commit d3c6cf5c0ace70c423d0fc9e279be5e5e576b4ce Author: robofish <1683502971@qq.com> Date: Mon Jul 7 02:34:34 2025 +0800 RC2025启动! diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..26c84c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# ---> C++ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# ---> ROS2 +install/ +log/ +build/ + +# Ignore generated docs +*.dox +*.wikidoc + +# eclipse stuff +.project +.cproject + +# qcreator stuff +CMakeLists.txt.user + +srv/_*.py +*.pcd +*.pyc +qtcreator-* +*.user + +*~ + +# Emacs +.#* + +# Colcon custom files +COLCON_IGNORE +AMENT_IGNORE + diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..e2c47a5 --- /dev/null +++ b/build.sh @@ -0,0 +1 @@ +colcon build diff --git a/nav.sh b/nav.sh new file mode 100644 index 0000000..08c20a1 --- /dev/null +++ b/nav.sh @@ -0,0 +1,19 @@ +source install/setup.bash + +commands=( + "/bin/python3 /home/robofish/RC2025/src/rm_driver/rm_serial_driver/script/pub_aim.py" + "ros2 launch rm_nav_bringup bringup_real.launch.py \ + world:=RC2025 \ + mode:=nav \ + lio:=fastlio \ + localization:=icp \ + lio_rviz:=false \ + nav_rviz:=true" + "ros2 launch rm_simpal_move simple_move.launch.py" + "ros2 topic pub /move_goal rm_msgs/msg/MoveGoal '{x: 0.56, y: 3.960, angle: 0.0, max_speed: 10.0, tolerance: 0.1, rotor: false}' --once" +) + +for cmd in "${commands[@]}"; do + gnome-terminal -- bash -c "source install/setup.bash; $cmd; exec bash" + sleep 0.5 +done \ No newline at end of file diff --git a/src/rm_driver/livox_ros_driver2/.gitignore b/src/rm_driver/livox_ros_driver2/.gitignore new file mode 100644 index 0000000..429bd72 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/.gitignore @@ -0,0 +1,10 @@ +devel/ +build/ +install/ +log/ + +.vscode/ +__pycache__/ +.catkin_workspace +*.gv +*.pdf \ No newline at end of file diff --git a/src/rm_driver/livox_ros_driver2/LICENSE b/src/rm_driver/livox_ros_driver2/LICENSE new file mode 100644 index 0000000..180f9d2 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 ziknagXie + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/rm_driver/livox_ros_driver2/README.md b/src/rm_driver/livox_ros_driver2/README.md new file mode 100644 index 0000000..d93cfe3 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/README.md @@ -0,0 +1,329 @@ +# Livox ROS Driver 2 + +Livox ROS Driver 2 is the 2nd-generation driver package used to connect LiDAR products produced by Livox, applicable for ROS (noetic recommended) and ROS2 (foxy or humble recommended). + +## ATTENTION + +本仓库为深圳北理莫斯科大学北极熊战队内部修改版,非原版 livox_ros_driver2 。 + +相较于原版,修改了消息发布机制和 ```MID360_config.json``` 的 ip + +```ros2 launch msg_MID360_launch.py``` 时会同时发布 ```CustomMsg``` 和 ```PointCloud2``` 两种类型消息。 + + **Topic name** | **Type** | **Note** +:------------------------:|:-------------------------------:|:--------------: + /livox/lidar | livox_ros_driver2/msg/CustomMsg | mid360 自定义消息类型 + /livox/lidar/pointcloud | sensor_msgs/msg/PointCloud2 | ROS2 点云消息格式 + /livox/imu | sensor_msgs/msg/Imu | mid360 机内 imu + +## 1. Preparation + +### 1.1 OS requirements + + * Ubuntu 22.04 for ROS2 Humble; + + **Tips:** + + Colcon is a build tool used in ROS2. + + How to install colcon: [Colcon installation instructions](https://docs.ros.org/en/foxy/Tutorials/Beginner-Client-Libraries/Colcon-Tutorial.html) + +### 1.2 Install ROS2 Humble + +For ROS2 Humble installation, please refer to: +[ROS Humble installation instructions](https://docs.ros.org/en/humble/Installation/Ubuntu-Install-Debians.html) + +Desktop-Full installation is recommend. + +## 2. Build & Run Livox ROS Driver 2 + +### 2.1 Clone Livox ROS Driver 2 source code: + +```shell +git clone https://gitee.com/SMBU-POLARBEAR/livox_ros_driver2_humble.git +``` + + **Note :** + + Be sure to clone the source code in a '[work_space]/src/' folder (as shown above), otherwise compilation errors will occur due to the compilation tool restriction. + +### 2.2 Build & install the Livox-SDK2 + + **Note :** + + Please follow the guidance of installation in the [Livox-SDK2/README.md](https://github.com/Livox-SDK/Livox-SDK2/blob/master/README.md) + +### 2.3 Build the Livox ROS Driver 2: + +### For ROS2 Humble: +```shell +colcon build --symlink-install +``` + +### 2.4 Run Livox ROS Driver 2: + +```shell +source install/setup.sh +ros2 launch livox_ros_driver2 [launch file] +``` + +in which, + +* **[launch file]** : is the ROS2 launch file you want to use; the 'launch_ROS2' folder contains several launch samples for your reference. + +A rviz launch example for HAP LiDAR would be: + +```shell +ros2 launch livox_ros_driver2 rviz_HAP_launch.py +``` + +## 3. Launch file and livox_ros_driver2 internal parameter configuration instructions + +### 3.1 Launch file configuration instructions + +Launch files of ROS are in the "ws_livox/src/livox_ros_driver2/launch_ROS1" directory and launch files of ROS2 are in the "ws_livox/src/livox_ros_driver2/launch_ROS2" directory. Different launch files have different configuration parameter values and are used in different scenarios: + +| launch file name | Description | +| ------------------------- | ------------------------------------------------------------ | +| rviz_HAP.launch | Connect to HAP LiDAR device
Publish pointcloud2 format data
Autoload rviz | +| msg_HAP.launch | Connect to HAP LiDAR device
Publish livox customized pointcloud data| +| rviz_MID360.launch | Connect to MID360 LiDAR device
Publish pointcloud2 format data
Autoload rviz| +| msg_MID360.launch | Connect to MID360 LiDAR device
Publish livox customized pointcloud data | +| rviz_mixed.launch | Connect to HAP and MID360 LiDAR device
Publish pointcloud2 format data
Autoload rviz| +| msg_mixed.launch | Connect to HAP and MID360 LiDAR device
Publish livox customized pointcloud data | + +### 3.2 Livox ros driver 2 internal main parameter configuration instructions + +All internal parameters of Livox_ros_driver2 are in the launch file. Below are detailed descriptions of the three commonly used parameters : + +| Parameter | Detailed description | Default | +| ------------ | ------------------------------------------------------------ | ------- | +| publish_freq | Set the frequency of point cloud publish
Floating-point data type, recommended values 5.0, 10.0, 20.0, 50.0, etc. The maximum publish frequency is 100.0 Hz.| 10.0 | +| multi_topic | If the LiDAR device has an independent topic to publish pointcloud data
0 -- All LiDAR devices use the same topic to publish pointcloud data
1 -- Each LiDAR device has its own topic to publish point cloud data | 0 | +| xfer_format | Set pointcloud format
0 -- Livox pointcloud2(PointXYZRTLT) pointcloud format
1 -- Livox customized pointcloud format
2 -- Standard pointcloud2 (pcl :: PointXYZI) pointcloud format in the PCL library (just for ROS) | 0 | + + **Note :** + + Other parameters not mentioned in this table are not suggested to be changed unless fully understood. + +    ***Livox_ros_driver2 pointcloud data detailed description :*** + +1. Livox pointcloud2 (PointXYZRTLT) point cloud format, as follows : + +```c +float32 x # X axis, unit:m +float32 y # Y axis, unit:m +float32 z # Z axis, unit:m +float32 intensity # the value is reflectivity, 0.0~255.0 +uint8 tag # livox tag +uint8 line # laser number in lidar +float64 timestamp # Timestamp of point +``` + **Note :** + + The number of points in the frame may be different, but each point provides a timestamp. + +2. Livox customized data package format, as follows : + +```c +std_msgs/Header header # ROS standard message header +uint64 timebase # The time of first point +uint32 point_num # Total number of pointclouds +uint8 lidar_id # Lidar device id number +uint8[3] rsvd # Reserved use +CustomPoint[] points # Pointcloud data +``` + +    Customized Point Cloud (CustomPoint) format in the above customized data package : + +```c +uint32 offset_time # offset time relative to the base time +float32 x # X axis, unit:m +float32 y # Y axis, unit:m +float32 z # Z axis, unit:m +uint8 reflectivity # reflectivity, 0~255 +uint8 tag # livox tag +uint8 line # laser number in lidar +``` + +3. The standard pointcloud2 (pcl :: PointXYZI) format in the PCL library (only ROS can publish): + +    Please refer to the pcl :: PointXYZI data structure in the point_types.hpp file of the PCL library. + +## 4. LiDAR config + +LiDAR Configurations (such as ip, port, data type... etc.) can be set via a json-style config file. Config files for single HAP, Mid360 and mixed-LiDARs are in the "config" folder. The parameter naming *'user_config_path'* in launch files indicates such json file path. + +1. Follow is a configuration example for HAP LiDAR (located in config/HAP_config.json): + +```json +{ + "lidar_summary_info" : { + "lidar_type": 8 # protocol type index, please don't revise this value + }, + "HAP": { + "device_type" : "HAP", + "lidar_ipaddr": "", + "lidar_net_info" : { + "cmd_data_port": 56000, # command port + "push_msg_port": 0, + "point_data_port": 57000, + "imu_data_port": 58000, + "log_data_port": 59000 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.5", # host ip (it can be revised) + "cmd_data_port": 56000, + "push_msg_ip": "", + "push_msg_port": 0, + "point_data_ip": "192.168.1.5", # host ip + "point_data_port": 57000, + "imu_data_ip" : "192.168.1.5", # host ip + "imu_data_port": 58000, + "log_data_ip" : "", + "log_data_port": 59000 + } + }, + "lidar_configs" : [ + { + "ip" : "192.168.1.100", # ip of the LiDAR you want to config + "pcl_data_type" : 1, + "pattern_mode" : 0, + "blind_spot_set" : 50, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + } + ] +} +``` + +The parameter attributes in the above json file are described in the following table : + +**LiDAR configuration parameter** +| Parameter | Type | Description | Default | +| :------------------------- | ------- | ------------------------------------------------------------ | --------------- | +| ip | String | Ip of the LiDAR you want to config | 192.168.1.100 | +| pcl_data_type | Int | Choose the resolution of the point cloud data to send
1 -- Cartesian coordinate data (32 bits)
2 -- Cartesian coordinate data (16 bits)
3 --Spherical coordinate data| 1 | +| pattern_mode | Int | Space scan pattern
0 -- non-repeating scanning pattern mode
1 -- repeating scanning pattern mode
2 -- repeating scanning pattern mode (low scanning rate) | 0 | +| blind_spot_set (Only for HAP LiDAR) | Int | Set blind spot
Range from 50 cm to 200 cm | 50 | +| extrinsic_parameter | | Set extrinsic parameter
The data types of "roll" "picth" "yaw" are float
The data types of "x" "y" "z" are int
| + +For more infomation about the HAP config, please refer to: +[HAP Config File Description](https://github.com/Livox-SDK/Livox-SDK2/wiki/hap-config-file-description) + +2. When connecting multiple LiDARs, add objects corresponding to different LiDARs to the "lidar_configs" array. Examples of mixed-LiDARs config file contents are as follows : + +```json +{ + "lidar_summary_info" : { + "lidar_type": 8 # protocol type index, please don't revise this value + }, + "HAP": { + "lidar_net_info" : { # HAP ports, please don't revise these values + "cmd_data_port": 56000, # HAP command port + "push_msg_port": 0, + "point_data_port": 57000, + "imu_data_port": 58000, + "log_data_port": 59000 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.5", # host ip + "cmd_data_port": 56000, + "push_msg_ip": "", + "push_msg_port": 0, + "point_data_ip": "192.168.1.5", # host ip + "point_data_port": 57000, + "imu_data_ip" : "192.168.1.5", # host ip + "imu_data_port": 58000, + "log_data_ip" : "", + "log_data_port": 59000 + } + }, + "MID360": { + "lidar_net_info" : { # Mid360 ports, please don't revise these values + "cmd_data_port": 56100, # Mid360 command port + "push_msg_port": 56200, + "point_data_port": 56300, + "imu_data_port": 56400, + "log_data_port": 56500 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.5", # host ip + "cmd_data_port": 56101, + "push_msg_ip": "192.168.1.5", # host ip + "push_msg_port": 56201, + "point_data_ip": "192.168.1.5", # host ip + "point_data_port": 56301, + "imu_data_ip" : "192.168.1.5", # host ip + "imu_data_port": 56401, + "log_data_ip" : "", + "log_data_port": 56501 + } + }, + "lidar_configs" : [ + { + "ip" : "192.168.1.100", # ip of the HAP you want to config + "pcl_data_type" : 1, + "pattern_mode" : 0, + "blind_spot_set" : 50, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "ip" : "192.168.1.12", # ip of the Mid360 you want to config + "pcl_data_type" : 1, + "pattern_mode" : 0, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + } + ] +} +``` + +## 5. Supported LiDAR list + +* HAP +* Mid360 +* (more types are comming soon...) + +## 6. FAQ + +### 6.1 launch with "livox_lidar_rviz_HAP.launch" but no point cloud display on the grid? + +Please check the "Global Options - Fixed Frame" field in the RViz "Display" pannel. Set the field value to "livox_frame" and check the "PointCloud2" option in the pannel. + +### 6.2 launch with command "ros2 launch livox_lidar_rviz_HAP_launch.py" but cannot open shared object file "liblivox_sdk_shared.so" ? + +Please add '/usr/local/lib' to the env LD_LIBRARY_PATH. + +* If you want to add to current terminal: + + ```shell + export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib + ``` + +* If you want to add to current user: + + ```shell + vim ~/.bashrc + export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib + source ~/.bashrc + ``` diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/allocators.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/allocators.h new file mode 100644 index 0000000..03010d5 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/allocators.h @@ -0,0 +1,308 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_ALLOCATORS_H_ +#define RAPIDJSON_ALLOCATORS_H_ + +#include "rapidjson.h" + +RAPIDJSON_NAMESPACE_BEGIN + +/////////////////////////////////////////////////////////////////////////////// +// Allocator + +/*! \class rapidjson::Allocator + \brief Concept for allocating, resizing and freeing memory block. + + Note that Malloc() and Realloc() are non-static but Free() is static. + + So if an allocator need to support Free(), it needs to put its pointer in + the header of memory block. + +\code +concept Allocator { + static const bool kNeedFree; //!< Whether this allocator needs to call +Free(). + + // Allocate a memory block. + // \param size of the memory block in bytes. + // \returns pointer to the memory block. + void* Malloc(size_t size); + + // Resize a memory block. + // \param originalPtr The pointer to current memory block. Null pointer is +permitted. + // \param originalSize The current size in bytes. (Design issue: since some +allocator may not book-keep this, explicitly pass to it can save memory.) + // \param newSize the new size in bytes. + void* Realloc(void* originalPtr, size_t originalSize, size_t newSize); + + // Free a memory block. + // \param pointer to the memory block. Null pointer is permitted. + static void Free(void *ptr); +}; +\endcode +*/ + +/*! \def RAPIDJSON_ALLOCATOR_DEFAULT_CHUNK_CAPACITY + \ingroup RAPIDJSON_CONFIG + \brief User-defined kDefaultChunkCapacity definition. + + User can define this as any \c size that is a power of 2. +*/ + +#ifndef RAPIDJSON_ALLOCATOR_DEFAULT_CHUNK_CAPACITY +#define RAPIDJSON_ALLOCATOR_DEFAULT_CHUNK_CAPACITY (64 * 1024) +#endif + +/////////////////////////////////////////////////////////////////////////////// +// CrtAllocator + +//! C-runtime library allocator. +/*! This class is just wrapper for standard C library memory routines. + \note implements Allocator concept +*/ +class CrtAllocator { + public: + static const bool kNeedFree = true; + void *Malloc(size_t size) { + if (size) // behavior of malloc(0) is implementation defined. + return std::malloc(size); + else + return NULL; // standardize to returning NULL. + } + void *Realloc(void *originalPtr, size_t originalSize, size_t newSize) { + (void)originalSize; + if (newSize == 0) { + std::free(originalPtr); + return NULL; + } + return std::realloc(originalPtr, newSize); + } + static void Free(void *ptr) { std::free(ptr); } +}; + +/////////////////////////////////////////////////////////////////////////////// +// MemoryPoolAllocator + +//! Default memory allocator used by the parser and DOM. +/*! This allocator allocate memory blocks from pre-allocated memory chunks. + + It does not free memory blocks. And Realloc() only allocate new memory. + + The memory chunks are allocated by BaseAllocator, which is CrtAllocator by + default. + + User may also supply a buffer as the first chunk. + + If the user-buffer is full then additional chunks are allocated by + BaseAllocator. + + The user-buffer is not deallocated by this allocator. + + \tparam BaseAllocator the allocator type for allocating memory chunks. + Default is CrtAllocator. \note implements Allocator concept +*/ +template +class MemoryPoolAllocator { + public: + static const bool kNeedFree = + false; //!< Tell users that no need to call Free() with this allocator. + //!< (concept Allocator) + + //! Constructor with chunkSize. + /*! \param chunkSize The size of memory chunk. The default is + kDefaultChunkSize. \param baseAllocator The allocator for allocating memory + chunks. + */ + MemoryPoolAllocator(size_t chunkSize = kDefaultChunkCapacity, + BaseAllocator *baseAllocator = 0) + : chunkHead_(0), + chunk_capacity_(chunkSize), + userBuffer_(0), + baseAllocator_(baseAllocator), + ownBaseAllocator_(0) {} + + //! Constructor with user-supplied buffer. + /*! The user buffer will be used firstly. When it is full, memory pool + allocates new chunk with chunk size. + + The user buffer will not be deallocated when this allocator is destructed. + + \param buffer User supplied buffer. + \param size Size of the buffer in bytes. It must at least larger than + sizeof(ChunkHeader). \param chunkSize The size of memory chunk. The default + is kDefaultChunkSize. \param baseAllocator The allocator for allocating + memory chunks. + */ + MemoryPoolAllocator(void *buffer, size_t size, + size_t chunkSize = kDefaultChunkCapacity, + BaseAllocator *baseAllocator = 0) + : chunkHead_(0), + chunk_capacity_(chunkSize), + userBuffer_(buffer), + baseAllocator_(baseAllocator), + ownBaseAllocator_(0) { + RAPIDJSON_ASSERT(buffer != 0); + RAPIDJSON_ASSERT(size > sizeof(ChunkHeader)); + chunkHead_ = reinterpret_cast(buffer); + chunkHead_->capacity = size - sizeof(ChunkHeader); + chunkHead_->size = 0; + chunkHead_->next = 0; + } + + //! Destructor. + /*! This deallocates all memory chunks, excluding the user-supplied buffer. + */ + ~MemoryPoolAllocator() { + Clear(); + RAPIDJSON_DELETE(ownBaseAllocator_); + } + + //! Deallocates all memory chunks, excluding the user-supplied buffer. + void Clear() { + while (chunkHead_ && chunkHead_ != userBuffer_) { + ChunkHeader *next = chunkHead_->next; + baseAllocator_->Free(chunkHead_); + chunkHead_ = next; + } + if (chunkHead_ && chunkHead_ == userBuffer_) + chunkHead_->size = 0; // Clear user buffer + } + + //! Computes the total capacity of allocated memory chunks. + /*! \return total capacity in bytes. + */ + size_t Capacity() const { + size_t capacity = 0; + for (ChunkHeader *c = chunkHead_; c != 0; c = c->next) + capacity += c->capacity; + return capacity; + } + + //! Computes the memory blocks allocated. + /*! \return total used bytes. + */ + size_t Size() const { + size_t size = 0; + for (ChunkHeader *c = chunkHead_; c != 0; c = c->next) size += c->size; + return size; + } + + //! Allocates a memory block. (concept Allocator) + void *Malloc(size_t size) { + if (!size) return NULL; + + size = RAPIDJSON_ALIGN(size); + if (chunkHead_ == 0 || chunkHead_->size + size > chunkHead_->capacity) + if (!AddChunk(chunk_capacity_ > size ? chunk_capacity_ : size)) + return NULL; + + void *buffer = reinterpret_cast(chunkHead_) + + RAPIDJSON_ALIGN(sizeof(ChunkHeader)) + chunkHead_->size; + chunkHead_->size += size; + return buffer; + } + + //! Resizes a memory block (concept Allocator) + void *Realloc(void *originalPtr, size_t originalSize, size_t newSize) { + if (originalPtr == 0) return Malloc(newSize); + + if (newSize == 0) return NULL; + + originalSize = RAPIDJSON_ALIGN(originalSize); + newSize = RAPIDJSON_ALIGN(newSize); + + // Do not shrink if new size is smaller than original + if (originalSize >= newSize) return originalPtr; + + // Simply expand it if it is the last allocation and there is sufficient + // space + if (originalPtr == + reinterpret_cast(chunkHead_) + + RAPIDJSON_ALIGN(sizeof(ChunkHeader)) + chunkHead_->size - + originalSize) { + size_t increment = static_cast(newSize - originalSize); + if (chunkHead_->size + increment <= chunkHead_->capacity) { + chunkHead_->size += increment; + return originalPtr; + } + } + + // Realloc process: allocate and copy memory, do not free original buffer. + if (void *newBuffer = Malloc(newSize)) { + if (originalSize) std::memcpy(newBuffer, originalPtr, originalSize); + return newBuffer; + } else + return NULL; + } + + //! Frees a memory block (concept Allocator) + static void Free(void *ptr) { (void)ptr; } // Do nothing + + private: + //! Copy constructor is not permitted. + MemoryPoolAllocator(const MemoryPoolAllocator &rhs) /* = delete */; + //! Copy assignment operator is not permitted. + MemoryPoolAllocator &operator=(const MemoryPoolAllocator &rhs) /* = delete */; + + //! Creates a new chunk. + /*! \param capacity Capacity of the chunk in bytes. + \return true if success. + */ + bool AddChunk(size_t capacity) { + if (!baseAllocator_) + ownBaseAllocator_ = baseAllocator_ = RAPIDJSON_NEW(BaseAllocator)(); + if (ChunkHeader *chunk = + reinterpret_cast(baseAllocator_->Malloc( + RAPIDJSON_ALIGN(sizeof(ChunkHeader)) + capacity))) { + chunk->capacity = capacity; + chunk->size = 0; + chunk->next = chunkHead_; + chunkHead_ = chunk; + return true; + } else + return false; + } + + static const int kDefaultChunkCapacity = + RAPIDJSON_ALLOCATOR_DEFAULT_CHUNK_CAPACITY; //!< Default chunk capacity. + + //! Chunk header for perpending to each chunk. + /*! Chunks are stored as a singly linked list. + */ + struct ChunkHeader { + size_t capacity; //!< Capacity of the chunk in bytes (excluding the header + //!< itself). + size_t size; //!< Current size of allocated memory in bytes. + ChunkHeader *next; //!< Next chunk in the linked list. + }; + + ChunkHeader *chunkHead_; //!< Head of the chunk linked-list. Only the head + //!< chunk serves allocation. + size_t chunk_capacity_; //!< The minimum capacity of chunk when they are + //!< allocated. + void *userBuffer_; //!< User supplied buffer. + BaseAllocator + *baseAllocator_; //!< base allocator for allocating memory chunks. + BaseAllocator *ownBaseAllocator_; //!< base allocator created by this object. +}; + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_ENCODINGS_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/cursorstreamwrapper.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/cursorstreamwrapper.h new file mode 100644 index 0000000..045ddb8 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/cursorstreamwrapper.h @@ -0,0 +1,81 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_CURSORSTREAMWRAPPER_H_ +#define RAPIDJSON_CURSORSTREAMWRAPPER_H_ + +#include "stream.h" + +#if defined(__GNUC__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +#endif + +#if defined(_MSC_VER) && _MSC_VER <= 1800 +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(4702) // unreachable code +RAPIDJSON_DIAG_OFF(4512) // assignment operator could not be generated +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Cursor stream wrapper for counting line and column number if error exists. +/*! + \tparam InputStream Any stream that implements Stream Concept +*/ +template > +class CursorStreamWrapper : public GenericStreamWrapper { + public: + typedef typename Encoding::Ch Ch; + + CursorStreamWrapper(InputStream &is) + : GenericStreamWrapper(is), line_(1), col_(0) {} + + // counting line and column number + Ch Take() { + Ch ch = this->is_.Take(); + if (ch == '\n') { + line_++; + col_ = 0; + } else { + col_++; + } + return ch; + } + + //! Get the error line number, if error exists. + size_t GetLine() const { return line_; } + //! Get the error column number, if error exists. + size_t GetColumn() const { return col_; } + + private: + size_t line_; //!< Current Line + size_t col_; //!< Current Column +}; + +#if defined(_MSC_VER) && _MSC_VER <= 1800 +RAPIDJSON_DIAG_POP +#endif + +#if defined(__GNUC__) +RAPIDJSON_DIAG_POP +#endif + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_CURSORSTREAMWRAPPER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/document.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/document.h new file mode 100644 index 0000000..27addb7 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/document.h @@ -0,0 +1,3309 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_DOCUMENT_H_ +#define RAPIDJSON_DOCUMENT_H_ + +/*! \file document.h */ + +#include +#include // placement new +#include "encodedstream.h" +#include "internal/meta.h" +#include "internal/strfunc.h" +#include "memorystream.h" +#include "reader.h" + +RAPIDJSON_DIAG_PUSH +#ifdef __clang__ +RAPIDJSON_DIAG_OFF(padded) +RAPIDJSON_DIAG_OFF(switch - enum) +RAPIDJSON_DIAG_OFF(c++ 98 - compat) +#elif defined(_MSC_VER) +RAPIDJSON_DIAG_OFF(4127) // conditional expression is constant +RAPIDJSON_DIAG_OFF( + 4244) // conversion from kXxxFlags to 'uint16_t', possible loss of data +#endif + +#ifdef __GNUC__ +RAPIDJSON_DIAG_OFF(effc++) +#endif // __GNUC__ + +#ifndef RAPIDJSON_NOMEMBERITERATORCLASS +#include // std::random_access_iterator_tag +#endif + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS +#include // std::move +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +// Forward declaration. +template +class GenericValue; + +template +class GenericDocument; + +//! Name-value pair in a JSON object value. +/*! + This class was internal to GenericValue. It used to be a inner struct. + But a compiler (IBM XL C/C++ for AIX) have reported to have problem with + that so it moved as a namespace scope struct. + https://code.google.com/p/rapidjson/issues/detail?id=64 +*/ +template +class GenericMember { + public: + GenericValue + name; //!< name of member (must be a string) + GenericValue value; //!< value of member. + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + //! Move constructor in C++11 + GenericMember(GenericMember &&rhs) RAPIDJSON_NOEXCEPT + : name(std::move(rhs.name)), + value(std::move(rhs.value)) {} + + //! Move assignment in C++11 + GenericMember &operator=(GenericMember &&rhs) RAPIDJSON_NOEXCEPT { + return *this = static_cast(rhs); + } +#endif + + //! Assignment with move semantics. + /*! \param rhs Source of the assignment. Its name and value will become a null + * value after assignment. + */ + GenericMember &operator=(GenericMember &rhs) RAPIDJSON_NOEXCEPT { + if (RAPIDJSON_LIKELY(this != &rhs)) { + name = rhs.name; + value = rhs.value; + } + return *this; + } + + // swap() for std::sort() and other potential use in STL. + friend inline void swap(GenericMember &a, + GenericMember &b) RAPIDJSON_NOEXCEPT { + a.name.Swap(b.name); + a.value.Swap(b.value); + } + + private: + //! Copy constructor is not permitted. + GenericMember(const GenericMember &rhs); +}; + +/////////////////////////////////////////////////////////////////////////////// +// GenericMemberIterator + +#ifndef RAPIDJSON_NOMEMBERITERATORCLASS + +//! (Constant) member iterator for a JSON object value +/*! + \tparam Const Is this a constant iterator? + \tparam Encoding Encoding of the value. (Even non-string values need to + have the same encoding in a document) \tparam Allocator Allocator type for + allocating memory of object, array and string. + + This class implements a Random Access Iterator for GenericMember elements + of a GenericValue, see ISO/IEC 14882:2003(E) C++ standard, 24.1 + [lib.iterator.requirements]. + + \note This iterator implementation is mainly intended to avoid implicit + conversions from iterator values to \c NULL, + e.g. from GenericValue::FindMember. + + \note Define \c RAPIDJSON_NOMEMBERITERATORCLASS to fall back to a + pointer-based implementation, if your platform doesn't provide + the C++ header. + + \see GenericMember, GenericValue::MemberIterator, + GenericValue::ConstMemberIterator + */ +template +class GenericMemberIterator { + friend class GenericValue; + template + friend class GenericMemberIterator; + + typedef GenericMember PlainType; + typedef typename internal::MaybeAddConst::Type ValueType; + + public: + //! Iterator type itself + typedef GenericMemberIterator Iterator; + //! Constant iterator type + typedef GenericMemberIterator ConstIterator; + //! Non-constant iterator type + typedef GenericMemberIterator NonConstIterator; + + /** \name std::iterator_traits support */ + //@{ + typedef ValueType value_type; + typedef ValueType *pointer; + typedef ValueType &reference; + typedef std::ptrdiff_t difference_type; + typedef std::random_access_iterator_tag iterator_category; + //@} + + //! Pointer to (const) GenericMember + typedef pointer Pointer; + //! Reference to (const) GenericMember + typedef reference Reference; + //! Signed integer type (e.g. \c ptrdiff_t) + typedef difference_type DifferenceType; + + //! Default constructor (singular value) + /*! Creates an iterator pointing to no element. + \note All operations, except for comparisons, are undefined on such + values. + */ + GenericMemberIterator() : ptr_() {} + + //! Iterator conversions to more const + /*! + \param it (Non-const) iterator to copy from + + Allows the creation of an iterator from another GenericMemberIterator + that is "less const". Especially, creating a non-constant iterator + from a constant iterator are disabled: + \li const -> non-const (not ok) + \li const -> const (ok) + \li non-const -> const (ok) + \li non-const -> non-const (ok) + + \note If the \c Const template parameter is already \c false, this + constructor effectively defines a regular copy-constructor. + Otherwise, the copy constructor is implicitly defined. + */ + GenericMemberIterator(const NonConstIterator &it) : ptr_(it.ptr_) {} + Iterator &operator=(const NonConstIterator &it) { + ptr_ = it.ptr_; + return *this; + } + + //! @name stepping + //@{ + Iterator &operator++() { + ++ptr_; + return *this; + } + Iterator &operator--() { + --ptr_; + return *this; + } + Iterator operator++(int) { + Iterator old(*this); + ++ptr_; + return old; + } + Iterator operator--(int) { + Iterator old(*this); + --ptr_; + return old; + } + //@} + + //! @name increment/decrement + //@{ + Iterator operator+(DifferenceType n) const { return Iterator(ptr_ + n); } + Iterator operator-(DifferenceType n) const { return Iterator(ptr_ - n); } + + Iterator &operator+=(DifferenceType n) { + ptr_ += n; + return *this; + } + Iterator &operator-=(DifferenceType n) { + ptr_ -= n; + return *this; + } + //@} + + //! @name relations + //@{ + bool operator==(ConstIterator that) const { return ptr_ == that.ptr_; } + bool operator!=(ConstIterator that) const { return ptr_ != that.ptr_; } + bool operator<=(ConstIterator that) const { return ptr_ <= that.ptr_; } + bool operator>=(ConstIterator that) const { return ptr_ >= that.ptr_; } + bool operator<(ConstIterator that) const { return ptr_ < that.ptr_; } + bool operator>(ConstIterator that) const { return ptr_ > that.ptr_; } + //@} + + //! @name dereference + //@{ + Reference operator*() const { return *ptr_; } + Pointer operator->() const { return ptr_; } + Reference operator[](DifferenceType n) const { return ptr_[n]; } + //@} + + //! Distance + DifferenceType operator-(ConstIterator that) const { + return ptr_ - that.ptr_; + } + + private: + //! Internal constructor from plain pointer + explicit GenericMemberIterator(Pointer p) : ptr_(p) {} + + Pointer ptr_; //!< raw pointer +}; + +#else // RAPIDJSON_NOMEMBERITERATORCLASS + +// class-based member iterator implementation disabled, use plain pointers + +template +class GenericMemberIterator; + +//! non-const GenericMemberIterator +template +class GenericMemberIterator { + //! use plain pointer as iterator type + typedef GenericMember *Iterator; +}; +//! const GenericMemberIterator +template +class GenericMemberIterator { + //! use plain const pointer as iterator type + typedef const GenericMember *Iterator; +}; + +#endif // RAPIDJSON_NOMEMBERITERATORCLASS + +/////////////////////////////////////////////////////////////////////////////// +// GenericStringRef + +//! Reference to a constant string (not taking a copy) +/*! + \tparam CharType character type of the string + + This helper class is used to automatically infer constant string + references for string literals, especially from \c const \b (!) + character arrays. + + The main use is for creating JSON string values without copying the + source string via an \ref Allocator. This requires that the referenced + string pointers have a sufficient lifetime, which exceeds the lifetime + of the associated GenericValue. + + \b Example + \code + Value v("foo"); // ok, no need to copy & calculate length + const char foo[] = "foo"; + v.SetString(foo); // ok + + const char* bar = foo; + // Value x(bar); // not ok, can't rely on bar's lifetime + Value x(StringRef(bar)); // lifetime explicitly guaranteed by user + Value y(StringRef(bar, 3)); // ok, explicitly pass length + \endcode + + \see StringRef, GenericValue::SetString +*/ +template +struct GenericStringRef { + typedef CharType Ch; //!< character type of the string + +//! Create string reference from \c const character array +#ifndef __clang__ // -Wdocumentation + /*! + This constructor implicitly creates a constant string reference from + a \c const character array. It has better performance than + \ref StringRef(const CharType*) by inferring the string \ref length + from the array length, and also supports strings containing null + characters. + + \tparam N length of the string, automatically inferred + + \param str Constant character array, lifetime assumed to be longer + than the use of the string in e.g. a GenericValue + + \post \ref s == str + + \note Constant complexity. + \note There is a hidden, private overload to disallow references to + non-const character arrays to be created via this constructor. + By this, e.g. function-scope arrays used to be filled via + \c snprintf are excluded from consideration. + In such cases, the referenced string should be \b copied to the + GenericValue instead. + */ +#endif + template + GenericStringRef(const CharType (&str)[N]) RAPIDJSON_NOEXCEPT + : s(str), + length(N - 1) {} + +//! Explicitly create string reference from \c const character pointer +#ifndef __clang__ // -Wdocumentation + /*! + This constructor can be used to \b explicitly create a reference to + a constant string pointer. + + \see StringRef(const CharType*) + + \param str Constant character pointer, lifetime assumed to be longer + than the use of the string in e.g. a GenericValue + + \post \ref s == str + + \note There is a hidden, private overload to disallow references to + non-const character arrays to be created via this constructor. + By this, e.g. function-scope arrays used to be filled via + \c snprintf are excluded from consideration. + In such cases, the referenced string should be \b copied to the + GenericValue instead. + */ +#endif + explicit GenericStringRef(const CharType *str) + : s(str), length(NotNullStrLen(str)) {} + +//! Create constant string reference from pointer and length +#ifndef __clang__ // -Wdocumentation +/*! \param str constant string, lifetime assumed to be longer than the use of + the string in e.g. a GenericValue \param len length of the string, + excluding the trailing NULL terminator + + \post \ref s == str && \ref length == len + \note Constant complexity. + */ +#endif + GenericStringRef(const CharType *str, SizeType len) + : s(RAPIDJSON_LIKELY(str) ? str : emptyString), length(len) { + RAPIDJSON_ASSERT(str != 0 || len == 0u); + } + + GenericStringRef(const GenericStringRef &rhs) + : s(rhs.s), length(rhs.length) {} + + //! implicit conversion to plain CharType pointer + operator const Ch *() const { return s; } + + const Ch *const s; //!< plain CharType pointer + const SizeType length; //!< length of the string (excluding the trailing NULL + //!terminator) + + private: + SizeType NotNullStrLen(const CharType *str) { + RAPIDJSON_ASSERT(str != 0); + return internal::StrLen(str); + } + + /// Empty string - used when passing in a NULL pointer + static const Ch emptyString[]; + + //! Disallow construction from non-const array + template + GenericStringRef(CharType (&str)[N]) /* = delete */; + //! Copy assignment operator not permitted - immutable type + GenericStringRef &operator=(const GenericStringRef &rhs) /* = delete */; +}; + +template +const CharType GenericStringRef::emptyString[] = {CharType()}; + +//! Mark a character pointer as constant string +/*! Mark a plain character pointer as a "string literal". This function + can be used to avoid copying a character string to be referenced as a + value in a JSON GenericValue object, if the string's lifetime is known + to be valid long enough. + \tparam CharType Character type of the string + \param str Constant string, lifetime assumed to be longer than the use of + the string in e.g. a GenericValue \return GenericStringRef string reference + object \relatesalso GenericStringRef + + \see GenericValue::GenericValue(StringRefType), + GenericValue::operator=(StringRefType), + GenericValue::SetString(StringRefType), GenericValue::PushBack(StringRefType, + Allocator&), GenericValue::AddMember +*/ +template +inline GenericStringRef StringRef(const CharType *str) { + return GenericStringRef(str); +} + +//! Mark a character pointer as constant string +/*! Mark a plain character pointer as a "string literal". This function + can be used to avoid copying a character string to be referenced as a + value in a JSON GenericValue object, if the string's lifetime is known + to be valid long enough. + + This version has better performance with supplied length, and also + supports string containing null characters. + + \tparam CharType character type of the string + \param str Constant string, lifetime assumed to be longer than the use of + the string in e.g. a GenericValue \param length The length of source string. + \return GenericStringRef string reference object + \relatesalso GenericStringRef +*/ +template +inline GenericStringRef StringRef(const CharType *str, + size_t length) { + return GenericStringRef(str, SizeType(length)); +} + +#if RAPIDJSON_HAS_STDSTRING +//! Mark a string object as constant string +/*! Mark a string object (e.g. \c std::string) as a "string literal". + This function can be used to avoid copying a string to be referenced as a + value in a JSON GenericValue object, if the string's lifetime is known + to be valid long enough. + + \tparam CharType character type of the string + \param str Constant string, lifetime assumed to be longer than the use of + the string in e.g. a GenericValue \return GenericStringRef string reference + object \relatesalso GenericStringRef \note Requires the definition of the + preprocessor symbol \ref RAPIDJSON_HAS_STDSTRING. +*/ +template +inline GenericStringRef StringRef( + const std::basic_string &str) { + return GenericStringRef(str.data(), SizeType(str.size())); +} +#endif + +/////////////////////////////////////////////////////////////////////////////// +// GenericValue type traits +namespace internal { + +template +struct IsGenericValueImpl : FalseType {}; + +// select candidates according to nested encoding and allocator types +template +struct IsGenericValueImpl::Type, + typename Void::Type> + : IsBaseOf< + GenericValue, + T>::Type {}; + +// helper to match arbitrary GenericValue instantiations, including derived +// classes +template +struct IsGenericValue : IsGenericValueImpl::Type {}; + +} // namespace internal + +/////////////////////////////////////////////////////////////////////////////// +// TypeHelper + +namespace internal { + +template +struct TypeHelper {}; + +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsBool(); } + static bool Get(const ValueType &v) { return v.GetBool(); } + static ValueType &Set(ValueType &v, bool data) { return v.SetBool(data); } + static ValueType &Set(ValueType &v, bool data, + typename ValueType::AllocatorType &) { + return v.SetBool(data); + } +}; + +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsInt(); } + static int Get(const ValueType &v) { return v.GetInt(); } + static ValueType &Set(ValueType &v, int data) { return v.SetInt(data); } + static ValueType &Set(ValueType &v, int data, + typename ValueType::AllocatorType &) { + return v.SetInt(data); + } +}; + +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsUint(); } + static unsigned Get(const ValueType &v) { return v.GetUint(); } + static ValueType &Set(ValueType &v, unsigned data) { return v.SetUint(data); } + static ValueType &Set(ValueType &v, unsigned data, + typename ValueType::AllocatorType &) { + return v.SetUint(data); + } +}; + +#ifdef _MSC_VER +RAPIDJSON_STATIC_ASSERT(sizeof(long) == sizeof(int)); +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsInt(); } + static long Get(const ValueType &v) { return v.GetInt(); } + static ValueType &Set(ValueType &v, long data) { return v.SetInt(data); } + static ValueType &Set(ValueType &v, long data, + typename ValueType::AllocatorType &) { + return v.SetInt(data); + } +}; + +RAPIDJSON_STATIC_ASSERT(sizeof(unsigned long) == sizeof(unsigned)); +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsUint(); } + static unsigned long Get(const ValueType &v) { return v.GetUint(); } + static ValueType &Set(ValueType &v, unsigned long data) { + return v.SetUint(data); + } + static ValueType &Set(ValueType &v, unsigned long data, + typename ValueType::AllocatorType &) { + return v.SetUint(data); + } +}; +#endif + +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsInt64(); } + static int64_t Get(const ValueType &v) { return v.GetInt64(); } + static ValueType &Set(ValueType &v, int64_t data) { return v.SetInt64(data); } + static ValueType &Set(ValueType &v, int64_t data, + typename ValueType::AllocatorType &) { + return v.SetInt64(data); + } +}; + +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsUint64(); } + static uint64_t Get(const ValueType &v) { return v.GetUint64(); } + static ValueType &Set(ValueType &v, uint64_t data) { + return v.SetUint64(data); + } + static ValueType &Set(ValueType &v, uint64_t data, + typename ValueType::AllocatorType &) { + return v.SetUint64(data); + } +}; + +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsDouble(); } + static double Get(const ValueType &v) { return v.GetDouble(); } + static ValueType &Set(ValueType &v, double data) { return v.SetDouble(data); } + static ValueType &Set(ValueType &v, double data, + typename ValueType::AllocatorType &) { + return v.SetDouble(data); + } +}; + +template +struct TypeHelper { + static bool Is(const ValueType &v) { return v.IsFloat(); } + static float Get(const ValueType &v) { return v.GetFloat(); } + static ValueType &Set(ValueType &v, float data) { return v.SetFloat(data); } + static ValueType &Set(ValueType &v, float data, + typename ValueType::AllocatorType &) { + return v.SetFloat(data); + } +}; + +template +struct TypeHelper { + typedef const typename ValueType::Ch *StringType; + static bool Is(const ValueType &v) { return v.IsString(); } + static StringType Get(const ValueType &v) { return v.GetString(); } + static ValueType &Set(ValueType &v, const StringType data) { + return v.SetString(typename ValueType::StringRefType(data)); + } + static ValueType &Set(ValueType &v, const StringType data, + typename ValueType::AllocatorType &a) { + return v.SetString(data, a); + } +}; + +#if RAPIDJSON_HAS_STDSTRING +template +struct TypeHelper> { + typedef std::basic_string StringType; + static bool Is(const ValueType &v) { return v.IsString(); } + static StringType Get(const ValueType &v) { + return StringType(v.GetString(), v.GetStringLength()); + } + static ValueType &Set(ValueType &v, const StringType &data, + typename ValueType::AllocatorType &a) { + return v.SetString(data, a); + } +}; +#endif + +template +struct TypeHelper { + typedef typename ValueType::Array ArrayType; + static bool Is(const ValueType &v) { return v.IsArray(); } + static ArrayType Get(ValueType &v) { return v.GetArray(); } + static ValueType &Set(ValueType &v, ArrayType data) { return v = data; } + static ValueType &Set(ValueType &v, ArrayType data, + typename ValueType::AllocatorType &) { + return v = data; + } +}; + +template +struct TypeHelper { + typedef typename ValueType::ConstArray ArrayType; + static bool Is(const ValueType &v) { return v.IsArray(); } + static ArrayType Get(const ValueType &v) { return v.GetArray(); } +}; + +template +struct TypeHelper { + typedef typename ValueType::Object ObjectType; + static bool Is(const ValueType &v) { return v.IsObject(); } + static ObjectType Get(ValueType &v) { return v.GetObject(); } + static ValueType &Set(ValueType &v, ObjectType data) { return v = data; } + static ValueType &Set(ValueType &v, ObjectType data, + typename ValueType::AllocatorType &) { + return v = data; + } +}; + +template +struct TypeHelper { + typedef typename ValueType::ConstObject ObjectType; + static bool Is(const ValueType &v) { return v.IsObject(); } + static ObjectType Get(const ValueType &v) { return v.GetObject(); } +}; + +} // namespace internal + +// Forward declarations +template +class GenericArray; +template +class GenericObject; + +/////////////////////////////////////////////////////////////////////////////// +// GenericValue + +//! Represents a JSON value. Use Value for UTF8 encoding and default allocator. +/*! + A JSON value can be one of 7 types. This class is a variant type supporting + these types. + + Use the Value if UTF8 and default allocator + + \tparam Encoding Encoding of the value. (Even non-string values need to + have the same encoding in a document) \tparam Allocator Allocator type for + allocating memory of object, array and string. +*/ +template > +class GenericValue { + public: + //! Name-value pair in an object. + typedef GenericMember Member; + typedef Encoding EncodingType; //!< Encoding type from template parameter. + typedef Allocator AllocatorType; //!< Allocator type from template parameter. + typedef typename Encoding::Ch Ch; //!< Character type derived from Encoding. + typedef GenericStringRef + StringRefType; //!< Reference to a constant string + typedef typename GenericMemberIterator::Iterator + MemberIterator; //!< Member iterator for iterating in object. + typedef typename GenericMemberIterator::Iterator + ConstMemberIterator; //!< Constant member iterator for iterating in + //!< object. + typedef GenericValue + *ValueIterator; //!< Value iterator for iterating in array. + typedef const GenericValue + *ConstValueIterator; //!< Constant value iterator for iterating in array. + typedef GenericValue + ValueType; //!< Value type of itself. + typedef GenericArray Array; + typedef GenericArray ConstArray; + typedef GenericObject Object; + typedef GenericObject ConstObject; + + //!@name Constructors and destructor. + //@{ + + //! Default constructor creates a null value. + GenericValue() RAPIDJSON_NOEXCEPT : data_() { data_.f.flags = kNullFlag; } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + //! Move constructor in C++11 + GenericValue(GenericValue &&rhs) RAPIDJSON_NOEXCEPT : data_(rhs.data_) { + rhs.data_.f.flags = kNullFlag; // give up contents + } +#endif + + private: + //! Copy constructor is not permitted. + GenericValue(const GenericValue &rhs); + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + //! Moving from a GenericDocument is not permitted. + template + GenericValue(GenericDocument &&rhs); + + //! Move assignment from a GenericDocument is not permitted. + template + GenericValue &operator=( + GenericDocument &&rhs); +#endif + + public: + //! Constructor with JSON value type. + /*! This creates a Value of specified type with default content. + \param type Type of the value. + \note Default content for number is zero. + */ + explicit GenericValue(Type type) RAPIDJSON_NOEXCEPT : data_() { + static const uint16_t defaultFlags[] = { + kNullFlag, kFalseFlag, kTrueFlag, kObjectFlag, + kArrayFlag, kShortStringFlag, kNumberAnyFlag}; + RAPIDJSON_NOEXCEPT_ASSERT(type >= kNullType && type <= kNumberType); + data_.f.flags = defaultFlags[type]; + + // Use ShortString to store empty string. + if (type == kStringType) data_.ss.SetLength(0); + } + + //! Explicit copy constructor (with allocator) + /*! Creates a copy of a Value by using the given Allocator + \tparam SourceAllocator allocator of \c rhs + \param rhs Value to copy from (read-only) + \param allocator Allocator for allocating copied elements and buffers. + Commonly use GenericDocument::GetAllocator(). \param copyConstStrings Force + copying of constant strings (e.g. referencing an in-situ buffer) \see + CopyFrom() + */ + template + GenericValue(const GenericValue &rhs, + Allocator &allocator, bool copyConstStrings = false) { + switch (rhs.GetType()) { + case kObjectType: { + SizeType count = rhs.data_.o.size; + Member *lm = reinterpret_cast( + allocator.Malloc(count * sizeof(Member))); + const typename GenericValue::Member *rm = + rhs.GetMembersPointer(); + for (SizeType i = 0; i < count; i++) { + new (&lm[i].name) + GenericValue(rm[i].name, allocator, copyConstStrings); + new (&lm[i].value) + GenericValue(rm[i].value, allocator, copyConstStrings); + } + data_.f.flags = kObjectFlag; + data_.o.size = data_.o.capacity = count; + SetMembersPointer(lm); + } break; + case kArrayType: { + SizeType count = rhs.data_.a.size; + GenericValue *le = reinterpret_cast( + allocator.Malloc(count * sizeof(GenericValue))); + const GenericValue *re = + rhs.GetElementsPointer(); + for (SizeType i = 0; i < count; i++) + new (&le[i]) GenericValue(re[i], allocator, copyConstStrings); + data_.f.flags = kArrayFlag; + data_.a.size = data_.a.capacity = count; + SetElementsPointer(le); + } break; + case kStringType: + if (rhs.data_.f.flags == kConstStringFlag && !copyConstStrings) { + data_.f.flags = rhs.data_.f.flags; + data_ = *reinterpret_cast(&rhs.data_); + } else + SetStringRaw(StringRef(rhs.GetString(), rhs.GetStringLength()), + allocator); + break; + default: + data_.f.flags = rhs.data_.f.flags; + data_ = *reinterpret_cast(&rhs.data_); + break; + } + } + +//! Constructor for boolean value. +/*! \param b Boolean value + \note This constructor is limited to \em real boolean values and rejects + implicitly converted types like arbitrary pointers. Use an explicit + cast to \c bool, if you want to construct a boolean JSON value in such + cases. + */ +#ifndef RAPIDJSON_DOXYGEN_RUNNING // hide SFINAE from Doxygen + template + explicit GenericValue(T b, RAPIDJSON_ENABLEIF((internal::IsSame))) + RAPIDJSON_NOEXCEPT // See #472 +#else + explicit GenericValue(bool b) RAPIDJSON_NOEXCEPT +#endif + : data_() { + // safe-guard against failing SFINAE + RAPIDJSON_STATIC_ASSERT((internal::IsSame::Value)); + data_.f.flags = b ? kTrueFlag : kFalseFlag; + } + + //! Constructor for int value. + explicit GenericValue(int i) RAPIDJSON_NOEXCEPT : data_() { + data_.n.i64 = i; + data_.f.flags = + (i >= 0) ? (kNumberIntFlag | kUintFlag | kUint64Flag) : kNumberIntFlag; + } + + //! Constructor for unsigned value. + explicit GenericValue(unsigned u) RAPIDJSON_NOEXCEPT : data_() { + data_.n.u64 = u; + data_.f.flags = (u & 0x80000000) + ? kNumberUintFlag + : (kNumberUintFlag | kIntFlag | kInt64Flag); + } + + //! Constructor for int64_t value. + explicit GenericValue(int64_t i64) RAPIDJSON_NOEXCEPT : data_() { + data_.n.i64 = i64; + data_.f.flags = kNumberInt64Flag; + if (i64 >= 0) { + data_.f.flags |= kNumberUint64Flag; + if (!(static_cast(i64) & + RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x00000000))) + data_.f.flags |= kUintFlag; + if (!(static_cast(i64) & + RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x80000000))) + data_.f.flags |= kIntFlag; + } else if (i64 >= static_cast( + RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x80000000))) + data_.f.flags |= kIntFlag; + } + + //! Constructor for uint64_t value. + explicit GenericValue(uint64_t u64) RAPIDJSON_NOEXCEPT : data_() { + data_.n.u64 = u64; + data_.f.flags = kNumberUint64Flag; + if (!(u64 & RAPIDJSON_UINT64_C2(0x80000000, 0x00000000))) + data_.f.flags |= kInt64Flag; + if (!(u64 & RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x00000000))) + data_.f.flags |= kUintFlag; + if (!(u64 & RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x80000000))) + data_.f.flags |= kIntFlag; + } + + //! Constructor for double value. + explicit GenericValue(double d) RAPIDJSON_NOEXCEPT : data_() { + data_.n.d = d; + data_.f.flags = kNumberDoubleFlag; + } + + //! Constructor for float value. + explicit GenericValue(float f) RAPIDJSON_NOEXCEPT : data_() { + data_.n.d = static_cast(f); + data_.f.flags = kNumberDoubleFlag; + } + + //! Constructor for constant string (i.e. do not make a copy of string) + GenericValue(const Ch *s, SizeType length) RAPIDJSON_NOEXCEPT : data_() { + SetStringRaw(StringRef(s, length)); + } + + //! Constructor for constant string (i.e. do not make a copy of string) + explicit GenericValue(StringRefType s) RAPIDJSON_NOEXCEPT : data_() { + SetStringRaw(s); + } + + //! Constructor for copy-string (i.e. do make a copy of string) + GenericValue(const Ch *s, SizeType length, Allocator &allocator) : data_() { + SetStringRaw(StringRef(s, length), allocator); + } + + //! Constructor for copy-string (i.e. do make a copy of string) + GenericValue(const Ch *s, Allocator &allocator) : data_() { + SetStringRaw(StringRef(s), allocator); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Constructor for copy-string from a string object (i.e. do make a copy of + //! string) + /*! \note Requires the definition of the preprocessor symbol \ref + * RAPIDJSON_HAS_STDSTRING. + */ + GenericValue(const std::basic_string &s, Allocator &allocator) : data_() { + SetStringRaw(StringRef(s), allocator); + } +#endif + + //! Constructor for Array. + /*! + \param a An array obtained by \c GetArray(). + \note \c Array is always pass-by-value. + \note the source array is moved into this value and the sourec array + becomes empty. + */ + GenericValue(Array a) RAPIDJSON_NOEXCEPT : data_(a.value_.data_) { + a.value_.data_ = Data(); + a.value_.data_.f.flags = kArrayFlag; + } + + //! Constructor for Object. + /*! + \param o An object obtained by \c GetObject(). + \note \c Object is always pass-by-value. + \note the source object is moved into this value and the sourec object + becomes empty. + */ + GenericValue(Object o) RAPIDJSON_NOEXCEPT : data_(o.value_.data_) { + o.value_.data_ = Data(); + o.value_.data_.f.flags = kObjectFlag; + } + + //! Destructor. + /*! Need to destruct elements of array, members of object, or copy-string. + */ + ~GenericValue() { + if (Allocator::kNeedFree) { // Shortcut by Allocator's trait + switch (data_.f.flags) { + case kArrayFlag: { + GenericValue *e = GetElementsPointer(); + for (GenericValue *v = e; v != e + data_.a.size; ++v) + v->~GenericValue(); + Allocator::Free(e); + } break; + + case kObjectFlag: + for (MemberIterator m = MemberBegin(); m != MemberEnd(); ++m) + m->~Member(); + Allocator::Free(GetMembersPointer()); + break; + + case kCopyStringFlag: + Allocator::Free(const_cast(GetStringPointer())); + break; + + default: + break; // Do nothing for other types. + } + } + } + + //@} + + //!@name Assignment operators + //@{ + + //! Assignment with move semantics. + /*! \param rhs Source of the assignment. It will become a null value after + * assignment. + */ + GenericValue &operator=(GenericValue &rhs) RAPIDJSON_NOEXCEPT { + if (RAPIDJSON_LIKELY(this != &rhs)) { + this->~GenericValue(); + RawAssign(rhs); + } + return *this; + } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + //! Move assignment in C++11 + GenericValue &operator=(GenericValue &&rhs) RAPIDJSON_NOEXCEPT { + return *this = rhs.Move(); + } +#endif + + //! Assignment of constant string reference (no copy) + /*! \param str Constant string reference to be assigned + \note This overload is needed to avoid clashes with the generic primitive + type assignment overload below. \see GenericStringRef, operator=(T) + */ + GenericValue &operator=(StringRefType str) RAPIDJSON_NOEXCEPT { + GenericValue s(str); + return *this = s; + } + + //! Assignment with primitive types. + /*! \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t + \param value The value to be assigned. + + \note The source type \c T explicitly disallows all pointer types, + especially (\c const) \ref Ch*. This helps avoiding implicitly + referencing character strings with insufficient lifetime, use + \ref SetString(const Ch*, Allocator&) (for copying) or + \ref StringRef() (to explicitly mark the pointer as constant) instead. + All other pointer types would implicitly convert to \c bool, + use \ref SetBool() instead. + */ + template + RAPIDJSON_DISABLEIF_RETURN((internal::IsPointer), (GenericValue &)) + operator=(T value) { + GenericValue v(value); + return *this = v; + } + + //! Deep-copy assignment from Value + /*! Assigns a \b copy of the Value to the current Value object + \tparam SourceAllocator Allocator type of \c rhs + \param rhs Value to copy from (read-only) + \param allocator Allocator to use for copying + \param copyConstStrings Force copying of constant strings (e.g. + referencing an in-situ buffer) + */ + template + GenericValue &CopyFrom(const GenericValue &rhs, + Allocator &allocator, bool copyConstStrings = false) { + RAPIDJSON_ASSERT(static_cast(this) != + static_cast(&rhs)); + this->~GenericValue(); + new (this) GenericValue(rhs, allocator, copyConstStrings); + return *this; + } + + //! Exchange the contents of this value with those of other. + /*! + \param other Another value. + \note Constant complexity. + */ + GenericValue &Swap(GenericValue &other) RAPIDJSON_NOEXCEPT { + GenericValue temp; + temp.RawAssign(*this); + RawAssign(other); + other.RawAssign(temp); + return *this; + } + + //! free-standing swap function helper + /*! + Helper function to enable support for common swap implementation pattern + based on \c std::swap: \code void swap(MyClass& a, MyClass& b) { using + std::swap; swap(a.value, b.value); + // ... + } + \endcode + \see Swap() + */ + friend inline void swap(GenericValue &a, GenericValue &b) RAPIDJSON_NOEXCEPT { + a.Swap(b); + } + + //! Prepare Value for move semantics + /*! \return *this */ + GenericValue &Move() RAPIDJSON_NOEXCEPT { return *this; } + //@} + + //!@name Equal-to and not-equal-to operators + //@{ + //! Equal-to operator + /*! + \note If an object contains duplicated named member, comparing equality + with any object is always \c false. \note Complexity is quadratic in + Object's member number and linear for the rest (number of all values in the + subtree and total lengths of all strings). + */ + template + bool operator==(const GenericValue &rhs) const { + typedef GenericValue RhsType; + if (GetType() != rhs.GetType()) return false; + + switch (GetType()) { + case kObjectType: // Warning: O(n^2) inner-loop + if (data_.o.size != rhs.data_.o.size) return false; + for (ConstMemberIterator lhsMemberItr = MemberBegin(); + lhsMemberItr != MemberEnd(); ++lhsMemberItr) { + typename RhsType::ConstMemberIterator rhsMemberItr = + rhs.FindMember(lhsMemberItr->name); + if (rhsMemberItr == rhs.MemberEnd() || + lhsMemberItr->value != rhsMemberItr->value) + return false; + } + return true; + + case kArrayType: + if (data_.a.size != rhs.data_.a.size) return false; + for (SizeType i = 0; i < data_.a.size; i++) + if ((*this)[i] != rhs[i]) return false; + return true; + + case kStringType: + return StringEqual(rhs); + + case kNumberType: + if (IsDouble() || rhs.IsDouble()) { + double a = GetDouble(); // May convert from integer to double. + double b = rhs.GetDouble(); // Ditto + return a >= b && a <= b; // Prevent -Wfloat-equal + } else + return data_.n.u64 == rhs.data_.n.u64; + + default: + return true; + } + } + + //! Equal-to operator with const C-string pointer + bool operator==(const Ch *rhs) const { + return *this == GenericValue(StringRef(rhs)); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Equal-to operator with string object + /*! \note Requires the definition of the preprocessor symbol \ref + * RAPIDJSON_HAS_STDSTRING. + */ + bool operator==(const std::basic_string &rhs) const { + return *this == GenericValue(StringRef(rhs)); + } +#endif + + //! Equal-to operator with primitive types + /*! \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t, + * \c double, \c true, \c false + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (bool)) + operator==(const T &rhs) const { + return *this == GenericValue(rhs); + } + + //! Not-equal-to operator + /*! \return !(*this == rhs) + */ + template + bool operator!=(const GenericValue &rhs) const { + return !(*this == rhs); + } + + //! Not-equal-to operator with const C-string pointer + bool operator!=(const Ch *rhs) const { return !(*this == rhs); } + + //! Not-equal-to operator with arbitrary types + /*! \return !(*this == rhs) + */ + template + RAPIDJSON_DISABLEIF_RETURN((internal::IsGenericValue), (bool)) + operator!=(const T &rhs) const { + return !(*this == rhs); + } + + //! Equal-to operator with arbitrary types (symmetric version) + /*! \return (rhs == lhs) + */ + template + friend RAPIDJSON_DISABLEIF_RETURN((internal::IsGenericValue), (bool)) + operator==(const T &lhs, const GenericValue &rhs) { + return rhs == lhs; + } + + //! Not-Equal-to operator with arbitrary types (symmetric version) + /*! \return !(rhs == lhs) + */ + template + friend RAPIDJSON_DISABLEIF_RETURN((internal::IsGenericValue), (bool)) + operator!=(const T &lhs, const GenericValue &rhs) { + return !(rhs == lhs); + } + //@} + + //!@name Type + //@{ + + Type GetType() const { return static_cast(data_.f.flags & kTypeMask); } + bool IsNull() const { return data_.f.flags == kNullFlag; } + bool IsFalse() const { return data_.f.flags == kFalseFlag; } + bool IsTrue() const { return data_.f.flags == kTrueFlag; } + bool IsBool() const { return (data_.f.flags & kBoolFlag) != 0; } + bool IsObject() const { return data_.f.flags == kObjectFlag; } + bool IsArray() const { return data_.f.flags == kArrayFlag; } + bool IsNumber() const { return (data_.f.flags & kNumberFlag) != 0; } + bool IsInt() const { return (data_.f.flags & kIntFlag) != 0; } + bool IsUint() const { return (data_.f.flags & kUintFlag) != 0; } + bool IsInt64() const { return (data_.f.flags & kInt64Flag) != 0; } + bool IsUint64() const { return (data_.f.flags & kUint64Flag) != 0; } + bool IsDouble() const { return (data_.f.flags & kDoubleFlag) != 0; } + bool IsString() const { return (data_.f.flags & kStringFlag) != 0; } + + // Checks whether a number can be losslessly converted to a double. + bool IsLosslessDouble() const { + if (!IsNumber()) return false; + if (IsUint64()) { + uint64_t u = GetUint64(); + volatile double d = static_cast(u); + return (d >= 0.0) && + (d < + static_cast((std::numeric_limits::max)())) && + (u == static_cast(d)); + } + if (IsInt64()) { + int64_t i = GetInt64(); + volatile double d = static_cast(i); + return (d >= + static_cast((std::numeric_limits::min)())) && + (d < static_cast((std::numeric_limits::max)())) && + (i == static_cast(d)); + } + return true; // double, int, uint are always lossless + } + + // Checks whether a number is a float (possible lossy). + bool IsFloat() const { + if ((data_.f.flags & kDoubleFlag) == 0) return false; + double d = GetDouble(); + return d >= -3.4028234e38 && d <= 3.4028234e38; + } + // Checks whether a number can be losslessly converted to a float. + bool IsLosslessFloat() const { + if (!IsNumber()) return false; + double a = GetDouble(); + if (a < static_cast(-(std::numeric_limits::max)()) || + a > static_cast((std::numeric_limits::max)())) + return false; + double b = static_cast(static_cast(a)); + return a >= b && a <= b; // Prevent -Wfloat-equal + } + + //@} + + //!@name Null + //@{ + + GenericValue &SetNull() { + this->~GenericValue(); + new (this) GenericValue(); + return *this; + } + + //@} + + //!@name Bool + //@{ + + bool GetBool() const { + RAPIDJSON_ASSERT(IsBool()); + return data_.f.flags == kTrueFlag; + } + //!< Set boolean value + /*! \post IsBool() == true */ + GenericValue &SetBool(bool b) { + this->~GenericValue(); + new (this) GenericValue(b); + return *this; + } + + //@} + + //!@name Object + //@{ + + //! Set this value as an empty object. + /*! \post IsObject() == true */ + GenericValue &SetObject() { + this->~GenericValue(); + new (this) GenericValue(kObjectType); + return *this; + } + + //! Get the number of members in the object. + SizeType MemberCount() const { + RAPIDJSON_ASSERT(IsObject()); + return data_.o.size; + } + + //! Get the capacity of object. + SizeType MemberCapacity() const { + RAPIDJSON_ASSERT(IsObject()); + return data_.o.capacity; + } + + //! Check whether the object is empty. + bool ObjectEmpty() const { + RAPIDJSON_ASSERT(IsObject()); + return data_.o.size == 0; + } + + //! Get a value from an object associated with the name. + /*! \pre IsObject() == true + \tparam T Either \c Ch or \c const \c Ch (template used for disambiguation + with \ref operator[](SizeType)) \note In version 0.1x, if the member is not + found, this function returns a null value. This makes issue 7. Since 0.2, + if the name is not correct, it will assert. If user is unsure whether a + member exists, user should use HasMember() first. A better approach is to + use FindMember(). \note Linear time complexity. + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::NotExpr< + internal::IsSame::Type, Ch>>), + (GenericValue &)) + operator[](T *name) { + GenericValue n(StringRef(name)); + return (*this)[n]; + } + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::NotExpr< + internal::IsSame::Type, Ch>>), + (const GenericValue &)) + operator[](T *name) const { + return const_cast(*this)[name]; + } + + //! Get a value from an object associated with the name. + /*! \pre IsObject() == true + \tparam SourceAllocator Allocator of the \c name value + + \note Compared to \ref operator[](T*), this version is faster because it + does not need a StrLen(). And it can also handle strings with embedded null + characters. + + \note Linear time complexity. + */ + template + GenericValue &operator[]( + const GenericValue &name) { + MemberIterator member = FindMember(name); + if (member != MemberEnd()) + return member->value; + else { + RAPIDJSON_ASSERT(false); // see above note + + // This will generate -Wexit-time-destructors in clang + // static GenericValue NullValue; + // return NullValue; + + // Use static buffer and placement-new to prevent destruction + static char buffer[sizeof(GenericValue)]; + return *new (buffer) GenericValue(); + } + } + template + const GenericValue &operator[]( + const GenericValue &name) const { + return const_cast(*this)[name]; + } + +#if RAPIDJSON_HAS_STDSTRING + //! Get a value from an object associated with name (string object). + GenericValue &operator[](const std::basic_string &name) { + return (*this)[GenericValue(StringRef(name))]; + } + const GenericValue &operator[](const std::basic_string &name) const { + return (*this)[GenericValue(StringRef(name))]; + } +#endif + + //! Const member iterator + /*! \pre IsObject() == true */ + ConstMemberIterator MemberBegin() const { + RAPIDJSON_ASSERT(IsObject()); + return ConstMemberIterator(GetMembersPointer()); + } + //! Const \em past-the-end member iterator + /*! \pre IsObject() == true */ + ConstMemberIterator MemberEnd() const { + RAPIDJSON_ASSERT(IsObject()); + return ConstMemberIterator(GetMembersPointer() + data_.o.size); + } + //! Member iterator + /*! \pre IsObject() == true */ + MemberIterator MemberBegin() { + RAPIDJSON_ASSERT(IsObject()); + return MemberIterator(GetMembersPointer()); + } + //! \em Past-the-end member iterator + /*! \pre IsObject() == true */ + MemberIterator MemberEnd() { + RAPIDJSON_ASSERT(IsObject()); + return MemberIterator(GetMembersPointer() + data_.o.size); + } + + //! Request the object to have enough capacity to store members. + /*! \param newCapacity The capacity that the object at least need to have. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \return + The value itself for fluent API. \note Linear time complexity. + */ + GenericValue &MemberReserve(SizeType newCapacity, Allocator &allocator) { + RAPIDJSON_ASSERT(IsObject()); + if (newCapacity > data_.o.capacity) { + SetMembersPointer(reinterpret_cast(allocator.Realloc( + GetMembersPointer(), data_.o.capacity * sizeof(Member), + newCapacity * sizeof(Member)))); + data_.o.capacity = newCapacity; + } + return *this; + } + + //! Check whether a member exists in the object. + /*! + \param name Member name to be searched. + \pre IsObject() == true + \return Whether a member with that name exists. + \note It is better to use FindMember() directly if you need the obtain the + value as well. \note Linear time complexity. + */ + bool HasMember(const Ch *name) const { + return FindMember(name) != MemberEnd(); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Check whether a member exists in the object with string object. + /*! + \param name Member name to be searched. + \pre IsObject() == true + \return Whether a member with that name exists. + \note It is better to use FindMember() directly if you need the obtain the + value as well. \note Linear time complexity. + */ + bool HasMember(const std::basic_string &name) const { + return FindMember(name) != MemberEnd(); + } +#endif + + //! Check whether a member exists in the object with GenericValue name. + /*! + This version is faster because it does not need a StrLen(). It can also + handle string with null character. \param name Member name to be searched. + \pre IsObject() == true + \return Whether a member with that name exists. + \note It is better to use FindMember() directly if you need the obtain the + value as well. \note Linear time complexity. + */ + template + bool HasMember(const GenericValue &name) const { + return FindMember(name) != MemberEnd(); + } + + //! Find member by name. + /*! + \param name Member name to be searched. + \pre IsObject() == true + \return Iterator to member, if it exists. + Otherwise returns \ref MemberEnd(). + + \note Earlier versions of Rapidjson returned a \c NULL pointer, in case + the requested member doesn't exist. For consistency with e.g. + \c std::map, this has been changed to MemberEnd() now. + \note Linear time complexity. + */ + MemberIterator FindMember(const Ch *name) { + GenericValue n(StringRef(name)); + return FindMember(n); + } + + ConstMemberIterator FindMember(const Ch *name) const { + return const_cast(*this).FindMember(name); + } + + //! Find member by name. + /*! + This version is faster because it does not need a StrLen(). It can also + handle string with null character. \param name Member name to be searched. + \pre IsObject() == true + \return Iterator to member, if it exists. + Otherwise returns \ref MemberEnd(). + + \note Earlier versions of Rapidjson returned a \c NULL pointer, in case + the requested member doesn't exist. For consistency with e.g. + \c std::map, this has been changed to MemberEnd() now. + \note Linear time complexity. + */ + template + MemberIterator FindMember( + const GenericValue &name) { + RAPIDJSON_ASSERT(IsObject()); + RAPIDJSON_ASSERT(name.IsString()); + MemberIterator member = MemberBegin(); + for (; member != MemberEnd(); ++member) + if (name.StringEqual(member->name)) break; + return member; + } + template + ConstMemberIterator FindMember( + const GenericValue &name) const { + return const_cast(*this).FindMember(name); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Find member by string object name. + /*! + \param name Member name to be searched. + \pre IsObject() == true + \return Iterator to member, if it exists. + Otherwise returns \ref MemberEnd(). + */ + MemberIterator FindMember(const std::basic_string &name) { + return FindMember(GenericValue(StringRef(name))); + } + ConstMemberIterator FindMember(const std::basic_string &name) const { + return FindMember(GenericValue(StringRef(name))); + } +#endif + + //! Add a member (name-value pair) to the object. + /*! \param name A string value as name of member. + \param value Value of any type. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \return + The value itself for fluent API. \note The ownership of \c name and \c + value will be transferred to this object on success. \pre IsObject() && + name.IsString() \post name.IsNull() && value.IsNull() \note Amortized + Constant time complexity. + */ + GenericValue &AddMember(GenericValue &name, GenericValue &value, + Allocator &allocator) { + RAPIDJSON_ASSERT(IsObject()); + RAPIDJSON_ASSERT(name.IsString()); + + ObjectData &o = data_.o; + if (o.size >= o.capacity) + MemberReserve(o.capacity == 0 ? kDefaultObjectCapacity + : (o.capacity + (o.capacity + 1) / 2), + allocator); + Member *members = GetMembersPointer(); + members[o.size].name.RawAssign(name); + members[o.size].value.RawAssign(value); + o.size++; + return *this; + } + + //! Add a constant string value as member (name-value pair) to the object. + /*! \param name A string value as name of member. + \param value constant string reference as value of member. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \return + The value itself for fluent API. \pre IsObject() \note This overload is + needed to avoid clashes with the generic primitive type + AddMember(GenericValue&,T,Allocator&) overload below. \note Amortized + Constant time complexity. + */ + GenericValue &AddMember(GenericValue &name, StringRefType value, + Allocator &allocator) { + GenericValue v(value); + return AddMember(name, v, allocator); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Add a string object as member (name-value pair) to the object. + /*! \param name A string value as name of member. + \param value constant string reference as value of member. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \return + The value itself for fluent API. \pre IsObject() \note This overload is + needed to avoid clashes with the generic primitive type + AddMember(GenericValue&,T,Allocator&) overload below. \note Amortized + Constant time complexity. + */ + GenericValue &AddMember(GenericValue &name, std::basic_string &value, + Allocator &allocator) { + GenericValue v(value, allocator); + return AddMember(name, v, allocator); + } +#endif + + //! Add any primitive value as member (name-value pair) to the object. + /*! \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t + \param name A string value as name of member. + \param value Value of primitive type \c T as value of member + \param allocator Allocator for reallocating memory. Commonly use + GenericDocument::GetAllocator(). \return The value itself for fluent API. + \pre IsObject() + + \note The source type \c T explicitly disallows all pointer types, + especially (\c const) \ref Ch*. This helps avoiding implicitly + referencing character strings with insufficient lifetime, use + \ref AddMember(StringRefType, GenericValue&, Allocator&) or \ref + AddMember(StringRefType, StringRefType, Allocator&). + All other pointer types would implicitly convert to \c bool, + use an explicit cast instead, if needed. + \note Amortized Constant time complexity. + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (GenericValue &)) + AddMember(GenericValue &name, T value, Allocator &allocator) { + GenericValue v(value); + return AddMember(name, v, allocator); + } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + GenericValue &AddMember(GenericValue &&name, GenericValue &&value, + Allocator &allocator) { + return AddMember(name, value, allocator); + } + GenericValue &AddMember(GenericValue &&name, GenericValue &value, + Allocator &allocator) { + return AddMember(name, value, allocator); + } + GenericValue &AddMember(GenericValue &name, GenericValue &&value, + Allocator &allocator) { + return AddMember(name, value, allocator); + } + GenericValue &AddMember(StringRefType name, GenericValue &&value, + Allocator &allocator) { + GenericValue n(name); + return AddMember(n, value, allocator); + } +#endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS + + //! Add a member (name-value pair) to the object. + /*! \param name A constant string reference as name of member. + \param value Value of any type. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \return + The value itself for fluent API. \note The ownership of \c value will be + transferred to this object on success. \pre IsObject() \post + value.IsNull() \note Amortized Constant time complexity. + */ + GenericValue &AddMember(StringRefType name, GenericValue &value, + Allocator &allocator) { + GenericValue n(name); + return AddMember(n, value, allocator); + } + + //! Add a constant string value as member (name-value pair) to the object. + /*! \param name A constant string reference as name of member. + \param value constant string reference as value of member. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \return + The value itself for fluent API. \pre IsObject() \note This overload is + needed to avoid clashes with the generic primitive type + AddMember(StringRefType,T,Allocator&) overload below. \note Amortized + Constant time complexity. + */ + GenericValue &AddMember(StringRefType name, StringRefType value, + Allocator &allocator) { + GenericValue v(value); + return AddMember(name, v, allocator); + } + + //! Add any primitive value as member (name-value pair) to the object. + /*! \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t + \param name A constant string reference as name of member. + \param value Value of primitive type \c T as value of member + \param allocator Allocator for reallocating memory. Commonly use + GenericDocument::GetAllocator(). \return The value itself for fluent API. + \pre IsObject() + + \note The source type \c T explicitly disallows all pointer types, + especially (\c const) \ref Ch*. This helps avoiding implicitly + referencing character strings with insufficient lifetime, use + \ref AddMember(StringRefType, GenericValue&, Allocator&) or \ref + AddMember(StringRefType, StringRefType, Allocator&). + All other pointer types would implicitly convert to \c bool, + use an explicit cast instead, if needed. + \note Amortized Constant time complexity. + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (GenericValue &)) + AddMember(StringRefType name, T value, Allocator &allocator) { + GenericValue n(name); + return AddMember(n, value, allocator); + } + + //! Remove all members in the object. + /*! This function do not deallocate memory in the object, i.e. the capacity is + unchanged. \note Linear time complexity. + */ + void RemoveAllMembers() { + RAPIDJSON_ASSERT(IsObject()); + for (MemberIterator m = MemberBegin(); m != MemberEnd(); ++m) m->~Member(); + data_.o.size = 0; + } + + //! Remove a member in object by its name. + /*! \param name Name of member to be removed. + \return Whether the member existed. + \note This function may reorder the object members. Use \ref + EraseMember(ConstMemberIterator) if you need to preserve the + relative order of the remaining members. + \note Linear time complexity. + */ + bool RemoveMember(const Ch *name) { + GenericValue n(StringRef(name)); + return RemoveMember(n); + } + +#if RAPIDJSON_HAS_STDSTRING + bool RemoveMember(const std::basic_string &name) { + return RemoveMember(GenericValue(StringRef(name))); + } +#endif + + template + bool RemoveMember(const GenericValue &name) { + MemberIterator m = FindMember(name); + if (m != MemberEnd()) { + RemoveMember(m); + return true; + } else + return false; + } + + //! Remove a member in object by iterator. + /*! \param m member iterator (obtained by FindMember() or MemberBegin()). + \return the new iterator after removal. + \note This function may reorder the object members. Use \ref + EraseMember(ConstMemberIterator) if you need to preserve the + relative order of the remaining members. + \note Constant time complexity. + */ + MemberIterator RemoveMember(MemberIterator m) { + RAPIDJSON_ASSERT(IsObject()); + RAPIDJSON_ASSERT(data_.o.size > 0); + RAPIDJSON_ASSERT(GetMembersPointer() != 0); + RAPIDJSON_ASSERT(m >= MemberBegin() && m < MemberEnd()); + + MemberIterator last(GetMembersPointer() + (data_.o.size - 1)); + if (data_.o.size > 1 && m != last) + *m = *last; // Move the last one to this place + else + m->~Member(); // Only one left, just destroy + --data_.o.size; + return m; + } + + //! Remove a member from an object by iterator. + /*! \param pos iterator to the member to remove + \pre IsObject() == true && \ref MemberBegin() <= \c pos < \ref MemberEnd() + \return Iterator following the removed element. + If the iterator \c pos refers to the last element, the \ref + MemberEnd() iterator is returned. \note This function preserves the + relative order of the remaining object members. If you do not need this, + use the more efficient \ref RemoveMember(MemberIterator). \note Linear time + complexity. + */ + MemberIterator EraseMember(ConstMemberIterator pos) { + return EraseMember(pos, pos + 1); + } + + //! Remove members in the range [first, last) from an object. + /*! \param first iterator to the first member to remove + \param last iterator following the last member to remove + \pre IsObject() == true && \ref MemberBegin() <= \c first <= \c last <= + \ref MemberEnd() \return Iterator following the last removed element. \note + This function preserves the relative order of the remaining object members. + \note Linear time complexity. + */ + MemberIterator EraseMember(ConstMemberIterator first, + ConstMemberIterator last) { + RAPIDJSON_ASSERT(IsObject()); + RAPIDJSON_ASSERT(data_.o.size > 0); + RAPIDJSON_ASSERT(GetMembersPointer() != 0); + RAPIDJSON_ASSERT(first >= MemberBegin()); + RAPIDJSON_ASSERT(first <= last); + RAPIDJSON_ASSERT(last <= MemberEnd()); + + MemberIterator pos = MemberBegin() + (first - MemberBegin()); + for (MemberIterator itr = pos; itr != last; ++itr) itr->~Member(); + std::memmove(static_cast(&*pos), &*last, + static_cast(MemberEnd() - last) * sizeof(Member)); + data_.o.size -= static_cast(last - first); + return pos; + } + + //! Erase a member in object by its name. + /*! \param name Name of member to be removed. + \return Whether the member existed. + \note Linear time complexity. + */ + bool EraseMember(const Ch *name) { + GenericValue n(StringRef(name)); + return EraseMember(n); + } + +#if RAPIDJSON_HAS_STDSTRING + bool EraseMember(const std::basic_string &name) { + return EraseMember(GenericValue(StringRef(name))); + } +#endif + + template + bool EraseMember(const GenericValue &name) { + MemberIterator m = FindMember(name); + if (m != MemberEnd()) { + EraseMember(m); + return true; + } else + return false; + } + + Object GetObject() { + RAPIDJSON_ASSERT(IsObject()); + return Object(*this); + } + ConstObject GetObject() const { + RAPIDJSON_ASSERT(IsObject()); + return ConstObject(*this); + } + + //@} + + //!@name Array + //@{ + + //! Set this value as an empty array. + /*! \post IsArray == true */ + GenericValue &SetArray() { + this->~GenericValue(); + new (this) GenericValue(kArrayType); + return *this; + } + + //! Get the number of elements in array. + SizeType Size() const { + RAPIDJSON_ASSERT(IsArray()); + return data_.a.size; + } + + //! Get the capacity of array. + SizeType Capacity() const { + RAPIDJSON_ASSERT(IsArray()); + return data_.a.capacity; + } + + //! Check whether the array is empty. + bool Empty() const { + RAPIDJSON_ASSERT(IsArray()); + return data_.a.size == 0; + } + + //! Remove all elements in the array. + /*! This function do not deallocate memory in the array, i.e. the capacity is + unchanged. \note Linear time complexity. + */ + void Clear() { + RAPIDJSON_ASSERT(IsArray()); + GenericValue *e = GetElementsPointer(); + for (GenericValue *v = e; v != e + data_.a.size; ++v) v->~GenericValue(); + data_.a.size = 0; + } + + //! Get an element from array by index. + /*! \pre IsArray() == true + \param index Zero-based index of element. + \see operator[](T*) + */ + GenericValue &operator[](SizeType index) { + RAPIDJSON_ASSERT(IsArray()); + RAPIDJSON_ASSERT(index < data_.a.size); + return GetElementsPointer()[index]; + } + const GenericValue &operator[](SizeType index) const { + return const_cast(*this)[index]; + } + + //! Element iterator + /*! \pre IsArray() == true */ + ValueIterator Begin() { + RAPIDJSON_ASSERT(IsArray()); + return GetElementsPointer(); + } + //! \em Past-the-end element iterator + /*! \pre IsArray() == true */ + ValueIterator End() { + RAPIDJSON_ASSERT(IsArray()); + return GetElementsPointer() + data_.a.size; + } + //! Constant element iterator + /*! \pre IsArray() == true */ + ConstValueIterator Begin() const { + return const_cast(*this).Begin(); + } + //! Constant \em past-the-end element iterator + /*! \pre IsArray() == true */ + ConstValueIterator End() const { + return const_cast(*this).End(); + } + + //! Request the array to have enough capacity to store elements. + /*! \param newCapacity The capacity that the array at least need to have. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \return + The value itself for fluent API. \note Linear time complexity. + */ + GenericValue &Reserve(SizeType newCapacity, Allocator &allocator) { + RAPIDJSON_ASSERT(IsArray()); + if (newCapacity > data_.a.capacity) { + SetElementsPointer(reinterpret_cast(allocator.Realloc( + GetElementsPointer(), data_.a.capacity * sizeof(GenericValue), + newCapacity * sizeof(GenericValue)))); + data_.a.capacity = newCapacity; + } + return *this; + } + + //! Append a GenericValue at the end of the array. + /*! \param value Value to be appended. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \pre + IsArray() == true \post value.IsNull() == true \return The value itself for + fluent API. \note The ownership of \c value will be transferred to this + array on success. \note If the number of elements to be appended is known, + calls Reserve() once first may be more efficient. \note Amortized constant + time complexity. + */ + GenericValue &PushBack(GenericValue &value, Allocator &allocator) { + RAPIDJSON_ASSERT(IsArray()); + if (data_.a.size >= data_.a.capacity) + Reserve(data_.a.capacity == 0 + ? kDefaultArrayCapacity + : (data_.a.capacity + (data_.a.capacity + 1) / 2), + allocator); + GetElementsPointer()[data_.a.size++].RawAssign(value); + return *this; + } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + GenericValue &PushBack(GenericValue &&value, Allocator &allocator) { + return PushBack(value, allocator); + } +#endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS + + //! Append a constant string reference at the end of the array. + /*! \param value Constant string reference to be appended. + \param allocator Allocator for reallocating memory. It must be the same + one used previously. Commonly use GenericDocument::GetAllocator(). \pre + IsArray() == true \return The value itself for fluent API. \note If the + number of elements to be appended is known, calls Reserve() once first may + be more efficient. \note Amortized constant time complexity. \see + GenericStringRef + */ + GenericValue &PushBack(StringRefType value, Allocator &allocator) { + return (*this).template PushBack(value, allocator); + } + + //! Append a primitive value at the end of the array. + /*! \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t + \param value Value of primitive type T to be appended. + \param allocator Allocator for reallocating memory. It must be the same + one as used before. Commonly use GenericDocument::GetAllocator(). \pre + IsArray() == true \return The value itself for fluent API. \note If the + number of elements to be appended is known, calls Reserve() once first may + be more efficient. + + \note The source type \c T explicitly disallows all pointer types, + especially (\c const) \ref Ch*. This helps avoiding implicitly + referencing character strings with insufficient lifetime, use + \ref PushBack(GenericValue&, Allocator&) or \ref + PushBack(StringRefType, Allocator&). + All other pointer types would implicitly convert to \c bool, + use an explicit cast instead, if needed. + \note Amortized constant time complexity. + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (GenericValue &)) + PushBack(T value, Allocator &allocator) { + GenericValue v(value); + return PushBack(v, allocator); + } + + //! Remove the last element in the array. + /*! + \note Constant time complexity. + */ + GenericValue &PopBack() { + RAPIDJSON_ASSERT(IsArray()); + RAPIDJSON_ASSERT(!Empty()); + GetElementsPointer()[--data_.a.size].~GenericValue(); + return *this; + } + + //! Remove an element of array by iterator. + /*! + \param pos iterator to the element to remove + \pre IsArray() == true && \ref Begin() <= \c pos < \ref End() + \return Iterator following the removed element. If the iterator pos refers + to the last element, the End() iterator is returned. \note Linear time + complexity. + */ + ValueIterator Erase(ConstValueIterator pos) { return Erase(pos, pos + 1); } + + //! Remove elements in the range [first, last) of the array. + /*! + \param first iterator to the first element to remove + \param last iterator following the last element to remove + \pre IsArray() == true && \ref Begin() <= \c first <= \c last <= \ref + End() \return Iterator following the last removed element. \note Linear + time complexity. + */ + ValueIterator Erase(ConstValueIterator first, ConstValueIterator last) { + RAPIDJSON_ASSERT(IsArray()); + RAPIDJSON_ASSERT(data_.a.size > 0); + RAPIDJSON_ASSERT(GetElementsPointer() != 0); + RAPIDJSON_ASSERT(first >= Begin()); + RAPIDJSON_ASSERT(first <= last); + RAPIDJSON_ASSERT(last <= End()); + ValueIterator pos = Begin() + (first - Begin()); + for (ValueIterator itr = pos; itr != last; ++itr) itr->~GenericValue(); + std::memmove(static_cast(pos), last, + static_cast(End() - last) * sizeof(GenericValue)); + data_.a.size -= static_cast(last - first); + return pos; + } + + Array GetArray() { + RAPIDJSON_ASSERT(IsArray()); + return Array(*this); + } + ConstArray GetArray() const { + RAPIDJSON_ASSERT(IsArray()); + return ConstArray(*this); + } + + //@} + + //!@name Number + //@{ + + int GetInt() const { + RAPIDJSON_ASSERT(data_.f.flags & kIntFlag); + return data_.n.i.i; + } + unsigned GetUint() const { + RAPIDJSON_ASSERT(data_.f.flags & kUintFlag); + return data_.n.u.u; + } + int64_t GetInt64() const { + RAPIDJSON_ASSERT(data_.f.flags & kInt64Flag); + return data_.n.i64; + } + uint64_t GetUint64() const { + RAPIDJSON_ASSERT(data_.f.flags & kUint64Flag); + return data_.n.u64; + } + + //! Get the value as double type. + /*! \note If the value is 64-bit integer type, it may lose precision. Use \c + * IsLosslessDouble() to check whether the converison is lossless. + */ + double GetDouble() const { + RAPIDJSON_ASSERT(IsNumber()); + if ((data_.f.flags & kDoubleFlag) != 0) + return data_.n.d; // exact type, no conversion. + if ((data_.f.flags & kIntFlag) != 0) return data_.n.i.i; // int -> double + if ((data_.f.flags & kUintFlag) != 0) + return data_.n.u.u; // unsigned -> double + if ((data_.f.flags & kInt64Flag) != 0) + return static_cast( + data_.n.i64); // int64_t -> double (may lose precision) + RAPIDJSON_ASSERT((data_.f.flags & kUint64Flag) != 0); + return static_cast( + data_.n.u64); // uint64_t -> double (may lose precision) + } + + //! Get the value as float type. + /*! \note If the value is 64-bit integer type, it may lose precision. Use \c + * IsLosslessFloat() to check whether the converison is lossless. + */ + float GetFloat() const { return static_cast(GetDouble()); } + + GenericValue &SetInt(int i) { + this->~GenericValue(); + new (this) GenericValue(i); + return *this; + } + GenericValue &SetUint(unsigned u) { + this->~GenericValue(); + new (this) GenericValue(u); + return *this; + } + GenericValue &SetInt64(int64_t i64) { + this->~GenericValue(); + new (this) GenericValue(i64); + return *this; + } + GenericValue &SetUint64(uint64_t u64) { + this->~GenericValue(); + new (this) GenericValue(u64); + return *this; + } + GenericValue &SetDouble(double d) { + this->~GenericValue(); + new (this) GenericValue(d); + return *this; + } + GenericValue &SetFloat(float f) { + this->~GenericValue(); + new (this) GenericValue(static_cast(f)); + return *this; + } + + //@} + + //!@name String + //@{ + + const Ch *GetString() const { + RAPIDJSON_ASSERT(IsString()); + return (data_.f.flags & kInlineStrFlag) ? data_.ss.str : GetStringPointer(); + } + + //! Get the length of string. + /*! Since rapidjson permits "\\u0000" in the json string, + * strlen(v.GetString()) may not equal to v.GetStringLength(). + */ + SizeType GetStringLength() const { + RAPIDJSON_ASSERT(IsString()); + return ((data_.f.flags & kInlineStrFlag) ? (data_.ss.GetLength()) + : data_.s.length); + } + + //! Set this value as a string without copying source string. + /*! This version has better performance with supplied length, and also support + string containing null character. \param s source string pointer. \param + length The length of source string, excluding the trailing null terminator. + \return The value itself for fluent API. + \post IsString() == true && GetString() == s && GetStringLength() == + length \see SetString(StringRefType) + */ + GenericValue &SetString(const Ch *s, SizeType length) { + return SetString(StringRef(s, length)); + } + + //! Set this value as a string without copying source string. + /*! \param s source string reference + \return The value itself for fluent API. + \post IsString() == true && GetString() == s && GetStringLength() == + s.length + */ + GenericValue &SetString(StringRefType s) { + this->~GenericValue(); + SetStringRaw(s); + return *this; + } + + //! Set this value as a string by copying from source string. + /*! This version has better performance with supplied length, and also support + string containing null character. \param s source string. \param length The + length of source string, excluding the trailing null terminator. \param + allocator Allocator for allocating copied buffer. Commonly use + GenericDocument::GetAllocator(). \return The value itself for fluent API. + \post IsString() == true && GetString() != s && strcmp(GetString(),s) == 0 + && GetStringLength() == length + */ + GenericValue &SetString(const Ch *s, SizeType length, Allocator &allocator) { + return SetString(StringRef(s, length), allocator); + } + + //! Set this value as a string by copying from source string. + /*! \param s source string. + \param allocator Allocator for allocating copied buffer. Commonly use + GenericDocument::GetAllocator(). \return The value itself for fluent API. + \post IsString() == true && GetString() != s && strcmp(GetString(),s) == 0 + && GetStringLength() == length + */ + GenericValue &SetString(const Ch *s, Allocator &allocator) { + return SetString(StringRef(s), allocator); + } + + //! Set this value as a string by copying from source string. + /*! \param s source string reference + \param allocator Allocator for allocating copied buffer. Commonly use + GenericDocument::GetAllocator(). \return The value itself for fluent API. + \post IsString() == true && GetString() != s.s && strcmp(GetString(),s) == + 0 && GetStringLength() == length + */ + GenericValue &SetString(StringRefType s, Allocator &allocator) { + this->~GenericValue(); + SetStringRaw(s, allocator); + return *this; + } + +#if RAPIDJSON_HAS_STDSTRING + //! Set this value as a string by copying from source string. + /*! \param s source string. + \param allocator Allocator for allocating copied buffer. Commonly use + GenericDocument::GetAllocator(). \return The value itself for fluent API. + \post IsString() == true && GetString() != s.data() && + strcmp(GetString(),s.data() == 0 && GetStringLength() == s.size() \note + Requires the definition of the preprocessor symbol \ref + RAPIDJSON_HAS_STDSTRING. + */ + GenericValue &SetString(const std::basic_string &s, + Allocator &allocator) { + return SetString(StringRef(s), allocator); + } +#endif + + //@} + + //!@name Array + //@{ + + //! Templated version for checking whether this value is type T. + /*! + \tparam T Either \c bool, \c int, \c unsigned, \c int64_t, \c uint64_t, \c + double, \c float, \c const \c char*, \c std::basic_string + */ + template + bool Is() const { + return internal::TypeHelper::Is(*this); + } + + template + T Get() const { + return internal::TypeHelper::Get(*this); + } + + template + T Get() { + return internal::TypeHelper::Get(*this); + } + + template + ValueType &Set(const T &data) { + return internal::TypeHelper::Set(*this, data); + } + + template + ValueType &Set(const T &data, AllocatorType &allocator) { + return internal::TypeHelper::Set(*this, data, allocator); + } + + //@} + + //! Generate events of this value to a Handler. + /*! This function adopts the GoF visitor pattern. + Typical usage is to output this JSON value as JSON text via Writer, which + is a Handler. It can also be used to deep clone this value via + GenericDocument, which is also a Handler. \tparam Handler type of handler. + \param handler An object implementing concept Handler. + */ + template + bool Accept(Handler &handler) const { + switch (GetType()) { + case kNullType: + return handler.Null(); + case kFalseType: + return handler.Bool(false); + case kTrueType: + return handler.Bool(true); + + case kObjectType: + if (RAPIDJSON_UNLIKELY(!handler.StartObject())) return false; + for (ConstMemberIterator m = MemberBegin(); m != MemberEnd(); ++m) { + RAPIDJSON_ASSERT(m->name.IsString()); // User may change the type of + // name by MemberIterator. + if (RAPIDJSON_UNLIKELY( + !handler.Key(m->name.GetString(), m->name.GetStringLength(), + (m->name.data_.f.flags & kCopyFlag) != 0))) + return false; + if (RAPIDJSON_UNLIKELY(!m->value.Accept(handler))) return false; + } + return handler.EndObject(data_.o.size); + + case kArrayType: + if (RAPIDJSON_UNLIKELY(!handler.StartArray())) return false; + for (const GenericValue *v = Begin(); v != End(); ++v) + if (RAPIDJSON_UNLIKELY(!v->Accept(handler))) return false; + return handler.EndArray(data_.a.size); + + case kStringType: + return handler.String(GetString(), GetStringLength(), + (data_.f.flags & kCopyFlag) != 0); + + default: + RAPIDJSON_ASSERT(GetType() == kNumberType); + if (IsDouble()) + return handler.Double(data_.n.d); + else if (IsInt()) + return handler.Int(data_.n.i.i); + else if (IsUint()) + return handler.Uint(data_.n.u.u); + else if (IsInt64()) + return handler.Int64(data_.n.i64); + else + return handler.Uint64(data_.n.u64); + } + } + + private: + template + friend class GenericValue; + template + friend class GenericDocument; + + enum { + kBoolFlag = 0x0008, + kNumberFlag = 0x0010, + kIntFlag = 0x0020, + kUintFlag = 0x0040, + kInt64Flag = 0x0080, + kUint64Flag = 0x0100, + kDoubleFlag = 0x0200, + kStringFlag = 0x0400, + kCopyFlag = 0x0800, + kInlineStrFlag = 0x1000, + + // Initial flags of different types. + kNullFlag = kNullType, + kTrueFlag = kTrueType | kBoolFlag, + kFalseFlag = kFalseType | kBoolFlag, + kNumberIntFlag = kNumberType | kNumberFlag | kIntFlag | kInt64Flag, + kNumberUintFlag = + kNumberType | kNumberFlag | kUintFlag | kUint64Flag | kInt64Flag, + kNumberInt64Flag = kNumberType | kNumberFlag | kInt64Flag, + kNumberUint64Flag = kNumberType | kNumberFlag | kUint64Flag, + kNumberDoubleFlag = kNumberType | kNumberFlag | kDoubleFlag, + kNumberAnyFlag = kNumberType | kNumberFlag | kIntFlag | kInt64Flag | + kUintFlag | kUint64Flag | kDoubleFlag, + kConstStringFlag = kStringType | kStringFlag, + kCopyStringFlag = kStringType | kStringFlag | kCopyFlag, + kShortStringFlag = kStringType | kStringFlag | kCopyFlag | kInlineStrFlag, + kObjectFlag = kObjectType, + kArrayFlag = kArrayType, + + kTypeMask = 0x07 + }; + + static const SizeType kDefaultArrayCapacity = 16; + static const SizeType kDefaultObjectCapacity = 16; + + struct Flag { +#if RAPIDJSON_48BITPOINTER_OPTIMIZATION + char payload[sizeof(SizeType) * 2 + + 6]; // 2 x SizeType + lower 48-bit pointer +#elif RAPIDJSON_64BIT + char payload[sizeof(SizeType) * 2 + sizeof(void *) + 6]; // 6 padding bytes +#else + char payload[sizeof(SizeType) * 2 + sizeof(void *) + + 2]; // 2 padding bytes +#endif + uint16_t flags; + }; + + struct String { + SizeType length; + SizeType hashcode; //!< reserved + const Ch *str; + }; // 12 bytes in 32-bit mode, 16 bytes in 64-bit mode + + // implementation detail: ShortString can represent zero-terminated strings up + // to MaxSize chars (excluding the terminating zero) and store a value to + // determine the length of the contained string in the last character + // str[LenPos] by storing "MaxSize - length" there. If the string to store has + // the maximal length of MaxSize then str[LenPos] will be 0 and therefore act + // as the string terminator as well. For getting the string length back from + // that value just use "MaxSize - str[LenPos]". This allows to store 13-chars + // strings in 32-bit mode, 21-chars strings in 64-bit mode, 13-chars strings + // for RAPIDJSON_48BITPOINTER_OPTIMIZATION=1 inline (for `UTF8`-encoded + // strings). + struct ShortString { + enum { + MaxChars = sizeof(static_cast(0)->payload) / sizeof(Ch), + MaxSize = MaxChars - 1, + LenPos = MaxSize + }; + Ch str[MaxChars]; + + inline static bool Usable(SizeType len) { return (MaxSize >= len); } + inline void SetLength(SizeType len) { + str[LenPos] = static_cast(MaxSize - len); + } + inline SizeType GetLength() const { + return static_cast(MaxSize - str[LenPos]); + } + }; // at most as many bytes as "String" above => 12 bytes in 32-bit mode, 16 + // bytes in 64-bit mode + + // By using proper binary layout, retrieval of different integer types do not + // need conversions. + union Number { +#if RAPIDJSON_ENDIAN == RAPIDJSON_LITTLEENDIAN + struct I { + int i; + char padding[4]; + } i; + struct U { + unsigned u; + char padding2[4]; + } u; +#else + struct I { + char padding[4]; + int i; + } i; + struct U { + char padding2[4]; + unsigned u; + } u; +#endif + int64_t i64; + uint64_t u64; + double d; + }; // 8 bytes + + struct ObjectData { + SizeType size; + SizeType capacity; + Member *members; + }; // 12 bytes in 32-bit mode, 16 bytes in 64-bit mode + + struct ArrayData { + SizeType size; + SizeType capacity; + GenericValue *elements; + }; // 12 bytes in 32-bit mode, 16 bytes in 64-bit mode + + union Data { + String s; + ShortString ss; + Number n; + ObjectData o; + ArrayData a; + Flag f; + }; // 16 bytes in 32-bit mode, 24 bytes in 64-bit mode, 16 bytes in 64-bit + // with RAPIDJSON_48BITPOINTER_OPTIMIZATION + + RAPIDJSON_FORCEINLINE const Ch *GetStringPointer() const { + return RAPIDJSON_GETPOINTER(Ch, data_.s.str); + } + RAPIDJSON_FORCEINLINE const Ch *SetStringPointer(const Ch *str) { + return RAPIDJSON_SETPOINTER(Ch, data_.s.str, str); + } + RAPIDJSON_FORCEINLINE GenericValue *GetElementsPointer() const { + return RAPIDJSON_GETPOINTER(GenericValue, data_.a.elements); + } + RAPIDJSON_FORCEINLINE GenericValue *SetElementsPointer( + GenericValue *elements) { + return RAPIDJSON_SETPOINTER(GenericValue, data_.a.elements, elements); + } + RAPIDJSON_FORCEINLINE Member *GetMembersPointer() const { + return RAPIDJSON_GETPOINTER(Member, data_.o.members); + } + RAPIDJSON_FORCEINLINE Member *SetMembersPointer(Member *members) { + return RAPIDJSON_SETPOINTER(Member, data_.o.members, members); + } + + // Initialize this value as array with initial data, without calling + // destructor. + void SetArrayRaw(GenericValue *values, SizeType count, Allocator &allocator) { + data_.f.flags = kArrayFlag; + if (count) { + GenericValue *e = static_cast( + allocator.Malloc(count * sizeof(GenericValue))); + SetElementsPointer(e); + std::memcpy(static_cast(e), values, count * sizeof(GenericValue)); + } else + SetElementsPointer(0); + data_.a.size = data_.a.capacity = count; + } + + //! Initialize this value as object with initial data, without calling + //! destructor. + void SetObjectRaw(Member *members, SizeType count, Allocator &allocator) { + data_.f.flags = kObjectFlag; + if (count) { + Member *m = + static_cast(allocator.Malloc(count * sizeof(Member))); + SetMembersPointer(m); + std::memcpy(static_cast(m), members, count * sizeof(Member)); + } else + SetMembersPointer(0); + data_.o.size = data_.o.capacity = count; + } + + //! Initialize this value as constant string, without calling destructor. + void SetStringRaw(StringRefType s) RAPIDJSON_NOEXCEPT { + data_.f.flags = kConstStringFlag; + SetStringPointer(s); + data_.s.length = s.length; + } + + //! Initialize this value as copy string with initial data, without calling + //! destructor. + void SetStringRaw(StringRefType s, Allocator &allocator) { + Ch *str = 0; + if (ShortString::Usable(s.length)) { + data_.f.flags = kShortStringFlag; + data_.ss.SetLength(s.length); + str = data_.ss.str; + } else { + data_.f.flags = kCopyStringFlag; + data_.s.length = s.length; + str = static_cast(allocator.Malloc((s.length + 1) * sizeof(Ch))); + SetStringPointer(str); + } + std::memcpy(str, s, s.length * sizeof(Ch)); + str[s.length] = '\0'; + } + + //! Assignment without calling destructor + void RawAssign(GenericValue &rhs) RAPIDJSON_NOEXCEPT { + data_ = rhs.data_; + // data_.f.flags = rhs.data_.f.flags; + rhs.data_.f.flags = kNullFlag; + } + + template + bool StringEqual(const GenericValue &rhs) const { + RAPIDJSON_ASSERT(IsString()); + RAPIDJSON_ASSERT(rhs.IsString()); + + const SizeType len1 = GetStringLength(); + const SizeType len2 = rhs.GetStringLength(); + if (len1 != len2) { + return false; + } + + const Ch *const str1 = GetString(); + const Ch *const str2 = rhs.GetString(); + if (str1 == str2) { + return true; + } // fast path for constant string + + return (std::memcmp(str1, str2, sizeof(Ch) * len1) == 0); + } + + Data data_; +}; + +//! GenericValue with UTF8 encoding +typedef GenericValue> Value; + +/////////////////////////////////////////////////////////////////////////////// +// GenericDocument + +//! A document for parsing JSON text as DOM. +/*! + \note implements Handler concept + \tparam Encoding Encoding for both parsing and string storage. + \tparam Allocator Allocator for allocating memory for the DOM + \tparam StackAllocator Allocator for allocating memory for stack during + parsing. \warning Although GenericDocument inherits from GenericValue, the + API does \b not provide any virtual functions, especially no virtual + destructor. To avoid memory leaks, do not \c delete a GenericDocument object + via a pointer to a GenericValue. +*/ +template , + typename StackAllocator = CrtAllocator> +class GenericDocument : public GenericValue { + public: + typedef typename Encoding::Ch Ch; //!< Character type derived from Encoding. + typedef GenericValue + ValueType; //!< Value type of the document. + typedef Allocator AllocatorType; //!< Allocator type from template parameter. + + //! Constructor + /*! Creates an empty document of specified type. + \param type Mandatory type of object to create. + \param allocator Optional allocator for allocating memory. + \param stackCapacity Optional initial capacity of stack in bytes. + \param stackAllocator Optional allocator for allocating memory for + stack. + */ + explicit GenericDocument(Type type, Allocator *allocator = 0, + size_t stackCapacity = kDefaultStackCapacity, + StackAllocator *stackAllocator = 0) + : GenericValue(type), + allocator_(allocator), + ownAllocator_(0), + stack_(stackAllocator, stackCapacity), + parseResult_() { + if (!allocator_) ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator)(); + } + + //! Constructor + /*! Creates an empty document which type is Null. + \param allocator Optional allocator for allocating memory. + \param stackCapacity Optional initial capacity of stack in bytes. + \param stackAllocator Optional allocator for allocating memory for + stack. + */ + GenericDocument(Allocator *allocator = 0, + size_t stackCapacity = kDefaultStackCapacity, + StackAllocator *stackAllocator = 0) + : allocator_(allocator), + ownAllocator_(0), + stack_(stackAllocator, stackCapacity), + parseResult_() { + if (!allocator_) ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator)(); + } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + //! Move constructor in C++11 + GenericDocument(GenericDocument &&rhs) RAPIDJSON_NOEXCEPT + : ValueType(std::forward( + rhs)), // explicit cast to avoid prohibited move from Document + allocator_(rhs.allocator_), + ownAllocator_(rhs.ownAllocator_), + stack_(std::move(rhs.stack_)), + parseResult_(rhs.parseResult_) { + rhs.allocator_ = 0; + rhs.ownAllocator_ = 0; + rhs.parseResult_ = ParseResult(); + } +#endif + + ~GenericDocument() { Destroy(); } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + //! Move assignment in C++11 + GenericDocument &operator=(GenericDocument &&rhs) RAPIDJSON_NOEXCEPT { + // The cast to ValueType is necessary here, because otherwise it would + // attempt to call GenericValue's templated assignment operator. + ValueType::operator=(std::forward(rhs)); + + // Calling the destructor here would prematurely call stack_'s destructor + Destroy(); + + allocator_ = rhs.allocator_; + ownAllocator_ = rhs.ownAllocator_; + stack_ = std::move(rhs.stack_); + parseResult_ = rhs.parseResult_; + + rhs.allocator_ = 0; + rhs.ownAllocator_ = 0; + rhs.parseResult_ = ParseResult(); + + return *this; + } +#endif + + //! Exchange the contents of this document with those of another. + /*! + \param rhs Another document. + \note Constant complexity. + \see GenericValue::Swap + */ + GenericDocument &Swap(GenericDocument &rhs) RAPIDJSON_NOEXCEPT { + ValueType::Swap(rhs); + stack_.Swap(rhs.stack_); + internal::Swap(allocator_, rhs.allocator_); + internal::Swap(ownAllocator_, rhs.ownAllocator_); + internal::Swap(parseResult_, rhs.parseResult_); + return *this; + } + + // Allow Swap with ValueType. + // Refer to Effective C++ 3rd Edition/Item 33: Avoid hiding inherited names. + using ValueType::Swap; + + //! free-standing swap function helper + /*! + Helper function to enable support for common swap implementation pattern + based on \c std::swap: \code void swap(MyClass& a, MyClass& b) { using + std::swap; swap(a.doc, b.doc); + // ... + } + \endcode + \see Swap() + */ + friend inline void swap(GenericDocument &a, + GenericDocument &b) RAPIDJSON_NOEXCEPT { + a.Swap(b); + } + + //! Populate this document by a generator which produces SAX events. + /*! \tparam Generator A functor with bool f(Handler) prototype. + \param g Generator functor which sends SAX events to the parameter. + \return The document itself for fluent API. + */ + template + GenericDocument &Populate(Generator &g) { + ClearStackOnExit scope(*this); + if (g(*this)) { + RAPIDJSON_ASSERT(stack_.GetSize() == + sizeof(ValueType)); // Got one and only one root object + ValueType::operator=(*stack_.template Pop( + 1)); // Move value from stack to document + } + return *this; + } + + //!@name Parse from stream + //!@{ + + //! Parse JSON text from an input stream (with Encoding conversion) + /*! \tparam parseFlags Combination of \ref ParseFlag. + \tparam SourceEncoding Encoding of input stream + \tparam InputStream Type of input stream, implementing Stream concept + \param is Input stream to be parsed. + \return The document itself for fluent API. + */ + template + GenericDocument &ParseStream(InputStream &is) { + GenericReader reader( + stack_.HasAllocator() ? &stack_.GetAllocator() : 0); + ClearStackOnExit scope(*this); + parseResult_ = reader.template Parse(is, *this); + if (parseResult_) { + RAPIDJSON_ASSERT(stack_.GetSize() == + sizeof(ValueType)); // Got one and only one root object + ValueType::operator=(*stack_.template Pop( + 1)); // Move value from stack to document + } + return *this; + } + + //! Parse JSON text from an input stream + /*! \tparam parseFlags Combination of \ref ParseFlag. + \tparam InputStream Type of input stream, implementing Stream concept + \param is Input stream to be parsed. + \return The document itself for fluent API. + */ + template + GenericDocument &ParseStream(InputStream &is) { + return ParseStream(is); + } + + //! Parse JSON text from an input stream (with \ref kParseDefaultFlags) + /*! \tparam InputStream Type of input stream, implementing Stream concept + \param is Input stream to be parsed. + \return The document itself for fluent API. + */ + template + GenericDocument &ParseStream(InputStream &is) { + return ParseStream(is); + } + //!@} + + //!@name Parse in-place from mutable string + //!@{ + + //! Parse JSON text from a mutable string + /*! \tparam parseFlags Combination of \ref ParseFlag. + \param str Mutable zero-terminated string to be parsed. + \return The document itself for fluent API. + */ + template + GenericDocument &ParseInsitu(Ch *str) { + GenericInsituStringStream s(str); + return ParseStream(s); + } + + //! Parse JSON text from a mutable string (with \ref kParseDefaultFlags) + /*! \param str Mutable zero-terminated string to be parsed. + \return The document itself for fluent API. + */ + GenericDocument &ParseInsitu(Ch *str) { + return ParseInsitu(str); + } + //!@} + + //!@name Parse from read-only string + //!@{ + + //! Parse JSON text from a read-only string (with Encoding conversion) + /*! \tparam parseFlags Combination of \ref ParseFlag (must not contain \ref + kParseInsituFlag). \tparam SourceEncoding Transcoding from input Encoding + \param str Read-only zero-terminated string to be parsed. + */ + template + GenericDocument &Parse(const typename SourceEncoding::Ch *str) { + RAPIDJSON_ASSERT(!(parseFlags & kParseInsituFlag)); + GenericStringStream s(str); + return ParseStream(s); + } + + //! Parse JSON text from a read-only string + /*! \tparam parseFlags Combination of \ref ParseFlag (must not contain \ref + kParseInsituFlag). \param str Read-only zero-terminated string to be + parsed. + */ + template + GenericDocument &Parse(const Ch *str) { + return Parse(str); + } + + //! Parse JSON text from a read-only string (with \ref kParseDefaultFlags) + /*! \param str Read-only zero-terminated string to be parsed. + */ + GenericDocument &Parse(const Ch *str) { + return Parse(str); + } + + template + GenericDocument &Parse(const typename SourceEncoding::Ch *str, + size_t length) { + RAPIDJSON_ASSERT(!(parseFlags & kParseInsituFlag)); + MemoryStream ms(reinterpret_cast(str), + length * sizeof(typename SourceEncoding::Ch)); + EncodedInputStream is(ms); + ParseStream(is); + return *this; + } + + template + GenericDocument &Parse(const Ch *str, size_t length) { + return Parse(str, length); + } + + GenericDocument &Parse(const Ch *str, size_t length) { + return Parse(str, length); + } + +#if RAPIDJSON_HAS_STDSTRING + template + GenericDocument &Parse( + const std::basic_string &str) { + // c_str() is constant complexity according to standard. Should be faster + // than Parse(const char*, size_t) + return Parse(str.c_str()); + } + + template + GenericDocument &Parse(const std::basic_string &str) { + return Parse(str.c_str()); + } + + GenericDocument &Parse(const std::basic_string &str) { + return Parse(str); + } +#endif // RAPIDJSON_HAS_STDSTRING + + //!@} + + //!@name Handling parse errors + //!@{ + + //! Whether a parse error has occurred in the last parsing. + bool HasParseError() const { return parseResult_.IsError(); } + + //! Get the \ref ParseErrorCode of last parsing. + ParseErrorCode GetParseError() const { return parseResult_.Code(); } + + //! Get the position of last parsing error in input, 0 otherwise. + size_t GetErrorOffset() const { return parseResult_.Offset(); } + +//! Implicit conversion to get the last parse result +#ifndef __clang // -Wdocumentation +/*! \return \ref ParseResult of the last parse operation + + \code + Document doc; + ParseResult ok = doc.Parse(json); + if (!ok) + printf( "JSON parse error: %s (%u)\n", GetParseError_En(ok.Code()), + ok.Offset()); \endcode + */ +#endif + operator ParseResult() const { return parseResult_; } + //!@} + + //! Get the allocator of this document. + Allocator &GetAllocator() { + RAPIDJSON_ASSERT(allocator_); + return *allocator_; + } + + //! Get the capacity of stack in bytes. + size_t GetStackCapacity() const { return stack_.GetCapacity(); } + + private: + // clear stack on any exit from ParseStream, e.g. due to exception + struct ClearStackOnExit { + explicit ClearStackOnExit(GenericDocument &d) : d_(d) {} + ~ClearStackOnExit() { d_.ClearStack(); } + + private: + ClearStackOnExit(const ClearStackOnExit &); + ClearStackOnExit &operator=(const ClearStackOnExit &); + GenericDocument &d_; + }; + + // callers of the following private Handler functions + // template friend class GenericReader; // for + // parsing + template + friend class GenericValue; // for deep copying + + public: + // Implementation of Handler + bool Null() { + new (stack_.template Push()) ValueType(); + return true; + } + bool Bool(bool b) { + new (stack_.template Push()) ValueType(b); + return true; + } + bool Int(int i) { + new (stack_.template Push()) ValueType(i); + return true; + } + bool Uint(unsigned i) { + new (stack_.template Push()) ValueType(i); + return true; + } + bool Int64(int64_t i) { + new (stack_.template Push()) ValueType(i); + return true; + } + bool Uint64(uint64_t i) { + new (stack_.template Push()) ValueType(i); + return true; + } + bool Double(double d) { + new (stack_.template Push()) ValueType(d); + return true; + } + + bool RawNumber(const Ch *str, SizeType length, bool copy) { + if (copy) + new (stack_.template Push()) + ValueType(str, length, GetAllocator()); + else + new (stack_.template Push()) ValueType(str, length); + return true; + } + + bool String(const Ch *str, SizeType length, bool copy) { + if (copy) + new (stack_.template Push()) + ValueType(str, length, GetAllocator()); + else + new (stack_.template Push()) ValueType(str, length); + return true; + } + + bool StartObject() { + new (stack_.template Push()) ValueType(kObjectType); + return true; + } + + bool Key(const Ch *str, SizeType length, bool copy) { + return String(str, length, copy); + } + + bool EndObject(SizeType memberCount) { + typename ValueType::Member *members = + stack_.template Pop(memberCount); + stack_.template Top()->SetObjectRaw(members, memberCount, + GetAllocator()); + return true; + } + + bool StartArray() { + new (stack_.template Push()) ValueType(kArrayType); + return true; + } + + bool EndArray(SizeType elementCount) { + ValueType *elements = stack_.template Pop(elementCount); + stack_.template Top()->SetArrayRaw(elements, elementCount, + GetAllocator()); + return true; + } + + private: + //! Prohibit copying + GenericDocument(const GenericDocument &); + //! Prohibit assignment + GenericDocument &operator=(const GenericDocument &); + + void ClearStack() { + if (Allocator::kNeedFree) + while (stack_.GetSize() > + 0) // Here assumes all elements in stack array are GenericValue + // (Member is actually 2 GenericValue objects) + (stack_.template Pop(1))->~ValueType(); + else + stack_.Clear(); + stack_.ShrinkToFit(); + } + + void Destroy() { RAPIDJSON_DELETE(ownAllocator_); } + + static const size_t kDefaultStackCapacity = 1024; + Allocator *allocator_; + Allocator *ownAllocator_; + internal::Stack stack_; + ParseResult parseResult_; +}; + +//! GenericDocument with UTF8 encoding +typedef GenericDocument> Document; + +//! Helper class for accessing Value of array type. +/*! + Instance of this helper class is obtained by \c GenericValue::GetArray(). + In addition to all APIs for array type, it provides range-based for loop if + \c RAPIDJSON_HAS_CXX11_RANGE_FOR=1. +*/ +template +class GenericArray { + public: + typedef GenericArray ConstArray; + typedef GenericArray Array; + typedef ValueT PlainType; + typedef typename internal::MaybeAddConst::Type ValueType; + typedef ValueType *ValueIterator; // This may be const or non-const iterator + typedef const ValueT *ConstValueIterator; + typedef typename ValueType::AllocatorType AllocatorType; + typedef typename ValueType::StringRefType StringRefType; + + template + friend class GenericValue; + + GenericArray(const GenericArray &rhs) : value_(rhs.value_) {} + GenericArray &operator=(const GenericArray &rhs) { + value_ = rhs.value_; + return *this; + } + ~GenericArray() {} + + SizeType Size() const { return value_.Size(); } + SizeType Capacity() const { return value_.Capacity(); } + bool Empty() const { return value_.Empty(); } + void Clear() const { value_.Clear(); } + ValueType &operator[](SizeType index) const { return value_[index]; } + ValueIterator Begin() const { return value_.Begin(); } + ValueIterator End() const { return value_.End(); } + GenericArray Reserve(SizeType newCapacity, AllocatorType &allocator) const { + value_.Reserve(newCapacity, allocator); + return *this; + } + GenericArray PushBack(ValueType &value, AllocatorType &allocator) const { + value_.PushBack(value, allocator); + return *this; + } +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + GenericArray PushBack(ValueType &&value, AllocatorType &allocator) const { + value_.PushBack(value, allocator); + return *this; + } +#endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS + GenericArray PushBack(StringRefType value, AllocatorType &allocator) const { + value_.PushBack(value, allocator); + return *this; + } + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (const GenericArray &)) + PushBack(T value, AllocatorType &allocator) const { + value_.PushBack(value, allocator); + return *this; + } + GenericArray PopBack() const { + value_.PopBack(); + return *this; + } + ValueIterator Erase(ConstValueIterator pos) const { + return value_.Erase(pos); + } + ValueIterator Erase(ConstValueIterator first, ConstValueIterator last) const { + return value_.Erase(first, last); + } + +#if RAPIDJSON_HAS_CXX11_RANGE_FOR + ValueIterator begin() const { return value_.Begin(); } + ValueIterator end() const { return value_.End(); } +#endif + + private: + GenericArray(); + GenericArray(ValueType &value) : value_(value) {} + ValueType &value_; +}; + +//! Helper class for accessing Value of object type. +/*! + Instance of this helper class is obtained by \c GenericValue::GetObject(). + In addition to all APIs for array type, it provides range-based for loop if + \c RAPIDJSON_HAS_CXX11_RANGE_FOR=1. +*/ +template +class GenericObject { + public: + typedef GenericObject ConstObject; + typedef GenericObject Object; + typedef ValueT PlainType; + typedef typename internal::MaybeAddConst::Type ValueType; + typedef GenericMemberIterator + MemberIterator; // This may be const or non-const iterator + typedef GenericMemberIterator + ConstMemberIterator; + typedef typename ValueType::AllocatorType AllocatorType; + typedef typename ValueType::StringRefType StringRefType; + typedef typename ValueType::EncodingType EncodingType; + typedef typename ValueType::Ch Ch; + + template + friend class GenericValue; + + GenericObject(const GenericObject &rhs) : value_(rhs.value_) {} + GenericObject &operator=(const GenericObject &rhs) { + value_ = rhs.value_; + return *this; + } + ~GenericObject() {} + + SizeType MemberCount() const { return value_.MemberCount(); } + SizeType MemberCapacity() const { return value_.MemberCapacity(); } + bool ObjectEmpty() const { return value_.ObjectEmpty(); } + template + ValueType &operator[](T *name) const { + return value_[name]; + } + template + ValueType &operator[]( + const GenericValue &name) const { + return value_[name]; + } +#if RAPIDJSON_HAS_STDSTRING + ValueType &operator[](const std::basic_string &name) const { + return value_[name]; + } +#endif + MemberIterator MemberBegin() const { return value_.MemberBegin(); } + MemberIterator MemberEnd() const { return value_.MemberEnd(); } + GenericObject MemberReserve(SizeType newCapacity, + AllocatorType &allocator) const { + value_.MemberReserve(newCapacity, allocator); + return *this; + } + bool HasMember(const Ch *name) const { return value_.HasMember(name); } +#if RAPIDJSON_HAS_STDSTRING + bool HasMember(const std::basic_string &name) const { + return value_.HasMember(name); + } +#endif + template + bool HasMember( + const GenericValue &name) const { + return value_.HasMember(name); + } + MemberIterator FindMember(const Ch *name) const { + return value_.FindMember(name); + } + template + MemberIterator FindMember( + const GenericValue &name) const { + return value_.FindMember(name); + } +#if RAPIDJSON_HAS_STDSTRING + MemberIterator FindMember(const std::basic_string &name) const { + return value_.FindMember(name); + } +#endif + GenericObject AddMember(ValueType &name, ValueType &value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } + GenericObject AddMember(ValueType &name, StringRefType value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } +#if RAPIDJSON_HAS_STDSTRING + GenericObject AddMember(ValueType &name, std::basic_string &value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } +#endif + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (ValueType &)) + AddMember(ValueType &name, T value, AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + GenericObject AddMember(ValueType &&name, ValueType &&value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } + GenericObject AddMember(ValueType &&name, ValueType &value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } + GenericObject AddMember(ValueType &name, ValueType &&value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } + GenericObject AddMember(StringRefType name, ValueType &&value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } +#endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS + GenericObject AddMember(StringRefType name, ValueType &value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } + GenericObject AddMember(StringRefType name, StringRefType value, + AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (GenericObject)) + AddMember(StringRefType name, T value, AllocatorType &allocator) const { + value_.AddMember(name, value, allocator); + return *this; + } + void RemoveAllMembers() { value_.RemoveAllMembers(); } + bool RemoveMember(const Ch *name) const { return value_.RemoveMember(name); } +#if RAPIDJSON_HAS_STDSTRING + bool RemoveMember(const std::basic_string &name) const { + return value_.RemoveMember(name); + } +#endif + template + bool RemoveMember( + const GenericValue &name) const { + return value_.RemoveMember(name); + } + MemberIterator RemoveMember(MemberIterator m) const { + return value_.RemoveMember(m); + } + MemberIterator EraseMember(ConstMemberIterator pos) const { + return value_.EraseMember(pos); + } + MemberIterator EraseMember(ConstMemberIterator first, + ConstMemberIterator last) const { + return value_.EraseMember(first, last); + } + bool EraseMember(const Ch *name) const { return value_.EraseMember(name); } +#if RAPIDJSON_HAS_STDSTRING + bool EraseMember(const std::basic_string &name) const { + return EraseMember(ValueType(StringRef(name))); + } +#endif + template + bool EraseMember( + const GenericValue &name) const { + return value_.EraseMember(name); + } + +#if RAPIDJSON_HAS_CXX11_RANGE_FOR + MemberIterator begin() const { return value_.MemberBegin(); } + MemberIterator end() const { return value_.MemberEnd(); } +#endif + + private: + GenericObject(); + GenericObject(ValueType &value) : value_(value) {} + ValueType &value_; +}; + +RAPIDJSON_NAMESPACE_END +RAPIDJSON_DIAG_POP + +#endif // RAPIDJSON_DOCUMENT_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/encodedstream.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/encodedstream.h new file mode 100644 index 0000000..74ef4ca --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/encodedstream.h @@ -0,0 +1,407 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_ENCODEDSTREAM_H_ +#define RAPIDJSON_ENCODEDSTREAM_H_ + +#include "memorystream.h" +#include "stream.h" + +#ifdef __GNUC__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +#endif + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Input byte stream wrapper with a statically bound encoding. +/*! + \tparam Encoding The interpretation of encoding of the stream. Either UTF8, + UTF16LE, UTF16BE, UTF32LE, UTF32BE. \tparam InputByteStream Type of input + byte stream. For example, FileReadStream. +*/ +template +class EncodedInputStream { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + + public: + typedef typename Encoding::Ch Ch; + + EncodedInputStream(InputByteStream &is) : is_(is) { + current_ = Encoding::TakeBOM(is_); + } + + Ch Peek() const { return current_; } + Ch Take() { + Ch c = current_; + current_ = Encoding::Take(is_); + return c; + } + size_t Tell() const { return is_.Tell(); } + + // Not implemented + void Put(Ch) { RAPIDJSON_ASSERT(false); } + void Flush() { RAPIDJSON_ASSERT(false); } + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + private: + EncodedInputStream(const EncodedInputStream &); + EncodedInputStream &operator=(const EncodedInputStream &); + + InputByteStream &is_; + Ch current_; +}; + +//! Specialized for UTF8 MemoryStream. +template <> +class EncodedInputStream, MemoryStream> { + public: + typedef UTF8<>::Ch Ch; + + EncodedInputStream(MemoryStream &is) : is_(is) { + if (static_cast(is_.Peek()) == 0xEFu) is_.Take(); + if (static_cast(is_.Peek()) == 0xBBu) is_.Take(); + if (static_cast(is_.Peek()) == 0xBFu) is_.Take(); + } + Ch Peek() const { return is_.Peek(); } + Ch Take() { return is_.Take(); } + size_t Tell() const { return is_.Tell(); } + + // Not implemented + void Put(Ch) {} + void Flush() {} + Ch *PutBegin() { return 0; } + size_t PutEnd(Ch *) { return 0; } + + MemoryStream &is_; + + private: + EncodedInputStream(const EncodedInputStream &); + EncodedInputStream &operator=(const EncodedInputStream &); +}; + +//! Output byte stream wrapper with statically bound encoding. +/*! + \tparam Encoding The interpretation of encoding of the stream. Either UTF8, + UTF16LE, UTF16BE, UTF32LE, UTF32BE. \tparam OutputByteStream Type of input + byte stream. For example, FileWriteStream. +*/ +template +class EncodedOutputStream { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + + public: + typedef typename Encoding::Ch Ch; + + EncodedOutputStream(OutputByteStream &os, bool putBOM = true) : os_(os) { + if (putBOM) Encoding::PutBOM(os_); + } + + void Put(Ch c) { Encoding::Put(os_, c); } + void Flush() { os_.Flush(); } + + // Not implemented + Ch Peek() const { + RAPIDJSON_ASSERT(false); + return 0; + } + Ch Take() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t Tell() const { + RAPIDJSON_ASSERT(false); + return 0; + } + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + private: + EncodedOutputStream(const EncodedOutputStream &); + EncodedOutputStream &operator=(const EncodedOutputStream &); + + OutputByteStream &os_; +}; + +#define RAPIDJSON_ENCODINGS_FUNC(x) \ + UTF8::x, UTF16LE::x, UTF16BE::x, UTF32LE::x, UTF32BE::x + +//! Input stream wrapper with dynamically bound encoding and automatic encoding +//! detection. +/*! + \tparam CharType Type of character for reading. + \tparam InputByteStream type of input byte stream to be wrapped. +*/ +template +class AutoUTFInputStream { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + + public: + typedef CharType Ch; + + //! Constructor. + /*! + \param is input stream to be wrapped. + \param type UTF encoding type if it is not detected from the stream. + */ + AutoUTFInputStream(InputByteStream &is, UTFType type = kUTF8) + : is_(&is), type_(type), hasBOM_(false) { + RAPIDJSON_ASSERT(type >= kUTF8 && type <= kUTF32BE); + DetectType(); + static const TakeFunc f[] = {RAPIDJSON_ENCODINGS_FUNC(Take)}; + takeFunc_ = f[type_]; + current_ = takeFunc_(*is_); + } + + UTFType GetType() const { return type_; } + bool HasBOM() const { return hasBOM_; } + + Ch Peek() const { return current_; } + Ch Take() { + Ch c = current_; + current_ = takeFunc_(*is_); + return c; + } + size_t Tell() const { return is_->Tell(); } + + // Not implemented + void Put(Ch) { RAPIDJSON_ASSERT(false); } + void Flush() { RAPIDJSON_ASSERT(false); } + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + private: + AutoUTFInputStream(const AutoUTFInputStream &); + AutoUTFInputStream &operator=(const AutoUTFInputStream &); + + // Detect encoding type with BOM or RFC 4627 + void DetectType() { + // BOM (Byte Order Mark): + // 00 00 FE FF UTF-32BE + // FF FE 00 00 UTF-32LE + // FE FF UTF-16BE + // FF FE UTF-16LE + // EF BB BF UTF-8 + + const unsigned char *c = + reinterpret_cast(is_->Peek4()); + if (!c) return; + + unsigned bom = + static_cast(c[0] | (c[1] << 8) | (c[2] << 16) | (c[3] << 24)); + hasBOM_ = false; + if (bom == 0xFFFE0000) { + type_ = kUTF32BE; + hasBOM_ = true; + is_->Take(); + is_->Take(); + is_->Take(); + is_->Take(); + } else if (bom == 0x0000FEFF) { + type_ = kUTF32LE; + hasBOM_ = true; + is_->Take(); + is_->Take(); + is_->Take(); + is_->Take(); + } else if ((bom & 0xFFFF) == 0xFFFE) { + type_ = kUTF16BE; + hasBOM_ = true; + is_->Take(); + is_->Take(); + } else if ((bom & 0xFFFF) == 0xFEFF) { + type_ = kUTF16LE; + hasBOM_ = true; + is_->Take(); + is_->Take(); + } else if ((bom & 0xFFFFFF) == 0xBFBBEF) { + type_ = kUTF8; + hasBOM_ = true; + is_->Take(); + is_->Take(); + is_->Take(); + } + + // RFC 4627: Section 3 + // "Since the first two characters of a JSON text will always be ASCII + // characters [RFC0020], it is possible to determine whether an octet + // stream is UTF-8, UTF-16 (BE or LE), or UTF-32 (BE or LE) by looking + // at the pattern of nulls in the first four octets." + // 00 00 00 xx UTF-32BE + // 00 xx 00 xx UTF-16BE + // xx 00 00 00 UTF-32LE + // xx 00 xx 00 UTF-16LE + // xx xx xx xx UTF-8 + + if (!hasBOM_) { + int pattern = + (c[0] ? 1 : 0) | (c[1] ? 2 : 0) | (c[2] ? 4 : 0) | (c[3] ? 8 : 0); + switch (pattern) { + case 0x08: + type_ = kUTF32BE; + break; + case 0x0A: + type_ = kUTF16BE; + break; + case 0x01: + type_ = kUTF32LE; + break; + case 0x05: + type_ = kUTF16LE; + break; + case 0x0F: + type_ = kUTF8; + break; + default: + break; // Use type defined by user. + } + } + + // Runtime check whether the size of character type is sufficient. It only + // perform checks with assertion. + if (type_ == kUTF16LE || type_ == kUTF16BE) + RAPIDJSON_ASSERT(sizeof(Ch) >= 2); + if (type_ == kUTF32LE || type_ == kUTF32BE) + RAPIDJSON_ASSERT(sizeof(Ch) >= 4); + } + + typedef Ch (*TakeFunc)(InputByteStream &is); + InputByteStream *is_; + UTFType type_; + Ch current_; + TakeFunc takeFunc_; + bool hasBOM_; +}; + +//! Output stream wrapper with dynamically bound encoding and automatic encoding +//! detection. +/*! + \tparam CharType Type of character for writing. + \tparam OutputByteStream type of output byte stream to be wrapped. +*/ +template +class AutoUTFOutputStream { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + + public: + typedef CharType Ch; + + //! Constructor. + /*! + \param os output stream to be wrapped. + \param type UTF encoding type. + \param putBOM Whether to write BOM at the beginning of the stream. + */ + AutoUTFOutputStream(OutputByteStream &os, UTFType type, bool putBOM) + : os_(&os), type_(type) { + RAPIDJSON_ASSERT(type >= kUTF8 && type <= kUTF32BE); + + // Runtime check whether the size of character type is sufficient. It only + // perform checks with assertion. + if (type_ == kUTF16LE || type_ == kUTF16BE) + RAPIDJSON_ASSERT(sizeof(Ch) >= 2); + if (type_ == kUTF32LE || type_ == kUTF32BE) + RAPIDJSON_ASSERT(sizeof(Ch) >= 4); + + static const PutFunc f[] = {RAPIDJSON_ENCODINGS_FUNC(Put)}; + putFunc_ = f[type_]; + + if (putBOM) PutBOM(); + } + + UTFType GetType() const { return type_; } + + void Put(Ch c) { putFunc_(*os_, c); } + void Flush() { os_->Flush(); } + + // Not implemented + Ch Peek() const { + RAPIDJSON_ASSERT(false); + return 0; + } + Ch Take() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t Tell() const { + RAPIDJSON_ASSERT(false); + return 0; + } + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + private: + AutoUTFOutputStream(const AutoUTFOutputStream &); + AutoUTFOutputStream &operator=(const AutoUTFOutputStream &); + + void PutBOM() { + typedef void (*PutBOMFunc)(OutputByteStream &); + static const PutBOMFunc f[] = {RAPIDJSON_ENCODINGS_FUNC(PutBOM)}; + f[type_](*os_); + } + + typedef void (*PutFunc)(OutputByteStream &, Ch); + + OutputByteStream *os_; + UTFType type_; + PutFunc putFunc_; +}; + +#undef RAPIDJSON_ENCODINGS_FUNC + +RAPIDJSON_NAMESPACE_END + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +#endif + +#ifdef __GNUC__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_FILESTREAM_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/encodings.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/encodings.h new file mode 100644 index 0000000..34521cc --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/encodings.h @@ -0,0 +1,816 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_ENCODINGS_H_ +#define RAPIDJSON_ENCODINGS_H_ + +#include "rapidjson.h" + +#if defined(_MSC_VER) && !defined(__clang__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF( + 4244) // conversion from 'type1' to 'type2', possible loss of data +RAPIDJSON_DIAG_OFF(4702) // unreachable code +#elif defined(__GNUC__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +RAPIDJSON_DIAG_OFF(overflow) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +/////////////////////////////////////////////////////////////////////////////// +// Encoding + +/*! \class rapidjson::Encoding + \brief Concept for encoding of Unicode characters. + +\code +concept Encoding { + typename Ch; //! Type of character. A "character" is actually a code unit +in unicode's definition. + + enum { supportUnicode = 1 }; // or 0 if not supporting unicode + + //! \brief Encode a Unicode codepoint to an output stream. + //! \param os Output stream. + //! \param codepoint An unicode codepoint, ranging from 0x0 to 0x10FFFF +inclusively. template static void Encode(OutputStream& +os, unsigned codepoint); + + //! \brief Decode a Unicode codepoint from an input stream. + //! \param is Input stream. + //! \param codepoint Output of the unicode codepoint. + //! \return true if a valid codepoint can be decoded from the stream. + template + static bool Decode(InputStream& is, unsigned* codepoint); + + //! \brief Validate one Unicode codepoint from an encoded stream. + //! \param is Input stream to obtain codepoint. + //! \param os Output for copying one codepoint. + //! \return true if it is valid. + //! \note This function just validating and copying the codepoint without +actually decode it. template + static bool Validate(InputStream& is, OutputStream& os); + + // The following functions are deal with byte streams. + + //! Take a character from input byte stream, skip BOM if exist. + template + static CharType TakeBOM(InputByteStream& is); + + //! Take a character from input byte stream. + template + static Ch Take(InputByteStream& is); + + //! Put BOM to output byte stream. + template + static void PutBOM(OutputByteStream& os); + + //! Put a character to output byte stream. + template + static void Put(OutputByteStream& os, Ch c); +}; +\endcode +*/ + +/////////////////////////////////////////////////////////////////////////////// +// UTF8 + +//! UTF-8 encoding. +/*! http://en.wikipedia.org/wiki/UTF-8 + http://tools.ietf.org/html/rfc3629 + \tparam CharType Code unit for storing 8-bit UTF-8 data. Default is char. + \note implements Encoding concept +*/ +template +struct UTF8 { + typedef CharType Ch; + + enum { supportUnicode = 1 }; + + template + static void Encode(OutputStream &os, unsigned codepoint) { + if (codepoint <= 0x7F) + os.Put(static_cast(codepoint & 0xFF)); + else if (codepoint <= 0x7FF) { + os.Put(static_cast(0xC0 | ((codepoint >> 6) & 0xFF))); + os.Put(static_cast(0x80 | ((codepoint & 0x3F)))); + } else if (codepoint <= 0xFFFF) { + os.Put(static_cast(0xE0 | ((codepoint >> 12) & 0xFF))); + os.Put(static_cast(0x80 | ((codepoint >> 6) & 0x3F))); + os.Put(static_cast(0x80 | (codepoint & 0x3F))); + } else { + RAPIDJSON_ASSERT(codepoint <= 0x10FFFF); + os.Put(static_cast(0xF0 | ((codepoint >> 18) & 0xFF))); + os.Put(static_cast(0x80 | ((codepoint >> 12) & 0x3F))); + os.Put(static_cast(0x80 | ((codepoint >> 6) & 0x3F))); + os.Put(static_cast(0x80 | (codepoint & 0x3F))); + } + } + + template + static void EncodeUnsafe(OutputStream &os, unsigned codepoint) { + if (codepoint <= 0x7F) + PutUnsafe(os, static_cast(codepoint & 0xFF)); + else if (codepoint <= 0x7FF) { + PutUnsafe(os, static_cast(0xC0 | ((codepoint >> 6) & 0xFF))); + PutUnsafe(os, static_cast(0x80 | ((codepoint & 0x3F)))); + } else if (codepoint <= 0xFFFF) { + PutUnsafe(os, static_cast(0xE0 | ((codepoint >> 12) & 0xFF))); + PutUnsafe(os, static_cast(0x80 | ((codepoint >> 6) & 0x3F))); + PutUnsafe(os, static_cast(0x80 | (codepoint & 0x3F))); + } else { + RAPIDJSON_ASSERT(codepoint <= 0x10FFFF); + PutUnsafe(os, static_cast(0xF0 | ((codepoint >> 18) & 0xFF))); + PutUnsafe(os, static_cast(0x80 | ((codepoint >> 12) & 0x3F))); + PutUnsafe(os, static_cast(0x80 | ((codepoint >> 6) & 0x3F))); + PutUnsafe(os, static_cast(0x80 | (codepoint & 0x3F))); + } + } + + template + static bool Decode(InputStream &is, unsigned *codepoint) { +#define RAPIDJSON_COPY() \ + c = is.Take(); \ + *codepoint = (*codepoint << 6) | (static_cast(c) & 0x3Fu) +#define RAPIDJSON_TRANS(mask) \ + result &= ((GetRange(static_cast(c)) & mask) != 0) +#define RAPIDJSON_TAIL() \ + RAPIDJSON_COPY(); \ + RAPIDJSON_TRANS(0x70) + typename InputStream::Ch c = is.Take(); + if (!(c & 0x80)) { + *codepoint = static_cast(c); + return true; + } + + unsigned char type = GetRange(static_cast(c)); + if (type >= 32) { + *codepoint = 0; + } else { + *codepoint = (0xFFu >> type) & static_cast(c); + } + bool result = true; + switch (type) { + case 2: + RAPIDJSON_TAIL(); + return result; + case 3: + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + case 4: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x50); + RAPIDJSON_TAIL(); + return result; + case 5: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x10); + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + case 6: + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + case 10: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x20); + RAPIDJSON_TAIL(); + return result; + case 11: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x60); + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + default: + return false; + } +#undef RAPIDJSON_COPY +#undef RAPIDJSON_TRANS +#undef RAPIDJSON_TAIL + } + + template + static bool Validate(InputStream &is, OutputStream &os) { +#define RAPIDJSON_COPY() os.Put(c = is.Take()) +#define RAPIDJSON_TRANS(mask) \ + result &= ((GetRange(static_cast(c)) & mask) != 0) +#define RAPIDJSON_TAIL() \ + RAPIDJSON_COPY(); \ + RAPIDJSON_TRANS(0x70) + Ch c; + RAPIDJSON_COPY(); + if (!(c & 0x80)) return true; + + bool result = true; + switch (GetRange(static_cast(c))) { + case 2: + RAPIDJSON_TAIL(); + return result; + case 3: + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + case 4: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x50); + RAPIDJSON_TAIL(); + return result; + case 5: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x10); + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + case 6: + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + case 10: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x20); + RAPIDJSON_TAIL(); + return result; + case 11: + RAPIDJSON_COPY(); + RAPIDJSON_TRANS(0x60); + RAPIDJSON_TAIL(); + RAPIDJSON_TAIL(); + return result; + default: + return false; + } +#undef RAPIDJSON_COPY +#undef RAPIDJSON_TRANS +#undef RAPIDJSON_TAIL + } + + static unsigned char GetRange(unsigned char c) { + // Referring to DFA of http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ + // With new mapping 1 -> 0x10, 7 -> 0x20, 9 -> 0x40, such that AND operation + // can test multiple types. + static const unsigned char type[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0x10, 0x10, 0x10, 0x10, + 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 10, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, + 11, 6, 6, 6, 5, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 8, 8, + }; + return type[c]; + } + + template + static CharType TakeBOM(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + typename InputByteStream::Ch c = Take(is); + if (static_cast(c) != 0xEFu) return c; + c = is.Take(); + if (static_cast(c) != 0xBBu) return c; + c = is.Take(); + if (static_cast(c) != 0xBFu) return c; + c = is.Take(); + return c; + } + + template + static Ch Take(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + return static_cast(is.Take()); + } + + template + static void PutBOM(OutputByteStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(0xEFu)); + os.Put(static_cast(0xBBu)); + os.Put(static_cast(0xBFu)); + } + + template + static void Put(OutputByteStream &os, Ch c) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(c)); + } +}; + +/////////////////////////////////////////////////////////////////////////////// +// UTF16 + +//! UTF-16 encoding. +/*! http://en.wikipedia.org/wiki/UTF-16 + http://tools.ietf.org/html/rfc2781 + \tparam CharType Type for storing 16-bit UTF-16 data. Default is wchar_t. + C++11 may use char16_t instead. \note implements Encoding concept + + \note For in-memory access, no need to concern endianness. The code units + and code points are represented by CPU's endianness. For streaming, use + UTF16LE and UTF16BE, which handle endianness. +*/ +template +struct UTF16 { + typedef CharType Ch; + RAPIDJSON_STATIC_ASSERT(sizeof(Ch) >= 2); + + enum { supportUnicode = 1 }; + + template + static void Encode(OutputStream &os, unsigned codepoint) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputStream::Ch) >= 2); + if (codepoint <= 0xFFFF) { + RAPIDJSON_ASSERT( + codepoint < 0xD800 || + codepoint > 0xDFFF); // Code point itself cannot be surrogate pair + os.Put(static_cast(codepoint)); + } else { + RAPIDJSON_ASSERT(codepoint <= 0x10FFFF); + unsigned v = codepoint - 0x10000; + os.Put(static_cast((v >> 10) | 0xD800)); + os.Put(static_cast((v & 0x3FF) | 0xDC00)); + } + } + + template + static void EncodeUnsafe(OutputStream &os, unsigned codepoint) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputStream::Ch) >= 2); + if (codepoint <= 0xFFFF) { + RAPIDJSON_ASSERT( + codepoint < 0xD800 || + codepoint > 0xDFFF); // Code point itself cannot be surrogate pair + PutUnsafe(os, static_cast(codepoint)); + } else { + RAPIDJSON_ASSERT(codepoint <= 0x10FFFF); + unsigned v = codepoint - 0x10000; + PutUnsafe(os, static_cast((v >> 10) | 0xD800)); + PutUnsafe(os, + static_cast((v & 0x3FF) | 0xDC00)); + } + } + + template + static bool Decode(InputStream &is, unsigned *codepoint) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputStream::Ch) >= 2); + typename InputStream::Ch c = is.Take(); + if (c < 0xD800 || c > 0xDFFF) { + *codepoint = static_cast(c); + return true; + } else if (c <= 0xDBFF) { + *codepoint = (static_cast(c) & 0x3FF) << 10; + c = is.Take(); + *codepoint |= (static_cast(c) & 0x3FF); + *codepoint += 0x10000; + return c >= 0xDC00 && c <= 0xDFFF; + } + return false; + } + + template + static bool Validate(InputStream &is, OutputStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputStream::Ch) >= 2); + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputStream::Ch) >= 2); + typename InputStream::Ch c; + os.Put(static_cast(c = is.Take())); + if (c < 0xD800 || c > 0xDFFF) + return true; + else if (c <= 0xDBFF) { + os.Put(c = is.Take()); + return c >= 0xDC00 && c <= 0xDFFF; + } + return false; + } +}; + +//! UTF-16 little endian encoding. +template +struct UTF16LE : UTF16 { + template + static CharType TakeBOM(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + CharType c = Take(is); + return static_cast(c) == 0xFEFFu ? Take(is) : c; + } + + template + static CharType Take(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + unsigned c = static_cast(is.Take()); + c |= static_cast(static_cast(is.Take())) << 8; + return static_cast(c); + } + + template + static void PutBOM(OutputByteStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(0xFFu)); + os.Put(static_cast(0xFEu)); + } + + template + static void Put(OutputByteStream &os, CharType c) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(static_cast(c) & + 0xFFu)); + os.Put(static_cast( + (static_cast(c) >> 8) & 0xFFu)); + } +}; + +//! UTF-16 big endian encoding. +template +struct UTF16BE : UTF16 { + template + static CharType TakeBOM(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + CharType c = Take(is); + return static_cast(c) == 0xFEFFu ? Take(is) : c; + } + + template + static CharType Take(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + unsigned c = static_cast(static_cast(is.Take())) << 8; + c |= static_cast(static_cast(is.Take())); + return static_cast(c); + } + + template + static void PutBOM(OutputByteStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(0xFEu)); + os.Put(static_cast(0xFFu)); + } + + template + static void Put(OutputByteStream &os, CharType c) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast( + (static_cast(c) >> 8) & 0xFFu)); + os.Put(static_cast(static_cast(c) & + 0xFFu)); + } +}; + +/////////////////////////////////////////////////////////////////////////////// +// UTF32 + +//! UTF-32 encoding. +/*! http://en.wikipedia.org/wiki/UTF-32 + \tparam CharType Type for storing 32-bit UTF-32 data. Default is unsigned. + C++11 may use char32_t instead. \note implements Encoding concept + + \note For in-memory access, no need to concern endianness. The code units + and code points are represented by CPU's endianness. For streaming, use + UTF32LE and UTF32BE, which handle endianness. +*/ +template +struct UTF32 { + typedef CharType Ch; + RAPIDJSON_STATIC_ASSERT(sizeof(Ch) >= 4); + + enum { supportUnicode = 1 }; + + template + static void Encode(OutputStream &os, unsigned codepoint) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputStream::Ch) >= 4); + RAPIDJSON_ASSERT(codepoint <= 0x10FFFF); + os.Put(codepoint); + } + + template + static void EncodeUnsafe(OutputStream &os, unsigned codepoint) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputStream::Ch) >= 4); + RAPIDJSON_ASSERT(codepoint <= 0x10FFFF); + PutUnsafe(os, codepoint); + } + + template + static bool Decode(InputStream &is, unsigned *codepoint) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputStream::Ch) >= 4); + Ch c = is.Take(); + *codepoint = c; + return c <= 0x10FFFF; + } + + template + static bool Validate(InputStream &is, OutputStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputStream::Ch) >= 4); + Ch c; + os.Put(c = is.Take()); + return c <= 0x10FFFF; + } +}; + +//! UTF-32 little endian enocoding. +template +struct UTF32LE : UTF32 { + template + static CharType TakeBOM(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + CharType c = Take(is); + return static_cast(c) == 0x0000FEFFu ? Take(is) : c; + } + + template + static CharType Take(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + unsigned c = static_cast(is.Take()); + c |= static_cast(static_cast(is.Take())) << 8; + c |= static_cast(static_cast(is.Take())) << 16; + c |= static_cast(static_cast(is.Take())) << 24; + return static_cast(c); + } + + template + static void PutBOM(OutputByteStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(0xFFu)); + os.Put(static_cast(0xFEu)); + os.Put(static_cast(0x00u)); + os.Put(static_cast(0x00u)); + } + + template + static void Put(OutputByteStream &os, CharType c) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(c & 0xFFu)); + os.Put(static_cast((c >> 8) & 0xFFu)); + os.Put(static_cast((c >> 16) & 0xFFu)); + os.Put(static_cast((c >> 24) & 0xFFu)); + } +}; + +//! UTF-32 big endian encoding. +template +struct UTF32BE : UTF32 { + template + static CharType TakeBOM(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + CharType c = Take(is); + return static_cast(c) == 0x0000FEFFu ? Take(is) : c; + } + + template + static CharType Take(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + unsigned c = static_cast(static_cast(is.Take())) << 24; + c |= static_cast(static_cast(is.Take())) << 16; + c |= static_cast(static_cast(is.Take())) << 8; + c |= static_cast(static_cast(is.Take())); + return static_cast(c); + } + + template + static void PutBOM(OutputByteStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(0x00u)); + os.Put(static_cast(0x00u)); + os.Put(static_cast(0xFEu)); + os.Put(static_cast(0xFFu)); + } + + template + static void Put(OutputByteStream &os, CharType c) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast((c >> 24) & 0xFFu)); + os.Put(static_cast((c >> 16) & 0xFFu)); + os.Put(static_cast((c >> 8) & 0xFFu)); + os.Put(static_cast(c & 0xFFu)); + } +}; + +/////////////////////////////////////////////////////////////////////////////// +// ASCII + +//! ASCII encoding. +/*! http://en.wikipedia.org/wiki/ASCII + \tparam CharType Code unit for storing 7-bit ASCII data. Default is char. + \note implements Encoding concept +*/ +template +struct ASCII { + typedef CharType Ch; + + enum { supportUnicode = 0 }; + + template + static void Encode(OutputStream &os, unsigned codepoint) { + RAPIDJSON_ASSERT(codepoint <= 0x7F); + os.Put(static_cast(codepoint & 0xFF)); + } + + template + static void EncodeUnsafe(OutputStream &os, unsigned codepoint) { + RAPIDJSON_ASSERT(codepoint <= 0x7F); + PutUnsafe(os, static_cast(codepoint & 0xFF)); + } + + template + static bool Decode(InputStream &is, unsigned *codepoint) { + uint8_t c = static_cast(is.Take()); + *codepoint = c; + return c <= 0X7F; + } + + template + static bool Validate(InputStream &is, OutputStream &os) { + uint8_t c = static_cast(is.Take()); + os.Put(static_cast(c)); + return c <= 0x7F; + } + + template + static CharType TakeBOM(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + uint8_t c = static_cast(Take(is)); + return static_cast(c); + } + + template + static Ch Take(InputByteStream &is) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); + return static_cast(is.Take()); + } + + template + static void PutBOM(OutputByteStream &os) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + (void)os; + } + + template + static void Put(OutputByteStream &os, Ch c) { + RAPIDJSON_STATIC_ASSERT(sizeof(typename OutputByteStream::Ch) == 1); + os.Put(static_cast(c)); + } +}; + +/////////////////////////////////////////////////////////////////////////////// +// AutoUTF + +//! Runtime-specified UTF encoding type of a stream. +enum UTFType { + kUTF8 = 0, //!< UTF-8. + kUTF16LE = 1, //!< UTF-16 little endian. + kUTF16BE = 2, //!< UTF-16 big endian. + kUTF32LE = 3, //!< UTF-32 little endian. + kUTF32BE = 4 //!< UTF-32 big endian. +}; + +//! Dynamically select encoding according to stream's runtime-specified UTF +//! encoding type. +/*! \note This class can be used with AutoUTFInputtStream and + * AutoUTFOutputStream, which provides GetType(). + */ +template +struct AutoUTF { + typedef CharType Ch; + + enum { supportUnicode = 1 }; + +#define RAPIDJSON_ENCODINGS_FUNC(x) \ + UTF8::x, UTF16LE::x, UTF16BE::x, UTF32LE::x, UTF32BE::x + + template + static RAPIDJSON_FORCEINLINE void Encode(OutputStream &os, + unsigned codepoint) { + typedef void (*EncodeFunc)(OutputStream &, unsigned); + static const EncodeFunc f[] = {RAPIDJSON_ENCODINGS_FUNC(Encode)}; + (*f[os.GetType()])(os, codepoint); + } + + template + static RAPIDJSON_FORCEINLINE void EncodeUnsafe(OutputStream &os, + unsigned codepoint) { + typedef void (*EncodeFunc)(OutputStream &, unsigned); + static const EncodeFunc f[] = {RAPIDJSON_ENCODINGS_FUNC(EncodeUnsafe)}; + (*f[os.GetType()])(os, codepoint); + } + + template + static RAPIDJSON_FORCEINLINE bool Decode(InputStream &is, + unsigned *codepoint) { + typedef bool (*DecodeFunc)(InputStream &, unsigned *); + static const DecodeFunc f[] = {RAPIDJSON_ENCODINGS_FUNC(Decode)}; + return (*f[is.GetType()])(is, codepoint); + } + + template + static RAPIDJSON_FORCEINLINE bool Validate(InputStream &is, + OutputStream &os) { + typedef bool (*ValidateFunc)(InputStream &, OutputStream &); + static const ValidateFunc f[] = {RAPIDJSON_ENCODINGS_FUNC(Validate)}; + return (*f[is.GetType()])(is, os); + } + +#undef RAPIDJSON_ENCODINGS_FUNC +}; + +/////////////////////////////////////////////////////////////////////////////// +// Transcoder + +//! Encoding conversion. +template +struct Transcoder { + //! Take one Unicode codepoint from source encoding, convert it to target + //! encoding and put it to the output stream. + template + static RAPIDJSON_FORCEINLINE bool Transcode(InputStream &is, + OutputStream &os) { + unsigned codepoint; + if (!SourceEncoding::Decode(is, &codepoint)) return false; + TargetEncoding::Encode(os, codepoint); + return true; + } + + template + static RAPIDJSON_FORCEINLINE bool TranscodeUnsafe(InputStream &is, + OutputStream &os) { + unsigned codepoint; + if (!SourceEncoding::Decode(is, &codepoint)) return false; + TargetEncoding::EncodeUnsafe(os, codepoint); + return true; + } + + //! Validate one Unicode codepoint from an encoded stream. + template + static RAPIDJSON_FORCEINLINE bool Validate(InputStream &is, + OutputStream &os) { + return Transcode( + is, os); // Since source/target encoding is different, must transcode. + } +}; + +// Forward declaration. +template +inline void PutUnsafe(Stream &stream, typename Stream::Ch c); + +//! Specialization of Transcoder with same source and target encoding. +template +struct Transcoder { + template + static RAPIDJSON_FORCEINLINE bool Transcode(InputStream &is, + OutputStream &os) { + os.Put(is.Take()); // Just copy one code unit. This semantic is different + // from primary template class. + return true; + } + + template + static RAPIDJSON_FORCEINLINE bool TranscodeUnsafe(InputStream &is, + OutputStream &os) { + PutUnsafe(os, is.Take()); // Just copy one code unit. This semantic is + // different from primary template class. + return true; + } + + template + static RAPIDJSON_FORCEINLINE bool Validate(InputStream &is, + OutputStream &os) { + return Encoding::Validate(is, os); // source/target encoding are the same + } +}; + +RAPIDJSON_NAMESPACE_END + +#if defined(__GNUC__) || (defined(_MSC_VER) && !defined(__clang__)) +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_ENCODINGS_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/error/en.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/error/en.h new file mode 100644 index 0000000..a08145d --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/error/en.h @@ -0,0 +1,104 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_ERROR_EN_H_ +#define RAPIDJSON_ERROR_EN_H_ + +#include "error.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(switch - enum) +RAPIDJSON_DIAG_OFF(covered - switch - default) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Maps error code of parsing into error message. +/*! + \ingroup RAPIDJSON_ERRORS + \param parseErrorCode Error code obtained in parsing. + \return the error message. + \note User can make a copy of this function for localization. + Using switch-case is safer for future modification of error codes. +*/ +inline const RAPIDJSON_ERROR_CHARTYPE* GetParseError_En( + ParseErrorCode parseErrorCode) { + switch (parseErrorCode) { + case kParseErrorNone: + return RAPIDJSON_ERROR_STRING("No error."); + + case kParseErrorDocumentEmpty: + return RAPIDJSON_ERROR_STRING("The document is empty."); + case kParseErrorDocumentRootNotSingular: + return RAPIDJSON_ERROR_STRING( + "The document root must not be followed by other values."); + + case kParseErrorValueInvalid: + return RAPIDJSON_ERROR_STRING("Invalid value."); + + case kParseErrorObjectMissName: + return RAPIDJSON_ERROR_STRING("Missing a name for object member."); + case kParseErrorObjectMissColon: + return RAPIDJSON_ERROR_STRING( + "Missing a colon after a name of object member."); + case kParseErrorObjectMissCommaOrCurlyBracket: + return RAPIDJSON_ERROR_STRING( + "Missing a comma or '}' after an object member."); + + case kParseErrorArrayMissCommaOrSquareBracket: + return RAPIDJSON_ERROR_STRING( + "Missing a comma or ']' after an array element."); + + case kParseErrorStringUnicodeEscapeInvalidHex: + return RAPIDJSON_ERROR_STRING( + "Incorrect hex digit after \\u escape in string."); + case kParseErrorStringUnicodeSurrogateInvalid: + return RAPIDJSON_ERROR_STRING("The surrogate pair in string is invalid."); + case kParseErrorStringEscapeInvalid: + return RAPIDJSON_ERROR_STRING("Invalid escape character in string."); + case kParseErrorStringMissQuotationMark: + return RAPIDJSON_ERROR_STRING( + "Missing a closing quotation mark in string."); + case kParseErrorStringInvalidEncoding: + return RAPIDJSON_ERROR_STRING("Invalid encoding in string."); + + case kParseErrorNumberTooBig: + return RAPIDJSON_ERROR_STRING("Number too big to be stored in double."); + case kParseErrorNumberMissFraction: + return RAPIDJSON_ERROR_STRING("Miss fraction part in number."); + case kParseErrorNumberMissExponent: + return RAPIDJSON_ERROR_STRING("Miss exponent in number."); + + case kParseErrorTermination: + return RAPIDJSON_ERROR_STRING("Terminate parsing due to Handler error."); + case kParseErrorUnspecificSyntaxError: + return RAPIDJSON_ERROR_STRING("Unspecific syntax error."); + + default: + return RAPIDJSON_ERROR_STRING("Unknown error."); + } +} + +RAPIDJSON_NAMESPACE_END + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_ERROR_EN_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/error/error.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/error/error.h new file mode 100644 index 0000000..4814b69 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/error/error.h @@ -0,0 +1,186 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_ERROR_ERROR_H_ +#define RAPIDJSON_ERROR_ERROR_H_ + +#include "../rapidjson.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +#endif + +/*! \file error.h */ + +/*! \defgroup RAPIDJSON_ERRORS RapidJSON error handling */ + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_ERROR_CHARTYPE + +//! Character type of error messages. +/*! \ingroup RAPIDJSON_ERRORS + The default character type is \c char. + On Windows, user can define this macro as \c TCHAR for supporting both + unicode/non-unicode settings. +*/ +#ifndef RAPIDJSON_ERROR_CHARTYPE +#define RAPIDJSON_ERROR_CHARTYPE char +#endif + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_ERROR_STRING + +//! Macro for converting string literial to \ref RAPIDJSON_ERROR_CHARTYPE[]. +/*! \ingroup RAPIDJSON_ERRORS + By default this conversion macro does nothing. + On Windows, user can define this macro as \c _T(x) for supporting both + unicode/non-unicode settings. +*/ +#ifndef RAPIDJSON_ERROR_STRING +#define RAPIDJSON_ERROR_STRING(x) x +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +/////////////////////////////////////////////////////////////////////////////// +// ParseErrorCode + +//! Error code of parsing. +/*! \ingroup RAPIDJSON_ERRORS + \see GenericReader::Parse, GenericReader::GetParseErrorCode +*/ +enum ParseErrorCode { + kParseErrorNone = 0, //!< No error. + + kParseErrorDocumentEmpty, //!< The document is empty. + kParseErrorDocumentRootNotSingular, //!< The document root must not follow by + //!< other values. + + kParseErrorValueInvalid, //!< Invalid value. + + kParseErrorObjectMissName, //!< Missing a name for object member. + kParseErrorObjectMissColon, //!< Missing a colon after a name of object + //!< member. + kParseErrorObjectMissCommaOrCurlyBracket, //!< Missing a comma or '}' after + //!an + //!< object member. + + kParseErrorArrayMissCommaOrSquareBracket, //!< Missing a comma or ']' after + //!an + //!< array element. + + kParseErrorStringUnicodeEscapeInvalidHex, //!< Incorrect hex digit after \\u + //!< escape in string. + kParseErrorStringUnicodeSurrogateInvalid, //!< The surrogate pair in string + //!is + //!< invalid. + kParseErrorStringEscapeInvalid, //!< Invalid escape character in string. + kParseErrorStringMissQuotationMark, //!< Missing a closing quotation mark in + //!< string. + kParseErrorStringInvalidEncoding, //!< Invalid encoding in string. + + kParseErrorNumberTooBig, //!< Number too big to be stored in double. + kParseErrorNumberMissFraction, //!< Miss fraction part in number. + kParseErrorNumberMissExponent, //!< Miss exponent in number. + + kParseErrorTermination, //!< Parsing was terminated. + kParseErrorUnspecificSyntaxError //!< Unspecific syntax error. +}; + +//! Result of parsing (wraps ParseErrorCode) +/*! + \ingroup RAPIDJSON_ERRORS + \code + Document doc; + ParseResult ok = doc.Parse("[42]"); + if (!ok) { + fprintf(stderr, "JSON parse error: %s (%u)", + GetParseError_En(ok.Code()), ok.Offset()); + exit(EXIT_FAILURE); + } + \endcode + \see GenericReader::Parse, GenericDocument::Parse +*/ +struct ParseResult { + //!! Unspecified boolean type + typedef bool (ParseResult::*BooleanType)() const; + + public: + //! Default constructor, no error. + ParseResult() : code_(kParseErrorNone), offset_(0) {} + //! Constructor to set an error. + ParseResult(ParseErrorCode code, size_t offset) + : code_(code), offset_(offset) {} + + //! Get the error code. + ParseErrorCode Code() const { return code_; } + //! Get the error offset, if \ref IsError(), 0 otherwise. + size_t Offset() const { return offset_; } + + //! Explicit conversion to \c bool, returns \c true, iff !\ref IsError(). + operator BooleanType() const { + return !IsError() ? &ParseResult::IsError : NULL; + } + //! Whether the result is an error. + bool IsError() const { return code_ != kParseErrorNone; } + + bool operator==(const ParseResult &that) const { return code_ == that.code_; } + bool operator==(ParseErrorCode code) const { return code_ == code; } + friend bool operator==(ParseErrorCode code, const ParseResult &err) { + return code == err.code_; + } + + bool operator!=(const ParseResult &that) const { return !(*this == that); } + bool operator!=(ParseErrorCode code) const { return !(*this == code); } + friend bool operator!=(ParseErrorCode code, const ParseResult &err) { + return err != code; + } + + //! Reset error code. + void Clear() { Set(kParseErrorNone); } + //! Update error code and offset. + void Set(ParseErrorCode code, size_t offset = 0) { + code_ = code; + offset_ = offset; + } + + private: + ParseErrorCode code_; + size_t offset_; +}; + +//! Function pointer type of GetParseError(). +/*! \ingroup RAPIDJSON_ERRORS + + This is the prototype for \c GetParseError_X(), where \c X is a locale. + User can dynamically change locale in runtime, e.g.: +\code + GetParseErrorFunc GetParseError = GetParseError_En; // or whatever + const RAPIDJSON_ERROR_CHARTYPE* s = +GetParseError(document.GetParseErrorCode()); \endcode +*/ +typedef const RAPIDJSON_ERROR_CHARTYPE *(*GetParseErrorFunc)(ParseErrorCode); + +RAPIDJSON_NAMESPACE_END + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_ERROR_ERROR_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/filereadstream.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/filereadstream.h new file mode 100644 index 0000000..250aabb --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/filereadstream.h @@ -0,0 +1,123 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_FILEREADSTREAM_H_ +#define RAPIDJSON_FILEREADSTREAM_H_ + +#include +#include "stream.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +RAPIDJSON_DIAG_OFF(unreachable - code) +RAPIDJSON_DIAG_OFF(missing - noreturn) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! File byte stream for input using fread(). +/*! + \note implements Stream concept +*/ +class FileReadStream { + public: + typedef char Ch; //!< Character type (byte). + + //! Constructor. + /*! + \param fp File pointer opened for read. + \param buffer user-supplied buffer. + \param bufferSize size of buffer in bytes. Must >=4 bytes. + */ + FileReadStream(std::FILE *fp, char *buffer, size_t bufferSize) + : fp_(fp), + buffer_(buffer), + bufferSize_(bufferSize), + bufferLast_(0), + current_(buffer_), + readCount_(0), + count_(0), + eof_(false) { + RAPIDJSON_ASSERT(fp_ != 0); + RAPIDJSON_ASSERT(bufferSize >= 4); + Read(); + } + + Ch Peek() const { return *current_; } + Ch Take() { + Ch c = *current_; + Read(); + return c; + } + size_t Tell() const { + return count_ + static_cast(current_ - buffer_); + } + + // Not implemented + void Put(Ch) { RAPIDJSON_ASSERT(false); } + void Flush() { RAPIDJSON_ASSERT(false); } + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + // For encoding detection only. + const Ch *Peek4() const { + return (current_ + 4 - !eof_ <= bufferLast_) ? current_ : 0; + } + + private: + void Read() { + if (current_ < bufferLast_) + ++current_; + else if (!eof_) { + count_ += readCount_; + readCount_ = std::fread(buffer_, 1, bufferSize_, fp_); + bufferLast_ = buffer_ + readCount_ - 1; + current_ = buffer_; + + if (readCount_ < bufferSize_) { + buffer_[readCount_] = '\0'; + ++bufferLast_; + eof_ = true; + } + } + } + + std::FILE *fp_; + Ch *buffer_; + size_t bufferSize_; + Ch *bufferLast_; + Ch *current_; + size_t readCount_; + size_t count_; //!< Number of characters read + bool eof_; +}; + +RAPIDJSON_NAMESPACE_END + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_FILESTREAM_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/filewritestream.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/filewritestream.h new file mode 100644 index 0000000..f6defc1 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/filewritestream.h @@ -0,0 +1,128 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_FILEWRITESTREAM_H_ +#define RAPIDJSON_FILEWRITESTREAM_H_ + +#include +#include "stream.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(unreachable - code) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Wrapper of C file stream for output using fwrite(). +/*! + \note implements Stream concept +*/ +class FileWriteStream { + public: + typedef char Ch; //!< Character type. Only support char. + + FileWriteStream(std::FILE *fp, char *buffer, size_t bufferSize) + : fp_(fp), + buffer_(buffer), + bufferEnd_(buffer + bufferSize), + current_(buffer_) { + RAPIDJSON_ASSERT(fp_ != 0); + } + + void Put(char c) { + if (current_ >= bufferEnd_) Flush(); + + *current_++ = c; + } + + void PutN(char c, size_t n) { + size_t avail = static_cast(bufferEnd_ - current_); + while (n > avail) { + std::memset(current_, c, avail); + current_ += avail; + Flush(); + n -= avail; + avail = static_cast(bufferEnd_ - current_); + } + + if (n > 0) { + std::memset(current_, c, n); + current_ += n; + } + } + + void Flush() { + if (current_ != buffer_) { + size_t result = + std::fwrite(buffer_, 1, static_cast(current_ - buffer_), fp_); + if (result < static_cast(current_ - buffer_)) { + // failure deliberately ignored at this time + // added to avoid warn_unused_result build errors + } + current_ = buffer_; + } + } + + // Not implemented + char Peek() const { + RAPIDJSON_ASSERT(false); + return 0; + } + char Take() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t Tell() const { + RAPIDJSON_ASSERT(false); + return 0; + } + char *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(char *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + private: + // Prohibit copy constructor & assignment operator. + FileWriteStream(const FileWriteStream &); + FileWriteStream &operator=(const FileWriteStream &); + + std::FILE *fp_; + char *buffer_; + char *bufferEnd_; + char *current_; +}; + +//! Implement specialized version of PutN() with memset() for better +//! performance. +template <> +inline void PutN(FileWriteStream &stream, char c, size_t n) { + stream.PutN(c, n); +} + +RAPIDJSON_NAMESPACE_END + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_FILESTREAM_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/fwd.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/fwd.h new file mode 100644 index 0000000..cafb48e --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/fwd.h @@ -0,0 +1,170 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_FWD_H_ +#define RAPIDJSON_FWD_H_ + +#include "rapidjson.h" + +RAPIDJSON_NAMESPACE_BEGIN + +// encodings.h + +template +struct UTF8; +template +struct UTF16; +template +struct UTF16BE; +template +struct UTF16LE; +template +struct UTF32; +template +struct UTF32BE; +template +struct UTF32LE; +template +struct ASCII; +template +struct AutoUTF; + +template +struct Transcoder; + +// allocators.h + +class CrtAllocator; + +template +class MemoryPoolAllocator; + +// stream.h + +template +struct GenericStringStream; + +typedef GenericStringStream> StringStream; + +template +struct GenericInsituStringStream; + +typedef GenericInsituStringStream> InsituStringStream; + +// stringbuffer.h + +template +class GenericStringBuffer; + +typedef GenericStringBuffer, CrtAllocator> StringBuffer; + +// filereadstream.h + +class FileReadStream; + +// filewritestream.h + +class FileWriteStream; + +// memorybuffer.h + +template +struct GenericMemoryBuffer; + +typedef GenericMemoryBuffer MemoryBuffer; + +// memorystream.h + +struct MemoryStream; + +// reader.h + +template +struct BaseReaderHandler; + +template +class GenericReader; + +typedef GenericReader, UTF8, CrtAllocator> Reader; + +// writer.h + +template +class Writer; + +// prettywriter.h + +template +class PrettyWriter; + +// document.h + +template +class GenericMember; + +template +class GenericMemberIterator; + +template +struct GenericStringRef; + +template +class GenericValue; + +typedef GenericValue, MemoryPoolAllocator> Value; + +template +class GenericDocument; + +typedef GenericDocument, MemoryPoolAllocator, + CrtAllocator> + Document; + +// pointer.h + +template +class GenericPointer; + +typedef GenericPointer Pointer; + +// schema.h + +template +class IGenericRemoteSchemaDocumentProvider; + +template +class GenericSchemaDocument; + +typedef GenericSchemaDocument SchemaDocument; +typedef IGenericRemoteSchemaDocumentProvider + IRemoteSchemaDocumentProvider; + +template +class GenericSchemaValidator; + +typedef GenericSchemaValidator< + SchemaDocument, BaseReaderHandler, void>, CrtAllocator> + SchemaValidator; + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_RAPIDJSONFWD_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/biginteger.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/biginteger.h new file mode 100644 index 0000000..b60e006 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/biginteger.h @@ -0,0 +1,295 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_BIGINTEGER_H_ +#define RAPIDJSON_BIGINTEGER_H_ + +#include "../rapidjson.h" + +#if defined(_MSC_VER) && !__INTEL_COMPILER && defined(_M_AMD64) +#include // for _umul128 +#pragma intrinsic(_umul128) +#endif + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +class BigInteger { + public: + typedef uint64_t Type; + + BigInteger(const BigInteger &rhs) : count_(rhs.count_) { + std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); + } + + explicit BigInteger(uint64_t u) : count_(1) { digits_[0] = u; } + + BigInteger(const char *decimals, size_t length) : count_(1) { + RAPIDJSON_ASSERT(length > 0); + digits_[0] = 0; + size_t i = 0; + const size_t kMaxDigitPerIteration = + 19; // 2^64 = 18446744073709551616 > 10^19 + while (length >= kMaxDigitPerIteration) { + AppendDecimal64(decimals + i, decimals + i + kMaxDigitPerIteration); + length -= kMaxDigitPerIteration; + i += kMaxDigitPerIteration; + } + + if (length > 0) AppendDecimal64(decimals + i, decimals + i + length); + } + + BigInteger &operator=(const BigInteger &rhs) { + if (this != &rhs) { + count_ = rhs.count_; + std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); + } + return *this; + } + + BigInteger &operator=(uint64_t u) { + digits_[0] = u; + count_ = 1; + return *this; + } + + BigInteger &operator+=(uint64_t u) { + Type backup = digits_[0]; + digits_[0] += u; + for (size_t i = 0; i < count_ - 1; i++) { + if (digits_[i] >= backup) return *this; // no carry + backup = digits_[i + 1]; + digits_[i + 1] += 1; + } + + // Last carry + if (digits_[count_ - 1] < backup) PushBack(1); + + return *this; + } + + BigInteger &operator*=(uint64_t u) { + if (u == 0) return *this = 0; + if (u == 1) return *this; + if (*this == 1) return *this = u; + + uint64_t k = 0; + for (size_t i = 0; i < count_; i++) { + uint64_t hi; + digits_[i] = MulAdd64(digits_[i], u, k, &hi); + k = hi; + } + + if (k > 0) PushBack(k); + + return *this; + } + + BigInteger &operator*=(uint32_t u) { + if (u == 0) return *this = 0; + if (u == 1) return *this; + if (*this == 1) return *this = u; + + uint64_t k = 0; + for (size_t i = 0; i < count_; i++) { + const uint64_t c = digits_[i] >> 32; + const uint64_t d = digits_[i] & 0xFFFFFFFF; + const uint64_t uc = u * c; + const uint64_t ud = u * d; + const uint64_t p0 = ud + k; + const uint64_t p1 = uc + (p0 >> 32); + digits_[i] = (p0 & 0xFFFFFFFF) | (p1 << 32); + k = p1 >> 32; + } + + if (k > 0) PushBack(k); + + return *this; + } + + BigInteger &operator<<=(size_t shift) { + if (IsZero() || shift == 0) return *this; + + size_t offset = shift / kTypeBit; + size_t interShift = shift % kTypeBit; + RAPIDJSON_ASSERT(count_ + offset <= kCapacity); + + if (interShift == 0) { + std::memmove(digits_ + offset, digits_, count_ * sizeof(Type)); + count_ += offset; + } else { + digits_[count_] = 0; + for (size_t i = count_; i > 0; i--) + digits_[i + offset] = (digits_[i] << interShift) | + (digits_[i - 1] >> (kTypeBit - interShift)); + digits_[offset] = digits_[0] << interShift; + count_ += offset; + if (digits_[count_]) count_++; + } + + std::memset(digits_, 0, offset * sizeof(Type)); + + return *this; + } + + bool operator==(const BigInteger &rhs) const { + return count_ == rhs.count_ && + std::memcmp(digits_, rhs.digits_, count_ * sizeof(Type)) == 0; + } + + bool operator==(const Type rhs) const { + return count_ == 1 && digits_[0] == rhs; + } + + BigInteger &MultiplyPow5(unsigned exp) { + static const uint32_t kPow5[12] = { + 5, + 5 * 5, + 5 * 5 * 5, + 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5, + 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5}; + if (exp == 0) return *this; + for (; exp >= 27; exp -= 27) + *this *= RAPIDJSON_UINT64_C2(0X6765C793, 0XFA10079D); // 5^27 + for (; exp >= 13; exp -= 13) + *this *= static_cast(1220703125u); // 5^13 + if (exp > 0) *this *= kPow5[exp - 1]; + return *this; + } + + // Compute absolute difference of this and rhs. + // Assume this != rhs + bool Difference(const BigInteger &rhs, BigInteger *out) const { + int cmp = Compare(rhs); + RAPIDJSON_ASSERT(cmp != 0); + const BigInteger *a, *b; // Makes a > b + bool ret; + if (cmp < 0) { + a = &rhs; + b = this; + ret = true; + } else { + a = this; + b = &rhs; + ret = false; + } + + Type borrow = 0; + for (size_t i = 0; i < a->count_; i++) { + Type d = a->digits_[i] - borrow; + if (i < b->count_) d -= b->digits_[i]; + borrow = (d > a->digits_[i]) ? 1 : 0; + out->digits_[i] = d; + if (d != 0) out->count_ = i + 1; + } + + return ret; + } + + int Compare(const BigInteger &rhs) const { + if (count_ != rhs.count_) return count_ < rhs.count_ ? -1 : 1; + + for (size_t i = count_; i-- > 0;) + if (digits_[i] != rhs.digits_[i]) + return digits_[i] < rhs.digits_[i] ? -1 : 1; + + return 0; + } + + size_t GetCount() const { return count_; } + Type GetDigit(size_t index) const { + RAPIDJSON_ASSERT(index < count_); + return digits_[index]; + } + bool IsZero() const { return count_ == 1 && digits_[0] == 0; } + + private: + void AppendDecimal64(const char *begin, const char *end) { + uint64_t u = ParseUint64(begin, end); + if (IsZero()) + *this = u; + else { + unsigned exp = static_cast(end - begin); + (MultiplyPow5(exp) <<= exp) += u; // *this = *this * 10^exp + u + } + } + + void PushBack(Type digit) { + RAPIDJSON_ASSERT(count_ < kCapacity); + digits_[count_++] = digit; + } + + static uint64_t ParseUint64(const char *begin, const char *end) { + uint64_t r = 0; + for (const char *p = begin; p != end; ++p) { + RAPIDJSON_ASSERT(*p >= '0' && *p <= '9'); + r = r * 10u + static_cast(*p - '0'); + } + return r; + } + + // Assume a * b + k < 2^128 + static uint64_t MulAdd64(uint64_t a, uint64_t b, uint64_t k, + uint64_t *outHigh) { +#if defined(_MSC_VER) && defined(_M_AMD64) + uint64_t low = _umul128(a, b, outHigh) + k; + if (low < k) (*outHigh)++; + return low; +#elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && \ + defined(__x86_64__) + __extension__ typedef unsigned __int128 uint128; + uint128 p = static_cast(a) * static_cast(b); + p += k; + *outHigh = static_cast(p >> 64); + return static_cast(p); +#else + const uint64_t a0 = a & 0xFFFFFFFF, a1 = a >> 32, b0 = b & 0xFFFFFFFF, + b1 = b >> 32; + uint64_t x0 = a0 * b0, x1 = a0 * b1, x2 = a1 * b0, x3 = a1 * b1; + x1 += (x0 >> 32); // can't give carry + x1 += x2; + if (x1 < x2) x3 += (static_cast(1) << 32); + uint64_t lo = (x1 << 32) + (x0 & 0xFFFFFFFF); + uint64_t hi = x3 + (x1 >> 32); + + lo += k; + if (lo < k) hi++; + *outHigh = hi; + return lo; +#endif + } + + static const size_t kBitCount = 3328; // 64bit * 54 > 10^1000 + static const size_t kCapacity = kBitCount / sizeof(Type); + static const size_t kTypeBit = sizeof(Type) * 8; + + Type digits_[kCapacity]; + size_t count_; +}; + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_BIGINTEGER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/clzll.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/clzll.h new file mode 100644 index 0000000..8cb8b8a --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/clzll.h @@ -0,0 +1,77 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_CLZLL_H_ +#define RAPIDJSON_CLZLL_H_ + +#include "../rapidjson.h" + +#if defined(_MSC_VER) +#include +#if defined(_WIN64) +#pragma intrinsic(_BitScanReverse64) +#else +#pragma intrinsic(_BitScanReverse) +#endif +#endif + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +#if (defined(__GNUC__) && __GNUC__ >= 4) || \ + RAPIDJSON_HAS_BUILTIN(__builtin_clzll) +#define RAPIDJSON_CLZLL __builtin_clzll +#else + +inline uint32_t clzll(uint64_t x) { + // Passing 0 to __builtin_clzll is UB in GCC and results in an + // infinite loop in the software implementation. + RAPIDJSON_ASSERT(x != 0); + +#if defined(_MSC_VER) + unsigned long r = 0; +#if defined(_WIN64) + _BitScanReverse64(&r, x); +#else + // Scan the high 32 bits. + if (_BitScanReverse(&r, static_cast(x >> 32))) return 63 - (r + 32); + + // Scan the low 32 bits. + _BitScanReverse(&r, static_cast(x & 0xFFFFFFFF)); +#endif // _WIN64 + + return 63 - r; +#else + uint32_t r; + while (!(x & (static_cast(1) << 63))) { + x <<= 1; + ++r; + } + + return r; +#endif // _MSC_VER +} + +#define RAPIDJSON_CLZLL RAPIDJSON_NAMESPACE::internal::clzll +#endif // (defined(__GNUC__) && __GNUC__ >= 4) || + // RAPIDJSON_HAS_BUILTIN(__builtin_clzll) + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_CLZLL_H_ \ No newline at end of file diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/diyfp.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/diyfp.h new file mode 100644 index 0000000..bed2989 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/diyfp.h @@ -0,0 +1,305 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +// This is a C++ header-only implementation of Grisu2 algorithm from the +// publication: Loitsch, Florian. "Printing floating-point numbers quickly and +// accurately with integers." ACM Sigplan Notices 45.6 (2010): 233-243. + +#ifndef RAPIDJSON_DIYFP_H_ +#define RAPIDJSON_DIYFP_H_ + +#include +#include "../rapidjson.h" +#include "clzll.h" + +#if defined(_MSC_VER) && defined(_M_AMD64) && !defined(__INTEL_COMPILER) +#include +#pragma intrinsic(_umul128) +#endif + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +#ifdef __GNUC__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +#endif + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +#endif + +struct DiyFp { + DiyFp() : f(), e() {} + + DiyFp(uint64_t fp, int exp) : f(fp), e(exp) {} + + explicit DiyFp(double d) { + union { + double d; + uint64_t u64; + } u = {d}; + + int biased_e = + static_cast((u.u64 & kDpExponentMask) >> kDpSignificandSize); + uint64_t significand = (u.u64 & kDpSignificandMask); + if (biased_e != 0) { + f = significand + kDpHiddenBit; + e = biased_e - kDpExponentBias; + } else { + f = significand; + e = kDpMinExponent + 1; + } + } + + DiyFp operator-(const DiyFp &rhs) const { return DiyFp(f - rhs.f, e); } + + DiyFp operator*(const DiyFp &rhs) const { +#if defined(_MSC_VER) && defined(_M_AMD64) + uint64_t h; + uint64_t l = _umul128(f, rhs.f, &h); + if (l & (uint64_t(1) << 63)) // rounding + h++; + return DiyFp(h, e + rhs.e + 64); +#elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && \ + defined(__x86_64__) + __extension__ typedef unsigned __int128 uint128; + uint128 p = static_cast(f) * static_cast(rhs.f); + uint64_t h = static_cast(p >> 64); + uint64_t l = static_cast(p); + if (l & (uint64_t(1) << 63)) // rounding + h++; + return DiyFp(h, e + rhs.e + 64); +#else + const uint64_t M32 = 0xFFFFFFFF; + const uint64_t a = f >> 32; + const uint64_t b = f & M32; + const uint64_t c = rhs.f >> 32; + const uint64_t d = rhs.f & M32; + const uint64_t ac = a * c; + const uint64_t bc = b * c; + const uint64_t ad = a * d; + const uint64_t bd = b * d; + uint64_t tmp = (bd >> 32) + (ad & M32) + (bc & M32); + tmp += 1U << 31; /// mult_round + return DiyFp(ac + (ad >> 32) + (bc >> 32) + (tmp >> 32), e + rhs.e + 64); +#endif + } + + DiyFp Normalize() const { + int s = static_cast(RAPIDJSON_CLZLL(f)); + return DiyFp(f << s, e - s); + } + + DiyFp NormalizeBoundary() const { + DiyFp res = *this; + while (!(res.f & (kDpHiddenBit << 1))) { + res.f <<= 1; + res.e--; + } + res.f <<= (kDiySignificandSize - kDpSignificandSize - 2); + res.e = res.e - (kDiySignificandSize - kDpSignificandSize - 2); + return res; + } + + void NormalizedBoundaries(DiyFp *minus, DiyFp *plus) const { + DiyFp pl = DiyFp((f << 1) + 1, e - 1).NormalizeBoundary(); + DiyFp mi = (f == kDpHiddenBit) ? DiyFp((f << 2) - 1, e - 2) + : DiyFp((f << 1) - 1, e - 1); + mi.f <<= mi.e - pl.e; + mi.e = pl.e; + *plus = pl; + *minus = mi; + } + + double ToDouble() const { + union { + double d; + uint64_t u64; + } u; + RAPIDJSON_ASSERT(f <= kDpHiddenBit + kDpSignificandMask); + if (e < kDpDenormalExponent) { + // Underflow. + return 0.0; + } + if (e >= kDpMaxExponent) { + // Overflow. + return std::numeric_limits::infinity(); + } + const uint64_t be = (e == kDpDenormalExponent && (f & kDpHiddenBit) == 0) + ? 0 + : static_cast(e + kDpExponentBias); + u.u64 = (f & kDpSignificandMask) | (be << kDpSignificandSize); + return u.d; + } + + static const int kDiySignificandSize = 64; + static const int kDpSignificandSize = 52; + static const int kDpExponentBias = 0x3FF + kDpSignificandSize; + static const int kDpMaxExponent = 0x7FF - kDpExponentBias; + static const int kDpMinExponent = -kDpExponentBias; + static const int kDpDenormalExponent = -kDpExponentBias + 1; + static const uint64_t kDpExponentMask = + RAPIDJSON_UINT64_C2(0x7FF00000, 0x00000000); + static const uint64_t kDpSignificandMask = + RAPIDJSON_UINT64_C2(0x000FFFFF, 0xFFFFFFFF); + static const uint64_t kDpHiddenBit = + RAPIDJSON_UINT64_C2(0x00100000, 0x00000000); + + uint64_t f; + int e; +}; + +inline DiyFp GetCachedPowerByIndex(size_t index) { + // 10^-348, 10^-340, ..., 10^340 + static const uint64_t kCachedPowers_F[] = { + RAPIDJSON_UINT64_C2(0xfa8fd5a0, 0x081c0288), + RAPIDJSON_UINT64_C2(0xbaaee17f, 0xa23ebf76), + RAPIDJSON_UINT64_C2(0x8b16fb20, 0x3055ac76), + RAPIDJSON_UINT64_C2(0xcf42894a, 0x5dce35ea), + RAPIDJSON_UINT64_C2(0x9a6bb0aa, 0x55653b2d), + RAPIDJSON_UINT64_C2(0xe61acf03, 0x3d1a45df), + RAPIDJSON_UINT64_C2(0xab70fe17, 0xc79ac6ca), + RAPIDJSON_UINT64_C2(0xff77b1fc, 0xbebcdc4f), + RAPIDJSON_UINT64_C2(0xbe5691ef, 0x416bd60c), + RAPIDJSON_UINT64_C2(0x8dd01fad, 0x907ffc3c), + RAPIDJSON_UINT64_C2(0xd3515c28, 0x31559a83), + RAPIDJSON_UINT64_C2(0x9d71ac8f, 0xada6c9b5), + RAPIDJSON_UINT64_C2(0xea9c2277, 0x23ee8bcb), + RAPIDJSON_UINT64_C2(0xaecc4991, 0x4078536d), + RAPIDJSON_UINT64_C2(0x823c1279, 0x5db6ce57), + RAPIDJSON_UINT64_C2(0xc2109436, 0x4dfb5637), + RAPIDJSON_UINT64_C2(0x9096ea6f, 0x3848984f), + RAPIDJSON_UINT64_C2(0xd77485cb, 0x25823ac7), + RAPIDJSON_UINT64_C2(0xa086cfcd, 0x97bf97f4), + RAPIDJSON_UINT64_C2(0xef340a98, 0x172aace5), + RAPIDJSON_UINT64_C2(0xb23867fb, 0x2a35b28e), + RAPIDJSON_UINT64_C2(0x84c8d4df, 0xd2c63f3b), + RAPIDJSON_UINT64_C2(0xc5dd4427, 0x1ad3cdba), + RAPIDJSON_UINT64_C2(0x936b9fce, 0xbb25c996), + RAPIDJSON_UINT64_C2(0xdbac6c24, 0x7d62a584), + RAPIDJSON_UINT64_C2(0xa3ab6658, 0x0d5fdaf6), + RAPIDJSON_UINT64_C2(0xf3e2f893, 0xdec3f126), + RAPIDJSON_UINT64_C2(0xb5b5ada8, 0xaaff80b8), + RAPIDJSON_UINT64_C2(0x87625f05, 0x6c7c4a8b), + RAPIDJSON_UINT64_C2(0xc9bcff60, 0x34c13053), + RAPIDJSON_UINT64_C2(0x964e858c, 0x91ba2655), + RAPIDJSON_UINT64_C2(0xdff97724, 0x70297ebd), + RAPIDJSON_UINT64_C2(0xa6dfbd9f, 0xb8e5b88f), + RAPIDJSON_UINT64_C2(0xf8a95fcf, 0x88747d94), + RAPIDJSON_UINT64_C2(0xb9447093, 0x8fa89bcf), + RAPIDJSON_UINT64_C2(0x8a08f0f8, 0xbf0f156b), + RAPIDJSON_UINT64_C2(0xcdb02555, 0x653131b6), + RAPIDJSON_UINT64_C2(0x993fe2c6, 0xd07b7fac), + RAPIDJSON_UINT64_C2(0xe45c10c4, 0x2a2b3b06), + RAPIDJSON_UINT64_C2(0xaa242499, 0x697392d3), + RAPIDJSON_UINT64_C2(0xfd87b5f2, 0x8300ca0e), + RAPIDJSON_UINT64_C2(0xbce50864, 0x92111aeb), + RAPIDJSON_UINT64_C2(0x8cbccc09, 0x6f5088cc), + RAPIDJSON_UINT64_C2(0xd1b71758, 0xe219652c), + RAPIDJSON_UINT64_C2(0x9c400000, 0x00000000), + RAPIDJSON_UINT64_C2(0xe8d4a510, 0x00000000), + RAPIDJSON_UINT64_C2(0xad78ebc5, 0xac620000), + RAPIDJSON_UINT64_C2(0x813f3978, 0xf8940984), + RAPIDJSON_UINT64_C2(0xc097ce7b, 0xc90715b3), + RAPIDJSON_UINT64_C2(0x8f7e32ce, 0x7bea5c70), + RAPIDJSON_UINT64_C2(0xd5d238a4, 0xabe98068), + RAPIDJSON_UINT64_C2(0x9f4f2726, 0x179a2245), + RAPIDJSON_UINT64_C2(0xed63a231, 0xd4c4fb27), + RAPIDJSON_UINT64_C2(0xb0de6538, 0x8cc8ada8), + RAPIDJSON_UINT64_C2(0x83c7088e, 0x1aab65db), + RAPIDJSON_UINT64_C2(0xc45d1df9, 0x42711d9a), + RAPIDJSON_UINT64_C2(0x924d692c, 0xa61be758), + RAPIDJSON_UINT64_C2(0xda01ee64, 0x1a708dea), + RAPIDJSON_UINT64_C2(0xa26da399, 0x9aef774a), + RAPIDJSON_UINT64_C2(0xf209787b, 0xb47d6b85), + RAPIDJSON_UINT64_C2(0xb454e4a1, 0x79dd1877), + RAPIDJSON_UINT64_C2(0x865b8692, 0x5b9bc5c2), + RAPIDJSON_UINT64_C2(0xc83553c5, 0xc8965d3d), + RAPIDJSON_UINT64_C2(0x952ab45c, 0xfa97a0b3), + RAPIDJSON_UINT64_C2(0xde469fbd, 0x99a05fe3), + RAPIDJSON_UINT64_C2(0xa59bc234, 0xdb398c25), + RAPIDJSON_UINT64_C2(0xf6c69a72, 0xa3989f5c), + RAPIDJSON_UINT64_C2(0xb7dcbf53, 0x54e9bece), + RAPIDJSON_UINT64_C2(0x88fcf317, 0xf22241e2), + RAPIDJSON_UINT64_C2(0xcc20ce9b, 0xd35c78a5), + RAPIDJSON_UINT64_C2(0x98165af3, 0x7b2153df), + RAPIDJSON_UINT64_C2(0xe2a0b5dc, 0x971f303a), + RAPIDJSON_UINT64_C2(0xa8d9d153, 0x5ce3b396), + RAPIDJSON_UINT64_C2(0xfb9b7cd9, 0xa4a7443c), + RAPIDJSON_UINT64_C2(0xbb764c4c, 0xa7a44410), + RAPIDJSON_UINT64_C2(0x8bab8eef, 0xb6409c1a), + RAPIDJSON_UINT64_C2(0xd01fef10, 0xa657842c), + RAPIDJSON_UINT64_C2(0x9b10a4e5, 0xe9913129), + RAPIDJSON_UINT64_C2(0xe7109bfb, 0xa19c0c9d), + RAPIDJSON_UINT64_C2(0xac2820d9, 0x623bf429), + RAPIDJSON_UINT64_C2(0x80444b5e, 0x7aa7cf85), + RAPIDJSON_UINT64_C2(0xbf21e440, 0x03acdd2d), + RAPIDJSON_UINT64_C2(0x8e679c2f, 0x5e44ff8f), + RAPIDJSON_UINT64_C2(0xd433179d, 0x9c8cb841), + RAPIDJSON_UINT64_C2(0x9e19db92, 0xb4e31ba9), + RAPIDJSON_UINT64_C2(0xeb96bf6e, 0xbadf77d9), + RAPIDJSON_UINT64_C2(0xaf87023b, 0x9bf0ee6b)}; + static const int16_t kCachedPowers_E[] = { + -1220, -1193, -1166, -1140, -1113, -1087, -1060, -1034, -1007, -980, -954, + -927, -901, -874, -847, -821, -794, -768, -741, -715, -688, -661, + -635, -608, -582, -555, -529, -502, -475, -449, -422, -396, -369, + -343, -316, -289, -263, -236, -210, -183, -157, -130, -103, -77, + -50, -24, 3, 30, 56, 83, 109, 136, 162, 189, 216, + 242, 269, 295, 322, 348, 375, 402, 428, 455, 481, 508, + 534, 561, 588, 614, 641, 667, 694, 720, 747, 774, 800, + 827, 853, 880, 907, 933, 960, 986, 1013, 1039, 1066}; + RAPIDJSON_ASSERT(index < 87); + return DiyFp(kCachedPowers_F[index], kCachedPowers_E[index]); +} + +inline DiyFp GetCachedPower(int e, int *K) { + // int k = static_cast(ceil((-61 - e) * 0.30102999566398114)) + 374; + double dk = (-61 - e) * 0.30102999566398114 + + 347; // dk must be positive, so can do ceiling in positive + int k = static_cast(dk); + if (dk - k > 0.0) k++; + + unsigned index = static_cast((k >> 3) + 1); + *K = -(-348 + static_cast( + index << 3)); // decimal exponent no need lookup table + + return GetCachedPowerByIndex(index); +} + +inline DiyFp GetCachedPower10(int exp, int *outExp) { + RAPIDJSON_ASSERT(exp >= -348); + unsigned index = static_cast(exp + 348) / 8u; + *outExp = -348 + static_cast(index) * 8; + return GetCachedPowerByIndex(index); +} + +#ifdef __GNUC__ +RAPIDJSON_DIAG_POP +#endif + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +RAPIDJSON_DIAG_OFF(padded) +#endif + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_DIYFP_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/dtoa.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/dtoa.h new file mode 100644 index 0000000..b64a79d --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/dtoa.h @@ -0,0 +1,269 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +// This is a C++ header-only implementation of Grisu2 algorithm from the +// publication: Loitsch, Florian. "Printing floating-point numbers quickly and +// accurately with integers." ACM Sigplan Notices 45.6 (2010): 233-243. + +#ifndef RAPIDJSON_DTOA_ +#define RAPIDJSON_DTOA_ + +#include "diyfp.h" +#include "ieee754.h" +#include "itoa.h" // GetDigitsLut() + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +#ifdef __GNUC__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +RAPIDJSON_DIAG_OFF(array - bounds) // some gcc versions generate wrong warnings +// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59124 +#endif + +inline void GrisuRound(char *buffer, int len, uint64_t delta, uint64_t rest, + uint64_t ten_kappa, uint64_t wp_w) { + while (rest < wp_w && delta - rest >= ten_kappa && + (rest + ten_kappa < wp_w || /// closer + wp_w - rest > rest + ten_kappa - wp_w)) { + buffer[len - 1]--; + rest += ten_kappa; + } +} + +inline int CountDecimalDigit32(uint32_t n) { + // Simple pure C++ implementation was faster than __builtin_clz version in + // this situation. + if (n < 10) return 1; + if (n < 100) return 2; + if (n < 1000) return 3; + if (n < 10000) return 4; + if (n < 100000) return 5; + if (n < 1000000) return 6; + if (n < 10000000) return 7; + if (n < 100000000) return 8; + // Will not reach 10 digits in DigitGen() + // if (n < 1000000000) return 9; + // return 10; + return 9; +} + +inline void DigitGen(const DiyFp &W, const DiyFp &Mp, uint64_t delta, + char *buffer, int *len, int *K) { + static const uint32_t kPow10[] = {1, 10, 100, 1000, + 10000, 100000, 1000000, 10000000, + 100000000, 1000000000}; + const DiyFp one(uint64_t(1) << -Mp.e, Mp.e); + const DiyFp wp_w = Mp - W; + uint32_t p1 = static_cast(Mp.f >> -one.e); + uint64_t p2 = Mp.f & (one.f - 1); + int kappa = CountDecimalDigit32(p1); // kappa in [0, 9] + *len = 0; + + while (kappa > 0) { + uint32_t d = 0; + switch (kappa) { + case 9: + d = p1 / 100000000; + p1 %= 100000000; + break; + case 8: + d = p1 / 10000000; + p1 %= 10000000; + break; + case 7: + d = p1 / 1000000; + p1 %= 1000000; + break; + case 6: + d = p1 / 100000; + p1 %= 100000; + break; + case 5: + d = p1 / 10000; + p1 %= 10000; + break; + case 4: + d = p1 / 1000; + p1 %= 1000; + break; + case 3: + d = p1 / 100; + p1 %= 100; + break; + case 2: + d = p1 / 10; + p1 %= 10; + break; + case 1: + d = p1; + p1 = 0; + break; + default:; + } + if (d || *len) + buffer[(*len)++] = static_cast('0' + static_cast(d)); + kappa--; + uint64_t tmp = (static_cast(p1) << -one.e) + p2; + if (tmp <= delta) { + *K += kappa; + GrisuRound(buffer, *len, delta, tmp, + static_cast(kPow10[kappa]) << -one.e, wp_w.f); + return; + } + } + + // kappa = 0 + for (;;) { + p2 *= 10; + delta *= 10; + char d = static_cast(p2 >> -one.e); + if (d || *len) buffer[(*len)++] = static_cast('0' + d); + p2 &= one.f - 1; + kappa--; + if (p2 < delta) { + *K += kappa; + int index = -kappa; + GrisuRound(buffer, *len, delta, p2, one.f, + wp_w.f * (index < 9 ? kPow10[index] : 0)); + return; + } + } +} + +inline void Grisu2(double value, char *buffer, int *length, int *K) { + const DiyFp v(value); + DiyFp w_m, w_p; + v.NormalizedBoundaries(&w_m, &w_p); + + const DiyFp c_mk = GetCachedPower(w_p.e, K); + const DiyFp W = v.Normalize() * c_mk; + DiyFp Wp = w_p * c_mk; + DiyFp Wm = w_m * c_mk; + Wm.f++; + Wp.f--; + DigitGen(W, Wp, Wp.f - Wm.f, buffer, length, K); +} + +inline char *WriteExponent(int K, char *buffer) { + if (K < 0) { + *buffer++ = '-'; + K = -K; + } + + if (K >= 100) { + *buffer++ = static_cast('0' + static_cast(K / 100)); + K %= 100; + const char *d = GetDigitsLut() + K * 2; + *buffer++ = d[0]; + *buffer++ = d[1]; + } else if (K >= 10) { + const char *d = GetDigitsLut() + K * 2; + *buffer++ = d[0]; + *buffer++ = d[1]; + } else + *buffer++ = static_cast('0' + static_cast(K)); + + return buffer; +} + +inline char *Prettify(char *buffer, int length, int k, int maxDecimalPlaces) { + const int kk = length + k; // 10^(kk-1) <= v < 10^kk + + if (0 <= k && kk <= 21) { + // 1234e7 -> 12340000000 + for (int i = length; i < kk; i++) buffer[i] = '0'; + buffer[kk] = '.'; + buffer[kk + 1] = '0'; + return &buffer[kk + 2]; + } else if (0 < kk && kk <= 21) { + // 1234e-2 -> 12.34 + std::memmove(&buffer[kk + 1], &buffer[kk], + static_cast(length - kk)); + buffer[kk] = '.'; + if (0 > k + maxDecimalPlaces) { + // When maxDecimalPlaces = 2, 1.2345 -> 1.23, 1.102 -> 1.1 + // Remove extra trailing zeros (at least one) after truncation. + for (int i = kk + maxDecimalPlaces; i > kk + 1; i--) + if (buffer[i] != '0') return &buffer[i + 1]; + return &buffer[kk + 2]; // Reserve one zero + } else + return &buffer[length + 1]; + } else if (-6 < kk && kk <= 0) { + // 1234e-6 -> 0.001234 + const int offset = 2 - kk; + std::memmove(&buffer[offset], &buffer[0], static_cast(length)); + buffer[0] = '0'; + buffer[1] = '.'; + for (int i = 2; i < offset; i++) buffer[i] = '0'; + if (length - kk > maxDecimalPlaces) { + // When maxDecimalPlaces = 2, 0.123 -> 0.12, 0.102 -> 0.1 + // Remove extra trailing zeros (at least one) after truncation. + for (int i = maxDecimalPlaces + 1; i > 2; i--) + if (buffer[i] != '0') return &buffer[i + 1]; + return &buffer[3]; // Reserve one zero + } else + return &buffer[length + offset]; + } else if (kk < -maxDecimalPlaces) { + // Truncate to zero + buffer[0] = '0'; + buffer[1] = '.'; + buffer[2] = '0'; + return &buffer[3]; + } else if (length == 1) { + // 1e30 + buffer[1] = 'e'; + return WriteExponent(kk - 1, &buffer[2]); + } else { + // 1234e30 -> 1.234e33 + std::memmove(&buffer[2], &buffer[1], static_cast(length - 1)); + buffer[1] = '.'; + buffer[length + 1] = 'e'; + return WriteExponent(kk - 1, &buffer[0 + length + 2]); + } +} + +inline char *dtoa(double value, char *buffer, int maxDecimalPlaces = 324) { + RAPIDJSON_ASSERT(maxDecimalPlaces >= 1); + Double d(value); + if (d.IsZero()) { + if (d.Sign()) *buffer++ = '-'; // -0.0, Issue #289 + buffer[0] = '0'; + buffer[1] = '.'; + buffer[2] = '0'; + return &buffer[3]; + } else { + if (value < 0) { + *buffer++ = '-'; + value = -value; + } + int length, K; + Grisu2(value, buffer, &length, &K); + return Prettify(buffer, length, K, maxDecimalPlaces); + } +} + +#ifdef __GNUC__ +RAPIDJSON_DIAG_POP +#endif + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_DTOA_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/ieee754.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/ieee754.h new file mode 100644 index 0000000..246c4ac --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/ieee754.h @@ -0,0 +1,100 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_IEEE754_ +#define RAPIDJSON_IEEE754_ + +#include "../rapidjson.h" + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +class Double { + public: + Double() {} + Double(double d) : d_(d) {} + Double(uint64_t u) : u_(u) {} + + double Value() const { return d_; } + uint64_t Uint64Value() const { return u_; } + + double NextPositiveDouble() const { + RAPIDJSON_ASSERT(!Sign()); + return Double(u_ + 1).Value(); + } + + bool Sign() const { return (u_ & kSignMask) != 0; } + uint64_t Significand() const { return u_ & kSignificandMask; } + int Exponent() const { + return static_cast(((u_ & kExponentMask) >> kSignificandSize) - + kExponentBias); + } + + bool IsNan() const { + return (u_ & kExponentMask) == kExponentMask && Significand() != 0; + } + bool IsInf() const { + return (u_ & kExponentMask) == kExponentMask && Significand() == 0; + } + bool IsNanOrInf() const { return (u_ & kExponentMask) == kExponentMask; } + bool IsNormal() const { + return (u_ & kExponentMask) != 0 || Significand() == 0; + } + bool IsZero() const { return (u_ & (kExponentMask | kSignificandMask)) == 0; } + + uint64_t IntegerSignificand() const { + return IsNormal() ? Significand() | kHiddenBit : Significand(); + } + int IntegerExponent() const { + return (IsNormal() ? Exponent() : kDenormalExponent) - kSignificandSize; + } + uint64_t ToBias() const { + return (u_ & kSignMask) ? ~u_ + 1 : u_ | kSignMask; + } + + static int EffectiveSignificandSize(int order) { + if (order >= -1021) + return 53; + else if (order <= -1074) + return 0; + else + return order + 1074; + } + + private: + static const int kSignificandSize = 52; + static const int kExponentBias = 0x3FF; + static const int kDenormalExponent = 1 - kExponentBias; + static const uint64_t kSignMask = RAPIDJSON_UINT64_C2(0x80000000, 0x00000000); + static const uint64_t kExponentMask = + RAPIDJSON_UINT64_C2(0x7FF00000, 0x00000000); + static const uint64_t kSignificandMask = + RAPIDJSON_UINT64_C2(0x000FFFFF, 0xFFFFFFFF); + static const uint64_t kHiddenBit = + RAPIDJSON_UINT64_C2(0x00100000, 0x00000000); + + union { + double d_; + uint64_t u_; + }; +}; + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_IEEE754_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/itoa.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/itoa.h new file mode 100644 index 0000000..ec1174c --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/itoa.h @@ -0,0 +1,288 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_ITOA_ +#define RAPIDJSON_ITOA_ + +#include "../rapidjson.h" + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +inline const char *GetDigitsLut() { + static const char cDigitsLut[200] = { + '0', '0', '0', '1', '0', '2', '0', '3', '0', '4', '0', '5', '0', '6', '0', + '7', '0', '8', '0', '9', '1', '0', '1', '1', '1', '2', '1', '3', '1', '4', + '1', '5', '1', '6', '1', '7', '1', '8', '1', '9', '2', '0', '2', '1', '2', + '2', '2', '3', '2', '4', '2', '5', '2', '6', '2', '7', '2', '8', '2', '9', + '3', '0', '3', '1', '3', '2', '3', '3', '3', '4', '3', '5', '3', '6', '3', + '7', '3', '8', '3', '9', '4', '0', '4', '1', '4', '2', '4', '3', '4', '4', + '4', '5', '4', '6', '4', '7', '4', '8', '4', '9', '5', '0', '5', '1', '5', + '2', '5', '3', '5', '4', '5', '5', '5', '6', '5', '7', '5', '8', '5', '9', + '6', '0', '6', '1', '6', '2', '6', '3', '6', '4', '6', '5', '6', '6', '6', + '7', '6', '8', '6', '9', '7', '0', '7', '1', '7', '2', '7', '3', '7', '4', + '7', '5', '7', '6', '7', '7', '7', '8', '7', '9', '8', '0', '8', '1', '8', + '2', '8', '3', '8', '4', '8', '5', '8', '6', '8', '7', '8', '8', '8', '9', + '9', '0', '9', '1', '9', '2', '9', '3', '9', '4', '9', '5', '9', '6', '9', + '7', '9', '8', '9', '9'}; + return cDigitsLut; +} + +inline char *u32toa(uint32_t value, char *buffer) { + RAPIDJSON_ASSERT(buffer != 0); + + const char *cDigitsLut = GetDigitsLut(); + + if (value < 10000) { + const uint32_t d1 = (value / 100) << 1; + const uint32_t d2 = (value % 100) << 1; + + if (value >= 1000) *buffer++ = cDigitsLut[d1]; + if (value >= 100) *buffer++ = cDigitsLut[d1 + 1]; + if (value >= 10) *buffer++ = cDigitsLut[d2]; + *buffer++ = cDigitsLut[d2 + 1]; + } else if (value < 100000000) { + // value = bbbbcccc + const uint32_t b = value / 10000; + const uint32_t c = value % 10000; + + const uint32_t d1 = (b / 100) << 1; + const uint32_t d2 = (b % 100) << 1; + + const uint32_t d3 = (c / 100) << 1; + const uint32_t d4 = (c % 100) << 1; + + if (value >= 10000000) *buffer++ = cDigitsLut[d1]; + if (value >= 1000000) *buffer++ = cDigitsLut[d1 + 1]; + if (value >= 100000) *buffer++ = cDigitsLut[d2]; + *buffer++ = cDigitsLut[d2 + 1]; + + *buffer++ = cDigitsLut[d3]; + *buffer++ = cDigitsLut[d3 + 1]; + *buffer++ = cDigitsLut[d4]; + *buffer++ = cDigitsLut[d4 + 1]; + } else { + // value = aabbbbcccc in decimal + + const uint32_t a = value / 100000000; // 1 to 42 + value %= 100000000; + + if (a >= 10) { + const unsigned i = a << 1; + *buffer++ = cDigitsLut[i]; + *buffer++ = cDigitsLut[i + 1]; + } else + *buffer++ = static_cast('0' + static_cast(a)); + + const uint32_t b = value / 10000; // 0 to 9999 + const uint32_t c = value % 10000; // 0 to 9999 + + const uint32_t d1 = (b / 100) << 1; + const uint32_t d2 = (b % 100) << 1; + + const uint32_t d3 = (c / 100) << 1; + const uint32_t d4 = (c % 100) << 1; + + *buffer++ = cDigitsLut[d1]; + *buffer++ = cDigitsLut[d1 + 1]; + *buffer++ = cDigitsLut[d2]; + *buffer++ = cDigitsLut[d2 + 1]; + *buffer++ = cDigitsLut[d3]; + *buffer++ = cDigitsLut[d3 + 1]; + *buffer++ = cDigitsLut[d4]; + *buffer++ = cDigitsLut[d4 + 1]; + } + return buffer; +} + +inline char *i32toa(int32_t value, char *buffer) { + RAPIDJSON_ASSERT(buffer != 0); + uint32_t u = static_cast(value); + if (value < 0) { + *buffer++ = '-'; + u = ~u + 1; + } + + return u32toa(u, buffer); +} + +inline char *u64toa(uint64_t value, char *buffer) { + RAPIDJSON_ASSERT(buffer != 0); + const char *cDigitsLut = GetDigitsLut(); + const uint64_t kTen8 = 100000000; + const uint64_t kTen9 = kTen8 * 10; + const uint64_t kTen10 = kTen8 * 100; + const uint64_t kTen11 = kTen8 * 1000; + const uint64_t kTen12 = kTen8 * 10000; + const uint64_t kTen13 = kTen8 * 100000; + const uint64_t kTen14 = kTen8 * 1000000; + const uint64_t kTen15 = kTen8 * 10000000; + const uint64_t kTen16 = kTen8 * kTen8; + + if (value < kTen8) { + uint32_t v = static_cast(value); + if (v < 10000) { + const uint32_t d1 = (v / 100) << 1; + const uint32_t d2 = (v % 100) << 1; + + if (v >= 1000) *buffer++ = cDigitsLut[d1]; + if (v >= 100) *buffer++ = cDigitsLut[d1 + 1]; + if (v >= 10) *buffer++ = cDigitsLut[d2]; + *buffer++ = cDigitsLut[d2 + 1]; + } else { + // value = bbbbcccc + const uint32_t b = v / 10000; + const uint32_t c = v % 10000; + + const uint32_t d1 = (b / 100) << 1; + const uint32_t d2 = (b % 100) << 1; + + const uint32_t d3 = (c / 100) << 1; + const uint32_t d4 = (c % 100) << 1; + + if (value >= 10000000) *buffer++ = cDigitsLut[d1]; + if (value >= 1000000) *buffer++ = cDigitsLut[d1 + 1]; + if (value >= 100000) *buffer++ = cDigitsLut[d2]; + *buffer++ = cDigitsLut[d2 + 1]; + + *buffer++ = cDigitsLut[d3]; + *buffer++ = cDigitsLut[d3 + 1]; + *buffer++ = cDigitsLut[d4]; + *buffer++ = cDigitsLut[d4 + 1]; + } + } else if (value < kTen16) { + const uint32_t v0 = static_cast(value / kTen8); + const uint32_t v1 = static_cast(value % kTen8); + + const uint32_t b0 = v0 / 10000; + const uint32_t c0 = v0 % 10000; + + const uint32_t d1 = (b0 / 100) << 1; + const uint32_t d2 = (b0 % 100) << 1; + + const uint32_t d3 = (c0 / 100) << 1; + const uint32_t d4 = (c0 % 100) << 1; + + const uint32_t b1 = v1 / 10000; + const uint32_t c1 = v1 % 10000; + + const uint32_t d5 = (b1 / 100) << 1; + const uint32_t d6 = (b1 % 100) << 1; + + const uint32_t d7 = (c1 / 100) << 1; + const uint32_t d8 = (c1 % 100) << 1; + + if (value >= kTen15) *buffer++ = cDigitsLut[d1]; + if (value >= kTen14) *buffer++ = cDigitsLut[d1 + 1]; + if (value >= kTen13) *buffer++ = cDigitsLut[d2]; + if (value >= kTen12) *buffer++ = cDigitsLut[d2 + 1]; + if (value >= kTen11) *buffer++ = cDigitsLut[d3]; + if (value >= kTen10) *buffer++ = cDigitsLut[d3 + 1]; + if (value >= kTen9) *buffer++ = cDigitsLut[d4]; + + *buffer++ = cDigitsLut[d4 + 1]; + *buffer++ = cDigitsLut[d5]; + *buffer++ = cDigitsLut[d5 + 1]; + *buffer++ = cDigitsLut[d6]; + *buffer++ = cDigitsLut[d6 + 1]; + *buffer++ = cDigitsLut[d7]; + *buffer++ = cDigitsLut[d7 + 1]; + *buffer++ = cDigitsLut[d8]; + *buffer++ = cDigitsLut[d8 + 1]; + } else { + const uint32_t a = static_cast(value / kTen16); // 1 to 1844 + value %= kTen16; + + if (a < 10) + *buffer++ = static_cast('0' + static_cast(a)); + else if (a < 100) { + const uint32_t i = a << 1; + *buffer++ = cDigitsLut[i]; + *buffer++ = cDigitsLut[i + 1]; + } else if (a < 1000) { + *buffer++ = static_cast('0' + static_cast(a / 100)); + + const uint32_t i = (a % 100) << 1; + *buffer++ = cDigitsLut[i]; + *buffer++ = cDigitsLut[i + 1]; + } else { + const uint32_t i = (a / 100) << 1; + const uint32_t j = (a % 100) << 1; + *buffer++ = cDigitsLut[i]; + *buffer++ = cDigitsLut[i + 1]; + *buffer++ = cDigitsLut[j]; + *buffer++ = cDigitsLut[j + 1]; + } + + const uint32_t v0 = static_cast(value / kTen8); + const uint32_t v1 = static_cast(value % kTen8); + + const uint32_t b0 = v0 / 10000; + const uint32_t c0 = v0 % 10000; + + const uint32_t d1 = (b0 / 100) << 1; + const uint32_t d2 = (b0 % 100) << 1; + + const uint32_t d3 = (c0 / 100) << 1; + const uint32_t d4 = (c0 % 100) << 1; + + const uint32_t b1 = v1 / 10000; + const uint32_t c1 = v1 % 10000; + + const uint32_t d5 = (b1 / 100) << 1; + const uint32_t d6 = (b1 % 100) << 1; + + const uint32_t d7 = (c1 / 100) << 1; + const uint32_t d8 = (c1 % 100) << 1; + + *buffer++ = cDigitsLut[d1]; + *buffer++ = cDigitsLut[d1 + 1]; + *buffer++ = cDigitsLut[d2]; + *buffer++ = cDigitsLut[d2 + 1]; + *buffer++ = cDigitsLut[d3]; + *buffer++ = cDigitsLut[d3 + 1]; + *buffer++ = cDigitsLut[d4]; + *buffer++ = cDigitsLut[d4 + 1]; + *buffer++ = cDigitsLut[d5]; + *buffer++ = cDigitsLut[d5 + 1]; + *buffer++ = cDigitsLut[d6]; + *buffer++ = cDigitsLut[d6 + 1]; + *buffer++ = cDigitsLut[d7]; + *buffer++ = cDigitsLut[d7 + 1]; + *buffer++ = cDigitsLut[d8]; + *buffer++ = cDigitsLut[d8 + 1]; + } + + return buffer; +} + +inline char *i64toa(int64_t value, char *buffer) { + RAPIDJSON_ASSERT(buffer != 0); + uint64_t u = static_cast(value); + if (value < 0) { + *buffer++ = '-'; + u = ~u + 1; + } + + return u64toa(u, buffer); +} + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_ITOA_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/meta.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/meta.h new file mode 100644 index 0000000..598f576 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/meta.h @@ -0,0 +1,243 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_INTERNAL_META_H_ +#define RAPIDJSON_INTERNAL_META_H_ + +#include "../rapidjson.h" + +#ifdef __GNUC__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +#endif + +#if defined(_MSC_VER) && !defined(__clang__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(6334) +#endif + +#if RAPIDJSON_HAS_CXX11_TYPETRAITS +#include +#endif + +//@cond RAPIDJSON_INTERNAL +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +// Helper to wrap/convert arbitrary types to void, useful for arbitrary type +// matching +template +struct Void { + typedef void Type; +}; + +/////////////////////////////////////////////////////////////////////////////// +// BoolType, TrueType, FalseType +// +template +struct BoolType { + static const bool Value = Cond; + typedef BoolType Type; +}; +typedef BoolType TrueType; +typedef BoolType FalseType; + +/////////////////////////////////////////////////////////////////////////////// +// SelectIf, BoolExpr, NotExpr, AndExpr, OrExpr +// + +template +struct SelectIfImpl { + template + struct Apply { + typedef T1 Type; + }; +}; +template <> +struct SelectIfImpl { + template + struct Apply { + typedef T2 Type; + }; +}; +template +struct SelectIfCond : SelectIfImpl::template Apply {}; +template +struct SelectIf : SelectIfCond {}; + +template +struct AndExprCond : FalseType {}; +template <> +struct AndExprCond : TrueType {}; +template +struct OrExprCond : TrueType {}; +template <> +struct OrExprCond : FalseType {}; + +template +struct BoolExpr : SelectIf::Type {}; +template +struct NotExpr : SelectIf::Type {}; +template +struct AndExpr : AndExprCond::Type {}; +template +struct OrExpr : OrExprCond::Type {}; + +/////////////////////////////////////////////////////////////////////////////// +// AddConst, MaybeAddConst, RemoveConst +template +struct AddConst { + typedef const T Type; +}; +template +struct MaybeAddConst : SelectIfCond {}; +template +struct RemoveConst { + typedef T Type; +}; +template +struct RemoveConst { + typedef T Type; +}; + +/////////////////////////////////////////////////////////////////////////////// +// IsSame, IsConst, IsMoreConst, IsPointer +// +template +struct IsSame : FalseType {}; +template +struct IsSame : TrueType {}; + +template +struct IsConst : FalseType {}; +template +struct IsConst : TrueType {}; + +template +struct IsMoreConst + : AndExpr< + IsSame::Type, typename RemoveConst::Type>, + BoolType::Value >= IsConst::Value>>::Type {}; + +template +struct IsPointer : FalseType {}; +template +struct IsPointer : TrueType {}; + +/////////////////////////////////////////////////////////////////////////////// +// IsBaseOf +// +#if RAPIDJSON_HAS_CXX11_TYPETRAITS + +template +struct IsBaseOf : BoolType<::std::is_base_of::value> {}; + +#else // simplified version adopted from Boost + +template +struct IsBaseOfImpl { + RAPIDJSON_STATIC_ASSERT(sizeof(B) != 0); + RAPIDJSON_STATIC_ASSERT(sizeof(D) != 0); + + typedef char (&Yes)[1]; + typedef char (&No)[2]; + + template + static Yes Check(const D *, T); + static No Check(const B *, int); + + struct Host { + operator const B *() const; + operator const D *(); + }; + + enum { Value = (sizeof(Check(Host(), 0)) == sizeof(Yes)) }; +}; + +template +struct IsBaseOf : OrExpr, BoolExpr>>::Type {}; + +#endif // RAPIDJSON_HAS_CXX11_TYPETRAITS + +////////////////////////////////////////////////////////////////////////// +// EnableIf / DisableIf +// +template +struct EnableIfCond { + typedef T Type; +}; +template +struct EnableIfCond { /* empty */ +}; + +template +struct DisableIfCond { + typedef T Type; +}; +template +struct DisableIfCond { /* empty */ +}; + +template +struct EnableIf : EnableIfCond {}; + +template +struct DisableIf : DisableIfCond {}; + +// SFINAE helpers +struct SfinaeTag {}; +template +struct RemoveSfinaeTag; +template +struct RemoveSfinaeTag { + typedef T Type; +}; + +#define RAPIDJSON_REMOVEFPTR_(type) \ + typename ::RAPIDJSON_NAMESPACE::internal::RemoveSfinaeTag< \ + ::RAPIDJSON_NAMESPACE::internal::SfinaeTag &(*)type>::Type + +#define RAPIDJSON_ENABLEIF(cond) \ + typename ::RAPIDJSON_NAMESPACE::internal::EnableIf::Type * = NULL + +#define RAPIDJSON_DISABLEIF(cond) \ + typename ::RAPIDJSON_NAMESPACE::internal::DisableIf::Type * = NULL + +#define RAPIDJSON_ENABLEIF_RETURN(cond, returntype) \ + typename ::RAPIDJSON_NAMESPACE::internal::EnableIf< \ + RAPIDJSON_REMOVEFPTR_(cond), RAPIDJSON_REMOVEFPTR_(returntype)>::Type + +#define RAPIDJSON_DISABLEIF_RETURN(cond, returntype) \ + typename ::RAPIDJSON_NAMESPACE::internal::DisableIf< \ + RAPIDJSON_REMOVEFPTR_(cond), RAPIDJSON_REMOVEFPTR_(returntype)>::Type + +} // namespace internal +RAPIDJSON_NAMESPACE_END +//@endcond + +#if defined(_MSC_VER) && !defined(__clang__) +RAPIDJSON_DIAG_POP +#endif + +#ifdef __GNUC__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_INTERNAL_META_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/pow10.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/pow10.h new file mode 100644 index 0000000..6f15f74 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/pow10.h @@ -0,0 +1,77 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_POW10_ +#define RAPIDJSON_POW10_ + +#include "../rapidjson.h" + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +//! Computes integer powers of 10 in double (10.0^n). +/*! This function uses lookup table for fast and accurate results. + \param n non-negative exponent. Must <= 308. + \return 10.0^n +*/ +inline double Pow10(int n) { + static const double e[] = { + // 1e-0...1e308: 309 * 8 bytes = 2472 bytes + 1e+0, 1e+1, 1e+2, 1e+3, 1e+4, 1e+5, 1e+6, 1e+7, 1e+8, + 1e+9, 1e+10, 1e+11, 1e+12, 1e+13, 1e+14, 1e+15, 1e+16, 1e+17, + 1e+18, 1e+19, 1e+20, 1e+21, 1e+22, 1e+23, 1e+24, 1e+25, 1e+26, + 1e+27, 1e+28, 1e+29, 1e+30, 1e+31, 1e+32, 1e+33, 1e+34, 1e+35, + 1e+36, 1e+37, 1e+38, 1e+39, 1e+40, 1e+41, 1e+42, 1e+43, 1e+44, + 1e+45, 1e+46, 1e+47, 1e+48, 1e+49, 1e+50, 1e+51, 1e+52, 1e+53, + 1e+54, 1e+55, 1e+56, 1e+57, 1e+58, 1e+59, 1e+60, 1e+61, 1e+62, + 1e+63, 1e+64, 1e+65, 1e+66, 1e+67, 1e+68, 1e+69, 1e+70, 1e+71, + 1e+72, 1e+73, 1e+74, 1e+75, 1e+76, 1e+77, 1e+78, 1e+79, 1e+80, + 1e+81, 1e+82, 1e+83, 1e+84, 1e+85, 1e+86, 1e+87, 1e+88, 1e+89, + 1e+90, 1e+91, 1e+92, 1e+93, 1e+94, 1e+95, 1e+96, 1e+97, 1e+98, + 1e+99, 1e+100, 1e+101, 1e+102, 1e+103, 1e+104, 1e+105, 1e+106, 1e+107, + 1e+108, 1e+109, 1e+110, 1e+111, 1e+112, 1e+113, 1e+114, 1e+115, 1e+116, + 1e+117, 1e+118, 1e+119, 1e+120, 1e+121, 1e+122, 1e+123, 1e+124, 1e+125, + 1e+126, 1e+127, 1e+128, 1e+129, 1e+130, 1e+131, 1e+132, 1e+133, 1e+134, + 1e+135, 1e+136, 1e+137, 1e+138, 1e+139, 1e+140, 1e+141, 1e+142, 1e+143, + 1e+144, 1e+145, 1e+146, 1e+147, 1e+148, 1e+149, 1e+150, 1e+151, 1e+152, + 1e+153, 1e+154, 1e+155, 1e+156, 1e+157, 1e+158, 1e+159, 1e+160, 1e+161, + 1e+162, 1e+163, 1e+164, 1e+165, 1e+166, 1e+167, 1e+168, 1e+169, 1e+170, + 1e+171, 1e+172, 1e+173, 1e+174, 1e+175, 1e+176, 1e+177, 1e+178, 1e+179, + 1e+180, 1e+181, 1e+182, 1e+183, 1e+184, 1e+185, 1e+186, 1e+187, 1e+188, + 1e+189, 1e+190, 1e+191, 1e+192, 1e+193, 1e+194, 1e+195, 1e+196, 1e+197, + 1e+198, 1e+199, 1e+200, 1e+201, 1e+202, 1e+203, 1e+204, 1e+205, 1e+206, + 1e+207, 1e+208, 1e+209, 1e+210, 1e+211, 1e+212, 1e+213, 1e+214, 1e+215, + 1e+216, 1e+217, 1e+218, 1e+219, 1e+220, 1e+221, 1e+222, 1e+223, 1e+224, + 1e+225, 1e+226, 1e+227, 1e+228, 1e+229, 1e+230, 1e+231, 1e+232, 1e+233, + 1e+234, 1e+235, 1e+236, 1e+237, 1e+238, 1e+239, 1e+240, 1e+241, 1e+242, + 1e+243, 1e+244, 1e+245, 1e+246, 1e+247, 1e+248, 1e+249, 1e+250, 1e+251, + 1e+252, 1e+253, 1e+254, 1e+255, 1e+256, 1e+257, 1e+258, 1e+259, 1e+260, + 1e+261, 1e+262, 1e+263, 1e+264, 1e+265, 1e+266, 1e+267, 1e+268, 1e+269, + 1e+270, 1e+271, 1e+272, 1e+273, 1e+274, 1e+275, 1e+276, 1e+277, 1e+278, + 1e+279, 1e+280, 1e+281, 1e+282, 1e+283, 1e+284, 1e+285, 1e+286, 1e+287, + 1e+288, 1e+289, 1e+290, 1e+291, 1e+292, 1e+293, 1e+294, 1e+295, 1e+296, + 1e+297, 1e+298, 1e+299, 1e+300, 1e+301, 1e+302, 1e+303, 1e+304, 1e+305, + 1e+306, 1e+307, 1e+308}; + RAPIDJSON_ASSERT(n >= 0 && n <= 308); + return e[n]; +} + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_POW10_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/regex.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/regex.h new file mode 100644 index 0000000..19f49da --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/regex.h @@ -0,0 +1,753 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_INTERNAL_REGEX_H_ +#define RAPIDJSON_INTERNAL_REGEX_H_ + +#include "../allocators.h" +#include "../stream.h" +#include "stack.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +RAPIDJSON_DIAG_OFF(switch - enum) +#elif defined(_MSC_VER) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(4512) // assignment operator could not be generated +#endif + +#ifdef __GNUC__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +#endif + +#ifndef RAPIDJSON_REGEX_VERBOSE +#define RAPIDJSON_REGEX_VERBOSE 0 +#endif + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +/////////////////////////////////////////////////////////////////////////////// +// DecodedStream + +template +class DecodedStream { + public: + DecodedStream(SourceStream &ss) : ss_(ss), codepoint_() { Decode(); } + unsigned Peek() { return codepoint_; } + unsigned Take() { + unsigned c = codepoint_; + if (c) // No further decoding when '\0' + Decode(); + return c; + } + + private: + void Decode() { + if (!Encoding::Decode(ss_, &codepoint_)) codepoint_ = 0; + } + + SourceStream &ss_; + unsigned codepoint_; +}; + +/////////////////////////////////////////////////////////////////////////////// +// GenericRegex + +static const SizeType kRegexInvalidState = ~SizeType( + 0); //!< Represents an invalid index in GenericRegex::State::out, out1 +static const SizeType kRegexInvalidRange = ~SizeType(0); + +template +class GenericRegexSearch; + +//! Regular expression engine with subset of ECMAscript grammar. +/*! + Supported regular expression syntax: + - \c ab Concatenation + - \c a|b Alternation + - \c a? Zero or one + - \c a* Zero or more + - \c a+ One or more + - \c a{3} Exactly 3 times + - \c a{3,} At least 3 times + - \c a{3,5} 3 to 5 times + - \c (ab) Grouping + - \c ^a At the beginning + - \c a$ At the end + - \c . Any character + - \c [abc] Character classes + - \c [a-c] Character class range + - \c [a-z0-9_] Character class combination + - \c [^abc] Negated character classes + - \c [^a-c] Negated character class range + - \c [\b] Backspace (U+0008) + - \c \\| \\\\ ... Escape characters + - \c \\f Form feed (U+000C) + - \c \\n Line feed (U+000A) + - \c \\r Carriage return (U+000D) + - \c \\t Tab (U+0009) + - \c \\v Vertical tab (U+000B) + + \note This is a Thompson NFA engine, implemented with reference to + Cox, Russ. "Regular Expression Matching Can Be Simple And Fast (but is + slow in Java, Perl, PHP, Python, Ruby,...).", + https://swtch.com/~rsc/regexp/regexp1.html +*/ +template +class GenericRegex { + public: + typedef Encoding EncodingType; + typedef typename Encoding::Ch Ch; + template + friend class GenericRegexSearch; + + GenericRegex(const Ch *source, Allocator *allocator = 0) + : ownAllocator_(allocator ? 0 : RAPIDJSON_NEW(Allocator)()), + allocator_(allocator ? allocator : ownAllocator_), + states_(allocator_, 256), + ranges_(allocator_, 256), + root_(kRegexInvalidState), + stateCount_(), + rangeCount_(), + anchorBegin_(), + anchorEnd_() { + GenericStringStream ss(source); + DecodedStream, Encoding> ds(ss); + Parse(ds); + } + + ~GenericRegex() { RAPIDJSON_DELETE(ownAllocator_); } + + bool IsValid() const { return root_ != kRegexInvalidState; } + + private: + enum Operator { + kZeroOrOne, + kZeroOrMore, + kOneOrMore, + kConcatenation, + kAlternation, + kLeftParenthesis + }; + + static const unsigned kAnyCharacterClass = 0xFFFFFFFF; //!< For '.' + static const unsigned kRangeCharacterClass = 0xFFFFFFFE; + static const unsigned kRangeNegationFlag = 0x80000000; + + struct Range { + unsigned start; // + unsigned end; + SizeType next; + }; + + struct State { + SizeType out; //!< Equals to kInvalid for matching state + SizeType out1; //!< Equals to non-kInvalid for split + SizeType rangeStart; + unsigned codepoint; + }; + + struct Frag { + Frag(SizeType s, SizeType o, SizeType m) : start(s), out(o), minIndex(m) {} + SizeType start; + SizeType out; //!< link-list of all output states + SizeType minIndex; + }; + + State &GetState(SizeType index) { + RAPIDJSON_ASSERT(index < stateCount_); + return states_.template Bottom()[index]; + } + + const State &GetState(SizeType index) const { + RAPIDJSON_ASSERT(index < stateCount_); + return states_.template Bottom()[index]; + } + + Range &GetRange(SizeType index) { + RAPIDJSON_ASSERT(index < rangeCount_); + return ranges_.template Bottom()[index]; + } + + const Range &GetRange(SizeType index) const { + RAPIDJSON_ASSERT(index < rangeCount_); + return ranges_.template Bottom()[index]; + } + + template + void Parse(DecodedStream &ds) { + Stack operandStack(allocator_, 256); // Frag + Stack operatorStack(allocator_, 256); // Operator + Stack atomCountStack(allocator_, + 256); // unsigned (Atom per parenthesis) + + *atomCountStack.template Push() = 0; + + unsigned codepoint; + while (ds.Peek() != 0) { + switch (codepoint = ds.Take()) { + case '^': + anchorBegin_ = true; + break; + + case '$': + anchorEnd_ = true; + break; + + case '|': + while (!operatorStack.Empty() && + *operatorStack.template Top() < kAlternation) + if (!Eval(operandStack, *operatorStack.template Pop(1))) + return; + *operatorStack.template Push() = kAlternation; + *atomCountStack.template Top() = 0; + break; + + case '(': + *operatorStack.template Push() = kLeftParenthesis; + *atomCountStack.template Push() = 0; + break; + + case ')': + while (!operatorStack.Empty() && + *operatorStack.template Top() != kLeftParenthesis) + if (!Eval(operandStack, *operatorStack.template Pop(1))) + return; + if (operatorStack.Empty()) return; + operatorStack.template Pop(1); + atomCountStack.template Pop(1); + ImplicitConcatenation(atomCountStack, operatorStack); + break; + + case '?': + if (!Eval(operandStack, kZeroOrOne)) return; + break; + + case '*': + if (!Eval(operandStack, kZeroOrMore)) return; + break; + + case '+': + if (!Eval(operandStack, kOneOrMore)) return; + break; + + case '{': { + unsigned n, m; + if (!ParseUnsigned(ds, &n)) return; + + if (ds.Peek() == ',') { + ds.Take(); + if (ds.Peek() == '}') + m = kInfinityQuantifier; + else if (!ParseUnsigned(ds, &m) || m < n) + return; + } else + m = n; + + if (!EvalQuantifier(operandStack, n, m) || ds.Peek() != '}') return; + ds.Take(); + } break; + + case '.': + PushOperand(operandStack, kAnyCharacterClass); + ImplicitConcatenation(atomCountStack, operatorStack); + break; + + case '[': { + SizeType range; + if (!ParseRange(ds, &range)) return; + SizeType s = NewState(kRegexInvalidState, kRegexInvalidState, + kRangeCharacterClass); + GetState(s).rangeStart = range; + *operandStack.template Push() = Frag(s, s, s); + } + ImplicitConcatenation(atomCountStack, operatorStack); + break; + + case '\\': // Escape character + if (!CharacterEscape(ds, &codepoint)) + return; // Unsupported escape character + // fall through to default + RAPIDJSON_DELIBERATE_FALLTHROUGH; + + default: // Pattern character + PushOperand(operandStack, codepoint); + ImplicitConcatenation(atomCountStack, operatorStack); + } + } + + while (!operatorStack.Empty()) + if (!Eval(operandStack, *operatorStack.template Pop(1))) return; + + // Link the operand to matching state. + if (operandStack.GetSize() == sizeof(Frag)) { + Frag *e = operandStack.template Pop(1); + Patch(e->out, NewState(kRegexInvalidState, kRegexInvalidState, 0)); + root_ = e->start; + +#if RAPIDJSON_REGEX_VERBOSE + printf("root: %d\n", root_); + for (SizeType i = 0; i < stateCount_; i++) { + State &s = GetState(i); + printf("[%2d] out: %2d out1: %2d c: '%c'\n", i, s.out, s.out1, + (char)s.codepoint); + } + printf("\n"); +#endif + } + } + + SizeType NewState(SizeType out, SizeType out1, unsigned codepoint) { + State *s = states_.template Push(); + s->out = out; + s->out1 = out1; + s->codepoint = codepoint; + s->rangeStart = kRegexInvalidRange; + return stateCount_++; + } + + void PushOperand(Stack &operandStack, unsigned codepoint) { + SizeType s = NewState(kRegexInvalidState, kRegexInvalidState, codepoint); + *operandStack.template Push() = Frag(s, s, s); + } + + void ImplicitConcatenation(Stack &atomCountStack, + Stack &operatorStack) { + if (*atomCountStack.template Top()) + *operatorStack.template Push() = kConcatenation; + (*atomCountStack.template Top())++; + } + + SizeType Append(SizeType l1, SizeType l2) { + SizeType old = l1; + while (GetState(l1).out != kRegexInvalidState) l1 = GetState(l1).out; + GetState(l1).out = l2; + return old; + } + + void Patch(SizeType l, SizeType s) { + for (SizeType next; l != kRegexInvalidState; l = next) { + next = GetState(l).out; + GetState(l).out = s; + } + } + + bool Eval(Stack &operandStack, Operator op) { + switch (op) { + case kConcatenation: + RAPIDJSON_ASSERT(operandStack.GetSize() >= sizeof(Frag) * 2); + { + Frag e2 = *operandStack.template Pop(1); + Frag e1 = *operandStack.template Pop(1); + Patch(e1.out, e2.start); + *operandStack.template Push() = + Frag(e1.start, e2.out, Min(e1.minIndex, e2.minIndex)); + } + return true; + + case kAlternation: + if (operandStack.GetSize() >= sizeof(Frag) * 2) { + Frag e2 = *operandStack.template Pop(1); + Frag e1 = *operandStack.template Pop(1); + SizeType s = NewState(e1.start, e2.start, 0); + *operandStack.template Push() = + Frag(s, Append(e1.out, e2.out), Min(e1.minIndex, e2.minIndex)); + return true; + } + return false; + + case kZeroOrOne: + if (operandStack.GetSize() >= sizeof(Frag)) { + Frag e = *operandStack.template Pop(1); + SizeType s = NewState(kRegexInvalidState, e.start, 0); + *operandStack.template Push() = + Frag(s, Append(e.out, s), e.minIndex); + return true; + } + return false; + + case kZeroOrMore: + if (operandStack.GetSize() >= sizeof(Frag)) { + Frag e = *operandStack.template Pop(1); + SizeType s = NewState(kRegexInvalidState, e.start, 0); + Patch(e.out, s); + *operandStack.template Push() = Frag(s, s, e.minIndex); + return true; + } + return false; + + case kOneOrMore: + if (operandStack.GetSize() >= sizeof(Frag)) { + Frag e = *operandStack.template Pop(1); + SizeType s = NewState(kRegexInvalidState, e.start, 0); + Patch(e.out, s); + *operandStack.template Push() = Frag(e.start, s, e.minIndex); + return true; + } + return false; + + default: + // syntax error (e.g. unclosed kLeftParenthesis) + return false; + } + } + + bool EvalQuantifier(Stack &operandStack, unsigned n, unsigned m) { + RAPIDJSON_ASSERT(n <= m); + RAPIDJSON_ASSERT(operandStack.GetSize() >= sizeof(Frag)); + + if (n == 0) { + if (m == 0) // a{0} not support + return false; + else if (m == kInfinityQuantifier) + Eval(operandStack, kZeroOrMore); // a{0,} -> a* + else { + Eval(operandStack, kZeroOrOne); // a{0,5} -> a? + for (unsigned i = 0; i < m - 1; i++) + CloneTopOperand(operandStack); // a{0,5} -> a? a? a? a? a? + for (unsigned i = 0; i < m - 1; i++) + Eval(operandStack, kConcatenation); // a{0,5} -> a?a?a?a?a? + } + return true; + } + + for (unsigned i = 0; i < n - 1; i++) // a{3} -> a a a + CloneTopOperand(operandStack); + + if (m == kInfinityQuantifier) + Eval(operandStack, kOneOrMore); // a{3,} -> a a a+ + else if (m > n) { + CloneTopOperand(operandStack); // a{3,5} -> a a a a + Eval(operandStack, kZeroOrOne); // a{3,5} -> a a a a? + for (unsigned i = n; i < m - 1; i++) + CloneTopOperand(operandStack); // a{3,5} -> a a a a? a? + for (unsigned i = n; i < m; i++) + Eval(operandStack, kConcatenation); // a{3,5} -> a a aa?a? + } + + for (unsigned i = 0; i < n - 1; i++) + Eval(operandStack, + kConcatenation); // a{3} -> aaa, a{3,} -> aaa+, a{3.5} -> aaaa?a? + + return true; + } + + static SizeType Min(SizeType a, SizeType b) { return a < b ? a : b; } + + void CloneTopOperand(Stack &operandStack) { + const Frag src = + *operandStack + .template Top(); // Copy constructor to prevent invalidation + SizeType count = + stateCount_ - src.minIndex; // Assumes top operand contains states in + // [src->minIndex, stateCount_) + State *s = states_.template Push(count); + memcpy(s, &GetState(src.minIndex), count * sizeof(State)); + for (SizeType j = 0; j < count; j++) { + if (s[j].out != kRegexInvalidState) s[j].out += count; + if (s[j].out1 != kRegexInvalidState) s[j].out1 += count; + } + *operandStack.template Push() = + Frag(src.start + count, src.out + count, src.minIndex + count); + stateCount_ += count; + } + + template + bool ParseUnsigned(DecodedStream &ds, unsigned *u) { + unsigned r = 0; + if (ds.Peek() < '0' || ds.Peek() > '9') return false; + while (ds.Peek() >= '0' && ds.Peek() <= '9') { + if (r >= 429496729 && ds.Peek() > '5') // 2^32 - 1 = 4294967295 + return false; // overflow + r = r * 10 + (ds.Take() - '0'); + } + *u = r; + return true; + } + + template + bool ParseRange(DecodedStream &ds, SizeType *range) { + bool isBegin = true; + bool negate = false; + int step = 0; + SizeType start = kRegexInvalidRange; + SizeType current = kRegexInvalidRange; + unsigned codepoint; + while ((codepoint = ds.Take()) != 0) { + if (isBegin) { + isBegin = false; + if (codepoint == '^') { + negate = true; + continue; + } + } + + switch (codepoint) { + case ']': + if (start == kRegexInvalidRange) + return false; // Error: nothing inside [] + if (step == 2) { // Add trailing '-' + SizeType r = NewRange('-'); + RAPIDJSON_ASSERT(current != kRegexInvalidRange); + GetRange(current).next = r; + } + if (negate) GetRange(start).start |= kRangeNegationFlag; + *range = start; + return true; + + case '\\': + if (ds.Peek() == 'b') { + ds.Take(); + codepoint = 0x0008; // Escape backspace character + } else if (!CharacterEscape(ds, &codepoint)) + return false; + // fall through to default + RAPIDJSON_DELIBERATE_FALLTHROUGH; + + default: + switch (step) { + case 1: + if (codepoint == '-') { + step++; + break; + } + // fall through to step 0 for other characters + RAPIDJSON_DELIBERATE_FALLTHROUGH; + + case 0: { + SizeType r = NewRange(codepoint); + if (current != kRegexInvalidRange) GetRange(current).next = r; + if (start == kRegexInvalidRange) start = r; + current = r; + } + step = 1; + break; + + default: + RAPIDJSON_ASSERT(step == 2); + GetRange(current).end = codepoint; + step = 0; + } + } + } + return false; + } + + SizeType NewRange(unsigned codepoint) { + Range *r = ranges_.template Push(); + r->start = r->end = codepoint; + r->next = kRegexInvalidRange; + return rangeCount_++; + } + + template + bool CharacterEscape(DecodedStream &ds, + unsigned *escapedCodepoint) { + unsigned codepoint; + switch (codepoint = ds.Take()) { + case '^': + case '$': + case '|': + case '(': + case ')': + case '?': + case '*': + case '+': + case '.': + case '[': + case ']': + case '{': + case '}': + case '\\': + *escapedCodepoint = codepoint; + return true; + case 'f': + *escapedCodepoint = 0x000C; + return true; + case 'n': + *escapedCodepoint = 0x000A; + return true; + case 'r': + *escapedCodepoint = 0x000D; + return true; + case 't': + *escapedCodepoint = 0x0009; + return true; + case 'v': + *escapedCodepoint = 0x000B; + return true; + default: + return false; // Unsupported escape character + } + } + + Allocator *ownAllocator_; + Allocator *allocator_; + Stack states_; + Stack ranges_; + SizeType root_; + SizeType stateCount_; + SizeType rangeCount_; + + static const unsigned kInfinityQuantifier = ~0u; + + // For SearchWithAnchoring() + bool anchorBegin_; + bool anchorEnd_; +}; + +template +class GenericRegexSearch { + public: + typedef typename RegexType::EncodingType Encoding; + typedef typename Encoding::Ch Ch; + + GenericRegexSearch(const RegexType ®ex, Allocator *allocator = 0) + : regex_(regex), + allocator_(allocator), + ownAllocator_(0), + state0_(allocator, 0), + state1_(allocator, 0), + stateSet_() { + RAPIDJSON_ASSERT(regex_.IsValid()); + if (!allocator_) ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator)(); + stateSet_ = static_cast(allocator_->Malloc(GetStateSetSize())); + state0_.template Reserve(regex_.stateCount_); + state1_.template Reserve(regex_.stateCount_); + } + + ~GenericRegexSearch() { + Allocator::Free(stateSet_); + RAPIDJSON_DELETE(ownAllocator_); + } + + template + bool Match(InputStream &is) { + return SearchWithAnchoring(is, true, true); + } + + bool Match(const Ch *s) { + GenericStringStream is(s); + return Match(is); + } + + template + bool Search(InputStream &is) { + return SearchWithAnchoring(is, regex_.anchorBegin_, regex_.anchorEnd_); + } + + bool Search(const Ch *s) { + GenericStringStream is(s); + return Search(is); + } + + private: + typedef typename RegexType::State State; + typedef typename RegexType::Range Range; + + template + bool SearchWithAnchoring(InputStream &is, bool anchorBegin, bool anchorEnd) { + DecodedStream ds(is); + + state0_.Clear(); + Stack *current = &state0_, *next = &state1_; + const size_t stateSetSize = GetStateSetSize(); + std::memset(stateSet_, 0, stateSetSize); + + bool matched = AddState(*current, regex_.root_); + unsigned codepoint; + while (!current->Empty() && (codepoint = ds.Take()) != 0) { + std::memset(stateSet_, 0, stateSetSize); + next->Clear(); + matched = false; + for (const SizeType *s = current->template Bottom(); + s != current->template End(); ++s) { + const State &sr = regex_.GetState(*s); + if (sr.codepoint == codepoint || + sr.codepoint == RegexType::kAnyCharacterClass || + (sr.codepoint == RegexType::kRangeCharacterClass && + MatchRange(sr.rangeStart, codepoint))) { + matched = AddState(*next, sr.out) || matched; + if (!anchorEnd && matched) return true; + } + if (!anchorBegin) AddState(*next, regex_.root_); + } + internal::Swap(current, next); + } + + return matched; + } + + size_t GetStateSetSize() const { return (regex_.stateCount_ + 31) / 32 * 4; } + + // Return whether the added states is a match state + bool AddState(Stack &l, SizeType index) { + RAPIDJSON_ASSERT(index != kRegexInvalidState); + + const State &s = regex_.GetState(index); + if (s.out1 != kRegexInvalidState) { // Split + bool matched = AddState(l, s.out); + return AddState(l, s.out1) || matched; + } else if (!(stateSet_[index >> 5] & (1u << (index & 31)))) { + stateSet_[index >> 5] |= (1u << (index & 31)); + *l.template PushUnsafe() = index; + } + return s.out == + kRegexInvalidState; // by using PushUnsafe() above, we can ensure s + // is not validated due to reallocation. + } + + bool MatchRange(SizeType rangeIndex, unsigned codepoint) const { + bool yes = (regex_.GetRange(rangeIndex).start & + RegexType::kRangeNegationFlag) == 0; + while (rangeIndex != kRegexInvalidRange) { + const Range &r = regex_.GetRange(rangeIndex); + if (codepoint >= (r.start & ~RegexType::kRangeNegationFlag) && + codepoint <= r.end) + return yes; + rangeIndex = r.next; + } + return !yes; + } + + const RegexType ®ex_; + Allocator *allocator_; + Allocator *ownAllocator_; + Stack state0_; + Stack state1_; + uint32_t *stateSet_; +}; + +typedef GenericRegex> Regex; +typedef GenericRegexSearch RegexSearch; + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#ifdef __GNUC__ +RAPIDJSON_DIAG_POP +#endif + +#if defined(__clang__) || defined(_MSC_VER) +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_INTERNAL_REGEX_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/stack.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/stack.h new file mode 100644 index 0000000..bf80503 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/stack.h @@ -0,0 +1,245 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_INTERNAL_STACK_H_ +#define RAPIDJSON_INTERNAL_STACK_H_ + +#include +#include "../allocators.h" +#include "swap.h" + +#if defined(__clang__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(c++ 98 - compat) +#endif + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +/////////////////////////////////////////////////////////////////////////////// +// Stack + +//! A type-unsafe stack for storing different types of data. +/*! \tparam Allocator Allocator for allocating stack memory. + */ +template +class Stack { + public: + // Optimization note: Do not allocate memory for stack_ in constructor. + // Do it lazily when first Push() -> Expand() -> Resize(). + Stack(Allocator *allocator, size_t stackCapacity) + : allocator_(allocator), + ownAllocator_(0), + stack_(0), + stackTop_(0), + stackEnd_(0), + initialCapacity_(stackCapacity) {} + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + Stack(Stack &&rhs) + : allocator_(rhs.allocator_), + ownAllocator_(rhs.ownAllocator_), + stack_(rhs.stack_), + stackTop_(rhs.stackTop_), + stackEnd_(rhs.stackEnd_), + initialCapacity_(rhs.initialCapacity_) { + rhs.allocator_ = 0; + rhs.ownAllocator_ = 0; + rhs.stack_ = 0; + rhs.stackTop_ = 0; + rhs.stackEnd_ = 0; + rhs.initialCapacity_ = 0; + } +#endif + + ~Stack() { Destroy(); } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + Stack &operator=(Stack &&rhs) { + if (&rhs != this) { + Destroy(); + + allocator_ = rhs.allocator_; + ownAllocator_ = rhs.ownAllocator_; + stack_ = rhs.stack_; + stackTop_ = rhs.stackTop_; + stackEnd_ = rhs.stackEnd_; + initialCapacity_ = rhs.initialCapacity_; + + rhs.allocator_ = 0; + rhs.ownAllocator_ = 0; + rhs.stack_ = 0; + rhs.stackTop_ = 0; + rhs.stackEnd_ = 0; + rhs.initialCapacity_ = 0; + } + return *this; + } +#endif + + void Swap(Stack &rhs) RAPIDJSON_NOEXCEPT { + internal::Swap(allocator_, rhs.allocator_); + internal::Swap(ownAllocator_, rhs.ownAllocator_); + internal::Swap(stack_, rhs.stack_); + internal::Swap(stackTop_, rhs.stackTop_); + internal::Swap(stackEnd_, rhs.stackEnd_); + internal::Swap(initialCapacity_, rhs.initialCapacity_); + } + + void Clear() { stackTop_ = stack_; } + + void ShrinkToFit() { + if (Empty()) { + // If the stack is empty, completely deallocate the memory. + Allocator::Free(stack_); // NOLINT (+clang-analyzer-unix.Malloc) + stack_ = 0; + stackTop_ = 0; + stackEnd_ = 0; + } else + Resize(GetSize()); + } + + // Optimization note: try to minimize the size of this function for force + // inline. Expansion is run very infrequently, so it is moved to another + // (probably non-inline) function. + template + RAPIDJSON_FORCEINLINE void Reserve(size_t count = 1) { + // Expand the stack if needed + if (RAPIDJSON_UNLIKELY(static_cast(sizeof(T) * count) > + (stackEnd_ - stackTop_))) + Expand(count); + } + + template + RAPIDJSON_FORCEINLINE T *Push(size_t count = 1) { + Reserve(count); + return PushUnsafe(count); + } + + template + RAPIDJSON_FORCEINLINE T *PushUnsafe(size_t count = 1) { + RAPIDJSON_ASSERT(stackTop_); + RAPIDJSON_ASSERT(static_cast(sizeof(T) * count) <= + (stackEnd_ - stackTop_)); + T *ret = reinterpret_cast(stackTop_); + stackTop_ += sizeof(T) * count; + return ret; + } + + template + T *Pop(size_t count) { + RAPIDJSON_ASSERT(GetSize() >= count * sizeof(T)); + stackTop_ -= count * sizeof(T); + return reinterpret_cast(stackTop_); + } + + template + T *Top() { + RAPIDJSON_ASSERT(GetSize() >= sizeof(T)); + return reinterpret_cast(stackTop_ - sizeof(T)); + } + + template + const T *Top() const { + RAPIDJSON_ASSERT(GetSize() >= sizeof(T)); + return reinterpret_cast(stackTop_ - sizeof(T)); + } + + template + T *End() { + return reinterpret_cast(stackTop_); + } + + template + const T *End() const { + return reinterpret_cast(stackTop_); + } + + template + T *Bottom() { + return reinterpret_cast(stack_); + } + + template + const T *Bottom() const { + return reinterpret_cast(stack_); + } + + bool HasAllocator() const { return allocator_ != 0; } + + Allocator &GetAllocator() { + RAPIDJSON_ASSERT(allocator_); + return *allocator_; + } + + bool Empty() const { return stackTop_ == stack_; } + size_t GetSize() const { return static_cast(stackTop_ - stack_); } + size_t GetCapacity() const { return static_cast(stackEnd_ - stack_); } + + private: + template + void Expand(size_t count) { + // Only expand the capacity if the current stack exists. Otherwise just + // create a stack with initial capacity. + size_t newCapacity; + if (stack_ == 0) { + if (!allocator_) ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator)(); + newCapacity = initialCapacity_; + } else { + newCapacity = GetCapacity(); + newCapacity += (newCapacity + 1) / 2; + } + size_t newSize = GetSize() + sizeof(T) * count; + if (newCapacity < newSize) newCapacity = newSize; + + Resize(newCapacity); + } + + void Resize(size_t newCapacity) { + const size_t size = GetSize(); // Backup the current size + stack_ = static_cast( + allocator_->Realloc(stack_, GetCapacity(), newCapacity)); + stackTop_ = stack_ + size; + stackEnd_ = stack_ + newCapacity; + } + + void Destroy() { + Allocator::Free(stack_); + RAPIDJSON_DELETE(ownAllocator_); // Only delete if it is owned by the stack + } + + // Prohibit copy constructor & assignment operator. + Stack(const Stack &); + Stack &operator=(const Stack &); + + Allocator *allocator_; + Allocator *ownAllocator_; + char *stack_; + char *stackTop_; + char *stackEnd_; + size_t initialCapacity_; +}; + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#if defined(__clang__) +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_STACK_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/strfunc.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/strfunc.h new file mode 100644 index 0000000..9024b2f --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/strfunc.h @@ -0,0 +1,74 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_INTERNAL_STRFUNC_H_ +#define RAPIDJSON_INTERNAL_STRFUNC_H_ + +#include +#include "../stream.h" + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +//! Custom strlen() which works on different character types. +/*! \tparam Ch Character type (e.g. char, wchar_t, short) + \param s Null-terminated input string. + \return Number of characters in the string. + \note This has the same semantics as strlen(), the return value is not + number of Unicode codepoints. +*/ +template +inline SizeType StrLen(const Ch *s) { + RAPIDJSON_ASSERT(s != 0); + const Ch *p = s; + while (*p) ++p; + return SizeType(p - s); +} + +template <> +inline SizeType StrLen(const char *s) { + return SizeType(std::strlen(s)); +} + +template <> +inline SizeType StrLen(const wchar_t *s) { + return SizeType(std::wcslen(s)); +} + +//! Returns number of code points in a encoded string. +template +bool CountStringCodePoint(const typename Encoding::Ch *s, SizeType length, + SizeType *outCount) { + RAPIDJSON_ASSERT(s != 0); + RAPIDJSON_ASSERT(outCount != 0); + GenericStringStream is(s); + const typename Encoding::Ch *end = s + length; + SizeType count = 0; + while (is.src_ < end) { + unsigned codepoint; + if (!Encoding::Decode(is, &codepoint)) return false; + count++; + } + *outCount = count; + return true; +} + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_INTERNAL_STRFUNC_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/strtod.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/strtod.h new file mode 100644 index 0000000..ea7ae43 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/strtod.h @@ -0,0 +1,303 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_STRTOD_ +#define RAPIDJSON_STRTOD_ + +#include +#include +#include "biginteger.h" +#include "diyfp.h" +#include "ieee754.h" +#include "pow10.h" + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +inline double FastPath(double significand, int exp) { + if (exp < -308) + return 0.0; + else if (exp >= 0) + return significand * internal::Pow10(exp); + else + return significand / internal::Pow10(-exp); +} + +inline double StrtodNormalPrecision(double d, int p) { + if (p < -308) { + // Prevent expSum < -308, making Pow10(p) = 0 + d = FastPath(d, -308); + d = FastPath(d, p + 308); + } else + d = FastPath(d, p); + return d; +} + +template +inline T Min3(T a, T b, T c) { + T m = a; + if (m > b) m = b; + if (m > c) m = c; + return m; +} + +inline int CheckWithinHalfULP(double b, const BigInteger &d, int dExp) { + const Double db(b); + const uint64_t bInt = db.IntegerSignificand(); + const int bExp = db.IntegerExponent(); + const int hExp = bExp - 1; + + int dS_Exp2 = 0, dS_Exp5 = 0, bS_Exp2 = 0, bS_Exp5 = 0, hS_Exp2 = 0, + hS_Exp5 = 0; + + // Adjust for decimal exponent + if (dExp >= 0) { + dS_Exp2 += dExp; + dS_Exp5 += dExp; + } else { + bS_Exp2 -= dExp; + bS_Exp5 -= dExp; + hS_Exp2 -= dExp; + hS_Exp5 -= dExp; + } + + // Adjust for binary exponent + if (bExp >= 0) + bS_Exp2 += bExp; + else { + dS_Exp2 -= bExp; + hS_Exp2 -= bExp; + } + + // Adjust for half ulp exponent + if (hExp >= 0) + hS_Exp2 += hExp; + else { + dS_Exp2 -= hExp; + bS_Exp2 -= hExp; + } + + // Remove common power of two factor from all three scaled values + int common_Exp2 = Min3(dS_Exp2, bS_Exp2, hS_Exp2); + dS_Exp2 -= common_Exp2; + bS_Exp2 -= common_Exp2; + hS_Exp2 -= common_Exp2; + + BigInteger dS = d; + dS.MultiplyPow5(static_cast(dS_Exp5)) <<= + static_cast(dS_Exp2); + + BigInteger bS(bInt); + bS.MultiplyPow5(static_cast(bS_Exp5)) <<= + static_cast(bS_Exp2); + + BigInteger hS(1); + hS.MultiplyPow5(static_cast(hS_Exp5)) <<= + static_cast(hS_Exp2); + + BigInteger delta(0); + dS.Difference(bS, &delta); + + return delta.Compare(hS); +} + +inline bool StrtodFast(double d, int p, double *result) { + // Use fast path for string-to-double conversion if possible + // see + // http://www.exploringbinary.com/fast-path-decimal-to-floating-point-conversion/ + if (p > 22 && p < 22 + 16) { + // Fast Path Cases In Disguise + d *= internal::Pow10(p - 22); + p = 22; + } + + if (p >= -22 && p <= 22 && d <= 9007199254740991.0) { // 2^53 - 1 + *result = FastPath(d, p); + return true; + } else + return false; +} + +// Compute an approximation and see if it is within 1/2 ULP +inline bool StrtodDiyFp(const char *decimals, int dLen, int dExp, + double *result) { + uint64_t significand = 0; + int i = 0; // 2^64 - 1 = 18446744073709551615, 1844674407370955161 = + // 0x1999999999999999 + for (; i < dLen; i++) { + if (significand > RAPIDJSON_UINT64_C2(0x19999999, 0x99999999) || + (significand == RAPIDJSON_UINT64_C2(0x19999999, 0x99999999) && + decimals[i] > '5')) + break; + significand = significand * 10u + static_cast(decimals[i] - '0'); + } + + if (i < dLen && decimals[i] >= '5') // Rounding + significand++; + + int remaining = dLen - i; + const int kUlpShift = 3; + const int kUlp = 1 << kUlpShift; + int64_t error = (remaining == 0) ? 0 : kUlp / 2; + + DiyFp v(significand, 0); + v = v.Normalize(); + error <<= -v.e; + + dExp += remaining; + + int actualExp; + DiyFp cachedPower = GetCachedPower10(dExp, &actualExp); + if (actualExp != dExp) { + static const DiyFp kPow10[] = { + DiyFp(RAPIDJSON_UINT64_C2(0xa0000000, 0x00000000), -60), // 10^1 + DiyFp(RAPIDJSON_UINT64_C2(0xc8000000, 0x00000000), -57), // 10^2 + DiyFp(RAPIDJSON_UINT64_C2(0xfa000000, 0x00000000), -54), // 10^3 + DiyFp(RAPIDJSON_UINT64_C2(0x9c400000, 0x00000000), -50), // 10^4 + DiyFp(RAPIDJSON_UINT64_C2(0xc3500000, 0x00000000), -47), // 10^5 + DiyFp(RAPIDJSON_UINT64_C2(0xf4240000, 0x00000000), -44), // 10^6 + DiyFp(RAPIDJSON_UINT64_C2(0x98968000, 0x00000000), -40) // 10^7 + }; + int adjustment = dExp - actualExp; + RAPIDJSON_ASSERT(adjustment >= 1 && adjustment < 8); + v = v * kPow10[adjustment - 1]; + if (dLen + adjustment > + 19) // has more digits than decimal digits in 64-bit + error += kUlp / 2; + } + + v = v * cachedPower; + + error += kUlp + (error == 0 ? 0 : 1); + + const int oldExp = v.e; + v = v.Normalize(); + error <<= oldExp - v.e; + + const int effectiveSignificandSize = + Double::EffectiveSignificandSize(64 + v.e); + int precisionSize = 64 - effectiveSignificandSize; + if (precisionSize + kUlpShift >= 64) { + int scaleExp = (precisionSize + kUlpShift) - 63; + v.f >>= scaleExp; + v.e += scaleExp; + error = (error >> scaleExp) + 1 + kUlp; + precisionSize -= scaleExp; + } + + DiyFp rounded(v.f >> precisionSize, v.e + precisionSize); + const uint64_t precisionBits = + (v.f & ((uint64_t(1) << precisionSize) - 1)) * kUlp; + const uint64_t halfWay = (uint64_t(1) << (precisionSize - 1)) * kUlp; + if (precisionBits >= halfWay + static_cast(error)) { + rounded.f++; + if (rounded.f & (DiyFp::kDpHiddenBit + << 1)) { // rounding overflows mantissa (issue #340) + rounded.f >>= 1; + rounded.e++; + } + } + + *result = rounded.ToDouble(); + + return halfWay - static_cast(error) >= precisionBits || + precisionBits >= halfWay + static_cast(error); +} + +inline double StrtodBigInteger(double approx, const char *decimals, int dLen, + int dExp) { + RAPIDJSON_ASSERT(dLen >= 0); + const BigInteger dInt(decimals, static_cast(dLen)); + Double a(approx); + int cmp = CheckWithinHalfULP(a.Value(), dInt, dExp); + if (cmp < 0) + return a.Value(); // within half ULP + else if (cmp == 0) { + // Round towards even + if (a.Significand() & 1) + return a.NextPositiveDouble(); + else + return a.Value(); + } else // adjustment + return a.NextPositiveDouble(); +} + +inline double StrtodFullPrecision(double d, int p, const char *decimals, + size_t length, size_t decimalPosition, + int exp) { + RAPIDJSON_ASSERT(d >= 0.0); + RAPIDJSON_ASSERT(length >= 1); + + double result = 0.0; + if (StrtodFast(d, p, &result)) return result; + + RAPIDJSON_ASSERT(length <= INT_MAX); + int dLen = static_cast(length); + + RAPIDJSON_ASSERT(length >= decimalPosition); + RAPIDJSON_ASSERT(length - decimalPosition <= INT_MAX); + int dExpAdjust = static_cast(length - decimalPosition); + + RAPIDJSON_ASSERT(exp >= INT_MIN + dExpAdjust); + int dExp = exp - dExpAdjust; + + // Make sure length+dExp does not overflow + RAPIDJSON_ASSERT(dExp <= INT_MAX - dLen); + + // Trim leading zeros + while (dLen > 0 && *decimals == '0') { + dLen--; + decimals++; + } + + // Trim trailing zeros + while (dLen > 0 && decimals[dLen - 1] == '0') { + dLen--; + dExp++; + } + + if (dLen == 0) { // Buffer only contains zeros. + return 0.0; + } + + // Trim right-most digits + const int kMaxDecimalDigit = 767 + 1; + if (dLen > kMaxDecimalDigit) { + dExp += dLen - kMaxDecimalDigit; + dLen = kMaxDecimalDigit; + } + + // If too small, underflow to zero. + // Any x <= 10^-324 is interpreted as zero. + if (dLen + dExp <= -324) return 0.0; + + // If too large, overflow to infinity. + // Any x >= 10^309 is interpreted as +infinity. + if (dLen + dExp > 309) return std::numeric_limits::infinity(); + + if (StrtodDiyFp(decimals, dLen, dExp, &result)) return result; + + // Use approximation from StrtodDiyFp and make adjustment with BigInteger + // comparison + return StrtodBigInteger(result, decimals, dLen, dExp); +} + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_STRTOD_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/swap.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/swap.h new file mode 100644 index 0000000..db41b18 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/internal/swap.h @@ -0,0 +1,50 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_INTERNAL_SWAP_H_ +#define RAPIDJSON_INTERNAL_SWAP_H_ + +#include "../rapidjson.h" + +#if defined(__clang__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(c++ 98 - compat) +#endif + +RAPIDJSON_NAMESPACE_BEGIN +namespace internal { + +//! Custom swap() to avoid dependency on C++ header +/*! \tparam T Type of the arguments to swap, should be instantiated with + primitive C++ types only. \note This has the same semantics as std::swap(). +*/ +template +inline void Swap(T &a, T &b) RAPIDJSON_NOEXCEPT { + T tmp = a; + a = b; + b = tmp; +} + +} // namespace internal +RAPIDJSON_NAMESPACE_END + +#if defined(__clang__) +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_INTERNAL_SWAP_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/istreamwrapper.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/istreamwrapper.h new file mode 100644 index 0000000..b9663b0 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/istreamwrapper.h @@ -0,0 +1,161 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_ISTREAMWRAPPER_H_ +#define RAPIDJSON_ISTREAMWRAPPER_H_ + +#include +#include +#include "stream.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +#elif defined(_MSC_VER) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(4351) // new behavior: elements of array 'array' will be + // default initialized +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Wrapper of \c std::basic_istream into RapidJSON's Stream concept. +/*! + The classes can be wrapped including but not limited to: + + - \c std::istringstream + - \c std::stringstream + - \c std::wistringstream + - \c std::wstringstream + - \c std::ifstream + - \c std::fstream + - \c std::wifstream + - \c std::wfstream + + \tparam StreamType Class derived from \c std::basic_istream. +*/ + +template +class BasicIStreamWrapper { + public: + typedef typename StreamType::char_type Ch; + + //! Constructor. + /*! + \param stream stream opened for read. + */ + BasicIStreamWrapper(StreamType &stream) + : stream_(stream), + buffer_(peekBuffer_), + bufferSize_(4), + bufferLast_(0), + current_(buffer_), + readCount_(0), + count_(0), + eof_(false) { + Read(); + } + + //! Constructor. + /*! + \param stream stream opened for read. + \param buffer user-supplied buffer. + \param bufferSize size of buffer in bytes. Must >=4 bytes. + */ + BasicIStreamWrapper(StreamType &stream, char *buffer, size_t bufferSize) + : stream_(stream), + buffer_(buffer), + bufferSize_(bufferSize), + bufferLast_(0), + current_(buffer_), + readCount_(0), + count_(0), + eof_(false) { + RAPIDJSON_ASSERT(bufferSize >= 4); + Read(); + } + + Ch Peek() const { return *current_; } + Ch Take() { + Ch c = *current_; + Read(); + return c; + } + size_t Tell() const { + return count_ + static_cast(current_ - buffer_); + } + + // Not implemented + void Put(Ch) { RAPIDJSON_ASSERT(false); } + void Flush() { RAPIDJSON_ASSERT(false); } + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + // For encoding detection only. + const Ch *Peek4() const { + return (current_ + 4 - !eof_ <= bufferLast_) ? current_ : 0; + } + + private: + BasicIStreamWrapper(); + BasicIStreamWrapper(const BasicIStreamWrapper &); + BasicIStreamWrapper &operator=(const BasicIStreamWrapper &); + + void Read() { + if (current_ < bufferLast_) + ++current_; + else if (!eof_) { + count_ += readCount_; + readCount_ = bufferSize_; + bufferLast_ = buffer_ + readCount_ - 1; + current_ = buffer_; + + if (!stream_.read(buffer_, static_cast(bufferSize_))) { + readCount_ = static_cast(stream_.gcount()); + *(bufferLast_ = buffer_ + readCount_) = '\0'; + eof_ = true; + } + } + } + + StreamType &stream_; + Ch peekBuffer_[4], *buffer_; + size_t bufferSize_; + Ch *bufferLast_; + Ch *current_; + size_t readCount_; + size_t count_; //!< Number of characters read + bool eof_; +}; + +typedef BasicIStreamWrapper IStreamWrapper; +typedef BasicIStreamWrapper WIStreamWrapper; + +#if defined(__clang__) || defined(_MSC_VER) +RAPIDJSON_DIAG_POP +#endif + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_ISTREAMWRAPPER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/license.txt b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/license.txt new file mode 100644 index 0000000..7ccc161 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/license.txt @@ -0,0 +1,57 @@ +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. +If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. +A copy of the MIT License is included in this file. + +Other dependencies and licenses: + +Open Source Software Licensed Under the BSD License: +-------------------------------------------------------------------- + +The msinttypes r29 +Copyright (c) 2006-2013 Alexander Chemeris +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Open Source Software Licensed Under the JSON License: +-------------------------------------------------------------------- + +json.org +Copyright (c) 2002 JSON.org +All Rights Reserved. + +JSON_checker +Copyright (c) 2002 JSON.org +All Rights Reserved. + + +Terms of the JSON License: +--------------------------------------------------- + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +The Software shall be used for Good, not Evil. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Terms of the MIT License: +-------------------------------------------------------------------- + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/memorybuffer.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/memorybuffer.h new file mode 100644 index 0000000..a827d6a --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/memorybuffer.h @@ -0,0 +1,78 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_MEMORYBUFFER_H_ +#define RAPIDJSON_MEMORYBUFFER_H_ + +#include "internal/stack.h" +#include "stream.h" + +RAPIDJSON_NAMESPACE_BEGIN + +//! Represents an in-memory output byte stream. +/*! + This class is mainly for being wrapped by EncodedOutputStream or + AutoUTFOutputStream. + + It is similar to FileWriteBuffer but the destination is an in-memory buffer + instead of a file. + + Differences between MemoryBuffer and StringBuffer: + 1. StringBuffer has Encoding but MemoryBuffer is only a byte buffer. + 2. StringBuffer::GetString() returns a null-terminated string. + MemoryBuffer::GetBuffer() returns a buffer without terminator. + + \tparam Allocator type for allocating memory buffer. + \note implements Stream concept +*/ +template +struct GenericMemoryBuffer { + typedef char Ch; // byte + + GenericMemoryBuffer(Allocator *allocator = 0, + size_t capacity = kDefaultCapacity) + : stack_(allocator, capacity) {} + + void Put(Ch c) { *stack_.template Push() = c; } + void Flush() {} + + void Clear() { stack_.Clear(); } + void ShrinkToFit() { stack_.ShrinkToFit(); } + Ch *Push(size_t count) { return stack_.template Push(count); } + void Pop(size_t count) { stack_.template Pop(count); } + + const Ch *GetBuffer() const { return stack_.template Bottom(); } + + size_t GetSize() const { return stack_.GetSize(); } + + static const size_t kDefaultCapacity = 256; + mutable internal::Stack stack_; +}; + +typedef GenericMemoryBuffer<> MemoryBuffer; + +//! Implement specialized version of PutN() with memset() for better +//! performance. +template <> +inline void PutN(MemoryBuffer &memoryBuffer, char c, size_t n) { + std::memset(memoryBuffer.stack_.Push(n), c, n * sizeof(c)); +} + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_MEMORYBUFFER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/memorystream.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/memorystream.h new file mode 100644 index 0000000..f542ece --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/memorystream.h @@ -0,0 +1,84 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_MEMORYSTREAM_H_ +#define RAPIDJSON_MEMORYSTREAM_H_ + +#include "stream.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(unreachable - code) +RAPIDJSON_DIAG_OFF(missing - noreturn) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Represents an in-memory input byte stream. +/*! + This class is mainly for being wrapped by EncodedInputStream or + AutoUTFInputStream. + + It is similar to FileReadBuffer but the source is an in-memory buffer + instead of a file. + + Differences between MemoryStream and StringStream: + 1. StringStream has encoding but MemoryStream is a byte stream. + 2. MemoryStream needs size of the source buffer and the buffer don't need to + be null terminated. StringStream assume null-terminated string as source. + 3. MemoryStream supports Peek4() for encoding detection. StringStream is + specified with an encoding so it should not have Peek4(). \note implements + Stream concept +*/ +struct MemoryStream { + typedef char Ch; // byte + + MemoryStream(const Ch *src, size_t size) + : src_(src), begin_(src), end_(src + size), size_(size) {} + + Ch Peek() const { return RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_; } + Ch Take() { return RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_++; } + size_t Tell() const { return static_cast(src_ - begin_); } + + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + void Put(Ch) { RAPIDJSON_ASSERT(false); } + void Flush() { RAPIDJSON_ASSERT(false); } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + // For encoding detection only. + const Ch *Peek4() const { return Tell() + 4 <= size_ ? src_ : 0; } + + const Ch *src_; //!< Current read position. + const Ch *begin_; //!< Original head of the string. + const Ch *end_; //!< End of stream. + size_t size_; //!< Size of the stream. +}; + +RAPIDJSON_NAMESPACE_END + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_MEMORYBUFFER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/msinttypes/inttypes.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/msinttypes/inttypes.h new file mode 100644 index 0000000..bc32dad --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/msinttypes/inttypes.h @@ -0,0 +1,316 @@ +// ISO C9x compliant inttypes.h for Microsoft Visual Studio +// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 +// +// Copyright (c) 2006-2013 Alexander Chemeris +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// 1. Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// 3. Neither the name of the product nor the names of its contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +/////////////////////////////////////////////////////////////////////////////// + +// The above software in this distribution may have been modified by +// THL A29 Limited ("Tencent Modifications"). +// All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. + +#ifndef _MSC_VER // [ +#error "Use this header only with Microsoft Visual C++ compilers!" +#endif // _MSC_VER ] + +#ifndef _MSC_INTTYPES_H_ // [ +#define _MSC_INTTYPES_H_ + +#if _MSC_VER > 1000 +#pragma once +#endif + +#include "stdint.h" + +// miloyip: VC supports inttypes.h since VC2013 +#if _MSC_VER >= 1800 +#include +#else + +// 7.8 Format conversion of integer types + +typedef struct { + intmax_t quot; + intmax_t rem; +} imaxdiv_t; + +// 7.8.1 Macros for format specifiers + +#if !defined(__cplusplus) || \ + defined(__STDC_FORMAT_MACROS) // [ See footnote 185 at page 198 + +// The fprintf macros for signed integers are: +#define PRId8 "d" +#define PRIi8 "i" +#define PRIdLEAST8 "d" +#define PRIiLEAST8 "i" +#define PRIdFAST8 "d" +#define PRIiFAST8 "i" + +#define PRId16 "hd" +#define PRIi16 "hi" +#define PRIdLEAST16 "hd" +#define PRIiLEAST16 "hi" +#define PRIdFAST16 "hd" +#define PRIiFAST16 "hi" + +#define PRId32 "I32d" +#define PRIi32 "I32i" +#define PRIdLEAST32 "I32d" +#define PRIiLEAST32 "I32i" +#define PRIdFAST32 "I32d" +#define PRIiFAST32 "I32i" + +#define PRId64 "I64d" +#define PRIi64 "I64i" +#define PRIdLEAST64 "I64d" +#define PRIiLEAST64 "I64i" +#define PRIdFAST64 "I64d" +#define PRIiFAST64 "I64i" + +#define PRIdMAX "I64d" +#define PRIiMAX "I64i" + +#define PRIdPTR "Id" +#define PRIiPTR "Ii" + +// The fprintf macros for unsigned integers are: +#define PRIo8 "o" +#define PRIu8 "u" +#define PRIx8 "x" +#define PRIX8 "X" +#define PRIoLEAST8 "o" +#define PRIuLEAST8 "u" +#define PRIxLEAST8 "x" +#define PRIXLEAST8 "X" +#define PRIoFAST8 "o" +#define PRIuFAST8 "u" +#define PRIxFAST8 "x" +#define PRIXFAST8 "X" + +#define PRIo16 "ho" +#define PRIu16 "hu" +#define PRIx16 "hx" +#define PRIX16 "hX" +#define PRIoLEAST16 "ho" +#define PRIuLEAST16 "hu" +#define PRIxLEAST16 "hx" +#define PRIXLEAST16 "hX" +#define PRIoFAST16 "ho" +#define PRIuFAST16 "hu" +#define PRIxFAST16 "hx" +#define PRIXFAST16 "hX" + +#define PRIo32 "I32o" +#define PRIu32 "I32u" +#define PRIx32 "I32x" +#define PRIX32 "I32X" +#define PRIoLEAST32 "I32o" +#define PRIuLEAST32 "I32u" +#define PRIxLEAST32 "I32x" +#define PRIXLEAST32 "I32X" +#define PRIoFAST32 "I32o" +#define PRIuFAST32 "I32u" +#define PRIxFAST32 "I32x" +#define PRIXFAST32 "I32X" + +#define PRIo64 "I64o" +#define PRIu64 "I64u" +#define PRIx64 "I64x" +#define PRIX64 "I64X" +#define PRIoLEAST64 "I64o" +#define PRIuLEAST64 "I64u" +#define PRIxLEAST64 "I64x" +#define PRIXLEAST64 "I64X" +#define PRIoFAST64 "I64o" +#define PRIuFAST64 "I64u" +#define PRIxFAST64 "I64x" +#define PRIXFAST64 "I64X" + +#define PRIoMAX "I64o" +#define PRIuMAX "I64u" +#define PRIxMAX "I64x" +#define PRIXMAX "I64X" + +#define PRIoPTR "Io" +#define PRIuPTR "Iu" +#define PRIxPTR "Ix" +#define PRIXPTR "IX" + +// The fscanf macros for signed integers are: +#define SCNd8 "d" +#define SCNi8 "i" +#define SCNdLEAST8 "d" +#define SCNiLEAST8 "i" +#define SCNdFAST8 "d" +#define SCNiFAST8 "i" + +#define SCNd16 "hd" +#define SCNi16 "hi" +#define SCNdLEAST16 "hd" +#define SCNiLEAST16 "hi" +#define SCNdFAST16 "hd" +#define SCNiFAST16 "hi" + +#define SCNd32 "ld" +#define SCNi32 "li" +#define SCNdLEAST32 "ld" +#define SCNiLEAST32 "li" +#define SCNdFAST32 "ld" +#define SCNiFAST32 "li" + +#define SCNd64 "I64d" +#define SCNi64 "I64i" +#define SCNdLEAST64 "I64d" +#define SCNiLEAST64 "I64i" +#define SCNdFAST64 "I64d" +#define SCNiFAST64 "I64i" + +#define SCNdMAX "I64d" +#define SCNiMAX "I64i" + +#ifdef _WIN64 // [ +#define SCNdPTR "I64d" +#define SCNiPTR "I64i" +#else // _WIN64 ][ +#define SCNdPTR "ld" +#define SCNiPTR "li" +#endif // _WIN64 ] + +// The fscanf macros for unsigned integers are: +#define SCNo8 "o" +#define SCNu8 "u" +#define SCNx8 "x" +#define SCNX8 "X" +#define SCNoLEAST8 "o" +#define SCNuLEAST8 "u" +#define SCNxLEAST8 "x" +#define SCNXLEAST8 "X" +#define SCNoFAST8 "o" +#define SCNuFAST8 "u" +#define SCNxFAST8 "x" +#define SCNXFAST8 "X" + +#define SCNo16 "ho" +#define SCNu16 "hu" +#define SCNx16 "hx" +#define SCNX16 "hX" +#define SCNoLEAST16 "ho" +#define SCNuLEAST16 "hu" +#define SCNxLEAST16 "hx" +#define SCNXLEAST16 "hX" +#define SCNoFAST16 "ho" +#define SCNuFAST16 "hu" +#define SCNxFAST16 "hx" +#define SCNXFAST16 "hX" + +#define SCNo32 "lo" +#define SCNu32 "lu" +#define SCNx32 "lx" +#define SCNX32 "lX" +#define SCNoLEAST32 "lo" +#define SCNuLEAST32 "lu" +#define SCNxLEAST32 "lx" +#define SCNXLEAST32 "lX" +#define SCNoFAST32 "lo" +#define SCNuFAST32 "lu" +#define SCNxFAST32 "lx" +#define SCNXFAST32 "lX" + +#define SCNo64 "I64o" +#define SCNu64 "I64u" +#define SCNx64 "I64x" +#define SCNX64 "I64X" +#define SCNoLEAST64 "I64o" +#define SCNuLEAST64 "I64u" +#define SCNxLEAST64 "I64x" +#define SCNXLEAST64 "I64X" +#define SCNoFAST64 "I64o" +#define SCNuFAST64 "I64u" +#define SCNxFAST64 "I64x" +#define SCNXFAST64 "I64X" + +#define SCNoMAX "I64o" +#define SCNuMAX "I64u" +#define SCNxMAX "I64x" +#define SCNXMAX "I64X" + +#ifdef _WIN64 // [ +#define SCNoPTR "I64o" +#define SCNuPTR "I64u" +#define SCNxPTR "I64x" +#define SCNXPTR "I64X" +#else // _WIN64 ][ +#define SCNoPTR "lo" +#define SCNuPTR "lu" +#define SCNxPTR "lx" +#define SCNXPTR "lX" +#endif // _WIN64 ] + +#endif // __STDC_FORMAT_MACROS ] + +// 7.8.2 Functions for greatest-width integer types + +// 7.8.2.1 The imaxabs function +#define imaxabs _abs64 + +// 7.8.2.2 The imaxdiv function + +// This is modified version of div() function from Microsoft's div.c found +// in %MSVC.NET%\crt\src\div.c +#ifdef STATIC_IMAXDIV // [ +static +#else // STATIC_IMAXDIV ][ +_inline +#endif // STATIC_IMAXDIV ] + imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom) { + imaxdiv_t result; + + result.quot = numer / denom; + result.rem = numer % denom; + + if (numer < 0 && result.rem > 0) { + // did division wrong; must fix up + ++result.quot; + result.rem -= denom; + } + + return result; +} + +// 7.8.2.3 The strtoimax and strtoumax functions +#define strtoimax _strtoi64 +#define strtoumax _strtoui64 + +// 7.8.2.4 The wcstoimax and wcstoumax functions +#define wcstoimax _wcstoi64 +#define wcstoumax _wcstoui64 + +#endif // _MSC_VER >= 1800 + +#endif // _MSC_INTTYPES_H_ ] diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/msinttypes/stdint.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/msinttypes/stdint.h new file mode 100644 index 0000000..8fd0655 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/msinttypes/stdint.h @@ -0,0 +1,301 @@ +// ISO C9x compliant stdint.h for Microsoft Visual Studio +// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 +// +// Copyright (c) 2006-2013 Alexander Chemeris +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// 1. Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// 3. Neither the name of the product nor the names of its contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +/////////////////////////////////////////////////////////////////////////////// + +// The above software in this distribution may have been modified by +// THL A29 Limited ("Tencent Modifications"). +// All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. + +#ifndef _MSC_VER // [ +#error "Use this header only with Microsoft Visual C++ compilers!" +#endif // _MSC_VER ] + +#ifndef _MSC_STDINT_H_ // [ +#define _MSC_STDINT_H_ + +#if _MSC_VER > 1000 +#pragma once +#endif + +// miloyip: Originally Visual Studio 2010 uses its own stdint.h. However it +// generates warning with INT64_C(), so change to use this file for vs2010. +#if _MSC_VER >= 1600 // [ +#include + +#if !defined(__cplusplus) || \ + defined(__STDC_CONSTANT_MACROS) // [ See footnote 224 at page 260 + +#undef INT8_C +#undef INT16_C +#undef INT32_C +#undef INT64_C +#undef UINT8_C +#undef UINT16_C +#undef UINT32_C +#undef UINT64_C + +// 7.18.4.1 Macros for minimum-width integer constants + +#define INT8_C(val) val##i8 +#define INT16_C(val) val##i16 +#define INT32_C(val) val##i32 +#define INT64_C(val) val##i64 + +#define UINT8_C(val) val##ui8 +#define UINT16_C(val) val##ui16 +#define UINT32_C(val) val##ui32 +#define UINT64_C(val) val##ui64 + +// 7.18.4.2 Macros for greatest-width integer constants +// These #ifndef's are needed to prevent collisions with . +// Check out Issue 9 for the details. +#ifndef INTMAX_C // [ +#define INTMAX_C INT64_C +#endif // INTMAX_C ] +#ifndef UINTMAX_C // [ +#define UINTMAX_C UINT64_C +#endif // UINTMAX_C ] + +#endif // __STDC_CONSTANT_MACROS ] + +#else // ] _MSC_VER >= 1700 [ + +#include + +// For Visual Studio 6 in C++ mode and for many Visual Studio versions when +// compiling for ARM we have to wrap include with 'extern "C++" {}' +// or compiler would give many errors like this: +// error C2733: second C linkage of overloaded function 'wmemchr' not allowed +#if defined(__cplusplus) && !defined(_M_ARM) +extern "C" { +#endif +#include +#if defined(__cplusplus) && !defined(_M_ARM) +} +#endif + +// Define _W64 macros to mark types changing their size, like intptr_t. +#ifndef _W64 +#if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300 +#define _W64 __w64 +#else +#define _W64 +#endif +#endif + +// 7.18.1 Integer types + +// 7.18.1.1 Exact-width integer types + +// Visual Studio 6 and Embedded Visual C++ 4 doesn't +// realize that, e.g. char has the same size as __int8 +// so we give up on __intX for them. +#if (_MSC_VER < 1300) +typedef signed char int8_t; +typedef signed short int16_t; +typedef signed int int32_t; +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned int uint32_t; +#else +typedef signed __int8 int8_t; +typedef signed __int16 int16_t; +typedef signed __int32 int32_t; +typedef unsigned __int8 uint8_t; +typedef unsigned __int16 uint16_t; +typedef unsigned __int32 uint32_t; +#endif +typedef signed __int64 int64_t; +typedef unsigned __int64 uint64_t; + +// 7.18.1.2 Minimum-width integer types +typedef int8_t int_least8_t; +typedef int16_t int_least16_t; +typedef int32_t int_least32_t; +typedef int64_t int_least64_t; +typedef uint8_t uint_least8_t; +typedef uint16_t uint_least16_t; +typedef uint32_t uint_least32_t; +typedef uint64_t uint_least64_t; + +// 7.18.1.3 Fastest minimum-width integer types +typedef int8_t int_fast8_t; +typedef int16_t int_fast16_t; +typedef int32_t int_fast32_t; +typedef int64_t int_fast64_t; +typedef uint8_t uint_fast8_t; +typedef uint16_t uint_fast16_t; +typedef uint32_t uint_fast32_t; +typedef uint64_t uint_fast64_t; + +// 7.18.1.4 Integer types capable of holding object pointers +#ifdef _WIN64 // [ +typedef signed __int64 intptr_t; +typedef unsigned __int64 uintptr_t; +#else // _WIN64 ][ +typedef _W64 signed int intptr_t; +typedef _W64 unsigned int uintptr_t; +#endif // _WIN64 ] + +// 7.18.1.5 Greatest-width integer types +typedef int64_t intmax_t; +typedef uint64_t uintmax_t; + +// 7.18.2 Limits of specified-width integer types + +#if !defined(__cplusplus) || \ + defined(__STDC_LIMIT_MACROS) // [ See footnote 220 at page 257 and +// footnote 221 at page 259 + +// 7.18.2.1 Limits of exact-width integer types +#define INT8_MIN ((int8_t)_I8_MIN) +#define INT8_MAX _I8_MAX +#define INT16_MIN ((int16_t)_I16_MIN) +#define INT16_MAX _I16_MAX +#define INT32_MIN ((int32_t)_I32_MIN) +#define INT32_MAX _I32_MAX +#define INT64_MIN ((int64_t)_I64_MIN) +#define INT64_MAX _I64_MAX +#define UINT8_MAX _UI8_MAX +#define UINT16_MAX _UI16_MAX +#define UINT32_MAX _UI32_MAX +#define UINT64_MAX _UI64_MAX + +// 7.18.2.2 Limits of minimum-width integer types +#define INT_LEAST8_MIN INT8_MIN +#define INT_LEAST8_MAX INT8_MAX +#define INT_LEAST16_MIN INT16_MIN +#define INT_LEAST16_MAX INT16_MAX +#define INT_LEAST32_MIN INT32_MIN +#define INT_LEAST32_MAX INT32_MAX +#define INT_LEAST64_MIN INT64_MIN +#define INT_LEAST64_MAX INT64_MAX +#define UINT_LEAST8_MAX UINT8_MAX +#define UINT_LEAST16_MAX UINT16_MAX +#define UINT_LEAST32_MAX UINT32_MAX +#define UINT_LEAST64_MAX UINT64_MAX + +// 7.18.2.3 Limits of fastest minimum-width integer types +#define INT_FAST8_MIN INT8_MIN +#define INT_FAST8_MAX INT8_MAX +#define INT_FAST16_MIN INT16_MIN +#define INT_FAST16_MAX INT16_MAX +#define INT_FAST32_MIN INT32_MIN +#define INT_FAST32_MAX INT32_MAX +#define INT_FAST64_MIN INT64_MIN +#define INT_FAST64_MAX INT64_MAX +#define UINT_FAST8_MAX UINT8_MAX +#define UINT_FAST16_MAX UINT16_MAX +#define UINT_FAST32_MAX UINT32_MAX +#define UINT_FAST64_MAX UINT64_MAX + +// 7.18.2.4 Limits of integer types capable of holding object pointers +#ifdef _WIN64 // [ +#define INTPTR_MIN INT64_MIN +#define INTPTR_MAX INT64_MAX +#define UINTPTR_MAX UINT64_MAX +#else // _WIN64 ][ +#define INTPTR_MIN INT32_MIN +#define INTPTR_MAX INT32_MAX +#define UINTPTR_MAX UINT32_MAX +#endif // _WIN64 ] + +// 7.18.2.5 Limits of greatest-width integer types +#define INTMAX_MIN INT64_MIN +#define INTMAX_MAX INT64_MAX +#define UINTMAX_MAX UINT64_MAX + +// 7.18.3 Limits of other integer types + +#ifdef _WIN64 // [ +#define PTRDIFF_MIN _I64_MIN +#define PTRDIFF_MAX _I64_MAX +#else // _WIN64 ][ +#define PTRDIFF_MIN _I32_MIN +#define PTRDIFF_MAX _I32_MAX +#endif // _WIN64 ] + +#define SIG_ATOMIC_MIN INT_MIN +#define SIG_ATOMIC_MAX INT_MAX + +#ifndef SIZE_MAX // [ +#ifdef _WIN64 // [ +#define SIZE_MAX _UI64_MAX +#else // _WIN64 ][ +#define SIZE_MAX _UI32_MAX +#endif // _WIN64 ] +#endif // SIZE_MAX ] + +// WCHAR_MIN and WCHAR_MAX are also defined in +#ifndef WCHAR_MIN // [ +#define WCHAR_MIN 0 +#endif // WCHAR_MIN ] +#ifndef WCHAR_MAX // [ +#define WCHAR_MAX _UI16_MAX +#endif // WCHAR_MAX ] + +#define WINT_MIN 0 +#define WINT_MAX _UI16_MAX + +#endif // __STDC_LIMIT_MACROS ] + +// 7.18.4 Limits of other integer types + +#if !defined(__cplusplus) || \ + defined(__STDC_CONSTANT_MACROS) // [ See footnote 224 at page 260 + +// 7.18.4.1 Macros for minimum-width integer constants + +#define INT8_C(val) val##i8 +#define INT16_C(val) val##i16 +#define INT32_C(val) val##i32 +#define INT64_C(val) val##i64 + +#define UINT8_C(val) val##ui8 +#define UINT16_C(val) val##ui16 +#define UINT32_C(val) val##ui32 +#define UINT64_C(val) val##ui64 + +// 7.18.4.2 Macros for greatest-width integer constants +// These #ifndef's are needed to prevent collisions with . +// Check out Issue 9 for the details. +#ifndef INTMAX_C // [ +#define INTMAX_C INT64_C +#endif // INTMAX_C ] +#ifndef UINTMAX_C // [ +#define UINTMAX_C UINT64_C +#endif // UINTMAX_C ] + +#endif // __STDC_CONSTANT_MACROS ] + +#endif // _MSC_VER >= 1600 ] + +#endif // _MSC_STDINT_H_ ] diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/ostreamwrapper.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/ostreamwrapper.h new file mode 100644 index 0000000..56c50a7 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/ostreamwrapper.h @@ -0,0 +1,96 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_OSTREAMWRAPPER_H_ +#define RAPIDJSON_OSTREAMWRAPPER_H_ + +#include +#include "stream.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Wrapper of \c std::basic_ostream into RapidJSON's Stream concept. +/*! + The classes can be wrapped including but not limited to: + + - \c std::ostringstream + - \c std::stringstream + - \c std::wpstringstream + - \c std::wstringstream + - \c std::ifstream + - \c std::fstream + - \c std::wofstream + - \c std::wfstream + + \tparam StreamType Class derived from \c std::basic_ostream. +*/ + +template +class BasicOStreamWrapper { + public: + typedef typename StreamType::char_type Ch; + BasicOStreamWrapper(StreamType &stream) : stream_(stream) {} + + void Put(Ch c) { stream_.put(c); } + + void Flush() { stream_.flush(); } + + // Not implemented + char Peek() const { + RAPIDJSON_ASSERT(false); + return 0; + } + char Take() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t Tell() const { + RAPIDJSON_ASSERT(false); + return 0; + } + char *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + size_t PutEnd(char *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + private: + BasicOStreamWrapper(const BasicOStreamWrapper &); + BasicOStreamWrapper &operator=(const BasicOStreamWrapper &); + + StreamType &stream_; +}; + +typedef BasicOStreamWrapper OStreamWrapper; +typedef BasicOStreamWrapper WOStreamWrapper; + +#ifdef __clang__ +RAPIDJSON_DIAG_POP +#endif + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_OSTREAMWRAPPER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/pointer.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/pointer.h new file mode 100644 index 0000000..218dd6c --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/pointer.h @@ -0,0 +1,1712 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_POINTER_H_ +#define RAPIDJSON_POINTER_H_ + +#include "document.h" +#include "internal/itoa.h" + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(switch - enum) +#elif defined(_MSC_VER) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(4512) // assignment operator could not be generated +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +static const SizeType kPointerInvalidIndex = + ~SizeType(0); //!< Represents an invalid index in GenericPointer::Token + +//! Error code of parsing. +/*! \ingroup RAPIDJSON_ERRORS + \see GenericPointer::GenericPointer, GenericPointer::GetParseErrorCode +*/ +enum PointerParseErrorCode { + kPointerParseErrorNone = 0, //!< The parse is successful + + kPointerParseErrorTokenMustBeginWithSolidus, //!< A token must begin with a + //!< '/' + kPointerParseErrorInvalidEscape, //!< Invalid escape + kPointerParseErrorInvalidPercentEncoding, //!< Invalid percent encoding in + //!URI + //!< fragment + kPointerParseErrorCharacterMustPercentEncode //!< A character must percent + //!< encoded in URI fragment +}; + +/////////////////////////////////////////////////////////////////////////////// +// GenericPointer + +//! Represents a JSON Pointer. Use Pointer for UTF8 encoding and default +//! allocator. +/*! + This class implements RFC 6901 "JavaScript Object Notation (JSON) Pointer" + (https://tools.ietf.org/html/rfc6901). + + A JSON pointer is for identifying a specific value in a JSON document + (GenericDocument). It can simplify coding of DOM tree manipulation, because + it can access multiple-level depth of DOM tree with single API call. + + After it parses a string representation (e.g. "/foo/0" or URI fragment + representation (e.g. "#/foo/0") into its internal representation (tokens), + it can be used to resolve a specific value in multiple documents, or + sub-tree of documents. + + Contrary to GenericValue, Pointer can be copy constructed and copy assigned. + Apart from assignment, a Pointer cannot be modified after construction. + + Although Pointer is very convenient, please aware that constructing Pointer + involves parsing and dynamic memory allocation. A special constructor with + user- supplied tokens eliminates these. + + GenericPointer depends on GenericDocument and GenericValue. + + \tparam ValueType The value type of the DOM tree. E.g. GenericValue > + \tparam Allocator The allocator type for allocating memory for internal + representation. + + \note GenericPointer uses same encoding of ValueType. + However, Allocator of GenericPointer is independent of Allocator of Value. +*/ +template +class GenericPointer { + public: + typedef typename ValueType::EncodingType + EncodingType; //!< Encoding type from Value + typedef typename ValueType::Ch Ch; //!< Character type from Value + + //! A token is the basic units of internal representation. + /*! + A JSON pointer string representation "/foo/123" is parsed to two tokens: + "foo" and 123. 123 will be represented in both numeric form and string + form. They are resolved according to the actual value type (object or + array). + + For token that are not numbers, or the numeric value is out of bound + (greater than limits of SizeType), they are only treated as string form + (i.e. the token's index will be equal to kPointerInvalidIndex). + + This struct is public so that user can create a Pointer without parsing + and allocation, using a special constructor. + */ + struct Token { + const Ch + *name; //!< Name of the token. It has null character at the end but + //!< it can contain null character. + SizeType length; //!< Length of the name. + SizeType index; //!< A valid array index, if it is not equal to + //!< kPointerInvalidIndex. + }; + + //!@name Constructors and destructor. + //@{ + + //! Default constructor. + GenericPointer(Allocator *allocator = 0) + : allocator_(allocator), + ownAllocator_(), + nameBuffer_(), + tokens_(), + tokenCount_(), + parseErrorOffset_(), + parseErrorCode_(kPointerParseErrorNone) {} + + //! Constructor that parses a string or URI fragment representation. + /*! + \param source A null-terminated, string or URI fragment representation of + JSON pointer. \param allocator User supplied allocator for this pointer. If + no allocator is provided, it creates a self-owned one. + */ + explicit GenericPointer(const Ch *source, Allocator *allocator = 0) + : allocator_(allocator), + ownAllocator_(), + nameBuffer_(), + tokens_(), + tokenCount_(), + parseErrorOffset_(), + parseErrorCode_(kPointerParseErrorNone) { + Parse(source, internal::StrLen(source)); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Constructor that parses a string or URI fragment representation. + /*! + \param source A string or URI fragment representation of JSON pointer. + \param allocator User supplied allocator for this pointer. If no allocator + is provided, it creates a self-owned one. \note Requires the definition of + the preprocessor symbol \ref RAPIDJSON_HAS_STDSTRING. + */ + explicit GenericPointer(const std::basic_string &source, + Allocator *allocator = 0) + : allocator_(allocator), + ownAllocator_(), + nameBuffer_(), + tokens_(), + tokenCount_(), + parseErrorOffset_(), + parseErrorCode_(kPointerParseErrorNone) { + Parse(source.c_str(), source.size()); + } +#endif + + //! Constructor that parses a string or URI fragment representation, with + //! length of the source string. + /*! + \param source A string or URI fragment representation of JSON pointer. + \param length Length of source. + \param allocator User supplied allocator for this pointer. If no allocator + is provided, it creates a self-owned one. \note Slightly faster than the + overload without length. + */ + GenericPointer(const Ch *source, size_t length, Allocator *allocator = 0) + : allocator_(allocator), + ownAllocator_(), + nameBuffer_(), + tokens_(), + tokenCount_(), + parseErrorOffset_(), + parseErrorCode_(kPointerParseErrorNone) { + Parse(source, length); + } + + //! Constructor with user-supplied tokens. + /*! + This constructor let user supplies const array of tokens. + This prevents the parsing process and eliminates allocation. + This is preferred for memory constrained environments. + + \param tokens An constant array of tokens representing the JSON pointer. + \param tokenCount Number of tokens. + + \b Example + \code + #define NAME(s) { s, sizeof(s) / sizeof(s[0]) - 1, kPointerInvalidIndex } + #define INDEX(i) { #i, sizeof(#i) - 1, i } + + static const Pointer::Token kTokens[] = { NAME("foo"), INDEX(123) }; + static const Pointer p(kTokens, sizeof(kTokens) / sizeof(kTokens[0])); + // Equivalent to static const Pointer p("/foo/123"); + + #undef NAME + #undef INDEX + \endcode + */ + GenericPointer(const Token *tokens, size_t tokenCount) + : allocator_(), + ownAllocator_(), + nameBuffer_(), + tokens_(const_cast(tokens)), + tokenCount_(tokenCount), + parseErrorOffset_(), + parseErrorCode_(kPointerParseErrorNone) {} + + //! Copy constructor. + GenericPointer(const GenericPointer &rhs) + : allocator_(rhs.allocator_), + ownAllocator_(), + nameBuffer_(), + tokens_(), + tokenCount_(), + parseErrorOffset_(), + parseErrorCode_(kPointerParseErrorNone) { + *this = rhs; + } + + //! Copy constructor. + GenericPointer(const GenericPointer &rhs, Allocator *allocator) + : allocator_(allocator), + ownAllocator_(), + nameBuffer_(), + tokens_(), + tokenCount_(), + parseErrorOffset_(), + parseErrorCode_(kPointerParseErrorNone) { + *this = rhs; + } + + //! Destructor. + ~GenericPointer() { + if (nameBuffer_) // If user-supplied tokens constructor is used, + // nameBuffer_ + // is nullptr and tokens_ are not deallocated. + Allocator::Free(tokens_); + RAPIDJSON_DELETE(ownAllocator_); + } + + //! Assignment operator. + GenericPointer &operator=(const GenericPointer &rhs) { + if (this != &rhs) { + // Do not delete ownAllcator + if (nameBuffer_) Allocator::Free(tokens_); + + tokenCount_ = rhs.tokenCount_; + parseErrorOffset_ = rhs.parseErrorOffset_; + parseErrorCode_ = rhs.parseErrorCode_; + + if (rhs.nameBuffer_) + CopyFromRaw(rhs); // Normally parsed tokens. + else { + tokens_ = rhs.tokens_; // User supplied const tokens. + nameBuffer_ = 0; + } + } + return *this; + } + + //! Swap the content of this pointer with an other. + /*! + \param other The pointer to swap with. + \note Constant complexity. + */ + GenericPointer &Swap(GenericPointer &other) RAPIDJSON_NOEXCEPT { + internal::Swap(allocator_, other.allocator_); + internal::Swap(ownAllocator_, other.ownAllocator_); + internal::Swap(nameBuffer_, other.nameBuffer_); + internal::Swap(tokens_, other.tokens_); + internal::Swap(tokenCount_, other.tokenCount_); + internal::Swap(parseErrorOffset_, other.parseErrorOffset_); + internal::Swap(parseErrorCode_, other.parseErrorCode_); + return *this; + } + + //! free-standing swap function helper + /*! + Helper function to enable support for common swap implementation pattern + based on \c std::swap: \code void swap(MyClass& a, MyClass& b) { using + std::swap; swap(a.pointer, b.pointer); + // ... + } + \endcode + \see Swap() + */ + friend inline void swap(GenericPointer &a, + GenericPointer &b) RAPIDJSON_NOEXCEPT { + a.Swap(b); + } + + //@} + + //!@name Append token + //@{ + + //! Append a token and return a new Pointer + /*! + \param token Token to be appended. + \param allocator Allocator for the newly return Pointer. + \return A new Pointer with appended token. + */ + GenericPointer Append(const Token &token, Allocator *allocator = 0) const { + GenericPointer r; + r.allocator_ = allocator; + Ch *p = r.CopyFromRaw(*this, 1, token.length + 1); + std::memcpy(p, token.name, (token.length + 1) * sizeof(Ch)); + r.tokens_[tokenCount_].name = p; + r.tokens_[tokenCount_].length = token.length; + r.tokens_[tokenCount_].index = token.index; + return r; + } + + //! Append a name token with length, and return a new Pointer + /*! + \param name Name to be appended. + \param length Length of name. + \param allocator Allocator for the newly return Pointer. + \return A new Pointer with appended token. + */ + GenericPointer Append(const Ch *name, SizeType length, + Allocator *allocator = 0) const { + Token token = {name, length, kPointerInvalidIndex}; + return Append(token, allocator); + } + + //! Append a name token without length, and return a new Pointer + /*! + \param name Name (const Ch*) to be appended. + \param allocator Allocator for the newly return Pointer. + \return A new Pointer with appended token. + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::NotExpr< + internal::IsSame::Type, Ch>>), + (GenericPointer)) + Append(T *name, Allocator *allocator = 0) const { + return Append(name, internal::StrLen(name), allocator); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Append a name token, and return a new Pointer + /*! + \param name Name to be appended. + \param allocator Allocator for the newly return Pointer. + \return A new Pointer with appended token. + */ + GenericPointer Append(const std::basic_string &name, + Allocator *allocator = 0) const { + return Append(name.c_str(), static_cast(name.size()), allocator); + } +#endif + + //! Append a index token, and return a new Pointer + /*! + \param index Index to be appended. + \param allocator Allocator for the newly return Pointer. + \return A new Pointer with appended token. + */ + GenericPointer Append(SizeType index, Allocator *allocator = 0) const { + char buffer[21]; + char *end = sizeof(SizeType) == 4 ? internal::u32toa(index, buffer) + : internal::u64toa(index, buffer); + SizeType length = static_cast(end - buffer); + buffer[length] = '\0'; + + if (sizeof(Ch) == 1) { + Token token = {reinterpret_cast(buffer), length, index}; + return Append(token, allocator); + } else { + Ch name[21]; + for (size_t i = 0; i <= length; i++) name[i] = static_cast(buffer[i]); + Token token = {name, length, index}; + return Append(token, allocator); + } + } + + //! Append a token by value, and return a new Pointer + /*! + \param token token to be appended. + \param allocator Allocator for the newly return Pointer. + \return A new Pointer with appended token. + */ + GenericPointer Append(const ValueType &token, + Allocator *allocator = 0) const { + if (token.IsString()) + return Append(token.GetString(), token.GetStringLength(), allocator); + else { + RAPIDJSON_ASSERT(token.IsUint64()); + RAPIDJSON_ASSERT(token.GetUint64() <= SizeType(~0)); + return Append(static_cast(token.GetUint64()), allocator); + } + } + + //!@name Handling Parse Error + //@{ + + //! Check whether this is a valid pointer. + bool IsValid() const { return parseErrorCode_ == kPointerParseErrorNone; } + + //! Get the parsing error offset in code unit. + size_t GetParseErrorOffset() const { return parseErrorOffset_; } + + //! Get the parsing error code. + PointerParseErrorCode GetParseErrorCode() const { return parseErrorCode_; } + + //@} + + //! Get the allocator of this pointer. + Allocator &GetAllocator() { return *allocator_; } + + //!@name Tokens + //@{ + + //! Get the token array (const version only). + const Token *GetTokens() const { return tokens_; } + + //! Get the number of tokens. + size_t GetTokenCount() const { return tokenCount_; } + + //@} + + //!@name Equality/inequality operators + //@{ + + //! Equality operator. + /*! + \note When any pointers are invalid, always returns false. + */ + bool operator==(const GenericPointer &rhs) const { + if (!IsValid() || !rhs.IsValid() || tokenCount_ != rhs.tokenCount_) + return false; + + for (size_t i = 0; i < tokenCount_; i++) { + if (tokens_[i].index != rhs.tokens_[i].index || + tokens_[i].length != rhs.tokens_[i].length || + (tokens_[i].length != 0 && + std::memcmp(tokens_[i].name, rhs.tokens_[i].name, + sizeof(Ch) * tokens_[i].length) != 0)) { + return false; + } + } + + return true; + } + + //! Inequality operator. + /*! + \note When any pointers are invalid, always returns true. + */ + bool operator!=(const GenericPointer &rhs) const { return !(*this == rhs); } + + //! Less than operator. + /*! + \note Invalid pointers are always greater than valid ones. + */ + bool operator<(const GenericPointer &rhs) const { + if (!IsValid()) return false; + if (!rhs.IsValid()) return true; + + if (tokenCount_ != rhs.tokenCount_) return tokenCount_ < rhs.tokenCount_; + + for (size_t i = 0; i < tokenCount_; i++) { + if (tokens_[i].index != rhs.tokens_[i].index) + return tokens_[i].index < rhs.tokens_[i].index; + + if (tokens_[i].length != rhs.tokens_[i].length) + return tokens_[i].length < rhs.tokens_[i].length; + + if (int cmp = std::memcmp(tokens_[i].name, rhs.tokens_[i].name, + sizeof(Ch) * tokens_[i].length)) + return cmp < 0; + } + + return false; + } + + //@} + + //!@name Stringify + //@{ + + //! Stringify the pointer into string representation. + /*! + \tparam OutputStream Type of output stream. + \param os The output stream. + */ + template + bool Stringify(OutputStream &os) const { + return Stringify(os); + } + + //! Stringify the pointer into URI fragment representation. + /*! + \tparam OutputStream Type of output stream. + \param os The output stream. + */ + template + bool StringifyUriFragment(OutputStream &os) const { + return Stringify(os); + } + + //@} + + //!@name Create value + //@{ + + //! Create a value in a subtree. + /*! + If the value is not exist, it creates all parent values and a JSON Null + value. So it always succeed and return the newly created or existing value. + + Remind that it may change types of parents according to tokens, so it + potentially removes previously stored values. For example, if a document + was an array, and "/foo" is used to create a value, then the document + will be changed to an object, and all existing array elements are lost. + + \param root Root value of a DOM subtree to be resolved. It can be any + value other than document root. \param allocator Allocator for creating the + values if the specified value or its parents are not exist. \param + alreadyExist If non-null, it stores whether the resolved value is already + exist. \return The resolved newly created (a JSON Null value), or already + exists value. + */ + ValueType &Create(ValueType &root, + typename ValueType::AllocatorType &allocator, + bool *alreadyExist = 0) const { + RAPIDJSON_ASSERT(IsValid()); + ValueType *v = &root; + bool exist = true; + for (const Token *t = tokens_; t != tokens_ + tokenCount_; ++t) { + if (v->IsArray() && t->name[0] == '-' && t->length == 1) { + v->PushBack(ValueType().Move(), allocator); + v = &((*v)[v->Size() - 1]); + exist = false; + } else { + if (t->index == kPointerInvalidIndex) { // must be object name + if (!v->IsObject()) v->SetObject(); // Change to Object + } else { // object name or array index + if (!v->IsArray() && !v->IsObject()) + v->SetArray(); // Change to Array + } + + if (v->IsArray()) { + if (t->index >= v->Size()) { + v->Reserve(t->index + 1, allocator); + while (t->index >= v->Size()) + v->PushBack(ValueType().Move(), allocator); + exist = false; + } + v = &((*v)[t->index]); + } else { + typename ValueType::MemberIterator m = + v->FindMember(GenericValue( + GenericStringRef(t->name, t->length))); + if (m == v->MemberEnd()) { + v->AddMember(ValueType(t->name, t->length, allocator).Move(), + ValueType().Move(), allocator); + m = v->MemberEnd(); + v = &(--m)->value; // Assumes AddMember() appends at the end + exist = false; + } else + v = &m->value; + } + } + } + + if (alreadyExist) *alreadyExist = exist; + + return *v; + } + + //! Creates a value in a document. + /*! + \param document A document to be resolved. + \param alreadyExist If non-null, it stores whether the resolved value is + already exist. \return The resolved newly created, or already exists value. + */ + template + ValueType &Create( + GenericDocument &document, + bool *alreadyExist = 0) const { + return Create(document, document.GetAllocator(), alreadyExist); + } + + //@} + + //!@name Query value + //@{ + + //! Query a value in a subtree. + /*! + \param root Root value of a DOM sub-tree to be resolved. It can be any + value other than document root. \param unresolvedTokenIndex If the pointer + cannot resolve a token in the pointer, this parameter can obtain the index + of unresolved token. \return Pointer to the value if it can be resolved. + Otherwise null. + + \note + There are only 3 situations when a value cannot be resolved: + 1. A value in the path is not an array nor object. + 2. An object value does not contain the token. + 3. A token is out of range of an array value. + + Use unresolvedTokenIndex to retrieve the token index. + */ + ValueType *Get(ValueType &root, size_t *unresolvedTokenIndex = 0) const { + RAPIDJSON_ASSERT(IsValid()); + ValueType *v = &root; + for (const Token *t = tokens_; t != tokens_ + tokenCount_; ++t) { + switch (v->GetType()) { + case kObjectType: { + typename ValueType::MemberIterator m = + v->FindMember(GenericValue( + GenericStringRef(t->name, t->length))); + if (m == v->MemberEnd()) break; + v = &m->value; + } + continue; + case kArrayType: + if (t->index == kPointerInvalidIndex || t->index >= v->Size()) break; + v = &((*v)[t->index]); + continue; + default: + break; + } + + // Error: unresolved token + if (unresolvedTokenIndex) + *unresolvedTokenIndex = static_cast(t - tokens_); + return 0; + } + return v; + } + + //! Query a const value in a const subtree. + /*! + \param root Root value of a DOM sub-tree to be resolved. It can be any + value other than document root. \return Pointer to the value if it can be + resolved. Otherwise null. + */ + const ValueType *Get(const ValueType &root, + size_t *unresolvedTokenIndex = 0) const { + return Get(const_cast(root), unresolvedTokenIndex); + } + + //@} + + //!@name Query a value with default + //@{ + + //! Query a value in a subtree with default value. + /*! + Similar to Get(), but if the specified value do not exists, it creates all + parents and clone the default value. So that this function always succeed. + + \param root Root value of a DOM sub-tree to be resolved. It can be any + value other than document root. \param defaultValue Default value to be + cloned if the value was not exists. \param allocator Allocator for creating + the values if the specified value or its parents are not exist. \see + Create() + */ + ValueType &GetWithDefault( + ValueType &root, const ValueType &defaultValue, + typename ValueType::AllocatorType &allocator) const { + bool alreadyExist; + ValueType &v = Create(root, allocator, &alreadyExist); + return alreadyExist ? v : v.CopyFrom(defaultValue, allocator); + } + + //! Query a value in a subtree with default null-terminated string. + ValueType &GetWithDefault( + ValueType &root, const Ch *defaultValue, + typename ValueType::AllocatorType &allocator) const { + bool alreadyExist; + ValueType &v = Create(root, allocator, &alreadyExist); + return alreadyExist ? v : v.SetString(defaultValue, allocator); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Query a value in a subtree with default std::basic_string. + ValueType &GetWithDefault( + ValueType &root, const std::basic_string &defaultValue, + typename ValueType::AllocatorType &allocator) const { + bool alreadyExist; + ValueType &v = Create(root, allocator, &alreadyExist); + return alreadyExist ? v : v.SetString(defaultValue, allocator); + } +#endif + + //! Query a value in a subtree with default primitive value. + /*! + \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t, + \c bool + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (ValueType &)) + GetWithDefault(ValueType &root, T defaultValue, + typename ValueType::AllocatorType &allocator) const { + return GetWithDefault(root, ValueType(defaultValue).Move(), allocator); + } + + //! Query a value in a document with default value. + template + ValueType &GetWithDefault( + GenericDocument &document, + const ValueType &defaultValue) const { + return GetWithDefault(document, defaultValue, document.GetAllocator()); + } + + //! Query a value in a document with default null-terminated string. + template + ValueType &GetWithDefault( + GenericDocument &document, + const Ch *defaultValue) const { + return GetWithDefault(document, defaultValue, document.GetAllocator()); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Query a value in a document with default std::basic_string. + template + ValueType &GetWithDefault( + GenericDocument &document, + const std::basic_string &defaultValue) const { + return GetWithDefault(document, defaultValue, document.GetAllocator()); + } +#endif + + //! Query a value in a document with default primitive value. + /*! + \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t, + \c bool + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (ValueType &)) + GetWithDefault( + GenericDocument &document, + T defaultValue) const { + return GetWithDefault(document, defaultValue, document.GetAllocator()); + } + + //@} + + //!@name Set a value + //@{ + + //! Set a value in a subtree, with move semantics. + /*! + It creates all parents if they are not exist or types are different to the + tokens. So this function always succeeds but potentially remove existing + values. + + \param root Root value of a DOM sub-tree to be resolved. It can be any + value other than document root. \param value Value to be set. \param + allocator Allocator for creating the values if the specified value or its + parents are not exist. \see Create() + */ + ValueType &Set(ValueType &root, ValueType &value, + typename ValueType::AllocatorType &allocator) const { + return Create(root, allocator) = value; + } + + //! Set a value in a subtree, with copy semantics. + ValueType &Set(ValueType &root, const ValueType &value, + typename ValueType::AllocatorType &allocator) const { + return Create(root, allocator).CopyFrom(value, allocator); + } + + //! Set a null-terminated string in a subtree. + ValueType &Set(ValueType &root, const Ch *value, + typename ValueType::AllocatorType &allocator) const { + return Create(root, allocator) = ValueType(value, allocator).Move(); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Set a std::basic_string in a subtree. + ValueType &Set(ValueType &root, const std::basic_string &value, + typename ValueType::AllocatorType &allocator) const { + return Create(root, allocator) = ValueType(value, allocator).Move(); + } +#endif + + //! Set a primitive value in a subtree. + /*! + \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t, + \c bool + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (ValueType &)) + Set(ValueType &root, T value, + typename ValueType::AllocatorType &allocator) const { + return Create(root, allocator) = ValueType(value).Move(); + } + + //! Set a value in a document, with move semantics. + template + ValueType &Set( + GenericDocument &document, + ValueType &value) const { + return Create(document) = value; + } + + //! Set a value in a document, with copy semantics. + template + ValueType &Set( + GenericDocument &document, + const ValueType &value) const { + return Create(document).CopyFrom(value, document.GetAllocator()); + } + + //! Set a null-terminated string in a document. + template + ValueType &Set( + GenericDocument &document, + const Ch *value) const { + return Create(document) = ValueType(value, document.GetAllocator()).Move(); + } + +#if RAPIDJSON_HAS_STDSTRING + //! Sets a std::basic_string in a document. + template + ValueType &Set( + GenericDocument &document, + const std::basic_string &value) const { + return Create(document) = ValueType(value, document.GetAllocator()).Move(); + } +#endif + + //! Set a primitive value in a document. + /*! + \tparam T Either \ref Type, \c int, \c unsigned, \c int64_t, \c uint64_t, \c + bool + */ + template + RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (ValueType &)) + Set(GenericDocument &document, + T value) const { + return Create(document) = value; + } + + //@} + + //!@name Swap a value + //@{ + + //! Swap a value with a value in a subtree. + /*! + It creates all parents if they are not exist or types are different to the + tokens. So this function always succeeds but potentially remove existing + values. + + \param root Root value of a DOM sub-tree to be resolved. It can be any + value other than document root. \param value Value to be swapped. \param + allocator Allocator for creating the values if the specified value or its + parents are not exist. \see Create() + */ + ValueType &Swap(ValueType &root, ValueType &value, + typename ValueType::AllocatorType &allocator) const { + return Create(root, allocator).Swap(value); + } + + //! Swap a value with a value in a document. + template + ValueType &Swap( + GenericDocument &document, + ValueType &value) const { + return Create(document).Swap(value); + } + + //@} + + //! Erase a value in a subtree. + /*! + \param root Root value of a DOM sub-tree to be resolved. It can be any + value other than document root. \return Whether the resolved value is found + and erased. + + \note Erasing with an empty pointer \c Pointer(""), i.e. the root, always + fail and return false. + */ + bool Erase(ValueType &root) const { + RAPIDJSON_ASSERT(IsValid()); + if (tokenCount_ == 0) // Cannot erase the root + return false; + + ValueType *v = &root; + const Token *last = tokens_ + (tokenCount_ - 1); + for (const Token *t = tokens_; t != last; ++t) { + switch (v->GetType()) { + case kObjectType: { + typename ValueType::MemberIterator m = + v->FindMember(GenericValue( + GenericStringRef(t->name, t->length))); + if (m == v->MemberEnd()) return false; + v = &m->value; + } break; + case kArrayType: + if (t->index == kPointerInvalidIndex || t->index >= v->Size()) + return false; + v = &((*v)[t->index]); + break; + default: + return false; + } + } + + switch (v->GetType()) { + case kObjectType: + return v->EraseMember(GenericStringRef(last->name, last->length)); + case kArrayType: + if (last->index == kPointerInvalidIndex || last->index >= v->Size()) + return false; + v->Erase(v->Begin() + last->index); + return true; + default: + return false; + } + } + + private: + //! Clone the content from rhs to this. + /*! + \param rhs Source pointer. + \param extraToken Extra tokens to be allocated. + \param extraNameBufferSize Extra name buffer size (in number of Ch) to be + allocated. \return Start of non-occupied name buffer, for storing extra + names. + */ + Ch *CopyFromRaw(const GenericPointer &rhs, size_t extraToken = 0, + size_t extraNameBufferSize = 0) { + if (!allocator_) // allocator is independently owned. + ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator)(); + + size_t nameBufferSize = rhs.tokenCount_; // null terminators for tokens + for (Token *t = rhs.tokens_; t != rhs.tokens_ + rhs.tokenCount_; ++t) + nameBufferSize += t->length; + + tokenCount_ = rhs.tokenCount_ + extraToken; + tokens_ = static_cast(allocator_->Malloc( + tokenCount_ * sizeof(Token) + + (nameBufferSize + extraNameBufferSize) * sizeof(Ch))); + nameBuffer_ = reinterpret_cast(tokens_ + tokenCount_); + if (rhs.tokenCount_ > 0) { + std::memcpy(tokens_, rhs.tokens_, rhs.tokenCount_ * sizeof(Token)); + } + if (nameBufferSize > 0) { + std::memcpy(nameBuffer_, rhs.nameBuffer_, nameBufferSize * sizeof(Ch)); + } + + // Adjust pointers to name buffer + std::ptrdiff_t diff = nameBuffer_ - rhs.nameBuffer_; + for (Token *t = tokens_; t != tokens_ + rhs.tokenCount_; ++t) + t->name += diff; + + return nameBuffer_ + nameBufferSize; + } + + //! Check whether a character should be percent-encoded. + /*! + According to RFC 3986 2.3 Unreserved Characters. + \param c The character (code unit) to be tested. + */ + bool NeedPercentEncode(Ch c) const { + return !((c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z') || + (c >= 'a' && c <= 'z') || c == '-' || c == '.' || c == '_' || + c == '~'); + } + +//! Parse a JSON String or its URI fragment representation into tokens. +#ifndef __clang__ // -Wdocumentation + /*! + \param source Either a JSON Pointer string, or its URI fragment + representation. Not need to be null terminated. \param length + Length of the + source string. \note Source cannot be JSON String + Representation of JSON + Pointer, e.g. In "/\u0000", \u0000 will not be unescaped. + */ +#endif + void Parse(const Ch *source, size_t length) { + RAPIDJSON_ASSERT(source != NULL); + RAPIDJSON_ASSERT(nameBuffer_ == 0); + RAPIDJSON_ASSERT(tokens_ == 0); + + // Create own allocator if user did not supply. + if (!allocator_) ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator)(); + + // Count number of '/' as tokenCount + tokenCount_ = 0; + for (const Ch *s = source; s != source + length; s++) + if (*s == '/') tokenCount_++; + + Token *token = tokens_ = static_cast( + allocator_->Malloc(tokenCount_ * sizeof(Token) + length * sizeof(Ch))); + Ch *name = nameBuffer_ = reinterpret_cast(tokens_ + tokenCount_); + size_t i = 0; + + // Detect if it is a URI fragment + bool uriFragment = false; + if (source[i] == '#') { + uriFragment = true; + i++; + } + + if (i != length && source[i] != '/') { + parseErrorCode_ = kPointerParseErrorTokenMustBeginWithSolidus; + goto error; + } + + while (i < length) { + RAPIDJSON_ASSERT(source[i] == '/'); + i++; // consumes '/' + + token->name = name; + bool isNumber = true; + + while (i < length && source[i] != '/') { + Ch c = source[i]; + if (uriFragment) { + // Decoding percent-encoding for URI fragment + if (c == '%') { + PercentDecodeStream is(&source[i], source + length); + GenericInsituStringStream os(name); + Ch *begin = os.PutBegin(); + if (!Transcoder, EncodingType>().Validate(is, os) || + !is.IsValid()) { + parseErrorCode_ = kPointerParseErrorInvalidPercentEncoding; + goto error; + } + size_t len = os.PutEnd(begin); + i += is.Tell() - 1; + if (len == 1) + c = *name; + else { + name += len; + isNumber = false; + i++; + continue; + } + } else if (NeedPercentEncode(c)) { + parseErrorCode_ = kPointerParseErrorCharacterMustPercentEncode; + goto error; + } + } + + i++; + + // Escaping "~0" -> '~', "~1" -> '/' + if (c == '~') { + if (i < length) { + c = source[i]; + if (c == '0') + c = '~'; + else if (c == '1') + c = '/'; + else { + parseErrorCode_ = kPointerParseErrorInvalidEscape; + goto error; + } + i++; + } else { + parseErrorCode_ = kPointerParseErrorInvalidEscape; + goto error; + } + } + + // First check for index: all of characters are digit + if (c < '0' || c > '9') isNumber = false; + + *name++ = c; + } + token->length = static_cast(name - token->name); + if (token->length == 0) isNumber = false; + *name++ = '\0'; // Null terminator + + // Second check for index: more than one digit cannot have leading zero + if (isNumber && token->length > 1 && token->name[0] == '0') + isNumber = false; + + // String to SizeType conversion + SizeType n = 0; + if (isNumber) { + for (size_t j = 0; j < token->length; j++) { + SizeType m = n * 10 + static_cast(token->name[j] - '0'); + if (m < n) { // overflow detection + isNumber = false; + break; + } + n = m; + } + } + + token->index = isNumber ? n : kPointerInvalidIndex; + token++; + } + + RAPIDJSON_ASSERT(name <= + nameBuffer_ + length); // Should not overflow buffer + parseErrorCode_ = kPointerParseErrorNone; + return; + + error: + Allocator::Free(tokens_); + nameBuffer_ = 0; + tokens_ = 0; + tokenCount_ = 0; + parseErrorOffset_ = i; + return; + } + + //! Stringify to string or URI fragment representation. + /*! + \tparam uriFragment True for stringifying to URI fragment representation. + False for string representation. \tparam OutputStream type of output + stream. \param os The output stream. + */ + template + bool Stringify(OutputStream &os) const { + RAPIDJSON_ASSERT(IsValid()); + + if (uriFragment) os.Put('#'); + + for (Token *t = tokens_; t != tokens_ + tokenCount_; ++t) { + os.Put('/'); + for (size_t j = 0; j < t->length; j++) { + Ch c = t->name[j]; + if (c == '~') { + os.Put('~'); + os.Put('0'); + } else if (c == '/') { + os.Put('~'); + os.Put('1'); + } else if (uriFragment && NeedPercentEncode(c)) { + // Transcode to UTF8 sequence + GenericStringStream source( + &t->name[j]); + PercentEncodeStream target(os); + if (!Transcoder>().Validate(source, target)) + return false; + j += source.Tell() - 1; + } else + os.Put(c); + } + } + return true; + } + + //! A helper stream for decoding a percent-encoded sequence into code unit. + /*! + This stream decodes %XY triplet into code unit (0-255). + If it encounters invalid characters, it sets output code unit as 0 and + mark invalid, and to be checked by IsValid(). + */ + class PercentDecodeStream { + public: + typedef typename ValueType::Ch Ch; + + //! Constructor + /*! + \param source Start of the stream + \param end Past-the-end of the stream. + */ + PercentDecodeStream(const Ch *source, const Ch *end) + : src_(source), head_(source), end_(end), valid_(true) {} + + Ch Take() { + if (*src_ != '%' || src_ + 3 > end_) { // %XY triplet + valid_ = false; + return 0; + } + src_++; + Ch c = 0; + for (int j = 0; j < 2; j++) { + c = static_cast(c << 4); + Ch h = *src_; + if (h >= '0' && h <= '9') + c = static_cast(c + h - '0'); + else if (h >= 'A' && h <= 'F') + c = static_cast(c + h - 'A' + 10); + else if (h >= 'a' && h <= 'f') + c = static_cast(c + h - 'a' + 10); + else { + valid_ = false; + return 0; + } + src_++; + } + return c; + } + + size_t Tell() const { return static_cast(src_ - head_); } + bool IsValid() const { return valid_; } + + private: + const Ch *src_; //!< Current read position. + const Ch *head_; //!< Original head of the string. + const Ch *end_; //!< Past-the-end position. + bool valid_; //!< Whether the parsing is valid. + }; + + //! A helper stream to encode character (UTF-8 code unit) into percent-encoded + //! sequence. + template + class PercentEncodeStream { + public: + PercentEncodeStream(OutputStream &os) : os_(os) {} + void Put(char c) { // UTF-8 must be byte + unsigned char u = static_cast(c); + static const char hexDigits[16] = {'0', '1', '2', '3', '4', '5', + '6', '7', '8', '9', 'A', 'B', + 'C', 'D', 'E', 'F'}; + os_.Put('%'); + os_.Put(static_cast(hexDigits[u >> 4])); + os_.Put(static_cast(hexDigits[u & 15])); + } + + private: + OutputStream &os_; + }; + + Allocator *allocator_; //!< The current allocator. It is either user-supplied + //!< or equal to ownAllocator_. + Allocator *ownAllocator_; //!< Allocator owned by this Pointer. + Ch *nameBuffer_; //!< A buffer containing all names in tokens. + Token *tokens_; //!< A list of tokens. + size_t tokenCount_; //!< Number of tokens in tokens_. + size_t parseErrorOffset_; //!< Offset in code unit when parsing fail. + PointerParseErrorCode parseErrorCode_; //!< Parsing error code. +}; + +//! GenericPointer for Value (UTF-8, default allocator). +typedef GenericPointer Pointer; + +//!@name Helper functions for GenericPointer +//@{ + +////////////////////////////////////////////////////////////////////////////// + +template +typename T::ValueType &CreateValueByPointer( + T &root, const GenericPointer &pointer, + typename T::AllocatorType &a) { + return pointer.Create(root, a); +} + +template +typename T::ValueType &CreateValueByPointer(T &root, + const CharType (&source)[N], + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1).Create(root, a); +} + +// No allocator parameter + +template +typename DocumentType::ValueType &CreateValueByPointer( + DocumentType &document, + const GenericPointer &pointer) { + return pointer.Create(document); +} + +template +typename DocumentType::ValueType &CreateValueByPointer( + DocumentType &document, const CharType (&source)[N]) { + return GenericPointer(source, N - 1) + .Create(document); +} + +////////////////////////////////////////////////////////////////////////////// + +template +typename T::ValueType *GetValueByPointer( + T &root, const GenericPointer &pointer, + size_t *unresolvedTokenIndex = 0) { + return pointer.Get(root, unresolvedTokenIndex); +} + +template +const typename T::ValueType *GetValueByPointer( + const T &root, const GenericPointer &pointer, + size_t *unresolvedTokenIndex = 0) { + return pointer.Get(root, unresolvedTokenIndex); +} + +template +typename T::ValueType *GetValueByPointer(T &root, const CharType (&source)[N], + size_t *unresolvedTokenIndex = 0) { + return GenericPointer(source, N - 1) + .Get(root, unresolvedTokenIndex); +} + +template +const typename T::ValueType *GetValueByPointer( + const T &root, const CharType (&source)[N], + size_t *unresolvedTokenIndex = 0) { + return GenericPointer(source, N - 1) + .Get(root, unresolvedTokenIndex); +} + +////////////////////////////////////////////////////////////////////////////// + +template +typename T::ValueType &GetValueByPointerWithDefault( + T &root, const GenericPointer &pointer, + const typename T::ValueType &defaultValue, typename T::AllocatorType &a) { + return pointer.GetWithDefault(root, defaultValue, a); +} + +template +typename T::ValueType &GetValueByPointerWithDefault( + T &root, const GenericPointer &pointer, + const typename T::Ch *defaultValue, typename T::AllocatorType &a) { + return pointer.GetWithDefault(root, defaultValue, a); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename T::ValueType &GetValueByPointerWithDefault( + T &root, const GenericPointer &pointer, + const std::basic_string &defaultValue, + typename T::AllocatorType &a) { + return pointer.GetWithDefault(root, defaultValue, a); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename T::ValueType &)) +GetValueByPointerWithDefault( + T &root, const GenericPointer &pointer, + T2 defaultValue, typename T::AllocatorType &a) { + return pointer.GetWithDefault(root, defaultValue, a); +} + +template +typename T::ValueType &GetValueByPointerWithDefault( + T &root, const CharType (&source)[N], + const typename T::ValueType &defaultValue, typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .GetWithDefault(root, defaultValue, a); +} + +template +typename T::ValueType &GetValueByPointerWithDefault( + T &root, const CharType (&source)[N], const typename T::Ch *defaultValue, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .GetWithDefault(root, defaultValue, a); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename T::ValueType &GetValueByPointerWithDefault( + T &root, const CharType (&source)[N], + const std::basic_string &defaultValue, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .GetWithDefault(root, defaultValue, a); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename T::ValueType &)) +GetValueByPointerWithDefault(T &root, const CharType (&source)[N], + T2 defaultValue, typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .GetWithDefault(root, defaultValue, a); +} + +// No allocator parameter + +template +typename DocumentType::ValueType &GetValueByPointerWithDefault( + DocumentType &document, + const GenericPointer &pointer, + const typename DocumentType::ValueType &defaultValue) { + return pointer.GetWithDefault(document, defaultValue); +} + +template +typename DocumentType::ValueType &GetValueByPointerWithDefault( + DocumentType &document, + const GenericPointer &pointer, + const typename DocumentType::Ch *defaultValue) { + return pointer.GetWithDefault(document, defaultValue); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename DocumentType::ValueType &GetValueByPointerWithDefault( + DocumentType &document, + const GenericPointer &pointer, + const std::basic_string &defaultValue) { + return pointer.GetWithDefault(document, defaultValue); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename DocumentType::ValueType &)) +GetValueByPointerWithDefault( + DocumentType &document, + const GenericPointer &pointer, + T2 defaultValue) { + return pointer.GetWithDefault(document, defaultValue); +} + +template +typename DocumentType::ValueType &GetValueByPointerWithDefault( + DocumentType &document, const CharType (&source)[N], + const typename DocumentType::ValueType &defaultValue) { + return GenericPointer(source, N - 1) + .GetWithDefault(document, defaultValue); +} + +template +typename DocumentType::ValueType &GetValueByPointerWithDefault( + DocumentType &document, const CharType (&source)[N], + const typename DocumentType::Ch *defaultValue) { + return GenericPointer(source, N - 1) + .GetWithDefault(document, defaultValue); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename DocumentType::ValueType &GetValueByPointerWithDefault( + DocumentType &document, const CharType (&source)[N], + const std::basic_string &defaultValue) { + return GenericPointer(source, N - 1) + .GetWithDefault(document, defaultValue); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename DocumentType::ValueType &)) +GetValueByPointerWithDefault(DocumentType &document, + const CharType (&source)[N], T2 defaultValue) { + return GenericPointer(source, N - 1) + .GetWithDefault(document, defaultValue); +} + +////////////////////////////////////////////////////////////////////////////// + +template +typename T::ValueType &SetValueByPointer( + T &root, const GenericPointer &pointer, + typename T::ValueType &value, typename T::AllocatorType &a) { + return pointer.Set(root, value, a); +} + +template +typename T::ValueType &SetValueByPointer( + T &root, const GenericPointer &pointer, + const typename T::ValueType &value, typename T::AllocatorType &a) { + return pointer.Set(root, value, a); +} + +template +typename T::ValueType &SetValueByPointer( + T &root, const GenericPointer &pointer, + const typename T::Ch *value, typename T::AllocatorType &a) { + return pointer.Set(root, value, a); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename T::ValueType &SetValueByPointer( + T &root, const GenericPointer &pointer, + const std::basic_string &value, + typename T::AllocatorType &a) { + return pointer.Set(root, value, a); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename T::ValueType &)) +SetValueByPointer(T &root, const GenericPointer &pointer, + T2 value, typename T::AllocatorType &a) { + return pointer.Set(root, value, a); +} + +template +typename T::ValueType &SetValueByPointer(T &root, const CharType (&source)[N], + typename T::ValueType &value, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .Set(root, value, a); +} + +template +typename T::ValueType &SetValueByPointer(T &root, const CharType (&source)[N], + const typename T::ValueType &value, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .Set(root, value, a); +} + +template +typename T::ValueType &SetValueByPointer(T &root, const CharType (&source)[N], + const typename T::Ch *value, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .Set(root, value, a); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename T::ValueType &SetValueByPointer( + T &root, const CharType (&source)[N], + const std::basic_string &value, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .Set(root, value, a); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename T::ValueType &)) +SetValueByPointer(T &root, const CharType (&source)[N], T2 value, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .Set(root, value, a); +} + +// No allocator parameter + +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, + const GenericPointer &pointer, + typename DocumentType::ValueType &value) { + return pointer.Set(document, value); +} + +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, + const GenericPointer &pointer, + const typename DocumentType::ValueType &value) { + return pointer.Set(document, value); +} + +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, + const GenericPointer &pointer, + const typename DocumentType::Ch *value) { + return pointer.Set(document, value); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, + const GenericPointer &pointer, + const std::basic_string &value) { + return pointer.Set(document, value); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename DocumentType::ValueType &)) +SetValueByPointer( + DocumentType &document, + const GenericPointer &pointer, T2 value) { + return pointer.Set(document, value); +} + +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, const CharType (&source)[N], + typename DocumentType::ValueType &value) { + return GenericPointer(source, N - 1) + .Set(document, value); +} + +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, const CharType (&source)[N], + const typename DocumentType::ValueType &value) { + return GenericPointer(source, N - 1) + .Set(document, value); +} + +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, const CharType (&source)[N], + const typename DocumentType::Ch *value) { + return GenericPointer(source, N - 1) + .Set(document, value); +} + +#if RAPIDJSON_HAS_STDSTRING +template +typename DocumentType::ValueType &SetValueByPointer( + DocumentType &document, const CharType (&source)[N], + const std::basic_string &value) { + return GenericPointer(source, N - 1) + .Set(document, value); +} +#endif + +template +RAPIDJSON_DISABLEIF_RETURN( + (internal::OrExpr, internal::IsGenericValue>), + (typename DocumentType::ValueType &)) +SetValueByPointer(DocumentType &document, const CharType (&source)[N], + T2 value) { + return GenericPointer(source, N - 1) + .Set(document, value); +} + +////////////////////////////////////////////////////////////////////////////// + +template +typename T::ValueType &SwapValueByPointer( + T &root, const GenericPointer &pointer, + typename T::ValueType &value, typename T::AllocatorType &a) { + return pointer.Swap(root, value, a); +} + +template +typename T::ValueType &SwapValueByPointer(T &root, const CharType (&source)[N], + typename T::ValueType &value, + typename T::AllocatorType &a) { + return GenericPointer(source, N - 1) + .Swap(root, value, a); +} + +template +typename DocumentType::ValueType &SwapValueByPointer( + DocumentType &document, + const GenericPointer &pointer, + typename DocumentType::ValueType &value) { + return pointer.Swap(document, value); +} + +template +typename DocumentType::ValueType &SwapValueByPointer( + DocumentType &document, const CharType (&source)[N], + typename DocumentType::ValueType &value) { + return GenericPointer(source, N - 1) + .Swap(document, value); +} + +////////////////////////////////////////////////////////////////////////////// + +template +bool EraseValueByPointer(T &root, + const GenericPointer &pointer) { + return pointer.Erase(root); +} + +template +bool EraseValueByPointer(T &root, const CharType (&source)[N]) { + return GenericPointer(source, N - 1).Erase(root); +} + +//@} + +RAPIDJSON_NAMESPACE_END + +#if defined(__clang__) || defined(_MSC_VER) +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_POINTER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/prettywriter.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/prettywriter.h new file mode 100644 index 0000000..f24bd0f --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/prettywriter.h @@ -0,0 +1,333 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_PRETTYWRITER_H_ +#define RAPIDJSON_PRETTYWRITER_H_ + +#include "writer.h" + +#ifdef __GNUC__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +#endif + +#if defined(__clang__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(c++ 98 - compat) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Combination of PrettyWriter format flags. +/*! \see PrettyWriter::SetFormatOptions + */ +enum PrettyFormatOptions { + kFormatDefault = 0, //!< Default pretty formatting. + kFormatSingleLineArray = 1 //!< Format arrays on a single line. +}; + +//! Writer with indentation and spacing. +/*! + \tparam OutputStream Type of output os. + \tparam SourceEncoding Encoding of source string. + \tparam TargetEncoding Encoding of output stream. + \tparam StackAllocator Type of allocator for allocating memory of stack. +*/ +template , + typename TargetEncoding = UTF8<>, + typename StackAllocator = CrtAllocator, + unsigned writeFlags = kWriteDefaultFlags> +class PrettyWriter : public Writer { + public: + typedef Writer + Base; + typedef typename Base::Ch Ch; + + //! Constructor + /*! \param os Output stream. + \param allocator User supplied allocator. If it is null, it will create a + private one. \param levelDepth Initial capacity of stack. + */ + explicit PrettyWriter(OutputStream &os, StackAllocator *allocator = 0, + size_t levelDepth = Base::kDefaultLevelDepth) + : Base(os, allocator, levelDepth), + indentChar_(' '), + indentCharCount_(4), + formatOptions_(kFormatDefault) {} + + explicit PrettyWriter(StackAllocator *allocator = 0, + size_t levelDepth = Base::kDefaultLevelDepth) + : Base(allocator, levelDepth), indentChar_(' '), indentCharCount_(4) {} + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + PrettyWriter(PrettyWriter &&rhs) + : Base(std::forward(rhs)), + indentChar_(rhs.indentChar_), + indentCharCount_(rhs.indentCharCount_), + formatOptions_(rhs.formatOptions_) {} +#endif + + //! Set custom indentation. + /*! \param indentChar Character for indentation. Must be whitespace + character (' ', '\\t', '\\n', '\\r'). \param indentCharCount Number of + indent characters for each indentation level. \note The default indentation + is 4 spaces. + */ + PrettyWriter &SetIndent(Ch indentChar, unsigned indentCharCount) { + RAPIDJSON_ASSERT(indentChar == ' ' || indentChar == '\t' || + indentChar == '\n' || indentChar == '\r'); + indentChar_ = indentChar; + indentCharCount_ = indentCharCount; + return *this; + } + + //! Set pretty writer formatting options. + /*! \param options Formatting options. + */ + PrettyWriter &SetFormatOptions(PrettyFormatOptions options) { + formatOptions_ = options; + return *this; + } + + /*! @name Implementation of Handler + \see Handler + */ + //@{ + + bool Null() { + PrettyPrefix(kNullType); + return Base::EndValue(Base::WriteNull()); + } + bool Bool(bool b) { + PrettyPrefix(b ? kTrueType : kFalseType); + return Base::EndValue(Base::WriteBool(b)); + } + bool Int(int i) { + PrettyPrefix(kNumberType); + return Base::EndValue(Base::WriteInt(i)); + } + bool Uint(unsigned u) { + PrettyPrefix(kNumberType); + return Base::EndValue(Base::WriteUint(u)); + } + bool Int64(int64_t i64) { + PrettyPrefix(kNumberType); + return Base::EndValue(Base::WriteInt64(i64)); + } + bool Uint64(uint64_t u64) { + PrettyPrefix(kNumberType); + return Base::EndValue(Base::WriteUint64(u64)); + } + bool Double(double d) { + PrettyPrefix(kNumberType); + return Base::EndValue(Base::WriteDouble(d)); + } + + bool RawNumber(const Ch *str, SizeType length, bool copy = false) { + RAPIDJSON_ASSERT(str != 0); + (void)copy; + PrettyPrefix(kNumberType); + return Base::EndValue(Base::WriteString(str, length)); + } + + bool String(const Ch *str, SizeType length, bool copy = false) { + RAPIDJSON_ASSERT(str != 0); + (void)copy; + PrettyPrefix(kStringType); + return Base::EndValue(Base::WriteString(str, length)); + } + +#if RAPIDJSON_HAS_STDSTRING + bool String(const std::basic_string &str) { + return String(str.data(), SizeType(str.size())); + } +#endif + + bool StartObject() { + PrettyPrefix(kObjectType); + new (Base::level_stack_.template Push()) + typename Base::Level(false); + return Base::WriteStartObject(); + } + + bool Key(const Ch *str, SizeType length, bool copy = false) { + return String(str, length, copy); + } + +#if RAPIDJSON_HAS_STDSTRING + bool Key(const std::basic_string &str) { + return Key(str.data(), SizeType(str.size())); + } +#endif + + bool EndObject(SizeType memberCount = 0) { + (void)memberCount; + RAPIDJSON_ASSERT(Base::level_stack_.GetSize() >= + sizeof(typename Base::Level)); // not inside an Object + RAPIDJSON_ASSERT(!Base::level_stack_.template Top() + ->inArray); // currently inside an Array, not Object + RAPIDJSON_ASSERT( + 0 == + Base::level_stack_.template Top()->valueCount % + 2); // Object has a Key without a Value + + bool empty = + Base::level_stack_.template Pop(1)->valueCount == + 0; + + if (!empty) { + Base::os_->Put('\n'); + WriteIndent(); + } + bool ret = Base::EndValue(Base::WriteEndObject()); + (void)ret; + RAPIDJSON_ASSERT(ret == true); + if (Base::level_stack_.Empty()) // end of json text + Base::Flush(); + return true; + } + + bool StartArray() { + PrettyPrefix(kArrayType); + new (Base::level_stack_.template Push()) + typename Base::Level(true); + return Base::WriteStartArray(); + } + + bool EndArray(SizeType memberCount = 0) { + (void)memberCount; + RAPIDJSON_ASSERT(Base::level_stack_.GetSize() >= + sizeof(typename Base::Level)); + RAPIDJSON_ASSERT( + Base::level_stack_.template Top()->inArray); + bool empty = + Base::level_stack_.template Pop(1)->valueCount == + 0; + + if (!empty && !(formatOptions_ & kFormatSingleLineArray)) { + Base::os_->Put('\n'); + WriteIndent(); + } + bool ret = Base::EndValue(Base::WriteEndArray()); + (void)ret; + RAPIDJSON_ASSERT(ret == true); + if (Base::level_stack_.Empty()) // end of json text + Base::Flush(); + return true; + } + + //@} + + /*! @name Convenience extensions */ + //@{ + + //! Simpler but slower overload. + bool String(const Ch *str) { return String(str, internal::StrLen(str)); } + bool Key(const Ch *str) { return Key(str, internal::StrLen(str)); } + + //@} + + //! Write a raw JSON value. + /*! + For user to write a stringified JSON as a value. + + \param json A well-formed JSON value. It should not contain null character + within [0, length - 1] range. \param length Length of the json. \param type + Type of the root of json. \note When using PrettyWriter::RawValue(), the + result json may not be indented correctly. + */ + bool RawValue(const Ch *json, size_t length, Type type) { + RAPIDJSON_ASSERT(json != 0); + PrettyPrefix(type); + return Base::EndValue(Base::WriteRawValue(json, length)); + } + + protected: + void PrettyPrefix(Type type) { + (void)type; + if (Base::level_stack_.GetSize() != 0) { // this value is not at root + typename Base::Level *level = + Base::level_stack_.template Top(); + + if (level->inArray) { + if (level->valueCount > 0) { + Base::os_->Put( + ','); // add comma if it is not the first element in array + if (formatOptions_ & kFormatSingleLineArray) Base::os_->Put(' '); + } + + if (!(formatOptions_ & kFormatSingleLineArray)) { + Base::os_->Put('\n'); + WriteIndent(); + } + } else { // in object + if (level->valueCount > 0) { + if (level->valueCount % 2 == 0) { + Base::os_->Put(','); + Base::os_->Put('\n'); + } else { + Base::os_->Put(':'); + Base::os_->Put(' '); + } + } else + Base::os_->Put('\n'); + + if (level->valueCount % 2 == 0) WriteIndent(); + } + if (!level->inArray && level->valueCount % 2 == 0) + RAPIDJSON_ASSERT(type == kStringType); // if it's in object, then even + // number should be a name + level->valueCount++; + } else { + RAPIDJSON_ASSERT( + !Base::hasRoot_); // Should only has one and only one root. + Base::hasRoot_ = true; + } + } + + void WriteIndent() { + size_t count = + (Base::level_stack_.GetSize() / sizeof(typename Base::Level)) * + indentCharCount_; + PutN(*Base::os_, static_cast(indentChar_), + count); + } + + Ch indentChar_; + unsigned indentCharCount_; + PrettyFormatOptions formatOptions_; + + private: + // Prohibit copy constructor & assignment operator. + PrettyWriter(const PrettyWriter &); + PrettyWriter &operator=(const PrettyWriter &); +}; + +RAPIDJSON_NAMESPACE_END + +#if defined(__clang__) +RAPIDJSON_DIAG_POP +#endif + +#ifdef __GNUC__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_RAPIDJSON_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/rapidjson.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/rapidjson.h new file mode 100644 index 0000000..7af85e8 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/rapidjson.h @@ -0,0 +1,719 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_RAPIDJSON_H_ +#define RAPIDJSON_RAPIDJSON_H_ + +/*!\file rapidjson.h + \brief common definitions and configuration + + \see RAPIDJSON_CONFIG + */ + +/*! \defgroup RAPIDJSON_CONFIG RapidJSON configuration + \brief Configuration macros for library features + + Some RapidJSON features are configurable to adapt the library to a wide + variety of platforms, environments and usage scenarios. Most of the + features can be configured in terms of overridden or predefined + preprocessor macros at compile-time. + + Some additional customization is available in the \ref RAPIDJSON_ERRORS + APIs. + + \note These macros should be given on the compiler command-line + (where applicable) to avoid inconsistent values when compiling + different translation units of a single application. + */ + +#include // malloc(), realloc(), free(), size_t +#include // memset(), memcpy(), memmove(), memcmp() + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_VERSION_STRING +// +// ALWAYS synchronize the following 3 macros with corresponding variables in +// /CMakeLists.txt. +// + +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN +// token stringification +#define RAPIDJSON_STRINGIFY(x) RAPIDJSON_DO_STRINGIFY(x) +#define RAPIDJSON_DO_STRINGIFY(x) #x + +// token concatenation +#define RAPIDJSON_JOIN(X, Y) RAPIDJSON_DO_JOIN(X, Y) +#define RAPIDJSON_DO_JOIN(X, Y) RAPIDJSON_DO_JOIN2(X, Y) +#define RAPIDJSON_DO_JOIN2(X, Y) X##Y +//!@endcond + +/*! \def RAPIDJSON_MAJOR_VERSION + \ingroup RAPIDJSON_CONFIG + \brief Major version of RapidJSON in integer. +*/ +/*! \def RAPIDJSON_MINOR_VERSION + \ingroup RAPIDJSON_CONFIG + \brief Minor version of RapidJSON in integer. +*/ +/*! \def RAPIDJSON_PATCH_VERSION + \ingroup RAPIDJSON_CONFIG + \brief Patch version of RapidJSON in integer. +*/ +/*! \def RAPIDJSON_VERSION_STRING + \ingroup RAPIDJSON_CONFIG + \brief Version of RapidJSON in ".." string format. +*/ +#define RAPIDJSON_MAJOR_VERSION 1 +#define RAPIDJSON_MINOR_VERSION 1 +#define RAPIDJSON_PATCH_VERSION 0 +#define RAPIDJSON_VERSION_STRING \ + RAPIDJSON_STRINGIFY( \ + RAPIDJSON_MAJOR_VERSION.RAPIDJSON_MINOR_VERSION.RAPIDJSON_PATCH_VERSION) + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_NAMESPACE_(BEGIN|END) +/*! \def RAPIDJSON_NAMESPACE + \ingroup RAPIDJSON_CONFIG + \brief provide custom rapidjson namespace + + In order to avoid symbol clashes and/or "One Definition Rule" errors + between multiple inclusions of (different versions of) RapidJSON in + a single binary, users can customize the name of the main RapidJSON + namespace. + + In case of a single nesting level, defining \c RAPIDJSON_NAMESPACE + to a custom name (e.g. \c MyRapidJSON) is sufficient. If multiple + levels are needed, both \ref RAPIDJSON_NAMESPACE_BEGIN and \ref + RAPIDJSON_NAMESPACE_END need to be defined as well: + + \code + // in some .cpp file + #define RAPIDJSON_NAMESPACE my::rapidjson + #define RAPIDJSON_NAMESPACE_BEGIN namespace my { namespace rapidjson { + #define RAPIDJSON_NAMESPACE_END } } + #include "rapidjson/..." + \endcode + + \see rapidjson + */ +/*! \def RAPIDJSON_NAMESPACE_BEGIN + \ingroup RAPIDJSON_CONFIG + \brief provide custom rapidjson namespace (opening expression) + \see RAPIDJSON_NAMESPACE +*/ +/*! \def RAPIDJSON_NAMESPACE_END + \ingroup RAPIDJSON_CONFIG + \brief provide custom rapidjson namespace (closing expression) + \see RAPIDJSON_NAMESPACE +*/ +#ifndef RAPIDJSON_NAMESPACE +#define RAPIDJSON_NAMESPACE rapidjson +#endif +#ifndef RAPIDJSON_NAMESPACE_BEGIN +#define RAPIDJSON_NAMESPACE_BEGIN namespace RAPIDJSON_NAMESPACE { +#endif +#ifndef RAPIDJSON_NAMESPACE_END +#define RAPIDJSON_NAMESPACE_END } +#endif + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_HAS_STDSTRING + +#ifndef RAPIDJSON_HAS_STDSTRING +#ifdef RAPIDJSON_DOXYGEN_RUNNING +#define RAPIDJSON_HAS_STDSTRING 1 // force generation of documentation +#else +#define RAPIDJSON_HAS_STDSTRING 0 // no std::string support by default +#endif +/*! \def RAPIDJSON_HAS_STDSTRING + \ingroup RAPIDJSON_CONFIG + \brief Enable RapidJSON support for \c std::string + + By defining this preprocessor symbol to \c 1, several convenience functions + for using \ref rapidjson::GenericValue with \c std::string are enabled, + especially for construction and comparison. + + \hideinitializer +*/ +#endif // !defined(RAPIDJSON_HAS_STDSTRING) + +#if RAPIDJSON_HAS_STDSTRING +#include +#endif // RAPIDJSON_HAS_STDSTRING + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_NO_INT64DEFINE + +/*! \def RAPIDJSON_NO_INT64DEFINE + \ingroup RAPIDJSON_CONFIG + \brief Use external 64-bit integer types. + + RapidJSON requires the 64-bit integer types \c int64_t and \c uint64_t + types to be available at global scope. + + If users have their own definition, define RAPIDJSON_NO_INT64DEFINE to + prevent RapidJSON from defining its own types. +*/ +#ifndef RAPIDJSON_NO_INT64DEFINE +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN +#if defined(_MSC_VER) && (_MSC_VER < 1800) // Visual Studio 2013 +#include "msinttypes/inttypes.h" +#include "msinttypes/stdint.h" +#else +// Other compilers should have this. +#include +#include +#endif +//!@endcond +#ifdef RAPIDJSON_DOXYGEN_RUNNING +#define RAPIDJSON_NO_INT64DEFINE +#endif +#endif // RAPIDJSON_NO_INT64TYPEDEF + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_FORCEINLINE + +#ifndef RAPIDJSON_FORCEINLINE +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN +#if defined(_MSC_VER) && defined(NDEBUG) +#define RAPIDJSON_FORCEINLINE __forceinline +#elif defined(__GNUC__) && __GNUC__ >= 4 && defined(NDEBUG) +#define RAPIDJSON_FORCEINLINE __attribute__((always_inline)) +#else +#define RAPIDJSON_FORCEINLINE +#endif +//!@endcond +#endif // RAPIDJSON_FORCEINLINE + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_ENDIAN +#define RAPIDJSON_LITTLEENDIAN 0 //!< Little endian machine +#define RAPIDJSON_BIGENDIAN 1 //!< Big endian machine + +//! Endianness of the machine. +/*! + \def RAPIDJSON_ENDIAN + \ingroup RAPIDJSON_CONFIG + + GCC 4.6 provided macro for detecting endianness of the target machine. But + other compilers may not have this. User can define RAPIDJSON_ENDIAN to either + \ref RAPIDJSON_LITTLEENDIAN or \ref RAPIDJSON_BIGENDIAN. + + Default detection implemented with reference to + \li + https://gcc.gnu.org/onlinedocs/gcc-4.6.0/cpp/Common-Predefined-Macros.html + \li http://www.boost.org/doc/libs/1_42_0/boost/detail/endian.hpp +*/ +#ifndef RAPIDJSON_ENDIAN +// Detect with GCC 4.6's macro +#ifdef __BYTE_ORDER__ +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ +#define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN +#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ +#define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN +#else +# error Unknown machine endianness detected. User needs to define RAPIDJSON_ENDIAN. +#endif // __BYTE_ORDER__ +// Detect with GLIBC's endian.h +#elif defined(__GLIBC__) +#include +#if (__BYTE_ORDER == __LITTLE_ENDIAN) +#define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN +#elif (__BYTE_ORDER == __BIG_ENDIAN) +#define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN +#else +# error Unknown machine endianness detected. User needs to define RAPIDJSON_ENDIAN. +#endif // __GLIBC__ +// Detect with _LITTLE_ENDIAN and _BIG_ENDIAN macro +#elif defined(_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN) +#define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN +#elif defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN) +#define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN +// Detect with architecture macros +#elif defined(__sparc) || defined(__sparc__) || defined(_POWER) || \ + defined(__powerpc__) || defined(__ppc__) || defined(__hpux) || \ + defined(__hppa) || defined(_MIPSEB) || defined(_POWER) || \ + defined(__s390__) +#define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN +#elif defined(__i386__) || defined(__alpha__) || defined(__ia64) || \ + defined(__ia64__) || defined(_M_IX86) || defined(_M_IA64) || \ + defined(_M_ALPHA) || defined(__amd64) || defined(__amd64__) || \ + defined(_M_AMD64) || defined(__x86_64) || defined(__x86_64__) || \ + defined(_M_X64) || defined(__bfin__) +#define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN +#elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64)) +#define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN +#elif defined(RAPIDJSON_DOXYGEN_RUNNING) +#define RAPIDJSON_ENDIAN +#else +# error Unknown machine endianness detected. User needs to define RAPIDJSON_ENDIAN. +#endif +#endif // RAPIDJSON_ENDIAN + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_64BIT + +//! Whether using 64-bit architecture +#ifndef RAPIDJSON_64BIT +#if defined(__LP64__) || (defined(__x86_64__) && defined(__ILP32__)) || \ + defined(_WIN64) || defined(__EMSCRIPTEN__) +#define RAPIDJSON_64BIT 1 +#else +#define RAPIDJSON_64BIT 0 +#endif +#endif // RAPIDJSON_64BIT + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_ALIGN + +//! Data alignment of the machine. +/*! \ingroup RAPIDJSON_CONFIG + \param x pointer to align + + Some machines require strict data alignment. The default is 8 bytes. + User can customize by defining the RAPIDJSON_ALIGN function macro. +*/ +#ifndef RAPIDJSON_ALIGN +#define RAPIDJSON_ALIGN(x) \ + (((x) + static_cast(7u)) & ~static_cast(7u)) +#endif + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_UINT64_C2 + +//! Construct a 64-bit literal by a pair of 32-bit integer. +/*! + 64-bit literal with or without ULL suffix is prone to compiler warnings. + UINT64_C() is C macro which cause compilation problems. + Use this macro to define 64-bit constants by a pair of 32-bit integer. +*/ +#ifndef RAPIDJSON_UINT64_C2 +#define RAPIDJSON_UINT64_C2(high32, low32) \ + ((static_cast(high32) << 32) | static_cast(low32)) +#endif + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_48BITPOINTER_OPTIMIZATION + +//! Use only lower 48-bit address for some pointers. +/*! + \ingroup RAPIDJSON_CONFIG + + This optimization uses the fact that current X86-64 architecture only + implement lower 48-bit virtual address. The higher 16-bit can be used for + storing other data. \c GenericValue uses this optimization to reduce its size + form 24 bytes to 16 bytes in 64-bit architecture. +*/ +#ifndef RAPIDJSON_48BITPOINTER_OPTIMIZATION +#if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || \ + defined(__x86_64) || defined(_M_X64) || defined(_M_AMD64) +#define RAPIDJSON_48BITPOINTER_OPTIMIZATION 1 +#else +#define RAPIDJSON_48BITPOINTER_OPTIMIZATION 0 +#endif +#endif // RAPIDJSON_48BITPOINTER_OPTIMIZATION + +#if RAPIDJSON_48BITPOINTER_OPTIMIZATION == 1 +#if RAPIDJSON_64BIT != 1 +#error RAPIDJSON_48BITPOINTER_OPTIMIZATION can only be set to 1 when RAPIDJSON_64BIT=1 +#endif +#define RAPIDJSON_SETPOINTER(type, p, x) \ + (p = reinterpret_cast( \ + (reinterpret_cast(p) & \ + static_cast(RAPIDJSON_UINT64_C2(0xFFFF0000, 0x00000000))) | \ + reinterpret_cast(reinterpret_cast(x)))) +#define RAPIDJSON_GETPOINTER(type, p) \ + (reinterpret_cast( \ + reinterpret_cast(p) & \ + static_cast(RAPIDJSON_UINT64_C2(0x0000FFFF, 0xFFFFFFFF)))) +#else +#define RAPIDJSON_SETPOINTER(type, p, x) (p = (x)) +#define RAPIDJSON_GETPOINTER(type, p) (p) +#endif + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_SSE2/RAPIDJSON_SSE42/RAPIDJSON_NEON/RAPIDJSON_SIMD + +/*! \def RAPIDJSON_SIMD + \ingroup RAPIDJSON_CONFIG + \brief Enable SSE2/SSE4.2/Neon optimization. + + RapidJSON supports optimized implementations for some parsing operations + based on the SSE2, SSE4.2 or NEon SIMD extensions on modern Intel + or ARM compatible processors. + + To enable these optimizations, three different symbols can be defined; + \code + // Enable SSE2 optimization. + #define RAPIDJSON_SSE2 + + // Enable SSE4.2 optimization. + #define RAPIDJSON_SSE42 + \endcode + + // Enable ARM Neon optimization. + #define RAPIDJSON_NEON + \endcode + + \c RAPIDJSON_SSE42 takes precedence over SSE2, if both are defined. + + If any of these symbols is defined, RapidJSON defines the macro + \c RAPIDJSON_SIMD to indicate the availability of the optimized code. +*/ +#if defined(RAPIDJSON_SSE2) || defined(RAPIDJSON_SSE42) || \ + defined(RAPIDJSON_NEON) || defined(RAPIDJSON_DOXYGEN_RUNNING) +#define RAPIDJSON_SIMD +#endif + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_NO_SIZETYPEDEFINE + +#ifndef RAPIDJSON_NO_SIZETYPEDEFINE +/*! \def RAPIDJSON_NO_SIZETYPEDEFINE + \ingroup RAPIDJSON_CONFIG + \brief User-provided \c SizeType definition. + + In order to avoid using 32-bit size types for indexing strings and arrays, + define this preprocessor symbol and provide the type rapidjson::SizeType + before including RapidJSON: + \code + #define RAPIDJSON_NO_SIZETYPEDEFINE + namespace rapidjson { typedef ::std::size_t SizeType; } + #include "rapidjson/..." + \endcode + + \see rapidjson::SizeType +*/ +#ifdef RAPIDJSON_DOXYGEN_RUNNING +#define RAPIDJSON_NO_SIZETYPEDEFINE +#endif +RAPIDJSON_NAMESPACE_BEGIN +//! Size type (for string lengths, array sizes, etc.) +/*! RapidJSON uses 32-bit array/string indices even on 64-bit platforms, + instead of using \c size_t. Users may override the SizeType by defining + \ref RAPIDJSON_NO_SIZETYPEDEFINE. +*/ +typedef unsigned SizeType; +RAPIDJSON_NAMESPACE_END +#endif + +// always import std::size_t to rapidjson namespace +RAPIDJSON_NAMESPACE_BEGIN +using std::size_t; +RAPIDJSON_NAMESPACE_END + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_ASSERT + +//! Assertion. +/*! \ingroup RAPIDJSON_CONFIG + By default, rapidjson uses C \c assert() for internal assertions. + User can override it by defining RAPIDJSON_ASSERT(x) macro. + + \note Parsing errors are handled and can be customized by the + \ref RAPIDJSON_ERRORS APIs. +*/ +#ifndef RAPIDJSON_ASSERT +#include +#define RAPIDJSON_ASSERT(x) assert(x) +#endif // RAPIDJSON_ASSERT + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_STATIC_ASSERT + +// Prefer C++11 static_assert, if available +#ifndef RAPIDJSON_STATIC_ASSERT +#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1800) +#define RAPIDJSON_STATIC_ASSERT(x) static_assert(x, RAPIDJSON_STRINGIFY(x)) +#endif // C++11 +#endif // RAPIDJSON_STATIC_ASSERT + +// Adopt C++03 implementation from boost +#ifndef RAPIDJSON_STATIC_ASSERT +#ifndef __clang__ +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN +#endif +RAPIDJSON_NAMESPACE_BEGIN +template +struct STATIC_ASSERTION_FAILURE; +template <> +struct STATIC_ASSERTION_FAILURE { + enum { value = 1 }; +}; +template +struct StaticAssertTest {}; +RAPIDJSON_NAMESPACE_END + +#if defined(__GNUC__) || defined(__clang__) +#define RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE __attribute__((unused)) +#else +#define RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE +#endif +#ifndef __clang__ +//!@endcond +#endif + +/*! \def RAPIDJSON_STATIC_ASSERT + \brief (Internal) macro to check for conditions at compile-time + \param x compile-time condition + \hideinitializer + */ +#define RAPIDJSON_STATIC_ASSERT(x) \ + typedef ::RAPIDJSON_NAMESPACE::StaticAssertTest)> \ + RAPIDJSON_JOIN(StaticAssertTypedef, __LINE__) \ + RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE +#endif // RAPIDJSON_STATIC_ASSERT + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_LIKELY, RAPIDJSON_UNLIKELY + +//! Compiler branching hint for expression with high probability to be true. +/*! + \ingroup RAPIDJSON_CONFIG + \param x Boolean expression likely to be true. +*/ +#ifndef RAPIDJSON_LIKELY +#if defined(__GNUC__) || defined(__clang__) +#define RAPIDJSON_LIKELY(x) __builtin_expect(!!(x), 1) +#else +#define RAPIDJSON_LIKELY(x) (x) +#endif +#endif + +//! Compiler branching hint for expression with low probability to be true. +/*! + \ingroup RAPIDJSON_CONFIG + \param x Boolean expression unlikely to be true. +*/ +#ifndef RAPIDJSON_UNLIKELY +#if defined(__GNUC__) || defined(__clang__) +#define RAPIDJSON_UNLIKELY(x) __builtin_expect(!!(x), 0) +#else +#define RAPIDJSON_UNLIKELY(x) (x) +#endif +#endif + +/////////////////////////////////////////////////////////////////////////////// +// Helpers + +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN + +#define RAPIDJSON_MULTILINEMACRO_BEGIN do { +#define RAPIDJSON_MULTILINEMACRO_END \ + } \ + while ((void)0, 0) + +// adopted from Boost +#define RAPIDJSON_VERSION_CODE(x, y, z) (((x)*100000) + ((y)*100) + (z)) + +#if defined(__has_builtin) +#define RAPIDJSON_HAS_BUILTIN(x) __has_builtin(x) +#else +#define RAPIDJSON_HAS_BUILTIN(x) 0 +#endif + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_DIAG_PUSH/POP, RAPIDJSON_DIAG_OFF + +#if defined(__GNUC__) +#define RAPIDJSON_GNUC \ + RAPIDJSON_VERSION_CODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) +#endif + +#if defined(__clang__) || (defined(RAPIDJSON_GNUC) && \ + RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4, 2, 0)) + +#define RAPIDJSON_PRAGMA(x) _Pragma(RAPIDJSON_STRINGIFY(x)) +#define RAPIDJSON_DIAG_PRAGMA(x) RAPIDJSON_PRAGMA(GCC diagnostic x) +#define RAPIDJSON_DIAG_OFF(x) \ + RAPIDJSON_DIAG_PRAGMA(ignored RAPIDJSON_STRINGIFY(RAPIDJSON_JOIN(-W, x))) + +// push/pop support in Clang and GCC>=4.6 +#if defined(__clang__) || (defined(RAPIDJSON_GNUC) && \ + RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4, 6, 0)) +#define RAPIDJSON_DIAG_PUSH RAPIDJSON_DIAG_PRAGMA(push) +#define RAPIDJSON_DIAG_POP RAPIDJSON_DIAG_PRAGMA(pop) +#else // GCC >= 4.2, < 4.6 +#define RAPIDJSON_DIAG_PUSH /* ignored */ +#define RAPIDJSON_DIAG_POP /* ignored */ +#endif + +#elif defined(_MSC_VER) + +// pragma (MSVC specific) +#define RAPIDJSON_PRAGMA(x) __pragma(x) +#define RAPIDJSON_DIAG_PRAGMA(x) RAPIDJSON_PRAGMA(warning(x)) + +#define RAPIDJSON_DIAG_OFF(x) RAPIDJSON_DIAG_PRAGMA(disable : x) +#define RAPIDJSON_DIAG_PUSH RAPIDJSON_DIAG_PRAGMA(push) +#define RAPIDJSON_DIAG_POP RAPIDJSON_DIAG_PRAGMA(pop) + +#else + +#define RAPIDJSON_DIAG_OFF(x) /* ignored */ +#define RAPIDJSON_DIAG_PUSH /* ignored */ +#define RAPIDJSON_DIAG_POP /* ignored */ + +#endif // RAPIDJSON_DIAG_* + +/////////////////////////////////////////////////////////////////////////////// +// C++11 features + +#ifndef RAPIDJSON_HAS_CXX11_RVALUE_REFS +#if defined(__clang__) +#if __has_feature(cxx_rvalue_references) && \ + (defined(_MSC_VER) || defined(_LIBCPP_VERSION) || \ + defined(__GLIBCXX__) && __GLIBCXX__ >= 20080306) +#define RAPIDJSON_HAS_CXX11_RVALUE_REFS 1 +#else +#define RAPIDJSON_HAS_CXX11_RVALUE_REFS 0 +#endif +#elif (defined(RAPIDJSON_GNUC) && \ + (RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4, 3, 0)) && \ + defined(__GXX_EXPERIMENTAL_CXX0X__)) || \ + (defined(_MSC_VER) && _MSC_VER >= 1600) || \ + (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140 && \ + defined(__GXX_EXPERIMENTAL_CXX0X__)) + +#define RAPIDJSON_HAS_CXX11_RVALUE_REFS 1 +#else +#define RAPIDJSON_HAS_CXX11_RVALUE_REFS 0 +#endif +#endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS + +#ifndef RAPIDJSON_HAS_CXX11_NOEXCEPT +#if defined(__clang__) +#define RAPIDJSON_HAS_CXX11_NOEXCEPT __has_feature(cxx_noexcept) +#elif (defined(RAPIDJSON_GNUC) && \ + (RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4, 6, 0)) && \ + defined(__GXX_EXPERIMENTAL_CXX0X__)) || \ + (defined(_MSC_VER) && _MSC_VER >= 1900) || \ + (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140 && \ + defined(__GXX_EXPERIMENTAL_CXX0X__)) +#define RAPIDJSON_HAS_CXX11_NOEXCEPT 1 +#else +#define RAPIDJSON_HAS_CXX11_NOEXCEPT 0 +#endif +#endif +#if RAPIDJSON_HAS_CXX11_NOEXCEPT +#define RAPIDJSON_NOEXCEPT noexcept +#else +#define RAPIDJSON_NOEXCEPT /* noexcept */ +#endif // RAPIDJSON_HAS_CXX11_NOEXCEPT + +// no automatic detection, yet +#ifndef RAPIDJSON_HAS_CXX11_TYPETRAITS +#if (defined(_MSC_VER) && _MSC_VER >= 1700) +#define RAPIDJSON_HAS_CXX11_TYPETRAITS 1 +#else +#define RAPIDJSON_HAS_CXX11_TYPETRAITS 0 +#endif +#endif + +#ifndef RAPIDJSON_HAS_CXX11_RANGE_FOR +#if defined(__clang__) +#define RAPIDJSON_HAS_CXX11_RANGE_FOR __has_feature(cxx_range_for) +#elif (defined(RAPIDJSON_GNUC) && \ + (RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4, 6, 0)) && \ + defined(__GXX_EXPERIMENTAL_CXX0X__)) || \ + (defined(_MSC_VER) && _MSC_VER >= 1700) || \ + (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140 && \ + defined(__GXX_EXPERIMENTAL_CXX0X__)) +#define RAPIDJSON_HAS_CXX11_RANGE_FOR 1 +#else +#define RAPIDJSON_HAS_CXX11_RANGE_FOR 0 +#endif +#endif // RAPIDJSON_HAS_CXX11_RANGE_FOR + +/////////////////////////////////////////////////////////////////////////////// +// C++17 features + +#if defined(__has_cpp_attribute) +#if __has_cpp_attribute(fallthrough) +#define RAPIDJSON_DELIBERATE_FALLTHROUGH [[fallthrough]] +#else +#define RAPIDJSON_DELIBERATE_FALLTHROUGH +#endif +#else +#define RAPIDJSON_DELIBERATE_FALLTHROUGH +#endif + +//!@endcond + +//! Assertion (in non-throwing contexts). +/*! \ingroup RAPIDJSON_CONFIG + Some functions provide a \c noexcept guarantee, if the compiler supports it. + In these cases, the \ref RAPIDJSON_ASSERT macro cannot be overridden to + throw an exception. This macro adds a separate customization point for + such cases. + + Defaults to C \c assert() (as \ref RAPIDJSON_ASSERT), if \c noexcept is + supported, and to \ref RAPIDJSON_ASSERT otherwise. +*/ + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_NOEXCEPT_ASSERT + +#ifndef RAPIDJSON_NOEXCEPT_ASSERT +#ifdef RAPIDJSON_ASSERT_THROWS +#if RAPIDJSON_HAS_CXX11_NOEXCEPT +#define RAPIDJSON_NOEXCEPT_ASSERT(x) +#else +#define RAPIDJSON_NOEXCEPT_ASSERT(x) RAPIDJSON_ASSERT(x) +#endif // RAPIDJSON_HAS_CXX11_NOEXCEPT +#else +#define RAPIDJSON_NOEXCEPT_ASSERT(x) RAPIDJSON_ASSERT(x) +#endif // RAPIDJSON_ASSERT_THROWS +#endif // RAPIDJSON_NOEXCEPT_ASSERT + +/////////////////////////////////////////////////////////////////////////////// +// new/delete + +#ifndef RAPIDJSON_NEW +///! customization point for global \c new +#define RAPIDJSON_NEW(TypeName) new TypeName +#endif +#ifndef RAPIDJSON_DELETE +///! customization point for global \c delete +#define RAPIDJSON_DELETE(x) delete x +#endif + +/////////////////////////////////////////////////////////////////////////////// +// Type + +/*! \namespace rapidjson + \brief main RapidJSON namespace + \see RAPIDJSON_NAMESPACE +*/ +RAPIDJSON_NAMESPACE_BEGIN + +//! Type of JSON value +enum Type { + kNullType = 0, //!< null + kFalseType = 1, //!< false + kTrueType = 2, //!< true + kObjectType = 3, //!< object + kArrayType = 4, //!< array + kStringType = 5, //!< string + kNumberType = 6 //!< number +}; + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_RAPIDJSON_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/reader.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/reader.h new file mode 100644 index 0000000..3a7203a --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/reader.h @@ -0,0 +1,2458 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_READER_H_ +#define RAPIDJSON_READER_H_ + +/*! \file reader.h */ + +#include +#include "allocators.h" +#include "encodedstream.h" +#include "internal/clzll.h" +#include "internal/meta.h" +#include "internal/stack.h" +#include "internal/strtod.h" +#include "stream.h" + +#if defined(RAPIDJSON_SIMD) && defined(_MSC_VER) +#include +#pragma intrinsic(_BitScanForward) +#endif +#ifdef RAPIDJSON_SSE42 +#include +#elif defined(RAPIDJSON_SSE2) +#include +#elif defined(RAPIDJSON_NEON) +#include +#endif + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(old - style - cast) +RAPIDJSON_DIAG_OFF(padded) +RAPIDJSON_DIAG_OFF(switch - enum) +#elif defined(_MSC_VER) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(4127) // conditional expression is constant +RAPIDJSON_DIAG_OFF(4702) // unreachable code +#endif + +#ifdef __GNUC__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(effc++) +#endif + +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN +#define RAPIDJSON_NOTHING /* deliberately empty */ +#ifndef RAPIDJSON_PARSE_ERROR_EARLY_RETURN +#define RAPIDJSON_PARSE_ERROR_EARLY_RETURN(value) \ + RAPIDJSON_MULTILINEMACRO_BEGIN \ + if (RAPIDJSON_UNLIKELY(HasParseError())) { \ + return value; \ + } \ + RAPIDJSON_MULTILINEMACRO_END +#endif +#define RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID \ + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(RAPIDJSON_NOTHING) +//!@endcond + +/*! \def RAPIDJSON_PARSE_ERROR_NORETURN + \ingroup RAPIDJSON_ERRORS + \brief Macro to indicate a parse error. + \param parseErrorCode \ref rapidjson::ParseErrorCode of the error + \param offset position of the error in JSON input (\c size_t) + + This macros can be used as a customization point for the internal + error handling mechanism of RapidJSON. + + A common usage model is to throw an exception instead of requiring the + caller to explicitly check the \ref rapidjson::GenericReader::Parse's + return value: + + \code + #define RAPIDJSON_PARSE_ERROR_NORETURN(parseErrorCode,offset) \ + throw ParseException(parseErrorCode, #parseErrorCode, offset) + + #include // std::runtime_error + #include "rapidjson/error/error.h" // rapidjson::ParseResult + + struct ParseException : std::runtime_error, rapidjson::ParseResult { + ParseException(rapidjson::ParseErrorCode code, const char* msg, size_t + offset) : std::runtime_error(msg), ParseResult(code, offset) {} + }; + + #include "rapidjson/reader.h" + \endcode + + \see RAPIDJSON_PARSE_ERROR, rapidjson::GenericReader::Parse + */ +#ifndef RAPIDJSON_PARSE_ERROR_NORETURN +#define RAPIDJSON_PARSE_ERROR_NORETURN(parseErrorCode, offset) \ + RAPIDJSON_MULTILINEMACRO_BEGIN \ + RAPIDJSON_ASSERT(!HasParseError()); /* Error can only be assigned once */ \ + SetParseError(parseErrorCode, offset); \ + RAPIDJSON_MULTILINEMACRO_END +#endif + +/*! \def RAPIDJSON_PARSE_ERROR + \ingroup RAPIDJSON_ERRORS + \brief (Internal) macro to indicate and handle a parse error. + \param parseErrorCode \ref rapidjson::ParseErrorCode of the error + \param offset position of the error in JSON input (\c size_t) + + Invokes RAPIDJSON_PARSE_ERROR_NORETURN and stops the parsing. + + \see RAPIDJSON_PARSE_ERROR_NORETURN + \hideinitializer + */ +#ifndef RAPIDJSON_PARSE_ERROR +#define RAPIDJSON_PARSE_ERROR(parseErrorCode, offset) \ + RAPIDJSON_MULTILINEMACRO_BEGIN \ + RAPIDJSON_PARSE_ERROR_NORETURN(parseErrorCode, offset); \ + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; \ + RAPIDJSON_MULTILINEMACRO_END +#endif + +#include "error/error.h" // ParseErrorCode, ParseResult + +RAPIDJSON_NAMESPACE_BEGIN + +/////////////////////////////////////////////////////////////////////////////// +// ParseFlag + +/*! \def RAPIDJSON_PARSE_DEFAULT_FLAGS + \ingroup RAPIDJSON_CONFIG + \brief User-defined kParseDefaultFlags definition. + + User can define this as any \c ParseFlag combinations. +*/ +#ifndef RAPIDJSON_PARSE_DEFAULT_FLAGS +#define RAPIDJSON_PARSE_DEFAULT_FLAGS kParseNoFlags +#endif + +//! Combination of parseFlags +/*! \see Reader::Parse, Document::Parse, Document::ParseInsitu, + * Document::ParseStream + */ +enum ParseFlag { + kParseNoFlags = 0, //!< No flags are set. + kParseInsituFlag = 1, //!< In-situ(destructive) parsing. + kParseValidateEncodingFlag = 2, //!< Validate encoding of JSON strings. + kParseIterativeFlag = 4, //!< Iterative(constant complexity in terms of + //!< function call stack size) parsing. + kParseStopWhenDoneFlag = + 8, //!< After parsing a complete JSON root from stream, stop further + //!< processing the rest of stream. When this flag is used, parser will + //!< not generate kParseErrorDocumentRootNotSingular error. + kParseFullPrecisionFlag = + 16, //!< Parse number in full precision (but slower). + kParseCommentsFlag = + 32, //!< Allow one-line (//) and multi-line (/**/) comments. + kParseNumbersAsStringsFlag = + 64, //!< Parse all numbers (ints/doubles) as strings. + kParseTrailingCommasFlag = + 128, //!< Allow trailing commas at the end of objects and arrays. + kParseNanAndInfFlag = 256, //!< Allow parsing NaN, Inf, Infinity, -Inf and + //!-Infinity as doubles. + kParseDefaultFlags = + RAPIDJSON_PARSE_DEFAULT_FLAGS //!< Default parse flags. Can be customized + //!< by defining + //!< RAPIDJSON_PARSE_DEFAULT_FLAGS +}; + +/////////////////////////////////////////////////////////////////////////////// +// Handler + +/*! \class rapidjson::Handler + \brief Concept for receiving events from GenericReader upon parsing. + The functions return true if no error occurs. If they return false, + the event publisher should terminate the process. +\code +concept Handler { + typename Ch; + + bool Null(); + bool Bool(bool b); + bool Int(int i); + bool Uint(unsigned i); + bool Int64(int64_t i); + bool Uint64(uint64_t i); + bool Double(double d); + /// enabled via kParseNumbersAsStringsFlag, string is not null-terminated +(use length) bool RawNumber(const Ch* str, SizeType length, bool copy); bool +String(const Ch* str, SizeType length, bool copy); bool StartObject(); bool +Key(const Ch* str, SizeType length, bool copy); bool EndObject(SizeType +memberCount); bool StartArray(); bool EndArray(SizeType elementCount); +}; +\endcode +*/ +/////////////////////////////////////////////////////////////////////////////// +// BaseReaderHandler + +//! Default implementation of Handler. +/*! This can be used as base class of any reader handler. + \note implements Handler concept +*/ +template , typename Derived = void> +struct BaseReaderHandler { + typedef typename Encoding::Ch Ch; + + typedef + typename internal::SelectIf, + BaseReaderHandler, Derived>::Type Override; + + bool Default() { return true; } + bool Null() { return static_cast(*this).Default(); } + bool Bool(bool) { return static_cast(*this).Default(); } + bool Int(int) { return static_cast(*this).Default(); } + bool Uint(unsigned) { return static_cast(*this).Default(); } + bool Int64(int64_t) { return static_cast(*this).Default(); } + bool Uint64(uint64_t) { return static_cast(*this).Default(); } + bool Double(double) { return static_cast(*this).Default(); } + /// enabled via kParseNumbersAsStringsFlag, string is not null-terminated (use + /// length) + bool RawNumber(const Ch *str, SizeType len, bool copy) { + return static_cast(*this).String(str, len, copy); + } + bool String(const Ch *, SizeType, bool) { + return static_cast(*this).Default(); + } + bool StartObject() { return static_cast(*this).Default(); } + bool Key(const Ch *str, SizeType len, bool copy) { + return static_cast(*this).String(str, len, copy); + } + bool EndObject(SizeType) { return static_cast(*this).Default(); } + bool StartArray() { return static_cast(*this).Default(); } + bool EndArray(SizeType) { return static_cast(*this).Default(); } +}; + +/////////////////////////////////////////////////////////////////////////////// +// StreamLocalCopy + +namespace internal { + +template ::copyOptimization> +class StreamLocalCopy; + +//! Do copy optimization. +template +class StreamLocalCopy { + public: + StreamLocalCopy(Stream &original) : s(original), original_(original) {} + ~StreamLocalCopy() { original_ = s; } + + Stream s; + + private: + StreamLocalCopy &operator=(const StreamLocalCopy &) /* = delete */; + + Stream &original_; +}; + +//! Keep reference. +template +class StreamLocalCopy { + public: + StreamLocalCopy(Stream &original) : s(original) {} + + Stream &s; + + private: + StreamLocalCopy &operator=(const StreamLocalCopy &) /* = delete */; +}; + +} // namespace internal + +/////////////////////////////////////////////////////////////////////////////// +// SkipWhitespace + +//! Skip the JSON white spaces in a stream. +/*! \param is A input stream for skipping white spaces. + \note This function has SSE2/SSE4.2 specialization. +*/ +template +void SkipWhitespace(InputStream &is) { + internal::StreamLocalCopy copy(is); + InputStream &s(copy.s); + + typename InputStream::Ch c; + while ((c = s.Peek()) == ' ' || c == '\n' || c == '\r' || c == '\t') s.Take(); +} + +inline const char *SkipWhitespace(const char *p, const char *end) { + while (p != end && (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t')) ++p; + return p; +} + +#ifdef RAPIDJSON_SSE42 +//! Skip whitespace with SSE 4.2 pcmpistrm instruction, testing 16 8-byte +//! characters at once. +inline const char *SkipWhitespace_SIMD(const char *p) { + // Fast return for single non-whitespace + if (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t') + ++p; + else + return p; + + // 16-byte align to the next boundary + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + while (p != nextAligned) + if (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t') + ++p; + else + return p; + + // The rest of string using SIMD + static const char whitespace[16] = " \n\r\t"; + const __m128i w = + _mm_loadu_si128(reinterpret_cast(&whitespace[0])); + + for (;; p += 16) { + const __m128i s = _mm_load_si128(reinterpret_cast(p)); + const int r = _mm_cmpistri(w, s, _SIDD_UBYTE_OPS | _SIDD_CMP_EQUAL_ANY | + _SIDD_LEAST_SIGNIFICANT | + _SIDD_NEGATIVE_POLARITY); + if (r != 16) // some of characters is non-whitespace + return p + r; + } +} + +inline const char *SkipWhitespace_SIMD(const char *p, const char *end) { + // Fast return for single non-whitespace + if (p != end && (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t')) + ++p; + else + return p; + + // The middle of string using SIMD + static const char whitespace[16] = " \n\r\t"; + const __m128i w = + _mm_loadu_si128(reinterpret_cast(&whitespace[0])); + + for (; p <= end - 16; p += 16) { + const __m128i s = _mm_loadu_si128(reinterpret_cast(p)); + const int r = _mm_cmpistri(w, s, _SIDD_UBYTE_OPS | _SIDD_CMP_EQUAL_ANY | + _SIDD_LEAST_SIGNIFICANT | + _SIDD_NEGATIVE_POLARITY); + if (r != 16) // some of characters is non-whitespace + return p + r; + } + + return SkipWhitespace(p, end); +} + +#elif defined(RAPIDJSON_SSE2) + +//! Skip whitespace with SSE2 instructions, testing 16 8-byte characters at +//! once. +inline const char *SkipWhitespace_SIMD(const char *p) { + // Fast return for single non-whitespace + if (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t') + ++p; + else + return p; + + // 16-byte align to the next boundary + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + while (p != nextAligned) + if (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t') + ++p; + else + return p; + +// The rest of string +#define C16(c) \ + { c, c, c, c, c, c, c, c, c, c, c, c, c, c, c, c } + static const char whitespaces[4][16] = {C16(' '), C16('\n'), C16('\r'), + C16('\t')}; +#undef C16 + + const __m128i w0 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[0][0])); + const __m128i w1 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[1][0])); + const __m128i w2 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[2][0])); + const __m128i w3 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[3][0])); + + for (;; p += 16) { + const __m128i s = _mm_load_si128(reinterpret_cast(p)); + __m128i x = _mm_cmpeq_epi8(s, w0); + x = _mm_or_si128(x, _mm_cmpeq_epi8(s, w1)); + x = _mm_or_si128(x, _mm_cmpeq_epi8(s, w2)); + x = _mm_or_si128(x, _mm_cmpeq_epi8(s, w3)); + unsigned short r = static_cast(~_mm_movemask_epi8(x)); + if (r != 0) { // some of characters may be non-whitespace +#ifdef _MSC_VER // Find the index of first non-whitespace + unsigned long offset; + _BitScanForward(&offset, r); + return p + offset; +#else + return p + __builtin_ffs(r) - 1; +#endif + } + } +} + +inline const char *SkipWhitespace_SIMD(const char *p, const char *end) { + // Fast return for single non-whitespace + if (p != end && (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t')) + ++p; + else + return p; + +// The rest of string +#define C16(c) \ + { c, c, c, c, c, c, c, c, c, c, c, c, c, c, c, c } + static const char whitespaces[4][16] = {C16(' '), C16('\n'), C16('\r'), + C16('\t')}; +#undef C16 + + const __m128i w0 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[0][0])); + const __m128i w1 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[1][0])); + const __m128i w2 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[2][0])); + const __m128i w3 = + _mm_loadu_si128(reinterpret_cast(&whitespaces[3][0])); + + for (; p <= end - 16; p += 16) { + const __m128i s = _mm_loadu_si128(reinterpret_cast(p)); + __m128i x = _mm_cmpeq_epi8(s, w0); + x = _mm_or_si128(x, _mm_cmpeq_epi8(s, w1)); + x = _mm_or_si128(x, _mm_cmpeq_epi8(s, w2)); + x = _mm_or_si128(x, _mm_cmpeq_epi8(s, w3)); + unsigned short r = static_cast(~_mm_movemask_epi8(x)); + if (r != 0) { // some of characters may be non-whitespace +#ifdef _MSC_VER // Find the index of first non-whitespace + unsigned long offset; + _BitScanForward(&offset, r); + return p + offset; +#else + return p + __builtin_ffs(r) - 1; +#endif + } + } + + return SkipWhitespace(p, end); +} + +#elif defined(RAPIDJSON_NEON) + +//! Skip whitespace with ARM Neon instructions, testing 16 8-byte characters at +//! once. +inline const char *SkipWhitespace_SIMD(const char *p) { + // Fast return for single non-whitespace + if (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t') + ++p; + else + return p; + + // 16-byte align to the next boundary + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + while (p != nextAligned) + if (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t') + ++p; + else + return p; + + const uint8x16_t w0 = vmovq_n_u8(' '); + const uint8x16_t w1 = vmovq_n_u8('\n'); + const uint8x16_t w2 = vmovq_n_u8('\r'); + const uint8x16_t w3 = vmovq_n_u8('\t'); + + for (;; p += 16) { + const uint8x16_t s = vld1q_u8(reinterpret_cast(p)); + uint8x16_t x = vceqq_u8(s, w0); + x = vorrq_u8(x, vceqq_u8(s, w1)); + x = vorrq_u8(x, vceqq_u8(s, w2)); + x = vorrq_u8(x, vceqq_u8(s, w3)); + + x = vmvnq_u8(x); // Negate + x = vrev64q_u8(x); // Rev in 64 + uint64_t low = vgetq_lane_u64(vreinterpretq_u64_u8(x), 0); // extract + uint64_t high = vgetq_lane_u64(vreinterpretq_u64_u8(x), 1); // extract + + if (low == 0) { + if (high != 0) { + uint32_t lz = RAPIDJSON_CLZLL(high); + return p + 8 + (lz >> 3); + } + } else { + uint32_t lz = RAPIDJSON_CLZLL(low); + return p + (lz >> 3); + } + } +} + +inline const char *SkipWhitespace_SIMD(const char *p, const char *end) { + // Fast return for single non-whitespace + if (p != end && (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t')) + ++p; + else + return p; + + const uint8x16_t w0 = vmovq_n_u8(' '); + const uint8x16_t w1 = vmovq_n_u8('\n'); + const uint8x16_t w2 = vmovq_n_u8('\r'); + const uint8x16_t w3 = vmovq_n_u8('\t'); + + for (; p <= end - 16; p += 16) { + const uint8x16_t s = vld1q_u8(reinterpret_cast(p)); + uint8x16_t x = vceqq_u8(s, w0); + x = vorrq_u8(x, vceqq_u8(s, w1)); + x = vorrq_u8(x, vceqq_u8(s, w2)); + x = vorrq_u8(x, vceqq_u8(s, w3)); + + x = vmvnq_u8(x); // Negate + x = vrev64q_u8(x); // Rev in 64 + uint64_t low = vgetq_lane_u64(vreinterpretq_u64_u8(x), 0); // extract + uint64_t high = vgetq_lane_u64(vreinterpretq_u64_u8(x), 1); // extract + + if (low == 0) { + if (high != 0) { + uint32_t lz = RAPIDJSON_CLZLL(high); + return p + 8 + (lz >> 3); + } + } else { + uint32_t lz = RAPIDJSON_CLZLL(low); + return p + (lz >> 3); + } + } + + return SkipWhitespace(p, end); +} + +#endif // RAPIDJSON_NEON + +#ifdef RAPIDJSON_SIMD +//! Template function specialization for InsituStringStream +template <> +inline void SkipWhitespace(InsituStringStream &is) { + is.src_ = const_cast(SkipWhitespace_SIMD(is.src_)); +} + +//! Template function specialization for StringStream +template <> +inline void SkipWhitespace(StringStream &is) { + is.src_ = SkipWhitespace_SIMD(is.src_); +} + +template <> +inline void SkipWhitespace(EncodedInputStream, MemoryStream> &is) { + is.is_.src_ = SkipWhitespace_SIMD(is.is_.src_, is.is_.end_); +} +#endif // RAPIDJSON_SIMD + +/////////////////////////////////////////////////////////////////////////////// +// GenericReader + +//! SAX-style JSON parser. Use \ref Reader for UTF8 encoding and default +//! allocator. +/*! GenericReader parses JSON text from a stream, and send events synchronously + to an object implementing Handler concept. + + It needs to allocate a stack for storing a single decoded string during + non-destructive parsing. + + For in-situ parsing, the decoded string is directly written to the source + text string, no temporary buffer is required. + + A GenericReader object can be reused for parsing multiple JSON text. + + \tparam SourceEncoding Encoding of the input stream. + \tparam TargetEncoding Encoding of the parse output. + \tparam StackAllocator Allocator type for stack. +*/ +template +class GenericReader { + public: + typedef typename SourceEncoding::Ch Ch; //!< SourceEncoding character type + + //! Constructor. + /*! \param stackAllocator Optional allocator for allocating stack memory. + (Only use for non-destructive parsing) \param stackCapacity stack capacity + in bytes for storing a single decoded string. (Only use for + non-destructive parsing) + */ + GenericReader(StackAllocator *stackAllocator = 0, + size_t stackCapacity = kDefaultStackCapacity) + : stack_(stackAllocator, stackCapacity), + parseResult_(), + state_(IterativeParsingStartState) {} + + //! Parse JSON text. + /*! \tparam parseFlags Combination of \ref ParseFlag. + \tparam InputStream Type of input stream, implementing Stream concept. + \tparam Handler Type of handler, implementing Handler concept. + \param is Input stream to be parsed. + \param handler The handler to receive events. + \return Whether the parsing is successful. + */ + template + ParseResult Parse(InputStream &is, Handler &handler) { + if (parseFlags & kParseIterativeFlag) + return IterativeParse(is, handler); + + parseResult_.Clear(); + + ClearStackOnExit scope(*this); + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_); + + if (RAPIDJSON_UNLIKELY(is.Peek() == '\0')) { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorDocumentEmpty, is.Tell()); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_); + } else { + ParseValue(is, handler); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_); + + if (!(parseFlags & kParseStopWhenDoneFlag)) { + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_); + + if (RAPIDJSON_UNLIKELY(is.Peek() != '\0')) { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorDocumentRootNotSingular, + is.Tell()); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_); + } + } + } + + return parseResult_; + } + + //! Parse JSON text (with \ref kParseDefaultFlags) + /*! \tparam InputStream Type of input stream, implementing Stream concept + \tparam Handler Type of handler, implementing Handler concept. + \param is Input stream to be parsed. + \param handler The handler to receive events. + \return Whether the parsing is successful. + */ + template + ParseResult Parse(InputStream &is, Handler &handler) { + return Parse(is, handler); + } + + //! Initialize JSON text token-by-token parsing + /*! + */ + void IterativeParseInit() { + parseResult_.Clear(); + state_ = IterativeParsingStartState; + } + + //! Parse one token from JSON text + /*! \tparam InputStream Type of input stream, implementing Stream concept + \tparam Handler Type of handler, implementing Handler concept. + \param is Input stream to be parsed. + \param handler The handler to receive events. + \return Whether the parsing is successful. + */ + template + bool IterativeParseNext(InputStream &is, Handler &handler) { + while (RAPIDJSON_LIKELY(is.Peek() != '\0')) { + SkipWhitespaceAndComments(is); + + Token t = Tokenize(is.Peek()); + IterativeParsingState n = Predict(state_, t); + IterativeParsingState d = Transit(state_, t, n, is, handler); + + // If we've finished or hit an error... + if (RAPIDJSON_UNLIKELY(IsIterativeParsingCompleteState(d))) { + // Report errors. + if (d == IterativeParsingErrorState) { + HandleError(state_, is); + return false; + } + + // Transition to the finish state. + RAPIDJSON_ASSERT(d == IterativeParsingFinishState); + state_ = d; + + // If StopWhenDone is not set... + if (!(parseFlags & kParseStopWhenDoneFlag)) { + // ... and extra non-whitespace data is found... + SkipWhitespaceAndComments(is); + if (is.Peek() != '\0') { + // ... this is considered an error. + HandleError(state_, is); + return false; + } + } + + // Success! We are done! + return true; + } + + // Transition to the new state. + state_ = d; + + // If we parsed anything other than a delimiter, we invoked the handler, + // so we can return true now. + if (!IsIterativeParsingDelimiterState(n)) return true; + } + + // We reached the end of file. + stack_.Clear(); + + if (state_ != IterativeParsingFinishState) { + HandleError(state_, is); + return false; + } + + return true; + } + + //! Check if token-by-token parsing JSON text is complete + /*! \return Whether the JSON has been fully decoded. + */ + RAPIDJSON_FORCEINLINE bool IterativeParseComplete() const { + return IsIterativeParsingCompleteState(state_); + } + + //! Whether a parse error has occurred in the last parsing. + bool HasParseError() const { return parseResult_.IsError(); } + + //! Get the \ref ParseErrorCode of last parsing. + ParseErrorCode GetParseErrorCode() const { return parseResult_.Code(); } + + //! Get the position of last parsing error in input, 0 otherwise. + size_t GetErrorOffset() const { return parseResult_.Offset(); } + + protected: + void SetParseError(ParseErrorCode code, size_t offset) { + parseResult_.Set(code, offset); + } + + private: + // Prohibit copy constructor & assignment operator. + GenericReader(const GenericReader &); + GenericReader &operator=(const GenericReader &); + + void ClearStack() { stack_.Clear(); } + + // clear stack on any exit from ParseStream, e.g. due to exception + struct ClearStackOnExit { + explicit ClearStackOnExit(GenericReader &r) : r_(r) {} + ~ClearStackOnExit() { r_.ClearStack(); } + + private: + GenericReader &r_; + ClearStackOnExit(const ClearStackOnExit &); + ClearStackOnExit &operator=(const ClearStackOnExit &); + }; + + template + void SkipWhitespaceAndComments(InputStream &is) { + SkipWhitespace(is); + + if (parseFlags & kParseCommentsFlag) { + while (RAPIDJSON_UNLIKELY(Consume(is, '/'))) { + if (Consume(is, '*')) { + while (true) { + if (RAPIDJSON_UNLIKELY(is.Peek() == '\0')) + RAPIDJSON_PARSE_ERROR(kParseErrorUnspecificSyntaxError, + is.Tell()); + else if (Consume(is, '*')) { + if (Consume(is, '/')) break; + } else + is.Take(); + } + } else if (RAPIDJSON_LIKELY(Consume(is, '/'))) + while (is.Peek() != '\0' && is.Take() != '\n') { + } + else + RAPIDJSON_PARSE_ERROR(kParseErrorUnspecificSyntaxError, is.Tell()); + + SkipWhitespace(is); + } + } + } + + // Parse object: { string : value, ... } + template + void ParseObject(InputStream &is, Handler &handler) { + RAPIDJSON_ASSERT(is.Peek() == '{'); + is.Take(); // Skip '{' + + if (RAPIDJSON_UNLIKELY(!handler.StartObject())) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + if (Consume(is, '}')) { + if (RAPIDJSON_UNLIKELY(!handler.EndObject(0))) // empty object + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + return; + } + + for (SizeType memberCount = 0;;) { + if (RAPIDJSON_UNLIKELY(is.Peek() != '"')) + RAPIDJSON_PARSE_ERROR(kParseErrorObjectMissName, is.Tell()); + + ParseString(is, handler, true); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + if (RAPIDJSON_UNLIKELY(!Consume(is, ':'))) + RAPIDJSON_PARSE_ERROR(kParseErrorObjectMissColon, is.Tell()); + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + ParseValue(is, handler); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + ++memberCount; + + switch (is.Peek()) { + case ',': + is.Take(); + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + break; + case '}': + is.Take(); + if (RAPIDJSON_UNLIKELY(!handler.EndObject(memberCount))) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + return; + default: + RAPIDJSON_PARSE_ERROR(kParseErrorObjectMissCommaOrCurlyBracket, + is.Tell()); + break; // This useless break is only for making warning and coverage + // happy + } + + if (parseFlags & kParseTrailingCommasFlag) { + if (is.Peek() == '}') { + if (RAPIDJSON_UNLIKELY(!handler.EndObject(memberCount))) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + is.Take(); + return; + } + } + } + } + + // Parse array: [ value, ... ] + template + void ParseArray(InputStream &is, Handler &handler) { + RAPIDJSON_ASSERT(is.Peek() == '['); + is.Take(); // Skip '[' + + if (RAPIDJSON_UNLIKELY(!handler.StartArray())) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + if (Consume(is, ']')) { + if (RAPIDJSON_UNLIKELY(!handler.EndArray(0))) // empty array + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + return; + } + + for (SizeType elementCount = 0;;) { + ParseValue(is, handler); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + ++elementCount; + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + + if (Consume(is, ',')) { + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + } else if (Consume(is, ']')) { + if (RAPIDJSON_UNLIKELY(!handler.EndArray(elementCount))) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + return; + } else + RAPIDJSON_PARSE_ERROR(kParseErrorArrayMissCommaOrSquareBracket, + is.Tell()); + + if (parseFlags & kParseTrailingCommasFlag) { + if (is.Peek() == ']') { + if (RAPIDJSON_UNLIKELY(!handler.EndArray(elementCount))) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + is.Take(); + return; + } + } + } + } + + template + void ParseNull(InputStream &is, Handler &handler) { + RAPIDJSON_ASSERT(is.Peek() == 'n'); + is.Take(); + + if (RAPIDJSON_LIKELY(Consume(is, 'u') && Consume(is, 'l') && + Consume(is, 'l'))) { + if (RAPIDJSON_UNLIKELY(!handler.Null())) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + } else + RAPIDJSON_PARSE_ERROR(kParseErrorValueInvalid, is.Tell()); + } + + template + void ParseTrue(InputStream &is, Handler &handler) { + RAPIDJSON_ASSERT(is.Peek() == 't'); + is.Take(); + + if (RAPIDJSON_LIKELY(Consume(is, 'r') && Consume(is, 'u') && + Consume(is, 'e'))) { + if (RAPIDJSON_UNLIKELY(!handler.Bool(true))) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + } else + RAPIDJSON_PARSE_ERROR(kParseErrorValueInvalid, is.Tell()); + } + + template + void ParseFalse(InputStream &is, Handler &handler) { + RAPIDJSON_ASSERT(is.Peek() == 'f'); + is.Take(); + + if (RAPIDJSON_LIKELY(Consume(is, 'a') && Consume(is, 'l') && + Consume(is, 's') && Consume(is, 'e'))) { + if (RAPIDJSON_UNLIKELY(!handler.Bool(false))) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, is.Tell()); + } else + RAPIDJSON_PARSE_ERROR(kParseErrorValueInvalid, is.Tell()); + } + + template + RAPIDJSON_FORCEINLINE static bool Consume(InputStream &is, + typename InputStream::Ch expect) { + if (RAPIDJSON_LIKELY(is.Peek() == expect)) { + is.Take(); + return true; + } else + return false; + } + + // Helper function to parse four hexadecimal digits in \uXXXX in + // ParseString(). + template + unsigned ParseHex4(InputStream &is, size_t escapeOffset) { + unsigned codepoint = 0; + for (int i = 0; i < 4; i++) { + Ch c = is.Peek(); + codepoint <<= 4; + codepoint += static_cast(c); + if (c >= '0' && c <= '9') + codepoint -= '0'; + else if (c >= 'A' && c <= 'F') + codepoint -= 'A' - 10; + else if (c >= 'a' && c <= 'f') + codepoint -= 'a' - 10; + else { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorStringUnicodeEscapeInvalidHex, + escapeOffset); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(0); + } + is.Take(); + } + return codepoint; + } + + template + class StackStream { + public: + typedef CharType Ch; + + StackStream(internal::Stack &stack) + : stack_(stack), length_(0) {} + RAPIDJSON_FORCEINLINE void Put(Ch c) { + *stack_.template Push() = c; + ++length_; + } + + RAPIDJSON_FORCEINLINE void *Push(SizeType count) { + length_ += count; + return stack_.template Push(count); + } + + size_t Length() const { return length_; } + + Ch *Pop() { return stack_.template Pop(length_); } + + private: + StackStream(const StackStream &); + StackStream &operator=(const StackStream &); + + internal::Stack &stack_; + SizeType length_; + }; + + // Parse string and generate String event. Different code paths for + // kParseInsituFlag. + template + void ParseString(InputStream &is, Handler &handler, bool isKey = false) { + internal::StreamLocalCopy copy(is); + InputStream &s(copy.s); + + RAPIDJSON_ASSERT(s.Peek() == '\"'); + s.Take(); // Skip '\"' + + bool success = false; + if (parseFlags & kParseInsituFlag) { + typename InputStream::Ch *head = s.PutBegin(); + ParseStringToStream(s, s); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + size_t length = s.PutEnd(head) - 1; + RAPIDJSON_ASSERT(length <= 0xFFFFFFFF); + const typename TargetEncoding::Ch *const str = + reinterpret_cast(head); + success = (isKey ? handler.Key(str, SizeType(length), false) + : handler.String(str, SizeType(length), false)); + } else { + StackStream stackStream(stack_); + ParseStringToStream( + s, stackStream); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + SizeType length = static_cast(stackStream.Length()) - 1; + const typename TargetEncoding::Ch *const str = stackStream.Pop(); + success = (isKey ? handler.Key(str, length, true) + : handler.String(str, length, true)); + } + if (RAPIDJSON_UNLIKELY(!success)) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, s.Tell()); + } + + // Parse string to an output is + // This function handles the prefix/suffix double quotes, escaping, and + // optional encoding validation. + template + RAPIDJSON_FORCEINLINE void ParseStringToStream(InputStream &is, + OutputStream &os) { +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN +#define Z16 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + static const char escape[256] = { + Z16, Z16, 0, 0, '\"', 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, '/', Z16, Z16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, '\\', 0, 0, 0, 0, 0, '\b', + 0, 0, 0, '\f', 0, 0, 0, 0, 0, 0, 0, '\n', 0, + 0, 0, '\r', 0, '\t', 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, Z16, Z16, Z16, Z16, Z16, Z16, Z16, Z16}; +#undef Z16 + //!@endcond + + for (;;) { + // Scan and copy string before "\\\"" or < 0x20. This is an optional + // optimzation. + if (!(parseFlags & kParseValidateEncodingFlag)) + ScanCopyUnescapedString(is, os); + + Ch c = is.Peek(); + if (RAPIDJSON_UNLIKELY(c == '\\')) { // Escape + size_t escapeOffset = is.Tell(); // For invalid escaping, report the + // initial '\\' as error offset + is.Take(); + Ch e = is.Peek(); + if ((sizeof(Ch) == 1 || unsigned(e) < 256) && + RAPIDJSON_LIKELY(escape[static_cast(e)])) { + is.Take(); + os.Put(static_cast( + escape[static_cast(e)])); + } else if (RAPIDJSON_LIKELY(e == 'u')) { // Unicode + is.Take(); + unsigned codepoint = ParseHex4(is, escapeOffset); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + if (RAPIDJSON_UNLIKELY(codepoint >= 0xD800 && codepoint <= 0xDBFF)) { + // Handle UTF-16 surrogate pair + if (RAPIDJSON_UNLIKELY(!Consume(is, '\\') || !Consume(is, 'u'))) + RAPIDJSON_PARSE_ERROR(kParseErrorStringUnicodeSurrogateInvalid, + escapeOffset); + unsigned codepoint2 = ParseHex4(is, escapeOffset); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID; + if (RAPIDJSON_UNLIKELY(codepoint2 < 0xDC00 || codepoint2 > 0xDFFF)) + RAPIDJSON_PARSE_ERROR(kParseErrorStringUnicodeSurrogateInvalid, + escapeOffset); + codepoint = (((codepoint - 0xD800) << 10) | (codepoint2 - 0xDC00)) + + 0x10000; + } + TEncoding::Encode(os, codepoint); + } else + RAPIDJSON_PARSE_ERROR(kParseErrorStringEscapeInvalid, escapeOffset); + } else if (RAPIDJSON_UNLIKELY(c == '"')) { // Closing double quote + is.Take(); + os.Put('\0'); // null-terminate the string + return; + } else if (RAPIDJSON_UNLIKELY(static_cast(c) < + 0x20)) { // RFC 4627: unescaped = %x20-21 / + // %x23-5B / %x5D-10FFFF + if (c == '\0') + RAPIDJSON_PARSE_ERROR(kParseErrorStringMissQuotationMark, is.Tell()); + else + RAPIDJSON_PARSE_ERROR(kParseErrorStringInvalidEncoding, is.Tell()); + } else { + size_t offset = is.Tell(); + if (RAPIDJSON_UNLIKELY( + (parseFlags & kParseValidateEncodingFlag + ? !Transcoder::Validate(is, os) + : !Transcoder::Transcode(is, os)))) + RAPIDJSON_PARSE_ERROR(kParseErrorStringInvalidEncoding, offset); + } + } + } + + template + static RAPIDJSON_FORCEINLINE void ScanCopyUnescapedString(InputStream &, + OutputStream &) { + // Do nothing for generic version + } + +#if defined(RAPIDJSON_SSE2) || defined(RAPIDJSON_SSE42) + // StringStream -> StackStream + static RAPIDJSON_FORCEINLINE void ScanCopyUnescapedString( + StringStream &is, StackStream &os) { + const char *p = is.src_; + + // Scan one by one until alignment (unaligned load may cross page boundary + // and cause crash) + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + while (p != nextAligned) + if (RAPIDJSON_UNLIKELY(*p == '\"') || RAPIDJSON_UNLIKELY(*p == '\\') || + RAPIDJSON_UNLIKELY(static_cast(*p) < 0x20)) { + is.src_ = p; + return; + } else + os.Put(*p++); + + // The rest of string using SIMD + static const char dquote[16] = {'\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"'}; + static const char bslash[16] = {'\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\'}; + static const char space[16] = {0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F}; + const __m128i dq = + _mm_loadu_si128(reinterpret_cast(&dquote[0])); + const __m128i bs = + _mm_loadu_si128(reinterpret_cast(&bslash[0])); + const __m128i sp = + _mm_loadu_si128(reinterpret_cast(&space[0])); + + for (;; p += 16) { + const __m128i s = _mm_load_si128(reinterpret_cast(p)); + const __m128i t1 = _mm_cmpeq_epi8(s, dq); + const __m128i t2 = _mm_cmpeq_epi8(s, bs); + const __m128i t3 = _mm_cmpeq_epi8( + _mm_max_epu8(s, sp), sp); // s < 0x20 <=> max(s, 0x1F) == 0x1F + const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); + unsigned short r = static_cast(_mm_movemask_epi8(x)); + if (RAPIDJSON_UNLIKELY(r != 0)) { // some of characters is escaped + SizeType length; +#ifdef _MSC_VER // Find the index of first escaped + unsigned long offset; + _BitScanForward(&offset, r); + length = offset; +#else + length = static_cast(__builtin_ffs(r) - 1); +#endif + if (length != 0) { + char *q = reinterpret_cast(os.Push(length)); + for (size_t i = 0; i < length; i++) q[i] = p[i]; + + p += length; + } + break; + } + _mm_storeu_si128(reinterpret_cast<__m128i *>(os.Push(16)), s); + } + + is.src_ = p; + } + + // InsituStringStream -> InsituStringStream + static RAPIDJSON_FORCEINLINE void ScanCopyUnescapedString( + InsituStringStream &is, InsituStringStream &os) { + RAPIDJSON_ASSERT(&is == &os); + (void)os; + + if (is.src_ == is.dst_) { + SkipUnescapedString(is); + return; + } + + char *p = is.src_; + char *q = is.dst_; + + // Scan one by one until alignment (unaligned load may cross page boundary + // and cause crash) + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + while (p != nextAligned) + if (RAPIDJSON_UNLIKELY(*p == '\"') || RAPIDJSON_UNLIKELY(*p == '\\') || + RAPIDJSON_UNLIKELY(static_cast(*p) < 0x20)) { + is.src_ = p; + is.dst_ = q; + return; + } else + *q++ = *p++; + + // The rest of string using SIMD + static const char dquote[16] = {'\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"'}; + static const char bslash[16] = {'\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\'}; + static const char space[16] = {0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F}; + const __m128i dq = + _mm_loadu_si128(reinterpret_cast(&dquote[0])); + const __m128i bs = + _mm_loadu_si128(reinterpret_cast(&bslash[0])); + const __m128i sp = + _mm_loadu_si128(reinterpret_cast(&space[0])); + + for (;; p += 16, q += 16) { + const __m128i s = _mm_load_si128(reinterpret_cast(p)); + const __m128i t1 = _mm_cmpeq_epi8(s, dq); + const __m128i t2 = _mm_cmpeq_epi8(s, bs); + const __m128i t3 = _mm_cmpeq_epi8( + _mm_max_epu8(s, sp), sp); // s < 0x20 <=> max(s, 0x1F) == 0x1F + const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); + unsigned short r = static_cast(_mm_movemask_epi8(x)); + if (RAPIDJSON_UNLIKELY(r != 0)) { // some of characters is escaped + size_t length; +#ifdef _MSC_VER // Find the index of first escaped + unsigned long offset; + _BitScanForward(&offset, r); + length = offset; +#else + length = static_cast(__builtin_ffs(r) - 1); +#endif + for (const char *pend = p + length; p != pend;) *q++ = *p++; + break; + } + _mm_storeu_si128(reinterpret_cast<__m128i *>(q), s); + } + + is.src_ = p; + is.dst_ = q; + } + + // When read/write pointers are the same for insitu stream, just skip + // unescaped characters + static RAPIDJSON_FORCEINLINE void SkipUnescapedString( + InsituStringStream &is) { + RAPIDJSON_ASSERT(is.src_ == is.dst_); + char *p = is.src_; + + // Scan one by one until alignment (unaligned load may cross page boundary + // and cause crash) + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + for (; p != nextAligned; p++) + if (RAPIDJSON_UNLIKELY(*p == '\"') || RAPIDJSON_UNLIKELY(*p == '\\') || + RAPIDJSON_UNLIKELY(static_cast(*p) < 0x20)) { + is.src_ = is.dst_ = p; + return; + } + + // The rest of string using SIMD + static const char dquote[16] = {'\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"'}; + static const char bslash[16] = {'\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\'}; + static const char space[16] = {0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F}; + const __m128i dq = + _mm_loadu_si128(reinterpret_cast(&dquote[0])); + const __m128i bs = + _mm_loadu_si128(reinterpret_cast(&bslash[0])); + const __m128i sp = + _mm_loadu_si128(reinterpret_cast(&space[0])); + + for (;; p += 16) { + const __m128i s = _mm_load_si128(reinterpret_cast(p)); + const __m128i t1 = _mm_cmpeq_epi8(s, dq); + const __m128i t2 = _mm_cmpeq_epi8(s, bs); + const __m128i t3 = _mm_cmpeq_epi8( + _mm_max_epu8(s, sp), sp); // s < 0x20 <=> max(s, 0x1F) == 0x1F + const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); + unsigned short r = static_cast(_mm_movemask_epi8(x)); + if (RAPIDJSON_UNLIKELY(r != 0)) { // some of characters is escaped + size_t length; +#ifdef _MSC_VER // Find the index of first escaped + unsigned long offset; + _BitScanForward(&offset, r); + length = offset; +#else + length = static_cast(__builtin_ffs(r) - 1); +#endif + p += length; + break; + } + } + + is.src_ = is.dst_ = p; + } +#elif defined(RAPIDJSON_NEON) + // StringStream -> StackStream + static RAPIDJSON_FORCEINLINE void ScanCopyUnescapedString( + StringStream &is, StackStream &os) { + const char *p = is.src_; + + // Scan one by one until alignment (unaligned load may cross page boundary + // and cause crash) + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + while (p != nextAligned) + if (RAPIDJSON_UNLIKELY(*p == '\"') || RAPIDJSON_UNLIKELY(*p == '\\') || + RAPIDJSON_UNLIKELY(static_cast(*p) < 0x20)) { + is.src_ = p; + return; + } else + os.Put(*p++); + + // The rest of string using SIMD + const uint8x16_t s0 = vmovq_n_u8('"'); + const uint8x16_t s1 = vmovq_n_u8('\\'); + const uint8x16_t s2 = vmovq_n_u8('\b'); + const uint8x16_t s3 = vmovq_n_u8(32); + + for (;; p += 16) { + const uint8x16_t s = vld1q_u8(reinterpret_cast(p)); + uint8x16_t x = vceqq_u8(s, s0); + x = vorrq_u8(x, vceqq_u8(s, s1)); + x = vorrq_u8(x, vceqq_u8(s, s2)); + x = vorrq_u8(x, vcltq_u8(s, s3)); + + x = vrev64q_u8(x); // Rev in 64 + uint64_t low = vgetq_lane_u64(vreinterpretq_u64_u8(x), 0); // extract + uint64_t high = vgetq_lane_u64(vreinterpretq_u64_u8(x), 1); // extract + + SizeType length = 0; + bool escaped = false; + if (low == 0) { + if (high != 0) { + uint32_t lz = RAPIDJSON_CLZLL(high); + length = 8 + (lz >> 3); + escaped = true; + } + } else { + uint32_t lz = RAPIDJSON_CLZLL(low); + length = lz >> 3; + escaped = true; + } + if (RAPIDJSON_UNLIKELY(escaped)) { // some of characters is escaped + if (length != 0) { + char *q = reinterpret_cast(os.Push(length)); + for (size_t i = 0; i < length; i++) q[i] = p[i]; + + p += length; + } + break; + } + vst1q_u8(reinterpret_cast(os.Push(16)), s); + } + + is.src_ = p; + } + + // InsituStringStream -> InsituStringStream + static RAPIDJSON_FORCEINLINE void ScanCopyUnescapedString( + InsituStringStream &is, InsituStringStream &os) { + RAPIDJSON_ASSERT(&is == &os); + (void)os; + + if (is.src_ == is.dst_) { + SkipUnescapedString(is); + return; + } + + char *p = is.src_; + char *q = is.dst_; + + // Scan one by one until alignment (unaligned load may cross page boundary + // and cause crash) + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + while (p != nextAligned) + if (RAPIDJSON_UNLIKELY(*p == '\"') || RAPIDJSON_UNLIKELY(*p == '\\') || + RAPIDJSON_UNLIKELY(static_cast(*p) < 0x20)) { + is.src_ = p; + is.dst_ = q; + return; + } else + *q++ = *p++; + + // The rest of string using SIMD + const uint8x16_t s0 = vmovq_n_u8('"'); + const uint8x16_t s1 = vmovq_n_u8('\\'); + const uint8x16_t s2 = vmovq_n_u8('\b'); + const uint8x16_t s3 = vmovq_n_u8(32); + + for (;; p += 16, q += 16) { + const uint8x16_t s = vld1q_u8(reinterpret_cast(p)); + uint8x16_t x = vceqq_u8(s, s0); + x = vorrq_u8(x, vceqq_u8(s, s1)); + x = vorrq_u8(x, vceqq_u8(s, s2)); + x = vorrq_u8(x, vcltq_u8(s, s3)); + + x = vrev64q_u8(x); // Rev in 64 + uint64_t low = vgetq_lane_u64(vreinterpretq_u64_u8(x), 0); // extract + uint64_t high = vgetq_lane_u64(vreinterpretq_u64_u8(x), 1); // extract + + SizeType length = 0; + bool escaped = false; + if (low == 0) { + if (high != 0) { + uint32_t lz = RAPIDJSON_CLZLL(high); + length = 8 + (lz >> 3); + escaped = true; + } + } else { + uint32_t lz = RAPIDJSON_CLZLL(low); + length = lz >> 3; + escaped = true; + } + if (RAPIDJSON_UNLIKELY(escaped)) { // some of characters is escaped + for (const char *pend = p + length; p != pend;) { + *q++ = *p++; + } + break; + } + vst1q_u8(reinterpret_cast(q), s); + } + + is.src_ = p; + is.dst_ = q; + } + + // When read/write pointers are the same for insitu stream, just skip + // unescaped characters + static RAPIDJSON_FORCEINLINE void SkipUnescapedString( + InsituStringStream &is) { + RAPIDJSON_ASSERT(is.src_ == is.dst_); + char *p = is.src_; + + // Scan one by one until alignment (unaligned load may cross page boundary + // and cause crash) + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + for (; p != nextAligned; p++) + if (RAPIDJSON_UNLIKELY(*p == '\"') || RAPIDJSON_UNLIKELY(*p == '\\') || + RAPIDJSON_UNLIKELY(static_cast(*p) < 0x20)) { + is.src_ = is.dst_ = p; + return; + } + + // The rest of string using SIMD + const uint8x16_t s0 = vmovq_n_u8('"'); + const uint8x16_t s1 = vmovq_n_u8('\\'); + const uint8x16_t s2 = vmovq_n_u8('\b'); + const uint8x16_t s3 = vmovq_n_u8(32); + + for (;; p += 16) { + const uint8x16_t s = vld1q_u8(reinterpret_cast(p)); + uint8x16_t x = vceqq_u8(s, s0); + x = vorrq_u8(x, vceqq_u8(s, s1)); + x = vorrq_u8(x, vceqq_u8(s, s2)); + x = vorrq_u8(x, vcltq_u8(s, s3)); + + x = vrev64q_u8(x); // Rev in 64 + uint64_t low = vgetq_lane_u64(vreinterpretq_u64_u8(x), 0); // extract + uint64_t high = vgetq_lane_u64(vreinterpretq_u64_u8(x), 1); // extract + + if (low == 0) { + if (high != 0) { + uint32_t lz = RAPIDJSON_CLZLL(high); + p += 8 + (lz >> 3); + break; + } + } else { + uint32_t lz = RAPIDJSON_CLZLL(low); + p += lz >> 3; + break; + } + } + + is.src_ = is.dst_ = p; + } +#endif // RAPIDJSON_NEON + + template + class NumberStream; + + template + class NumberStream { + public: + typedef typename InputStream::Ch Ch; + + NumberStream(GenericReader &reader, InputStream &s) : is(s) { + (void)reader; + } + + RAPIDJSON_FORCEINLINE Ch Peek() const { return is.Peek(); } + RAPIDJSON_FORCEINLINE Ch TakePush() { return is.Take(); } + RAPIDJSON_FORCEINLINE Ch Take() { return is.Take(); } + RAPIDJSON_FORCEINLINE void Push(char) {} + + size_t Tell() { return is.Tell(); } + size_t Length() { return 0; } + const char *Pop() { return 0; } + + protected: + NumberStream &operator=(const NumberStream &); + + InputStream &is; + }; + + template + class NumberStream + : public NumberStream { + typedef NumberStream Base; + + public: + NumberStream(GenericReader &reader, InputStream &is) + : Base(reader, is), stackStream(reader.stack_) {} + + RAPIDJSON_FORCEINLINE Ch TakePush() { + stackStream.Put(static_cast(Base::is.Peek())); + return Base::is.Take(); + } + + RAPIDJSON_FORCEINLINE void Push(char c) { stackStream.Put(c); } + + size_t Length() { return stackStream.Length(); } + + const char *Pop() { + stackStream.Put('\0'); + return stackStream.Pop(); + } + + private: + StackStream stackStream; + }; + + template + class NumberStream + : public NumberStream { + typedef NumberStream Base; + + public: + NumberStream(GenericReader &reader, InputStream &is) : Base(reader, is) {} + + RAPIDJSON_FORCEINLINE Ch Take() { return Base::TakePush(); } + }; + + template + void ParseNumber(InputStream &is, Handler &handler) { + internal::StreamLocalCopy copy(is); + NumberStream + s(*this, copy.s); + + size_t startOffset = s.Tell(); + double d = 0.0; + bool useNanOrInf = false; + + // Parse minus + bool minus = Consume(s, '-'); + + // Parse int: zero / ( digit1-9 *DIGIT ) + unsigned i = 0; + uint64_t i64 = 0; + bool use64bit = false; + int significandDigit = 0; + if (RAPIDJSON_UNLIKELY(s.Peek() == '0')) { + i = 0; + s.TakePush(); + } else if (RAPIDJSON_LIKELY(s.Peek() >= '1' && s.Peek() <= '9')) { + i = static_cast(s.TakePush() - '0'); + + if (minus) + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + if (RAPIDJSON_UNLIKELY(i >= 214748364)) { // 2^31 = 2147483648 + if (RAPIDJSON_LIKELY(i != 214748364 || s.Peek() > '8')) { + i64 = i; + use64bit = true; + break; + } + } + i = i * 10 + static_cast(s.TakePush() - '0'); + significandDigit++; + } + else + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + if (RAPIDJSON_UNLIKELY(i >= 429496729)) { // 2^32 - 1 = 4294967295 + if (RAPIDJSON_LIKELY(i != 429496729 || s.Peek() > '5')) { + i64 = i; + use64bit = true; + break; + } + } + i = i * 10 + static_cast(s.TakePush() - '0'); + significandDigit++; + } + } + // Parse NaN or Infinity here + else if ((parseFlags & kParseNanAndInfFlag) && + RAPIDJSON_LIKELY((s.Peek() == 'I' || s.Peek() == 'N'))) { + if (Consume(s, 'N')) { + if (Consume(s, 'a') && Consume(s, 'N')) { + d = std::numeric_limits::quiet_NaN(); + useNanOrInf = true; + } + } else if (RAPIDJSON_LIKELY(Consume(s, 'I'))) { + if (Consume(s, 'n') && Consume(s, 'f')) { + d = (minus ? -std::numeric_limits::infinity() + : std::numeric_limits::infinity()); + useNanOrInf = true; + + if (RAPIDJSON_UNLIKELY(s.Peek() == 'i' && + !(Consume(s, 'i') && Consume(s, 'n') && + Consume(s, 'i') && Consume(s, 't') && + Consume(s, 'y')))) { + RAPIDJSON_PARSE_ERROR(kParseErrorValueInvalid, s.Tell()); + } + } + } + + if (RAPIDJSON_UNLIKELY(!useNanOrInf)) { + RAPIDJSON_PARSE_ERROR(kParseErrorValueInvalid, s.Tell()); + } + } else + RAPIDJSON_PARSE_ERROR(kParseErrorValueInvalid, s.Tell()); + + // Parse 64bit int + bool useDouble = false; + if (use64bit) { + if (minus) + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + if (RAPIDJSON_UNLIKELY( + i64 >= + RAPIDJSON_UINT64_C2( + 0x0CCCCCCC, 0xCCCCCCCC))) // 2^63 = 9223372036854775808 + if (RAPIDJSON_LIKELY( + i64 != RAPIDJSON_UINT64_C2(0x0CCCCCCC, 0xCCCCCCCC) || + s.Peek() > '8')) { + d = static_cast(i64); + useDouble = true; + break; + } + i64 = i64 * 10 + static_cast(s.TakePush() - '0'); + significandDigit++; + } + else + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + if (RAPIDJSON_UNLIKELY( + i64 >= RAPIDJSON_UINT64_C2( + 0x19999999, + 0x99999999))) // 2^64 - 1 = 18446744073709551615 + if (RAPIDJSON_LIKELY( + i64 != RAPIDJSON_UINT64_C2(0x19999999, 0x99999999) || + s.Peek() > '5')) { + d = static_cast(i64); + useDouble = true; + break; + } + i64 = i64 * 10 + static_cast(s.TakePush() - '0'); + significandDigit++; + } + } + + // Force double for big integer + if (useDouble) { + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + d = d * 10 + (s.TakePush() - '0'); + } + } + + // Parse frac = decimal-point 1*DIGIT + int expFrac = 0; + size_t decimalPosition; + if (Consume(s, '.')) { + decimalPosition = s.Length(); + + if (RAPIDJSON_UNLIKELY(!(s.Peek() >= '0' && s.Peek() <= '9'))) + RAPIDJSON_PARSE_ERROR(kParseErrorNumberMissFraction, s.Tell()); + + if (!useDouble) { +#if RAPIDJSON_64BIT + // Use i64 to store significand in 64-bit architecture + if (!use64bit) i64 = i; + + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + if (i64 > RAPIDJSON_UINT64_C2(0x1FFFFF, + 0xFFFFFFFF)) // 2^53 - 1 for fast path + break; + else { + i64 = i64 * 10 + static_cast(s.TakePush() - '0'); + --expFrac; + if (i64 != 0) significandDigit++; + } + } + + d = static_cast(i64); +#else + // Use double to store significand in 32-bit architecture + d = static_cast(use64bit ? i64 : i); +#endif + useDouble = true; + } + + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + if (significandDigit < 17) { + d = d * 10.0 + (s.TakePush() - '0'); + --expFrac; + if (RAPIDJSON_LIKELY(d > 0.0)) significandDigit++; + } else + s.TakePush(); + } + } else + decimalPosition = s.Length(); // decimal position at the end of integer. + + // Parse exp = e [ minus / plus ] 1*DIGIT + int exp = 0; + if (Consume(s, 'e') || Consume(s, 'E')) { + if (!useDouble) { + d = static_cast(use64bit ? i64 : i); + useDouble = true; + } + + bool expMinus = false; + if (Consume(s, '+')) + ; + else if (Consume(s, '-')) + expMinus = true; + + if (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + exp = static_cast(s.Take() - '0'); + if (expMinus) { + // (exp + expFrac) must not underflow int => we're detecting when -exp + // gets dangerously close to INT_MIN (a pessimistic next digit 9 would + // push it into underflow territory): + // + // -(exp * 10 + 9) + expFrac >= INT_MIN + // <=> exp <= (expFrac - INT_MIN - 9) / 10 + RAPIDJSON_ASSERT(expFrac <= 0); + int maxExp = (expFrac + 2147483639) / 10; + + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + exp = exp * 10 + static_cast(s.Take() - '0'); + if (RAPIDJSON_UNLIKELY(exp > maxExp)) { + while (RAPIDJSON_UNLIKELY( + s.Peek() >= '0' && + s.Peek() <= '9')) // Consume the rest of exponent + s.Take(); + } + } + } else { // positive exp + int maxExp = 308 - expFrac; + while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) { + exp = exp * 10 + static_cast(s.Take() - '0'); + if (RAPIDJSON_UNLIKELY(exp > maxExp)) + RAPIDJSON_PARSE_ERROR(kParseErrorNumberTooBig, startOffset); + } + } + } else + RAPIDJSON_PARSE_ERROR(kParseErrorNumberMissExponent, s.Tell()); + + if (expMinus) exp = -exp; + } + + // Finish parsing, call event according to the type of number. + bool cont = true; + + if (parseFlags & kParseNumbersAsStringsFlag) { + if (parseFlags & kParseInsituFlag) { + s.Pop(); // Pop stack no matter if it will be used or not. + typename InputStream::Ch *head = is.PutBegin(); + const size_t length = s.Tell() - startOffset; + RAPIDJSON_ASSERT(length <= 0xFFFFFFFF); + // unable to insert the \0 character here, it will erase the comma after + // this number + const typename TargetEncoding::Ch *const str = + reinterpret_cast(head); + cont = handler.RawNumber(str, SizeType(length), false); + } else { + SizeType numCharsToCopy = static_cast(s.Length()); + StringStream srcStream(s.Pop()); + StackStream dstStream(stack_); + while (numCharsToCopy--) { + Transcoder, TargetEncoding>::Transcode(srcStream, dstStream); + } + dstStream.Put('\0'); + const typename TargetEncoding::Ch *str = dstStream.Pop(); + const SizeType length = static_cast(dstStream.Length()) - 1; + cont = handler.RawNumber(str, SizeType(length), true); + } + } else { + size_t length = s.Length(); + const char *decimal = + s.Pop(); // Pop stack no matter if it will be used or not. + + if (useDouble) { + int p = exp + expFrac; + if (parseFlags & kParseFullPrecisionFlag) + d = internal::StrtodFullPrecision(d, p, decimal, length, + decimalPosition, exp); + else + d = internal::StrtodNormalPrecision(d, p); + + // Use > max, instead of == inf, to fix bogus warning -Wfloat-equal + if (d > (std::numeric_limits::max)()) { + // Overflow + // TODO: internal::StrtodX should report overflow (or underflow) + RAPIDJSON_PARSE_ERROR(kParseErrorNumberTooBig, startOffset); + } + + cont = handler.Double(minus ? -d : d); + } else if (useNanOrInf) { + cont = handler.Double(d); + } else { + if (use64bit) { + if (minus) + cont = handler.Int64(static_cast(~i64 + 1)); + else + cont = handler.Uint64(i64); + } else { + if (minus) + cont = handler.Int(static_cast(~i + 1)); + else + cont = handler.Uint(i); + } + } + } + if (RAPIDJSON_UNLIKELY(!cont)) + RAPIDJSON_PARSE_ERROR(kParseErrorTermination, startOffset); + } + + // Parse any JSON value + template + void ParseValue(InputStream &is, Handler &handler) { + switch (is.Peek()) { + case 'n': + ParseNull(is, handler); + break; + case 't': + ParseTrue(is, handler); + break; + case 'f': + ParseFalse(is, handler); + break; + case '"': + ParseString(is, handler); + break; + case '{': + ParseObject(is, handler); + break; + case '[': + ParseArray(is, handler); + break; + default: + ParseNumber(is, handler); + break; + } + } + + // Iterative Parsing + + // States + enum IterativeParsingState { + IterativeParsingFinishState = 0, // sink states at top + IterativeParsingErrorState, // sink states at top + IterativeParsingStartState, + + // Object states + IterativeParsingObjectInitialState, + IterativeParsingMemberKeyState, + IterativeParsingMemberValueState, + IterativeParsingObjectFinishState, + + // Array states + IterativeParsingArrayInitialState, + IterativeParsingElementState, + IterativeParsingArrayFinishState, + + // Single value state + IterativeParsingValueState, + + // Delimiter states (at bottom) + IterativeParsingElementDelimiterState, + IterativeParsingMemberDelimiterState, + IterativeParsingKeyValueDelimiterState, + + cIterativeParsingStateCount + }; + + // Tokens + enum Token { + LeftBracketToken = 0, + RightBracketToken, + + LeftCurlyBracketToken, + RightCurlyBracketToken, + + CommaToken, + ColonToken, + + StringToken, + FalseToken, + TrueToken, + NullToken, + NumberToken, + + kTokenCount + }; + + RAPIDJSON_FORCEINLINE Token Tokenize(Ch c) const { +//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN +#define N NumberToken +#define N16 N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N + // Maps from ASCII to Token + static const unsigned char tokenMap[256] = { + N16, // 00~0F + N16, // 10~1F + N, N, + StringToken, N, + N, N, + N, N, + N, N, + N, N, + CommaToken, N, + N, N, // 20~2F + N, N, + N, N, + N, N, + N, N, + N, N, + ColonToken, N, + N, N, + N, N, // 30~3F + N16, // 40~4F + N, N, + N, N, + N, N, + N, N, + N, N, + N, LeftBracketToken, + N, RightBracketToken, + N, N, // 50~5F + N, N, + N, N, + N, N, + FalseToken, N, + N, N, + N, N, + N, N, + NullToken, N, // 60~6F + N, N, + N, N, + TrueToken, N, + N, N, + N, N, + N, LeftCurlyBracketToken, + N, RightCurlyBracketToken, + N, N, // 70~7F + N16, N16, + N16, N16, + N16, N16, + N16, N16 // 80~FF + }; +#undef N +#undef N16 + //!@endcond + + if (sizeof(Ch) == 1 || static_cast(c) < 256) + return static_cast(tokenMap[static_cast(c)]); + else + return NumberToken; + } + + RAPIDJSON_FORCEINLINE IterativeParsingState + Predict(IterativeParsingState state, Token token) const { + // current state x one lookahead token -> new state + static const char G[cIterativeParsingStateCount][kTokenCount] = { + // Finish(sink state) + {IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState}, + // Error(sink state) + {IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState}, + // Start + { + IterativeParsingArrayInitialState, // Left bracket + IterativeParsingErrorState, // Right bracket + IterativeParsingObjectInitialState, // Left curly bracket + IterativeParsingErrorState, // Right curly bracket + IterativeParsingErrorState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingValueState, // String + IterativeParsingValueState, // False + IterativeParsingValueState, // True + IterativeParsingValueState, // Null + IterativeParsingValueState // Number + }, + // ObjectInitial + { + IterativeParsingErrorState, // Left bracket + IterativeParsingErrorState, // Right bracket + IterativeParsingErrorState, // Left curly bracket + IterativeParsingObjectFinishState, // Right curly bracket + IterativeParsingErrorState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingMemberKeyState, // String + IterativeParsingErrorState, // False + IterativeParsingErrorState, // True + IterativeParsingErrorState, // Null + IterativeParsingErrorState // Number + }, + // MemberKey + { + IterativeParsingErrorState, // Left bracket + IterativeParsingErrorState, // Right bracket + IterativeParsingErrorState, // Left curly bracket + IterativeParsingErrorState, // Right curly bracket + IterativeParsingErrorState, // Comma + IterativeParsingKeyValueDelimiterState, // Colon + IterativeParsingErrorState, // String + IterativeParsingErrorState, // False + IterativeParsingErrorState, // True + IterativeParsingErrorState, // Null + IterativeParsingErrorState // Number + }, + // MemberValue + { + IterativeParsingErrorState, // Left bracket + IterativeParsingErrorState, // Right bracket + IterativeParsingErrorState, // Left curly bracket + IterativeParsingObjectFinishState, // Right curly bracket + IterativeParsingMemberDelimiterState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingErrorState, // String + IterativeParsingErrorState, // False + IterativeParsingErrorState, // True + IterativeParsingErrorState, // Null + IterativeParsingErrorState // Number + }, + // ObjectFinish(sink state) + {IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState}, + // ArrayInitial + { + IterativeParsingArrayInitialState, // Left bracket(push Element + // state) + IterativeParsingArrayFinishState, // Right bracket + IterativeParsingObjectInitialState, // Left curly bracket(push + // Element state) + IterativeParsingErrorState, // Right curly bracket + IterativeParsingErrorState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingElementState, // String + IterativeParsingElementState, // False + IterativeParsingElementState, // True + IterativeParsingElementState, // Null + IterativeParsingElementState // Number + }, + // Element + { + IterativeParsingErrorState, // Left bracket + IterativeParsingArrayFinishState, // Right bracket + IterativeParsingErrorState, // Left curly bracket + IterativeParsingErrorState, // Right curly bracket + IterativeParsingElementDelimiterState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingErrorState, // String + IterativeParsingErrorState, // False + IterativeParsingErrorState, // True + IterativeParsingErrorState, // Null + IterativeParsingErrorState // Number + }, + // ArrayFinish(sink state) + {IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState}, + // Single Value (sink state) + {IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState, IterativeParsingErrorState, + IterativeParsingErrorState}, + // ElementDelimiter + { + IterativeParsingArrayInitialState, // Left bracket(push Element + // state) + IterativeParsingArrayFinishState, // Right bracket + IterativeParsingObjectInitialState, // Left curly bracket(push + // Element state) + IterativeParsingErrorState, // Right curly bracket + IterativeParsingErrorState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingElementState, // String + IterativeParsingElementState, // False + IterativeParsingElementState, // True + IterativeParsingElementState, // Null + IterativeParsingElementState // Number + }, + // MemberDelimiter + { + IterativeParsingErrorState, // Left bracket + IterativeParsingErrorState, // Right bracket + IterativeParsingErrorState, // Left curly bracket + IterativeParsingObjectFinishState, // Right curly bracket + IterativeParsingErrorState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingMemberKeyState, // String + IterativeParsingErrorState, // False + IterativeParsingErrorState, // True + IterativeParsingErrorState, // Null + IterativeParsingErrorState // Number + }, + // KeyValueDelimiter + { + IterativeParsingArrayInitialState, // Left bracket(push MemberValue + // state) + IterativeParsingErrorState, // Right bracket + IterativeParsingObjectInitialState, // Left curly bracket(push + // MemberValue state) + IterativeParsingErrorState, // Right curly bracket + IterativeParsingErrorState, // Comma + IterativeParsingErrorState, // Colon + IterativeParsingMemberValueState, // String + IterativeParsingMemberValueState, // False + IterativeParsingMemberValueState, // True + IterativeParsingMemberValueState, // Null + IterativeParsingMemberValueState // Number + }, + }; // End of G + + return static_cast(G[state][token]); + } + + // Make an advance in the token stream and state based on the candidate + // destination state which was returned by Transit(). May return a new state + // on state pop. + template + RAPIDJSON_FORCEINLINE IterativeParsingState Transit(IterativeParsingState src, + Token token, + IterativeParsingState dst, + InputStream &is, + Handler &handler) { + (void)token; + + switch (dst) { + case IterativeParsingErrorState: + return dst; + + case IterativeParsingObjectInitialState: + case IterativeParsingArrayInitialState: { + // Push the state(Element or MemeberValue) if we are nested in another + // array or value of member. In this way we can get the correct state on + // ObjectFinish or ArrayFinish by frame pop. + IterativeParsingState n = src; + if (src == IterativeParsingArrayInitialState || + src == IterativeParsingElementDelimiterState) + n = IterativeParsingElementState; + else if (src == IterativeParsingKeyValueDelimiterState) + n = IterativeParsingMemberValueState; + // Push current state. + *stack_.template Push(1) = n; + // Initialize and push the member/element count. + *stack_.template Push(1) = 0; + // Call handler + bool hr = (dst == IterativeParsingObjectInitialState) + ? handler.StartObject() + : handler.StartArray(); + // On handler short circuits the parsing. + if (!hr) { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorTermination, is.Tell()); + return IterativeParsingErrorState; + } else { + is.Take(); + return dst; + } + } + + case IterativeParsingMemberKeyState: + ParseString(is, handler, true); + if (HasParseError()) + return IterativeParsingErrorState; + else + return dst; + + case IterativeParsingKeyValueDelimiterState: + RAPIDJSON_ASSERT(token == ColonToken); + is.Take(); + return dst; + + case IterativeParsingMemberValueState: + // Must be non-compound value. Or it would be ObjectInitial or + // ArrayInitial state. + ParseValue(is, handler); + if (HasParseError()) { + return IterativeParsingErrorState; + } + return dst; + + case IterativeParsingElementState: + // Must be non-compound value. Or it would be ObjectInitial or + // ArrayInitial state. + ParseValue(is, handler); + if (HasParseError()) { + return IterativeParsingErrorState; + } + return dst; + + case IterativeParsingMemberDelimiterState: + case IterativeParsingElementDelimiterState: + is.Take(); + // Update member/element count. + *stack_.template Top() = *stack_.template Top() + 1; + return dst; + + case IterativeParsingObjectFinishState: { + // Transit from delimiter is only allowed when trailing commas are + // enabled + if (!(parseFlags & kParseTrailingCommasFlag) && + src == IterativeParsingMemberDelimiterState) { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorObjectMissName, is.Tell()); + return IterativeParsingErrorState; + } + // Get member count. + SizeType c = *stack_.template Pop(1); + // If the object is not empty, count the last member. + if (src == IterativeParsingMemberValueState) ++c; + // Restore the state. + IterativeParsingState n = static_cast( + *stack_.template Pop(1)); + // Transit to Finish state if this is the topmost scope. + if (n == IterativeParsingStartState) n = IterativeParsingFinishState; + // Call handler + bool hr = handler.EndObject(c); + // On handler short circuits the parsing. + if (!hr) { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorTermination, is.Tell()); + return IterativeParsingErrorState; + } else { + is.Take(); + return n; + } + } + + case IterativeParsingArrayFinishState: { + // Transit from delimiter is only allowed when trailing commas are + // enabled + if (!(parseFlags & kParseTrailingCommasFlag) && + src == IterativeParsingElementDelimiterState) { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorValueInvalid, is.Tell()); + return IterativeParsingErrorState; + } + // Get element count. + SizeType c = *stack_.template Pop(1); + // If the array is not empty, count the last element. + if (src == IterativeParsingElementState) ++c; + // Restore the state. + IterativeParsingState n = static_cast( + *stack_.template Pop(1)); + // Transit to Finish state if this is the topmost scope. + if (n == IterativeParsingStartState) n = IterativeParsingFinishState; + // Call handler + bool hr = handler.EndArray(c); + // On handler short circuits the parsing. + if (!hr) { + RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorTermination, is.Tell()); + return IterativeParsingErrorState; + } else { + is.Take(); + return n; + } + } + + default: + // This branch is for IterativeParsingValueState actually. + // Use `default:` rather than + // `case IterativeParsingValueState:` is for code coverage. + + // The IterativeParsingStartState is not enumerated in this switch-case. + // It is impossible for that case. And it can be caught by following + // assertion. + + // The IterativeParsingFinishState is not enumerated in this switch-case + // either. It is a "derivative" state which cannot triggered from + // Predict() directly. Therefore it cannot happen here. And it can be + // caught by following assertion. + RAPIDJSON_ASSERT(dst == IterativeParsingValueState); + + // Must be non-compound value. Or it would be ObjectInitial or + // ArrayInitial state. + ParseValue(is, handler); + if (HasParseError()) { + return IterativeParsingErrorState; + } + return IterativeParsingFinishState; + } + } + + template + void HandleError(IterativeParsingState src, InputStream &is) { + if (HasParseError()) { + // Error flag has been set. + return; + } + + switch (src) { + case IterativeParsingStartState: + RAPIDJSON_PARSE_ERROR(kParseErrorDocumentEmpty, is.Tell()); + return; + case IterativeParsingFinishState: + RAPIDJSON_PARSE_ERROR(kParseErrorDocumentRootNotSingular, is.Tell()); + return; + case IterativeParsingObjectInitialState: + case IterativeParsingMemberDelimiterState: + RAPIDJSON_PARSE_ERROR(kParseErrorObjectMissName, is.Tell()); + return; + case IterativeParsingMemberKeyState: + RAPIDJSON_PARSE_ERROR(kParseErrorObjectMissColon, is.Tell()); + return; + case IterativeParsingMemberValueState: + RAPIDJSON_PARSE_ERROR(kParseErrorObjectMissCommaOrCurlyBracket, + is.Tell()); + return; + case IterativeParsingKeyValueDelimiterState: + case IterativeParsingArrayInitialState: + case IterativeParsingElementDelimiterState: + RAPIDJSON_PARSE_ERROR(kParseErrorValueInvalid, is.Tell()); + return; + default: + RAPIDJSON_ASSERT(src == IterativeParsingElementState); + RAPIDJSON_PARSE_ERROR(kParseErrorArrayMissCommaOrSquareBracket, + is.Tell()); + return; + } + } + + RAPIDJSON_FORCEINLINE bool IsIterativeParsingDelimiterState( + IterativeParsingState s) const { + return s >= IterativeParsingElementDelimiterState; + } + + RAPIDJSON_FORCEINLINE bool IsIterativeParsingCompleteState( + IterativeParsingState s) const { + return s <= IterativeParsingErrorState; + } + + template + ParseResult IterativeParse(InputStream &is, Handler &handler) { + parseResult_.Clear(); + ClearStackOnExit scope(*this); + IterativeParsingState state = IterativeParsingStartState; + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_); + while (is.Peek() != '\0') { + Token t = Tokenize(is.Peek()); + IterativeParsingState n = Predict(state, t); + IterativeParsingState d = Transit(state, t, n, is, handler); + + if (d == IterativeParsingErrorState) { + HandleError(state, is); + break; + } + + state = d; + + // Do not further consume streams if a root JSON has been parsed. + if ((parseFlags & kParseStopWhenDoneFlag) && + state == IterativeParsingFinishState) + break; + + SkipWhitespaceAndComments(is); + RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_); + } + + // Handle the end of file. + if (state != IterativeParsingFinishState) HandleError(state, is); + + return parseResult_; + } + + static const size_t kDefaultStackCapacity = + 256; //!< Default stack capacity in bytes for storing a single decoded + //!< string. + internal::Stack + stack_; //!< A stack for storing decoded string temporarily during + //!< non-destructive parsing. + ParseResult parseResult_; + IterativeParsingState state_; +}; // class GenericReader + +//! Reader with UTF8 encoding and default allocator. +typedef GenericReader, UTF8<>> Reader; + +RAPIDJSON_NAMESPACE_END + +#if defined(__clang__) || defined(_MSC_VER) +RAPIDJSON_DIAG_POP +#endif + +#ifdef __GNUC__ +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_READER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/schema.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/schema.h new file mode 100644 index 0000000..b9dc8c8 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/schema.h @@ -0,0 +1,2743 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available-> +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All +// rights reserved-> +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License-> You may obtain a copy of the License +// at +// +// http://opensource->org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied-> See the +// License for the specific language governing permissions and limitations under +// the License-> + +#ifndef RAPIDJSON_SCHEMA_H_ +#define RAPIDJSON_SCHEMA_H_ + +#include // abs, floor +#include "document.h" +#include "pointer.h" +#include "stringbuffer.h" + +#if !defined(RAPIDJSON_SCHEMA_USE_INTERNALREGEX) +#define RAPIDJSON_SCHEMA_USE_INTERNALREGEX 1 +#else +#define RAPIDJSON_SCHEMA_USE_INTERNALREGEX 0 +#endif + +#if !RAPIDJSON_SCHEMA_USE_INTERNALREGEX && \ + defined(RAPIDJSON_SCHEMA_USE_STDREGEX) && \ + (__cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1800)) +#define RAPIDJSON_SCHEMA_USE_STDREGEX 1 +#else +#define RAPIDJSON_SCHEMA_USE_STDREGEX 0 +#endif + +#if RAPIDJSON_SCHEMA_USE_INTERNALREGEX +#include "internal/regex.h" +#elif RAPIDJSON_SCHEMA_USE_STDREGEX +#include +#endif + +#if RAPIDJSON_SCHEMA_USE_INTERNALREGEX || RAPIDJSON_SCHEMA_USE_STDREGEX +#define RAPIDJSON_SCHEMA_HAS_REGEX 1 +#else +#define RAPIDJSON_SCHEMA_HAS_REGEX 0 +#endif + +#ifndef RAPIDJSON_SCHEMA_VERBOSE +#define RAPIDJSON_SCHEMA_VERBOSE 0 +#endif + +#if RAPIDJSON_SCHEMA_VERBOSE +#include "stringbuffer.h" +#endif + +RAPIDJSON_DIAG_PUSH + +#if defined(__GNUC__) +RAPIDJSON_DIAG_OFF(effc++) +#endif + +#ifdef __clang__ +RAPIDJSON_DIAG_OFF(weak - vtables) +RAPIDJSON_DIAG_OFF(exit - time - destructors) +RAPIDJSON_DIAG_OFF(c++ 98 - compat - pedantic) +RAPIDJSON_DIAG_OFF(variadic - macros) +#elif defined(_MSC_VER) +RAPIDJSON_DIAG_OFF(4512) // assignment operator could not be generated +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +/////////////////////////////////////////////////////////////////////////////// +// Verbose Utilities + +#if RAPIDJSON_SCHEMA_VERBOSE + +namespace internal { + +inline void PrintInvalidKeyword(const char *keyword) { + printf("Fail keyword: %s\n", keyword); +} + +inline void PrintInvalidKeyword(const wchar_t *keyword) { + wprintf(L"Fail keyword: %ls\n", keyword); +} + +inline void PrintInvalidDocument(const char *document) { + printf("Fail document: %s\n\n", document); +} + +inline void PrintInvalidDocument(const wchar_t *document) { + wprintf(L"Fail document: %ls\n\n", document); +} + +inline void PrintValidatorPointers(unsigned depth, const char *s, + const char *d) { + printf("S: %*s%s\nD: %*s%s\n\n", depth * 4, " ", s, depth * 4, " ", d); +} + +inline void PrintValidatorPointers(unsigned depth, const wchar_t *s, + const wchar_t *d) { + wprintf(L"S: %*ls%ls\nD: %*ls%ls\n\n", depth * 4, L" ", s, depth * 4, L" ", + d); +} + +} // namespace internal + +#endif // RAPIDJSON_SCHEMA_VERBOSE + +/////////////////////////////////////////////////////////////////////////////// +// RAPIDJSON_INVALID_KEYWORD_RETURN + +#if RAPIDJSON_SCHEMA_VERBOSE +#define RAPIDJSON_INVALID_KEYWORD_VERBOSE(keyword) \ + internal::PrintInvalidKeyword(keyword) +#else +#define RAPIDJSON_INVALID_KEYWORD_VERBOSE(keyword) +#endif + +#define RAPIDJSON_INVALID_KEYWORD_RETURN(keyword) \ + RAPIDJSON_MULTILINEMACRO_BEGIN \ + context.invalidKeyword = keyword.GetString(); \ + RAPIDJSON_INVALID_KEYWORD_VERBOSE(keyword.GetString()); \ + return false; \ + RAPIDJSON_MULTILINEMACRO_END + +/////////////////////////////////////////////////////////////////////////////// +// Forward declarations + +template +class GenericSchemaDocument; + +namespace internal { + +template +class Schema; + +/////////////////////////////////////////////////////////////////////////////// +// ISchemaValidator + +class ISchemaValidator { + public: + virtual ~ISchemaValidator() {} + virtual bool IsValid() const = 0; +}; + +/////////////////////////////////////////////////////////////////////////////// +// ISchemaStateFactory + +template +class ISchemaStateFactory { + public: + virtual ~ISchemaStateFactory() {} + virtual ISchemaValidator *CreateSchemaValidator(const SchemaType &) = 0; + virtual void DestroySchemaValidator(ISchemaValidator *validator) = 0; + virtual void *CreateHasher() = 0; + virtual uint64_t GetHashCode(void *hasher) = 0; + virtual void DestroryHasher(void *hasher) = 0; + virtual void *MallocState(size_t size) = 0; + virtual void FreeState(void *p) = 0; +}; + +/////////////////////////////////////////////////////////////////////////////// +// IValidationErrorHandler + +template +class IValidationErrorHandler { + public: + typedef typename SchemaType::Ch Ch; + typedef typename SchemaType::SValue SValue; + + virtual ~IValidationErrorHandler() {} + + virtual void NotMultipleOf(int64_t actual, const SValue &expected) = 0; + virtual void NotMultipleOf(uint64_t actual, const SValue &expected) = 0; + virtual void NotMultipleOf(double actual, const SValue &expected) = 0; + virtual void AboveMaximum(int64_t actual, const SValue &expected, + bool exclusive) = 0; + virtual void AboveMaximum(uint64_t actual, const SValue &expected, + bool exclusive) = 0; + virtual void AboveMaximum(double actual, const SValue &expected, + bool exclusive) = 0; + virtual void BelowMinimum(int64_t actual, const SValue &expected, + bool exclusive) = 0; + virtual void BelowMinimum(uint64_t actual, const SValue &expected, + bool exclusive) = 0; + virtual void BelowMinimum(double actual, const SValue &expected, + bool exclusive) = 0; + + virtual void TooLong(const Ch *str, SizeType length, SizeType expected) = 0; + virtual void TooShort(const Ch *str, SizeType length, SizeType expected) = 0; + virtual void DoesNotMatch(const Ch *str, SizeType length) = 0; + + virtual void DisallowedItem(SizeType index) = 0; + virtual void TooFewItems(SizeType actualCount, SizeType expectedCount) = 0; + virtual void TooManyItems(SizeType actualCount, SizeType expectedCount) = 0; + virtual void DuplicateItems(SizeType index1, SizeType index2) = 0; + + virtual void TooManyProperties(SizeType actualCount, + SizeType expectedCount) = 0; + virtual void TooFewProperties(SizeType actualCount, + SizeType expectedCount) = 0; + virtual void StartMissingProperties() = 0; + virtual void AddMissingProperty(const SValue &name) = 0; + virtual bool EndMissingProperties() = 0; + virtual void PropertyViolations(ISchemaValidator **subvalidators, + SizeType count) = 0; + virtual void DisallowedProperty(const Ch *name, SizeType length) = 0; + + virtual void StartDependencyErrors() = 0; + virtual void StartMissingDependentProperties() = 0; + virtual void AddMissingDependentProperty(const SValue &targetName) = 0; + virtual void EndMissingDependentProperties(const SValue &sourceName) = 0; + virtual void AddDependencySchemaError(const SValue &souceName, + ISchemaValidator *subvalidator) = 0; + virtual bool EndDependencyErrors() = 0; + + virtual void DisallowedValue() = 0; + virtual void StartDisallowedType() = 0; + virtual void AddExpectedType( + const typename SchemaType::ValueType &expectedType) = 0; + virtual void EndDisallowedType( + const typename SchemaType::ValueType &actualType) = 0; + virtual void NotAllOf(ISchemaValidator **subvalidators, SizeType count) = 0; + virtual void NoneOf(ISchemaValidator **subvalidators, SizeType count) = 0; + virtual void NotOneOf(ISchemaValidator **subvalidators, SizeType count) = 0; + virtual void Disallowed() = 0; +}; + +/////////////////////////////////////////////////////////////////////////////// +// Hasher + +// For comparison of compound value +template +class Hasher { + public: + typedef typename Encoding::Ch Ch; + + Hasher(Allocator *allocator = 0, size_t stackCapacity = kDefaultSize) + : stack_(allocator, stackCapacity) {} + + bool Null() { return WriteType(kNullType); } + bool Bool(bool b) { return WriteType(b ? kTrueType : kFalseType); } + bool Int(int i) { + Number n; + n.u.i = i; + n.d = static_cast(i); + return WriteNumber(n); + } + bool Uint(unsigned u) { + Number n; + n.u.u = u; + n.d = static_cast(u); + return WriteNumber(n); + } + bool Int64(int64_t i) { + Number n; + n.u.i = i; + n.d = static_cast(i); + return WriteNumber(n); + } + bool Uint64(uint64_t u) { + Number n; + n.u.u = u; + n.d = static_cast(u); + return WriteNumber(n); + } + bool Double(double d) { + Number n; + if (d < 0) + n.u.i = static_cast(d); + else + n.u.u = static_cast(d); + n.d = d; + return WriteNumber(n); + } + + bool RawNumber(const Ch *str, SizeType len, bool) { + WriteBuffer(kNumberType, str, len * sizeof(Ch)); + return true; + } + + bool String(const Ch *str, SizeType len, bool) { + WriteBuffer(kStringType, str, len * sizeof(Ch)); + return true; + } + + bool StartObject() { return true; } + bool Key(const Ch *str, SizeType len, bool copy) { + return String(str, len, copy); + } + bool EndObject(SizeType memberCount) { + uint64_t h = Hash(0, kObjectType); + uint64_t *kv = stack_.template Pop(memberCount * 2); + for (SizeType i = 0; i < memberCount; i++) + h ^= Hash(kv[i * 2], + kv[i * 2 + 1]); // Use xor to achieve member order insensitive + *stack_.template Push() = h; + return true; + } + + bool StartArray() { return true; } + bool EndArray(SizeType elementCount) { + uint64_t h = Hash(0, kArrayType); + uint64_t *e = stack_.template Pop(elementCount); + for (SizeType i = 0; i < elementCount; i++) + h = Hash(h, e[i]); // Use hash to achieve element order sensitive + *stack_.template Push() = h; + return true; + } + + bool IsValid() const { return stack_.GetSize() == sizeof(uint64_t); } + + uint64_t GetHashCode() const { + RAPIDJSON_ASSERT(IsValid()); + return *stack_.template Top(); + } + + private: + static const size_t kDefaultSize = 256; + struct Number { + union U { + uint64_t u; + int64_t i; + } u; + double d; + }; + + bool WriteType(Type type) { return WriteBuffer(type, 0, 0); } + + bool WriteNumber(const Number &n) { + return WriteBuffer(kNumberType, &n, sizeof(n)); + } + + bool WriteBuffer(Type type, const void *data, size_t len) { + // FNV-1a from http://isthe.com/chongo/tech/comp/fnv/ + uint64_t h = Hash(RAPIDJSON_UINT64_C2(0x84222325, 0xcbf29ce4), type); + const unsigned char *d = static_cast(data); + for (size_t i = 0; i < len; i++) h = Hash(h, d[i]); + *stack_.template Push() = h; + return true; + } + + static uint64_t Hash(uint64_t h, uint64_t d) { + static const uint64_t kPrime = RAPIDJSON_UINT64_C2(0x00000100, 0x000001b3); + h ^= d; + h *= kPrime; + return h; + } + + Stack stack_; +}; + +/////////////////////////////////////////////////////////////////////////////// +// SchemaValidationContext + +template +struct SchemaValidationContext { + typedef Schema SchemaType; + typedef ISchemaStateFactory SchemaValidatorFactoryType; + typedef IValidationErrorHandler ErrorHandlerType; + typedef typename SchemaType::ValueType ValueType; + typedef typename ValueType::Ch Ch; + + enum PatternValidatorType { + kPatternValidatorOnly, + kPatternValidatorWithProperty, + kPatternValidatorWithAdditionalProperty + }; + + SchemaValidationContext(SchemaValidatorFactoryType &f, ErrorHandlerType &eh, + const SchemaType *s) + : factory(f), + error_handler(eh), + schema(s), + valueSchema(), + invalidKeyword(), + hasher(), + arrayElementHashCodes(), + validators(), + validatorCount(), + patternPropertiesValidators(), + patternPropertiesValidatorCount(), + patternPropertiesSchemas(), + patternPropertiesSchemaCount(), + valuePatternValidatorType(kPatternValidatorOnly), + propertyExist(), + inArray(false), + valueUniqueness(false), + arrayUniqueness(false) {} + + ~SchemaValidationContext() { + if (hasher) factory.DestroryHasher(hasher); + if (validators) { + for (SizeType i = 0; i < validatorCount; i++) + factory.DestroySchemaValidator(validators[i]); + factory.FreeState(validators); + } + if (patternPropertiesValidators) { + for (SizeType i = 0; i < patternPropertiesValidatorCount; i++) + factory.DestroySchemaValidator(patternPropertiesValidators[i]); + factory.FreeState(patternPropertiesValidators); + } + if (patternPropertiesSchemas) factory.FreeState(patternPropertiesSchemas); + if (propertyExist) factory.FreeState(propertyExist); + } + + SchemaValidatorFactoryType &factory; + ErrorHandlerType &error_handler; + const SchemaType *schema; + const SchemaType *valueSchema; + const Ch *invalidKeyword; + void *hasher; // Only validator access + void *arrayElementHashCodes; // Only validator access this + ISchemaValidator **validators; + SizeType validatorCount; + ISchemaValidator **patternPropertiesValidators; + SizeType patternPropertiesValidatorCount; + const SchemaType **patternPropertiesSchemas; + SizeType patternPropertiesSchemaCount; + PatternValidatorType valuePatternValidatorType; + PatternValidatorType objectPatternValidatorType; + SizeType arrayElementIndex; + bool *propertyExist; + bool inArray; + bool valueUniqueness; + bool arrayUniqueness; +}; + +/////////////////////////////////////////////////////////////////////////////// +// Schema + +template +class Schema { + public: + typedef typename SchemaDocumentType::ValueType ValueType; + typedef typename SchemaDocumentType::AllocatorType AllocatorType; + typedef typename SchemaDocumentType::PointerType PointerType; + typedef typename ValueType::EncodingType EncodingType; + typedef typename EncodingType::Ch Ch; + typedef SchemaValidationContext Context; + typedef Schema SchemaType; + typedef GenericValue SValue; + typedef IValidationErrorHandler ErrorHandler; + friend class GenericSchemaDocument; + + Schema(SchemaDocumentType *schemaDocument, const PointerType &p, + const ValueType &value, const ValueType &document, + AllocatorType *allocator) + : allocator_(allocator), + uri_(schemaDocument->GetURI(), *allocator), + pointer_(p, allocator), + typeless_(schemaDocument->GetTypeless()), + enum_(), + enumCount_(), + not_(), + type_((1 << kTotalSchemaType) - 1), // typeless + validatorCount_(), + notValidatorIndex_(), + properties_(), + additionalPropertiesSchema_(), + patternProperties_(), + patternPropertyCount_(), + propertyCount_(), + minProperties_(), + maxProperties_(SizeType(~0)), + additionalProperties_(true), + hasDependencies_(), + hasRequired_(), + hasSchemaDependencies_(), + additionalItemsSchema_(), + itemsList_(), + itemsTuple_(), + itemsTupleCount_(), + minItems_(), + maxItems_(SizeType(~0)), + additionalItems_(true), + uniqueItems_(false), + pattern_(), + minLength_(0), + maxLength_(~SizeType(0)), + exclusiveMinimum_(false), + exclusiveMaximum_(false), + defaultValueLength_(0) { + typedef typename SchemaDocumentType::ValueType ValueType; + typedef typename ValueType::ConstValueIterator ConstValueIterator; + typedef typename ValueType::ConstMemberIterator ConstMemberIterator; + + if (!value.IsObject()) return; + + if (const ValueType *v = GetMember(value, GetTypeString())) { + type_ = 0; + if (v->IsString()) + AddType(*v); + else if (v->IsArray()) + for (ConstValueIterator itr = v->Begin(); itr != v->End(); ++itr) + AddType(*itr); + } + + if (const ValueType *v = GetMember(value, GetEnumString())) + if (v->IsArray() && v->Size() > 0) { + enum_ = static_cast( + allocator_->Malloc(sizeof(uint64_t) * v->Size())); + for (ConstValueIterator itr = v->Begin(); itr != v->End(); ++itr) { + typedef Hasher> EnumHasherType; + char buffer[256u + 24]; + MemoryPoolAllocator<> hasherAllocator(buffer, sizeof(buffer)); + EnumHasherType h(&hasherAllocator, 256); + itr->Accept(h); + enum_[enumCount_++] = h.GetHashCode(); + } + } + + if (schemaDocument) { + AssignIfExist(allOf_, *schemaDocument, p, value, GetAllOfString(), + document); + AssignIfExist(anyOf_, *schemaDocument, p, value, GetAnyOfString(), + document); + AssignIfExist(oneOf_, *schemaDocument, p, value, GetOneOfString(), + document); + } + + if (const ValueType *v = GetMember(value, GetNotString())) { + schemaDocument->CreateSchema(¬_, p.Append(GetNotString(), allocator_), + *v, document); + notValidatorIndex_ = validatorCount_; + validatorCount_++; + } + + // Object + + const ValueType *properties = GetMember(value, GetPropertiesString()); + const ValueType *required = GetMember(value, GetRequiredString()); + const ValueType *dependencies = GetMember(value, GetDependenciesString()); + { + // Gather properties from properties/required/dependencies + SValue allProperties(kArrayType); + + if (properties && properties->IsObject()) + for (ConstMemberIterator itr = properties->MemberBegin(); + itr != properties->MemberEnd(); ++itr) + AddUniqueElement(allProperties, itr->name); + + if (required && required->IsArray()) + for (ConstValueIterator itr = required->Begin(); itr != required->End(); + ++itr) + if (itr->IsString()) AddUniqueElement(allProperties, *itr); + + if (dependencies && dependencies->IsObject()) + for (ConstMemberIterator itr = dependencies->MemberBegin(); + itr != dependencies->MemberEnd(); ++itr) { + AddUniqueElement(allProperties, itr->name); + if (itr->value.IsArray()) + for (ConstValueIterator i = itr->value.Begin(); + i != itr->value.End(); ++i) + if (i->IsString()) AddUniqueElement(allProperties, *i); + } + + if (allProperties.Size() > 0) { + propertyCount_ = allProperties.Size(); + properties_ = static_cast( + allocator_->Malloc(sizeof(Property) * propertyCount_)); + for (SizeType i = 0; i < propertyCount_; i++) { + new (&properties_[i]) Property(); + properties_[i].name = allProperties[i]; + properties_[i].schema = typeless_; + } + } + } + + if (properties && properties->IsObject()) { + PointerType q = p.Append(GetPropertiesString(), allocator_); + for (ConstMemberIterator itr = properties->MemberBegin(); + itr != properties->MemberEnd(); ++itr) { + SizeType index; + if (FindPropertyIndex(itr->name, &index)) + schemaDocument->CreateSchema(&properties_[index].schema, + q.Append(itr->name, allocator_), + itr->value, document); + } + } + + if (const ValueType *v = GetMember(value, GetPatternPropertiesString())) { + PointerType q = p.Append(GetPatternPropertiesString(), allocator_); + patternProperties_ = static_cast( + allocator_->Malloc(sizeof(PatternProperty) * v->MemberCount())); + patternPropertyCount_ = 0; + + for (ConstMemberIterator itr = v->MemberBegin(); itr != v->MemberEnd(); + ++itr) { + new (&patternProperties_[patternPropertyCount_]) PatternProperty(); + patternProperties_[patternPropertyCount_].pattern = + CreatePattern(itr->name); + schemaDocument->CreateSchema( + &patternProperties_[patternPropertyCount_].schema, + q.Append(itr->name, allocator_), itr->value, document); + patternPropertyCount_++; + } + } + + if (required && required->IsArray()) + for (ConstValueIterator itr = required->Begin(); itr != required->End(); + ++itr) + if (itr->IsString()) { + SizeType index; + if (FindPropertyIndex(*itr, &index)) { + properties_[index].required = true; + hasRequired_ = true; + } + } + + if (dependencies && dependencies->IsObject()) { + PointerType q = p.Append(GetDependenciesString(), allocator_); + hasDependencies_ = true; + for (ConstMemberIterator itr = dependencies->MemberBegin(); + itr != dependencies->MemberEnd(); ++itr) { + SizeType sourceIndex; + if (FindPropertyIndex(itr->name, &sourceIndex)) { + if (itr->value.IsArray()) { + properties_[sourceIndex].dependencies = static_cast( + allocator_->Malloc(sizeof(bool) * propertyCount_)); + std::memset(properties_[sourceIndex].dependencies, 0, + sizeof(bool) * propertyCount_); + for (ConstValueIterator targetItr = itr->value.Begin(); + targetItr != itr->value.End(); ++targetItr) { + SizeType targetIndex; + if (FindPropertyIndex(*targetItr, &targetIndex)) + properties_[sourceIndex].dependencies[targetIndex] = true; + } + } else if (itr->value.IsObject()) { + hasSchemaDependencies_ = true; + schemaDocument->CreateSchema( + &properties_[sourceIndex].dependenciesSchema, + q.Append(itr->name, allocator_), itr->value, document); + properties_[sourceIndex].dependenciesValidatorIndex = + validatorCount_; + validatorCount_++; + } + } + } + } + + if (const ValueType *v = + GetMember(value, GetAdditionalPropertiesString())) { + if (v->IsBool()) + additionalProperties_ = v->GetBool(); + else if (v->IsObject()) + schemaDocument->CreateSchema( + &additionalPropertiesSchema_, + p.Append(GetAdditionalPropertiesString(), allocator_), *v, + document); + } + + AssignIfExist(minProperties_, value, GetMinPropertiesString()); + AssignIfExist(maxProperties_, value, GetMaxPropertiesString()); + + // Array + if (const ValueType *v = GetMember(value, GetItemsString())) { + PointerType q = p.Append(GetItemsString(), allocator_); + if (v->IsObject()) // List validation + schemaDocument->CreateSchema(&itemsList_, q, *v, document); + else if (v->IsArray()) { // Tuple validation + itemsTuple_ = static_cast( + allocator_->Malloc(sizeof(const Schema *) * v->Size())); + SizeType index = 0; + for (ConstValueIterator itr = v->Begin(); itr != v->End(); + ++itr, index++) + schemaDocument->CreateSchema(&itemsTuple_[itemsTupleCount_++], + q.Append(index, allocator_), *itr, + document); + } + } + + AssignIfExist(minItems_, value, GetMinItemsString()); + AssignIfExist(maxItems_, value, GetMaxItemsString()); + + if (const ValueType *v = GetMember(value, GetAdditionalItemsString())) { + if (v->IsBool()) + additionalItems_ = v->GetBool(); + else if (v->IsObject()) + schemaDocument->CreateSchema( + &additionalItemsSchema_, + p.Append(GetAdditionalItemsString(), allocator_), *v, document); + } + + AssignIfExist(uniqueItems_, value, GetUniqueItemsString()); + + // String + AssignIfExist(minLength_, value, GetMinLengthString()); + AssignIfExist(maxLength_, value, GetMaxLengthString()); + + if (const ValueType *v = GetMember(value, GetPatternString())) + pattern_ = CreatePattern(*v); + + // Number + if (const ValueType *v = GetMember(value, GetMinimumString())) + if (v->IsNumber()) minimum_.CopyFrom(*v, *allocator_); + + if (const ValueType *v = GetMember(value, GetMaximumString())) + if (v->IsNumber()) maximum_.CopyFrom(*v, *allocator_); + + AssignIfExist(exclusiveMinimum_, value, GetExclusiveMinimumString()); + AssignIfExist(exclusiveMaximum_, value, GetExclusiveMaximumString()); + + if (const ValueType *v = GetMember(value, GetMultipleOfString())) + if (v->IsNumber() && v->GetDouble() > 0.0) + multipleOf_.CopyFrom(*v, *allocator_); + + // Default + if (const ValueType *v = GetMember(value, GetDefaultValueString())) + if (v->IsString()) defaultValueLength_ = v->GetStringLength(); + } + + ~Schema() { + AllocatorType::Free(enum_); + if (properties_) { + for (SizeType i = 0; i < propertyCount_; i++) properties_[i].~Property(); + AllocatorType::Free(properties_); + } + if (patternProperties_) { + for (SizeType i = 0; i < patternPropertyCount_; i++) + patternProperties_[i].~PatternProperty(); + AllocatorType::Free(patternProperties_); + } + AllocatorType::Free(itemsTuple_); +#if RAPIDJSON_SCHEMA_HAS_REGEX + if (pattern_) { + pattern_->~RegexType(); + AllocatorType::Free(pattern_); + } +#endif + } + + const SValue &GetURI() const { return uri_; } + + const PointerType &GetPointer() const { return pointer_; } + + bool BeginValue(Context &context) const { + if (context.inArray) { + if (uniqueItems_) context.valueUniqueness = true; + + if (itemsList_) + context.valueSchema = itemsList_; + else if (itemsTuple_) { + if (context.arrayElementIndex < itemsTupleCount_) + context.valueSchema = itemsTuple_[context.arrayElementIndex]; + else if (additionalItemsSchema_) + context.valueSchema = additionalItemsSchema_; + else if (additionalItems_) + context.valueSchema = typeless_; + else { + context.error_handler.DisallowedItem(context.arrayElementIndex); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetItemsString()); + } + } else + context.valueSchema = typeless_; + + context.arrayElementIndex++; + } + return true; + } + + RAPIDJSON_FORCEINLINE bool EndValue(Context &context) const { + if (context.patternPropertiesValidatorCount > 0) { + bool otherValid = false; + SizeType count = context.patternPropertiesValidatorCount; + if (context.objectPatternValidatorType != Context::kPatternValidatorOnly) + otherValid = context.patternPropertiesValidators[--count]->IsValid(); + + bool patternValid = true; + for (SizeType i = 0; i < count; i++) + if (!context.patternPropertiesValidators[i]->IsValid()) { + patternValid = false; + break; + } + + if (context.objectPatternValidatorType == + Context::kPatternValidatorOnly) { + if (!patternValid) { + context.error_handler.PropertyViolations( + context.patternPropertiesValidators, count); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetPatternPropertiesString()); + } + } else if (context.objectPatternValidatorType == + Context::kPatternValidatorWithProperty) { + if (!patternValid || !otherValid) { + context.error_handler.PropertyViolations( + context.patternPropertiesValidators, count + 1); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetPatternPropertiesString()); + } + } else if (!patternValid && + !otherValid) { // kPatternValidatorWithAdditionalProperty) + context.error_handler.PropertyViolations( + context.patternPropertiesValidators, count + 1); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetPatternPropertiesString()); + } + } + + if (enum_) { + const uint64_t h = context.factory.GetHashCode(context.hasher); + for (SizeType i = 0; i < enumCount_; i++) + if (enum_[i] == h) goto foundEnum; + context.error_handler.DisallowedValue(); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetEnumString()); + foundEnum:; + } + + if (allOf_.schemas) + for (SizeType i = allOf_.begin; i < allOf_.begin + allOf_.count; i++) + if (!context.validators[i]->IsValid()) { + context.error_handler.NotAllOf(&context.validators[allOf_.begin], + allOf_.count); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetAllOfString()); + } + + if (anyOf_.schemas) { + for (SizeType i = anyOf_.begin; i < anyOf_.begin + anyOf_.count; i++) + if (context.validators[i]->IsValid()) goto foundAny; + context.error_handler.NoneOf(&context.validators[anyOf_.begin], + anyOf_.count); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetAnyOfString()); + foundAny:; + } + + if (oneOf_.schemas) { + bool oneValid = false; + for (SizeType i = oneOf_.begin; i < oneOf_.begin + oneOf_.count; i++) + if (context.validators[i]->IsValid()) { + if (oneValid) { + context.error_handler.NotOneOf(&context.validators[oneOf_.begin], + oneOf_.count); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetOneOfString()); + } else + oneValid = true; + } + if (!oneValid) { + context.error_handler.NotOneOf(&context.validators[oneOf_.begin], + oneOf_.count); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetOneOfString()); + } + } + + if (not_ && context.validators[notValidatorIndex_]->IsValid()) { + context.error_handler.Disallowed(); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetNotString()); + } + + return true; + } + + bool Null(Context &context) const { + if (!(type_ & (1 << kNullSchemaType))) { + DisallowedType(context, GetNullString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + return CreateParallelValidator(context); + } + + bool Bool(Context &context, bool) const { + if (!(type_ & (1 << kBooleanSchemaType))) { + DisallowedType(context, GetBooleanString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + return CreateParallelValidator(context); + } + + bool Int(Context &context, int i) const { + if (!CheckInt(context, i)) return false; + return CreateParallelValidator(context); + } + + bool Uint(Context &context, unsigned u) const { + if (!CheckUint(context, u)) return false; + return CreateParallelValidator(context); + } + + bool Int64(Context &context, int64_t i) const { + if (!CheckInt(context, i)) return false; + return CreateParallelValidator(context); + } + + bool Uint64(Context &context, uint64_t u) const { + if (!CheckUint(context, u)) return false; + return CreateParallelValidator(context); + } + + bool Double(Context &context, double d) const { + if (!(type_ & (1 << kNumberSchemaType))) { + DisallowedType(context, GetNumberString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + + if (!minimum_.IsNull() && !CheckDoubleMinimum(context, d)) return false; + + if (!maximum_.IsNull() && !CheckDoubleMaximum(context, d)) return false; + + if (!multipleOf_.IsNull() && !CheckDoubleMultipleOf(context, d)) + return false; + + return CreateParallelValidator(context); + } + + bool String(Context &context, const Ch *str, SizeType length, bool) const { + if (!(type_ & (1 << kStringSchemaType))) { + DisallowedType(context, GetStringString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + + if (minLength_ != 0 || maxLength_ != SizeType(~0)) { + SizeType count; + if (internal::CountStringCodePoint(str, length, &count)) { + if (count < minLength_) { + context.error_handler.TooShort(str, length, minLength_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMinLengthString()); + } + if (count > maxLength_) { + context.error_handler.TooLong(str, length, maxLength_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMaxLengthString()); + } + } + } + + if (pattern_ && !IsPatternMatch(pattern_, str, length)) { + context.error_handler.DoesNotMatch(str, length); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetPatternString()); + } + + return CreateParallelValidator(context); + } + + bool StartObject(Context &context) const { + if (!(type_ & (1 << kObjectSchemaType))) { + DisallowedType(context, GetObjectString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + + if (hasDependencies_ || hasRequired_) { + context.propertyExist = static_cast( + context.factory.MallocState(sizeof(bool) * propertyCount_)); + std::memset(context.propertyExist, 0, sizeof(bool) * propertyCount_); + } + + if (patternProperties_) { // pre-allocate schema array + SizeType count = + patternPropertyCount_ + 1; // extra for valuePatternValidatorType + context.patternPropertiesSchemas = static_cast( + context.factory.MallocState(sizeof(const SchemaType *) * count)); + context.patternPropertiesSchemaCount = 0; + std::memset(context.patternPropertiesSchemas, 0, + sizeof(SchemaType *) * count); + } + + return CreateParallelValidator(context); + } + + bool Key(Context &context, const Ch *str, SizeType len, bool) const { + if (patternProperties_) { + context.patternPropertiesSchemaCount = 0; + for (SizeType i = 0; i < patternPropertyCount_; i++) + if (patternProperties_[i].pattern && + IsPatternMatch(patternProperties_[i].pattern, str, len)) { + context.patternPropertiesSchemas + [context.patternPropertiesSchemaCount++] = + patternProperties_[i].schema; + context.valueSchema = typeless_; + } + } + + SizeType index = 0; + if (FindPropertyIndex(ValueType(str, len).Move(), &index)) { + if (context.patternPropertiesSchemaCount > 0) { + context + .patternPropertiesSchemas[context.patternPropertiesSchemaCount++] = + properties_[index].schema; + context.valueSchema = typeless_; + context.valuePatternValidatorType = + Context::kPatternValidatorWithProperty; + } else + context.valueSchema = properties_[index].schema; + + if (context.propertyExist) context.propertyExist[index] = true; + + return true; + } + + if (additionalPropertiesSchema_) { + if (additionalPropertiesSchema_ && + context.patternPropertiesSchemaCount > 0) { + context + .patternPropertiesSchemas[context.patternPropertiesSchemaCount++] = + additionalPropertiesSchema_; + context.valueSchema = typeless_; + context.valuePatternValidatorType = + Context::kPatternValidatorWithAdditionalProperty; + } else + context.valueSchema = additionalPropertiesSchema_; + return true; + } else if (additionalProperties_) { + context.valueSchema = typeless_; + return true; + } + + if (context.patternPropertiesSchemaCount == + 0) { // patternProperties are not additional properties + context.error_handler.DisallowedProperty(str, len); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetAdditionalPropertiesString()); + } + + return true; + } + + bool EndObject(Context &context, SizeType memberCount) const { + if (hasRequired_) { + context.error_handler.StartMissingProperties(); + for (SizeType index = 0; index < propertyCount_; index++) + if (properties_[index].required && !context.propertyExist[index]) + if (properties_[index].schema->defaultValueLength_ == 0) + context.error_handler.AddMissingProperty(properties_[index].name); + if (context.error_handler.EndMissingProperties()) + RAPIDJSON_INVALID_KEYWORD_RETURN(GetRequiredString()); + } + + if (memberCount < minProperties_) { + context.error_handler.TooFewProperties(memberCount, minProperties_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMinPropertiesString()); + } + + if (memberCount > maxProperties_) { + context.error_handler.TooManyProperties(memberCount, maxProperties_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMaxPropertiesString()); + } + + if (hasDependencies_) { + context.error_handler.StartDependencyErrors(); + for (SizeType sourceIndex = 0; sourceIndex < propertyCount_; + sourceIndex++) { + const Property &source = properties_[sourceIndex]; + if (context.propertyExist[sourceIndex]) { + if (source.dependencies) { + context.error_handler.StartMissingDependentProperties(); + for (SizeType targetIndex = 0; targetIndex < propertyCount_; + targetIndex++) + if (source.dependencies[targetIndex] && + !context.propertyExist[targetIndex]) + context.error_handler.AddMissingDependentProperty( + properties_[targetIndex].name); + context.error_handler.EndMissingDependentProperties(source.name); + } else if (source.dependenciesSchema) { + ISchemaValidator *dependenciesValidator = + context.validators[source.dependenciesValidatorIndex]; + if (!dependenciesValidator->IsValid()) + context.error_handler.AddDependencySchemaError( + source.name, dependenciesValidator); + } + } + } + if (context.error_handler.EndDependencyErrors()) + RAPIDJSON_INVALID_KEYWORD_RETURN(GetDependenciesString()); + } + + return true; + } + + bool StartArray(Context &context) const { + if (!(type_ & (1 << kArraySchemaType))) { + DisallowedType(context, GetArrayString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + + context.arrayElementIndex = 0; + context.inArray = true; + + return CreateParallelValidator(context); + } + + bool EndArray(Context &context, SizeType elementCount) const { + context.inArray = false; + + if (elementCount < minItems_) { + context.error_handler.TooFewItems(elementCount, minItems_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMinItemsString()); + } + + if (elementCount > maxItems_) { + context.error_handler.TooManyItems(elementCount, maxItems_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMaxItemsString()); + } + + return true; + } + +// Generate functions for string literal according to Ch +#define RAPIDJSON_STRING_(name, ...) \ + static const ValueType &Get##name##String() { \ + static const Ch s[] = {__VA_ARGS__, '\0'}; \ + static const ValueType v( \ + s, static_cast(sizeof(s) / sizeof(Ch) - 1)); \ + return v; \ + } + + RAPIDJSON_STRING_(Null, 'n', 'u', 'l', 'l') + RAPIDJSON_STRING_(Boolean, 'b', 'o', 'o', 'l', 'e', 'a', 'n') + RAPIDJSON_STRING_(Object, 'o', 'b', 'j', 'e', 'c', 't') + RAPIDJSON_STRING_(Array, 'a', 'r', 'r', 'a', 'y') + RAPIDJSON_STRING_(String, 's', 't', 'r', 'i', 'n', 'g') + RAPIDJSON_STRING_(Number, 'n', 'u', 'm', 'b', 'e', 'r') + RAPIDJSON_STRING_(Integer, 'i', 'n', 't', 'e', 'g', 'e', 'r') + RAPIDJSON_STRING_(Type, 't', 'y', 'p', 'e') + RAPIDJSON_STRING_(Enum, 'e', 'n', 'u', 'm') + RAPIDJSON_STRING_(AllOf, 'a', 'l', 'l', 'O', 'f') + RAPIDJSON_STRING_(AnyOf, 'a', 'n', 'y', 'O', 'f') + RAPIDJSON_STRING_(OneOf, 'o', 'n', 'e', 'O', 'f') + RAPIDJSON_STRING_(Not, 'n', 'o', 't') + RAPIDJSON_STRING_(Properties, 'p', 'r', 'o', 'p', 'e', 'r', 't', 'i', 'e', + 's') + RAPIDJSON_STRING_(Required, 'r', 'e', 'q', 'u', 'i', 'r', 'e', 'd') + RAPIDJSON_STRING_(Dependencies, 'd', 'e', 'p', 'e', 'n', 'd', 'e', 'n', 'c', + 'i', 'e', 's') + RAPIDJSON_STRING_(PatternProperties, 'p', 'a', 't', 't', 'e', 'r', 'n', 'P', + 'r', 'o', 'p', 'e', 'r', 't', 'i', 'e', 's') + RAPIDJSON_STRING_(AdditionalProperties, 'a', 'd', 'd', 'i', 't', 'i', 'o', + 'n', 'a', 'l', 'P', 'r', 'o', 'p', 'e', 'r', 't', 'i', 'e', + 's') + RAPIDJSON_STRING_(MinProperties, 'm', 'i', 'n', 'P', 'r', 'o', 'p', 'e', 'r', + 't', 'i', 'e', 's') + RAPIDJSON_STRING_(MaxProperties, 'm', 'a', 'x', 'P', 'r', 'o', 'p', 'e', 'r', + 't', 'i', 'e', 's') + RAPIDJSON_STRING_(Items, 'i', 't', 'e', 'm', 's') + RAPIDJSON_STRING_(MinItems, 'm', 'i', 'n', 'I', 't', 'e', 'm', 's') + RAPIDJSON_STRING_(MaxItems, 'm', 'a', 'x', 'I', 't', 'e', 'm', 's') + RAPIDJSON_STRING_(AdditionalItems, 'a', 'd', 'd', 'i', 't', 'i', 'o', 'n', + 'a', 'l', 'I', 't', 'e', 'm', 's') + RAPIDJSON_STRING_(UniqueItems, 'u', 'n', 'i', 'q', 'u', 'e', 'I', 't', 'e', + 'm', 's') + RAPIDJSON_STRING_(MinLength, 'm', 'i', 'n', 'L', 'e', 'n', 'g', 't', 'h') + RAPIDJSON_STRING_(MaxLength, 'm', 'a', 'x', 'L', 'e', 'n', 'g', 't', 'h') + RAPIDJSON_STRING_(Pattern, 'p', 'a', 't', 't', 'e', 'r', 'n') + RAPIDJSON_STRING_(Minimum, 'm', 'i', 'n', 'i', 'm', 'u', 'm') + RAPIDJSON_STRING_(Maximum, 'm', 'a', 'x', 'i', 'm', 'u', 'm') + RAPIDJSON_STRING_(ExclusiveMinimum, 'e', 'x', 'c', 'l', 'u', 's', 'i', 'v', + 'e', 'M', 'i', 'n', 'i', 'm', 'u', 'm') + RAPIDJSON_STRING_(ExclusiveMaximum, 'e', 'x', 'c', 'l', 'u', 's', 'i', 'v', + 'e', 'M', 'a', 'x', 'i', 'm', 'u', 'm') + RAPIDJSON_STRING_(MultipleOf, 'm', 'u', 'l', 't', 'i', 'p', 'l', 'e', 'O', + 'f') + RAPIDJSON_STRING_(DefaultValue, 'd', 'e', 'f', 'a', 'u', 'l', 't') + +#undef RAPIDJSON_STRING_ + + private: + enum SchemaValueType { + kNullSchemaType, + kBooleanSchemaType, + kObjectSchemaType, + kArraySchemaType, + kStringSchemaType, + kNumberSchemaType, + kIntegerSchemaType, + kTotalSchemaType + }; + +#if RAPIDJSON_SCHEMA_USE_INTERNALREGEX + typedef internal::GenericRegex RegexType; +#elif RAPIDJSON_SCHEMA_USE_STDREGEX + typedef std::basic_regex RegexType; +#else + typedef char RegexType; +#endif + + struct SchemaArray { + SchemaArray() : schemas(), count() {} + ~SchemaArray() { AllocatorType::Free(schemas); } + const SchemaType **schemas; + SizeType begin; // begin index of context.validators + SizeType count; + }; + + template + void AddUniqueElement(V1 &a, const V2 &v) { + for (typename V1::ConstValueIterator itr = a.Begin(); itr != a.End(); ++itr) + if (*itr == v) return; + V1 c(v, *allocator_); + a.PushBack(c, *allocator_); + } + + static const ValueType *GetMember(const ValueType &value, + const ValueType &name) { + typename ValueType::ConstMemberIterator itr = value.FindMember(name); + return itr != value.MemberEnd() ? &(itr->value) : 0; + } + + static void AssignIfExist(bool &out, const ValueType &value, + const ValueType &name) { + if (const ValueType *v = GetMember(value, name)) + if (v->IsBool()) out = v->GetBool(); + } + + static void AssignIfExist(SizeType &out, const ValueType &value, + const ValueType &name) { + if (const ValueType *v = GetMember(value, name)) + if (v->IsUint64() && v->GetUint64() <= SizeType(~0)) + out = static_cast(v->GetUint64()); + } + + void AssignIfExist(SchemaArray &out, SchemaDocumentType &schemaDocument, + const PointerType &p, const ValueType &value, + const ValueType &name, const ValueType &document) { + if (const ValueType *v = GetMember(value, name)) { + if (v->IsArray() && v->Size() > 0) { + PointerType q = p.Append(name, allocator_); + out.count = v->Size(); + out.schemas = static_cast( + allocator_->Malloc(out.count * sizeof(const Schema *))); + memset(out.schemas, 0, sizeof(Schema *) * out.count); + for (SizeType i = 0; i < out.count; i++) + schemaDocument.CreateSchema(&out.schemas[i], q.Append(i, allocator_), + (*v)[i], document); + out.begin = validatorCount_; + validatorCount_ += out.count; + } + } + } + +#if RAPIDJSON_SCHEMA_USE_INTERNALREGEX + template + RegexType *CreatePattern(const ValueType &value) { + if (value.IsString()) { + RegexType *r = new (allocator_->Malloc(sizeof(RegexType))) + RegexType(value.GetString(), allocator_); + if (!r->IsValid()) { + r->~RegexType(); + AllocatorType::Free(r); + r = 0; + } + return r; + } + return 0; + } + + static bool IsPatternMatch(const RegexType *pattern, const Ch *str, + SizeType) { + GenericRegexSearch rs(*pattern); + return rs.Search(str); + } +#elif RAPIDJSON_SCHEMA_USE_STDREGEX + template + RegexType *CreatePattern(const ValueType &value) { + if (value.IsString()) { + RegexType *r = + static_cast(allocator_->Malloc(sizeof(RegexType))); + try { + return new (r) + RegexType(value.GetString(), std::size_t(value.GetStringLength()), + std::regex_constants::ECMAScript); + } catch (const std::regex_error &) { + AllocatorType::Free(r); + } + } + return 0; + } + + static bool IsPatternMatch(const RegexType *pattern, const Ch *str, + SizeType length) { + std::match_results r; + return std::regex_search(str, str + length, r, *pattern); + } +#else + template + RegexType *CreatePattern(const ValueType &) { + return 0; + } + + static bool IsPatternMatch(const RegexType *, const Ch *, SizeType) { + return true; + } +#endif // RAPIDJSON_SCHEMA_USE_STDREGEX + + void AddType(const ValueType &type) { + if (type == GetNullString()) + type_ |= 1 << kNullSchemaType; + else if (type == GetBooleanString()) + type_ |= 1 << kBooleanSchemaType; + else if (type == GetObjectString()) + type_ |= 1 << kObjectSchemaType; + else if (type == GetArrayString()) + type_ |= 1 << kArraySchemaType; + else if (type == GetStringString()) + type_ |= 1 << kStringSchemaType; + else if (type == GetIntegerString()) + type_ |= 1 << kIntegerSchemaType; + else if (type == GetNumberString()) + type_ |= (1 << kNumberSchemaType) | (1 << kIntegerSchemaType); + } + + bool CreateParallelValidator(Context &context) const { + if (enum_ || context.arrayUniqueness) + context.hasher = context.factory.CreateHasher(); + + if (validatorCount_) { + RAPIDJSON_ASSERT(context.validators == 0); + context.validators = + static_cast(context.factory.MallocState( + sizeof(ISchemaValidator *) * validatorCount_)); + context.validatorCount = validatorCount_; + + if (allOf_.schemas) CreateSchemaValidators(context, allOf_); + + if (anyOf_.schemas) CreateSchemaValidators(context, anyOf_); + + if (oneOf_.schemas) CreateSchemaValidators(context, oneOf_); + + if (not_) + context.validators[notValidatorIndex_] = + context.factory.CreateSchemaValidator(*not_); + + if (hasSchemaDependencies_) { + for (SizeType i = 0; i < propertyCount_; i++) + if (properties_[i].dependenciesSchema) + context.validators[properties_[i].dependenciesValidatorIndex] = + context.factory.CreateSchemaValidator( + *properties_[i].dependenciesSchema); + } + } + + return true; + } + + void CreateSchemaValidators(Context &context, + const SchemaArray &schemas) const { + for (SizeType i = 0; i < schemas.count; i++) + context.validators[schemas.begin + i] = + context.factory.CreateSchemaValidator(*schemas.schemas[i]); + } + + // O(n) + bool FindPropertyIndex(const ValueType &name, SizeType *outIndex) const { + SizeType len = name.GetStringLength(); + const Ch *str = name.GetString(); + for (SizeType index = 0; index < propertyCount_; index++) + if (properties_[index].name.GetStringLength() == len && + (std::memcmp(properties_[index].name.GetString(), str, + sizeof(Ch) * len) == 0)) { + *outIndex = index; + return true; + } + return false; + } + + bool CheckInt(Context &context, int64_t i) const { + if (!(type_ & ((1 << kIntegerSchemaType) | (1 << kNumberSchemaType)))) { + DisallowedType(context, GetIntegerString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + + if (!minimum_.IsNull()) { + if (minimum_.IsInt64()) { + if (exclusiveMinimum_ ? i <= minimum_.GetInt64() + : i < minimum_.GetInt64()) { + context.error_handler.BelowMinimum(i, minimum_, exclusiveMinimum_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMinimumString()); + } + } else if (minimum_.IsUint64()) { + context.error_handler.BelowMinimum(i, minimum_, exclusiveMinimum_); + RAPIDJSON_INVALID_KEYWORD_RETURN( + GetMinimumString()); // i <= max(int64_t) < minimum.GetUint64() + } else if (!CheckDoubleMinimum(context, static_cast(i))) + return false; + } + + if (!maximum_.IsNull()) { + if (maximum_.IsInt64()) { + if (exclusiveMaximum_ ? i >= maximum_.GetInt64() + : i > maximum_.GetInt64()) { + context.error_handler.AboveMaximum(i, maximum_, exclusiveMaximum_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMaximumString()); + } + } else if (maximum_.IsUint64()) { + } + /* do nothing */ // i <= max(int64_t) < maximum_.GetUint64() + else if (!CheckDoubleMaximum(context, static_cast(i))) + return false; + } + + if (!multipleOf_.IsNull()) { + if (multipleOf_.IsUint64()) { + if (static_cast(i >= 0 ? i : -i) % multipleOf_.GetUint64() != + 0) { + context.error_handler.NotMultipleOf(i, multipleOf_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMultipleOfString()); + } + } else if (!CheckDoubleMultipleOf(context, static_cast(i))) + return false; + } + + return true; + } + + bool CheckUint(Context &context, uint64_t i) const { + if (!(type_ & ((1 << kIntegerSchemaType) | (1 << kNumberSchemaType)))) { + DisallowedType(context, GetIntegerString()); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetTypeString()); + } + + if (!minimum_.IsNull()) { + if (minimum_.IsUint64()) { + if (exclusiveMinimum_ ? i <= minimum_.GetUint64() + : i < minimum_.GetUint64()) { + context.error_handler.BelowMinimum(i, minimum_, exclusiveMinimum_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMinimumString()); + } + } else if (minimum_.IsInt64()) + /* do nothing */; // i >= 0 > minimum.Getint64() + else if (!CheckDoubleMinimum(context, static_cast(i))) + return false; + } + + if (!maximum_.IsNull()) { + if (maximum_.IsUint64()) { + if (exclusiveMaximum_ ? i >= maximum_.GetUint64() + : i > maximum_.GetUint64()) { + context.error_handler.AboveMaximum(i, maximum_, exclusiveMaximum_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMaximumString()); + } + } else if (maximum_.IsInt64()) { + context.error_handler.AboveMaximum(i, maximum_, exclusiveMaximum_); + RAPIDJSON_INVALID_KEYWORD_RETURN( + GetMaximumString()); // i >= 0 > maximum_ + } else if (!CheckDoubleMaximum(context, static_cast(i))) + return false; + } + + if (!multipleOf_.IsNull()) { + if (multipleOf_.IsUint64()) { + if (i % multipleOf_.GetUint64() != 0) { + context.error_handler.NotMultipleOf(i, multipleOf_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMultipleOfString()); + } + } else if (!CheckDoubleMultipleOf(context, static_cast(i))) + return false; + } + + return true; + } + + bool CheckDoubleMinimum(Context &context, double d) const { + if (exclusiveMinimum_ ? d <= minimum_.GetDouble() + : d < minimum_.GetDouble()) { + context.error_handler.BelowMinimum(d, minimum_, exclusiveMinimum_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMinimumString()); + } + return true; + } + + bool CheckDoubleMaximum(Context &context, double d) const { + if (exclusiveMaximum_ ? d >= maximum_.GetDouble() + : d > maximum_.GetDouble()) { + context.error_handler.AboveMaximum(d, maximum_, exclusiveMaximum_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMaximumString()); + } + return true; + } + + bool CheckDoubleMultipleOf(Context &context, double d) const { + double a = std::abs(d), b = std::abs(multipleOf_.GetDouble()); + double q = std::floor(a / b); + double r = a - q * b; + if (r > 0.0) { + context.error_handler.NotMultipleOf(d, multipleOf_); + RAPIDJSON_INVALID_KEYWORD_RETURN(GetMultipleOfString()); + } + return true; + } + + void DisallowedType(Context &context, const ValueType &actualType) const { + ErrorHandler &eh = context.error_handler; + eh.StartDisallowedType(); + + if (type_ & (1 << kNullSchemaType)) eh.AddExpectedType(GetNullString()); + if (type_ & (1 << kBooleanSchemaType)) + eh.AddExpectedType(GetBooleanString()); + if (type_ & (1 << kObjectSchemaType)) eh.AddExpectedType(GetObjectString()); + if (type_ & (1 << kArraySchemaType)) eh.AddExpectedType(GetArrayString()); + if (type_ & (1 << kStringSchemaType)) eh.AddExpectedType(GetStringString()); + + if (type_ & (1 << kNumberSchemaType)) + eh.AddExpectedType(GetNumberString()); + else if (type_ & (1 << kIntegerSchemaType)) + eh.AddExpectedType(GetIntegerString()); + + eh.EndDisallowedType(actualType); + } + + struct Property { + Property() + : schema(), + dependenciesSchema(), + dependenciesValidatorIndex(), + dependencies(), + required(false) {} + ~Property() { AllocatorType::Free(dependencies); } + SValue name; + const SchemaType *schema; + const SchemaType *dependenciesSchema; + SizeType dependenciesValidatorIndex; + bool *dependencies; + bool required; + }; + + struct PatternProperty { + PatternProperty() : schema(), pattern() {} + ~PatternProperty() { + if (pattern) { + pattern->~RegexType(); + AllocatorType::Free(pattern); + } + } + const SchemaType *schema; + RegexType *pattern; + }; + + AllocatorType *allocator_; + SValue uri_; + PointerType pointer_; + const SchemaType *typeless_; + uint64_t *enum_; + SizeType enumCount_; + SchemaArray allOf_; + SchemaArray anyOf_; + SchemaArray oneOf_; + const SchemaType *not_; + unsigned type_; // bitmask of kSchemaType + SizeType validatorCount_; + SizeType notValidatorIndex_; + + Property *properties_; + const SchemaType *additionalPropertiesSchema_; + PatternProperty *patternProperties_; + SizeType patternPropertyCount_; + SizeType propertyCount_; + SizeType minProperties_; + SizeType maxProperties_; + bool additionalProperties_; + bool hasDependencies_; + bool hasRequired_; + bool hasSchemaDependencies_; + + const SchemaType *additionalItemsSchema_; + const SchemaType *itemsList_; + const SchemaType **itemsTuple_; + SizeType itemsTupleCount_; + SizeType minItems_; + SizeType maxItems_; + bool additionalItems_; + bool uniqueItems_; + + RegexType *pattern_; + SizeType minLength_; + SizeType maxLength_; + + SValue minimum_; + SValue maximum_; + SValue multipleOf_; + bool exclusiveMinimum_; + bool exclusiveMaximum_; + + SizeType defaultValueLength_; +}; + +template +struct TokenHelper { + RAPIDJSON_FORCEINLINE static void AppendIndexToken(Stack &documentStack, + SizeType index) { + *documentStack.template Push() = '/'; + char buffer[21]; + size_t length = + static_cast((sizeof(SizeType) == 4 ? u32toa(index, buffer) + : u64toa(index, buffer)) - + buffer); + for (size_t i = 0; i < length; i++) + *documentStack.template Push() = static_cast(buffer[i]); + } +}; + +// Partial specialized version for char to prevent buffer copying. +template +struct TokenHelper { + RAPIDJSON_FORCEINLINE static void AppendIndexToken(Stack &documentStack, + SizeType index) { + if (sizeof(SizeType) == 4) { + char *buffer = documentStack.template Push(1 + 10); // '/' + uint + *buffer++ = '/'; + const char *end = internal::u32toa(index, buffer); + documentStack.template Pop( + static_cast(10 - (end - buffer))); + } else { + char *buffer = documentStack.template Push(1 + 20); // '/' + uint64 + *buffer++ = '/'; + const char *end = internal::u64toa(index, buffer); + documentStack.template Pop( + static_cast(20 - (end - buffer))); + } + } +}; + +} // namespace internal + +/////////////////////////////////////////////////////////////////////////////// +// IGenericRemoteSchemaDocumentProvider + +template +class IGenericRemoteSchemaDocumentProvider { + public: + typedef typename SchemaDocumentType::Ch Ch; + + virtual ~IGenericRemoteSchemaDocumentProvider() {} + virtual const SchemaDocumentType *GetRemoteDocument(const Ch *uri, + SizeType length) = 0; +}; + +/////////////////////////////////////////////////////////////////////////////// +// GenericSchemaDocument + +//! JSON schema document. +/*! + A JSON schema document is a compiled version of a JSON schema. + It is basically a tree of internal::Schema. + + \note This is an immutable class (i.e. its instance cannot be modified after + construction). \tparam ValueT Type of JSON value (e.g. \c Value ), which also + determine the encoding. \tparam Allocator Allocator type for allocating + memory of this document. +*/ +template +class GenericSchemaDocument { + public: + typedef ValueT ValueType; + typedef IGenericRemoteSchemaDocumentProvider + IRemoteSchemaDocumentProviderType; + typedef Allocator AllocatorType; + typedef typename ValueType::EncodingType EncodingType; + typedef typename EncodingType::Ch Ch; + typedef internal::Schema SchemaType; + typedef GenericPointer PointerType; + typedef GenericValue URIType; + friend class internal::Schema; + template + friend class GenericSchemaValidator; + + //! Constructor. + /*! + Compile a JSON document into schema document. + + \param document A JSON document as source. + \param uri The base URI of this schema document for purposes of violation + reporting. \param uriLength Length of \c name, in code points. \param + remoteProvider An optional remote schema document provider for resolving + remote reference. Can be null. \param allocator An optional allocator + instance for allocating memory. Can be null. + */ + explicit GenericSchemaDocument( + const ValueType &document, const Ch *uri = 0, SizeType uriLength = 0, + IRemoteSchemaDocumentProviderType *remoteProvider = 0, + Allocator *allocator = 0) + : remoteProvider_(remoteProvider), + allocator_(allocator), + ownAllocator_(), + root_(), + typeless_(), + schemaMap_(allocator, kInitialSchemaMapSize), + schemaRef_(allocator, kInitialSchemaRefSize) { + if (!allocator_) ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator)(); + + Ch noUri[1] = {0}; + uri_.SetString(uri ? uri : noUri, uriLength, *allocator_); + + typeless_ = + static_cast(allocator_->Malloc(sizeof(SchemaType))); + new (typeless_) + SchemaType(this, PointerType(), ValueType(kObjectType).Move(), + ValueType(kObjectType).Move(), allocator_); + + // Generate root schema, it will call CreateSchema() to create sub-schemas, + // And call AddRefSchema() if there are $ref. + CreateSchemaRecursive(&root_, PointerType(), document, document); + + // Resolve $ref + while (!schemaRef_.Empty()) { + SchemaRefEntry *refEntry = schemaRef_.template Pop(1); + if (const SchemaType *s = GetSchema(refEntry->target)) { + if (refEntry->schema) *refEntry->schema = s; + + // Create entry in map if not exist + if (!GetSchema(refEntry->source)) { + new (schemaMap_.template Push()) SchemaEntry( + refEntry->source, const_cast(s), false, allocator_); + } + } else if (refEntry->schema) + *refEntry->schema = typeless_; + + refEntry->~SchemaRefEntry(); + } + + RAPIDJSON_ASSERT(root_ != 0); + + schemaRef_.ShrinkToFit(); // Deallocate all memory for ref + } + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + //! Move constructor in C++11 + GenericSchemaDocument(GenericSchemaDocument &&rhs) RAPIDJSON_NOEXCEPT + : remoteProvider_(rhs.remoteProvider_), + allocator_(rhs.allocator_), + ownAllocator_(rhs.ownAllocator_), + root_(rhs.root_), + typeless_(rhs.typeless_), + schemaMap_(std::move(rhs.schemaMap_)), + schemaRef_(std::move(rhs.schemaRef_)), + uri_(std::move(rhs.uri_)) { + rhs.remoteProvider_ = 0; + rhs.allocator_ = 0; + rhs.ownAllocator_ = 0; + rhs.typeless_ = 0; + } +#endif + + //! Destructor + ~GenericSchemaDocument() { + while (!schemaMap_.Empty()) + schemaMap_.template Pop(1)->~SchemaEntry(); + + if (typeless_) { + typeless_->~SchemaType(); + Allocator::Free(typeless_); + } + + RAPIDJSON_DELETE(ownAllocator_); + } + + const URIType &GetURI() const { return uri_; } + + //! Get the root schema. + const SchemaType &GetRoot() const { return *root_; } + + private: + //! Prohibit copying + GenericSchemaDocument(const GenericSchemaDocument &); + //! Prohibit assignment + GenericSchemaDocument &operator=(const GenericSchemaDocument &); + + struct SchemaRefEntry { + SchemaRefEntry(const PointerType &s, const PointerType &t, + const SchemaType **outSchema, Allocator *allocator) + : source(s, allocator), target(t, allocator), schema(outSchema) {} + PointerType source; + PointerType target; + const SchemaType **schema; + }; + + struct SchemaEntry { + SchemaEntry(const PointerType &p, SchemaType *s, bool o, + Allocator *allocator) + : pointer(p, allocator), schema(s), owned(o) {} + ~SchemaEntry() { + if (owned) { + schema->~SchemaType(); + Allocator::Free(schema); + } + } + PointerType pointer; + SchemaType *schema; + bool owned; + }; + + void CreateSchemaRecursive(const SchemaType **schema, + const PointerType &pointer, const ValueType &v, + const ValueType &document) { + if (schema) *schema = typeless_; + + if (v.GetType() == kObjectType) { + const SchemaType *s = GetSchema(pointer); + if (!s) CreateSchema(schema, pointer, v, document); + + for (typename ValueType::ConstMemberIterator itr = v.MemberBegin(); + itr != v.MemberEnd(); ++itr) + CreateSchemaRecursive(0, pointer.Append(itr->name, allocator_), + itr->value, document); + } else if (v.GetType() == kArrayType) + for (SizeType i = 0; i < v.Size(); i++) + CreateSchemaRecursive(0, pointer.Append(i, allocator_), v[i], document); + } + + void CreateSchema(const SchemaType **schema, const PointerType &pointer, + const ValueType &v, const ValueType &document) { + RAPIDJSON_ASSERT(pointer.IsValid()); + if (v.IsObject()) { + if (!HandleRefSchema(pointer, schema, v, document)) { + SchemaType *s = new (allocator_->Malloc(sizeof(SchemaType))) + SchemaType(this, pointer, v, document, allocator_); + new (schemaMap_.template Push()) + SchemaEntry(pointer, s, true, allocator_); + if (schema) *schema = s; + } + } + } + + bool HandleRefSchema(const PointerType &source, const SchemaType **schema, + const ValueType &v, const ValueType &document) { + static const Ch kRefString[] = {'$', 'r', 'e', 'f', '\0'}; + static const ValueType kRefValue(kRefString, 4); + + typename ValueType::ConstMemberIterator itr = v.FindMember(kRefValue); + if (itr == v.MemberEnd()) return false; + + if (itr->value.IsString()) { + SizeType len = itr->value.GetStringLength(); + if (len > 0) { + const Ch *s = itr->value.GetString(); + SizeType i = 0; + while (i < len && s[i] != '#') // Find the first # + i++; + + if (i > 0) { // Remote reference, resolve immediately + if (remoteProvider_) { + if (const GenericSchemaDocument *remoteDocument = + remoteProvider_->GetRemoteDocument(s, i)) { + PointerType pointer(&s[i], len - i, allocator_); + if (pointer.IsValid()) { + if (const SchemaType *sc = remoteDocument->GetSchema(pointer)) { + if (schema) *schema = sc; + new (schemaMap_.template Push()) SchemaEntry( + source, const_cast(sc), false, allocator_); + return true; + } + } + } + } + } else if (s[i] == '#') { // Local reference, defer resolution + PointerType pointer(&s[i], len - i, allocator_); + if (pointer.IsValid()) { + if (const ValueType *nv = pointer.Get(document)) + if (HandleRefSchema(source, schema, *nv, document)) return true; + + new (schemaRef_.template Push()) + SchemaRefEntry(source, pointer, schema, allocator_); + return true; + } + } + } + } + return false; + } + + const SchemaType *GetSchema(const PointerType &pointer) const { + for (const SchemaEntry *target = schemaMap_.template Bottom(); + target != schemaMap_.template End(); ++target) + if (pointer == target->pointer) return target->schema; + return 0; + } + + PointerType GetPointer(const SchemaType *schema) const { + for (const SchemaEntry *target = schemaMap_.template Bottom(); + target != schemaMap_.template End(); ++target) + if (schema == target->schema) return target->pointer; + return PointerType(); + } + + const SchemaType *GetTypeless() const { return typeless_; } + + static const size_t kInitialSchemaMapSize = 64; + static const size_t kInitialSchemaRefSize = 64; + + IRemoteSchemaDocumentProviderType *remoteProvider_; + Allocator *allocator_; + Allocator *ownAllocator_; + const SchemaType *root_; //!< Root schema. + SchemaType *typeless_; + internal::Stack schemaMap_; // Stores created Pointer -> Schemas + internal::Stack + schemaRef_; // Stores Pointer from $ref and schema which holds the $ref + URIType uri_; +}; + +//! GenericSchemaDocument using Value type. +typedef GenericSchemaDocument SchemaDocument; +//! IGenericRemoteSchemaDocumentProvider using SchemaDocument. +typedef IGenericRemoteSchemaDocumentProvider + IRemoteSchemaDocumentProvider; + +/////////////////////////////////////////////////////////////////////////////// +// GenericSchemaValidator + +//! JSON Schema Validator. +/*! + A SAX style JSON schema validator. + It uses a \c GenericSchemaDocument to validate SAX events. + It delegates the incoming SAX events to an output handler. + The default output handler does nothing. + It can be reused multiple times by calling \c Reset(). + + \tparam SchemaDocumentType Type of schema document. + \tparam OutputHandler Type of output handler. Default handler does nothing. + \tparam StateAllocator Allocator for storing the internal validation states. +*/ +template , + typename StateAllocator = CrtAllocator> +class GenericSchemaValidator : public internal::ISchemaStateFactory< + typename SchemaDocumentType::SchemaType>, + public internal::ISchemaValidator, + public internal::IValidationErrorHandler< + typename SchemaDocumentType::SchemaType> { + public: + typedef typename SchemaDocumentType::SchemaType SchemaType; + typedef typename SchemaDocumentType::PointerType PointerType; + typedef typename SchemaType::EncodingType EncodingType; + typedef typename SchemaType::SValue SValue; + typedef typename EncodingType::Ch Ch; + typedef GenericStringRef StringRefType; + typedef GenericValue ValueType; + + //! Constructor without output handler. + /*! + \param schemaDocument The schema document to conform to. + \param allocator Optional allocator for storing internal validation + states. \param schemaStackCapacity Optional initial capacity of schema path + stack. \param documentStackCapacity Optional initial capacity of document + path stack. + */ + GenericSchemaValidator( + const SchemaDocumentType &schemaDocument, StateAllocator *allocator = 0, + size_t schemaStackCapacity = kDefaultSchemaStackCapacity, + size_t documentStackCapacity = kDefaultDocumentStackCapacity) + : schemaDocument_(&schemaDocument), + root_(schemaDocument.GetRoot()), + stateAllocator_(allocator), + ownStateAllocator_(0), + schemaStack_(allocator, schemaStackCapacity), + documentStack_(allocator, documentStackCapacity), + outputHandler_(0), + error_(kObjectType), + currentError_(), + missingDependents_(), + valid_(true) +#if RAPIDJSON_SCHEMA_VERBOSE + , + depth_(0) +#endif + { + } + + //! Constructor with output handler. + /*! + \param schemaDocument The schema document to conform to. + \param allocator Optional allocator for storing internal validation + states. \param schemaStackCapacity Optional initial capacity of schema path + stack. \param documentStackCapacity Optional initial capacity of document + path stack. + */ + GenericSchemaValidator( + const SchemaDocumentType &schemaDocument, OutputHandler &outputHandler, + StateAllocator *allocator = 0, + size_t schemaStackCapacity = kDefaultSchemaStackCapacity, + size_t documentStackCapacity = kDefaultDocumentStackCapacity) + : schemaDocument_(&schemaDocument), + root_(schemaDocument.GetRoot()), + stateAllocator_(allocator), + ownStateAllocator_(0), + schemaStack_(allocator, schemaStackCapacity), + documentStack_(allocator, documentStackCapacity), + outputHandler_(&outputHandler), + error_(kObjectType), + currentError_(), + missingDependents_(), + valid_(true) +#if RAPIDJSON_SCHEMA_VERBOSE + , + depth_(0) +#endif + { + } + + //! Destructor. + ~GenericSchemaValidator() { + Reset(); + RAPIDJSON_DELETE(ownStateAllocator_); + } + + //! Reset the internal states. + void Reset() { + while (!schemaStack_.Empty()) PopSchema(); + documentStack_.Clear(); + error_.SetObject(); + currentError_.SetNull(); + missingDependents_.SetNull(); + valid_ = true; + } + + //! Checks whether the current state is valid. + // Implementation of ISchemaValidator + virtual bool IsValid() const { return valid_; } + + //! Gets the error object. + ValueType &GetError() { return error_; } + const ValueType &GetError() const { return error_; } + + //! Gets the JSON pointer pointed to the invalid schema. + PointerType GetInvalidSchemaPointer() const { + return schemaStack_.Empty() ? PointerType() : CurrentSchema().GetPointer(); + } + + //! Gets the keyword of invalid schema. + const Ch *GetInvalidSchemaKeyword() const { + return schemaStack_.Empty() ? 0 : CurrentContext().invalidKeyword; + } + + //! Gets the JSON pointer pointed to the invalid value. + PointerType GetInvalidDocumentPointer() const { + if (documentStack_.Empty()) { + return PointerType(); + } else { + return PointerType(documentStack_.template Bottom(), + documentStack_.GetSize() / sizeof(Ch)); + } + } + + void NotMultipleOf(int64_t actual, const SValue &expected) { + AddNumberError(SchemaType::GetMultipleOfString(), ValueType(actual).Move(), + expected); + } + void NotMultipleOf(uint64_t actual, const SValue &expected) { + AddNumberError(SchemaType::GetMultipleOfString(), ValueType(actual).Move(), + expected); + } + void NotMultipleOf(double actual, const SValue &expected) { + AddNumberError(SchemaType::GetMultipleOfString(), ValueType(actual).Move(), + expected); + } + void AboveMaximum(int64_t actual, const SValue &expected, bool exclusive) { + AddNumberError(SchemaType::GetMaximumString(), ValueType(actual).Move(), + expected, + exclusive ? &SchemaType::GetExclusiveMaximumString : 0); + } + void AboveMaximum(uint64_t actual, const SValue &expected, bool exclusive) { + AddNumberError(SchemaType::GetMaximumString(), ValueType(actual).Move(), + expected, + exclusive ? &SchemaType::GetExclusiveMaximumString : 0); + } + void AboveMaximum(double actual, const SValue &expected, bool exclusive) { + AddNumberError(SchemaType::GetMaximumString(), ValueType(actual).Move(), + expected, + exclusive ? &SchemaType::GetExclusiveMaximumString : 0); + } + void BelowMinimum(int64_t actual, const SValue &expected, bool exclusive) { + AddNumberError(SchemaType::GetMinimumString(), ValueType(actual).Move(), + expected, + exclusive ? &SchemaType::GetExclusiveMinimumString : 0); + } + void BelowMinimum(uint64_t actual, const SValue &expected, bool exclusive) { + AddNumberError(SchemaType::GetMinimumString(), ValueType(actual).Move(), + expected, + exclusive ? &SchemaType::GetExclusiveMinimumString : 0); + } + void BelowMinimum(double actual, const SValue &expected, bool exclusive) { + AddNumberError(SchemaType::GetMinimumString(), ValueType(actual).Move(), + expected, + exclusive ? &SchemaType::GetExclusiveMinimumString : 0); + } + + void TooLong(const Ch *str, SizeType length, SizeType expected) { + AddNumberError(SchemaType::GetMaxLengthString(), + ValueType(str, length, GetStateAllocator()).Move(), + SValue(expected).Move()); + } + void TooShort(const Ch *str, SizeType length, SizeType expected) { + AddNumberError(SchemaType::GetMinLengthString(), + ValueType(str, length, GetStateAllocator()).Move(), + SValue(expected).Move()); + } + void DoesNotMatch(const Ch *str, SizeType length) { + currentError_.SetObject(); + currentError_.AddMember(GetActualString(), + ValueType(str, length, GetStateAllocator()).Move(), + GetStateAllocator()); + AddCurrentError(SchemaType::GetPatternString()); + } + + void DisallowedItem(SizeType index) { + currentError_.SetObject(); + currentError_.AddMember(GetDisallowedString(), ValueType(index).Move(), + GetStateAllocator()); + AddCurrentError(SchemaType::GetAdditionalItemsString(), true); + } + void TooFewItems(SizeType actualCount, SizeType expectedCount) { + AddNumberError(SchemaType::GetMinItemsString(), + ValueType(actualCount).Move(), SValue(expectedCount).Move()); + } + void TooManyItems(SizeType actualCount, SizeType expectedCount) { + AddNumberError(SchemaType::GetMaxItemsString(), + ValueType(actualCount).Move(), SValue(expectedCount).Move()); + } + void DuplicateItems(SizeType index1, SizeType index2) { + ValueType duplicates(kArrayType); + duplicates.PushBack(index1, GetStateAllocator()); + duplicates.PushBack(index2, GetStateAllocator()); + currentError_.SetObject(); + currentError_.AddMember(GetDuplicatesString(), duplicates, + GetStateAllocator()); + AddCurrentError(SchemaType::GetUniqueItemsString(), true); + } + + void TooManyProperties(SizeType actualCount, SizeType expectedCount) { + AddNumberError(SchemaType::GetMaxPropertiesString(), + ValueType(actualCount).Move(), SValue(expectedCount).Move()); + } + void TooFewProperties(SizeType actualCount, SizeType expectedCount) { + AddNumberError(SchemaType::GetMinPropertiesString(), + ValueType(actualCount).Move(), SValue(expectedCount).Move()); + } + void StartMissingProperties() { currentError_.SetArray(); } + void AddMissingProperty(const SValue &name) { + currentError_.PushBack(ValueType(name, GetStateAllocator()).Move(), + GetStateAllocator()); + } + bool EndMissingProperties() { + if (currentError_.Empty()) return false; + ValueType error(kObjectType); + error.AddMember(GetMissingString(), currentError_, GetStateAllocator()); + currentError_ = error; + AddCurrentError(SchemaType::GetRequiredString()); + return true; + } + void PropertyViolations(ISchemaValidator **subvalidators, SizeType count) { + for (SizeType i = 0; i < count; ++i) + MergeError( + static_cast(subvalidators[i])->GetError()); + } + void DisallowedProperty(const Ch *name, SizeType length) { + currentError_.SetObject(); + currentError_.AddMember(GetDisallowedString(), + ValueType(name, length, GetStateAllocator()).Move(), + GetStateAllocator()); + AddCurrentError(SchemaType::GetAdditionalPropertiesString(), true); + } + + void StartDependencyErrors() { currentError_.SetObject(); } + void StartMissingDependentProperties() { missingDependents_.SetArray(); } + void AddMissingDependentProperty(const SValue &targetName) { + missingDependents_.PushBack( + ValueType(targetName, GetStateAllocator()).Move(), GetStateAllocator()); + } + void EndMissingDependentProperties(const SValue &sourceName) { + if (!missingDependents_.Empty()) + currentError_.AddMember(ValueType(sourceName, GetStateAllocator()).Move(), + missingDependents_, GetStateAllocator()); + } + void AddDependencySchemaError(const SValue &sourceName, + ISchemaValidator *subvalidator) { + currentError_.AddMember( + ValueType(sourceName, GetStateAllocator()).Move(), + static_cast(subvalidator)->GetError(), + GetStateAllocator()); + } + bool EndDependencyErrors() { + if (currentError_.ObjectEmpty()) return false; + ValueType error(kObjectType); + error.AddMember(GetErrorsString(), currentError_, GetStateAllocator()); + currentError_ = error; + AddCurrentError(SchemaType::GetDependenciesString()); + return true; + } + + void DisallowedValue() { + currentError_.SetObject(); + AddCurrentError(SchemaType::GetEnumString()); + } + void StartDisallowedType() { currentError_.SetArray(); } + void AddExpectedType(const typename SchemaType::ValueType &expectedType) { + currentError_.PushBack(ValueType(expectedType, GetStateAllocator()).Move(), + GetStateAllocator()); + } + void EndDisallowedType(const typename SchemaType::ValueType &actualType) { + ValueType error(kObjectType); + error.AddMember(GetExpectedString(), currentError_, GetStateAllocator()); + error.AddMember(GetActualString(), + ValueType(actualType, GetStateAllocator()).Move(), + GetStateAllocator()); + currentError_ = error; + AddCurrentError(SchemaType::GetTypeString()); + } + void NotAllOf(ISchemaValidator **subvalidators, SizeType count) { + for (SizeType i = 0; i < count; ++i) { + MergeError( + static_cast(subvalidators[i])->GetError()); + } + } + void NoneOf(ISchemaValidator **subvalidators, SizeType count) { + AddErrorArray(SchemaType::GetAnyOfString(), subvalidators, count); + } + void NotOneOf(ISchemaValidator **subvalidators, SizeType count) { + AddErrorArray(SchemaType::GetOneOfString(), subvalidators, count); + } + void Disallowed() { + currentError_.SetObject(); + AddCurrentError(SchemaType::GetNotString()); + } + +#define RAPIDJSON_STRING_(name, ...) \ + static const StringRefType &Get##name##String() { \ + static const Ch s[] = {__VA_ARGS__, '\0'}; \ + static const StringRefType v( \ + s, static_cast(sizeof(s) / sizeof(Ch) - 1)); \ + return v; \ + } + + RAPIDJSON_STRING_(InstanceRef, 'i', 'n', 's', 't', 'a', 'n', 'c', 'e', 'R', + 'e', 'f') + RAPIDJSON_STRING_(SchemaRef, 's', 'c', 'h', 'e', 'm', 'a', 'R', 'e', 'f') + RAPIDJSON_STRING_(Expected, 'e', 'x', 'p', 'e', 'c', 't', 'e', 'd') + RAPIDJSON_STRING_(Actual, 'a', 'c', 't', 'u', 'a', 'l') + RAPIDJSON_STRING_(Disallowed, 'd', 'i', 's', 'a', 'l', 'l', 'o', 'w', 'e', + 'd') + RAPIDJSON_STRING_(Missing, 'm', 'i', 's', 's', 'i', 'n', 'g') + RAPIDJSON_STRING_(Errors, 'e', 'r', 'r', 'o', 'r', 's') + RAPIDJSON_STRING_(Duplicates, 'd', 'u', 'p', 'l', 'i', 'c', 'a', 't', 'e', + 's') + +#undef RAPIDJSON_STRING_ + +#if RAPIDJSON_SCHEMA_VERBOSE +#define RAPIDJSON_SCHEMA_HANDLE_BEGIN_VERBOSE_() \ + RAPIDJSON_MULTILINEMACRO_BEGIN \ + *documentStack_.template Push() = '\0'; \ + documentStack_.template Pop(1); \ + internal::PrintInvalidDocument(documentStack_.template Bottom()); \ + RAPIDJSON_MULTILINEMACRO_END +#else +#define RAPIDJSON_SCHEMA_HANDLE_BEGIN_VERBOSE_() +#endif + +#define RAPIDJSON_SCHEMA_HANDLE_BEGIN_(method, arg1) \ + if (!valid_) return false; \ + if (!BeginValue() || !CurrentSchema().method arg1) { \ + RAPIDJSON_SCHEMA_HANDLE_BEGIN_VERBOSE_(); \ + return valid_ = false; \ + } + +#define RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(method, arg2) \ + for (Context *context = schemaStack_.template Bottom(); \ + context != schemaStack_.template End(); context++) { \ + if (context->hasher) \ + static_cast(context->hasher)->method arg2; \ + if (context->validators) \ + for (SizeType i_ = 0; i_ < context->validatorCount; i_++) \ + static_cast(context->validators[i_]) \ + ->method arg2; \ + if (context->patternPropertiesValidators) \ + for (SizeType i_ = 0; i_ < context->patternPropertiesValidatorCount; \ + i_++) \ + static_cast( \ + context->patternPropertiesValidators[i_]) \ + ->method arg2; \ + } + +#define RAPIDJSON_SCHEMA_HANDLE_END_(method, arg2) \ + return valid_ = EndValue() && (!outputHandler_ || outputHandler_->method arg2) + +#define RAPIDJSON_SCHEMA_HANDLE_VALUE_(method, arg1, arg2) \ + RAPIDJSON_SCHEMA_HANDLE_BEGIN_(method, arg1); \ + RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(method, arg2); \ + RAPIDJSON_SCHEMA_HANDLE_END_(method, arg2) + + bool Null() { RAPIDJSON_SCHEMA_HANDLE_VALUE_(Null, (CurrentContext()), ()); } + bool Bool(bool b) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_(Bool, (CurrentContext(), b), (b)); + } + bool Int(int i) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_(Int, (CurrentContext(), i), (i)); + } + bool Uint(unsigned u) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_(Uint, (CurrentContext(), u), (u)); + } + bool Int64(int64_t i) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_(Int64, (CurrentContext(), i), (i)); + } + bool Uint64(uint64_t u) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_(Uint64, (CurrentContext(), u), (u)); + } + bool Double(double d) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_(Double, (CurrentContext(), d), (d)); + } + bool RawNumber(const Ch *str, SizeType length, bool copy) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_( + String, (CurrentContext(), str, length, copy), (str, length, copy)); + } + bool String(const Ch *str, SizeType length, bool copy) { + RAPIDJSON_SCHEMA_HANDLE_VALUE_( + String, (CurrentContext(), str, length, copy), (str, length, copy)); + } + + bool StartObject() { + RAPIDJSON_SCHEMA_HANDLE_BEGIN_(StartObject, (CurrentContext())); + RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(StartObject, ()); + return valid_ = !outputHandler_ || outputHandler_->StartObject(); + } + + bool Key(const Ch *str, SizeType len, bool copy) { + if (!valid_) return false; + AppendToken(str, len); + if (!CurrentSchema().Key(CurrentContext(), str, len, copy)) + return valid_ = false; + RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(Key, (str, len, copy)); + return valid_ = !outputHandler_ || outputHandler_->Key(str, len, copy); + } + + bool EndObject(SizeType memberCount) { + if (!valid_) return false; + RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(EndObject, (memberCount)); + if (!CurrentSchema().EndObject(CurrentContext(), memberCount)) + return valid_ = false; + RAPIDJSON_SCHEMA_HANDLE_END_(EndObject, (memberCount)); + } + + bool StartArray() { + RAPIDJSON_SCHEMA_HANDLE_BEGIN_(StartArray, (CurrentContext())); + RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(StartArray, ()); + return valid_ = !outputHandler_ || outputHandler_->StartArray(); + } + + bool EndArray(SizeType elementCount) { + if (!valid_) return false; + RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(EndArray, (elementCount)); + if (!CurrentSchema().EndArray(CurrentContext(), elementCount)) + return valid_ = false; + RAPIDJSON_SCHEMA_HANDLE_END_(EndArray, (elementCount)); + } + +#undef RAPIDJSON_SCHEMA_HANDLE_BEGIN_VERBOSE_ +#undef RAPIDJSON_SCHEMA_HANDLE_BEGIN_ +#undef RAPIDJSON_SCHEMA_HANDLE_PARALLEL_ +#undef RAPIDJSON_SCHEMA_HANDLE_VALUE_ + + // Implementation of ISchemaStateFactory + virtual ISchemaValidator *CreateSchemaValidator(const SchemaType &root) { + return new (GetStateAllocator().Malloc(sizeof(GenericSchemaValidator))) + GenericSchemaValidator(*schemaDocument_, root, + documentStack_.template Bottom(), + documentStack_.GetSize(), +#if RAPIDJSON_SCHEMA_VERBOSE + depth_ + 1, +#endif + &GetStateAllocator()); + } + + virtual void DestroySchemaValidator(ISchemaValidator *validator) { + GenericSchemaValidator *v = + static_cast(validator); + v->~GenericSchemaValidator(); + StateAllocator::Free(v); + } + + virtual void *CreateHasher() { + return new (GetStateAllocator().Malloc(sizeof(HasherType))) + HasherType(&GetStateAllocator()); + } + + virtual uint64_t GetHashCode(void *hasher) { + return static_cast(hasher)->GetHashCode(); + } + + virtual void DestroryHasher(void *hasher) { + HasherType *h = static_cast(hasher); + h->~HasherType(); + StateAllocator::Free(h); + } + + virtual void *MallocState(size_t size) { + return GetStateAllocator().Malloc(size); + } + + virtual void FreeState(void *p) { StateAllocator::Free(p); } + + private: + typedef typename SchemaType::Context Context; + typedef GenericValue, StateAllocator> HashCodeArray; + typedef internal::Hasher HasherType; + + GenericSchemaValidator( + const SchemaDocumentType &schemaDocument, const SchemaType &root, + const char *basePath, size_t basePathSize, +#if RAPIDJSON_SCHEMA_VERBOSE + unsigned depth, +#endif + StateAllocator *allocator = 0, + size_t schemaStackCapacity = kDefaultSchemaStackCapacity, + size_t documentStackCapacity = kDefaultDocumentStackCapacity) + : schemaDocument_(&schemaDocument), + root_(root), + stateAllocator_(allocator), + ownStateAllocator_(0), + schemaStack_(allocator, schemaStackCapacity), + documentStack_(allocator, documentStackCapacity), + outputHandler_(0), + error_(kObjectType), + currentError_(), + missingDependents_(), + valid_(true) +#if RAPIDJSON_SCHEMA_VERBOSE + , + depth_(depth) +#endif + { + if (basePath && basePathSize) + memcpy(documentStack_.template Push(basePathSize), basePath, + basePathSize); + } + + StateAllocator &GetStateAllocator() { + if (!stateAllocator_) + stateAllocator_ = ownStateAllocator_ = RAPIDJSON_NEW(StateAllocator)(); + return *stateAllocator_; + } + + bool BeginValue() { + if (schemaStack_.Empty()) + PushSchema(root_); + else { + if (CurrentContext().inArray) + internal::TokenHelper, + Ch>::AppendIndexToken(documentStack_, + CurrentContext() + .arrayElementIndex); + + if (!CurrentSchema().BeginValue(CurrentContext())) return false; + + SizeType count = CurrentContext().patternPropertiesSchemaCount; + const SchemaType **sa = CurrentContext().patternPropertiesSchemas; + typename Context::PatternValidatorType patternValidatorType = + CurrentContext().valuePatternValidatorType; + bool valueUniqueness = CurrentContext().valueUniqueness; + RAPIDJSON_ASSERT(CurrentContext().valueSchema); + PushSchema(*CurrentContext().valueSchema); + + if (count > 0) { + CurrentContext().objectPatternValidatorType = patternValidatorType; + ISchemaValidator **&va = CurrentContext().patternPropertiesValidators; + SizeType &validatorCount = + CurrentContext().patternPropertiesValidatorCount; + va = static_cast( + MallocState(sizeof(ISchemaValidator *) * count)); + for (SizeType i = 0; i < count; i++) + va[validatorCount++] = CreateSchemaValidator(*sa[i]); + } + + CurrentContext().arrayUniqueness = valueUniqueness; + } + return true; + } + + bool EndValue() { + if (!CurrentSchema().EndValue(CurrentContext())) return false; + +#if RAPIDJSON_SCHEMA_VERBOSE + GenericStringBuffer sb; + schemaDocument_->GetPointer(&CurrentSchema()).Stringify(sb); + + *documentStack_.template Push() = '\0'; + documentStack_.template Pop(1); + internal::PrintValidatorPointers(depth_, sb.GetString(), + documentStack_.template Bottom()); +#endif + + uint64_t h = + CurrentContext().arrayUniqueness + ? static_cast(CurrentContext().hasher)->GetHashCode() + : 0; + + PopSchema(); + + if (!schemaStack_.Empty()) { + Context &context = CurrentContext(); + if (context.valueUniqueness) { + HashCodeArray *a = + static_cast(context.arrayElementHashCodes); + if (!a) + CurrentContext().arrayElementHashCodes = a = + new (GetStateAllocator().Malloc(sizeof(HashCodeArray))) + HashCodeArray(kArrayType); + for (typename HashCodeArray::ConstValueIterator itr = a->Begin(); + itr != a->End(); ++itr) + if (itr->GetUint64() == h) { + DuplicateItems(static_cast(itr - a->Begin()), a->Size()); + RAPIDJSON_INVALID_KEYWORD_RETURN( + SchemaType::GetUniqueItemsString()); + } + a->PushBack(h, GetStateAllocator()); + } + } + + // Remove the last token of document pointer + while (!documentStack_.Empty() && + *documentStack_.template Pop(1) != '/') + ; + + return true; + } + + void AppendToken(const Ch *str, SizeType len) { + documentStack_.template Reserve( + 1 + + len * 2); // worst case all characters are escaped as two characters + *documentStack_.template PushUnsafe() = '/'; + for (SizeType i = 0; i < len; i++) { + if (str[i] == '~') { + *documentStack_.template PushUnsafe() = '~'; + *documentStack_.template PushUnsafe() = '0'; + } else if (str[i] == '/') { + *documentStack_.template PushUnsafe() = '~'; + *documentStack_.template PushUnsafe() = '1'; + } else + *documentStack_.template PushUnsafe() = str[i]; + } + } + + RAPIDJSON_FORCEINLINE void PushSchema(const SchemaType &schema) { + new (schemaStack_.template Push()) Context(*this, *this, &schema); + } + + RAPIDJSON_FORCEINLINE void PopSchema() { + Context *c = schemaStack_.template Pop(1); + if (HashCodeArray *a = + static_cast(c->arrayElementHashCodes)) { + a->~HashCodeArray(); + StateAllocator::Free(a); + } + c->~Context(); + } + + void AddErrorLocation(ValueType &result, bool parent) { + GenericStringBuffer sb; + PointerType instancePointer = GetInvalidDocumentPointer(); + ((parent && instancePointer.GetTokenCount() > 0) + ? PointerType(instancePointer.GetTokens(), + instancePointer.GetTokenCount() - 1) + : instancePointer) + .StringifyUriFragment(sb); + ValueType instanceRef(sb.GetString(), + static_cast(sb.GetSize() / sizeof(Ch)), + GetStateAllocator()); + result.AddMember(GetInstanceRefString(), instanceRef, GetStateAllocator()); + sb.Clear(); + memcpy(sb.Push(CurrentSchema().GetURI().GetStringLength()), + CurrentSchema().GetURI().GetString(), + CurrentSchema().GetURI().GetStringLength() * sizeof(Ch)); + GetInvalidSchemaPointer().StringifyUriFragment(sb); + ValueType schemaRef(sb.GetString(), + static_cast(sb.GetSize() / sizeof(Ch)), + GetStateAllocator()); + result.AddMember(GetSchemaRefString(), schemaRef, GetStateAllocator()); + } + + void AddError(ValueType &keyword, ValueType &error) { + typename ValueType::MemberIterator member = error_.FindMember(keyword); + if (member == error_.MemberEnd()) + error_.AddMember(keyword, error, GetStateAllocator()); + else { + if (member->value.IsObject()) { + ValueType errors(kArrayType); + errors.PushBack(member->value, GetStateAllocator()); + member->value = errors; + } + member->value.PushBack(error, GetStateAllocator()); + } + } + + void AddCurrentError(const typename SchemaType::ValueType &keyword, + bool parent = false) { + AddErrorLocation(currentError_, parent); + AddError(ValueType(keyword, GetStateAllocator(), false).Move(), + currentError_); + } + + void MergeError(ValueType &other) { + for (typename ValueType::MemberIterator it = other.MemberBegin(), + end = other.MemberEnd(); + it != end; ++it) { + AddError(it->name, it->value); + } + } + + void AddNumberError( + const typename SchemaType::ValueType &keyword, ValueType &actual, + const SValue &expected, + const typename SchemaType::ValueType &(*exclusive)() = 0) { + currentError_.SetObject(); + currentError_.AddMember(GetActualString(), actual, GetStateAllocator()); + currentError_.AddMember(GetExpectedString(), + ValueType(expected, GetStateAllocator()).Move(), + GetStateAllocator()); + if (exclusive) + currentError_.AddMember( + ValueType(exclusive(), GetStateAllocator()).Move(), true, + GetStateAllocator()); + AddCurrentError(keyword); + } + + void AddErrorArray(const typename SchemaType::ValueType &keyword, + ISchemaValidator **subvalidators, SizeType count) { + ValueType errors(kArrayType); + for (SizeType i = 0; i < count; ++i) + errors.PushBack( + static_cast(subvalidators[i])->GetError(), + GetStateAllocator()); + currentError_.SetObject(); + currentError_.AddMember(GetErrorsString(), errors, GetStateAllocator()); + AddCurrentError(keyword); + } + + const SchemaType &CurrentSchema() const { + return *schemaStack_.template Top()->schema; + } + Context &CurrentContext() { return *schemaStack_.template Top(); } + const Context &CurrentContext() const { + return *schemaStack_.template Top(); + } + + static const size_t kDefaultSchemaStackCapacity = 1024; + static const size_t kDefaultDocumentStackCapacity = 256; + const SchemaDocumentType *schemaDocument_; + const SchemaType &root_; + StateAllocator *stateAllocator_; + StateAllocator *ownStateAllocator_; + internal::Stack + schemaStack_; //!< stack to store the current path of schema + //!< (BaseSchemaType *) + internal::Stack + documentStack_; //!< stack to store the current path of validating + //!< document (Ch) + OutputHandler *outputHandler_; + ValueType error_; + ValueType currentError_; + ValueType missingDependents_; + bool valid_; +#if RAPIDJSON_SCHEMA_VERBOSE + unsigned depth_; +#endif +}; + +typedef GenericSchemaValidator SchemaValidator; + +/////////////////////////////////////////////////////////////////////////////// +// SchemaValidatingReader + +//! A helper class for parsing with validation. +/*! + This helper class is a functor, designed as a parameter of \ref + GenericDocument::Populate(). + + \tparam parseFlags Combination of \ref ParseFlag. + \tparam InputStream Type of input stream, implementing Stream concept. + \tparam SourceEncoding Encoding of the input stream. + \tparam SchemaDocumentType Type of schema document. + \tparam StackAllocator Allocator type for stack. +*/ +template +class SchemaValidatingReader { + public: + typedef typename SchemaDocumentType::PointerType PointerType; + typedef typename InputStream::Ch Ch; + typedef GenericValue ValueType; + + //! Constructor + /*! + \param is Input stream. + \param sd Schema document. + */ + SchemaValidatingReader(InputStream &is, const SchemaDocumentType &sd) + : is_(is), + sd_(sd), + invalidSchemaKeyword_(), + error_(kObjectType), + isValid_(true) {} + + template + bool operator()(Handler &handler) { + GenericReader + reader; + GenericSchemaValidator validator(sd_, handler); + parseResult_ = reader.template Parse(is_, validator); + + isValid_ = validator.IsValid(); + if (isValid_) { + invalidSchemaPointer_ = PointerType(); + invalidSchemaKeyword_ = 0; + invalidDocumentPointer_ = PointerType(); + error_.SetObject(); + } else { + invalidSchemaPointer_ = validator.GetInvalidSchemaPointer(); + invalidSchemaKeyword_ = validator.GetInvalidSchemaKeyword(); + invalidDocumentPointer_ = validator.GetInvalidDocumentPointer(); + error_.CopyFrom(validator.GetError(), allocator_); + } + + return parseResult_; + } + + const ParseResult &GetParseResult() const { return parseResult_; } + bool IsValid() const { return isValid_; } + const PointerType &GetInvalidSchemaPointer() const { + return invalidSchemaPointer_; + } + const Ch *GetInvalidSchemaKeyword() const { return invalidSchemaKeyword_; } + const PointerType &GetInvalidDocumentPointer() const { + return invalidDocumentPointer_; + } + const ValueType &GetError() const { return error_; } + + private: + InputStream &is_; + const SchemaDocumentType &sd_; + + ParseResult parseResult_; + PointerType invalidSchemaPointer_; + const Ch *invalidSchemaKeyword_; + PointerType invalidDocumentPointer_; + StackAllocator allocator_; + ValueType error_; + bool isValid_; +}; + +RAPIDJSON_NAMESPACE_END +RAPIDJSON_DIAG_POP + +#endif // RAPIDJSON_SCHEMA_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/stream.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/stream.h new file mode 100644 index 0000000..a446c1a --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/stream.h @@ -0,0 +1,242 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#include "rapidjson.h" + +#ifndef RAPIDJSON_STREAM_H_ +#define RAPIDJSON_STREAM_H_ + +#include "encodings.h" + +RAPIDJSON_NAMESPACE_BEGIN + +/////////////////////////////////////////////////////////////////////////////// +// Stream + +/*! \class rapidjson::Stream + \brief Concept for reading and writing characters. + + For read-only stream, no need to implement PutBegin(), Put(), Flush() and +PutEnd(). + + For write-only stream, only need to implement Put() and Flush(). + +\code +concept Stream { + typename Ch; //!< Character type of the stream. + + //! Read the current character from stream without moving the read cursor. + Ch Peek() const; + + //! Read the current character from stream and moving the read cursor to +next character. Ch Take(); + + //! Get the current read cursor. + //! \return Number of characters read from start. + size_t Tell(); + + //! Begin writing operation at the current read pointer. + //! \return The begin writer pointer. + Ch* PutBegin(); + + //! Write a character. + void Put(Ch c); + + //! Flush the buffer. + void Flush(); + + //! End the writing operation. + //! \param begin The begin write pointer returned by PutBegin(). + //! \return Number of characters written. + size_t PutEnd(Ch* begin); +} +\endcode +*/ + +//! Provides additional information for stream. +/*! + By using traits pattern, this type provides a default configuration for + stream. For custom stream, this type can be specialized for other + configuration. See TEST(Reader, CustomStringStream) in readertest.cpp for + example. +*/ +template +struct StreamTraits { + //! Whether to make local copy of stream for optimization during parsing. + /*! + By default, for safety, streams do not use local copy optimization. + Stream that can be copied fast should specialize this, like + StreamTraits. + */ + enum { copyOptimization = 0 }; +}; + +//! Reserve n characters for writing to a stream. +template +inline void PutReserve(Stream &stream, size_t count) { + (void)stream; + (void)count; +} + +//! Write character to a stream, presuming buffer is reserved. +template +inline void PutUnsafe(Stream &stream, typename Stream::Ch c) { + stream.Put(c); +} + +//! Put N copies of a character to a stream. +template +inline void PutN(Stream &stream, Ch c, size_t n) { + PutReserve(stream, n); + for (size_t i = 0; i < n; i++) PutUnsafe(stream, c); +} + +/////////////////////////////////////////////////////////////////////////////// +// GenericStreamWrapper + +//! A Stream Wrapper +/*! \tThis string stream is a wrapper for any stream by just forwarding any + \treceived message to the origin stream. + \note implements Stream concept +*/ + +#if defined(_MSC_VER) && _MSC_VER <= 1800 +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(4702) // unreachable code +RAPIDJSON_DIAG_OFF(4512) // assignment operator could not be generated +#endif + +template > +class GenericStreamWrapper { + public: + typedef typename Encoding::Ch Ch; + GenericStreamWrapper(InputStream &is) : is_(is) {} + + Ch Peek() const { return is_.Peek(); } + Ch Take() { return is_.Take(); } + size_t Tell() { return is_.Tell(); } + Ch *PutBegin() { return is_.PutBegin(); } + void Put(Ch ch) { is_.Put(ch); } + void Flush() { is_.Flush(); } + size_t PutEnd(Ch *ch) { return is_.PutEnd(ch); } + + // wrapper for MemoryStream + const Ch *Peek4() const { return is_.Peek4(); } + + // wrapper for AutoUTFInputStream + UTFType GetType() const { return is_.GetType(); } + bool HasBOM() const { return is_.HasBOM(); } + + protected: + InputStream &is_; +}; + +#if defined(_MSC_VER) && _MSC_VER <= 1800 +RAPIDJSON_DIAG_POP +#endif + +/////////////////////////////////////////////////////////////////////////////// +// StringStream + +//! Read-only string stream. +/*! \note implements Stream concept + */ +template +struct GenericStringStream { + typedef typename Encoding::Ch Ch; + + GenericStringStream(const Ch *src) : src_(src), head_(src) {} + + Ch Peek() const { return *src_; } + Ch Take() { return *src_++; } + size_t Tell() const { return static_cast(src_ - head_); } + + Ch *PutBegin() { + RAPIDJSON_ASSERT(false); + return 0; + } + void Put(Ch) { RAPIDJSON_ASSERT(false); } + void Flush() { RAPIDJSON_ASSERT(false); } + size_t PutEnd(Ch *) { + RAPIDJSON_ASSERT(false); + return 0; + } + + const Ch *src_; //!< Current read position. + const Ch *head_; //!< Original head of the string. +}; + +template +struct StreamTraits> { + enum { copyOptimization = 1 }; +}; + +//! String stream with UTF8 encoding. +typedef GenericStringStream> StringStream; + +/////////////////////////////////////////////////////////////////////////////// +// InsituStringStream + +//! A read-write string stream. +/*! This string stream is particularly designed for in-situ parsing. + \note implements Stream concept +*/ +template +struct GenericInsituStringStream { + typedef typename Encoding::Ch Ch; + + GenericInsituStringStream(Ch *src) : src_(src), dst_(0), head_(src) {} + + // Read + Ch Peek() { return *src_; } + Ch Take() { return *src_++; } + size_t Tell() { return static_cast(src_ - head_); } + + // Write + void Put(Ch c) { + RAPIDJSON_ASSERT(dst_ != 0); + *dst_++ = c; + } + + Ch *PutBegin() { return dst_ = src_; } + size_t PutEnd(Ch *begin) { return static_cast(dst_ - begin); } + void Flush() {} + + Ch *Push(size_t count) { + Ch *begin = dst_; + dst_ += count; + return begin; + } + void Pop(size_t count) { dst_ -= count; } + + Ch *src_; + Ch *dst_; + Ch *head_; +}; + +template +struct StreamTraits> { + enum { copyOptimization = 1 }; +}; + +//! Insitu string stream with UTF8 encoding. +typedef GenericInsituStringStream> InsituStringStream; + +RAPIDJSON_NAMESPACE_END + +#endif // RAPIDJSON_STREAM_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/stringbuffer.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/stringbuffer.h new file mode 100644 index 0000000..42b2bb1 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/stringbuffer.h @@ -0,0 +1,130 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_STRINGBUFFER_H_ +#define RAPIDJSON_STRINGBUFFER_H_ + +#include "internal/stack.h" +#include "stream.h" + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS +#include // std::move +#endif + +#include "internal/stack.h" + +#if defined(__clang__) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(c++ 98 - compat) +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +//! Represents an in-memory output stream. +/*! + \tparam Encoding Encoding of the stream. + \tparam Allocator type for allocating memory buffer. + \note implements Stream concept +*/ +template +class GenericStringBuffer { + public: + typedef typename Encoding::Ch Ch; + + GenericStringBuffer(Allocator *allocator = 0, + size_t capacity = kDefaultCapacity) + : stack_(allocator, capacity) {} + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + GenericStringBuffer(GenericStringBuffer &&rhs) + : stack_(std::move(rhs.stack_)) {} + GenericStringBuffer &operator=(GenericStringBuffer &&rhs) { + if (&rhs != this) stack_ = std::move(rhs.stack_); + return *this; + } +#endif + + void Put(Ch c) { *stack_.template Push() = c; } + void PutUnsafe(Ch c) { *stack_.template PushUnsafe() = c; } + void Flush() {} + + void Clear() { stack_.Clear(); } + void ShrinkToFit() { + // Push and pop a null terminator. This is safe. + *stack_.template Push() = '\0'; + stack_.ShrinkToFit(); + stack_.template Pop(1); + } + + void Reserve(size_t count) { stack_.template Reserve(count); } + Ch *Push(size_t count) { return stack_.template Push(count); } + Ch *PushUnsafe(size_t count) { return stack_.template PushUnsafe(count); } + void Pop(size_t count) { stack_.template Pop(count); } + + const Ch *GetString() const { + // Push and pop a null terminator. This is safe. + *stack_.template Push() = '\0'; + stack_.template Pop(1); + + return stack_.template Bottom(); + } + + //! Get the size of string in bytes in the string buffer. + size_t GetSize() const { return stack_.GetSize(); } + + //! Get the length of string in Ch in the string buffer. + size_t GetLength() const { return stack_.GetSize() / sizeof(Ch); } + + static const size_t kDefaultCapacity = 256; + mutable internal::Stack stack_; + + private: + // Prohibit copy constructor & assignment operator. + GenericStringBuffer(const GenericStringBuffer &); + GenericStringBuffer &operator=(const GenericStringBuffer &); +}; + +//! String buffer with UTF8 encoding +typedef GenericStringBuffer> StringBuffer; + +template +inline void PutReserve(GenericStringBuffer &stream, + size_t count) { + stream.Reserve(count); +} + +template +inline void PutUnsafe(GenericStringBuffer &stream, + typename Encoding::Ch c) { + stream.PutUnsafe(c); +} + +//! Implement specialized version of PutN() with memset() for better +//! performance. +template <> +inline void PutN(GenericStringBuffer> &stream, char c, size_t n) { + std::memset(stream.stack_.Push(n), c, n * sizeof(c)); +} + +RAPIDJSON_NAMESPACE_END + +#if defined(__clang__) +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_STRINGBUFFER_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/writer.h b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/writer.h new file mode 100644 index 0000000..69f9b05 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/3rdparty/rapidjson/writer.h @@ -0,0 +1,811 @@ +// Tencent is pleased to support the open source community by making RapidJSON +// available. +// +// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +// rights reserved. +// +// Licensed under the MIT License (the "License"); you may not use this file +// except in compliance with the License. You may obtain a copy of the License +// at +// +// http://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +#ifndef RAPIDJSON_WRITER_H_ +#define RAPIDJSON_WRITER_H_ + +#include // placement new +#include "internal/clzll.h" +#include "internal/dtoa.h" +#include "internal/itoa.h" +#include "internal/meta.h" +#include "internal/stack.h" +#include "internal/strfunc.h" +#include "stream.h" +#include "stringbuffer.h" + +#if defined(RAPIDJSON_SIMD) && defined(_MSC_VER) +#include +#pragma intrinsic(_BitScanForward) +#endif +#ifdef RAPIDJSON_SSE42 +#include +#elif defined(RAPIDJSON_SSE2) +#include +#elif defined(RAPIDJSON_NEON) +#include +#endif + +#ifdef __clang__ +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(padded) +RAPIDJSON_DIAG_OFF(unreachable - code) +RAPIDJSON_DIAG_OFF(c++ 98 - compat) +#elif defined(_MSC_VER) +RAPIDJSON_DIAG_PUSH +RAPIDJSON_DIAG_OFF(4127) // conditional expression is constant +#endif + +RAPIDJSON_NAMESPACE_BEGIN + +/////////////////////////////////////////////////////////////////////////////// +// WriteFlag + +/*! \def RAPIDJSON_WRITE_DEFAULT_FLAGS + \ingroup RAPIDJSON_CONFIG + \brief User-defined kWriteDefaultFlags definition. + + User can define this as any \c WriteFlag combinations. +*/ +#ifndef RAPIDJSON_WRITE_DEFAULT_FLAGS +#define RAPIDJSON_WRITE_DEFAULT_FLAGS kWriteNoFlags +#endif + +//! Combination of writeFlags +enum WriteFlag { + kWriteNoFlags = 0, //!< No flags are set. + kWriteValidateEncodingFlag = 1, //!< Validate encoding of JSON strings. + kWriteNanAndInfFlag = 2, //!< Allow writing of Infinity, -Infinity and NaN. + kWriteDefaultFlags = + RAPIDJSON_WRITE_DEFAULT_FLAGS //!< Default write flags. Can be customized + //!< by defining + //!< RAPIDJSON_WRITE_DEFAULT_FLAGS +}; + +//! JSON writer +/*! Writer implements the concept Handler. + It generates JSON text by events to an output os. + + User may programmatically calls the functions of a writer to generate JSON + text. + + On the other side, a writer can also be passed to objects that generates + events, + + for example Reader::Parse() and Document::Accept(). + + \tparam OutputStream Type of output stream. + \tparam SourceEncoding Encoding of source string. + \tparam TargetEncoding Encoding of output stream. + \tparam StackAllocator Type of allocator for allocating memory of stack. + \note implements Handler concept +*/ +template , + typename TargetEncoding = UTF8<>, + typename StackAllocator = CrtAllocator, + unsigned writeFlags = kWriteDefaultFlags> +class Writer { + public: + typedef typename SourceEncoding::Ch Ch; + + static const int kDefaultMaxDecimalPlaces = 324; + + //! Constructor + /*! \param os Output stream. + \param stackAllocator User supplied allocator. If it is null, it will + create a private one. \param levelDepth Initial capacity of stack. + */ + explicit Writer(OutputStream &os, StackAllocator *stackAllocator = 0, + size_t levelDepth = kDefaultLevelDepth) + : os_(&os), + level_stack_(stackAllocator, levelDepth * sizeof(Level)), + maxDecimalPlaces_(kDefaultMaxDecimalPlaces), + hasRoot_(false) {} + + explicit Writer(StackAllocator *allocator = 0, + size_t levelDepth = kDefaultLevelDepth) + : os_(0), + level_stack_(allocator, levelDepth * sizeof(Level)), + maxDecimalPlaces_(kDefaultMaxDecimalPlaces), + hasRoot_(false) {} + +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS + Writer(Writer &&rhs) + : os_(rhs.os_), + level_stack_(std::move(rhs.level_stack_)), + maxDecimalPlaces_(rhs.maxDecimalPlaces_), + hasRoot_(rhs.hasRoot_) { + rhs.os_ = 0; + } +#endif + + //! Reset the writer with a new stream. + /*! + This function reset the writer with a new stream and default settings, + in order to make a Writer object reusable for output multiple JSONs. + + \param os New output stream. + \code + Writer writer(os1); + writer.StartObject(); + // ... + writer.EndObject(); + + writer.Reset(os2); + writer.StartObject(); + // ... + writer.EndObject(); + \endcode + */ + void Reset(OutputStream &os) { + os_ = &os; + hasRoot_ = false; + level_stack_.Clear(); + } + + //! Checks whether the output is a complete JSON. + /*! + A complete JSON has a complete root object or array. + */ + bool IsComplete() const { return hasRoot_ && level_stack_.Empty(); } + + int GetMaxDecimalPlaces() const { return maxDecimalPlaces_; } + + //! Sets the maximum number of decimal places for double output. + /*! + This setting truncates the output with specified number of decimal places. + + For example, + + \code + writer.SetMaxDecimalPlaces(3); + writer.StartArray(); + writer.Double(0.12345); // "0.123" + writer.Double(0.0001); // "0.0" + writer.Double(1.234567890123456e30); // "1.234567890123456e30" (do not + truncate significand for positive exponent) writer.Double(1.23e-4); // + "0.0" (do truncate significand for negative exponent) + writer.EndArray(); + \endcode + + The default setting does not truncate any decimal places. You can restore + to this setting by calling \code + writer.SetMaxDecimalPlaces(Writer::kDefaultMaxDecimalPlaces); + \endcode + */ + void SetMaxDecimalPlaces(int maxDecimalPlaces) { + maxDecimalPlaces_ = maxDecimalPlaces; + } + + /*!@name Implementation of Handler + \see Handler + */ + //@{ + + bool Null() { + Prefix(kNullType); + return EndValue(WriteNull()); + } + bool Bool(bool b) { + Prefix(b ? kTrueType : kFalseType); + return EndValue(WriteBool(b)); + } + bool Int(int i) { + Prefix(kNumberType); + return EndValue(WriteInt(i)); + } + bool Uint(unsigned u) { + Prefix(kNumberType); + return EndValue(WriteUint(u)); + } + bool Int64(int64_t i64) { + Prefix(kNumberType); + return EndValue(WriteInt64(i64)); + } + bool Uint64(uint64_t u64) { + Prefix(kNumberType); + return EndValue(WriteUint64(u64)); + } + + //! Writes the given \c double value to the stream + /*! + \param d The value to be written. + \return Whether it is succeed. + */ + bool Double(double d) { + Prefix(kNumberType); + return EndValue(WriteDouble(d)); + } + + bool RawNumber(const Ch *str, SizeType length, bool copy = false) { + RAPIDJSON_ASSERT(str != 0); + (void)copy; + Prefix(kNumberType); + return EndValue(WriteString(str, length)); + } + + bool String(const Ch *str, SizeType length, bool copy = false) { + RAPIDJSON_ASSERT(str != 0); + (void)copy; + Prefix(kStringType); + return EndValue(WriteString(str, length)); + } + +#if RAPIDJSON_HAS_STDSTRING + bool String(const std::basic_string &str) { + return String(str.data(), SizeType(str.size())); + } +#endif + + bool StartObject() { + Prefix(kObjectType); + new (level_stack_.template Push()) Level(false); + return WriteStartObject(); + } + + bool Key(const Ch *str, SizeType length, bool copy = false) { + return String(str, length, copy); + } + +#if RAPIDJSON_HAS_STDSTRING + bool Key(const std::basic_string &str) { + return Key(str.data(), SizeType(str.size())); + } +#endif + + bool EndObject(SizeType memberCount = 0) { + (void)memberCount; + RAPIDJSON_ASSERT(level_stack_.GetSize() >= + sizeof(Level)); // not inside an Object + RAPIDJSON_ASSERT(!level_stack_.template Top() + ->inArray); // currently inside an Array, not Object + RAPIDJSON_ASSERT(0 == + level_stack_.template Top()->valueCount % + 2); // Object has a Key without a Value + level_stack_.template Pop(1); + return EndValue(WriteEndObject()); + } + + bool StartArray() { + Prefix(kArrayType); + new (level_stack_.template Push()) Level(true); + return WriteStartArray(); + } + + bool EndArray(SizeType elementCount = 0) { + (void)elementCount; + RAPIDJSON_ASSERT(level_stack_.GetSize() >= sizeof(Level)); + RAPIDJSON_ASSERT(level_stack_.template Top()->inArray); + level_stack_.template Pop(1); + return EndValue(WriteEndArray()); + } + //@} + + /*! @name Convenience extensions */ + //@{ + + //! Simpler but slower overload. + bool String(const Ch *const &str) { + return String(str, internal::StrLen(str)); + } + bool Key(const Ch *const &str) { return Key(str, internal::StrLen(str)); } + + //@} + + //! Write a raw JSON value. + /*! + For user to write a stringified JSON as a value. + + \param json A well-formed JSON value. It should not contain null character + within [0, length - 1] range. \param length Length of the json. \param type + Type of the root of json. + */ + bool RawValue(const Ch *json, size_t length, Type type) { + RAPIDJSON_ASSERT(json != 0); + Prefix(type); + return EndValue(WriteRawValue(json, length)); + } + + //! Flush the output stream. + /*! + Allows the user to flush the output stream immediately. + */ + void Flush() { os_->Flush(); } + + protected: + //! Information for each nested level + struct Level { + Level(bool inArray_) : valueCount(0), inArray(inArray_) {} + size_t valueCount; //!< number of values in this level + bool inArray; //!< true if in array, otherwise in object + }; + + static const size_t kDefaultLevelDepth = 32; + + bool WriteNull() { + PutReserve(*os_, 4); + PutUnsafe(*os_, 'n'); + PutUnsafe(*os_, 'u'); + PutUnsafe(*os_, 'l'); + PutUnsafe(*os_, 'l'); + return true; + } + + bool WriteBool(bool b) { + if (b) { + PutReserve(*os_, 4); + PutUnsafe(*os_, 't'); + PutUnsafe(*os_, 'r'); + PutUnsafe(*os_, 'u'); + PutUnsafe(*os_, 'e'); + } else { + PutReserve(*os_, 5); + PutUnsafe(*os_, 'f'); + PutUnsafe(*os_, 'a'); + PutUnsafe(*os_, 'l'); + PutUnsafe(*os_, 's'); + PutUnsafe(*os_, 'e'); + } + return true; + } + + bool WriteInt(int i) { + char buffer[11]; + const char *end = internal::i32toa(i, buffer); + PutReserve(*os_, static_cast(end - buffer)); + for (const char *p = buffer; p != end; ++p) + PutUnsafe(*os_, static_cast(*p)); + return true; + } + + bool WriteUint(unsigned u) { + char buffer[10]; + const char *end = internal::u32toa(u, buffer); + PutReserve(*os_, static_cast(end - buffer)); + for (const char *p = buffer; p != end; ++p) + PutUnsafe(*os_, static_cast(*p)); + return true; + } + + bool WriteInt64(int64_t i64) { + char buffer[21]; + const char *end = internal::i64toa(i64, buffer); + PutReserve(*os_, static_cast(end - buffer)); + for (const char *p = buffer; p != end; ++p) + PutUnsafe(*os_, static_cast(*p)); + return true; + } + + bool WriteUint64(uint64_t u64) { + char buffer[20]; + char *end = internal::u64toa(u64, buffer); + PutReserve(*os_, static_cast(end - buffer)); + for (char *p = buffer; p != end; ++p) + PutUnsafe(*os_, static_cast(*p)); + return true; + } + + bool WriteDouble(double d) { + if (internal::Double(d).IsNanOrInf()) { + if (!(writeFlags & kWriteNanAndInfFlag)) return false; + if (internal::Double(d).IsNan()) { + PutReserve(*os_, 3); + PutUnsafe(*os_, 'N'); + PutUnsafe(*os_, 'a'); + PutUnsafe(*os_, 'N'); + return true; + } + if (internal::Double(d).Sign()) { + PutReserve(*os_, 9); + PutUnsafe(*os_, '-'); + } else + PutReserve(*os_, 8); + PutUnsafe(*os_, 'I'); + PutUnsafe(*os_, 'n'); + PutUnsafe(*os_, 'f'); + PutUnsafe(*os_, 'i'); + PutUnsafe(*os_, 'n'); + PutUnsafe(*os_, 'i'); + PutUnsafe(*os_, 't'); + PutUnsafe(*os_, 'y'); + return true; + } + + char buffer[25]; + char *end = internal::dtoa(d, buffer, maxDecimalPlaces_); + PutReserve(*os_, static_cast(end - buffer)); + for (char *p = buffer; p != end; ++p) + PutUnsafe(*os_, static_cast(*p)); + return true; + } + + bool WriteString(const Ch *str, SizeType length) { + static const typename OutputStream::Ch hexDigits[16] = { + '0', '1', '2', '3', '4', '5', '6', '7', + '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; + static const char escape[256] = { +#define Z16 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + // 0 1 2 3 4 5 6 7 8 9 A B C D E + // F + 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'b', 't', + 'n', 'u', 'f', 'r', 'u', 'u', // 00 + 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', + 'u', 'u', 'u', 'u', 'u', 'u', // 10 + 0, 0, '"', 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, // 20 + Z16, Z16, // 30~4F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, '\\', 0, 0, 0, // 50 + Z16, Z16, Z16, Z16, Z16, Z16, Z16, Z16, Z16, Z16 // 60~FF +#undef Z16 + }; + + if (TargetEncoding::supportUnicode) + PutReserve(*os_, 2 + length * 6); // "\uxxxx..." + else + PutReserve(*os_, 2 + length * 12); // "\uxxxx\uyyyy..." + + PutUnsafe(*os_, '\"'); + GenericStringStream is(str); + while (ScanWriteUnescapedString(is, length)) { + const Ch c = is.Peek(); + if (!TargetEncoding::supportUnicode && static_cast(c) >= 0x80) { + // Unicode escaping + unsigned codepoint; + if (RAPIDJSON_UNLIKELY(!SourceEncoding::Decode(is, &codepoint))) + return false; + PutUnsafe(*os_, '\\'); + PutUnsafe(*os_, 'u'); + if (codepoint <= 0xD7FF || + (codepoint >= 0xE000 && codepoint <= 0xFFFF)) { + PutUnsafe(*os_, hexDigits[(codepoint >> 12) & 15]); + PutUnsafe(*os_, hexDigits[(codepoint >> 8) & 15]); + PutUnsafe(*os_, hexDigits[(codepoint >> 4) & 15]); + PutUnsafe(*os_, hexDigits[(codepoint)&15]); + } else { + RAPIDJSON_ASSERT(codepoint >= 0x010000 && codepoint <= 0x10FFFF); + // Surrogate pair + unsigned s = codepoint - 0x010000; + unsigned lead = (s >> 10) + 0xD800; + unsigned trail = (s & 0x3FF) + 0xDC00; + PutUnsafe(*os_, hexDigits[(lead >> 12) & 15]); + PutUnsafe(*os_, hexDigits[(lead >> 8) & 15]); + PutUnsafe(*os_, hexDigits[(lead >> 4) & 15]); + PutUnsafe(*os_, hexDigits[(lead)&15]); + PutUnsafe(*os_, '\\'); + PutUnsafe(*os_, 'u'); + PutUnsafe(*os_, hexDigits[(trail >> 12) & 15]); + PutUnsafe(*os_, hexDigits[(trail >> 8) & 15]); + PutUnsafe(*os_, hexDigits[(trail >> 4) & 15]); + PutUnsafe(*os_, hexDigits[(trail)&15]); + } + } else if ((sizeof(Ch) == 1 || static_cast(c) < 256) && + RAPIDJSON_UNLIKELY(escape[static_cast(c)])) { + is.Take(); + PutUnsafe(*os_, '\\'); + PutUnsafe(*os_, static_cast( + escape[static_cast(c)])); + if (escape[static_cast(c)] == 'u') { + PutUnsafe(*os_, '0'); + PutUnsafe(*os_, '0'); + PutUnsafe(*os_, hexDigits[static_cast(c) >> 4]); + PutUnsafe(*os_, hexDigits[static_cast(c) & 0xF]); + } + } else if (RAPIDJSON_UNLIKELY(!( + writeFlags & kWriteValidateEncodingFlag + ? Transcoder::Validate( + is, *os_) + : Transcoder::TranscodeUnsafe(is, + *os_)))) + return false; + } + PutUnsafe(*os_, '\"'); + return true; + } + + bool ScanWriteUnescapedString(GenericStringStream &is, + size_t length) { + return RAPIDJSON_LIKELY(is.Tell() < length); + } + + bool WriteStartObject() { + os_->Put('{'); + return true; + } + bool WriteEndObject() { + os_->Put('}'); + return true; + } + bool WriteStartArray() { + os_->Put('['); + return true; + } + bool WriteEndArray() { + os_->Put(']'); + return true; + } + + bool WriteRawValue(const Ch *json, size_t length) { + PutReserve(*os_, length); + GenericStringStream is(json); + while (RAPIDJSON_LIKELY(is.Tell() < length)) { + RAPIDJSON_ASSERT(is.Peek() != '\0'); + if (RAPIDJSON_UNLIKELY(!( + writeFlags & kWriteValidateEncodingFlag + ? Transcoder::Validate(is, + *os_) + : Transcoder::TranscodeUnsafe( + is, *os_)))) + return false; + } + return true; + } + + void Prefix(Type type) { + (void)type; + if (RAPIDJSON_LIKELY(level_stack_.GetSize() != + 0)) { // this value is not at root + Level *level = level_stack_.template Top(); + if (level->valueCount > 0) { + if (level->inArray) + os_->Put(','); // add comma if it is not the first element in array + else // in object + os_->Put((level->valueCount % 2 == 0) ? ',' : ':'); + } + if (!level->inArray && level->valueCount % 2 == 0) + RAPIDJSON_ASSERT(type == kStringType); // if it's in object, then even + // number should be a name + level->valueCount++; + } else { + RAPIDJSON_ASSERT(!hasRoot_); // Should only has one and only one root. + hasRoot_ = true; + } + } + + // Flush the value if it is the top level one. + bool EndValue(bool ret) { + if (RAPIDJSON_UNLIKELY(level_stack_.Empty())) // end of json text + Flush(); + return ret; + } + + OutputStream *os_; + internal::Stack level_stack_; + int maxDecimalPlaces_; + bool hasRoot_; + + private: + // Prohibit copy constructor & assignment operator. + Writer(const Writer &); + Writer &operator=(const Writer &); +}; + +// Full specialization for StringStream to prevent memory copying + +template <> +inline bool Writer::WriteInt(int i) { + char *buffer = os_->Push(11); + const char *end = internal::i32toa(i, buffer); + os_->Pop(static_cast(11 - (end - buffer))); + return true; +} + +template <> +inline bool Writer::WriteUint(unsigned u) { + char *buffer = os_->Push(10); + const char *end = internal::u32toa(u, buffer); + os_->Pop(static_cast(10 - (end - buffer))); + return true; +} + +template <> +inline bool Writer::WriteInt64(int64_t i64) { + char *buffer = os_->Push(21); + const char *end = internal::i64toa(i64, buffer); + os_->Pop(static_cast(21 - (end - buffer))); + return true; +} + +template <> +inline bool Writer::WriteUint64(uint64_t u) { + char *buffer = os_->Push(20); + const char *end = internal::u64toa(u, buffer); + os_->Pop(static_cast(20 - (end - buffer))); + return true; +} + +template <> +inline bool Writer::WriteDouble(double d) { + if (internal::Double(d).IsNanOrInf()) { + // Note: This code path can only be reached if + // (RAPIDJSON_WRITE_DEFAULT_FLAGS & kWriteNanAndInfFlag). + if (!(kWriteDefaultFlags & kWriteNanAndInfFlag)) return false; + if (internal::Double(d).IsNan()) { + PutReserve(*os_, 3); + PutUnsafe(*os_, 'N'); + PutUnsafe(*os_, 'a'); + PutUnsafe(*os_, 'N'); + return true; + } + if (internal::Double(d).Sign()) { + PutReserve(*os_, 9); + PutUnsafe(*os_, '-'); + } else + PutReserve(*os_, 8); + PutUnsafe(*os_, 'I'); + PutUnsafe(*os_, 'n'); + PutUnsafe(*os_, 'f'); + PutUnsafe(*os_, 'i'); + PutUnsafe(*os_, 'n'); + PutUnsafe(*os_, 'i'); + PutUnsafe(*os_, 't'); + PutUnsafe(*os_, 'y'); + return true; + } + + char *buffer = os_->Push(25); + char *end = internal::dtoa(d, buffer, maxDecimalPlaces_); + os_->Pop(static_cast(25 - (end - buffer))); + return true; +} + +#if defined(RAPIDJSON_SSE2) || defined(RAPIDJSON_SSE42) +template <> +inline bool Writer::ScanWriteUnescapedString(StringStream &is, + size_t length) { + if (length < 16) return RAPIDJSON_LIKELY(is.Tell() < length); + + if (!RAPIDJSON_LIKELY(is.Tell() < length)) return false; + + const char *p = is.src_; + const char *end = is.head_ + length; + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + const char *endAligned = reinterpret_cast( + reinterpret_cast(end) & static_cast(~15)); + if (nextAligned > end) return true; + + while (p != nextAligned) + if (*p < 0x20 || *p == '\"' || *p == '\\') { + is.src_ = p; + return RAPIDJSON_LIKELY(is.Tell() < length); + } else + os_->PutUnsafe(*p++); + + // The rest of string using SIMD + static const char dquote[16] = {'\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"', '\"', '\"', + '\"', '\"', '\"', '\"'}; + static const char bslash[16] = {'\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\', '\\', '\\', + '\\', '\\', '\\', '\\'}; + static const char space[16] = {0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F}; + const __m128i dq = + _mm_loadu_si128(reinterpret_cast(&dquote[0])); + const __m128i bs = + _mm_loadu_si128(reinterpret_cast(&bslash[0])); + const __m128i sp = + _mm_loadu_si128(reinterpret_cast(&space[0])); + + for (; p != endAligned; p += 16) { + const __m128i s = _mm_load_si128(reinterpret_cast(p)); + const __m128i t1 = _mm_cmpeq_epi8(s, dq); + const __m128i t2 = _mm_cmpeq_epi8(s, bs); + const __m128i t3 = _mm_cmpeq_epi8(_mm_max_epu8(s, sp), + sp); // s < 0x20 <=> max(s, 0x1F) == 0x1F + const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); + unsigned short r = static_cast(_mm_movemask_epi8(x)); + if (RAPIDJSON_UNLIKELY(r != 0)) { // some of characters is escaped + SizeType len; +#ifdef _MSC_VER // Find the index of first escaped + unsigned long offset; + _BitScanForward(&offset, r); + len = offset; +#else + len = static_cast(__builtin_ffs(r) - 1); +#endif + char *q = reinterpret_cast(os_->PushUnsafe(len)); + for (size_t i = 0; i < len; i++) q[i] = p[i]; + + p += len; + break; + } + _mm_storeu_si128(reinterpret_cast<__m128i *>(os_->PushUnsafe(16)), s); + } + + is.src_ = p; + return RAPIDJSON_LIKELY(is.Tell() < length); +} +#elif defined(RAPIDJSON_NEON) +template <> +inline bool Writer::ScanWriteUnescapedString(StringStream &is, + size_t length) { + if (length < 16) return RAPIDJSON_LIKELY(is.Tell() < length); + + if (!RAPIDJSON_LIKELY(is.Tell() < length)) return false; + + const char *p = is.src_; + const char *end = is.head_ + length; + const char *nextAligned = reinterpret_cast( + (reinterpret_cast(p) + 15) & static_cast(~15)); + const char *endAligned = reinterpret_cast( + reinterpret_cast(end) & static_cast(~15)); + if (nextAligned > end) return true; + + while (p != nextAligned) + if (*p < 0x20 || *p == '\"' || *p == '\\') { + is.src_ = p; + return RAPIDJSON_LIKELY(is.Tell() < length); + } else + os_->PutUnsafe(*p++); + + // The rest of string using SIMD + const uint8x16_t s0 = vmovq_n_u8('"'); + const uint8x16_t s1 = vmovq_n_u8('\\'); + const uint8x16_t s2 = vmovq_n_u8('\b'); + const uint8x16_t s3 = vmovq_n_u8(32); + + for (; p != endAligned; p += 16) { + const uint8x16_t s = vld1q_u8(reinterpret_cast(p)); + uint8x16_t x = vceqq_u8(s, s0); + x = vorrq_u8(x, vceqq_u8(s, s1)); + x = vorrq_u8(x, vceqq_u8(s, s2)); + x = vorrq_u8(x, vcltq_u8(s, s3)); + + x = vrev64q_u8(x); // Rev in 64 + uint64_t low = vgetq_lane_u64(vreinterpretq_u64_u8(x), 0); // extract + uint64_t high = vgetq_lane_u64(vreinterpretq_u64_u8(x), 1); // extract + + SizeType len = 0; + bool escaped = false; + if (low == 0) { + if (high != 0) { + uint32_t lz = RAPIDJSON_CLZLL(high); + len = 8 + (lz >> 3); + escaped = true; + } + } else { + uint32_t lz = RAPIDJSON_CLZLL(low); + len = lz >> 3; + escaped = true; + } + if (RAPIDJSON_UNLIKELY(escaped)) { // some of characters is escaped + char *q = reinterpret_cast(os_->PushUnsafe(len)); + for (size_t i = 0; i < len; i++) q[i] = p[i]; + + p += len; + break; + } + vst1q_u8(reinterpret_cast(os_->PushUnsafe(16)), s); + } + + is.src_ = p; + return RAPIDJSON_LIKELY(is.Tell() < length); +} +#endif // RAPIDJSON_NEON + +RAPIDJSON_NAMESPACE_END + +#if defined(_MSC_VER) || defined(__clang__) +RAPIDJSON_DIAG_POP +#endif + +#endif // RAPIDJSON_RAPIDJSON_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/CHANGELOG.md b/src/rm_driver/livox_ros_driver2/src/CHANGELOG.md new file mode 100644 index 0000000..8abe0d1 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/CHANGELOG.md @@ -0,0 +1,53 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [1.2.3] +### Fixed +- Optimize framing logic and reduce CPU usage +- Fixed some known issues + +## [1.2.1] +### Fixed +- Fix offset time error regarding CustomMsg format message publishment. + +## [1.2.0] +### Added +- Revise the frame segmentation logic. +- (Notice!!!) Add Timestamp to each point in Livox pointcloud2 (PointXYZRTLT) format. The PointXYZRTL format has been updated to PointXYZRTLT format. Compatibility needs to be considered. +### Fixed +- Improve support for gPTP and GPS synchronizations. + +--- +## [1.1.3] +### Fixed +- Improve performance when running in ROS2 Humble. + +--- +## [1.1.2] +### Changed +- Change publish frequency range to [0.5Hz, 10 Hz]. +### Fixed +- Fix a high CPU-usage problem. + +--- +## [1.1.1] +### Added +- Offer valid line-number info in the point cloud data of MID-360 Lidar. +- Enable IMU by default. +### Changed +- Update the README slightly. + +--- +## [1.0.0] +### Added +- Support Mid-360 Lidar. +- Support for Ubuntu 22.04 ROS2 humble. +- Support multi-topic fuction, the suffix of the topic name corresponds to the ip address of each Lidar. +### Changed +- Remove the embedded SDK. +- Constraint: Livox ROS Driver 2 for ROS2 does not support message passing with PCL native data types. +### Fixed +- Fix IMU packet loss. +- Fix some conflicts with livox ros driver. +- Fixed HAP Lidar publishing PointCloud2 and CustomMsg format point clouds with no line number. diff --git a/src/rm_driver/livox_ros_driver2/src/CMakeLists.txt b/src/rm_driver/livox_ros_driver2/src/CMakeLists.txt new file mode 100644 index 0000000..5a5c52e --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/CMakeLists.txt @@ -0,0 +1,146 @@ +# Copyright(c) 2020 livoxtech limited. + +cmake_minimum_required(VERSION 3.14) +project(livox_ros_driver2) + +# Default to C99 +if(NOT CMAKE_C_STANDARD) + set(CMAKE_C_STANDARD 99) +endif() + +# Default to C++14 +if(NOT CMAKE_CXX_STANDARD) + set(CMAKE_CXX_STANDARD 14) +endif() + +list(INSERT CMAKE_MODULE_PATH 0 "${PROJECT_SOURCE_DIR}/cmake/modules") + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic -Wno-unused-parameter) +endif() + +# Printf version info +include(cmake/version.cmake) +project(${PROJECT_NAME} VERSION ${LIVOX_ROS_DRIVER2_VERSION} LANGUAGES CXX) +message(STATUS "${PROJECT_NAME} version: ${LIVOX_ROS_DRIVER2_VERSION}") + +#--------------------------------------------------------------------------------------- +# Add ROS Version MACRO +#--------------------------------------------------------------------------------------- +add_definitions(-DBUILDING_ROS2) + +# find dependencies +# uncomment the following section in order to fill in +# further dependencies manually. +# find_package( REQUIRED) +find_package(ament_cmake_auto REQUIRED) +ament_auto_find_build_dependencies() +find_package(PCL REQUIRED QUIET) +find_package(std_msgs REQUIRED) +find_package(builtin_interfaces REQUIRED) +find_package(rosidl_default_generators REQUIRED) + +# check apr +find_package(PkgConfig) +pkg_check_modules(APR apr-1) +if (APR_FOUND) + message(${APR_INCLUDE_DIRS}) + message(${APR_LIBRARIES}) +endif (APR_FOUND) + +# generate custom msg headers +set(LIVOX_INTERFACES livox_interfaces2) +rosidl_generate_interfaces(${LIVOX_INTERFACES} + "msg/CustomPoint.msg" + "msg/CustomMsg.msg" + DEPENDENCIES builtin_interfaces std_msgs + LIBRARY_NAME ${PROJECT_NAME} +) + +## make sure the livox_lidar_sdk_shared library is installed +find_library(LIVOX_LIDAR_SDK_LIBRARY liblivox_lidar_sdk_shared.so /usr/local/lib REQUIRED) + +## +find_path(LIVOX_LIDAR_SDK_INCLUDE_DIR + NAMES "livox_lidar_api.h" "livox_lidar_def.h" + REQUIRED) + +## PCL library +link_directories(${PCL_LIBRARY_DIRS}) +add_definitions(${PCL_DEFINITIONS}) + +# livox ros2 driver target +ament_auto_add_library(${PROJECT_NAME} SHARED + src/livox_ros_driver2.cpp + src/lddc.cpp + src/driver_node.cpp + src/lds.cpp + src/lds_lidar.cpp + + src/comm/comm.cpp + src/comm/ldq.cpp + src/comm/semaphore.cpp + src/comm/lidar_imu_data_queue.cpp + src/comm/cache_index.cpp + src/comm/pub_handler.cpp + + src/parse_cfg_file/parse_cfg_file.cpp + src/parse_cfg_file/parse_livox_lidar_cfg.cpp + + src/call_back/lidar_common_callback.cpp + src/call_back/livox_lidar_callback.cpp +) + +target_include_directories(${PROJECT_NAME} PRIVATE ${livox_sdk_INCLUDE_DIRS}) + +# get include directories of custom msg headers +if($ENV{ROS_DISTRO} STREQUAL "foxy") + set(LIVOX_INTERFACE_TARGET "${LIVOX_INTERFACES}__rosidl_typesupport_cpp") + add_dependencies(${PROJECT_NAME} ${LIVOX_INTERFACES}) + get_target_property(LIVOX_INTERFACES_INCLUDE_DIRECTORIES ${LIVOX_INTERFACE_TARGET} INTERFACE_INCLUDE_DIRECTORIES) +else() + rosidl_get_typesupport_target(cpp_typesupport_target + ${LIVOX_INTERFACES} "rosidl_typesupport_cpp") + target_link_libraries(${PROJECT_NAME} "${cpp_typesupport_target}") +endif() + +# include file direcotry +target_include_directories(${PROJECT_NAME} PUBLIC + ${PCL_INCLUDE_DIRS} + ${APR_INCLUDE_DIRS} + ${LIVOX_LIDAR_SDK_INCLUDE_DIR} + ${LIVOX_INTERFACES_INCLUDE_DIRECTORIES} # for custom msgs + 3rdparty + src +) + +# link libraries +target_link_libraries(${PROJECT_NAME} + ${LIVOX_LIDAR_SDK_LIBRARY} + ${LIVOX_INTERFACE_TARGET} # for custom msgs + ${PPT_LIBRARY} + ${Boost_LIBRARY} + ${PCL_LIBRARIES} + ${APR_LIBRARIES} +) + +rclcpp_components_register_node(${PROJECT_NAME} + PLUGIN "livox_ros::DriverNode" + EXECUTABLE ${PROJECT_NAME}_node +) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + # the following line skips the linter which checks for copyrights + # uncomment the line when a copyright and license is not present in all source files + #set(ament_cmake_copyright_FOUND TRUE) + # the following line skips cpplint (only works in a git repo) + # uncomment the line when this package is not in a git repo + #set(ament_cmake_cpplint_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + +ament_auto_package(INSTALL_TO_SHARE + config + launch +) diff --git a/src/rm_driver/livox_ros_driver2/src/LICENSE.txt b/src/rm_driver/livox_ros_driver2/src/LICENSE.txt new file mode 100644 index 0000000..9e0f5db --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/LICENSE.txt @@ -0,0 +1,412 @@ +The following portions of the LIVOX’s Livox ROS Driver2 (“Software” referred to in the terms below) are made available to you under the terms of the MIT License provided below and is also available at https://opensource.org/licenses/MIT. + +livox_ros_driver2 +├── build.sh +├── cmake +│   └── version.cmake +├── CMakeLists.txt +├── config +│   ├── display_point_cloud_ROS1.rviz +│   ├── display_point_cloud_ROS2.rviz +│   ├── HAP_config.json +│   ├── MID360_config.json +│   └── mixed_HAP_MID360_config.json +├── launch_ROS1 +│   ├── msg_HAP.launch +│   ├── msg_MID360.launch +│   ├── msg_mixed.launch +│   ├── rviz_HAP.launch +│   ├── rviz_MID360.launch +│   └── rviz_mixed.launch +├── launch_ROS2 +│   ├── msg_HAP_launch.py +│   ├── msg_MID360_launch.py +│   ├── rviz_HAP_launch.py +│   ├── rviz_MID360_launch.py +│   └── rviz_mixed.py +├── msg +│   ├── CustomMsg.msg +│   └── CustomPoint.msg +├── package_ROS1.xml +├── package_ROS2.xml +├── package.xml +├── README.md +└── src + ├── call_back + │   ├── lidar_common_callback.cpp + │   ├── lidar_common_callback.h + │   ├── livox_lidar_callback.cpp + │   └── livox_lidar_callback.h + ├── comm + │   ├── cache_index.cpp + │   ├── cache_index.h + │   ├── comm.cpp + │   ├── comm.h + │   ├── ldq.cpp + │   ├── ldq.h + │   ├── lidar_imu_data_queue.cpp + │   ├── lidar_imu_data_queue.h + │   ├── pub_handler.cpp + │   ├── pub_handler.h + │   ├── semaphore.cpp + │   └── semaphore.h + ├── driver_node.cpp + ├── driver_node.h + ├── include + │   ├── livox_ros_driver2.h + │   ├── ros1_headers.h + │   ├── ros2_headers.h + │   └── ros_headers.h + ├── lddc.cpp + ├── lddc.h + ├── lds.cpp + ├── lds.h + ├── lds_lidar.cpp + ├── lds_lidar.h + ├── livox_ros_driver2.cpp + └── parse_cfg_file + ├── parse_cfg_file.cpp + ├── parse_cfg_file.h + ├── parse_livox_lidar_cfg.cpp + └── parse_livox_lidar_cfg.h + +--------------------------------- + +The MIT License (MIT) + +Copyright (c) 2022 Livox. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +=============================================================== + +LIVOX’s Livox ROS Driver2 uses unmodified source code of RapidJSON (https://github.com/Tencent/rapidjson), which is also licensed under MIT license. A copy of the MIT license is provided below and is also available at https://opensource.org/licenses/MIT. + +livox_ros_driver2 +├── 3rdparty +│   └── rapidjson +│   ├── allocators.h +│   ├── cursorstreamwrapper.h +│   ├── document.h +│   ├── encodedstream.h +│   ├── encodings.h +│   ├── error +│   │   ├── en.h +│   │   └── error.h +│   ├── filereadstream.h +│   ├── filewritestream.h +│   ├── fwd.h +│   ├── internal +│   │   ├── biginteger.h +│   │   ├── clzll.h +│   │   ├── diyfp.h +│   │   ├── dtoa.h +│   │   ├── ieee754.h +│   │   ├── itoa.h +│   │   ├── meta.h +│   │   ├── pow10.h +│   │   ├── regex.h +│   │   ├── stack.h +│   │   ├── strfunc.h +│   │   ├── strtod.h +│   │   └── swap.h +│   ├── istreamwrapper.h +│   ├── memorybuffer.h +│   ├── memorystream.h +│   ├── msinttypes +│   │   ├── inttypes.h +│   │   └── stdint.h +│   ├── ostreamwrapper.h +│   ├── pointer.h +│   ├── prettywriter.h +│   ├── rapidjson.h +│   ├── reader.h +│   ├── schema.h +│   ├── stream.h +│   ├── stringbuffer.h +│   └── writer.h + +------------------------------------------------------------- + +Tencent is pleased to support the open source community by making RapidJSON +available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All +rights reserved. + +Licensed under the MIT License (the "License"); you may not use this file +except in compliance with the License. You may obtain a copy of the License +at + +http://opensource.org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +License for the specific language governing permissions and limitations under +the License. + +=============================================================== + +LIVOX’s Livox ROS Driver2 uses unmodified libraries and interfaces of ROS (https://www.ros.org/), which is also licensed under 3-Clause-BSD license. A copy of the 3-Clause-BSD license is provided below and is also available at https://opensource.org/licenses/BSD-3-Clause. + +------------------------------------------------------------- + +The 3-Clause BSD License + +Copyright (c) 2001 - 2009, The Board of Trustees of the University of Illinois. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above + copyright notice, this list of conditions and the + following disclaimer. + +* Redistributions in binary form must reproduce the + above copyright notice, this list of conditions + and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the University of Illinois + nor the names of its contributors may be used to + endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +=============================================================== + +LIVOX’s Livox ROS Driver2 uses unmodified libraries and interfaces of ROS2-rclcpp (https://github.com/ros2), which is also licensed under Apache License 2.0. A copy of the Apache License 2.0 is provided below and is also available at https://www.apache.org/licenses/LICENSE-2.0. + +------------------------------------------------------------- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/src/rm_driver/livox_ros_driver2/src/cmake/version.cmake b/src/rm_driver/livox_ros_driver2/src/cmake/version.cmake new file mode 100644 index 0000000..908c19b --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/cmake/version.cmake @@ -0,0 +1,16 @@ +#--------------------------------------------------------------------------------------- +# Get livox_ros_driver2 version from include/livox_ros_driver2.h +#--------------------------------------------------------------------------------------- +file(READ "${CMAKE_CURRENT_LIST_DIR}/../src/include/livox_ros_driver2.h" LIVOX_ROS_DRIVER2_VERSION_FILE) +string(REGEX MATCH "LIVOX_ROS_DRIVER2_VER_MAJOR ([0-9]+)" _ "${LIVOX_ROS_DRIVER2_VERSION_FILE}") +set(ver_major ${CMAKE_MATCH_1}) + +string(REGEX MATCH "LIVOX_ROS_DRIVER2_VER_MINOR ([0-9]+)" _ "${LIVOX_ROS_DRIVER2_VERSION_FILE}") +set(ver_minor ${CMAKE_MATCH_1}) +string(REGEX MATCH "LIVOX_ROS_DRIVER2_VER_PATCH ([0-9]+)" _ "${LIVOX_ROS_DRIVER2_VERSION_FILE}") +set(ver_patch ${CMAKE_MATCH_1}) + +if (NOT DEFINED ver_major OR NOT DEFINED ver_minor OR NOT DEFINED ver_patch) + message(FATAL_ERROR "Could not extract valid version from include/livox_ros_driver2.h") +endif() +set (LIVOX_ROS_DRIVER2_VERSION "${ver_major}.${ver_minor}.${ver_patch}") diff --git a/src/rm_driver/livox_ros_driver2/src/config/HAP_config.json b/src/rm_driver/livox_ros_driver2/src/config/HAP_config.json new file mode 100644 index 0000000..090ab9f --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/config/HAP_config.json @@ -0,0 +1,42 @@ +{ + "lidar_summary_info" : { + "lidar_type": 8 + }, + "HAP": { + "lidar_net_info" : { + "cmd_data_port": 56000, + "push_msg_port": 0, + "point_data_port": 57000, + "imu_data_port": 58000, + "log_data_port": 59000 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.5", + "cmd_data_port": 56000, + "push_msg_ip": "", + "push_msg_port": 0, + "point_data_ip": "192.168.1.5", + "point_data_port": 57000, + "imu_data_ip" : "192.168.1.5", + "imu_data_port": 58000, + "log_data_ip" : "", + "log_data_port": 59000 + } + }, + "lidar_configs" : [ + { + "ip" : "192.168.1.100", + "pcl_data_type" : 1, + "pattern_mode" : 0, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + } + ] +} + diff --git a/src/rm_driver/livox_ros_driver2/src/config/MID360_config.json b/src/rm_driver/livox_ros_driver2/src/config/MID360_config.json new file mode 100644 index 0000000..4b93436 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/config/MID360_config.json @@ -0,0 +1,41 @@ +{ + "lidar_summary_info" : { + "lidar_type": 8 + }, + "MID360": { + "lidar_net_info" : { + "cmd_data_port": 56100, + "push_msg_port": 56200, + "point_data_port": 56300, + "imu_data_port": 56400, + "log_data_port": 56500 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.50", + "cmd_data_port": 56101, + "push_msg_ip": "192.168.1.50", + "push_msg_port": 56201, + "point_data_ip": "192.168.1.50", + "point_data_port": 56301, + "imu_data_ip" : "192.168.1.50", + "imu_data_port": 56401, + "log_data_ip" : "", + "log_data_port": 56501 + } + }, + "lidar_configs" : [ + { + "ip" : "192.168.1.137", + "pcl_data_type" : 1, + "pattern_mode" : 0, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + } + ] +} diff --git a/src/rm_driver/livox_ros_driver2/src/config/display_point_cloud.rviz b/src/rm_driver/livox_ros_driver2/src/config/display_point_cloud.rviz new file mode 100644 index 0000000..c044254 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/config/display_point_cloud.rviz @@ -0,0 +1,137 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /PointCloud21 + Splitter Ratio: 0.5 + Tree Height: 796 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0.20000000298023224 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 150 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.009999999776482582 + Style: Flat Squares + Topic: /livox/lidar + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: livox_frame + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Topic: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: /move_base_simple/goal + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 14.215983390808105 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.9503982067108154 + Target Frame: + Value: Orbit (rviz) + Yaw: 2.6603963375091553 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1025 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd00000004000000000000015f000003a7fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d000003a7000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000003a7fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000003d000003a7000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004420000003efc0100000002fb0000000800540069006d00650100000000000004420000000000000000fb0000000800540069006d00650100000000000004500000000000000000000004c3000003a700000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1853 + X: 67 + Y: 27 diff --git a/src/rm_driver/livox_ros_driver2/src/config/mixed_HAP_MID360_config.json b/src/rm_driver/livox_ros_driver2/src/config/mixed_HAP_MID360_config.json new file mode 100644 index 0000000..0539b1e --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/config/mixed_HAP_MID360_config.json @@ -0,0 +1,76 @@ +{ + "lidar_summary_info" : { + "lidar_type": 8 + }, + "HAP": { + "lidar_net_info" : { + "cmd_data_port": 56000, + "push_msg_port": 0, + "point_data_port": 57000, + "imu_data_port": 58000, + "log_data_port": 59000 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.5", + "cmd_data_port": 56000, + "push_msg_ip": "", + "push_msg_port": 0, + "point_data_ip": "192.168.1.5", + "point_data_port": 57000, + "imu_data_ip" : "192.168.1.5", + "imu_data_port": 58000, + "log_data_ip" : "", + "log_data_port": 59000 + } + }, + "MID360": { + "lidar_net_info" : { + "cmd_data_port": 56100, + "push_msg_port": 56200, + "point_data_port": 56300, + "imu_data_port": 56400, + "log_data_port": 56500 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.5", + "cmd_data_port": 56101, + "push_msg_ip": "192.168.1.5", + "push_msg_port": 56201, + "point_data_ip": "192.168.1.5", + "point_data_port": 56301, + "imu_data_ip" : "192.168.1.5", + "imu_data_port": 56401, + "log_data_ip" : "", + "log_data_port": 56501 + } + }, + "lidar_configs" : [ + { + "ip" : "192.168.1.100", + "pcl_data_type" : 1, + "pattern_mode" : 0, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "ip" : "192.168.1.12", + "pcl_data_type" : 1, + "pattern_mode" : 0, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + } + ] +} + diff --git a/src/rm_driver/livox_ros_driver2/src/launch/msg_HAP_launch.py b/src/rm_driver/livox_ros_driver2/src/launch/msg_HAP_launch.py new file mode 100644 index 0000000..2ff3d66 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/launch/msg_HAP_launch.py @@ -0,0 +1,55 @@ +import os +from ament_index_python.packages import get_package_share_directory +from launch import LaunchDescription +from launch_ros.actions import Node +import launch + +################### user configure parameters for ros2 start ################### +xfer_format = 1 # 0-Pointcloud2(PointXYZRTL), 1-customized pointcloud format +multi_topic = 0 # 0-All LiDARs share the same topic, 1-One LiDAR one topic +data_src = 0 # 0-lidar, others-Invalid data src +publish_freq = 10.0 # freqency of publish, 5.0, 10.0, 20.0, 50.0, etc. +output_type = 0 +frame_id = 'livox_frame' +lvx_file_path = '/home/livox/livox_test.lvx' +cmdline_bd_code = 'livox0000000001' + +cur_path = os.path.split(os.path.realpath(__file__))[0] + '/' +cur_config_path = cur_path + '../config' +rviz_config_path = os.path.join(cur_config_path, 'livox_lidar.rviz') +user_config_path = os.path.join(cur_config_path, 'HAP_config.json') +################### user configure parameters for ros2 end ##################### + +livox_ros2_params = [ + {"xfer_format": xfer_format}, + {"multi_topic": multi_topic}, + {"data_src": data_src}, + {"publish_freq": publish_freq}, + {"output_data_type": output_type}, + {"frame_id": frame_id}, + {"lvx_file_path": lvx_file_path}, + {"user_config_path": user_config_path}, + {"cmdline_input_bd_code": cmdline_bd_code} +] + + +def generate_launch_description(): + livox_driver = Node( + package='livox_ros_driver2', + executable='livox_ros_driver2_node', + name='livox_lidar_publisher', + output='screen', + parameters=livox_ros2_params + ) + + return LaunchDescription([ + livox_driver, + # launch.actions.RegisterEventHandler( + # event_handler=launch.event_handlers.OnProcessExit( + # target_action=livox_rviz, + # on_exit=[ + # launch.actions.EmitEvent(event=launch.events.Shutdown()), + # ] + # ) + # ) + ]) diff --git a/src/rm_driver/livox_ros_driver2/src/launch/msg_MID360_launch.py b/src/rm_driver/livox_ros_driver2/src/launch/msg_MID360_launch.py new file mode 100644 index 0000000..86940d9 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/launch/msg_MID360_launch.py @@ -0,0 +1,54 @@ +import os +from ament_index_python.packages import get_package_share_directory +from launch import LaunchDescription +from launch_ros.actions import Node +import launch + +################### user configure parameters for ros2 start ################### +xfer_format = 4 # 0-Pointcloud2(PointXYZRTL), 1-customized pointcloud format +multi_topic = 0 # 0-All LiDARs share the same topic, 1-One LiDAR one topic +data_src = 0 # 0-lidar, others-Invalid data src +publish_freq = 10.0 # freqency of publish, 5.0, 10.0, 20.0, 50.0, etc. +output_type = 0 +frame_id = 'livox_frame' +lvx_file_path = '/home/livox/livox_test.lvx' +cmdline_bd_code = 'livox0000000001' + +cur_path = os.path.split(os.path.realpath(__file__))[0] + '/' +cur_config_path = cur_path + '../config' +user_config_path = os.path.join(cur_config_path, 'MID360_config.json') +################### user configure parameters for ros2 end ##################### + +livox_ros2_params = [ + {"xfer_format": xfer_format}, + {"multi_topic": multi_topic}, + {"data_src": data_src}, + {"publish_freq": publish_freq}, + {"output_data_type": output_type}, + {"frame_id": frame_id}, + {"lvx_file_path": lvx_file_path}, + {"user_config_path": user_config_path}, + {"cmdline_input_bd_code": cmdline_bd_code} +] + + +def generate_launch_description(): + livox_driver = Node( + package='livox_ros_driver2', + executable='livox_ros_driver2_node', + name='livox_lidar_publisher', + output='screen', + parameters=livox_ros2_params + ) + + return LaunchDescription([ + livox_driver, + # launch.actions.RegisterEventHandler( + # event_handler=launch.event_handlers.OnProcessExit( + # target_action=livox_rviz, + # on_exit=[ + # launch.actions.EmitEvent(event=launch.events.Shutdown()), + # ] + # ) + # ) + ]) diff --git a/src/rm_driver/livox_ros_driver2/src/launch/rviz_HAP_launch.py b/src/rm_driver/livox_ros_driver2/src/launch/rviz_HAP_launch.py new file mode 100644 index 0000000..ed63e40 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/launch/rviz_HAP_launch.py @@ -0,0 +1,63 @@ +import os +from ament_index_python.packages import get_package_share_directory +from launch import LaunchDescription +from launch_ros.actions import Node +import launch + +################### user configure parameters for ros2 start ################### +xfer_format = 0 # 0-Pointcloud2(PointXYZRTL), 1-customized pointcloud format +multi_topic = 0 # 0-All LiDARs share the same topic, 1-One LiDAR one topic +data_src = 0 # 0-lidar, others-Invalid data src +publish_freq = 10.0 # freqency of publish, 5.0, 10.0, 20.0, 50.0, etc. +output_type = 0 +frame_id = 'livox_frame' +lvx_file_path = '/home/livox/livox_test.lvx' +cmdline_bd_code = 'livox0000000001' + +cur_path = os.path.split(os.path.realpath(__file__))[0] + '/' +cur_config_path = cur_path + '../config' +rviz_config_path = os.path.join(cur_config_path, 'display_point_cloud.rviz') +user_config_path = os.path.join(cur_config_path, 'HAP_config.json') +################### user configure parameters for ros2 end ##################### + +livox_ros2_params = [ + {"xfer_format": xfer_format}, + {"multi_topic": multi_topic}, + {"data_src": data_src}, + {"publish_freq": publish_freq}, + {"output_data_type": output_type}, + {"frame_id": frame_id}, + {"lvx_file_path": lvx_file_path}, + {"user_config_path": user_config_path}, + {"cmdline_input_bd_code": cmdline_bd_code} +] + + +def generate_launch_description(): + livox_driver = Node( + package='livox_ros_driver2', + executable='livox_ros_driver2_node', + name='livox_lidar_publisher', + output='screen', + parameters=livox_ros2_params + ) + + livox_rviz = Node( + package='rviz2', + executable='rviz2', + output='screen', + arguments=['--display-config', rviz_config_path] + ) + + return LaunchDescription([ + livox_driver, + livox_rviz, + # launch.actions.RegisterEventHandler( + # event_handler=launch.event_handlers.OnProcessExit( + # target_action=livox_rviz, + # on_exit=[ + # launch.actions.EmitEvent(event=launch.events.Shutdown()), + # ] + # ) + # ) + ]) diff --git a/src/rm_driver/livox_ros_driver2/src/launch/rviz_MID360_launch.py b/src/rm_driver/livox_ros_driver2/src/launch/rviz_MID360_launch.py new file mode 100644 index 0000000..eab1efb --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/launch/rviz_MID360_launch.py @@ -0,0 +1,63 @@ +import os +from ament_index_python.packages import get_package_share_directory +from launch import LaunchDescription +from launch_ros.actions import Node +import launch + +################### user configure parameters for ros2 start ################### +xfer_format = 0 # 0-Pointcloud2(PointXYZRTL), 1-customized pointcloud format +multi_topic = 0 # 0-All LiDARs share the same topic, 1-One LiDAR one topic +data_src = 0 # 0-lidar, others-Invalid data src +publish_freq = 10.0 # freqency of publish, 5.0, 10.0, 20.0, 50.0, etc. +output_type = 0 +frame_id = 'livox_frame' +lvx_file_path = '/home/livox/livox_test.lvx' +cmdline_bd_code = 'livox0000000001' + +cur_path = os.path.split(os.path.realpath(__file__))[0] + '/' +cur_config_path = cur_path + '../config' +rviz_config_path = os.path.join(cur_config_path, 'display_point_cloud.rviz') +user_config_path = os.path.join(cur_config_path, 'MID360_config.json') +################### user configure parameters for ros2 end ##################### + +livox_ros2_params = [ + {"xfer_format": xfer_format}, + {"multi_topic": multi_topic}, + {"data_src": data_src}, + {"publish_freq": publish_freq}, + {"output_data_type": output_type}, + {"frame_id": frame_id}, + {"lvx_file_path": lvx_file_path}, + {"user_config_path": user_config_path}, + {"cmdline_input_bd_code": cmdline_bd_code} +] + + +def generate_launch_description(): + livox_driver = Node( + package='livox_ros_driver2', + executable='livox_ros_driver2_node', + name='livox_lidar_publisher', + output='screen', + parameters=livox_ros2_params + ) + + livox_rviz = Node( + package='rviz2', + executable='rviz2', + output='screen', + arguments=['--display-config', rviz_config_path] + ) + + return LaunchDescription([ + livox_driver, + livox_rviz, + # launch.actions.RegisterEventHandler( + # event_handler=launch.event_handlers.OnProcessExit( + # target_action=livox_rviz, + # on_exit=[ + # launch.actions.EmitEvent(event=launch.events.Shutdown()), + # ] + # ) + # ) + ]) diff --git a/src/rm_driver/livox_ros_driver2/src/launch/rviz_mixed.py b/src/rm_driver/livox_ros_driver2/src/launch/rviz_mixed.py new file mode 100644 index 0000000..5ddd6c4 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/launch/rviz_mixed.py @@ -0,0 +1,63 @@ +import os +from ament_index_python.packages import get_package_share_directory +from launch import LaunchDescription +from launch_ros.actions import Node +import launch + +################### user configure parameters for ros2 start ################### +xfer_format = 0 # 0-Pointcloud2(PointXYZRTL), 1-customized pointcloud format +multi_topic = 0 # 0-All LiDARs share the same topic, 1-One LiDAR one topic +data_src = 0 # 0-lidar, others-Invalid data src +publish_freq = 10.0 # freqency of publish, 5.0, 10.0, 20.0, 50.0, etc. +output_type = 0 +frame_id = 'livox_frame' +lvx_file_path = '/home/livox/livox_test.lvx' +cmdline_bd_code = 'livox0000000001' + +cur_path = os.path.split(os.path.realpath(__file__))[0] + '/' +cur_config_path = cur_path + '../config' +rviz_config_path = os.path.join(cur_config_path, 'display_point_cloud.rviz') +user_config_path = os.path.join(cur_config_path, 'mixed_HAP_MID360_config.json') +################### user configure parameters for ros2 end ##################### + +livox_ros2_params = [ + {"xfer_format": xfer_format}, + {"multi_topic": multi_topic}, + {"data_src": data_src}, + {"publish_freq": publish_freq}, + {"output_data_type": output_type}, + {"frame_id": frame_id}, + {"lvx_file_path": lvx_file_path}, + {"user_config_path": user_config_path}, + {"cmdline_input_bd_code": cmdline_bd_code} +] + + +def generate_launch_description(): + livox_driver = Node( + package='livox_ros_driver2', + executable='livox_ros_driver2_node', + name='livox_lidar_publisher', + output='screen', + parameters=livox_ros2_params + ) + + livox_rviz = Node( + package='rviz2', + executable='rviz2', + output='screen', + arguments=['--display-config', rviz_config_path] + ) + + return LaunchDescription([ + livox_driver, + livox_rviz, + # launch.actions.RegisterEventHandler( + # event_handler=launch.event_handlers.OnProcessExit( + # target_action=livox_rviz, + # on_exit=[ + # launch.actions.EmitEvent(event=launch.events.Shutdown()), + # ] + # ) + # ) + ]) diff --git a/src/rm_driver/livox_ros_driver2/src/msg/CustomMsg.msg b/src/rm_driver/livox_ros_driver2/src/msg/CustomMsg.msg new file mode 100644 index 0000000..91f044b --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/msg/CustomMsg.msg @@ -0,0 +1,9 @@ +# Livox publish pointcloud msg format. + +std_msgs/Header header # ROS standard message header +uint64 timebase # The time of first point +uint32 point_num # Total number of pointclouds +uint8 lidar_id # Lidar device id number +uint8[3] rsvd # Reserved use +CustomPoint[] points # Pointcloud data + diff --git a/src/rm_driver/livox_ros_driver2/src/msg/CustomPoint.msg b/src/rm_driver/livox_ros_driver2/src/msg/CustomPoint.msg new file mode 100644 index 0000000..34719b2 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/msg/CustomPoint.msg @@ -0,0 +1,10 @@ +# Livox costom pointcloud format. + +uint32 offset_time # offset time relative to the base time +float32 x # X axis, unit:m +float32 y # Y axis, unit:m +float32 z # Z axis, unit:m +uint8 reflectivity # reflectivity, 0~255 +uint8 tag # livox tag +uint8 line # laser number in lidar + diff --git a/src/rm_driver/livox_ros_driver2/src/package.xml b/src/rm_driver/livox_ros_driver2/src/package.xml new file mode 100644 index 0000000..96f5762 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/package.xml @@ -0,0 +1,35 @@ + + + + livox_ros_driver2 + 1.0.0 + The ROS device driver for Livox 3D LiDARs, for ROS2 + feng + MIT + + ament_cmake_auto + rosidl_default_generators + rosidl_interface_packages + + rclcpp + rclcpp_components + std_msgs + sensor_msgs + rcutils + pcl_conversions + rcl_interfaces + libpcl-all-dev + + rosbag2 + rosidl_default_runtime + + ament_lint_auto + ament_lint_common + + git + apr + + + ament_cmake + + diff --git a/src/rm_driver/livox_ros_driver2/src/src/call_back/lidar_common_callback.cpp b/src/rm_driver/livox_ros_driver2/src/src/call_back/lidar_common_callback.cpp new file mode 100644 index 0000000..43efb24 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/call_back/lidar_common_callback.cpp @@ -0,0 +1,73 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "lidar_common_callback.h" + +#include "../lds_lidar.h" + +#include + +namespace livox_ros { + +void LidarCommonCallback::OnLidarPointClounCb(PointFrame* frame, void* client_data) { + if (frame == nullptr) { + printf("LidarPointCloudCb frame is nullptr.\n"); + return; + } + + if (client_data == nullptr) { + printf("Lidar point cloud cb failed, client data is nullptr.\n"); + return; + } + + if (frame->lidar_num ==0) { + printf("LidarPointCloudCb lidar_num:%u.\n", frame->lidar_num); + return; + } + + LdsLidar *lds_lidar = static_cast(client_data); + + //printf("Lidar point cloud, lidar_num:%u.\n", frame->lidar_num); + + lds_lidar->StoragePointData(frame); +} + +void LidarCommonCallback::LidarImuDataCallback(ImuData* imu_data, void *client_data) { + if (imu_data == nullptr) { + printf("Imu data is nullptr.\n"); + return; + } + if (client_data == nullptr) { + printf("Lidar point cloud cb failed, client data is nullptr.\n"); + return; + } + + LdsLidar *lds_lidar = static_cast(client_data); + lds_lidar->StorageImuData(imu_data); +} + +} // namespace livox_ros + + + diff --git a/src/rm_driver/livox_ros_driver2/src/src/call_back/lidar_common_callback.h b/src/rm_driver/livox_ros_driver2/src/src/call_back/lidar_common_callback.h new file mode 100644 index 0000000..4ff6803 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/call_back/lidar_common_callback.h @@ -0,0 +1,40 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_LIDAR_COMMON_CALLBACK_H_ +#define LIVOX_ROS_DRIVER_LIDAR_COMMON_CALLBACK_H_ + +#include "comm/comm.h" + +namespace livox_ros { + +class LidarCommonCallback { + public: + static void OnLidarPointClounCb(PointFrame* frame, void* client_data); + static void LidarImuDataCallback(ImuData* imu_data, void *client_data); +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_LIDAR_COMMON_CALLBACK_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/call_back/livox_lidar_callback.cpp b/src/rm_driver/livox_ros_driver2/src/src/call_back/livox_lidar_callback.cpp new file mode 100644 index 0000000..60bb237 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/call_back/livox_lidar_callback.cpp @@ -0,0 +1,333 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "livox_lidar_callback.h" + +#include +#include +#include + +namespace livox_ros { + +void LivoxLidarCallback::LidarInfoChangeCallback(const uint32_t handle, + const LivoxLidarInfo* info, + void* client_data) { + if (client_data == nullptr) { + std::cout << "lidar info change callback failed, client data is nullptr" << std::endl; + return; + } + LdsLidar* lds_lidar = static_cast(client_data); + + LidarDevice* lidar_device = GetLidarDevice(handle, client_data); + if (lidar_device == nullptr) { + std::cout << "found lidar not defined in the user-defined config, ip: " << IpNumToString(handle) << std::endl; + // add lidar device + uint8_t index = 0; + int8_t ret = lds_lidar->cache_index_.GetFreeIndex(kLivoxLidarType, handle, index); + if (ret != 0) { + std::cout << "failed to add lidar device, lidar ip: " << IpNumToString(handle) << std::endl; + return; + } + LidarDevice *p_lidar = &(lds_lidar->lidars_[index]); + p_lidar->lidar_type = kLivoxLidarType; + } else { + // set the lidar according to the user-defined config + const UserLivoxLidarConfig& config = lidar_device->livox_config; + + // lock for modify the lidar device set_bits + { + std::lock_guard lock(lds_lidar->config_mutex_); + if (config.pcl_data_type != -1 ) { + lidar_device->livox_config.set_bits |= kConfigDataType; + SetLivoxLidarPclDataType(handle, static_cast(config.pcl_data_type), + LivoxLidarCallback::SetDataTypeCallback, lds_lidar); + std::cout << "set pcl data type, handle: " << handle << ", data type: " + << static_cast(config.pcl_data_type) << std::endl; + } + if (config.pattern_mode != -1) { + lidar_device->livox_config.set_bits |= kConfigScanPattern; + SetLivoxLidarScanPattern(handle, static_cast(config.pattern_mode), + LivoxLidarCallback::SetPatternModeCallback, lds_lidar); + std::cout << "set scan pattern, handle: " << handle << ", scan pattern: " + << static_cast(config.pattern_mode) << std::endl; + } + if (config.blind_spot_set != -1) { + lidar_device->livox_config.set_bits |= kConfigBlindSpot; + SetLivoxLidarBlindSpot(handle, config.blind_spot_set, + LivoxLidarCallback::SetBlindSpotCallback, lds_lidar); + + std::cout << "set blind spot, handle: " << handle << ", blind spot distance: " + << config.blind_spot_set << std::endl; + } + if (config.dual_emit_en != -1) { + lidar_device->livox_config.set_bits |= kConfigDualEmit; + SetLivoxLidarDualEmit(handle, (config.dual_emit_en == 0 ? false : true), + LivoxLidarCallback::SetDualEmitCallback, lds_lidar); + std::cout << "set dual emit mode, handle: " << handle << ", enable dual emit: " + << static_cast(config.dual_emit_en) << std::endl; + } + } // free lock for set_bits + + // set extrinsic params into lidar + LivoxLidarInstallAttitude attitude { + config.extrinsic_param.roll, + config.extrinsic_param.pitch, + config.extrinsic_param.yaw, + config.extrinsic_param.x, + config.extrinsic_param.y, + config.extrinsic_param.z + }; + SetLivoxLidarInstallAttitude(config.handle, &attitude, + LivoxLidarCallback::SetAttitudeCallback, lds_lidar); + } + + std::cout << "begin to change work mode to 'Normal', handle: " << handle << std::endl; + SetLivoxLidarWorkMode(handle, kLivoxLidarNormal, WorkModeChangedCallback, nullptr); + EnableLivoxLidarImuData(handle, LivoxLidarCallback::EnableLivoxLidarImuDataCallback, lds_lidar); + return; +} + +void LivoxLidarCallback::WorkModeChangedCallback(livox_status status, + uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data) { + if (status != kLivoxLidarStatusSuccess) { + std::cout << "failed to change work mode, handle: " << handle << ", try again..."<< std::endl; + std::this_thread::sleep_for(std::chrono::seconds(1)); + SetLivoxLidarWorkMode(handle, kLivoxLidarNormal, WorkModeChangedCallback, nullptr); + return; + } + std::cout << "successfully change work mode, handle: " << handle << std::endl; + return; +} + +void LivoxLidarCallback::SetDataTypeCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data) { + LidarDevice* lidar_device = GetLidarDevice(handle, client_data); + if (lidar_device == nullptr) { + std::cout << "failed to set data type since no lidar device found, handle: " + << handle << std::endl; + return; + } + LdsLidar* lds_lidar = static_cast(client_data); + + if (status == kLivoxLidarStatusSuccess) { + std::lock_guard lock(lds_lidar->config_mutex_); + lidar_device->livox_config.set_bits &= ~((uint32_t)(kConfigDataType)); + if (!lidar_device->livox_config.set_bits) { + lidar_device->connect_state = kConnectStateSampling; + } + std::cout << "successfully set data type, handle: " << handle + << ", set_bit: " << lidar_device->livox_config.set_bits << std::endl; + } else if (status == kLivoxLidarStatusTimeout) { + const UserLivoxLidarConfig& config = lidar_device->livox_config; + SetLivoxLidarPclDataType(handle, static_cast(config.pcl_data_type), + LivoxLidarCallback::SetDataTypeCallback, client_data); + std::cout << "set data type timeout, handle: " << handle + << ", try again..." << std::endl; + } else { + std::cout << "failed to set data type, handle: " << handle + << ", return code: " << response->ret_code + << ", error key: " << response->error_key << std::endl; + } + return; +} + +void LivoxLidarCallback::SetPatternModeCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data) { + LidarDevice* lidar_device = GetLidarDevice(handle, client_data); + if (lidar_device == nullptr) { + std::cout << "failed to set pattern mode since no lidar device found, handle: " + << handle << std::endl; + return; + } + LdsLidar* lds_lidar = static_cast(client_data); + + if (status == kLivoxLidarStatusSuccess) { + std::lock_guard lock(lds_lidar->config_mutex_); + lidar_device->livox_config.set_bits &= ~((uint32_t)(kConfigScanPattern)); + if (!lidar_device->livox_config.set_bits) { + lidar_device->connect_state = kConnectStateSampling; + } + std::cout << "successfully set pattern mode, handle: " << handle + << ", set_bit: " << lidar_device->livox_config.set_bits << std::endl; + } else if (status == kLivoxLidarStatusTimeout) { + const UserLivoxLidarConfig& config = lidar_device->livox_config; + SetLivoxLidarScanPattern(handle, static_cast(config.pattern_mode), + LivoxLidarCallback::SetPatternModeCallback, client_data); + std::cout << "set pattern mode timeout, handle: " << handle + << ", try again..." << std::endl; + } else { + std::cout << "failed to set pattern mode, handle: " << handle + << ", return code: " << response->ret_code + << ", error key: " << response->error_key << std::endl; + } + return; +} + +void LivoxLidarCallback::SetBlindSpotCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data) { + LidarDevice* lidar_device = GetLidarDevice(handle, client_data); + if (lidar_device == nullptr) { + std::cout << "failed to set blind spot since no lidar device found, handle: " + << handle << std::endl; + return; + } + LdsLidar* lds_lidar = static_cast(client_data); + + if (status == kLivoxLidarStatusSuccess) { + std::lock_guard lock(lds_lidar->config_mutex_); + lidar_device->livox_config.set_bits &= ~((uint32_t)(kConfigBlindSpot)); + if (!lidar_device->livox_config.set_bits) { + lidar_device->connect_state = kConnectStateSampling; + } + std::cout << "successfully set blind spot, handle: " << handle + << ", set_bit: " << lidar_device->livox_config.set_bits << std::endl; + } else if (status == kLivoxLidarStatusTimeout) { + const UserLivoxLidarConfig& config = lidar_device->livox_config; + SetLivoxLidarBlindSpot(handle, config.blind_spot_set, + LivoxLidarCallback::SetBlindSpotCallback, client_data); + std::cout << "set blind spot timeout, handle: " << handle + << ", try again..." << std::endl; + } else { + std::cout << "failed to set blind spot, handle: " << handle + << ", return code: " << response->ret_code + << ", error key: " << response->error_key << std::endl; + } + return; +} + +void LivoxLidarCallback::SetDualEmitCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data) { + LidarDevice* lidar_device = GetLidarDevice(handle, client_data); + if (lidar_device == nullptr) { + std::cout << "failed to set dual emit mode since no lidar device found, handle: " + << handle << std::endl; + return; + } + + LdsLidar* lds_lidar = static_cast(client_data); + if (status == kLivoxLidarStatusSuccess) { + std::lock_guard lock(lds_lidar->config_mutex_); + lidar_device->livox_config.set_bits &= ~((uint32_t)(kConfigDualEmit)); + if (!lidar_device->livox_config.set_bits) { + lidar_device->connect_state = kConnectStateSampling; + } + std::cout << "successfully set dual emit mode, handle: " << handle + << ", set_bit: " << lidar_device->livox_config.set_bits << std::endl; + } else if (status == kLivoxLidarStatusTimeout) { + const UserLivoxLidarConfig& config = lidar_device->livox_config; + SetLivoxLidarDualEmit(handle, config.dual_emit_en, + LivoxLidarCallback::SetDualEmitCallback, client_data); + std::cout << "set dual emit mode timeout, handle: " << handle + << ", try again..." << std::endl; + } else { + std::cout << "failed to set dual emit mode, handle: " << handle + << ", return code: " << response->ret_code + << ", error key: " << response->error_key << std::endl; + } + return; +} + +void LivoxLidarCallback::SetAttitudeCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data) { + LidarDevice* lidar_device = GetLidarDevice(handle, client_data); + if (lidar_device == nullptr) { + std::cout << "failed to set dual emit mode since no lidar device found, handle: " + << handle << std::endl; + return; + } + + LdsLidar* lds_lidar = static_cast(client_data); + if (status == kLivoxLidarStatusSuccess) { + std::cout << "successfully set lidar attitude, ip: " << IpNumToString(handle) << std::endl; + } else if (status == kLivoxLidarStatusTimeout) { + std::cout << "set lidar attitude timeout, ip: " << IpNumToString(handle) + << ", try again..." << std::endl; + const UserLivoxLidarConfig& config = lidar_device->livox_config; + LivoxLidarInstallAttitude attitude { + config.extrinsic_param.roll, + config.extrinsic_param.pitch, + config.extrinsic_param.yaw, + config.extrinsic_param.x, + config.extrinsic_param.y, + config.extrinsic_param.z + }; + SetLivoxLidarInstallAttitude(config.handle, &attitude, + LivoxLidarCallback::SetAttitudeCallback, lds_lidar); + } else { + std::cout << "failed to set lidar attitude, ip: " << IpNumToString(handle) << std::endl; + } +} + +void LivoxLidarCallback::EnableLivoxLidarImuDataCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data) { + LidarDevice* lidar_device = GetLidarDevice(handle, client_data); + if (lidar_device == nullptr) { + std::cout << "failed to set pattern mode since no lidar device found, handle: " + << handle << std::endl; + return; + } + LdsLidar* lds_lidar = static_cast(client_data); + + if (response == nullptr) { + std::cout << "failed to get response since no lidar IMU sensor found, handle: " + << handle << std::endl; + return; + } + + if (status == kLivoxLidarStatusSuccess) { + std::cout << "successfully enable Livox Lidar imu, ip: " << IpNumToString(handle) << std::endl; + } else if (status == kLivoxLidarStatusTimeout) { + std::cout << "enable Livox Lidar imu timeout, ip: " << IpNumToString(handle) + << ", try again..." << std::endl; + EnableLivoxLidarImuData(handle, LivoxLidarCallback::EnableLivoxLidarImuDataCallback, lds_lidar); + } else { + std::cout << "failed to enable Livox Lidar imu, ip: " << IpNumToString(handle) << std::endl; + } +} + +LidarDevice* LivoxLidarCallback::GetLidarDevice(const uint32_t handle, void* client_data) { + if (client_data == nullptr) { + std::cout << "failed to get lidar device, client data is nullptr" << std::endl; + return nullptr; + } + + LdsLidar* lds_lidar = static_cast(client_data); + uint8_t index = 0; + int8_t ret = lds_lidar->cache_index_.GetIndex(kLivoxLidarType, handle, index); + if (ret != 0) { + return nullptr; + } + + return &(lds_lidar->lidars_[index]); +} + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/call_back/livox_lidar_callback.h b/src/rm_driver/livox_ros_driver2/src/src/call_back/livox_lidar_callback.h new file mode 100644 index 0000000..1b6b549 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/call_back/livox_lidar_callback.h @@ -0,0 +1,71 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_LIVOX_LIDAR_CALLBACK_H_ +#define LIVOX_ROS_DRIVER_LIVOX_LIDAR_CALLBACK_H_ + +#include "../lds.h" +#include "../lds_lidar.h" +#include "../comm/comm.h" + +#include "livox_lidar_api.h" +#include "livox_lidar_def.h" + +namespace livox_ros { + +class LivoxLidarCallback { + public: + static void LidarInfoChangeCallback(const uint32_t handle, + const LivoxLidarInfo* info, + void* client_data); + static void WorkModeChangedCallback(livox_status status, + uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data); + static void SetDataTypeCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data); + static void SetPatternModeCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data); + static void SetBlindSpotCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data); + static void SetDualEmitCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data); + static void SetAttitudeCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data); + static void EnableLivoxLidarImuDataCallback(livox_status status, uint32_t handle, + LivoxLidarAsyncControlResponse *response, + void *client_data); + + private: + static LidarDevice* GetLidarDevice(const uint32_t handle, void* client_data); +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_LIVOX_LIDAR_CALLBACK_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/cache_index.cpp b/src/rm_driver/livox_ros_driver2/src/src/comm/cache_index.cpp new file mode 100644 index 0000000..33e6500 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/cache_index.cpp @@ -0,0 +1,121 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "cache_index.h" +#include "livox_lidar_def.h" + +namespace livox_ros { + +CacheIndex::CacheIndex() { + std::array index_cache = {0}; + index_cache_.swap(index_cache); +} + +int8_t CacheIndex::GetFreeIndex(const uint8_t livox_lidar_type, const uint32_t handle, uint8_t& index) { + std::string key; + int8_t ret = GenerateIndexKey(livox_lidar_type, handle, key); + if (ret != 0) { + return -1; + } + { + std::lock_guard lock(index_mutex_); + if (map_index_.find(key) != map_index_.end()) { + index = map_index_[key]; + return 0; + } + } + + { + printf("GetFreeIndex key:%s.\n", key.c_str()); + std::lock_guard lock(index_mutex_); + for (size_t i = 0; i < kMaxSourceLidar; ++i) { + if (!index_cache_[i]) { + index_cache_[i] = 1; + map_index_[key] = static_cast(i); + index = static_cast(i); + return 0; + } + } + } + return -1; +} + +int8_t CacheIndex::GenerateIndexKey(const uint8_t livox_lidar_type, const uint32_t handle, std::string& key) { + if (livox_lidar_type == kLivoxLidarType) { + key = "livox_lidar_" + std::to_string(handle); + } else { + printf("Can not generate index, the livox lidar type is unknown, the livox lidar type:%u\n", livox_lidar_type); + return -1; + } + return 0; +} + +int8_t CacheIndex::GetIndex(const uint8_t livox_lidar_type, const uint32_t handle, uint8_t& index) { + std::string key; + int8_t ret = GenerateIndexKey(livox_lidar_type, handle, key); + if (ret != 0) { + return -1; + } + + if (map_index_.find(key) != map_index_.end()) { + std::lock_guard lock(index_mutex_); + index = map_index_[key]; + return 0; + } + printf("Can not get index, the livox lidar type:%u, handle:%u\n", livox_lidar_type, handle); + return -1; +} + +int8_t CacheIndex::LvxGetIndex(const uint8_t livox_lidar_type, const uint32_t handle, uint8_t& index) { + std::string key; + int8_t ret = GenerateIndexKey(livox_lidar_type, handle, key); + if (ret != 0) { + return -1; + } + + if (map_index_.find(key) != map_index_.end()) { + index = map_index_[key]; + return 0; + } + + return GetFreeIndex(livox_lidar_type, handle, index); +} + +void CacheIndex::ResetIndex(LidarDevice *lidar) { + std::string key; + int8_t ret = GenerateIndexKey(lidar->lidar_type, lidar->handle, key); + if (ret != 0) { + printf("Reset index failed, can not generate index key, lidar type:%u, handle:%u.\n", lidar->lidar_type, lidar->handle); + return; + } + + if (map_index_.find(key) != map_index_.end()) { + uint8_t index = map_index_[key]; + std::lock_guard lock(index_mutex_); + map_index_.erase(key); + index_cache_[index] = 0; + } +} + +} // namespace diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/cache_index.h b/src/rm_driver/livox_ros_driver2/src/src/comm/cache_index.h new file mode 100644 index 0000000..9451eda --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/cache_index.h @@ -0,0 +1,54 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_CACHE_INDEX_H_ +#define LIVOX_ROS_DRIVER_CACHE_INDEX_H_ + +#include +#include +#include +#include + +#include "comm/comm.h" + +namespace livox_ros { + +class CacheIndex { + public: + CacheIndex(); + int8_t GetFreeIndex(const uint8_t livox_lidar_type, const uint32_t handle, uint8_t& index); + int8_t GetIndex(const uint8_t livox_lidar_type, const uint32_t handle, uint8_t& index); + int8_t GenerateIndexKey(const uint8_t livox_lidar_type, const uint32_t handle, std::string& key); + int8_t LvxGetIndex(const uint8_t livox_lidar_type, const uint32_t handle, uint8_t& index); + void ResetIndex(LidarDevice *lidar); + + private: + std::mutex index_mutex_; + std::map map_index_; /* key:handle/slot, val:index */ + std::array index_cache_; +}; + +} // namespace livox_ros + +# endif // LIVOX_ROS_DRIVER_CACHE_INDEX_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/comm.cpp b/src/rm_driver/livox_ros_driver2/src/src/comm/comm.cpp new file mode 100644 index 0000000..b3490cc --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/comm.cpp @@ -0,0 +1,70 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "comm/comm.h" +#include +#include + +namespace livox_ros { + +/** Common function --------------------------------------------------------- */ +bool IsFilePathValid(const char *path_str) { + int str_len = strlen(path_str); + + if ((str_len > kPathStrMinSize) && (str_len < kPathStrMaxSize)) { + return true; + } else { + return false; + } +} + +uint32_t CalculatePacketQueueSize(const double publish_freq) { + uint32_t queue_size = 10; + if (publish_freq > 10.0) { + queue_size = static_cast(publish_freq) + 1; + } + return queue_size; +} + +std::string IpNumToString(uint32_t ip_num) { + struct in_addr ip; + ip.s_addr = ip_num; + return std::string(inet_ntoa(ip)); +} + +uint32_t IpStringToNum(std::string ip_string) { + return static_cast(inet_addr(ip_string.c_str())); +} + +std::string ReplacePeriodByUnderline(std::string str) { + std::size_t pos = str.find("."); + while (pos != std::string::npos) { + str.replace(pos, 1, "_"); + pos = str.find("."); + } + return str; +} + +} // namespace livox_ros + diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/comm.h b/src/rm_driver/livox_ros_driver2/src/src/comm/comm.h new file mode 100644 index 0000000..492b39e --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/comm.h @@ -0,0 +1,304 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER2_COMM_H_ +#define LIVOX_ROS_DRIVER2_COMM_H_ + +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +#include "lidar_imu_data_queue.h" + +namespace livox_ros { + +/** Max lidar data source num */ +const uint8_t kMaxSourceLidar = 32; + + +/** Eth packet relative info parama */ +const uint32_t kMaxPointPerEthPacket = 100; +const uint32_t kMinEthPacketQueueSize = 32; /**< must be 2^n */ +const uint32_t kMaxEthPacketQueueSize = 131072; /**< must be 2^n */ +const uint32_t kImuEthPacketQueueSize = 256; + +/** Max packet length according to Ethernet MTU */ +const uint32_t KEthPacketMaxLength = 1500; +const uint32_t KEthPacketHeaderLength = 18; /**< (sizeof(LivoxEthPacket) - 1) */ +const uint32_t KCartesianPointSize = 13; +const uint32_t KSphericalPointSzie = 9; + +const uint64_t kRosTimeMax = 4294967296000000000; /**< 2^32 * 1000000000ns */ +const int64_t kPacketTimeGap = 1000000; /**< 1ms = 1000000ns */ +/**< the threshold of packet continuous */ +const int64_t kMaxPacketTimeGap = 1700000; +/**< the threshold of device disconect */ +const int64_t kDeviceDisconnectThreshold = 1000000000; +const uint32_t kNsPerSecond = 1000000000; /**< 1s = 1000000000ns */ +const uint32_t kNsTolerantFrameTimeDeviation = 1000000; /**< 1ms = 1000000ns */ +const uint32_t kRatioOfMsToNs = 1000000; /**< 1ms = 1000000ns */ + +const int kPathStrMinSize = 4; /**< Must more than 4 char */ +const int kPathStrMaxSize = 256; /**< Must less than 256 char */ +const int kBdCodeSize = 15; + +const uint32_t kPointXYZRSize = 16; +const uint32_t kPointXYZRTRSize = 18; + +const double PI = 3.14159265358979323846; + +constexpr uint32_t kMaxBufferSize = 0x8000; // 32k bytes + +/** Device Line Number **/ +const uint8_t kLineNumberDefault = 1; +const uint8_t kLineNumberMid360 = 4; +const uint8_t kLineNumberHAP = 6; + +// SDK related +typedef enum { + kIndustryLidarType = 1, + kVehicleLidarType = 2, + kDirectLidarType = 4, + kLivoxLidarType = 8 +} LidarProtoType; + +// SDK related +/** Timestamp sync mode define. */ +typedef enum { + kTimestampTypeNoSync = 0, /**< No sync signal mode. */ + kTimestampTypeGptpOrPtp = 1, /**< gPTP or PTP sync mode */ + kTimestampTypeGps = 2 /**< GPS sync mode. */ +} TimestampType; + +/** Lidar connect state */ +typedef enum { + kConnectStateOff = 0, + kConnectStateOn = 1, + kConnectStateConfig = 2, + kConnectStateSampling = 3, +} LidarConnectState; + +/** Device data source type */ +typedef enum { + kSourceRawLidar = 0, /**< Data from raw lidar. */ + kSourceRawHub = 1, /**< Data from lidar hub. */ + kSourceLvxFile, /**< Data from parse lvx file. */ + kSourceUndef, +} LidarDataSourceType; + +typedef enum { kCoordinateCartesian = 0, kCoordinateSpherical } CoordinateType; + +typedef enum { + kConfigDataType = 1 << 0, + kConfigScanPattern = 1 << 1, + kConfigBlindSpot = 1 << 2, + kConfigDualEmit = 1 << 3, + kConfigUnknown +} LivoxLidarConfigCodeBit; + +typedef enum { + kNoneExtrinsicParameter, + kExtrinsicParameterFromLidar, + kExtrinsicParameterFromXml +} ExtrinsicParameterType; + +typedef struct { + uint8_t lidar_type {}; +} LidarSummaryInfo; + +/** 8bytes stamp to uint64_t stamp */ +typedef union { + struct { + uint32_t low; + uint32_t high; + } stamp_word; + + uint8_t stamp_bytes[8]; + int64_t stamp; +} LdsStamp; + +#pragma pack(1) + +typedef struct { + float x; /**< X axis, Unit:m */ + float y; /**< Y axis, Unit:m */ + float z; /**< Z axis, Unit:m */ + float reflectivity; /**< Reflectivity */ + uint8_t tag; /**< Livox point tag */ + uint8_t line; /**< Laser line id */ + double timestamp; /**< Timestamp of point*/ +} LivoxPointXyzrtlt; + +typedef struct { + float x; + float y; + float z; + float intensity; + uint8_t tag; + uint8_t line; + uint64_t offset_time; +} PointXyzlt; + +typedef struct { + uint32_t handle; + uint8_t lidar_type; ////refer to LivoxLidarType + uint32_t points_num; + PointXyzlt* points; +} PointPacket; + +typedef struct { + uint64_t base_time[kMaxSourceLidar] {}; + uint8_t lidar_num {}; + PointPacket lidar_point[kMaxSourceLidar] {}; +} PointFrame; + +#pragma pack() + +typedef struct { + LidarProtoType lidar_type; + uint32_t handle; + uint64_t base_time; + uint32_t points_num; + std::vector points; +} StoragePacket; + +typedef struct { + LidarProtoType lidar_type; + uint32_t handle; + bool extrinsic_enable; + uint32_t point_num; + uint8_t data_type; + uint8_t line_num; + uint64_t time_stamp; + uint64_t point_interval; + std::vector raw_data; +} RawPacket; + +typedef struct { + StoragePacket *storage_packet; + volatile uint32_t rd_idx; + volatile uint32_t wr_idx; + uint32_t mask; + uint32_t size; /**< must be power of 2. */ +} LidarDataQueue; + +/*****************************/ +/* About Extrinsic Parameter */ +typedef struct { + float roll; /**< Roll angle, unit: degree. */ + float pitch; /**< Pitch angle, unit: degree. */ + float yaw; /**< Yaw angle, unit: degree. */ + int32_t x; /**< X translation, unit: mm. */ + int32_t y; /**< Y translation, unit: mm. */ + int32_t z; /**< Z translation, unit: mm. */ +} ExtParameter; + +typedef float TranslationVector[3]; /**< x, y, z translation, unit: mm. */ +typedef float RotationMatrix[3][3]; + +typedef struct { + TranslationVector trans; + RotationMatrix rotation; +} ExtParameterDetailed; + +typedef struct { + LidarProtoType lidar_type; + uint32_t handle; + ExtParameter param; +} LidarExtParameter; + +/** Configuration in json config file for livox lidar */ +typedef struct { + char broadcast_code[16]; + bool enable_connect; + bool enable_fan; + uint32_t return_mode; + uint32_t coordinate; + uint32_t imu_rate; + uint32_t extrinsic_parameter_source; + bool enable_high_sensitivity; +} UserRawConfig; + +typedef struct { + bool enable_fan; + uint32_t return_mode; + uint32_t coordinate; /**< 0 for CartesianCoordinate; others for SphericalCoordinate. */ + uint32_t imu_rate; + uint32_t extrinsic_parameter_source; + bool enable_high_sensitivity; + volatile uint32_t set_bits; + volatile uint32_t get_bits; +} UserConfig; + +typedef struct { + uint32_t handle; + int8_t pcl_data_type; + int8_t pattern_mode; + int32_t blind_spot_set; + int8_t dual_emit_en; + ExtParameter extrinsic_param; + volatile uint32_t set_bits; + volatile uint32_t get_bits; +} UserLivoxLidarConfig; + +/** Lidar data source info abstract */ +typedef struct { + uint8_t lidar_type; + uint32_t handle; + // union { + // uint8_t slot : 4; //slot for LivoxLidarType::kVehicleLidarType + // uint8_t handle : 4; // handle for LivoxLidarType::kIndustryLidarType + // }; + uint8_t data_src; /**< From raw lidar or livox file. */ + volatile LidarConnectState connect_state; + // DeviceInfo info; + + LidarDataQueue data; + LidarImuDataQueue imu_data; + + uint32_t firmware_ver; /**< Firmware version of lidar */ + UserLivoxLidarConfig livox_config; +} LidarDevice; + +constexpr uint32_t kMaxProductType = 10; +constexpr uint32_t kDeviceTypeLidarMid70 = 6; + +/***********************************/ +/* Global function for general use */ +bool IsFilePathValid(const char *path_str); +uint32_t CalculatePacketQueueSize(const double publish_freq); +std::string IpNumToString(uint32_t ip_num); +uint32_t IpStringToNum(std::string ip_string); +std::string ReplacePeriodByUnderline(std::string str); + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER2_COMM_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/ldq.cpp b/src/rm_driver/livox_ros_driver2/src/src/comm/ldq.cpp new file mode 100644 index 0000000..d70bcee --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/ldq.cpp @@ -0,0 +1,150 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include +#include + +#include "ldq.h" + +namespace livox_ros { + +/* for pointcloud queue process */ +bool InitQueue(LidarDataQueue *queue, uint32_t queue_size) { + if (queue == nullptr) { + // ROS_WARN("RosDriver Queue: Initialization failed - invalid queue."); + return false; + } + + if (!IsPowerOf2(queue_size)) { + queue_size = RoundupPowerOf2(queue_size); + printf("Init queue, real query size:%u.\n", queue_size); + } + + if (queue->storage_packet) { + delete[] queue->storage_packet; + queue->storage_packet = nullptr; + } + + queue->storage_packet = new StoragePacket[queue_size]; + if (queue->storage_packet == nullptr) { + // ROS_WARN("RosDriver Queue: Initialization failed - failed to allocate memory."); + return false; + } + + queue->rd_idx = 0; + queue->wr_idx = 0; + queue->size = queue_size; + queue->mask = queue_size - 1; + + return true; +} + +bool DeInitQueue(LidarDataQueue *queue) { + if (queue == nullptr) { + // ROS_WARN("RosDriver Queue: Deinitialization failed - invalid queue."); + return false; + } + + if (queue->storage_packet) { + delete[] queue->storage_packet; + } + + queue->rd_idx = 0; + queue->wr_idx = 0; + queue->size = 0; + queue->mask = 0; + + return true; +} + +void ResetQueue(LidarDataQueue *queue) { + queue->rd_idx = 0; + queue->wr_idx = 0; +} + +bool QueuePrePop(LidarDataQueue *queue, StoragePacket *storage_packet) { + if (queue == nullptr || storage_packet == nullptr) { + // ROS_WARN("RosDriver Queue: Invalid pointer parameters."); + return false; + } + + if (QueueIsEmpty(queue)) { + // ROS_WARN("RosDriver Queue: Pop failed, since the queue is empty."); + return false; + } + + uint32_t rd_idx = queue->rd_idx & queue->mask; + + storage_packet->base_time = queue->storage_packet[rd_idx].base_time; + storage_packet->points_num = queue->storage_packet[rd_idx].points_num; + storage_packet->points.resize(queue->storage_packet[rd_idx].points_num); + + memcpy(storage_packet->points.data(), queue->storage_packet[rd_idx].points.data(), (storage_packet->points_num) * sizeof(PointXyzlt)); + return true; +} + +void QueuePopUpdate(LidarDataQueue *queue) { + queue->rd_idx++; +} + +bool QueuePop(LidarDataQueue *queue, StoragePacket *storage_packet) { + if (!QueuePrePop(queue, storage_packet)) { + return false; + } + QueuePopUpdate(queue); + + return true; +} + +uint32_t QueueUsedSize(LidarDataQueue *queue) { + return queue->wr_idx - queue->rd_idx; +} + +uint32_t QueueUnusedSize(LidarDataQueue *queue) { + return (queue->size - QueueUsedSize(queue)); +} + +bool QueueIsFull(LidarDataQueue *queue) { + return ((queue->wr_idx - queue->rd_idx) > queue->mask); +} + +bool QueueIsEmpty(LidarDataQueue *queue) { + return (queue->rd_idx == queue->wr_idx); +} + +uint32_t QueuePushAny(LidarDataQueue *queue, uint8_t *data, const uint64_t base_time) { + uint32_t wr_idx = queue->wr_idx & queue->mask; + PointPacket* lidar_point_data = reinterpret_cast(data); + queue->storage_packet[wr_idx].base_time = base_time; + queue->storage_packet[wr_idx].points_num = lidar_point_data->points_num; + + queue->storage_packet[wr_idx].points.clear(); + queue->storage_packet[wr_idx].points.resize(lidar_point_data->points_num); + memcpy(queue->storage_packet[wr_idx].points.data(), lidar_point_data->points, sizeof(PointXyzlt) * (lidar_point_data->points_num)); + + queue->wr_idx++; + return 1; +} + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/ldq.h b/src/rm_driver/livox_ros_driver2/src/src/comm/ldq.h new file mode 100644 index 0000000..9830a31 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/ldq.h @@ -0,0 +1,66 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_LDQ_H_ +#define LIVOX_ROS_DRIVER_LDQ_H_ + +#include +#include + +#include "comm/comm.h" + +namespace livox_ros { + +inline static bool IsPowerOf2(uint32_t size) { + return (size != 0) && ((size & (size - 1)) == 0); +} + +inline static uint32_t RoundupPowerOf2(uint32_t size) { + uint32_t power2_val = 0; + for (int i = 0; i < 32; i++) { + power2_val = ((uint32_t)1) << i; + if (size <= power2_val) { + break; + } + } + + return power2_val; +} + +/** queue operate function */ +bool InitQueue(LidarDataQueue *queue, uint32_t queue_size); +bool DeInitQueue(LidarDataQueue *queue); +void ResetQueue(LidarDataQueue *queue); +bool QueuePrePop(LidarDataQueue *queue, StoragePacket *storage_packet); +void QueuePopUpdate(LidarDataQueue *queue); +bool QueuePop(LidarDataQueue *queue, StoragePacket *storage_packet); +uint32_t QueueUsedSize(LidarDataQueue *queue); +uint32_t QueueUnusedSize(LidarDataQueue *queue); +bool QueueIsFull(LidarDataQueue *queue); +bool QueueIsEmpty(LidarDataQueue *queue); +uint32_t QueuePushAny(LidarDataQueue *queue, uint8_t *data, const uint64_t base_time); + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_LDQ_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/lidar_imu_data_queue.cpp b/src/rm_driver/livox_ros_driver2/src/src/comm/lidar_imu_data_queue.cpp new file mode 100644 index 0000000..43de94b --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/lidar_imu_data_queue.cpp @@ -0,0 +1,70 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "lidar_imu_data_queue.h" + +namespace livox_ros { + +void LidarImuDataQueue::Push(ImuData* imu_data) { + ImuData data; + data.lidar_type = imu_data->lidar_type; + data.handle = imu_data->handle; + data.time_stamp = imu_data->time_stamp; + + data.gyro_x = imu_data->gyro_x; + data.gyro_y = imu_data->gyro_y; + data.gyro_z = imu_data->gyro_z; + + data.acc_x = imu_data->acc_x; + data.acc_y = imu_data->acc_y; + data.acc_z = imu_data->acc_z; + + std::lock_guard lock(mutex_); + imu_data_queue_.push_back(std::move(data)); +} + +bool LidarImuDataQueue::Pop(ImuData& imu_data) { + std::lock_guard lock(mutex_); + if (imu_data_queue_.empty()) { + return false; + } + imu_data = imu_data_queue_.front(); + imu_data_queue_.pop_front(); + return true; +} + +bool LidarImuDataQueue::Empty() { + std::lock_guard lock(mutex_); + return imu_data_queue_.empty(); +} + +void LidarImuDataQueue::Clear() { + std::list tmp_imu_data_queue; + { + std::lock_guard lock(mutex_); + imu_data_queue_.swap(tmp_imu_data_queue); + } +} + +} // namespace livox_ros \ No newline at end of file diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/lidar_imu_data_queue.h b/src/rm_driver/livox_ros_driver2/src/src/comm/lidar_imu_data_queue.h new file mode 100644 index 0000000..83091f3 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/lidar_imu_data_queue.h @@ -0,0 +1,77 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_LIDAR_IMU_DATA_QUEUE_H_ +#define LIVOX_ROS_DRIVER_LIDAR_IMU_DATA_QUEUE_H_ + +#include +#include +#include + +namespace livox_ros { + +// Based on the IMU Data Type in Livox communication protocol +// TODO: add a link to the protocol +typedef struct { + float gyro_x; /**< Gyroscope X axis, Unit:rad/s */ + float gyro_y; /**< Gyroscope Y axis, Unit:rad/s */ + float gyro_z; /**< Gyroscope Z axis, Unit:rad/s */ + float acc_x; /**< Accelerometer X axis, Unit:g */ + float acc_y; /**< Accelerometer Y axis, Unit:g */ + float acc_z; /**< Accelerometer Z axis, Unit:g */ +} RawImuPoint; + +typedef struct { + uint8_t lidar_type; + uint32_t handle; + uint8_t slot; + // union { + // uint8_t handle; + // uint8_t slot; + // }; + uint64_t time_stamp; + float gyro_x; /**< Gyroscope X axis, Unit:rad/s */ + float gyro_y; /**< Gyroscope Y axis, Unit:rad/s */ + float gyro_z; /**< Gyroscope Z axis, Unit:rad/s */ + float acc_x; /**< Accelerometer X axis, Unit:g */ + float acc_y; /**< Accelerometer Y axis, Unit:g */ + float acc_z; /**< Accelerometer Z axis, Unit:g */ +} ImuData; + +class LidarImuDataQueue { + public: + void Push(ImuData* imu_data); + bool Pop(ImuData& imu_data); + bool Empty(); + void Clear(); + + private: + std::mutex mutex_; + std::list imu_data_queue_; +}; + +} // namespace + +#endif // LIVOX_ROS_DRIVER_LIDAR_IMU_DATA_QUEUE_H_ + diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/pub_handler.cpp b/src/rm_driver/livox_ros_driver2/src/src/comm/pub_handler.cpp new file mode 100644 index 0000000..edf99cc --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/pub_handler.cpp @@ -0,0 +1,531 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "pub_handler.h" + +#include +#include +#include +#include + +namespace livox_ros { + +std::atomic PubHandler::is_timestamp_sync_; + +PubHandler &pub_handler() { + static PubHandler handler; + return handler; +} + +static ExtParameterDetailed extrinsic_global = { + {0, 0, 0}, + { + {1, 0, 0}, + {0, 1, 0}, + {0, 0, 1} + } +}; + +void PubHandler::Init() {} + +void PubHandler::Uninit() { + if (lidar_listen_id_ > 0) { + LivoxLidarRemovePointCloudObserver(lidar_listen_id_); + lidar_listen_id_ = 0; + } + + RequestExit(); + + if (point_process_thread_ && point_process_thread_->joinable()) { + point_process_thread_->join(); + point_process_thread_ = nullptr; + } else { + /* */ + } +} + +void PubHandler::RequestExit() { is_quit_.store(true); } + +void PubHandler::SetPointCloudConfig(const double publish_freq) { + publish_interval_ = (kNsPerSecond / (publish_freq * 10)) * 10; + publish_interval_tolerance_ = + publish_interval_ - kNsTolerantFrameTimeDeviation; + publish_interval_ms_ = publish_interval_ / kRatioOfMsToNs; + if (!point_process_thread_) { + point_process_thread_ = + std::make_shared(&PubHandler::RawDataProcess, this); + } + return; +} + +void PubHandler::SetImuDataCallback(ImuDataCallback cb, void *client_data) { + imu_client_data_ = client_data; + imu_callback_ = cb; +} + +void PubHandler::AddLidarsExtParam(LidarExtParameter &lidar_param) { + std::unique_lock lock(packet_mutex_); + uint32_t id = 0; + GetLidarId(lidar_param.lidar_type, lidar_param.handle, id); + lidar_extrinsics_[id] = lidar_param; +} + +void PubHandler::ClearAllLidarsExtrinsicParams() { + std::unique_lock lock(packet_mutex_); + lidar_extrinsics_.clear(); +} + +void PubHandler::SetPointCloudsCallback(PointCloudsCallback cb, + void *client_data) { + pub_client_data_ = client_data; + points_callback_ = cb; + lidar_listen_id_ = + LivoxLidarAddPointCloudObserver(OnLivoxLidarPointCloudCallback, this); +} + +void PubHandler::OnLivoxLidarPointCloudCallback(uint32_t handle, + const uint8_t dev_type, + LivoxLidarEthernetPacket *data, + void *client_data) { + PubHandler *self = (PubHandler *)client_data; + if (!self) { + return; + } + + if (data->time_type != kTimestampTypeNoSync) { + is_timestamp_sync_.store(true); + } else { + is_timestamp_sync_.store(false); + } + + if (data->data_type == kLivoxLidarImuData) { + if (self->imu_callback_) { + RawImuPoint *imu = (RawImuPoint *)data->data; + ImuData imu_data; + imu_data.lidar_type = + static_cast(LidarProtoType::kLivoxLidarType); + imu_data.handle = handle; + imu_data.time_stamp = GetEthPacketTimestamp( + data->time_type, data->timestamp, sizeof(data->timestamp)); + imu_data.gyro_x = imu->gyro_x * extrinsic_global.rotation[0][0] + + imu->gyro_y * extrinsic_global.rotation[0][1] + + imu->gyro_z * extrinsic_global.rotation[0][2]; + // * this->extrinsic_.rotation[0][0] + imu->gyro_x * + // extrinsic_.rotation[0][1] + imu->gyro_x * extrinsic_.rotation[0][2]; + imu_data.gyro_y = imu->gyro_x * extrinsic_global.rotation[1][0] + + imu->gyro_y * extrinsic_global.rotation[1][1] + + imu->gyro_z * extrinsic_global.rotation[1][2]; + imu_data.gyro_z = imu->gyro_x * extrinsic_global.rotation[2][0] + + imu->gyro_y * extrinsic_global.rotation[2][1] + + imu->gyro_z * extrinsic_global.rotation[2][2]; + imu_data.acc_x = imu->acc_x * extrinsic_global.rotation[0][0] + + imu->acc_y * extrinsic_global.rotation[0][1] + + imu->acc_z * extrinsic_global.rotation[0][2]; + imu_data.acc_y = imu->acc_x * extrinsic_global.rotation[1][0] + + imu->acc_y * extrinsic_global.rotation[1][1] + + imu->acc_z * extrinsic_global.rotation[1][2]; + imu_data.acc_z = imu->acc_x * extrinsic_global.rotation[2][0] + + imu->acc_y * extrinsic_global.rotation[2][1] + + imu->acc_z * extrinsic_global.rotation[2][2]; + self->imu_callback_(&imu_data, self->imu_client_data_); + } + return; + } + RawPacket packet = {}; + packet.handle = handle; + packet.lidar_type = LidarProtoType::kLivoxLidarType; + packet.extrinsic_enable = false; + if (dev_type == LivoxLidarDeviceType::kLivoxLidarTypeIndustrialHAP) { + packet.line_num = kLineNumberHAP; + } else if (dev_type == LivoxLidarDeviceType::kLivoxLidarTypeMid360) { + packet.line_num = kLineNumberMid360; + } else { + packet.line_num = kLineNumberDefault; + } + packet.data_type = data->data_type; + packet.point_num = data->dot_num; + packet.point_interval = data->time_interval * 100 / data->dot_num; // ns + packet.time_stamp = GetEthPacketTimestamp(data->time_type, data->timestamp, + sizeof(data->timestamp)); + uint32_t length = data->length - sizeof(LivoxLidarEthernetPacket) + 1; + packet.raw_data.insert(packet.raw_data.end(), data->data, + data->data + length); + { + std::unique_lock lock(self->packet_mutex_); + self->raw_packet_queue_.push_back(packet); + } + self->packet_condition_.notify_one(); + + return; +} + +void PubHandler::PublishPointCloud() { + // publish point + if (points_callback_) { + points_callback_(&frame_, pub_client_data_); + } + return; +} + +void PubHandler::CheckTimer(uint32_t id) { + + if (PubHandler::is_timestamp_sync_.load()) { // Enable time synchronization + auto &process_handler = lidar_process_handlers_[id]; + uint64_t recent_time_ms = + process_handler->GetRecentTimeStamp() / kRatioOfMsToNs; + if ((recent_time_ms % publish_interval_ms_ != 0) || recent_time_ms == 0) { + return; + } + + uint64_t diff = process_handler->GetRecentTimeStamp() - + process_handler->GetLidarBaseTime(); + if (diff < publish_interval_tolerance_) { + return; + } + + frame_.base_time[frame_.lidar_num] = process_handler->GetLidarBaseTime(); + points_[id].clear(); + process_handler->GetLidarPointClouds(points_[id]); + if (points_[id].empty()) { + return; + } + PointPacket &lidar_point = frame_.lidar_point[frame_.lidar_num]; + lidar_point.lidar_type = LidarProtoType::kLivoxLidarType; // TODO: + lidar_point.handle = id; + lidar_point.points_num = points_[id].size(); + lidar_point.points = points_[id].data(); + frame_.lidar_num++; + + if (frame_.lidar_num != 0) { + PublishPointCloud(); + frame_.lidar_num = 0; + } + } else { // Disable time synchronization + auto now_time = std::chrono::high_resolution_clock::now(); + // First Set + static bool first = true; + if (first) { + last_pub_time_ = now_time; + first = false; + return; + } + if (now_time - last_pub_time_ < + std::chrono::nanoseconds(publish_interval_)) { + return; + } + last_pub_time_ += std::chrono::nanoseconds(publish_interval_); + for (auto &process_handler : lidar_process_handlers_) { + frame_.base_time[frame_.lidar_num] = + process_handler.second->GetLidarBaseTime(); + uint32_t handle = process_handler.first; + points_[handle].clear(); + process_handler.second->GetLidarPointClouds(points_[handle]); + if (points_[handle].empty()) { + continue; + } + PointPacket &lidar_point = frame_.lidar_point[frame_.lidar_num]; + lidar_point.lidar_type = LidarProtoType::kLivoxLidarType; // TODO: + lidar_point.handle = handle; + lidar_point.points_num = points_[handle].size(); + lidar_point.points = points_[handle].data(); + frame_.lidar_num++; + } + PublishPointCloud(); + frame_.lidar_num = 0; + } + return; +} + +void PubHandler::RawDataProcess() { + RawPacket raw_data; + while (!is_quit_.load()) { + { + std::unique_lock lock(packet_mutex_); + if (raw_packet_queue_.empty()) { + packet_condition_.wait_for(lock, std::chrono::milliseconds(500)); + if (raw_packet_queue_.empty()) { + continue; + } + } + raw_data = raw_packet_queue_.front(); + raw_packet_queue_.pop_front(); + if (raw_packet_queue_.size() < 3) { // reduce CPU usage + std::this_thread::sleep_for(std::chrono::microseconds(50)); + } + } + uint32_t id = 0; + GetLidarId(raw_data.lidar_type, raw_data.handle, id); + if (lidar_process_handlers_.find(id) == lidar_process_handlers_.end()) { + lidar_process_handlers_[id].reset(new LidarPubHandler()); + } + auto &process_handler = lidar_process_handlers_[id]; + if (lidar_extrinsics_.find(id) != lidar_extrinsics_.end()) { + lidar_process_handlers_[id]->SetLidarsExtParam(lidar_extrinsics_[id]); + } + process_handler->PointCloudProcess(raw_data); + CheckTimer(id); + } +} + +bool PubHandler::GetLidarId(LidarProtoType lidar_type, uint32_t handle, + uint32_t &id) { + if (lidar_type == kLivoxLidarType) { + id = handle; + return true; + } + return false; +} + +uint64_t PubHandler::GetEthPacketTimestamp(uint8_t timestamp_type, + uint8_t *time_stamp, uint8_t size) { + LdsStamp time; + memcpy(time.stamp_bytes, time_stamp, size); + + if (timestamp_type == kTimestampTypeGptpOrPtp || + timestamp_type == kTimestampTypeGps) { + return time.stamp; + } + + return std::chrono::high_resolution_clock::now().time_since_epoch().count(); +} + +/*******************************/ +/* LidarPubHandler Definitions*/ +LidarPubHandler::LidarPubHandler() : is_set_extrinsic_params_(false) {} + +uint64_t LidarPubHandler::GetLidarBaseTime() { + if (points_clouds_.empty()) { + return 0; + } + return points_clouds_.at(0).offset_time; +} + +void LidarPubHandler::GetLidarPointClouds( + std::vector &points_clouds) { + std::lock_guard lock(mutex_); + points_clouds.swap(points_clouds_); +} + +uint64_t LidarPubHandler::GetRecentTimeStamp() { + if (points_clouds_.empty()) { + return 0; + } + return points_clouds_.back().offset_time; +} + +uint32_t LidarPubHandler::GetLidarPointCloudsSize() { + std::lock_guard lock(mutex_); + return points_clouds_.size(); +} + +// convert to standard format and extrinsic compensate +void LidarPubHandler::PointCloudProcess(RawPacket &pkt) { + if (pkt.lidar_type == LidarProtoType::kLivoxLidarType) { + LivoxLidarPointCloudProcess(pkt); + } else { + static bool flag = false; + if (!flag) { + std::cout << "error, unsupported protocol type: " + << static_cast(pkt.lidar_type) << std::endl; + flag = true; + } + } +} + +void LidarPubHandler::LivoxLidarPointCloudProcess(RawPacket &pkt) { + switch (pkt.data_type) { + case kLivoxLidarCartesianCoordinateHighData: + ProcessCartesianHighPoint(pkt); + break; + case kLivoxLidarCartesianCoordinateLowData: + ProcessCartesianLowPoint(pkt); + break; + case kLivoxLidarSphericalCoordinateData: + ProcessSphericalPoint(pkt); + break; + default: + std::cout << "unknown data type: " << static_cast(pkt.data_type) + << " !!" << std::endl; + break; + } +} + +void LidarPubHandler::SetLidarsExtParam(LidarExtParameter lidar_param) { + if (is_set_extrinsic_params_) { + return; + } + extrinsic_.trans[0] = lidar_param.param.x; + extrinsic_.trans[1] = lidar_param.param.y; + extrinsic_.trans[2] = lidar_param.param.z; + + double cos_roll = + cos(static_cast(lidar_param.param.roll * PI / 180.0)); + double cos_pitch = + cos(static_cast(lidar_param.param.pitch * PI / 180.0)); + double cos_yaw = cos(static_cast(lidar_param.param.yaw * PI / 180.0)); + double sin_roll = + sin(static_cast(lidar_param.param.roll * PI / 180.0)); + double sin_pitch = + sin(static_cast(lidar_param.param.pitch * PI / 180.0)); + double sin_yaw = sin(static_cast(lidar_param.param.yaw * PI / 180.0)); + + std::cout<<"extrinsic rpy"<<" "< lock(mutex_); + points_clouds_.push_back(point); + } +} + +void LidarPubHandler::ProcessCartesianLowPoint(RawPacket &pkt) { + LivoxLidarCartesianLowRawPoint *raw = + (LivoxLidarCartesianLowRawPoint *)pkt.raw_data.data(); + PointXyzlt point = {}; + for (uint32_t i = 0; i < pkt.point_num; i++) { + if (pkt.extrinsic_enable) { + point.x = raw[i].x / 100.0; + point.y = raw[i].y / 100.0; + point.z = raw[i].z / 100.0; + } else { + point.x = (raw[i].x * extrinsic_.rotation[0][0] + + raw[i].y * extrinsic_.rotation[0][1] + + raw[i].z * extrinsic_.rotation[0][2] + extrinsic_.trans[0]) / + 100.0; + point.y = (raw[i].x * extrinsic_.rotation[1][0] + + raw[i].y * extrinsic_.rotation[1][1] + + raw[i].z * extrinsic_.rotation[1][2] + extrinsic_.trans[1]) / + 100.0; + point.z = (raw[i].x * extrinsic_.rotation[2][0] + + raw[i].y * extrinsic_.rotation[2][1] + + raw[i].z * extrinsic_.rotation[2][2] + extrinsic_.trans[2]) / + 100.0; + } + point.intensity = raw[i].reflectivity; + point.line = i % pkt.line_num; + point.tag = raw[i].tag; + point.offset_time = pkt.time_stamp + i * pkt.point_interval; + std::lock_guard lock(mutex_); + points_clouds_.push_back(point); + } +} + +void LidarPubHandler::ProcessSphericalPoint(RawPacket &pkt) { + LivoxLidarSpherPoint *raw = (LivoxLidarSpherPoint *)pkt.raw_data.data(); + PointXyzlt point = {}; + for (uint32_t i = 0; i < pkt.point_num; i++) { + double radius = raw[i].depth / 1000.0; + double theta = raw[i].theta / 100.0 / 180 * PI; + double phi = raw[i].phi / 100.0 / 180 * PI; + double src_x = radius * sin(theta) * cos(phi); + double src_y = radius * sin(theta) * sin(phi); + double src_z = radius * cos(theta); + if (pkt.extrinsic_enable) { + point.x = src_x; + point.y = src_y; + point.z = src_z; + } else { + point.x = src_x * extrinsic_.rotation[0][0] + + src_y * extrinsic_.rotation[0][1] + + src_z * extrinsic_.rotation[0][2] + + (extrinsic_.trans[0] / 1000.0); + point.y = src_x * extrinsic_.rotation[1][0] + + src_y * extrinsic_.rotation[1][1] + + src_z * extrinsic_.rotation[1][2] + + (extrinsic_.trans[1] / 1000.0); + point.z = src_x * extrinsic_.rotation[2][0] + + src_y * extrinsic_.rotation[2][1] + + src_z * extrinsic_.rotation[2][2] + + (extrinsic_.trans[2] / 1000.0); + } + + point.intensity = raw[i].reflectivity; + point.line = i % pkt.line_num; + point.tag = raw[i].tag; + point.offset_time = pkt.time_stamp + i * pkt.point_interval; + std::lock_guard lock(mutex_); + points_clouds_.push_back(point); + } +} + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/pub_handler.h b/src/rm_driver/livox_ros_driver2/src/src/comm/pub_handler.h new file mode 100644 index 0000000..2beab4d --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/pub_handler.h @@ -0,0 +1,138 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_DRIVER_PUB_HANDLER_H_ +#define LIVOX_DRIVER_PUB_HANDLER_H_ + +#include +#include +#include // std::condition_variable +#include +#include +#include +#include +#include // std::mutex +#include + +#include "livox_lidar_def.h" +#include "livox_lidar_api.h" +#include "comm/comm.h" + +namespace livox_ros { + +class LidarPubHandler { + public: + LidarPubHandler(); + ~ LidarPubHandler() {} + + void PointCloudProcess(RawPacket& pkt); + void SetLidarsExtParam(LidarExtParameter param); + void GetLidarPointClouds(std::vector& points_clouds); + + uint64_t GetRecentTimeStamp(); + uint32_t GetLidarPointCloudsSize(); + uint64_t GetLidarBaseTime(); + + private: + void LivoxLidarPointCloudProcess(RawPacket & pkt); + void ProcessCartesianHighPoint(RawPacket & pkt); + void ProcessCartesianLowPoint(RawPacket & pkt); + void ProcessSphericalPoint(RawPacket & pkt); + std::vector points_clouds_; + ExtParameterDetailed extrinsic_ = { + {0, 0, 0}, + { + {1, 0, 0}, + {0, 1, 0}, + {0, 0, 1} + } + }; + std::mutex mutex_; + std::atomic_bool is_set_extrinsic_params_; +}; + +class PubHandler { + public: + using PointCloudsCallback = std::function; + using ImuDataCallback = std::function; + using TimePoint = std::chrono::high_resolution_clock::time_point; + + PubHandler() {} + + ~ PubHandler() { Uninit(); } + + void Uninit(); + void RequestExit(); + void Init(); + void SetPointCloudConfig(const double publish_freq); + void SetPointCloudsCallback(PointCloudsCallback cb, void* client_data); + void AddLidarsExtParam(LidarExtParameter& extrinsic_params); + void ClearAllLidarsExtrinsicParams(); + void SetImuDataCallback(ImuDataCallback cb, void* client_data); + + private: + //thread to process raw data + void RawDataProcess(); + std::atomic is_quit_{false}; + std::shared_ptr point_process_thread_; + std::mutex packet_mutex_; + std::condition_variable packet_condition_; + + //publish callback + void CheckTimer(uint32_t id); + void PublishPointCloud(); + static void OnLivoxLidarPointCloudCallback(uint32_t handle, const uint8_t dev_type, + LivoxLidarEthernetPacket *data, void *client_data); + + static bool GetLidarId(LidarProtoType lidar_type, uint32_t handle, uint32_t& id); + static uint64_t GetEthPacketTimestamp(uint8_t timestamp_type, uint8_t* time_stamp, uint8_t size); + + PointCloudsCallback points_callback_; + void* pub_client_data_ = nullptr; + + ImuDataCallback imu_callback_; + void* imu_client_data_ = nullptr; + + PointFrame frame_; + + std::deque raw_packet_queue_; + + //pub config + uint64_t publish_interval_ = 100000000; //100 ms + uint64_t publish_interval_tolerance_ = 100000000; //100 ms + uint64_t publish_interval_ms_ = 100; //100 ms + TimePoint last_pub_time_; + + std::map> lidar_process_handlers_; + std::map> points_; + std::map lidar_extrinsics_; + static std::atomic is_timestamp_sync_; + uint16_t lidar_listen_id_ = 0; +}; + +PubHandler &pub_handler(); + +} // namespace livox_ros + +#endif // LIVOX_DRIVER_PUB_HANDLER_H_ \ No newline at end of file diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/semaphore.cpp b/src/rm_driver/livox_ros_driver2/src/src/comm/semaphore.cpp new file mode 100644 index 0000000..941815a --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/semaphore.cpp @@ -0,0 +1,41 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "semaphore.h" + +namespace livox_ros { + +void Semaphore::Signal() { + std::unique_lock lock(mutex_); + ++count_; + cv_.notify_one(); +} + +void Semaphore::Wait() { + std::unique_lock lock(mutex_); + cv_.wait(lock, [=] { return count_ > 0; }); + --count_; +} + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/comm/semaphore.h b/src/rm_driver/livox_ros_driver2/src/src/comm/semaphore.h new file mode 100644 index 0000000..b8085cd --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/comm/semaphore.h @@ -0,0 +1,51 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_SEMAPHORE_H_ +#define LIVOX_ROS_DRIVER_SEMAPHORE_H_ + +#include +#include + +namespace livox_ros { + +class Semaphore { + public: + explicit Semaphore(int count = 0) : count_(count) { + } + void Signal(); + void Wait(); + int GetCount() { + return count_; + } + + private: + std::mutex mutex_; + std::condition_variable cv_; + volatile int count_; +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_SEMAPHORE_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/driver_node.cpp b/src/rm_driver/livox_ros_driver2/src/src/driver_node.cpp new file mode 100644 index 0000000..24f0aba --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/driver_node.cpp @@ -0,0 +1,46 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "driver_node.h" +#include "lddc.h" + +namespace livox_ros { + +DriverNode& DriverNode::GetNode() noexcept { + return *this; +} + +DriverNode::~DriverNode() { + lddc_ptr_->lds_->RequestExit(); + exit_signal_.set_value(); + pointclouddata_poll_thread_->join(); + imudata_poll_thread_->join(); +} + +} // namespace livox_ros + + + + + diff --git a/src/rm_driver/livox_ros_driver2/src/src/driver_node.h b/src/rm_driver/livox_ros_driver2/src/src/driver_node.h new file mode 100644 index 0000000..610f308 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/driver_node.h @@ -0,0 +1,56 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_DRIVER_NODE_H +#define LIVOX_DRIVER_NODE_H + +#include "include/ros_headers.h" + +namespace livox_ros { + +class Lddc; + +class DriverNode final : public rclcpp::Node { + public: + explicit DriverNode(const rclcpp::NodeOptions& options); + DriverNode(const DriverNode &) = delete; + ~DriverNode(); + DriverNode &operator=(const DriverNode &) = delete; + + DriverNode& GetNode() noexcept; + + private: + void PointCloudDataPollThread(); + void ImuDataPollThread(); + + std::unique_ptr lddc_ptr_; + std::shared_ptr pointclouddata_poll_thread_; + std::shared_ptr imudata_poll_thread_; + std::shared_future future_; + std::promise exit_signal_; +}; + +} // namespace livox_ros + +#endif // LIVOX_DRIVER_NODE_H \ No newline at end of file diff --git a/src/rm_driver/livox_ros_driver2/src/src/include/livox_ros_driver2.h b/src/rm_driver/livox_ros_driver2/src/src/include/livox_ros_driver2.h new file mode 100644 index 0000000..9b6a6c0 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/include/livox_ros_driver2.h @@ -0,0 +1,40 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER2_INClUDE_H_ +#define LIVOX_ROS_DRIVER2_INClUDE_H_ + +#define LIVOX_ROS_DRIVER2_VER_MAJOR 1 +#define LIVOX_ROS_DRIVER2_VER_MINOR 0 +#define LIVOX_ROS_DRIVER2_VER_PATCH 0 + +#define GET_STRING(n) GET_STRING_DIRECT(n) +#define GET_STRING_DIRECT(n) #n + +#define LIVOX_ROS_DRIVER2_VERSION_STRING \ + GET_STRING(LIVOX_ROS_DRIVER2_VER_MAJOR) \ + "." GET_STRING(LIVOX_ROS_DRIVER2_VER_MINOR) "." GET_STRING( \ + LIVOX_ROS_DRIVER2_VER_PATCH) + +#endif // LIVOX_ROS_DRIVER2_INClUDE_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/include/ros2_headers.h b/src/rm_driver/livox_ros_driver2/src/src/include/ros2_headers.h new file mode 100644 index 0000000..1d11236 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/include/ros2_headers.h @@ -0,0 +1,52 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +// Denoting headers specifically used for building ROS1 Driver. + +#ifndef ROS2_HEADERS_H_ +#define ROS2_HEADERS_H_ + +#include +#include + +#include +#include +#include +#include +#include "livox_ros_driver2/msg/custom_point.hpp" +#include "livox_ros_driver2/msg/custom_msg.hpp" + +#define DRIVER_DEBUG(node, ...) RCLCPP_DEBUG((node).get_logger(), __VA_ARGS__) +#define DRIVER_INFO(node, ...) RCLCPP_INFO((node).get_logger(), __VA_ARGS__) +#define DRIVER_WARN(node, ...) RCLCPP_WARN((node).get_logger(), __VA_ARGS__) +#define DRIVER_ERROR(node, ...) RCLCPP_ERROR((node).get_logger(), __VA_ARGS__) +#define DRIVER_FATAL(node, ...) RCLCPP_FATAL((node).get_logger(), __VA_ARGS__) + +#define DRIVER_DEBUG_EXTRA(node, EXTRA, ...) RCLCPP_DEBUG_##EXTRA((node).get_logger(), __VA_ARGS__) +#define DRIVER_INFO_EXTRA(node, EXTRA, ...) RCLCPP_INFO_##EXTRA((node).get_logger(), __VA_ARGS__) +#define DRIVER_WARN_EXTRA(node, EXTRA, ...) RCLCPP_WARN_##EXTRA((node).get_logger(), __VA_ARGS__) +#define DRIVER_ERROR_EXTRA(node, EXTRA, ...) RCLCPP_ERROR_##EXTRA((node).get_logger(), __VA_ARGS__) +#define DRIVER_FATAL_EXTRA(node, EXTRA, ...) RCLCPP_FATAL_##EXTRA((node).get_logger(), __VA_ARGS__) + +#endif // ROS2_HEADERS_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/include/ros_headers.h b/src/rm_driver/livox_ros_driver2/src/src/include/ros_headers.h new file mode 100644 index 0000000..7626065 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/include/ros_headers.h @@ -0,0 +1,30 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef ROS_HEADERS_H_ +#define ROS_HEADERS_H_ + +#include "ros2_headers.h" + +#endif // ROS_HEADERS_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/lddc.cpp b/src/rm_driver/livox_ros_driver2/src/src/lddc.cpp new file mode 100644 index 0000000..7817743 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/lddc.cpp @@ -0,0 +1,551 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "lddc.h" +#include "comm/comm.h" +#include "comm/ldq.h" + +#include +#include +#include +#include +#include +#include + +#include "include/ros_headers.h" + +#include "driver_node.h" +#include "lds_lidar.h" + +namespace livox_ros { + +/** Lidar Data Distribute Control--------------------------------------------*/ +Lddc::Lddc(int format, int multi_topic, int data_src, int output_type, + double frq, std::string &frame_id) + : transfer_format_(format), use_multi_topic_(multi_topic), + data_src_(data_src), output_type_(output_type), publish_frq_(frq), + frame_id_(frame_id) { + publish_period_ns_ = kNsPerSecond / publish_frq_; + lds_ = nullptr; +} + +Lddc::~Lddc() { + + PrepareExit(); + + std::cout << "lddc destory!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" + << std::endl; +} + +int Lddc::RegisterLds(Lds *lds) { + if (lds_ == nullptr) { + lds_ = lds; + return 0; + } else { + return -1; + } +} + +void Lddc::DistributePointCloudData(void) { + if (!lds_) { + std::cout << "lds is not registered" << std::endl; + return; + } + if (lds_->IsRequestExit()) { + std::cout << "DistributePointCloudData is RequestExit" << std::endl; + return; + } + + lds_->pcd_semaphore_.Wait(); + for (uint32_t i = 0; i < lds_->lidar_count_; i++) { + uint32_t lidar_id = i; + LidarDevice *lidar = &lds_->lidars_[lidar_id]; + LidarDataQueue *p_queue = &lidar->data; + if ((kConnectStateSampling != lidar->connect_state) || + (p_queue == nullptr)) { + continue; + } + PollingLidarPointCloudData(lidar_id, lidar); + } +} + +void Lddc::DistributeImuData(void) { + if (!lds_) { + std::cout << "lds is not registered" << std::endl; + return; + } + if (lds_->IsRequestExit()) { + std::cout << "DistributeImuData is RequestExit" << std::endl; + return; + } + + lds_->imu_semaphore_.Wait(); + for (uint32_t i = 0; i < lds_->lidar_count_; i++) { + uint32_t lidar_id = i; + LidarDevice *lidar = &lds_->lidars_[lidar_id]; + LidarImuDataQueue *p_queue = &lidar->imu_data; + if ((kConnectStateSampling != lidar->connect_state) || + (p_queue == nullptr)) { + continue; + } + PollingLidarImuData(lidar_id, lidar); + } +} + +void Lddc::PollingLidarPointCloudData(uint8_t index, LidarDevice *lidar) { + LidarDataQueue *p_queue = &lidar->data; + if (p_queue == nullptr || p_queue->storage_packet == nullptr) { + return; + } + + while (!lds_->IsRequestExit() && !QueueIsEmpty(p_queue)) { + if (kPointCloud2Msg == transfer_format_) { + PublishPointcloud2(p_queue, index); + } else if (kLivoxCustomMsg == transfer_format_) { + // PublishPointcloud2AndCustomMsg(p_queue, index); + PublishCustomPointcloud(p_queue, index); + } else if (kPclPxyziMsg == transfer_format_) { + PublishPclMsg(p_queue, index); + } else if (kAllMsg == transfer_format_) { + PublishPointcloud2AndCustomMsg(p_queue, index); + } + } +} + +void Lddc::PollingLidarImuData(uint8_t index, LidarDevice *lidar) { + LidarImuDataQueue &p_queue = lidar->imu_data; + while (!lds_->IsRequestExit() && !p_queue.Empty()) { + PublishImuData(p_queue, index); + } +} + +void Lddc::PrepareExit(void) { + if (lds_) { + lds_->PrepareExit(); + lds_ = nullptr; + } +} + +void Lddc::PublishPointcloud2(LidarDataQueue *queue, uint8_t index) { + while (!QueueIsEmpty(queue)) { + StoragePacket pkg; + QueuePop(queue, &pkg); + if (pkg.points.empty()) { + printf("Publish point cloud2 failed, the pkg points is empty.\n"); + continue; + } + + PointCloud2 cloud; + uint64_t timestamp = 0; + InitPointcloud2Msg(pkg, cloud, timestamp); + PublishPointcloud2Data(index, timestamp, cloud); + } +} + +void Lddc::PublishCustomPointcloud(LidarDataQueue *queue, uint8_t index) { + while (!QueueIsEmpty(queue)) { + StoragePacket pkg; + QueuePop(queue, &pkg); + if (pkg.points.empty()) { + printf("Publish custom point cloud failed, the pkg points is empty.\n"); + continue; + } + + CustomMsg livox_msg; + InitCustomMsg(livox_msg, pkg, index); + FillPointsToCustomMsg(livox_msg, pkg); + PublishCustomPointData(livox_msg, index); + } +} + +void Lddc::PublishPointcloud2AndCustomMsg(LidarDataQueue *queue, + uint8_t index) { + // printf("12312312321\n"); + while (!QueueIsEmpty(queue)) { + StoragePacket pkg; + QueuePop(queue, &pkg); + if (pkg.points.empty()) { + printf("Publish point cloud failed, the pkg points is empty.\n"); + continue; + } + + PointCloud2 cloud; + uint64_t timestamp = 0; + InitPointcloud2Msg(pkg, cloud, timestamp); + PublishPointcloud2Data(index, timestamp, cloud); + + CustomMsg livox_msg; + InitCustomMsg(livox_msg, pkg, index); + FillPointsToCustomMsg(livox_msg, pkg); + PublishCustomPointData(livox_msg, index); + } +} + +/* for pcl::pxyzi */ +void Lddc::PublishPclMsg(LidarDataQueue *queue, uint8_t index) { +#ifdef BUILDING_ROS2 + static bool first_log = true; + if (first_log) { + std::cout + << "error: message type 'pcl::PointCloud' is NOT supported in ROS2, " + << "please modify the 'xfer_format' field in the launch file" + << std::endl; + } + first_log = false; + return; +#endif + while (!QueueIsEmpty(queue)) { + StoragePacket pkg; + QueuePop(queue, &pkg); + if (pkg.points.empty()) { + printf("Publish point cloud failed, the pkg points is empty.\n"); + continue; + } + + PointCloud cloud; + uint64_t timestamp = 0; + InitPclMsg(pkg, cloud, timestamp); + FillPointsToPclMsg(pkg, cloud); + PublishPclData(index, timestamp, cloud); + } + return; +} + +void Lddc::InitPointcloud2MsgHeader(PointCloud2 &cloud) { + cloud.header.frame_id.assign(frame_id_); + cloud.height = 1; + cloud.width = 0; + cloud.fields.resize(7); + cloud.fields[0].offset = 0; + cloud.fields[0].name = "x"; + cloud.fields[0].count = 1; + cloud.fields[0].datatype = PointField::FLOAT32; + cloud.fields[1].offset = 4; + cloud.fields[1].name = "y"; + cloud.fields[1].count = 1; + cloud.fields[1].datatype = PointField::FLOAT32; + cloud.fields[2].offset = 8; + cloud.fields[2].name = "z"; + cloud.fields[2].count = 1; + cloud.fields[2].datatype = PointField::FLOAT32; + cloud.fields[3].offset = 12; + cloud.fields[3].name = "intensity"; + cloud.fields[3].count = 1; + cloud.fields[3].datatype = PointField::FLOAT32; + cloud.fields[4].offset = 16; + cloud.fields[4].name = "tag"; + cloud.fields[4].count = 1; + cloud.fields[4].datatype = PointField::UINT8; + cloud.fields[5].offset = 17; + cloud.fields[5].name = "line"; + cloud.fields[5].count = 1; + cloud.fields[5].datatype = PointField::UINT8; + cloud.fields[6].offset = 18; + cloud.fields[6].name = "timestamp"; + cloud.fields[6].count = 1; + cloud.fields[6].datatype = PointField::FLOAT64; + cloud.point_step = sizeof(LivoxPointXyzrtlt); +} + +void Lddc::InitPointcloud2Msg(const StoragePacket &pkg, PointCloud2 &cloud, + uint64_t ×tamp) { + InitPointcloud2MsgHeader(cloud); + + cloud.point_step = sizeof(LivoxPointXyzrtlt); + + cloud.width = pkg.points_num; + cloud.row_step = cloud.width * cloud.point_step; + + cloud.is_bigendian = false; + cloud.is_dense = true; + + if (!pkg.points.empty()) { + timestamp = pkg.base_time; + } + + cloud.header.stamp = rclcpp::Time(timestamp); + + std::vector points; + for (size_t i = 0; i < pkg.points_num; ++i) { + LivoxPointXyzrtlt point; + point.x = pkg.points[i].x; + point.y = pkg.points[i].y; + point.z = pkg.points[i].z; + point.reflectivity = pkg.points[i].intensity; + point.tag = pkg.points[i].tag; + point.line = pkg.points[i].line; + point.timestamp = static_cast(pkg.points[i].offset_time); + points.push_back(std::move(point)); + } + cloud.data.resize(pkg.points_num * sizeof(LivoxPointXyzrtlt)); + memcpy(cloud.data.data(), points.data(), + pkg.points_num * sizeof(LivoxPointXyzrtlt)); +} + +void Lddc::PublishPointcloud2Data(const uint8_t index, const uint64_t timestamp, + const PointCloud2 &cloud) { + Publisher::SharedPtr publisher_ptr; + if (kAllMsg == transfer_format_) { + publisher_ptr = std::dynamic_pointer_cast>( + GetCurrentPublisher2(index)); + } else { + publisher_ptr = std::dynamic_pointer_cast>( + GetCurrentPublisher(index)); + } + if (kOutputToRos == output_type_) { + publisher_ptr->publish(cloud); + } else { + } +} + +void Lddc::InitCustomMsg(CustomMsg &livox_msg, const StoragePacket &pkg, + uint8_t index) { + livox_msg.header.frame_id.assign(frame_id_); + + uint64_t timestamp = 0; + if (!pkg.points.empty()) { + timestamp = pkg.base_time; + } + livox_msg.timebase = timestamp; + + livox_msg.header.stamp = rclcpp::Time(timestamp); + + livox_msg.point_num = pkg.points_num; + if (lds_->lidars_[index].lidar_type == kLivoxLidarType) { + livox_msg.lidar_id = lds_->lidars_[index].handle; + } else { + printf("Init custom msg lidar id failed, the index:%u.\n", index); + livox_msg.lidar_id = 0; + } +} + +void Lddc::FillPointsToCustomMsg(CustomMsg &livox_msg, + const StoragePacket &pkg) { + uint32_t points_num = pkg.points_num; + const std::vector &points = pkg.points; + for (uint32_t i = 0; i < points_num; ++i) { + CustomPoint point; + point.x = points[i].x; + point.y = points[i].y; + point.z = points[i].z; + point.reflectivity = points[i].intensity; + point.tag = points[i].tag; + point.line = points[i].line; + point.offset_time = + static_cast(points[i].offset_time - pkg.base_time); + + livox_msg.points.push_back(std::move(point)); + } +} + +void Lddc::PublishCustomPointData(const CustomMsg &livox_msg, + const uint8_t index) { + Publisher::SharedPtr publisher_ptr = + std::dynamic_pointer_cast>( + GetCurrentPublisher(index)); + + if (kOutputToRos == output_type_) { + publisher_ptr->publish(livox_msg); + } else { + } +} + +void Lddc::InitPclMsg(const StoragePacket &pkg, PointCloud &cloud, + uint64_t ×tamp) { + std::cout << "warning: pcl::PointCloud is not supported in ROS2, " + << "please check code logic" << std::endl; + return; +} + +void Lddc::FillPointsToPclMsg(const StoragePacket &pkg, PointCloud &pcl_msg) { + std::cout << "warning: pcl::PointCloud is not supported in ROS2, " + << "please check code logic" << std::endl; + return; +} + +void Lddc::PublishPclData(const uint8_t index, const uint64_t timestamp, + const PointCloud &cloud) { + std::cout << "warning: pcl::PointCloud is not supported in ROS2, " + << "please check code logic" << std::endl; + return; +} + +void Lddc::InitImuMsg(const ImuData &imu_data, ImuMsg &imu_msg, + uint64_t ×tamp) { + imu_msg.header.frame_id = "livox_frame"; + + timestamp = imu_data.time_stamp; + imu_msg.header.stamp = rclcpp::Time(timestamp); // to ros time stamp + + imu_msg.angular_velocity.x = imu_data.gyro_x; + imu_msg.angular_velocity.y = imu_data.gyro_y; + imu_msg.angular_velocity.z = imu_data.gyro_z; + imu_msg.linear_acceleration.x = imu_data.acc_x; + imu_msg.linear_acceleration.y = imu_data.acc_y; + imu_msg.linear_acceleration.z = imu_data.acc_z; +} + +void Lddc::PublishImuData(LidarImuDataQueue &imu_data_queue, + const uint8_t index) { + ImuData imu_data; + if (!imu_data_queue.Pop(imu_data)) { + // printf("Publish imu data failed, imu data queue pop failed.\n"); + return; + } + + ImuMsg imu_msg; + uint64_t timestamp; + InitImuMsg(imu_data, imu_msg, timestamp); + + Publisher::SharedPtr publisher_ptr = + std::dynamic_pointer_cast>( + GetCurrentImuPublisher(index)); + + if (kOutputToRos == output_type_) { + publisher_ptr->publish(imu_msg); + } else { + } +} + +std::shared_ptr +Lddc::CreatePublisher(uint8_t msg_type, std::string &topic_name, + uint32_t queue_size) { + if (kPointCloud2Msg == msg_type) { + DRIVER_INFO(*cur_node_, "%s publish use PointCloud2 format", + topic_name.c_str()); + return cur_node_->create_publisher(topic_name, queue_size); + } else if (kLivoxCustomMsg == msg_type) { + DRIVER_INFO(*cur_node_, "%s publish use livox custom format", + topic_name.c_str()); + return cur_node_->create_publisher(topic_name, queue_size); + } else if (kLivoxImuMsg == msg_type) { + DRIVER_INFO(*cur_node_, "%s publish use imu format", topic_name.c_str()); + return cur_node_->create_publisher(topic_name, queue_size); + } else { + PublisherPtr null_publisher(nullptr); + return null_publisher; + } +} + +std::shared_ptr +Lddc::GetCurrentPublisher(uint8_t handle) { + uint32_t queue_size = kMinEthPacketQueueSize; + if (use_multi_topic_) { + if (!private_pub_[handle]) { + char name_str[48]; + memset(name_str, 0, sizeof(name_str)); + + std::string ip_string = IpNumToString(lds_->lidars_[handle].handle); + snprintf(name_str, sizeof(name_str), "livox/lidar_%s", + ReplacePeriodByUnderline(ip_string).c_str()); + std::string topic_name(name_str); + queue_size = queue_size * 2; // queue size is 64 for only one lidar + private_pub_[handle] = + CreatePublisher(transfer_format_, topic_name, queue_size); + } + return private_pub_[handle]; + } else { + if (!global_pub_) { + std::string topic_name("livox/lidar"); + queue_size = queue_size * 8; // shared queue size is 256, for all lidars + if (kAllMsg == transfer_format_) { + global_pub_ = + cur_node_->create_publisher(topic_name, queue_size); + global_pub_2_ = cur_node_->create_publisher( + "livox/lidar/pointcloud", queue_size); + DRIVER_INFO(*cur_node_, "%s publish use pointcloud2 and custom format", + topic_name.c_str()); + } else { + global_pub_ = CreatePublisher(transfer_format_, topic_name, queue_size); + } + } + return global_pub_; + } +} + +std::shared_ptr +Lddc::GetCurrentPublisher2(uint8_t handle) { + uint32_t queue_size = kMinEthPacketQueueSize; + if (use_multi_topic_) { + if (!private_pub_[handle]) { + char name_str[48]; + memset(name_str, 0, sizeof(name_str)); + + std::string ip_string = IpNumToString(lds_->lidars_[handle].handle); + snprintf(name_str, sizeof(name_str), "livox/lidar_%s", + ReplacePeriodByUnderline(ip_string).c_str()); + std::string topic_name(name_str); + queue_size = queue_size * 2; // queue size is 64 for only one lidar + private_pub_[handle] = + CreatePublisher(transfer_format_, topic_name, queue_size); + } + return private_pub_[handle]; + } else { + if (!global_pub_) { + std::string topic_name("livox/lidar"); + queue_size = queue_size * 8; // shared queue size is 256, for all lidars + if (kAllMsg == transfer_format_) { + global_pub_ = + cur_node_->create_publisher(topic_name, queue_size); + global_pub_2_ = cur_node_->create_publisher( + "livox/lidar/pointcloud", queue_size); + DRIVER_INFO(*cur_node_, "%s publish use pointcloud2 and custom format", + topic_name.c_str()); + } else { + global_pub_ = CreatePublisher(transfer_format_, topic_name, queue_size); + } + } + return global_pub_2_; + } +} + +std::shared_ptr +Lddc::GetCurrentImuPublisher(uint8_t handle) { + uint32_t queue_size = kMinEthPacketQueueSize; + if (use_multi_topic_) { + if (!private_imu_pub_[handle]) { + char name_str[48]; + memset(name_str, 0, sizeof(name_str)); + std::string ip_string = IpNumToString(lds_->lidars_[handle].handle); + snprintf(name_str, sizeof(name_str), "livox/imu_%s", + ReplacePeriodByUnderline(ip_string).c_str()); + std::string topic_name(name_str); + queue_size = queue_size * 2; // queue size is 64 for only one lidar + private_imu_pub_[handle] = + CreatePublisher(kLivoxImuMsg, topic_name, queue_size); + } + return private_imu_pub_[handle]; + } else { + if (!global_imu_pub_) { + std::string topic_name("livox/imu"); + queue_size = queue_size * 8; // shared queue size is 256, for all lidars + global_imu_pub_ = CreatePublisher(kLivoxImuMsg, topic_name, queue_size); + } + return global_imu_pub_; + } +} + +void Lddc::CreateBagFile(const std::string &file_name) {} + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/lddc.h b/src/rm_driver/livox_ros_driver2/src/src/lddc.h new file mode 100644 index 0000000..6bd8a8f --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/lddc.h @@ -0,0 +1,153 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER2_LDDC_H_ +#define LIVOX_ROS_DRIVER2_LDDC_H_ + +#include "comm/comm.h" +#include "include/livox_ros_driver2.h" + +#include "driver_node.h" +#include "lds.h" +#include + +namespace livox_ros { + +/** Send pointcloud message Data to ros subscriber or save them in rosbag file + */ +typedef enum { + kOutputToRos = 0, + kOutputToRosBagFile = 1, +} DestinationOfMessageOutput; + +/** The message type of transfer */ +typedef enum { + kPointCloud2Msg = 0, + kLivoxCustomMsg = 1, + kPclPxyziMsg = 2, + kLivoxImuMsg = 3, + kAllMsg = 4, +} TransferType; + +/** Type-Definitions based on ROS versions */ +template using Publisher = rclcpp::Publisher; +using PublisherPtr = std::shared_ptr; +using PointCloud2 = sensor_msgs::msg::PointCloud2; +using PointField = sensor_msgs::msg::PointField; +using CustomMsg = livox_ros_driver2::msg::CustomMsg; +using CustomPoint = livox_ros_driver2::msg::CustomPoint; +using ImuMsg = sensor_msgs::msg::Imu; + +using PointCloud = pcl::PointCloud; + +class DriverNode; + +class Lddc final { +public: + Lddc(int format, int multi_topic, int data_src, int output_type, double frq, + std::string &frame_id); + ~Lddc(); + + int RegisterLds(Lds *lds); + void DistributePointCloudData(void); + void DistributeImuData(void); + void CreateBagFile(const std::string &file_name); + void PrepareExit(void); + + uint8_t GetTransferFormat(void) { return transfer_format_; } + uint8_t IsMultiTopic(void) { return use_multi_topic_; } + void SetRosNode(livox_ros::DriverNode *node) { cur_node_ = node; } + + // void SetRosPub(ros::Publisher *pub) { global_pub_ = pub; }; // NOT USED + void SetPublishFrq(uint32_t frq) { publish_frq_ = frq; } + +public: + Lds *lds_; + +private: + void PollingLidarPointCloudData(uint8_t index, LidarDevice *lidar); + void PollingLidarImuData(uint8_t index, LidarDevice *lidar); + + void PublishPointcloud2(LidarDataQueue *queue, uint8_t index); + void PublishCustomPointcloud(LidarDataQueue *queue, uint8_t index); + void PublishPointcloud2AndCustomMsg(LidarDataQueue *queue, uint8_t index); + void PublishPclMsg(LidarDataQueue *queue, uint8_t index); + + void PublishImuData(LidarImuDataQueue &imu_data_queue, const uint8_t index); + + void InitPointcloud2MsgHeader(PointCloud2 &cloud); + void InitPointcloud2Msg(const StoragePacket &pkg, PointCloud2 &cloud, + uint64_t ×tamp); + void PublishPointcloud2Data(const uint8_t index, uint64_t timestamp, + const PointCloud2 &cloud); + + + void InitCustomMsg(CustomMsg &livox_msg, const StoragePacket &pkg, + uint8_t index); + void FillPointsToCustomMsg(CustomMsg &livox_msg, const StoragePacket &pkg); + void PublishCustomPointData(const CustomMsg &livox_msg, const uint8_t index); + + void InitPclMsg(const StoragePacket &pkg, PointCloud &cloud, + uint64_t ×tamp); + void FillPointsToPclMsg(const StoragePacket &pkg, PointCloud &pcl_msg); + void PublishPclData(const uint8_t index, const uint64_t timestamp, + const PointCloud &cloud); + + void InitImuMsg(const ImuData &imu_data, ImuMsg &imu_msg, + uint64_t ×tamp); + + void FillPointsToPclMsg(PointCloud &pcl_msg, LivoxPointXyzrtlt *src_point, + uint32_t num); + void FillPointsToCustomMsg(CustomMsg &livox_msg, LivoxPointXyzrtlt *src_point, + uint32_t num, uint32_t offset_time, + uint32_t point_interval, uint32_t echo_num); + + PublisherPtr CreatePublisher(uint8_t msg_type, std::string &topic_name, + uint32_t queue_size); + + PublisherPtr GetCurrentPublisher(uint8_t index); + PublisherPtr GetCurrentPublisher2(uint8_t index); + PublisherPtr GetCurrentImuPublisher(uint8_t index); + +private: + uint8_t transfer_format_; + uint8_t use_multi_topic_; + uint8_t data_src_; + uint8_t output_type_; + double publish_frq_; + uint32_t publish_period_ns_; + std::string frame_id_; + + PublisherPtr private_pub_[kMaxSourceLidar]; + PublisherPtr global_pub_; + PublisherPtr global_pub_2_; + PublisherPtr private_imu_pub_[kMaxSourceLidar]; + PublisherPtr global_imu_pub_; + + livox_ros::DriverNode *cur_node_; +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER2_LDDC_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/lds.cpp b/src/rm_driver/livox_ros_driver2/src/src/lds.cpp new file mode 100644 index 0000000..ca98462 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/lds.cpp @@ -0,0 +1,200 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include +#include +#include +#include +#include +#include + +#include "lds.h" +#include "comm/ldq.h" + +namespace livox_ros { + +CacheIndex Lds::cache_index_; + +/* Member function --------------------------------------------------------- */ +Lds::Lds(const double publish_freq, const uint8_t data_src) + : lidar_count_(kMaxSourceLidar), + pcd_semaphore_(0), + imu_semaphore_(0), + publish_freq_(publish_freq), + data_src_(data_src), + request_exit_(false) { + ResetLds(data_src_); +} + +Lds::~Lds() { + lidar_count_ = 0; + ResetLds(0); + printf("lds destory!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); +} + +void Lds::ResetLidar(LidarDevice *lidar, uint8_t data_src) { + //cache_index_.ResetIndex(lidar); + DeInitQueue(&lidar->data); + lidar->imu_data.Clear(); + + lidar->data_src = data_src; + lidar->connect_state = kConnectStateOff; +} + +void Lds::SetLidarDataSrc(LidarDevice *lidar, uint8_t data_src) { + lidar->data_src = data_src; +} + +void Lds::ResetLds(uint8_t data_src) { + lidar_count_ = kMaxSourceLidar; + for (uint32_t i = 0; i < kMaxSourceLidar; i++) { + ResetLidar(&lidars_[i], data_src); + } +} + +void Lds::RequestExit() { + request_exit_ = true; +} + +bool Lds::IsAllQueueEmpty() { + for (int i = 0; i < lidar_count_; i++) { + if (!QueueIsEmpty(&lidars_[i].data)) { + return false; + } + } + return true; +} + +bool Lds::IsAllQueueReadStop() { + for (int i = 0; i < lidar_count_; i++) { + uint32_t data_size = QueueUsedSize(&lidars_[i].data); + if (data_size) { + return false; + } + } + return true; +} + +void Lds::StorageImuData(ImuData* imu_data) { + uint32_t device_num = 0; + if (imu_data->lidar_type == kLivoxLidarType) { + device_num = imu_data->handle; + } else { + printf("Storage imu data failed, unknown lidar type:%u.\n", imu_data->lidar_type); + return; + } + + uint8_t index = 0; + int ret = cache_index_.GetIndex(imu_data->lidar_type, device_num, index); + if (ret != 0) { + printf("Storage point data failed, can not get index, lidar type:%u, device_num:%u.\n", imu_data->lidar_type, device_num); + return; + } + + LidarDevice *p_lidar = &lidars_[index]; + LidarImuDataQueue* imu_queue = &p_lidar->imu_data; + imu_queue->Push(imu_data); + if (!imu_queue->Empty()) { + if (imu_semaphore_.GetCount() <= 0) { + imu_semaphore_.Signal(); + } + } +} + +void Lds::StorageLvxPointData(PointFrame* frame) { + if (frame == nullptr) { + return; + } + + uint8_t lidar_number = frame->lidar_num; + for (uint i = 0; i < lidar_number; ++i) { + PointPacket& lidar_point = frame->lidar_point[i]; + + uint64_t base_time = frame->base_time[i]; + uint8_t index = 0; + int8_t ret = cache_index_.LvxGetIndex(lidar_point.lidar_type, lidar_point.handle, index); + if (ret != 0) { + printf("Storage lvx point data failed, lidar type:%u, device num:%u.\n", lidar_point.lidar_type, lidar_point.handle); + continue; + } + + lidars_[index].connect_state = kConnectStateSampling; + + PushLidarData(&lidar_point, index, base_time); + } +} + +void Lds::StoragePointData(PointFrame* frame) { + if (frame == nullptr) { + return; + } + + uint8_t lidar_number = frame->lidar_num; + for (uint i = 0; i < lidar_number; ++i) { + PointPacket& lidar_point = frame->lidar_point[i]; + //printf("StoragePointData, lidar_type:%u, point_num:%lu.\n", lidar_point.lidar_type, lidar_point.points_num); + + uint64_t base_time = frame->base_time[i]; + + uint8_t index = 0; + int8_t ret = cache_index_.GetIndex(lidar_point.lidar_type, lidar_point.handle, index); + if (ret != 0) { + printf("Storage point data failed, lidar type:%u, handle:%u.\n", lidar_point.lidar_type, lidar_point.handle); + continue; + } + PushLidarData(&lidar_point, index, base_time); + } +} + +void Lds::PushLidarData(PointPacket* lidar_data, const uint8_t index, const uint64_t base_time) { + if (lidar_data == nullptr) { + return; + } + + LidarDevice *p_lidar = &lidars_[index]; + LidarDataQueue *queue = &p_lidar->data; + + if (nullptr == queue->storage_packet) { + uint32_t queue_size = CalculatePacketQueueSize(publish_freq_); + InitQueue(queue, queue_size); + printf("Lidar[%u] storage queue size: %u\n", index, queue_size); + } + + if (!QueueIsFull(queue)) { + QueuePushAny(queue, (uint8_t *)lidar_data, base_time); + if (!QueueIsEmpty(queue)) { + if (pcd_semaphore_.GetCount() <= 0) { + pcd_semaphore_.Signal(); + } + } + } else { + if (pcd_semaphore_.GetCount() <= 0) { + pcd_semaphore_.Signal(); + } + } +} + +void Lds::PrepareExit(void) {} + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/lds.h b/src/rm_driver/livox_ros_driver2/src/src/lds.h new file mode 100644 index 0000000..c61eeea --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/lds.h @@ -0,0 +1,83 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +// livox lidar data source + +#ifndef LIVOX_ROS_DRIVER_LDS_H_ +#define LIVOX_ROS_DRIVER_LDS_H_ + +#include + +#include "comm/semaphore.h" +#include "comm/comm.h" +#include "comm/cache_index.h" + +namespace livox_ros { +/** + * Lidar data source abstract. + */ +class Lds { + public: + Lds(const double publish_freq, const uint8_t data_src); + virtual ~Lds(); + + void StorageImuData(ImuData* imu_data); + void StoragePointData(PointFrame* frame); + void StorageLvxPointData(PointFrame* frame); + + int8_t GetHandle(const uint8_t lidar_type, const PointPacket* lidar_point); + void PushLidarData(PointPacket* lidar_data, const uint8_t index, const uint64_t base_time); + + static void ResetLidar(LidarDevice *lidar, uint8_t data_src); + static void SetLidarDataSrc(LidarDevice *lidar, uint8_t data_src); + void ResetLds(uint8_t data_src); + + void RequestExit(); + + bool IsAllQueueEmpty(); + bool IsAllQueueReadStop(); + + void CleanRequestExit() { request_exit_ = false; } + bool IsRequestExit() { return request_exit_; } + virtual void PrepareExit(void); + + // get publishing frequency + double GetLdsFrequency() { return publish_freq_; } + + public: + uint8_t lidar_count_; /**< Lidar access handle. */ + LidarDevice lidars_[kMaxSourceLidar]; /**< The index is the handle */ + Semaphore pcd_semaphore_; + Semaphore imu_semaphore_; + static CacheIndex cache_index_; + protected: + double publish_freq_; + uint8_t data_src_; + private: + volatile bool request_exit_; +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_LDS_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/lds_lidar.cpp b/src/rm_driver/livox_ros_driver2/src/src/lds_lidar.cpp new file mode 100644 index 0000000..c597d69 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/lds_lidar.cpp @@ -0,0 +1,213 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "lds_lidar.h" + +#include +#include +#include +#include +#include + + +#ifdef WIN32 +#include +#include +#pragma comment(lib, "Ws2_32.lib") +#else +#include +#include +#include +#include + +#endif // WIN32 + +#include "comm/comm.h" +#include "comm/pub_handler.h" + +#include "parse_cfg_file/parse_cfg_file.h" +#include "parse_cfg_file/parse_livox_lidar_cfg.h" + +#include "call_back/lidar_common_callback.h" +#include "call_back/livox_lidar_callback.h" + +using namespace std; + +namespace livox_ros { + +/** Const varible ------------------------------------------------------------*/ +/** For callback use only */ +LdsLidar *g_lds_ldiar = nullptr; + +/** Global function for common use -------------------------------------------*/ + +/** Lds lidar function -------------------------------------------------------*/ +LdsLidar::LdsLidar(double publish_freq) + : Lds(publish_freq, kSourceRawLidar), auto_connect_mode_(true), + whitelist_count_(0), is_initialized_(false) { + memset(broadcast_code_whitelist_, 0, sizeof(broadcast_code_whitelist_)); + ResetLdsLidar(); +} + +LdsLidar::~LdsLidar() {} + +void LdsLidar::ResetLdsLidar(void) { ResetLds(kSourceRawLidar); } + +bool LdsLidar::InitLdsLidar(const std::string &path_name) { + if (is_initialized_) { + printf("Lds is already inited!\n"); + return false; + } + + if (g_lds_ldiar == nullptr) { + g_lds_ldiar = this; + } + + path_ = path_name; + if (!InitLidars()) { + return false; + } + SetLidarPubHandle(); + if (!Start()) { + return false; + } + is_initialized_ = true; + return true; +} + +bool LdsLidar::InitLidars() { + if (!ParseSummaryConfig()) { + return false; + } + std::cout << "config lidar type: " + << static_cast(lidar_summary_info_.lidar_type) << std::endl; + + if (lidar_summary_info_.lidar_type & kLivoxLidarType) { + if (!InitLivoxLidar()) { + return false; + } + } + return true; +} + +bool LdsLidar::Start() { + if (lidar_summary_info_.lidar_type & kLivoxLidarType) { + if (!LivoxLidarStart()) { + return false; + } + } + return true; +} + +bool LdsLidar::ParseSummaryConfig() { + return ParseCfgFile(path_).ParseSummaryInfo(lidar_summary_info_); +} + +bool LdsLidar::InitLivoxLidar() { + DisableLivoxSdkConsoleLogger(); + + // parse user config + LivoxLidarConfigParser parser(path_); + std::vector user_configs; + if (!parser.Parse(user_configs)) { + std::cout << "failed to parse user-defined config" << std::endl; + } + + // SDK initialization + if (!LivoxLidarSdkInit(path_.c_str())) { + std::cout << "Failed to init livox lidar sdk." << std::endl; + return false; + } + + // fill in lidar devices + for (auto &config : user_configs) { + uint8_t index = 0; + int8_t ret = g_lds_ldiar->cache_index_.GetFreeIndex(kLivoxLidarType, + config.handle, index); + if (ret != 0) { + std::cout << "failed to get free index, lidar ip: " + << IpNumToString(config.handle) << std::endl; + continue; + } + LidarDevice *p_lidar = &(g_lds_ldiar->lidars_[index]); + p_lidar->lidar_type = kLivoxLidarType; + p_lidar->livox_config = config; + p_lidar->handle = config.handle; + + LidarExtParameter lidar_param; + lidar_param.handle = config.handle; + lidar_param.lidar_type = kLivoxLidarType; + if (config.pcl_data_type == kLivoxLidarCartesianCoordinateLowData) { + // temporary resolution + lidar_param.param.roll = config.extrinsic_param.roll; + lidar_param.param.pitch = config.extrinsic_param.pitch; + lidar_param.param.yaw = config.extrinsic_param.yaw; + lidar_param.param.x = config.extrinsic_param.x / 10; + lidar_param.param.y = config.extrinsic_param.y / 10; + lidar_param.param.z = config.extrinsic_param.z / 10; + } else { + lidar_param.param.roll = config.extrinsic_param.roll; + lidar_param.param.pitch = config.extrinsic_param.pitch; + lidar_param.param.yaw = config.extrinsic_param.yaw; + lidar_param.param.x = config.extrinsic_param.x; + lidar_param.param.y = config.extrinsic_param.y; + lidar_param.param.z = config.extrinsic_param.z; + } + pub_handler().AddLidarsExtParam(lidar_param); + } + + SetLivoxLidarInfoChangeCallback(LivoxLidarCallback::LidarInfoChangeCallback, + g_lds_ldiar); + return true; +} + +void LdsLidar::SetLidarPubHandle() { + pub_handler().SetPointCloudsCallback(LidarCommonCallback::OnLidarPointClounCb, + g_lds_ldiar); + pub_handler().SetImuDataCallback(LidarCommonCallback::LidarImuDataCallback, + g_lds_ldiar); + + double publish_freq = Lds::GetLdsFrequency(); + pub_handler().SetPointCloudConfig(publish_freq); +} + +bool LdsLidar::LivoxLidarStart() { return true; } + +int LdsLidar::DeInitLdsLidar(void) { + if (!is_initialized_) { + printf("LiDAR data source is not exit"); + return -1; + } + + if (lidar_summary_info_.lidar_type & kLivoxLidarType) { + LivoxLidarSdkUninit(); + printf("Livox Lidar SDK Deinit completely!\n"); + } + + return 0; +} + +void LdsLidar::PrepareExit(void) { DeInitLdsLidar(); } + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/lds_lidar.h b/src/rm_driver/livox_ros_driver2/src/src/lds_lidar.h new file mode 100644 index 0000000..b35c9c2 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/lds_lidar.h @@ -0,0 +1,95 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +/** Livox LiDAR data source, data from dependent lidar */ + +#ifndef LIVOX_ROS_DRIVER_LDS_LIDAR_H_ +#define LIVOX_ROS_DRIVER_LDS_LIDAR_H_ + +#include +#include +#include + +#include "lds.h" +#include "comm/comm.h" + +#include "livox_lidar_api.h" +#include "livox_lidar_def.h" + +#include "rapidjson/document.h" + +namespace livox_ros { + +class LdsLidar final : public Lds { + public: + static LdsLidar *GetInstance(double publish_freq) { + printf("LdsLidar *GetInstance\n"); + static LdsLidar lds_lidar(publish_freq); + return &lds_lidar; + } + + bool InitLdsLidar(const std::string& path_name); + bool Start(); + + int DeInitLdsLidar(void); + private: + LdsLidar(double publish_freq); + LdsLidar(const LdsLidar &) = delete; + ~LdsLidar(); + LdsLidar &operator=(const LdsLidar &) = delete; + + bool ParseSummaryConfig(); + + bool InitLidars(); + bool InitLivoxLidar(); // for new SDK + + bool LivoxLidarStart(); + + void ResetLdsLidar(void); + + void SetLidarPubHandle(); + + // auto connect mode + void EnableAutoConnectMode(void) { auto_connect_mode_ = true; } + void DisableAutoConnectMode(void) { auto_connect_mode_ = false; } + bool IsAutoConnectMode(void) { return auto_connect_mode_; } + + virtual void PrepareExit(void); + + public: + std::mutex config_mutex_; + + private: + std::string path_; + LidarSummaryInfo lidar_summary_info_; + + bool auto_connect_mode_; + uint32_t whitelist_count_; + volatile bool is_initialized_; + char broadcast_code_whitelist_[kMaxLidarCount][kBroadcastCodeSize]; +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_LDS_LIDAR_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/livox_ros_driver2.cpp b/src/rm_driver/livox_ros_driver2/src/src/livox_ros_driver2.cpp new file mode 100644 index 0000000..8f60afb --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/livox_ros_driver2.cpp @@ -0,0 +1,137 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include +#include +#include +#include +#include + + +#include "driver_node.h" +#include "include/livox_ros_driver2.h" +#include "include/ros_headers.h" +#include "lddc.h" +#include "lds_lidar.h" + + +using namespace livox_ros; + +namespace livox_ros { +DriverNode::DriverNode(const rclcpp::NodeOptions &node_options) + : Node("livox_driver_node", node_options) { + DRIVER_INFO(*this, "Livox Ros Driver2 Version: %s", + LIVOX_ROS_DRIVER2_VERSION_STRING); + + /** Init default system parameter */ + int xfer_format = kPointCloud2Msg; + int multi_topic = 0; + int data_src = kSourceRawLidar; + double publish_freq = 10.0; /* Hz */ + int output_type = kOutputToRos; + std::string frame_id; + + this->declare_parameter("xfer_format", xfer_format); + this->declare_parameter("multi_topic", 0); + this->declare_parameter("data_src", data_src); + this->declare_parameter("publish_freq", 10.0); + this->declare_parameter("output_data_type", output_type); + this->declare_parameter("frame_id", "frame_default"); + this->declare_parameter("user_config_path", "path_default"); + this->declare_parameter("cmdline_input_bd_code", "000000000000001"); + this->declare_parameter("lvx_file_path", "/home/livox/livox_test.lvx"); + + this->get_parameter("xfer_format", xfer_format); + this->get_parameter("multi_topic", multi_topic); + this->get_parameter("data_src", data_src); + this->get_parameter("publish_freq", publish_freq); + this->get_parameter("output_data_type", output_type); + this->get_parameter("frame_id", frame_id); + + if (publish_freq > 100.0) { + publish_freq = 100.0; + } else if (publish_freq < 0.5) { + publish_freq = 0.5; + } else { + publish_freq = publish_freq; + } + + future_ = exit_signal_.get_future(); + + /** Lidar data distribute control and lidar data source set */ + lddc_ptr_ = std::make_unique(xfer_format, multi_topic, data_src, + output_type, publish_freq, frame_id); + lddc_ptr_->SetRosNode(this); + + if (data_src == kSourceRawLidar) { + DRIVER_INFO(*this, "Data Source is raw lidar."); + + std::string user_config_path; + this->get_parameter("user_config_path", user_config_path); + DRIVER_INFO(*this, "Config file : %s", user_config_path.c_str()); + + std::string cmdline_bd_code; + this->get_parameter("cmdline_input_bd_code", cmdline_bd_code); + + LdsLidar *read_lidar = LdsLidar::GetInstance(publish_freq); + lddc_ptr_->RegisterLds(static_cast(read_lidar)); + + if ((read_lidar->InitLdsLidar(user_config_path))) { + DRIVER_INFO(*this, "Init lds lidar success!"); + } else { + DRIVER_ERROR(*this, "Init lds lidar fail!"); + } + } else { + DRIVER_ERROR(*this, "Invalid data src (%d), please check the launch file", + data_src); + } + + pointclouddata_poll_thread_ = std::make_shared( + &DriverNode::PointCloudDataPollThread, this); + imudata_poll_thread_ = + std::make_shared(&DriverNode::ImuDataPollThread, this); +} + +} // namespace livox_ros + +#include +RCLCPP_COMPONENTS_REGISTER_NODE(livox_ros::DriverNode) + +void DriverNode::PointCloudDataPollThread() { + std::future_status status; + std::this_thread::sleep_for(std::chrono::seconds(3)); + do { + lddc_ptr_->DistributePointCloudData(); + status = future_.wait_for(std::chrono::microseconds(0)); + } while (status == std::future_status::timeout); +} + +void DriverNode::ImuDataPollThread() { + std::future_status status; + std::this_thread::sleep_for(std::chrono::seconds(3)); + do { + lddc_ptr_->DistributeImuData(); + status = future_.wait_for(std::chrono::microseconds(0)); + } while (status == std::future_status::timeout); +} diff --git a/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_cfg_file.cpp b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_cfg_file.cpp new file mode 100644 index 0000000..d967087 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_cfg_file.cpp @@ -0,0 +1,67 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "parse_cfg_file.h" + +#include +#include +#include + +namespace livox_ros { + +ParseCfgFile::ParseCfgFile(const std::string& path) : path_(path) {} + +bool ParseCfgFile::ParseSummaryInfo(LidarSummaryInfo& lidar_summary_info) { + FILE* raw_file = std::fopen(path_.c_str(), "rb"); + if (!raw_file) { + std::cout << "parse summary info failed, can not open file: " << path_ << std::endl; + return false; + } + + char read_buffer[kMaxBufferSize]; + rapidjson::FileReadStream config_file(raw_file, read_buffer, sizeof(read_buffer)); + rapidjson::Document doc; + do { + if (doc.ParseStream(config_file).HasParseError()) { + break; + } + if (!doc.HasMember("lidar_summary_info") || !doc["lidar_summary_info"].IsObject()) { + break; + } + const rapidjson::Value &object = doc["lidar_summary_info"]; + if (!object.HasMember("lidar_type") || !object["lidar_type"].IsUint()) { + break; + } + lidar_summary_info.lidar_type = static_cast(object["lidar_type"].GetUint()); + std::fclose(raw_file); + return true; + } while (false); + + std::cout << "parse lidar type failed." << std::endl; + std::fclose(raw_file); + return false; +} + +} // namespace livox_ros + diff --git a/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_cfg_file.h b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_cfg_file.h new file mode 100644 index 0000000..8d2db1c --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_cfg_file.h @@ -0,0 +1,52 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_PARSE_CFG_FILE_H_ +#define LIVOX_ROS_DRIVER_PARSE_CFG_FILE_H_ + +#include "../comm/comm.h" + +#include "rapidjson/document.h" +#include "rapidjson/filereadstream.h" +#include "rapidjson/stringbuffer.h" + +#include +#include + +namespace livox_ros { + +class ParseCfgFile { + public: + explicit ParseCfgFile(const std::string& path); + ~ParseCfgFile() {} + + bool ParseSummaryInfo(LidarSummaryInfo& lidar_summary_info); + + private: + const std::string path_; +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_PARSE_CFG_FILE_H_ diff --git a/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_livox_lidar_cfg.cpp b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_livox_lidar_cfg.cpp new file mode 100644 index 0000000..9360733 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_livox_lidar_cfg.cpp @@ -0,0 +1,156 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#include "parse_livox_lidar_cfg.h" +#include + +namespace livox_ros { + +bool LivoxLidarConfigParser::Parse(std::vector &lidar_configs) { + FILE* raw_file = std::fopen(path_.c_str(), "rb"); + if (!raw_file) { + std::cout << "failed to open config file: " << path_ << std::endl; + return false; + } + + lidar_configs.clear(); + char read_buffer[kMaxBufferSize]; + rapidjson::FileReadStream config_file(raw_file, read_buffer, sizeof(read_buffer)); + rapidjson::Document doc; + + do { + if (doc.ParseStream(config_file).HasParseError()) { + std::cout << "failed to parse config jason" << std::endl; + break; + } + if (!doc.HasMember("lidar_configs") || + !doc["lidar_configs"].IsArray() || + 0 == doc["lidar_configs"].Size()) { + std::cout << "there is no user-defined config" << std::endl; + break; + } + if (!ParseUserConfigs(doc, lidar_configs)) { + std::cout << "failed to parse basic configs" << std::endl; + break; + } + return true; + } while (false); + + std::fclose(raw_file); + return false; +} + +bool LivoxLidarConfigParser::ParseUserConfigs(const rapidjson::Document &doc, + std::vector &user_configs) { + const rapidjson::Value &lidar_configs = doc["lidar_configs"]; + for (auto &config : lidar_configs.GetArray()) { + if (!config.HasMember("ip")) { + continue; + } + UserLivoxLidarConfig user_config; + + // parse user configs + user_config.handle = IpStringToNum(std::string(config["ip"].GetString())); + if (!config.HasMember("pcl_data_type")) { + user_config.pcl_data_type = -1; + } else { + user_config.pcl_data_type = static_cast(config["pcl_data_type"].GetInt()); + } + if (!config.HasMember("pattern_mode")) { + user_config.pattern_mode = -1; + } else { + user_config.pattern_mode = static_cast(config["pattern_mode"].GetInt()); + } + if (!config.HasMember("blind_spot_set")) { + user_config.blind_spot_set = -1; + } else { + user_config.blind_spot_set = static_cast(config["blind_spot_set"].GetInt()); + } + if (!config.HasMember("dual_emit_en")) { + user_config.dual_emit_en = -1; + } else { + user_config.dual_emit_en = static_cast(config["dual_emit_en"].GetInt()); + } + if (!config.HasMember("extrinsic_parameter")) { + memset(&user_config.extrinsic_param, 0, sizeof(user_config.extrinsic_param)); + } else { + auto &value = config["extrinsic_parameter"]; + if (!ParseExtrinsics(value, user_config.extrinsic_param)) { + memset(&user_config.extrinsic_param, 0, sizeof(user_config.extrinsic_param)); + std::cout << "failed to parse extrinsic parameters, ip: " + << IpNumToString(user_config.handle) << std::endl; + } + } + user_config.set_bits = 0; + user_config.get_bits = 0; + + user_configs.push_back(user_config); + } + + if (0 == user_configs.size()) { + std::cout << "no valid base configs" << std::endl; + return false; + } + std::cout << "successfully parse base config, counts: " + << user_configs.size() << std::endl; + return true; +} + +bool LivoxLidarConfigParser::ParseExtrinsics(const rapidjson::Value &value, + ExtParameter ¶m) { + if (!value.HasMember("roll")) { + param.roll = 0.0f; + } else { + param.roll = static_cast(value["roll"].GetFloat()); + } + if (!value.HasMember("pitch")) { + param.pitch = 0.0f; + } else { + param.pitch = static_cast(value["pitch"].GetFloat()); + } + if (!value.HasMember("yaw")) { + param.yaw = 0.0f; + } else { + param.yaw = static_cast(value["yaw"].GetFloat()); + } + if (!value.HasMember("x")) { + param.x = 0; + } else { + param.x = static_cast(value["x"].GetInt()); + } + if (!value.HasMember("y")) { + param.y = 0; + } else { + param.y = static_cast(value["y"].GetInt()); + } + if (!value.HasMember("z")) { + param.z = 0; + } else { + param.z = static_cast(value["z"].GetInt()); + } + + return true; +} + +} // namespace livox_ros diff --git a/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_livox_lidar_cfg.h b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_livox_lidar_cfg.h new file mode 100644 index 0000000..8219f91 --- /dev/null +++ b/src/rm_driver/livox_ros_driver2/src/src/parse_cfg_file/parse_livox_lidar_cfg.h @@ -0,0 +1,58 @@ +// +// The MIT License (MIT) +// +// Copyright (c) 2022 Livox. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. +// + +#ifndef LIVOX_ROS_DRIVER_LIVOX_LIDAR_CFG_PARSER_H_ +#define LIVOX_ROS_DRIVER_LIVOX_LIDAR_CFG_PARSER_H_ + +#include "comm/comm.h" +#include "livox_lidar_def.h" + +#include "rapidjson/document.h" +#include "rapidjson/filereadstream.h" +#include "rapidjson/stringbuffer.h" + +#include +#include +#include + +namespace livox_ros { + +class LivoxLidarConfigParser { + public: + explicit LivoxLidarConfigParser(const std::string& path) : path_(path) {} + ~LivoxLidarConfigParser() {} + + bool Parse(std::vector &lidar_configs); + + private: + bool ParseUserConfigs(const rapidjson::Document &doc, + std::vector &user_configs); + bool ParseExtrinsics(const rapidjson::Value &value, ExtParameter ¶m); + + const std::string path_; +}; + +} // namespace livox_ros + +#endif // LIVOX_ROS_DRIVER_LIVOX_LIDAR_CFG_PARSER_H_ diff --git a/src/rm_driver/rm_serial_driver/CMakeLists.txt b/src/rm_driver/rm_serial_driver/CMakeLists.txt new file mode 100644 index 0000000..bf56ffc --- /dev/null +++ b/src/rm_driver/rm_serial_driver/CMakeLists.txt @@ -0,0 +1,47 @@ +cmake_minimum_required(VERSION 3.5) +project(rm_serial_driver) + +find_package(ament_cmake REQUIRED) +find_package(rclcpp REQUIRED) +find_package(rclcpp_components REQUIRED) +find_package(std_msgs REQUIRED) +find_package(serial REQUIRED) +find_package(rm_msgs REQUIRED) + +# 构建共享库作为组件节点 +add_library(rm_serial_driver SHARED + src/rm_serial_driver.cpp + src/crc.cpp +) + +target_include_directories(rm_serial_driver PUBLIC + $ + $ +) + +ament_target_dependencies(rm_serial_driver + rclcpp + rclcpp_components + std_msgs + serial + rm_msgs +) + +# 注册节点 +rclcpp_components_register_nodes(rm_serial_driver "rm_serial_driver::RMSerialDriver") + +install(DIRECTORY launch + DESTINATION share/${PROJECT_NAME}/ +) + +install(DIRECTORY config + DESTINATION share/${PROJECT_NAME}/ +) + +install(TARGETS rm_serial_driver + ARCHIVE DESTINATION lib + LIBRARY DESTINATION lib + RUNTIME DESTINATION bin +) + +ament_package() \ No newline at end of file diff --git a/src/rm_driver/rm_serial_driver/LICENSE b/src/rm_driver/rm_serial_driver/LICENSE new file mode 100644 index 0000000..cb386d0 --- /dev/null +++ b/src/rm_driver/rm_serial_driver/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 zucheng Lv + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/rm_driver/rm_serial_driver/README.md b/src/rm_driver/rm_serial_driver/README.md new file mode 100644 index 0000000..d51babe --- /dev/null +++ b/src/rm_driver/rm_serial_driver/README.md @@ -0,0 +1,70 @@ +# rm_serial_driver + +ROS2: 适用于RM的简易上位机串口通信程序。 + +## 使用方式 + +### 1. 安装依赖 + +首先,安装所需的依赖包: + +```bash +sudo apt install ros-humble-serial-driver +``` + +### 2. 编译并安装串口库 + +克隆串口库源码并编译安装: + +```bash +git clone https://github.com/ZhaoXiangBox/serial.git +cd serial +mkdir build +cd build +cmake .. +make +sudo make install +``` + +**注意**:安装完成后可能需要重启系统。 + +### 3. 下载并编译项目 + +将项目克隆到你的ROS2工作空间中: + +```bash +cd ~/ros2_ws/src +git clone https://github.com/goldenfishs/rm_serial_driver.git +git clone https://github.com/goldenfishs/rm_msg.git # 包含所需的自定义话题消息,必须一起使用 +``` + +回到工作空间并编译: + +```bash +cd ~/ros2_ws +colcon build +source install/setup.bash +``` + +### 4. 运行程序 + +使用以下命令启动串口驱动: + +```bash +ros2 launch rm_serial_driver rm_serial_driver.launch.py +``` +使用时请将上位机控制命令发送到data_ai话题,即可将数据传给下位机,下位机发送上来的数据会发布到data_mcu和data_ref话题,其他程序可直接哪去 + +### 5. 自定义通信协议 + +如果需要自定义通信协议,可以参考 `protocol.h` 文件,修改对应的协议。同时,修改 `rm_msgs` 包中的自定义消息,注意数据顺序和数据类型。修改完成后,重新编译即可。 + +```bash +colcon build +source install/setup.bash +``` + +## 注意事项 + +- 确保在修改协议和消息后重新编译项目。 +- 如果遇到问题,请检查串口连接和权限设置。 diff --git a/src/rm_driver/rm_serial_driver/config/serial_config.yaml b/src/rm_driver/rm_serial_driver/config/serial_config.yaml new file mode 100644 index 0000000..b4eb2bc --- /dev/null +++ b/src/rm_driver/rm_serial_driver/config/serial_config.yaml @@ -0,0 +1,4 @@ +/rm_serial_driver: + ros__parameters: + device_name: /dev/ttyACM1 + baud_rate: 115200 \ No newline at end of file diff --git a/src/rm_driver/rm_serial_driver/include/rm_serial_driver/crc.hpp b/src/rm_driver/rm_serial_driver/include/rm_serial_driver/crc.hpp new file mode 100644 index 0000000..7e0b040 --- /dev/null +++ b/src/rm_driver/rm_serial_driver/include/rm_serial_driver/crc.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include +#include + +#define CRC16_INIT 0xFFFF + +namespace crc16 { + +uint16_t CRC16_Calc(const uint8_t *buf, size_t len, uint16_t crc); + +bool CRC16_Verify(const uint8_t *buf, size_t len); + +} // namespace crc16 \ No newline at end of file diff --git a/src/rm_driver/rm_serial_driver/include/rm_serial_driver/protocol.hpp b/src/rm_driver/rm_serial_driver/include/rm_serial_driver/protocol.hpp new file mode 100644 index 0000000..6a202d4 --- /dev/null +++ b/src/rm_driver/rm_serial_driver/include/rm_serial_driver/protocol.hpp @@ -0,0 +1,68 @@ +#pragma once + +#define ID_MCU (0xC4) +#define ID_REF (0xA8) + +#include + +typedef struct __attribute__((packed)) +{ + struct __attribute__((packed)) + { + float q0; + float q1; + float q2; + float q3; + } quat; /* 四元数 */ + struct __attribute__((packed)) + { + float yaw; + float pit; + float rol; + } gimbal; /* 欧拉角 */ + uint8_t notice; /* 控制命令 */ +} DataMCU_t; + +typedef struct __attribute__((packed)) +{ + uint8_t id; + DataMCU_t data; + uint16_t crc16; +} PackageMCU_t; + +typedef struct __attribute__((packed)) +{ + uint16_t remain_hp; /* 剩余血量 */ + uint8_t game_progress : 4; /* 比赛进度 */ + uint16_t stage_remain_time; /* 比赛剩余时间 */ +} DataReferee_t; + +typedef struct __attribute__((packed)) +{ + uint8_t id; + DataReferee_t data; + uint16_t crc16; +} PackageReferee_t; + +typedef struct __attribute__((packed)) +{ + struct __attribute__((packed)) + { + float yaw; + float pit; + float rol; + } delta_eulr; + struct __attribute__((packed)) + { + float vx; + float vy; + float wz; + } delta_pos; + uint8_t notice; /* 控制命令 */ +} DataAI_t; + +typedef struct __attribute__((packed)) +{ + DataAI_t data; + uint16_t crc16; +} PackageAI_t; \ No newline at end of file diff --git a/src/rm_driver/rm_serial_driver/include/rm_serial_driver/rm_serial_driver.hpp b/src/rm_driver/rm_serial_driver/include/rm_serial_driver/rm_serial_driver.hpp new file mode 100644 index 0000000..de15c28 --- /dev/null +++ b/src/rm_driver/rm_serial_driver/include/rm_serial_driver/rm_serial_driver.hpp @@ -0,0 +1,42 @@ +#pragma once + +#include + +#include +#include +#include +#include +#include + +#include "rm_msgs/msg/data_mcu.hpp" +#include "rm_msgs/msg/data_ref.hpp" +#include "rm_msgs/msg/data_ai.hpp" +#include "rm_serial_driver/crc.hpp" +#include "rm_serial_driver/protocol.hpp" + +namespace rm_serial_driver +{ + + class RMSerialDriver : public rclcpp::Node + { + public: + explicit RMSerialDriver(const rclcpp::NodeOptions &options); + ~RMSerialDriver() override; + + private: + size_t get_expected_length(uint8_t id); + void process_packet(uint8_t id, const char *data, size_t packet_size); + void receive_data(); + void reopen_port(); + void data_ai_callback(const rm_msgs::msg::DataAI::SharedPtr msg); + + std::unique_ptr serial_port_; + rclcpp::Publisher::SharedPtr data_mcu_pub_; + rclcpp::Publisher::SharedPtr data_ref_pub_; + rclcpp::Subscription::SharedPtr data_ai_sub_; + std::thread read_thread_; // 串口数据读取线程 + std::atomic running_; // 原子操作: 保证多线程操作时的数据一致性 + std::string serial_buffer_; // 串口数据缓冲区 + }; + +} // namespace rm_serial_driver diff --git a/src/rm_driver/rm_serial_driver/launch/rm_serial_driver.launch.py b/src/rm_driver/rm_serial_driver/launch/rm_serial_driver.launch.py new file mode 100644 index 0000000..24c18da --- /dev/null +++ b/src/rm_driver/rm_serial_driver/launch/rm_serial_driver.launch.py @@ -0,0 +1,50 @@ +from launch import LaunchDescription +from launch_ros.actions import ComposableNodeContainer +from launch_ros.descriptions import ComposableNode +import os +from ament_index_python.packages import get_package_share_directory + +def generate_launch_description(): + pkg_share = get_package_share_directory('rm_serial_driver') + param_file = os.path.join(pkg_share, 'config', 'serial_config.yaml') + + container = ComposableNodeContainer( + name='rm_serial_container', + namespace='', + package='rclcpp_components', + executable='component_container_mt', # 多线程容器 + composable_node_descriptions=[ + ComposableNode( + package='rm_serial_driver', + plugin='rm_serial_driver::RMSerialDriver', + name='rm_serial_driver_1', + parameters=[{ + 'device_name': '/dev/ttyACM0', + 'baud_rate': 115200, + 'topic_prefix': 'gimbal_left' + }] + ), + ComposableNode( + package='rm_serial_driver', + plugin='rm_serial_driver::RMSerialDriver', + name='rm_serial_driver_2', + parameters=[{ + 'device_name': '/dev/ttyACM1', + 'baud_rate': 115200, + 'topic_prefix': 'chassis' + }] + ), + ComposableNode( + package='rm_serial_driver', + plugin='rm_serial_driver::RMSerialDriver', + name='rm_serial_driver_3', + parameters=[{ + 'device_name': '/dev/ttyACM3', + 'baud_rate': 115200, + 'topic_prefix': 'gimbal_right' + }] + ) + ], + output='screen' + ) + return LaunchDescription([container]) \ No newline at end of file diff --git a/src/rm_driver/rm_serial_driver/package.xml b/src/rm_driver/rm_serial_driver/package.xml new file mode 100644 index 0000000..2696010 --- /dev/null +++ b/src/rm_driver/rm_serial_driver/package.xml @@ -0,0 +1,18 @@ + + rm_serial_driver + 0.0.0 + ROS2 Humble Serial Driver + Your Name + Apache-2.0 + + ament_cmake + geometry_msgs + rclcpp + std_msgs + serial + rm_msgs + + + ament_cmake + + \ No newline at end of file diff --git a/src/rm_driver/rm_serial_driver/script/pub_aim.py b/src/rm_driver/rm_serial_driver/script/pub_aim.py new file mode 100644 index 0000000..af70745 --- /dev/null +++ b/src/rm_driver/rm_serial_driver/script/pub_aim.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python3 + +import rclpy +from rclpy.node import Node +import serial +import struct +from rm_msgs.msg import DataAim # 假设使用DataAim消息类型,您可以根据实际消息类型调整 +class AimDataSerial(Node): + def __init__(self): + super().__init__('aim_data_serial') + + # 串口配置 + self.serial_port = '/dev/ttyUSB0' # 根据实际串口设备调整 + self.baud_rate = 115200 + + try: + self.serial_conn = serial.Serial( + port=self.serial_port, + baudrate=self.baud_rate, + timeout=1 + ) + self.get_logger().info(f'Serial port {self.serial_port} opened successfully') + except Exception as e: + self.get_logger().error(f'Failed to open serial port: {e}') + return + + # 订阅话题 + self.subscription = self.create_subscription( + DataAim, # 根据实际消息类型调整 + '/chassis/data_aim', + self.aim_callback, + 10 + ) + + self.get_logger().info('Aim data serial node started') + + def aim_callback(self, msg): + try: + # 提取yaw和distance数据 + # 根据实际消息结构调整,这里假设使用Point32的x和y字段 + yaw = msg.yaw + distance = msg.distance + + self.get_logger().info(f'Received - yaw: {yaw}, distance: {distance}') + + # 构建发送数据包 + # 格式: 包头(0xFF) + yaw(4字节float) + distance(4字节float) + 包尾(0xFE) + packet = bytearray() + packet.append(0xFF) # 包头 + packet.extend(struct.pack('> 8) ^ crc16_tab[(crc ^ data) & 0xff]; +} + +/** + * @brief 计算 CRC:CRC16-CCITT + * @param buf 数据缓冲区 + * @param len 数据长度 + * @param crc 初始值 + * @return + */ +uint16_t CRC16_Calc(const uint8_t *buf, size_t len, uint16_t crc) +{ + while (len--) + { + crc = CRC16_Byte(crc, *buf++); + } + return crc; +} + +/** + * @brief 验证 CRC:CRC16-CCITT + * @param buf 数据缓冲区 + * @param len 数据长度 + * @return + */ +bool CRC16_Verify(const uint8_t *buf, size_t len) +{ + if (len < sizeof(uint16_t)) + return false; + + uint16_t expected = CRC16_Calc(buf, len - sizeof(uint16_t), CRC16_INIT); + auto ptr = reinterpret_cast(buf + (len % 2)); + return expected == ptr[len / sizeof(uint16_t) - 1]; +} + +} // namespace crc16 \ No newline at end of file diff --git a/src/rm_driver/rm_serial_driver/src/rm_serial_driver.cpp b/src/rm_driver/rm_serial_driver/src/rm_serial_driver.cpp new file mode 100644 index 0000000..dd4acee --- /dev/null +++ b/src/rm_driver/rm_serial_driver/src/rm_serial_driver.cpp @@ -0,0 +1,209 @@ +#include "rm_serial_driver/rm_serial_driver.hpp" + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace rm_serial_driver +{ + + /** + * @brief 构造函数:初始化节点,打开串口,创建发布者和订阅者,启动数据接收线程,打印启动信息 + * @param options + */ + RMSerialDriver::RMSerialDriver(const rclcpp::NodeOptions &options) + : Node("rm_serial_driver", options), running_(true) + { + std::string device = this->declare_parameter("device_name", std::string("/dev/ttyACM0")); + int baud = this->declare_parameter("baud_rate", 115200); + std::string topic_prefix = this->declare_parameter("topic_prefix", std::string("serial")); + + serial_port_ = + std::make_unique(device, baud, serial::Timeout::simpleTimeout(1000)); + data_mcu_pub_ = this->create_publisher(topic_prefix + "/data_mcu", 10); + data_ref_pub_ = this->create_publisher(topic_prefix + "/data_ref", 10); + data_ai_sub_ = this->create_subscription( + topic_prefix + "/data_ai", 10, std::bind(&RMSerialDriver::data_ai_callback, this, std::placeholders::_1)); // 新增订阅者 + read_thread_ = std::thread(&RMSerialDriver::receive_data, this); + RCLCPP_INFO(get_logger(), "RM 启动!!!"); + } + + /** + * @brief 析构函数:关闭串口,等待数据接收线程结束 + */ + RMSerialDriver::~RMSerialDriver() + { + running_.store(false); + if (read_thread_.joinable()) + { + read_thread_.join(); + } + if (serial_port_->isOpen()) + { + serial_port_->close(); + } + } + + /** + * @brief AI 数据回调函数 + * @param msg + */ + void RMSerialDriver::data_ai_callback(const rm_msgs::msg::DataAI::SharedPtr msg) + { + PackageAI_t package; + std::memcpy(&package.data, msg.get(), sizeof(DataAI_t)); + package.crc16 = crc16::CRC16_Calc(reinterpret_cast(&package.data), sizeof(DataAI_t), CRC16_INIT); + serial_port_->write(reinterpret_cast(&package), sizeof(PackageAI_t)); + } + + /** + * @brief 获取期望的数据包长度 + * @param id + * @return + */ + size_t RMSerialDriver::get_expected_length(uint8_t id) + { + if (id == ID_MCU) + return sizeof(PackageMCU_t); + else if (id == ID_REF) + return sizeof(PackageReferee_t); + return 0; + } + + /** + * @brief 处理接收到的数据包 + * @param id + * @param data + * @param packet_size + */ + void RMSerialDriver::process_packet(uint8_t id, const char *data, size_t packet_size) + { + if (id == ID_MCU) + { + PackageMCU_t mcu; + std::memcpy(&mcu, data, packet_size); // 将 data 拷贝到 mcu 中 + if (crc16::CRC16_Verify(reinterpret_cast(&mcu) + 1, packet_size - 1)) + { + rm_msgs::msg::DataMCU msg; + std::memcpy(&msg, &mcu.data, sizeof(mcu.data)); // 将数据拷贝到 msg 中 + data_mcu_pub_->publish(msg); + } + else + { + RCLCPP_ERROR(get_logger(), "CRC 校验失败(MCU)"); + } + } + else if (id == ID_REF) + { + PackageReferee_t ref; + std::memcpy(&ref, data, packet_size); + if (crc16::CRC16_Verify(reinterpret_cast(&ref) + 1, packet_size - 1)) + { + rm_msgs::msg::DataRef msg; + // std::memcpy(&msg, &ref.data, sizeof(ref.data)); + msg.remain_hp = ref.data.remain_hp; + msg.game_progress = ref.data.game_progress; + msg.stage_remain_time = ref.data.stage_remain_time; + data_ref_pub_->publish(msg); + } + else + { + // RCLCPP_WARN(get_logger(), "CRC 校验失败(REF)"); + } + } + else + { + // 未知 ID,丢弃该字节 + } + } + + /** + * @brief 串口数据接收线程 + * @param args 线程参数 + */ + void RMSerialDriver::receive_data() + { + while (rclcpp::ok() && running_.load()) + { + try + { + if (serial_port_->available()) + { + std::string buffer = serial_port_->read(serial_port_->available()); + serial_buffer_ += buffer; + + while (true) + { + size_t header_pos = serial_buffer_.find_first_of( + std::string() + static_cast(ID_MCU) + static_cast(ID_REF)); // 查找第一个出现的字符 + if (header_pos == std::string::npos) + { + serial_buffer_.clear(); + break; + } + if (header_pos > 0) + { + serial_buffer_.erase(0, header_pos); + } + if (serial_buffer_.empty()) + break; + + uint8_t id = static_cast(serial_buffer_[0]); + size_t expected_length = get_expected_length(id); + if (expected_length == 0) + { + serial_buffer_.erase(0, 1); + continue; + } + if (serial_buffer_.size() < expected_length) + break; + + process_packet(id, serial_buffer_.data(), expected_length); + serial_buffer_.erase(0, expected_length); + } + } + } + catch (const std::exception &ex) + { + reopen_port(); + } + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + } + + /** + * @brief 重启串口 + * @note 当串口意外关闭时,尝试重新打开串口 + */ + void RMSerialDriver::reopen_port() + { + if (serial_port_->isOpen()) + { + serial_port_->close(); + } + + bool port_opened = false; + while (!port_opened && rclcpp::ok()) + { + try + { + RCLCPP_WARN(get_logger(), "串口意外关闭,正在尝试重新打开..."); + serial_port_->open(); + port_opened = true; + } + catch (const std::exception &ex) + { + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + } + } + +} // namespace rm_serial_driver + +#include "rclcpp_components/register_node_macro.hpp" +RCLCPP_COMPONENTS_REGISTER_NODE(rm_serial_driver::RMSerialDriver) \ No newline at end of file diff --git a/src/rm_localization/.DS_Store b/src/rm_localization/.DS_Store new file mode 100644 index 0000000..026bbb1 Binary files /dev/null and b/src/rm_localization/.DS_Store differ diff --git a/src/rm_localization/FAST_LIO/.github/stale.yml b/src/rm_localization/FAST_LIO/.github/stale.yml new file mode 100644 index 0000000..4d545fe --- /dev/null +++ b/src/rm_localization/FAST_LIO/.github/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 21 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 1 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false diff --git a/src/rm_localization/FAST_LIO/.gitignore b/src/rm_localization/FAST_LIO/.gitignore new file mode 100644 index 0000000..eb7be62 --- /dev/null +++ b/src/rm_localization/FAST_LIO/.gitignore @@ -0,0 +1,8 @@ +build +Log/*.png +Log/*.txt +Log/*.csv +Log/*.pdf +.vscode/c_cpp_properties.json +.vscode/settings.json +PCD/*.pcd diff --git a/src/rm_localization/FAST_LIO/.gitmodules b/src/rm_localization/FAST_LIO/.gitmodules new file mode 100644 index 0000000..b8a0efa --- /dev/null +++ b/src/rm_localization/FAST_LIO/.gitmodules @@ -0,0 +1,4 @@ +[submodule "include/ikd-Tree"] + path = include/ikd-Tree + url = https://github.com/hku-mars/ikd-Tree.git + branch = fast_lio diff --git a/src/rm_localization/FAST_LIO/CMakeLists.txt b/src/rm_localization/FAST_LIO/CMakeLists.txt new file mode 100644 index 0000000..306cd9b --- /dev/null +++ b/src/rm_localization/FAST_LIO/CMakeLists.txt @@ -0,0 +1,125 @@ +cmake_minimum_required(VERSION 3.8) +project(fast_lio) + +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Release) +endif() + +if(POLICY CMP0074) + cmake_policy(SET CMP0074 NEW) +endif() + +ADD_COMPILE_OPTIONS(-std=c++14) +ADD_COMPILE_OPTIONS(-std=c++14) +set(CMAKE_CXX_FLAGS "-std=c++14 -O3") + +add_definitions(-DROOT_DIR=\"${CMAKE_CURRENT_SOURCE_DIR}/\") + +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fexceptions") +set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -pthread -std=c++0x -std=c++14 -fexceptions") +set(CMAKE_POSITION_INDEPENDENT_CODE ON) + + +if(CMAKE_SYSTEM_PROCESSOR MATCHES "(x86)|(X86)|(amd64)|(AMD64)") + include(ProcessorCount) + ProcessorCount(N) + + if(N GREATER 4) + add_definitions(-DMP_EN) + add_definitions(-DMP_PROC_NUM=3) + elseif(N GREATER 3) + add_definitions(-DMP_EN) + add_definitions(-DMP_PROC_NUM=2) + else() + add_definitions(-DMP_PROC_NUM=1) + endif() +else() + add_definitions(-DMP_PROC_NUM=1) +endif() + +find_package(OpenMP QUIET) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") + +find_package(PythonLibs REQUIRED) +find_path(MATPLOTLIB_CPP_INCLUDE_DIRS "matplotlibcpp.h") + +# ROS dependencies +find_package(ament_cmake REQUIRED) +find_package(rclcpp REQUIRED) +find_package(rclcpp_components REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(nav_msgs REQUIRED) +find_package(sensor_msgs REQUIRED) +find_package(std_msgs REQUIRED) +find_package(std_srvs REQUIRED) +find_package(visualization_msgs REQUIRED) +find_package(pcl_ros REQUIRED) +find_package(pcl_conversions REQUIRED) +find_package(livox_ros_driver2 REQUIRED) +find_package(rosidl_default_generators REQUIRED) + +set(dependencies + rclcpp + rclcpp_components + geometry_msgs + nav_msgs + sensor_msgs + std_msgs + std_srvs + visualization_msgs + pcl_ros + pcl_conversions + livox_ros_driver2 +) + +# Thirdparty libraries +find_package(Eigen3 REQUIRED) +find_package(PCL REQUIRED COMPONENTS common io) + +set(msg_files + "msg/Pose6D.msg" +) + +rosidl_generate_interfaces(${PROJECT_NAME} + ${msg_files} +) +ament_export_dependencies(rosidl_default_runtime) + +add_executable(fastlio_mapping src/laserMapping.cpp include/ikd-Tree/ikd_Tree.cpp src/preprocess.cpp) +target_include_directories(fastlio_mapping PUBLIC + $ + $ + ${PCL_INCLUDE_DIRS} +) +target_link_libraries(fastlio_mapping ${PCL_LIBRARIES} ${PYTHON_LIBRARIES} Eigen3::Eigen) +target_include_directories(fastlio_mapping PRIVATE ${PYTHON_INCLUDE_DIRS}) + +list(APPEND EOL_LIST "foxy" "galactic" "eloquent" "dashing" "crystal") + +if($ENV{ROS_DISTRO} IN_LIST EOL_LIST) + # Custommsg to support foxy & galactic + rosidl_target_interfaces(fastlio_mapping + ${PROJECT_NAME} "rosidl_typesupport_cpp") +else() + rosidl_get_typesupport_target(cpp_typesupport_target + ${PROJECT_NAME} "rosidl_typesupport_cpp") + target_link_libraries(fastlio_mapping ${cpp_typesupport_target}) +endif() + +ament_target_dependencies(fastlio_mapping ${dependencies}) + +# ---------------- Install --------------- # +install(TARGETS fastlio_mapping + DESTINATION lib/${PROJECT_NAME} +) + +install( + DIRECTORY config launch rviz + DESTINATION share/${PROJECT_NAME} +) + +ament_package() \ No newline at end of file diff --git a/src/rm_localization/FAST_LIO/LICENSE b/src/rm_localization/FAST_LIO/LICENSE new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/src/rm_localization/FAST_LIO/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/src/rm_localization/FAST_LIO/Log/fast_lio_time_log_analysis.m b/src/rm_localization/FAST_LIO/Log/fast_lio_time_log_analysis.m new file mode 100644 index 0000000..8a0b679 --- /dev/null +++ b/src/rm_localization/FAST_LIO/Log/fast_lio_time_log_analysis.m @@ -0,0 +1,135 @@ +clear +close all + +Color_red = [0.6350 0.0780 0.1840]; +Color_blue = [0 0.4470 0.7410]; +Color_orange = [0.8500 0.3250 0.0980]; +Color_green = [0.4660 0.6740 0.1880]; +Color_lightblue = [0.3010 0.7450 0.9330]; +Color_purple = [0.4940 0.1840 0.5560]; +Color_yellow = [0.9290 0.6940 0.1250]; + +fast_lio_ikdtree = csvread("./fast_lio_time_log.csv",1,0); +timestamp_ikd = fast_lio_ikdtree(:,1); +timestamp_ikd = timestamp_ikd - min(timestamp_ikd); +total_time_ikd = fast_lio_ikdtree(:,2)*1e3; +scan_num = fast_lio_ikdtree(:,3); +incremental_time_ikd = fast_lio_ikdtree(:,4)*1e3; +search_time_ikd = fast_lio_ikdtree(:,5)*1e3; +delete_size_ikd = fast_lio_ikdtree(:,6); +delete_time_ikd = fast_lio_ikdtree(:,7) * 1e3; +tree_size_ikd_st = fast_lio_ikdtree(:,8); +tree_size_ikd = fast_lio_ikdtree(:,9); +add_points = fast_lio_ikdtree(:,10); + +fast_lio_forest = csvread("fast_lio_time_log.csv",1,0); +fov_check_time_forest = fast_lio_forest(:,5)*1e3; +average_time_forest = fast_lio_forest(:,2)*1e3; +total_time_forest = fast_lio_forest(:,6)*1e3; +incremental_time_forest = fast_lio_forest(:,3)*1e3; +search_time_forest = fast_lio_forest(:,4)*1e3; +timestamp_forest = fast_lio_forest(:,1); + +% Use slide window to calculate average +L = 1; % Length of slide window +for i = 1:length(timestamp_ikd) + if (i 0); +search_time_ikd = search_time_ikd(index_ikd); +index_forest = find(search_time_forest > 0); +search_time_forest = search_time_forest(index_forest); + +t = nexttile; +hold on; +boxplot_data_ikd = [incremental_time_ikd,total_time_ikd]; +boxplot_data_forest = [incremental_time_forest,total_time_forest]; +Colors_ikd = [Color_blue;Color_blue;Color_blue]; +Colors_forest = [Color_orange;Color_orange;Color_orange]; +% xticks([3,8,13]) +h_search_ikd = boxplot(search_time_ikd,'Whisker',50,'Positions',1,'Colors',Color_blue,'Widths',0.3); +h_search_forest = boxplot(search_time_forest,'Whisker',50,'Positions',1.5,'Colors',Color_orange,'Widths',0.3); +h_ikd = boxplot(boxplot_data_ikd,'Whisker',50,'Positions',[3,5],'Colors',Color_blue,'Widths',0.3); +h_forest = boxplot(boxplot_data_forest,'Whisker',50,'Positions',[3.5,5.5],'Colors',Color_orange,'Widths',0.3); +ax2 = gca; +ax2.YAxis.Scale = 'log'; +xlim([0.5,6.0]) +ylim([0.0008,100]) +xticks([1.25 3.25 5.25]) +xticklabels({'Nearest Search',' Incremental Updates','Total Time'}); +yticks([1e-3,1e-2,1e-1,1e0,1e1,1e2]) +ax2.YAxis.FontSize = 12; +ax2.XAxis.FontSize = 14.5; +% ax.XAxis.FontWeight = 'bold'; +ylabel('Run Time/ms','FontSize',14,'FontName','Times New Roman') +box_vars = [findall(h_search_ikd,'Tag','Box');findall(h_ikd,'Tag','Box');findall(h_search_forest,'Tag','Box');findall(h_forest,'Tag','Box')]; +for j=1:length(box_vars) + if (j<=3) + Color = Color_blue; + else + Color = Color_orange; + end + patch(get(box_vars(j),'XData'),get(box_vars(j),'YData'),Color,'FaceAlpha',0.25,'EdgeColor',Color); +end +Lg = legend(box_vars([1,4]), {'ikd-Tree','ikd-Forest'},'Location',[0.6707 0.4305 0.265 0.07891],'fontsize',14,'fontname','Times New Roman'); +grid on +set(gca,'YMinorGrid','off') +nexttile; +hold on; +grid on; +box on; +set(gca,'FontSize',12,'FontName','Times New Roman') +plot(timestamp_ikd, alpha_bal_ikd,'-','Color',Color_blue,'LineWidth',1.2); +plot(timestamp_ikd, alpha_del_ikd,'--','Color',Color_orange, 'LineWidth', 1.2); +plot(timestamp_ikd, 0.6*ones(size(alpha_bal_ikd)), ':','Color','black','LineWidth',1.2); +lg = legend("\alpha_{bal}", "\alpha_{del}",'location',[0.7871 0.1131 0.1433 0.069],'fontsize',14,'fontname','Times New Roman') +title("Re-balancing Criterion",'FontSize',16,'FontName','Times New Roman') +xlabel("time/s",'FontSize',16,'FontName','Times New Roman') +yl = ylabel("\alpha",'FontSize',15, 'Position',[285.7 0.4250 -1]) +xlim([32,390]); +ylim([0,0.85]); +ax3 = gca; +ax3.YAxis.FontSize = 12; +ax3.XAxis.FontSize = 12; +% print('./Figures/fastlio_exp_combine','-depsc','-r1200') +% exportgraphics(f,'./Figures/fastlio_exp_combine_1.pdf','ContentType','vector') + diff --git a/src/rm_localization/FAST_LIO/Log/guide.md b/src/rm_localization/FAST_LIO/Log/guide.md new file mode 100644 index 0000000..8ff3fc1 --- /dev/null +++ b/src/rm_localization/FAST_LIO/Log/guide.md @@ -0,0 +1 @@ +Here saved the debug records which can be drew by the ../Log/plot.py. The record function can be found frm the MACRO: DEBUG_FILE_DIR(name) in common_lib.h. diff --git a/src/rm_localization/FAST_LIO/Log/plot.py b/src/rm_localization/FAST_LIO/Log/plot.py new file mode 100644 index 0000000..e4aad85 --- /dev/null +++ b/src/rm_localization/FAST_LIO/Log/plot.py @@ -0,0 +1,94 @@ +# import matplotlib +# matplotlib.use('Agg') +import numpy as np +import matplotlib.pyplot as plt + + +#######for ikfom +fig, axs = plt.subplots(4,2) +lab_pre = ['', 'pre-x', 'pre-y', 'pre-z'] +lab_out = ['', 'out-x', 'out-y', 'out-z'] +plot_ind = range(7,10) +a_pre=np.loadtxt('mat_pre.txt') +a_out=np.loadtxt('mat_out.txt') +time=a_pre[:,0] +axs[0,0].set_title('Attitude') +axs[1,0].set_title('Translation') +axs[2,0].set_title('Extrins-R') +axs[3,0].set_title('Extrins-T') +axs[0,1].set_title('Velocity') +axs[1,1].set_title('bg') +axs[2,1].set_title('ba') +axs[3,1].set_title('Gravity') +for i in range(1,4): + for j in range(8): + axs[j%4, j/4].plot(time, a_pre[:,i+j*3],'.-', label=lab_pre[i]) + axs[j%4, j/4].plot(time, a_out[:,i+j*3],'.-', label=lab_out[i]) +for j in range(8): + # axs[j].set_xlim(386,389) + axs[j%4, j/4].grid() + axs[j%4, j/4].legend() +plt.grid() +#######for ikfom####### + + +#### Draw IMU data +# fig, axs = plt.subplots(2) +# imu=np.loadtxt('imu.txt') +# time=imu[:,0] +# axs[0].set_title('Gyroscope') +# axs[1].set_title('Accelerameter') +# lab_1 = ['gyr-x', 'gyr-y', 'gyr-z'] +# lab_2 = ['acc-x', 'acc-y', 'acc-z'] +# for i in range(3): +# # if i==1: +# axs[0].plot(time, imu[:,i+1],'.-', label=lab_1[i]) +# axs[1].plot(time, imu[:,i+4],'.-', label=lab_2[i]) +# for i in range(2): +# # axs[i].set_xlim(386,389) +# axs[i].grid() +# axs[i].legend() +# plt.grid() + +# #### Draw time calculation +# plt.figure(3) +# fig = plt.figure() +# font1 = {'family' : 'Times New Roman', +# 'weight' : 'normal', +# 'size' : 12, +# } +# c="red" +# a_out1=np.loadtxt('Log/mat_out_time_indoor1.txt') +# a_out2=np.loadtxt('Log/mat_out_time_indoor2.txt') +# a_out3=np.loadtxt('Log/mat_out_time_outdoor.txt') +# # n = a_out[:,1].size +# # time_mean = a_out[:,1].mean() +# # time_se = a_out[:,1].std() / np.sqrt(n) +# # time_err = a_out[:,1] - time_mean +# # feat_mean = a_out[:,2].mean() +# # feat_err = a_out[:,2] - feat_mean +# # feat_se = a_out[:,2].std() / np.sqrt(n) +# ax1 = fig.add_subplot(111) +# ax1.set_ylabel('Effective Feature Numbers',font1) +# ax1.boxplot(a_out1[:,2], showfliers=False, positions=[0.9]) +# ax1.boxplot(a_out2[:,2], showfliers=False, positions=[1.9]) +# ax1.boxplot(a_out3[:,2], showfliers=False, positions=[2.9]) +# ax1.set_ylim([0, 3000]) + +# ax2 = ax1.twinx() +# ax2.spines['right'].set_color('red') +# ax2.set_ylabel('Compute Time (ms)',font1) +# ax2.yaxis.label.set_color('red') +# ax2.tick_params(axis='y', colors='red') +# ax2.boxplot(a_out1[:,1]*1000, showfliers=False, positions=[1.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.boxplot(a_out2[:,1]*1000, showfliers=False, positions=[2.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.boxplot(a_out3[:,1]*1000, showfliers=False, positions=[3.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.set_xlim([0.5, 3.5]) +# ax2.set_ylim([0, 100]) + +# plt.xticks([1,2,3], ('Outdoor Scene', 'Indoor Scene 1', 'Indoor Scene 2')) +# # # print(time_se) +# # # print(a_out3[:,2]) +# plt.grid() +# plt.savefig("time.pdf", dpi=1200) +plt.show() diff --git a/src/rm_localization/FAST_LIO/PCD/1 b/src/rm_localization/FAST_LIO/PCD/1 new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/src/rm_localization/FAST_LIO/PCD/1 @@ -0,0 +1 @@ +1 diff --git a/src/rm_localization/FAST_LIO/README.md b/src/rm_localization/FAST_LIO/README.md new file mode 100644 index 0000000..cc29f08 --- /dev/null +++ b/src/rm_localization/FAST_LIO/README.md @@ -0,0 +1,195 @@ +> ROS2 Fork repo maintainer: [Ericsiii](https://github.com/Ericsii) + +## Related Works and Extended Application + +**SLAM:** + +1. [ikd-Tree](https://github.com/hku-mars/ikd-Tree): A state-of-art dynamic KD-Tree for 3D kNN search. +2. [R2LIVE](https://github.com/hku-mars/r2live): A high-precision LiDAR-inertial-Vision fusion work using FAST-LIO as LiDAR-inertial front-end. +3. [LI_Init](https://github.com/hku-mars/LiDAR_IMU_Init): A robust, real-time LiDAR-IMU extrinsic initialization and synchronization package.. +4. [FAST-LIO-LOCALIZATION](https://github.com/HViktorTsoi/FAST_LIO_LOCALIZATION): The integration of FAST-LIO with **Re-localization** function module. + +**Control and Plan:** + +1. [IKFOM](https://github.com/hku-mars/IKFoM): A Toolbox for fast and high-precision on-manifold Kalman filter. +2. [UAV Avoiding Dynamic Obstacles](https://github.com/hku-mars/dyn_small_obs_avoidance): One of the implementation of FAST-LIO in robot's planning. +3. [UGV Demo](https://www.youtube.com/watch?v=wikgrQbE6Cs): Model Predictive Control for Trajectory Tracking on Differentiable Manifolds. +4. [Bubble Planner](https://arxiv.org/abs/2202.12177): Planning High-speed Smooth Quadrotor Trajectories using Receding Corridors. + + + +## FAST-LIO +**FAST-LIO** (Fast LiDAR-Inertial Odometry) is a computationally efficient and robust LiDAR-inertial odometry package. It fuses LiDAR feature points with IMU data using a tightly-coupled iterated extended Kalman filter to allow robust navigation in fast-motion, noisy or cluttered environments where degeneration occurs. Our package address many key issues: +1. Fast iterated Kalman filter for odometry optimization; +2. Automaticaly initialized at most steady environments; +3. Parallel KD-Tree Search to decrease the computation; + +## FAST-LIO 2.0 (2021-07-05 Update) + + +
+ + +
+ +**Related video:** [FAST-LIO2](https://youtu.be/2OvjGnxszf8), [FAST-LIO1](https://youtu.be/iYCY6T79oNU) + +**Pipeline:** +
+ +
+ +**New Features:** +1. Incremental mapping using [ikd-Tree](https://github.com/hku-mars/ikd-Tree), achieve faster speed and over 100Hz LiDAR rate. +2. Direct odometry (scan to map) on Raw LiDAR points (feature extraction can be disabled), achieving better accuracy. +3. Since no requirements for feature extraction, FAST-LIO2 can support many types of LiDAR including spinning (Velodyne, Ouster) and solid-state (Livox Avia, Horizon, MID-70) LiDARs, and can be easily extended to support more LiDARs. +4. Support external IMU. +5. Support ARM-based platforms including Khadas VIM3, Nivida TX2, Raspberry Pi 4B(8G RAM). + +**Related papers**: + +[FAST-LIO2: Fast Direct LiDAR-inertial Odometry](doc/Fast_LIO_2.pdf) + +[FAST-LIO: A Fast, Robust LiDAR-inertial Odometry Package by Tightly-Coupled Iterated Kalman Filter](https://arxiv.org/abs/2010.08196) + +**Contributors** + +[Wei Xu 徐威](https://github.com/XW-HKU),[Yixi Cai 蔡逸熙](https://github.com/Ecstasy-EC),[Dongjiao He 贺东娇](https://github.com/Joanna-HE),[Fangcheng Zhu 朱方程](https://github.com/zfc-zfc),[Jiarong Lin 林家荣](https://github.com/ziv-lin),[Zheng Liu 刘政](https://github.com/Zale-Liu), [Borong Yuan](https://github.com/borongyuan) + + + +## 1. Prerequisites +### 1.1 **Ubuntu** and **ROS** +**Ubuntu >= 20.04** + +The **default from apt** PCL and Eigen is enough for FAST-LIO to work normally. + +ROS >= Foxy (Recommend to use ROS-Humble). [ROS Installation](https://docs.ros.org/en/humble/Installation.html) + +### 1.2. **PCL && Eigen** +PCL >= 1.8, Follow [PCL Installation](https://pointclouds.org/downloads/#linux). + +Eigen >= 3.3.4, Follow [Eigen Installation](http://eigen.tuxfamily.org/index.php?title=Main_Page). + +### 1.3. **livox_ros_driver2** +Follow [livox_ros_driver2 Installation](https://github.com/Livox-SDK/livox_ros_driver2). + +You can also use the one I modified [livox_ros_driver2](https://github.com/Ericsii/livox_ros_driver2/tree/feature/use-standard-unit) + +*Remarks:* +- Since the FAST-LIO must support Livox serials LiDAR firstly, so the **livox_ros_driver** must be installed and **sourced** before run any FAST-LIO launch file. +- How to source? The easiest way is add the line ``` source $Licox_ros_driver_dir$/devel/setup.bash ``` to the end of file ``` ~/.bashrc ```, where ``` $Licox_ros_driver_dir$ ``` is the directory of the livox ros driver workspace (should be the ``` ws_livox ``` directory if you completely followed the livox official document). + + +## 2. Build +Clone the repository and colcon build: + +```bash + cd /src # cd into a ros2 workspace folder + git clone https://github.com/Ericsii/FAST_LIO.git --recursive + cd .. + rosdep install --from-paths src --ignore-src -y + colcon build --symlink-install + . ./install/setup.bash # use setup.zsh if use zsh +``` +- **Remember to source the livox_ros_driver before build (follow [1.3 livox_ros_driver](#1.3))** +- If you want to use a custom build of PCL, add the following line to ~/.bashrc +```export PCL_ROOT={CUSTOM_PCL_PATH}``` +## 3. Directly run +Noted: + +A. Please make sure the IMU and LiDAR are **Synchronized**, that's important. + +B. The warning message "Failed to find match for field 'time'." means the timestamps of each LiDAR points are missed in the rosbag file. That is important for the forward propagation and backwark propagation. + +C. We recommend to set the **extrinsic_est_en** to false if the extrinsic is give. As for the extrinsic initiallization, please refer to our recent work: [**Robust Real-time LiDAR-inertial Initialization**](https://github.com/hku-mars/LiDAR_IMU_Init). + +### 3.1 Run use ros launch +Connect to your PC to Livox LiDAR by following [Livox-ros-driver2 installation](https://github.com/Livox-SDK/livox_ros_driver2), then +```bash +cd +. install/setup.bash # use setup.zsh if use zsh +ros2 launch fast_lio mapping.launch.py config_file:=avia.yaml +``` + +Change `config_file` parameter to other yaml file under config directory as you need. + +Launch livox ros driver. Use MID360 as an example. + +```bash +ros2 launch livox_ros_driver2 msg_MID360_launch.py +``` + +- For livox serials, FAST-LIO only support the data collected by the ``` livox_lidar_msg.launch ``` since only its ``` livox_ros_driver2/CustomMsg ``` data structure produces the timestamp of each LiDAR point which is very important for the motion undistortion. ``` livox_lidar.launch ``` can not produce it right now. +- If you want to change the frame rate, please modify the **publish_freq** parameter in the [livox_lidar_msg.launch](https://github.com/Livox-SDK/livox_ros_driver/blob/master/livox_ros_driver2/launch/livox_lidar_msg.launch) of [Livox-ros-driver](https://github.com/Livox-SDK/livox_ros_driver2) before make the livox_ros_driver pakage. + +### 3.2 For Livox serials with external IMU + +mapping_avia.launch theratically supports mid-70, mid-40 or other livox serial LiDAR, but need to setup some parameters befor run: + +Edit ``` config/avia.yaml ``` to set the below parameters: + +1. LiDAR point cloud topic name: ``` lid_topic ``` +2. IMU topic name: ``` imu_topic ``` +3. Translational extrinsic: ``` extrinsic_T ``` +4. Rotational extrinsic: ``` extrinsic_R ``` (only support rotation matrix) +- The extrinsic parameters in FAST-LIO is defined as the LiDAR's pose (position and rotation matrix) in IMU body frame (i.e. the IMU is the base frame). They can be found in the official manual. +- FAST-LIO produces a very simple software time sync for livox LiDAR, set parameter ```time_sync_en``` to ture to turn on. But turn on **ONLY IF external time synchronization is really not possible**, since the software time sync cannot make sure accuracy. + +### 3.4 PCD file save + +Set ``` pcd_save_enable ``` in launchfile to ``` 1 ```. All the scans (in global frame) will be accumulated and saved to the file ``` FAST_LIO/PCD/scans.pcd ``` after the FAST-LIO is terminated. ```pcl_viewer scans.pcd``` can visualize the point clouds. + +*Tips for pcl_viewer:* +- change what to visualize/color by pressing keyboard 1,2,3,4,5 when pcl_viewer is running. +``` + 1 is all random + 2 is X values + 3 is Y values + 4 is Z values + 5 is intensity +``` + +## 4. Rosbag Example +### 4.1 Livox Avia Rosbag +
+ + + +Files: Can be downloaded from [google drive](https://drive.google.com/drive/folders/1CGYEJ9-wWjr8INyan6q1BZz_5VtGB-fP?usp=sharing)**!!!This ros1 bag should be convert to ros2!!!** + +Run: +```bash +ros2 launch fast_lio mapping.launch.py config_path:= +ros2 bag play + +``` + +### 4.2 Velodyne HDL-32E Rosbag + +**NCLT Dataset**: Original bin file can be found [here](http://robots.engin.umich.edu/nclt/). + +We produce [Rosbag Files](https://drive.google.com/drive/folders/1VBK5idI1oyW0GC_I_Hxh63aqam3nocNK?usp=sharing) and [a python script](https://drive.google.com/file/d/1leh7DxbHx29DyS1NJkvEfeNJoccxH7XM/view) to generate Rosbag files: ```python3 sensordata_to_rosbag_fastlio.py bin_file_dir bag_name.bag```**!!!This ros1 bag should be convert to ros2!!!** To convert ros1 bag to ros2 bag, please follow the documentation [Convert rosbag versions](https://ternaris.gitlab.io/rosbags/topics/convert.html) + +Run: +``` +roslaunch fast_lio mapping_velodyne.launch +rosbag play YOUR_DOWNLOADED.bag +``` + +## 5.Implementation on UAV +In order to validate the robustness and computational efficiency of FAST-LIO in actual mobile robots, we build a small-scale quadrotor which can carry a Livox Avia LiDAR with 70 degree FoV and a DJI Manifold 2-C onboard computer with a 1.8 GHz Intel i7-8550U CPU and 8 G RAM, as shown in below. + +The main structure of this UAV is 3d printed (Aluminum or PLA), the .stl file will be open-sourced in the future. + +
+ + +
+ +## 6.Acknowledgments + +Thanks for LOAM(J. Zhang and S. Singh. LOAM: Lidar Odometry and Mapping in Real-time), [Livox_Mapping](https://github.com/Livox-SDK/livox_mapping), [LINS](https://github.com/ChaoqinRobotics/LINS---LiDAR-inertial-SLAM) and [Loam_Livox](https://github.com/hku-mars/loam_livox). diff --git a/src/rm_localization/FAST_LIO/config/avia.yaml b/src/rm_localization/FAST_LIO/config/avia.yaml new file mode 100644 index 0000000..3bbc880 --- /dev/null +++ b/src/rm_localization/FAST_LIO/config/avia.yaml @@ -0,0 +1,46 @@ +/**: + ros__parameters: + feature_extract_enable: false + point_filter_num: 3 + max_iteration: 3 + filter_size_surf: 0.5 + filter_size_map: 0.5 + cube_side_length: 1000.0 + runtime_pos_log_enable: false + map_file_path: "./test.pcd" + + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + time_sync_en: false # ONLY turn on when external time synchronization is really not possible + time_offset_lidar_to_imu: 0.0 # Time offset between lidar and IMU calibrated by other algorithms, e.g. LI-Init (can be found in README). + # This param will take effect no matter what time_sync_en is. So if the time offset is not known exactly, please set as 0.0 + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, + scan_line: 6 + blind: 4.0 + + mapping: + acc_cov: 0.1 + gyr_cov: 0.1 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + fov_degree: 90.0 + det_range: 450.0 + extrinsic_est_en: false # true: enable the online estimation of IMU-LiDAR extrinsic + extrinsic_T: [ 0.04165, 0.02326, -0.0284 ] + extrinsic_R: [ 1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + publish: + path_en: false + scan_publish_en: true # false: close all the point cloud output + dense_publish_en: true # false: low down the points number in a global-frame point clouds scan. + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: true + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. diff --git a/src/rm_localization/FAST_LIO/config/horizon.yaml b/src/rm_localization/FAST_LIO/config/horizon.yaml new file mode 100644 index 0000000..2ff8654 --- /dev/null +++ b/src/rm_localization/FAST_LIO/config/horizon.yaml @@ -0,0 +1,46 @@ +/**: + ros__parameters: + feature_extract_enable: false + point_filter_num: 3 + max_iteration: 3 + filter_size_surf: 0.5 + filter_size_map: 0.5 + cube_side_length: 1000.0 + runtime_pos_log_enable: false + map_file_path: "./test.pcd" + + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + time_sync_en: false # ONLY turn on when external time synchronization is really not possible + time_offset_lidar_to_imu: 0.0 # Time offset between lidar and IMU calibrated by other algorithms, e.g. LI-Init (can be found in README). + # This param will take effect no matter what time_sync_en is. So if the time offset is not known exactly, please set as 0.0 + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, + scan_line: 6 + blind: 4.0 + + mapping: + acc_cov: 0.1 + gyr_cov: 0.1 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + fov_degree: 100.0 + det_range: 260.0 + extrinsic_est_en: true # true: enable the online estimation of IMU-LiDAR extrinsic + extrinsic_T: [ 0.05512, 0.02226, -0.0297 ] + extrinsic_R: [ 1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + publish: + path_en: false + scan_publish_en: true # false: close all the point cloud output + dense_publish_en: true # false: low down the points number in a global-frame point clouds scan. + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: true + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. diff --git a/src/rm_localization/FAST_LIO/config/mid360.yaml b/src/rm_localization/FAST_LIO/config/mid360.yaml new file mode 100644 index 0000000..b940253 --- /dev/null +++ b/src/rm_localization/FAST_LIO/config/mid360.yaml @@ -0,0 +1,50 @@ +/**: + ros__parameters: + feature_extract_enable: false + point_filter_num: 3 + max_iteration: 3 + filter_size_surf: 0.5 + filter_size_map: 0.5 + cube_side_length: 1000.0 + runtime_pos_log_enable: false + map_file_path: "./test.pcd" + + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + time_sync_en: false # ONLY turn on when external time synchronization is really not possible + time_offset_lidar_to_imu: 0.0 # Time offset between lidar and IMU calibrated by other algorithms, e.g. LI-Init (can be found in README). + # This param will take effect no matter what time_sync_en is. So if the time offset is not known exactly, please set as 0.0 + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, 4 for any other pointcloud input + scan_line: 4 + blind: 0.5 + timestamp_unit: 3 + scan_rate: 10 + + mapping: + acc_cov: 0.1 + gyr_cov: 0.1 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + fov_degree: 360.0 + det_range: 100.0 + extrinsic_est_en: true # true: enable the online estimation of IMU-LiDAR extrinsic + extrinsic_T: [ -0.011, -0.02329, 0.04412 ] + extrinsic_R: [ 1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + publish: + path_en: true # true: publish Path + effect_map_en: false # true: publish Effects + map_en: true # true: publish Map cloud + scan_publish_en: true # false: close all the point cloud output + dense_publish_en: false # false: low down the points number in a global-frame point clouds scan. + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: true + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_localization/FAST_LIO/config/ouster64.yaml b/src/rm_localization/FAST_LIO/config/ouster64.yaml new file mode 100644 index 0000000..6f47b82 --- /dev/null +++ b/src/rm_localization/FAST_LIO/config/ouster64.yaml @@ -0,0 +1,47 @@ +/**: + ros__parameters: + feature_extract_enable: false + point_filter_num: 3 + max_iteration: 3 + filter_size_surf: 0.5 + filter_size_map: 0.5 + cube_side_length: 1000.0 + runtime_pos_log_enable: false + map_file_path: "./test.pcd" + + common: + lid_topic: "/os_cloud_node/points" + imu_topic: "/os_cloud_node/imu" + time_sync_en: false # ONLY turn on when external time synchronization is really not possible + time_offset_lidar_to_imu: 0.0 # Time offset between lidar and IMU calibrated by other algorithms, e.g. LI-Init (can be found in README). + # This param will take effect no matter what time_sync_en is. So if the time offset is not known exactly, please set as 0.0 + + preprocess: + lidar_type: 3 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, + scan_line: 64 + timestamp_unit: 3 # 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 4.0 + + mapping: + acc_cov: 0.1 + gyr_cov: 0.1 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + fov_degree: 360.0 + det_range: 150.0 + extrinsic_est_en: false # true: enable the online estimation of IMU-LiDAR extrinsic + extrinsic_T: [ 0.0, 0.0, 0.0 ] + extrinsic_R: [1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + publish: + path_en: false + scan_publish_en: true # false: close all the point cloud output + dense_publish_en: true # false: low down the points number in a global-frame point clouds scan. + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: true + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. diff --git a/src/rm_localization/FAST_LIO/config/velodyne.yaml b/src/rm_localization/FAST_LIO/config/velodyne.yaml new file mode 100644 index 0000000..24e6bf2 --- /dev/null +++ b/src/rm_localization/FAST_LIO/config/velodyne.yaml @@ -0,0 +1,48 @@ +/**: + ros__parameters: + feature_extract_enable: false + point_filter_num: 4 + max_iteration: 3 + filter_size_surf: 0.5 + filter_size_map: 0.5 + cube_side_length: 1000.0 + runtime_pos_log_enable: false + map_file_path: "./test.pcd" + + common: + lid_topic: "/velodyne_points" + imu_topic: "/imu/data" + time_sync_en: false # ONLY turn on when external time synchronization is really not possible + time_offset_lidar_to_imu: 0.0 # Time offset between lidar and IMU calibrated by other algorithms, e.g. LI-Init (can be found in README). + # This param will take effect no matter what time_sync_en is. So if the time offset is not known exactly, please set as 0.0 + + preprocess: + lidar_type: 2 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, + scan_line: 32 + scan_rate: 10 # only need to be set for velodyne, unit: Hz, + timestamp_unit: 2 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 2.0 + + mapping: + acc_cov: 0.1 + gyr_cov: 0.1 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + fov_degree: 360.0 + det_range: 100.0 + extrinsic_est_en: false # true: enable the online estimation of IMU-LiDAR extrinsic, + extrinsic_T: [ 0., 0., 0.28] + extrinsic_R: [ 1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + publish: + path_en: false + scan_publish_en: true # false: close all the point cloud output + dense_publish_en: true # false: low down the points number in a global-frame point clouds scan. + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: true + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. diff --git a/src/rm_localization/FAST_LIO/doc/Fast_LIO_2.pdf b/src/rm_localization/FAST_LIO/doc/Fast_LIO_2.pdf new file mode 100644 index 0000000..fea6764 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/Fast_LIO_2.pdf differ diff --git a/src/rm_localization/FAST_LIO/doc/avia_scan.png b/src/rm_localization/FAST_LIO/doc/avia_scan.png new file mode 100644 index 0000000..694f9cd Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/avia_scan.png differ diff --git a/src/rm_localization/FAST_LIO/doc/avia_scan2.png b/src/rm_localization/FAST_LIO/doc/avia_scan2.png new file mode 100644 index 0000000..540ce6c Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/avia_scan2.png differ diff --git a/src/rm_localization/FAST_LIO/doc/overview_fastlio2.svg b/src/rm_localization/FAST_LIO/doc/overview_fastlio2.svg new file mode 100644 index 0000000..c7a7c58 --- /dev/null +++ b/src/rm_localization/FAST_LIO/doc/overview_fastlio2.svg @@ -0,0 +1,3318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + LiDAR Inputs + + IMU Inputs + + + + + + + + + + + + + + + + + PointsAccumulation + + + ForwardPropagation + + BackwardPropagation + + ResidualComputation + + StateUpdate + + Converged? + + Odometry Output + System Overview + N + Y + 10-100 Hz + State Estimation + + + kNNSearch + Updated New Scan + + ikd-Tree + + + Point-wise Insert + + Tree Rebuld + + Box-wise Delete + + + + Unbalanced? + + + + Map Move? + + Y + Y + + On-Tree Downsampling + Mapping + 10-100 Hz + + + + + + + + + + + + + + + + + diff --git a/src/rm_localization/FAST_LIO/doc/real_exp_2.png b/src/rm_localization/FAST_LIO/doc/real_exp_2.png new file mode 100644 index 0000000..90bf038 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/real_exp_2.png differ diff --git a/src/rm_localization/FAST_LIO/doc/real_experiment2.gif b/src/rm_localization/FAST_LIO/doc/real_experiment2.gif new file mode 100644 index 0000000..bec4701 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/real_experiment2.gif differ diff --git a/src/rm_localization/FAST_LIO/doc/results/HKU_HW.png b/src/rm_localization/FAST_LIO/doc/results/HKU_HW.png new file mode 100644 index 0000000..55061fa Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/HKU_HW.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/HKU_LG_Indoor.png b/src/rm_localization/FAST_LIO/doc/results/HKU_LG_Indoor.png new file mode 100644 index 0000000..3755445 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/HKU_LG_Indoor.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/HKU_MB_001.png b/src/rm_localization/FAST_LIO/doc/results/HKU_MB_001.png new file mode 100644 index 0000000..87f5e20 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/HKU_MB_001.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/HKU_MB_002.png b/src/rm_localization/FAST_LIO/doc/results/HKU_MB_002.png new file mode 100644 index 0000000..e891fd1 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/HKU_MB_002.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/HKU_MB_map.png b/src/rm_localization/FAST_LIO/doc/results/HKU_MB_map.png new file mode 100644 index 0000000..8f8e7b3 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/HKU_MB_map.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-33-35.png b/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-33-35.png new file mode 100644 index 0000000..6914108 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-33-35.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-35-46.png b/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-35-46.png new file mode 100644 index 0000000..9306b61 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-35-46.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-37-48.png b/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-37-48.png new file mode 100644 index 0000000..972f8c8 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/Screenshot from 2020-10-15 20-37-48.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/indoor_loam.png b/src/rm_localization/FAST_LIO/doc/results/indoor_loam.png new file mode 100644 index 0000000..4d8888a Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/indoor_loam.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/indoor_loam_imu.png b/src/rm_localization/FAST_LIO/doc/results/indoor_loam_imu.png new file mode 100644 index 0000000..3de8f7e Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/indoor_loam_imu.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/indoor_our.png b/src/rm_localization/FAST_LIO/doc/results/indoor_our.png new file mode 100644 index 0000000..236d074 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/indoor_our.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/long_corrid.png b/src/rm_localization/FAST_LIO/doc/results/long_corrid.png new file mode 100644 index 0000000..a69887e Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/long_corrid.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/uav2_path.png b/src/rm_localization/FAST_LIO/doc/results/uav2_path.png new file mode 100644 index 0000000..817c02d Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/uav2_path.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/uav2_test_map.png b/src/rm_localization/FAST_LIO/doc/results/uav2_test_map.png new file mode 100644 index 0000000..90809fe Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/uav2_test_map.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/uav_lg.png b/src/rm_localization/FAST_LIO/doc/results/uav_lg.png new file mode 100644 index 0000000..29a0c12 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/uav_lg.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/uav_lg_0.png b/src/rm_localization/FAST_LIO/doc/results/uav_lg_0.png new file mode 100644 index 0000000..18bad57 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/uav_lg_0.png differ diff --git a/src/rm_localization/FAST_LIO/doc/results/uav_lg_2.png b/src/rm_localization/FAST_LIO/doc/results/uav_lg_2.png new file mode 100644 index 0000000..499b50e Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/results/uav_lg_2.png differ diff --git a/src/rm_localization/FAST_LIO/doc/uav01.jpg b/src/rm_localization/FAST_LIO/doc/uav01.jpg new file mode 100644 index 0000000..18a1b57 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/uav01.jpg differ diff --git a/src/rm_localization/FAST_LIO/doc/uav_ground.pdf b/src/rm_localization/FAST_LIO/doc/uav_ground.pdf new file mode 100644 index 0000000..08426e5 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/uav_ground.pdf differ diff --git a/src/rm_localization/FAST_LIO/doc/uav_system.png b/src/rm_localization/FAST_LIO/doc/uav_system.png new file mode 100644 index 0000000..39a9135 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/uav_system.png differ diff --git a/src/rm_localization/FAST_LIO/doc/ulhkwh_fastlio.gif b/src/rm_localization/FAST_LIO/doc/ulhkwh_fastlio.gif new file mode 100644 index 0000000..6005ca2 Binary files /dev/null and b/src/rm_localization/FAST_LIO/doc/ulhkwh_fastlio.gif differ diff --git a/src/rm_localization/FAST_LIO/include/Exp_mat.h b/src/rm_localization/FAST_LIO/include/Exp_mat.h new file mode 100644 index 0000000..7ab2897 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/Exp_mat.h @@ -0,0 +1,103 @@ +#ifndef EXP_MAT_H +#define EXP_MAT_H + +#include +#include +#include +// #include + +#define SKEW_SYM_MATRX(v) 0.0,-v[2],v[1],v[2],0.0,-v[0],-v[1],v[0],0.0 + +template +Eigen::Matrix Exp(const Eigen::Matrix &&ang) +{ + T ang_norm = ang.norm(); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + if (ang_norm > 0.0000001) + { + Eigen::Matrix r_axis = ang / ang_norm; + Eigen::Matrix K; + K << SKEW_SYM_MATRX(r_axis); + /// Roderigous Tranformation + return Eye3 + std::sin(ang_norm) * K + (1.0 - std::cos(ang_norm)) * K * K; + } + else + { + return Eye3; + } +} + +template +Eigen::Matrix Exp(const Eigen::Matrix &ang_vel, const Ts &dt) +{ + T ang_vel_norm = ang_vel.norm(); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + + if (ang_vel_norm > 0.0000001) + { + Eigen::Matrix r_axis = ang_vel / ang_vel_norm; + Eigen::Matrix K; + + K << SKEW_SYM_MATRX(r_axis); + + T r_ang = ang_vel_norm * dt; + + /// Roderigous Tranformation + return Eye3 + std::sin(r_ang) * K + (1.0 - std::cos(r_ang)) * K * K; + } + else + { + return Eye3; + } +} + +template +Eigen::Matrix Exp(const T &v1, const T &v2, const T &v3) +{ + T &&norm = sqrt(v1 * v1 + v2 * v2 + v3 * v3); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + if (norm > 0.00001) + { + T r_ang[3] = {v1 / norm, v2 / norm, v3 / norm}; + Eigen::Matrix K; + K << SKEW_SYM_MATRX(r_ang); + + /// Roderigous Tranformation + return Eye3 + std::sin(norm) * K + (1.0 - std::cos(norm)) * K * K; + } + else + { + return Eye3; + } +} + +/* Logrithm of a Rotation Matrix */ +template +Eigen::Matrix Log(const Eigen::Matrix &R) +{ + T &&theta = std::acos(0.5 * (R.trace() - 1)); + Eigen::Matrix K(R(2,1) - R(1,2), R(0,2) - R(2,0), R(1,0) - R(0,1)); + return (std::abs(theta) < 0.001) ? (0.5 * K) : (0.5 * theta / std::sin(theta) * K); +} + +// template +// cv::Mat Exp(const T &v1, const T &v2, const T &v3) +// { + +// T norm = sqrt(v1 * v1 + v2 * v2 + v3 * v3); +// cv::Mat Eye3 = cv::Mat::eye(3, 3, CV_32F); +// if (norm > 0.0000001) +// { +// T r_ang[3] = {v1 / norm, v2 / norm, v3 / norm}; +// cv::Mat K = (cv::Mat_(3,3) << SKEW_SYM_MATRX(r_ang)); + +// /// Roderigous Tranformation +// return Eye3 + std::sin(norm) * K + (1.0 - std::cos(norm)) * K * K; +// } +// else +// { +// return Eye3; +// } +// } + +#endif diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/esekfom/esekfom.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/esekfom/esekfom.hpp new file mode 100755 index 0000000..3c6829c --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/esekfom/esekfom.hpp @@ -0,0 +1,2008 @@ +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Author: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef ESEKFOM_EKF_HPP +#define ESEKFOM_EKF_HPP + + +#include +#include + +#include +#include +#include +#include +#include + +#include "../mtk/types/vect.hpp" +#include "../mtk/types/SOn.hpp" +#include "../mtk/types/S2.hpp" +#include "../mtk/startIdx.hpp" +#include "../mtk/build_manifold.hpp" +#include "util.hpp" + +//#define USE_sparse + + +namespace esekfom { + +using namespace Eigen; + +//used for iterated error state EKF update +//for the aim to calculate measurement (z), estimate measurement (h), partial differention matrices (h_x, h_v) and the noise covariance (R) at the same time, by only one function. +//applied for measurement as a manifold. +template +struct share_datastruct +{ + bool valid; + bool converge; + M z; + Eigen::Matrix h_v; + Eigen::Matrix h_x; + Eigen::Matrix R; +}; + +//used for iterated error state EKF update +//for the aim to calculate measurement (z), estimate measurement (h), partial differention matrices (h_x, h_v) and the noise covariance (R) at the same time, by only one function. +//applied for measurement as an Eigen matrix whose dimension is changing +template +struct dyn_share_datastruct +{ + bool valid; + bool converge; + Eigen::Matrix z; + Eigen::Matrix h; + Eigen::Matrix h_v; + Eigen::Matrix h_x; + Eigen::Matrix R; +}; + +//used for iterated error state EKF update +//for the aim to calculate measurement (z), estimate measurement (h), partial differention matrices (h_x, h_v) and the noise covariance (R) at the same time, by only one function. +//applied for measurement as a dynamic manifold whose dimension or type is changing +template +struct dyn_runtime_share_datastruct +{ + bool valid; + bool converge; + //Z z; + Eigen::Matrix h_v; + Eigen::Matrix h_x; + Eigen::Matrix R; +}; + +template +class esekf{ + + typedef esekf self; + enum{ + n = state::DOF, m = state::DIM, l = measurement::DOF + }; + +public: + + typedef typename state::scalar scalar_type; + typedef Matrix cov; + typedef Matrix cov_; + typedef SparseMatrix spMt; + typedef Matrix vectorized_state; + typedef Matrix flatted_state; + typedef flatted_state processModel(state &, const input &); + typedef Eigen::Matrix processMatrix1(state &, const input &); + typedef Eigen::Matrix processMatrix2(state &, const input &); + typedef Eigen::Matrix processnoisecovariance; + typedef measurement measurementModel(state &, bool &); + typedef measurement measurementModel_share(state &, share_datastruct &); + typedef Eigen::Matrix measurementModel_dyn(state &, bool &); + //typedef Eigen::Matrix measurementModel_dyn_share(state &, dyn_share_datastruct &); + typedef void measurementModel_dyn_share(state &, dyn_share_datastruct &); + typedef Eigen::Matrix measurementMatrix1(state &, bool&); + typedef Eigen::Matrix measurementMatrix1_dyn(state &, bool&); + typedef Eigen::Matrix measurementMatrix2(state &, bool&); + typedef Eigen::Matrix measurementMatrix2_dyn(state &, bool&); + typedef Eigen::Matrix measurementnoisecovariance; + typedef Eigen::Matrix measurementnoisecovariance_dyn; + + esekf(const state &x = state(), + const cov &P = cov::Identity()): x_(x), P_(P){ + #ifdef USE_sparse + SparseMatrix ref(n, n); + ref.setIdentity(); + l_ = ref; + f_x_2 = ref; + f_x_1 = ref; + #endif + }; + + //receive system-specific models and their differentions. + //for measurement as a manifold. + void init(processModel f_in, processMatrix1 f_x_in, processMatrix2 f_w_in, measurementModel h_in, measurementMatrix1 h_x_in, measurementMatrix2 h_v_in, int maximum_iteration, scalar_type limit_vector[n]) + { + f = f_in; + f_x = f_x_in; + f_w = f_w_in; + h = h_in; + h_x = h_x_in; + h_v = h_v_in; + + maximum_iter = maximum_iteration; + for(int i=0; i f_w_ = f_w(x_, i_in); + Matrix f_w_final; + state x_before = x_; + x_.oplus(f_, dt); + + F_x1 = cov::Identity(); + for (std::vector, int> >::iterator it = x_.vect_state.begin(); it != x_.vect_state.end(); it++) { + int idx = (*it).first.first; + int dim = (*it).first.second; + int dof = (*it).second; + for(int i = 0; i < n; i++){ + for(int j=0; j res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = -1 * f_(dim + i) * dt; + } + MTK::SO3 res; + res.w() = MTK::exp(res.vec(), seg_SO3, scalar_type(1/2)); + #ifdef USE_sparse + res_temp_SO3 = res.toRotationMatrix(); + for(int i = 0; i < 3; i++){ + for(int j = 0; j < 3; j++){ + f_x_1.coeffRef(idx + i, idx + j) = res_temp_SO3(i, j); + } + } + #else + F_x1.template block<3, 3>(idx, idx) = res.toRotationMatrix(); + #endif + res_temp_SO3 = MTK::A_matrix(seg_SO3); + for(int i = 0; i < n; i++){ + f_x_final. template block<3, 1>(idx, i) = res_temp_SO3 * (f_x_. template block<3, 1>(dim, i)); + } + for(int i = 0; i < process_noise_dof; i++){ + f_w_final. template block<3, 1>(idx, i) = res_temp_SO3 * (f_w_. template block<3, 1>(dim, i)); + } + } + + + Matrix res_temp_S2; + Matrix res_temp_S2_; + MTK::vect<3, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_S2(i) = f_(dim + i) * dt; + } + MTK::vect<2, scalar_type> vec = MTK::vect<2, scalar_type>::Zero(); + MTK::SO3 res; + res.w() = MTK::exp(res.vec(), seg_S2, scalar_type(1/2)); + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_before.S2_Mx(Mx, vec, idx); + #ifdef USE_sparse + res_temp_S2_ = Nx * res.toRotationMatrix() * Mx; + for(int i = 0; i < 2; i++){ + for(int j = 0; j < 2; j++){ + f_x_1.coeffRef(idx + i, idx + j) = res_temp_S2_(i, j); + } + } + #else + F_x1.template block<2, 2>(idx, idx) = Nx * res.toRotationMatrix() * Mx; + #endif + + Eigen::Matrix x_before_hat; + x_before.S2_hat(x_before_hat, idx); + res_temp_S2 = -Nx * res.toRotationMatrix() * x_before_hat*MTK::A_matrix(seg_S2).transpose(); + + for(int i = 0; i < n; i++){ + f_x_final. template block<2, 1>(idx, i) = res_temp_S2 * (f_x_. template block<3, 1>(dim, i)); + + } + for(int i = 0; i < process_noise_dof; i++){ + f_w_final. template block<2, 1>(idx, i) = res_temp_S2 * (f_w_. template block<3, 1>(dim, i)); + } + } + + #ifdef USE_sparse + f_x_1.makeCompressed(); + spMt f_x2 = f_x_final.sparseView(); + spMt f_w1 = f_w_final.sparseView(); + spMt xp = f_x_1 + f_x2 * dt; + P_ = xp * P_ * xp.transpose() + (f_w1 * dt) * Q * (f_w1 * dt).transpose(); + #else + F_x1 += f_x_final * dt; + P_ = (F_x1) * P_ * (F_x1).transpose() + (dt * f_w_final) * Q * (dt * f_w_final).transpose(); + #endif + } + + //iterated error state EKF update for measurement as a manifold. + void update_iterated(measurement& z, measurementnoisecovariance &R) { + + if(!(is_same())){ + std::cerr << "the scalar type of measurment must be the same as the state" << std::endl; + std::exit(100); + } + int t = 0; + bool converg = true; + bool valid = true; + state x_propagated = x_; + cov P_propagated = P_; + + for(int i=-1; i h_x_ = h_x(x_, valid); + Matrix h_v_ = h_v(x_, valid); + #endif + if(! valid) + { + continue; + } + + P_ = P_propagated; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx(idx+i); + } + + res_temp_SO3 = A_matrix(seg_SO3).transpose(); + dx_new.template block<3, 1>(idx, 0) = res_temp_SO3 * dx.template block<3, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 3>(i, idx) =(P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx(idx + i); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + dx_new.template block<2, 1>(idx, 0) = res_temp_S2 * dx.template block<2, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + + Matrix K_; + if(n > l) + { + #ifdef USE_sparse + Matrix K_temp = h_x_ * P_ * h_x_.transpose(); + spMt R_temp = h_v_ * R_ * h_v_.transpose(); + K_temp += R_temp; + K_ = P_ * h_x_.transpose() * K_temp.inverse(); + #else + K_= P_ * h_x_.transpose() * (h_x_ * P_ * h_x_.transpose() + h_v_ * R * h_v_.transpose()).inverse(); + #endif + } + else + { + #ifdef USE_sparse + measurementnoisecovariance b = measurementnoisecovariance::Identity(); + Eigen::SparseQR, Eigen::COLAMDOrdering> solver; + solver.compute(R_); + measurementnoisecovariance R_in_temp = solver.solve(b); + spMt R_in = R_in_temp.sparseView(); + spMt K_temp = h_x_.transpose() * R_in * h_x_; + cov P_temp = P_.inverse(); + P_temp += K_temp; + K_ = P_temp.inverse() * h_x_.transpose() * R_in; + #else + measurementnoisecovariance R_in = (h_v_*R*h_v_.transpose()).inverse(); + K_ = (h_x_.transpose() * R_in * h_x_ + P_.inverse()).inverse() * h_x_.transpose() * R_in; + #endif + } + Matrix innovation; + z.boxminus(innovation, h(x_, valid)); + cov K_x = K_ * h_x_; + Matrix dx_ = K_ * innovation + (K_x - Matrix::Identity()) * dx_new; + state x_before = x_; + x_.boxplus(dx_); + + converg = true; + for(int i = 0; i < n ; i++) + { + if(std::fabs(dx_[i]) > limit[i]) + { + converg = false; + break; + } + } + + if(converg) t++; + + if(t > 1 || i == maximum_iter - 1) + { + L_ = P_; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for(typename std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx_(i + idx); + } + res_temp_SO3 = A_matrix(seg_SO3).transpose(); + for(int i = 0; i < n; i++){ + L_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + if(n > l) + { + for(int i = 0; i < l; i++){ + K_. template block<3, 1>(idx, i) = res_temp_SO3 * (K_. template block<3, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<3, 1>(idx, i) = res_temp_SO3 * (K_x. template block<3, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 3>(i, idx) = (L_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + P_. template block<1, 3>(i, idx) = (P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for(typename std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx_(i + idx); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + + for(int i = 0; i < n; i++){ + L_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + if(n > l) + { + for(int i = 0; i < l; i++){ + K_. template block<2, 1>(idx, i) = res_temp_S2 * (K_. template block<2, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<2, 1>(idx, i) = res_temp_S2 * (K_x. template block<2, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 2>(i, idx) = (L_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + if(n > l) + { + P_ = L_ - K_ * h_x_ * P_; + } + else + { + P_ = L_ - K_x * P_; + } + return; + } + } + } + + //iterated error state EKF update for measurement as a manifold. + //calculate measurement (z), estimate measurement (h), partial differention matrices (h_x, h_v) and the noise covariance (R) at the same time, by only one function. + void update_iterated_share() { + + if(!(is_same())){ + std::cerr << "the scalar type of measurment must be the same as the state" << std::endl; + std::exit(100); + } + + int t = 0; + share_datastruct _share; + _share.valid = true; + _share.converge = true; + state x_propagated = x_; + cov P_propagated = P_; + + for(int i=-1; i h_x_ = _share.h_x; + Matrix h_v_ = _share.h_v; + #endif + if(! _share.valid) + { + continue; + } + + P_ = P_propagated; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx(idx+i); + } + + res_temp_SO3 = A_matrix(seg_SO3).transpose(); + dx_new.template block<3, 1>(idx, 0) = res_temp_SO3 * dx.template block<3, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 3>(i, idx) =(P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx(idx + i); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + dx_new.template block<2, 1>(idx, 0) = res_temp_S2 * dx.template block<2, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + + Matrix K_; + if(n > l) + { + #ifdef USE_sparse + Matrix K_temp = h_x_ * P_ * h_x_.transpose(); + spMt R_temp = h_v_ * R_ * h_v_.transpose(); + K_temp += R_temp; + K_ = P_ * h_x_.transpose() * K_temp.inverse(); + #else + K_= P_ * h_x_.transpose() * (h_x_ * P_ * h_x_.transpose() + h_v_ * R * h_v_.transpose()).inverse(); + #endif + } + else + { + #ifdef USE_sparse + measurementnoisecovariance b = measurementnoisecovariance::Identity(); + Eigen::SparseQR, Eigen::COLAMDOrdering> solver; + solver.compute(R_); + measurementnoisecovariance R_in_temp = solver.solve(b); + spMt R_in = R_in_temp.sparseView(); + spMt K_temp = h_x_.transpose() * R_in * h_x_; + cov P_temp = P_.inverse(); + P_temp += K_temp; + K_ = P_temp.inverse() * h_x_.transpose() * R_in; + #else + measurementnoisecovariance R_in = (h_v_*R*h_v_.transpose()).inverse(); + K_ = (h_x_.transpose() * R_in * h_x_ + P_.inverse()).inverse() * h_x_.transpose() * R_in; + #endif + } + Matrix innovation; + z.boxminus(innovation, h); + cov K_x = K_ * h_x_; + Matrix dx_ = K_ * innovation + (K_x - Matrix::Identity()) * dx_new; + state x_before = x_; + x_.boxplus(dx_); + + _share.converge = true; + for(int i = 0; i < n ; i++) + { + if(std::fabs(dx_[i]) > limit[i]) + { + _share.converge = false; + break; + } + } + + if(_share.converge) t++; + + if(t > 1 || i == maximum_iter - 1) + { + L_ = P_; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for(typename std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx_(i + idx); + } + res_temp_SO3 = A_matrix(seg_SO3).transpose(); + for(int i = 0; i < n; i++){ + L_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + if(n > l) + { + for(int i = 0; i < l; i++){ + K_. template block<3, 1>(idx, i) = res_temp_SO3 * (K_. template block<3, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<3, 1>(idx, i) = res_temp_SO3 * (K_x. template block<3, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 3>(i, idx) = (L_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + P_. template block<1, 3>(i, idx) = (P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for(typename std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx_(i + idx); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + + for(int i = 0; i < n; i++){ + L_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + if(n > l) + { + for(int i = 0; i < l; i++){ + K_. template block<2, 1>(idx, i) = res_temp_S2 * (K_. template block<2, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<2, 1>(idx, i) = res_temp_S2 * (K_x. template block<2, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 2>(i, idx) = (L_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + if(n > l) + { + P_ = L_ - K_ * h_x_ * P_; + } + else + { + P_ = L_ - K_x * P_; + } + return; + } + } + } + + //iterated error state EKF update for measurement as an Eigen matrix whose dimension is changing. + void update_iterated_dyn(Eigen::Matrix z, measurementnoisecovariance_dyn R) { + + int t = 0; + bool valid = true; + bool converg = true; + state x_propagated = x_; + cov P_propagated = P_; + int dof_Measurement; + int dof_Measurement_noise = R.rows(); + for(int i=-1; i h_x_ = h_x_dyn(x_, valid); + Matrix h_v_ = h_v_dyn(x_, valid); + #endif + Matrix h_ = h_dyn(x_, valid); + dof_Measurement = h_.rows(); + vectorized_state dx, dx_new; + x_.boxminus(dx, x_propagated); + dx_new = dx; + if(! valid) + { + continue; + } + + P_ = P_propagated; + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx(idx+i); + } + + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + dx_new.template block<3, 1>(idx, 0) = res_temp_SO3 * dx_new.template block<3, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 3>(i, idx) =(P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx(idx + i); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + dx_new.template block<2, 1>(idx, 0) = res_temp_S2 * dx_new.template block<2, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + + Matrix K_; + if(n > dof_Measurement) + { + #ifdef USE_sparse + Matrix K_temp = h_x_ * P_ * h_x_.transpose(); + spMt R_temp = h_v_ * R_ * h_v_.transpose(); + K_temp += R_temp; + K_ = P_ * h_x_.transpose() * K_temp.inverse(); + #else + K_= P_ * h_x_.transpose() * (h_x_ * P_ * h_x_.transpose() + h_v_ * R * h_v_.transpose()).inverse(); + #endif + } + else + { + #ifdef USE_sparse + Eigen::Matrix b = Eigen::Matrix::Identity(dof_Measurement_noise, dof_Measurement_noise); + Eigen::SparseQR, Eigen::COLAMDOrdering> solver; + solver.compute(R_); + Eigen::Matrix R_in_temp = solver.solve(b); + spMt R_in = R_in_temp.sparseView(); + spMt K_temp = h_x_.transpose() * R_in * h_x_; + cov P_temp = P_.inverse(); + P_temp += K_temp; + K_ = P_temp.inverse() * h_x_.transpose() * R_in; + #else + Eigen::Matrix R_in = (h_v_*R*h_v_.transpose()).inverse(); + K_ = (h_x_.transpose() * R_in * h_x_ + P_.inverse()).inverse() * h_x_.transpose() * R_in; + #endif + } + cov K_x = K_ * h_x_; + Matrix dx_ = K_ * (z - h_) + (K_x - Matrix::Identity()) * dx_new; + state x_before = x_; + x_.boxplus(dx_); + converg = true; + for(int i = 0; i < n ; i++) + { + if(std::fabs(dx_[i]) > limit[i]) + { + converg = false; + break; + } + } + if(converg) t++; + if(t > 1 || i == maximum_iter - 1) + { + L_ = P_; + std::cout << "iteration time:" << t << "," << i << std::endl; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for(typename std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx_(i + idx); + } + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + for(int i = 0; i < n; i++){ + L_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<3, 1>(idx, i) = res_temp_SO3 * (K_. template block<3, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<3, 1>(idx, i) = res_temp_SO3 * (K_x. template block<3, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 3>(i, idx) = (L_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + P_. template block<1, 3>(i, idx) = (P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for(typename std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx_(i + idx); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + + for(int i = 0; i < n; i++){ + L_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<2, 1>(idx, i) = res_temp_S2 * (K_. template block<2, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<2, 1>(idx, i) = res_temp_S2 * (K_x. template block<2, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 2>(i, idx) = (L_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + if(n > dof_Measurement) + { + P_ = L_ - K_*h_x_*P_; + } + else + { + P_ = L_ - K_x * P_; + } + return; + } + } + } + //iterated error state EKF update for measurement as an Eigen matrix whose dimension is changing. + //calculate measurement (z), estimate measurement (h), partial differention matrices (h_x, h_v) and the noise covariance (R) at the same time, by only one function. + void update_iterated_dyn_share() { + + int t = 0; + dyn_share_datastruct dyn_share; + dyn_share.valid = true; + dyn_share.converge = true; + state x_propagated = x_; + cov P_propagated = P_; + int dof_Measurement; + int dof_Measurement_noise; + for(int i=-1; i h = h_dyn_share (x_, dyn_share); + Matrix z = dyn_share.z; + Matrix h = dyn_share.h; + #ifdef USE_sparse + spMt h_x = dyn_share.h_x.sparseView(); + spMt h_v = dyn_share.h_v.sparseView(); + spMt R_ = dyn_share.R.sparseView(); + #else + Matrix R = dyn_share.R; + Matrix h_x = dyn_share.h_x; + Matrix h_v = dyn_share.h_v; + #endif + dof_Measurement = h_x.rows(); + dof_Measurement_noise = dyn_share.R.rows(); + vectorized_state dx, dx_new; + x_.boxminus(dx, x_propagated); + dx_new = dx; + if(! (dyn_share.valid)) + { + continue; + } + + P_ = P_propagated; + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx(idx+i); + } + + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + dx_new.template block<3, 1>(idx, 0) = res_temp_SO3 * dx_new.template block<3, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 3>(i, idx) =(P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx(idx + i); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + dx_new.template block<2, 1>(idx, 0) = res_temp_S2 * dx_new.template block<2, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + + Matrix K_; + if(n > dof_Measurement) + { + #ifdef USE_sparse + Matrix K_temp = h_x * P_ * h_x.transpose(); + spMt R_temp = h_v * R_ * h_v.transpose(); + K_temp += R_temp; + K_ = P_ * h_x.transpose() * K_temp.inverse(); + #else + K_= P_ * h_x.transpose() * (h_x * P_ * h_x.transpose() + h_v * R * h_v.transpose()).inverse(); + #endif + } + else + { + #ifdef USE_sparse + Eigen::Matrix b = Eigen::Matrix::Identity(dof_Measurement_noise, dof_Measurement_noise); + Eigen::SparseQR, Eigen::COLAMDOrdering> solver; + solver.compute(R_); + Eigen::Matrix R_in_temp = solver.solve(b); + spMt R_in = R_in_temp.sparseView(); + spMt K_temp = h_x.transpose() * R_in * h_x; + cov P_temp = P_.inverse(); + P_temp += K_temp; + K_ = P_temp.inverse() * h_x.transpose() * R_in; + #else + Eigen::Matrix R_in = (h_v*R*h_v.transpose()).inverse(); + K_ = (h_x.transpose() * R_in * h_x + P_.inverse()).inverse() * h_x.transpose() * R_in; + #endif + } + + cov K_x = K_ * h_x; + Matrix dx_ = K_ * (z - h) + (K_x - Matrix::Identity()) * dx_new; + state x_before = x_; + x_.boxplus(dx_); + dyn_share.converge = true; + for(int i = 0; i < n ; i++) + { + if(std::fabs(dx_[i]) > limit[i]) + { + dyn_share.converge = false; + break; + } + } + if(dyn_share.converge) t++; + if(t > 1 || i == maximum_iter - 1) + { + L_ = P_; + std::cout << "iteration time:" << t << "," << i << std::endl; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for(typename std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx_(i + idx); + } + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + for(int i = 0; i < int(n); i++){ + L_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<3, 1>(idx, i) = res_temp_SO3 * (K_. template block<3, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<3, 1>(idx, i) = res_temp_SO3 * (K_x. template block<3, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 3>(i, idx) = (L_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + P_. template block<1, 3>(i, idx) = (P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for(typename std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx_(i + idx); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + + for(int i = 0; i < n; i++){ + L_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<2, 1>(idx, i) = res_temp_S2 * (K_. template block<2, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<2, 1>(idx, i) = res_temp_S2 * (K_x. template block<2, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 2>(i, idx) = (L_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + if(n > dof_Measurement) + { + P_ = L_ - K_*h_x*P_; + } + else + { + P_ = L_ - K_x * P_; + } + return; + } + } + } + + //iterated error state EKF update for measurement as a dynamic manifold, whose dimension or type is changing. + //the measurement and the measurement model are received in a dynamic manner. + template + void update_iterated_dyn_runtime(measurement_runtime z, measurementnoisecovariance_dyn R, measurementModel_runtime h_runtime) { + + int t = 0; + bool valid = true; + bool converg = true; + state x_propagated = x_; + cov P_propagated = P_; + int dof_Measurement; + int dof_Measurement_noise; + for(int i=-1; i h_x_ = h_x_dyn(x_, valid); + Matrix h_v_ = h_v_dyn(x_, valid); + #endif + measurement_runtime h_ = h_runtime(x_, valid); + dof_Measurement = measurement_runtime::DOF; + dof_Measurement_noise = R.rows(); + vectorized_state dx, dx_new; + x_.boxminus(dx, x_propagated); + dx_new = dx; + if(! valid) + { + continue; + } + + P_ = P_propagated; + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx(idx+i); + } + + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + dx_new.template block<3, 1>(idx, 0) = res_temp_SO3 * dx_new.template block<3, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 3>(i, idx) =(P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx(idx + i); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + dx_new.template block<2, 1>(idx, 0) = res_temp_S2 * dx_new.template block<2, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + + Matrix K_; + if(n > dof_Measurement) + { + #ifdef USE_sparse + Matrix K_temp = h_x_ * P_ * h_x_.transpose(); + spMt R_temp = h_v_ * R_ * h_v_.transpose(); + K_temp += R_temp; + K_ = P_ * h_x_.transpose() * K_temp.inverse(); + #else + K_= P_ * h_x_.transpose() * (h_x_ * P_ * h_x_.transpose() + h_v_ * R * h_v_.transpose()).inverse(); + #endif + } + else + { + #ifdef USE_sparse + Eigen::Matrix b = Eigen::Matrix::Identity(dof_Measurement_noise, dof_Measurement_noise); + Eigen::SparseQR, Eigen::COLAMDOrdering> solver; + solver.compute(R_); + Eigen::Matrix R_in_temp = solver.solve(b); + spMt R_in = R_in_temp.sparseView(); + spMt K_temp = h_x_.transpose() * R_in * h_x_; + cov P_temp = P_.inverse(); + P_temp += K_temp; + K_ = P_temp.inverse() * h_x_.transpose() * R_in; + #else + Eigen::Matrix R_in = (h_v_*R*h_v_.transpose()).inverse(); + K_ = (h_x_.transpose() * R_in * h_x_ + P_.inverse()).inverse() * h_x_.transpose() * R_in; + #endif + } + cov K_x = K_ * h_x_; + Eigen::Matrix innovation; + z.boxminus(innovation, h_); + Matrix dx_ = K_ * innovation + (K_x - Matrix::Identity()) * dx_new; + state x_before = x_; + x_.boxplus(dx_); + converg = true; + for(int i = 0; i < n ; i++) + { + if(std::fabs(dx_[i]) > limit[i]) + { + converg = false; + break; + } + } + if(converg) t++; + if(t > 1 || i == maximum_iter - 1) + { + L_ = P_; + std::cout << "iteration time:" << t << "," << i << std::endl; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for(typename std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx_(i + idx); + } + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + for(int i = 0; i < n; i++){ + L_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<3, 1>(idx, i) = res_temp_SO3 * (K_. template block<3, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<3, 1>(idx, i) = res_temp_SO3 * (K_x. template block<3, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 3>(i, idx) = (L_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + P_. template block<1, 3>(i, idx) = (P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for(typename std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx_(i + idx); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + + for(int i = 0; i < n; i++){ + L_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<2, 1>(idx, i) = res_temp_S2 * (K_. template block<2, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<2, 1>(idx, i) = res_temp_S2 * (K_x. template block<2, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 2>(i, idx) = (L_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + if(n > dof_Measurement) + { + P_ = L_ - K_*h_x_*P_; + } + else + { + P_ = L_ - K_x * P_; + } + return; + } + } + } + + //iterated error state EKF update for measurement as a dynamic manifold, whose dimension or type is changing. + //the measurement and the measurement model are received in a dynamic manner. + //calculate measurement (z), estimate measurement (h), partial differention matrices (h_x, h_v) and the noise covariance (R) at the same time, by only one function. + template + void update_iterated_dyn_runtime_share(measurement_runtime z, measurementModel_dyn_runtime_share h) { + + int t = 0; + dyn_runtime_share_datastruct dyn_share; + dyn_share.valid = true; + dyn_share.converge = true; + state x_propagated = x_; + cov P_propagated = P_; + int dof_Measurement; + int dof_Measurement_noise; + for(int i=-1; i R = dyn_share.R; + Matrix h_x = dyn_share.h_x; + Matrix h_v = dyn_share.h_v; + #endif + dof_Measurement = measurement_runtime::DOF; + dof_Measurement_noise = dyn_share.R.rows(); + vectorized_state dx, dx_new; + x_.boxminus(dx, x_propagated); + dx_new = dx; + if(! (dyn_share.valid)) + { + continue; + } + + P_ = P_propagated; + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx(idx+i); + } + + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + dx_new.template block<3, 1>(idx, 0) = res_temp_SO3 * dx_new.template block<3, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 3>(i, idx) =(P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx(idx + i); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + dx_new.template block<2, 1>(idx, 0) = res_temp_S2 * dx_new.template block<2, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + + Matrix K_; + if(n > dof_Measurement) + { + #ifdef USE_sparse + Matrix K_temp = h_x * P_ * h_x.transpose(); + spMt R_temp = h_v * R_ * h_v.transpose(); + K_temp += R_temp; + K_ = P_ * h_x.transpose() * K_temp.inverse(); + #else + K_= P_ * h_x.transpose() * (h_x * P_ * h_x.transpose() + h_v * R * h_v.transpose()).inverse(); + #endif + } + else + { + #ifdef USE_sparse + Eigen::Matrix b = Eigen::Matrix::Identity(dof_Measurement_noise, dof_Measurement_noise); + Eigen::SparseQR, Eigen::COLAMDOrdering> solver; + solver.compute(R_); + Eigen::Matrix R_in_temp = solver.solve(b); + spMt R_in =R_in_temp.sparseView(); + spMt K_temp = h_x.transpose() * R_in * h_x; + cov P_temp = P_.inverse(); + P_temp += K_temp; + K_ = P_temp.inverse() * h_x.transpose() * R_in; + #else + Eigen::Matrix R_in = (h_v*R*h_v.transpose()).inverse(); + K_ = (h_x.transpose() * R_in * h_x + P_.inverse()).inverse() * h_x.transpose() * R_in; + #endif + } + cov K_x = K_ * h_x; + Eigen::Matrix innovation; + z.boxminus(innovation, h_); + Matrix dx_ = K_ * innovation + (K_x - Matrix::Identity()) * dx_new; + state x_before = x_; + x_.boxplus(dx_); + dyn_share.converge = true; + for(int i = 0; i < n ; i++) + { + if(std::fabs(dx_[i]) > limit[i]) + { + dyn_share.converge = false; + break; + } + } + if(dyn_share.converge) t++; + if(t > 1 || i == maximum_iter - 1) + { + L_ = P_; + std::cout << "iteration time:" << t << "," << i << std::endl; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for(typename std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx_(i + idx); + } + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + for(int i = 0; i < int(n); i++){ + L_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<3, 1>(idx, i) = res_temp_SO3 * (K_. template block<3, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<3, 1>(idx, i) = res_temp_SO3 * (K_x. template block<3, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 3>(i, idx) = (L_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + P_. template block<1, 3>(i, idx) = (P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for(typename std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx_(i + idx); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + + for(int i = 0; i < n; i++){ + L_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + if(n > dof_Measurement) + { + for(int i = 0; i < dof_Measurement; i++){ + K_. template block<2, 1>(idx, i) = res_temp_S2 * (K_. template block<2, 1>(idx, i)); + } + } + else + { + for(int i = 0; i < n; i++){ + K_x. template block<2, 1>(idx, i) = res_temp_S2 * (K_x. template block<2, 1>(idx, i)); + } + } + for(int i = 0; i < n; i++){ + L_. template block<1, 2>(i, idx) = (L_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + if(n > dof_Measurement) + { + P_ = L_ - K_*h_x * P_; + } + else + { + P_ = L_ - K_x * P_; + } + return; + } + } + } + + //iterated error state EKF update modified for one specific system. + void update_iterated_dyn_share_modified(double R, double &solve_time) { + + dyn_share_datastruct dyn_share; + dyn_share.valid = true; + dyn_share.converge = true; + int t = 0; + state x_propagated = x_; + cov P_propagated = P_; + int dof_Measurement; + + Matrix K_h; + Matrix K_x; + + vectorized_state dx_new = vectorized_state::Zero(); + for(int i=-1; i h = h_dyn_share(x_, dyn_share); + #ifdef USE_sparse + spMt h_x_ = dyn_share.h_x.sparseView(); + #else + Eigen::Matrix h_x_ = dyn_share.h_x; + #endif + double solve_start = omp_get_wtime(); + dof_Measurement = h_x_.rows(); + vectorized_state dx; + x_.boxminus(dx, x_propagated); + dx_new = dx; + + + + P_ = P_propagated; + + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx(idx+i); + } + + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + dx_new.template block<3, 1>(idx, 0) = res_temp_SO3 * dx_new.template block<3, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 3>(i, idx) =(P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for (std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx(idx + i); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + dx_new.template block<2, 1>(idx, 0) = res_temp_S2 * dx_new.template block<2, 1>(idx, 0); + for(int i = 0; i < n; i++){ + P_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + for(int i = 0; i < n; i++){ + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + //Matrix K_; + //Matrix K_h; + //Matrix K_x; + + /* + if(n > dof_Measurement) + { + K_= P_ * h_x_.transpose() * (h_x_ * P_ * h_x_.transpose()/R + Eigen::Matrix::Identity(dof_Measurement, dof_Measurement)).inverse()/R; + } + else + { + K_= (h_x_.transpose() * h_x_ + (P_/R).inverse()).inverse()*h_x_.transpose(); + } + */ + + if(n > dof_Measurement) + { + //#ifdef USE_sparse + //Matrix K_temp = h_x * P_ * h_x.transpose(); + //spMt R_temp = h_v * R_ * h_v.transpose(); + //K_temp += R_temp; + Eigen::Matrix h_x_cur = Eigen::Matrix::Zero(dof_Measurement, n); + h_x_cur.topLeftCorner(dof_Measurement, 12) = h_x_; + /* + h_x_cur.col(0) = h_x_.col(0); + h_x_cur.col(1) = h_x_.col(1); + h_x_cur.col(2) = h_x_.col(2); + h_x_cur.col(3) = h_x_.col(3); + h_x_cur.col(4) = h_x_.col(4); + h_x_cur.col(5) = h_x_.col(5); + h_x_cur.col(6) = h_x_.col(6); + h_x_cur.col(7) = h_x_.col(7); + h_x_cur.col(8) = h_x_.col(8); + h_x_cur.col(9) = h_x_.col(9); + h_x_cur.col(10) = h_x_.col(10); + h_x_cur.col(11) = h_x_.col(11); + */ + + Matrix K_ = P_ * h_x_cur.transpose() * (h_x_cur * P_ * h_x_cur.transpose()/R + Eigen::Matrix::Identity(dof_Measurement, dof_Measurement)).inverse()/R; + K_h = K_ * dyn_share.h; + K_x = K_ * h_x_cur; + //#else + // K_= P_ * h_x.transpose() * (h_x * P_ * h_x.transpose() + h_v * R * h_v.transpose()).inverse(); + //#endif + } + else + { + #ifdef USE_sparse + //Eigen::Matrix b = Eigen::Matrix::Identity(); + //Eigen::SparseQR, Eigen::COLAMDOrdering> solver; + spMt A = h_x_.transpose() * h_x_; + cov P_temp = (P_/R).inverse(); + P_temp. template block<12, 12>(0, 0) += A; + P_temp = P_temp.inverse(); + /* + Eigen::Matrix h_x_cur = Eigen::Matrix::Zero(dof_Measurement, n); + h_x_cur.col(0) = h_x_.col(0); + h_x_cur.col(1) = h_x_.col(1); + h_x_cur.col(2) = h_x_.col(2); + h_x_cur.col(3) = h_x_.col(3); + h_x_cur.col(4) = h_x_.col(4); + h_x_cur.col(5) = h_x_.col(5); + h_x_cur.col(6) = h_x_.col(6); + h_x_cur.col(7) = h_x_.col(7); + h_x_cur.col(8) = h_x_.col(8); + h_x_cur.col(9) = h_x_.col(9); + h_x_cur.col(10) = h_x_.col(10); + h_x_cur.col(11) = h_x_.col(11); + */ + K_ = P_temp. template block(0, 0) * h_x_.transpose(); + K_x = cov::Zero(); + K_x. template block(0, 0) = P_inv. template block(0, 0) * HTH; + /* + solver.compute(R_); + Eigen::Matrix R_in_temp = solver.solve(b); + spMt R_in =R_in_temp.sparseView(); + spMt K_temp = h_x.transpose() * R_in * h_x; + cov P_temp = P_.inverse(); + P_temp += K_temp; + K_ = P_temp.inverse() * h_x.transpose() * R_in; + */ + #else + cov P_temp = (P_/R).inverse(); + //Eigen::Matrix h_T = h_x_.transpose(); + Eigen::Matrix HTH = h_x_.transpose() * h_x_; + P_temp. template block<12, 12>(0, 0) += HTH; + /* + Eigen::Matrix h_x_cur = Eigen::Matrix::Zero(dof_Measurement, n); + //std::cout << "line 1767" << std::endl; + h_x_cur.col(0) = h_x_.col(0); + h_x_cur.col(1) = h_x_.col(1); + h_x_cur.col(2) = h_x_.col(2); + h_x_cur.col(3) = h_x_.col(3); + h_x_cur.col(4) = h_x_.col(4); + h_x_cur.col(5) = h_x_.col(5); + h_x_cur.col(6) = h_x_.col(6); + h_x_cur.col(7) = h_x_.col(7); + h_x_cur.col(8) = h_x_.col(8); + h_x_cur.col(9) = h_x_.col(9); + h_x_cur.col(10) = h_x_.col(10); + h_x_cur.col(11) = h_x_.col(11); + */ + cov P_inv = P_temp.inverse(); + //std::cout << "line 1781" << std::endl; + K_h = P_inv. template block(0, 0) * h_x_.transpose() * dyn_share.h; + //std::cout << "line 1780" << std::endl; + //cov HTH_cur = cov::Zero(); + //HTH_cur. template block<12, 12>(0, 0) = HTH; + K_x.setZero(); // = cov::Zero(); + K_x. template block(0, 0) = P_inv. template block(0, 0) * HTH; + //K_= (h_x_.transpose() * h_x_ + (P_/R).inverse()).inverse()*h_x_.transpose(); + #endif + } + + //K_x = K_ * h_x_; + Matrix dx_ = K_h + (K_x - Matrix::Identity()) * dx_new; + state x_before = x_; + x_.boxplus(dx_); + dyn_share.converge = true; + for(int i = 0; i < n ; i++) + { + if(std::fabs(dx_[i]) > limit[i]) + { + dyn_share.converge = false; + break; + } + } + if(dyn_share.converge) t++; + + if(!t && i == maximum_iter - 2) + { + dyn_share.converge = true; + } + + if(t > 1 || i == maximum_iter - 1) + { + L_ = P_; + //std::cout << "iteration time" << t << "," << i << std::endl; + Matrix res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for(typename std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = dx_(i + idx); + } + res_temp_SO3 = MTK::A_matrix(seg_SO3).transpose(); + for(int i = 0; i < n; i++){ + L_. template block<3, 1>(idx, i) = res_temp_SO3 * (P_. template block<3, 1>(idx, i)); + } + // if(n > dof_Measurement) + // { + // for(int i = 0; i < dof_Measurement; i++){ + // K_.template block<3, 1>(idx, i) = res_temp_SO3 * (K_. template block<3, 1>(idx, i)); + // } + // } + // else + // { + for(int i = 0; i < 12; i++){ + K_x. template block<3, 1>(idx, i) = res_temp_SO3 * (K_x. template block<3, 1>(idx, i)); + } + //} + for(int i = 0; i < n; i++){ + L_. template block<1, 3>(i, idx) = (L_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + P_. template block<1, 3>(i, idx) = (P_. template block<1, 3>(i, idx)) * res_temp_SO3.transpose(); + } + } + + Matrix res_temp_S2; + MTK::vect<2, scalar_type> seg_S2; + for(typename std::vector >::iterator it = x_.S2_state.begin(); it != x_.S2_state.end(); it++) { + int idx = (*it).first; + + for(int i = 0; i < 2; i++){ + seg_S2(i) = dx_(i + idx); + } + + Eigen::Matrix Nx; + Eigen::Matrix Mx; + x_.S2_Nx_yy(Nx, idx); + x_propagated.S2_Mx(Mx, seg_S2, idx); + res_temp_S2 = Nx * Mx; + for(int i = 0; i < n; i++){ + L_. template block<2, 1>(idx, i) = res_temp_S2 * (P_. template block<2, 1>(idx, i)); + } + // if(n > dof_Measurement) + // { + // for(int i = 0; i < dof_Measurement; i++){ + // K_. template block<2, 1>(idx, i) = res_temp_S2 * (K_. template block<2, 1>(idx, i)); + // } + // } + // else + // { + for(int i = 0; i < 12; i++){ + K_x. template block<2, 1>(idx, i) = res_temp_S2 * (K_x. template block<2, 1>(idx, i)); + } + //} + for(int i = 0; i < n; i++){ + L_. template block<1, 2>(i, idx) = (L_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + P_. template block<1, 2>(i, idx) = (P_. template block<1, 2>(i, idx)) * res_temp_S2.transpose(); + } + } + + // if(n > dof_Measurement) + // { + // Eigen::Matrix h_x_cur = Eigen::Matrix::Zero(dof_Measurement, n); + // h_x_cur.topLeftCorner(dof_Measurement, 12) = h_x_; + // /* + // h_x_cur.col(0) = h_x_.col(0); + // h_x_cur.col(1) = h_x_.col(1); + // h_x_cur.col(2) = h_x_.col(2); + // h_x_cur.col(3) = h_x_.col(3); + // h_x_cur.col(4) = h_x_.col(4); + // h_x_cur.col(5) = h_x_.col(5); + // h_x_cur.col(6) = h_x_.col(6); + // h_x_cur.col(7) = h_x_.col(7); + // h_x_cur.col(8) = h_x_.col(8); + // h_x_cur.col(9) = h_x_.col(9); + // h_x_cur.col(10) = h_x_.col(10); + // h_x_cur.col(11) = h_x_.col(11); + // */ + // P_ = L_ - K_*h_x_cur * P_; + // } + // else + //{ + P_ = L_ - K_x.template block(0, 0) * P_.template block<12, n>(0, 0); + //} + solve_time += omp_get_wtime() - solve_start; + return; + } + solve_time += omp_get_wtime() - solve_start; + } + } + + void change_x(state &input_state) + { + x_ = input_state; + if((!x_.vect_state.size())&&(!x_.SO3_state.size())&&(!x_.S2_state.size())) + { + x_.build_S2_state(); + x_.build_SO3_state(); + x_.build_vect_state(); + } + } + + void change_P(cov &input_cov) + { + P_ = input_cov; + } + + const state& get_x() const { + return x_; + } + const cov& get_P() const { + return P_; + } +private: + state x_; + measurement m_; + cov P_; + spMt l_; + spMt f_x_1; + spMt f_x_2; + cov F_x1 = cov::Identity(); + cov F_x2 = cov::Identity(); + cov L_ = cov::Identity(); + + processModel *f; + processMatrix1 *f_x; + processMatrix2 *f_w; + + measurementModel *h; + measurementMatrix1 *h_x; + measurementMatrix2 *h_v; + + measurementModel_dyn *h_dyn; + measurementMatrix1_dyn *h_x_dyn; + measurementMatrix2_dyn *h_v_dyn; + + measurementModel_share *h_share; + measurementModel_dyn_share *h_dyn_share; + + int maximum_iter = 0; + scalar_type limit[n]; + + template + T check_safe_update( T _temp_vec ) + { + T temp_vec = _temp_vec; + if ( std::isnan( temp_vec(0, 0) ) ) + { + temp_vec.setZero(); + return temp_vec; + } + double angular_dis = temp_vec.block( 0, 0, 3, 1 ).norm() * 57.3; + double pos_dis = temp_vec.block( 3, 0, 3, 1 ).norm(); + if ( angular_dis >= 20 || pos_dis > 1 ) + { + printf( "Angular dis = %.2f, pos dis = %.2f\r\n", angular_dis, pos_dis ); + temp_vec.setZero(); + } + return temp_vec; + } +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +} // namespace esekfom + +#endif // ESEKFOM_EKF_HPP diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/esekfom/util.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/esekfom/util.hpp new file mode 100755 index 0000000..ab39fc4 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/esekfom/util.hpp @@ -0,0 +1,82 @@ +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Author: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef __MEKFOM_UTIL_HPP__ +#define __MEKFOM_UTIL_HPP__ + +#include +#include "../mtk/src/mtkmath.hpp" +namespace esekfom { + +template +class is_same { +public: + operator bool() { + return false; + } +}; +template +class is_same { +public: + operator bool() { + return true; + } +}; + +template +class is_double { +public: + operator bool() { + return false; + } +}; + +template<> +class is_double { +public: + operator bool() { + return true; + } +}; + +template +static T +id(const T &x) +{ + return x; +} + +} // namespace esekfom + +#endif // __MEKFOM_UTIL_HPP__ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/build_manifold.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/build_manifold.hpp new file mode 100755 index 0000000..2cdb106 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/build_manifold.hpp @@ -0,0 +1,229 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/build_manifold.hpp + * @brief Macro to automatically construct compound manifolds. + * + */ +#ifndef MTK_AUTOCONSTRUCT_HPP_ +#define MTK_AUTOCONSTRUCT_HPP_ + +#include + +#include +#include +#include + +#include "src/SubManifold.hpp" +#include "startIdx.hpp" + +#ifndef PARSED_BY_DOXYGEN +//////// internals ////// + +#define MTK_APPLY_MACRO_ON_TUPLE(r, macro, tuple) macro tuple + +#define MTK_TRANSFORM_COMMA(macro, entries) BOOST_PP_SEQ_ENUM(BOOST_PP_SEQ_TRANSFORM_S(1, MTK_APPLY_MACRO_ON_TUPLE, macro, entries)) + +#define MTK_TRANSFORM(macro, entries) BOOST_PP_SEQ_FOR_EACH_R(1, MTK_APPLY_MACRO_ON_TUPLE, macro, entries) + +#define MTK_CONSTRUCTOR_ARG( type, id) const type& id = type() +#define MTK_CONSTRUCTOR_COPY( type, id) id(id) +#define MTK_BOXPLUS( type, id) id.boxplus(MTK::subvector(__vec, &self::id), __scale); +#define MTK_OPLUS( type, id) id.oplus(MTK::subvector_(__vec, &self::id), __scale); +#define MTK_BOXMINUS( type, id) id.boxminus(MTK::subvector(__res, &self::id), __oth.id); +#define MTK_S2_hat( type, id) if(id.IDX == idx){id.S2_hat(res);} +#define MTK_S2_Nx_yy( type, id) if(id.IDX == idx){id.S2_Nx_yy(res);} +#define MTK_S2_Mx( type, id) if(id.IDX == idx){id.S2_Mx(res, dx);} +#define MTK_OSTREAM( type, id) << __var.id << " " +#define MTK_ISTREAM( type, id) >> __var.id +#define MTK_S2_state( type, id) if(id.TYP == 1){S2_state.push_back(std::make_pair(id.IDX, id.DIM));} +#define MTK_SO3_state( type, id) if(id.TYP == 2){(SO3_state).push_back(std::make_pair(id.IDX, id.DIM));} +#define MTK_vect_state( type, id) if(id.TYP == 0){(vect_state).push_back(std::make_pair(std::make_pair(id.IDX, id.DIM), type::DOF));} + +#define MTK_SUBVARLIST(seq, S2state, SO3state) \ +BOOST_PP_FOR_1( \ + ( \ + BOOST_PP_SEQ_SIZE(seq), \ + BOOST_PP_SEQ_HEAD(seq), \ + BOOST_PP_SEQ_TAIL(seq) (~), \ + 0,\ + 0,\ + S2state,\ + SO3state ),\ + MTK_ENTRIES_TEST, MTK_ENTRIES_NEXT, MTK_ENTRIES_OUTPUT) + +#define MTK_PUT_TYPE(type, id, dof, dim, S2state, SO3state) \ + MTK::SubManifold id; +#define MTK_PUT_TYPE_AND_ENUM(type, id, dof, dim, S2state, SO3state) \ + MTK_PUT_TYPE(type, id, dof, dim, S2state, SO3state) \ + enum {DOF = type::DOF + dof}; \ + enum {DIM = type::DIM+dim}; \ + typedef type::scalar scalar; + +#define MTK_ENTRIES_OUTPUT(r, state) MTK_ENTRIES_OUTPUT_I state +#define MTK_ENTRIES_OUTPUT_I(s, head, seq, dof, dim, S2state, SO3state) \ + MTK_APPLY_MACRO_ON_TUPLE(~, \ + BOOST_PP_IF(BOOST_PP_DEC(s), MTK_PUT_TYPE, MTK_PUT_TYPE_AND_ENUM), \ + ( BOOST_PP_TUPLE_REM_2 head, dof, dim, S2state, SO3state)) + +#define MTK_ENTRIES_TEST(r, state) MTK_TUPLE_ELEM_4_0 state + +//! this used to be BOOST_PP_TUPLE_ELEM_4_0: +#define MTK_TUPLE_ELEM_4_0(a,b,c,d,e,f, g) a + +#define MTK_ENTRIES_NEXT(r, state) MTK_ENTRIES_NEXT_I state +#define MTK_ENTRIES_NEXT_I(len, head, seq, dof, dim, S2state, SO3state) ( \ + BOOST_PP_DEC(len), \ + BOOST_PP_SEQ_HEAD(seq), \ + BOOST_PP_SEQ_TAIL(seq), \ + dof + BOOST_PP_TUPLE_ELEM_2_0 head::DOF,\ + dim + BOOST_PP_TUPLE_ELEM_2_0 head::DIM,\ + S2state,\ + SO3state) + +#endif /* not PARSED_BY_DOXYGEN */ + + +/** + * Construct a manifold. + * @param name is the class-name of the manifold, + * @param entries is the list of sub manifolds + * + * Entries must be given in a list like this: + * @code + * typedef MTK::trafo > Pose; + * typedef MTK::vect Vec3; + * MTK_BUILD_MANIFOLD(imu_state, + * ((Pose, pose)) + * ((Vec3, vel)) + * ((Vec3, acc_bias)) + * ) + * @endcode + * Whitespace is optional, but the double parentheses are necessary. + * Construction is done entirely in preprocessor. + * After construction @a name is also a manifold. Its members can be + * accessed by names given in @a entries. + * + * @note Variable types are not allowed to have commas, thus types like + * @c vect need to be typedef'ed ahead. + */ +#define MTK_BUILD_MANIFOLD(name, entries) \ +struct name { \ + typedef name self; \ + std::vector > S2_state;\ + std::vector > SO3_state;\ + std::vector, int> > vect_state;\ + MTK_SUBVARLIST(entries, S2_state, SO3_state) \ + name ( \ + MTK_TRANSFORM_COMMA(MTK_CONSTRUCTOR_ARG, entries) \ + ) : \ + MTK_TRANSFORM_COMMA(MTK_CONSTRUCTOR_COPY, entries) {}\ + int getDOF() const { return DOF; } \ + void boxplus(const MTK::vectview & __vec, scalar __scale = 1 ) { \ + MTK_TRANSFORM(MTK_BOXPLUS, entries)\ + } \ + void oplus(const MTK::vectview & __vec, scalar __scale = 1 ) { \ + MTK_TRANSFORM(MTK_OPLUS, entries)\ + } \ + void boxminus(MTK::vectview __res, const name& __oth) const { \ + MTK_TRANSFORM(MTK_BOXMINUS, entries)\ + } \ + friend std::ostream& operator<<(std::ostream& __os, const name& __var){ \ + return __os MTK_TRANSFORM(MTK_OSTREAM, entries); \ + } \ + void build_S2_state(){\ + MTK_TRANSFORM(MTK_S2_state, entries)\ + }\ + void build_vect_state(){\ + MTK_TRANSFORM(MTK_vect_state, entries)\ + }\ + void build_SO3_state(){\ + MTK_TRANSFORM(MTK_SO3_state, entries)\ + }\ + void S2_hat(Eigen::Matrix &res, int idx) {\ + MTK_TRANSFORM(MTK_S2_hat, entries)\ + }\ + void S2_Nx_yy(Eigen::Matrix &res, int idx) {\ + MTK_TRANSFORM(MTK_S2_Nx_yy, entries)\ + }\ + void S2_Mx(Eigen::Matrix &res, Eigen::Matrix dx, int idx) {\ + MTK_TRANSFORM(MTK_S2_Mx, entries)\ + }\ + friend std::istream& operator>>(std::istream& __is, name& __var){ \ + return __is MTK_TRANSFORM(MTK_ISTREAM, entries); \ + } \ +}; + + + +#endif /*MTK_AUTOCONSTRUCT_HPP_*/ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/SubManifold.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/SubManifold.hpp new file mode 100755 index 0000000..a1b13de --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/SubManifold.hpp @@ -0,0 +1,123 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/src/SubManifold.hpp + * @brief Defines the SubManifold class + */ + + +#ifndef SUBMANIFOLD_HPP_ +#define SUBMANIFOLD_HPP_ + + +#include "vectview.hpp" + + +namespace MTK { + +/** + * @ingroup SubManifolds + * Helper class for compound manifolds. + * This class wraps a manifold T and provides an enum IDX refering to the + * index of the SubManifold within the compound manifold. + * + * Memberpointers to a submanifold can be used for @ref SubManifolds "functions accessing submanifolds". + * + * @tparam T The manifold type of the sub-type + * @tparam idx The index of the sub-type within the compound manifold + */ +template +struct SubManifold : public T +{ + enum {IDX = idx, DIM = dim /*!< index of the sub-type within the compound manifold */ }; + //! manifold type + typedef T type; + + //! Construct from derived type + template + explicit + SubManifold(const X& t) : T(t) {}; + + //! Construct from internal type + //explicit + SubManifold(const T& t) : T(t) {}; + + //! inherit assignment operator + using T::operator=; + +}; + +} // namespace MTK + + +#endif /* SUBMANIFOLD_HPP_ */ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/mtkmath.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/mtkmath.hpp new file mode 100755 index 0000000..e3420d1 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/mtkmath.hpp @@ -0,0 +1,294 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/src/mtkmath.hpp + * @brief several math utility functions. + */ + +#ifndef MTKMATH_H_ +#define MTKMATH_H_ + +#include + +#include + +#include "../types/vect.hpp" + +#ifndef M_PI +#define M_PI 3.1415926535897932384626433832795 +#endif + + +namespace MTK { + +namespace internal { + +template +struct traits { + typedef typename Manifold::scalar scalar; + enum {DOF = Manifold::DOF}; + typedef vect vectorized_type; + typedef Eigen::Matrix matrix_type; +}; + +template<> +struct traits : traits > {}; +template<> +struct traits : traits > {}; + +} // namespace internal + +/** + * \defgroup MTKMath Mathematical helper functions + */ +//@{ + +//! constant @f$ \pi @f$ +const double pi = M_PI; + +template inline scalar tolerance(); + +template<> inline float tolerance() { return 1e-5f; } +template<> inline double tolerance() { return 1e-11; } + + +/** + * normalize @a x to @f$[-bound, bound] @f$. + * + * result for @f$ x = bound + 2\cdot n\cdot bound @f$ is arbitrary @f$\pm bound @f$. + */ +template +inline scalar normalize(scalar x, scalar bound){ //not used + if(std::fabs(x) <= bound) return x; + int r = (int)(x *(scalar(1.0)/ bound)); + return x - ((r + (r>>31) + 1) & ~1)*bound; +} + +/** + * Calculate cosine and sinc of sqrt(x2). + * @param x2 the squared angle must be non-negative + * @return a pair containing cos and sinc of sqrt(x2) + */ +template +std::pair cos_sinc_sqrt(const scalar &x2){ + using std::sqrt; + using std::cos; + using std::sin; + static scalar const taylor_0_bound = boost::math::tools::epsilon(); + static scalar const taylor_2_bound = sqrt(taylor_0_bound); + static scalar const taylor_n_bound = sqrt(taylor_2_bound); + + assert(x2>=0 && "argument must be non-negative"); + + // FIXME check if bigger bounds are possible + if(x2>=taylor_n_bound) { + // slow fall-back solution + scalar x = sqrt(x2); + return std::make_pair(cos(x), sin(x)/x); // x is greater than 0. + } + + // FIXME Replace by Horner-Scheme (4 instead of 5 FLOP/term, numerically more stable, theoretically cos and sinc can be calculated in parallel using SSE2 mulpd/addpd) + // TODO Find optimal coefficients using Remez algorithm + static scalar const inv[] = {1/3., 1/4., 1/5., 1/6., 1/7., 1/8., 1/9.}; + scalar cosi = 1., sinc=1; + scalar term = -1/2. * x2; + for(int i=0; i<3; ++i) { + cosi += term; + term *= inv[2*i]; + sinc += term; + term *= -inv[2*i+1] * x2; + } + + return std::make_pair(cosi, sinc); + +} + +template +Eigen::Matrix hat(const Base& v) { + Eigen::Matrix res; + res << 0, -v[2], v[1], + v[2], 0, -v[0], + -v[1], v[0], 0; + return res; +} + +template +Eigen::Matrix A_inv_trans(const Base& v){ + Eigen::Matrix res; + if(v.norm() > MTK::tolerance()) + { + res = Eigen::Matrix::Identity() + 0.5 * hat(v) + (1 - v.norm() * std::cos(v.norm() / 2) / 2 / std::sin(v.norm() / 2)) * hat(v) * hat(v) / v.squaredNorm(); + + } + else + { + res = Eigen::Matrix::Identity(); + } + + return res; +} + +template +Eigen::Matrix A_inv(const Base& v){ + Eigen::Matrix res; + if(v.norm() > MTK::tolerance()) + { + res = Eigen::Matrix::Identity() - 0.5 * hat(v) + (1 - v.norm() * std::cos(v.norm() / 2) / 2 / std::sin(v.norm() / 2)) * hat(v) * hat(v) / v.squaredNorm(); + + } + else + { + res = Eigen::Matrix::Identity(); + } + + return res; +} + +template +Eigen::Matrix S2_w_expw_( Eigen::Matrix v, scalar length) + { + Eigen::Matrix res; + scalar norm = std::sqrt(v[0]*v[0] + v[1]*v[1]); + if(norm < MTK::tolerance()){ + res = Eigen::Matrix::Zero(); + res(0, 1) = 1; + res(1, 2) = 1; + res /= length; + } + else{ + res << -v[0]*(1/norm-1/std::tan(norm))/std::sin(norm), norm/std::sin(norm), 0, + -v[1]*(1/norm-1/std::tan(norm))/std::sin(norm), 0, norm/std::sin(norm); + res /= length; + } + } + +template +Eigen::Matrix A_matrix(const Base & v){ + Eigen::Matrix res; + double squaredNorm = v[0] * v[0] + v[1] * v[1] + v[2] * v[2]; + double norm = std::sqrt(squaredNorm); + if(norm < MTK::tolerance()){ + res = Eigen::Matrix::Identity(); + } + else{ + res = Eigen::Matrix::Identity() + (1 - std::cos(norm)) / squaredNorm * hat(v) + (1 - std::sin(norm) / norm) / squaredNorm * hat(v) * hat(v); + } + return res; +} + +template +scalar exp(vectview result, vectview vec, const scalar& scale = 1) { + scalar norm2 = vec.squaredNorm(); + std::pair cos_sinc = cos_sinc_sqrt(scale*scale * norm2); + scalar mult = cos_sinc.second * scale; + result = mult * vec; + return cos_sinc.first; +} + + +/** + * Inverse function to @c exp. + * + * @param result @c vectview to the result + * @param w scalar part of input + * @param vec vector part of input + * @param scale scale result by this value + * @param plus_minus_periodicity if true values @f$[w, vec]@f$ and @f$[-w, -vec]@f$ give the same result + */ +template +void log(vectview result, + const scalar &w, const vectview vec, + const scalar &scale, bool plus_minus_periodicity) +{ + // FIXME implement optimized case for vec.squaredNorm() <= tolerance() * (w*w) via Rational Remez approximation ~> only one division + scalar nv = vec.norm(); + if(nv < tolerance()) { + if(!plus_minus_periodicity && w < 0) { + // find the maximal entry: + int i; + nv = vec.cwiseAbs().maxCoeff(&i); + result = scale * std::atan2(nv, w) * vect::Unit(i); + return; + } + nv = tolerance(); + } + scalar s = scale / nv * (plus_minus_periodicity ? std::atan(nv / w) : std::atan2(nv, w) ); + + result = s * vec; +} + + +} // namespace MTK + + +#endif /* MTKMATH_H_ */ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/vectview.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/vectview.hpp new file mode 100755 index 0000000..5025071 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/src/vectview.hpp @@ -0,0 +1,168 @@ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/src/vectview.hpp + * @brief Wrapper class around a pointer used as interface for plain vectors. + */ + +#ifndef VECTVIEW_HPP_ +#define VECTVIEW_HPP_ + +#include + +namespace MTK { + +/** + * A view to a vector. + * Essentially, @c vectview is only a pointer to @c scalar but can be used directly in @c Eigen expressions. + * The dimension of the vector is given as template parameter and type-checked when used in expressions. + * Data has to be modifiable. + * + * @tparam scalar Scalar type of the vector. + * @tparam dim Dimension of the vector. + * + * @todo @c vectview can be replaced by simple inheritance of @c Eigen::Map, as soon as they get const-correct + */ +namespace internal { + template + struct CovBlock { + typedef typename Eigen::Block, T1::DOF, T2::DOF> Type; + typedef typename Eigen::Block, T1::DOF, T2::DOF> ConstType; + }; + + template + struct CovBlock_ { + typedef typename Eigen::Block, T1::DIM, T2::DIM> Type; + typedef typename Eigen::Block, T1::DIM, T2::DIM> ConstType; + }; + + template + struct CrossCovBlock { + typedef typename Eigen::Block, T1::DOF, T2::DOF> Type; + typedef typename Eigen::Block, T1::DOF, T2::DOF> ConstType; + }; + + template + struct CrossCovBlock_ { + typedef typename Eigen::Block, T1::DIM, T2::DIM> Type; + typedef typename Eigen::Block, T1::DIM, T2::DIM> ConstType; + }; + + template + struct VectviewBase { + typedef Eigen::Matrix matrix_type; + typedef typename matrix_type::MapType Type; + typedef typename matrix_type::ConstMapType ConstType; + }; + + template + struct UnalignedType { + typedef T type; + }; +} + +template +class vectview : public internal::VectviewBase::Type { + typedef internal::VectviewBase VectviewBase; +public: + //! plain matrix type + typedef typename VectviewBase::matrix_type matrix_type; + //! base type + typedef typename VectviewBase::Type base; + //! construct from pointer + explicit + vectview(scalar* data, int dim_=dim) : base(data, dim_) {} + //! construct from plain matrix + vectview(matrix_type& m) : base(m.data(), m.size()) {} + //! construct from another @c vectview + vectview(const vectview &v) : base(v) {} + //! construct from Eigen::Block: + template + vectview(Eigen::VectorBlock block) : base(&block.coeffRef(0), block.size()) {} + template + vectview(Eigen::Block block) : base(&block.coeffRef(0), block.size()) {} + + //! inherit assignment operator + using base::operator=; + //! data pointer + scalar* data() {return const_cast(base::data());} +}; + +/** + * @c const version of @c vectview. + * Compared to @c Eigen::Map this implementation is const correct, i.e., + * data will not be modifiable using this view. + * + * @tparam scalar Scalar type of the vector. + * @tparam dim Dimension of the vector. + * + * @sa vectview + */ +template +class vectview : public internal::VectviewBase::ConstType { + typedef internal::VectviewBase VectviewBase; +public: + //! plain matrix type + typedef typename VectviewBase::matrix_type matrix_type; + //! base type + typedef typename VectviewBase::ConstType base; + //! construct from const pointer + explicit + vectview(const scalar* data, int dim_ = dim) : base(data, dim_) {} + //! construct from column vector + template + vectview(const Eigen::Matrix& m) : base(m.data()) {} + //! construct from row vector + template + vectview(const Eigen::Matrix& m) : base(m.data()) {} + //! construct from another @c vectview + vectview(vectview x) : base(x.data()) {} + //! construct from base + vectview(const base &x) : base(x) {} + /** + * Construct from Block + * @todo adapt this, when Block gets const-correct + */ + template + vectview(Eigen::VectorBlock block) : base(&block.coeffRef(0)) {} + template + vectview(Eigen::Block block) : base(&block.coeffRef(0)) {} + +}; + + +} // namespace MTK + +#endif /* VECTVIEW_HPP_ */ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/startIdx.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/startIdx.hpp new file mode 100755 index 0000000..4dc2958 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/startIdx.hpp @@ -0,0 +1,328 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/startIdx.hpp + * @brief Tools to access sub-elements of compound manifolds. + */ +#ifndef GET_START_INDEX_H_ +#define GET_START_INDEX_H_ + +#include + +#include "src/SubManifold.hpp" +#include "src/vectview.hpp" + +namespace MTK { + + +/** + * \defgroup SubManifolds Accessing Submanifolds + * For compound manifolds constructed using MTK_BUILD_MANIFOLD, member pointers + * can be used to get sub-vectors or matrix-blocks of a corresponding big matrix. + * E.g. for a type @a pose consisting of @a orient and @a trans the member pointers + * @c &pose::orient and @c &pose::trans give all required information and are still + * valid if the base type gets extended or the actual types of @a orient and @a trans + * change (e.g. from 2D to 3D). + * + * @todo Maybe require manifolds to typedef MatrixType and VectorType, etc. + */ +//@{ + +/** + * Determine the index of a sub-variable within a compound variable. + */ +template +int getStartIdx( MTK::SubManifold Base::*) +{ + return idx; +} + +template +int getStartIdx_( MTK::SubManifold Base::*) +{ + return dim; +} + +/** + * Determine the degrees of freedom of a sub-variable within a compound variable. + */ +template +int getDof( MTK::SubManifold Base::*) +{ + return T::DOF; +} +template +int getDim( MTK::SubManifold Base::*) +{ + return T::DIM; +} + +/** + * set the diagonal elements of a covariance matrix corresponding to a sub-variable + */ +template +void setDiagonal(Eigen::Matrix &cov, + MTK::SubManifold Base::*, const typename Base::scalar &val) +{ + cov.diagonal().template segment(idx).setConstant(val); +} + +template +void setDiagonal_(Eigen::Matrix &cov, + MTK::SubManifold Base::*, const typename Base::scalar &val) +{ + cov.diagonal().template segment(dim).setConstant(val); +} + +/** + * Get the subblock of corresponding to two members, i.e. + * \code + * Eigen::Matrix m; + * MTK::subblock(m, &Pose::orient, &Pose::trans) = some_expression; + * MTK::subblock(m, &Pose::trans, &Pose::orient) = some_expression.trans(); + * \endcode + * lets you modify mixed covariance entries in a bigger covariance matrix. + */ +template +typename MTK::internal::CovBlock::Type +subblock(Eigen::Matrix &cov, + MTK::SubManifold Base::*, MTK::SubManifold Base::*) +{ + return cov.template block(idx1, idx2); +} + +template +typename MTK::internal::CovBlock_::Type +subblock_(Eigen::Matrix &cov, + MTK::SubManifold Base::*, MTK::SubManifold Base::*) +{ + return cov.template block(dim1, dim2); +} + +template +typename MTK::internal::CrossCovBlock::Type +subblock(Eigen::Matrix &cov, MTK::SubManifold Base1::*, MTK::SubManifold Base2::*) +{ + return cov.template block(idx1, idx2); +} + +template +typename MTK::internal::CrossCovBlock_::Type +subblock_(Eigen::Matrix &cov, MTK::SubManifold Base1::*, MTK::SubManifold Base2::*) +{ + return cov.template block(dim1, dim2); +} +/** + * Get the subblock of corresponding to a member, i.e. + * \code + * Eigen::Matrix m; + * MTK::subblock(m, &Pose::orient) = some_expression; + * \endcode + * lets you modify covariance entries in a bigger covariance matrix. + */ +template +typename MTK::internal::CovBlock_::Type +subblock_(Eigen::Matrix &cov, + MTK::SubManifold Base::*) +{ + return cov.template block(dim, dim); +} + +template +typename MTK::internal::CovBlock::Type +subblock(Eigen::Matrix &cov, + MTK::SubManifold Base::*) +{ + return cov.template block(idx, idx); +} + +template +class get_cov { +public: + typedef Eigen::Matrix type; + typedef const Eigen::Matrix const_type; +}; + +template +class get_cov_ { +public: + typedef Eigen::Matrix type; + typedef const Eigen::Matrix const_type; +}; + +template +class get_cross_cov { +public: + typedef Eigen::Matrix type; + typedef const type const_type; +}; + +template +class get_cross_cov_ { +public: + typedef Eigen::Matrix type; + typedef const type const_type; +}; + + +template +vectview +subvector_impl_(vectview vec, SubManifold Base::*) +{ + return vec.template segment(dim); +} + +template +vectview +subvector_impl(vectview vec, SubManifold Base::*) +{ + return vec.template segment(idx); +} + +/** + * Get the subvector corresponding to a sub-manifold from a bigger vector. + */ + template +vectview +subvector_(vectview vec, SubManifold Base::* ptr) +{ + return subvector_impl_(vec, ptr); +} + +template +vectview +subvector(vectview vec, SubManifold Base::* ptr) +{ + return subvector_impl(vec, ptr); +} + +/** + * @todo This should be covered already by subvector(vectview vec,SubManifold Base::*) + */ +template +vectview +subvector(Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl(vectview(vec), ptr); +} + +template +vectview +subvector_(Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl_(vectview(vec), ptr); +} + +template +vectview +subvector_(const Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl_(vectview(vec), ptr); +} + +template +vectview +subvector(const Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl(vectview(vec), ptr); +} + + +/** + * const version of subvector(vectview vec,SubManifold Base::*) + */ +template +vectview +subvector_impl(const vectview cvec, SubManifold Base::*) +{ + return cvec.template segment(idx); +} + +template +vectview +subvector_impl_(const vectview cvec, SubManifold Base::*) +{ + return cvec.template segment(dim); +} + +template +vectview +subvector(const vectview cvec, SubManifold Base::* ptr) +{ + return subvector_impl(cvec, ptr); +} + + +} // namespace MTK + +#endif // GET_START_INDEX_H_ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/S2.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/S2.hpp new file mode 100755 index 0000000..789ebd9 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/S2.hpp @@ -0,0 +1,316 @@ +// This is a NEW implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/types/S2.hpp + * @brief Unit vectors on the sphere, or directions in 3D. + */ +#ifndef S2_H_ +#define S2_H_ + + +#include "vect.hpp" + +#include "SOn.hpp" +#include "../src/mtkmath.hpp" + + + + +namespace MTK { + +/** + * Manifold representation of @f$ S^2 @f$. + * Used for unit vectors on the sphere or directions in 3D. + * + * @todo add conversions from/to polar angles? + */ +template +struct S2 { + + typedef _scalar scalar; + typedef vect<3, scalar> vect_type; + typedef SO3 SO3_type; + typedef typename vect_type::base vec3; + scalar length = scalar(den)/scalar(num); + enum {DOF=2, TYP = 1, DIM = 3}; + +//private: + /** + * Unit vector on the sphere, or vector pointing in a direction + */ + vect_type vec; + +public: + S2() { + if(S2_typ == 3) vec=length * vec3(0, 0, std::sqrt(1)); + if(S2_typ == 2) vec=length * vec3(0, std::sqrt(1), 0); + if(S2_typ == 1) vec=length * vec3(std::sqrt(1), 0, 0); + } + S2(const scalar &x, const scalar &y, const scalar &z) : vec(vec3(x, y, z)) { + vec.normalize(); + vec = vec * length; + } + + S2(const vect_type &_vec) : vec(_vec) { + vec.normalize(); + vec = vec * length; + } + + void oplus(MTK::vectview delta, scalar scale = 1) + { + SO3_type res; + res.w() = MTK::exp(res.vec(), delta, scalar(scale/2)); + vec = res.toRotationMatrix() * vec; + } + + void boxplus(MTK::vectview delta, scalar scale=1) { + Eigen::Matrix Bx; + S2_Bx(Bx); + vect_type Bu = Bx*delta;SO3_type res; + res.w() = MTK::exp(res.vec(), Bu, scalar(scale/2)); + vec = res.toRotationMatrix() * vec; + } + + void boxminus(MTK::vectview res, const S2& other) const { + scalar v_sin = (MTK::hat(vec)*other.vec).norm(); + scalar v_cos = vec.transpose() * other.vec; + scalar theta = std::atan2(v_sin, v_cos); + if(v_sin < MTK::tolerance()) + { + if(std::fabs(theta) > MTK::tolerance() ) + { + res[0] = 3.1415926; + res[1] = 0; + } + else{ + res[0] = 0; + res[1] = 0; + } + } + else + { + S2 other_copy = other; + Eigen::MatrixBx; + other_copy.S2_Bx(Bx); + res = theta/v_sin * Bx.transpose() * MTK::hat(other.vec)*vec; + } + } + + void S2_hat(Eigen::Matrix &res) + { + Eigen::Matrix skew_vec; + skew_vec << scalar(0), -vec[2], vec[1], + vec[2], scalar(0), -vec[0], + -vec[1], vec[0], scalar(0); + res = skew_vec; + } + + + void S2_Bx(Eigen::Matrix &res) + { + if(S2_typ == 3) + { + if(vec[2] + length > tolerance()) + { + + res << length - vec[0]*vec[0]/(length+vec[2]), -vec[0]*vec[1]/(length+vec[2]), + -vec[0]*vec[1]/(length+vec[2]), length-vec[1]*vec[1]/(length+vec[2]), + -vec[0], -vec[1]; + res /= length; + } + else + { + res = Eigen::Matrix::Zero(); + res(1, 1) = -1; + res(2, 0) = 1; + } + } + else if(S2_typ == 2) + { + if(vec[1] + length > tolerance()) + { + + res << length - vec[0]*vec[0]/(length+vec[1]), -vec[0]*vec[2]/(length+vec[1]), + -vec[0], -vec[2], + -vec[0]*vec[2]/(length+vec[1]), length-vec[2]*vec[2]/(length+vec[1]); + res /= length; + } + else + { + res = Eigen::Matrix::Zero(); + res(1, 1) = -1; + res(2, 0) = 1; + } + } + else + { + if(vec[0] + length > tolerance()) + { + + res << -vec[1], -vec[2], + length - vec[1]*vec[1]/(length+vec[0]), -vec[2]*vec[1]/(length+vec[0]), + -vec[2]*vec[1]/(length+vec[0]), length-vec[2]*vec[2]/(length+vec[0]); + res /= length; + } + else + { + res = Eigen::Matrix::Zero(); + res(1, 1) = -1; + res(2, 0) = 1; + } + } + } + + void S2_Nx(Eigen::Matrix &res, S2& subtrahend) + { + if((vec+subtrahend.vec).norm() > tolerance()) + { + Eigen::Matrix Bx; + S2_Bx(Bx); + if((vec-subtrahend.vec).norm() > tolerance()) + { + scalar v_sin = (MTK::hat(vec)*subtrahend.vec).norm(); + scalar v_cos = vec.transpose() * subtrahend.vec; + + res = Bx.transpose() * (std::atan2(v_sin, v_cos)/v_sin*MTK::hat(vec)+MTK::hat(vec)*subtrahend.vec*((-v_cos/v_sin/v_sin/length/length/length/length+std::atan2(v_sin, v_cos)/v_sin/v_sin/v_sin)*subtrahend.vec.transpose()*MTK::hat(vec)*MTK::hat(vec)-vec.transpose()/length/length/length/length)); + } + else + { + res = 1/length/length*Bx.transpose()*MTK::hat(vec); + } + } + else + { + std::cerr << "No N(x, y) for x=-y" << std::endl; + std::exit(100); + } + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + Eigen::Matrix Bx; + S2_Bx(Bx); + res = 1/length/length*Bx.transpose()*MTK::hat(vec); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + Eigen::Matrix Bx; + S2_Bx(Bx); + if(delta.norm() < tolerance()) + { + res = -MTK::hat(vec)*Bx; + } + else{ + vect_type Bu = Bx*delta; + SO3_type exp_delta; + exp_delta.w() = MTK::exp(exp_delta.vec(), Bu, scalar(1/2)); + res = -exp_delta.toRotationMatrix()*MTK::hat(vec)*MTK::A_matrix(Bu).transpose()*Bx; + } + } + + operator const vect_type&() const{ + return vec; + } + + const vect_type& get_vect() const { + return vec; + } + + friend S2 operator*(const SO3& rot, const S2& dir) + { + S2 ret; + ret.vec = rot * dir.vec; + return ret; + } + + scalar operator[](int idx) const {return vec[idx]; } + + friend std::ostream& operator<<(std::ostream &os, const S2& vec){ + return os << vec.vec.transpose() << " "; + } + friend std::istream& operator>>(std::istream &is, S2& vec){ + for(int i=0; i<3; ++i) + is >> vec.vec[i]; + vec.vec.normalize(); + vec.vec = vec.vec * vec.length; + return is; + + } +}; + + +} // namespace MTK + + +#endif /*S2_H_*/ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/SOn.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/SOn.hpp new file mode 100755 index 0000000..31005e6 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/SOn.hpp @@ -0,0 +1,317 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/types/SOn.hpp + * @brief Standard Orthogonal Groups i.e.\ rotatation groups. + */ +#ifndef SON_H_ +#define SON_H_ + +#include + +#include "vect.hpp" +#include "../src/mtkmath.hpp" + + +namespace MTK { + + +/** + * Two-dimensional orientations represented as scalar. + * There is no guarantee that the representing scalar is within any interval, + * but the result of boxminus will always have magnitude @f$\le\pi @f$. + */ +template +struct SO2 : public Eigen::Rotation2D<_scalar> { + enum {DOF = 1, DIM = 2, TYP = 3}; + + typedef _scalar scalar; + typedef Eigen::Rotation2D base; + typedef vect vect_type; + + //! Construct from angle + SO2(const scalar& angle = 0) : base(angle) { } + + //! Construct from Eigen::Rotation2D + SO2(const base& src) : base(src) {} + + /** + * Construct from 2D vector. + * Resulting orientation will rotate the first unit vector to point to vec. + */ + SO2(const vect_type &vec) : base(atan2(vec[1], vec[0])) {}; + + + //! Calculate @c this->inverse() * @c r + SO2 operator%(const base &r) const { + return base::inverse() * r; + } + + //! Calculate @c this->inverse() * @c r + template + vect_type operator%(const Eigen::MatrixBase &vec) const { + return base::inverse() * vec; + } + + //! Calculate @c *this * @c r.inverse() + SO2 operator/(const SO2 &r) const { + return *this * r.inverse(); + } + + //! Gets the angle as scalar. + operator scalar() const { + return base::angle(); + } + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + //! @name Manifold requirements + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + base::angle() += scale * vec[0]; + } + + void boxplus(MTK::vectview vec, scalar scale = 1) { + base::angle() += scale * vec[0]; + } + void boxminus(MTK::vectview res, const SO2& other) const { + res[0] = MTK::normalize(base::angle() - other.angle(), scalar(MTK::pi)); + } + + friend std::istream& operator>>(std::istream &is, SO2& ang){ + return is >> ang.angle(); + } + +}; + + +/** + * Three-dimensional orientations represented as Quaternion. + * It is assumed that the internal Quaternion always stays normalized, + * should this not be the case, call inherited member function @c normalize(). + */ +template +struct SO3 : public Eigen::Quaternion<_scalar, Options> { + enum {DOF = 3, DIM = 3, TYP = 2}; + typedef _scalar scalar; + typedef Eigen::Quaternion base; + typedef Eigen::Quaternion Quaternion; + typedef vect vect_type; + + //! Calculate @c this->inverse() * @c r + template EIGEN_STRONG_INLINE + Quaternion operator%(const Eigen::QuaternionBase &r) const { + return base::conjugate() * r; + } + + //! Calculate @c this->inverse() * @c r + template + vect_type operator%(const Eigen::MatrixBase &vec) const { + return base::conjugate() * vec; + } + + //! Calculate @c this * @c r.conjugate() + template EIGEN_STRONG_INLINE + Quaternion operator/(const Eigen::QuaternionBase &r) const { + return *this * r.conjugate(); + } + + /** + * Construct from real part and three imaginary parts. + * Quaternion is normalized after construction. + */ + SO3(const scalar& w, const scalar& x, const scalar& y, const scalar& z) : base(w, x, y, z) { + base::normalize(); + } + + /** + * Construct from Eigen::Quaternion. + * @note Non-normalized input may result result in spurious behavior. + */ + SO3(const base& src = base::Identity()) : base(src) {} + + /** + * Construct from rotation matrix. + * @note Invalid rotation matrices may lead to spurious behavior. + */ + template + SO3(const Eigen::MatrixBase& matrix) : base(matrix) {} + + /** + * Construct from arbitrary rotation type. + * @note Invalid rotation matrices may lead to spurious behavior. + */ + template + SO3(const Eigen::RotationBase& rotation) : base(rotation.derived()) {} + + //! @name Manifold requirements + + void boxplus(MTK::vectview vec, scalar scale=1) { + SO3 delta = exp(vec, scale); + *this = *this * delta; + } + void boxminus(MTK::vectview res, const SO3& other) const { + res = SO3::log(other.conjugate() * *this); + } + //} + + void oplus(MTK::vectview vec, scalar scale=1) { + SO3 delta = exp(vec, scale); + *this = *this * delta; + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + friend std::ostream& operator<<(std::ostream &os, const SO3& q){ + return os << q.coeffs().transpose() << " "; + } + + friend std::istream& operator>>(std::istream &is, SO3& q){ + vect<4,scalar> coeffs; + is >> coeffs; + q.coeffs() = coeffs.normalized(); + return is; + } + + //! @name Helper functions + //{ + /** + * Calculate the exponential map. In matrix terms this would correspond + * to the Rodrigues formula. + */ + // FIXME vectview<> can't be constructed from every MatrixBase<>, use const Vector3x& as workaround +// static SO3 exp(MTK::vectview dvec, scalar scale = 1){ + static SO3 exp(const Eigen::Matrix& dvec, scalar scale = 1){ + SO3 res; + res.w() = MTK::exp(res.vec(), dvec, scalar(scale/2)); + return res; + } + /** + * Calculate the inverse of @c exp. + * Only guarantees that exp(log(x)) == x + */ + static typename base::Vector3 log(const SO3 &orient){ + typename base::Vector3 res; + MTK::log(res, orient.w(), orient.vec(), scalar(2), true); + return res; + } +}; + +namespace internal { +template +struct UnalignedType >{ + typedef SO2 type; +}; + +template +struct UnalignedType >{ + typedef SO3 type; +}; + +} // namespace internal + + +} // namespace MTK + +#endif /*SON_H_*/ + diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/vect.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/vect.hpp new file mode 100755 index 0000000..0e5b9ce --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/vect.hpp @@ -0,0 +1,461 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/types/vect.hpp + * @brief Basic vectors interpreted as manifolds. + * + * This file also implements a simple wrapper for matrices, for arbitrary scalars + * and for positive scalars. + */ +#ifndef VECT_H_ +#define VECT_H_ + +#include +#include +#include + +#include "../src/vectview.hpp" + +namespace MTK { + +static const Eigen::IOFormat IO_no_spaces(Eigen::StreamPrecision, Eigen::DontAlignCols, ",", ",", "", "", "[", "]"); + + +/** + * A simple vector class. + * Implementation is basically a wrapper around Eigen::Matrix with manifold + * requirements added. + */ +template +struct vect : public Eigen::Matrix<_scalar, D, 1, _Options> { + typedef Eigen::Matrix<_scalar, D, 1, _Options> base; + enum {DOF = D, DIM = D, TYP = 0}; + typedef _scalar scalar; + + //using base::operator=; + + /** Standard constructor. Sets all values to zero. */ + vect(const base &src = base::Zero()) : base(src) {} + + /** Constructor copying the value of the expression \a other */ + template + EIGEN_STRONG_INLINE vect(const Eigen::DenseBase& other) : base(other) {} + + /** Construct from memory. */ + vect(const scalar* src, int size = DOF) : base(base::Map(src, size)) { } + + void boxplus(MTK::vectview vec, scalar scale=1) { + *this += scale * vec; + } + void boxminus(MTK::vectview res, const vect& other) const { + res = *this - other; + } + + void oplus(MTK::vectview vec, scalar scale=1) { + *this += scale * vec; + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + friend std::ostream& operator<<(std::ostream &os, const vect& v){ + // Eigen sometimes messes with the streams flags, so output manually: + for(int i=0; i>(std::istream &is, vect& v){ + char term=0; + is >> std::ws; // skip whitespace + switch(is.peek()) { + case '(': term=')'; is.ignore(1); break; + case '[': term=']'; is.ignore(1); break; + case '{': term='}'; is.ignore(1); break; + default: break; + } + if(D==Eigen::Dynamic) { + assert(term !=0 && "Dynamic vectors must be embraced"); + std::vector temp; + while(is.good() && is.peek() != term) { + scalar x; + is >> x; + temp.push_back(x); + if(is.peek()==',') is.ignore(1); + } + v = vect::Map(temp.data(), temp.size()); + } else + for(int i=0; i> v[i]; + if(is.peek()==',') { // ignore commas between values + is.ignore(1); + } + } + if(term!=0) { + char x; + is >> x; + if(x!=term) { + is.setstate(is.badbit); +// assert(x==term && "start and end bracket do not match!"); + } + } + return is; + } + + template + vectview tail(){ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template tail(); + } + template + vectview tail() const{ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template tail(); + } + template + vectview head(){ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template head(); + } + template + vectview head() const{ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template head(); + } +}; + + +/** + * A simple matrix class. + * Implementation is basically a wrapper around Eigen::Matrix with manifold + * requirements added, i.e., matrix is viewed as a plain vector for that. + */ +template::Options> +struct matrix : public Eigen::Matrix<_scalar, M, N, _Options> { + typedef Eigen::Matrix<_scalar, M, N, _Options> base; + enum {DOF = M * N, TYP = 4, DIM=0}; + typedef _scalar scalar; + + using base::operator=; + + /** Standard constructor. Sets all values to zero. */ + matrix() { + base::setZero(); + } + + /** Constructor copying the value of the expression \a other */ + template + EIGEN_STRONG_INLINE matrix(const Eigen::MatrixBase& other) : base(other) {} + + /** Construct from memory. */ + matrix(const scalar* src) : base(src) { } + + void boxplus(MTK::vectview vec, scalar scale = 1) { + *this += scale * base::Map(vec.data()); + } + void boxminus(MTK::vectview res, const matrix& other) const { + base::Map(res.data()) = *this - other; + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + *this += scale * base::Map(vec.data()); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + friend std::ostream& operator<<(std::ostream &os, const matrix& mat){ + for(int i=0; i>(std::istream &is, matrix& mat){ + for(int i=0; i> mat.data()[i]; + } + return is; + } +};// @todo What if M / N = Eigen::Dynamic? + + + +/** + * A simple scalar type. + */ +template +struct Scalar { + enum {DOF = 1, TYP = 5, DIM=0}; + typedef _scalar scalar; + + scalar value; + + Scalar(const scalar& value = scalar(0)) : value(value) {} + operator const scalar&() const { return value; } + operator scalar&() { return value; } + Scalar& operator=(const scalar& val) { value = val; return *this; } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void oplus(MTK::vectview vec, scalar scale=1) { + value += scale * vec[0]; + } + + void boxplus(MTK::vectview vec, scalar scale=1) { + value += scale * vec[0]; + } + void boxminus(MTK::vectview res, const Scalar& other) const { + res[0] = *this - other; + } +}; + +/** + * Positive scalars. + * Boxplus is implemented using multiplication by @f$x\boxplus\delta = x\cdot\exp(\delta) @f$. + */ +template +struct PositiveScalar { + enum {DOF = 1, TYP = 6, DIM=0}; + typedef _scalar scalar; + + scalar value; + + PositiveScalar(const scalar& value = scalar(1)) : value(value) { + assert(value > scalar(0)); + } + operator const scalar&() const { return value; } + PositiveScalar& operator=(const scalar& val) { assert(val>0); value = val; return *this; } + + void boxplus(MTK::vectview vec, scalar scale = 1) { + value *= std::exp(scale * vec[0]); + } + void boxminus(MTK::vectview res, const PositiveScalar& other) const { + res[0] = std::log(*this / other); + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + value *= std::exp(scale * vec[0]); + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + + friend std::istream& operator>>(std::istream &is, PositiveScalar& s){ + is >> s.value; + assert(s.value > 0); + return is; + } +}; + +template +struct Complex : public std::complex<_scalar>{ + enum {DOF = 2, TYP = 7, DIM=0}; + typedef _scalar scalar; + + typedef std::complex Base; + + Complex(const Base& value) : Base(value) {} + Complex(const scalar& re = 0.0, const scalar& im = 0.0) : Base(re, im) {} + Complex(const MTK::vectview &in) : Base(in[0], in[1]) {} + template + Complex(const Eigen::DenseBase &in) : Base(in[0], in[1]) {} + + void boxplus(MTK::vectview vec, scalar scale = 1) { + Base::real() += scale * vec[0]; + Base::imag() += scale * vec[1]; + }; + void boxminus(MTK::vectview res, const Complex& other) const { + Complex diff = *this - other; + res << diff.real(), diff.imag(); + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + Base::real() += scale * vec[0]; + Base::imag() += scale * vec[1]; + }; + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + scalar squaredNorm() const { + return std::pow(Base::real(),2) + std::pow(Base::imag(),2); + } + + const scalar& operator()(int i) const { + assert(0<=i && i<2 && "Index out of range"); + return i==0 ? Base::real() : Base::imag(); + } + scalar& operator()(int i){ + assert(0<=i && i<2 && "Index out of range"); + return i==0 ? Base::real() : Base::imag(); + } +}; + + +namespace internal { + +template +struct UnalignedType >{ + typedef vect type; +}; + +} // namespace internal + + +} // namespace MTK + + + + +#endif /*VECT_H_*/ diff --git a/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/wrapped_cv_mat.hpp b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/wrapped_cv_mat.hpp new file mode 100755 index 0000000..b6643f1 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/IKFoM_toolkit/mtk/types/wrapped_cv_mat.hpp @@ -0,0 +1,113 @@ +/* + * Copyright (c) 2010--2011, Universitaet Bremen and DFKI GmbH + * All rights reserved. + * + * Author: Rene Wagner + * Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the DFKI GmbH + * nor the names of its contributors may be used to endorse or + * promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef WRAPPED_CV_MAT_HPP_ +#define WRAPPED_CV_MAT_HPP_ + +#include +#include + +namespace MTK { + +template +struct cv_f_type; + +template<> +struct cv_f_type +{ + enum {value = CV_64F}; +}; + +template<> +struct cv_f_type +{ + enum {value = CV_32F}; +}; + +/** + * cv_mat wraps a CvMat around an Eigen Matrix + */ +template +class cv_mat : public matrix +{ + typedef matrix base_type; + enum {type_ = cv_f_type::value}; + CvMat cv_mat_; + +public: + cv_mat() + { + cv_mat_ = cvMat(rows, cols, type_, base_type::data()); + } + + cv_mat(const cv_mat& oth) : base_type(oth) + { + cv_mat_ = cvMat(rows, cols, type_, base_type::data()); + } + + template + cv_mat(const Eigen::MatrixBase &value) : base_type(value) + { + cv_mat_ = cvMat(rows, cols, type_, base_type::data()); + } + + template + cv_mat& operator=(const Eigen::MatrixBase &value) + { + base_type::operator=(value); + return *this; + } + + cv_mat& operator=(const cv_mat& value) + { + base_type::operator=(value); + return *this; + } + + // FIXME: Maybe overloading operator& is not a good idea ... + CvMat* operator&() + { + return &cv_mat_; + } + const CvMat* operator&() const + { + return &cv_mat_; + } +}; + +} // namespace MTK + +#endif /* WRAPPED_CV_MAT_HPP_ */ diff --git a/src/rm_localization/FAST_LIO/include/common_lib.h b/src/rm_localization/FAST_LIO/include/common_lib.h new file mode 100644 index 0000000..69365e3 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/common_lib.h @@ -0,0 +1,270 @@ +#ifndef COMMON_LIB_H +#define COMMON_LIB_H + +#include +#include +#include +#include +#include +#include +#include + +using namespace std; +using namespace Eigen; + +#define USE_IKFOM + +#define PI_M (3.14159265358) +#define G_m_s2 (9.81) // Gravaty const in GuangDong/China +#define DIM_STATE (18) // Dimension of states (Let Dim(SO(3)) = 3) +#define DIM_PROC_N (12) // Dimension of process noise (Let Dim(SO(3)) = 3) +#define CUBE_LEN (6.0) +#define LIDAR_SP_LEN (2) +#define INIT_COV (1) +#define NUM_MATCH_POINTS (5) +#define MAX_MEAS_DIM (10000) + +#define VEC_FROM_ARRAY(v) v[0],v[1],v[2] +#define MAT_FROM_ARRAY(v) v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7],v[8] +#define CONSTRAIN(v,min,max) ((v>min)?((v (mat.data(), mat.data() + mat.rows() * mat.cols()) +#define DEBUG_FILE_DIR(name) (string(string(ROOT_DIR) + "Log/"+ name)) + +typedef fast_lio::msg::Pose6D Pose6D; +typedef pcl::PointXYZINormal PointType; +typedef pcl::PointCloud PointCloudXYZI; +typedef vector> PointVector; +typedef Vector3d V3D; +typedef Matrix3d M3D; +typedef Vector3f V3F; +typedef Matrix3f M3F; + +#define MD(a,b) Matrix +#define VD(a) Matrix +#define MF(a,b) Matrix +#define VF(a) Matrix + +M3D Eye3d(M3D::Identity()); +M3F Eye3f(M3F::Identity()); +V3D Zero3d(0, 0, 0); +V3F Zero3f(0, 0, 0); + +struct MeasureGroup // Lidar data and imu dates for the curent process +{ + MeasureGroup() + { + lidar_beg_time = 0.0; + this->lidar.reset(new PointCloudXYZI()); + }; + double lidar_beg_time; + double lidar_end_time; + PointCloudXYZI::Ptr lidar; + deque imu; +}; + +struct StatesGroup +{ + StatesGroup() { + this->rot_end = M3D::Identity(); + this->pos_end = Zero3d; + this->vel_end = Zero3d; + this->bias_g = Zero3d; + this->bias_a = Zero3d; + this->gravity = Zero3d; + this->cov = MD(DIM_STATE,DIM_STATE)::Identity() * INIT_COV; + this->cov.block<9,9>(9,9) = MD(9,9)::Identity() * 0.00001; + }; + + StatesGroup(const StatesGroup& b) { + this->rot_end = b.rot_end; + this->pos_end = b.pos_end; + this->vel_end = b.vel_end; + this->bias_g = b.bias_g; + this->bias_a = b.bias_a; + this->gravity = b.gravity; + this->cov = b.cov; + }; + + StatesGroup& operator=(const StatesGroup& b) + { + this->rot_end = b.rot_end; + this->pos_end = b.pos_end; + this->vel_end = b.vel_end; + this->bias_g = b.bias_g; + this->bias_a = b.bias_a; + this->gravity = b.gravity; + this->cov = b.cov; + return *this; + }; + + StatesGroup operator+(const Matrix &state_add) + { + StatesGroup a; + a.rot_end = this->rot_end * Exp(state_add(0,0), state_add(1,0), state_add(2,0)); + a.pos_end = this->pos_end + state_add.block<3,1>(3,0); + a.vel_end = this->vel_end + state_add.block<3,1>(6,0); + a.bias_g = this->bias_g + state_add.block<3,1>(9,0); + a.bias_a = this->bias_a + state_add.block<3,1>(12,0); + a.gravity = this->gravity + state_add.block<3,1>(15,0); + a.cov = this->cov; + return a; + }; + + StatesGroup& operator+=(const Matrix &state_add) + { + this->rot_end = this->rot_end * Exp(state_add(0,0), state_add(1,0), state_add(2,0)); + this->pos_end += state_add.block<3,1>(3,0); + this->vel_end += state_add.block<3,1>(6,0); + this->bias_g += state_add.block<3,1>(9,0); + this->bias_a += state_add.block<3,1>(12,0); + this->gravity += state_add.block<3,1>(15,0); + return *this; + }; + + Matrix operator-(const StatesGroup& b) + { + Matrix a; + M3D rotd(b.rot_end.transpose() * this->rot_end); + a.block<3,1>(0,0) = Log(rotd); + a.block<3,1>(3,0) = this->pos_end - b.pos_end; + a.block<3,1>(6,0) = this->vel_end - b.vel_end; + a.block<3,1>(9,0) = this->bias_g - b.bias_g; + a.block<3,1>(12,0) = this->bias_a - b.bias_a; + a.block<3,1>(15,0) = this->gravity - b.gravity; + return a; + }; + + void resetpose() + { + this->rot_end = M3D::Identity(); + this->pos_end = Zero3d; + this->vel_end = Zero3d; + } + + M3D rot_end; // the estimated attitude (rotation matrix) at the end lidar point + V3D pos_end; // the estimated position at the end lidar point (world frame) + V3D vel_end; // the estimated velocity at the end lidar point (world frame) + V3D bias_g; // gyroscope bias + V3D bias_a; // accelerator bias + V3D gravity; // the estimated gravity acceleration + Matrix cov; // states covariance +}; + +template +T rad2deg(T radians) +{ + return radians * 180.0 / PI_M; +} + +template +T deg2rad(T degrees) +{ + return degrees * PI_M / 180.0; +} + +template +auto set_pose6d(const double t, const Matrix &a, const Matrix &g, \ + const Matrix &v, const Matrix &p, const Matrix &R) +{ + Pose6D rot_kp; + rot_kp.offset_time = t; + for (int i = 0; i < 3; i++) + { + rot_kp.acc[i] = a(i); + rot_kp.gyr[i] = g(i); + rot_kp.vel[i] = v(i); + rot_kp.pos[i] = p(i); + for (int j = 0; j < 3; j++) rot_kp.rot[i*3+j] = R(i,j); + } + return move(rot_kp); +} + +/* comment +plane equation: Ax + By + Cz + D = 0 +convert to: A/D*x + B/D*y + C/D*z = -1 +solve: A0*x0 = b0 +where A0_i = [x_i, y_i, z_i], x0 = [A/D, B/D, C/D]^T, b0 = [-1, ..., -1]^T +normvec: normalized x0 +*/ +template +bool esti_normvector(Matrix &normvec, const PointVector &point, const T &threshold, const int &point_num) +{ + MatrixXf A(point_num, 3); + MatrixXf b(point_num, 1); + b.setOnes(); + b *= -1.0f; + + for (int j = 0; j < point_num; j++) + { + A(j,0) = point[j].x; + A(j,1) = point[j].y; + A(j,2) = point[j].z; + } + normvec = A.colPivHouseholderQr().solve(b); + + for (int j = 0; j < point_num; j++) + { + if (fabs(normvec(0) * point[j].x + normvec(1) * point[j].y + normvec(2) * point[j].z + 1.0f) > threshold) + { + return false; + } + } + + normvec.normalize(); + return true; +} + +float calc_dist(PointType p1, PointType p2){ + float d = (p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y) + (p1.z - p2.z) * (p1.z - p2.z); + return d; +} + +template +bool esti_plane(Matrix &pca_result, const PointVector &point, const T &threshold) +{ + Matrix A; + Matrix b; + A.setZero(); + b.setOnes(); + b *= -1.0f; + + for (int j = 0; j < NUM_MATCH_POINTS; j++) + { + A(j,0) = point[j].x; + A(j,1) = point[j].y; + A(j,2) = point[j].z; + } + + Matrix normvec = A.colPivHouseholderQr().solve(b); + + T n = normvec.norm(); + pca_result(0) = normvec(0) / n; + pca_result(1) = normvec(1) / n; + pca_result(2) = normvec(2) / n; + pca_result(3) = 1.0 / n; + + for (int j = 0; j < NUM_MATCH_POINTS; j++) + { + if (fabs(pca_result(0) * point[j].x + pca_result(1) * point[j].y + pca_result(2) * point[j].z + pca_result(3)) > threshold) + { + return false; + } + } + return true; +} + +double get_time_sec(const builtin_interfaces::msg::Time &time) +{ + return rclcpp::Time(time).seconds(); +} + +rclcpp::Time get_ros_time(double timestamp) +{ + int32_t sec = std::floor(timestamp); + auto nanosec_d = (timestamp - std::floor(timestamp)) * 1e9; + uint32_t nanosec = nanosec_d; + return rclcpp::Time(sec, nanosec); +} + +#endif \ No newline at end of file diff --git a/src/rm_localization/FAST_LIO/include/ikd-Tree/README.md b/src/rm_localization/FAST_LIO/include/ikd-Tree/README.md new file mode 100644 index 0000000..e113a91 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/ikd-Tree/README.md @@ -0,0 +1,2 @@ +# ikd-Tree +ikd-Tree is an incremental k-d tree for robotic applications. diff --git a/src/rm_localization/FAST_LIO/include/ikd-Tree/ikd_Tree.cpp b/src/rm_localization/FAST_LIO/include/ikd-Tree/ikd_Tree.cpp new file mode 100644 index 0000000..e8c4e86 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/ikd-Tree/ikd_Tree.cpp @@ -0,0 +1,1728 @@ +#include "ikd_Tree.h" + +/* +Description: ikd-Tree: an incremental k-d tree for robotic applications +Author: Yixi Cai +email: yixicai@connect.hku.hk +*/ + +template +KD_TREE::KD_TREE(float delete_param, float balance_param, float box_length) +{ + delete_criterion_param = delete_param; + balance_criterion_param = balance_param; + downsample_size = box_length; + Rebuild_Logger.clear(); + termination_flag = false; + start_thread(); +} + +template +KD_TREE::~KD_TREE() +{ + stop_thread(); + Delete_Storage_Disabled = true; + delete_tree_nodes(&Root_Node); + PointVector().swap(PCL_Storage); + Rebuild_Logger.clear(); +} + + + +template +void KD_TREE::InitializeKDTree(float delete_param, float balance_param, float box_length) +{ + Set_delete_criterion_param(delete_param); + Set_balance_criterion_param(balance_param); + set_downsample_param(box_length); +} + +template +void KD_TREE::InitTreeNode(KD_TREE_NODE *root) +{ + root->point.x = 0.0f; + root->point.y = 0.0f; + root->point.z = 0.0f; + root->node_range_x[0] = 0.0f; + root->node_range_x[1] = 0.0f; + root->node_range_y[0] = 0.0f; + root->node_range_y[1] = 0.0f; + root->node_range_z[0] = 0.0f; + root->node_range_z[1] = 0.0f; + root->radius_sq = 0.0f; + root->division_axis = 0; + root->father_ptr = nullptr; + root->left_son_ptr = nullptr; + root->right_son_ptr = nullptr; + root->TreeSize = 0; + root->invalid_point_num = 0; + root->down_del_num = 0; + root->point_deleted = false; + root->tree_deleted = false; + root->need_push_down_to_left = false; + root->need_push_down_to_right = false; + root->point_downsample_deleted = false; + root->working_flag = false; + pthread_mutex_init(&(root->push_down_mutex_lock), NULL); +} + +template +int KD_TREE::size() +{ + int s = 0; + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + if (Root_Node != nullptr) + { + return Root_Node->TreeSize; + } + else + { + return 0; + } + } + else + { + if (!pthread_mutex_trylock(&working_flag_mutex)) + { + s = Root_Node->TreeSize; + pthread_mutex_unlock(&working_flag_mutex); + return s; + } + else + { + return Treesize_tmp; + } + } +} + +template +BoxPointType KD_TREE::tree_range() +{ + BoxPointType range; + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + if (Root_Node != nullptr) + { + range.vertex_min[0] = Root_Node->node_range_x[0]; + range.vertex_min[1] = Root_Node->node_range_y[0]; + range.vertex_min[2] = Root_Node->node_range_z[0]; + range.vertex_max[0] = Root_Node->node_range_x[1]; + range.vertex_max[1] = Root_Node->node_range_y[1]; + range.vertex_max[2] = Root_Node->node_range_z[1]; + } + else + { + memset(&range, 0, sizeof(range)); + } + } + else + { + if (!pthread_mutex_trylock(&working_flag_mutex)) + { + range.vertex_min[0] = Root_Node->node_range_x[0]; + range.vertex_min[1] = Root_Node->node_range_y[0]; + range.vertex_min[2] = Root_Node->node_range_z[0]; + range.vertex_max[0] = Root_Node->node_range_x[1]; + range.vertex_max[1] = Root_Node->node_range_y[1]; + range.vertex_max[2] = Root_Node->node_range_z[1]; + pthread_mutex_unlock(&working_flag_mutex); + } + else + { + memset(&range, 0, sizeof(range)); + } + } + return range; +} + +template +int KD_TREE::validnum() +{ + int s = 0; + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + if (Root_Node != nullptr) + return (Root_Node->TreeSize - Root_Node->invalid_point_num); + else + return 0; + } + else + { + if (!pthread_mutex_trylock(&working_flag_mutex)) + { + s = Root_Node->TreeSize - Root_Node->invalid_point_num; + pthread_mutex_unlock(&working_flag_mutex); + return s; + } + else + { + return -1; + } + } +} + +template +void KD_TREE::root_alpha(float &alpha_bal, float &alpha_del) +{ + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + alpha_bal = Root_Node->alpha_bal; + alpha_del = Root_Node->alpha_del; + return; + } + else + { + if (!pthread_mutex_trylock(&working_flag_mutex)) + { + alpha_bal = Root_Node->alpha_bal; + alpha_del = Root_Node->alpha_del; + pthread_mutex_unlock(&working_flag_mutex); + return; + } + else + { + alpha_bal = alpha_bal_tmp; + alpha_del = alpha_del_tmp; + return; + } + } +} + +template +void KD_TREE::start_thread() +{ + pthread_mutex_init(&termination_flag_mutex_lock, NULL); + pthread_mutex_init(&rebuild_ptr_mutex_lock, NULL); + pthread_mutex_init(&rebuild_logger_mutex_lock, NULL); + pthread_mutex_init(&points_deleted_rebuild_mutex_lock, NULL); + pthread_mutex_init(&working_flag_mutex, NULL); + pthread_mutex_init(&search_flag_mutex, NULL); + pthread_create(&rebuild_thread, NULL, multi_thread_ptr, (void *)this); + printf("Multi thread started \n"); +} + +template +void KD_TREE::stop_thread() +{ + pthread_mutex_lock(&termination_flag_mutex_lock); + termination_flag = true; + pthread_mutex_unlock(&termination_flag_mutex_lock); + if (rebuild_thread) + pthread_join(rebuild_thread, NULL); + pthread_mutex_destroy(&termination_flag_mutex_lock); + pthread_mutex_destroy(&rebuild_logger_mutex_lock); + pthread_mutex_destroy(&rebuild_ptr_mutex_lock); + pthread_mutex_destroy(&points_deleted_rebuild_mutex_lock); + pthread_mutex_destroy(&working_flag_mutex); + pthread_mutex_destroy(&search_flag_mutex); +} + +template +void *KD_TREE::multi_thread_ptr(void *arg) +{ + KD_TREE *handle = (KD_TREE *)arg; + handle->multi_thread_rebuild(); + return nullptr; +} + +template +void KD_TREE::multi_thread_rebuild() +{ + bool terminated = false; + KD_TREE_NODE *father_ptr, **new_node_ptr; + pthread_mutex_lock(&termination_flag_mutex_lock); + terminated = termination_flag; + pthread_mutex_unlock(&termination_flag_mutex_lock); + while (!terminated) + { + pthread_mutex_lock(&rebuild_ptr_mutex_lock); + pthread_mutex_lock(&working_flag_mutex); + if (Rebuild_Ptr != nullptr) + { + /* Traverse and copy */ + if (!Rebuild_Logger.empty()) + { + printf("\n\n\n\n\n\n\n\n\n\n\n ERROR!!! \n\n\n\n\n\n\n\n\n"); + } + rebuild_flag = true; + if (*Rebuild_Ptr == Root_Node) + { + Treesize_tmp = Root_Node->TreeSize; + Validnum_tmp = Root_Node->TreeSize - Root_Node->invalid_point_num; + alpha_bal_tmp = Root_Node->alpha_bal; + alpha_del_tmp = Root_Node->alpha_del; + } + KD_TREE_NODE *old_root_node = (*Rebuild_Ptr); + father_ptr = (*Rebuild_Ptr)->father_ptr; + PointVector().swap(Rebuild_PCL_Storage); + // Lock Search + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter != 0) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter = -1; + pthread_mutex_unlock(&search_flag_mutex); + // Lock deleted points cache + pthread_mutex_lock(&points_deleted_rebuild_mutex_lock); + flatten(*Rebuild_Ptr, Rebuild_PCL_Storage, MULTI_THREAD_REC); + // Unlock deleted points cache + pthread_mutex_unlock(&points_deleted_rebuild_mutex_lock); + // Unlock Search + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter = 0; + pthread_mutex_unlock(&search_flag_mutex); + pthread_mutex_unlock(&working_flag_mutex); + /* Rebuild and update missed operations*/ + Operation_Logger_Type Operation; + KD_TREE_NODE *new_root_node = nullptr; + if (int(Rebuild_PCL_Storage.size()) > 0) + { + BuildTree(&new_root_node, 0, Rebuild_PCL_Storage.size() - 1, Rebuild_PCL_Storage); + // Rebuild has been done. Updates the blocked operations into the new tree + pthread_mutex_lock(&working_flag_mutex); + pthread_mutex_lock(&rebuild_logger_mutex_lock); + int tmp_counter = 0; + while (!Rebuild_Logger.empty()) + { + Operation = Rebuild_Logger.front(); + max_queue_size = max(max_queue_size, Rebuild_Logger.size()); + Rebuild_Logger.pop(); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + pthread_mutex_unlock(&working_flag_mutex); + run_operation(&new_root_node, Operation); + tmp_counter++; + if (tmp_counter % 10 == 0) + usleep(1); + pthread_mutex_lock(&working_flag_mutex); + pthread_mutex_lock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + /* Replace to original tree*/ + // pthread_mutex_lock(&working_flag_mutex); + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter != 0) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter = -1; + pthread_mutex_unlock(&search_flag_mutex); + if (father_ptr->left_son_ptr == *Rebuild_Ptr) + { + father_ptr->left_son_ptr = new_root_node; + } + else if (father_ptr->right_son_ptr == *Rebuild_Ptr) + { + father_ptr->right_son_ptr = new_root_node; + } + else + { + throw "Error: Father ptr incompatible with current node\n"; + } + if (new_root_node != nullptr) + new_root_node->father_ptr = father_ptr; + (*Rebuild_Ptr) = new_root_node; + int valid_old = old_root_node->TreeSize - old_root_node->invalid_point_num; + int valid_new = new_root_node->TreeSize - new_root_node->invalid_point_num; + if (father_ptr == STATIC_ROOT_NODE) + Root_Node = STATIC_ROOT_NODE->left_son_ptr; + KD_TREE_NODE *update_root = *Rebuild_Ptr; + while (update_root != nullptr && update_root != Root_Node) + { + update_root = update_root->father_ptr; + if (update_root->working_flag) + break; + if (update_root == update_root->father_ptr->left_son_ptr && update_root->father_ptr->need_push_down_to_left) + break; + if (update_root == update_root->father_ptr->right_son_ptr && update_root->father_ptr->need_push_down_to_right) + break; + Update(update_root); + } + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter = 0; + pthread_mutex_unlock(&search_flag_mutex); + Rebuild_Ptr = nullptr; + pthread_mutex_unlock(&working_flag_mutex); + rebuild_flag = false; + /* Delete discarded tree nodes */ + delete_tree_nodes(&old_root_node); + } + else + { + pthread_mutex_unlock(&working_flag_mutex); + } + pthread_mutex_unlock(&rebuild_ptr_mutex_lock); + pthread_mutex_lock(&termination_flag_mutex_lock); + terminated = termination_flag; + pthread_mutex_unlock(&termination_flag_mutex_lock); + usleep(100); + } + printf("Rebuild thread terminated normally\n"); +} + +template +void KD_TREE::run_operation(KD_TREE_NODE **root, Operation_Logger_Type operation) +{ + switch (operation.op) + { + case ADD_POINT: + Add_by_point(root, operation.point, false, (*root)->division_axis); + break; + case ADD_BOX: + Add_by_range(root, operation.boxpoint, false); + break; + case DELETE_POINT: + Delete_by_point(root, operation.point, false); + break; + case DELETE_BOX: + Delete_by_range(root, operation.boxpoint, false, false); + break; + case DOWNSAMPLE_DELETE: + Delete_by_range(root, operation.boxpoint, false, true); + break; + case PUSH_DOWN: + (*root)->tree_downsample_deleted |= operation.tree_downsample_deleted; + (*root)->point_downsample_deleted |= operation.tree_downsample_deleted; + (*root)->tree_deleted = operation.tree_deleted || (*root)->tree_downsample_deleted; + (*root)->point_deleted = (*root)->tree_deleted || (*root)->point_downsample_deleted; + if (operation.tree_downsample_deleted) + (*root)->down_del_num = (*root)->TreeSize; + if (operation.tree_deleted) + (*root)->invalid_point_num = (*root)->TreeSize; + else + (*root)->invalid_point_num = (*root)->down_del_num; + (*root)->need_push_down_to_left = true; + (*root)->need_push_down_to_right = true; + break; + default: + break; + } +} + +template +void KD_TREE::Build(PointVector point_cloud) +{ + if (Root_Node != nullptr) + { + delete_tree_nodes(&Root_Node); + } + if (point_cloud.size() == 0) + return; + STATIC_ROOT_NODE = new KD_TREE_NODE; + InitTreeNode(STATIC_ROOT_NODE); + BuildTree(&STATIC_ROOT_NODE->left_son_ptr, 0, point_cloud.size() - 1, point_cloud); + Update(STATIC_ROOT_NODE); + STATIC_ROOT_NODE->TreeSize = 0; + Root_Node = STATIC_ROOT_NODE->left_son_ptr; +} + +template +void KD_TREE::Nearest_Search(PointType point, int k_nearest, PointVector &Nearest_Points, vector &Point_Distance, float max_dist) +{ + MANUAL_HEAP q(2 * k_nearest); + q.clear(); + vector().swap(Point_Distance); + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + Search(Root_Node, k_nearest, point, q, max_dist); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter == -1) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter += 1; + pthread_mutex_unlock(&search_flag_mutex); + Search(Root_Node, k_nearest, point, q, max_dist); + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter -= 1; + pthread_mutex_unlock(&search_flag_mutex); + } + int k_found = min(k_nearest, int(q.size())); + PointVector().swap(Nearest_Points); + vector().swap(Point_Distance); + for (int i = 0; i < k_found; i++) + { + Nearest_Points.insert(Nearest_Points.begin(), q.top().point); + Point_Distance.insert(Point_Distance.begin(), q.top().dist); + q.pop(); + } + return; +} + +template +void KD_TREE::Box_Search(const BoxPointType &Box_of_Point, PointVector &Storage) +{ + Storage.clear(); + Search_by_range(Root_Node, Box_of_Point, Storage); +} + +template +void KD_TREE::Radius_Search(PointType point, const float radius, PointVector &Storage) +{ + Storage.clear(); + Search_by_radius(Root_Node, point, radius, Storage); +} + +template +int KD_TREE::Add_Points(PointVector &PointToAdd, bool downsample_on) +{ + int NewPointSize = PointToAdd.size(); + int tree_size = size(); + BoxPointType Box_of_Point; + PointType downsample_result, mid_point; + bool downsample_switch = downsample_on && DOWNSAMPLE_SWITCH; + float min_dist, tmp_dist; + int tmp_counter = 0; + for (int i = 0; i < PointToAdd.size(); i++) + { + if (downsample_switch) + { + Box_of_Point.vertex_min[0] = floor(PointToAdd[i].x / downsample_size) * downsample_size; + Box_of_Point.vertex_max[0] = Box_of_Point.vertex_min[0] + downsample_size; + Box_of_Point.vertex_min[1] = floor(PointToAdd[i].y / downsample_size) * downsample_size; + Box_of_Point.vertex_max[1] = Box_of_Point.vertex_min[1] + downsample_size; + Box_of_Point.vertex_min[2] = floor(PointToAdd[i].z / downsample_size) * downsample_size; + Box_of_Point.vertex_max[2] = Box_of_Point.vertex_min[2] + downsample_size; + mid_point.x = Box_of_Point.vertex_min[0] + (Box_of_Point.vertex_max[0] - Box_of_Point.vertex_min[0]) / 2.0; + mid_point.y = Box_of_Point.vertex_min[1] + (Box_of_Point.vertex_max[1] - Box_of_Point.vertex_min[1]) / 2.0; + mid_point.z = Box_of_Point.vertex_min[2] + (Box_of_Point.vertex_max[2] - Box_of_Point.vertex_min[2]) / 2.0; + PointVector().swap(Downsample_Storage); + Search_by_range(Root_Node, Box_of_Point, Downsample_Storage); + min_dist = calc_dist(PointToAdd[i], mid_point); + downsample_result = PointToAdd[i]; + for (int index = 0; index < Downsample_Storage.size(); index++) + { + tmp_dist = calc_dist(Downsample_Storage[index], mid_point); + if (tmp_dist < min_dist) + { + min_dist = tmp_dist; + downsample_result = Downsample_Storage[index]; + } + } + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + if (Downsample_Storage.size() > 1 || same_point(PointToAdd[i], downsample_result)) + { + if (Downsample_Storage.size() > 0) + Delete_by_range(&Root_Node, Box_of_Point, true, true); + Add_by_point(&Root_Node, downsample_result, true, Root_Node->division_axis); + tmp_counter++; + } + } + else + { + if (Downsample_Storage.size() > 1 || same_point(PointToAdd[i], downsample_result)) + { + Operation_Logger_Type operation_delete, operation; + operation_delete.boxpoint = Box_of_Point; + operation_delete.op = DOWNSAMPLE_DELETE; + operation.point = downsample_result; + operation.op = ADD_POINT; + pthread_mutex_lock(&working_flag_mutex); + if (Downsample_Storage.size() > 0) + Delete_by_range(&Root_Node, Box_of_Point, false, true); + Add_by_point(&Root_Node, downsample_result, false, Root_Node->division_axis); + tmp_counter++; + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + if (Downsample_Storage.size() > 0) + Rebuild_Logger.push(operation_delete); + Rebuild_Logger.push(operation); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + }; + } + } + else + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + Add_by_point(&Root_Node, PointToAdd[i], true, Root_Node->division_axis); + } + else + { + Operation_Logger_Type operation; + operation.point = PointToAdd[i]; + operation.op = ADD_POINT; + pthread_mutex_lock(&working_flag_mutex); + Add_by_point(&Root_Node, PointToAdd[i], false, Root_Node->division_axis); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(operation); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + } + return tmp_counter; +} + +template +void KD_TREE::Add_Point_Boxes(vector &BoxPoints) +{ + for (int i = 0; i < BoxPoints.size(); i++) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + Add_by_range(&Root_Node, BoxPoints[i], true); + } + else + { + Operation_Logger_Type operation; + operation.boxpoint = BoxPoints[i]; + operation.op = ADD_BOX; + pthread_mutex_lock(&working_flag_mutex); + Add_by_range(&Root_Node, BoxPoints[i], false); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(operation); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + return; +} + +template +void KD_TREE::Delete_Points(PointVector &PointToDel) +{ + for (int i = 0; i < PointToDel.size(); i++) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + Delete_by_point(&Root_Node, PointToDel[i], true); + } + else + { + Operation_Logger_Type operation; + operation.point = PointToDel[i]; + operation.op = DELETE_POINT; + pthread_mutex_lock(&working_flag_mutex); + Delete_by_point(&Root_Node, PointToDel[i], false); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(operation); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + return; +} + +template +int KD_TREE::Delete_Point_Boxes(vector &BoxPoints) +{ + int tmp_counter = 0; + for (int i = 0; i < BoxPoints.size(); i++) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != Root_Node) + { + tmp_counter += Delete_by_range(&Root_Node, BoxPoints[i], true, false); + } + else + { + Operation_Logger_Type operation; + operation.boxpoint = BoxPoints[i]; + operation.op = DELETE_BOX; + pthread_mutex_lock(&working_flag_mutex); + tmp_counter += Delete_by_range(&Root_Node, BoxPoints[i], false, false); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(operation); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + return tmp_counter; +} + +template +void KD_TREE::acquire_removed_points(PointVector &removed_points) +{ + pthread_mutex_lock(&points_deleted_rebuild_mutex_lock); + for (int i = 0; i < Points_deleted.size(); i++) + { + removed_points.push_back(Points_deleted[i]); + } + for (int i = 0; i < Multithread_Points_deleted.size(); i++) + { + removed_points.push_back(Multithread_Points_deleted[i]); + } + Points_deleted.clear(); + Multithread_Points_deleted.clear(); + pthread_mutex_unlock(&points_deleted_rebuild_mutex_lock); + return; +} + +template +void KD_TREE::BuildTree(KD_TREE_NODE **root, int l, int r, PointVector &Storage) +{ + if (l > r) + return; + *root = new KD_TREE_NODE; + InitTreeNode(*root); + int mid = (l + r) >> 1; + int div_axis = 0; + int i; + // Find the best division Axis + float min_value[3] = {INFINITY, INFINITY, INFINITY}; + float max_value[3] = {-INFINITY, -INFINITY, -INFINITY}; + float dim_range[3] = {0, 0, 0}; + for (i = l; i <= r; i++) + { + min_value[0] = min(min_value[0], Storage[i].x); + min_value[1] = min(min_value[1], Storage[i].y); + min_value[2] = min(min_value[2], Storage[i].z); + max_value[0] = max(max_value[0], Storage[i].x); + max_value[1] = max(max_value[1], Storage[i].y); + max_value[2] = max(max_value[2], Storage[i].z); + } + // Select the longest dimension as division axis + for (i = 0; i < 3; i++) + dim_range[i] = max_value[i] - min_value[i]; + for (i = 1; i < 3; i++) + if (dim_range[i] > dim_range[div_axis]) + div_axis = i; + // Divide by the division axis and recursively build. + + (*root)->division_axis = div_axis; + switch (div_axis) + { + case 0: + nth_element(begin(Storage) + l, begin(Storage) + mid, begin(Storage) + r + 1, point_cmp_x); + break; + case 1: + nth_element(begin(Storage) + l, begin(Storage) + mid, begin(Storage) + r + 1, point_cmp_y); + break; + case 2: + nth_element(begin(Storage) + l, begin(Storage) + mid, begin(Storage) + r + 1, point_cmp_z); + break; + default: + nth_element(begin(Storage) + l, begin(Storage) + mid, begin(Storage) + r + 1, point_cmp_x); + break; + } + (*root)->point = Storage[mid]; + KD_TREE_NODE *left_son = nullptr, *right_son = nullptr; + BuildTree(&left_son, l, mid - 1, Storage); + BuildTree(&right_son, mid + 1, r, Storage); + (*root)->left_son_ptr = left_son; + (*root)->right_son_ptr = right_son; + Update((*root)); + return; +} + +template +void KD_TREE::Rebuild(KD_TREE_NODE **root) +{ + KD_TREE_NODE *father_ptr; + if ((*root)->TreeSize >= Multi_Thread_Rebuild_Point_Num) + { + if (!pthread_mutex_trylock(&rebuild_ptr_mutex_lock)) + { + if (Rebuild_Ptr == nullptr || ((*root)->TreeSize > (*Rebuild_Ptr)->TreeSize)) + { + Rebuild_Ptr = root; + } + pthread_mutex_unlock(&rebuild_ptr_mutex_lock); + } + } + else + { + father_ptr = (*root)->father_ptr; + int size_rec = (*root)->TreeSize; + PCL_Storage.clear(); + flatten(*root, PCL_Storage, DELETE_POINTS_REC); + delete_tree_nodes(root); + BuildTree(root, 0, PCL_Storage.size() - 1, PCL_Storage); + if (*root != nullptr) + (*root)->father_ptr = father_ptr; + if (*root == Root_Node) + STATIC_ROOT_NODE->left_son_ptr = *root; + } + return; +} + +template +int KD_TREE::Delete_by_range(KD_TREE_NODE **root, BoxPointType boxpoint, bool allow_rebuild, bool is_downsample) +{ + if ((*root) == nullptr || (*root)->tree_deleted) + return 0; + (*root)->working_flag = true; + Push_Down(*root); + int tmp_counter = 0; + if (boxpoint.vertex_max[0] <= (*root)->node_range_x[0] || boxpoint.vertex_min[0] > (*root)->node_range_x[1]) + return 0; + if (boxpoint.vertex_max[1] <= (*root)->node_range_y[0] || boxpoint.vertex_min[1] > (*root)->node_range_y[1]) + return 0; + if (boxpoint.vertex_max[2] <= (*root)->node_range_z[0] || boxpoint.vertex_min[2] > (*root)->node_range_z[1]) + return 0; + if (boxpoint.vertex_min[0] <= (*root)->node_range_x[0] && boxpoint.vertex_max[0] > (*root)->node_range_x[1] && boxpoint.vertex_min[1] <= (*root)->node_range_y[0] && boxpoint.vertex_max[1] > (*root)->node_range_y[1] && boxpoint.vertex_min[2] <= (*root)->node_range_z[0] && boxpoint.vertex_max[2] > (*root)->node_range_z[1]) + { + (*root)->tree_deleted = true; + (*root)->point_deleted = true; + (*root)->need_push_down_to_left = true; + (*root)->need_push_down_to_right = true; + tmp_counter = (*root)->TreeSize - (*root)->invalid_point_num; + (*root)->invalid_point_num = (*root)->TreeSize; + if (is_downsample) + { + (*root)->tree_downsample_deleted = true; + (*root)->point_downsample_deleted = true; + (*root)->down_del_num = (*root)->TreeSize; + } + return tmp_counter; + } + if (!(*root)->point_deleted && boxpoint.vertex_min[0] <= (*root)->point.x && boxpoint.vertex_max[0] > (*root)->point.x && boxpoint.vertex_min[1] <= (*root)->point.y && boxpoint.vertex_max[1] > (*root)->point.y && boxpoint.vertex_min[2] <= (*root)->point.z && boxpoint.vertex_max[2] > (*root)->point.z) + { + (*root)->point_deleted = true; + tmp_counter += 1; + if (is_downsample) + (*root)->point_downsample_deleted = true; + } + Operation_Logger_Type delete_box_log; + struct timespec Timeout; + if (is_downsample) + delete_box_log.op = DOWNSAMPLE_DELETE; + else + delete_box_log.op = DELETE_BOX; + delete_box_log.boxpoint = boxpoint; + if ((Rebuild_Ptr == nullptr) || (*root)->left_son_ptr != *Rebuild_Ptr) + { + tmp_counter += Delete_by_range(&((*root)->left_son_ptr), boxpoint, allow_rebuild, is_downsample); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + tmp_counter += Delete_by_range(&((*root)->left_son_ptr), boxpoint, false, is_downsample); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(delete_box_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + if ((Rebuild_Ptr == nullptr) || (*root)->right_son_ptr != *Rebuild_Ptr) + { + tmp_counter += Delete_by_range(&((*root)->right_son_ptr), boxpoint, allow_rebuild, is_downsample); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + tmp_counter += Delete_by_range(&((*root)->right_son_ptr), boxpoint, false, is_downsample); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(delete_box_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + Update(*root); + if (Rebuild_Ptr != nullptr && *Rebuild_Ptr == *root && (*root)->TreeSize < Multi_Thread_Rebuild_Point_Num) + Rebuild_Ptr = nullptr; + bool need_rebuild = allow_rebuild & Criterion_Check((*root)); + if (need_rebuild) + Rebuild(root); + if ((*root) != nullptr) + (*root)->working_flag = false; + return tmp_counter; +} + +template +void KD_TREE::Delete_by_point(KD_TREE_NODE **root, PointType point, bool allow_rebuild) +{ + if ((*root) == nullptr || (*root)->tree_deleted) + return; + (*root)->working_flag = true; + Push_Down(*root); + if (same_point((*root)->point, point) && !(*root)->point_deleted) + { + (*root)->point_deleted = true; + (*root)->invalid_point_num += 1; + if ((*root)->invalid_point_num == (*root)->TreeSize) + (*root)->tree_deleted = true; + return; + } + Operation_Logger_Type delete_log; + struct timespec Timeout; + delete_log.op = DELETE_POINT; + delete_log.point = point; + if (((*root)->division_axis == 0 && point.x < (*root)->point.x) || ((*root)->division_axis == 1 && point.y < (*root)->point.y) || ((*root)->division_axis == 2 && point.z < (*root)->point.z)) + { + if ((Rebuild_Ptr == nullptr) || (*root)->left_son_ptr != *Rebuild_Ptr) + { + Delete_by_point(&(*root)->left_son_ptr, point, allow_rebuild); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + Delete_by_point(&(*root)->left_son_ptr, point, false); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(delete_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + else + { + if ((Rebuild_Ptr == nullptr) || (*root)->right_son_ptr != *Rebuild_Ptr) + { + Delete_by_point(&(*root)->right_son_ptr, point, allow_rebuild); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + Delete_by_point(&(*root)->right_son_ptr, point, false); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(delete_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + Update(*root); + if (Rebuild_Ptr != nullptr && *Rebuild_Ptr == *root && (*root)->TreeSize < Multi_Thread_Rebuild_Point_Num) + Rebuild_Ptr = nullptr; + bool need_rebuild = allow_rebuild & Criterion_Check((*root)); + if (need_rebuild) + Rebuild(root); + if ((*root) != nullptr) + (*root)->working_flag = false; + return; +} + +template +void KD_TREE::Add_by_range(KD_TREE_NODE **root, BoxPointType boxpoint, bool allow_rebuild) +{ + if ((*root) == nullptr) + return; + (*root)->working_flag = true; + Push_Down(*root); + if (boxpoint.vertex_max[0] <= (*root)->node_range_x[0] || boxpoint.vertex_min[0] > (*root)->node_range_x[1]) + return; + if (boxpoint.vertex_max[1] <= (*root)->node_range_y[0] || boxpoint.vertex_min[1] > (*root)->node_range_y[1]) + return; + if (boxpoint.vertex_max[2] <= (*root)->node_range_z[0] || boxpoint.vertex_min[2] > (*root)->node_range_z[1]) + return; + if (boxpoint.vertex_min[0] <= (*root)->node_range_x[0] && boxpoint.vertex_max[0] > (*root)->node_range_x[1] && boxpoint.vertex_min[1] <= (*root)->node_range_y[0] && boxpoint.vertex_max[1] > (*root)->node_range_y[1] && boxpoint.vertex_min[2] <= (*root)->node_range_z[0] && boxpoint.vertex_max[2] > (*root)->node_range_z[1]) + { + (*root)->tree_deleted = false || (*root)->tree_downsample_deleted; + (*root)->point_deleted = false || (*root)->point_downsample_deleted; + (*root)->need_push_down_to_left = true; + (*root)->need_push_down_to_right = true; + (*root)->invalid_point_num = (*root)->down_del_num; + return; + } + if (boxpoint.vertex_min[0] <= (*root)->point.x && boxpoint.vertex_max[0] > (*root)->point.x && boxpoint.vertex_min[1] <= (*root)->point.y && boxpoint.vertex_max[1] > (*root)->point.y && boxpoint.vertex_min[2] <= (*root)->point.z && boxpoint.vertex_max[2] > (*root)->point.z) + { + (*root)->point_deleted = (*root)->point_downsample_deleted; + } + Operation_Logger_Type add_box_log; + struct timespec Timeout; + add_box_log.op = ADD_BOX; + add_box_log.boxpoint = boxpoint; + if ((Rebuild_Ptr == nullptr) || (*root)->left_son_ptr != *Rebuild_Ptr) + { + Add_by_range(&((*root)->left_son_ptr), boxpoint, allow_rebuild); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + Add_by_range(&((*root)->left_son_ptr), boxpoint, false); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(add_box_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + if ((Rebuild_Ptr == nullptr) || (*root)->right_son_ptr != *Rebuild_Ptr) + { + Add_by_range(&((*root)->right_son_ptr), boxpoint, allow_rebuild); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + Add_by_range(&((*root)->right_son_ptr), boxpoint, false); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(add_box_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + Update(*root); + if (Rebuild_Ptr != nullptr && *Rebuild_Ptr == *root && (*root)->TreeSize < Multi_Thread_Rebuild_Point_Num) + Rebuild_Ptr = nullptr; + bool need_rebuild = allow_rebuild & Criterion_Check((*root)); + if (need_rebuild) + Rebuild(root); + if ((*root) != nullptr) + (*root)->working_flag = false; + return; +} + +template +void KD_TREE::Add_by_point(KD_TREE_NODE **root, PointType point, bool allow_rebuild, int father_axis) +{ + if (*root == nullptr) + { + *root = new KD_TREE_NODE; + InitTreeNode(*root); + (*root)->point = point; + (*root)->division_axis = (father_axis + 1) % 3; + Update(*root); + return; + } + (*root)->working_flag = true; + Operation_Logger_Type add_log; + struct timespec Timeout; + add_log.op = ADD_POINT; + add_log.point = point; + Push_Down(*root); + if (((*root)->division_axis == 0 && point.x < (*root)->point.x) || ((*root)->division_axis == 1 && point.y < (*root)->point.y) || ((*root)->division_axis == 2 && point.z < (*root)->point.z)) + { + if ((Rebuild_Ptr == nullptr) || (*root)->left_son_ptr != *Rebuild_Ptr) + { + Add_by_point(&(*root)->left_son_ptr, point, allow_rebuild, (*root)->division_axis); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + Add_by_point(&(*root)->left_son_ptr, point, false, (*root)->division_axis); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(add_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + else + { + if ((Rebuild_Ptr == nullptr) || (*root)->right_son_ptr != *Rebuild_Ptr) + { + Add_by_point(&(*root)->right_son_ptr, point, allow_rebuild, (*root)->division_axis); + } + else + { + pthread_mutex_lock(&working_flag_mutex); + Add_by_point(&(*root)->right_son_ptr, point, false, (*root)->division_axis); + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(add_log); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + pthread_mutex_unlock(&working_flag_mutex); + } + } + Update(*root); + if (Rebuild_Ptr != nullptr && *Rebuild_Ptr == *root && (*root)->TreeSize < Multi_Thread_Rebuild_Point_Num) + Rebuild_Ptr = nullptr; + bool need_rebuild = allow_rebuild & Criterion_Check((*root)); + if (need_rebuild) + Rebuild(root); + if ((*root) != nullptr) + (*root)->working_flag = false; + return; +} + +template +void KD_TREE::Search(KD_TREE_NODE *root, int k_nearest, PointType point, MANUAL_HEAP &q, float max_dist) +{ + if (root == nullptr || root->tree_deleted) + return; + float cur_dist = calc_box_dist(root, point); + float max_dist_sqr = max_dist * max_dist; + if (cur_dist > max_dist_sqr) + return; + int retval; + if (root->need_push_down_to_left || root->need_push_down_to_right) + { + retval = pthread_mutex_trylock(&(root->push_down_mutex_lock)); + if (retval == 0) + { + Push_Down(root); + pthread_mutex_unlock(&(root->push_down_mutex_lock)); + } + else + { + pthread_mutex_lock(&(root->push_down_mutex_lock)); + pthread_mutex_unlock(&(root->push_down_mutex_lock)); + } + } + if (!root->point_deleted) + { + float dist = calc_dist(point, root->point); + if (dist <= max_dist_sqr && (q.size() < k_nearest || dist < q.top().dist)) + { + if (q.size() >= k_nearest) + q.pop(); + PointType_CMP current_point{root->point, dist}; + q.push(current_point); + } + } + int cur_search_counter; + float dist_left_node = calc_box_dist(root->left_son_ptr, point); + float dist_right_node = calc_box_dist(root->right_son_ptr, point); + if (q.size() < k_nearest || dist_left_node < q.top().dist && dist_right_node < q.top().dist) + { + if (dist_left_node <= dist_right_node) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->left_son_ptr) + { + Search(root->left_son_ptr, k_nearest, point, q, max_dist); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter == -1) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter += 1; + pthread_mutex_unlock(&search_flag_mutex); + Search(root->left_son_ptr, k_nearest, point, q, max_dist); + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter -= 1; + pthread_mutex_unlock(&search_flag_mutex); + } + if (q.size() < k_nearest || dist_right_node < q.top().dist) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->right_son_ptr) + { + Search(root->right_son_ptr, k_nearest, point, q, max_dist); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter == -1) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter += 1; + pthread_mutex_unlock(&search_flag_mutex); + Search(root->right_son_ptr, k_nearest, point, q, max_dist); + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter -= 1; + pthread_mutex_unlock(&search_flag_mutex); + } + } + } + else + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->right_son_ptr) + { + Search(root->right_son_ptr, k_nearest, point, q, max_dist); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter == -1) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter += 1; + pthread_mutex_unlock(&search_flag_mutex); + Search(root->right_son_ptr, k_nearest, point, q, max_dist); + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter -= 1; + pthread_mutex_unlock(&search_flag_mutex); + } + if (q.size() < k_nearest || dist_left_node < q.top().dist) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->left_son_ptr) + { + Search(root->left_son_ptr, k_nearest, point, q, max_dist); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter == -1) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter += 1; + pthread_mutex_unlock(&search_flag_mutex); + Search(root->left_son_ptr, k_nearest, point, q, max_dist); + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter -= 1; + pthread_mutex_unlock(&search_flag_mutex); + } + } + } + } + else + { + if (dist_left_node < q.top().dist) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->left_son_ptr) + { + Search(root->left_son_ptr, k_nearest, point, q, max_dist); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter == -1) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter += 1; + pthread_mutex_unlock(&search_flag_mutex); + Search(root->left_son_ptr, k_nearest, point, q, max_dist); + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter -= 1; + pthread_mutex_unlock(&search_flag_mutex); + } + } + if (dist_right_node < q.top().dist) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->right_son_ptr) + { + Search(root->right_son_ptr, k_nearest, point, q, max_dist); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + while (search_mutex_counter == -1) + { + pthread_mutex_unlock(&search_flag_mutex); + usleep(1); + pthread_mutex_lock(&search_flag_mutex); + } + search_mutex_counter += 1; + pthread_mutex_unlock(&search_flag_mutex); + Search(root->right_son_ptr, k_nearest, point, q, max_dist); + pthread_mutex_lock(&search_flag_mutex); + search_mutex_counter -= 1; + pthread_mutex_unlock(&search_flag_mutex); + } + } + } + return; +} + +template +void KD_TREE::Search_by_range(KD_TREE_NODE *root, BoxPointType boxpoint, PointVector &Storage) +{ + if (root == nullptr) + return; + Push_Down(root); + if (boxpoint.vertex_max[0] <= root->node_range_x[0] || boxpoint.vertex_min[0] > root->node_range_x[1]) + return; + if (boxpoint.vertex_max[1] <= root->node_range_y[0] || boxpoint.vertex_min[1] > root->node_range_y[1]) + return; + if (boxpoint.vertex_max[2] <= root->node_range_z[0] || boxpoint.vertex_min[2] > root->node_range_z[1]) + return; + if (boxpoint.vertex_min[0] <= root->node_range_x[0] && boxpoint.vertex_max[0] > root->node_range_x[1] && boxpoint.vertex_min[1] <= root->node_range_y[0] && boxpoint.vertex_max[1] > root->node_range_y[1] && boxpoint.vertex_min[2] <= root->node_range_z[0] && boxpoint.vertex_max[2] > root->node_range_z[1]) + { + flatten(root, Storage, NOT_RECORD); + return; + } + if (boxpoint.vertex_min[0] <= root->point.x && boxpoint.vertex_max[0] > root->point.x && boxpoint.vertex_min[1] <= root->point.y && boxpoint.vertex_max[1] > root->point.y && boxpoint.vertex_min[2] <= root->point.z && boxpoint.vertex_max[2] > root->point.z) + { + if (!root->point_deleted) + Storage.push_back(root->point); + } + if ((Rebuild_Ptr == nullptr) || root->left_son_ptr != *Rebuild_Ptr) + { + Search_by_range(root->left_son_ptr, boxpoint, Storage); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + Search_by_range(root->left_son_ptr, boxpoint, Storage); + pthread_mutex_unlock(&search_flag_mutex); + } + if ((Rebuild_Ptr == nullptr) || root->right_son_ptr != *Rebuild_Ptr) + { + Search_by_range(root->right_son_ptr, boxpoint, Storage); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + Search_by_range(root->right_son_ptr, boxpoint, Storage); + pthread_mutex_unlock(&search_flag_mutex); + } + return; +} + +template +void KD_TREE::Search_by_radius(KD_TREE_NODE *root, PointType point, float radius, PointVector &Storage) +{ + if (root == nullptr) + return; + Push_Down(root); + PointType range_center; + range_center.x = (root->node_range_x[0] + root->node_range_x[1]) * 0.5; + range_center.y = (root->node_range_y[0] + root->node_range_y[1]) * 0.5; + range_center.z = (root->node_range_z[0] + root->node_range_z[1]) * 0.5; + float dist = sqrt(calc_dist(range_center, point)); + if (dist > radius + sqrt(root->radius_sq)) return; + if (dist <= radius - sqrt(root->radius_sq)) + { + flatten(root, Storage, NOT_RECORD); + return; + } + if (!root->point_deleted && calc_dist(root->point, point) <= radius * radius){ + Storage.push_back(root->point); + } + if ((Rebuild_Ptr == nullptr) || root->left_son_ptr != *Rebuild_Ptr) + { + Search_by_radius(root->left_son_ptr, point, radius, Storage); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + Search_by_radius(root->left_son_ptr, point, radius, Storage); + pthread_mutex_unlock(&search_flag_mutex); + } + if ((Rebuild_Ptr == nullptr) || root->right_son_ptr != *Rebuild_Ptr) + { + Search_by_radius(root->right_son_ptr, point, radius, Storage); + } + else + { + pthread_mutex_lock(&search_flag_mutex); + Search_by_radius(root->right_son_ptr, point, radius, Storage); + pthread_mutex_unlock(&search_flag_mutex); + } + return; +} + +template +bool KD_TREE::Criterion_Check(KD_TREE_NODE *root) +{ + if (root->TreeSize <= Minimal_Unbalanced_Tree_Size) + { + return false; + } + float balance_evaluation = 0.0f; + float delete_evaluation = 0.0f; + KD_TREE_NODE *son_ptr = root->left_son_ptr; + if (son_ptr == nullptr) + son_ptr = root->right_son_ptr; + delete_evaluation = float(root->invalid_point_num) / root->TreeSize; + balance_evaluation = float(son_ptr->TreeSize) / (root->TreeSize - 1); + if (delete_evaluation > delete_criterion_param) + { + return true; + } + if (balance_evaluation > balance_criterion_param || balance_evaluation < 1 - balance_criterion_param) + { + return true; + } + return false; +} + +template +void KD_TREE::Push_Down(KD_TREE_NODE *root) +{ + if (root == nullptr) + return; + Operation_Logger_Type operation; + operation.op = PUSH_DOWN; + operation.tree_deleted = root->tree_deleted; + operation.tree_downsample_deleted = root->tree_downsample_deleted; + if (root->need_push_down_to_left && root->left_son_ptr != nullptr) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->left_son_ptr) + { + root->left_son_ptr->tree_downsample_deleted |= root->tree_downsample_deleted; + root->left_son_ptr->point_downsample_deleted |= root->tree_downsample_deleted; + root->left_son_ptr->tree_deleted = root->tree_deleted || root->left_son_ptr->tree_downsample_deleted; + root->left_son_ptr->point_deleted = root->left_son_ptr->tree_deleted || root->left_son_ptr->point_downsample_deleted; + if (root->tree_downsample_deleted) + root->left_son_ptr->down_del_num = root->left_son_ptr->TreeSize; + if (root->tree_deleted) + root->left_son_ptr->invalid_point_num = root->left_son_ptr->TreeSize; + else + root->left_son_ptr->invalid_point_num = root->left_son_ptr->down_del_num; + root->left_son_ptr->need_push_down_to_left = true; + root->left_son_ptr->need_push_down_to_right = true; + root->need_push_down_to_left = false; + } + else + { + pthread_mutex_lock(&working_flag_mutex); + root->left_son_ptr->tree_downsample_deleted |= root->tree_downsample_deleted; + root->left_son_ptr->point_downsample_deleted |= root->tree_downsample_deleted; + root->left_son_ptr->tree_deleted = root->tree_deleted || root->left_son_ptr->tree_downsample_deleted; + root->left_son_ptr->point_deleted = root->left_son_ptr->tree_deleted || root->left_son_ptr->point_downsample_deleted; + if (root->tree_downsample_deleted) + root->left_son_ptr->down_del_num = root->left_son_ptr->TreeSize; + if (root->tree_deleted) + root->left_son_ptr->invalid_point_num = root->left_son_ptr->TreeSize; + else + root->left_son_ptr->invalid_point_num = root->left_son_ptr->down_del_num; + root->left_son_ptr->need_push_down_to_left = true; + root->left_son_ptr->need_push_down_to_right = true; + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(operation); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + root->need_push_down_to_left = false; + pthread_mutex_unlock(&working_flag_mutex); + } + } + if (root->need_push_down_to_right && root->right_son_ptr != nullptr) + { + if (Rebuild_Ptr == nullptr || *Rebuild_Ptr != root->right_son_ptr) + { + root->right_son_ptr->tree_downsample_deleted |= root->tree_downsample_deleted; + root->right_son_ptr->point_downsample_deleted |= root->tree_downsample_deleted; + root->right_son_ptr->tree_deleted = root->tree_deleted || root->right_son_ptr->tree_downsample_deleted; + root->right_son_ptr->point_deleted = root->right_son_ptr->tree_deleted || root->right_son_ptr->point_downsample_deleted; + if (root->tree_downsample_deleted) + root->right_son_ptr->down_del_num = root->right_son_ptr->TreeSize; + if (root->tree_deleted) + root->right_son_ptr->invalid_point_num = root->right_son_ptr->TreeSize; + else + root->right_son_ptr->invalid_point_num = root->right_son_ptr->down_del_num; + root->right_son_ptr->need_push_down_to_left = true; + root->right_son_ptr->need_push_down_to_right = true; + root->need_push_down_to_right = false; + } + else + { + pthread_mutex_lock(&working_flag_mutex); + root->right_son_ptr->tree_downsample_deleted |= root->tree_downsample_deleted; + root->right_son_ptr->point_downsample_deleted |= root->tree_downsample_deleted; + root->right_son_ptr->tree_deleted = root->tree_deleted || root->right_son_ptr->tree_downsample_deleted; + root->right_son_ptr->point_deleted = root->right_son_ptr->tree_deleted || root->right_son_ptr->point_downsample_deleted; + if (root->tree_downsample_deleted) + root->right_son_ptr->down_del_num = root->right_son_ptr->TreeSize; + if (root->tree_deleted) + root->right_son_ptr->invalid_point_num = root->right_son_ptr->TreeSize; + else + root->right_son_ptr->invalid_point_num = root->right_son_ptr->down_del_num; + root->right_son_ptr->need_push_down_to_left = true; + root->right_son_ptr->need_push_down_to_right = true; + if (rebuild_flag) + { + pthread_mutex_lock(&rebuild_logger_mutex_lock); + Rebuild_Logger.push(operation); + pthread_mutex_unlock(&rebuild_logger_mutex_lock); + } + root->need_push_down_to_right = false; + pthread_mutex_unlock(&working_flag_mutex); + } + } + return; +} + +template +void KD_TREE::Update(KD_TREE_NODE *root) +{ + KD_TREE_NODE *left_son_ptr = root->left_son_ptr; + KD_TREE_NODE *right_son_ptr = root->right_son_ptr; + float tmp_range_x[2] = {INFINITY, -INFINITY}; + float tmp_range_y[2] = {INFINITY, -INFINITY}; + float tmp_range_z[2] = {INFINITY, -INFINITY}; + // Update Tree Size + if (left_son_ptr != nullptr && right_son_ptr != nullptr) + { + root->TreeSize = left_son_ptr->TreeSize + right_son_ptr->TreeSize + 1; + root->invalid_point_num = left_son_ptr->invalid_point_num + right_son_ptr->invalid_point_num + (root->point_deleted ? 1 : 0); + root->down_del_num = left_son_ptr->down_del_num + right_son_ptr->down_del_num + (root->point_downsample_deleted ? 1 : 0); + root->tree_downsample_deleted = left_son_ptr->tree_downsample_deleted & right_son_ptr->tree_downsample_deleted & root->point_downsample_deleted; + root->tree_deleted = left_son_ptr->tree_deleted && right_son_ptr->tree_deleted && root->point_deleted; + if (root->tree_deleted || (!left_son_ptr->tree_deleted && !right_son_ptr->tree_deleted && !root->point_deleted)) + { + tmp_range_x[0] = min(min(left_son_ptr->node_range_x[0], right_son_ptr->node_range_x[0]), root->point.x); + tmp_range_x[1] = max(max(left_son_ptr->node_range_x[1], right_son_ptr->node_range_x[1]), root->point.x); + tmp_range_y[0] = min(min(left_son_ptr->node_range_y[0], right_son_ptr->node_range_y[0]), root->point.y); + tmp_range_y[1] = max(max(left_son_ptr->node_range_y[1], right_son_ptr->node_range_y[1]), root->point.y); + tmp_range_z[0] = min(min(left_son_ptr->node_range_z[0], right_son_ptr->node_range_z[0]), root->point.z); + tmp_range_z[1] = max(max(left_son_ptr->node_range_z[1], right_son_ptr->node_range_z[1]), root->point.z); + } + else + { + if (!left_son_ptr->tree_deleted) + { + tmp_range_x[0] = min(tmp_range_x[0], left_son_ptr->node_range_x[0]); + tmp_range_x[1] = max(tmp_range_x[1], left_son_ptr->node_range_x[1]); + tmp_range_y[0] = min(tmp_range_y[0], left_son_ptr->node_range_y[0]); + tmp_range_y[1] = max(tmp_range_y[1], left_son_ptr->node_range_y[1]); + tmp_range_z[0] = min(tmp_range_z[0], left_son_ptr->node_range_z[0]); + tmp_range_z[1] = max(tmp_range_z[1], left_son_ptr->node_range_z[1]); + } + if (!right_son_ptr->tree_deleted) + { + tmp_range_x[0] = min(tmp_range_x[0], right_son_ptr->node_range_x[0]); + tmp_range_x[1] = max(tmp_range_x[1], right_son_ptr->node_range_x[1]); + tmp_range_y[0] = min(tmp_range_y[0], right_son_ptr->node_range_y[0]); + tmp_range_y[1] = max(tmp_range_y[1], right_son_ptr->node_range_y[1]); + tmp_range_z[0] = min(tmp_range_z[0], right_son_ptr->node_range_z[0]); + tmp_range_z[1] = max(tmp_range_z[1], right_son_ptr->node_range_z[1]); + } + if (!root->point_deleted) + { + tmp_range_x[0] = min(tmp_range_x[0], root->point.x); + tmp_range_x[1] = max(tmp_range_x[1], root->point.x); + tmp_range_y[0] = min(tmp_range_y[0], root->point.y); + tmp_range_y[1] = max(tmp_range_y[1], root->point.y); + tmp_range_z[0] = min(tmp_range_z[0], root->point.z); + tmp_range_z[1] = max(tmp_range_z[1], root->point.z); + } + } + } + else if (left_son_ptr != nullptr) + { + root->TreeSize = left_son_ptr->TreeSize + 1; + root->invalid_point_num = left_son_ptr->invalid_point_num + (root->point_deleted ? 1 : 0); + root->down_del_num = left_son_ptr->down_del_num + (root->point_downsample_deleted ? 1 : 0); + root->tree_downsample_deleted = left_son_ptr->tree_downsample_deleted & root->point_downsample_deleted; + root->tree_deleted = left_son_ptr->tree_deleted && root->point_deleted; + if (root->tree_deleted || (!left_son_ptr->tree_deleted && !root->point_deleted)) + { + tmp_range_x[0] = min(left_son_ptr->node_range_x[0], root->point.x); + tmp_range_x[1] = max(left_son_ptr->node_range_x[1], root->point.x); + tmp_range_y[0] = min(left_son_ptr->node_range_y[0], root->point.y); + tmp_range_y[1] = max(left_son_ptr->node_range_y[1], root->point.y); + tmp_range_z[0] = min(left_son_ptr->node_range_z[0], root->point.z); + tmp_range_z[1] = max(left_son_ptr->node_range_z[1], root->point.z); + } + else + { + if (!left_son_ptr->tree_deleted) + { + tmp_range_x[0] = min(tmp_range_x[0], left_son_ptr->node_range_x[0]); + tmp_range_x[1] = max(tmp_range_x[1], left_son_ptr->node_range_x[1]); + tmp_range_y[0] = min(tmp_range_y[0], left_son_ptr->node_range_y[0]); + tmp_range_y[1] = max(tmp_range_y[1], left_son_ptr->node_range_y[1]); + tmp_range_z[0] = min(tmp_range_z[0], left_son_ptr->node_range_z[0]); + tmp_range_z[1] = max(tmp_range_z[1], left_son_ptr->node_range_z[1]); + } + if (!root->point_deleted) + { + tmp_range_x[0] = min(tmp_range_x[0], root->point.x); + tmp_range_x[1] = max(tmp_range_x[1], root->point.x); + tmp_range_y[0] = min(tmp_range_y[0], root->point.y); + tmp_range_y[1] = max(tmp_range_y[1], root->point.y); + tmp_range_z[0] = min(tmp_range_z[0], root->point.z); + tmp_range_z[1] = max(tmp_range_z[1], root->point.z); + } + } + } + else if (right_son_ptr != nullptr) + { + root->TreeSize = right_son_ptr->TreeSize + 1; + root->invalid_point_num = right_son_ptr->invalid_point_num + (root->point_deleted ? 1 : 0); + root->down_del_num = right_son_ptr->down_del_num + (root->point_downsample_deleted ? 1 : 0); + root->tree_downsample_deleted = right_son_ptr->tree_downsample_deleted & root->point_downsample_deleted; + root->tree_deleted = right_son_ptr->tree_deleted && root->point_deleted; + if (root->tree_deleted || (!right_son_ptr->tree_deleted && !root->point_deleted)) + { + tmp_range_x[0] = min(right_son_ptr->node_range_x[0], root->point.x); + tmp_range_x[1] = max(right_son_ptr->node_range_x[1], root->point.x); + tmp_range_y[0] = min(right_son_ptr->node_range_y[0], root->point.y); + tmp_range_y[1] = max(right_son_ptr->node_range_y[1], root->point.y); + tmp_range_z[0] = min(right_son_ptr->node_range_z[0], root->point.z); + tmp_range_z[1] = max(right_son_ptr->node_range_z[1], root->point.z); + } + else + { + if (!right_son_ptr->tree_deleted) + { + tmp_range_x[0] = min(tmp_range_x[0], right_son_ptr->node_range_x[0]); + tmp_range_x[1] = max(tmp_range_x[1], right_son_ptr->node_range_x[1]); + tmp_range_y[0] = min(tmp_range_y[0], right_son_ptr->node_range_y[0]); + tmp_range_y[1] = max(tmp_range_y[1], right_son_ptr->node_range_y[1]); + tmp_range_z[0] = min(tmp_range_z[0], right_son_ptr->node_range_z[0]); + tmp_range_z[1] = max(tmp_range_z[1], right_son_ptr->node_range_z[1]); + } + if (!root->point_deleted) + { + tmp_range_x[0] = min(tmp_range_x[0], root->point.x); + tmp_range_x[1] = max(tmp_range_x[1], root->point.x); + tmp_range_y[0] = min(tmp_range_y[0], root->point.y); + tmp_range_y[1] = max(tmp_range_y[1], root->point.y); + tmp_range_z[0] = min(tmp_range_z[0], root->point.z); + tmp_range_z[1] = max(tmp_range_z[1], root->point.z); + } + } + } + else + { + root->TreeSize = 1; + root->invalid_point_num = (root->point_deleted ? 1 : 0); + root->down_del_num = (root->point_downsample_deleted ? 1 : 0); + root->tree_downsample_deleted = root->point_downsample_deleted; + root->tree_deleted = root->point_deleted; + tmp_range_x[0] = root->point.x; + tmp_range_x[1] = root->point.x; + tmp_range_y[0] = root->point.y; + tmp_range_y[1] = root->point.y; + tmp_range_z[0] = root->point.z; + tmp_range_z[1] = root->point.z; + } + memcpy(root->node_range_x, tmp_range_x, sizeof(tmp_range_x)); + memcpy(root->node_range_y, tmp_range_y, sizeof(tmp_range_y)); + memcpy(root->node_range_z, tmp_range_z, sizeof(tmp_range_z)); + float x_L = (root->node_range_x[1] - root->node_range_x[0]) * 0.5; + float y_L = (root->node_range_y[1] - root->node_range_y[0]) * 0.5; + float z_L = (root->node_range_z[1] - root->node_range_z[0]) * 0.5; + root->radius_sq = x_L*x_L + y_L * y_L + z_L * z_L; + if (left_son_ptr != nullptr) + left_son_ptr->father_ptr = root; + if (right_son_ptr != nullptr) + right_son_ptr->father_ptr = root; + if (root == Root_Node && root->TreeSize > 3) + { + KD_TREE_NODE *son_ptr = root->left_son_ptr; + if (son_ptr == nullptr) + son_ptr = root->right_son_ptr; + float tmp_bal = float(son_ptr->TreeSize) / (root->TreeSize - 1); + root->alpha_del = float(root->invalid_point_num) / root->TreeSize; + root->alpha_bal = (tmp_bal >= 0.5 - EPSS) ? tmp_bal : 1 - tmp_bal; + } + return; +} + +template +void KD_TREE::flatten(KD_TREE_NODE *root, PointVector &Storage, delete_point_storage_set storage_type) +{ + if (root == nullptr) + return; + Push_Down(root); + if (!root->point_deleted) + { + Storage.push_back(root->point); + } + flatten(root->left_son_ptr, Storage, storage_type); + flatten(root->right_son_ptr, Storage, storage_type); + switch (storage_type) + { + case NOT_RECORD: + break; + case DELETE_POINTS_REC: + if (root->point_deleted && !root->point_downsample_deleted) + { + Points_deleted.push_back(root->point); + } + break; + case MULTI_THREAD_REC: + if (root->point_deleted && !root->point_downsample_deleted) + { + Multithread_Points_deleted.push_back(root->point); + } + break; + default: + break; + } + return; +} + +template +void KD_TREE::delete_tree_nodes(KD_TREE_NODE **root) +{ + if (*root == nullptr) + return; + Push_Down(*root); + delete_tree_nodes(&(*root)->left_son_ptr); + delete_tree_nodes(&(*root)->right_son_ptr); + + pthread_mutex_destroy(&(*root)->push_down_mutex_lock); + delete *root; + *root = nullptr; + + return; +} + +template +bool KD_TREE::same_point(PointType a, PointType b) +{ + return (fabs(a.x - b.x) < EPSS && fabs(a.y - b.y) < EPSS && fabs(a.z - b.z) < EPSS); +} + +template +float KD_TREE::calc_dist(PointType a, PointType b) +{ + float dist = 0.0f; + dist = (a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y) + (a.z - b.z) * (a.z - b.z); + return dist; +} + +template +float KD_TREE::calc_box_dist(KD_TREE_NODE *node, PointType point) +{ + if (node == nullptr) + return INFINITY; + float min_dist = 0.0; + if (point.x < node->node_range_x[0]) + min_dist += (point.x - node->node_range_x[0]) * (point.x - node->node_range_x[0]); + if (point.x > node->node_range_x[1]) + min_dist += (point.x - node->node_range_x[1]) * (point.x - node->node_range_x[1]); + if (point.y < node->node_range_y[0]) + min_dist += (point.y - node->node_range_y[0]) * (point.y - node->node_range_y[0]); + if (point.y > node->node_range_y[1]) + min_dist += (point.y - node->node_range_y[1]) * (point.y - node->node_range_y[1]); + if (point.z < node->node_range_z[0]) + min_dist += (point.z - node->node_range_z[0]) * (point.z - node->node_range_z[0]); + if (point.z > node->node_range_z[1]) + min_dist += (point.z - node->node_range_z[1]) * (point.z - node->node_range_z[1]); + return min_dist; +} +template +bool KD_TREE::point_cmp_x(PointType a, PointType b) { return a.x < b.x; } +template +bool KD_TREE::point_cmp_y(PointType a, PointType b) { return a.y < b.y; } +template +bool KD_TREE::point_cmp_z(PointType a, PointType b) { return a.z < b.z; } + +// Manual heap + + + +// manual queue + + +// Manual Instatiations +template class KD_TREE; +template class KD_TREE; +template class KD_TREE; + diff --git a/src/rm_localization/FAST_LIO/include/ikd-Tree/ikd_Tree.h b/src/rm_localization/FAST_LIO/include/ikd-Tree/ikd_Tree.h new file mode 100644 index 0000000..d4b302e --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/ikd-Tree/ikd_Tree.h @@ -0,0 +1,344 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define EPSS 1e-6 +#define Minimal_Unbalanced_Tree_Size 10 +#define Multi_Thread_Rebuild_Point_Num 1500 +#define DOWNSAMPLE_SWITCH true +#define ForceRebuildPercentage 0.2 +#define Q_LEN 1000000 + +using namespace std; + +// typedef pcl::PointXYZINormal PointType; +// typedef vector> PointVector; + +struct BoxPointType +{ + float vertex_min[3]; + float vertex_max[3]; +}; + +enum operation_set +{ + ADD_POINT, + DELETE_POINT, + DELETE_BOX, + ADD_BOX, + DOWNSAMPLE_DELETE, + PUSH_DOWN +}; + +enum delete_point_storage_set +{ + NOT_RECORD, + DELETE_POINTS_REC, + MULTI_THREAD_REC +}; + +template +class KD_TREE +{ + // using MANUAL_Q_ = MANUAL_Q; + // using PointVector = std::vector; + + // using MANUAL_Q_ = MANUAL_Q; +public: + using PointVector = std::vector>; + using Ptr = std::shared_ptr>; + + struct KD_TREE_NODE + { + PointType point; + int division_axis; + int TreeSize = 1; + int invalid_point_num = 0; + int down_del_num = 0; + bool point_deleted = false; + bool tree_deleted = false; + bool point_downsample_deleted = false; + bool tree_downsample_deleted = false; + bool need_push_down_to_left = false; + bool need_push_down_to_right = false; + bool working_flag = false; + pthread_mutex_t push_down_mutex_lock; + float node_range_x[2], node_range_y[2], node_range_z[2]; + float radius_sq; + KD_TREE_NODE *left_son_ptr = nullptr; + KD_TREE_NODE *right_son_ptr = nullptr; + KD_TREE_NODE *father_ptr = nullptr; + // For paper data record + float alpha_del; + float alpha_bal; + }; + + struct Operation_Logger_Type + { + PointType point; + BoxPointType boxpoint; + bool tree_deleted, tree_downsample_deleted; + operation_set op; + }; + // static const PointType zeroP; + + struct PointType_CMP + { + PointType point; + float dist = 0.0; + PointType_CMP(PointType p = PointType(), float d = INFINITY) + { + this->point = p; + this->dist = d; + }; + bool operator<(const PointType_CMP &a) const + { + if (fabs(dist - a.dist) < 1e-10) + return point.x < a.point.x; + else + return dist < a.dist; + } + }; + + class MANUAL_HEAP + { + + public: + MANUAL_HEAP(int max_capacity = 100) + + { + cap = max_capacity; + heap = new PointType_CMP[max_capacity]; + heap_size = 0; + } + + ~MANUAL_HEAP() + { + delete[] heap; + } + void pop() + { + if (heap_size == 0) + return; + heap[0] = heap[heap_size - 1]; + heap_size--; + MoveDown(0); + return; + } + PointType_CMP top() + { + return heap[0]; + } + void push(PointType_CMP point) + { + if (heap_size >= cap) + return; + heap[heap_size] = point; + FloatUp(heap_size); + heap_size++; + return; + } + int size() + { + return heap_size; + } + void clear() + { + heap_size = 0; + return; + } + + private: + PointType_CMP *heap; + void MoveDown(int heap_index) + { + int l = heap_index * 2 + 1; + PointType_CMP tmp = heap[heap_index]; + while (l < heap_size) + { + if (l + 1 < heap_size && heap[l] < heap[l + 1]) + l++; + if (tmp < heap[l]) + { + heap[heap_index] = heap[l]; + heap_index = l; + l = heap_index * 2 + 1; + } + else + break; + } + heap[heap_index] = tmp; + return; + } + void FloatUp(int heap_index) + { + int ancestor = (heap_index - 1) / 2; + PointType_CMP tmp = heap[heap_index]; + while (heap_index > 0) + { + if (heap[ancestor] < tmp) + { + heap[heap_index] = heap[ancestor]; + heap_index = ancestor; + ancestor = (heap_index - 1) / 2; + } + else + break; + } + heap[heap_index] = tmp; + return; + } + int heap_size = 0; + int cap = 0; + }; + + class MANUAL_Q + { + private: + int head = 0, tail = 0, counter = 0; + Operation_Logger_Type q[Q_LEN]; + bool is_empty; + + public: + void pop() + { + if (counter == 0) + return; + head++; + head %= Q_LEN; + counter--; + if (counter == 0) + is_empty = true; + return; + } + Operation_Logger_Type front() + { + return q[head]; + } + Operation_Logger_Type back() + { + return q[tail]; + } + void clear() + { + head = 0; + tail = 0; + counter = 0; + is_empty = true; + return; + } + void push(Operation_Logger_Type op) + { + q[tail] = op; + counter++; + if (is_empty) + is_empty = false; + tail++; + tail %= Q_LEN; + } + bool empty() + { + return is_empty; + } + int size() + { + return counter; + } + }; + +private: + // Multi-thread Tree Rebuild + bool termination_flag = false; + bool rebuild_flag = false; + pthread_t rebuild_thread; + pthread_mutex_t termination_flag_mutex_lock, rebuild_ptr_mutex_lock, working_flag_mutex, search_flag_mutex; + pthread_mutex_t rebuild_logger_mutex_lock, points_deleted_rebuild_mutex_lock; + // queue Rebuild_Logger; + MANUAL_Q Rebuild_Logger; + PointVector Rebuild_PCL_Storage; + KD_TREE_NODE **Rebuild_Ptr = nullptr; + int search_mutex_counter = 0; + static void *multi_thread_ptr(void *arg); + void multi_thread_rebuild(); + void start_thread(); + void stop_thread(); + void run_operation(KD_TREE_NODE **root, Operation_Logger_Type operation); + // KD Tree Functions and augmented variables + int Treesize_tmp = 0, Validnum_tmp = 0; + float alpha_bal_tmp = 0.5, alpha_del_tmp = 0.0; + float delete_criterion_param = 0.5f; + float balance_criterion_param = 0.7f; + float downsample_size = 0.2f; + bool Delete_Storage_Disabled = false; + KD_TREE_NODE *STATIC_ROOT_NODE = nullptr; + PointVector Points_deleted; + PointVector Downsample_Storage; + PointVector Multithread_Points_deleted; + void InitTreeNode(KD_TREE_NODE *root); + void Test_Lock_States(KD_TREE_NODE *root); + void BuildTree(KD_TREE_NODE **root, int l, int r, PointVector &Storage); + void Rebuild(KD_TREE_NODE **root); + int Delete_by_range(KD_TREE_NODE **root, BoxPointType boxpoint, bool allow_rebuild, bool is_downsample); + void Delete_by_point(KD_TREE_NODE **root, PointType point, bool allow_rebuild); + void Add_by_point(KD_TREE_NODE **root, PointType point, bool allow_rebuild, int father_axis); + void Add_by_range(KD_TREE_NODE **root, BoxPointType boxpoint, bool allow_rebuild); + void Search(KD_TREE_NODE *root, int k_nearest, PointType point, MANUAL_HEAP &q, float max_dist); //priority_queue + void Search_by_range(KD_TREE_NODE *root, BoxPointType boxpoint, PointVector &Storage); + void Search_by_radius(KD_TREE_NODE *root, PointType point, float radius, PointVector &Storage); + bool Criterion_Check(KD_TREE_NODE *root); + void Push_Down(KD_TREE_NODE *root); + void Update(KD_TREE_NODE *root); + void delete_tree_nodes(KD_TREE_NODE **root); + void downsample(KD_TREE_NODE **root); + bool same_point(PointType a, PointType b); + float calc_dist(PointType a, PointType b); + float calc_box_dist(KD_TREE_NODE *node, PointType point); + static bool point_cmp_x(PointType a, PointType b); + static bool point_cmp_y(PointType a, PointType b); + static bool point_cmp_z(PointType a, PointType b); + +public: + KD_TREE(float delete_param = 0.5, float balance_param = 0.6, float box_length = 0.2); + ~KD_TREE(); + void Set_delete_criterion_param(float delete_param) + { + delete_criterion_param = delete_param; + } + void Set_balance_criterion_param(float balance_param) + { + balance_criterion_param = balance_param; + } + void set_downsample_param(float downsample_param) + { + downsample_size = downsample_param; + } + void InitializeKDTree(float delete_param = 0.5, float balance_param = 0.7, float box_length = 0.2); + int size(); + int validnum(); + void root_alpha(float &alpha_bal, float &alpha_del); + void Build(PointVector point_cloud); + void Nearest_Search(PointType point, int k_nearest, PointVector &Nearest_Points, vector &Point_Distance, float max_dist = INFINITY); + void Box_Search(const BoxPointType &Box_of_Point, PointVector &Storage); + void Radius_Search(PointType point, const float radius, PointVector &Storage); + int Add_Points(PointVector &PointToAdd, bool downsample_on); + void Add_Point_Boxes(vector &BoxPoints); + void Delete_Points(PointVector &PointToDel); + int Delete_Point_Boxes(vector &BoxPoints); + void flatten(KD_TREE_NODE *root, PointVector &Storage, delete_point_storage_set storage_type); + void acquire_removed_points(PointVector &removed_points); + BoxPointType tree_range(); + PointVector PCL_Storage; + KD_TREE_NODE *Root_Node = nullptr; + int max_queue_size = 0; +}; + +// template +// PointType KD_TREE::zeroP = PointType(0,0,0); diff --git a/src/rm_localization/FAST_LIO/include/matplotlibcpp.h b/src/rm_localization/FAST_LIO/include/matplotlibcpp.h new file mode 100644 index 0000000..6855445 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/matplotlibcpp.h @@ -0,0 +1,2499 @@ +#pragma once + +// Python headers must be included before any system headers, since +// they define _POSIX_C_SOURCE +#include + +#include +#include +#include +#include +#include +#include +#include +#include // requires c++11 support +#include + +#ifndef WITHOUT_NUMPY +# define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION +# include + +# ifdef WITH_OPENCV +# include +# endif // WITH_OPENCV + +/* + * A bunch of constants were removed in OpenCV 4 in favour of enum classes, so + * define the ones we need here. + */ +# if CV_MAJOR_VERSION > 3 +# define CV_BGR2RGB cv::COLOR_BGR2RGB +# define CV_BGRA2RGBA cv::COLOR_BGRA2RGBA +# endif +#endif // WITHOUT_NUMPY + +#if PY_MAJOR_VERSION >= 3 +# define PyString_FromString PyUnicode_FromString +# define PyInt_FromLong PyLong_FromLong +# define PyString_FromString PyUnicode_FromString +#endif + + +namespace matplotlibcpp { +namespace detail { + +static std::string s_backend; + +struct _interpreter { + PyObject* s_python_function_arrow; + PyObject *s_python_function_show; + PyObject *s_python_function_close; + PyObject *s_python_function_draw; + PyObject *s_python_function_pause; + PyObject *s_python_function_save; + PyObject *s_python_function_figure; + PyObject *s_python_function_fignum_exists; + PyObject *s_python_function_plot; + PyObject *s_python_function_quiver; + PyObject* s_python_function_contour; + PyObject *s_python_function_semilogx; + PyObject *s_python_function_semilogy; + PyObject *s_python_function_loglog; + PyObject *s_python_function_fill; + PyObject *s_python_function_fill_between; + PyObject *s_python_function_hist; + PyObject *s_python_function_imshow; + PyObject *s_python_function_scatter; + PyObject *s_python_function_boxplot; + PyObject *s_python_function_subplot; + PyObject *s_python_function_subplot2grid; + PyObject *s_python_function_legend; + PyObject *s_python_function_xlim; + PyObject *s_python_function_ion; + PyObject *s_python_function_ginput; + PyObject *s_python_function_ylim; + PyObject *s_python_function_title; + PyObject *s_python_function_axis; + PyObject *s_python_function_axvline; + PyObject *s_python_function_axvspan; + PyObject *s_python_function_xlabel; + PyObject *s_python_function_ylabel; + PyObject *s_python_function_gca; + PyObject *s_python_function_xticks; + PyObject *s_python_function_yticks; + PyObject* s_python_function_margins; + PyObject *s_python_function_tick_params; + PyObject *s_python_function_grid; + PyObject* s_python_function_cla; + PyObject *s_python_function_clf; + PyObject *s_python_function_errorbar; + PyObject *s_python_function_annotate; + PyObject *s_python_function_tight_layout; + PyObject *s_python_colormap; + PyObject *s_python_empty_tuple; + PyObject *s_python_function_stem; + PyObject *s_python_function_xkcd; + PyObject *s_python_function_text; + PyObject *s_python_function_suptitle; + PyObject *s_python_function_bar; + PyObject *s_python_function_colorbar; + PyObject *s_python_function_subplots_adjust; + + + /* For now, _interpreter is implemented as a singleton since its currently not possible to have + multiple independent embedded python interpreters without patching the python source code + or starting a separate process for each. + http://bytes.com/topic/python/answers/793370-multiple-independent-python-interpreters-c-c-program + */ + + static _interpreter& get() { + static _interpreter ctx; + return ctx; + } + + PyObject* safe_import(PyObject* module, std::string fname) { + PyObject* fn = PyObject_GetAttrString(module, fname.c_str()); + + if (!fn) + throw std::runtime_error(std::string("Couldn't find required function: ") + fname); + + if (!PyFunction_Check(fn)) + throw std::runtime_error(fname + std::string(" is unexpectedly not a PyFunction.")); + + return fn; + } + +private: + +#ifndef WITHOUT_NUMPY +# if PY_MAJOR_VERSION >= 3 + + void *import_numpy() { + import_array(); // initialize C-API + return NULL; + } + +# else + + void import_numpy() { + import_array(); // initialize C-API + } + +# endif +#endif + + _interpreter() { + + // optional but recommended +#if PY_MAJOR_VERSION >= 3 + wchar_t name[] = L"plotting"; +#else + char name[] = "plotting"; +#endif + Py_SetProgramName(name); + Py_Initialize(); + +#ifndef WITHOUT_NUMPY + import_numpy(); // initialize numpy C-API +#endif + + PyObject* matplotlibname = PyString_FromString("matplotlib"); + PyObject* pyplotname = PyString_FromString("matplotlib.pyplot"); + PyObject* cmname = PyString_FromString("matplotlib.cm"); + PyObject* pylabname = PyString_FromString("pylab"); + if (!pyplotname || !pylabname || !matplotlibname || !cmname) { + throw std::runtime_error("couldnt create string"); + } + + PyObject* matplotlib = PyImport_Import(matplotlibname); + Py_DECREF(matplotlibname); + if (!matplotlib) { + PyErr_Print(); + throw std::runtime_error("Error loading module matplotlib!"); + } + + // matplotlib.use() must be called *before* pylab, matplotlib.pyplot, + // or matplotlib.backends is imported for the first time + if (!s_backend.empty()) { + PyObject_CallMethod(matplotlib, const_cast("use"), const_cast("s"), s_backend.c_str()); + } + + PyObject* pymod = PyImport_Import(pyplotname); + Py_DECREF(pyplotname); + if (!pymod) { throw std::runtime_error("Error loading module matplotlib.pyplot!"); } + + s_python_colormap = PyImport_Import(cmname); + Py_DECREF(cmname); + if (!s_python_colormap) { throw std::runtime_error("Error loading module matplotlib.cm!"); } + + PyObject* pylabmod = PyImport_Import(pylabname); + Py_DECREF(pylabname); + if (!pylabmod) { throw std::runtime_error("Error loading module pylab!"); } + + s_python_function_arrow = safe_import(pymod, "arrow"); + s_python_function_show = safe_import(pymod, "show"); + s_python_function_close = safe_import(pymod, "close"); + s_python_function_draw = safe_import(pymod, "draw"); + s_python_function_pause = safe_import(pymod, "pause"); + s_python_function_figure = safe_import(pymod, "figure"); + s_python_function_fignum_exists = safe_import(pymod, "fignum_exists"); + s_python_function_plot = safe_import(pymod, "plot"); + s_python_function_quiver = safe_import(pymod, "quiver"); + s_python_function_contour = safe_import(pymod, "contour"); + s_python_function_semilogx = safe_import(pymod, "semilogx"); + s_python_function_semilogy = safe_import(pymod, "semilogy"); + s_python_function_loglog = safe_import(pymod, "loglog"); + s_python_function_fill = safe_import(pymod, "fill"); + s_python_function_fill_between = safe_import(pymod, "fill_between"); + s_python_function_hist = safe_import(pymod,"hist"); + s_python_function_scatter = safe_import(pymod,"scatter"); + s_python_function_boxplot = safe_import(pymod,"boxplot"); + s_python_function_subplot = safe_import(pymod, "subplot"); + s_python_function_subplot2grid = safe_import(pymod, "subplot2grid"); + s_python_function_legend = safe_import(pymod, "legend"); + s_python_function_ylim = safe_import(pymod, "ylim"); + s_python_function_title = safe_import(pymod, "title"); + s_python_function_axis = safe_import(pymod, "axis"); + s_python_function_axvline = safe_import(pymod, "axvline"); + s_python_function_axvspan = safe_import(pymod, "axvspan"); + s_python_function_xlabel = safe_import(pymod, "xlabel"); + s_python_function_ylabel = safe_import(pymod, "ylabel"); + s_python_function_gca = safe_import(pymod, "gca"); + s_python_function_xticks = safe_import(pymod, "xticks"); + s_python_function_yticks = safe_import(pymod, "yticks"); + s_python_function_margins = safe_import(pymod, "margins"); + s_python_function_tick_params = safe_import(pymod, "tick_params"); + s_python_function_grid = safe_import(pymod, "grid"); + s_python_function_xlim = safe_import(pymod, "xlim"); + s_python_function_ion = safe_import(pymod, "ion"); + s_python_function_ginput = safe_import(pymod, "ginput"); + s_python_function_save = safe_import(pylabmod, "savefig"); + s_python_function_annotate = safe_import(pymod,"annotate"); + s_python_function_cla = safe_import(pymod, "cla"); + s_python_function_clf = safe_import(pymod, "clf"); + s_python_function_errorbar = safe_import(pymod, "errorbar"); + s_python_function_tight_layout = safe_import(pymod, "tight_layout"); + s_python_function_stem = safe_import(pymod, "stem"); + s_python_function_xkcd = safe_import(pymod, "xkcd"); + s_python_function_text = safe_import(pymod, "text"); + s_python_function_suptitle = safe_import(pymod, "suptitle"); + s_python_function_bar = safe_import(pymod,"bar"); + s_python_function_colorbar = PyObject_GetAttrString(pymod, "colorbar"); + s_python_function_subplots_adjust = safe_import(pymod,"subplots_adjust"); +#ifndef WITHOUT_NUMPY + s_python_function_imshow = safe_import(pymod, "imshow"); +#endif + s_python_empty_tuple = PyTuple_New(0); + } + + ~_interpreter() { + Py_Finalize(); + } +}; + +} // end namespace detail + +/// Select the backend +/// +/// **NOTE:** This must be called before the first plot command to have +/// any effect. +/// +/// Mainly useful to select the non-interactive 'Agg' backend when running +/// matplotlibcpp in headless mode, for example on a machine with no display. +/// +/// See also: https://matplotlib.org/2.0.2/api/matplotlib_configuration_api.html#matplotlib.use +inline void backend(const std::string& name) +{ + detail::s_backend = name; +} + +inline bool annotate(std::string annotation, double x, double y) +{ + detail::_interpreter::get(); + + PyObject * xy = PyTuple_New(2); + PyObject * str = PyString_FromString(annotation.c_str()); + + PyTuple_SetItem(xy,0,PyFloat_FromDouble(x)); + PyTuple_SetItem(xy,1,PyFloat_FromDouble(y)); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "xy", xy); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, str); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_annotate, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); + + return res; +} + +namespace detail { + +#ifndef WITHOUT_NUMPY +// Type selector for numpy array conversion +template struct select_npy_type { const static NPY_TYPES type = NPY_NOTYPE; }; //Default +template <> struct select_npy_type { const static NPY_TYPES type = NPY_DOUBLE; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_FLOAT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_BOOL; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT8; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_SHORT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT64; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_UINT8; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_USHORT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_ULONG; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_UINT64; }; + +// Sanity checks; comment them out or change the numpy type below if you're compiling on +// a platform where they don't apply +static_assert(sizeof(long long) == 8); +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT64; }; +static_assert(sizeof(unsigned long long) == 8); +template <> struct select_npy_type { const static NPY_TYPES type = NPY_UINT64; }; +// TODO: add int, long, etc. + +template +PyObject* get_array(const std::vector& v) +{ + npy_intp vsize = v.size(); + NPY_TYPES type = select_npy_type::type; + if (type == NPY_NOTYPE) { + size_t memsize = v.size()*sizeof(double); + double* dp = static_cast(::malloc(memsize)); + for (size_t i=0; i(varray), NPY_ARRAY_OWNDATA); + return varray; + } + + PyObject* varray = PyArray_SimpleNewFromData(1, &vsize, type, (void*)(v.data())); + return varray; +} + + +template +PyObject* get_2darray(const std::vector<::std::vector>& v) +{ + if (v.size() < 1) throw std::runtime_error("get_2d_array v too small"); + + npy_intp vsize[2] = {static_cast(v.size()), + static_cast(v[0].size())}; + + PyArrayObject *varray = + (PyArrayObject *)PyArray_SimpleNew(2, vsize, NPY_DOUBLE); + + double *vd_begin = static_cast(PyArray_DATA(varray)); + + for (const ::std::vector &v_row : v) { + if (v_row.size() != static_cast(vsize[1])) + throw std::runtime_error("Missmatched array size"); + std::copy(v_row.begin(), v_row.end(), vd_begin); + vd_begin += vsize[1]; + } + + return reinterpret_cast(varray); +} + +#else // fallback if we don't have numpy: copy every element of the given vector + +template +PyObject* get_array(const std::vector& v) +{ + PyObject* list = PyList_New(v.size()); + for(size_t i = 0; i < v.size(); ++i) { + PyList_SetItem(list, i, PyFloat_FromDouble(v.at(i))); + } + return list; +} + +#endif // WITHOUT_NUMPY + +// sometimes, for labels and such, we need string arrays +inline PyObject * get_array(const std::vector& strings) +{ + PyObject* list = PyList_New(strings.size()); + for (std::size_t i = 0; i < strings.size(); ++i) { + PyList_SetItem(list, i, PyString_FromString(strings[i].c_str())); + } + return list; +} + +// not all matplotlib need 2d arrays, some prefer lists of lists +template +PyObject* get_listlist(const std::vector>& ll) +{ + PyObject* listlist = PyList_New(ll.size()); + for (std::size_t i = 0; i < ll.size(); ++i) { + PyList_SetItem(listlist, i, get_array(ll[i])); + } + return listlist; +} + +} // namespace detail + +/// Plot a line through the given x and y data points.. +/// +/// See: https://matplotlib.org/3.2.1/api/_as_gen/matplotlib.pyplot.plot.html +template +bool plot(const std::vector &x, const std::vector &y, const std::map& keywords) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +// TODO - it should be possible to make this work by implementing +// a non-numpy alternative for `detail::get_2darray()`. +#ifndef WITHOUT_NUMPY +template +void plot_surface(const std::vector<::std::vector> &x, + const std::vector<::std::vector> &y, + const std::vector<::std::vector> &z, + const std::map &keywords = + std::map()) +{ + detail::_interpreter::get(); + + // We lazily load the modules here the first time this function is called + // because I'm not sure that we can assume "matplotlib installed" implies + // "mpl_toolkits installed" on all platforms, and we don't want to require + // it for people who don't need 3d plots. + static PyObject *mpl_toolkitsmod = nullptr, *axis3dmod = nullptr; + if (!mpl_toolkitsmod) { + detail::_interpreter::get(); + + PyObject* mpl_toolkits = PyString_FromString("mpl_toolkits"); + PyObject* axis3d = PyString_FromString("mpl_toolkits.mplot3d"); + if (!mpl_toolkits || !axis3d) { throw std::runtime_error("couldnt create string"); } + + mpl_toolkitsmod = PyImport_Import(mpl_toolkits); + Py_DECREF(mpl_toolkits); + if (!mpl_toolkitsmod) { throw std::runtime_error("Error loading module mpl_toolkits!"); } + + axis3dmod = PyImport_Import(axis3d); + Py_DECREF(axis3d); + if (!axis3dmod) { throw std::runtime_error("Error loading module mpl_toolkits.mplot3d!"); } + } + + assert(x.size() == y.size()); + assert(y.size() == z.size()); + + // using numpy arrays + PyObject *xarray = detail::get_2darray(x); + PyObject *yarray = detail::get_2darray(y); + PyObject *zarray = detail::get_2darray(z); + + // construct positional args + PyObject *args = PyTuple_New(3); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + PyTuple_SetItem(args, 2, zarray); + + // Build up the kw args. + PyObject *kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "rstride", PyInt_FromLong(1)); + PyDict_SetItemString(kwargs, "cstride", PyInt_FromLong(1)); + + PyObject *python_colormap_coolwarm = PyObject_GetAttrString( + detail::_interpreter::get().s_python_colormap, "coolwarm"); + + PyDict_SetItemString(kwargs, "cmap", python_colormap_coolwarm); + + for (std::map::const_iterator it = keywords.begin(); + it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyString_FromString(it->second.c_str())); + } + + + PyObject *fig = + PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, + detail::_interpreter::get().s_python_empty_tuple); + if (!fig) throw std::runtime_error("Call to figure() failed."); + + PyObject *gca_kwargs = PyDict_New(); + PyDict_SetItemString(gca_kwargs, "projection", PyString_FromString("3d")); + + PyObject *gca = PyObject_GetAttrString(fig, "gca"); + if (!gca) throw std::runtime_error("No gca"); + Py_INCREF(gca); + PyObject *axis = PyObject_Call( + gca, detail::_interpreter::get().s_python_empty_tuple, gca_kwargs); + + if (!axis) throw std::runtime_error("No axis"); + Py_INCREF(axis); + + Py_DECREF(gca); + Py_DECREF(gca_kwargs); + + PyObject *plot_surface = PyObject_GetAttrString(axis, "plot_surface"); + if (!plot_surface) throw std::runtime_error("No surface"); + Py_INCREF(plot_surface); + PyObject *res = PyObject_Call(plot_surface, args, kwargs); + if (!res) throw std::runtime_error("failed surface"); + Py_DECREF(plot_surface); + + Py_DECREF(axis); + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); +} +#endif // WITHOUT_NUMPY + +template +void plot3(const std::vector &x, + const std::vector &y, + const std::vector &z, + const std::map &keywords = + std::map()) +{ + detail::_interpreter::get(); + + // Same as with plot_surface: We lazily load the modules here the first time + // this function is called because I'm not sure that we can assume "matplotlib + // installed" implies "mpl_toolkits installed" on all platforms, and we don't + // want to require it for people who don't need 3d plots. + static PyObject *mpl_toolkitsmod = nullptr, *axis3dmod = nullptr; + if (!mpl_toolkitsmod) { + detail::_interpreter::get(); + + PyObject* mpl_toolkits = PyString_FromString("mpl_toolkits"); + PyObject* axis3d = PyString_FromString("mpl_toolkits.mplot3d"); + if (!mpl_toolkits || !axis3d) { throw std::runtime_error("couldnt create string"); } + + mpl_toolkitsmod = PyImport_Import(mpl_toolkits); + Py_DECREF(mpl_toolkits); + if (!mpl_toolkitsmod) { throw std::runtime_error("Error loading module mpl_toolkits!"); } + + axis3dmod = PyImport_Import(axis3d); + Py_DECREF(axis3d); + if (!axis3dmod) { throw std::runtime_error("Error loading module mpl_toolkits.mplot3d!"); } + } + + assert(x.size() == y.size()); + assert(y.size() == z.size()); + + PyObject *xarray = detail::get_array(x); + PyObject *yarray = detail::get_array(y); + PyObject *zarray = detail::get_array(z); + + // construct positional args + PyObject *args = PyTuple_New(3); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + PyTuple_SetItem(args, 2, zarray); + + // Build up the kw args. + PyObject *kwargs = PyDict_New(); + + for (std::map::const_iterator it = keywords.begin(); + it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyString_FromString(it->second.c_str())); + } + + PyObject *fig = + PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, + detail::_interpreter::get().s_python_empty_tuple); + if (!fig) throw std::runtime_error("Call to figure() failed."); + + PyObject *gca_kwargs = PyDict_New(); + PyDict_SetItemString(gca_kwargs, "projection", PyString_FromString("3d")); + + PyObject *gca = PyObject_GetAttrString(fig, "gca"); + if (!gca) throw std::runtime_error("No gca"); + Py_INCREF(gca); + PyObject *axis = PyObject_Call( + gca, detail::_interpreter::get().s_python_empty_tuple, gca_kwargs); + + if (!axis) throw std::runtime_error("No axis"); + Py_INCREF(axis); + + Py_DECREF(gca); + Py_DECREF(gca_kwargs); + + PyObject *plot3 = PyObject_GetAttrString(axis, "plot"); + if (!plot3) throw std::runtime_error("No 3D line plot"); + Py_INCREF(plot3); + PyObject *res = PyObject_Call(plot3, args, kwargs); + if (!res) throw std::runtime_error("Failed 3D line plot"); + Py_DECREF(plot3); + + Py_DECREF(axis); + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); +} + +template +bool stem(const std::vector &x, const std::vector &y, const std::map& keywords) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = + keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call( + detail::_interpreter::get().s_python_function_stem, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) + Py_DECREF(res); + + return res; +} + +template< typename Numeric > +bool fill(const std::vector& x, const std::vector& y, const std::map& keywords) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_fill, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if (res) Py_DECREF(res); + + return res; +} + +template< typename Numeric > +bool fill_between(const std::vector& x, const std::vector& y1, const std::vector& y2, const std::map& keywords) +{ + assert(x.size() == y1.size()); + assert(x.size() == y2.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* y1array = detail::get_array(y1); + PyObject* y2array = detail::get_array(y2); + + // construct positional args + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, y1array); + PyTuple_SetItem(args, 2, y2array); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_fill_between, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template +bool arrow(Numeric x, Numeric y, Numeric end_x, Numeric end_y, const std::string& fc = "r", + const std::string ec = "k", Numeric head_length = 0.25, Numeric head_width = 0.1625) { + PyObject* obj_x = PyFloat_FromDouble(x); + PyObject* obj_y = PyFloat_FromDouble(y); + PyObject* obj_end_x = PyFloat_FromDouble(end_x); + PyObject* obj_end_y = PyFloat_FromDouble(end_y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "fc", PyString_FromString(fc.c_str())); + PyDict_SetItemString(kwargs, "ec", PyString_FromString(ec.c_str())); + PyDict_SetItemString(kwargs, "head_width", PyFloat_FromDouble(head_width)); + PyDict_SetItemString(kwargs, "head_length", PyFloat_FromDouble(head_length)); + + PyObject* plot_args = PyTuple_New(4); + PyTuple_SetItem(plot_args, 0, obj_x); + PyTuple_SetItem(plot_args, 1, obj_y); + PyTuple_SetItem(plot_args, 2, obj_end_x); + PyTuple_SetItem(plot_args, 3, obj_end_y); + + PyObject* res = + PyObject_Call(detail::_interpreter::get().s_python_function_arrow, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if (res) + Py_DECREF(res); + + return res; +} + +template< typename Numeric> +bool hist(const std::vector& y, long bins=10,std::string color="b", + double alpha=1.0, bool cumulative=false) +{ + detail::_interpreter::get(); + + PyObject* yarray = detail::get_array(y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "bins", PyLong_FromLong(bins)); + PyDict_SetItemString(kwargs, "color", PyString_FromString(color.c_str())); + PyDict_SetItemString(kwargs, "alpha", PyFloat_FromDouble(alpha)); + PyDict_SetItemString(kwargs, "cumulative", cumulative ? Py_True : Py_False); + + PyObject* plot_args = PyTuple_New(1); + + PyTuple_SetItem(plot_args, 0, yarray); + + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_hist, plot_args, kwargs); + + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +#ifndef WITHOUT_NUMPY +namespace detail { + +inline void imshow(void *ptr, const NPY_TYPES type, const int rows, const int columns, const int colors, const std::map &keywords, PyObject** out) +{ + assert(type == NPY_UINT8 || type == NPY_FLOAT); + assert(colors == 1 || colors == 3 || colors == 4); + + detail::_interpreter::get(); + + // construct args + npy_intp dims[3] = { rows, columns, colors }; + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyArray_SimpleNewFromData(colors == 1 ? 2 : 3, dims, type, ptr)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject *res = PyObject_Call(detail::_interpreter::get().s_python_function_imshow, args, kwargs); + Py_DECREF(args); + Py_DECREF(kwargs); + if (!res) + throw std::runtime_error("Call to imshow() failed"); + if (out) + *out = res; + else + Py_DECREF(res); +} + +} // namespace detail + +inline void imshow(const unsigned char *ptr, const int rows, const int columns, const int colors, const std::map &keywords = {}, PyObject** out = nullptr) +{ + detail::imshow((void *) ptr, NPY_UINT8, rows, columns, colors, keywords, out); +} + +inline void imshow(const float *ptr, const int rows, const int columns, const int colors, const std::map &keywords = {}, PyObject** out = nullptr) +{ + detail::imshow((void *) ptr, NPY_FLOAT, rows, columns, colors, keywords, out); +} + +#ifdef WITH_OPENCV +void imshow(const cv::Mat &image, const std::map &keywords = {}) +{ + // Convert underlying type of matrix, if needed + cv::Mat image2; + NPY_TYPES npy_type = NPY_UINT8; + switch (image.type() & CV_MAT_DEPTH_MASK) { + case CV_8U: + image2 = image; + break; + case CV_32F: + image2 = image; + npy_type = NPY_FLOAT; + break; + default: + image.convertTo(image2, CV_MAKETYPE(CV_8U, image.channels())); + } + + // If color image, convert from BGR to RGB + switch (image2.channels()) { + case 3: + cv::cvtColor(image2, image2, CV_BGR2RGB); + break; + case 4: + cv::cvtColor(image2, image2, CV_BGRA2RGBA); + } + + detail::imshow(image2.data, npy_type, image2.rows, image2.cols, image2.channels(), keywords); +} +#endif // WITH_OPENCV +#endif // WITHOUT_NUMPY + +template +bool scatter(const std::vector& x, + const std::vector& y, + const double s=1.0, // The marker size in points**2 + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + assert(x.size() == y.size()); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "s", PyLong_FromLong(s)); + for (const auto& it : keywords) + { + PyDict_SetItemString(kwargs, it.first.c_str(), PyString_FromString(it.second.c_str())); + } + + PyObject* plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_scatter, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template +bool boxplot(const std::vector>& data, + const std::vector& labels = {}, + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* listlist = detail::get_listlist(data); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, listlist); + + PyObject* kwargs = PyDict_New(); + + // kwargs needs the labels, if there are (the correct number of) labels + if (!labels.empty() && labels.size() == data.size()) { + PyDict_SetItemString(kwargs, "labels", detail::get_array(labels)); + } + + // take care of the remaining keywords + for (const auto& it : keywords) + { + PyDict_SetItemString(kwargs, it.first.c_str(), PyString_FromString(it.second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_boxplot, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); + + return res; +} + +template +bool boxplot(const std::vector& data, + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* vector = detail::get_array(data); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, vector); + + PyObject* kwargs = PyDict_New(); + for (const auto& it : keywords) + { + PyDict_SetItemString(kwargs, it.first.c_str(), PyString_FromString(it.second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_boxplot, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); + + return res; +} + +template +bool bar(const std::vector & x, + const std::vector & y, + std::string ec = "black", + std::string ls = "-", + double lw = 1.0, + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + PyObject * xarray = detail::get_array(x); + PyObject * yarray = detail::get_array(y); + + PyObject * kwargs = PyDict_New(); + + PyDict_SetItemString(kwargs, "ec", PyString_FromString(ec.c_str())); + PyDict_SetItemString(kwargs, "ls", PyString_FromString(ls.c_str())); + PyDict_SetItemString(kwargs, "lw", PyFloat_FromDouble(lw)); + + for (std::map::const_iterator it = + keywords.begin(); + it != keywords.end(); + ++it) { + PyDict_SetItemString( + kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject * plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject * res = PyObject_Call( + detail::_interpreter::get().s_python_function_bar, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); + + return res; +} + +template +bool bar(const std::vector & y, + std::string ec = "black", + std::string ls = "-", + double lw = 1.0, + const std::map & keywords = {}) +{ + using T = typename std::remove_reference::type::value_type; + + detail::_interpreter::get(); + + std::vector x; + for (std::size_t i = 0; i < y.size(); i++) { x.push_back(i); } + + return bar(x, y, ec, ls, lw, keywords); +} + +inline bool subplots_adjust(const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = + keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyFloat_FromDouble(it->second)); + } + + + PyObject* plot_args = PyTuple_New(0); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_subplots_adjust, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template< typename Numeric> +bool named_hist(std::string label,const std::vector& y, long bins=10, std::string color="b", double alpha=1.0) +{ + detail::_interpreter::get(); + + PyObject* yarray = detail::get_array(y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(label.c_str())); + PyDict_SetItemString(kwargs, "bins", PyLong_FromLong(bins)); + PyDict_SetItemString(kwargs, "color", PyString_FromString(color.c_str())); + PyDict_SetItemString(kwargs, "alpha", PyFloat_FromDouble(alpha)); + + + PyObject* plot_args = PyTuple_New(1); + PyTuple_SetItem(plot_args, 0, yarray); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_hist, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template +bool plot(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_plot, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool contour(const std::vector& x, const std::vector& y, + const std::vector& z, + const std::map& keywords = {}) { + assert(x.size() == y.size() && x.size() == z.size()); + + PyObject* xarray = get_array(x); + PyObject* yarray = get_array(y); + PyObject* zarray = get_array(z); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, zarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = keywords.begin(); + it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = + PyObject_Call(detail::_interpreter::get().s_python_function_contour, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) + Py_DECREF(res); + + return res; +} + +template +bool quiver(const std::vector& x, const std::vector& y, const std::vector& u, const std::vector& w, const std::map& keywords = {}) +{ + assert(x.size() == y.size() && x.size() == u.size() && u.size() == w.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + PyObject* uarray = detail::get_array(u); + PyObject* warray = detail::get_array(w); + + PyObject* plot_args = PyTuple_New(4); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, uarray); + PyTuple_SetItem(plot_args, 3, warray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call( + detail::_interpreter::get().s_python_function_quiver, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) + Py_DECREF(res); + + return res; +} + +template +bool stem(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_stem, plot_args); + + Py_DECREF(plot_args); + if (res) + Py_DECREF(res); + + return res; +} + +template +bool semilogx(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_semilogx, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool semilogy(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_semilogy, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool loglog(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_loglog, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool errorbar(const std::vector &x, const std::vector &y, const std::vector &yerr, const std::map &keywords = {}) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + PyObject* yerrarray = detail::get_array(yerr); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyDict_SetItemString(kwargs, "yerr", yerrarray); + + PyObject *plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject *res = PyObject_Call(detail::_interpreter::get().s_python_function_errorbar, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + + if (res) + Py_DECREF(res); + else + throw std::runtime_error("Call to errorbar() failed."); + + return res; +} + +template +bool named_plot(const std::string& name, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(2); + + PyTuple_SetItem(plot_args, 0, yarray); + PyTuple_SetItem(plot_args, 1, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_plot(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_semilogx(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_semilogx, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_semilogy(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_semilogy, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_loglog(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_loglog, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool plot(const std::vector& y, const std::string& format = "") +{ + std::vector x(y.size()); + for(size_t i=0; i +bool plot(const std::vector& y, const std::map& keywords) +{ + std::vector x(y.size()); + for(size_t i=0; i +bool stem(const std::vector& y, const std::string& format = "") +{ + std::vector x(y.size()); + for (size_t i = 0; i < x.size(); ++i) x.at(i) = i; + return stem(x, y, format); +} + +template +void text(Numeric x, Numeric y, const std::string& s = "") +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(x)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(y)); + PyTuple_SetItem(args, 2, PyString_FromString(s.c_str())); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_text, args); + if(!res) throw std::runtime_error("Call to text() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void colorbar(PyObject* mappable = NULL, const std::map& keywords = {}) +{ + if (mappable == NULL) + throw std::runtime_error("Must call colorbar with PyObject* returned from an image, contour, surface, etc."); + + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, mappable); + + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyFloat_FromDouble(it->second)); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_colorbar, args, kwargs); + if(!res) throw std::runtime_error("Call to colorbar() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + + +inline long figure(long number = -1) +{ + detail::_interpreter::get(); + + PyObject *res; + if (number == -1) + res = PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, detail::_interpreter::get().s_python_empty_tuple); + else { + assert(number > 0); + + // Make sure interpreter is initialised + detail::_interpreter::get(); + + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyLong_FromLong(number)); + res = PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, args); + Py_DECREF(args); + } + + if(!res) throw std::runtime_error("Call to figure() failed."); + + PyObject* num = PyObject_GetAttrString(res, "number"); + if (!num) throw std::runtime_error("Could not get number attribute of figure object"); + const long figureNumber = PyLong_AsLong(num); + + Py_DECREF(num); + Py_DECREF(res); + + return figureNumber; +} + +inline bool fignum_exists(long number) +{ + detail::_interpreter::get(); + + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyLong_FromLong(number)); + PyObject *res = PyObject_CallObject(detail::_interpreter::get().s_python_function_fignum_exists, args); + if(!res) throw std::runtime_error("Call to fignum_exists() failed."); + + bool ret = PyObject_IsTrue(res); + Py_DECREF(res); + Py_DECREF(args); + + return ret; +} + +inline void figure_size(size_t w, size_t h) +{ + detail::_interpreter::get(); + + const size_t dpi = 100; + PyObject* size = PyTuple_New(2); + PyTuple_SetItem(size, 0, PyFloat_FromDouble((double)w / dpi)); + PyTuple_SetItem(size, 1, PyFloat_FromDouble((double)h / dpi)); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "figsize", size); + PyDict_SetItemString(kwargs, "dpi", PyLong_FromSize_t(dpi)); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_figure, + detail::_interpreter::get().s_python_empty_tuple, kwargs); + + Py_DECREF(kwargs); + + if(!res) throw std::runtime_error("Call to figure_size() failed."); + Py_DECREF(res); +} + +inline void legend() +{ + detail::_interpreter::get(); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_legend, detail::_interpreter::get().s_python_empty_tuple); + if(!res) throw std::runtime_error("Call to legend() failed."); + + Py_DECREF(res); +} + +inline void legend(const std::map& keywords) +{ + detail::_interpreter::get(); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_legend, detail::_interpreter::get().s_python_empty_tuple, kwargs); + if(!res) throw std::runtime_error("Call to legend() failed."); + + Py_DECREF(kwargs); + Py_DECREF(res); +} + +template +void ylim(Numeric left, Numeric right) +{ + detail::_interpreter::get(); + + PyObject* list = PyList_New(2); + PyList_SetItem(list, 0, PyFloat_FromDouble(left)); + PyList_SetItem(list, 1, PyFloat_FromDouble(right)); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, list); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_ylim, args); + if(!res) throw std::runtime_error("Call to ylim() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +template +void xlim(Numeric left, Numeric right) +{ + detail::_interpreter::get(); + + PyObject* list = PyList_New(2); + PyList_SetItem(list, 0, PyFloat_FromDouble(left)); + PyList_SetItem(list, 1, PyFloat_FromDouble(right)); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, list); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_xlim, args); + if(!res) throw std::runtime_error("Call to xlim() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + + +inline double* xlim() +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(0); + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_xlim, args); + PyObject* left = PyTuple_GetItem(res,0); + PyObject* right = PyTuple_GetItem(res,1); + + double* arr = new double[2]; + arr[0] = PyFloat_AsDouble(left); + arr[1] = PyFloat_AsDouble(right); + + if(!res) throw std::runtime_error("Call to xlim() failed."); + + Py_DECREF(res); + return arr; +} + + +inline double* ylim() +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(0); + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_ylim, args); + PyObject* left = PyTuple_GetItem(res,0); + PyObject* right = PyTuple_GetItem(res,1); + + double* arr = new double[2]; + arr[0] = PyFloat_AsDouble(left); + arr[1] = PyFloat_AsDouble(right); + + if(!res) throw std::runtime_error("Call to ylim() failed."); + + Py_DECREF(res); + return arr; +} + +template +inline void xticks(const std::vector &ticks, const std::vector &labels = {}, const std::map& keywords = {}) +{ + assert(labels.size() == 0 || ticks.size() == labels.size()); + + detail::_interpreter::get(); + + // using numpy array + PyObject* ticksarray = detail::get_array(ticks); + + PyObject* args; + if(labels.size() == 0) { + // construct positional args + args = PyTuple_New(1); + PyTuple_SetItem(args, 0, ticksarray); + } else { + // make tuple of tick labels + PyObject* labelstuple = PyTuple_New(labels.size()); + for (size_t i = 0; i < labels.size(); i++) + PyTuple_SetItem(labelstuple, i, PyUnicode_FromString(labels[i].c_str())); + + // construct positional args + args = PyTuple_New(2); + PyTuple_SetItem(args, 0, ticksarray); + PyTuple_SetItem(args, 1, labelstuple); + } + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_xticks, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(!res) throw std::runtime_error("Call to xticks() failed"); + + Py_DECREF(res); +} + +template +inline void xticks(const std::vector &ticks, const std::map& keywords) +{ + xticks(ticks, {}, keywords); +} + +template +inline void yticks(const std::vector &ticks, const std::vector &labels = {}, const std::map& keywords = {}) +{ + assert(labels.size() == 0 || ticks.size() == labels.size()); + + detail::_interpreter::get(); + + // using numpy array + PyObject* ticksarray = detail::get_array(ticks); + + PyObject* args; + if(labels.size() == 0) { + // construct positional args + args = PyTuple_New(1); + PyTuple_SetItem(args, 0, ticksarray); + } else { + // make tuple of tick labels + PyObject* labelstuple = PyTuple_New(labels.size()); + for (size_t i = 0; i < labels.size(); i++) + PyTuple_SetItem(labelstuple, i, PyUnicode_FromString(labels[i].c_str())); + + // construct positional args + args = PyTuple_New(2); + PyTuple_SetItem(args, 0, ticksarray); + PyTuple_SetItem(args, 1, labelstuple); + } + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_yticks, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(!res) throw std::runtime_error("Call to yticks() failed"); + + Py_DECREF(res); +} + +template +inline void yticks(const std::vector &ticks, const std::map& keywords) +{ + yticks(ticks, {}, keywords); +} + +template inline void margins(Numeric margin) +{ + // construct positional args + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(margin)); + + PyObject* res = + PyObject_CallObject(detail::_interpreter::get().s_python_function_margins, args); + if (!res) + throw std::runtime_error("Call to margins() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +template inline void margins(Numeric margin_x, Numeric margin_y) +{ + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(margin_x)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(margin_y)); + + PyObject* res = + PyObject_CallObject(detail::_interpreter::get().s_python_function_margins, args); + if (!res) + throw std::runtime_error("Call to margins() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + + +inline void tick_params(const std::map& keywords, const std::string axis = "both") +{ + detail::_interpreter::get(); + + // construct positional args + PyObject* args; + args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyString_FromString(axis.c_str())); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_tick_params, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if (!res) throw std::runtime_error("Call to tick_params() failed"); + + Py_DECREF(res); +} + +inline void subplot(long nrows, long ncols, long plot_number) +{ + detail::_interpreter::get(); + + // construct positional args + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(nrows)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(ncols)); + PyTuple_SetItem(args, 2, PyFloat_FromDouble(plot_number)); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_subplot, args); + if(!res) throw std::runtime_error("Call to subplot() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void subplot2grid(long nrows, long ncols, long rowid=0, long colid=0, long rowspan=1, long colspan=1) +{ + detail::_interpreter::get(); + + PyObject* shape = PyTuple_New(2); + PyTuple_SetItem(shape, 0, PyLong_FromLong(nrows)); + PyTuple_SetItem(shape, 1, PyLong_FromLong(ncols)); + + PyObject* loc = PyTuple_New(2); + PyTuple_SetItem(loc, 0, PyLong_FromLong(rowid)); + PyTuple_SetItem(loc, 1, PyLong_FromLong(colid)); + + PyObject* args = PyTuple_New(4); + PyTuple_SetItem(args, 0, shape); + PyTuple_SetItem(args, 1, loc); + PyTuple_SetItem(args, 2, PyLong_FromLong(rowspan)); + PyTuple_SetItem(args, 3, PyLong_FromLong(colspan)); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_subplot2grid, args); + if(!res) throw std::runtime_error("Call to subplot2grid() failed."); + + Py_DECREF(shape); + Py_DECREF(loc); + Py_DECREF(args); + Py_DECREF(res); +} + +inline void title(const std::string &titlestr, const std::map &keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pytitlestr = PyString_FromString(titlestr.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pytitlestr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_title, args, kwargs); + if(!res) throw std::runtime_error("Call to title() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void suptitle(const std::string &suptitlestr, const std::map &keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pysuptitlestr = PyString_FromString(suptitlestr.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pysuptitlestr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_suptitle, args, kwargs); + if(!res) throw std::runtime_error("Call to suptitle() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void axis(const std::string &axisstr) +{ + detail::_interpreter::get(); + + PyObject* str = PyString_FromString(axisstr.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, str); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_axis, args); + if(!res) throw std::runtime_error("Call to title() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void axvline(double x, double ymin = 0., double ymax = 1., const std::map& keywords = std::map()) +{ + detail::_interpreter::get(); + + // construct positional args + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(x)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(ymin)); + PyTuple_SetItem(args, 2, PyFloat_FromDouble(ymax)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_axvline, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); +} + +inline void axvspan(double xmin, double xmax, double ymin = 0., double ymax = 1., const std::map& keywords = std::map()) +{ + // construct positional args + PyObject* args = PyTuple_New(4); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(xmin)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(xmax)); + PyTuple_SetItem(args, 2, PyFloat_FromDouble(ymin)); + PyTuple_SetItem(args, 3, PyFloat_FromDouble(ymax)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + if (it->first == "linewidth" || it->first == "alpha") + PyDict_SetItemString(kwargs, it->first.c_str(), PyFloat_FromDouble(std::stod(it->second))); + else + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_axvspan, args, kwargs); + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); +} + +inline void xlabel(const std::string &str, const std::map &keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pystr = PyString_FromString(str.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pystr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_xlabel, args, kwargs); + if(!res) throw std::runtime_error("Call to xlabel() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void ylabel(const std::string &str, const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pystr = PyString_FromString(str.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pystr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_ylabel, args, kwargs); + if(!res) throw std::runtime_error("Call to ylabel() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void set_zlabel(const std::string &str, const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + // Same as with plot_surface: We lazily load the modules here the first time + // this function is called because I'm not sure that we can assume "matplotlib + // installed" implies "mpl_toolkits installed" on all platforms, and we don't + // want to require it for people who don't need 3d plots. + static PyObject *mpl_toolkitsmod = nullptr, *axis3dmod = nullptr; + if (!mpl_toolkitsmod) { + PyObject* mpl_toolkits = PyString_FromString("mpl_toolkits"); + PyObject* axis3d = PyString_FromString("mpl_toolkits.mplot3d"); + if (!mpl_toolkits || !axis3d) { throw std::runtime_error("couldnt create string"); } + + mpl_toolkitsmod = PyImport_Import(mpl_toolkits); + Py_DECREF(mpl_toolkits); + if (!mpl_toolkitsmod) { throw std::runtime_error("Error loading module mpl_toolkits!"); } + + axis3dmod = PyImport_Import(axis3d); + Py_DECREF(axis3d); + if (!axis3dmod) { throw std::runtime_error("Error loading module mpl_toolkits.mplot3d!"); } + } + + PyObject* pystr = PyString_FromString(str.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pystr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject *ax = + PyObject_CallObject(detail::_interpreter::get().s_python_function_gca, + detail::_interpreter::get().s_python_empty_tuple); + if (!ax) throw std::runtime_error("Call to gca() failed."); + Py_INCREF(ax); + + PyObject *zlabel = PyObject_GetAttrString(ax, "set_zlabel"); + if (!zlabel) throw std::runtime_error("Attribute set_zlabel not found."); + Py_INCREF(zlabel); + + PyObject *res = PyObject_Call(zlabel, args, kwargs); + if (!res) throw std::runtime_error("Call to set_zlabel() failed."); + Py_DECREF(zlabel); + + Py_DECREF(ax); + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); +} + +inline void grid(bool flag) +{ + detail::_interpreter::get(); + + PyObject* pyflag = flag ? Py_True : Py_False; + Py_INCREF(pyflag); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pyflag); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_grid, args); + if(!res) throw std::runtime_error("Call to grid() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void show(const bool block = true) +{ + detail::_interpreter::get(); + + PyObject* res; + if(block) + { + res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_show, + detail::_interpreter::get().s_python_empty_tuple); + } + else + { + PyObject *kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "block", Py_False); + res = PyObject_Call( detail::_interpreter::get().s_python_function_show, detail::_interpreter::get().s_python_empty_tuple, kwargs); + Py_DECREF(kwargs); + } + + + if (!res) throw std::runtime_error("Call to show() failed."); + + Py_DECREF(res); +} + +inline void close() +{ + detail::_interpreter::get(); + + PyObject* res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_close, + detail::_interpreter::get().s_python_empty_tuple); + + if (!res) throw std::runtime_error("Call to close() failed."); + + Py_DECREF(res); +} + +inline void xkcd() { + detail::_interpreter::get(); + + PyObject* res; + PyObject *kwargs = PyDict_New(); + + res = PyObject_Call(detail::_interpreter::get().s_python_function_xkcd, + detail::_interpreter::get().s_python_empty_tuple, kwargs); + + Py_DECREF(kwargs); + + if (!res) + throw std::runtime_error("Call to show() failed."); + + Py_DECREF(res); +} + +inline void draw() +{ + detail::_interpreter::get(); + + PyObject* res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_draw, + detail::_interpreter::get().s_python_empty_tuple); + + if (!res) throw std::runtime_error("Call to draw() failed."); + + Py_DECREF(res); +} + +template +inline void pause(Numeric interval) +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(interval)); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_pause, args); + if(!res) throw std::runtime_error("Call to pause() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void save(const std::string& filename) +{ + detail::_interpreter::get(); + + PyObject* pyfilename = PyString_FromString(filename.c_str()); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pyfilename); + std::cout<<"args:"<> ginput(const int numClicks = 1, const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyLong_FromLong(numClicks)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call( + detail::_interpreter::get().s_python_function_ginput, args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(args); + if (!res) throw std::runtime_error("Call to ginput() failed."); + + const size_t len = PyList_Size(res); + std::vector> out; + out.reserve(len); + for (size_t i = 0; i < len; i++) { + PyObject *current = PyList_GetItem(res, i); + std::array position; + position[0] = PyFloat_AsDouble(PyTuple_GetItem(current, 0)); + position[1] = PyFloat_AsDouble(PyTuple_GetItem(current, 1)); + out.push_back(position); + } + Py_DECREF(res); + + return out; +} + +// Actually, is there any reason not to call this automatically for every plot? +inline void tight_layout() { + detail::_interpreter::get(); + + PyObject *res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_tight_layout, + detail::_interpreter::get().s_python_empty_tuple); + + if (!res) throw std::runtime_error("Call to tight_layout() failed."); + + Py_DECREF(res); +} + +// Support for variadic plot() and initializer lists: + +namespace detail { + +template +using is_function = typename std::is_function>>::type; + +template +struct is_callable_impl; + +template +struct is_callable_impl +{ + typedef is_function type; +}; // a non-object is callable iff it is a function + +template +struct is_callable_impl +{ + struct Fallback { void operator()(); }; + struct Derived : T, Fallback { }; + + template struct Check; + + template + static std::true_type test( ... ); // use a variadic function to make sure (1) it accepts everything and (2) its always the worst match + + template + static std::false_type test( Check* ); + +public: + typedef decltype(test(nullptr)) type; + typedef decltype(&Fallback::operator()) dtype; + static constexpr bool value = type::value; +}; // an object is callable iff it defines operator() + +template +struct is_callable +{ + // dispatch to is_callable_impl or is_callable_impl depending on whether T is of class type or not + typedef typename is_callable_impl::value, T>::type type; +}; + +template +struct plot_impl { }; + +template<> +struct plot_impl +{ + template + bool operator()(const IterableX& x, const IterableY& y, const std::string& format) + { + // 2-phase lookup for distance, begin, end + using std::distance; + using std::begin; + using std::end; + + auto xs = distance(begin(x), end(x)); + auto ys = distance(begin(y), end(y)); + assert(xs == ys && "x and y data must have the same number of elements!"); + + PyObject* xlist = PyList_New(xs); + PyObject* ylist = PyList_New(ys); + PyObject* pystring = PyString_FromString(format.c_str()); + + auto itx = begin(x), ity = begin(y); + for(size_t i = 0; i < xs; ++i) { + PyList_SetItem(xlist, i, PyFloat_FromDouble(*itx++)); + PyList_SetItem(ylist, i, PyFloat_FromDouble(*ity++)); + } + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xlist); + PyTuple_SetItem(plot_args, 1, ylist); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_plot, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; + } +}; + +template<> +struct plot_impl +{ + template + bool operator()(const Iterable& ticks, const Callable& f, const std::string& format) + { + if(begin(ticks) == end(ticks)) return true; + + // We could use additional meta-programming to deduce the correct element type of y, + // but all values have to be convertible to double anyways + std::vector y; + for(auto x : ticks) y.push_back(f(x)); + return plot_impl()(ticks,y,format); + } +}; + +} // end namespace detail + +// recursion stop for the above +template +bool plot() { return true; } + +template +bool plot(const A& a, const B& b, const std::string& format, Args... args) +{ + return detail::plot_impl::type>()(a,b,format) && plot(args...); +} + +/* + * This group of plot() functions is needed to support initializer lists, i.e. calling + * plot( {1,2,3,4} ) + */ +inline bool plot(const std::vector& x, const std::vector& y, const std::string& format = "") { + return plot(x,y,format); +} + +inline bool plot(const std::vector& y, const std::string& format = "") { + return plot(y,format); +} + +inline bool plot(const std::vector& x, const std::vector& y, const std::map& keywords) { + return plot(x,y,keywords); +} + +/* + * This class allows dynamic plots, ie changing the plotted data without clearing and re-plotting + */ +class Plot +{ +public: + // default initialization with plot label, some data and format + template + Plot(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") { + detail::_interpreter::get(); + + assert(x.size() == y.size()); + + PyObject* kwargs = PyDict_New(); + if(name != "") + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + + if(res) + { + line= PyList_GetItem(res, 0); + + if(line) + set_data_fct = PyObject_GetAttrString(line,"set_data"); + else + Py_DECREF(line); + Py_DECREF(res); + } + } + + // shorter initialization with name or format only + // basically calls line, = plot([], []) + Plot(const std::string& name = "", const std::string& format = "") + : Plot(name, std::vector(), std::vector(), format) {} + + template + bool update(const std::vector& x, const std::vector& y) { + assert(x.size() == y.size()); + if(set_data_fct) + { + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject* res = PyObject_CallObject(set_data_fct, plot_args); + if (res) Py_DECREF(res); + return res; + } + return false; + } + + // clears the plot but keep it available + bool clear() { + return update(std::vector(), std::vector()); + } + + // definitely remove this line + void remove() { + if(line) + { + auto remove_fct = PyObject_GetAttrString(line,"remove"); + PyObject* args = PyTuple_New(0); + PyObject* res = PyObject_CallObject(remove_fct, args); + if (res) Py_DECREF(res); + } + decref(); + } + + ~Plot() { + decref(); + } +private: + + void decref() { + if(line) + Py_DECREF(line); + if(set_data_fct) + Py_DECREF(set_data_fct); + } + + + PyObject* line = nullptr; + PyObject* set_data_fct = nullptr; +}; + +} // end namespace matplotlibcpp diff --git a/src/rm_localization/FAST_LIO/include/so3_math.h b/src/rm_localization/FAST_LIO/include/so3_math.h new file mode 100644 index 0000000..8530c3c --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/so3_math.h @@ -0,0 +1,111 @@ +#ifndef SO3_MATH_H +#define SO3_MATH_H + +#include +#include + +#define SKEW_SYM_MATRX(v) 0.0,-v[2],v[1],v[2],0.0,-v[0],-v[1],v[0],0.0 + +template +Eigen::Matrix skew_sym_mat(const Eigen::Matrix &v) +{ + Eigen::Matrix skew_sym_mat; + skew_sym_mat<<0.0,-v[2],v[1],v[2],0.0,-v[0],-v[1],v[0],0.0; + return skew_sym_mat; +} + +template +Eigen::Matrix Exp(const Eigen::Matrix &&ang) +{ + T ang_norm = ang.norm(); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + if (ang_norm > 0.0000001) + { + Eigen::Matrix r_axis = ang / ang_norm; + Eigen::Matrix K; + K << SKEW_SYM_MATRX(r_axis); + /// Roderigous Tranformation + return Eye3 + std::sin(ang_norm) * K + (1.0 - std::cos(ang_norm)) * K * K; + } + else + { + return Eye3; + } +} + +template +Eigen::Matrix Exp(const Eigen::Matrix &ang_vel, const Ts &dt) +{ + T ang_vel_norm = ang_vel.norm(); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + + if (ang_vel_norm > 0.0000001) + { + Eigen::Matrix r_axis = ang_vel / ang_vel_norm; + Eigen::Matrix K; + + K << SKEW_SYM_MATRX(r_axis); + + T r_ang = ang_vel_norm * dt; + + /// Roderigous Tranformation + return Eye3 + std::sin(r_ang) * K + (1.0 - std::cos(r_ang)) * K * K; + } + else + { + return Eye3; + } +} + +template +Eigen::Matrix Exp(const T &v1, const T &v2, const T &v3) +{ + T &&norm = sqrt(v1 * v1 + v2 * v2 + v3 * v3); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + if (norm > 0.00001) + { + T r_ang[3] = {v1 / norm, v2 / norm, v3 / norm}; + Eigen::Matrix K; + K << SKEW_SYM_MATRX(r_ang); + + /// Roderigous Tranformation + return Eye3 + std::sin(norm) * K + (1.0 - std::cos(norm)) * K * K; + } + else + { + return Eye3; + } +} + +/* Logrithm of a Rotation Matrix */ +template +Eigen::Matrix Log(const Eigen::Matrix &R) +{ + T theta = (R.trace() > 3.0 - 1e-6) ? 0.0 : std::acos(0.5 * (R.trace() - 1)); + Eigen::Matrix K(R(2,1) - R(1,2), R(0,2) - R(2,0), R(1,0) - R(0,1)); + return (std::abs(theta) < 0.001) ? (0.5 * K) : (0.5 * theta / std::sin(theta) * K); +} + +template +Eigen::Matrix RotMtoEuler(const Eigen::Matrix &rot) +{ + T sy = sqrt(rot(0,0)*rot(0,0) + rot(1,0)*rot(1,0)); + bool singular = sy < 1e-6; + T x, y, z; + if(!singular) + { + x = atan2(rot(2, 1), rot(2, 2)); + y = atan2(-rot(2, 0), sy); + z = atan2(rot(1, 0), rot(0, 0)); + } + else + { + x = atan2(-rot(1, 2), rot(1, 1)); + y = atan2(-rot(2, 0), sy); + z = 0; + } + Eigen::Matrix ang(x, y, z); + return ang; +} + +#endif diff --git a/src/rm_localization/FAST_LIO/include/use-ikfom.hpp b/src/rm_localization/FAST_LIO/include/use-ikfom.hpp new file mode 100644 index 0000000..fdd8f87 --- /dev/null +++ b/src/rm_localization/FAST_LIO/include/use-ikfom.hpp @@ -0,0 +1,126 @@ +#ifndef USE_IKFOM_H +#define USE_IKFOM_H + +#include + +typedef MTK::vect<3, double> vect3; +typedef MTK::SO3 SO3; +typedef MTK::S2 S2; +typedef MTK::vect<1, double> vect1; +typedef MTK::vect<2, double> vect2; + +MTK_BUILD_MANIFOLD(state_ikfom, +((vect3, pos)) +((SO3, rot)) +((SO3, offset_R_L_I)) +((vect3, offset_T_L_I)) +((vect3, vel)) +((vect3, bg)) +((vect3, ba)) +((S2, grav)) +); + +MTK_BUILD_MANIFOLD(input_ikfom, +((vect3, acc)) +((vect3, gyro)) +); + +MTK_BUILD_MANIFOLD(process_noise_ikfom, +((vect3, ng)) +((vect3, na)) +((vect3, nbg)) +((vect3, nba)) +); + +MTK::get_cov::type process_noise_cov() +{ + MTK::get_cov::type cov = MTK::get_cov::type::Zero(); + MTK::setDiagonal(cov, &process_noise_ikfom::ng, 0.0001);// 0.03 + MTK::setDiagonal(cov, &process_noise_ikfom::na, 0.0001); // *dt 0.01 0.01 * dt * dt 0.05 + MTK::setDiagonal(cov, &process_noise_ikfom::nbg, 0.00001); // *dt 0.00001 0.00001 * dt *dt 0.3 //0.001 0.0001 0.01 + MTK::setDiagonal(cov, &process_noise_ikfom::nba, 0.00001); //0.001 0.05 0.0001/out 0.01 + return cov; +} + +//double L_offset_to_I[3] = {0.04165, 0.02326, -0.0284}; // Avia +//vect3 Lidar_offset_to_IMU(L_offset_to_I, 3); +Eigen::Matrix get_f(state_ikfom &s, const input_ikfom &in) +{ + Eigen::Matrix res = Eigen::Matrix::Zero(); + vect3 omega; + in.gyro.boxminus(omega, s.bg); + vect3 a_inertial = s.rot * (in.acc-s.ba); + for(int i = 0; i < 3; i++ ){ + res(i) = s.vel[i]; + res(i + 3) = omega[i]; + res(i + 12) = a_inertial[i] + s.grav[i]; + } + return res; +} + +Eigen::Matrix df_dx(state_ikfom &s, const input_ikfom &in) +{ + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(0, 12) = Eigen::Matrix3d::Identity(); + vect3 acc_; + in.acc.boxminus(acc_, s.ba); + vect3 omega; + in.gyro.boxminus(omega, s.bg); + cov.template block<3, 3>(12, 3) = -s.rot.toRotationMatrix()*MTK::hat(acc_); + cov.template block<3, 3>(12, 18) = -s.rot.toRotationMatrix(); + Eigen::Matrix vec = Eigen::Matrix::Zero(); + Eigen::Matrix grav_matrix; + s.S2_Mx(grav_matrix, vec, 21); + cov.template block<3, 2>(12, 21) = grav_matrix; + cov.template block<3, 3>(3, 15) = -Eigen::Matrix3d::Identity(); + return cov; +} + + +Eigen::Matrix df_dw(state_ikfom &s, const input_ikfom &in) +{ + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(12, 3) = -s.rot.toRotationMatrix(); + cov.template block<3, 3>(3, 0) = -Eigen::Matrix3d::Identity(); + cov.template block<3, 3>(15, 6) = Eigen::Matrix3d::Identity(); + cov.template block<3, 3>(18, 9) = Eigen::Matrix3d::Identity(); + return cov; +} + +vect3 SO3ToEuler(const SO3 &orient) +{ + Eigen::Matrix _ang; + Eigen::Vector4d q_data = orient.coeffs().transpose(); + //scalar w=orient.coeffs[3], x=orient.coeffs[0], y=orient.coeffs[1], z=orient.coeffs[2]; + double sqw = q_data[3]*q_data[3]; + double sqx = q_data[0]*q_data[0]; + double sqy = q_data[1]*q_data[1]; + double sqz = q_data[2]*q_data[2]; + double unit = sqx + sqy + sqz + sqw; // if normalized is one, otherwise is correction factor + double test = q_data[3]*q_data[1] - q_data[2]*q_data[0]; + + if (test > 0.49999*unit) { // singularity at north pole + + _ang << 2 * std::atan2(q_data[0], q_data[3]), M_PI/2, 0; + double temp[3] = {_ang[0] * 57.3, _ang[1] * 57.3, _ang[2] * 57.3}; + vect3 euler_ang(temp, 3); + return euler_ang; + } + if (test < -0.49999*unit) { // singularity at south pole + _ang << -2 * std::atan2(q_data[0], q_data[3]), -M_PI/2, 0; + double temp[3] = {_ang[0] * 57.3, _ang[1] * 57.3, _ang[2] * 57.3}; + vect3 euler_ang(temp, 3); + return euler_ang; + } + + _ang << + std::atan2(2*q_data[0]*q_data[3]+2*q_data[1]*q_data[2] , -sqx - sqy + sqz + sqw), + std::asin (2*test/unit), + std::atan2(2*q_data[2]*q_data[3]+2*q_data[1]*q_data[0] , sqx - sqy - sqz + sqw); + double temp[3] = {_ang[0] * 57.3, _ang[1] * 57.3, _ang[2] * 57.3}; + vect3 euler_ang(temp, 3); + // euler_ang[0] = roll, euler_ang[1] = pitch, euler_ang[2] = yaw + return euler_ang; +} + +#endif \ No newline at end of file diff --git a/src/rm_localization/FAST_LIO/launch/gdb_debug_example.launch b/src/rm_localization/FAST_LIO/launch/gdb_debug_example.launch new file mode 100644 index 0000000..d1f86ad --- /dev/null +++ b/src/rm_localization/FAST_LIO/launch/gdb_debug_example.launch @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/rm_localization/FAST_LIO/launch/mapping.launch.py b/src/rm_localization/FAST_LIO/launch/mapping.launch.py new file mode 100644 index 0000000..b76313d --- /dev/null +++ b/src/rm_localization/FAST_LIO/launch/mapping.launch.py @@ -0,0 +1,70 @@ +import os.path + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution +from launch.conditions import IfCondition + +from launch_ros.actions import Node + + +def generate_launch_description(): + package_path = get_package_share_directory('fast_lio') + default_config_path = os.path.join(package_path, 'config') + default_rviz_config_path = os.path.join( + package_path, 'rviz', 'fastlio.rviz') + + use_sim_time = LaunchConfiguration('use_sim_time') + config_path = LaunchConfiguration('config_path') + config_file = LaunchConfiguration('config_file') + rviz_use = LaunchConfiguration('rviz') + rviz_cfg = LaunchConfiguration('rviz_cfg') + + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', default_value='false', + description='Use simulation (Gazebo) clock if true' + ) + declare_config_path_cmd = DeclareLaunchArgument( + 'config_path', default_value=default_config_path, + description='Yaml config file path' + ) + decalre_config_file_cmd = DeclareLaunchArgument( + 'config_file', default_value='mid360.yaml', + description='Config file' + ) + declare_rviz_cmd = DeclareLaunchArgument( + 'rviz', default_value='true', + description='Use RViz to monitor results' + ) + declare_rviz_config_path_cmd = DeclareLaunchArgument( + 'rviz_cfg', default_value=default_rviz_config_path, + description='RViz config file path' + ) + + fast_lio_node = Node( + package='fast_lio', + executable='fastlio_mapping', + parameters=[PathJoinSubstitution([config_path, config_file]), + {'use_sim_time': use_sim_time}], + output='screen' + ) + rviz_node = Node( + package='rviz2', + executable='rviz2', + arguments=['-d', rviz_cfg], + condition=IfCondition(rviz_use) + ) + + ld = LaunchDescription() + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_config_path_cmd) + ld.add_action(decalre_config_file_cmd) + ld.add_action(declare_rviz_cmd) + ld.add_action(declare_rviz_config_path_cmd) + + ld.add_action(fast_lio_node) + ld.add_action(rviz_node) + + return ld diff --git a/src/rm_localization/FAST_LIO/msg/Pose6D.msg b/src/rm_localization/FAST_LIO/msg/Pose6D.msg new file mode 100644 index 0000000..1ebd1fd --- /dev/null +++ b/src/rm_localization/FAST_LIO/msg/Pose6D.msg @@ -0,0 +1,7 @@ +# the preintegrated Lidar states at the time of IMU measurements in a frame +float64 offset_time # the offset time of IMU measurement w.r.t the first lidar point +float64[3] acc # the preintegrated total acceleration (global frame) at the Lidar origin +float64[3] gyr # the unbiased angular velocity (body frame) at the Lidar origin +float64[3] vel # the preintegrated velocity (global frame) at the Lidar origin +float64[3] pos # the preintegrated position (global frame) at the Lidar origin +float64[9] rot # the preintegrated rotation (global frame) at the Lidar origin \ No newline at end of file diff --git a/src/rm_localization/FAST_LIO/package.xml b/src/rm_localization/FAST_LIO/package.xml new file mode 100644 index 0000000..8c39e18 --- /dev/null +++ b/src/rm_localization/FAST_LIO/package.xml @@ -0,0 +1,38 @@ + + + fast_lio + 0.0.0 + + + This is a modified version of LOAM which is original algorithm + is described in the following paper: + J. Zhang and S. Singh. LOAM: Lidar Odometry and Mapping in Real-time. + Robotics: Science and Systems Conference (RSS). Berkeley, CA, July 2014. + + + claydergc + + BSD + + Ji Zhang + + ament_cmake + rosidl_default_generators + geometry_msgs + nav_msgs + rclcpp + std_msgs + sensor_msgs + common_interfaces + tf2 + pcl_ros + pcl_conversions + livox_ros_driver2 + + rosidl_default_runtime + rosidl_interface_packages + + + ament_cmake + + diff --git a/src/rm_localization/FAST_LIO/rviz/fastlio.rviz b/src/rm_localization/FAST_LIO/rviz/fastlio.rviz new file mode 100644 index 0000000..d907d25 --- /dev/null +++ b/src/rm_localization/FAST_LIO/rviz/fastlio.rviz @@ -0,0 +1,304 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + Splitter Ratio: 0.5 + Tree Height: 549 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz_common/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: CloudRegistered +Visualization Manager: + Class: "" + Displays: + - Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + body: + Value: true + camera_init: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + camera_init: + body: + {} + Update Interval: 0 + Value: true + - Angle Tolerance: 0.10000000149011612 + Class: rviz_default_plugins/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: true + Enabled: true + Keep: 100 + Name: Odometry + Position Tolerance: 0.10000000149011612 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Color: 255; 25; 0 + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Value: Arrow + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /Odometry + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz_default_plugins/Path + Color: 25; 255; 0 + Enabled: true + Head Diameter: 0.30000001192092896 + Head Length: 0.20000000298023224 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.029999999329447746 + Shaft Diameter: 0.10000000149011612 + Shaft Length: 0.10000000149011612 + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /path + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 11.062739372253418 + Min Value: -13.864188194274902 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 30 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 186 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudRegistered + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.05000000074505806 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_registered + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 184 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudEffected + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.10000000149011612 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_effected + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: -9999 + Min Value: 9999 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 255 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudMap + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.05000000074505806 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /Laser_map + Use Fixed Frame: true + Use rainbow: true + Value: true + Enabled: true + Global Options: + Background Color: 0; 0; 0 + Fixed Frame: camera_init + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 216.99887084960938 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: -0.008504047989845276 + Y: -0.0005770106799900532 + Z: 0.034441977739334106 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 1.5697963237762451 + Target Frame: + Value: Orbit (rviz_default_plugins) + Yaw: 4.88355827331543 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 846 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd000000040000000000000156000002b0fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d000002b0000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000002b0fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003d000002b0000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000005ad0000003efc0100000002fb0000000800540069006d00650100000000000005ad000002fb00fffffffb0000000800540069006d0065010000000000000450000000000000000000000451000002b000000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1453 + X: 368 + Y: 104 diff --git a/src/rm_localization/FAST_LIO/rviz_cfg/.gitignore b/src/rm_localization/FAST_LIO/rviz_cfg/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/FAST_LIO/rviz_cfg/loam_livox.rviz b/src/rm_localization/FAST_LIO/rviz_cfg/loam_livox.rviz new file mode 100644 index 0000000..ea3cdf3 --- /dev/null +++ b/src/rm_localization/FAST_LIO/rviz_cfg/loam_livox.rviz @@ -0,0 +1,358 @@ +Panels: + - Class: rviz/Displays + Help Height: 0 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /mapping1 + - /mapping1/surround1 + - /mapping1/currPoints1 + - /mapping1/currPoints1/Autocompute Value Bounds1 + - /Odometry1/Odometry1 + - /Odometry1/Odometry1/Shape1 + - /Odometry1/Odometry1/Covariance1 + - /Odometry1/Odometry1/Covariance1/Position1 + - /Odometry1/Odometry1/Covariance1/Orientation1 + - /MarkerArray1/Namespaces1 + Splitter Ratio: 0.6432291865348816 + Tree Height: 811 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: surround +Preferences: + PromptSaveOnExit: true +Toolbars: + toolButtonStyle: 2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 1 + Cell Size: 1000 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: false + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 40 + Reference Frame: + Value: false + - Class: rviz/Axes + Enabled: false + Length: 0.699999988079071 + Name: Axes + Radius: 0.05999999865889549 + Reference Frame: + Value: false + - Class: rviz/Group + Displays: + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 238; 238; 236 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Min Color: 238; 238; 236 + Name: surround + Position Transformer: XYZ + Queue Size: 1 + Selectable: false + Size (Pixels): 3 + Size (m): 0.05000000074505806 + Style: Points + Topic: /cloud_registered + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 0.10000000149011612 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 15 + Min Value: -5 + Value: false + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 1000 + Enabled: true + Invert Rainbow: true + Max Color: 255; 255; 255 + Min Color: 0; 0; 0 + Name: currPoints + Position Transformer: XYZ + Queue Size: 100000 + Selectable: true + Size (Pixels): 1 + Size (m): 0.009999999776482582 + Style: Points + Topic: /cloud_registered + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 0; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Min Color: 0; 0; 0 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.10000000149011612 + Style: Flat Squares + Topic: /Laser_map + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: false + Enabled: true + Name: mapping + - Class: rviz/Group + Displays: + - Angle Tolerance: 0.009999999776482582 + Class: rviz/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: true + Enabled: true + Keep: 1 + Name: Odometry + Position Tolerance: 0.0010000000474974513 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.20000000298023224 + Color: 255; 85; 0 + Head Length: 0 + Head Radius: 0 + Shaft Length: 0.05000000074505806 + Shaft Radius: 0.05000000074505806 + Value: Axes + Topic: /Odometry + Unreliable: false + Value: true + Enabled: true + Name: Odometry + - Class: rviz/Axes + Enabled: true + Length: 0.699999988079071 + Name: Axes + Radius: 0.10000000149011612 + Reference Frame: + Value: true + - Alpha: 0 + Buffer Length: 2 + Class: rviz/Path + Color: 25; 255; 255 + Enabled: true + Head Diameter: 0 + Head Length: 0 + Length: 0.30000001192092896 + Line Style: Billboards + Line Width: 0.20000000298023224 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 25; 255; 255 + Pose Style: None + Radius: 0.029999999329447746 + Shaft Diameter: 0.4000000059604645 + Shaft Length: 0.4000000059604645 + Topic: /path + Unreliable: false + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: false + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 239; 41; 41 + Max Intensity: 0 + Min Color: 239; 41; 41 + Min Intensity: 0 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 4 + Size (m): 0.30000001192092896 + Style: Spheres + Topic: /cloud_effected + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: false + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 13.139549255371094 + Min Value: -32.08251953125 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 138; 226; 52 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 138; 226; 52 + Min Color: 138; 226; 52 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.10000000149011612 + Style: Flat Squares + Topic: /Laser_map + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: false + - Class: rviz/MarkerArray + Enabled: false + Marker Topic: /MarkerArray + Name: MarkerArray + Namespaces: + {} + Queue Size: 100 + Value: false + Enabled: true + Global Options: + Background Color: 0; 0; 0 + Default Light: true + Fixed Frame: camera_init + Frame Rate: 10 + Name: root + Tools: + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/MoveCamera + - Class: rviz/Select + - Class: rviz/FocusCamera + - Class: rviz/Measure + - Class: rviz/SetInitialPose + Theta std deviation: 0.2617993950843811 + Topic: /initialpose + X std deviation: 0.5 + Y std deviation: 0.5 + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 46.0853271484375 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: -4.982542037963867 + Y: -15.83572006225586 + Z: -3.063523054122925 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.399796724319458 + Target Frame: global + Value: Orbit (rviz) + Yaw: 1.277182698249817 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1028 + Hide Left Dock: false + Hide Right Dock: true + QMainWindow State: 000000ff00000000fd0000000400000000000001c800000368fc020000000dfb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000002700000368000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000000a0049006d0061006700650000000297000001dc0000000000000000fb0000000a0049006d0061006700650000000394000001600000000000000000fb0000000a0049006d00610067006501000002c5000000c70000000000000000fb0000000a0049006d00610067006501000002c5000000c70000000000000000fb0000000a0049006d00610067006501000002c5000000c700000000000000000000000100000152000004b7fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003d000004b7000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000061f00000052fc0100000002fb0000000800540069006d006501000000000000061f000002eb00fffffffb0000000800540069006d00650100000000000004500000000000000000000004510000036800000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: true + Width: 1567 + X: 67 + Y: 24 diff --git a/src/rm_localization/FAST_LIO/src/IMU_Processing.hpp b/src/rm_localization/FAST_LIO/src/IMU_Processing.hpp new file mode 100644 index 0000000..f35378f --- /dev/null +++ b/src/rm_localization/FAST_LIO/src/IMU_Processing.hpp @@ -0,0 +1,379 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "use-ikfom.hpp" + +/// *************Preconfiguration + +#define MAX_INI_COUNT (10) + +const bool time_list(PointType &x, PointType &y) {return (x.curvature < y.curvature);}; + +/// *************IMU Process and undistortion +class ImuProcess +{ + public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + + ImuProcess(); + ~ImuProcess(); + + void Reset(); + // void Reset(double start_timestamp, const sensor_msgs::ImuConstPtr &lastimu); + void Reset(double start_timestamp, const sensor_msgs::msg::Imu::ConstSharedPtr &lastimu); + void set_extrinsic(const V3D &transl, const M3D &rot); + void set_extrinsic(const V3D &transl); + void set_extrinsic(const MD(4,4) &T); + void set_gyr_cov(const V3D &scaler); + void set_acc_cov(const V3D &scaler); + void set_gyr_bias_cov(const V3D &b_g); + void set_acc_bias_cov(const V3D &b_a); + Eigen::Matrix Q; + void Process(const MeasureGroup &meas, esekfom::esekf &kf_state, PointCloudXYZI::Ptr pcl_un_); + + ofstream fout_imu; + V3D cov_acc; + V3D cov_gyr; + V3D cov_acc_scale; + V3D cov_gyr_scale; + V3D cov_bias_gyr; + V3D cov_bias_acc; + double first_lidar_time; + + private: + void IMU_init(const MeasureGroup &meas, esekfom::esekf &kf_state, int &N); + void UndistortPcl(const MeasureGroup &meas, esekfom::esekf &kf_state, PointCloudXYZI &pcl_in_out); + + PointCloudXYZI::Ptr cur_pcl_un_; + // sensor_msgs::ImuConstPtr last_imu_; + sensor_msgs::msg::Imu::ConstSharedPtr last_imu_; + deque v_imu_; + vector IMUpose; + vector v_rot_pcl_; + M3D Lidar_R_wrt_IMU; + V3D Lidar_T_wrt_IMU; + V3D mean_acc; + V3D mean_gyr; + V3D angvel_last; + V3D acc_s_last; + double start_timestamp_; + double last_lidar_end_time_; + int init_iter_num = 1; + bool b_first_frame_ = true; + bool imu_need_init_ = true; +}; + +ImuProcess::ImuProcess() + : b_first_frame_(true), imu_need_init_(true), start_timestamp_(-1) +{ + init_iter_num = 1; + Q = process_noise_cov(); + cov_acc = V3D(0.1, 0.1, 0.1); + cov_gyr = V3D(0.1, 0.1, 0.1); + cov_bias_gyr = V3D(0.0001, 0.0001, 0.0001); + cov_bias_acc = V3D(0.0001, 0.0001, 0.0001); + mean_acc = V3D(0, 0, -1.0); + mean_gyr = V3D(0, 0, 0); + angvel_last = Zero3d; + Lidar_T_wrt_IMU = Zero3d; + Lidar_R_wrt_IMU = Eye3d; + last_imu_.reset(new sensor_msgs::msg::Imu()); +} + +ImuProcess::~ImuProcess() {} + +void ImuProcess::Reset() +{ + // ROS_WARN("Reset ImuProcess"); + mean_acc = V3D(0, 0, -1.0); + mean_gyr = V3D(0, 0, 0); + angvel_last = Zero3d; + imu_need_init_ = true; + start_timestamp_ = -1; + init_iter_num = 1; + v_imu_.clear(); + IMUpose.clear(); + last_imu_.reset(new sensor_msgs::msg::Imu()); + cur_pcl_un_.reset(new PointCloudXYZI()); +} + +void ImuProcess::set_extrinsic(const MD(4,4) &T) +{ + Lidar_T_wrt_IMU = T.block<3,1>(0,3); + Lidar_R_wrt_IMU = T.block<3,3>(0,0); +} + +void ImuProcess::set_extrinsic(const V3D &transl) +{ + Lidar_T_wrt_IMU = transl; + Lidar_R_wrt_IMU.setIdentity(); +} + +void ImuProcess::set_extrinsic(const V3D &transl, const M3D &rot) +{ + Lidar_T_wrt_IMU = transl; + Lidar_R_wrt_IMU = rot; +} + +void ImuProcess::set_gyr_cov(const V3D &scaler) +{ + cov_gyr_scale = scaler; +} + +void ImuProcess::set_acc_cov(const V3D &scaler) +{ + cov_acc_scale = scaler; +} + +void ImuProcess::set_gyr_bias_cov(const V3D &b_g) +{ + cov_bias_gyr = b_g; +} + +void ImuProcess::set_acc_bias_cov(const V3D &b_a) +{ + cov_bias_acc = b_a; +} + +void ImuProcess::IMU_init(const MeasureGroup &meas, esekfom::esekf &kf_state, int &N) +{ + /** 1. initializing the gravity, gyro bias, acc and gyro covariance + ** 2. normalize the acceleration measurenments to unit gravity **/ + + V3D cur_acc, cur_gyr; + + if (b_first_frame_) + { + Reset(); + N = 1; + b_first_frame_ = false; + const auto &imu_acc = meas.imu.front()->linear_acceleration; + const auto &gyr_acc = meas.imu.front()->angular_velocity; + mean_acc << imu_acc.x, imu_acc.y, imu_acc.z; + mean_gyr << gyr_acc.x, gyr_acc.y, gyr_acc.z; + first_lidar_time = meas.lidar_beg_time; + } + + for (const auto &imu : meas.imu) + { + const auto &imu_acc = imu->linear_acceleration; + const auto &gyr_acc = imu->angular_velocity; + cur_acc << imu_acc.x, imu_acc.y, imu_acc.z; + cur_gyr << gyr_acc.x, gyr_acc.y, gyr_acc.z; + + mean_acc += (cur_acc - mean_acc) / N; + mean_gyr += (cur_gyr - mean_gyr) / N; + + cov_acc = cov_acc * (N - 1.0) / N + (cur_acc - mean_acc).cwiseProduct(cur_acc - mean_acc) * (N - 1.0) / (N * N); + cov_gyr = cov_gyr * (N - 1.0) / N + (cur_gyr - mean_gyr).cwiseProduct(cur_gyr - mean_gyr) * (N - 1.0) / (N * N); + + // cout<<"acc norm: "<::cov init_P = kf_state.get_P(); + init_P.setIdentity(); + init_P(6,6) = init_P(7,7) = init_P(8,8) = 0.00001; + init_P(9,9) = init_P(10,10) = init_P(11,11) = 0.00001; + init_P(15,15) = init_P(16,16) = init_P(17,17) = 0.0001; + init_P(18,18) = init_P(19,19) = init_P(20,20) = 0.001; + init_P(21,21) = init_P(22,22) = 0.00001; + kf_state.change_P(init_P); + last_imu_ = meas.imu.back(); + +} + +void ImuProcess::UndistortPcl(const MeasureGroup &meas, esekfom::esekf &kf_state, PointCloudXYZI &pcl_out) +{ + /*** add the imu of the last frame-tail to the of current frame-head ***/ + auto v_imu = meas.imu; + v_imu.push_front(last_imu_); + const double &imu_beg_time = rclcpp::Time(v_imu.front()->header.stamp).seconds(); + const double &imu_end_time = rclcpp::Time(v_imu.back()->header.stamp).seconds(); + const double &pcl_beg_time = meas.lidar_beg_time; + const double &pcl_end_time = meas.lidar_end_time; + + /*** sort point clouds by offset time ***/ + pcl_out = *(meas.lidar); + sort(pcl_out.points.begin(), pcl_out.points.end(), time_list); + // cout<<"[ IMU Process ]: Process lidar from "<header.stamp).seconds(); + double head_stamp = rclcpp::Time(head->header.stamp).seconds(); + + if (tail_stamp < last_lidar_end_time_) continue; + + angvel_avr<<0.5 * (head->angular_velocity.x + tail->angular_velocity.x), + 0.5 * (head->angular_velocity.y + tail->angular_velocity.y), + 0.5 * (head->angular_velocity.z + tail->angular_velocity.z); + acc_avr <<0.5 * (head->linear_acceleration.x + tail->linear_acceleration.x), + 0.5 * (head->linear_acceleration.y + tail->linear_acceleration.y), + 0.5 * (head->linear_acceleration.z + tail->linear_acceleration.z); + + // fout_imu << setw(10) << head->header.stamp.toSec() - first_lidar_time << " " << angvel_avr.transpose() << " " << acc_avr.transpose() << endl; + + acc_avr = acc_avr * G_m_s2 / mean_acc.norm(); // - state_inout.ba; + + if(head_stamp < last_lidar_end_time_) + { + dt = tail_stamp - last_lidar_end_time_; + // dt = tail->header.stamp.toSec() - pcl_beg_time; + } + else + { + dt = tail_stamp - head_stamp; + } + + in.acc = acc_avr; + in.gyro = angvel_avr; + Q.block<3, 3>(0, 0).diagonal() = cov_gyr; + Q.block<3, 3>(3, 3).diagonal() = cov_acc; + Q.block<3, 3>(6, 6).diagonal() = cov_bias_gyr; + Q.block<3, 3>(9, 9).diagonal() = cov_bias_acc; + kf_state.predict(dt, Q, in); + + /* save the poses at each IMU measurements */ + imu_state = kf_state.get_x(); + angvel_last = angvel_avr - imu_state.bg; + acc_s_last = imu_state.rot * (acc_avr - imu_state.ba); + for(int i=0; i<3; i++) + { + acc_s_last[i] += imu_state.grav[i]; + } + double &&offs_t = tail_stamp - pcl_beg_time; + IMUpose.push_back(set_pose6d(offs_t, acc_s_last, angvel_last, imu_state.vel, imu_state.pos, imu_state.rot.toRotationMatrix())); + } + + /*** calculated the pos and attitude prediction at the frame-end ***/ + double note = pcl_end_time > imu_end_time ? 1.0 : -1.0; + dt = note * (pcl_end_time - imu_end_time); + kf_state.predict(dt, Q, in); + + imu_state = kf_state.get_x(); + last_imu_ = meas.imu.back(); + last_lidar_end_time_ = pcl_end_time; + + /*** undistort each lidar point (backward propagation) ***/ + if (pcl_out.points.begin() == pcl_out.points.end()) return; + auto it_pcl = pcl_out.points.end() - 1; + for (auto it_kp = IMUpose.end() - 1; it_kp != IMUpose.begin(); it_kp--) + { + auto head = it_kp - 1; + auto tail = it_kp; + R_imu<rot); + // cout<<"head imu acc: "<vel); + pos_imu<pos); + acc_imu<acc); + angvel_avr<gyr); + + for(; it_pcl->curvature / double(1000) > head->offset_time; it_pcl --) + { + dt = it_pcl->curvature / double(1000) - head->offset_time; + + /* Transform to the 'end' frame, using only the rotation + * Note: Compensation direction is INVERSE of Frame's moving direction + * So if we want to compensate a point at timestamp-i to the frame-e + * P_compensate = R_imu_e ^ T * (R_i * P_i + T_ei) where T_ei is represented in global frame */ + M3D R_i(R_imu * Exp(angvel_avr, dt)); + + V3D P_i(it_pcl->x, it_pcl->y, it_pcl->z); + V3D T_ei(pos_imu + vel_imu * dt + 0.5 * acc_imu * dt * dt - imu_state.pos); + V3D P_compensate = imu_state.offset_R_L_I.conjugate() * (imu_state.rot.conjugate() * (R_i * (imu_state.offset_R_L_I * P_i + imu_state.offset_T_L_I) + T_ei) - imu_state.offset_T_L_I);// not accurate! + + // save Undistorted points and their rotation + it_pcl->x = P_compensate(0); + it_pcl->y = P_compensate(1); + it_pcl->z = P_compensate(2); + + if (it_pcl == pcl_out.points.begin()) break; + } + } +} + +void ImuProcess::Process(const MeasureGroup &meas, esekfom::esekf &kf_state, PointCloudXYZI::Ptr cur_pcl_un_) +{ + double t1,t2,t3; + t1 = omp_get_wtime(); + + if(meas.imu.empty()) {return;}; + assert(meas.lidar != nullptr); + + if (imu_need_init_) + { + /// The very first lidar frame + IMU_init(meas, kf_state, init_iter_num); + + imu_need_init_ = true; + + last_imu_ = meas.imu.back(); + + state_ikfom imu_state = kf_state.get_x(); + if (init_iter_num > MAX_INI_COUNT) + { + cov_acc *= pow(G_m_s2 / mean_acc.norm(), 2); + imu_need_init_ = false; + + cov_acc = cov_acc_scale; + cov_gyr = cov_gyr_scale; + std::cout << "IMU Initial Done" << std::endl; + // ROS_INFO("IMU Initial Done: Gravity: %.4f %.4f %.4f %.4f; state.bias_g: %.4f %.4f %.4f; acc covarience: %.8f %.8f %.8f; gry covarience: %.8f %.8f %.8f",\ + // imu_state.grav[0], imu_state.grav[1], imu_state.grav[2], mean_acc.norm(), cov_bias_gyr[0], cov_bias_gyr[1], cov_bias_gyr[2], cov_acc[0], cov_acc[1], cov_acc[2], cov_gyr[0], cov_gyr[1], cov_gyr[2]); + fout_imu.open(DEBUG_FILE_DIR("imu.txt"),ios::out); + } + + return; + } + + UndistortPcl(meas, kf_state, *cur_pcl_un_); + + t2 = omp_get_wtime(); + t3 = omp_get_wtime(); + + // cout<<"[ IMU Process ]: Time: "< +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "IMU_Processing.hpp" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include +#include "preprocess.h" +#include + +#define INIT_TIME (0.1) +#define LASER_POINT_COV (0.001) +#define MAXN (720000) +#define PUBFRAME_PERIOD (20) + +/*** Time Log Variables ***/ +double kdtree_incremental_time = 0.0, kdtree_search_time = 0.0, kdtree_delete_time = 0.0; +double T1[MAXN], s_plot[MAXN], s_plot2[MAXN], s_plot3[MAXN], s_plot4[MAXN], s_plot5[MAXN], s_plot6[MAXN], s_plot7[MAXN], s_plot8[MAXN], s_plot9[MAXN], s_plot10[MAXN], s_plot11[MAXN]; +double match_time = 0, solve_time = 0, solve_const_H_time = 0; +int kdtree_size_st = 0, kdtree_size_end = 0, add_point_size = 0, kdtree_delete_counter = 0; +bool runtime_pos_log = false, pcd_save_en = false, time_sync_en = false, extrinsic_est_en = true, path_en = true; +/**************************/ + +float res_last[100000] = {0.0}; +float DET_RANGE = 300.0f; +const float MOV_THRESHOLD = 1.5f; +double time_diff_lidar_to_imu = 0.0; + +mutex mtx_buffer; +condition_variable sig_buffer; + +string root_dir = ROOT_DIR; +string map_file_path, lid_topic, imu_topic; + +double res_mean_last = 0.05, total_residual = 0.0; +double last_timestamp_lidar = 0, last_timestamp_imu = -1.0; +double gyr_cov = 0.1, acc_cov = 0.1, b_gyr_cov = 0.0001, b_acc_cov = 0.0001; +double filter_size_corner_min = 0, filter_size_surf_min = 0, filter_size_map_min = 0, fov_deg = 0; +double cube_len = 0, HALF_FOV_COS = 0, FOV_DEG = 0, total_distance = 0, lidar_end_time = 0, first_lidar_time = 0.0; +int effct_feat_num = 0, time_log_counter = 0, scan_count = 0, publish_count = 0; +int iterCount = 0, feats_down_size = 0, NUM_MAX_ITERATIONS = 0, laserCloudValidNum = 0, pcd_save_interval = -1, pcd_index = 0; +bool point_selected_surf[100000] = {0}; +bool lidar_pushed, flg_first_scan = true, flg_exit = false, flg_EKF_inited; +bool scan_pub_en = false, dense_pub_en = false, scan_body_pub_en = false; +bool is_first_lidar = true; + +vector> pointSearchInd_surf; +vector cub_needrm; +vector Nearest_Points; +vector extrinT(3, 0.0); +vector extrinR(9, 0.0); +deque time_buffer; +deque lidar_buffer; +deque imu_buffer; + +PointCloudXYZI::Ptr featsFromMap(new PointCloudXYZI()); +PointCloudXYZI::Ptr feats_undistort(new PointCloudXYZI()); +PointCloudXYZI::Ptr feats_down_body(new PointCloudXYZI()); +PointCloudXYZI::Ptr feats_down_world(new PointCloudXYZI()); +PointCloudXYZI::Ptr normvec(new PointCloudXYZI(100000, 1)); +PointCloudXYZI::Ptr laserCloudOri(new PointCloudXYZI(100000, 1)); +PointCloudXYZI::Ptr corr_normvect(new PointCloudXYZI(100000, 1)); +PointCloudXYZI::Ptr _featsArray; + +pcl::VoxelGrid downSizeFilterSurf; +pcl::VoxelGrid downSizeFilterMap; + +KD_TREE ikdtree; + +V3F XAxisPoint_body(LIDAR_SP_LEN, 0.0, 0.0); +V3F XAxisPoint_world(LIDAR_SP_LEN, 0.0, 0.0); +V3D euler_cur; +V3D position_last(Zero3d); +V3D Lidar_T_wrt_IMU(Zero3d); +M3D Lidar_R_wrt_IMU(Eye3d); + +/*** EKF inputs and output ***/ +MeasureGroup Measures; +esekfom::esekf kf; +state_ikfom state_point; +vect3 pos_lid; + +nav_msgs::msg::Path path; +nav_msgs::msg::Odometry odomAftMapped; +geometry_msgs::msg::Quaternion geoQuat; +geometry_msgs::msg::PoseStamped msg_body_pose; + +shared_ptr p_pre(new Preprocess()); +shared_ptr p_imu(new ImuProcess()); + +void SigHandle(int sig) +{ + flg_exit = true; + std::cout << "catch sig %d" << sig << std::endl; + sig_buffer.notify_all(); + rclcpp::shutdown(); +} + +inline void dump_lio_state_to_log(FILE *fp) +{ + V3D rot_ang(Log(state_point.rot.toRotationMatrix())); + fprintf(fp, "%lf ", Measures.lidar_beg_time - first_lidar_time); + fprintf(fp, "%lf %lf %lf ", rot_ang(0), rot_ang(1), rot_ang(2)); // Angle + fprintf(fp, "%lf %lf %lf ", state_point.pos(0), state_point.pos(1), state_point.pos(2)); // Pos + fprintf(fp, "%lf %lf %lf ", 0.0, 0.0, 0.0); // omega + fprintf(fp, "%lf %lf %lf ", state_point.vel(0), state_point.vel(1), state_point.vel(2)); // Vel + fprintf(fp, "%lf %lf %lf ", 0.0, 0.0, 0.0); // Acc + fprintf(fp, "%lf %lf %lf ", state_point.bg(0), state_point.bg(1), state_point.bg(2)); // Bias_g + fprintf(fp, "%lf %lf %lf ", state_point.ba(0), state_point.ba(1), state_point.ba(2)); // Bias_a + fprintf(fp, "%lf %lf %lf ", state_point.grav[0], state_point.grav[1], state_point.grav[2]); // Bias_a + fprintf(fp, "\r\n"); + fflush(fp); +} + +void pointBodyToWorld_ikfom(PointType const * const pi, PointType * const po, state_ikfom &s) +{ + V3D p_body(pi->x, pi->y, pi->z); + V3D p_global(s.rot * (s.offset_R_L_I*p_body + s.offset_T_L_I) + s.pos); + + po->x = p_global(0); + po->y = p_global(1); + po->z = p_global(2); + po->intensity = pi->intensity; +} + + +void pointBodyToWorld(PointType const * const pi, PointType * const po) +{ + V3D p_body(pi->x, pi->y, pi->z); + V3D p_global(state_point.rot * (state_point.offset_R_L_I*p_body + state_point.offset_T_L_I) + state_point.pos); + + po->x = p_global(0); + po->y = p_global(1); + po->z = p_global(2); + po->intensity = pi->intensity; +} + +template +void pointBodyToWorld(const Matrix &pi, Matrix &po) +{ + V3D p_body(pi[0], pi[1], pi[2]); + V3D p_global(state_point.rot * (state_point.offset_R_L_I*p_body + state_point.offset_T_L_I) + state_point.pos); + + po[0] = p_global(0); + po[1] = p_global(1); + po[2] = p_global(2); +} + +void RGBpointBodyToWorld(PointType const * const pi, PointType * const po) +{ + V3D p_body(pi->x, pi->y, pi->z); + V3D p_global(state_point.rot * (state_point.offset_R_L_I*p_body + state_point.offset_T_L_I) + state_point.pos); + + po->x = p_global(0); + po->y = p_global(1); + po->z = p_global(2); + po->intensity = pi->intensity; +} + +void RGBpointBodyLidarToIMU(PointType const * const pi, PointType * const po) +{ + V3D p_body_lidar(pi->x, pi->y, pi->z); + V3D p_body_imu(state_point.offset_R_L_I*p_body_lidar + state_point.offset_T_L_I); + + po->x = p_body_imu(0); + po->y = p_body_imu(1); + po->z = p_body_imu(2); + po->intensity = pi->intensity; +} + +void points_cache_collect() +{ + PointVector points_history; + ikdtree.acquire_removed_points(points_history); + // for (int i = 0; i < points_history.size(); i++) _featsArray->push_back(points_history[i]); +} + +BoxPointType LocalMap_Points; +bool Localmap_Initialized = false; +void lasermap_fov_segment() +{ + cub_needrm.clear(); + kdtree_delete_counter = 0; + kdtree_delete_time = 0.0; + pointBodyToWorld(XAxisPoint_body, XAxisPoint_world); + V3D pos_LiD = pos_lid; + if (!Localmap_Initialized){ + for (int i = 0; i < 3; i++){ + LocalMap_Points.vertex_min[i] = pos_LiD(i) - cube_len / 2.0; + LocalMap_Points.vertex_max[i] = pos_LiD(i) + cube_len / 2.0; + } + Localmap_Initialized = true; + return; + } + float dist_to_map_edge[3][2]; + bool need_move = false; + for (int i = 0; i < 3; i++){ + dist_to_map_edge[i][0] = fabs(pos_LiD(i) - LocalMap_Points.vertex_min[i]); + dist_to_map_edge[i][1] = fabs(pos_LiD(i) - LocalMap_Points.vertex_max[i]); + if (dist_to_map_edge[i][0] <= MOV_THRESHOLD * DET_RANGE || dist_to_map_edge[i][1] <= MOV_THRESHOLD * DET_RANGE) need_move = true; + } + if (!need_move) return; + BoxPointType New_LocalMap_Points, tmp_boxpoints; + New_LocalMap_Points = LocalMap_Points; + float mov_dist = max((cube_len - 2.0 * MOV_THRESHOLD * DET_RANGE) * 0.5 * 0.9, double(DET_RANGE * (MOV_THRESHOLD -1))); + for (int i = 0; i < 3; i++){ + tmp_boxpoints = LocalMap_Points; + if (dist_to_map_edge[i][0] <= MOV_THRESHOLD * DET_RANGE){ + New_LocalMap_Points.vertex_max[i] -= mov_dist; + New_LocalMap_Points.vertex_min[i] -= mov_dist; + tmp_boxpoints.vertex_min[i] = LocalMap_Points.vertex_max[i] - mov_dist; + cub_needrm.push_back(tmp_boxpoints); + } else if (dist_to_map_edge[i][1] <= MOV_THRESHOLD * DET_RANGE){ + New_LocalMap_Points.vertex_max[i] += mov_dist; + New_LocalMap_Points.vertex_min[i] += mov_dist; + tmp_boxpoints.vertex_max[i] = LocalMap_Points.vertex_min[i] + mov_dist; + cub_needrm.push_back(tmp_boxpoints); + } + } + LocalMap_Points = New_LocalMap_Points; + + points_cache_collect(); + double delete_begin = omp_get_wtime(); + if(cub_needrm.size() > 0) kdtree_delete_counter = ikdtree.Delete_Point_Boxes(cub_needrm); + kdtree_delete_time = omp_get_wtime() - delete_begin; +} + +void standard_pcl_cbk(const sensor_msgs::msg::PointCloud2::UniquePtr msg) +{ + mtx_buffer.lock(); + scan_count ++; + double cur_time = get_time_sec(msg->header.stamp); + double preprocess_start_time = omp_get_wtime(); + if (!is_first_lidar && cur_time < last_timestamp_lidar) + { + std::cerr << "lidar loop back, clear buffer" << std::endl; + lidar_buffer.clear(); + } + if (is_first_lidar) + { + is_first_lidar = false; + } + + PointCloudXYZI::Ptr ptr(new PointCloudXYZI()); + p_pre->process(msg, ptr); + lidar_buffer.push_back(ptr); + time_buffer.push_back(cur_time); + last_timestamp_lidar = cur_time; + s_plot11[scan_count] = omp_get_wtime() - preprocess_start_time; + mtx_buffer.unlock(); + sig_buffer.notify_all(); +} + +double timediff_lidar_wrt_imu = 0.0; +bool timediff_set_flg = false; +void livox_pcl_cbk(const livox_ros_driver2::msg::CustomMsg::UniquePtr msg) +{ + mtx_buffer.lock(); + double cur_time = get_time_sec(msg->header.stamp); + double preprocess_start_time = omp_get_wtime(); + scan_count ++; + if (!is_first_lidar && cur_time < last_timestamp_lidar) + { + std::cerr << "lidar loop back, clear buffer" << std::endl; + lidar_buffer.clear(); + } + if(is_first_lidar) + { + is_first_lidar = false; + } + last_timestamp_lidar = cur_time; + + if (!time_sync_en && abs(last_timestamp_imu - last_timestamp_lidar) > 10.0 && !imu_buffer.empty() && !lidar_buffer.empty() ) + { + printf("IMU and LiDAR not Synced, IMU time: %lf, lidar header time: %lf \n",last_timestamp_imu, last_timestamp_lidar); + } + + if (time_sync_en && !timediff_set_flg && abs(last_timestamp_lidar - last_timestamp_imu) > 1 && !imu_buffer.empty()) + { + timediff_set_flg = true; + timediff_lidar_wrt_imu = last_timestamp_lidar + 0.1 - last_timestamp_imu; + printf("Self sync IMU and LiDAR, time diff is %.10lf \n", timediff_lidar_wrt_imu); + } + + PointCloudXYZI::Ptr ptr(new PointCloudXYZI()); + p_pre->process(msg, ptr); + lidar_buffer.push_back(ptr); + time_buffer.push_back(last_timestamp_lidar); + + s_plot11[scan_count] = omp_get_wtime() - preprocess_start_time; + mtx_buffer.unlock(); + sig_buffer.notify_all(); +} + +void imu_cbk(const sensor_msgs::msg::Imu::UniquePtr msg_in) +{ + publish_count ++; + // cout<<"IMU got at: "<header.stamp.toSec()<header.stamp = get_ros_time(get_time_sec(msg_in->header.stamp) - time_diff_lidar_to_imu); + if (abs(timediff_lidar_wrt_imu) > 0.1 && time_sync_en) + { + msg->header.stamp = \ + rclcpp::Time(timediff_lidar_wrt_imu + get_time_sec(msg_in->header.stamp)); + } + + double timestamp = get_time_sec(msg->header.stamp); + + mtx_buffer.lock(); + + if (timestamp < last_timestamp_imu) + { + std::cerr << "lidar loop back, clear buffer" << std::endl; + imu_buffer.clear(); + } + + last_timestamp_imu = timestamp; + + imu_buffer.push_back(msg); + mtx_buffer.unlock(); + sig_buffer.notify_all(); +} + +double lidar_mean_scantime = 0.0; +int scan_num = 0; +bool sync_packages(MeasureGroup &meas) +{ + if (lidar_buffer.empty() || imu_buffer.empty()) { + return false; + } + + /*** push a lidar scan ***/ + if(!lidar_pushed) + { + meas.lidar = lidar_buffer.front(); + meas.lidar_beg_time = time_buffer.front(); + if (meas.lidar->points.size() <= 1) // time too little + { + lidar_end_time = meas.lidar_beg_time + lidar_mean_scantime; + std::cerr << "Too few input point cloud!\n"; + } + else if (meas.lidar->points.back().curvature / double(1000) < 0.5 * lidar_mean_scantime) + { + lidar_end_time = meas.lidar_beg_time + lidar_mean_scantime; + } + else + { + scan_num ++; + lidar_end_time = meas.lidar_beg_time + meas.lidar->points.back().curvature / double(1000); + lidar_mean_scantime += (meas.lidar->points.back().curvature / double(1000) - lidar_mean_scantime) / scan_num; + } + + meas.lidar_end_time = lidar_end_time; + + lidar_pushed = true; + } + + if (last_timestamp_imu < lidar_end_time) + { + return false; + } + + /*** push imu data, and pop from imu buffer ***/ + double imu_time = get_time_sec(imu_buffer.front()->header.stamp); + meas.imu.clear(); + while ((!imu_buffer.empty()) && (imu_time < lidar_end_time)) + { + imu_time = get_time_sec(imu_buffer.front()->header.stamp); + if(imu_time > lidar_end_time) break; + meas.imu.push_back(imu_buffer.front()); + imu_buffer.pop_front(); + } + + lidar_buffer.pop_front(); + time_buffer.pop_front(); + lidar_pushed = false; + return true; +} + +int process_increments = 0; +void map_incremental() +{ + PointVector PointToAdd; + PointVector PointNoNeedDownsample; + PointToAdd.reserve(feats_down_size); + PointNoNeedDownsample.reserve(feats_down_size); + for (int i = 0; i < feats_down_size; i++) + { + /* transform to world frame */ + pointBodyToWorld(&(feats_down_body->points[i]), &(feats_down_world->points[i])); + /* decide if need add to map */ + if (!Nearest_Points[i].empty() && flg_EKF_inited) + { + const PointVector &points_near = Nearest_Points[i]; + bool need_add = true; + BoxPointType Box_of_Point; + PointType downsample_result, mid_point; + mid_point.x = floor(feats_down_world->points[i].x/filter_size_map_min)*filter_size_map_min + 0.5 * filter_size_map_min; + mid_point.y = floor(feats_down_world->points[i].y/filter_size_map_min)*filter_size_map_min + 0.5 * filter_size_map_min; + mid_point.z = floor(feats_down_world->points[i].z/filter_size_map_min)*filter_size_map_min + 0.5 * filter_size_map_min; + float dist = calc_dist(feats_down_world->points[i],mid_point); + if (fabs(points_near[0].x - mid_point.x) > 0.5 * filter_size_map_min && fabs(points_near[0].y - mid_point.y) > 0.5 * filter_size_map_min && fabs(points_near[0].z - mid_point.z) > 0.5 * filter_size_map_min){ + PointNoNeedDownsample.push_back(feats_down_world->points[i]); + continue; + } + for (int readd_i = 0; readd_i < NUM_MATCH_POINTS; readd_i ++) + { + if (points_near.size() < NUM_MATCH_POINTS) break; + if (calc_dist(points_near[readd_i], mid_point) < dist) + { + need_add = false; + break; + } + } + if (need_add) PointToAdd.push_back(feats_down_world->points[i]); + } + else + { + PointToAdd.push_back(feats_down_world->points[i]); + } + } + + double st_time = omp_get_wtime(); + add_point_size = ikdtree.Add_Points(PointToAdd, true); + ikdtree.Add_Points(PointNoNeedDownsample, false); + add_point_size = PointToAdd.size() + PointNoNeedDownsample.size(); + kdtree_incremental_time = omp_get_wtime() - st_time; +} + +PointCloudXYZI::Ptr pcl_wait_pub(new PointCloudXYZI()); +PointCloudXYZI::Ptr pcl_wait_save(new PointCloudXYZI()); +void publish_frame_world(rclcpp::Publisher::SharedPtr pubLaserCloudFull) +{ + if(scan_pub_en) + { + PointCloudXYZI::Ptr laserCloudFullRes(dense_pub_en ? feats_undistort : feats_down_body); + int size = laserCloudFullRes->points.size(); + PointCloudXYZI::Ptr laserCloudWorld( \ + new PointCloudXYZI(size, 1)); + + for (int i = 0; i < size; i++) + { + RGBpointBodyToWorld(&laserCloudFullRes->points[i], \ + &laserCloudWorld->points[i]); + } + + sensor_msgs::msg::PointCloud2 laserCloudmsg; + pcl::toROSMsg(*laserCloudWorld, laserCloudmsg); + // laserCloudmsg.header.stamp = ros::Time().fromSec(lidar_end_time); + laserCloudmsg.header.stamp = get_ros_time(lidar_end_time); + laserCloudmsg.header.frame_id = "lidar_odom"; + pubLaserCloudFull->publish(laserCloudmsg); + publish_count -= PUBFRAME_PERIOD; + } + + /**************** save map ****************/ + /* 1. make sure you have enough memories + /* 2. noted that pcd save will influence the real-time performences **/ + /* + if (pcd_save_en) + { + int size = feats_undistort->points.size(); + PointCloudXYZI::Ptr laserCloudWorld( \ + new PointCloudXYZI(size, 1)); + + for (int i = 0; i < size; i++) + { + RGBpointBodyToWorld(&feats_undistort->points[i], \ + &laserCloudWorld->points[i]); + } + *pcl_wait_save += *laserCloudWorld; + + static int scan_wait_num = 0; + scan_wait_num ++; + if (pcl_wait_save->size() > 0 && pcd_save_interval > 0 && scan_wait_num >= pcd_save_interval) + { + pcd_index ++; + string all_points_dir(string(string(ROOT_DIR) + "PCD/scans_") + to_string(pcd_index) + string(".pcd")); + pcl::PCDWriter pcd_writer; + cout << "current scan saved to /PCD/" << all_points_dir << endl; + pcd_writer.writeBinary(all_points_dir, *pcl_wait_save); + pcl_wait_save->clear(); + scan_wait_num = 0; + } + } + */ +} + +void publish_frame_body(rclcpp::Publisher::SharedPtr pubLaserCloudFull_body) +{ + int size = feats_undistort->points.size(); + PointCloudXYZI::Ptr laserCloudIMUBody(new PointCloudXYZI(size, 1)); + + for (int i = 0; i < size; i++) + { + RGBpointBodyLidarToIMU(&feats_undistort->points[i], \ + &laserCloudIMUBody->points[i]); + } + + sensor_msgs::msg::PointCloud2 laserCloudmsg; + pcl::toROSMsg(*laserCloudIMUBody, laserCloudmsg); + laserCloudmsg.header.stamp = get_ros_time(lidar_end_time); + laserCloudmsg.header.frame_id = "livox_frame"; + pubLaserCloudFull_body->publish(laserCloudmsg); + publish_count -= PUBFRAME_PERIOD; +} + +void publish_effect_world(rclcpp::Publisher::SharedPtr pubLaserCloudEffect) +{ + PointCloudXYZI::Ptr laserCloudWorld( \ + new PointCloudXYZI(effct_feat_num, 1)); + for (int i = 0; i < effct_feat_num; i++) + { + RGBpointBodyToWorld(&laserCloudOri->points[i], \ + &laserCloudWorld->points[i]); + } + sensor_msgs::msg::PointCloud2 laserCloudFullRes3; + pcl::toROSMsg(*laserCloudWorld, laserCloudFullRes3); + laserCloudFullRes3.header.stamp = get_ros_time(lidar_end_time); + laserCloudFullRes3.header.frame_id = "lidar_odom"; + pubLaserCloudEffect->publish(laserCloudFullRes3); +} + +void publish_map(rclcpp::Publisher::SharedPtr pubLaserCloudMap) +{ + PointCloudXYZI::Ptr laserCloudFullRes(dense_pub_en ? feats_undistort : feats_down_body); + int size = laserCloudFullRes->points.size(); + PointCloudXYZI::Ptr laserCloudWorld( \ + new PointCloudXYZI(size, 1)); + + for (int i = 0; i < size; i++) + { + RGBpointBodyToWorld(&laserCloudFullRes->points[i], \ + &laserCloudWorld->points[i]); + } + *pcl_wait_pub += *laserCloudWorld; + + sensor_msgs::msg::PointCloud2 laserCloudmsg; + pcl::toROSMsg(*pcl_wait_pub, laserCloudmsg); + laserCloudmsg.header.stamp = get_ros_time(lidar_end_time); + laserCloudmsg.header.frame_id = "lidar_odom"; + pubLaserCloudMap->publish(laserCloudmsg); +} + +void save_to_pcd() +{ + pcl::PCDWriter pcd_writer; + pcd_writer.writeBinary(map_file_path, *pcl_wait_pub); +} + +template +void set_posestamp(T & out) +{ + out.pose.position.x = state_point.pos(0); + out.pose.position.y = state_point.pos(1); + out.pose.position.z = state_point.pos(2); + out.pose.orientation.x = geoQuat.x; + out.pose.orientation.y = geoQuat.y; + out.pose.orientation.z = geoQuat.z; + out.pose.orientation.w = geoQuat.w; + +} + +void publish_odometry(const rclcpp::Publisher::SharedPtr pubOdomAftMapped, + std::unique_ptr & tf_br, + std::unique_ptr & tf_buffer_, + rclcpp::Logger logger_) +{ + odomAftMapped.header.frame_id = "lidar_odom"; + odomAftMapped.child_frame_id = "livox_frame"; + odomAftMapped.header.stamp = get_ros_time(lidar_end_time); + set_posestamp(odomAftMapped.pose); + pubOdomAftMapped->publish(odomAftMapped); + auto P = kf.get_P(); + for (int i = 0; i < 6; i ++) + { + int k = i < 3 ? i + 3 : i - 3; + odomAftMapped.pose.covariance[i*6 + 0] = P(k, 3); + odomAftMapped.pose.covariance[i*6 + 1] = P(k, 4); + odomAftMapped.pose.covariance[i*6 + 2] = P(k, 5); + odomAftMapped.pose.covariance[i*6 + 3] = P(k, 0); + odomAftMapped.pose.covariance[i*6 + 4] = P(k, 1); + odomAftMapped.pose.covariance[i*6 + 5] = P(k, 2); + } + + // Publish tf from lidar_odom to base_link + static geometry_msgs::msg::TransformStamped livox_to_base_link_transform; + static bool transform_acquired = false; // Check if the transform has already been acquired + if (!transform_acquired) { + // Get the transform from base_link to livox_frame + try { + livox_to_base_link_transform = tf_buffer_->lookupTransform("livox_frame", "base_link", odomAftMapped.header.stamp); + transform_acquired = true; // Set the flag to true indicating that the transform has been acquired + } catch (tf2::TransformException &ex) { + RCLCPP_ERROR(logger_, "Failed to lookup transform from base_link to livox_frame: %s", ex.what()); + return; + } + } + + // Create a TransformStamped message for lidar_odom to base_link + geometry_msgs::msg::TransformStamped transform_stamped; + transform_stamped.header.stamp = odomAftMapped.header.stamp; + transform_stamped.header.frame_id = "lidar_odom"; // Source frame + transform_stamped.child_frame_id = "base_link"; // Target frame + + // Calculate the transform from lidar_odom to base_link by multiplying the transforms + tf2::Transform tf_lidar_odom_to_livox_frame; + tf2::fromMsg(odomAftMapped.pose.pose, tf_lidar_odom_to_livox_frame); + tf2::Transform tf_livox_frame_to_base_link; + tf2::fromMsg(livox_to_base_link_transform.transform, tf_livox_frame_to_base_link); + tf2::Transform tf_lidar_odom_to_base_link = + tf_lidar_odom_to_livox_frame * tf_livox_frame_to_base_link; + + // Convert the resulting transform back to geometry_msgs::TransformStamped + transform_stamped.transform = tf2::toMsg(tf_lidar_odom_to_base_link); + + // Publish the tf + tf_br->sendTransform(transform_stamped); +} + +void publish_path(rclcpp::Publisher::SharedPtr pubPath) +{ + set_posestamp(msg_body_pose); + msg_body_pose.header.stamp = get_ros_time(lidar_end_time); // ros::Time().fromSec(lidar_end_time); + msg_body_pose.header.frame_id = "lidar_odom"; + + /*** if path is too large, the rvis will crash ***/ + // static int jjj = 0; + // jjj++; + // if (jjj % 10 == 0) + { + path.poses.push_back(msg_body_pose); + pubPath->publish(path); + } +} + +void h_share_model(state_ikfom &s, esekfom::dyn_share_datastruct &ekfom_data) +{ + double match_start = omp_get_wtime(); + laserCloudOri->clear(); + corr_normvect->clear(); + total_residual = 0.0; + + /** closest surface search and residual computation **/ + #ifdef MP_EN + omp_set_num_threads(MP_PROC_NUM); + #pragma omp parallel for + #endif + for (int i = 0; i < feats_down_size; i++) + { + PointType &point_body = feats_down_body->points[i]; + PointType &point_world = feats_down_world->points[i]; + + /* transform to world frame */ + V3D p_body(point_body.x, point_body.y, point_body.z); + V3D p_global(s.rot * (s.offset_R_L_I*p_body + s.offset_T_L_I) + s.pos); + point_world.x = p_global(0); + point_world.y = p_global(1); + point_world.z = p_global(2); + point_world.intensity = point_body.intensity; + + vector pointSearchSqDis(NUM_MATCH_POINTS); + + auto &points_near = Nearest_Points[i]; + + if (ekfom_data.converge) + { + /** Find the closest surfaces in the map **/ + ikdtree.Nearest_Search(point_world, NUM_MATCH_POINTS, points_near, pointSearchSqDis); + point_selected_surf[i] = points_near.size() < NUM_MATCH_POINTS ? false : pointSearchSqDis[NUM_MATCH_POINTS - 1] > 5 ? false : true; + } + + if (!point_selected_surf[i]) continue; + + VF(4) pabcd; + point_selected_surf[i] = false; + if (esti_plane(pabcd, points_near, 0.1f)) + { + float pd2 = pabcd(0) * point_world.x + pabcd(1) * point_world.y + pabcd(2) * point_world.z + pabcd(3); + float s = 1 - 0.9 * fabs(pd2) / sqrt(p_body.norm()); + + if (s > 0.9) + { + point_selected_surf[i] = true; + normvec->points[i].x = pabcd(0); + normvec->points[i].y = pabcd(1); + normvec->points[i].z = pabcd(2); + normvec->points[i].intensity = pd2; + res_last[i] = abs(pd2); + } + } + } + + effct_feat_num = 0; + + for (int i = 0; i < feats_down_size; i++) + { + if (point_selected_surf[i]) + { + laserCloudOri->points[effct_feat_num] = feats_down_body->points[i]; + corr_normvect->points[effct_feat_num] = normvec->points[i]; + total_residual += res_last[i]; + effct_feat_num ++; + } + } + + if (effct_feat_num < 1) + { + ekfom_data.valid = false; + std::cerr << "No Effective Points!" << std::endl; + // ROS_WARN("No Effective Points! \n"); + return; + } + + res_mean_last = total_residual / effct_feat_num; + match_time += omp_get_wtime() - match_start; + double solve_start_ = omp_get_wtime(); + + /*** Computation of Measuremnt Jacobian matrix H and measurents vector ***/ + ekfom_data.h_x = MatrixXd::Zero(effct_feat_num, 12); //23 + ekfom_data.h.resize(effct_feat_num); + + for (int i = 0; i < effct_feat_num; i++) + { + const PointType &laser_p = laserCloudOri->points[i]; + V3D point_this_be(laser_p.x, laser_p.y, laser_p.z); + M3D point_be_crossmat; + point_be_crossmat << SKEW_SYM_MATRX(point_this_be); + V3D point_this = s.offset_R_L_I * point_this_be + s.offset_T_L_I; + M3D point_crossmat; + point_crossmat<points[i]; + V3D norm_vec(norm_p.x, norm_p.y, norm_p.z); + + /*** calculate the Measuremnt Jacobian matrix H ***/ + V3D C(s.rot.conjugate() *norm_vec); + V3D A(point_crossmat * C); + if (extrinsic_est_en) + { + V3D B(point_be_crossmat * s.offset_R_L_I.conjugate() * C); //s.rot.conjugate()*norm_vec); + ekfom_data.h_x.block<1, 12>(i,0) << norm_p.x, norm_p.y, norm_p.z, VEC_FROM_ARRAY(A), VEC_FROM_ARRAY(B), VEC_FROM_ARRAY(C); + } + else + { + ekfom_data.h_x.block<1, 12>(i,0) << norm_p.x, norm_p.y, norm_p.z, VEC_FROM_ARRAY(A), 0.0, 0.0, 0.0, 0.0, 0.0, 0.0; + } + + /*** Measuremnt: distance to the closest surface/corner ***/ + ekfom_data.h(i) = -norm_p.intensity; + } + solve_time += omp_get_wtime() - solve_start_; +} + +class LaserMappingNode : public rclcpp::Node +{ +public: + LaserMappingNode(const rclcpp::NodeOptions& options = rclcpp::NodeOptions()) : Node("laser_mapping", options) + { + this->declare_parameter("publish.path_en", true); + this->declare_parameter("publish.effect_map_en", false); + this->declare_parameter("publish.map_en", false); + this->declare_parameter("publish.scan_publish_en", true); + this->declare_parameter("publish.dense_publish_en", true); + this->declare_parameter("publish.scan_bodyframe_pub_en", true); + this->declare_parameter("max_iteration", 4); + this->declare_parameter("map_file_path", ""); + this->declare_parameter("common.lid_topic", "/livox/lidar"); + this->declare_parameter("common.imu_topic", "/livox/imu"); + this->declare_parameter("common.time_sync_en", false); + this->declare_parameter("common.time_offset_lidar_to_imu", 0.0); + this->declare_parameter("filter_size_corner", 0.5); + this->declare_parameter("filter_size_surf", 0.5); + this->declare_parameter("filter_size_map", 0.5); + this->declare_parameter("cube_side_length", 200.); + this->declare_parameter("mapping.det_range", 300.); + this->declare_parameter("mapping.fov_degree", 180.); + this->declare_parameter("mapping.gyr_cov", 0.1); + this->declare_parameter("mapping.acc_cov", 0.1); + this->declare_parameter("mapping.b_gyr_cov", 0.0001); + this->declare_parameter("mapping.b_acc_cov", 0.0001); + this->declare_parameter("preprocess.blind", 0.01); + this->declare_parameter("preprocess.lidar_type", AVIA); + this->declare_parameter("preprocess.scan_line", 16); + this->declare_parameter("preprocess.timestamp_unit", US); + this->declare_parameter("preprocess.scan_rate", 10); + this->declare_parameter("point_filter_num", 2); + this->declare_parameter("feature_extract_enable", false); + this->declare_parameter("runtime_pos_log_enable", false); + this->declare_parameter("mapping.extrinsic_est_en", true); + this->declare_parameter("pcd_save.pcd_save_en", false); + this->declare_parameter("pcd_save.interval", -1); + this->declare_parameter>("mapping.extrinsic_T", vector()); + this->declare_parameter>("mapping.extrinsic_R", vector()); + + this->get_parameter_or("publish.path_en", path_en, true); + this->get_parameter_or("publish.effect_map_en", effect_pub_en, false); + this->get_parameter_or("publish.map_en", map_pub_en, false); + this->get_parameter_or("publish.scan_publish_en", scan_pub_en, true); + this->get_parameter_or("publish.dense_publish_en", dense_pub_en, true); + this->get_parameter_or("publish.scan_bodyframe_pub_en", scan_body_pub_en, true); + this->get_parameter_or("max_iteration", NUM_MAX_ITERATIONS, 4); + this->get_parameter_or("map_file_path", map_file_path, ""); + this->get_parameter_or("common.lid_topic", lid_topic, "/livox/lidar"); + this->get_parameter_or("common.imu_topic", imu_topic,"/livox/imu"); + this->get_parameter_or("common.time_sync_en", time_sync_en, false); + this->get_parameter_or("common.time_offset_lidar_to_imu", time_diff_lidar_to_imu, 0.0); + this->get_parameter_or("filter_size_corner",filter_size_corner_min,0.5); + this->get_parameter_or("filter_size_surf",filter_size_surf_min,0.5); + this->get_parameter_or("filter_size_map",filter_size_map_min,0.5); + this->get_parameter_or("cube_side_length",cube_len,200.f); + this->get_parameter_or("mapping.det_range",DET_RANGE,300.f); + this->get_parameter_or("mapping.fov_degree",fov_deg,180.f); + this->get_parameter_or("mapping.gyr_cov",gyr_cov,0.1); + this->get_parameter_or("mapping.acc_cov",acc_cov,0.1); + this->get_parameter_or("mapping.b_gyr_cov",b_gyr_cov,0.0001); + this->get_parameter_or("mapping.b_acc_cov",b_acc_cov,0.0001); + this->get_parameter_or("preprocess.blind", p_pre->blind, 0.01); + this->get_parameter_or("preprocess.lidar_type", p_pre->lidar_type, AVIA); + this->get_parameter_or("preprocess.scan_line", p_pre->N_SCANS, 16); + this->get_parameter_or("preprocess.timestamp_unit", p_pre->time_unit, US); + this->get_parameter_or("preprocess.scan_rate", p_pre->SCAN_RATE, 10); + this->get_parameter_or("point_filter_num", p_pre->point_filter_num, 2); + this->get_parameter_or("feature_extract_enable", p_pre->feature_enabled, false); + this->get_parameter_or("runtime_pos_log_enable", runtime_pos_log, 0); + this->get_parameter_or("mapping.extrinsic_est_en", extrinsic_est_en, true); + this->get_parameter_or("pcd_save.pcd_save_en", pcd_save_en, false); + this->get_parameter_or("pcd_save.interval", pcd_save_interval, -1); + this->get_parameter_or>("mapping.extrinsic_T", extrinT, vector()); + this->get_parameter_or>("mapping.extrinsic_R", extrinR, vector()); + + RCLCPP_INFO(this->get_logger(), "p_pre->lidar_type %d", p_pre->lidar_type); + + path.header.stamp = this->get_clock()->now(); + path.header.frame_id ="lidar_odom"; + + // /*** variables definition ***/ + // int effect_feat_num = 0, frame_num = 0; + // double deltaT, deltaR, aver_time_consu = 0, aver_time_icp = 0, aver_time_match = 0, aver_time_incre = 0, aver_time_solve = 0, aver_time_const_H_time = 0; + // bool flg_EKF_converged, EKF_stop_flg = 0; + + FOV_DEG = (fov_deg + 10.0) > 179.9 ? 179.9 : (fov_deg + 10.0); + HALF_FOV_COS = cos((FOV_DEG) * 0.5 * PI_M / 180.0); + + _featsArray.reset(new PointCloudXYZI()); + + memset(point_selected_surf, true, sizeof(point_selected_surf)); + memset(res_last, -1000.0f, sizeof(res_last)); + downSizeFilterSurf.setLeafSize(filter_size_surf_min, filter_size_surf_min, filter_size_surf_min); + downSizeFilterMap.setLeafSize(filter_size_map_min, filter_size_map_min, filter_size_map_min); + memset(point_selected_surf, true, sizeof(point_selected_surf)); + memset(res_last, -1000.0f, sizeof(res_last)); + + Lidar_T_wrt_IMU<set_extrinsic(Lidar_T_wrt_IMU, Lidar_R_wrt_IMU); + p_imu->set_gyr_cov(V3D(gyr_cov, gyr_cov, gyr_cov)); + p_imu->set_acc_cov(V3D(acc_cov, acc_cov, acc_cov)); + p_imu->set_gyr_bias_cov(V3D(b_gyr_cov, b_gyr_cov, b_gyr_cov)); + p_imu->set_acc_bias_cov(V3D(b_acc_cov, b_acc_cov, b_acc_cov)); + + fill(epsi, epsi+23, 0.001); + kf.init_dyn_share(get_f, df_dx, df_dw, h_share_model, NUM_MAX_ITERATIONS, epsi); + + /*** debug record ***/ + // FILE *fp; + string pos_log_dir = root_dir + "/Log/pos_log.txt"; + fp = fopen(pos_log_dir.c_str(),"w"); + + // ofstream fout_pre, fout_out, fout_dbg; + fout_pre.open(DEBUG_FILE_DIR("mat_pre.txt"),ios::out); + fout_out.open(DEBUG_FILE_DIR("mat_out.txt"),ios::out); + fout_dbg.open(DEBUG_FILE_DIR("dbg.txt"),ios::out); + if (fout_pre && fout_out) + cout << "~~~~"<lidar_type == AVIA) + { + sub_pcl_livox_ = this->create_subscription(lid_topic, 20, livox_pcl_cbk); + } + else + { + sub_pcl_pc_ = this->create_subscription(lid_topic, rclcpp::SensorDataQoS(), standard_pcl_cbk); + } + sub_imu_ = this->create_subscription(imu_topic, 10, imu_cbk); + pubLaserCloudFull_ = this->create_publisher("/cloud_registered", 20); + pubLaserCloudFull_body_ = this->create_publisher("/cloud_registered_body", 20); + pubLaserCloudEffect_ = this->create_publisher("/cloud_effected", 20); + pubLaserCloudMap_ = this->create_publisher("/Laser_map", 20); + pubOdomAftMapped_ = this->create_publisher("/Odometry", 20); + pubPath_ = this->create_publisher("/path", 20); + + tf_buffer_ = std::make_unique(this->get_clock()); + tf_broadcaster_ = std::make_unique(*this); + transform_listener_ = std::make_shared(*tf_buffer_); + //------------------------------------------------------------------------------------------------------ + auto period_ms = std::chrono::milliseconds(static_cast(1000.0 / 100.0)); + timer_ = rclcpp::create_timer(this, this->get_clock(), period_ms, std::bind(&LaserMappingNode::timer_callback, this)); + + auto map_period_ms = std::chrono::milliseconds(static_cast(1000.0)); + map_pub_timer_ = rclcpp::create_timer(this, this->get_clock(), map_period_ms, std::bind(&LaserMappingNode::map_publish_callback, this)); + + map_save_srv_ = this->create_service("map_save", std::bind(&LaserMappingNode::map_save_callback, this, std::placeholders::_1, std::placeholders::_2)); + + RCLCPP_INFO(this->get_logger(), "Node init finished."); + } + + ~LaserMappingNode() + { + fout_out.close(); + fout_pre.close(); + fclose(fp); + } + +private: + void timer_callback() + { + if(sync_packages(Measures)) + { + if (flg_first_scan) + { + first_lidar_time = Measures.lidar_beg_time; + p_imu->first_lidar_time = first_lidar_time; + flg_first_scan = false; + return; + } + + double t0,t1,t2,t3,t4,t5,match_start, solve_start, svd_time; + + match_time = 0; + kdtree_search_time = 0.0; + solve_time = 0; + solve_const_H_time = 0; + svd_time = 0; + t0 = omp_get_wtime(); + + p_imu->Process(Measures, kf, feats_undistort); + state_point = kf.get_x(); + pos_lid = state_point.pos + state_point.rot * state_point.offset_T_L_I; + + if (feats_undistort->empty() || (feats_undistort == NULL)) + { + RCLCPP_WARN(this->get_logger(), "No point, skip this scan!\n"); + return; + } + + flg_EKF_inited = (Measures.lidar_beg_time - first_lidar_time) < INIT_TIME ? \ + false : true; + /*** Segment the map in lidar FOV ***/ + lasermap_fov_segment(); + + /*** downsample the feature points in a scan ***/ + downSizeFilterSurf.setInputCloud(feats_undistort); + downSizeFilterSurf.filter(*feats_down_body); + t1 = omp_get_wtime(); + feats_down_size = feats_down_body->points.size(); + /*** initialize the map kdtree ***/ + if(ikdtree.Root_Node == nullptr) + { + RCLCPP_INFO(this->get_logger(), "Initialize the map kdtree"); + if(feats_down_size > 5) + { + ikdtree.set_downsample_param(filter_size_map_min); + feats_down_world->resize(feats_down_size); + for(int i = 0; i < feats_down_size; i++) + { + pointBodyToWorld(&(feats_down_body->points[i]), &(feats_down_world->points[i])); + } + ikdtree.Build(feats_down_world->points); + } + return; + } + int featsFromMapNum = ikdtree.validnum(); + kdtree_size_st = ikdtree.size(); + + // cout<<"[ mapping ]: In num: "<points.size()<<" downsamp "<get_logger(), "No point, skip this scan!\n"); + return; + } + + normvec->resize(feats_down_size); + feats_down_world->resize(feats_down_size); + + V3D ext_euler = SO3ToEuler(state_point.offset_R_L_I); + fout_pre<clear(); + featsFromMap->points = ikdtree.PCL_Storage; + } + + pointSearchInd_surf.resize(feats_down_size); + Nearest_Points.resize(feats_down_size); + int rematch_num = 0; + bool nearest_search_en = true; // + + t2 = omp_get_wtime(); + + /*** iterated state estimation ***/ + double t_update_start = omp_get_wtime(); + double solve_H_time = 0; + kf.update_iterated_dyn_share_modified(LASER_POINT_COV, solve_H_time); + state_point = kf.get_x(); + euler_cur = SO3ToEuler(state_point.rot); + pos_lid = state_point.pos + state_point.rot * state_point.offset_T_L_I; + geoQuat.x = state_point.rot.coeffs()[0]; + geoQuat.y = state_point.rot.coeffs()[1]; + geoQuat.z = state_point.rot.coeffs()[2]; + geoQuat.w = state_point.rot.coeffs()[3]; + + double t_update_end = omp_get_wtime(); + + /******* Publish odometry *******/ + publish_odometry(pubOdomAftMapped_, tf_broadcaster_, tf_buffer_, this->get_logger()); + /*** add the feature points to map kdtree ***/ + t3 = omp_get_wtime(); + map_incremental(); + t5 = omp_get_wtime(); + + /******* Publish points *******/ + if (path_en) publish_path(pubPath_); + if (scan_pub_en) publish_frame_world(pubLaserCloudFull_); + if (scan_pub_en && scan_body_pub_en) publish_frame_body(pubLaserCloudFull_body_); + if (effect_pub_en) publish_effect_world(pubLaserCloudEffect_); + // if (map_pub_en) publish_map(pubLaserCloudMap_); + + /*** Debug variables ***/ + if (runtime_pos_log) + { + frame_num ++; + kdtree_size_end = ikdtree.size(); + aver_time_consu = aver_time_consu * (frame_num - 1) / frame_num + (t5 - t0) / frame_num; + aver_time_icp = aver_time_icp * (frame_num - 1)/frame_num + (t_update_end - t_update_start) / frame_num; + aver_time_match = aver_time_match * (frame_num - 1)/frame_num + (match_time)/frame_num; + aver_time_incre = aver_time_incre * (frame_num - 1)/frame_num + (kdtree_incremental_time)/frame_num; + aver_time_solve = aver_time_solve * (frame_num - 1)/frame_num + (solve_time + solve_H_time)/frame_num; + aver_time_const_H_time = aver_time_const_H_time * (frame_num - 1)/frame_num + solve_time / frame_num; + T1[time_log_counter] = Measures.lidar_beg_time; + s_plot[time_log_counter] = t5 - t0; + s_plot2[time_log_counter] = feats_undistort->points.size(); + s_plot3[time_log_counter] = kdtree_incremental_time; + s_plot4[time_log_counter] = kdtree_search_time; + s_plot5[time_log_counter] = kdtree_delete_counter; + s_plot6[time_log_counter] = kdtree_delete_time; + s_plot7[time_log_counter] = kdtree_size_st; + s_plot8[time_log_counter] = kdtree_size_end; + s_plot9[time_log_counter] = aver_time_consu; + s_plot10[time_log_counter] = add_point_size; + time_log_counter ++; + printf("[ mapping ]: time: IMU + Map + Input Downsample: %0.6f ave match: %0.6f ave solve: %0.6f ave ICP: %0.6f map incre: %0.6f ave total: %0.6f icp: %0.6f construct H: %0.6f \n",t1-t0,aver_time_match,aver_time_solve,t3-t1,t5-t3,aver_time_consu,aver_time_icp, aver_time_const_H_time); + ext_euler = SO3ToEuler(state_point.offset_R_L_I); + fout_out << setw(20) << Measures.lidar_beg_time - first_lidar_time << " " << euler_cur.transpose() << " " << state_point.pos.transpose()<< " " << ext_euler.transpose() << " "<points.size()<get_logger(), "Saving map to %s...", map_file_path.c_str()); + if (pcd_save_en) + { + save_to_pcd(); + res->success = true; + res->message = "Map saved."; + } + else + { + res->success = false; + res->message = "Map save disabled."; + } + } + +private: + rclcpp::Publisher::SharedPtr pubLaserCloudFull_; + rclcpp::Publisher::SharedPtr pubLaserCloudFull_body_; + rclcpp::Publisher::SharedPtr pubLaserCloudEffect_; + rclcpp::Publisher::SharedPtr pubLaserCloudMap_; + rclcpp::Publisher::SharedPtr pubOdomAftMapped_; + rclcpp::Publisher::SharedPtr pubPath_; + rclcpp::Subscription::SharedPtr sub_imu_; + rclcpp::Subscription::SharedPtr sub_pcl_pc_; + rclcpp::Subscription::SharedPtr sub_pcl_livox_; + + std::unique_ptr tf_buffer_; + std::unique_ptr tf_broadcaster_; + std::shared_ptr transform_listener_; + rclcpp::TimerBase::SharedPtr timer_; + rclcpp::TimerBase::SharedPtr map_pub_timer_; + rclcpp::Service::SharedPtr map_save_srv_; + + bool effect_pub_en = false, map_pub_en = false; + int effect_feat_num = 0, frame_num = 0; + double deltaT, deltaR, aver_time_consu = 0, aver_time_icp = 0, aver_time_match = 0, aver_time_incre = 0, aver_time_solve = 0, aver_time_const_H_time = 0; + bool flg_EKF_converged, EKF_stop_flg = 0; + double epsi[23] = {0.001}; + + FILE *fp; + ofstream fout_pre, fout_out, fout_dbg; +}; + +int main(int argc, char** argv) +{ + rclcpp::init(argc, argv); + + signal(SIGINT, SigHandle); + + rclcpp::spin(std::make_shared()); + + if (rclcpp::ok()) + rclcpp::shutdown(); + /**************** save map ****************/ + /* 1. make sure you have enough memories + /* 2. pcd save will largely influence the real-time performences **/ + if (pcl_wait_save->size() > 0 && pcd_save_en) + { + string file_name = string("scans.pcd"); + string all_points_dir(string(string(ROOT_DIR) + "PCD/") + file_name); + pcl::PCDWriter pcd_writer; + cout << "current scan saved to /PCD/" << file_name< t, s_vec, s_vec2, s_vec3, s_vec4, s_vec5, s_vec6, s_vec7; + FILE *fp2; + string log_dir = root_dir + "/Log/fast_lio_time_log.csv"; + fp2 = fopen(log_dir.c_str(),"w"); + fprintf(fp2,"time_stamp, total time, scan point size, incremental time, search time, delete size, delete time, tree size st, tree size end, add point size, preprocess time\n"); + for (int i = 0;i + +#define RETURN0 0x00 +#define RETURN0AND1 0x10 + +Preprocess::Preprocess() : feature_enabled(0), lidar_type(AVIA), blind(0.01), point_filter_num(1) +{ + inf_bound = 10; + N_SCANS = 6; + SCAN_RATE = 10; + group_size = 8; + disA = 0.01; + disA = 0.1; // B? + p2l_ratio = 225; + limit_maxmid = 6.25; + limit_midmin = 6.25; + limit_maxmin = 3.24; + jump_up_limit = 170.0; + jump_down_limit = 8.0; + cos160 = 160.0; + edgea = 2; + edgeb = 0.1; + smallp_intersect = 172.5; + smallp_ratio = 1.2; + given_offset_time = false; + + jump_up_limit = cos(jump_up_limit / 180 * M_PI); + jump_down_limit = cos(jump_down_limit / 180 * M_PI); + cos160 = cos(cos160 / 180 * M_PI); + smallp_intersect = cos(smallp_intersect / 180 * M_PI); +} + +Preprocess::~Preprocess() +{ +} + +void Preprocess::set(bool feat_en, int lid_type, double bld, int pfilt_num) +{ + feature_enabled = feat_en; + lidar_type = lid_type; + blind = bld; + point_filter_num = pfilt_num; +} + +void Preprocess::process(const livox_ros_driver2::msg::CustomMsg::UniquePtr &msg, PointCloudXYZI::Ptr& pcl_out) +{ + avia_handler(msg); + *pcl_out = pl_surf; +} + +void Preprocess::process(const sensor_msgs::msg::PointCloud2::UniquePtr &msg, PointCloudXYZI::Ptr& pcl_out) +{ + switch (time_unit) + { + case SEC: + time_unit_scale = 1.e3f; + break; + case MS: + time_unit_scale = 1.f; + break; + case US: + time_unit_scale = 1.e-3f; + break; + case NS: + time_unit_scale = 1.e-6f; + break; + default: + time_unit_scale = 1.f; + break; + } + + switch (lidar_type) + { + case OUST64: + oust64_handler(msg); + break; + + case VELO16: + velodyne_handler(msg); + break; + + case MID360: + mid360_handler(msg); + break; + + default: + default_handler(msg); + break; + } + *pcl_out = pl_surf; +} + +void Preprocess::avia_handler(const livox_ros_driver2::msg::CustomMsg::UniquePtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + double t1 = omp_get_wtime(); + int plsize = msg->point_num; + // cout<<"plsie: "<points[i].line < N_SCANS) && + ((msg->points[i].tag & 0x30) == 0x10 || (msg->points[i].tag & 0x30) == 0x00)) + { + pl_full[i].x = msg->points[i].x; + pl_full[i].y = msg->points[i].y; + pl_full[i].z = msg->points[i].z; + pl_full[i].intensity = msg->points[i].reflectivity; + pl_full[i].curvature = + msg->points[i].offset_time / float(1000000); // use curvature as time of each laser points + + bool is_new = false; + if ((abs(pl_full[i].x - pl_full[i - 1].x) > 1e-7) || (abs(pl_full[i].y - pl_full[i - 1].y) > 1e-7) || + (abs(pl_full[i].z - pl_full[i - 1].z) > 1e-7)) + { + pl_buff[msg->points[i].line].push_back(pl_full[i]); + } + } + } + static int count = 0; + static double time = 0.0; + count++; + double t0 = omp_get_wtime(); + for (int j = 0; j < N_SCANS; j++) + { + if (pl_buff[j].size() <= 5) + continue; + pcl::PointCloud& pl = pl_buff[j]; + plsize = pl.size(); + vector& types = typess[j]; + types.clear(); + types.resize(plsize); + plsize--; + for (uint i = 0; i < plsize; i++) + { + types[i].range = sqrt(pl[i].x * pl[i].x + pl[i].y * pl[i].y); + vx = pl[i].x - pl[i + 1].x; + vy = pl[i].y - pl[i + 1].y; + vz = pl[i].z - pl[i + 1].z; + types[i].dista = sqrt(vx * vx + vy * vy + vz * vz); + } + types[plsize].range = sqrt(pl[plsize].x * pl[plsize].x + pl[plsize].y * pl[plsize].y); + give_feature(pl, types); + // pl_surf += pl; + } + time += omp_get_wtime() - t0; + printf("Feature extraction time: %lf \n", time / count); + } + else + { + for (uint i = 1; i < plsize; i++) + { + if ((msg->points[i].line < N_SCANS) && + ((msg->points[i].tag & 0x30) == 0x10 || (msg->points[i].tag & 0x30) == 0x00)) + { + valid_num++; + if (valid_num % point_filter_num == 0) + { + pl_full[i].x = msg->points[i].x; + pl_full[i].y = msg->points[i].y; + pl_full[i].z = msg->points[i].z; + pl_full[i].intensity = msg->points[i].reflectivity; + pl_full[i].curvature = msg->points[i].offset_time / + float(1000000); // use curvature as time of each laser points, curvature unit: ms + + if ((abs(pl_full[i].x - pl_full[i - 1].x) > 1e-7) + || (abs(pl_full[i].y - pl_full[i - 1].y) > 1e-7) + || (abs(pl_full[i].z - pl_full[i - 1].z) > 1e-7) + && (pl_full[i].x * pl_full[i].x + pl_full[i].y * pl_full[i].y + pl_full[i].z * pl_full[i].z > (blind * blind))) + { + pl_surf.push_back(pl_full[i]); + } + } + } + } + } +} + +void Preprocess::oust64_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.size(); + pl_corn.reserve(plsize); + pl_surf.reserve(plsize); + if (feature_enabled) + { + for (int i = 0; i < N_SCANS; i++) + { + pl_buff[i].clear(); + pl_buff[i].reserve(plsize); + } + + for (uint i = 0; i < plsize; i++) + { + double range = pl_orig.points[i].x * pl_orig.points[i].x + pl_orig.points[i].y * pl_orig.points[i].y + + pl_orig.points[i].z * pl_orig.points[i].z; + if (range < (blind * blind)) + continue; + Eigen::Vector3d pt_vec; + PointType added_pt; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + double yaw_angle = atan2(added_pt.y, added_pt.x) * 57.3; + if (yaw_angle >= 180.0) + yaw_angle -= 360.0; + if (yaw_angle <= -180.0) + yaw_angle += 360.0; + + added_pt.curvature = pl_orig.points[i].t * time_unit_scale; + if (pl_orig.points[i].ring < N_SCANS) + { + pl_buff[pl_orig.points[i].ring].push_back(added_pt); + } + } + + for (int j = 0; j < N_SCANS; j++) + { + PointCloudXYZI& pl = pl_buff[j]; + int linesize = pl.size(); + vector& types = typess[j]; + types.clear(); + types.resize(linesize); + linesize--; + for (uint i = 0; i < linesize; i++) + { + types[i].range = sqrt(pl[i].x * pl[i].x + pl[i].y * pl[i].y); + vx = pl[i].x - pl[i + 1].x; + vy = pl[i].y - pl[i + 1].y; + vz = pl[i].z - pl[i + 1].z; + types[i].dista = vx * vx + vy * vy + vz * vz; + } + types[linesize].range = sqrt(pl[linesize].x * pl[linesize].x + pl[linesize].y * pl[linesize].y); + give_feature(pl, types); + } + } + else + { + double time_stamp = rclcpp::Time(msg->header.stamp).seconds(); + // cout << "===================================" << endl; + // printf("Pt size = %d, N_SCANS = %d\r\n", plsize, N_SCANS); + for (int i = 0; i < pl_orig.points.size(); i++) + { + if (i % point_filter_num != 0) + continue; + + double range = pl_orig.points[i].x * pl_orig.points[i].x + pl_orig.points[i].y * pl_orig.points[i].y + + pl_orig.points[i].z * pl_orig.points[i].z; + + if (range < (blind * blind)) + continue; + + Eigen::Vector3d pt_vec; + PointType added_pt; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + added_pt.curvature = pl_orig.points[i].t * time_unit_scale; // curvature unit: ms + + pl_surf.points.push_back(added_pt); + } + } + // pub_func(pl_surf, pub_full, msg->header.stamp); + // pub_func(pl_surf, pub_corn, msg->header.stamp); +} + +void Preprocess::velodyne_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + if (plsize == 0) + return; + pl_surf.reserve(plsize); + + /*** These variables only works when no point timestamps given ***/ + double omega_l = 0.361 * SCAN_RATE; // scan angular velocity + std::vector is_first(N_SCANS, true); + std::vector yaw_fp(N_SCANS, 0.0); // yaw of first scan point + std::vector yaw_last(N_SCANS, 0.0); // yaw of last scan point + std::vector time_last(N_SCANS, 0.0); // last offset time + /*****************************************************************/ + + if (pl_orig.points[plsize - 1].time > 0) + { + given_offset_time = true; + } + else + { + given_offset_time = false; + double yaw_first = atan2(pl_orig.points[0].y, pl_orig.points[0].x) * 57.29578; + double yaw_end = yaw_first; + int layer_first = pl_orig.points[0].ring; + for (uint i = plsize - 1; i > 0; i--) + { + if (pl_orig.points[i].ring == layer_first) + { + yaw_end = atan2(pl_orig.points[i].y, pl_orig.points[i].x) * 57.29578; + break; + } + } + } + + if (feature_enabled) + { + for (int i = 0; i < N_SCANS; i++) + { + pl_buff[i].clear(); + pl_buff[i].reserve(plsize); + } + + for (int i = 0; i < plsize; i++) + { + PointType added_pt; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + int layer = pl_orig.points[i].ring; + if (layer >= N_SCANS) + continue; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.curvature = pl_orig.points[i].time * time_unit_scale; // units: ms + + if (!given_offset_time) + { + double yaw_angle = atan2(added_pt.y, added_pt.x) * 57.2957; + if (is_first[layer]) + { + // printf("layer: %d; is first: %d", layer, is_first[layer]); + yaw_fp[layer] = yaw_angle; + is_first[layer] = false; + added_pt.curvature = 0.0; + yaw_last[layer] = yaw_angle; + time_last[layer] = added_pt.curvature; + continue; + } + + if (yaw_angle <= yaw_fp[layer]) + { + added_pt.curvature = (yaw_fp[layer] - yaw_angle) / omega_l; + } + else + { + added_pt.curvature = (yaw_fp[layer] - yaw_angle + 360.0) / omega_l; + } + + if (added_pt.curvature < time_last[layer]) + added_pt.curvature += 360.0 / omega_l; + + yaw_last[layer] = yaw_angle; + time_last[layer] = added_pt.curvature; + } + + pl_buff[layer].points.push_back(added_pt); + } + + for (int j = 0; j < N_SCANS; j++) + { + PointCloudXYZI& pl = pl_buff[j]; + int linesize = pl.size(); + if (linesize < 2) + continue; + vector& types = typess[j]; + types.clear(); + types.resize(linesize); + linesize--; + for (uint i = 0; i < linesize; i++) + { + types[i].range = sqrt(pl[i].x * pl[i].x + pl[i].y * pl[i].y); + vx = pl[i].x - pl[i + 1].x; + vy = pl[i].y - pl[i + 1].y; + vz = pl[i].z - pl[i + 1].z; + types[i].dista = vx * vx + vy * vy + vz * vz; + } + types[linesize].range = sqrt(pl[linesize].x * pl[linesize].x + pl[linesize].y * pl[linesize].y); + give_feature(pl, types); + } + } + else + { + for (int i = 0; i < plsize; i++) + { + PointType added_pt; + // cout<<"!!!!!!"< (blind * blind)) + { + pl_surf.points.push_back(added_pt); + } + } + } + } +} + +void Preprocess::mid360_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + if (plsize == 0) + return; + pl_surf.reserve(plsize); + + /*** These variables only works when no point timestamps given ***/ + double omega_l = 0.361 * SCAN_RATE; // scan angular velocity + std::vector is_first(N_SCANS, true); + std::vector yaw_fp(N_SCANS, 0.0); // yaw of first scan point + std::vector yaw_last(N_SCANS, 0.0); // yaw of last scan point + std::vector time_last(N_SCANS, 0.0); // last offset time + /*****************************************************************/ + + given_offset_time = false; + double yaw_first = atan2(pl_orig.points[0].y, pl_orig.points[0].x) * 57.29578; + double yaw_end = yaw_first; + int layer_first = pl_orig.points[0].line; + for (uint i = plsize - 1; i > 0; i--) + { + if (pl_orig.points[i].line == layer_first) + { + yaw_end = atan2(pl_orig.points[i].y, pl_orig.points[i].x) * 57.29578; + break; + } + } + + for (uint i = 0; i < plsize; ++i) + { + PointType added_pt; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].reflectivity; + added_pt.curvature = 0.; + + int layer = pl_orig.points[i].line; + double yaw_angle = atan2(added_pt.y, added_pt.x) * 57.2957; + + if (is_first[layer]) + { + // printf("layer: %d; is first: %d", layer, is_first[layer]); + yaw_fp[layer] = yaw_angle; + is_first[layer] = false; + added_pt.curvature = 0.0; + yaw_last[layer] = yaw_angle; + time_last[layer] = added_pt.curvature; + continue; + } + + // compute offset time + if (yaw_angle <= yaw_fp[layer]) + { + added_pt.curvature = (yaw_fp[layer] - yaw_angle) / omega_l; + } + else + { + added_pt.curvature = (yaw_fp[layer] - yaw_angle + 360.0) / omega_l; + } + + if (added_pt.curvature < time_last[layer]) + added_pt.curvature += 360.0 / omega_l; + + yaw_last[layer] = yaw_angle; + time_last[layer] = added_pt.curvature; + + if (added_pt.x * added_pt.x + added_pt.y * added_pt.y + added_pt.z * added_pt.z > (blind * blind)) + { + pl_surf.push_back(std::move(added_pt)); + } + } +} + +void Preprocess::default_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + if (plsize == 0) + return; + pl_surf.reserve(plsize); + + for(uint i = 0; i < plsize; ++i) + { + PointType added_pt; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.curvature = 0.; + + if (added_pt.x * added_pt.x + added_pt.y * added_pt.y + added_pt.z * added_pt.z > (blind * blind)) + { + pl_surf.push_back(std::move(added_pt)); + } + } +} + +void Preprocess::give_feature(pcl::PointCloud& pl, vector& types) +{ + int plsize = pl.size(); + int plsize2; + if (plsize == 0) + { + printf("something wrong\n"); + return; + } + uint head = 0; + + while (types[head].range < blind) + { + head++; + } + + // Surf + plsize2 = (plsize > group_size) ? (plsize - group_size) : 0; + + Eigen::Vector3d curr_direct(Eigen::Vector3d::Zero()); + Eigen::Vector3d last_direct(Eigen::Vector3d::Zero()); + + uint i_nex = 0, i2; + uint last_i = 0; + uint last_i_nex = 0; + int last_state = 0; + int plane_type; + + for (uint i = head; i < plsize2; i++) + { + if (types[i].range < blind) + { + continue; + } + + i2 = i; + + plane_type = plane_judge(pl, types, i, i_nex, curr_direct); + + if (plane_type == 1) + { + for (uint j = i; j <= i_nex; j++) + { + if (j != i && j != i_nex) + { + types[j].ftype = Real_Plane; + } + else + { + types[j].ftype = Poss_Plane; + } + } + + // if(last_state==1 && fabs(last_direct.sum())>0.5) + if (last_state == 1 && last_direct.norm() > 0.1) + { + double mod = last_direct.transpose() * curr_direct; + if (mod > -0.707 && mod < 0.707) + { + types[i].ftype = Edge_Plane; + } + else + { + types[i].ftype = Real_Plane; + } + } + + i = i_nex - 1; + last_state = 1; + } + else // if(plane_type == 2) + { + i = i_nex; + last_state = 0; + } + // else if(plane_type == 0) + // { + // if(last_state == 1) + // { + // uint i_nex_tem; + // uint j; + // for(j=last_i+1; j<=last_i_nex; j++) + // { + // uint i_nex_tem2 = i_nex_tem; + // Eigen::Vector3d curr_direct2; + + // uint ttem = plane_judge(pl, types, j, i_nex_tem, curr_direct2); + + // if(ttem != 1) + // { + // i_nex_tem = i_nex_tem2; + // break; + // } + // curr_direct = curr_direct2; + // } + + // if(j == last_i+1) + // { + // last_state = 0; + // } + // else + // { + // for(uint k=last_i_nex; k<=i_nex_tem; k++) + // { + // if(k != i_nex_tem) + // { + // types[k].ftype = Real_Plane; + // } + // else + // { + // types[k].ftype = Poss_Plane; + // } + // } + // i = i_nex_tem-1; + // i_nex = i_nex_tem; + // i2 = j-1; + // last_state = 1; + // } + + // } + // } + + last_i = i2; + last_i_nex = i_nex; + last_direct = curr_direct; + } + + plsize2 = plsize > 3 ? plsize - 3 : 0; + for (uint i = head + 3; i < plsize2; i++) + { + if (types[i].range < blind || types[i].ftype >= Real_Plane) + { + continue; + } + + if (types[i - 1].dista < 1e-16 || types[i].dista < 1e-16) + { + continue; + } + + Eigen::Vector3d vec_a(pl[i].x, pl[i].y, pl[i].z); + Eigen::Vector3d vecs[2]; + + for (int j = 0; j < 2; j++) + { + int m = -1; + if (j == 1) + { + m = 1; + } + + if (types[i + m].range < blind) + { + if (types[i].range > inf_bound) + { + types[i].edj[j] = Nr_inf; + } + else + { + types[i].edj[j] = Nr_blind; + } + continue; + } + + vecs[j] = Eigen::Vector3d(pl[i + m].x, pl[i + m].y, pl[i + m].z); + vecs[j] = vecs[j] - vec_a; + + types[i].angle[j] = vec_a.dot(vecs[j]) / vec_a.norm() / vecs[j].norm(); + if (types[i].angle[j] < jump_up_limit) + { + types[i].edj[j] = Nr_180; + } + else if (types[i].angle[j] > jump_down_limit) + { + types[i].edj[j] = Nr_zero; + } + } + + types[i].intersect = vecs[Prev].dot(vecs[Next]) / vecs[Prev].norm() / vecs[Next].norm(); + if (types[i].edj[Prev] == Nr_nor && types[i].edj[Next] == Nr_zero && types[i].dista > 0.0225 && + types[i].dista > 4 * types[i - 1].dista) + { + if (types[i].intersect > cos160) + { + if (edge_jump_judge(pl, types, i, Prev)) + { + types[i].ftype = Edge_Jump; + } + } + } + else if (types[i].edj[Prev] == Nr_zero && types[i].edj[Next] == Nr_nor && types[i - 1].dista > 0.0225 && + types[i - 1].dista > 4 * types[i].dista) + { + if (types[i].intersect > cos160) + { + if (edge_jump_judge(pl, types, i, Next)) + { + types[i].ftype = Edge_Jump; + } + } + } + else if (types[i].edj[Prev] == Nr_nor && types[i].edj[Next] == Nr_inf) + { + if (edge_jump_judge(pl, types, i, Prev)) + { + types[i].ftype = Edge_Jump; + } + } + else if (types[i].edj[Prev] == Nr_inf && types[i].edj[Next] == Nr_nor) + { + if (edge_jump_judge(pl, types, i, Next)) + { + types[i].ftype = Edge_Jump; + } + } + else if (types[i].edj[Prev] > Nr_nor && types[i].edj[Next] > Nr_nor) + { + if (types[i].ftype == Nor) + { + types[i].ftype = Wire; + } + } + } + + plsize2 = plsize - 1; + double ratio; + for (uint i = head + 1; i < plsize2; i++) + { + if (types[i].range < blind || types[i - 1].range < blind || types[i + 1].range < blind) + { + continue; + } + + if (types[i - 1].dista < 1e-8 || types[i].dista < 1e-8) + { + continue; + } + + if (types[i].ftype == Nor) + { + if (types[i - 1].dista > types[i].dista) + { + ratio = types[i - 1].dista / types[i].dista; + } + else + { + ratio = types[i].dista / types[i - 1].dista; + } + + if (types[i].intersect < smallp_intersect && ratio < smallp_ratio) + { + if (types[i - 1].ftype == Nor) + { + types[i - 1].ftype = Real_Plane; + } + if (types[i + 1].ftype == Nor) + { + types[i + 1].ftype = Real_Plane; + } + types[i].ftype = Real_Plane; + } + } + } + + int last_surface = -1; + for (uint j = head; j < plsize; j++) + { + if (types[j].ftype == Poss_Plane || types[j].ftype == Real_Plane) + { + if (last_surface == -1) + { + last_surface = j; + } + + if (j == uint(last_surface + point_filter_num - 1)) + { + PointType ap; + ap.x = pl[j].x; + ap.y = pl[j].y; + ap.z = pl[j].z; + ap.intensity = pl[j].intensity; + ap.curvature = pl[j].curvature; + pl_surf.push_back(ap); + + last_surface = -1; + } + } + else + { + if (types[j].ftype == Edge_Jump || types[j].ftype == Edge_Plane) + { + pl_corn.push_back(pl[j]); + } + if (last_surface != -1) + { + PointType ap; + for (uint k = last_surface; k < j; k++) + { + ap.x += pl[k].x; + ap.y += pl[k].y; + ap.z += pl[k].z; + ap.intensity += pl[k].intensity; + ap.curvature += pl[k].curvature; + } + ap.x /= (j - last_surface); + ap.y /= (j - last_surface); + ap.z /= (j - last_surface); + ap.intensity /= (j - last_surface); + ap.curvature /= (j - last_surface); + pl_surf.push_back(ap); + } + last_surface = -1; + } + } +} + +void Preprocess::pub_func(PointCloudXYZI& pl, const rclcpp::Time& ct) +{ + pl.height = 1; + pl.width = pl.size(); + sensor_msgs::msg::PointCloud2 output; + pcl::toROSMsg(pl, output); + output.header.frame_id = "livox"; + output.header.stamp = ct; +} + +int Preprocess::plane_judge(const PointCloudXYZI& pl, vector& types, uint i_cur, uint& i_nex, + Eigen::Vector3d& curr_direct) +{ + double group_dis = disA * types[i_cur].range + disB; + group_dis = group_dis * group_dis; + // i_nex = i_cur; + + double two_dis; + vector disarr; + disarr.reserve(20); + + for (i_nex = i_cur; i_nex < i_cur + group_size; i_nex++) + { + if (types[i_nex].range < blind) + { + curr_direct.setZero(); + return 2; + } + disarr.push_back(types[i_nex].dista); + } + + for (;;) + { + if ((i_cur >= pl.size()) || (i_nex >= pl.size())) + break; + + if (types[i_nex].range < blind) + { + curr_direct.setZero(); + return 2; + } + vx = pl[i_nex].x - pl[i_cur].x; + vy = pl[i_nex].y - pl[i_cur].y; + vz = pl[i_nex].z - pl[i_cur].z; + two_dis = vx * vx + vy * vy + vz * vz; + if (two_dis >= group_dis) + { + break; + } + disarr.push_back(types[i_nex].dista); + i_nex++; + } + + double leng_wid = 0; + double v1[3], v2[3]; + for (uint j = i_cur + 1; j < i_nex; j++) + { + if ((j >= pl.size()) || (i_cur >= pl.size())) + break; + v1[0] = pl[j].x - pl[i_cur].x; + v1[1] = pl[j].y - pl[i_cur].y; + v1[2] = pl[j].z - pl[i_cur].z; + + v2[0] = v1[1] * vz - vy * v1[2]; + v2[1] = v1[2] * vx - v1[0] * vz; + v2[2] = v1[0] * vy - vx * v1[1]; + + double lw = v2[0] * v2[0] + v2[1] * v2[1] + v2[2] * v2[2]; + if (lw > leng_wid) + { + leng_wid = lw; + } + } + + if ((two_dis * two_dis / leng_wid) < p2l_ratio) + { + curr_direct.setZero(); + return 0; + } + + uint disarrsize = disarr.size(); + for (uint j = 0; j < disarrsize - 1; j++) + { + for (uint k = j + 1; k < disarrsize; k++) + { + if (disarr[j] < disarr[k]) + { + leng_wid = disarr[j]; + disarr[j] = disarr[k]; + disarr[k] = leng_wid; + } + } + } + + if (disarr[disarr.size() - 2] < 1e-16) + { + curr_direct.setZero(); + return 0; + } + + if (lidar_type == AVIA) + { + double dismax_mid = disarr[0] / disarr[disarrsize / 2]; + double dismid_min = disarr[disarrsize / 2] / disarr[disarrsize - 2]; + + if (dismax_mid >= limit_maxmid || dismid_min >= limit_midmin) + { + curr_direct.setZero(); + return 0; + } + } + else + { + double dismax_min = disarr[0] / disarr[disarrsize - 2]; + if (dismax_min >= limit_maxmin) + { + curr_direct.setZero(); + return 0; + } + } + + curr_direct << vx, vy, vz; + curr_direct.normalize(); + return 1; +} + +bool Preprocess::edge_jump_judge(const PointCloudXYZI& pl, vector& types, uint i, Surround nor_dir) +{ + if (nor_dir == 0) + { + if (types[i - 1].range < blind || types[i - 2].range < blind) + { + return false; + } + } + else if (nor_dir == 1) + { + if (types[i + 1].range < blind || types[i + 2].range < blind) + { + return false; + } + } + double d1 = types[i + nor_dir - 1].dista; + double d2 = types[i + 3 * nor_dir - 2].dista; + double d; + + if (d1 < d2) + { + d = d1; + d1 = d2; + d2 = d; + } + + d1 = sqrt(d1); + d2 = sqrt(d2); + + if (d1 > edgea * d2 || (d1 - d2) > edgeb) + { + return false; + } + + return true; +} diff --git a/src/rm_localization/FAST_LIO/src/preprocess.h b/src/rm_localization/FAST_LIO/src/preprocess.h new file mode 100644 index 0000000..d4d6ddc --- /dev/null +++ b/src/rm_localization/FAST_LIO/src/preprocess.h @@ -0,0 +1,178 @@ +// #include +#include +#include +#include +#include + +using namespace std; + +#define IS_VALID(a) ((abs(a) > 1e8) ? true : false) + +typedef pcl::PointXYZINormal PointType; +typedef pcl::PointCloud PointCloudXYZI; + +enum LID_TYPE +{ + AVIA = 1, + VELO16, + OUST64, + MID360 +}; //{1, 2, 3} +enum TIME_UNIT +{ + SEC = 0, + MS = 1, + US = 2, + NS = 3 +}; +enum Feature +{ + Nor, + Poss_Plane, + Real_Plane, + Edge_Jump, + Edge_Plane, + Wire, + ZeroPoint +}; +enum Surround +{ + Prev, + Next +}; +enum E_jump +{ + Nr_nor, + Nr_zero, + Nr_180, + Nr_inf, + Nr_blind +}; + +struct orgtype +{ + double range; + double dista; + double angle[2]; + double intersect; + E_jump edj[2]; + Feature ftype; + orgtype() + { + range = 0; + edj[Prev] = Nr_nor; + edj[Next] = Nr_nor; + ftype = Nor; + intersect = 2; + } +}; + +namespace velodyne_ros +{ +struct EIGEN_ALIGN16 Point +{ + PCL_ADD_POINT4D; + float intensity; + float time; + uint16_t ring; + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; +} // namespace velodyne_ros +POINT_CLOUD_REGISTER_POINT_STRUCT(velodyne_ros::Point, + (float, x, x)(float, y, y)(float, z, z)(float, intensity, + intensity)(float, time, time)(uint16_t, ring, + ring)) + +namespace ouster_ros +{ +struct EIGEN_ALIGN16 Point +{ + PCL_ADD_POINT4D; + float intensity; + uint32_t t; + uint16_t reflectivity; + uint8_t ring; + uint16_t ambient; + uint32_t range; + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; +} // namespace ouster_ros + +// clang-format off +POINT_CLOUD_REGISTER_POINT_STRUCT(ouster_ros::Point, + (float, x, x) + (float, y, y) + (float, z, z) + (float, intensity, intensity) + // use std::uint32_t to avoid conflicting with pcl::uint32_t + (std::uint32_t, t, t) + (std::uint16_t, reflectivity, reflectivity) + (std::uint8_t, ring, ring) + (std::uint16_t, ambient, ambient) + (std::uint32_t, range, range) +) + +namespace livox_ros +{ +typedef struct { + float x; /**< X axis, Unit:m */ + float y; /**< Y axis, Unit:m */ + float z; /**< Z axis, Unit:m */ + float reflectivity; /**< Reflectivity */ + uint8_t tag; /**< Livox point tag */ + uint8_t line; /**< Laser line id */ +} LivoxPointXyzrtl; +} +POINT_CLOUD_REGISTER_POINT_STRUCT(livox_ros::LivoxPointXyzrtl, + (float, x, x) + (float, y, y) + (float, z, z) + (float, reflectivity, reflectivity) + (uint8_t, tag, tag) + (uint8_t, line, line) +) + +class Preprocess +{ + public: +// EIGEN_MAKE_ALIGNED_OPERATOR_NEW + + Preprocess(); + ~Preprocess(); + + void process(const livox_ros_driver2::msg::CustomMsg::UniquePtr &msg, PointCloudXYZI::Ptr &pcl_out); + void process(const sensor_msgs::msg::PointCloud2::UniquePtr &msg, PointCloudXYZI::Ptr &pcl_out); + void set(bool feat_en, int lid_type, double bld, int pfilt_num); + + // sensor_msgs::PointCloud2::ConstPtr pointcloud; + PointCloudXYZI pl_full, pl_corn, pl_surf; + PointCloudXYZI pl_buff[128]; //maximum 128 line lidar + vector typess[128]; //maximum 128 line lidar + float time_unit_scale; + int lidar_type, point_filter_num, N_SCANS, SCAN_RATE, time_unit; + double blind; + bool feature_enabled, given_offset_time; + // ros::Publisher pub_full, pub_surf, pub_corn; + +private: + void avia_handler(const livox_ros_driver2::msg::CustomMsg::UniquePtr &msg); + void oust64_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg); + void velodyne_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg); + void mid360_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg); + void default_handler(const sensor_msgs::msg::PointCloud2::UniquePtr &msg); + void give_feature(PointCloudXYZI &pl, vector &types); + void pub_func(PointCloudXYZI &pl, const rclcpp::Time &ct); + int plane_judge(const PointCloudXYZI &pl, vector &types, uint i, uint &i_nex, Eigen::Vector3d &curr_direct); + bool small_plane(const PointCloudXYZI &pl, vector &types, uint i_cur, uint &i_nex, Eigen::Vector3d &curr_direct); + bool edge_jump_judge(const PointCloudXYZI &pl, vector &types, uint i, Surround nor_dir); + + int group_size; + double disA, disB, inf_bound; + double limit_maxmid, limit_midmin, limit_maxmin; + double p2l_ratio; + double jump_up_limit, jump_down_limit; + double cos160; + double edgea, edgeb; + double smallp_intersect, smallp_ratio; + double vx, vy, vz; +}; diff --git a/src/rm_localization/icp_registration/CMakeLists.txt b/src/rm_localization/icp_registration/CMakeLists.txt new file mode 100644 index 0000000..fcc80da --- /dev/null +++ b/src/rm_localization/icp_registration/CMakeLists.txt @@ -0,0 +1,46 @@ +cmake_minimum_required(VERSION 3.8) +project(icp_registration) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +# find dependencies +find_package(ament_cmake_auto REQUIRED) +find_package(PCL REQUIRED QUIET) + +ament_auto_find_build_dependencies() + +ament_auto_add_library(${PROJECT_NAME} SHARED + DIRECTORY src +) +target_link_libraries(${PROJECT_NAME} ${PCL_LIBRARIES}) + +rclcpp_components_register_node(${PROJECT_NAME} + PLUGIN icp::IcpNode + EXECUTABLE ${PROJECT_NAME}_node +) + +# uncomment the following section in order to fill in +# further dependencies manually. +# find_package( REQUIRED) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + # the following line skips the linter which checks for copyrights + # comment the line when a copyright and license is added to all source files + set(ament_cmake_copyright_FOUND TRUE) + # the following line skips cpplint (only works in a git repo) + # comment the line when this package is in a git repo and when + # a copyright and license is added to all source files + set(ament_cmake_cpplint_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + +ament_auto_package( + INSTALL_TO_SHARE + launch + config +) diff --git a/src/rm_localization/icp_registration/config/icp.yaml b/src/rm_localization/icp_registration/config/icp.yaml new file mode 100644 index 0000000..68f4037 --- /dev/null +++ b/src/rm_localization/icp_registration/config/icp.yaml @@ -0,0 +1,15 @@ +/icp_registration: + ros__parameters: + use_sim_time: false + rough_leaf_size: 0.4 + refine_leaf_size: 0.1 + pcd_path: "/home/zcf/Downloads/RMUL.pcd" + map_frame_id: "map" + odom_frame_id: "odom" + laser_frame_id: "livox_frame" + pointcloud_topic: "/livox/lidar/pointcloud" + thresh: 0.1 + xy_offset: 0.2 + yaw_offset: 30.0 + yaw_resolution: 10.0 + initial_pose: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] # x,y,z,roll,pitch,yaw \ No newline at end of file diff --git a/src/rm_localization/icp_registration/include/icp_registration/icp_registration.hpp b/src/rm_localization/icp_registration/include/icp_registration/icp_registration.hpp new file mode 100644 index 0000000..b446e2e --- /dev/null +++ b/src/rm_localization/icp_registration/include/icp_registration/icp_registration.hpp @@ -0,0 +1,90 @@ +#ifndef ICP_REGISTRATION_HPP +#define ICP_REGISTRATION_HPP + +// std +#include +#include + +// ros +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +// pcl +#include +#include +#include + +namespace icp { +using PointType = pcl::PointXYZINormal; +using PointCloudXYZI = pcl::PointCloud; +using PointCloudXYZIN = pcl::PointCloud; + +// Get initial map to odom pose estimation using ICP algorithm +class IcpNode : public rclcpp::Node { +public: + IcpNode(const rclcpp::NodeOptions &options); + ~IcpNode(); +private: + void pointcloudCallback(const sensor_msgs::msg::PointCloud2::SharedPtr msg); + void initialPoseCallback( + const geometry_msgs::msg::PoseWithCovarianceStamped::SharedPtr msg); + + static PointCloudXYZIN::Ptr addNorm(PointCloudXYZI::Ptr cloud); + + // Eigen::Matrix4d align(PointCloudXYZI::Ptr source, + // const Eigen::Matrix4d &init_guess); + + Eigen::Matrix4d multiAlignSync(PointCloudXYZI::Ptr source, + const Eigen::Matrix4d &init_guess); + + // ROS2 part + rclcpp::Subscription::SharedPtr + initial_pose_sub_; + rclcpp::Subscription::SharedPtr + pointcloud_sub_; + // rclcpp::TimerBase::SharedPtr timer_; + std::shared_ptr tf_broadcaster_; + std::shared_ptr tf_buffer_; + std::shared_ptr tf_listener_; + + std::mutex mutex_; + std::unique_ptr tf_publisher_thread_; + + // Voxelfilter used to downsample the pointcloud + pcl::VoxelGrid voxel_rough_filter_; + pcl::VoxelGrid voxel_refine_filter_; + + // ICP + int rough_iter_; + int refine_iter_; + pcl::IterativeClosestPointWithNormals icp_rough_; + pcl::IterativeClosestPointWithNormals icp_refine_; + + // Store + PointCloudXYZI::Ptr cloud_in_; + PointCloudXYZIN::Ptr refine_map_; + PointCloudXYZIN::Ptr rough_map_; + geometry_msgs::msg::TransformStamped map_to_odom_; + std::filesystem::path pcd_path_; + std::string map_frame_id_, odom_frame_id_, range_odom_frame_id_, laser_frame_id_; + bool success_; + double score_; + double thresh_; + double xy_offset_; + double yaw_offset_; + double yaw_resolution_; + geometry_msgs::msg::Pose initial_pose_; + + bool is_ready_; + bool first_scan_; +}; +} // namespace icp +#endif \ No newline at end of file diff --git a/src/rm_localization/icp_registration/launch/icp.launch.py b/src/rm_localization/icp_registration/launch/icp.launch.py new file mode 100644 index 0000000..fba5c7a --- /dev/null +++ b/src/rm_localization/icp_registration/launch/icp.launch.py @@ -0,0 +1,19 @@ +import os +import sys +from ament_index_python.packages import get_package_share_directory +sys.path.append(os.path.join(get_package_share_directory('icp_registration'), 'launch')) + +def generate_launch_description(): + from launch_ros.actions import Node + from launch import LaunchDescription + + params = os.path.join(get_package_share_directory('icp_registration'), 'config', 'icp.yaml') + node = Node( + package='icp_registration', + executable='icp_registration_node', + output='screen', + parameters=[params] + ) + + return LaunchDescription([node]) + \ No newline at end of file diff --git a/src/rm_localization/icp_registration/package.xml b/src/rm_localization/icp_registration/package.xml new file mode 100644 index 0000000..e9dadca --- /dev/null +++ b/src/rm_localization/icp_registration/package.xml @@ -0,0 +1,29 @@ + + + + icp_registration + 0.0.0 + TODO: Package description + zcf + TODO: License declaration + + ament_cmake + + rclcpp + rclcpp_components + sensor_msgs + pcl_conversions + tf2 + tf2_ros + tf2_geometry_msgs + livox_ros_driver2 + eigen + geometry_msgs + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/src/rm_localization/icp_registration/src/icp_registration.cpp b/src/rm_localization/icp_registration/src/icp_registration.cpp new file mode 100644 index 0000000..e5ccba2 --- /dev/null +++ b/src/rm_localization/icp_registration/src/icp_registration.cpp @@ -0,0 +1,387 @@ +#include "icp_registration/icp_registration.hpp" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace icp { + +IcpNode::IcpNode(const rclcpp::NodeOptions &options) + : Node("icp_registration", options), rough_iter_(10), refine_iter_(5), + first_scan_(true) { + is_ready_ = false; + cloud_in_ = + pcl::PointCloud::Ptr(new pcl::PointCloud); + // this->declare_parameter("use_sim_time", false); + double rough_leaf_size = this->declare_parameter("rough_leaf_size", 0.4); + double refine_leaf_size = this->declare_parameter("refine_leaf_size", 0.1); + voxel_rough_filter_.setLeafSize(rough_leaf_size, rough_leaf_size, + rough_leaf_size); + voxel_refine_filter_.setLeafSize(refine_leaf_size, refine_leaf_size, + refine_leaf_size); + + pcd_path_ = this->declare_parameter("pcd_path", std::string("")); + if (!std::filesystem::exists(pcd_path_)) { + RCLCPP_ERROR(this->get_logger(), "Invalid pcd path: %s", pcd_path_.c_str()); + throw std::runtime_error("Invalid pcd path"); + } + // Read the pcd file + pcl::PCDReader reader; + pcl::PointCloud::Ptr cloud( + new pcl::PointCloud); + reader.read(pcd_path_, *cloud); + voxel_refine_filter_.setInputCloud(cloud); + voxel_refine_filter_.filter(*cloud); + + // Add normal to the pointcloud + refine_map_ = addNorm(cloud); + pcl::PointCloud::Ptr point_rough( + new pcl::PointCloud); + pcl::PointCloud::Ptr filterd_point_rough( + new pcl::PointCloud); + pcl::copyPointCloud(*refine_map_, *point_rough); + voxel_rough_filter_.setInputCloud(point_rough); + voxel_rough_filter_.filter(*filterd_point_rough); + rough_map_ = addNorm(filterd_point_rough); + + icp_rough_.setMaximumIterations(rough_iter_); + icp_rough_.setInputTarget(rough_map_); + + icp_refine_.setMaximumIterations(refine_iter_); + icp_refine_.setInputTarget(refine_map_); + + RCLCPP_INFO(this->get_logger(), "pcd point size: %ld, %ld", + refine_map_->size(), rough_map_->size()); + + // Parameters + map_frame_id_ = this->declare_parameter("map_frame_id", std::string("map")); + odom_frame_id_ = + this->declare_parameter("odom_frame_id", std::string("odom")); + range_odom_frame_id_ = + this->declare_parameter("range_odom_frame_id", std::string("lidar_odom")); + laser_frame_id_ = + this->declare_parameter("laser_frame_id", std::string("laser")); + thresh_ = this->declare_parameter("thresh", 0.15); + xy_offset_ = this->declare_parameter("xy_offset", 0.2); + yaw_offset_ = this->declare_parameter("yaw_offset", 30.0) * M_PI / 180.0; + yaw_resolution_ = + this->declare_parameter("yaw_resolution", 10.0) * M_PI / 180.0; + std::vector initial_pose_vec = this->declare_parameter( + "initial_pose", std::vector{0, 0, 0, 0, 0, 0}); + try { + initial_pose_.position.x = initial_pose_vec.at(0); + initial_pose_.position.y = initial_pose_vec.at(1); + initial_pose_.position.z = initial_pose_vec.at(2); + tf2::Quaternion q; + q.setRPY(initial_pose_vec.at(3), initial_pose_vec.at(4), + initial_pose_vec.at(5)); + } catch (const std::out_of_range &ex) { + RCLCPP_ERROR(this->get_logger(), + "initial_pose is not a vector with 6 elements, what():%s", + ex.what()); + } + + // Set up the pointcloud subscriber + std::string pointcloud_topic = this->declare_parameter( + "pointcloud_topic", std::string("/livox/lidar/pointcloud")); + RCLCPP_INFO(this->get_logger(), "pointcloud_topic: %s", + pointcloud_topic.c_str()); + auto qos = rclcpp::QoS(rclcpp::KeepLast(10)); + pointcloud_sub_ = create_subscription( + pointcloud_topic, qos, + std::bind(&IcpNode::pointcloudCallback, this, std::placeholders::_1)); + // Set up the initial pose subscriber + initial_pose_sub_ = + create_subscription( + "/initialpose", qos, + [this](geometry_msgs::msg::PoseWithCovarianceStamped::SharedPtr msg) { + initialPoseCallback(msg); + }); + + // Set up the transform broadcaster + tf_broadcaster_ = std::make_shared(this); + tf_buffer_ = std::make_shared(this->get_clock()); + auto timer_interface = std::make_shared( + this->get_node_base_interface(), this->get_node_timers_interface()); + tf_buffer_->setCreateTimerInterface(timer_interface); + tf_listener_ = std::make_shared(*tf_buffer_); + + // Set up the timer + // timer_ = create_wall_timer(std::chrono::milliseconds(10), [this]() { + // if (is_ready_) { + // map_to_odom_.header.stamp = now(); + // map_to_odom_.header.frame_id = map_frame_id_; + // map_to_odom_.child_frame_id = odom_frame_id_; + // tf_broadcaster_->sendTransform(map_to_odom_); + // } + // }); + + tf_publisher_thread_ = std::make_unique([this]() { + rclcpp::Rate rate(100); + while (rclcpp::ok()) { + { + std::lock_guard lock(mutex_); + if (is_ready_) { + RCLCPP_DEBUG_STREAM(this->get_logger(), + "Publishing tf" + << map_to_odom_.transform.translation.x << " " + << map_to_odom_.transform.translation.y << " " + << map_to_odom_.transform.translation.z); + map_to_odom_.header.stamp = now(); + map_to_odom_.header.frame_id = map_frame_id_; + map_to_odom_.child_frame_id = odom_frame_id_; + tf_broadcaster_->sendTransform(map_to_odom_); + } + } + rate.sleep(); + } + }); + + RCLCPP_INFO(this->get_logger(), "icp_registration initialized"); +} + +IcpNode::~IcpNode() { + if (tf_publisher_thread_->joinable()) { + tf_publisher_thread_->join(); + } +} + +void IcpNode::pointcloudCallback( + const sensor_msgs::msg::PointCloud2::SharedPtr msg) { + pcl::fromROSMsg(*msg, *cloud_in_); + if (first_scan_) { + auto pose_msg = + std::make_shared(); + pose_msg->header = msg->header; + pose_msg->pose.pose = initial_pose_; + initialPoseCallback(pose_msg); + first_scan_ = false; + } +} + +void IcpNode::initialPoseCallback( + const geometry_msgs::msg::PoseWithCovarianceStamped::SharedPtr msg) { + + // Set the initial pose + Eigen::Vector3d pos(msg->pose.pose.position.x, msg->pose.pose.position.y, + msg->pose.pose.position.z); + Eigen::Quaterniond q( + msg->pose.pose.orientation.w, msg->pose.pose.orientation.x, + msg->pose.pose.orientation.y, msg->pose.pose.orientation.z); + Eigen::Matrix4d initial_guess; + initial_guess.block<3, 3>(0, 0) = q.toRotationMatrix(); + initial_guess.block<3, 1>(0, 3) = pos; + initial_guess(3, 3) = 1; + + // Align the pointcloud + RCLCPP_INFO(this->get_logger(), "Aligning the pointcloud"); + Eigen::Matrix4d map_to_laser = multiAlignSync(cloud_in_, initial_guess); + // Eigen::Matrix4d result = align(cloud_in_, initial_guess); + if (!success_) { + map_to_laser = initial_guess; + RCLCPP_ERROR(this->get_logger(), "ICP failed"); + } + + // Eigen::Isometry3d laser_to_odom; + Eigen::Matrix4d laser_to_odom = Eigen::Matrix4d::Identity(); + try { + // Get odom to laser transform + auto transform = + tf_buffer_->lookupTransform(laser_frame_id_, range_odom_frame_id_, now(), + rclcpp::Duration::from_seconds(10)); + // RCLCPP_INFO(get_logger(), "%s", transform.header.frame_id.c_str()); + Eigen::Vector3d t(transform.transform.translation.x, + transform.transform.translation.y, + transform.transform.translation.z); + Eigen::Quaterniond q( + transform.transform.rotation.w, transform.transform.rotation.x, + transform.transform.rotation.y, transform.transform.rotation.z); + // laser_to_odom.prerotate(q); + // laser_to_odom.translate(t); + laser_to_odom.block<3, 3>(0, 0) = q.toRotationMatrix(); + laser_to_odom.block<3, 1>(0, 3) = t; + } catch (tf2::TransformException &ex) { + std::lock_guard lock(mutex_); + RCLCPP_ERROR(this->get_logger(), "%s", ex.what()); + is_ready_ = false; + return; + } + Eigen::Matrix4d result = map_to_laser * laser_to_odom.matrix().cast(); + { + std::lock_guard lock(mutex_); + map_to_odom_.transform.translation.x = result(0, 3); + map_to_odom_.transform.translation.y = result(1, 3); + map_to_odom_.transform.translation.z = result(2, 3); + + Eigen::Matrix3d rotation = result.block<3, 3>(0, 0); + q = Eigen::Quaterniond(rotation); + + map_to_odom_.transform.rotation.w = q.w(); + map_to_odom_.transform.rotation.x = q.x(); + map_to_odom_.transform.rotation.y = q.y(); + map_to_odom_.transform.rotation.z = q.z(); + is_ready_ = true; + } +} + +// Eigen::Matrix4d IcpNode::align(PointCloudXYZI::Ptr source, +// const Eigen::Matrix4d &init_guess) { +// success_ = false; +// // Eigen::Vector3d xyz = init_guess.block<3, 1>(0, 3); + +// pcl::PointCloud::Ptr rough_source( +// new pcl::PointCloud); +// pcl::PointCloud::Ptr refine_source( +// new pcl::PointCloud); + +// voxel_rough_filter_.setInputCloud(source); +// voxel_rough_filter_.filter(*rough_source); +// voxel_refine_filter_.setInputCloud(source); +// voxel_refine_filter_.filter(*refine_source); + +// PointCloudXYZIN::Ptr rough_source_norm = addNorm(rough_source); +// PointCloudXYZIN::Ptr refine_source_norm = addNorm(refine_source); +// PointCloudXYZIN::Ptr align_point(new PointCloudXYZIN); +// auto tic = std::chrono::system_clock::now(); +// icp_rough_.setInputSource(rough_source_norm); +// icp_rough_.align(*align_point, init_guess.cast()); + +// score_ = icp_rough_.getFitnessScore(); +// if (!icp_rough_.hasConverged()) +// return Eigen::Matrix4d::Zero(); + +// icp_refine_.setInputSource(refine_source_norm); +// icp_refine_.align(*align_point, icp_rough_.getFinalTransformation()); +// score_ = icp_refine_.getFitnessScore(); + +// if (!icp_refine_.hasConverged()) +// return Eigen::Matrix4d::Zero(); +// if (score_ > thresh_) +// return Eigen::Matrix4d::Zero(); +// success_ = true; +// auto toc = std::chrono::system_clock::now(); +// std::chrono::duration duration = toc - tic; +// RCLCPP_INFO(this->get_logger(), "align used: %f ms", duration.count() * +// 1000); RCLCPP_INFO(this->get_logger(), "score: %f", score_); + +// return icp_refine_.getFinalTransformation().cast(); +// } + +Eigen::Matrix4d IcpNode::multiAlignSync(PointCloudXYZI::Ptr source, + const Eigen::Matrix4d &init_guess) { + static auto rotate2rpy = [](Eigen::Matrix3d &rot) -> Eigen::Vector3d { + double roll = std::atan2(rot(2, 1), rot(2, 2)); + double pitch = asin(-rot(2, 0)); + double yaw = std::atan2(rot(1, 0), rot(0, 0)); + return Eigen::Vector3d(roll, pitch, yaw); + }; + + success_ = false; + Eigen::Vector3d xyz = init_guess.block<3, 1>(0, 3); + Eigen::Matrix3d rotation = init_guess.block<3, 3>(0, 0); + Eigen::Vector3d rpy = rotate2rpy(rotation); + Eigen::AngleAxisf rollAngle(rpy(0), Eigen::Vector3f::UnitX()); + Eigen::AngleAxisf pitchAngle(rpy(1), Eigen::Vector3f::UnitY()); + std::vector candidates; + Eigen::Matrix4f temp_pose; + + RCLCPP_INFO(this->get_logger(), "initial guess: %f, %f, %f, %f, %f, %f", + xyz(0), xyz(1), xyz(2), rpy(0), rpy(1), rpy(2)); + + for (int i = -1; i <= 1; i++) { + for (int j = -1; j <= 1; j++) { + for (int k = -yaw_offset_; k <= yaw_offset_; k++) { + Eigen::Vector3f pos(xyz(0) + i * xy_offset_, xyz(1) + j * xy_offset_, + xyz(2)); + Eigen::AngleAxisf yawAngle(rpy(2) + k * yaw_resolution_, + Eigen::Vector3f::UnitZ()); + temp_pose.setIdentity(); + temp_pose.block<3, 3>(0, 0) = + (rollAngle * pitchAngle * yawAngle).toRotationMatrix(); + temp_pose.block<3, 1>(0, 3) = pos; + candidates.push_back(temp_pose); + } + } + } + pcl::PointCloud::Ptr rough_source( + new pcl::PointCloud); + pcl::PointCloud::Ptr refine_source( + new pcl::PointCloud); + + voxel_rough_filter_.setInputCloud(source); + voxel_rough_filter_.filter(*rough_source); + voxel_refine_filter_.setInputCloud(source); + voxel_refine_filter_.filter(*refine_source); + + PointCloudXYZIN::Ptr rough_source_norm = addNorm(rough_source); + PointCloudXYZIN::Ptr refine_source_norm = addNorm(refine_source); + PointCloudXYZIN::Ptr align_point(new PointCloudXYZIN); + + Eigen::Matrix4f best_rough_transform; + double best_rough_score = 10.0; + bool rough_converge = false; + auto tic = std::chrono::system_clock::now(); + for (Eigen::Matrix4f &init_pose : candidates) { + icp_rough_.setInputSource(rough_source_norm); + icp_rough_.align(*align_point, init_pose); + if (!icp_rough_.hasConverged()) + continue; + double rough_score = icp_rough_.getFitnessScore(); + if (rough_score > 2 * thresh_) + continue; + if (rough_score < best_rough_score) { + best_rough_score = rough_score; + rough_converge = true; + best_rough_transform = icp_rough_.getFinalTransformation(); + } + } + + if (!rough_converge) + return Eigen::Matrix4d::Zero(); + + icp_refine_.setInputSource(refine_source_norm); + icp_refine_.align(*align_point, best_rough_transform); + score_ = icp_refine_.getFitnessScore(); + + if (!icp_refine_.hasConverged()) + return Eigen::Matrix4d::Zero(); + if (score_ > thresh_) + return Eigen::Matrix4d::Zero(); + success_ = true; + auto toc = std::chrono::system_clock::now(); + std::chrono::duration duration = toc - tic; + RCLCPP_INFO(this->get_logger(), "align used: %f ms", duration.count() * 1000); + RCLCPP_INFO(this->get_logger(), "score: %f", score_); + + return icp_refine_.getFinalTransformation().cast(); +} + +PointCloudXYZIN::Ptr +IcpNode::addNorm(pcl::PointCloud::Ptr cloud) { + pcl::PointCloud::Ptr normals(new pcl::PointCloud); + pcl::search::KdTree::Ptr searchTree( + new pcl::search::KdTree); + searchTree->setInputCloud(cloud); + + pcl::NormalEstimation normalEstimator; + normalEstimator.setInputCloud(cloud); + normalEstimator.setSearchMethod(searchTree); + normalEstimator.setKSearch(15); + normalEstimator.compute(*normals); + PointCloudXYZIN::Ptr out(new PointCloudXYZIN); + pcl::concatenateFields(*cloud, *normals, *out); + return out; +} + +} // namespace icp + +#include "rclcpp_components/register_node_macro.hpp" +RCLCPP_COMPONENTS_REGISTER_NODE(icp::IcpNode) diff --git a/src/rm_localization/point_lio/.gitignore b/src/rm_localization/point_lio/.gitignore new file mode 100644 index 0000000..1f12e58 --- /dev/null +++ b/src/rm_localization/point_lio/.gitignore @@ -0,0 +1,11 @@ +devel/ +build/ +install/ +log/ + +.vscode/ +.cache/ +__pycache__/ +.catkin_workspace +*.gv +*.pdf \ No newline at end of file diff --git a/src/rm_localization/point_lio/CMakeLists.txt b/src/rm_localization/point_lio/CMakeLists.txt new file mode 100755 index 0000000..a48d257 --- /dev/null +++ b/src/rm_localization/point_lio/CMakeLists.txt @@ -0,0 +1,111 @@ +cmake_minimum_required(VERSION 3.8) +project(point_lio) + +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Release) +endif() + +ADD_COMPILE_OPTIONS(-std=c++14) +ADD_COMPILE_OPTIONS(-std=c++14) +set(CMAKE_CXX_FLAGS "-std=c++14 -O3") + +add_definitions(-DROOT_DIR=\"${CMAKE_CURRENT_SOURCE_DIR}/\") + +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fexceptions") +set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -pthread -std=c++0x -std=c++14 -fexceptions") +set(CMAKE_POSITION_INDEPENDENT_CODE ON) + +if(CMAKE_SYSTEM_PROCESSOR MATCHES "(x86)|(X86)|(amd64)|(AMD64)" ) + include(ProcessorCount) + ProcessorCount(N) + if(N GREATER 5) + add_definitions(-DMP_EN) + add_definitions(-DMP_PROC_NUM=4) + elseif(N GREATER 3) + math(EXPR PROC_NUM "${N} - 2") + add_definitions(-DMP_EN) + add_definitions(-DMP_PROC_NUM="${PROC_NUM}") + else() + add_definitions(-DMP_PROC_NUM=1) + endif() +else() + add_definitions(-DMP_PROC_NUM=1) +endif() + +# Find packages +find_package(ament_cmake REQUIRED) +find_package(rclcpp REQUIRED) +find_package(rclpy REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(nav_msgs REQUIRED) +find_package(sensor_msgs REQUIRED) +find_package(visualization_msgs REQUIRED) +find_package(pcl_ros REQUIRED) +find_package(pcl_conversions REQUIRED) +find_package(tf2_ros REQUIRED) +find_package(livox_ros_driver2 REQUIRED) + +find_package(Eigen3 REQUIRED) + + +# OpenMP +find_package(OpenMP QUIET) +if(OPENMP_FOUND) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") +endif() + +find_package(PythonLibs REQUIRED) # Consider using Pybind11 for ROS2 +find_path(MATPLOTLIB_CPP_INCLUDE_DIRS "matplotlibcpp.h") + +include_directories( + include + ${EIGEN3_INCLUDE_DIR} + ${PCL_INCLUDE_DIRS} + ${PYTHON_INCLUDE_DIRS} +) + +link_directories( + include + ${PCL_LIBRARY_DIRS} +) + +# Declare a ROS2 executable +add_executable(pointlio_mapping src/laserMapping.cpp + src/li_initialization.cpp src/parameters.cpp src/preprocess.cpp src/Estimator.cpp + src/IMU_Processing.cpp) + +ament_target_dependencies(pointlio_mapping + rclcpp + rclpy + geometry_msgs + nav_msgs + sensor_msgs + visualization_msgs + pcl_ros + pcl_conversions + tf2_ros + livox_ros_driver2 +) + +target_link_libraries(pointlio_mapping ${PCL_LIBRARIES} ${PYTHON_LIBRARIES}) +target_include_directories(pointlio_mapping PRIVATE ${PYTHON_INCLUDE_DIRS}) + +# Install the executable +install(TARGETS + pointlio_mapping + DESTINATION lib/${PROJECT_NAME} +) + +install( + DIRECTORY config launch rviz_cfg + DESTINATION share/${PROJECT_NAME} +) + +# Export dependencies +ament_export_dependencies(rclcpp rclpy geometry_msgs nav_msgs sensor_msgs pcl_ros pcl_conversions tf2_ros livox_ros_driver2 Eigen3 PCL) + +ament_package() diff --git a/src/rm_localization/point_lio/LICENSE b/src/rm_localization/point_lio/LICENSE new file mode 100755 index 0000000..399a50f --- /dev/null +++ b/src/rm_localization/point_lio/LICENSE @@ -0,0 +1,34 @@ +This is an advanced implementation of the algorithm described in the following paper: + J. Zhang and S. Singh. LOAM: Lidar Odometry and Mapping in Real-time. + Robotics: Science and Systems Conference (RSS). Berkeley, CA, July 2014. + +Modifier: livox dev@livoxtech.com + +Copyright 2013, Ji Zhang, Carnegie Mellon University +Further contributions copyright (c) 2016, Southwest Research Institute +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + diff --git a/src/rm_localization/point_lio/Log/IMU_before_filter.txt b/src/rm_localization/point_lio/Log/IMU_before_filter.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/IMU_meas.txt b/src/rm_localization/point_lio/Log/IMU_meas.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/LiDAR_meas.txt b/src/rm_localization/point_lio/Log/LiDAR_meas.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/Lidar_before_filter.txt b/src/rm_localization/point_lio/Log/Lidar_before_filter.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/Lidar_omg_after_rot.txt b/src/rm_localization/point_lio/Log/Lidar_omg_after_rot.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/acc_cost.txt b/src/rm_localization/point_lio/Log/acc_cost.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/guide.md b/src/rm_localization/point_lio/Log/guide.md new file mode 100755 index 0000000..883b3d4 --- /dev/null +++ b/src/rm_localization/point_lio/Log/guide.md @@ -0,0 +1 @@ +Here saved the debug records which can be drew by the ../log/plot.py. The record function can be found frm the MACRO: DEBUG_FILE_DIR(name) in common_lib.h. diff --git a/src/rm_localization/point_lio/Log/imu.txt b/src/rm_localization/point_lio/Log/imu.txt new file mode 100755 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/imu_pbp.txt b/src/rm_localization/point_lio/Log/imu_pbp.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/mat_out.txt b/src/rm_localization/point_lio/Log/mat_out.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/plot.py b/src/rm_localization/point_lio/Log/plot.py new file mode 100755 index 0000000..b5d1c1a --- /dev/null +++ b/src/rm_localization/point_lio/Log/plot.py @@ -0,0 +1,46 @@ +# import matplotlib +# matplotlib.use('Agg') +import numpy as np +import matplotlib.pyplot as plt + +a_out=np.loadtxt('mat_out.txt') +#######for normal####### +fig, axs = plt.subplots(3,2) +lab_out = ['', 'out-x', 'out-y', 'out-z'] +plot_ind = range(7,10) +time=a_out[:,0] +axs[0,0].set_title('Attitude') +axs[1,0].set_title('Translation') +axs[2,0].set_title('Velocity') +axs[0,1].set_title('bg') +axs[1,1].set_title('ba') +axs[2,1].set_title('Gravity') +for i in range(1,4): + for j in range(6): + axs[j%3, j//3].plot(time, a_out[:,i+j*3],'.-', label=lab_out[i]) + for j in range(6): + axs[j%3, j//3].grid() + axs[j%3, j//3].legend() +plt.grid() + #######for normal####### + + +#### Draw IMU data +#fig, axs = plt.subplots(2) +#imu=np.loadtxt('imu_pbp.txt') +#time=imu[:,0] +#axs[0].set_title('Gyroscope') +#axs[1].set_title('Accelerameter') +#lab_1 = ['gyr-x', 'gyr-y', 'gyr-z'] +#lab_2 = ['acc-x', 'acc-y', 'acc-z'] +#for i in range(3): + #if i==1: +# axs[0].plot(time, imu[:,i+1],'.-', label=lab_1[i]) +# axs[1].plot(time, imu[:,i+4],'.-', label=lab_2[i]) +#for i in range(2): + #axs[i].set_xlim(386,389) +# axs[i].grid() +# axs[i].legend() +#plt.grid() + +plt.show() diff --git a/src/rm_localization/point_lio/Log/plot_imu.py b/src/rm_localization/point_lio/Log/plot_imu.py new file mode 100755 index 0000000..0177273 --- /dev/null +++ b/src/rm_localization/point_lio/Log/plot_imu.py @@ -0,0 +1,125 @@ +# import matplotlib +# matplotlib.use('Agg') +import numpy as np +import matplotlib.pyplot as plt + +#### Draw IMU data +fig, axs = plt.subplots(2) +imu=np.loadtxt('imu_pbp.txt') +time=imu[:,0] +axs[0].set_title('Gyroscope') +axs[1].set_title('Accelerameter') +lab_1 = ['gyr-x', 'gyr-y', 'gyr-z'] +lab_2 = ['acc-x', 'acc-y', 'acc-z'] +for i in range(3): + #if i==1: + axs[0].plot(time, imu[:,i+1],'.-', label=lab_1[i]) + axs[1].plot(time, imu[:,i+4],'.-', label=lab_2[i]) +for i in range(2): + #axs[i].set_xlim(386,389) + axs[i].grid() + axs[i].legend() +plt.grid() + +#fig, axs = plt.subplots(5) +#axs[0].set_title('miss') +#axs[1].set_title('miss') +#axs[2].set_title('miss') +#axs[3].set_title('miss') +#axs[4].set_title('miss') +#len_time1 = np.arange(0,1977) +#len_time2 = np.arange(1977, 3954) +#len_time3 = np.arange(3954,5931) +#len_time4 = np.arange(5931,7908) +#len_time5 = np.arange(7908,9885) + #if i==1: +#axs[0].plot(len_time1, time[0:1977],'.-', label='check') +#axs[1].plot(len_time2, time[1977:3954],'.-', label='check') +#axs[2].plot(len_time3, time[3954:5931],'.-', label='check') +#axs[3].plot(len_time4, time[5931:7908],'.-', label='check') +#axs[4].plot(len_time5, time[7908:9885],'.-', label='check') + #axs[i].set_xlim(386,389) +#axs[0].grid() +#axs[0].legend() +#axs[1].grid() +#axs[1].legend() +#axs[2].grid() +#axs[2].legend() +#axs[3].grid() +#axs[3].legend() +#axs[4].grid() +#axs[4].legend() +#plt.grid() + +#fig, axs = plt.subplots(5) +#axs[0].set_title('miss') +#axs[1].set_title('miss') +#axs[2].set_title('miss') +#axs[3].set_title('miss') +#axs[4].set_title('miss') +#len_time1 = np.arange(9885,9885+1977) +#len_time2 = np.arange(9885+1977,9885+3954) +#len_time3 = np.arange(9885+3954,9885+5931) +#len_time4 = np.arange(9885+5931,9885+7908) +#len_time5 = np.arange(9885+7908,9885+9885) + #if i==1: +#axs[0].plot(len_time1, time[9885+0:9885+1977],'.-', label='check') +#axs[1].plot(len_time2, time[9885+1977:9885+3954],'.-', label='check') +#axs[2].plot(len_time3, time[9885+3954:9885+5931],'.-', label='check') +#axs[3].plot(len_time4, time[9885+5931:9885+7908],'.-', label='check') +#axs[4].plot(len_time5, time[9885+7908:9885+9885],'.-', label='check') + #axs[i].set_xlim(386,389) +#axs[0].grid() +#axs[0].legend() +#axs[1].grid() +#axs[1].legend() +#axs[2].grid() +#axs[2].legend() +#axs[3].grid() +#axs[3].legend() +#axs[4].grid() +#axs[4].legend() +#plt.grid() + +# #### Draw time calculation +# plt.figure(3) +# fig = plt.figure() +# font1 = {'family' : 'Times New Roman', +# 'weight' : 'normal', +# 'size' : 12, +# } +# c="red" +# a_out1=np.loadtxt('Log/mat_out_time_indoor1.txt') +# a_out2=np.loadtxt('Log/mat_out_time_indoor2.txt') +# a_out3=np.loadtxt('Log/mat_out_time_outdoor.txt') +# # n = a_out[:,1].size +# # time_mean = a_out[:,1].mean() +# # time_se = a_out[:,1].std() / np.sqrt(n) +# # time_err = a_out[:,1] - time_mean +# # feat_mean = a_out[:,2].mean() +# # feat_err = a_out[:,2] - feat_mean +# # feat_se = a_out[:,2].std() / np.sqrt(n) +# ax1 = fig.add_subplot(111) +# ax1.set_ylabel('Effective Feature Numbers',font1) +# ax1.boxplot(a_out1[:,2], showfliers=False, positions=[0.9]) +# ax1.boxplot(a_out2[:,2], showfliers=False, positions=[1.9]) +# ax1.boxplot(a_out3[:,2], showfliers=False, positions=[2.9]) +# ax1.set_ylim([0, 3000]) + +# ax2 = ax1.twinx() +# ax2.spines['right'].set_color('red') +# ax2.set_ylabel('Compute Time (ms)',font1) +# ax2.yaxis.label.set_color('red') +# ax2.tick_params(axis='y', colors='red') +# ax2.boxplot(a_out1[:,1]*1000, showfliers=False, positions=[1.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.boxplot(a_out2[:,1]*1000, showfliers=False, positions=[2.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.boxplot(a_out3[:,1]*1000, showfliers=False, positions=[3.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.set_xlim([0.5, 3.5]) +# ax2.set_ylim([0, 100]) + +# plt.xticks([1,2,3], ('Outdoor Scene', 'Indoor Scene 1', 'Indoor Scene 2')) +# # # print(time_se) +# # # print(a_out3[:,2]) +# plt.grid() +# plt.savefig("time.pdf", dpi=1200) +plt.show() diff --git a/src/rm_localization/point_lio/Log/plot_out.py b/src/rm_localization/point_lio/Log/plot_out.py new file mode 100755 index 0000000..8dd80cb --- /dev/null +++ b/src/rm_localization/point_lio/Log/plot_out.py @@ -0,0 +1,178 @@ +# import matplotlib +# matplotlib.use('Agg') +import numpy as np +import matplotlib.pyplot as plt + +# a_pre=np.loadtxt('mat_pre.txt') +a_out=np.loadtxt('mat_out.txt') +if((a_out.shape[1] != 19) & (a_out.shape[1] != 20)): + ######for ikfom + fig, axs = plt.subplots(4,2) + #lab_pre = ['', 'pre-x', 'pre-y', 'pre-z'] + lab_out = ['', 'out-x', 'out-y', 'out-z'] + plot_ind = range(7,10) + time=a_out[:,0] + axs[0,0].set_title('Attitude') + axs[1,0].set_title('Translation') + axs[2,0].set_title('Velocity') + axs[3,0].set_title('Angular velocity') + axs[0,1].set_title('Acceleration') + axs[1,1].set_title('Gravity') + axs[2,1].set_title('bg') + axs[3,1].set_title('ba') + for i in range(1,4): + for j in range(8): + #axs[j%4, j//4].plot(time, a_pre[:,i+j*3],'.-', label=lab_pre[i]) + axs[j%4, j//4].plot(time, a_out[:,i+j*3],'.-', label=lab_out[i]) + for j in range(8): + # axs[j].set_xlim(386,389) + axs[j%4, j//4].grid() + axs[j%4, j//4].legend() + plt.grid() + ######for ikfom####### +else: + #######for normal####### + fig, axs = plt.subplots(3,2) + lab_pre = ['', 'pre-x', 'pre-y', 'pre-z'] + lab_out = ['', 'out-x', 'out-y', 'out-z'] + plot_ind = range(7,10) + time=a_out[:,0] + time1 = a_pre[:,0] + axs[0,0].set_title('Attitude') + axs[1,0].set_title('Translation') + axs[2,0].set_title('Velocity') + axs[0,1].set_title('bg') + axs[1,1].set_title('ba') + axs[2,1].set_title('Gravity') + for i in range(1,4): + for j in range(6): + axs[j%3, j/3].plot(time1, a_pre[:,i+j*3],'.-', label=lab_pre[i]) + axs[j%3, j/3].plot(time, a_out[:,i+j*3],'.-', label=lab_out[i]) + for j in range(6): + # axs[j].set_xlim(386,389) + axs[j%3, j//3].grid() + axs[j%3, j//3].legend() + plt.grid() + #######for normal####### + + +#### Draw IMU data +fig, axs = plt.subplots(2) +imu=np.loadtxt('imu_pbp.txt') +time=imu[:,0] +axs[0].set_title('Gyroscope') +axs[1].set_title('Accelerameter') +lab_1 = ['gyr-x', 'gyr-y', 'gyr-z'] +lab_2 = ['acc-x', 'acc-y', 'acc-z'] +for i in range(3): + #if i==1: + axs[0].plot(time, imu[:,i+1],'.-', label=lab_1[i]) + axs[1].plot(time, imu[:,i+4],'.-', label=lab_2[i]) +for i in range(2): + #axs[i].set_xlim(386,389) + axs[i].grid() + axs[i].legend() +plt.grid() + +#fig, axs = plt.subplots(5) +#axs[0].set_title('miss') +#axs[1].set_title('miss') +#axs[2].set_title('miss') +#axs[3].set_title('miss') +#axs[4].set_title('miss') +#len_time1 = np.arange(0,1977) +#len_time2 = np.arange(1977, 3954) +#len_time3 = np.arange(3954,5931) +#len_time4 = np.arange(5931,7908) +#len_time5 = np.arange(7908,9885) + #if i==1: +#axs[0].plot(len_time1, time[0:1977],'.-', label='check') +#axs[1].plot(len_time2, time[1977:3954],'.-', label='check') +#axs[2].plot(len_time3, time[3954:5931],'.-', label='check') +#axs[3].plot(len_time4, time[5931:7908],'.-', label='check') +#axs[4].plot(len_time5, time[7908:9885],'.-', label='check') + #axs[i].set_xlim(386,389) +#axs[0].grid() +#axs[0].legend() +#axs[1].grid() +#axs[1].legend() +#axs[2].grid() +#axs[2].legend() +#axs[3].grid() +#axs[3].legend() +#axs[4].grid() +#axs[4].legend() +#plt.grid() + +#fig, axs = plt.subplots(5) +#axs[0].set_title('miss') +#axs[1].set_title('miss') +#axs[2].set_title('miss') +#axs[3].set_title('miss') +#axs[4].set_title('miss') +#len_time1 = np.arange(9885,9885+1977) +#len_time2 = np.arange(9885+1977,9885+3954) +#len_time3 = np.arange(9885+3954,9885+5931) +#len_time4 = np.arange(9885+5931,9885+7908) +#len_time5 = np.arange(9885+7908,9885+9885) + #if i==1: +#axs[0].plot(len_time1, time[9885+0:9885+1977],'.-', label='check') +#axs[1].plot(len_time2, time[9885+1977:9885+3954],'.-', label='check') +#axs[2].plot(len_time3, time[9885+3954:9885+5931],'.-', label='check') +#axs[3].plot(len_time4, time[9885+5931:9885+7908],'.-', label='check') +#axs[4].plot(len_time5, time[9885+7908:9885+9885],'.-', label='check') + #axs[i].set_xlim(386,389) +#axs[0].grid() +#axs[0].legend() +#axs[1].grid() +#axs[1].legend() +#axs[2].grid() +#axs[2].legend() +#axs[3].grid() +#axs[3].legend() +#axs[4].grid() +#axs[4].legend() +#plt.grid() + +# #### Draw time calculation +# plt.figure(3) +# fig = plt.figure() +# font1 = {'family' : 'Times New Roman', +# 'weight' : 'normal', +# 'size' : 12, +# } +# c="red" +# a_out1=np.loadtxt('Log/mat_out_time_indoor1.txt') +# a_out2=np.loadtxt('Log/mat_out_time_indoor2.txt') +# a_out3=np.loadtxt('Log/mat_out_time_outdoor.txt') +# # n = a_out[:,1].size +# # time_mean = a_out[:,1].mean() +# # time_se = a_out[:,1].std() / np.sqrt(n) +# # time_err = a_out[:,1] - time_mean +# # feat_mean = a_out[:,2].mean() +# # feat_err = a_out[:,2] - feat_mean +# # feat_se = a_out[:,2].std() / np.sqrt(n) +# ax1 = fig.add_subplot(111) +# ax1.set_ylabel('Effective Feature Numbers',font1) +# ax1.boxplot(a_out1[:,2], showfliers=False, positions=[0.9]) +# ax1.boxplot(a_out2[:,2], showfliers=False, positions=[1.9]) +# ax1.boxplot(a_out3[:,2], showfliers=False, positions=[2.9]) +# ax1.set_ylim([0, 3000]) + +# ax2 = ax1.twinx() +# ax2.spines['right'].set_color('red') +# ax2.set_ylabel('Compute Time (ms)',font1) +# ax2.yaxis.label.set_color('red') +# ax2.tick_params(axis='y', colors='red') +# ax2.boxplot(a_out1[:,1]*1000, showfliers=False, positions=[1.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.boxplot(a_out2[:,1]*1000, showfliers=False, positions=[2.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.boxplot(a_out3[:,1]*1000, showfliers=False, positions=[3.1],boxprops=dict(color=c),capprops=dict(color=c),whiskerprops=dict(color=c)) +# ax2.set_xlim([0.5, 3.5]) +# ax2.set_ylim([0, 100]) + +# plt.xticks([1,2,3], ('Outdoor Scene', 'Indoor Scene 1', 'Indoor Scene 2')) +# # # print(time_se) +# # # print(a_out3[:,2]) +# plt.grid() +# plt.savefig("time.pdf", dpi=1200) +plt.show() diff --git a/src/rm_localization/point_lio/Log/plot_rtk.py b/src/rm_localization/point_lio/Log/plot_rtk.py new file mode 100755 index 0000000..a08e122 --- /dev/null +++ b/src/rm_localization/point_lio/Log/plot_rtk.py @@ -0,0 +1,38 @@ +import numpy as np +import matplotlib.pyplot as plt + +a_grdt=np.loadtxt('pos_rtk.txt') +a_out=np.loadtxt('mat_out.txt') +#######for normal####### +fig, axs = plt.subplots(3,1) +lab_grdt = ['', 'gt-x', 'gt-y', 'gt-z'] +lab_out = ['', 'out-x', 'out-y', 'out-z'] +plot_ind = range(7,10) +time=a_out[:,0] +time1 = a_grdt[:,0] +axs[0].set_title('East [m]') +axs[1].set_title('North [m]') +axs[2].set_title('Up [m]') +for i in range(1,4): + axs[i-1].plot(time1, a_grdt[:,i],'.-', label=lab_grdt[i]) + axs[i-1].plot(time, a_out[:,i+3],'.-', label=lab_out[i]) +for j in range(1,4): + axs[j-1].grid() + axs[j-1].legend() +plt.grid() +#######for normal####### + +fig, axs = plt.subplots(2,1) +axs[0].set_title('clock drift') +lab_1 = ['dt-g', 'dt-r', 'dt-e', 'dt-c'] +for i in range(3): + #if i==1: + axs[0].plot(time, a_out[:,i+13],'.-', label=lab_1[i]) +axs[0].plot(time, a_out[:,19],'.-', label=lab_1[3]) +for i in range(1): + #axs[i].set_xlim(386,389) + axs[i].grid() + axs[i].legend() +plt.grid() + +plt.show() diff --git a/src/rm_localization/point_lio/Log/pos_log.txt b/src/rm_localization/point_lio/Log/pos_log.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/Log/pos_rtk.txt b/src/rm_localization/point_lio/Log/pos_rtk.txt new file mode 100644 index 0000000..74e0dbd --- /dev/null +++ b/src/rm_localization/point_lio/Log/pos_rtk.txt @@ -0,0 +1,13978 @@ + 0 0 0 0 + 0.0999999 0.0102959 -0.0221475 -0.048 + 0.2 0.0308878 -0.0332213 -0.064 + 0.3 0.0308878 -0.0221475 -0.079 + 0.4 0.0617756 -0.0332213 -0.134 + 0.5 0.0617756 -0.0664426 -0.1 + 0.6 0.0720715 -0.0775163 -0.11 + 0.7 0.0617756 -0.0775163 -0.079 + 0.8 0.0823674 -0.0996639 -0.076 + 0.9 0.0823674 -0.0996639 -0.139 + 1 0.0926633 -0.0996639 -0.136 + 1.1 0.0926633 -0.0996639 -0.135 + 1.2 0.0823674 -0.0996639 -0.136 + 1.3 0.0823674 -0.110738 -0.155 + 1.4 0.0720715 -0.121811 -0.118 + 1.5 0.0617756 -0.121811 -0.109 + 1.6 0.0720715 -0.132885 -0.112 + 1.7 0.0720715 -0.166106 -0.065 + 1.8 0.0411837 -0.166106 -0.023 + 1.9 0.0617756 -0.166106 -0.054 + 2 0.0720715 -0.188254 -0.047 + 2.1 0.0720715 -0.188254 -0.062 + 2.2 0.0823674 -0.199328 -0.07 + 2.3 0.0720715 -0.17718 -0.107 + 2.4 0.0617756 -0.17718 -0.104 + 2.5 0.0926633 -0.188254 -0.146 + 2.6 0.133847 -0.17718 -0.24 + 2.7 0.144143 -0.166106 -0.303 + 2.8 0.144143 -0.166106 -0.262 + 2.9 0.154439 -0.166106 -0.32 + 3 0.185327 -0.199328 -0.301 + 3.1 0.175031 -0.188254 -0.321 + 3.2 0.205919 -0.221475 -0.328 + 3.3 0.195623 -0.221475 -0.302 + 3.4 0.175031 -0.232549 -0.248 + 3.5 0.236806 -0.221475 -0.425 + 3.6 0.22651 -0.232549 -0.373 + 3.7 0.247102 -0.254697 -0.364 + 3.8 0.257398 -0.243623 -0.404 + 3.9 0.267694 -0.26577 -0.397 + 4 0.267694 -0.254697 -0.473 + 4.1 0.308878 -0.276844 -0.482 + 4.2 0.308878 -0.26577 -0.523 + 4.3 0.350061 -0.26577 -0.604 + 4.4 0.360357 -0.276844 -0.634 + 4.5 0.370653 -0.254697 -0.691 + 4.6 0.463317 -0.254696 -0.866 + 4.7 0.5045 -0.232549 -0.957 + 4.8 0.5045 -0.210401 -1.049 + 4.9 0.535388 -0.221475 -1.112 + 5 0.576572 -0.210401 -1.158 + 5.1 0.60746 -0.243623 -1.19 + 5.2 0.617756 -0.243623 -1.196 + 5.3 0.638347 -0.243623 -1.263 + 5.4 0.648643 -0.26577 -1.266 + 5.5 0.669235 -0.310065 -1.233 + 5.6 0.689827 -0.298992 -1.308 + 5.7 0.720715 -0.321139 -1.317 + 5.8 0.700123 -0.321139 -1.294 + 5.9 0.741307 -0.332213 -1.371 + 6 0.803082 -0.310065 -1.512 + 6.1 0.803082 -0.321139 -1.495 + 6.2 0.823674 -0.321139 -1.578 + 6.3 0.854562 -0.343287 -1.596 + 6.4 0.895745 -0.321139 -1.699 + 6.5 0.906041 -0.343287 -1.715 + 6.6 0.947225 -0.321139 -1.851 + 6.7 0.967817 -0.310065 -1.906 + 6.8 1.0193 -0.321139 -1.962 + 6.9 1.05018 -0.310065 -2.08 + 7 1.05018 -0.321139 -2.045 + 7.1 1.08107 -0.321139 -2.094 + 7.2 1.10166 -0.332213 -2.124 + 7.3 1.12226 -0.321139 -2.211 + 7.4 1.16344 -0.332213 -2.262 + 7.5 1.17374 -0.321139 -2.305 + 7.6 1.20462 -0.321139 -2.367 + 7.7 1.2561 -0.298991 -2.513 + 7.8 1.24581 -0.310065 -2.49 + 7.9 1.29729 -0.321139 -2.549 + 8 1.30758 -0.310065 -2.592 + 8.1 1.32817 -0.310065 -2.647 + 8.2 1.36936 -0.321139 -2.705 + 8.3 1.35906 -0.310065 -2.695 + 8.4 1.37965 -0.321139 -2.706 + 8.5 1.43113 -0.310065 -2.843 + 8.6 1.44143 -0.310065 -2.887 + 8.7 1.45173 -0.321139 -2.882 + 8.8 1.49291 -0.310065 -2.981 + 8.9 1.47232 -0.298991 -2.977 + 9 1.5135 -0.321139 -3.028 + 9.1 1.5135 -0.310065 -3.043 + 9.2 1.57528 -0.321139 -3.164 + 9.3 1.58557 -0.321139 -3.19 + 9.4 1.59587 -0.298991 -3.216 + 9.5 1.62676 -0.310065 -3.277 + 9.6 1.64735 -0.298991 -3.352 + 9.7 1.66794 -0.287918 -3.411 + 9.8 1.68853 -0.298991 -3.418 + 9.9 1.69883 -0.287918 -3.441 + 10 1.71942 -0.298991 -3.491 + 10.1 1.74001 -0.298991 -3.534 + 10.2 1.72971 -0.287918 -3.56 + 10.3 1.75031 -0.298991 -3.534 + 10.4 1.75031 -0.287918 -3.559 + 10.5 1.79149 -0.298991 -3.622 + 10.6 1.78119 -0.298991 -3.625 + 10.7 1.82238 -0.298991 -3.695 + 10.8 1.83267 -0.298991 -3.724 + 10.9 1.86356 -0.298991 -3.764 + 11 1.84297 -0.298991 -3.752 + 11.1 1.86356 -0.298991 -3.798 + 11.2 1.87386 -0.298991 -3.815 + 11.3 1.89445 -0.310065 -3.838 + 11.4 1.90475 -0.310065 -3.85 + 11.5 1.91504 -0.298991 -3.882 + 11.6 1.92534 -0.321139 -3.917 + 11.7 1.91504 -0.310065 -3.891 + 11.8 1.95622 -0.321139 -3.958 + 11.9 1.95623 -0.321139 -3.937 + 12 1.94593 -0.321139 -3.951 + 12.1 1.99741 -0.310065 -4.044 + 12.2 1.99741 -0.321139 -4.057 + 12.3 2.03859 -0.332213 -4.124 + 12.4 2.018 -0.321139 -4.095 + 12.5 2.03859 -0.343286 -4.098 + 12.6 2.0283 -0.343286 -4.085 + 12.7 2.04889 -0.343286 -4.115 + 12.8 2.05918 -0.343286 -4.145 + 12.9 2.03859 -0.343286 -4.117 + 13 2.07978 -0.343286 -4.184 + 13.1 2.06948 -0.35436 -4.186 + 13.2 2.07978 -0.343286 -4.2 + 13.3 2.10037 -0.343286 -4.233 + 13.4 2.11066 -0.35436 -4.247 + 13.5 2.11066 -0.35436 -4.25 + 13.6 2.12096 -0.343286 -4.298 + 13.7 2.18274 -0.310065 -4.496 + 13.8 2.23421 -0.26577 -4.719 + 13.9 2.32688 -0.221475 -4.983 + 14 2.36806 -0.166106 -5.182 + 14.1 2.41954 -0.143959 -5.385 + 14.2 2.47102 -0.0996636 -5.585 + 14.3 2.54309 -0.0553686 -5.805 + 14.4 2.57398 -0.0110735 -6.004 + 14.5 2.64605 0.0332215 -6.237 + 14.6 2.68723 0.0664427 -6.419 + 14.7 2.73871 0.110738 -6.637 + 14.8 2.87256 0.221475 -7.15 + 14.9 2.97552 0.310065 -7.613 + 15 3.12996 0.420803 -8.151 + 15.1 3.25351 0.53154 -8.654 + 15.2 3.35647 0.631204 -9.121 + 15.3 3.48002 0.719794 -9.567 + 15.4 3.61386 0.819458 -10.081 + 15.5 3.69623 0.919121 -10.488 + 15.6 3.81978 1.00771 -10.961 + 15.7 3.95363 1.11845 -11.464 + 15.8 4.04629 1.20704 -11.875 + 15.9 4.14925 1.29563 -12.308 + 16 4.2625 1.39529 -12.764 + 16.1 4.37576 1.48388 -13.18 + 16.2 4.46842 1.57247 -13.622 + 16.3 4.57138 1.66106 -14.024 + 16.4 4.68464 1.74965 -14.468 + 16.5 4.7773 1.82717 -14.86 + 16.6 4.86996 1.91576 -15.249 + 16.7 4.97292 2.00435 -15.67 + 16.8 5.04499 2.10401 -16.068 + 16.9 5.15825 2.17045 -16.468 + 17 5.25091 2.2369 -16.814 + 17.1 5.33328 2.31441 -17.178 + 17.2 5.43623 2.403 -17.562 + 17.3 5.53919 2.48052 -17.965 + 17.4 5.64215 2.56911 -18.377 + 17.5 5.69363 2.63555 -18.676 + 17.6 5.80688 2.71306 -19.075 + 17.7 5.92014 3.67648 -21.675 + 17.8 5.83777 3.59896 -21.431 + 17.9 5.7657 3.4993 -21.194 + 18 5.67304 3.42178 -20.93 + 18.1 5.61126 3.33319 -20.751 + 18.2 5.54949 3.26675 -20.555 + 18.3 5.44653 3.21138 -20.347 + 18.4 5.38475 3.14494 -20.189 + 18.5 5.31268 3.05635 -19.932 + 18.6 5.23031 2.95669 -19.671 + 18.7 5.48771 4.09728 -22.768 + 18.8 5.58037 4.1305 -22.978 + 18.9 5.67303 4.19694 -23.241 + 19 5.7657 4.28553 -23.535 + 19.1 5.86865 4.38519 -23.897 + 19.2 5.94073 4.45164 -24.189 + 19.3 6.03339 4.51808 -24.453 + 19.4 6.12605 4.58452 -24.728 + 19.5 6.19812 4.65096 -24.98 + 19.6 6.30108 4.72848 -25.297 + 19.7 6.38345 4.78385 -25.522 + 19.8 6.45552 4.82814 -25.709 + 19.9 6.53789 4.90566 -26.004 + 20 6.62025 4.96103 -26.24 + 20.1 6.71291 5.01639 -26.475 + 20.2 6.78499 5.08284 -26.697 + 20.3 6.87765 5.13821 -26.976 + 20.4 6.93942 5.19357 -27.165 + 20.5 7.03209 5.24894 -27.437 + 20.6 7.12475 5.30431 -27.691 + 20.7 7.18652 5.35968 -27.908 + 20.8 7.26889 5.4372 -28.143 + 20.9 7.34096 5.50364 -28.403 + 21 7.40274 5.50364 -28.483 + 21.1 7.4851 5.6033 -28.82 + 21.2 7.56747 5.65867 -29.061 + 21.3 7.62924 5.68082 -29.229 + 21.4 7.71161 5.75833 -29.44 + 21.5 7.80427 5.80263 -29.707 + 21.6 7.83516 5.86907 -29.908 + 21.7 7.92782 5.94658 -30.175 + 21.8 7.99989 6.0241 -30.482 + 21.9 8.11315 6.06839 -30.696 + 22 8.16463 6.09054 -30.8 + 22.1 8.21611 6.14591 -31.03 + 22.2 8.28818 6.20128 -31.248 + 22.3 8.38084 6.25665 -31.489 + 22.4 8.42202 6.31202 -31.677 + 22.5 8.49409 6.35631 -31.826 + 22.6 8.54557 6.4006 -32.037 + 22.7 8.61764 6.43383 -32.212 + 22.8 8.67942 6.50027 -32.394 + 22.9 8.76179 6.54456 -32.647 + 23 8.83386 6.611 -32.868 + 23.1 8.89563 6.6553 -33.065 + 23.2 8.9677 6.72174 -33.333 + 23.3 9.02948 6.77711 -33.513 + 23.4 9.12214 6.83248 -33.784 + 23.5 9.18391 6.87677 -33.972 + 23.6 9.27658 6.93214 -34.207 + 23.7 9.32806 7.00966 -34.466 + 23.8 9.41042 7.05395 -34.688 + 23.9 9.45161 7.10932 -34.883 + 24 9.54427 7.16469 -35.099 + 24.1 9.60604 7.20898 -35.3 + 24.2 9.65752 7.23113 -35.443 + 24.3 9.75018 7.27542 -35.663 + 24.4 9.82225 7.33079 -35.904 + 24.5 9.91492 7.38616 -36.165 + 24.6 9.97669 7.43046 -36.355 + 24.7 10.0488 7.4969 -36.612 + 24.8 10.4812 7.75159 -38.024 + 24.9 10.8827 8.05058 -39.481 + 25 11.1813 8.30527 -40.612 + 25.1 11.3563 8.41601 -41.209 + 25.2 11.5108 8.5046 -41.66 + 25.3 11.6343 8.61533 -42.088 + 25.4 11.7785 8.70392 -42.495 + 25.5 11.9329 8.80359 -43.022 + 25.6 12.0873 8.91432 -43.573 + 25.7 12.3138 9.04721 -44.276 + 25.8 12.4889 9.16902 -44.856 + 25.9 12.6536 9.29083 -45.42 + 26 12.8183 9.39049 -45.933 + 26.1 12.9522 9.45693 -46.307 + 26.2 12.9934 9.49015 -46.415 + 26.3 13.0037 9.49015 -46.39 + 26.4 13.0551 9.49015 -46.466 + 26.5 13.086 9.47908 -46.446 + 26.6 13.1272 9.47908 -46.466 + 26.7 13.1272 9.44586 -46.369 + 26.8 13.0242 9.31297 -45.77 + 26.9 12.8595 9.12472 -44.984 + 27 12.6845 8.94754 -44.165 + 27.1 12.4374 8.73714 -43.11 + 27.2 12.1182 8.44923 -41.792 + 27.3 11.8093 8.12809 -40.336 + 27.4 11.5005 7.82911 -38.96 + 27.5 11.274 7.58549 -37.915 + 27.6 11.0475 7.36401 -36.908 + 27.7 10.8724 7.19791 -36.124 + 27.8 10.7283 7.0318 -35.401 + 27.9 10.5842 6.88785 -34.738 + 28 10.4709 6.69959 -34.012 + 28.1 10.3473 6.54456 -33.381 + 28.2 10.2238 6.40061 -32.717 + 28.3 10.1311 6.31202 -32.34 + 28.4 10.0488 6.13484 -31.729 + 28.5 9.9664 6.03517 -31.281 + 28.6 9.89433 5.99088 -30.994 + 28.7 9.7399 5.82477 -30.296 + 28.8 9.61635 5.75833 -29.811 + 28.9 9.46191 5.6033 -29.123 + 29 9.28688 5.44827 -28.336 + 29.1 9.12215 5.31539 -27.629 + 29.2 8.94712 5.10499 -26.772 + 29.3 8.80298 4.94995 -26.107 + 29.4 8.65884 4.83922 -25.487 + 29.5 8.47351 4.70633 -24.769 + 29.6 8.30878 4.5513 -24.033 + 29.7 8.14405 4.41842 -23.39 + 29.8 8.03079 4.24124 -22.724 + 29.9 7.91754 4.14157 -22.201 + 30 7.82488 4.06406 -21.818 + 30.1 7.7734 4.01976 -21.577 + 30.2 7.70133 3.98654 -21.243 + 30.3 7.55718 3.85366 -20.661 + 30.4 7.42334 3.754 -20.124 + 30.5 7.23801 3.62111 -19.411 + 30.6 7.11446 3.4993 -18.838 + 30.7 6.98062 3.39964 -18.331 + 30.8 6.82618 3.26675 -17.657 + 30.9 6.68204 3.11172 -16.912 + 31 6.5379 3.00098 -16.378 + 31.1 6.41435 2.91239 -15.866 + 31.2 6.30109 2.80166 -15.311 + 31.3 6.17754 2.69092 -14.818 + 31.4 6.09517 2.62448 -14.409 + 31.5 5.98192 2.52481 -13.934 + 31.6 5.88926 2.42515 -13.45 + 31.7 5.81719 2.36978 -13.108 + 31.8 5.70393 2.29227 -12.712 + 31.9 5.64216 2.1926 -12.308 + 32 5.55979 2.11509 -11.965 + 32.1 5.48772 2.05972 -11.605 + 32.2 5.39506 1.97113 -11.224 + 32.3 5.33328 1.92683 -10.947 + 32.4 5.2921 1.84932 -10.643 + 32.5 5.27151 1.79395 -10.474 + 32.6 5.24062 1.76073 -10.27 + 32.7 5.17884 1.72751 -10.039 + 32.8 5.12736 1.68321 -9.817 + 32.9 5.09648 1.62784 -9.616 + 33 5.08618 1.60569 -9.5 + 33.1 5.06559 1.59462 -9.399 + 33.2 5.05529 1.59462 -9.337 + 33.3 5.05529 1.59462 -9.326 + 33.4 5.0347 1.5614 -9.176 + 33.5 5.0244 1.55033 -9.123 + 33.6 4.97293 1.5171 -8.934 + 33.7 4.92145 1.49496 -8.751 + 33.8 4.88026 1.47281 -8.594 + 33.9 4.82878 1.43959 -8.388 + 34 4.7876 1.40637 -8.182 + 34.1 4.73612 1.36207 -7.957 + 34.2 4.69494 1.31778 -7.733 + 34.3 4.64346 1.29563 -7.558 + 34.4 4.59198 1.26241 -7.359 + 34.5 4.5405 1.22919 -7.162 + 34.6 4.50961 1.22919 -7.075 + 34.7 4.48902 1.19597 -6.953 + 34.8 4.46843 1.18489 -6.839 + 34.9 4.43754 1.16274 -6.71 + 35 4.43754 1.15167 -6.647 + 35.1 4.41695 1.12952 -6.535 + 35.2 4.38606 1.10738 -6.398 + 35.3 4.33458 1.06308 -6.213 + 35.4 4.33458 1.06308 -6.141 + 35.5 4.31399 1.04093 -6.046 + 35.6 4.2831 1.00771 -5.915 + 35.7 4.26251 1.00771 -5.838 + 35.8 4.25221 0.985565 -5.732 + 35.9 4.22133 0.996638 -5.69 + 36 4.21103 0.996638 -5.678 + 36.1 4.21103 0.974491 -5.539 + 36.2 4.19044 0.974491 -5.515 + 36.3 4.16985 0.963417 -5.442 + 36.4 4.15955 0.930196 -5.3 + 36.5 4.13896 0.919122 -5.221 + 36.6 4.11837 0.908048 -5.145 + 36.7 4.10807 0.896975 -5.069 + 36.8 3.43884 0.210402 -2.06 + 36.9 3.26381 0.0442954 -1.282 + 37 3.20203 -0.0110734 -1 + 37.1 3.16085 -0.0553685 -0.788001 + 37.2 3.11967 -0.110737 -0.585001 + 37.3 3.08878 -0.132885 -0.453001 + 37.4 3.05789 -0.155032 -0.321001 + 37.5 3.05789 -0.17718 -0.221001 + 37.6 3.01671 -0.199327 -0.0970007 + 37.7 3.00641 -0.232549 0.0249993 + 37.8 2.97552 -0.254696 0.132999 + 37.9 2.96523 -0.276844 0.223999 + 38 2.95493 -0.287918 0.322999 + 38.1 2.94464 -0.287918 0.317999 + 38.2 2.97552 -0.287918 0.310999 + 38.3 2.97552 -0.276844 0.276999 + 38.4 2.98582 -0.26577 0.251999 + 38.5 3.01671 -0.26577 0.204999 + 38.6 3.027 -0.243622 0.172999 + 38.7 3.0373 -0.232549 0.109999 + 38.8 3.07848 -0.221475 0.0469993 + 38.9 3.09907 -0.210401 -0.0200008 + 39 3.11967 -0.188254 -0.113001 + 39.1 3.14026 -0.166106 -0.196001 + 39.2 3.17115 -0.132885 -0.276001 + 39.3 3.20203 -0.132885 -0.341001 + 39.4 3.22263 -0.121811 -0.371001 + 39.5 3.23292 -0.110737 -0.442001 + 39.6 3.25351 -0.0885898 -0.487001 + 39.7 3.2741 -0.0885897 -0.499001 + 39.8 3.2844 -0.0885897 -0.522001 + 39.9 3.2947 -0.077516 -0.514001 + 40 3.2947 -0.0996635 -0.489001 + 40.1 3.30499 -0.0885897 -0.483001 + 40.2 3.2947 -0.0996635 -0.445001 + 40.3 3.2947 -0.0996635 -0.419001 + 40.4 3.30499 -0.110737 -0.399001 + 40.5 3.30499 -0.110737 -0.380001 + 40.6 3.31529 -0.132885 -0.349001 + 40.7 3.30499 -0.121811 -0.313001 + 40.8 3.30499 -0.132885 -0.286001 + 40.9 3.31529 -0.143959 -0.264001 + 41 3.31529 -0.155032 -0.246001 + 41.1 3.31529 -0.155032 -0.215001 + 41.2 3.31529 -0.166106 -0.186001 + 41.3 3.32558 -0.166106 -0.168001 + 41.4 3.31529 -0.17718 -0.112001 + 41.5 3.32558 -0.188254 -0.0690009 + 41.6 3.31529 -0.188254 -0.0660009 + 41.7 3.31529 -0.188254 -0.0360009 + 41.8 3.32558 -0.210401 -0.0120009 + 41.9 3.32558 -0.199327 -8.69204e-07 + 42 3.32558 -0.210401 0.0249991 + 42.1 3.33588 -0.210401 0.0229991 + 42.2 3.33588 -0.210401 0.0479991 + 42.3 3.34618 -0.221475 0.0579991 + 42.4 3.34618 -0.221475 0.0719991 + 42.5 3.34618 -0.221475 0.0989991 + 42.6 3.34618 -0.232549 0.108999 + 42.7 3.33588 -0.221475 0.134999 + 42.8 3.34618 -0.232549 0.124999 + 42.9 3.35647 -0.243622 0.144999 + 43 3.35647 -0.243622 0.179999 + 43.1 3.34618 -0.243622 0.179999 + 43.2 3.36677 -0.254696 0.187999 + 43.3 3.35647 -0.243622 0.229999 + 43.4 3.36677 -0.26577 0.223999 + 43.5 3.36677 -0.26577 0.227999 + 43.6 3.37706 -0.26577 0.256999 + 43.7 3.36677 -0.26577 0.264999 + 43.8 3.37706 -0.26577 0.289999 + 43.9 3.37706 -0.276844 0.282999 + 44 3.38736 -0.276844 0.312999 + 44.1 3.37706 -0.276844 0.321999 + 44.2 3.37706 -0.276844 0.330999 + 44.3 3.38736 -0.276844 0.335999 + 44.4 3.38736 -0.298991 0.356999 + 44.5 3.38736 -0.287917 0.365999 + 44.6 3.39766 -0.287917 0.392999 + 44.7 3.38736 -0.287917 0.364999 + 44.8 3.38736 -0.287917 0.429999 + 44.9 3.37706 -0.298991 0.484999 + 45 3.35647 -0.310065 0.551999 + 45.1 3.33588 -0.310065 0.614999 + 45.2 3.32558 -0.321139 0.687999 + 45.3 3.2947 -0.332213 0.754999 + 45.4 3.2844 -0.343286 0.815999 + 45.5 3.25351 -0.35436 0.904999 + 45.6 3.24322 -0.365434 0.959999 + 45.7 3.21233 -0.365434 1.039 + 45.8 3.17115 -0.376508 1.161 + 45.9 3.12996 -0.387581 1.28 + 46 3.08878 -0.398655 1.385 + 46.1 3.05789 -0.398655 1.499 + 46.2 3.01671 -0.409729 1.598 + 46.3 2.96523 -0.420803 1.683 + 46.4 2.94464 -0.420803 1.795 + 46.5 2.90345 -0.420803 1.86 + 46.6 2.87256 -0.431877 1.956 + 46.7 2.84168 -0.431877 2.033 + 46.8 2.81079 -0.431877 2.106 + 46.9 2.7799 -0.44295 2.187 + 47 2.74901 -0.44295 2.266 + 47.1 2.71813 -0.44295 2.332 + 47.2 2.69753 -0.44295 2.384 + 47.3 2.66665 -0.44295 2.467 + 47.4 2.64605 -0.44295 2.514 + 47.5 2.61517 -0.44295 2.579 + 47.6 2.58428 -0.44295 2.637 + 47.7 2.55339 -0.44295 2.701 + 47.8 2.5328 -0.44295 2.736 + 47.9 2.51221 -0.44295 2.799 + 48 2.49162 -0.442951 2.849 + 48.1 2.46073 -0.442951 2.892 + 48.2 2.44014 -0.442951 2.954 + 48.3 2.41954 -0.442951 2.984 + 48.4 2.39895 -0.431877 3.039 + 48.5 2.37836 -0.431877 3.084 + 48.6 2.35777 -0.442951 3.124 + 48.7 2.34747 -0.431877 3.17 + 48.8 2.32688 -0.431877 3.199 + 48.9 2.30629 -0.431877 3.248 + 49 2.2857 -0.431877 3.297 + 49.1 2.26511 -0.431877 3.319 + 49.2 2.25481 -0.420803 3.361 + 49.3 2.22392 -0.420803 3.399 + 49.4 2.21363 -0.420803 3.435 + 49.5 2.20333 -0.420803 3.474 + 49.6 2.18274 -0.420803 3.508 + 49.7 2.16215 -0.409729 3.534 + 49.8 2.15185 -0.409729 3.551 + 49.9 2.13126 -0.409729 3.595 + 50 2.12096 -0.409729 3.633 + 50.1 2.11067 -0.409729 3.664 + 50.2 2.10037 -0.398656 3.679 + 50.3 2.07978 -0.398656 3.697 + 50.4 2.06948 -0.398656 3.739 + 50.5 2.05919 -0.398656 3.747 + 50.6 2.04889 -0.398656 3.779 + 50.7 2.03859 -0.398656 3.796 + 50.8 2.0283 -0.398656 3.827 + 50.9 2.018 -0.387582 3.85 + 51 2.00771 -0.387582 3.873 + 51.1 1.98712 -0.387582 3.892 + 51.2 1.98712 -0.387582 3.921 + 51.3 1.97682 -0.387582 3.94 + 51.4 1.96652 -0.387582 3.952 + 51.5 1.95623 -0.387582 3.988 + 51.6 1.94593 -0.376508 4.004 + 51.7 1.93564 -0.376508 4.028 + 51.8 1.92534 -0.376508 4.041 + 51.9 1.91504 -0.376508 4.06 + 52 1.90475 -0.376508 4.089 + 52.1 1.89445 -0.365434 4.09 + 52.2 1.88416 -0.365434 4.122 + 52.3 1.88416 -0.365434 4.135 + 52.4 1.86356 -0.365434 4.142 + 52.5 1.86356 -0.354361 4.193 + 52.6 1.85327 -0.354361 4.202 + 52.7 1.84297 -0.354361 4.199 + 52.8 1.83268 -0.343287 4.227 + 52.9 1.83268 -0.343287 4.233 + 53 1.82238 -0.343287 4.249 + 53.1 1.81208 -0.343287 4.264 + 53.2 1.80179 -0.343287 4.289 + 53.3 1.79149 -0.343287 4.297 + 53.4 1.79149 -0.332213 4.327 + 53.5 1.7812 -0.332213 4.341 + 53.6 1.7812 -0.332213 4.338 + 53.7 1.7709 -0.332213 4.368 + 53.8 1.7606 -0.321139 4.385 + 53.9 1.75031 -0.321139 4.391 + 54 1.74001 -0.321139 4.411 + 54.1 1.74001 -0.321139 4.424 + 54.2 1.72972 -0.321139 4.43 + 54.3 1.72972 -0.321139 4.453 + 54.4 1.71942 -0.310065 4.464 + 54.5 1.70913 -0.310065 4.482 + 54.6 1.69883 -0.310065 4.503 + 54.7 1.69883 -0.310065 4.507 + 54.8 1.68853 -0.298992 4.529 + 54.9 1.68853 -0.298992 4.546 + 55 1.67824 -0.298992 4.559 + 55.1 1.67824 -0.298992 4.559 + 55.2 1.66794 -0.298992 4.572 + 55.3 1.65765 -0.298992 4.588 + 55.4 1.64735 -0.287918 4.601 + 55.5 1.64735 -0.287918 4.618 + 55.6 1.64735 -0.287918 4.617 + 55.7 1.63705 -0.287918 4.642 + 55.8 1.62676 -0.276844 4.659 + 55.9 1.62676 -0.276844 4.656 + 56 1.61646 -0.276844 4.677 + 56.1 1.61646 -0.26577 4.696 + 56.2 1.60617 -0.26577 4.694 + 56.3 1.60617 -0.26577 4.704 + 56.4 1.59587 -0.26577 4.722 + 56.5 1.59587 -0.26577 4.74 + 56.6 1.59587 -0.26577 4.724 + 56.7 1.57528 -0.254697 4.747 + 56.8 1.58557 -0.254697 4.767 + 56.9 1.56498 -0.243623 4.765 + 57 1.57528 -0.243623 4.787 + 57.1 1.56498 -0.243623 4.801 + 57.2 1.56498 -0.243623 4.795 + 57.3 1.55469 -0.243623 4.822 + 57.4 1.55469 -0.232549 4.814 + 57.5 1.54439 -0.232549 4.836 + 57.6 1.54439 -0.232549 4.834 + 57.7 1.53409 -0.232549 4.85 + 57.8 1.53409 -0.232549 4.855 + 57.9 1.53409 -0.221475 4.871 + 58 1.53409 -0.221475 4.877 + 58.1 1.5238 -0.221475 4.891 + 58.2 1.5135 -0.221475 4.893 + 58.3 1.5135 -0.221475 4.901 + 58.4 1.50321 -0.221475 4.922 + 58.5 1.50321 -0.210402 4.929 + 58.6 1.50321 -0.210402 4.935 + 58.7 1.49291 -0.199328 4.948 + 58.8 1.49291 -0.199328 4.96 + 58.9 1.49291 -0.199328 4.965 + 59 1.48261 -0.199328 4.972 + 59.1 1.48261 -0.199328 4.988 + 59.2 1.47232 -0.199328 5.001 + 59.3 1.47232 -0.199328 4.996 + 59.4 1.47232 -0.188254 5.022 + 59.5 1.46202 -0.188254 5.028 + 59.6 1.46202 -0.188254 5.038 + 59.7 1.46202 -0.17718 5.045 + 59.8 1.45173 -0.188254 5.048 + 59.9 1.45173 -0.17718 5.067 + 60 1.45173 -0.17718 5.07 + 60.1 1.44143 -0.17718 5.071 + 60.2 1.43114 -0.17718 5.089 + 60.3 1.43114 -0.17718 5.093 + 60.4 1.43114 -0.166107 5.108 + 60.5 1.42084 -0.166107 5.113 + 60.6 1.42084 -0.166107 5.118 + 60.7 1.41054 -0.166107 5.118 + 60.8 1.42084 -0.166107 5.14 + 60.9 1.41054 -0.166107 5.131 + 61 1.41054 -0.166107 5.138 + 61.1 1.41054 -0.166107 5.142 + 61.2 1.41054 -0.166107 5.147 + 61.3 1.41054 -0.155033 5.157 + 61.4 1.40025 -0.155033 5.161 + 61.5 1.40025 -0.166107 5.177 + 61.6 1.38995 -0.166107 5.171 + 61.7 1.38995 -0.155033 5.187 + 61.8 1.37966 -0.155033 5.19 + 61.9 1.38995 -0.155033 5.19 + 62 1.37966 -0.143959 5.202 + 62.1 1.37966 -0.143959 5.217 + 62.2 1.37966 -0.143959 5.228 + 62.3 1.35906 -0.143959 5.221 + 62.4 1.37966 -0.143959 5.233 + 62.5 1.36936 -0.132885 5.248 + 62.6 1.35906 -0.132885 5.256 + 62.7 1.35906 -0.132885 5.265 + 62.8 1.35906 -0.132885 5.284 + 62.9 1.34877 -0.132885 5.287 + 63 1.33847 -0.121811 5.298 + 63.1 1.33847 -0.121811 5.322 + 63.2 1.33847 -0.110738 5.336 + 63.3 1.33847 -0.0996639 5.357 + 63.4 1.31788 -0.0996639 5.367 + 63.5 1.31788 -0.0996639 5.393 + 63.6 1.30758 -0.0885901 5.403 + 63.7 1.29729 -0.0775163 5.423 + 63.8 1.30758 -0.0775163 5.439 + 63.9 1.28699 -0.0664426 5.479 + 64 1.28699 -0.0664426 5.465 + 64.1 1.28699 -0.0553688 5.483 + 64.2 1.2767 -0.0553688 5.516 + 64.3 1.2767 -0.0553688 5.52 + 64.4 1.28699 -0.0553688 5.553 + 64.5 1.2767 -0.0553688 5.608 + 64.6 1.28699 -0.0553688 5.694 + 64.7 1.30758 -0.0553688 5.759 + 64.8 1.30758 -0.0664426 5.887 + 64.9 1.30758 -0.0553688 6.02 + 65 1.30758 -0.0664426 6.142 + 65.1 1.32818 -0.0553688 6.352 + 65.2 1.31788 -0.0553688 6.501 + 65.3 1.32818 -0.0553688 6.706 + 65.4 1.32818 -0.044295 6.916 + 65.5 1.33847 -0.0332213 7.135 + 65.6 1.32818 -0.0332213 7.356 + 65.7 1.33847 -0.0221475 7.617 + 65.8 1.34877 -0.0221475 7.871 + 65.9 1.32818 -0.0110737 8.119 + 66 1.32818 -0.0110737 8.35 + 66.1 1.32818 5.69776e-08 8.618 + 66.2 1.32818 0.0110738 8.859 + 66.3 1.31788 0.0110738 9.12 + 66.4 1.32818 0.0221476 9.371 + 66.5 1.31788 0.0221476 9.64 + 66.6 1.30758 0.0332214 9.851 + 66.7 1.31788 0.0332214 10.084 + 66.8 1.31788 0.0442952 10.302 + 66.9 1.31788 0.0442952 10.504 + 67 1.30758 0.0442952 10.677 + 67.1 1.32818 0.055369 10.851 + 67.2 1.31788 0.055369 10.962 + 67.3 1.32818 0.0442952 11.078 + 67.4 1.32818 0.055369 11.116 + 67.5 1.32818 0.0664427 11.161 + 67.6 1.33847 0.055369 11.2 + 67.7 1.34877 0.055369 11.214 + 67.8 1.33847 0.055369 11.229 + 67.9 1.34877 0.0664428 11.204 + 68 1.33847 0.0664428 11.19 + 68.1 1.34877 0.0664428 11.179 + 68.2 1.34877 0.0775165 11.183 + 68.3 1.35906 0.0664428 11.186 + 68.4 1.36936 0.0664428 11.183 + 68.5 1.35906 0.0664428 11.179 + 68.6 1.35906 0.0664428 11.169 + 68.7 1.36936 0.0664428 11.19 + 68.8 1.36936 0.055369 11.173 + 68.9 1.36936 0.055369 11.185 + 69 1.37966 0.055369 11.175 + 69.1 1.36936 0.055369 11.2 + 69.2 1.36936 0.055369 11.203 + 69.3 1.36936 0.055369 11.215 + 69.4 1.37966 0.055369 11.221 + 69.5 1.36936 0.055369 11.225 + 69.6 1.37966 0.055369 11.226 + 69.7 1.36936 0.055369 11.243 + 69.8 1.36936 0.055369 11.243 + 69.9 1.37966 0.055369 11.254 + 70 1.36936 0.055369 11.258 + 70.1 1.36936 0.055369 11.271 + 70.2 1.36936 0.0664428 11.29 + 70.3 1.35906 0.0664428 11.307 + 70.4 1.35906 0.0664428 11.315 + 70.5 1.35906 0.0664428 11.338 + 70.6 1.35906 0.0664428 11.34 + 70.7 1.34877 0.0664428 11.36 + 70.8 1.34877 0.0664428 11.358 + 70.9 1.34877 0.0664428 11.383 + 71 1.33847 0.0664428 11.408 + 71.1 1.33847 0.0664428 11.409 + 71.2 1.32818 0.0664428 11.419 + 71.3 1.31788 0.0664428 11.453 + 71.4 1.31788 0.0664428 11.454 + 71.5 1.30759 0.0664428 11.471 + 71.6 1.30759 0.0664428 11.48 + 71.7 1.29729 0.0664428 11.491 + 71.8 1.28699 0.0664427 11.492 + 71.9 1.28699 0.0664427 11.521 + 72 1.28699 0.0664427 11.517 + 72.1 1.2767 0.0664427 11.545 + 72.2 1.2767 0.0664427 11.545 + 72.3 1.2664 0.0664427 11.563 + 72.4 1.2664 0.0664427 11.577 + 72.5 1.25611 0.0664427 11.593 + 72.6 1.25611 0.0775165 11.599 + 72.7 1.24581 0.0664427 11.605 + 72.8 1.24581 0.0775165 11.629 + 72.9 1.24581 0.0664427 11.64 + 73 1.23551 0.0775165 11.641 + 73.1 1.24581 0.0775165 11.643 + 73.2 1.23551 0.0775165 11.652 + 73.3 1.24581 0.0775165 11.653 + 73.4 1.23551 0.0775165 11.667 + 73.5 1.24581 0.0775165 11.675 + 73.6 1.23551 0.0775165 11.671 + 73.7 1.24581 0.0775165 11.688 + 73.8 1.24581 0.0775165 11.707 + 73.9 1.24581 0.0775165 11.7 + 74 1.24581 0.0775165 11.717 + 74.1 1.24581 0.0775165 11.725 + 74.2 1.24581 0.0775165 11.719 + 74.3 1.24581 0.0885903 11.737 + 74.4 1.24581 0.0885903 11.752 + 74.5 1.24581 0.0885903 11.741 + 74.6 1.23551 0.0996641 11.78 + 74.7 1.24581 0.0996641 11.774 + 74.8 1.23551 0.110738 11.786 + 74.9 1.23551 0.121812 11.791 + 75 1.23551 0.110738 11.798 + 75.1 1.23551 0.121812 11.8 + 75.2 1.23551 0.121812 11.829 + 75.3 1.22522 0.132885 11.824 + 75.4 1.21492 0.143959 11.822 + 75.5 1.22522 0.143959 11.841 + 75.6 1.22522 0.143959 11.842 + 75.7 1.21492 0.155033 11.83 + 75.8 1.21492 0.155033 11.856 + 75.9 1.21492 0.155033 11.852 + 76 1.21492 0.155033 11.852 + 76.1 1.20463 0.155033 11.854 + 76.2 1.20463 0.166107 11.852 + 76.3 1.20463 0.166107 11.859 + 76.4 1.20463 0.155033 11.86 + 76.5 1.20463 0.155033 11.883 + 76.6 1.21492 0.155033 11.867 + 76.7 1.20463 0.143959 11.866 + 76.8 1.19433 0.155033 11.872 + 76.9 1.19433 0.155033 11.874 + 77 1.19433 0.143959 11.888 + 77.1 1.19433 0.143959 11.873 + 77.2 1.19433 0.143959 11.883 + 77.3 1.18403 0.143959 11.906 + 77.4 1.19433 0.143959 11.898 + 77.5 1.18403 0.143959 11.907 + 77.6 1.18403 0.143959 11.917 + 77.7 1.17374 0.155033 11.91 + 77.8 1.17374 0.143959 11.916 + 77.9 1.17374 0.143959 11.927 + 78 1.17374 0.143959 11.927 + 78.1 1.18403 0.143959 11.926 + 78.2 1.17374 0.143959 11.932 + 78.3 1.17374 0.132885 11.935 + 78.4 1.17374 0.143959 11.937 + 78.5 1.18403 0.132885 11.942 + 78.6 1.17374 0.132885 11.951 + 78.7 1.17374 0.132885 11.944 + 78.8 1.17374 0.132885 11.955 + 78.9 1.17374 0.132885 11.968 + 79 1.17374 0.132885 11.966 + 79.1 1.17374 0.132885 11.96 + 79.2 1.17374 0.132885 11.989 + 79.3 1.17374 0.132885 11.986 + 79.4 1.16344 0.143959 11.99 + 79.5 1.16344 0.143959 11.99 + 79.6 1.16344 0.143959 11.997 + 79.7 1.16344 0.143959 11.998 + 79.8 1.16344 0.143959 11.993 + 79.9 1.16344 0.143959 12.003 + 80 1.16344 0.143959 12 + 80.1 1.16344 0.143959 12.002 + 80.2 1.16344 0.155033 11.997 + 80.3 1.16344 0.143959 12.012 + 80.4 1.16344 0.155033 11.996 + 80.5 1.16344 0.155033 11.999 + 80.6 1.17374 0.155033 12.011 + 80.7 1.17374 0.155033 11.988 + 80.8 1.17374 0.155033 12.006 + 80.9 1.18403 0.155033 12.007 + 81 1.17374 0.155033 12 + 81.1 1.18403 0.155033 12.02 + 81.2 1.17374 0.155033 12.012 + 81.3 1.18403 0.155033 12.007 + 81.4 1.18403 0.155033 12.013 + 81.5 1.18403 0.155033 12.016 + 81.6 1.19433 0.155033 12.009 + 81.7 1.19433 0.143959 12.018 + 81.8 1.19433 0.143959 12.02 + 81.9 1.19433 0.155033 12.015 + 82 1.19433 0.143959 12.015 + 82.1 1.19433 0.143959 12.022 + 82.2 1.19433 0.143959 12.014 + 82.3 1.19433 0.155033 12.008 + 82.4 1.19433 0.155033 12.026 + 82.5 1.20463 0.155033 12.012 + 82.6 1.19433 0.155033 12.025 + 82.7 1.18403 0.155033 12.011 + 82.8 1.19433 0.155033 12.014 + 82.9 1.19433 0.155033 12.012 + 83 1.19433 0.155033 12.013 + 83.1 1.18403 0.155033 12.01 + 83.2 1.19433 0.155033 12.019 + 83.3 1.18403 0.155033 12.029 + 83.4 1.18403 0.166107 12.019 + 83.5 1.18403 0.155033 12.018 + 83.6 1.18403 0.166107 12.031 + 83.7 1.17374 0.166107 12.022 + 83.8 1.17374 0.166107 12.043 + 83.9 1.17374 0.166107 12.027 + 84 1.17374 0.166107 12.046 + 84.1 1.18403 0.155033 12.039 + 84.2 1.19433 0.143959 12.036 + 84.3 1.19433 0.121812 12.048 + 84.4 1.21492 0.0996641 12.047 + 84.5 1.23551 0.055369 12.038 + 84.6 1.2664 0.0221476 12.056 + 84.7 1.29729 -0.0332213 12.05 + 84.8 1.33847 -0.099664 12.061 + 84.9 1.38995 -0.188254 12.059 + 85 1.44143 -0.276845 12.058 + 85.1 1.49291 -0.365435 12.067 + 85.2 1.56498 -0.476173 12.053 + 85.3 1.62676 -0.58691 12.076 + 85.4 1.70913 -0.719796 12.075 + 85.5 1.79149 -0.852681 12.074 + 85.6 1.88416 -0.985567 12.08 + 85.7 1.97682 -1.1406 12.076 + 85.8 2.07978 -1.30671 12.083 + 85.9 2.18274 -1.48389 12.088 + 86 2.296 -1.66107 12.069 + 86.1 2.41955 -1.8604 12.069 + 86.2 2.5431 -2.0708 12.07 + 86.3 2.66665 -2.2812 12.069 + 86.4 2.81079 -2.50267 12.077 + 86.5 2.95494 -2.73522 12.059 + 86.6 3.09908 -2.97885 12.073 + 86.7 3.24322 -3.2114 12.068 + 86.8 3.39766 -3.46609 12.052 + 86.9 3.5624 -3.72079 12.055 + 87 3.72713 -3.98656 12.066 + 87.1 3.89187 -4.25233 12.055 + 87.2 4.0669 -4.52918 12.073 + 87.3 4.23164 -4.80602 12.067 + 87.4 4.41696 -5.09394 12.065 + 87.5 4.5817 -5.38186 12.062 + 87.6 4.75673 -5.68085 12.067 + 87.7 4.94206 -5.97984 12.067 + 87.8 5.11709 -6.27883 12.078 + 87.9 5.31271 -6.57783 12.082 + 88 5.48774 -6.88789 12.09 + 88.1 5.68337 -7.19796 12.072 + 88.2 5.86869 -7.50802 12.093 + 88.3 6.06432 -7.81809 12.091 + 88.4 6.23935 -8.12816 12.093 + 88.5 6.42467 -8.43822 12.117 + 88.6 6.58941 -8.72614 12.089 + 88.7 6.72326 -8.95869 12.069 + 88.8 6.8571 -9.20231 12.078 + 88.9 7.00125 -9.42379 12.066 + 89 7.09391 -9.60097 12.067 + 89.1 7.18658 -9.756 12.074 + 89.2 7.25865 -9.87781 12.078 + 89.3 7.32042 -9.97748 12.068 + 89.4 7.36161 -10.055 12.079 + 89.5 7.40279 -10.1104 12.075 + 89.6 7.43368 -10.1657 12.092 + 89.7 7.45427 -10.21 12.097 + 89.8 7.50575 -10.2543 12.084 + 89.9 7.51605 -10.2875 12.127 + 90 7.53664 -10.3097 12.126 + 90.1 7.54693 -10.3208 12.124 + 90.2 7.56753 -10.3429 12.126 + 90.3 7.57782 -10.3651 12.138 + 90.4 7.58812 -10.3651 12.125 + 90.5 7.58812 -10.3761 12.118 + 90.6 7.58812 -10.3761 12.11 + 90.7 7.58812 -10.3761 12.126 + 90.8 7.59841 -10.3761 12.149 + 90.9 7.58812 -10.3761 12.142 + 91 7.57782 -10.3651 12.126 + 91.1 7.56753 -10.354 12.151 + 91.2 7.54693 -10.3429 12.145 + 91.3 7.52634 -10.3208 12.157 + 91.4 7.50575 -10.2765 12.141 + 91.5 7.47486 -10.2432 12.162 + 91.6 7.44397 -10.199 12.158 + 91.7 7.40279 -10.1547 12.167 + 91.8 7.34101 -10.0771 12.17 + 91.9 7.29983 -10.0107 12.184 + 92 7.23806 -9.92211 12.15 + 92.1 7.16598 -9.83352 12.172 + 92.2 7.1145 -9.72278 12.165 + 92.3 7.03214 -9.61204 12.162 + 92.4 6.94977 -9.51238 12.165 + 92.5 6.8674 -9.36842 12.178 + 92.6 6.78503 -9.23553 12.162 + 92.7 6.68207 -9.09157 12.16 + 92.8 6.57911 -8.93654 12.17 + 92.9 6.48645 -8.78151 12.17 + 93 6.38349 -8.60433 12.179 + 93.1 6.27024 -8.42715 12.163 + 93.2 6.15698 -8.23889 12.169 + 93.3 6.02313 -8.03957 12.153 + 93.4 5.90988 -7.82916 12.152 + 93.5 5.77603 -7.60769 12.172 + 93.6 5.64218 -7.38621 12.155 + 93.7 5.50833 -7.15366 12.172 + 93.8 5.36419 -6.91004 12.148 + 93.9 5.22005 -6.66642 12.164 + 94 5.06561 -6.40065 12.168 + 94.1 4.91117 -6.14595 12.171 + 94.2 4.74643 -5.8691 12.165 + 94.3 4.5817 -5.59226 12.179 + 94.4 4.40667 -5.29327 12.167 + 94.5 4.23164 -5.00535 12.171 + 94.6 4.0566 -4.70636 12.169 + 94.7 3.87128 -4.40737 12.174 + 94.8 3.67565 -4.08623 12.181 + 94.9 3.49033 -3.78723 12.192 + 95 3.305 -3.46609 12.176 + 95.1 3.10938 -3.13388 12.205 + 95.2 2.90346 -2.81274 12.193 + 95.3 2.68724 -2.46945 12.184 + 95.4 2.49162 -2.14831 12.197 + 95.5 2.2857 -1.80503 12.205 + 95.6 2.05919 -1.47281 12.211 + 95.7 1.84297 -1.12953 12.219 + 95.8 1.62676 -0.786239 12.222 + 95.9 1.41054 -0.442951 12.207 + 96 1.20463 -0.0775164 12.214 + 96.1 0.988411 0.276845 12.21 + 96.2 0.7619 0.642279 12.207 + 96.3 0.545685 1.00771 12.22 + 96.4 0.319174 1.38422 12.218 + 96.5 0.113255 1.76073 12.197 + 96.6 -0.123551 2.14831 12.222 + 96.7 -0.350062 2.52482 12.218 + 96.8 -0.566277 2.91241 12.22 + 96.9 -0.803084 3.29999 12.215 + 97 -1.02959 3.70972 12.24 + 97.1 -1.2664 4.10837 12.234 + 97.2 -1.50321 4.50703 12.224 + 97.3 -1.72972 4.91676 12.236 + 97.4 -1.97682 5.31542 12.228 + 97.5 -2.21363 5.72515 12.229 + 97.6 -2.45043 6.14595 12.23 + 97.7 -2.68724 6.55568 12.224 + 97.8 -2.93434 6.96541 12.223 + 97.9 -3.17115 7.38621 12.214 + 98 -3.41825 7.80702 12.23 + 98.1 -3.64476 8.22782 12.224 + 98.2 -3.90216 8.63755 12.225 + 98.3 -4.14926 9.05836 12.223 + 98.4 -4.39637 9.47916 12.231 + 98.5 -4.64347 9.89996 12.213 + 98.6 -4.89057 10.3208 12.224 + 98.7 -5.12738 10.7305 12.231 + 98.8 -5.36418 11.1402 12.228 + 98.9 -5.5701 11.5057 12.231 + 99 -5.73484 11.8379 12.16 + 99.1 -5.94076 12.1812 12.155 + 99.2 -6.10549 12.4469 12.155 + 99.3 -6.24963 12.6906 12.158 + 99.4 -6.38348 12.8788 12.132 + 99.5 -6.48644 13.056 12.176 + 99.6 -6.5894 13.2 12.132 + 99.7 -6.66147 13.3107 12.123 + 99.8 -6.72325 13.3993 12.117 + 99.9 -6.77473 13.4768 12.117 + 100 -6.81591 13.5543 12.126 + 100.1 -6.8468 13.6097 12.143 + 100.2 -6.87769 13.6651 12.143 + 100.3 -6.88798 13.6983 12.163 + 100.4 -6.89828 13.7315 12.175 + 100.5 -6.89828 13.7647 12.181 + 100.6 -6.89828 13.7758 12.195 + 100.7 -6.88798 13.7758 12.2 + 100.8 -6.86739 13.7647 12.196 + 100.9 -6.8468 13.7536 12.207 + 101 -6.82621 13.7315 12.199 + 101.1 -6.79532 13.6983 12.21 + 101.2 -6.75414 13.6429 12.205 + 101.3 -6.71295 13.5986 12.207 + 101.4 -6.66147 13.5322 12.211 + 101.5 -6.60999 13.4546 12.207 + 101.6 -6.54822 13.3771 12.208 + 101.7 -6.47615 13.2775 12.215 + 101.8 -6.41437 13.1778 12.21 + 101.9 -6.3423 13.0781 12.209 + 102 -6.25993 12.9674 12.198 + 102.1 -6.17756 12.8345 12.204 + 102.2 -6.0952 12.7127 12.202 + 102.3 -6.00253 12.5687 12.202 + 102.4 -5.90987 12.4137 12.192 + 102.5 -5.80691 12.2698 12.21 + 102.6 -5.71425 12.1147 12.182 + 102.7 -5.61129 11.9597 12.202 + 102.8 -5.49803 11.7936 12.202 + 102.9 -5.40537 11.6275 12.187 + 103 -5.29211 11.4503 12.177 + 103.1 -5.17886 11.2842 12.178 + 103.2 -5.0759 11.107 12.153 + 103.3 -4.97294 10.9298 12.152 + 103.4 -4.85968 10.7526 12.157 + 103.5 -4.73613 10.5755 12.147 + 103.6 -4.62288 10.3872 12.144 + 103.7 -4.50962 10.21 12.144 + 103.8 -4.39637 10.0218 12.131 + 103.9 -4.27282 9.83352 12.118 + 104 -4.15956 9.64527 12.137 + 104.1 -4.03601 9.45701 12.108 + 104.2 -3.91246 9.26876 12.107 + 104.3 -3.7992 9.0805 12.105 + 104.4 -3.66535 8.88118 12.11 + 104.5 -3.5521 8.68185 12.084 + 104.6 -3.41825 8.49359 12.079 + 104.7 -3.305 8.30534 12.079 + 104.8 -3.18145 8.10601 12.07 + 104.9 -3.0476 7.90668 12.067 + 105 -2.93434 7.70735 12.066 + 105.1 -2.81079 7.50803 12.056 + 105.2 -2.67694 7.29762 12.056 + 105.3 -2.55339 7.10937 12.052 + 105.4 -2.42984 6.89897 12.044 + 105.5 -2.296 6.69964 12.035 + 105.6 -2.16215 6.48924 12.03 + 105.7 -2.0386 6.28991 12.033 + 105.8 -1.90475 6.06843 12.019 + 105.9 -1.76061 5.85803 12.013 + 106 -1.62676 5.64763 12.018 + 106.1 -1.49291 5.41508 11.998 + 106.2 -1.35906 5.1936 12.001 + 106.3 -1.20463 4.97213 11.985 + 106.4 -1.06048 4.73958 11.987 + 106.5 -0.916339 4.49596 11.985 + 106.6 -0.772196 4.26341 11.982 + 106.7 -0.617757 4.03086 11.978 + 106.8 -0.463317 3.78723 11.958 + 106.9 -0.308878 3.53254 11.974 + 107 -0.164735 3.28891 11.957 + 107.1 -0.0102959 3.04529 11.95 + 107.2 0.144143 2.79059 11.941 + 107.3 0.298582 2.5359 11.943 + 107.4 0.453022 2.2812 11.934 + 107.5 0.607461 2.0265 11.931 + 107.6 0.7619 1.77181 11.925 + 107.7 0.926635 1.51711 11.918 + 107.8 1.08107 1.27349 11.932 + 107.9 1.21492 1.01879 11.909 + 108 1.32818 0.830534 11.88 + 108.1 1.44143 0.653353 11.884 + 108.2 1.55469 0.465099 11.881 + 108.3 1.64735 0.32114 11.873 + 108.4 1.72972 0.199328 11.867 + 108.5 1.79149 0.0996642 11.871 + 108.6 1.84297 0.0332215 11.887 + 108.7 1.87386 -0.0221475 11.878 + 108.8 1.90475 -0.0775164 11.871 + 108.9 1.93564 -0.121811 11.874 + 109 1.96653 -0.166107 11.885 + 109.1 1.97682 -0.199328 11.869 + 109.2 2.00771 -0.221476 11.889 + 109.3 2.01801 -0.243623 11.888 + 109.4 2.01801 -0.265771 11.881 + 109.5 2.0386 -0.265771 11.882 + 109.6 2.0386 -0.276844 11.879 + 109.7 2.0386 -0.287918 11.875 + 109.8 2.04889 -0.287918 11.873 + 109.9 2.04889 -0.287918 11.872 + 110 2.04889 -0.287918 11.861 + 110.1 2.04889 -0.287918 11.86 + 110.2 2.04889 -0.287918 11.864 + 110.3 2.04889 -0.276844 11.849 + 110.4 2.0386 -0.276844 11.842 + 110.5 2.0386 -0.276844 11.85 + 110.6 2.0283 -0.265771 11.834 + 110.7 2.01801 -0.254697 11.835 + 110.8 2.01801 -0.243623 11.846 + 110.9 1.99741 -0.221476 11.82 + 111 1.97682 -0.188254 11.821 + 111.1 1.96653 -0.155033 11.812 + 111.2 1.93564 -0.121811 11.799 + 111.3 1.89445 -0.0664426 11.817 + 111.4 1.87386 -0.0221475 11.826 + 111.5 1.83268 0.0442952 11.812 + 111.6 1.82238 0.0775166 11.807 + 111.7 1.79149 0.121812 11.8 + 111.8 1.7709 0.166107 11.807 + 111.9 1.74001 0.199328 11.807 + 112 1.71942 0.23255 11.802 + 112.1 1.69883 0.243623 11.787 + 112.2 1.69883 0.254697 11.801 + 112.3 1.68854 0.265771 11.793 + 112.4 1.67824 0.276845 11.806 + 112.5 1.66794 0.287918 11.795 + 112.6 1.65765 0.298992 11.798 + 112.7 1.64735 0.310066 11.794 + 112.8 1.64735 0.32114 11.788 + 112.9 1.63706 0.343287 11.81 + 113 1.62676 0.354361 11.795 + 113.1 1.60617 0.387582 11.792 + 113.2 1.59587 0.420804 11.794 + 113.3 1.56498 0.454025 11.8 + 113.4 1.5341 0.509394 11.792 + 113.5 1.5135 0.553689 11.779 + 113.6 1.47232 0.620132 11.806 + 113.7 1.44143 0.686575 11.791 + 113.8 1.43114 0.741944 11.791 + 113.9 1.38995 0.786239 11.788 + 114 1.36936 0.841608 11.758 + 114.1 1.33847 0.896976 11.792 + 114.2 1.32818 0.930198 11.787 + 114.3 1.29729 0.952345 11.798 + 114.4 1.29729 0.974493 11.853 + 114.5 1.28699 0.985567 11.898 + 114.6 1.2767 0.996641 11.953 + 114.7 1.2767 1.00771 12.039 + 114.8 1.2664 1.00771 12.143 + 114.9 1.2767 1.01879 12.217 + 115 1.2664 1.01879 12.324 + 115.1 1.2664 1.01879 12.426 + 115.2 1.2664 1.00771 12.532 + 115.3 1.2664 1.01879 12.641 + 115.4 1.2767 1.01879 12.757 + 115.5 1.2767 1.02986 12.879 + 115.6 1.2767 1.01879 13.019 + 115.7 1.2664 1.01879 13.13 + 115.8 1.2767 1.02986 13.283 + 115.9 1.25611 1.02986 13.425 + 116 1.2767 1.04094 13.563 + 116.1 1.25611 1.04094 13.719 + 116.2 1.2664 1.04094 13.897 + 116.3 1.25611 1.04094 14.028 + 116.4 1.2664 1.04094 14.207 + 116.5 1.2664 1.04094 14.365 + 116.6 1.25611 1.04094 14.544 + 116.7 1.2767 1.04094 14.721 + 116.8 1.2664 1.04094 14.901 + 116.9 1.25611 1.04094 15.064 + 117 1.2664 1.04094 15.231 + 117.1 1.2664 1.04094 15.406 + 117.2 1.2767 1.01879 15.677 + 117.3 1.28699 1.01879 15.828 + 117.4 1.2767 1.01879 16.022 + 117.5 1.2767 1.02986 16.201 + 117.6 1.2664 1.01879 16.384 + 117.7 1.2767 1.01879 16.574 + 117.8 1.2664 1.02986 16.733 + 117.9 1.25611 1.02986 16.928 + 118 1.24581 1.04094 17.142 + 118.1 1.25611 1.02986 17.32 + 118.2 1.23551 1.04094 17.508 + 118.3 1.23551 1.04094 17.717 + 118.4 1.23551 1.04094 17.912 + 118.5 1.24581 1.05201 18.103 + 118.6 1.23551 1.04094 18.294 + 118.7 1.23551 1.05201 18.516 + 118.8 1.22522 1.05201 18.691 + 118.9 1.23551 1.06308 18.885 + 119 1.22522 1.05201 19.111 + 119.1 1.23551 1.05201 19.32 + 119.2 1.22522 1.06308 19.542 + 119.3 1.22522 1.06308 19.754 + 119.4 1.23552 1.06308 19.983 + 119.5 1.21492 1.06308 20.193 + 119.6 1.22522 1.06308 20.415 + 119.7 1.20463 1.07416 20.637 + 119.8 1.22522 1.07416 20.871 + 119.9 1.21492 1.07416 21.081 + 120 1.21492 1.07416 21.292 + 120.1 1.21492 1.07416 21.513 + 120.2 1.21492 1.08523 21.751 + 120.3 1.21492 1.08523 21.95 + 120.4 1.20463 1.08523 22.173 + 120.5 1.21492 1.08523 22.396 + 120.6 1.21492 1.07416 22.62 + 120.7 1.21492 1.08523 22.832 + 120.8 1.21492 1.08523 23.064 + 120.9 1.22522 1.08523 23.248 + 121 1.21492 1.08523 23.436 + 121.1 1.22522 1.07416 23.593 + 121.2 1.25611 1.04094 23.695 + 121.3 1.2767 1.01879 23.776 + 121.4 1.30759 0.963421 23.834 + 121.5 1.34877 0.908052 23.877 + 121.6 1.40025 0.819462 23.879 + 121.7 1.47232 0.719797 23.875 + 121.8 1.55469 0.575838 23.874 + 121.9 1.65765 0.409731 23.874 + 122 1.77091 0.221476 23.859 + 122.1 1.90475 1.17259e-07 23.842 + 122.2 2.0386 -0.243624 23.828 + 122.3 2.20334 -0.509395 23.816 + 122.4 2.37837 -0.78624 23.795 + 122.5 2.5534 -1.09631 23.786 + 122.6 2.74902 -1.41745 23.788 + 122.7 2.95494 -1.77181 23.765 + 122.8 3.17116 -2.13724 23.775 + 122.9 3.40797 -2.52483 23.763 + 123 3.63448 -2.92348 23.759 + 123.1 3.89188 -3.33321 23.756 + 123.2 4.13898 -3.76509 23.75 + 123.3 4.39638 -4.19697 23.748 + 123.4 4.67437 -4.651 23.744 + 123.5 4.95236 -5.12717 23.744 + 123.6 5.24065 -5.60334 23.741 + 123.7 5.52894 -6.09059 23.753 + 123.8 5.82752 -6.58891 23.739 + 123.9 6.1261 -7.09831 23.745 + 124 6.45557 -7.61878 23.76 + 124.1 6.77475 -8.15032 23.747 + 124.2 7.10422 -8.70401 23.75 + 124.3 7.43369 -9.2577 23.758 + 124.4 7.78375 -9.82246 23.761 + 124.5 8.12352 -10.3983 23.777 + 124.6 8.48388 -10.9741 23.775 + 124.7 8.83395 -11.561 23.79 + 124.8 9.1943 -12.148 23.785 + 124.9 9.56496 -12.7459 23.798 + 125 9.92532 -13.3439 23.788 + 125.1 10.296 -13.953 23.805 + 125.2 10.6563 -14.562 23.781 + 125.3 11.027 -15.1711 23.807 + 125.4 11.4079 -15.7912 23.813 + 125.5 11.7786 -16.4003 23.809 + 125.6 12.1493 -17.0094 23.827 + 125.7 12.5199 -17.6184 23.808 + 125.8 12.8906 -18.2164 23.819 + 125.9 13.2509 -18.8144 23.807 + 126 13.6113 -19.3902 23.824 + 126.1 13.9099 -19.9107 23.759 + 126.2 14.2187 -20.3979 23.731 + 126.3 14.5173 -20.8741 23.7429 + 126.4 14.7747 -21.2838 23.7199 + 126.5 15.0012 -21.6493 23.7059 + 126.6 15.1866 -21.9593 23.6889 + 126.7 15.3616 -22.2362 23.6809 + 126.8 15.5263 -22.4687 23.6989 + 126.9 15.6499 -22.6902 23.6899 + 127 15.7837 -22.8674 23.6919 + 127.1 15.8764 -23.0003 23.6829 + 127.2 15.9485 -23.1221 23.7079 + 127.3 16 -23.2107 23.6969 + 127.4 16.0514 -23.2661 23.7009 + 127.5 16.072 -23.2882 23.7069 + 127.6 16.072 -23.2771 23.6939 + 127.7 16.0617 -23.2328 23.7109 + 127.8 16.0308 -23.1553 23.7149 + 127.9 15.9588 -23.0446 23.7189 + 128 15.8867 -22.9117 23.7039 + 128.1 15.8146 -22.7567 23.7079 + 128.2 15.7014 -22.5684 23.6879 + 128.3 15.5881 -22.358 23.6989 + 128.4 15.4543 -22.1255 23.6949 + 128.5 15.2998 -21.8818 23.6859 + 128.6 15.1454 -21.605 23.6739 + 128.7 14.9909 -21.3171 23.6799 + 128.8 14.8056 -21.007 23.6479 + 128.9 14.61 -20.6859 23.6469 + 129 14.4144 -20.3536 23.633 + 129.1 14.1982 -19.9993 23.622 + 129.2 13.9819 -19.6338 23.606 + 129.3 13.7657 -19.2573 23.587 + 129.4 13.5083 -18.8587 23.55 + 129.5 13.2818 -18.46 23.548 + 129.6 13.0347 -18.0503 23.555 + 129.7 12.7876 -17.6184 23.545 + 129.8 12.5199 -17.1865 23.53 + 129.9 12.2625 -16.7436 23.531 + 130 11.9845 -16.2674 23.499 + 130.1 11.6962 -15.8023 23.512 + 130.2 11.4182 -15.3372 23.501 + 130.3 11.1299 -14.85 23.484 + 130.4 10.8417 -14.3516 23.467 + 130.5 10.5431 -13.8533 23.472 + 130.6 10.2342 -13.3329 23.465 + 130.7 9.93561 -12.8235 23.453 + 130.8 9.62673 -12.303 23.447 + 130.9 9.31786 -11.7825 23.439 + 131 9.00898 -11.251 23.419 + 131.1 8.6898 -10.7084 23.426 + 131.2 8.37063 -10.1657 23.415 + 131.3 8.04115 -9.61206 23.4 + 131.4 7.72198 -9.05837 23.406 + 131.5 7.39251 -8.50468 23.393 + 131.6 7.07333 -7.95099 23.38 + 131.7 6.74386 -7.37515 23.37 + 131.8 6.41439 -6.81039 23.385 + 131.9 6.08492 -6.24562 23.358 + 132 5.74515 -5.65871 23.342 + 132.1 5.41568 -5.08287 23.337 + 132.2 5.07591 -4.50704 23.338 + 132.3 4.72585 -3.92013 23.316 + 132.4 4.38608 -3.32214 23.304 + 132.5 4.03602 -2.71308 23.305 + 132.6 3.68596 -2.10402 23.288 + 132.7 3.3153 -1.48389 23.256 + 132.8 2.96524 -0.863756 23.28 + 132.9 2.59458 -0.221476 23.279 + 133 2.22393 0.431878 23.254 + 133.1 1.83268 1.09631 23.225 + 133.2 1.46203 1.74966 23.227 + 133.3 1.07078 2.42516 23.227 + 133.4 0.679534 3.11174 23.21 + 133.5 0.288287 3.78724 23.207 + 133.6 -0.113256 4.47382 23.191 + 133.7 -0.514798 5.17147 23.173 + 133.8 -0.916341 5.86912 23.168 + 133.9 -1.32818 6.57784 23.152 + 134 -1.74002 7.28656 23.145 + 134.1 -2.15186 7.99529 23.138 + 134.2 -2.56369 8.71508 23.133 + 134.3 -2.98583 9.44595 23.113 + 134.4 -3.40796 10.1768 23.123 + 134.5 -3.8198 10.9077 23.099 + 134.6 -4.25223 11.6386 23.097 + 134.7 -4.68466 12.3805 23.071 + 134.8 -5.10679 13.1114 23.091 + 134.9 -5.51863 13.8533 23.075 + 135 -5.95106 14.5842 23.074 + 135.1 -6.38349 15.3151 23.064 + 135.2 -6.79533 16.0459 23.071 + 135.3 -7.21746 16.7768 23.061 + 135.4 -7.64989 17.5077 23.053 + 135.5 -8.06173 18.2275 23.044 + 135.6 -8.46327 18.9362 23.049 + 135.7 -8.88541 19.6671 23.026 + 135.8 -9.30754 20.3758 23.011 + 135.9 -9.70908 21.0845 23.006 + 136 -10.1209 21.7932 22.986 + 136.1 -10.5225 22.502 22.983 + 136.2 -10.9446 23.1996 22.9819 + 136.3 -11.3358 23.8973 22.9719 + 136.4 -11.7374 24.5949 22.9679 + 136.5 -12.1286 25.2704 22.9549 + 136.6 -12.5199 25.9459 22.9549 + 136.7 -12.9008 26.6104 22.9569 + 136.8 -13.2509 27.2416 22.9479 + 136.9 -13.5598 27.8063 22.8979 + 137 -13.9098 28.3711 22.8749 + 137.1 -14.1981 28.8805 22.8889 + 137.2 -14.4555 29.3456 22.8739 + 137.3 -14.7026 29.7553 22.8869 + 137.4 -14.9085 30.1097 22.8869 + 137.5 -15.1041 30.4419 22.8749 + 137.6 -15.2689 30.7298 22.8399 + 137.7 -15.4027 30.9734 22.8359 + 137.8 -15.5366 31.1728 22.8079 + 137.9 -15.6395 31.361 22.7899 + 138 -15.7219 31.505 22.7609 + 138.1 -15.8043 31.6379 22.7359 + 138.2 -15.8558 31.7375 22.7149 + 138.3 -15.8969 31.815 22.6919 + 138.4 -15.9175 31.8704 22.6679 + 138.5 -15.9278 31.8926 22.6529 + 138.6 -15.9175 31.8926 22.6619 + 138.7 -15.8969 31.8704 22.6419 + 138.8 -15.8558 31.815 22.6379 + 138.9 -15.8043 31.7375 22.6379 + 139 -15.7219 31.6379 22.6399 + 139.1 -15.6498 31.4939 22.6279 + 139.2 -15.5469 31.3499 22.6169 + 139.3 -15.4439 31.1728 22.6189 + 139.4 -15.3204 30.9734 22.6099 + 139.5 -15.1865 30.7741 22.5969 + 139.6 -15.0424 30.5416 22.6009 + 139.7 -14.8982 30.2979 22.6009 + 139.8 -14.7335 30.0432 22.6049 + 139.9 -14.5688 29.7885 22.5759 + 140 -14.3937 29.5338 22.5579 + 140.1 -14.2084 29.2791 22.5529 + 140.2 -14.0025 29.0134 22.5399 + 140.3 -13.8069 28.7587 22.5379 + 140.4 -13.5906 28.515 22.5189 + 140.5 -13.3538 28.2714 22.5209 + 140.6 -13.1273 28.0389 22.5019 + 140.7 -12.8905 27.8174 22.5009 + 140.8 -12.6331 27.6181 22.4899 + 140.9 -12.3757 27.4187 22.4779 + 141 -12.108 27.2416 22.4669 + 141.1 -11.8197 27.0644 22.4709 + 141.2 -11.5418 26.9093 22.4769 + 141.3 -11.2432 26.7765 22.4679 + 141.4 -10.924 26.6546 22.4649 + 141.5 -10.6048 26.5328 22.4529 + 141.6 -10.2754 26.4332 22.4589 + 141.7 -9.93559 26.3557 22.4619 + 141.8 -9.59582 26.2892 22.4659 + 141.9 -9.22517 26.2449 22.4689 + 142 -8.87511 26.2117 22.4939 + 142.1 -8.51475 26.2006 22.4959 + 142.2 -8.11321 26.1785 22.5199 + 142.3 -7.73226 26.1895 22.5429 + 142.4 -7.34101 26.2117 22.5539 + 142.5 -6.92917 26.2338 22.5619 + 142.6 -6.51733 26.2781 22.5559 + 142.7 -6.1055 26.3335 22.5729 + 142.8 -5.67307 26.3889 22.5689 + 142.9 -5.24064 26.4553 22.5879 + 143 -4.79791 26.5439 22.5789 + 143.1 -4.35519 26.6325 22.5829 + 143.2 -3.89187 26.7322 22.5929 + 143.3 -3.43885 26.8429 22.5909 + 143.4 -2.98582 26.9426 22.5929 + 143.5 -2.51221 27.0644 22.6069 + 143.6 -2.04889 27.1862 22.6099 + 143.7 -1.57528 27.3191 22.6209 + 143.8 -1.10167 27.463 22.6369 + 143.9 -0.617757 27.5959 22.6339 + 144 -0.133847 27.7509 22.6549 + 144.1 0.360358 27.906 22.6619 + 144.2 0.833972 28.0721 22.6789 + 144.3 1.31788 28.2382 22.6929 + 144.4 1.81209 28.4043 22.7159 + 144.5 2.30629 28.5704 22.7159 + 144.6 2.7902 28.7587 22.7399 + 144.7 3.26381 28.9248 22.7369 + 144.8 3.74772 29.102 22.7479 + 144.9 4.23163 29.2902 22.7809 + 145 4.71554 29.4674 22.7809 + 145.1 5.18916 29.6556 22.7979 + 145.2 5.67307 29.8439 22.8099 + 145.3 6.13638 30.0322 22.8149 + 145.4 6.61 30.2315 22.8279 + 145.5 7.08361 30.4197 22.8439 + 145.6 7.54693 30.6191 22.8569 + 145.7 8.02054 30.8184 22.8629 + 145.8 8.49415 31.0177 22.8559 + 145.9 8.95747 31.2281 22.8779 + 146 9.43108 31.4164 22.8909 + 146.1 9.8944 31.6268 22.8969 + 146.2 10.3474 31.8261 22.9049 + 146.3 10.8107 32.0365 22.9159 + 146.4 11.2741 32.2358 22.9219 + 146.5 11.7168 32.4462 22.9249 + 146.6 12.1698 32.6456 22.9379 + 146.7 12.6228 32.856 22.9479 + 146.8 13.0656 33.0664 22.9429 + 146.9 13.498 33.2768 22.9749 + 147 13.9407 33.4761 22.9579 + 147.1 14.3834 33.6976 22.9589 + 147.2 14.8159 33.8969 22.9749 + 147.3 15.2483 34.1073 22.9839 + 147.4 15.7013 34.3288 22.9829 + 147.5 16.144 34.5392 23.0029 + 147.6 16.5971 34.7607 22.9979 + 147.7 17.0398 34.9822 23.0109 + 147.8 17.5031 35.2147 23.0149 + 147.9 17.9458 35.4362 23.0339 + 148 18.3988 35.6798 23.0259 + 148.1 18.8725 35.9124 23.0539 + 148.2 19.3255 36.1671 23.0579 + 148.3 19.7888 36.3885 23.0719 + 148.4 20.2521 36.6322 23.0629 + 148.5 20.7051 36.8758 23.0759 + 148.6 21.1685 37.1194 23.0959 + 148.7 21.6215 37.363 23.0969 + 148.8 22.0745 37.6067 23.1029 + 148.9 22.5378 37.8503 23.1008 + 149 22.9908 38.0939 23.1088 + 149.1 23.4336 38.3265 23.1158 + 149.2 23.8969 38.5811 23.1278 + 149.3 24.3396 38.8137 23.1348 + 149.4 24.7926 39.0573 23.1178 + 149.5 25.2353 39.3009 23.1308 + 149.6 25.6678 39.5556 23.1248 + 149.7 26.1208 39.7882 23.1418 + 149.8 26.5532 40.0318 23.1238 + 149.9 27.0062 40.2754 23.1388 + 150 27.4387 40.5191 23.1308 + 150.1 27.8814 40.7627 23.1238 + 150.2 28.3138 41.0063 23.1408 + 150.3 28.7463 41.2499 23.1358 + 150.4 29.1787 41.4936 23.1338 + 150.5 29.6111 41.7261 23.1298 + 150.6 30.0435 41.9697 23.1318 + 150.7 30.476 42.2134 23.1358 + 150.8 30.8981 42.457 23.1478 + 150.9 31.3305 42.6895 23.1548 + 151 31.763 42.9442 23.1248 + 151.1 32.2057 43.1879 23.1448 + 151.2 32.6484 43.4315 23.1538 + 151.3 33.0911 43.6862 23.1468 + 151.4 33.5339 43.9298 23.1388 + 151.5 33.9972 44.1956 23.1468 + 151.6 34.4708 44.4503 23.1458 + 151.7 34.9341 44.7161 23.1367 + 151.8 35.4077 44.9818 23.1547 + 151.9 35.8813 45.2587 23.1367 + 152 36.3652 45.5355 23.1447 + 152.1 36.8491 45.8124 23.1467 + 152.2 37.3434 46.1003 23.1507 + 152.3 37.8376 46.3771 23.1577 + 152.4 38.3421 46.6651 23.1627 + 152.5 38.8363 46.964 23.1597 + 152.6 39.3511 47.2409 23.1737 + 152.7 39.8659 47.5399 23.1777 + 152.8 40.3806 47.8389 23.1677 + 152.9 40.9057 48.1268 23.1917 + 153 41.4205 48.4258 23.1717 + 153.1 41.9456 48.7359 23.1877 + 153.2 42.4913 49.0349 23.1947 + 153.3 43.0164 49.3339 23.1957 + 153.4 43.5518 49.6439 23.2007 + 153.5 44.0872 49.954 23.1897 + 153.6 44.6329 50.2641 23.2046 + 153.7 45.1682 50.552 23.2146 + 153.8 45.7036 50.862 23.2016 + 153.9 46.2596 51.1721 23.1986 + 154 46.795 51.4711 23.2116 + 154.1 47.3407 51.7923 23.1986 + 154.2 47.8864 52.1023 23.2136 + 154.3 48.4423 52.4013 23.1976 + 154.4 48.988 52.7225 23.2046 + 154.5 49.544 53.0325 23.2146 + 154.6 50.0897 53.3426 23.2086 + 154.7 50.6457 53.6527 23.2106 + 154.8 51.1914 53.9627 23.2236 + 154.9 51.7473 54.2839 23.2346 + 155 52.2827 54.5939 23.2376 + 155.1 52.8284 54.9151 23.2335 + 155.2 53.3844 55.2141 23.2555 + 155.3 53.9095 55.5352 23.2645 + 155.4 54.4552 55.8564 23.2725 + 155.5 54.9905 56.1664 23.2745 + 155.6 55.5259 56.4765 23.2765 + 155.7 56.0613 56.7976 23.2875 + 155.8 56.5864 57.0966 23.2905 + 155.9 57.1218 57.4067 23.2955 + 156 57.6469 57.7168 23.2995 + 156.1 58.1823 58.0268 23.2975 + 156.2 58.7074 58.3258 23.3085 + 156.3 59.2325 58.647 23.3135 + 156.4 59.7678 58.957 23.3064 + 156.5 60.2929 59.256 23.3074 + 156.6 60.8283 59.5661 23.3124 + 156.7 61.3431 59.8762 23.3194 + 156.8 61.8785 60.1752 23.3184 + 156.9 62.4139 60.4852 23.3214 + 157 62.9493 60.7953 23.3284 + 157.1 63.4641 61.1054 23.3124 + 157.2 63.9995 61.4044 23.3394 + 157.3 64.5349 61.7255 23.3274 + 157.4 65.0599 62.0356 23.3324 + 157.5 65.6056 62.3346 23.3404 + 157.6 66.1307 62.6336 23.3563 + 157.7 66.6558 62.9547 23.3263 + 157.8 67.1912 63.2648 23.3443 + 157.9 67.7163 63.5749 23.3313 + 158 68.2517 63.8739 23.3413 + 158.1 68.7871 64.1728 23.3523 + 158.2 69.3019 64.494 23.3573 + 158.3 69.8372 64.793 23.3393 + 158.4 70.3623 65.1031 23.3553 + 158.5 70.8874 65.4131 23.3563 + 158.6 71.4125 65.7121 23.3523 + 158.7 71.9376 66.0222 23.3463 + 158.8 72.4524 66.3212 23.3542 + 158.9 72.9672 66.6202 23.3432 + 159 73.4923 66.9192 23.3442 + 159.1 73.9865 67.2292 23.3272 + 159.2 74.5013 67.5172 23.3482 + 159.3 75.0058 67.8051 23.3372 + 159.4 75.5103 68.093 23.3122 + 159.5 76.0045 68.3809 23.3432 + 159.6 76.4987 68.6799 23.3342 + 159.7 76.9929 68.9568 23.3402 + 159.8 77.4871 69.2447 23.3422 + 159.9 77.971 69.5326 23.3321 + 160 78.4549 69.8095 23.3511 + 160.1 78.9388 70.0974 23.3691 + 160.2 79.4227 70.3742 23.3591 + 160.3 79.9066 70.6511 23.3491 + 160.4 80.3802 70.9168 23.3601 + 160.5 80.8538 71.1937 23.3701 + 160.6 81.3275 71.4595 23.3681 + 160.7 81.8011 71.7142 23.3861 + 160.8 82.2644 71.9689 23.3931 + 160.9 82.7277 72.2236 23.3741 + 161 83.2013 72.4672 23.374 + 161.1 83.6646 72.6997 23.38 + 161.2 84.1176 72.9434 23.387 + 161.3 84.581 73.1649 23.385 + 161.4 85.0443 73.3863 23.382 + 161.5 85.4973 73.5967 23.377 + 161.6 85.9606 73.7961 23.373 + 161.7 86.4136 73.9954 23.374 + 161.8 86.8769 74.1837 23.371 + 161.9 87.33 74.3498 23.363 + 162 87.783 74.5159 23.363 + 162.1 88.236 74.6709 23.37 + 162.2 88.689 74.8259 23.3819 + 162.3 89.1523 74.9588 23.3789 + 162.4 89.5951 75.0917 23.3669 + 162.5 90.0481 75.2135 23.3919 + 162.6 90.5011 75.3132 23.3689 + 162.7 90.9438 75.4239 23.3749 + 162.8 91.3968 75.5236 23.3939 + 162.9 91.8499 75.6122 23.3919 + 163 92.2926 75.6897 23.3859 + 163.1 92.7456 75.7672 23.3839 + 163.2 93.178 75.8337 23.3959 + 163.3 93.6413 75.9001 23.3849 + 163.4 94.0738 75.9555 23.3929 + 163.5 94.5268 75.9998 23.3928 + 163.6 94.9695 76.0552 23.3898 + 163.7 95.4019 76.0884 23.3978 + 163.8 95.8447 76.1216 23.3898 + 163.9 96.2874 76.1438 23.3868 + 164 96.7198 76.1659 23.3918 + 164.1 97.1522 76.177 23.3918 + 164.2 97.595 76.177 23.4018 + 164.3 98.0274 76.177 23.3878 + 164.4 98.4804 76.1549 23.3928 + 164.5 98.9128 76.1549 23.3898 + 164.6 99.335 76.1216 23.4008 + 164.7 99.788 76.0884 23.3878 + 164.8 100.22 76.0441 23.3948 + 164.9 100.663 75.9888 23.3968 + 165 101.116 75.9334 23.4097 + 165.1 101.559 75.867 23.4137 + 165.2 102.012 75.7895 23.4137 + 165.3 102.455 75.7009 23.4367 + 165.4 102.918 75.6123 23.4397 + 165.5 103.35 75.5015 23.4497 + 165.6 103.814 75.3797 23.4637 + 165.7 104.256 75.2579 23.4477 + 165.8 104.709 75.114 23.4687 + 165.9 105.152 74.97 23.4747 + 166 105.595 74.8039 23.5037 + 166.1 106.038 74.6267 23.4827 + 166.2 106.47 74.4385 23.4977 + 166.3 106.892 74.2502 23.5137 + 166.4 107.335 74.0509 23.5177 + 166.5 107.757 73.8294 23.5317 + 166.6 108.179 73.619 23.5417 + 166.7 108.591 73.3865 23.5397 + 166.8 109.013 73.1318 23.5596 + 166.9 109.425 72.8882 23.5636 + 167 109.827 72.6335 23.5826 + 167.1 110.228 72.3677 23.5716 + 167.2 110.63 72.0909 23.5826 + 167.3 111 71.814 23.6036 + 167.4 111.392 71.515 23.6136 + 167.5 111.772 71.2271 23.6196 + 167.6 112.153 70.917 23.6176 + 167.7 112.524 70.6181 23.6356 + 167.8 112.905 70.2969 23.6446 + 167.9 113.276 69.9869 23.6476 + 168 113.646 69.6546 23.6526 + 168.1 114.007 69.3335 23.6716 + 168.2 114.388 69.0124 23.6596 + 168.3 114.758 68.6802 23.6716 + 168.4 115.119 68.359 23.6846 + 168.5 115.5 68.0379 23.6876 + 168.6 115.86 67.7167 23.6786 + 168.7 116.241 67.3735 23.6786 + 168.8 116.622 67.0523 23.7096 + 168.9 116.982 66.7423 23.7186 + 169 117.353 66.4211 23.7666 + 169.1 117.724 66.1 23.8096 + 169.2 118.094 65.7899 23.8936 + 169.3 118.465 65.4799 23.9626 + 169.4 118.825 65.1809 24.0706 + 169.5 119.186 64.8708 24.1546 + 169.6 119.536 64.5718 24.2676 + 169.7 119.886 64.2728 24.3715 + 169.8 120.236 63.9738 24.4935 + 169.9 120.576 63.6859 24.6215 + 170 120.926 63.3869 24.7315 + 170.1 121.276 63.099 24.8645 + 170.2 121.626 62.8111 24.9995 + 170.3 121.966 62.5232 25.1305 + 170.4 122.305 62.2353 25.2695 + 170.5 122.635 61.9584 25.3995 + 170.6 122.975 61.6816 25.5395 + 170.7 123.294 61.3937 25.6985 + 170.8 123.634 61.1279 25.8405 + 170.9 123.963 60.8511 25.9895 + 171 124.272 60.5853 26.1455 + 171.1 124.591 60.2974 26.2795 + 171.2 124.91 60.0427 26.4585 + 171.3 125.229 59.7659 26.6095 + 171.4 125.538 59.5112 26.7825 + 171.5 125.837 59.2454 26.9905 + 171.6 126.146 58.9907 27.1925 + 171.7 126.434 58.7249 27.4065 + 171.8 126.743 58.4813 27.6525 + 171.9 127.011 58.2377 27.9005 + 172 127.299 57.9941 28.1445 + 172.1 127.577 57.7505 28.4095 + 172.2 127.855 57.529 28.6915 + 172.3 128.123 57.2854 28.9615 + 172.4 128.38 57.075 29.2575 + 172.5 128.648 56.8535 29.5624 + 172.6 128.905 56.632 29.8504 + 172.7 129.152 56.4216 30.1584 + 172.8 129.399 56.2112 30.4654 + 172.9 129.646 56.0119 30.7594 + 173 129.873 55.8015 31.0754 + 173.1 130.11 55.6022 31.3704 + 173.2 130.347 55.4029 31.6644 + 173.3 130.573 55.2035 31.9494 + 173.4 130.8 55.0153 32.2464 + 173.5 131.026 54.816 32.5474 + 173.6 131.242 54.6166 32.8384 + 173.7 131.469 54.4284 33.1304 + 173.8 131.675 54.2401 33.4074 + 173.9 131.891 54.0519 33.7084 + 174 132.118 53.8636 34.0014 + 174.1 132.324 53.6643 34.2814 + 174.2 132.529 53.4761 34.5824 + 174.3 132.746 53.2878 34.8744 + 174.4 132.962 53.0996 35.1714 + 174.5 133.178 52.9002 35.4624 + 174.6 133.394 52.712 35.7574 + 174.7 133.611 52.5127 36.0624 + 174.8 133.827 52.3244 36.3514 + 174.9 134.033 52.1362 36.6414 + 175 134.259 51.9368 36.9514 + 175.1 134.486 51.7486 37.2344 + 175.2 134.702 51.5493 37.5274 + 175.3 134.918 51.361 37.8114 + 175.4 135.145 51.1617 38.1014 + 175.5 135.371 50.9624 38.3854 + 175.6 135.598 50.763 38.6584 + 175.7 135.814 50.5748 38.9464 + 175.8 136.051 50.3644 39.2173 + 175.9 136.277 50.1651 39.5053 + 176 136.504 49.9657 39.8073 + 176.1 136.73 49.7664 40.0803 + 176.2 136.957 49.556 40.3523 + 176.3 137.194 49.3567 40.6363 + 176.4 137.42 49.1574 40.9223 + 176.5 137.647 48.947 41.2013 + 176.6 137.884 48.7366 41.4783 + 176.7 138.11 48.5262 41.7573 + 176.8 138.347 48.3158 42.0363 + 176.9 138.573 48.1054 42.3213 + 177 138.82 47.8839 42.5863 + 177.1 139.057 47.6735 42.8683 + 177.2 139.294 47.452 43.1463 + 177.3 139.531 47.2306 43.4263 + 177.4 139.778 47.0091 43.6903 + 177.5 140.015 46.7876 43.9363 + 177.6 140.272 46.5551 44.1493 + 177.7 140.53 46.3336 44.3713 + 177.8 140.787 46.09 44.5263 + 177.9 141.044 45.8574 44.6533 + 178 141.312 45.6138 44.7593 + 178.1 141.59 45.3591 44.8223 + 178.2 141.878 45.1044 44.8613 + 178.3 142.167 44.8497 44.9023 + 178.4 142.476 44.5729 44.9133 + 178.5 142.774 44.3071 44.9192 + 178.6 143.093 44.0303 44.9082 + 178.7 143.413 43.7423 44.9252 + 178.8 143.752 43.4433 44.9112 + 178.9 144.082 43.1444 44.9152 + 179 144.411 42.8343 44.8902 + 179.1 144.761 42.5242 44.8962 + 179.2 145.101 42.1809 44.8922 + 179.3 145.431 41.8377 44.8902 + 179.4 145.76 41.4833 44.9012 + 179.5 146.069 41.1289 44.9052 + 179.6 146.398 40.7746 44.9352 + 179.7 146.687 40.3981 44.9302 + 179.8 146.975 40.0216 44.9442 + 179.9 147.243 39.7004 44.9402 + 180 147.5 39.4347 44.9582 + 180.1 147.727 39.1246 44.9682 + 180.2 147.912 38.881 44.9742 + 180.3 148.087 38.6595 44.9692 + 180.4 148.241 38.4712 44.9622 + 180.5 148.375 38.3162 44.9752 + 180.6 148.478 38.1722 44.9902 + 180.7 148.571 38.0504 45.0122 + 180.8 148.643 37.9397 45.0112 + 180.9 148.694 37.84 45.0262 + 181 148.767 37.7404 45.0502 + 181.1 148.818 37.6518 45.0532 + 181.2 148.859 37.5632 45.0582 + 181.3 148.9 37.4857 45.0672 + 181.4 148.942 37.4082 45.0752 + 181.5 148.983 37.3196 45.0702 + 181.6 149.014 37.242 45.0812 + 181.7 149.045 37.1424 45.0732 + 181.8 149.065 37.0427 45.0812 + 181.9 149.086 36.932 45.0762 + 182 149.106 36.7991 45.0952 + 182.1 149.117 36.6551 45.0882 + 182.2 149.117 36.5112 45.1022 + 182.3 149.117 36.334 45.1082 + 182.4 149.117 36.1347 45.1182 + 182.5 149.106 35.9464 45.1182 + 182.6 149.096 35.736 45.1212 + 182.7 149.096 35.5035 45.1282 + 182.8 149.075 35.2709 45.1252 + 182.9 149.065 35.0162 45.1442 + 183 149.045 34.7615 45.1412 + 183.1 149.024 34.4847 45.1582 + 183.2 148.993 34.2078 45.1612 + 183.3 148.952 33.9199 45.1622 + 183.4 148.9 33.632 45.1492 + 183.5 148.849 33.3219 45.1422 + 183.6 148.787 33.0229 45.1232 + 183.7 148.705 32.7239 45.0982 + 183.8 148.643 32.4138 45.0602 + 183.9 148.561 32.1038 45.0372 + 184 148.468 31.7937 45.0262 + 184.1 148.396 31.4726 45.0472 + 184.2 148.303 31.1514 45.0262 + 184.3 148.211 30.8303 45.0372 + 184.4 148.128 30.4981 45.0172 + 184.5 148.025 30.1769 45.0332 + 184.6 147.922 29.8558 45.0182 + 184.7 147.819 29.5346 45.0072 + 184.8 147.696 29.2246 44.9592 + 184.9 147.583 28.9145 44.9182 + 185 147.459 28.6266 44.8602 + 185.1 147.305 28.3276 44.8012 + 185.2 147.171 28.0618 44.7722 + 185.3 146.996 27.796 44.7522 + 185.4 146.831 27.5413 44.7213 + 185.5 146.646 27.3199 44.7153 + 185.6 146.45 27.0984 44.7143 + 185.7 146.244 26.888 44.7023 + 185.8 146.028 26.6776 44.7183 + 185.9 145.801 26.5004 44.7153 + 186 145.606 26.2789 44.7113 + 186.1 145.379 26.0796 44.7173 + 186.2 145.142 25.8913 44.7353 + 186.3 144.916 25.6809 44.7283 + 186.4 144.679 25.4594 44.7323 + 186.5 144.453 25.238 44.7453 + 186.6 144.216 25.0165 44.7413 + 186.7 143.979 24.7839 44.7523 + 186.8 143.732 24.5514 44.7523 + 186.9 143.485 24.3077 44.7633 + 187 143.238 24.0641 44.7563 + 187.1 142.96 23.8316 44.7564 + 187.2 142.682 23.599 44.7684 + 187.3 142.393 23.3665 44.7504 + 187.4 142.105 23.1561 44.7534 + 187.5 141.807 22.9346 44.7604 + 187.6 141.498 22.7242 44.7654 + 187.7 141.158 22.5581 44.7644 + 187.8 140.818 22.3809 44.7604 + 187.9 140.478 22.2258 44.7584 + 188 140.128 22.0929 44.7644 + 188.1 139.778 21.9711 44.7614 + 188.2 139.418 21.8604 44.7604 + 188.3 139.047 21.7607 44.7594 + 188.4 138.677 21.6943 44.7555 + 188.5 138.296 21.6389 44.7595 + 188.6 137.915 21.6057 44.7625 + 188.7 137.544 21.5835 44.7525 + 188.8 137.153 21.5724 44.7585 + 188.9 136.762 21.5835 44.7725 + 189 136.37 21.5946 44.7735 + 189.1 135.969 21.5724 44.7685 + 189.2 135.578 21.5946 44.7585 + 189.3 135.166 21.6057 44.7545 + 189.4 134.744 21.6167 44.7845 + 189.5 134.321 21.6167 44.7865 + 189.6 133.889 21.6056 44.7696 + 189.7 133.457 21.5946 44.7776 + 189.8 133.024 21.5835 44.7816 + 189.9 132.581 21.5724 44.7856 + 190 132.128 21.5613 44.7796 + 190.1 131.675 21.5503 44.7826 + 190.2 131.222 21.5392 44.7796 + 190.3 130.759 21.517 44.7836 + 190.4 130.296 21.5059 44.7876 + 190.5 129.832 21.4727 44.7916 + 190.6 129.369 21.4616 44.7847 + 190.7 128.895 21.4395 44.7857 + 190.8 128.412 21.4173 44.7967 + 190.9 127.938 21.3952 44.7897 + 191 127.464 21.373 44.8087 + 191.1 126.98 21.3509 44.7917 + 191.2 126.507 21.3287 44.8017 + 191.3 126.033 21.2955 44.8037 + 191.4 125.549 21.2844 44.8087 + 191.5 125.065 21.2623 44.8017 + 191.6 124.592 21.2401 44.8077 + 191.7 124.118 21.218 44.8098 + 191.8 123.644 21.1958 44.8198 + 191.9 123.161 21.1737 44.8118 + 192 122.677 21.1515 44.8048 + 192.1 122.213 21.1294 44.8158 + 192.2 121.75 21.1072 44.8228 + 192.3 121.276 21.0961 44.8238 + 192.4 120.803 21.074 44.8248 + 192.5 120.339 21.0518 44.8478 + 192.6 119.886 21.0297 44.8318 + 192.7 119.433 21.0075 44.8488 + 192.8 118.96 20.9965 44.8489 + 192.9 118.538 20.9743 44.8449 + 193 118.095 20.9854 44.8489 + 193.1 117.663 20.9743 44.8449 + 193.2 117.23 20.9522 44.8579 + 193.3 116.808 20.9411 44.8649 + 193.4 116.396 20.8968 44.8489 + 193.5 115.995 20.8525 44.8409 + 193.6 115.603 20.7971 44.8469 + 193.7 115.212 20.7307 44.8519 + 193.8 114.852 20.631 44.8479 + 193.9 114.481 20.5313 44.8539 + 194 114.131 20.4538 44.8379 + 194.1 113.781 20.3431 44.828 + 194.2 113.451 20.2434 44.842 + 194.3 113.132 20.1548 44.83 + 194.4 112.803 20.0662 44.822 + 194.5 112.473 19.9776 44.845 + 194.6 112.144 19.9001 44.842 + 194.7 111.825 19.8226 44.839 + 194.8 111.495 19.7451 44.829 + 194.9 111.166 19.6675 44.831 + 195 110.847 19.59 44.838 + 195.1 110.517 19.5125 44.835 + 195.2 110.188 19.435 44.83 + 195.3 109.848 19.3575 44.84 + 195.4 109.518 19.2799 44.838 + 195.5 109.179 19.2024 44.837 + 195.6 108.829 19.1249 44.836 + 195.7 108.489 19.0585 44.828 + 195.8 108.128 18.9809 44.8351 + 195.9 107.778 18.9034 44.8351 + 196 107.428 18.8259 44.8411 + 196.1 107.068 18.7484 44.8401 + 196.2 106.697 18.6709 44.8341 + 196.3 106.337 18.6044 44.8331 + 196.4 105.977 18.5269 44.8271 + 196.5 105.606 18.4494 44.8241 + 196.6 105.246 18.3276 44.8361 + 196.7 104.885 18.1836 44.8141 + 196.8 104.525 18.0507 44.8171 + 196.9 104.175 17.9178 44.8391 + 197 103.794 17.7849 44.8331 + 197.1 103.464 17.6078 44.8171 + 197.2 103.104 17.4416 44.8101 + 197.3 102.744 17.2866 44.8141 + 197.4 102.394 17.1316 44.8302 + 197.5 102.033 16.9876 44.8292 + 197.6 101.673 16.8326 44.8322 + 197.7 101.313 16.6775 44.8472 + 197.8 100.962 16.5114 44.8452 + 197.9 100.602 16.3453 44.8442 + 198 100.252 16.1681 44.8432 + 198.1 99.8917 15.9909 44.8432 + 198.2 99.5416 15.8138 44.8402 + 198.3 99.1916 15.6255 44.8572 + 198.4 98.8415 15.4483 44.8532 + 198.5 98.4914 15.2711 44.8432 + 198.6 98.1414 15.0829 44.8392 + 198.7 97.8016 14.8836 44.8272 + 198.8 97.4412 14.7064 44.8392 + 198.9 97.0912 14.5181 44.8322 + 199 96.7411 14.3299 44.8233 + 199.1 96.3808 14.1416 44.8253 + 199.2 96.0307 13.9533 44.8343 + 199.3 95.66 13.7651 44.8133 + 199.4 95.31 13.5768 44.8183 + 199.5 94.9496 13.3886 44.8033 + 199.6 94.5893 13.2003 44.8143 + 199.7 94.2289 13.012 44.8093 + 199.8 93.8685 12.8238 44.8083 + 199.9 93.5082 12.6355 44.8013 + 200 93.1478 12.4584 44.8083 + 200.1 92.7875 12.2701 44.8093 + 200.2 92.4271 12.0708 44.7963 + 200.3 92.0565 11.8825 44.8043 + 200.4 91.6858 11.7053 44.7993 + 200.5 91.3254 11.506 44.7973 + 200.6 90.9548 11.3177 44.7913 + 200.7 90.5841 11.1295 44.7933 + 200.8 90.2238 10.9412 44.7964 + 200.9 89.8531 10.753 44.7814 + 201 89.4825 10.5536 44.7924 + 201.1 89.1118 10.3543 44.7934 + 201.2 88.7309 10.166 44.8004 + 201.3 88.3602 9.97778 44.7924 + 201.4 87.9793 9.77845 44.7964 + 201.5 87.5983 9.59019 44.8034 + 201.6 87.238 9.40194 44.7964 + 201.7 86.8364 9.20261 44.7924 + 201.8 86.4658 9.00327 44.8004 + 201.9 86.0745 8.81502 44.7964 + 202 85.6936 8.61569 44.7964 + 202.1 85.3023 8.42743 44.7904 + 202.2 84.9111 8.2281 44.7984 + 202.3 84.5198 8.02877 44.7884 + 202.4 84.1286 7.84051 44.8004 + 202.5 83.7373 7.64118 44.7894 + 202.6 83.3461 7.44185 44.7725 + 202.7 82.9548 7.24251 44.7765 + 202.8 82.5533 7.04318 44.7775 + 202.9 82.162 6.84385 44.7675 + 203 81.7605 6.64452 44.7565 + 203.1 81.359 6.44519 44.7525 + 203.2 80.9677 6.24586 44.7555 + 203.3 80.5662 6.04653 44.7395 + 203.4 80.1749 5.83612 44.7575 + 203.5 79.7631 5.64786 44.7385 + 203.6 79.3615 5.43746 44.7365 + 203.7 78.9497 5.23813 44.7285 + 203.8 78.5584 5.02772 44.7155 + 203.9 78.1466 4.81732 44.7095 + 204 77.7348 4.60691 44.7075 + 204.1 77.3332 4.40758 44.7015 + 204.2 76.9214 4.1861 44.6995 + 204.3 76.5096 3.9757 44.6865 + 204.4 76.0874 3.75422 44.6805 + 204.5 75.6756 3.55489 44.6816 + 204.6 75.2637 3.33341 44.6826 + 204.7 74.8519 3.123 44.6776 + 204.8 74.4401 2.9126 44.6726 + 204.9 74.0179 2.70219 44.6766 + 205 73.5958 2.48072 44.6806 + 205.1 73.1737 2.27031 44.6776 + 205.2 72.7515 2.05991 44.6736 + 205.3 72.3191 1.83843 44.6836 + 205.4 71.897 1.62802 44.6786 + 205.5 71.4542 1.40654 44.6876 + 205.6 71.0218 1.18506 44.6796 + 205.7 70.5791 0.963585 44.6796 + 205.8 70.126 0.742106 44.6756 + 205.9 69.6833 0.509554 44.6776 + 206 69.2097 0.277001 44.6666 + 206.1 68.7464 0.0444481 44.6546 + 206.2 68.2831 -0.199178 44.6676 + 206.3 67.7992 -0.442805 44.6666 + 206.4 67.3255 -0.686432 44.6636 + 206.5 66.8313 -0.941132 44.6696 + 206.6 66.3371 -1.18476 44.6587 + 206.7 65.8326 -1.45053 44.6567 + 206.8 65.3281 -1.70523 44.6557 + 206.9 64.8133 -1.95993 44.6667 + 207 64.2985 -2.22571 44.6647 + 207.1 63.7734 -2.49148 44.6627 + 207.2 63.2483 -2.75726 44.6657 + 207.3 62.7129 -3.02303 44.6637 + 207.4 62.1776 -3.28881 44.6687 + 207.5 61.6525 -3.56565 44.6657 + 207.6 61.1068 -3.82035 44.6667 + 207.7 60.6023 -4.13042 44.6807 + 207.8 60.0875 -4.44049 44.6697 + 207.9 59.5727 -4.73949 44.6887 + 208 59.0888 -5.08278 44.6817 + 208.1 58.6254 -5.43714 44.6877 + 208.2 58.1518 -5.81366 44.6917 + 208.3 57.6679 -6.16802 44.6797 + 208.4 57.2149 -6.53346 44.6857 + 208.5 56.7928 -6.90997 44.6737 + 208.6 56.3706 -7.25326 44.6697 + 208.7 56.0309 -7.55226 44.6537 + 208.8 55.6499 -7.86233 44.6718 + 208.9 55.2998 -8.1281 44.6598 + 209 54.991 -8.39387 44.6268 + 209.1 54.7336 -8.61535 44.6228 + 209.2 54.5276 -8.81468 44.6288 + 209.3 54.3423 -8.99186 44.6258 + 209.4 54.1673 -9.15797 44.6278 + 209.5 54.0128 -9.30193 44.6158 + 209.6 53.8893 -9.42374 44.6168 + 209.7 53.776 -9.54556 44.6208 + 209.8 53.6834 -9.64522 44.6348 + 209.9 53.5804 -9.73381 44.6408 + 210 53.498 -9.81133 44.6548 + 210.1 53.4157 -9.87777 44.6508 + 210.2 53.3436 -9.93314 44.6588 + 210.3 53.2715 -9.97744 44.6688 + 210.4 53.2201 -10.0328 44.6528 + 210.5 53.1789 -10.066 44.6458 + 210.6 53.1274 -10.0882 44.6548 + 210.7 53.0862 -10.1103 44.6438 + 210.8 53.0553 -10.1325 44.6448 + 210.9 53.0244 -10.1435 44.6388 + 211 53.0038 -10.1325 44.6328 + 211.1 52.9832 -10.1435 44.6128 + 211.2 52.9627 -10.1325 44.6198 + 211.3 52.9318 -10.1103 44.6148 + 211.4 52.9215 -10.0993 44.6108 + 211.5 52.8906 -10.066 44.6138 + 211.6 52.8494 -10.0439 44.6038 + 211.7 52.8185 -9.99959 44.5978 + 211.8 52.767 -9.95529 44.5808 + 211.9 52.6847 -9.88885 44.5708 + 212 52.6023 -9.80026 44.5578 + 212.1 52.4993 -9.71167 44.5588 + 212.2 52.3655 -9.58986 44.5598 + 212.3 52.211 -9.45697 44.5638 + 212.4 52.036 -9.29086 44.5668 + 212.5 51.8404 -9.11368 44.5678 + 212.6 51.6139 -8.91436 44.5648 + 212.7 51.3771 -8.70395 44.5658 + 212.8 51.1094 -8.4714 44.5578 + 212.9 50.8314 -8.21671 44.5568 + 213 50.5431 -7.95093 44.5668 + 213.1 50.2342 -7.67409 44.5608 + 213.2 49.8841 -7.3751 44.5578 + 213.3 49.5444 -7.06503 44.5568 + 213.4 49.184 -6.74389 44.5458 + 213.5 48.8134 -6.41168 44.5008 + 213.6 48.4221 -6.06839 44.4318 + 213.7 48.0206 -5.71403 44.3528 + 213.8 47.6293 -5.35967 44.2278 + 213.9 47.2072 -4.99423 44.0948 + 214 46.7644 -4.61772 43.9188 + 214.1 46.332 -4.23014 43.7588 + 214.2 45.879 -3.84255 43.5768 + 214.3 45.4259 -3.43282 43.3598 + 214.4 44.9729 -3.03417 43.1618 + 214.5 44.5199 -2.62444 42.9358 + 214.6 44.0566 -2.20363 42.7108 + 214.7 43.583 -1.78283 42.4779 + 214.8 43.1093 -1.36202 42.2449 + 214.9 42.646 -0.930143 41.9819 + 215 42.1724 -0.509339 41.7439 + 215.1 41.7091 -0.0885345 41.5019 + 215.2 41.2252 0.33227 41.2289 + 215.3 40.7721 0.730927 40.9649 + 215.4 40.3191 1.14066 40.6799 + 215.5 39.8867 1.52824 40.4119 + 215.6 39.5057 1.87153 40.1259 + 215.7 39.1042 2.22589 39.8089 + 215.8 38.7232 2.56918 39.4819 + 215.9 38.3629 2.8571 39.1579 + 216 38.0437 3.13394 38.8079 + 216.1 37.7348 3.37756 38.4739 + 216.2 37.4774 3.61011 38.1189 + 216.3 37.22 3.82052 37.7739 + 216.4 36.9935 4.00877 37.3989 + 216.5 36.7978 4.18595 37.0079 + 216.6 36.6022 4.34098 36.6309 + 216.7 36.4272 4.49602 36.2149 + 216.8 36.283 4.6289 35.8239 + 216.9 36.1286 4.76179 35.4059 + 217 36.005 4.8836 34.9859 + 217.1 35.8815 4.98326 34.5719 + 217.2 35.7785 5.08293 34.1539 + 217.3 35.6859 5.17152 33.7619 + 217.4 35.6035 5.24903 33.3499 + 217.5 35.5211 5.31547 32.9279 + 217.6 35.449 5.37084 32.5339 + 217.7 35.377 5.44836 32.1099 + 217.8 35.3152 5.49265 31.7049 + 217.9 35.274 5.54802 31.2909 + 218 35.2328 5.59232 30.8919 + 218.1 35.2019 5.63661 30.5079 + 218.2 35.1607 5.68091 30.1029 + 218.3 35.1299 5.7252 29.7109 + 218.4 35.099 5.7695 29.2909 + 218.5 35.0784 5.79164 28.8939 + 218.6 35.0578 5.83594 28.4899 + 218.7 35.0372 5.85809 28.0859 + 218.8 35.0475 5.88023 27.6859 + 218.9 35.0475 5.89131 27.3049 + 219 35.0269 5.92453 26.8779 + 219.1 35.0269 5.92453 26.4709 + 219.2 35.0269 5.9356 26.0569 + 219.3 35.0372 5.94667 25.6759 + 219.4 35.0372 5.9356 25.2729 + 219.5 35.0269 5.94667 24.8859 + 219.6 35.0372 5.9356 24.4799 + 219.7 35.0269 5.92453 24.0779 + 219.8 35.0166 5.91345 23.6889 + 219.9 34.996 5.91345 23.2799 + 220 34.996 5.88023 22.9069 + 220.1 34.9857 5.86915 22.5369 + 220.2 34.9857 5.86915 22.2059 + 220.3 35.0063 5.85808 21.8919 + 220.4 35.0166 5.84701 21.6259 + 220.5 35.0371 5.82486 21.3969 + 220.6 35.0577 5.81378 21.1849 + 220.7 35.0989 5.79164 21.0269 + 220.8 35.1195 5.78056 20.8819 + 220.9 35.1195 5.74734 20.7649 + 221 35.1298 5.71412 20.7029 + 221.1 35.1298 5.6809 20.6669 + 221.2 35.1401 5.64768 20.6609 + 221.3 35.1401 5.62553 20.6769 + 221.4 35.1298 5.60338 20.7119 + 221.5 35.1298 5.58123 20.7339 + 221.6 35.1401 5.57016 20.7799 + 221.7 35.1298 5.53694 20.8099 + 221.8 35.1195 5.49264 20.8369 + 221.9 35.0989 5.4705 20.8389 + 222 35.0783 5.43728 20.8429 + 222.1 35.0474 5.41513 20.8699 + 222.2 35.0268 5.40405 20.8649 + 222.3 35.0063 5.39298 20.8639 + 222.4 34.9857 5.38191 20.8689 + 222.5 34.996 5.38191 20.8649 + 222.6 35.0063 5.39298 20.8549 + 222.7 35.0371 5.39298 20.8509 + 222.8 35.068 5.40405 20.8359 + 222.9 35.1092 5.41513 20.8029 + 223 35.1813 5.43728 20.7999 + 223.1 35.2637 5.45942 20.7939 + 223.2 35.3666 5.48157 20.7859 + 223.3 35.449 5.51479 20.7759 + 223.4 35.5108 5.52587 20.7369 + 223.5 35.5725 5.53694 20.7339 + 223.6 35.6549 5.55909 20.7349 + 223.7 35.7064 5.55909 20.7469 + 223.8 35.7373 5.55909 20.7569 + 223.9 35.7682 5.57016 20.7569 + 224 35.7785 5.55909 20.7409 + 224.1 35.7887 5.55909 20.7479 + 224.2 35.7785 5.53694 20.7429 + 224.3 35.7682 5.52587 20.7459 + 224.4 35.7373 5.50372 20.7459 + 224.5 35.6755 5.48157 20.7419 + 224.6 35.6137 5.44835 20.7449 + 224.7 35.5313 5.4262 20.7559 + 224.8 35.449 5.37083 20.7659 + 224.9 35.3357 5.32654 20.7489 + 225 35.2019 5.27117 20.7589 + 225.1 35.0474 5.2158 20.7669 + 225.2 34.9033 5.14936 20.7759 + 225.3 34.7077 5.08291 20.7889 + 225.4 34.5223 5.0054 20.7859 + 225.5 34.3061 4.9168 20.7879 + 225.6 34.0796 4.82821 20.8159 + 225.7 33.8325 4.7507 20.8209 + 225.8 33.5751 4.65103 20.8259 + 225.9 33.3074 4.55137 20.8489 + 226 33.0191 4.4517 20.8369 + 226.1 32.7206 4.34096 20.8549 + 226.2 32.4014 4.23023 20.8629 + 226.3 32.0719 4.11949 20.8719 + 226.4 31.7218 4.00875 20.8809 + 226.5 31.3615 3.87586 20.8969 + 226.6 30.9908 3.74298 20.8899 + 226.7 30.6202 3.62116 20.8859 + 226.8 30.2186 3.48828 20.8969 + 226.9 29.8274 3.34432 20.9099 + 227 29.395 3.21143 20.9019 + 227.1 28.9728 3.06747 20.9069 + 227.2 28.5404 2.91244 20.9039 + 227.3 28.0874 2.76848 20.9079 + 227.4 27.6241 2.61344 20.9179 + 227.5 27.171 2.45841 20.9139 + 227.6 26.6974 2.30337 20.9229 + 227.7 26.2135 2.13727 20.9269 + 227.8 25.7193 1.97116 20.9299 + 227.9 25.2251 1.80505 20.9279 + 228 24.7103 1.65002 20.932 + 228.1 24.1955 1.48391 20.939 + 228.2 23.6704 1.30673 20.948 + 228.3 23.1453 1.12954 20.951 + 228.4 22.6202 0.952363 20.947 + 228.5 22.0848 0.775182 20.958 + 228.6 21.5391 0.598 20.96 + 228.7 20.9832 0.420819 20.957 + 228.8 20.4375 0.232563 20.976 + 228.9 19.8712 0.0553818 20.974 + 229 19.3049 -0.132874 20.974 + 229.1 18.7284 -0.310055 20.989 + 229.2 18.1518 -0.49831 20.986 + 229.3 17.5855 -0.697639 20.995 + 229.4 16.9986 -0.885895 20.989 + 229.5 16.4118 -1.07415 21.006 + 229.6 15.8249 -1.27348 21.003 + 229.7 15.2277 -1.47281 21.001 + 229.8 14.6306 -1.67214 20.999 + 229.9 14.0437 -1.87147 21.007 + 230 13.4362 -2.07079 21.01 + 230.1 12.8288 -2.27012 21.019 + 230.2 12.2316 -2.46945 21.015 + 230.3 11.6241 -2.66878 21.014 + 230.4 11.0064 -2.86811 21.019 + 230.5 10.4195 -3.06744 21.027 + 230.6 9.81205 -3.26677 21.022 + 230.7 9.21489 -3.4661 21.029 + 230.8 8.62802 -3.66543 21.03 + 230.9 8.04115 -3.84261 21.027 + 231 7.46457 -4.04193 21.037 + 231.1 6.888 -4.23019 21.05 + 231.2 6.34231 -4.41844 21.042 + 231.3 5.84811 -4.57348 21.066 + 231.4 5.39509 -4.71744 21.055 + 231.5 4.95236 -4.8614 21.059 + 231.6 4.54052 -4.99428 21.047 + 231.7 4.19046 -5.10502 21.041 + 231.8 3.91247 -5.21576 21.029 + 231.9 3.66536 -5.29328 21.028 + 232 3.43885 -5.38187 21.017 + 232.1 3.24323 -5.45938 20.962 + 232.2 3.0682 -5.52583 20.897 + 232.3 2.92405 -5.58119 20.815 + 232.4 2.77991 -5.62549 20.709 + 232.5 2.67695 -5.68086 20.573 + 232.6 2.5534 -5.72515 20.418 + 232.7 2.46074 -5.76945 20.239 + 232.8 2.36807 -5.81374 20.075 + 232.9 2.2857 -5.84696 19.853 + 233 2.22393 -5.88019 19.611 + 233.1 2.16215 -5.91341 19.338 + 233.2 2.12097 -5.93555 19.081 + 233.3 2.07978 -5.9577 18.789 + 233.4 2.0489 -5.99092 18.504 + 233.5 2.00771 -6.01307 18.2 + 233.6 1.98712 -6.04629 17.905 + 233.7 1.96653 -6.05736 17.615 + 233.8 1.95623 -6.07951 17.363 + 233.9 1.94594 -6.09059 17.128 + 234 1.94594 -6.10166 16.873 + 234.1 1.93564 -6.10166 16.68 + 234.2 1.94594 -6.11273 16.521 + 234.3 1.94594 -6.12381 16.376 + 234.4 1.94594 -6.11273 16.286 + 234.5 1.94594 -6.11273 16.234 + 234.6 1.94594 -6.11273 16.214 + 234.7 1.94594 -6.11273 16.206 + 234.8 1.94594 -6.12381 16.204 + 234.9 1.95623 -6.13488 16.206 + 235 1.94594 -6.15703 16.194 + 235.1 1.94594 -6.15703 16.236 + 235.2 1.95623 -6.15703 16.264 + 235.3 1.95623 -6.1681 16.295 + 235.4 1.96653 -6.1681 16.315 + 235.5 1.96653 -6.17918 16.329 + 235.6 1.96653 -6.17918 16.335 + 235.7 1.96653 -6.19025 16.337 + 235.8 1.98712 -6.20132 16.338 + 235.9 1.98712 -6.2124 16.333 + 236 2.00771 -6.23454 16.322 + 236.1 2.0283 -6.24562 16.309 + 236.2 2.05919 -6.24562 16.314 + 236.3 2.07978 -6.25669 16.314 + 236.4 2.10038 -6.25669 16.296 + 236.5 2.13126 -6.26777 16.295 + 236.6 2.16215 -6.26777 16.277 + 236.7 2.19304 -6.27884 16.276 + 236.8 2.21363 -6.27884 16.273 + 236.9 2.24452 -6.27884 16.268 + 237 2.27541 -6.27884 16.283 + 237.1 2.30629 -6.26777 16.275 + 237.2 2.32689 -6.27884 16.261 + 237.3 2.34748 -6.25669 16.238 + 237.4 2.36807 -6.24562 16.24 + 237.5 2.39896 -6.23454 16.246 + 237.6 2.40925 -6.2124 16.239 + 237.7 2.41955 -6.19025 16.231 + 237.8 2.44014 -6.17918 16.236 + 237.9 2.44014 -6.1681 16.224 + 238 2.45044 -6.14595 16.226 + 238.1 2.47103 -6.11273 16.23 + 238.2 2.48133 -6.06844 16.212 + 238.3 2.48133 -6.01307 16.204 + 238.4 2.50192 -5.93555 16.206 + 238.5 2.51221 -5.83589 16.181 + 238.6 2.5431 -5.71408 16.184 + 238.7 2.5534 -5.55904 16.187 + 238.8 2.58429 -5.38186 16.183 + 238.9 2.61517 -5.19361 16.203 + 239 2.64606 -4.99428 16.187 + 239.1 2.67695 -4.7728 16.187 + 239.2 2.69754 -4.54025 16.183 + 239.3 2.70784 -4.3077 16.205 + 239.4 2.70784 -4.06408 16.199 + 239.5 2.70784 -3.80938 16.204 + 239.6 2.68724 -3.56576 16.212 + 239.7 2.66665 -3.31106 16.212 + 239.8 2.62547 -3.06744 16.2 + 239.9 2.57399 -2.81274 16.196 + 240 2.5328 -2.56912 16.193 + 240.1 2.47103 -2.33657 16.198 + 240.2 2.39896 -2.09295 16.175 + 240.3 2.34748 -1.83825 16.19 + 240.4 2.296 -1.58355 16.193 + 240.5 2.23422 -1.31778 16.178 + 240.6 2.18274 -1.06308 16.181 + 240.7 2.13126 -0.786239 16.187 + 240.8 2.07978 -0.520468 16.181 + 240.9 2.01801 -0.243623 16.182 + 241 1.97682 0.0332215 16.173 + 241.1 1.92534 0.298992 16.185 + 241.2 1.90475 0.55369 16.175 + 241.3 1.86357 0.775165 16.178 + 241.4 1.85327 0.974494 16.156 + 241.5 1.83268 1.16275 16.162 + 241.6 1.82238 1.33993 16.18 + 241.7 1.80179 1.47281 16.176 + 241.8 1.81209 1.58355 16.172 + 241.9 1.81209 1.68322 16.169 + 242 1.81209 1.76073 16.147 + 242.1 1.82238 1.82718 16.151 + 242.2 1.82238 1.89362 16.135 + 242.3 1.84298 1.94899 16.129 + 242.4 1.85327 1.99328 16.086 + 242.5 1.86357 2.0265 16.034 + 242.6 1.86357 2.0708 15.961 + 242.7 1.88416 2.09295 15.848 + 242.8 1.88416 2.12617 15.697 + 242.9 1.90475 2.15939 15.539 + 243 1.92534 2.15939 15.395 + 243.1 1.93564 2.19261 15.224 + 243.2 1.94593 2.20368 15.093 + 243.3 1.95623 2.20368 14.983 + 243.4 1.95623 2.21476 14.887 + 243.5 1.95623 2.20368 14.831 + 243.6 1.94593 2.19261 14.773 + 243.7 1.90475 2.19261 14.754 + 243.8 1.86357 2.17046 14.741 + 243.9 1.82238 2.14832 14.719 + 244 1.75031 2.12617 14.74 + 244.1 1.66794 2.09295 14.744 + 244.2 1.57528 2.0708 14.761 + 244.3 1.47232 2.0265 14.776 + 244.4 1.34877 1.98221 14.792 + 244.5 1.23551 1.92684 14.809 + 244.6 1.09137 1.88254 14.832 + 244.7 0.936931 1.84932 14.832 + 244.8 0.792788 1.78288 14.848 + 244.9 0.628053 1.73858 14.839 + 245 0.463318 1.67214 14.842 + 245.1 0.288287 1.6057 14.851 + 245.2 0.113255 1.55033 14.839 + 245.3 -0.0617757 1.49496 14.857 + 245.4 -0.247103 1.43959 14.845 + 245.5 -0.391246 1.3953 14.81 + 245.6 -0.535389 1.36208 14.792 + 245.7 -0.658941 1.30671 14.806 + 245.8 -0.792788 1.28456 14.819 + 245.9 -0.926636 1.26241 14.812 + 246 -1.0193 1.25134 14.799 + 246.1 -1.12226 1.26241 14.802 + 246.2 -1.22522 1.28456 14.803 + 246.3 -1.31788 1.31778 14.803 + 246.4 -1.42084 1.36208 14.799 + 246.5 -1.54439 1.41744 14.79 + 246.6 -1.64735 1.49496 14.8 + 246.7 -1.76061 1.58355 14.796 + 246.8 -1.88416 1.68322 14.782 + 246.9 -1.99741 1.8161 14.799 + 247 -2.12097 1.94899 14.791 + 247.1 -2.26511 2.10402 14.782 + 247.2 -2.38866 2.27013 14.79 + 247.3 -2.52251 2.44731 14.792 + 247.4 -2.65635 2.62449 14.778 + 247.5 -2.8005 2.81274 14.796 + 247.6 -2.93435 3.01207 14.788 + 247.7 -3.07849 3.22247 14.797 + 247.8 -3.21234 3.44395 14.801 + 247.9 -3.35648 3.66542 14.793 + 248 -3.49033 3.89797 14.804 + 248.1 -3.63447 4.13052 14.802 + 248.2 -3.76832 4.37415 14.785 + 248.3 -3.92276 4.61777 14.78 + 248.4 -4.0669 4.88354 14.773 + 248.5 -4.21104 5.13824 14.768 + 248.6 -4.36548 5.41508 14.765 + 248.7 -4.50962 5.69193 14.769 + 248.8 -4.66406 5.97985 14.774 + 248.9 -4.8288 6.27884 14.771 + 249 -4.97294 6.57783 14.778 + 249.1 -5.12738 6.8879 14.79 + 249.2 -5.30241 7.20904 14.787 + 249.3 -5.45685 7.53018 14.798 + 249.4 -5.61129 7.86239 14.784 + 249.5 -5.77603 8.18353 14.797 + 249.6 -5.93046 8.52682 14.8 + 249.7 -6.1055 8.87011 14.789 + 249.8 -6.24964 9.21339 14.796 + 249.9 -6.42467 9.56775 14.801 + 250 -6.57911 9.91104 14.803 + 250.1 -6.74384 10.2654 14.819 + 250.2 -6.89828 10.6198 14.808 + 250.3 -7.06302 10.9852 14.808 + 250.4 -7.21746 11.3506 14.799 + 250.5 -7.39249 11.7161 14.792 + 250.6 -7.54693 12.0704 14.806 + 250.7 -7.71166 12.4359 14.793 + 250.8 -7.8661 12.8013 14.79 + 250.9 -8.02054 13.1667 14.793 + 251 -8.17498 13.5322 14.798 + 251.1 -8.29853 13.8533 14.785 + 251.2 -8.40149 14.1302 14.758 + 251.3 -8.51474 14.407 14.75 + 251.4 -8.58682 14.6396 14.78 + 251.5 -8.66918 14.8278 14.764 + 251.6 -8.72066 14.9939 14.779 + 251.7 -8.77214 15.1268 14.793 + 251.8 -8.80303 15.2375 14.795 + 251.9 -8.83392 15.3151 14.777 + 252 -8.83392 15.3815 14.753 + 252.1 -8.84421 15.4369 14.741 + 252.2 -8.85451 15.4922 14.749 + 252.3 -8.8648 15.5365 14.738 + 252.4 -8.8751 15.5697 14.739 + 252.5 -8.8854 15.603 14.752 + 252.6 -8.89569 15.6362 14.748 + 252.7 -8.8854 15.6473 14.755 + 252.8 -8.8751 15.6473 14.756 + 252.9 -8.8751 15.6473 14.765 + 253 -8.85451 15.6251 14.76 + 253.1 -8.80303 15.5808 14.764 + 253.2 -8.75155 15.5365 14.75 + 253.3 -8.70007 15.4701 14.75 + 253.4 -8.628 15.3815 14.752 + 253.5 -8.54563 15.2708 14.734 + 253.6 -8.40149 15.1157 14.743 + 253.7 -8.24705 14.9275 14.73 + 253.8 -8.07202 14.7281 14.738 + 253.9 -7.88669 14.4845 14.737 + 254 -7.66018 14.252 14.725 + 254.1 -7.42337 13.9751 14.738 + 254.2 -7.16598 13.6651 14.751 + 254.3 -6.87769 13.3439 14.766 + 254.4 -6.56881 12.9896 14.762 + 254.5 -6.24964 12.613 14.773 + 254.6 -5.89958 12.2255 14.758 + 254.7 -5.53922 11.7936 14.766 + 254.8 -5.15827 11.3617 14.764 + 254.9 -4.75673 10.9077 14.773 + 255 -4.33459 10.4204 14.771 + 255.1 -3.91246 9.93319 14.766 + 255.2 -3.46973 9.41272 14.769 + 255.3 -3.00642 8.88118 14.759 + 255.4 -2.52251 8.33856 14.766 + 255.5 -2.0386 7.7738 14.755 + 255.6 -1.54439 7.19796 14.751 + 255.7 -1.02959 6.61105 14.743 + 255.8 -0.504501 6.01307 14.742 + 255.9 0.0308878 5.38186 14.74 + 256 0.576573 4.76173 14.731 + 256.1 1.13255 4.13052 14.725 + 256.2 1.68854 3.47717 14.731 + 256.3 2.25481 2.82382 14.732 + 256.4 2.84168 2.17046 14.733 + 256.5 3.42855 1.50604 14.738 + 256.6 4.01542 0.819461 14.746 + 256.7 4.61259 0.14396 14.744 + 256.8 5.18916 -0.542615 14.755 + 256.9 5.78632 -1.21812 14.761 + 257 6.39379 -1.91576 14.761 + 257.1 6.98066 -2.60234 14.744 + 257.2 7.58812 -3.28891 14.746 + 257.3 8.17499 -3.98656 14.744 + 257.4 8.76186 -4.67314 14.725 + 257.5 9.34873 -5.35971 14.725 + 257.6 9.94589 -6.04629 14.72 + 257.7 10.5328 -6.73286 14.724 + 257.8 11.099 -7.40836 14.717 + 257.9 11.6756 -8.07279 14.712 + 258 12.2419 -8.73721 14.734 + 258.1 12.7979 -9.39057 14.728 + 258.2 13.3333 -10.0218 14.722 + 258.3 13.8275 -10.6308 14.735 + 258.4 14.2805 -11.1734 14.67 + 258.5 14.7335 -11.7161 14.652 + 258.6 15.1454 -12.2033 14.669 + 258.7 15.5366 -12.6573 14.687 + 258.8 15.8764 -13.056 14.689 + 258.9 16.1852 -13.4103 14.667 + 259 16.4735 -13.7315 14.645 + 259.1 16.7 -13.9973 14.626 + 259.2 16.906 -14.2409 14.624 + 259.3 17.081 -14.4402 14.604 + 259.4 17.2148 -14.6063 14.598 + 259.5 17.3281 -14.7503 14.6 + 259.6 17.4105 -14.8499 14.571 + 259.7 17.4619 -14.9164 14.575 + 259.8 17.4928 -14.9496 14.563 + 259.9 17.4619 -14.9496 14.582 + 260 17.4414 -14.9164 14.58 + 260.1 17.3899 -14.861 14.603 + 260.2 17.3075 -14.7724 14.598 + 260.3 17.2148 -14.6617 14.607 + 260.4 17.1119 -14.5399 14.611 + 260.5 16.9986 -14.407 14.606 + 260.6 16.8648 -14.252 14.598 + 260.7 16.7206 -14.0969 14.608 + 260.8 16.5559 -13.9197 14.59 + 260.9 16.3809 -13.7426 14.605 + 261 16.2161 -13.5543 14.582 + 261.1 16.0411 -13.355 14.591 + 261.2 15.8558 -13.1557 14.575 + 261.3 15.6602 -12.9453 14.581 + 261.4 15.4645 -12.7348 14.568 + 261.5 15.2792 -12.5023 14.561 + 261.6 15.063 -12.2697 14.544 + 261.7 14.8468 -12.0372 14.553 + 261.8 14.6306 -11.7936 14.549 + 261.9 14.4349 -11.5389 14.539 + 262 14.2084 -11.2842 14.543 + 262.1 14.0025 -11.0073 14.533 + 262.2 13.7863 -10.7305 14.535 + 262.3 13.5598 -10.4426 14.517 + 262.4 13.323 -10.1436 14.54 + 262.5 13.0965 -9.84459 14.543 + 262.6 12.8597 -9.53453 14.56 + 262.7 12.6228 -9.21339 14.562 + 262.8 12.386 -8.90332 14.567 + 262.9 12.1389 -8.58218 14.57 + 263 11.8918 -8.27212 14.585 + 263.1 11.6344 -7.9399 14.587 + 263.2 11.3667 -7.60769 14.589 + 263.3 11.1093 -7.27547 14.589 + 263.4 10.8519 -6.93219 14.583 + 263.5 10.5739 -6.57783 14.6 + 263.6 10.3063 -6.22347 14.595 + 263.7 10.0386 -5.8691 14.604 + 263.8 9.76056 -5.50367 14.599 + 263.9 9.49287 -5.13823 14.603 + 264 9.22517 -4.78387 14.622 + 264.1 8.93689 -4.39629 14.614 + 264.2 8.6383 -4.01978 14.624 + 264.3 8.33972 -3.6322 14.618 + 264.4 8.06173 -3.24462 14.615 + 264.5 7.75285 -2.85704 14.612 + 264.6 7.44397 -2.44731 14.611 + 264.7 7.13509 -2.04865 14.616 + 264.8 6.83651 -1.64999 14.616 + 264.9 6.50704 -1.24026 14.61 + 265 6.19816 -0.830533 14.609 + 265.1 5.8584 -0.409729 14.617 + 265.2 5.53922 0.0110748 14.628 + 265.3 5.20975 0.442952 14.635 + 265.4 4.86998 0.87483 14.636 + 265.5 4.53022 1.31778 14.618 + 265.6 4.18016 1.76073 14.635 + 265.7 3.84039 2.20368 14.636 + 265.8 3.48003 2.65771 14.64 + 265.9 3.11967 3.11173 14.647 + 266 2.7902 3.54361 14.655 + 266.1 2.49162 3.94227 14.662 + 266.2 2.21363 4.29663 14.656 + 266.3 1.90475 4.68421 14.649 + 266.4 1.64735 5.00535 14.653 + 266.5 1.42084 5.27112 14.682 + 266.6 1.23551 5.50367 14.696 + 266.7 1.08107 5.68085 14.707 + 266.8 0.926635 5.82481 14.762 + 266.9 0.803084 5.94662 14.793 + 267 0.71042 6.04629 14.847 + 267.1 0.638349 6.10166 14.93 + 267.2 0.576573 6.15703 14.988 + 267.3 0.545685 6.2124 15.089 + 267.4 0.514797 6.24562 15.204 + 267.5 0.494205 6.30099 15.295 + 267.6 0.504501 6.34528 15.358 + 267.7 0.525093 6.38958 15.422 + 267.8 0.576573 6.45602 15.45 + 267.9 0.648645 6.53354 15.493 + 268 0.751604 6.6332 15.505 + 268.1 0.885452 6.74394 15.54 + 268.2 1.02959 6.87682 15.549 + 268.3 1.21492 7.02078 15.56 + 268.4 1.42084 7.17582 15.558 + 268.5 1.64735 7.34192 15.569 + 268.6 1.85327 7.55232 15.572 + 268.7 2.07978 7.76273 15.562 + 268.8 2.296 7.99528 15.556 + 268.9 2.52251 8.26105 15.567 + 269 2.75931 8.53789 15.552 + 269.1 2.97553 8.84796 15.537 + 269.2 3.19174 9.18017 15.552 + 269.3 3.40796 9.55668 15.53 + 269.4 3.63447 9.94426 15.549 + 269.5 3.86098 10.3651 15.562 + 269.6 4.10808 10.7969 15.553 + 269.7 4.34489 11.251 15.561 + 269.8 4.60229 11.7161 15.571 + 269.9 4.84939 12.1922 15.567 + 270 5.11708 12.7016 15.572 + 270.1 5.38478 13.2221 15.577 + 270.2 5.65247 13.7426 15.578 + 270.3 5.96135 14.2741 15.565 + 270.4 6.25993 14.8167 15.564 + 270.5 6.56881 15.3704 15.565 + 270.6 6.88798 15.9241 15.549 + 270.7 7.23805 16.4999 15.552 + 270.8 7.58811 17.0758 15.538 + 270.9 7.95876 17.6516 15.52 + 271 8.33971 18.2496 15.506 + 271.1 8.75155 18.8587 15.503 + 271.2 9.18398 19.4788 15.498 + 271.3 9.637 20.0989 15.499 + 271.4 10.1106 20.7301 15.494 + 271.5 10.6048 21.3724 15.478 + 271.6 11.1093 22.0368 15.486 + 271.7 11.655 22.7013 15.4729 + 271.8 12.211 23.3657 15.4979 + 271.9 12.7876 24.0412 15.4949 + 272 13.3847 24.7389 15.4869 + 272.1 14.0128 25.4254 15.4979 + 272.2 14.6408 26.1231 15.4979 + 272.3 15.2895 26.8318 15.4869 + 272.4 15.9587 27.5294 15.4909 + 272.5 16.6382 28.2492 15.4849 + 272.6 17.3281 28.958 15.4809 + 272.7 18.0385 29.6778 15.4879 + 272.8 18.7592 30.3976 15.5029 + 272.9 19.4902 31.1284 15.4919 + 273 20.2315 31.8704 15.4869 + 273.1 20.9831 32.5902 15.5009 + 273.2 21.7347 33.321 15.5089 + 273.3 22.5069 34.0408 15.5099 + 273.4 23.2688 34.7717 15.5089 + 273.5 24.0307 35.4915 15.5319 + 273.6 24.8029 36.2113 15.5308 + 273.7 25.5648 36.9311 15.5278 + 273.8 26.3267 37.6398 15.5488 + 273.9 27.0886 38.3596 15.5348 + 274 27.8402 39.0573 15.5388 + 274.1 28.6021 39.7549 15.5388 + 274.2 29.364 40.4637 15.5338 + 274.3 30.1156 41.1613 15.5388 + 274.4 30.8775 41.859 15.5318 + 274.5 31.6291 42.5455 15.5318 + 274.6 32.391 43.2321 15.5268 + 274.7 33.1426 43.9187 15.5208 + 274.8 33.9045 44.6053 15.5208 + 274.9 34.6561 45.2808 15.5177 + 275 35.4077 45.9563 15.5097 + 275.1 36.1593 46.6318 15.5017 + 275.2 36.9212 47.2962 15.4937 + 275.3 37.6728 47.9717 15.4927 + 275.4 38.4347 48.6361 15.4877 + 275.5 39.1863 49.3116 15.4817 + 275.6 39.9482 49.9761 15.4807 + 275.7 40.6998 50.6516 15.4737 + 275.8 41.4617 51.316 15.4817 + 275.9 42.2339 51.9804 15.4816 + 276 42.9957 52.6449 15.4776 + 276.1 43.7576 53.3204 15.4736 + 276.2 44.5401 53.9848 15.4866 + 276.3 45.3123 54.6603 15.4876 + 276.4 46.0948 55.3358 15.4776 + 276.5 46.8773 56.0113 15.4746 + 276.6 47.6598 56.6757 15.4826 + 276.7 48.4526 57.3512 15.4876 + 276.8 49.2454 58.0267 15.4975 + 276.9 50.0381 58.7022 15.4835 + 277 50.8412 59.3888 15.4855 + 277.1 51.634 60.0643 15.4785 + 277.2 52.4371 60.7398 15.4915 + 277.3 53.2505 61.4264 15.4865 + 277.4 54.0638 62.1019 15.4875 + 277.5 54.8772 62.7774 15.4885 + 277.6 55.6906 63.464 15.4864 + 277.7 56.504 64.1506 15.4854 + 277.8 57.3276 64.8371 15.4744 + 277.9 58.1513 65.5127 15.4854 + 278 58.975 66.2103 15.4764 + 278.1 59.7986 66.908 15.4824 + 278.2 60.6326 67.5945 15.4844 + 278.3 61.4563 68.2922 15.4793 + 278.4 62.3005 68.9898 15.4843 + 278.5 63.1345 69.6875 15.4923 + 278.6 63.9788 70.3851 15.4893 + 278.7 64.823 71.0828 15.4983 + 278.8 65.6673 71.7694 15.4983 + 278.9 66.5115 72.4781 15.5022 + 279 67.3558 73.1758 15.5092 + 279.1 68.2001 73.8734 15.5192 + 279.2 69.0443 74.5821 15.5272 + 279.3 69.8886 75.2798 15.5222 + 279.4 70.7328 75.9774 15.5582 + 279.5 71.5771 76.6862 15.6101 + 279.6 72.4214 77.3727 15.6731 + 279.7 73.2553 78.0593 15.7641 + 279.8 74.0893 78.7459 15.8681 + 279.9 74.9336 79.4214 15.9941 + 280 75.7675 80.0969 16.138 + 280.1 76.6015 80.7724 16.3 + 280.2 77.4355 81.4479 16.454 + 280.3 78.2591 82.1013 16.629 + 280.4 79.0828 82.7768 16.815 + 280.5 79.9065 83.4412 16.993 + 280.6 80.7301 84.0946 17.1639 + 280.7 81.5435 84.759 17.3429 + 280.8 82.3672 85.4124 17.5249 + 280.9 83.1703 86.0658 17.7039 + 281 83.9836 86.7191 17.8749 + 281.1 84.797 87.3614 18.0598 + 281.2 85.5898 88.0148 18.2308 + 281.3 86.3929 88.657 18.4088 + 281.4 87.1857 89.2883 18.5868 + 281.5 87.9681 89.9195 18.7598 + 281.6 88.7403 90.5507 18.9337 + 281.7 89.5125 91.1708 19.1057 + 281.8 90.2744 91.7799 19.2767 + 281.9 91.026 92.3779 19.4527 + 282 91.757 92.9759 19.6217 + 282.1 92.488 93.5739 19.7716 + 282.2 93.2088 94.1497 19.9396 + 282.3 93.9295 94.7256 20.1136 + 282.4 94.6296 95.2903 20.2706 + 282.5 95.3194 95.844 20.4176 + 282.6 96.0092 96.3977 20.5955 + 282.7 96.6785 96.9403 20.7535 + 282.8 97.3477 97.483 20.9135 + 282.9 98.0066 98.0145 21.0745 + 283 98.6553 98.5461 21.2215 + 283.1 99.3039 99.0665 21.3765 + 283.2 99.9423 99.5759 21.5374 + 283.3 100.57 100.085 21.6974 + 283.4 101.209 100.584 21.8444 + 283.5 101.826 101.093 22.0094 + 283.6 102.444 101.591 22.1634 + 283.7 103.072 102.079 22.2953 + 283.8 103.68 102.577 22.4383 + 283.9 104.277 103.064 22.5763 + 284 104.895 103.551 22.7053 + 284.1 105.492 104.039 22.8323 + 284.2 106.089 104.515 22.9473 + 284.3 106.686 104.991 23.0632 + 284.4 107.294 105.478 23.1562 + 284.5 107.87 105.955 23.2452 + 284.6 108.467 106.431 23.2972 + 284.7 109.054 106.907 23.3422 + 284.8 109.651 107.372 23.3861 + 284.9 110.218 107.837 23.4071 + 285 110.794 108.302 23.4271 + 285.1 111.34 108.767 23.4491 + 285.2 111.906 109.221 23.4491 + 285.3 112.462 109.664 23.4501 + 285.4 113.008 110.107 23.443 + 285.5 113.553 110.539 23.445 + 285.6 114.109 110.938 23.435 + 285.7 114.665 111.325 23.436 + 285.8 115.252 111.669 23.39 + 285.9 115.818 112.001 23.406 + 286 116.395 112.289 23.3819 + 286.1 117.002 112.521 23.4039 + 286.2 117.6 112.721 23.3989 + 286.3 118.197 112.865 23.3869 + 286.4 118.804 112.975 23.3799 + 286.5 119.401 113.042 23.3789 + 286.6 119.988 113.097 23.3789 + 286.7 120.585 113.097 23.3849 + 286.8 121.162 113.119 23.3888 + 286.9 121.759 113.153 23.3678 + 287 122.336 113.153 23.3788 + 287.1 122.892 113.153 23.3978 + 287.2 123.396 113.164 23.4328 + 287.3 123.911 113.175 23.4268 + 287.4 124.395 113.219 23.4338 + 287.5 124.827 113.241 23.4458 + 287.6 125.229 113.263 23.4568 + 287.7 125.569 113.286 23.4558 + 287.8 125.888 113.274 23.4437 + 287.9 126.145 113.286 23.4667 + 288 126.403 113.286 23.4727 + 288.1 126.619 113.286 23.4757 + 288.2 126.804 113.297 23.4937 + 288.3 126.979 113.286 23.4997 + 288.4 127.134 113.297 23.5067 + 288.5 127.288 113.286 23.5127 + 288.6 127.432 113.297 23.5207 + 288.7 127.576 113.297 23.5117 + 288.8 127.721 113.286 23.5137 + 288.9 127.875 113.274 23.5027 + 289 128.029 113.263 23.5077 + 289.1 128.204 113.23 23.5107 + 289.2 128.39 113.197 23.5097 + 289.3 128.596 113.164 23.5297 + 289.4 128.822 113.108 23.5297 + 289.5 129.069 113.053 23.5237 + 289.6 129.347 112.987 23.5197 + 289.7 129.625 112.92 23.5407 + 289.8 129.903 112.843 23.5267 + 289.9 130.222 112.754 23.5277 + 290 130.552 112.654 23.5367 + 290.1 130.902 112.566 23.5437 + 290.2 131.252 112.455 23.5457 + 290.3 131.633 112.344 23.5576 + 290.4 132.014 112.222 23.5506 + 290.5 132.415 112.101 23.5576 + 290.6 132.827 111.979 23.5586 + 290.7 133.249 111.846 23.5666 + 290.8 133.692 111.702 23.5606 + 290.9 134.135 111.569 23.5596 + 291 134.598 111.414 23.5636 + 291.1 135.072 111.27 23.5656 + 291.2 135.556 111.115 23.5636 + 291.3 136.05 110.96 23.5586 + 291.4 136.554 110.794 23.5756 + 291.5 137.069 110.628 23.5746 + 291.6 137.584 110.451 23.5686 + 291.7 138.119 110.296 23.5775 + 291.8 138.665 110.141 23.5785 + 291.9 139.221 109.997 23.5985 + 292 139.787 109.853 23.5895 + 292.1 140.354 109.709 23.5895 + 292.2 140.951 109.576 23.5905 + 292.3 141.548 109.443 23.6005 + 292.4 142.145 109.321 23.6005 + 292.5 142.742 109.199 23.5965 + 292.6 143.36 109.067 23.6065 + 292.7 143.967 108.934 23.6084 + 292.8 144.596 108.801 23.6034 + 292.9 145.213 108.657 23.6204 + 293 145.831 108.513 23.6164 + 293.1 146.459 108.38 23.6384 + 293.2 147.077 108.236 23.6244 + 293.3 147.674 108.048 23.6334 + 293.4 148.271 107.848 23.6274 + 293.5 148.837 107.649 23.6354 + 293.6 149.393 107.483 23.6643 + 293.7 149.97 107.328 23.6233 + 293.8 150.495 107.107 23.6303 + 293.9 151 106.896 23.6453 + 294 151.514 106.708 23.6583 + 294.1 151.988 106.52 23.6643 + 294.2 152.4 106.387 23.6683 + 294.3 152.822 106.221 23.6753 + 294.4 153.213 106.099 23.6653 + 294.5 153.563 105.977 23.6583 + 294.6 153.913 105.855 23.6623 + 294.7 154.212 105.733 23.6683 + 294.8 154.49 105.623 23.6793 + 294.9 154.788 105.512 23.6902 + 295 155.087 105.401 23.6992 + 295.1 155.396 105.279 23.7102 + 295.2 155.715 105.158 23.7232 + 295.3 156.045 105.036 23.7332 + 295.4 156.395 104.903 23.7262 + 295.5 156.734 104.77 23.7412 + 295.6 157.105 104.626 23.7472 + 295.7 157.476 104.482 23.7452 + 295.8 157.857 104.338 23.7502 + 295.9 158.248 104.172 23.7532 + 296 158.66 104.017 23.7602 + 296.1 159.082 103.851 23.7462 + 296.2 159.514 103.685 23.7532 + 296.3 159.957 103.508 23.7562 + 296.4 160.42 103.342 23.7581 + 296.5 160.873 103.153 23.7651 + 296.6 161.357 102.976 23.7591 + 296.7 161.841 102.788 23.7511 + 296.8 162.346 102.6 23.7641 + 296.9 162.85 102.411 23.7811 + 297 163.365 102.212 23.7721 + 297.1 163.89 102.013 23.7751 + 297.2 164.425 101.813 23.7841 + 297.3 164.971 101.603 23.7931 + 297.4 165.507 101.404 23.788 + 297.5 166.063 101.193 23.806 + 297.6 166.619 100.983 23.806 + 297.7 167.175 100.784 23.807 + 297.8 167.73 100.562 23.822 + 297.9 168.297 100.363 23.819 + 298 168.842 100.152 23.826 + 298.1 169.388 99.942 23.836 + 298.2 169.862 99.7648 23.86 + 298.3 170.325 99.5766 23.8249 + 298.4 170.788 99.3994 23.8329 + 298.5 171.19 99.2555 23.8139 + 298.6 171.53 99.1226 23.8169 + 298.7 171.828 99.0008 23.8429 + 298.8 172.086 98.9011 23.8499 + 298.9 172.322 98.8014 23.8609 + 299 172.518 98.6686 23.8479 + 299.1 172.703 98.58 23.8569 + 299.2 172.878 98.5135 23.8639 + 299.3 173.043 98.4249 23.8679 + 299.4 173.187 98.3364 23.8909 + 299.5 173.342 98.2367 23.8949 + 299.6 173.496 98.1481 23.8959 + 299.7 173.651 98.0595 23.8939 + 299.8 173.815 97.9599 23.8949 + 299.9 173.99 97.8602 23.9039 + 300 174.165 97.7384 23.9009 + 300.1 174.361 97.6166 23.9089 + 300.2 174.567 97.4726 23.9019 + 300.3 174.783 97.3287 23.9119 + 300.4 175.01 97.1626 23.9079 + 300.5 175.247 96.9854 23.9079 + 300.6 175.504 96.8082 23.9218 + 300.7 175.761 96.6089 23.9148 + 300.8 176.029 96.3985 23.9138 + 300.9 176.317 96.177 23.9238 + 301 176.595 95.9555 23.9368 + 301.1 176.904 95.723 23.9288 + 301.2 177.213 95.4683 23.9278 + 301.3 177.532 95.2025 23.9298 + 301.4 177.851 94.9257 23.9338 + 301.5 178.181 94.6488 23.9398 + 301.6 178.521 94.3498 23.9468 + 301.7 178.85 94.0509 23.9548 + 301.8 179.19 93.7297 23.9458 + 301.9 179.519 93.3975 23.9478 + 302 179.859 93.0542 23.9548 + 302.1 180.209 92.6999 23.9608 + 302.2 180.539 92.3344 23.9548 + 302.3 180.889 91.969 23.9428 + 302.4 181.229 91.5814 23.9598 + 302.5 181.589 91.1828 23.9608 + 302.6 181.939 90.7841 23.9578 + 302.7 182.279 90.3744 23.9598 + 302.8 182.639 89.9647 23.9677 + 302.9 182.999 89.5328 23.9647 + 303 183.36 89.0898 23.9597 + 303.1 183.72 88.6469 23.9627 + 303.2 184.07 88.1929 23.9577 + 303.3 184.42 87.7278 23.9537 + 303.4 184.77 87.2516 23.9607 + 303.5 185.12 86.7754 23.9527 + 303.6 185.46 86.2882 23.9607 + 303.7 185.8 85.7788 23.9567 + 303.8 186.129 85.2694 23.9637 + 303.9 186.449 84.7379 23.9647 + 304 186.778 84.2063 23.9697 + 304.1 187.097 83.6748 23.9777 + 304.2 187.416 83.1322 23.9767 + 304.3 187.705 82.5785 23.9817 + 304.4 188.014 82.0248 23.9747 + 304.5 188.323 81.4601 23.9757 + 304.6 188.621 80.9064 23.9847 + 304.7 188.909 80.3305 23.9837 + 304.8 189.187 79.7436 23.9837 + 304.9 189.445 79.1456 23.9747 + 305 189.671 78.5477 23.9677 + 305.1 189.898 77.9497 23.9667 + 305.2 190.063 77.3406 23.9667 + 305.3 190.196 76.7205 23.9877 + 305.4 190.289 76.1114 23.9737 + 305.5 190.361 75.5024 23.9917 + 305.6 190.402 74.8933 24.0007 + 305.7 190.444 74.2953 24.0057 + 305.8 190.505 73.7084 23.9987 + 305.9 190.526 73.1437 24.0117 + 306 190.536 72.6453 24.0357 + 306.1 190.536 72.147 24.0187 + 306.2 190.577 71.6598 24.0097 + 306.3 190.619 71.239 24.0008 + 306.4 190.65 70.8182 24.0108 + 306.5 190.67 70.4195 24.0008 + 306.6 190.691 70.043 23.9868 + 306.7 190.691 69.6776 24.0028 + 306.8 190.691 69.29 24.0278 + 306.9 190.68 68.9024 24.0498 + 307 190.66 68.5148 24.0648 + 307.1 190.629 68.1161 24.0798 + 307.2 190.577 67.7175 24.0958 + 307.3 190.536 67.3299 24.0948 + 307.4 190.485 66.9423 24.1098 + 307.5 190.454 66.5547 24.1298 + 307.6 190.392 66.1782 24.1288 + 307.7 190.33 65.7906 24.1278 + 307.8 190.279 65.4141 24.1348 + 307.9 190.227 65.0376 24.1448 + 308 190.186 64.6611 24.1378 + 308.1 190.155 64.2846 24.1588 + 308.2 190.114 63.9192 24.1938 + 308.3 190.073 63.5537 24.2359 + 308.4 190.032 63.1772 24.3309 + 308.5 189.991 62.8118 24.4229 + 308.6 189.96 62.4464 24.5459 + 308.7 189.919 62.0588 24.6899 + 308.8 189.888 61.6823 24.8299 + 308.9 189.836 61.3058 24.9989 + 309 189.795 60.9071 25.1669 + 309.1 189.764 60.4974 25.3299 + 309.2 189.702 60.0987 25.4999 + 309.3 189.661 59.6779 25.6969 + 309.4 189.62 59.2571 25.8789 + 309.5 189.569 58.8363 26.0879 + 309.6 189.527 58.4155 26.2939 + 309.7 189.476 57.9836 26.5269 + 309.8 189.425 57.5628 26.7419 + 309.9 189.383 57.1309 26.9749 + 310 189.332 56.6991 27.2129 + 310.1 189.28 56.2672 27.4579 + 310.2 189.239 55.8353 27.6859 + 310.3 189.188 55.4034 27.925 + 310.4 189.147 54.9605 28.163 + 310.5 189.085 54.5175 28.409 + 310.6 189.033 54.0635 28.649 + 310.7 188.982 53.6095 28.867 + 310.8 188.91 53.1555 29.101 + 310.9 188.869 52.6904 29.319 + 311 188.797 52.2253 29.524 + 311.1 188.735 51.7491 29.733 + 311.2 188.673 51.2729 29.952 + 311.3 188.601 50.7967 30.141 + 311.4 188.55 50.2984 30.342 + 311.5 188.488 49.8001 30.523 + 311.6 188.416 49.3018 30.698 + 311.7 188.344 48.8035 30.873 + 311.8 188.272 48.2941 30.998 + 311.9 188.22 47.7847 31.141 + 312 188.148 47.2642 31.2391 + 312.1 188.066 46.7437 31.3191 + 312.2 187.953 46.2233 31.3861 + 312.3 187.808 45.7028 31.4091 + 312.4 187.685 45.1934 31.4221 + 312.5 187.51 44.6951 31.4461 + 312.6 187.304 44.2189 31.4531 + 312.7 187.057 43.7427 31.4421 + 312.8 186.799 43.2887 31.4481 + 312.9 186.501 42.8679 31.4391 + 313 186.182 42.4803 31.4461 + 313.1 185.862 42.0927 31.4372 + 313.2 185.523 41.7273 31.4442 + 313.3 185.173 41.3618 31.4412 + 313.4 184.823 41.0075 31.4162 + 313.5 184.473 40.642 31.4162 + 313.6 184.133 40.2876 31.3992 + 313.7 183.772 39.9111 31.4002 + 313.8 183.412 39.5346 31.4112 + 313.9 183.072 39.147 31.4113 + 314 182.722 38.7484 31.4123 + 314.1 182.383 38.3497 31.4193 + 314.2 182.022 37.94 31.4163 + 314.3 181.672 37.5302 31.4153 + 314.4 181.322 37.1094 31.4173 + 314.5 180.972 36.6997 31.4163 + 314.6 180.612 36.2789 31.4233 + 314.7 180.262 35.847 31.4264 + 314.8 179.901 35.4151 31.4304 + 314.9 179.551 34.9943 31.4284 + 315 179.191 34.5624 31.4294 + 315.1 178.83 34.1305 31.4304 + 315.2 178.449 33.6987 31.3954 + 315.3 178.099 33.2778 31.3324 + 315.4 177.739 32.846 31.2644 + 315.5 177.368 32.4252 31.1435 + 315.6 176.987 32.0265 30.9965 + 315.7 176.617 31.6278 30.8015 + 315.8 176.226 31.2513 30.5955 + 315.9 175.845 30.8859 30.3555 + 316 175.453 30.5426 30.1105 + 316.1 175.052 30.2325 29.8565 + 316.2 174.63 29.9667 29.6025 + 316.3 174.228 29.7231 29.4186 + 316.4 173.806 29.5127 29.2096 + 316.5 173.394 29.3134 29.0266 + 316.6 173.013 29.0808 28.8956 + 316.7 172.591 28.8815 28.7496 + 316.8 172.2 28.6821 28.6986 + 316.9 171.86 28.5049 28.6966 + 317 171.551 28.3056 28.6766 + 317.1 171.263 28.1284 28.7256 + 317.2 171.036 27.9845 28.7886 + 317.3 170.851 27.8737 28.9147 + 317.4 170.686 27.763 29.0827 + 317.5 170.573 27.6633 29.2597 + 317.6 170.48 27.5969 29.5257 + 317.7 170.388 27.5304 29.7987 + 317.8 170.305 27.4751 30.0967 + 317.9 170.233 27.4197 30.4137 + 318 170.161 27.3643 30.7587 + 318.1 170.11 27.309 31.0987 + 318.2 170.038 27.2647 31.4347 + 318.3 169.966 27.2204 31.7397 + 318.4 169.904 27.1761 32.0597 + 318.5 169.842 27.1429 32.3907 + 318.6 169.801 27.1096 32.7337 + 318.7 169.739 27.0764 33.0767 + 318.8 169.688 27.0432 33.3887 + 318.9 169.636 27.01 33.6917 + 319 169.564 26.9768 34.0097 + 319.1 169.513 26.9325 34.3227 + 319.2 169.43 26.8882 34.6187 + 319.3 169.348 26.8439 34.9117 + 319.4 169.255 26.7885 35.2177 + 319.5 169.152 26.7331 35.4997 + 319.6 169.039 26.6667 35.7747 + 319.7 168.916 26.6003 36.0397 + 319.8 168.772 26.5227 36.2897 + 319.9 168.627 26.4452 36.5317 + 320 168.452 26.3566 36.7607 + 320.1 168.288 26.268 36.9997 + 320.2 168.092 26.1905 37.2317 + 320.3 167.896 26.1019 37.4487 + 320.4 167.69 26.0133 37.6617 + 320.5 167.474 25.9247 37.8657 + 320.6 167.237 25.8251 38.0508 + 320.7 167.021 25.7365 38.2648 + 320.8 166.764 25.6479 38.4538 + 320.9 166.506 25.5482 38.6238 + 321 166.249 25.4596 38.8138 + 321.1 165.961 25.371 38.9738 + 321.2 165.693 25.2824 39.1528 + 321.3 165.395 25.1828 39.3038 + 321.4 165.096 25.1053 39.4478 + 321.5 164.787 25.0277 39.5938 + 321.6 164.478 24.9502 39.7278 + 321.7 164.149 24.8838 39.8458 + 321.8 163.819 24.8284 39.9758 + 321.9 163.479 24.773 40.0899 + 322 163.129 24.7287 40.1949 + 322.1 162.779 24.6844 40.3129 + 322.2 162.429 24.6401 40.4439 + 322.3 162.069 24.6069 40.5489 + 322.4 161.698 24.5737 40.6699 + 322.5 161.338 24.5294 40.8019 + 322.6 160.947 24.4962 40.9139 + 322.7 160.576 24.4519 41.0569 + 322.8 160.205 24.4186 41.1979 + 322.9 159.814 24.3743 41.306 + 323 159.433 24.3411 41.431 + 323.1 159.042 24.3079 41.553 + 323.2 158.651 24.2747 41.664 + 323.3 158.259 24.2414 41.789 + 323.4 157.848 24.2082 41.893 + 323.5 157.456 24.1861 42.001 + 323.6 157.055 24.1639 42.114 + 323.7 156.643 24.1307 42.227 + 323.8 156.231 24.1196 42.328 + 323.9 155.819 24.0975 42.4211 + 324 155.408 24.0753 42.5301 + 324.1 154.996 24.0753 42.6341 + 324.2 154.574 24.0642 42.7331 + 324.3 154.151 24.0642 42.8141 + 324.4 153.729 24.0642 42.9061 + 324.5 153.307 24.0753 42.9961 + 324.6 152.875 24.0974 43.0711 + 324.7 152.442 24.1306 43.1601 + 324.8 152.02 24.1639 43.2401 + 324.9 151.577 24.1971 43.3042 + 325 151.155 24.2303 43.4012 + 325.1 150.723 24.2857 43.4702 + 325.2 150.301 24.341 43.5482 + 325.3 149.858 24.3964 43.6262 + 325.4 149.436 24.4628 43.6992 + 325.5 149.003 24.5182 43.7952 + 325.6 148.581 24.5957 43.8672 + 325.7 148.149 24.6732 43.9512 + 325.8 147.716 24.7507 44.0322 + 325.9 147.274 24.8282 44.1133 + 326 146.841 24.9168 44.1803 + 326.1 146.409 24.9943 44.2513 + 326.2 145.976 25.0829 44.3383 + 326.3 145.534 25.1826 44.4093 + 326.4 145.091 25.2712 44.4743 + 326.5 144.638 25.3598 44.5363 + 326.6 144.206 25.4594 44.6083 + 326.7 143.753 25.5591 44.6953 + 326.8 143.32 25.6477 44.7743 + 326.9 142.867 25.7473 44.8503 + 327 142.424 25.8359 44.9034 + 327.1 141.971 25.9245 44.9674 + 327.2 141.518 25.9799 45.0054 + 327.3 141.065 26.0242 45.0524 + 327.4 140.612 26.0795 45.1044 + 327.5 140.17 26.1017 45.1404 + 327.6 139.706 26.1017 45.1794 + 327.7 139.253 26.1017 45.2154 + 327.8 138.79 26.0906 45.2444 + 327.9 138.337 26.0574 45.2584 + 328 137.884 26.0241 45.3015 + 328.1 137.42 26.002 45.3145 + 328.2 136.967 25.9688 45.3375 + 328.3 136.514 25.9245 45.3415 + 328.4 136.041 25.9023 45.3355 + 328.5 135.598 25.8691 45.3555 + 328.6 135.135 25.8469 45.3495 + 328.7 134.671 25.8248 45.3565 + 328.8 134.208 25.8026 45.3675 + 328.9 133.755 25.7805 45.3715 + 329 133.292 25.7583 45.3686 + 329.1 132.839 25.7362 45.3756 + 329.2 132.375 25.7251 45.3846 + 329.3 131.922 25.7029 45.3856 + 329.4 131.459 25.6808 45.3866 + 329.5 131.006 25.6476 45.3946 + 329.6 130.553 25.6254 45.4016 + 329.7 130.09 25.5922 45.3876 + 329.8 129.647 25.559 45.4126 + 329.9 129.184 25.5147 45.4176 + 330 128.741 25.4704 45.4207 + 330.1 128.288 25.415 45.4287 + 330.2 127.835 25.3486 45.4387 + 330.3 127.392 25.2932 45.4537 + 330.4 126.949 25.2046 45.4587 + 330.5 126.496 25.1381 45.4557 + 330.6 126.064 25.0495 45.4537 + 330.7 125.632 24.961 45.4867 + 330.8 125.199 24.8724 45.4887 + 330.9 124.767 24.7727 45.4967 + 331 124.334 24.6841 45.5017 + 331.1 123.902 24.5844 45.5107 + 331.2 123.48 24.4958 45.5288 + 331.3 123.047 24.3962 45.5288 + 331.4 122.615 24.2965 45.5368 + 331.5 122.182 24.2079 45.5388 + 331.6 121.76 24.1082 45.5458 + 331.7 121.328 24.0196 45.5588 + 331.8 120.906 23.92 45.5658 + 331.9 120.473 23.8425 45.5618 + 332 120.041 23.7428 45.5688 + 332.1 119.619 23.6542 45.5798 + 332.2 119.176 23.5545 45.5768 + 332.3 118.744 23.4659 45.5849 + 332.4 118.321 23.3773 45.5899 + 332.5 117.879 23.2777 45.5849 + 332.6 117.446 23.1891 45.6079 + 332.7 117.004 23.1005 45.6109 + 332.8 116.571 23.0119 45.6009 + 332.9 116.128 22.9233 45.6099 + 333 115.696 22.8347 45.6169 + 333.1 115.274 22.7461 45.6179 + 333.2 114.821 22.6575 45.6289 + 333.3 114.388 22.5689 45.6269 + 333.4 113.956 22.4914 45.6349 + 333.5 113.513 22.4028 45.638 + 333.6 113.071 22.3142 45.631 + 333.7 112.638 22.2256 45.65 + 333.8 112.195 22.137 45.635 + 333.9 111.753 22.0484 45.649 + 334 111.32 21.9598 45.653 + 334.1 110.877 21.8712 45.653 + 334.2 110.424 21.7826 45.66 + 334.3 109.992 21.7051 45.653 + 334.4 109.539 21.5944 45.654 + 334.5 109.086 21.4836 45.654 + 334.6 108.633 21.3618 45.642 + 334.7 108.19 21.2289 45.666 + 334.8 107.727 21.085 45.6631 + 334.9 107.274 20.9189 45.6581 + 335 106.821 20.7306 45.6651 + 335.1 106.368 20.5534 45.6541 + 335.2 105.915 20.3541 45.6561 + 335.3 105.472 20.1215 45.6661 + 335.4 105.019 19.9001 45.6501 + 335.5 104.566 19.6786 45.6471 + 335.6 104.103 19.446 45.6671 + 335.7 103.65 19.2135 45.6601 + 335.8 103.186 18.9809 45.6631 + 335.9 102.723 18.7373 45.6741 + 336 102.26 18.4937 45.6692 + 336.1 101.796 18.25 45.6752 + 336.2 101.333 17.9953 45.6762 + 336.3 100.87 17.7296 45.6792 + 336.4 100.406 17.4527 45.6852 + 336.5 99.9432 17.1648 45.6912 + 336.6 99.4901 16.8658 45.6852 + 336.7 99.0371 16.5446 45.6992 + 336.8 98.6047 16.2235 45.7022 + 336.9 98.1723 15.8691 45.7102 + 337 97.7398 15.5258 45.7092 + 337.1 97.2971 15.1715 45.7162 + 337.2 96.8647 14.806 45.7182 + 337.3 96.4426 14.4295 45.7273 + 337.4 96.0204 14.053 45.7273 + 337.5 95.6086 13.6654 45.7413 + 337.6 95.1762 13.2778 45.7363 + 337.7 94.754 12.8902 45.7493 + 337.8 94.3422 12.4916 45.7483 + 337.9 93.9303 12.0929 45.7613 + 338 93.5185 11.6943 45.7553 + 338.1 93.0964 11.2845 45.7493 + 338.2 92.7051 10.8748 45.7553 + 338.3 92.2933 10.454 45.7583 + 338.4 91.902 10.0332 45.7563 + 338.5 91.5005 9.60129 45.7573 + 338.6 91.1093 9.18048 45.7543 + 338.7 90.7077 8.7486 45.7623 + 338.8 90.3062 8.31672 45.7604 + 338.9 89.9252 7.87376 45.7704 + 339 89.5237 7.44188 45.7584 + 339.1 89.1221 6.99893 45.7584 + 339.2 88.7206 6.56704 45.7714 + 339.3 88.3191 6.12409 45.7674 + 339.4 87.9175 5.68113 45.7744 + 339.5 87.516 5.23818 45.7784 + 339.6 87.0938 4.79522 45.7824 + 339.7 86.682 4.35226 45.7724 + 339.8 86.2805 3.92038 45.7724 + 339.9 85.8583 3.47742 45.7794 + 340 85.4362 3.03447 45.7744 + 340.1 85.0141 2.61366 45.7834 + 340.2 84.561 2.20393 45.7684 + 340.3 84.1183 1.80527 45.7604 + 340.4 83.655 1.41768 45.7635 + 340.5 83.1917 1.03009 45.7715 + 340.6 82.749 0.63143 45.7775 + 340.7 82.265 0.254917 45.7705 + 340.8 81.7914 -0.110522 45.7805 + 340.9 81.3178 -0.498109 45.7905 + 341 80.8545 -0.874622 45.7885 + 341.1 80.4015 -1.27328 45.7935 + 341.2 79.9485 -1.67194 45.7895 + 341.3 79.4954 -2.05953 45.7855 + 341.4 79.0321 -2.45819 45.7795 + 341.5 78.5894 -2.84578 45.7755 + 341.6 78.1261 -3.23336 45.7795 + 341.7 77.6833 -3.63203 45.7715 + 341.8 77.22 -4.03069 45.7725 + 341.9 76.7773 -4.42935 45.7775 + 342 76.3243 -4.82801 45.7665 + 342.1 75.8713 -5.22667 45.7655 + 342.2 75.4285 -5.6364 45.7556 + 342.3 74.9755 -6.04614 45.7536 + 342.4 74.5328 -6.4448 45.7536 + 342.5 74.0901 -6.85453 45.7486 + 342.6 73.6473 -7.25319 45.7396 + 342.7 73.2046 -7.66293 45.7426 + 342.8 72.7619 -8.06159 45.7376 + 342.9 72.3192 -8.46025 45.7366 + 343 71.8867 -8.85891 45.7416 + 343.1 71.4337 -9.25757 45.7336 + 343.2 71.0013 -9.6673 45.7366 + 343.3 70.5688 -10.066 45.7356 + 343.4 70.1364 -10.4646 45.7466 + 343.5 69.6834 -10.8633 45.7356 + 343.6 69.251 -11.2619 45.7406 + 343.7 68.8185 -11.6606 45.7436 + 343.8 68.3861 -12.0593 45.7366 + 343.9 67.9537 -12.4579 45.7526 + 344 67.5212 -12.8455 45.7426 + 344.1 67.0888 -13.2442 45.7486 + 344.2 66.6564 -13.6318 45.7616 + 344.3 66.2342 -14.0304 45.7596 + 344.4 65.8018 -14.418 45.7686 + 344.5 65.3797 -14.8056 45.7806 + 344.6 64.9575 -15.1932 45.7837 + 344.7 64.5251 -15.5808 45.7947 + 344.8 64.0927 -15.9462 45.8027 + 344.9 63.6396 -16.3006 45.7987 + 345 63.1866 -16.6549 45.7837 + 345.1 62.7336 -16.9761 45.7887 + 345.2 62.2703 -17.2972 45.7947 + 345.3 61.7761 -17.5741 45.7957 + 345.4 61.2819 -17.8398 45.8027 + 345.5 60.7774 -18.0835 45.8077 + 345.6 60.2626 -18.3049 45.8127 + 345.7 59.7478 -18.5043 45.8157 + 345.8 59.2227 -18.6925 45.8097 + 345.9 58.6976 -18.8476 45.8037 + 346 58.1519 -18.9583 45.8017 + 346.1 57.6268 -19.058 45.8027 + 346.2 57.0914 -19.1133 45.8017 + 346.3 56.5663 -19.1576 45.8227 + 346.4 56.0412 -19.2352 45.8427 + 346.5 55.5161 -19.2795 45.8017 + 346.6 55.0013 -19.3016 45.8227 + 346.7 54.4865 -19.3238 45.8547 + 346.8 53.982 -19.357 45.8617 + 346.9 53.4775 -19.4124 45.8667 + 347 52.9936 -19.4677 45.8858 + 347.1 52.5303 -19.5009 45.8968 + 347.2 52.1493 -19.5452 45.8948 + 347.3 51.7272 -19.5785 45.8638 + 347.4 51.3462 -19.6228 45.8028 + 347.5 50.9962 -19.656 45.6928 + 347.6 50.6667 -19.6892 45.5708 + 347.7 50.3887 -19.7224 45.4118 + 347.8 50.1519 -19.7446 45.2858 + 347.9 49.9357 -19.7778 45.1188 + 348 49.74 -19.811 44.9278 + 348.1 49.5753 -19.8332 44.7428 + 348.2 49.4415 -19.8664 44.5508 + 348.3 49.3179 -19.8885 44.3618 + 348.4 49.2149 -19.9218 44.1518 + 348.5 49.1223 -19.955 43.9608 + 348.6 49.0502 -19.9771 43.7478 + 348.7 48.9781 -19.9993 43.5268 + 348.8 48.9266 -20.0214 43.3208 + 348.9 48.8649 -20.0436 43.0688 + 349 48.8237 -20.0657 42.7998 + 349.1 48.7928 -20.0879 42.5308 + 349.2 48.7516 -20.11 42.2368 + 349.3 48.7104 -20.1322 41.9208 + 349.4 48.6589 -20.1654 41.6218 + 349.5 48.5972 -20.1875 41.3268 + 349.6 48.5354 -20.1986 41.0598 + 349.7 48.4633 -20.2318 40.7908 + 349.8 48.3809 -20.254 40.5328 + 349.9 48.278 -20.2872 40.2768 + 350 48.1647 -20.3093 40.0358 + 350.1 48.0309 -20.3426 39.8138 + 350.2 47.8867 -20.3758 39.5638 + 350.3 47.7323 -20.409 39.3618 + 350.4 47.5572 -20.4311 39.1458 + 350.5 47.3616 -20.4754 38.9208 + 350.6 47.166 -20.5087 38.7398 + 350.7 46.9395 -20.553 38.5488 + 350.8 46.713 -20.5973 38.3748 + 350.9 46.4556 -20.6305 38.2198 + 351 46.1879 -20.6748 38.0688 + 351.1 45.8996 -20.7191 37.9048 + 351.2 45.5907 -20.7634 37.7408 + 351.3 45.2818 -20.8077 37.6228 + 351.4 44.942 -20.863 37.4538 + 351.5 44.592 -20.9073 37.2958 + 351.6 44.2316 -20.9516 37.1698 + 351.7 43.861 -21.007 37.0188 + 351.8 43.4594 -21.0624 36.8718 + 351.9 43.0476 -21.1177 36.7528 + 352 42.6151 -21.1842 36.6048 + 352.1 42.1724 -21.2395 36.5078 + 352.2 41.7194 -21.306 36.4238 + 352.3 41.2355 -21.3724 36.3548 + 352.4 40.7413 -21.4389 36.3168 + 352.5 40.2368 -21.5053 36.2958 + 352.6 39.722 -21.5828 36.2628 + 352.7 39.1763 -21.6604 36.2588 + 352.8 38.6409 -21.7379 36.2638 + 352.9 38.0849 -21.8154 36.2718 + 353 37.5186 -21.8929 36.2669 + 353.1 36.942 -21.9704 36.2939 + 353.2 36.3552 -22.059 36.2899 + 353.3 35.758 -22.1365 36.3069 + 353.4 35.1505 -22.2251 36.2949 + 353.5 34.5431 -22.3137 36.3109 + 353.6 33.9253 -22.4023 36.3129 + 353.7 33.2973 -22.4909 36.3119 + 353.8 32.6795 -22.5795 36.3189 + 353.9 32.0515 -22.6681 36.3219 + 354 31.444 -22.7456 36.3349 + 354.1 30.8468 -22.801 36.3479 + 354.2 30.332 -22.8785 36.3399 + 354.3 29.8069 -22.9449 36.3149 + 354.4 29.3333 -22.9892 36.3249 + 354.5 28.9215 -23.0225 36.3269 + 354.6 28.5611 -23.0557 36.3139 + 354.7 28.2625 -23.0889 36.3069 + 354.8 28.0154 -23.1221 36.2859 + 354.9 27.7992 -23.1553 36.2769 + 355 27.6036 -23.1443 36.2409 + 355.1 27.4388 -23.1 36.1969 + 355.2 27.305 -23.1 36.2179 + 355.3 27.1711 -23.0668 36.2369 + 355.4 27.0373 -23.0003 36.2399 + 355.5 26.8932 -22.9117 36.2379 + 355.6 26.749 -22.8231 36.2369 + 355.7 26.6255 -22.7235 36.2479 + 355.8 26.471 -22.6017 36.2609 + 355.9 26.3166 -22.4688 36.2809 + 356 26.1621 -22.3027 36.2649 + 356.1 25.9974 -22.1366 36.2909 + 356.2 25.8224 -21.9372 36.2949 + 356.3 25.6473 -21.7268 36.3129 + 356.4 25.462 -21.5053 36.3089 + 356.5 25.2767 -21.2728 36.3239 + 356.6 25.0811 -21.0181 36.3189 + 356.7 24.8957 -20.7302 36.3269 + 356.8 24.731 -20.4423 36.3469 + 356.9 24.5766 -20.1433 36.3439 + 357 24.4221 -19.8332 36.3559 + 357.1 24.2368 -19.501 36.3749 + 357.2 24.0823 -19.1688 36.3739 + 357.3 23.9279 -18.8144 36.3609 + 357.4 23.7632 -18.449 36.3719 + 357.5 23.5984 -18.0725 36.3729 + 357.6 23.4234 -17.696 36.3769 + 357.7 23.2381 -17.2973 36.3769 + 357.8 23.063 -16.8876 36.3829 + 357.9 22.8674 -16.4668 36.3929 + 358 22.6821 -16.046 36.3899 + 358.1 22.4865 -15.6141 36.3949 + 358.2 22.2908 -15.1601 36.3999 + 358.3 22.0849 -14.7171 36.3899 + 358.4 21.8893 -14.252 36.4009 + 358.5 21.6834 -13.7869 36.3959 + 358.6 21.4774 -13.3107 36.3949 + 358.7 21.2612 -12.8345 36.402 + 358.8 21.0553 -12.3473 36.403 + 358.9 20.8391 -11.8601 36.399 + 359 20.6229 -11.3617 36.42 + 359.1 20.4067 -10.8523 36.414 + 359.2 20.1698 -10.354 36.413 + 359.3 19.9433 -9.84462 36.419 + 359.4 19.7271 -9.33522 36.417 + 359.5 19.5006 -8.81475 36.416 + 359.6 19.2741 -8.29428 36.438 + 359.7 19.0373 -7.77381 36.432 + 359.8 18.8108 -7.25334 36.444 + 359.9 18.574 -6.7218 36.442 + 360 18.3475 -6.20133 36.458 + 360.1 18.1209 -5.68086 36.465 + 360.2 17.8841 -5.16039 36.479 + 360.3 17.6473 -4.62885 36.481 + 360.4 17.4208 -4.10838 36.49 + 360.5 17.184 -3.57684 36.484 + 360.6 16.9369 -3.05637 36.494 + 360.7 16.7104 -2.5359 36.5 + 360.8 16.4736 -2.01543 36.512 + 360.9 16.2368 -1.49496 36.517 + 361 16.0103 -0.985562 36.528 + 361.1 15.7837 -0.476166 36.531 + 361.2 15.5469 0.0221555 36.532 + 361.3 15.3307 0.49833 36.532 + 361.4 15.1042 0.985578 36.519 + 361.5 14.888 1.47283 36.513 + 361.6 14.6615 1.949 36.495 + 361.7 14.435 2.43625 36.476 + 361.8 14.2188 2.91242 36.466 + 361.9 13.9922 3.41074 36.451 + 362 13.7657 3.90907 36.449 + 362.1 13.5289 4.42954 36.454 + 362.2 13.2921 4.95001 36.451 + 362.3 13.0553 5.49262 36.442 + 362.4 12.8185 6.03524 36.451 + 362.5 12.5714 6.58893 36.448 + 362.6 12.314 7.14262 36.457 + 362.7 12.0875 7.72954 36.439 + 362.8 11.9227 8.31645 36.444 + 362.9 11.7477 8.90336 36.446 + 363 11.6036 9.49027 36.463 + 363.1 11.5109 10.0772 36.484 + 363.2 11.4697 10.6641 36.496 + 363.3 11.4594 11.2289 36.515 + 363.4 11.48 11.7826 36.524 + 363.5 11.5418 12.3141 36.532 + 363.6 11.6448 12.8346 36.547 + 363.7 11.7889 13.3329 36.558 + 363.8 11.9639 13.798 36.552 + 363.9 12.1698 14.252 36.56 + 364 12.4272 14.6728 36.556 + 364.1 12.7052 15.0604 36.567 + 364.2 13.0244 15.4148 36.568 + 364.3 13.3848 15.7248 36.554 + 364.4 13.7554 16.0017 36.56 + 364.5 14.157 16.2453 36.557 + 364.6 14.5585 16.4668 36.571 + 364.7 14.9498 16.7104 36.587 + 364.8 15.3822 16.9097 36.564 + 364.9 15.8352 17.0869 36.539 + 365 16.2882 17.2863 36.536 + 365.1 16.7516 17.4856 36.522 + 365.2 17.2252 17.696 36.51 + 365.3 17.6885 17.9064 36.521 + 365.4 18.193 18.1279 36.5389 + 365.5 18.6872 18.3383 36.5429 + 365.6 19.1917 18.5487 36.5459 + 365.7 19.7168 18.748 36.5509 + 365.8 20.2625 18.9252 36.5579 + 365.9 20.7979 19.0913 36.5609 + 366 21.3436 19.2463 36.5729 + 366.1 21.8892 19.3792 36.5849 + 366.2 22.4555 19.4789 36.5989 + 366.3 23.0115 19.5675 36.6129 + 366.4 23.5675 19.6561 36.6139 + 366.5 24.1338 19.7447 36.5989 + 366.6 24.7103 19.8111 36.5959 + 366.7 25.2869 19.8775 36.5869 + 366.8 25.8635 19.9551 36.5889 + 366.9 26.4504 20.0436 36.5809 + 367 27.0372 20.1322 36.5959 + 367.1 27.6241 20.2319 36.5979 + 367.2 28.2316 20.3316 36.6029 + 367.3 28.8287 20.4312 36.6159 + 367.4 29.4362 20.5309 36.6219 + 367.5 30.0334 20.6306 36.6329 + 367.6 30.6408 20.7413 36.6309 + 367.7 31.238 20.852 36.6469 + 367.8 31.8454 20.9739 36.6559 + 367.9 32.4529 21.0846 36.6529 + 368 33.0707 21.1953 36.6619 + 368.1 33.6781 21.3172 36.6659 + 368.2 34.2856 21.4279 36.6709 + 368.3 34.9033 21.5497 36.6619 + 368.4 35.5211 21.6715 36.6739 + 368.5 36.1286 21.7933 36.6799 + 368.6 36.7463 21.9151 36.6749 + 368.7 37.3641 22.037 36.6739 + 368.8 37.9818 22.1477 36.6748 + 368.9 38.5996 22.2695 36.6688 + 369 39.2174 22.3913 36.6608 + 369.1 39.8351 22.5242 36.6758 + 369.2 40.4632 22.6239 36.6768 + 369.3 41.0809 22.7235 36.6618 + 369.4 41.6987 22.8121 36.6648 + 369.5 42.3164 22.8897 36.6708 + 369.6 42.9342 22.9561 36.6688 + 369.7 43.552 22.9893 36.6748 + 369.8 44.1697 23.0225 36.6798 + 369.9 44.7978 23.0226 36.6718 + 370 45.4155 23.0226 36.6708 + 370.1 46.023 23.0115 36.6538 + 370.2 46.6407 22.9893 36.6708 + 370.3 47.2482 22.9672 36.6658 + 370.4 47.866 22.945 36.6688 + 370.5 48.4734 22.9118 36.6788 + 370.6 49.0912 22.8786 36.6638 + 370.7 49.7089 22.8454 36.6638 + 370.8 50.3061 22.8122 36.6668 + 370.9 50.9239 22.8011 36.6718 + 371 51.5313 22.7789 36.6858 + 371.1 52.1388 22.7568 36.6867 + 371.2 52.736 22.7568 36.6887 + 371.3 53.3331 22.7568 36.7007 + 371.4 53.9303 22.7568 36.7027 + 371.5 54.5378 22.7679 36.6987 + 371.6 55.1143 22.8011 36.7047 + 371.7 55.7115 22.8343 36.7087 + 371.8 56.2984 22.8786 36.7207 + 371.9 56.8852 22.9229 36.7157 + 372 57.4824 22.9672 36.7187 + 372.1 58.059 23.0337 36.7127 + 372.2 58.6356 23.1001 36.7287 + 372.3 59.2121 23.1666 36.7287 + 372.4 59.7784 23.2441 36.7197 + 372.5 60.3447 23.3437 36.7327 + 372.6 60.8904 23.4434 36.7287 + 372.7 61.4464 23.5652 36.7157 + 372.8 61.992 23.6981 36.7147 + 372.9 62.5274 23.831 36.6966 + 373 63.0525 24.0193 36.6966 + 373.1 63.5776 24.2186 36.6926 + 373.2 64.0718 24.4401 36.6846 + 373.3 64.5557 24.6837 36.6786 + 373.4 65.0396 24.9495 36.6676 + 373.5 65.503 25.2263 36.6846 + 373.6 65.956 25.5142 36.6846 + 373.7 66.3884 25.8465 36.6856 + 373.8 66.79 26.1897 36.6966 + 373.9 67.1812 26.5441 36.6986 + 374 67.5518 26.9095 36.6886 + 374.1 67.9122 27.2861 36.6976 + 374.2 68.2417 27.6847 36.6946 + 374.3 68.5403 28.0945 36.6866 + 374.4 68.8182 28.5153 36.6756 + 374.5 69.0551 28.9582 36.6776 + 374.6 69.2713 29.4122 36.6746 + 374.7 69.4566 29.8663 36.6736 + 374.8 69.611 30.3314 36.6705 + 374.9 69.7346 30.7965 36.6725 + 375 69.8272 31.2726 36.6715 + 375.1 69.889 31.7377 36.6765 + 375.2 69.9199 32.2028 36.6745 + 375.3 69.9508 32.6679 36.6655 + 375.4 70.0023 33.1552 36.6625 + 375.5 70.0229 33.6203 36.6565 + 375.6 70.0331 34.0965 36.6515 + 375.7 70.0537 34.5616 36.6535 + 375.8 70.0846 35.0267 36.6655 + 375.9 70.1464 35.5028 36.7045 + 376 70.1876 35.979 36.7785 + 376.1 70.2494 36.4552 36.8705 + 376.2 70.3111 36.9314 37.0105 + 376.3 70.3832 37.4075 37.1665 + 376.4 70.4656 37.8727 37.3525 + 376.5 70.5376 38.3599 37.5835 + 376.6 70.62 38.825 37.8485 + 376.7 70.7024 39.3123 38.1265 + 376.8 70.7847 39.7884 38.4515 + 376.9 70.8774 40.2646 38.7785 + 377 70.9701 40.7519 39.1205 + 377.1 71.0524 41.2391 39.4695 + 377.2 71.1348 41.7264 39.8325 + 377.3 71.2172 42.2136 40.1865 + 377.4 71.2996 42.7009 40.5345 + 377.5 71.3819 43.1992 40.8785 + 377.6 71.4849 43.6864 41.2104 + 377.7 71.5673 44.1737 41.5484 + 377.8 71.6393 44.672 41.8574 + 377.9 71.7217 45.1593 42.1524 + 378 71.7835 45.6465 42.4154 + 378.1 71.8555 46.1448 42.6484 + 378.2 71.907 46.6321 42.8854 + 378.3 71.9482 47.1304 43.0874 + 378.4 71.9791 47.6398 43.2664 + 378.5 71.9894 48.1492 43.4514 + 378.6 71.9894 48.6586 43.6214 + 378.7 71.9791 49.168 43.7714 + 378.8 71.9482 49.6885 43.9484 + 378.9 71.9173 50.209 44.0954 + 379 71.8864 50.7294 44.2584 + 379.1 71.8349 51.2499 44.4174 + 379.2 71.7835 51.7814 44.5634 + 379.3 71.732 52.313 44.7224 + 379.4 71.6805 52.8445 44.8654 + 379.5 71.629 53.3761 45.0044 + 379.6 71.5878 53.9187 45.1534 + 379.7 71.5364 54.4613 45.3014 + 379.8 71.4952 55.0039 45.4394 + 379.9 71.454 55.5576 45.5704 + 380 71.4128 56.1003 45.6684 + 380.1 71.3716 56.6539 45.7423 + 380.2 71.3407 57.2076 45.8093 + 380.3 71.2892 57.7724 45.8503 + 380.4 71.2584 58.3261 45.8733 + 380.5 71.2172 58.8909 45.9063 + 380.6 71.1863 59.4667 45.8923 + 380.7 71.1451 60.0425 45.9073 + 380.8 71.1245 60.6295 45.9073 + 380.9 71.0833 61.2164 45.9043 + 381 71.0524 61.8144 45.9013 + 381.1 71.0215 62.4013 45.8953 + 381.2 70.9906 63.0103 45.8893 + 381.3 70.9597 63.6194 45.8943 + 381.4 70.9186 64.2285 45.8943 + 381.5 70.8877 64.8486 45.8893 + 381.6 70.8671 65.4687 45.9013 + 381.7 70.8259 66.0889 45.8923 + 381.8 70.795 66.7201 45.8943 + 381.9 70.7641 67.3513 45.9083 + 382 70.7332 67.9936 45.9112 + 382.1 70.7023 68.6358 45.9212 + 382.2 70.6611 69.2781 45.9192 + 382.3 70.6302 69.9204 45.9212 + 382.4 70.5994 70.5738 45.9222 + 382.5 70.5685 71.2271 45.9362 + 382.6 70.5376 71.8805 45.9292 + 382.7 70.5067 72.5449 45.9332 + 382.8 70.4758 73.1983 45.9242 + 382.9 70.4449 73.8627 45.9212 + 383 70.414 74.5271 45.9272 + 383.1 70.4449 75.2026 45.9122 + 383.2 70.4861 75.856 45.9122 + 383.3 70.5376 76.4983 45.9261 + 383.4 70.6405 77.1406 45.9351 + 383.5 70.7744 77.7496 45.9471 + 383.6 70.9597 78.3476 45.9571 + 383.7 71.1759 78.9124 45.9771 + 383.8 71.423 79.455 45.9791 + 383.9 71.701 79.9644 45.9961 + 384 72.0099 80.4406 45.9931 + 384.1 72.3496 80.8835 46.0021 + 384.2 72.7203 81.2933 46.0111 + 384.3 73.1218 81.6587 46.0151 + 384.4 73.5542 81.9909 46.022 + 384.5 73.997 82.2899 46.024 + 384.6 74.4809 82.5446 46.025 + 384.7 74.9648 82.755 46.038 + 384.8 75.4796 82.91 46.044 + 384.9 75.9944 83.0429 46.049 + 385 76.5195 83.1315 46.05 + 385.1 77.0549 83.1869 46.058 + 385.2 77.58 83.198 46.058 + 385.3 78.105 83.1758 46.064 + 385.4 78.6404 83.1315 46.056 + 385.5 79.1655 83.0762 46.043 + 385.6 79.6803 82.9876 46.046 + 385.7 80.1848 82.8658 46.021 + 385.8 80.679 82.7218 46.016 + 385.9 81.1629 82.6111 45.9839 + 386 81.688 82.5225 45.9359 + 386.1 82.1822 82.3896 45.9229 + 386.2 82.6867 82.2567 45.9239 + 386.3 83.2118 82.1349 45.9109 + 386.4 83.7369 82.0353 45.9239 + 386.5 84.2723 81.9467 45.9489 + 386.6 84.818 81.8581 45.9749 + 386.7 85.3637 81.7584 45.9709 + 386.8 85.93 81.6588 45.9799 + 386.9 86.486 81.5812 45.9869 + 387 87.0419 81.4927 46.0019 + 387.1 87.6185 81.4151 46.0059 + 387.2 88.1848 81.3376 46.0249 + 387.3 88.782 81.2601 46.0369 + 387.4 89.3688 81.1937 46.0349 + 387.5 89.9557 81.0829 46.0448 + 387.6 90.5529 80.9611 46.0528 + 387.7 91.1397 80.8172 46.0498 + 387.8 91.706 80.6511 46.0628 + 387.9 92.2723 80.4407 46.0748 + 388 92.8077 80.2192 46.0808 + 388.1 93.3328 79.9534 46.0958 + 388.2 93.8373 79.6766 46.0978 + 388.3 94.3212 79.3665 46.0808 + 388.4 94.7845 79.0343 46.1038 + 388.5 95.2375 78.7132 46.1058 + 388.6 95.67 78.381 46.1098 + 388.7 96.0921 78.0045 46.1088 + 388.8 96.4936 77.6279 46.1158 + 388.9 96.8849 77.2404 46.1188 + 389 97.2555 76.8417 46.1208 + 389.1 97.6159 76.432 46.1308 + 389.2 97.9557 76.0222 46.1378 + 389.3 98.3057 75.6014 46.1318 + 389.4 98.6455 75.1585 46.1208 + 389.5 98.9853 74.7266 46.1388 + 389.6 99.3148 74.2837 46.1328 + 389.7 99.6648 73.8407 46.1458 + 389.8 100.015 73.3867 46.1408 + 389.9 100.375 72.9437 46.1488 + 390 100.746 72.4897 46.1518 + 390.1 101.127 72.0357 46.1608 + 390.2 101.508 71.5927 46.1558 + 390.3 101.909 71.1276 46.1608 + 390.4 102.301 70.6736 46.1728 + 390.5 102.702 70.2085 46.1628 + 390.6 103.114 69.7434 46.1678 + 390.7 103.526 69.2894 46.1728 + 390.8 103.938 68.8132 46.1658 + 390.9 104.37 68.3481 46.1818 + 391 104.792 67.883 46.1658 + 391.1 105.225 67.4068 46.1708 + 391.2 105.647 66.9307 46.1698 + 391.3 106.09 66.4545 46.1618 + 391.4 106.532 65.9673 46.1668 + 391.5 106.975 65.4911 46.1638 + 391.6 107.428 64.9928 46.1648 + 391.7 107.881 64.5055 46.1658 + 391.8 108.334 64.0072 46.1618 + 391.9 108.787 63.5089 46.1648 + 392 109.24 62.9995 46.1568 + 392.1 109.714 62.5012 46.1537 + 392.2 110.177 61.9918 46.1477 + 392.3 110.651 61.4824 46.1567 + 392.4 111.124 60.9619 46.1537 + 392.5 111.598 60.4525 46.1567 + 392.6 112.072 59.921 46.1517 + 392.7 112.535 59.3784 46.1557 + 392.8 112.988 58.8357 46.1387 + 392.9 113.431 58.2821 46.1407 + 393 113.853 57.7062 46.1387 + 393.1 114.265 57.1304 46.1337 + 393.2 114.646 56.5213 46.1487 + 393.3 115.006 55.9123 46.1357 + 393.4 115.356 55.2921 46.1447 + 393.5 115.665 54.6609 46.1077 + 393.6 115.963 54.0186 46.1267 + 393.7 116.241 53.3764 46.1277 + 393.8 116.499 52.723 46.1287 + 393.9 116.756 52.0697 46.1367 + 394 116.983 51.4052 46.1277 + 394.1 117.209 50.7408 46.1317 + 394.2 117.415 50.0653 46.1297 + 394.3 117.621 49.3898 46.1367 + 394.4 117.837 48.7143 46.1297 + 394.5 118.054 48.0277 46.1257 + 394.6 118.249 47.3411 46.1247 + 394.7 118.465 46.6546 46.1287 + 394.8 118.682 45.968 46.1317 + 394.9 118.898 45.2703 46.1357 + 395 119.124 44.5838 46.1277 + 395.1 119.351 43.8861 46.1217 + 395.2 119.567 43.1885 46.1157 + 395.3 119.804 42.4908 46.1177 + 395.4 120.03 41.7821 46.1127 + 395.5 120.257 41.0844 46.1117 + 395.6 120.483 40.3868 46.1037 + 395.7 120.71 39.6781 46.1067 + 395.8 120.947 38.9693 46.1057 + 395.9 121.173 38.2606 46.1047 + 396 121.41 37.5408 46.0967 + 396.1 121.647 36.8321 46.1047 + 396.2 121.884 36.1234 46.0987 + 396.3 122.121 35.4036 46.1027 + 396.4 122.357 34.6838 46.1097 + 396.5 122.594 33.975 46.0967 + 396.6 122.831 33.2552 46.1017 + 396.7 123.078 32.5244 46.1037 + 396.8 123.315 31.8156 46.1047 + 396.9 123.541 31.0958 46.1107 + 397 123.778 30.376 46.1167 + 397.1 124.005 29.6673 46.1147 + 397.2 124.242 28.9475 46.1197 + 397.3 124.489 28.2277 46.1177 + 397.4 124.715 27.5079 46.1207 + 397.5 124.942 26.7992 46.1307 + 397.6 125.168 26.0905 46.1317 + 397.7 125.405 25.3818 46.1337 + 397.8 125.632 24.6841 46.1297 + 397.9 125.858 23.9754 46.1357 + 398 126.085 23.2777 46.1267 + 398.1 126.27 22.5801 46.1447 + 398.2 126.424 21.8824 46.1377 + 398.3 126.589 21.1848 46.1237 + 398.4 126.733 20.4871 46.1107 + 398.5 126.805 19.7895 46.1087 + 398.6 126.847 19.1029 46.1157 + 398.7 126.857 18.4163 46.1277 + 398.8 126.836 17.7408 46.1357 + 398.9 126.775 17.0653 46.1487 + 399 126.682 16.412 46.1487 + 399.1 126.548 15.7807 46.1597 + 399.2 126.383 15.1606 46.1697 + 399.3 126.208 14.5626 46.1667 + 399.4 125.992 13.9757 46.1717 + 399.5 125.745 13.3999 46.1887 + 399.6 125.488 12.8572 46.1888 + 399.7 125.199 12.3146 46.1828 + 399.8 124.89 11.7941 46.1928 + 399.9 124.582 11.2847 46.2088 + 400 124.242 10.7864 46.2078 + 400.1 123.923 10.2881 46.1988 + 400.2 123.593 9.7787 46.2018 + 400.3 123.253 9.28037 46.2178 + 400.4 122.903 8.79312 46.2198 + 400.5 122.564 8.29479 46.2228 + 400.6 122.224 7.78539 46.2258 + 400.7 121.884 7.26492 46.2248 + 400.8 121.544 6.74445 46.2328 + 400.9 121.204 6.23505 46.2228 + 401 120.854 5.7035 46.2379 + 401.1 120.515 5.18303 46.2389 + 401.2 120.175 4.65148 46.2339 + 401.3 119.825 4.11993 46.2429 + 401.4 119.475 3.58839 46.2449 + 401.5 119.104 3.05684 46.2449 + 401.6 118.713 2.54744 46.2269 + 401.7 118.322 2.03804 46.2249 + 401.8 117.93 1.53971 46.2219 + 401.9 117.488 1.06354 46.2319 + 402 117.045 0.609504 46.2379 + 402.1 116.582 0.177621 46.2379 + 402.2 116.098 -0.232115 46.2359 + 402.3 115.614 -0.630777 46.237 + 402.4 115.099 -0.985144 46.244 + 402.5 114.574 -1.32844 46.262 + 402.6 114.049 -1.63851 46.263 + 402.7 113.503 -1.92643 46.254 + 402.8 112.957 -2.18113 46.268 + 402.9 112.391 -2.40262 46.268 + 403 111.825 -2.5798 46.27 + 403.1 111.259 -2.75699 46.279 + 403.2 110.692 -2.8788 46.273 + 403.3 110.116 -2.97847 46.284 + 403.4 109.539 -3.04492 46.2871 + 403.5 108.983 -3.11137 46.2971 + 403.6 108.417 -3.15567 46.2971 + 403.7 107.851 -3.15567 46.3001 + 403.8 107.295 -3.1446 46.3011 + 403.9 106.739 -3.11138 46.3051 + 404 106.183 -3.05602 46.3031 + 404.1 105.647 -2.98958 46.3001 + 404.2 105.112 -2.88992 46.2941 + 404.3 104.577 -2.77918 46.2881 + 404.4 104.062 -2.63522 46.2852 + 404.5 103.547 -2.46912 46.2922 + 404.6 103.053 -2.28087 46.2902 + 404.7 102.569 -2.08154 46.2902 + 404.8 102.085 -1.86007 46.2982 + 404.9 101.611 -1.61645 46.2842 + 405 101.158 -1.36175 46.2952 + 405.1 100.715 -1.08491 46.2772 + 405.2 100.283 -0.796992 46.2902 + 405.3 99.8712 -0.498001 46.2862 + 405.4 99.4594 -0.176862 46.2792 + 405.5 99.0784 0.155351 46.2732 + 405.6 98.6872 0.498638 46.2892 + 405.7 98.3165 0.852998 46.2632 + 405.8 97.9562 1.21843 46.2722 + 405.9 97.5855 1.58387 46.2603 + 406 97.2148 1.9493 46.2413 + 406.1 96.8442 2.32581 46.2533 + 406.2 96.4735 2.70232 46.2443 + 406.3 96.0926 3.07883 46.2403 + 406.4 95.7116 3.45534 46.2383 + 406.5 95.3101 3.83184 46.2253 + 406.6 94.9394 4.25265 46.2123 + 406.7 94.5996 4.66238 46.2213 + 406.8 94.2702 5.08318 46.2283 + 406.9 93.9819 5.53721 46.2303 + 407 93.7142 6.00231 46.2473 + 407.1 93.4156 6.45633 46.2443 + 407.2 93.117 6.92143 46.2133 + 407.3 92.8802 7.40868 46.2203 + 407.4 92.6331 7.87378 46.2273 + 407.5 92.3448 8.36103 46.2193 + 407.6 92.0668 8.84827 46.2343 + 407.7 91.7682 9.32445 46.2223 + 407.8 91.4696 9.80062 46.2423 + 407.9 91.1607 10.2989 46.2293 + 408 90.8622 10.7973 46.2433 + 408.1 90.5636 11.2956 46.2453 + 408.2 90.2547 11.805 46.2404 + 408.3 89.9458 12.3254 46.2354 + 408.4 89.6369 12.8459 46.2174 + 408.5 89.3074 13.3885 46.2114 + 408.6 88.978 13.9312 46.2094 + 408.7 88.6382 14.4848 46.2054 + 408.8 88.2984 15.0496 46.2044 + 408.9 87.9587 15.6144 46.1884 + 409 87.5983 16.2013 46.1784 + 409.1 87.2482 16.7882 46.2004 + 409.2 86.8673 17.3751 46.2104 + 409.3 86.5069 17.9731 46.1954 + 409.4 86.126 18.5711 46.2094 + 409.5 85.7553 19.1801 46.2204 + 409.6 85.3743 19.7892 46.2064 + 409.7 84.9934 20.4093 46.2124 + 409.8 84.6021 21.0405 46.2074 + 409.9 84.2109 21.6607 46.1954 + 410 83.8299 22.3029 46.1894 + 410.1 83.4284 22.9452 46.1884 + 410.2 83.0371 23.5875 46.1774 + 410.3 82.6356 24.2298 46.1824 + 410.4 82.234 24.8831 46.1674 + 410.5 81.8222 25.5365 46.1744 + 410.6 81.4206 26.2009 46.1724 + 410.7 81.0088 26.8432 46.1814 + 410.8 80.597 27.5076 46.1624 + 410.9 80.1851 28.161 46.1664 + 411 79.7733 28.8143 46.1584 + 411.1 79.3614 29.4788 46.1494 + 411.2 78.9393 30.1432 46.1464 + 411.3 78.5172 30.8187 46.1314 + 411.4 78.1156 31.4831 46.1304 + 411.5 77.6832 32.1586 46.1394 + 411.6 77.261 32.8452 46.1244 + 411.7 76.8389 33.5207 46.1284 + 411.8 76.4168 34.2073 46.1285 + 411.9 75.9843 34.8828 46.1085 + 412 75.5416 35.5694 46.1025 + 412.1 75.1092 36.2559 46.1115 + 412.2 74.687 36.9425 46.1125 + 412.3 74.2649 37.6623 46.0865 + 412.4 73.9045 38.3821 46.0655 + 412.5 73.5339 39.0908 46.0615 + 412.6 73.2147 39.8217 46.0815 + 412.7 72.9161 40.5526 46.1125 + 412.8 72.5763 41.2835 46.1005 + 412.9 72.2777 42.0033 46.0865 + 413 71.9997 42.7341 46.0824 + 413.1 71.7114 43.4539 46.0894 + 413.2 71.4026 44.1848 46.0784 + 413.3 71.0731 44.9046 46.0814 + 413.4 70.7436 45.6244 46.0834 + 413.5 70.3936 46.3553 46.0684 + 413.6 70.0538 47.0751 46.0634 + 413.7 69.714 47.8059 46.0554 + 413.8 69.3639 48.5368 46.0504 + 413.9 69.0036 49.2677 46.0404 + 414 68.6535 49.9875 46.0454 + 414.1 68.3034 50.7184 46.0324 + 414.2 67.9328 51.4603 46.0214 + 414.3 67.5724 52.1912 46.0274 + 414.4 67.2121 52.911 46.0334 + 414.5 66.8517 53.6529 46.0204 + 414.6 66.481 54.3949 46.0204 + 414.7 66.1207 55.1368 46.0264 + 414.8 65.7397 55.8788 46.0284 + 414.9 65.3691 56.6318 46.0314 + 415 64.9984 57.3737 46.0244 + 415.1 64.6175 58.1378 46.0324 + 415.2 64.2468 58.8908 46.0394 + 415.3 63.8659 59.6439 46.0374 + 415.4 63.4849 60.3969 46.0494 + 415.5 63.0936 61.1499 46.0504 + 415.6 62.7024 61.9029 46.0614 + 415.7 62.2906 62.6338 46.0534 + 415.8 61.8581 63.3647 46.0724 + 415.9 61.4154 64.0734 46.0604 + 416 60.9521 64.771 46.0724 + 416.1 60.4579 65.4576 46.0794 + 416.2 59.9534 66.122 46.0894 + 416.3 59.418 66.7643 46.0954 + 416.4 58.8826 67.4066 46.0974 + 416.5 58.3266 68.0157 46.1054 + 416.6 57.75 68.6136 46.1074 + 416.7 57.1734 69.2006 46.0994 + 416.8 56.5763 69.7764 46.1154 + 416.9 55.9688 70.2969 46.0994 + 417 55.3305 70.8395 46.0884 + 417.1 54.7127 71.3599 46.1034 + 417.2 54.0641 71.8472 46.1154 + 417.3 53.3948 72.3123 46.1224 + 417.4 52.7256 72.7442 46.1204 + 417.5 52.0357 73.1539 46.1244 + 417.6 51.3459 73.5193 46.1474 + 417.7 50.6458 73.8626 46.1454 + 417.8 49.9354 74.1505 46.1614 + 417.9 49.2044 74.3942 46.1744 + 418 48.4836 74.5824 46.1874 + 418.1 47.7629 74.7264 46.1944 + 418.2 47.0525 74.815 46.1944 + 418.3 46.3524 74.8482 46.1994 + 418.4 45.6523 74.8371 46.2204 + 418.5 44.9727 74.7928 46.2404 + 418.6 44.3138 74.6931 46.2364 + 418.7 43.6754 74.5603 46.2434 + 418.8 43.0577 74.372 46.2494 + 418.9 42.4708 74.1394 46.2594 + 419 41.9148 73.8737 46.2584 + 419.1 41.4 73.5747 46.2544 + 419.2 40.9058 73.2314 46.2404 + 419.3 40.4528 72.8659 46.2495 + 419.4 40.0204 72.4673 46.2465 + 419.5 39.6497 72.0354 46.2465 + 419.6 39.3202 71.5814 46.2415 + 419.7 39.0217 71.1163 46.2425 + 419.8 38.7643 70.629 46.2415 + 419.9 38.5584 70.1307 46.2245 + 420 38.3936 69.6324 46.2195 + 420.1 38.2701 69.1119 46.2275 + 420.2 38.198 68.6025 46.2285 + 420.3 38.1671 68.0931 46.2255 + 420.4 38.1671 67.5948 46.2335 + 420.5 38.2186 67.0965 46.2285 + 420.6 38.301 66.6203 46.2405 + 420.7 38.4245 66.1552 46.2475 + 420.8 38.5893 65.7012 46.2425 + 420.9 38.7643 65.2693 46.2425 + 421 39.0011 64.8485 46.2485 + 421.1 39.2379 64.4609 46.2546 + 421.2 39.5056 64.0955 46.2556 + 421.3 39.7939 63.7411 46.2586 + 421.4 40.0925 63.4089 46.2726 + 421.5 40.3602 63.0324 46.2776 + 421.6 40.6485 62.6669 46.2236 + 421.7 40.9573 62.3236 46.2306 + 421.8 41.2456 61.9582 46.2396 + 421.9 41.5133 61.5596 46.2486 + 422 41.7913 61.1609 46.2556 + 422.1 42.0487 60.729 46.2636 + 422.2 42.3164 60.2971 46.2576 + 422.3 42.5738 59.8431 46.2506 + 422.4 42.8518 59.378 46.2706 + 422.5 43.1195 58.9129 46.2686 + 422.6 43.3872 58.4146 46.2716 + 422.7 43.6549 57.9163 46.2626 + 422.8 43.9226 57.3958 46.2736 + 422.9 44.2109 56.8643 46.2706 + 423 44.4786 56.3216 46.2716 + 423.1 44.7566 55.7569 46.2876 + 423.2 45.0551 55.17 46.2676 + 423.3 45.3434 54.583 46.2786 + 423.4 45.6317 53.974 46.2826 + 423.5 45.9303 53.3538 46.2746 + 423.6 46.2392 52.7226 46.2766 + 423.7 46.5481 52.0693 46.2916 + 423.8 46.8467 51.4159 46.2746 + 423.9 47.1761 50.7404 46.2886 + 424 47.4953 50.0538 46.2966 + 424.1 47.8145 49.3562 46.2896 + 424.2 48.1542 48.6475 46.3056 + 424.3 48.4837 47.9277 46.3056 + 424.4 48.8235 47.1857 46.3066 + 424.5 49.1633 46.4549 46.3226 + 424.6 49.503 45.7018 46.3156 + 424.7 49.8634 44.9488 46.3186 + 424.8 50.2135 44.1736 46.3526 + 424.9 50.5635 43.3985 46.3747 + 425 50.9239 42.6233 46.4317 + 425.1 51.2842 41.826 46.4997 + 425.2 51.6446 41.0287 46.5627 + 425.3 52.005 40.2314 46.6297 + 425.4 52.3756 39.423 46.7127 + 425.5 52.736 38.6146 46.7687 + 425.6 53.1169 37.7951 46.8147 + 425.7 53.4773 36.9757 46.8617 + 425.8 53.8377 36.134 46.8817 + 425.9 54.1569 35.2814 46.8877 + 426 54.4657 34.4398 46.9097 + 426.1 54.7643 33.576 46.9197 + 426.2 55.0011 32.7233 46.9177 + 426.3 55.2173 31.8595 46.9157 + 426.4 55.3821 30.9958 46.9207 + 426.5 55.5159 30.132 46.9137 + 426.6 55.5983 29.2793 46.9187 + 426.7 55.6498 28.4377 46.9217 + 426.8 55.6601 27.6072 46.9207 + 426.9 55.6498 26.7877 46.9237 + 427 55.6498 25.9461 46.9257 + 427.1 55.6086 25.1156 46.9097 + 427.2 55.5468 24.2961 46.9197 + 427.3 55.4748 23.4766 46.9157 + 427.4 55.3924 22.635 46.9257 + 427.5 55.3203 21.7824 46.9267 + 427.6 55.2277 20.9407 46.9337 + 427.7 55.135 20.077 46.9277 + 427.8 55.0424 19.2132 46.9387 + 427.9 54.9291 18.3605 46.9377 + 428 54.8159 17.4857 46.9317 + 428.1 54.7026 16.6109 46.9527 + 428.2 54.5791 15.736 46.9517 + 428.3 54.4452 14.8501 46.9478 + 428.4 54.3114 13.9753 46.9598 + 428.5 54.1672 13.0894 46.9528 + 428.6 54.0231 12.1924 46.9658 + 428.7 53.8892 11.3065 46.9668 + 428.8 53.7348 10.4095 46.9618 + 428.9 53.5907 9.5236 46.9758 + 429 53.4465 8.62662 46.9808 + 429.1 53.3024 7.74071 46.9848 + 429.2 53.1582 6.8548 46.9798 + 429.3 53.0141 5.96889 46.9688 + 429.4 52.8803 5.08299 46.9778 + 429.5 52.7464 4.186 46.9788 + 429.6 52.6023 3.3001 46.9758 + 429.7 52.4684 2.41419 46.9718 + 429.8 52.3346 1.52828 46.9818 + 429.9 52.1904 0.620223 46.9768 + 430 52.0463 -0.276759 46.9758 + 430.1 51.9022 -1.19589 46.9738 + 430.2 51.7786 -2.11502 46.9728 + 430.3 51.6345 -3.03415 46.9738 + 430.4 51.4903 -3.95328 46.9798 + 430.5 51.3462 -4.87241 46.9938 + 430.6 51.202 -5.80261 47.0018 + 430.7 51.0991 -6.73281 47.0018 + 430.8 51.0167 -7.66302 47.0048 + 430.9 50.9652 -8.58215 47.0078 + 431 50.9241 -9.4902 47.0208 + 431.1 50.9344 -10.3983 47.0228 + 431.2 50.9755 -11.2952 47.0418 + 431.3 51.0785 -12.1701 47.0388 + 431.4 51.2227 -13.0338 47.0508 + 431.5 51.3977 -13.8754 47.0288 + 431.6 51.6242 -14.6838 47.0168 + 431.7 51.8816 -15.459 47.0258 + 431.8 52.1905 -16.212 47.0268 + 431.9 52.52 -16.9318 47.0278 + 432 52.8906 -17.6295 47.0328 + 432.1 53.3025 -18.2828 47.0378 + 432.2 53.7452 -18.9251 47.0287 + 432.3 54.2188 -19.512 47.0557 + 432.4 54.7233 -20.0657 47.0427 + 432.5 55.2381 -20.5862 47.0617 + 432.6 55.7838 -21.0734 47.0597 + 432.7 56.3398 -21.5164 47.0747 + 432.8 56.9267 -21.915 47.0867 + 432.9 57.5239 -22.2805 47.0927 + 433 58.121 -22.6016 47.0817 + 433.1 58.7285 -22.8785 47.1017 + 433.2 59.3565 -23.1221 47.1037 + 433.3 59.9743 -23.3325 47.1157 + 433.4 60.6024 -23.4875 47.1267 + 433.5 61.2201 -23.6093 47.1127 + 433.6 61.8276 -23.6868 47.1247 + 433.7 62.4454 -23.7422 47.1247 + 433.8 63.0425 -23.7311 47.1376 + 433.9 63.6294 -23.6979 47.1246 + 434 64.206 -23.6204 47.1296 + 434.1 64.762 -23.5207 47.1366 + 434.2 65.3076 -23.3767 47.1266 + 434.3 65.8224 -23.1885 47.1206 + 434.4 66.327 -22.9892 47.1256 + 434.5 66.8006 -22.7455 47.1246 + 434.6 67.233 -22.4798 47.1156 + 434.7 67.6654 -22.1808 47.1046 + 434.8 68.0567 -21.8596 47.1056 + 434.9 68.4067 -21.5163 47.0906 + 435 68.7362 -21.1509 47.0866 + 435.1 69.0451 -20.7633 47.0676 + 435.2 69.3643 -20.3757 47.0916 + 435.3 69.6628 -19.9438 47.0836 + 435.4 69.9408 -19.523 47.0796 + 435.5 70.2188 -19.0801 47.0676 + 435.6 70.5174 -18.6371 47.0616 + 435.7 70.816 -18.1831 47.0766 + 435.8 71.1249 -17.718 47.0626 + 435.9 71.4543 -17.2418 47.0756 + 436 71.7735 -16.7546 47.0816 + 436.1 72.0927 -16.2562 47.0716 + 436.2 72.4325 -15.7468 47.0796 + 436.3 72.7516 -15.2264 47.0696 + 436.4 73.0502 -14.6837 47.0506 + 436.5 73.3591 -14.1411 47.0606 + 436.6 73.6577 -13.5874 47.0626 + 436.7 73.9357 -13.0227 47.0576 + 436.8 74.2137 -12.4357 47.0476 + 436.9 74.471 -11.8378 47.0536 + 437 74.7284 -11.2398 47.0516 + 437.1 74.9961 -10.6418 47.0486 + 437.2 75.2535 -10.0216 47.0575 + 437.3 75.5212 -9.40151 47.0635 + 437.4 75.7992 -8.78137 47.0665 + 437.5 76.0772 -8.13909 47.0745 + 437.6 76.3655 -7.4968 47.0895 + 437.7 76.6641 -6.85452 47.0955 + 437.8 76.9627 -6.20116 47.1055 + 437.9 77.2715 -5.53673 47.0945 + 438 77.5804 -4.8723 47.0975 + 438.1 77.9099 -4.20786 47.1035 + 438.2 78.2188 -3.53236 47.1075 + 438.3 78.5482 -2.85685 47.1095 + 438.4 78.8777 -2.18135 47.1065 + 438.5 79.2072 -1.50584 47.0985 + 438.6 79.5366 -0.81926 47.1075 + 438.7 79.8764 -0.13268 47.1035 + 438.8 80.2162 0.5539 47.1045 + 438.9 80.5559 1.24048 47.1045 + 439 80.8854 1.93813 47.1065 + 439.1 81.2457 2.64686 47.1055 + 439.2 81.5855 3.35559 47.1145 + 439.3 81.9459 4.06432 47.1185 + 439.4 82.2959 4.77305 47.1215 + 439.5 82.646 5.49285 47.1285 + 439.6 83.0063 6.21265 47.1335 + 439.7 83.3667 6.93245 47.1335 + 439.8 83.7374 7.66333 47.1444 + 439.9 84.0977 8.3942 47.1324 + 440 84.4581 9.12508 47.1374 + 440.1 84.839 9.85595 47.1414 + 440.2 85.2097 10.5979 47.1354 + 440.3 85.5803 11.3399 47.1324 + 440.4 85.9613 12.0929 47.1404 + 440.5 86.3525 12.8459 47.1544 + 440.6 86.7335 13.5989 47.1554 + 440.7 87.1144 14.3519 47.1704 + 440.8 87.5056 15.105 47.1824 + 440.9 87.8969 15.8691 47.1804 + 441 88.2778 16.6332 47.1834 + 441.1 88.6794 17.3862 47.1864 + 441.2 89.0706 18.1503 47.1844 + 441.3 89.4619 18.9144 47.1883 + 441.4 89.8531 19.6785 47.1723 + 441.5 90.2443 20.4537 47.1733 + 441.6 90.6459 21.2178 47.1683 + 441.7 91.0474 21.9929 47.1713 + 441.8 91.4387 22.757 47.1583 + 441.9 91.8299 23.5211 47.1703 + 442 92.2315 24.2963 47.1793 + 442.1 92.6227 25.0493 47.1943 + 442.2 93.0242 25.8134 47.1883 + 442.3 93.4052 26.5664 47.1953 + 442.4 93.7964 27.3084 47.1963 + 442.5 94.1877 28.0614 47.1942 + 442.6 94.5686 28.7923 47.1922 + 442.7 94.9496 29.5232 47.1832 + 442.8 95.3202 30.2651 47.1772 + 442.9 95.7012 30.9849 47.1682 + 443 96.0821 31.7269 47.1692 + 443.1 96.4631 32.4467 47.1552 + 443.2 96.8337 33.1775 47.1372 + 443.3 97.2146 33.9084 47.1372 + 443.4 97.5853 34.6393 47.1272 + 443.5 97.9662 35.3702 47.1061 + 443.6 98.3472 36.1121 47.1061 + 443.7 98.7281 36.843 47.0891 + 443.8 99.1091 37.5849 47.0771 + 443.9 99.5003 38.3269 47.0711 + 444 99.8813 39.0799 47.0621 + 444.1 100.273 39.8219 47.0541 + 444.2 100.653 40.5749 47.0361 + 444.3 101.034 41.3279 47.0391 + 444.4 101.426 42.0809 47.0461 + 444.5 101.807 42.8229 47.039 + 444.6 102.198 43.5759 47.029 + 444.7 102.579 44.34 47.023 + 444.8 102.96 45.093 47.016 + 444.9 103.341 45.8461 47.017 + 445 103.732 46.5991 47.021 + 445.1 104.103 47.341 47.007 + 445.2 104.484 48.0941 47.01 + 445.3 104.875 48.836 47.001 + 445.4 105.245 49.578 47.0009 + 445.5 105.616 50.331 46.9899 + 445.6 105.956 51.084 46.9729 + 445.7 106.275 51.837 46.9559 + 445.8 106.594 52.6011 46.9539 + 445.9 106.893 53.3652 46.9459 + 446 107.15 54.1404 46.9329 + 446.1 107.387 54.9266 46.9389 + 446.2 107.593 55.7129 46.9278 + 446.3 107.758 56.4991 46.9388 + 446.4 107.902 57.2964 46.9378 + 446.5 108.036 58.0938 46.9218 + 446.6 108.139 58.8911 46.9328 + 446.7 108.221 59.6884 46.9368 + 446.8 108.303 60.4968 46.9278 + 446.9 108.375 61.2941 46.9298 + 447 108.437 62.1025 46.9288 + 447.1 108.509 62.8887 46.9328 + 447.2 108.581 63.6971 46.9268 + 447.3 108.664 64.4945 46.9187 + 447.4 108.746 65.2918 46.9207 + 447.5 108.839 66.1002 46.9127 + 447.6 108.931 66.9196 46.9027 + 447.7 109.034 67.7391 46.8857 + 447.8 109.127 68.5586 46.8837 + 447.9 109.22 69.4002 46.8777 + 448 109.322 70.2418 46.8837 + 448.1 109.436 71.0945 46.8757 + 448.2 109.539 71.9582 46.8777 + 448.3 109.642 72.8331 46.8776 + 448.4 109.755 73.7079 46.8786 + 448.5 109.868 74.5938 46.8676 + 448.6 109.981 75.4797 46.8716 + 448.7 110.105 76.3767 46.8576 + 448.8 110.228 77.2737 46.8596 + 448.9 110.342 78.1817 46.8596 + 449 110.465 79.0898 46.8546 + 449.1 110.589 80.0089 46.8635 + 449.2 110.712 80.9391 46.8545 + 449.3 110.836 81.8583 46.8595 + 449.4 110.97 82.7995 46.8535 + 449.5 111.104 83.7297 46.8585 + 449.6 111.237 84.671 46.8535 + 449.7 111.371 85.6234 46.8655 + 449.8 111.515 86.5646 46.8534 + 449.9 111.639 87.517 46.8564 + 450 111.783 88.4583 46.8514 + 450.1 111.917 89.4106 46.8584 + 450.2 112.061 90.363 46.8654 + 450.3 112.195 91.3153 46.8514 + 450.4 112.339 92.2788 46.8533 + 450.5 112.473 93.2422 46.8643 + 450.6 112.607 94.2056 46.8663 + 450.7 112.761 95.169 46.8573 + 450.8 112.895 96.1325 46.8473 + 450.9 113.029 97.107 46.8533 + 451 113.173 98.0704 46.8532 + 451.1 113.317 99.0449 46.8472 + 451.2 113.451 100.008 46.8482 + 451.3 113.574 100.983 46.8472 + 451.4 113.657 101.957 46.8182 + 451.5 113.739 102.91 46.8172 + 451.6 113.791 103.873 46.8341 + 451.7 113.801 104.825 46.8281 + 451.8 113.77 105.767 46.8391 + 451.9 113.708 106.697 46.8261 + 452 113.585 107.605 46.8311 + 452.1 113.41 108.491 46.8351 + 452.2 113.214 109.344 46.8271 + 452.3 112.967 110.163 46.826 + 452.4 112.689 110.96 46.816 + 452.5 112.37 111.724 46.818 + 452.6 112.009 112.455 46.819 + 452.7 111.608 113.142 46.828 + 452.8 111.186 113.806 46.821 + 452.9 110.743 114.415 46.809 + 453 110.249 114.991 46.815 + 453.1 109.744 115.512 46.824 + 453.2 109.209 115.999 46.827 + 453.3 108.653 116.508 46.823 + 453.4 108.118 116.984 46.795 + 453.5 107.531 117.416 46.775 + 453.6 106.944 117.859 46.783 + 453.7 106.357 118.302 46.791 + 453.8 105.77 118.745 46.768 + 453.9 105.163 119.199 46.776 + 454 104.555 119.642 46.763 + 454.1 103.948 120.096 46.759 + 454.2 103.33 120.539 46.756 + 454.3 102.692 120.982 46.756 + 454.4 102.053 121.436 46.746 + 454.5 101.415 121.89 46.752 + 454.6 100.766 122.344 46.755 + 454.7 100.107 122.809 46.739 + 454.8 99.4483 123.263 46.74 + 454.9 98.7894 123.728 46.746 + 455 98.1098 124.193 46.747 + 455.1 97.4303 124.67 46.747 + 455.2 96.7508 125.135 46.743 + 455.3 96.0506 125.622 46.747 + 455.4 95.3711 126.087 46.738 + 455.5 94.6607 126.574 46.741 + 455.6 93.9503 127.062 46.743 + 455.7 93.2501 127.549 46.746 + 455.8 92.5294 128.047 46.753 + 455.9 91.7984 128.545 46.749 + 456 91.0777 129.044 46.757 + 456.1 90.3467 129.531 46.758 + 456.2 89.6054 130.04 46.765 + 456.3 88.864 130.55 46.768 + 456.4 88.1124 131.048 46.773 + 456.5 87.3608 131.569 46.78 + 456.6 86.6092 132.078 46.77 + 456.7 85.8576 132.598 46.774 + 456.8 85.0957 133.119 46.765 + 456.9 84.3338 133.628 46.776 + 457 83.5719 134.149 46.771 + 457.1 82.7997 134.68 46.77 + 457.2 82.0275 135.201 46.773 + 457.3 81.2553 135.732 46.773 + 457.4 80.4831 136.253 46.779 + 457.5 79.6801 136.751 46.763 + 457.6 78.8564 137.249 46.768 + 457.7 78.0533 137.703 46.774 + 457.8 77.2296 138.135 46.784 + 457.9 76.3957 138.523 46.787 + 458 75.5411 138.877 46.801 + 458.1 74.6865 139.176 46.819 + 458.2 73.8217 139.431 46.837 + 458.3 72.9568 139.652 46.854 + 458.4 72.092 139.819 46.8671 + 458.5 71.2477 139.929 46.8611 + 458.6 70.3931 140.007 46.8871 + 458.7 69.5489 140.04 46.8911 + 458.8 68.7149 140.018 46.8861 + 458.9 67.8912 139.951 46.9131 + 459 67.0881 139.852 46.9271 + 459.1 66.3057 139.719 46.9391 + 459.2 65.482 139.619 46.9451 + 459.3 64.6995 139.486 46.8981 + 459.4 63.917 139.331 46.8822 + 459.5 63.1345 139.209 46.8872 + 459.6 62.3314 139.088 46.8882 + 459.7 61.5284 138.988 46.8902 + 459.8 60.715 138.899 46.8892 + 459.9 59.9016 138.811 46.8922 + 460 59.0779 138.733 46.9032 + 460.1 58.244 138.645 46.8952 + 460.2 57.4203 138.567 46.9152 + 460.3 56.5863 138.479 46.9122 + 460.4 55.7421 138.412 46.9292 + 460.5 54.9081 138.335 46.9333 + 460.6 54.0535 138.268 46.9363 + 460.7 53.2093 138.191 46.9383 + 460.8 52.365 138.124 46.9573 + 460.9 51.5001 138.058 46.9613 + 461 50.6559 137.991 46.9643 + 461.1 49.7807 137.925 46.9743 + 461.2 48.9159 137.858 46.9763 + 461.3 48.051 137.803 46.9883 + 461.4 47.1759 137.748 46.9953 + 461.5 46.311 137.681 47.0043 + 461.6 45.4359 137.615 46.9993 + 461.7 44.5607 137.559 47.0224 + 461.8 43.6856 137.515 47.0264 + 461.9 42.8207 137.46 47.0314 + 462 41.9352 137.393 47.0364 + 462.1 41.0601 137.338 47.0394 + 462.2 40.1849 137.294 47.0464 + 462.3 39.2995 137.238 47.0524 + 462.4 38.414 137.183 47.0454 + 462.5 37.5286 137.139 47.0534 + 462.6 36.6432 137.083 47.0514 + 462.7 35.7474 137.028 47.0514 + 462.8 34.862 136.972 47.0584 + 462.9 33.9662 136.917 47.0494 + 463 33.0602 136.862 47.0604 + 463.1 32.1541 136.795 47.0524 + 463.2 31.2481 136.751 47.0554 + 463.3 30.3523 136.685 47.0535 + 463.4 29.436 136.629 47.0625 + 463.5 28.5197 136.574 47.0625 + 463.6 27.6033 136.518 47.0685 + 463.7 26.687 136.452 47.0695 + 463.8 25.7707 136.397 47.0795 + 463.9 24.844 136.341 47.0755 + 464 23.9174 136.275 47.0845 + 464.1 23.0011 136.219 47.0825 + 464.2 22.0744 136.164 47.0885 + 464.3 21.1375 136.109 47.0965 + 464.4 20.2109 136.042 47.1035 + 464.5 19.2739 135.987 47.1075 + 464.6 18.3473 135.931 47.1195 + 464.7 17.4104 135.876 47.1265 + 464.8 16.4735 135.81 47.1265 + 464.9 15.5365 135.754 47.1365 + 465 14.5996 135.699 47.1315 + 465.1 13.6627 135.632 47.1425 + 465.2 12.7257 135.577 47.1425 + 465.3 11.7888 135.522 47.1645 + 465.4 10.8519 135.455 47.1565 + 465.5 9.91496 135.4 47.1755 + 465.6 8.97804 135.345 47.1926 + 465.7 8.0514 135.289 47.2566 + 465.8 7.11448 135.234 47.3196 + 465.9 6.17755 135.178 47.4036 + 466 5.26121 135.123 47.5106 + 466.1 4.33458 135.068 47.6166 + 466.2 3.41824 135.012 47.7376 + 466.3 2.49161 134.957 47.8716 + 466.4 1.57527 134.902 47.9946 + 466.5 0.669234 134.846 48.1386 + 466.6 -0.247102 134.791 48.2346 + 466.7 -1.16344 134.736 48.3376 + 466.8 -2.05918 134.68 48.4116 + 466.9 -2.97552 134.614 48.4726 + 467 -3.88156 134.558 48.5216 + 467.1 -4.77731 134.503 48.5596 + 467.2 -5.68335 134.437 48.5856 + 467.3 -6.57909 134.381 48.6046 + 467.4 -7.47484 134.326 48.5986 + 467.5 -8.36028 134.259 48.6116 + 467.6 -9.23544 134.204 48.6226 + 467.7 -10.1106 134.16 48.6536 + 467.8 -10.9754 134.093 48.6976 + 467.9 -11.8403 134.049 48.7626 + 468 -12.6949 133.983 48.8546 + 468.1 -13.5391 133.927 48.9396 + 468.2 -14.3731 133.872 49.0416 + 468.3 -15.1968 133.816 49.1516 + 468.4 -16.0102 133.761 49.3026 + 468.5 -16.8132 133.706 49.4736 + 468.6 -17.606 133.65 49.6686 + 468.7 -18.3988 133.595 49.9126 + 468.8 -19.171 133.551 50.1666 + 468.9 -19.9432 133.484 50.4366 + 469 -20.7154 133.44 50.7396 + 469.1 -21.4773 133.385 51.0576 + 469.2 -22.2289 133.329 51.3886 + 469.3 -22.9908 133.285 51.7456 + 469.4 -23.7527 133.23 52.0866 + 469.5 -24.5043 133.185 52.4596 + 469.6 -25.2559 133.13 52.8266 + 469.7 -26.0178 133.086 53.1966 + 469.8 -26.7694 133.041 53.5665 + 469.9 -27.521 132.986 53.9365 + 470 -28.2829 132.942 54.3115 + 470.1 -29.0448 132.886 54.6755 + 470.2 -29.7964 132.842 55.0415 + 470.3 -30.5583 132.798 55.3915 + 470.4 -31.3099 132.742 55.7495 + 470.5 -32.0718 132.698 56.0935 + 470.6 -32.8337 132.654 56.4195 + 470.7 -33.5956 132.598 56.7505 + 470.8 -34.3575 132.554 57.0655 + 470.9 -35.1091 132.499 57.3735 + 471 -35.871 132.455 57.6685 + 471.1 -36.6329 132.41 57.9385 + 471.2 -37.3948 132.355 58.1895 + 471.3 -38.1567 132.3 58.3995 + 471.4 -38.9186 132.255 58.5745 + 471.5 -39.6908 132.2 58.7105 + 471.6 -40.4527 132.144 58.8325 + 471.7 -41.2249 132.089 58.9005 + 471.8 -41.9971 132.045 58.9565 + 471.9 -42.7796 131.978 58.9965 + 472 -43.5724 131.923 59.0005 + 472.1 -44.3549 131.868 58.9985 + 472.2 -45.1477 131.801 59.0035 + 472.3 -45.9405 131.746 58.9955 + 472.4 -46.7435 131.69 58.9935 + 472.5 -47.5363 131.624 58.9785 + 472.6 -48.3394 131.569 58.9725 + 472.7 -49.1322 131.502 58.9754 + 472.8 -49.9456 131.436 58.9604 + 472.9 -50.7487 131.369 58.9604 + 473 -51.5517 131.314 58.9664 + 473.1 -52.3548 131.225 58.9714 + 473.2 -53.1682 131.126 58.9724 + 473.3 -53.9713 131.026 58.9764 + 473.4 -54.7847 130.904 58.9804 + 473.5 -55.5878 130.749 58.9984 + 473.6 -56.3908 130.583 59.0084 + 473.7 -57.2042 130.406 59.0164 + 473.8 -58.0279 130.24 59.0234 + 473.9 -58.831 130.052 59.0174 + 474 -59.6444 129.841 59.0274 + 474.1 -60.4474 129.653 59.0354 + 474.2 -61.2608 129.454 59.0404 + 474.3 -62.0742 129.243 59.0344 + 474.4 -62.8979 129.055 59.0494 + 474.5 -63.7113 128.845 59.0604 + 474.6 -64.5349 128.623 59.0714 + 474.7 -65.3586 128.368 59.0714 + 474.8 -66.172 128.114 59.0734 + 474.9 -67.006 127.881 59.0844 + 475 -67.8296 127.638 59.0974 + 475.1 -68.6533 127.383 59.0894 + 475.2 -69.4873 127.128 59.1033 + 475.3 -70.311 126.896 59.1123 + 475.4 -71.1449 126.641 59.1133 + 475.5 -71.9892 126.408 59.1463 + 475.6 -72.8232 126.165 59.1993 + 475.7 -73.6571 125.921 59.2813 + 475.8 -74.5014 125.689 59.3763 + 475.9 -75.3354 125.445 59.5003 + 476 -76.1797 125.201 59.6503 + 476.1 -77.0136 124.969 59.8073 + 476.2 -77.8476 124.736 59.9913 + 476.3 -78.6816 124.504 60.1853 + 476.4 -79.5156 124.282 60.3763 + 476.5 -80.3392 124.05 60.5833 + 476.6 -81.1732 123.828 60.7663 + 476.7 -81.9969 123.596 60.9633 + 476.8 -82.8206 123.374 61.1513 + 476.9 -83.6443 123.142 61.3513 + 477 -84.4576 122.92 61.5333 + 477.1 -85.2813 122.699 61.6952 + 477.2 -86.0947 122.488 61.8632 + 477.3 -86.8978 122.256 62.0162 + 477.4 -87.7009 122.045 62.1702 + 477.5 -88.4937 121.835 62.3052 + 477.6 -89.2762 121.602 62.4332 + 477.7 -90.0689 121.381 62.5672 + 477.8 -90.8411 121.16 62.6922 + 477.9 -91.6236 120.938 62.7942 + 478 -92.3958 120.717 62.9102 + 478.1 -93.1474 120.473 62.9972 + 478.2 -93.9094 120.229 63.1082 + 478.3 -94.6507 119.986 63.1952 + 478.4 -95.4023 119.742 63.2802 + 478.5 -96.1436 119.498 63.3592 + 478.6 -96.8849 119.244 63.4351 + 478.7 -97.6159 118.978 63.5001 + 478.8 -98.3366 118.712 63.5531 + 478.9 -99.0573 118.435 63.5971 + 479 -99.7678 118.147 63.6531 + 479.1 -100.478 117.86 63.7041 + 479.2 -101.178 117.55 63.7511 + 479.3 -101.868 117.228 63.7871 + 479.4 -102.548 116.896 63.8381 + 479.5 -103.207 116.553 63.8761 + 479.6 -103.866 116.187 63.9291 + 479.7 -104.525 115.822 63.9791 + 479.8 -105.173 115.446 64.0121 + 479.9 -105.801 115.058 64.0601 + 480 -106.44 114.67 64.0871 + 480.1 -107.068 114.261 64.1101 + 480.2 -107.696 113.851 64.1361 + 480.3 -108.313 113.452 64.1521 + 480.4 -108.931 113.031 64.1731 + 480.5 -109.539 112.611 64.1741 + 480.6 -110.156 112.19 64.1791 + 480.7 -110.774 111.769 64.1781 + 480.8 -111.392 111.348 64.1831 + 480.9 -111.999 110.927 64.18 + 481 -112.627 110.507 64.188 + 481.1 -113.256 110.086 64.174 + 481.2 -113.884 109.665 64.179 + 481.3 -114.512 109.244 64.179 + 481.4 -115.14 108.812 64.171 + 481.5 -115.788 108.392 64.178 + 481.6 -116.437 107.949 64.176 + 481.7 -117.086 107.517 64.169 + 481.8 -117.745 107.085 64.184 + 481.9 -118.393 106.642 64.206 + 482 -119.062 106.199 64.224 + 482.1 -119.721 105.767 64.294 + 482.2 -120.391 105.335 64.39 + 482.3 -121.06 104.892 64.49 + 482.4 -121.709 104.46 64.627 + 482.5 -122.378 104.028 64.788 + 482.6 -123.026 103.597 64.952 + 482.7 -123.675 103.165 65.125 + 482.8 -124.313 102.755 65.299 + 482.9 -124.952 102.334 65.486 + 483 -125.58 101.924 65.6659 + 483.1 -126.198 101.515 65.8489 + 483.2 -126.805 101.116 66.0299 + 483.3 -127.413 100.717 66.2159 + 483.4 -127.999 100.33 66.3949 + 483.5 -128.576 99.9534 66.5859 + 483.6 -129.163 99.5658 66.7589 + 483.7 -129.74 99.1893 66.9299 + 483.8 -130.306 98.8128 67.1199 + 483.9 -130.872 98.4363 67.2959 + 484 -131.438 98.0708 67.4819 + 484.1 -131.994 97.7054 67.6659 + 484.2 -132.561 97.3289 67.8509 + 484.3 -133.137 96.9635 68.0319 + 484.4 -133.704 96.5981 68.2179 + 484.5 -134.27 96.2215 68.4059 + 484.6 -134.836 95.8561 68.5929 + 484.7 -135.413 95.4796 68.7778 + 484.8 -135.979 95.1031 68.9508 + 484.9 -136.566 94.7266 69.1348 + 485 -137.142 94.3501 69.3128 + 485.1 -137.729 93.9736 69.4858 + 485.2 -138.316 93.5971 69.6708 + 485.3 -138.903 93.2095 69.8408 + 485.4 -139.49 92.8219 70.0128 + 485.5 -140.087 92.4344 70.1718 + 485.6 -140.684 92.0468 70.3388 + 485.7 -141.281 91.6481 70.4998 + 485.8 -141.889 91.2605 70.6558 + 485.9 -142.486 90.8508 70.8178 + 486 -143.094 90.4522 70.9708 + 486.1 -143.701 90.0535 71.1237 + 486.2 -144.308 89.6549 71.2747 + 486.3 -144.926 89.2341 71.4207 + 486.4 -145.544 88.8243 71.5667 + 486.5 -146.162 88.4146 71.7197 + 486.6 -146.79 87.9938 71.8727 + 486.7 -147.418 87.5841 72.0247 + 486.8 -148.056 87.1633 72.1727 + 486.9 -148.695 86.7314 72.3217 + 487 -149.333 86.3106 72.4577 + 487.1 -149.982 85.8787 72.6047 + 487.2 -150.641 85.4469 72.7566 + 487.3 -151.289 85.0039 72.8936 + 487.4 -151.958 84.561 73.0346 + 487.5 -152.617 84.1291 73.1816 + 487.6 -153.297 83.6751 73.3206 + 487.7 -153.966 83.2321 73.4616 + 487.8 -154.646 82.7781 73.5846 + 487.9 -155.325 82.313 73.7236 + 488 -156.015 81.859 73.8376 + 488.1 -156.705 81.405 73.9306 + 488.2 -157.395 80.9399 74.0315 + 488.3 -158.085 80.4748 74.0975 + 488.4 -158.785 80.0208 74.1575 + 488.5 -159.485 79.5557 74.2105 + 488.6 -160.185 79.0795 74.2615 + 488.7 -160.896 78.6144 74.2985 + 488.8 -161.606 78.1493 74.3035 + 488.9 -162.306 77.6842 74.3255 + 489 -163.017 77.208 74.3344 + 489.1 -163.727 76.7429 74.3314 + 489.2 -164.427 76.2668 74.3604 + 489.3 -165.127 75.8128 74.3924 + 489.4 -165.827 75.3477 74.4554 + 489.5 -166.517 74.8826 74.5364 + 489.6 -167.197 74.4285 74.6544 + 489.7 -167.876 73.9745 74.7984 + 489.8 -168.556 73.5205 74.9503 + 489.9 -169.225 73.0665 75.1143 + 490 -169.894 72.6235 75.2933 + 490.1 -170.553 72.1584 75.4713 + 490.2 -171.202 71.7044 75.6703 + 490.3 -171.851 71.2504 75.8553 + 490.4 -172.499 70.7853 76.0433 + 490.5 -173.148 70.3202 76.2173 + 490.6 -173.786 69.844 76.4102 + 490.7 -174.425 69.3568 76.5892 + 490.8 -175.053 68.8585 76.7682 + 490.9 -175.681 68.3491 76.9382 + 491 -176.299 67.8397 77.1082 + 491.1 -176.916 67.3192 77.2702 + 491.2 -177.534 66.7766 77.4412 + 491.3 -178.152 66.234 77.6012 + 491.4 -178.759 65.6803 77.7682 + 491.5 -179.356 65.1156 77.9421 + 491.6 -179.954 64.5508 78.0981 + 491.7 -180.541 63.9639 78.2611 + 491.8 -181.117 63.377 78.4161 + 491.9 -181.704 62.779 78.5651 + 492 -182.27 62.181 78.7251 + 492.1 -182.837 61.5609 78.8751 + 492.2 -183.382 60.9408 79.0141 + 492.3 -183.938 60.3096 79.1581 + 492.4 -184.484 59.6673 79.2811 + 492.5 -185.03 59.0361 79.427 + 492.6 -185.565 58.3938 79.544 + 492.7 -186.101 57.7404 79.672 + 492.8 -186.636 57.0871 79.791 + 492.9 -187.161 56.4448 79.906 + 493 -187.696 55.7915 80.008 + 493.1 -188.222 55.127 80.138 + 493.2 -188.747 54.4626 80.233 + 493.3 -189.272 53.7982 80.349 + 493.4 -189.776 53.1227 80.452 + 493.5 -190.291 52.4472 80.5539 + 493.6 -190.796 51.7606 80.6489 + 493.7 -191.3 51.074 80.7519 + 493.8 -191.805 50.3764 80.8379 + 493.9 -192.289 49.6677 80.9269 + 494 -192.772 48.97 81.0259 + 494.1 -193.246 48.2391 81.1109 + 494.2 -193.709 47.5304 81.2119 + 494.3 -194.173 46.7885 81.3049 + 494.4 -194.626 46.0576 81.3939 + 494.5 -195.069 45.3046 81.4929 + 494.6 -195.501 44.5516 81.5838 + 494.7 -195.923 43.7985 81.6728 + 494.8 -196.325 43.0234 81.7668 + 494.9 -196.726 42.2482 81.8548 + 495 -197.107 41.462 81.9278 + 495.1 -197.468 40.6757 81.9978 + 495.2 -197.828 39.8673 82.0718 + 495.3 -198.168 39.0589 82.1348 + 495.4 -198.487 38.2395 82.1798 + 495.5 -198.796 37.42 82.2198 + 495.6 -199.094 36.5895 82.2548 + 495.7 -199.383 35.7589 82.2898 + 495.8 -199.681 34.9173 82.3058 + 495.9 -199.98 34.0979 82.3038 + 496 -200.258 33.2673 82.3228 + 496.1 -200.536 32.4368 82.3268 + 496.2 -200.824 31.6173 82.3368 + 496.3 -201.113 30.8089 82.3288 + 496.4 -201.38 30.0005 82.3318 + 496.5 -201.658 29.2254 82.3377 + 496.6 -201.916 28.4613 82.3467 + 496.7 -202.183 27.7636 82.3307 + 496.8 -202.41 27.077 82.3157 + 496.9 -202.616 26.4347 82.3347 + 497 -202.822 25.8478 82.3047 + 497.1 -202.986 25.3163 82.3157 + 497.2 -203.131 24.818 82.3227 + 497.3 -203.213 24.3196 82.2937 + 497.4 -203.285 23.921 82.2897 + 497.5 -203.326 23.5445 82.3107 + 497.6 -203.337 23.1679 82.3157 + 497.7 -203.337 22.8136 82.3107 + 497.8 -203.295 22.4703 82.3057 + 497.9 -203.254 22.1602 82.3077 + 498 -203.192 21.8502 82.3067 + 498.1 -203.131 21.5622 82.3287 + 498.2 -203.059 21.2632 82.3377 + 498.3 -202.976 20.9753 82.3287 + 498.4 -202.873 20.6874 82.3267 + 498.5 -202.76 20.4105 82.3417 + 498.6 -202.647 20.1337 82.3358 + 498.7 -202.513 19.8679 82.3278 + 498.8 -202.369 19.6021 82.3348 + 498.9 -202.204 19.3364 82.3318 + 499 -202.039 19.0817 82.3298 + 499.1 -201.864 18.827 82.3208 + 499.2 -201.679 18.5723 82.3058 + 499.3 -201.473 18.3397 82.3168 + 499.4 -201.257 18.085 82.3108 + 499.5 -201.03 17.8414 82.3068 + 499.6 -200.804 17.6088 82.3048 + 499.7 -200.567 17.3763 82.3038 + 499.8 -200.299 17.1548 82.2958 + 499.9 -200.032 16.9333 82.3018 + 500 -199.764 16.7229 82.2959 + 500.1 -199.476 16.5236 82.2839 + 500.2 -199.177 16.3353 82.2839 + 500.3 -198.858 16.1581 82.2799 + 500.4 -198.539 16.0031 82.2669 + 500.5 -198.209 15.848 82.2559 + 500.6 -197.869 15.7262 82.2469 + 500.7 -197.519 15.6155 82.2599 + 500.8 -197.169 15.5158 82.2489 + 500.9 -196.809 15.4161 82.2449 + 501 -196.449 15.3275 82.237 + 501.1 -196.068 15.25 82.234 + 501.2 -195.687 15.1946 82.216 + 501.3 -195.306 15.1282 82.229 + 501.4 -194.915 15.0728 82.224 + 501.5 -194.503 15.0396 82.222 + 501.6 -194.091 15.0064 82.23 + 501.7 -193.679 15.0064 82.231 + 501.8 -193.257 15.0063 82.2191 + 501.9 -192.824 15.0285 82.2121 + 502 -192.392 15.0396 82.2201 + 502.1 -191.96 15.0728 82.2111 + 502.2 -191.537 15.1281 82.2091 + 502.3 -191.105 15.1724 82.2161 + 502.4 -190.662 15.2056 82.2181 + 502.5 -190.23 15.2389 82.2121 + 502.6 -189.797 15.2721 82.2412 + 502.7 -189.355 15.3053 82.2922 + 502.8 -188.912 15.3385 82.3392 + 502.9 -188.49 15.3607 82.3932 + 503 -188.057 15.3828 82.4582 + 503.1 -187.615 15.4049 82.5292 + 503.2 -187.203 15.4271 82.5932 + 503.3 -186.781 15.4492 82.6522 + 503.4 -186.369 15.4714 82.7093 + 503.5 -185.967 15.4935 82.7663 + 503.6 -185.566 15.5157 82.8263 + 503.7 -185.174 15.5378 82.8813 + 503.8 -184.773 15.571 82.9453 + 503.9 -184.402 15.5932 82.9813 + 504 -184.021 15.6153 83.0363 + 504.1 -183.651 15.6374 83.0833 + 504.2 -183.27 15.6596 83.1093 + 504.3 -182.899 15.6817 83.1434 + 504.4 -182.539 15.715 83.1694 + 504.5 -182.178 15.7371 83.1844 + 504.6 -181.818 15.7592 83.2124 + 504.7 -181.468 15.7925 83.2224 + 504.8 -181.108 15.8035 83.2414 + 504.9 -180.768 15.8367 83.2664 + 505 -180.428 15.8478 83.2864 + 505.1 -180.078 15.881 83.3024 + 505.2 -179.748 15.8921 83.3284 + 505.3 -179.409 15.9142 83.3395 + 505.4 -179.079 15.9364 83.3835 + 505.5 -178.739 15.9585 83.4035 + 505.6 -178.41 15.9807 83.4235 + 505.7 -178.081 16.0028 83.4595 + 505.8 -177.751 16.0139 83.4955 + 505.9 -177.411 16.036 83.5035 + 506 -177.071 16.0582 83.5435 + 506.1 -176.742 16.0803 83.5685 + 506.2 -176.402 16.0914 83.5835 + 506.3 -176.062 16.1135 83.6086 + 506.4 -175.723 16.1357 83.6266 + 506.5 -175.393 16.1468 83.6346 + 506.6 -175.053 16.1689 83.6526 + 506.7 -174.724 16.191 83.6546 + 506.8 -174.395 16.2132 83.6566 + 506.9 -174.055 16.2243 83.6526 + 507 -173.736 16.2464 83.6506 + 507.1 -173.416 16.2685 83.6586 + 507.2 -173.108 16.2907 83.6546 + 507.3 -172.788 16.3018 83.6466 + 507.4 -172.459 16.3239 83.6296 + 507.5 -172.129 16.346 83.6317 + 507.6 -171.8 16.3682 83.6287 + 507.7 -171.45 16.3793 83.6277 + 507.8 -171.11 16.4014 83.6357 + 507.9 -170.75 16.4235 83.6397 + 508 -170.369 16.4457 83.6357 + 508.1 -169.978 16.4789 83.6437 + 508.2 -169.586 16.5011 83.6437 + 508.3 -169.185 16.5232 83.6317 + 508.4 -168.773 16.5453 83.6347 + 508.5 -168.34 16.5786 83.6308 + 508.6 -167.908 16.6007 83.6578 + 508.7 -167.465 16.6339 83.6388 + 508.8 -167.012 16.6671 83.6438 + 508.9 -166.559 16.6893 83.6398 + 509 -166.086 16.7225 83.6648 + 509.1 -165.622 16.7668 83.6578 + 509.2 -165.149 16.7889 83.6398 + 509.3 -164.665 16.8221 83.6449 + 509.4 -164.171 16.8554 83.6459 + 509.5 -163.676 16.8886 83.6559 + 509.6 -163.182 16.9218 83.6429 + 509.7 -162.678 16.955 83.6569 + 509.8 -162.163 16.9882 83.6459 + 509.9 -161.648 17.0214 83.6569 + 510 -161.133 17.0657 83.6739 + 510.1 -160.608 17.0989 83.666 + 510.2 -160.083 17.1322 83.667 + 510.3 -159.558 17.1654 83.654 + 510.4 -159.023 17.1986 83.657 + 510.5 -158.487 17.2429 83.669 + 510.6 -157.941 17.2761 83.661 + 510.7 -157.406 17.3093 83.667 + 510.8 -156.85 17.3425 83.663 + 510.9 -156.315 17.3758 83.6601 + 511 -155.759 17.42 83.6711 + 511.1 -155.203 17.4643 83.6671 + 511.2 -154.657 17.4975 83.6701 + 511.3 -154.101 17.5308 83.6721 + 511.4 -153.535 17.564 83.6721 + 511.5 -152.989 17.6083 83.6671 + 511.6 -152.423 17.6526 83.6802 + 511.7 -151.856 17.6858 83.6752 + 511.8 -151.3 17.7301 83.6722 + 511.9 -150.734 17.7633 83.6782 + 512 -150.178 17.8076 83.6712 + 512.1 -149.612 17.8519 83.6782 + 512.2 -149.046 17.8851 83.6792 + 512.3 -148.479 17.9183 83.6822 + 512.4 -147.923 17.9626 83.6873 + 512.5 -147.357 17.9958 83.6843 + 512.6 -146.801 18.0401 83.6803 + 512.7 -146.245 18.0733 83.6983 + 512.8 -145.689 18.1176 83.6903 + 512.9 -145.143 18.1508 83.6893 + 513 -144.598 18.184 83.6873 + 513.1 -144.062 18.2283 83.6843 + 513.2 -143.517 18.2615 83.6834 + 513.3 -142.981 18.2948 83.6874 + 513.4 -142.446 18.339 83.6814 + 513.5 -141.921 18.3612 83.6834 + 513.6 -141.396 18.4055 83.6794 + 513.7 -140.881 18.4387 83.6754 + 513.8 -140.356 18.4719 83.6804 + 513.9 -139.841 18.5051 83.6684 + 514 -139.326 18.5384 83.6775 + 514.1 -138.811 18.5716 83.6655 + 514.2 -138.276 18.6048 83.6645 + 514.3 -137.761 18.638 83.6575 + 514.4 -137.236 18.6712 83.6645 + 514.5 -136.69 18.7044 83.6525 + 514.6 -136.155 18.7377 83.6545 + 514.7 -135.609 18.7709 83.6425 + 514.8 -135.053 18.8152 83.6465 + 514.9 -134.487 18.8484 83.6376 + 515 -133.931 18.8816 83.6316 + 515.1 -133.344 18.9148 83.6276 + 515.2 -132.757 18.948 83.6316 + 515.3 -132.15 18.9923 83.6206 + 515.4 -131.542 19.0255 83.6316 + 515.5 -130.925 19.0698 83.6296 + 515.6 -130.286 19.1141 83.6336 + 515.7 -129.638 19.1473 83.6427 + 515.8 -128.989 19.1916 83.6357 + 515.9 -128.32 19.2359 83.6337 + 516 -127.661 19.2802 83.6317 + 516.1 -126.981 19.3245 83.6437 + 516.2 -126.302 19.3688 83.6457 + 516.3 -125.622 19.4352 83.6377 + 516.4 -124.932 19.5127 83.6397 + 516.5 -124.242 19.6013 83.6468 + 516.6 -123.553 19.7121 83.6378 + 516.7 -122.863 19.8339 83.6418 + 516.8 -122.183 19.9778 83.6368 + 516.9 -121.493 20.155 83.6368 + 517 -120.814 20.3432 83.6428 + 517.1 -120.124 20.5315 83.6518 + 517.2 -119.434 20.7197 83.6528 + 517.3 -118.755 20.9301 83.6449 + 517.4 -118.065 21.1295 83.6479 + 517.5 -117.375 21.3288 83.6449 + 517.6 -116.685 21.5281 83.6649 + 517.7 -115.985 21.7164 83.6629 + 517.8 -115.295 21.9046 83.6549 + 517.9 -114.605 22.1039 83.6639 + 518 -113.905 22.2922 83.6629 + 518.1 -113.205 22.4694 83.672 + 518.2 -112.505 22.6576 83.678 + 518.3 -111.805 22.857 83.681 + 518.4 -111.105 23.0452 83.685 + 518.5 -110.405 23.2335 83.691 + 518.6 -109.694 23.4217 83.701 + 518.7 -108.994 23.61 83.709 + 518.8 -108.294 23.7982 83.713 + 518.9 -107.583 23.9865 83.711 + 519 -106.883 24.1747 83.7131 + 519.1 -106.173 24.374 83.7151 + 519.2 -105.462 24.5623 83.7171 + 519.3 -104.752 24.7395 83.7091 + 519.4 -104.042 24.9388 83.7071 + 519.5 -103.331 25.127 83.7161 + 519.6 -102.621 25.3153 83.7201 + 519.7 -101.9 25.5035 83.7131 + 519.8 -101.19 25.7029 83.7141 + 519.9 -100.479 25.8911 83.7152 + 520 -99.7584 26.0794 83.7272 + 520.1 -99.048 26.2676 83.7202 + 520.2 -98.3375 26.467 83.7212 + 520.3 -97.6168 26.6552 83.7202 + 520.4 -96.8961 26.8435 83.7372 + 520.5 -96.1753 27.0317 83.7282 + 520.6 -95.4546 27.231 83.7372 + 520.7 -94.7442 27.4082 83.7332 + 520.8 -94.0132 27.6075 83.7222 + 520.9 -93.3027 27.7958 83.7313 + 521 -92.582 27.973 83.7203 + 521.1 -91.8613 28.1612 83.7213 + 521.2 -91.1406 28.3495 83.7133 + 521.3 -90.4199 28.5377 83.7243 + 521.4 -89.6991 28.726 83.7183 + 521.5 -88.9681 28.9142 83.7283 + 521.6 -88.2577 29.1025 83.7353 + 521.7 -87.5267 29.2907 83.7263 + 521.8 -86.8059 29.479 83.7193 + 521.9 -86.0955 29.6562 83.7293 + 522 -85.3645 29.8444 83.7254 + 522.1 -84.6541 30.0216 83.7224 + 522.2 -83.9436 30.2099 83.7324 + 522.3 -83.2229 30.3981 83.7184 + 522.4 -82.5125 30.5753 83.7174 + 522.5 -81.7918 30.7635 83.7064 + 522.6 -81.0813 30.9518 83.7114 + 522.7 -80.3709 31.1511 83.7104 + 522.8 -79.6605 31.3394 83.7004 + 522.9 -78.9603 31.5498 83.6934 + 523 -78.2602 31.7602 83.7004 + 523.1 -77.5498 31.9816 83.6914 + 523.2 -76.8599 32.2253 83.6865 + 523.3 -76.1701 32.4689 83.6855 + 523.4 -75.4803 32.7236 83.6945 + 523.5 -74.7904 33.0004 83.6845 + 523.6 -74.1109 33.2773 83.6895 + 523.7 -73.4314 33.5652 83.6885 + 523.8 -72.7621 33.8642 83.7015 + 523.9 -72.0929 34.1743 83.6945 + 524 -71.4339 34.4954 83.6865 + 524.1 -70.7647 34.8276 83.6825 + 524.2 -70.116 35.1598 83.6905 + 524.3 -69.4777 35.5142 83.6865 + 524.4 -68.8393 35.8796 83.6685 + 524.5 -68.201 36.2451 83.6795 + 524.6 -67.5832 36.6326 83.6905 + 524.7 -66.9448 37.0091 83.6795 + 524.8 -66.3168 37.3857 83.6945 + 524.9 -65.699 37.7732 83.6945 + 525 -65.071 38.1719 83.6946 + 525.1 -64.4635 38.5595 83.7066 + 525.2 -63.8251 38.936 83.7156 + 525.3 -63.2074 39.3125 83.7156 + 525.4 -62.5793 39.689 83.7236 + 525.5 -61.9512 40.0655 83.7246 + 525.6 -61.3232 40.442 83.7266 + 525.7 -60.6642 40.7964 83.7346 + 525.8 -60.0053 41.1175 83.7256 + 525.9 -59.3463 41.4387 83.7236 + 526 -58.6771 41.7155 83.7236 + 526.1 -57.9976 41.9591 83.7256 + 526.2 -57.318 42.1696 83.7446 + 526.3 -56.6282 42.3357 83.7376 + 526.4 -55.9486 42.4907 83.7606 + 526.5 -55.2691 42.6789 83.7536 + 526.6 -54.5999 42.8451 83.7296 + 526.7 -53.91 42.9779 83.7086 + 526.8 -53.2099 43.1108 83.7136 + 526.9 -52.5304 43.2769 83.7136 + 527 -51.8405 43.4541 83.7186 + 527.1 -51.1713 43.6313 83.7406 + 527.2 -50.4712 43.8085 83.7536 + 527.3 -49.771 43.9635 83.7657 + 527.4 -49.0606 44.0964 83.7487 + 527.5 -48.3605 44.2071 83.7527 + 527.6 -47.6706 44.3179 83.7587 + 527.7 -46.9808 44.3954 83.7797 + 527.8 -46.291 44.5061 83.7777 + 527.9 -45.5908 44.6058 83.7447 + 528 -44.901 44.6833 83.7537 + 528.1 -44.2009 44.7387 83.7297 + 528.2 -43.511 44.8162 83.7087 + 528.3 -42.8212 44.9158 83.7357 + 528.4 -42.1108 44.9823 83.7427 + 528.5 -41.4106 45.0044 83.7347 + 528.6 -40.7208 45.0155 83.7327 + 528.7 -40.031 44.9933 83.7507 + 528.8 -39.3514 44.949 83.7597 + 528.9 -38.6822 44.8715 83.7807 + 529 -38.013 44.7829 83.7827 + 529.1 -37.3437 44.7054 83.7817 + 529.2 -36.6745 44.6279 83.7867 + 529.3 -36.0052 44.5061 83.7797 + 529.4 -35.336 44.3843 83.7737 + 529.5 -34.6667 44.2182 83.7718 + 529.6 -34.0181 44.0853 83.7598 + 529.7 -33.3797 43.9081 83.7798 + 529.8 -32.7414 43.7641 83.7948 + 529.9 -32.0721 43.6312 83.7498 + 530 -31.4338 43.443 83.6918 + 530.1 -30.7954 43.2436 83.6018 + 530.2 -30.1571 43 83.5088 + 530.3 -29.5496 42.7675 83.4008 + 530.4 -28.9524 42.5349 83.3178 + 530.5 -28.3759 42.247 83.2718 + 530.6 -27.8199 41.9258 83.2228 + 530.7 -27.3257 41.5604 83.1958 + 530.8 -26.8521 41.1617 83.1708 + 530.9 -26.4402 40.7409 83.1648 + 531 -26.0593 40.298 83.1588 + 531.1 -25.7092 39.8439 83.1648 + 531.2 -25.3385 39.3899 83.1488 + 531.3 -25.0091 38.9027 83.1498 + 531.4 -24.6899 38.4265 83.1648 + 531.5 -24.381 37.9392 83.1858 + 531.6 -24.0824 37.4409 83.2088 + 531.7 -23.7735 36.9426 83.2268 + 531.8 -23.4647 36.4442 83.2149 + 531.9 -23.1558 35.9459 83.2319 + 532 -22.8469 35.4365 83.2329 + 532.1 -22.5483 34.9271 83.2309 + 532.2 -22.2497 34.4177 83.2359 + 532.3 -21.9615 33.8972 83.2379 + 532.4 -21.6629 33.3768 83.2419 + 532.5 -21.3643 32.8563 83.2309 + 532.6 -21.0554 32.3358 83.2169 + 532.7 -20.7568 31.8043 83.2239 + 532.8 -20.4479 31.2727 83.2109 + 532.9 -20.1494 30.7301 83.2089 + 533 -19.8405 30.1764 83.1909 + 533.1 -19.5316 29.6227 83.1899 + 533.2 -19.2124 29.0579 83.1739 + 533.3 -18.8932 28.4821 83.1659 + 533.4 -18.5638 27.8952 83.1729 + 533.5 -18.224 27.2972 83.1459 + 533.6 -17.8739 26.6771 83.1579 + 533.7 -17.5239 26.0458 83.1549 + 533.8 -17.1635 25.4146 83.1419 + 533.9 -16.8031 24.7613 83.1449 + 534 -16.4325 24.1079 83.1319 + 534.1 -16.0618 23.4324 83.1339 + 534.2 -15.6706 22.768 83.1069 + 534.3 -15.2999 22.0925 83.0529 + 534.4 -14.9087 21.4169 82.9839 + 534.5 -14.5277 20.7525 82.8939 + 534.6 -14.1468 20.0881 82.802 + 534.7 -13.7761 19.4236 82.666 + 534.8 -13.4055 18.7814 82.548 + 534.9 -13.0348 18.128 82.437 + 535 -12.6538 17.4857 82.323 + 535.1 -12.2832 16.8434 82.232 + 535.2 -11.9228 16.2122 82.164 + 535.3 -11.511 15.6031 82.115 + 535.4 -11.0683 15.0162 82.069 + 535.5 -10.6255 14.4404 82.058 + 535.6 -10.1519 13.8756 82.052 + 535.7 -9.62681 13.3551 82.03 + 535.8 -9.08112 12.89 82.046 + 535.9 -8.49424 12.4581 82.05 + 536 -7.90737 12.0706 82.053 + 536.1 -7.2999 11.7273 82.072 + 536.2 -6.70273 11.3729 82.112 + 536.3 -6.11586 11.0075 82.112 + 536.4 -5.52898 10.6974 82.089 + 536.5 -4.99359 10.4316 82.123 + 536.6 -4.48908 10.1658 82.095 + 536.7 -3.96398 9.87792 82.028 + 536.8 -3.45947 9.61215 81.938 + 536.9 -3.01674 9.36852 81.827 + 537 -2.58431 9.13597 81.68 + 537.1 -2.18276 8.92557 81.513 + 537.2 -1.81211 8.73731 81.293 + 537.3 -1.46204 8.54905 81.057 + 537.4 -1.15316 8.40509 80.826 + 537.5 -0.895756 8.27221 80.593 + 537.6 -0.648651 8.15039 80.373 + 537.7 -0.432434 8.03965 80.165 + 537.8 -0.236809 7.95106 79.942 + 537.9 -0.0617763 7.87354 79.746 + 538 0.0823684 7.8071 79.55 + 538.1 0.216217 7.74066 79.364 + 538.2 0.350066 7.68529 79.185 + 538.3 0.473618 7.62992 79.019 + 538.4 0.586875 7.5967 78.851 + 538.5 0.689835 7.56347 78.689 + 538.6 0.792796 7.51918 78.519 + 538.7 0.88546 7.49703 78.34 + 538.8 0.967829 7.47488 78.138 + 538.9 1.0399 7.45273 77.917 + 539 1.11197 7.43059 77.677 + 539.1 1.19434 7.41951 77.436 + 539.2 1.24582 7.40844 77.185 + 539.3 1.31789 7.39736 76.906 + 539.4 1.35908 7.38629 76.65 + 539.5 1.42085 7.37521 76.375 + 539.6 1.46204 7.36414 76.11 + 539.7 1.51352 7.35307 75.796 + 539.8 1.5547 7.35307 75.464 + 539.9 1.59589 7.34199 75.126 + 540 1.62677 7.33092 74.754 + 540.1 1.65766 7.33092 74.37 + 540.2 1.68855 7.31984 73.993 + 540.3 1.71944 7.31984 73.582 + 540.4 1.74003 7.30877 73.167 + 540.5 1.77092 7.30877 72.772 + 540.6 1.79151 7.29769 72.352 + 540.7 1.80181 7.30877 71.951 + 540.8 1.8121 7.29769 71.535 + 540.9 1.83269 7.30877 71.142 + 541 1.84299 7.30876 70.733 + 541.1 1.85329 7.30876 70.323 + 541.2 1.85329 7.31984 69.935 + 541.3 1.85329 7.31984 69.534 + 541.4 1.86358 7.31984 69.127 + 541.5 1.86358 7.34198 68.725 + 541.6 1.87388 7.34198 68.331 + 541.7 1.87388 7.34198 67.932 + 541.8 1.87388 7.34198 67.53 + 541.9 1.87388 7.34198 67.135 + 542 1.87388 7.34198 66.724 + 542.1 1.87388 7.34198 66.314 + 542.2 1.86358 7.34198 65.925 + 542.3 1.86358 7.34198 65.523 + 542.4 1.85328 7.34198 65.117 + 542.5 1.84299 7.34198 64.715 + 542.6 1.8224 7.34198 64.311 + 542.7 1.8121 7.34198 63.909 + 542.8 1.8018 7.34198 63.52 + 542.9 1.78121 7.34198 63.121 + 543 1.77092 7.36413 62.727 + 543.1 1.75032 7.3752 62.317 + 543.2 1.72973 7.3752 61.93 + 543.3 1.69884 7.38627 61.526 + 543.4 1.67825 7.38627 61.121 + 543.5 1.65766 7.39734 60.718 + 543.6 1.62677 7.40842 60.329 + 543.7 1.58559 7.41949 59.911 + 543.8 1.5547 7.43056 59.502 + 543.9 1.51351 7.46379 59.077 + 544 1.48263 7.47486 58.688 + 544.1 1.44144 7.47486 58.324 + 544.2 1.40026 7.47486 57.959 + 544.3 1.37967 7.49701 57.643 + 544.4 1.36937 7.50808 57.338 + 544.5 1.34878 7.50808 57.056 + 544.6 1.33848 7.50808 56.801 + 544.7 1.32819 7.50808 56.554 + 544.8 1.31789 7.497 56.342 + 544.9 1.31789 7.50808 56.108 + 545 1.31789 7.51915 55.887 + 545.1 1.31789 7.51915 55.659 + 545.2 1.32819 7.53022 55.446 + 545.3 1.32819 7.5413 55.208 + 545.4 1.31789 7.5413 54.99 + 545.5 1.30759 7.55237 54.76 + 545.6 1.30759 7.55237 54.513 + 545.7 1.30759 7.55237 54.265 + 545.8 1.2973 7.56344 54.015 + 545.9 1.287 7.56344 53.762 + 546 1.27671 7.56344 53.508 + 546.1 1.26641 7.56344 53.263 + 546.2 1.25611 7.56344 53.017 + 546.3 1.24582 7.55237 52.756 + 546.4 1.22522 7.55237 52.496 + 546.5 1.21493 7.55237 52.231 + 546.6 1.20463 7.54129 51.98 + 546.7 1.19434 7.54129 51.715 + 546.8 1.18404 7.54129 51.476 + 546.9 1.17374 7.53022 51.24 + 547 1.16345 7.53022 51.004 + 547.1 1.15315 7.53022 50.751 + 547.2 1.15315 7.53022 50.493 + 547.3 1.15315 7.51914 50.265 + 547.4 1.14286 7.53022 49.999 + 547.5 1.13256 7.53022 49.743 + 547.6 1.12226 7.53022 49.494 + 547.7 1.12226 7.53022 49.248 + 547.8 1.11197 7.51914 48.975 + 547.9 1.11197 7.51914 48.715 + 548 1.11197 7.51914 48.466 + 548.1 1.10167 7.51914 48.226 + 548.2 1.08108 7.50807 47.98 + 548.3 1.07078 7.50807 47.727 + 548.4 1.06049 7.50807 47.511 + 548.5 1.0296 7.50807 47.275 + 548.6 1.0193 7.48592 47.019 + 548.7 1.0193 7.47484 46.754 + 548.8 0.998712 7.46377 46.517 + 548.9 0.988416 7.43055 46.293 + 549 0.97812 7.4084 46.07 + 549.1 0.97812 7.36411 45.846 + 549.2 0.97812 7.31981 45.617 + 549.3 0.998712 7.26444 45.407 + 549.4 1.0193 7.20907 45.192 + 549.5 1.0296 7.14263 44.994 + 549.6 1.06049 7.04296 44.771 + 549.7 1.10167 6.95437 44.579 + 549.8 1.14286 6.86578 44.389 + 549.9 1.19434 6.76612 44.193 + 550 1.23552 6.65538 44.001 + 550.1 1.287 6.55571 43.767 + 550.2 1.30759 6.46712 43.524 + 550.3 1.33848 6.40068 43.29 + 550.4 1.37966 6.32316 43.025 + 550.5 1.40025 6.25672 42.761 + 550.6 1.42085 6.20135 42.471 + 550.7 1.43114 6.1792 42.14 + 550.8 1.43114 6.15705 41.825 + 550.9 1.43114 6.14598 41.468 + 551 1.44144 6.14598 41.091 + 551.1 1.45173 6.12383 40.739 + 551.2 1.46203 6.11276 40.374 + 551.3 1.47233 6.12383 39.984 + 551.4 1.48262 6.1349 39.605 + 551.5 1.50321 6.15705 39.241 + 551.6 1.5341 6.15705 38.862 + 551.7 1.56499 6.16812 38.498 + 551.8 1.58558 6.16812 38.12 + 551.9 1.60617 6.15705 37.748 + 552 1.62677 6.15705 37.359 + 552.1 1.65765 6.16812 36.964 + 552.2 1.68854 6.1792 36.552 + 552.3 1.69884 6.17919 36.154 + 552.4 1.70913 6.17919 35.749 + 552.5 1.71943 6.19027 35.341 + 552.6 1.74002 6.20134 34.943 + 552.7 1.75032 6.21241 34.543 + 552.8 1.77091 6.22349 34.148 + 552.9 1.77091 6.23456 33.767 + 553 1.7915 6.24564 33.381 + 553.1 1.7915 6.25671 32.978 + 553.2 1.7915 6.26778 32.588 + 553.3 1.8018 6.26778 32.186 + 553.4 1.7915 6.26778 31.806 + 553.5 1.8018 6.26778 31.396 + 553.6 1.8018 6.26778 30.996 + 553.7 1.8018 6.26778 30.58 + 553.8 1.7915 6.28993 30.177 + 553.9 1.7915 6.28993 29.781 + 554 1.7915 6.28993 29.387 + 554.1 1.80179 6.28993 28.985 + 554.2 1.80179 6.27885 28.595 + 554.3 1.7812 6.27885 28.202 + 554.4 1.7812 6.28992 27.816 + 554.5 1.7812 6.28992 27.448 + 554.6 1.7915 6.28992 27.085 + 554.7 1.7812 6.301 26.742 + 554.8 1.7812 6.301 26.421 + 554.9 1.77091 6.31207 26.095 + 555 1.76061 6.31207 25.776 + 555.1 1.75031 6.32314 25.463 + 555.2 1.74002 6.33422 25.16 + 555.3 1.71943 6.34529 24.864 + 555.4 1.69883 6.34529 24.573 + 555.5 1.67824 6.34529 24.279 + 555.6 1.65765 6.33422 23.995 + 555.7 1.61647 6.34529 23.711 + 555.8 1.60617 6.34529 23.41 + 555.9 1.58558 6.34529 23.118 + 556 1.55469 6.35636 22.836 + 556.1 1.5341 6.35636 22.54 + 556.2 1.51351 6.35636 22.265 + 556.3 1.49291 6.34529 21.976 + 556.4 1.46203 6.34529 21.677 + 556.5 1.44143 6.34529 21.403 + 556.6 1.42084 6.34529 21.112 + 556.7 1.38995 6.33421 20.837 + 556.8 1.36936 6.32314 20.556 + 556.9 1.35907 6.31206 20.264 + 557 1.33847 6.31206 19.998 + 557.1 1.31788 6.30099 19.714 + 557.2 1.31788 6.30099 19.443 + 557.3 1.29729 6.28992 19.159 + 557.4 1.28699 6.27884 18.871 + 557.5 1.2767 6.26777 18.589 + 557.6 1.2664 6.25669 18.318 + 557.7 1.25611 6.25669 18.034 + 557.8 1.24581 6.24562 17.752 + 557.9 1.24581 6.23455 17.466 + 558 1.22522 6.22347 17.201 + 558.1 1.22522 6.20132 16.92 + 558.2 1.20463 6.20132 16.64 + 558.3 1.17374 6.19025 16.361 + 558.4 1.16344 6.19025 16.08 + 558.5 1.15315 6.17917 15.801 + 558.6 1.14285 6.17917 15.565 + 558.7 1.14285 6.1681 15.346 + 558.8 1.15315 6.15703 15.148 + 558.9 1.15315 6.15703 15.01 + 559 1.16344 6.14595 14.911 + 559.1 1.18403 6.14595 14.832 + 559.2 1.20463 6.14595 14.788 + 559.3 1.22522 6.14595 14.771 + 559.4 1.24581 6.14595 14.758 + 559.5 1.25611 6.15703 14.767 + 559.6 1.2664 6.15703 14.783 + 559.7 1.28699 6.14595 14.803 + 559.8 1.31788 6.13488 14.828 + 559.9 1.33847 6.11273 14.834 + 560 1.36936 6.09058 14.851 + 560.1 1.41054 6.03521 14.869 + 560.2 1.44143 5.97985 14.868 + 560.3 1.49291 5.9134 14.886 + 560.4 1.54439 5.83589 14.885 + 560.5 1.59587 5.73622 14.879 + 560.6 1.64735 5.63656 14.894 + 560.7 1.69883 5.54797 14.955 + 560.8 1.7709 5.43723 15.011 + 560.9 1.80179 5.38186 15.03 + 561 1.83268 5.2822 15.071 + 561.1 1.88416 5.18253 15.088 + 561.2 1.92534 5.09394 15.121 + 561.3 1.94593 5.01643 15.141 + 561.4 1.93564 4.93891 15.142 + 561.5 1.92534 4.87247 15.16 + 561.6 1.90475 4.78388 15.167 + 561.7 1.87386 4.69529 15.154 + 561.8 1.82238 4.6067 15.155 + 561.9 1.75031 4.51811 15.146 + 562 1.67824 4.40737 15.146 + 562.1 1.58558 4.3077 15.125 + 562.2 1.48262 4.20804 15.133 + 562.3 1.36936 4.08623 15.125 + 562.4 1.23551 3.97549 15.112 + 562.5 1.10167 3.8426 15.116 + 562.6 0.957523 3.72079 15.128 + 562.7 0.81338 3.59898 15.149 + 562.8 0.658941 3.4661 15.196 + 562.9 0.504502 3.34428 15.264 + 563 0.350062 3.2114 15.327 + 563.1 0.195623 3.07851 15.417 + 563.2 0.0411838 2.94563 15.485 + 563.3 -0.0823676 2.83489 15.546 + 563.4 -0.195623 2.73523 15.583 + 563.5 -0.319174 2.64664 15.608 + 563.6 -0.422134 2.55805 15.649 + 563.7 -0.504502 2.4916 15.688 + 563.8 -0.576573 2.43623 15.76 + 563.9 -0.617757 2.39194 15.844 + 564 -0.658941 2.35872 15.936 + 564.1 -0.700125 2.33657 16.066 + 564.2 -0.731013 2.3255 16.189 + 564.3 -0.751604 2.30335 16.334 + 564.4 -0.782492 2.29227 16.509 + 564.5 -0.792788 2.27013 16.701 + 564.6 -0.81338 2.25905 16.887 + 564.7 -0.823676 2.24798 17.081 + 564.8 -0.833972 2.23691 17.282 + 564.9 -0.844268 2.22583 17.484 + 565 -0.854564 2.22583 17.662 + 565.1 -0.86486 2.21476 17.858 + 565.2 -0.86486 2.21476 18.016 + 565.3 -0.875156 2.20369 18.163 + 565.4 -0.875156 2.19261 18.272 + 565.5 -0.875156 2.19261 18.327 + 565.6 -0.854564 2.19261 18.41 + 565.7 -0.844268 2.20369 18.432 + 565.8 -0.823676 2.22583 18.435 + 565.9 -0.782493 2.24798 18.422 + 566 -0.731013 2.27013 18.427 + 566.1 -0.658941 2.30335 18.425 + 566.2 -0.576573 2.34764 18.395 + 566.3 -0.463318 2.40301 18.393 + 566.4 -0.350062 2.46946 18.379 + 566.5 -0.216215 2.5359 18.367 + 566.6 -0.0720717 2.60234 18.349 + 566.7 0.0411838 2.65771 18.38 + 566.8 0.144143 2.71308 18.375 + 566.9 0.247103 2.75737 18.35 + 567 0.360358 2.81274 18.361 + 567.1 0.442726 2.84597 18.354 + 567.2 0.504502 2.87919 18.359 + 567.3 0.555982 2.91241 18.345 + 567.4 0.597165 2.92348 18.344 + 567.5 0.617757 2.93456 18.329 + 567.6 0.648645 2.9567 18.335 + 567.7 0.679533 2.96778 18.341 + 567.8 0.700125 2.97885 18.327 + 567.9 0.731013 2.97885 18.336 + 568 0.761901 2.96778 18.338 + 568.1 0.81338 2.93456 18.323 + 568.2 0.854564 2.91241 18.32 + 568.3 0.91634 2.85704 18.327 + 568.4 0.988412 2.7906 18.323 + 568.5 1.08108 2.69093 18.349 + 568.6 1.16344 2.58019 18.338 + 568.7 1.2664 2.45838 18.353 + 568.8 1.36936 2.31442 18.364 + 568.9 1.48262 2.14832 18.376 + 569 1.58558 1.96006 18.373 + 569.1 1.69883 1.77181 18.376 + 569.2 1.80179 1.57248 18.379 + 569.3 1.90475 1.32886 18.387 + 569.4 1.99742 1.10738 18.385 + 569.5 2.09008 0.852682 18.391 + 569.6 2.19304 0.609059 18.387 + 569.7 2.2857 0.354362 18.395 + 569.8 2.36807 0.0775167 18.38 + 569.9 2.47103 -0.188254 18.395 + 570 2.56369 -0.465099 18.399 + 570.1 2.66665 -0.73087 18.391 + 570.2 2.77991 -1.00772 18.388 + 570.3 2.87257 -1.28456 18.399 + 570.4 2.98583 -1.5614 18.396 + 570.5 3.08879 -1.82718 18.39 + 570.6 3.19175 -2.09295 18.371 + 570.7 3.29471 -2.35872 18.386 + 570.8 3.39767 -2.62449 18.39 + 570.9 3.50063 -2.87919 18.381 + 571 3.59329 -3.13388 18.382 + 571.1 3.69625 -3.38858 18.373 + 571.2 3.79921 -3.6322 18.388 + 571.3 3.89187 -3.8869 18.374 + 571.4 3.99483 -4.13052 18.391 + 571.5 4.0875 -4.37415 18.387 + 571.6 4.19046 -4.61777 18.375 + 571.7 4.28312 -4.87247 18.383 + 571.8 4.38608 -5.11609 18.384 + 571.9 4.48904 -5.37079 18.378 + 572 4.60229 -5.63656 18.373 + 572.1 4.70525 -5.89126 18.382 + 572.2 4.80821 -6.1681 18.381 + 572.3 4.92147 -6.44495 18.392 + 572.4 5.04502 -6.73287 18.379 + 572.5 5.15828 -7.03186 18.393 + 572.6 5.27153 -7.31978 18.394 + 572.7 5.38479 -7.6077 18.396 + 572.8 5.46716 -7.84025 18.384 + 572.9 5.55982 -8.0728 18.37 + 573 5.65248 -8.30534 18.381 + 573.1 5.73485 -8.47145 18.367 + 573.2 5.79663 -8.63756 18.374 + 573.3 5.84811 -8.7483 18.382 + 573.4 5.87899 -8.81474 18.374 + 573.5 5.90988 -8.87011 18.383 + 573.6 5.93047 -8.90333 18.385 + 573.7 5.93047 -8.9144 18.372 + 573.8 5.94077 -8.90333 18.372 + 573.9 5.93047 -8.85903 18.364 + 574 5.92018 -8.80367 18.361 + 574.1 5.88929 -8.71508 18.362 + 574.2 5.84811 -8.61541 18.36 + 574.3 5.81722 -8.4936 18.353 + 574.4 5.76574 -8.34964 18.347 + 574.5 5.70396 -8.18353 18.347 + 574.6 5.64219 -8.00635 18.332 + 574.7 5.57012 -7.80702 18.334 + 574.8 5.49804 -7.58555 18.336 + 574.9 5.40538 -7.34192 18.344 + 575 5.32301 -7.0983 18.329 + 575.1 5.23035 -6.82146 18.317 + 575.2 5.13768 -6.54461 18.324 + 575.3 5.02443 -6.24562 18.317 + 575.4 4.92147 -5.94663 18.315 + 575.5 4.80821 -5.62549 18.319 + 575.6 4.69496 -5.29327 18.323 + 575.7 4.5817 -4.96106 18.322 + 575.8 4.45815 -4.61777 18.316 + 575.9 4.34489 -4.26341 18.315 + 576 4.21105 -3.92012 18.323 + 576.1 4.0875 -3.55469 18.323 + 576.2 3.96394 -3.18925 18.311 + 576.3 3.84039 -2.82382 18.311 + 576.4 3.70655 -2.45838 18.314 + 576.5 3.5727 -2.0708 18.318 + 576.6 3.43885 -1.70536 18.302 + 576.7 3.305 -1.31778 18.299 + 576.8 3.17115 -0.941272 18.282 + 576.9 3.03731 -0.542616 18.28 + 577 2.90346 -0.155033 18.275 + 577.1 2.75932 0.243624 18.282 + 577.2 2.62547 0.64228 18.269 + 577.3 2.48133 1.05201 18.264 + 577.4 2.33718 1.45067 18.264 + 577.5 2.19304 1.8604 18.256 + 577.6 2.0386 2.2812 18.243 + 577.7 1.89446 2.70201 18.23 + 577.8 1.74002 3.12281 18.24 + 577.9 1.58558 3.54361 18.225 + 578 1.43114 3.95334 18.251 + 578.1 1.2664 4.37415 18.237 + 578.2 1.10167 4.78388 18.26 + 578.3 0.936932 5.18254 18.257 + 578.4 0.772196 5.55904 18.247 + 578.5 0.607461 5.93555 18.253 + 578.6 0.442726 6.30099 18.254 + 578.7 0.267695 6.65535 18.265 + 578.8 0.113255 6.99864 18.244 + 578.9 -0.0617757 7.33085 18.243 + 579 -0.226511 7.66307 18.232 + 579.1 -0.391246 7.98421 18.246 + 579.2 -0.566277 8.30535 18.236 + 579.3 -0.731013 8.60434 18.236 + 579.4 -0.906044 8.9144 18.249 + 579.5 -1.08107 9.2134 18.237 + 579.6 -1.24581 9.51239 18.229 + 579.7 -1.42084 9.81138 18.224 + 579.8 -1.60617 10.0993 18.228 + 579.9 -1.7709 10.3872 18.239 + 580 -1.95623 10.6862 18.234 + 580.1 -2.13126 10.9631 18.225 + 580.2 -2.31659 11.251 18.238 + 580.3 -2.50192 11.5389 18.238 + 580.4 -2.67695 11.8157 18.226 + 580.5 -2.86227 12.1147 18.217 + 580.6 -3.0373 12.3916 18.222 + 580.7 -3.23293 12.6795 18.226 + 580.8 -3.41825 12.9563 18.228 + 580.9 -3.60358 13.2443 18.217 + 581 -3.78891 13.5322 18.218 + 581.1 -3.98453 13.809 18.233 + 581.2 -4.16986 14.0969 18.219 + 581.3 -4.36548 14.3849 18.216 + 581.4 -4.5611 14.6728 18.222 + 581.5 -4.75673 14.9496 18.206 + 581.6 -4.94205 15.2375 18.205 + 581.7 -5.14797 15.5255 18.22 + 581.8 -5.3436 15.8134 18.217 + 581.9 -5.52892 16.0902 18.212 + 582 -5.72455 16.3781 18.192 + 582.1 -5.92017 16.6661 18.201 + 582.2 -6.1055 16.9429 18.199 + 582.3 -6.23934 17.1644 18.191 + 582.4 -6.38349 17.3859 18.173 + 582.5 -6.51733 17.5963 18.163 + 582.6 -6.64088 17.7734 18.162 + 582.7 -6.75414 17.9174 18.175 + 582.8 -6.82621 18.0503 18.176 + 582.9 -6.88799 18.15 18.153 + 583 -6.92917 18.2164 18.147 + 583.1 -6.94976 18.2607 18.132 + 583.2 -6.96006 18.2939 18.108 + 583.3 -6.96006 18.2939 18.094 + 583.4 -6.92917 18.2607 18.085 + 583.5 -6.87769 18.2053 18.08 + 583.6 -6.80562 18.1167 18.08 + 583.7 -6.71296 18.006 18.072 + 583.8 -6.5997 17.862 18.071 + 583.9 -6.46585 17.6959 18.091 + 584 -6.32171 17.4966 18.098 + 584.1 -6.14668 17.2751 18.097 + 584.2 -5.96135 17.0315 18.111 + 584.3 -5.75543 16.7657 18.107 + 584.4 -5.53922 16.4667 18.121 + 584.5 -5.31271 16.1567 18.125 + 584.6 -5.06561 15.8355 18.12 + 584.7 -4.80821 15.4812 18.13 + 584.8 -4.54051 15.1157 18.132 + 584.9 -4.27282 14.7503 18.137 + 585 -3.99483 14.3516 18.125 + 585.1 -3.69625 13.953 18.094 + 585.2 -3.39766 13.5433 18.109 + 585.3 -3.09908 13.1224 18.106 + 585.4 -2.77991 12.6795 18.091 + 585.5 -2.47103 12.2365 18.085 + 585.6 -2.14156 11.7936 18.074 + 585.7 -1.82238 11.3285 18.068 + 585.8 -1.49291 10.8634 18.056 + 585.9 -1.15315 10.3872 18.048 + 586 -0.81338 9.92212 18.036 + 586.1 -0.473614 9.43487 18.036 + 586.2 -0.123551 8.94763 18.024 + 586.3 0.226511 8.4493 18.015 + 586.4 0.576573 7.96206 18.01 + 586.5 0.926636 7.46374 18.014 + 586.6 1.2767 6.95434 18.01 + 586.7 1.62676 6.45602 17.994 + 586.8 1.97682 5.9577 17.998 + 586.9 2.32689 5.45938 17.99 + 587 2.68724 4.96106 17.984 + 587.1 3.03731 4.47381 17.988 + 587.2 3.38737 3.97549 17.989 + 587.3 3.71684 3.47717 17.985 + 587.4 4.0772 2.98992 17.978 + 587.5 4.43756 2.4916 17.966 + 587.6 4.77732 1.99328 17.979 + 587.7 5.12739 1.50604 17.975 + 587.8 5.47745 1.00772 17.973 + 587.9 5.81722 0.509396 17.984 + 588 6.17757 0.011075 17.981 + 588.1 6.51734 -0.487246 17.977 + 588.2 6.85711 -0.985566 17.978 + 588.3 7.20717 -1.47281 17.977 + 588.4 7.55723 -1.98221 17.981 + 588.5 7.897 -2.46945 17.975 + 588.6 8.23677 -2.9567 17.968 + 588.7 8.58683 -3.44395 17.962 + 588.8 8.9163 -3.94227 17.955 + 588.9 9.25607 -4.41844 17.96 + 589 9.59583 -4.89461 17.96 + 589.1 9.9356 -5.37079 17.948 + 589.2 10.2651 -5.84696 17.948 + 589.3 10.5945 -6.31206 17.939 + 589.4 10.924 -6.77716 17.942 + 589.5 11.2535 -7.23118 17.943 + 589.6 11.5727 -7.68521 17.926 + 589.7 11.9021 -8.13923 17.936 + 589.8 12.211 -8.58219 17.932 + 589.9 12.5302 -9.01406 17.924 + 590 12.8288 -9.44594 17.931 + 590.1 13.1376 -9.86674 17.93 + 590.2 13.4362 -10.2875 17.923 + 590.3 13.7348 -10.6973 17.933 + 590.4 14.0231 -11.0959 17.91 + 590.5 14.3011 -11.4946 17.926 + 590.6 14.5791 -11.8711 17.908 + 590.7 14.8571 -12.2476 17.91 + 590.8 15.1248 -12.6352 17.904 + 590.9 15.3822 -13.0006 17.898 + 591 15.6396 -13.3661 17.891 + 591.1 15.897 -13.7204 17.873 + 591.2 16.1544 -14.0859 17.878 + 591.3 16.3912 -14.4402 17.871 + 591.4 16.6486 -14.8057 17.865 + 591.5 16.8854 -15.16 17.86 + 591.6 17.1325 -15.5144 17.871 + 591.7 17.3693 -15.8577 17.869 + 591.8 17.5752 -16.1677 17.848 + 591.9 17.7708 -16.4446 17.83 + 592 17.9665 -16.7214 17.85 + 592.1 18.1312 -16.954 17.822 + 592.2 18.2753 -17.1533 17.823 + 592.3 18.4092 -17.3083 17.8349 + 592.4 18.543 -17.4301 17.8069 + 592.5 18.6666 -17.5409 17.8189 + 592.6 18.7798 -17.6073 17.8199 + 592.7 18.924 -17.6848 17.8279 + 592.8 19.0681 -17.7181 17.8209 + 592.9 19.2329 -17.7402 17.8299 + 593 19.4182 -17.7513 17.8389 + 593.1 19.6035 -17.7291 17.8449 + 593.2 19.8197 -17.6959 17.8379 + 593.3 20.036 -17.6516 17.8509 + 593.4 20.2728 -17.5852 17.8589 + 593.5 20.5199 -17.5077 17.8439 + 593.6 20.7773 -17.4191 17.8339 + 593.7 21.0553 -17.3194 17.8419 + 593.8 21.3435 -17.1976 17.8389 + 593.9 21.6421 -17.0647 17.8369 + 594 21.951 -16.9207 17.8269 + 594.1 22.2908 -16.7657 17.8449 + 594.2 22.6305 -16.6107 17.8209 + 594.3 22.9806 -16.4335 17.8219 + 594.4 23.341 -16.2452 17.8299 + 594.5 23.7116 -16.0459 17.8299 + 594.6 24.0926 -15.8355 17.8179 + 594.7 24.4838 -15.6251 17.8199 + 594.8 24.8854 -15.4147 17.8369 + 594.9 25.3075 -15.1711 17.8299 + 595 25.7296 -14.9385 17.8329 + 595.1 26.162 -14.6949 17.8609 + 595.2 26.6151 -14.4402 17.9169 + 595.3 27.0681 -14.1855 18.0019 + 595.4 27.5211 -13.9197 18.1209 + 595.5 28.005 -13.6429 18.2779 + 595.6 28.4889 -13.355 18.4649 + 595.7 28.9728 -13.0671 18.6999 + 595.8 29.4568 -12.7791 18.9739 + 595.9 29.951 -12.4801 19.2659 + 596 30.4452 -12.1811 19.5919 + 596.1 30.9394 -11.8822 19.9389 + 596.2 31.4336 -11.5832 20.2969 + 596.3 31.9381 -11.2731 20.6709 + 596.4 32.4323 -10.9741 21.0509 + 596.5 32.9368 -10.6751 21.4479 + 596.6 33.431 -10.365 21.8189 + 596.7 33.9252 -10.055 22.2119 + 596.8 34.4194 -9.74491 22.5889 + 596.9 34.9239 -9.43484 22.9559 + 597 35.4181 -9.13585 23.3209 + 597.1 35.9226 -8.81471 23.6669 + 597.2 36.4374 -8.50464 23.9959 + 597.3 36.9522 -8.1835 24.2989 + 597.4 37.467 -7.86236 24.5859 + 597.5 37.9921 -7.54122 24.8849 + 597.6 38.5172 -7.209 25.1389 + 597.7 39.0423 -6.86571 25.3899 + 597.8 39.5777 -6.5335 25.6429 + 597.9 40.1131 -6.19021 25.8669 + 598 40.6485 -5.83584 26.1099 + 598.1 41.1942 -5.49255 26.3309 + 598.2 41.7399 -5.13819 26.5609 + 598.3 42.2959 -4.78383 26.7789 + 598.4 42.8518 -4.41839 26.9809 + 598.5 43.4078 -4.05295 27.1889 + 598.6 43.9741 -3.68752 27.3808 + 598.7 44.5404 -3.32208 27.5638 + 598.8 45.1067 -2.94557 27.7178 + 598.9 45.6832 -2.56906 27.8618 + 599 46.2701 -2.20362 28.0068 + 599.1 46.857 -1.81603 28.1158 + 599.2 47.4336 -1.43952 28.2318 + 599.3 48.0307 -1.06301 28.3438 + 599.4 48.6279 -0.675426 28.4428 + 599.5 49.225 -0.298915 28.5518 + 599.6 49.8325 0.077597 28.6278 + 599.7 50.4606 0.443035 28.6988 + 599.8 51.0989 0.786325 28.7738 + 599.9 51.7373 1.09639 28.8358 + 600 52.3859 1.39539 28.8918 + 600.1 53.0449 1.67224 28.9438 + 600.2 53.7038 1.92694 28.9998 + 600.3 54.3627 2.19271 29.0598 + 600.4 55.032 2.44741 29.1008 + 600.5 55.7115 2.65782 29.1488 + 600.6 56.391 2.90144 29.2028 + 600.7 57.0706 3.14507 29.2457 + 600.8 57.7398 3.39977 29.3147 + 600.9 58.4193 3.65447 29.3857 + 601 59.0886 3.92024 29.4507 + 601.1 59.7784 4.18602 29.4937 + 601.2 60.4682 4.45179 29.5537 + 601.3 61.1581 4.71757 29.6077 + 601.4 61.8582 4.97227 29.6607 + 601.5 62.548 5.22697 29.7047 + 601.6 63.2276 5.51489 29.7387 + 601.7 63.9174 5.78066 29.8177 + 601.8 64.6278 6.04644 29.8697 + 601.9 65.3073 6.31221 29.9947 + 602 65.9972 6.58906 30.1407 + 602.1 66.687 6.85484 30.3066 + 602.2 67.3665 7.13168 30.5186 + 602.3 68.0358 7.39746 30.7636 + 602.4 68.7153 7.67431 31.0386 + 602.5 69.3949 7.95116 31.3456 + 602.6 70.0641 8.21693 31.6636 + 602.7 70.7127 8.48271 32.0156 + 602.8 71.382 8.74848 32.3996 + 602.9 72.0306 9.01426 32.7816 + 603 72.6793 9.29111 33.1816 + 603.1 73.3176 9.54581 33.5816 + 603.2 73.956 9.81158 33.9836 + 603.3 74.5943 10.0774 34.3836 + 603.4 75.2121 10.3321 34.7805 + 603.5 75.8299 10.5978 35.1685 + 603.6 76.4476 10.8525 35.5495 + 603.7 77.0551 11.1183 35.9455 + 603.8 77.6729 11.373 36.3085 + 603.9 78.27 11.6388 36.6755 + 604 78.8672 11.8824 37.0355 + 604.1 79.4747 12.1371 37.3825 + 604.2 80.0615 12.3918 37.7355 + 604.3 80.6587 12.6576 38.0725 + 604.4 81.2456 12.9012 38.4125 + 604.5 81.8325 13.1559 38.7415 + 604.6 82.4193 13.3996 39.0825 + 604.7 83.0062 13.6543 39.3894 + 604.8 83.5931 13.8979 39.7024 + 604.9 84.18 14.1194 39.9774 + 605 84.7668 14.3519 40.2664 + 605.1 85.364 14.5623 40.5214 + 605.2 85.9612 14.7506 40.7684 + 605.3 86.5377 14.9499 41.0164 + 605.4 87.1143 15.1382 41.2774 + 605.5 87.6806 15.2932 41.5504 + 605.6 88.2469 15.4483 41.8154 + 605.7 88.8132 15.5922 42.0964 + 605.8 89.3486 15.7362 42.3754 + 605.9 89.8942 15.8691 42.6903 + 606 90.4296 16.002 42.9853 + 606.1 90.9444 16.1348 43.2893 + 606.2 91.4798 16.2567 43.6203 + 606.3 92.0049 16.3785 43.9393 + 606.4 92.5506 16.5114 44.2433 + 606.5 93.086 16.6443 44.5413 + 606.6 93.6317 16.7772 44.8523 + 606.7 94.1877 16.9211 45.1493 + 606.8 94.7334 17.054 45.4243 + 606.9 95.2997 17.198 45.7003 + 607 95.8557 17.3419 45.9583 + 607.1 96.4322 17.4859 46.2102 + 607.2 96.9882 17.6409 46.4592 + 607.3 97.5545 17.7849 46.7022 + 607.4 98.1311 17.9178 46.9462 + 607.5 98.6974 18.0618 47.1412 + 607.6 99.2534 18.2168 47.3042 + 607.7 99.8299 18.3497 47.4412 + 607.8 100.407 18.4715 47.5552 + 607.9 100.983 18.5933 47.6182 + 608 101.539 18.693 47.6582 + 608.1 102.105 18.8037 47.6922 + 608.2 102.692 18.8812 47.7311 + 608.3 103.259 18.9477 47.7601 + 608.4 103.835 19.0141 47.7551 + 608.5 104.422 19.0474 47.7381 + 608.6 104.999 19.0695 47.7311 + 608.7 105.575 19.0695 47.7301 + 608.8 106.162 19.0363 47.7201 + 608.9 106.749 18.9477 47.7061 + 609 107.315 18.8591 47.6941 + 609.1 107.881 18.7816 47.7221 + 609.2 108.468 18.7041 47.7061 + 609.3 109.024 18.5602 47.735 + 609.4 109.591 18.4273 47.805 + 609.5 110.147 18.3055 47.935 + 609.6 110.692 18.1837 48.074 + 609.7 111.217 18.0729 48.28 + 609.8 111.681 17.9954 48.488 + 609.9 112.144 17.8957 48.728 + 610 112.546 17.8182 48.986 + 610.1 112.906 17.7407 49.274 + 610.2 113.184 17.6854 49.592 + 610.3 113.431 17.6411 49.902 + 610.4 113.658 17.5968 50.243 + 610.5 113.863 17.5746 50.578 + 610.6 114.038 17.5414 50.92 + 610.7 114.183 17.5193 51.278 + 610.8 114.316 17.5082 51.637 + 610.9 114.44 17.486 51.9889 + 611 114.553 17.475 52.3209 + 611.1 114.646 17.4639 52.6869 + 611.2 114.739 17.4639 53.0219 + 611.3 114.821 17.4639 53.3399 + 611.4 114.893 17.4528 53.6549 + 611.5 114.945 17.4528 53.9909 + 611.6 115.006 17.4528 54.2969 + 611.7 115.058 17.4528 54.6089 + 611.8 115.099 17.4528 54.9369 + 611.9 115.151 17.4639 55.2289 + 612 115.212 17.4639 55.5349 + 612.1 115.274 17.475 55.7959 + 612.2 115.346 17.4971 56.0579 + 612.3 115.439 17.5082 56.3069 + 612.4 115.521 17.5193 56.5599 + 612.5 115.634 17.5414 56.7909 + 612.6 115.748 17.5636 56.9999 + 612.7 115.882 17.5857 57.1909 + 612.8 116.026 17.6079 57.3179 + 612.9 116.18 17.6411 57.4199 + 613 116.355 17.6632 57.5079 + 613.1 116.53 17.6965 57.5379 + 613.2 116.726 17.7297 57.5829 + 613.3 116.942 17.7629 57.6039 + 613.4 117.169 17.7961 57.5979 + 613.5 117.405 17.8404 57.5999 + 613.6 117.652 17.9069 57.5879 + 613.7 117.889 17.9955 57.5749 + 613.8 118.157 18.073 57.5559 + 613.9 118.414 18.1616 57.5349 + 614 118.682 18.2723 57.5229 + 614.1 118.95 18.3941 57.4909 + 614.2 119.197 18.5381 57.4279 + 614.3 119.423 18.7042 57.3869 + 614.4 119.65 18.8593 57.3539 + 614.5 119.887 19.0475 57.3128 + 614.6 120.103 19.2247 57.2818 + 614.7 120.309 19.424 57.2458 + 614.8 120.484 19.6344 57.2118 + 614.9 120.669 19.8559 57.1748 + 615 120.844 20.0885 57.1668 + 615.1 120.988 20.3321 57.1428 + 615.2 121.122 20.5868 57.1168 + 615.3 121.246 20.8415 57.1138 + 615.4 121.349 21.1183 57.0888 + 615.5 121.441 21.3952 57.0878 + 615.6 121.524 21.6831 57.0948 + 615.7 121.586 21.971 57.1078 + 615.8 121.647 22.2811 57.0898 + 615.9 121.688 22.5801 57.1108 + 616 121.709 22.8902 57.1128 + 616.1 121.719 23.2113 57.1088 + 616.2 121.719 23.5214 57.0948 + 616.3 121.719 23.8536 57.0968 + 616.4 121.699 24.1858 57.0928 + 616.5 121.678 24.5291 57.0978 + 616.6 121.647 24.8724 57.0838 + 616.7 121.606 25.2267 57.0868 + 616.8 121.575 25.5922 57.0948 + 616.9 121.544 25.9687 57.0678 + 617 121.513 26.3452 57.0588 + 617.1 121.483 26.7328 57.0688 + 617.2 121.462 27.1314 57.0548 + 617.3 121.431 27.5522 57.0628 + 617.4 121.41 27.962 57.0558 + 617.5 121.4 28.3939 57.0438 + 617.6 121.39 28.8257 57.0538 + 617.7 121.369 29.2687 57.0388 + 617.8 121.359 29.7227 57.0428 + 617.9 121.349 30.1768 57.0448 + 618 121.338 30.6419 57.0488 + 618.1 121.338 31.107 57.0498 + 618.2 121.328 31.5942 57.0408 + 618.3 121.318 32.0704 57.0458 + 618.4 121.318 32.5687 57.0528 + 618.5 121.307 33.056 57.0528 + 618.6 121.307 33.5654 57.0428 + 618.7 121.297 34.0747 57.0338 + 618.8 121.297 34.5841 57.0468 + 618.9 121.287 35.1046 57.0348 + 619 121.287 35.614 57.0417 + 619.1 121.287 36.1456 57.0437 + 619.2 121.287 36.6771 57.0177 + 619.3 121.287 37.2087 57.0307 + 619.4 121.277 37.7513 57.0277 + 619.5 121.266 38.2828 57.0287 + 619.6 121.266 38.8254 57.0277 + 619.7 121.266 39.3791 57.0317 + 619.8 121.256 39.9328 57.0327 + 619.9 121.256 40.4976 57.0247 + 620 121.256 41.0402 57.0307 + 620.1 121.246 41.616 57.0287 + 620.2 121.246 42.1697 57.0147 + 620.3 121.235 42.7345 57.0297 + 620.4 121.235 43.2993 57.0117 + 620.5 121.225 43.864 57.0037 + 620.6 121.225 44.4288 57.0127 + 620.7 121.225 44.9936 56.9867 + 620.8 121.225 45.5694 56.9957 + 620.9 121.215 46.1342 56.9867 + 621 121.215 46.71 56.9917 + 621.1 121.215 47.2859 56.9797 + 621.2 121.215 47.8617 56.9887 + 621.3 121.204 48.4375 56.9877 + 621.4 121.204 49.0245 56.9937 + 621.5 121.204 49.6003 57.0027 + 621.6 121.184 50.1872 57.0097 + 621.7 121.173 50.7631 57.0016 + 621.8 121.163 51.35 57.0126 + 621.9 121.153 51.9369 56.9986 + 622 121.143 52.5238 57.0156 + 622.1 121.132 53.1107 56.9956 + 622.2 121.122 53.6976 57.0006 + 622.3 121.112 54.2845 56.9886 + 622.4 121.101 54.8825 56.9786 + 622.5 121.101 55.4695 56.9726 + 622.6 121.091 56.0674 56.9646 + 622.7 121.081 56.6654 56.9516 + 622.8 121.07 57.2523 56.9436 + 622.9 121.081 57.8614 56.9356 + 623 121.07 58.4594 56.9236 + 623.1 121.06 59.0574 56.9156 + 623.2 121.05 59.6554 56.9166 + 623.3 121.05 60.2534 56.9086 + 623.4 121.05 60.8513 56.9016 + 623.5 121.04 61.4604 56.9046 + 623.6 121.04 62.0805 56.8935 + 623.7 121.029 62.6896 56.8965 + 623.8 121.029 63.2987 56.8895 + 623.9 121.019 63.9188 56.8895 + 624 121.019 64.5279 56.8755 + 624.1 121.009 65.148 56.8665 + 624.2 121.009 65.7681 56.8625 + 624.3 121.009 66.3883 56.8735 + 624.4 121.009 67.0084 56.8335 + 624.5 120.998 67.6285 56.8385 + 624.6 120.988 68.2487 56.8335 + 624.7 120.998 68.8688 56.8415 + 624.8 120.988 69.489 56.8315 + 624.9 120.988 70.1202 56.8325 + 625 120.988 70.7292 56.8305 + 625.1 120.988 71.3604 56.8235 + 625.2 120.967 71.9917 56.8164 + 625.3 120.947 72.6118 56.8114 + 625.4 120.916 73.243 56.8044 + 625.5 120.895 73.8742 56.8044 + 625.6 120.864 74.5054 56.7824 + 625.7 120.823 75.1477 56.7784 + 625.8 120.761 75.7789 56.7844 + 625.9 120.72 76.4101 56.7684 + 626 120.648 77.0413 56.7614 + 626.1 120.576 77.6725 56.7494 + 626.2 120.514 78.3037 56.7534 + 626.3 120.432 78.935 56.7504 + 626.4 120.35 79.5662 56.7334 + 626.5 120.247 80.1974 56.7384 + 626.6 120.154 80.8397 56.7394 + 626.7 120.041 81.4709 56.7233 + 626.8 119.927 82.1021 56.7223 + 626.9 119.794 82.7333 56.7233 + 627 119.67 83.3534 56.7053 + 627.1 119.516 83.9846 56.7083 + 627.2 119.371 84.6048 56.7053 + 627.3 119.207 85.236 56.7033 + 627.4 119.042 85.8672 56.7053 + 627.5 118.867 86.4873 56.7033 + 627.6 118.682 87.1185 56.7003 + 627.7 118.496 87.7276 56.6983 + 627.8 118.28 88.3477 56.7003 + 627.9 118.074 88.9568 56.7013 + 628 117.858 89.5769 56.7043 + 628.1 117.631 90.186 56.6913 + 628.2 117.395 90.784 56.6943 + 628.3 117.158 91.393 56.7033 + 628.4 116.911 92.0021 56.7003 + 628.5 116.643 92.589 56.6973 + 628.6 116.385 93.1981 56.6923 + 628.7 116.107 93.785 56.6883 + 628.8 115.819 94.383 56.6772 + 628.9 115.521 94.9588 56.6842 + 629 115.222 95.5346 56.6772 + 629.1 114.903 96.1105 56.6702 + 629.2 114.584 96.6863 56.6652 + 629.3 114.244 97.2511 56.6602 + 629.4 113.914 97.8048 56.6602 + 629.5 113.564 98.3585 56.6522 + 629.6 113.214 98.9011 56.6442 + 629.7 112.844 99.4437 56.6412 + 629.8 112.473 99.9752 56.6402 + 629.9 112.092 100.507 56.6312 + 630 111.721 101.038 56.6252 + 630.1 111.32 101.548 56.6372 + 630.2 110.918 102.068 56.6372 + 630.3 110.517 102.578 56.6302 + 630.4 110.105 103.087 56.6302 + 630.5 109.693 103.574 56.6292 + 630.6 109.281 104.073 56.6322 + 630.7 108.859 104.571 56.6302 + 630.8 108.437 105.058 56.6302 + 630.9 107.994 105.545 56.6222 + 631 107.572 106.022 56.6292 + 631.1 107.129 106.498 56.6202 + 631.2 106.687 106.963 56.6262 + 631.3 106.244 107.428 56.6222 + 631.4 105.801 107.893 56.6192 + 631.5 105.358 108.358 56.6232 + 631.6 104.905 108.812 56.6282 + 631.7 104.452 109.266 56.6302 + 631.8 103.999 109.72 56.6372 + 631.9 103.546 110.163 56.6342 + 632 103.093 110.606 56.6512 + 632.1 102.63 111.049 56.6462 + 632.2 102.167 111.492 56.6482 + 632.3 101.693 111.924 56.6442 + 632.4 101.23 112.356 56.6452 + 632.5 100.756 112.788 56.6462 + 632.6 100.282 113.208 56.6422 + 632.7 99.8089 113.629 56.6412 + 632.8 99.325 114.05 56.6382 + 632.9 98.841 114.471 56.6292 + 633 98.3571 114.881 56.6302 + 633.1 97.8835 115.29 56.6342 + 633.2 97.3996 115.7 56.6262 + 633.3 96.9054 116.099 56.6322 + 633.4 96.4112 116.497 56.6332 + 633.5 95.9273 116.896 56.6122 + 633.6 95.4331 117.295 56.6272 + 633.7 94.9389 117.682 56.6232 + 633.8 94.455 118.059 56.6142 + 633.9 93.9607 118.446 56.6232 + 634 93.4665 118.823 56.6222 + 634.1 92.9723 119.199 56.6172 + 634.2 92.4781 119.576 56.6202 + 634.3 91.9736 119.941 56.6052 + 634.4 91.4794 120.307 56.6162 + 634.5 90.9852 120.672 56.6012 + 634.6 90.4807 121.027 56.6092 + 634.7 89.9968 121.392 56.6182 + 634.8 89.5026 121.735 56.6172 + 634.9 88.9981 122.101 56.6122 + 635 88.5142 122.444 56.6192 + 635.1 88.02 122.798 56.6152 + 635.2 87.5258 123.131 56.6032 + 635.3 87.0315 123.485 56.6072 + 635.4 86.5373 123.817 56.6052 + 635.5 86.0431 124.149 56.6092 + 635.6 85.5489 124.482 56.6132 + 635.7 85.065 124.814 56.6072 + 635.8 84.5708 125.146 56.6112 + 635.9 84.0663 125.467 56.5882 + 636 83.5824 125.788 56.6042 + 636.1 83.0882 126.109 56.5942 + 636.2 82.594 126.431 56.5972 + 636.3 82.0998 126.752 56.6032 + 636.4 81.6056 127.062 56.5892 + 636.5 81.1114 127.372 56.6012 + 636.6 80.6275 127.682 56.5982 + 636.7 80.1332 127.992 56.6042 + 636.8 79.639 128.291 56.6042 + 636.9 79.1551 128.59 56.5992 + 637 78.6712 128.9 56.6102 + 637.1 78.1873 129.199 56.6122 + 637.2 77.7034 129.487 56.6032 + 637.3 77.2195 129.786 56.6072 + 637.4 76.7459 130.085 56.6092 + 637.5 76.262 130.373 56.6012 + 637.6 75.7884 130.672 56.5842 + 637.7 75.3147 130.96 56.5882 + 637.8 74.8411 131.248 56.5802 + 637.9 74.3675 131.536 56.5672 + 638 73.9042 131.823 56.5652 + 638.1 73.4409 132.111 56.5572 + 638.2 72.9776 132.399 56.5512 + 638.3 72.5142 132.687 56.5552 + 638.4 72.0509 132.975 56.5452 + 638.5 71.5876 133.252 56.5402 + 638.6 71.1243 133.54 56.5342 + 638.7 70.6713 133.828 56.5302 + 638.8 70.2079 134.105 56.5342 + 638.9 69.7652 134.381 56.5182 + 639 69.3019 134.669 56.5092 + 639.1 68.8489 134.946 56.4992 + 639.2 68.3959 135.234 56.5012 + 639.3 67.9325 135.511 56.5012 + 639.4 67.4898 135.799 56.5022 + 639.5 67.0265 136.076 56.4892 + 639.6 66.5838 136.353 56.4862 + 639.7 66.1204 136.629 56.4882 + 639.8 65.6674 136.917 56.4772 + 639.9 65.2247 137.194 56.4772 + 640 64.7717 137.482 56.4812 + 640.1 64.3084 137.759 56.4632 + 640.2 63.8656 138.036 56.4532 + 640.3 63.4126 138.313 56.4652 + 640.4 62.9699 138.59 56.4602 + 640.5 62.5169 138.877 56.4602 + 640.6 62.0638 139.143 56.4492 + 640.7 61.6108 139.431 56.4492 + 640.8 61.1681 139.708 56.4442 + 640.9 60.7151 139.974 56.4442 + 641 60.2518 140.251 56.4462 + 641.1 59.809 140.527 56.4422 + 641.2 59.3457 140.793 56.4352 + 641.3 58.8927 141.059 56.4452 + 641.4 58.4397 141.336 56.4392 + 641.5 57.9763 141.591 56.4292 + 641.6 57.513 141.856 56.4252 + 641.7 57.06 142.111 56.4282 + 641.8 56.5967 142.377 56.4322 + 641.9 56.1334 142.631 56.4251 + 642 55.6701 142.886 56.4181 + 642.1 55.1964 143.141 56.4161 + 642.2 54.7331 143.373 56.4261 + 642.3 54.2492 143.606 56.4261 + 642.4 53.7653 143.827 56.4251 + 642.5 53.2711 144.038 56.4231 + 642.6 52.7666 144.226 56.4251 + 642.7 52.2621 144.403 56.4231 + 642.8 51.7473 144.569 56.4191 + 642.9 51.2222 144.713 56.4191 + 643 50.7074 144.846 56.4101 + 643.1 50.172 144.968 56.4071 + 643.2 49.6366 145.09 56.4071 + 643.3 49.1012 145.201 56.4051 + 643.4 48.5762 145.311 56.4022 + 643.5 48.0408 145.422 56.4022 + 643.6 47.5054 145.522 56.4042 + 643.7 46.9597 145.621 56.4022 + 643.8 46.4243 145.721 56.4032 + 643.9 45.8786 145.821 56.4032 + 644 45.3432 145.909 56.4032 + 644.1 44.7976 145.998 56.4072 + 644.2 44.2622 146.075 56.4042 + 644.3 43.7165 146.153 56.4042 + 644.4 43.1708 146.23 56.4032 + 644.5 42.6251 146.297 56.4122 + 644.6 42.0897 146.352 56.4022 + 644.7 41.544 146.419 56.3942 + 644.8 41.0087 146.474 56.4022 + 644.9 40.463 146.529 56.4002 + 645 39.9173 146.585 56.3952 + 645.1 39.3716 146.629 56.4002 + 645.2 38.8259 146.673 56.3942 + 645.3 38.2905 146.707 56.3932 + 645.4 37.7448 146.751 56.3922 + 645.5 37.1992 146.784 56.3852 + 645.6 36.6535 146.817 56.3822 + 645.7 36.1078 146.839 56.3892 + 645.8 35.5518 146.862 56.3782 + 645.9 35.0164 146.873 56.3732 + 646 34.4707 146.884 56.3892 + 646.1 33.9251 146.884 56.3712 + 646.2 33.3897 146.884 56.3692 + 646.3 32.844 146.884 56.3682 + 646.4 32.2983 146.873 56.3512 + 646.5 31.7526 146.862 56.3592 + 646.6 31.2069 146.851 56.3542 + 646.7 30.6613 146.828 56.3482 + 646.8 30.1259 146.806 56.3432 + 646.9 29.5905 146.773 56.3452 + 647 29.0448 146.74 56.3402 + 647.1 28.4991 146.707 56.3432 + 647.2 27.9637 146.662 56.3392 + 647.3 27.4283 146.618 56.3392 + 647.4 26.8826 146.574 56.3443 + 647.5 26.3473 146.518 56.3263 + 647.6 25.8119 146.463 56.3413 + 647.7 25.2765 146.408 56.3303 + 647.8 24.7411 146.341 56.3333 + 647.9 24.216 146.253 56.3393 + 648 23.6909 146.153 56.3353 + 648.1 23.1761 146.042 56.3263 + 648.2 22.6613 145.931 56.3053 + 648.3 22.1465 145.787 56.2833 + 648.4 21.642 145.632 56.2533 + 648.5 21.1581 145.466 56.2363 + 648.6 20.6742 145.267 56.2073 + 648.7 20.2109 145.057 56.1753 + 648.8 19.7476 144.813 56.1373 + 648.9 19.3151 144.558 56.0803 + 649 18.9033 144.281 56.0503 + 649.1 18.5018 143.971 56.0033 + 649.2 18.1105 143.661 55.9523 + 649.3 17.7502 143.318 55.9144 + 649.4 17.4104 142.964 55.8624 + 649.5 17.0706 142.609 55.8244 + 649.6 16.7412 142.244 55.7764 + 649.7 16.4117 141.889 55.7394 + 649.8 16.0822 141.535 55.7264 + 649.9 15.7631 141.17 55.7074 + 650 15.4336 140.815 55.6904 + 650.1 15.0938 140.472 55.6994 + 650.2 14.7438 140.14 55.7004 + 650.3 14.3937 139.796 55.7044 + 650.4 14.0539 139.464 55.7065 + 650.5 13.6936 139.121 55.7075 + 650.6 13.3538 138.789 55.7025 + 650.7 12.9935 138.456 55.7145 + 650.8 12.6434 138.124 55.7225 + 650.9 12.283 137.792 55.7045 + 651 11.9227 137.471 55.7175 + 651.1 11.5623 137.15 55.7135 + 651.2 11.1814 136.84 55.7155 + 651.3 10.8004 136.541 55.7035 + 651.4 10.4092 136.264 55.7055 + 651.5 10.0076 135.998 55.6825 + 651.6 9.58551 135.754 55.6925 + 651.7 9.17367 135.511 55.6915 + 651.8 8.76183 135.256 55.6896 + 651.9 8.32941 135.024 55.6846 + 652 7.89698 134.802 55.6876 + 652.1 7.46455 134.581 55.6786 + 652.2 7.02182 134.348 55.6816 + 652.3 6.59969 134.116 55.6726 + 652.4 6.16726 133.872 55.6726 + 652.5 5.73483 133.639 55.6646 + 652.6 5.3024 133.396 55.6556 + 652.7 4.85968 133.163 55.6486 + 652.8 4.41695 132.92 55.6476 + 652.9 3.98452 132.676 55.6706 + 653 3.5315 132.432 55.7016 + 653.1 3.07848 132.178 55.7756 + 653.2 2.63576 131.923 55.8546 + 653.3 2.17244 131.668 55.9816 + 653.4 1.72972 131.414 56.1496 + 653.5 1.2561 131.159 56.3116 + 653.6 0.803083 130.904 56.5216 + 653.7 0.350062 130.649 56.7457 + 653.8 -0.123551 130.384 56.9877 + 653.9 -0.576572 130.129 57.2527 + 654 -1.03989 129.863 57.5217 + 654.1 -1.5135 129.609 57.8047 + 654.2 -1.97682 129.343 58.1157 + 654.3 -2.45043 129.077 58.4287 + 654.4 -2.93434 128.811 58.7407 + 654.5 -3.40796 128.545 59.0597 + 654.6 -3.90216 128.28 59.3677 + 654.7 -4.38607 128.003 59.6777 + 654.8 -4.89057 127.726 59.9897 + 654.9 -5.38478 127.449 60.3147 + 655 -5.88928 127.183 60.6177 + 655.1 -6.39378 126.907 60.9267 + 655.2 -6.89828 126.619 61.2387 + 655.3 -7.41308 126.342 61.5497 + 655.4 -7.91758 126.054 61.8497 + 655.5 -8.42208 125.777 62.1687 + 655.6 -8.93688 125.489 62.4488 + 655.7 -9.45168 125.212 62.7438 + 655.8 -9.95618 124.924 63.0468 + 655.9 -10.471 124.648 63.3378 + 656 -10.9858 124.36 63.6158 + 656.1 -11.5006 124.061 63.8978 + 656.2 -12.0154 123.773 64.1858 + 656.3 -12.5302 123.485 64.4508 + 656.4 -13.045 123.197 64.7348 + 656.5 -13.5598 122.898 65.0138 + 656.6 -14.0746 122.61 65.2848 + 656.7 -14.5894 122.322 65.5618 + 656.8 -15.0939 122.034 65.8508 + 656.9 -15.6087 121.735 66.1208 + 657 -16.1235 121.447 66.3948 + 657.1 -16.6383 121.148 66.6778 + 657.2 -17.1428 120.86 66.9618 + 657.3 -17.6576 120.572 67.2498 + 657.4 -18.1724 120.273 67.5268 + 657.5 -18.6872 119.986 67.8078 + 657.6 -19.1917 119.687 68.0838 + 657.7 -19.6962 119.399 68.3658 + 657.8 -20.2007 119.1 68.6399 + 657.9 -20.7155 118.812 68.9079 + 658 -21.2303 118.513 69.1749 + 658.1 -21.7348 118.214 69.4399 + 658.2 -22.2393 117.915 69.7169 + 658.3 -22.7644 117.616 69.9699 + 658.4 -23.2792 117.317 70.2339 + 658.5 -23.8043 117.007 70.4859 + 658.6 -24.3294 116.697 70.7549 + 658.7 -24.8545 116.387 70.9979 + 658.8 -25.4001 116.065 71.2299 + 658.9 -25.9355 115.755 71.4509 + 659 -26.4915 115.423 71.6489 + 659.1 -27.0475 115.102 71.8339 + 659.2 -27.5932 114.759 72.0269 + 659.3 -28.1595 114.438 72.1929 + 659.4 -28.7155 114.094 72.3209 + 659.5 -29.292 113.74 72.4189 + 659.6 -29.8686 113.408 72.4879 + 659.7 -30.4452 113.064 72.5289 + 659.8 -31.0321 112.721 72.5619 + 659.9 -31.6189 112.378 72.5799 + 660 -32.2161 112.012 72.5859 + 660.1 -32.8133 111.658 72.5779 + 660.2 -33.4207 111.304 72.5689 + 660.3 -34.0282 110.938 72.5689 + 660.4 -34.6356 110.584 72.5539 + 660.5 -35.2534 110.218 72.5409 + 660.6 -35.8609 109.853 72.5359 + 660.7 -36.4786 109.488 72.535 + 660.8 -37.1067 109.111 72.532 + 660.9 -37.7244 108.735 72.528 + 661 -38.3525 108.369 72.519 + 661.1 -38.9806 107.982 72.516 + 661.2 -39.6189 107.605 72.524 + 661.3 -40.247 107.229 72.519 + 661.4 -40.8853 106.841 72.52 + 661.5 -41.5237 106.464 72.523 + 661.6 -42.162 106.077 72.522 + 661.7 -42.8107 105.689 72.525 + 661.8 -43.4593 105.302 72.525 + 661.9 -44.108 104.903 72.514 + 662 -44.7669 104.515 72.513 + 662.1 -45.4155 104.117 72.527 + 662.2 -46.0745 103.729 72.528 + 662.3 -46.7334 103.331 72.518 + 662.4 -47.3924 102.932 72.525 + 662.5 -48.0719 102.544 72.522 + 662.6 -48.7206 102.146 72.526 + 662.7 -49.3898 101.747 72.532 + 662.8 -50.059 101.348 72.528 + 662.9 -50.7283 100.95 72.516 + 663 -51.3975 100.551 72.524 + 663.1 -52.0668 100.152 72.514 + 663.2 -52.7463 99.7537 72.512 + 663.3 -53.4258 99.355 72.532 + 663.4 -54.1157 98.9564 72.583 + 663.5 -54.7849 98.5577 72.656 + 663.6 -55.4644 98.148 72.758 + 663.7 -56.1543 97.7493 72.875 + 663.8 -56.8338 97.3507 73.026 + 663.9 -57.5133 96.952 73.19 + 664 -58.2032 96.5423 73.351 + 664.1 -58.893 96.1436 73.542 + 664.2 -59.5726 95.745 73.725 + 664.3 -60.2521 95.3353 73.921 + 664.4 -60.9522 94.9366 74.121 + 664.5 -61.6318 94.5379 74.345 + 664.6 -62.3216 94.1393 74.584 + 664.7 -62.9908 93.7406 74.826 + 664.8 -63.6704 93.3531 75.076 + 664.9 -64.3602 92.9544 75.324 + 665 -65.0192 92.5668 75.584 + 665.1 -65.6987 92.1903 75.851 + 665.2 -66.3576 91.8027 76.113 + 665.3 -67.0166 91.4262 76.364 + 665.4 -67.6755 91.0497 76.64 + 665.5 -68.3242 90.6732 76.924 + 665.6 -68.9728 90.2967 77.21 + 665.7 -69.6215 89.9313 77.505 + 665.8 -70.2599 89.5548 77.799 + 665.9 -70.9085 89.2004 78.091 + 666 -71.5366 88.835 78.4 + 666.1 -72.1749 88.4696 78.701 + 666.2 -72.803 88.1041 79.025 + 666.3 -73.431 87.7387 79.332 + 666.4 -74.0591 87.3843 79.644 + 666.5 -74.6872 87.03 79.969 + 666.6 -75.3049 86.6756 80.286 + 666.7 -75.9227 86.3213 80.598 + 666.8 -76.5302 85.9669 80.918 + 666.9 -77.1479 85.6126 81.244 + 667 -77.7554 85.2693 81.555 + 667.1 -78.3629 84.9149 81.865 + 667.2 -78.9601 84.5716 82.1879 + 667.3 -79.5572 84.2283 82.4989 + 667.4 -80.1544 83.8851 82.8229 + 667.5 -80.7516 83.5418 83.1279 + 667.6 -81.3385 83.2096 83.4409 + 667.7 -81.9253 82.8663 83.7639 + 667.8 -82.5122 82.5341 84.0809 + 667.9 -83.0888 82.1908 84.3899 + 668 -83.6757 81.8586 84.7059 + 668.1 -84.2523 81.5264 85.0209 + 668.2 -84.8288 81.1942 85.3449 + 668.3 -85.3951 80.8619 85.6679 + 668.4 -85.9717 80.5408 85.9859 + 668.5 -86.538 80.2086 86.3079 + 668.6 -87.1043 79.8875 86.6329 + 668.7 -87.6603 79.5553 86.9639 + 668.8 -88.2369 79.2341 87.2919 + 668.9 -88.7928 78.9019 87.6269 + 669 -89.3488 78.5808 87.9519 + 669.1 -89.9048 78.2596 88.2819 + 669.2 -90.4711 77.9385 88.5989 + 669.3 -91.0271 77.6063 88.9299 + 669.4 -91.5831 77.2741 89.2599 + 669.5 -92.1494 76.9529 89.5789 + 669.6 -92.726 76.6207 89.9019 + 669.7 -93.2923 76.2885 90.2429 + 669.8 -93.8585 75.9563 90.5909 + 669.9 -94.4351 75.613 90.9359 + 670 -95.022 75.2697 91.2738 + 670.1 -95.5883 74.9375 91.5678 + 670.2 -96.1649 74.5832 91.8578 + 670.3 -96.7415 74.251 92.1178 + 670.4 -97.318 73.8966 92.3418 + 670.5 -97.8946 73.5533 92.5428 + 670.6 -98.4815 73.21 92.6958 + 670.7 -99.0581 72.8557 92.8058 + 670.8 -99.6244 72.5013 92.8898 + 670.9 -100.201 72.1248 92.9388 + 671 -100.757 71.7372 92.9548 + 671.1 -101.303 71.3386 92.9688 + 671.2 -101.859 70.9399 92.9678 + 671.3 -102.404 70.5191 92.9388 + 671.4 -102.909 70.0651 92.8978 + 671.5 -103.393 69.5889 92.8318 + 671.6 -103.856 69.1016 92.7428 + 671.7 -104.299 68.6144 92.6258 + 671.8 -104.711 68.0939 92.4978 + 671.9 -105.092 67.5624 92.3568 + 672 -105.442 67.0197 92.1858 + 672.1 -105.751 66.455 91.9988 + 672.2 -106.008 65.8791 91.8178 + 672.3 -106.234 65.2811 91.6358 + 672.4 -106.42 64.6831 91.4308 + 672.5 -106.574 64.0741 91.1978 + 672.6 -106.687 63.465 90.9568 + 672.7 -106.76 62.8559 90.6858 + 672.8 -106.821 62.2247 90.4108 + 672.9 -106.873 61.6046 90.0998 + 673 -106.893 60.9734 89.7548 + 673.1 -106.893 60.3422 89.3968 + 673.2 -106.873 59.722 89.0238 + 673.3 -106.852 59.0908 88.6258 + 673.4 -106.832 58.4596 88.2268 + 673.5 -106.801 57.8173 87.8508 + 673.6 -106.78 57.175 87.4348 + 673.7 -106.739 56.5327 87.0319 + 673.8 -106.698 55.8904 86.6289 + 673.9 -106.667 55.226 86.2299 + 674 -106.657 54.5726 85.8639 + 674.1 -106.636 53.9082 85.5119 + 674.2 -106.636 53.2548 85.1959 + 674.3 -106.615 52.5904 84.9289 + 674.4 -106.615 51.937 84.6809 + 674.5 -106.605 51.2726 84.4829 + 674.6 -106.595 50.6192 84.3109 + 674.7 -106.595 49.9658 84.1659 + 674.8 -106.585 49.3346 84.0689 + 674.9 -106.492 48.6813 83.9829 + 675 -106.389 48.039 83.9519 + 675.1 -106.276 47.4188 83.9529 + 675.2 -106.131 46.7987 83.9089 + 675.3 -105.936 46.1896 83.853 + 675.4 -105.72 45.6027 83.788 + 675.5 -105.452 45.0379 83.722 + 675.6 -105.164 44.4953 83.648 + 675.7 -104.855 43.997 83.569 + 675.8 -104.525 43.5097 83.478 + 675.9 -104.165 43.0779 83.391 + 676 -103.774 42.6681 83.317 + 676.1 -103.393 42.2473 83.298 + 676.2 -102.981 41.8708 83.231 + 676.3 -102.548 41.5164 83.2 + 676.4 -102.095 41.2063 83.19 + 676.5 -101.642 40.8963 83.1621 + 676.6 -101.169 40.6084 83.1891 + 676.7 -100.695 40.3426 83.1941 + 676.8 -100.201 40.0989 83.2121 + 676.9 -99.7068 39.8553 83.2481 + 677 -99.2023 39.6006 83.2471 + 677.1 -98.7081 39.3791 83.2481 + 677.2 -98.2139 39.1466 83.2541 + 677.3 -97.7197 38.9029 83.2761 + 677.4 -97.2358 38.6482 83.2741 + 677.5 -96.7416 38.3825 83.2702 + 677.6 -96.2473 38.1167 83.2782 + 677.7 -95.7428 37.8398 83.2852 + 677.8 -95.228 37.6184 83.2832 + 677.9 -94.6926 37.4301 83.2522 + 678 -94.1573 37.2308 83.2502 + 678.1 -93.6219 37.0647 83.2582 + 678.2 -93.0659 36.9207 83.2512 + 678.3 -92.5099 36.7989 83.2612 + 678.4 -91.9436 36.6992 83.2482 + 678.5 -91.3773 36.6438 83.2442 + 678.6 -90.8213 36.5552 83.2482 + 678.7 -90.2448 36.4666 83.2553 + 678.8 -89.6785 36.378 83.2573 + 678.9 -89.1019 36.2895 83.2623 + 679 -88.5253 36.1898 83.2523 + 679.1 -87.9385 36.0901 83.2603 + 679.2 -87.3516 35.9683 83.2653 + 679.3 -86.7544 35.8686 83.2633 + 679.4 -86.1572 35.7468 83.2623 + 679.5 -85.5601 35.625 83.2593 + 679.6 -84.9526 35.5032 83.2593 + 679.7 -84.3451 35.3814 83.2683 + 679.8 -83.7274 35.2595 83.2614 + 679.9 -83.1096 35.1377 83.2554 + 680 -82.4919 34.9938 83.2534 + 680.1 -81.8638 34.872 83.2444 + 680.2 -81.246 34.728 83.2474 + 680.3 -80.618 34.5951 83.2484 + 680.4 -79.9796 34.4511 83.2414 + 680.5 -79.3516 34.3072 83.2364 + 680.6 -78.7132 34.1632 83.2344 + 680.7 -78.0646 34.0192 83.2254 + 680.8 -77.4262 33.8753 83.2334 + 680.9 -76.7879 33.7313 83.2254 + 681 -76.1392 33.5984 83.2075 + 681.1 -75.4803 33.4545 83.2025 + 681.2 -74.8316 33.2994 83.2085 + 681.3 -74.1727 33.1555 83.1975 + 681.4 -73.5137 33.0226 83.1955 + 681.5 -72.8548 32.8675 83.1875 + 681.6 -72.1752 32.7346 83.1865 + 681.7 -71.506 32.5796 83.1775 + 681.8 -70.8265 32.4356 83.1645 + 681.9 -70.1469 32.2806 83.1775 + 682 -69.4674 32.1366 83.1675 + 682.1 -68.7673 31.9816 83.1655 + 682.2 -68.0774 31.8266 83.1626 + 682.3 -67.3773 31.6715 83.1536 + 682.4 -66.6772 31.5276 83.1546 + 682.5 -65.9667 31.3836 83.1586 + 682.6 -65.2563 31.2286 83.1506 + 682.7 -64.5459 31.0735 83.1646 + 682.8 -63.8355 30.9185 83.1586 + 682.9 -63.1147 30.7634 83.1506 + 683 -62.394 30.6084 83.1466 + 683.1 -61.6733 30.4534 83.1536 + 683.2 -60.9526 30.2873 83.1506 + 683.3 -60.2318 30.099 83.1486 + 683.4 -59.5111 29.9107 83.1407 + 683.5 -58.7904 29.7336 83.1367 + 683.6 -58.08 29.5342 83.1247 + 683.7 -57.3695 29.3127 83.1287 + 683.8 -56.6797 29.0359 83.1257 + 683.9 -56.0105 28.759 83.1237 + 684 -55.3309 28.5043 83.1667 + 684.1 -54.6205 28.2829 83.1207 + 684.2 -53.9307 27.9728 83.0737 + 684.3 -53.282 27.6073 83.1017 + 684.4 -52.654 27.2641 83.1137 + 684.5 -52.0053 26.954 83.1337 + 684.6 -51.3361 26.655 83.1367 + 684.7 -50.6874 26.3006 83.1227 + 684.8 -50.0594 25.9573 83.1348 + 684.9 -49.421 25.5919 83.1438 + 685 -48.793 25.2486 83.1628 + 685.1 -48.1443 24.9164 83.1748 + 685.2 -47.506 24.562 83.1738 + 685.3 -46.8573 24.2298 83.1858 + 685.4 -46.2087 23.8865 83.1848 + 685.5 -45.56 23.5432 83.1998 + 685.6 -44.9216 23.211 83.2138 + 685.7 -44.2833 22.8788 83.2068 + 685.8 -43.6346 22.5908 83.2048 + 685.9 -42.9654 22.3361 83.1658 + 686 -42.3168 22.0814 83.1628 + 686.1 -41.6475 21.86 83.1348 + 686.2 -40.9886 21.6938 83.1118 + 686.3 -40.3193 21.572 83.0908 + 686.4 -39.6501 21.4945 83.0458 + 686.5 -38.9911 21.4613 83.0168 + 686.6 -38.3425 21.4613 82.9838 + 686.7 -37.6938 21.5056 82.9689 + 686.8 -37.0555 21.5499 82.9419 + 686.9 -36.4068 21.5831 82.9129 + 687 -35.7891 21.6495 82.8939 + 687.1 -35.1816 21.727 82.8919 + 687.2 -34.5638 21.7935 82.8969 + 687.3 -33.9461 21.8489 82.9029 + 687.4 -33.3386 21.8932 82.9089 + 687.5 -32.7311 21.9374 82.9189 + 687.6 -32.1237 21.9817 82.9239 + 687.7 -31.5059 21.9817 82.9199 + 687.8 -30.9087 21.9596 82.8929 + 687.9 -30.3116 21.9374 82.9049 + 688 -29.735 21.8931 82.9349 + 688.1 -29.1481 21.871 82.9409 + 688.2 -28.5612 21.8156 82.9349 + 688.3 -27.9744 21.7381 82.9269 + 688.4 -27.3875 21.6606 82.9189 + 688.5 -26.8006 21.5941 82.9109 + 688.6 -26.2137 21.5388 82.9319 + 688.7 -25.6269 21.4723 82.9359 + 688.8 -25.04 21.417 82.9249 + 688.9 -24.4428 21.3616 82.9269 + 689 -23.8456 21.2951 82.9319 + 689.1 -23.2382 21.2287 82.9239 + 689.2 -22.6307 21.1733 82.9179 + 689.3 -22.0232 21.1069 82.9209 + 689.4 -21.3952 21.0404 82.8999 + 689.5 -20.7671 20.974 82.9109 + 689.6 -20.1288 20.9076 82.8919 + 689.7 -19.4801 20.8411 82.9059 + 689.8 -18.8212 20.7747 82.9009 + 689.9 -18.1519 20.7082 82.9009 + 690 -17.4724 20.6307 82.8899 + 690.1 -16.7826 20.5643 82.8929 + 690.2 -16.0824 20.4978 82.8959 + 690.3 -15.3823 20.4203 82.9039 + 690.4 -14.6616 20.3317 82.888 + 690.5 -13.9511 20.1767 82.893 + 690.6 -13.2407 20.0438 82.888 + 690.7 -12.5406 19.8777 82.895 + 690.8 -11.8508 19.6783 82.901 + 690.9 -11.1815 19.4347 82.902 + 691 -10.5329 19.1689 82.913 + 691.1 -9.8945 18.8699 82.911 + 691.2 -9.28704 18.5488 82.922 + 691.3 -8.67957 18.2166 82.929 + 691.4 -8.0824 17.8733 82.935 + 691.5 -7.47493 17.5411 82.913 + 691.6 -6.87776 17.1978 82.89 + 691.7 -6.27029 16.8323 82.889 + 691.8 -5.65253 16.489 82.88 + 691.9 -5.02447 16.1458 82.89 + 692 -4.37582 15.8025 82.894 + 692.1 -3.71687 15.4481 82.898 + 692.2 -3.05793 15.0937 82.882 + 692.3 -2.40928 14.7172 82.878 + 692.4 -1.76062 14.3296 82.88 + 692.5 -1.11197 13.942 82.886 + 692.6 -0.453026 13.5434 82.881 + 692.7 0.195625 13.1115 82.894 + 692.8 0.823684 12.6464 82.879 + 692.9 1.43115 12.1592 82.885 + 693 2.02832 11.6719 82.891 + 693.1 2.6049 11.1736 82.902 + 693.2 3.20207 10.6752 82.913 + 693.3 3.79924 10.1769 82.902 + 693.4 4.36553 9.64537 82.893 + 693.5 4.94211 9.1249 82.905 + 693.6 5.52898 8.60443 82.913 + 693.7 6.12615 8.08395 82.912 + 693.8 6.73362 7.57455 82.916 + 693.9 7.35138 7.06515 82.931 + 694 7.95885 6.54468 82.938 + 694.1 8.57662 6.02421 82.935 + 694.2 9.19438 5.50373 82.94 + 694.3 9.81214 4.98326 82.945 + 694.4 10.4299 4.46279 82.958 + 694.5 11.058 3.94231 82.956 + 694.6 11.686 3.42184 82.958 + 694.7 12.3244 2.90137 82.975 + 694.8 12.9421 2.3809 82.964 + 694.9 13.5805 1.86042 82.977 + 695 14.2086 1.35102 82.985 + 695.1 14.8469 0.83055 82.983 + 695.2 15.475 0.310077 82.972 + 695.3 16.103 -0.199322 82.99 + 695.4 16.7311 -0.719795 82.99 + 695.5 17.3592 -1.22919 82.988 + 695.6 17.9769 -1.72752 82.995 + 695.7 18.605 -2.23692 82.992 + 695.8 19.233 -2.75739 82.991 + 695.9 19.8611 -3.25572 82.992 + 696 20.4892 -3.77619 82.99 + 696.1 21.1172 -4.28559 82.977 + 696.2 21.7556 -4.79499 82.969 + 696.3 22.3939 -5.31546 82.935 + 696.4 23.0323 -5.83593 82.875 + 696.5 23.6809 -6.3564 82.803 + 696.6 24.3296 -6.88795 82.6839 + 696.7 24.9783 -7.40842 82.5409 + 696.8 25.6269 -7.9289 82.3559 + 696.9 26.2653 -8.44937 82.1439 + 697 26.9139 -8.96984 81.9059 + 697.1 27.5626 -9.50139 81.6489 + 697.2 28.2112 -10.0108 81.3759 + 697.3 28.8599 -10.5313 81.0969 + 697.4 29.5085 -11.0517 80.8069 + 697.5 30.1572 -11.5722 80.5089 + 697.6 30.8058 -12.0927 80.2109 + 697.7 31.4442 -12.6131 79.9199 + 697.8 32.0928 -13.1336 79.6469 + 697.9 32.7209 -13.643 79.3809 + 698 33.3592 -14.1635 79.1379 + 698.1 34.0079 -14.684 78.9049 + 698.2 34.6566 -15.1934 78.6699 + 698.3 35.2846 -15.7138 78.4489 + 698.4 35.9333 -16.2121 78.2399 + 698.5 36.5716 -16.7326 78.0089 + 698.6 37.21 -17.242 77.8099 + 698.7 37.8586 -17.7514 77.6339 + 698.8 38.5073 -18.2608 77.4929 + 698.9 39.1559 -18.7591 77.3669 + 699 39.8046 -19.2685 77.2658 + 699.1 40.4532 -19.789 77.1908 + 699.2 41.0916 -20.2873 77.1568 + 699.3 41.7608 -20.7746 77.1128 + 699.4 42.4507 -21.2175 77.0758 + 699.5 43.1302 -21.6605 77.0638 + 699.6 43.8407 -22.0813 77.0558 + 699.7 44.5511 -22.4467 77.0418 + 699.8 45.2924 -22.7679 77.0548 + 699.9 46.044 -23.0558 77.0708 + 700 46.7853 -23.2994 77.0688 + 700.1 47.5266 -23.4987 77.0638 + 700.2 48.268 -23.6316 77.0748 + 700.3 49.0093 -23.7313 77.0808 + 700.4 49.7403 -23.7867 77.0908 + 700.5 50.4507 -23.7977 77.0858 + 700.6 51.1509 -23.7756 77.0878 + 700.7 51.851 -23.6981 77.0807 + 700.8 52.5202 -23.5873 77.0907 + 700.9 53.1792 -23.4433 77.0847 + 701 53.797 -23.2551 77.0797 + 701.1 54.3941 -23.0336 77.0617 + 701.2 54.981 -22.7789 77.0767 + 701.3 55.5267 -22.491 77.0777 + 701.4 56.0415 -22.1698 77.0607 + 701.5 56.5254 -21.8265 77.0567 + 701.6 56.9887 -21.45 77.0557 + 701.7 57.4109 -21.0624 77.0497 + 701.8 57.8227 -20.6527 77.0437 + 701.9 58.214 -20.2208 77.0457 + 702 58.6361 -19.8222 77.0427 + 702.1 59.017 -19.4014 77.0367 + 702.2 59.3877 -18.9695 77.0427 + 702.3 59.7687 -18.5487 77.0337 + 702.4 60.1496 -18.1389 77.0617 + 702.5 60.5511 -17.7292 77.0427 + 702.6 60.9527 -17.3195 77.0447 + 702.7 61.3542 -16.9097 77.0357 + 702.8 61.7661 -16.4889 77.0217 + 702.9 62.1676 -16.0902 77.0047 + 703 62.5898 -15.6805 77.0057 + 703.1 63.0222 -15.2708 77.0047 + 703.2 63.4443 -14.85 76.9747 + 703.3 63.8871 -14.4292 76.9897 + 703.4 64.3092 -13.9973 76.9787 + 703.5 64.7416 -13.5654 76.9777 + 703.6 65.1638 -13.1224 76.9807 + 703.7 65.5962 -12.6684 76.9747 + 703.8 66.0286 -12.2144 76.9676 + 703.9 66.4611 -11.7603 76.9646 + 704 66.8935 -11.2952 76.9796 + 704.1 67.3156 -10.8301 76.9766 + 704.2 67.7687 -10.3539 76.9716 + 704.3 68.2217 -9.91099 76.9846 + 704.4 68.6953 -9.46803 76.9876 + 704.5 69.1792 -9.02507 76.9806 + 704.6 69.6734 -8.60426 76.9876 + 704.7 70.1985 -8.2056 76.9836 + 704.8 70.7236 -7.81801 76.9906 + 704.9 71.2693 -7.45257 76.9856 + 705 71.8356 -7.12035 76.9926 + 705.1 72.4019 -6.7992 76.9896 + 705.2 72.9784 -6.50021 76.9956 + 705.3 73.5653 -6.22336 76.9966 + 705.4 74.1728 -5.95758 76.9916 + 705.5 74.7802 -5.71395 76.9916 + 705.6 75.3877 -5.47032 76.9836 + 705.7 75.9952 -5.20454 76.9795 + 705.8 76.6026 -4.97199 76.9855 + 705.9 77.2307 -4.72836 76.9735 + 706 77.8588 -4.48473 76.9695 + 706.1 78.4765 -4.23003 76.9735 + 706.2 79.1046 -3.97533 76.9605 + 706.3 79.7326 -3.70955 76.9685 + 706.4 80.3607 -3.44377 76.9635 + 706.5 80.9888 -3.178 76.9615 + 706.6 81.6374 -2.91222 76.9595 + 706.7 82.2655 -2.63537 76.9555 + 706.8 82.9038 -2.35852 76.9495 + 706.9 83.5525 -2.08167 76.9475 + 707 84.1908 -1.80482 76.9364 + 707.1 84.8292 -1.52797 76.9344 + 707.2 85.4778 -1.25111 76.9274 + 707.3 86.1265 -0.963189 76.9174 + 707.4 86.7751 -0.675264 76.9204 + 707.5 87.4341 -0.398413 76.9104 + 707.6 88.0827 -0.0994143 76.9164 + 707.7 88.7314 0.188511 76.9014 + 707.8 89.4006 0.476436 76.9044 + 707.9 90.0596 0.764361 76.8934 + 708 90.7082 1.06336 76.8844 + 708.1 91.3774 1.36236 76.8843 + 708.2 92.0364 1.65028 76.8793 + 708.3 92.6953 1.94928 76.8653 + 708.4 93.3646 2.24828 76.8563 + 708.5 94.0441 2.54728 76.8423 + 708.6 94.7134 2.84628 76.8333 + 708.7 95.3929 3.14528 76.8243 + 708.8 96.0724 3.44428 76.8233 + 708.9 96.7623 3.75435 76.8103 + 709 97.4418 4.05335 76.8073 + 709.1 98.1213 4.36343 76.7962 + 709.2 98.8112 4.66243 76.7872 + 709.3 99.501 4.9725 76.7892 + 709.4 100.191 5.2715 76.7672 + 709.5 100.881 5.59265 76.7562 + 709.6 101.581 5.89165 76.7442 + 709.7 102.271 6.21279 76.7442 + 709.8 102.971 6.51179 76.7322 + 709.9 103.661 6.81079 76.7122 + 710 104.361 7.10979 76.7121 + 710.1 105.061 7.41987 76.6871 + 710.2 105.771 7.72994 76.6861 + 710.3 106.471 8.02894 76.6761 + 710.4 107.192 8.33902 76.6701 + 710.5 107.913 8.63802 76.6471 + 710.6 108.644 8.93702 76.6231 + 710.7 109.385 9.23602 76.6391 + 710.8 110.126 9.53502 76.632 + 710.9 110.878 9.83402 76.623 + 711 111.64 10.133 76.613 + 711.1 112.402 10.4209 76.611 + 711.2 113.174 10.7199 76.615 + 711.3 113.946 11.0189 76.609 + 711.4 114.708 11.3179 76.617 + 711.5 115.46 11.6723 76.5869 + 711.6 116.181 12.0488 76.5839 + 711.7 116.922 12.4143 76.5929 + 711.8 117.612 12.8129 76.5749 + 711.9 118.291 13.267 76.5609 + 712 118.919 13.7432 76.5489 + 712.1 119.516 14.2415 76.5469 + 712.2 120.083 14.762 76.5379 + 712.3 120.618 15.3157 76.5248 + 712.4 121.102 15.8804 76.5218 + 712.5 121.576 16.4674 76.5318 + 712.6 122.029 17.0543 76.5228 + 712.7 122.44 17.6523 76.5068 + 712.8 122.821 18.2613 76.5058 + 712.9 123.182 18.8815 76.5108 + 713 123.522 19.5127 76.5108 + 713.1 123.83 20.1328 76.4708 + 713.2 124.16 20.7641 76.4698 + 713.3 124.469 21.3953 76.4678 + 713.4 124.778 22.0265 76.4617 + 713.5 125.056 22.6577 76.4477 + 713.6 125.354 23.2778 76.4467 + 713.7 125.653 23.8869 76.4297 + 713.8 125.962 24.496 76.4307 + 713.9 126.271 25.105 76.4267 + 714 126.579 25.703 76.4207 + 714.1 126.888 26.301 76.4007 + 714.2 127.197 26.8879 76.3917 + 714.3 127.506 27.4749 76.3797 + 714.4 127.825 28.0618 76.3647 + 714.5 128.134 28.6487 76.3466 + 714.6 128.443 29.2245 76.3356 + 714.7 128.762 29.8004 76.3306 + 714.8 129.071 30.3762 76.3146 + 714.9 129.39 30.941 76.3116 + 715 129.709 31.5169 76.2956 + 715.1 130.029 32.0816 76.2966 + 715.2 130.348 32.6464 76.2766 + 715.3 130.646 33.2222 76.2626 + 715.4 130.955 33.787 76.2466 + 715.5 131.264 34.3629 76.2346 + 715.6 131.563 34.9387 76.2275 + 715.7 131.841 35.5145 76.2175 + 715.8 132.119 36.1015 76.2025 + 715.9 132.386 36.6884 76.1925 + 716 132.644 37.2864 76.1735 + 716.1 132.901 37.8733 76.1715 + 716.2 133.128 38.4824 76.1565 + 716.3 133.354 39.0804 76.1545 + 716.4 133.57 39.6894 76.1395 + 716.5 133.766 40.3096 76.1295 + 716.6 133.951 40.9297 76.1205 + 716.7 134.137 41.5498 76.1195 + 716.8 134.281 42.17 76.1084 + 716.9 134.445 42.8012 76.0984 + 717 134.579 43.4324 76.0874 + 717.1 134.713 44.0636 76.0704 + 717.2 134.826 44.6948 76.0734 + 717.3 134.929 45.326 76.0674 + 717.4 135.022 45.9573 76.0374 + 717.5 135.094 46.5885 76.0434 + 717.6 135.156 47.2197 76.0344 + 717.7 135.197 47.8509 76.0224 + 717.8 135.228 48.4821 76.0024 + 717.9 135.248 49.1133 76.0194 + 718 135.238 49.7335 75.9924 + 718.1 135.228 50.3647 75.9814 + 718.2 135.197 50.9848 75.9754 + 718.3 135.156 51.6049 75.9614 + 718.4 135.104 52.2362 75.9614 + 718.5 135.043 52.8563 75.9524 + 718.6 134.97 53.4654 75.9383 + 718.7 134.867 54.0855 75.9243 + 718.8 134.744 54.6835 75.9113 + 718.9 134.6 55.2815 75.9063 + 719 134.445 55.8795 75.8833 + 719.1 134.26 56.4664 75.8923 + 719.2 134.054 57.0422 75.8703 + 719.3 133.828 57.607 75.8643 + 719.4 133.57 58.1607 75.8473 + 719.5 133.302 58.7033 75.8543 + 719.6 133.014 59.2348 75.8513 + 719.7 132.726 59.7664 75.8313 + 719.8 132.407 60.2758 75.8203 + 719.9 132.067 60.7741 75.8183 + 720 131.717 61.2613 75.7843 + 720.1 131.356 61.7486 75.7843 + 720.2 130.976 62.2026 75.7734 + 720.3 130.574 62.6456 75.7584 + 720.4 130.152 63.0775 75.7394 + 720.5 129.719 63.4761 75.7194 + 720.6 129.277 63.8637 75.7024 + 720.7 128.824 64.2181 75.7014 + 720.8 128.35 64.5503 75.6724 + 720.9 127.866 64.8714 75.6634 + 721 127.362 65.1482 75.6594 + 721.1 126.857 65.4029 75.6604 + 721.2 126.342 65.6355 75.6614 + 721.3 125.817 65.8348 75.6524 + 721.4 125.292 66.012 75.6584 + 721.5 124.767 66.1781 75.6554 + 721.6 124.242 66.3331 75.6514 + 721.7 123.707 66.4771 75.6335 + 721.8 123.181 66.621 75.6125 + 721.9 122.646 66.765 75.5875 + 722 122.111 66.909 75.5685 + 722.1 121.555 67.0418 75.5655 + 722.2 120.999 67.1858 75.5585 + 722.3 120.432 67.3297 75.5745 + 722.4 119.856 67.4626 75.5635 + 722.5 119.259 67.5955 75.5555 + 722.6 118.661 67.7284 75.5625 + 722.7 118.054 67.8613 75.5415 + 722.8 117.436 67.9831 75.5166 + 722.9 116.818 68.116 75.5046 + 723 116.18 68.2488 75.5086 + 723.1 115.531 68.4039 75.5096 + 723.2 114.873 68.57 75.4936 + 723.3 114.203 68.7361 75.4846 + 723.4 113.513 68.9022 75.4826 + 723.5 112.803 69.0794 75.4806 + 723.6 112.093 69.2233 75.4716 + 723.7 111.351 69.3894 75.4806 + 723.8 110.61 69.5334 75.4937 + 723.9 109.848 69.6773 75.4927 + 724 109.076 69.8102 75.5037 + 724.1 108.293 69.932 75.5007 + 724.2 107.501 70.0428 75.4877 + 724.3 106.697 70.1535 75.4907 + 724.4 105.884 70.2642 75.4807 + 724.5 105.05 70.386 75.4797 + 724.6 104.216 70.5078 75.4698 + 724.7 103.362 70.6186 75.4678 + 724.8 102.497 70.7515 75.4568 + 724.9 101.622 70.8843 75.4508 + 725 100.736 71.0172 75.4438 + 725.1 99.8403 71.1612 75.4438 + 725.2 98.9343 71.2941 75.4328 + 725.3 98.0076 71.438 75.4318 + 725.4 97.081 71.582 75.4229 + 725.5 96.1441 71.737 75.4259 + 725.6 95.1968 71.8809 75.4199 + 725.7 94.229 72.0249 75.4119 + 725.8 93.2715 72.191 75.4059 + 725.9 92.3036 72.335 75.3659 + 726 91.3152 72.49 75.2929 + 726.1 90.3371 72.645 75.2099 + 726.2 89.3487 72.8 75.082 + 726.3 88.3603 72.9551 74.918 + 726.4 87.3616 73.1101 74.724 + 726.5 86.3628 73.2651 74.496 + 726.6 85.3538 73.4312 74.257 + 726.7 84.3345 73.5973 74.031 + 726.8 83.3049 73.7523 73.82 + 726.9 82.2753 73.9295 73.652 + 727 81.2251 74.1067 73.4941 + 727.1 80.1852 74.2839 73.3481 + 727.2 79.135 74.45 73.2501 + 727.3 78.0848 74.6271 73.1781 + 727.4 77.0346 74.8043 73.1231 + 727.5 75.9741 74.9926 73.1001 + 727.6 74.9034 75.1698 73.0611 + 727.7 73.8429 75.3359 73.0441 + 727.8 72.7618 75.513 73.0481 + 727.9 71.691 75.6902 73.0471 + 728 70.6202 75.8785 73.0522 + 728.1 69.5391 76.0999 73.0632 + 728.2 68.489 76.3325 73.0512 + 728.3 67.4491 76.5761 73.0462 + 728.4 66.4092 76.8529 73.0602 + 728.5 65.4002 77.163 73.0642 + 728.6 64.422 77.5174 73.0792 + 728.7 63.4645 77.905 73.0712 + 728.8 62.5276 78.3036 73.0772 + 728.9 61.6318 78.7466 73.0772 + 729 60.7669 79.2227 73.0722 + 729.1 59.933 79.7211 73.0842 + 729.2 59.1299 80.2526 73.0822 + 729.3 58.368 80.7952 73.0802 + 729.4 57.6473 81.3711 73.0792 + 729.5 56.9368 81.958 73.0802 + 729.6 56.1955 82.5338 73.0762 + 729.7 55.5057 83.1429 73.0472 + 729.8 54.8261 83.7519 73.0322 + 729.9 54.1363 84.3721 73.0362 + 730 53.4465 84.9922 73.0242 + 730.1 52.7463 85.6123 73.0242 + 730.2 52.0565 86.2435 73.0122 + 730.3 51.3873 86.908 72.9972 + 730.4 50.7386 87.5613 72.9792 + 730.5 50.09 88.2368 72.9862 + 730.6 49.4722 88.9234 73.0092 + 730.7 48.8956 89.6321 73.0102 + 730.8 48.3294 90.363 73.0082 + 730.9 47.8146 91.116 73.0182 + 731 47.3306 91.858 73.0272 + 731.1 46.8776 92.6221 73.0392 + 731.2 46.4452 93.364 73.0481 + 731.3 45.9613 94.1171 73.0221 + 731.4 45.5185 94.8701 73.0171 + 731.5 45.1067 95.6342 73.0041 + 731.6 44.664 96.3983 73.0101 + 731.7 44.2006 97.1624 72.9981 + 731.8 43.7373 97.9265 72.9981 + 731.9 43.2534 98.6795 72.9971 + 732 42.7798 99.4325 72.9911 + 732.1 42.2959 100.197 72.9911 + 732.2 41.812 100.961 72.9911 + 732.3 41.3281 101.725 72.9931 + 732.4 40.8338 102.489 72.985 + 732.5 40.3396 103.264 72.977 + 732.6 39.8351 104.028 72.979 + 732.7 39.3203 104.803 72.982 + 732.8 38.8055 105.59 72.978 + 732.9 38.2907 106.365 72.971 + 733 37.7862 107.14 72.965 + 733.1 37.2611 107.937 72.965 + 733.2 36.736 108.724 72.966 + 733.3 36.2109 109.51 72.971 + 733.4 35.6858 110.307 72.9639 + 733.5 35.1504 111.104 72.9579 + 733.6 34.6151 111.913 72.9589 + 733.7 34.0694 112.721 72.9529 + 733.8 33.534 113.53 72.9459 + 733.9 32.9883 114.349 72.9439 + 734 32.4426 115.157 72.9339 + 734.1 31.8969 115.988 72.9389 + 734.2 31.3409 116.807 72.9328 + 734.3 30.7849 117.638 72.9318 + 734.4 30.2393 118.457 72.9318 + 734.5 29.6833 119.288 72.9298 + 734.6 29.117 120.119 72.9268 + 734.7 28.561 120.96 72.9218 + 734.8 28.005 121.802 72.9148 + 734.9 27.449 122.632 72.9168 + 735 26.8725 123.474 72.9177 + 735.1 26.3165 124.316 72.9157 + 735.2 25.7502 125.157 72.9057 + 735.3 25.1839 125.999 72.9057 + 735.4 24.6176 126.84 72.9057 + 735.5 24.0514 127.682 72.9007 + 735.6 23.4954 128.513 72.8987 + 735.7 22.9394 129.365 72.8906 + 735.8 22.4143 130.229 72.8926 + 735.9 21.9201 131.104 72.8856 + 736 21.4568 131.968 72.8896 + 736.1 21.0243 132.842 72.9096 + 736.2 20.6434 133.728 72.9196 + 736.3 20.3036 134.614 72.9335 + 736.4 20.0256 135.5 72.9425 + 736.5 19.7785 136.386 72.9665 + 736.6 19.5726 137.272 72.9645 + 736.7 19.4182 138.125 72.9805 + 736.8 19.3049 138.988 72.9884 + 736.9 19.2431 139.841 72.9844 + 737 19.2328 140.672 72.9934 + 737.1 19.2534 141.491 72.9974 + 737.2 19.3255 142.288 72.9894 + 737.3 19.4285 143.064 72.9714 + 737.4 19.5726 143.828 72.9753 + 737.5 19.7579 144.559 72.9583 + 737.6 19.9844 145.267 72.9633 + 737.7 20.2418 145.954 72.9563 + 737.8 20.5404 146.607 72.9443 + 737.9 20.8596 147.238 72.9423 + 738 21.2302 147.836 72.9312 + 738.1 21.5906 148.423 72.9332 + 738.2 21.951 149.032 72.9132 + 738.3 22.3628 149.608 72.8892 + 738.4 22.7849 150.162 72.8862 + 738.5 23.2379 150.716 72.8612 + 738.6 23.6807 151.269 72.8382 + 738.7 24.1234 151.823 72.8441 + 738.8 24.5867 152.377 72.8381 + 738.9 25.0603 152.919 72.8401 + 739 25.5545 153.451 72.8371 + 739.1 26.0487 153.982 72.8221 + 739.2 26.5429 154.514 72.8221 + 739.3 27.0474 155.034 72.81 + 739.4 27.5622 155.544 72.801 + 739.5 28.0667 156.075 72.799 + 739.6 28.5815 156.585 72.793 + 739.7 29.1066 157.105 72.78 + 739.8 29.642 157.615 72.769 + 739.9 30.1774 158.124 72.769 + 740 30.7128 158.634 72.7549 + 740.1 31.2585 159.132 72.7429 + 740.2 31.8247 159.63 72.7319 + 740.3 32.4013 160.095 72.7419 + 740.4 32.9882 160.549 72.7189 + 740.5 33.5853 160.992 72.7179 + 740.6 34.1928 161.413 72.7119 + 740.7 34.8209 161.812 72.7128 + 740.8 35.4489 162.166 72.7178 + 740.9 36.1078 162.509 72.6968 + 741 36.7565 162.831 72.6978 + 741.1 37.4154 163.118 72.6838 + 741.2 38.0847 163.373 72.6818 + 741.3 38.7539 163.606 72.6748 + 741.4 39.4334 163.816 72.6708 + 741.5 40.1027 164.027 72.6598 + 741.6 40.7822 164.237 72.6517 + 741.7 41.472 164.436 72.6287 + 741.8 42.1516 164.613 72.6187 + 741.9 42.8517 164.802 72.6017 + 742 43.5415 165.001 72.5857 + 742.1 44.2313 165.211 72.5957 + 742.2 44.9212 165.433 72.5987 + 742.3 45.611 165.643 72.5887 + 742.4 46.3111 165.865 72.6037 + 742.5 47.0009 166.086 72.5977 + 742.6 47.6908 166.308 72.6056 + 742.7 48.3909 166.518 72.6016 + 742.8 49.091 166.717 72.6086 + 742.9 49.8014 166.917 72.5976 + 743 50.5118 167.083 72.6046 + 743.1 51.2326 167.238 72.6016 + 743.2 51.9327 167.36 72.6286 + 743.3 52.6534 167.459 72.6156 + 743.4 53.3535 167.515 72.6226 + 743.5 54.0742 167.559 72.6256 + 743.6 54.7744 167.57 72.6396 + 743.7 55.4745 167.559 72.6335 + 743.8 56.1746 167.526 72.6245 + 743.9 56.8747 167.471 72.6055 + 744 57.5646 167.393 72.6105 + 744.1 58.2544 167.293 72.6145 + 744.2 58.9442 167.183 72.6135 + 744.3 59.634 167.094 72.6185 + 744.4 60.3239 166.994 72.6045 + 744.5 61.0137 166.873 72.6185 + 744.6 61.7138 166.762 72.5925 + 744.7 62.4139 166.651 72.5935 + 744.8 63.1038 166.529 72.5945 + 744.9 63.8039 166.407 72.5955 + 745 64.504 166.275 72.5925 + 745.1 65.1939 166.108 72.5985 + 745.2 65.8734 165.942 72.5985 + 745.3 66.5529 165.743 72.5955 + 745.4 67.2222 165.544 72.6045 + 745.5 67.8914 165.322 72.6035 + 745.6 68.5503 165.09 72.5865 + 745.7 69.199 164.835 72.5815 + 745.8 69.8476 164.58 72.5775 + 745.9 70.4963 164.315 72.5685 + 746 71.1346 164.06 72.5545 + 746.1 71.7833 163.794 72.5525 + 746.2 72.4319 163.517 72.5395 + 746.3 73.0806 163.229 72.5355 + 746.4 73.7292 162.93 72.5205 + 746.5 74.3675 162.62 72.5355 + 746.6 74.9956 162.299 72.5245 + 746.7 75.6134 161.945 72.5265 + 746.8 76.2208 161.568 72.5435 + 746.9 76.8077 161.17 72.5485 + 747 77.3637 160.771 72.5595 + 747.1 77.9094 160.339 72.5495 + 747.2 78.455 159.896 72.5445 + 747.3 78.9698 159.442 72.5365 + 747.4 79.4743 158.977 72.5245 + 747.5 79.9583 158.49 72.5265 + 747.6 80.4319 157.991 72.5365 + 747.7 80.8952 157.493 72.5285 + 747.8 81.3379 156.973 72.5215 + 747.9 81.7704 156.441 72.5435 + 748 82.1822 155.898 72.5256 + 748.1 82.594 155.356 72.5336 + 748.2 83.0265 154.813 72.5196 + 748.3 83.4383 154.271 72.5316 + 748.4 83.8604 153.717 72.5096 + 748.5 84.2826 153.152 72.5076 + 748.6 84.7047 152.598 72.5046 + 748.7 85.1372 152.045 72.5026 + 748.8 85.5799 151.48 72.5116 + 748.9 86.0226 150.926 72.5016 + 749 86.4653 150.362 72.4976 + 749.1 86.9287 149.797 72.4936 + 749.2 87.3817 149.243 72.5026 + 749.3 87.8244 148.678 72.5057 + 749.4 88.2877 148.114 72.4937 + 749.5 88.7408 147.56 72.4877 + 749.6 89.1938 147.006 72.4877 + 749.7 89.6571 146.441 72.4917 + 749.8 90.1204 145.877 72.4747 + 749.9 90.5837 145.323 72.4757 + 750 91.0471 144.758 72.4867 + 750.1 91.5104 144.204 72.4757 + 750.2 91.9737 143.64 72.4777 + 750.3 92.4473 143.075 72.4747 + 750.4 92.9209 142.521 72.4747 + 750.5 93.3843 141.956 72.4727 + 750.6 93.8579 141.392 72.4617 + 750.7 94.3315 140.827 72.4677 + 750.8 94.7742 140.251 72.4617 + 750.9 95.217 139.653 72.4458 + 751 95.6391 139.055 72.4328 + 751.1 96.0303 138.446 72.4378 + 751.2 96.401 137.826 72.4368 + 751.3 96.7408 137.184 72.4388 + 751.4 97.0291 136.53 72.4428 + 751.5 97.3071 135.877 72.4368 + 751.6 97.5542 135.224 72.4508 + 751.7 97.7498 134.57 72.4518 + 751.8 97.9145 133.906 72.4448 + 751.9 98.0484 133.241 72.4458 + 752 98.1925 132.588 72.4479 + 752.1 98.3676 131.935 72.4429 + 752.2 98.5014 131.281 72.4389 + 752.3 98.6147 130.639 72.4389 + 752.4 98.7588 129.975 72.4389 + 752.5 98.903 129.332 72.4469 + 752.6 99.0677 128.679 72.4319 + 752.7 99.2325 128.026 72.4389 + 752.8 99.3972 127.372 72.4279 + 752.9 99.5722 126.719 72.435 + 753 99.7473 126.065 72.425 + 753.1 99.9223 125.412 72.416 + 753.2 100.108 124.748 72.41 + 753.3 100.283 124.083 72.41 + 753.4 100.468 123.419 72.409 + 753.5 100.653 122.754 72.412 + 753.6 100.849 122.09 72.416 + 753.7 101.045 121.426 72.407 + 753.8 101.24 120.75 72.4 + 753.9 101.415 120.075 72.3861 + 754 101.59 119.388 72.3821 + 754.1 101.724 118.701 72.3961 + 754.2 101.868 118.004 72.3811 + 754.3 101.992 117.317 72.3711 + 754.4 102.105 116.608 72.3861 + 754.5 102.198 115.911 72.3811 + 754.6 102.28 115.202 72.3911 + 754.7 102.352 114.482 72.3891 + 754.8 102.404 113.773 72.3972 + 754.9 102.445 113.065 72.3892 + 755 102.486 112.345 72.3882 + 755.1 102.527 111.625 72.3862 + 755.2 102.548 110.905 72.3932 + 755.3 102.558 110.186 72.3912 + 755.4 102.568 109.455 72.3792 + 755.5 102.568 108.735 72.3782 + 755.6 102.558 108.015 72.3773 + 755.7 102.538 107.284 72.3793 + 755.8 102.517 106.553 72.3693 + 755.9 102.476 105.834 72.3663 + 756 102.435 105.103 72.3683 + 756.1 102.393 104.372 72.3593 + 756.2 102.332 103.63 72.3483 + 756.3 102.27 102.888 72.3453 + 756.4 102.198 102.124 72.3314 + 756.5 102.126 101.371 72.3344 + 756.6 102.033 100.596 72.3244 + 756.7 101.93 99.8093 72.3244 + 756.8 101.796 99.0341 72.3334 + 756.9 101.642 98.259 72.3314 + 757 101.457 97.4838 72.3414 + 757.1 101.251 96.7197 72.3425 + 757.2 101.004 95.9667 72.3445 + 757.3 100.726 95.2358 72.3565 + 757.4 100.437 94.527 72.3665 + 757.5 100.139 93.8294 72.3725 + 757.6 99.8195 93.1317 72.3805 + 757.7 99.4798 92.4451 72.3796 + 757.8 99.1297 91.7586 72.3666 + 757.9 98.8003 91.072 72.3496 + 758 98.4605 90.3854 72.3436 + 758.1 98.131 89.6877 72.3536 + 758.2 97.7913 88.979 72.3516 + 758.3 97.4515 88.2703 72.3486 + 758.4 97.122 87.5615 72.3677 + 758.5 96.7823 86.8307 72.3577 + 758.6 96.4528 86.0998 72.3647 + 758.7 96.1233 85.3578 72.3657 + 758.8 95.7836 84.6159 72.3707 + 758.9 95.4541 83.8739 72.3677 + 759 95.1143 83.1209 72.3787 + 759.1 94.7849 82.3679 72.3758 + 759.2 94.4245 81.6038 72.3738 + 759.3 94.0539 80.8618 72.3768 + 759.4 93.6729 80.0977 72.3718 + 759.5 93.2714 79.3779 72.3808 + 759.6 92.8493 78.647 72.3718 + 759.7 92.3962 77.9383 72.3829 + 759.8 91.9329 77.2517 72.3959 + 759.9 91.4387 76.5873 72.3959 + 760 90.9342 75.9339 72.4059 + 760.1 90.44 75.2695 72.3949 + 760.2 89.9355 74.6051 72.4169 + 760.3 89.431 73.9628 72.4249 + 760.4 88.9162 73.3094 72.426 + 760.5 88.4117 72.645 72.436 + 760.6 87.9072 71.9805 72.43 + 760.7 87.413 71.305 72.456 + 760.8 86.9188 70.6295 72.434 + 760.9 86.4143 69.954 72.446 + 761 85.9098 69.2674 72.437 + 761.1 85.4156 68.5919 72.4481 + 761.2 84.9111 67.9053 72.4571 + 761.3 84.4066 67.2187 72.4581 + 761.4 83.9124 66.5322 72.4561 + 761.5 83.4079 65.8456 72.4681 + 761.6 82.9034 65.1479 72.4671 + 761.7 82.3989 64.4613 72.4751 + 761.8 81.9047 63.7637 72.4712 + 761.9 81.4002 63.0771 72.4682 + 762 80.906 62.3794 72.4742 + 762.1 80.4118 61.6928 72.4822 + 762.2 79.9073 60.9952 72.4862 + 762.3 79.4028 60.2975 72.4892 + 762.4 78.8983 59.5999 72.4832 + 762.5 78.4041 58.9022 72.4822 + 762.6 77.8996 58.2046 72.4903 + 762.7 77.3951 57.518 72.4983 + 762.8 76.8906 56.8203 72.4873 + 762.9 76.3964 56.1227 72.4893 + 763 75.8919 55.425 72.4983 + 763.1 75.3874 54.7273 72.4813 + 763.2 74.8829 54.0297 72.4793 + 763.3 74.3784 53.332 72.4803 + 763.4 73.8636 52.6344 72.4804 + 763.5 73.3591 51.9256 72.4834 + 763.6 72.8546 51.228 72.4964 + 763.7 72.3501 50.5303 72.4824 + 763.8 71.8353 49.8216 72.4854 + 763.9 71.3308 49.1239 72.4844 + 764 70.8263 48.4263 72.4804 + 764.1 70.3115 47.7175 72.4694 + 764.2 69.807 47.0199 72.4724 + 764.3 69.2922 46.3112 72.4595 + 764.4 68.7774 45.6135 72.4735 + 764.5 68.2626 44.9048 72.4665 + 764.6 67.7478 44.2071 72.4585 + 764.7 67.233 43.4873 72.4535 + 764.8 66.7182 42.7786 72.4615 + 764.9 66.2034 42.0698 72.4485 + 765 65.6783 41.3611 72.4365 + 765.1 65.1532 40.6302 72.4335 + 765.2 64.6281 39.9104 72.4375 + 765.3 64.0927 39.1796 72.4346 + 765.4 63.5573 38.4487 72.4286 + 765.5 63.0116 37.7178 72.4246 + 765.6 62.4248 36.998 72.4086 + 765.7 61.8379 36.3114 72.4106 + 765.8 61.2407 35.6359 72.4046 + 765.9 60.623 34.9936 72.4106 + 766 59.9846 34.3735 72.4116 + 766.1 59.336 33.8087 72.4206 + 766.2 58.6564 33.2771 72.4256 + 766.3 57.9769 32.7899 72.4227 + 766.4 57.2974 32.3359 72.4277 + 766.5 56.5972 31.9372 72.4347 + 766.6 55.8971 31.5607 72.4517 + 766.7 55.1867 31.2285 72.4377 + 766.8 54.4866 30.9516 72.4427 + 766.9 53.7658 30.708 72.4587 + 767 53.0451 30.5087 72.4497 + 767.1 52.3347 30.3536 72.4587 + 767.2 51.6346 30.2318 72.4597 + 767.3 50.9344 30.1543 72.4567 + 767.4 50.2446 30.1211 72.4577 + 767.5 49.5651 30.11 72.4737 + 767.6 48.8649 30.0989 72.4567 + 767.7 48.1751 30.11 72.4367 + 767.8 47.4647 30.1543 72.4378 + 767.9 46.7645 30.2096 72.4228 + 768 46.0541 30.265 72.4328 + 768.1 45.3231 30.3314 72.4368 + 768.2 44.5818 30.3868 72.4318 + 768.3 43.8405 30.4533 72.4188 + 768.4 43.0786 30.5418 72.4088 + 768.5 42.3372 30.6969 72.3958 + 768.6 41.6062 30.8408 72.3938 + 768.7 40.8855 31.018 72.3998 + 768.8 40.1751 31.2395 72.4248 + 768.9 39.4955 31.5053 72.4208 + 769 38.8572 31.8043 72.4238 + 769.1 38.2291 32.1254 72.4308 + 769.2 37.6423 32.4687 72.4408 + 769.3 37.0863 32.8341 72.4468 + 769.4 36.5612 33.2439 72.4558 + 769.5 36.0361 33.6536 72.4568 + 769.6 35.5007 34.0633 72.4668 + 769.7 35.0065 34.5174 72.4718 + 769.8 34.5226 34.9825 72.4598 + 769.9 34.0283 35.4476 72.4568 + 770 33.5238 35.9348 72.4638 + 770.1 33.009 36.4221 72.4588 + 770.2 32.4839 36.9204 72.4618 + 770.3 31.9588 37.4298 72.4538 + 770.4 31.4337 37.9503 72.4478 + 770.5 30.8984 38.4929 72.4468 + 770.6 30.3527 39.0355 72.4438 + 770.7 29.807 39.6003 72.4448 + 770.8 29.2407 40.165 72.4458 + 770.9 28.6744 40.7519 72.4378 + 771 28.0875 41.3389 72.4388 + 771.1 27.5007 41.9368 72.4368 + 771.2 26.9035 42.557 72.4398 + 771.3 26.3063 43.1771 72.4408 + 771.4 25.6886 43.7973 72.4438 + 771.5 25.0708 44.4395 72.4518 + 771.6 24.453 45.0818 72.4498 + 771.7 23.8147 45.7352 72.4538 + 771.8 23.166 46.3996 72.4458 + 771.9 22.5277 47.064 72.4248 + 772 21.879 47.7396 72.4158 + 772.1 21.2098 48.4151 72.4158 + 772.2 20.5508 49.1016 72.4168 + 772.3 19.8713 49.7993 72.4008 + 772.4 19.1918 50.4969 72.4028 + 772.5 18.5122 51.2057 72.3988 + 772.6 17.8224 51.9144 72.3978 + 772.7 17.1223 52.6342 72.3958 + 772.8 16.4221 53.354 72.3848 + 772.9 15.7117 54.0849 72.3838 + 773 15.0013 54.8268 72.3827 + 773.1 14.2703 55.5688 72.3777 + 773.2 13.5392 56.3107 72.3957 + 773.3 12.8082 57.0638 72.3777 + 773.4 12.0669 57.8279 72.3837 + 773.5 11.3256 58.5809 72.3807 + 773.6 10.5843 59.3561 72.3867 + 773.7 9.82239 60.1201 72.3787 + 773.8 9.06048 60.8953 72.3807 + 773.9 8.30887 61.6705 72.3857 + 774 7.53667 62.4567 72.3877 + 774.1 6.76447 63.2319 72.3857 + 774.2 5.99227 64.0182 72.3867 + 774.3 5.20978 64.8044 72.3777 + 774.4 4.42728 65.6017 72.3847 + 774.5 3.64478 66.388 72.3727 + 774.6 2.85199 67.1853 72.3836 + 774.7 2.0592 67.9826 72.3726 + 774.8 1.26641 68.791 72.3776 + 774.9 0.46332 69.5883 72.3716 + 775 -0.339768 70.3967 72.3836 + 775.1 -1.14286 71.2051 72.3816 + 775.2 -1.93565 72.0135 72.3916 + 775.3 -2.73873 72.8219 72.3986 + 775.4 -3.54182 73.6303 72.4036 + 775.5 -4.34491 74.4498 72.4066 + 775.6 -5.148 75.2582 72.3996 + 775.7 -5.96138 76.0776 72.4145 + 775.8 -6.77476 76.886 72.4115 + 775.9 -7.57785 77.6944 72.4125 + 776 -8.38094 78.5139 72.4185 + 776.1 -9.18402 79.3223 72.4385 + 776.2 -9.98711 80.1307 72.4295 + 776.3 -10.8005 80.9391 72.4345 + 776.4 -11.5933 81.7364 72.4315 + 776.5 -12.3861 82.5448 72.4365 + 776.6 -13.1892 83.3532 72.4404 + 776.7 -13.982 84.1505 72.4404 + 776.8 -14.7747 84.9478 72.4384 + 776.9 -15.5675 85.7562 72.4334 + 777 -16.3603 86.5535 72.4334 + 777.1 -17.1531 87.3619 72.4314 + 777.2 -17.9356 88.1592 72.4284 + 777.3 -18.7284 88.9566 72.4263 + 777.4 -19.5212 89.7539 72.4183 + 777.5 -20.3037 90.5512 72.4263 + 777.6 -21.0965 91.3485 72.4153 + 777.7 -21.879 92.1348 72.4133 + 777.8 -22.6615 92.921 72.4153 + 777.9 -23.444 93.7183 72.4093 + 778 -24.2264 94.5046 72.4113 + 778.1 -24.9986 95.3019 72.4152 + 778.2 -25.7502 96.0992 72.4062 + 778.3 -26.5019 96.9076 72.4182 + 778.4 -27.2432 97.705 72.4112 + 778.5 -27.9742 98.5133 72.4382 + 778.6 -28.6949 99.3328 72.4332 + 778.7 -29.395 100.163 72.4331 + 778.8 -30.0848 100.994 72.4381 + 778.9 -30.7747 101.824 72.4331 + 779 -31.4336 102.666 72.4281 + 779.1 -32.072 103.53 72.4401 + 779.2 -32.6897 104.405 72.4251 + 779.3 -33.2663 105.268 72.44 + 779.4 -33.8532 106.143 72.455 + 779.5 -34.4606 107.007 72.446 + 779.6 -35.0372 107.871 72.455 + 779.7 -35.5829 108.757 72.453 + 779.8 -36.1492 109.62 72.459 + 779.9 -36.6845 110.517 72.4579 + 780 -37.1993 111.392 72.4529 + 780.1 -37.6935 112.267 72.4689 + 780.2 -38.1672 113.142 72.4829 + 780.3 -38.5687 114.028 72.4989 + 780.4 -38.9496 114.914 72.4958 + 780.5 -39.2688 115.789 72.5158 + 780.6 -39.5468 116.663 72.5288 + 780.7 -39.7836 117.538 72.5388 + 780.8 -39.9689 118.391 72.5398 + 780.9 -40.1234 119.244 72.5418 + 781 -40.2263 120.085 72.5427 + 781.1 -40.2881 120.905 72.5357 + 781.2 -40.3087 121.724 72.5537 + 781.3 -40.2881 122.522 72.5577 + 781.4 -40.216 123.297 72.5507 + 781.5 -40.1131 124.061 72.5487 + 781.6 -39.9483 124.814 72.5546 + 781.7 -39.763 125.534 72.5576 + 781.8 -39.5159 126.209 72.5566 + 781.9 -39.2585 126.874 72.5626 + 782 -38.9496 127.505 72.5656 + 782.1 -38.6201 128.103 72.5506 + 782.2 -38.2392 128.668 72.5436 + 782.3 -37.8479 129.199 72.5476 + 782.4 -37.4258 129.675 72.5386 + 782.5 -36.9728 130.107 72.5316 + 782.6 -36.4992 130.495 72.5176 + 782.7 -36.0153 130.838 72.5045 + 782.8 -35.5108 131.126 72.4985 + 782.9 -34.996 131.359 72.4845 + 783 -34.4812 131.547 72.4885 + 783.1 -33.9561 131.68 72.4855 + 783.2 -33.4207 131.768 72.4805 + 783.3 -32.8853 131.835 72.4555 + 783.4 -32.3602 131.868 72.4735 + 783.5 -31.8145 131.868 72.4586 + 783.6 -31.2585 131.835 72.4466 + 783.7 -30.7025 131.779 72.4556 + 783.8 -30.1363 131.713 72.4526 + 783.9 -29.5494 131.624 72.4586 + 784 -28.9522 131.536 72.4806 + 784.1 -28.3448 131.425 72.4806 + 784.2 -27.7167 131.292 72.4876 + 784.3 -27.0887 131.159 72.4926 + 784.4 -26.4503 131.026 72.5096 + 784.5 -25.8017 130.871 72.5096 + 784.6 -25.153 130.705 72.5066 + 784.7 -24.4838 130.539 72.5216 + 784.8 -23.8043 130.362 72.5276 + 784.9 -23.1144 130.174 72.5246 + 785 -22.4143 129.985 72.5216 + 785.1 -21.7142 129.786 72.5216 + 785.2 -21.0038 129.587 72.5206 + 785.3 -20.283 129.376 72.5226 + 785.4 -19.552 129.177 72.5247 + 785.5 -18.821 128.967 72.5197 + 785.6 -18.0797 128.745 72.5257 + 785.7 -17.3178 128.524 72.5267 + 785.8 -16.5662 128.302 72.5217 + 785.9 -15.8043 128.081 72.5297 + 786 -15.0321 127.848 72.5257 + 786.1 -14.2599 127.627 72.5307 + 786.2 -13.4774 127.416 72.5427 + 786.3 -12.6846 127.272 72.4997 + 786.4 -11.8918 127.117 72.5077 + 786.5 -11.099 126.973 72.5187 + 786.6 -10.296 126.896 72.5117 + 786.7 -9.51347 126.874 72.5317 + 786.8 -8.73097 126.896 72.5347 + 786.9 -7.95878 126.94 72.5227 + 787 -7.19688 127.051 72.5347 + 787.1 -6.47616 127.184 72.5447 + 787.2 -5.72455 127.317 72.5387 + 787.3 -4.96265 127.46 72.5317 + 787.4 -4.23164 127.638 72.5037 + 787.5 -3.51092 127.826 72.5177 + 787.6 -2.77991 128.003 72.5247 + 787.7 -2.0386 128.169 72.5237 + 787.8 -1.29729 128.346 72.5317 + 787.9 -0.545686 128.512 72.5267 + 788 0.205919 128.701 72.5357 + 788.1 0.96782 128.878 72.5277 + 788.2 1.72972 129.066 72.5247 + 788.3 2.50192 129.254 72.5317 + 788.4 3.26382 129.443 72.5297 + 788.5 4.04631 129.631 72.5287 + 788.6 4.8288 129.83 72.5207 + 788.7 5.6113 130.019 72.5217 + 788.8 6.40409 130.218 72.5287 + 788.9 7.19687 130.417 72.5387 + 789 7.99996 130.617 72.5407 + 789.1 8.80304 130.816 72.5446 + 789.2 9.60613 131.026 72.5646 + 789.3 10.4092 131.237 72.5656 + 789.4 11.2226 131.447 72.5726 + 789.5 12.0463 131.657 72.5616 + 789.6 12.8802 131.868 72.5566 + 789.7 13.7039 132.078 72.5616 + 789.8 14.5379 132.3 72.5616 + 789.9 15.3822 132.51 72.5556 + 790 16.2264 132.721 72.5476 + 790.1 17.081 132.942 72.5426 + 790.2 17.9356 133.152 72.5426 + 790.3 18.7901 133.363 72.5346 + 790.4 19.655 133.584 72.5406 + 790.5 20.5301 133.806 72.5276 + 790.6 21.4053 134.016 72.5255 + 790.7 22.2702 134.238 72.5205 + 790.8 23.1556 134.459 72.5225 + 790.9 24.0411 134.67 72.5125 + 791 24.9265 134.891 72.5115 + 791.1 25.8223 135.113 72.5035 + 791.2 26.718 135.334 72.4975 + 791.3 27.624 135.556 72.4915 + 791.4 28.5301 135.777 72.4845 + 791.5 29.4361 135.998 72.4815 + 791.6 30.3422 136.22 72.4955 + 791.7 31.2482 136.441 72.4955 + 791.8 32.1646 136.674 72.4864 + 791.9 33.0603 136.895 72.4904 + 792 33.9766 137.117 72.4994 + 792.1 34.8724 137.338 72.5004 + 792.2 35.7784 137.56 72.4984 + 792.3 36.6742 137.781 72.5104 + 792.4 37.5699 138.003 72.5064 + 792.5 38.4657 138.213 72.5094 + 792.6 39.3511 138.435 72.5094 + 792.7 40.2263 138.645 72.5134 + 792.8 41.0911 138.856 72.5183 + 792.9 41.9457 139.066 72.5143 + 793 42.8003 139.265 72.5153 + 793.1 43.6342 139.476 72.5193 + 793.2 44.4785 139.653 72.5203 + 793.3 45.3228 139.775 72.5033 + 793.4 46.1465 139.897 72.4853 + 793.5 46.9598 139.996 72.4913 + 793.6 47.7629 140.04 72.5163 + 793.7 48.5557 140.04 72.5253 + 793.8 49.3382 139.996 72.5423 + 793.9 50.1104 139.908 72.5353 + 794 50.8517 139.775 72.5363 + 794.1 51.5724 139.62 72.5233 + 794.2 52.2622 139.42 72.5223 + 794.3 52.9315 139.177 72.5103 + 794.4 53.5801 138.9 72.5163 + 794.5 54.1979 138.601 72.5173 + 794.6 54.8156 138.28 72.5073 + 794.7 55.4128 137.936 72.5083 + 794.8 56.01 137.582 72.4993 + 794.9 56.5969 137.206 72.4923 + 795 57.194 136.84 72.4673 + 795.1 57.7912 136.464 72.4663 + 795.2 58.3884 136.087 72.4723 + 795.3 59.0061 135.688 72.4813 + 795.4 59.6239 135.312 72.4853 + 795.5 60.2622 134.924 72.4833 + 795.6 60.8903 134.548 72.4693 + 795.7 61.5286 134.16 72.4153 + 795.8 62.1773 133.784 72.3423 + 795.9 62.8156 133.396 72.2413 + 796 63.4643 133.009 72.0973 + 796.1 64.1232 132.632 71.9363 + 796.2 64.7821 132.245 71.7303 + 796.3 65.4308 131.868 71.4993 + 796.4 66.1 131.491 71.2233 + 796.5 66.759 131.115 70.9253 + 796.6 67.4282 130.738 70.6203 + 796.7 68.1077 130.362 70.2743 + 796.8 68.777 129.985 69.9233 + 796.9 69.4565 129.598 69.5433 + 797 70.1463 129.221 69.1863 + 797.1 70.8362 128.834 68.8093 + 797.2 71.526 128.457 68.4263 + 797.3 72.2261 128.081 68.0623 + 797.4 72.9365 127.693 67.6943 + 797.5 73.6469 127.306 67.3473 + 797.6 74.3574 126.907 66.9943 + 797.7 75.0781 126.519 66.6623 + 797.8 75.8194 126.132 66.3253 + 797.9 76.5607 125.744 65.9793 + 798 77.2917 125.345 65.6183 + 798.1 78.0433 124.947 65.2543 + 798.2 78.8052 124.548 64.8823 + 798.3 79.5671 124.149 64.5063 + 798.4 80.329 123.751 64.1083 + 798.5 81.1012 123.341 63.7273 + 798.6 81.8734 122.931 63.3283 + 798.7 82.6662 122.522 62.9253 + 798.8 83.4486 122.112 62.5223 + 798.9 84.2414 121.691 62.1313 + 799 85.0342 121.27 61.7423 + 799.1 85.8373 120.838 61.3333 + 799.2 86.6301 120.418 60.9393 + 799.3 87.4435 119.986 60.5333 + 799.4 88.2568 119.554 60.1343 + 799.5 89.0702 119.122 59.7303 + 799.6 89.8733 118.69 59.3503 + 799.7 90.697 118.258 58.9453 + 799.8 91.5103 117.815 58.5443 + 799.9 92.334 117.383 58.1602 + 800 93.1474 116.94 57.7542 + 800.1 93.9608 116.508 57.3492 + 800.2 94.7844 116.065 56.9612 + 800.3 95.5978 115.634 56.5672 + 800.4 96.4215 115.191 56.1682 + 800.5 97.2349 114.748 55.7772 + 800.6 98.0585 114.316 55.3722 + 800.7 98.8822 113.873 54.9662 + 800.8 99.7059 113.43 54.5682 + 800.9 100.53 112.998 54.1652 + 801 101.353 112.544 53.7602 + 801.1 102.187 112.112 53.3632 + 801.2 103.001 111.658 52.9672 + 801.3 103.835 111.215 52.5702 + 801.4 104.658 110.772 52.1672 + 801.5 105.492 110.329 51.7742 + 801.6 106.316 109.886 51.3652 + 801.7 107.15 109.443 50.9752 + 801.8 107.984 108.989 50.5822 + 801.9 108.807 108.557 50.1711 + 802 109.641 108.103 49.7701 + 802.1 110.475 107.66 49.3751 + 802.2 111.309 107.217 48.9721 + 802.3 112.143 106.763 48.5731 + 802.4 112.977 106.309 48.1861 + 802.5 113.822 105.866 47.7761 + 802.6 114.656 105.412 47.3831 + 802.7 115.5 104.958 46.9861 + 802.8 116.354 104.493 46.5911 + 802.9 117.188 104.039 46.1981 + 803 118.043 103.585 45.8001 + 803.1 118.887 103.12 45.3981 + 803.2 119.731 102.655 44.999 + 803.3 120.586 102.201 44.599 + 803.4 121.441 101.725 44.202 + 803.5 122.295 101.271 43.807 + 803.6 123.15 100.795 43.397 + 803.7 124.014 100.341 43.008 + 803.8 124.869 99.8644 42.601 + 803.9 125.724 99.3993 42.211 + 804 126.578 98.9231 41.808 + 804.1 127.433 98.458 41.404 + 804.2 128.287 97.9929 41.009 + 804.3 129.152 97.5278 40.6079 + 804.4 130.007 97.0627 40.2009 + 804.5 130.851 96.6087 39.7959 + 804.6 131.716 96.1325 39.3999 + 804.7 132.57 95.6785 39.0119 + 804.8 133.425 95.2134 38.6019 + 804.9 134.279 94.7483 38.2019 + 805 135.124 94.2832 37.8039 + 805.1 135.978 93.8181 37.4049 + 805.2 136.833 93.364 37.0068 + 805.3 137.677 92.8989 36.6048 + 805.4 138.511 92.4449 36.2388 + 805.5 139.335 91.9909 35.9008 + 805.6 140.158 91.5479 35.5788 + 805.7 140.972 91.105 35.2908 + 805.8 141.775 90.6731 35.0308 + 805.9 142.568 90.2302 34.7988 + 806 143.36 89.8094 34.6228 + 806.1 144.143 89.3775 34.4647 + 806.2 144.915 88.9567 34.3587 + 806.3 145.687 88.5359 34.2817 + 806.4 146.46 88.1262 34.2297 + 806.5 147.232 87.7054 34.1977 + 806.6 148.004 87.3067 34.1787 + 806.7 148.776 86.9192 34.1697 + 806.8 149.548 86.5205 34.1857 + 806.9 150.331 86.1219 34.2016 + 807 151.103 85.7232 34.2316 + 807.1 151.885 85.3467 34.2526 + 807.2 152.658 84.9702 34.2706 + 807.3 153.44 84.5937 34.2816 + 807.4 154.223 84.2172 34.2886 + 807.5 155.005 83.8518 34.3046 + 807.6 155.788 83.5085 34.3015 + 807.7 156.57 83.1652 34.3125 + 807.8 157.363 82.8441 34.2945 + 807.9 158.166 82.5451 34.3025 + 808 158.979 82.2461 34.3155 + 808.1 159.772 81.936 34.3135 + 808.2 160.575 81.6481 34.3195 + 808.3 161.368 81.3713 34.3104 + 808.4 162.151 81.0945 34.3414 + 808.5 162.923 80.8176 34.3584 + 808.6 163.685 80.5519 34.3954 + 808.7 164.457 80.3304 34.4144 + 808.8 165.219 80.1089 34.4634 + 808.9 165.97 79.9207 34.5093 + 809 166.732 79.7324 34.6003 + 809.1 167.494 79.5885 34.6643 + 809.2 168.246 79.4888 34.7353 + 809.3 169.008 79.3892 34.8083 + 809.4 169.759 79.3227 34.8842 + 809.5 170.511 79.2674 34.9442 + 809.6 171.263 79.2231 34.9842 + 809.7 172.004 79.212 35.0282 + 809.8 172.755 79.212 35.0692 + 809.9 173.486 79.2342 35.0891 + 810 174.217 79.2785 35.0931 + 810.1 174.938 79.3339 35.1121 + 810.2 175.659 79.4225 35.1091 + 810.3 176.369 79.5332 35.1201 + 810.4 177.069 79.6661 35.124 + 810.5 177.759 79.8101 35.111 + 810.6 178.449 79.954 35.115 + 810.7 179.159 80.0869 35.112 + 810.8 179.839 80.242 35.1 + 810.9 180.498 80.4302 35.1149 + 811 181.147 80.6517 35.0929 + 811.1 181.806 80.8511 35.0899 + 811.2 182.444 81.0725 35.0739 + 811.3 183.051 81.3383 35.0779 + 811.4 183.638 81.6373 35.0728 + 811.5 184.194 81.9695 35.0938 + 811.6 184.719 82.3239 35.1028 + 811.7 185.224 82.7004 35.0958 + 811.8 185.687 83.1102 35.1028 + 811.9 186.109 83.5421 35.1027 + 812 186.5 83.9739 35.1127 + 812.1 186.85 84.439 35.1027 + 812.2 187.149 84.9041 35.1117 + 812.3 187.417 85.3803 35.1087 + 812.4 187.633 85.8676 35.1077 + 812.5 187.798 86.3437 35.1096 + 812.6 187.932 86.831 35.1036 + 812.7 188.014 87.2961 35.0986 + 812.8 188.045 87.7723 35.0816 + 812.9 188.024 88.2263 35.0916 + 813 187.973 88.6582 35.0946 + 813.1 187.88 89.0679 35.0856 + 813.2 187.736 89.4555 35.0746 + 813.3 187.551 89.8099 35.0746 + 813.4 187.334 90.1421 35.0666 + 813.5 187.077 90.4189 35.0756 + 813.6 186.809 90.6736 35.0706 + 813.7 186.5 90.8729 35.0756 + 813.8 186.171 91.028 35.0686 + 813.9 185.821 91.1498 35.0876 + 814 185.45 91.2716 35.0916 + 814.1 185.059 91.3602 35.0897 + 814.2 184.647 91.4155 35.0627 + 814.3 184.215 91.4709 35.0377 + 814.4 183.762 91.5152 35.0327 + 814.5 183.288 91.5705 35.0317 + 814.6 182.794 91.6148 35.0347 + 814.7 182.279 91.6591 35.0307 + 814.8 181.754 91.6923 35.0157 + 814.9 181.198 91.7366 35.0098 + 815 180.632 91.7698 35.0038 + 815.1 180.045 91.8031 34.9988 + 815.2 179.448 91.8363 35.0028 + 815.3 178.84 91.8695 35.0058 + 815.4 178.212 91.9027 35.0018 + 815.5 177.563 91.9359 34.9989 + 815.6 176.915 91.958 34.9909 + 815.7 176.246 91.9913 34.9949 + 815.8 175.556 92.0245 34.9859 + 815.9 174.845 92.0577 34.9919 + 816 174.135 92.0909 34.997 + 816.1 173.404 92.1241 35.005 + 816.2 172.663 92.1684 35 + 816.3 171.911 92.2016 35.004 + 816.4 171.139 92.2348 35.009 + 816.5 170.356 92.2791 35.0121 + 816.6 169.564 92.3234 35.0011 + 816.7 168.76 92.3566 35.0131 + 816.8 167.937 92.4009 35.0011 + 816.9 167.113 92.4452 35.0021 + 817 166.279 92.5005 35.0052 + 817.1 165.425 92.5448 34.9972 + 817.2 164.57 92.5891 35.0002 + 817.3 163.705 92.6445 35.0022 + 817.4 162.83 92.6998 34.9942 + 817.5 161.945 92.7552 34.9993 + 817.6 161.049 92.8106 34.9933 + 817.7 160.143 92.8881 35.0053 + 817.8 159.237 92.9988 34.9943 + 817.9 158.351 93.1095 34.9994 + 818 157.476 93.2645 35.0094 + 818.1 156.611 93.4417 35.0274 + 818.2 155.757 93.6632 35.0274 + 818.3 154.902 93.8625 35.0384 + 818.4 154.037 94.0729 35.0064 + 818.5 153.203 94.3165 34.9955 + 818.6 152.359 94.5823 35.0045 + 818.699 151.504 94.837 35.0015 + 818.799 150.64 95.0806 35.0055 + 818.899 149.764 95.3353 35.0165 + 819 148.879 95.59 35.0175 + 819.1 148.004 95.8447 35.0176 + 819.2 147.118 96.0993 35.0176 + 819.3 146.223 96.354 35.0286 + 819.4 145.327 96.5977 35.0306 + 819.5 144.421 96.8413 35.0366 + 819.6 143.515 97.0849 35.0336 + 819.7 142.598 97.3064 35.0497 + 819.8 141.672 97.5057 35.0497 + 819.9 140.735 97.6828 35.0587 + 820 139.808 97.8268 35.0537 + 820.1 138.871 97.9375 35.0507 + 820.2 137.934 98.004 35.0928 + 820.3 137.008 98.0261 35.1088 + 820.4 136.091 98.0039 35.1238 + 820.5 135.196 97.9375 35.1248 + 820.6 134.321 97.8267 35.1278 + 820.7 133.466 97.6606 35.1399 + 820.8 132.632 97.4613 35.1289 + 820.9 131.829 97.2066 35.1219 + 821 131.057 96.9297 35.1089 + 821.1 130.336 96.6086 35.0869 + 821.2 129.626 96.2432 35.062 + 821.3 128.967 95.8445 35.033 + 821.4 128.339 95.4126 35.013 + 821.5 127.7 94.9807 35.003 + 821.6 127.021 94.5488 34.947 + 821.7 126.413 94.0837 34.8871 + 821.8 125.785 93.6075 34.8791 + 821.9 125.147 93.1535 34.8711 + 822 124.488 92.6884 34.8811 + 822.1 123.798 92.2344 34.9031 + 822.2 123.098 91.7914 34.9061 + 822.3 122.408 91.3263 34.9092 + 822.4 121.708 90.8723 34.9012 + 822.5 120.998 90.4072 34.9192 + 822.6 120.287 89.9531 34.9262 + 822.7 119.567 89.4991 34.9322 + 822.8 118.846 89.034 34.9423 + 822.9 118.115 88.58 34.9423 + 823 117.374 88.1259 34.9473 + 823.1 116.632 87.6719 34.9593 + 823.2 115.891 87.2068 34.9663 + 823.3 115.129 86.7528 34.9564 + 823.4 114.377 86.2877 34.9574 + 823.5 113.616 85.8336 34.9644 + 823.6 112.854 85.3685 34.9684 + 823.7 112.071 84.9145 34.9704 + 823.8 111.299 84.4494 34.9665 + 823.9 110.516 83.9843 34.9765 + 824 109.724 83.5192 34.9695 + 824.1 108.931 83.0541 34.9725 + 824.2 108.138 82.589 34.9805 + 824.3 107.335 82.1239 34.9696 + 824.4 106.532 81.6477 34.9606 + 824.5 105.729 81.1826 34.9746 + 824.6 104.926 80.7064 34.9786 + 824.7 104.112 80.2413 34.9716 + 824.8 103.299 79.7651 34.9737 + 824.9 102.486 79.2889 34.9807 + 825 101.662 78.8127 34.9737 + 825.1 100.838 78.3366 34.9867 + 825.2 100.015 77.8604 34.9827 + 825.3 99.191 77.3731 34.9848 + 825.4 98.3673 76.8969 34.9978 + 825.5 97.5334 76.4208 34.9958 + 825.6 96.7097 75.9335 35.0038 + 825.7 95.886 75.4573 35.0028 + 825.8 95.0418 74.9922 34.9968 + 825.9 94.2078 74.5382 34.9999 + 826 93.3635 74.0842 34.9969 + 826.1 92.5193 73.6523 34.9749 + 826.2 91.6544 73.2536 34.9799 + 826.3 90.7896 72.8882 34.9709 + 826.4 89.935 72.5449 34.973 + 826.5 89.0907 72.1351 34.957 + 826.6 88.2156 71.7586 34.913 + 826.7 87.3713 71.4043 34.909 + 826.8 86.5579 70.9835 34.917 + 826.9 85.7549 70.5405 34.928 + 827 84.9724 70.0643 34.952 + 827.1 84.2311 69.566 34.9771 + 827.2 83.4486 69.0898 35.0091 + 827.3 82.6867 68.5915 34.9761 + 827.4 81.966 68.071 34.9541 + 827.5 81.2555 67.5395 34.9641 + 827.6 80.5348 67.0411 34.9611 + 827.7 79.7935 66.5428 34.9592 + 827.8 79.0522 66.0445 34.9562 + 827.9 78.3006 65.5462 34.9822 + 828 77.549 65.0368 34.9742 + 828.1 76.8077 64.5274 34.9652 + 828.2 76.0561 64.018 34.9782 + 828.3 75.3045 63.5196 34.9692 + 828.4 74.5632 63.0102 34.9773 + 828.5 73.8219 62.5008 34.9853 + 828.6 73.0703 61.9914 34.9753 + 828.7 72.3187 61.482 34.9743 + 828.8 71.5671 60.9726 34.9723 + 828.9 70.8155 60.4632 34.9723 + 829 70.0536 59.9538 34.9733 + 829.1 69.302 59.4444 34.9743 + 829.2 68.5401 58.935 34.9714 + 829.3 67.7782 58.4146 34.9684 + 829.4 67.0163 57.9052 34.9634 + 829.5 66.2647 57.3958 34.9654 + 829.6 65.4925 56.8753 34.9674 + 829.7 64.7306 56.3548 34.9604 + 829.8 63.9687 55.8454 34.9654 + 829.9 63.1965 55.325 34.9584 + 830 62.4346 54.8045 34.9665 + 830.1 61.6624 54.284 34.9655 + 830.2 60.9108 53.7525 34.9725 + 830.3 60.1592 53.2098 34.9695 + 830.4 59.4385 52.634 34.9785 + 830.5 58.7281 52.0582 34.9825 + 830.6 58.0383 51.4712 35.0005 + 830.7 57.3587 50.8511 35.0195 + 830.8 56.6998 50.2199 35.0285 + 830.9 56.0717 49.5665 35.0306 + 831 55.4746 48.9021 35.0256 + 831.1 54.898 48.2266 35.0316 + 831.2 54.342 47.54 35.0346 + 831.3 53.7655 46.8645 35.0256 + 831.4 53.1786 46.1779 35.0046 + 831.5 52.6432 45.4914 34.9906 + 831.6 52.0872 44.8048 34.9896 + 831.7 51.5313 44.1182 34.9966 + 831.8 50.9444 43.4427 34.9926 + 831.9 50.3472 42.7672 34.9967 + 832 49.7706 42.0917 34.9937 + 832.1 49.1838 41.4051 35.0047 + 832.2 48.5866 40.7517 35.0107 + 832.3 47.9483 40.1095 35.0037 + 832.4 47.3202 39.4783 34.9987 + 832.5 46.6819 38.8692 34.9937 + 832.6 46.0332 38.2823 35.0107 + 832.7 45.4258 37.6621 35.0207 + 832.8 44.7771 37.0642 35.0167 + 832.9 44.1285 36.4994 35.0197 + 833 43.4798 35.9235 35.0318 + 833.1 42.8518 35.3366 35.0558 + 833.2 42.234 34.7386 35.0608 + 833.3 41.6163 34.1517 35.0648 + 833.4 40.9985 33.5537 35.0538 + 833.5 40.3911 32.9558 35.0678 + 833.6 39.7939 32.3688 35.0618 + 833.7 39.1761 31.7819 35.0618 + 833.8 38.5687 31.1839 35.0678 + 833.9 37.9612 30.5859 35.0788 + 834 37.3538 29.999 35.0878 + 834.1 36.7463 29.401 35.0828 + 834.2 36.1491 28.8031 35.0798 + 834.3 35.5417 28.2161 35.0938 + 834.4 34.9445 27.6292 35.1008 + 834.5 34.3576 27.0423 35.1018 + 834.6 33.7605 26.4554 35.0929 + 834.7 33.1736 25.8796 35.0949 + 834.9 32.0102 24.7279 35.0829 + 835 31.4336 24.1631 35.0769 + 835.1 30.8776 23.5983 35.0609 + 835.2 30.3216 23.0336 35.0239 + 835.3 29.7451 22.4799 35.0009 + 835.4 29.1994 21.9151 34.9679 + 835.5 28.6434 21.3725 34.9589 + 835.6 28.0977 20.8077 34.9429 + 835.7 27.5417 20.2651 34.9279 + 835.8 27.0063 19.7114 34.9239 + 835.9 26.4606 19.1688 34.9239 + 836 25.915 18.6151 34.9209 + 836.1 25.3693 18.0614 34.8959 + 836.2 24.8236 17.5077 34.9079 + 836.3 24.2882 16.943 34.9029 + 836.4 23.7425 16.4004 34.9049 + 836.5 23.2071 15.8467 34.9059 + 836.6 22.6717 15.293 34.8979 + 836.7 22.126 14.7393 34.9029 + 836.8 21.5907 14.1967 34.8999 + 836.9 21.0656 13.643 34.898 + 837 20.5302 13.1003 34.894 + 837.1 19.9948 12.5688 34.885 + 837.2 19.4697 12.0262 34.896 + 837.3 18.9446 11.4946 34.888 + 837.4 18.4298 10.9742 34.889 + 837.5 17.9253 10.4537 34.877 + 837.6 17.4208 9.93323 34.891 + 837.7 16.9163 9.43491 34.89 + 837.8 16.4221 8.92551 34.881 + 837.9 15.9279 8.42719 34.869 + 838 15.444 7.93994 34.874 + 838.1 14.9601 7.44162 34.872 + 838.2 14.4864 6.95437 34.865 + 838.3 14.0025 6.46712 34.864 + 838.4 13.5392 5.99094 34.862 + 838.5 13.0656 5.5037 34.865 + 838.6 12.592 5.02752 34.871 + 838.7 12.1287 4.55135 34.864 + 838.8 11.6653 4.08625 34.869 + 838.9 11.202 3.62114 34.864 + 839 10.7593 3.16712 34.861 + 839.1 10.3063 2.71309 34.827 + 839.2 9.89444 2.30336 34.754 + 839.3 9.51349 1.9047 34.639 + 839.4 9.13254 1.49497 34.517 + 839.5 8.76188 1.10738 34.362 + 839.6 8.42211 0.730875 34.184 + 839.7 8.10294 0.387586 33.974 + 839.8 7.79406 0.0664449 33.741 + 839.9 7.51607 -0.254696 33.471 + 840 7.24837 -0.564763 33.174 + 840.1 6.99097 -0.841609 32.859 + 840.2 6.76446 -1.10738 32.517 + 840.3 6.55854 -1.351 32.171 + 840.4 6.36292 -1.58355 31.813 + 840.5 6.18788 -1.79396 31.43 + 840.6 6.02315 -1.97114 31.041 + 840.7 5.879 -2.14832 30.645 + 840.8 5.76575 -2.30335 30.25 + 840.9 5.66279 -2.43624 29.841 + 841 5.57012 -2.55805 29.471 + 841.1 5.47746 -2.66879 29.077 + 841.2 5.41568 -2.76845 28.699 + 841.3 5.35391 -2.85704 28.316 + 841.4 5.31272 -2.95671 27.939 + 841.5 5.26124 -3.03422 27.563 + 841.6 5.22006 -3.11174 27.166 + 841.7 5.18917 -3.17818 26.797 + 841.8 5.16858 -3.23355 26.445 + 841.9 5.14799 -3.28892 26.103 + 842 5.13769 -3.33322 25.791 + 842.1 5.1171 -3.36644 25.509 + 842.2 5.1171 -3.41073 25.199 + 842.3 5.1068 -3.43288 24.933 + 842.4 5.1068 -3.45503 24.667 + 842.5 5.1068 -3.47717 24.382 + 842.6 5.1068 -3.48825 24.119 + 842.7 5.1171 -3.5104 23.863 + 842.8 5.13769 -3.52147 23.594 + 842.9 5.14798 -3.53254 23.328 + 843 5.14798 -3.55469 23.084 + 843.1 5.14798 -3.55469 22.818 + 843.2 5.15828 -3.55469 22.583 + 843.3 5.16857 -3.55469 22.317 + 843.4 5.17887 -3.56576 22.063 + 843.5 5.15828 -3.56576 21.802 + 843.6 5.16857 -3.56576 21.538 + 843.7 5.16857 -3.55469 21.282 + 843.8 5.16857 -3.55469 21.01 + 843.9 5.16857 -3.55469 20.746 + 844 5.15828 -3.54361 20.482 + 844.1 5.15828 -3.53254 20.208 + 844.2 5.15828 -3.53254 19.96 + 844.3 5.14798 -3.52147 19.692 + 844.4 5.13768 -3.51039 19.428 + 844.5 5.13768 -3.51039 19.161 + 844.6 5.12739 -3.49932 18.904 + 844.7 5.13768 -3.49932 18.637 + 844.8 5.12739 -3.49932 18.363 + 844.9 5.12739 -3.49932 18.099 + 845 5.11709 -3.48824 17.834 + 845.1 5.11709 -3.48824 17.579 + 845.2 5.10679 -3.48824 17.313 + 845.3 5.0965 -3.49932 17.047 + 845.4 5.0862 -3.49932 16.798 + 845.5 5.07591 -3.49932 16.526 + 845.6 5.06561 -3.49932 16.261 + 845.7 5.05531 -3.51039 16.015 + 845.8 5.04502 -3.51039 15.746 + 845.9 5.04502 -3.51039 15.493 + 846 5.03472 -3.49932 15.252 + 846.1 5.03472 -3.49932 14.992 + 846.2 5.02443 -3.49932 14.737 + 846.3 5.02443 -3.49932 14.474 + 846.4 5.01413 -3.48824 14.211 + 846.5 5.00383 -3.48824 13.978 + 846.6 4.99354 -3.48824 13.733 + 846.7 4.99354 -3.47717 13.53 + 846.8 4.99354 -3.47717 13.36 + 846.9 4.97294 -3.47717 13.189 + 847 4.95235 -3.47717 13.071 + 847.1 4.94206 -3.47717 12.99 + 847.2 4.94206 -3.47717 12.937 + 847.3 4.93176 -3.46609 12.886 + 847.4 4.92146 -3.46609 12.862 + 847.5 4.91117 -3.46609 12.846 + 847.6 4.92146 -3.46609 12.849 + 847.7 4.93176 -3.45502 12.858 + 847.8 4.93176 -3.44395 12.874 + 847.9 4.94206 -3.43287 12.886 + 848 4.95235 -3.4218 12.905 + 848.1 4.96265 -3.41073 12.929 + 848.2 4.97294 -3.41073 12.928 + 848.3 4.97294 -3.38858 12.943 + 848.4 4.98324 -3.38858 12.944 + 848.5 4.98324 -3.3775 12.955 + 848.6 4.99354 -3.36643 12.965 + 848.7 4.99354 -3.36643 12.953 + 848.8 5.00383 -3.35536 12.96 + 848.9 5.01413 -3.33321 12.969 + 849 5.01413 -3.29999 12.988 + 849.1 5.02442 -3.29999 12.995 + 849.2 5.01413 -3.29999 12.982 + 849.3 5.02442 -3.28891 12.969 + 849.4 5.03472 -3.28891 12.976 + 849.5 5.04502 -3.27784 12.966 + 849.6 5.04502 -3.27784 12.965 + 849.7 5.05531 -3.26677 12.969 + 849.8 5.06561 -3.25569 12.965 + 849.9 5.0759 -3.24462 12.972 + 850 5.0862 -3.24462 12.973 + 850.1 5.0862 -3.23354 12.97 + 850.2 5.0965 -3.2114 12.954 + 850.3 5.0965 -3.20032 12.975 + 850.4 5.0965 -3.18925 12.975 + 850.5 5.0965 -3.17818 12.972 + 850.6 5.0965 -3.1671 12.984 + 850.7 5.0965 -3.15603 12.974 + 850.8 5.0965 -3.14495 12.975 + 850.9 5.0965 -3.13388 12.974 + 851 5.0965 -3.11173 12.976 + 851.1 5.0965 -3.10066 12.978 + 851.2 5.0965 -3.08959 12.973 + 851.3 5.10679 -3.06744 12.973 + 851.4 5.0965 -3.05636 12.979 + 851.5 5.0862 -3.04529 12.975 + 851.6 5.0862 -3.04529 12.975 + 851.7 5.0862 -3.03422 12.986 + 851.8 5.06561 -3.03422 12.988 + 851.9 5.05531 -3.04529 12.989 + 852 5.03472 -3.04529 12.985 + 852.1 4.99354 -3.06744 12.998 + 852.2 4.95235 -3.07851 13 + 852.3 4.90087 -3.08959 12.997 + 852.4 4.8288 -3.12281 13.005 + 852.5 4.74643 -3.15603 12.993 + 852.6 4.64347 -3.20032 13.003 + 852.7 4.53022 -3.24462 13.002 + 852.8 4.39637 -3.28891 13.01 + 852.9 4.24193 -3.35536 13 + 853 4.0772 -3.41073 12.99 + 853.1 3.89187 -3.47717 12.988 + 853.2 3.68595 -3.55468 12.977 + 853.3 3.45944 -3.64327 12.969 + 853.4 3.21234 -3.72079 12.969 + 853.5 2.95494 -3.82046 12.973 + 853.6 2.67695 -3.92012 12.969 + 853.7 2.38866 -4.03086 12.966 + 853.8 2.09008 -4.1416 12.957 + 853.9 1.7812 -4.26341 12.955 + 854 1.46203 -4.38522 12.956 + 854.1 1.13255 -4.50703 12.952 + 854.2 0.792788 -4.62884 12.953 + 854.3 0.473614 -4.76173 12.947 + 854.4 0.195623 -4.86139 12.897 + 854.5 -0.0720717 -4.96106 12.842 + 854.6 -0.319174 -5.03857 12.838 + 854.7 -0.525094 -5.11609 12.816 + 854.8 -0.689829 -5.17146 12.846 + 854.9 -0.833972 -5.21575 12.881 + 855 -0.947228 -5.24897 12.887 + 855.1 -1.03989 -5.27112 12.873 + 855.2 -1.11196 -5.29327 12.877 + 855.3 -1.18403 -5.29327 12.876 + 855.4 -1.24581 -5.29327 12.872 + 855.5 -1.30759 -5.2822 12.878 + 855.6 -1.35907 -5.24897 12.887 + 855.7 -1.41055 -5.21575 12.881 + 855.8 -1.46203 -5.16038 12.889 + 855.9 -1.5135 -5.08287 12.892 + 856 -1.56498 -4.99428 12.9 + 856.1 -1.62676 -4.88354 12.909 + 856.2 -1.68854 -4.76173 12.916 + 856.3 -1.75031 -4.61777 12.921 + 856.4 -1.82238 -4.46274 12.923 + 856.5 -1.88416 -4.28555 12.916 + 856.6 -1.96653 -4.0973 12.925 + 856.7 -2.04889 -3.89797 12.925 + 856.8 -2.13126 -3.66542 12.93 + 856.9 -2.22393 -3.43287 12.923 + 857 -2.32688 -3.18925 12.92 + 857.1 -2.42984 -2.92348 12.922 + 857.2 -2.5431 -2.63556 12.941 + 857.3 -2.65636 -2.33657 12.923 + 857.4 -2.77991 -2.0265 12.929 + 857.5 -2.92405 -1.69429 12.919 + 857.6 -3.0579 -1.36208 12.932 + 857.7 -3.21234 -1.00771 12.933 + 857.8 -3.35648 -0.653353 12.927 + 857.9 -3.51092 -0.287918 12.936 + 858 -3.65506 0.0775169 12.929 + 858.1 -3.8095 0.454026 12.924 + 858.2 -3.96394 0.841608 12.935 + 858.3 -4.11838 1.22919 12.925 + 858.4 -4.26252 1.61677 12.931 + 858.5 -4.42726 2.01543 12.932 + 858.6 -4.5714 2.42516 12.921 + 858.7 -4.73614 2.82382 12.926 + 858.8 -4.89057 3.23355 12.921 + 858.9 -5.05531 3.64328 12.91 + 859 -5.20975 4.07515 12.901 + 859.1 -5.38478 4.49596 12.916 + 859.2 -5.55981 4.93891 12.904 + 859.3 -5.72455 5.37079 12.892 + 859.4 -5.89958 5.82481 12.895 + 859.5 -6.07461 6.26776 12.891 + 859.6 -6.24964 6.72179 12.884 + 859.7 -6.42467 7.17581 12.892 + 859.8 -6.5997 7.64091 12.881 + 859.9 -6.76443 8.08386 12.889 + 860 -6.91887 8.49359 12.873 + 860.1 -7.04242 8.85903 12.854 + 860.2 -7.18657 9.22446 12.835 + 860.3 -7.32041 9.53453 12.855 + 860.4 -7.42337 9.78923 12.844 + 860.5 -7.52633 9.99963 12.872 + 860.6 -7.619 10.199 12.871 + 860.7 -7.68077 10.354 12.861 + 860.8 -7.74255 10.4537 12.841 + 860.9 -7.77344 10.5201 12.812 + 861 -7.80432 10.5644 12.798 + 861.1 -7.81462 10.5865 12.795 + 861.2 -7.81462 10.5865 12.784 + 861.3 -7.81462 10.5644 12.763 + 861.4 -7.79403 10.498 12.75 + 861.5 -7.75284 10.4204 12.741 + 861.6 -7.70136 10.3097 12.729 + 861.7 -7.66018 10.1879 12.734 + 861.8 -7.58811 10.0329 12.744 + 861.9 -7.51604 9.87782 12.749 + 862 -7.43367 9.70064 12.764 + 862.1 -7.3513 9.52346 12.755 + 862.2 -7.25864 9.32413 12.734 + 862.3 -7.16598 9.1248 12.69 + 862.4 -7.08361 8.9144 12.625 + 862.5 -6.98065 8.704 12.541 + 862.6 -6.88798 8.48252 12.454 + 862.7 -6.79532 8.26104 12.36 + 862.8 -6.69236 8.02849 12.271 + 862.9 -6.60999 7.80702 12.195 + 863 -6.52763 7.57447 12.13 + 863.1 -6.42467 7.34192 12.063 + 863.2 -6.332 7.12044 12.02 + 863.3 -6.25993 6.88789 12.009 + 863.4 -6.17757 6.66642 11.998 + 863.5 -6.10549 6.44494 11.983 + 863.6 -6.03342 6.22347 11.981 + 863.7 -5.96135 6.02414 11.977 + 863.8 -5.90987 5.81374 11.975 + 863.9 -5.85839 5.62548 11.982 + 864 -5.80691 5.42616 11.992 + 864.1 -5.75543 5.2379 11.991 + 864.2 -5.71425 5.04965 12.006 + 864.3 -5.67306 4.85032 12.015 + 864.4 -5.63188 4.67314 11.999 + 864.5 -5.5804 4.47381 12.009 + 864.6 -5.53922 4.27448 11.993 + 864.7 -5.48774 4.07515 12.002 + 864.8 -5.44655 3.86475 11.983 + 864.9 -5.38478 3.65435 11.975 + 865 -5.3333 3.43287 11.974 + 865.1 -5.28182 3.20032 11.956 + 865.2 -5.20975 2.96777 11.958 + 865.3 -5.14797 2.73523 11.947 + 865.4 -5.0862 2.4916 11.945 + 865.5 -5.00383 2.24798 11.94 + 865.6 -4.93176 1.99328 11.936 + 865.7 -4.85969 1.72751 11.93 + 865.8 -4.76702 1.47281 11.932 + 865.9 -4.67436 1.19597 11.926 + 866 -4.59199 0.919125 11.922 + 866.1 -4.48903 0.631206 11.921 + 866.2 -4.39637 0.354362 11.924 + 866.3 -4.29341 0.0442957 11.9 + 866.4 -4.18015 -0.243623 11.91 + 866.5 -4.07719 -0.553689 11.907 + 866.6 -3.96394 -0.863755 11.904 + 866.7 -3.85068 -1.17382 11.888 + 866.8 -3.72713 -1.48389 11.881 + 866.9 -3.59329 -1.79395 11.864 + 867 -3.45944 -2.11509 11.875 + 867.1 -3.32559 -2.42516 11.863 + 867.2 -3.17115 -2.7463 11.863 + 867.3 -3.01671 -3.06744 11.869 + 867.4 -2.87257 -3.3775 11.862 + 867.5 -2.71813 -3.69864 11.856 + 867.6 -2.5534 -4.01978 11.852 + 867.7 -2.39896 -4.34092 11.845 + 867.8 -2.24452 -4.66206 11.839 + 867.9 -2.09008 -4.9832 11.836 + 868 -1.93564 -5.30434 11.832 + 868.1 -1.7812 -5.62548 11.839 + 868.2 -1.62676 -5.94662 11.829 + 868.3 -1.47232 -6.26776 11.83 + 868.4 -1.31788 -6.5889 11.823 + 868.5 -1.16344 -6.89897 11.824 + 868.6 -1.0193 -7.20903 11.826 + 868.7 -0.86486 -7.5191 11.834 + 868.8 -0.710421 -7.82916 11.813 + 868.9 -0.576573 -8.11708 11.822 + 869 -0.453022 -8.37178 11.803 + 869.1 -0.350062 -8.60433 11.788 + 869.2 -0.236807 -8.83688 11.821 + 869.3 -0.123551 -9.05835 11.811 + 869.4 -0.0205919 -9.25768 11.802 + 869.5 0.0617757 -9.43486 11.801 + 869.6 0.144143 -9.57882 11.793 + 869.7 0.216215 -9.73386 11.795 + 869.8 0.288287 -9.89996 11.801 + 869.9 0.370654 -10.0661 11.792 + 870 0.453022 -10.2211 11.784 + 870.1 0.525094 -10.3872 11.791 + 870.2 0.597165 -10.5422 11.786 + 870.3 0.669237 -10.7083 11.783 + 870.4 0.741309 -10.8634 11.787 + 870.5 0.823676 -11.0295 11.776 + 870.6 0.895748 -11.1845 11.779 + 870.7 0.96782 -11.3506 11.78 + 870.8 1.05019 -11.5167 11.78 + 870.9 1.11196 -11.6718 11.781 + 871 1.16344 -11.7936 11.76 + 871.1 1.21492 -11.9043 11.758 + 871.2 1.2664 -12.0261 11.764 + 871.3 1.31788 -12.1258 11.77 + 871.4 1.34877 -12.2033 11.746 + 871.5 1.35907 -12.2476 11.756 + 871.6 1.36936 -12.2698 11.751 + 871.7 1.36936 -12.2808 11.749 + 871.8 1.35907 -12.2698 11.739 + 871.9 1.32818 -12.2365 11.733 + 872 1.29729 -12.1812 11.725 + 872.1 1.24581 -12.0926 11.72 + 872.2 1.18403 -11.9818 11.727 + 872.3 1.11196 -11.86 11.714 + 872.4 1.0296 -11.705 11.719 + 872.5 0.936932 -11.5278 11.711 + 872.6 0.833972 -11.3396 11.711 + 872.7 0.731013 -11.1292 11.717 + 872.8 0.607461 -10.9077 11.714 + 872.9 0.473614 -10.653 11.713 + 873 0.339766 -10.3983 11.714 + 873.1 0.185327 -10.1104 11.714 + 873.2 0.0308879 -9.82245 11.716 + 873.3 -0.133847 -9.51238 11.715 + 873.4 -0.308879 -9.19124 11.702 + 873.5 -0.48391 -8.85903 11.711 + 873.6 -0.679533 -8.51574 11.694 + 873.7 -0.875156 -8.1503 11.699 + 873.8 -1.09137 -7.78487 11.692 + 873.9 -1.28699 -7.39729 11.694 + 874 -1.50321 -6.99863 11.696 + 874.1 -1.71942 -6.5889 11.676 + 874.2 -1.94593 -6.15702 11.681 + 874.3 -2.17245 -5.71407 11.684 + 874.4 -2.39896 -5.26005 11.688 + 874.5 -2.63576 -4.79495 11.675 + 874.6 -2.87257 -4.3077 11.669 + 874.7 -3.12997 -3.82045 11.682 + 874.8 -3.37707 -3.31106 11.683 + 874.9 -3.63447 -2.81274 11.684 + 875 -3.89187 -2.2812 11.677 + 875.1 -4.15956 -1.74966 11.673 + 875.2 -4.42726 -1.20704 11.672 + 875.3 -4.70525 -0.653352 11.676 + 875.4 -4.98324 -0.0885895 11.689 + 875.5 -5.27152 0.476174 11.675 + 875.6 -5.55981 1.05201 11.661 + 875.7 -5.85839 1.63892 11.669 + 875.8 -6.14668 2.22583 11.67 + 875.9 -6.44526 2.82382 11.667 + 876 -6.74384 3.43287 11.656 + 876.1 -7.04243 4.04193 11.669 + 876.2 -7.3513 4.65099 11.672 + 876.3 -7.67048 5.27112 11.673 + 876.4 -7.97936 5.89125 11.669 + 876.5 -8.28823 6.51139 11.655 + 876.6 -8.59711 7.14259 11.659 + 876.7 -8.92658 7.7738 11.673 + 876.8 -9.24575 8.41608 11.657 + 876.9 -9.56493 9.04728 11.659 + 877 -9.8944 9.70064 11.652 + 877.1 -10.2136 10.3429 11.662 + 877.2 -10.543 10.9963 11.653 + 877.3 -10.8725 11.6385 11.674 + 877.4 -11.202 12.303 11.668 + 877.5 -11.5314 12.9674 11.673 + 877.6 -11.8609 13.6208 11.661 + 877.7 -12.1904 14.2852 11.676 + 877.8 -12.5199 14.9496 11.68 + 877.9 -12.839 15.603 11.678 + 878 -13.1685 16.2674 11.677 + 878.1 -13.4877 16.9097 11.681 + 878.2 -13.8068 17.552 11.687 + 878.3 -14.1157 18.1942 11.693 + 878.4 -14.3937 18.7701 11.689 + 878.5 -14.6511 19.3016 11.649 + 878.6 -14.9188 19.8442 11.655 + 878.7 -15.1556 20.3204 11.6809 + 878.8 -15.3718 20.7412 11.6939 + 878.9 -15.5469 21.1177 11.7249 + 879 -15.7116 21.4389 11.7299 + 879.1 -15.8557 21.7157 11.7169 + 879.2 -15.969 21.9593 11.7129 + 879.3 -16.0719 22.1586 11.7069 + 879.4 -16.1543 22.3137 11.6739 + 879.5 -16.2264 22.4355 11.6599 + 879.6 -16.2676 22.5241 11.6389 + 879.7 -16.2985 22.5573 11.6089 + 879.8 -16.3191 22.5795 11.5749 + 879.9 -16.3293 22.5573 11.5619 + 880 -16.3088 22.513 11.5079 + 880.1 -16.2779 22.4466 11.4739 + 880.2 -16.2367 22.358 11.4449 + 880.3 -16.1749 22.2362 11.4269 + 880.4 -16.1131 22.0922 11.4239 + 880.5 -16.0308 21.9261 11.4209 + 880.6 -15.9278 21.7489 11.4179 + 880.7 -15.8248 21.5607 11.3999 + 880.8 -15.7116 21.3503 11.4219 + 880.9 -15.5983 21.1288 11.4139 + 881 -15.4748 20.8962 11.4209 + 881.1 -15.3409 20.6526 11.4209 + 881.2 -15.1968 20.3979 11.4139 + 881.3 -15.0527 20.1432 11.426 + 881.4 -14.9085 19.8664 11.418 + 881.5 -14.7541 19.5895 11.427 + 881.6 -14.5893 19.3016 11.415 + 881.7 -14.4246 19.0026 11.416 + 881.8 -14.2599 18.7036 11.416 + 881.9 -14.0951 18.3825 11.417 + 882 -13.9304 18.0724 11.414 + 882.1 -13.7451 17.7513 11.414 + 882.2 -13.57 17.408 11.411 + 882.3 -13.395 17.0758 11.407 + 882.4 -13.2097 16.7325 11.395 + 882.5 -13.0347 16.3892 11.395 + 882.6 -12.8493 16.057 11.405 + 882.7 -12.664 15.7026 11.411 + 882.8 -12.489 15.3593 11.394 + 882.9 -12.3036 15.0271 11.399 + 883 -12.1286 14.6838 11.406 + 883.1 -11.9433 14.3516 11.394 + 883.2 -11.7683 14.0194 11.394 + 883.3 -11.5829 13.6983 11.391 + 883.4 -11.3976 13.3771 11.391 + 883.5 -11.2226 13.056 11.404 + 883.6 -11.0475 12.7459 11.463 + 883.7 -10.8519 12.4359 11.51 + 883.8 -10.6563 12.1479 11.601 + 883.9 -10.4813 11.849 11.683 + 884 -10.2959 11.55 11.758 + 884.1 -10.1209 11.2731 11.823 + 884.2 -9.93558 10.9963 11.871 + 884.3 -9.76055 10.7084 11.921 + 884.4 -9.58552 10.4315 11.954 + 884.5 -9.41049 10.1657 11.968 + 884.6 -9.23546 9.89997 11.978 + 884.7 -9.07072 9.64527 11.987 + 884.8 -8.91628 9.39057 12.02 + 884.9 -8.75155 9.1248 12.064 + 885 -8.59711 8.88118 12.14 + 885.1 -8.44267 8.63755 12.226 + 885.2 -8.29853 8.39393 12.367 + 885.3 -8.16468 8.16138 12.537 + 885.4 -8.02054 7.92883 12.739 + 885.5 -7.88669 7.69628 12.991 + 885.6 -7.75285 7.48588 13.272 + 885.7 -7.6087 7.26441 13.581 + 885.8 -7.48515 7.054 13.926 + 885.9 -7.3616 6.85468 14.272 + 886 -7.22775 6.65535 14.66 + 886.1 -7.1145 6.45602 15.037 + 886.2 -6.99095 6.25669 15.437 + 886.3 -6.87769 6.06844 15.806 + 886.4 -6.76444 5.88018 16.176 + 886.5 -6.65118 5.69193 16.51 + 886.6 -6.52763 5.50368 16.82 + 886.7 -6.41438 5.31542 17.103 + 886.8 -6.30112 5.11609 17.351 + 886.9 -6.18787 4.92784 17.571 + 887 -6.07461 4.73958 17.73 + 887.1 -5.96136 4.54026 17.873 + 887.2 -5.83781 4.34093 17.957 + 887.3 -5.73485 4.1416 18.035 + 887.4 -5.61129 3.94227 18.065 + 887.5 -5.48774 3.73187 18.08 + 887.6 -5.3539 3.52147 18.088 + 887.7 -5.23034 3.29999 18.082 + 887.8 -5.0965 3.07852 18.072 + 887.9 -4.96265 2.83489 18.055 + 888 -4.81851 2.59127 18.04 + 888.1 -4.66407 2.34765 18.013 + 888.2 -4.50963 2.0708 18.007 + 888.3 -4.34489 1.79396 17.994 + 888.4 -4.16986 1.49496 17.976 + 888.5 -3.99483 1.1849 17.977 + 888.6 -3.8095 0.863756 17.976 + 888.7 -3.61388 0.520469 17.973 + 888.9 -3.19175 -0.188254 18.004 + 889 -2.97553 -0.575837 18.004 + 889.1 -2.73872 -0.96342 18.011 + 889.2 -2.49162 -1.36208 18.014 + 889.3 -2.24452 -1.77181 18.025 + 889.4 -1.98712 -2.19261 18.032 + 889.5 -1.72972 -2.62449 18.03 + 889.6 -1.45173 -3.06744 18.029 + 889.7 -1.18404 -3.52147 18.045 + 889.8 -0.906044 -3.97549 18.049 + 889.9 -0.617758 -4.44059 18.05 + 890 -0.339767 -4.90569 18.053 + 890.1 -0.0411838 -5.38186 18.055 + 890.2 0.257399 -5.85804 18.06 + 890.3 0.545686 -6.33421 18.066 + 890.4 0.844269 -6.82146 18.065 + 890.5 1.14285 -7.29763 18.062 + 890.6 1.43114 -7.7738 18.076 + 890.7 1.71943 -8.24998 18.077 + 890.8 2.00771 -8.71508 18.067 + 890.9 2.3063 -9.19125 18.09 + 891 2.58429 -9.65635 18.09 + 891.1 2.87257 -10.1214 18.091 + 891.2 3.15056 -10.5865 18.1 + 891.3 3.42856 -11.0406 18.104 + 891.4 3.71684 -11.4946 18.114 + 891.5 3.99483 -11.9597 18.121 + 891.6 4.27283 -12.4137 18.119 + 891.7 4.56111 -12.8677 18.129 + 891.8 4.82881 -13.3107 18.135 + 891.9 5.0965 -13.7537 18.141 + 892 5.33331 -14.1523 18.127 + 892.1 5.55982 -14.5177 18.105 + 892.2 5.77604 -14.8721 18.131 + 892.3 5.97166 -15.1932 18.119 + 892.4 6.1364 -15.459 18.124 + 892.5 6.27024 -15.6694 18.13 + 892.6 6.3835 -15.8577 18.163 + 892.7 6.47616 -16.0238 18.181 + 892.8 6.56883 -16.1677 18.178 + 892.9 6.65119 -16.2895 18.187 + 893 6.71297 -16.3892 18.202 + 893.1 6.76445 -16.4778 18.205 + 893.2 6.81593 -16.5664 18.21 + 893.3 6.86741 -16.6439 18.22 + 893.4 6.91889 -16.7214 18.215 + 893.5 6.94978 -16.7879 18.208 + 893.6 6.98067 -16.8432 18.204 + 893.7 7.01155 -16.8986 18.214 + 893.8 7.04244 -16.9429 18.205 + 893.9 7.06303 -16.9761 18.204 + 894 7.07333 -17.0093 18.189 + 894.1 7.07333 -17.0093 18.186 + 894.2 7.07333 -17.0093 18.197 + 894.3 7.06303 -16.9983 18.196 + 894.4 7.04244 -16.9761 18.187 + 894.5 7.02185 -16.9429 18.192 + 894.6 6.99096 -16.8986 18.195 + 894.7 6.94978 -16.8432 18.189 + 894.8 6.90859 -16.7768 18.194 + 894.9 6.84682 -16.6882 18.199 + 895 6.78504 -16.5885 18.206 + 895.1 6.71297 -16.4778 18.206 + 895.2 6.6409 -16.356 18.198 + 895.3 6.55853 -16.2231 18.207 + 895.4 6.47616 -16.0791 18.2 + 895.5 6.3732 -15.9241 18.211 + 895.6 6.25995 -15.758 18.213 + 895.7 6.15699 -15.5808 18.204 + 895.8 6.04373 -15.4036 18.209 + 895.9 5.90988 -15.2154 18.215 + 896 5.79663 -15.0161 18.217 + 896.1 5.67308 -14.8057 18.219 + 896.2 5.52893 -14.5953 18.219 + 896.3 5.39509 -14.3738 18.214 + 896.4 5.25094 -14.1523 18.214 + 896.5 5.0965 -13.9198 18.215 + 896.6 4.94206 -13.6761 18.225 + 896.7 4.77733 -13.4104 18.216 + 896.8 4.61259 -13.1557 18.219 + 896.9 4.43756 -12.8788 18.208 + 897 4.25223 -12.5909 18.216 + 897.1 4.06691 -12.2919 18.226 + 897.2 3.88158 -11.9929 18.227 + 897.3 3.68596 -11.6718 18.217 + 897.4 3.48004 -11.3506 18.22 + 897.5 3.27412 -11.0074 18.226 + 897.6 3.0579 -10.6641 18.227 + 897.7 2.84169 -10.3097 18.245 + 897.8 2.61517 -9.94427 18.225 + 897.9 2.37837 -9.56776 18.239 + 898 2.14156 -9.18018 18.249 + 898.1 1.90475 -8.78152 18.231 + 898.2 1.65765 -8.38286 18.234 + 898.3 1.38995 -7.95098 18.246 + 898.4 1.13256 -7.53018 18.252 + 898.5 0.864861 -7.08723 18.241 + 898.6 0.58687 -6.62213 18.251 + 898.7 0.298583 -6.14596 18.249 + 898.8 0.010296 -5.66978 18.247 + 898.9 -0.288287 -5.17146 18.259 + 899 -0.58687 -4.66207 18.269 + 899.1 -0.895748 -4.1416 18.261 + 899.2 -1.22522 -3.61006 18.265 + 899.3 -1.55469 -3.06744 18.272 + 899.4 -1.88416 -2.50268 18.264 + 899.5 -2.22393 -1.93791 18.283 + 899.6 -2.57399 -1.351 18.281 + 899.7 -2.92405 -0.753018 18.282 + 899.8 -3.29471 -0.143959 18.287 + 899.9 -3.66536 0.4651 18.295 + 900 -4.04631 1.09631 18.28 + 900.1 -4.42726 1.73859 18.283 + 900.2 -4.81851 2.38087 18.284 + 900.3 -5.22005 3.04529 18.303 + 900.4 -5.63189 3.7208 18.309 + 900.5 -6.04372 4.3963 18.314 + 900.6 -6.46586 5.09395 18.31 + 900.7 -6.88799 5.7916 18.321 + 900.8 -7.32042 6.51139 18.325 + 900.9 -7.75285 7.23119 18.338 + 901 -8.19558 7.96206 18.336 + 901.1 -8.6486 8.71508 18.352 + 901.2 -9.10162 9.45702 18.348 + 901.3 -9.56494 10.2211 18.349 + 901.4 -10.0386 10.9852 18.358 + 901.5 -10.5019 11.7493 18.361 + 901.6 -10.9858 12.5355 18.356 + 901.7 -11.4594 13.3329 18.374 + 901.8 -11.933 14.1191 18.376 + 901.9 -12.4169 14.9275 18.377 + 902 -12.9008 15.7359 18.373 + 902.1 -13.3847 16.5443 18.4 + 902.2 -13.8789 17.3637 18.402 + 902.3 -14.3628 18.1721 18.41 + 902.4 -14.857 18.9916 18.411 + 902.5 -15.341 19.811 18.424 + 902.6 -15.8455 20.6416 18.4149 + 902.7 -16.3294 21.4721 18.4299 + 902.8 -16.8236 22.2805 18.4449 + 902.9 -17.3178 23.0889 18.4499 + 903 -17.812 23.9083 18.4429 + 903.1 -18.2959 24.7278 18.4499 + 903.2 -18.7901 25.5362 18.4679 + 903.3 -19.274 26.3556 18.4689 + 903.4 -19.7579 27.164 18.4779 + 903.5 -20.2418 27.9835 18.4899 + 903.6 -20.736 28.7919 18.5099 + 903.7 -21.2096 29.6003 18.4989 + 903.8 -21.6935 30.4087 18.5179 + 903.9 -22.1774 31.217 18.5189 + 904 -22.6614 32.0365 18.5339 + 904.1 -23.1453 32.8338 18.5349 + 904.2 -23.6189 33.6422 18.5429 + 904.3 -24.1028 34.4395 18.5369 + 904.4 -24.5867 35.2479 18.5449 + 904.5 -25.0603 36.0452 18.5638 + 904.6 -25.5339 36.8425 18.5558 + 904.7 -26.0178 37.6399 18.5728 + 904.8 -26.4914 38.4372 18.5778 + 904.9 -26.965 39.2234 18.5938 + 905 -27.4284 40.0207 18.5908 + 905.1 -27.8917 40.7959 18.5978 + 905.2 -28.3653 41.5821 18.6188 + 905.3 -28.8286 42.3573 18.6208 + 905.4 -29.2919 43.1325 18.6158 + 905.5 -29.7449 43.8966 18.6268 + 905.6 -30.198 44.6606 18.6208 + 905.7 -30.651 45.4247 18.6268 + 905.8 -31.104 46.1778 18.6388 + 905.9 -31.5467 46.9197 18.6387 + 906 -31.9894 47.6616 18.6327 + 906.1 -32.4322 48.4036 18.6327 + 906.2 -32.8749 49.1345 18.6377 + 906.3 -33.3073 49.8543 18.6577 + 906.4 -33.7397 50.5741 18.6477 + 906.5 -34.1722 51.3049 18.6617 + 906.6 -34.6149 52.0247 18.6647 + 906.7 -35.0473 52.7445 18.6667 + 906.8 -35.4797 53.4643 18.6847 + 906.9 -35.9122 54.1841 18.6837 + 907 -36.3446 54.9039 18.6967 + 907.1 -36.777 55.6126 18.7017 + 907.2 -37.1992 56.3214 18.7066 + 907.3 -37.6007 57.0079 18.7286 + 907.4 -37.9713 57.6281 18.7226 + 907.5 -38.3317 58.2482 18.7376 + 907.6 -38.6715 58.8019 18.8326 + 907.7 -38.9701 59.2892 18.9316 + 907.8 -39.2274 59.6878 19.0656 + 907.9 -39.4437 60.02 19.2316 + 908 -39.629 60.2969 19.4386 + 908.1 -39.7731 60.5294 19.6866 + 908.2 -39.9173 60.7177 19.9306 + 908.3 -40.0202 60.8727 20.2366 + 908.4 -40.1129 60.9945 20.5566 + 908.5 -40.1747 61.1053 20.9246 + 908.6 -40.2468 61.2049 21.3006 + 908.7 -40.2982 61.2935 21.7056 + 908.8 -40.3394 61.3711 22.1076 + 908.9 -40.3806 61.4264 22.5096 + 909 -40.4218 61.4818 22.9246 + 909.1 -40.4424 61.5261 23.3386 + 909.2 -40.4733 61.5815 23.7346 + 909.3 -40.4836 61.6147 24.1246 + 909.4 -40.4836 61.659 24.5076 + 909.5 -40.4733 61.7033 24.8546 + 909.6 -40.4527 61.7476 25.1856 + 909.7 -40.4218 61.7919 25.5026 + 909.8 -40.3703 61.8473 25.7866 + 909.9 -40.3086 61.9026 26.0476 + 910 -40.2262 61.958 26.2806 + 910.1 -40.1438 62.0355 26.4666 + 910.2 -40.0203 62.113 26.6176 + 910.3 -39.907 62.2016 26.7206 + 910.4 -39.7629 62.2902 26.7896 + 910.5 -39.5981 62.3899 26.8586 + 910.6 -39.4128 62.5006 26.8936 + 910.7 -39.2172 62.6224 26.9036 + 910.8 -38.9907 62.7553 26.9036 + 910.9 -38.7436 62.8993 26.8906 + 911 -38.4759 63.0543 26.8906 + 911.1 -38.1773 63.2204 26.8816 + 911.2 -37.8684 63.3865 26.8696 + 911.3 -37.5493 63.5748 26.8586 + 911.4 -37.1992 63.7741 26.8596 + 911.5 -36.8491 63.9734 26.8436 + 911.6 -36.4682 64.1838 26.8366 + 911.7 -36.0769 64.3942 26.8366 + 911.8 -35.6651 64.6268 26.8346 + 911.9 -35.2533 64.8593 26.8376 + 912 -34.8208 65.0919 26.8456 + 912.1 -34.3781 65.3466 26.8436 + 912.2 -33.9251 65.6013 26.8476 + 912.3 -33.4618 65.856 26.8446 + 912.4 -32.9881 66.1218 26.8706 + 912.5 -32.5042 66.3986 26.8616 + 912.6 -32.0203 66.6754 26.8796 + 912.7 -31.5158 66.9523 26.8856 + 912.8 -31.001 67.2402 26.8966 + 912.9 -30.4965 67.5281 26.9046 + 913 -29.9817 67.816 26.9056 + 913.1 -29.4669 68.115 26.9216 + 913.2 -28.9315 68.414 26.9286 + 913.3 -28.3962 68.7241 26.9266 + 913.4 -27.8608 69.0231 26.9276 + 913.5 -27.3254 69.3331 26.9336 + 913.6 -26.7797 69.6432 26.9316 + 913.7 -26.2237 69.9644 26.9466 + 913.8 -25.6677 70.2855 26.9476 + 913.9 -25.1118 70.6066 26.9506 + 914 -24.5455 70.9388 26.9556 + 914.1 -23.9792 71.26 26.9666 + 914.2 -23.4026 71.5922 26.9596 + 914.3 -22.8261 71.9244 26.9676 + 914.4 -22.2392 72.2677 26.9835 + 914.5 -21.6626 72.5999 26.9955 + 914.6 -21.0758 72.9543 27.0005 + 914.7 -20.4683 73.2976 27.0025 + 914.8 -19.8814 73.6409 27.0145 + 914.9 -19.274 74.0063 27.0185 + 915 -18.6665 74.3496 27.0325 + 915.1 -18.0693 74.715 27.0355 + 915.2 -17.4516 75.0694 27.0515 + 915.3 -16.8338 75.4348 27.0505 + 915.4 -16.2161 75.8002 27.0545 + 915.5 -15.5983 76.1657 27.0575 + 915.6 -14.9703 76.5422 27.0575 + 915.7 -14.3525 76.9076 27.0625 + 915.8 -13.7142 77.2841 27.0665 + 915.9 -13.0861 77.6606 27.0605 + 916 -12.4478 78.0482 27.0595 + 916.1 -11.8094 78.4247 27.0595 + 916.2 -11.1814 78.8012 27.0715 + 916.3 -10.543 79.1888 27.0705 + 916.4 -9.91497 79.5875 27.0655 + 916.5 -9.27662 79.9751 27.0635 + 916.6 -8.64857 80.3737 27.0725 + 916.7 -8.02052 80.7834 27.0785 + 916.8 -7.39247 81.1932 27.0765 + 916.9 -6.76442 81.6029 27.0755 + 917 -6.14666 82.0237 27.0845 + 917.1 -5.52891 82.4556 27.0885 + 917.2 -4.91115 82.8764 27.0975 + 917.3 -4.2934 83.3193 27.0885 + 917.4 -3.67564 83.7512 27.0894 + 917.5 -3.06818 84.1942 27.1034 + 917.6 -2.46072 84.6482 27.1154 + 917.7 -1.85326 85.0912 27.1214 + 917.8 -1.24581 85.5341 27.1314 + 917.9 -0.638347 85.9771 27.1384 + 918 -0.0308877 86.4311 27.1534 + 918.1 0.566275 86.874 27.1564 + 918.2 1.17373 87.3281 27.1674 + 918.3 1.79149 87.771 27.1524 + 918.4 2.39895 88.214 27.1654 + 918.5 3.00641 88.6569 27.1584 + 918.6 3.62416 89.0999 27.1544 + 918.7 4.23162 89.5539 27.1584 + 918.8 4.82878 89.9969 27.1594 + 918.9 5.44654 90.4398 27.1544 + 919 6.0437 90.8828 27.1593 + 919.1 6.65116 91.3257 27.1503 + 919.2 7.25862 91.7797 27.1663 + 919.3 7.85578 92.2227 27.1553 + 919.4 8.46324 92.6767 27.1483 + 919.5 9.0707 93.1197 27.1503 + 919.6 9.68845 93.5626 27.1373 + 919.7 10.2959 94.0056 27.1273 + 919.8 10.8931 94.4596 27.1253 + 919.9 11.5005 94.9026 27.1313 + 920 12.108 95.3455 27.1203 + 920.1 12.7257 95.7995 27.1133 + 920.2 13.3332 96.2425 27.1263 + 920.3 13.9407 96.6965 27.1172 + 920.4 14.5481 97.1395 27.1252 + 920.5 15.1556 97.5935 27.1292 + 920.6 15.763 98.0365 27.1282 + 920.7 16.3705 98.4905 27.1332 + 920.8 16.9779 98.9334 27.1402 + 920.9 17.5854 99.3985 27.1622 + 921 18.1929 99.8415 27.2172 + 921.1 18.8106 100.284 27.2822 + 921.2 19.4181 100.727 27.3922 + 921.3 20.0152 101.17 27.5302 + 921.4 20.6227 101.602 27.6972 + 921.5 21.2199 102.045 27.8921 + 921.6 21.8067 102.466 28.1451 + 921.7 22.3936 102.887 28.4231 + 921.8 22.9805 103.308 28.7321 + 921.9 23.557 103.728 29.0581 + 922 24.1233 104.138 29.4181 + 922.1 24.6896 104.559 29.7841 + 922.2 25.2456 104.969 30.1721 + 922.3 25.8015 105.367 30.5761 + 922.4 26.3472 105.777 30.9581 + 922.5 26.9032 106.176 31.3481 + 922.6 27.4386 106.586 31.734 + 922.7 27.974 106.973 32.108 + 922.8 28.4991 107.372 32.491 + 922.9 29.0345 107.759 32.859 + 923 29.5699 108.158 33.213 + 923.1 30.0846 108.546 33.571 + 923.2 30.6097 108.933 33.91 + 923.3 31.1245 109.31 34.247 + 923.4 31.6393 109.697 34.576 + 923.5 32.1541 110.085 34.906 + 923.6 32.6689 110.461 35.218 + 923.7 33.194 110.838 35.5209 + 923.8 33.7088 111.226 35.8259 + 923.9 34.2236 111.602 36.1229 + 924 34.7384 111.979 36.4079 + 924.1 35.2635 112.366 36.6929 + 924.2 35.7886 112.743 36.9689 + 924.3 36.3137 113.13 37.2429 + 924.4 36.8388 113.507 37.5249 + 924.5 37.3742 113.894 37.7829 + 924.6 37.9095 114.282 38.0309 + 924.7 38.4449 114.67 38.2808 + 924.8 38.9906 115.068 38.4848 + 924.9 39.5363 115.456 38.6758 + 925 40.082 115.854 38.8258 + 925.1 40.6277 116.253 39.0088 + 925.2 41.1837 116.641 39.1718 + 925.3 41.7396 117.05 39.3268 + 925.4 42.3059 117.46 39.4948 + 925.5 42.8722 117.859 39.6768 + 925.6 43.4385 118.269 39.8557 + 925.7 44.0047 118.678 40.0507 + 925.8 44.571 119.088 40.2477 + 925.9 45.1476 119.498 40.4447 + 926 45.7241 119.896 40.6457 + 926.1 46.3007 120.317 40.8337 + 926.2 46.8773 120.727 41.0067 + 926.3 47.4539 121.148 41.1637 + 926.4 48.0407 121.558 41.2927 + 926.5 48.6173 121.967 41.3846 + 926.6 49.2042 122.388 41.4576 + 926.7 49.791 122.798 41.5156 + 926.8 50.3779 123.208 41.5456 + 926.9 50.9648 123.628 41.5566 + 927 51.5516 124.049 41.5826 + 927.1 52.1488 124.47 41.6006 + 927.2 52.746 124.88 41.6236 + 927.3 53.3328 125.301 41.6455 + 927.4 53.9197 125.721 41.6465 + 927.5 54.5168 126.142 41.6625 + 927.6 55.114 126.563 41.6625 + 927.7 55.7009 126.984 41.6685 + 927.8 56.3083 127.394 41.6645 + 927.9 56.8952 127.814 41.6665 + 928 57.4924 128.235 41.6824 + 928.1 58.0895 128.656 41.7304 + 928.2 58.6867 129.077 41.7944 + 928.3 59.2838 129.498 41.8764 + 928.4 59.8604 129.918 41.9684 + 928.5 60.4576 130.339 42.0774 + 928.6 61.0547 130.76 42.1824 + 928.7 61.6416 131.17 42.3043 + 928.8 62.2182 131.591 42.4623 + 928.9 62.805 132 42.6323 + 929 63.3919 132.421 42.8223 + 929.1 63.9685 132.842 43.0173 + 929.2 64.545 133.252 43.2133 + 929.3 65.1216 133.661 43.4233 + 929.4 65.6982 134.071 43.6112 + 929.5 66.2645 134.481 43.8122 + 929.6 66.8307 134.88 43.9882 + 929.7 67.397 135.278 44.1662 + 929.8 67.9633 135.688 44.3302 + 929.9 68.5296 136.087 44.4852 + 930 69.0855 136.485 44.6162 + 930.1 69.6415 136.884 44.7691 + 930.2 70.1975 137.283 44.9161 + 930.3 70.7432 137.681 45.0621 + 930.4 71.2992 138.08 45.2111 + 930.5 71.8551 138.479 45.3311 + 930.6 72.3905 138.866 45.4451 + 930.7 72.9465 139.254 45.5201 + 930.8 73.4922 139.652 45.578 + 930.9 74.0276 140.04 45.626 + 931 74.5733 140.439 45.657 + 931.1 75.1189 140.837 45.678 + 931.2 75.6543 141.236 45.69 + 931.3 76.1897 141.624 45.7 + 931.4 76.7251 142.022 45.7029 + 931.5 77.2605 142.41 45.7079 + 931.6 77.7856 142.808 45.6979 + 931.7 78.3107 143.185 45.6989 + 931.8 78.846 143.55 45.6899 + 931.9 79.3711 143.905 45.6799 + 932 79.9065 144.237 45.6829 + 932.1 80.4522 144.547 45.6768 + 932.2 80.9979 144.824 45.6668 + 932.3 81.5436 145.079 45.6888 + 932.4 82.0995 145.311 45.6938 + 932.5 82.6658 145.511 45.6868 + 932.6 83.2218 145.688 45.7008 + 932.7 83.7881 145.832 45.6868 + 932.8 84.3646 145.953 45.6828 + 932.9 84.9309 146.053 45.6898 + 933 85.4972 146.12 45.6887 + 933.1 86.0635 146.164 45.6877 + 933.2 86.6297 146.197 45.7047 + 933.3 87.196 146.197 45.7087 + 933.4 87.7623 146.175 45.7047 + 933.5 88.3286 146.131 45.7057 + 933.6 88.8845 146.075 45.7007 + 933.7 89.4508 145.987 45.7077 + 933.8 89.9965 145.887 45.7027 + 933.9 90.5422 145.776 45.7107 + 934 91.0879 145.632 45.7157 + 934.1 91.6233 145.488 45.7297 + 934.2 92.1689 145.344 45.7277 + 934.3 92.7146 145.201 45.7177 + 934.4 93.25 145.034 45.7197 + 934.5 93.7854 144.879 45.7157 + 934.6 94.3311 144.724 45.6987 + 934.7 94.8768 144.569 45.7236 + 934.8 95.443 144.414 45.7206 + 934.9 95.9887 144.27 45.7256 + 935 96.555 144.126 45.7276 + 935.1 97.1316 143.982 45.7366 + 935.2 97.6978 143.838 45.7406 + 935.3 98.2744 143.683 45.7526 + 935.4 98.8613 143.539 45.7476 + 935.5 99.4482 143.396 45.7566 + 935.6 100.045 143.252 45.7476 + 935.7 100.642 143.108 45.7446 + 935.8 101.25 142.964 45.7536 + 935.9 101.847 142.82 45.7526 + 936 102.465 142.676 45.7576 + 936.1 103.083 142.532 45.7536 + 936.2 103.711 142.377 45.7616 + 936.3 104.318 142.233 45.7576 + 936.4 104.956 142.089 45.7655 + 936.5 105.585 141.934 45.7605 + 936.6 106.223 141.79 45.7615 + 936.7 106.861 141.635 45.7665 + 936.8 107.489 141.491 45.7745 + 936.9 108.138 141.336 45.7795 + 937 108.787 141.192 45.7855 + 937.1 109.435 141.026 45.7805 + 937.2 110.094 140.86 45.7915 + 937.3 110.743 140.683 45.7905 + 937.4 111.391 140.483 45.8035 + 937.5 112.04 140.284 45.8055 + 937.6 112.689 140.085 45.8065 + 937.7 113.337 139.885 45.8195 + 937.8 113.996 139.686 45.8144 + 937.9 114.655 139.453 45.7994 + 938 115.324 139.243 45.7824 + 938.1 115.983 139.033 45.7974 + 938.2 116.653 138.822 45.7904 + 938.3 117.332 138.623 45.7904 + 938.4 118.001 138.412 45.7944 + 938.5 118.691 138.213 45.7844 + 938.6 119.371 138.003 45.7864 + 938.7 120.05 137.792 45.7874 + 938.8 120.74 137.582 45.7844 + 938.9 121.43 137.383 45.7854 + 939 122.12 137.183 45.7903 + 939.1 122.81 136.973 45.7883 + 939.2 123.51 136.762 45.7913 + 939.3 124.21 136.552 45.7893 + 939.4 124.9 136.353 45.8023 + 939.5 125.61 136.142 45.7873 + 939.6 126.31 135.943 45.8033 + 939.7 127.021 135.733 45.8003 + 939.8 127.721 135.533 45.8043 + 939.9 128.431 135.323 45.8133 + 940 129.152 135.113 45.8053 + 940.1 129.862 134.913 45.8182 + 940.2 130.593 134.703 45.8152 + 940.3 131.314 134.492 45.8262 + 940.4 132.035 134.282 45.8232 + 940.5 132.766 134.072 45.8282 + 940.6 133.497 133.861 45.8282 + 940.7 134.218 133.651 45.8382 + 940.8 134.969 133.44 45.8382 + 940.9 135.7 133.23 45.8442 + 941 136.441 133.02 45.8391 + 941.1 137.172 132.798 45.8461 + 941.2 137.914 132.588 45.8521 + 941.3 138.665 132.366 45.8391 + 941.4 139.407 132.156 45.8301 + 941.5 140.138 131.945 45.8391 + 941.6 140.889 131.724 45.8321 + 941.7 141.631 131.48 45.8361 + 941.8 142.362 131.181 45.8141 + 941.9 143.072 130.905 45.825 + 942 143.772 130.595 45.847 + 942.1 144.441 130.262 45.867 + 942.2 145.1 129.897 45.881 + 942.3 145.759 129.543 45.886 + 942.4 146.408 129.166 45.871 + 942.5 147.046 128.767 45.857 + 942.6 147.674 128.38 45.848 + 942.7 148.313 127.981 45.85 + 942.8 148.961 127.594 45.844 + 942.9 149.61 127.206 45.852 + 943 150.259 126.818 45.853 + 943.1 150.918 126.442 45.869 + 943.2 151.566 126.054 45.8779 + 943.3 152.235 125.667 45.8799 + 943.4 152.884 125.279 45.8839 + 943.5 153.543 124.892 45.8849 + 943.6 154.202 124.504 45.8869 + 943.7 154.84 124.072 45.8899 + 943.8 155.468 123.629 45.8759 + 943.9 156.076 123.175 45.9049 + 944 156.642 122.71 45.9149 + 944.1 157.208 122.223 45.9359 + 944.2 157.795 121.758 45.9489 + 944.3 158.362 121.282 45.9119 + 944.4 158.907 120.772 45.9039 + 944.5 159.463 120.252 45.9049 + 944.6 160.019 119.764 45.9129 + 944.7 160.585 119.277 45.9139 + 944.8 161.162 118.79 45.9239 + 944.9 161.739 118.303 45.9238 + 945 162.315 117.804 45.9388 + 945.1 162.912 117.317 45.9388 + 945.2 163.499 116.819 45.9518 + 945.3 164.076 116.321 45.9588 + 945.4 164.663 115.822 45.9578 + 945.5 165.26 115.335 45.9628 + 945.6 165.847 114.837 45.9728 + 945.7 166.444 114.338 45.9798 + 945.8 167.041 113.851 45.9848 + 945.9 167.638 113.353 45.9738 + 946 168.235 112.854 45.9778 + 946.1 168.833 112.356 45.9778 + 946.2 169.43 111.847 45.9738 + 946.3 170.017 111.326 45.9738 + 946.4 170.593 110.784 45.9578 + 946.5 171.16 110.23 45.9707 + 946.6 171.705 109.676 45.9787 + 946.7 172.23 109.112 45.9957 + 946.8 172.725 108.525 45.9987 + 946.9 173.219 107.938 45.9997 + 947 173.692 107.34 45.9987 + 947.1 174.176 106.742 45.9937 + 947.2 174.64 106.133 45.9777 + 947.3 175.103 105.524 45.9617 + 947.4 175.566 104.926 45.9617 + 947.5 176.04 104.317 45.9587 + 947.6 176.513 103.708 45.9647 + 947.7 177.008 103.098 45.9717 + 947.8 177.492 102.501 45.9707 + 947.9 177.986 101.891 45.9697 + 948 178.47 101.282 45.9627 + 948.1 178.974 100.673 45.9607 + 948.2 179.458 100.064 45.9607 + 948.3 179.963 99.4552 45.9727 + 948.4 180.457 98.8462 45.9667 + 948.5 180.961 98.2371 45.9757 + 948.6 181.466 97.6391 45.9727 + 948.7 181.97 97.019 45.9617 + 948.8 182.475 96.41 45.9757 + 948.9 182.979 95.8009 45.9737 + 949 183.484 95.1918 45.9776 + 949.1 183.999 94.5717 45.9766 + 949.2 184.503 93.9737 45.9806 + 949.3 185.018 93.3536 45.9816 + 949.4 185.523 92.7446 45.9856 + 949.5 186.037 92.1244 45.9836 + 949.6 186.542 91.5264 45.9906 + 949.7 187.057 90.9063 45.9966 + 949.8 187.571 90.2862 45.9886 + 949.9 188.076 89.6661 45.9936 + 950 188.57 89.0349 45.9956 + 950.1 189.075 88.4147 46.0006 + 950.2 189.569 87.7835 46.0066 + 950.3 190.053 87.1523 46.0126 + 950.4 190.537 86.51 46.0236 + 950.5 191.01 85.8456 46.0306 + 950.6 191.474 85.2033 46.0276 + 950.7 191.937 84.5389 46.0256 + 950.8 192.39 83.8745 46.0245 + 950.9 192.822 83.2101 46.0245 + 951 193.255 82.5346 46.0275 + 951.1 193.698 81.848 46.0295 + 951.2 194.12 81.1614 46.0295 + 951.3 194.542 80.4638 46.0275 + 951.4 194.954 79.7772 46.0235 + 951.5 195.366 79.0685 46.0135 + 951.6 195.767 78.3708 46.0275 + 951.7 196.158 77.6621 46.0325 + 951.8 196.55 76.9423 46.0235 + 951.9 196.941 76.2225 46.0265 + 952 197.312 75.5027 46.0335 + 952.1 197.672 74.7719 46.0385 + 952.2 198.022 74.041 46.0365 + 952.3 198.362 73.299 46.0395 + 952.4 198.691 72.5571 46.0465 + 952.5 199.01 71.8152 46.0375 + 952.6 199.319 71.0621 46.0475 + 952.7 199.618 70.3091 46.0565 + 952.8 199.886 69.534 46.0515 + 952.9 200.153 68.7699 46.0485 + 953 200.39 67.9947 46.0415 + 953.1 200.637 67.2085 46.0585 + 953.2 200.843 66.4333 46.0615 + 953.3 201.039 65.636 46.0525 + 953.4 201.224 64.8497 46.0685 + 953.5 201.399 64.0524 46.0595 + 953.6 201.554 63.244 46.0615 + 953.7 201.688 62.4467 46.0625 + 953.8 201.821 61.6383 46.0645 + 953.9 201.935 60.8299 46.0665 + 954 202.038 60.0216 46.0635 + 954.1 202.13 59.2021 46.0625 + 954.2 202.192 58.3937 46.0565 + 954.3 202.254 57.5853 46.0645 + 954.4 202.305 56.7658 46.0645 + 954.5 202.336 55.9575 46.0675 + 954.6 202.357 55.1491 46.0736 + 954.7 202.367 54.3296 46.0596 + 954.8 202.357 53.5101 46.0586 + 954.9 202.347 52.7017 46.0596 + 955 202.316 51.8823 46.0566 + 955.1 202.285 51.0739 46.0536 + 955.2 202.244 50.2544 46.0496 + 955.3 202.192 49.435 46.0506 + 955.4 202.13 48.6266 46.0566 + 955.5 202.058 47.8071 46.0506 + 955.6 201.986 46.9876 46.0506 + 955.7 201.904 46.1792 46.0506 + 955.8 201.801 45.3598 46.0496 + 955.9 201.698 44.5403 46.0467 + 956 201.585 43.7319 46.0447 + 956.1 201.461 42.9125 46.0367 + 956.2 201.327 42.093 46.0397 + 956.3 201.173 41.2957 46.0377 + 956.4 200.998 40.4873 46.0347 + 956.5 200.813 39.6789 46.0337 + 956.6 200.617 38.8816 46.0417 + 956.7 200.391 38.0842 46.0307 + 956.8 200.154 37.298 46.0348 + 956.9 199.907 36.5228 46.0458 + 957 199.629 35.7477 46.0408 + 957.1 199.33 34.9946 46.0508 + 957.2 199.021 34.2416 46.0468 + 957.3 198.692 33.4997 46.0608 + 957.4 198.342 32.7688 46.0628 + 957.5 197.981 32.049 46.0618 + 957.6 197.6 31.3292 46.0729 + 957.7 197.199 30.6315 46.0689 + 957.8 196.797 29.9338 46.0659 + 957.9 196.365 29.2362 46.0749 + 958 195.922 28.5718 46.0699 + 958.1 195.469 27.8962 46.0619 + 958.2 195.006 27.2429 46.063 + 958.3 194.532 26.5895 46.064 + 958.4 194.048 25.9583 46.059 + 958.5 193.565 25.316 46.064 + 958.6 193.06 24.6848 46.063 + 958.7 192.556 24.0647 46.059 + 958.8 192.041 23.4556 46.0601 + 958.9 191.516 22.8465 46.0591 + 959 190.991 22.2485 46.0561 + 959.1 190.455 21.6616 46.0661 + 959.2 189.909 21.0858 46.0451 + 959.3 189.354 20.5099 46.0592 + 959.4 188.798 19.9562 46.0592 + 959.5 188.221 19.4025 46.0552 + 959.6 187.644 18.871 46.0692 + 959.7 187.068 18.3394 46.0592 + 959.8 186.481 17.8189 46.0753 + 959.9 185.874 17.3206 46.0713 + 960 185.276 16.8223 46.0773 + 960.1 184.659 16.335 46.0753 + 960.2 184.041 15.8588 46.0883 + 960.3 183.413 15.3827 46.0883 + 960.4 182.774 14.9286 46.0994 + 960.5 182.136 14.4746 46.0984 + 960.6 181.487 14.0427 46.1144 + 960.7 180.829 13.6108 46.1114 + 960.9 179.49 12.7803 46.1065 + 961 178.811 12.3816 46.1095 + 961.1 178.121 11.994 46.1165 + 961.2 177.431 11.6175 46.1195 + 961.3 176.72 11.252 46.1105 + 961.4 176.01 10.8977 46.1246 + 961.5 175.279 10.5433 46.1266 + 961.6 174.558 10.2221 46.1316 + 961.7 173.807 9.91207 46.1336 + 961.8 173.045 9.63521 46.1356 + 961.9 172.293 9.39158 46.1377 + 962 171.542 9.15902 46.1287 + 962.1 170.78 8.95968 46.1337 + 962.2 170.028 8.80464 46.1367 + 962.3 169.276 8.66067 46.1317 + 962.4 168.515 8.53885 46.1308 + 962.5 167.763 8.46133 46.1328 + 962.6 167.011 8.39487 46.1338 + 962.7 166.249 8.30628 46.1318 + 962.8 165.498 8.21768 46.1148 + 962.9 164.746 8.15123 46.1339 + 963 163.984 8.08477 46.1529 + 963.1 163.222 7.99618 46.1539 + 963.2 162.45 7.91865 46.1569 + 963.3 161.688 7.83005 46.1549 + 963.4 160.916 7.73038 46.165 + 963.5 160.154 7.63071 46.153 + 963.6 159.382 7.55318 46.153 + 963.7 158.6 7.4978 46.127 + 963.8 157.817 7.47565 46.116 + 963.9 157.065 7.45349 46.0931 + 964 156.314 7.47563 46.1041 + 964.1 155.562 7.531 46.1111 + 964.2 154.831 7.63065 46.1121 + 964.3 154.121 7.76353 46.1101 + 964.4 153.431 7.92963 46.1012 + 964.5 152.751 8.12895 46.0972 + 964.6 152.092 8.35043 46.0802 + 964.7 151.464 8.60512 46.1062 + 964.8 150.816 8.81551 46.1062 + 964.9 150.167 9.04806 46.0892 + 965 149.539 9.31382 46.0822 + 965.1 148.911 9.56852 46.0763 + 965.2 148.262 9.81214 46.0643 + 965.3 147.614 10.0447 46.0663 + 965.4 146.965 10.2772 46.0643 + 965.5 146.306 10.5098 46.0583 + 965.6 145.637 10.7312 46.0543 + 965.7 144.968 10.9638 46.0343 + 965.8 144.309 11.1963 46.0374 + 965.9 143.629 11.4399 46.0364 + 966 142.95 11.6725 46.0214 + 966.1 142.26 11.905 46.0224 + 966.2 141.57 12.1376 46.0274 + 966.3 140.89 12.3591 46.0154 + 966.4 140.19 12.6027 46.0154 + 966.5 139.49 12.8352 46.0105 + 966.6 138.8 13.0678 46.0025 + 966.7 138.09 13.3003 46.0005 + 966.8 137.39 13.5328 45.9975 + 966.9 136.679 13.7654 45.9905 + 967 135.969 14.009 46.0025 + 967.1 135.258 14.2416 45.9866 + 967.2 134.548 14.4852 45.9836 + 967.3 133.838 14.7177 45.9826 + 967.4 133.117 14.9613 45.9776 + 967.5 132.406 15.205 45.9666 + 967.6 131.675 15.4375 45.9786 + 967.7 130.955 15.6811 45.9656 + 967.8 130.224 15.9137 45.9657 + 967.9 129.503 16.1573 45.9737 + 968 128.772 16.4009 45.9667 + 968.1 128.041 16.6445 45.9657 + 968.2 127.32 16.8881 45.9697 + 968.3 126.589 17.1318 45.9587 + 968.4 125.858 17.3754 45.9567 + 968.5 125.127 17.619 45.9547 + 968.6 124.396 17.8626 45.9448 + 968.7 123.665 18.1062 45.9388 + 968.8 122.924 18.3498 45.9458 + 968.9 122.183 18.5935 45.9258 + 969 121.451 18.8371 45.9308 + 969.1 120.71 19.0918 45.9288 + 969.2 119.969 19.3354 45.9258 + 969.3 119.228 19.579 45.9329 + 969.4 118.486 19.8226 45.9269 + 969.5 117.735 20.0773 45.9209 + 969.6 116.993 20.332 45.9239 + 969.7 116.252 20.5756 45.9239 + 969.8 115.5 20.8193 45.9259 + 969.9 114.759 21.0739 45.9229 + 970 114.028 21.3176 45.9169 + 970.1 113.287 21.5612 45.919 + 970.2 112.545 21.8048 45.911 + 970.3 111.804 22.0374 45.906 + 970.4 111.063 22.292 45.902 + 970.5 110.332 22.5246 45.9 + 970.6 109.601 22.7682 45.896 + 970.7 108.87 23.0118 45.896 + 970.8 108.139 23.2444 45.897 + 970.9 107.418 23.488 45.9071 + 971 106.697 23.7316 45.9051 + 971.1 105.977 23.9642 45.8931 + 971.2 105.266 24.2078 45.8991 + 971.3 104.556 24.4403 45.9021 + 971.4 103.845 24.6729 45.8981 + 971.5 103.145 24.9165 45.8991 + 971.6 102.445 25.149 45.8871 + 971.7 101.745 25.3816 45.8891 + 971.8 101.065 25.6141 45.8821 + 971.9 100.365 25.8467 45.8782 + 972 99.6754 26.0681 45.8572 + 972.1 98.9959 26.2896 45.8512 + 972.2 98.3061 26.5222 45.8482 + 972.3 97.6265 26.7436 45.8332 + 972.4 96.9367 26.9762 45.8262 + 972.5 96.2468 27.1977 45.8122 + 972.6 95.5673 27.4191 45.8142 + 972.7 94.8878 27.6406 45.7972 + 972.8 94.2082 27.8731 45.7952 + 972.9 93.5287 28.0946 45.7893 + 973 92.8492 28.3161 45.7943 + 973.1 92.1696 28.5376 45.7833 + 973.2 91.4901 28.7701 45.7823 + 973.3 90.8003 29.0027 45.7763 + 973.4 90.1207 29.2241 45.7723 + 973.5 89.4206 29.4345 45.7673 + 973.6 88.7308 29.6339 45.7713 + 973.7 88.0203 29.8221 45.7543 + 973.8 87.3202 29.9771 45.7583 + 973.9 86.6098 30.11 45.7623 + 974 85.8994 30.2208 45.7763 + 974.1 85.1889 30.2983 45.7724 + 974.2 84.4579 30.3758 45.7824 + 974.3 83.7475 30.4533 45.7974 + 974.4 83.0474 30.5087 45.7614 + 974.5 82.337 30.564 45.7584 + 974.6 81.6265 30.6083 45.7594 + 974.7 80.9161 30.6858 45.7654 + 974.8 80.2057 30.7633 45.7674 + 974.9 79.4953 30.8409 45.7754 + 975 78.7951 30.9184 45.7764 + 975.1 78.0744 31.007 45.7924 + 975.2 77.3537 31.0845 45.7855 + 975.3 76.633 31.162 45.7905 + 975.4 75.9123 31.2506 45.7885 + 975.5 75.1915 31.3281 45.8015 + 975.6 74.4605 31.4167 45.7815 + 975.7 73.7398 31.4942 45.7865 + 975.8 73.0191 31.5828 45.7875 + 975.9 72.2881 31.6603 45.7735 + 976 71.5571 31.7599 45.7735 + 976.1 70.8157 31.8375 45.7635 + 976.2 70.0847 31.9371 45.7645 + 976.3 69.3434 32.0257 45.7595 + 976.4 68.6021 32.1143 45.7515 + 976.5 67.8608 32.214 45.7546 + 976.6 67.1092 32.3025 45.7496 + 976.7 66.3679 32.4022 45.7436 + 976.8 65.606 32.4908 45.7426 + 976.9 64.8441 32.5905 45.7476 + 977 64.0925 32.6901 45.7476 + 977.1 63.3306 32.7898 45.7486 + 977.2 62.5687 32.8894 45.7366 + 977.3 61.8068 32.9891 45.7416 + 977.4 61.0346 33.0888 45.7466 + 977.5 60.2624 33.1884 45.7506 + 977.6 59.4902 33.2881 45.7546 + 977.7 58.718 33.3988 45.7456 + 977.8 57.9458 33.5096 45.7476 + 977.9 57.1736 33.6092 45.7387 + 978 56.3911 33.72 45.7457 + 978.1 55.6086 33.8307 45.7427 + 978.2 54.8364 33.9414 45.7397 + 978.3 54.0539 34.0522 45.7347 + 978.4 53.2714 34.1629 45.7317 + 978.5 52.4889 34.2736 45.7337 + 978.6 51.6961 34.3844 45.7307 + 978.7 50.9136 34.4951 45.7207 + 978.8 50.1311 34.6058 45.7197 + 978.9 49.328 34.7387 45.7077 + 979 48.5455 34.9159 45.7067 + 979.1 47.7836 35.0931 45.6807 + 979.2 47.032 35.2924 45.6827 + 979.3 46.2907 35.525 45.6857 + 979.4 45.5803 35.7907 45.6957 + 979.5 44.8802 36.0786 45.7007 + 979.6 44.1491 36.3112 45.6887 + 979.7 43.449 36.6102 45.6857 + 979.8 42.7798 36.9203 45.6847 + 979.9 42.1002 37.2082 45.7038 + 980 41.4104 37.5072 45.7088 + 980.1 40.7103 37.784 45.7278 + 980.2 40.0102 38.0719 45.7268 + 980.3 39.31 38.3709 45.7188 + 980.4 38.6202 38.6588 45.7278 + 980.5 37.9201 38.9578 45.7188 + 980.6 37.2199 39.2457 45.7138 + 980.7 36.5095 39.5447 45.7018 + 980.8 35.7991 39.8437 45.7068 + 980.9 35.0887 40.1427 45.6988 + 981 34.368 40.4417 45.6928 + 981.1 33.6472 40.7407 45.6788 + 981.2 32.9162 41.0508 45.6758 + 981.3 32.1852 41.3608 45.6738 + 981.4 31.4542 41.6598 45.6708 + 981.5 30.7129 41.9699 45.6648 + 981.6 29.9716 42.28 45.6578 + 981.7 29.2303 42.59 45.6678 + 981.8 28.4684 42.8669 45.6668 + 981.9 27.7168 43.1548 45.6728 + 982 26.9549 43.4316 45.6748 + 982.1 26.1827 43.6974 45.6858 + 982.2 25.4002 43.9521 45.6848 + 982.3 24.628 44.1847 45.6888 + 982.4 23.8352 44.4061 45.6888 + 982.5 23.0424 44.6165 45.6908 + 982.6 22.2496 44.8048 45.6858 + 982.7 21.4362 44.993 45.6828 + 982.8 20.6434 45.137 45.6808 + 982.9 19.83 45.2256 45.6588 + 983 19.027 45.3363 45.7038 + 983.1 18.2033 45.4803 45.7098 + 983.2 17.3899 45.6021 45.6748 + 983.3 16.5868 45.6685 45.6738 + 983.4 15.7734 45.7571 45.6708 + 983.5 14.96 45.8457 45.6698 + 983.6 14.157 45.9565 45.6658 + 983.7 13.3436 46.0783 45.6638 + 983.8 12.5302 46.2001 45.6748 + 983.9 11.7168 46.3219 45.6908 + 984 10.8931 46.4326 45.6908 + 984.1 10.0798 46.5434 45.6988 + 984.2 9.25608 46.6652 45.7038 + 984.3 8.4324 46.787 45.7038 + 984.4 7.60872 46.9088 45.7068 + 984.5 6.79534 47.0417 45.7028 + 984.6 5.97166 47.1635 45.7058 + 984.7 5.13769 47.2964 45.7138 + 984.8 4.30372 47.4293 45.7038 + 984.9 3.46974 47.5622 45.7028 + 985 2.62547 47.695 45.7158 + 985.1 1.7915 47.8279 45.7278 + 985.2 0.957525 47.9719 45.7198 + 985.3 0.113256 48.1048 45.7228 + 985.4 -0.731014 48.2266 45.7128 + 985.5 -1.58558 48.282 45.6848 + 985.6 -2.41955 48.3595 45.7108 + 985.7 -3.25353 48.4038 45.7158 + 985.8 -4.0772 48.4038 45.7338 + 985.9 -4.89059 48.3705 45.7368 + 986 -5.70397 48.293 45.7358 + 986.1 -6.54824 48.2598 45.7368 + 986.2 -7.39251 48.2044 45.6878 + 986.3 -8.1853 48.1158 45.6628 + 986.4 -8.98838 48.0383 45.6708 + 986.5 -9.80176 47.983 45.6698 + 986.6 -10.6254 47.9387 45.6848 + 986.7 -11.4594 47.9054 45.6978 + 986.8 -12.2831 47.8722 45.7128 + 986.9 -13.1171 47.839 45.7038 + 987 -13.951 47.8058 45.7178 + 987.1 -14.7747 47.7726 45.7158 + 987.2 -15.6087 47.7393 45.7288 + 987.3 -16.453 47.7061 45.7168 + 987.4 -17.2766 47.684 45.7128 + 987.5 -18.1209 47.6618 45.7258 + 987.6 -18.9549 47.6397 45.7348 + 987.7 -19.7991 47.6286 45.7288 + 987.8 -20.6434 47.6065 45.7378 + 987.9 -21.4774 47.5732 45.7298 + 988 -22.3114 47.5289 45.7298 + 988.1 -23.1556 47.4957 45.7208 + 988.2 -23.9896 47.4182 45.7218 + 988.3 -24.8339 47.3407 45.7168 + 988.4 -25.6679 47.23 45.7078 + 988.5 -26.4915 47.1081 45.7248 + 988.6 -27.3255 46.9753 45.7178 + 988.7 -28.1286 46.787 45.7078 + 988.8 -28.9111 46.5766 45.7098 + 988.9 -29.6936 46.3441 45.7118 + 989 -30.4452 46.0894 45.7048 + 989.1 -31.1865 45.8014 45.7108 + 989.2 -31.8969 45.4914 45.7028 + 989.3 -32.597 45.1702 45.6878 + 989.4 -33.3487 44.8823 45.6658 + 989.5 -34.0797 44.5501 45.5958 + 989.6 -34.7695 44.2068 45.5748 + 989.7 -35.449 43.8635 45.5887 + 989.8 -36.1697 43.5535 45.5927 + 989.9 -36.8905 43.2545 45.6177 + 990 -37.6215 42.9444 45.6387 + 990.1 -38.3422 42.6343 45.6487 + 990.2 -39.0629 42.3132 45.6517 + 990.3 -39.7836 42.0031 45.6567 + 990.4 -40.4941 41.6931 45.6527 + 990.5 -41.2045 41.3941 45.6517 + 990.6 -41.9252 41.084 45.6567 + 990.7 -42.6459 40.785 45.6567 + 990.8 -43.3666 40.486 45.6627 + 990.9 -44.0977 40.187 45.6687 + 991 -44.8287 39.888 45.6597 + 991.1 -45.5494 39.5891 45.6547 + 991.2 -46.2804 39.2901 45.6577 + 991.3 -47.0217 39.0021 45.6497 + 991.4 -47.7424 38.7032 45.6437 + 991.5 -48.4735 38.4152 45.6747 + 991.6 -49.2045 38.1273 45.7267 + 991.7 -49.9458 37.8394 45.7907 + 991.8 -50.6768 37.5404 45.9187 + 991.9 -51.4078 37.2636 46.0627 + 992 -52.1491 36.9867 46.2337 + 992.1 -52.8801 36.7099 46.4687 + 992.2 -53.6112 36.433 46.7377 + 992.3 -54.3422 36.1562 47.0437 + 992.4 -55.0629 35.8794 47.3627 + 992.5 -55.7836 35.6025 47.7337 + 992.6 -56.494 35.3367 48.1057 + 992.7 -57.2045 35.0599 48.4936 + 992.8 -57.9149 34.7831 48.8946 + 992.9 -58.615 34.5173 49.2916 + 993 -59.3049 34.2515 49.7016 + 993.1 -59.9947 33.9858 50.1116 + 993.2 -60.6845 33.7311 50.5096 + 993.3 -61.3641 33.4653 50.9226 + 993.4 -62.0333 33.2106 51.3256 + 993.5 -62.6923 32.9559 51.7216 + 993.6 -63.3615 32.7123 52.1196 + 993.7 -64.0205 32.4687 52.5156 + 993.8 -64.6485 32.2361 52.8996 + 993.9 -65.256 32.0257 53.3136 + 994 -65.7914 31.8375 53.6606 + 994.1 -66.3371 31.6492 54.0476 + 994.2 -66.8416 31.461 54.4156 + 994.3 -67.274 31.3059 54.7816 + 994.4 -67.6756 31.162 55.1536 + 994.5 -68.0154 31.0402 55.5086 + 994.6 -68.3139 30.9294 55.8806 + 994.7 -68.5713 30.8409 56.2456 + 994.8 -68.8185 30.7633 56.6176 + 994.9 -69.0141 30.6858 56.9976 + 995 -69.1891 30.6194 57.3636 + 995.1 -69.3539 30.564 57.7535 + 995.2 -69.5083 30.5087 58.1435 + 995.3 -69.6627 30.4644 58.5115 + 995.4 -69.8172 30.409 58.9045 + 995.5 -69.9613 30.3647 59.2845 + 995.6 -70.1261 30.3093 59.6605 + 995.7 -70.2908 30.265 60.0475 + 995.8 -70.4659 30.2097 60.4035 + 995.9 -70.6512 30.1432 60.7705 + 996 -70.8365 30.0879 61.1185 + 996.1 -71.0321 30.0325 61.4615 + 996.2 -71.2484 29.9661 61.7965 + 996.3 -71.4646 29.8885 62.1195 + 996.4 -71.6911 29.811 62.4365 + 996.5 -71.9382 29.7335 62.7585 + 996.6 -72.1956 29.656 63.0675 + 996.7 -72.4633 29.5563 63.3615 + 996.8 -72.7413 29.4677 63.6665 + 996.9 -73.0296 29.3681 63.9455 + 997 -73.3385 29.2463 64.2415 + 997.1 -73.668 29.1355 64.5205 + 997.2 -73.9871 29.0137 64.7935 + 997.3 -74.3372 28.8919 65.0745 + 997.4 -74.6976 28.759 65.3385 + 997.5 -75.0785 28.6151 65.5885 + 997.6 -75.4698 28.4711 65.8415 + 997.7 -75.861 28.3161 66.0695 + 997.8 -76.2729 28.15 66.2585 + 997.9 -76.6847 27.9728 66.4245 + 998 -77.1069 27.7735 66.5505 + 998.1 -77.529 27.5852 66.6435 + 998.2 -77.9511 27.3638 66.7425 + 998.3 -78.3836 27.1312 66.7995 + 998.4 -78.816 26.8765 66.8205 + 998.5 -79.2484 26.6107 66.8475 + 998.6 -79.6809 26.3228 66.8514 + 998.7 -80.103 26.0128 66.8544 + 998.8 -80.5355 25.7027 66.8494 + 998.9 -80.9679 25.3705 66.8384 + 999 -81.39 25.0272 66.8184 + 999.1 -81.8225 24.6728 66.8104 + 999.2 -82.2549 24.3074 66.8004 + 999.3 -82.6976 23.9309 66.7874 + 999.4 -83.1507 23.5544 66.7834 + 999.5 -83.614 23.1557 66.7834 + 999.6 -84.0876 22.7571 66.7834 + 999.7 -84.5612 22.3473 66.8014 + 999.8 -85.0245 21.9154 66.8044 + 999.9 -85.4364 21.4503 66.8124 + 1000 -85.8688 20.9852 66.8294 + 1000.1 -86.2704 20.498 66.8504 + 1000.2 -86.641 19.9886 66.8654 + 1000.3 -86.9705 19.4571 66.8864 + 1000.4 -87.2897 18.9144 66.9064 + 1000.5 -87.6192 18.3829 66.8954 + 1000.6 -87.9589 17.8513 66.8534 + 1000.7 -88.2472 17.2977 66.8294 + 1000.8 -88.5561 16.755 66.8384 + 1000.9 -88.8856 16.2013 66.8344 + 1001 -89.2459 15.6587 66.8474 + 1001.1 -89.6269 15.094 66.8714 + 1001.2 -89.9976 14.5181 66.8773 + 1001.3 -90.3888 13.9423 66.8903 + 1001.4 -90.7801 13.3554 66.9053 + 1001.5 -91.1713 12.7685 66.9123 + 1001.6 -91.5729 12.1815 66.9203 + 1001.7 -91.9847 11.5946 66.9303 + 1001.8 -92.4069 10.9966 66.9343 + 1001.9 -92.829 10.3987 66.9493 + 1002 -93.282 9.80066 66.9543 + 1002.1 -93.7556 9.22483 66.9393 + 1002.2 -94.2499 8.66006 66.9283 + 1002.3 -94.7338 8.11744 66.9523 + 1002.4 -95.2589 7.60805 66.9593 + 1002.5 -95.8046 7.14295 66.9733 + 1002.6 -96.3708 6.71107 66.9803 + 1002.7 -96.9474 6.31242 66.9913 + 1002.8 -97.5343 5.95805 66.9983 + 1002.9 -98.1212 5.65906 67.0162 + 1003 -98.7184 5.38222 67.0242 + 1003.1 -99.3258 5.16075 67.0272 + 1003.2 -99.923 4.97249 67.0562 + 1003.3 -100.52 4.81746 67.0602 + 1003.4 -101.117 4.7178 67.0712 + 1003.5 -101.725 4.65136 67.0862 + 1003.6 -102.322 4.62922 67.0942 + 1003.7 -102.899 4.65137 67.1302 + 1003.8 -103.465 4.70674 67.1512 + 1003.9 -104.021 4.81749 67.2032 + 1004 -104.556 4.97253 67.2531 + 1004.1 -105.081 5.14971 67.3541 + 1004.2 -105.617 5.33797 67.4781 + 1004.3 -106.142 5.55945 67.6181 + 1004.4 -106.646 5.79201 67.8151 + 1004.5 -107.151 6.02456 68.0341 + 1004.6 -107.635 6.25712 68.3271 + 1004.7 -108.067 6.45645 68.6341 + 1004.8 -108.479 6.64471 68.9911 + 1004.9 -108.839 6.8219 69.3921 + 1005 -109.117 6.96586 69.8201 + 1005.1 -109.364 7.08767 70.2651 + 1005.2 -109.591 7.19841 70.7321 + 1005.3 -109.776 7.27593 71.2151 + 1005.4 -109.931 7.35345 71.714 + 1005.5 -110.065 7.43097 72.233 + 1005.6 -110.199 7.49742 72.75 + 1005.7 -110.322 7.56386 73.277 + 1005.8 -110.446 7.63031 73.799 + 1005.9 -110.549 7.68568 74.324 + 1006 -110.652 7.74105 74.828 + 1006.1 -110.734 7.78534 75.346 + 1006.2 -110.806 7.84071 75.842 + 1006.3 -110.888 7.88501 76.349 + 1006.4 -110.95 7.92931 76.858 + 1006.5 -111.012 7.98468 77.346 + 1006.6 -111.084 8.04005 77.835 + 1006.7 -111.146 8.10649 78.33 + 1006.8 -111.218 8.17294 78.822 + 1006.9 -111.29 8.25046 79.305 + 1007 -111.362 8.35012 79.772 + 1007.1 -111.434 8.44979 80.236 + 1007.2 -111.506 8.5716 80.686 + 1007.3 -111.589 8.70449 81.118 + 1007.4 -111.671 8.84845 81.548 + 1007.5 -111.753 9.01456 81.951 + 1007.6 -111.836 9.19175 82.343 + 1007.7 -111.918 9.39108 82.72 + 1007.8 -111.99 9.60148 83.072 + 1007.9 -112.062 9.82296 83.409 + 1008 -112.124 10.0666 83.741 + 1008.1 -112.186 10.3102 84.051 + 1008.2 -112.248 10.576 84.352 + 1008.3 -112.289 10.8528 84.641 + 1008.4 -112.32 11.1408 84.926 + 1008.5 -112.34 11.4398 85.2 + 1008.6 -112.351 11.7498 85.458 + 1008.7 -112.33 12.0599 85.726 + 1008.8 -112.32 12.37 85.971 + 1008.9 -112.289 12.6911 86.23 + 1009 -112.237 13.0233 86.482 + 1009.1 -112.176 13.3555 86.718 + 1009.2 -112.093 13.6988 86.966 + 1009.3 -112.001 14.0311 87.207 + 1009.4 -111.898 14.3743 87.431 + 1009.5 -111.784 14.7176 87.657 + 1009.6 -111.661 15.0609 87.881 + 1009.7 -111.527 15.4153 88.103 + 1009.8 -111.372 15.7586 88.322 + 1009.9 -111.208 16.1129 88.531 + 1010 -111.043 16.4562 88.741 + 1010.1 -110.858 16.7995 88.945 + 1010.2 -110.662 17.1428 89.146 + 1010.3 -110.456 17.4861 89.335 + 1010.4 -110.23 17.8183 89.526 + 1010.5 -109.993 18.1395 89.714 + 1010.6 -109.756 18.4717 89.893 + 1010.7 -109.499 18.7928 90.075 + 1010.8 -109.231 19.114 90.259 + 1010.9 -108.974 19.4573 90.423 + 1011 -108.726 19.8006 90.563 + 1011.1 -108.459 20.1438 90.681 + 1011.2 -108.191 20.4871 90.773 + 1011.3 -107.934 20.8526 90.8501 + 1011.4 -107.676 21.2291 90.9071 + 1011.5 -107.419 21.6167 90.9341 + 1011.6 -107.172 22.0153 90.9661 + 1011.7 -106.914 22.4251 90.9631 + 1011.8 -106.667 22.8459 90.9761 + 1011.9 -106.42 23.2777 90.9731 + 1012 -106.173 23.7207 90.9711 + 1012.1 -105.936 24.1747 90.9661 + 1012.2 -105.689 24.6398 90.9571 + 1012.3 -105.452 25.1049 90.9581 + 1012.4 -105.205 25.5811 90.9501 + 1012.5 -104.886 26.0351 90.9591 + 1012.6 -104.587 26.4781 90.9611 + 1012.7 -104.268 26.8989 90.9641 + 1012.8 -103.908 27.2865 90.9761 + 1012.9 -103.527 27.6519 90.9951 + 1013 -103.146 27.9952 90.9891 + 1013.1 -102.765 28.3717 90.9881 + 1013.2 -102.384 28.715 90.9661 + 1013.3 -101.993 29.0472 90.9651 + 1013.4 -101.601 29.4127 90.9501 + 1013.5 -101.231 29.7781 90.9571 + 1013.6 -100.87 30.1768 90.9751 + 1013.7 -100.52 30.5865 90.9711 + 1013.8 -100.181 31.0184 90.9731 + 1013.9 -99.8305 31.4503 90.9731 + 1014 -99.5011 31.8821 90.9681 + 1014.1 -99.1613 32.3251 90.9801 + 1014.2 -98.8112 32.757 90.9762 + 1014.3 -98.4611 33.1999 90.9942 + 1014.4 -98.1111 33.6318 90.9952 + 1014.5 -97.761 34.0637 91.0012 + 1014.6 -97.4109 34.5066 90.9952 + 1014.7 -97.0403 34.9385 91.0122 + 1014.8 -96.649 35.3593 91.0102 + 1014.9 -96.2784 35.7912 91.0032 + 1015 -95.918 36.2342 90.9962 + 1015.1 -95.5473 36.666 90.9952 + 1015.2 -95.1664 37.1201 90.9902 + 1015.3 -94.7751 37.563 90.9792 + 1015.4 -94.3324 37.9728 90.9862 + 1015.5 -93.9 38.3825 90.9532 + 1015.6 -93.4675 38.7701 90.9682 + 1015.7 -93.0042 39.1134 90.9652 + 1015.8 -92.5203 39.4124 90.9792 + 1015.9 -92.0158 39.6671 90.9772 + 1016 -91.5216 39.8775 90.9862 + 1016.1 -91.0377 40.0768 90.9932 + 1016.2 -90.5537 40.3315 90.9822 + 1016.3 -90.0595 40.5197 90.9452 + 1016.4 -89.555 40.6858 90.9272 + 1016.5 -89.0402 40.863 90.9292 + 1016.6 -88.5357 41.0624 90.9383 + 1016.7 -88.0312 41.2728 90.9553 + 1016.8 -87.5061 41.4942 90.9753 + 1016.9 -86.981 41.7157 90.9823 + 1017 -86.4559 41.9483 90.9793 + 1017.1 -85.9205 42.1697 90.9733 + 1017.2 -85.3954 42.4023 90.9753 + 1017.3 -84.86 42.6348 90.9693 + 1017.4 -84.3246 42.8785 90.9803 + 1017.5 -83.7892 43.1221 90.9763 + 1017.6 -83.2435 43.3768 90.9813 + 1017.7 -82.6978 43.6315 90.9743 + 1017.8 -82.1521 43.8972 90.9823 + 1017.9 -81.5962 44.163 90.9743 + 1018 -81.0505 44.4399 90.9733 + 1018.1 -80.4842 44.7389 90.9723 + 1018.2 -79.9282 45.0378 90.9643 + 1018.3 -79.3722 45.3368 90.9613 + 1018.4 -78.8059 45.658 90.9613 + 1018.5 -78.2396 45.9791 90.9444 + 1018.6 -77.6631 46.3113 90.9394 + 1018.7 -77.0968 46.6657 90.9454 + 1018.8 -76.5305 47.009 90.9394 + 1018.9 -75.9539 47.3633 90.9434 + 1019 -75.367 47.7177 90.9324 + 1019.1 -74.7802 48.0831 90.9324 + 1019.2 -74.2036 48.4597 90.9294 + 1019.3 -73.6167 48.814 90.9354 + 1019.4 -73.0195 49.1905 90.9304 + 1019.5 -72.4224 49.567 90.9194 + 1019.6 -71.8252 49.9436 90.9164 + 1019.7 -71.2177 50.3201 90.9224 + 1019.8 -70.6102 50.6966 90.9124 + 1019.9 -69.9925 51.0842 90.9184 + 1020 -69.3747 51.4717 90.9164 + 1020.1 -68.757 51.8593 90.9124 + 1020.2 -68.1392 52.258 90.9134 + 1020.3 -67.5111 52.6566 90.9094 + 1020.4 -66.8728 53.0553 90.9144 + 1020.5 -66.2447 53.454 90.9174 + 1020.6 -65.6064 53.8526 90.9204 + 1020.7 -64.9783 54.2734 90.9174 + 1020.8 -64.3502 54.7053 90.9184 + 1020.9 -63.7325 55.1483 90.9174 + 1021 -63.1147 55.5912 90.9224 + 1021.1 -62.4969 56.0452 90.9234 + 1021.2 -61.8895 56.5103 90.8924 + 1021.3 -61.2717 56.9754 90.8795 + 1021.4 -60.6539 57.4405 90.8855 + 1021.5 -60.0568 57.9057 90.8775 + 1021.6 -59.4493 58.3818 90.8665 + 1021.7 -58.8315 58.858 90.8575 + 1021.8 -58.2138 59.3231 90.8575 + 1021.9 -57.596 59.7993 90.8635 + 1022 -56.9783 60.2644 90.8635 + 1022.1 -56.3708 60.7295 90.8565 + 1022.2 -55.753 61.1946 90.8635 + 1022.3 -55.1353 61.6708 90.8645 + 1022.4 -54.5278 62.1359 90.8615 + 1022.5 -53.91 62.601 90.8675 + 1022.6 -53.2923 63.0661 90.8535 + 1022.7 -52.6848 63.5312 90.8625 + 1022.8 -52.0773 63.9852 90.8605 + 1022.9 -51.4596 64.4503 90.8595 + 1023 -50.8418 64.9154 90.8625 + 1023.1 -50.2343 65.3805 90.8625 + 1023.2 -49.6269 65.8345 90.8615 + 1023.3 -49.0194 66.2996 90.8555 + 1023.4 -48.4119 66.7537 90.8625 + 1023.5 -47.7942 67.2077 90.8535 + 1023.6 -47.1867 67.6728 90.8485 + 1023.7 -46.5895 68.1379 90.8485 + 1023.8 -45.9924 68.5809 90.8565 + 1023.9 -45.3952 69.0349 90.8505 + 1024 -44.7877 69.4889 90.8545 + 1024.1 -44.1905 69.943 90.8555 + 1024.2 -43.614 70.3859 90.8535 + 1024.3 -43.0271 70.8289 90.8585 + 1024.4 -42.4505 71.2718 90.8585 + 1024.5 -41.8636 71.7148 90.8505 + 1024.6 -41.2871 72.1467 90.8475 + 1024.7 -40.7105 72.5896 90.8345 + 1024.8 -40.1339 73.0215 90.8325 + 1024.9 -39.5573 73.4644 90.8325 + 1025 -38.9807 73.8963 90.8375 + 1025.1 -38.4042 74.3393 90.8254 + 1025.2 -37.8276 74.7822 90.8234 + 1025.3 -37.251 75.2141 90.8194 + 1025.4 -36.6641 75.6571 90.8194 + 1025.5 -36.0876 76.1 90.8134 + 1025.6 -35.511 76.543 90.8194 + 1025.7 -34.9447 76.9749 90.8164 + 1025.8 -34.3784 77.4067 90.8184 + 1025.9 -33.8018 77.8386 90.8034 + 1026 -33.2356 78.2705 90.8064 + 1026.1 -32.6693 78.7024 90.8064 + 1026.2 -32.103 79.1343 90.7984 + 1026.3 -31.5367 79.5662 90.7884 + 1026.4 -30.9704 79.987 90.7894 + 1026.5 -30.4041 80.4299 90.7874 + 1026.6 -29.8276 80.8618 90.7764 + 1026.7 -29.251 81.2937 90.7764 + 1026.8 -28.6641 81.7366 90.7724 + 1026.9 -28.0875 82.1796 90.7604 + 1027 -27.4904 82.6336 90.7674 + 1027.1 -26.8932 83.0877 90.7574 + 1027.2 -26.296 83.5417 90.7644 + 1027.3 -25.6886 84.0068 90.7504 + 1027.4 -25.0811 84.483 90.7574 + 1027.5 -24.4839 84.9702 90.7524 + 1027.6 -23.8662 85.4575 90.7644 + 1027.7 -23.2587 85.9669 90.7524 + 1027.8 -22.6615 86.4873 90.7454 + 1027.9 -22.0644 87.041 90.7484 + 1028 -21.4672 87.5837 90.7334 + 1028.1 -20.8494 88.1374 90.6884 + 1028.2 -20.2523 88.691 90.6263 + 1028.3 -19.6551 89.2558 90.5283 + 1028.4 -19.0682 89.8317 90.4173 + 1028.5 -18.471 90.4186 90.2953 + 1028.6 -17.8739 91.0055 90.1603 + 1028.7 -17.2664 91.6035 90.0273 + 1028.8 -16.6692 92.2125 89.8623 + 1028.9 -16.0721 92.8327 89.7083 + 1029 -15.4852 93.4639 89.5433 + 1029.1 -14.9086 94.1172 89.3583 + 1029.2 -14.332 94.7706 89.1443 + 1029.3 -13.7761 95.435 88.9213 + 1029.4 -13.2201 96.1216 88.6993 + 1029.5 -12.6538 96.8082 88.4622 + 1029.6 -12.1081 97.5169 88.2192 + 1029.7 -11.5727 98.2367 87.9842 + 1029.8 -11.0579 98.9676 87.7202 + 1029.9 -10.5328 99.7095 87.4542 + 1030 -10.018 100.451 87.2012 + 1030.1 -9.5135 101.205 86.9432 + 1030.2 -9.0193 101.98 86.6702 + 1030.3 -8.52509 102.755 86.4132 + 1030.4 -8.04117 103.53 86.1472 + 1030.5 -7.55726 104.327 85.8871 + 1030.6 -7.08364 105.125 85.6271 + 1030.7 -6.62032 105.922 85.3631 + 1030.8 -6.157 106.73 85.0911 + 1030.9 -5.70398 107.55 84.8491 + 1031 -5.25096 108.358 84.5901 + 1031.1 -4.79793 109.178 84.3371 + 1031.2 -4.34491 110.008 84.092 + 1031.3 -3.91248 110.85 83.859 + 1031.4 -3.49034 111.669 83.609 + 1031.5 -3.05791 112.511 83.364 + 1031.6 -2.62548 113.353 83.117 + 1031.7 -2.21364 114.183 82.882 + 1031.8 -1.7915 115.036 82.642 + 1031.9 -1.37966 115.877 82.4079 + 1032 -0.978118 116.73 82.1629 + 1032.1 -0.566279 117.583 81.9139 + 1032.2 -0.164736 118.435 81.6629 + 1032.3 0.236808 119.288 81.4279 + 1032.4 0.648647 120.13 81.1839 + 1032.5 1.05019 120.982 80.9378 + 1032.6 1.45173 121.835 80.6778 + 1032.7 1.85328 122.688 80.4218 + 1032.8 2.26511 123.54 80.1598 + 1032.9 2.67695 124.393 79.8988 + 1033 3.08879 125.246 79.6338 + 1033.1 3.50063 126.099 79.3947 + 1033.2 3.91247 126.951 79.1587 + 1033.3 4.3346 127.815 78.9067 + 1033.4 4.74644 128.668 78.6667 + 1033.5 5.15828 129.531 78.4387 + 1033.6 5.57012 130.384 78.1997 + 1033.7 5.99225 131.248 77.9566 + 1033.8 6.40409 132.112 77.7116 + 1033.9 6.83652 132.975 77.4526 + 1034 7.25865 133.839 77.2096 + 1034.1 7.67049 134.703 76.9606 + 1034.2 8.09263 135.578 76.6875 + 1034.3 8.52505 136.441 76.4345 + 1034.4 8.94719 137.316 76.1825 + 1034.5 9.36932 138.18 75.9255 + 1034.6 9.79145 139.055 75.6795 + 1034.7 10.2136 139.93 75.4124 + 1034.8 10.6357 140.793 75.1674 + 1034.9 11.0682 141.668 74.8964 + 1035 11.4903 142.543 74.6274 + 1035.1 11.9124 143.418 74.3584 + 1035.2 12.3448 144.293 74.0943 + 1035.3 12.7773 145.179 73.8553 + 1035.4 13.2097 146.065 73.6353 + 1035.5 13.6318 146.939 73.4493 + 1035.6 14.0746 147.814 73.2873 + 1035.7 14.507 148.689 73.1672 + 1035.8 14.9394 149.575 73.0632 + 1035.9 15.3718 150.472 72.9922 + 1036 15.8043 151.358 72.9322 + 1036.1 16.2367 152.244 72.8962 + 1036.2 16.6794 153.13 72.8751 + 1036.3 17.1222 154.027 72.8741 + 1036.4 17.6061 154.902 72.8571 + 1036.5 18.1106 155.754 72.8471 + 1036.6 18.6151 156.585 72.84 + 1036.7 19.1504 157.382 72.87 + 1036.8 19.7373 158.135 72.877 + 1036.9 20.3345 158.844 72.907 + 1037 20.9625 159.508 72.932 + 1037.1 21.6009 160.14 72.9409 + 1037.2 22.2495 160.726 72.9479 + 1037.3 22.9291 161.269 72.9539 + 1037.4 23.5983 161.767 72.9489 + 1037.5 24.2881 162.21 72.9579 + 1037.6 24.9779 162.609 72.9499 + 1037.7 25.6884 162.963 72.9519 + 1037.8 26.3988 163.262 72.9368 + 1037.9 27.1298 163.506 72.9218 + 1038 27.8402 163.694 72.9208 + 1038.1 28.5506 163.827 72.9118 + 1038.2 29.2405 163.905 72.9028 + 1038.3 29.9303 163.927 72.9078 + 1038.4 30.5995 163.894 72.8918 + 1038.5 31.2482 163.805 72.8868 + 1038.6 31.8762 163.683 72.8588 + 1038.7 32.5043 163.506 72.8478 + 1038.8 33.1117 163.296 72.8398 + 1038.9 33.6883 163.052 72.8358 + 1039 34.2752 162.775 72.8488 + 1039.1 34.862 162.509 72.8508 + 1039.2 35.4489 162.188 72.8348 + 1039.3 36.0564 161.867 72.8378 + 1039.4 36.6638 161.524 72.8448 + 1039.5 37.2713 161.181 72.8408 + 1039.6 37.8891 160.848 72.8518 + 1039.7 38.5274 160.516 72.8729 + 1039.8 39.1555 160.162 72.8699 + 1039.9 39.7835 159.785 72.8649 + 1040 40.4219 159.409 72.8539 + 1040.1 41.0602 159.021 72.8719 + 1040.2 41.7088 158.622 72.8629 + 1040.3 42.3472 158.224 72.8759 + 1040.4 42.9958 157.814 72.8849 + 1040.5 43.6445 157.382 72.8769 + 1040.6 44.2828 156.961 72.8879 + 1040.7 44.9315 156.518 72.8919 + 1040.8 45.5801 156.087 72.9009 + 1040.9 46.2185 155.644 72.9029 + 1041 46.8465 155.212 72.9149 + 1041.1 47.4643 154.78 72.9319 + 1041.2 48.082 154.348 72.9429 + 1041.3 48.6895 153.916 72.9419 + 1041.4 49.2867 153.506 72.943 + 1041.5 49.8735 153.097 72.952 + 1041.6 50.4398 152.687 72.954 + 1041.7 51.0061 152.288 72.95 + 1041.8 51.5724 151.89 72.956 + 1041.9 52.1284 151.491 72.937 + 1042 52.6843 151.103 72.931 + 1042.1 53.2403 150.705 72.92 + 1042.2 53.786 150.306 72.936 + 1042.3 54.342 149.907 72.91 + 1042.4 54.898 149.509 72.908 + 1042.5 55.454 149.099 72.898 + 1042.6 56.0099 148.689 72.891 + 1042.7 56.5659 148.291 72.877 + 1042.8 57.1219 147.87 72.879 + 1042.9 57.6779 147.471 72.873 + 1043 58.2339 147.05 72.868 + 1043.1 58.7899 146.641 72.872 + 1043.2 59.3355 146.242 72.875 + 1043.3 59.8812 145.843 72.867 + 1043.4 60.4372 145.434 72.859 + 1043.5 60.9829 145.035 72.8551 + 1043.6 61.5286 144.636 72.8521 + 1043.7 62.0743 144.238 72.8501 + 1043.8 62.62 143.828 72.8451 + 1043.9 63.1759 143.429 72.8361 + 1044 63.7216 143.031 72.8381 + 1044.1 64.2776 142.621 72.8341 + 1044.2 64.8336 142.222 72.8391 + 1044.3 65.3896 141.812 72.8351 + 1044.4 65.9456 141.403 72.8281 + 1044.5 66.5118 140.993 72.8391 + 1044.6 67.0678 140.583 72.8431 + 1044.7 67.6341 140.173 72.8331 + 1044.8 68.2004 139.775 72.8401 + 1044.9 68.7667 139.365 72.8431 + 1045 69.3535 138.966 72.8451 + 1045.1 69.9301 138.568 72.8421 + 1045.2 70.517 138.169 72.8471 + 1045.3 71.1141 137.77 72.8481 + 1045.4 71.7113 137.383 72.8411 + 1045.5 72.3188 136.995 72.8531 + 1045.6 72.9262 136.619 72.8601 + 1045.7 73.5543 136.264 72.8561 + 1045.8 74.1824 135.921 72.8591 + 1045.9 74.8207 135.578 72.8611 + 1046 75.4693 135.235 72.8511 + 1046.1 76.1283 134.924 72.8631 + 1046.2 76.7872 134.625 72.8691 + 1046.3 77.4668 134.349 72.8671 + 1046.4 78.1566 134.072 72.8781 + 1046.5 78.8567 133.806 72.8681 + 1046.6 79.5466 133.551 72.8831 + 1046.7 80.257 133.319 72.8801 + 1046.8 80.9674 133.119 72.8781 + 1046.9 81.6881 132.92 72.8861 + 1047 82.4088 132.754 72.8831 + 1047.1 83.1296 132.621 72.9001 + 1047.2 83.8606 132.51 72.8971 + 1047.3 84.5916 132.433 72.9071 + 1047.4 85.3226 132.389 72.916 + 1047.5 86.0433 132.378 72.912 + 1047.6 86.7743 132.378 72.921 + 1047.7 87.495 132.4 72.919 + 1047.8 88.2158 132.433 72.922 + 1047.9 88.9468 132.455 72.923 + 1048 89.6778 132.477 72.909 + 1048.1 90.4088 132.51 72.919 + 1048.2 91.1295 132.544 72.921 + 1048.3 91.8811 132.577 72.918 + 1048.4 92.6224 132.621 72.9289 + 1048.5 93.374 132.654 72.9159 + 1048.6 94.1359 132.71 72.9169 + 1048.7 94.8978 132.765 72.9159 + 1048.8 95.6597 132.854 72.9209 + 1048.9 96.4319 132.931 72.9249 + 1049 97.2041 133.009 72.9229 + 1049.1 97.9866 133.086 72.9199 + 1049.2 98.7691 133.175 72.9158 + 1049.3 99.5619 133.252 72.9188 + 1049.4 100.344 133.341 72.9328 + 1049.5 101.147 133.396 72.9378 + 1049.6 101.93 133.474 72.9458 + 1049.7 102.712 133.54 72.9588 + 1049.8 103.505 133.585 72.9668 + 1049.9 104.277 133.596 72.9627 + 1050 105.06 133.596 72.9507 + 1050.1 105.801 133.574 72.9577 + 1050.2 106.543 133.518 72.9637 + 1050.3 107.253 133.419 72.9697 + 1050.4 107.963 133.275 72.9737 + 1050.5 108.633 133.097 72.9757 + 1050.6 109.292 132.876 72.9797 + 1050.7 109.93 132.632 72.9727 + 1050.8 110.558 132.389 72.9817 + 1050.9 111.186 132.134 72.9777 + 1051 111.794 131.846 72.9467 + 1051.1 112.391 131.525 72.9436 + 1051.2 112.978 131.215 72.9416 + 1051.3 113.564 130.883 72.9406 + 1051.4 114.141 130.528 72.9326 + 1051.5 114.697 130.141 72.9146 + 1051.6 115.212 129.731 72.9286 + 1051.7 115.706 129.299 72.9416 + 1051.8 116.159 128.834 72.9436 + 1051.9 116.612 128.413 72.9496 + 1052 117.106 127.981 72.9156 + 1052.1 117.559 127.516 72.8746 + 1052.2 118.002 127.04 72.8686 + 1052.3 118.476 126.575 72.8426 + 1052.4 118.97 126.121 72.8486 + 1052.5 119.464 125.678 72.8626 + 1052.6 119.979 125.224 72.8786 + 1052.7 120.483 124.715 72.9006 + 1052.8 120.957 124.172 72.8816 + 1052.9 121.41 123.663 72.8866 + 1053 121.853 123.109 72.8866 + 1053.1 122.254 122.555 72.8976 + 1053.2 122.625 121.968 72.8846 + 1053.3 122.954 121.392 72.8887 + 1053.4 123.315 120.817 72.8917 + 1053.5 123.685 120.219 72.8637 + 1053.6 124.005 119.621 72.8377 + 1053.7 124.313 119.012 72.8347 + 1053.8 124.643 118.403 72.8507 + 1053.9 124.993 117.793 72.8497 + 1054 125.353 117.173 72.8577 + 1054.1 125.714 116.564 72.8587 + 1054.2 126.064 115.933 72.8557 + 1054.3 126.414 115.302 72.8657 + 1054.4 126.774 114.671 72.8617 + 1054.5 127.124 114.028 72.8577 + 1054.6 127.485 113.386 72.8617 + 1054.7 127.855 112.744 72.8677 + 1054.8 128.226 112.09 72.8747 + 1054.9 128.597 111.437 72.8637 + 1055 128.967 110.784 72.8697 + 1055.1 129.348 110.119 72.8687 + 1055.2 129.729 109.466 72.8657 + 1055.3 130.11 108.79 72.8727 + 1055.4 130.501 108.115 72.8607 + 1055.5 130.893 107.451 72.8667 + 1055.6 131.274 106.775 72.8598 + 1055.7 131.665 106.1 72.8638 + 1055.8 132.056 105.424 72.8658 + 1055.9 132.447 104.737 72.8678 + 1056 132.839 104.062 72.8568 + 1056.1 133.23 103.375 72.8488 + 1056.2 133.631 102.7 72.8478 + 1056.3 134.002 102.002 72.8628 + 1056.4 134.373 101.305 72.8458 + 1056.5 134.764 100.618 72.8348 + 1056.6 135.155 99.9425 72.8428 + 1056.7 135.526 99.2448 72.8398 + 1056.8 135.907 98.5471 72.8348 + 1056.9 136.288 97.8495 72.8298 + 1057 136.669 97.1518 72.8408 + 1057.1 137.05 96.4542 72.8348 + 1057.2 137.431 95.7455 72.8238 + 1057.3 137.822 95.0478 72.8298 + 1057.4 138.213 94.3391 72.8248 + 1057.5 138.594 93.6414 72.8268 + 1057.6 138.975 92.9216 72.8178 + 1057.7 139.366 92.2129 72.8208 + 1057.8 139.758 91.4931 72.8278 + 1057.9 140.149 90.7844 72.8158 + 1058 140.53 90.0535 72.8248 + 1058.1 140.931 89.3337 72.8198 + 1058.2 141.323 88.6139 72.8128 + 1058.3 141.714 87.8941 72.8158 + 1058.4 142.105 87.1743 72.8198 + 1058.5 142.507 86.4434 72.8138 + 1058.6 142.898 85.7236 72.8138 + 1058.7 143.289 85.0038 72.8178 + 1058.8 143.681 84.284 72.8268 + 1058.9 144.072 83.5642 72.8218 + 1059 144.473 82.8444 72.8228 + 1059.1 144.865 82.1246 72.8238 + 1059.2 145.256 81.4159 72.8338 + 1059.3 145.637 80.7183 72.8258 + 1059.4 146.028 80.0095 72.8278 + 1059.5 146.419 79.3119 72.8238 + 1059.6 146.8 78.6142 72.8318 + 1059.7 147.181 77.9277 72.8328 + 1059.8 147.562 77.2411 72.8298 + 1059.9 147.943 76.5545 72.8258 + 1060 148.314 75.8679 72.8198 + 1060.1 148.695 75.1814 72.8188 + 1060.2 149.065 74.4948 72.8238 + 1060.3 149.446 73.8082 72.8198 + 1060.4 149.827 73.1327 72.8198 + 1060.5 150.198 72.435 72.8158 + 1060.6 150.579 71.7595 72.8078 + 1060.7 150.939 71.0619 72.8138 + 1060.8 151.31 70.3753 72.8038 + 1060.9 151.67 69.6777 72.8088 + 1061 152.031 68.9911 72.8178 + 1061.1 152.381 68.2934 72.7968 + 1061.2 152.731 67.5958 72.8058 + 1061.3 153.071 66.8981 72.8098 + 1061.4 153.4 66.1894 72.8098 + 1061.5 153.73 65.4917 72.7918 + 1061.6 154.059 64.783 72.8058 + 1061.7 154.389 64.0854 72.7958 + 1061.8 154.708 63.3766 72.7898 + 1061.9 155.037 62.6679 72.8058 + 1062 155.356 61.9592 72.8028 + 1062.1 155.676 61.2505 72.8088 + 1062.2 155.984 60.5307 72.8088 + 1062.3 156.262 59.8109 72.8058 + 1062.4 156.52 59.0911 72.7978 + 1062.5 156.746 58.3602 72.7948 + 1062.6 156.921 57.6404 72.7938 + 1062.7 157.066 56.9206 72.7968 + 1062.8 157.158 56.1897 72.8068 + 1062.9 157.22 55.4699 72.8008 + 1063 157.241 54.7501 72.7858 + 1063.1 157.23 54.0414 72.7898 + 1063.2 157.179 53.3548 72.7818 + 1063.3 157.086 52.6571 72.7878 + 1063.4 156.973 51.9927 72.7829 + 1063.5 156.819 51.3283 72.7889 + 1063.6 156.633 50.6971 72.7879 + 1063.7 156.407 50.0769 72.7859 + 1063.8 156.149 49.4789 72.7979 + 1063.9 155.871 48.892 72.8039 + 1064 155.562 48.3494 72.8139 + 1064.1 155.264 47.7957 72.8189 + 1064.2 154.986 47.2088 72.7849 + 1064.3 154.667 46.6551 72.779 + 1064.4 154.348 46.1014 72.765 + 1064.5 154.039 45.5366 72.771 + 1064.6 153.73 44.9497 72.779 + 1064.7 153.442 44.3517 72.78 + 1064.8 153.153 43.7426 72.779 + 1064.9 152.865 43.1225 72.789 + 1065 152.566 42.5134 72.794 + 1065.1 152.278 41.8933 72.785 + 1065.2 151.98 41.2621 72.7981 + 1065.3 151.691 40.6198 72.7991 + 1065.4 151.393 39.9775 72.8011 + 1065.5 151.094 39.3352 72.7941 + 1065.6 150.806 38.6708 72.8011 + 1065.7 150.497 37.9952 72.7931 + 1065.8 150.198 37.3308 72.7981 + 1065.9 149.889 36.6442 72.8021 + 1066 149.581 35.9466 72.8091 + 1066.1 149.282 35.2489 72.7992 + 1066.2 148.963 34.5291 72.8002 + 1066.3 148.654 33.8204 72.8102 + 1066.4 148.335 33.0895 72.8092 + 1066.5 148.016 32.3475 72.8092 + 1066.6 147.707 31.6167 72.8212 + 1066.7 147.388 30.8747 72.8302 + 1066.8 147.068 30.1328 72.8212 + 1066.9 146.739 29.3797 72.8392 + 1067 146.42 28.6156 72.8303 + 1067.1 146.09 27.8515 72.8383 + 1067.2 145.761 27.0874 72.8443 + 1067.3 145.431 26.3122 72.8473 + 1067.4 145.092 25.526 72.8463 + 1067.5 144.762 24.7397 72.8443 + 1067.6 144.422 23.9535 72.8443 + 1067.7 144.093 23.1451 72.8483 + 1067.8 143.753 22.3478 72.8343 + 1067.9 143.383 21.5505 72.8244 + 1068 142.981 20.7642 72.8184 + 1068.1 142.579 20.0001 72.8034 + 1068.2 142.157 19.2581 72.8144 + 1068.3 141.704 18.5383 72.8154 + 1068.4 141.22 17.8518 72.8134 + 1068.5 140.706 17.2095 72.8344 + 1068.6 140.17 16.5893 72.8404 + 1068.7 139.625 16.0024 72.8335 + 1068.8 139.058 15.4598 72.8325 + 1068.9 138.461 14.9504 72.8395 + 1069 137.864 14.4853 72.8445 + 1069.1 137.246 14.0534 72.8435 + 1069.2 136.618 13.6658 72.8385 + 1069.3 135.969 13.3003 72.8475 + 1069.4 135.321 12.9681 72.8536 + 1069.5 134.682 12.6248 72.8476 + 1069.6 134.013 12.3037 72.8496 + 1069.7 133.354 11.9936 72.8446 + 1069.8 132.675 11.7057 72.8496 + 1069.9 131.985 11.4177 72.8516 + 1070 131.295 11.1187 72.8516 + 1070.1 130.605 10.8197 72.8487 + 1070.2 129.915 10.5318 72.8337 + 1070.3 129.215 10.2217 72.8327 + 1070.4 128.505 9.93381 72.8427 + 1070.5 127.805 9.66803 72.8017 + 1070.6 127.105 9.38011 72.7507 + 1070.7 126.415 9.10325 72.6687 + 1070.8 125.746 8.8264 72.5768 + 1070.9 125.087 8.56062 72.4198 + 1071 124.417 8.2727 72.2108 + 1071.1 123.789 8.00692 71.9628 + 1071.2 123.213 7.76329 71.6958 + 1071.3 122.636 7.50858 71.3818 + 1071.4 122.049 7.26495 71.0808 + 1071.5 121.504 7.02132 70.7258 + 1071.6 120.989 6.79984 70.3458 + 1071.7 120.515 6.57836 69.9779 + 1071.8 120.052 6.36795 69.5929 + 1071.9 119.609 6.16862 69.2069 + 1072 119.197 5.95821 68.8119 + 1072.1 118.796 5.78102 68.4189 + 1072.2 118.404 5.60384 68.0169 + 1072.3 118.013 5.43773 67.6249 + 1072.4 117.642 5.26054 67.2299 + 1072.5 117.272 5.08336 66.8349 + 1072.6 116.911 4.90617 66.4719 + 1072.7 116.572 4.75113 66.1119 + 1072.8 116.242 4.5961 65.7529 + 1072.9 115.913 4.42998 65.4229 + 1073 115.604 4.28602 65.089 + 1073.1 115.295 4.13099 64.751 + 1073.2 114.996 3.9981 64.448 + 1073.3 114.687 3.84306 64.13 + 1073.4 114.399 3.72124 63.816 + 1073.5 114.131 3.6105 63.534 + 1073.6 113.905 3.52191 63.253 + 1073.7 113.689 3.43332 62.95 + 1073.8 113.493 3.33365 62.67 + 1073.9 113.318 3.25613 62.41 + 1074 113.143 3.16754 62.135 + 1074.1 112.989 3.1011 61.877 + 1074.2 112.865 3.03465 61.679 + 1074.3 112.731 2.97928 61.547 + 1074.4 112.597 2.91284 61.439 + 1074.5 112.443 2.85747 61.341 + 1074.6 112.288 2.8021 61.254 + 1074.7 112.144 2.73565 61.206 + 1074.8 111.98 2.65813 61.165 + 1074.9 111.815 2.59169 61.149 + 1075 111.629 2.52524 61.149 + 1075.1 111.444 2.44773 61.204 + 1075.2 111.228 2.35913 61.249 + 1075.3 110.991 2.27054 61.276 + 1075.4 110.734 2.17087 61.312 + 1075.5 110.456 2.06013 61.35 + 1075.6 110.157 1.92725 61.396 + 1075.7 109.848 1.80543 61.4141 + 1075.8 109.509 1.67254 61.4241 + 1075.9 109.148 1.51751 61.4471 + 1076 108.767 1.37354 61.4481 + 1076.1 108.376 1.20743 61.4421 + 1076.2 107.964 1.04132 61.4481 + 1076.3 107.532 0.853062 61.4491 + 1076.4 107.079 0.675877 61.4491 + 1076.5 106.615 0.487618 61.4471 + 1076.6 106.121 0.288285 61.4551 + 1076.7 105.627 0.0778777 61.4361 + 1076.8 105.112 -0.121455 61.4411 + 1076.9 104.577 -0.342936 61.4491 + 1077 104.031 -0.564418 61.4372 + 1077.1 103.465 -0.785899 61.4312 + 1077.2 102.898 -1.01845 61.4282 + 1077.3 102.301 -1.26208 61.4352 + 1077.4 101.714 -1.50571 61.4252 + 1077.5 101.097 -1.74934 61.4202 + 1077.6 100.469 -2.01512 61.4202 + 1077.7 99.8406 -2.26982 61.4262 + 1077.8 99.1919 -2.54667 61.4112 + 1077.9 98.533 -2.81245 61.4012 + 1078 97.874 -3.0893 61.4012 + 1078.1 97.1945 -3.37722 61.4013 + 1078.2 96.5047 -3.65408 61.3963 + 1078.3 95.8148 -3.95307 61.4023 + 1078.4 95.1044 -4.241 61.3953 + 1078.5 94.394 -4.55107 61.3943 + 1078.6 93.6733 -4.85007 61.3853 + 1078.7 92.9526 -5.14907 61.3893 + 1078.8 92.2215 -5.47022 61.3933 + 1078.9 91.4802 -5.78029 61.3873 + 1079 90.7389 -6.09036 61.3884 + 1079.1 89.9873 -6.42258 61.3804 + 1079.2 89.2254 -6.74373 61.3804 + 1079.3 88.4532 -7.06488 61.3774 + 1079.4 87.6707 -7.40817 61.3734 + 1079.5 86.8882 -7.74039 61.3734 + 1079.6 86.0954 -8.08369 61.3714 + 1079.7 85.2923 -8.41591 61.3724 + 1079.8 84.4892 -8.7592 61.3724 + 1079.9 83.6862 -9.11357 61.3724 + 1080 82.8625 -9.46794 61.3685 + 1080.1 82.0388 -9.81123 61.3735 + 1080.2 81.2254 -10.1767 61.3845 + 1080.3 80.3914 -10.52 61.3835 + 1080.4 79.5575 -10.8854 61.3795 + 1080.5 78.7235 -11.2509 61.3805 + 1080.6 77.8895 -11.6052 61.3975 + 1080.7 77.0555 -11.9707 61.3935 + 1080.8 76.2112 -12.325 61.3915 + 1080.9 75.367 -12.6905 61.4055 + 1081 74.5227 -13.0559 61.4086 + 1081.1 73.6784 -13.4214 61.4006 + 1081.2 72.8239 -13.7868 61.4106 + 1081.3 71.9796 -14.1633 61.4126 + 1081.4 71.125 -14.5288 61.4136 + 1081.5 70.2602 -14.8942 61.4146 + 1081.6 69.4159 -15.2596 61.4126 + 1081.7 68.5407 -15.6362 61.4096 + 1081.8 67.6861 -16.0127 61.4066 + 1081.9 66.811 -16.3781 61.4056 + 1082 65.9358 -16.7546 61.4226 + 1082.1 65.0607 -17.1311 61.4206 + 1082.2 64.1958 -17.5077 61.4367 + 1082.3 63.3206 -17.8731 61.4417 + 1082.4 62.4558 -18.2496 61.4407 + 1082.5 61.5909 -18.6151 61.4327 + 1082.6 60.7157 -18.9805 61.4397 + 1082.7 59.8612 -19.357 61.4297 + 1082.8 59.0066 -19.7114 61.4387 + 1082.9 58.152 -20.0879 61.4397 + 1083 57.2975 -20.4423 61.4377 + 1083.1 56.4429 -20.8077 61.4537 + 1083.2 55.5883 -21.1731 61.4417 + 1083.3 54.744 -21.5386 61.4467 + 1083.4 53.8998 -21.904 61.4407 + 1083.5 53.0555 -22.2584 61.4367 + 1083.6 52.2112 -22.6238 61.4367 + 1083.7 51.3772 -22.9782 61.4308 + 1083.8 50.5433 -23.3326 61.4408 + 1083.9 49.7299 -23.6869 61.4578 + 1084 48.9165 -24.0413 61.4628 + 1084.1 48.1134 -24.3846 61.4638 + 1084.2 47.3309 -24.7168 61.4688 + 1084.3 46.5587 -25.0379 61.4968 + 1084.4 45.8792 -25.3259 61.4968 + 1084.5 45.2202 -25.6027 61.4718 + 1084.6 44.5819 -25.8796 61.4858 + 1084.7 44.0053 -26.1232 61.4808 + 1084.8 43.4802 -26.3447 61.4878 + 1084.9 43.0169 -26.544 61.4968 + 1085 42.605 -26.7212 61.4958 + 1085.1 42.2344 -26.8984 61.4958 + 1085.2 41.9049 -27.0313 61.4908 + 1085.3 41.6063 -27.1641 61.4938 + 1085.4 41.3489 -27.286 61.4888 + 1085.5 41.1121 -27.3856 61.4858 + 1085.6 40.9062 -27.4853 61.4778 + 1085.7 40.7312 -27.5739 61.4648 + 1085.8 40.5664 -27.6403 61.4638 + 1085.9 40.4223 -27.7068 61.4608 + 1086 40.2884 -27.7621 61.4678 + 1086.1 40.1752 -27.8064 61.4668 + 1086.2 40.0722 -27.8397 61.4708 + 1086.3 39.9898 -27.8729 61.4698 + 1086.4 39.9075 -27.895 61.4758 + 1086.5 39.8354 -27.9061 61.4768 + 1086.6 39.7736 -27.9172 61.4638 + 1086.7 39.7221 -27.895 61.4388 + 1086.8 39.681 -27.9061 61.4428 + 1086.9 39.6295 -27.895 61.4438 + 1087 39.578 -27.8618 61.4338 + 1087.1 39.5265 -27.8175 61.4188 + 1087.2 39.4647 -27.7621 61.4048 + 1087.3 39.403 -27.6846 61.4148 + 1087.4 39.3206 -27.585 61.4018 + 1087.5 39.2382 -27.4631 61.4218 + 1087.6 39.1456 -27.3192 61.4208 + 1087.7 39.0323 -27.1531 61.4258 + 1087.8 38.919 -26.9648 61.4348 + 1087.9 38.7955 -26.7655 61.4318 + 1088 38.6616 -26.544 61.4178 + 1088.1 38.5072 -26.3004 61.4278 + 1088.2 38.3631 -26.0568 61.4318 + 1088.3 38.2086 -25.791 61.4398 + 1088.4 38.0439 -25.5031 61.4398 + 1088.5 37.8688 -25.2041 61.4358 + 1088.6 37.6835 -24.894 61.4338 + 1088.7 37.4982 -24.5729 61.4398 + 1088.8 37.3026 -24.2407 61.4308 + 1088.9 37.0966 -23.8863 61.4378 + 1089 36.8907 -23.5209 61.4328 + 1089.1 36.6642 -23.1443 61.4409 + 1089.2 36.4377 -22.7568 61.4429 + 1089.3 36.2112 -22.3581 61.4489 + 1089.4 35.9744 -21.9484 61.4529 + 1089.5 35.7273 -21.5276 61.4469 + 1089.6 35.4699 -21.0957 61.4519 + 1089.7 35.2125 -20.6638 61.4549 + 1089.8 34.9551 -20.2098 61.4549 + 1089.9 34.6874 -19.7557 61.4589 + 1090 34.4197 -19.2906 61.4639 + 1090.1 34.1417 -18.8255 61.4579 + 1090.2 33.8637 -18.3383 61.4619 + 1090.3 33.5651 -17.851 61.4639 + 1090.4 33.2768 -17.3527 61.4619 + 1090.5 32.9885 -16.8544 61.4639 + 1090.6 32.6899 -16.345 61.4679 + 1090.7 32.381 -15.8356 61.4679 + 1090.8 32.0722 -15.3151 61.4689 + 1090.9 31.7633 -14.7836 61.4769 + 1091 31.4544 -14.252 61.4809 + 1091.1 31.1352 -13.7205 61.4779 + 1091.2 30.8057 -13.1779 61.4789 + 1091.3 30.4866 -12.6242 61.4809 + 1091.4 30.1571 -12.0816 61.4769 + 1091.5 29.8276 -11.5168 61.4839 + 1091.6 29.4981 -10.9631 61.4789 + 1091.7 29.1584 -10.3983 61.4849 + 1091.8 28.8186 -9.83357 61.4899 + 1091.9 28.4788 -9.25773 61.4869 + 1092 28.1391 -8.69296 61.4939 + 1092.1 27.789 -8.11712 61.5019 + 1092.2 27.4389 -7.53021 61.5019 + 1092.3 27.0889 -6.95437 61.5019 + 1092.4 26.7388 -6.36745 61.5009 + 1092.5 26.3784 -5.78054 61.5129 + 1092.6 26.0284 -5.19362 61.5129 + 1092.7 25.668 -4.59563 61.5159 + 1092.8 25.3076 -3.99765 61.5209 + 1092.9 24.9473 -3.39966 61.523 + 1093 24.5869 -2.7906 61.52 + 1093.1 24.2163 -2.19261 61.52 + 1093.2 23.8559 -1.58355 61.512 + 1093.3 23.4852 -0.974483 61.526 + 1093.4 23.1146 -0.354347 61.525 + 1093.5 22.7439 0.254716 61.527 + 1093.6 22.363 0.885926 61.521 + 1093.7 21.9923 1.50606 61.519 + 1093.8 21.6114 2.1262 61.523 + 1093.9 21.2304 2.75741 61.525 + 1094 20.8597 3.38862 61.518 + 1094.1 20.4685 4.01983 61.516 + 1094.2 20.0875 4.65104 61.512 + 1094.3 19.7066 5.28225 61.514 + 1094.4 19.3153 5.92453 61.505 + 1094.5 18.9344 6.55574 61.511 + 1094.6 18.5431 7.19803 61.513 + 1094.7 18.1519 7.84031 61.51 + 1094.8 17.7606 8.48259 61.503 + 1094.9 17.3797 9.12488 61.503 + 1095 16.9884 9.75609 61.49 + 1095.1 16.5972 10.4094 61.506 + 1095.2 16.2059 11.0407 61.501 + 1095.3 15.825 11.6829 61.49 + 1095.4 15.4337 12.3363 61.487 + 1095.5 15.0528 12.9786 61.494 + 1095.6 14.6615 13.6098 61.493 + 1095.7 14.2703 14.2632 61.488 + 1095.8 13.879 14.9054 61.481 + 1095.9 13.4775 15.5588 61.478 + 1096 13.0862 16.2011 61.479 + 1096.1 12.695 16.8544 61.486 + 1096.2 12.3037 17.4967 61.484 + 1096.3 11.9022 18.1612 61.485 + 1096.4 11.5109 18.8145 61.485 + 1096.5 11.1094 19.4679 61.482 + 1096.6 10.7181 20.1212 61.481 + 1096.7 10.3166 20.7746 61.477 + 1096.8 9.91506 21.4501 61.467 + 1096.9 9.52381 22.1034 61.472 + 1097 9.12227 22.7679 61.472 + 1097.1 8.72072 23.4323 61.469 + 1097.2 8.31918 24.0967 61.4619 + 1097.3 7.90734 24.7722 61.4549 + 1097.4 7.50579 25.4367 61.4649 + 1097.5 7.09395 26.1122 61.4549 + 1097.6 6.68211 26.7877 61.4589 + 1097.7 6.27027 27.4632 61.4649 + 1097.8 5.84813 28.1498 61.4679 + 1097.9 5.44659 28.8253 61.4589 + 1098 5.02445 29.5119 61.4609 + 1098.1 4.61261 30.1984 61.4549 + 1098.2 4.20077 30.8961 61.4519 + 1098.3 3.77863 31.5827 61.4589 + 1098.4 3.3565 32.2803 61.4569 + 1098.5 2.93436 32.978 61.4609 + 1098.6 2.50193 33.6867 61.4529 + 1098.7 2.07979 34.3954 61.4619 + 1098.8 1.65766 35.1042 61.4689 + 1098.9 1.22522 35.8129 61.4689 + 1099 0.792792 36.5327 61.4789 + 1099.1 0.350064 37.2525 61.4759 + 1099.2 -0.082368 37.9723 61.4679 + 1099.3 -0.5148 38.7032 61.4759 + 1099.4 -0.947232 39.423 61.4759 + 1099.5 -1.38996 40.1539 61.4869 + 1099.6 -1.83269 40.8847 61.4879 + 1099.7 -2.28571 41.6156 61.4919 + 1099.8 -2.71814 42.3465 61.4879 + 1099.9 -3.17117 43.0884 61.4929 + 1100 -3.6139 43.8304 61.4988 + 1100.1 -4.06692 44.5613 61.5058 + 1100.2 -4.51994 45.3143 61.5088 + 1100.3 -4.96267 46.0673 61.5058 + 1100.4 -5.42599 46.8203 61.5078 + 1100.5 -5.88931 47.5844 61.5158 + 1100.6 -6.34233 48.3374 61.5018 + 1100.7 -6.80565 49.1015 61.5278 + 1100.8 -7.26897 49.8767 61.5198 + 1100.9 -7.73229 50.6408 61.5188 + 1101 -8.19561 51.416 61.5228 + 1101.1 -8.65893 52.2022 61.5218 + 1101.2 -9.14284 52.9885 61.5238 + 1101.3 -9.61646 53.7747 61.5238 + 1101.4 -10.0901 54.561 61.5168 + 1101.5 -10.5534 55.3472 61.5267 + 1101.6 -11.0373 56.1445 61.5257 + 1101.7 -11.5109 56.9418 61.5197 + 1101.8 -11.9845 57.7392 61.5297 + 1101.9 -12.4684 58.5254 61.5217 + 1102 -12.9421 59.3227 61.5207 + 1102.1 -13.426 60.12 61.5197 + 1102.2 -13.9099 60.9174 61.5137 + 1102.3 -14.3835 61.7258 61.5107 + 1102.4 -14.8674 62.512 61.5067 + 1102.5 -15.3513 63.3204 61.5057 + 1102.6 -15.8352 64.1177 61.5067 + 1102.7 -16.3191 64.9261 61.5056 + 1102.8 -16.803 65.7234 61.5106 + 1102.9 -17.287 66.5318 61.5006 + 1103 -17.7709 67.3402 61.5146 + 1103.1 -18.2651 68.1486 61.5096 + 1103.2 -18.749 68.957 61.5096 + 1103.3 -19.2329 69.7654 61.5046 + 1103.4 -19.7168 70.5738 61.5086 + 1103.5 -20.211 71.3822 61.5076 + 1103.6 -20.6949 72.1906 61.5156 + 1103.7 -21.1788 72.999 61.5115 + 1103.8 -21.6627 73.8184 61.5065 + 1103.9 -22.1569 74.6268 61.5045 + 1104 -22.6511 75.4463 61.5045 + 1104.1 -23.1351 76.2658 61.5075 + 1104.2 -23.6293 77.0852 61.4935 + 1104.3 -24.1235 77.9047 61.4955 + 1104.4 -24.6177 78.7242 61.5005 + 1104.5 -25.1119 79.5547 61.4985 + 1104.6 -25.6061 80.3852 61.4874 + 1104.7 -26.1003 81.2047 61.4824 + 1104.8 -26.6048 82.0353 61.4884 + 1104.9 -27.0887 82.8547 61.4854 + 1105 -27.5726 83.6853 61.4914 + 1105.1 -28.0771 84.5047 61.4934 + 1105.2 -28.561 85.3131 61.4954 + 1105.3 -29.0449 86.1215 61.5033 + 1105.4 -29.5185 86.9299 61.4993 + 1105.5 -29.9819 87.7272 61.5113 + 1105.6 -30.4658 88.5246 61.5063 + 1105.7 -30.9291 89.2997 61.5093 + 1105.8 -31.3821 90.086 61.4973 + 1105.9 -31.8248 90.8833 61.5033 + 1106 -32.2367 91.6806 61.5023 + 1106.1 -32.6279 92.4779 61.4832 + 1106.2 -32.9986 93.2863 61.4982 + 1106.3 -33.328 94.0947 61.4842 + 1106.4 -33.6163 94.9031 61.4832 + 1106.5 -33.8531 95.7226 61.4722 + 1106.6 -34.059 96.5531 61.4882 + 1106.7 -34.2135 97.3615 61.4842 + 1106.8 -34.3267 98.1699 61.4841 + 1106.9 -34.3885 98.9783 61.4921 + 1107 -34.4194 99.7756 61.4891 + 1107.1 -34.3988 100.562 61.4961 + 1107.2 -34.337 101.326 61.4901 + 1107.3 -34.2238 102.09 61.5001 + 1107.4 -34.0899 102.832 61.5111 + 1107.5 -33.8943 103.552 61.5161 + 1107.6 -33.6678 104.249 61.5261 + 1107.7 -33.4104 104.925 61.527 + 1107.8 -33.1118 105.567 61.543 + 1107.9 -32.772 106.176 61.542 + 1108 -32.4014 106.752 61.553 + 1108.1 -31.9998 107.284 61.555 + 1108.2 -31.5674 107.793 61.556 + 1108.3 -31.1144 108.258 61.568 + 1108.4 -30.6408 108.679 61.574 + 1108.5 -30.1363 109.067 61.574 + 1108.6 -29.6318 109.421 61.574 + 1108.7 -29.0964 109.72 61.589 + 1108.8 -28.561 109.975 61.591 + 1108.9 -28.005 110.185 61.585 + 1109 -27.449 110.34 61.598 + 1109.1 -26.893 110.462 61.597 + 1109.2 -26.3473 110.55 61.596 + 1109.3 -25.812 110.65 61.619 + 1109.4 -25.2663 110.772 61.581 + 1109.5 -24.7103 110.838 61.585 + 1109.6 -24.144 110.916 61.56 + 1109.7 -23.5777 110.993 61.547 + 1109.8 -23.0012 111.104 61.554 + 1109.9 -22.4246 111.226 61.583 + 1110 -21.8377 111.348 61.598 + 1110.1 -21.2508 111.47 61.605 + 1110.2 -20.6434 111.602 61.592 + 1110.3 -20.0462 111.735 61.593 + 1110.4 -19.4388 111.868 61.603 + 1110.5 -18.821 112.012 61.607 + 1110.6 -18.2135 112.156 61.619 + 1110.7 -17.5958 112.322 61.614 + 1110.8 -16.9677 112.477 61.624 + 1110.9 -16.3397 112.621 61.626 + 1111 -15.7013 112.787 61.625 + 1111.1 -15.0527 112.953 61.645 + 1111.2 -14.404 113.131 61.635 + 1111.3 -13.7554 113.297 61.649 + 1111.4 -13.1067 113.474 61.639 + 1111.5 -12.4375 113.651 61.631 + 1111.6 -11.7786 113.839 61.638 + 1111.7 -11.1093 114.028 61.637 + 1111.8 -10.4298 114.205 61.637 + 1111.9 -9.73997 114.371 61.638 + 1112 -9.03984 114.515 61.628 + 1112.1 -8.33972 114.615 61.627 + 1112.2 -7.64989 114.703 61.632 + 1112.3 -6.97036 114.747 61.657 + 1112.4 -6.27023 114.747 61.667 + 1112.5 -5.601 114.703 61.679 + 1112.6 -4.94206 114.615 61.688 + 1112.7 -4.30371 114.482 61.686 + 1112.8 -3.68595 114.327 61.685 + 1112.9 -3.08879 114.138 61.712 + 1113 -2.46073 114.006 61.697 + 1113.1 -1.85327 113.817 61.67 + 1113.2 -1.25611 113.596 61.666 + 1113.3 -0.648645 113.385 61.654 + 1113.4 -0.0308879 113.175 61.662 + 1113.5 0.586869 112.987 61.667 + 1113.6 1.22522 112.798 61.669 + 1113.7 1.86357 112.588 61.665 + 1113.8 2.50192 112.4 61.667 + 1113.9 3.14027 112.2 61.664 + 1114 3.78891 112.012 61.668 + 1114.1 4.44785 111.824 61.666 + 1114.2 5.10679 111.647 61.67 + 1114.3 5.78633 111.47 61.667 + 1114.4 6.46586 111.292 61.677 + 1114.5 7.14539 111.104 61.674 + 1114.6 7.84552 110.938 61.687 + 1114.7 8.53535 110.75 61.686 + 1114.8 9.23547 110.573 61.69 + 1114.9 9.94589 110.395 61.694 + 1115 10.6666 110.229 61.702 + 1115.1 11.3873 110.085 61.697 + 1115.2 12.108 109.975 61.689 + 1115.3 12.8494 109.831 61.719 + 1115.4 13.601 109.653 61.706 + 1115.5 14.3526 109.51 61.677 + 1115.6 15.0939 109.377 61.7 + 1115.7 15.8249 109.211 61.7 + 1115.8 16.5662 109 61.716 + 1115.9 17.2869 108.779 61.717 + 1116 17.9973 108.524 61.73 + 1116.1 18.6975 108.247 61.73 + 1116.2 19.3873 107.948 61.7321 + 1116.3 20.0565 107.627 61.7311 + 1116.4 20.7052 107.284 61.7341 + 1116.5 21.3332 106.896 61.7291 + 1116.6 21.9201 106.486 61.7371 + 1116.7 22.507 106.066 61.7391 + 1116.8 23.0732 105.645 61.7431 + 1116.9 23.6292 105.18 61.7291 + 1117 24.1646 104.715 61.7271 + 1117.1 24.7 104.261 61.7221 + 1117.2 25.256 103.795 61.6981 + 1117.3 25.7914 103.308 61.6801 + 1117.4 26.3371 102.821 61.6761 + 1117.5 26.9033 102.345 61.6811 + 1117.6 27.4799 101.869 61.6791 + 1117.7 28.0565 101.381 61.6851 + 1117.8 28.6537 100.905 61.6811 + 1117.9 29.2405 100.418 61.6761 + 1118 29.8377 99.9196 61.6741 + 1118.1 30.4452 99.4212 61.6721 + 1118.2 31.0526 98.9229 61.6732 + 1118.3 31.6704 98.4246 61.6652 + 1118.4 32.2984 97.9152 61.6662 + 1118.5 32.9368 97.4058 61.6562 + 1118.6 33.5854 96.8853 61.6412 + 1118.7 34.2444 96.3538 61.6402 + 1118.8 34.9136 95.8222 61.6352 + 1118.9 35.6034 95.2796 61.6312 + 1119 36.3036 94.7259 61.6342 + 1119.1 37.0037 94.1612 61.6342 + 1119.2 37.7141 93.5964 61.6352 + 1119.3 38.4348 93.0206 61.6482 + 1119.4 39.1761 92.4336 61.6342 + 1119.5 39.9175 91.8467 61.6472 + 1119.6 40.6588 91.2598 61.6482 + 1119.7 41.4207 90.6618 61.6462 + 1119.8 42.1826 90.0528 61.6482 + 1119.9 42.9548 89.4437 61.6552 + 1120 43.727 88.8347 61.6592 + 1120.1 44.4992 88.2145 61.6612 + 1120.2 45.2817 87.5944 61.6632 + 1120.3 46.0642 86.9742 61.6762 + 1120.4 46.8467 86.3541 61.6732 + 1120.5 47.6292 85.734 61.6802 + 1120.6 48.4219 85.1138 61.6842 + 1120.7 49.2044 84.4937 61.6732 + 1120.8 49.9869 83.8736 61.6902 + 1120.9 50.7694 83.2534 61.6823 + 1121 51.5622 82.6333 61.6873 + 1121.1 52.3447 82.0242 61.6933 + 1121.2 53.1169 81.4152 61.6993 + 1121.3 53.8994 80.7951 61.7113 + 1121.4 54.6613 80.186 61.7183 + 1121.5 55.4335 79.588 61.7093 + 1121.6 56.1851 78.99 61.7253 + 1121.7 56.947 78.4031 61.7223 + 1121.8 57.6883 77.8273 61.7253 + 1121.9 58.4194 77.2404 61.7133 + 1122 59.1607 76.6645 61.7163 + 1122.1 59.8917 76.0998 61.7053 + 1122.2 60.6124 75.535 61.7043 + 1122.3 61.3331 74.9702 61.6993 + 1122.4 62.0436 74.4055 61.7043 + 1122.5 62.7643 73.8407 61.6993 + 1122.6 63.4747 73.287 61.6993 + 1122.7 64.1851 72.7333 61.6853 + 1122.8 64.8956 72.1686 61.6883 + 1122.9 65.5957 71.6149 61.6753 + 1123 66.3061 71.0612 61.6703 + 1123.1 67.0062 70.5075 61.6633 + 1123.2 67.6961 69.9649 61.6713 + 1123.3 68.3859 69.4222 61.6743 + 1123.4 69.086 68.8796 61.6673 + 1123.5 69.7759 68.3259 61.6533 + 1123.6 70.4554 67.7944 61.6592 + 1123.7 71.1452 67.2518 61.6522 + 1123.8 71.8248 66.7092 61.6602 + 1123.9 72.5043 66.1665 61.6492 + 1124 73.1838 65.635 61.6522 + 1124.1 73.8634 65.0924 61.6582 + 1124.2 74.5429 64.5608 61.6532 + 1124.3 75.2122 64.0293 61.6572 + 1124.4 75.8814 63.5088 61.6562 + 1124.5 76.5609 62.9773 61.6532 + 1124.6 77.2199 62.4457 61.6502 + 1124.7 77.8891 61.9142 61.6482 + 1124.8 78.5481 61.3827 61.6502 + 1124.9 79.2173 60.8733 61.6392 + 1125 79.8763 60.3417 61.6462 + 1125.1 80.5352 59.8213 61.6362 + 1125.2 81.1942 59.3008 61.6392 + 1125.3 81.8531 58.7803 61.6292 + 1125.4 82.512 58.2488 61.6262 + 1125.5 83.171 57.7283 61.6262 + 1125.6 83.8402 57.1968 61.6262 + 1125.7 84.4992 56.6763 61.6232 + 1125.8 85.1581 56.1448 61.6242 + 1125.9 85.8274 55.6132 61.6192 + 1126 86.4863 55.0817 61.6192 + 1126.1 87.1659 54.5501 61.6102 + 1126.2 87.8351 54.0075 61.5972 + 1126.3 88.5146 53.476 61.6042 + 1126.4 89.2045 52.9223 61.5922 + 1126.5 89.8943 52.3686 61.5772 + 1126.6 90.5841 51.8038 61.5911 + 1126.7 91.2843 51.2169 61.5941 + 1126.8 91.9844 50.6411 61.5871 + 1126.9 92.6948 50.032 61.5911 + 1127 93.4053 49.423 61.5911 + 1127.1 94.1157 48.8028 61.5811 + 1127.2 94.8364 48.1827 61.5801 + 1127.3 95.5571 47.5515 61.5891 + 1127.4 96.2779 46.9203 61.5931 + 1127.5 97.0089 46.278 61.5971 + 1127.6 97.7399 45.6247 61.5811 + 1127.7 98.4812 44.9824 61.5931 + 1127.8 99.2122 44.329 61.5921 + 1127.9 99.9432 43.6757 61.5931 + 1128 100.674 43.0223 61.6011 + 1128.1 101.385 42.3247 61.5851 + 1128.2 102.064 41.627 61.588 + 1128.3 102.733 40.9294 61.594 + 1128.4 103.362 40.2096 61.597 + 1128.5 103.938 39.4676 61.597 + 1128.6 104.494 38.7035 61.596 + 1128.7 104.999 37.9394 61.599 + 1128.8 105.452 37.1643 61.603 + 1128.9 105.863 36.367 61.585 + 1129 106.234 35.5807 61.589 + 1129.1 106.564 34.7834 61.592 + 1129.2 106.852 33.9861 61.579 + 1129.3 107.099 33.1777 61.579 + 1129.4 107.295 32.3914 61.58 + 1129.5 107.449 31.5941 61.579 + 1129.6 107.562 30.7968 61.572 + 1129.7 107.634 30.0106 61.573 + 1129.8 107.665 29.2354 61.573 + 1129.9 107.645 28.4602 61.568 + 1130 107.583 27.7183 61.573 + 1130.1 107.48 26.9763 61.577 + 1130.2 107.336 26.2565 61.577 + 1130.3 107.171 25.5699 61.565 + 1130.4 106.955 24.8944 61.5621 + 1130.5 106.718 24.2521 61.5541 + 1130.6 106.44 23.6431 61.5561 + 1130.7 106.142 23.0562 61.5601 + 1130.8 105.802 22.5025 61.5561 + 1130.9 105.441 21.982 61.5671 + 1131 105.061 21.5058 61.5681 + 1131.1 104.649 21.0407 61.5731 + 1131.2 104.216 20.6199 61.5581 + 1131.3 103.743 20.2102 61.5561 + 1131.4 103.259 19.8226 61.5441 + 1131.5 102.713 19.4571 61.5401 + 1131.6 102.157 19.0917 61.5272 + 1131.7 101.55 18.7484 61.5352 + 1131.8 100.922 18.4051 61.5302 + 1131.9 100.263 18.0507 61.5252 + 1132 99.5728 17.7074 61.5302 + 1132.1 98.8623 17.3641 61.5252 + 1132.2 98.121 17.0319 61.5322 + 1132.3 97.3694 16.6886 61.5322 + 1132.4 96.5972 16.3453 61.5202 + 1132.5 95.7941 16.0131 61.5243 + 1132.6 94.9807 15.6698 61.5323 + 1132.7 94.1468 15.3265 61.5283 + 1132.8 93.2922 14.9943 61.5333 + 1132.9 92.4273 14.6399 61.5223 + 1133 91.5419 14.2966 61.5273 + 1133.1 90.6461 13.9533 61.5373 + 1133.2 89.7401 13.61 61.5424 + 1133.3 88.8134 13.2557 61.5384 + 1133.4 87.8868 12.9124 61.5424 + 1133.5 86.9499 12.558 61.5514 + 1133.6 85.9923 12.2036 61.5544 + 1133.7 85.0451 11.8382 61.5514 + 1133.8 84.0773 11.4838 61.5664 + 1133.9 83.0992 11.1295 61.5584 + 1134 82.1211 10.764 61.5665 + 1134.1 81.1223 10.3986 61.5655 + 1134.2 80.1236 10.0331 61.5725 + 1134.3 79.1146 9.66769 61.5805 + 1134.4 78.0953 9.30225 61.5885 + 1134.5 77.0863 8.93681 61.6015 + 1134.6 76.0567 8.56029 61.6015 + 1134.7 75.0271 8.19485 61.6136 + 1134.8 73.9975 7.81833 61.6116 + 1134.9 72.9576 7.44181 61.6296 + 1135 71.9177 7.0653 61.6276 + 1135.1 70.8572 6.67771 61.6366 + 1135.2 69.7967 6.30119 61.6476 + 1135.3 68.7465 5.9136 61.6526 + 1135.4 67.6758 5.52601 61.6556 + 1135.5 66.605 5.13842 61.6637 + 1135.6 65.5445 4.7619 61.6837 + 1135.7 64.4737 4.37431 61.6877 + 1135.8 63.4029 3.98672 61.6857 + 1135.9 62.3321 3.61021 61.6907 + 1136 61.2716 3.22262 61.6787 + 1136.1 60.2112 2.8461 61.6647 + 1136.2 59.1713 2.46959 61.6477 + 1136.3 58.1211 2.09307 61.6257 + 1136.4 57.1018 1.72763 61.5947 + 1136.5 56.0722 1.36219 61.5728 + 1136.6 55.0426 0.985672 61.5488 + 1136.7 54.013 0.631305 61.4968 + 1136.8 52.9936 0.25479 61.4828 + 1136.9 51.964 -0.110651 61.4648 + 1137 50.9447 -0.476093 61.4448 + 1137.1 49.9048 -0.852607 61.4548 + 1137.2 48.8649 -1.21805 61.4488 + 1137.3 47.825 -1.59456 61.4608 + 1137.4 46.7851 -1.97108 61.4598 + 1137.5 45.7453 -2.34759 61.4708 + 1137.6 44.7157 -2.71303 61.4928 + 1137.7 43.7066 -3.08955 61.5138 + 1137.8 42.6976 -3.43284 61.5429 + 1137.9 41.7195 -3.79828 61.5649 + 1138 40.7929 -4.11943 61.5689 + 1138.1 39.8971 -4.44057 61.5699 + 1138.2 39.0014 -4.76171 61.5519 + 1138.3 38.1468 -5.07179 61.4969 + 1138.4 37.3231 -5.37078 61.4069 + 1138.5 36.5509 -5.64763 61.3029 + 1138.6 35.8096 -5.93555 61.1759 + 1138.7 35.0786 -6.20133 61.0009 + 1138.8 34.3887 -6.4671 60.7889 + 1138.9 33.7298 -6.7218 60.5569 + 1139 33.112 -6.96543 60.2959 + 1139.1 32.5252 -7.20905 60.0409 + 1139.2 31.9692 -7.44161 59.7419 + 1139.3 31.4544 -7.66308 59.4459 + 1139.4 30.9705 -7.87349 59.1539 + 1139.5 30.5277 -8.08389 58.8369 + 1139.6 30.1262 -8.27215 58.5229 + 1139.7 29.7452 -8.4604 58.2079 + 1139.8 29.4055 -8.63759 57.8769 + 1139.9 29.0863 -8.79262 57.5509 + 1140 28.798 -8.92551 57.2399 + 1140.1 28.5509 -9.06947 56.8979 + 1140.2 28.3347 -9.21343 56.5869 + 1140.3 28.139 -9.33524 56.2749 + 1140.4 27.964 -9.45705 55.9649 + 1140.5 27.8199 -9.55672 55.6819 + 1140.6 27.6963 -9.66745 55.3629 + 1140.7 27.5933 -9.76712 55.0669 + 1140.8 27.5007 -9.85571 54.7729 + 1140.9 27.4183 -9.93323 54.4779 + 1141 27.3462 -9.99967 54.1829 + 1141.1 27.2845 -10.0661 53.8949 + 1141.2 27.233 -10.1215 53.6039 + 1141.3 27.1918 -10.1658 53.2989 + 1141.4 27.1403 -10.2101 53.0129 + 1141.5 27.0991 -10.2544 52.7249 + 1141.6 27.0682 -10.2987 52.4359 + 1141.7 27.0476 -10.343 52.1549 + 1141.8 27.0168 -10.3762 51.8649 + 1141.9 26.9962 -10.4094 51.5739 + 1142 26.9859 -10.4426 51.2699 + 1142.1 26.9756 -10.4758 50.9419 + 1142.2 26.9756 -10.5091 50.6139 + 1142.3 26.9859 -10.5423 50.2949 + 1142.4 27.0064 -10.5644 49.9609 + 1142.5 27.0167 -10.5866 49.6339 + 1142.6 27.0373 -10.5976 49.3199 + 1142.7 27.0579 -10.6087 49.0019 + 1142.8 27.0682 -10.6309 48.6859 + 1142.9 27.0785 -10.6419 48.3649 + 1143 27.0991 -10.653 48.0389 + 1143.1 27.0991 -10.6752 47.6959 + 1143.2 27.1094 -10.6862 47.3499 + 1143.3 27.1094 -10.6973 46.9989 + 1143.4 27.1094 -10.7195 46.6499 + 1143.5 27.1094 -10.7305 46.2739 + 1143.6 27.0991 -10.7416 45.8979 + 1143.7 27.0888 -10.7527 45.5079 + 1143.8 27.0682 -10.7527 45.1079 + 1143.9 27.0579 -10.7748 44.7199 + 1144 27.0476 -10.7748 44.3339 + 1144.1 27.0167 -10.7748 43.9669 + 1144.2 27.0064 -10.7748 43.6209 + 1144.3 27.0064 -10.7748 43.2729 + 1144.4 26.9858 -10.7748 42.9459 + 1144.5 26.9755 -10.7859 42.6169 + 1144.6 26.9549 -10.7859 42.2989 + 1144.7 26.9446 -10.7859 41.9769 + 1144.8 26.9446 -10.7748 41.6469 + 1144.9 26.9446 -10.7637 41.3139 + 1145 26.9343 -10.7527 40.9539 + 1145.1 26.924 -10.7416 40.6069 + 1145.2 26.9137 -10.7194 40.2319 + 1145.3 26.9137 -10.6973 39.8619 + 1145.4 26.924 -10.6752 39.4879 + 1145.5 26.924 -10.653 39.0999 + 1145.6 26.9446 -10.6198 38.7129 + 1145.7 26.9446 -10.6087 38.3099 + 1145.8 26.9446 -10.5866 37.9089 + 1145.9 26.9549 -10.5533 37.5339 + 1146 26.9549 -10.5201 37.1749 + 1146.1 26.9652 -10.498 36.8339 + 1146.2 26.9858 -10.498 36.4969 + 1146.3 26.9961 -10.498 36.1589 + 1146.4 26.9961 -10.498 35.8049 + 1146.5 26.9858 -10.498 35.4809 + 1146.6 26.9858 -10.498 35.1379 + 1146.7 27.0064 -10.509 34.8079 + 1146.8 27.027 -10.5201 34.4519 + 1146.9 27.0373 -10.5312 34.1009 + 1147 27.027 -10.5423 33.7099 + 1147.1 27.0167 -10.5423 33.3199 + 1147.2 27.0167 -10.5533 32.9289 + 1147.3 27.0167 -10.5423 32.5389 + 1147.4 27.0064 -10.5423 32.1349 + 1147.5 27.0064 -10.5423 31.7379 + 1147.6 26.9961 -10.5423 31.3369 + 1147.7 26.9858 -10.5312 30.9339 + 1147.8 26.9755 -10.5201 30.5389 + 1147.9 26.9652 -10.509 30.1369 + 1148 26.9549 -10.4869 29.7449 + 1148.1 26.9343 -10.4647 29.3309 + 1148.2 26.9343 -10.4537 28.9479 + 1148.3 26.924 -10.4426 28.5459 + 1148.4 26.8931 -10.4426 28.1489 + 1148.5 26.8519 -10.4315 27.7889 + 1148.6 26.7901 -10.4426 27.4309 + 1148.7 26.7078 -10.4537 27.1079 + 1148.8 26.6151 -10.4979 26.8159 + 1148.9 26.5018 -10.5312 26.5679 + 1149 26.368 -10.5644 26.3389 + 1149.1 26.2136 -10.6087 26.1599 + 1149.2 26.0488 -10.6751 26.0229 + 1149.3 25.8532 -10.7416 25.9209 + 1149.4 25.637 -10.808 25.8759 + 1149.5 25.4002 -10.8966 25.8449 + 1149.6 25.1222 -10.9852 25.8569 + 1149.7 24.8133 -11.0849 25.8849 + 1149.8 24.4838 -11.2067 25.9109 + 1149.9 24.1235 -11.3396 25.9369 + 1150 23.7528 -11.4614 25.9679 + 1150.1 23.3513 -11.6053 25.9999 + 1150.2 22.9291 -11.7604 26.0199 + 1150.3 22.4864 -11.9043 26.0399 + 1150.4 22.0334 -12.0704 26.056 + 1150.5 21.5598 -12.2255 26.063 + 1150.6 21.0656 -12.4027 26.08 + 1150.7 20.5611 -12.5798 26.087 + 1150.8 20.036 -12.757 26.079 + 1150.9 19.5006 -12.9453 26.087 + 1151 18.9549 -13.1335 26.076 + 1151.1 18.3886 -13.3218 26.067 + 1151.2 17.812 -13.5211 26.082 + 1151.3 17.2252 -13.7315 26.073 + 1151.4 16.628 -13.9308 26.055 + 1151.5 16.0205 -14.1412 26.076 + 1151.6 15.4131 -14.3627 26.068 + 1151.7 14.7953 -14.5731 26.079 + 1151.8 14.1776 -14.7835 26.071 + 1151.9 13.5598 -14.9939 26.076 + 1152 12.942 -15.2154 26.071 + 1152.1 12.3346 -15.4369 26.082 + 1152.2 11.7271 -15.6473 26.082 + 1152.3 11.13 -15.8577 26.084 + 1152.4 10.5431 -16.057 26.071 + 1152.5 10.0283 -16.2342 26.091 + 1152.6 9.54437 -16.4003 26.073 + 1152.7 9.06046 -16.5664 26.065 + 1152.9 8.23678 -16.8654 26.007 + 1153 7.88672 -16.9983 25.917 + 1153.1 7.59843 -17.1201 25.82 + 1153.2 7.31015 -17.2308 25.687 + 1153.3 7.06304 -17.3305 25.527 + 1153.4 6.82623 -17.4302 25.365 + 1153.5 6.62031 -17.5188 25.168 + 1153.6 6.43499 -17.6074 24.947 + 1153.7 6.27025 -17.6959 24.707 + 1153.8 6.12611 -17.7513 24.483 + 1153.9 6.01285 -17.8178 24.233 + 1154 5.8996 -17.8842 23.972 + 1154.1 5.79664 -17.9396 23.706 + 1154.2 5.70397 -17.9949 23.45 + 1154.3 5.6216 -18.0503 23.182 + 1154.4 5.54953 -18.0946 22.923 + 1154.5 5.49805 -18.1389 22.656 + 1154.6 5.44657 -18.1721 22.414 + 1154.7 5.39509 -18.2164 22.166 + 1154.8 5.34361 -18.2607 21.911 + 1154.9 5.30243 -18.2939 21.662 + 1155 5.26124 -18.3382 21.407 + 1155.1 5.23035 -18.3604 21.171 + 1155.2 5.19947 -18.4047 20.919 + 1155.3 5.16858 -18.4268 20.668 + 1155.4 5.13769 -18.46 20.421 + 1155.5 5.1068 -18.4932 20.169 + 1155.6 5.08621 -18.5154 19.914 + 1155.7 5.05532 -18.5375 19.658 + 1155.8 5.04503 -18.5597 19.399 + 1155.9 5.03473 -18.5818 19.153 + 1156 5.02443 -18.604 18.885 + 1156.1 5.01414 -18.615 18.626 + 1156.2 5.00384 -18.6372 18.375 + 1156.3 4.99354 -18.6483 18.105 + 1156.4 4.98325 -18.6704 17.828 + 1156.5 4.98325 -18.6815 17.583 + 1156.6 4.98325 -18.6815 17.34 + 1156.7 4.99354 -18.7036 17.084 + 1156.8 4.98325 -18.7036 16.843 + 1156.9 4.98325 -18.7036 16.573 + 1157 4.99354 -18.7147 16.34 + 1157.1 5.00384 -18.7147 16.094 + 1157.2 5.01414 -18.7036 15.883 + 1157.3 5.03473 -18.7036 15.714 + 1157.4 5.04502 -18.6926 15.57 + 1157.5 5.06561 -18.6815 15.44 + 1157.6 5.08621 -18.6593 15.355 + 1157.7 5.0965 -18.6261 15.307 + 1157.8 5.1068 -18.5818 15.261 + 1157.9 5.11709 -18.5264 15.237 + 1158 5.12739 -18.4489 15.236 + 1158.1 5.11709 -18.3714 15.235 + 1158.2 5.11709 -18.2718 15.253 + 1158.3 5.1068 -18.1499 15.255 + 1158.4 5.08621 -18.0171 15.275 + 1158.5 5.06561 -17.8731 15.293 + 1158.6 5.03473 -17.7181 15.307 + 1158.7 4.99354 -17.552 15.32 + 1158.8 4.95236 -17.3637 15.323 + 1158.9 4.90088 -17.1754 15.328 + 1159 4.85969 -16.9872 15.33 + 1159.1 4.78762 -16.7879 15.323 + 1159.2 4.72585 -16.5885 15.314 + 1159.3 4.65378 -16.3892 15.312 + 1159.4 4.56111 -16.1788 15.291 + 1159.5 4.48904 -15.9684 15.298 + 1159.6 4.39638 -15.7469 15.286 + 1159.7 4.30371 -15.5365 15.276 + 1159.8 4.20075 -15.315 15.27 + 1159.9 4.09779 -15.0936 15.265 + 1160 4.00513 -14.8721 15.25 + 1160.1 3.90217 -14.6506 15.238 + 1160.2 3.79921 -14.4181 15.224 + 1160.3 3.68595 -14.1744 15.209 + 1160.4 3.58299 -13.9419 15.21 + 1160.5 3.46974 -13.6872 15.19 + 1160.6 3.36678 -13.4436 15.189 + 1160.7 3.24323 -13.1889 15.176 + 1160.8 3.11968 -12.9231 15.174 + 1160.9 2.99612 -12.6463 15.168 + 1161 2.87257 -12.3694 15.158 + 1161.1 2.74902 -12.0926 15.15 + 1161.2 2.61517 -11.8047 15.153 + 1161.3 2.49162 -11.5167 15.141 + 1161.4 2.34748 -11.2177 15.148 + 1161.5 2.21363 -10.9298 15.129 + 1161.6 2.07978 -10.6198 15.137 + 1161.7 1.94594 -10.3208 15.132 + 1161.8 1.7915 -10.0107 15.121 + 1161.9 1.65765 -9.68957 15.127 + 1162 1.50321 -9.36843 15.117 + 1162.1 1.35907 -9.03621 15.104 + 1162.2 1.20463 -8.704 15.11 + 1162.3 1.05019 -8.37178 15.102 + 1162.4 0.895748 -8.0285 15.092 + 1162.5 0.741309 -7.68521 15.081 + 1162.6 0.576574 -7.33085 15.076 + 1162.7 0.411838 -6.96541 15.08 + 1162.8 0.257399 -6.61105 15.066 + 1162.9 0.0823676 -6.23454 15.064 + 1163 -0.0926636 -5.86911 15.057 + 1163.1 -0.247103 -5.4926 15.06 + 1163.2 -0.422134 -5.10502 15.056 + 1163.3 -0.597165 -4.72851 15.059 + 1163.4 -0.772197 -4.34093 15.041 + 1163.5 -0.947228 -3.94227 15.04 + 1163.6 -1.12226 -3.54361 15.062 + 1163.7 -1.30759 -3.14496 15.048 + 1163.8 -1.49291 -2.7463 15.047 + 1163.9 -1.67824 -2.33657 15.038 + 1164 -1.86357 -1.92684 15.038 + 1164.1 -2.05919 -1.51711 15.038 + 1164.2 -2.24452 -1.11845 15.029 + 1164.3 -2.42984 -0.697649 15.023 + 1164.4 -2.62547 -0.276844 15.028 + 1164.5 -2.82109 0.155033 15.02 + 1164.6 -3.01671 0.575837 15.019 + 1164.7 -3.21234 0.996641 15.009 + 1164.8 -3.40796 1.42852 15.005 + 1164.9 -3.60358 1.87147 15.005 + 1165 -3.8095 2.30335 14.995 + 1165.1 -4.01542 2.7463 14.995 + 1165.2 -4.21104 3.17818 14.983 + 1165.3 -4.41696 3.6322 14.988 + 1165.4 -4.62288 4.06408 14.981 + 1165.5 -4.8288 4.50703 14.976 + 1165.6 -5.03472 4.94998 14.966 + 1165.7 -5.24064 5.40401 14.965 + 1165.8 -5.43626 5.84696 14.957 + 1165.9 -5.64218 6.28991 14.952 + 1166 -5.8481 6.74394 14.95 + 1166.1 -6.05402 7.18689 14.941 + 1166.2 -6.25994 7.64092 14.936 + 1166.3 -6.47615 8.09494 14.925 + 1166.4 -6.67177 8.53789 14.928 + 1166.5 -6.87769 8.99192 14.912 + 1166.6 -7.08361 9.44594 14.908 + 1166.7 -7.28953 9.91104 14.915 + 1166.8 -7.49545 10.3651 14.902 + 1166.9 -7.70137 10.8191 14.895 + 1167 -7.90728 11.262 14.877 + 1167.1 -8.10291 11.705 14.892 + 1167.2 -8.30883 12.1479 14.874 + 1167.3 -8.49415 12.5577 14.875 + 1167.4 -8.6383 12.912 14.825 + 1167.5 -8.80303 13.2664 14.865 + 1167.6 -8.96777 13.5654 14.844 + 1167.7 -9.10161 13.809 14.842 + 1167.8 -9.21487 14.0194 14.831 + 1167.9 -9.31783 14.1966 14.839 + 1168 -9.42079 14.3516 14.823 + 1168.1 -9.49286 14.4513 14.794 + 1168.2 -9.54434 14.551 14.779 + 1168.3 -9.58552 14.6174 14.761 + 1168.4 -9.62671 14.6838 14.748 + 1168.5 -9.65759 14.7392 14.747 + 1168.6 -9.66789 14.7724 14.739 + 1168.7 -9.67818 14.8057 14.727 + 1168.8 -9.67818 14.8167 14.73 + 1168.9 -9.65759 14.8167 14.734 + 1169 -9.6473 14.8057 14.739 + 1169.1 -9.637 14.7946 14.736 + 1169.2 -9.60611 14.7724 14.747 + 1169.3 -9.56493 14.7392 14.753 + 1169.4 -9.52375 14.6728 14.762 + 1169.5 -9.47227 14.6174 14.765 + 1169.6 -9.41049 14.5288 14.772 + 1169.7 -9.33842 14.4402 14.776 + 1169.8 -9.26635 14.3295 14.787 + 1169.9 -9.18398 14.2077 14.801 + 1170 -9.09132 14.0748 14.802 + 1170.1 -8.99865 13.9308 14.814 + 1170.2 -8.8854 13.7758 14.816 + 1170.3 -8.78244 13.6208 14.819 + 1170.4 -8.65889 13.4325 14.822 + 1170.5 -8.53534 13.2664 14.837 + 1170.6 -8.41178 13.0671 14.836 + 1170.7 -8.27794 12.8677 14.834 + 1170.8 -8.13379 12.6573 14.847 + 1170.9 -7.97936 12.4248 14.854 + 1171 -7.83521 12.2033 14.845 + 1171.1 -7.68077 11.9708 14.858 + 1171.2 -7.52633 11.7271 14.861 + 1171.3 -7.3513 11.4724 14.86 + 1171.4 -7.18657 11.2067 14.854 + 1171.5 -7.00124 10.9409 14.851 + 1171.6 -6.82621 10.653 14.853 + 1171.7 -6.64088 10.3651 14.85 + 1171.8 -6.44526 10.0661 14.845 + 1171.9 -6.25993 9.76708 14.845 + 1172 -6.05402 9.44594 14.841 + 1172.1 -5.8481 9.13588 14.843 + 1172.2 -5.65247 8.80366 14.839 + 1172.3 -5.43626 8.47145 14.841 + 1172.4 -5.22004 8.12816 14.833 + 1172.5 -5.00383 7.78487 14.832 + 1172.6 -4.78761 7.43051 14.84 + 1172.7 -4.5611 7.07615 14.84 + 1172.8 -4.3243 6.69964 14.836 + 1172.9 -4.08749 6.33421 14.834 + 1173 -3.85068 5.94662 14.835 + 1173.1 -3.61388 5.54797 14.832 + 1173.2 -3.36677 5.16039 14.831 + 1173.3 -3.11967 4.75066 14.826 + 1173.4 -2.85198 4.34093 14.831 + 1173.5 -2.59458 3.92012 14.824 + 1173.6 -2.32688 3.48824 14.82 + 1173.7 -2.05919 3.05637 14.826 + 1173.8 -1.7812 2.61341 14.828 + 1173.9 -1.50321 2.15939 14.827 + 1174 -1.22522 1.71644 14.821 + 1174.1 -0.936931 1.25134 14.833 + 1174.2 -0.648645 0.797313 14.825 + 1174.3 -0.360358 0.332214 14.815 + 1174.4 -0.0720717 -0.132885 14.827 + 1174.5 0.216215 -0.597985 14.824 + 1174.6 0.504502 -1.06308 14.82 + 1174.7 0.792788 -1.52818 14.827 + 1174.8 1.08108 -1.99328 14.826 + 1174.9 1.37966 -2.45838 14.826 + 1175 1.65765 -2.92348 14.826 + 1175.1 1.94594 -3.37751 14.822 + 1175.2 2.22393 -3.83153 14.834 + 1175.3 2.50192 -4.27448 14.842 + 1175.4 2.77991 -4.71743 14.838 + 1175.5 3.0476 -5.14931 14.836 + 1175.6 3.3153 -5.57012 14.836 + 1175.7 3.5727 -5.99092 14.843 + 1175.8 3.84039 -6.41172 14.841 + 1175.9 4.08749 -6.81038 14.831 + 1176 4.3346 -7.20904 14.845 + 1176.1 4.5817 -7.59662 14.841 + 1176.2 4.81851 -7.9842 14.855 + 1176.3 5.05531 -8.36071 14.851 + 1176.4 5.29212 -8.73722 14.859 + 1176.5 5.51863 -9.10265 14.859 + 1176.6 5.74514 -9.46809 14.868 + 1176.7 5.98195 -9.82245 14.874 + 1176.8 6.19817 -10.1768 14.861 + 1176.9 6.41438 -10.5312 14.863 + 1177 6.64089 -10.8745 14.865 + 1177.1 6.84681 -11.2067 14.874 + 1177.2 7.06303 -11.55 14.871 + 1177.3 7.26895 -11.8932 14.871 + 1177.4 7.48516 -12.2144 14.877 + 1177.5 7.69108 -12.5466 14.881 + 1177.6 7.9073 -12.8788 14.879 + 1177.7 8.10292 -13.211 14.881 + 1177.8 8.31914 -13.5322 14.885 + 1177.9 8.51476 -13.8533 14.886 + 1178 8.73097 -14.1855 14.885 + 1178.1 8.9266 -14.5067 14.881 + 1178.2 9.14281 -14.8278 14.898 + 1178.3 9.33844 -15.1489 14.881 + 1178.4 9.55465 -15.4812 14.888 + 1178.5 9.75028 -15.7912 14.891 + 1178.6 9.96649 -16.1124 14.886 + 1178.7 10.1724 -16.4446 14.883 + 1178.8 10.368 -16.7657 14.874 + 1178.9 10.5842 -17.0758 14.874 + 1179 10.7387 -17.3415 14.87 + 1179.1 10.8931 -17.5962 14.862 + 1179.2 11.0682 -17.8509 14.85 + 1179.3 11.1917 -18.0613 14.842 + 1179.4 11.3256 -18.2496 14.855 + 1179.5 11.4285 -18.3936 14.881 + 1179.6 11.5109 -18.5264 14.873 + 1179.7 11.5727 -18.6261 14.861 + 1179.8 11.6241 -18.7147 14.88 + 1179.9 11.6653 -18.7811 14.873 + 1180 11.7065 -18.8254 14.874 + 1180.1 11.7168 -18.8476 14.874 + 1180.2 11.7271 -18.8587 14.874 + 1180.3 11.7065 -18.8476 14.874 + 1180.4 11.6859 -18.8033 14.883 + 1180.5 11.6447 -18.7479 14.865 + 1180.6 11.5933 -18.6704 14.866 + 1180.7 11.5315 -18.5818 14.858 + 1180.8 11.4594 -18.46 14.855 + 1180.9 11.377 -18.3382 14.855 + 1181 11.2741 -18.1942 14.859 + 1181.1 11.1711 -18.0392 14.852 + 1181.2 11.0579 -17.862 14.828 + 1181.3 10.9343 -17.6738 14.83 + 1181.4 10.8108 -17.4744 14.831 + 1181.5 10.6666 -17.264 14.831 + 1181.6 10.5225 -17.0426 14.818 + 1181.7 10.3886 -16.8211 14.819 + 1181.8 10.2239 -16.5775 14.81 + 1181.9 10.0695 -16.3228 14.812 + 1182 9.91501 -16.0681 14.817 + 1182.1 9.73998 -15.8134 14.796 + 1182.2 9.56495 -15.5476 14.79 + 1182.3 9.38992 -15.2708 14.81 + 1182.4 9.22518 -14.9939 14.806 + 1182.5 9.03985 -14.706 14.793 + 1182.6 8.85453 -14.4291 14.797 + 1182.7 8.67949 -14.1412 14.799 + 1182.8 8.49417 -13.8422 14.796 + 1182.9 8.29854 -13.5322 14.8 + 1183 8.11322 -13.2332 14.806 + 1183.1 7.91759 -12.9231 14.802 + 1183.2 7.72197 -12.613 14.795 + 1183.3 7.51605 -12.2919 14.799 + 1183.4 7.31013 -11.9597 14.797 + 1183.5 7.09392 -11.6275 14.791 + 1183.6 6.8777 -11.2953 14.801 + 1183.7 6.65119 -10.952 14.794 + 1183.8 6.42468 -10.5976 14.791 + 1183.9 6.18787 -10.2322 14.807 + 1184 5.95106 -9.86674 14.8 + 1184.1 5.71426 -9.50131 14.785 + 1184.2 5.47745 -9.13587 14.791 + 1184.3 5.23035 -8.74829 14.79 + 1184.4 4.97295 -8.36071 14.786 + 1184.5 4.72584 -7.96205 14.781 + 1184.6 4.47874 -7.5634 14.79 + 1184.7 4.22134 -7.16474 14.78 + 1184.8 3.95365 -6.74394 14.776 + 1184.9 3.69625 -6.32313 14.79 + 1185 3.42855 -5.9134 14.786 + 1185.1 3.17115 -5.48152 14.791 + 1185.2 2.90346 -5.04965 14.787 + 1185.3 2.63576 -4.61777 14.79 + 1185.4 2.36807 -4.18589 14.801 + 1185.5 2.10037 -3.75401 14.797 + 1185.6 1.82238 -3.31106 14.79 + 1185.7 1.55469 -2.87918 14.794 + 1185.8 1.28699 -2.43623 14.8 + 1185.9 1.009 -1.99328 14.796 + 1186 0.720717 -1.53926 14.79 + 1186.1 0.442726 -1.09631 14.791 + 1186.2 0.154439 -0.64228 14.796 + 1186.3 -0.133847 -0.188254 14.806 + 1186.4 -0.43243 0.276845 14.814 + 1186.5 -0.720717 0.741944 14.813 + 1186.6 -1.0296 1.20704 14.822 + 1186.7 -1.32818 1.68322 14.816 + 1186.8 -1.63706 2.17046 14.819 + 1186.9 -1.94593 2.64664 14.832 + 1187 -2.25481 3.13388 14.811 + 1187.1 -2.5534 3.62113 14.807 + 1187.2 -2.85198 4.10838 14.818 + 1187.3 -3.16086 4.59562 14.809 + 1187.4 -3.45944 5.08287 14.806 + 1187.5 -3.75802 5.57012 14.8 + 1187.6 -4.0566 6.04629 14.816 + 1187.7 -4.34489 6.53354 14.817 + 1187.8 -4.63318 7.00971 14.821 + 1187.9 -4.93176 7.48588 14.812 + 1188 -5.22004 7.96205 14.816 + 1188.1 -5.50833 8.42715 14.813 + 1188.2 -5.79662 8.89225 14.817 + 1188.3 -6.0849 9.36843 14.814 + 1188.4 -6.36289 9.82245 14.798 + 1188.5 -6.64088 10.2765 14.799 + 1188.6 -6.92917 10.7305 14.8 + 1188.7 -7.19686 11.1735 14.792 + 1188.8 -7.47485 11.6164 14.795 + 1188.9 -7.74255 12.0594 14.79 + 1189 -7.99995 12.4802 14.821 + 1189.1 -8.25735 12.901 14.867 + 1189.2 -8.51474 13.3107 14.935 + 1189.3 -8.74126 13.6872 15.05 + 1189.4 -8.92658 13.9973 15.151 + 1189.5 -9.11191 14.3073 15.305 + 1189.6 -9.26635 14.551 15.528 + 1189.7 -9.3899 14.7281 15.767 + 1189.8 -9.50316 14.8721 16.056 + 1189.9 -9.57523 14.9939 16.365 + 1190 -9.637 15.0825 16.713 + 1190.1 -9.67819 15.149 17.097 + 1190.2 -9.69878 15.1932 17.498 + 1190.3 -9.72967 15.2486 17.912 + 1190.4 -9.76056 15.2818 18.338 + 1190.5 -9.78115 15.3151 18.753 + 1190.6 -9.81204 15.3372 19.155 + 1190.7 -9.85322 15.3483 19.574 + 1190.8 -9.915 15.3483 19.955 + 1190.9 -9.97678 15.3261 20.35 + 1191 -10.0694 15.2929 20.717 + 1191.1 -10.1827 15.2486 21.09 + 1191.2 -10.3268 15.1822 21.465 + 1191.3 -10.4916 15.1047 21.863 + 1191.4 -10.6769 14.9939 22.218 + 1191.5 -10.8931 14.8832 22.564 + 1191.6 -11.1196 14.7503 22.907 + 1191.7 -11.377 14.6064 23.259 + 1191.8 -11.6447 14.4402 23.573 + 1191.9 -11.933 14.2631 23.885 + 1192 -12.2419 14.0859 24.183 + 1192.1 -12.5714 13.8976 24.445 + 1192.2 -12.9214 13.6762 24.72 + 1192.3 -13.2818 13.4547 24.969 + 1192.4 -13.673 13.2221 25.244 + 1192.5 -14.0849 12.9785 25.542 + 1192.6 -14.507 12.7127 25.861 + 1192.7 -14.9497 12.4359 26.205 + 1192.8 -15.4028 12.159 26.564 + 1192.9 -15.8661 11.8933 26.957 + 1193 -16.3294 11.5943 27.371 + 1193.1 -16.8236 11.3174 27.794 + 1193.2 -17.3178 11.0406 28.19 + 1193.3 -17.8326 10.797 28.621 + 1193.4 -18.3577 10.5755 29.05 + 1193.5 -18.8725 10.3651 29.446 + 1193.6 -19.4182 10.1879 29.835 + 1193.7 -19.9639 10.044 30.194 + 1193.8 -20.5096 9.9443 30.562 + 1193.9 -21.0553 9.87786 30.916 + 1194 -21.6112 9.85571 31.259 + 1194.1 -22.1466 9.85571 31.592 + 1194.2 -22.682 9.90001 31.918 + 1194.3 -23.2277 9.94431 32.2329 + 1194.4 -23.7734 9.99968 32.5399 + 1194.5 -24.3294 10.0661 32.8289 + 1194.6 -24.8957 10.1547 33.1059 + 1194.7 -25.4722 10.2322 33.3399 + 1194.8 -26.0488 10.2987 33.5599 + 1194.9 -26.6563 10.3651 33.7519 + 1195 -27.274 10.4316 33.8949 + 1195.1 -27.9021 10.4759 33.9919 + 1195.2 -28.5404 10.5312 34.0729 + 1195.3 -29.1994 10.5755 34.1249 + 1195.4 -29.8686 10.6198 34.1589 + 1195.5 -30.5379 10.653 34.1819 + 1195.6 -31.238 10.6973 34.1739 + 1195.7 -31.9381 10.7416 34.1729 + 1195.8 -32.6588 10.7638 34.1579 + 1195.9 -33.3898 10.8081 34.1439 + 1196 -34.1312 10.8413 34.1289 + 1196.1 -34.8828 10.8745 34.1079 + 1196.2 -35.6447 10.9188 34.0899 + 1196.3 -36.4272 10.9631 34.0889 + 1196.4 -37.2097 10.9964 34.0819 + 1196.5 -38.0024 11.0406 34.0649 + 1196.6 -38.8055 11.0849 34.0749 + 1196.7 -39.6189 11.1292 34.0699 + 1196.8 -40.4426 11.1625 34.0669 + 1196.9 -41.2663 11.2068 34.0689 + 1197 -42.1002 11.2511 34.0789 + 1197.1 -42.9445 11.2954 34.0898 + 1197.2 -43.7991 11.3397 34.0868 + 1197.3 -44.6536 11.384 34.0908 + 1197.4 -45.5185 11.4283 34.0958 + 1197.5 -46.3834 11.4725 34.1068 + 1197.6 -47.2585 11.5168 34.1098 + 1197.7 -48.144 11.5722 34.1168 + 1197.8 -49.0191 11.6165 34.1178 + 1197.9 -49.8943 11.6608 34.1188 + 1198 -50.7695 11.7051 34.1368 + 1198.1 -51.6549 11.7605 34.1518 + 1198.2 -52.5301 11.8048 34.1448 + 1198.3 -53.3949 11.8491 34.1578 + 1198.4 -54.2495 11.8934 34.1788 + 1198.5 -55.0835 11.9488 34.2038 + 1198.6 -55.9071 11.9931 34.2327 + 1198.7 -56.6279 12.0484 34.2857 + 1198.8 -57.3177 12.0927 34.3417 + 1198.9 -57.9663 12.1481 34.4537 + 1199 -58.512 12.2035 34.5737 + 1199.1 -58.9753 12.2367 34.7187 + 1199.2 -59.3563 12.2588 34.8987 + 1199.3 -59.6858 12.2699 35.0937 + 1199.4 -59.9844 12.281 35.3227 + 1199.5 -60.2212 12.2921 35.5717 + 1199.6 -60.4477 12.3031 35.8347 + 1199.7 -60.633 12.2921 36.1447 + 1199.8 -60.8183 12.281 36.4597 + 1199.9 -60.9831 12.281 36.7867 + 1200 -61.1375 12.281 37.1487 + 1200.1 -61.2611 12.281 37.5107 + 1200.2 -61.3743 12.281 37.9017 + 1200.3 -61.467 12.2921 38.3207 + 1200.4 -61.5494 12.2921 38.7557 + 1200.5 -61.6112 12.281 39.1867 + 1200.6 -61.6729 12.281 39.6467 + 1200.7 -61.7244 12.2921 40.1087 + 1200.8 -61.7759 12.2921 40.5877 + 1200.9 -61.8068 12.2921 41.0507 + 1201 -61.848 12.2921 41.5327 + 1201.1 -61.8789 12.3032 42.0147 + 1201.2 -61.9098 12.3032 42.4957 + 1201.3 -61.9304 12.3032 42.9897 + 1201.4 -61.9613 12.3032 43.4837 + 1201.5 -62.0025 12.3142 43.9837 + 1201.6 -62.0333 12.3253 44.4537 + 1201.7 -62.0848 12.3364 44.9407 + 1201.8 -62.1363 12.3475 45.4287 + 1201.9 -62.1981 12.3585 45.9197 + 1202 -62.2702 12.3585 46.3987 + 1202.1 -62.3525 12.3696 46.8887 + 1202.2 -62.4452 12.3918 47.3747 + 1202.3 -62.5482 12.4028 47.8647 + 1202.4 -62.6614 12.4028 48.3367 + 1202.5 -62.785 12.425 48.8127 + 1202.6 -62.9188 12.4361 49.2947 + 1202.7 -63.0527 12.4361 49.7687 + 1202.8 -63.2071 12.4471 50.2567 + 1202.9 -63.3719 12.4693 50.7337 + 1203 -63.5469 12.4804 51.2037 + 1203.1 -63.722 12.4914 51.6917 + 1203.2 -63.9176 12.5025 52.1587 + 1203.3 -64.1132 12.5136 52.6447 + 1203.4 -64.3294 12.5247 53.1207 + 1203.5 -64.556 12.5357 53.6007 + 1203.6 -64.7825 12.5579 54.0727 + 1203.7 -65.0296 12.569 54.5597 + 1203.8 -65.2664 12.58 55.0287 + 1203.9 -65.5238 12.5911 55.5117 + 1204 -65.7812 12.6133 55.9886 + 1204.1 -66.0489 12.6243 56.4576 + 1204.2 -66.3166 12.6354 56.9316 + 1204.3 -66.5843 12.6576 57.4016 + 1204.4 -66.8417 12.6686 57.8786 + 1204.5 -67.1094 12.6797 58.3446 + 1204.6 -67.3771 12.6908 58.8256 + 1204.7 -67.6345 12.7019 59.3066 + 1204.8 -67.8507 12.7129 59.8156 + 1204.9 -68.0464 12.724 60.2996 + 1205 -68.2111 12.7351 60.7936 + 1205.1 -68.3759 12.7351 61.2826 + 1205.2 -68.5097 12.7462 61.7876 + 1205.3 -68.6127 12.7351 62.2846 + 1205.4 -68.695 12.7351 62.7876 + 1205.5 -68.7671 12.7351 63.2606 + 1205.6 -68.8289 12.7351 63.7556 + 1205.7 -68.8804 12.7351 64.2616 + 1205.8 -68.9319 12.7351 64.7726 + 1205.9 -68.9834 12.7351 65.2636 + 1206 -69.0246 12.7462 65.7626 + 1206.1 -69.0657 12.7351 66.2656 + 1206.2 -69.0966 12.7462 66.7586 + 1206.3 -69.1275 12.7351 67.2576 + 1206.4 -69.1584 12.7351 67.7456 + 1206.5 -69.179 12.7351 68.2426 + 1206.6 -69.1996 12.7351 68.7326 + 1206.7 -69.2408 12.7351 69.2086 + 1206.8 -69.2717 12.7351 69.6916 + 1206.9 -69.3232 12.7351 70.1676 + 1207 -69.3953 12.7351 70.6436 + 1207.1 -69.4776 12.7462 71.1136 + 1207.2 -69.5806 12.7462 71.5756 + 1207.3 -69.7042 12.7462 72.0616 + 1207.4 -69.8483 12.7573 72.5136 + 1207.5 -70.0233 12.7684 72.9316 + 1207.6 -70.2087 12.7684 73.3326 + 1207.7 -70.4146 12.7794 73.7036 + 1207.8 -70.6411 12.7905 74.0396 + 1207.9 -70.8882 12.7905 74.3406 + 1208 -71.1559 12.8016 74.6066 + 1208.1 -71.4442 12.8016 74.8346 + 1208.2 -71.7428 12.8127 75.0426 + 1208.3 -72.0723 12.8348 75.1906 + 1208.4 -72.4121 12.868 75.3156 + 1208.5 -72.7518 12.9234 75.4026 + 1208.6 -73.1019 12.9899 75.4466 + 1208.7 -73.4622 13.0674 75.4806 + 1208.9 -74.1624 13.3221 75.6576 + 1209 -74.4919 13.4993 75.6386 + 1209.1 -74.811 13.7097 75.6075 + 1209.2 -75.1096 13.9422 75.5965 + 1209.3 -75.3773 14.1969 75.5715 + 1209.4 -75.6347 14.4627 75.5585 + 1209.5 -75.8818 14.7617 75.5595 + 1209.6 -76.098 15.0718 75.5405 + 1209.7 -76.2731 15.404 75.5335 + 1209.8 -76.4378 15.7473 75.5345 + 1209.9 -76.5716 16.1016 75.5345 + 1210 -76.6746 16.4671 75.5345 + 1210.1 -76.7364 16.8436 75.5505 + 1210.2 -76.7673 17.209 75.5645 + 1210.3 -76.7776 17.5855 75.5615 + 1210.4 -76.757 17.951 75.5795 + 1210.5 -76.7261 18.3164 75.5945 + 1210.6 -76.6746 18.6708 75.5965 + 1210.7 -76.6025 19.0251 75.6065 + 1210.8 -76.4995 19.3795 75.6125 + 1210.9 -76.3863 19.7228 75.6135 + 1211 -76.2524 20.055 75.6065 + 1211.1 -76.1083 20.3762 75.6275 + 1211.2 -75.9539 20.6862 75.6365 + 1211.3 -75.7891 20.9963 75.6375 + 1211.4 -75.6141 21.3174 75.6555 + 1211.5 -75.4288 21.6164 75.6555 + 1211.6 -75.2331 21.9265 75.6605 + 1211.7 -75.0375 22.2366 75.6665 + 1211.8 -74.8316 22.5577 75.6515 + 1211.9 -74.6257 22.8788 75.6525 + 1212 -74.4094 23.2111 75.6525 + 1212.1 -74.1829 23.5654 75.6515 + 1212.2 -73.9461 23.9087 75.6505 + 1212.3 -73.6784 24.252 75.6565 + 1212.4 -73.4107 24.6064 75.6675 + 1212.5 -73.1327 24.9497 75.6755 + 1212.6 -72.8444 25.304 75.6815 + 1212.7 -72.5664 25.6584 75.6825 + 1212.8 -72.2781 26.0349 75.6915 + 1212.9 -71.9693 26.4114 75.6765 + 1213 -71.6501 26.7768 75.6785 + 1213.1 -71.3515 27.1755 75.6815 + 1213.2 -71.0323 27.5742 75.6705 + 1213.3 -70.7337 27.9839 75.6825 + 1213.4 -70.4146 28.4047 75.6935 + 1213.5 -70.0954 28.8366 75.6875 + 1213.6 -69.7762 29.2685 75.6906 + 1213.7 -69.457 29.7114 75.6876 + 1213.8 -69.1275 30.1654 75.6796 + 1213.9 -68.8084 30.6416 75.6716 + 1214 -68.4892 31.1178 75.6736 + 1214.1 -68.1494 31.594 75.6726 + 1214.2 -67.8199 32.0923 75.6676 + 1214.3 -67.4802 32.5906 75.6726 + 1214.4 -67.1404 33.1111 75.6656 + 1214.5 -66.7903 33.6316 75.6646 + 1214.6 -66.4506 34.152 75.6616 + 1214.7 -66.0902 34.6836 75.6616 + 1214.8 -65.7298 35.2151 75.6676 + 1214.9 -65.3695 35.7467 75.6646 + 1215 -65.0091 36.3004 75.6656 + 1215.1 -64.6384 36.843 75.6616 + 1215.2 -64.2678 37.3967 75.6756 + 1215.3 -63.8971 37.9614 75.6656 + 1215.4 -63.5265 38.5151 75.6706 + 1215.5 -63.1558 39.091 75.6576 + 1215.6 -62.7954 39.6668 75.6606 + 1215.7 -62.4351 40.2648 75.6576 + 1215.8 -62.085 40.8628 75.6486 + 1215.9 -61.7452 41.4608 75.6546 + 1216 -61.4158 42.0809 75.6556 + 1216.1 -61.076 42.7232 75.6486 + 1216.2 -60.7362 43.3433 75.6516 + 1216.3 -60.4067 43.9856 75.6396 + 1216.4 -60.0773 44.6279 75.6476 + 1216.5 -59.7375 45.2702 75.6486 + 1216.6 -59.3977 45.9125 75.6586 + 1216.7 -59.058 46.5658 75.6646 + 1216.8 -58.7079 47.2192 75.6576 + 1216.9 -58.3578 47.8615 75.6686 + 1217 -57.9975 48.5148 75.6566 + 1217.1 -57.6474 49.1793 75.6565 + 1217.2 -57.2973 49.8326 75.6645 + 1217.3 -56.937 50.4971 75.6605 + 1217.4 -56.5663 51.1615 75.6535 + 1217.5 -56.1956 51.837 75.6535 + 1217.6 -55.825 52.5014 75.6575 + 1217.7 -55.4646 53.1769 75.6595 + 1217.8 -55.094 53.8414 75.6565 + 1217.9 -54.7233 54.5058 75.6635 + 1218 -54.3527 55.1813 75.6615 + 1218.1 -53.982 55.8457 75.6735 + 1218.2 -53.6113 56.5102 75.6705 + 1218.3 -53.251 57.1746 75.6735 + 1218.4 -52.8803 57.8501 75.6735 + 1218.5 -52.5097 58.5035 75.6815 + 1218.6 -52.1493 59.1679 75.6805 + 1218.7 -51.7786 59.8213 75.6775 + 1218.8 -51.408 60.4746 75.6895 + 1218.9 -51.0476 61.128 75.6805 + 1219 -50.6872 61.7703 75.6905 + 1219.1 -50.3269 62.4236 75.7015 + 1219.2 -49.9665 63.0548 75.7015 + 1219.3 -49.6062 63.6971 75.7065 + 1219.4 -49.2561 64.3283 75.7035 + 1219.5 -48.906 64.9374 75.7205 + 1219.6 -48.556 65.5575 75.7305 + 1219.7 -48.2265 66.1445 75.7455 + 1219.8 -47.9382 66.6538 75.7455 + 1219.9 -47.6602 67.1965 75.7505 + 1220 -47.3719 67.6948 75.7605 + 1220.1 -47.1145 68.1377 75.7575 + 1220.2 -46.8983 68.5475 75.7695 + 1220.3 -46.6924 68.9018 75.7885 + 1220.4 -46.5173 69.2341 75.7915 + 1220.5 -46.3629 69.522 75.7885 + 1220.6 -46.2188 69.7656 75.7974 + 1220.7 -46.0849 69.9871 75.7884 + 1220.8 -45.9717 70.1864 75.7774 + 1220.9 -45.8687 70.3525 75.7764 + 1221 -45.776 70.4965 75.7564 + 1221.1 -45.704 70.6183 75.7454 + 1221.2 -45.6319 70.729 75.7364 + 1221.3 -45.5701 70.8176 75.7224 + 1221.4 -45.5186 70.9062 75.7134 + 1221.5 -45.4774 70.9727 75.6924 + 1221.6 -45.4466 71.028 75.6964 + 1221.7 -45.426 71.0834 75.6844 + 1221.8 -45.3951 71.1277 75.6804 + 1221.9 -45.3642 71.172 75.6764 + 1222 -45.3436 71.2052 75.6714 + 1222.1 -45.3333 71.2274 75.6624 + 1222.2 -45.323 71.2274 75.6734 + 1222.3 -45.3127 71.2495 75.6564 + 1222.4 -45.3024 71.2495 75.6504 + 1222.5 -45.3024 71.2606 75.6464 + 1222.6 -45.3024 71.2606 75.6354 + 1222.7 -45.2921 71.2495 75.6444 + 1222.8 -45.3024 71.2495 75.6524 + 1222.9 -45.3024 71.2384 75.6464 + 1223 -45.3127 71.2274 75.6404 + 1223.1 -45.3024 71.2163 75.6444 + 1223.2 -45.3024 71.2052 75.6384 + 1223.3 -45.3024 71.1941 75.6344 + 1223.4 -45.3127 71.172 75.6414 + 1223.5 -45.3127 71.172 75.6414 + 1223.6 -45.3127 71.1498 75.6374 + 1223.7 -45.3127 71.1388 75.6304 + 1223.8 -45.323 71.1277 75.6344 + 1223.9 -45.323 71.1055 75.6344 + 1224 -45.3333 71.0945 75.6254 + 1224.1 -45.3333 71.0834 75.6334 + 1224.2 -45.3333 71.0723 75.6444 + 1224.3 -45.3333 71.0613 75.6364 + 1224.4 -45.3333 71.0391 75.6454 + 1224.5 -45.3333 71.028 75.6434 + 1224.6 -45.3333 71.017 75.6424 + 1224.7 -45.3333 71.0059 75.6394 + 1224.8 -45.3333 70.9948 75.6384 + 1224.9 -45.3333 70.9727 75.6444 + 1225 -45.323 70.9616 75.6404 + 1225.1 -45.323 70.9616 75.6504 + 1225.2 -45.323 70.9394 75.6474 + 1225.3 -45.323 70.9284 75.6574 + 1225.4 -45.323 70.9284 75.6454 + 1225.5 -45.3333 70.9173 75.6414 + 1225.6 -45.3333 70.9062 75.6424 + 1225.7 -45.323 70.9062 75.6374 + 1225.8 -45.3333 70.8951 75.6274 + 1225.9 -45.3436 70.8951 75.6384 + 1226 -45.3436 70.8841 75.6424 + 1226.1 -45.3333 70.8841 75.6394 + 1226.2 -45.3436 70.8841 75.6374 + 1226.3 -45.3539 70.8841 75.6274 + 1226.4 -45.3436 70.8841 75.6264 + 1226.5 -45.3436 70.873 75.6254 + 1226.6 -45.3436 70.873 75.6204 + 1226.7 -45.3436 70.873 75.6254 + 1226.8 -45.3436 70.873 75.6174 + 1226.9 -45.3436 70.873 75.6174 + 1227 -45.3333 70.873 75.6204 + 1227.1 -45.3436 70.873 75.6214 + 1227.2 -45.3436 70.873 75.6324 + 1227.3 -45.3333 70.8841 75.6184 + 1227.4 -45.3333 70.8841 75.6224 + 1227.5 -45.3333 70.8841 75.6314 + 1227.6 -45.3436 70.8841 75.6264 + 1227.7 -45.3333 70.8841 75.6244 + 1227.8 -45.3333 70.8841 75.6274 + 1227.9 -45.3333 70.8841 75.6194 + 1228 -45.3333 70.8841 75.6314 + 1228.1 -45.3333 70.8841 75.6324 + 1228.2 -45.3333 70.8841 75.6394 + 1228.3 -45.3333 70.8951 75.6354 + 1228.4 -45.3333 70.8951 75.6344 + 1228.5 -45.3436 70.8951 75.6454 + 1228.6 -45.3436 70.8951 75.6294 + 1228.7 -45.3436 70.8951 75.6404 + 1228.8 -45.3333 70.9062 75.6404 + 1228.9 -45.323 70.9173 75.6254 + 1229 -45.323 70.9394 75.6264 + 1229.1 -45.3024 70.9727 75.6204 + 1229.2 -45.2818 71.0059 75.6284 + 1229.3 -45.2406 71.0723 75.6214 + 1229.4 -45.1994 71.1498 75.6254 + 1229.5 -45.148 71.2384 75.6324 + 1229.6 -45.0759 71.3602 75.6494 + 1229.7 -45.0038 71.4931 75.6514 + 1229.8 -44.9112 71.6371 75.6564 + 1229.9 -44.8185 71.8032 75.6444 + 1230 -44.7155 71.9804 75.6574 + 1230.1 -44.6023 72.1797 75.6694 + 1230.2 -44.4787 72.4012 75.6794 + 1230.3 -44.3346 72.6227 75.6854 + 1230.4 -44.1904 72.8774 75.6814 + 1230.5 -44.036 73.1321 75.7034 + 1230.6 -43.8816 73.4089 75.7044 + 1230.7 -43.7065 73.6968 75.7094 + 1230.8 -43.5315 73.9958 75.7154 + 1230.9 -43.3565 74.3059 75.7254 + 1231 -43.1711 74.6381 75.7384 + 1231.1 -42.9652 74.9703 75.7454 + 1231.2 -42.7696 75.3247 75.7434 + 1231.3 -42.5637 75.6901 75.7664 + 1231.4 -42.3474 76.0556 75.7734 + 1231.5 -42.1209 76.4432 75.7904 + 1231.6 -41.8944 76.8307 75.7944 + 1231.7 -41.6679 77.2405 75.8014 + 1231.8 -41.4208 77.6391 75.8134 + 1231.9 -41.1737 78.0489 75.8274 + 1232 -40.9369 78.4697 75.8214 + 1232.1 -40.6795 78.8905 75.8234 + 1232.2 -40.4324 79.3113 75.8214 + 1232.3 -40.1647 79.7432 75.8284 + 1232.4 -39.897 80.1751 75.8334 + 1232.5 -39.619 80.6069 75.8474 + 1232.6 -39.3307 81.0388 75.8404 + 1232.7 -39.0527 81.4818 75.8394 + 1232.8 -38.7541 81.9247 75.8534 + 1232.9 -38.4555 82.3677 75.8553 + 1233 -38.1467 82.8106 75.8573 + 1233.1 -37.8275 83.2536 75.8603 + 1233.2 -37.5083 83.7076 75.8613 + 1233.3 -37.1891 84.1506 75.8613 + 1233.4 -36.8494 84.5935 75.8773 + 1233.5 -36.5199 85.0476 75.8753 + 1233.6 -36.1801 85.4905 75.8743 + 1233.7 -35.8301 85.9335 75.8783 + 1233.8 -35.4697 86.3875 75.8773 + 1233.9 -35.1196 86.8305 75.8763 + 1234 -34.7593 87.2734 75.8773 + 1234.1 -34.3886 87.7164 75.8673 + 1234.2 -34.018 88.1593 75.8773 + 1234.3 -33.637 88.6023 75.8763 + 1234.4 -33.256 89.0342 75.8743 + 1234.5 -32.8751 89.4771 75.8733 + 1234.6 -32.4838 89.909 75.8763 + 1234.7 -32.0823 90.3409 75.8753 + 1234.8 -31.6808 90.7617 75.8833 + 1234.9 -31.2689 91.1825 75.8833 + 1235 -30.8571 91.5922 75.8873 + 1235.1 -30.4246 92.002 75.8943 + 1235.2 -30.0025 92.4006 75.9003 + 1235.3 -29.5598 92.7882 75.8963 + 1235.4 -29.1171 93.1647 75.8982 + 1235.5 -28.664 93.5412 75.8962 + 1235.6 -28.2007 93.9177 75.8972 + 1235.7 -27.7271 94.2721 75.8932 + 1235.8 -27.2432 94.6375 75.8872 + 1235.9 -26.7696 94.9808 75.8922 + 1236 -26.2754 95.3352 75.8992 + 1236.1 -25.7709 95.6785 75.8972 + 1236.2 -25.2766 96.0107 75.8982 + 1236.3 -24.7618 96.3429 75.9072 + 1236.4 -24.247 96.6751 75.9002 + 1236.5 -23.7425 97.0073 75.9052 + 1236.6 -23.2174 97.3174 75.9022 + 1236.7 -22.7026 97.6386 75.8962 + 1236.8 -22.1776 97.9486 75.8912 + 1236.9 -21.6422 98.2476 75.8652 + 1237 -21.1068 98.5577 75.8212 + 1237.1 -20.5714 98.8567 75.7652 + 1237.2 -20.0257 99.1557 75.6752 + 1237.3 -19.48 99.4436 75.5992 + 1237.4 -18.9343 99.7426 75.4562 + 1237.5 -18.3886 100.031 75.3022 + 1237.6 -17.8326 100.318 75.1212 + 1237.7 -17.2767 100.595 74.9102 + 1237.8 -16.7207 100.872 74.6702 + 1237.9 -16.1544 101.149 74.3942 + 1238 -15.5881 101.415 74.0982 + 1238.1 -15.0218 101.68 73.7782 + 1238.2 -14.4453 101.935 73.4172 + 1238.3 -13.8687 102.19 73.0522 + 1238.4 -13.3024 102.456 72.6532 + 1238.5 -12.7258 102.699 72.2552 + 1238.6 -12.139 102.954 71.8642 + 1238.7 -11.5521 103.198 71.4612 + 1238.8 -10.9755 103.452 71.0521 + 1238.9 -10.3886 103.696 70.6531 + 1239 -9.79147 103.939 70.2461 + 1239.1 -9.2046 104.194 69.8451 + 1239.2 -8.60743 104.438 69.4561 + 1239.3 -7.99997 104.681 69.0541 + 1239.4 -7.4028 104.925 68.6641 + 1239.5 -6.79534 105.169 68.2771 + 1239.6 -6.17758 105.423 67.8731 + 1239.7 -5.57012 105.667 67.4901 + 1239.8 -4.94206 105.911 67.0871 + 1239.9 -4.3346 106.165 66.7061 + 1240 -3.70655 106.409 66.3051 + 1240.1 -3.08879 106.653 65.9211 + 1240.2 -2.46073 106.907 65.5341 + 1240.3 -1.83268 107.162 65.1571 + 1240.4 -1.20463 107.406 64.7991 + 1240.5 -0.576574 107.66 64.4411 + 1240.6 0.0514798 107.926 64.1091 + 1240.7 0.689829 108.17 63.7811 + 1240.8 1.31788 108.435 63.4661 + 1240.9 1.94594 108.69 63.1511 + 1241 2.58428 108.956 62.8421 + 1241.1 3.22263 109.211 62.5391 + 1241.2 3.86098 109.465 62.2451 + 1241.3 4.48904 109.731 61.946 + 1241.4 5.12738 109.997 61.645 + 1241.5 5.76573 110.263 61.353 + 1241.6 6.40408 110.528 61.058 + 1241.7 7.05273 110.794 60.768 + 1241.8 7.69108 111.06 60.474 + 1241.9 8.32942 111.326 60.173 + 1242 8.96777 111.591 59.885 + 1242.1 9.61642 111.857 59.578 + 1242.2 10.2548 112.123 59.279 + 1242.3 10.9034 112.389 58.98 + 1242.4 11.5418 112.666 58.669 + 1242.5 12.1904 112.92 58.367 + 1242.6 12.839 113.186 58.074 + 1242.7 13.4877 113.452 57.775 + 1242.8 14.1363 113.706 57.513 + 1242.9 14.8056 113.961 57.273 + 1243 15.4748 114.205 57.068 + 1243.1 16.1543 114.448 56.8959 + 1243.2 16.8442 114.681 56.7449 + 1243.3 17.5546 114.902 56.6469 + 1243.4 18.2547 115.113 56.5789 + 1243.5 18.9857 115.323 56.5329 + 1243.6 19.7064 115.523 56.5099 + 1243.7 20.4374 115.711 56.4939 + 1243.8 21.1685 115.888 56.4989 + 1243.9 21.8995 116.065 56.5129 + 1244 22.6305 116.231 56.5399 + 1244.1 23.3615 116.386 56.5569 + 1244.2 24.1028 116.519 56.5699 + 1244.3 24.8441 116.652 56.5869 + 1244.4 25.5751 116.763 56.6089 + 1244.5 26.3164 116.874 56.6159 + 1244.6 27.0577 116.962 56.6279 + 1244.7 27.799 117.051 56.6359 + 1244.8 28.5506 117.117 56.6259 + 1244.9 29.3022 117.173 56.6189 + 1245 30.0539 117.217 56.6258 + 1245.1 30.8055 117.25 56.6158 + 1245.2 31.5674 117.272 56.6098 + 1245.3 32.3293 117.283 56.6118 + 1245.4 33.0912 117.283 56.6018 + 1245.5 33.8633 117.272 56.6058 + 1245.6 34.6355 117.261 56.6018 + 1245.7 35.4077 117.228 56.5978 + 1245.8 36.1902 117.195 56.6048 + 1245.9 36.9624 117.15 56.5998 + 1246 37.7449 117.095 56.6088 + 1246.1 38.5274 117.04 56.6038 + 1246.2 39.3099 116.962 56.6058 + 1246.3 40.0924 116.885 56.6008 + 1246.4 40.8749 116.796 56.6008 + 1246.5 41.6677 116.696 56.6088 + 1246.6 42.4605 116.597 56.6098 + 1246.7 43.243 116.475 56.6038 + 1246.8 44.0357 116.353 56.6058 + 1246.9 44.8285 116.22 56.5998 + 1247 45.6213 116.076 56.6078 + 1247.1 46.4141 115.932 56.6078 + 1247.2 47.2069 115.766 56.6008 + 1247.3 47.9997 115.589 56.6078 + 1247.4 48.7925 115.412 56.6078 + 1247.5 49.5956 115.224 56.6018 + 1247.6 50.3986 115.024 56.6058 + 1247.7 51.2017 114.803 56.6148 + 1247.8 51.9945 114.592 56.6098 + 1247.9 52.7976 114.36 56.6038 + 1248 53.6007 114.127 56.6097 + 1248.1 54.4038 113.895 56.6097 + 1248.2 55.2068 113.651 56.6097 + 1248.3 56.0099 113.408 56.6237 + 1248.4 56.8027 113.153 56.6207 + 1248.5 57.6058 112.887 56.6147 + 1248.6 58.4089 112.621 56.6027 + 1248.7 59.2017 112.344 56.6087 + 1248.8 59.9945 112.068 56.6137 + 1248.9 60.777 111.78 56.6067 + 1249 61.5697 111.481 56.6127 + 1249.1 62.3625 111.193 56.6207 + 1249.2 63.1553 110.883 56.6117 + 1249.3 63.9378 110.584 56.6217 + 1249.4 64.7203 110.274 56.6287 + 1249.5 65.5028 109.964 56.6207 + 1249.6 66.2956 109.642 56.6397 + 1249.7 67.0678 109.31 56.6317 + 1249.8 67.84 108.967 56.6397 + 1249.9 68.6122 108.624 56.6487 + 1250 69.3844 108.28 56.6437 + 1250.1 70.136 107.926 56.6447 + 1250.2 70.8876 107.572 56.6517 + 1250.3 71.6392 107.206 56.6497 + 1250.4 72.3908 106.841 56.6427 + 1250.5 73.1321 106.464 56.6447 + 1250.6 73.8837 106.099 56.6437 + 1250.7 74.6353 105.722 56.6487 + 1250.8 75.3766 105.357 56.6487 + 1250.9 76.1282 104.969 56.6497 + 1251 76.8799 104.593 56.6477 + 1251.1 77.6315 104.205 56.6377 + 1251.2 78.3934 103.818 56.6497 + 1251.3 79.145 103.43 56.6507 + 1251.4 79.9172 103.02 56.6547 + 1251.5 80.6791 102.622 56.6527 + 1251.6 81.4513 102.212 56.6527 + 1251.7 82.2338 101.802 56.6517 + 1251.8 83.0163 101.381 56.6607 + 1251.9 83.7987 100.95 56.6666 + 1252 84.5915 100.518 56.6716 + 1252.1 85.3946 100.075 56.6816 + 1252.2 86.1977 99.6318 56.6816 + 1252.3 87.0111 99.1778 56.6866 + 1252.4 87.8348 98.7237 56.7006 + 1252.5 88.6687 98.2586 56.6946 + 1252.6 89.5027 97.7935 56.6986 + 1252.7 90.3573 97.3063 56.7006 + 1252.8 91.2119 96.819 56.7036 + 1252.9 92.087 96.3097 56.7086 + 1253 92.9725 95.8113 56.7106 + 1253.1 93.8682 95.2909 56.7206 + 1253.2 94.7743 94.7593 56.7296 + 1253.3 95.6906 94.2278 56.7306 + 1253.4 96.6276 93.6852 56.7336 + 1253.5 97.5748 93.1315 56.7386 + 1253.6 98.5117 92.5667 56.7496 + 1253.7 99.4795 92.002 56.7526 + 1253.8 100.437 91.4372 56.7596 + 1253.9 101.405 90.8614 56.7705 + 1254 102.383 90.2745 56.7735 + 1254.1 103.371 89.6986 56.7765 + 1254.2 104.37 89.0896 56.7755 + 1254.3 105.379 88.4916 56.7715 + 1254.4 106.398 87.8825 56.7615 + 1254.5 107.428 87.2513 56.7725 + 1254.6 108.478 86.6312 56.7745 + 1254.7 109.539 86 56.7715 + 1254.8 110.599 85.3577 56.7795 + 1254.9 111.68 84.7044 56.7765 + 1255 112.772 84.051 56.7784 + 1255.1 113.863 83.3977 56.7814 + 1255.2 114.965 82.7333 56.7914 + 1255.3 116.056 82.0688 56.7904 + 1255.4 117.137 81.3823 56.8004 + 1255.5 118.218 80.6957 56.8194 + 1255.6 119.279 80.0202 56.8224 + 1255.7 120.308 79.3225 56.8214 + 1255.8 121.317 78.6249 56.8414 + 1255.9 122.285 77.9051 56.8504 + 1256 123.232 77.1632 56.8563 + 1256.1 124.128 76.4212 56.8443 + 1256.2 124.993 75.6682 56.8423 + 1256.3 125.796 74.9152 56.8543 + 1256.4 126.579 74.1843 56.8273 + 1256.5 127.299 73.4645 56.8013 + 1256.6 127.979 72.7337 56.7973 + 1256.7 128.628 72.0582 56.7913 + 1256.8 129.235 71.4159 56.7903 + 1256.9 129.812 70.8068 56.7803 + 1257 130.337 70.231 56.7673 + 1257.1 130.821 69.6994 56.7553 + 1257.2 131.274 69.19 56.7303 + 1257.3 131.685 68.7139 56.7113 + 1257.4 132.066 68.2709 56.6943 + 1257.5 132.406 67.8612 56.6703 + 1257.6 132.705 67.4847 56.6743 + 1257.7 132.973 67.1303 56.6733 + 1257.8 133.209 66.787 56.6623 + 1257.9 133.436 66.477 56.6813 + 1258 133.662 66.1448 56.7123 + 1258.1 133.879 65.8236 56.7043 + 1258.2 134.084 65.5025 56.7013 + 1258.3 134.27 65.1703 56.7223 + 1258.4 134.476 64.8159 56.7173 + 1258.5 134.692 64.4394 56.7503 + 1258.6 134.918 64.0407 56.7743 + 1258.7 135.155 63.6199 56.7632 + 1258.8 135.382 63.188 56.7762 + 1258.9 135.629 62.734 56.7882 + 1259 135.876 62.28 56.7872 + 1259.1 136.133 61.8149 56.7862 + 1259.2 136.401 61.3166 56.7932 + 1259.3 136.669 60.8183 56.7762 + 1259.4 136.937 60.3089 56.7832 + 1259.5 137.215 59.7884 56.7742 + 1259.6 137.493 59.2568 56.7662 + 1259.7 137.781 58.7032 56.7702 + 1259.8 138.079 58.1384 56.7772 + 1259.9 138.388 57.5736 56.7622 + 1260 138.697 56.9867 56.7652 + 1260.1 139.016 56.3998 56.7662 + 1260.2 139.336 55.8018 56.7762 + 1260.3 139.655 55.1928 56.7712 + 1260.4 139.984 54.5726 56.7662 + 1260.5 140.314 53.9525 56.7732 + 1260.6 140.643 53.3324 56.7802 + 1260.7 140.973 52.7012 56.7812 + 1260.8 141.312 52.081 56.7862 + 1260.9 141.632 51.4609 56.7802 + 1261 141.951 50.8297 56.7902 + 1261.1 142.26 50.2206 56.7972 + 1261.2 142.548 49.6005 56.7962 + 1261.3 142.836 48.9914 56.7762 + 1261.4 143.114 48.3934 56.7772 + 1261.5 143.351 47.8065 56.7572 + 1261.6 143.588 47.2196 56.7492 + 1261.7 143.794 46.6438 56.7392 + 1261.8 143.989 46.079 56.7332 + 1261.9 144.164 45.5142 56.7352 + 1262 144.319 44.9716 56.7232 + 1262.1 144.473 44.4401 56.7122 + 1262.2 144.607 43.9196 56.7182 + 1262.3 144.731 43.4656 56.6582 + 1262.4 144.844 43.0337 56.6522 + 1262.5 144.947 42.6129 56.6392 + 1262.6 145.05 42.2585 56.6422 + 1262.7 145.122 41.9595 56.6592 + 1262.8 145.184 41.6938 56.6672 + 1262.9 145.246 41.4501 56.6912 + 1263 145.297 41.2176 56.6922 + 1263.1 145.318 41.0072 56.7052 + 1263.2 145.338 40.8079 56.7082 + 1263.3 145.338 40.6196 56.7202 + 1263.4 145.318 40.4314 56.7282 + 1263.5 145.287 40.2542 56.7352 + 1263.6 145.246 40.0659 56.7382 + 1263.7 145.194 39.8887 56.7322 + 1263.8 145.122 39.7226 56.7452 + 1263.9 145.04 39.5565 56.7482 + 1264 144.947 39.3904 56.7392 + 1264.1 144.834 39.2354 56.7372 + 1264.2 144.72 39.0582 56.7292 + 1264.3 144.576 38.8921 56.7242 + 1264.4 144.442 38.726 56.7122 + 1264.5 144.267 38.5599 56.7073 + 1264.6 144.103 38.3827 56.7013 + 1264.7 143.917 38.2166 56.6953 + 1264.8 143.711 38.0394 56.6953 + 1264.9 143.506 37.8622 56.7013 + 1265 143.279 37.6739 56.6933 + 1265.1 143.053 37.4857 56.6883 + 1265.2 142.816 37.2864 56.6793 + 1265.3 142.548 37.0981 56.6703 + 1265.4 142.28 36.8877 56.6843 + 1265.5 142.013 36.6994 56.6653 + 1265.6 141.735 36.489 56.6703 + 1265.7 141.436 36.2786 56.6573 + 1265.8 141.137 36.0682 56.6513 + 1265.9 140.829 35.8467 56.6583 + 1266 140.509 35.6363 56.6474 + 1266.1 140.18 35.4148 56.6604 + 1266.2 139.851 35.1823 56.6514 + 1266.3 139.511 34.9608 56.6444 + 1266.4 139.161 34.7283 56.6564 + 1266.5 138.8 34.4957 56.6434 + 1266.6 138.44 34.2631 56.6364 + 1266.7 138.069 34.0195 56.6384 + 1266.8 137.688 33.7759 56.6364 + 1266.9 137.318 33.5433 56.6434 + 1267 136.916 33.2997 56.6334 + 1267.1 136.535 33.045 56.6365 + 1267.2 136.134 32.8014 56.6455 + 1267.3 135.722 32.5467 56.6465 + 1267.4 135.31 32.303 56.6365 + 1267.5 134.898 32.0373 56.6445 + 1267.6 134.476 31.7936 56.6335 + 1267.7 134.054 31.5279 56.6365 + 1267.8 133.632 31.2621 56.6485 + 1267.9 133.199 30.9963 56.6425 + 1268 132.767 30.7416 56.6475 + 1268.1 132.324 30.4758 56.6466 + 1268.2 131.892 30.2211 56.6476 + 1268.3 131.439 29.9554 56.6386 + 1268.4 130.996 29.6785 56.6416 + 1268.5 130.553 29.4127 56.6436 + 1268.6 130.1 29.1359 56.6416 + 1268.7 129.647 28.8701 56.6346 + 1268.8 129.194 28.6043 56.6296 + 1268.9 128.731 28.3275 56.6386 + 1269 128.268 28.0506 56.6316 + 1269.1 127.815 27.7848 56.6247 + 1269.2 127.341 27.508 56.6257 + 1269.3 126.878 27.2311 56.6247 + 1269.4 126.404 26.9543 56.6237 + 1269.5 125.93 26.6664 56.6337 + 1269.6 125.457 26.4006 56.6267 + 1269.7 124.983 26.1127 56.6267 + 1269.8 124.499 25.8358 56.6277 + 1269.9 124.026 25.559 56.6277 + 1270 123.531 25.271 56.6378 + 1270.1 123.058 24.9942 56.6188 + 1270.2 122.564 24.7063 56.6298 + 1270.3 122.08 24.4294 56.6318 + 1270.4 121.606 24.1526 56.6188 + 1270.5 121.122 23.8646 56.6208 + 1270.6 120.628 23.5878 56.6258 + 1270.7 120.154 23.3109 56.6238 + 1270.8 119.66 23.023 56.6208 + 1270.9 119.176 22.7351 56.6318 + 1271 118.682 22.4582 56.6289 + 1271.1 118.198 22.1703 56.6349 + 1271.2 117.704 21.8824 56.6369 + 1271.3 117.21 21.5945 56.6339 + 1271.4 116.705 21.3065 56.6259 + 1271.5 116.201 21.0076 56.6329 + 1271.6 115.696 20.7307 56.6279 + 1271.7 115.192 20.4317 56.6289 + 1271.8 114.677 20.1327 56.6179 + 1271.9 114.162 19.8337 56.6229 + 1272 113.647 19.5347 56.605 + 1272.1 113.122 19.2357 56.612 + 1272.2 112.597 18.9367 56.617 + 1272.3 112.072 18.6266 56.611 + 1272.4 111.537 18.3276 56.612 + 1272.5 111.001 18.0065 56.607 + 1272.6 110.476 17.7075 56.602 + 1272.7 109.93 17.3974 56.6 + 1272.8 109.385 17.0763 56.6 + 1272.9 108.839 16.7662 56.6 + 1273 108.283 16.4451 56.6121 + 1273.1 107.737 16.1239 56.6121 + 1273.2 107.181 15.8138 56.6121 + 1273.3 106.625 15.4816 56.6141 + 1273.4 106.069 15.1605 56.6181 + 1273.5 105.503 14.8393 56.6121 + 1273.6 104.937 14.5293 56.6201 + 1273.7 104.371 14.197 56.6161 + 1273.8 103.794 13.8759 56.6171 + 1273.9 103.228 13.5437 56.6242 + 1274 102.662 13.2225 56.6162 + 1274.1 102.095 12.8903 56.6182 + 1274.2 101.529 12.5692 56.6322 + 1274.3 100.963 12.248 56.6352 + 1274.4 100.396 11.9269 56.6342 + 1274.5 99.8404 11.6057 56.6342 + 1274.6 99.2844 11.2846 56.6502 + 1274.7 98.7182 10.9634 56.6432 + 1274.8 98.1622 10.6423 56.6502 + 1274.9 97.6165 10.3322 56.6572 + 1275 97.0708 10.0111 56.6563 + 1275.1 96.5148 9.68993 56.6663 + 1275.2 95.9794 9.37986 56.6533 + 1275.3 95.4234 9.06979 56.6603 + 1275.4 94.8881 8.74864 56.6653 + 1275.5 94.3424 8.43857 56.6573 + 1275.6 93.7967 8.1285 56.6673 + 1275.7 93.251 7.81843 56.6703 + 1275.8 92.7156 7.50836 56.6643 + 1275.9 92.1596 7.19828 56.6783 + 1276 91.6242 6.88821 56.6613 + 1276.1 91.0785 6.57814 56.6663 + 1276.2 90.5329 6.257 56.6714 + 1276.3 89.9769 5.94693 56.6734 + 1276.4 89.4312 5.63685 56.6724 + 1276.5 88.8855 5.32678 56.6824 + 1276.6 88.3398 5.01671 56.6704 + 1276.7 87.7735 4.69557 56.6794 + 1276.8 87.2278 4.3855 56.6884 + 1276.9 86.6925 4.07542 56.6874 + 1277 86.1365 3.75428 56.6824 + 1277.1 85.5805 3.44421 56.6864 + 1277.2 85.0348 3.12306 56.6884 + 1277.3 84.4788 2.81299 56.6834 + 1277.4 83.9228 2.49185 56.6754 + 1277.5 83.3669 2.18178 56.6685 + 1277.6 82.8109 1.86063 56.6705 + 1277.7 82.2549 1.53949 56.6615 + 1277.8 81.6989 1.21834 56.6655 + 1277.9 81.1429 0.908269 56.6555 + 1278 80.5766 0.587125 56.6485 + 1278.1 80.0207 0.26598 56.6535 + 1278.2 79.4544 -0.0551653 56.6545 + 1278.3 78.8984 -0.37631 56.6455 + 1278.4 78.3424 -0.697455 56.6465 + 1278.5 77.7761 -1.00753 56.6505 + 1278.6 77.2201 -1.32867 56.6425 + 1278.7 76.6539 -1.63874 56.6455 + 1278.8 76.0979 -1.94881 56.6505 + 1278.9 75.5316 -2.26996 56.6466 + 1279 74.9756 -2.5911 56.6486 + 1279.1 74.4093 -2.90117 56.6466 + 1279.2 73.8534 -3.21124 56.6516 + 1279.3 73.2974 -3.52131 56.6486 + 1279.4 72.7414 -3.83139 56.6396 + 1279.5 72.1854 -4.14146 56.6466 + 1279.6 71.6397 -4.45153 56.6346 + 1279.7 71.0837 -4.7616 56.6446 + 1279.8 70.538 -5.07167 56.6266 + 1279.9 69.9924 -5.37066 56.6316 + 1280 69.4467 -5.68074 56.6356 + 1280.1 68.901 -5.99081 56.6266 + 1280.2 68.3553 -6.2898 56.6336 + 1280.3 67.8096 -6.5888 56.6346 + 1280.4 67.2639 -6.89887 56.6286 + 1280.5 66.7285 -7.19787 56.6286 + 1280.6 66.1931 -7.49686 56.6307 + 1280.7 65.6474 -7.80693 56.6397 + 1280.8 65.1121 -8.09486 56.6387 + 1280.9 64.5767 -8.40493 56.6397 + 1281 64.0516 -8.70392 56.6347 + 1281.1 63.5162 -8.99185 56.6357 + 1281.2 62.9911 -9.29084 56.6307 + 1281.3 62.4557 -9.58984 56.6407 + 1281.4 61.9306 -9.87776 56.6287 + 1281.5 61.4158 -10.1768 56.6407 + 1281.6 60.8907 -10.4647 56.6377 + 1281.7 60.3759 -10.7637 56.6347 + 1281.8 59.8714 -11.0516 56.6447 + 1281.9 59.3566 -11.3395 56.6497 + 1282 58.8521 -11.6274 56.6337 + 1282.1 58.3476 -11.9154 56.6497 + 1282.2 57.8534 -12.1922 56.6477 + 1282.3 57.3489 -12.4801 56.6397 + 1282.4 56.8547 -12.757 56.6507 + 1282.5 56.3605 -13.0449 56.6407 + 1282.6 55.8765 -13.3218 56.6447 + 1282.7 55.3823 -13.5986 56.6427 + 1282.8 54.8984 -13.8755 56.6407 + 1282.9 54.4145 -14.1523 56.6438 + 1283 53.9306 -14.4181 56.6398 + 1283.1 53.457 -14.6949 56.6478 + 1283.2 52.9834 -14.9718 56.6348 + 1283.3 52.5097 -15.2375 56.6298 + 1283.4 52.0361 -15.5144 56.6388 + 1283.5 51.5625 -15.7802 56.6268 + 1283.6 51.0992 -16.057 56.6308 + 1283.7 50.6359 -16.3228 56.6288 + 1283.8 50.1623 -16.5775 56.6378 + 1283.9 49.6989 -16.8433 56.6358 + 1284 49.2253 -17.109 56.6248 + 1284.1 48.7723 -17.3748 56.6298 + 1284.2 48.309 -17.6295 56.6338 + 1284.3 47.8559 -17.8953 56.6238 + 1284.4 47.3926 -18.15 56.6288 + 1284.5 46.9396 -18.4158 56.6298 + 1284.6 46.4866 -18.6594 56.6358 + 1284.7 46.0336 -18.9252 56.6308 + 1284.8 45.5805 -19.1799 56.6308 + 1284.9 45.1275 -19.4235 56.6338 + 1285 44.6745 -19.6782 56.6338 + 1285.1 44.2215 -19.9329 56.6298 + 1285.2 43.7684 -20.1876 56.6328 + 1285.3 43.3154 -20.4312 56.6458 + 1285.4 42.8624 -20.6859 56.6468 + 1285.5 42.4197 -20.9295 56.6518 + 1285.6 41.9666 -21.1842 56.6538 + 1285.7 41.5136 -21.4389 56.6508 + 1285.8 41.0709 -21.6826 56.6588 + 1285.9 40.6179 -21.9262 56.6628 + 1286 40.1648 -22.1698 56.6728 + 1286.1 39.7221 -22.4245 56.6788 + 1286.2 39.2897 -22.6681 56.6778 + 1286.3 38.8366 -22.9118 56.6868 + 1286.4 38.3939 -23.1554 56.6878 + 1286.5 37.9512 -23.399 56.6878 + 1286.6 37.5187 -23.6426 56.6928 + 1286.7 37.076 -23.8863 56.6818 + 1286.8 36.6333 -24.1299 56.7018 + 1286.9 36.2009 -24.3735 56.7089 + 1287 35.7581 -24.6172 56.6959 + 1287.1 35.3154 -24.8608 56.7079 + 1287.2 34.883 -25.1044 56.6999 + 1287.3 34.4505 -25.348 56.7019 + 1287.4 34.0078 -25.6027 56.6979 + 1287.5 33.5754 -25.8353 56.6979 + 1287.6 33.1326 -26.09 56.6869 + 1287.7 32.7002 -26.3336 56.6869 + 1287.8 32.2575 -26.5772 56.6899 + 1287.9 31.8148 -26.8209 56.6769 + 1288 31.3926 -27.0645 56.6789 + 1288.1 30.9499 -27.3081 56.6749 + 1288.2 30.5175 -27.5517 56.6629 + 1288.3 30.0747 -27.8064 56.6509 + 1288.4 29.6423 -28.0501 56.6549 + 1288.5 29.2099 -28.2937 56.6489 + 1288.6 28.7877 -28.5262 56.6469 + 1288.7 28.3965 -28.7477 56.6099 + 1288.8 28.0258 -28.947 56.5659 + 1288.9 27.6655 -29.1464 56.5509 + 1289 27.3669 -29.3236 56.5329 + 1289.1 27.0992 -29.4786 56.5169 + 1289.2 26.8933 -29.6004 56.5339 + 1289.3 26.6873 -29.7111 56.5759 + 1289.4 26.4917 -29.8108 56.5829 + 1289.5 26.3064 -29.8773 56.5819 + 1289.6 26.1519 -29.9105 56.5599 + 1289.7 25.9769 -29.9326 56.5459 + 1289.8 25.8122 -29.9326 56.5489 + 1289.9 25.6268 -29.9105 56.5469 + 1290 25.4415 -29.8551 56.5509 + 1290.1 25.2562 -29.7887 56.5529 + 1290.2 25.0709 -29.689 56.5629 + 1290.3 24.8752 -29.5672 56.5739 + 1290.4 24.6899 -29.4454 56.5689 + 1290.5 24.5046 -29.2903 56.5779 + 1290.6 24.3089 -29.1132 56.5729 + 1290.7 24.1133 -28.936 56.5729 + 1290.8 23.928 -28.7367 56.5769 + 1290.9 23.7221 -28.5262 56.5709 + 1291 23.5161 -28.2937 56.5709 + 1291.1 23.3102 -28.039 56.5689 + 1291.2 23.1043 -27.7732 56.5589 + 1291.3 22.8881 -27.4964 56.5599 + 1291.4 22.6616 -27.2085 56.5699 + 1291.5 22.4351 -26.8984 56.5609 + 1291.6 22.1983 -26.5773 56.5609 + 1291.7 21.9614 -26.2229 56.5619 + 1291.8 21.7143 -25.8685 56.5539 + 1291.9 21.4569 -25.5031 56.5469 + 1292 21.2098 -25.1155 56.5539 + 1292.1 20.9421 -24.7058 56.5579 + 1292.2 20.6641 -24.285 56.5589 + 1292.3 20.3861 -23.842 56.5459 + 1292.4 20.0979 -23.388 56.5529 + 1292.5 19.8096 -22.9229 56.5609 + 1292.6 19.511 -22.4356 56.5569 + 1292.7 19.2021 -21.9373 56.5649 + 1292.8 18.8829 -21.4279 56.5699 + 1292.9 18.574 -20.9185 56.5759 + 1293 18.2549 -20.387 56.5859 + 1293.1 17.9254 -19.8554 56.5839 + 1293.2 17.5959 -19.3017 56.5819 + 1293.3 17.2664 -18.748 56.5899 + 1293.4 16.9267 -18.1943 56.593 + 1293.5 16.5869 -17.6185 56.594 + 1293.6 16.2471 -17.0427 56.59 + 1293.7 15.9074 -16.4668 56.583 + 1293.8 15.5676 -15.891 56.578 + 1293.9 15.2175 -15.3041 56.583 + 1294 14.8675 -14.7172 56.584 + 1294.1 14.5071 -14.1192 56.584 + 1294.2 14.157 -13.5212 56.585 + 1294.3 13.807 -12.9232 56.568 + 1294.4 13.4569 -12.3252 56.579 + 1294.5 13.0965 -11.7161 56.577 + 1294.6 12.7362 -11.1071 56.579 + 1294.7 12.3758 -10.498 56.585 + 1294.8 12.0155 -9.88895 56.585 + 1294.9 11.6551 -9.26882 56.577 + 1295 11.2844 -8.64868 56.591 + 1295.1 10.9138 -8.02855 56.595 + 1295.2 10.5431 -7.39734 56.596 + 1295.3 10.1828 -6.7772 56.6 + 1295.4 9.81211 -6.14599 56.611 + 1295.5 9.44145 -5.51478 56.599 + 1295.6 9.0605 -4.88357 56.607 + 1295.7 8.70014 -4.25236 56.624 + 1295.8 8.32948 -3.62115 56.612 + 1295.9 7.94853 -2.98994 56.625 + 1296 7.57787 -2.35873 56.626 + 1296.1 7.20721 -1.71645 56.624 + 1296.2 6.83656 -1.09631 56.633 + 1296.3 6.4762 -0.465101 56.636 + 1296.4 6.11583 0.155035 56.625 + 1296.5 5.75547 0.775171 56.638 + 1296.6 5.39511 1.39531 56.646 + 1296.7 5.03475 1.9933 56.648 + 1296.8 4.68469 2.59128 56.665 + 1296.9 4.36551 3.14498 56.654 + 1297 4.08752 3.6433 56.622 + 1297.1 3.77864 4.1527 56.615 + 1297.2 3.51094 4.6178 56.643 + 1297.3 3.26384 5.02753 56.658 + 1297.4 3.04762 5.3819 56.667 + 1297.5 2.86229 5.69197 56.677 + 1297.6 2.68726 5.96881 56.679 + 1297.7 2.54312 6.21244 56.66 + 1297.8 2.39897 6.42284 56.628 + 1297.9 2.26512 6.62217 56.592 + 1298 2.15187 6.78828 56.529 + 1298.1 2.0592 6.93224 56.431 + 1298.2 1.96654 7.06512 56.298 + 1298.3 1.88417 7.18694 56.137 + 1298.4 1.82239 7.29767 55.953 + 1298.5 1.74003 7.40841 55.734 + 1298.6 1.67825 7.497 55.502 + 1298.7 1.62677 7.58559 55.24 + 1298.8 1.58559 7.66311 54.962 + 1298.9 1.5547 7.72955 54.671 + 1299 1.51351 7.78492 54.385 + 1299.1 1.49292 7.82922 54.08 + 1299.2 1.47233 7.88459 53.766 + 1299.3 1.46203 7.91781 53.478 + 1299.4 1.46203 7.95103 53.148 + 1299.5 1.45174 7.98425 52.821 + 1299.6 1.45174 8.0064 52.491 + 1299.7 1.45174 8.01747 52.172 + 1299.8 1.46203 8.02854 51.833 + 1299.9 1.47233 8.03962 51.493 + 1300 1.49292 8.03962 51.165 + 1300.1 1.50322 8.03962 50.854 + 1300.2 1.52381 8.03962 50.539 + 1300.3 1.5341 8.02854 50.213 + 1300.4 1.5547 8.01747 49.892 + 1300.5 1.56499 8.00639 49.565 + 1300.6 1.59588 8.00639 49.225 + 1300.7 1.60618 8.00639 48.875 + 1300.8 1.62677 7.99532 48.522 + 1300.9 1.63706 7.99532 48.156 + 1301 1.66795 7.98424 47.781 + 1301.1 1.68854 7.98424 47.399 + 1301.2 1.69884 7.97317 47.018 + 1301.3 1.70914 7.97317 46.636 + 1301.4 1.72973 7.97317 46.246 + 1301.5 1.74002 7.97317 45.868 + 1301.6 1.75032 7.97317 45.5 + 1301.7 1.75032 7.97317 45.133 + 1301.8 1.74002 7.96209 44.789 + 1301.9 1.72973 7.95102 44.466 + 1302 1.71943 7.93994 44.128 + 1302.1 1.70913 7.92887 43.803 + 1302.2 1.70913 7.91779 43.489 + 1302.3 1.70913 7.90672 43.184 + 1302.4 1.69884 7.89565 42.873 + 1302.5 1.67825 7.88457 42.596 + 1302.6 1.66795 7.8735 42.324 + 1302.7 1.66795 7.8735 42.041 + 1302.8 1.65765 7.86242 41.757 + 1302.9 1.63706 7.85135 41.498 + 1303 1.61647 7.84027 41.236 + 1303.1 1.59588 7.81813 40.973 + 1303.2 1.55469 7.78491 40.704 + 1303.3 1.51351 7.76276 40.438 + 1303.4 1.48262 7.74061 40.176 + 1303.5 1.42085 7.69631 39.907 + 1303.6 1.35907 7.66309 39.665 + 1303.7 1.287 7.6188 39.415 + 1303.8 1.21493 7.56343 39.162 + 1303.9 1.12226 7.50806 38.895 + 1304 1.0296 7.44161 38.646 + 1304.1 0.926639 7.37517 38.385 + 1304.2 0.813383 7.29765 38.129 + 1304.3 0.700127 7.20906 37.869 + 1304.4 0.566279 7.12047 37.614 + 1304.5 0.432431 7.04295 37.351 + 1304.6 0.288288 6.96544 37.096 + 1304.7 0.144144 6.87685 36.833 + 1304.8 -0.010296 6.78826 36.583 + 1304.9 -0.164736 6.69966 36.336 + 1305 -0.329471 6.62215 36.079 + 1305.1 -0.463319 6.56678 35.821 + 1305.2 -0.597167 6.51141 35.538 + 1305.3 -0.720719 6.44497 35.258 + 1305.4 -0.833974 6.37852 35.02 + 1305.5 -0.936934 6.31208 34.767 + 1305.6 -1.0296 6.24564 34.5 + 1305.7 -1.10167 6.20134 34.228 + 1305.8 -1.16345 6.15704 33.927 + 1305.9 -1.22522 6.12382 33.61 + 1306 -1.287 6.07953 33.311 + 1306.1 -1.33848 6.03523 32.987 + 1306.2 -1.41055 6.00201 32.67 + 1306.3 -1.46203 5.95771 32.361 + 1306.4 -1.5238 5.92449 32.038 + 1306.5 -1.57528 5.90235 31.715 + 1306.6 -1.62676 5.86912 31.369 + 1306.7 -1.67824 5.84698 31.04 + 1306.8 -1.71943 5.82483 30.713 + 1306.9 -1.76061 5.80268 30.406 + 1307 -1.81209 5.78053 30.122 + 1307.1 -1.84298 5.75838 29.842 + 1307.2 -1.86357 5.74731 29.543 + 1307.3 -1.87387 5.72516 29.257 + 1307.4 -1.88416 5.71409 28.978 + 1307.5 -1.89446 5.70301 28.724 + 1307.6 -1.90475 5.69194 28.463 + 1307.7 -1.91505 5.69194 28.208 + 1307.8 -1.92535 5.69194 27.943 + 1307.9 -1.93564 5.69194 27.7 + 1308 -1.93564 5.69194 27.438 + 1308.1 -1.92535 5.70301 27.173 + 1308.2 -1.92535 5.70301 26.911 + 1308.3 -1.94594 5.71409 26.66 + 1308.4 -1.95623 5.71409 26.422 + 1308.5 -1.95623 5.72516 26.171 + 1308.6 -1.95623 5.72516 25.906 + 1308.7 -1.94594 5.72516 25.653 + 1308.8 -1.94594 5.73623 25.397 + 1308.9 -1.93564 5.73623 25.142 + 1309 -1.92535 5.73623 24.894 + 1309.1 -1.92535 5.74731 24.649 + 1309.2 -1.91505 5.74731 24.406 + 1309.3 -1.89446 5.75838 24.147 + 1309.4 -1.87387 5.75838 23.889 + 1309.5 -1.86357 5.75838 23.642 + 1309.6 -1.86357 5.75838 23.406 + 1309.7 -1.86357 5.75838 23.167 + 1309.8 -1.85327 5.75838 22.942 + 1309.9 -1.85327 5.76945 22.715 + 1310 -1.85327 5.76945 22.499 + 1310.1 -1.87386 5.76945 22.288 + 1310.2 -1.86357 5.75838 22.073 + 1310.3 -1.86357 5.76945 21.877 + 1310.4 -1.88416 5.76945 21.669 + 1310.5 -1.88416 5.76945 21.465 + 1310.6 -1.88416 5.76945 21.269 + 1310.7 -1.90475 5.76945 21.065 + 1310.8 -1.91505 5.76945 20.856 + 1310.9 -1.91505 5.76945 20.648 + 1311 -1.92534 5.76945 20.43 + 1311.1 -1.91505 5.76945 20.214 + 1311.2 -1.92534 5.76945 19.995 + 1311.3 -1.92534 5.76945 19.785 + 1311.4 -1.93564 5.76945 19.577 + 1311.5 -1.92534 5.76945 19.363 + 1311.6 -1.92534 5.76945 19.148 + 1311.7 -1.91505 5.75837 18.932 + 1311.8 -1.91505 5.75837 18.713 + 1311.9 -1.90475 5.75837 18.518 + 1312 -1.89446 5.75837 18.312 + 1312.1 -1.89446 5.7473 18.101 + 1312.2 -1.89446 5.7473 17.898 + 1312.3 -1.89446 5.73623 17.692 + 1312.4 -1.87386 5.72515 17.495 + 1312.5 -1.87386 5.71408 17.289 + 1312.6 -1.85327 5.703 17.076 + 1312.7 -1.84298 5.69193 16.886 + 1312.8 -1.83268 5.68086 16.694 + 1312.9 -1.82238 5.65871 16.508 + 1313 -1.81209 5.64763 16.331 + 1313.1 -1.81209 5.64763 16.121 + 1313.2 -1.81209 5.62549 15.943 + 1313.3 -1.81209 5.61441 15.731 + 1313.4 -1.7915 5.61441 15.52 + 1313.5 -1.7812 5.61441 15.329 + 1313.6 -1.80179 5.61441 15.133 + 1313.7 -1.80179 5.61441 14.933 + 1313.8 -1.81209 5.62548 14.721 + 1313.9 -1.81209 5.62548 14.53 + 1314 -1.82238 5.64763 14.326 + 1314.1 -1.82238 5.64763 14.116 + 1314.2 -1.82238 5.65871 13.913 + 1314.3 -1.83268 5.65871 13.73 + 1314.4 -1.83268 5.68085 13.526 + 1314.5 -1.82238 5.68085 13.335 + 1314.6 -1.81209 5.69193 13.148 + 1314.7 -1.80179 5.703 12.951 + 1314.8 -1.81209 5.703 12.75 + 1314.9 -1.79149 5.71407 12.56 + 1315 -1.7812 5.71407 12.361 + 1315.1 -1.7709 5.72515 12.163 + 1315.2 -1.76061 5.72515 11.964 + 1315.3 -1.75031 5.72515 11.764 + 1315.4 -1.74001 5.73622 11.564 + 1315.5 -1.74001 5.73622 11.382 + 1315.6 -1.72972 5.73622 11.189 + 1315.7 -1.72972 5.74729 10.984 + 1315.8 -1.71942 5.73622 10.8 + 1315.9 -1.70913 5.74729 10.605 + 1316 -1.70913 5.74729 10.414 + 1316.1 -1.69883 5.74729 10.232 + 1316.2 -1.69883 5.74729 10.049 + 1316.3 -1.70913 5.74729 9.862 + 1316.4 -1.71942 5.74729 9.694 + 1316.5 -1.74001 5.73622 9.516 + 1316.6 -1.75031 5.73622 9.326 + 1316.7 -1.7812 5.74729 9.144 + 1316.8 -1.79149 5.73622 8.962 + 1316.9 -1.81209 5.73622 8.778 + 1317 -1.83268 5.74729 8.601 + 1317.1 -1.85327 5.73622 8.456 + 1317.2 -1.84297 5.73622 8.31 + 1317.3 -1.84297 5.72514 8.193 + 1317.4 -1.83268 5.73622 8.09 + 1317.5 -1.82238 5.73622 8.031 + 1317.6 -1.81208 5.71407 7.999 + 1317.7 -1.79149 5.71407 7.969 + 1317.8 -1.7709 5.70299 7.946 + 1317.9 -1.76061 5.70299 7.944 + 1318 -1.74001 5.69192 7.945 + 1318.1 -1.71942 5.66977 7.96 + 1318.2 -1.68853 5.63655 7.968 + 1318.3 -1.65765 5.60333 7.968 + 1318.4 -1.62676 5.54796 7.999 + 1318.5 -1.58557 5.48152 8.016 + 1318.6 -1.53409 5.404 8.017 + 1318.7 -1.48261 5.31541 8.021 + 1318.8 -1.43114 5.21575 8.031 + 1318.9 -1.35906 5.09394 8.037 + 1319 -1.28699 4.97213 8.037 + 1319.1 -1.21492 4.85031 8.027 + 1319.2 -1.14285 4.70636 8.025 + 1319.3 -1.06048 4.5624 8.014 + 1319.4 -0.978114 4.41844 8.005 + 1319.5 -0.895747 4.25233 8.007 + 1319.6 -0.803083 4.08622 7.984 + 1319.7 -0.71042 3.92012 7.99 + 1319.8 -0.617756 3.74294 7.976 + 1319.9 -0.514797 3.57683 7.974 + 1320 -0.411838 3.38858 7.963 + 1320.1 -0.319174 3.2114 7.957 + 1320.2 -0.226511 3.03421 7.952 + 1320.3 -0.144143 2.87918 7.952 + 1320.4 -0.0823675 2.73522 7.953 + 1320.5 -0.0205919 2.61341 7.94 + 1320.6 0.0514797 2.48053 7.944 + 1320.7 0.102959 2.38086 7.966 + 1320.8 0.144143 2.2812 7.974 + 1320.9 0.164735 2.20368 7.959 + 1321 0.175031 2.13724 7.969 + 1321.1 0.185327 2.0708 7.961 + 1321.2 0.175031 2.00435 7.962 + 1321.3 0.164735 1.92684 7.956 + 1321.4 0.144143 1.84932 7.964 + 1321.5 0.113255 1.78288 7.965 + 1321.6 0.0720716 1.70536 7.958 + 1321.7 0.0102959 1.62785 7.964 + 1321.8 -0.0514797 1.55033 7.972 + 1321.9 -0.113255 1.46174 7.971 + 1322 -0.195623 1.37315 7.975 + 1322.1 -0.288286 1.28456 7.974 + 1322.2 -0.38095 1.19597 7.975 + 1322.3 -0.494205 1.0963 7.995 + 1322.4 -0.597164 0.985566 7.982 + 1322.5 -0.720716 0.885902 7.987 + 1322.6 -0.854563 0.775164 7.981 + 1322.7 -0.98841 0.664427 7.984 + 1322.8 -1.10167 0.575836 7.967 + 1322.9 -1.21492 0.509394 7.923 + 1323 -1.32818 0.420804 7.931 + 1323.1 -1.44143 0.332213 7.943 + 1323.2 -1.54439 0.265771 7.951 + 1323.3 -1.63705 0.210402 7.956 + 1323.4 -1.71942 0.177181 7.954 + 1323.5 -1.81209 0.143959 7.953 + 1323.6 -1.90475 0.121812 7.96 + 1323.7 -1.99741 0.110738 7.95 + 1323.8 -2.10037 0.110738 7.935 + 1323.9 -2.20333 0.110738 7.936 + 1324 -2.30629 0.132885 7.941 + 1324.1 -2.39895 0.166107 7.953 + 1324.2 -2.50191 0.199328 7.946 + 1324.3 -2.60487 0.254697 7.938 + 1324.4 -2.71813 0.298992 7.937 + 1324.5 -2.82109 0.354361 7.935 + 1324.6 -2.90346 0.398656 7.925 + 1324.7 -2.97553 0.431878 7.926 + 1324.8 -3.0476 0.476173 7.908 + 1324.9 -3.12997 0.509394 7.915 + 1325 -3.19174 0.542615 7.92 + 1325.1 -3.23293 0.553689 7.901 + 1325.2 -3.27411 0.564763 7.896 + 1325.3 -3.31529 0.586911 7.887 + 1325.4 -3.33588 0.597984 7.855 + 1325.5 -3.35648 0.609058 7.826 + 1325.6 -3.37707 0.609058 7.78 + 1325.7 -3.38736 0.620132 7.727 + 1325.8 -3.38736 0.620132 7.687 + 1325.9 -3.40796 0.620132 7.64 + 1326 -3.40796 0.631206 7.554 + 1326.1 -3.39766 0.631206 7.493 + 1326.2 -3.40796 0.631206 7.417 + 1326.3 -3.40796 0.620132 7.359 + 1326.4 -3.39766 0.631206 7.303 + 1326.5 -3.39766 0.620132 7.239 + 1326.6 -3.40796 0.620132 7.183 + 1326.7 -3.39766 0.620132 7.122 + 1326.8 -3.39766 0.620132 7.081 + 1326.9 -3.39766 0.609058 7.023 + 1327 -3.38736 0.609058 6.968 + 1327.1 -3.38736 0.609058 6.943 + 1327.2 -3.37707 0.609058 6.914 + 1327.3 -3.37707 0.609058 6.866 + 1327.4 -3.36677 0.597984 6.834 + 1327.5 -3.35648 0.597984 6.802 + 1327.6 -3.33588 0.597984 6.772 + 1327.7 -3.32559 0.597984 6.744 + 1327.8 -3.31529 0.597984 6.726 + 1327.9 -3.305 0.597984 6.704 + 1328 -3.2844 0.597984 6.679 + 1328.1 -3.26381 0.597984 6.662 + 1328.2 -3.23292 0.609058 6.649 + 1328.3 -3.21233 0.609058 6.625 + 1328.4 -3.19174 0.631205 6.596 + 1328.5 -3.16085 0.631205 6.582 + 1328.6 -3.11967 0.642279 6.555 + 1328.7 -3.08878 0.653353 6.541 + 1328.8 -3.0476 0.675501 6.539 + 1328.9 -3.00641 0.697648 6.498 + 1329 -2.96523 0.719796 6.49 + 1329.1 -2.92405 0.741943 6.469 + 1329.2 -2.86227 0.775164 6.424 + 1329.3 -2.81079 0.808386 6.414 + 1329.4 -2.73872 0.841607 6.407 + 1329.5 -2.67694 0.874828 6.376 + 1329.6 -2.60487 0.919123 6.356 + 1329.7 -2.5431 0.952345 6.334 + 1329.8 -2.49162 0.99664 6.327 + 1329.9 -2.42984 1.01879 6.305 + 1330 -2.36807 1.06308 6.279 + 1330.1 -2.32688 1.0963 6.251 + 1330.2 -2.2857 1.11845 6.228 + 1330.3 -2.25481 1.1406 6.188 + 1330.4 -2.24451 1.15167 6.174 + 1330.5 -2.22392 1.16275 6.163 + 1330.6 -2.20333 1.18489 6.114 + 1330.7 -2.19303 1.19597 6.078 + 1330.8 -2.18274 1.21812 6.035 + 1330.9 -2.17244 1.21812 5.984 + 1331 -2.17244 1.22919 5.958 + 1331.1 -2.16215 1.22919 5.917 + 1331.2 -2.16215 1.24026 5.877 + 1331.3 -2.16215 1.25134 5.83 + 1331.4 -2.15185 1.25134 5.803 + 1331.5 -2.15185 1.25134 5.764 + 1331.6 -2.15185 1.25134 5.745 + 1331.7 -2.14155 1.25134 5.74 + 1331.8 -2.13126 1.25134 5.745 + 1331.9 -2.11067 1.25134 5.742 + 1332 -2.12096 1.25134 5.738 + 1332.1 -2.13126 1.25134 5.733 + 1332.2 -2.13126 1.25134 5.732 + 1332.3 -2.13126 1.24026 5.729 + 1332.4 -2.13126 1.25134 5.739 + 1332.5 -2.13126 1.24026 5.733 + 1332.6 -2.13126 1.25134 5.727 + 1332.7 -2.13126 1.24026 5.726 + 1332.8 -2.14155 1.24026 5.727 + 1332.9 -2.14155 1.25134 5.725 + 1333 -2.14155 1.25134 5.725 + 1333.1 -2.14155 1.24026 5.72 + 1333.2 -2.14155 1.24026 5.72 + 1333.3 -2.14155 1.24026 5.724 + 1333.4 -2.14155 1.25134 5.718 + 1333.5 -2.14155 1.24026 5.71 + 1333.6 -2.14155 1.24026 5.728 + 1333.7 -2.14155 1.24026 5.717 + 1333.8 -2.14155 1.25134 5.719 + 1333.9 -2.14155 1.24026 5.726 + 1334 -2.15185 1.25134 5.719 + 1334.1 -2.14155 1.24026 5.713 + 1334.2 -2.14155 1.24026 5.73 + 1334.3 -2.15185 1.24026 5.716 + 1334.4 -2.14155 1.24026 5.704 + 1334.5 -2.14155 1.24026 5.707 + 1334.6 -2.14155 1.24026 5.7 + 1334.7 -2.15185 1.25134 5.705 + 1334.8 -2.14155 1.24026 5.7 + 1334.9 -2.14155 1.24026 5.7 + 1335 -2.14155 1.24026 5.711 + 1335.1 -2.15185 1.24026 5.695 + 1335.2 -2.15185 1.24026 5.689 + 1335.3 -2.15185 1.24026 5.691 + 1335.4 -2.15185 1.24026 5.686 + 1335.5 -2.15185 1.24026 5.689 + 1335.6 -2.15185 1.24026 5.682 + 1335.7 -2.15185 1.24026 5.678 + 1335.8 -2.15185 1.24026 5.679 + 1335.9 -2.15185 1.24026 5.683 + 1336 -2.15185 1.24026 5.677 + 1336.1 -2.15185 1.24026 5.67 + 1336.2 -2.15185 1.24026 5.667 + 1336.3 -2.16215 1.24026 5.679 + 1336.4 -2.15185 1.24026 5.663 + 1336.5 -2.15185 1.24026 5.665 + 1336.6 -2.15185 1.24026 5.671 + 1336.7 -2.15185 1.25134 5.659 + 1336.8 -2.15185 1.24026 5.654 + 1336.9 -2.15185 1.24026 5.655 + 1337 -2.15185 1.24026 5.654 + 1337.1 -2.15185 1.24026 5.654 + 1337.2 -2.15185 1.24026 5.65 + 1337.3 -2.15185 1.24026 5.634 + 1337.4 -2.15185 1.24026 5.632 + 1337.5 -2.15185 1.24026 5.645 + 1337.6 -2.15185 1.24026 5.632 + 1337.7 -2.15185 1.25134 5.622 + 1337.8 -2.15185 1.24026 5.633 + 1337.9 -2.14155 1.24026 5.63 + 1338 -2.15185 1.24026 5.619 + 1338.1 -2.15185 1.24026 5.617 + 1338.2 -2.15185 1.24026 5.615 + 1338.3 -2.15185 1.25134 5.614 + 1338.4 -2.15185 1.24026 5.606 + 1338.5 -2.15185 1.25134 5.611 + 1338.6 -2.14155 1.24026 5.601 + 1338.7 -2.14155 1.24026 5.602 + 1338.8 -2.14155 1.24026 5.607 + 1338.9 -2.15185 1.24026 5.616 + 1339 -2.14155 1.24026 5.6 + 1339.1 -2.15185 1.24026 5.599 + 1339.2 -2.15185 1.25134 5.598 + 1339.3 -2.14155 1.24026 5.603 + 1339.4 -2.14155 1.24026 5.584 + 1339.5 -2.14155 1.25134 5.588 + 1339.6 -2.14155 1.24026 5.587 + 1339.7 -2.14155 1.24026 5.584 + 1339.8 -2.14155 1.24026 5.58 + 1339.9 -2.14155 1.24026 5.574 + 1340 -2.13126 1.24026 5.577 + 1340.1 -2.13126 1.24026 5.572 + 1340.2 -2.13126 1.24026 5.577 + 1340.3 -2.13126 1.24026 5.565 + 1340.4 -2.13126 1.24026 5.567 + 1340.5 -2.13126 1.24026 5.564 + 1340.6 -2.13126 1.25134 5.561 + 1340.7 -2.13126 1.24026 5.558 + 1340.8 -2.13126 1.25134 5.553 + 1340.9 -2.12096 1.25134 5.552 + 1341 -2.12096 1.25134 5.546 + 1341.1 -2.12096 1.25134 5.549 + 1341.2 -2.12096 1.25134 5.545 + 1341.3 -2.12096 1.25134 5.548 + 1341.4 -2.12096 1.25134 5.55 + 1341.5 -2.12096 1.25134 5.542 + 1341.6 -2.12096 1.25134 5.539 + 1341.7 -2.12096 1.25134 5.535 + 1341.8 -2.12096 1.25134 5.539 + 1341.9 -2.12096 1.25134 5.532 + 1342 -2.11067 1.25134 5.539 + 1342.1 -2.11067 1.25134 5.532 + 1342.2 -2.11067 1.25134 5.531 + 1342.3 -2.11067 1.25134 5.535 + 1342.4 -2.11067 1.25134 5.524 + 1342.5 -2.11067 1.25134 5.52 + 1342.6 -2.11067 1.25134 5.525 + 1342.7 -2.11067 1.25134 5.519 + 1342.8 -2.10037 1.25134 5.519 + 1342.9 -2.10037 1.25134 5.523 + 1343 -2.10037 1.25134 5.515 + 1343.1 -2.11067 1.25134 5.524 + 1343.2 -2.10037 1.25134 5.519 + 1343.3 -2.10037 1.25134 5.525 + 1343.4 -2.10037 1.25134 5.512 + 1343.5 -2.10037 1.25134 5.508 + 1343.6 -2.10037 1.25134 5.51 + 1343.7 -2.10037 1.25134 5.516 + 1343.8 -2.09007 1.25134 5.507 + 1343.9 -2.10037 1.25134 5.51 + 1344 -2.10037 1.25134 5.509 + 1344.1 -2.09007 1.25134 5.517 + 1344.2 -2.10037 1.25134 5.511 + 1344.3 -2.09007 1.25134 5.506 + 1344.4 -2.10037 1.25134 5.504 + 1344.5 -2.09007 1.25134 5.516 + 1344.6 -2.10037 1.25134 5.503 + 1344.7 -2.10037 1.25134 5.518 + 1344.8 -2.10037 1.25134 5.501 + 1344.9 -2.09007 1.25134 5.504 + 1345 -2.09007 1.25134 5.514 + 1345.1 -2.10037 1.25134 5.508 + 1345.2 -2.09007 1.25134 5.507 + 1345.3 -2.09007 1.25134 5.504 + 1345.4 -2.09007 1.25134 5.511 + 1345.5 -2.09007 1.25134 5.502 + 1345.6 -2.09007 1.25134 5.503 + 1345.7 -2.09007 1.25134 5.5 + 1345.8 -2.09007 1.25134 5.503 + 1345.9 -2.09007 1.25134 5.508 + 1346 -2.09007 1.25134 5.501 + 1346.1 -2.10037 1.24026 5.517 + 1346.2 -2.10037 1.25134 5.498 + 1346.3 -2.10037 1.25134 5.501 + 1346.4 -2.09007 1.25134 5.514 + 1346.5 -2.09007 1.25134 5.513 + 1346.6 -2.09007 1.24026 5.506 + 1346.7 -2.09007 1.24026 5.504 + 1346.8 -2.09007 1.24026 5.511 + 1346.9 -2.09007 1.25134 5.503 + 1347 -2.09007 1.24026 5.503 + 1347.1 -2.09007 1.24026 5.501 + 1347.2 -2.09007 1.24026 5.507 + 1347.3 -2.09007 1.24026 5.497 + 1347.4 -2.07978 1.24026 5.503 + 1347.5 -2.07978 1.24026 5.495 + 1347.6 -2.07978 1.24026 5.489 + 1347.7 -2.07978 1.24026 5.49 + 1347.8 -2.07978 1.24026 5.497 + 1347.9 -2.07978 1.24026 5.492 + 1348 -2.07978 1.24026 5.485 + 1348.1 -2.07978 1.24026 5.494 + 1348.2 -2.07978 1.24026 5.487 + 1348.3 -2.07978 1.24026 5.479 + 1348.4 -2.07978 1.24026 5.477 + 1348.5 -2.07978 1.24026 5.487 + 1348.6 -2.07978 1.24026 5.48 + 1348.7 -2.07978 1.24026 5.484 + 1348.8 -2.06948 1.24026 5.479 + 1348.9 -2.06948 1.24026 5.478 + 1349 -2.07978 1.24026 5.493 + 1349.1 -2.06948 1.24026 5.479 + 1349.2 -2.06948 1.24026 5.474 + 1349.3 -2.06948 1.24026 5.481 + 1349.4 -2.06948 1.24026 5.49 + 1349.5 -2.06948 1.24026 5.476 + 1349.6 -2.06948 1.22919 5.49 + 1349.7 -2.06948 1.24026 5.483 + 1349.8 -2.06948 1.24026 5.487 + 1349.9 -2.07978 1.22919 5.489 + 1350 -2.06948 1.24026 5.483 + 1350.1 -2.06948 1.22919 5.485 + 1350.2 -2.07978 1.24026 5.484 + 1350.3 -2.07978 1.22919 5.488 + 1350.4 -2.06948 1.22919 5.483 + 1350.5 -2.06948 1.24026 5.486 + 1350.6 -2.06948 1.24026 5.487 + 1350.7 -2.06948 1.22919 5.481 + 1350.8 -2.07978 1.22919 5.486 + 1350.9 -2.06948 1.24026 5.481 + 1351 -2.06948 1.24026 5.484 + 1351.1 -2.07978 1.24026 5.476 + 1351.2 -2.07978 1.24026 5.481 + 1351.3 -2.07978 1.22919 5.473 + 1351.4 -2.06948 1.22919 5.472 + 1351.5 -2.07978 1.22919 5.475 + 1351.6 -2.07978 1.24026 5.475 + 1351.7 -2.06948 1.24026 5.476 + 1351.8 -2.07978 1.24026 5.478 + 1351.9 -2.07978 1.24026 5.478 + 1352 -2.07978 1.24026 5.472 + 1352.1 -2.06948 1.24026 5.475 + 1352.2 -2.06948 1.24026 5.487 + 1352.3 -2.07978 1.24026 5.47 + 1352.4 -2.07978 1.24026 5.474 + 1352.5 -2.07978 1.24026 5.471 + 1352.6 -2.07978 1.24026 5.481 + 1352.7 -2.07978 1.24026 5.486 + 1352.8 -2.07978 1.24026 5.473 + 1352.9 -2.07978 1.24026 5.489 + 1353 -2.09007 1.24026 5.486 + 1353.1 -2.09007 1.24026 5.481 + 1353.2 -2.09007 1.24026 5.485 + 1353.3 -2.09007 1.24026 5.488 + 1353.4 -2.09007 1.24026 5.496 + 1353.5 -2.09007 1.24026 5.486 + 1353.6 -2.09007 1.24026 5.497 + 1353.7 -2.09007 1.25134 5.499 + 1353.8 -2.09007 1.25134 5.497 + 1353.9 -2.09007 1.25134 5.495 + 1354 -2.09007 1.25134 5.486 + 1354.1 -2.09007 1.25134 5.5 + 1354.2 -2.09007 1.25134 5.494 + 1354.3 -2.09007 1.25134 5.497 + 1354.4 -2.10037 1.25134 5.49 + 1354.5 -2.09007 1.25134 5.5 + 1354.6 -2.09007 1.25134 5.494 + 1354.7 -2.09007 1.25134 5.495 + 1354.8 -2.10037 1.25134 5.501 + 1354.9 -2.10037 1.25134 5.496 + 1355 -2.09007 1.25134 5.501 + 1355.1 -2.10037 1.25134 5.489 + 1355.2 -2.10037 1.25134 5.495 + 1355.3 -2.10037 1.25134 5.494 + 1355.4 -2.10037 1.25134 5.508 + 1355.5 -2.09007 1.25134 5.497 + 1355.6 -2.09007 1.25134 5.505 + 1355.7 -2.10037 1.25134 5.507 + 1355.8 -2.10037 1.25134 5.501 + 1355.9 -2.10037 1.26241 5.511 + 1356 -2.10037 1.25134 5.499 + 1356.1 -2.10037 1.25134 5.501 + 1356.2 -2.10037 1.25134 5.497 + 1356.3 -2.10037 1.25134 5.487 + 1356.4 -2.10037 1.26241 5.495 + 1356.5 -2.10037 1.26241 5.496 + 1356.6 -2.10037 1.25134 5.493 + 1356.7 -2.10037 1.25134 5.497 + 1356.8 -2.11067 1.26241 5.499 + 1356.9 -2.10037 1.26241 5.497 + 1357 -2.10037 1.26241 5.496 + 1357.1 -2.10037 1.26241 5.505 + 1357.2 -2.11067 1.26241 5.511 + 1357.3 -2.11067 1.26241 5.503 + 1357.4 -2.10037 1.26241 5.496 + 1357.5 -2.10037 1.26241 5.497 + 1357.6 -2.11067 1.26241 5.506 + 1357.7 -2.10037 1.26241 5.507 + 1357.8 -2.11067 1.26241 5.505 + 1357.9 -2.11067 1.26241 5.509 + 1358 -2.11067 1.26241 5.507 + 1358.1 -2.11067 1.26241 5.493 + 1358.2 -2.11067 1.26241 5.502 + 1358.3 -2.11067 1.25134 5.502 + 1358.4 -2.11067 1.26241 5.503 + 1358.5 -2.11067 1.25134 5.506 + 1358.6 -2.11067 1.26241 5.503 + 1358.7 -2.12096 1.25134 5.498 + 1358.8 -2.11067 1.25134 5.505 + 1358.9 -2.11067 1.25134 5.506 + 1359 -2.12096 1.25134 5.499 + 1359.1 -2.11067 1.25134 5.498 + 1359.2 -2.11067 1.25134 5.508 + 1359.3 -2.11067 1.25134 5.508 + 1359.4 -2.11067 1.25134 5.497 + 1359.5 -2.11067 1.25134 5.492 + 1359.6 -2.11067 1.24026 5.495 + 1359.7 -2.11067 1.25134 5.501 + 1359.8 -2.11067 1.25134 5.499 + 1359.9 -2.11067 1.25134 5.501 + 1360 -2.11067 1.25134 5.499 + 1360.1 -2.11067 1.25134 5.499 + 1360.2 -2.10037 1.24026 5.497 + 1360.3 -2.10037 1.24026 5.486 + 1360.4 -2.11067 1.24026 5.488 + 1360.5 -2.11067 1.24026 5.488 + 1360.6 -2.10037 1.24026 5.492 + 1360.7 -2.11067 1.24026 5.48 + 1360.8 -2.11067 1.24026 5.49 + 1360.9 -2.10037 1.24026 5.5 + 1361 -2.10037 1.24026 5.488 + 1361.1 -2.10037 1.24026 5.492 + 1361.2 -2.11067 1.24026 5.495 + 1361.3 -2.11067 1.24026 5.497 + 1361.4 -2.11067 1.24026 5.484 + 1361.5 -2.10037 1.24026 5.494 + 1361.6 -2.11067 1.24026 5.503 + 1361.7 -2.11067 1.22919 5.489 + 1361.8 -2.11067 1.24026 5.489 + 1361.9 -2.11067 1.22919 5.498 + 1362 -2.11067 1.22919 5.496 + 1362.1 -2.11067 1.24026 5.488 + 1362.2 -2.11067 1.22919 5.504 + 1362.3 -2.11067 1.24026 5.488 + 1362.4 -2.11067 1.22919 5.495 + 1362.5 -2.11067 1.22919 5.494 + 1362.6 -2.11067 1.22919 5.501 + 1362.7 -2.11067 1.22919 5.482 + 1362.8 -2.11067 1.22919 5.487 + 1362.9 -2.11067 1.22919 5.501 + 1363 -2.12096 1.22919 5.494 + 1363.1 -2.11067 1.22919 5.503 + 1363.2 -2.11067 1.22919 5.501 + 1363.3 -2.11067 1.22919 5.497 + 1363.4 -2.11067 1.22919 5.49 + 1363.5 -2.11067 1.22919 5.504 + 1363.6 -2.12096 1.22919 5.509 + 1363.7 -2.11067 1.21812 5.508 + 1363.8 -2.11067 1.21812 5.506 + 1363.9 -2.12096 1.21812 5.509 + 1364 -2.12096 1.21812 5.499 + 1364.1 -2.11067 1.21812 5.484 + 1364.2 -2.12096 1.21812 5.491 + 1364.3 -2.12096 1.20704 5.493 + 1364.4 -2.12096 1.20704 5.482 + 1364.5 -2.13126 1.21812 5.491 + 1364.6 -2.13126 1.21812 5.499 + 1364.7 -2.13126 1.21812 5.501 + 1364.8 -2.13126 1.21812 5.5 + 1364.9 -2.12096 1.20704 5.521 + 1365 -2.12096 1.20704 5.52 + 1365.1 -2.12096 1.20704 5.524 + 1365.2 -2.11067 1.20704 5.526 + 1365.3 -2.12096 1.20704 5.54 + 1365.4 -2.12096 1.21812 5.539 + 1365.5 -2.12096 1.21812 5.543 + 1365.6 -2.12096 1.20704 5.529 + 1365.7 -2.11067 1.20704 5.534 + 1365.8 -2.11067 1.20704 5.532 + 1365.9 -2.11067 1.21812 5.535 + 1366 -2.11067 1.21812 5.548 + 1366.1 -2.11067 1.20704 5.558 + 1366.2 -2.10037 1.21812 5.543 + 1366.3 -2.11067 1.21812 5.564 + 1366.4 -2.11067 1.20704 5.562 + 1366.5 -2.11067 1.20704 5.558 + 1366.6 -2.11067 1.20704 5.554 + 1366.7 -2.12096 1.20704 5.576 + 1366.8 -2.11067 1.19597 5.577 + 1366.9 -2.12096 1.20704 5.575 + 1367 -2.11067 1.20704 5.569 + 1367.1 -2.11067 1.20704 5.571 + 1367.2 -2.11067 1.20704 5.576 + 1367.3 -2.12096 1.20704 5.575 + 1367.4 -2.12096 1.20704 5.576 + 1367.5 -2.11067 1.20704 5.569 + 1367.6 -2.11067 1.20704 5.572 + 1367.7 -2.11067 1.20704 5.564 + 1367.8 -2.11067 1.20704 5.577 + 1367.9 -2.12096 1.20704 5.578 + 1368 -2.11067 1.20704 5.569 + 1368.1 -2.11067 1.20704 5.575 + 1368.2 -2.11067 1.20704 5.577 + 1368.3 -2.12096 1.20704 5.581 + 1368.4 -2.11067 1.20704 5.565 + 1368.5 -2.11067 1.19597 5.567 + 1368.6 -2.12096 1.20704 5.562 + 1368.7 -2.11067 1.20704 5.56 + 1368.8 -2.11067 1.20704 5.564 + 1368.9 -2.10037 1.20704 5.548 + 1369 -2.10037 1.20704 5.556 + 1369.1 -2.11067 1.20704 5.563 + 1369.2 -2.11067 1.20704 5.563 + 1369.3 -2.11067 1.20704 5.564 + 1369.4 -2.11067 1.20704 5.563 + 1369.5 -2.11067 1.20704 5.565 + 1369.6 -2.12096 1.20704 5.559 + 1369.7 -2.12096 1.20704 5.572 + 1369.8 -2.12096 1.20704 5.559 + 1369.9 -2.12096 1.20704 5.562 + 1370 -2.12096 1.20704 5.555 + 1370.1 -2.11067 1.20704 5.57 + 1370.2 -2.13126 1.20704 5.558 + 1370.3 -2.13126 1.19597 5.557 + 1370.4 -2.12096 1.20704 5.56 + 1370.5 -2.12096 1.19597 5.55 + 1370.6 -2.13126 1.19597 5.561 + 1370.7 -2.13126 1.19597 5.561 + 1370.8 -2.13126 1.19597 5.552 + 1370.9 -2.13126 1.19597 5.55 + 1371 -2.12096 1.19597 5.555 + 1371.1 -2.13126 1.19597 5.56 + 1371.2 -2.13126 1.19597 5.553 + 1371.3 -2.13126 1.19597 5.551 + 1371.4 -2.13126 1.19597 5.553 + 1371.5 -2.13126 1.20704 5.548 + 1371.6 -2.13126 1.19597 5.55 + 1371.7 -2.13126 1.19597 5.543 + 1371.8 -2.13126 1.19597 5.551 + 1371.9 -2.13126 1.19597 5.541 + 1372 -2.14155 1.19597 5.538 + 1372.1 -2.14155 1.19597 5.546 + 1372.2 -2.14155 1.19597 5.539 + 1372.3 -2.14155 1.19597 5.541 + 1372.4 -2.14155 1.19597 5.539 + 1372.5 -2.15185 1.19597 5.528 + 1372.6 -2.14155 1.19597 5.533 + 1372.7 -2.15185 1.19597 5.532 + 1372.8 -2.15185 1.18489 5.524 + 1372.9 -2.15185 1.19597 5.528 + 1373 -2.16215 1.18489 5.524 + 1373.1 -2.15185 1.18489 5.518 + 1373.2 -2.16215 1.18489 5.517 + 1373.3 -2.16215 1.18489 5.524 + 1373.4 -2.17244 1.18489 5.521 + 1373.5 -2.16215 1.18489 5.523 + 1373.6 -2.16215 1.18489 5.52 + 1373.7 -2.17244 1.18489 5.507 + 1373.8 -2.17244 1.18489 5.516 + 1373.9 -2.17244 1.17382 5.513 + 1374 -2.17244 1.18489 5.518 + 1374.1 -2.17244 1.18489 5.51 + 1374.2 -2.17244 1.17382 5.507 + 1374.3 -2.17244 1.18489 5.512 + 1374.4 -2.17244 1.18489 5.518 + 1374.5 -2.18274 1.17382 5.51 + 1374.6 -2.18274 1.17382 5.514 + 1374.7 -2.17244 1.17382 5.504 + 1374.8 -2.18274 1.17382 5.504 + 1374.9 -2.18274 1.17382 5.519 + 1375 -2.18274 1.17382 5.508 + 1375.1 -2.18274 1.17382 5.506 + 1375.2 -2.18274 1.17382 5.499 + 1375.3 -2.18274 1.17382 5.499 + 1375.4 -2.18274 1.16275 5.503 + 1375.5 -2.18274 1.17382 5.509 + 1375.6 -2.18274 1.16275 5.501 + 1375.7 -2.18274 1.17382 5.515 + 1375.8 -2.18274 1.16275 5.508 + 1375.9 -2.18274 1.16275 5.502 + 1376 -2.18274 1.16275 5.504 + 1376.1 -2.19303 1.16275 5.516 + 1376.2 -2.18274 1.16275 5.512 + 1376.3 -2.18274 1.16275 5.508 + 1376.4 -2.19303 1.16275 5.503 + 1376.5 -2.19303 1.16275 5.514 + 1376.6 -2.19303 1.16275 5.503 + 1376.7 -2.19303 1.16275 5.512 + 1376.8 -2.19303 1.15167 5.509 + 1376.9 -2.19303 1.16275 5.506 + 1377 -2.20333 1.15167 5.506 + 1377.1 -2.20333 1.15167 5.517 + 1377.2 -2.20333 1.15167 5.515 + 1377.3 -2.19303 1.15167 5.502 + 1377.4 -2.20333 1.15167 5.518 + 1377.5 -2.20333 1.1406 5.506 + 1377.6 -2.20333 1.15167 5.509 + 1377.7 -2.20333 1.1406 5.51 + 1377.8 -2.20333 1.1406 5.512 + 1377.9 -2.20333 1.1406 5.514 + 1378 -2.21363 1.1406 5.51 + 1378.1 -2.20333 1.1406 5.518 + 1378.2 -2.20333 1.1406 5.503 + 1378.3 -2.21363 1.1406 5.502 + 1378.4 -2.20333 1.1406 5.512 + 1378.5 -2.20333 1.1406 5.509 + 1378.6 -2.20333 1.1406 5.51 + 1378.7 -2.20333 1.12952 5.504 + 1378.8 -2.20333 1.12952 5.514 + 1378.9 -2.19303 1.12952 5.512 + 1379 -2.20333 1.12952 5.498 + 1379.1 -2.20333 1.12952 5.492 + 1379.2 -2.20333 1.12952 5.505 + 1379.3 -2.20333 1.11845 5.51 + 1379.4 -2.21363 1.12952 5.5 + 1379.5 -2.20333 1.11845 5.485 + 1379.6 -2.20333 1.11845 5.491 + 1379.7 -2.20333 1.11845 5.488 + 1379.8 -2.20333 1.11845 5.485 + 1379.9 -2.20333 1.10738 5.49 + 1380 -2.20333 1.10738 5.488 + 1380.1 -2.20333 1.10738 5.483 + 1380.2 -2.20333 1.10738 5.484 + 1380.3 -2.20333 1.10738 5.48 + 1380.4 -2.20333 1.10738 5.471 + 1380.5 -2.20333 1.10738 5.47 + 1380.6 -2.20333 1.0963 5.475 + 1380.7 -2.20333 1.0963 5.474 + 1380.8 -2.21363 1.08523 5.455 + 1380.9 -2.21363 1.08523 5.454 + 1381 -2.21363 1.08523 5.455 + 1381.1 -2.21363 1.08523 5.455 + 1381.2 -2.20333 1.0963 5.473 + 1381.3 -2.21363 1.08523 5.474 + 1381.4 -2.22392 1.08523 5.471 + 1381.5 -2.22392 1.08523 5.469 + 1381.6 -2.22392 1.08523 5.469 + 1381.7 -2.22392 1.08523 5.474 + 1381.8 -2.23422 1.08523 5.479 + 1381.9 -2.23422 1.08523 5.47 + 1382 -2.22392 1.08523 5.473 + 1382.1 -2.22392 1.08523 5.476 + 1382.2 -2.23422 1.08523 5.476 + 1382.3 -2.23422 1.08523 5.491 + 1382.4 -2.23422 1.07416 5.469 + 1382.5 -2.23422 1.07416 5.479 + 1382.6 -2.23422 1.07416 5.475 + 1382.7 -2.23422 1.07416 5.476 + 1382.8 -2.23422 1.08523 5.482 + 1382.9 -2.24451 1.07416 5.485 + 1383 -2.23422 1.07416 5.477 + 1383.1 -2.24451 1.07416 5.47 + 1383.2 -2.23422 1.07416 5.479 + 1383.3 -2.23422 1.07416 5.473 + 1383.4 -2.23422 1.07416 5.476 + 1383.5 -2.24451 1.07416 5.468 + 1383.6 -2.23422 1.07416 5.472 + 1383.7 -2.24451 1.07416 5.467 + 1383.8 -2.23422 1.06308 5.467 + 1383.9 -2.24451 1.06308 5.462 + 1384 -2.24451 1.07416 5.455 + 1384.1 -2.23422 1.06308 5.457 + 1384.2 -2.23422 1.06308 5.467 + 1384.3 -2.24451 1.06308 5.456 + 1384.4 -2.24451 1.07416 5.464 + 1384.5 -2.24451 1.06308 5.453 + 1384.6 -2.24451 1.06308 5.458 + 1384.7 -2.24451 1.06308 5.447 + 1384.8 -2.24451 1.06308 5.44 + 1384.9 -2.24451 1.06308 5.447 + 1385 -2.24451 1.06308 5.458 + 1385.1 -2.25481 1.06308 5.453 + 1385.2 -2.25481 1.06308 5.452 + 1385.3 -2.24451 1.06308 5.439 + 1385.4 -2.24451 1.06308 5.44 + 1385.5 -2.24451 1.06308 5.444 + 1385.6 -2.25481 1.06308 5.448 + 1385.7 -2.24451 1.06308 5.436 + 1385.8 -2.25481 1.06308 5.437 + 1385.9 -2.25481 1.06308 5.439 + 1386 -2.24451 1.06308 5.441 + 1386.1 -2.25481 1.06308 5.43 + 1386.2 -2.24451 1.06308 5.432 + 1386.3 -2.24451 1.06308 5.432 + 1386.4 -2.24451 1.05201 5.424 + 1386.5 -2.23422 1.06308 5.42 + 1386.6 -2.23422 1.06308 5.411 + 1386.7 -2.24451 1.05201 5.418 + 1386.8 -2.24451 1.06308 5.419 + 1386.9 -2.23422 1.05201 5.405 + 1387 -2.23422 1.05201 5.402 + 1387.1 -2.23422 1.05201 5.396 + 1387.2 -2.23422 1.05201 5.408 + 1387.3 -2.23422 1.05201 5.407 + 1387.4 -2.23422 1.05201 5.417 + 1387.5 -2.23422 1.06308 5.415 + 1387.6 -2.23422 1.05201 5.411 + 1387.7 -2.23422 1.05201 5.414 + 1387.8 -2.23422 1.05201 5.41 + 1387.9 -2.22392 1.04093 5.416 + 1388 -2.22392 1.05201 5.417 + 1388.1 -2.23422 1.04093 5.405 + 1388.2 -2.23422 1.05201 5.398 + 1388.3 -2.23422 1.05201 5.409 + 1388.4 -2.23422 1.04093 5.416 + 1388.5 -2.23422 1.05201 5.415 + 1388.6 -2.24451 1.05201 5.408 + 1388.7 -2.24451 1.05201 5.401 + 1388.8 -2.24451 1.05201 5.377 + 1388.9 -2.24451 1.04093 5.37 + 1389 -2.24451 1.04093 5.362 + 1389.1 -2.24451 1.04093 5.355 + 1389.2 -2.24451 1.05201 5.361 + 1389.3 -2.23422 1.04093 5.37 + 1389.4 -2.22392 1.02986 5.355 + 1389.5 -2.23422 1.02986 5.355 + 1389.6 -2.23422 1.02986 5.361 + 1389.7 -2.23422 1.04093 5.366 + 1389.8 -2.23422 1.02986 5.362 + 1389.9 -2.23422 1.02986 5.359 + 1390 -2.23422 1.02986 5.354 + 1390.1 -2.23422 1.02986 5.362 + 1390.2 -2.23422 1.01879 5.373 + 1390.3 -2.23422 1.02986 5.363 + 1390.4 -2.23422 1.01879 5.363 + 1390.5 -2.24451 1.01879 5.357 + 1390.6 -2.24451 1.01879 5.351 + 1390.7 -2.23422 1.01879 5.356 + 1390.8 -2.24451 1.01879 5.361 + 1390.9 -2.24451 1.01879 5.355 + 1391 -2.23422 1.00771 5.34 + 1391.1 -2.23422 1.01879 5.342 + 1391.2 -2.23422 1.00771 5.35 + 1391.3 -2.23422 1.00771 5.333 + 1391.4 -2.23422 0.99664 5.337 + 1391.5 -2.23422 1.00771 5.337 + 1391.6 -2.23422 0.99664 5.339 + 1391.7 -2.24451 1.00771 5.342 + 1391.8 -2.23422 0.99664 5.328 + 1391.9 -2.24451 0.985566 5.347 + 1392 -2.24451 0.99664 5.333 + 1392.1 -2.24451 0.99664 5.326 + 1392.2 -2.24451 0.99664 5.332 + 1392.3 -2.24451 0.99664 5.362 + 1392.4 -2.25481 0.99664 5.357 + 1392.5 -2.25481 0.985566 5.317 + 1392.6 -2.24451 0.985566 5.321 + 1392.7 -2.25481 0.985566 5.321 + 1392.8 -2.25481 0.985566 5.291 + 1392.9 -2.25481 0.985566 5.301 + 1393 -2.25481 0.985566 5.302 + 1393.1 -2.25481 0.985566 5.315 + 1393.2 -2.25481 0.985566 5.304 + 1393.3 -2.25481 0.985566 5.283 + 1393.4 -2.25481 0.985566 5.284 + 1393.5 -2.25481 0.985566 5.309 + 1393.6 -2.25481 0.985566 5.281 + 1393.7 -2.25481 0.985566 5.261 + 1393.8 -2.25481 0.974492 5.28 + 1393.9 -2.25481 0.974492 5.26 + 1394 -2.26511 0.985566 5.276 + 1394.1 -2.26511 0.985566 5.291 + 1394.2 -2.26511 0.974492 5.28 + 1394.3 -2.26511 0.974492 5.266 + 1394.4 -2.26511 0.974492 5.275 + 1394.5 -2.2754 0.974492 5.291 + 1394.6 -2.26511 0.974492 5.291 + 1394.7 -2.2754 0.974492 5.266 + 1394.8 -2.2857 0.974492 5.273 + 1394.9 -2.2754 0.974492 5.279 + 1395 -2.2857 0.963418 5.282 + 1395.1 -2.2754 0.963418 5.278 + 1395.2 -2.2857 0.963418 5.287 + 1395.3 -2.2857 0.963418 5.286 + 1395.4 -2.2857 0.963418 5.281 + 1395.5 -2.2857 0.963418 5.277 + 1395.6 -2.29599 0.963418 5.281 + 1395.7 -2.29599 0.952345 5.288 + 1395.8 -2.29599 0.952345 5.293 + 1395.9 -2.29599 0.952345 5.293 + 1396 -2.29599 0.952345 5.296 + 1396.1 -2.29599 0.952345 5.289 + 1396.2 -2.29599 0.952345 5.294 + 1396.3 -2.29599 0.952345 5.297 + 1396.4 -2.29599 0.941271 5.296 + 1396.5 -2.30629 0.952345 5.304 + 1396.6 -2.29599 0.941271 5.301 + 1396.7 -2.29599 0.941271 5.294 + 1396.8 -2.30629 0.941271 5.298 + 1396.9 -2.30629 0.941271 5.306 + 1397 -2.30629 0.941271 5.297 + 1397.1 -2.29599 0.930197 5.304 + 1397.2 -2.29599 0.930197 5.3 + 1397.3 -2.2857 0.930197 5.289 + 1397.4 -2.30629 0.930197 5.283 + 1397.5 -2.30629 0.930197 5.292 + 1397.6 -2.30629 0.930197 5.298 + 1397.7 -2.30629 0.919123 5.285 + 1397.8 -2.31659 0.930197 5.293 + 1397.9 -2.31659 0.919123 5.287 + 1398 -2.32688 0.919123 5.3 + 1398.1 -2.32688 0.919123 5.292 + 1398.2 -2.32688 0.919123 5.295 diff --git a/src/rm_localization/point_lio/README.md b/src/rm_localization/point_lio/README.md new file mode 100644 index 0000000..f9e6edc --- /dev/null +++ b/src/rm_localization/point_lio/README.md @@ -0,0 +1,195 @@ +# Point-LIO +## Point-LIO: Robust High-Bandwidth Lidar-Inertial Odometry + +## 1. Introduction + +
+
+ +
+ The framework and key points of the Point-LIO. +
+ +**Point-LIO** is a robust and high-bandwidth LiDAR-inertial odometry with the capability to estimate extremely aggressive robotic motions. Point-LIO has two key novelties that enable a high-bandwidth LiDAR-inertial odometry (LIO). The first one is a point-by-point LIO framework, where the state is updated at each LiDAR point measurement without accumulating them into a frame. This point-by-point update allows an extremely high-frequency odometry output, significantly increases the odometry bandwidth, and also fundamentally removes the artificial in-frame motion distortion in aggressive motions. The second main novelty is a stochastic process-augmented kinematic model which models the IMU measurements as an output, instead of input as in existing filter-based odometry or SLAM systems, of the model. This new modeling method enables accurate localization and reliable mapping for aggressive motions even when IMU measurements are saturated. In experiments, Point-LIO is able to provide accurate, high-frequency odometry (4-8 kHz) and reliable mapping under severe vibrations and aggressive motions with high angular velocity (75 rad s^{-1}) beyond the IMU measuring ranges. And Point-LIO is computationally efficient, robust, versatile on public datasets with general motions. As an odometry, Point-LIO could be used in various autonomous tasks, such as trajectory planning, control, and perception, especially in cases involving very fast ego-motions (e.g., in the presence of severe vibration and high angular or linear velocity) or requiring high-rate odometry output and mapping (e.g., for high-rate feedback control and perception). + +## **1.1. Developers:** +The codes of this repo are contributed by: +[Dongjiao He (贺东娇)](https://github.com/Joanna-HE) and [Wei Xu (徐威)](https://github.com/XW-HKU) + + +## **1.2. Related paper** +Our paper is accepted to Advanced Intelligent Systems(AIS), and is in the process of production. The preprint version is attached here, [Point-LIO_preprint.pdf](https://github.com/hku-mars/Point-LIO/files/10989136/Point-LIO_preprint.pdf) + + +## **1.3. Related video** +Our accompany video is available on **YouTube**. +
+ +
+ +## 2. What can Point-LIO do? +### 2.1 Simultaneous LiDAR localization and mapping (SLAM) without motion distortion + +### 2.2 Produce high odometry output frequence and high bandwidth + +### 2.3 SLAM with aggressive motions even the IMU is saturated + +# **3. Prerequisites** + +## **3.1 Ubuntu and [ROS](https://www.ros.org/)** +We tested our code on Ubuntu18.04 with ros melodic and Ubuntu20.04 with noetic. Additional ROS package is required: +``` +sudo apt-get install ros-xxx-pcl-conversions +``` + +## **3.2 Eigen** +Following the official [Eigen installation](eigen.tuxfamily.org/index.php?title=Main_Page), or directly install Eigen by: +``` +sudo apt-get install libeigen3-dev +``` + +## **3.3 livox_ros_driver2** +Follow [livox_ros_driver2 Installation](https://github.com/Livox-SDK/livox_ros_driver2). + +*Remarks:* +- Since the Point-LIO supports Livox serials LiDAR, so the **livox_ros_driver2** must be installed and **sourced** before run any Point-LIO luanch file. +- How to source? The easiest way is add the line ``` source $Licox_ros_driver2_dir$/install/setup.sh ``` to the end of file ``` ~/.bashrc ```, where ``` $Livox_ros_driver2_dir$ ``` is the directory of the livox ros driver workspace (should be the ``` ws_livox ``` directory if you completely followed the livox official document). + +## 4. Build +Clone the repository and colcon_build: + +``` + cd ~/$A_ROS_DIR$/src + git clone https://github.com/hku-mars/Point-LIO.git + cd Point-LIO + cd ../.. + colcon build --symlink-install + source install/setup.sh +``` +- Remember to source the livox_ros_driver2 before build (follow 3.3 **livox_ros_driver2**) +- If you want to use a custom build of PCL, add the following line to ~/.bashrc +```export PCL_ROOT={CUSTOM_PCL_PATH}``` + +## 5. Directly run +Important notes: + +A. Please make sure the IMU and LiDAR are **Synchronized**, that's important. + +B. Please obtain the saturation values of your used IMU (i.e., accelerator and gyroscope), and the units of the accelerator of your used IMU, then modify the .yaml file according to those settings. That's improtant. + +C. The warning message "Failed to find match for field 'time'." means the timestamps of each LiDAR points are missed in the rosbag file. That is important because Point-LIO processes at the sampling time of each LiDAR point. + +D. We recommend to set the **extrinsic_est_en** to false if the extrinsic is give. As for the extrinsic initiallization, please refer to our recent work: [**Robust and Online LiDAR-inertial Initialization**](https://github.com/hku-mars/LiDAR_IMU_Init). + +E. If a high odometry output frequency without downsample is required, set ``` publish_odometry_without_downsample ``` as true. Then the warning message of tf "TF_REPEATED_DATA" will pop up in the terminal window, because the time interval between two publish odometery is too small. The following command could be used to suppress this warning to a smaller frequency: + +in your ros_ws/src, + +git clone --branch throttle-tf-repeated-data-error git@github.com:BadgerTechnologies/geometry2.git + +Then rebuild, source setup.bash, run and then it should be reduced down to once every 10 seconds. If 10 seconds is still too much log output then change the ros::Duration(10.0) to 10000 seconds or whatever you like. + +### 5.1 For Mid360 + +Connect to your PC to Livox Mid360 LiDAR by following [Livox-ros-driver2 installation](https://github.com/Livox-SDK/livox_ros_driver2), then + +```sh + cd ~/$Point_LIO_ROS_DIR$ + source devel/setup.sh + ros2 launch point_lio mapping_mid360.launch.py + ros2 launch livox_ros_driver2 msg_MID360_launch.py +``` + +- For livox serials, Point-LIO only support the data collected by the ``` msg_MID360_launch.py ``` since only its ``` livox_ros_driver2/msg/custom_msg ``` data structure produces the timestamp of each LiDAR point which is very important for Point-LIO. ``` rviz_MID360_launch.py ``` can not produce it right now. + +- If you want to change the frame rate, please modify the **publish_freq** parameter in the [msg_MID360_launch.py](https://github.com/Livox-SDK/livox_ros_driver2/blob/master/launch_ROS2/msg_MID360_launch.py) of [Livox-ros-driver2](https://github.com/Livox-SDK/livox_ros_driver2) before make the livox_ros_driver2 pakage. + +### 5.2 For Avia + +As avia's Livox driver is `livox_ros2_driver`, not `livox_ros_driver2`, you need to do as follows. + +1. Follow the [Livox official tutorial](https://github.com/Livox-SDK/livox_ros_driver2/blob/master/README.md) to install `livox_ros2_driver` first. +2. Then, you will need to modify the content in the `point_lio` source code by replacing `livox_ros_driver2::msg::CustomMsg` with `livox_ros2_driver::msg::CustomMsg` and replacing `` with ``. + +Connect to your PC to Livox Avia LiDAR by following [Livox-ros2-driver installation](https://github.com/Livox-SDK/livox_ros2_driver), then + +```sh + cd ~/$Point_LIO_ROS_DIR$ + source install/setup.sh + ros2 launch point_lio mapping_avia.launch.py + ros2 launch livox_ros2_driver livox_lidar_msg_launch.py +``` + +### 5.3 For Livox serials with external IMU + +mapping_avia.launch theratically supports mid-70, mid-40 or other livox serial LiDAR, but need to setup some parameters befor run: + +Edit ``` config/avia.yaml ``` to set the below parameters: + +1. LiDAR point cloud topic name: ``` lid_topic ``` +2. IMU topic name: ``` imu_topic ``` +3. Translational extrinsic: ``` extrinsic_T ``` +4. Rotational extrinsic: ``` extrinsic_R ``` (only support rotation matrix) +- The extrinsic parameters in Point-LIO is defined as the LiDAR's pose (position and rotation matrix) in IMU body frame (i.e. the IMU is the base frame). They can be found in the official manual. +5. Saturation value of IMU's accelerator and gyroscope: ```satu_acc```, ```satu_gyro``` +6. The norm of IMU's acceleration according to unit of acceleration messages: ``` acc_norm ``` + +### 5.4 For Velodyne or Ouster (Velodyne as an example) + +Step A: Setup before run + +Edit ``` config/velodyne.yaml ``` to set the below parameters: + +1. LiDAR point cloud topic name: ``` lid_topic ``` +2. IMU topic name: ``` imu_topic ``` (both internal and external, 6-aixes or 9-axies are fine) +3. Set the parameter ```timestamp_unit``` based on the unit of **time** (Velodyne) or **t** (Ouster) field in PoindCloud2 rostopic +4. Line number (we tested 16, 32 and 64 line, but not tested 128 or above): ``` scan_line ``` +5. Translational extrinsic: ``` extrinsic_T ``` +6. Rotational extrinsic: ``` extrinsic_R ``` (only support rotation matrix) +- The extrinsic parameters in Point-LIO is defined as the LiDAR's pose (position and rotation matrix) in IMU body frame (i.e. the IMU is the base frame). +7. Saturation value of IMU's accelerator and gyroscope: ```satu_acc```, ```satu_gyro``` +8. The norm of IMU's acceleration according to unit of acceleration messages: ``` acc_norm ``` + +Step B: Run below + +```sh + cd ~/$Point_LIO_ROS_DIR$ + source install/setup.sh + ros2 launch point_lio mapping_velody16.launch.py +``` + +Step C: Run LiDAR's ros driver or play rosbag. + +### 5.5 PCD file save + +Set ``` pcd_save_enable ``` in launchfile to ``` 1 ```. All the scans (in global frame) will be accumulated and saved to the file ``` Point-LIO/PCD/scans.pcd ``` after the Point-LIO is terminated. ```pcl_viewer scans.pcd``` can visualize the point clouds. + +*Tips for pcl_viewer:* +- change what to visualize/color by pressing keyboard 1,2,3,4,5 when pcl_viewer is running. + +``` + 1 is all random + 2 is X values + 3 is Y values + 4 is Z values + 5 is intensity +``` + +# **6. Examples** + +## **6.1. Example-1: SLAM on datasets with aggressive motions where IMU is saturated** +
+ + +
+ +## **6.2. Example-2: Application on FPV and PULSAR** +
+ + +
+ +PULSAR is a self-rotating actuated by only one motor, [PULSAR](https://github.com/hku-mars/PULSAR) + +## 7. Contact us +If you have any questions about this work, please feel free to contact me and Dr. Fu Zhang via email. diff --git a/src/rm_localization/point_lio/config/avia.yaml b/src/rm_localization/point_lio/config/avia.yaml new file mode 100755 index 0000000..d0afe23 --- /dev/null +++ b/src/rm_localization/point_lio/config/avia.yaml @@ -0,0 +1,56 @@ +/**: + ros__parameters: + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + con_frame: false # true: if you need to combine several LiDAR frames into one + con_frame_num: 1 # the number of frames combined + cut_frame: false # true: if you need to cut one LiDAR frame into several subframes + cut_frame_time_interval: 0.1 # should be integral fraction of 1 / LiDAR frequency + time_diff_lidar_to_imu: 0.0 # Time offset between LiDAR and IMU calibrated by other algorithms, e.g., LI-Init (find in Readme) + + preprocess: + lidar_type: 1 # 4 + scan_line: 6 # 32 + timestamp_unit: 1 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 0.5 + + mapping: + imu_en: true + extrinsic_est_en: false # for aggressive motion, set this variable false + imu_time_inte: 0.005 # = 1 / frequency of IMU + lidar_time_inte: 0.1 + satu_acc: 3.0 # the saturation value of IMU's acceleration. not related to the units + satu_gyro: 35.0 # the saturation value of IMU's angular velocity. not related to the units + acc_norm: 1.0 # 1.0 for g as unit, 9.81 for m/s^2 as unit of the IMU's acceleration + lidar_meas_cov: 0.01 # 0.001; 0.01 + acc_cov_output: 500.0 + gyr_cov_output: 1000.0 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + imu_meas_acc_cov: 0.1 #0.1 # 0.1 + imu_meas_omg_cov: 0.1 #0.01 # 0.1 + gyr_cov_input: 0.01 # for IMU as input model + acc_cov_input: 0.1 # for IMU as input model + plane_thr: 0.1 # 0.05, the threshold for plane criteria, the smaller, the flatter a plane + match_s: 81.0 + ivox_grid_resolution: 2.0 + gravity: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # # [0.0, 0.0, -9.787561] # gvins # + gravity_init: [ 0.0, 0.0, -9.810 ] # preknown gravity for unstationary start in the initial IMU frame + extrinsic_T: [ 0.04165, 0.02326, -0.0284 ] # avia # [0.011, 0.02329, -0.04412] # mid360 + extrinsic_R: [ 1.0, 0.0, 0.0, + 0.0, 1.0, 0.0, + 0.0, 0.0, 1.0 ] + + odometry: + publish_odometry_without_downsample: false + + publish: + path_en: true # false: close the path output + scan_publish_en: true # false: close all the point cloud output + scan_bodyframe_pub_en: false # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: false + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_localization/point_lio/config/horizon.yaml b/src/rm_localization/point_lio/config/horizon.yaml new file mode 100755 index 0000000..230c863 --- /dev/null +++ b/src/rm_localization/point_lio/config/horizon.yaml @@ -0,0 +1,55 @@ +/**: + ros__parameters: + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + con_frame: false # true: if you need to combine several LiDAR frames into one + con_frame_num: 1 # the number of frames combined + cut_frame: false # true: if you need to cut one LiDAR frame into several subframes + cut_frame_time_interval: 0.1 # should be integral fraction of 1 / LiDAR frequency + time_diff_lidar_to_imu: 0.0 # Time offset between LiDAR and IMU calibrated by other algorithms, e.g., LI-Init (find in Readme) + + preprocess: + lidar_type: 1 + scan_line: 6 + timestamp_unit: 1 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 4.0 + + mapping: + imu_en: true + extrinsic_est_en: false # for aggressive motion, set this variable false + imu_time_inte: 0.005 # = 1 / frequency of IMU + lidar_time_inte: 0.1 + satu_acc: 3.0 # the saturation value of IMU's acceleration. not related to the units + satu_gyro: 35.0 # the saturation value of IMU's angular velocity. not related to the units + acc_norm: 1.0 # 1.0 for g as unit, 9.81 for m/s^2 as unit of the IMU's acceleration + lidar_meas_cov: 0.01 # 0.001 + acc_cov_output: 500.0 + gyr_cov_output: 1000.0 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + imu_meas_acc_cov: 0.01 #0.1 # 2 + imu_meas_omg_cov: 0.01 #0.1 # 2 + gyr_cov_input: 0.01 # for IMU as input model + acc_cov_input: 0.1 # for IMU as input model + plane_thr: 0.1 # 0.05, the threshold for plane criteria, the smaller, the flatter a plane + match_s: 81.0 + ivox_grid_resolution: 2.0 + gravity: [0.0, 0.0, -9.810] # preknown gravity, use when imu_en is false or start from a non-stationary state + extrinsic_T: [ 0.05512, 0.02226, -0.0297 ] + extrinsic_R: [ 1.0, 0.0, 0.0, + 0.0, 1.0, 0.0, + 0.0, 0.0, 1.0 ] + + odometry: + publish_odometry_without_downsample: false + + publish: + path_en: true # false: close the path output + scan_publish_en: true # false: close all the point cloud output + scan_bodyframe_pub_en: false # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: false + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_localization/point_lio/config/mid360.yaml b/src/rm_localization/point_lio/config/mid360.yaml new file mode 100755 index 0000000..f1a8186 --- /dev/null +++ b/src/rm_localization/point_lio/config/mid360.yaml @@ -0,0 +1,58 @@ +/**: + ros__parameters: + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + con_frame: false # true: if you need to combine several LiDAR frames into one + con_frame_num: 1 # the number of frames combined + cut_frame: false # true: if you need to cut one LiDAR frame into several subframes + cut_frame_time_interval: 0.1 # should be integral fraction of 1 / LiDAR frequency + time_diff_lidar_to_imu: 0.0 # Time offset between LiDAR and IMU calibrated by other algorithms, e.g., LI-Init (find in Readme) + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR + scan_line: 4 + timestamp_unit: 3 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 0.5 + + mapping: + imu_en: true + start_in_aggressive_motion: false # if true, a preknown gravity should be provided in following gravity_init + extrinsic_est_en: false # for aggressive motion, set this variable false + imu_time_inte: 0.005 # = 1 / frequency of IMU + satu_acc: 3.0 # the saturation value of IMU's acceleration. not related to the units + satu_gyro: 35.0 # the saturation value of IMU's angular velocity. not related to the units + acc_norm: 1.0 # 1.0 for g as unit, 9.81 for m/s^2 as unit of the IMU's acceleration + lidar_meas_cov: 0.01 # 0.001 + acc_cov_output: 500.0 + gyr_cov_output: 1000.0 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + imu_meas_acc_cov: 0.01 #0.1 # 2 + imu_meas_omg_cov: 0.01 #0.1 # 2 + gyr_cov_input: 0.01 # for IMU as input model + acc_cov_input: 0.1 # for IMU as input model + plane_thr: 0.1 # 0.05, the threshold for plane criteria, the smaller, the flatter a plane + match_s: 81.0 + fov_degree: 360.0 + det_range: 100.0 + gravity_align: true # true to align the z axis of world frame with the direction of gravity, and the gravity direction should be specified below + gravity: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # gravity to be aligned + gravity_init: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # # preknown gravity in the first IMU body frame, use when imu_en is false or start from a non-stationary state + extrinsic_T: [ -0.011, -0.02329, 0.04412 ] + extrinsic_R: [ 1.0, 0.0, 0.0, + 0.0, 1.0, 0.0, + 0.0, 0.0, 1.0 ] + + odometry: + publish_odometry_without_downsample: false + + publish: + path_en: true # false: close the path output + scan_publish_en: true # false: close all the point cloud output + scan_bodyframe_pub_en: false # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: false + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_localization/point_lio/config/ouster64.yaml b/src/rm_localization/point_lio/config/ouster64.yaml new file mode 100755 index 0000000..9a6dff4 --- /dev/null +++ b/src/rm_localization/point_lio/config/ouster64.yaml @@ -0,0 +1,55 @@ +/**: + ros__parameters: + common: + lid_topic: "/os_cloud_node/points" + imu_topic: "/os_cloud_node/imu" + con_frame: false # true: if you need to combine several LiDAR frames into one + con_frame_num: 1 # the number of frames combined + cut_frame: false # true: if you need to cut one LiDAR frame into several subframes + cut_frame_time_interval: 0.1 # should be integral fraction of 1 / LiDAR frequency + time_diff_lidar_to_imu: 0.0 # Time offset between LiDAR and IMU calibrated by other algorithms, e.g., LI-Init (find in Readme) + + preprocess: + lidar_type: 3 # 2 #velodyne # 1 Livox Avia LiDAR + scan_line: 64 # 32 #velodyne 6 avia + timestamp_unit: 3 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 4.0 + + mapping: + imu_en: true + extrinsic_est_en: false # for aggressive motion, set this variable false + imu_time_inte: 0.01 # = 1 / frequency of IMU + lidar_time_inte: 0.1 + satu_acc: 30.0 # the saturation value of IMU's acceleration. not related to the units + satu_gyro: 35.0 # the saturation value of IMU's angular velocity. not related to the units + acc_norm: 9.81 # 1.0 for g as unit, 9.81 for m/s^2 as unit of the IMU's acceleration + lidar_meas_cov: 0.01 # 0.001 + acc_cov_output: 500.0 + gyr_cov_output: 1000.0 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + imu_meas_acc_cov: 0.1 #0.1 # 2 + imu_meas_omg_cov: 0.1 #0.1 # 2 + gyr_cov_input: 0.01 # for IMU as input model + acc_cov_input: 0.1 # for IMU as input model + plane_thr: 0.1 # 0.05, the threshold for plane criteria, the smaller, the flatter a plane + match_s: 81.0 + ivox_grid_resolution: 2.0 + gravity_init: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # # preknown gravity in the first IMU body frame, use when imu_en is false or start from a non-stationary state + extrinsic_T: [ 0.0, 0.0, 0.0 ] + extrinsic_R: [ 1.0, 0.0, 0.0, + 0.0, 1.0, 0.0, + 0.0, 0.0, 1.0 ] + + odometry: + publish_odometry_without_downsample: false + + publish: + path_en: true # false: close the path output + scan_publish_en: true # false: close all the point cloud output + scan_bodyframe_pub_en: false # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: false + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_localization/point_lio/config/velody16.yaml b/src/rm_localization/point_lio/config/velody16.yaml new file mode 100755 index 0000000..943e211 --- /dev/null +++ b/src/rm_localization/point_lio/config/velody16.yaml @@ -0,0 +1,61 @@ +/**: + ros__parameters: + common: + lid_topic: "/velodyne_points" + imu_topic: "/imu/data" + con_frame: false # true: if you need to combine several LiDAR frames into one + con_frame_num: 1 # the number of frames combined + cut_frame: false # true: if you need to cut one LiDAR frame into several subframes + cut_frame_time_interval: 0.1 # should be integral fraction of 1 / LiDAR frequency + time_diff_lidar_to_imu: 0.0 # Time offset between LiDAR and IMU calibrated by other algorithms, e.g., LI-Init (find in Readme) + + preprocess: + lidar_type: 2 + scan_line: 32 + timestamp_unit: 2 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 2.0 + + mapping: + imu_en: true + extrinsic_est_en: false # for aggressive motion, set this variable false + imu_time_inte: 0.01 # = 1 / frequency of IMU + lidar_time_inte: 0.1 + satu_acc: 30.0 # the saturation value of IMU's acceleration. not related to the units + satu_gyro: 35.0 # the saturation value of IMU's angular velocity. not related to the units + acc_norm: 9.81 # 1.0 for g as unit, 9.81 for m/s^2 as unit of the IMU's acceleration + lidar_meas_cov: 0.01 # 0.001 + acc_cov_output: 500.0 + gyr_cov_output: 1000.0 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + imu_meas_acc_cov: 0.1 #0.1 # 2 + imu_meas_omg_cov: 0.1 #0.1 # 2 + gyr_cov_input: 0.01 # for IMU as input model + acc_cov_input: 0.1 # for IMU as input model + plane_thr: 0.1 # 0.05, the threshold for plane criteria, the smaller, the flatter a plane + match_s: 81.0 + ivox_grid_resolution: 2.0 + gravity: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # gravity to be aligned + extrinsic_T: [ 0.0, 0.0, 0.28 ] # ulhk # [-0.5, 1.4, 1.5] # utbm + # extrinsic_R: [ 0, 1, 0, + # -1, 0, 0, + # 0, 0, 1 ] # ulhk 5 6 + # extrinsic_R: [ 0, -1, 0, + # 1, 0, 0, + # 0, 0, 1 ] # utbm 1, 2 + extrinsic_R: [ 1.0, 0.0, 0.0, + 0.0, 1.0, 0.0, + 0.0, 0.0, 1.0 ] # ulhk 4 utbm 3 + + odometry: + publish_odometry_without_downsample: false + + publish: + path_en: true # false: close the path output + scan_publish_en: true # false: close all the point cloud output + scan_bodyframe_pub_en: false # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: false + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_localization/point_lio/include/IKFoM/.gitignore b/src/rm_localization/point_lio/include/IKFoM/.gitignore new file mode 100644 index 0000000..259148f --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/.gitignore @@ -0,0 +1,32 @@ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/esekfom/esekfom.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/esekfom/esekfom.hpp new file mode 100755 index 0000000..059b433 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/esekfom/esekfom.hpp @@ -0,0 +1,344 @@ +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Author: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef ESEKFOM_EKF_HPP +#define ESEKFOM_EKF_HPP + + +#include +#include + +#include +#include +#include +#include +#include +#include + +#include "../mtk/types/vect.hpp" +#include "../mtk/types/SOn.hpp" +#include "../mtk/types/S2.hpp" +#include "../mtk/types/SEn.hpp" +#include "../mtk/startIdx.hpp" +#include "../mtk/build_manifold.hpp" +#include "util.hpp" + +namespace esekfom { + +using namespace Eigen; + +template +struct dyn_share_modified +{ + bool valid; + bool converge; + T M_Noise; + Eigen::Matrix z; + Eigen::Matrix h_x; + Eigen::Matrix z_IMU; + Eigen::Matrix R_IMU; + bool satu_check[6]; +}; + +template +class esekf{ + + typedef esekf self; + enum{ + n = state::DOF, m = state::DIM, l = measurement::DOF + }; + +public: + + typedef typename state::scalar scalar_type; + typedef Matrix cov; + typedef Matrix cov_; + typedef SparseMatrix spMt; + typedef Matrix vectorized_state; + typedef Matrix flatted_state; + typedef flatted_state processModel(state &, const input &); + typedef Eigen::Matrix processMatrix1(state &, const input &); + typedef Eigen::Matrix processMatrix2(state &, const input &); + typedef Eigen::Matrix processnoisecovariance; + + typedef void measurementModel_dyn_share_modified_cov(state &, Eigen::Matrix3d, Eigen::Matrix3d, dyn_share_modified &); + typedef void measurementModel_dyn_share_modified(state &, dyn_share_modified &); + typedef Eigen::Matrix measurementMatrix1(state &); + typedef Eigen::Matrix measurementMatrix1_dyn(state &); + typedef Eigen::Matrix measurementMatrix2(state &); + typedef Eigen::Matrix measurementMatrix2_dyn(state &); + typedef Eigen::Matrix measurementnoisecovariance; + typedef Eigen::Matrix measurementnoisecovariance_dyn; + + esekf(const state &x = state(), + const cov &P = cov::Identity()): x_(x), P_(P){}; + + void init_dyn_share_modified_2h(processModel f_in, processMatrix1 f_x_in, measurementModel_dyn_share_modified_cov h_dyn_share_in1) + { + f = f_in; + f_x = f_x_in; + // f_w = f_w_in; + h_dyn_share_modified_1 = h_dyn_share_in1; + // h_dyn_share_modified_3 = h_dyn_share_in3; + maximum_iter = 1; + x_.build_S2_state(); + x_.build_SO3_state(); + x_.build_vect_state(); + x_.build_SEN_state(); + } + + void init_dyn_share_modified_3h(processModel f_in, processMatrix1 f_x_in, measurementModel_dyn_share_modified_cov h_dyn_share_in1, measurementModel_dyn_share_modified h_dyn_share_in2) + { + f = f_in; + f_x = f_x_in; + // f_w = f_w_in; + h_dyn_share_modified_1 = h_dyn_share_in1; + h_dyn_share_modified_2 = h_dyn_share_in2; + // h_dyn_share_modified_3 = h_dyn_share_in3; + maximum_iter = 1; + x_.build_S2_state(); + x_.build_SO3_state(); + x_.build_vect_state(); + x_.build_SEN_state(); + } + + // iterated error state EKF propogation + void predict(double &dt, processnoisecovariance &Q, const input &i_in, bool predict_state, bool prop_cov){ + if (predict_state) + { + flatted_state f_ = f(x_, i_in); + x_.oplus(f_, dt); + } + + if (prop_cov) + { + flatted_state f_ = f(x_, i_in); + // state x_before = x_; + + cov_ f_x_ = f_x(x_, i_in); + cov f_x_final; + F_x1 = cov::Identity(); + for (std::vector, int> >::iterator it = x_.vect_state.begin(); it != x_.vect_state.end(); it++) { + int idx = (*it).first.first; + int dim = (*it).first.second; + int dof = (*it).second; + for(int i = 0; i < n; i++){ + for(int j=0; j res_temp_SO3; + MTK::vect<3, scalar_type> seg_SO3; + for (std::vector >::iterator it = x_.SO3_state.begin(); it != x_.SO3_state.end(); it++) { + int idx = (*it).first; + int dim = (*it).second; + for(int i = 0; i < 3; i++){ + seg_SO3(i) = -1 * f_(dim + i) * dt; + } + // MTK::SO3 res; + // res.w() = MTK::exp(res.vec(), seg_SO3, scalar_type(1/2)); + F_x1.template block<3, 3>(idx, idx) = MTK::SO3::exp(seg_SO3); // res.normalized().toRotationMatrix(); + res_temp_SO3 = MTK::A_matrix(seg_SO3); + for(int i = 0; i < n; i++){ + f_x_final. template block<3, 1>(idx, i) = res_temp_SO3 * (f_x_. template block<3, 1>(dim, i)); + } + } + + F_x1 += f_x_final * dt; + P_ = F_x1 * P_ * (F_x1).transpose() + Q * (dt * dt); + } + } + + bool update_iterated_dyn_share_modified() { + dyn_share_modified dyn_share; + state x_propagated = x_; + int dof_Measurement; + double m_noise; + for(int i=0; i(0, 0), P_. template block<3, 3>(3, 3), dyn_share); + if(! dyn_share.valid) + { + return false; + // continue; + } + Matrix z = dyn_share.z; + // Matrix R = dyn_share.R; + Matrix h_x = dyn_share.h_x; + // Matrix h_v = dyn_share.h_v; + dof_Measurement = h_x.rows(); + m_noise = dyn_share.M_Noise; + // dof_Measurement_noise = dyn_share.R.rows(); + // vectorized_state dx, dx_new; + // x_.boxminus(dx, x_propagated); + // dx_new = dx; + // P_ = P_propagated; + + Matrix PHT; + Matrix HPHT; + Matrix K_; + if(n > dof_Measurement) + { + PHT = P_. template block(0, 0) * h_x.transpose(); + HPHT = h_x * PHT.topRows(12); + for (int m = 0; m < dof_Measurement; m++) + { + HPHT(m, m) += m_noise; + } + K_= PHT*HPHT.inverse(); + } + else + { + Matrix HTH = m_noise * h_x.transpose() * h_x; + Matrix P_inv = P_.inverse(); + P_inv.template block<12, 12>(0, 0) += HTH; + P_inv = P_inv.inverse(); + K_ = P_inv.template block(0, 0) * h_x.transpose() * m_noise; + } + Matrix dx_ = K_ * z; // - h) + (K_x - Matrix::Identity()) * dx_new; + // state x_before = x_; + + x_.boxplus(dx_); + { + P_ = P_ - K_*h_x*P_. template block<12, n>(0, 0); + } + } + return true; + } + + void update_iterated_dyn_share_IMU() { + + dyn_share_modified dyn_share; + for(int i=0; i z = dyn_share.z_IMU; + + Matrix PHT; + Matrix HP; + Matrix HPHT; + PHT.setZero(); + HP.setZero(); + HPHT.setZero(); + for (int l_ = 0; l_ < 6; l_++) + { + if (!dyn_share.satu_check[l_]) + { + PHT.col(l_) = P_.col(15+l_) + P_.col(24+l_); + HP.row(l_) = P_.row(15+l_) + P_.row(24+l_); + } + } + for (int l_ = 0; l_ < 6; l_++) + { + if (!dyn_share.satu_check[l_]) + { + HPHT.col(l_) = HP.col(15+l_) + HP.col(24+l_); + } + HPHT(l_, l_) += dyn_share.R_IMU(l_); //, l); + } + Eigen::Matrix K = PHT * HPHT.inverse(); + + Matrix dx_ = K * z; + + P_ -= K * HP; + x_.boxplus(dx_); + } + return; + } + + void change_x(state &input_state) + { + x_ = input_state; + + if((!x_.vect_state.size())&&(!x_.SO3_state.size())&&(!x_.S2_state.size())&&(!x_.SEN_state.size())) + { + x_.build_S2_state(); + x_.build_SO3_state(); + x_.build_vect_state(); + x_.build_SEN_state(); + } + } + + void change_P(cov &input_cov) + { + P_ = input_cov; + } + + const state& get_x() const { + return x_; + } + const cov& get_P() const { + return P_; + } + cov P_; + state x_; +private: + measurement m_; + spMt l_; + spMt f_x_1; + spMt f_x_2; + cov F_x1 = cov::Identity(); + cov F_x2 = cov::Identity(); + cov L_ = cov::Identity(); + + processModel *f; + processMatrix1 *f_x; + processMatrix2 *f_w; + + measurementMatrix1 *h_x; + measurementMatrix2 *h_v; + + measurementMatrix1_dyn *h_x_dyn; + measurementMatrix2_dyn *h_v_dyn; + + measurementModel_dyn_share_modified_cov *h_dyn_share_modified_1; + + measurementModel_dyn_share_modified *h_dyn_share_modified_2; + + measurementModel_dyn_share_modified *h_dyn_share_modified_3; + + int maximum_iter = 0; + scalar_type limit[n]; + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +} // namespace esekfom + +#endif // ESEKFOM_EKF_HPP diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/esekfom/util.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/esekfom/util.hpp new file mode 100755 index 0000000..ab39fc4 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/esekfom/util.hpp @@ -0,0 +1,82 @@ +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Author: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef __MEKFOM_UTIL_HPP__ +#define __MEKFOM_UTIL_HPP__ + +#include +#include "../mtk/src/mtkmath.hpp" +namespace esekfom { + +template +class is_same { +public: + operator bool() { + return false; + } +}; +template +class is_same { +public: + operator bool() { + return true; + } +}; + +template +class is_double { +public: + operator bool() { + return false; + } +}; + +template<> +class is_double { +public: + operator bool() { + return true; + } +}; + +template +static T +id(const T &x) +{ + return x; +} + +} // namespace esekfom + +#endif // __MEKFOM_UTIL_HPP__ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/build_manifold.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/build_manifold.hpp new file mode 100755 index 0000000..115ec7e --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/build_manifold.hpp @@ -0,0 +1,248 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/build_manifold.hpp + * @brief Macro to automatically construct compound manifolds. + * + */ +#ifndef MTK_AUTOCONSTRUCT_HPP_ +#define MTK_AUTOCONSTRUCT_HPP_ + +#include + +#include +#include +#include + +#include "src/SubManifold.hpp" +#include "startIdx.hpp" + +#ifndef PARSED_BY_DOXYGEN +//////// internals ////// + +#define MTK_APPLY_MACRO_ON_TUPLE(r, macro, tuple) macro tuple + +#define MTK_TRANSFORM_COMMA(macro, entries) BOOST_PP_SEQ_ENUM(BOOST_PP_SEQ_TRANSFORM_S(1, MTK_APPLY_MACRO_ON_TUPLE, macro, entries)) + +#define MTK_TRANSFORM(macro, entries) BOOST_PP_SEQ_FOR_EACH_R(1, MTK_APPLY_MACRO_ON_TUPLE, macro, entries) + +#define MTK_CONSTRUCTOR_ARG( type, id) const type& id = type() +#define MTK_CONSTRUCTOR_COPY( type, id) id(id) +#define MTK_BOXPLUS( type, id) id.boxplus(MTK::subvector(__vec, &self::id), __scale); +#define MTK_OPLUS( type, id) id.oplus(MTK::subvector_(__vec, &self::id), __scale); +#define MTK_BOXMINUS( type, id) id.boxminus(MTK::subvector(__res, &self::id), __oth.id); +#define MTK_HAT( type, id) if(id.IDX == idx){id.hat(vec, res);} +#define MTK_JACOB_RIGHT_INV( type, id) if(id.IDX == idx){id.Jacob_right_inv(vec, res);} +#define MTK_JACOB_RIGHT( type, id) if(id.IDX == idx){id.Jacob_right(vec, res);} +#define MTK_S2_hat( type, id) if(id.IDX == idx){id.S2_hat(res);} +#define MTK_S2_Nx_yy( type, id) if(id.IDX == idx){id.S2_Nx_yy(res);} +#define MTK_S2_Mx( type, id) if(id.IDX == idx){id.S2_Mx(res, dx);} +#define MTK_OSTREAM( type, id) << __var.id << " " +#define MTK_ISTREAM( type, id) >> __var.id +#define MTK_S2_state( type, id) if(id.TYP == 1){S2_state.push_back(std::make_pair(id.IDX, id.DIM));} +#define MTK_SO3_state( type, id) if(id.TYP == 2){(SO3_state).push_back(std::make_pair(id.IDX, id.DIM));} +#define MTK_vect_state( type, id) if(id.TYP == 0){(vect_state).push_back(std::make_pair(std::make_pair(id.IDX, id.DIM), type::DOF));} +#define MTK_SEN_state( type, id) if(id.TYP == 4){(SEN_state).push_back(std::make_pair(std::make_pair(id.IDX, id.DIM), type::DOF));} + +#define MTK_SUBVARLIST(seq, S2state, SO3state, SENstate) \ +BOOST_PP_FOR_1( \ + ( \ + BOOST_PP_SEQ_SIZE(seq), \ + BOOST_PP_SEQ_HEAD(seq), \ + BOOST_PP_SEQ_TAIL(seq) (~), \ + 0,\ + 0,\ + S2state,\ + SO3state,\ + SENstate ),\ + MTK_ENTRIES_TEST, MTK_ENTRIES_NEXT, MTK_ENTRIES_OUTPUT) + +#define MTK_PUT_TYPE(type, id, dof, dim, S2state, SO3state, SENstate) \ + MTK::SubManifold id; +#define MTK_PUT_TYPE_AND_ENUM(type, id, dof, dim, S2state, SO3state, SENstate) \ + MTK_PUT_TYPE(type, id, dof, dim, S2state, SO3state, SENstate) \ + enum {DOF = type::DOF + dof}; \ + enum {DIM = type::DIM+dim}; \ + typedef type::scalar scalar; + +#define MTK_ENTRIES_OUTPUT(r, state) MTK_ENTRIES_OUTPUT_I state +#define MTK_ENTRIES_OUTPUT_I(s, head, seq, dof, dim, S2state, SO3state, SENstate) \ + MTK_APPLY_MACRO_ON_TUPLE(~, \ + BOOST_PP_IF(BOOST_PP_DEC(s), MTK_PUT_TYPE, MTK_PUT_TYPE_AND_ENUM), \ + ( BOOST_PP_TUPLE_REM_2 head, dof, dim, S2state, SO3state, SENstate)) + +#define MTK_ENTRIES_TEST(r, state) MTK_TUPLE_ELEM_4_0 state + +//! this used to be BOOST_PP_TUPLE_ELEM_4_0: +#define MTK_TUPLE_ELEM_4_0(a,b,c,d,e,f, g, h) a + +#define MTK_ENTRIES_NEXT(r, state) MTK_ENTRIES_NEXT_I state +#define MTK_ENTRIES_NEXT_I(len, head, seq, dof, dim, S2state, SO3state, SENstate) ( \ + BOOST_PP_DEC(len), \ + BOOST_PP_SEQ_HEAD(seq), \ + BOOST_PP_SEQ_TAIL(seq), \ + dof + BOOST_PP_TUPLE_ELEM_2_0 head::DOF,\ + dim + BOOST_PP_TUPLE_ELEM_2_0 head::DIM,\ + S2state,\ + SO3state,\ + SENstate ) + +#endif /* not PARSED_BY_DOXYGEN */ + + +/** + * Construct a manifold. + * @param name is the class-name of the manifold, + * @param entries is the list of sub manifolds + * + * Entries must be given in a list like this: + * @code + * typedef MTK::trafo > Pose; + * typedef MTK::vect Vec3; + * MTK_BUILD_MANIFOLD(imu_state, + * ((Pose, pose)) + * ((Vec3, vel)) + * ((Vec3, acc_bias)) + * ) + * @endcode + * Whitespace is optional, but the double parentheses are necessary. + * Construction is done entirely in preprocessor. + * After construction @a name is also a manifold. Its members can be + * accessed by names given in @a entries. + * + * @note Variable types are not allowed to have commas, thus types like + * @c vect need to be typedef'ed ahead. + */ +#define MTK_BUILD_MANIFOLD(name, entries) \ +struct name { \ + typedef name self; \ + std::vector > S2_state;\ + std::vector > SO3_state;\ + std::vector, int> > vect_state;\ + std::vector, int> > SEN_state;\ + MTK_SUBVARLIST(entries, S2_state, SO3_state, SEN_state) \ + name ( \ + MTK_TRANSFORM_COMMA(MTK_CONSTRUCTOR_ARG, entries) \ + ) : \ + MTK_TRANSFORM_COMMA(MTK_CONSTRUCTOR_COPY, entries) {}\ + int getDOF() const { return DOF; } \ + void boxplus(const MTK::vectview & __vec, scalar __scale = 1 ) { \ + MTK_TRANSFORM(MTK_BOXPLUS, entries)\ + } \ + void oplus(const MTK::vectview & __vec, scalar __scale = 1 ) { \ + MTK_TRANSFORM(MTK_OPLUS, entries)\ + } \ + void boxminus(MTK::vectview __res, const name& __oth) const { \ + MTK_TRANSFORM(MTK_BOXMINUS, entries)\ + } \ + friend std::ostream& operator<<(std::ostream& __os, const name& __var){ \ + return __os MTK_TRANSFORM(MTK_OSTREAM, entries); \ + } \ + void build_S2_state(){\ + MTK_TRANSFORM(MTK_S2_state, entries)\ + }\ + void build_vect_state(){\ + MTK_TRANSFORM(MTK_vect_state, entries)\ + }\ + void build_SO3_state(){\ + MTK_TRANSFORM(MTK_SO3_state, entries)\ + }\ + void build_SEN_state(){\ + MTK_TRANSFORM(MTK_SEN_state, entries)\ + }\ + void Lie_hat(Eigen::VectorXd &vec, Eigen::MatrixXd &res, int idx) {\ + MTK_TRANSFORM(MTK_HAT, entries)\ + }\ + void Lie_Jacob_Right_Inv(Eigen::VectorXd &vec, Eigen::MatrixXd &res, int idx) {\ + MTK_TRANSFORM(MTK_JACOB_RIGHT_INV, entries)\ + }\ + void Lie_Jacob_Right(Eigen::VectorXd &vec, Eigen::MatrixXd &res, int idx) {\ + MTK_TRANSFORM(MTK_JACOB_RIGHT, entries)\ + }\ + void S2_hat(Eigen::Matrix &res, int idx) {\ + MTK_TRANSFORM(MTK_S2_hat, entries)\ + }\ + void S2_Nx_yy(Eigen::Matrix &res, int idx) {\ + MTK_TRANSFORM(MTK_S2_Nx_yy, entries)\ + }\ + void S2_Mx(Eigen::Matrix &res, Eigen::Matrix dx, int idx) {\ + MTK_TRANSFORM(MTK_S2_Mx, entries)\ + }\ + friend std::istream& operator>>(std::istream& __is, name& __var){ \ + return __is MTK_TRANSFORM(MTK_ISTREAM, entries); \ + } \ +}; + + + +#endif /*MTK_AUTOCONSTRUCT_HPP_*/ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/SubManifold.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/SubManifold.hpp new file mode 100755 index 0000000..a1b13de --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/SubManifold.hpp @@ -0,0 +1,123 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/src/SubManifold.hpp + * @brief Defines the SubManifold class + */ + + +#ifndef SUBMANIFOLD_HPP_ +#define SUBMANIFOLD_HPP_ + + +#include "vectview.hpp" + + +namespace MTK { + +/** + * @ingroup SubManifolds + * Helper class for compound manifolds. + * This class wraps a manifold T and provides an enum IDX refering to the + * index of the SubManifold within the compound manifold. + * + * Memberpointers to a submanifold can be used for @ref SubManifolds "functions accessing submanifolds". + * + * @tparam T The manifold type of the sub-type + * @tparam idx The index of the sub-type within the compound manifold + */ +template +struct SubManifold : public T +{ + enum {IDX = idx, DIM = dim /*!< index of the sub-type within the compound manifold */ }; + //! manifold type + typedef T type; + + //! Construct from derived type + template + explicit + SubManifold(const X& t) : T(t) {}; + + //! Construct from internal type + //explicit + SubManifold(const T& t) : T(t) {}; + + //! inherit assignment operator + using T::operator=; + +}; + +} // namespace MTK + + +#endif /* SUBMANIFOLD_HPP_ */ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/mtkmath.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/mtkmath.hpp new file mode 100755 index 0000000..a8770e4 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/mtkmath.hpp @@ -0,0 +1,294 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/src/mtkmath.hpp + * @brief several math utility functions. + */ + +#ifndef MTKMATH_H_ +#define MTKMATH_H_ + +#include + +#include + +#include "../types/vect.hpp" + +#ifndef M_PI +#define M_PI 3.1415926535897932384626433832795 +#endif + + +namespace MTK { + +namespace internal { + +template +struct traits { + typedef typename Manifold::scalar scalar; + enum {DOF = Manifold::DOF}; + typedef vect vectorized_type; + typedef Eigen::Matrix matrix_type; +}; + +template<> +struct traits : traits > {}; +template<> +struct traits : traits > {}; + +} // namespace internal + +/** + * \defgroup MTKMath Mathematical helper functions + */ +//@{ + +//! constant @f$ \pi @f$ +const double pi = M_PI; + +template inline scalar tolerance(); + +template<> inline float tolerance() { return 1e-5f; } +template<> inline double tolerance() { return 1e-11; } + + +/** + * normalize @a x to @f$[-bound, bound] @f$. + * + * result for @f$ x = bound + 2\cdot n\cdot bound @f$ is arbitrary @f$\pm bound @f$. + */ +template +inline scalar normalize(scalar x, scalar bound){ //not used + if(std::fabs(x) <= bound) return x; + int r = (int)(x *(scalar(1.0)/ bound)); + return x - ((r + (r>>31) + 1) & ~1)*bound; +} + +/** + * Calculate cosine and sinc of sqrt(x2). + * @param x2 the squared angle must be non-negative + * @return a pair containing cos and sinc of sqrt(x2) + */ +template +std::pair cos_sinc_sqrt(const scalar &x2){ + using std::sqrt; + using std::cos; + using std::sin; + static scalar const taylor_0_bound = boost::math::tools::epsilon(); + static scalar const taylor_2_bound = sqrt(taylor_0_bound); + static scalar const taylor_n_bound = sqrt(taylor_2_bound); + + assert(x2>=0 && "argument must be non-negative and must not be nan/-nan"); + + // FIXME check if bigger bounds are possible + if(x2>=taylor_n_bound) { + // slow fall-back solution + scalar x = sqrt(x2); + return std::make_pair(cos(x), sin(x)/x); // x is greater than 0. + } + + // FIXME Replace by Horner-Scheme (4 instead of 5 FLOP/term, numerically more stable, theoretically cos and sinc can be calculated in parallel using SSE2 mulpd/addpd) + // TODO Find optimal coefficients using Remez algorithm + static scalar const inv[] = {1/3., 1/4., 1/5., 1/6., 1/7., 1/8., 1/9.}; + scalar cosi = 1., sinc=1; + scalar term = -1/2. * x2; + for(int i=0; i<3; ++i) { + cosi += term; + term *= inv[2*i]; + sinc += term; + term *= -inv[2*i+1] * x2; + } + + return std::make_pair(cosi, sinc); + +} + +template +Eigen::Matrix hat(const Base& v) { + Eigen::Matrix res; + res << 0, -v[2], v[1], + v[2], 0, -v[0], + -v[1], v[0], 0; + return res; +} + +template +Eigen::Matrix A_inv_trans(const Base& v){ + Eigen::Matrix res; + if(v.norm() > MTK::tolerance()) + { + res = Eigen::Matrix::Identity() + 0.5 * hat(v) + (1 - v.norm() * std::cos(v.norm() / 2) / 2 / std::sin(v.norm() / 2)) * hat(v) * hat(v) / v.squaredNorm(); + + } + else + { + res = Eigen::Matrix::Identity(); + } + + return res; +} + +template +Eigen::Matrix A_inv(const Base& v){ + Eigen::Matrix res; + if(v.norm() > MTK::tolerance()) + { + res = Eigen::Matrix::Identity() - 0.5 * hat(v) + (1 - v.norm() * std::cos(v.norm() / 2) / 2 / std::sin(v.norm() / 2)) * hat(v) * hat(v) / v.squaredNorm(); + + } + else + { + res = Eigen::Matrix::Identity(); + } + + return res; +} + +template +Eigen::Matrix S2_w_expw_( Eigen::Matrix v, scalar length) + { + Eigen::Matrix res; + scalar norm = std::sqrt(v[0]*v[0] + v[1]*v[1]); + if(norm < MTK::tolerance()){ + res = Eigen::Matrix::Zero(); + res(0, 1) = 1; + res(1, 2) = 1; + res /= length; + } + else{ + res << -v[0]*(1/norm-1/std::tan(norm))/std::sin(norm), norm/std::sin(norm), 0, + -v[1]*(1/norm-1/std::tan(norm))/std::sin(norm), 0, norm/std::sin(norm); + res /= length; + } + } + +template +Eigen::Matrix A_matrix(const Base & v){ + Eigen::Matrix res; + double squaredNorm = v[0] * v[0] + v[1] * v[1] + v[2] * v[2]; + double norm = std::sqrt(squaredNorm); + if(norm < MTK::tolerance()){ + res = Eigen::Matrix::Identity(); + } + else{ + res = Eigen::Matrix::Identity() + (1 - std::cos(norm)) / squaredNorm * hat(v) + (1 - std::sin(norm) / norm) / squaredNorm * hat(v) * hat(v); + } + return res; +} + +template +scalar exp(vectview result, vectview vec, const scalar& scale = 1) { + scalar norm2 = vec.squaredNorm(); + std::pair cos_sinc = cos_sinc_sqrt(scale*scale * norm2); + scalar mult = cos_sinc.second * scale; + result = mult * vec; + return cos_sinc.first; +} + + +/** + * Inverse function to @c exp. + * + * @param result @c vectview to the result + * @param w scalar part of input + * @param vec vector part of input + * @param scale scale result by this value + * @param plus_minus_periodicity if true values @f$[w, vec]@f$ and @f$[-w, -vec]@f$ give the same result + */ +template +void log(vectview result, + const scalar &w, const vectview vec, + const scalar &scale, bool plus_minus_periodicity) +{ + // FIXME implement optimized case for vec.squaredNorm() <= tolerance() * (w*w) via Rational Remez approximation ~> only one division + scalar nv = vec.norm(); + if(nv < tolerance()) { + if(!plus_minus_periodicity && w < 0) { + // find the maximal entry: + int i; + nv = vec.cwiseAbs().maxCoeff(&i); + result = scale * std::atan2(nv, w) * vect::Unit(i); + return; + } + nv = tolerance(); + } + scalar s = scale / nv * (plus_minus_periodicity ? std::atan(nv / w) : std::atan2(nv, w) ); + + result = s * vec; +} + + +} // namespace MTK + + +#endif /* MTKMATH_H_ */ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/vectview.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/vectview.hpp new file mode 100755 index 0000000..5025071 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/src/vectview.hpp @@ -0,0 +1,168 @@ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/src/vectview.hpp + * @brief Wrapper class around a pointer used as interface for plain vectors. + */ + +#ifndef VECTVIEW_HPP_ +#define VECTVIEW_HPP_ + +#include + +namespace MTK { + +/** + * A view to a vector. + * Essentially, @c vectview is only a pointer to @c scalar but can be used directly in @c Eigen expressions. + * The dimension of the vector is given as template parameter and type-checked when used in expressions. + * Data has to be modifiable. + * + * @tparam scalar Scalar type of the vector. + * @tparam dim Dimension of the vector. + * + * @todo @c vectview can be replaced by simple inheritance of @c Eigen::Map, as soon as they get const-correct + */ +namespace internal { + template + struct CovBlock { + typedef typename Eigen::Block, T1::DOF, T2::DOF> Type; + typedef typename Eigen::Block, T1::DOF, T2::DOF> ConstType; + }; + + template + struct CovBlock_ { + typedef typename Eigen::Block, T1::DIM, T2::DIM> Type; + typedef typename Eigen::Block, T1::DIM, T2::DIM> ConstType; + }; + + template + struct CrossCovBlock { + typedef typename Eigen::Block, T1::DOF, T2::DOF> Type; + typedef typename Eigen::Block, T1::DOF, T2::DOF> ConstType; + }; + + template + struct CrossCovBlock_ { + typedef typename Eigen::Block, T1::DIM, T2::DIM> Type; + typedef typename Eigen::Block, T1::DIM, T2::DIM> ConstType; + }; + + template + struct VectviewBase { + typedef Eigen::Matrix matrix_type; + typedef typename matrix_type::MapType Type; + typedef typename matrix_type::ConstMapType ConstType; + }; + + template + struct UnalignedType { + typedef T type; + }; +} + +template +class vectview : public internal::VectviewBase::Type { + typedef internal::VectviewBase VectviewBase; +public: + //! plain matrix type + typedef typename VectviewBase::matrix_type matrix_type; + //! base type + typedef typename VectviewBase::Type base; + //! construct from pointer + explicit + vectview(scalar* data, int dim_=dim) : base(data, dim_) {} + //! construct from plain matrix + vectview(matrix_type& m) : base(m.data(), m.size()) {} + //! construct from another @c vectview + vectview(const vectview &v) : base(v) {} + //! construct from Eigen::Block: + template + vectview(Eigen::VectorBlock block) : base(&block.coeffRef(0), block.size()) {} + template + vectview(Eigen::Block block) : base(&block.coeffRef(0), block.size()) {} + + //! inherit assignment operator + using base::operator=; + //! data pointer + scalar* data() {return const_cast(base::data());} +}; + +/** + * @c const version of @c vectview. + * Compared to @c Eigen::Map this implementation is const correct, i.e., + * data will not be modifiable using this view. + * + * @tparam scalar Scalar type of the vector. + * @tparam dim Dimension of the vector. + * + * @sa vectview + */ +template +class vectview : public internal::VectviewBase::ConstType { + typedef internal::VectviewBase VectviewBase; +public: + //! plain matrix type + typedef typename VectviewBase::matrix_type matrix_type; + //! base type + typedef typename VectviewBase::ConstType base; + //! construct from const pointer + explicit + vectview(const scalar* data, int dim_ = dim) : base(data, dim_) {} + //! construct from column vector + template + vectview(const Eigen::Matrix& m) : base(m.data()) {} + //! construct from row vector + template + vectview(const Eigen::Matrix& m) : base(m.data()) {} + //! construct from another @c vectview + vectview(vectview x) : base(x.data()) {} + //! construct from base + vectview(const base &x) : base(x) {} + /** + * Construct from Block + * @todo adapt this, when Block gets const-correct + */ + template + vectview(Eigen::VectorBlock block) : base(&block.coeffRef(0)) {} + template + vectview(Eigen::Block block) : base(&block.coeffRef(0)) {} + +}; + + +} // namespace MTK + +#endif /* VECTVIEW_HPP_ */ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/startIdx.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/startIdx.hpp new file mode 100755 index 0000000..4dc2958 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/startIdx.hpp @@ -0,0 +1,328 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/startIdx.hpp + * @brief Tools to access sub-elements of compound manifolds. + */ +#ifndef GET_START_INDEX_H_ +#define GET_START_INDEX_H_ + +#include + +#include "src/SubManifold.hpp" +#include "src/vectview.hpp" + +namespace MTK { + + +/** + * \defgroup SubManifolds Accessing Submanifolds + * For compound manifolds constructed using MTK_BUILD_MANIFOLD, member pointers + * can be used to get sub-vectors or matrix-blocks of a corresponding big matrix. + * E.g. for a type @a pose consisting of @a orient and @a trans the member pointers + * @c &pose::orient and @c &pose::trans give all required information and are still + * valid if the base type gets extended or the actual types of @a orient and @a trans + * change (e.g. from 2D to 3D). + * + * @todo Maybe require manifolds to typedef MatrixType and VectorType, etc. + */ +//@{ + +/** + * Determine the index of a sub-variable within a compound variable. + */ +template +int getStartIdx( MTK::SubManifold Base::*) +{ + return idx; +} + +template +int getStartIdx_( MTK::SubManifold Base::*) +{ + return dim; +} + +/** + * Determine the degrees of freedom of a sub-variable within a compound variable. + */ +template +int getDof( MTK::SubManifold Base::*) +{ + return T::DOF; +} +template +int getDim( MTK::SubManifold Base::*) +{ + return T::DIM; +} + +/** + * set the diagonal elements of a covariance matrix corresponding to a sub-variable + */ +template +void setDiagonal(Eigen::Matrix &cov, + MTK::SubManifold Base::*, const typename Base::scalar &val) +{ + cov.diagonal().template segment(idx).setConstant(val); +} + +template +void setDiagonal_(Eigen::Matrix &cov, + MTK::SubManifold Base::*, const typename Base::scalar &val) +{ + cov.diagonal().template segment(dim).setConstant(val); +} + +/** + * Get the subblock of corresponding to two members, i.e. + * \code + * Eigen::Matrix m; + * MTK::subblock(m, &Pose::orient, &Pose::trans) = some_expression; + * MTK::subblock(m, &Pose::trans, &Pose::orient) = some_expression.trans(); + * \endcode + * lets you modify mixed covariance entries in a bigger covariance matrix. + */ +template +typename MTK::internal::CovBlock::Type +subblock(Eigen::Matrix &cov, + MTK::SubManifold Base::*, MTK::SubManifold Base::*) +{ + return cov.template block(idx1, idx2); +} + +template +typename MTK::internal::CovBlock_::Type +subblock_(Eigen::Matrix &cov, + MTK::SubManifold Base::*, MTK::SubManifold Base::*) +{ + return cov.template block(dim1, dim2); +} + +template +typename MTK::internal::CrossCovBlock::Type +subblock(Eigen::Matrix &cov, MTK::SubManifold Base1::*, MTK::SubManifold Base2::*) +{ + return cov.template block(idx1, idx2); +} + +template +typename MTK::internal::CrossCovBlock_::Type +subblock_(Eigen::Matrix &cov, MTK::SubManifold Base1::*, MTK::SubManifold Base2::*) +{ + return cov.template block(dim1, dim2); +} +/** + * Get the subblock of corresponding to a member, i.e. + * \code + * Eigen::Matrix m; + * MTK::subblock(m, &Pose::orient) = some_expression; + * \endcode + * lets you modify covariance entries in a bigger covariance matrix. + */ +template +typename MTK::internal::CovBlock_::Type +subblock_(Eigen::Matrix &cov, + MTK::SubManifold Base::*) +{ + return cov.template block(dim, dim); +} + +template +typename MTK::internal::CovBlock::Type +subblock(Eigen::Matrix &cov, + MTK::SubManifold Base::*) +{ + return cov.template block(idx, idx); +} + +template +class get_cov { +public: + typedef Eigen::Matrix type; + typedef const Eigen::Matrix const_type; +}; + +template +class get_cov_ { +public: + typedef Eigen::Matrix type; + typedef const Eigen::Matrix const_type; +}; + +template +class get_cross_cov { +public: + typedef Eigen::Matrix type; + typedef const type const_type; +}; + +template +class get_cross_cov_ { +public: + typedef Eigen::Matrix type; + typedef const type const_type; +}; + + +template +vectview +subvector_impl_(vectview vec, SubManifold Base::*) +{ + return vec.template segment(dim); +} + +template +vectview +subvector_impl(vectview vec, SubManifold Base::*) +{ + return vec.template segment(idx); +} + +/** + * Get the subvector corresponding to a sub-manifold from a bigger vector. + */ + template +vectview +subvector_(vectview vec, SubManifold Base::* ptr) +{ + return subvector_impl_(vec, ptr); +} + +template +vectview +subvector(vectview vec, SubManifold Base::* ptr) +{ + return subvector_impl(vec, ptr); +} + +/** + * @todo This should be covered already by subvector(vectview vec,SubManifold Base::*) + */ +template +vectview +subvector(Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl(vectview(vec), ptr); +} + +template +vectview +subvector_(Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl_(vectview(vec), ptr); +} + +template +vectview +subvector_(const Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl_(vectview(vec), ptr); +} + +template +vectview +subvector(const Eigen::Matrix& vec, SubManifold Base::* ptr) +{ + return subvector_impl(vectview(vec), ptr); +} + + +/** + * const version of subvector(vectview vec,SubManifold Base::*) + */ +template +vectview +subvector_impl(const vectview cvec, SubManifold Base::*) +{ + return cvec.template segment(idx); +} + +template +vectview +subvector_impl_(const vectview cvec, SubManifold Base::*) +{ + return cvec.template segment(dim); +} + +template +vectview +subvector(const vectview cvec, SubManifold Base::* ptr) +{ + return subvector_impl(cvec, ptr); +} + + +} // namespace MTK + +#endif // GET_START_INDEX_H_ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/S2.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/S2.hpp new file mode 100755 index 0000000..b19f9b0 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/S2.hpp @@ -0,0 +1,327 @@ +// This is a NEW implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/types/S2.hpp + * @brief Unit vectors on the sphere, or directions in 3D. + */ +#ifndef S2_H_ +#define S2_H_ + + +#include "vect.hpp" + +#include "SOn.hpp" +#include "../src/mtkmath.hpp" + + + + +namespace MTK { + +/** + * Manifold representation of @f$ S^2 @f$. + * Used for unit vectors on the sphere or directions in 3D. + * + * @todo add conversions from/to polar angles? + */ +template +struct S2 { + + typedef _scalar scalar; + typedef vect<3, scalar> vect_type; + typedef SO3 SO3_type; + typedef typename vect_type::base vec3; + scalar length = scalar(den)/scalar(num); + enum {DOF=2, TYP = 1, DIM = 3}; + +//private: + /** + * Unit vector on the sphere, or vector pointing in a direction + */ + vect_type vec; + +public: + S2() { + if(S2_typ == 3) vec=length * vec3(0, 0, std::sqrt(1)); + if(S2_typ == 2) vec=length * vec3(0, std::sqrt(1), 0); + if(S2_typ == 1) vec=length * vec3(std::sqrt(1), 0, 0); + } + S2(const scalar &x, const scalar &y, const scalar &z) : vec(vec3(x, y, z)) { + vec.normalize(); + vec = vec * length; + } + + S2(const vect_type &_vec) : vec(_vec) { + vec.normalize(); + vec = vec * length; + } + + void oplus(MTK::vectview delta, scalar scale = 1) + { + // SO3_type res; + // res.w() = MTK::exp(res.vec(), delta, scalar(scale/2)); + vec = SO3_type::exp(delta) * vec; // res.normalized().toRotationMatrix() * vec; + } + + void boxplus(MTK::vectview delta, scalar scale=1) { + Eigen::Matrix Bx; + S2_Bx(Bx); + vect_type Bu = Bx*delta; + // SO3_type res; + // res.w() = MTK::exp(res.vec(), Bu, scalar(scale/2)); + vec = SO3_type::exp(delta) * vec; // res.normalized().toRotationMatrix() * vec; + } + + void boxminus(MTK::vectview res, const S2& other) const { + scalar v_sin = (MTK::hat(vec)*other.vec).norm(); + scalar v_cos = vec.transpose() * other.vec; + scalar theta = std::atan2(v_sin, v_cos); + if(v_sin < MTK::tolerance()) + { + if(std::fabs(theta) > MTK::tolerance() ) + { + res[0] = 3.1415926; + res[1] = 0; + } + else{ + res[0] = 0; + res[1] = 0; + } + } + else + { + S2 other_copy = other; + Eigen::MatrixBx; + other_copy.S2_Bx(Bx); + res = theta/v_sin * Bx.transpose() * MTK::hat(other.vec)*vec; + } + } + + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right_inv(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + + void S2_hat(Eigen::Matrix &res) + { + Eigen::Matrix skew_vec; + skew_vec << scalar(0), -vec[2], vec[1], + vec[2], scalar(0), -vec[0], + -vec[1], vec[0], scalar(0); + res = skew_vec; + } + + + void S2_Bx(Eigen::Matrix &res) + { + if(S2_typ == 3) + { + if(vec[2] + length > tolerance()) + { + + res << length - vec[0]*vec[0]/(length+vec[2]), -vec[0]*vec[1]/(length+vec[2]), + -vec[0]*vec[1]/(length+vec[2]), length-vec[1]*vec[1]/(length+vec[2]), + -vec[0], -vec[1]; + res /= length; + } + else + { + res = Eigen::Matrix::Zero(); + res(1, 1) = -1; + res(2, 0) = 1; + } + } + else if(S2_typ == 2) + { + if(vec[1] + length > tolerance()) + { + + res << length - vec[0]*vec[0]/(length+vec[1]), -vec[0]*vec[2]/(length+vec[1]), + -vec[0], -vec[2], + -vec[0]*vec[2]/(length+vec[1]), length-vec[2]*vec[2]/(length+vec[1]); + res /= length; + } + else + { + res = Eigen::Matrix::Zero(); + res(1, 1) = -1; + res(2, 0) = 1; + } + } + else + { + if(vec[0] + length > tolerance()) + { + + res << -vec[1], -vec[2], + length - vec[1]*vec[1]/(length+vec[0]), -vec[2]*vec[1]/(length+vec[0]), + -vec[2]*vec[1]/(length+vec[0]), length-vec[2]*vec[2]/(length+vec[0]); + res /= length; + } + else + { + res = Eigen::Matrix::Zero(); + res(1, 1) = -1; + res(2, 0) = 1; + } + } + } + + void S2_Nx(Eigen::Matrix &res, S2& subtrahend) + { + if((vec+subtrahend.vec).norm() > tolerance()) + { + Eigen::Matrix Bx; + S2_Bx(Bx); + if((vec-subtrahend.vec).norm() > tolerance()) + { + scalar v_sin = (MTK::hat(vec)*subtrahend.vec).norm(); + scalar v_cos = vec.transpose() * subtrahend.vec; + + res = Bx.transpose() * (std::atan2(v_sin, v_cos)/v_sin*MTK::hat(vec)+MTK::hat(vec)*subtrahend.vec*((-v_cos/v_sin/v_sin/length/length/length/length+std::atan2(v_sin, v_cos)/v_sin/v_sin/v_sin)*subtrahend.vec.transpose()*MTK::hat(vec)*MTK::hat(vec)-vec.transpose()/length/length/length/length)); + } + else + { + res = 1/length/length*Bx.transpose()*MTK::hat(vec); + } + } + else + { + std::cerr << "No N(x, y) for x=-y" << std::endl; + std::exit(100); + } + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + Eigen::Matrix Bx; + S2_Bx(Bx); + res = 1/length/length*Bx.transpose()*MTK::hat(vec); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + Eigen::Matrix Bx; + S2_Bx(Bx); + if(delta.norm() < tolerance()) + { + res = -MTK::hat(vec)*Bx; + } + else{ + vect_type Bu = Bx*delta; + // SO3_type exp_delta; + // exp_delta.w() = MTK::exp(exp_delta.vec(), Bu, scalar(1/2)); + res = -SO3_type::exp(Bu)*MTK::hat(vec)*MTK::A_matrix(Bu).transpose()*Bx; // exp_delta.normalized().toRotationMatrix() + } + } + + operator const vect_type&() const{ + return vec; + } + + const vect_type& get_vect() const { + return vec; + } + + friend S2 operator*(const SO3& rot, const S2& dir) + { + S2 ret; + ret.vec = rot * dir.vec; + return ret; + } + + scalar operator[](int idx) const {return vec[idx]; } + + friend std::ostream& operator<<(std::ostream &os, const S2& vec){ + return os << vec.vec.transpose() << " "; + } + friend std::istream& operator>>(std::istream &is, S2& vec){ + for(int i=0; i<3; ++i) + is >> vec.vec[i]; + vec.vec.normalize(); + vec.vec = vec.vec * vec.length; + return is; + + } +}; + + +} // namespace MTK + + +#endif /*S2_H_*/ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/SEn.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/SEn.hpp new file mode 100755 index 0000000..2270136 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/SEn.hpp @@ -0,0 +1,334 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/types/SEn.hpp + * @brief Standard Orthogonal Groups i.e.\ rotatation groups. + */ +#ifndef SEN_H_ +#define SEN_H_ + +#include + +#include "SOn.hpp" +#include "vect.hpp" +#include "../src/mtkmath.hpp" + + +namespace MTK { + + +/** + * Three-dimensional orientations represented as Quaternion. + * It is assumed that the internal Quaternion always stays normalized, + * should this not be the case, call inherited member function @c normalize(). + */ +template +struct SEN { + enum {DOF = num_of_vec_plus1, DIM = num_of_vec_plus1, TYP = 4}; + typedef _scalar scalar; + typedef Eigen::Matrix base; + typedef SO3 SO3_type; + // typedef Eigen::Quaternion base; + // typedef Eigen::Quaternion Quaternion; + typedef vect vect_type; + SO3_type SO3_data; + base mat; + + /** + * Construct from real part and three imaginary parts. + * Quaternion is normalized after construction. + */ + // SEN(const base& src) : mat(src) { + // // base::normalize(); + // } + + /** + * Construct from Eigen::Quaternion. + * @note Non-normalized input may result result in spurious behavior. + */ + SEN(const base& src = base::Identity()) : mat(src) {} + + /** + * Construct from rotation matrix. + * @note Invalid rotation matrices may lead to spurious behavior. + */ + // template + // SO3(const Eigen::MatrixBase& matrix) : base(matrix) {} + + /** + * Construct from arbitrary rotation type. + * @note Invalid rotation matrices may lead to spurious behavior. + */ + // template + // SO3(const Eigen::RotationBase& rotation) : base(rotation.derived()) {} + + //! @name Manifold requirements + + void boxplus(MTK::vectview vec, scalar scale=1) { + SEN delta = exp(vec, scale); // ? + mat = mat * delta.mat; + } + void boxminus(MTK::vectview res, const SEN& other) const { + base error_mat = other.mat.inverse() * mat; + res = log(error_mat); + } + //} + + void oplus(MTK::vectview vec, scalar scale=1) { + SEN delta = exp(vec, scale); + mat = mat * delta.mat; + } + + // void hat(MTK::vectview& v, Eigen::Matrix &res) { + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + res = Eigen::Matrix::Zero(); + Eigen::Matrix psi; + psi << 0, -v[2], v[1], + v[2], 0, -v[0], + -v[1], v[0], 0; + res.block<3, 3>(0, 0) = psi; + for(int i = 3; i < v.size() / 3 + 2; i++) + { + res.block<3, 1>(0, i) = v.segment<3>(i + (i-3)*3); + } + // return res; + } + + // void Jacob_right_inv(MTK::vectview vec, Eigen::Matrix & res){ + void Jacob_right_inv(Eigen::VectorXd& vec, Eigen::MatrixXd &res){ + res = Eigen::Matrix::Zero(); + Eigen::Matrix M_v; + Eigen::VectorXd vec_psi, vec_ro; + Eigen::MatrixXd jac_v; + Eigen::MatrixXd hat_v, hat_ro; + vec_psi = vec.segment<3>(0); + // Eigen::Matrix ; + SO3_data.hat(vec_psi, hat_v); + SO3_data.Jacob_right_inv(vec_psi, jac_v); + double norm = vec_psi.norm(); + for(int i = 0; i < vec.size() / 3; i++) + { + res.block<3, 3>(i*3, i*3) = jac_v; + } + for(int i = 1; i < vec.size() / 3; i++) + { + vec_ro = vec.segment<3>(i * 3); + SO3_data.hat(vec_ro, hat_ro); + if(norm > MTK::tolerance()) + { + res.block<3,3>(i*3, 0) = 0.5 * hat_ro + (1 - norm * std::cos(norm / 2) / 2 / std::sin(norm / 2))/norm/norm * (hat_ro * hat_v + hat_v * hat_ro) + ((2 - norm * std::cos(norm / 2) / 2 / std::sin(norm / 2)) / 2 / norm / norm / norm / norm - 1 / 8 / norm / norm / std::sin(norm / 2) / std::sin(norm / 2)) * hat_v * (hat_ro * hat_v + hat_v * hat_ro) * hat_v; + } + else + { + res.block<3,3>(i*3, 0) = 0.5 * hat_ro; + } + + } + // return res; + } + + // void Jacob_right(MTK::vectview & vec, Eigen::Matrix &res){ + void Jacob_right(Eigen::VectorXd& vec, Eigen::MatrixXd &res){ + res = Eigen::Matrix::Zero(); + Eigen::MatrixXd hat_v, hat_ro; + Eigen::VectorXd vec_psi, vec_ro; + Eigen::MatrixXd jac_v; + vec_psi = vec.segment<3>(0); + // Eigen::Matrix ; + SO3_data.hat(vec_psi, hat_v); + SO3_data.Jacob_right(vec_psi, jac_v); + // double squaredNorm = v[0] * v[0] + v[1] * v[1] + v[2] * v[2]; + // double norm = std::sqrt(squaredNorm); + double norm = vec_psi.norm(); + for(int i = 0; i < vec.size() / 3; i++) + { + res.block<3, 3>(i*3, i*3) = jac_v; + } + for(int i = 1; i < vec.size() / 3; i++) + { + vec_ro = vec.segment<3>(i * 3); + SO3_data.hat(vec_ro, hat_ro); + if(norm > MTK::tolerance()) + { + res.block<3,3>(i*3, 0) = -1 * jac_v * (0.5 * hat_ro + (1 - norm * std::cos(norm / 2) / 2 / std::sin(norm / 2))/norm/norm * (hat_ro * hat_v + hat_v * hat_ro) + ((2 - norm * std::cos(norm / 2) / 2 / std::sin(norm / 2)) / 2 / norm / norm / norm / norm - 1 / 8 / norm / norm / std::sin(norm / 2) / std::sin(norm / 2)) * hat_v * (hat_ro * hat_v + hat_v * hat_ro) * hat_v) * jac_v; + } + else + { + res.block<3,3>(i*3, 0) = -0.5 * jac_v * hat_ro * jac_v; + } + + } + // return res; + } + + void S2_hat(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + res = Eigen::Matrix::Zero(); + } + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + friend std::ostream& operator<<(std::ostream &os, const SEN& q){ + for(int i=0; i>(std::istream &is, SEN& q){ + // vect coeffs; + for(int i=0; i> q.mat(i, j); + } + } + // is >> q.mat; + // coeffs; + // q.coeffs() = coeffs.normalized(); + return is; + } + + //! @name Helper functions + //{ + /** + * Calculate the exponential map. In matrix terms this would correspond + * to the Rodrigues formula. + */ + // FIXME vectview<> can't be constructed from every MatrixBase<>, use const Vector3x& as workaround +// static SO3 exp(MTK::vectview dvec, scalar scale = 1){ + static SEN exp(const Eigen::Matrix& dvec, scalar scale = 1){ + SEN res; + res.mat = Eigen::Matrix::Identity(); + Eigen::Matrix exp_; //, jac; + Eigen::MatrixXd jac; + Eigen::Matrix psi; + Eigen::VectorXd minus_psi; + psi = dvec.template block<3,1>(0, 0); + minus_psi = -psi; + SO3_type SO3_temp; + exp_ = SO3_type::exp(psi); + SO3_temp.Jacob_right(minus_psi, jac); + res.mat.template block<3,3>(0, 0) = exp_; + for(int i = 3; i < DOF / 3 + 2; i++) + { + res.mat.template block<3, 1>(0, i) = jac * dvec.template block<3,1>(i + (i-3)*3,0); + } + return res; + } + /** + * Calculate the inverse of @c exp. + * Only guarantees that exp(log(x)) == x + */ + static Eigen::Matrix log(base &orient){ + Eigen::Matrix res; + Eigen::Matrix psi; + Eigen::VectorXd minus_psi; + Eigen::Matrix mat_psi; + Eigen::MatrixXd jac; + mat_psi = orient.template block<3, 3>(0, 0); + SO3_type SO3_temp; + SO3_type exp_psi(mat_psi); + psi = SO3_type::log(exp_psi); + minus_psi = -psi; + SO3_temp.Jacob_right_inv(minus_psi, jac); + for(int i = 3; i < dim_of_mat; i++) + { + res.template block<3,1>(i + (i-3)*3,0) = jac * orient.template block<3, 1>(0, i); + } + return res; + } +}; + + +} // namespace MTK + +#endif /*SON_H_*/ + diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/SOn.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/SOn.hpp new file mode 100755 index 0000000..155ecf7 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/SOn.hpp @@ -0,0 +1,361 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/types/SOn.hpp + * @brief Standard Orthogonal Groups i.e.\ rotatation groups. + */ +#ifndef SON_H_ +#define SON_H_ + +#include + +#include "vect.hpp" +#include "../src/mtkmath.hpp" + + +namespace MTK { + + +/** + * Two-dimensional orientations represented as scalar. + * There is no guarantee that the representing scalar is within any interval, + * but the result of boxminus will always have magnitude @f$\le\pi @f$. + */ +template +struct SO2 : public Eigen::Rotation2D<_scalar> { + enum {DOF = 1, DIM = 2, TYP = 3}; + + typedef _scalar scalar; + typedef Eigen::Rotation2D base; + typedef vect vect_type; + + //! Construct from angle + SO2(const scalar& angle = 0) : base(angle) { } + + //! Construct from Eigen::Rotation2D + SO2(const base& src) : base(src) {} + + /** + * Construct from 2D vector. + * Resulting orientation will rotate the first unit vector to point to vec. + */ + SO2(const vect_type &vec) : base(atan2(vec[1], vec[0])) {}; + + + //! Calculate @c this->inverse() * @c r + SO2 operator%(const base &r) const { + return base::inverse() * r; + } + + //! Calculate @c this->inverse() * @c r + template + vect_type operator%(const Eigen::MatrixBase &vec) const { + return base::inverse() * vec; + } + + //! Calculate @c *this * @c r.inverse() + SO2 operator/(const SO2 &r) const { + return *this * r.inverse(); + } + + //! Gets the angle as scalar. + operator scalar() const { + return base::angle(); + } + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + //! @name Manifold requirements + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + base::angle() += scale * vec[0]; + } + + void boxplus(MTK::vectview vec, scalar scale = 1) { + base::angle() += scale * vec[0]; + } + void boxminus(MTK::vectview res, const SO2& other) const { + res[0] = MTK::normalize(base::angle() - other.angle(), scalar(MTK::pi)); + } + + friend std::istream& operator>>(std::istream &is, SO2& ang){ + return is >> ang.angle(); + } + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right_inv(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } +}; + + +/** + * Three-dimensional orientations represented as Quaternion. + * It is assumed that the internal Quaternion always stays normalized, + * should this not be the case, call inherited member function @c normalize(). + */ +template //, int Options = Eigen::AutoAlign> +struct SO3 : public Eigen::Matrix<_scalar, 3, 3> { + enum {DOF = 3, DIM = 3, TYP = 2}; + typedef _scalar scalar; + typedef Eigen::Matrix base; + typedef Eigen::Matrix Matrix; + typedef vect vect_type; + + /** + * Construct from Eigen::Quaternion. + * @note Non-normalized input may result result in spurious behavior. + */ + SO3(const base& src = base::Identity()) : base(src) {} + + /** + * Construct from rotation matrix. + * @note Invalid rotation matrices may lead to spurious behavior. + */ + template + SO3(const Eigen::MatrixBase& matrix) : base(matrix) {} + + /** + * Construct from arbitrary rotation type. + * @note Invalid rotation matrices may lead to spurious behavior. + */ + // template + // SO3(const Eigen::RotationBase& rotation) : base(rotation.derived()) {} + + //! @name Manifold requirements + + // SO3 operator=(const base &r) const { + // return r; + // } + + // //! Calculate @c *this * @c r.inverse() + // SO3 operator*(const SO3 &r) const { + // return *this * r; + // } + + void boxplus(MTK::vectview vec, scalar scale=1) { + SO3 delta = exp(vec, scale); + *this = *this * delta; + } + void boxminus(MTK::vectview res, const SO3& other) const { + res = SO3::log(other.transpose() * *this); + } + //} + + void oplus(MTK::vectview vec, scalar scale=1) { + SO3 delta = exp(vec, scale); + *this = *this * delta; + } + + // void hat(MTK::vectview& v, Eigen::Matrix &res) { + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + // Eigen::Matrix res; + res << 0, -v[2], v[1], + v[2], 0, -v[0], + -v[1], v[0], 0; + // return res; + } + + // void Jacob_right_inv(MTK::vectview vec, Eigen::Matrix & res){ + void Jacob_right_inv(Eigen::VectorXd& vec, Eigen::MatrixXd &res){ + Eigen::MatrixXd hat_v; + hat(vec, hat_v); + if(vec.norm() > MTK::tolerance()) + { + res = Eigen::Matrix::Identity() + 0.5 * hat_v + (1 - vec.norm() * std::cos(vec.norm() / 2) / 2 / std::sin(vec.norm() / 2)) * hat_v * hat_v / vec.squaredNorm(); + } + else + { + res = Eigen::Matrix::Identity(); + } + // return res; + } + + // void Jacob_right(MTK::vectview & v, Eigen::Matrix &res){ + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res){ + Eigen::MatrixXd hat_v; + hat(v, hat_v); + double squaredNorm = v[0] * v[0] + v[1] * v[1] + v[2] * v[2]; + double norm = std::sqrt(squaredNorm); + if(norm < MTK::tolerance()){ + res = Eigen::Matrix::Identity(); + } + else{ + res = Eigen::Matrix::Identity() - (1 - std::cos(norm)) / squaredNorm * hat_v + (1 - std::sin(norm) / norm) / squaredNorm * hat_v * hat_v; + } + // return res; + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + friend std::ostream& operator<<(std::ostream &os, const SO3& q){ // wrong! + return os << q.data() << " "; + } + + friend std::istream& operator>>(std::istream &is, SO3& q){ // wrong! + SO3 coeffs; + is >> coeffs; + q = coeffs; + return is; + } + + //! @name Helper functions + //{ + /** + * Calculate the exponential map. In matrix terms this would correspond + * to the Rodrigues formula. + */ + // FIXME vectview<> can't be constructed from every MatrixBase<>, use const Vector3x& as workaround +// static SO3 exp(MTK::vectview dvec, scalar scale = 1){ + static SO3 exp(const Eigen::Matrix& dvec, scalar scale = 1){ + Eigen::Matrix ang = dvec * scale; + double ang_norm = ang.norm(); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + if (ang_norm > 0.0000001) + { + Eigen::Matrix r_axis = ang / ang_norm; + Eigen::Matrix K; + K << 0.0, -r_axis(2), r_axis(1), + r_axis(2), 0.0, -r_axis(0), + -r_axis(1), r_axis(0), 0.0; // SKEW_SYM_MATRX(r_axis); + /// Roderigous Tranformation + return Eye3 + std::sin(ang_norm) * K + (1.0 - std::cos(ang_norm)) * K * K; + } + else + { + return Eye3; + } + } + /** + * Calculate the inverse of @c exp. + * Only guarantees that exp(log(x)) == x + */ + static Eigen::Vector3d log(const SO3 &orient){ + double theta = (orient.trace() > 3.0 - 1e-6) ? 0.0 : std::acos(0.5 * (orient.trace() - 1)); + Eigen::Matrix K(orient(2,1) - orient(1,2), orient(0,2) - orient(2,0), orient(1,0) - orient(0,1)); + return (std::abs(theta) < 0.001) ? (0.5 * K) : (0.5 * theta / std::sin(theta) * K); + } +}; + +namespace internal { +template +struct UnalignedType >{ + typedef SO2 type; +}; + +template +struct UnalignedType >{ + typedef SO3 type; +}; + +} // namespace internal + + +} // namespace MTK + +#endif /*SON_H_*/ + diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/vect.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/vect.hpp new file mode 100755 index 0000000..d75e6d7 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/vect.hpp @@ -0,0 +1,511 @@ +// This is an advanced implementation of the algorithm described in the +// following paper: +// C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. +// CoRR, vol. abs/1107.1119, 2011.[Online]. Available: http://arxiv.org/abs/1107.1119 + +/* + * Copyright (c) 2019--2023, The University of Hong Kong + * All rights reserved. + * + * Modifier: Dongjiao HE + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 2008--2011, Universitaet Bremen + * All rights reserved. + * + * Author: Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/** + * @file mtk/types/vect.hpp + * @brief Basic vectors interpreted as manifolds. + * + * This file also implements a simple wrapper for matrices, for arbitrary scalars + * and for positive scalars. + */ +#ifndef VECT_H_ +#define VECT_H_ + +#include +#include +#include + +#include "../src/vectview.hpp" + +namespace MTK { + +static const Eigen::IOFormat IO_no_spaces(Eigen::StreamPrecision, Eigen::DontAlignCols, ",", ",", "", "", "[", "]"); + + +/** + * A simple vector class. + * Implementation is basically a wrapper around Eigen::Matrix with manifold + * requirements added. + */ +template +struct vect : public Eigen::Matrix<_scalar, D, 1, _Options> { + typedef Eigen::Matrix<_scalar, D, 1, _Options> base; + enum {DOF = D, DIM = D, TYP = 0}; + typedef _scalar scalar; + + //using base::operator=; + + /** Standard constructor. Sets all values to zero. */ + vect(const base &src = base::Zero()) : base(src) {} + + /** Constructor copying the value of the expression \a other */ + template + EIGEN_STRONG_INLINE vect(const Eigen::DenseBase& other) : base(other) {} + + /** Construct from memory. */ + vect(const scalar* src, int size = DOF) : base(base::Map(src, size)) { } + + void boxplus(MTK::vectview vec, scalar scale=1) { + *this += scale * vec; + } + void boxminus(MTK::vectview res, const vect& other) const { + res = *this - other; + } + + void oplus(MTK::vectview vec, scalar scale=1) { + *this += scale * vec; + } + + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right_inv(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + friend std::ostream& operator<<(std::ostream &os, const vect& v){ + // Eigen sometimes messes with the streams flags, so output manually: + for(int i=0; i>(std::istream &is, vect& v){ + char term=0; + is >> std::ws; // skip whitespace + switch(is.peek()) { + case '(': term=')'; is.ignore(1); break; + case '[': term=']'; is.ignore(1); break; + case '{': term='}'; is.ignore(1); break; + default: break; + } + if(D==Eigen::Dynamic) { + assert(term !=0 && "Dynamic vectors must be embraced"); + std::vector temp; + while(is.good() && is.peek() != term) { + scalar x; + is >> x; + temp.push_back(x); + if(is.peek()==',') is.ignore(1); + } + v = vect::Map(temp.data(), temp.size()); + } else + for(int i=0; i> v[i]; + if(is.peek()==',') { // ignore commas between values + is.ignore(1); + } + } + if(term!=0) { + char x; + is >> x; + if(x!=term) { + is.setstate(is.badbit); +// assert(x==term && "start and end bracket do not match!"); + } + } + return is; + } + + template + vectview tail(){ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template tail(); + } + template + vectview tail() const{ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template tail(); + } + template + vectview head(){ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template head(); + } + template + vectview head() const{ + BOOST_STATIC_ASSERT(0< dim && dim <= DOF); + return base::template head(); + } +}; + + +/** + * A simple matrix class. + * Implementation is basically a wrapper around Eigen::Matrix with manifold + * requirements added, i.e., matrix is viewed as a plain vector for that. + */ +template::Options> +struct matrix : public Eigen::Matrix<_scalar, M, N, _Options> { + typedef Eigen::Matrix<_scalar, M, N, _Options> base; + enum {DOF = M * N, TYP = 4, DIM=0}; + typedef _scalar scalar; + + using base::operator=; + + /** Standard constructor. Sets all values to zero. */ + matrix() { + base::setZero(); + } + + /** Constructor copying the value of the expression \a other */ + template + EIGEN_STRONG_INLINE matrix(const Eigen::MatrixBase& other) : base(other) {} + + /** Construct from memory. */ + matrix(const scalar* src) : base(src) { } + + void boxplus(MTK::vectview vec, scalar scale = 1) { + *this += scale * base::Map(vec.data()); + } + void boxminus(MTK::vectview res, const matrix& other) const { + base::Map(res.data()) = *this - other; + } + + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right_inv(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + *this += scale * base::Map(vec.data()); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + friend std::ostream& operator<<(std::ostream &os, const matrix& mat){ + for(int i=0; i>(std::istream &is, matrix& mat){ + for(int i=0; i> mat.data()[i]; + } + return is; + } +};// @todo What if M / N = Eigen::Dynamic? + + + +/** + * A simple scalar type. + */ +template +struct Scalar { + enum {DOF = 1, TYP = 5, DIM=0}; + typedef _scalar scalar; + + scalar value; + + Scalar(const scalar& value = scalar(0)) : value(value) {} + operator const scalar&() const { return value; } + operator scalar&() { return value; } + Scalar& operator=(const scalar& val) { value = val; return *this; } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void oplus(MTK::vectview vec, scalar scale=1) { + value += scale * vec[0]; + } + + void boxplus(MTK::vectview vec, scalar scale=1) { + value += scale * vec[0]; + } + void boxminus(MTK::vectview res, const Scalar& other) const { + res[0] = *this - other; + } + + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right_inv(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } +}; + +/** + * Positive scalars. + * Boxplus is implemented using multiplication by @f$x\boxplus\delta = x\cdot\exp(\delta) @f$. + */ +template +struct PositiveScalar { + enum {DOF = 1, TYP = 6, DIM=0}; + typedef _scalar scalar; + + scalar value; + + PositiveScalar(const scalar& value = scalar(1)) : value(value) { + assert(value > scalar(0)); + } + operator const scalar&() const { return value; } + PositiveScalar& operator=(const scalar& val) { assert(val>0); value = val; return *this; } + + void boxplus(MTK::vectview vec, scalar scale = 1) { + value *= std::exp(scale * vec[0]); + } + void boxminus(MTK::vectview res, const PositiveScalar& other) const { + res[0] = std::log(*this / other); + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + value *= std::exp(scale * vec[0]); + } + + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right_inv(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + + friend std::istream& operator>>(std::istream &is, PositiveScalar& s){ + is >> s.value; + assert(s.value > 0); + return is; + } +}; + +template +struct Complex : public std::complex<_scalar>{ + enum {DOF = 2, TYP = 7, DIM=0}; + typedef _scalar scalar; + + typedef std::complex Base; + + Complex(const Base& value) : Base(value) {} + Complex(const scalar& re = 0.0, const scalar& im = 0.0) : Base(re, im) {} + Complex(const MTK::vectview &in) : Base(in[0], in[1]) {} + template + Complex(const Eigen::DenseBase &in) : Base(in[0], in[1]) {} + + void boxplus(MTK::vectview vec, scalar scale = 1) { + Base::real() += scale * vec[0]; + Base::imag() += scale * vec[1]; + }; + void boxminus(MTK::vectview res, const Complex& other) const { + Complex diff = *this - other; + res << diff.real(), diff.imag(); + } + + void S2_hat(Eigen::Matrix &res) + { + res = Eigen::Matrix::Zero(); + } + + void hat(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right_inv(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + void Jacob_right(Eigen::VectorXd& v, Eigen::MatrixXd &res) { + std::cout << "wrong idx" << std::endl; + } + + void oplus(MTK::vectview vec, scalar scale = 1) { + Base::real() += scale * vec[0]; + Base::imag() += scale * vec[1]; + }; + + void S2_Nx_yy(Eigen::Matrix &res) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + void S2_Mx(Eigen::Matrix &res, MTK::vectview delta) + { + std::cerr << "wrong idx for S2" << std::endl; + std::exit(100); + res = Eigen::Matrix::Zero(); + } + + scalar squaredNorm() const { + return std::pow(Base::real(),2) + std::pow(Base::imag(),2); + } + + const scalar& operator()(int i) const { + assert(0<=i && i<2 && "Index out of range"); + return i==0 ? Base::real() : Base::imag(); + } + scalar& operator()(int i){ + assert(0<=i && i<2 && "Index out of range"); + return i==0 ? Base::real() : Base::imag(); + } +}; + + +namespace internal { + +template +struct UnalignedType >{ + typedef vect type; +}; + +} // namespace internal + + +} // namespace MTK + + + + +#endif /*VECT_H_*/ diff --git a/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/wrapped_cv_mat.hpp b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/wrapped_cv_mat.hpp new file mode 100755 index 0000000..b6643f1 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/IKFoM_toolkit/mtk/types/wrapped_cv_mat.hpp @@ -0,0 +1,113 @@ +/* + * Copyright (c) 2010--2011, Universitaet Bremen and DFKI GmbH + * All rights reserved. + * + * Author: Rene Wagner + * Christoph Hertzberg + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the Universitaet Bremen nor the DFKI GmbH + * nor the names of its contributors may be used to endorse or + * promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef WRAPPED_CV_MAT_HPP_ +#define WRAPPED_CV_MAT_HPP_ + +#include +#include + +namespace MTK { + +template +struct cv_f_type; + +template<> +struct cv_f_type +{ + enum {value = CV_64F}; +}; + +template<> +struct cv_f_type +{ + enum {value = CV_32F}; +}; + +/** + * cv_mat wraps a CvMat around an Eigen Matrix + */ +template +class cv_mat : public matrix +{ + typedef matrix base_type; + enum {type_ = cv_f_type::value}; + CvMat cv_mat_; + +public: + cv_mat() + { + cv_mat_ = cvMat(rows, cols, type_, base_type::data()); + } + + cv_mat(const cv_mat& oth) : base_type(oth) + { + cv_mat_ = cvMat(rows, cols, type_, base_type::data()); + } + + template + cv_mat(const Eigen::MatrixBase &value) : base_type(value) + { + cv_mat_ = cvMat(rows, cols, type_, base_type::data()); + } + + template + cv_mat& operator=(const Eigen::MatrixBase &value) + { + base_type::operator=(value); + return *this; + } + + cv_mat& operator=(const cv_mat& value) + { + base_type::operator=(value); + return *this; + } + + // FIXME: Maybe overloading operator& is not a good idea ... + CvMat* operator&() + { + return &cv_mat_; + } + const CvMat* operator&() const + { + return &cv_mat_; + } +}; + +} // namespace MTK + +#endif /* WRAPPED_CV_MAT_HPP_ */ diff --git a/src/rm_localization/point_lio/include/IKFoM/LICENSE b/src/rm_localization/point_lio/include/IKFoM/LICENSE new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/src/rm_localization/point_lio/include/IKFoM/README.md b/src/rm_localization/point_lio/include/IKFoM/README.md new file mode 100644 index 0000000..53a7dc5 --- /dev/null +++ b/src/rm_localization/point_lio/include/IKFoM/README.md @@ -0,0 +1,489 @@ +## IKFoM +**IKFoM** (Iterated Kalman Filters on Manifolds) is a computationally efficient and convenient toolkit for deploying iterated Kalman filters on various robotic systems, especially systems operating on high-dimension manifold. It implements a manifold-embedding Kalman filter which separates the manifold structures from system descriptions and is able to be used by only defining the system in a canonical form and calling the respective steps accordingly. The current implementation supports the full iterated Kalman filtering for systems on manifold and any of its sub-manifolds, and it is extendable to other types of manifold when necessary. + + +**Developers** + +[Dongjiao He](https://github.com/Joanna-HE) + +**Our related video**: https://youtu.be/sz_ZlDkl6fA + +## 1. Prerequisites + +### 1.1. **Eigen && Boost** +Eigen >= 3.3.4, Follow [Eigen Installation](http://eigen.tuxfamily.org/index.php?title=Main_Page). + +Boost >= 1.65. + +## 2. Usage when the measurement is of constant dimension and type. +Clone the repository: + +``` + git clone https://github.com/hku-mars/IKFoM.git +``` + +1. include the necessary head file: +``` +#include +``` +2. Select and instantiate the primitive manifolds: +``` + typedef MTK::SO3 SO3; // scalar type of variable: double + typedef MTK::vect<3, double> vect3; // dimension of the defined Euclidean variable: 3 + typedef MTK::S2 S2; // length of the S2 variable: 98/10; choose e1 as the original point of rotation: 1 +``` +3. Build system state, input and measurement as compound manifolds which are composed of the primitive manifolds: +``` +MTK_BUILD_MANIFOLD(state, // name of compound manifold: state +((vect3, pos)) // ((primitive manifold type, name of variable)) +((vect3, vel)) +((SO3, rot)) +((vect3, bg)) +((vect3, ba)) +((S2, grav)) +((SO3, offset_R_L_I)) +((vect3, offset_T_L_I)) +); +``` +4. Implement the vector field that is defined as , and its differentiation , , where w=0 could be left out: +``` +Eigen::Matrix f(state &s, const input &i) { + Eigen::Matrix res = Eigen::Matrix::Zero(); + res(0) = s.vel[0]; + res(1) = s.vel[1]; + res(2) = s.vel[2]; + return res; +} +Eigen::Matrix df_dx(state &s, const input &i) //notice S2 has length of 3 and dimension of 2 { + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(0, 12) = Eigen::Matrix3d::Identity(); + return cov; +} +Eigen::Matrix df_dw(state &s, const input &i) { + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(12, 3) = -s.rot.toRotationMatrix(); + return cov; +} +``` +Those functions would be called during the ekf state predict + +5. Implement the output equation and its differentiation , : +``` +measurement h(state &s, bool &valid) // the iteration stops before convergence whenever the user set valid as false +{ + if (condition){ valid = false; + } // other conditions could be used to stop the ekf update iteration before convergence, otherwise the iteration will not stop until the condition of convergence is satisfied. + measurement h_; + h_.position = s.pos; + return h_; +} +Eigen::Matrix dh_dx(state &s) {} +Eigen::Matrix dh_dv(state &s) {} +``` +Those functions would be called during the ekf state update + +6. Instantiate an **esekf** object **kf** and initialize it with initial or default state and covariance. + +(1) initial state and covariance: +``` +state init_state; +esekfom::esekf::cov init_P; +esekfom::esekf kf(init_state,init_P); +``` +(2) default state and covariance: +``` +esekfom::esekf kf; +``` +where **process_noise_dof** is the dimension of process noise, with the type of std int, and so for **measurement_noise_dof**. + +7. Deliver the defined models, std int maximum iteration numbers **Maximum_iter**, and the std array for testing convergence **epsi** into the **esekf** object: +``` +double epsi[state_dof] = {0.001}; +fill(epsi, epsi+state_dof, 0.001); // if the absolute of innovation of ekf update is smaller than epso, the update iteration is converged +kf.init(f, df_dx, df_dw, h, dh_dx, dh_dv, Maximum_iter, epsi); +``` +8. In the running time, once an input **in** is received with time interval **dt**, a propagation is executed: +``` +kf.predict(dt, Q, in); // process noise covariance: Q, an Eigen matrix +``` +9. Once a measurement **z** is received, an iterated update is executed: +``` +kf.update_iterated(z, R); // measurement noise covariance: R, an Eigen matrix +``` +*Remarks(1):* +- We also combine the output equation and its differentiation into an union function, whose usage is the same as the above steps 1-4, and steps 5-9 are shown as follows. + +5. Implement the output equation and its differentiation , : +``` +measurement h_share(state &s, esekfom::share_datastruct &share_data) +{ + if(share_data.converge) {} // this value is true means iteration is converged + if(condition) share_data.valid = false; // the iteration stops before convergence when this value is false if other conditions are satified + share_data.h_x = H_x; // H_x is the result matrix of the first differentiation + share_data.h_v = H_v; // H_v is the result matrix of the second differentiation + share_data.R = R; // R is the measurement noise covariance + share_data.z = z; // z is the obtained measurement + + measurement h_; + h_.position = s.pos; + return h_; +} +``` +This function would be called during ekf state update, and the output function and its derivatives, the measurement and the measurement noise would be obtained from this one union function + +6. Instantiate an **esekf** object **kf** and initialize it with initial or default state and covariance. + +(1) initial state and covariance: +``` +state init_state; +esekfom::esekf::cov init_P; +esekfom::esekf kf(init_state,init_P); +``` +(2) default state and covariance: +``` +esekfom::esekf kf; +``` +7. Deliver the defined models, std int maximum iteration numbers **Maximum_iter**, and the std array for testing convergence **epsi** into the **esekf** object: +``` +double epsi[state_dof] = {0.001}; +fill(epsi, epsi+state_dof, 0.001); // if the absolute of innovation of ekf update is smaller than epso, the update iteration is converged +kf.init_share(f, df_dx, df_dw, h_share, Maximum_iter, epsi); +``` +8. In the running time, once an input **in** is received with time interval **dt**, a propagation is executed: +``` +kf.predict(dt, Q, in); // process noise covariance: Q +``` +9. Once a measurement **z** is received, an iterated update is executed: +``` +kf.update_iterated_share(); +``` + +*Remarks(2):* +- The value of the state **x** and the covariance **P** are able to be changed by functions **change_x()** and **change_P()**: +``` +state set_x; +kf.change_x(set_x); +esekfom::esekf::cov set_P; +kf.change_P(set_P); +``` + +## 3. Usage when the measurement is an Eigen vector of changing dimension. + +Clone the repository: + +``` + git clone https://github.com/hku-mars/IKFoM.git +``` + +1. include the necessary head file: +``` +#include +``` +2. Select and instantiate the primitive manifolds: +``` + typedef MTK::SO3 SO3; // scalar type of variable: double + typedef MTK::vect<3, double> vect3; // dimension of the defined Euclidean variable: 3 + typedef MTK::S2 S2; // length of the S2 variable: 98/10; choose e1 as the original point of rotation: 1 +``` +3. Build system state and input as compound manifolds which are composed of the primitive manifolds: +``` +MTK_BUILD_MANIFOLD(state, // name of compound manifold: state +((vect3, pos)) // ((primitive manifold type, name of variable)) +((vect3, vel)) +((SO3, rot)) +((vect3, bg)) +((vect3, ba)) +((S2, grav)) +((SO3, offset_R_L_I)) +((vect3, offset_T_L_I)) +); +``` +4. Implement the vector field that is defined as , and its differentiation , , where w=0 could be left out: +``` +Eigen::Matrix f(state &s, const input &i) { + Eigen::Matrix res = Eigen::Matrix::Zero(); + res(0) = s.vel[0]; + res(1) = s.vel[1]; + res(2) = s.vel[2]; + return res; +} +Eigen::Matrix df_dx(state &s, const input &i) //notice S2 has length of 3 and dimension of 2 { + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(0, 12) = Eigen::Matrix3d::Identity(); + return cov; +} +Eigen::Matrix df_dw(state &s, const input &i) { + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(12, 3) = -s.rot.toRotationMatrix(); + return cov; +} +``` +Those functions would be called during ekf state predict + +5. Implement the output equation and its differentiation , : +``` +Eigen::Matrix h(state &s, bool &valid) //the iteration stops before convergence when valid is false { + if (condition){ valid = false; + } // other conditions could be used to stop the ekf update iteration before convergence, otherwise the iteration will not stop until the condition of convergence is satisfied. + Eigen::Matrix h_; + h_(0) = s.pos[0]; + return h_; +} +Eigen::Matrix dh_dx(state &s) {} +Eigen::Matrix dh_dv(state &s) {} +``` +Those functions would be called during ekf state update + +6. Instantiate an **esekf** object **kf** and initialize it with initial or default state and covariance. + +(1) initial state and covariance: +``` +state init_state; +esekfom::esekf::cov init_P; +esekfom::esekf kf(init_state,init_P); +``` +(2) default state and covariance: +``` +esekfom::esekf kf; +``` +where **process_noise_dof** is the dimension of process noise, with the type of std int, and so for **measurement_noise_dof** + +7. Deliver the defined models, std int maximum iteration numbers **Maximum_iter**, and the std array for testing convergence **epsi** into the **esekf** object: +``` +double epsi[state_dof] = {0.001}; +fill(epsi, epsi+state_dof, 0.001); // if the absolute of innovation of ekf update is smaller than epso, the update iteration is converged +kf.init_dyn(f, df_dx, df_dw, h, dh_dx, dh_dv, Maximum_iter, epsi); +``` +8. In the running time, once an input **in** is received with time interval **dt**, a propagation is executed: +``` +kf.predict(dt, Q, in); // process noise covariance: Q, an Eigen matrix +``` +9. Once a measurement **z** is received, an iterated update is executed: +``` +kf.update_iterated_dyn(z, R); // measurement noise covariance: R, an Eigen matrix +``` +*Remarks(1):* +- We also combine the output equation and its differentiation into an union function, whose usage is the same as the above steps 1-4, and steps 5-9 are shown as follows. +5. Implement the output equation and its differentiation , : +``` +Eigen::Matrix h_dyn_share(state &s, esekfom::dyn_share_datastruct &dyn_share_data) +{ + if(dyn_share_data.converge) {} // this value is true means iteration is converged + if(condition) share_data.valid = false; // the iteration stops before convergence when this value is false if other conditions are satified + dyn_share_data.h_x = H_x; // H_x is the result matrix of the first differentiation + dyn_share_data.h_v = H_v; // H_v is the result matrix of the second differentiation + dyn_share_data.R = R; // R is the measurement noise covariance + dyn_share_data.z = z; // z is the obtained measurement + + Eigen::Matrix h_; + h_(0) = s.pos[0]; + return h_; +} +This function would be called during ekf state update, and the output function and its derivatives, the measurement and the measurement noise would be obtained from this one union function +``` +6. Instantiate an **esekf** object **kf** and initialize it with initial or default state and covariance. +(1) initial state and covariance: +``` +state init_state; +esekfom::esekf::cov init_P; +esekfom::esekf kf(init_state,init_P); +``` +(2) default state and covariance: +``` +esekfom::esekf kf; +``` +7. Deliver the defined models, std int maximum iteration numbers **Maximum_iter**, and the std array for testing convergence **epsi** into the **esekf** object: +``` +double epsi[state_dof] = {0.001}; +fill(epsi, epsi+state_dof, 0.001); // if the absolute of innovation of ekf update is smaller than epso, the update iteration is converged +kf.init_dyn_share(f, df_dx, df_dw, h_dyn_share, Maximum_iter, epsi); +``` +8. In the running time, once an input **in** is received with time interval **dt**, a propagation is executed: +``` +kf.predict(dt, Q, in); // process noise covariance: Q, an Eigen matrix +``` +9. Once a measurement **z** is received, an iterated update is executed: +``` +kf.update_iterated_dyn_share(); +``` + +*Remarks(2):* +- The value of the state **x** and the covariance **P** are able to be changed by functions **change_x()** and **change_P()**: +``` +state set_x; +kf.change_x(set_x); +esekfom::esekf::cov set_P; +kf.change_P(set_P); +``` + +## 4. Usage when the measurement is a changing manifold during the run time. + +Clone the repository: + +``` + git clone https://github.com/hku-mars/IKFoM.git +``` + +1. include the necessary head file: +``` +#include +``` +2. Select and instantiate the primitive manifolds: +``` + typedef MTK::SO3 SO3; // scalar type of variable: double + typedef MTK::vect<3, double> vect3; // dimension of the defined Euclidean variable: 3 + typedef MTK::S2 S2; // length of the S2 variable: 98/10; choose e1 as the original point of rotation: 1 +``` +3. Build system state and input as compound manifolds which are composed of the primitive manifolds: +``` +MTK_BUILD_MANIFOLD(state, // name of compound manifold: state +((vect3, pos)) // ((primitive manifold type, name of variable)) +((vect3, vel)) +((SO3, rot)) +((vect3, bg)) +((vect3, ba)) +((S2, grav)) +((SO3, offset_R_L_I)) +((vect3, offset_T_L_I)) +); +``` +4. Implement the vector field that is defined as , and its differentiation , , where w=0 could be left out: +``` +Eigen::Matrix f(state &s, const input &i) { + Eigen::Matrix res = Eigen::Matrix::Zero(); + res(0) = s.vel[0]; + res(1) = s.vel[1]; + res(2) = s.vel[2]; + return res; +} +Eigen::Matrix df_dx(state &s, const input &i) //notice S2 has length of 3 and dimension of 2 { + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(0, 12) = Eigen::Matrix3d::Identity(); + return cov; +} +Eigen::Matrix df_dw(state &s, const input &i) { + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(12, 3) = -s.rot.toRotationMatrix(); + return cov; +} +``` +Those functions would be called during ekf state predict + +5. Implement the differentiation of the output equation , : +``` +Eigen::Matrix dh_dx(state &s, bool &valid) {} //the iteration stops before convergence when valid is false +Eigen::Matrix dh_dv(state &s, bool &valid) {} +``` +Those functions would be called during ekf state update + +6. Instantiate an **esekf** object **kf** and initialize it with initial or default state and covariance. + +(1) initial state and covariance: +``` +state init_state; +esekfom::esekf::cov init_P; +esekfom::esekf kf(init_state,init_P); +``` +(2) +``` +esekfom::esekf kf; +``` +Where **process_noise_dof** is the dimension of process noise, of type of std int + +7. Deliver the defined models, std int maximum iteration numbers **Maximum_iter**, and the std array for testing convergence **epsi** into the **esekf** object: +``` +double epsi[state_dof] = {0.001}; +fill(epsi, epsi+state_dof, 0.001); // if the absolute of innovation of ekf update is smaller than epso, the update iteration is converged +kf.init_dyn_runtime(f, df_dx, df_dw, dh_dx, dh_dv, Maximum_iter, epsi); +``` +8. In the running time, once an input **in** is received with time interval **dt**, a propagation is executed: +``` +kf.predict(dt, Q, in); // process noise covariance: Q +``` +9. Once a measurement **z** is received, build system measurement as compound manifolds following step 3 and implement the output equation : +``` +measurement h(state &s, bool &valid) //the iteration stops before convergence when valid is false +{ + if (condition) valid = false; // the update iteration could be stopped when the condition other than convergence is satisfied + measurement h_; + h_.pos = s.pos; + return h_; +} +``` +then an iterated update is executed: +``` +kf.update_iterated_dyn_runtime(z, R, h); // measurement noise covariance: R, an Eigen matrix +``` +*Remarks(1):* +- We also combine the output equation and its differentiation into an union function, whose usage is the same as the above steps 1-4, and steps 5-9 are shown as follows. +5. Instantiate an **esekf** object **kf** and initialize it with initial or default state and covariance. + +(1) initial state and covariance: +``` +state init_state; +esekfom::esekf::cov init_P; +esekfom::esekf kf(init_state,init_P); +``` +(2) default state and covariance: +``` +esekfom::esekf kf; +``` +6. Deliver the defined models, std int maximum iteration numbers **Maximum_iter**, and the std array for testing convergence **epsi** into the **esekf** object: +``` +double epsi[state_dof] = {0.001}; +fill(epsi, epsi+state_dof, 0.001); // if the absolute of innovation of ekf update is smaller than epso, the update iteration is converged +kf.init_dyn_runtime_share(f, df_dx, df_dw, Maximum_iter, epsi); +``` +7. In the running time, once an input **in** is received with time interval **dt**, a propagation is executed: +``` +kf.predict(dt, Q, in); // process noise covariance: Q. an Eigen matrix +``` +8. Once a measurement **z** is received, build system measurement as compound manifolds following step 3 and implement the output equation and its differentiation , : +``` +measurement h_dyn_runtime_share(state &s, esekfom::dyn_runtime_share_datastruct &dyn_runtime_share_data) +{ + if(dyn_runtime_share_data.converge) {} // this value is true means iteration is converged + if(condition) dyn_runtime_share_data.valid = false; // the iteration stops before convergence when this value is false, if conditions other than convergence is satisfied + dyn_runtime_share_data.h_x = H_x; // H_x is the result matrix of the first differentiation + dyn_runtime_share_data.h_v = H_v; // H_v is the result matrix of the second differentiation + dyn_runtime_share_data.R = R; // R is the measurement noise covariance + + measurement h_; + h_.pos = s.pos; + return h_; +} +``` +This function would be called during ekf state update, and the output function and its derivatives, the measurement and the measurement noise would be obtained from this one union function + +then an iterated update is executed: +``` +kf.update_iterated_dyn_runtime_share(z, h_dyn_runtime_share); +``` + +*Remarks(2):* +- The value of the state **x** and the covariance **P** are able to be changed by functions **change_x()** and **change_P()**: +``` +state set_x; +kf.change_x(set_x); +esekfom::esekf::cov set_P; +kf.change_P(set_P); +``` + +## 5. Run the sample +Clone the repository: + +``` + git clone https://github.com/hku-mars/IKFoM.git +``` +In the **Samples** file folder, there is the scource code that applys the **IKFoM** on the original source code from [FAST LIO](https://github.com/hku-mars/FAST_LIO). Please follow the README.md shown in that repository excepting the step **2. Build**, which is modified as: +``` +cd ~/catkin_ws/src +cp -r ~/IKFoM/Samples/FAST_LIO-stable FAST_LIO-stable +cd .. +catkin_make +source devel/setup.bash +``` + +## 6.Acknowledgments +Thanks for C. Hertzberg, R. Wagner, U. Frese, and L. Schroder. Integratinggeneric sensor fusion algorithms with sound state representationsthrough encapsulation of manifolds. + diff --git a/src/rm_localization/point_lio/include/common_lib.h b/src/rm_localization/point_lio/include/common_lib.h new file mode 100755 index 0000000..02eb7ec --- /dev/null +++ b/src/rm_localization/point_lio/include/common_lib.h @@ -0,0 +1,248 @@ +#ifndef COMMON_LIB_H +#define COMMON_LIB_H + +#include +#include +#include +#include +#include +#include +#include +#include <../include/IKFoM/IKFoM_toolkit/esekfom/esekfom.hpp> +#include + +using namespace std; +using namespace Eigen; + + +typedef MTK::vect<3, double> vect3; +typedef MTK::SO3 SO3; +typedef MTK::S2 S2; +typedef MTK::vect<1, double> vect1; +typedef MTK::vect<2, double> vect2; + +MTK_BUILD_MANIFOLD(state_input, +((vect3, pos)) +((SO3, rot)) +((SO3, offset_R_L_I)) +((vect3, offset_T_L_I)) +((vect3, vel)) +((vect3, bg)) +((vect3, ba)) +((vect3, gravity)) +); + +MTK_BUILD_MANIFOLD(state_output, +((vect3, pos)) +((SO3, rot)) +((SO3, offset_R_L_I)) +((vect3, offset_T_L_I)) +((vect3, vel)) +((vect3, omg)) +((vect3, acc)) +((vect3, gravity)) +((vect3, bg)) +((vect3, ba)) +); + +MTK_BUILD_MANIFOLD(input_ikfom, +((vect3, acc)) +((vect3, gyro)) +); + +MTK_BUILD_MANIFOLD(process_noise_input, +((vect3, ng)) +((vect3, na)) +((vect3, nbg)) +((vect3, nba)) +); + +MTK_BUILD_MANIFOLD(process_noise_output, +((vect3, vel)) +((vect3, ng)) +((vect3, na)) +((vect3, nbg)) +((vect3, nba)) +); + +extern esekfom::esekf kf_input; +extern esekfom::esekf kf_output; + +#define PBWIDTH 30 +#define PBSTR "||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||" + +#define PI_M (3.14159265358) +// #define G_m_s2 (9.81) // Gravaty const in GuangDong/China +#define DIM_STATE (24) // Dimension of states (Let Dim(SO(3)) = 3) +#define DIM_PROC_N (12) // Dimension of process noise (Let Dim(SO(3)) = 3) +#define CUBE_LEN (6.0) +#define LIDAR_SP_LEN (2) +#define INIT_COV (0.0001) +#define NUM_MATCH_POINTS (5) +#define MAX_MEAS_DIM (10000) + +#define VEC_FROM_ARRAY(v) v[0],v[1],v[2] +#define VEC_FROM_ARRAY_SIX(v) v[0],v[1],v[2],v[3],v[4],v[5] +#define MAT_FROM_ARRAY(v) v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7],v[8] +#define CONSTRAIN(v,min,max) ((v>min)?((v (mat.data(), mat.data() + mat.rows() * mat.cols()) +#define DEBUG_FILE_DIR(name) (string(string(ROOT_DIR) + "Log/"+ name)) + +typedef pcl::PointXYZINormal PointType; +typedef pcl::PointXYZRGB PointTypeRGB; +typedef pcl::PointCloud PointCloudXYZI; +typedef pcl::PointCloud PointCloudXYZRGB; +typedef vector> PointVector; +typedef Vector3d V3D; +typedef Matrix3d M3D; +typedef Vector3f V3F; +typedef Matrix3f M3F; + +#define MD(a,b) Matrix +#define VD(a) Matrix +#define MF(a,b) Matrix +#define VF(a) Matrix + +const M3D Eye3d(M3D::Identity()); +const M3F Eye3f(M3F::Identity()); +const V3D Zero3d(0, 0, 0); +const V3F Zero3f(0, 0, 0); + +struct MeasureGroup // Lidar data and imu dates for the curent process +{ + MeasureGroup() + { + lidar_beg_time = 0.0; + lidar_last_time = 0.0; + this->lidar.reset(new PointCloudXYZI()); + }; + double lidar_beg_time; + double lidar_last_time; + PointCloudXYZI::Ptr lidar; + deque imu; +}; + +template +T calc_dist(PointType p1, PointType p2){ + T d = (p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y) + (p1.z - p2.z) * (p1.z - p2.z); + return d; +} + +template +T calc_dist(Eigen::Vector3d p1, PointType p2){ + T d = (p1(0) - p2.x) * (p1(0) - p2.x) + (p1(1) - p2.y) * (p1(1) - p2.y) + (p1(2) - p2.z) * (p1(2) - p2.z); + return d; +} + +template +std::vector time_compressing(const PointCloudXYZI::Ptr &point_cloud) +{ + int points_size = point_cloud->points.size(); + int j = 0; + std::vector time_seq; + // time_seq.clear(); + time_seq.reserve(points_size); + for(int i = 0; i < points_size - 1; i++) + { + j++; + if (point_cloud->points[i+1].curvature > point_cloud->points[i].curvature) + { + time_seq.emplace_back(j); + j = 0; + } + } +// if (j == 0) +// { +// time_seq.emplace_back(1); +// } +// else + { + time_seq.emplace_back(j+1); + } + return time_seq; +} + +/* comment +plane equation: Ax + By + Cz + D = 0 +convert to: A/D*x + B/D*y + C/D*z = -1 +solve: A0*x0 = b0 +where A0_i = [x_i, y_i, z_i], x0 = [A/D, B/D, C/D]^T, b0 = [-1, ..., -1]^T +normvec: normalized x0 +*/ +template +bool esti_normvector(Matrix &normvec, const PointVector &point, const T &threshold, const int &point_num) +{ + MatrixXf A(point_num, 3); + MatrixXf b(point_num, 1); + b.setOnes(); + b *= -1.0f; + + for (int j = 0; j < point_num; j++) + { + A(j,0) = point[j].x; + A(j,1) = point[j].y; + A(j,2) = point[j].z; + } + normvec = A.colPivHouseholderQr().solve(b); + + for (int j = 0; j < point_num; j++) + { + if (fabs(normvec(0) * point[j].x + normvec(1) * point[j].y + normvec(2) * point[j].z + 1.0f) > threshold) + { + return false; + } + } + + normvec.normalize(); + return true; +} + +template +bool esti_plane(Matrix &pca_result, const PointVector &point, const T &threshold) +{ + Matrix A; + Matrix b; + A.setZero(); + b.setOnes(); + b *= -1.0f; + + for (int j = 0; j < NUM_MATCH_POINTS; j++) + { + A(j,0) = point[j].x; + A(j,1) = point[j].y; + A(j,2) = point[j].z; + } + + Matrix normvec = A.colPivHouseholderQr().solve(b); + + T n = normvec.norm(); + pca_result(0) = normvec(0) / n; + pca_result(1) = normvec(1) / n; + pca_result(2) = normvec(2) / n; + pca_result(3) = 1.0 / n; + + for (int j = 0; j < NUM_MATCH_POINTS; j++) + { + if (fabs(pca_result(0) * point[j].x + pca_result(1) * point[j].y + pca_result(2) * point[j].z + pca_result(3)) > threshold) + { + return false; + } + } + return true; +} + +inline double get_time_sec(const builtin_interfaces::msg::Time &time) +{ + return rclcpp::Time(time).seconds(); +} + +inline rclcpp::Time get_ros_time(double timestamp) +{ + int32_t sec = std::floor(timestamp); + auto nanosec_d = (timestamp - std::floor(timestamp)) * 1e9; + uint32_t nanosec = nanosec_d; + return rclcpp::Time(sec, nanosec); +} + +#endif \ No newline at end of file diff --git a/src/rm_localization/point_lio/include/ivox/eigen_types.h b/src/rm_localization/point_lio/include/ivox/eigen_types.h new file mode 100755 index 0000000..51aa389 --- /dev/null +++ b/src/rm_localization/point_lio/include/ivox/eigen_types.h @@ -0,0 +1,84 @@ +// +// Created by xiang on 2021/7/16. +// + +#ifndef FASTER_LIO_EIGEN_TYPES_H +#define FASTER_LIO_EIGEN_TYPES_H + +#include +#include +#include + +/// alias for eigen +using Vec2i = Eigen::Vector2i; +using Vec3i = Eigen::Vector3i; + +using Vec2d = Eigen::Vector2d; +using Vec2f = Eigen::Vector2f; +using Vec3d = Eigen::Vector3d; +using Vec3f = Eigen::Vector3f; +using Vec5d = Eigen::Matrix; +using Vec5f = Eigen::Matrix; +using Vec6d = Eigen::Matrix; +using Vec6f = Eigen::Matrix; +using Vec15d = Eigen::Matrix; + +using Mat1d = Eigen::Matrix; +using Mat3d = Eigen::Matrix3d; +using Mat3f = Eigen::Matrix3f; +using Mat4d = Eigen::Matrix4d; +using Mat4f = Eigen::Matrix4f; +using Mat5d = Eigen::Matrix; +using Mat5f = Eigen::Matrix; +using Mat6d = Eigen::Matrix; +using Mat6f = Eigen::Matrix; +using Mat15d = Eigen::Matrix; + +using Quatd = Eigen::Quaterniond; +using Quatf = Eigen::Quaternionf; + +namespace faster_lio { + +/// less of vector +template +struct less_vec { + inline bool operator()(const Eigen::Matrix& v1, const Eigen::Matrix& v2) const; +}; + +/// hash of vector +template +struct hash_vec { + inline size_t operator()(const Eigen::Matrix& v) const; +}; + +/// implementation +template <> +inline bool less_vec<2>::operator()(const Eigen::Matrix& v1, const Eigen::Matrix& v2) const { + return v1[0] < v2[0] || (v1[0] == v2[0] && v1[1] < v2[1]); +} + +template <> +inline bool less_vec<3>::operator()(const Eigen::Matrix& v1, const Eigen::Matrix& v2) const { + return v1[0] < v2[0] || (v1[0] == v2[0] && v1[1] < v2[1]) && (v1[0] == v2[0] && v1[1] == v2[1] && v1[2] < v2[2]); +} + +/// vec 2 hash +/// @see Optimized Spatial Hashing for Collision Detection of Deformable Objects, Matthias Teschner et. al., VMV 2003 +template <> +inline size_t hash_vec<2>::operator()(const Eigen::Matrix& v) const { + return size_t(((v[0]) * 73856093) ^ ((v[1]) * 471943)) % 10000000; +} + +/// vec 3 hash +template <> +inline size_t hash_vec<3>::operator()(const Eigen::Matrix& v) const { + return size_t(((v[0]) * 73856093) ^ ((v[1]) * 471943) ^ ((v[2]) * 83492791)) % 10000000; +} + +// constexpr auto less_vec2i = [](const Vec2i& v1, const Vec2i& v2) { +// return v1[0] < v2[0] || (v1[0] == v2[0] && v1[1] < v2[1]); +// }; + +} // namespace faster_lio + +#endif diff --git a/src/rm_localization/point_lio/include/ivox/hilbert.hpp b/src/rm_localization/point_lio/include/ivox/hilbert.hpp new file mode 100755 index 0000000..f785965 --- /dev/null +++ b/src/rm_localization/point_lio/include/ivox/hilbert.hpp @@ -0,0 +1,830 @@ +// 2021-09-18, https://github.com/spectral3d/hilbert_hpp is under MIT license. + +//Copyright (c) 2019 David Beynon +// +//Permission is hereby granted, free of charge, to any person obtaining a copy +//of this software and associated documentation files (the "Software"), to deal +//in the Software without restriction, including without limitation the rights +//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +//copies of the Software, and to permit persons to whom the Software is +//furnished to do so, subject to the following conditions: +// +//The above copyright notice and this permission notice shall be included in all +//copies or substantial portions of the Software. +// +//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +//SOFTWARE. + +#ifndef INCLUDED_HILBERT_HPP +#define INCLUDED_HILBERT_HPP +#pragma once + +#include +#include +#include +#include +#include + +// Version 1.1 - 29 August 2019 + +// +// N dimensional hilbert curve encoding & decoding based on the paper +// "Programming the Hilbert Curve" by John Skilling. +// +// The interface assumes an std::array of some unsigned integer type. This +// contains an index in lexographic order, or a set of coordinates on the +// hilbert curve. +// +// Two implementations are included. +// +// hilbert::v1 contains a fairly straightforward implementation of the paper, +// with standard looping constructs. +// +// hilbert::v2 performs uses template metaprogramming to unroll loops and +// theoretically improve performance on some systems. +// +// v1 produces smaller code, which may be more performant on machines with +// small caches. v2 produces relatively large code that seems more efficient +// on modern systems for dimension up to about 100. +// +// v2 should be built with -O3 for best results. -O0 is extremely slow +// on most systems. +// + + +// Interface is as follows: +// +// Find the position of a point on an N dimensional Hilbert Curve. +// +// Based on the paper "Programming the Hilbert Curve" by John Skilling. +// +// Index is encoded with most significant objects first. Lexographic +// sort order. +//template +//std::array +//IndexToPosition(std::array const &in); + +// Find the index of a point on an N dimensional Hilbert Curve. +// +// Based on the paper "Programming the Hilbert Curve" by John Skilling. +// +// Index is encoded with most significant objects first. Lexographic +// sort order. +//template +//std::array +//PositionToIndex(std::array const &in); +// + + +namespace hilbert +{ + // Fairly straightforward implementation. Loops are loops and code mostly + // does what one would expect. + namespace v1 + { + namespace internal + { + // Extract bits from transposed form. + // + // e.g. + // + // a d g j a b c d + // b e h k -> e f g h + // c f i l i j k l + // + template + std::array + UntransposeBits(std::array const &in) + { + const size_t bits = std::numeric_limits::digits; + const T high_bit(T(1) << (bits - 1)); + const size_t bit_count(bits * N); + + std::array out; + + std::fill(out.begin(), out.end(), 0); + + // go through all bits in input, msb first. Shift distances are + // from msb. + for(size_t b=0;b> dst_bit); + } + + return out; + } + + // Pack bits into transposed form. + // + // e.g. + // + // a b c d a d g j + // e f g h -> b e h k + // i j k l c f i l + // + template + std::array + TransposeBits(std::array const &in) + { + const size_t bits = std::numeric_limits::digits; + const T high_bit(T(1) << (bits - 1)); + const size_t bit_count(bits * N); + + std::array out; + + std::fill(out.begin(), out.end(), 0); + + // go through all bits in input, msb first. Shift distances + // are from msb. + for(size_t b=0;b> dst_bit); + } + + return out; + } + } + + // + // Public interfaces. + // + + // Find the position of a point on an N dimensional Hilbert Curve. + // + // Based on the paper "Programming the Hilbert Curve" by John Skilling. + // + // Index is encoded with most significant objects first. Lexographic + // sort order. + template + std::array + IndexToPosition( + std::array const &in) + { + // First convert index to transpose. + std::array out(internal::TransposeBits(in)); + + // Initial gray encoding of transposed vector. + { + T tmp = out[N-1] >> 1; + + for(size_t n=N-1;n;n--) + { + out[n]^= out[n-1]; + } + + out[0]^= tmp; + } + + // Apply transforms to gray code. + { + T cur_bit(2), + low_bits; + + while(cur_bit) + { + low_bits = cur_bit - 1; + + size_t n(N); + + do + { + n--; + if(out[n] & cur_bit) + { + // flip low bits of X + out[0]^= low_bits; + } + else + { + // swap low bits with X + T t((out[n] ^ out[0]) & low_bits); + out[n]^= t; + out[0]^= t; + } + } + while(n); + + cur_bit<<= 1; + } + } + + return out; + } + + // Find the index of a point on an N dimensional Hilbert Curve. + // + // Based on the paper "Programming the Hilbert Curve" by John Skilling. + // + // Index is encoded with most significant objects first. Lexographic + // sort order. + template + std::array + PositionToIndex(std::array const &in) + { + const size_t bits = std::numeric_limits::digits; + + std::array out(in); + + // reverse transforms to convert into transposed gray code. + { + T cur_bit(T(1) << (bits - 1)), + low_bits; + + do + { + low_bits = cur_bit - 1; + + for(size_t n=0;n>= 1; + } while(low_bits > 1); + } + + // Remove gray code from transposed vector. + { + T cur_bit(T(1) << (bits - 1)), + t(0); + + for(size_t n=1;n>= 1; + } while(cur_bit > 1); + + for(auto &v : out) + { + v^= t; + } + } + + return internal::UntransposeBits(out); + } + } // namespace v1 + + // Implementation using metaprogramming to unroll most loops. + // Optimised performance should be superior to v1 provided all code remains + // in cache etc. + // + // At some value of N v1 should overtake v2. + namespace v2 + { + namespace internal + { + // Metaprogramming guts. Unrolled loops, abandon all hope etc. + namespace tmp + { + template + T + TransposeBits2( + std::array const &, + std::integral_constant, + std::integral_constant) + { + return T(0); + } + + template + T + TransposeBits2( + std::array const &in, + std::integral_constant, + std::integral_constant) + { + const size_t size = std::numeric_limits::digits; + const size_t src = ((D + ((size - B) * N)) / size); + const size_t src_bit = + size - (1+((D + ((size - B) * N)) % size)); + const T src_bit_val = T(1) << src_bit; + const size_t dst_bit = (B - 1); + const T dst_bit_val = T(1) << dst_bit; + + // Multiply rather than shift to avoid clang implicit + // conversion warning. + T bit = ((in[src] & src_bit_val) >> src_bit) * dst_bit_val; + + return bit + TransposeBits2( + in, + std::integral_constant(), + std::integral_constant()); + } + + template + void + TransposeBits( + std::array const &, + std::array &, + std::integral_constant) + { + } + + template + void + TransposeBits( + std::array const &in, + std::array &out, + std::integral_constant) + { + out[D-1] = TransposeBits2( + in, + std::integral_constant(), + std::integral_constant< + size_t, + std::numeric_limits::digits>()); + + TransposeBits( + in, + out, + std::integral_constant()); + } + + + template + T + UntransposeBits2( + std::array const &, + std::integral_constant, + std::integral_constant) + { + return T(0); + } + + template + T + UntransposeBits2( + std::array const &in, + std::integral_constant, + std::integral_constant) + { + const size_t size = std::numeric_limits::digits; + const size_t src = ((D * size) + (size - B)) % N; + const size_t src_bit = + size - (((((D * size) + (size - B))) / N) + 1); + const T src_bit_val = T(1) << src_bit; + const size_t dst_bit(B - 1); + const T dst_bit_val = T(1) << dst_bit; + + // Multiply rather than shift to avoid clang implicit + // conversion warning. + T bit = ((in[src] & src_bit_val) >> src_bit) * dst_bit_val; + + return bit + UntransposeBits2( + in, + std::integral_constant(), + std::integral_constant()); + } + + template + void + UntransposeBits( + std::array const &, + std::array &, + std::integral_constant) + { + } + + template + void + UntransposeBits( + std::array const &in, + std::array &out, + std::integral_constant) + { + out[D-1] = UntransposeBits2( + in, + std::integral_constant(), + std::integral_constant< + size_t, + std::numeric_limits::digits>()); + + UntransposeBits( + in, + out, + std::integral_constant()); + } + + template + void + ApplyGrayCode1( + std::array const &in, + std::array &out, + std::integral_constant) + { + out[0]^= in[N-1] >> 1; + } + + template + void + ApplyGrayCode1( + std::array const &in, + std::array &out, + std::integral_constant) + { + out[I]^= out[I-1]; + + ApplyGrayCode1( + in, + out, + std::integral_constant()); + } + + // Remove a gray code from a transposed vector + template + void + RemoveGrayCode1( + std::array &, + std::integral_constant) + { + } + + // xor array values with previous values. + template + void + RemoveGrayCode1( + std::array &in, + std::integral_constant) + { + const size_t src_idx = N - (D + 1); + const size_t dst_idx = N - D; + + in[dst_idx]^= in[src_idx]; + + RemoveGrayCode1(in, std::integral_constant()); + } + + template + T RemoveGrayCode2(T, std::integral_constant) + { + return T(0); + } + + template + T RemoveGrayCode2(T v, std::integral_constant) + { + const T cur_bit(T(1) << (B-1)); + const T low_bits(cur_bit - 1); + + if(v & cur_bit) + { + return low_bits ^ RemoveGrayCode2( + v, + std::integral_constant()); + } + else + { + return RemoveGrayCode2( + v, + std::integral_constant()); + } + } + + template + void + GrayToHilbert2( + std::array &, + std::integral_constant, + std::integral_constant) + { + } + + template + void + GrayToHilbert2( + std::array &out, + std::integral_constant, + std::integral_constant) + { + const size_t n(I-1); + const T cur_bit(T(1) << (std::numeric_limits::digits - B)); + const T low_bits(cur_bit - 1); + + if(out[n] & cur_bit) + { + // flip low bits of X + out[0]^= low_bits; + } + else + { + // swap low bits with X + T t((out[n] ^ out[0]) & low_bits); + out[n]^= t; + out[0]^= t; + } + + GrayToHilbert2( + out, + std::integral_constant(), + std::integral_constant()); + } + + template + void + GrayToHilbert( + std::array &, + std::integral_constant) + { + } + + template + void + GrayToHilbert( + std::array &out, + std::integral_constant) + { + GrayToHilbert2( + out, + std::integral_constant(), + std::integral_constant()); + + GrayToHilbert(out, std::integral_constant()); + } + + template + void + HilbertToGray2( + std::array &, + std::integral_constant, + std::integral_constant) + { + } + + template + void + HilbertToGray2( + std::array &out, + std::integral_constant, + std::integral_constant) + { + const size_t cur_bit(T(1) << B); + const size_t low_bits(cur_bit-1); + const size_t n(N-I); + + if(out[n] & cur_bit) + { + // flip low bits of X + out[0]^= low_bits; + } + else + { + // swap low bits with X + T t((out[n] ^ out[0]) & low_bits); + out[n]^= t; + out[0]^= t; + } + + HilbertToGray2( + out, + std::integral_constant(), + std::integral_constant()); + } + + template + void + HilbertToGray( + std::array &, + std::integral_constant) + { + } + + template + void + HilbertToGray( + std::array &out, + std::integral_constant) + { + HilbertToGray2( + out, + std::integral_constant(), + std::integral_constant()); + + HilbertToGray(out, std::integral_constant()); + } + + template + void + ApplyMaskToArray( + std::array &, + T, + std::integral_constant) + { + } + + template + void + ApplyMaskToArray( + std::array &a, + T mask, std::integral_constant) + { + a[I-1]^= mask; + + ApplyMaskToArray( + a, + mask, + std::integral_constant()); + } + } // namespace tmp + + + // Pack bits into transposed form. + // + // e.g. + // + // a b c d a d g j + // e f g h -> b e h k + // i j k l c f i l + // + template + std::array + TransposeBits(std::array const &in) + { + std::array out; + + std::fill(out.begin(), out.end(), 0); + + tmp::TransposeBits( + in, + out, + std::integral_constant()); + + return out; + } + + // Extract bits from transposed form. + // e.g. + // + // a d g j a b c d + // b e h k -> e f g h + // c f i l i j k l + // + template + std::array + UntransposeBits(std::array const &in) + { + std::array out; + + std::fill(out.begin(), out.end(), 0); + + tmp::UntransposeBits( + in, + out, + std::integral_constant()); + + return out; + } + + + // Apply a gray code to a transformed vector. + template + std::array + ApplyGrayCode(std::array const &in) + { + std::array out(in); + + tmp::ApplyGrayCode1( + in, + out, + std::integral_constant()); + + return out; + } + + template + std::array + RemoveGrayCode(std::array const &in) + { + const size_t bits = std::numeric_limits::digits; + std::array out(in); + + // Remove gray code from transposed vector. + { + // xor values with prev values. + tmp::RemoveGrayCode1( + out, + std::integral_constant()); + + // create a mask. + T t = tmp::RemoveGrayCode2( + out[N-1], + std::integral_constant()); + + // Apply mask to output. + tmp::ApplyMaskToArray( + out, + t, + std::integral_constant()); + } + + return out; + } + + // Generate code to convert from a transposed gray code to a hilbert + // code. + template + std::array + GrayToHilbert(std::array const &in) + { + std::array out(in); + + tmp::GrayToHilbert( + out, + std::integral_constant< + size_t, + std::numeric_limits::digits - 1>()); + + return out; + } + + // Generate code to convert from a hilbert code to a transposed gray + // code. + template + std::array + HilbertToGray(std::array const &in) + { + std::array out(in); + + tmp::HilbertToGray( + out, + std::integral_constant< + size_t, + std::numeric_limits::digits-1>()); + + return out; + } + } + + // + // Public interfaces. + // + + // Find the position of a point on an N dimensional Hilbert Curve. + // + // Based on the paper "Programming the Hilbert Curve" by John Skilling. + // + // Index is encoded with most significant objects first. Lexographic + // sort order. + template + std::array + IndexToPosition(std::array const &in) + { + // First convert index to transpose. + return internal::GrayToHilbert( + internal::ApplyGrayCode( + internal::TransposeBits(in))); + } + + // Find the index of a point on an N dimensional Hilbert Curve. + // + // Based on the paper "Programming the Hilbert Curve" by John Skilling. + // + // Index is encoded with most significant objects first. Lexographic + // sort order. + template + std::array + PositionToIndex(std::array const &in) + { + return internal::UntransposeBits( + internal::RemoveGrayCode( + internal::HilbertToGray(in))); + } + } // namespace v2 +} // namespace hilbert + +#endif diff --git a/src/rm_localization/point_lio/include/ivox/ivox3d.h b/src/rm_localization/point_lio/include/ivox/ivox3d.h new file mode 100755 index 0000000..6f37014 --- /dev/null +++ b/src/rm_localization/point_lio/include/ivox/ivox3d.h @@ -0,0 +1,315 @@ +// +// Created by xiang on 2021/9/16. +// + +#ifndef FASTER_LIO_IVOX3D_H +#define FASTER_LIO_IVOX3D_H + +#include +// #include +#include +#include +#include + +#include "eigen_types.h" +#include "ivox3d_node.hpp" + +namespace faster_lio { + +enum class IVoxNodeType { + DEFAULT, // linear ivox + PHC, // phc ivox +}; + +/// traits for NodeType +template +struct IVoxNodeTypeTraits {}; + +template +struct IVoxNodeTypeTraits { + using NodeType = IVoxNode; +}; + +template +struct IVoxNodeTypeTraits { + using NodeType = IVoxNodePhc; +}; + +template +class IVox { + public: + using KeyType = Eigen::Matrix; + using PtType = Eigen::Matrix; + using NodeType = typename IVoxNodeTypeTraits::NodeType; + using PointVector = std::vector>; + using DistPoint = typename NodeType::DistPoint; + + enum class NearbyType { + CENTER, // center only + NEARBY6, + NEARBY18, + NEARBY26, + }; + + struct Options { + float resolution_ = 0.2; // ivox resolution + float inv_resolution_ = 10.0; // inverse resolution + NearbyType nearby_type_ = NearbyType::NEARBY6; // nearby range + std::size_t capacity_ = 1000000; // capacity + }; + + /** + * constructor + * @param options ivox options + */ + explicit IVox(Options options) : options_(options) { + options_.inv_resolution_ = 1.0 / options_.resolution_; + GenerateNearbyGrids(); + } + + /** + * add points + * @param points_to_add + */ + void AddPoints(const PointVector& points_to_add); + + /// get nn + bool GetClosestPoint(const PointType& pt, PointType& closest_pt); + + /// get nn with condition + bool GetClosestPoint(const PointType& pt, PointVector& closest_pt, int max_num = 5, double max_range = 5.0); + + /// get nn in cloud + bool GetClosestPoint(const PointVector& cloud, PointVector& closest_cloud); + + /// get number of points + size_t NumPoints() const; + + /// get number of valid grids + size_t NumValidGrids() const; + + /// get statistics of the points + std::vector StatGridPoints() const; + + std::unordered_map>::iterator, hash_vec> + grids_map_; + KeyType Pos2Grid(const PtType& pt) const; + KeyType Pos2Grid_(const PtType& pt, const double &defined_res) const; + + private: + /// generate the nearby grids according to the given options + void GenerateNearbyGrids(); + + /// position to grid + // KeyType Pos2Grid(const PtType& pt) const; + + Options options_; + // std::unordered_map>::iterator, hash_vec> + // grids_map_; // voxel hash map + std::list> grids_cache_; // voxel cache + std::vector nearby_grids_; // nearbys +}; + +template +bool IVox::GetClosestPoint(const PointType& pt, PointType& closest_pt) { + std::vector candidates; + auto key = Pos2Grid(ToEigen(pt)); + std::for_each(nearby_grids_.begin(), nearby_grids_.end(), [&key, &candidates, &pt, this](const KeyType& delta) { + auto dkey = key + delta; + auto iter = grids_map_.find(dkey); + if (iter != grids_map_.end()) { + DistPoint dist_point; + bool found = iter->second->second.NNPoint(pt, dist_point); + if (found) { + candidates.emplace_back(dist_point); + } + } + }); + + if (candidates.empty()) { + return false; + } + + auto iter = std::min_element(candidates.begin(), candidates.end()); + closest_pt = iter->Get(); + return true; +} + +template +bool IVox::GetClosestPoint(const PointType& pt, PointVector& closest_pt, int max_num, + double max_range) { + std::vector candidates; + candidates.reserve(max_num * nearby_grids_.size()); + + auto key = Pos2Grid(ToEigen(pt)); + +// #define INNER_TIMER +#ifdef INNER_TIMER + static std::unordered_map> stats; + if (stats.empty()) { + stats["knn"] = std::vector(); + stats["nth"] = std::vector(); + } +#endif + + for (const KeyType& delta : nearby_grids_) { + auto dkey = key + delta; + auto iter = grids_map_.find(dkey); + if (iter != grids_map_.end()) { +#ifdef INNER_TIMER + auto t1 = std::chrono::high_resolution_clock::now(); +#endif + auto tmp = iter->second->second.KNNPointByCondition(candidates, pt, max_num, max_range); +#ifdef INNER_TIMER + auto t2 = std::chrono::high_resolution_clock::now(); + auto knn = std::chrono::duration_cast(t2 - t1).count(); + stats["knn"].emplace_back(knn); +#endif + } + } + + if (candidates.empty()) { + return false; + } + +#ifdef INNER_TIMER + auto t1 = std::chrono::high_resolution_clock::now(); +#endif + + if (candidates.size() <= max_num) { + } else { + std::nth_element(candidates.begin(), candidates.begin() + max_num - 1, candidates.end()); + candidates.resize(max_num); + } + std::nth_element(candidates.begin(), candidates.begin(), candidates.end()); + +#ifdef INNER_TIMER + auto t2 = std::chrono::high_resolution_clock::now(); + auto nth = std::chrono::duration_cast(t2 - t1).count(); + stats["nth"].emplace_back(nth); + + constexpr int STAT_PERIOD = 100000; + if (!stats["nth"].empty() && stats["nth"].size() % STAT_PERIOD == 0) { + for (auto& it : stats) { + const std::string& key = it.first; + std::vector& stat = it.second; + int64_t sum_ = std::accumulate(stat.begin(), stat.end(), 0); + int64_t num_ = stat.size(); + stat.clear(); + std::cout << "inner_" << key << "(ns): sum=" << sum_ << " num=" << num_ << " ave=" << 1.0 * sum_ / num_ + << " ave*n=" << 1.0 * sum_ / STAT_PERIOD << std::endl; + } + } +#endif + + closest_pt.clear(); + for (auto& it : candidates) { + closest_pt.emplace_back(it.Get()); + } + return closest_pt.empty() == false; +} + +template +size_t IVox::NumValidGrids() const { + return grids_map_.size(); +} + +template +void IVox::GenerateNearbyGrids() { + if (options_.nearby_type_ == NearbyType::CENTER) { + nearby_grids_.emplace_back(KeyType::Zero()); + } else if (options_.nearby_type_ == NearbyType::NEARBY6) { + nearby_grids_ = {KeyType(0, 0, 0), KeyType(-1, 0, 0), KeyType(1, 0, 0), KeyType(0, 1, 0), + KeyType(0, -1, 0), KeyType(0, 0, -1), KeyType(0, 0, 1)}; + } else if (options_.nearby_type_ == NearbyType::NEARBY18) { + nearby_grids_ = {KeyType(0, 0, 0), KeyType(-1, 0, 0), KeyType(1, 0, 0), KeyType(0, 1, 0), + KeyType(0, -1, 0), KeyType(0, 0, -1), KeyType(0, 0, 1), KeyType(1, 1, 0), + KeyType(-1, 1, 0), KeyType(1, -1, 0), KeyType(-1, -1, 0), KeyType(1, 0, 1), + KeyType(-1, 0, 1), KeyType(1, 0, -1), KeyType(-1, 0, -1), KeyType(0, 1, 1), + KeyType(0, -1, 1), KeyType(0, 1, -1), KeyType(0, -1, -1)}; + } else if (options_.nearby_type_ == NearbyType::NEARBY26) { + nearby_grids_ = {KeyType(0, 0, 0), KeyType(-1, 0, 0), KeyType(1, 0, 0), KeyType(0, 1, 0), + KeyType(0, -1, 0), KeyType(0, 0, -1), KeyType(0, 0, 1), KeyType(1, 1, 0), + KeyType(-1, 1, 0), KeyType(1, -1, 0), KeyType(-1, -1, 0), KeyType(1, 0, 1), + KeyType(-1, 0, 1), KeyType(1, 0, -1), KeyType(-1, 0, -1), KeyType(0, 1, 1), + KeyType(0, -1, 1), KeyType(0, 1, -1), KeyType(0, -1, -1), KeyType(1, 1, 1), + KeyType(-1, 1, 1), KeyType(1, -1, 1), KeyType(1, 1, -1), KeyType(-1, -1, 1), + KeyType(-1, 1, -1), KeyType(1, -1, -1), KeyType(-1, -1, -1)}; + } else { + // LOG(ERROR) << "Unknown nearby_type!"; + } +} + +template +bool IVox::GetClosestPoint(const PointVector& cloud, PointVector& closest_cloud) { + std::vector index(cloud.size()); + + closest_cloud.resize(cloud.size()); + + for (int i = 0; i < cloud.size(); ++i) { + PointType pt; + if (GetClosestPoint(cloud[i], pt)) { + closest_cloud[i] = pt; + } else { + closest_cloud[i] = PointType(); + } + }; + return true; +} + +template +void IVox::AddPoints(const PointVector& points_to_add) { + for(size_t i = 0; i(points_to_add[i].x, points_to_add[i].y, points_to_add[i].z)); + auto iter = grids_map_.find(key); + if (iter == grids_map_.end()) { + PointType center; + center.getVector3fMap() = key.template cast() * options_.resolution_; + + grids_cache_.push_front({key, NodeType(center, options_.resolution_)}); + grids_map_.insert({key, grids_cache_.begin()}); + + grids_cache_.front().second.InsertPoint(points_to_add[i]); + + if (grids_map_.size() >= options_.capacity_) { + grids_map_.erase(grids_cache_.back().first); + grids_cache_.pop_back(); + } + } else { + iter->second->second.InsertPoint(points_to_add[i]); + grids_cache_.splice(grids_cache_.begin(), grids_cache_, iter->second); + grids_map_[key] = grids_cache_.begin(); + } + } +} + +template +Eigen::Matrix IVox::Pos2Grid(const IVox::PtType& pt) const { + return (pt * options_.inv_resolution_).array().floor().template cast(); +} + +template +Eigen::Matrix IVox::Pos2Grid_(const IVox::PtType& pt, const double &defined_res) const { + return (pt / defined_res).array().floor().template cast(); +} + +template +std::vector IVox::StatGridPoints() const { + int num = grids_cache_.size(), valid_num = 0, max = 0, min = 100000000; + int sum = 0, sum_square = 0; + for (auto& it : grids_cache_) { + int s = it.second.Size(); + valid_num += s > 0; + max = s > max ? s : max; + min = s < min ? s : min; + sum += s; + sum_square += s * s; + } + float ave = float(sum) / num; + float stddev = num > 1 ? sqrt((float(sum_square) - num * ave * ave) / (num - 1)) : 0; + return std::vector{valid_num, ave, max, min, stddev}; +} + +} // namespace faster_lio + +#endif diff --git a/src/rm_localization/point_lio/include/ivox/ivox3d_node.hpp b/src/rm_localization/point_lio/include/ivox/ivox3d_node.hpp new file mode 100755 index 0000000..d2a9e0b --- /dev/null +++ b/src/rm_localization/point_lio/include/ivox/ivox3d_node.hpp @@ -0,0 +1,413 @@ +#include +#include +#include +#include +#include + +#include "hilbert.hpp" + +namespace faster_lio { + +// squared distance of two pcl points +template +inline double distance2(const PointT& pt1, const PointT& pt2) { + Eigen::Vector3f d = pt1.getVector3fMap() - pt2.getVector3fMap(); + return d.squaredNorm(); +} + +// convert from pcl point to eigen +template +inline Eigen::Matrix ToEigen(const PointType& pt) { + cout << "line 21" << endl; + return Eigen::Matrix(pt.x, pt.y, pt.z); + cout << "line 23" << endl; +} + +template <> +inline Eigen::Matrix ToEigen(const pcl::PointXYZ& pt) { + return pt.getVector3fMap(); +} + +template <> +inline Eigen::Matrix ToEigen(const pcl::PointXYZI& pt) { + return pt.getVector3fMap(); +} + +template <> +inline Eigen::Matrix ToEigen(const pcl::PointXYZINormal& pt) { + return pt.getVector3fMap(); +} + +template +class IVoxNode { + public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW; + + struct DistPoint; + + IVoxNode() = default; + IVoxNode(const PointT& center, const float& side_length) {} /// same with phc + + void InsertPoint(const PointT& pt); + + inline bool Empty() const; + + inline std::size_t Size() const; + + inline PointT GetPoint(const std::size_t idx) const; + + int KNNPointByCondition(std::vector& dis_points, const PointT& point, const int& K, + const double& max_range); + + private: + std::vector points_; +}; + +template +class IVoxNodePhc { + public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW; + + struct DistPoint; + struct PhcCube; + + IVoxNodePhc() = default; + IVoxNodePhc(const PointT& center, const float& side_length, const int& phc_order = 6); + + void InsertPoint(const PointT& pt); + + void ErasePoint(const PointT& pt, const double erase_distance_th_); + + inline bool Empty() const; + + inline std::size_t Size() const; + + PointT GetPoint(const std::size_t idx) const; + + bool NNPoint(const PointT& cur_pt, DistPoint& dist_point) const; + + int KNNPointByCondition(std::vector& dis_points, const PointT& cur_pt, const int& K = 5, + const double& max_range = 5.0); + + private: + uint32_t CalculatePhcIndex(const PointT& pt) const; + + private: + std::vector phc_cubes_; + + PointT center_; + float side_length_ = 0; + int phc_order_ = 6; + float phc_side_length_ = 0; + float phc_side_length_inv_ = 0; + Eigen::Matrix min_cube_; +}; + +template +struct IVoxNode::DistPoint { + double dist = 0; + IVoxNode* node = nullptr; + int idx = 0; + + DistPoint() = default; + DistPoint(const double d, IVoxNode* n, const int i) : dist(d), node(n), idx(i) {} + + PointT Get() { return node->GetPoint(idx); } + + inline bool operator()(const DistPoint& p1, const DistPoint& p2) { return p1.dist < p2.dist; } + + inline bool operator<(const DistPoint& rhs) { return dist < rhs.dist; } +}; + +template +void IVoxNode::InsertPoint(const PointT& pt) { + points_.template emplace_back(pt); +} + +template +bool IVoxNode::Empty() const { + return points_.empty(); +} + +template +std::size_t IVoxNode::Size() const { + return points_.size(); +} + +template +PointT IVoxNode::GetPoint(const std::size_t idx) const { + return points_[idx]; +} + +template +int IVoxNode::KNNPointByCondition(std::vector& dis_points, const PointT& point, const int& K, + const double& max_range) { + std::size_t old_size = dis_points.size(); +// #define INNER_TIMER +#ifdef INNER_TIMER + static std::unordered_map> stats; + if (stats.empty()) { + stats["dis"] = std::vector(); + stats["put"] = std::vector(); + stats["nth"] = std::vector(); + } +#endif + + for (const auto& pt : points_) { +#ifdef INNER_TIMER + auto t0 = std::chrono::high_resolution_clock::now(); +#endif + double d = distance2(pt, point); +#ifdef INNER_TIMER + auto t1 = std::chrono::high_resolution_clock::now(); +#endif + if (d < max_range * max_range) { + dis_points.template emplace_back(DistPoint(d, this, &pt - points_.data())); + } +#ifdef INNER_TIMER + auto t2 = std::chrono::high_resolution_clock::now(); + + auto dis = std::chrono::duration_cast(t1 - t0).count(); + stats["dis"].emplace_back(dis); + auto put = std::chrono::duration_cast(t2 - t1).count(); + stats["put"].emplace_back(put); +#endif + } + +#ifdef INNER_TIMER + auto t1 = std::chrono::high_resolution_clock::now(); +#endif + // sort by distance + if (old_size + K >= dis_points.size()) { + } else { + std::nth_element(dis_points.begin() + old_size, dis_points.begin() + old_size + K - 1, dis_points.end()); + dis_points.resize(old_size + K); + } + +#ifdef INNER_TIMER + auto t2 = std::chrono::high_resolution_clock::now(); + auto nth = std::chrono::duration_cast(t2 - t1).count(); + stats["nth"].emplace_back(nth); + + constexpr int STAT_PERIOD = 100000; + if (!stats["nth"].empty() && stats["nth"].size() % STAT_PERIOD == 0) { + for (auto& it : stats) { + const std::string& key = it.first; + std::vector& stat = it.second; + int64_t sum_ = std::accumulate(stat.begin(), stat.end(), 0); + int64_t num_ = stat.size(); + stat.clear(); + std::cout << "inner_" << key << "(ns): sum=" << sum_ << " num=" << num_ << " ave=" << 1.0 * sum_ / num_ + << " ave*n=" << 1.0 * sum_ / STAT_PERIOD << std::endl; + } + } +#endif + + return dis_points.size(); +} + +template +struct IVoxNodePhc::DistPoint { + double dist = 0; + IVoxNodePhc* node = nullptr; + int idx = 0; + + DistPoint() {} + DistPoint(const double d, IVoxNodePhc* n, const int i) : dist(d), node(n), idx(i) {} + + PointT Get() { return node->GetPoint(idx); } + + inline bool operator()(const DistPoint& p1, const DistPoint& p2) { return p1.dist < p2.dist; } + + inline bool operator<(const DistPoint& rhs) { return dist < rhs.dist; } +}; + +template +struct IVoxNodePhc::PhcCube { + uint32_t idx = 0; + pcl::CentroidPoint mean; + + PhcCube(uint32_t index, const PointT& pt) { mean.add(pt); } + + void AddPoint(PointT& pt) { mean.add(pt); } + + PointT GetPoint() const { + PointT pt; + mean.get(pt); + return std::move(pt); + } +}; + +template +IVoxNodePhc::IVoxNodePhc(const PointT& center, const float& side_length, const int& phc_order) + : center_(center), side_length_(side_length), phc_order_(phc_order) { + assert(phc_order <= 8); + phc_side_length_ = side_length_ / (std::pow(2, phc_order_)); + phc_side_length_inv_ = (std::pow(2, phc_order_)) / side_length_; + min_cube_ = center_.getArray3fMap() - side_length / 2.0; + phc_cubes_.reserve(64); +} + +template +void IVoxNodePhc::InsertPoint(const PointT& pt) { + uint32_t idx = CalculatePhcIndex(pt); + + PhcCube cube{idx, pt}; + auto it = std::lower_bound(phc_cubes_.begin(), phc_cubes_.end(), cube, + [](const PhcCube& a, const PhcCube& b) { return a.idx < b.idx; }); + + if (it == phc_cubes_.end()) { + phc_cubes_.emplace_back(cube); + } else { + if (it->idx == idx) { + it->AddPoint(pt); + } else { + phc_cubes_.insert(it, cube); + } + } +} + +template +void IVoxNodePhc::ErasePoint(const PointT& pt, const double erase_distance_th_) { + uint32_t idx = CalculatePhcIndex(pt); + + PhcCube cube{idx, pt}; + auto it = std::lower_bound(phc_cubes_.begin(), phc_cubes_.end(), cube, + [](const PhcCube& a, const PhcCube& b) { return a.idx < b.idx; }); + + if (erase_distance_th_ > 0) { + } + if (it != phc_cubes_.end() && it->idx == idx) { + phc_cubes_.erase(it); + } +} + +template +bool IVoxNodePhc::Empty() const { + return phc_cubes_.empty(); +} + +template +std::size_t IVoxNodePhc::Size() const { + return phc_cubes_.size(); +} + +template +PointT IVoxNodePhc::GetPoint(const std::size_t idx) const { + return phc_cubes_[idx].GetPoint(); +} + +template +bool IVoxNodePhc::NNPoint(const PointT& cur_pt, DistPoint& dist_point) const { + if (phc_cubes_.empty()) { + return false; + } + uint32_t cur_idx = CalculatePhcIndex(cur_pt); + PhcCube cube{cur_idx, cur_pt}; + auto it = std::lower_bound(phc_cubes_.begin(), phc_cubes_.end(), cube, + [](const PhcCube& a, const PhcCube& b) { return a.idx < b.idx; }); + + if (it == phc_cubes_.end()) { + it--; + dist_point = DistPoint(distance2(cur_pt, it->GetPoint()), this, it - phc_cubes_.begin()); + } else if (it == phc_cubes_.begin()) { + dist_point = DistPoint(distance2(cur_pt, it->GetPoint()), this, it - phc_cubes_.begin()); + } else { + auto last_it = it; + last_it--; + double d1 = distance2(cur_pt, it->GetPoint()); + double d2 = distance2(cur_pt, last_it->GetPoint()); + if (d1 > d2) { + dist_point = DistPoint(d2, this, it - phc_cubes_.begin()); + } else { + dist_point = DistPoint(d1, this, it - phc_cubes_.begin()); + } + } + + return true; +} + +template +int IVoxNodePhc::KNNPointByCondition(std::vector& dis_points, const PointT& cur_pt, + const int& K, const double& max_range) { + uint32_t cur_idx = CalculatePhcIndex(cur_pt); + PhcCube cube{cur_idx, cur_pt}; + auto it = std::lower_bound(phc_cubes_.begin(), phc_cubes_.end(), cube, + [](const PhcCube& a, const PhcCube& b) { return a.idx < b.idx; }); + + const int max_search_cube_side_length = std::pow(2, std::ceil(std::log2(max_range * phc_side_length_inv_))); + const int max_search_idx_th = + 8 * max_search_cube_side_length * max_search_cube_side_length * max_search_cube_side_length; + + auto create_dist_point = [&cur_pt, this](typename std::vector::const_iterator forward_it) { + double d = distance2(forward_it->GetPoint(), cur_pt); + return DistPoint(d, this, forward_it - phc_cubes_.begin()); + }; + + typename std::vector::const_iterator forward_it(it); + typename std::vector::const_reverse_iterator backward_it(it); + if (it != phc_cubes_.end()) { + dis_points.emplace_back(create_dist_point(it)); + forward_it++; + } + if (backward_it != phc_cubes_.rend()) { + backward_it++; + } + + auto forward_reach_boundary = [&]() { + return forward_it == phc_cubes_.end() || forward_it->idx - cur_idx > max_search_idx_th; + }; + auto backward_reach_boundary = [&]() { + return backward_it == phc_cubes_.rend() || cur_idx - backward_it->idx > max_search_idx_th; + }; + + while (!forward_reach_boundary() && !backward_reach_boundary()) { + if (forward_it->idx - cur_idx > cur_idx - backward_it->idx) { + dis_points.emplace_back(create_dist_point(forward_it)); + forward_it++; + } else { + dis_points.emplace_back(create_dist_point(backward_it.base())); + backward_it++; + } + if (dis_points.size() > K) { + break; + } + } + + if (forward_reach_boundary()) { + while (!backward_reach_boundary() && dis_points.size() < K) { + dis_points.emplace_back(create_dist_point(backward_it.base())); + backward_it++; + } + } + + if (backward_reach_boundary()) { + while (!forward_reach_boundary() && dis_points.size() < K) { + dis_points.emplace_back(create_dist_point(forward_it)); + forward_it++; + } + } + + return dis_points.size(); +} + +template +uint32_t IVoxNodePhc::CalculatePhcIndex(const PointT& pt) const { + Eigen::Matrix eposf = (pt.getVector3fMap() - min_cube_) * phc_side_length_inv_; + Eigen::Matrix eposi = eposf.template cast(); + for (int i = 0; i < dim; ++i) { + if (eposi(i, 0) < 0) { + eposi(i, 0) = 0; + } + if (eposi(i, 0) > std::pow(2, phc_order_)) { + eposi(i, 0) = std::pow(2, phc_order_) - 1; + } + } + std::array apos{eposi(0), eposi(1), eposi(2)}; + std::array tmp = hilbert::v2::PositionToIndex(apos); + + uint32_t idx = (uint32_t(tmp[0]) << 16) + (uint32_t(tmp[1]) << 8) + (uint32_t(tmp[2])); + return idx; +} + +} // namespace faster_lio diff --git a/src/rm_localization/point_lio/include/matplotlibcpp.h b/src/rm_localization/point_lio/include/matplotlibcpp.h new file mode 100755 index 0000000..a6afa34 --- /dev/null +++ b/src/rm_localization/point_lio/include/matplotlibcpp.h @@ -0,0 +1,2500 @@ +#pragma once + +// Python headers must be included before any system headers, since +// they define _POSIX_C_SOURCE +#include + +#include +#include +#include +#include +#include +#include +#include +#include // requires c++11 support +#include + +#ifndef WITHOUT_NUMPY +# define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION +# include + +# ifdef WITH_OPENCV +# include +# include +# endif // WITH_OPENCV + +/* + * A bunch of constants were removed in OpenCV 4 in favour of enum classes, so + * define the ones we need here. + */ +# if CV_MAJOR_VERSION > 3 +# define CV_BGR2RGB cv::COLOR_BGR2RGB +# define CV_BGRA2RGBA cv::COLOR_BGRA2RGBA +# endif +#endif // WITHOUT_NUMPY + +#if PY_MAJOR_VERSION >= 3 +# define PyString_FromString PyUnicode_FromString +# define PyInt_FromLong PyLong_FromLong +# define PyString_FromString PyUnicode_FromString +#endif + + +namespace matplotlibcpp { +namespace detail { + +static std::string s_backend; + +struct _interpreter { + PyObject* s_python_function_arrow; + PyObject *s_python_function_show; + PyObject *s_python_function_close; + PyObject *s_python_function_draw; + PyObject *s_python_function_pause; + PyObject *s_python_function_save; + PyObject *s_python_function_figure; + PyObject *s_python_function_fignum_exists; + PyObject *s_python_function_plot; + PyObject *s_python_function_quiver; + PyObject* s_python_function_contour; + PyObject *s_python_function_semilogx; + PyObject *s_python_function_semilogy; + PyObject *s_python_function_loglog; + PyObject *s_python_function_fill; + PyObject *s_python_function_fill_between; + PyObject *s_python_function_hist; + PyObject *s_python_function_imshow; + PyObject *s_python_function_scatter; + PyObject *s_python_function_boxplot; + PyObject *s_python_function_subplot; + PyObject *s_python_function_subplot2grid; + PyObject *s_python_function_legend; + PyObject *s_python_function_xlim; + PyObject *s_python_function_ion; + PyObject *s_python_function_ginput; + PyObject *s_python_function_ylim; + PyObject *s_python_function_title; + PyObject *s_python_function_axis; + PyObject *s_python_function_axvline; + PyObject *s_python_function_axvspan; + PyObject *s_python_function_xlabel; + PyObject *s_python_function_ylabel; + PyObject *s_python_function_gca; + PyObject *s_python_function_xticks; + PyObject *s_python_function_yticks; + PyObject* s_python_function_margins; + PyObject *s_python_function_tick_params; + PyObject *s_python_function_grid; + PyObject* s_python_function_cla; + PyObject *s_python_function_clf; + PyObject *s_python_function_errorbar; + PyObject *s_python_function_annotate; + PyObject *s_python_function_tight_layout; + PyObject *s_python_colormap; + PyObject *s_python_empty_tuple; + PyObject *s_python_function_stem; + PyObject *s_python_function_xkcd; + PyObject *s_python_function_text; + PyObject *s_python_function_suptitle; + PyObject *s_python_function_bar; + PyObject *s_python_function_colorbar; + PyObject *s_python_function_subplots_adjust; + + + /* For now, _interpreter is implemented as a singleton since its currently not possible to have + multiple independent embedded python interpreters without patching the python source code + or starting a separate process for each. + http://bytes.com/topic/python/answers/793370-multiple-independent-python-interpreters-c-c-program + */ + + static _interpreter& get() { + static _interpreter ctx; + return ctx; + } + + PyObject* safe_import(PyObject* module, std::string fname) { + PyObject* fn = PyObject_GetAttrString(module, fname.c_str()); + + if (!fn) + throw std::runtime_error(std::string("Couldn't find required function: ") + fname); + + if (!PyFunction_Check(fn)) + throw std::runtime_error(fname + std::string(" is unexpectedly not a PyFunction.")); + + return fn; + } + +private: + +#ifndef WITHOUT_NUMPY +# if PY_MAJOR_VERSION >= 3 + + void *import_numpy() { + import_array(); // initialize C-API + return NULL; + } + +# else + + void import_numpy() { + import_array(); // initialize C-API + } + +# endif +#endif + + _interpreter() { + + // optional but recommended +#if PY_MAJOR_VERSION >= 3 + wchar_t name[] = L"plotting"; +#else + char name[] = "plotting"; +#endif + Py_SetProgramName(name); + Py_Initialize(); + +#ifndef WITHOUT_NUMPY + import_numpy(); // initialize numpy C-API +#endif + + PyObject* matplotlibname = PyString_FromString("matplotlib"); + PyObject* pyplotname = PyString_FromString("matplotlib.pyplot"); + PyObject* cmname = PyString_FromString("matplotlib.cm"); + PyObject* pylabname = PyString_FromString("pylab"); + if (!pyplotname || !pylabname || !matplotlibname || !cmname) { + throw std::runtime_error("couldnt create string"); + } + + PyObject* matplotlib = PyImport_Import(matplotlibname); + Py_DECREF(matplotlibname); + if (!matplotlib) { + PyErr_Print(); + throw std::runtime_error("Error loading module matplotlib!"); + } + + // matplotlib.use() must be called *before* pylab, matplotlib.pyplot, + // or matplotlib.backends is imported for the first time + if (!s_backend.empty()) { + PyObject_CallMethod(matplotlib, const_cast("use"), const_cast("s"), s_backend.c_str()); + } + + PyObject* pymod = PyImport_Import(pyplotname); + Py_DECREF(pyplotname); + if (!pymod) { throw std::runtime_error("Error loading module matplotlib.pyplot!"); } + + s_python_colormap = PyImport_Import(cmname); + Py_DECREF(cmname); + if (!s_python_colormap) { throw std::runtime_error("Error loading module matplotlib.cm!"); } + + PyObject* pylabmod = PyImport_Import(pylabname); + Py_DECREF(pylabname); + if (!pylabmod) { throw std::runtime_error("Error loading module pylab!"); } + + s_python_function_arrow = safe_import(pymod, "arrow"); + s_python_function_show = safe_import(pymod, "show"); + s_python_function_close = safe_import(pymod, "close"); + s_python_function_draw = safe_import(pymod, "draw"); + s_python_function_pause = safe_import(pymod, "pause"); + s_python_function_figure = safe_import(pymod, "figure"); + s_python_function_fignum_exists = safe_import(pymod, "fignum_exists"); + s_python_function_plot = safe_import(pymod, "plot"); + s_python_function_quiver = safe_import(pymod, "quiver"); + s_python_function_contour = safe_import(pymod, "contour"); + s_python_function_semilogx = safe_import(pymod, "semilogx"); + s_python_function_semilogy = safe_import(pymod, "semilogy"); + s_python_function_loglog = safe_import(pymod, "loglog"); + s_python_function_fill = safe_import(pymod, "fill"); + s_python_function_fill_between = safe_import(pymod, "fill_between"); + s_python_function_hist = safe_import(pymod,"hist"); + s_python_function_scatter = safe_import(pymod,"scatter"); + s_python_function_boxplot = safe_import(pymod,"boxplot"); + s_python_function_subplot = safe_import(pymod, "subplot"); + s_python_function_subplot2grid = safe_import(pymod, "subplot2grid"); + s_python_function_legend = safe_import(pymod, "legend"); + s_python_function_ylim = safe_import(pymod, "ylim"); + s_python_function_title = safe_import(pymod, "title"); + s_python_function_axis = safe_import(pymod, "axis"); + s_python_function_axvline = safe_import(pymod, "axvline"); + s_python_function_axvspan = safe_import(pymod, "axvspan"); + s_python_function_xlabel = safe_import(pymod, "xlabel"); + s_python_function_ylabel = safe_import(pymod, "ylabel"); + s_python_function_gca = safe_import(pymod, "gca"); + s_python_function_xticks = safe_import(pymod, "xticks"); + s_python_function_yticks = safe_import(pymod, "yticks"); + s_python_function_margins = safe_import(pymod, "margins"); + s_python_function_tick_params = safe_import(pymod, "tick_params"); + s_python_function_grid = safe_import(pymod, "grid"); + s_python_function_xlim = safe_import(pymod, "xlim"); + s_python_function_ion = safe_import(pymod, "ion"); + s_python_function_ginput = safe_import(pymod, "ginput"); + s_python_function_save = safe_import(pylabmod, "savefig"); + s_python_function_annotate = safe_import(pymod,"annotate"); + s_python_function_cla = safe_import(pymod, "cla"); + s_python_function_clf = safe_import(pymod, "clf"); + s_python_function_errorbar = safe_import(pymod, "errorbar"); + s_python_function_tight_layout = safe_import(pymod, "tight_layout"); + s_python_function_stem = safe_import(pymod, "stem"); + s_python_function_xkcd = safe_import(pymod, "xkcd"); + s_python_function_text = safe_import(pymod, "text"); + s_python_function_suptitle = safe_import(pymod, "suptitle"); + s_python_function_bar = safe_import(pymod,"bar"); + s_python_function_colorbar = PyObject_GetAttrString(pymod, "colorbar"); + s_python_function_subplots_adjust = safe_import(pymod,"subplots_adjust"); +#ifndef WITHOUT_NUMPY + s_python_function_imshow = safe_import(pymod, "imshow"); +#endif + s_python_empty_tuple = PyTuple_New(0); + } + + ~_interpreter() { + Py_Finalize(); + } +}; + +} // end namespace detail + +/// Select the backend +/// +/// **NOTE:** This must be called before the first plot command to have +/// any effect. +/// +/// Mainly useful to select the non-interactive 'Agg' backend when running +/// matplotlibcpp in headless mode, for example on a machine with no display. +/// +/// See also: https://matplotlib.org/2.0.2/api/matplotlib_configuration_api.html#matplotlib.use +inline void backend(const std::string& name) +{ + detail::s_backend = name; +} + +inline bool annotate(std::string annotation, double x, double y) +{ + detail::_interpreter::get(); + + PyObject * xy = PyTuple_New(2); + PyObject * str = PyString_FromString(annotation.c_str()); + + PyTuple_SetItem(xy,0,PyFloat_FromDouble(x)); + PyTuple_SetItem(xy,1,PyFloat_FromDouble(y)); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "xy", xy); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, str); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_annotate, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); + + return res; +} + +namespace detail { + +#ifndef WITHOUT_NUMPY +// Type selector for numpy array conversion +template struct select_npy_type { const static NPY_TYPES type = NPY_NOTYPE; }; //Default +template <> struct select_npy_type { const static NPY_TYPES type = NPY_DOUBLE; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_FLOAT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_BOOL; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT8; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_SHORT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT64; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_UINT8; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_USHORT; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_ULONG; }; +template <> struct select_npy_type { const static NPY_TYPES type = NPY_UINT64; }; + +// Sanity checks; comment them out or change the numpy type below if you're compiling on +// a platform where they don't apply +static_assert(sizeof(long long) == 8); +template <> struct select_npy_type { const static NPY_TYPES type = NPY_INT64; }; +static_assert(sizeof(unsigned long long) == 8); +template <> struct select_npy_type { const static NPY_TYPES type = NPY_UINT64; }; +// TODO: add int, long, etc. + +template +PyObject* get_array(const std::vector& v) +{ + npy_intp vsize = v.size(); + NPY_TYPES type = select_npy_type::type; + if (type == NPY_NOTYPE) { + size_t memsize = v.size()*sizeof(double); + double* dp = static_cast(::malloc(memsize)); + for (size_t i=0; i(varray), NPY_ARRAY_OWNDATA); + return varray; + } + + PyObject* varray = PyArray_SimpleNewFromData(1, &vsize, type, (void*)(v.data())); + return varray; +} + + +template +PyObject* get_2darray(const std::vector<::std::vector>& v) +{ + if (v.size() < 1) throw std::runtime_error("get_2d_array v too small"); + + npy_intp vsize[2] = {static_cast(v.size()), + static_cast(v[0].size())}; + + PyArrayObject *varray = + (PyArrayObject *)PyArray_SimpleNew(2, vsize, NPY_DOUBLE); + + double *vd_begin = static_cast(PyArray_DATA(varray)); + + for (const ::std::vector &v_row : v) { + if (v_row.size() != static_cast(vsize[1])) + throw std::runtime_error("Missmatched array size"); + std::copy(v_row.begin(), v_row.end(), vd_begin); + vd_begin += vsize[1]; + } + + return reinterpret_cast(varray); +} + +#else // fallback if we don't have numpy: copy every element of the given vector + +template +PyObject* get_array(const std::vector& v) +{ + PyObject* list = PyList_New(v.size()); + for(size_t i = 0; i < v.size(); ++i) { + PyList_SetItem(list, i, PyFloat_FromDouble(v.at(i))); + } + return list; +} + +#endif // WITHOUT_NUMPY + +// sometimes, for labels and such, we need string arrays +inline PyObject * get_array(const std::vector& strings) +{ + PyObject* list = PyList_New(strings.size()); + for (std::size_t i = 0; i < strings.size(); ++i) { + PyList_SetItem(list, i, PyString_FromString(strings[i].c_str())); + } + return list; +} + +// not all matplotlib need 2d arrays, some prefer lists of lists +template +PyObject* get_listlist(const std::vector>& ll) +{ + PyObject* listlist = PyList_New(ll.size()); + for (std::size_t i = 0; i < ll.size(); ++i) { + PyList_SetItem(listlist, i, get_array(ll[i])); + } + return listlist; +} + +} // namespace detail + +/// Plot a line through the given x and y data points.. +/// +/// See: https://matplotlib.org/3.2.1/api/_as_gen/matplotlib.pyplot.plot.html +template +bool plot(const std::vector &x, const std::vector &y, const std::map& keywords) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +// TODO - it should be possible to make this work by implementing +// a non-numpy alternative for `detail::get_2darray()`. +#ifndef WITHOUT_NUMPY +template +void plot_surface(const std::vector<::std::vector> &x, + const std::vector<::std::vector> &y, + const std::vector<::std::vector> &z, + const std::map &keywords = + std::map()) +{ + detail::_interpreter::get(); + + // We lazily load the modules here the first time this function is called + // because I'm not sure that we can assume "matplotlib installed" implies + // "mpl_toolkits installed" on all platforms, and we don't want to require + // it for people who don't need 3d plots. + static PyObject *mpl_toolkitsmod = nullptr, *axis3dmod = nullptr; + if (!mpl_toolkitsmod) { + detail::_interpreter::get(); + + PyObject* mpl_toolkits = PyString_FromString("mpl_toolkits"); + PyObject* axis3d = PyString_FromString("mpl_toolkits.mplot3d"); + if (!mpl_toolkits || !axis3d) { throw std::runtime_error("couldnt create string"); } + + mpl_toolkitsmod = PyImport_Import(mpl_toolkits); + Py_DECREF(mpl_toolkits); + if (!mpl_toolkitsmod) { throw std::runtime_error("Error loading module mpl_toolkits!"); } + + axis3dmod = PyImport_Import(axis3d); + Py_DECREF(axis3d); + if (!axis3dmod) { throw std::runtime_error("Error loading module mpl_toolkits.mplot3d!"); } + } + + assert(x.size() == y.size()); + assert(y.size() == z.size()); + + // using numpy arrays + PyObject *xarray = detail::get_2darray(x); + PyObject *yarray = detail::get_2darray(y); + PyObject *zarray = detail::get_2darray(z); + + // construct positional args + PyObject *args = PyTuple_New(3); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + PyTuple_SetItem(args, 2, zarray); + + // Build up the kw args. + PyObject *kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "rstride", PyInt_FromLong(1)); + PyDict_SetItemString(kwargs, "cstride", PyInt_FromLong(1)); + + PyObject *python_colormap_coolwarm = PyObject_GetAttrString( + detail::_interpreter::get().s_python_colormap, "coolwarm"); + + PyDict_SetItemString(kwargs, "cmap", python_colormap_coolwarm); + + for (std::map::const_iterator it = keywords.begin(); + it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyString_FromString(it->second.c_str())); + } + + + PyObject *fig = + PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, + detail::_interpreter::get().s_python_empty_tuple); + if (!fig) throw std::runtime_error("Call to figure() failed."); + + PyObject *gca_kwargs = PyDict_New(); + PyDict_SetItemString(gca_kwargs, "projection", PyString_FromString("3d")); + + PyObject *gca = PyObject_GetAttrString(fig, "gca"); + if (!gca) throw std::runtime_error("No gca"); + Py_INCREF(gca); + PyObject *axis = PyObject_Call( + gca, detail::_interpreter::get().s_python_empty_tuple, gca_kwargs); + + if (!axis) throw std::runtime_error("No axis"); + Py_INCREF(axis); + + Py_DECREF(gca); + Py_DECREF(gca_kwargs); + + PyObject *plot_surface = PyObject_GetAttrString(axis, "plot_surface"); + if (!plot_surface) throw std::runtime_error("No surface"); + Py_INCREF(plot_surface); + PyObject *res = PyObject_Call(plot_surface, args, kwargs); + if (!res) throw std::runtime_error("failed surface"); + Py_DECREF(plot_surface); + + Py_DECREF(axis); + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); +} +#endif // WITHOUT_NUMPY + +template +void plot3(const std::vector &x, + const std::vector &y, + const std::vector &z, + const std::map &keywords = + std::map()) +{ + detail::_interpreter::get(); + + // Same as with plot_surface: We lazily load the modules here the first time + // this function is called because I'm not sure that we can assume "matplotlib + // installed" implies "mpl_toolkits installed" on all platforms, and we don't + // want to require it for people who don't need 3d plots. + static PyObject *mpl_toolkitsmod = nullptr, *axis3dmod = nullptr; + if (!mpl_toolkitsmod) { + detail::_interpreter::get(); + + PyObject* mpl_toolkits = PyString_FromString("mpl_toolkits"); + PyObject* axis3d = PyString_FromString("mpl_toolkits.mplot3d"); + if (!mpl_toolkits || !axis3d) { throw std::runtime_error("couldnt create string"); } + + mpl_toolkitsmod = PyImport_Import(mpl_toolkits); + Py_DECREF(mpl_toolkits); + if (!mpl_toolkitsmod) { throw std::runtime_error("Error loading module mpl_toolkits!"); } + + axis3dmod = PyImport_Import(axis3d); + Py_DECREF(axis3d); + if (!axis3dmod) { throw std::runtime_error("Error loading module mpl_toolkits.mplot3d!"); } + } + + assert(x.size() == y.size()); + assert(y.size() == z.size()); + + PyObject *xarray = detail::get_array(x); + PyObject *yarray = detail::get_array(y); + PyObject *zarray = detail::get_array(z); + + // construct positional args + PyObject *args = PyTuple_New(3); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + PyTuple_SetItem(args, 2, zarray); + + // Build up the kw args. + PyObject *kwargs = PyDict_New(); + + for (std::map::const_iterator it = keywords.begin(); + it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyString_FromString(it->second.c_str())); + } + + PyObject *fig = + PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, + detail::_interpreter::get().s_python_empty_tuple); + if (!fig) throw std::runtime_error("Call to figure() failed."); + + PyObject *gca_kwargs = PyDict_New(); + PyDict_SetItemString(gca_kwargs, "projection", PyString_FromString("3d")); + + PyObject *gca = PyObject_GetAttrString(fig, "gca"); + if (!gca) throw std::runtime_error("No gca"); + Py_INCREF(gca); + PyObject *axis = PyObject_Call( + gca, detail::_interpreter::get().s_python_empty_tuple, gca_kwargs); + + if (!axis) throw std::runtime_error("No axis"); + Py_INCREF(axis); + + Py_DECREF(gca); + Py_DECREF(gca_kwargs); + + PyObject *plot3 = PyObject_GetAttrString(axis, "plot"); + if (!plot3) throw std::runtime_error("No 3D line plot"); + Py_INCREF(plot3); + PyObject *res = PyObject_Call(plot3, args, kwargs); + if (!res) throw std::runtime_error("Failed 3D line plot"); + Py_DECREF(plot3); + + Py_DECREF(axis); + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); +} + +template +bool stem(const std::vector &x, const std::vector &y, const std::map& keywords) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = + keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call( + detail::_interpreter::get().s_python_function_stem, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) + Py_DECREF(res); + + return res; +} + +template< typename Numeric > +bool fill(const std::vector& x, const std::vector& y, const std::map& keywords) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, yarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_fill, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if (res) Py_DECREF(res); + + return res; +} + +template< typename Numeric > +bool fill_between(const std::vector& x, const std::vector& y1, const std::vector& y2, const std::map& keywords) +{ + assert(x.size() == y1.size()); + assert(x.size() == y2.size()); + + detail::_interpreter::get(); + + // using numpy arrays + PyObject* xarray = detail::get_array(x); + PyObject* y1array = detail::get_array(y1); + PyObject* y2array = detail::get_array(y2); + + // construct positional args + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, xarray); + PyTuple_SetItem(args, 1, y1array); + PyTuple_SetItem(args, 2, y2array); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_fill_between, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template +bool arrow(Numeric x, Numeric y, Numeric end_x, Numeric end_y, const std::string& fc = "r", + const std::string ec = "k", Numeric head_length = 0.25, Numeric head_width = 0.1625) { + PyObject* obj_x = PyFloat_FromDouble(x); + PyObject* obj_y = PyFloat_FromDouble(y); + PyObject* obj_end_x = PyFloat_FromDouble(end_x); + PyObject* obj_end_y = PyFloat_FromDouble(end_y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "fc", PyString_FromString(fc.c_str())); + PyDict_SetItemString(kwargs, "ec", PyString_FromString(ec.c_str())); + PyDict_SetItemString(kwargs, "head_width", PyFloat_FromDouble(head_width)); + PyDict_SetItemString(kwargs, "head_length", PyFloat_FromDouble(head_length)); + + PyObject* plot_args = PyTuple_New(4); + PyTuple_SetItem(plot_args, 0, obj_x); + PyTuple_SetItem(plot_args, 1, obj_y); + PyTuple_SetItem(plot_args, 2, obj_end_x); + PyTuple_SetItem(plot_args, 3, obj_end_y); + + PyObject* res = + PyObject_Call(detail::_interpreter::get().s_python_function_arrow, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if (res) + Py_DECREF(res); + + return res; +} + +template< typename Numeric> +bool hist(const std::vector& y, long bins=10,std::string color="b", + double alpha=1.0, bool cumulative=false) +{ + detail::_interpreter::get(); + + PyObject* yarray = detail::get_array(y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "bins", PyLong_FromLong(bins)); + PyDict_SetItemString(kwargs, "color", PyString_FromString(color.c_str())); + PyDict_SetItemString(kwargs, "alpha", PyFloat_FromDouble(alpha)); + PyDict_SetItemString(kwargs, "cumulative", cumulative ? Py_True : Py_False); + + PyObject* plot_args = PyTuple_New(1); + + PyTuple_SetItem(plot_args, 0, yarray); + + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_hist, plot_args, kwargs); + + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +#ifndef WITHOUT_NUMPY +namespace detail { + +inline void imshow(void *ptr, const NPY_TYPES type, const int rows, const int columns, const int colors, const std::map &keywords, PyObject** out) +{ + assert(type == NPY_UINT8 || type == NPY_FLOAT); + assert(colors == 1 || colors == 3 || colors == 4); + + detail::_interpreter::get(); + + // construct args + npy_intp dims[3] = { rows, columns, colors }; + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyArray_SimpleNewFromData(colors == 1 ? 2 : 3, dims, type, ptr)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject *res = PyObject_Call(detail::_interpreter::get().s_python_function_imshow, args, kwargs); + Py_DECREF(args); + Py_DECREF(kwargs); + if (!res) + throw std::runtime_error("Call to imshow() failed"); + if (out) + *out = res; + else + Py_DECREF(res); +} + +} // namespace detail + +inline void imshow(const unsigned char *ptr, const int rows, const int columns, const int colors, const std::map &keywords = {}, PyObject** out = nullptr) +{ + detail::imshow((void *) ptr, NPY_UINT8, rows, columns, colors, keywords, out); +} + +inline void imshow(const float *ptr, const int rows, const int columns, const int colors, const std::map &keywords = {}, PyObject** out = nullptr) +{ + detail::imshow((void *) ptr, NPY_FLOAT, rows, columns, colors, keywords, out); +} + +#ifdef WITH_OPENCV +void imshow(const cv::Mat &image, const std::map &keywords = {}) +{ + // Convert underlying type of matrix, if needed + cv::Mat image2; + NPY_TYPES npy_type = NPY_UINT8; + switch (image.type() & CV_MAT_DEPTH_MASK) { + case CV_8U: + image2 = image; + break; + case CV_32F: + image2 = image; + npy_type = NPY_FLOAT; + break; + default: + image.convertTo(image2, CV_MAKETYPE(CV_8U, image.channels())); + } + + // If color image, convert from BGR to RGB + switch (image2.channels()) { + case 3: + cv::cvtColor(image2, image2, CV_BGR2RGB); + break; + case 4: + cv::cvtColor(image2, image2, CV_BGRA2RGBA); + } + + detail::imshow(image2.data, npy_type, image2.rows, image2.cols, image2.channels(), keywords); +} +#endif // WITH_OPENCV +#endif // WITHOUT_NUMPY + +template +bool scatter(const std::vector& x, + const std::vector& y, + const double s=1.0, // The marker size in points**2 + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + assert(x.size() == y.size()); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "s", PyLong_FromLong(s)); + for (const auto& it : keywords) + { + PyDict_SetItemString(kwargs, it.first.c_str(), PyString_FromString(it.second.c_str())); + } + + PyObject* plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_scatter, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template +bool boxplot(const std::vector>& data, + const std::vector& labels = {}, + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* listlist = detail::get_listlist(data); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, listlist); + + PyObject* kwargs = PyDict_New(); + + // kwargs needs the labels, if there are (the correct number of) labels + if (!labels.empty() && labels.size() == data.size()) { + PyDict_SetItemString(kwargs, "labels", detail::get_array(labels)); + } + + // take care of the remaining keywords + for (const auto& it : keywords) + { + PyDict_SetItemString(kwargs, it.first.c_str(), PyString_FromString(it.second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_boxplot, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); + + return res; +} + +template +bool boxplot(const std::vector& data, + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* vector = detail::get_array(data); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, vector); + + PyObject* kwargs = PyDict_New(); + for (const auto& it : keywords) + { + PyDict_SetItemString(kwargs, it.first.c_str(), PyString_FromString(it.second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_boxplot, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); + + return res; +} + +template +bool bar(const std::vector & x, + const std::vector & y, + std::string ec = "black", + std::string ls = "-", + double lw = 1.0, + const std::map & keywords = {}) +{ + detail::_interpreter::get(); + + PyObject * xarray = detail::get_array(x); + PyObject * yarray = detail::get_array(y); + + PyObject * kwargs = PyDict_New(); + + PyDict_SetItemString(kwargs, "ec", PyString_FromString(ec.c_str())); + PyDict_SetItemString(kwargs, "ls", PyString_FromString(ls.c_str())); + PyDict_SetItemString(kwargs, "lw", PyFloat_FromDouble(lw)); + + for (std::map::const_iterator it = + keywords.begin(); + it != keywords.end(); + ++it) { + PyDict_SetItemString( + kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject * plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject * res = PyObject_Call( + detail::_interpreter::get().s_python_function_bar, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); + + return res; +} + +template +bool bar(const std::vector & y, + std::string ec = "black", + std::string ls = "-", + double lw = 1.0, + const std::map & keywords = {}) +{ + using T = typename std::remove_reference::type::value_type; + + detail::_interpreter::get(); + + std::vector x; + for (std::size_t i = 0; i < y.size(); i++) { x.push_back(i); } + + return bar(x, y, ec, ls, lw, keywords); +} + +inline bool subplots_adjust(const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = + keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), + PyFloat_FromDouble(it->second)); + } + + + PyObject* plot_args = PyTuple_New(0); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_subplots_adjust, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template< typename Numeric> +bool named_hist(std::string label,const std::vector& y, long bins=10, std::string color="b", double alpha=1.0) +{ + detail::_interpreter::get(); + + PyObject* yarray = detail::get_array(y); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(label.c_str())); + PyDict_SetItemString(kwargs, "bins", PyLong_FromLong(bins)); + PyDict_SetItemString(kwargs, "color", PyString_FromString(color.c_str())); + PyDict_SetItemString(kwargs, "alpha", PyFloat_FromDouble(alpha)); + + + PyObject* plot_args = PyTuple_New(1); + PyTuple_SetItem(plot_args, 0, yarray); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_hist, plot_args, kwargs); + + Py_DECREF(plot_args); + Py_DECREF(kwargs); + if(res) Py_DECREF(res); + + return res; +} + +template +bool plot(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_plot, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool contour(const std::vector& x, const std::vector& y, + const std::vector& z, + const std::map& keywords = {}) { + assert(x.size() == y.size() && x.size() == z.size()); + + PyObject* xarray = get_array(x); + PyObject* yarray = get_array(y); + PyObject* zarray = get_array(z); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, zarray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = keywords.begin(); + it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = + PyObject_Call(detail::_interpreter::get().s_python_function_contour, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) + Py_DECREF(res); + + return res; +} + +template +bool quiver(const std::vector& x, const std::vector& y, const std::vector& u, const std::vector& w, const std::map& keywords = {}) +{ + assert(x.size() == y.size() && x.size() == u.size() && u.size() == w.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + PyObject* uarray = detail::get_array(u); + PyObject* warray = detail::get_array(w); + + PyObject* plot_args = PyTuple_New(4); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, uarray); + PyTuple_SetItem(plot_args, 3, warray); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call( + detail::_interpreter::get().s_python_function_quiver, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) + Py_DECREF(res); + + return res; +} + +template +bool stem(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_stem, plot_args); + + Py_DECREF(plot_args); + if (res) + Py_DECREF(res); + + return res; +} + +template +bool semilogx(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_semilogx, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool semilogy(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_semilogy, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool loglog(const std::vector& x, const std::vector& y, const std::string& s = "") +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(s.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_loglog, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; +} + +template +bool errorbar(const std::vector &x, const std::vector &y, const std::vector &yerr, const std::map &keywords = {}) +{ + assert(x.size() == y.size()); + + detail::_interpreter::get(); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + PyObject* yerrarray = detail::get_array(yerr); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyDict_SetItemString(kwargs, "yerr", yerrarray); + + PyObject *plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject *res = PyObject_Call(detail::_interpreter::get().s_python_function_errorbar, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + + if (res) + Py_DECREF(res); + else + throw std::runtime_error("Call to errorbar() failed."); + + return res; +} + +template +bool named_plot(const std::string& name, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(2); + + PyTuple_SetItem(plot_args, 0, yarray); + PyTuple_SetItem(plot_args, 1, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_plot(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_semilogx(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_semilogx, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_semilogy(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_semilogy, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool named_loglog(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") +{ + detail::_interpreter::get(); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_loglog, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + if (res) Py_DECREF(res); + + return res; +} + +template +bool plot(const std::vector& y, const std::string& format = "") +{ + std::vector x(y.size()); + for(size_t i=0; i +bool plot(const std::vector& y, const std::map& keywords) +{ + std::vector x(y.size()); + for(size_t i=0; i +bool stem(const std::vector& y, const std::string& format = "") +{ + std::vector x(y.size()); + for (size_t i = 0; i < x.size(); ++i) x.at(i) = i; + return stem(x, y, format); +} + +template +void text(Numeric x, Numeric y, const std::string& s = "") +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(x)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(y)); + PyTuple_SetItem(args, 2, PyString_FromString(s.c_str())); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_text, args); + if(!res) throw std::runtime_error("Call to text() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void colorbar(PyObject* mappable = NULL, const std::map& keywords = {}) +{ + if (mappable == NULL) + throw std::runtime_error("Must call colorbar with PyObject* returned from an image, contour, surface, etc."); + + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, mappable); + + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyFloat_FromDouble(it->second)); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_colorbar, args, kwargs); + if(!res) throw std::runtime_error("Call to colorbar() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + + +inline long figure(long number = -1) +{ + detail::_interpreter::get(); + + PyObject *res; + if (number == -1) + res = PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, detail::_interpreter::get().s_python_empty_tuple); + else { + assert(number > 0); + + // Make sure interpreter is initialised + detail::_interpreter::get(); + + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyLong_FromLong(number)); + res = PyObject_CallObject(detail::_interpreter::get().s_python_function_figure, args); + Py_DECREF(args); + } + + if(!res) throw std::runtime_error("Call to figure() failed."); + + PyObject* num = PyObject_GetAttrString(res, "number"); + if (!num) throw std::runtime_error("Could not get number attribute of figure object"); + const long figureNumber = PyLong_AsLong(num); + + Py_DECREF(num); + Py_DECREF(res); + + return figureNumber; +} + +inline bool fignum_exists(long number) +{ + detail::_interpreter::get(); + + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyLong_FromLong(number)); + PyObject *res = PyObject_CallObject(detail::_interpreter::get().s_python_function_fignum_exists, args); + if(!res) throw std::runtime_error("Call to fignum_exists() failed."); + + bool ret = PyObject_IsTrue(res); + Py_DECREF(res); + Py_DECREF(args); + + return ret; +} + +inline void figure_size(size_t w, size_t h) +{ + detail::_interpreter::get(); + + const size_t dpi = 100; + PyObject* size = PyTuple_New(2); + PyTuple_SetItem(size, 0, PyFloat_FromDouble((double)w / dpi)); + PyTuple_SetItem(size, 1, PyFloat_FromDouble((double)h / dpi)); + + PyObject* kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "figsize", size); + PyDict_SetItemString(kwargs, "dpi", PyLong_FromSize_t(dpi)); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_figure, + detail::_interpreter::get().s_python_empty_tuple, kwargs); + + Py_DECREF(kwargs); + + if(!res) throw std::runtime_error("Call to figure_size() failed."); + Py_DECREF(res); +} + +inline void legend() +{ + detail::_interpreter::get(); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_legend, detail::_interpreter::get().s_python_empty_tuple); + if(!res) throw std::runtime_error("Call to legend() failed."); + + Py_DECREF(res); +} + +inline void legend(const std::map& keywords) +{ + detail::_interpreter::get(); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_legend, detail::_interpreter::get().s_python_empty_tuple, kwargs); + if(!res) throw std::runtime_error("Call to legend() failed."); + + Py_DECREF(kwargs); + Py_DECREF(res); +} + +template +void ylim(Numeric left, Numeric right) +{ + detail::_interpreter::get(); + + PyObject* list = PyList_New(2); + PyList_SetItem(list, 0, PyFloat_FromDouble(left)); + PyList_SetItem(list, 1, PyFloat_FromDouble(right)); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, list); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_ylim, args); + if(!res) throw std::runtime_error("Call to ylim() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +template +void xlim(Numeric left, Numeric right) +{ + detail::_interpreter::get(); + + PyObject* list = PyList_New(2); + PyList_SetItem(list, 0, PyFloat_FromDouble(left)); + PyList_SetItem(list, 1, PyFloat_FromDouble(right)); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, list); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_xlim, args); + if(!res) throw std::runtime_error("Call to xlim() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + + +inline double* xlim() +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(0); + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_xlim, args); + PyObject* left = PyTuple_GetItem(res,0); + PyObject* right = PyTuple_GetItem(res,1); + + double* arr = new double[2]; + arr[0] = PyFloat_AsDouble(left); + arr[1] = PyFloat_AsDouble(right); + + if(!res) throw std::runtime_error("Call to xlim() failed."); + + Py_DECREF(res); + return arr; +} + + +inline double* ylim() +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(0); + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_ylim, args); + PyObject* left = PyTuple_GetItem(res,0); + PyObject* right = PyTuple_GetItem(res,1); + + double* arr = new double[2]; + arr[0] = PyFloat_AsDouble(left); + arr[1] = PyFloat_AsDouble(right); + + if(!res) throw std::runtime_error("Call to ylim() failed."); + + Py_DECREF(res); + return arr; +} + +template +inline void xticks(const std::vector &ticks, const std::vector &labels = {}, const std::map& keywords = {}) +{ + assert(labels.size() == 0 || ticks.size() == labels.size()); + + detail::_interpreter::get(); + + // using numpy array + PyObject* ticksarray = detail::get_array(ticks); + + PyObject* args; + if(labels.size() == 0) { + // construct positional args + args = PyTuple_New(1); + PyTuple_SetItem(args, 0, ticksarray); + } else { + // make tuple of tick labels + PyObject* labelstuple = PyTuple_New(labels.size()); + for (size_t i = 0; i < labels.size(); i++) + PyTuple_SetItem(labelstuple, i, PyUnicode_FromString(labels[i].c_str())); + + // construct positional args + args = PyTuple_New(2); + PyTuple_SetItem(args, 0, ticksarray); + PyTuple_SetItem(args, 1, labelstuple); + } + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_xticks, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(!res) throw std::runtime_error("Call to xticks() failed"); + + Py_DECREF(res); +} + +template +inline void xticks(const std::vector &ticks, const std::map& keywords) +{ + xticks(ticks, {}, keywords); +} + +template +inline void yticks(const std::vector &ticks, const std::vector &labels = {}, const std::map& keywords = {}) +{ + assert(labels.size() == 0 || ticks.size() == labels.size()); + + detail::_interpreter::get(); + + // using numpy array + PyObject* ticksarray = detail::get_array(ticks); + + PyObject* args; + if(labels.size() == 0) { + // construct positional args + args = PyTuple_New(1); + PyTuple_SetItem(args, 0, ticksarray); + } else { + // make tuple of tick labels + PyObject* labelstuple = PyTuple_New(labels.size()); + for (size_t i = 0; i < labels.size(); i++) + PyTuple_SetItem(labelstuple, i, PyUnicode_FromString(labels[i].c_str())); + + // construct positional args + args = PyTuple_New(2); + PyTuple_SetItem(args, 0, ticksarray); + PyTuple_SetItem(args, 1, labelstuple); + } + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_yticks, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if(!res) throw std::runtime_error("Call to yticks() failed"); + + Py_DECREF(res); +} + +template +inline void yticks(const std::vector &ticks, const std::map& keywords) +{ + yticks(ticks, {}, keywords); +} + +template inline void margins(Numeric margin) +{ + // construct positional args + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(margin)); + + PyObject* res = + PyObject_CallObject(detail::_interpreter::get().s_python_function_margins, args); + if (!res) + throw std::runtime_error("Call to margins() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +template inline void margins(Numeric margin_x, Numeric margin_y) +{ + // construct positional args + PyObject* args = PyTuple_New(2); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(margin_x)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(margin_y)); + + PyObject* res = + PyObject_CallObject(detail::_interpreter::get().s_python_function_margins, args); + if (!res) + throw std::runtime_error("Call to margins() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + + +inline void tick_params(const std::map& keywords, const std::string axis = "both") +{ + detail::_interpreter::get(); + + // construct positional args + PyObject* args; + args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyString_FromString(axis.c_str())); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for (std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_tick_params, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + if (!res) throw std::runtime_error("Call to tick_params() failed"); + + Py_DECREF(res); +} + +inline void subplot(long nrows, long ncols, long plot_number) +{ + detail::_interpreter::get(); + + // construct positional args + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(nrows)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(ncols)); + PyTuple_SetItem(args, 2, PyFloat_FromDouble(plot_number)); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_subplot, args); + if(!res) throw std::runtime_error("Call to subplot() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void subplot2grid(long nrows, long ncols, long rowid=0, long colid=0, long rowspan=1, long colspan=1) +{ + detail::_interpreter::get(); + + PyObject* shape = PyTuple_New(2); + PyTuple_SetItem(shape, 0, PyLong_FromLong(nrows)); + PyTuple_SetItem(shape, 1, PyLong_FromLong(ncols)); + + PyObject* loc = PyTuple_New(2); + PyTuple_SetItem(loc, 0, PyLong_FromLong(rowid)); + PyTuple_SetItem(loc, 1, PyLong_FromLong(colid)); + + PyObject* args = PyTuple_New(4); + PyTuple_SetItem(args, 0, shape); + PyTuple_SetItem(args, 1, loc); + PyTuple_SetItem(args, 2, PyLong_FromLong(rowspan)); + PyTuple_SetItem(args, 3, PyLong_FromLong(colspan)); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_subplot2grid, args); + if(!res) throw std::runtime_error("Call to subplot2grid() failed."); + + Py_DECREF(shape); + Py_DECREF(loc); + Py_DECREF(args); + Py_DECREF(res); +} + +inline void title(const std::string &titlestr, const std::map &keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pytitlestr = PyString_FromString(titlestr.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pytitlestr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_title, args, kwargs); + if(!res) throw std::runtime_error("Call to title() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void suptitle(const std::string &suptitlestr, const std::map &keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pysuptitlestr = PyString_FromString(suptitlestr.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pysuptitlestr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_suptitle, args, kwargs); + if(!res) throw std::runtime_error("Call to suptitle() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void axis(const std::string &axisstr) +{ + detail::_interpreter::get(); + + PyObject* str = PyString_FromString(axisstr.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, str); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_axis, args); + if(!res) throw std::runtime_error("Call to title() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void axvline(double x, double ymin = 0., double ymax = 1., const std::map& keywords = std::map()) +{ + detail::_interpreter::get(); + + // construct positional args + PyObject* args = PyTuple_New(3); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(x)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(ymin)); + PyTuple_SetItem(args, 2, PyFloat_FromDouble(ymax)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_axvline, args, kwargs); + + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); +} + +inline void axvspan(double xmin, double xmax, double ymin = 0., double ymax = 1., const std::map& keywords = std::map()) +{ + // construct positional args + PyObject* args = PyTuple_New(4); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(xmin)); + PyTuple_SetItem(args, 1, PyFloat_FromDouble(xmax)); + PyTuple_SetItem(args, 2, PyFloat_FromDouble(ymin)); + PyTuple_SetItem(args, 3, PyFloat_FromDouble(ymax)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + if (it->first == "linewidth" || it->first == "alpha") + PyDict_SetItemString(kwargs, it->first.c_str(), PyFloat_FromDouble(std::stod(it->second))); + else + PyDict_SetItemString(kwargs, it->first.c_str(), PyString_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_axvspan, args, kwargs); + Py_DECREF(args); + Py_DECREF(kwargs); + + if(res) Py_DECREF(res); +} + +inline void xlabel(const std::string &str, const std::map &keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pystr = PyString_FromString(str.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pystr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_xlabel, args, kwargs); + if(!res) throw std::runtime_error("Call to xlabel() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void ylabel(const std::string &str, const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + PyObject* pystr = PyString_FromString(str.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pystr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_ylabel, args, kwargs); + if(!res) throw std::runtime_error("Call to ylabel() failed."); + + Py_DECREF(args); + Py_DECREF(kwargs); + Py_DECREF(res); +} + +inline void set_zlabel(const std::string &str, const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + // Same as with plot_surface: We lazily load the modules here the first time + // this function is called because I'm not sure that we can assume "matplotlib + // installed" implies "mpl_toolkits installed" on all platforms, and we don't + // want to require it for people who don't need 3d plots. + static PyObject *mpl_toolkitsmod = nullptr, *axis3dmod = nullptr; + if (!mpl_toolkitsmod) { + PyObject* mpl_toolkits = PyString_FromString("mpl_toolkits"); + PyObject* axis3d = PyString_FromString("mpl_toolkits.mplot3d"); + if (!mpl_toolkits || !axis3d) { throw std::runtime_error("couldnt create string"); } + + mpl_toolkitsmod = PyImport_Import(mpl_toolkits); + Py_DECREF(mpl_toolkits); + if (!mpl_toolkitsmod) { throw std::runtime_error("Error loading module mpl_toolkits!"); } + + axis3dmod = PyImport_Import(axis3d); + Py_DECREF(axis3d); + if (!axis3dmod) { throw std::runtime_error("Error loading module mpl_toolkits.mplot3d!"); } + } + + PyObject* pystr = PyString_FromString(str.c_str()); + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pystr); + + PyObject* kwargs = PyDict_New(); + for (auto it = keywords.begin(); it != keywords.end(); ++it) { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject *ax = + PyObject_CallObject(detail::_interpreter::get().s_python_function_gca, + detail::_interpreter::get().s_python_empty_tuple); + if (!ax) throw std::runtime_error("Call to gca() failed."); + Py_INCREF(ax); + + PyObject *zlabel = PyObject_GetAttrString(ax, "set_zlabel"); + if (!zlabel) throw std::runtime_error("Attribute set_zlabel not found."); + Py_INCREF(zlabel); + + PyObject *res = PyObject_Call(zlabel, args, kwargs); + if (!res) throw std::runtime_error("Call to set_zlabel() failed."); + Py_DECREF(zlabel); + + Py_DECREF(ax); + Py_DECREF(args); + Py_DECREF(kwargs); + if (res) Py_DECREF(res); +} + +inline void grid(bool flag) +{ + detail::_interpreter::get(); + + PyObject* pyflag = flag ? Py_True : Py_False; + Py_INCREF(pyflag); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pyflag); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_grid, args); + if(!res) throw std::runtime_error("Call to grid() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void show(const bool block = true) +{ + detail::_interpreter::get(); + + PyObject* res; + if(block) + { + res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_show, + detail::_interpreter::get().s_python_empty_tuple); + } + else + { + PyObject *kwargs = PyDict_New(); + PyDict_SetItemString(kwargs, "block", Py_False); + res = PyObject_Call( detail::_interpreter::get().s_python_function_show, detail::_interpreter::get().s_python_empty_tuple, kwargs); + Py_DECREF(kwargs); + } + + + if (!res) throw std::runtime_error("Call to show() failed."); + + Py_DECREF(res); +} + +inline void close() +{ + detail::_interpreter::get(); + + PyObject* res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_close, + detail::_interpreter::get().s_python_empty_tuple); + + if (!res) throw std::runtime_error("Call to close() failed."); + + Py_DECREF(res); +} + +inline void xkcd() { + detail::_interpreter::get(); + + PyObject* res; + PyObject *kwargs = PyDict_New(); + + res = PyObject_Call(detail::_interpreter::get().s_python_function_xkcd, + detail::_interpreter::get().s_python_empty_tuple, kwargs); + + Py_DECREF(kwargs); + + if (!res) + throw std::runtime_error("Call to show() failed."); + + Py_DECREF(res); +} + +inline void draw() +{ + detail::_interpreter::get(); + + PyObject* res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_draw, + detail::_interpreter::get().s_python_empty_tuple); + + if (!res) throw std::runtime_error("Call to draw() failed."); + + Py_DECREF(res); +} + +template +inline void pause(Numeric interval) +{ + detail::_interpreter::get(); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyFloat_FromDouble(interval)); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_pause, args); + if(!res) throw std::runtime_error("Call to pause() failed."); + + Py_DECREF(args); + Py_DECREF(res); +} + +inline void save(const std::string& filename) +{ + detail::_interpreter::get(); + + PyObject* pyfilename = PyString_FromString(filename.c_str()); + + PyObject* args = PyTuple_New(1); + PyTuple_SetItem(args, 0, pyfilename); + std::cout<<"args:"<> ginput(const int numClicks = 1, const std::map& keywords = {}) +{ + detail::_interpreter::get(); + + PyObject *args = PyTuple_New(1); + PyTuple_SetItem(args, 0, PyLong_FromLong(numClicks)); + + // construct keyword args + PyObject* kwargs = PyDict_New(); + for(std::map::const_iterator it = keywords.begin(); it != keywords.end(); ++it) + { + PyDict_SetItemString(kwargs, it->first.c_str(), PyUnicode_FromString(it->second.c_str())); + } + + PyObject* res = PyObject_Call( + detail::_interpreter::get().s_python_function_ginput, args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(args); + if (!res) throw std::runtime_error("Call to ginput() failed."); + + const size_t len = PyList_Size(res); + std::vector> out; + out.reserve(len); + for (size_t i = 0; i < len; i++) { + PyObject *current = PyList_GetItem(res, i); + std::array position; + position[0] = PyFloat_AsDouble(PyTuple_GetItem(current, 0)); + position[1] = PyFloat_AsDouble(PyTuple_GetItem(current, 1)); + out.push_back(position); + } + Py_DECREF(res); + + return out; +} + +// Actually, is there any reason not to call this automatically for every plot? +inline void tight_layout() { + detail::_interpreter::get(); + + PyObject *res = PyObject_CallObject( + detail::_interpreter::get().s_python_function_tight_layout, + detail::_interpreter::get().s_python_empty_tuple); + + if (!res) throw std::runtime_error("Call to tight_layout() failed."); + + Py_DECREF(res); +} + +// Support for variadic plot() and initializer lists: + +namespace detail { + +template +using is_function = typename std::is_function>>::type; + +template +struct is_callable_impl; + +template +struct is_callable_impl +{ + typedef is_function type; +}; // a non-object is callable iff it is a function + +template +struct is_callable_impl +{ + struct Fallback { void operator()(); }; + struct Derived : T, Fallback { }; + + template struct Check; + + template + static std::true_type test( ... ); // use a variadic function to make sure (1) it accepts everything and (2) its always the worst match + + template + static std::false_type test( Check* ); + +public: + typedef decltype(test(nullptr)) type; + typedef decltype(&Fallback::operator()) dtype; + static constexpr bool value = type::value; +}; // an object is callable iff it defines operator() + +template +struct is_callable +{ + // dispatch to is_callable_impl or is_callable_impl depending on whether T is of class type or not + typedef typename is_callable_impl::value, T>::type type; +}; + +template +struct plot_impl { }; + +template<> +struct plot_impl +{ + template + bool operator()(const IterableX& x, const IterableY& y, const std::string& format) + { + // 2-phase lookup for distance, begin, end + using std::distance; + using std::begin; + using std::end; + + auto xs = distance(begin(x), end(x)); + auto ys = distance(begin(y), end(y)); + assert(xs == ys && "x and y data must have the same number of elements!"); + + PyObject* xlist = PyList_New(xs); + PyObject* ylist = PyList_New(ys); + PyObject* pystring = PyString_FromString(format.c_str()); + + auto itx = begin(x), ity = begin(y); + for(size_t i = 0; i < xs; ++i) { + PyList_SetItem(xlist, i, PyFloat_FromDouble(*itx++)); + PyList_SetItem(ylist, i, PyFloat_FromDouble(*ity++)); + } + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xlist); + PyTuple_SetItem(plot_args, 1, ylist); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_plot, plot_args); + + Py_DECREF(plot_args); + if(res) Py_DECREF(res); + + return res; + } +}; + +template<> +struct plot_impl +{ + template + bool operator()(const Iterable& ticks, const Callable& f, const std::string& format) + { + if(begin(ticks) == end(ticks)) return true; + + // We could use additional meta-programming to deduce the correct element type of y, + // but all values have to be convertible to double anyways + std::vector y; + for(auto x : ticks) y.push_back(f(x)); + return plot_impl()(ticks,y,format); + } +}; + +} // end namespace detail + +// recursion stop for the above +template +bool plot() { return true; } + +template +bool plot(const A& a, const B& b, const std::string& format, Args... args) +{ + return detail::plot_impl::type>()(a,b,format) && plot(args...); +} + +/* + * This group of plot() functions is needed to support initializer lists, i.e. calling + * plot( {1,2,3,4} ) + */ +inline bool plot(const std::vector& x, const std::vector& y, const std::string& format = "") { + return plot(x,y,format); +} + +inline bool plot(const std::vector& y, const std::string& format = "") { + return plot(y,format); +} + +inline bool plot(const std::vector& x, const std::vector& y, const std::map& keywords) { + return plot(x,y,keywords); +} + +/* + * This class allows dynamic plots, ie changing the plotted data without clearing and re-plotting + */ +class Plot +{ +public: + // default initialization with plot label, some data and format + template + Plot(const std::string& name, const std::vector& x, const std::vector& y, const std::string& format = "") { + detail::_interpreter::get(); + + assert(x.size() == y.size()); + + PyObject* kwargs = PyDict_New(); + if(name != "") + PyDict_SetItemString(kwargs, "label", PyString_FromString(name.c_str())); + + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* pystring = PyString_FromString(format.c_str()); + + PyObject* plot_args = PyTuple_New(3); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + PyTuple_SetItem(plot_args, 2, pystring); + + PyObject* res = PyObject_Call(detail::_interpreter::get().s_python_function_plot, plot_args, kwargs); + + Py_DECREF(kwargs); + Py_DECREF(plot_args); + + if(res) + { + line= PyList_GetItem(res, 0); + + if(line) + set_data_fct = PyObject_GetAttrString(line,"set_data"); + else + Py_DECREF(line); + Py_DECREF(res); + } + } + + // shorter initialization with name or format only + // basically calls line, = plot([], []) + Plot(const std::string& name = "", const std::string& format = "") + : Plot(name, std::vector(), std::vector(), format) {} + + template + bool update(const std::vector& x, const std::vector& y) { + assert(x.size() == y.size()); + if(set_data_fct) + { + PyObject* xarray = detail::get_array(x); + PyObject* yarray = detail::get_array(y); + + PyObject* plot_args = PyTuple_New(2); + PyTuple_SetItem(plot_args, 0, xarray); + PyTuple_SetItem(plot_args, 1, yarray); + + PyObject* res = PyObject_CallObject(set_data_fct, plot_args); + if (res) Py_DECREF(res); + return res; + } + return false; + } + + // clears the plot but keep it available + bool clear() { + return update(std::vector(), std::vector()); + } + + // definitely remove this line + void remove() { + if(line) + { + auto remove_fct = PyObject_GetAttrString(line,"remove"); + PyObject* args = PyTuple_New(0); + PyObject* res = PyObject_CallObject(remove_fct, args); + if (res) Py_DECREF(res); + } + decref(); + } + + ~Plot() { + decref(); + } +private: + + void decref() { + if(line) + Py_DECREF(line); + if(set_data_fct) + Py_DECREF(set_data_fct); + } + + + PyObject* line = nullptr; + PyObject* set_data_fct = nullptr; +}; + +} // end namespace matplotlibcpp diff --git a/src/rm_localization/point_lio/include/so3_math.h b/src/rm_localization/point_lio/include/so3_math.h new file mode 100755 index 0000000..f91d8a6 --- /dev/null +++ b/src/rm_localization/point_lio/include/so3_math.h @@ -0,0 +1,128 @@ +#ifndef SO3_MATH_H +#define SO3_MATH_H + +#include +#include + +// #include + +#define SKEW_SYM_MATRX(v) 0.0,-v[2],v[1],v[2],0.0,-v[0],-v[1],v[0],0.0 + +template +Eigen::Matrix skew_sym_mat(const Eigen::Matrix &v) +{ + Eigen::Matrix skew_sym_mat; + skew_sym_mat<<0.0,-v[2],v[1],v[2],0.0,-v[0],-v[1],v[0],0.0; + return skew_sym_mat; +} + +template +Eigen::Matrix Exp(const Eigen::Matrix &ang) +{ + T ang_norm = ang.norm(); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + if (ang_norm > 0.0000001) + { + Eigen::Matrix r_axis = ang / ang_norm; + Eigen::Matrix K; + K << SKEW_SYM_MATRX(r_axis); + /// Roderigous Tranformation + return Eye3 + std::sin(ang_norm) * K + (1.0 - std::cos(ang_norm)) * K * K; + } + else + { + return Eye3; + } +} + +template +Eigen::Matrix Exp(const Eigen::Matrix &ang_vel, const Ts &dt) +{ + T ang_vel_norm = ang_vel.norm(); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + + if (ang_vel_norm > 0.0000001) + { + Eigen::Matrix r_axis = ang_vel / ang_vel_norm; + Eigen::Matrix K; + + K << SKEW_SYM_MATRX(r_axis); + + T r_ang = ang_vel_norm * dt; + + /// Roderigous Tranformation + return Eye3 + std::sin(r_ang) * K + (1.0 - std::cos(r_ang)) * K * K; + } + else + { + return Eye3; + } +} + +template +Eigen::Matrix Exp(const T &v1, const T &v2, const T &v3) +{ + T &&norm = sqrt(v1 * v1 + v2 * v2 + v3 * v3); + Eigen::Matrix Eye3 = Eigen::Matrix::Identity(); + if (norm > 0.00001) + { + T r_ang[3] = {v1 / norm, v2 / norm, v3 / norm}; + Eigen::Matrix K; + K << SKEW_SYM_MATRX(r_ang); + + /// Roderigous Tranformation + return Eye3 + std::sin(norm) * K + (1.0 - std::cos(norm)) * K * K; + } + else + { + return Eye3; + } +} + +/* Logrithm of a Rotation Matrix */ +template +Eigen::Matrix Log(const Eigen::Matrix R) +{ + T theta = (R.trace() > 3.0 - 1e-6) ? 0.0 : std::acos(0.5 * (R.trace() - 1)); + Eigen::Matrix K(R(2,1) - R(1,2), R(0,2) - R(2,0), R(1,0) - R(0,1)); + return (std::abs(theta) < 0.001) ? (0.5 * K) : (0.5 * theta / std::sin(theta) * K); +} + +template +Eigen::Matrix RotMtoEuler(const Eigen::Matrix &rot) +{ + T sy = sqrt(rot(0,0)*rot(0,0) + rot(1,0)*rot(1,0)); + bool singular = sy < 1e-6; + T x, y, z; + if(!singular) + { + x = atan2(rot(2, 1), rot(2, 2)); + y = atan2(-rot(2, 0), sy); + z = atan2(rot(1, 0), rot(0, 0)); + } + else + { + x = atan2(-rot(1, 2), rot(1, 1)); + y = atan2(-rot(2, 0), sy); + z = 0; + } + Eigen::Matrix ang(x, y, z); + return ang; +} + +template +Eigen::Matrix3d Jacob_right_inv(Eigen::Vector3d &vec){ + Eigen::Matrix3d hat_v, res; + hat_v << SKEW_SYM_MATRX(vec); + if(vec.norm() > 1e-6) + { + res = Eigen::Matrix::Identity() + 0.5 * hat_v + (1 - vec.norm() * std::cos(vec.norm() / 2) / 2 / std::sin(vec.norm() / 2)) * hat_v * hat_v / vec.squaredNorm(); + } + else + { + res = Eigen::Matrix::Identity(); + } + return res; +} + +#endif diff --git a/src/rm_localization/point_lio/launch/gdb_debug_example.launch.py b/src/rm_localization/point_lio/launch/gdb_debug_example.launch.py new file mode 100755 index 0000000..a452b76 --- /dev/null +++ b/src/rm_localization/point_lio/launch/gdb_debug_example.launch.py @@ -0,0 +1,68 @@ +from launch import LaunchDescription +from launch.actions import GroupAction, DeclareLaunchArgument +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare + + +def generate_launch_description(): + # Declare the RViz argument + rviz_arg = DeclareLaunchArgument( + 'rviz', default_value='true', + description='Flag to launch RViz.') + + # Node parameters, including those from the YAML configuration file + laser_mapping_params = [ + { + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': True, + 'init_map_size': 10, + 'point_filter_num': 1, # Options: 1, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.3, # Options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.2, # Options: 0.5, 0.3, 0.15, 0.1 + 'cube_side_length': 1000.0, # Option: 1000, 2000 + 'runtime_pos_log_enable': False # Option: True + }, + # PathJoinSubstitution([ + # FindPackageShare('point_lio'), + # 'config', 'horizon.yaml' + # ]) + ] + + # Node definition for laserMapping with Point-LIO + laser_mapping_node = Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=laser_mapping_params, + prefix='gdb -ex run --args' + ) + + # Conditional RViz node launch + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz', + arguments=['-d', PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'rviz_cfg', 'loam_livox.rviz' + ])], + condition=IfCondition(LaunchConfiguration('rviz')), + prefix='nice' + ) + + # Assemble the launch description + ld = LaunchDescription([ + rviz_arg, + laser_mapping_node, + GroupAction( + actions=[rviz_node], + condition=IfCondition(LaunchConfiguration('rviz')) + ), + ]) + + return ld diff --git a/src/rm_localization/point_lio/launch/mapping_avia.launch.py b/src/rm_localization/point_lio/launch/mapping_avia.launch.py new file mode 100755 index 0000000..322f7be --- /dev/null +++ b/src/rm_localization/point_lio/launch/mapping_avia.launch.py @@ -0,0 +1,68 @@ +from launch import LaunchDescription +from launch.actions import GroupAction, DeclareLaunchArgument +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare + + +def generate_launch_description(): + # Declare the RViz argument + rviz_arg = DeclareLaunchArgument( + 'rviz', default_value='true', + description='Flag to launch RViz.') + + # Node parameters, including those from the YAML configuration file + laser_mapping_params = [ + PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'config', 'avia.yaml' + ]), + { + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': True, + 'init_map_size': 10, + 'point_filter_num': 1, # options: 4, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.3, # options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.2, # options: 0.5, 0.3, 0.15, 0.1 + 'ivox_nearby_type': 6, # Options: 0.5, 0.3, 0.15, 0.1 + 'runtime_pos_log_enable': False, # option: True + }, + ] + + # Node definition for laserMapping with Point-LIO + laser_mapping_node = Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=laser_mapping_params, + # prefix='gdb -ex run --args' + ) + + # Conditional RViz node launch + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz', + arguments=['-d', PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'rviz_cfg', 'loam_livox.rviz' + ])], + condition=IfCondition(LaunchConfiguration('rviz')), + prefix='nice' + ) + + # Assemble the launch description + ld = LaunchDescription([ + rviz_arg, + laser_mapping_node, + GroupAction( + actions=[rviz_node], + condition=IfCondition(LaunchConfiguration('rviz')) + ), + ]) + + return ld diff --git a/src/rm_localization/point_lio/launch/mapping_horizon.launch.py b/src/rm_localization/point_lio/launch/mapping_horizon.launch.py new file mode 100755 index 0000000..bee1cbc --- /dev/null +++ b/src/rm_localization/point_lio/launch/mapping_horizon.launch.py @@ -0,0 +1,68 @@ +from launch import LaunchDescription +from launch.actions import GroupAction, DeclareLaunchArgument +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare + + +def generate_launch_description(): + # Declare the RViz argument + rviz_arg = DeclareLaunchArgument( + 'rviz', default_value='true', + description='Flag to launch RViz.') + + # Node parameters, including those from the YAML configuration file + laser_mapping_params = [ + PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'config', 'horizon.yaml' + ]), + { + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': True, + 'init_map_size': 10, + 'point_filter_num': 3, # Options: 1, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.5, # Options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.5, # Options: 0.5, 0.3, 0.15, 0.1 + 'ivox_nearby_type': 6, # Options: 0.5, 0.3, 0.15, 0.1 + 'runtime_pos_log_enable': False, # Option: True + } + ] + + # Node definition for laserMapping with Point-LIO + laser_mapping_node = Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=laser_mapping_params, + # prefix='gdb -ex run --args' + ) + + # Conditional RViz node launch + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz', + arguments=['-d', PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'rviz_cfg', 'loam_livox.rviz' + ])], + condition=IfCondition(LaunchConfiguration('rviz')), + prefix='nice' + ) + + # Assemble the launch description + ld = LaunchDescription([ + rviz_arg, + laser_mapping_node, + GroupAction( + actions=[rviz_node], + condition=IfCondition(LaunchConfiguration('rviz')) + ), + ]) + + return ld diff --git a/src/rm_localization/point_lio/launch/mapping_mid360.launch.py b/src/rm_localization/point_lio/launch/mapping_mid360.launch.py new file mode 100755 index 0000000..d8d2a8b --- /dev/null +++ b/src/rm_localization/point_lio/launch/mapping_mid360.launch.py @@ -0,0 +1,68 @@ +from launch import LaunchDescription +from launch.actions import GroupAction, DeclareLaunchArgument +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare + + +def generate_launch_description(): + # Declare the RViz argument + rviz_arg = DeclareLaunchArgument( + 'rviz', default_value='true', + description='Flag to launch RViz.') + + # Node parameters, including those from the YAML configuration file + laser_mapping_params = [ + PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'config', 'mid360.yaml' + ]), + { + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': True, + 'init_map_size': 10, + 'point_filter_num': 3, # Options: 1, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.5, # Options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.5, # Options: 0.5, 0.3, 0.15, 0.1 + 'ivox_nearby_type': 6, # Options: 0, 6, 18, 26 + 'runtime_pos_log_enable': False, # Option: True + } + ] + + # Node definition for laserMapping with Point-LIO + laser_mapping_node = Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=laser_mapping_params, + # prefix='gdb -ex run --args' + ) + + # Conditional RViz node launch + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz', + arguments=['-d', PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'rviz_cfg', 'loam_livox.rviz' + ])], + condition=IfCondition(LaunchConfiguration('rviz')), + prefix='nice' + ) + + # Assemble the launch description + ld = LaunchDescription([ + rviz_arg, + laser_mapping_node, + GroupAction( + actions=[rviz_node], + condition=IfCondition(LaunchConfiguration('rviz')) + ), + ]) + + return ld diff --git a/src/rm_localization/point_lio/launch/mapping_ouster64.launch.py b/src/rm_localization/point_lio/launch/mapping_ouster64.launch.py new file mode 100755 index 0000000..f1f355e --- /dev/null +++ b/src/rm_localization/point_lio/launch/mapping_ouster64.launch.py @@ -0,0 +1,68 @@ +from launch import LaunchDescription +from launch.actions import GroupAction, DeclareLaunchArgument +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare + + +def generate_launch_description(): + # Declare the RViz argument + rviz_arg = DeclareLaunchArgument( + 'rviz', default_value='true', + description='Flag to launch RViz.') + + # Node parameters, including those from the YAML configuration file + laser_mapping_params = [ + PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'config', 'ouster64.yaml' + ]), + { + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': True, + 'init_map_size': 10, + 'point_filter_num': 4, # Options: 4, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.5, # Options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.5, # Options: 0.5, 0.3, 0.15, 0.1 + 'ivox_nearby_type': 6, # Options: 0.5, 0.3, 0.15, 0.1 + 'runtime_pos_log_enable': False, # Option: True + } + ] + + # Node definition for laserMapping with Point-LIO + laser_mapping_node = Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=laser_mapping_params, + # prefix='gdb -ex run --args' + ) + + # Conditional RViz node launch + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz', + arguments=['-d', PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'rviz_cfg', 'loam_livox.rviz' + ])], + condition=IfCondition(LaunchConfiguration('rviz')), + prefix='nice' + ) + + # Assemble the launch description + ld = LaunchDescription([ + rviz_arg, + laser_mapping_node, + GroupAction( + actions=[rviz_node], + condition=IfCondition(LaunchConfiguration('rviz')) + ), + ]) + + return ld diff --git a/src/rm_localization/point_lio/launch/mapping_velody16.launch.py b/src/rm_localization/point_lio/launch/mapping_velody16.launch.py new file mode 100755 index 0000000..155b655 --- /dev/null +++ b/src/rm_localization/point_lio/launch/mapping_velody16.launch.py @@ -0,0 +1,68 @@ +from launch import LaunchDescription +from launch.actions import GroupAction, DeclareLaunchArgument +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution +from launch_ros.actions import Node +from launch_ros.substitutions import FindPackageShare + + +def generate_launch_description(): + # Declare the RViz argument + rviz_arg = DeclareLaunchArgument( + 'rviz', default_value='true', + description='Flag to launch RViz.') + + # Node parameters, including those from the YAML configuration file + laser_mapping_params = [ + PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'config', 'velody16.yaml' + ]), + { + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': True, + 'init_map_size': 10, + 'point_filter_num': 4, # Options: 4, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.5, # Options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.5, # Options: 0.5, 0.3, 0.15, 0.1 + 'ivox_nearby_type': 6, # Options: 0.5, 0.3, 0.15, 0.1 + 'runtime_pos_log_enable': False, # Option: True + } + ] + + # Node definition for laserMapping with Point-LIO + laser_mapping_node = Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=laser_mapping_params, + # prefix='gdb -ex run --args' + ) + + # Conditional RViz node launch + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz', + arguments=['-d', PathJoinSubstitution([ + FindPackageShare('point_lio'), + 'rviz_cfg', 'loam_livox.rviz' + ])], + condition=IfCondition(LaunchConfiguration('rviz')), + prefix='nice' + ) + + # Assemble the launch description + ld = LaunchDescription([ + rviz_arg, + laser_mapping_node, + GroupAction( + actions=[rviz_node], + condition=IfCondition(LaunchConfiguration('rviz')) + ), + ]) + + return ld diff --git a/src/rm_localization/point_lio/msg/LocalSensorExternalTrigger.msg b/src/rm_localization/point_lio/msg/LocalSensorExternalTrigger.msg new file mode 100644 index 0000000..d70dabe --- /dev/null +++ b/src/rm_localization/point_lio/msg/LocalSensorExternalTrigger.msg @@ -0,0 +1,6 @@ +# This message contains essential time information of the +# local sensor (lidar/inertial sensor) when get triggered +Header header # local timestamp of the trigger +uint32 trigger_id +uint32 event_id +time timestamp_host # corresponding timestamp of the Host PC, not used \ No newline at end of file diff --git a/src/rm_localization/point_lio/package.xml b/src/rm_localization/point_lio/package.xml new file mode 100755 index 0000000..c34ba70 --- /dev/null +++ b/src/rm_localization/point_lio/package.xml @@ -0,0 +1,37 @@ + + + point_lio + 0.0.0 + + This is a modified version of LOAM which is original algorithm + is described in the following paper: + J. Zhang and S. Singh. LOAM: Lidar Odometry and Mapping in Real-time. + Robotics: Science and Systems Conference (RSS). Berkeley, CA, July 2014. + + + claydergc + + BSD + + Dongjiao He + + ament_cmake + + rclcpp + rclpy + sensor_msgs + geometry_msgs + visualization_msgs + nav_msgs + tf2_ros + pcl_ros + pcl_conversions + livox_ros_driver2 + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/src/rm_localization/point_lio/rviz_cfg/.gitignore b/src/rm_localization/point_lio/rviz_cfg/.gitignore new file mode 100755 index 0000000..e69de29 diff --git a/src/rm_localization/point_lio/rviz_cfg/loam_livox.rviz b/src/rm_localization/point_lio/rviz_cfg/loam_livox.rviz new file mode 100755 index 0000000..e0ec320 --- /dev/null +++ b/src/rm_localization/point_lio/rviz_cfg/loam_livox.rviz @@ -0,0 +1,335 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /CloudRegistered1 + Splitter Ratio: 0.5 + Tree Height: 549 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz_common/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: CloudRegistered +Visualization Manager: + Class: "" + Displays: + - Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + base_link: + Value: true + base_link_fake: + Value: true + imu_link: + Value: true + livox_frame: + Value: true + map: + Value: true + odom: + Value: true + wheel_1: + Value: true + wheel_2: + Value: true + wheel_3: + Value: true + wheel_4: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + map: + {} + odom: + base_link: + base_link_fake: + {} + imu_link: + {} + livox_frame: + {} + wheel_1: + {} + wheel_2: + {} + wheel_3: + {} + wheel_4: + {} + Update Interval: 0 + Value: true + - Angle Tolerance: 0.10000000149011612 + Class: rviz_default_plugins/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: true + Enabled: true + Keep: 100 + Name: Odometry + Position Tolerance: 0.10000000149011612 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Color: 255; 25; 0 + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Value: Arrow + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /aft_mapped_to_init + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz_default_plugins/Path + Color: 25; 255; 0 + Enabled: true + Head Diameter: 0.30000001192092896 + Head Length: 0.20000000298023224 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.029999999329447746 + Shaft Diameter: 0.10000000149011612 + Shaft Length: 0.10000000149011612 + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /path + Value: true + - Alpha: 0.6000000238418579 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 13.2266845703125 + Min Value: -0.19345740973949432 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 30 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 186 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudRegistered + Position Transformer: XYZ + Selectable: true + Size (Pixels): 1 + Size (m): 0.009999999776482582 + Style: Points + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_registered + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 184 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudEffected + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.019999999552965164 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_effected + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 2.036320447921753 + Min Value: -0.09378375858068466 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 255 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudMap + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.019999999552965164 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /Laser_map + Use Fixed Frame: true + Use rainbow: true + Value: false + Enabled: true + Global Options: + Background Color: 0; 0; 0 + Fixed Frame: odom + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 15.3889799118042 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 2.570868730545044 + Y: 0.5283783674240112 + Z: 1.2330546379089355 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 1.044796347618103 + Target Frame: + Value: Orbit (rviz_default_plugins) + Yaw: 2.370389699935913 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 846 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd000000040000000000000156000002b0fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f00700065007200740069006500730200000438000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d000002b0000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000002b0fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003d000002b0000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000005ad0000003efc0100000002fb0000000800540069006d00650100000000000005ad000002fb00fffffffb0000000800540069006d0065010000000000000450000000000000000000000451000002b000000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1453 + X: 1602 + Y: 250 diff --git a/src/rm_localization/point_lio/src/Estimator.cpp b/src/rm_localization/point_lio/src/Estimator.cpp new file mode 100755 index 0000000..7a31947 --- /dev/null +++ b/src/rm_localization/point_lio/src/Estimator.cpp @@ -0,0 +1,402 @@ +// #include <../include/IKFoM/IKFoM_toolkit/esekfom/esekfom.hpp> +#include "Estimator.h" + +PointCloudXYZI::Ptr normvec(new PointCloudXYZI(100000, 1)); +std::vector time_seq; +PointCloudXYZI::Ptr feats_down_body(new PointCloudXYZI(10000, 1)); +PointCloudXYZI::Ptr feats_down_world(new PointCloudXYZI(10000, 1)); +std::vector pbody_list; +std::vector Nearest_Points; +std::shared_ptr ivox_ = nullptr; // localmap in ivox +std::vector pointSearchSqDis(NUM_MATCH_POINTS); +bool point_selected_surf[100000] = {0}; +std::vector crossmat_list; +int effct_feat_num = 0; +int k = 0; +int idx = -1; +esekfom::esekf kf_input; +esekfom::esekf kf_output; +input_ikfom input_in; +V3D angvel_avr, acc_avr, acc_avr_norm; +int feats_down_size = 0; +V3D Lidar_T_wrt_IMU(Zero3d); +M3D Lidar_R_wrt_IMU(Eye3d); +double G_m_s2 = 9.81; + +Eigen::Matrix process_noise_cov_input() +{ + Eigen::Matrix cov; + cov.setZero(); + cov.block<3, 3>(3, 3).diagonal() << gyr_cov_input, gyr_cov_input, gyr_cov_input; + cov.block<3, 3>(12, 12).diagonal() << acc_cov_input, acc_cov_input, acc_cov_input; + cov.block<3, 3>(15, 15).diagonal() << b_gyr_cov, b_gyr_cov, b_gyr_cov; + cov.block<3, 3>(18, 18).diagonal() << b_acc_cov, b_acc_cov, b_acc_cov; + // MTK::get_cov::type cov = MTK::get_cov::type::Zero(); + // MTK::setDiagonal(cov, &process_noise_input::ng, gyr_cov_input);// 0.03 + // MTK::setDiagonal(cov, &process_noise_input::na, acc_cov_input); // *dt 0.01 0.01 * dt * dt 0.05 + // MTK::setDiagonal(cov, &process_noise_input::nbg, b_gyr_cov); // *dt 0.00001 0.00001 * dt *dt 0.3 //0.001 0.0001 0.01 + // MTK::setDiagonal(cov, &process_noise_input::nba, b_acc_cov); //0.001 0.05 0.0001/out 0.01 + return cov; +} + +Eigen::Matrix process_noise_cov_output() +{ + Eigen::Matrix cov; + cov.setZero(); + cov.block<3, 3>(12, 12).diagonal() << vel_cov, vel_cov, vel_cov; + cov.block<3, 3>(15, 15).diagonal() << gyr_cov_output, gyr_cov_output, gyr_cov_output; + cov.block<3, 3>(18, 18).diagonal() << acc_cov_output, acc_cov_output, acc_cov_output; + cov.block<3, 3>(24, 24).diagonal() << b_gyr_cov, b_gyr_cov, b_gyr_cov; + cov.block<3, 3>(27, 27).diagonal() << b_acc_cov, b_acc_cov, b_acc_cov; + return cov; +} + +Eigen::Matrix get_f_input(state_input &s, const input_ikfom &in) +{ + Eigen::Matrix res = Eigen::Matrix::Zero(); + vect3 omega; + in.gyro.boxminus(omega, s.bg); + vect3 a_inertial = s.rot * (in.acc-s.ba); // .normalized() + for(int i = 0; i < 3; i++ ){ + res(i) = s.vel[i]; + res(i + 3) = omega[i]; + res(i + 12) = a_inertial[i] + s.gravity[i]; + } + return res; +} + +Eigen::Matrix get_f_output(state_output &s, const input_ikfom &in) +{ + Eigen::Matrix res = Eigen::Matrix::Zero(); + vect3 a_inertial = s.rot * s.acc; // .normalized() + for(int i = 0; i < 3; i++ ){ + res(i) = s.vel[i]; + res(i + 3) = s.omg[i]; + res(i + 12) = a_inertial[i] + s.gravity[i]; + } + return res; +} + +Eigen::Matrix df_dx_input(state_input &s, const input_ikfom &in) +{ + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(0, 12) = Eigen::Matrix3d::Identity(); + vect3 acc_; + in.acc.boxminus(acc_, s.ba); + vect3 omega; + in.gyro.boxminus(omega, s.bg); + cov.template block<3, 3>(12, 3) = -s.rot*MTK::hat(acc_); // .normalized().toRotationMatrix() + cov.template block<3, 3>(12, 18) = -s.rot; //.normalized().toRotationMatrix(); + // Eigen::Matrix vec = Eigen::Matrix::Zero(); + // Eigen::Matrix grav_matrix; + // s.S2_Mx(grav_matrix, vec, 21); + cov.template block<3, 3>(12, 21) = Eigen::Matrix3d::Identity(); // grav_matrix; + cov.template block<3, 3>(3, 15) = -Eigen::Matrix3d::Identity(); + return cov; +} + +Eigen::Matrix df_dx_output(state_output &s, const input_ikfom &in) +{ + Eigen::Matrix cov = Eigen::Matrix::Zero(); + cov.template block<3, 3>(0, 12) = Eigen::Matrix3d::Identity(); + cov.template block<3, 3>(12, 3) = -s.rot*MTK::hat(s.acc); // .normalized().toRotationMatrix() + cov.template block<3, 3>(12, 18) = s.rot; //.normalized().toRotationMatrix(); + // Eigen::Matrix vec = Eigen::Matrix::Zero(); + // Eigen::Matrix grav_matrix; + // s.S2_Mx(grav_matrix, vec, 21); + cov.template block<3, 3>(12, 21) = Eigen::Matrix3d::Identity(); // grav_matrix; + cov.template block<3, 3>(3, 15) = Eigen::Matrix3d::Identity(); + return cov; +} + +void h_model_input(state_input &s, Eigen::Matrix3d cov_p, Eigen::Matrix3d cov_R, esekfom::dyn_share_modified &ekfom_data) +{ + bool match_in_map = false; + VF(4) pabcd; + pabcd.setZero(); + normvec->resize(time_seq[k]); + int effect_num_k = 0; + for (int j = 0; j < time_seq[k]; j++) + { + PointType &point_body_j = feats_down_body->points[idx+j+1]; + PointType &point_world_j = feats_down_world->points[idx+j+1]; + pointBodyToWorld(&point_body_j, &point_world_j); + V3D p_body = pbody_list[idx+j+1]; + double p_norm = p_body.norm(); + V3D p_world; + p_world << point_world_j.x, point_world_j.y, point_world_j.z; + { + auto &points_near = Nearest_Points[idx+j+1]; + ivox_->GetClosestPoint(point_world_j, points_near, NUM_MATCH_POINTS); // + if ((points_near.size() < NUM_MATCH_POINTS)) // || pointSearchSqDis[NUM_MATCH_POINTS - 1] > 5) // 5) + { + point_selected_surf[idx+j+1] = false; + } + else + { + point_selected_surf[idx+j+1] = false; + if (esti_plane(pabcd, points_near, plane_thr)) //(planeValid) + { + float pd2 = fabs(pabcd(0) * point_world_j.x + pabcd(1) * point_world_j.y + pabcd(2) * point_world_j.z + pabcd(3)); + // V3D norm_vec; + // M3D Rpf, pf; + // pf = crossmat_list[idx+j+1]; + // // pf << SKEW_SYM_MATRX(p_body); + // Rpf = s.rot * pf; + // norm_vec << pabcd(0), pabcd(1), pabcd(2); + // double noise_state = norm_vec.transpose() * (cov_p+Rpf*cov_R*Rpf.transpose()) * norm_vec + sqrt(p_norm) * 0.001; + // // if (p_norm > match_s * pd2 * pd2) + // double epsilon = pd2 / sqrt(noise_state); + // // cout << "check epsilon:" << epsilon << endl; + // double weight = 1.0; // epsilon / sqrt(epsilon * epsilon+1); + // if (epsilon > 1.0) + // { + // weight = sqrt(2 * epsilon - 1) / epsilon; + // pabcd(0) = weight * pabcd(0); + // pabcd(1) = weight * pabcd(1); + // pabcd(2) = weight * pabcd(2); + // pabcd(3) = weight * pabcd(3); + // } + if (p_norm > match_s * pd2 * pd2) + { + point_selected_surf[idx+j+1] = true; + normvec->points[j].x = pabcd(0); + normvec->points[j].y = pabcd(1); + normvec->points[j].z = pabcd(2); + normvec->points[j].intensity = pabcd(3); + effect_num_k ++; + } + } + } + } + } + if (effect_num_k == 0) + { + ekfom_data.valid = false; + return; + } + ekfom_data.M_Noise = laser_point_cov; + ekfom_data.h_x.resize(effect_num_k, 12); + ekfom_data.h_x = Eigen::MatrixXd::Zero(effect_num_k, 12); + ekfom_data.z.resize(effect_num_k); + int m = 0; + + for (int j = 0; j < time_seq[k]; j++) + { + // ekfom_data.converge = false; + if(point_selected_surf[idx+j+1]) + { + V3D norm_vec(normvec->points[j].x, normvec->points[j].y, normvec->points[j].z); + + if (extrinsic_est_en) + { + V3D p_body = pbody_list[idx+j+1]; + M3D p_crossmat, p_imu_crossmat; + p_crossmat << SKEW_SYM_MATRX(p_body); + V3D point_imu = s.offset_R_L_I * p_body + s.offset_T_L_I; + p_imu_crossmat << SKEW_SYM_MATRX(point_imu); + V3D C(s.rot.transpose() * norm_vec); + V3D A(p_imu_crossmat * C); + V3D B(p_crossmat * s.offset_R_L_I.transpose() * C); + ekfom_data.h_x.block<1, 12>(m, 0) << norm_vec(0), norm_vec(1), norm_vec(2), VEC_FROM_ARRAY(A), VEC_FROM_ARRAY(B), VEC_FROM_ARRAY(C); + } + else + { + M3D point_crossmat = crossmat_list[idx+j+1]; + V3D C(s.rot.transpose() * norm_vec); // conjugate().normalized() + V3D A(point_crossmat * C); + ekfom_data.h_x.block<1, 12>(m, 0) << norm_vec(0), norm_vec(1), norm_vec(2), VEC_FROM_ARRAY(A), 0.0, 0.0, 0.0, 0.0, 0.0, 0.0; + } + ekfom_data.z(m) = -norm_vec(0) * feats_down_world->points[idx+j+1].x -norm_vec(1) * feats_down_world->points[idx+j+1].y -norm_vec(2) * feats_down_world->points[idx+j+1].z-normvec->points[j].intensity; + + m++; + } + } + effct_feat_num += effect_num_k; +} + +void h_model_output(state_output &s, Eigen::Matrix3d cov_p, Eigen::Matrix3d cov_R, esekfom::dyn_share_modified &ekfom_data) +{ + bool match_in_map = false; + VF(4) pabcd; + pabcd.setZero(); + normvec->resize(time_seq[k]); + int effect_num_k = 0; + for (int j = 0; j < time_seq[k]; j++) + { + PointType &point_body_j = feats_down_body->points[idx+j+1]; + PointType &point_world_j = feats_down_world->points[idx+j+1]; + pointBodyToWorld(&point_body_j, &point_world_j); + V3D p_body = pbody_list[idx+j+1]; + double p_norm = p_body.norm(); + V3D p_world; + p_world << point_world_j.x, point_world_j.y, point_world_j.z; + { + auto &points_near = Nearest_Points[idx+j+1]; + + ivox_->GetClosestPoint(point_world_j, points_near, NUM_MATCH_POINTS); // + + if ((points_near.size() < NUM_MATCH_POINTS)) // || pointSearchSqDis[NUM_MATCH_POINTS - 1] > 5) + { + point_selected_surf[idx+j+1] = false; + } + else + { + point_selected_surf[idx+j+1] = false; + if (esti_plane(pabcd, points_near, plane_thr)) //(planeValid) + { + float pd2 = fabs(pabcd(0) * point_world_j.x + pabcd(1) * point_world_j.y + pabcd(2) * point_world_j.z + pabcd(3)); + // V3D norm_vec; + // M3D Rpf, pf; + // pf = crossmat_list[idx+j+1]; + // // pf << SKEW_SYM_MATRX(p_body); + // Rpf = s.rot * pf; + // norm_vec << pabcd(0), pabcd(1), pabcd(2); + // double noise_state = norm_vec.transpose() * (cov_p+Rpf*cov_R*Rpf.transpose()) * norm_vec + sqrt(p_norm) * 0.001; + // // if (p_norm > match_s * pd2 * pd2) + // double epsilon = pd2 / sqrt(noise_state); + // double weight = 1.0; // epsilon / sqrt(epsilon * epsilon+1); + // if (epsilon > 1.0) + // { + // weight = sqrt(2 * epsilon - 1) / epsilon; + // pabcd(0) = weight * pabcd(0); + // pabcd(1) = weight * pabcd(1); + // pabcd(2) = weight * pabcd(2); + // pabcd(3) = weight * pabcd(3); + // } + if (p_norm > match_s * pd2 * pd2) + { + // point_selected_surf[i] = true; + point_selected_surf[idx+j+1] = true; + normvec->points[j].x = pabcd(0); + normvec->points[j].y = pabcd(1); + normvec->points[j].z = pabcd(2); + normvec->points[j].intensity = pabcd(3); + effect_num_k ++; + } + } + } + } + } + if (effect_num_k == 0) + { + ekfom_data.valid = false; + return; + } + ekfom_data.M_Noise = laser_point_cov; + ekfom_data.h_x.resize(effect_num_k, 12); + ekfom_data.h_x = Eigen::MatrixXd::Zero(effect_num_k, 12); + ekfom_data.z.resize(effect_num_k); + int m = 0; + for (int j = 0; j < time_seq[k]; j++) + { + // ekfom_data.converge = false; + if(point_selected_surf[idx+j+1]) + { + V3D norm_vec(normvec->points[j].x, normvec->points[j].y, normvec->points[j].z); + if (extrinsic_est_en) + { + V3D p_body = pbody_list[idx+j+1]; + M3D p_crossmat, p_imu_crossmat; + p_crossmat << SKEW_SYM_MATRX(p_body); + V3D point_imu = s.offset_R_L_I * p_body + s.offset_T_L_I; + p_imu_crossmat << SKEW_SYM_MATRX(point_imu); + V3D C(s.rot.transpose() * norm_vec); + V3D A(p_imu_crossmat * C); + V3D B(p_crossmat * s.offset_R_L_I.transpose() * C); + ekfom_data.h_x.block<1, 12>(m, 0) << norm_vec(0), norm_vec(1), norm_vec(2), VEC_FROM_ARRAY(A), VEC_FROM_ARRAY(B), VEC_FROM_ARRAY(C); + } + else + { + M3D point_crossmat = crossmat_list[idx+j+1]; + V3D C(s.rot.transpose() * norm_vec); // conjugate().normalized() + V3D A(point_crossmat * C); + ekfom_data.h_x.block<1, 12>(m, 0) << norm_vec(0), norm_vec(1), norm_vec(2), VEC_FROM_ARRAY(A), 0.0, 0.0, 0.0, 0.0, 0.0, 0.0; + } + ekfom_data.z(m) = -norm_vec(0) * feats_down_world->points[idx+j+1].x -norm_vec(1) * feats_down_world->points[idx+j+1].y -norm_vec(2) * feats_down_world->points[idx+j+1].z-normvec->points[j].intensity; + + m++; + } + } + effct_feat_num += effect_num_k; +} + +void h_model_IMU_output(state_output &s, esekfom::dyn_share_modified &ekfom_data) +{ + std::memset(ekfom_data.satu_check, false, 6); + ekfom_data.z_IMU.block<3,1>(0, 0) = angvel_avr - s.omg - s.bg; + ekfom_data.z_IMU.block<3,1>(3, 0) = acc_avr * G_m_s2 / acc_norm - s.acc - s.ba; + ekfom_data.R_IMU << imu_meas_omg_cov, imu_meas_omg_cov, imu_meas_omg_cov, imu_meas_acc_cov, imu_meas_acc_cov, imu_meas_acc_cov; + if(check_satu) + { + if(fabs(angvel_avr(0)) >= 0.99 * satu_gyro) + { + ekfom_data.satu_check[0] = true; + ekfom_data.z_IMU(0) = 0.0; + } + + if(fabs(angvel_avr(1)) >= 0.99 * satu_gyro) + { + ekfom_data.satu_check[1] = true; + ekfom_data.z_IMU(1) = 0.0; + } + + if(fabs(angvel_avr(2)) >= 0.99 * satu_gyro) + { + ekfom_data.satu_check[2] = true; + ekfom_data.z_IMU(2) = 0.0; + } + + if(fabs(acc_avr(0)) >= 0.99 * satu_acc) + { + ekfom_data.satu_check[3] = true; + ekfom_data.z_IMU(3) = 0.0; + } + + if(fabs(acc_avr(1)) >= 0.99 * satu_acc) + { + ekfom_data.satu_check[4] = true; + ekfom_data.z_IMU(4) = 0.0; + } + + if(fabs(acc_avr(2)) >= 0.99 * satu_acc) + { + ekfom_data.satu_check[5] = true; + ekfom_data.z_IMU(5) = 0.0; + } + } +} + +void pointBodyToWorld(PointType const * const pi, PointType * const po) +{ + V3D p_body(pi->x, pi->y, pi->z); + + V3D p_global; + if (extrinsic_est_en) + { + if (!use_imu_as_input) + { + p_global = kf_output.x_.rot * (kf_output.x_.offset_R_L_I * p_body + kf_output.x_.offset_T_L_I) + kf_output.x_.pos; + } + else + { + p_global = kf_input.x_.rot * (kf_input.x_.offset_R_L_I * p_body + kf_input.x_.offset_T_L_I) + kf_input.x_.pos; + } + } + else + { + if (!use_imu_as_input) + { + p_global = kf_output.x_.rot * (Lidar_R_wrt_IMU * p_body + Lidar_T_wrt_IMU) + kf_output.x_.pos; // .normalized() + } + else + { + p_global = kf_input.x_.rot * (Lidar_R_wrt_IMU * p_body + Lidar_T_wrt_IMU) + kf_input.x_.pos; // .normalized() + } + } + + po->x = p_global(0); + po->y = p_global(1); + po->z = p_global(2); + po->intensity = pi->intensity; +} \ No newline at end of file diff --git a/src/rm_localization/point_lio/src/Estimator.h b/src/rm_localization/point_lio/src/Estimator.h new file mode 100755 index 0000000..8383fb6 --- /dev/null +++ b/src/rm_localization/point_lio/src/Estimator.h @@ -0,0 +1,61 @@ +#ifndef Estimator_H +#define Estimator_H + +#include "common_lib.h" +#include "parameters.h" +#include +#include +#include +#include +// #include +#include +#include + +extern PointCloudXYZI::Ptr normvec; //(new PointCloudXYZI(100000, 1)); +extern std::vector time_seq; +extern PointCloudXYZI::Ptr feats_down_body; //(new PointCloudXYZI()); +extern PointCloudXYZI::Ptr feats_down_world; //(new PointCloudXYZI()); +extern std::vector pbody_list; +extern std::vector Nearest_Points; +extern std::shared_ptr ivox_; // localmap in ivox +extern std::vector pointSearchSqDis; +extern bool point_selected_surf[100000]; // = {0}; +extern std::vector crossmat_list; +extern int effct_feat_num; +extern int k; +extern int idx; +extern V3D angvel_avr, acc_avr, acc_avr_norm; +extern int feats_down_size; +// extern std::vector normvec_holder; +extern V3D Lidar_T_wrt_IMU; //(Zero3d); +extern M3D Lidar_R_wrt_IMU; //(Eye3d); +extern double G_m_s2; +extern input_ikfom input_in; + +Eigen::Matrix process_noise_cov_input(); + +Eigen::Matrix process_noise_cov_output(); + +//double L_offset_to_I[3] = {0.04165, 0.02326, -0.0284}; // Avia +//vect3 Lidar_offset_to_IMU(L_offset_to_I, 3); +Eigen::Matrix get_f_input(state_input &s, const input_ikfom &in); + +Eigen::Matrix get_f_output(state_output &s, const input_ikfom &in); + +Eigen::Matrix df_dx_input(state_input &s, const input_ikfom &in); + +// Eigen::Matrix df_dw_input(state_input &s, const input_ikfom &in); + +Eigen::Matrix df_dx_output(state_output &s, const input_ikfom &in); + +// Eigen::Matrix df_dw_output(state_output &s); + +void h_model_input(state_input &s, Eigen::Matrix3d cov_p, Eigen::Matrix3d cov_R, esekfom::dyn_share_modified &ekfom_data); + +void h_model_output(state_output &s, Eigen::Matrix3d cov_p, Eigen::Matrix3d cov_R, esekfom::dyn_share_modified &ekfom_data); + +void h_model_IMU_output(state_output &s, esekfom::dyn_share_modified &ekfom_data); + +void pointBodyToWorld(PointType const * const pi, PointType * const po); + +#endif \ No newline at end of file diff --git a/src/rm_localization/point_lio/src/IMU_Processing.cpp b/src/rm_localization/point_lio/src/IMU_Processing.cpp new file mode 100755 index 0000000..19407ab --- /dev/null +++ b/src/rm_localization/point_lio/src/IMU_Processing.cpp @@ -0,0 +1,137 @@ +#include "IMU_Processing.h" + +const bool time_list(PointType &x, PointType &y) {return (x.curvature < y.curvature);}; + +void ImuProcess::set_gyr_cov(const V3D &scaler) +{ + cov_gyr_scale = scaler; +} + +void ImuProcess::set_acc_cov(const V3D &scaler) +{ + cov_vel_scale = scaler; +} + +ImuProcess::ImuProcess() + : b_first_frame_(true), imu_need_init_(true), logger(rclcpp::get_logger("ImuProcess")) +{ + imu_en = true; + init_iter_num = 1; + mean_acc = V3D(0, 0, 0.0); + mean_gyr = V3D(0, 0, 0); + after_imu_init_ = false; + state_cov.setIdentity(); +} + + +ImuProcess::~ImuProcess() {} + +void ImuProcess::Reset() +{ + RCLCPP_WARN(logger, "Reset ImuProcess"); + mean_acc = V3D(0, 0, 0.0); + mean_gyr = V3D(0, 0, 0); + imu_need_init_ = true; + init_iter_num = 1; + after_imu_init_ = false; + + time_last_scan = 0.0; +} + +void ImuProcess::Set_init(Eigen::Vector3d &tmp_gravity, Eigen::Matrix3d &rot) +{ + /** 1. initializing the gravity, gyro bias, acc and gyro covariance + ** 2. normalize the acceleration measurenments to unit gravity **/ + // V3D tmp_gravity = - mean_acc / mean_acc.norm() * G_m_s2; // state_gravity; + M3D hat_grav; + hat_grav << 0.0, gravity_(2), -gravity_(1), + -gravity_(2), 0.0, gravity_(0), + gravity_(1), -gravity_(0), 0.0; + double align_norm = (hat_grav * tmp_gravity).norm() / gravity_.norm() / tmp_gravity.norm(); + double align_cos = gravity_.transpose() * tmp_gravity; + align_cos = align_cos / gravity_.norm() / tmp_gravity.norm(); + if (align_norm < 1e-6) + { + if (align_cos > 1e-6) + { + rot = Eye3d; + } + else + { + rot = -Eye3d; + } + } + else + { + V3D align_angle = hat_grav * tmp_gravity / (hat_grav * tmp_gravity).norm() * acos(align_cos); + rot = Exp(align_angle(0), align_angle(1), align_angle(2)); + } +} + +void ImuProcess::IMU_init(const MeasureGroup &meas, int &N) +{ + /** 1. initializing the gravity, gyro bias, acc and gyro covariance + ** 2. normalize the acceleration measurenments to unit gravity **/ + RCLCPP_INFO(logger, "IMU Initializing: %.1f %%", double(N) / MAX_INI_COUNT * 100); + V3D cur_acc, cur_gyr; + + if (b_first_frame_) + { + Reset(); + N = 1; + b_first_frame_ = false; + const auto &imu_acc = meas.imu.front()->linear_acceleration; + const auto &gyr_acc = meas.imu.front()->angular_velocity; + mean_acc << imu_acc.x, imu_acc.y, imu_acc.z; + mean_gyr << gyr_acc.x, gyr_acc.y, gyr_acc.z; + } + + for (const auto &imu : meas.imu) + { + const auto &imu_acc = imu->linear_acceleration; + const auto &gyr_acc = imu->angular_velocity; + cur_acc << imu_acc.x, imu_acc.y, imu_acc.z; + cur_gyr << gyr_acc.x, gyr_acc.y, gyr_acc.z; + + mean_acc += (cur_acc - mean_acc) / N; + mean_gyr += (cur_gyr - mean_gyr) / N; + + N ++; + } +} + +void ImuProcess::Process(const MeasureGroup &meas, PointCloudXYZI::Ptr cur_pcl_un_) +{ + if (imu_en) + { + if(meas.imu.empty()) return; + + if (imu_need_init_) + { + + { + /// The very first lidar frame + IMU_init(meas, init_iter_num); + + imu_need_init_ = true; + + if (init_iter_num > MAX_INI_COUNT) + { + RCLCPP_INFO(logger, "IMU Initializing: %.1f %%", 100.0); + imu_need_init_ = false; + *cur_pcl_un_ = *(meas.lidar); + } + // *cur_pcl_un_ = *(meas.lidar); + } + return; + } + if (!after_imu_init_) after_imu_init_ = true; + *cur_pcl_un_ = *(meas.lidar); + return; + } + else + { + *cur_pcl_un_ = *(meas.lidar); + return; + } +} \ No newline at end of file diff --git a/src/rm_localization/point_lio/src/IMU_Processing.h b/src/rm_localization/point_lio/src/IMU_Processing.h new file mode 100755 index 0000000..520970c --- /dev/null +++ b/src/rm_localization/point_lio/src/IMU_Processing.h @@ -0,0 +1,55 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/// *************Preconfiguration + +#define MAX_INI_COUNT (100) +const bool time_list(PointType &x, PointType &y); // {return (x.curvature < y.curvature);}; + +/// *************IMU Process and undistortion +class ImuProcess +{ + public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + + ImuProcess(); + ~ImuProcess(); + + void Reset(); + void Process(const MeasureGroup &meas, PointCloudXYZI::Ptr pcl_un_); + void set_gyr_cov(const V3D &scaler); + void set_acc_cov(const V3D &scaler); + void Set_init(Eigen::Vector3d &tmp_gravity, Eigen::Matrix3d &rot); + + MD(12, 12) state_cov = MD(12, 12)::Identity(); + int lidar_type; + V3D gravity_; + bool imu_en; + V3D mean_acc; + bool imu_need_init_ = true; + bool after_imu_init_ = false; + bool b_first_frame_ = true; + double time_last_scan = 0.0; + V3D cov_gyr_scale = V3D(0.0001, 0.0001, 0.0001); + V3D cov_vel_scale = V3D(0.0001, 0.0001, 0.0001); + + private: + void IMU_init(const MeasureGroup &meas, int &N); + + V3D mean_gyr; + int init_iter_num = 1; + rclcpp::Logger logger; +}; diff --git a/src/rm_localization/point_lio/src/laserMapping.cpp b/src/rm_localization/point_lio/src/laserMapping.cpp new file mode 100755 index 0000000..f1d9899 --- /dev/null +++ b/src/rm_localization/point_lio/src/laserMapping.cpp @@ -0,0 +1,1075 @@ +// #include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include "common_lib.h" +#include "li_initialization.h" + +using namespace std; + +#define PUBFRAME_PERIOD (20) + +const float MOV_THRESHOLD = 1.5f; + +string root_dir = ROOT_DIR; + +int time_log_counter = 0; //, publish_count = 0; + +bool init_map = false, flg_first_scan = true; + +// Time Log Variables +double match_time = 0, solve_time = 0, propag_time = 0, update_time = 0; + +bool flg_reset = false, flg_exit = false; + +// surf feature in map +PointCloudXYZI::Ptr feats_undistort(new PointCloudXYZI()); +PointCloudXYZI::Ptr feats_down_body_space(new PointCloudXYZI()); +PointCloudXYZI::Ptr init_feats_world(new PointCloudXYZI()); +std::deque depth_feats_world; +pcl::VoxelGrid downSizeFilterSurf; +pcl::VoxelGrid downSizeFilterMap; + +V3D euler_cur; + +nav_msgs::msg::Path path; +nav_msgs::msg::Odometry odomAftMapped; +geometry_msgs::msg::PoseStamped msg_body_pose; + +auto logger = rclcpp::get_logger("laserMapping"); + +void SigHandle(int sig) +{ + flg_exit = true; + RCLCPP_WARN(logger, "catch sig %d", sig); + sig_buffer.notify_all(); +} + +inline void dump_lio_state_to_log(FILE * fp) +{ + V3D rot_ang; + if (!use_imu_as_input) { + rot_ang = SO3ToEuler(kf_output.x_.rot); + } else { + rot_ang = SO3ToEuler(kf_input.x_.rot); + } + + fprintf(fp, "%lf ", Measures.lidar_beg_time - first_lidar_time); + fprintf(fp, "%lf %lf %lf ", rot_ang(0), rot_ang(1), rot_ang(2)); // Angle + if (use_imu_as_input) { + fprintf(fp, "%lf %lf %lf ", kf_input.x_.pos(0), kf_input.x_.pos(1), + kf_input.x_.pos(2)); // Pos + fprintf(fp, "%lf %lf %lf ", 0.0, 0.0, 0.0); // omega + fprintf(fp, "%lf %lf %lf ", kf_input.x_.vel(0), kf_input.x_.vel(1), + kf_input.x_.vel(2)); // Vel + fprintf(fp, "%lf %lf %lf ", 0.0, 0.0, 0.0); // Acc + fprintf(fp, "%lf %lf %lf ", kf_input.x_.bg(0), kf_input.x_.bg(1), + kf_input.x_.bg(2)); // Bias_g + fprintf(fp, "%lf %lf %lf ", kf_input.x_.ba(0), kf_input.x_.ba(1), + kf_input.x_.ba(2)); // Bias_a + fprintf( + fp, "%lf %lf %lf ", kf_input.x_.gravity(0), kf_input.x_.gravity(1), + kf_input.x_.gravity(2)); // Bias_a + } else { + fprintf( + fp, "%lf %lf %lf ", kf_output.x_.pos(0), kf_output.x_.pos(1), + kf_output.x_.pos(2)); // Pos + fprintf(fp, "%lf %lf %lf ", 0.0, 0.0, 0.0); // omega + fprintf( + fp, "%lf %lf %lf ", kf_output.x_.vel(0), kf_output.x_.vel(1), + kf_output.x_.vel(2)); // Vel + fprintf(fp, "%lf %lf %lf ", 0.0, 0.0, 0.0); // Acc + fprintf( + fp, "%lf %lf %lf ", kf_output.x_.bg(0), kf_output.x_.bg(1), + kf_output.x_.bg(2)); // Bias_g + fprintf( + fp, "%lf %lf %lf ", kf_output.x_.ba(0), kf_output.x_.ba(1), + kf_output.x_.ba(2)); // Bias_a + fprintf( + fp, "%lf %lf %lf ", kf_output.x_.gravity(0), kf_output.x_.gravity(1), + kf_output.x_.gravity(2)); // Bias_a + } + fprintf(fp, "\r\n"); + fflush(fp); +} + +void pointBodyLidarToIMU(PointType const * const pi, PointType * const po) +{ + V3D p_body_lidar(pi->x, pi->y, pi->z); + V3D p_body_imu; + if (extrinsic_est_en) { + if (!use_imu_as_input) { + p_body_imu = kf_output.x_.offset_R_L_I * p_body_lidar + kf_output.x_.offset_T_L_I; + } else { + p_body_imu = kf_input.x_.offset_R_L_I * p_body_lidar + kf_input.x_.offset_T_L_I; + } + } else { + p_body_imu = Lidar_R_wrt_IMU * p_body_lidar + Lidar_T_wrt_IMU; + } + po->x = p_body_imu(0); + po->y = p_body_imu(1); + po->z = p_body_imu(2); + po->intensity = pi->intensity; +} + +void MapIncremental() +{ + PointVector points_to_add; + int cur_pts = feats_down_world->size(); + points_to_add.reserve(cur_pts); + + for (size_t i = 0; i < cur_pts; ++i) { + /* decide if need add to map */ + PointType & point_world = feats_down_world->points[i]; + if (!Nearest_Points[i].empty()) { + const PointVector & points_near = Nearest_Points[i]; + + Eigen::Vector3f center = + ((point_world.getVector3fMap() / filter_size_map_min).array().floor() + 0.5) * + filter_size_map_min; + bool need_add = true; + for (int readd_i = 0; readd_i < points_near.size(); readd_i++) { + Eigen::Vector3f dis_2_center = points_near[readd_i].getVector3fMap() - center; + if ( + fabs(dis_2_center.x()) < 0.5 * filter_size_map_min && + fabs(dis_2_center.y()) < 0.5 * filter_size_map_min && + fabs(dis_2_center.z()) < 0.5 * filter_size_map_min) { + need_add = false; + break; + } + } + if (need_add) { + points_to_add.emplace_back(point_world); + } + } else { + points_to_add.emplace_back(point_world); + } + } + ivox_->AddPoints(points_to_add); +} + +void publish_init_map( + const rclcpp::Publisher::SharedPtr & pubLaserCloudFullRes) +{ + int size_init_map = init_feats_world->size(); + + sensor_msgs::msg::PointCloud2 laserCloudmsg; + + pcl::toROSMsg(*init_feats_world, laserCloudmsg); + + laserCloudmsg.header.stamp = get_ros_time(lidar_end_time); + laserCloudmsg.header.frame_id = "lidar_odom"; + pubLaserCloudFullRes->publish(laserCloudmsg); +} + +PointCloudXYZI::Ptr pcl_wait_pub(new PointCloudXYZI(500000, 1)); +PointCloudXYZI::Ptr pcl_wait_save(new PointCloudXYZI()); +void publish_frame_world( + const rclcpp::Publisher::SharedPtr & pubLaserCloudFullRes) +{ + if (scan_pub_en) { + PointCloudXYZI::Ptr laserCloudFullRes(feats_down_body); + int size = laserCloudFullRes->points.size(); + + PointCloudXYZI::Ptr laserCloudWorld(new PointCloudXYZI(size, 1)); + + for (int i = 0; i < size; i++) { + laserCloudWorld->points[i].x = feats_down_world->points[i].x; + laserCloudWorld->points[i].y = feats_down_world->points[i].y; + laserCloudWorld->points[i].z = feats_down_world->points[i].z; + laserCloudWorld->points[i].intensity = + feats_down_world->points[i].intensity; // feats_down_world->points[i].y; // + } + sensor_msgs::msg::PointCloud2 laserCloudmsg; + pcl::toROSMsg(*laserCloudWorld, laserCloudmsg); + + laserCloudmsg.header.stamp = get_ros_time(lidar_end_time); + laserCloudmsg.header.frame_id = "lidar_odom"; + pubLaserCloudFullRes->publish(laserCloudmsg); + // publish_count -= PUBFRAME_PERIOD; + } + + /**************** save map ****************/ + /* 1. make sure you have enough memories + 2. noted that pcd save will influence the real-time performences **/ + if (pcd_save_en) { + int size = feats_down_world->points.size(); + PointCloudXYZI::Ptr laserCloudWorld(new PointCloudXYZI(size, 1)); + + for (int i = 0; i < size; i++) { + laserCloudWorld->points[i].x = feats_down_world->points[i].x; + laserCloudWorld->points[i].y = feats_down_world->points[i].y; + laserCloudWorld->points[i].z = feats_down_world->points[i].z; + laserCloudWorld->points[i].intensity = feats_down_world->points[i].intensity; + } + + *pcl_wait_save += *laserCloudWorld; + + static int scan_wait_num = 0; + scan_wait_num++; + if (pcl_wait_save->size() > 0 && pcd_save_interval > 0 && scan_wait_num >= pcd_save_interval) { + pcd_index++; + string all_points_dir( + string(string(ROOT_DIR) + "PCD/scans_") + to_string(pcd_index) + string(".pcd")); + pcl::PCDWriter pcd_writer; + cout << "current scan saved to /PCD/" << all_points_dir << endl; + pcd_writer.writeBinary(all_points_dir, *pcl_wait_save); + pcl_wait_save->clear(); + scan_wait_num = 0; + } + } +} + +void publish_frame_body( + const rclcpp::Publisher::SharedPtr & pubLaserCloudFull_body) +{ + int size = feats_undistort->points.size(); + PointCloudXYZI::Ptr laserCloudIMUBody(new PointCloudXYZI(size, 1)); + + for (int i = 0; i < size; i++) { + pointBodyLidarToIMU(&feats_undistort->points[i], &laserCloudIMUBody->points[i]); + } + + sensor_msgs::msg::PointCloud2 laserCloudmsg; + pcl::toROSMsg(*laserCloudIMUBody, laserCloudmsg); + laserCloudmsg.header.stamp = get_ros_time(lidar_end_time); + laserCloudmsg.header.frame_id = "livox_frame"; + pubLaserCloudFull_body->publish(laserCloudmsg); + // publish_count -= PUBFRAME_PERIOD; +} + +template +void set_posestamp(T & out) +{ + if (!use_imu_as_input) { + out.position.x = kf_output.x_.pos(0); + out.position.y = kf_output.x_.pos(1); + out.position.z = kf_output.x_.pos(2); + Eigen::Quaterniond q(kf_output.x_.rot); + out.orientation.x = q.coeffs()[0]; + out.orientation.y = q.coeffs()[1]; + out.orientation.z = q.coeffs()[2]; + out.orientation.w = q.coeffs()[3]; + } else { + out.position.x = kf_input.x_.pos(0); + out.position.y = kf_input.x_.pos(1); + out.position.z = kf_input.x_.pos(2); + Eigen::Quaterniond q(kf_input.x_.rot); + out.orientation.x = q.coeffs()[0]; + out.orientation.y = q.coeffs()[1]; + out.orientation.z = q.coeffs()[2]; + out.orientation.w = q.coeffs()[3]; + } +} + +void publish_odometry( + const rclcpp::Publisher::SharedPtr pubOdomAftMapped, + std::unique_ptr & tf_br, + std::unique_ptr & tf_buffer, rclcpp::Logger logger_) +{ + odomAftMapped.header.frame_id = "lidar_odom"; + odomAftMapped.child_frame_id = "livox_frame"; + if (publish_odometry_without_downsample) { + odomAftMapped.header.stamp = get_ros_time(time_current); + } else { + odomAftMapped.header.stamp = get_ros_time(lidar_end_time); + } + set_posestamp(odomAftMapped.pose.pose); + + pubOdomAftMapped->publish(odomAftMapped); + + // Publish tf from lidar_odom to base_link + static geometry_msgs::msg::TransformStamped livox_to_base_link_transform; + static bool transform_acquired = false; // Check if the transform has already been acquired + if (!transform_acquired) { + // Get the transform from base_link to livox_frame + try { + livox_to_base_link_transform = + tf_buffer->lookupTransform("livox_frame", "base_link", odomAftMapped.header.stamp); + transform_acquired = + true; // Set the flag to true indicating that the transform has been acquired + } catch (tf2::TransformException & ex) { + RCLCPP_ERROR( + logger_, "Failed to lookup transform from base_link to livox_frame: %s", ex.what()); + return; + } + } + + // Create a TransformStamped message for lidar_odom to base_link + geometry_msgs::msg::TransformStamped transform_stamped; + transform_stamped.header.stamp = odomAftMapped.header.stamp; + transform_stamped.header.frame_id = "lidar_odom"; // Source frame + transform_stamped.child_frame_id = "base_link"; // Target frame + + // Calculate the transform from lidar_odom to base_link by multiplying the transforms + tf2::Transform tf_lidar_odom_to_livox_frame; + tf2::fromMsg(odomAftMapped.pose.pose, tf_lidar_odom_to_livox_frame); + tf2::Transform tf_livox_frame_to_base_link; + tf2::fromMsg(livox_to_base_link_transform.transform, tf_livox_frame_to_base_link); + tf2::Transform tf_lidar_odom_to_base_link = + tf_lidar_odom_to_livox_frame * tf_livox_frame_to_base_link; + + // Convert the resulting transform back to geometry_msgs::TransformStamped + transform_stamped.transform = tf2::toMsg(tf_lidar_odom_to_base_link); + + // Publish the tf + tf_br->sendTransform(transform_stamped); +} + +void publish_path(const rclcpp::Publisher::SharedPtr pubPath) +{ + set_posestamp(msg_body_pose.pose); + // msg_body_pose.header.stamp = rclcpp::Time::now(); + msg_body_pose.header.stamp = get_ros_time(lidar_end_time); + msg_body_pose.header.frame_id = "lidar_odom"; + static int jjj = 0; + jjj++; + // if (jjj % 2 == 0) // if path is too large, the rvis will crash + { + path.poses.emplace_back(msg_body_pose); + pubPath->publish(path); + } +} + +int main(int argc, char ** argv) +{ + rclcpp::init(argc, argv); + auto nh = std::make_shared("laserMapping"); + // rclcpp::AsyncSpinner spinner(0); + // spinner.start(); + readParameters(nh); + cout << "lidar_type: " << lidar_type << endl; + ivox_ = std::make_shared(ivox_options_); + + path.header.stamp = get_ros_time(lidar_end_time); + path.header.frame_id = "lidar_odom"; + + /*** variables definition for counting ***/ + int frame_num = 0; + double aver_time_consu = 0, aver_time_icp = 0, aver_time_match = 0, aver_time_incre = 0, + aver_time_solve = 0, aver_time_propag = 0; + + memset(point_selected_surf, true, sizeof(point_selected_surf)); + downSizeFilterSurf.setLeafSize(filter_size_surf_min, filter_size_surf_min, filter_size_surf_min); + downSizeFilterMap.setLeafSize(filter_size_map_min, filter_size_map_min, filter_size_map_min); + + Lidar_T_wrt_IMU << VEC_FROM_ARRAY(extrinT); + Lidar_R_wrt_IMU << MAT_FROM_ARRAY(extrinR); + + if (extrinsic_est_en) { + if (!use_imu_as_input) { + kf_output.x_.offset_R_L_I = Lidar_R_wrt_IMU; + kf_output.x_.offset_T_L_I = Lidar_T_wrt_IMU; + } else { + kf_input.x_.offset_R_L_I = Lidar_R_wrt_IMU; + kf_input.x_.offset_T_L_I = Lidar_T_wrt_IMU; + } + } + + p_imu->lidar_type = p_pre->lidar_type = lidar_type; + p_imu->imu_en = imu_en; + + kf_input.init_dyn_share_modified_2h(get_f_input, df_dx_input, h_model_input); + kf_output.init_dyn_share_modified_3h( + get_f_output, df_dx_output, h_model_output, h_model_IMU_output); + Eigen::Matrix P_init; // = MD(18, 18)::Identity() * 0.1; + reset_cov(P_init); + kf_input.change_P(P_init); + Eigen::Matrix P_init_output; // = MD(24, 24)::Identity() * 0.01; + reset_cov_output(P_init_output); + kf_output.change_P(P_init_output); + Eigen::Matrix Q_input = process_noise_cov_input(); + Eigen::Matrix Q_output = process_noise_cov_output(); + /*** debug record ***/ + FILE * fp; + string pos_log_dir = root_dir + "/Log/pos_log.txt"; + fp = fopen(pos_log_dir.c_str(), "w"); + open_file(); + + /*** ROS subscribe initialization ***/ + rclcpp::Subscription::SharedPtr sub_pcl_pc_; + rclcpp::Subscription::SharedPtr sub_pcl_livox_; + if (p_pre->lidar_type == AVIA) { + sub_pcl_livox_ = nh->create_subscription( + lid_topic, rclcpp::SensorDataQoS(), + [](const livox_ros_driver2::msg::CustomMsg::SharedPtr msg) { livox_pcl_cbk(msg); }); + } else { + sub_pcl_pc_ = nh->create_subscription( + lid_topic, rclcpp::SensorDataQoS(), + [](const sensor_msgs::msg::PointCloud2::SharedPtr msg) { standard_pcl_cbk(msg); }); + } + + auto sub_imu = + nh->create_subscription(imu_topic, rclcpp::SensorDataQoS(), imu_cbk); + auto pubLaserCloudFullRes = + nh->create_publisher("/cloud_registered", 1000); + auto pubLaserCloudFullRes_body = + nh->create_publisher("/cloud_registered_body", 1000); + auto pubLaserCloudEffect = + nh->create_publisher("/cloud_effected", 1000); + auto pubLaserCloudMap = nh->create_publisher("/Laser_map", 1000); + auto pubOdomAftMapped = nh->create_publisher("/Odometry", 1000); + auto pubPath = nh->create_publisher("/path", 1000); + auto plane_pub = nh->create_publisher("/planner_normal", 1000); + auto tf_broadcaster = std::make_unique(nh); + auto tf_buffer = std::make_unique(nh->get_clock()); + auto transform_listener_ = std::make_shared(*tf_buffer); + //------------------------------------------------------------------------------------------------------ + signal(SIGINT, SigHandle); + rclcpp::Rate rate(500); + rclcpp::executors::SingleThreadedExecutor executor; + executor.add_node(nh); + while (rclcpp::ok()) { + if (flg_exit) break; + executor.spin_some(); // 处理当前可用的回调 + + if (sync_packages(Measures)) { + if (flg_reset) { + RCLCPP_WARN(logger, "reset when rosbag play back"); + p_imu->Reset(); + feats_undistort.reset(new PointCloudXYZI()); + if (use_imu_as_input) { + // state_in = kf_input.get_x(); + state_in = state_input(); + kf_input.change_P(P_init); + } else { + // state_out = kf_output.get_x(); + state_out = state_output(); + kf_output.change_P(P_init_output); + } + flg_first_scan = true; + is_first_frame = true; + flg_reset = false; + init_map = false; + + { + ivox_.reset(new IVoxType(ivox_options_)); + } + } + + if (flg_first_scan) { + first_lidar_time = Measures.lidar_beg_time; + flg_first_scan = false; + if (first_imu_time < 1) { + // first_imu_time = get_time_sec(imu_next.header.stamp); + first_imu_time = get_time_sec(imu_next.header.stamp); + printf("first imu time: %f\n", first_imu_time); + } + time_current = 0.0; + if (imu_en) { + // imu_next = *(imu_deque.front()); + kf_input.x_.gravity << VEC_FROM_ARRAY(gravity); + kf_output.x_.gravity << VEC_FROM_ARRAY(gravity); + // kf_output.x_.acc << VEC_FROM_ARRAY(gravity); + // kf_output.x_.acc *= -1; + + { + while (Measures.lidar_beg_time > + get_time_sec(imu_next.header.stamp)) // if it is needed for the new map? + { + imu_deque.pop_front(); + if (imu_deque.empty()) { + break; + } + imu_last = imu_next; + imu_next = *(imu_deque.front()); + // imu_deque.pop(); + } + } + } else { + kf_input.x_.gravity << VEC_FROM_ARRAY(gravity); // _init); + kf_output.x_.gravity << VEC_FROM_ARRAY(gravity); //_init); + kf_output.x_.acc << VEC_FROM_ARRAY(gravity); //_init); + kf_output.x_.acc *= -1; + p_imu->imu_need_init_ = false; + // p_imu->after_imu_init_ = true; + } + G_m_s2 = std::sqrt(gravity[0] * gravity[0] + gravity[1] * gravity[1] + gravity[2] * gravity[2]); + } + + double t0, t1, t2, t3, t4, t5, match_start, solve_start; + match_time = 0; + solve_time = 0; + propag_time = 0; + update_time = 0; + t0 = omp_get_wtime(); + + /*** downsample the feature points in a scan ***/ + t1 = omp_get_wtime(); + p_imu->Process(Measures, feats_undistort); + if (space_down_sample) { + downSizeFilterSurf.setInputCloud(feats_undistort); + downSizeFilterSurf.filter(*feats_down_body); + sort(feats_down_body->points.begin(), feats_down_body->points.end(), time_list); + } else { + feats_down_body = Measures.lidar; + sort(feats_down_body->points.begin(), feats_down_body->points.end(), time_list); + } + { + time_seq = time_compressing(feats_down_body); + feats_down_size = feats_down_body->points.size(); + } + + if (!p_imu->after_imu_init_) { + if (!p_imu->imu_need_init_) { + V3D tmp_gravity; + if (imu_en) { + tmp_gravity = - p_imu->mean_acc / p_imu->mean_acc.norm() * G_m_s2; + } else { + tmp_gravity << VEC_FROM_ARRAY(gravity_init); + p_imu->after_imu_init_ = true; + } + // V3D tmp_gravity << VEC_FROM_ARRAY(gravity_init); + M3D rot_init; + p_imu->Set_init(tmp_gravity, rot_init); + kf_input.x_.rot = rot_init; + kf_output.x_.rot = rot_init; + // kf_input.x_.rot; //.normalize(); + // kf_output.x_.rot; //.normalize(); + kf_output.x_.acc = - rot_init.transpose() * kf_output.x_.gravity; + } else { + continue; + } + } + /*** initialize the map ***/ + if (!init_map) { + feats_down_world->resize(feats_undistort->size()); + for (int i = 0; i < feats_undistort->size(); i++) { + { + pointBodyToWorld(&(feats_undistort->points[i]), &(feats_down_world->points[i])); + } + } + for (size_t i = 0; i < feats_down_world->size(); i++) { + init_feats_world->points.emplace_back(feats_down_world->points[i]); + } + if (init_feats_world->size() < init_map_size) { + init_map = false; + } else { + ivox_->AddPoints(init_feats_world->points); + publish_init_map(pubLaserCloudMap); //(pubLaserCloudFullRes); + + init_feats_world.reset(new PointCloudXYZI()); + init_map = true; + } + continue; + } + + /*** ICP and Kalman filter update ***/ + normvec->resize(feats_down_size); + feats_down_world->resize(feats_down_size); + + Nearest_Points.resize(feats_down_size); + + t2 = omp_get_wtime(); + + /*** iterated state estimation ***/ + crossmat_list.reserve(feats_down_size); + pbody_list.reserve(feats_down_size); + // pbody_ext_list.reserve(feats_down_size); + + for (size_t i = 0; i < feats_down_body->size(); i++) { + V3D point_this( + feats_down_body->points[i].x, feats_down_body->points[i].y, feats_down_body->points[i].z); + pbody_list[i] = point_this; + if (!extrinsic_est_en) + // { + // if (!use_imu_as_input) + // { + // point_this = kf_output.x_.offset_R_L_I * point_this + + // kf_output.x_.offset_T_L_I; + // } + // else + // { + // point_this = kf_input.x_.offset_R_L_I * point_this + + // kf_input.x_.offset_T_L_I; + // } + // } + // else + { + point_this = Lidar_R_wrt_IMU * point_this + Lidar_T_wrt_IMU; + M3D point_crossmat; + point_crossmat << SKEW_SYM_MATRX(point_this); + crossmat_list[i] = point_crossmat; + } + } + if (!use_imu_as_input) { + bool imu_upda_cov = false; + effct_feat_num = 0; + /**** point by point update ****/ + if (time_seq.size() > 0) { + double pcl_beg_time = Measures.lidar_beg_time; + idx = -1; + for (k = 0; k < time_seq.size(); k++) { + PointType & point_body = feats_down_body->points[idx + time_seq[k]]; + + time_current = point_body.curvature / 1000.0 + pcl_beg_time; + + if (is_first_frame) { + if (imu_en) { + while (time_current > get_time_sec(imu_next.header.stamp)) { + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } + angvel_avr << imu_last.angular_velocity.x, imu_last.angular_velocity.y, + imu_last.angular_velocity.z; + acc_avr << imu_last.linear_acceleration.x, imu_last.linear_acceleration.y, + imu_last.linear_acceleration.z; + } + is_first_frame = false; + imu_upda_cov = true; + time_update_last = time_current; + time_predict_last_const = time_current; + } + if (imu_en && !imu_deque.empty()) { + bool last_imu = get_time_sec(imu_next.header.stamp) == + get_time_sec(imu_deque.front()->header.stamp); + while (get_time_sec(imu_next.header.stamp) < time_predict_last_const && + !imu_deque.empty()) { + if (!last_imu) { + imu_last = imu_next; + imu_next = *(imu_deque.front()); + break; + } else { + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } + } + bool imu_comes = time_current > get_time_sec(imu_next.header.stamp); + while (imu_comes) { + imu_upda_cov = true; + angvel_avr << imu_next.angular_velocity.x, imu_next.angular_velocity.y, + imu_next.angular_velocity.z; + acc_avr << imu_next.linear_acceleration.x, imu_next.linear_acceleration.y, + imu_next.linear_acceleration.z; + + /*** covariance update ***/ + double dt = get_time_sec(imu_next.header.stamp) - time_predict_last_const; + kf_output.predict(dt, Q_output, input_in, true, false); + time_predict_last_const = get_time_sec(imu_next.header.stamp); // big problem + + { + double dt_cov = get_time_sec(imu_next.header.stamp) - time_update_last; + + if (dt_cov > 0.0) { + time_update_last = get_time_sec(imu_next.header.stamp); + double propag_imu_start = omp_get_wtime(); + + kf_output.predict(dt_cov, Q_output, input_in, false, true); + + propag_time += omp_get_wtime() - propag_imu_start; + double solve_imu_start = omp_get_wtime(); + kf_output.update_iterated_dyn_share_IMU(); + solve_time += omp_get_wtime() - solve_imu_start; + } + } + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + imu_comes = time_current > get_time_sec(imu_next.header.stamp); + } + } + if (flg_reset) { + break; + } + + double dt = time_current - time_predict_last_const; + double propag_state_start = omp_get_wtime(); + if (!prop_at_freq_of_imu) { + double dt_cov = time_current - time_update_last; + if (dt_cov > 0.0) { + kf_output.predict(dt_cov, Q_output, input_in, false, true); + time_update_last = time_current; + } + } + kf_output.predict(dt, Q_output, input_in, true, false); + propag_time += omp_get_wtime() - propag_state_start; + time_predict_last_const = time_current; + double t_update_start = omp_get_wtime(); + + if (feats_down_size < 1) { + RCLCPP_WARN(logger, "No point, skip this scan!\n"); + idx += time_seq[k]; + continue; + } + if (!kf_output.update_iterated_dyn_share_modified()) { + idx = idx + time_seq[k]; + continue; + } + solve_start = omp_get_wtime(); + + if (publish_odometry_without_downsample) { + /******* Publish odometry *******/ + + publish_odometry(pubOdomAftMapped, tf_broadcaster, tf_buffer, nh->get_logger()); + if (runtime_pos_log) { + euler_cur = SO3ToEuler(kf_output.x_.rot); + fout_out << setw(20) << Measures.lidar_beg_time - first_lidar_time << " " + << euler_cur.transpose() << " " << kf_output.x_.pos.transpose() << " " + << kf_output.x_.vel.transpose() << " " << kf_output.x_.omg.transpose() + << " " << kf_output.x_.acc.transpose() << " " + << kf_output.x_.gravity.transpose() << " " << kf_output.x_.bg.transpose() + << " " << kf_output.x_.ba.transpose() << " " + << feats_undistort->points.size() << endl; + } + } + + for (int j = 0; j < time_seq[k]; j++) { + PointType & point_body_j = feats_down_body->points[idx + j + 1]; + PointType & point_world_j = feats_down_world->points[idx + j + 1]; + pointBodyToWorld(&point_body_j, &point_world_j); + } + + solve_time += omp_get_wtime() - solve_start; + + update_time += omp_get_wtime() - t_update_start; + idx += time_seq[k]; + // cout << "pbp output effect feat num:" << effct_feat_num << endl; + } + } else { + if (!imu_deque.empty()) { + imu_last = imu_next; + imu_next = *(imu_deque.front()); + + while (get_time_sec(imu_next.header.stamp) > time_current && + ((get_time_sec(imu_next.header.stamp) < + Measures.lidar_beg_time + lidar_time_inte))) { // >= ? + if (is_first_frame) { + { + { + while (get_time_sec(imu_next.header.stamp) < + Measures.lidar_beg_time + lidar_time_inte) { + // meas.imu.emplace_back(imu_deque.front()); should add to + // initialization + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } + } + break; + } + angvel_avr << imu_last.angular_velocity.x, imu_last.angular_velocity.y, + imu_last.angular_velocity.z; + + acc_avr << imu_last.linear_acceleration.x, imu_last.linear_acceleration.y, + imu_last.linear_acceleration.z; + + imu_upda_cov = true; + time_update_last = time_current; + time_predict_last_const = time_current; + + is_first_frame = false; + } + time_current = get_time_sec(imu_next.header.stamp); + + if (!is_first_frame) { + double dt = time_current - time_predict_last_const; + { + double dt_cov = time_current - time_update_last; + if (dt_cov > 0.0) { + kf_output.predict(dt_cov, Q_output, input_in, false, true); + time_update_last = time_current; + } + kf_output.predict(dt, Q_output, input_in, true, false); + } + + time_predict_last_const = time_current; + + angvel_avr << imu_next.angular_velocity.x, + imu_next.angular_velocity.y, imu_next.angular_velocity.z; + acc_avr << imu_next.linear_acceleration.x, + imu_next.linear_acceleration.y, + imu_next.linear_acceleration.z; + // acc_avr_norm = acc_avr * G_m_s2 / acc_norm; + kf_output.update_iterated_dyn_share_IMU(); + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } else { + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } + } + } + } + } else { + bool imu_prop_cov = false; + effct_feat_num = 0; + if (time_seq.size() > 0) { + double pcl_beg_time = Measures.lidar_beg_time; + idx = -1; + for (k = 0; k < time_seq.size(); k++) { + PointType & point_body = feats_down_body->points[idx + time_seq[k]]; + time_current = point_body.curvature / 1000.0 + pcl_beg_time; + if (is_first_frame) { + while (time_current > get_time_sec(imu_next.header.stamp)) { + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } + imu_prop_cov = true; + + is_first_frame = false; + t_last = time_current; + time_update_last = time_current; + { + input_in.gyro << imu_last.angular_velocity.x, imu_last.angular_velocity.y, + imu_last.angular_velocity.z; + input_in.acc << imu_last.linear_acceleration.x, imu_last.linear_acceleration.y, + imu_last.linear_acceleration.z; + input_in.acc = input_in.acc * G_m_s2 / acc_norm; + } + } + + while (time_current > get_time_sec(imu_next.header.stamp)) // && !imu_deque.empty()) + { + imu_deque.pop_front(); + + input_in.gyro << imu_last.angular_velocity.x, imu_last.angular_velocity.y, + imu_last.angular_velocity.z; + input_in.acc << imu_last.linear_acceleration.x, imu_last.linear_acceleration.y, + imu_last.linear_acceleration.z; + input_in.acc = input_in.acc * G_m_s2 / acc_norm; + double dt = get_time_sec(imu_last.header.stamp) - t_last; + + double dt_cov = get_time_sec(imu_last.header.stamp) - time_update_last; + if (dt_cov > 0.0) { + kf_input.predict(dt_cov, Q_input, input_in, false, true); + time_update_last = get_time_sec(imu_last.header.stamp); // time_current; + } + kf_input.predict(dt, Q_input, input_in, true, false); + t_last = get_time_sec(imu_last.header.stamp); + imu_prop_cov = true; + + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + // imu_upda_cov = true; + } + if (flg_reset) { + break; + } + double dt = time_current - t_last; + t_last = time_current; + double propag_start = omp_get_wtime(); + + if (!prop_at_freq_of_imu) { + double dt_cov = time_current - time_update_last; + if (dt_cov > 0.0) { + kf_input.predict(dt_cov, Q_input, input_in, false, true); + time_update_last = time_current; + } + } + kf_input.predict(dt, Q_input, input_in, true, false); + + propag_time += omp_get_wtime() - propag_start; + + double t_update_start = omp_get_wtime(); + + if (feats_down_size < 1) { + RCLCPP_WARN(logger, "No point, skip this scan!\n"); + + idx += time_seq[k]; + continue; + } + if (!kf_input.update_iterated_dyn_share_modified()) { + idx = idx + time_seq[k]; + continue; + } + + solve_start = omp_get_wtime(); + + if (publish_odometry_without_downsample) { + /******* Publish odometry *******/ + + publish_odometry(pubOdomAftMapped, tf_broadcaster, tf_buffer, nh->get_logger()); + if (runtime_pos_log) { + euler_cur = SO3ToEuler(kf_input.x_.rot); + fout_out << setw(20) << Measures.lidar_beg_time - first_lidar_time << " " + << euler_cur.transpose() << " " << kf_input.x_.pos.transpose() << " " + << kf_input.x_.vel.transpose() << " " << kf_input.x_.bg.transpose() << " " + << kf_input.x_.ba.transpose() << " " << kf_input.x_.gravity.transpose() + << " " << feats_undistort->points.size() << endl; + } + } + + for (int j = 0; j < time_seq[k]; j++) { + PointType & point_body_j = feats_down_body->points[idx + j + 1]; + PointType & point_world_j = feats_down_world->points[idx + j + 1]; + pointBodyToWorld(&point_body_j, &point_world_j); + } + solve_time += omp_get_wtime() - solve_start; + + update_time += omp_get_wtime() - t_update_start; + idx = idx + time_seq[k]; + } + } else { + if (!imu_deque.empty()) { + imu_last = imu_next; + imu_next = *(imu_deque.front()); + while (get_time_sec(imu_next.header.stamp) > time_current && + ((get_time_sec(imu_next.header.stamp) < + Measures.lidar_beg_time + lidar_time_inte))) { // >= ? + if (is_first_frame) { + { + { + while (get_time_sec(imu_next.header.stamp) < + Measures.lidar_beg_time + lidar_time_inte) { + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } + } + + break; + } + imu_prop_cov = true; + + t_last = time_current; + time_update_last = time_current; + input_in.gyro << imu_last.angular_velocity.x, imu_last.angular_velocity.y, + imu_last.angular_velocity.z; + input_in.acc << imu_last.linear_acceleration.x, imu_last.linear_acceleration.y, + imu_last.linear_acceleration.z; + input_in.acc = input_in.acc * G_m_s2 / acc_norm; + + is_first_frame = false; + } + time_current = get_time_sec(imu_next.header.stamp); + + if (!is_first_frame) { + double dt = time_current - t_last; + + double dt_cov = time_current - time_update_last; + if (dt_cov > 0.0) { + // kf_input.predict(dt_cov, Q_input, input_in, false, true); + time_update_last = get_time_sec(imu_next.header.stamp); // time_current; + } + // kf_input.predict(dt, Q_input, input_in, true, false); + + t_last = get_time_sec(imu_next.header.stamp); + + input_in.gyro << imu_next.angular_velocity.x, imu_next.angular_velocity.y, + imu_next.angular_velocity.z; + input_in.acc << imu_next.linear_acceleration.x, imu_next.linear_acceleration.y, + imu_next.linear_acceleration.z; + input_in.acc = input_in.acc * G_m_s2 / acc_norm; + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } else { + imu_deque.pop_front(); + if (imu_deque.empty()) break; + imu_last = imu_next; + imu_next = *(imu_deque.front()); + } + } + } + } + } + // M3D rot_cur_lidar; + // { + // rot_cur_lidar = state.rot_end; + // } + // euler_cur = RotMtoEuler(rot_cur_lidar); + // geoQuat = tf::createQuaternionMsgFromRollPitchYaw + // (euler_cur(0), euler_cur(1), euler_cur(2)); + /******* Publish odometry downsample *******/ + if (!publish_odometry_without_downsample) { + publish_odometry(pubOdomAftMapped, tf_broadcaster, tf_buffer, nh->get_logger()); + } + + /*** add the feature points to map ***/ + t3 = omp_get_wtime(); + + if (feats_down_size > 4) { + MapIncremental(); + } + + t5 = omp_get_wtime(); + /******* Publish points *******/ + if (path_en) publish_path(pubPath); + if (scan_pub_en || pcd_save_en) publish_frame_world(pubLaserCloudFullRes); + if (scan_pub_en && scan_body_pub_en) publish_frame_body(pubLaserCloudFullRes_body); + + /*** Debug variables Logging ***/ + if (runtime_pos_log) { + frame_num++; + aver_time_consu = aver_time_consu * (frame_num - 1) / frame_num + (t5 - t0) / frame_num; + { + aver_time_icp = aver_time_icp * (frame_num - 1) / frame_num + update_time / frame_num; + } + aver_time_match = aver_time_match * (frame_num - 1) / frame_num + (match_time) / frame_num; + aver_time_solve = aver_time_solve * (frame_num - 1) / frame_num + solve_time / frame_num; + aver_time_propag = aver_time_propag * (frame_num - 1) / frame_num + propag_time / frame_num; + T1[time_log_counter] = Measures.lidar_beg_time; + s_plot[time_log_counter] = t5 - t0; + s_plot2[time_log_counter] = feats_undistort->points.size(); + s_plot3[time_log_counter] = aver_time_consu; + time_log_counter++; + printf( + "[ mapping ]: time: IMU + Map + Input Downsample: %0.6f ave " + "match: %0.6f ave solve: %0.6f ave ICP: %0.6f map incre: " + "%0.6f ave total: %0.6f icp: %0.6f propogate: %0.6f \n", + t1 - t0, aver_time_match, aver_time_solve, t3 - t1, t5 - t3, aver_time_consu, + aver_time_icp, aver_time_propag); + if (!publish_odometry_without_downsample) { + if (!use_imu_as_input) { + fout_out << setw(20) << Measures.lidar_beg_time - first_lidar_time << " " + << euler_cur.transpose() << " " << kf_output.x_.pos.transpose() << " " + << kf_output.x_.vel.transpose() << " " << kf_output.x_.omg.transpose() << " " + << kf_output.x_.acc.transpose() << " " << kf_output.x_.gravity.transpose() + << " " << kf_output.x_.bg.transpose() << " " << kf_output.x_.ba.transpose() + << " " << feats_undistort->points.size() << endl; + } else { + fout_out << setw(20) << Measures.lidar_beg_time - first_lidar_time << " " + << euler_cur.transpose() << " " << kf_input.x_.pos.transpose() << " " + << kf_input.x_.vel.transpose() << " " << kf_input.x_.bg.transpose() << " " + << kf_input.x_.ba.transpose() << " " << kf_input.x_.gravity.transpose() << " " + << feats_undistort->points.size() << endl; + } + } + dump_lio_state_to_log(fp); + } + } + rate.sleep(); + } + //--------------------------save map----------------------------------- + /* 1. make sure you have enough memories + 2. noted that pcd save will influence the real-time performences **/ + if (pcl_wait_save->size() > 0 && pcd_save_en) { + string file_name = string("scans.pcd"); + string all_points_dir(string(string(ROOT_DIR) + "PCD/") + file_name); + pcl::PCDWriter pcd_writer; + pcd_writer.writeBinary(all_points_dir, *pcl_wait_save); + } + fout_out.close(); + fout_imu_pbp.close(); + return 0; +} diff --git a/src/rm_localization/point_lio/src/li_initialization.cpp b/src/rm_localization/point_lio/src/li_initialization.cpp new file mode 100755 index 0000000..e08ed1c --- /dev/null +++ b/src/rm_localization/point_lio/src/li_initialization.cpp @@ -0,0 +1,348 @@ +#include "li_initialization.h" +bool data_accum_finished = false, data_accum_start = false, online_calib_finish = false, refine_print = false; +int frame_num_init = 0; +double time_lag_IMU_wtr_lidar = 0.0, move_start_time = 0.0, online_calib_starts_time = 0.0; //, mean_acc_norm = 9.81; +double imu_first_time = 0.0; +bool lose_lid = false; +double timediff_imu_wrt_lidar = 0.0; +bool timediff_set_flg = false; +V3D gravity_lio = V3D::Zero(); +mutex mtx_buffer; +sensor_msgs::msg::Imu imu_last, imu_next; +// sensor_msgs::msg::Imu::ConstSharedPtr imu_last_ptr; +PointCloudXYZI::Ptr ptr_con(new PointCloudXYZI()); +double T1[MAXN], s_plot[MAXN], s_plot2[MAXN], s_plot3[MAXN], s_plot11[MAXN]; + +condition_variable sig_buffer; +int scan_count = 0; +int frame_ct = 0, wait_num = 0; +std::mutex m_time; +bool lidar_pushed = false, imu_pushed = false; +std::deque lidar_buffer; +std::deque time_buffer; +std::deque imu_deque; + +void standard_pcl_cbk(const sensor_msgs::msg::PointCloud2::SharedPtr &msg) +{ + // mtx_buffer.lock(); + scan_count ++; + double preprocess_start_time = omp_get_wtime(); + if (rclcpp::Time(msg->header.stamp).seconds() < last_timestamp_lidar) + { + RCLCPP_ERROR(rclcpp::get_logger("li_initialization"), "lidar loop back, clear buffer"); + // lidar_buffer.shrink_to_fit(); + + // mtx_buffer.unlock(); + // sig_buffer.notify_all(); + return; + } + + last_timestamp_lidar = rclcpp::Time(msg->header.stamp).seconds(); + // printf("check lidar time %f\n", last_timestamp_lidar); + // if (abs(last_timestamp_imu - last_timestamp_lidar) > 1.0 && !timediff_set_flg && !imu_deque.empty()) { + // timediff_set_flg = true; + // timediff_imu_wrt_lidar = last_timestamp_imu - last_timestamp_lidar; + // printf("Self sync IMU and LiDAR, HARD time lag is %.10lf \n \n", timediff_imu_wrt_lidar); + // } + + if ((lidar_type == VELO16 || lidar_type == OUST64 || lidar_type == HESAIxt32) && cut_frame_init) { + deque ptr; + deque timestamp_lidar; + p_pre->process_cut_frame_pcl2(msg, ptr, timestamp_lidar, cut_frame_num, scan_count); + while (!ptr.empty() && !timestamp_lidar.empty()) { + lidar_buffer.push_back(ptr.front()); + ptr.pop_front(); + time_buffer.push_back(timestamp_lidar.front() / double(1000));//unit:s + timestamp_lidar.pop_front(); + } + } + else + { + PointCloudXYZI::Ptr ptr(new PointCloudXYZI(20000,1)); + p_pre->process(msg, ptr); + if (con_frame) + { + if (frame_ct == 0) + { + time_con = last_timestamp_lidar; //rclcpp::Time(msg->header.stamp).seconds(); + } + if (frame_ct < 10) + { + for (int i = 0; i < ptr->size(); i++) + { + ptr->points[i].curvature += (last_timestamp_lidar - time_con) * 1000; + ptr_con->push_back(ptr->points[i]); + } + frame_ct ++; + } + else + { + PointCloudXYZI::Ptr ptr_con_i(new PointCloudXYZI(10000,1)); + // cout << "ptr div num:" << ptr_div->size() << endl; + *ptr_con_i = *ptr_con; + lidar_buffer.push_back(ptr_con_i); + double time_con_i = time_con; + time_buffer.push_back(time_con_i); + ptr_con->clear(); + frame_ct = 0; + } + } + else + { + lidar_buffer.emplace_back(ptr); + time_buffer.emplace_back(rclcpp::Time(msg->header.stamp).seconds()); + } + } + s_plot11[scan_count] = omp_get_wtime() - preprocess_start_time; + // mtx_buffer.unlock(); + // sig_buffer.notify_all(); +} + +void livox_pcl_cbk(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg) +{ + // mtx_buffer.lock(); + double preprocess_start_time = omp_get_wtime(); + scan_count ++; + if (rclcpp::Time(msg->header.stamp).seconds() < last_timestamp_lidar) + { + RCLCPP_ERROR(rclcpp::get_logger("li_initialization"), "lidar loop back, clear buffer"); + + // mtx_buffer.unlock(); + // sig_buffer.notify_all(); + return; + // lidar_buffer.shrink_to_fit(); + } + + last_timestamp_lidar = rclcpp::Time(msg->header.stamp).seconds(); + // if (abs(last_timestamp_imu - last_timestamp_lidar) > 1.0 && !timediff_set_flg && !imu_deque.empty()) { + // timediff_set_flg = true; + // timediff_imu_wrt_lidar = last_timestamp_imu - last_timestamp_lidar; + // printf("Self sync IMU and LiDAR, HARD time lag is %.10lf \n \n", timediff_imu_wrt_lidar); + // } + + if (cut_frame_init) { + deque ptr; + deque timestamp_lidar; + p_pre->process_cut_frame_livox(msg, ptr, timestamp_lidar, cut_frame_num, scan_count); + + while (!ptr.empty() && !timestamp_lidar.empty()) { + lidar_buffer.push_back(ptr.front()); + ptr.pop_front(); + time_buffer.push_back(timestamp_lidar.front() / double(1000));//unit:s + timestamp_lidar.pop_front(); + } + } + else + { + PointCloudXYZI::Ptr ptr(new PointCloudXYZI(10000,1)); + p_pre->process(msg, ptr); + if (con_frame) + { + if (frame_ct == 0) + { + time_con = last_timestamp_lidar; //rclcpp::Time(msg->header.stamp).seconds(); + } + if (frame_ct < 10) + { + for (int i = 0; i < ptr->size(); i++) + { + ptr->points[i].curvature += (last_timestamp_lidar - time_con) * 1000; + ptr_con->push_back(ptr->points[i]); + } + frame_ct ++; + } + else + { + PointCloudXYZI::Ptr ptr_con_i(new PointCloudXYZI(10000,1)); + // cout << "ptr div num:" << ptr_div->size() << endl; + *ptr_con_i = *ptr_con; + double time_con_i = time_con; + lidar_buffer.push_back(ptr_con_i); + time_buffer.push_back(time_con_i); + ptr_con->clear(); + frame_ct = 0; + } + } + else + { + lidar_buffer.emplace_back(ptr); + time_buffer.emplace_back(rclcpp::Time(msg->header.stamp).seconds()); + } + } + s_plot11[scan_count] = omp_get_wtime() - preprocess_start_time; + // mtx_buffer.unlock(); + // sig_buffer.notify_all(); +} + +void imu_cbk(const sensor_msgs::msg::Imu::ConstSharedPtr &msg_in) +{ + // mtx_buffer.lock(); + + // publish_count ++; + sensor_msgs::msg::Imu::SharedPtr msg(new sensor_msgs::msg::Imu(*msg_in)); + + msg->header.stamp = get_ros_time(get_time_sec(msg_in->header.stamp) - timediff_imu_wrt_lidar - time_lag_IMU_wtr_lidar); + + double timestamp = get_time_sec(msg->header.stamp); + // printf("time_diff%f, %f, %f\n", last_timestamp_imu - timestamp, last_timestamp_imu, timestamp); + + if (timestamp < last_timestamp_imu) + { + RCLCPP_ERROR(rclcpp::get_logger("li_initialization"), "imu loop back, clear deque"); + // imu_deque.shrink_to_fit(); + // cout << "check time:" << timestamp << ";" << last_timestamp_imu << endl; + // printf("time_diff%f, %f, %f\n", last_timestamp_imu - timestamp, last_timestamp_imu, timestamp); + + // mtx_buffer.unlock(); + // sig_buffer.notify_all(); + return; + } + imu_deque.emplace_back(msg); + last_timestamp_imu = timestamp; + // mtx_buffer.unlock(); + // sig_buffer.notify_all(); +} + +bool sync_packages(MeasureGroup &meas) +{ + { + if (!imu_en) + { + if (!lidar_buffer.empty()) + { + if (!lidar_pushed) + { + meas.lidar = lidar_buffer.front(); + meas.lidar_beg_time = time_buffer.front(); + lose_lid = false; + if(meas.lidar->points.size() < 1) + { + cout << "lose lidar" << std::endl; + // return false; + lose_lid = true; + } + else + { + double end_time = meas.lidar->points.back().curvature; + for (auto pt: meas.lidar->points) + { + if (pt.curvature > end_time) + { + end_time = pt.curvature; + } + } + lidar_end_time = meas.lidar_beg_time + end_time / double(1000); + meas.lidar_last_time = lidar_end_time; + } + lidar_pushed = true; + } + + time_buffer.pop_front(); + lidar_buffer.pop_front(); + lidar_pushed = false; + if (!lose_lid) + { + return true; + } + else + { + return false; + } + } + return false; + } + + if (lidar_buffer.empty() || imu_deque.empty()) + { + return false; + } + /*** push a lidar scan ***/ + if(!lidar_pushed) + { + lose_lid = false; + meas.lidar = lidar_buffer.front(); + meas.lidar_beg_time = time_buffer.front(); + if(meas.lidar->points.size() < 1) + { + cout << "lose lidar" << endl; + lose_lid = true; + // lidar_buffer.pop_front(); + // time_buffer.pop_front(); + // return false; + } + else + { + double end_time = meas.lidar->points.back().curvature; + for (auto pt: meas.lidar->points) + { + if (pt.curvature > end_time) + { + end_time = pt.curvature; + } + } + lidar_end_time = meas.lidar_beg_time + end_time / double(1000); + // cout << "check time lidar:" << end_time << endl; + meas.lidar_last_time = lidar_end_time; + } + lidar_pushed = true; + } + + if (!lose_lid && (last_timestamp_imu < lidar_end_time)) + { + return false; + } + if (lose_lid && last_timestamp_imu < meas.lidar_beg_time + lidar_time_inte) + { + return false; + } + + if (!lose_lid && !imu_pushed) + { + /*** push imu data, and pop from imu buffer ***/ + if (p_imu->imu_need_init_) + { + double imu_time = get_time_sec(imu_deque.front()->header.stamp); + imu_next = *(imu_deque.front()); + meas.imu.shrink_to_fit(); + while (imu_time < lidar_end_time) + { + meas.imu.emplace_back(imu_deque.front()); + imu_last = imu_next; + imu_deque.pop_front(); + if(imu_deque.empty()) break; + imu_time = get_time_sec(imu_deque.front()->header.stamp); // can be changed + imu_next = *(imu_deque.front()); + } + } + imu_pushed = true; + } + + if (lose_lid && !imu_pushed) + { + /*** push imu data, and pop from imu buffer ***/ + if (p_imu->imu_need_init_) + { + double imu_time = get_time_sec(imu_deque.front()->header.stamp); + meas.imu.shrink_to_fit(); + + imu_next = *(imu_deque.front()); + while (imu_time < meas.lidar_beg_time + lidar_time_inte) + { + meas.imu.emplace_back(imu_deque.front()); + imu_last = imu_next; + imu_deque.pop_front(); + if(imu_deque.empty()) break; + imu_time = get_time_sec(imu_deque.front()->header.stamp); // can be changed + imu_next = *(imu_deque.front()); + } + } + imu_pushed = true; + } + + lidar_buffer.pop_front(); + time_buffer.pop_front(); + lidar_pushed = false; + imu_pushed = false; + return true; + } +} diff --git a/src/rm_localization/point_lio/src/li_initialization.h b/src/rm_localization/point_lio/src/li_initialization.h new file mode 100755 index 0000000..bd096ce --- /dev/null +++ b/src/rm_localization/point_lio/src/li_initialization.h @@ -0,0 +1,36 @@ +#pragma once + +#include +#include "Estimator.h" +#define MAXN (720000) + +extern bool data_accum_finished, data_accum_start, online_calib_finish, refine_print; +extern int frame_num_init; +extern double time_lag_IMU_wtr_lidar, move_start_time, online_calib_starts_time; //, mean_acc_norm = 9.81; + +extern double timediff_imu_wrt_lidar; +extern bool timediff_set_flg; +extern V3D gravity_lio; +extern mutex mtx_buffer; +extern condition_variable sig_buffer; +extern int scan_count; +extern int frame_ct, wait_num; +extern std::deque lidar_buffer; +extern std::deque time_buffer; +extern std::deque imu_deque; +extern std::mutex m_time; +extern bool lidar_pushed, imu_pushed; +extern double imu_first_time; +extern bool lose_lid; +extern sensor_msgs::msg::Imu imu_last, imu_next; +extern PointCloudXYZI::Ptr ptr_con; +extern double T1[MAXN], s_plot[MAXN], s_plot2[MAXN], s_plot3[MAXN], s_plot11[MAXN]; + +// extern sensor_msgs::msg::Imu::ConstSharedPtr imu_last_ptr; + +void standard_pcl_cbk(const sensor_msgs::msg::PointCloud2::SharedPtr &msg); +void livox_pcl_cbk(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg); +void imu_cbk(const sensor_msgs::msg::Imu::ConstSharedPtr &msg_in); +bool sync_packages(MeasureGroup &meas); + +// #endif \ No newline at end of file diff --git a/src/rm_localization/point_lio/src/parameters.cpp b/src/rm_localization/point_lio/src/parameters.cpp new file mode 100755 index 0000000..da4330d --- /dev/null +++ b/src/rm_localization/point_lio/src/parameters.cpp @@ -0,0 +1,225 @@ +#include "parameters.h" + +bool is_first_frame = true; +double lidar_end_time = 0.0, first_lidar_time = 0.0, time_con = 0.0; +double last_timestamp_lidar = -1.0, last_timestamp_imu = -1.0; +int pcd_index = 0; +IVoxType::Options ivox_options_; +int ivox_nearby_type = 6; + +std::vector extrinT(3, 0.0); +std::vector extrinR(9, 0.0); +state_input state_in; +state_output state_out; +std::string lid_topic, imu_topic; +bool prop_at_freq_of_imu = true, check_satu = true, con_frame = false, cut_frame = false; +bool use_imu_as_input = false, space_down_sample = true, publish_odometry_without_downsample = false; +int init_map_size = 10, con_frame_num = 1; +double match_s = 81, satu_acc, satu_gyro, cut_frame_time_interval = 0.1; +float plane_thr = 0.1f; +double filter_size_surf_min = 0.5, filter_size_map_min = 0.5, fov_deg = 180; +// double cube_len = 2000; +float DET_RANGE = 450; +bool imu_en = true; +double imu_time_inte = 0.005; +double laser_point_cov = 0.01, acc_norm; +double vel_cov, acc_cov_input, gyr_cov_input; +double gyr_cov_output, acc_cov_output, b_gyr_cov, b_acc_cov; +double imu_meas_acc_cov, imu_meas_omg_cov; +int lidar_type, pcd_save_interval; +std::vector gravity_init, gravity; +bool runtime_pos_log, pcd_save_en, path_en, extrinsic_est_en = true; +bool scan_pub_en, scan_body_pub_en; +shared_ptr p_pre; +shared_ptr p_imu; +double time_update_last = 0.0, time_current = 0.0, time_predict_last_const = 0.0, t_last = 0.0; +double time_diff_lidar_to_imu = 0.0; + +double lidar_time_inte = 0.1, first_imu_time = 0.0; +int cut_frame_num = 1, orig_odom_freq = 10; +double online_refine_time = 20.0; //unit: s +bool cut_frame_init = true; + +MeasureGroup Measures; + +ofstream fout_out, fout_imu_pbp, fout_rtk; + +void readParameters(shared_ptr &nh) +{ + p_pre.reset(new Preprocess()); + p_imu.reset(new ImuProcess()); + + nh->declare_parameter("prop_at_freq_of_imu", true); + nh->declare_parameter("use_imu_as_input", true); + nh->declare_parameter("check_satu", true); + nh->declare_parameter("init_map_size", 100); + nh->declare_parameter("space_down_sample", true); + nh->declare_parameter("mapping.satu_acc", 3.0); + nh->declare_parameter("mapping.satu_gyro", 35.0); + nh->declare_parameter("mapping.acc_norm", 1.0); + nh->declare_parameter("mapping.plane_thr", 0.05f); + nh->declare_parameter("point_filter_num", 2); + nh->declare_parameter("common.lid_topic", "/livox/lidar"); + nh->declare_parameter("common.imu_topic", "/livox/imu"); + nh->declare_parameter("common.con_frame", false); + nh->declare_parameter("common.con_frame_num", 1); + nh->declare_parameter("common.cut_frame", false); + nh->declare_parameter("common.cut_frame_time_interval", 0.1); + nh->declare_parameter("common.time_diff_lidar_to_imu", 0.0); + nh->declare_parameter("filter_size_surf", 0.5); + nh->declare_parameter("filter_size_map", 0.5); + // nh.param("cube_side_length",cube_len,2000); + nh->declare_parameter("mapping.det_range", 300.f); + nh->declare_parameter("mapping.fov_degree", 180); + nh->declare_parameter("mapping.imu_en", true); + nh->declare_parameter("mapping.extrinsic_est_en", true); + nh->declare_parameter("mapping.imu_time_inte", 0.005); + nh->declare_parameter("mapping.lidar_meas_cov", 0.1); + nh->declare_parameter("mapping.acc_cov_input", 0.1); + nh->declare_parameter("mapping.vel_cov", 20); + nh->declare_parameter("mapping.gyr_cov_input", 0.1); + nh->declare_parameter("mapping.gyr_cov_output", 0.1); + nh->declare_parameter("mapping.acc_cov_output", 0.1); + nh->declare_parameter("mapping.b_gyr_cov", 0.0001); + nh->declare_parameter("mapping.b_acc_cov", 0.0001); + nh->declare_parameter("mapping.imu_meas_acc_cov", 0.1); + nh->declare_parameter("mapping.imu_meas_omg_cov", 0.1); + nh->declare_parameter("preprocess.blind", 1.0); + nh->declare_parameter("preprocess.lidar_type", 1); + nh->declare_parameter("preprocess.scan_line", 16); + nh->declare_parameter("preprocess.scan_rate", 10); + nh->declare_parameter("preprocess.timestamp_unit", 1); + nh->declare_parameter("mapping.match_s", 81); + nh->declare_parameter>("mapping.gravity", {0, 0, -9.810}); + nh->declare_parameter>("mapping.gravity_init", {0, 0, -9.810}); + nh->declare_parameter>("mapping.extrinsic_T", {0, 0, 0}); + nh->declare_parameter>("mapping.extrinsic_R", {1, 0, 0, 0, 1, 0, 0, 0, 1}); + nh->declare_parameter("odometry.publish_odometry_without_downsample", false); + nh->declare_parameter("publish.path_en", true); + nh->declare_parameter("publish.scan_publish_en", true); + nh->declare_parameter("publish.scan_bodyframe_pub_en", true); + nh->declare_parameter("runtime_pos_log_enable", false); + nh->declare_parameter("pcd_save.pcd_save_en", false); + nh->declare_parameter("pcd_save.interval", -1); + nh->declare_parameter("mapping.lidar_time_inte", 0.1); + nh->declare_parameter("mapping.ivox_grid_resolution", 0.2); + nh->declare_parameter("ivox_nearby_type", 18); + + nh->get_parameter("prop_at_freq_of_imu", prop_at_freq_of_imu); + nh->get_parameter("use_imu_as_input", use_imu_as_input); + nh->get_parameter("check_satu", check_satu); + nh->get_parameter("init_map_size", init_map_size); + nh->get_parameter("space_down_sample", space_down_sample); + nh->get_parameter("mapping.satu_acc", satu_acc); + nh->get_parameter("mapping.satu_gyro", satu_gyro); + nh->get_parameter("mapping.acc_norm", acc_norm); + nh->get_parameter("mapping.plane_thr", plane_thr); + nh->get_parameter("point_filter_num", p_pre->point_filter_num); + nh->get_parameter("common.lid_topic", lid_topic); + nh->get_parameter("common.imu_topic", imu_topic); + nh->get_parameter("common.con_frame", con_frame); + nh->get_parameter("common.con_frame_num", con_frame_num); + nh->get_parameter("common.cut_frame", cut_frame); + nh->get_parameter("common.cut_frame_time_interval", cut_frame_time_interval); + nh->get_parameter("common.time_diff_lidar_to_imu", time_diff_lidar_to_imu); + nh->get_parameter("filter_size_surf", filter_size_surf_min); + nh->get_parameter("filter_size_map", filter_size_map_min); + nh->get_parameter("mapping.det_range", DET_RANGE); + nh->get_parameter("mapping.fov_degree", fov_deg); + nh->get_parameter("mapping.imu_en", imu_en); + nh->get_parameter("mapping.extrinsic_est_en", extrinsic_est_en); + nh->get_parameter("mapping.imu_time_inte", imu_time_inte); + nh->get_parameter("mapping.lidar_meas_cov", laser_point_cov); + nh->get_parameter("mapping.acc_cov_input", acc_cov_input); + nh->get_parameter("mapping.vel_cov", vel_cov); + nh->get_parameter("mapping.gyr_cov_input", gyr_cov_input); + nh->get_parameter("mapping.gyr_cov_output", gyr_cov_output); + nh->get_parameter("mapping.acc_cov_output", acc_cov_output); + nh->get_parameter("mapping.b_gyr_cov", b_gyr_cov); + nh->get_parameter("mapping.b_acc_cov", b_acc_cov); + nh->get_parameter("mapping.imu_meas_acc_cov", imu_meas_acc_cov); + nh->get_parameter("mapping.imu_meas_omg_cov", imu_meas_omg_cov); + nh->get_parameter("preprocess.blind", p_pre->blind); + nh->get_parameter("preprocess.lidar_type", lidar_type); + nh->get_parameter("preprocess.scan_line", p_pre->N_SCANS); + nh->get_parameter("preprocess.scan_rate", p_pre->SCAN_RATE); + nh->get_parameter("preprocess.timestamp_unit", p_pre->time_unit); + nh->get_parameter("mapping.match_s", match_s); + nh->get_parameter("mapping.gravity", gravity); + nh->get_parameter("mapping.gravity_init", gravity_init); + nh->get_parameter("mapping.extrinsic_T", extrinT); + nh->get_parameter("mapping.extrinsic_R", extrinR); + nh->get_parameter("odometry.publish_odometry_without_downsample", publish_odometry_without_downsample); + nh->get_parameter("publish.path_en", path_en); + nh->get_parameter("publish.scan_publish_en", scan_pub_en); + nh->get_parameter("publish.scan_bodyframe_pub_en", scan_body_pub_en); + nh->get_parameter("runtime_pos_log_enable", runtime_pos_log); + nh->get_parameter("pcd_save.pcd_save_en", pcd_save_en); + nh->get_parameter("pcd_save.interval", pcd_save_interval); + nh->get_parameter("mapping.lidar_time_inte", lidar_time_inte); + nh->get_parameter("mapping.lidar_meas_cov", laser_point_cov); + nh->get_parameter("mapping.ivox_grid_resolution", ivox_options_.resolution_); + nh->get_parameter("ivox_nearby_type", ivox_nearby_type); + + if (ivox_nearby_type == 0) { + ivox_options_.nearby_type_ = IVoxType::NearbyType::CENTER; + } else if (ivox_nearby_type == 6) { + ivox_options_.nearby_type_ = IVoxType::NearbyType::NEARBY6; + } else if (ivox_nearby_type == 18) { + ivox_options_.nearby_type_ = IVoxType::NearbyType::NEARBY18; + } else if (ivox_nearby_type == 26) { + ivox_options_.nearby_type_ = IVoxType::NearbyType::NEARBY26; + } else { + // LOG(WARNING) << "unknown ivox_nearby_type, use NEARBY18"; + ivox_options_.nearby_type_ = IVoxType::NearbyType::NEARBY18; + } + p_imu->gravity_ << VEC_FROM_ARRAY(gravity); +} + +Eigen::Matrix SO3ToEuler(const SO3 &rot) +{ + double sy = sqrt(rot(0,0)*rot(0,0) + rot(1,0)*rot(1,0)); + bool singular = sy < 1e-6; + double x, y, z; + if(!singular) + { + x = atan2(rot(2, 1), rot(2, 2)); + y = atan2(-rot(2, 0), sy); + z = atan2(rot(1, 0), rot(0, 0)); + } + else + { + x = atan2(-rot(1, 2), rot(1, 1)); + y = atan2(-rot(2, 0), sy); + z = 0; + } + Eigen::Matrix ang(x, y, z); + return ang; +} + +void open_file() +{ + + fout_out.open(DEBUG_FILE_DIR("mat_out.txt"),ios::out); + fout_imu_pbp.open(DEBUG_FILE_DIR("imu_pbp.txt"),ios::out); + if (fout_out && fout_imu_pbp) + cout << "~~~~"< & P_init) +{ + P_init = MD(24, 24)::Identity() * 0.1; + P_init.block<3, 3>(21, 21) = MD(3,3)::Identity() * 0.0001; + P_init.block<6, 6>(15, 15) = MD(6,6)::Identity() * 0.001; +} + +void reset_cov_output(Eigen::Matrix & P_init_output) +{ + P_init_output = MD(30, 30)::Identity() * 0.01; + P_init_output.block<3, 3>(21, 21) = MD(3,3)::Identity() * 0.0001; + // P_init_output.block<6, 6>(6, 6) = MD(6,6)::Identity() * 0.0001; + P_init_output.block<6, 6>(24, 24) = MD(6,6)::Identity() * 0.001; +} \ No newline at end of file diff --git a/src/rm_localization/point_lio/src/parameters.h b/src/rm_localization/point_lio/src/parameters.h new file mode 100755 index 0000000..8b00e27 --- /dev/null +++ b/src/rm_localization/point_lio/src/parameters.h @@ -0,0 +1,83 @@ +// #ifndef PARAM_H +// #define PARAM_H +#pragma once +#include +#include +#include +#include +#include "preprocess.h" +#include "IMU_Processing.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// #define IVOX_NODE_TYPE_PHC + +#ifdef IVOX_NODE_TYPE_PHC + using IVoxType = faster_lio::IVox<3, faster_lio::IVoxNodeType::PHC, PointType>; +#else + using IVoxType = faster_lio::IVox<3, faster_lio::IVoxNodeType::DEFAULT, PointType>; +#endif + +extern bool is_first_frame; +extern double lidar_end_time, first_lidar_time, time_con; +extern double last_timestamp_lidar, last_timestamp_imu; +extern int pcd_index; +extern IVoxType::Options ivox_options_; +extern int ivox_nearby_type; +extern state_input state_in; +extern state_output state_out; +extern std::string lid_topic, imu_topic; +extern bool prop_at_freq_of_imu, check_satu, con_frame, cut_frame; +extern bool use_imu_as_input, space_down_sample; +extern bool extrinsic_est_en, publish_odometry_without_downsample; +extern int init_map_size, con_frame_num; +extern double match_s, satu_acc, satu_gyro, cut_frame_time_interval; +extern float plane_thr; +extern double filter_size_surf_min, filter_size_map_min, fov_deg; +// extern double cube_len; +extern float DET_RANGE; +extern bool imu_en; +extern double imu_time_inte; +extern double laser_point_cov, acc_norm; +extern double acc_cov_input, gyr_cov_input, vel_cov; +extern double gyr_cov_output, acc_cov_output, b_gyr_cov, b_acc_cov; +extern double imu_meas_acc_cov, imu_meas_omg_cov; +extern int lidar_type, pcd_save_interval; +extern std::vector gravity_init, gravity; +extern bool runtime_pos_log, pcd_save_en, path_en; +extern bool scan_pub_en, scan_body_pub_en; +extern shared_ptr p_pre; +extern shared_ptr p_imu; +extern bool is_first_frame; + +extern std::vector extrinT; +extern std::vector extrinR; +extern double time_diff_lidar_to_imu; +extern double lidar_time_inte, first_imu_time; +extern int cut_frame_num, orig_odom_freq; +extern double online_refine_time; //unit: s +extern bool cut_frame_init; +extern double time_update_last, time_current, time_predict_last_const, t_last; + +extern MeasureGroup Measures; + +extern ofstream fout_out, fout_imu_pbp, fout_rtk; +void readParameters(shared_ptr &nh); +void open_file(); +Eigen::Matrix SO3ToEuler(const SO3 &orient); +void reset_cov(Eigen::Matrix & P_init); +void reset_cov_output(Eigen::Matrix & P_init_output); \ No newline at end of file diff --git a/src/rm_localization/point_lio/src/preprocess.cpp b/src/rm_localization/point_lio/src/preprocess.cpp new file mode 100755 index 0000000..9b814d9 --- /dev/null +++ b/src/rm_localization/point_lio/src/preprocess.cpp @@ -0,0 +1,1027 @@ +#include "preprocess.h" +#include + +#define RETURN0 0x00 +#define RETURN0AND1 0x10 + +const bool time_list_cut_frame(PointType &x, PointType &y) { + return (x.curvature < y.curvature); +} + +Preprocess::Preprocess() + :lidar_type(AVIA), blind(0.01), point_filter_num(1) +{ + inf_bound = 10; + N_SCANS = 6; + SCAN_RATE = 10; + group_size = 8; + disA = 0.01; + disA = 0.1; // B? + p2l_ratio = 225; + limit_maxmid =6.25; + limit_midmin =6.25; + limit_maxmin = 3.24; + jump_up_limit = 170.0; + jump_down_limit = 8.0; + cos160 = 160.0; + edgea = 2; + edgeb = 0.1; + smallp_intersect = 172.5; + smallp_ratio = 1.2; + given_offset_time = false; + + jump_up_limit = cos(jump_up_limit/180*M_PI); + jump_down_limit = cos(jump_down_limit/180*M_PI); + cos160 = cos(cos160/180*M_PI); + smallp_intersect = cos(smallp_intersect/180*M_PI); +} + +Preprocess::~Preprocess() {} + +void Preprocess::set(bool feat_en, int lid_type, double bld, int pfilt_num) +{ + lidar_type = lid_type; + blind = bld; + point_filter_num = pfilt_num; +} + +void Preprocess::process(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg, PointCloudXYZI::Ptr &pcl_out) +{ + avia_handler(msg); + *pcl_out = pl_surf; +} + +void Preprocess::process(const sensor_msgs::msg::PointCloud2::SharedPtr &msg, PointCloudXYZI::Ptr &pcl_out) +{ + switch (time_unit) + { + case SEC: + time_unit_scale = 1.e3f; + break; + case MS: + time_unit_scale = 1.f; + break; + case US: + time_unit_scale = 1.e-3f; + break; + case NS: + time_unit_scale = 1.e-6f; + break; + default: + time_unit_scale = 1.f; + break; + } + + switch (lidar_type) + { + case OUST64: + oust64_handler(msg); + break; + + case VELO16: + velodyne_handler(msg); + break; + + case HESAIxt32: + hesai_handler(msg); + break; + + default: + printf("Error LiDAR Type"); + break; + } + *pcl_out = pl_surf; +} + + +void Preprocess::process_cut_frame_livox(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg, + deque &pcl_out, deque &time_lidar, + const int required_frame_num, int scan_count) { + int plsize = msg->point_num; + pl_surf.clear(); + pl_surf.reserve(plsize); + pl_full.clear(); + pl_full.resize(plsize); + int valid_point_num = 0; + + for (uint i = 1; i < plsize; i++) { + if ((msg->points[i].line < N_SCANS) && + ((msg->points[i].tag & 0x30) == 0x10 || (msg->points[i].tag & 0x30) == 0x00)) + { + valid_point_num++; + if (valid_point_num % point_filter_num == 0) { + pl_full[i].x = msg->points[i].x; + pl_full[i].y = msg->points[i].y; + pl_full[i].z = msg->points[i].z; + pl_full[i].intensity = msg->points[i].reflectivity; + //use curvature as time of each laser points,unit: ms + pl_full[i].curvature = msg->points[i].offset_time / float(1000000); + + double dist = pl_full[i].x * pl_full[i].x + pl_full[i].y * pl_full[i].y + pl_full[i].z * pl_full[i].z; + if (dist < blind * blind) continue; + + if ((abs(pl_full[i].x - pl_full[i - 1].x) > 1e-7) + || (abs(pl_full[i].y - pl_full[i - 1].y) > 1e-7) + || (abs(pl_full[i].z - pl_full[i - 1].z) > 1e-7)) { + pl_surf.push_back(pl_full[i]); + } + } + } + } + sort(pl_surf.points.begin(), pl_surf.points.end(), time_list_cut_frame); + //end time of last frame,单位ms + double last_frame_end_time = rclcpp::Time(msg->header.stamp).seconds() * 1000; + uint valid_num = 0; + uint cut_num = 0; + uint valid_pcl_size = pl_surf.points.size(); + + int required_cut_num = required_frame_num; + if (scan_count < 5) + required_cut_num = 1; + + PointCloudXYZI pcl_cut; + for (uint i = 1; i < valid_pcl_size; i++) { + valid_num++; + //Compute new opffset time of each point:ms + pl_surf[i].curvature += rclcpp::Time(msg->header.stamp).seconds() * 1000 - last_frame_end_time; + pcl_cut.push_back(pl_surf[i]); + if (valid_num == (int((cut_num + 1) * valid_pcl_size / required_cut_num) - 1)) { + cut_num++; + time_lidar.push_back(last_frame_end_time); + PointCloudXYZI::Ptr pcl_temp(new PointCloudXYZI()); //Initialize shared_ptr + *pcl_temp = pcl_cut; + pcl_out.push_back(pcl_temp); + //Update frame head + last_frame_end_time += pl_surf[i].curvature; + pcl_cut.clear(); + pcl_cut.reserve(valid_pcl_size * 2 / required_frame_num); + } + } +} +#define MAX_LINE_NUM 128 +void +Preprocess::process_cut_frame_pcl2(const sensor_msgs::msg::PointCloud2::SharedPtr &msg, deque &pcl_out, + deque &time_lidar, const int required_frame_num, int scan_count) { + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + if (lidar_type == VELO16) { + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + pl_surf.reserve(plsize); + + bool is_first[MAX_LINE_NUM]; + double yaw_fp[MAX_LINE_NUM] = {0}; // yaw of first scan point + double omega_l = 3.61; // scan angular velocity (deg/ms) + float yaw_last[MAX_LINE_NUM] = {0.0}; // yaw of last scan point + float time_last[MAX_LINE_NUM] = {0.0}; // last offset time + + if (pl_orig.points[plsize - 1].time > 0) { + given_offset_time = true; + } else { + cout << "Compute offset time using constant rotation model." << endl; + given_offset_time = false; + memset(is_first, true, sizeof(is_first)); + } + + for (int i = 0; i < plsize; i++) { + PointType added_pt; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.curvature = pl_orig.points[i].time * 1000.0; //ms + + double dist = added_pt.x * added_pt.x + added_pt.y * added_pt.y + added_pt.z * added_pt.z; + if ( dist < blind * blind || isnan(added_pt.x) || isnan(added_pt.y) || isnan(added_pt.z)) + continue; + + if (!given_offset_time) { + int layer = pl_orig.points[i].ring; + double yaw_angle = atan2(added_pt.y, added_pt.x) * 57.2957; + + if (is_first[layer]) { + yaw_fp[layer] = yaw_angle; + is_first[layer] = false; + added_pt.curvature = 0.0; + yaw_last[layer] = yaw_angle; + time_last[layer] = added_pt.curvature; + continue; + } + // compute offset time + if (yaw_angle <= yaw_fp[layer]) { + added_pt.curvature = (yaw_fp[layer] - yaw_angle) / omega_l; + } else { + added_pt.curvature = (yaw_fp[layer] - yaw_angle + 360.0) / omega_l; + } + if (added_pt.curvature < time_last[layer]) added_pt.curvature += 360.0 / omega_l; + + yaw_last[layer] = yaw_angle; + time_last[layer] = added_pt.curvature; + } + + + if (i % point_filter_num == 0 && pl_orig.points[i].ring < N_SCANS) { + pl_surf.points.push_back(added_pt); + } + } + } else if (lidar_type == OUST64) { + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + pl_surf.reserve(plsize); + for (int i = 0; i < plsize; i++) { + PointType added_pt; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.curvature = pl_orig.points[i].t / 1e6; //ns to ms + + double dist = added_pt.x * added_pt.x + added_pt.y * added_pt.y + added_pt.z * added_pt.z; + if ( dist < blind * blind || isnan(added_pt.x) || isnan(added_pt.y) || isnan(added_pt.z)) + continue; + + if (i % point_filter_num == 0 && pl_orig.points[i].ring < N_SCANS) { + pl_surf.points.push_back(added_pt); + } + } + } else if(lidar_type == HESAIxt32) { + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + pl_surf.reserve(plsize); + for (int i = 0; i < plsize; i++) { + PointType added_pt; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.curvature = (pl_orig.points[i].timestamp - rclcpp::Time(msg->header.stamp).seconds()) * 1000; //s to ms + + double dist = added_pt.x * added_pt.x + added_pt.y * added_pt.y + added_pt.z * added_pt.z; + if ( dist < blind * blind || isnan(added_pt.x) || isnan(added_pt.y) || isnan(added_pt.z)) + continue; + + if (i % point_filter_num == 0 && pl_orig.points[i].ring < N_SCANS) { + pl_surf.points.push_back(added_pt); + } + } + }else{ + cout << "Wrong LiDAR Type!!!" << endl; + return; + } + + sort(pl_surf.points.begin(), pl_surf.points.end(), time_list_cut_frame); + + //ms + double last_frame_end_time = rclcpp::Time(msg->header.stamp).seconds() * 1000; + uint valid_num = 0; + uint cut_num = 0; + uint valid_pcl_size = pl_surf.points.size(); + + int required_cut_num = required_frame_num; + + if (scan_count < 20) + required_cut_num = 1; + + + PointCloudXYZI pcl_cut; + for (uint i = 1; i < valid_pcl_size; i++) { + valid_num++; + pl_surf[i].curvature += rclcpp::Time(msg->header.stamp).seconds() * 1000 - last_frame_end_time; + pcl_cut.push_back(pl_surf[i]); + + if (valid_num == (int((cut_num + 1) * valid_pcl_size / required_cut_num) - 1)) { + cut_num++; + time_lidar.push_back(last_frame_end_time); + PointCloudXYZI::Ptr pcl_temp(new PointCloudXYZI()); + *pcl_temp = pcl_cut; + pcl_out.push_back(pcl_temp); + last_frame_end_time += pl_surf[i].curvature; + pcl_cut.clear(); + pcl_cut.reserve(valid_pcl_size * 2 / required_frame_num); + } + } +} + +void Preprocess::avia_handler(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + double t1 = omp_get_wtime(); + int plsize = msg->point_num; + + pl_corn.reserve(plsize); + pl_surf.reserve(plsize); + pl_full.resize(plsize); + + for(int i=0; ipoints[i].line < N_SCANS) && ((msg->points[i].tag & 0x30) == 0x10 || (msg->points[i].tag & 0x30) == 0x00)) + { + valid_num ++; + if (valid_num % point_filter_num == 0) + { + pl_full[i].x = msg->points[i].x; + pl_full[i].y = msg->points[i].y; + pl_full[i].z = msg->points[i].z; + pl_full[i].intensity = msg->points[i].reflectivity; + pl_full[i].curvature = msg->points[i].offset_time / float(1000000); // use curvature as time of each laser points, curvature unit: ms + + if(((abs(pl_full[i].x - pl_full[i-1].x) > 1e-7) + || (abs(pl_full[i].y - pl_full[i-1].y) > 1e-7) + || (abs(pl_full[i].z - pl_full[i-1].z) > 1e-7)) + && (pl_full[i].x * pl_full[i].x + pl_full[i].y * pl_full[i].y + pl_full[i].z * pl_full[i].z > (blind * blind))) + { + pl_surf.push_back(pl_full[i]); + } + } + } + } + +} + +void Preprocess::oust64_handler(const sensor_msgs::msg::PointCloud2::SharedPtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.size(); + pl_corn.reserve(plsize); + pl_surf.reserve(plsize); + + + double time_stamp = rclcpp::Time(msg->header.stamp).seconds(); + // cout << "===================================" << endl; + // printf("Pt size = %d, N_SCANS = %d\r\n", plsize, N_SCANS); + for (int i = 0; i < pl_orig.points.size(); i++) + { + if (i % point_filter_num != 0) continue; + + double range = pl_orig.points[i].x * pl_orig.points[i].x + pl_orig.points[i].y * pl_orig.points[i].y + pl_orig.points[i].z * pl_orig.points[i].z; + + if (range < (blind * blind)) continue; + + Eigen::Vector3d pt_vec; + PointType added_pt; + added_pt.x = pl_orig.points[i].x; + added_pt.y = pl_orig.points[i].y; + added_pt.z = pl_orig.points[i].z; + added_pt.intensity = pl_orig.points[i].intensity; + added_pt.normal_x = 0; + added_pt.normal_y = 0; + added_pt.normal_z = 0; + added_pt.curvature = pl_orig.points[i].t * time_unit_scale; // curvature unit: ms + + pl_surf.points.push_back(added_pt); + } + + // pub_func(pl_surf, pub_full, msg->header.stamp); + // pub_func(pl_surf, pub_corn, msg->header.stamp); +} + +void Preprocess::velodyne_handler(const sensor_msgs::msg::PointCloud2::SharedPtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + if (plsize == 0) return; + pl_surf.reserve(plsize); + + /*** These variables only works when no point timestamps given ***/ + double omega_l = 0.361 * SCAN_RATE; // scan angular velocity + std::vector is_first(N_SCANS,true); + std::vector yaw_fp(N_SCANS, 0.0); // yaw of first scan point + std::vector yaw_last(N_SCANS, 0.0); // yaw of last scan point + std::vector time_last(N_SCANS, 0.0); // last offset time + /*****************************************************************/ + + if (pl_orig.points[plsize - 1].time > 0) + { + given_offset_time = true; + } + else + { + given_offset_time = false; + double yaw_first = atan2(pl_orig.points[0].y, pl_orig.points[0].x) * 57.29578; + double yaw_end = yaw_first; + int layer_first = pl_orig.points[0].ring; + for (uint i = plsize - 1; i > 0; i--) + { + if (pl_orig.points[i].ring == layer_first) + { + yaw_end = atan2(pl_orig.points[i].y, pl_orig.points[i].x) * 57.29578; + break; + } + } + } + + for (int i = 0; i < plsize; i++) + { + PointType added_pt; + // cout<<"!!!!!!"< (blind * blind)) + { + pl_surf.points.push_back(added_pt); + } + } + } + +} + +void Preprocess::hesai_handler(const sensor_msgs::msg::PointCloud2::SharedPtr &msg) +{ + pl_surf.clear(); + pl_corn.clear(); + pl_full.clear(); + + pcl::PointCloud pl_orig; + pcl::fromROSMsg(*msg, pl_orig); + int plsize = pl_orig.points.size(); + if (plsize == 0) return; + pl_surf.reserve(plsize); + + /*** These variables only works when no point timestamps given ***/ + double omega_l = 0.361 * SCAN_RATE; // scan angular velocity + std::vector is_first(N_SCANS,true); + std::vector yaw_fp(N_SCANS, 0.0); // yaw of first scan point + std::vector yaw_last(N_SCANS, 0.0); // yaw of last scan point + std::vector time_last(N_SCANS, 0.0); // last offset time + /*****************************************************************/ + + if (pl_orig.points[plsize - 1].timestamp > 0) + { + given_offset_time = true; + } + else + { + given_offset_time = false; + double yaw_first = atan2(pl_orig.points[0].y, pl_orig.points[0].x) * 57.29578; + double yaw_end = yaw_first; + int layer_first = pl_orig.points[0].ring; + for (uint i = plsize - 1; i > 0; i--) + { + if (pl_orig.points[i].ring == layer_first) + { + yaw_end = atan2(pl_orig.points[i].y, pl_orig.points[i].x) * 57.29578; + break; + } + } + } + + double time_head = pl_orig.points[0].timestamp; + + for (int i = 0; i < plsize; i++) + { + PointType added_pt; + // cout<<"!!!!!!"< (blind * blind)) + { + pl_surf.points.push_back(added_pt); + } + } + } + +} + +void Preprocess::give_feature(pcl::PointCloud &pl, vector &types) +{ + int plsize = pl.size(); + int plsize2; + if(plsize == 0) + { + printf("something wrong\n"); + return; + } + uint head = 0; + + while(types[head].range < blind) + { + head++; + } + + // Surf + plsize2 = (plsize > group_size) ? (plsize - group_size) : 0; + + Eigen::Vector3d curr_direct(Eigen::Vector3d::Zero()); + Eigen::Vector3d last_direct(Eigen::Vector3d::Zero()); + + uint i_nex = 0, i2; + uint last_i = 0; uint last_i_nex = 0; + int last_state = 0; + int plane_type; + + for(uint i=head; i0.5) + if(last_state==1 && last_direct.norm()>0.1) + { + double mod = last_direct.transpose() * curr_direct; + if(mod>-0.707 && mod<0.707) + { + types[i].ftype = Edge_Plane; + } + else + { + types[i].ftype = Real_Plane; + } + } + + i = i_nex - 1; + last_state = 1; + } + else // if(plane_type == 2) + { + i = i_nex; + last_state = 0; + } + + last_i = i2; + last_i_nex = i_nex; + last_direct = curr_direct; + } + + plsize2 = plsize > 3 ? plsize - 3 : 0; + for(uint i=head+3; i=Real_Plane) + { + continue; + } + + if(types[i-1].dista<1e-16 || types[i].dista<1e-16) + { + continue; + } + + Eigen::Vector3d vec_a(pl[i].x, pl[i].y, pl[i].z); + Eigen::Vector3d vecs[2]; + + for(int j=0; j<2; j++) + { + int m = -1; + if(j == 1) + { + m = 1; + } + + if(types[i+m].range < blind) + { + if(types[i].range > inf_bound) + { + types[i].edj[j] = Nr_inf; + } + else + { + types[i].edj[j] = Nr_blind; + } + continue; + } + + vecs[j] = Eigen::Vector3d(pl[i+m].x, pl[i+m].y, pl[i+m].z); + vecs[j] = vecs[j] - vec_a; + + types[i].angle[j] = vec_a.dot(vecs[j]) / vec_a.norm() / vecs[j].norm(); + if(types[i].angle[j] < jump_up_limit) + { + types[i].edj[j] = Nr_180; + } + else if(types[i].angle[j] > jump_down_limit) + { + types[i].edj[j] = Nr_zero; + } + } + + types[i].intersect = vecs[Prev].dot(vecs[Next]) / vecs[Prev].norm() / vecs[Next].norm(); + if(types[i].edj[Prev]==Nr_nor && types[i].edj[Next]==Nr_zero && types[i].dista>0.0225 && types[i].dista>4*types[i-1].dista) + { + if(types[i].intersect > cos160) + { + if(edge_jump_judge(pl, types, i, Prev)) + { + types[i].ftype = Edge_Jump; + } + } + } + else if(types[i].edj[Prev]==Nr_zero && types[i].edj[Next]== Nr_nor && types[i-1].dista>0.0225 && types[i-1].dista>4*types[i].dista) + { + if(types[i].intersect > cos160) + { + if(edge_jump_judge(pl, types, i, Next)) + { + types[i].ftype = Edge_Jump; + } + } + } + else if(types[i].edj[Prev]==Nr_nor && types[i].edj[Next]==Nr_inf) + { + if(edge_jump_judge(pl, types, i, Prev)) + { + types[i].ftype = Edge_Jump; + } + } + else if(types[i].edj[Prev]==Nr_inf && types[i].edj[Next]==Nr_nor) + { + if(edge_jump_judge(pl, types, i, Next)) + { + types[i].ftype = Edge_Jump; + } + + } + else if(types[i].edj[Prev]>Nr_nor && types[i].edj[Next]>Nr_nor) + { + if(types[i].ftype == Nor) + { + types[i].ftype = Wire; + } + } + } + + plsize2 = plsize-1; + double ratio; + for(uint i=head+1; i types[i].dista) + { + ratio = types[i-1].dista / types[i].dista; + } + else + { + ratio = types[i].dista / types[i-1].dista; + } + + if(types[i].intersect &types, uint i_cur, uint &i_nex, Eigen::Vector3d &curr_direct) +{ + double group_dis = disA*types[i_cur].range + disB; + group_dis = group_dis * group_dis; + // i_nex = i_cur; + + double two_dis; + vector disarr; + disarr.reserve(20); + + for(i_nex=i_cur; i_nex= pl.size()) || (i_nex >= pl.size())) break; + + if(types[i_nex].range < blind) + { + curr_direct.setZero(); + return 2; + } + vx = pl[i_nex].x - pl[i_cur].x; + vy = pl[i_nex].y - pl[i_cur].y; + vz = pl[i_nex].z - pl[i_cur].z; + two_dis = vx*vx + vy*vy + vz*vz; + if(two_dis >= group_dis) + { + break; + } + disarr.push_back(types[i_nex].dista); + i_nex++; + } + + double leng_wid = 0; + double v1[3], v2[3]; + for(uint j=i_cur+1; j= pl.size()) || (i_cur >= pl.size())) break; + v1[0] = pl[j].x - pl[i_cur].x; + v1[1] = pl[j].y - pl[i_cur].y; + v1[2] = pl[j].z - pl[i_cur].z; + + v2[0] = v1[1]*vz - vy*v1[2]; + v2[1] = v1[2]*vx - v1[0]*vz; + v2[2] = v1[0]*vy - vx*v1[1]; + + double lw = v2[0]*v2[0] + v2[1]*v2[1] + v2[2]*v2[2]; + if(lw > leng_wid) + { + leng_wid = lw; + } + } + + + if((two_dis*two_dis/leng_wid) < p2l_ratio) + { + curr_direct.setZero(); + return 0; + } + + uint disarrsize = disarr.size(); + for(uint j=0; j=limit_maxmid || dismid_min>=limit_midmin) + { + curr_direct.setZero(); + return 0; + } + } + else + { + double dismax_min = disarr[0] / disarr[disarrsize-2]; + if(dismax_min >= limit_maxmin) + { + curr_direct.setZero(); + return 0; + } + } + + curr_direct << vx, vy, vz; + curr_direct.normalize(); + return 1; +} + +bool Preprocess::edge_jump_judge(const PointCloudXYZI &pl, vector &types, uint i, Surround nor_dir) +{ + if(nor_dir == 0) + { + if(types[i-1].rangeedgea*d2 || (d1-d2)>edgeb) + { + return false; + } + + return true; +} diff --git a/src/rm_localization/point_lio/src/preprocess.h b/src/rm_localization/point_lio/src/preprocess.h new file mode 100755 index 0000000..75b456b --- /dev/null +++ b/src/rm_localization/point_lio/src/preprocess.h @@ -0,0 +1,150 @@ +#include +#include +#include +#include +#include + +using namespace std; + +#define IS_VALID(a) ((abs(a)>1e8) ? true : false) + +typedef pcl::PointXYZINormal PointType; +typedef pcl::PointCloud PointCloudXYZI; + +enum LID_TYPE{AVIA = 1, VELO16, OUST64, HESAIxt32}; //{1, 2, 3, 4} +enum TIME_UNIT{SEC = 0, MS = 1, US = 2, NS = 3}; +enum Feature{Nor, Poss_Plane, Real_Plane, Edge_Jump, Edge_Plane, Wire, ZeroPoint}; +enum Surround{Prev, Next}; +enum E_jump{Nr_nor, Nr_zero, Nr_180, Nr_inf, Nr_blind}; + +const bool time_list_cut_frame(PointType &x, PointType &y); + +struct orgtype +{ + double range; + double dista; + double angle[2]; + double intersect; + E_jump edj[2]; + Feature ftype; + orgtype() + { + range = 0; + edj[Prev] = Nr_nor; + edj[Next] = Nr_nor; + ftype = Nor; + intersect = 2; + } +}; + +namespace velodyne_ros { + struct EIGEN_ALIGN16 Point { + PCL_ADD_POINT4D; + float intensity; + float time; + uint16_t ring; + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + }; +} // namespace velodyne_ros +POINT_CLOUD_REGISTER_POINT_STRUCT(velodyne_ros::Point, + (float, x, x) + (float, y, y) + (float, z, z) + (float, intensity, intensity) + (float, time, time) + (std::uint16_t, ring, ring) +) + +namespace hesai_ros { + struct EIGEN_ALIGN16 Point { + PCL_ADD_POINT4D; + float intensity; + double timestamp; + uint16_t ring; + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + }; +} // namespace velodyne_ros +POINT_CLOUD_REGISTER_POINT_STRUCT(hesai_ros::Point, + (float, x, x) + (float, y, y) + (float, z, z) + (float, intensity, intensity) + (double, timestamp, timestamp) + (std::uint16_t, ring, ring) +) + +namespace ouster_ros { + struct EIGEN_ALIGN16 Point { + PCL_ADD_POINT4D; + float intensity; + uint32_t t; + uint16_t reflectivity; + uint8_t ring; + uint16_t ambient; + uint32_t range; + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + }; +} // namespace ouster_ros + +// clang-format off +POINT_CLOUD_REGISTER_POINT_STRUCT(ouster_ros::Point, + (float, x, x) + (float, y, y) + (float, z, z) + (float, intensity, intensity) + // use std::uint32_t to avoid conflicting with pcl::uint32_t + (std::uint32_t, t, t) + (std::uint16_t, reflectivity, reflectivity) + (std::uint8_t, ring, ring) + (std::uint16_t, ambient, ambient) + (std::uint32_t, range, range) +) + +class Preprocess +{ + public: +// EIGEN_MAKE_ALIGNED_OPERATOR_NEW + + Preprocess(); + ~Preprocess(); + + void process_cut_frame_livox(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg, deque &pcl_out, deque &time_lidar, const int required_frame_num, int scan_count); + + void process_cut_frame_pcl2(const sensor_msgs::msg::PointCloud2::SharedPtr &msg, deque &pcl_out, deque &time_lidar, const int required_frame_num, int scan_count); + + void process(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg, PointCloudXYZI::Ptr &pcl_out); + void process(const sensor_msgs::msg::PointCloud2::SharedPtr &msg, PointCloudXYZI::Ptr &pcl_out); + void set(bool feat_en, int lid_type, double bld, int pfilt_num); + + // sensor_msgs::msg::PointCloud2::SharedPtr pointcloud; + PointCloudXYZI pl_full, pl_corn, pl_surf; + PointCloudXYZI pl_buff[128]; //maximum 128 line lidar + vector typess[128]; //maximum 128 line lidar + float time_unit_scale; + int lidar_type, point_filter_num, N_SCANS, SCAN_RATE, time_unit; + double blind; + bool given_offset_time; + // ros::Publisher pub_full, pub_surf, pub_corn; + + + private: + void avia_handler(const livox_ros_driver2::msg::CustomMsg::SharedPtr &msg); + void oust64_handler(const sensor_msgs::msg::PointCloud2::SharedPtr &msg); + void velodyne_handler(const sensor_msgs::msg::PointCloud2::SharedPtr &msg); + void hesai_handler(const sensor_msgs::msg::PointCloud2::SharedPtr &msg); + void give_feature(PointCloudXYZI &pl, vector &types); + void pub_func(PointCloudXYZI &pl, const rclcpp::Time &ct); + int plane_judge(const PointCloudXYZI &pl, vector &types, uint i, uint &i_nex, Eigen::Vector3d &curr_direct); + bool small_plane(const PointCloudXYZI &pl, vector &types, uint i_cur, uint &i_nex, Eigen::Vector3d &curr_direct); + bool edge_jump_judge(const PointCloudXYZI &pl, vector &types, uint i, Surround nor_dir); + + int group_size; + double disA, disB, inf_bound; + double limit_maxmid, limit_midmin, limit_maxmin; + double p2l_ratio; + double jump_up_limit, jump_down_limit; + double cos160; + double edgea, edgeb; + double smallp_intersect, smallp_ratio; + double vx, vy, vz; +}; diff --git a/src/rm_msg/CMakeLists.txt b/src/rm_msg/CMakeLists.txt new file mode 100644 index 0000000..e966b83 --- /dev/null +++ b/src/rm_msg/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 3.8) +project(rm_msgs) + +find_package(rosidl_default_generators REQUIRED) +rosidl_generate_interfaces(${PROJECT_NAME} + "msg/DataMCU.msg" + "msg/DataRef.msg" + "msg/DataAI.msg" + "msg/Ps2Data.msg" + "msg/MoveGoal.msg" + "msg/DataNav.msg" + "msg/DataAim.msg" +) + +ament_package() + diff --git a/src/rm_msg/LICENSE b/src/rm_msg/LICENSE new file mode 100644 index 0000000..cb386d0 --- /dev/null +++ b/src/rm_msg/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 zucheng Lv + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/rm_msg/README.md b/src/rm_msg/README.md new file mode 100644 index 0000000..d7eb0ee --- /dev/null +++ b/src/rm_msg/README.md @@ -0,0 +1,6 @@ +# rm_msg +Some ROS 2 custom messages for Robotaster + +Usage +Modify or add files in the /msg directory as needed +colcon build \ No newline at end of file diff --git a/src/rm_msg/msg/DataAI.msg b/src/rm_msg/msg/DataAI.msg new file mode 100644 index 0000000..69ce453 --- /dev/null +++ b/src/rm_msg/msg/DataAI.msg @@ -0,0 +1,7 @@ +float32 yaw +float32 pit +float32 rol +float32 vx +float32 vy +float32 wz +uint8 notice diff --git a/src/rm_msg/msg/DataAim.msg b/src/rm_msg/msg/DataAim.msg new file mode 100644 index 0000000..803556c --- /dev/null +++ b/src/rm_msg/msg/DataAim.msg @@ -0,0 +1,2 @@ +float32 yaw +float32 distance \ No newline at end of file diff --git a/src/rm_msg/msg/DataMCU.msg b/src/rm_msg/msg/DataMCU.msg new file mode 100644 index 0000000..d3351fd --- /dev/null +++ b/src/rm_msg/msg/DataMCU.msg @@ -0,0 +1,8 @@ +float32 q0 +float32 q1 +float32 q2 +float32 q3 +float32 yaw +float32 pit +float32 rol +uint8 notice \ No newline at end of file diff --git a/src/rm_msg/msg/DataNav.msg b/src/rm_msg/msg/DataNav.msg new file mode 100644 index 0000000..f7c39af --- /dev/null +++ b/src/rm_msg/msg/DataNav.msg @@ -0,0 +1,5 @@ +bool reached + +float32 x +float32 y +float32 yaw \ No newline at end of file diff --git a/src/rm_msg/msg/DataRef.msg b/src/rm_msg/msg/DataRef.msg new file mode 100644 index 0000000..181dd7f --- /dev/null +++ b/src/rm_msg/msg/DataRef.msg @@ -0,0 +1,3 @@ +uint16 remain_hp +uint8 game_progress +uint16 stage_remain_time \ No newline at end of file diff --git a/src/rm_msg/msg/MoveGoal.msg b/src/rm_msg/msg/MoveGoal.msg new file mode 100644 index 0000000..e795227 --- /dev/null +++ b/src/rm_msg/msg/MoveGoal.msg @@ -0,0 +1,6 @@ +float32 x +float32 y +float32 angle +float32 max_speed +float32 tolerance +bool rotor \ No newline at end of file diff --git a/src/rm_msg/msg/Ps2Data.msg b/src/rm_msg/msg/Ps2Data.msg new file mode 100644 index 0000000..2b52c1c --- /dev/null +++ b/src/rm_msg/msg/Ps2Data.msg @@ -0,0 +1,20 @@ +# control input message +float32 lx +float32 ly +float32 rx +float32 ry + +float32 up_down +float32 left_right + +bool l1 +bool l2 +bool r1 +bool r2 + +# 四种模式 +uint8 mode # 0:手柄控制 1:键盘控制 2:自瞄 3:手动瞄准 + +bool select +bool start + diff --git a/src/rm_msg/package.xml b/src/rm_msg/package.xml new file mode 100644 index 0000000..cdfd921 --- /dev/null +++ b/src/rm_msg/package.xml @@ -0,0 +1,16 @@ + + + rm_msgs + 0.0.1 + Describe custom messages + biao + MIT + + rosidl_default_generators + rosidl_default_runtime + rosidl_interface_packages + + + ament_cmake + + \ No newline at end of file diff --git a/src/rm_nav_bringup/CMakeLists.txt b/src/rm_nav_bringup/CMakeLists.txt new file mode 100644 index 0000000..feddc14 --- /dev/null +++ b/src/rm_nav_bringup/CMakeLists.txt @@ -0,0 +1,25 @@ +cmake_minimum_required(VERSION 3.8) +project(rm_nav_bringup) + +if(CMAKE_EXPORT_COMPILE_COMMANDS) + set(CMAKE_EXPORT_COMPILE_COMMANDS ${CMAKE_EXPORT_COMPILE_COMMANDS}) +endif() + +find_package(ament_cmake_auto REQUIRED) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + set(ament_cmake_copyright_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + +ament_auto_package( + INSTALL_TO_SHARE + launch + config + map + PCD + rviz + urdf +) + diff --git a/src/rm_nav_bringup/config/reality/MID360_config.json b/src/rm_nav_bringup/config/reality/MID360_config.json new file mode 100644 index 0000000..2d659c8 --- /dev/null +++ b/src/rm_nav_bringup/config/reality/MID360_config.json @@ -0,0 +1,42 @@ +{ + "lidar_summary_info" : { + "lidar_type": 8 + }, + "MID360": { + "lidar_net_info" : { + "cmd_data_port": 56100, + "push_msg_port": 56200, + "point_data_port": 56300, + "imu_data_port": 56400, + "log_data_port": 56500 + }, + "host_net_info" : { + "cmd_data_ip" : "192.168.1.50", + "cmd_data_port": 56101, + "push_msg_ip": "192.168.1.50", + "push_msg_port": 56201, + "point_data_ip": "192.168.1.50", + "point_data_port": 56301, + "imu_data_ip" : "192.168.1.50", + "imu_data_port": 56401, + "log_data_ip" : "", + "log_data_port": 56501 + } + }, + "lidar_configs" : [ + { + "ip" : "192.168.1.176", + "pcl_data_type" : 1, + "pattern_mode" : 0, + "extrinsic_parameter" : { + "roll": 0.0, + "pitch": 0.0, + "yaw": 0.0, + "x": 0, + "y": 0, + "z": 0 + } + } + ] +} + diff --git a/src/rm_nav_bringup/config/reality/fastlio_mid360_real.yaml b/src/rm_nav_bringup/config/reality/fastlio_mid360_real.yaml new file mode 100644 index 0000000..f74876b --- /dev/null +++ b/src/rm_nav_bringup/config/reality/fastlio_mid360_real.yaml @@ -0,0 +1,50 @@ +/**: + ros__parameters: + feature_extract_enable: false + point_filter_num: 3 + max_iteration: 3 + filter_size_surf: 0.5 + filter_size_map: 0.5 + cube_side_length: 1000.0 + runtime_pos_log_enable: false + map_file_path: "src/rm_nav_bringup/PCD/RC2025.pcd" + + common: + lid_topic: "/livox/lidar" + imu_topic: "/imu/data" + time_sync_en: false # ONLY turn on when external time synchronization is really not possible + time_offset_lidar_to_imu: 0.0 # Time offset between lidar and IMU calibrated by other algorithms, e.g. LI-Init (can be found in README). + # This param will take effect no matter what time_sync_en is. So if the time offset is not known exactly, please set as 0.0 + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, 4 for any other pointcloud input + scan_line: 4 + blind: 0.5 + timestamp_unit: 3 + scan_rate: 10 + + mapping: + acc_cov: 0.1 + gyr_cov: 0.1 + b_acc_cov: 0.001 + b_gyr_cov: 0.001 + fov_degree: 360.0 + det_range: 100.0 + extrinsic_est_en: false # true: enable the online estimation of IMU-LiDAR extrinsic + extrinsic_T: [ -0.011, -0.02329, 0.04412 ] # Real + extrinsic_R: [1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + publish: + path_en: true # true: publish Path + effect_map_en: false # true: publish Effects + map_en: true # true: publish Map cloud + scan_publish_en: true # false: close all the point cloud output + dense_publish_en: false # false: low down the points number in a global-frame point clouds scan. + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: true + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_nav_bringup/config/reality/icp_registration_real.yaml b/src/rm_nav_bringup/config/reality/icp_registration_real.yaml new file mode 100644 index 0000000..856cfd5 --- /dev/null +++ b/src/rm_nav_bringup/config/reality/icp_registration_real.yaml @@ -0,0 +1,16 @@ +/icp_registration: + ros__parameters: + use_sim_time: false + rough_leaf_size: 0.4 + refine_leaf_size: 0.1 + pcd_path: "" + map_frame_id: "map" + odom_frame_id: "odom" + range_odom_frame_id: "lidar_odom" + laser_frame_id: "livox_frame" + pointcloud_topic: "/livox/lidar/pointcloud" + thresh: 0.1 + xy_offset: 0.2 + yaw_offset: 30.0 + yaw_resolution: 10.0 + initial_pose: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] # x,y,z,roll,pitch,yaw \ No newline at end of file diff --git a/src/rm_nav_bringup/config/reality/mapper_params_localization_real.yaml b/src/rm_nav_bringup/config/reality/mapper_params_localization_real.yaml new file mode 100644 index 0000000..9d55a2c --- /dev/null +++ b/src/rm_nav_bringup/config/reality/mapper_params_localization_real.yaml @@ -0,0 +1,68 @@ +slam_toolbox: + ros__parameters: + solver_plugin: solver_plugins::CeresSolver + ceres_linear_solver: SPARSE_NORMAL_CHOLESKY + ceres_preconditioner: SCHUR_JACOBI + ceres_trust_strategy: LEVENBERG_MARQUARDT + ceres_dogleg_type: TRADITIONAL_DOGLEG + ceres_loss_function: None + + # ROS Parameters + odom_frame: odom + map_frame: map + base_frame: base_link + scan_topic: /scan + mode: localization #localization + + # if you'd like to start localizing on bringup in a map and pose + # map_file_name: + map_start_pose: [0.0, 0.0, 0.0] + + debug_logging: false + throttle_scans: 1 + transform_publish_period: 0.0002 #if 0 never publishes odometry + map_update_interval: 5.0 + resolution: 0.05 + max_laser_range: 20.0 #for rastering images + minimum_time_interval: 0.5 + transform_timeout: 0.5 + tf_buffer_duration: 30. + stack_size_to_use: 40000000 #// program needs a larger stack size to serialize large maps + + # General Parameters + use_scan_matching: true + use_scan_barycenter: true + minimum_travel_distance: 0.5 + minimum_travel_heading: 0.5 + scan_buffer_size: 3 + scan_buffer_maximum_scan_distance: 10.0 + link_match_minimum_response_fine: 0.1 + link_scan_maximum_distance: 1.5 + # do_loop_closing: true + do_loop_closing: false + loop_match_minimum_chain_size: 3 + loop_match_maximum_variance_coarse: 3.0 + loop_match_minimum_response_coarse: 0.35 + loop_match_minimum_response_fine: 0.45 + + # Correlation Parameters - Correlation Parameters + correlation_search_space_dimension: 0.5 + correlation_search_space_resolution: 0.01 + correlation_search_space_smear_deviation: 0.1 + + # Correlation Parameters - Loop Closure Parameters + loop_search_space_dimension: 8.0 + loop_search_space_resolution: 0.05 + loop_search_space_smear_deviation: 0.03 + loop_search_maximum_distance: 3.0 + + # Scan Matcher Parameters + distance_variance_penalty: 0.5 + angle_variance_penalty: 1.0 + + fine_search_angle_offset: 0.00349 + coarse_search_angle_offset: 0.349 + coarse_angle_resolution: 0.0349 + minimum_angle_penalty: 0.9 + minimum_distance_penalty: 0.5 + use_response_expansion: true \ No newline at end of file diff --git a/src/rm_nav_bringup/config/reality/mapper_params_online_async_real.yaml b/src/rm_nav_bringup/config/reality/mapper_params_online_async_real.yaml new file mode 100644 index 0000000..9e419d6 --- /dev/null +++ b/src/rm_nav_bringup/config/reality/mapper_params_online_async_real.yaml @@ -0,0 +1,73 @@ +slam_toolbox: + ros__parameters: + + # Plugin params + solver_plugin: solver_plugins::CeresSolver + ceres_linear_solver: SPARSE_NORMAL_CHOLESKY + ceres_preconditioner: SCHUR_JACOBI + ceres_trust_strategy: LEVENBERG_MARQUARDT + ceres_dogleg_type: TRADITIONAL_DOGLEG + ceres_loss_function: None + + # ROS Parameters + odom_frame: odom + map_frame: map + base_frame: base_link + scan_topic: /scan + mode: mapping #localization + + # if you'd like to immediately start continuing a map at a given pose + # or at the dock, but they are mutually exclusive, if pose is given + # will use pose + #map_file_name: test_steve + # map_start_pose: [0.0, 0.0, 0.0] + #map_start_at_dock: true + + debug_logging: false + throttle_scans: 1 + transform_publish_period: 0.02 #if 0 never publishes odometry + map_update_interval: 5.0 + resolution: 0.05 + max_laser_range: 20.0 #for rastering images + minimum_time_interval: 0.5 + transform_timeout: 0.2 + tf_buffer_duration: 30. + stack_size_to_use: 40000000 #// program needs a larger stack size to serialize large maps + enable_interactive_mode: true + + # General Parameters + use_scan_matching: true + use_scan_barycenter: true + minimum_travel_distance: 0.5 + minimum_travel_heading: 0.5 + scan_buffer_size: 10 + scan_buffer_maximum_scan_distance: 10.0 + link_match_minimum_response_fine: 0.1 + link_scan_maximum_distance: 1.5 + loop_search_maximum_distance: 3.0 + do_loop_closing: true + loop_match_minimum_chain_size: 10 + loop_match_maximum_variance_coarse: 3.0 + loop_match_minimum_response_coarse: 0.35 + loop_match_minimum_response_fine: 0.45 + + # Correlation Parameters - Correlation Parameters + correlation_search_space_dimension: 0.5 + correlation_search_space_resolution: 0.01 + correlation_search_space_smear_deviation: 0.1 + + # Correlation Parameters - Loop Closure Parameters + loop_search_space_dimension: 8.0 + loop_search_space_resolution: 0.05 + loop_search_space_smear_deviation: 0.03 + + # Scan Matcher Parameters + distance_variance_penalty: 0.5 + angle_variance_penalty: 1.0 + + fine_search_angle_offset: 0.00349 + coarse_search_angle_offset: 0.349 + coarse_angle_resolution: 0.0349 + minimum_angle_penalty: 0.9 + minimum_distance_penalty: 0.5 + use_response_expansion: true \ No newline at end of file diff --git a/src/rm_nav_bringup/config/reality/measurement_params_real.yaml b/src/rm_nav_bringup/config/reality/measurement_params_real.yaml new file mode 100644 index 0000000..bd7b67a --- /dev/null +++ b/src/rm_nav_bringup/config/reality/measurement_params_real.yaml @@ -0,0 +1,3 @@ +base_link2livox_frame: + xyz: "\"0.013 -0.354 0.41\"" + rpy: "\"0.0 0.0 0.0\"" \ No newline at end of file diff --git a/src/rm_nav_bringup/config/reality/nav2_params_real.yaml b/src/rm_nav_bringup/config/reality/nav2_params_real.yaml new file mode 100644 index 0000000..15df933 --- /dev/null +++ b/src/rm_nav_bringup/config/reality/nav2_params_real.yaml @@ -0,0 +1,411 @@ +amcl: + ros__parameters: + use_sim_time: False + alpha1: 0.2 + alpha2: 0.2 + alpha3: 0.2 + alpha4: 0.2 + alpha5: 0.2 + base_frame_id: "base_link" + beam_skip_distance: 0.5 + beam_skip_error_threshold: 0.9 + beam_skip_threshold: 0.3 + do_beamskip: false + global_frame_id: "map" + lambda_short: 0.1 + laser_likelihood_max_dist: 2.0 + laser_max_range: 100.0 + laser_min_range: -1.0 + laser_model_type: "likelihood_field" + max_beams: 60 + max_particles: 2000 + min_particles: 500 + odom_frame_id: "odom" + pf_err: 0.05 + pf_z: 0.99 + recovery_alpha_fast: 0.0 + recovery_alpha_slow: 0.0 + resample_interval: 1 + robot_model_type: "nav2_amcl::OmniMotionModel" + save_pose_rate: 0.5 + sigma_hit: 0.2 + tf_broadcast: true + transform_tolerance: 1.0 + update_min_a: 0.2 + update_min_d: 0.25 + z_hit: 0.5 + z_max: 0.05 + z_rand: 0.5 + z_short: 0.05 + scan_topic: scan + +amcl_map_client: + ros__parameters: + use_sim_time: False + +amcl_rclcpp_node: + ros__parameters: + use_sim_time: False + +bt_navigator: + ros__parameters: + use_sim_time: False + global_frame: map + robot_base_frame: base_link_fake + odom_topic: /Odometry + bt_loop_duration: 10 + default_server_timeout: 20 + plugin_lib_names: + - nav2_compute_path_to_pose_action_bt_node + - nav2_compute_path_through_poses_action_bt_node + - nav2_follow_path_action_bt_node + - nav2_back_up_action_bt_node + - nav2_spin_action_bt_node + - nav2_wait_action_bt_node + - nav2_clear_costmap_service_bt_node + - nav2_is_stuck_condition_bt_node + - nav2_goal_reached_condition_bt_node + - nav2_goal_updated_condition_bt_node + - nav2_initial_pose_received_condition_bt_node + - nav2_reinitialize_global_localization_service_bt_node + - nav2_rate_controller_bt_node + - nav2_distance_controller_bt_node + - nav2_speed_controller_bt_node + - nav2_truncate_path_action_bt_node + - nav2_goal_updater_node_bt_node + - nav2_recovery_node_bt_node + - nav2_pipeline_sequence_bt_node + - nav2_round_robin_node_bt_node + - nav2_transform_available_condition_bt_node + - nav2_time_expired_condition_bt_node + - nav2_distance_traveled_condition_bt_node + - nav2_single_trigger_bt_node + - nav2_is_battery_low_condition_bt_node + - nav2_navigate_through_poses_action_bt_node + - nav2_navigate_to_pose_action_bt_node + - nav2_remove_passed_goals_action_bt_node + - nav2_planner_selector_bt_node + - nav2_controller_selector_bt_node + - nav2_goal_checker_selector_bt_node + +controller_server: + ros__parameters: + use_sim_time: False + controller_frequency: 20.0 + min_x_velocity_threshold: 0.001 + min_y_velocity_threshold: 0.1 + min_theta_velocity_threshold: 0.001 + failure_tolerance: 0.3 + progress_checker_plugin: "progress_checker" + goal_checker_plugins: ["general_goal_checker"] # "precise_goal_checker" + controller_plugins: ["FollowPath"] + progress_checker: + plugin: "nav2_controller::SimpleProgressChecker" + required_movement_radius: 0.5 + movement_time_allowance: 10.0 + general_goal_checker: + stateful: True + plugin: "nav2_controller::SimpleGoalChecker" + xy_goal_tolerance: 0.25 + yaw_goal_tolerance: 6.28 + FollowPath: + plugin: teb_local_planner::TebLocalPlannerROS + # https://github.com/rst-tu-dortmund/teb_local_planner/tree/ros2-master + + #******************************************************************************* + # Trajectory + #******************************************************************************* + teb_autosize: 1.0 #是否自动调整轨迹大小。根据时间分辨率自动调整轨迹大小 + dt_ref: 0.6 #轨迹的期望时间分辨率(应该与底层控制速率的数量级相符) + dt_hysteresis: 0.06 #自动调整大小的滞后(根据当前时间分辨率 dt):通常为 dt_ref 的 10% + max_samples: 500 #最大样本数量;警告:如果太小,离散化/分辨率可能不足以用于给定的机器人模型,或者避障不再有效。 + global_plan_overwrite_orientation: False #覆盖全局规划器提供的局部子目标的方向 + allow_init_with_backwards_motion: True #如果为真,基础轨迹可能会以后退运动初始化,以防目标在本地代价地图中位于起点之后(仅当机器人配备后部传感器时推荐) + max_global_plan_lookahead_dist: 2.0 #指定用于优化考虑的全局规划子集的最大长度(累积欧氏距离)[如果 <=0:禁用;长度也受到本地代价地图大小的限制! + force_reinit_new_goal_dist: 1.0 #如果之前的目标更新距离超过此值,则强制规划器重新初始化轨迹 + force_reinit_new_goal_angular: 0.78 #如果之前的目标更新的角度超过此弧度值,则强制规划器重新初始化轨迹 + feasibility_check_no_poses: 0 #在预测路径上,每个采样间隔需要检查可行性的姿态数目 + feasibility_check_lookahead_distance: 1.5 #每个采样间隔需要检查可行性的距离(以及feasibility_check_no_poses之下的索引)与机器人之间的距离。-1检查所有姿势,直到feasibility_check_no_poses。https://robotics.stackexchange.com/questions/80845/what-are-reasons-for-teb-planners-feasibility-check-to-fail + exact_arc_length: False #如果为真,规划器在速度、加速度和转向率计算中使用准确的弧长 [-> 增加 CPU 时间],否则使用欧氏近似。 + publish_feedback: False #发布包含完整轨迹和活动障碍物列表的规划器反馈(应仅用于评估或调试目的) + visualize_with_time_as_z_axis_scale: 0.0 #在rviz里可看到优化使用的graph + + #******************************************************************************* + # ViaPoints 中间点 + #******************************************************************************* + global_plan_viapoint_sep: 0.5 #从全局计划中提取的连续中间点之间的最小分离距离 + via_points_ordered: False #是否遵循存储容器中中间点的顺序 + + #******************************************************************************* + # Robot + #******************************************************************************* + max_vel_x: 2.0 #最大平移速度 + max_vel_x_backwards: 2.0 #最大后退速度 + max_vel_theta: 6.0 #最大转向角速度 + acc_lim_x: 2.0 #最大平移加速度 + acc_lim_theta: 6.0 #最大角加速度 + is_footprint_dynamic: False #如果为真,在检查轨迹可行性之前更新足迹 + use_proportional_saturation: False #如果为true,则按比例减少所有扭曲分量(线性x和y以及角度z)(如果任何扭曲分量超过其相应的界限),而不是单独饱和每个扭曲分量 + transform_tolerance: 0.5 #在TF树中查询转换时的容差(秒) + + #******************************************************************************* + # Robot/Carlike 此部分参数仅适用于类似汽车的机器人(如差速驱动机器人) + #******************************************************************************* + # min_turning_radius: 0.0 #机器人的最小转弯半径。对于差速驱动机器人,此值为0 + # wheelbase: 1.0 #驱动轮轴与转向轮轴之间的距离。后轮驱动机器人此值可能为负数。 + # cmd_angle_instead_rotvel: False #是否用转向角代替控制指令消息中的旋转速度(需要结合轴距参数使用) + + #******************************************************************************* + # Robot/Omni 此部分参数仅适用于全方位移动机器人 + #******************************************************************************* + max_vel_y: 2.0 + acc_lim_y: 2.0 + + #******************************************************************************* + # GoalTolerance 目标容差 + #******************************************************************************* + free_goal_vel: False #允许机器人以最大速度驶向目的地,为False时,车到达终点时的目标速度为0; + + #******************************************************************************* + # Obstacles 障碍物 + #******************************************************************************* + min_obstacle_dist: 0.25 #机器人与障碍物之间最小的期望间隔距离 + inflation_dist: 0.6 #障碍物周围的缓冲区,用于增加安全裕度。此缓冲区内具有非零的惩罚代价 + dynamic_obstacle_inflation_dist: 0.7 #具有非零惩罚成本的动态障碍物预测位置周围的缓冲区(应大于min_obstacle_dist才能生效) + include_dynamic_obstacles: True #预测动态障碍物周围的缓冲区,用于增加安全裕度。此缓冲区内具有非零的惩罚代价 + include_costmap_obstacles: True #是否直接考虑代价地图中的障碍物 (如果没有单独的聚类和检测功能,则需要此选项) + legacy_obstacle_association: False #是否严格遵循局部规划出来的路径。如果为真,则使用旧的关联策略 (为每个障碍物找到最近的 TEB 姿势),否则使用新的关联策略 (为每个 TEB 姿势仅找到“相关”障碍物) + costmap_obstacles_behind_robot_dist: 1.5 #限制规划时考虑的占据局部代价地图障碍物 (指定距离,米)。该值仅对机器人后方的障碍物生效。 + obstacle_poses_affected: 15 #为了减少计算量,障碍物位置会附加到轨迹上最近的姿态上,但也会考虑一定数量的相邻姿态。 + + # costmap_converter_plugin: "costmap_converter::CostmapToPolygonsDBSMCCH" + # costmap_converter_spin_thread: True + # costmap_converter_rate: 10 + + #******************************************************************************* + # Obstacle - Velocity ratio parameters 该组包含用于根据障碍物 proximity 动态调整机器人速度的设置。 + #******************************************************************************* + obstacle_proximity_ratio_max_vel: 1.0 #由于接近静态障碍物而降低速度时用作上限的比率。 + obstacle_proximity_lower_bound: 0.0 #需要降低速度的静态障碍物距离 (米) + obstacle_proximity_upper_bound: 0.5 #应该保持较高速度的静态障碍物距离 (米) + + #******************************************************************************* + # Optimization 优化 + #******************************************************************************* + no_inner_iterations: 5 #在外循环每次迭代中调用求解器迭代的次数 + no_outer_iterations: 4 #外循环每次迭代会自动调整轨迹大小,并使用指定的内部迭代次数调用内部优化器 + optimization_activate: True #启用优化功能 + optimization_verbose: False #打印详细的优化过程信息 + penalty_epsilon: 0.15 #为惩罚函数添加微小的安全裕量,用于处理难以满足的硬性约束条件 + + # 权重参数 + obstacle_cost_exponent: 4.0 + weight_max_vel_x: 2.0 #满足最大允许平移速度的权重 + weight_max_vel_y: 2.0 #满足最大允许横移速度的权重 (仅用于全向移动机器人) + weight_max_vel_theta: 1.0 #满足最大允许角速度的权重 + weight_acc_lim_x: 1.0 #满足最大允许平移加速度的权重 + weight_acc_lim_y: 1.0 #满足最大允许横移加速度的权重 (仅用于全向移动机器人) + weight_acc_lim_theta: 1.0 #满足最大允许角加速度的权重 + weight_kinematics_nh: 0.0 #满足非全向运动学约束的权重 + weight_kinematics_forward_drive: 0.0 #强制机器人仅选择向前运动方向的权重 (仅用于差分驱动机器人) + weight_kinematics_turning_radius: 0.1 #强制最小转弯半径(小车型机器人)的优化权重 + weight_optimaltime: 0.1 #优化轨迹并尽量缩短运动时间的权重,确保在规定的时间内到达目标 + weight_shortest_path: 0.0 #倾向于选择更短的路径,路径可能更加弯曲或不平坦 + weight_obstacle: 100.0 #与障碍物保持最小距离的权重 + weight_inflation: 0.2 #优化轨迹并尽量避免膨胀区域的权重 (权重应设置较小) + weight_dynamic_obstacle: 10.0 #与动态障碍物保持最小距离的权重 + weight_dynamic_obstacle_inflation: 0.2 #优化轨迹并尽量避免动态障碍物膨胀区域的权重 (权重应设置较小) + weight_viapoint: 1.0 #一些特定的权重 (例如 weight_obstacle) 会在外循环每次迭代中乘以该因子进行调整。这样逐步增加权重比直接设置较高的权重值可以改善优化问题的数值条件 + weight_adapt_factor: 2.0 #非线性障碍物代价的指数 (cost = linear_cost * obstacle_cost_exponent)。设置为 1 则禁用非线性代价 (默认值) + + #******************************************************************************* + # Homotopy Class Planner + #******************************************************************************* + enable_homotopy_class_planning: False + enable_multithreading: True #是否启用多线程并行规划多个路径 + max_number_classes: 3 #允许探索的最大替代拓扑类别数 (会增加计算量) + selection_cost_hysteresis: 1.0 + selection_prefer_initial_plan: 1.0 + selection_obst_cost_scale: 1.0 + selection_alternative_time_cost: True + + roadmap_graph_no_samples: 15 #指定为创建路线图而生成的样本数 + roadmap_graph_area_width: 5.0 #指定该区域的宽度 + roadmap_graph_area_length_scale: 1.0 #矩形区域的长度由起点和终点之间的距离决定。该参数会进一步缩放距离,使几何中心保持不变 + h_signature_prescaler: 0.5 #(0.2 < value <= 1)缩放用于区分同伦类的内部参数 + h_signature_threshold: 0.1 #如果实部和复部的差都低于规定的阈值,则假定两个h签名相等。 + obstacle_heading_threshold: 0.45 #为了将障碍物纳入探索范围,需要指定障碍物朝向和目标朝向的归一化点积的阈值 + switching_blocking_period: 0.0 #指定允许切换到新的等效类之前需要终止的持续时间 + viapoints_all_candidates: True #若为真,则所有不同拓扑结构的路径都会附加到路径点集合上,否则只会附加与初始/全局计划共享相同路径点的路径 (在测试优化节点中没有效果) + delete_detours_backwards: True + max_ratio_detours_duration_best_duration: 3.0 + visualize_hc_graph: False #可视化用于探索新拓扑类的图 + + #******************************************************************************* + # Recovery + #******************************************************************************* + #当规划器检测到系统异常,允许缩小时域规划范围,TEB将以更近的点作为规划目标,尝试重新规划出可行路径; + shrink_horizon_backup: True + shrink_horizon_min_duration: 10.0 #如果检测到不可行的轨迹,激活缩小的水平线后备模式,本参数为其最短持续时间。 + oscillation_recovery: True #尝试检测和解决振荡 + oscillation_v_eps: 0.1 #(0,1)内的 normalized 线速度的平均值的阈值,判断机器人是否运动异常 + oscillation_omega_eps: 0.1 #(0,1)内的 normalized 角速度的平均值,判断机器人是否运动异常 + oscillation_recovery_min_duration: 10.0 #在这个时间内,是否再次发生FailureDetector检测的振荡 + oscillation_filter_duration: 10.0 #failure_detector_中buffer容器的大小为oscillation_filter_duration * controller_frequency + +local_costmap: + local_costmap: + ros__parameters: + update_frequency: 20.0 + publish_frequency: 10.0 + global_frame: map + robot_base_frame: base_link_fake + use_sim_time: False + rolling_window: true + width: 5 + height: 5 + resolution: 0.02 + robot_radius: 0.2 + plugins: ["obstacle_layer", "inflation_layer"] + obstacle_layer: + plugin: "nav2_costmap_2d::ObstacleLayer" + enabled: true + observation_sources: scan + scan: + topic: /scan + raytrace_max_range: 6.0 + obstacle_max_range: 6.0 + obstacle_min_range: 0.1 + max_obstacle_height: 2.0 + clearing: true + marking: true + inf_is_valid: true + data_type: "LaserScan" + inflation_layer: + plugin: "nav2_costmap_2d::InflationLayer" + cost_scaling_factor: 5.0 + inflation_radius: 0.6 + always_send_full_costmap: true + +global_costmap: + global_costmap: + ros__parameters: + update_frequency: 5.0 + publish_frequency: 2.0 + global_frame: map + robot_base_frame: base_link_fake + use_sim_time: False + robot_radius: 0.2 + resolution: 0.04 + track_unknown_space: true + plugins: ["static_layer", "stvl_layer", "inflation_layer"] + stvl_layer: + plugin: "spatio_temporal_voxel_layer/SpatioTemporalVoxelLayer" + # https://github.com/SteveMacenski/spatio_temporal_voxel_layer + enabled: true + voxel_decay: 0.5 # 如果是线性衰减,单位为秒;如果是指数衰减,则为 e 的 n 次方 + decay_model: 0 # 衰减模型,0=线性,1=指数,-1=持久 + voxel_size: 0.05 # 每个体素的尺寸,单位为米 + track_unknown_space: true # default space is unknown + mark_threshold: 0 # voxel height + update_footprint_enabled: true + combination_method: 1 # 1=max, 0=override + origin_z: 0.0 # 单位为米 + publish_voxel_map: true # default false, 是否发布体素地图 + transform_tolerance: 0.2 # 单位为秒 + mapping_mode: false # default off, saves map not for navigation + map_save_duration: 60.0 # default 60s, how often to autosave + observation_sources: livox_mark livox_clear + livox_mark: + data_type: PointCloud2 + topic: /segmentation/obstacle + marking: true + clearing: false + obstacle_range: 3.0 # meters + min_obstacle_height: 0.2 # default 0, meters + max_obstacle_height: 2.0 # default 3, meters + expected_update_rate: 0.0 # default 0, if not updating at this rate at least, remove from buffer + observation_persistence: 0.0 # default 0, use all measurements taken during now-value, 0=latest + inf_is_valid: false # default false, for laser scans + filter: "voxel" # default passthrough, apply "voxel", "passthrough", or no filter to sensor data, recommend on + voxel_min_points: 0 # default 0, minimum points per voxel for voxel filter + clear_after_reading: true # default false, clear the buffer after the layer gets readings from it + livox_clear: + enabled: true # default true, can be toggled on/off with associated service call + data_type: PointCloud2 + topic: /segmentation/obstacle + marking: false + clearing: true + max_z: 8.0 # default 10, meters + min_z: 1.0 # default 0, meters + vertical_fov_angle: 1.029 # 垂直视场角,单位为弧度,For 3D lidars it's the symmetric FOV about the planar axis. + vertical_fov_padding: 0.05 # 3D Lidar only. Default 0, in meters + horizontal_fov_angle: 6.29 # 3D 激光雷达水平视场角 + decay_acceleration: 5.0 # default 0, 1/s^2. + model_type: 1 # 0=深度相机,1=3D激光雷达 + static_layer: + plugin: "nav2_costmap_2d::StaticLayer" + footprint_clearing_enabled: True + map_subscribe_transient_local: True + inflation_layer: + plugin: "nav2_costmap_2d::InflationLayer" + cost_scaling_factor: 8.0 + inflation_radius: 0.7 + always_send_full_costmap: True + +map_saver: + ros__parameters: + use_sim_time: False + save_map_timeout: 5.0 + free_thresh_default: 0.25 + occupied_thresh_default: 0.65 + map_subscribe_transient_local: True + +planner_server: + ros__parameters: + expected_planner_frequency: 5.0 + use_sim_time: False + planner_plugins: ["GridBased"] + GridBased: + plugin: "nav2_navfn_planner/NavfnPlanner" + tolerance: 0.5 + use_astar: false + allow_unknown: true + +recoveries_server: + ros__parameters: + costmap_topic: local_costmap/costmap_raw + footprint_topic: local_costmap/published_footprint + cycle_frequency: 2.0 + recovery_plugins: ["spin", "backup"] + spin: + plugin: "nav2_recoveries/Spin" + backup: + plugin: "nav2_recoveries/BackUp" + global_frame: odom + robot_base_frame: base_link_fake + transform_timeout: 0.1 + use_sim_time: False + simulate_ahead_time: 1.0 + max_rotational_vel: 3.0 + min_rotational_vel: 0.4 + rotational_acc_lim: 3.0 + +map_server: + ros__parameters: + use_sim_time: False + yaml_filename: "" + +velocity_smoother: + ros__parameters: + smoothing_frequency: 20.0 + scale_velocities: False + feedback: "OPEN_LOOP" + max_velocity: [2.0, 2.0, 3.0] + min_velocity: [-2.0, -2.0, -3.0] + deadband_velocity: [0.0, 0.0, 0.0] + velocity_timeout: 1.0 + max_accel: [2.0, 2.0, 6.0] + max_decel: [-2.0, -2.0, -6.0] + odom_topic: "Odometry" + odom_duration: 0.1 \ No newline at end of file diff --git a/src/rm_nav_bringup/config/reality/pointlio_mid360_real.yaml b/src/rm_nav_bringup/config/reality/pointlio_mid360_real.yaml new file mode 100755 index 0000000..41b9e24 --- /dev/null +++ b/src/rm_nav_bringup/config/reality/pointlio_mid360_real.yaml @@ -0,0 +1,58 @@ +/**: + ros__parameters: + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + con_frame: false # true: if you need to combine several LiDAR frames into one + con_frame_num: 1 # the number of frames combined + cut_frame: false # true: if you need to cut one LiDAR frame into several subframes + cut_frame_time_interval: 0.1 # should be integral fraction of 1 / LiDAR frequency + time_diff_lidar_to_imu: 0.0 # Time offset between LiDAR and IMU calibrated by other algorithms, e.g., LI-Init (find in Readme) + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR + scan_line: 4 + timestamp_unit: 3 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 0.5 + + mapping: + imu_en: true + start_in_aggressive_motion: false # if true, a preknown gravity should be provided in following gravity_init + extrinsic_est_en: false # for aggressive motion, set this variable false + imu_time_inte: 0.005 # = 1 / frequency of IMU + satu_acc: 3.0 # the saturation value of IMU's acceleration. not related to the units + satu_gyro: 35.0 # the saturation value of IMU's angular velocity. not related to the units + acc_norm: 1.0 # 1.0 for g as unit, 9.81 for m/s^2 as unit of the IMU's acceleration + lidar_meas_cov: 0.01 # 0.001 + acc_cov_output: 500.0 + gyr_cov_output: 1000.0 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + imu_meas_acc_cov: 0.01 #0.1 # 2 + imu_meas_omg_cov: 0.01 #0.1 # 2 + gyr_cov_input: 0.01 # for IMU as input model + acc_cov_input: 0.1 # for IMU as input model + plane_thr: 0.1 # 0.05, the threshold for plane criteria, the smaller, the flatter a plane + match_s: 81.0 + fov_degree: 360.0 + det_range: 100.0 + gravity_align: true # true to align the z axis of world frame with the direction of gravity, and the gravity direction should be specified below + gravity: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # gravity to be aligned + gravity_init: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # # preknown gravity in the first IMU body frame, use when imu_en is false or start from a non-stationary state + extrinsic_T: [ -0.011, -0.02329, 0.04412 ] + extrinsic_R: [ 1.0, 0.0, 0.0, + 0.0, 1.0, 0.0, + 0.0, 0.0, 1.0 ] + + odometry: + publish_odometry_without_downsample: true + + publish: + path_en: true # false: close the path output + scan_publish_en: true # false: close all the point cloud output + scan_bodyframe_pub_en: false # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: false + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_nav_bringup/config/reality/segmentation_real.yaml b/src/rm_nav_bringup/config/reality/segmentation_real.yaml new file mode 100644 index 0000000..63f12cf --- /dev/null +++ b/src/rm_nav_bringup/config/reality/segmentation_real.yaml @@ -0,0 +1,28 @@ +ground_segmentation: + ros__parameters: + n_threads: 4 # number of threads to use. + + r_min: 0.2 # minimum point distance. + r_max: 50 # maximum point distance. + n_bins: 120 # number of radial bins. + n_segments: 360 # number of radial segments. + + max_dist_to_line: 0.05 # maximum vertical distance of point to line to be considered ground. + + sensor_height: 0.41 # REAL sensor height above ground. + min_slope: -0.4 # minimum slope of a ground line. + max_slope: 0.4 # maximum slope of a ground line. + max_fit_error: 0.05 # maximum error of a point during line fit. + long_threshold: 1.0 # distance between points after which they are considered far from each other. + max_long_height: 0.1 # maximum height change to previous point in long line. + max_start_height: 0.5 # maximum difference to estimated ground height to start a new line. + line_search_angle: 0.8 # how far to search in angular direction to find a line [rad]. + + gravity_aligned_frame: "" # Frame which has its z axis aligned with gravity. (Sensor frame if empty.) + + latch: false # latch output topics or not + visualize: false # visualize segmentation result - USE ONLY FOR DEBUGGING + + input_topic: "/livox/lidar/pointcloud" + obstacle_output_topic: "segmentation/obstacle" + ground_output_topic: "segmentation/ground" \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/fastlio_mid360_sim.yaml b/src/rm_nav_bringup/config/simulation/fastlio_mid360_sim.yaml new file mode 100644 index 0000000..f928f6e --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/fastlio_mid360_sim.yaml @@ -0,0 +1,50 @@ +/**: + ros__parameters: + feature_extract_enable: false + point_filter_num: 3 + max_iteration: 3 + filter_size_surf: 0.5 + filter_size_map: 0.5 + cube_side_length: 1000.0 + runtime_pos_log_enable: false + map_file_path: "src/rm_nav_bringup/PCD/YOUR_MAP_NAME.pcd" + + common: + lid_topic: "/livox/lidar" + imu_topic: "/imu/data" + time_sync_en: false # ONLY turn on when external time synchronization is really not possible + time_offset_lidar_to_imu: 0.0 # Time offset between lidar and IMU calibrated by other algorithms, e.g. LI-Init (can be found in README). + # This param will take effect no matter what time_sync_en is. So if the time offset is not known exactly, please set as 0.0 + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, 4 for any other pointcloud input + scan_line: 4 + blind: 0.5 + timestamp_unit: 3 + scan_rate: 10 + + mapping: + acc_cov: 0.1 + gyr_cov: 0.1 + b_acc_cov: 0.001 + b_gyr_cov: 0.001 + fov_degree: 360.0 + det_range: 100.0 + extrinsic_est_en: false # true: enable the online estimation of IMU-LiDAR extrinsic + extrinsic_T: [ 0.0, 0.0, 0.05 ] # Simulation + extrinsic_R: [1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + publish: + path_en: true # true: publish Path + effect_map_en: false # true: publish Effects + map_en: true # true: publish Map cloud + scan_publish_en: true # false: close all the point cloud output + dense_publish_en: false # false: low down the points number in a global-frame point clouds scan. + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: true + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/icp_registration_sim.yaml b/src/rm_nav_bringup/config/simulation/icp_registration_sim.yaml new file mode 100644 index 0000000..856cfd5 --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/icp_registration_sim.yaml @@ -0,0 +1,16 @@ +/icp_registration: + ros__parameters: + use_sim_time: false + rough_leaf_size: 0.4 + refine_leaf_size: 0.1 + pcd_path: "" + map_frame_id: "map" + odom_frame_id: "odom" + range_odom_frame_id: "lidar_odom" + laser_frame_id: "livox_frame" + pointcloud_topic: "/livox/lidar/pointcloud" + thresh: 0.1 + xy_offset: 0.2 + yaw_offset: 30.0 + yaw_resolution: 10.0 + initial_pose: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] # x,y,z,roll,pitch,yaw \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/mapper_params_localization_sim.yaml b/src/rm_nav_bringup/config/simulation/mapper_params_localization_sim.yaml new file mode 100644 index 0000000..9d55a2c --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/mapper_params_localization_sim.yaml @@ -0,0 +1,68 @@ +slam_toolbox: + ros__parameters: + solver_plugin: solver_plugins::CeresSolver + ceres_linear_solver: SPARSE_NORMAL_CHOLESKY + ceres_preconditioner: SCHUR_JACOBI + ceres_trust_strategy: LEVENBERG_MARQUARDT + ceres_dogleg_type: TRADITIONAL_DOGLEG + ceres_loss_function: None + + # ROS Parameters + odom_frame: odom + map_frame: map + base_frame: base_link + scan_topic: /scan + mode: localization #localization + + # if you'd like to start localizing on bringup in a map and pose + # map_file_name: + map_start_pose: [0.0, 0.0, 0.0] + + debug_logging: false + throttle_scans: 1 + transform_publish_period: 0.0002 #if 0 never publishes odometry + map_update_interval: 5.0 + resolution: 0.05 + max_laser_range: 20.0 #for rastering images + minimum_time_interval: 0.5 + transform_timeout: 0.5 + tf_buffer_duration: 30. + stack_size_to_use: 40000000 #// program needs a larger stack size to serialize large maps + + # General Parameters + use_scan_matching: true + use_scan_barycenter: true + minimum_travel_distance: 0.5 + minimum_travel_heading: 0.5 + scan_buffer_size: 3 + scan_buffer_maximum_scan_distance: 10.0 + link_match_minimum_response_fine: 0.1 + link_scan_maximum_distance: 1.5 + # do_loop_closing: true + do_loop_closing: false + loop_match_minimum_chain_size: 3 + loop_match_maximum_variance_coarse: 3.0 + loop_match_minimum_response_coarse: 0.35 + loop_match_minimum_response_fine: 0.45 + + # Correlation Parameters - Correlation Parameters + correlation_search_space_dimension: 0.5 + correlation_search_space_resolution: 0.01 + correlation_search_space_smear_deviation: 0.1 + + # Correlation Parameters - Loop Closure Parameters + loop_search_space_dimension: 8.0 + loop_search_space_resolution: 0.05 + loop_search_space_smear_deviation: 0.03 + loop_search_maximum_distance: 3.0 + + # Scan Matcher Parameters + distance_variance_penalty: 0.5 + angle_variance_penalty: 1.0 + + fine_search_angle_offset: 0.00349 + coarse_search_angle_offset: 0.349 + coarse_angle_resolution: 0.0349 + minimum_angle_penalty: 0.9 + minimum_distance_penalty: 0.5 + use_response_expansion: true \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/mapper_params_online_async_sim.yaml b/src/rm_nav_bringup/config/simulation/mapper_params_online_async_sim.yaml new file mode 100644 index 0000000..9e419d6 --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/mapper_params_online_async_sim.yaml @@ -0,0 +1,73 @@ +slam_toolbox: + ros__parameters: + + # Plugin params + solver_plugin: solver_plugins::CeresSolver + ceres_linear_solver: SPARSE_NORMAL_CHOLESKY + ceres_preconditioner: SCHUR_JACOBI + ceres_trust_strategy: LEVENBERG_MARQUARDT + ceres_dogleg_type: TRADITIONAL_DOGLEG + ceres_loss_function: None + + # ROS Parameters + odom_frame: odom + map_frame: map + base_frame: base_link + scan_topic: /scan + mode: mapping #localization + + # if you'd like to immediately start continuing a map at a given pose + # or at the dock, but they are mutually exclusive, if pose is given + # will use pose + #map_file_name: test_steve + # map_start_pose: [0.0, 0.0, 0.0] + #map_start_at_dock: true + + debug_logging: false + throttle_scans: 1 + transform_publish_period: 0.02 #if 0 never publishes odometry + map_update_interval: 5.0 + resolution: 0.05 + max_laser_range: 20.0 #for rastering images + minimum_time_interval: 0.5 + transform_timeout: 0.2 + tf_buffer_duration: 30. + stack_size_to_use: 40000000 #// program needs a larger stack size to serialize large maps + enable_interactive_mode: true + + # General Parameters + use_scan_matching: true + use_scan_barycenter: true + minimum_travel_distance: 0.5 + minimum_travel_heading: 0.5 + scan_buffer_size: 10 + scan_buffer_maximum_scan_distance: 10.0 + link_match_minimum_response_fine: 0.1 + link_scan_maximum_distance: 1.5 + loop_search_maximum_distance: 3.0 + do_loop_closing: true + loop_match_minimum_chain_size: 10 + loop_match_maximum_variance_coarse: 3.0 + loop_match_minimum_response_coarse: 0.35 + loop_match_minimum_response_fine: 0.45 + + # Correlation Parameters - Correlation Parameters + correlation_search_space_dimension: 0.5 + correlation_search_space_resolution: 0.01 + correlation_search_space_smear_deviation: 0.1 + + # Correlation Parameters - Loop Closure Parameters + loop_search_space_dimension: 8.0 + loop_search_space_resolution: 0.05 + loop_search_space_smear_deviation: 0.03 + + # Scan Matcher Parameters + distance_variance_penalty: 0.5 + angle_variance_penalty: 1.0 + + fine_search_angle_offset: 0.00349 + coarse_search_angle_offset: 0.349 + coarse_angle_resolution: 0.0349 + minimum_angle_penalty: 0.9 + minimum_distance_penalty: 0.5 + use_response_expansion: true \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/measurement_params_sim.yaml b/src/rm_nav_bringup/config/simulation/measurement_params_sim.yaml new file mode 100644 index 0000000..2e8124b --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/measurement_params_sim.yaml @@ -0,0 +1,3 @@ +base_link2livox_frame: + xyz: "\"0.12 0.0 0.175\"" + rpy: "\"0.0 0.0 0.0\"" \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/nav2_params_sim.yaml b/src/rm_nav_bringup/config/simulation/nav2_params_sim.yaml new file mode 100644 index 0000000..699fb15 --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/nav2_params_sim.yaml @@ -0,0 +1,411 @@ +amcl: + ros__parameters: + use_sim_time: False + alpha1: 0.2 + alpha2: 0.2 + alpha3: 0.2 + alpha4: 0.2 + alpha5: 0.2 + base_frame_id: "base_link" + beam_skip_distance: 0.5 + beam_skip_error_threshold: 0.9 + beam_skip_threshold: 0.3 + do_beamskip: false + global_frame_id: "map" + lambda_short: 0.1 + laser_likelihood_max_dist: 2.0 + laser_max_range: 100.0 + laser_min_range: -1.0 + laser_model_type: "likelihood_field" + max_beams: 60 + max_particles: 2000 + min_particles: 500 + odom_frame_id: "odom" + pf_err: 0.05 + pf_z: 0.99 + recovery_alpha_fast: 0.0 + recovery_alpha_slow: 0.0 + resample_interval: 1 + robot_model_type: "nav2_amcl::OmniMotionModel" + save_pose_rate: 0.5 + sigma_hit: 0.2 + tf_broadcast: true + transform_tolerance: 1.0 + update_min_a: 0.2 + update_min_d: 0.25 + z_hit: 0.5 + z_max: 0.05 + z_rand: 0.5 + z_short: 0.05 + scan_topic: scan + +amcl_map_client: + ros__parameters: + use_sim_time: False + +amcl_rclcpp_node: + ros__parameters: + use_sim_time: False + +bt_navigator: + ros__parameters: + use_sim_time: False + global_frame: map + robot_base_frame: base_link_fake + odom_topic: /Odometry + bt_loop_duration: 10 + default_server_timeout: 20 + plugin_lib_names: + - nav2_compute_path_to_pose_action_bt_node + - nav2_compute_path_through_poses_action_bt_node + - nav2_follow_path_action_bt_node + - nav2_back_up_action_bt_node + - nav2_spin_action_bt_node + - nav2_wait_action_bt_node + - nav2_clear_costmap_service_bt_node + - nav2_is_stuck_condition_bt_node + - nav2_goal_reached_condition_bt_node + - nav2_goal_updated_condition_bt_node + - nav2_initial_pose_received_condition_bt_node + - nav2_reinitialize_global_localization_service_bt_node + - nav2_rate_controller_bt_node + - nav2_distance_controller_bt_node + - nav2_speed_controller_bt_node + - nav2_truncate_path_action_bt_node + - nav2_goal_updater_node_bt_node + - nav2_recovery_node_bt_node + - nav2_pipeline_sequence_bt_node + - nav2_round_robin_node_bt_node + - nav2_transform_available_condition_bt_node + - nav2_time_expired_condition_bt_node + - nav2_distance_traveled_condition_bt_node + - nav2_single_trigger_bt_node + - nav2_is_battery_low_condition_bt_node + - nav2_navigate_through_poses_action_bt_node + - nav2_navigate_to_pose_action_bt_node + - nav2_remove_passed_goals_action_bt_node + - nav2_planner_selector_bt_node + - nav2_controller_selector_bt_node + - nav2_goal_checker_selector_bt_node + +controller_server: + ros__parameters: + use_sim_time: False + controller_frequency: 20.0 + min_x_velocity_threshold: 0.001 + min_y_velocity_threshold: 0.1 + min_theta_velocity_threshold: 0.001 + failure_tolerance: 0.3 + progress_checker_plugin: "progress_checker" + goal_checker_plugins: ["general_goal_checker"] # "precise_goal_checker" + controller_plugins: ["FollowPath"] + progress_checker: + plugin: "nav2_controller::SimpleProgressChecker" + required_movement_radius: 0.5 + movement_time_allowance: 10.0 + general_goal_checker: + stateful: True + plugin: "nav2_controller::SimpleGoalChecker" + xy_goal_tolerance: 0.25 + yaw_goal_tolerance: 6.28 + FollowPath: + plugin: teb_local_planner::TebLocalPlannerROS + # https://github.com/rst-tu-dortmund/teb_local_planner/tree/ros2-master + + #******************************************************************************* + # Trajectory + #******************************************************************************* + teb_autosize: 1.0 #是否自动调整轨迹大小。根据时间分辨率自动调整轨迹大小 + dt_ref: 0.6 #轨迹的期望时间分辨率(应该与底层控制速率的数量级相符) + dt_hysteresis: 0.06 #自动调整大小的滞后(根据当前时间分辨率 dt):通常为 dt_ref 的 10% + max_samples: 500 #最大样本数量;警告:如果太小,离散化/分辨率可能不足以用于给定的机器人模型,或者避障不再有效。 + global_plan_overwrite_orientation: False #覆盖全局规划器提供的局部子目标的方向 + allow_init_with_backwards_motion: True #如果为真,基础轨迹可能会以后退运动初始化,以防目标在本地代价地图中位于起点之后(仅当机器人配备后部传感器时推荐) + max_global_plan_lookahead_dist: 2.0 #指定用于优化考虑的全局规划子集的最大长度(累积欧氏距离)[如果 <=0:禁用;长度也受到本地代价地图大小的限制! + force_reinit_new_goal_dist: 1.0 #如果之前的目标更新距离超过此值,则强制规划器重新初始化轨迹 + force_reinit_new_goal_angular: 0.78 #如果之前的目标更新的角度超过此弧度值,则强制规划器重新初始化轨迹 + feasibility_check_no_poses: 0 #在预测路径上,每个采样间隔需要检查可行性的姿态数目 + feasibility_check_lookahead_distance: 1.5 #每个采样间隔需要检查可行性的距离(以及feasibility_check_no_poses之下的索引)与机器人之间的距离。-1检查所有姿势,直到feasibility_check_no_poses。https://robotics.stackexchange.com/questions/80845/what-are-reasons-for-teb-planners-feasibility-check-to-fail + exact_arc_length: False #如果为真,规划器在速度、加速度和转向率计算中使用准确的弧长 [-> 增加 CPU 时间],否则使用欧氏近似。 + publish_feedback: False #发布包含完整轨迹和活动障碍物列表的规划器反馈(应仅用于评估或调试目的) + visualize_with_time_as_z_axis_scale: 0.0 #在rviz里可看到优化使用的graph + + #******************************************************************************* + # ViaPoints 中间点 + #******************************************************************************* + global_plan_viapoint_sep: 0.5 #从全局计划中提取的连续中间点之间的最小分离距离 + via_points_ordered: False #是否遵循存储容器中中间点的顺序 + + #******************************************************************************* + # Robot + #******************************************************************************* + max_vel_x: 3.0 #最大平移速度 + max_vel_x_backwards: 3.0 #最大后退速度 + max_vel_theta: 6.0 #最大转向角速度 + acc_lim_x: 4.0 #最大平移加速度 + acc_lim_theta: 6.0 #最大角加速度 + is_footprint_dynamic: False #如果为真,在检查轨迹可行性之前更新足迹 + use_proportional_saturation: False #如果为true,则按比例减少所有扭曲分量(线性x和y以及角度z)(如果任何扭曲分量超过其相应的界限),而不是单独饱和每个扭曲分量 + transform_tolerance: 0.5 #在TF树中查询转换时的容差(秒) + + #******************************************************************************* + # Robot/Carlike 此部分参数仅适用于类似汽车的机器人(如差速驱动机器人) + #******************************************************************************* + # min_turning_radius: 0.0 #机器人的最小转弯半径。对于差速驱动机器人,此值为0 + # wheelbase: 1.0 #驱动轮轴与转向轮轴之间的距离。后轮驱动机器人此值可能为负数。 + # cmd_angle_instead_rotvel: False #是否用转向角代替控制指令消息中的旋转速度(需要结合轴距参数使用) + + #******************************************************************************* + # Robot/Omni 此部分参数仅适用于全方位移动机器人 + #******************************************************************************* + max_vel_y: 3.0 + acc_lim_y: 4.0 + + #******************************************************************************* + # GoalTolerance 目标容差 + #******************************************************************************* + free_goal_vel: False #允许机器人以最大速度驶向目的地,为False时,车到达终点时的目标速度为0; + + #******************************************************************************* + # Obstacles 障碍物 + #******************************************************************************* + min_obstacle_dist: 0.25 #机器人与障碍物之间最小的期望间隔距离 + inflation_dist: 0.6 #障碍物周围的缓冲区,用于增加安全裕度。此缓冲区内具有非零的惩罚代价 + dynamic_obstacle_inflation_dist: 0.7 #具有非零惩罚成本的动态障碍物预测位置周围的缓冲区(应大于min_obstacle_dist才能生效) + include_dynamic_obstacles: True #预测动态障碍物周围的缓冲区,用于增加安全裕度。此缓冲区内具有非零的惩罚代价 + include_costmap_obstacles: True #是否直接考虑代价地图中的障碍物 (如果没有单独的聚类和检测功能,则需要此选项) + legacy_obstacle_association: False #是否严格遵循局部规划出来的路径。如果为真,则使用旧的关联策略 (为每个障碍物找到最近的 TEB 姿势),否则使用新的关联策略 (为每个 TEB 姿势仅找到“相关”障碍物) + costmap_obstacles_behind_robot_dist: 1.5 #限制规划时考虑的占据局部代价地图障碍物 (指定距离,米)。该值仅对机器人后方的障碍物生效。 + obstacle_poses_affected: 15 #为了减少计算量,障碍物位置会附加到轨迹上最近的姿态上,但也会考虑一定数量的相邻姿态。 + + # costmap_converter_plugin: "costmap_converter::CostmapToPolygonsDBSMCCH" + # costmap_converter_spin_thread: True + # costmap_converter_rate: 10 + + #******************************************************************************* + # Obstacle - Velocity ratio parameters 该组包含用于根据障碍物 proximity 动态调整机器人速度的设置。 + #******************************************************************************* + obstacle_proximity_ratio_max_vel: 1.0 #由于接近静态障碍物而降低速度时用作上限的比率。 + obstacle_proximity_lower_bound: 0.0 #需要降低速度的静态障碍物距离 (米) + obstacle_proximity_upper_bound: 0.5 #应该保持较高速度的静态障碍物距离 (米) + + #******************************************************************************* + # Optimization 优化 + #******************************************************************************* + no_inner_iterations: 5 #在外循环每次迭代中调用求解器迭代的次数 + no_outer_iterations: 4 #外循环每次迭代会自动调整轨迹大小,并使用指定的内部迭代次数调用内部优化器 + optimization_activate: True #启用优化功能 + optimization_verbose: False #打印详细的优化过程信息 + penalty_epsilon: 0.15 #为惩罚函数添加微小的安全裕量,用于处理难以满足的硬性约束条件 + + # 权重参数 + obstacle_cost_exponent: 4.0 + weight_max_vel_x: 2.0 #满足最大允许平移速度的权重 + weight_max_vel_y: 2.0 #满足最大允许横移速度的权重 (仅用于全向移动机器人) + weight_max_vel_theta: 1.0 #满足最大允许角速度的权重 + weight_acc_lim_x: 1.0 #满足最大允许平移加速度的权重 + weight_acc_lim_y: 1.0 #满足最大允许横移加速度的权重 (仅用于全向移动机器人) + weight_acc_lim_theta: 1.0 #满足最大允许角加速度的权重 + weight_kinematics_nh: 0.0 #满足非全向运动学约束的权重 + weight_kinematics_forward_drive: 0.0 #强制机器人仅选择向前运动方向的权重 (仅用于差分驱动机器人) + weight_kinematics_turning_radius: 0.1 #强制最小转弯半径(小车型机器人)的优化权重 + weight_optimaltime: 0.1 #优化轨迹并尽量缩短运动时间的权重,确保在规定的时间内到达目标 + weight_shortest_path: 0.0 #倾向于选择更短的路径,路径可能更加弯曲或不平坦 + weight_obstacle: 100.0 #与障碍物保持最小距离的权重 + weight_inflation: 0.2 #优化轨迹并尽量避免膨胀区域的权重 (权重应设置较小) + weight_dynamic_obstacle: 10.0 #与动态障碍物保持最小距离的权重 + weight_dynamic_obstacle_inflation: 0.2 #优化轨迹并尽量避免动态障碍物膨胀区域的权重 (权重应设置较小) + weight_viapoint: 1.0 #一些特定的权重 (例如 weight_obstacle) 会在外循环每次迭代中乘以该因子进行调整。这样逐步增加权重比直接设置较高的权重值可以改善优化问题的数值条件 + weight_adapt_factor: 2.0 #非线性障碍物代价的指数 (cost = linear_cost * obstacle_cost_exponent)。设置为 1 则禁用非线性代价 (默认值) + + #******************************************************************************* + # Homotopy Class Planner + #******************************************************************************* + enable_homotopy_class_planning: False + enable_multithreading: True #是否启用多线程并行规划多个路径 + max_number_classes: 3 #允许探索的最大替代拓扑类别数 (会增加计算量) + selection_cost_hysteresis: 1.0 + selection_prefer_initial_plan: 1.0 + selection_obst_cost_scale: 1.0 + selection_alternative_time_cost: True + + roadmap_graph_no_samples: 15 #指定为创建路线图而生成的样本数 + roadmap_graph_area_width: 5.0 #指定该区域的宽度 + roadmap_graph_area_length_scale: 1.0 #矩形区域的长度由起点和终点之间的距离决定。该参数会进一步缩放距离,使几何中心保持不变 + h_signature_prescaler: 0.5 #(0.2 < value <= 1)缩放用于区分同伦类的内部参数 + h_signature_threshold: 0.1 #如果实部和复部的差都低于规定的阈值,则假定两个h签名相等。 + obstacle_heading_threshold: 0.45 #为了将障碍物纳入探索范围,需要指定障碍物朝向和目标朝向的归一化点积的阈值 + switching_blocking_period: 0.0 #指定允许切换到新的等效类之前需要终止的持续时间 + viapoints_all_candidates: True #若为真,则所有不同拓扑结构的路径都会附加到路径点集合上,否则只会附加与初始/全局计划共享相同路径点的路径 (在测试优化节点中没有效果) + delete_detours_backwards: True + max_ratio_detours_duration_best_duration: 3.0 + visualize_hc_graph: False #可视化用于探索新拓扑类的图 + + #******************************************************************************* + # Recovery + #******************************************************************************* + #当规划器检测到系统异常,允许缩小时域规划范围,TEB将以更近的点作为规划目标,尝试重新规划出可行路径; + shrink_horizon_backup: True + shrink_horizon_min_duration: 10.0 #如果检测到不可行的轨迹,激活缩小的水平线后备模式,本参数为其最短持续时间。 + oscillation_recovery: True #尝试检测和解决振荡 + oscillation_v_eps: 0.1 #(0,1)内的 normalized 线速度的平均值的阈值,判断机器人是否运动异常 + oscillation_omega_eps: 0.1 #(0,1)内的 normalized 角速度的平均值,判断机器人是否运动异常 + oscillation_recovery_min_duration: 10.0 #在这个时间内,是否再次发生FailureDetector检测的振荡 + oscillation_filter_duration: 10.0 #failure_detector_中buffer容器的大小为oscillation_filter_duration * controller_frequency + +local_costmap: + local_costmap: + ros__parameters: + update_frequency: 20.0 + publish_frequency: 10.0 + global_frame: map + robot_base_frame: base_link_fake + use_sim_time: False + rolling_window: true + width: 5 + height: 5 + resolution: 0.02 + robot_radius: 0.2 + plugins: ["obstacle_layer", "inflation_layer"] + obstacle_layer: + plugin: "nav2_costmap_2d::ObstacleLayer" + enabled: true + observation_sources: scan + scan: + topic: /scan + raytrace_max_range: 6.0 + obstacle_max_range: 6.0 + obstacle_min_range: 0.1 + max_obstacle_height: 2.0 + clearing: true + marking: true + inf_is_valid: true + data_type: "LaserScan" + inflation_layer: + plugin: "nav2_costmap_2d::InflationLayer" + cost_scaling_factor: 5.0 + inflation_radius: 0.6 + always_send_full_costmap: true + +global_costmap: + global_costmap: + ros__parameters: + update_frequency: 5.0 + publish_frequency: 2.0 + global_frame: map + robot_base_frame: base_link_fake + use_sim_time: False + robot_radius: 0.2 + resolution: 0.04 + track_unknown_space: true + plugins: ["static_layer", "stvl_layer", "inflation_layer"] + stvl_layer: + plugin: "spatio_temporal_voxel_layer/SpatioTemporalVoxelLayer" + # https://github.com/SteveMacenski/spatio_temporal_voxel_layer + enabled: true + voxel_decay: 0.5 # 如果是线性衰减,单位为秒;如果是指数衰减,则为 e 的 n 次方 + decay_model: 0 # 衰减模型,0=线性,1=指数,-1=持久 + voxel_size: 0.05 # 每个体素的尺寸,单位为米 + track_unknown_space: true # default space is unknown + mark_threshold: 0 # voxel height + update_footprint_enabled: true + combination_method: 1 # 1=max, 0=override + origin_z: 0.0 # 单位为米 + publish_voxel_map: true # default false, 是否发布体素地图 + transform_tolerance: 0.2 # 单位为秒 + mapping_mode: false # default off, saves map not for navigation + map_save_duration: 60.0 # default 60s, how often to autosave + observation_sources: livox_mark livox_clear + livox_mark: + data_type: PointCloud2 + topic: /segmentation/obstacle + marking: true + clearing: false + obstacle_range: 3.0 # meters + min_obstacle_height: 0.2 # default 0, meters + max_obstacle_height: 2.0 # default 3, meters + expected_update_rate: 0.0 # default 0, if not updating at this rate at least, remove from buffer + observation_persistence: 0.0 # default 0, use all measurements taken during now-value, 0=latest + inf_is_valid: false # default false, for laser scans + filter: "voxel" # default passthrough, apply "voxel", "passthrough", or no filter to sensor data, recommend on + voxel_min_points: 0 # default 0, minimum points per voxel for voxel filter + clear_after_reading: true # default false, clear the buffer after the layer gets readings from it + livox_clear: + enabled: true # default true, can be toggled on/off with associated service call + data_type: PointCloud2 + topic: /segmentation/obstacle + marking: false + clearing: true + max_z: 8.0 # default 10, meters + min_z: 1.0 # default 0, meters + vertical_fov_angle: 1.029 # 垂直视场角,单位为弧度,For 3D lidars it's the symmetric FOV about the planar axis. + vertical_fov_padding: 0.05 # 3D Lidar only. Default 0, in meters + horizontal_fov_angle: 6.29 # 3D 激光雷达水平视场角 + decay_acceleration: 5.0 # default 0, 1/s^2. + model_type: 1 # 0=深度相机,1=3D激光雷达 + static_layer: + plugin: "nav2_costmap_2d::StaticLayer" + footprint_clearing_enabled: True + map_subscribe_transient_local: True + inflation_layer: + plugin: "nav2_costmap_2d::InflationLayer" + cost_scaling_factor: 8.0 + inflation_radius: 0.7 + always_send_full_costmap: True + +map_saver: + ros__parameters: + use_sim_time: False + save_map_timeout: 5.0 + free_thresh_default: 0.25 + occupied_thresh_default: 0.65 + map_subscribe_transient_local: True + +planner_server: + ros__parameters: + expected_planner_frequency: 5.0 + use_sim_time: False + planner_plugins: ["GridBased"] + GridBased: + plugin: "nav2_navfn_planner/NavfnPlanner" + tolerance: 0.5 + use_astar: false + allow_unknown: true + +recoveries_server: + ros__parameters: + costmap_topic: local_costmap/costmap_raw + footprint_topic: local_costmap/published_footprint + cycle_frequency: 2.0 + recovery_plugins: ["spin", "backup"] + spin: + plugin: "nav2_recoveries/Spin" + backup: + plugin: "nav2_recoveries/BackUp" + global_frame: odom + robot_base_frame: base_link_fake + transform_timeout: 0.1 + use_sim_time: False + simulate_ahead_time: 1.0 + max_rotational_vel: 3.0 + min_rotational_vel: 0.4 + rotational_acc_lim: 3.0 + +map_server: + ros__parameters: + use_sim_time: False + yaml_filename: "" + +velocity_smoother: + ros__parameters: + smoothing_frequency: 20.0 + scale_velocities: False + feedback: "OPEN_LOOP" + max_velocity: [2.0, 2.0, 3.0] + min_velocity: [-2.0, -2.0, -3.0] + deadband_velocity: [0.0, 0.0, 0.0] + velocity_timeout: 1.0 + max_accel: [4.0, 4.0, 6.0] + max_decel: [-4.0, -4.0, -6.0] + odom_topic: "Odometry" + odom_duration: 0.1 \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/pointlio_mid360_sim.yaml b/src/rm_nav_bringup/config/simulation/pointlio_mid360_sim.yaml new file mode 100755 index 0000000..97e1f91 --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/pointlio_mid360_sim.yaml @@ -0,0 +1,58 @@ +/**: + ros__parameters: + common: + lid_topic: "/livox/lidar" + imu_topic: "/livox/imu" + con_frame: false # true: if you need to combine several LiDAR frames into one + con_frame_num: 1 # the number of frames combined + cut_frame: false # true: if you need to cut one LiDAR frame into several subframes + cut_frame_time_interval: 0.166666 # should be integral fraction of 1 / LiDAR frequency + time_diff_lidar_to_imu: 0.0 # Time offset between LiDAR and IMU calibrated by other algorithms, e.g., LI-Init (find in Readme) + + preprocess: + lidar_type: 1 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR + scan_line: 4 + timestamp_unit: 3 # the unit of time/t field in the PointCloud2 rostopic: 0-second, 1-milisecond, 2-microsecond, 3-nanosecond. + blind: 0.5 + + mapping: + imu_en: true + start_in_aggressive_motion: false # if true, a preknown gravity should be provided in following gravity_init + extrinsic_est_en: false # for aggressive motion, set this variable false + imu_time_inte: 0.01612 # = 1 / frequency of IMU + satu_acc: 3.0 # the saturation value of IMU's acceleration. not related to the units + satu_gyro: 35.0 # the saturation value of IMU's angular velocity. not related to the units + acc_norm: 9.81 # 1.0 for g as unit, 9.81 for m/s^2 as unit of the IMU's acceleration + lidar_meas_cov: 0.01 # 0.001 + acc_cov_output: 500.0 + gyr_cov_output: 1000.0 + b_acc_cov: 0.0001 + b_gyr_cov: 0.0001 + imu_meas_acc_cov: 0.6 #0.1 # 2 + imu_meas_omg_cov: 0.6 #0.1 # 2 + gyr_cov_input: 0.01 # for IMU as input model + acc_cov_input: 0.1 # for IMU as input model + plane_thr: 0.1 # 0.05, the threshold for plane criteria, the smaller, the flatter a plane + match_s: 81.0 + fov_degree: 360.0 + det_range: 100.0 + gravity_align: true # true to align the z axis of world frame with the direction of gravity, and the gravity direction should be specified below + gravity: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # gravity to be aligned + gravity_init: [ 0.0, 0.0, -9.810 ] # [0.0, 9.810, 0.0] # # preknown gravity in the first IMU body frame, use when imu_en is false or start from a non-stationary state + extrinsic_T: [ 0.0, 0.0, 0.05 ] # Simulation + extrinsic_R: [1., 0., 0., + 0., 1., 0., + 0., 0., 1.] + + odometry: + publish_odometry_without_downsample: false + + publish: + path_en: true # false: close the path output + scan_publish_en: true # false: close all the point cloud output + scan_bodyframe_pub_en: false # true: output the point cloud scans in IMU-body-frame + + pcd_save: + pcd_save_en: false + interval: -1 # how many LiDAR frames saved in each pcd file; + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. \ No newline at end of file diff --git a/src/rm_nav_bringup/config/simulation/segmentation_sim.yaml b/src/rm_nav_bringup/config/simulation/segmentation_sim.yaml new file mode 100644 index 0000000..ca40425 --- /dev/null +++ b/src/rm_nav_bringup/config/simulation/segmentation_sim.yaml @@ -0,0 +1,28 @@ +ground_segmentation: + ros__parameters: + n_threads: 4 # number of threads to use. + + r_min: 0.2 # minimum point distance. + r_max: 50 # maximum point distance. + n_bins: 120 # number of radial bins. + n_segments: 360 # number of radial segments. + + max_dist_to_line: 0.1 # maximum vertical distance of point to line to be considered ground. + + sensor_height: 0.275 # SIMULATION sensor height above ground. + min_slope: -0.4 # minimum slope of a ground line. + max_slope: 0.4 # maximum slope of a ground line. + max_fit_error: 0.05 # maximum error of a point during line fit. + long_threshold: 1.0 # distance between points after which they are considered far from each other. + max_long_height: 0.1 # maximum height change to previous point in long line. + max_start_height: 0.5 # maximum difference to estimated ground height to start a new line. + line_search_angle: 0.8 # how far to search in angular direction to find a line [rad]. + + gravity_aligned_frame: "" # Frame which has its z axis aligned with gravity. (Sensor frame if empty.) + + latch: false # latch output topics or not + visualize: false # visualize segmentation result - USE ONLY FOR DEBUGGING + + input_topic: "/livox/lidar/pointcloud" + obstacle_output_topic: "segmentation/obstacle" + ground_output_topic: "segmentation/ground" \ No newline at end of file diff --git a/src/rm_nav_bringup/launch/bringup_real.launch.py b/src/rm_nav_bringup/launch/bringup_real.launch.py new file mode 100644 index 0000000..e4a186f --- /dev/null +++ b/src/rm_nav_bringup/launch/bringup_real.launch.py @@ -0,0 +1,370 @@ +import os +import yaml + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import IncludeLaunchDescription, DeclareLaunchArgument, GroupAction, TimerAction +from launch_ros.actions import Node +from launch.launch_description_sources import PythonLaunchDescriptionSource +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution, Command +from launch.conditions import LaunchConfigurationEquals, LaunchConfigurationNotEquals, IfCondition + + +def generate_launch_description(): + # Get the launch directory + rm_nav_bringup_dir = get_package_share_directory('rm_nav_bringup') + navigation2_launch_dir = os.path.join(get_package_share_directory('rm_navigation'), 'launch') + + # Create the launch configuration variables + world = LaunchConfiguration('world') + use_sim_time = LaunchConfiguration('use_sim_time') + use_lio_rviz = LaunchConfiguration('lio_rviz') + use_nav_rviz = LaunchConfiguration('nav_rviz') + + ################################ robot_description parameters start ############################### + launch_params = yaml.safe_load(open(os.path.join( + get_package_share_directory('rm_nav_bringup'), 'config', 'reality', 'measurement_params_real.yaml'))) + robot_description = Command(['xacro ', os.path.join( + get_package_share_directory('rm_nav_bringup'), 'urdf', 'sentry_robot_real.xacro'), + ' xyz:=', launch_params['base_link2livox_frame']['xyz'], ' rpy:=', launch_params['base_link2livox_frame']['rpy']]) + ################################# robot_description parameters end ################################ + + ########################## linefit_ground_segementation parameters start ########################## + segmentation_params = os.path.join(rm_nav_bringup_dir, 'config', 'reality', 'segmentation_real.yaml') + ########################## linefit_ground_segementation parameters end ############################ + + #################################### FAST_LIO parameters start #################################### + fastlio_mid360_params = os.path.join(rm_nav_bringup_dir, 'config', 'reality', 'fastlio_mid360_real.yaml') + fastlio_rviz_cfg_dir = os.path.join(rm_nav_bringup_dir, 'rviz', 'fastlio.rviz') + ##################################### FAST_LIO parameters end ##################################### + + ################################### POINT_LIO parameters start #################################### + pointlio_mid360_params = os.path.join(rm_nav_bringup_dir, 'config', 'reality', 'pointlio_mid360_real.yaml') + pointlio_rviz_cfg_dir = os.path.join(rm_nav_bringup_dir, 'rviz', 'pointlio.rviz') + #################################### POINT_LIO parameters end ##################################### + + ################################## slam_toolbox parameters start ################################## + slam_toolbox_map_dir = PathJoinSubstitution([rm_nav_bringup_dir, 'map', world]) + slam_toolbox_localization_file_dir = os.path.join(rm_nav_bringup_dir, 'config', 'reality', 'mapper_params_localization_real.yaml') + slam_toolbox_mapping_file_dir = os.path.join(rm_nav_bringup_dir, 'config', 'reality', 'mapper_params_online_async_real.yaml') + ################################### slam_toolbox parameters end ################################### + + ################################### navigation2 parameters start ################################## + nav2_map_dir = PathJoinSubstitution([rm_nav_bringup_dir, 'map', world]), ".yaml" + nav2_params_file_dir = os.path.join(rm_nav_bringup_dir, 'config', 'reality', 'nav2_params_real.yaml') + ################################### navigation2 parameters end #################################### + + ################################ icp_registration parameters start ################################ + icp_pcd_dir = PathJoinSubstitution([rm_nav_bringup_dir, 'PCD', world]), ".pcd" + icp_registration_params_dir = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'icp_registration_sim.yaml') + ################################# icp_registration parameters end ################################# + + ############################# pointcloud_downsampling parameters start ############################ + pointcloud_downsampling_config_dir = os.path.join(rm_nav_bringup_dir, 'config', 'reality', 'pointcloud_downsampling_real.yaml') + ############################# pointcloud_downsampling parameters start ############################ + + ####################### Livox_ros_driver2 parameters start ####################### + xfer_format = 4 # 0-PointCloud2Msg(PointXYZRTL), 1-LivoxCustomMsg, 2-PclPxyziMsg, 3-LivoxImuMsg, 4-AllMsg + multi_topic = 0 # 0-All LiDARs share the same topic, 1-One LiDAR one topic + data_src = 0 # 0-lidar, others-Invalid data src + publish_freq = 10.0 # freqency of publish, 5.0, 10.0, 20.0, 50.0, etc. + output_type = 0 + frame_id = 'livox_frame' + lvx_file_path = '/home/livox/livox_test.lvx' + cmdline_bd_code = 'livox0000000001' + + cur_path = os.path.split(os.path.realpath(__file__))[0] + '/' + cur_config_path = cur_path + '../config' + user_config_path = os.path.join(cur_config_path, 'reality', 'MID360_config.json') + + livox_ros2_params = [ + {"xfer_format": xfer_format}, + {"multi_topic": multi_topic}, + {"data_src": data_src}, + {"publish_freq": publish_freq}, + {"output_data_type": output_type}, + {"frame_id": frame_id}, + {"lvx_file_path": lvx_file_path}, + {"user_config_path": user_config_path}, + {"cmdline_input_bd_code": cmdline_bd_code} + ] + ####################### Livox_ros_driver2 parameters end ######################### + + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', + default_value='False', + description='Use reality (Gazebo) clock if true') + + declare_use_lio_rviz_cmd = DeclareLaunchArgument( + 'lio_rviz', + default_value='False', + description='Visualize FAST_LIO or Point_LIO cloud_map if true') + + declare_nav_rviz_cmd = DeclareLaunchArgument( + 'nav_rviz', + default_value='True', + description='Visualize navigation2 if true') + + declare_world_cmd = DeclareLaunchArgument( + 'world', + default_value='328', + description='Select world (map file, pcd file, world file share the same name prefix as the this parameter)') + + declare_mode_cmd = DeclareLaunchArgument( + 'mode', + default_value='', + description='Choose mode: nav, mapping') + + declare_LIO_cmd = DeclareLaunchArgument( + 'lio', + default_value='fast_lio', + description='Choose lio alogrithm: fastlio or pointlio') + + declare_localization_cmd = DeclareLaunchArgument( + 'localization', + default_value='', + description='Choose localization method: slam_toolbox, amcl, icp') + + start_robot_state_publisher_cmd = Node( + package='robot_state_publisher', + executable='robot_state_publisher', + name='robot_state_publisher', + parameters=[{ + 'use_sim_time': use_sim_time, + 'robot_description': robot_description + }], + output='screen' + ) + + # Specify the actions + start_livox_ros_driver2_node = Node( + package='livox_ros_driver2', + executable='livox_ros_driver2_node', + name='livox_lidar_publisher', + output='screen', + parameters=livox_ros2_params + ) + + bringup_imu_complementary_filter_node = Node( + package='imu_complementary_filter', + executable='complementary_filter_node', + name='complementary_filter_gain_node', + output='screen', + parameters=[ + {'do_bias_estimation': True}, + {'do_adaptive_gain': True}, + {'use_mag': False}, + {'gain_acc': 0.01}, + {'gain_mag': 0.01}, + ], + remappings=[ + ('/imu/data_raw', '/livox/imu'), + ] + ) + + bringup_linefit_ground_segmentation_node = Node( + package='linefit_ground_segmentation_ros', + executable='ground_segmentation_node', + output='screen', + parameters=[segmentation_params] + ) + + bringup_pointcloud_to_laserscan_node = Node( + package='pointcloud_to_laserscan', executable='pointcloud_to_laserscan_node', + remappings=[('cloud_in', ['/segmentation/obstacle']), + ('scan', ['/scan'])], + parameters=[{ + 'target_frame': 'livox_frame', + 'transform_tolerance': 0.01, + 'min_height': -1.0, + 'max_height': 0.1, + 'angle_min': -3.14159, # -M_PI/2 + 'angle_max': 3.14159, # M_PI/2 + 'angle_increment': 0.0043, # M_PI/360.0 + 'scan_time': 0.3333, + 'range_min': 0.45, + 'range_max': 10.0, + 'use_inf': True, + 'inf_epsilon': 1.0 + }], + name='pointcloud_to_laserscan' + ) + + bringup_LIO_group = GroupAction([ + Node( + package="tf2_ros", + executable="static_transform_publisher", + # Copy from the 'livox_joint' in 'sentry_robot.xacro'. + arguments=[ + # Useless arguments, provided by LIO in publish_odometry() function + # '--x', '0.0', + # '--y', '0.0', + # '--z', '0.0', + # '--roll', '0.0', + # '--pitch', '0.0', + # '--yaw', '0.0', + '--frame-id', 'odom', + '--child-frame-id', 'lidar_odom' + ], + ), + + GroupAction( + condition = LaunchConfigurationEquals('lio', 'fastlio'), + actions=[ + Node( + package='fast_lio', + executable='fastlio_mapping', + parameters=[ + fastlio_mid360_params, + {use_sim_time: use_sim_time} + ], + output='screen' + ), + Node( + package='rviz2', + executable='rviz2', + arguments=['-d', fastlio_rviz_cfg_dir], + condition = IfCondition(use_lio_rviz), + ), + ]), + + GroupAction( + condition = LaunchConfigurationEquals('lio', 'pointlio'), + actions=[ + Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=[ + pointlio_mid360_params, + {'use_sim_time': use_sim_time, + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': True, + 'init_map_size': 10, + 'point_filter_num': 3, # Options: 1, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.5, # Options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.5, # Options: 0.5, 0.3, 0.15, 0.1 + 'ivox_nearby_type': 6, # Options: 0, 6, 18, 26 + 'runtime_pos_log_enable': False} + ], + ), + Node( + package='rviz2', + executable='rviz2', + arguments=['-d', pointlio_rviz_cfg_dir], + condition = IfCondition(use_lio_rviz), + ) + ]) + ]) + + start_localization_group = GroupAction( + condition = LaunchConfigurationEquals('mode', 'nav'), + actions=[ + Node( + condition = LaunchConfigurationEquals('localization', 'slam_toolbox'), + package='slam_toolbox', + executable='localization_slam_toolbox_node', + name='slam_toolbox', + parameters=[ + slam_toolbox_localization_file_dir, + {'use_sim_time': use_sim_time, + 'map_file_name': slam_toolbox_map_dir, + 'map_start_pose': [0.0, 0.0, 0.0]} + ], + ), + + IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(navigation2_launch_dir,'localization_amcl_launch.py')), + condition = LaunchConfigurationEquals('localization', 'amcl'), + launch_arguments = { + 'use_sim_time': use_sim_time, + 'params_file': nav2_params_file_dir, + 'map': nav2_map_dir}.items() + ), + + TimerAction( + period=7.0, + actions=[ + Node( + condition=LaunchConfigurationEquals('localization', 'icp'), + package='icp_registration', + executable='icp_registration_node', + output='screen', + parameters=[ + icp_registration_params_dir, + {'use_sim_time': use_sim_time, + 'pcd_path': icp_pcd_dir} + ], + # arguments=['--ros-args', '--log-level', ['icp_registration:=', 'DEBUG']] + ) + ] + ), + + IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(navigation2_launch_dir, 'map_server_launch.py')), + condition = LaunchConfigurationNotEquals('localization', 'slam_toolbox'), + launch_arguments={ + 'use_sim_time': use_sim_time, + 'map': nav2_map_dir, + 'params_file': nav2_params_file_dir, + 'container_name': 'nav2_container'}.items()) + ] + ) + + bringup_fake_vel_transform_node = Node( + package='fake_vel_transform', + executable='fake_vel_transform_node', + output='screen', + parameters=[{ + 'use_sim_time': use_sim_time, + 'spin_speed': 0.0 # rad/s + }] + ) + + start_mapping = Node( + condition = LaunchConfigurationEquals('mode', 'mapping'), + package='slam_toolbox', + executable='async_slam_toolbox_node', + name='slam_toolbox', + parameters=[ + slam_toolbox_mapping_file_dir, + {'use_sim_time': use_sim_time,} + ], + ) + + start_navigation2 = IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(navigation2_launch_dir, 'bringup_rm_navigation.py')), + launch_arguments={ + 'use_sim_time': use_sim_time, + 'map': nav2_map_dir, + 'params_file': nav2_params_file_dir, + 'nav_rviz': use_nav_rviz}.items() + ) + + ld = LaunchDescription() + + # Declare the launch options + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_use_lio_rviz_cmd) + ld.add_action(declare_nav_rviz_cmd) + ld.add_action(declare_world_cmd) + ld.add_action(declare_mode_cmd) + ld.add_action(declare_localization_cmd) + ld.add_action(declare_LIO_cmd) + + ld.add_action(start_robot_state_publisher_cmd) + ld.add_action(start_livox_ros_driver2_node) + ld.add_action(bringup_imu_complementary_filter_node) + ld.add_action(bringup_linefit_ground_segmentation_node) + ld.add_action(bringup_pointcloud_to_laserscan_node) + ld.add_action(bringup_LIO_group) + ld.add_action(start_localization_group) + ld.add_action(bringup_fake_vel_transform_node) + ld.add_action(start_mapping) + ld.add_action(start_navigation2) + + return ld diff --git a/src/rm_nav_bringup/launch/bringup_sim.launch.py b/src/rm_nav_bringup/launch/bringup_sim.launch.py new file mode 100644 index 0000000..4f3d4ec --- /dev/null +++ b/src/rm_nav_bringup/launch/bringup_sim.launch.py @@ -0,0 +1,331 @@ +import os +import yaml + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import IncludeLaunchDescription, DeclareLaunchArgument, GroupAction, TimerAction +from launch_ros.actions import Node +from launch.launch_description_sources import PythonLaunchDescriptionSource +from launch.substitutions import LaunchConfiguration, PathJoinSubstitution, Command +from launch.conditions import LaunchConfigurationEquals, LaunchConfigurationNotEquals, IfCondition + +def generate_launch_description(): + # Get the launch directory + rm_nav_bringup_dir = get_package_share_directory('rm_nav_bringup') + pb_rm_simulation_launch_dir = os.path.join(get_package_share_directory('pb_rm_simulation'), 'launch') + navigation2_launch_dir = os.path.join(get_package_share_directory('rm_navigation'), 'launch') + + # Create the launch configuration variables + world = LaunchConfiguration('world') + use_sim_time = LaunchConfiguration('use_sim_time') + use_lio_rviz = LaunchConfiguration('lio_rviz') + use_nav_rviz = LaunchConfiguration('nav_rviz') + + ################################ robot_description parameters start ############################### + launch_params = yaml.safe_load(open(os.path.join( + get_package_share_directory('rm_nav_bringup'), 'config', 'simulation', 'measurement_params_sim.yaml'))) + robot_description = Command(['xacro ', os.path.join( + get_package_share_directory('rm_nav_bringup'), 'urdf', 'sentry_robot_sim.xacro'), + ' xyz:=', launch_params['base_link2livox_frame']['xyz'], ' rpy:=', launch_params['base_link2livox_frame']['rpy']]) + ################################# robot_description parameters end ################################ + + ########################## linefit_ground_segementation parameters start ########################## + segmentation_params = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'segmentation_sim.yaml') + ########################## linefit_ground_segementation parameters end ############################ + + #################################### FAST_LIO parameters start #################################### + fastlio_mid360_params = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'fastlio_mid360_sim.yaml') + fastlio_rviz_cfg_dir = os.path.join(rm_nav_bringup_dir, 'rviz', 'fastlio.rviz') + ##################################### FAST_LIO parameters end ##################################### + + ################################### POINT_LIO parameters start #################################### + pointlio_mid360_params = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'pointlio_mid360_sim.yaml') + pointlio_rviz_cfg_dir = os.path.join(rm_nav_bringup_dir, 'rviz', 'pointlio.rviz') + #################################### POINT_LIO parameters end ##################################### + + ################################## slam_toolbox parameters start ################################## + slam_toolbox_map_dir = PathJoinSubstitution([rm_nav_bringup_dir, 'map', world]) + slam_toolbox_localization_file_dir = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'mapper_params_localization_sim.yaml') + slam_toolbox_mapping_file_dir = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'mapper_params_online_async_sim.yaml') + ################################### slam_toolbox parameters end ################################### + + ################################### navigation2 parameters start ################################## + nav2_map_dir = PathJoinSubstitution([rm_nav_bringup_dir, 'map', world]), ".yaml" + nav2_params_file_dir = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'nav2_params_sim.yaml') + ################################### navigation2 parameters end #################################### + + ################################ icp_registration parameters start ################################ + icp_pcd_dir = PathJoinSubstitution([rm_nav_bringup_dir, 'PCD', world]), ".pcd" + icp_registration_params_dir = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'icp_registration_sim.yaml') + ################################# icp_registration parameters end ################################# + + ############################# pointcloud_downsampling parameters start ############################ + pointcloud_downsampling_config_dir = os.path.join(rm_nav_bringup_dir, 'config', 'simulation', 'pointcloud_downsampling_sim.yaml') + ############################# pointcloud_downsampling parameters start ############################ + + # Declare launch options + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', + default_value='True', + description='Use simulation (Gazebo) clock if true') + + declare_use_lio_rviz_cmd = DeclareLaunchArgument( + 'lio_rviz', + default_value='False', + description='Visualize FAST_LIO or Point_LIO cloud_map if true') + + declare_nav_rviz_cmd = DeclareLaunchArgument( + 'nav_rviz', + default_value='True', + description='Visualize navigation2 if true') + + declare_world_cmd = DeclareLaunchArgument( + 'world', + default_value='RMUL', + description='Select world (map file, pcd file, world file share the same name prefix as the this parameter)') + + declare_mode_cmd = DeclareLaunchArgument( + 'mode', + default_value='', + description='Choose mode: nav, mapping') + + declare_localization_cmd = DeclareLaunchArgument( + 'localization', + default_value='', + description='Choose localization method: slam_toolbox, amcl, icp') + + declare_LIO_cmd = DeclareLaunchArgument( + 'lio', + default_value='fast_lio', + description='Choose lio alogrithm: fastlio or pointlio') + + # Specify the actions + start_rm_simulation = IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(pb_rm_simulation_launch_dir, 'rm_simulation.launch.py')), + launch_arguments={ + 'use_sim_time': use_sim_time, + 'world': world, + 'robot_description': robot_description, + 'rviz': 'False'}.items() + ) + + bringup_imu_complementary_filter_node = Node( + package='imu_complementary_filter', + executable='complementary_filter_node', + name='complementary_filter_gain_node', + output='screen', + parameters=[ + {'do_bias_estimation': True}, + {'do_adaptive_gain': True}, + {'use_mag': False}, + {'gain_acc': 0.01}, + {'gain_mag': 0.01}, + ], + remappings=[ + ('/imu/data_raw', '/livox/imu'), + ] + ) + + bringup_linefit_ground_segmentation_node = Node( + package='linefit_ground_segmentation_ros', + executable='ground_segmentation_node', + output='screen', + parameters=[segmentation_params] + ) + + bringup_pointcloud_to_laserscan_node = Node( + package='pointcloud_to_laserscan', executable='pointcloud_to_laserscan_node', + remappings=[('cloud_in', ['/segmentation/obstacle']), + ('scan', ['/scan'])], + parameters=[{ + 'target_frame': 'livox_frame', + 'transform_tolerance': 0.01, + 'min_height': -1.0, + 'max_height': 0.1, + 'angle_min': -3.14159, # -M_PI/2 + 'angle_max': 3.14159, # M_PI/2 + 'angle_increment': 0.0043, # M_PI/360.0 + 'scan_time': 0.3333, + 'range_min': 0.45, + 'range_max': 10.0, + 'use_inf': True, + 'inf_epsilon': 1.0 + }], + name='pointcloud_to_laserscan' + ) + + bringup_LIO_group = GroupAction([ + Node( + package="tf2_ros", + executable="static_transform_publisher", + arguments=[ + # Useless arguments, provided by LIO in publish_odometry() function + # '--x', '0.0', + # '--y', '0.0', + # '--z', '0.0', + # '--roll', '0.0', + # '--pitch', '0.0', + # '--yaw', '0.0', + '--frame-id', 'odom', + '--child-frame-id', 'lidar_odom' + ], + ), + + GroupAction( + condition = LaunchConfigurationEquals('lio', 'fastlio'), + actions=[ + Node( + package='fast_lio', + executable='fastlio_mapping', + parameters=[ + fastlio_mid360_params, + {use_sim_time: use_sim_time} + ], + output='screen' + ), + Node( + package='rviz2', + executable='rviz2', + arguments=['-d', fastlio_rviz_cfg_dir], + condition = IfCondition(use_lio_rviz), + ), + ]), + + GroupAction( + condition = LaunchConfigurationEquals('lio', 'pointlio'), + actions=[ + Node( + package='point_lio', + executable='pointlio_mapping', + name='laserMapping', + output='screen', + parameters=[ + pointlio_mid360_params, + {'use_sim_time': use_sim_time, + 'use_imu_as_input': False, # Change to True to use IMU as input of Point-LIO + 'prop_at_freq_of_imu': True, + 'check_satu': False, + 'init_map_size': 10, + 'point_filter_num': 3, # Options: 1, 3 + 'space_down_sample': True, + 'filter_size_surf': 0.5, # Options: 0.5, 0.3, 0.2, 0.15, 0.1 + 'filter_size_map': 0.5, # Options: 0.5, 0.3, 0.15, 0.1 + 'ivox_nearby_type': 26, # Options: 0, 6, 18, 26 + 'runtime_pos_log_enable': False} + ], + ), + Node( + package='rviz2', + executable='rviz2', + arguments=['-d', pointlio_rviz_cfg_dir], + condition = IfCondition(use_lio_rviz), + ) + ]) + ]) + + start_localization_group = GroupAction( + condition = LaunchConfigurationEquals('mode', 'nav'), + actions=[ + Node( + condition = LaunchConfigurationEquals('localization', 'slam_toolbox'), + package='slam_toolbox', + executable='localization_slam_toolbox_node', + name='slam_toolbox', + parameters=[ + slam_toolbox_localization_file_dir, + {'use_sim_time': use_sim_time, + 'map_file_name': slam_toolbox_map_dir, + 'map_start_pose': [0.0, 0.0, 0.0]} + ], + ), + + IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(navigation2_launch_dir,'localization_amcl_launch.py')), + condition = LaunchConfigurationEquals('localization', 'amcl'), + launch_arguments = { + 'use_sim_time': use_sim_time, + 'params_file': nav2_params_file_dir}.items() + ), + + TimerAction( + period=7.0, + actions=[ + Node( + condition=LaunchConfigurationEquals('localization', 'icp'), + package='icp_registration', + executable='icp_registration_node', + output='screen', + parameters=[ + icp_registration_params_dir, + {'use_sim_time': use_sim_time, + 'pcd_path': icp_pcd_dir} + ], + # arguments=['--ros-args', '--log-level', ['icp_registration:=', 'DEBUG']] + ) + ] + ), + + IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(navigation2_launch_dir, 'map_server_launch.py')), + condition = LaunchConfigurationNotEquals('localization', 'slam_toolbox'), + launch_arguments={ + 'use_sim_time': use_sim_time, + 'map': nav2_map_dir, + 'params_file': nav2_params_file_dir, + 'container_name': 'nav2_container'}.items()) + ] + ) + + bringup_fake_vel_transform_node = Node( + package='fake_vel_transform', + executable='fake_vel_transform_node', + output='screen', + parameters=[{ + 'use_sim_time': use_sim_time, + 'spin_speed': 5.0 # rad/s + }] + ) + + start_mapping = Node( + condition = LaunchConfigurationEquals('mode', 'mapping'), + package='slam_toolbox', + executable='async_slam_toolbox_node', + name='slam_toolbox', + parameters=[ + slam_toolbox_mapping_file_dir, + {'use_sim_time': use_sim_time,} + ], + ) + + start_navigation2 = IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(navigation2_launch_dir, 'bringup_rm_navigation.py')), + launch_arguments={ + 'use_sim_time': use_sim_time, + 'map': nav2_map_dir, + 'params_file': nav2_params_file_dir, + 'nav_rviz': use_nav_rviz}.items() + ) + + ld = LaunchDescription() + + # Declare the launch options + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_use_lio_rviz_cmd) + ld.add_action(declare_nav_rviz_cmd) + ld.add_action(declare_world_cmd) + ld.add_action(declare_mode_cmd) + ld.add_action(declare_localization_cmd) + ld.add_action(declare_LIO_cmd) + + ld.add_action(start_rm_simulation) + ld.add_action(bringup_imu_complementary_filter_node) + ld.add_action(bringup_linefit_ground_segmentation_node) + ld.add_action(bringup_pointcloud_to_laserscan_node) + ld.add_action(bringup_LIO_group) + ld.add_action(start_localization_group) + ld.add_action(bringup_fake_vel_transform_node) + ld.add_action(start_mapping) + ld.add_action(start_navigation2) + + return ld diff --git a/src/rm_nav_bringup/map/RC2025.data b/src/rm_nav_bringup/map/RC2025.data new file mode 100644 index 0000000..9a3057f Binary files /dev/null and b/src/rm_nav_bringup/map/RC2025.data differ diff --git a/src/rm_nav_bringup/map/RC2025.pgm b/src/rm_nav_bringup/map/RC2025.pgm new file mode 100644 index 0000000..118adb6 --- /dev/null +++ b/src/rm_nav_bringup/map/RC2025.pgm @@ -0,0 +1,4 @@ +P5 +456 512 +255 + \ No newline at end of file diff --git a/src/rm_nav_bringup/map/RC2025.posegraph b/src/rm_nav_bringup/map/RC2025.posegraph new file mode 100644 index 0000000..21bb1f2 Binary files /dev/null and b/src/rm_nav_bringup/map/RC2025.posegraph differ diff --git a/src/rm_nav_bringup/map/RC2025.yaml b/src/rm_nav_bringup/map/RC2025.yaml new file mode 100644 index 0000000..de41967 --- /dev/null +++ b/src/rm_nav_bringup/map/RC2025.yaml @@ -0,0 +1,7 @@ +image: RC2025.pgm +mode: trinary +resolution: 0.05 +origin: [-6.91, -9.56, 0] +negate: 0 +occupied_thresh: 0.65 +free_thresh: 0.25 \ No newline at end of file diff --git a/src/rm_nav_bringup/map/RMUC.data b/src/rm_nav_bringup/map/RMUC.data new file mode 100644 index 0000000..2e38b1e Binary files /dev/null and b/src/rm_nav_bringup/map/RMUC.data differ diff --git a/src/rm_nav_bringup/map/RMUC.pgm b/src/rm_nav_bringup/map/RMUC.pgm new file mode 100644 index 0000000..f06c710 Binary files /dev/null and b/src/rm_nav_bringup/map/RMUC.pgm differ diff --git a/src/rm_nav_bringup/map/RMUC.posegraph b/src/rm_nav_bringup/map/RMUC.posegraph new file mode 100644 index 0000000..7c2a704 Binary files /dev/null and b/src/rm_nav_bringup/map/RMUC.posegraph differ diff --git a/src/rm_nav_bringup/map/RMUC.yaml b/src/rm_nav_bringup/map/RMUC.yaml new file mode 100644 index 0000000..6f3c396 --- /dev/null +++ b/src/rm_nav_bringup/map/RMUC.yaml @@ -0,0 +1,7 @@ +image: RMUC.pgm +mode: trinary +resolution: 0.05 +origin: [-6.35, -7.6, 0] +negate: 0 +occupied_thresh: 0.65 +free_thresh: 0.25 \ No newline at end of file diff --git a/src/rm_nav_bringup/map/RMUL.data b/src/rm_nav_bringup/map/RMUL.data new file mode 100644 index 0000000..00fab12 Binary files /dev/null and b/src/rm_nav_bringup/map/RMUL.data differ diff --git a/src/rm_nav_bringup/map/RMUL.pgm b/src/rm_nav_bringup/map/RMUL.pgm new file mode 100644 index 0000000..cb5816b Binary files /dev/null and b/src/rm_nav_bringup/map/RMUL.pgm differ diff --git a/src/rm_nav_bringup/map/RMUL.posegraph b/src/rm_nav_bringup/map/RMUL.posegraph new file mode 100644 index 0000000..10e00fc Binary files /dev/null and b/src/rm_nav_bringup/map/RMUL.posegraph differ diff --git a/src/rm_nav_bringup/map/RMUL.yaml b/src/rm_nav_bringup/map/RMUL.yaml new file mode 100644 index 0000000..aac51a0 --- /dev/null +++ b/src/rm_nav_bringup/map/RMUL.yaml @@ -0,0 +1,7 @@ +image: RMUL.pgm +mode: trinary +resolution: 0.05 +origin: [-3.75, -4.54, 0] +negate: 0 +occupied_thresh: 0.65 +free_thresh: 0.25 \ No newline at end of file diff --git a/src/rm_nav_bringup/package.xml b/src/rm_nav_bringup/package.xml new file mode 100644 index 0000000..d5c2131 --- /dev/null +++ b/src/rm_nav_bringup/package.xml @@ -0,0 +1,18 @@ + + + + rm_nav_bringup + 0.0.0 + TODO: Package description + Lihan Chen + MIT + Lihan Chen + + ament_cmake + + rviz2 + + + ament_cmake + + diff --git a/src/rm_nav_bringup/rviz/fastlio.rviz b/src/rm_nav_bringup/rviz/fastlio.rviz new file mode 100644 index 0000000..467dd5c --- /dev/null +++ b/src/rm_nav_bringup/rviz/fastlio.rviz @@ -0,0 +1,305 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /CloudMap1 + Splitter Ratio: 0.5 + Tree Height: 549 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz_common/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: CloudMap +Visualization Manager: + Class: "" + Displays: + - Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + livox_frame: + Value: true + odom: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + odom: + livox_frame: + {} + Update Interval: 0 + Value: true + - Angle Tolerance: 0.10000000149011612 + Class: rviz_default_plugins/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: true + Enabled: true + Keep: 100 + Name: Odometry + Position Tolerance: 0.10000000149011612 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Color: 255; 25; 0 + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Value: Arrow + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /Odometry + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz_default_plugins/Path + Color: 25; 255; 0 + Enabled: true + Head Diameter: 0.30000001192092896 + Head Length: 0.20000000298023224 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.029999999329447746 + Shaft Diameter: 0.10000000149011612 + Shaft Length: 0.10000000149011612 + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /path + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 3.6277356147766113 + Min Value: -0.9040128588676453 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 30 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 186 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudRegistered + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.05000000074505806 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_registered + Use Fixed Frame: true + Use rainbow: true + Value: false + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 184 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudEffected + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.10000000149011612 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_effected + Use Fixed Frame: true + Use rainbow: true + Value: false + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 2.9017436504364014 + Min Value: -2.2115612030029297 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 255 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudMap + Position Transformer: XYZ + Selectable: true + Size (Pixels): 1 + Size (m): 0.05000000074505806 + Style: Points + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /Laser_map + Use Fixed Frame: true + Use rainbow: true + Value: true + Enabled: true + Global Options: + Background Color: 0; 0; 0 + Fixed Frame: odom + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 13.142322540283203 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: -0.008504047989845276 + Y: -0.0005770106799900532 + Z: 0.034441977739334106 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.9397971630096436 + Target Frame: + Value: Orbit (rviz_default_plugins) + Yaw: 4.408558368682861 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 846 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd000000040000000000000156000002b0fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d000002b0000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000002b0fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003d000002b0000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000005ad0000003efc0100000002fb0000000800540069006d00650100000000000005ad000002fb00fffffffb0000000800540069006d0065010000000000000450000000000000000000000451000002b000000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1453 + X: 368 + Y: 104 diff --git a/src/rm_nav_bringup/rviz/pointlio.rviz b/src/rm_nav_bringup/rviz/pointlio.rviz new file mode 100755 index 0000000..e0ec320 --- /dev/null +++ b/src/rm_nav_bringup/rviz/pointlio.rviz @@ -0,0 +1,335 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /CloudRegistered1 + Splitter Ratio: 0.5 + Tree Height: 549 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz_common/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: CloudRegistered +Visualization Manager: + Class: "" + Displays: + - Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + base_link: + Value: true + base_link_fake: + Value: true + imu_link: + Value: true + livox_frame: + Value: true + map: + Value: true + odom: + Value: true + wheel_1: + Value: true + wheel_2: + Value: true + wheel_3: + Value: true + wheel_4: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + map: + {} + odom: + base_link: + base_link_fake: + {} + imu_link: + {} + livox_frame: + {} + wheel_1: + {} + wheel_2: + {} + wheel_3: + {} + wheel_4: + {} + Update Interval: 0 + Value: true + - Angle Tolerance: 0.10000000149011612 + Class: rviz_default_plugins/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: true + Enabled: true + Keep: 100 + Name: Odometry + Position Tolerance: 0.10000000149011612 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Color: 255; 25; 0 + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Value: Arrow + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /aft_mapped_to_init + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz_default_plugins/Path + Color: 25; 255; 0 + Enabled: true + Head Diameter: 0.30000001192092896 + Head Length: 0.20000000298023224 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.029999999329447746 + Shaft Diameter: 0.10000000149011612 + Shaft Length: 0.10000000149011612 + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /path + Value: true + - Alpha: 0.6000000238418579 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 13.2266845703125 + Min Value: -0.19345740973949432 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 30 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 186 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudRegistered + Position Transformer: XYZ + Selectable: true + Size (Pixels): 1 + Size (m): 0.009999999776482582 + Style: Points + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_registered + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 184 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudEffected + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.019999999552965164 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /cloud_effected + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 2.036320447921753 + Min Value: -0.09378375858068466 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 255 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: CloudMap + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.019999999552965164 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /Laser_map + Use Fixed Frame: true + Use rainbow: true + Value: false + Enabled: true + Global Options: + Background Color: 0; 0; 0 + Fixed Frame: odom + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 15.3889799118042 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 2.570868730545044 + Y: 0.5283783674240112 + Z: 1.2330546379089355 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 1.044796347618103 + Target Frame: + Value: Orbit (rviz_default_plugins) + Yaw: 2.370389699935913 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 846 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd000000040000000000000156000002b0fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f00700065007200740069006500730200000438000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d000002b0000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000002b0fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003d000002b0000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000005ad0000003efc0100000002fb0000000800540069006d00650100000000000005ad000002fb00fffffffb0000000800540069006d0065010000000000000450000000000000000000000451000002b000000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1453 + X: 1602 + Y: 250 diff --git a/src/rm_nav_bringup/urdf/sentry_robot_real.xacro b/src/rm_nav_bringup/urdf/sentry_robot_real.xacro new file mode 100644 index 0000000..e934569 --- /dev/null +++ b/src/rm_nav_bringup/urdf/sentry_robot_real.xacro @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/rm_nav_bringup/urdf/sentry_robot_sim.xacro b/src/rm_nav_bringup/urdf/sentry_robot_sim.xacro new file mode 100644 index 0000000..e3f56f7 --- /dev/null +++ b/src/rm_nav_bringup/urdf/sentry_robot_sim.xacro @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gazebo/Orange + + + Gazebo/Red + + + Gazebo/Black + + + Gazebo/Red + + + Gazebo/Black + + + Gazebo/BuildingFrame + + + Gazebo/LightBlueLaser + + + + + + + + + / + + cmd_vel:=cmd_vel_chassis + odom:=odom + + + + 100 + + 10 + + + false + false + + + odom + base_link + + + 0.0001 + 0.0001 + 0.01 + + + + + + + + true + 100 + + + / + ~/out:=/livox/imu + + imu_link + + + + + + + + + + + diff --git a/src/rm_navigation/costmap_converter/.gitlab-ci.yml b/src/rm_navigation/costmap_converter/.gitlab-ci.yml new file mode 100644 index 0000000..9833056 --- /dev/null +++ b/src/rm_navigation/costmap_converter/.gitlab-ci.yml @@ -0,0 +1,23 @@ +build-kinetic: + variables: + ROSDISTRO: "kinetic" + CATKIN_WS: "/root/catkin_ws" + stage: build + image: osrf/ros:$ROSDISTRO-desktop-full + before_script: + - apt-get -qq update + - apt-get -qq install git-core python-catkin-tools curl + - mkdir -p $CATKIN_WS/src + - cp -a . $CATKIN_WS/src/ + - cd $CATKIN_WS + - rosdep update + - rosdep install -y --from-paths src --ignore-src --rosdistro $ROSDISTRO --as-root=apt:false + script: + - source /ros_entrypoint.sh + - cd $CATKIN_WS + - catkin build -i -s --no-status + only: + - master + tags: + - ubuntu + - docker \ No newline at end of file diff --git a/src/rm_navigation/costmap_converter/.travis.yml b/src/rm_navigation/costmap_converter/.travis.yml new file mode 100644 index 0000000..dfa1f14 --- /dev/null +++ b/src/rm_navigation/costmap_converter/.travis.yml @@ -0,0 +1,109 @@ +# Generic .travis.yml file for running continuous integration on Travis-CI with +# any ROS package. +# +# This installs ROS on a clean Travis-CI virtual machine, creates a ROS +# workspace, resolves all listed dependencies, and sets environment variables +# (setup.bash). Then, it compiles the entire ROS workspace (ensuring there are +# no compilation errors), and runs all the tests. If any of the compilation/test +# phases fail, the build is marked as a failure. +# +# We handle two types of package dependencies: +# - packages (ros and otherwise) available through apt-get. These are installed +# using rosdep, based on the information in the ROS package.xml. +# - dependencies that must be checked out from source. These are handled by +# 'wstool', and should be listed in a file named dependencies.rosinstall. +# +# There are two variables you may want to change: +# - ROS_DISTRO (default is indigo). Note that packages must be available for +# ubuntu 14.04 trusty. +# - ROSINSTALL_FILE (default is dependencies.rosinstall inside the repo +# root). This should list all necessary repositories in wstool format (see +# the ros wiki). If the file does not exists then nothing happens. +# +# See the README.md for more information. +# +# Author: Felix Duvallet + +# NOTE: The build lifecycle on Travis.ci is something like this: +# before_install +# install +# before_script +# script +# after_success or after_failure +# after_script +# OPTIONAL before_deploy +# OPTIONAL deploy +# OPTIONAL after_deploy + +################################################################################ + +# Use ubuntu trusty (14.04) with sudo privileges. +dist: trusty +sudo: required +language: + - generic +cache: + - apt + +# Configuration variables. All variables are global now, but this can be used to +# trigger a build matrix for different ROS distributions if desired. +env: + global: + - ROS_CI_DESKTOP="`lsb_release -cs`" # e.g. [precise|trusty|...] + - CI_SOURCE_PATH=$(pwd) + - ROSINSTALL_FILE=$CI_SOURCE_PATH/dependencies.rosinstall + - CATKIN_OPTIONS=$CI_SOURCE_PATH/catkin.options + - ROS_PARALLEL_JOBS='-j8 -l6' + matrix: + - ROS_DISTRO=indigo + - ROS_DISTRO=jade + + +################################################################################ + +# Install system dependencies, namely a very barebones ROS setup. +before_install: + - sudo sh -c "echo \"deb http://packages.ros.org/ros/ubuntu $ROS_CI_DESKTOP main\" > /etc/apt/sources.list.d/ros-latest.list" + - wget http://packages.ros.org/ros.key -O - | sudo apt-key add - + - sudo apt-get update -qq + - sudo apt-get install -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-catkin + - source /opt/ros/$ROS_DISTRO/setup.bash + # Prepare rosdep to install dependencies. + - sudo rosdep init + - rosdep update + +# Create a catkin workspace with the package under integration. +install: + - mkdir -p ~/catkin_ws/src + - cd ~/catkin_ws/src + - catkin_init_workspace + # Create the devel/setup.bash (run catkin_make with an empty workspace) and + # source it to set the path variables. + - cd ~/catkin_ws + - catkin_make + - source devel/setup.bash + # Add the package under integration to the workspace using a symlink. + - cd ~/catkin_ws/src + - ln -s $CI_SOURCE_PATH . + +# Install all dependencies, using wstool and rosdep. +# wstool looks for a ROSINSTALL_FILE defined in the environment variables. +before_script: + # source dependencies: install using wstool. + - cd ~/catkin_ws/src + - wstool init + - if [[ -f $ROSINSTALL_FILE ]] ; then wstool merge $ROSINSTALL_FILE ; fi + - wstool up + # package depdencies: install using rosdep. + - cd ~/catkin_ws + - rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO + +# Compile and test. If the CATKIN_OPTIONS file exists, use it as an argument to +# catkin_make. +script: + - cd ~/catkin_ws + - catkin_make $( [ -f $CATKIN_OPTIONS ] && cat $CATKIN_OPTIONS ) + # Testing: Use both run_tests (to see the output) and test (to error out). + - catkin_make run_tests # This always returns 0, but looks pretty. + - catkin_make test # This will return non-zero if a test fails. + diff --git a/src/rm_navigation/costmap_converter/README.md b/src/rm_navigation/costmap_converter/README.md new file mode 100644 index 0000000..5028ed4 --- /dev/null +++ b/src/rm_navigation/costmap_converter/README.md @@ -0,0 +1,30 @@ +costmap_converter ROS Package +============================= + +A ros package that includes plugins and nodes to convert occupied costmap2d cells to primitive types + +Build status of the *master* branch: +- ROS Buildfarm Kinetic: [![Kinetic Build Status](http://build.ros.org/buildStatus/icon?job=Kdev__costmap_converter__ubuntu_xenial_amd64)](http://build.ros.org/job/Kdev__costmap_converter__ubuntu_xenial_amd64/) +- ROS Buildfarm Indigo: [![Indigo Build Status](http://build.ros.org/buildStatus/icon?job=Idev__costmap_converter__ubuntu_trusty_amd64)](http://build.ros.org/job/Idev__costmap_converter__ubuntu_trusty_amd64/) + + +### Contributors + +- Christoph Rösmann +- Franz Albers (*CostmapToDynamicObstacles* plugin) +- Otniel Rinaldo + + +### License + +The *costmap_converter* package is licensed under the BSD license. +It depends on other ROS packages, which are listed in the package.xml. They are also BSD licensed. + +Some third-party dependencies are included that are licensed under different terms: + - *MultitargetTracker*, GNU GPLv3, https://github.com/Smorodov/Multitarget-tracker + (partially required for the *CostmapToDynamicObstacles* plugin) + +All packages included are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the licenses for more details. + + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/CHANGELOG.rst b/src/rm_navigation/costmap_converter/costmap_converter/CHANGELOG.rst new file mode 100644 index 0000000..0b7e1b5 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/CHANGELOG.rst @@ -0,0 +1,105 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package costmap_converter +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.1.2 (2020-06-22) +------------------ +* OpenCV 4 compatibility fix +* Contributors: daviddudas + +0.1.1 (2020-01-25) +------------------ +* Fixed ament plugin export +* Revert release-mode for cmake build +* Contributors: Christoph Rösmann + +0.1.0 (2020-01-23) +------------------ +* Port to ROS2 (thanks to Vinnam Kim and stevemacenski) +* Messages moved to a separate package +* Contributors: Christoph Rösmann, Vinnam Kim, stevemacenski + +0.0.12 (2019-12-02) +------------------- +* CostmapToPolygons: Simplification of the polygon by Douglas-Peucker algorithm (reduces the density of points in the polygon). +* Bugfixes +* Contributors: Rainer Kümmerle + +0.0.11 (2019-10-26) +------------------- +* rostest integration to avoid running a roscore separately for unit testing +* Contributors: Christoph Rösmann + +0.0.10 (2019-10-26) +------------------- +* Runtime improvements for CostmapToPolygonsDBSMCCH (`#12 `_) + * Grid lookup for regionQuery + * use a grid structure for looking up nearest neighbors + * parameters in a struct + * guard the parameters by drawing a copy from dynamic reconfigure + * Adding some test cases for regionQuery and dbScan + * Avoid computing sqrt at the end of convexHull2 + * Add doxygen comments for the neighbor lookup + * Change the param read to one liners + * Add test on empty map for dbScan +* Contributors: Rainer Kümmerle + +0.0.9 (2018-05-28) +------------------ +* Moved plugin loader for static costmap conversion to BaseCostmapToDynamicObstacles. + The corresponding ROS parameter `static_converter_plugin` is now defined in the CostmapToDynamicObstacles namespace. +* Contributors: Christoph Rösmann + +0.0.8 (2018-05-17) +------------------ +* Standalone converter subscribes now to costmap updates. Fixes `#1 `_ +* Adds radius field for circular obstacles to ObstacleMsg +* Stacked costmap conversion (`#7 `_). + E.g., it is now possible combine a dynamic obstacle and static obstacle converter plugin. +* Contributors: Christoph Rösmann, Franz Albers + +0.0.7 (2017-09-20) +------------------ +* Fixed some compilation issues (C++11 compiler flags and opencv2 on indigo/jade). +* Dynamic obstacle plugin: obstacle velocity is now published for both x and y coordinates rather than the absolute value + +0.0.6 (2017-09-18) +------------------ +* This pull request adds the costmap to dynamic obstacles plugin (written by Franz Albers). + It detects the dynamic foreground of the costmap (based on the temporal evolution of the costmap) + including blobs representing the obstacles. Furthermore, Kalman-based tracking is applied to estimate + the current velocity for each obstacle. + **Note, this plugin is still experimental.** +* New message types are introduced: costmap\_converter::ObstacleMsg and costmap\_converter::ObstacleArrayMsg. + These types extend the previous polygon representation by additional velocity, orientation and id information. +* The API has been extended to provide obstacles via the new ObstacleArrayMsg type instead of vector of polygons. +* Contributors: Franz Albers, Christoph Rösmann + +0.0.5 (2016-02-01) +------------------ +* Major changes regarding the line detection based on the convex hull + (it should be much more robust now). +* Concave hull plugin added. +* The cluster size can now be limited from above using a specific parameter. + This implicitly avoids large clusters forming a 'L' or 'U'. +* All parameters can now be adjusted using dynamic_reconfigure (rqt_reconfigure). +* Some parameter names changed. +* Line plugin based on ransac: line inliers must now be placed inbetween the start and end of a line. + +0.0.4 (2016-01-11) +------------------ +* Fixed conversion from map to world coordinates if the costmap is not quadratic. + +0.0.3 (2015-12-23) +------------------ +* The argument list of the initialize method requires a nodehandle from now on. This facilitates the handling of parameter namespaces for multiple instantiations of the plugin. +* This change is pushed immediately as a single release to avoid API breaks (since version 0.0.2 is not on the official repos up to now). + +0.0.2 (2015-12-22) +------------------ +* Added a plugin for converting the costmap to lines using ransac + +0.0.1 (2015-12-21) +------------------ +* First release of the package including a pluginlib interface, two plugins (costmap to polygons and costmap to lines) and a standalone conversion node. + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/CMakeLists.txt b/src/rm_navigation/costmap_converter/costmap_converter/CMakeLists.txt new file mode 100644 index 0000000..90429ca --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/CMakeLists.txt @@ -0,0 +1,97 @@ +cmake_minimum_required(VERSION 3.5) +project(costmap_converter) + +# Set to Release in order to speed up the program significantly +set(CMAKE_BUILD_TYPE Release) #None, Debug, Release, RelWithDebInfo, MinSizeRel + +if(NOT CMAKE_CXX_STANDARD) + set(CMAKE_CXX_STANDARD 14) +endif() + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +find_package(ament_cmake REQUIRED) +find_package(class_loader REQUIRED) +find_package(costmap_converter_msgs REQUIRED) +find_package(cv_bridge REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(nav2_costmap_2d REQUIRED) +find_package(tf2 REQUIRED) +find_package(tf2_geometry_msgs REQUIRED) +find_package(tf2_ros REQUIRED) +find_package(OpenCV REQUIRED) +find_package(pluginlib REQUIRED) +find_package(rclcpp REQUIRED) + +set(dependencies + class_loader + costmap_converter_msgs + cv_bridge + geometry_msgs + nav2_costmap_2d + tf2 + tf2_geometry_msgs + tf2_ros + OpenCV + pluginlib + rclcpp +) + +include_directories( + include +) + +add_library(costmap_converter SHARED + src/costmap_to_polygons.cpp + src/costmap_to_polygons_concave.cpp + src/costmap_to_lines_convex_hull.cpp + src/costmap_to_lines_ransac.cpp + src/costmap_to_dynamic_obstacles/costmap_to_dynamic_obstacles.cpp + src/costmap_to_dynamic_obstacles/background_subtractor.cpp + src/costmap_to_dynamic_obstacles/blob_detector.cpp + src/costmap_to_dynamic_obstacles/multitarget_tracker/Ctracker.cpp + src/costmap_to_dynamic_obstacles/multitarget_tracker/Kalman.cpp + src/costmap_to_dynamic_obstacles/multitarget_tracker/HungarianAlg.cpp +) + +ament_target_dependencies(costmap_converter + ${dependencies} +) + +add_executable(standalone_converter src/costmap_converter_node.cpp) + +target_link_libraries(standalone_converter + costmap_converter +) +ament_target_dependencies(standalone_converter + ${dependencies} +) + +install(TARGETS costmap_converter + DESTINATION lib +) +install(TARGETS standalone_converter + DESTINATION bin +) + +install(DIRECTORY include/ + DESTINATION include/ +) + +ament_export_include_directories(include) +ament_export_libraries(costmap_converter) +ament_export_dependencies(${dependencies}) +pluginlib_export_plugin_description_file(costmap_converter costmap_converter_plugins.xml) + +if(BUILD_TESTING) + find_package(ament_cmake_gtest REQUIRED) + ament_add_gtest(test_costmap_polygons test/costmap_polygons.cpp) + if(TARGET test_costmap_polygons) + target_link_libraries(test_costmap_polygons costmap_converter) + endif() + ament_target_dependencies(test_costmap_polygons ${dependencies}) +endif() + +ament_package() diff --git a/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToDynamicObstacles.cfg b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToDynamicObstacles.cfg new file mode 100755 index 0000000..7e18a9e --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToDynamicObstacles.cfg @@ -0,0 +1,136 @@ +#!/usr/bin/env python + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +# For integers and doubles: +# Name Type Reconfiguration level +# Description +# Default Min Max + +################################################################## +###################### Foreground detection ###################### +gen.add("alpha_slow", double_t, 0, + "Foreground detection: Learning rate of the slow filter", + 0.3, 0.0, 1.0) + +gen.add("alpha_fast", double_t, 0, + "Foreground detection: Learning rate of the fast filter", + 0.85, 0.0, 1.0) + +gen.add("beta", double_t, 0, + "Foreground detection: Weighting coefficient between a pixels value and the mean of its nearest neighbors", + 0.85, 0.0, 1.0) + +gen.add("min_sep_between_slow_and_fast_filter", int_t, 0, + "Foreground detection: Minimal difference between the fast and the slow filter to recognize a obstacle as dynamic", + 80, 0, 255) + +gen.add("min_occupancy_probability", int_t, 0, + "Foreground detection: Minimal value of the fast filter to recognize a obstacle as dynamic", + 180, 0, 255) + +gen.add("max_occupancy_neighbors", int_t, 0, + "Foreground detection: Maximal mean value of the nearest neighbors of a pixel in the slow filter", + 80, 0, 255) + +gen.add("morph_size", int_t, 0, + "Foreground detection: Size of the structuring element for the closing operation", + 1, 0, 10) + +gen.add("publish_static_obstacles", bool_t, 0, + "Include static obstacles as single-point polygons", + True) + +############################################################ +###################### Blob detection ###################### + +# These parameters are commented out, because the input image for the blob detection is already binary -> irrelevant +#gen.add("threshold_step", double_t, 0, +# "Blob detection: Distance between neighboring thresholds", +# 256.0, 0.0, 256.0) +# +#gen.add("min_threshold", double_t, 0, +# "Blob detection: Convert the source image to binary images by applying several thresholds, starting at min_threshold", +# 1, 0, 255) +# +#gen.add("max_threshold", double_t, 0, +# "Blob detection: Convert the source image to binary images by applying several thresholds, ending at max_threshold", +# 255, 0, 255) +# +#gen.add("min_repeatability", int_t, 0, +# "Blob detection: Minimal number of detections of a blob in the several thresholds to be considered as real blob", +# 1, 1, 10) +# +gen.add("min_distance_between_blobs", double_t, 0, + "Blob detection: Minimal distance between centers of two blobs to be considered as seperate blobs", + 10, 0.0, 300.0) + +gen.add("filter_by_area", bool_t, 0, + "Blob detection: Filter blobs based on number of pixels", + True) + +gen.add("min_area", int_t, 0, + "Blob detection: Minimal number of pixels a blob consists of", + 3, 0, 300) + +gen.add("max_area", int_t, 0, + "Blob detection: Maximal number of pixels a blob consists of", + 300, 0, 300) + +gen.add("filter_by_circularity", bool_t, 0, + "Blob detection: Filter blobs based on their circularity", + True) + +gen.add("min_circularity", double_t, 0, + "Blob detection: Minimal circularity value (0 in case of a line)", + 0.2, 0.0, 1.0) + +gen.add("max_circularity", double_t, 0, + "Blob detection: Maximal circularity value (1 in case of a circle)", + 1.0, 0.0, 1.0) + +gen.add("filter_by_inertia", bool_t, 0, + "Blob detection: Filter blobs based on their inertia ratio", + True) + +gen.add("min_inertia_ratio", double_t, 0, + "Blob detection: Minimal inertia ratio", + 0.2, 0.0, 1.0) + +gen.add("max_inertia_ratio", double_t, 0, + "Blob detection: Maximal inertia ratio", + 1.0, 0.0, 1.0) + +gen.add("filter_by_convexity", bool_t, 0, + "Blob detection: Filter blobs based on their convexity (Blob area / area of its convex hull)", + False) + +gen.add("min_convexity", double_t, 0, + "Blob detection: Minimum convexity ratio", + 0.0, 0.0, 1.0) + +gen.add("max_convexity", double_t, 0, + "Blob detection: Maximal convexity ratio", + 1.0, 0.0, 1.0) + +################################################################ +#################### Tracking ################################## +gen.add("dt", double_t, 0, + "Tracking: Time for one timestep of the kalman filter", + 0.2, 0.1, 3.0) + +gen.add("dist_thresh", double_t, 0, + "Tracking: Maximum distance between two points to be considered in the assignment problem", + 20.0, 0.0, 150.0) + +gen.add("max_allowed_skipped_frames", int_t, 0, + "Tracking: Maximum number of frames a object is tracked while it is not seen", + 3, 0, 10) + +gen.add("max_trace_length", int_t, 0, + "Tracking: Maximum number of Points in a objects trace", + 10, 1, 100) + +exit(gen.generate("costmap_converter", "standalone_converter", "CostmapToDynamicObstacles")) diff --git a/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToLinesDBSMCCH.cfg b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToLinesDBSMCCH.cfg new file mode 100755 index 0000000..1dd917c --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToLinesDBSMCCH.cfg @@ -0,0 +1,41 @@ +#!/usr/bin/env python + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +# For integers and doubles: +# Name Type Reconfiguration level +# Description +# Default Min Max + + +gen.add("cluster_max_distance", double_t, 0, + "Parameter for DB_Scan, maximum distance to neighbors [m]", + 0.4, 0.0, 10.0) + +gen.add("cluster_min_pts", int_t, 0, + "Parameter for DB_Scan: minimum number of points that define a cluster", + 2, 1, 20) + +gen.add("cluster_max_pts", int_t, 0, + "Parameter for DB_Scan: maximum number of points that define a cluster (limit cluster size to avoid large L- and U-shapes)", + 30, 2, 200) + +gen.add("convex_hull_min_pt_separation", double_t, 0, + "Clear keypoints of the convex polygon that are close to each other [distance in meters] (0: keep all)", + 0.1, 0.0, 10.0) + +gen.add("support_pts_max_dist", double_t, 0, + "Minimum distance from a point to the line to be counted as support point", + 0.3, 0.0, 10.0) + +gen.add("support_pts_max_dist_inbetween", double_t, 0, + "A line is only defined, if the distance between two consecutive support points is less than this treshold. Set to 0 in order to deactivate this check.", + 1.0, 0.0, 10.0) + +gen.add("min_support_pts", int_t, 0, + "Minimum number of support points to represent a line", + 2, 0, 50) + +exit(gen.generate("costmap_converter", "standalone_converter", "CostmapToLinesDBSMCCH")) diff --git a/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToLinesDBSRANSAC.cfg b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToLinesDBSRANSAC.cfg new file mode 100755 index 0000000..2c5b322 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToLinesDBSRANSAC.cfg @@ -0,0 +1,54 @@ +#!/usr/bin/env python + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +# For integers and doubles: +# Name Type Reconfiguration level +# Description +# Default Min Max + + +gen.add("cluster_max_distance", double_t, 0, + "Parameter for DB_Scan, maximum distance to neighbors [m]", + 0.4, 0.0, 10.0) + +gen.add("cluster_min_pts", int_t, 0, + "Parameter for DB_Scan: minimum number of points that define a cluster", + 2, 1, 20) + +gen.add("cluster_max_pts", int_t, 0, + "Parameter for DB_Scan: maximum number of points that define a cluster (limit cluster size to avoid large L- and U-shapes)", + 30, 2, 200) + +gen.add("ransac_inlier_distance", double_t, 0, + "Maximum distance to the line segment for inliers", + 0.2, 0.0, 10.0) + +gen.add("ransac_min_inliers", int_t, 0, + "Minimum numer of inliers required to form a line", + 10, 0, 100) + +gen.add("ransac_no_iterations", int_t, 0, + "Number of ransac iterations", + 2000, 1, 10000) + +gen.add("ransac_remainig_outliers", int_t, 0, + "Repeat ransac until the number of outliers is as specified here", + 3, 0, 50) + +gen.add("ransac_convert_outlier_pts", bool_t, 0, + "Convert remaining outliers to single points.", + True) + +gen.add("ransac_filter_remaining_outlier_pts", bool_t, 0, + "Filter the interior of remaining outliers and keep only keypoints of their convex hull", + False) + +gen.add("convex_hull_min_pt_separation", double_t, 0, + "Clear keypoints of the convex polygon that are close to each other [distance in meters] (0: keep all)", + 0.1, 0.0, 10.0) + + +exit(gen.generate("costmap_converter", "standalone_converter", "CostmapToLinesDBSRANSAC")) diff --git a/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToPolygonsDBSConcaveHull.cfg b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToPolygonsDBSConcaveHull.cfg new file mode 100755 index 0000000..7e4d49f --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToPolygonsDBSConcaveHull.cfg @@ -0,0 +1,33 @@ +#!/usr/bin/env python + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +# For integers and doubles: +# Name Type Reconfiguration level +# Description +# Default Min Max + + +gen.add("cluster_max_distance", double_t, 0, + "Parameter for DB_Scan, maximum distance to neighbors [m]", + 0.4, 0.0, 10.0) + +gen.add("cluster_min_pts", int_t, 0, + "Parameter for DB_Scan: minimum number of points that define a cluster", + 2, 1, 20) + +gen.add("cluster_max_pts", int_t, 0, + "Parameter for DB_Scan: maximum number of points that define a cluster (limit cluster size to avoid large L- and U-shapes)", + 30, 2, 200) + +gen.add("convex_hull_min_pt_separation", double_t, 0, + "Clear keypoints of the convex polygon that are close to each other [distance in meters] (0: keep all)", + 0.1, 0.0, 10.0) + +gen.add("concave_hull_depth", double_t, 0, + "Smaller depth: sharper surface, depth -> high value: convex hull", + 2.0, 0.0, 100.0) + +exit(gen.generate("costmap_converter", "standalone_converter", "CostmapToPolygonsDBSConcaveHull")) diff --git a/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToPolygonsDBSMCCH.cfg b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToPolygonsDBSMCCH.cfg new file mode 100755 index 0000000..d5cc11a --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/cfg/dynamic_reconfigure/CostmapToPolygonsDBSMCCH.cfg @@ -0,0 +1,29 @@ +#!/usr/bin/env python + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +# For integers and doubles: +# Name Type Reconfiguration level +# Description +# Default Min Max + + +gen.add("cluster_max_distance", double_t, 0, + "Parameter for DB_Scan, maximum distance to neighbors [m]", + 0.4, 0.0, 10.0) + +gen.add("cluster_min_pts", int_t, 0, + "Parameter for DB_Scan: minimum number of points that define a cluster", + 2, 1, 20) + +gen.add("cluster_max_pts", int_t, 0, + "Parameter for DB_Scan: maximum number of points that define a cluster (limit cluster size to avoid large L- and U-shapes)", + 30, 2, 200) + +gen.add("convex_hull_min_pt_separation", double_t, 0, + "Clear keypoints of the convex polygon that are close to each other [distance in meters] (0: keep all)", + 0.1, 0.0, 10.0) + +exit(gen.generate("costmap_converter", "standalone_converter", "CostmapToPolygonsDBSMCCH")) diff --git a/src/rm_navigation/costmap_converter/costmap_converter/costmap_converter_plugins.xml b/src/rm_navigation/costmap_converter/costmap_converter/costmap_converter_plugins.xml new file mode 100644 index 0000000..6930cd1 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/costmap_converter_plugins.xml @@ -0,0 +1,38 @@ + + + + + This class converts costmap2d obstacles into a vector of convex polygons. + Clustering is performed with DBScan. Convex polygons are detected using the Monotone Chain Convex Hull algorithm. + + + + + + This class converts costmap2d obstacles into a vector of lines (represented as polygon msg). + Clustering is performed with DBScan. Clusters are transformed into convex polygons using the Monotone Chain Convex Hull algorithm. + The resulting keypoints are used for possible line candidates. + A line is only defined if there exist a specified number of support points between each keypoint pair. + + + + + + This class converts costmap2d obstacles into a vector of lines (represented as polygon msg). + Clustering is performed with DBScan. For each cluster RANSAC is applied sequentally to fit multiple line models. + + + + + + This class converts costmap2d obstacles into a vector of non-convex (concave) polygons. + + + + + + This class detects and tracks obstacles from a sequence of costmaps. + + + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_converter_interface.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_converter_interface.h new file mode 100644 index 0000000..6e46375 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_converter_interface.h @@ -0,0 +1,389 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016 + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann, Otniel Rinaldo + *********************************************************************/ + +#ifndef COSTMAP_CONVERTER_INTERFACE_H_ +#define COSTMAP_CONVERTER_INTERFACE_H_ + +//#include +#include +#include + +#include +#include +#include +#include +#include +#include + +namespace costmap_converter +{ + +//! Typedef for a shared dynamic obstacle container +typedef costmap_converter_msgs::msg::ObstacleArrayMsg::SharedPtr ObstacleArrayPtr; +//! Typedef for a shared dynamic obstacle container (read-only access) +typedef costmap_converter_msgs::msg::ObstacleArrayMsg::ConstSharedPtr ObstacleArrayConstPtr; + +//! Typedef for a shared polygon container +typedef std::shared_ptr> PolygonContainerPtr; +//! Typedef for a shared polygon container (read-only access) +typedef std::shared_ptr> PolygonContainerConstPtr; + + +/** + * @class BaseCostmapToPolygons + * @brief This abstract class defines the interface for plugins that convert the costmap into polygon types + * + * Plugins must accept a nav2_costmap_2d::Costmap2D datatype as information source. + * The interface provides two different use cases: + * 1. Manual call to conversion routines: setCostmap2D(), compute() and getPolygons() + * (in subsequent calls setCostmap2D() can be substituted by updateCostmap2D()) + * 2. Repeatedly process costmap with a specific rate (startWorker() and stopWorker()): + * Make sure that the costmap is valid while the worker is active (you can specify your own spinner or activate a threaded spinner). + * Costmaps can be obtained by invoking getPolygons(). + */ +class BaseCostmapToPolygons +{ +public: + + /** + * @brief Initialize the plugin + * @param nh Nodehandle that defines the namespace for parameters + */ + virtual void initialize(rclcpp::Node::SharedPtr nh) { + nh_ = nh; + } + + /** + * @brief Destructor + */ + virtual ~BaseCostmapToPolygons() + { + stopWorker(); + } + + + /** + * @brief Pass a pointer to the costap to the plugin. + * @warning The plugin should handle the costmap's mutex locking. + * @sa updateCostmap2D + * @param costmap Pointer to the costmap2d source + */ + virtual void setCostmap2D(nav2_costmap_2d::Costmap2D* costmap) = 0; + + /** + * @brief Get updated data from the previously set Costmap2D + * @warning The plugin should handle the costmap's mutex locking. + * @sa setCostmap2D + */ + virtual void updateCostmap2D() = 0; + + /** + * @brief This method performs the actual work (conversion of the costmap to polygons) + */ + virtual void compute() = 0; + + /** + * @brief Get a shared instance of the current polygon container + * + * If this method is not implemented by any subclass (plugin) the returned shared + * pointer is empty. + * @remarks If compute() or startWorker() has not been called before, this method returns an empty instance! + * @warning The underlying plugin must ensure that this method is thread safe. + * @return Shared instance of the current polygon container + */ + virtual PolygonContainerConstPtr getPolygons(){return PolygonContainerConstPtr();} + + /** + * @brief Get a shared instance of the current obstacle container + * If this method is not overwritten by the underlying plugin, the obstacle container just imports getPolygons(). + * @remarks If compute() or startWorker() has not been called before, this method returns an empty instance! + * @warning The underlying plugin must ensure that this method is thread safe. + * @return Shared instance of the current obstacle container + * @sa getPolygons + */ + virtual ObstacleArrayConstPtr getObstacles() + { + ObstacleArrayPtr obstacles = std::make_shared(); + PolygonContainerConstPtr polygons = getPolygons(); + if (polygons) + { + for (const geometry_msgs::msg::Polygon& polygon : *polygons) + { + obstacles->obstacles.emplace_back(); + obstacles->obstacles.back().polygon = polygon; + } + } + return obstacles; + } + + /** + * @brief Set name of robot's odometry topic + * + * Some plugins might require odometry information + * to compensate the robot's ego motion + * @param odom_topic topic name + */ + virtual void setOdomTopic(const std::string& odom_topic) { (void)odom_topic; } + + /** + * @brief Determines whether an additional plugin for subsequent costmap conversion is specified + * + * @return false, since all plugins for static costmap conversion are independent + */ + virtual bool stackedCostmapConversion() {return false;} + + /** + * @brief Instantiate a worker that repeatedly coverts the most recent costmap to polygons. + * The worker is implemented as a timer event that is invoked at a specific \c rate. + * The passed \c costmap pointer must be valid at the complete time and must be lockable. + * By specifying the argument \c spin_thread the timer event is invoked in a separate + * thread and callback queue or otherwise it is called from the global callback queue (of the + * node in which the plugin is used). + * @param rate The rate that specifies how often the costmap should be updated + * @param costmap Pointer to the underlying costmap (must be valid and lockable as long as the worker is active + * @param spin_thread if \c true,the timer is invoked in a separate thread, otherwise in the default callback queue) + */ + void startWorker(rclcpp::Rate::SharedPtr rate, nav2_costmap_2d::Costmap2D* costmap, bool spin_thread = false) + { + setCostmap2D(costmap); + + if (spin_thread_) + { + { + std::lock_guard terminate_lock(terminate_mutex_); + need_to_terminate_ = true; + } + spin_thread_->join(); + delete spin_thread_; + } + + if (spin_thread) + { + RCLCPP_DEBUG(nh_->get_logger(), "Spinning up a thread for the CostmapToPolygons plugin"); + need_to_terminate_ = false; + + worker_timer_ = nh_->create_wall_timer( + rate->period(), + std::bind(&BaseCostmapToPolygons::workerCallback, this)); + spin_thread_ = new std::thread(std::bind(&BaseCostmapToPolygons::spinThread, this)); + } + else + { + worker_timer_ = nh_->create_wall_timer( + rate->period(), + std::bind(&BaseCostmapToPolygons::workerCallback, this)); + spin_thread_ = nullptr; + } + } + + /** + * @brief Stop the worker that repeatedly converts the costmap to polygons + */ + void stopWorker() + { + if (worker_timer_) worker_timer_->cancel(); + if (spin_thread_) + { + { + std::lock_guard terminate_lock(terminate_mutex_); + need_to_terminate_ = true; + } + spin_thread_->join(); + delete spin_thread_; + } + } + +protected: + + /** + * @brief Protected constructor that should be called by subclasses + */ + BaseCostmapToPolygons() : //nh_("~costmap_to_polygons"), + nh_(nullptr), + spin_thread_(nullptr), need_to_terminate_(false) {} + + /** + * @brief Blocking method that checks for new timer events (active if startWorker() is called with spin_thread enabled) + */ + void spinThread() + { + rclcpp::WallRate r(10); + while (rclcpp::ok()) + { + { + std::lock_guard terminate_lock(terminate_mutex_); + if (need_to_terminate_) + break; + rclcpp::spin_some(nh_); + r.sleep(); + } + } + } + + /** + * @brief The callback of the worker that performs the actual work (updating the costmap and converting it to polygons) + */ + void workerCallback() + { + updateCostmap2D(); + compute(); + } + + rclcpp::Logger getLogger() const + { + return nh_->get_logger(); + } + + rclcpp::Time now() const + { + return nh_->now(); + } + +private: + rclcpp::TimerBase::SharedPtr worker_timer_; + rclcpp::Node::SharedPtr nh_; + std::thread* spin_thread_; + std::mutex terminate_mutex_; + bool need_to_terminate_; +}; + + +/** + * @class BaseCostmapToDynamicPolygons + * @brief This class extends the BaseCostmapToPolygongs class for dynamic costmap conversion plugins in order to incorporate a subsequent costmap converter plugin for static obstacles + * + * This class should not be instantiated. + */ +class BaseCostmapToDynamicObstacles : public BaseCostmapToPolygons +{ +public: + + /** + * @brief Load underlying static costmap conversion plugin via plugin-loader + * @param plugin_name Exact class name of the plugin to be loaded, e.g. + * costmap_converter::CostmapToPolygonsDBSMCCH + * @param nh_parent NodeHandle which is extended by the namespace of the static conversion plugin + */ + void loadStaticCostmapConverterPlugin(const std::string& plugin_name, rclcpp::Node::SharedPtr nh_parent) + { + try + { + static_costmap_converter_ = static_converter_loader_.createSharedInstance(plugin_name); + + if(std::dynamic_pointer_cast(static_costmap_converter_)) + { + throw pluginlib::PluginlibException("The specified plugin for static costmap conversion is a dynamic plugin. Specify a static plugin."); + } +// std::string raw_plugin_name = static_converter_loader_.getName(plugin_name); + static_costmap_converter_->initialize(nh_parent); + setStaticCostmapConverterPlugin(static_costmap_converter_); + RCLCPP_INFO(getLogger(), "CostmapToDynamicObstacles: underlying costmap conversion plugin for static obstacles %s loaded.", plugin_name.c_str()); + } + catch(const pluginlib::PluginlibException& ex) + { + RCLCPP_WARN(getLogger(), "CostmapToDynamicObstacles: The specified costmap converter plugin cannot be loaded. " + "Continuing without subsequent conversion of static obstacles. Error message: %s", ex.what()); + static_costmap_converter_.reset(); + } + } + + /** + * @brief Set the underlying plugin for subsequent costmap conversion of the static background of the costmap + * @param static_costmap_converter shared pointer to the static costmap conversion plugin + */ + void setStaticCostmapConverterPlugin(std::shared_ptr static_costmap_converter) + { + static_costmap_converter_ = static_costmap_converter; + } + + /** + * @brief Set the costmap for the underlying plugin + * @param static_costmap Costmap2D, which contains the static part of the original costmap + */ + void setStaticCostmap(std::shared_ptr static_costmap) + { + static_costmap_converter_->setCostmap2D(static_costmap.get()); + } + + /** + * @brief Apply the underlying plugin for static costmap conversion + */ + void convertStaticObstacles() + { + static_costmap_converter_->compute(); + } + + /** + * @brief Get the converted polygons from the underlying plugin + * @return Shared instance of the underlying plugins polygon container + */ + PolygonContainerConstPtr getStaticPolygons() + { + return static_costmap_converter_->getPolygons(); + } + + /** + * @brief Determines whether an additional plugin for subsequent costmap conversion is specified + * + * @return true, if a plugin for subsequent costmap conversion is specified + */ + bool stackedCostmapConversion() + { + if(static_costmap_converter_) + return true; + else + return false; + } + +protected: + /** + * @brief Protected constructor that should be called by subclasses + */ + BaseCostmapToDynamicObstacles() : static_converter_loader_("costmap_converter", "costmap_converter::BaseCostmapToPolygons"), static_costmap_converter_() {} + +private: + pluginlib::ClassLoader static_converter_loader_; + std::shared_ptr static_costmap_converter_; +}; + + +} + + + +#endif // end COSTMAP_CONVERTER_INTERFACE_H_ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/background_subtractor.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/background_subtractor.h new file mode 100644 index 0000000..3e3d716 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/background_subtractor.h @@ -0,0 +1,115 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017 + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following code makes use of the OpenCV library. + * OpenCV is licensed under the terms of the 3-clause BSD License. + * + * Authors: Franz Albers, Christoph Rösmann + *********************************************************************/ + +#ifndef BACKGROUNDSUBTRACTOR_H_ +#define BACKGROUNDSUBTRACTOR_H_ + +#include + +/** + * @class BackgroundSubtractor + * @brief Perform background subtraction to extract the "moving" foreground + * + * This class is based on OpenCV's background subtraction class cv::BackgroundSubtractor. + * It has been modified in order to incorporate a specialized bandpass filter. + * + * See http://docs.opencv.org/3.2.0/d7/df6/classcv_1_1BackgroundSubtractor.html for the original class. + */ +class BackgroundSubtractor +{ +public: + struct Params + { + double alpha_slow; //!< Filter constant (learning rate) of the slow filter part + double alpha_fast; //!< Filter constant (learning rate) of the fast filter part + double beta; + double min_sep_between_fast_and_slow_filter; + double min_occupancy_probability; + double max_occupancy_neighbors; + int morph_size; + }; + + //! Constructor that accepts a specific parameter configuration + BackgroundSubtractor(const Params& parameters); + + /** + * @brief Computes a foreground mask + * @param[in] image Next video frame + * @param[out] fg_mask Foreground mask as an 8-bit binary image + * @param[in] shift_x Translation along the x axis between the current and previous image + * @param[in] shift_y Translation along the y axis between the current and previous image + */ + void apply(const cv::Mat& image, cv::Mat& fg_mask, int shift_x = 0, int shift_y = 0); + + /** + * @brief OpenCV Visualization + * @param name Id/name of the opencv window + * @param image Image to be visualized + */ + void visualize(const std::string& name, const cv::Mat& image); + + /** + * @brief Export vector of matrices to yaml file + * @remarks This method is intended for debugging purposes + * @param filename Desired filename including path and excluding file suffix + * @param mat_vec Vector of cv::Mat to be exported + */ + void writeMatToYAML(const std::string& filename, const std::vector& mat_vec); + + //! Update internal parameters + void updateParameters(const Params& parameters); + +private: + //! Transform/shift all internal matrices/grids according to a given translation vector + void transformToCurrentFrame(int shift_x, int shift_y); + + cv::Mat occupancy_grid_fast_; + cv::Mat occupancy_grid_slow_; + cv::Mat current_frame_; + + int previous_shift_x_; + int previous_shift_y_; + + Params params_; +}; + +#endif // BACKGROUNDSUBTRACTOR_H_ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/blob_detector.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/blob_detector.h new file mode 100644 index 0000000..ac9b80a --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/blob_detector.h @@ -0,0 +1,111 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017 + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following code makes use of the OpenCV library. + * OpenCV is licensed under the terms of the 3-clause BSD License. + * + * Authors: Franz Albers, Christoph Rösmann + *********************************************************************/ + +#ifndef BLOBDETECTOR_H_ +#define BLOBDETECTOR_H_ + +// Basically the OpenCV SimpleBlobDetector, extended with getContours() + +#include + +/** + * @class BlobDetector + * @brief Detect blobs in image (specialized for dynamic obstacles in the costmap) + * + * This class is based on OpenCV's blob detector cv::SimpleBlobDetector. + * It has been modified and specialized for dynamic obstacle tracking in the costmap: + * -> The modified version also returns contours of the blob. + * + * See http://docs.opencv.org/trunk/d0/d7a/classcv_1_1SimpleBlobDetector.html for the original class. + */ +class BlobDetector : public cv::SimpleBlobDetector +{ +public: + //! Default constructor which optionally accepts custom parameters + BlobDetector(const cv::SimpleBlobDetector::Params& parameters = cv::SimpleBlobDetector::Params()); + + //! Create shared instance of the blob detector with given parameters + static cv::Ptr create(const BlobDetector::Params& params); + + /** + * @brief Detects keypoints in an image and extracts contours + * + * In contrast to the original detect method, this extended version + * also extracts contours. Contours can be accessed by getContours() + * after invoking this method. + * + * @todo The mask option is currently not implemented. + * + * @param image image + * @param keypoints The detected keypoints. + * @param mask Mask specifying where to look for keypoints (optional). It must be a 8-bit integer + * matrix with non-zero values in the region of interest. + */ + virtual void detect(const cv::Mat& image, std::vector& keypoints, + const cv::Mat& mask = cv::Mat()); + + /** + * @brief Access contours extracted during detection stage + * @return Read-only reference to the contours set of the previous detect() run + */ + const std::vector>& getContours() { return contours_; } + + //! Update internal parameters + void updateParameters(const cv::SimpleBlobDetector::Params& parameters); + +protected: + struct Center + { + cv::Point2d location; + double radius; + double confidence; + }; + + virtual void findBlobs(const cv::Mat& image, const cv::Mat& binary_image, std::vector
& centers, + std::vector>& cur_contours) const; + + std::vector> contours_; + + Params params_; +}; + +#endif // BLOBDETECTOR_H_ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/costmap_to_dynamic_obstacles.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/costmap_to_dynamic_obstacles.h new file mode 100644 index 0000000..0c9924b --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/costmap_to_dynamic_obstacles.h @@ -0,0 +1,212 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017 + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following code makes use of the OpenCV library. + * OpenCV is licensed under the terms of the 3-clause BSD License. + * + * Authors: Franz Albers, Christoph Rösmann + *********************************************************************/ + +#ifndef COSTMAP_TO_DYNAMIC_OBSTACLES_H_ +#define COSTMAP_TO_DYNAMIC_OBSTACLES_H_ + +// ROS +#include +#include +#include +#include + +// OpenCV +#include +#include +#include + +// dynamic reconfigure +//#include +//#include + +// Own includes +#include +#include +#include + +// STL +#include + +namespace costmap_converter { + +/** + * @class CostmapToDynamicObstacles + * @brief This class converts the costmap_2d into dynamic obstacles. + * + * Static obstacles are treated as point obstacles. + */ +class CostmapToDynamicObstacles : public BaseCostmapToDynamicObstacles +{ +public: + /** + * @brief Constructor + */ + CostmapToDynamicObstacles(); + + /** + * @brief Destructor + */ + virtual ~CostmapToDynamicObstacles(); + + /** + * @brief Initialize the plugin + * @param nh Nodehandle that defines the namespace for parameters + */ + virtual void initialize(rclcpp::Node::SharedPtr nh); + + /** + * @brief This method performs the actual work (conversion of the costmap to + * obstacles) + */ + virtual void compute(); + + /** + * @brief Pass a pointer to the costmap to the plugin. + * @sa updateCostmap2D + * @param costmap Pointer to the costmap2d source + */ + virtual void setCostmap2D(nav2_costmap_2d::Costmap2D* costmap); + + /** + * @brief Get updated data from the previously set Costmap2D + * @sa setCostmap2D + */ + virtual void updateCostmap2D(); + + /** + * @brief Get a shared instance of the current obstacle container + * @remarks If compute() or startWorker() has not been called before, this + * method returns an empty instance! + * @return Shared instance of the current obstacle container + */ + ObstacleArrayConstPtr getObstacles(); + + /** + * @brief Set name of robot's odometry topic + * + * @warning The method must be called before initialize() + * + * Some plugins might require odometry information + * to compensate the robot's ego motion + * @param odom_topic topic name + */ + virtual void setOdomTopic(const std::string& odom_topic) + { + odom_topic_ = odom_topic; + } + + /** + * @brief OpenCV Visualization + * @param name Id/name of the opencv window + * @param image Image to be visualized + */ + void visualize(const std::string& name, const cv::Mat& image); + +protected: + /** + * @brief Converts the estimated velocity of a tracked object to m/s and + * returns it + * @param idx Index of the tracked object in the tracker + * @return Point_t, which represents velocity in [m/s] of object(idx) in x,y,z + * coordinates + */ + Point_t getEstimatedVelocityOfObject(unsigned int idx); + + /** + * @brief Gets the last observed contour of a object and converts it from [px] + * to [m] + * @param[in] idx Index of the tracked object in the tracker + * @param[out] contour vector of Point_t, which represents the last observed contour in [m] + * in x,y,z coordinates + */ + void getContour(unsigned int idx, std::vector& contour); + + /** + * @brief Thread-safe update of the internal obstacle container (that is + * shared using getObstacles() from outside this + * class) + * @param obstacles Updated obstacle container + */ + void updateObstacleContainer(ObstacleArrayPtr obstacles); + +private: + std::mutex mutex_; + nav2_costmap_2d::Costmap2D* costmap_; + cv::Mat costmap_mat_; + ObstacleArrayPtr obstacles_; + cv::Mat fg_mask_; + std::unique_ptr bg_sub_; + cv::Ptr blob_det_; + std::vector keypoints_; + std::unique_ptr tracker_; + rclcpp::Subscription::SharedPtr odom_sub_; + Point_t ego_vel_; + + std::string odom_topic_ = "/odom"; + bool publish_static_obstacles_ = true; + +// dynamic_reconfigure::Server* +// dynamic_recfg_; //!< Dynamic reconfigure server to allow config +// //! modifications at runtime + + /** + * @brief Callback for the odometry messages of the observing robot. + * + * Used to convert the velocity of obstacles to the /map frame. + * @param msg The Pointer to the nav_msgs::Odometry of the observing robot + */ + void odomCallback(const nav_msgs::msg::Odometry::ConstSharedPtr msg); + + /** + * @brief Callback for the dynamic_reconfigure node. + * + * This callback allows to modify parameters dynamically at runtime without + * restarting the node + * @param config Reference to the dynamic reconfigure config + * @param level Dynamic reconfigure level + */ +// void reconfigureCB(CostmapToDynamicObstaclesConfig &config, uint32_t level); +}; + +} // end namespace costmap_converter + +#endif /* COSTMAP_TO_DYNAMIC_OBSTACLES_H_ */ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/Ctracker.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/Ctracker.h new file mode 100644 index 0000000..ca0f01e --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/Ctracker.h @@ -0,0 +1,96 @@ +// Based on https://github.com/Smorodov/Multitarget-tracker/tree/master/Tracker, GPLv3 +// Refer to README.md in this directory. + +#pragma once +#include "Kalman.h" +#include "HungarianAlg.h" +#include "defines.h" +#include +#include +#include +#include + +// -------------------------------------------------------------------------- +class CTrack +{ +public: + CTrack(const Point_t& p, const std::vector& contour, track_t dt, size_t trackID) + : track_id(trackID), + skipped_frames(0), + prediction(p), + lastContour(contour), + KF(p, dt) + { + } + + track_t CalcDist(const Point_t& p) + { + Point_t diff = prediction - p; + return std::sqrt(diff.x * diff.x + diff.y * diff.y + diff.z * diff.z); + } + + void Update(const Point_t& p, const std::vector& contour, bool dataCorrect, size_t max_trace_length) + { + KF.Prediction(); + prediction = KF.Update(p, dataCorrect); + + if (dataCorrect) + { + lastContour = contour; + } + + if (trace.size() > max_trace_length) + { + trace.erase(trace.begin(), trace.end() - max_trace_length); + } + + trace.push_back(prediction); + } + + // Returns contour in [px], not in [m]! + std::vector getLastContour() const + { + return lastContour; + } + + // Returns velocity in [px/s], not in [m/s]! + Point_t getEstimatedVelocity() const + { + return KF.LastVelocity; + } + + std::vector trace; + size_t track_id; + size_t skipped_frames; + +private: + Point_t prediction; + std::vector lastContour; // Contour liegt immer auf ganzen Pixeln -> Integer Punkt + TKalmanFilter KF; +}; + +// -------------------------------------------------------------------------- +class CTracker +{ +public: + struct Params{ + track_t dt; // time for one step of the filter + track_t dist_thresh;// distance threshold. Pairs of points with higher distance are not considered in the assignment problem + int max_allowed_skipped_frames; // Maximum number of frames the track is maintained without seeing the object in the measurement data + int max_trace_length; // Maximum trace length + }; + + CTracker(const Params& parameters); + ~CTracker(void); + + std::vector> tracks; + void Update(const std::vector& detectedCentroid, const std::vector > &contour); + + void updateParameters(const Params ¶meters); + +private: + // Aggregated parameters for the tracker object + Params params; + // ID for the upcoming CTrack object + size_t NextTrackID; +}; diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/HungarianAlg.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/HungarianAlg.h new file mode 100644 index 0000000..0985ae7 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/HungarianAlg.h @@ -0,0 +1,60 @@ +// Based on https://github.com/Smorodov/Multitarget-tracker/tree/master/Tracker, GPLv3 +// Refer to README.md in this directory. + +#include +#include +#include +#include +#include "defines.h" + +// http://community.topcoder.com/tc?module=Static&d1=tutorials&d2=hungarianAlgorithm + +typedef std::vector assignments_t; +typedef std::vector distMatrix_t; + +class AssignmentProblemSolver +{ +private: + // -------------------------------------------------------------------------- + // Computes the optimal assignment (minimum overall costs) using Munkres algorithm. + // -------------------------------------------------------------------------- + void assignmentoptimal(assignments_t& assignment, track_t& cost, const distMatrix_t& distMatrixIn, size_t nOfRows, + size_t nOfColumns); + void buildassignmentvector(assignments_t& assignment, bool* starMatrix, size_t nOfRows, size_t nOfColumns); + void computeassignmentcost(const assignments_t& assignment, track_t& cost, const distMatrix_t& distMatrixIn, + size_t nOfRows); + void step2a(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, bool* newStarMatrix, bool* primeMatrix, + bool* coveredColumns, bool* coveredRows, size_t nOfRows, size_t nOfColumns, size_t minDim); + void step2b(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, bool* newStarMatrix, bool* primeMatrix, + bool* coveredColumns, bool* coveredRows, size_t nOfRows, size_t nOfColumns, size_t minDim); + void step3(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, bool* newStarMatrix, bool* primeMatrix, + bool* coveredColumns, bool* coveredRows, size_t nOfRows, size_t nOfColumns, size_t minDim); + void step4(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, bool* newStarMatrix, bool* primeMatrix, + bool* coveredColumns, bool* coveredRows, size_t nOfRows, size_t nOfColumns, size_t minDim, size_t row, + size_t col); + void step5(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, bool* newStarMatrix, bool* primeMatrix, + bool* coveredColumns, bool* coveredRows, size_t nOfRows, size_t nOfColumns, size_t minDim); + // -------------------------------------------------------------------------- + // Computes a suboptimal solution. Good for cases with many forbidden assignments. + // -------------------------------------------------------------------------- + void assignmentsuboptimal1(assignments_t& assignment, track_t& cost, const distMatrix_t& distMatrixIn, size_t nOfRows, + size_t nOfColumns); + // -------------------------------------------------------------------------- + // Computes a suboptimal solution. Good for cases with many forbidden assignments. + // -------------------------------------------------------------------------- + void assignmentsuboptimal2(assignments_t& assignment, track_t& cost, const distMatrix_t& distMatrixIn, size_t nOfRows, + size_t nOfColumns); + +public: + enum TMethod + { + optimal, + many_forbidden_assignments, + without_forbidden_assignments + }; + + AssignmentProblemSolver(); + ~AssignmentProblemSolver(); + track_t Solve(const distMatrix_t& distMatrixIn, size_t nOfRows, size_t nOfColumns, assignments_t& assignment, + TMethod Method = optimal); +}; diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/Kalman.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/Kalman.h new file mode 100755 index 0000000..34a5319 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/Kalman.h @@ -0,0 +1,20 @@ +// Based on https://github.com/Smorodov/Multitarget-tracker/tree/master/Tracker, GPLv3 +// Refer to README.md in this directory. + +#pragma once +#include "defines.h" +#include + +// http://www.morethantechnical.com/2011/06/17/simple-kalman-filter-for-tracking-using-opencv-2-2-w-code/ +class TKalmanFilter +{ +public: + TKalmanFilter(Point_t p, track_t deltatime = 0.2); + ~TKalmanFilter(); + void Prediction(); + Point_t Update(Point_t p, bool DataCorrect); + cv::KalmanFilter* kalman; + track_t dt; + Point_t LastPosition; // contour in [px] + Point_t LastVelocity; // velocity in [px/s] +}; diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/README.md b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/README.md new file mode 100644 index 0000000..3fb4614 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/README.md @@ -0,0 +1,13 @@ +Multitarget Tracker +=================== + +This code is mostly copied from the (MultitargetTracker)[https://github.com/Smorodov/Multitarget-tracker]. +It is utilized for the *CostmapToDynamicObstacles* plugin. + +The *MultitargetTracker* is licensed under (GNU GPLv3)[https://www.gnu.org/licenses/gpl-3.0.txt]. +The package itself depends on other third party packages with different licenses (refer to the package repository). + +TODO: Include the whole package as external CMake project. + + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/defines.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/defines.h new file mode 100644 index 0000000..203004f --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_dynamic_obstacles/multitarget_tracker/defines.h @@ -0,0 +1,9 @@ +// Based on https://github.com/Smorodov/Multitarget-tracker/tree/master/Tracker, GPLv3 +// Refer to README.md in this directory. + +#pragma once +#include + +typedef float track_t; +typedef cv::Point3_ Point_t; +#define Mat_t CV_32FC diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_lines_convex_hull.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_lines_convex_hull.h new file mode 100644 index 0000000..7e409f3 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_lines_convex_hull.h @@ -0,0 +1,137 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann, Otniel Rinaldo + *********************************************************************/ + +#ifndef COSTMAP_TO_LINES_CONVEX_HULL_H_ +#define COSTMAP_TO_LINES_CONVEX_HULL_H_ + +#include +#include + +// dynamic reconfigure +//#include + +namespace costmap_converter +{ + +/** + * @class CostmapToLinesDBSMCCH + * @brief This class converts the costmap_2d into a set of lines (and points) + * + * The conversion is performed in three stages: + * 1. Clusters in the costmap are collected using the DBSCAN Algorithm (https://en.wikipedia.org/wiki/DBSCAN) + * Reference: Ester, Martin; Kriegel, Hans-Peter; Sander, Jörg; Xu, Xiaowei, + * A density-based algorithm for discovering clusters in large spatial databases with noise. + * Proceedings of the Second International Conference on Knowledge Discovery and Data Mining. AAAI Press. 1996. pp. 226–231. ISBN 1-57735-004-9. + * + * 2. In the subsequent stage, the convex hull of each cluster is determined using the monotone chain algorithm aka Andrew's algorithm: + * C++ implementation example: http://www.algorithmist.com/index.php/Monotone_Chain_Convex_Hull ( GNU Free Documentation License 1.2 ) + * Reference: A. M. Andrew, "Another Efficient Algorithm for Convex Hulls in Two Dimensions", Info. Proc. Letters 9, 216-219 (1979). + * + * 3. In the third step extract lines from each polygon (convex hull) if there exist at least a predefined number of support points. + * + * The output is a container of polygons (but each polygon does only contain a single vertex (point) or two vertices (line) + */ + class CostmapToLinesDBSMCCH : public CostmapToPolygonsDBSMCCH + { + public: + + /** + * @brief Constructor + */ + CostmapToLinesDBSMCCH(); + + /** + * @brief Destructor + */ + virtual ~CostmapToLinesDBSMCCH(); + + /** + * @brief Initialize the plugin + * @param nh Nodehandle that defines the namespace for parameters + */ + virtual void initialize(rclcpp::Node::SharedPtr nh); + + /** + * @brief This method performs the actual work (conversion of the costmap to polygons) + */ + virtual void compute(); + + + protected: + + /** + * @brief Extract points and lines from a given cluster by checking all keypoint pairs of the convex hull for a minimum number of support points + * @param cluster list of points in the cluster + * @param polygon convex hull of the cluster \c cluster + * @param[out] lines back_inserter object to a sequence of polygon msgs (new lines will be pushed back) + */ + void extractPointsAndLines(std::vector& cluster, const geometry_msgs::msg::Polygon& polygon, std::back_insert_iterator< std::vector > lines); + + + + protected: + + double support_pts_max_dist_inbetween_; + double support_pts_max_dist_; + int min_support_pts_; + + private: + + /** + * @brief Callback for the dynamic_reconfigure node. + * + * This callback allows to modify parameters dynamically at runtime without restarting the node + * @param config Reference to the dynamic reconfigure config + * @param level Dynamic reconfigure level + */ +// void reconfigureCB(CostmapToLinesDBSMCCHConfig& config, uint32_t level); + +// dynamic_reconfigure::Server* dynamic_recfg_; //!< Dynamic reconfigure server to allow config modifications at runtime + + }; + + + + + + + + +} //end namespace teb_local_planner + +#endif /* COSTMAP_TO_LINES_CONVEX_HULL_H_ */ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_lines_ransac.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_lines_ransac.h new file mode 100644 index 0000000..26d494c --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_lines_ransac.h @@ -0,0 +1,187 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef COSTMAP_TO_LINES_RANSAC_H_ +#define COSTMAP_TO_LINES_RANSAC_H_ + +#include +#include +#include + +#include + +//#include + +namespace costmap_converter +{ + +/** + * @class CostmapToLinesDBSRANSAC + * @brief This class converts the costmap_2d into a set of lines (and points) + * + * The conversion is performed in two stages: + * 1. Clusters in the costmap are collected using the DBSCAN Algorithm (https://en.wikipedia.org/wiki/DBSCAN) + * Reference: Ester, Martin; Kriegel, Hans-Peter; Sander, Jörg; Xu, Xiaowei, + * A density-based algorithm for discovering clusters in large spatial databases with noise. + * Proceedings of the Second International Conference on Knowledge Discovery and Data Mining. AAAI Press. 1996. pp. 226–231. ISBN 1-57735-004-9. + * + * 2. The RANSAC algorithm is used to find straight line segment models (https://en.wikipedia.org/wiki/RANSAC) + * RANSAC is called repeatedly to find multiple lines per cluster until the number of inliners is below a specific threshold. + * In that case the remaining outliers are used as points or keypoints of their convex hull are used as points (depending on a paramter). + * The latter one applies as a filter. The convex assumption is not strict in practice, since the remaining regions/cluster (line inliers are removed) + * should be dense and small. For details about the convex hull algorithm, refer to costmap_converter::CostmapToPolygonsDBSMCCH. + * Resulting lines of RANSAC are currently not refined by linear regression. + * + * The output is a container of polygons (but each polygon does only contain a single vertex (point) or two vertices (line) + */ + class CostmapToLinesDBSRANSAC : public CostmapToPolygonsDBSMCCH + { + public: + + /** + * @brief Constructor + */ + CostmapToLinesDBSRANSAC(); + + /** + * @brief Destructor + */ + virtual ~CostmapToLinesDBSRANSAC(); + + /** + * @brief Initialize the plugin + * @param nh Nodehandle that defines the namespace for parameters + */ + virtual void initialize(rclcpp::Node::SharedPtr nh); + + /** + * @brief This method performs the actual work (conversion of the costmap to polygons) + */ + virtual void compute(); + + + /** + * @brief Check if the candidate point is an inlier. + * @param point generic 2D point type defining the reference point + * @param line_start generic 2D point type defining the start of the line + * @param line_end generic 2D point type defining the end of the line + * @param min_distance minimum distance allowed + * @tparam Point generic point type that should provide (writable) x and y member fiels. + * @tparam LinePoint generic point type that should provide (writable) x and y member fiels. + * @return \c true if inlier, \c false otherwise + */ + template + static bool isInlier(const Point& point, const LinePoint& line_start, const LinePoint& line_end, double min_distance); + + protected: + + double ransac_inlier_distance_; //!< Maximum distance to the line segment for inliers + int ransac_min_inliers_; //!< Minimum numer of inliers required to form a line + int ransac_no_iterations_; //!< Number of ransac iterations + int ransac_remainig_outliers_; //!< Repeat ransac until the number of outliers is as specified here + bool ransac_convert_outlier_pts_; //!< If \c true, convert remaining outliers to single points. + bool ransac_filter_remaining_outlier_pts_; //!< If \c true, filter the interior of remaining outliers and keep only keypoints of their convex hull + + + std::mt19937 rnd_generator_; //!< Random number generator for ransac with default seed + + + /** + * @brief Find a straight line segment in a point cloud with RANSAC (without linear regression). + * @param data set of 2D data points + * @param inlier_distance maximum distance that inliers must satisfy + * @param no_iterations number of RANSAC iterations + * @param min_inliers minimum number of inliers to return true + * @param[out] best_model start and end of the best straight line segment + * @param[out] inliers inlier keypoints are written to this container [optional] + * @param[out] outliers outlier keypoints are written to this container [optional] + * @return \c false, if \c min_inliers is not satisfied, \c true otherwise + */ + bool lineRansac(const std::vector& data, double inlier_distance, int no_iterations, int min_inliers, + std::pair& best_model, std::vector* inliers = NULL, + std::vector* outliers = NULL); + + /** + * @brief Perform a simple linear regression in order to fit a straight line 'y = slope*x + intercept' + * @param data set of 2D data points + * @param[out] slope The slope of the fitted line + * @param[out] intercept The intercept / offset of the line + * @param[out] mean_x_out mean of the x-values of the data [optional] + * @param[out] mean_y_out mean of the y-values of the data [optional] + * @return \c true, if a valid line has been fitted, \c false otherwise. + */ + bool linearRegression(const std::vector& data, double& slope, double& intercept, + double* mean_x_out = NULL, double* mean_y_out = NULL); + + + +// void adjustLineLength(const std::vector& data, const KeyPoint& linept1, const KeyPoint& linept2, +// KeyPoint& line_start, KeyPoint& line_end); + + private: + + /** + * @brief Callback for the dynamic_reconfigure node. + * + * This callback allows to modify parameters dynamically at runtime without restarting the node + * @param config Reference to the dynamic reconfigure config + * @param level Dynamic reconfigure level + */ +// void reconfigureCB(CostmapToLinesDBSRANSACConfig& config, uint32_t level); + +// dynamic_reconfigure::Server* dynamic_recfg_; //!< Dynamic reconfigure server to allow config modifications at runtime + }; + + + +template +bool CostmapToLinesDBSRANSAC::isInlier(const Point& point, const LinePoint& line_start, const LinePoint& line_end, double min_distance) +{ + bool is_inbetween = false; + double distance = computeDistanceToLineSegment(point, line_start, line_end, &is_inbetween); + if (!is_inbetween) + return false; + if (distance <= min_distance) + return true; + return false; +} + + +} //end namespace teb_local_planner + +#endif /* COSTMAP_TO_LINES_RANSAC_H_ */ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_polygons.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_polygons.h new file mode 100644 index 0000000..049fd10 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_polygons.h @@ -0,0 +1,335 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann, Otniel Rinaldo + *********************************************************************/ + +#ifndef COSTMAP_TO_POLYGONS_H_ +#define COSTMAP_TO_POLYGONS_H_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// dynamic reconfigure +//#include +//#include + + +namespace costmap_converter +{ + +/** + * @class CostmapToPolygonsDBSMCCH + * @brief This class converts the costmap_2d into a set of convex polygons (and points) + * + * The conversion is performed in two stages: + * 1. Clusters in the costmap are collected using the DBSCAN Algorithm (https://en.wikipedia.org/wiki/DBSCAN) + * Reference: Ester, Martin; Kriegel, Hans-Peter; Sander, Jörg; Xu, Xiaowei, + * A density-based algorithm for discovering clusters in large spatial databases with noise. + * Proceedings of the Second International Conference on Knowledge Discovery and Data Mining. AAAI Press. 1996. pp. 226–231. ISBN 1-57735-004-9. + * + * 2. In the subsequent stage, clusters are converted into convex polgons using the monotone chain algorithm aka Andrew's algorithm: + * C++ implementation example: http://www.algorithmist.com/index.php/Monotone_Chain_Convex_Hull ( GNU Free Documentation License 1.2 ) + * Reference: A. M. Andrew, "Another Efficient Algorithm for Convex Hulls in Two Dimensions", Info. Proc. Letters 9, 216-219 (1979). + * + * All single points that do not define a cluster (noise) are also treated as polygon (represented as a single vertex) + */ +class CostmapToPolygonsDBSMCCH : public BaseCostmapToPolygons +{ + public: + + /** + * @struct KeyPoint + * @brief Defines a keypoint in metric coordinates of the map + */ + struct KeyPoint + { + //! Default constructor + KeyPoint() : x(0.0), y(0.0) {} + //! Constructor with point initialization + KeyPoint(double x_, double y_) : x(x_), y(y_) {} + double x; //!< x coordinate [m] + double y; //!< y coordinate [m] + + //! Convert keypoint to geometry_msgs::msg::Point message type + void toPointMsg(geometry_msgs::msg::Point& point) const {point.x=x; point.y=y; point.z=0;} + //! Convert keypoint to geometry_msgs::msg::Point32 message type + void toPointMsg(geometry_msgs::msg::Point32& point) const {point.x=x; point.y=y; point.z=0;} + }; + + /** + * @struct Parameters + * @brief Defines the parameters of the algorithm + */ + struct Parameters + { + Parameters() : max_distance_(0.4), min_pts_(2), max_pts_(30), min_keypoint_separation_(0.1) {} + // DBSCAN parameters + double max_distance_; //!< Parameter for DB_Scan, maximum distance to neighbors [m] + int min_pts_; //!< Parameter for DB_Scan: minimum number of points that define a cluster + int max_pts_; //!< Parameter for DB_Scan: maximum number of points that define a cluster (to avoid large L- and U-shapes) + + // convex hull parameters + double min_keypoint_separation_; //!< Clear keypoints of the convex polygon that are close to each other [distance in meters] (0: keep all) + }; + + /** + * @brief Constructor + */ + CostmapToPolygonsDBSMCCH(); + + /** + * @brief Destructor + */ + virtual ~CostmapToPolygonsDBSMCCH(); + + /** + * @brief Initialize the plugin + * @param nh Nodehandle that defines the namespace for parameters + */ + virtual void initialize(rclcpp::Node::SharedPtr nh) override; + + /** + * @brief This method performs the actual work (conversion of the costmap to polygons) + */ + virtual void compute(); + + /** + * @brief Pass a pointer to the costap to the plugin. + * @sa updateCostmap2D + * @param costmap Pointer to the costmap2d source + */ + virtual void setCostmap2D(nav2_costmap_2d::Costmap2D* costmap); + + /** + * @brief Get updated data from the previously set Costmap2D + * @sa setCostmap2D + */ + virtual void updateCostmap2D(); + + + /** + * @brief Convert a generi point type to a geometry_msgs::msg::Polygon + * @param point generic 2D point type + * @param[out] polygon already instantiated polygon that will be filled with a single point + * @tparam Point generic point type that should provide (writable) x and y member fiels. + */ + template< typename Point> + static void convertPointToPolygon(const Point& point, geometry_msgs::msg::Polygon& polygon) + { + polygon.points.resize(1); + polygon.points.front().x = point.x; + polygon.points.front().y = point.y; + polygon.points.front().z = 0; + } + + /** + * @brief Get a shared instance of the current polygon container + * @remarks If compute() or startWorker() has not been called before, this method returns an empty instance! + * @return Shared instance of the current polygon container + */ + PolygonContainerConstPtr getPolygons(); + + + + protected: + + /** + * @brief DBSCAN algorithm for clustering + * + * Clusters in the costmap are collected using the DBSCAN Algorithm (https://en.wikipedia.org/wiki/DBSCAN) + * Reference: Ester, Martin; Kriegel, Hans-Peter; Sander, Jörg; Xu, Xiaowei, + * A density-based algorithm for discovering clusters in large spatial databases with noise. + * Proceedings of the Second International Conference on Knowledge Discovery and Data Mining. AAAI Press. 1996. pp. 226–231. ISBN 1-57735-004-9. + * + * @param[out] clusters clusters will added to this output-argument (a sequence of keypoints for each cluster) + * the first cluster (clusters[0]) will contain all noise points (that does not fulfil the min_pts condition + */ + void dbScan(std::vector< std::vector >& clusters); + + /** + * @brief Helper function for dbScan to search for neighboring points + * + * @param curr_index index to the current item in \c occupied_cells + * @param[out] neighbor_indices list of neighbors (indices of \c occupied cells) + */ + void regionQuery(int curr_index, std::vector& neighbor_indices); + + /** + * @brief helper function for adding a point to the lookup data structures + */ + void addPoint(double x, double y) + { + int idx = occupied_cells_.size(); + occupied_cells_.emplace_back(x, y); + int cx, cy; + pointToNeighborCells(occupied_cells_.back(), cx, cy); + int nidx = neighborCellsToIndex(cx, cy); + if (nidx >= 0) + neighbor_lookup_[nidx].push_back(idx); + } + + /** + * @brief Compute the convex hull for a single cluster (monotone chain algorithm) + * + * Clusters are converted into convex polgons using the monotone chain algorithm aka Andrew's algorithm: + * C++ implementation example: http://www.algorithmist.com/index.php/Monotone_Chain_Convex_Hull ( GNU Free Documentation License 1.2 ) + * Reference: A. M. Andrew, "Another Efficient Algorithm for Convex Hulls in Two Dimensions", Info. Proc. Letters 9, 216-219 (1979). + * @remarks The algorithm seems to cut edges, thus we give a try to convexHull2(). + * @todo Evaluate and figure out whether convexHull() or convexHull2() is better suited (performance, quality, ...) + * @remarks The last point is the same as the first one + * @param cluster list of keypoints that should be converted into a polygon + * @param[out] polygon the resulting convex polygon + */ + void convexHull(std::vector& cluster, geometry_msgs::msg::Polygon& polygon); + + /** + * @brief Compute the convex hull for a single cluster + * + * Clusters are converted into convex polgons using an algorithm provided here: + * https://bitbucket.org/vostreltsov/concave-hull/overview + * The convex hull algorithm is part of the concave hull algorithm. + * The license is WTFPL 2.0 and permits any usage. + * + * @remarks The last point is the same as the first one + * @param cluster list of keypoints that should be converted into a polygon + * @param[out] polygon the resulting convex polygon + * @todo Evaluate and figure out whether convexHull() or convexHull2() is better suited (performance, quality, ...) + */ + void convexHull2(std::vector& cluster, geometry_msgs::msg::Polygon& polygon); + + /** + * @brief Simplify a polygon by removing points. + * + * We apply the Douglas-Peucker Algorithm to simplify the edges of the polygon. + * Internally, the parameter min_keypoint_separation is used for deciding whether + * a point is considered close to an edge and to be merged into the line. + */ + void simplifyPolygon(geometry_msgs::msg::Polygon& polygon); + + /** + * @brief 2D Cross product of two vectors defined by two points and a common origin + * @param O Origin + * @param A First point + * @param B Second point + * @tparam P1 2D Point type with x and y member fields + * @tparam P2 2D Point type with x and y member fields + * @tparam P3 2D Point type with x and y member fields + */ + template + long double cross(const P1& O, const P2& A, const P3& B) + { + return (long double)(A.x - O.x) * (long double)(B.y - O.y) - (long double)(A.y - O.y) * (long double)(B.x - O.x); + } + + + /** + * @brief Thread-safe update of the internal polygon container (that is shared using getPolygons() from outside this class) + * @param polygons Updated polygon container + */ + void updatePolygonContainer(PolygonContainerPtr polygons); + + + std::vector occupied_cells_; //!< List of occupied cells in the current map (updated by updateCostmap2D()) + + std::vector > neighbor_lookup_; //! array of cells for neighbor lookup + int neighbor_size_x_; //! size of the neighbour lookup in x (number of cells) + int neighbor_size_y_; //! size of the neighbour lookup in y (number of cells) + double offset_x_; //! offset [meters] in x for the lookup grid + double offset_y_; //! offset [meters] in y for the lookup grid + + /** + * @brief convert a 2d cell coordinate into the 1D index of the array + * @param cx the x index of the cell + * @param cy the y index of the cell + */ + int neighborCellsToIndex(int cx, int cy) + { + if (cx < 0 || cx >= neighbor_size_x_ || cy < 0 || cy >= neighbor_size_y_) + return -1; + return cy * neighbor_size_x_ + cx; + } + + /** + * @brief compute the cell indices of a keypoint + * @param kp key point given in world coordinates [m, m] + * @param cx output cell index in x direction + * @param cy output cell index in y direction + */ + void pointToNeighborCells(const KeyPoint& kp, int& cx, int& cy) + { + cx = int((kp.x - offset_x_) / parameter_.max_distance_); + cy = int((kp.y - offset_y_) / parameter_.max_distance_); + } + + + Parameters parameter_; //< active parameters throughout computation + Parameters parameter_buffered_; //< the buffered parameters that are offered to dynamic reconfigure + std::mutex parameter_mutex_; //!< Mutex that keeps track about the ownership of the shared polygon instance + + private: + + /** + * @brief Callback for the dynamic_reconfigure node. + * + * This callback allows to modify parameters dynamically at runtime without restarting the node + * @param config Reference to the dynamic reconfigure config + * @param level Dynamic reconfigure level + */ + //void reconfigureCB(CostmapToPolygonsDBSMCCHConfig& config, uint32_t level); + + + PolygonContainerPtr polygons_; //!< Current shared container of polygons + std::mutex mutex_; //!< Mutex that keeps track about the ownership of the shared polygon instance + + //dynamic_reconfigure::Server* dynamic_recfg_; //!< Dynamic reconfigure server to allow config modifications at runtime + + nav2_costmap_2d::Costmap2D *costmap_; //!< Pointer to the costmap2d + +}; + + +} //end namespace teb_local_planner + +#endif /* COSTMAP_TO_POLYGONS_H_ */ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_polygons_concave.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_polygons_concave.h new file mode 100644 index 0000000..4e062ea --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/costmap_to_polygons_concave.h @@ -0,0 +1,202 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef COSTMAP_TO_POLYGONS_CONCAVE_H_ +#define COSTMAP_TO_POLYGONS_CONCAVE_H_ + +#include +#include + +// dynamic reconfigure +//#include +//#include + + +namespace costmap_converter +{ + +/** + * @class CostmapToPolygonsDBSConcaveHull + * @brief This class converts the costmap_2d into a set of non-convex polygons (and points) + * + * All single points that do not define a cluster (noise) are also treated as polygon (represented as a single vertex) + * @todo change the class hierarchy to a clearer and more generic one + */ +class CostmapToPolygonsDBSConcaveHull : public CostmapToPolygonsDBSMCCH +{ + public: + + + + /** + * @brief Constructor + */ + CostmapToPolygonsDBSConcaveHull(); + + /** + * @brief Destructor + */ + virtual ~CostmapToPolygonsDBSConcaveHull(); + + /** + * @brief Initialize the plugin + * @param nh Nodehandle that defines the namespace for parameters + */ + virtual void initialize(rclcpp::Node::SharedPtr nh); + + + /** + * @brief This method performs the actual work (conversion of the costmap to polygons) + */ + virtual void compute(); + + protected: + + + /** + * @brief Compute the concave hull for a single cluster + * + * @remarks The last point is the same as the first one + * @param cluster list of keypoints that should be converted into a polygon + * @param depth Smaller depth: sharper surface, depth -> high value: convex hull + * @param[out] polygon the resulting convex polygon + */ + void concaveHull(std::vector& cluster, double depth, geometry_msgs::msg::Polygon& polygon); + + void concaveHullClusterCut(std::vector& cluster, double depth, geometry_msgs::msg::Polygon& polygon); + + template + std::size_t findNearestInnerPoint(PointLine line_start, PointLine line_end, const std::vector& cluster, const std::vector& hull, bool* found); + + + template + bool checkLineIntersection(const Point1& line1_start, const Point2& line1_end, const Point3& line2_start, const Point4& line2_end); + + template + bool checkLineIntersection(const std::vector& hull, const Point1& current_line_start, + const Point2& current_line_end, const Point3& test_line_start, const Point4& test_line_end); + + double concave_hull_depth_; + + private: + + /** + * @brief Callback for the dynamic_reconfigure node. + * + * This callback allows to modify parameters dynamically at runtime without restarting the node + * @param config Reference to the dynamic reconfigure config + * @param level Dynamic reconfigure level + */ +// void reconfigureCB(CostmapToPolygonsDBSConcaveHullConfig& config, uint32_t level); + +// dynamic_reconfigure::Server* dynamic_recfg_; //!< Dynamic reconfigure server to allow config modifications at runtime + + +}; + + +template +std::size_t CostmapToPolygonsDBSConcaveHull::findNearestInnerPoint(PointLine line_start, PointLine line_end, const std::vector& cluster, const std::vector& hull, bool* found) +{ + std::size_t nearsest_idx = 0; + double distance = 0; + *found = false; + + for (std::size_t i = 0; i < cluster.size(); ++i) + { + // Skip points that are already in the hull + if (std::find_if( hull.begin(), hull.end(), std::bind(isApprox2d, std::placeholders::_1, std::cref(cluster[i]), 1e-5) ) != hull.end() ) + continue; + + double dist = computeDistanceToLineSegment(cluster[i], line_start, line_end); + bool skip = false; + for (int j = 0; !skip && j < (int)hull.size() - 1; ++j) + { + double dist_temp = computeDistanceToLineSegment(cluster[i], hull[j], hull[j + 1]); + skip |= dist_temp < dist; + } + if (skip) + continue; + + if (!(*found) || dist < distance) + { + nearsest_idx = i; + distance = dist; + *found = true; + } + } + return nearsest_idx; +} + + +template +bool CostmapToPolygonsDBSConcaveHull::checkLineIntersection(const Point1& line1_start, const Point2& line1_end, const Point3& line2_start, const Point4& line2_end) +{ + double dx1 = line1_end.x - line1_start.x; + double dy1 = line1_end.y - line1_start.y; + double dx2 = line2_end.x - line2_start.x; + double dy2 = line2_end.y - line2_start.y; + double s = (-dy1 * (line1_start.x - line2_start.x) + dx1 * (line1_start.y - line2_start.y)) / (-dx2 * dy1 + dx1 * dy2); + double t = ( dx2 * (line1_start.y - line2_start.y) - dy2 * (line1_start.x - line2_start.x)) / (-dx2 * dy1 + dx1 * dy2); + return (s > 0 && s < 1 && t > 0 && t < 1); +} + + +template +bool CostmapToPolygonsDBSConcaveHull::checkLineIntersection(const std::vector& hull, const Point1& current_line_start, + const Point2& current_line_end, const Point3& test_line_start, const Point4& test_line_end) +{ + for (int i = 0; i < (int)hull.size() - 2; i++) + { + if (isApprox2d(current_line_start, hull[i], 1e-5) && isApprox2d(current_line_end, hull[i+1], 1e-5)) + { + continue; + } + + if (checkLineIntersection(test_line_start, test_line_end, hull[i], hull[i+1])) + { + return true; + } + } + return false; +} + + +} //end namespace teb_local_planner + +#endif /* COSTMAP_TO_POLYGONS_CONCAVE_H_ */ diff --git a/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/misc.h b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/misc.h new file mode 100644 index 0000000..b3500a7 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/include/costmap_converter/misc.h @@ -0,0 +1,157 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef MISC_H_ +#define MISC_H_ + +#include +#include + +namespace costmap_converter +{ + +/** + * @brief Calculate the distance between a point and a straight line (with infinite length) + * @param point generic 2D point type defining the reference point + * @param line_pt1 generic 2D point as part of the line + * @param line_pt2 generic 2D point as part of the line + * @tparam Point generic point type that should provide x and y member fiels. + * @tparam LinePoint generic point type that should provide x and y member fiels. + * @return (minimum) euclidean distance to the line segment + */ +template +inline double computeDistanceToLine(const Point& point, const LinePoint& line_pt1, const LinePoint& line_pt2) +{ + double dx = line_pt2.x - line_pt1.x; + double dy = line_pt2.y - line_pt1.y; + + double length = std::sqrt(dx*dx + dy*dy); + + if (length>0) + return std::abs(dy * point.x - dx * point.y + line_pt2.x * line_pt1.y - line_pt2.y * line_pt1.x) / length; + + return std::sqrt(std::pow(point.x - line_pt1.x, 2) + std::pow(point.y - line_pt1.y, 2)); +} + + +/** + * @brief Calculate the squared distance between a point and a straight line segment + * @param point generic 2D point type defining the reference point + * @param line_start generic 2D point type defining the start of the line + * @param line_end generic 2D point type defining the end of the line + * @param[out] is_inbetween write \c true, if the point is placed inbetween start and end [optional] + * @tparam Point generic point type that should provide x and y member fiels. + * @tparam LinePoint generic point type that should provide x and y member fiels. + * @return (minimum) squared euclidean distance to the line segment + */ +template +inline double computeSquaredDistanceToLineSegment(const Point& point, const LinePoint& line_start, const LinePoint& line_end, bool* is_inbetween=NULL) +{ + double dx = line_end.x - line_start.x; + double dy = line_end.y - line_start.y; + + double length_sqr = dx*dx + dy*dy; + + double u = 0; + + if (length_sqr > 0) + u = ((point.x - line_start.x) * dx + (point.y - line_start.y) * dy) / length_sqr; + + if (is_inbetween) + *is_inbetween = (u>=0 && u<=1); + + if (u <= 0) + return std::pow(point.x-line_start.x,2) + std::pow(point.y-line_start.y,2); + + if (u >= 1) + return std::pow(point.x-line_end.x,2) + std::pow(point.y-line_end.y,2); + + return std::pow(point.x - (line_start.x+u*dx) ,2) + std::pow(point.y - (line_start.y+u*dy),2); +} + +/** + * @brief Calculate the distance between a point and a straight line segment + * @param point generic 2D point type defining the reference point + * @param line_start generic 2D point type defining the start of the line + * @param line_end generic 2D point type defining the end of the line + * @param[out] is_inbetween write \c true, if the point is placed inbetween start and end [optional] + * @tparam Point generic point type that should provide x and y member fiels. + * @tparam LinePoint generic point type that should provide x and y member fiels. + * @return (minimum) euclidean distance to the line segment + */ +template +inline double computeDistanceToLineSegment(const Point& point, const LinePoint& line_start, const LinePoint& line_end, bool* is_inbetween=NULL) +{ + return std::sqrt(computeSquaredDistanceToLineSegment(point, line_start, line_end, is_inbetween)); +} + + +/** + * @brief Calculate the distance between two 2d points + * @param pt1 generic 2D point + * @param pt2 generic 2D point + * @tparam Point1 generic point type that should provide x and y member fiels. + * @tparam Point2 generic point type that should provide x and y member fiels. + * @return euclidean distance to the line segment + */ +template +inline double norm2d(const Point1& pt1, const Point2& pt2) +{ + return std::sqrt( std::pow(pt2.x - pt1.x, 2) + std::pow(pt2.y - pt1.y, 2) ); +} + +/** + * @brief Check if two points are approximately defining the same one + * @param pt1 generic 2D point + * @param pt2 generic 2D point + * @param threshold define the minimum threshold |pt1.x-pt2.y| < tresh && |pt1.y-pt2.y| < tresh + * @tparam Point1 generic point type that should provide x and y member fiels. + * @tparam Point2 generic point type that should provide x and y member fiels. + * @return \c true, if similar, \c false otherwise + */ +template +inline bool isApprox2d(const Point1& pt1, const Point2& pt2, double threshold) +{ + return ( std::abs(pt2.x-pt1.x) + + + costmap_converter + 0.1.2 + + A ros package that includes plugins and nodes to convert occupied costmap2d cells to primitive types. + + + Christoph Rösmann + + Christoph Rösmann + Franz Albers + Otniel Rinaldo + + BSD + + http://wiki.ros.org/costmap_converter + + ament_cmake + + class_loader + costmap_converter_msgs + cv_bridge + geometry_msgs + nav2_costmap_2d + tf2 + pluginlib + rclcpp + + + ament_cmake_gtest + + + + ament_cmake + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_converter_node.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_converter_node.cpp new file mode 100644 index 0000000..e72a30f --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_converter_node.cpp @@ -0,0 +1,264 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann, Otniel Rinaldo + *********************************************************************/ +#include + +#include + +#include +#include +#include +#include + +#include +#include + +class CostmapStandaloneConversion : public rclcpp::Node { + public: + CostmapStandaloneConversion(const std::string node_name) + : rclcpp::Node(node_name), + converter_loader_("costmap_converter", + "costmap_converter::BaseCostmapToPolygons") { + costmap_ros_ = + std::make_shared("converter_costmap"); + costmap_thread_ = std::make_unique( + [](rclcpp_lifecycle::LifecycleNode::SharedPtr node) { + rclcpp::spin(node->get_node_base_interface()); + }, + costmap_ros_); + rclcpp_lifecycle::State state; + costmap_ros_->on_configure(state); + costmap_ros_->on_activate(state); + + n_ = std::shared_ptr(this, [](rclcpp::Node *) {}); + // load converter plugin from parameter server, otherwise set default + + std::string converter_plugin = + "costmap_converter::CostmapToPolygonsDBSMCCH"; + + declare_parameter("converter_plugin", + rclcpp::ParameterValue(converter_plugin)); + + get_parameter_or("converter_plugin", converter_plugin, + converter_plugin); + + try { + converter_ = converter_loader_.createSharedInstance(converter_plugin); + } catch (const pluginlib::PluginlibException &ex) { + RCLCPP_ERROR(get_logger(), + "The plugin failed to load for some reason. Error: %s", + ex.what()); + rclcpp::shutdown(); + return; + } + + RCLCPP_INFO(get_logger(), "Standalone costmap converter: %s loaded.", + converter_plugin.c_str()); + + std::string obstacles_topic = "costmap_obstacles"; + declare_parameter("obstacles_topic", + rclcpp::ParameterValue(obstacles_topic)); + get_parameter_or("obstacles_topic", obstacles_topic, + obstacles_topic); + + std::string polygon_marker_topic = "costmap_polygon_markers"; + declare_parameter("polygon_marker_topic", + rclcpp::ParameterValue(polygon_marker_topic)); + get_parameter_or("polygon_marker_topic", polygon_marker_topic, + polygon_marker_topic); + + obstacle_pub_ = + create_publisher( + obstacles_topic, 1000); + marker_pub_ = create_publisher( + polygon_marker_topic, 10); + + occupied_min_value_ = 100; + declare_parameter("occupied_min_value", + rclcpp::ParameterValue(occupied_min_value_)); + get_parameter_or("occupied_min_value", occupied_min_value_, + occupied_min_value_); + + std::string odom_topic = "/odom"; + declare_parameter("odom_topic", rclcpp::ParameterValue(odom_topic)); + get_parameter_or("odom_topic", odom_topic, odom_topic); + + if (converter_) { + converter_->setOdomTopic(odom_topic); + converter_->initialize(shared_from_this()); + converter_->startWorker(std::make_shared(5), + costmap_ros_->getCostmap(), false); + } + + pub_timer_ = n_->create_wall_timer( + std::chrono::milliseconds(200), + std::bind(&CostmapStandaloneConversion::publishCallback, this)); + } + + void publishCallback() { + costmap_converter::ObstacleArrayConstPtr obstacles = + converter_->getObstacles(); + + if (!obstacles) return; + + obstacle_pub_->publish(*obstacles); + + frame_id_ = costmap_ros_->getGlobalFrameID(); + + publishAsMarker(frame_id_, *obstacles); + } + + void publishAsMarker( + const std::string &frame_id, + const std::vector &polygonStamped) { + visualization_msgs::msg::Marker line_list; + line_list.header.frame_id = frame_id; + line_list.header.stamp = now(); + line_list.ns = "Polygons"; + line_list.action = visualization_msgs::msg::Marker::ADD; + line_list.pose.orientation.w = 1.0; + + line_list.id = 0; + line_list.type = visualization_msgs::msg::Marker::LINE_LIST; + + line_list.scale.x = 0.1; + line_list.color.g = 1.0; + line_list.color.a = 1.0; + + for (std::size_t i = 0; i < polygonStamped.size(); ++i) { + for (int j = 0; j < (int)polygonStamped[i].polygon.points.size() - 1; + ++j) { + geometry_msgs::msg::Point line_start; + line_start.x = polygonStamped[i].polygon.points[j].x; + line_start.y = polygonStamped[i].polygon.points[j].y; + line_list.points.push_back(line_start); + geometry_msgs::msg::Point line_end; + line_end.x = polygonStamped[i].polygon.points[j + 1].x; + line_end.y = polygonStamped[i].polygon.points[j + 1].y; + line_list.points.push_back(line_end); + } + // close loop for current polygon + if (!polygonStamped[i].polygon.points.empty() && + polygonStamped[i].polygon.points.size() != 2) { + geometry_msgs::msg::Point line_start; + line_start.x = polygonStamped[i].polygon.points.back().x; + line_start.y = polygonStamped[i].polygon.points.back().y; + line_list.points.push_back(line_start); + if (line_list.points.size() % 2 != 0) { + geometry_msgs::msg::Point line_end; + line_end.x = polygonStamped[i].polygon.points.front().x; + line_end.y = polygonStamped[i].polygon.points.front().y; + line_list.points.push_back(line_end); + } + } + } + marker_pub_->publish(line_list); + } + + void publishAsMarker( + const std::string &frame_id, + const costmap_converter_msgs::msg::ObstacleArrayMsg &obstacles) { + visualization_msgs::msg::Marker line_list; + line_list.header.frame_id = frame_id; + line_list.header.stamp = now(); + line_list.ns = "Polygons"; + line_list.action = visualization_msgs::msg::Marker::ADD; + line_list.pose.orientation.w = 1.0; + + line_list.id = 0; + line_list.type = visualization_msgs::msg::Marker::LINE_LIST; + + line_list.scale.x = 0.1; + line_list.color.g = 1.0; + line_list.color.a = 1.0; + + for (const auto &obstacle : obstacles.obstacles) { + for (int j = 0; j < (int)obstacle.polygon.points.size() - 1; ++j) { + geometry_msgs::msg::Point line_start; + line_start.x = obstacle.polygon.points[j].x; + line_start.y = obstacle.polygon.points[j].y; + line_list.points.push_back(line_start); + geometry_msgs::msg::Point line_end; + line_end.x = obstacle.polygon.points[j + 1].x; + line_end.y = obstacle.polygon.points[j + 1].y; + line_list.points.push_back(line_end); + } + // close loop for current polygon + if (!obstacle.polygon.points.empty() && + obstacle.polygon.points.size() != 2) { + geometry_msgs::msg::Point line_start; + line_start.x = obstacle.polygon.points.back().x; + line_start.y = obstacle.polygon.points.back().y; + line_list.points.push_back(line_start); + if (line_list.points.size() % 2 != 0) { + geometry_msgs::msg::Point line_end; + line_end.x = obstacle.polygon.points.front().x; + line_end.y = obstacle.polygon.points.front().y; + line_list.points.push_back(line_end); + } + } + } + marker_pub_->publish(line_list); + } + + private: + pluginlib::ClassLoader + converter_loader_; + std::shared_ptr converter_; + + rclcpp::Node::SharedPtr n_; + std::shared_ptr costmap_ros_; + std::unique_ptr costmap_thread_; + rclcpp::Publisher::SharedPtr + obstacle_pub_; + rclcpp::Publisher::SharedPtr marker_pub_; + rclcpp::TimerBase::SharedPtr pub_timer_; + + std::string frame_id_; + int occupied_min_value_; +}; + +int main(int argc, char **argv) { + rclcpp::init(argc, argv); + + auto convert_process = + std::make_shared("costmap_converter"); + + rclcpp::spin(convert_process); + + return 0; +} diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/background_subtractor.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/background_subtractor.cpp new file mode 100644 index 0000000..37256bc --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/background_subtractor.cpp @@ -0,0 +1,115 @@ +#include +//#include +#include + +BackgroundSubtractor::BackgroundSubtractor(const Params ¶meters): params_(parameters) +{ +} + +void BackgroundSubtractor::apply(const cv::Mat& image, cv::Mat& fg_mask, int shift_x, int shift_y) +{ + current_frame_ = image; + + // occupancy grids are empty only once in the beginning -> initialize variables + if (occupancy_grid_fast_.empty() && occupancy_grid_slow_.empty()) + { + occupancy_grid_fast_ = current_frame_; + occupancy_grid_slow_ = current_frame_; + previous_shift_x_ = shift_x; + previous_shift_y_ = shift_y; + return; + } + + // Shift previous occupancy grid to new location (match current_frame_) + int shift_relative_to_previous_pos_x_ = shift_x - previous_shift_x_; + int shift_relative_to_previous_pos_y_ = shift_y - previous_shift_y_; + previous_shift_x_ = shift_x; + previous_shift_y_ = shift_y; + + // if(shift_relative_to_previous_pos_x_ != 0 || shift_relative_to_previous_pos_y_ != 0) + transformToCurrentFrame(shift_relative_to_previous_pos_x_, shift_relative_to_previous_pos_y_); + + // cvv::debugFilter(occupancy_grid_fast_, currentFrame_, CVVISUAL_LOCATION); + + // Calculate normalized sum (mean) of nearest neighbors + int size = 3; // 3, 5, 7, .... + cv::Mat nearest_neighbor_mean_fast(occupancy_grid_fast_.size(), CV_8UC1); + cv::Mat nearest_neighbor_mean_slow(occupancy_grid_slow_.size(), CV_8UC1); + cv::boxFilter(occupancy_grid_fast_, nearest_neighbor_mean_fast, -1, cv::Size(size, size), cv::Point(-1, -1), true, + cv::BORDER_REPLICATE); + cv::boxFilter(occupancy_grid_slow_, nearest_neighbor_mean_slow, -1, cv::Size(size, size), cv::Point(-1, -1), true, + cv::BORDER_REPLICATE); + // cv::GaussianBlur(occupancy_grid_fast_, nearest_neighbor_mean_fast, cv::Size(size,size), 1, 1, cv::BORDER_REPLICATE); + // cv::GaussianBlur(occupancy_grid_fast_, nearest_neighbor_mean_fast, cv::Size(size,size), 1, 1, cv::BORDER_REPLICATE); + + // compute time mean value for each pixel according to learningrate alpha + // occupancy_grid_fast_ = beta*(alpha_fast*current_frame_ + (1.0-alpha_fast)*occupancy_grid_fast_) + (1-beta)*nearest_neighbor_mean_fast; + cv::addWeighted(current_frame_, params_.alpha_fast, occupancy_grid_fast_, (1 - params_.alpha_fast), 0, occupancy_grid_fast_); + cv::addWeighted(occupancy_grid_fast_, params_.beta, nearest_neighbor_mean_fast, (1 - params_.beta), 0, occupancy_grid_fast_); + // occupancy_grid_slow_ = beta*(alpha_slow*current_frame_ + (1.0-alpha_slow)*occupancy_grid_slow) + (1-beta)*nearest_neighbor_mean_slow; + cv::addWeighted(current_frame_, params_.alpha_slow, occupancy_grid_slow_, (1 - params_.alpha_slow), 0, occupancy_grid_slow_); + cv::addWeighted(occupancy_grid_slow_, params_.beta, nearest_neighbor_mean_slow, (1 - params_.beta), 0, occupancy_grid_slow_); + + // 1) Obstacles should be detected after a minimum response of the fast filter + // occupancy_grid_fast_ > min_occupancy_probability + cv::threshold(occupancy_grid_fast_, occupancy_grid_fast_, params_.min_occupancy_probability, 0 /*unused*/, cv::THRESH_TOZERO); + // 2) Moving obstacles have a minimum difference between the responses of the slow and fast filter + // occupancy_grid_fast_-occupancy_grid_slow_ > min_sep_between_fast_and_slow_filter + cv::threshold(occupancy_grid_fast_ - occupancy_grid_slow_, fg_mask, params_.min_sep_between_fast_and_slow_filter, 255, + cv::THRESH_BINARY); + // 3) Dismiss static obstacles + // nearest_neighbor_mean_slow < max_occupancy_neighbors + cv::threshold(nearest_neighbor_mean_slow, nearest_neighbor_mean_slow, params_.max_occupancy_neighbors, 255, cv::THRESH_BINARY_INV); + cv::bitwise_and(nearest_neighbor_mean_slow, fg_mask, fg_mask); + + //visualize("Current frame", currentFrame_); + cv::Mat setBorderToZero = cv::Mat(current_frame_.size(), CV_8UC1, 0.0); + int border = 5; + setBorderToZero(cv::Rect(border, border, current_frame_.cols-2*border, current_frame_.rows-2*border)) = 255; + + cv::bitwise_and(setBorderToZero, fg_mask, fg_mask); + + // cv::imwrite("/home/albers/Desktop/currentFrame.png", currentFrame_); + // visualize("Foreground mask", fgMask); + + // Closing Operation + cv::Mat element = cv::getStructuringElement(cv::MORPH_ELLIPSE, + cv::Size(2*params_.morph_size + 1, 2*params_.morph_size + 1), + cv::Point(params_.morph_size, params_.morph_size)); + cv::dilate(fg_mask, fg_mask, element); + cv::dilate(fg_mask, fg_mask, element); + cv::erode(fg_mask, fg_mask, element); +} + +void BackgroundSubtractor::transformToCurrentFrame(int shift_x, int shift_y) +{ + // TODO: initialize with current_frame (first observed image) rather than zeros + + // Translate (shift) image in costmap coordinates + // in cv::Mat: shift X -> to the left; shift y -> to the top + cv::Mat temp_fast, temp_slow; + cv::Mat translation_mat = (cv::Mat_(2, 3, CV_64F) << 1, 0, -shift_x, 0, 1, -shift_y); + cv::warpAffine(occupancy_grid_fast_, temp_fast, translation_mat, occupancy_grid_fast_.size()); // can't operate in-place + cv::warpAffine(occupancy_grid_slow_, temp_slow, translation_mat, occupancy_grid_slow_.size()); // can't operate in-place + + // cvv::debugFilter(occupancy_grid_fast_, temp_fast); + + occupancy_grid_fast_ = temp_fast; + occupancy_grid_slow_ = temp_slow; +} + +void BackgroundSubtractor::visualize(const std::string& name, const cv::Mat& image) +{ + if (!image.empty()) + { + cv::Mat im = image.clone(); + cv::flip(im, im, 0); + cv::imshow(name, im); + cv::waitKey(1); + } +} + +void BackgroundSubtractor::updateParameters(const Params ¶meters) +{ + params_ = parameters; +} diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/blob_detector.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/blob_detector.cpp new file mode 100755 index 0000000..c7352f4 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/blob_detector.cpp @@ -0,0 +1,193 @@ +#include +#include +#include + +BlobDetector::BlobDetector(const SimpleBlobDetector::Params& parameters) : params_(parameters) {} + +cv::Ptr BlobDetector::create(const cv::SimpleBlobDetector::Params& params) +{ + return cv::Ptr (new BlobDetector(params)); // compatibility with older versions + //return cv::makePtr(params); +} + +void BlobDetector::detect(const cv::Mat& image, std::vector& keypoints, const cv::Mat&) +{ + // TODO: support mask + contours_.clear(); + + keypoints.clear(); + cv::Mat grayscale_image; + if (image.channels() == 3) + cv::cvtColor(image, grayscale_image, cv::COLOR_BGR2GRAY); + else + grayscale_image = image; + + if (grayscale_image.type() != CV_8UC1) + { + //CV_Error(cv::Error::StsUnsupportedFormat, "Blob detector only supports 8-bit images!"); + std::cerr << "Blob detector only supports 8-bit images!\n"; + } + + std::vector> centers; + std::vector> contours; + for (double thresh = params_.minThreshold; thresh < params_.maxThreshold; thresh += params_.thresholdStep) + { + cv::Mat binarized_image; + cv::threshold(grayscale_image, binarized_image, thresh, 255, cv::THRESH_BINARY); + + std::vector
cur_centers; + std::vector> cur_contours, new_contours; + findBlobs(grayscale_image, binarized_image, cur_centers, cur_contours); + std::vector> new_centers; + for (std::size_t i = 0; i < cur_centers.size(); ++i) + { + bool isNew = true; + for (std::size_t j = 0; j < centers.size(); ++j) + { + double dist = cv::norm(centers[j][centers[j].size() / 2].location - cur_centers[i].location); + isNew = dist >= params_.minDistBetweenBlobs && dist >= centers[j][centers[j].size() / 2].radius && + dist >= cur_centers[i].radius; + if (!isNew) + { + centers[j].push_back(cur_centers[i]); + + size_t k = centers[j].size() - 1; + while (k > 0 && centers[j][k].radius < centers[j][k - 1].radius) + { + centers[j][k] = centers[j][k - 1]; + k--; + } + centers[j][k] = cur_centers[i]; + + break; + } + } + if (isNew) + { + new_centers.push_back(std::vector
(1, cur_centers[i])); + new_contours.push_back(cur_contours[i]); + } + } + std::copy(new_centers.begin(), new_centers.end(), std::back_inserter(centers)); + std::copy(new_contours.begin(), new_contours.end(), std::back_inserter(contours)); + } + + for (size_t i = 0; i < centers.size(); ++i) + { + if (centers[i].size() < params_.minRepeatability) + continue; + cv::Point2d sum_point(0, 0); + double normalizer = 0; + for (std::size_t j = 0; j < centers[i].size(); ++j) + { + sum_point += centers[i][j].confidence * centers[i][j].location; + normalizer += centers[i][j].confidence; + } + sum_point *= (1. / normalizer); + cv::KeyPoint kpt(sum_point, (float)(centers[i][centers[i].size() / 2].radius)); + keypoints.push_back(kpt); + contours_.push_back(contours[i]); + } +} + +void BlobDetector::findBlobs(const cv::Mat& image, const cv::Mat& binary_image, std::vector
& centers, + std::vector>& cur_contours) const +{ + (void)image; + centers.clear(); + cur_contours.clear(); + + std::vector> contours; + cv::Mat tmp_binary_image = binary_image.clone(); + cv::findContours(tmp_binary_image, contours, cv::RETR_LIST, cv::CHAIN_APPROX_SIMPLE); + + for (std::size_t contour_idx = 0; contour_idx < contours.size(); ++contour_idx) + { + Center center; + center.confidence = 1; + cv::Moments moms = cv::moments(cv::Mat(contours[contour_idx])); + if (params_.filterByArea) + { + double area = moms.m00; + if (area < params_.minArea || area >= params_.maxArea) + continue; + } + + if (params_.filterByCircularity) + { + double area = moms.m00; + double perimeter = cv::arcLength(cv::Mat(contours[contour_idx]), true); + double ratio = 4 * CV_PI * area / (perimeter * perimeter); + if (ratio < params_.minCircularity || ratio >= params_.maxCircularity) + continue; + } + + if (params_.filterByInertia) + { + double denominator = std::sqrt(std::pow(2 * moms.mu11, 2) + std::pow(moms.mu20 - moms.mu02, 2)); + const double eps = 1e-2; + double ratio; + if (denominator > eps) + { + double cosmin = (moms.mu20 - moms.mu02) / denominator; + double sinmin = 2 * moms.mu11 / denominator; + double cosmax = -cosmin; + double sinmax = -sinmin; + + double imin = 0.5 * (moms.mu20 + moms.mu02) - 0.5 * (moms.mu20 - moms.mu02) * cosmin - moms.mu11 * sinmin; + double imax = 0.5 * (moms.mu20 + moms.mu02) - 0.5 * (moms.mu20 - moms.mu02) * cosmax - moms.mu11 * sinmax; + ratio = imin / imax; + } + else + { + ratio = 1; + } + + if (ratio < params_.minInertiaRatio || ratio >= params_.maxInertiaRatio) + continue; + + center.confidence = ratio * ratio; + } + + if (params_.filterByConvexity) + { + std::vector hull; + cv::convexHull(cv::Mat(contours[contour_idx]), hull); + double area = cv::contourArea(cv::Mat(contours[contour_idx])); + double hullArea = cv::contourArea(cv::Mat(hull)); + double ratio = area / hullArea; + if (ratio < params_.minConvexity || ratio >= params_.maxConvexity) + continue; + } + + if (moms.m00 == 0.0) + continue; + center.location = cv::Point2d(moms.m10 / moms.m00, moms.m01 / moms.m00); + + if (params_.filterByColor) + { + if (binary_image.at(cvRound(center.location.y), cvRound(center.location.x)) != params_.blobColor) + continue; + } + + // compute blob radius + { + std::vector dists; + for (std::size_t point_idx = 0; point_idx < contours[contour_idx].size(); ++point_idx) + { + cv::Point2d pt = contours[contour_idx][point_idx]; + dists.push_back(cv::norm(center.location - pt)); + } + std::sort(dists.begin(), dists.end()); + center.radius = (dists[(dists.size() - 1) / 2] + dists[dists.size() / 2]) / 2.; + } + + centers.push_back(center); + cur_contours.push_back(contours[contour_idx]); + } +} + +void BlobDetector::updateParameters(const Params& parameters) +{ + params_ = parameters; +} diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/costmap_to_dynamic_obstacles.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/costmap_to_dynamic_obstacles.cpp new file mode 100644 index 0000000..5848124 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/costmap_to_dynamic_obstacles.cpp @@ -0,0 +1,489 @@ +#include + +#include +#include +#include +#include + +PLUGINLIB_EXPORT_CLASS(costmap_converter::CostmapToDynamicObstacles, costmap_converter::BaseCostmapToPolygons) + +namespace costmap_converter +{ + +CostmapToDynamicObstacles::CostmapToDynamicObstacles() : BaseCostmapToDynamicObstacles() +{ + ego_vel_.x = ego_vel_.y = ego_vel_.z = 0; + costmap_ = nullptr; +// dynamic_recfg_ = nullptr; +} + +CostmapToDynamicObstacles::~CostmapToDynamicObstacles() +{ +// if(dynamic_recfg_ != nullptr) +// delete dynamic_recfg_; +} + +void CostmapToDynamicObstacles::initialize(rclcpp::Node::SharedPtr nh) +{ + BaseCostmapToPolygons::initialize(nh); + + costmap_ = nullptr; + + // We need the odometry from the robot to compensate the ego motion +// rclcpp::Node::SharedPtr gn; // create odom topic w.r.t. global node handle + odom_sub_ = nh->create_subscription( + odom_topic_, + rclcpp::SystemDefaultsQoS(), + std::bind(&CostmapToDynamicObstacles::odomCallback, this, std::placeholders::_1)); + + nh->get_parameter_or("publish_static_obstacles", publish_static_obstacles_, publish_static_obstacles_); + + ////////////////////////////////// + // Foreground detection parameters + BackgroundSubtractor::Params bg_sub_params; + + bg_sub_params.alpha_slow = 0.3; + nh->get_parameter_or("alpha_slow", bg_sub_params.alpha_slow, bg_sub_params.alpha_slow); + + bg_sub_params.alpha_fast = 0.85; + nh->get_parameter_or("alpha_fast", bg_sub_params.alpha_fast, bg_sub_params.alpha_fast); + + bg_sub_params.beta = 0.85; + nh->get_parameter_or("beta", bg_sub_params.beta, bg_sub_params.beta); + + bg_sub_params.min_occupancy_probability = 180; + nh->get_parameter_or("min_occupancy_probability", bg_sub_params.min_occupancy_probability, bg_sub_params.min_occupancy_probability); + + bg_sub_params.min_sep_between_fast_and_slow_filter = 80; + nh->get_parameter_or("min_sep_between_slow_and_fast_filter", bg_sub_params.min_sep_between_fast_and_slow_filter, bg_sub_params.min_sep_between_fast_and_slow_filter); + + bg_sub_params.max_occupancy_neighbors = 100; + nh->get_parameter_or("max_occupancy_neighbors", bg_sub_params.max_occupancy_neighbors, bg_sub_params.max_occupancy_neighbors); + + bg_sub_params.morph_size = 1; + nh->get_parameter_or("morph_size", bg_sub_params.morph_size, bg_sub_params.morph_size); + + bg_sub_ = std::unique_ptr(new BackgroundSubtractor(bg_sub_params)); + + //////////////////////////// + // Blob detection parameters + BlobDetector::Params blob_det_params; + + blob_det_params.filterByColor = true; // actually filterByIntensity, always true + blob_det_params.blobColor = 255; // Extract light blobs + blob_det_params.thresholdStep = 256; // Input for blob detection is already a binary image + blob_det_params.minThreshold = 127; + blob_det_params.maxThreshold = 255; + blob_det_params.minRepeatability = 1; + + blob_det_params.minDistBetweenBlobs = 10; + nh->get_parameter_or("min_distance_between_blobs", blob_det_params.minDistBetweenBlobs, blob_det_params.minDistBetweenBlobs); + + blob_det_params.filterByArea = true; + nh->get_parameter_or("filter_by_area", blob_det_params.filterByArea, blob_det_params.filterByArea); + + blob_det_params.minArea = 3; // Filter out blobs with less pixels + nh->get_parameter_or("min_area", blob_det_params.minArea, blob_det_params.minArea); + + blob_det_params.maxArea = 300; + nh->get_parameter_or("max_area", blob_det_params.maxArea, blob_det_params.maxArea); + + blob_det_params.filterByCircularity = true; // circularity = 4*pi*area/perimeter^2 + nh->get_parameter_or("filter_by_circularity", blob_det_params.filterByCircularity, blob_det_params.filterByCircularity); + + blob_det_params.minCircularity = 0.2; + nh->get_parameter_or("min_circularity", blob_det_params.minCircularity, blob_det_params.minCircularity); + + blob_det_params.maxCircularity = 1; // maximal 1 (in case of a circle) + nh->get_parameter_or("max_circularity", blob_det_params.maxCircularity, blob_det_params.maxCircularity); + + blob_det_params.filterByInertia = true; // Filter blobs based on their elongation + nh->get_parameter_or("filter_by_intertia", blob_det_params.filterByInertia, blob_det_params.filterByInertia); + + blob_det_params.minInertiaRatio = 0.2; // minimal 0 (in case of a line) + nh->get_parameter_or("min_inertia_ratio", blob_det_params.minInertiaRatio, blob_det_params.minInertiaRatio); + + blob_det_params.maxInertiaRatio = 1; // maximal 1 (in case of a circle) + nh->get_parameter_or("max_intertia_ratio", blob_det_params.maxInertiaRatio, blob_det_params.maxInertiaRatio); + + blob_det_params.filterByConvexity = false; // Area of the Blob / Area of its convex hull + nh->get_parameter_or("filter_by_convexity", blob_det_params.filterByConvexity, blob_det_params.filterByConvexity); + + blob_det_params.minConvexity = 0; // minimal 0 + nh->get_parameter_or("min_convexity", blob_det_params.minConvexity, blob_det_params.minConvexity); + + blob_det_params.maxConvexity = 1; // maximal 1 + nh->get_parameter_or("max_convexity", blob_det_params.maxConvexity, blob_det_params.maxConvexity); + + blob_det_ = BlobDetector::create(blob_det_params); + + //////////////////////////////////// + // Tracking parameters + CTracker::Params tracker_params; + tracker_params.dt = 0.2; + nh->get_parameter_or("dt", tracker_params.dt, tracker_params.dt); + + tracker_params.dist_thresh = 60.0; + nh->get_parameter_or("dist_thresh", tracker_params.dist_thresh, tracker_params.dist_thresh); + + tracker_params.max_allowed_skipped_frames = 3; + nh->get_parameter_or("max_allowed_skipped_frames", tracker_params.max_allowed_skipped_frames, tracker_params.max_allowed_skipped_frames); + + tracker_params.max_trace_length = 10; + nh->get_parameter_or("max_trace_length", tracker_params.max_trace_length, tracker_params.max_trace_length); + + tracker_ = std::unique_ptr(new CTracker(tracker_params)); + + + //////////////////////////////////// + // Static costmap conversion parameters + std::string static_converter_plugin = "costmap_converter::CostmapToPolygonsDBSMCCH"; + nh->get_parameter_or("static_converter_plugin", static_converter_plugin, static_converter_plugin); + loadStaticCostmapConverterPlugin(static_converter_plugin, nh); + + +// setup dynamic reconfigure +// dynamic_recfg_ = new dynamic_reconfigure::Server(nh); +// dynamic_reconfigure::Server::CallbackType cb = boost::bind(&CostmapToDynamicObstacles::reconfigureCB, this, _1, _2); +// dynamic_recfg_->setCallback(cb); +} + +void CostmapToDynamicObstacles::compute() +{ + if (costmap_mat_.empty()) + return; + + /////////////////////////// Foreground detection //////////////////////////////////// + // Dynamic obstacles are separated from static obstacles + int origin_x = round(costmap_->getOriginX() / costmap_->getResolution()); + int origin_y = round(costmap_->getOriginY() / costmap_->getResolution()); + // ROS_INFO("Origin x [m]: %f Origin_y [m]: %f", costmap_->getOriginX(), costmap_->getOriginY()); + // ROS_INFO("Origin x [px]: %d \t Origin_y [px]: %d", originX, originY); + + bg_sub_->apply(costmap_mat_, fg_mask_, origin_x, origin_y); + + // if no foreground object is detected, no ObstacleMsgs need to be published + if (fg_mask_.empty()) + return; + + cv::Mat bg_mat; + if (publish_static_obstacles_) + { + // Get static obstacles + bg_mat = costmap_mat_ - fg_mask_; + // visualize("bg_mat", bg_mat); + } + + + /////////////////////////////// Blob detection ///////////////////////////////////// + // Centers and contours of Blobs are detected + blob_det_->detect(fg_mask_, keypoints_); + std::vector> contours = blob_det_->getContours(); + + + ////////////////////////////// Tracking //////////////////////////////////////////// + // Objects are assigned to objects from previous frame based on Hungarian Algorithm + // Object velocities are estimated using a Kalman Filter + std::vector detected_centers(keypoints_.size()); + for (size_t i = 0; i < keypoints_.size(); i++) + { + detected_centers.at(i).x = keypoints_.at(i).pt.x; + detected_centers.at(i).y = keypoints_.at(i).pt.y; + detected_centers.at(i).z = 0; // Currently unused! + } + + tracker_->Update(detected_centers, contours); + + + ///////////////////////////////////// Output /////////////////////////////////////// + /* + cv::Mat fg_mask_with_keypoints = cv::Mat::zeros(fg_mask.size(), CV_8UC3); + cv::cvtColor(fg_mask, fg_mask_with_keypoints, cv::COLOR_GRAY2BGR); + + for (int i = 0; i < (int)tracker_->tracks.size(); ++i) + cv::rectangle(fg_mask_with_keypoints, cv::boundingRect(tracker_->tracks[i]->getLastContour()), + cv::Scalar(0, 0, 255), 1); + + //visualize("fgMaskWithKeyPoints", fgMaskWithKeypoints); + //cv::imwrite("/home/albers/Desktop/fgMask.png", fgMask); + //cv::imwrite("/home/albers/Desktop/fgMaskWithKeyPoints.png", fgMaskWithKeypoints); + */ + + //////////////////////////// Fill ObstacleContainerPtr ///////////////////////////// + ObstacleArrayPtr obstacles(new costmap_converter_msgs::msg::ObstacleArrayMsg); + // header.seq is automatically filled + obstacles->header.stamp = now(); + obstacles->header.frame_id = "/map"; //Global frame /map + + // For all tracked objects + for (unsigned int i = 0; i < (unsigned int)tracker_->tracks.size(); ++i) + { + geometry_msgs::msg::Polygon polygon; + + // TODO directly create polygon inside getContour and avoid copy + std::vector contour; + getContour(i, contour); // this method also transforms map to world coordinates + + // convert contour to polygon + for (const Point_t& pt : contour) + { + polygon.points.emplace_back(); + polygon.points.back().x = pt.x; + polygon.points.back().y = pt.y; + polygon.points.back().z = 0; + } + + obstacles->obstacles.emplace_back(); + obstacles->obstacles.back().polygon = polygon; + + // Set obstacle ID + obstacles->obstacles.back().id = tracker_->tracks.at(i)->track_id; + + // Set orientation + geometry_msgs::msg::QuaternionStamped orientation; + + Point_t vel = getEstimatedVelocityOfObject(i); + double yaw = std::atan2(vel.y, vel.x); + //ROS_INFO("yaw: %f", yaw); + tf2::Quaternion q; + q.setRPY(0, 0, yaw); + obstacles->obstacles.back().orientation = tf2::toMsg(q); + + // Set velocity + geometry_msgs::msg::TwistWithCovariance velocities; + //velocities.twist.linear.x = std::sqrt(vel.x*vel.x + vel.y*vel.y); + //velocities.twist.linear.y = 0; + velocities.twist.linear.x = vel.x; + velocities.twist.linear.y = vel.y; // TODO(roesmann): don't we need to consider the transformation between opencv's and costmap's coordinate frames? + velocities.twist.linear.z = 0; + velocities.twist.angular.x = 0; + velocities.twist.angular.y = 0; + velocities.twist.angular.z = 0; + + // TODO: use correct covariance matrix + velocities.covariance = {1, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, + 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 1}; + + obstacles->obstacles.back().velocities = velocities; + } + + ////////////////////////// Static obstacles //////////////////////////// + if (publish_static_obstacles_) + { + uchar* img_data = bg_mat.data; + int width = bg_mat.cols; + int height = bg_mat.rows; + int stride = bg_mat.step; + + if (stackedCostmapConversion()) + { + // Create new costmap with static obstacles (background) + std::shared_ptr static_costmap(new nav2_costmap_2d::Costmap2D(costmap_->getSizeInCellsX(), + costmap_->getSizeInCellsY(), + costmap_->getResolution(), + costmap_->getOriginX(), + costmap_->getOriginY())); + for(int i = 0; i < height; i++) + { + for(int j = 0; j < width; j++) + { + static_costmap->setCost(j, i, img_data[i * stride + j]); + } + } + + // Apply static obstacle conversion plugin + setStaticCostmap(static_costmap); + convertStaticObstacles(); + + // Store converted static obstacles for publishing + auto static_polygons = getStaticPolygons(); + for (auto it = static_polygons->begin(); it != static_polygons->end(); ++it) + { + obstacles->obstacles.emplace_back(); + obstacles->obstacles.back().polygon = *it; + obstacles->obstacles.back().velocities.twist.linear.x = 0; + obstacles->obstacles.back().velocities.twist.linear.y = 0; + obstacles->obstacles.back().id = -1; + } + } + // Otherwise leave static obstacles point-shaped + else + { + for(int i = 0; i < height; i++) + { + for(int j = 0; j < width; j++) + { + uchar value = img_data[i * stride + j]; + if (value > 0) + { + // obstacle found + obstacles->obstacles.emplace_back(); + geometry_msgs::msg::Point32 pt; + pt.x = (double)j*costmap_->getResolution() + costmap_->getOriginX(); + pt.y = (double)i*costmap_->getResolution() + costmap_->getOriginY(); + obstacles->obstacles.back().polygon.points.push_back(pt); + obstacles->obstacles.back().velocities.twist.linear.x = 0; + obstacles->obstacles.back().velocities.twist.linear.y = 0; + obstacles->obstacles.back().id = -1; + } + } + } + } + } + + updateObstacleContainer(obstacles); +} + +void CostmapToDynamicObstacles::setCostmap2D(nav2_costmap_2d::Costmap2D* costmap) +{ + if (!costmap) + return; + + costmap_ = costmap; + + updateCostmap2D(); +} + +void CostmapToDynamicObstacles::updateCostmap2D() +{ + if (!costmap_->getMutex()) + { + RCLCPP_ERROR(getLogger(), "Cannot update costmap since the mutex pointer is null"); + return; + } + std::unique_lock lock(*costmap_->getMutex()); + + // Initialize costmapMat_ directly with the unsigned char array of costmap_ + //costmap_mat_ = cv::Mat(costmap_->getSizeInCellsX(), costmap_->getSizeInCellsY(), CV_8UC1, + // costmap_->getCharMap()).clone(); // Deep copy: TODO + costmap_mat_ = cv::Mat(costmap_->getSizeInCellsX(), costmap_->getSizeInCellsY(), CV_8UC1, + costmap_->getCharMap()); +} + +ObstacleArrayConstPtr CostmapToDynamicObstacles::getObstacles() +{ + std::lock_guard lock(mutex_); + return obstacles_; +} + +void CostmapToDynamicObstacles::updateObstacleContainer(ObstacleArrayPtr obstacles) +{ + std::lock_guard lock(mutex_); + obstacles_ = obstacles; +} + +Point_t CostmapToDynamicObstacles::getEstimatedVelocityOfObject(unsigned int idx) +{ + // vel [px/s] * costmapResolution [m/px] = vel [m/s] + Point_t vel = tracker_->tracks.at(idx)->getEstimatedVelocity() * costmap_->getResolution() + ego_vel_; + + //ROS_INFO("vel x: %f, vel y: %f, vel z: %f", vel.x, vel.y, vel.z); + // velocity in /map frame + return vel; +} + +void CostmapToDynamicObstacles::odomCallback(const nav_msgs::msg::Odometry::ConstSharedPtr msg) +{ + RCLCPP_INFO_ONCE(getLogger(), "CostmapToDynamicObstacles: odom received."); + + tf2::Quaternion pose; + tf2::fromMsg(msg->pose.pose.orientation, pose); + + tf2::Vector3 twistLinear; + // tf2::fromMsg(msg->twist.twist.linear, twistLinear); // not available in tf2 + twistLinear.setX(msg->twist.twist.linear.x); + twistLinear.setY(msg->twist.twist.linear.y); + twistLinear.setZ(msg->twist.twist.linear.z); + + + // velocity of the robot in x, y and z coordinates + tf2::Vector3 vel = tf2::quatRotate(pose, twistLinear); + ego_vel_.x = vel.x(); + ego_vel_.y = vel.y(); + ego_vel_.z = vel.z(); +} + +//void CostmapToDynamicObstacles::reconfigureCB(CostmapToDynamicObstaclesConfig& config, uint32_t level) +//{ +// publish_static_obstacles_ = config.publish_static_obstacles; + +// // BackgroundSubtraction Parameters +// BackgroundSubtractor::Params bg_sub_params; +// bg_sub_params.alpha_slow = config.alpha_slow; +// bg_sub_params.alpha_fast = config.alpha_fast; +// bg_sub_params.beta = config.beta; +// bg_sub_params.min_sep_between_fast_and_slow_filter = config.min_sep_between_slow_and_fast_filter; +// bg_sub_params.min_occupancy_probability = config.min_occupancy_probability; +// bg_sub_params.max_occupancy_neighbors = config.max_occupancy_neighbors; +// bg_sub_params.morph_size = config.morph_size; +// bg_sub_->updateParameters(bg_sub_params); + +// // BlobDetector Parameters +// BlobDetector::Params blob_det_params; +// // necessary, because blobDetParams are otherwise initialized with default values for dark blobs +// blob_det_params.filterByColor = true; // actually filterByIntensity, always true +// blob_det_params.blobColor = 255; // Extract light blobs +// blob_det_params.thresholdStep = 256; // Input for blobDetection is already a binary image +// blob_det_params.minThreshold = 127; +// blob_det_params.maxThreshold = 255; +// blob_det_params.minRepeatability = 1; +// blob_det_params.minDistBetweenBlobs = config.min_distance_between_blobs; // TODO: Currently not working as expected +// blob_det_params.filterByArea = config.filter_by_area; +// blob_det_params.minArea = config.min_area; +// blob_det_params.maxArea = config.max_area; +// blob_det_params.filterByCircularity = config.filter_by_circularity; +// blob_det_params.minCircularity = config.min_circularity; +// blob_det_params.maxCircularity = config.max_circularity; +// blob_det_params.filterByInertia = config.filter_by_inertia; +// blob_det_params.minInertiaRatio = config.min_inertia_ratio; +// blob_det_params.maxInertiaRatio = config.max_inertia_ratio; +// blob_det_params.filterByConvexity = config.filter_by_convexity; +// blob_det_params.minConvexity = config.min_convexity; +// blob_det_params.maxConvexity = config.max_convexity; +// blob_det_->updateParameters(blob_det_params); + +// // Tracking Parameters +// CTracker::Params tracking_params; +// tracking_params.dt = config.dt; +// tracking_params.dist_thresh = config.dist_thresh; +// tracking_params.max_allowed_skipped_frames = config.max_allowed_skipped_frames; +// tracking_params.max_trace_length = config.max_trace_length; +// tracker_->updateParameters(tracking_params); +//} + +void CostmapToDynamicObstacles::getContour(unsigned int idx, std::vector& contour) +{ + assert(!tracker_->tracks.empty() && idx < tracker_->tracks.size()); + + contour.clear(); + + // contour [px] * costmapResolution [m/px] = contour [m] + std::vector contour2i = tracker_->tracks.at(idx)->getLastContour(); + + contour.reserve(contour2i.size()); + + Point_t costmap_origin(costmap_->getOriginX(), costmap_->getOriginY(), 0); + + for (std::size_t i = 0; i < contour2i.size(); ++i) + { + contour.push_back((Point_t(contour2i.at(i).x, contour2i.at(i).y, 0.0)*costmap_->getResolution()) + + costmap_origin); // Shift to /map + } + +} + +void CostmapToDynamicObstacles::visualize(const std::string& name, const cv::Mat& image) +{ + if (!image.empty()) + { + cv::Mat im = image.clone(); + cv::flip(im, im, 0); + cv::imshow(name, im); + cv::waitKey(1); + } +} +} diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/Ctracker.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/Ctracker.cpp new file mode 100644 index 0000000..80ddde4 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/Ctracker.cpp @@ -0,0 +1,130 @@ +// Based on https://github.com/Smorodov/Multitarget-tracker/tree/master/Tracker, GPLv3 +// Refer to README.md in this directory. + +#include + +// --------------------------------------------------------------------------- +// Tracker. Manage tracks. Create, remove, update. +// --------------------------------------------------------------------------- +CTracker::CTracker(const Params ¶meters) + : params(parameters), + NextTrackID(0) +{ +} +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +void CTracker::Update(const std::vector& detectedCentroid, const std::vector< std::vector >& contours) +{ + // Each contour has a centroid + assert(detectedCentroid.size() == contours.size()); + + // ----------------------------------- + // If there is no tracks yet, then every cv::Point begins its own track. + // ----------------------------------- + if (tracks.size() == 0) + { + // If no tracks yet + for (size_t i = 0; i < detectedCentroid.size(); ++i) + { + tracks.push_back( + std::unique_ptr(new CTrack(detectedCentroid[i], contours[i], params.dt, NextTrackID++))); + } + } + + size_t N = tracks.size(); + size_t M = detectedCentroid.size(); + + assignments_t assignment; + + if (!tracks.empty()) + { + // Distance matrix of N-th Track to the M-th detectedCentroid + distMatrix_t Cost(N * M); + + // calculate distance between the blobs centroids + for (size_t i = 0; i < tracks.size(); i++) + { + for (size_t j = 0; j < detectedCentroid.size(); j++) + { + Cost[i + j * N] = tracks[i]->CalcDist(detectedCentroid[j]); + } + } + + // ----------------------------------- + // Solving assignment problem (tracks and predictions of Kalman filter) + // ----------------------------------- + AssignmentProblemSolver APS; + APS.Solve(Cost, N, M, assignment, AssignmentProblemSolver::optimal); + + // ----------------------------------- + // clean assignment from pairs with large distance + // ----------------------------------- + for (size_t i = 0; i < assignment.size(); i++) + { + if (assignment[i] != -1) + { + if (Cost[i + assignment[i] * N] > params.dist_thresh) + { + assignment[i] = -1; + tracks[i]->skipped_frames = 1; + } + } + else + { + // If track have no assigned detect, then increment skipped frames counter. + tracks[i]->skipped_frames++; + } + } + + // ----------------------------------- + // If track didn't get detects long time, remove it. + // ----------------------------------- + for (int i = 0; i < static_cast(tracks.size()); i++) + { + if ((int)tracks[i]->skipped_frames > params.max_allowed_skipped_frames) + { + tracks.erase(tracks.begin() + i); + assignment.erase(assignment.begin() + i); + i--; + } + } + } + + // ----------------------------------- + // Search for unassigned detects and start new tracks for them. + // ----------------------------------- + for (size_t i = 0; i < detectedCentroid.size(); ++i) + { + if (find(assignment.begin(), assignment.end(), i) == assignment.end()) + { + tracks.push_back(std::unique_ptr(new CTrack(detectedCentroid[i], contours[i], params.dt, NextTrackID++))); + } + } + + // Update Kalman Filters state + + for (size_t i = 0; i < assignment.size(); i++) + { + // If track updated less than one time, than filter state is not correct. + + if (assignment[i] != -1) // If we have assigned detect, then update using its coordinates, + { + tracks[i]->skipped_frames = 0; + tracks[i]->Update(detectedCentroid[assignment[i]], contours[assignment[i]], true, params.max_trace_length); + } + else // if not continue using predictions + { + tracks[i]->Update(Point_t(), std::vector(), false, params.max_trace_length); + } + } +} + +void CTracker::updateParameters(const Params ¶meters) +{ + params = parameters; +} +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +CTracker::~CTracker(void) {} diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/HungarianAlg.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/HungarianAlg.cpp new file mode 100644 index 0000000..33ef4b9 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/HungarianAlg.cpp @@ -0,0 +1,732 @@ +// Based on https://github.com/Smorodov/Multitarget-tracker/tree/master/Tracker, GPLv3 +// Refer to README.md in this directory. + +#include +#include + +AssignmentProblemSolver::AssignmentProblemSolver() {} + +AssignmentProblemSolver::~AssignmentProblemSolver() {} + +track_t AssignmentProblemSolver::Solve(const distMatrix_t& distMatrixIn, size_t nOfRows, size_t nOfColumns, + std::vector& assignment, TMethod Method) +{ + assignment.resize(nOfRows, -1); + + track_t cost = 0; + + switch (Method) + { + case optimal: + assignmentoptimal(assignment, cost, distMatrixIn, nOfRows, nOfColumns); + break; + + case many_forbidden_assignments: + assignmentsuboptimal1(assignment, cost, distMatrixIn, nOfRows, nOfColumns); + break; + + case without_forbidden_assignments: + assignmentsuboptimal2(assignment, cost, distMatrixIn, nOfRows, nOfColumns); + break; + } + + return cost; +} +// -------------------------------------------------------------------------- +// Computes the optimal assignment (minimum overall costs) using Munkres algorithm. +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::assignmentoptimal(assignments_t& assignment, track_t& cost, + const distMatrix_t& distMatrixIn, size_t nOfRows, size_t nOfColumns) +{ + // Generate distance cv::Matrix + // and check cv::Matrix elements positiveness :) + + // Total elements number + size_t nOfElements = nOfRows * nOfColumns; + // Memory allocation + track_t* distMatrix = (track_t*)malloc(nOfElements * sizeof(track_t)); + // Pointer to last element + track_t* distMatrixEnd = distMatrix + nOfElements; + + for (size_t row = 0; row < nOfElements; row++) + { + track_t value = distMatrixIn[row]; + assert(value >= 0); + distMatrix[row] = value; + } + + // Memory allocation + bool* coveredColumns = (bool*)calloc(nOfColumns, sizeof(bool)); + bool* coveredRows = (bool*)calloc(nOfRows, sizeof(bool)); + bool* starMatrix = (bool*)calloc(nOfElements, sizeof(bool)); + bool* primeMatrix = (bool*)calloc(nOfElements, sizeof(bool)); + bool* newStarMatrix = (bool*)calloc(nOfElements, sizeof(bool)); /* used in step4 */ + + /* preliminary steps */ + if (nOfRows <= nOfColumns) + { + for (size_t row = 0; row < nOfRows; row++) + { + /* find the smallest element in the row */ + track_t* distMatrixTemp = distMatrix + row; + track_t minValue = *distMatrixTemp; + distMatrixTemp += nOfRows; + while (distMatrixTemp < distMatrixEnd) + { + track_t value = *distMatrixTemp; + if (value < minValue) + { + minValue = value; + } + distMatrixTemp += nOfRows; + } + /* subtract the smallest element from each element of the row */ + distMatrixTemp = distMatrix + row; + while (distMatrixTemp < distMatrixEnd) + { + *distMatrixTemp -= minValue; + distMatrixTemp += nOfRows; + } + } + /* Steps 1 and 2a */ + for (size_t row = 0; row < nOfRows; row++) + { + for (size_t col = 0; col < nOfColumns; col++) + { + if (distMatrix[row + nOfRows * col] == 0) + { + if (!coveredColumns[col]) + { + starMatrix[row + nOfRows * col] = true; + coveredColumns[col] = true; + break; + } + } + } + } + } + else /* if(nOfRows > nOfColumns) */ + { + for (size_t col = 0; col < nOfColumns; col++) + { + /* find the smallest element in the column */ + track_t* distMatrixTemp = distMatrix + nOfRows * col; + track_t* columnEnd = distMatrixTemp + nOfRows; + track_t minValue = *distMatrixTemp++; + while (distMatrixTemp < columnEnd) + { + track_t value = *distMatrixTemp++; + if (value < minValue) + { + minValue = value; + } + } + /* subtract the smallest element from each element of the column */ + distMatrixTemp = distMatrix + nOfRows * col; + while (distMatrixTemp < columnEnd) + { + *distMatrixTemp++ -= minValue; + } + } + /* Steps 1 and 2a */ + for (size_t col = 0; col < nOfColumns; col++) + { + for (size_t row = 0; row < nOfRows; row++) + { + if (distMatrix[row + nOfRows * col] == 0) + { + if (!coveredRows[row]) + { + starMatrix[row + nOfRows * col] = true; + coveredColumns[col] = true; + coveredRows[row] = true; + break; + } + } + } + } + + for (size_t row = 0; row < nOfRows; row++) + { + coveredRows[row] = false; + } + } + /* move to step 2b */ + step2b(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, + nOfColumns, (nOfRows <= nOfColumns) ? nOfRows : nOfColumns); + /* compute cost and remove invalid assignments */ + computeassignmentcost(assignment, cost, distMatrixIn, nOfRows); + /* free allocated memory */ + free(distMatrix); + free(coveredColumns); + free(coveredRows); + free(starMatrix); + free(primeMatrix); + free(newStarMatrix); + return; +} +// -------------------------------------------------------------------------- +// +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::buildassignmentvector(assignments_t& assignment, bool* starMatrix, size_t nOfRows, + size_t nOfColumns) +{ + for (size_t row = 0; row < nOfRows; row++) + { + for (size_t col = 0; col < nOfColumns; col++) + { + if (starMatrix[row + nOfRows * col]) + { + assignment[row] = static_cast(col); + break; + } + } + } +} +// -------------------------------------------------------------------------- +// +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::computeassignmentcost(const assignments_t& assignment, track_t& cost, + const distMatrix_t& distMatrixIn, size_t nOfRows) +{ + for (size_t row = 0; row < nOfRows; row++) + { + const int col = assignment[row]; + if (col >= 0) + { + cost += distMatrixIn[row + nOfRows * col]; + } + } +} + +// -------------------------------------------------------------------------- +// +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::step2a(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, + bool* newStarMatrix, bool* primeMatrix, bool* coveredColumns, bool* coveredRows, + size_t nOfRows, size_t nOfColumns, size_t minDim) +{ + bool* starMatrixTemp, *columnEnd; + /* cover every column containing a starred zero */ + for (size_t col = 0; col < nOfColumns; col++) + { + starMatrixTemp = starMatrix + nOfRows * col; + columnEnd = starMatrixTemp + nOfRows; + while (starMatrixTemp < columnEnd) + { + if (*starMatrixTemp++) + { + coveredColumns[col] = true; + break; + } + } + } + /* move to step 3 */ + step2b(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, + nOfColumns, minDim); +} + +// -------------------------------------------------------------------------- +// +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::step2b(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, + bool* newStarMatrix, bool* primeMatrix, bool* coveredColumns, bool* coveredRows, + size_t nOfRows, size_t nOfColumns, size_t minDim) +{ + /* count covered columns */ + size_t nOfCoveredColumns = 0; + for (size_t col = 0; col < nOfColumns; col++) + { + if (coveredColumns[col]) + { + nOfCoveredColumns++; + } + } + if (nOfCoveredColumns == minDim) + { + /* algorithm finished */ + buildassignmentvector(assignment, starMatrix, nOfRows, nOfColumns); + } + else + { + /* move to step 3 */ + step3(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, + nOfColumns, minDim); + } +} + +// -------------------------------------------------------------------------- +// +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::step3(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, + bool* newStarMatrix, bool* primeMatrix, bool* coveredColumns, bool* coveredRows, + size_t nOfRows, size_t nOfColumns, size_t minDim) +{ + bool zerosFound = true; + while (zerosFound) + { + zerosFound = false; + for (size_t col = 0; col < nOfColumns; col++) + { + if (!coveredColumns[col]) + { + for (size_t row = 0; row < nOfRows; row++) + { + if ((!coveredRows[row]) && (distMatrix[row + nOfRows * col] == 0)) + { + /* prime zero */ + primeMatrix[row + nOfRows * col] = true; + /* find starred zero in current row */ + size_t starCol = 0; + for (; starCol < nOfColumns; starCol++) + { + if (starMatrix[row + nOfRows * starCol]) + { + break; + } + } + if (starCol == nOfColumns) /* no starred zero found */ + { + /* move to step 4 */ + step4(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, + nOfRows, nOfColumns, minDim, row, col); + return; + } + else + { + coveredRows[row] = true; + coveredColumns[starCol] = false; + zerosFound = true; + break; + } + } + } + } + } + } + /* move to step 5 */ + step5(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, + nOfColumns, minDim); +} + +// -------------------------------------------------------------------------- +// +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::step4(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, + bool* newStarMatrix, bool* primeMatrix, bool* coveredColumns, bool* coveredRows, + size_t nOfRows, size_t nOfColumns, size_t minDim, size_t row, size_t col) +{ + const size_t nOfElements = nOfRows * nOfColumns; + /* generate temporary copy of starMatrix */ + for (size_t n = 0; n < nOfElements; n++) + { + newStarMatrix[n] = starMatrix[n]; + } + /* star current zero */ + newStarMatrix[row + nOfRows * col] = true; + /* find starred zero in current column */ + size_t starCol = col; + size_t starRow = 0; + for (; starRow < nOfRows; starRow++) + { + if (starMatrix[starRow + nOfRows * starCol]) + { + break; + } + } + while (starRow < nOfRows) + { + /* unstar the starred zero */ + newStarMatrix[starRow + nOfRows * starCol] = false; + /* find primed zero in current row */ + size_t primeRow = starRow; + size_t primeCol = 0; + for (; primeCol < nOfColumns; primeCol++) + { + if (primeMatrix[primeRow + nOfRows * primeCol]) + { + break; + } + } + /* star the primed zero */ + newStarMatrix[primeRow + nOfRows * primeCol] = true; + /* find starred zero in current column */ + starCol = primeCol; + for (starRow = 0; starRow < nOfRows; starRow++) + { + if (starMatrix[starRow + nOfRows * starCol]) + { + break; + } + } + } + /* use temporary copy as new starMatrix */ + /* delete all primes, uncover all rows */ + for (size_t n = 0; n < nOfElements; n++) + { + primeMatrix[n] = false; + starMatrix[n] = newStarMatrix[n]; + } + for (size_t n = 0; n < nOfRows; n++) + { + coveredRows[n] = false; + } + /* move to step 2a */ + step2a(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, + nOfColumns, minDim); +} + +// -------------------------------------------------------------------------- +// +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::step5(assignments_t& assignment, track_t* distMatrix, bool* starMatrix, + bool* newStarMatrix, bool* primeMatrix, bool* coveredColumns, bool* coveredRows, + size_t nOfRows, size_t nOfColumns, size_t minDim) +{ + /* find smallest uncovered element h */ + float h = std::numeric_limits::max(); + for (size_t row = 0; row < nOfRows; row++) + { + if (!coveredRows[row]) + { + for (size_t col = 0; col < nOfColumns; col++) + { + if (!coveredColumns[col]) + { + const float value = distMatrix[row + nOfRows * col]; + if (value < h) + { + h = value; + } + } + } + } + } + /* add h to each covered row */ + for (size_t row = 0; row < nOfRows; row++) + { + if (coveredRows[row]) + { + for (size_t col = 0; col < nOfColumns; col++) + { + distMatrix[row + nOfRows * col] += h; + } + } + } + /* subtract h from each uncovered column */ + for (size_t col = 0; col < nOfColumns; col++) + { + if (!coveredColumns[col]) + { + for (size_t row = 0; row < nOfRows; row++) + { + distMatrix[row + nOfRows * col] -= h; + } + } + } + /* move to step 3 */ + step3(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, + nOfColumns, minDim); +} + +// -------------------------------------------------------------------------- +// Computes a suboptimal solution. Good for cases without forbidden assignments. +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::assignmentsuboptimal2(assignments_t& assignment, track_t& cost, + const distMatrix_t& distMatrixIn, size_t nOfRows, size_t nOfColumns) +{ + /* make working copy of distance Matrix */ + const size_t nOfElements = nOfRows * nOfColumns; + float* distMatrix = (float*)malloc(nOfElements * sizeof(float)); + for (size_t n = 0; n < nOfElements; n++) + { + distMatrix[n] = distMatrixIn[n]; + } + + /* recursively search for the minimum element and do the assignment */ + for (;;) + { + /* find minimum distance observation-to-track pair */ + float minValue = std::numeric_limits::max(); + size_t tmpRow = 0; + size_t tmpCol = 0; + for (size_t row = 0; row < nOfRows; row++) + { + for (size_t col = 0; col < nOfColumns; col++) + { + const float value = distMatrix[row + nOfRows * col]; + if (value != std::numeric_limits::max() && (value < minValue)) + { + minValue = value; + tmpRow = row; + tmpCol = col; + } + } + } + + if (minValue != std::numeric_limits::max()) + { + assignment[tmpRow] = static_cast(tmpCol); + cost += minValue; + for (size_t n = 0; n < nOfRows; n++) + { + distMatrix[n + nOfRows * tmpCol] = std::numeric_limits::max(); + } + for (size_t n = 0; n < nOfColumns; n++) + { + distMatrix[tmpRow + nOfRows * n] = std::numeric_limits::max(); + } + } + else + { + break; + } + } + + free(distMatrix); +} +// -------------------------------------------------------------------------- +// Computes a suboptimal solution. Good for cases with many forbidden assignments. +// -------------------------------------------------------------------------- +void AssignmentProblemSolver::assignmentsuboptimal1(assignments_t& assignment, track_t& cost, + const distMatrix_t& distMatrixIn, size_t nOfRows, size_t nOfColumns) +{ + /* make working copy of distance Matrix */ + const size_t nOfElements = nOfRows * nOfColumns; + float* distMatrix = (float*)malloc(nOfElements * sizeof(float)); + for (size_t n = 0; n < nOfElements; n++) + { + distMatrix[n] = distMatrixIn[n]; + } + + /* allocate memory */ + int* nOfValidObservations = (int*)calloc(nOfRows, sizeof(int)); + int* nOfValidTracks = (int*)calloc(nOfColumns, sizeof(int)); + + /* compute number of validations */ + bool infiniteValueFound = false; + bool finiteValueFound = false; + for (size_t row = 0; row < nOfRows; row++) + { + for (size_t col = 0; col < nOfColumns; col++) + { + if (distMatrix[row + nOfRows * col] != std::numeric_limits::max()) + { + nOfValidTracks[col] += 1; + nOfValidObservations[row] += 1; + finiteValueFound = true; + } + else + { + infiniteValueFound = true; + } + } + } + + if (infiniteValueFound) + { + if (!finiteValueFound) + { + free(nOfValidTracks); + free(nOfValidObservations); + free(distMatrix); + return; + } + bool repeatSteps = true; + + while (repeatSteps) + { + repeatSteps = false; + + /* step 1: reject assignments of multiply validated tracks to singly validated observations */ + for (size_t col = 0; col < nOfColumns; col++) + { + bool singleValidationFound = false; + for (size_t row = 0; row < nOfRows; row++) + { + if (distMatrix[row + nOfRows * col] != std::numeric_limits::max() && + (nOfValidObservations[row] == 1)) + { + singleValidationFound = true; + break; + } + + if (singleValidationFound) + { + for (size_t row = 0; row < nOfRows; row++) + if ((nOfValidObservations[row] > 1) && + distMatrix[row + nOfRows * col] != std::numeric_limits::max()) + { + distMatrix[row + nOfRows * col] = std::numeric_limits::max(); + nOfValidObservations[row] -= 1; + nOfValidTracks[col] -= 1; + repeatSteps = true; + } + } + } + } + + /* step 2: reject assignments of multiply validated observations to singly validated tracks */ + if (nOfColumns > 1) + { + for (size_t row = 0; row < nOfRows; row++) + { + bool singleValidationFound = false; + for (size_t col = 0; col < nOfColumns; col++) + { + if (distMatrix[row + nOfRows * col] != std::numeric_limits::max() && (nOfValidTracks[col] == 1)) + { + singleValidationFound = true; + break; + } + } + + if (singleValidationFound) + { + for (size_t col = 0; col < nOfColumns; col++) + { + if ((nOfValidTracks[col] > 1) && distMatrix[row + nOfRows * col] != std::numeric_limits::max()) + { + distMatrix[row + nOfRows * col] = std::numeric_limits::max(); + nOfValidObservations[row] -= 1; + nOfValidTracks[col] -= 1; + repeatSteps = true; + } + } + } + } + } + } /* while(repeatSteps) */ + + /* for each multiply validated track that validates only with singly validated */ + /* observations, choose the observation with minimum distance */ + for (size_t row = 0; row < nOfRows; row++) + { + if (nOfValidObservations[row] > 1) + { + bool allSinglyValidated = true; + float minValue = std::numeric_limits::max(); + size_t tmpCol = 0; + for (size_t col = 0; col < nOfColumns; col++) + { + const float value = distMatrix[row + nOfRows * col]; + if (value != std::numeric_limits::max()) + { + if (nOfValidTracks[col] > 1) + { + allSinglyValidated = false; + break; + } + else if ((nOfValidTracks[col] == 1) && (value < minValue)) + { + tmpCol = col; + minValue = value; + } + } + } + + if (allSinglyValidated) + { + assignment[row] = static_cast(tmpCol); + cost += minValue; + for (size_t n = 0; n < nOfRows; n++) + { + distMatrix[n + nOfRows * tmpCol] = std::numeric_limits::max(); + } + for (size_t n = 0; n < nOfColumns; n++) + { + distMatrix[row + nOfRows * n] = std::numeric_limits::max(); + } + } + } + } + + // for each multiply validated observation that validates only with singly validated track, choose the track with + // minimum distance + for (size_t col = 0; col < nOfColumns; col++) + { + if (nOfValidTracks[col] > 1) + { + bool allSinglyValidated = true; + float minValue = std::numeric_limits::max(); + size_t tmpRow = 0; + for (size_t row = 0; row < nOfRows; row++) + { + const float value = distMatrix[row + nOfRows * col]; + if (value != std::numeric_limits::max()) + { + if (nOfValidObservations[row] > 1) + { + allSinglyValidated = false; + break; + } + else if ((nOfValidObservations[row] == 1) && (value < minValue)) + { + tmpRow = row; + minValue = value; + } + } + } + + if (allSinglyValidated) + { + assignment[tmpRow] = static_cast(col); + cost += minValue; + for (size_t n = 0; n < nOfRows; n++) + { + distMatrix[n + nOfRows * col] = std::numeric_limits::max(); + } + for (size_t n = 0; n < nOfColumns; n++) + { + distMatrix[tmpRow + nOfRows * n] = std::numeric_limits::max(); + } + } + } + } + } /* if(infiniteValueFound) */ + + /* now, recursively search for the minimum element and do the assignment */ + for (;;) + { + /* find minimum distance observation-to-track pair */ + float minValue = std::numeric_limits::max(); + size_t tmpRow = 0; + size_t tmpCol = 0; + for (size_t row = 0; row < nOfRows; row++) + { + for (size_t col = 0; col < nOfColumns; col++) + { + const float value = distMatrix[row + nOfRows * col]; + if (value != std::numeric_limits::max() && (value < minValue)) + { + minValue = value; + tmpRow = row; + tmpCol = col; + } + } + } + + if (minValue != std::numeric_limits::max()) + { + assignment[tmpRow] = static_cast(tmpCol); + cost += minValue; + for (size_t n = 0; n < nOfRows; n++) + { + distMatrix[n + nOfRows * tmpCol] = std::numeric_limits::max(); + } + for (size_t n = 0; n < nOfColumns; n++) + { + distMatrix[tmpRow + nOfRows * n] = std::numeric_limits::max(); + } + } + else + { + break; + } + } + + /* free allocated memory */ + free(nOfValidObservations); + free(nOfValidTracks); + free(distMatrix); +} diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/Kalman.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/Kalman.cpp new file mode 100644 index 0000000..7bf8e71 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/Kalman.cpp @@ -0,0 +1,99 @@ +// Based on https://github.com/Smorodov/Multitarget-tracker/tree/master/Tracker, GPLv3 +// Refer to README.md in this directory. + +#include +#include "opencv2/opencv.hpp" +#include +#include + +//--------------------------------------------------------------------------- +//--------------------------------------------------------------------------- +TKalmanFilter::TKalmanFilter(Point_t pt, track_t deltatime) +{ + // time increment (lower values makes target more "massive") + dt = deltatime; + + // 6 state variables [x y z xdot ydot zdot], 3 measurements [x y z] + kalman = new cv::KalmanFilter(6, 3, 0); + // Transition cv::Matrix + kalman->transitionMatrix = (cv::Mat_(6, 6) << + 1, 0, 0, dt, 0, 0, + 0, 1, 0, 0, dt, 0, + 0, 0, 1, 0, 0, dt, + 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 1); + // init... + LastPosition = pt; + kalman->statePre.at(0) = pt.x; + kalman->statePre.at(1) = pt.y; + kalman->statePre.at(2) = pt.z; + + kalman->statePre.at(3) = 0; + kalman->statePre.at(4) = 0; + kalman->statePre.at(5) = 0; + + kalman->statePost.at(0) = pt.x; + kalman->statePost.at(1) = pt.y; + kalman->statePost.at(2) = pt.z; + + // Nur x, y und z Koordinaten messbar! + kalman->measurementMatrix = (cv::Mat_(3, 6) << + 1, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0); + + float sigma = 0.5; // Assume standard deviation for acceleration, todo: dynamic reconfigure + float c1 = pow(dt,4.0)/4.0; + float c2 = pow(dt,2.0); + float c3 = pow(dt,3.0)/2.0; + kalman->processNoiseCov = sigma*sigma*(cv::Mat_(6, 6) << + c1, 0, 0, c3, 0, 0, + 0, c1, 0, 0, c3, 0, + 0, 0, c1, 0, 0, c3, + c3, 0, 0, c2, 0, 0, + 0, c3, 0, 0, c2, 0, + 0, 0, c3, 0, 0, c2); + + cv::setIdentity(kalman->measurementNoiseCov, cv::Scalar::all(5e-2)); + + cv::setIdentity(kalman->errorCovPost, cv::Scalar::all(1000000)); +} +//--------------------------------------------------------------------------- +TKalmanFilter::~TKalmanFilter() { delete kalman; } + +//--------------------------------------------------------------------------- +void TKalmanFilter::Prediction() +{ + cv::Mat prediction = kalman->predict(); + LastPosition = Point_t(prediction.at(0), prediction.at(1), prediction.at(2)); + LastVelocity = Point_t(prediction.at(3), prediction.at(4), prediction.at(5)); +} + +//--------------------------------------------------------------------------- +Point_t TKalmanFilter::Update(Point_t p, bool DataCorrect) +{ + cv::Mat measurement(3, 1, Mat_t(1)); + if (!DataCorrect) + { + measurement.at(0) = LastPosition.x; // update using prediction + measurement.at(1) = LastPosition.y; + measurement.at(2) = LastPosition.z; + } + else + { + measurement.at(0) = p.x; // update using measurements + measurement.at(1) = p.y; + measurement.at(2) = p.z; + } + // Correction + cv::Mat estimated = kalman->correct(measurement); + LastPosition.x = estimated.at(0); // update using measurements + LastPosition.y = estimated.at(1); + LastPosition.z = estimated.at(2); + LastVelocity.x = estimated.at(3); + LastVelocity.y = estimated.at(4); + LastVelocity.z = estimated.at(5); + return LastPosition; +} +//--------------------------------------------------------------------------- diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/README.md b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/README.md new file mode 100644 index 0000000..3fb4614 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_dynamic_obstacles/multitarget_tracker/README.md @@ -0,0 +1,13 @@ +Multitarget Tracker +=================== + +This code is mostly copied from the (MultitargetTracker)[https://github.com/Smorodov/Multitarget-tracker]. +It is utilized for the *CostmapToDynamicObstacles* plugin. + +The *MultitargetTracker* is licensed under (GNU GPLv3)[https://www.gnu.org/licenses/gpl-3.0.txt]. +The package itself depends on other third party packages with different licenses (refer to the package repository). + +TODO: Include the whole package as external CMake project. + + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_lines_convex_hull.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_lines_convex_hull.cpp new file mode 100644 index 0000000..4177cd2 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_lines_convex_hull.cpp @@ -0,0 +1,303 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann, Otniel Rinaldo + *********************************************************************/ + +#include +#include +#include + +PLUGINLIB_EXPORT_CLASS(costmap_converter::CostmapToLinesDBSMCCH, costmap_converter::BaseCostmapToPolygons) + +namespace costmap_converter +{ + +CostmapToLinesDBSMCCH::CostmapToLinesDBSMCCH() : CostmapToPolygonsDBSMCCH() +{ +// dynamic_recfg_ = NULL; +} + +CostmapToLinesDBSMCCH::~CostmapToLinesDBSMCCH() +{ +// if (dynamic_recfg_ != NULL) +// delete dynamic_recfg_; +} + +void CostmapToLinesDBSMCCH::initialize(rclcpp::Node::SharedPtr nh) +{ + BaseCostmapToPolygons::initialize(nh); + + // DB SCAN + parameter_.max_distance_ = 0.4; + nh->get_parameter_or("cluster_max_distance", parameter_.max_distance_, parameter_.max_distance_); + + parameter_.min_pts_ = 2; + nh->get_parameter_or("cluster_min_pts", parameter_.min_pts_, parameter_.min_pts_); + + parameter_.max_pts_ = 30; + nh->get_parameter_or("cluster_max_pts", parameter_.max_pts_, parameter_.max_pts_); + + // convex hull + parameter_.min_keypoint_separation_ = 0.1; + nh->get_parameter_or("convex_hull_min_pt_separation", parameter_.min_keypoint_separation_, parameter_.min_keypoint_separation_); + + parameter_buffered_ = parameter_; + + // Line extraction + support_pts_max_dist_ = 0.3; + nh->get_parameter_or("support_pts_max_dist", support_pts_max_dist_, support_pts_max_dist_); + + support_pts_max_dist_inbetween_ = 1.0; + nh->get_parameter_or("support_pts_max_dist_inbetween", support_pts_max_dist_inbetween_, support_pts_max_dist_inbetween_); + + min_support_pts_ = 2; + nh->get_parameter_or("min_support_pts", min_support_pts_, min_support_pts_); + + // setup dynamic reconfigure +// dynamic_recfg_ = new dynamic_reconfigure::Server(nh); +// dynamic_reconfigure::Server::CallbackType cb = boost::bind(&CostmapToLinesDBSMCCH::reconfigureCB, this, _1, _2); +// dynamic_recfg_->setCallback(cb); + + // deprecated + rclcpp::Parameter dummy; + if (nh->get_parameter("support_pts_min_dist_", dummy) || nh->get_parameter("support_pts_min_dist", dummy)) + RCLCPP_WARN(nh->get_logger(), "CostmapToLinesDBSMCCH: Parameter 'support_pts_min_dist' is deprecated and not included anymore."); + if (nh->get_parameter("min_support_pts_", dummy)) + RCLCPP_WARN(nh->get_logger(), "CostmapToLinesDBSMCCH: Parameter 'min_support_pts_' is not found. Remove the underscore."); +} + +void CostmapToLinesDBSMCCH::compute() +{ + std::vector< std::vector > clusters; + dbScan(clusters); + + // Create new polygon container + PolygonContainerPtr polygons(new std::vector()); + + + // add convex hulls to polygon container + for (size_t i = 1; i push_back( geometry_msgs::msg::Polygon() ); + convertPointToPolygon(clusters.front()[i], polygons->back()); + } + } + + // replace shared polygon container + updatePolygonContainer(polygons); +} + +typedef CostmapToLinesDBSMCCH CL; +bool sort_keypoint_x(const std::size_t& i, const std::size_t& j, const std::vector& cluster) +{ return (cluster[i].x& cluster) +{ return (cluster[i].y& cluster, const geometry_msgs::msg::Polygon& polygon, + std::back_insert_iterator< std::vector > lines) +{ + if (polygon.points.empty()) + return; + + if (polygon.points.size() < 2) + { + lines = polygon; // our polygon is just a point, push back onto the output sequence + return; + } + int n = (int)polygon.points.size(); + + for (int i=1; ix - vertex1->x; + double dy = vertex2->y - vertex1->y; +// double norm = std::sqrt(dx*dx + dy*dy); +// dx /= norm; +// dy /= norm; +// for (int j=i; j<(int)polygon.points.size() - 2; ++j) +// { +// const geometry_msgs::msg::Point32* vertex_jp2 = &polygon.points[j+2]; +// double dx2 = vertex_jp2->x - vertex2->x; +// double dy2 = vertex_jp2->y - vertex2->y; +// double norm2 = std::sqrt(dx2*dx2 + dy2*dy2); +// dx2 /= norm2; +// dy2 /= norm2; +// if (std::abs(dx*dx2 + dy*dy2) < 0.05) //~3 degree +// { +// vertex2 = &polygon.points[j+2]; +// i = j; // DO NOT USE "i" afterwards +// } +// else break; +// } + + //Search support points + std::vector support_points; // store indices of cluster + + for (std::size_t k = 0; k < cluster.size(); ++k) + { + bool is_inbetween = false; + double dist_line_to_point = computeDistanceToLineSegment( cluster[k], *vertex1, *vertex2, &is_inbetween ); + + if(is_inbetween && dist_line_to_point <= support_pts_max_dist_) + { + support_points.push_back(k); + continue; + } + } + + // now check if the inlier models a line by checking the minimum distance between all support points (avoid lines over gaps) + // and by checking if the minium number of points is reached // deactivate by setting support_pts_max_dist_inbetween_==0 + bool is_line=true; + if (support_pts_max_dist_inbetween_!=0) + { + if ((int)support_points.size() >= min_support_pts_ + 2) // +2 since start and goal are included + { + // sort points + if (std::abs(dx) >= std::abs(dy)) + std::sort(support_points.begin(), support_points.end(), std::bind(sort_keypoint_x, std::placeholders::_1, std::placeholders::_2, std::cref(cluster))); + else + std::sort(support_points.begin(), support_points.end(), std::bind(sort_keypoint_y, std::placeholders::_1, std::placeholders::_2, std::cref(cluster))); + + // now calculate distances + for (int k = 1; k < int(support_points.size()); ++k) + { + double dist_x = cluster[support_points[k]].x - cluster[support_points[k-1]].x; + double dist_y = cluster[support_points[k]].y - cluster[support_points[k-1]].y; + double dist = std::sqrt( dist_x*dist_x + dist_y*dist_y); + if (dist > support_pts_max_dist_inbetween_) + { + is_line = false; + break; + } + } + + } + else + is_line = false; + } + + if (is_line) + { + // line found: + geometry_msgs::msg::Polygon line; + line.points.push_back(*vertex1); + line.points.push_back(*vertex2); + lines = line; // back insertion + + // remove inlier from list + // iterate in reverse order, otherwise indices are not valid after erasing elements + std::vector::reverse_iterator support_it = support_points.rbegin(); + for (; support_it != support_points.rend(); ++support_it) + { + cluster.erase(cluster.begin() + *support_it); + } + } + else + { + // remove goal, since it will be added in the subsequent iteration + //support_points.pop_back(); + // old: +// // add vertex 1 as single point +// geometry_msgs::msg::Polygon point; +// point.points.push_back(*vertex1); +// lines = point; // back insertion + + // add complete inlier set as points +// for (int k = 0; k < int(support_points.size()); ++k) +// { +// geometry_msgs::msg::Polygon polygon; +// convertPointToPolygon(cluster[support_points[k]], polygon); +// lines = polygon; // back insertion +// } + + // remove inlier from list and add them as point obstacles + // iterate in reverse order, otherwise indices are not valid after erasing elements + std::vector::reverse_iterator support_it = support_points.rbegin(); + for (; support_it != support_points.rend(); ++support_it) + { + geometry_msgs::msg::Polygon polygon; + convertPointToPolygon(cluster[*support_it], polygon); + lines = polygon; // back insertion + + cluster.erase(cluster.begin() + *support_it); + } + } + } + + // add all remaining cluster points, that do not belong to a line + for (int i=0; i<(int)cluster.size();++i) + { + geometry_msgs::msg::Polygon polygon; + convertPointToPolygon(cluster[i], polygon); + lines = polygon; // back insertion + } + +} + +//void CostmapToLinesDBSMCCH::reconfigureCB(CostmapToLinesDBSMCCHConfig& config, uint32_t level) +//{ +// boost::mutex::scoped_lock lock(parameter_mutex_); +// parameter_buffered_.max_distance_ = config.cluster_max_distance; +// parameter_buffered_.min_pts_ = config.cluster_min_pts; +// parameter_buffered_.max_pts_ = config.cluster_max_pts; +// parameter_buffered_.min_keypoint_separation_ = config.cluster_min_pts; +// support_pts_max_dist_ = config.support_pts_max_dist; +// support_pts_max_dist_inbetween_ = config.support_pts_max_dist_inbetween; +// min_support_pts_ = config.min_support_pts; +//} + + + +}//end namespace costmap_converter + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_lines_ransac.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_lines_ransac.cpp new file mode 100644 index 0000000..38e3d06 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_lines_ransac.cpp @@ -0,0 +1,361 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include +#include + +PLUGINLIB_EXPORT_CLASS(costmap_converter::CostmapToLinesDBSRANSAC, costmap_converter::BaseCostmapToPolygons) + +namespace costmap_converter +{ + +CostmapToLinesDBSRANSAC::CostmapToLinesDBSRANSAC() : CostmapToPolygonsDBSMCCH() +{ +// dynamic_recfg_ = NULL; +} + +CostmapToLinesDBSRANSAC::~CostmapToLinesDBSRANSAC() +{ +// if (dynamic_recfg_ != NULL) +// delete dynamic_recfg_; +} + +void CostmapToLinesDBSRANSAC::initialize(rclcpp::Node::SharedPtr nh) +{ + BaseCostmapToPolygons::initialize(nh); + + // DB SCAN + parameter_.max_distance_ = 0.4; + nh->get_parameter_or("cluster_max_distance", parameter_.max_distance_, parameter_.max_distance_); + + parameter_.min_pts_ = 2; + nh->get_parameter_or("cluster_min_pts", parameter_.min_pts_, parameter_.min_pts_); + + parameter_.max_pts_ = 30; + nh->get_parameter_or("cluster_max_pts", parameter_.max_pts_, parameter_.max_pts_); + + // convex hull (only necessary if outlier filtering is enabled) + parameter_.min_keypoint_separation_ = 0.1; + nh->get_parameter_or("convex_hull_min_pt_separation", parameter_.min_keypoint_separation_, parameter_.min_keypoint_separation_); + + parameter_buffered_ = parameter_; + + // ransac + ransac_inlier_distance_ = 0.2; + nh->get_parameter_or("ransac_inlier_distance", ransac_inlier_distance_, ransac_inlier_distance_); + + ransac_min_inliers_ = 10; + nh->get_parameter_or("ransac_min_inliers", ransac_min_inliers_, ransac_min_inliers_); + + ransac_no_iterations_ = 2000; + nh->get_parameter_or("ransac_no_iterations", ransac_no_iterations_, ransac_no_iterations_); + + ransac_remainig_outliers_ = 3; + nh->get_parameter_or("ransac_remainig_outliers", ransac_remainig_outliers_, ransac_remainig_outliers_); + + ransac_convert_outlier_pts_ = true; + nh->get_parameter_or("ransac_convert_outlier_pts", ransac_convert_outlier_pts_, ransac_convert_outlier_pts_); + + ransac_filter_remaining_outlier_pts_ = false; + nh->get_parameter_or("ransac_filter_remaining_outlier_pts", ransac_filter_remaining_outlier_pts_, ransac_filter_remaining_outlier_pts_); + + // setup dynamic reconfigure +// dynamic_recfg_ = new dynamic_reconfigure::Server(nh); +// dynamic_reconfigure::Server::CallbackType cb = boost::bind(&CostmapToLinesDBSRANSAC::reconfigureCB, this, _1, _2); +// dynamic_recfg_->setCallback(cb); +} + +void CostmapToLinesDBSRANSAC::compute() +{ + std::vector< std::vector > clusters; + dbScan(clusters); + + // Create new polygon container + PolygonContainerPtr polygons(new std::vector()); + + + // fit lines using ransac for each cluster + for (size_t i = 1; i ransac_remainig_outliers_) + { +// std::vector inliers; + std::vector outliers; + std::pair model; + if (!lineRansac(clusters[i], ransac_inlier_distance_, ransac_no_iterations_, ransac_min_inliers_, model, NULL, &outliers ) ) + break; + + // add to polygon container + geometry_msgs::msg::Polygon line; + line.points.resize(2); + model.first.toPointMsg(line.points.front()); + model.second.toPointMsg(line.points.back()); + polygons->push_back(line); + + clusters[i] = outliers; + } + // create point polygons for remaining outliers + if (ransac_convert_outlier_pts_) + { + if (ransac_filter_remaining_outlier_pts_) + { + // take edge points of a convex polygon + // these points define a cluster and since all lines are extracted, + // we remove points from the interior... + geometry_msgs::msg::Polygon polygon; + convexHull2(clusters[i], polygon); + for (int j=0; j < (int)polygon.points.size(); ++j) + { + polygons->push_back(geometry_msgs::msg::Polygon()); + convertPointToPolygon(polygon.points[j], polygons->back()); + } + } + else + { + for (int j = 0; j < (int)clusters[i].size(); ++j) + { + polygons->push_back(geometry_msgs::msg::Polygon()); + convertPointToPolygon(clusters[i][j], polygons->back()); + } + } + + } + + + } + + // add our non-cluster points to the polygon container (as single points) + if (!clusters.empty()) + { + for (size_t i=0; i < clusters.front().size(); ++i) + { + polygons->push_back( geometry_msgs::msg::Polygon() ); + convertPointToPolygon(clusters.front()[i], polygons->back()); + } + } + + // replace shared polygon container + updatePolygonContainer(polygons); +} + + +bool CostmapToLinesDBSRANSAC::lineRansac(const std::vector& data, double inlier_distance, int no_iterations, + int min_inliers, std::pair& best_model, + std::vector* inliers, std::vector* outliers) +{ + if ((int)data.size() < 2 || (int)data.size() < min_inliers) + { + return false; + } + + std::uniform_int_distribution<> distribution(0, data.size()-1); + + std::pair best_model_idx; + int best_no_inliers = -1; + + + for (int i=0; i < no_iterations; ++i) + { + // choose random points to define a line candidate + int start_idx = distribution(rnd_generator_); + int end_idx = start_idx; + while (end_idx == start_idx) + end_idx = distribution(rnd_generator_); + + + // compute inliers + int no_inliers = 0; + for (int j=0; j<(int)data.size(); ++j) + { + if ( isInlier(data[j], data[start_idx], data[end_idx], inlier_distance) ) + ++no_inliers; + } + + if (no_inliers > best_no_inliers) + { + best_no_inliers = no_inliers; + best_model_idx.first = start_idx; + best_model_idx.second = end_idx; + } + } + + best_model.first = data[best_model_idx.first]; + best_model.second = data[best_model_idx.second]; + + if (best_no_inliers < min_inliers) + return false; + + // Now repeat the calculation for the best model in order to obtain the inliers and outliers set + // This might be faster if no_iterations is large, but TEST + if (inliers || outliers) + { + if (inliers) + inliers->clear(); + if (outliers) + outliers->clear(); + +// int no_inliers = 0; + for (int i=0; i<(int)data.size(); ++i) + { + if ( isInlier( data[i], best_model.first, best_model.second, inlier_distance ) ) + { + if (inliers) + inliers->push_back( data[i] ); + } + else + { + if (outliers) + outliers->push_back( data[i] ); + } + } + } + + return true; +} + +bool CostmapToLinesDBSRANSAC::linearRegression(const std::vector& data, double& slope, double& intercept, + double* mean_x_out, double* mean_y_out) +{ + if (data.size() < 2) + { + RCLCPP_ERROR(getLogger(), "CostmapToLinesDBSRANSAC: at least 2 data points required for linear regression"); + return false; + } + + double mean_x = 0; + double mean_y = 0; + for (int i=0; i<(int)data.size(); ++i) + { + mean_x += data[i].x; + mean_y += data[i].y; + } + mean_x /= double(data.size()); + mean_y /= double(data.size()); + + if (mean_x_out) + *mean_x_out = mean_x; + + if (mean_y_out) + *mean_y_out = mean_y; + + double numerator = 0.0; + double denominator = 0.0; + + for(int i=0; i<(int)data.size(); ++i) + { + double dx = data[i].x - mean_x; + numerator += dx * (data[i].y - mean_y); + denominator += dx*dx; + } + + if (denominator == 0) + { + RCLCPP_ERROR(getLogger(), "CostmapToLinesDBSRANSAC: linear regression failed, denominator 0"); + return false; + } + else + slope = numerator / denominator; + + intercept = mean_y - slope * mean_x; + return true; +} + + +//void CostmapToLinesDBSRANSAC::reconfigureCB(CostmapToLinesDBSRANSACConfig& config, uint32_t level) +//{ +// boost::mutex::scoped_lock lock(parameter_mutex_); +// parameter_buffered_.max_distance_ = config.cluster_max_distance; +// parameter_buffered_.min_pts_ = config.cluster_min_pts; +// parameter_buffered_.max_pts_ = config.cluster_max_pts; +// parameter_buffered_.min_keypoint_separation_ = config.cluster_min_pts; +// ransac_inlier_distance_ = config.ransac_inlier_distance; +// ransac_min_inliers_ = config.ransac_min_inliers; +// ransac_no_iterations_ = config.ransac_no_iterations; +// ransac_remainig_outliers_ = config.ransac_remainig_outliers; +// ransac_convert_outlier_pts_ = config.ransac_convert_outlier_pts; +// ransac_filter_remaining_outlier_pts_ = config.ransac_filter_remaining_outlier_pts; +//} + + +/* +void CostmapToLinesDBSRANSAC::adjustLineLength(const std::vector& data, const KeyPoint& linept1, const KeyPoint& linept2, + KeyPoint& line_start, KeyPoint& line_end) +{ + line_start = linept1; + line_end = linept2; + + // infinite line is defined by linept1 and linept2 + double dir_x = line_end.x - line_start.x; + double dir_y = line_end.y - line_start.y; + double norm = std::sqrt(dir_x*dir_x + dir_y*dir_y); + dir_x /= norm; + dir_y /= norm; + + // project data onto the line and check if the distance is increased in both directions + for (int i=0; i < (int) data.size(); ++i) + { + double dx = data[i].x - line_start.x; + double dy = data[i].y - line_start.y; + // check scalar product at start + double extension = dx*dir_x + dy*dir_y; + if (extension<0) + { + line_start.x -= dir_x*extension; + line_start.y -= dir_y*extension; + } + else + { + dx = data[i].x - line_end.x; + dy = data[i].y - line_end.y; + // check scalar product at end + double extension = dx*dir_x + dy*dir_y; + if (extension>0) + { + line_end.x += dir_x*extension; + line_end.y += dir_y*extension; + } + } + } + +}*/ + + +}//end namespace costmap_converter + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_polygons.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_polygons.cpp new file mode 100644 index 0000000..24aaafc --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_polygons.cpp @@ -0,0 +1,514 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann, Otniel Rinaldo + *********************************************************************/ + +#include +#include +#include + +PLUGINLIB_EXPORT_CLASS(costmap_converter::CostmapToPolygonsDBSMCCH, costmap_converter::BaseCostmapToPolygons) + +namespace +{ + +/** + * @brief Douglas-Peucker Algorithm for fitting lines into ordered set of points + * + * Douglas-Peucker Algorithm, see https://en.wikipedia.org/wiki/Ramer%E2%80%93Douglas%E2%80%93Peucker_algorithm + * + * @param begin iterator pointing to the begin of the range of points + * @param end interator pointing to the end of the range of points + * @param epsilon distance criteria for removing points if it is closer to the line segment than this + * @param result the simplified polygon + */ +std::vector douglasPeucker(std::vector::iterator begin, + std::vector::iterator end, double epsilon) +{ + if (std::distance(begin, end) <= 2) + { + return std::vector(begin, end); + } + + // Find the point with the maximum distance from the line [begin, end) + double dmax = std::numeric_limits::lowest(); + std::vector::iterator max_dist_it; + std::vector::iterator last = std::prev(end); + for (auto it = std::next(begin); it != last; ++it) + { + double d = costmap_converter::computeSquaredDistanceToLineSegment(*it, *begin, *last); + if (d > dmax) + { + max_dist_it = it; + dmax = d; + } + } + + if (dmax < epsilon * epsilon) + { // termination criterion reached, line is good enough + std::vector result; + result.push_back(*begin); + result.push_back(*last); + return result; + } + + // Recursive calls for the two splitted parts + auto firstLineSimplified = douglasPeucker(begin, std::next(max_dist_it), epsilon); + auto secondLineSimplified = douglasPeucker(max_dist_it, end, epsilon); + + // Combine the two lines into one line and return the merged line. + // Note that we have to skip the first point of the second line, as it is duplicated above. + firstLineSimplified.insert(firstLineSimplified.end(), + std::make_move_iterator(std::next(secondLineSimplified.begin())), + std::make_move_iterator(secondLineSimplified.end())); + return firstLineSimplified; +} + +} // end namespace + +namespace costmap_converter +{ + +CostmapToPolygonsDBSMCCH::CostmapToPolygonsDBSMCCH() : BaseCostmapToPolygons() +{ + costmap_ = NULL; + // dynamic_recfg_ = NULL; + neighbor_size_x_ = neighbor_size_y_ = -1; + offset_x_ = offset_y_ = 0.; +} + +CostmapToPolygonsDBSMCCH::~CostmapToPolygonsDBSMCCH() +{ +// if (dynamic_recfg_ != NULL) +// delete dynamic_recfg_; +} + +void CostmapToPolygonsDBSMCCH::initialize(rclcpp::Node::SharedPtr nh) +{ + BaseCostmapToPolygons::initialize(nh); + + costmap_ = NULL; + + parameter_.max_distance_ = 0.4; + nh->get_parameter_or("cluster_max_distance", parameter_.max_distance_, parameter_.max_distance_); + + parameter_.min_pts_ = 2; + nh->get_parameter_or("cluster_min_pts", parameter_.min_pts_, parameter_.min_pts_); + + parameter_.max_pts_ = 30; + nh->get_parameter_or("cluster_max_pts", parameter_.max_pts_, parameter_.max_pts_); + + parameter_.min_keypoint_separation_ = 0.1; + nh->get_parameter_or("convex_hull_min_pt_separation", parameter_.min_keypoint_separation_, parameter_.min_keypoint_separation_); + + parameter_buffered_ = parameter_; + + // setup dynamic reconfigure +// dynamic_recfg_ = new dynamic_reconfigure::Server(nh); +// dynamic_reconfigure::Server::CallbackType cb = boost::bind(&CostmapToPolygonsDBSMCCH::reconfigureCB, this, _1, _2); +// dynamic_recfg_->setCallback(cb); +} + + +void CostmapToPolygonsDBSMCCH::compute() +{ + std::vector< std::vector > clusters; + dbScan(clusters); + + // Create new polygon container + PolygonContainerPtr polygons(new std::vector()); + + + // add convex hulls to polygon container + for (std::size_t i = 1; i push_back( geometry_msgs::msg::Polygon() ); + convexHull2(clusters[i], polygons->back() ); + } + + // add our non-cluster points to the polygon container (as single points) + if (!clusters.empty()) + { + for (std::size_t i=0; i < clusters.front().size(); ++i) + { + polygons->push_back( geometry_msgs::msg::Polygon() ); + convertPointToPolygon(clusters.front()[i], polygons->back()); + } + } + + // replace shared polygon container + updatePolygonContainer(polygons); +} + +void CostmapToPolygonsDBSMCCH::setCostmap2D(nav2_costmap_2d::Costmap2D *costmap) +{ + if (!costmap) + return; + + costmap_ = costmap; + + updateCostmap2D(); +} + +void CostmapToPolygonsDBSMCCH::updateCostmap2D() +{ + occupied_cells_.clear(); + + if (!costmap_->getMutex()) + { + RCLCPP_ERROR(getLogger(), "Cannot update costmap since the mutex pointer is null"); + return; + } + + // TODO: currently dynamic reconigure is not supported in ros2 + { // get a copy of our parameters from dynamic reconfigure + std::lock_guard lock(parameter_mutex_); + parameter_ = parameter_buffered_; + } + + std::unique_lock lock(*costmap_->getMutex()); + + // allocate neighbor lookup + int cells_x = int(costmap_->getSizeInMetersX() / parameter_.max_distance_) + 1; + int cells_y = int(costmap_->getSizeInMetersY() / parameter_.max_distance_) + 1; + + if (cells_x != neighbor_size_x_ || cells_y != neighbor_size_y_) { + neighbor_size_x_ = cells_x; + neighbor_size_y_ = cells_y; + neighbor_lookup_.resize(neighbor_size_x_ * neighbor_size_y_); + } + offset_x_ = costmap_->getOriginX(); + offset_y_ = costmap_->getOriginY(); + for (auto& n : neighbor_lookup_) + n.clear(); + + auto size_x = costmap_->getSizeInCellsX(); + auto size_y = costmap_->getSizeInCellsY(); + + // get indices of obstacle cells + for(std::size_t i = 0; i < size_x; i++) + { + for(std::size_t j = 0; j < size_y; j++) + { + int value = costmap_->getCost(i,j); + if(value >= nav2_costmap_2d::LETHAL_OBSTACLE) + { + double x, y; + costmap_->mapToWorld((unsigned int)i, (unsigned int)j, x, y); + addPoint(x, y); + } + } + } +} + + +void CostmapToPolygonsDBSMCCH::dbScan(std::vector< std::vector >& clusters) +{ + std::vector visited(occupied_cells_.size(), false); + + clusters.clear(); + + //DB Scan Algorithm + int cluster_id = 0; // current cluster_id + clusters.push_back(std::vector()); + for(int i = 0; i< (int)occupied_cells_.size(); i++) + { + if(!visited[i]) //keypoint has not been visited before + { + visited[i] = true; // mark as visited + std::vector neighbors; + regionQuery(i, neighbors); //Find neighbors around the keypoint + if((int)neighbors.size() < parameter_.min_pts_) //If not enough neighbors are found, mark as noise + { + clusters[0].push_back(occupied_cells_[i]); + } + else + { + ++cluster_id; // increment current cluster_id + clusters.push_back(std::vector()); + + // Expand the cluster + clusters[cluster_id].push_back(occupied_cells_[i]); + for(int j = 0; j<(int)neighbors.size(); j++) + { + if ((int)clusters[cluster_id].size() == parameter_.max_pts_) + break; + + if(!visited[neighbors[j]]) //keypoint has not been visited before + { + visited[neighbors[j]] = true; // mark as visited + std::vector further_neighbors; + regionQuery(neighbors[j], further_neighbors); //Find more neighbors around the new keypoint +// if(further_neighbors.size() < min_pts_) +// { +// clusters[0].push_back(occupied_cells[neighbors[j]]); +// } +// else + if ((int)further_neighbors.size() >= parameter_.min_pts_) + { + // neighbors found + neighbors.insert(neighbors.end(), further_neighbors.begin(), further_neighbors.end()); //Add these newfound P' neighbour to P neighbour vector "nb_indeces" + clusters[cluster_id].push_back(occupied_cells_[neighbors[j]]); + } + } + } + } + } + } +} + +void CostmapToPolygonsDBSMCCH::regionQuery(int curr_index, std::vector& neighbors) +{ + neighbors.clear(); + + double dist_sqr_threshold = parameter_.max_distance_ * parameter_.max_distance_; + const KeyPoint& kp = occupied_cells_[curr_index]; + int cx, cy; + pointToNeighborCells(kp, cx,cy); + + // loop over the neighboring cells for looking up the points + const int offsets[9][2] = {{-1, -1}, {0, -1}, {1, -1}, + {-1, 0}, {0, 0}, {1, 0}, + {-1, 1}, {0, 1}, {1, 1}}; + for (int i = 0; i < 9; ++i) + { + int idx = neighborCellsToIndex(cx + offsets[i][0], cy + offsets[i][1]); + if (idx < 0 || idx >= int(neighbor_lookup_.size())) + continue; + const std::vector& pointIndicesToCheck = neighbor_lookup_[idx]; + for (int point_idx : pointIndicesToCheck) { + if (point_idx == curr_index) // point is not a neighbor to itself + continue; + const KeyPoint& other = occupied_cells_[point_idx]; + double dx = other.x - kp.x; + double dy = other.y - kp.y; + double dist_sqr = dx*dx + dy*dy; + if (dist_sqr <= dist_sqr_threshold) + neighbors.push_back(point_idx); + } + } +} + +bool isXCoordinateSmaller(const CostmapToPolygonsDBSMCCH::KeyPoint& p1, const CostmapToPolygonsDBSMCCH::KeyPoint& p2) +{ + return p1.x < p2.x || (p1.x == p2.x && p1.y < p2.y); +} + +void CostmapToPolygonsDBSMCCH::convexHull(std::vector& cluster, geometry_msgs::msg::Polygon& polygon) +{ + //Monotone Chain ConvexHull Algorithm source from http://www.algorithmist.com/index.php/Monotone_Chain_Convex_Hull + + int k = 0; + int n = cluster.size(); + + // sort points according to x coordinate (TODO. is it already sorted due to the map representation?) + std::sort(cluster.begin(), cluster.end(), isXCoordinateSmaller); + + polygon.points.resize(2*n); + + // lower hull + for (int i = 0; i < n; ++i) + { + while (k >= 2 && cross(polygon.points[k-2], polygon.points[k-1], cluster[i]) <= 0) + { + --k; + } + cluster[i].toPointMsg(polygon.points[k]); + ++k; + } + + // upper hull + for (int i = n-2, t = k+1; i >= 0; --i) + { + while (k >= t && cross(polygon.points[k-2], polygon.points[k-1], cluster[i]) <= 0) + { + --k; + } + cluster[i].toPointMsg(polygon.points[k]); + ++k; + } + + + polygon.points.resize(k); // original + // TEST we skip the last point, since in our definition the polygon vertices do not contain the start/end vertex twice. +// polygon.points.resize(k-1); // TODO remove last point from the algorithm above to reduce computational cost + + simplifyPolygon(polygon); +} + + + +void CostmapToPolygonsDBSMCCH::convexHull2(std::vector& cluster, geometry_msgs::msg::Polygon& polygon) +{ + std::vector& P = cluster; + std::vector& points = polygon.points; + + // Sort P by x and y + std::sort(P.begin(), P.end(), isXCoordinateSmaller); + + // the output array H[] will be used as the stack + int i; // array scan index + + // Get the indices of points with min x-coord and min|max y-coord + int minmin = 0, minmax; + double xmin = P[0].x; + for (i = 1; i < (int)P.size(); i++) + if (P[i].x != xmin) break; + minmax = i - 1; + if (minmax == (int)P.size() - 1) + { // degenerate case: all x-coords == xmin + points.push_back(geometry_msgs::msg::Point32()); + P[minmin].toPointMsg(points.back()); + if (P[minmax].y != P[minmin].y) // a nontrivial segment + { + points.push_back(geometry_msgs::msg::Point32()); + P[minmax].toPointMsg(points.back()); + } + // add polygon endpoint + points.push_back(geometry_msgs::msg::Point32()); + P[minmin].toPointMsg(points.back()); + return; + } + + // Get the indices of points with max x-coord and min|max y-coord + int maxmin, maxmax = (int)P.size() - 1; + double xmax = P.back().x; + for (i = P.size() - 2; i >= 0; i--) + if (P[i].x != xmax) break; + maxmin = i+1; + + // Compute the lower hull on the stack H + // push minmin point onto stack + points.push_back(geometry_msgs::msg::Point32()); + P[minmin].toPointMsg(points.back()); + i = minmax; + while (++i <= maxmin) + { + // the lower line joins P[minmin] with P[maxmin] + if (cross(P[minmin], P[maxmin], P[i]) >= 0 && i < maxmin) + continue; // ignore P[i] above or on the lower line + + while (points.size() > 1) // there are at least 2 points on the stack + { + // test if P[i] is left of the line at the stack top + if (cross(points[points.size() - 2], points.back(), P[i]) > 0) + break; // P[i] is a new hull vertex + points.pop_back(); // pop top point off stack + } + // push P[i] onto stack + points.push_back(geometry_msgs::msg::Point32()); + P[i].toPointMsg(points.back()); + } + + // Next, compute the upper hull on the stack H above the bottom hull + if (maxmax != maxmin) // if distinct xmax points + { + // push maxmax point onto stack + points.push_back(geometry_msgs::msg::Point32()); + P[maxmax].toPointMsg(points.back()); + } + int bot = (int)points.size(); // the bottom point of the upper hull stack + i = maxmin; + while (--i >= minmax) + { + // the upper line joins P[maxmax] with P[minmax] + if (cross( P[maxmax], P[minmax], P[i]) >= 0 && i > minmax) + continue; // ignore P[i] below or on the upper line + + while ((int)points.size() > bot) // at least 2 points on the upper stack + { + // test if P[i] is left of the line at the stack top + if (cross(points[points.size() - 2], points.back(), P[i]) > 0) + break; // P[i] is a new hull vertex + points.pop_back(); // pop top point off stack + } + // push P[i] onto stack + points.push_back(geometry_msgs::msg::Point32()); + P[i].toPointMsg(points.back()); + } + if (minmax != minmin) + { + // push joining endpoint onto stack + points.push_back(geometry_msgs::msg::Point32()); + P[minmin].toPointMsg(points.back()); + } + + simplifyPolygon(polygon); +} + +void CostmapToPolygonsDBSMCCH::simplifyPolygon(geometry_msgs::msg::Polygon& polygon) +{ + size_t triangleThreshold = 3; + // check if first and last point are the same. If yes, a triangle has 4 points + if (polygon.points.size() > 1 + && std::abs(polygon.points.front().x - polygon.points.back().x) < 1e-5 + && std::abs(polygon.points.front().y - polygon.points.back().y) < 1e-5) + { + triangleThreshold = 4; + } + if (polygon.points.size() <= triangleThreshold) // nothing to do for triangles or lines + return; + // TODO Reason about better start conditions for splitting lines, e.g., by + // https://en.wikipedia.org/wiki/Rotating_calipers + polygon.points = douglasPeucker(polygon.points.begin(), polygon.points.end(), parameter_.min_keypoint_separation_);; +} + +void CostmapToPolygonsDBSMCCH::updatePolygonContainer(PolygonContainerPtr polygons) +{ + std::lock_guard lock(mutex_); + polygons_ = polygons; +} + + +PolygonContainerConstPtr CostmapToPolygonsDBSMCCH::getPolygons() +{ + std::lock_guard lock(mutex_); + PolygonContainerConstPtr polygons = polygons_; + return polygons; +} + +//void CostmapToPolygonsDBSMCCH::reconfigureCB(CostmapToPolygonsDBSMCCHConfig& config, uint32_t level) +//{ + //boost::mutex::scoped_lock lock(parameter_mutex_); + //parameter_buffered_.max_distance_ = config.cluster_max_distance; + //parameter_buffered_.min_pts_ = config.cluster_min_pts; + //parameter_buffered_.max_pts_ = config.cluster_max_pts; + //parameter_buffered_.min_keypoint_separation_ = config.convex_hull_min_pt_separation; +//} + +}//end namespace costmap_converter + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_polygons_concave.cpp b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_polygons_concave.cpp new file mode 100644 index 0000000..f2ba987 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/src/costmap_to_polygons_concave.cpp @@ -0,0 +1,231 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann, Otniel Rinaldo + *********************************************************************/ + +#include + +#include + +PLUGINLIB_EXPORT_CLASS(costmap_converter::CostmapToPolygonsDBSConcaveHull, costmap_converter::BaseCostmapToPolygons) + +namespace costmap_converter +{ + +CostmapToPolygonsDBSConcaveHull::CostmapToPolygonsDBSConcaveHull() : CostmapToPolygonsDBSMCCH() +{ +// dynamic_recfg_ = NULL; +} + +CostmapToPolygonsDBSConcaveHull::~CostmapToPolygonsDBSConcaveHull() +{ +// if (dynamic_recfg_ != NULL) +// delete dynamic_recfg_; +} + +void CostmapToPolygonsDBSConcaveHull::initialize(rclcpp::Node::SharedPtr nh) +{ + BaseCostmapToPolygons::initialize(nh); + + parameter_.max_distance_ = 0.4; + nh->get_parameter_or("cluster_max_distance", parameter_.max_distance_, parameter_.max_distance_); + + parameter_.min_pts_ = 2; + nh->get_parameter_or("cluster_min_pts", parameter_.min_pts_, parameter_.min_pts_); + + parameter_.max_pts_ = 30; + nh->get_parameter_or("cluster_max_pts", parameter_.max_pts_, parameter_.max_pts_); + + parameter_.min_keypoint_separation_ = 0.1; + nh->get_parameter_or("convex_hull_min_pt_separation", parameter_.min_keypoint_separation_, parameter_.min_keypoint_separation_); + + parameter_buffered_ = parameter_; + + concave_hull_depth_ = 2.0; + nh->get_parameter_or("concave_hull_depth", concave_hull_depth_, concave_hull_depth_); + + // setup dynamic reconfigure +// dynamic_recfg_ = new dynamic_reconfigure::Server(nh); +// dynamic_reconfigure::Server::CallbackType cb = boost::bind(&CostmapToPolygonsDBSConcaveHull::reconfigureCB, this, _1, _2); +// dynamic_recfg_->setCallback(cb); +} + + +void CostmapToPolygonsDBSConcaveHull::compute() +{ + std::vector< std::vector > clusters; + dbScan(clusters); + + // Create new polygon container + PolygonContainerPtr polygons(new std::vector()); + + + // add convex hulls to polygon container + for (size_t i = 1; i push_back( geometry_msgs::msg::Polygon() ); + concaveHull(clusters[i], concave_hull_depth_, polygons->back() ); + } + + // add our non-cluster points to the polygon container (as single points) + if (!clusters.empty()) + { + for (size_t i=0; i < clusters.front().size(); ++i) + { + polygons->push_back( geometry_msgs::msg::Polygon() ); + convertPointToPolygon(clusters.front()[i], polygons->back()); + } + } + + // replace shared polygon container + updatePolygonContainer(polygons); +} + + +void CostmapToPolygonsDBSConcaveHull::concaveHull(std::vector& cluster, double depth, geometry_msgs::msg::Polygon& polygon) +{ + // start with convex hull + convexHull2(cluster, polygon); + + std::vector& concave_list = polygon.points; + + for (int i = 0; i < (int)concave_list.size() - 1; ++i) + { + + // find nearest inner point pk from line (vertex1 -> vertex2) + const geometry_msgs::msg::Point32& vertex1 = concave_list[i]; + const geometry_msgs::msg::Point32& vertex2 = concave_list[i+1]; + + bool found; + size_t nearest_idx = findNearestInnerPoint(vertex1, vertex2, cluster, concave_list, &found); + if (!found) + continue; + + double line_length = norm2d(vertex1, vertex2); + + double dst1 = norm2d(cluster[nearest_idx], vertex1); + double dst2 = norm2d(cluster[nearest_idx], vertex2); + double dd = std::min(dst1, dst2); + if (dd<1e-8) + continue; + + if (line_length / dd > depth) + { + // Check that new candidate edge will not intersect existing edges. + bool intersects = checkLineIntersection(concave_list, vertex1, vertex2, vertex1, cluster[nearest_idx]); + intersects |= checkLineIntersection(concave_list, vertex1, vertex2, cluster[nearest_idx], vertex2); + if (!intersects) + { + geometry_msgs::msg::Point32 new_point; + cluster[nearest_idx].toPointMsg(new_point); + concave_list.insert(concave_list.begin() + i + 1, new_point); + i--; + } + } + } +} + + +void CostmapToPolygonsDBSConcaveHull::concaveHullClusterCut(std::vector& cluster, double depth, geometry_msgs::msg::Polygon& polygon) +{ + // start with convex hull + convexHull2(cluster, polygon); + + std::vector& concave_list = polygon.points; + + // get line length + double mean_length = 0; + for (int i = 0; i < (int)concave_list.size() - 1; ++i) + { + mean_length += norm2d(concave_list[i],concave_list[i+1]); + } + mean_length /= double(concave_list.size()); + + for (int i = 0; i < (int)concave_list.size() - 1; ++i) + { + + // find nearest inner point pk from line (vertex1 -> vertex2) + const geometry_msgs::msg::Point32& vertex1 = concave_list[i]; + const geometry_msgs::msg::Point32& vertex2 = concave_list[i+1]; + + double line_length = norm2d(vertex1, vertex2); + + bool found; + size_t nearest_idx = findNearestInnerPoint(vertex1, vertex2, cluster, concave_list, &found); + if (!found) + { + continue; + } + + + double dst1 = norm2d(cluster[nearest_idx], vertex1); + double dst2 = norm2d(cluster[nearest_idx], vertex2); + double dd = std::min(dst1, dst2); + if (dd<1e-8) + continue; + + if (line_length / dd > depth) + { + // Check that new candidate edge will not intersect existing edges. + bool intersects = checkLineIntersection(concave_list, vertex1, vertex2, vertex1, cluster[nearest_idx]); + intersects |= checkLineIntersection(concave_list, vertex1, vertex2, cluster[nearest_idx], vertex2); + if (!intersects) + { + geometry_msgs::msg::Point32 new_point; + cluster[nearest_idx].toPointMsg(new_point); + concave_list.insert(concave_list.begin() + i + 1, new_point); + i--; + } + } + } +} + + + + +//void CostmapToPolygonsDBSConcaveHull::reconfigureCB(CostmapToPolygonsDBSConcaveHullConfig& config, uint32_t level) +//{ +// boost::mutex::scoped_lock lock(parameter_mutex_); +// parameter_buffered_.max_distance_ = config.cluster_max_distance; +// parameter_buffered_.min_pts_ = config.cluster_min_pts; +// parameter_buffered_.max_pts_ = config.cluster_max_pts; +// parameter_buffered_.min_keypoint_separation_ = config.cluster_min_pts; +// concave_hull_depth_ = config.concave_hull_depth; +//} + +}//end namespace costmap_converter + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter/test/costmap_polygons.cpp b/src/rm_navigation/costmap_converter/costmap_converter/test/costmap_polygons.cpp new file mode 100644 index 0000000..e563475 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/test/costmap_polygons.cpp @@ -0,0 +1,230 @@ +#include +#include +#include + +#include + +namespace { +geometry_msgs::msg::Point32 create_point(double x, double y) +{ + geometry_msgs::msg::Point32 result; + result.x = x; + result.y = y; + result.z = 0.; + return result; +} +} // end namespace + +// make things accesible in the test +class CostmapToPolygons : public costmap_converter::CostmapToPolygonsDBSMCCH +{ + public: + const std::vector& points() const {return occupied_cells_;} + costmap_converter::CostmapToPolygonsDBSMCCH::Parameters& parameters() {return parameter_;} + using costmap_converter::CostmapToPolygonsDBSMCCH::addPoint; + using costmap_converter::CostmapToPolygonsDBSMCCH::regionQuery; + using costmap_converter::CostmapToPolygonsDBSMCCH::dbScan; + using costmap_converter::CostmapToPolygonsDBSMCCH::convexHull2; + using costmap_converter::CostmapToPolygonsDBSMCCH::simplifyPolygon; +}; + +class CostmapToPolygonsDBSMCCHTest : public ::testing::Test +{ + protected: + void SetUp() override { + // parameters + costmap_to_polygons.parameters().max_distance_ = 0.5; + costmap_to_polygons.parameters().max_pts_ = 100; + costmap_to_polygons.parameters().min_pts_ = 2; + costmap_to_polygons.parameters().min_keypoint_separation_ = 0.1; + + costmap.reset(new nav2_costmap_2d::Costmap2D(100, 100, 0.1, -5., -5.)); + costmap_to_polygons.setCostmap2D(costmap.get()); + + std::random_device rand_dev; + std::mt19937 generator(rand_dev()); + std::uniform_real_distribution<> random_angle(-M_PI, M_PI); + std::uniform_real_distribution<> random_dist(0., costmap_to_polygons.parameters().max_distance_); + + costmap_to_polygons.addPoint(0., 0.); + costmap_to_polygons.addPoint(1.3, 1.3); + + // adding random points + double center_x = costmap_to_polygons.points()[0].x; + double center_y = costmap_to_polygons.points()[0].y; + for (int i = 0; i < costmap_to_polygons.parameters().max_pts_ - 1; ++i) + { + double alpha = random_angle(generator); + double dist = random_dist(generator); + double wx = center_x + std::cos(alpha) * dist; + double wy = center_y + std::sin(alpha) * dist; + costmap_to_polygons.addPoint(wx, wy); + } + + // some noisy points not belonging to a cluster + costmap_to_polygons.addPoint(-1, -1); + costmap_to_polygons.addPoint(-2, -2); + + // adding random points + center_x = costmap_to_polygons.points()[1].x; + center_y = costmap_to_polygons.points()[1].y; + for (int i = 0; i < costmap_to_polygons.parameters().max_pts_/2; ++i) + { + double alpha = random_angle(generator); + double dist = random_dist(generator); + double wx = center_x + std::cos(alpha) * dist; + double wy = center_y + std::sin(alpha) * dist; + costmap_to_polygons.addPoint(wx, wy); + } + } + + void regionQueryTrivial(int curr_index, std::vector& neighbor_indices) + { + neighbor_indices.clear(); + const auto& query_point = costmap_to_polygons.points()[curr_index]; + for (int i = 0; i < int(costmap_to_polygons.points().size()); ++i) + { + if (i == curr_index) + continue; + const auto& kp = costmap_to_polygons.points()[i]; + double dx = query_point.x - kp.x; + double dy = query_point.y - kp.y; + double dist = sqrt(dx*dx + dy*dy); + if (dist < costmap_to_polygons.parameters().max_distance_) + neighbor_indices.push_back(i); + } + } + + CostmapToPolygons costmap_to_polygons; + std::shared_ptr costmap; +}; + +TEST_F(CostmapToPolygonsDBSMCCHTest, regionQuery) +{ + std::vector neighbors, neighbors_trivial; + costmap_to_polygons.regionQuery(0, neighbors); + regionQueryTrivial(0, neighbors_trivial); + ASSERT_EQ(costmap_to_polygons.parameters().max_pts_ - 1, int(neighbors.size())); + ASSERT_EQ(neighbors_trivial.size(), neighbors.size()); + std::sort(neighbors.begin(), neighbors.end()); + ASSERT_EQ(neighbors_trivial, neighbors); + + costmap_to_polygons.regionQuery(1, neighbors); + regionQueryTrivial(1, neighbors_trivial); + ASSERT_EQ(costmap_to_polygons.parameters().max_pts_/2, int(neighbors.size())); + ASSERT_EQ(neighbors_trivial.size(), neighbors.size()); + std::sort(neighbors.begin(), neighbors.end()); + ASSERT_EQ(neighbors_trivial, neighbors); +} + +TEST_F(CostmapToPolygonsDBSMCCHTest, dbScan) +{ + std::vector< std::vector > clusters; + costmap_to_polygons.dbScan(clusters); + + ASSERT_EQ((unsigned)3, clusters.size()); + ASSERT_EQ((unsigned)2, clusters[0].size()); // noisy points not belonging to a cluster + ASSERT_EQ((unsigned)costmap_to_polygons.parameters().max_pts_, clusters[1].size()); // first cluster at (0,0) + ASSERT_EQ((unsigned)costmap_to_polygons.parameters().max_pts_/2 + 1, clusters[2].size()); // second cluster at (1,1) +} + +TEST(CostmapToPolygonsDBSMCCH, EmptyMap) +{ + std::shared_ptr costmap = + std::make_shared(nav2_costmap_2d::Costmap2D(100, 100, 0.1, -5., -5.)); + CostmapToPolygons costmap_to_polygons; + costmap_to_polygons.setCostmap2D(costmap.get()); + + std::vector< std::vector > clusters; + costmap_to_polygons.dbScan(clusters); + ASSERT_EQ((unsigned)1, clusters.size()); // noise cluster exists + ASSERT_EQ((unsigned)0, clusters[0].size()); // noise clsuter is empty +} + +TEST(CostmapToPolygonsDBSMCCH, SimplifyPolygon) +{ + const double simplification_threshold = 0.1; + CostmapToPolygons costmap_to_polygons; + costmap_to_polygons.parameters().min_keypoint_separation_ = simplification_threshold; + + geometry_msgs::msg::Polygon polygon; + polygon.points.push_back(create_point(0., 0.)); + polygon.points.push_back(create_point(1., 0.)); + + // degenerate case with just two points + geometry_msgs::msg::Polygon original_polygon = polygon; + costmap_to_polygons.simplifyPolygon(polygon); + ASSERT_EQ((unsigned)2, polygon.points.size()); + for (size_t i = 0; i < polygon.points.size(); ++i) + { + ASSERT_FLOAT_EQ(original_polygon.points[i].x, polygon.points[i].x); + ASSERT_FLOAT_EQ(original_polygon.points[i].y, polygon.points[i].y); + } + + // degenerate case with three points + polygon.points.push_back(create_point(1., simplification_threshold / 2.)); + original_polygon = polygon; + costmap_to_polygons.simplifyPolygon(polygon); + ASSERT_EQ((unsigned)3, polygon.points.size()); + for (size_t i = 0; i < polygon.points.size(); ++i) + { + ASSERT_FLOAT_EQ(original_polygon.points[i].x, polygon.points[i].x); + ASSERT_FLOAT_EQ(original_polygon.points[i].y, polygon.points[i].y); + } + + polygon.points.push_back(create_point(1., 1.)); + original_polygon = polygon; + // remove the point that has to be removed by the simplification + original_polygon.points.erase(original_polygon.points.begin()+2); + costmap_to_polygons.simplifyPolygon(polygon); + ASSERT_EQ((unsigned)3, polygon.points.size()); + for (size_t i = 0; i < polygon.points.size(); ++i) + { + ASSERT_FLOAT_EQ(original_polygon.points[i].x, polygon.points[i].x); + ASSERT_FLOAT_EQ(original_polygon.points[i].y, polygon.points[i].y); + } +} + +TEST(CostmapToPolygonsDBSMCCH, SimplifyPolygonPerfectLines) +{ + const double simplification_threshold = 0.1; + CostmapToPolygons costmap_to_polygons; + costmap_to_polygons.parameters().min_keypoint_separation_ = simplification_threshold; + + geometry_msgs::msg::Polygon polygon; + for (int i = 0; i <= 100; ++i) + polygon.points.push_back(create_point(i*1., 0.)); + geometry_msgs::msg::Point32 lastPoint = polygon.points.back(); + for (int i = 0; i <= 100; ++i) + polygon.points.push_back(create_point(lastPoint.x, lastPoint.y + i * 1.)); + lastPoint = polygon.points.back(); + for (int i = 0; i <= 100; ++i) + polygon.points.push_back(create_point(lastPoint.x + i * 1., lastPoint.y)); + lastPoint = polygon.points.back(); + for (int i = 0; i <= 100; ++i) + polygon.points.push_back(create_point(lastPoint.x, lastPoint.y + i * 1.)); + lastPoint = polygon.points.back(); + for (int i = 0; i <= 100; ++i) + polygon.points.push_back(create_point(lastPoint.x + i * 1., lastPoint.y)); + + costmap_to_polygons.simplifyPolygon(polygon); + ASSERT_EQ((unsigned)6, polygon.points.size()); + ASSERT_FLOAT_EQ( 0., polygon.points[0].x); + ASSERT_FLOAT_EQ( 0., polygon.points[0].y); + ASSERT_FLOAT_EQ(100., polygon.points[1].x); + ASSERT_FLOAT_EQ( 0., polygon.points[1].y); + ASSERT_FLOAT_EQ(100., polygon.points[2].x); + ASSERT_FLOAT_EQ(100., polygon.points[2].y); + ASSERT_FLOAT_EQ(200., polygon.points[3].x); + ASSERT_FLOAT_EQ(100., polygon.points[3].y); + ASSERT_FLOAT_EQ(200., polygon.points[4].x); + ASSERT_FLOAT_EQ(200., polygon.points[4].y); + ASSERT_FLOAT_EQ(300., polygon.points[5].x); + ASSERT_FLOAT_EQ(200., polygon.points[5].y); +} + +int main(int argc, char** argv) +{ + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/src/rm_navigation/costmap_converter/costmap_converter/test/costmap_polygons.test b/src/rm_navigation/costmap_converter/costmap_converter/test/costmap_polygons.test new file mode 100644 index 0000000..8f42354 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter/test/costmap_polygons.test @@ -0,0 +1,3 @@ + + + diff --git a/src/rm_navigation/costmap_converter/costmap_converter_msgs/CHANGELOG.rst b/src/rm_navigation/costmap_converter/costmap_converter_msgs/CHANGELOG.rst new file mode 100644 index 0000000..f3fabe8 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter_msgs/CHANGELOG.rst @@ -0,0 +1,41 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package costmap_converter_msgs +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.1.2 (2020-06-22) +------------------ + +0.1.1 (2020-01-25) +------------------ + +0.1.0 (2020-01-23) +------------------ +* Messages moved to a separate package +* Contributors: Vinnam Kim + +0.0.9 (2018-05-28) +------------------ + +0.0.8 (2018-05-17) +------------------ + +0.0.7 (2017-09-20) +------------------ + +0.0.6 (2017-09-18) +------------------ + +0.0.5 (2016-02-01) +------------------ + +0.0.4 (2016-01-11) +------------------ + +0.0.3 (2015-12-23) +------------------ + +0.0.2 (2015-12-22) +------------------ + +0.0.1 (2015-12-21) +------------------ diff --git a/src/rm_navigation/costmap_converter/costmap_converter_msgs/CMakeLists.txt b/src/rm_navigation/costmap_converter/costmap_converter_msgs/CMakeLists.txt new file mode 100644 index 0000000..9ad3ee4 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter_msgs/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 3.5) + +project(costmap_converter_msgs) + +# Default to C++14 +if(NOT CMAKE_CXX_STANDARD) + set(CMAKE_CXX_STANDARD 14) +endif() + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +find_package(ament_cmake REQUIRED) +find_package(builtin_interfaces REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(std_msgs REQUIRED) +find_package(rosidl_default_generators REQUIRED) + +rosidl_generate_interfaces(costmap_converter_msgs + "msg/ObstacleMsg.msg" + "msg/ObstacleArrayMsg.msg" + DEPENDENCIES builtin_interfaces geometry_msgs std_msgs +) + +ament_package() diff --git a/src/rm_navigation/costmap_converter/costmap_converter_msgs/msg/ObstacleArrayMsg.msg b/src/rm_navigation/costmap_converter/costmap_converter_msgs/msg/ObstacleArrayMsg.msg new file mode 100644 index 0000000..e4eec4d --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter_msgs/msg/ObstacleArrayMsg.msg @@ -0,0 +1,10 @@ +# Message that contains a list of polygon shaped obstacles. +# Special types: +# Polygon with 1 vertex: Point obstacle +# Polygon with 2 vertices: Line obstacle +# Polygon with more than 2 vertices: First and last points are assumed to be connected + +std_msgs/Header header + +costmap_converter_msgs/ObstacleMsg[] obstacles + diff --git a/src/rm_navigation/costmap_converter/costmap_converter_msgs/msg/ObstacleMsg.msg b/src/rm_navigation/costmap_converter/costmap_converter_msgs/msg/ObstacleMsg.msg new file mode 100644 index 0000000..9a463a3 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter_msgs/msg/ObstacleMsg.msg @@ -0,0 +1,24 @@ +# Special types: +# Polygon with 1 vertex: Point obstacle (you might also specify a non-zero value for radius) +# Polygon with 2 vertices: Line obstacle +# Polygon with more than 2 vertices: First and last points are assumed to be connected + +std_msgs/Header header + +# Obstacle footprint (polygon descriptions) +geometry_msgs/Polygon polygon + +# Specify the radius for circular/point obstacles +float64 radius + +# Obstacle ID +# Specify IDs in order to provide (temporal) relationships +# between obstacles among multiple messages. +int64 id + +# Individual orientation (centroid) +geometry_msgs/Quaternion orientation + +# Individual velocities (centroid) +geometry_msgs/TwistWithCovariance velocities + diff --git a/src/rm_navigation/costmap_converter/costmap_converter_msgs/package.xml b/src/rm_navigation/costmap_converter/costmap_converter_msgs/package.xml new file mode 100644 index 0000000..faa0863 --- /dev/null +++ b/src/rm_navigation/costmap_converter/costmap_converter_msgs/package.xml @@ -0,0 +1,31 @@ + + + + costmap_converter_msgs + 0.1.2 + Package containing message types for costmap conversion + Christoph Rösmann + + BSD + + ament_cmake + + rosidl_default_generators + + builtin_interfaces + geometry_msgs + std_msgs + + builtin_interfaces + geometry_msgs + rosidl_default_runtime + std_msgs + + ament_lint_common + + rosidl_interface_packages + + + ament_cmake + + diff --git a/src/rm_navigation/fake_vel_transform/CMakeLists.txt b/src/rm_navigation/fake_vel_transform/CMakeLists.txt new file mode 100644 index 0000000..cf42230 --- /dev/null +++ b/src/rm_navigation/fake_vel_transform/CMakeLists.txt @@ -0,0 +1,55 @@ +cmake_minimum_required(VERSION 3.10) +project(fake_vel_transform) + +## Use C++14 +set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +## By adding -Wall and -Werror, the compiler does not ignore warnings anymore, +## enforcing cleaner code. +add_definitions(-Wall -Werror) + +## Export compile commands for clangd +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +####################### +## Find dependencies ## +####################### + +find_package(ament_cmake_auto REQUIRED) +ament_auto_find_build_dependencies() + +########### +## Build ## +########### + +ament_auto_add_library(${PROJECT_NAME} SHARED + src/fake_vel_transform.cpp +) + +rclcpp_components_register_node(${PROJECT_NAME} + PLUGIN fake_vel_transform::FakeVelTransform + EXECUTABLE ${PROJECT_NAME}_node +) + +############# +## Testing ## +############# + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + list(APPEND AMENT_LINT_AUTO_EXCLUDE + ament_cmake_copyright + ament_cmake_uncrustify + ) + ament_lint_auto_find_test_dependencies() +endif() + +############# +## Install ## +############# + +ament_auto_package( + INSTALL_TO_SHARE + launch +) diff --git a/src/rm_navigation/fake_vel_transform/README.md b/src/rm_navigation/fake_vel_transform/README.md new file mode 100644 index 0000000..a43c718 --- /dev/null +++ b/src/rm_navigation/fake_vel_transform/README.md @@ -0,0 +1,29 @@ +# fake_vel_transform + +该包用于实现雷达和云台共用的 yaw 轴时的兼容性,即使云台处于旋转扫描状态,速度变换后,仍然可以实现较稳定的轨迹跟踪效果。 + +## 实现方式 + +创建 XYZ 轴基于 `base_link`, RPY 轴基于局部路径规划朝向的 `base_link_fake` 坐标系,使得 nav2 局部规划器能够将机器人的方向视为与当前路径规划方向一致。 + +nav2 发布的速度也是基于 `base_link_fake` 坐标系的,通过 tf2 将速度转换到 `base_link` 坐标系,使机器人能够正常运动。在仿真中表现即底盘小陀螺时仍能跟随轨迹。 + +电控端执行底盘控制命令时,机器人运动正方向为云台枪管朝向。 + +## fake_vel_transform_node + +订阅: + +- nav2 发布的基于 base_link_fake 坐标系的速度指令 `/cmd_vel` +- nav2 controller 发布的局部路径朝向 `/local_path` +- `odom` 到 `base_link` 的 tf 变换 + +发布: + +- 转换到 base_link 坐标系的速度 `/cmd_vel_chassis` + +静态参数: + +- 底盘固定旋转速度 `spin_speed` + + 搭配电控固定小陀螺速度,将 spin_speed 设为负,可实现移动时小陀螺减慢。 diff --git a/src/rm_navigation/fake_vel_transform/include/fake_vel_transform/fake_vel_transform.hpp b/src/rm_navigation/fake_vel_transform/include/fake_vel_transform/fake_vel_transform.hpp new file mode 100644 index 0000000..3ca3892 --- /dev/null +++ b/src/rm_navigation/fake_vel_transform/include/fake_vel_transform/fake_vel_transform.hpp @@ -0,0 +1,56 @@ +#ifndef FAKE_VEL_TRANSFORM__FAKE_VEL_TRANSFORM_HPP_ +#define FAKE_VEL_TRANSFORM__FAKE_VEL_TRANSFORM_HPP_ + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace fake_vel_transform +{ +class FakeVelTransform : public rclcpp::Node +{ +public: + explicit FakeVelTransform(const rclcpp::NodeOptions & options); + +private: + void cmdVelCallback(const geometry_msgs::msg::Twist::SharedPtr msg); + + void localPoseCallback(const nav_msgs::msg::Path::SharedPtr msg); + + void publishTransform(); + + // Subscriber with tf2 message_filter + std::string target_frame_; + std::shared_ptr tf2_buffer_; + std::shared_ptr tf2_listener_; + + rclcpp::Subscription::SharedPtr cmd_vel_sub_; + rclcpp::Subscription::SharedPtr local_pose_sub_; + + rclcpp::Publisher::SharedPtr cmd_vel_chassis_pub_; + + // Broadcast tf from base_link to base_link_fake + rclcpp::TimerBase::SharedPtr tf_timer_; + std::unique_ptr tf_broadcaster_; + + geometry_msgs::msg::PoseStamped planner_local_pose_; + double current_angle_; + double base_link_angle_; + float spin_speed_; +}; + +} // namespace fake_vel_transform + +#endif // FAKE_VEL_TRANSFORM__FAKE_VEL_TRANSFORM_HPP_ diff --git a/src/rm_navigation/fake_vel_transform/launch/fake_vel_transform.launch.py b/src/rm_navigation/fake_vel_transform/launch/fake_vel_transform.launch.py new file mode 100644 index 0000000..18cf552 --- /dev/null +++ b/src/rm_navigation/fake_vel_transform/launch/fake_vel_transform.launch.py @@ -0,0 +1,20 @@ +import os + +from ament_index_python.packages import get_package_share_directory +from launch import LaunchDescription +from launch.substitutions import LaunchConfiguration +from launch_ros.actions import Node + +def generate_launch_description(): + use_sim_time = LaunchConfiguration('use_sim_time', default='true') + + fake_vel_transform_node = Node( + package='fake_vel_transform', + executable='fake_vel_transform_node', + output='screen', + parameters=[ + {'use_sim_time': use_sim_time } + ] + ) + + return LaunchDescription([fake_vel_transform_node]) diff --git a/src/rm_navigation/fake_vel_transform/package.xml b/src/rm_navigation/fake_vel_transform/package.xml new file mode 100644 index 0000000..9be9e08 --- /dev/null +++ b/src/rm_navigation/fake_vel_transform/package.xml @@ -0,0 +1,31 @@ + + + + fake_vel_transform + 0.1.0 + A template for ROS packages. + MIT + Lihan Chen + Lihan Chen + + + ament_cmake + + + rclcpp + rclcpp_components + geometry_msgs + nav_msgs + tf2_ros + tf2_geometry_msgs + + ament_lint_auto + ament_lint_common + ament_cmake_clang_format + + + ament_cmake + + diff --git a/src/rm_navigation/fake_vel_transform/src/fake_vel_transform.cpp b/src/rm_navigation/fake_vel_transform/src/fake_vel_transform.cpp new file mode 100644 index 0000000..53b0a86 --- /dev/null +++ b/src/rm_navigation/fake_vel_transform/src/fake_vel_transform.cpp @@ -0,0 +1,103 @@ +#include "fake_vel_transform/fake_vel_transform.hpp" + +#include + +#include +#include +#include + +namespace fake_vel_transform +{ +const std::string CMD_VEL_TOPIC = "/cmd_vel"; +const std::string AFTER_TF_CMD_VEL = "/cmd_vel_chassis"; +const std::string TRAJECTORY_TOPIC = "/local_plan"; +const int TF_PUBLISH_FREQUENCY = 20; // base_link to base_link_fake. Frequency in Hz. + +FakeVelTransform::FakeVelTransform(const rclcpp::NodeOptions & options) +: Node("fake_vel_transform", options) +{ + RCLCPP_INFO(get_logger(), "Start FakeVelTransform!"); + + // Declare and get the spin speed parameter + this->declare_parameter("spin_speed", -6.0); + this->get_parameter("spin_speed", spin_speed_); + + // TF broadcaster + tf_broadcaster_ = std::make_unique(*this); + tf2_buffer_ = std::make_unique(this->get_clock()); + tf2_listener_ = std::make_shared(*tf2_buffer_); + + // Create Publisher and Subscriber + cmd_vel_sub_ = this->create_subscription( + CMD_VEL_TOPIC, 1, std::bind(&FakeVelTransform::cmdVelCallback, this, std::placeholders::_1)); + cmd_vel_chassis_pub_ = this->create_publisher( + AFTER_TF_CMD_VEL, rclcpp::QoS(rclcpp::KeepLast(1))); + local_pose_sub_ = this->create_subscription( + TRAJECTORY_TOPIC, 1, + std::bind(&FakeVelTransform::localPoseCallback, this, std::placeholders::_1)); + + // Create a timer to publish the transform regularly + tf_timer_ = this->create_wall_timer( + std::chrono::milliseconds(1000 / TF_PUBLISH_FREQUENCY), + std::bind(&FakeVelTransform::publishTransform, this)); +} + +// Get the local pose from planner +void FakeVelTransform::localPoseCallback(const nav_msgs::msg::Path::SharedPtr msg) +{ + if (!msg || msg->poses.empty()) { + RCLCPP_WARN(get_logger(), "Received empty or invalid PoseArray message"); + return; + } + + // Choose the pose based on the size of the poses array + size_t index = std::min(msg->poses.size() / 4, msg->poses.size() - 1); + const geometry_msgs::msg::Pose & selected_pose = msg->poses[index].pose; + + // Update current angle based on the difference between teb_angle and base_link_angle_ + double teb_angle = tf2::getYaw(selected_pose.orientation); + current_angle_ = teb_angle - base_link_angle_; +} + +// Transform the velocity from base_link to base_link_fake +void FakeVelTransform::cmdVelCallback(const geometry_msgs::msg::Twist::SharedPtr msg) +{ + try { + geometry_msgs::msg::TransformStamped transform_stamped; + transform_stamped = tf2_buffer_->lookupTransform("odom", "base_link", tf2::TimePointZero); + base_link_angle_ = tf2::getYaw(transform_stamped.transform.rotation); + + double angle_diff = -current_angle_; + + geometry_msgs::msg::Twist aft_tf_vel; + aft_tf_vel.angular.z = (msg->angular.z != 0) ? spin_speed_ : 0; + aft_tf_vel.linear.x = msg->linear.x * cos(angle_diff) + msg->linear.y * sin(angle_diff); + aft_tf_vel.linear.y = -msg->linear.x * sin(angle_diff) + msg->linear.y * cos(angle_diff); + + cmd_vel_chassis_pub_->publish(aft_tf_vel); + } catch (tf2::TransformException & ex) { + RCLCPP_INFO(this->get_logger(), "Could not transform odom to base_link: %s", ex.what()); + } +} + +// Publish transform from base_link to base_link_fake +void FakeVelTransform::publishTransform() +{ + geometry_msgs::msg::TransformStamped t; + t.header.stamp = get_clock()->now(); + t.header.frame_id = "base_link"; + t.child_frame_id = "base_link_fake"; + tf2::Quaternion q; + q.setRPY(0, 0, current_angle_); + t.transform.rotation = tf2::toMsg(q); + tf_broadcaster_->sendTransform(t); +} + +} // namespace fake_vel_transform + +#include "rclcpp_components/register_node_macro.hpp" + +// Register the component with class_loader. +// This acts as a sort of entry point, allowing the component to be discoverable when its library +// is being loaded into a running process. +RCLCPP_COMPONENTS_REGISTER_NODE(fake_vel_transform::FakeVelTransform) \ No newline at end of file diff --git a/src/rm_navigation/rm_navigation/CMakeLists.txt b/src/rm_navigation/rm_navigation/CMakeLists.txt new file mode 100644 index 0000000..319374c --- /dev/null +++ b/src/rm_navigation/rm_navigation/CMakeLists.txt @@ -0,0 +1,34 @@ +cmake_minimum_required(VERSION 3.8) +project(rm_navigation) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +if(CMAKE_EXPORT_COMPILE_COMMANDS) + set(CMAKE_EXPORT_COMPILE_COMMANDS ${CMAKE_EXPORT_COMPILE_COMMANDS}) +endif() + +# find dependencies +find_package(ament_cmake_auto REQUIRED) +# uncomment the following section in order to fill in +# further dependencies manually. +# find_package( REQUIRED) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + # the following line skips the linter which checks for copyrights + # comment the line when a copyright and license is added to all source files + set(ament_cmake_copyright_FOUND TRUE) + # the following line skips cpplint (only works in a git repo) + # comment the line when this package is in a git repo and when + # a copyright and license is added to all source files + set(ament_cmake_cpplint_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + +ament_auto_package(INSTALL_TO_SHARE + params + rviz + launch + ) diff --git a/src/rm_navigation/rm_navigation/launch/bringup_rm_navigation.py b/src/rm_navigation/rm_navigation/launch/bringup_rm_navigation.py new file mode 100644 index 0000000..f634161 --- /dev/null +++ b/src/rm_navigation/rm_navigation/launch/bringup_rm_navigation.py @@ -0,0 +1,156 @@ +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import (DeclareLaunchArgument, GroupAction, + IncludeLaunchDescription, SetEnvironmentVariable) +from launch.conditions import IfCondition +from launch.launch_description_sources import PythonLaunchDescriptionSource +from launch.substitutions import LaunchConfiguration +from launch_ros.actions import Node +from launch_ros.actions import PushRosNamespace +from nav2_common.launch import RewrittenYaml + + +def generate_launch_description(): + # Get the launch directory + bringup_dir = get_package_share_directory('rm_navigation') + launch_dir = os.path.join(bringup_dir, 'launch') + + # Create the launch configuration variables + namespace = LaunchConfiguration('namespace') + use_namespace = LaunchConfiguration('use_namespace') + map_yaml_file = LaunchConfiguration('map') + use_sim_time = LaunchConfiguration('use_sim_time') + params_file = LaunchConfiguration('params_file') + autostart = LaunchConfiguration('autostart') + use_composition = LaunchConfiguration('use_composition') + use_respawn = LaunchConfiguration('use_respawn') + log_level = LaunchConfiguration('log_level') + use_nav_rviz = LaunchConfiguration('nav_rviz') + + remappings = [('/tf', 'tf'), + ('/tf_static', 'tf_static')] + + # Create our own temporary YAML files that include substitutions + param_substitutions = { + 'use_sim_time': use_sim_time, + 'yaml_filename': map_yaml_file} + + configured_params = RewrittenYaml( + source_file=params_file, + root_key=namespace, + param_rewrites=param_substitutions, + convert_types=True) + + stdout_linebuf_envvar = SetEnvironmentVariable( + 'RCUTILS_LOGGING_BUFFERED_STREAM', '1') + + declare_namespace_cmd = DeclareLaunchArgument( + 'namespace', + default_value='', + description='Top-level namespace') + + declare_use_namespace_cmd = DeclareLaunchArgument( + 'use_namespace', + default_value='false', + description='Whether to apply a namespace to the navigation stack') + + declare_use_slam_cmd = DeclareLaunchArgument( + 'use_slam', + default_value='True', + description='Whether run a SLAM') + + declare_map_yaml_cmd = DeclareLaunchArgument( + 'map', + default_value= os.path.join(bringup_dir,'map', 'RMUL.yaml'), + description='Full path to map yaml file to load') + + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', + default_value='True', + description='Use simulation (Gazebo) clock if true') + + declare_params_file_cmd = DeclareLaunchArgument( + 'params_file', + default_value=os.path.join(bringup_dir, 'params', 'nav2_params.yaml'), + description='Full path to the ROS2 parameters file to use for all launched nodes') + + + declare_autostart_cmd = DeclareLaunchArgument( + 'autostart', default_value='True', + description='Automatically startup the nav2 stack') + + declare_use_composition_cmd = DeclareLaunchArgument( + 'use_composition', default_value='True', + description='Whether to use composed bringup') + + declare_use_respawn_cmd = DeclareLaunchArgument( + 'use_respawn', default_value='True', + description='Whether to respawn if a node crashes. Applied when composition is disabled.') + + declare_log_level_cmd = DeclareLaunchArgument( + 'log_level', default_value='info', + description='log level') + + declare_nav_rviz_cmd = DeclareLaunchArgument( + 'nav_rviz', + default_value='True', + description='Visualize navigation2 if true') + + # Specify the actions + bringup_cmd_group = GroupAction([ + PushRosNamespace( + condition=IfCondition(use_namespace), + namespace=namespace), + + Node( + condition=IfCondition(use_composition), + name='nav2_container', + package='rclcpp_components', + executable='component_container_mt', + parameters=[configured_params, {'autostart': autostart}], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings, + output='screen'), + + IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(launch_dir, 'navigation_launch.py')), + launch_arguments={'namespace': namespace, + 'use_sim_time': use_sim_time, + 'autostart': autostart, + 'params_file': params_file, + 'use_composition': use_composition, + 'use_respawn': use_respawn, + 'container_name': 'nav2_container'}.items()), + + IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(launch_dir, 'rviz_launch.py')), + condition=IfCondition(use_nav_rviz) + ), + ]) + + # Create the launch description and populate + ld = LaunchDescription() + + # Set environment variables + ld.add_action(stdout_linebuf_envvar) + + # Declare the launch options + ld.add_action(declare_namespace_cmd) + ld.add_action(declare_use_namespace_cmd) + ld.add_action(declare_use_slam_cmd) + ld.add_action(declare_map_yaml_cmd) + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_params_file_cmd) + ld.add_action(declare_autostart_cmd) + ld.add_action(declare_use_composition_cmd) + ld.add_action(declare_use_respawn_cmd) + ld.add_action(declare_log_level_cmd) + ld.add_action(declare_nav_rviz_cmd) + + # Add the actions to launch all of the navigation nodes + ld.add_action(bringup_cmd_group) + + return ld diff --git a/src/rm_navigation/rm_navigation/launch/localization_amcl_launch.py b/src/rm_navigation/rm_navigation/launch/localization_amcl_launch.py new file mode 100644 index 0000000..598084f --- /dev/null +++ b/src/rm_navigation/rm_navigation/launch/localization_amcl_launch.py @@ -0,0 +1,149 @@ +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument, GroupAction, IncludeLaunchDescription, SetEnvironmentVariable +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PythonExpression +from launch.launch_description_sources import PythonLaunchDescriptionSource +from launch_ros.actions import LoadComposableNodes, Node +from launch_ros.descriptions import ComposableNode, ParameterFile +from nav2_common.launch import RewrittenYaml + + +def generate_launch_description(): + # Get the launch directory + bringup_dir = get_package_share_directory('nav2_bringup') + + namespace = LaunchConfiguration('namespace') + use_sim_time = LaunchConfiguration('use_sim_time') + autostart = LaunchConfiguration('autostart') + params_file = LaunchConfiguration('params_file') + use_composition = LaunchConfiguration('use_composition') + container_name = LaunchConfiguration('container_name') + container_name_full = (namespace, '/', container_name) + use_respawn = LaunchConfiguration('use_respawn') + log_level = LaunchConfiguration('log_level') + + lifecycle_nodes = ['amcl'] + + remappings = [('/tf', 'tf'), + ('/tf_static', 'tf_static')] + + # Create our own temporary YAML files that include substitutions + param_substitutions = { + 'use_sim_time': use_sim_time} + + configured_params = ParameterFile( + RewrittenYaml( + source_file=params_file, + root_key=namespace, + param_rewrites=param_substitutions, + convert_types=True), + allow_substs=True) + + stdout_linebuf_envvar = SetEnvironmentVariable( + 'RCUTILS_LOGGING_BUFFERED_STREAM', '1') + + declare_namespace_cmd = DeclareLaunchArgument( + 'namespace', + default_value='', + description='Top-level namespace') + + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', + default_value='false', + description='Use simulation (Gazebo) clock if true') + + declare_params_file_cmd = DeclareLaunchArgument( + 'params_file', + default_value=os.path.join(bringup_dir, 'params', 'nav2_params.yaml'), + description='Full path to the ROS2 parameters file to use for all launched nodes') + + declare_autostart_cmd = DeclareLaunchArgument( + 'autostart', default_value='true', + description='Automatically startup the nav2 stack') + + declare_use_composition_cmd = DeclareLaunchArgument( + 'use_composition', default_value='False', + description='Use composed bringup if True') + + declare_container_name_cmd = DeclareLaunchArgument( + 'container_name', default_value='nav2_container', + description='the name of conatiner that nodes will load in if use composition') + + declare_use_respawn_cmd = DeclareLaunchArgument( + 'use_respawn', default_value='False', + description='Whether to respawn if a node crashes. Applied when composition is disabled.') + + declare_log_level_cmd = DeclareLaunchArgument( + 'log_level', default_value='info', + description='log level') + + load_nodes = GroupAction( + condition=IfCondition(PythonExpression(['not ', use_composition])), + actions=[ + Node( + package='nav2_amcl', + executable='amcl', + name='amcl', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings), + Node( + package='nav2_lifecycle_manager', + executable='lifecycle_manager', + name='lifecycle_manager_localization', + output='screen', + arguments=['--ros-args', '--log-level', log_level], + parameters=[{'use_sim_time': use_sim_time}, + {'autostart': autostart}, + {'node_names': lifecycle_nodes}]) + ] + ) + + load_composable_nodes = LoadComposableNodes( + condition=IfCondition(use_composition), + target_container=container_name_full, + composable_node_descriptions=[ + ComposableNode( + package='nav2_amcl', + plugin='nav2_amcl::AmclNode', + name='amcl', + parameters=[configured_params], + remappings=remappings), + ComposableNode( + package='nav2_lifecycle_manager', + plugin='nav2_lifecycle_manager::LifecycleManager', + name='lifecycle_manager_localization', + parameters=[{'use_sim_time': use_sim_time, + 'autostart': autostart, + 'node_names': lifecycle_nodes}]), + ], + ) + + # Create the launch description and populate + ld = LaunchDescription() + + # Set environment variables + ld.add_action(stdout_linebuf_envvar) + + # Declare the launch options + ld.add_action(declare_namespace_cmd) + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_params_file_cmd) + ld.add_action(declare_autostart_cmd) + ld.add_action(declare_use_composition_cmd) + ld.add_action(declare_container_name_cmd) + ld.add_action(declare_use_respawn_cmd) + ld.add_action(declare_log_level_cmd) + + # Add the actions to launch all of the localiztion nodes + ld.add_action(load_nodes) + ld.add_action(load_composable_nodes) + + return ld \ No newline at end of file diff --git a/src/rm_navigation/rm_navigation/launch/map_server_launch.py b/src/rm_navigation/rm_navigation/launch/map_server_launch.py new file mode 100644 index 0000000..ecc31b5 --- /dev/null +++ b/src/rm_navigation/rm_navigation/launch/map_server_launch.py @@ -0,0 +1,158 @@ +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument, GroupAction, SetEnvironmentVariable +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PythonExpression +from launch_ros.actions import LoadComposableNodes +from launch_ros.actions import Node +from launch_ros.descriptions import ComposableNode, ParameterFile +from nav2_common.launch import RewrittenYaml + + +def generate_launch_description(): + # Get the launch directory + bringup_dir = get_package_share_directory('nav2_bringup') + + namespace = LaunchConfiguration('namespace') + map_yaml_file = LaunchConfiguration('map') + use_sim_time = LaunchConfiguration('use_sim_time') + autostart = LaunchConfiguration('autostart') + params_file = LaunchConfiguration('params_file') + use_composition = LaunchConfiguration('use_composition') + container_name = LaunchConfiguration('container_name') + container_name_full = (namespace, '/', container_name) + use_respawn = LaunchConfiguration('use_respawn') + log_level = LaunchConfiguration('log_level') + + lifecycle_nodes = ['map_server'] + + remappings = [('/tf', 'tf'), + ('/tf_static', 'tf_static')] + + # Create our own temporary YAML files that include substitutions + param_substitutions = { + 'use_sim_time': use_sim_time, + 'yaml_filename': map_yaml_file} + + configured_params = ParameterFile( + RewrittenYaml( + source_file=params_file, + root_key=namespace, + param_rewrites=param_substitutions, + convert_types=True), + allow_substs=True) + + stdout_linebuf_envvar = SetEnvironmentVariable( + 'RCUTILS_LOGGING_BUFFERED_STREAM', '1') + + declare_namespace_cmd = DeclareLaunchArgument( + 'namespace', + default_value='', + description='Top-level namespace') + + declare_map_yaml_cmd = DeclareLaunchArgument( + 'map', + description='Full path to map yaml file to load') + + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', + default_value='false', + description='Use simulation (Gazebo) clock if true') + + declare_params_file_cmd = DeclareLaunchArgument( + 'params_file', + default_value=os.path.join(bringup_dir, 'params', 'nav2_params.yaml'), + description='Full path to the ROS2 parameters file to use for all launched nodes') + + declare_autostart_cmd = DeclareLaunchArgument( + 'autostart', default_value='true', + description='Automatically startup the nav2 stack') + + declare_use_composition_cmd = DeclareLaunchArgument( + 'use_composition', default_value='False', + description='Use composed bringup if True') + + declare_container_name_cmd = DeclareLaunchArgument( + 'container_name', default_value='nav2_container', + description='the name of conatiner that nodes will load in if use composition') + + declare_use_respawn_cmd = DeclareLaunchArgument( + 'use_respawn', default_value='False', + description='Whether to respawn if a node crashes. Applied when composition is disabled.') + + declare_log_level_cmd = DeclareLaunchArgument( + 'log_level', default_value='info', + description='log level') + + load_nodes = GroupAction( + condition=IfCondition(PythonExpression(['not ', use_composition])), + actions=[ + Node( + package='nav2_map_server', + executable='map_server', + name='map_server', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings), + + Node( + package='nav2_lifecycle_manager', + executable='lifecycle_manager', + name='lifecycle_manager_localization', + output='screen', + arguments=['--ros-args', '--log-level', log_level], + parameters=[{'use_sim_time': use_sim_time}, + {'autostart': autostart}, + {'node_names': lifecycle_nodes}]) + ] + ) + + load_composable_nodes = LoadComposableNodes( + condition=IfCondition(use_composition), + target_container=container_name_full, + composable_node_descriptions=[ + ComposableNode( + package='nav2_map_server', + plugin='nav2_map_server::MapServer', + name='map_server', + parameters=[configured_params], + remappings=remappings), + + ComposableNode( + package='nav2_lifecycle_manager', + plugin='nav2_lifecycle_manager::LifecycleManager', + name='lifecycle_manager_localization', + parameters=[{'use_sim_time': use_sim_time, + 'autostart': autostart, + 'node_names': lifecycle_nodes}]), + ], + ) + + # Create the launch description and populate + ld = LaunchDescription() + + # Set environment variables + ld.add_action(stdout_linebuf_envvar) + + # Declare the launch options + ld.add_action(declare_namespace_cmd) + ld.add_action(declare_map_yaml_cmd) + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_params_file_cmd) + ld.add_action(declare_autostart_cmd) + ld.add_action(declare_use_composition_cmd) + ld.add_action(declare_container_name_cmd) + ld.add_action(declare_use_respawn_cmd) + ld.add_action(declare_log_level_cmd) + + # Add the actions to launch all of the localiztion nodes + ld.add_action(load_nodes) + ld.add_action(load_composable_nodes) + + return ld \ No newline at end of file diff --git a/src/rm_navigation/rm_navigation/launch/navigation_launch.py b/src/rm_navigation/rm_navigation/launch/navigation_launch.py new file mode 100644 index 0000000..1dadff1 --- /dev/null +++ b/src/rm_navigation/rm_navigation/launch/navigation_launch.py @@ -0,0 +1,270 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument, GroupAction, SetEnvironmentVariable +from launch.conditions import IfCondition +from launch.substitutions import LaunchConfiguration, PythonExpression +from launch_ros.actions import LoadComposableNodes +from launch_ros.actions import Node +from launch_ros.descriptions import ComposableNode +from nav2_common.launch import RewrittenYaml + + +def generate_launch_description(): + # Get the launch directory + bringup_dir = get_package_share_directory('rm_navigation') + + namespace = LaunchConfiguration('namespace') + use_sim_time = LaunchConfiguration('use_sim_time') + autostart = LaunchConfiguration('autostart') + params_file = LaunchConfiguration('params_file') + use_composition = LaunchConfiguration('use_composition') + container_name = LaunchConfiguration('container_name') + container_name_full = (namespace, '/', container_name) + use_respawn = LaunchConfiguration('use_respawn') + log_level = LaunchConfiguration('log_level') + + lifecycle_nodes = ['controller_server', + 'smoother_server', + 'planner_server', + 'behavior_server', + 'bt_navigator', + 'waypoint_follower', + 'velocity_smoother'] + + # Map fully qualified names to relative ones so the node's namespace can be prepended. + # In case of the transforms (tf), currently, there doesn't seem to be a better alternative + # https://github.com/ros/geometry2/issues/32 + # https://github.com/ros/robot_state_publisher/pull/30 + # TODO(orduno) Substitute with `PushNodeRemapping` + # https://github.com/ros2/launch_ros/issues/56 + remappings = [('/tf', 'tf'), + ('/tf_static', 'tf_static')] + + # Create our own temporary YAML files that include substitutions + param_substitutions = { + 'use_sim_time': use_sim_time, + 'autostart': autostart} + + configured_params = RewrittenYaml( + source_file=params_file, + root_key=namespace, + param_rewrites=param_substitutions, + convert_types=True) + + stdout_linebuf_envvar = SetEnvironmentVariable( + 'RCUTILS_LOGGING_BUFFERED_STREAM', '1') + + declare_namespace_cmd = DeclareLaunchArgument( + 'namespace', + default_value='', + description='Top-level namespace') + + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', + default_value='true', + description='Use simulation (Gazebo) clock if true') + + declare_params_file_cmd = DeclareLaunchArgument( + 'params_file', + default_value=os.path.join(bringup_dir, 'params', 'nav2_params.yaml'), + description='Full path to the ROS2 parameters file to use for all launched nodes') + + declare_autostart_cmd = DeclareLaunchArgument( + 'autostart', default_value='true', + description='Automatically startup the nav2 stack') + + declare_use_composition_cmd = DeclareLaunchArgument( + 'use_composition', default_value='False', + description='Use composed bringup if True') + + declare_container_name_cmd = DeclareLaunchArgument( + 'container_name', default_value='nav2_container', + description='the name of conatiner that nodes will load in if use composition') + + declare_use_respawn_cmd = DeclareLaunchArgument( + 'use_respawn', default_value='False', + description='Whether to respawn if a node crashes. Applied when composition is disabled.') + + declare_log_level_cmd = DeclareLaunchArgument( + 'log_level', default_value='info', + description='log level') + + load_nodes = GroupAction( + condition=IfCondition(PythonExpression(['not ', use_composition])), + actions=[ + Node( + package='nav2_controller', + executable='controller_server', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings + [('cmd_vel', 'cmd_vel_nav')]), + Node( + package='nav2_smoother', + executable='smoother_server', + name='smoother_server', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings), + Node( + package='nav2_planner', + executable='planner_server', + name='planner_server', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings), + Node( + package='nav2_behaviors', + executable='behavior_server', + name='behavior_server', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings), + Node( + package='nav2_bt_navigator', + executable='bt_navigator', + name='bt_navigator', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings), + Node( + package='nav2_waypoint_follower', + executable='waypoint_follower', + name='waypoint_follower', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings), + Node( + package='nav2_velocity_smoother', + executable='velocity_smoother', + name='velocity_smoother', + output='screen', + respawn=use_respawn, + respawn_delay=2.0, + parameters=[configured_params], + arguments=['--ros-args', '--log-level', log_level], + remappings=remappings + + [('cmd_vel', 'cmd_vel_nav'), ('cmd_vel_smoothed', 'cmd_vel')]), + Node( + package='nav2_lifecycle_manager', + executable='lifecycle_manager', + name='lifecycle_manager_navigation', + output='screen', + arguments=['--ros-args', '--log-level', log_level], + parameters=[{'use_sim_time': use_sim_time}, + {'autostart': autostart}, + {'node_names': lifecycle_nodes}]), + ] + ) + + load_composable_nodes = LoadComposableNodes( + condition=IfCondition(use_composition), + target_container=container_name_full, + composable_node_descriptions=[ + ComposableNode( + package='nav2_controller', + plugin='nav2_controller::ControllerServer', + name='controller_server', + parameters=[configured_params], + remappings=remappings + [('cmd_vel', 'cmd_vel_nav')]), + ComposableNode( + package='nav2_smoother', + plugin='nav2_smoother::SmootherServer', + name='smoother_server', + parameters=[configured_params], + remappings=remappings), + ComposableNode( + package='nav2_planner', + plugin='nav2_planner::PlannerServer', + name='planner_server', + parameters=[configured_params], + remappings=remappings), + ComposableNode( + package='nav2_behaviors', + plugin='behavior_server::BehaviorServer', + name='behavior_server', + parameters=[configured_params], + remappings=remappings), + ComposableNode( + package='nav2_bt_navigator', + plugin='nav2_bt_navigator::BtNavigator', + name='bt_navigator', + parameters=[configured_params], + remappings=remappings), + ComposableNode( + package='nav2_waypoint_follower', + plugin='nav2_waypoint_follower::WaypointFollower', + name='waypoint_follower', + parameters=[configured_params], + remappings=remappings), + ComposableNode( + package='nav2_velocity_smoother', + plugin='nav2_velocity_smoother::VelocitySmoother', + name='velocity_smoother', + parameters=[configured_params], + remappings=remappings + + [('cmd_vel', 'cmd_vel_nav'), ('cmd_vel_smoothed', 'cmd_vel')]), + ComposableNode( + package='nav2_lifecycle_manager', + plugin='nav2_lifecycle_manager::LifecycleManager', + name='lifecycle_manager_navigation', + parameters=[{'use_sim_time': use_sim_time, + 'autostart': autostart, + 'node_names': lifecycle_nodes}]), + ], + ) + + # Create the launch description and populate + ld = LaunchDescription() + + # Set environment variables + ld.add_action(stdout_linebuf_envvar) + + # Declare the launch options + ld.add_action(declare_namespace_cmd) + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_params_file_cmd) + ld.add_action(declare_autostart_cmd) + ld.add_action(declare_use_composition_cmd) + ld.add_action(declare_container_name_cmd) + ld.add_action(declare_use_respawn_cmd) + ld.add_action(declare_log_level_cmd) + # Add the actions to launch all of the navigation nodes + ld.add_action(load_nodes) + ld.add_action(load_composable_nodes) + + return ld diff --git a/src/rm_navigation/rm_navigation/launch/rviz_launch.py b/src/rm_navigation/rm_navigation/launch/rviz_launch.py new file mode 100644 index 0000000..d786039 --- /dev/null +++ b/src/rm_navigation/rm_navigation/launch/rviz_launch.py @@ -0,0 +1,109 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument, EmitEvent, RegisterEventHandler +from launch.conditions import IfCondition, UnlessCondition +from launch.event_handlers import OnProcessExit +from launch.events import Shutdown +from launch.substitutions import LaunchConfiguration +from launch_ros.actions import Node +from nav2_common.launch import ReplaceString + + +def generate_launch_description(): + # Get the launch directory + bringup_dir = get_package_share_directory('rm_navigation') + + # Create the launch configuration variables + namespace = LaunchConfiguration('namespace') + use_namespace = LaunchConfiguration('use_namespace') + rviz_config_file = LaunchConfiguration('rviz_config') + + # Declare the launch arguments + declare_namespace_cmd = DeclareLaunchArgument( + 'namespace', + default_value='navigation', + description=('Top-level namespace. The value will be used to replace the ' + ' keyword on the rviz config file.')) + + declare_use_namespace_cmd = DeclareLaunchArgument( + 'use_namespace', + default_value='false', + description='Whether to apply a namespace to the navigation stack') + + declare_rviz_config_file_cmd = DeclareLaunchArgument( + 'rviz_config', + default_value=os.path.join(bringup_dir, 'rviz', 'nav2.rviz'), + description='Full path to the RVIZ config file to use') + + # Launch rviz + start_rviz_cmd = Node( + condition=UnlessCondition(use_namespace), + package='rviz2', + executable='rviz2', + arguments=['-d', rviz_config_file], + output='screen') + + namespaced_rviz_config_file = ReplaceString( + source_file=rviz_config_file, + replacements={'': ('/', namespace)}) + + start_namespaced_rviz_cmd = Node( + condition=IfCondition(use_namespace), + package='rviz2', + executable='rviz2', + namespace=namespace, + arguments=['-d', namespaced_rviz_config_file], + output='screen', + remappings=[('/map', 'map'), + ('/tf', 'tf'), + ('/tf_static', 'tf_static'), + ('/goal_pose', 'goal_pose'), + ('/clicked_point', 'clicked_point'), + ('/initialpose', 'initialpose')]) + + exit_event_handler = RegisterEventHandler( + condition=UnlessCondition(use_namespace), + event_handler=OnProcessExit( + target_action=start_rviz_cmd, + on_exit=EmitEvent(event=Shutdown(reason='rviz exited')))) + + exit_event_handler_namespaced = RegisterEventHandler( + condition=IfCondition(use_namespace), + event_handler=OnProcessExit( + target_action=start_namespaced_rviz_cmd, + on_exit=EmitEvent(event=Shutdown(reason='rviz exited')))) + + # Create the launch description and populate + ld = LaunchDescription() + + # Declare the launch options + ld.add_action(declare_namespace_cmd) + ld.add_action(declare_use_namespace_cmd) + ld.add_action(declare_rviz_config_file_cmd) + + # Add any conditioned actions + ld.add_action(start_rviz_cmd) + ld.add_action(start_namespaced_rviz_cmd) + + # Add other nodes and processes we need + ld.add_action(exit_event_handler) + ld.add_action(exit_event_handler_namespaced) + + return ld diff --git a/src/rm_navigation/rm_navigation/package.xml b/src/rm_navigation/rm_navigation/package.xml new file mode 100644 index 0000000..8030112 --- /dev/null +++ b/src/rm_navigation/rm_navigation/package.xml @@ -0,0 +1,20 @@ + + + + rm_navigation + 0.0.0 + TODO: Package description + fyt + TODO: License declaration + + ament_cmake + + spatio_temporal_voxel_layer + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/src/rm_navigation/rm_navigation/params/mapper_params_online_async.yaml b/src/rm_navigation/rm_navigation/params/mapper_params_online_async.yaml new file mode 100644 index 0000000..f1677b6 --- /dev/null +++ b/src/rm_navigation/rm_navigation/params/mapper_params_online_async.yaml @@ -0,0 +1,73 @@ +slam_toolbox: + ros__parameters: + + # Plugin params + solver_plugin: solver_plugins::CeresSolver + ceres_linear_solver: SPARSE_NORMAL_CHOLESKY + ceres_preconditioner: SCHUR_JACOBI + ceres_trust_strategy: LEVENBERG_MARQUARDT + ceres_dogleg_type: TRADITIONAL_DOGLEG + ceres_loss_function: None + + # ROS Parameters + odom_frame: odom + map_frame: map + base_frame: livox_frame + scan_topic: /scan + mode: mapping #localization + + # if you'd like to immediately start continuing a map at a given pose + # or at the dock, but they are mutually exclusive, if pose is given + # will use pose + #map_file_name: test_steve + # map_start_pose: [0.0, 0.0, 0.0] + #map_start_at_dock: true + + debug_logging: false + throttle_scans: 1 + transform_publish_period: 0.02 #if 0 never publishes odometry + map_update_interval: 5.0 + resolution: 0.05 + max_laser_range: 20.0 #for rastering images + minimum_time_interval: 0.5 + transform_timeout: 0.2 + tf_buffer_duration: 30. + stack_size_to_use: 40000000 #// program needs a larger stack size to serialize large maps + enable_interactive_mode: true + + # General Parameters + use_scan_matching: true + use_scan_barycenter: true + minimum_travel_distance: 0.5 + minimum_travel_heading: 0.5 + scan_buffer_size: 10 + scan_buffer_maximum_scan_distance: 10.0 + link_match_minimum_response_fine: 0.1 + link_scan_maximum_distance: 1.5 + loop_search_maximum_distance: 3.0 + do_loop_closing: true + loop_match_minimum_chain_size: 10 + loop_match_maximum_variance_coarse: 3.0 + loop_match_minimum_response_coarse: 0.35 + loop_match_minimum_response_fine: 0.45 + + # Correlation Parameters - Correlation Parameters + correlation_search_space_dimension: 0.5 + correlation_search_space_resolution: 0.01 + correlation_search_space_smear_deviation: 0.1 + + # Correlation Parameters - Loop Closure Parameters + loop_search_space_dimension: 8.0 + loop_search_space_resolution: 0.05 + loop_search_space_smear_deviation: 0.03 + + # Scan Matcher Parameters + distance_variance_penalty: 0.5 + angle_variance_penalty: 1.0 + + fine_search_angle_offset: 0.00349 + coarse_search_angle_offset: 0.349 + coarse_angle_resolution: 0.0349 + minimum_angle_penalty: 0.9 + minimum_distance_penalty: 0.5 + use_response_expansion: true \ No newline at end of file diff --git a/src/rm_navigation/rm_navigation/params/nav2_params.yaml b/src/rm_navigation/rm_navigation/params/nav2_params.yaml new file mode 100644 index 0000000..0d13565 --- /dev/null +++ b/src/rm_navigation/rm_navigation/params/nav2_params.yaml @@ -0,0 +1,371 @@ +amcl: + ros__parameters: + use_sim_time: False + alpha1: 0.2 + alpha2: 0.2 + alpha3: 0.2 + alpha4: 0.2 + alpha5: 0.2 + base_frame_id: "base_link" + beam_skip_distance: 0.5 + beam_skip_error_threshold: 0.9 + beam_skip_threshold: 0.3 + do_beamskip: false + global_frame_id: "map" + lambda_short: 0.1 + laser_likelihood_max_dist: 2.0 + laser_max_range: 100.0 + laser_min_range: -1.0 + laser_model_type: "likelihood_field" + max_beams: 60 + max_particles: 2000 + min_particles: 500 + odom_frame_id: "odom" + pf_err: 0.05 + pf_z: 0.99 + recovery_alpha_fast: 0.0 + recovery_alpha_slow: 0.0 + resample_interval: 1 + robot_model_type: "nav2_amcl::OmniMotionModel" + save_pose_rate: 0.5 + sigma_hit: 0.2 + tf_broadcast: true + transform_tolerance: 1.0 + update_min_a: 0.2 + update_min_d: 0.25 + z_hit: 0.5 + z_max: 0.05 + z_rand: 0.5 + z_short: 0.05 + scan_topic: scan + +amcl_map_client: + ros__parameters: + use_sim_time: False + +amcl_rclcpp_node: + ros__parameters: + use_sim_time: False + +bt_navigator: + ros__parameters: + use_sim_time: False + global_frame: map + robot_base_frame: base_link + odom_topic: /Odometry + bt_loop_duration: 10 + default_server_timeout: 20 + enable_groot_monitoring: True + groot_zmq_publisher_port: 1666 + groot_zmq_server_port: 1667 + plugin_lib_names: + - nav2_compute_path_to_pose_action_bt_node + - nav2_compute_path_through_poses_action_bt_node + - nav2_follow_path_action_bt_node + - nav2_back_up_action_bt_node + - nav2_spin_action_bt_node + - nav2_wait_action_bt_node + - nav2_clear_costmap_service_bt_node + - nav2_is_stuck_condition_bt_node + - nav2_goal_reached_condition_bt_node + - nav2_goal_updated_condition_bt_node + - nav2_initial_pose_received_condition_bt_node + - nav2_reinitialize_global_localization_service_bt_node + - nav2_rate_controller_bt_node + - nav2_distance_controller_bt_node + - nav2_speed_controller_bt_node + - nav2_truncate_path_action_bt_node + - nav2_goal_updater_node_bt_node + - nav2_recovery_node_bt_node + - nav2_pipeline_sequence_bt_node + - nav2_round_robin_node_bt_node + - nav2_transform_available_condition_bt_node + - nav2_time_expired_condition_bt_node + - nav2_distance_traveled_condition_bt_node + - nav2_single_trigger_bt_node + - nav2_is_battery_low_condition_bt_node + - nav2_navigate_through_poses_action_bt_node + - nav2_navigate_to_pose_action_bt_node + - nav2_remove_passed_goals_action_bt_node + - nav2_planner_selector_bt_node + - nav2_controller_selector_bt_node + - nav2_goal_checker_selector_bt_node + +bt_navigator_rclcpp_node: + ros__parameters: + use_sim_time: False + +controller_server: + ros__parameters: + use_sim_time: False + controller_frequency: 5.0 + min_x_velocity_threshold: 0.001 + min_y_velocity_threshold: 0.5 + min_theta_velocity_threshold: 0.001 + failure_tolerance: 0.3 + progress_checker_plugin: "progress_checker" + goal_checker_plugins: ["general_goal_checker"] # "precise_goal_checker" + controller_plugins: ["FollowPath"] + + # Progress checker parameters + progress_checker: + plugin: "nav2_controller::SimpleProgressChecker" + required_movement_radius: 0.5 + movement_time_allowance: 10.0 + + # Goal checker parameters + general_goal_checker: + stateful: True + plugin: "nav2_controller::SimpleGoalChecker" + xy_goal_tolerance: 0.25 + yaw_goal_tolerance: 0.25 + # DWB parameters + FollowPath: + plugin: "dwb_core::DWBLocalPlanner" + debug_trajectory_details: False + min_vel_x: -2.5 + min_vel_y: -2.5 + max_vel_x: 2.5 + max_vel_y: 2.5 + max_vel_theta: 12.0 + min_speed_xy: -8.0 + max_speed_xy: 8.0 + min_speed_theta: -12.0 + acc_lim_x: 5.0 + acc_lim_y: 5.0 + acc_lim_theta: 15.0 + decel_lim_x: -5.0 + decel_lim_y: -5.0 + decel_lim_theta: -15.0 + vx_samples: 20 + vy_samples: 20 + vtheta_samples: 20 + sim_time: 0.51 + linear_granularity: 0.05 + angular_granularity: 0.025 + transform_tolerance: 0.2 + xy_goal_tolerance: 0.25 + trans_stopped_velocity: 0.25 + short_circuit_trajectory_evaluation: True + stateful: True + critics: ["RotateToGoal", "Oscillation", "BaseObstacle", "GoalAlign", "PathAlign", "PathDist", "GoalDist"] + BaseObstacle.scale: 0.02 + PathAlign.scale: 32.0 + PathAlign.forward_point_distance: 0.1 + GoalAlign.scale: 24.0 + GoalAlign.forward_point_distance: 0.1 + PathDist.scale: 32.0 + GoalDist.scale: 24.0 + RotateToGoal.scale: 32.0 + RotateToGoal.slowing_factor: 5.0 + RotateToGoal.lookahead_time: -1.0 + +controller_server_rclcpp_node: + ros__parameters: + use_sim_time: False + +local_costmap: + local_costmap: + ros__parameters: + update_frequency: 20.0 + publish_frequency: 10.0 + # global_frame: odom + global_frame: map + robot_base_frame: base_link + use_sim_time: False + rolling_window: true + width: 5 + height: 5 + resolution: 0.05 + robot_radius: 0.2 + plugins: ["voxel2d_layer", "voxel3d_layer", "inflation_layer"] + inflation_layer: + plugin: "nav2_costmap_2d::InflationLayer" + cost_scaling_factor: 8.0 + inflation_radius: 0.7 + voxel2d_layer: + plugin: "nav2_costmap_2d::VoxelLayer" + enabled: True + publish_voxel_map: False + origin_z: 0.0 + z_resolution: 0.05 + z_voxels: 16 + max_obstacle_height: 2.0 + mark_threshold: 0 + observation_sources: scan + scan: + topic: /scan + raytrace_min_range: 0.0 + raytrace_max_range: 50.0 + min_obstacle_height: 0.0 + max_obstacle_height: 2.0 + clearing: True + marking: True + data_type: "LaserScan" + voxel3d_layer: + plugin: "nav2_costmap_2d::VoxelLayer" + enabled: True + publish_voxel_map: False + origin_z: 0.0 + z_resolution: 0.05 + z_voxels: 16 + mark_threshold: 1 + observation_sources: livox + min_obstacle_height: 0.00 + max_obstacle_height: 2.0 + livox: + topic: /livox/lidar/pointcloud + raytrace_min_range: 0.0 + raytrace_max_range: 50.0 + min_obstacle_height: 0.0 + max_obstacle_height: 2.0 + clearing: True + marking: True + data_type: "PointCloud2" + static_layer: + map_subscribe_transient_local: True + always_send_full_costmap: True + local_costmap_client: + ros__parameters: + use_sim_time: False + local_costmap_rclcpp_node: + ros__parameters: + use_sim_time: False + +global_costmap: + global_costmap: + ros__parameters: + update_frequency: 20.0 + publish_frequency: 10.0 + global_frame: map + robot_base_frame: base_link + use_sim_time: False + robot_radius: 0.2 + resolution: 0.05 + track_unknown_space: true + plugins: ["static_layer", "voxel2d_layer", "voxel3d_layer", "inflation_layer"] + voxel2d_layer: + plugin: "nav2_costmap_2d::ObstacleLayer" + enabled: True + observation_sources: scan + scan: + topic: /scan + raytrace_min_range: 0.0 + raytrace_max_range: 50.0 + min_obstacle_height: 0.0 + max_obstacle_height: 2.0 + clearing: True + marking: True + data_type: "LaserScan" + voxel3d_layer: + plugin: "nav2_costmap_2d::VoxelLayer" + enabled: True + publish_voxel_map: False + origin_z: 0.0 + z_resolution: 0.05 + z_voxels: 16 + mark_threshold: 1 + observation_sources: livox + min_obstacle_height: 0.00 + max_obstacle_height: 2.0 + livox: + topic: /livox/lidar/pointcloud + raytrace_min_range: 0.0 + raytrace_max_range: 50.0 + min_obstacle_height: 0.0 + max_obstacle_height: 2.0 + clearing: True + marking: True + data_type: "PointCloud2" + static_layer: + plugin: "nav2_costmap_2d::StaticLayer" + map_subscribe_transient_local: True + inflation_layer: + plugin: "nav2_costmap_2d::InflationLayer" + cost_scaling_factor: 8.0 + inflation_radius: 0.7 + always_send_full_costmap: True + global_costmap_client: + ros__parameters: + use_sim_time: False + global_costmap_rclcpp_node: + ros__parameters: + use_sim_time: False + +map_server: + ros__parameters: + use_sim_time: False + yaml_filename: "" + +map_saver: + ros__parameters: + use_sim_time: False + save_map_timeout: 5.0 + free_thresh_default: 0.25 + occupied_thresh_default: 0.65 + map_subscribe_transient_local: True + +planner_server: + ros__parameters: + expected_planner_frequency: 20.0 + use_sim_time: False + planner_plugins: ["GridBased"] + GridBased: + plugin: "nav2_navfn_planner/NavfnPlanner" + tolerance: 0.5 + use_astar: false + allow_unknown: true + +# planner_server_rclcpp_node: +# ros__parameters: +# use_sim_time: False + +recoveries_server: + ros__parameters: + costmap_topic: local_costmap/costmap_raw + footprint_topic: local_costmap/published_footprint + cycle_frequency: 10.0 + recovery_plugins: ["spin", "backup", "wait"] + spin: + plugin: "nav2_recoveries/Spin" + backup: + plugin: "nav2_recoveries/BackUp" + wait: + plugin: "nav2_recoveries/Wait" + global_frame: odom + robot_base_frame: base_link + transform_timeout: 0.1 + use_sim_time: False + simulate_ahead_time: 2.0 + max_rotational_vel: 20.0 + min_rotational_vel: 0.4 + rotational_acc_lim: 10.0 + +robot_state_publisher: + ros__parameters: + use_sim_time: False + +waypoint_follower: + ros__parameters: + loop_rate: 20 + stop_on_failure: false + waypoint_task_executor_plugin: "wait_at_waypoint" + wait_at_waypoint: + plugin: "nav2_waypoint_follower::WaitAtWaypoint" + enabled: True + waypoint_pause_duration: 200 + +velocity_smoother: + ros__parameters: + use_sim_time: True + smoothing_frequency: 5.0 + scale_velocities: False + feedback: "CLOSED_LOOP" + max_velocity: [2.5, 2.5, 12.0] + min_velocity: [-2.5, -2.5, -12.0] + max_accel: [5.0, 5.0, 15.0] + max_decel: [-5.0, -5.0, -15.0] + odom_topic: "Odometry" + odom_duration: 0.1 + deadband_velocity: [0.0, 0.0, 0.0] + velocity_timeout: 1.0 \ No newline at end of file diff --git a/src/rm_navigation/rm_navigation/rviz/nav2.rviz b/src/rm_navigation/rm_navigation/rviz/nav2.rviz new file mode 100644 index 0000000..1925af2 --- /dev/null +++ b/src/rm_navigation/rm_navigation/rviz/nav2.rviz @@ -0,0 +1,665 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 0 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /TF1/Tree1 + Splitter Ratio: 0.5833333134651184 + Tree Height: 462 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: nav2_rviz_plugins/Navigation 2 + Name: Navigation 2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz_default_plugins/RobotModel + Collision Enabled: false + Description File: "" + Description Source: Topic + Description Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_description + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + dummy: + Alpha: 1 + Show Axes: false + Show Trail: false + imu_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + livox_frame: + Alpha: 1 + Show Axes: false + Show Trail: false + wheel_1: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_2: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_3: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_4: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Mass Properties: + Inertia: false + Mass: false + Name: RobotModel + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: false + base_link: + Value: true + base_link_fake: + Value: true + dummy: + Value: true + imu_link: + Value: true + lidar_odom: + Value: true + livox_frame: + Value: true + map: + Value: true + odom: + Value: true + wheel_1: + Value: true + wheel_2: + Value: true + wheel_3: + Value: true + wheel_4: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + map: + odom: + lidar_odom: + base_link: + base_link_fake: + {} + imu_link: + {} + livox_frame: + {} + wheel_1: + {} + wheel_2: + {} + wheel_3: + {} + wheel_4: + {} + Update Interval: 0 + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/LaserScan + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 0 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: LaserScan + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.009999999776482582 + Style: Points + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Best Effort + Value: /scan + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: voxel_grid + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.05000000074505806 + Style: Boxes + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /global_costmap/voxel_grid + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: "" + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: Bumper Hit + Position Transformer: "" + Selectable: true + Size (Pixels): 3 + Size (m): 0.07999999821186066 + Style: Spheres + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Best Effort + Value: /mobile_base/sensors/bumper_pointcloud + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 0.6000000238418579 + Class: rviz_default_plugins/Map + Color Scheme: map + Draw Behind: true + Enabled: true + Name: Map + Topic: + Depth: 1 + Durability Policy: Transient Local + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /map + Update Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /map_updates + Use Timestamp: false + Value: true + - Alpha: 1 + Class: nav2_rviz_plugins/ParticleCloud + Color: 0; 180; 0 + Enabled: true + Max Arrow Length: 0.30000001192092896 + Min Arrow Length: 0.019999999552965164 + Name: Amcl Particle Swarm + Shape: Arrow (Flat) + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Best Effort + Value: /particle_cloud + Value: true + - Class: rviz_common/Group + Displays: + - Alpha: 0.30000001192092896 + Class: rviz_default_plugins/Map + Color Scheme: costmap + Draw Behind: false + Enabled: true + Name: Global Costmap + Topic: + Depth: 1 + Durability Policy: Transient Local + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /global_costmap/costmap + Update Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /global_costmap/costmap_updates + Use Timestamp: false + Value: true + - Alpha: 0.30000001192092896 + Class: rviz_default_plugins/Map + Color Scheme: costmap + Draw Behind: false + Enabled: true + Name: Downsampled Costmap + Topic: + Depth: 1 + Durability Policy: Transient Local + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /downsampled_costmap + Update Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /downsampled_costmap_updates + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz_default_plugins/Path + Color: 255; 0; 0 + Enabled: true + Head Diameter: 0.019999999552965164 + Head Length: 0.019999999552965164 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: Arrows + Radius: 0.029999999329447746 + Shaft Diameter: 0.004999999888241291 + Shaft Length: 0.019999999552965164 + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /plan + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 125; 125; 125 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: VoxelGrid + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.05000000074505806 + Style: Boxes + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /global_costmap/voxel_marked_cloud + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 1 + Class: rviz_default_plugins/Polygon + Color: 25; 255; 0 + Enabled: false + Name: Polygon + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /global_costmap/published_footprint + Value: false + Enabled: true + Name: Global Planner + - Class: rviz_common/Group + Displays: + - Alpha: 0.699999988079071 + Class: rviz_default_plugins/Map + Color Scheme: costmap + Draw Behind: false + Enabled: true + Name: Local Costmap + Topic: + Depth: 1 + Durability Policy: Transient Local + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /local_costmap/costmap + Update Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /local_costmap/costmap_updates + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz_default_plugins/Path + Color: 0; 12; 255 + Enabled: true + Head Diameter: 0.30000001192092896 + Head Length: 0.20000000298023224 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: Local Plan + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.029999999329447746 + Shaft Diameter: 0.10000000149011612 + Shaft Length: 0.10000000149011612 + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /local_plan + Value: true + - Class: rviz_default_plugins/MarkerArray + Enabled: false + Name: Trajectories + Namespaces: + {} + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /marker + Value: false + - Alpha: 1 + Class: rviz_default_plugins/Polygon + Color: 25; 255; 0 + Enabled: true + Name: Polygon + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /local_costmap/published_footprint + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: RGB8 + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: VoxelGrid + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.009999999776482582 + Style: Flat Squares + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /local_costmap/voxel_marked_cloud + Use Fixed Frame: true + Use rainbow: true + Value: true + Enabled: true + Name: Controller + - Class: rviz_default_plugins/MarkerArray + Enabled: true + Name: MarkerArray + Namespaces: + {} + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /waypoints + Value: true + - Alpha: 1 + Arrow Length: 0.30000001192092896 + Axes Length: 0.30000001192092896 + Axes Radius: 0.009999999776482582 + Class: rviz_default_plugins/PoseArray + Color: 255; 25; 0 + Enabled: true + Head Length: 0.07000000029802322 + Head Radius: 0.029999999329447746 + Name: PoseArray + Shaft Length: 0.23000000417232513 + Shaft Radius: 0.009999999776482582 + Shape: Arrow (Flat) + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /teb_poses + Value: true + - Class: rviz_default_plugins/Marker + Enabled: true + Name: Marker + Namespaces: + {} + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /teb_markers + Value: true + - Class: rviz_default_plugins/Axes + Enabled: true + Length: 0.5 + Name: base_link_fake + Radius: 0.07999999821186066 + Reference Frame: base_link_fake + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + - Class: nav2_rviz_plugins/GoalTool + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 14.485743522644043 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 3.056168556213379 + Y: 0.4070683419704437 + Z: 0.4124468266963959 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 1.5697963237762451 + Target Frame: + Value: Orbit (rviz_default_plugins) + Yaw: 3.1423678398132324 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 932 + Hide Left Dock: false + Hide Right Dock: false + Navigation 2: + collapsed: false + QMainWindow State: 000000ff00000000fd0000000400000000000001560000034afc020000000afb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f00700065007200740069006500730200000438000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d0000020b000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb00000018004e0061007600690067006100740069006f006e00200032010000024e000001390000013900fffffffb0000001e005200650061006c00730065006e0073006500430061006d00650072006100000002c6000000c10000000000000000000000010000010f0000034afc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003d0000034a000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004420000003efc0100000002fb0000000800540069006d00650100000000000004420000000000000000fb0000000800540069006d00650100000000000004500000000000000000000004ad0000034a00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1545 + X: 1585 + Y: 228 diff --git a/src/rm_navigation/teb_local_planner/.gitignore b/src/rm_navigation/teb_local_planner/.gitignore new file mode 100644 index 0000000..9ee021e --- /dev/null +++ b/src/rm_navigation/teb_local_planner/.gitignore @@ -0,0 +1,3 @@ +.svn +.kdev4 +*.kdev4 diff --git a/src/rm_navigation/teb_local_planner/.gitlab-ci.yml b/src/rm_navigation/teb_local_planner/.gitlab-ci.yml new file mode 100644 index 0000000..5938186 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/.gitlab-ci.yml @@ -0,0 +1,23 @@ +build-kinetic: + variables: + ROSDISTRO: "kinetic" + CATKIN_WS: "/root/catkin_ws" + stage: build + image: osrf/ros:$ROSDISTRO-desktop-full + before_script: + - apt-get -qq update + - apt-get -qq install git-core python-catkin-tools curl + - mkdir -p $CATKIN_WS/src + - cp -a . $CATKIN_WS/src/ + - cd $CATKIN_WS + - rosdep update + - rosdep install -y --from-paths src --ignore-src --rosdistro $ROSDISTRO --as-root=apt:false + script: + - source /ros_entrypoint.sh + - cd $CATKIN_WS + - catkin build -i -s --no-status + only: + - kinetic-devel + tags: + - ubuntu + - docker \ No newline at end of file diff --git a/src/rm_navigation/teb_local_planner/.travis.yml b/src/rm_navigation/teb_local_planner/.travis.yml new file mode 100644 index 0000000..42b824c --- /dev/null +++ b/src/rm_navigation/teb_local_planner/.travis.yml @@ -0,0 +1,108 @@ +# Generic .travis.yml file for running continuous integration on Travis-CI with +# any ROS package. +# +# This installs ROS on a clean Travis-CI virtual machine, creates a ROS +# workspace, resolves all listed dependencies, and sets environment variables +# (setup.bash). Then, it compiles the entire ROS workspace (ensuring there are +# no compilation errors), and runs all the tests. If any of the compilation/test +# phases fail, the build is marked as a failure. +# +# We handle two types of package dependencies: +# - packages (ros and otherwise) available through apt-get. These are installed +# using rosdep, based on the information in the ROS package.xml. +# - dependencies that must be checked out from source. These are handled by +# 'wstool', and should be listed in a file named dependencies.rosinstall. +# +# There are two variables you may want to change: +# - ROS_DISTRO (default is indigo). Note that packages must be available for +# ubuntu 14.04 trusty. +# - ROSINSTALL_FILE (default is dependencies.rosinstall inside the repo +# root). This should list all necessary repositories in wstool format (see +# the ros wiki). If the file does not exists then nothing happens. +# +# See the README.md for more information. +# +# Author: Felix Duvallet + +# NOTE: The build lifecycle on Travis.ci is something like this: +# before_install +# install +# before_script +# script +# after_success or after_failure +# after_script +# OPTIONAL before_deploy +# OPTIONAL deploy +# OPTIONAL after_deploy + +################################################################################ + +# Use ubuntu trusty (14.04) with sudo privileges. +dist: trusty +sudo: required +language: + - generic +cache: + - apt + +# Configuration variables. All variables are global now, but this can be used to +# trigger a build matrix for different ROS distributions if desired. +env: + global: + - ROS_CI_DESKTOP="`lsb_release -cs`" # e.g. [precise|trusty|...] + - CI_SOURCE_PATH=$(pwd) + - ROSINSTALL_FILE=$CI_SOURCE_PATH/dependencies.rosinstall + - CATKIN_OPTIONS=$CI_SOURCE_PATH/catkin.options + - ROS_PARALLEL_JOBS='-j8 -l6' + matrix: + - ROS_DISTRO=jade + + +################################################################################ + +# Install system dependencies, namely a very barebones ROS setup. +before_install: + - sudo sh -c "echo \"deb http://packages.ros.org/ros/ubuntu $ROS_CI_DESKTOP main\" > /etc/apt/sources.list.d/ros-latest.list" + - wget http://packages.ros.org/ros.key -O - | sudo apt-key add - + - sudo apt-get update -qq + - sudo apt-get install -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-catkin + - source /opt/ros/$ROS_DISTRO/setup.bash + # Prepare rosdep to install dependencies. + - sudo rosdep init + - rosdep update + +# Create a catkin workspace with the package under integration. +install: + - mkdir -p ~/catkin_ws/src + - cd ~/catkin_ws/src + - catkin_init_workspace + # Create the devel/setup.bash (run catkin_make with an empty workspace) and + # source it to set the path variables. + - cd ~/catkin_ws + - catkin_make + - source devel/setup.bash + # Add the package under integration to the workspace using a symlink. + - cd ~/catkin_ws/src + - ln -s $CI_SOURCE_PATH . + +# Install all dependencies, using wstool and rosdep. +# wstool looks for a ROSINSTALL_FILE defined in the environment variables. +before_script: + # source dependencies: install using wstool. + - cd ~/catkin_ws/src + - wstool init + - if [[ -f $ROSINSTALL_FILE ]] ; then wstool merge $ROSINSTALL_FILE ; fi + - wstool up + # package depdencies: install using rosdep. + - cd ~/catkin_ws + - rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO + +# Compile and test. If the CATKIN_OPTIONS file exists, use it as an argument to +# catkin_make. +script: + - cd ~/catkin_ws + - catkin_make $( [ -f $CATKIN_OPTIONS ] && cat $CATKIN_OPTIONS ) + # Testing: Use both run_tests (to see the output) and test (to error out). + - catkin_make run_tests # This always returns 0, but looks pretty. + - catkin_make test # This will return non-zero if a test fails. + diff --git a/src/rm_navigation/teb_local_planner/README.md b/src/rm_navigation/teb_local_planner/README.md new file mode 100644 index 0000000..5eb9dbd --- /dev/null +++ b/src/rm_navigation/teb_local_planner/README.md @@ -0,0 +1,61 @@ +teb_local_planner ROS Package +============================= + +The teb_local_planner package implements a plugin to the base_local_planner of the 2D navigation stack. +The underlying method called Timed Elastic Band locally optimizes the robot's trajectory with respect to trajectory execution time, +separation from obstacles and compliance with kinodynamic constraints at runtime. + +Refer to http://wiki.ros.org/teb_local_planner for more information and tutorials. + +Build status of the *melodic-devel* branch: +- ROS Buildfarm (Melodic): [![Melodic Status](http://build.ros.org/buildStatus/icon?job=Mdev__teb_local_planner__ubuntu_bionic_amd64)](http://build.ros.org/job/Mdev__teb_local_planner__ubuntu_bionic_amd64/) + +### Port to ROS2 +This branch is the teb_local_planner package ported to ROS2(Dashing Diademata). Currently, it is currently compatible with [Navigation2(master branch)](https://github.com/ros-planning/navigation2/tree/master)([226f06c](https://github.com/ros-planning/navigation2/commit/226f06ce282c727ca240ce8be0cb4b093e26343b)). You can test teb_local_planner with Navigation2 and TurtleBot3 simulation by launching the following command. +``` +ros2 launch teb_local_planner teb_tb3_simulation_launch.py +``` + +## Citing the Software + +*Since a lot of time and effort has gone into the development, please cite at least one of the following publications if you are using the planner for your own research:* + +- C. Rösmann, F. Hoffmann and T. Bertram: Integrated online trajectory planning and optimization in distinctive topologies, Robotics and Autonomous Systems, Vol. 88, 2017, pp. 142–153. +- C. Rösmann, W. Feiten, T. Wösch, F. Hoffmann and T. Bertram: Trajectory modification considering dynamic constraints of autonomous robots. Proc. 7th German Conference on Robotics, Germany, Munich, May 2012, pp 74–79. +- C. Rösmann, W. Feiten, T. Wösch, F. Hoffmann and T. Bertram: Efficient trajectory optimization using a sparse model. Proc. IEEE European Conference on Mobile Robots, Spain, Barcelona, Sept. 2013, pp. 138–143. +- C. Rösmann, F. Hoffmann and T. Bertram: Planning of Multiple Robot Trajectories in Distinctive Topologies, Proc. IEEE European Conference on Mobile Robots, UK, Lincoln, Sept. 2015. +- C. Rösmann, F. Hoffmann and T. Bertram: Kinodynamic Trajectory Optimization and Control for Car-Like Robots, IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), Vancouver, BC, Canada, Sept. 2017. + +Buy Me A Coffee + +## Videos + +The left of the following videos presents features of the package and shows examples from simulation and real robot situations. +Some spoken explanations are included in the audio track of the video. +The right one demonstrates features introduced in version 0.2 (supporting car-like robots and costmap conversion). Please watch the left one first. + + + + +## License + +The *teb_local_planner* package is licensed under the BSD license. +It depends on other ROS packages, which are listed in the package.xml. They are also BSD licensed. + +Some third-party dependencies are included that are licensed under different terms: + - *Eigen*, MPL2 license, http://eigen.tuxfamily.org + - *libg2o* / *g2o* itself is licensed under BSD, but the enabled *csparse_extension* is licensed under LGPL3+, + https://github.com/RainerKuemmerle/g2o. [*CSparse*](http://www.cise.ufl.edu/research/sparse/CSparse/) is included as part of the *SuiteSparse* collection, http://www.suitesparse.com. + - *Boost*, Boost Software License, http://www.boost.org + +All packages included are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the licenses for more details. + +## Requirements + +Install dependencies (listed in the *package.xml* and *CMakeLists.txt* file) using *rosdep*: + + rosdep install teb_local_planner + + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/CHANGELOG.rst b/src/rm_navigation/teb_local_planner/teb_local_planner/CHANGELOG.rst new file mode 100644 index 0000000..11b4f73 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/CHANGELOG.rst @@ -0,0 +1,407 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package teb_local_planner +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.9.1 (2020-05-29) +------------------ +* Fixed RobotFootprintModel visualization bug (thanks to Anson Wang) +* Reserve the size of the relevant obstacles vector to avoid excessive memory allocations (thanks to João Monteiro) +* CMake: Removed system include to avoid compiling issues on some platforms +* Contributors: Anson Wang, Christoph Rösmann, João Carlos Espiúca Monteiro + +0.9.0 (2020-05-26) +------------------ +* Added pill resp. stadium-shaped obstacle +* Changed minimum CMake version to 3.1 +* Improved efficiency of 3d h-signature computation +* Changed default value for parameter penalty_epsilon to 0.05 +* Improved efficiency of findClosedTrajectoryPose() +* Removed obsolete method isHorizonReductionAppropriate() +* Contributors: Christoph Rösmann, XinyuKhan + +0.8.4 (2019-12-02) +------------------ +* Fixed TEB autoResize if last TimeDiff is small +* Add a rotational threshold for identifying a warm start goal +* Contributors: Rainer Kümmerle + +0.8.3 (2019-10-25) +------------------ +* Limiting the control look-ahead pose to the first that execeeds the expected look-ahead time (thanks to Marco Bassa) +* test_optim_node fix circular obstacles (thanks to dtaranta) +* Fix shadow variable warning (thanks to Victor Lopez) +* Use SYSTEM when including external dependencies headers (thanks to Victor Lopez) +* Robustify initTrajectoryToGoal if a plan is given (thanks to Rainer Kuemmerle) +* Adding the option to shift ahead the target pose used to extract the velocity command (thanks to Marco Bassa) +* Fixed segfault in optimal_planner.cpp when clearing graph with unallocated optimizer. + Fixes `#158 `_. +* On footprintCost, fail only if footprint is in collision, not outside the map or on unknown space (thanks to corot) +* Native MoveBaseFlex support added: Implements both nav_core::BaseLocalPlanner and mbf_costmap_core::CostmapController abstract interfaces (thanks to corot) +* added warning if parameter optimal_time is <= 0 +* Nonlinear obstacle cost from EdgeInflatedObstacle also added to EdgeObstacle. + See `#140 `_. +* Fixed proper initialization of parameter obstacle_cost_exponent in case it is not loaded from the parameter server +* Contributors: Christoph Rösmann, Marco Bassa, Rainer Kuemmerle, Victor Lopez, corot, dtaranta + +0.8.2 (2019-07-02) +------------------ +* Allow scripts to be executable and usable by rosrun after catkin_make install and through the catkin release process (thanks to Devon Ash) +* Add nonlinear part to obstacle cost to improve narrow gap behavior. + Parameter `obstacle_cost_exponent` defines the exponent of the nonlinear cost term. + The default linear behavior is achieved by setting this parameter to 1 (default). + A value of 4 performed well in some tests and experiments (thanks to Howard Cochran). +* Parameter `global_plan_prune_distance` added via ros parameter server. +* Fixed SIGSEGV in optimizeAllTEBs() if main thread is interrupted by boost (thanks to Howard Cochran) +* Fixed SIGSEGV crash in deleteTebDetours() (thanks to Howard Cochran) +* On footprint visualization, avoid overshadowing by obstacles (thanks to corot) +* Do not ignore robot model on the association stage. + Important mostly for polygon footprint model (thanks to corot). +* Adjustable color for footprint visualization +* Showing (detected) infeasible robot poses in a separate marker namespace and color +* Added edge for minimizing Euclidean path length (parameter: `weight_shortest_path`) +* Ackermann steering conversion (python script): fixed direction inversion in backwards mode when `cmd_angle_instead_rotvel` is true (thanks to Tobi Loew) +* Fixed wrong skipping condition in AddEdgesKinematicsCarlike() (thanks to ShiquLIU) +* Never discarding the previous best teb in renewAndAnalyzeOldTebs (thanks to Marco Bassa) +* Allowing for the fallback to a different trajectory when the costmap check fails. This prevents the switch to unfeasible trajectories (thanks to Marco Bassa). +* Skipping the generation of the homotopy exploration graph in case the maximum number of allowed classes is reached (thanks to Marco Bassa) +* Changed isTrajectoryFeasible function to allow for a more accurate linear and angular discretization (thanks to Marco Bassa) +* Function TebOptimalPlanner::computeError() considers now the actual optimizer weights. + As a result, the default value of `selection_obst_cost_scale` is reduced (thanks to Howard Cochran). +* update to use non deprecated pluginlib macro (thanks to Mikael Arguedas) +* Avoiding h signature interpolation between coincident poses (thanks to Marco Bassa) +* New strategy for the deletion of detours: Detours are now determined w.r.t. the least-cost alternative and not w.r.t. just the goal heading. + Deletion of additional alternatives applies if either an initial backward motion is detected, if the transition time is much bigger than the duration of the best teb + and if a teb cannot be optimized (thanks to Marco Bassa). + Optionally allowing the usage of the initial plan orientation when initializing new tebs. +* Contributors: Christoph Rösmann, Mikael Arguedas, Devon Ash, Howard Cochran, Marco Bassa, ShiquLIU, Tobi Loew, corot + +0.8.1 (2018-08-14) +------------------ +* bugfix in calculateHSignature. Fixes `#90 `_. +* fixed centroid computation in a special case of polygon-obstacles +* Contributors: Christoph Rösmann + +0.8.0 (2018-08-06) +------------------ +* First melodic release +* Updated to new g2o API +* Migration to tf2 +* Contributors: Christoph Rösmann + +0.7.3 (2018-07-05) +------------------ +* Parameter `switching_blocking_period` added to homotopy class planner parameter group. + Values greater than zero enforce the homotopy class planner to only switch to new equivalence classes as soon + as the given period is expired (this might reduce oscillations in some scenarios). The value is set to zero seconds + by default in order to not change the behavior of existing configurations. +* Fixed unconsistent naming of parameter `global_plan_viapoint_sep`. + The parameter retrieved at startup was `global_plan_via_point_sep` and via dynamic_reconfigure it was `global_plan_viapoint_sep`. + `global_plan_via_point_sep` has now been replaced by `global_plan_viapoint_sep` since this is more consistent with the variable name + in the code as well as `weight_viapoint` and the ros wiki description. + In order to not break things, the old parameter name can still be used. However, a deprecated warning is printed. +* transformGlobalPlan searches now for the closest point within the complete subset of the global plan in the local costmap: + In every sampling interval, the global plan is processed in order to find the closest pose to the robot (as reference start) + and the current end pose (either local at costmap boundary or max_global_plan_lookahead_dist). + Previously, the search algorithm stopped as soon as the distance to the robot increased once. + This caused troubles with more complex global plans, hence the new strategy checks the complete subset + of the global plan in the local costmap for the closest distance to the robot. +* via-points that are very close to the current robot pose or behind the robot are now skipped (in non-ordered mode) +* Edge creation: minor performance improvement for dynamic obstacle edges +* dynamic_reconfigure: parameter visualize_with_time_as_z_axis_scale moved to group trajectory +* Contributors: Christoph Rösmann + +0.7.2 (2018-06-08) +------------------ +* Adds the possibility to provide via-points via a topic. + Currently, the user needs to decide whether to receive via-points from topic or to obtain them from the global reference plan + (e.g., activate the latter by setting global_plan_viapoint_sep>0 as before). + A small test script publish_viapoints.py is provided to demonstrate the feature within test_optim_node. +* Contributors: Christoph Rösmann + +0.7.1 (2018-06-05) +------------------ +* Fixed a crucial bug (from 0.6.6): A cost function for prefering a clockwise resp. anti-clockwise turn was enabled by default. + This cost function was only intended to be active only for recovering from an oscillating robot. + This cost led to a penalty for one of the turning directions and hence the maximum turning rate for the penalized direction could not be reached. + Furthermore, which is more crucial: since the penalty applied only to a small (initial) subset of the trajectory, the overall control performance was poor + (huge gap between planned motion and closed-loop trajectories led to frequent corrections of the robot pose and hence many motion reversals). +* Adds support for circular obstacle types. This includes support for the radius field in costmap_converter::ObstacleMsg +* rqt reconfigure: parameters are now grouped in tabs (robot, trajectory, viapoints, ...) +* Update to use non deprecated pluginlib macro +* Python scripts updated to new obstacle message definition. +* Fixed issue when start and end are at the same location (PR #43) +* Normalize marker quaternions in *test_optim_node* +* Contributors: Christoph Rösmann, Alexander Reimann, Mikael Arguedas, wollip + +0.7.0 (2017-09-23) +------------------ +* This update introduces support for dynamic obstacles (thanks to Franz Albers, who implemented and tested the code). + Dynamic obstacle support requires parameter *include\_dynamic\_obstacles* to be activated. + Note, this feature is still experimental and subject to testing. + Motion prediction is performed using a constant velocity model. + Dynamic obstacles might be incorporated as follows: + * via a custom message provided on topic ~/obstacles (warning: we changed the message type from teb_local_planner/ObstacleMsg to costmap_converter/ObstacleArrayMsg). + * via the CostmapToDynamicObstacles plugin as part of the costmap\_converter package (still experimental). + A tutorial is going to be provided soon. +* FeedbackMsg includes a ObstacleMsg instead of a polygon +* ObstacleMsg removed from package since it is now part of the costmap\_converter package. +* Homotopy class planer code update: graph search methods and equivalence classes (h-signatures) are now + implemented as subclasses of more general interfaces. +* TEB trajectory initialization now uses a max\_vel\_x argument instead of the desired time difference in order to give the optimizer a better warm start. + Old methods are marked as deprecated. This change does not affect users settings. +* Inplace rotations removed from trajectory initialization to improve convergence speed of the optimizer +* teb\_local\_planner::ObstacleMsg removed in favor of costmap\_converter::ObstacleArrayMsg. This also requires custom obstacle publishers to update to the new format +* the "new" trajectory resizing method is only activated, if "include_dynamic_obstacles" is set to true. + We introduced the non-fast mode with the support of dynamic obstacles + (which leads to better results in terms of x-y-t homotopy planning). + However, we have not yet tested this mode intensively, so we keep + the previous mode as default until we finish our tests. +* added parameter and code to update costmap footprint if it is dynamic (#49) +* Contributors: Franz Albers, Christoph Rösmann, procopiostein + +0.6.6 (2016-12-23) +------------------ +* Strategy for recovering from oscillating local plans added (see new parameters) +* Horizon reduction for resolving infeasible trajectories is not activated anymore if the global goal is already selected + (to avoid oscillations due to changing final orientations) +* Global plan orientations are now taken for TEB initialization if lobal_plan_overwrite_orientation==true +* Parameter max_samples added +* Further fixes (thanks to Matthias Füller and Daniel Neumann for providing patches) + +0.6.5 (2016-11-15) +------------------ +* The trajectory is now initialized backwards for goals close to and behind the robot. + Parameter 'allow_init_with_backwards_motion' added. +* Updated the TEB selection in the HomotopyClassPlanner. + * A new parameter is introduced to prefer the equivalence class of the initial plan + * Fixed some bugs related to the deletion of candidates and for keeping the equivalence class of the initial plan. +* Weight adaptation added for obstacles edges. + Added parameter 'weight_adapt_factor'. + Obstacle weights are repeatedly scaled by this factor in each outer TEB iteration. + Increasing weights iteratively instead of setting a huge value a-priori leads to better numerical conditions. +* Added a warning if the optim footprint + min_obstacle_dist is smaller than the costmap footprint. + Validation is performed by only comparing the inscribed radii of the footprints. +* Revision/extension of the reduced-horizon backup mode which is triggered in case infeasible trajectories are detected. +* Changed HSignature to a generic equivalence class +* Minor changes + +0.6.4 (2016-10-23) +------------------ +* New default obstacle association strategy: + During optimization graph creation, for each pose of the trajectory a + relevance detection is performed before considering the obstacle + during optimization. New parameters are introduced. The + old strategy is kept as 'legacy' strategy (see parameters). +* Computation of velocities, acceleration and turning radii extended: + Added an option to compute the actual arc length + instead of using the Euclidean distance approximation (see parameter `exact_arc_length`. +* Added intermediate edge layer for unary, binary and multi edges in order to reduce code redundancy. +* Script for visualizing velocity profile updated to accept the feedback topic name via rosparam server +* Removed TebConfig dependency in TebVisualization +* PolygonObstacle can now be constructed using a vertices container +* HomotopyClassPlanner public interface extended +* Changed H-Signature computation to work 'again' with few obstacles such like 1 or 2 +* Removed inline flags in visualization.cpp +* Removed inline flags in timed_elastic_band.cpp. + Fixes `#15 `_. +* Increased bounds of many variables in dynamic_reconfigure. + Resolves `#14 `_. + The particular variables are maximum velocities, maximum accelerations, + minimum turning radius,... + Note: optimization weights and dt_ref as well as dt_hyst are not + tuned for velocities and accelerations beyond + the default values (e.g. >1 m/s). Just increasing the maximum velocity + bounds without adjusting the other parameters leads to an insufficient behavior. +* Default parameter value update: 'costmap_obstacles_behind_robot_dist' +* Additional minor fixes. + +0.6.3 (2016-08-17) +------------------ +* Changed the f0 function for calculating the H-Signature. + The new one seems to be more robust for a much larger number of obstacles + after some testing. +* HomotopyClassPlanner: vertex collision check removed since collisions will be determined in the edge collision check again +* Fixed distance calculation polygon-to-polygon-obstacle +* cmake config exports now *include directories* of external packages for dependent projects +* Enlarged upper bounds on goal position and orientation tolerances in *dynamic_reconfigure*. Fixes #13. + + +0.6.2 (2016-06-15) +------------------ +* Fixed bug causing the goal to disappear in case the robot arrives with non-zero orientation error. +* Inflation mode for obstacles added. +* The homotopy class of the global plan is now always forced to be initialized as trajectory. +* The initial velocity of the robot is now taken into account correctly for + all candidate trajectories. +* Removed a check in which the last remaining candidate trajectory was rejected if it was close to an obstacle. + This fix addresses issue `#7 `_ + +0.6.1 (2016-05-23) +------------------ +* Debian ARM64 library path added to SuiteSparse cmake find-script (resolves ARM compilation issue) + + +0.6.0 (2016-05-22) +------------------ +* Extended support to holonomic robots +* Wrong parameter namespace for *costmap_converter* plugins fixed +* Added the option to scale the length of the hcp sampling area +* Compiler warnings fixed. +* Workaround for compilation issues that are caused by a bug in boost 1.58 + concerning the graph library (missing move constructor/assignment operator + in boost source). +* Using *tf_listener* from *move_base* now. +* Via-point support improved. + Added the possibility to take the actual order of via-points into account. + Additionally, via-points beyond start and goal are now included. +* Obsolete include of the angles package header removed +* Update to package.xml version 2 +* Some other minor fixes. + + +0.4.0 (2016-04-19) +------------------ +* The teb_local_planner supports a path-following mode (w.r.t. the global plan) and via-points now. + This allows the user to adapt the tradeoff between time-optimality and path-following. + Check out the new tutorial: "Following the Global Plan (Via-Points)". +* All external configuration and launch files are removed, since they are part + of the new teb_local_planner_tutorials package. + + +0.3.1 (2016-04-14) +------------------ +* Fixed wrong coordinate transformation in 'line' and 'polygon' footprint models. +* Trajectory selection strategy in case of multiple topologies updated: + * The obstacle costs for selection can now be scaling separately. + * The cost regarding time optimality can now be replaced by the actual transition time. + * Added a hysteresis to cost comparison between a new and the previously selected trajectory. + * In the default parameter setting the strategy is similar to release 0.3.0. +* Warning message removed that occured if an odom message with only zeros was received. + + +0.3.0 (2016-04-08) +------------------ +* Different/custom robot footprints are now supported and subject to optimization (refer to the new tutorial!). +* The new robot footprint is also visualized using the common marker topic. +* The strategy of taking occupied costmap cells behind the robot into account has been improved. + These changes significantly improve navigation close to walls. +* Parameter 'max_global_plan_lookahead_dist' added. + Previously, the complete subset of the global plan contained in the local costmap + was taken into account for choosing the current intermediate goal point. With this parameter, the maximum + length of the reference global plan can be limited. The actual global plan subset + is now computed using the logical conjunction of both local costmap size and 'max_global_plan_lookahead_dist'. +* Bug fixes: + * Fixed a compilation issue on ARM architectures + * If custom obstacles are used, the container with old obstacles is now cleared properly. +* Parameter cleanup: + * "weight_X_obstacle" parameters combined to single parameter "weight_obstacle". + * "X_obstacle_poses_affected" parameters combined to single parameter "obstacle_poses_affected". + * Deprecated parameter 'costmap_emergency_stop_dist' removed. +* Code cleanup + + +0.2.3 (2016-02-01) +------------------ +* Marker lifetime changed +* In case the local planner detects an infeasible trajectory it does now try to + reduce the horizon to 50 percent of the length. The trajectory is only reduced + if some predefined cases are detected. + This mechanism constitutes a backup behavior. +* Improved carlike robot support. + Instead of commanding the robot using translational and rotational velocities, + the robot might also be commanded using the transl. velocity and steering angle. + Appropriate parameters are added to the config. +* Changed default parameter for 'h_signature_threshold' from 0.01 to 0.1 to better match the actual precision. +* Some python scripts for data conversion added +* Minor other changes + +0.2.2 (2016-01-11) +------------------ +* Carlike robots (ackermann steering) are supported from now on (at least experimentally) + by specifying a minimum bound on the turning radius. + Currently, the output of the planner in carlike mode is still (v,omega). + Since I don't have any real carlike robot, I would be really happy if someone could provide me with + some feedback to further improve/extend the support. +* Obstacle cost function modified to avoid undesired jerks in the trajectory. +* Added a feedback message that contains current trajectory information (poses, velocities and temporal information). + This is useful for analyzing and debugging the velocity profile e.g. at runtime. + The message will be published only if it's activated (rosparam). + A small python script is added to plot the velocity profile (while *test_optim_node* runs). +* Cost functions are now taking the direction/sign of the translational velocity into account: + Specifying a maximum backwards velocity other than forward velocity works now. + Additionally, the change in acceleration is now computed correctly if the robot switches directions. +* The global plan is now pruned such that already passed posses are cut off + (relevant for global planners with *planning_rate=0*). +* Fixed issue#1: If a global planner with *planning_rate=0* was used, + a TF timing/extrapolation issue appeared after some time. +* The planner resets now properly if the velocity command cannot be computed due to invalid optimization results. + + +0.2.1 (2015-12-30) +------------------ +* This is an important bugfix release. +* Fixed a major issue concerning the stability and performance of the optimization process. Each time the global planner was updating the global plan, the local planner was resetted completely even if + the updated global plan did not differ from the previous one. This led to stupid reinitializations and a slighly jerky behavior if the update rate of the global planner was high (each 0.5-2s). + From now on the local planner is able to utilize the global plan as a warm start and determine automatically whether to reinitialize or not. +* Support for polygon obstacles extended and improved (e.g. the homotopy class planner does now compute actual distances to the polygon rather than utilizing the distance to the centroid). + +0.2.0 (2015-12-23) +------------------ +* The teb_local_planner supports costmap_converter plugins (pluginlib) from now on. Those plugins convert occupied costmap2d cells into polygon shapes. + The costmap_converter is disabled by default, since the extension still needs to be tested (parameter choices, computation time advantages, etc.). + A tutorial will explain how to activate the converter using the ros-param server. + +0.1.11 (2015-12-12) +------------------- +* This is a bugfix release (it fixes a lot of issues which occured frequently when the robot was close to the goal) + +0.1.10 (2015-08-13) +------------------- +* The optimizer copies the global plan as initialization now instead of using a simple straight line approximation. +* Some bugfixes and improvements + +0.1.9 (2015-06-24) +------------------ +* Fixed a segmentation fault issue. This minor update is crucial for stability. + +0.1.8 (2015-06-08) +------------------ +* Custom obstacles can be included via publishing dedicated messages +* Goal-reached-condition also checks orientation error (desired yaw) now +* Numerical improvements of the h-signature calculation +* Minor bugfixes + +0.1.7 (2015-05-22) +------------------ +* Finally fixed saucy compilation issue by retaining compatiblity to newer distros + (my "new" 13.10 VM helps me to stop spamming new releases for testing). + +0.1.6 (2015-05-22) +------------------ +* Fixed compilation errors on ubuntu saucy caused by different FindEigen.cmake scripts. + I am not able to test releasing on saucy, forcing me to release again and again. Sorry. + +0.1.5 (2015-05-21) +------------------ +* Added possibility to dynamically change parameters of test_optim_node using dynamic reconfigure. +* Fixed a wrong default-min-max tuple in the dynamic reconfigure config. +* Useful config and launch files are now added to cmake install. +* Added install target for the test_optim_node executable. + +0.1.4 (2015-05-20) +------------------ +* Fixed compilation errors on ROS Jade + +0.1.3 (2015-05-20) +------------------ +* Fixed compilation errors on ubuntu saucy + +0.1.2 (2015-05-19) +------------------ +* Removed unused include that could break compilation. + +0.1.1 (2015-05-19) +------------------ +* All files added to the indigo-devel branch +* Initial commit +* Contributors: Christoph Rösmann diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/CMakeLists.txt b/src/rm_navigation/teb_local_planner/teb_local_planner/CMakeLists.txt new file mode 100644 index 0000000..43859bc --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/CMakeLists.txt @@ -0,0 +1,162 @@ +cmake_minimum_required(VERSION 3.5) +project(teb_local_planner) + +# Set to Release in order to speed up the program significantly +set(CMAKE_BUILD_TYPE Release) #None, Debug, Release, RelWithDebInfo, MinSizeRel + +# Default to C++14 +if(NOT CMAKE_CXX_STANDARD) + set(CMAKE_CXX_STANDARD 14) +endif() + +#if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") +# add_compile_options(-Wall -Wextra -Wpedantic) +#endif() + +## Find catkin macros and libraries +find_package(ament_cmake REQUIRED) +find_package(costmap_converter REQUIRED) +find_package(dwb_critics REQUIRED) +find_package(nav_2d_utils REQUIRED) +find_package(nav2_core REQUIRED) +find_package(nav2_costmap_2d REQUIRED) +find_package(nav2_util REQUIRED) +#find_package(interactive_markers REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(nav_msgs REQUIRED) +find_package(rclcpp REQUIRED) +find_package(rclcpp_action REQUIRED) +find_package(rclcpp_lifecycle REQUIRED) +find_package(std_msgs REQUIRED) +find_package(pluginlib REQUIRED) +find_package(teb_msgs REQUIRED) +find_package(tf2 REQUIRED) +find_package(tf2_eigen REQUIRED) +find_package(tf2_geometry_msgs REQUIRED) +find_package(tf2_ros REQUIRED) +find_package(visualization_msgs REQUIRED) +find_package(builtin_interfaces REQUIRED) + +message(STATUS "System: ${CMAKE_SYSTEM}") +## System dependencies are found with CMake's conventions +SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake_modules) +message(STATUS "${CMAKE_MODULE_PATH}") +find_package(SUITESPARSE REQUIRED) +find_package(G2O REQUIRED) +find_package(Boost REQUIRED) + +# Eigen3 FindScript Backward compatibility (ubuntu saucy) +# Since FindEigen.cmake is deprecated starting from jade. +if (EXISTS "FindEigen3.cmake") + find_package(Eigen3 REQUIRED) + set(Eigen_INCLUDE_DIRS ${Eigen3_INCLUDE_DIRS}) +elseif (EXISTS "FindEigen.cmake") + find_package(Eigen REQUIRED) +elseif (EXISTS "FindEigen.cmake") + message(WARNING "No findEigen cmake script found. You must provde one of them, + e.g. by adding it to ${PROJECT_SOURCE_DIR}/cmake_modules.") +endif (EXISTS "FindEigen3.cmake") + +set(EXTERNAL_INCLUDE_DIRS ${Eigen_INCLUDE_DIRS} ${SUITESPARSE_INCLUDE_DIRS} ${G2O_INCLUDE_DIR}) +set(EXTERNAL_LIBS ${Boost_LIBRARIES} ${SUITESPARSE_LIBRARIES} ${G2O_LIBRARIES}) + +########### +## Build ## +########### + +include_directories( + include + ${Boost_INCLUDE_DIRS} + ${EXTERNAL_INCLUDE_DIRS} +) + +## Build the teb_local_planner library + +add_library(teb_local_planner SHARED + src/timed_elastic_band.cpp + src/optimal_planner.cpp + src/obstacles.cpp + src/visualization.cpp + src/recovery_behaviors.cpp + src/teb_config.cpp + src/homotopy_class_planner.cpp + src/teb_local_planner_ros.cpp + src/graph_search.cpp +) + +set(ament_dependencies + costmap_converter + dwb_critics + nav_2d_utils + nav2_core + nav2_costmap_2d + nav2_util + geometry_msgs + nav_msgs + rclcpp + rclcpp_action + rclcpp_lifecycle + std_msgs + pluginlib + teb_msgs + tf2 + tf2_eigen + tf2_geometry_msgs + tf2_ros + visualization_msgs + builtin_interfaces +) +ament_target_dependencies(teb_local_planner + ${ament_dependencies} +) +target_link_libraries(teb_local_planner + ${EXTERNAL_LIBS} +) + +target_compile_definitions(teb_local_planner PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS") + + +############# +## Install ## +############# + +## Mark executables and/or libraries for installation +install(TARGETS teb_local_planner + DESTINATION lib +) + +## Mark cpp header files for installation +install(DIRECTORY include/ + DESTINATION include/ +) + +## Mark other files for installation (e.g. launch and bag files, etc.) +install(FILES + teb_local_planner_plugin.xml + DESTINATION share + ) + +install(PROGRAMS scripts/cmd_vel_to_ackermann_drive.py DESTINATION lib/${PROJECT_NAME}) + +install(DIRECTORY params DESTINATION share/${PROJECT_NAME}) + +ament_export_include_directories(include) +ament_export_libraries(teb_local_planner) +ament_export_dependencies(${ament_dependencies}) +pluginlib_export_plugin_description_file(nav2_core teb_local_planner_plugin.xml) + +############# +## Testing ## +############# + +if(BUILD_TESTING) + find_package(ament_cmake_gtest REQUIRED) + #ament_add_gtest(homotopy_class_planner_test + # test/homotopy_class_planner_test.cpp + #) + #target_link_libraries(homotopy_class_planner_test + # teb_local_planner + #) +endif() + +ament_package() diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/LICENSE b/src/rm_navigation/teb_local_planner/teb_local_planner/LICENSE new file mode 100644 index 0000000..d4658cc --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/LICENSE @@ -0,0 +1,28 @@ +Copyright (c) 2016, TU Dortmund - Lehrstuhl RST +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of teb_local_planner nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/cfg/TebLocalPlannerReconfigure.cfg b/src/rm_navigation/teb_local_planner/teb_local_planner/cfg/TebLocalPlannerReconfigure.cfg new file mode 100755 index 0000000..f403d7e --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/cfg/TebLocalPlannerReconfigure.cfg @@ -0,0 +1,420 @@ +#!/usr/bin/env python + +from dynamic_reconfigure.parameter_generator_catkin import * +#from local_planner_limits import add_generic_localplanner_params + +gen = ParameterGenerator() + +# This unusual line allows to reuse existing parameter definitions +# that concern all localplanners +#add_generic_localplanner_params(gen) + +# For integers and doubles: +# Name Type Reconfiguration level +# Description +# Default Min Max + + +grp_trajectory = gen.add_group("Trajectory", type="tab") + +# Trajectory +grp_trajectory.add("teb_autosize", bool_t, 0, + "Enable the automatic resizing of the trajectory during optimization (based on the temporal resolution of the trajectory, recommended)", + True) + +grp_trajectory.add("dt_ref", double_t, 0, + "Temporal resolution of the planned trajectory (usually it is set to the magnitude of the 1/control_rate)", + 0.3, 0.01, 1) + +grp_trajectory.add("dt_hysteresis", double_t, 0, + "Hysteresis that is utilized for automatic resizing depending on the current temporal resolution (dt): usually 10% of dt_ref", + 0.1, 0.002, 0.5) + +grp_trajectory.add("global_plan_overwrite_orientation", bool_t, 0, + "Some global planners are not considering the orientation at local subgoals between start and global goal, therefore determine it automatically", + True) + +grp_trajectory.add("allow_init_with_backwards_motion", bool_t, 0, + "If true, the underlying trajectories might be initialized with backwards motions in case the goal is behind the start within the local costmap (this is only recommended if the robot is equipped with rear sensors)", + False) + +grp_trajectory.add("max_global_plan_lookahead_dist", double_t, 0, + "Specify maximum length (cumulative Euclidean distances) of the subset of the global plan taken into account for optimization [if 0 or negative: disabled; the length is also bounded by the local costmap size]", + 3.0, 0, 50.0) + +grp_trajectory.add("force_reinit_new_goal_dist", double_t, 0, + "Force the planner to reinitialize the trajectory if a previous goal is updated with a seperation of more than the specified value in meters (skip hot-starting)", + 1.0, 0.0, 10.0) + +grp_trajectory.add("force_reinit_new_goal_angular", double_t, 0, + "Force the planner to reinitialize the trajectory if a previous goal is updated with a rotational difference of more than the specified value in radians (skip hot-starting)", + 0.78, 0.0, 4.0) + +grp_trajectory.add("feasibility_check_no_poses", int_t, 0, + "Specify up to which pose (under the feasibility_check_lookahead_distance) on the predicted plan the feasibility should be checked each sampling interval; if -1, all poses up to feasibility_check_lookahead_distance are checked.", + 5, -1, 50) + +grp_trajectory.add("feasibility_check_lookahead_distance", double_t, 0, + "Specify up to which distance (and with an index below feasibility_check_no_poses) from the robot the feasibility should be checked each sampling interval; if -1, all poses up to feasibility_check_no_poses are checked.", + -1, -1, 20) + +grp_trajectory.add("exact_arc_length", bool_t, 0, + "If true, the planner uses the exact arc length in velocity, acceleration and turning rate computations [-> increased cpu time], otherwise the euclidean approximation is used.", + False) + +grp_trajectory.add("publish_feedback", bool_t, 0, + "Publish planner feedback containing the full trajectory and a list of active obstacles (should be enabled only for evaluation or debugging purposes)", + False) + +grp_trajectory.add("visualize_with_time_as_z_axis_scale", double_t, 0, + "If this value is bigger than 0, the trajectory and obstacles are visualized in 3d using the time as the z-axis scaled by this value. Most useful for dynamic obstacles.", + 0, 0, 1) + +# ViaPoints +grp_viapoints = gen.add_group("ViaPoints", type="tab") + +grp_viapoints.add("global_plan_viapoint_sep", double_t, 0, + "Min. separation between each two consecutive via-points extracted from the global plan [if negative: disabled]", + -0.1, -0.1, 5.0) + +grp_viapoints.add("via_points_ordered", bool_t, 0, + "If true, the planner adheres to the order of via-points in the storage container", + False) + +# Robot +grp_robot = gen.add_group("Robot", type="tab") + +grp_robot.add("max_vel_x", double_t, 0, + "Maximum translational velocity of the robot", + 0.4, 0.01, 100) + +grp_robot.add("max_vel_x_backwards", double_t, 0, + "Maximum translational velocity of the robot for driving backwards", + 0.2, 0.01, 100) + +grp_robot.add("max_vel_theta", double_t, 0, + "Maximum angular velocity of the robot", + 0.3, 0.01, 100) + +grp_robot.add("acc_lim_x", double_t, 0, + "Maximum translational acceleration of the robot", + 0.5, 0.01, 100) + +grp_robot.add("acc_lim_theta", double_t, 0, + "Maximum angular acceleration of the robot", + 0.5, 0.01, 100) + +grp_robot.add("is_footprint_dynamic", bool_t, 0, + "If true, updated the footprint before checking trajectory feasibility", + False) + +grp_robot.add("use_proportional_saturation", bool_t, 0, + "If true, reduce all twists components (linear x and y, and angular z) proportionally if any exceed its corresponding bounds, instead of saturating each one individually", + False) +grp_robot.add("transform_tolerance", double_t, 0, + "Tolerance when querying the TF Tree for a transformation (seconds)", + 0.5, 0.001, 20) + +# Robot/Carlike + +grp_robot_carlike = grp_robot.add_group("Carlike", type="hide") + +grp_robot_carlike.add("min_turning_radius", double_t, 0, + "Minimum turning radius of a carlike robot (diff-drive robot: zero)", + 0.0, 0.0, 50.0) + +grp_robot_carlike.add("wheelbase", double_t, 0, + "The distance between the drive shaft and steering axle (only required for a carlike robot with 'cmd_angle_instead_rotvel' enabled); The value might be negative for back-wheeled robots!", + 1.0, -10.0, 10.0) + +grp_robot_carlike.add("cmd_angle_instead_rotvel", bool_t, 0, + "Substitute the rotational velocity in the commanded velocity message by the corresponding steering angle (check 'axles_distance')", + False) + +# Robot/Omni + +grp_robot_omni = grp_robot.add_group("Omnidirectional", type="hide") + +grp_robot_omni.add("max_vel_y", double_t, 0, + "Maximum strafing velocity of the robot (should be zero for non-holonomic robots!)", + 0.0, 0.0, 100) + +grp_robot_omni.add("acc_lim_y", double_t, 0, + "Maximum strafing acceleration of the robot", + 0.5, 0.01, 100) + +# GoalTolerance +grp_goal = gen.add_group("GoalTolerance", type="tab") + +grp_goal.add("free_goal_vel", bool_t, 0, + "Allow the robot's velocity to be nonzero for planning purposes (the robot can arrive at the goal with max speed)", + False) + +# Obstacles +grp_obstacles = gen.add_group("Obstacles", type="tab") + +grp_obstacles.add("min_obstacle_dist", double_t, 0, + "Minimum desired separation from obstacles", + 0.5, 0, 10) + +grp_obstacles.add("inflation_dist", double_t, 0, + "Buffer zone around obstacles with non-zero penalty costs (should be larger than min_obstacle_dist in order to take effect)", + 0.6, 0, 15) + +grp_obstacles.add("dynamic_obstacle_inflation_dist", double_t, 0, + "Buffer zone around predicted locations of dynamic obstacles with non-zero penalty costs (should be larger than min_obstacle_dist in order to take effect)", + 0.6, 0, 15) + +grp_obstacles.add("include_dynamic_obstacles", bool_t, 0, + "Specify whether the movement of dynamic obstacles should be predicted by a constant velocity model (this also changes the homotopy class search). If false, all obstacles are considered to be static.", + False) + +grp_obstacles.add("include_costmap_obstacles", bool_t, 0, + "Specify whether the obstacles in the costmap should be taken into account directly (this is necessary if no seperate clustering and detection is implemented)", + True) + +grp_obstacles.add("legacy_obstacle_association", bool_t, 0, + "If true, the old association strategy is used (for each obstacle, find the nearest TEB pose), otherwise the new one (for each teb pose, find only 'relevant' obstacles).", + False) + +grp_obstacles.add("obstacle_association_force_inclusion_factor", double_t, 0, + "The non-legacy obstacle association technique tries to connect only relevant obstacles with the discretized trajectory during optimization, all obstacles within a specifed distance are forced to be included (as a multiple of min_obstacle_dist), e.g. choose 2.0 in order to consider obstacles within a radius of 2.0*min_obstacle_dist.", + 1.5, 0.0, 100.0) + +grp_obstacles.add("obstacle_association_cutoff_factor", double_t, 0, + "See obstacle_association_force_inclusion_factor, but beyond a multiple of [value]*min_obstacle_dist all obstacles are ignored during optimization. obstacle_association_force_inclusion_factor is processed first.", + 5.0, 1.0, 100.0) + +grp_obstacles.add("costmap_obstacles_behind_robot_dist", double_t, 0, + "Limit the occupied local costmap obstacles taken into account for planning behind the robot (specify distance in meters)", + 1.5, 0.0, 20.0) + +grp_obstacles.add("obstacle_poses_affected", int_t, 0, + "The obstacle position is attached to the closest pose on the trajectory to reduce computational effort, but take a number of neighbors into account as well", + 30, 0, 200) + +# Obstacle - Velocity ratio parameters +grp_obstacles_velocity_limit = grp_obstacles.add_group("Reduce velocity near obstacles") + +grp_obstacles_velocity_limit.add("obstacle_proximity_ratio_max_vel", double_t, 0, + "Ratio of the maximum velocities used as an upper bound when reducing the speed due to the proximity to static obstacles", + 1, 0, 1) + +grp_obstacles_velocity_limit.add("obstacle_proximity_lower_bound", double_t, 0, + "Distance to a static obstacle for which the velocity should be lower", + 0, 0, 10) + +grp_obstacles_velocity_limit.add("obstacle_proximity_upper_bound", double_t, 0, + "Distance to a static obstacle for which the velocity should be higher", + 0.5, 0, 10) + +# Optimization +grp_optimization = gen.add_group("Optimization", type="tab") + +grp_optimization.add("no_inner_iterations", int_t, 0, + "Number of solver iterations called in each outerloop iteration", + 5, 1, 100) + +grp_optimization.add("no_outer_iterations", int_t, 0, + "Each outerloop iteration automatically resizes the trajectory and invokes the internal optimizer with no_inner_iterations", + 4, 1, 100) + +grp_optimization.add("optimization_activate", bool_t, 0, + "Activate the optimization", + True) + +grp_optimization.add("optimization_verbose", bool_t, 0, + "Print verbose information", + False) + +grp_optimization.add("penalty_epsilon", double_t, 0, + "Add a small safty margin to penalty functions for hard-constraint approximations", + 0.05, 0, 1.0) + +grp_optimization.add("weight_max_vel_x", double_t, 0, + "Optimization weight for satisfying the maximum allowed translational velocity", + 2, 0, 1000) + +grp_optimization.add("weight_max_vel_y", double_t, 0, + "Optimization weight for satisfying the maximum allowed strafing velocity (in use only for holonomic robots)", + 2, 0, 1000) + +grp_optimization.add("weight_max_vel_theta", double_t, 0, + "Optimization weight for satisfying the maximum allowed angular velocity", + 1, 0, 1000) + +grp_optimization.add("weight_acc_lim_x", double_t, 0, + "Optimization weight for satisfying the maximum allowed translational acceleration", + 1, 0, 1000) + +grp_optimization.add("weight_acc_lim_y", double_t, 0, + "Optimization weight for satisfying the maximum allowed strafing acceleration (in use only for holonomic robots)", + 1, 0, 1000) + +grp_optimization.add("weight_acc_lim_theta", double_t, 0, + "Optimization weight for satisfying the maximum allowed angular acceleration", + 1, 0, 1000) + +grp_optimization.add("weight_kinematics_nh", double_t, 0, + "Optimization weight for satisfying the non-holonomic kinematics", + 1000 , 0, 10000) + +grp_optimization.add("weight_kinematics_forward_drive", double_t, 0, + "Optimization weight for forcing the robot to choose only forward directions (positive transl. velocities, only diffdrive robot)", + 1, 0, 10000) + +grp_optimization.add("weight_kinematics_turning_radius", double_t, 0, + "Optimization weight for enforcing a minimum turning radius (carlike robots)", + 1, 0, 1000) + +grp_optimization.add("weight_optimaltime", double_t, 0, + "Optimization weight for contracting the trajectory w.r.t. transition time", + 1, 0, 1000) + +grp_optimization.add("weight_shortest_path", double_t, 0, + "Optimization weight for contracting the trajectory w.r.t. path length", + 0, 0, 100) + +grp_optimization.add("weight_obstacle", double_t, 0, + "Optimization weight for satisfying a minimum seperation from obstacles", + 50, 0, 1000) + +grp_optimization.add("weight_inflation", double_t, 0, + "Optimization weight for the inflation penalty (should be small)", + 0.1, 0, 10) + +grp_optimization.add("weight_dynamic_obstacle", double_t, 0, + "Optimization weight for satisfying a minimum seperation from dynamic obstacles", + 50, 0, 1000) + +grp_optimization.add("weight_dynamic_obstacle_inflation", double_t, 0, + "Optimization weight for the inflation penalty of dynamic obstacles (should be small)", + 0.1, 0, 10) + +grp_optimization.add("weight_velocity_obstacle_ratio", double_t, 0, + "Optimization weight for satisfying a maximum allowed velocity with respect to the distance to a static obstacle", + 0, 0, 1000) + +grp_optimization.add("weight_viapoint", double_t, 0, + "Optimization weight for minimizing the distance to via-points", + 1, 0, 1000) + +grp_optimization.add("weight_adapt_factor", double_t, 0, + "Some special weights (currently 'weight_obstacle') are repeatedly scaled by this factor in each outer TEB iteration (weight_new: weight_old * factor); Increasing weights iteratively instead of setting a huge value a-priori leads to better numerical conditions of the underlying optimization problem.", + 2, 1, 100) + +grp_optimization.add("obstacle_cost_exponent", double_t, 0, + "Exponent for nonlinear obstacle cost (cost = linear_cost * obstacle_cost_exponent). Set to 1 to disable nonlinear cost (default)", + 1, 0.01, 100) + + + +# Homotopy Class Planner +grp_hcp = gen.add_group("HCPlanning", type="tab") + +grp_hcp.add("enable_multithreading", bool_t, 0, + "Activate multiple threading for planning multiple trajectories in parallel", + True) + +grp_hcp.add("max_number_classes", int_t, 0, + "Specify the maximum number of allowed alternative homotopy classes (limits computational effort)", + 5, 1, 100) + +grp_hcp.add("max_number_plans_in_current_class", int_t, 0, + "Max number of trajectories to try that are in the same homotopy class as the current best trajectory (setting this to 2 or more helps avoid local minima). Must be <= max_number_classes", + 1, 1, 10) + +grp_hcp.add("selection_cost_hysteresis", double_t, 0, + "Specify how much trajectory cost must a new candidate have w.r.t. a previously selected trajectory in order to be selected (selection if new_cost < old_cost*factor)", + 1.0, 0, 2) + + +grp_hcp.add("selection_prefer_initial_plan", double_t, 0, + "Specify a cost reduction in the interval (0,1) for the trajectory in the equivalence class of the initial plan.)", + 0.95, 0, 1) + +grp_hcp.add("selection_obst_cost_scale", double_t, 0, + "Extra scaling of obstacle cost terms just for selecting the 'best' candidate (new_obst_cost: obst_cost*factor)", + 2.0, 0, 1000) + +grp_hcp.add("selection_viapoint_cost_scale", double_t, 0, + "Extra scaling of via-point cost terms just for selecting the 'best' candidate. (new_viapt_cost: viapt_cost*factor)", + 1.0, 0, 100) + +grp_hcp.add("selection_alternative_time_cost", bool_t, 0, + "If true, time cost is replaced by the total transition time.", + False) + +grp_hcp.add("selection_dropping_probability", double_t, 0, + "At each planning cycle, TEBs other than the current 'best' one will be randomly dropped with this probability. Prevents becoming 'fixated' on sub-optimal alternative homotopies.", + 0.0, 0.0, 1.0) + +grp_hcp.add("switching_blocking_period", double_t, 0, + "Specify a time duration in seconds that needs to be expired before a switch to new equivalence class is allowed", + 0.0, 0.0, 60) + +grp_hcp.add("roadmap_graph_no_samples", int_t, 0, + "Specify the number of samples generated for creating the roadmap graph, if simple_exploration is turend off", + 15, 1, 100) + +grp_hcp.add("roadmap_graph_area_width", double_t, 0, + "Specify the width of the area in which sampled will be generated between start and goal [m] (the height equals the start-goal distance)", + 5, 0.1, 20) + +grp_hcp.add("roadmap_graph_area_length_scale", double_t, 0, + "The length of the rectangular region is determined by the distance between start and goal. This parameter further scales the distance such that the geometric center remains equal!)", + 1.0, 0.5, 2) + +grp_hcp.add("h_signature_prescaler", double_t, 0, + "Scale number of obstacle value in order to allow huge number of obstacles. Do not choose it extremly low, otherwise obstacles cannot be distinguished from each other (0.2 + Value: true + - Alpha: 0.100000001 + Cell Size: 0.100000001 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.0299999993 + Value: Lines + Name: Fine Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 100 + Reference Frame: + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 25; 255; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /test_optim_node/local_plan + Unreliable: false + Value: true + - Alpha: 1 + Arrow Length: 0.300000012 + Axes Length: 0.300000012 + Axes Radius: 0.00999999978 + Class: rviz/PoseArray + Color: 255; 25; 0 + Enabled: true + Head Length: 0.0700000003 + Head Radius: 0.0299999993 + Name: PoseArray + Shaft Length: 0.230000004 + Shaft Radius: 0.00999999978 + Shape: Arrow (Flat) + Topic: /test_optim_node/teb_poses + Unreliable: false + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /test_optim_node/teb_markers + Name: Marker + Namespaces: + PointObstacles: true + Queue Size: 100 + Value: true + - Class: rviz/InteractiveMarkers + Enable Transparency: true + Enabled: true + Name: InteractiveMarkers + Show Axes: false + Show Descriptions: true + Show Visual Aids: false + Update Topic: /marker_obstacles/update + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: odom + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/MoveCamera + - Class: rviz/Select + - Class: rviz/FocusCamera + - Class: rviz/Measure + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 7.77247 + Enable Stereo Rendering: + Stereo Eye Separation: 0.0599999987 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Focal Shape Fixed Size: true + Focal Shape Size: 0.0500000007 + Name: Current View + Near Clip Distance: 0.00999999978 + Pitch: 1.56979632 + Target Frame: + Value: Orbit (rviz) + Yaw: 4.71043873 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 846 + Hide Left Dock: false + Hide Right Dock: true + QMainWindow State: 000000ff00000000fd00000004000000000000016a000002c4fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c0061007900730100000028000002c4000000dd00fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000002c4fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a005600690065007700730000000028000002c4000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000054a0000003efc0100000002fb0000000800540069006d006501000000000000054a0000030000fffffffb0000000800540069006d00650100000000000004500000000000000000000003da000002c400000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: true + Width: 1354 + X: 137 + Y: 50 diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/cmake_modules/FindG2O.cmake b/src/rm_navigation/teb_local_planner/teb_local_planner/cmake_modules/FindG2O.cmake new file mode 100644 index 0000000..b2670d3 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/cmake_modules/FindG2O.cmake @@ -0,0 +1,97 @@ +# Locate the g2o libraries +# A general framework for graph optimization. +# +# This module defines +# G2O_FOUND, if false, do not try to link against g2o +# G2O_LIBRARIES, path to the libg2o +# G2O_INCLUDE_DIR, where to find the g2o header files +# +# Niko Suenderhauf +# Adapted by Felix Endres + +IF(UNIX) + + #IF(G2O_INCLUDE_DIR AND G2O_LIBRARIES) + # in cache already + # SET(G2O_FIND_QUIETLY TRUE) + #ENDIF(G2O_INCLUDE_DIR AND G2O_LIBRARIES) + + MESSAGE(STATUS "Searching for g2o ...") + FIND_PATH(G2O_INCLUDE_DIR + NAMES core math_groups types + PATHS /usr/local /usr + PATH_SUFFIXES include/g2o include) + + IF (G2O_INCLUDE_DIR) + MESSAGE(STATUS "Found g2o headers in: ${G2O_INCLUDE_DIR}") + ENDIF (G2O_INCLUDE_DIR) + + FIND_LIBRARY(G2O_CORE_LIB + NAMES g2o_core g2o_core_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_STUFF_LIB + NAMES g2o_stuff g2o_stuff_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_TYPES_SLAM2D_LIB + NAMES g2o_types_slam2d g2o_types_slam2d_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_TYPES_SLAM3D_LIB + NAMES g2o_types_slam3d g2o_types_slam3d_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_SOLVER_CHOLMOD_LIB + NAMES g2o_solver_cholmod g2o_solver_cholmod_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_SOLVER_PCG_LIB + NAMES g2o_solver_pcg g2o_solver_pcg_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_SOLVER_CSPARSE_LIB + NAMES g2o_solver_csparse g2o_solver_csparse_rd + PATHS /usr/local /usr + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_INCREMENTAL_LIB + NAMES g2o_incremental g2o_incremental_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + FIND_LIBRARY(G2O_CSPARSE_EXTENSION_LIB + NAMES g2o_csparse_extension g2o_csparse_extension_rd + PATHS /usr/local /usr ${CMAKE_PREFIX_PATH} + PATH_SUFFIXES lib) + + SET(G2O_LIBRARIES ${G2O_CSPARSE_EXTENSION_LIB} + ${G2O_CORE_LIB} + ${G2O_STUFF_LIB} + ${G2O_TYPES_SLAM2D_LIB} + ${G2O_TYPES_SLAM3D_LIB} + ${G2O_SOLVER_CHOLMOD_LIB} + ${G2O_SOLVER_PCG_LIB} + ${G2O_SOLVER_CSPARSE_LIB} + ${G2O_INCREMENTAL_LIB} + ) + + IF(G2O_LIBRARIES AND G2O_INCLUDE_DIR) + SET(G2O_FOUND "YES") + IF(NOT G2O_FIND_QUIETLY) + MESSAGE(STATUS "Found libg2o: ${G2O_LIBRARIES}") + ENDIF(NOT G2O_FIND_QUIETLY) + ELSE(G2O_LIBRARIES AND G2O_INCLUDE_DIR) + IF(NOT G2O_LIBRARIES) + IF(G2O_FIND_REQUIRED) + message(FATAL_ERROR "Could not find libg2o!") + ENDIF(G2O_FIND_REQUIRED) + ENDIF(NOT G2O_LIBRARIES) + + IF(NOT G2O_INCLUDE_DIR) + IF(G2O_FIND_REQUIRED) + message(FATAL_ERROR "Could not find g2o include directory!") + ENDIF(G2O_FIND_REQUIRED) + ENDIF(NOT G2O_INCLUDE_DIR) + ENDIF(G2O_LIBRARIES AND G2O_INCLUDE_DIR) + +ENDIF(UNIX) + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/cmake_modules/FindSUITESPARSE.cmake b/src/rm_navigation/teb_local_planner/teb_local_planner/cmake_modules/FindSUITESPARSE.cmake new file mode 100644 index 0000000..101b79b --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/cmake_modules/FindSUITESPARSE.cmake @@ -0,0 +1,133 @@ +# - Try to find SUITESPARSE +# Once done this will define +# +# SUITESPARSE_FOUND - system has SUITESPARSE +# SUITESPARSE_INCLUDE_DIRS - the SUITESPARSE include directory +# SUITESPARSE_LIBRARIES - Link these to use SUITESPARSE +# SUITESPARSE_SPQR_LIBRARY - name of spqr library (necessary due to error in debian package) +# SUITESPARSE_SPQR_LIBRARY_DIR - name of spqr library (necessary due to error in debian package) +# SUITESPARSE_LIBRARY_DIR - Library main directory containing suitesparse libs +# SUITESPARSE_LIBRARY_DIRS - all Library directories containing suitesparse libs +# SUITESPARSE_SPQR_VALID - automatic identification whether or not spqr package is installed correctly + +IF (SUITESPARSE_INCLUDE_DIRS) + # Already in cache, be silent + SET(SUITESPARSE_FIND_QUIETLY TRUE) +ENDIF (SUITESPARSE_INCLUDE_DIRS) + +if( WIN32 ) + # Find cholmod part of the suitesparse library collection + + FIND_PATH( CHOLMOD_INCLUDE_DIR cholmod.h + PATHS "C:\\libs\\win32\\SuiteSparse\\Include" ) + + # Add cholmod include directory to collection include directories + IF ( CHOLMOD_INCLUDE_DIR ) + list ( APPEND SUITESPARSE_INCLUDE_DIRS ${CHOLMOD_INCLUDE_DIR} ) + ENDIF( CHOLMOD_INCLUDE_DIR ) + + + # find path suitesparse library + FIND_PATH( SUITESPARSE_LIBRARY_DIRS + amd.lib + PATHS "C:\\libs\\win32\\SuiteSparse\\libs" ) + + # if we found the library, add it to the defined libraries + IF ( SUITESPARSE_LIBRARY_DIRS ) + list ( APPEND SUITESPARSE_LIBRARIES optimized;amd;optimized;camd;optimized;ccolamd;optimized;cholmod;optimized;colamd;optimized;metis;optimized;spqr;optimized;umfpack;debug;amdd;debug;camdd;debug;ccolamdd;debug;cholmodd;debug;spqrd;debug;umfpackd;debug;colamdd;debug;metisd;optimized;blas;optimized;libf2c;optimized;lapack;debug;blasd;debug;libf2cd;debug;lapackd ) + ENDIF( SUITESPARSE_LIBRARY_DIRS ) + +else( WIN32 ) + IF(APPLE) + FIND_PATH( CHOLMOD_INCLUDE_DIR cholmod.h + PATHS /opt/local/include/ufsparse + /usr/local/include ) + + FIND_PATH( SUITESPARSE_LIBRARY_DIR + NAMES libcholmod.a + PATHS /opt/local/lib + /usr/local/lib ) + ELSE(APPLE) + FIND_PATH( CHOLMOD_INCLUDE_DIR cholmod.h + PATHS /usr/local/include + /usr/include + /usr/include/suitesparse/ + ${CMAKE_SOURCE_DIR}/MacOS/Libs/cholmod + PATH_SUFFIXES cholmod/ CHOLMOD/ ) + + FIND_PATH( SUITESPARSE_LIBRARY_DIR + NAMES libcholmod.so libcholmod.a + PATHS /usr/lib + /usr/lib64 + /usr/lib/x86_64-linux-gnu + /usr/lib/i386-linux-gnu + /usr/local/lib + /usr/lib/arm-linux-gnueabihf/ + /usr/lib/aarch64-linux-gnu/ + /usr/lib/arm-linux-gnueabi/ + /usr/lib/arm-linux-gnu) + ENDIF(APPLE) + + # Add cholmod include directory to collection include directories + IF ( CHOLMOD_INCLUDE_DIR ) + list ( APPEND SUITESPARSE_INCLUDE_DIRS ${CHOLMOD_INCLUDE_DIR} ) + ENDIF( CHOLMOD_INCLUDE_DIR ) + + # if we found the library, add it to the defined libraries + IF ( SUITESPARSE_LIBRARY_DIR ) + + list ( APPEND SUITESPARSE_LIBRARIES amd) + list ( APPEND SUITESPARSE_LIBRARIES btf) + list ( APPEND SUITESPARSE_LIBRARIES camd) + list ( APPEND SUITESPARSE_LIBRARIES ccolamd) + list ( APPEND SUITESPARSE_LIBRARIES cholmod) + list ( APPEND SUITESPARSE_LIBRARIES colamd) + # list ( APPEND SUITESPARSE_LIBRARIES csparse) + list ( APPEND SUITESPARSE_LIBRARIES cxsparse) + list ( APPEND SUITESPARSE_LIBRARIES klu) + # list ( APPEND SUITESPARSE_LIBRARIES spqr) + list ( APPEND SUITESPARSE_LIBRARIES umfpack) + + IF (APPLE) + list ( APPEND SUITESPARSE_LIBRARIES suitesparseconfig) + ENDIF (APPLE) + + # Metis and spqr are optional + FIND_LIBRARY( SUITESPARSE_METIS_LIBRARY + NAMES metis + PATHS ${SUITESPARSE_LIBRARY_DIR} ) + IF (SUITESPARSE_METIS_LIBRARY) + list ( APPEND SUITESPARSE_LIBRARIES metis) + ENDIF(SUITESPARSE_METIS_LIBRARY) + + if(EXISTS "${CHOLMOD_INCLUDE_DIR}/SuiteSparseQR.hpp") + SET(SUITESPARSE_SPQR_VALID TRUE CACHE BOOL "SuiteSparseSPQR valid") + else() + SET(SUITESPARSE_SPQR_VALID false CACHE BOOL "SuiteSparseSPQR valid") + endif() + + if(SUITESPARSE_SPQR_VALID) + FIND_LIBRARY( SUITESPARSE_SPQR_LIBRARY + NAMES spqr + PATHS ${SUITESPARSE_LIBRARY_DIR} ) + IF (SUITESPARSE_SPQR_LIBRARY) + list ( APPEND SUITESPARSE_LIBRARIES spqr) + ENDIF (SUITESPARSE_SPQR_LIBRARY) + endif() + + ENDIF( SUITESPARSE_LIBRARY_DIR ) + +endif( WIN32 ) + + +IF (SUITESPARSE_INCLUDE_DIRS AND SUITESPARSE_LIBRARIES) + IF(WIN32) + list (APPEND SUITESPARSE_INCLUDE_DIRS ${CHOLMOD_INCLUDE_DIR}/../../UFconfig ) + ENDIF(WIN32) + SET(SUITESPARSE_FOUND TRUE) + MESSAGE(STATUS "Found SuiteSparse") +ELSE (SUITESPARSE_INCLUDE_DIRS AND SUITESPARSE_LIBRARIES) + SET( SUITESPARSE_FOUND FALSE ) + MESSAGE(FATAL_ERROR "Unable to find SuiteSparse") +ENDIF (SUITESPARSE_INCLUDE_DIRS AND SUITESPARSE_LIBRARIES) + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/distance_calculations.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/distance_calculations.h new file mode 100644 index 0000000..62f6b88 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/distance_calculations.h @@ -0,0 +1,464 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef DISTANCE_CALCULATIONS_H +#define DISTANCE_CALCULATIONS_H + +#include +#include "teb_local_planner/misc.h" + + +namespace teb_local_planner +{ + +//! Abbrev. for a container storing 2d points +typedef std::vector< Eigen::Vector2d, Eigen::aligned_allocator > Point2dContainer; + + +/** + * @brief Helper function to obtain the closest point on a line segment w.r.t. a reference point + * @param point 2D point + * @param line_start 2D point representing the start of the line segment + * @param line_end 2D point representing the end of the line segment + * @return Closest point on the line segment + */ +inline Eigen::Vector2d closest_point_on_line_segment_2d(const Eigen::Ref& point, const Eigen::Ref& line_start, const Eigen::Ref& line_end) +{ + Eigen::Vector2d diff = line_end - line_start; + double sq_norm = diff.squaredNorm(); + + if (sq_norm == 0) + return line_start; + + double u = ((point.x() - line_start.x()) * diff.x() + (point.y() - line_start.y())*diff.y()) / sq_norm; + + if (u <= 0) return line_start; + else if (u >= 1) return line_end; + + return line_start + u*diff; +} + +/** + * @brief Helper function to calculate the distance between a line segment and a point + * @param point 2D point + * @param line_start 2D point representing the start of the line segment + * @param line_end 2D point representing the end of the line segment + * @return minimum distance to a given line segment + */ +inline double distance_point_to_segment_2d(const Eigen::Ref& point, const Eigen::Ref& line_start, const Eigen::Ref& line_end) +{ + return (point - closest_point_on_line_segment_2d(point, line_start, line_end)).norm(); +} + +/** + * @brief Helper function to check whether two line segments intersects + * @param line1_start 2D point representing the start of the first line segment + * @param line1_end 2D point representing the end of the first line segment + * @param line2_start 2D point representing the start of the second line segment + * @param line2_end 2D point representing the end of the second line segment + * @param[out] intersection [optional] Write intersection point to destination (the value is only written, if both lines intersect, e.g. if the function returns \c true) + * @return \c true if both line segments intersect + */ +inline bool check_line_segments_intersection_2d(const Eigen::Ref& line1_start, const Eigen::Ref& line1_end, + const Eigen::Ref& line2_start, const Eigen::Ref& line2_end, Eigen::Vector2d* intersection = NULL) +{ + // http://stackoverflow.com/questions/563198/how-do-you-detect-where-two-line-segments-intersect + double s_numer, t_numer, denom, t; + Eigen::Vector2d line1 = line1_end - line1_start; + Eigen::Vector2d line2 = line2_end - line2_start; + + denom = line1.x() * line2.y() - line2.x() * line1.y(); + if (denom == 0) return false; // Collinear + bool denomPositive = denom > 0; + + Eigen::Vector2d aux = line1_start - line2_start; + + s_numer = line1.x() * aux.y() - line1.y() * aux.x(); + if ((s_numer < 0) == denomPositive) return false; // No collision + + t_numer = line2.x() * aux.y() - line2.y() * aux.x(); + if ((t_numer < 0) == denomPositive) return false; // No collision + + if (((s_numer > denom) == denomPositive) || ((t_numer > denom) == denomPositive)) return false; // No collision + + // Otherwise collision detected + t = t_numer / denom; + if (intersection) + { + *intersection = line1_start + t * line1; + } + + return true; +} + + +/** + * @brief Helper function to calculate the smallest distance between two line segments + * @param line1_start 2D point representing the start of the first line segment + * @param line1_end 2D point representing the end of the first line segment + * @param line2_start 2D point representing the start of the second line segment + * @param line2_end 2D point representing the end of the second line segment + * @return smallest distance between both segments +*/ +inline double distance_segment_to_segment_2d(const Eigen::Ref& line1_start, const Eigen::Ref& line1_end, + const Eigen::Ref& line2_start, const Eigen::Ref& line2_end) +{ + // TODO more efficient implementation + + // check if segments intersect + if (check_line_segments_intersection_2d(line1_start, line1_end, line2_start, line2_end)) + return 0; + + // check all 4 combinations + std::array distances; + + distances[0] = distance_point_to_segment_2d(line1_start, line2_start, line2_end); + distances[1] = distance_point_to_segment_2d(line1_end, line2_start, line2_end); + distances[2] = distance_point_to_segment_2d(line2_start, line1_start, line1_end); + distances[3] = distance_point_to_segment_2d(line2_end, line1_start, line1_end); + + return *std::min_element(distances.begin(), distances.end()); +} + + +/** + * @brief Helper function to calculate the smallest distance between a point and a closed polygon + * @param point 2D point + * @param vertices Vertices describing the closed polygon (the first vertex is not repeated at the end) + * @return smallest distance between point and polygon +*/ +inline double distance_point_to_polygon_2d(const Eigen::Vector2d& point, const Point2dContainer& vertices) +{ + double dist = HUGE_VAL; + + // the polygon is a point + if (vertices.size() == 1) + { + return (point - vertices.front()).norm(); + } + + // check each polygon edge + for (int i=0; i<(int)vertices.size()-1; ++i) + { + double new_dist = distance_point_to_segment_2d(point, vertices.at(i), vertices.at(i+1)); +// double new_dist = calc_distance_point_to_segment( position, vertices.at(i), vertices.at(i+1)); + if (new_dist < dist) + dist = new_dist; + } + + if (vertices.size()>2) // if not a line close polygon + { + double new_dist = distance_point_to_segment_2d(point, vertices.back(), vertices.front()); // check last edge + if (new_dist < dist) + return new_dist; + } + + return dist; +} + +/** + * @brief Helper function to calculate the smallest distance between a line segment and a closed polygon + * @param line_start 2D point representing the start of the line segment + * @param line_end 2D point representing the end of the line segment + * @param vertices Vertices describing the closed polygon (the first vertex is not repeated at the end) + * @return smallest distance between point and polygon +*/ +inline double distance_segment_to_polygon_2d(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, const Point2dContainer& vertices) +{ + double dist = HUGE_VAL; + + // the polygon is a point + if (vertices.size() == 1) + { + return distance_point_to_segment_2d(vertices.front(), line_start, line_end); + } + + // check each polygon edge + for (int i=0; i<(int)vertices.size()-1; ++i) + { + double new_dist = distance_segment_to_segment_2d(line_start, line_end, vertices.at(i), vertices.at(i+1)); +// double new_dist = calc_distance_point_to_segment( position, vertices.at(i), vertices.at(i+1)); + if (new_dist < dist) + dist = new_dist; + } + + if (vertices.size()>2) // if not a line close polygon + { + double new_dist = distance_segment_to_segment_2d(line_start, line_end, vertices.back(), vertices.front()); // check last edge + if (new_dist < dist) + return new_dist; + } + + return dist; +} + +/** + * @brief Helper function to calculate the smallest distance between two closed polygons + * @param vertices1 Vertices describing the first closed polygon (the first vertex is not repeated at the end) + * @param vertices2 Vertices describing the second closed polygon (the first vertex is not repeated at the end) + * @return smallest distance between point and polygon +*/ +inline double distance_polygon_to_polygon_2d(const Point2dContainer& vertices1, const Point2dContainer& vertices2) +{ + double dist = HUGE_VAL; + + // the polygon1 is a point + if (vertices1.size() == 1) + { + return distance_point_to_polygon_2d(vertices1.front(), vertices2); + } + + // check each edge of polygon1 + for (int i=0; i<(int)vertices1.size()-1; ++i) + { + double new_dist = distance_segment_to_polygon_2d(vertices1[i], vertices1[i+1], vertices2); + if (new_dist < dist) + dist = new_dist; + } + + if (vertices1.size()>2) // if not a line close polygon1 + { + double new_dist = distance_segment_to_polygon_2d(vertices1.back(), vertices1.front(), vertices2); // check last edge + if (new_dist < dist) + return new_dist; + } + + return dist; +} + + + + +// Further distance calculations: + + +// The Distance Calculations are mainly copied from http://geomalgorithms.com/a07-_distance.html +// Copyright 2001 softSurfer, 2012 Dan Sunday +// This code may be freely used and modified for any purpose +// providing that this copyright notice is included with it. +// SoftSurfer makes no warranty for this code, and cannot be held +// liable for any real or imagined damage resulting from its use. +// Users of this code must verify correctness for their application. + +inline double calc_distance_line_to_line_3d(const Eigen::Ref& x1, Eigen::Ref& u, + const Eigen::Ref& x2, Eigen::Ref& v) +{ + Eigen::Vector3d w = x2 - x1; + double a = u.squaredNorm(); // dot(u,u) always >= 0 + double b = u.dot(v); + double c = v.squaredNorm(); // dot(v,v) always >= 0 + double d = u.dot(w); + double e = v.dot(w); + double D = a*c - b*b; // always >= 0 + double sc, tc; + + // compute the line parameters of the two closest points + if (D < SMALL_NUM) { // the lines are almost parallel + sc = 0.0; + tc = (b>c ? d/b : e/c); // use the largest denominator + } + else { + sc = (b*e - c*d) / D; + tc = (a*e - b*d) / D; + } + + // get the difference of the two closest points + Eigen::Vector3d dP = w + (sc * u) - (tc * v); // = L1(sc) - L2(tc) + + return dP.norm(); // return the closest distance +} + + + + + +inline double calc_distance_segment_to_segment3D(const Eigen::Ref& line1_start, Eigen::Ref& line1_end, + const Eigen::Ref& line2_start, Eigen::Ref& line2_end) +{ + Eigen::Vector3d u = line1_end - line1_start; + Eigen::Vector3d v = line2_end - line2_start; + Eigen::Vector3d w = line2_start - line1_start; + double a = u.squaredNorm(); // dot(u,u) always >= 0 + double b = u.dot(v); + double c = v.squaredNorm(); // dot(v,v) always >= 0 + double d = u.dot(w); + double e = v.dot(w); + double D = a*c - b*b; // always >= 0 + double sc, sN, sD = D; // sc = sN / sD, default sD = D >= 0 + double tc, tN, tD = D; // tc = tN / tD, default tD = D >= 0 + + // compute the line parameters of the two closest points + if (D < SMALL_NUM) + { // the lines are almost parallel + sN = 0.0; // force using point P0 on segment S1 + sD = 1.0; // to prevent possible division by 0.0 later + tN = e; + tD = c; + } + else + { // get the closest points on the infinite lines + sN = (b*e - c*d); + tN = (a*e - b*d); + if (sN < 0.0) + { // sc < 0 => the s=0 edge is visible + sN = 0.0; + tN = e; + tD = c; + } + else if (sN > sD) + { // sc > 1 => the s=1 edge is visible + sN = sD; + tN = e + b; + tD = c; + } + } + + if (tN < 0.0) + { // tc < 0 => the t=0 edge is visible + tN = 0.0; + // recompute sc for this edge + if (-d < 0.0) + sN = 0.0; + else if (-d > a) + sN = sD; + else + { + sN = -d; + sD = a; + } + } + else if (tN > tD) + { // tc > 1 => the t=1 edge is visible + tN = tD; + // recompute sc for this edge + if ((-d + b) < 0.0) + sN = 0; + else if ((-d + b) > a) + sN = sD; + else + { + sN = (-d + b); + sD = a; + } + } + // finally do the division to get sc and tc + sc = (abs(sN) < SMALL_NUM ? 0.0 : sN / sD); + tc = (abs(tN) < SMALL_NUM ? 0.0 : tN / tD); + + // get the difference of the two closest points + Eigen::Vector3d dP = w + (sc * u) - (tc * v); // = S1(sc) - S2(tc) + + return dP.norm(); // return the closest distance +} + + + + +template +double calc_closest_point_to_approach_time(const VectorType& x1, const VectorType& vel1, const VectorType& x2, const VectorType& vel2) +{ + VectorType dv = vel1 - vel2; + + double dv2 = dv.squaredNorm(); // dot(v,v) + if (dv2 < SMALL_NUM) // the tracks are almost parallel + return 0.0; // any time is ok. Use time 0. + + VectorType w0 = x1 - x2; + double cpatime = -w0.dot(dv) / dv2; + + return cpatime; // time of CPA +} + +template +double calc_closest_point_to_approach_distance(const VectorType& x1, const VectorType& vel1, const VectorType& x2, const VectorType& vel2, double bound_cpa_time = 0) +{ + double ctime = calc_closest_point_to_approach_time(x1, vel1, x2, vel2); + if (bound_cpa_time!=0 && ctime > bound_cpa_time) ctime = bound_cpa_time; + VectorType P1 = x1 + (ctime * vel1); + VectorType P2 = x2 + (ctime * vel2); + + return (P2-P1).norm(); // distance at CPA +} + + + +// dist_Point_to_Line(): get the distance of a point to a line +// Input: a Point P and a Line L (in any dimension) +// Return: the shortest distance from P to L +template +double calc_distance_point_to_line( const VectorType& point, const VectorType& line_base, const VectorType& line_dir) +{ + VectorType w = point - line_base; + + double c1 = w.dot(line_dir); + double c2 = line_dir.dot(line_dir); + double b = c1 / c2; + + VectorType Pb = line_base + b * line_dir; + return (point-Pb).norm(); +} +//=================================================================== + + +// dist_Point_to_Segment(): get the distance of a point to a segment +// Input: a Point P and a Segment S (in any dimension) +// Return: the shortest distance from P to S +template +double calc_distance_point_to_segment( const VectorType& point, const VectorType& line_start, const VectorType& line_end) +{ + VectorType v = line_end - line_start; + VectorType w = point - line_start; + + double c1 = w.dot(v); + if ( c1 <= 0 ) + return w.norm(); + + double c2 = v.dot(v); + if ( c2 <= c1 ) + return (point-line_end).norm(); + + double b = c1 / c2; + VectorType Pb = line_start + b * v; + return (point-Pb).norm(); +} + + + +} // namespace teb_local_planner + +#endif /* DISTANCE_CALCULATIONS_H */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/equivalence_relations.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/equivalence_relations.h new file mode 100644 index 0000000..8551152 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/equivalence_relations.h @@ -0,0 +1,103 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef EQUIVALENCE_RELATIONS_H_ +#define EQUIVALENCE_RELATIONS_H_ + +#include + +namespace teb_local_planner +{ + +/** + * @class EquivalenceClass + * @brief Abstract class that defines an interface for computing and comparing equivalence classes + * + * Equivalence relations are utilized in order to test if two trajectories are belonging to the same + * equivalence class w.r.t. the current obstacle configurations. A common equivalence relation is + * the concept of homotopy classes. All trajectories belonging to the same homotopy class + * can CONTINUOUSLY be deformed into each other without intersecting any obstacle. Hence they likely + * share the same local minimum after invoking (local) trajectory optimization. A weaker equivalence relation + * is defined by the concept of homology classes (e.g. refer to HSignature). + * + * Each EquivalenceClass object (or subclass) stores a candidate value which might be compared to another EquivalenceClass object. + * + * @remarks Currently, the computeEquivalenceClass method is not available in the generic interface EquivalenceClass. + * Call the "compute"-methods directly on the subclass. + */ +class EquivalenceClass +{ +public: + + /** + * @brief Default constructor + */ + EquivalenceClass() {} + + /** + * @brief virtual destructor + */ + virtual ~EquivalenceClass() {} + + /** + * @brief Check if two candidate classes are equivalent + * @param other The other equivalence class to test with + */ + virtual bool isEqual(const EquivalenceClass& other) const = 0; + + /** + * @brief Check if the equivalence value is detected correctly + * @return Returns false, if the equivalence class detection failed, e.g. if nan- or inf values occur. + */ + virtual bool isValid() const = 0; + + /** + * @brief Check if the trajectory is non-looping around an obstacle + * @return Returns false, if the trajectory loops around an obstacle + */ + virtual bool isReasonable() const = 0; + +}; + +using EquivalenceClassPtr = std::shared_ptr; + + +} // namespace teb_local_planner + + +#endif /* EQUIVALENCE_RELATIONS_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/base_teb_edges.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/base_teb_edges.h new file mode 100644 index 0000000..dd35147 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/base_teb_edges.h @@ -0,0 +1,278 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef _BASE_TEB_EDGES_H_ +#define _BASE_TEB_EDGES_H_ + +#include "teb_local_planner/teb_config.h" + +#include +#include +#include + +namespace teb_local_planner +{ + + +/** + * @class BaseTebUnaryEdge + * @brief Base edge connecting a single vertex in the TEB optimization problem + * + * This edge defines a base edge type for the TEB optimization problem. + * It is derived from the corresponding g2o base classes augmented with additional information for the dedicated TEB problem (e.g. config). + * The destructor erases the edge in all attached vertices in order to allow keeping the vertices valid in subsequent g2o optimization calls. + * Memory of edges should be freed by calling the clearEdge method of the g2o optimizer class. + * @see BaseTebMultiEdge, BaseTebBinaryEdge, g2o::BaseBinaryEdge, g2o::BaseUnaryEdge, g2o::BaseMultiEdge + */ +template +class BaseTebUnaryEdge : public g2o::BaseUnaryEdge +{ +public: + + using typename g2o::BaseUnaryEdge::ErrorVector; + using g2o::BaseUnaryEdge::computeError; + + /** + * @brief Compute and return error / cost value. + * + * This method is called by TebOptimalPlanner::computeCurrentCost to obtain the current cost. + * @return 2D Cost / error vector [nh cost, backward drive dir cost]^T + */ + ErrorVector& getError() + { + computeError(); + return _error; + } + + /** + * @brief Read values from input stream + */ + virtual bool read(std::istream& is) + { + // TODO generic read + return true; + } + + /** + * @brief Write values to an output stream + */ + virtual bool write(std::ostream& os) const + { + // TODO generic write + return os.good(); + } + + /** + * @brief Assign the TebConfig class for parameters. + * @param cfg TebConfig class + */ + void setTebConfig(const TebConfig& cfg) + { + cfg_ = &cfg; + } + +protected: + + using g2o::BaseUnaryEdge::_error; + using g2o::BaseUnaryEdge::_vertices; + + const TebConfig* cfg_{nullptr}; //!< Store TebConfig class for parameters + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +/** + * @class BaseTebBinaryEdge + * @brief Base edge connecting two vertices in the TEB optimization problem + * + * This edge defines a base edge type for the TEB optimization problem. + * It is derived from the corresponding g2o base classes augmented with additional information for the dedicated TEB problem (e.g. config). + * The destructor erases the edge in all attached vertices in order to allow keeping the vertices valid in subsequent g2o optimization calls. + * Memory of edges should be freed by calling the clearEdge method of the g2o optimizer class. + * @see BaseTebMultiEdge, BaseTebUnaryEdge, g2o::BaseBinaryEdge, g2o::BaseUnaryEdge, g2o::BaseMultiEdge + */ +template +class BaseTebBinaryEdge : public g2o::BaseBinaryEdge +{ +public: + + using typename g2o::BaseBinaryEdge::ErrorVector; + using g2o::BaseBinaryEdge::computeError; + + /** + * @brief Compute and return error / cost value. + * + * This method is called by TebOptimalPlanner::computeCurrentCost to obtain the current cost. + * @return 2D Cost / error vector [nh cost, backward drive dir cost]^T + */ + ErrorVector& getError() + { + computeError(); + return _error; + } + + /** + * @brief Read values from input stream + */ + virtual bool read(std::istream& is) + { + // TODO generic read + return true; + } + + /** + * @brief Write values to an output stream + */ + virtual bool write(std::ostream& os) const + { + // TODO generic write + return os.good(); + } + + /** + * @brief Assign the TebConfig class for parameters. + * @param cfg TebConfig class + */ + void setTebConfig(const TebConfig& cfg) + { + cfg_ = &cfg; + } + +protected: + + using g2o::BaseBinaryEdge::_error; + using g2o::BaseBinaryEdge::_vertices; + + const TebConfig* cfg_{nullptr}; //!< Store TebConfig class for parameters + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + +/** + * @class BaseTebMultiEdge + * @brief Base edge connecting multiple vertices in the TEB optimization problem + * + * This edge defines a base edge type for the TEB optimization problem. + * It is derived from the corresponding g2o base classes augmented with additional information for the dedicated TEB problem (e.g. config). + * The destructor erases the edge in all attached vertices in order to allow keeping the vertices valid in subsequent g2o optimization calls. + * Memory of edges should be freed by calling the clearEdge method of the g2o optimizer class. + * @see BaseTebBinaryEdge, BaseTebUnaryEdge, g2o::BaseBinaryEdge, g2o::BaseUnaryEdge, g2o::BaseMultiEdge + */ +template +class BaseTebMultiEdge : public g2o::BaseMultiEdge +{ +public: + + using typename g2o::BaseMultiEdge::ErrorVector; + using g2o::BaseMultiEdge::computeError; + + // Overwrites resize() from the parent class + virtual void resize(size_t size) + { + g2o::BaseMultiEdge::resize(size); + + for(std::size_t i=0; i<_vertices.size(); ++i) + _vertices[i] = NULL; + } + + /** + * @brief Compute and return error / cost value. + * + * This method is called by TebOptimalPlanner::computeCurrentCost to obtain the current cost. + * @return 2D Cost / error vector [nh cost, backward drive dir cost]^T + */ + ErrorVector& getError() + { + computeError(); + return _error; + } + + /** + * @brief Read values from input stream + */ + virtual bool read(std::istream& is) + { + // TODO generic read + return true; + } + + /** + * @brief Write values to an output stream + */ + virtual bool write(std::ostream& os) const + { + // TODO generic write + return os.good(); + } + + /** + * @brief Assign the TebConfig class for parameters. + * @param cfg TebConfig class + */ + void setTebConfig(const TebConfig& cfg) + { + cfg_ = &cfg; + } + +protected: + + using g2o::BaseMultiEdge::_error; + using g2o::BaseMultiEdge::_vertices; + + const TebConfig* cfg_{nullptr}; //!< Store TebConfig class for parameters + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + + + + +} // end namespace + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_acceleration.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_acceleration.h new file mode 100644 index 0000000..5d3ff98 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_acceleration.h @@ -0,0 +1,732 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef EDGE_ACCELERATION_H_ +#define EDGE_ACCELERATION_H_ + +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/vertex_timediff.h" +#include "teb_local_planner/g2o_types/penalties.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/misc.h" + +#include + +namespace teb_local_planner +{ + +/** + * @class EdgeAcceleration + * @brief Edge defining the cost function for limiting the translational and rotational acceleration. + * + * The edge depends on five vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \mathbf{s}_{ip2}, \Delta T_i, \Delta T_{ip1} \f$ and minimizes: + * \f$ \min \textrm{penaltyInterval}( [a, omegadot } ]^T ) \cdot weight \f$. \n + * \e a is calculated using the difference quotient (twice) and the position parts of all three poses \n + * \e omegadot is calculated using the difference quotient of the yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation() \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval() \n + * The dimension of the error / cost vector is 2: the first component represents the translational acceleration and + * the second one the rotational acceleration. + * @see TebOptimalPlanner::AddEdgesAcceleration + * @see EdgeAccelerationStart + * @see EdgeAccelerationGoal + * @remarks Do not forget to call setTebConfig() + * @remarks Refer to EdgeAccelerationStart() and EdgeAccelerationGoal() for defining boundary values! + */ +class EdgeAcceleration : public BaseTebMultiEdge<2, double> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeAcceleration() + { + this->resize(5); + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeAcceleration()"); + const VertexPose* pose1 = static_cast(_vertices[0]); + const VertexPose* pose2 = static_cast(_vertices[1]); + const VertexPose* pose3 = static_cast(_vertices[2]); + const VertexTimeDiff* dt1 = static_cast(_vertices[3]); + const VertexTimeDiff* dt2 = static_cast(_vertices[4]); + + // VELOCITY & ACCELERATION + const Eigen::Vector2d diff1 = pose2->position() - pose1->position(); + const Eigen::Vector2d diff2 = pose3->position() - pose2->position(); + + double dist1 = diff1.norm(); + double dist2 = diff2.norm(); + const double angle_diff1 = g2o::normalize_theta(pose2->theta() - pose1->theta()); + const double angle_diff2 = g2o::normalize_theta(pose3->theta() - pose2->theta()); + + if (cfg_->trajectory.exact_arc_length) // use exact arc length instead of Euclidean approximation + { + if (angle_diff1 != 0) + { + const double radius = dist1/(2*sin(angle_diff1/2)); + dist1 = fabs( angle_diff1 * radius ); // actual arg length! + } + if (angle_diff2 != 0) + { + const double radius = dist2/(2*sin(angle_diff2/2)); + dist2 = fabs( angle_diff2 * radius ); // actual arg length! + } + } + + double vel1 = dist1 / dt1->dt(); + double vel2 = dist2 / dt2->dt(); + + + // consider directions +// vel1 *= g2o::sign(diff1[0]*cos(pose1->theta()) + diff1[1]*sin(pose1->theta())); +// vel2 *= g2o::sign(diff2[0]*cos(pose2->theta()) + diff2[1]*sin(pose2->theta())); + vel1 *= fast_sigmoid( 100*(diff1.x()*cos(pose1->theta()) + diff1.y()*sin(pose1->theta())) ); + vel2 *= fast_sigmoid( 100*(diff2.x()*cos(pose2->theta()) + diff2.y()*sin(pose2->theta())) ); + + const double acc_lin = (vel2 - vel1)*2 / ( dt1->dt() + dt2->dt() ); + + + _error[0] = penaltyBoundToInterval(acc_lin,cfg_->robot.acc_lim_x,cfg_->optim.penalty_epsilon); + + // ANGULAR ACCELERATION + const double omega1 = angle_diff1 / dt1->dt(); + const double omega2 = angle_diff2 / dt2->dt(); + const double acc_rot = (omega2 - omega1)*2 / ( dt1->dt() + dt2->dt() ); + + _error[1] = penaltyBoundToInterval(acc_rot,cfg_->robot.acc_lim_theta,cfg_->optim.penalty_epsilon); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeAcceleration::computeError() translational: _error[0]=%f\n",_error[0]); + TEB_ASSERT_MSG(std::isfinite(_error[1]), "EdgeAcceleration::computeError() rotational: _error[1]=%f\n",_error[1]); + } + + + +#ifdef USE_ANALYTIC_JACOBI +#if 0 + /* + * @brief Jacobi matrix of the cost function specified in computeError(). + */ + void linearizeOplus() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeAcceleration()"); + const VertexPointXY* conf1 = static_cast(_vertices[0]); + const VertexPointXY* conf2 = static_cast(_vertices[1]); + const VertexPointXY* conf3 = static_cast(_vertices[2]); + const VertexTimeDiff* deltaT1 = static_cast(_vertices[3]); + const VertexTimeDiff* deltaT2 = static_cast(_vertices[4]); + const VertexOrientation* angle1 = static_cast(_vertices[5]); + const VertexOrientation* angle2 = static_cast(_vertices[6]); + const VertexOrientation* angle3 = static_cast(_vertices[7]); + + Eigen::Vector2d deltaS1 = conf2->estimate() - conf1->estimate(); + Eigen::Vector2d deltaS2 = conf3->estimate() - conf2->estimate(); + double dist1 = deltaS1.norm(); + double dist2 = deltaS2.norm(); + + double sum_time = deltaT1->estimate() + deltaT2->estimate(); + double sum_time_inv = 1 / sum_time; + double dt1_inv = 1/deltaT1->estimate(); + double dt2_inv = 1/deltaT2->estimate(); + double aux0 = 2/sum_time_inv; + double aux1 = dist1 * deltaT1->estimate(); + double aux2 = dist2 * deltaT2->estimate(); + + double vel1 = dist1 * dt1_inv; + double vel2 = dist2 * dt2_inv; + double omega1 = g2o::normalize_theta( angle2->estimate() - angle1->estimate() ) * dt1_inv; + double omega2 = g2o::normalize_theta( angle3->estimate() - angle2->estimate() ) * dt2_inv; + double acc = (vel2 - vel1) * aux0; + double omegadot = (omega2 - omega1) * aux0; + double aux3 = -acc/2; + double aux4 = -omegadot/2; + + double dev_border_acc = penaltyBoundToIntervalDerivative(acc, tebConfig.robot_acceleration_max_trans,optimizationConfig.optimization_boundaries_epsilon,optimizationConfig.optimization_boundaries_scale,optimizationConfig.optimization_boundaries_order); + double dev_border_omegadot = penaltyBoundToIntervalDerivative(omegadot, tebConfig.robot_acceleration_max_rot,optimizationConfig.optimization_boundaries_epsilon,optimizationConfig.optimization_boundaries_scale,optimizationConfig.optimization_boundaries_order); + + _jacobianOplus[0].resize(2,2); // conf1 + _jacobianOplus[1].resize(2,2); // conf2 + _jacobianOplus[2].resize(2,2); // conf3 + _jacobianOplus[3].resize(2,1); // deltaT1 + _jacobianOplus[4].resize(2,1); // deltaT2 + _jacobianOplus[5].resize(2,1); // angle1 + _jacobianOplus[6].resize(2,1); // angle2 + _jacobianOplus[7].resize(2,1); // angle3 + + if (aux1==0) aux1=1e-20; + if (aux2==0) aux2=1e-20; + + if (dev_border_acc!=0) + { + // TODO: double aux = aux0 * dev_border_acc; + // double aux123 = aux / aux1; + _jacobianOplus[0](0,0) = aux0 * deltaS1[0] / aux1 * dev_border_acc; // acc x1 + _jacobianOplus[0](0,1) = aux0 * deltaS1[1] / aux1 * dev_border_acc; // acc y1 + _jacobianOplus[1](0,0) = -aux0 * ( deltaS1[0] / aux1 + deltaS2[0] / aux2 ) * dev_border_acc; // acc x2 + _jacobianOplus[1](0,1) = -aux0 * ( deltaS1[1] / aux1 + deltaS2[1] / aux2 ) * dev_border_acc; // acc y2 + _jacobianOplus[2](0,0) = aux0 * deltaS2[0] / aux2 * dev_border_acc; // acc x3 + _jacobianOplus[2](0,1) = aux0 * deltaS2[1] / aux2 * dev_border_acc; // acc y3 + _jacobianOplus[2](0,0) = 0; + _jacobianOplus[2](0,1) = 0; + _jacobianOplus[3](0,0) = aux0 * (aux3 + vel1 * dt1_inv) * dev_border_acc; // acc deltaT1 + _jacobianOplus[4](0,0) = aux0 * (aux3 - vel2 * dt2_inv) * dev_border_acc; // acc deltaT2 + } + else + { + _jacobianOplus[0](0,0) = 0; // acc x1 + _jacobianOplus[0](0,1) = 0; // acc y1 + _jacobianOplus[1](0,0) = 0; // acc x2 + _jacobianOplus[1](0,1) = 0; // acc y2 + _jacobianOplus[2](0,0) = 0; // acc x3 + _jacobianOplus[2](0,1) = 0; // acc y3 + _jacobianOplus[3](0,0) = 0; // acc deltaT1 + _jacobianOplus[4](0,0) = 0; // acc deltaT2 + } + + if (dev_border_omegadot!=0) + { + _jacobianOplus[3](1,0) = aux0 * ( aux4 + omega1 * dt1_inv ) * dev_border_omegadot; // omegadot deltaT1 + _jacobianOplus[4](1,0) = aux0 * ( aux4 - omega2 * dt2_inv ) * dev_border_omegadot; // omegadot deltaT2 + _jacobianOplus[5](1,0) = aux0 * dt1_inv * dev_border_omegadot; // omegadot angle1 + _jacobianOplus[6](1,0) = -aux0 * ( dt1_inv + dt2_inv ) * dev_border_omegadot; // omegadot angle2 + _jacobianOplus[7](1,0) = aux0 * dt2_inv * dev_border_omegadot; // omegadot angle3 + } + else + { + _jacobianOplus[3](1,0) = 0; // omegadot deltaT1 + _jacobianOplus[4](1,0) = 0; // omegadot deltaT2 + _jacobianOplus[5](1,0) = 0; // omegadot angle1 + _jacobianOplus[6](1,0) = 0; // omegadot angle2 + _jacobianOplus[7](1,0) = 0; // omegadot angle3 + } + + _jacobianOplus[0](1,0) = 0; // omegadot x1 + _jacobianOplus[0](1,1) = 0; // omegadot y1 + _jacobianOplus[1](1,0) = 0; // omegadot x2 + _jacobianOplus[1](1,1) = 0; // omegadot y2 + _jacobianOplus[2](1,0) = 0; // omegadot x3 + _jacobianOplus[2](1,1) = 0; // omegadot y3 + _jacobianOplus[5](0,0) = 0; // acc angle1 + _jacobianOplus[6](0,0) = 0; // acc angle2 + _jacobianOplus[7](0,0) = 0; // acc angle3 + } +#endif +#endif + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + +/** + * @class EdgeAccelerationStart + * @brief Edge defining the cost function for limiting the translational and rotational acceleration at the beginning of the trajectory. + * + * The edge depends on three vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \Delta T_i \f$, an initial velocity defined by setInitialVelocity() + * and minimizes: \n + * \f$ \min \textrm{penaltyInterval}( [a, omegadot ]^T ) \cdot weight \f$. \n + * \e a is calculated using the difference quotient (twice) and the position parts of the poses. \n + * \e omegadot is calculated using the difference quotient of the yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation(). \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval(). \n + * The dimension of the error / cost vector is 2: the first component represents the translational acceleration and + * the second one the rotational acceleration. + * @see TebOptimalPlanner::AddEdgesAcceleration + * @see EdgeAcceleration + * @see EdgeAccelerationGoal + * @remarks Do not forget to call setTebConfig() + * @remarks Refer to EdgeAccelerationGoal() for defining boundary values at the end of the trajectory! + */ +class EdgeAccelerationStart : public BaseTebMultiEdge<2, const geometry_msgs::msg::Twist*> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeAccelerationStart() + { + _measurement = NULL; + this->resize(3); + } + + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement, "You must call setTebConfig() and setStartVelocity() on EdgeAccelerationStart()"); + const VertexPose* pose1 = static_cast(_vertices[0]); + const VertexPose* pose2 = static_cast(_vertices[1]); + const VertexTimeDiff* dt = static_cast(_vertices[2]); + + // VELOCITY & ACCELERATION + const Eigen::Vector2d diff = pose2->position() - pose1->position(); + double dist = diff.norm(); + const double angle_diff = g2o::normalize_theta(pose2->theta() - pose1->theta()); + if (cfg_->trajectory.exact_arc_length && angle_diff != 0) + { + const double radius = dist/(2*sin(angle_diff/2)); + dist = fabs( angle_diff * radius ); // actual arg length! + } + + const double vel1 = _measurement->linear.x; + double vel2 = dist / dt->dt(); + + // consider directions + //vel2 *= g2o::sign(diff[0]*cos(pose1->theta()) + diff[1]*sin(pose1->theta())); + vel2 *= fast_sigmoid( 100*(diff.x()*cos(pose1->theta()) + diff.y()*sin(pose1->theta())) ); + + const double acc_lin = (vel2 - vel1) / dt->dt(); + + _error[0] = penaltyBoundToInterval(acc_lin,cfg_->robot.acc_lim_x,cfg_->optim.penalty_epsilon); + + // ANGULAR ACCELERATION + const double omega1 = _measurement->angular.z; + const double omega2 = angle_diff / dt->dt(); + const double acc_rot = (omega2 - omega1) / dt->dt(); + + _error[1] = penaltyBoundToInterval(acc_rot,cfg_->robot.acc_lim_theta,cfg_->optim.penalty_epsilon); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeAccelerationStart::computeError() translational: _error[0]=%f\n",_error[0]); + TEB_ASSERT_MSG(std::isfinite(_error[1]), "EdgeAccelerationStart::computeError() rotational: _error[1]=%f\n",_error[1]); + } + + /** + * @brief Set the initial velocity that is taken into account for calculating the acceleration + * @param vel_start twist message containing the translational and rotational velocity + */ + void setInitialVelocity(const geometry_msgs::msg::Twist& vel_start) + { + _measurement = &vel_start; + } + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + + +/** + * @class EdgeAccelerationGoal + * @brief Edge defining the cost function for limiting the translational and rotational acceleration at the end of the trajectory. + * + * The edge depends on three vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \Delta T_i \f$, an initial velocity defined by setGoalVelocity() + * and minimizes: \n + * \f$ \min \textrm{penaltyInterval}( [a, omegadot ]^T ) \cdot weight \f$. \n + * \e a is calculated using the difference quotient (twice) and the position parts of the poses \n + * \e omegadot is calculated using the difference quotient of the yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation() \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval() \n + * The dimension of the error / cost vector is 2: the first component represents the translational acceleration and + * the second one the rotational acceleration. + * @see TebOptimalPlanner::AddEdgesAcceleration + * @see EdgeAcceleration + * @see EdgeAccelerationStart + * @remarks Do not forget to call setTebConfig() + * @remarks Refer to EdgeAccelerationStart() for defining boundary (initial) values at the end of the trajectory + */ +class EdgeAccelerationGoal : public BaseTebMultiEdge<2, const geometry_msgs::msg::Twist*> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeAccelerationGoal() + { + _measurement = NULL; + this->resize(3); + } + + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement, "You must call setTebConfig() and setGoalVelocity() on EdgeAccelerationGoal()"); + const VertexPose* pose_pre_goal = static_cast(_vertices[0]); + const VertexPose* pose_goal = static_cast(_vertices[1]); + const VertexTimeDiff* dt = static_cast(_vertices[2]); + + // VELOCITY & ACCELERATION + + const Eigen::Vector2d diff = pose_goal->position() - pose_pre_goal->position(); + double dist = diff.norm(); + const double angle_diff = g2o::normalize_theta(pose_goal->theta() - pose_pre_goal->theta()); + if (cfg_->trajectory.exact_arc_length && angle_diff != 0) + { + double radius = dist/(2*sin(angle_diff/2)); + dist = fabs( angle_diff * radius ); // actual arg length! + } + + double vel1 = dist / dt->dt(); + const double vel2 = _measurement->linear.x; + + // consider directions + //vel1 *= g2o::sign(diff[0]*cos(pose_pre_goal->theta()) + diff[1]*sin(pose_pre_goal->theta())); + vel1 *= fast_sigmoid( 100*(diff.x()*cos(pose_pre_goal->theta()) + diff.y()*sin(pose_pre_goal->theta())) ); + + const double acc_lin = (vel2 - vel1) / dt->dt(); + + _error[0] = penaltyBoundToInterval(acc_lin,cfg_->robot.acc_lim_x,cfg_->optim.penalty_epsilon); + + // ANGULAR ACCELERATION + const double omega1 = angle_diff / dt->dt(); + const double omega2 = _measurement->angular.z; + const double acc_rot = (omega2 - omega1) / dt->dt(); + + _error[1] = penaltyBoundToInterval(acc_rot,cfg_->robot.acc_lim_theta,cfg_->optim.penalty_epsilon); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeAccelerationGoal::computeError() translational: _error[0]=%f\n",_error[0]); + TEB_ASSERT_MSG(std::isfinite(_error[1]), "EdgeAccelerationGoal::computeError() rotational: _error[1]=%f\n",_error[1]); + } + + /** + * @brief Set the goal / final velocity that is taken into account for calculating the acceleration + * @param vel_goal twist message containing the translational and rotational velocity + */ + void setGoalVelocity(const geometry_msgs::msg::Twist& vel_goal) + { + _measurement = &vel_goal; + } + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + + +/** + * @class EdgeAccelerationHolonomic + * @brief Edge defining the cost function for limiting the translational and rotational acceleration. + * + * The edge depends on five vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \mathbf{s}_{ip2}, \Delta T_i, \Delta T_{ip1} \f$ and minimizes: + * \f$ \min \textrm{penaltyInterval}( [ax, ay, omegadot } ]^T ) \cdot weight \f$. \n + * \e ax is calculated using the difference quotient (twice) and the x position parts of all three poses \n + * \e ay is calculated using the difference quotient (twice) and the y position parts of all three poses \n + * \e omegadot is calculated using the difference quotient of the yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation() \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval() \n + * The dimension of the error / cost vector is 3: the first component represents the translational acceleration (x-dir), + * the second one the strafing acceleration and the third one the rotational acceleration. + * @see TebOptimalPlanner::AddEdgesAcceleration + * @see EdgeAccelerationHolonomicStart + * @see EdgeAccelerationHolonomicGoal + * @remarks Do not forget to call setTebConfig() + * @remarks Refer to EdgeAccelerationHolonomicStart() and EdgeAccelerationHolonomicGoal() for defining boundary values! + */ +class EdgeAccelerationHolonomic : public BaseTebMultiEdge<3, double> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeAccelerationHolonomic() + { + this->resize(5); + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeAcceleration()"); + const VertexPose* pose1 = static_cast(_vertices[0]); + const VertexPose* pose2 = static_cast(_vertices[1]); + const VertexPose* pose3 = static_cast(_vertices[2]); + const VertexTimeDiff* dt1 = static_cast(_vertices[3]); + const VertexTimeDiff* dt2 = static_cast(_vertices[4]); + + // VELOCITY & ACCELERATION + Eigen::Vector2d diff1 = pose2->position() - pose1->position(); + Eigen::Vector2d diff2 = pose3->position() - pose2->position(); + + double cos_theta1 = std::cos(pose1->theta()); + double sin_theta1 = std::sin(pose1->theta()); + double cos_theta2 = std::cos(pose2->theta()); + double sin_theta2 = std::sin(pose2->theta()); + + // transform pose2 into robot frame pose1 (inverse 2d rotation matrix) + double p1_dx = cos_theta1*diff1.x() + sin_theta1*diff1.y(); + double p1_dy = -sin_theta1*diff1.x() + cos_theta1*diff1.y(); + // transform pose3 into robot frame pose2 (inverse 2d rotation matrix) + double p2_dx = cos_theta2*diff2.x() + sin_theta2*diff2.y(); + double p2_dy = -sin_theta2*diff2.x() + cos_theta2*diff2.y(); + + double vel1_x = p1_dx / dt1->dt(); + double vel1_y = p1_dy / dt1->dt(); + double vel2_x = p2_dx / dt2->dt(); + double vel2_y = p2_dy / dt2->dt(); + + double dt12 = dt1->dt() + dt2->dt(); + + double acc_x = (vel2_x - vel1_x)*2 / dt12; + double acc_y = (vel2_y - vel1_y)*2 / dt12; + + _error[0] = penaltyBoundToInterval(acc_x,cfg_->robot.acc_lim_x,cfg_->optim.penalty_epsilon); + _error[1] = penaltyBoundToInterval(acc_y,cfg_->robot.acc_lim_y,cfg_->optim.penalty_epsilon); + + // ANGULAR ACCELERATION + double omega1 = g2o::normalize_theta(pose2->theta() - pose1->theta()) / dt1->dt(); + double omega2 = g2o::normalize_theta(pose3->theta() - pose2->theta()) / dt2->dt(); + double acc_rot = (omega2 - omega1)*2 / dt12; + + _error[2] = penaltyBoundToInterval(acc_rot,cfg_->robot.acc_lim_theta,cfg_->optim.penalty_epsilon); + + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeAcceleration::computeError() translational: _error[0]=%f\n",_error[0]); + TEB_ASSERT_MSG(std::isfinite(_error[1]), "EdgeAcceleration::computeError() strafing: _error[1]=%f\n",_error[1]); + TEB_ASSERT_MSG(std::isfinite(_error[2]), "EdgeAcceleration::computeError() rotational: _error[2]=%f\n",_error[2]); + } + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + +/** + * @class EdgeAccelerationHolonomicStart + * @brief Edge defining the cost function for limiting the translational and rotational acceleration at the beginning of the trajectory. + * + * The edge depends on three vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \Delta T_i \f$, an initial velocity defined by setInitialVelocity() + * and minimizes: \n + * \f$ \min \textrm{penaltyInterval}( [ax, ay, omegadot ]^T ) \cdot weight \f$. \n + * \e ax is calculated using the difference quotient (twice) and the x-position parts of the poses. \n + * \e ay is calculated using the difference quotient (twice) and the y-position parts of the poses. \n + * \e omegadot is calculated using the difference quotient of the yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation(). \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval(). \n + * The dimension of the error / cost vector is 3: the first component represents the translational acceleration, + * the second one the strafing acceleration and the third one the rotational acceleration. + * @see TebOptimalPlanner::AddEdgesAcceleration + * @see EdgeAccelerationHolonomic + * @see EdgeAccelerationHolonomicGoal + * @remarks Do not forget to call setTebConfig() + * @remarks Refer to EdgeAccelerationHolonomicGoal() for defining boundary values at the end of the trajectory! + */ +class EdgeAccelerationHolonomicStart : public BaseTebMultiEdge<3, const geometry_msgs::msg::Twist*> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeAccelerationHolonomicStart() + { + this->resize(3); + _measurement = NULL; + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement, "You must call setTebConfig() and setStartVelocity() on EdgeAccelerationStart()"); + const VertexPose* pose1 = static_cast(_vertices[0]); + const VertexPose* pose2 = static_cast(_vertices[1]); + const VertexTimeDiff* dt = static_cast(_vertices[2]); + + // VELOCITY & ACCELERATION + Eigen::Vector2d diff = pose2->position() - pose1->position(); + + double cos_theta1 = std::cos(pose1->theta()); + double sin_theta1 = std::sin(pose1->theta()); + + // transform pose2 into robot frame pose1 (inverse 2d rotation matrix) + double p1_dx = cos_theta1*diff.x() + sin_theta1*diff.y(); + double p1_dy = -sin_theta1*diff.x() + cos_theta1*diff.y(); + + double vel1_x = _measurement->linear.x; + double vel1_y = _measurement->linear.y; + double vel2_x = p1_dx / dt->dt(); + double vel2_y = p1_dy / dt->dt(); + + double acc_lin_x = (vel2_x - vel1_x) / dt->dt(); + double acc_lin_y = (vel2_y - vel1_y) / dt->dt(); + + _error[0] = penaltyBoundToInterval(acc_lin_x,cfg_->robot.acc_lim_x,cfg_->optim.penalty_epsilon); + _error[1] = penaltyBoundToInterval(acc_lin_y,cfg_->robot.acc_lim_y,cfg_->optim.penalty_epsilon); + + // ANGULAR ACCELERATION + double omega1 = _measurement->angular.z; + double omega2 = g2o::normalize_theta(pose2->theta() - pose1->theta()) / dt->dt(); + double acc_rot = (omega2 - omega1) / dt->dt(); + + _error[2] = penaltyBoundToInterval(acc_rot,cfg_->robot.acc_lim_theta,cfg_->optim.penalty_epsilon); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeAccelerationStart::computeError() translational: _error[0]=%f\n",_error[0]); + TEB_ASSERT_MSG(std::isfinite(_error[1]), "EdgeAccelerationStart::computeError() strafing: _error[1]=%f\n",_error[1]); + TEB_ASSERT_MSG(std::isfinite(_error[2]), "EdgeAccelerationStart::computeError() rotational: _error[2]=%f\n",_error[2]); + } + + /** + * @brief Set the initial velocity that is taken into account for calculating the acceleration + * @param vel_start twist message containing the translational and rotational velocity + */ + void setInitialVelocity(const geometry_msgs::msg::Twist& vel_start) + { + _measurement = &vel_start; + } + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + +/** + * @class EdgeAccelerationHolonomicGoal + * @brief Edge defining the cost function for limiting the translational and rotational acceleration at the end of the trajectory. + * + * The edge depends on three vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \Delta T_i \f$, an initial velocity defined by setGoalVelocity() + * and minimizes: \n + * \f$ \min \textrm{penaltyInterval}( [ax, ay, omegadot ]^T ) \cdot weight \f$. \n + * \e ax is calculated using the difference quotient (twice) and the x-position parts of the poses \n + * \e ay is calculated using the difference quotient (twice) and the y-position parts of the poses \n + * \e omegadot is calculated using the difference quotient of the yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation() \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval() \n + * The dimension of the error / cost vector is 3: the first component represents the translational acceleration, + * the second one is the strafing velocity and the third one the rotational acceleration. + * @see TebOptimalPlanner::AddEdgesAcceleration + * @see EdgeAccelerationHolonomic + * @see EdgeAccelerationHolonomicStart + * @remarks Do not forget to call setTebConfig() + * @remarks Refer to EdgeAccelerationHolonomicStart() for defining boundary (initial) values at the end of the trajectory + */ +class EdgeAccelerationHolonomicGoal : public BaseTebMultiEdge<3, const geometry_msgs::msg::Twist*> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeAccelerationHolonomicGoal() + { + _measurement = NULL; + this->resize(3); + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement, "You must call setTebConfig() and setGoalVelocity() on EdgeAccelerationGoal()"); + const VertexPose* pose_pre_goal = static_cast(_vertices[0]); + const VertexPose* pose_goal = static_cast(_vertices[1]); + const VertexTimeDiff* dt = static_cast(_vertices[2]); + + // VELOCITY & ACCELERATION + + Eigen::Vector2d diff = pose_goal->position() - pose_pre_goal->position(); + + double cos_theta1 = std::cos(pose_pre_goal->theta()); + double sin_theta1 = std::sin(pose_pre_goal->theta()); + + // transform pose2 into robot frame pose1 (inverse 2d rotation matrix) + double p1_dx = cos_theta1*diff.x() + sin_theta1*diff.y(); + double p1_dy = -sin_theta1*diff.x() + cos_theta1*diff.y(); + + double vel1_x = p1_dx / dt->dt(); + double vel1_y = p1_dy / dt->dt(); + double vel2_x = _measurement->linear.x; + double vel2_y = _measurement->linear.y; + + double acc_lin_x = (vel2_x - vel1_x) / dt->dt(); + double acc_lin_y = (vel2_y - vel1_y) / dt->dt(); + + _error[0] = penaltyBoundToInterval(acc_lin_x,cfg_->robot.acc_lim_x,cfg_->optim.penalty_epsilon); + _error[1] = penaltyBoundToInterval(acc_lin_y,cfg_->robot.acc_lim_y,cfg_->optim.penalty_epsilon); + + // ANGULAR ACCELERATION + double omega1 = g2o::normalize_theta(pose_goal->theta() - pose_pre_goal->theta()) / dt->dt(); + double omega2 = _measurement->angular.z; + double acc_rot = (omega2 - omega1) / dt->dt(); + + _error[2] = penaltyBoundToInterval(acc_rot,cfg_->robot.acc_lim_theta,cfg_->optim.penalty_epsilon); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeAccelerationGoal::computeError() translational: _error[0]=%f\n",_error[0]); + TEB_ASSERT_MSG(std::isfinite(_error[1]), "EdgeAccelerationGoal::computeError() strafing: _error[1]=%f\n",_error[1]); + TEB_ASSERT_MSG(std::isfinite(_error[2]), "EdgeAccelerationGoal::computeError() rotational: _error[2]=%f\n",_error[2]); + } + + + /** + * @brief Set the goal / final velocity that is taken into account for calculating the acceleration + * @param vel_goal twist message containing the translational and rotational velocity + */ + void setGoalVelocity(const geometry_msgs::msg::Twist& vel_goal) + { + _measurement = &vel_goal; + } + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + + +}; // end namespace + +#endif /* EDGE_ACCELERATION_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_dynamic_obstacle.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_dynamic_obstacle.h new file mode 100755 index 0000000..8224042 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_dynamic_obstacle.h @@ -0,0 +1,154 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann, Franz Albers + *********************************************************************/ + +#ifndef EDGE_DYNAMICOBSTACLE_H +#define EDGE_DYNAMICOBSTACLE_H + +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/vertex_timediff.h" +#include "teb_local_planner/g2o_types/penalties.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/obstacles.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/robot_footprint_model.h" +#include "teb_local_planner/misc.h" + +namespace teb_local_planner +{ + +/** + * @class EdgeDynamicObstacle + * @brief Edge defining the cost function for keeping a distance from dynamic (moving) obstacles. + * + * The edge depends on two vertices \f$ \mathbf{s}_i, \Delta T_i \f$ and minimizes: \n + * \f$ \min \textrm{penaltyBelow}( dist2obstacle) \cdot weight \f$. \n + * \e dist2obstacle denotes the minimum distance to the obstacle trajectory (spatial and temporal). \n + * \e weight can be set using setInformation(). \n + * \e penaltyBelow denotes the penalty function, see penaltyBoundFromBelow(). \n + * @see TebOptimalPlanner::AddEdgesDynamicObstacles + * @remarks Do not forget to call setTebConfig(), setVertexIdx() and + * @warning Experimental + */ +class EdgeDynamicObstacle : public BaseTebUnaryEdge<2, const Obstacle*, VertexPose> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeDynamicObstacle() : t_(0) + { + } + + /** + * @brief Construct edge and specify the time for its associated pose (neccessary for computeError). + * @param t_ Estimated time until current pose is reached + */ + EdgeDynamicObstacle(double t) : t_(t) + { + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement && robot_model_, "You must call setTebConfig(), setObstacle() and setRobotModel() on EdgeDynamicObstacle()"); + const VertexPose* bandpt = static_cast(_vertices[0]); + + double dist = robot_model_->estimateSpatioTemporalDistance(bandpt->pose(), _measurement, t_); + + _error[0] = penaltyBoundFromBelow(dist, cfg_->obstacles.min_obstacle_dist, cfg_->optim.penalty_epsilon); + _error[1] = penaltyBoundFromBelow(dist, cfg_->obstacles.dynamic_obstacle_inflation_dist, 0.0); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeDynamicObstacle::computeError() _error[0]=%f\n",_error[0]); + } + + + /** + * @brief Set Obstacle for the underlying cost function + * @param obstacle Const pointer to an Obstacle or derived Obstacle + */ + void setObstacle(const Obstacle* obstacle) + { + _measurement = obstacle; + } + + /** + * @brief Set pointer to the robot model + * @param robot_model Robot model required for distance calculation + */ + void setRobotModel(const BaseRobotFootprintModel* robot_model) + { + robot_model_ = robot_model; + } + + /** + * @brief Set all parameters at once + * @param cfg TebConfig class + * @param robot_model Robot model required for distance calculation + * @param obstacle 2D position vector containing the position of the obstacle + */ + void setParameters(const TebConfig& cfg, const BaseRobotFootprintModel* robot_model, const Obstacle* obstacle) + { + cfg_ = &cfg; + robot_model_ = robot_model; + _measurement = obstacle; + } + +protected: + + const BaseRobotFootprintModel* robot_model_; //!< Store pointer to robot_model + double t_; //!< Estimated time until current pose is reached + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + + + +} // end namespace + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_kinematics.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_kinematics.h new file mode 100755 index 0000000..012a865 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_kinematics.h @@ -0,0 +1,231 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef _EDGE_KINEMATICS_H +#define _EDGE_KINEMATICS_H + +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/penalties.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/misc.h" + +#include + +namespace teb_local_planner +{ + +/** + * @class EdgeKinematicsDiffDrive + * @brief Edge defining the cost function for satisfying the non-holonomic kinematics of a differential drive mobile robot. + * + * The edge depends on two vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1} \f$ and minimizes a geometric interpretation + * of the non-holonomic constraint: + * - C. Rösmann et al.: Trajectory modification considering dynamic constraints of autonomous robots, ROBOTIK, 2012. + * + * The \e weight can be set using setInformation(): Matrix element 1,1: (Choose a very high value: ~1000). \n + * A second equation is implemented to penalize backward motions (second element of the error /cost vector). \n + * The \e weight can be set using setInformation(): Matrix element 2,2: (A value ~1 allows backward driving, but penalizes it slighly). \n + * The dimension of the error / cost vector is 2: the first component represents the nonholonomic constraint cost, + * the second one backward-drive cost. + * @see TebOptimalPlanner::AddEdgesKinematics, EdgeKinematicsCarlike + * @remarks Do not forget to call setTebConfig() + */ +class EdgeKinematicsDiffDrive : public BaseTebBinaryEdge<2, double, VertexPose, VertexPose> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeKinematicsDiffDrive() + { + this->setMeasurement(0.); + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeKinematicsDiffDrive()"); + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + + Eigen::Vector2d deltaS = conf2->position() - conf1->position(); + + // non holonomic constraint + _error[0] = fabs( ( cos(conf1->theta())+cos(conf2->theta()) ) * deltaS[1] - ( sin(conf1->theta())+sin(conf2->theta()) ) * deltaS[0] ); + + // positive-drive-direction constraint + Eigen::Vector2d angle_vec ( cos(conf1->theta()), sin(conf1->theta()) ); + _error[1] = penaltyBoundFromBelow(deltaS.dot(angle_vec), 0,0); + // epsilon=0, otherwise it pushes the first bandpoints away from start + + TEB_ASSERT_MSG(std::isfinite(_error[0]) && std::isfinite(_error[1]), "EdgeKinematicsDiffDrive::computeError() _error[0]=%f _error[1]=%f\n",_error[0],_error[1]); + } + +#ifdef USE_ANALYTIC_JACOBI +#if 1 + /** + * @brief Jacobi matrix of the cost function specified in computeError(). + */ + void linearizeOplus() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeKinematicsDiffDrive()"); + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + + Eigen::Vector2d deltaS = conf2->position() - conf1->position(); + + double cos1 = cos(conf1->theta()); + double cos2 = cos(conf2->theta()); + double sin1 = sin(conf1->theta()); + double sin2 = sin(conf2->theta()); + double aux1 = sin1 + sin2; + double aux2 = cos1 + cos2; + + double dd_error_1 = deltaS[0]*cos1; + double dd_error_2 = deltaS[1]*sin1; + double dd_dev = penaltyBoundFromBelowDerivative(dd_error_1+dd_error_2, 0,0); + + double dev_nh_abs = g2o::sign( ( cos(conf1->theta())+cos(conf2->theta()) ) * deltaS[1] - + ( sin(conf1->theta())+sin(conf2->theta()) ) * deltaS[0] ); + + // conf1 + _jacobianOplusXi(0,0) = aux1 * dev_nh_abs; // nh x1 + _jacobianOplusXi(0,1) = -aux2 * dev_nh_abs; // nh y1 + _jacobianOplusXi(1,0) = -cos1 * dd_dev; // drive-dir x1 + _jacobianOplusXi(1,1) = -sin1 * dd_dev; // drive-dir y1 + _jacobianOplusXi(0,2) = (-dd_error_2 - dd_error_1) * dev_nh_abs; // nh angle + _jacobianOplusXi(1,2) = ( -sin1*deltaS[0] + cos1*deltaS[1] ) * dd_dev; // drive-dir angle1 + + // conf2 + _jacobianOplusXj(0,0) = -aux1 * dev_nh_abs; // nh x2 + _jacobianOplusXj(0,1) = aux2 * dev_nh_abs; // nh y2 + _jacobianOplusXj(1,0) = cos1 * dd_dev; // drive-dir x2 + _jacobianOplusXj(1,1) = sin1 * dd_dev; // drive-dir y2 + _jacobianOplusXj(0,2) = (-sin2*deltaS[1] - cos2*deltaS[0]) * dev_nh_abs; // nh angle + _jacobianOplusXj(1,2) = 0; // drive-dir angle1 + } +#endif +#endif + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + + +/** + * @class EdgeKinematicsCarlike + * @brief Edge defining the cost function for satisfying the non-holonomic kinematics of a carlike mobile robot. + * + * The edge depends on two vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1} \f$ and minimizes a geometric interpretation + * of the non-holonomic constraint: + * - C. Rösmann et al.: Trajectory modification considering dynamic constraints of autonomous robots, ROBOTIK, 2012. + * + * The definition is identically to the one of the differential drive robot. + * Additionally, this edge incorporates a minimum turning radius that is required by carlike robots. + * The turning radius is defined by \f$ r=v/omega \f$. + * + * The \e weight can be set using setInformation(): Matrix element 1,1: (Choose a very high value: ~1000). \n + * The second equation enforces a minimum turning radius. + * The \e weight can be set using setInformation(): Matrix element 2,2. \n + * The dimension of the error / cost vector is 3: the first component represents the nonholonomic constraint cost, + * the second one backward-drive cost and the third one the minimum turning radius + * @see TebOptimalPlanner::AddEdgesKinematics, EdgeKinematicsDiffDrive + * @remarks Bounding the turning radius from below is not affected by the penalty_epsilon parameter, + * the user might add an extra margin to the min_turning_radius param. + * @remarks Do not forget to call setTebConfig() + */ +class EdgeKinematicsCarlike : public BaseTebBinaryEdge<2, double, VertexPose, VertexPose> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeKinematicsCarlike() + { + this->setMeasurement(0.); + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeKinematicsCarlike()"); + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + + Eigen::Vector2d deltaS = conf2->position() - conf1->position(); + + // non holonomic constraint + _error[0] = fabs( ( cos(conf1->theta())+cos(conf2->theta()) ) * deltaS[1] - ( sin(conf1->theta())+sin(conf2->theta()) ) * deltaS[0] ); + + // limit minimum turning radius + double angle_diff = g2o::normalize_theta( conf2->theta() - conf1->theta() ); + if (angle_diff == 0) + _error[1] = 0; // straight line motion + else if (cfg_->trajectory.exact_arc_length) // use exact computation of the radius + _error[1] = penaltyBoundFromBelow(fabs(deltaS.norm()/(2*sin(angle_diff/2))), cfg_->robot.min_turning_radius, 0.0); + else + _error[1] = penaltyBoundFromBelow(deltaS.norm() / fabs(angle_diff), cfg_->robot.min_turning_radius, 0.0); + // This edge is not affected by the epsilon parameter, the user might add an exra margin to the min_turning_radius parameter. + + TEB_ASSERT_MSG(std::isfinite(_error[0]) && std::isfinite(_error[1]), "EdgeKinematicsCarlike::computeError() _error[0]=%f _error[1]=%f\n",_error[0],_error[1]); + } + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + + +} // end namespace + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_obstacle.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_obstacle.h new file mode 100755 index 0000000..23c8bc4 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_obstacle.h @@ -0,0 +1,295 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ +#ifndef EDGE_OBSTACLE_H_ +#define EDGE_OBSTACLE_H_ + +#include "teb_local_planner/obstacles.h" +#include "teb_local_planner/robot_footprint_model.h" +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/g2o_types/penalties.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/misc.h" + + +namespace teb_local_planner +{ + +/** + * @class EdgeObstacle + * @brief Edge defining the cost function for keeping a minimum distance from obstacles. + * + * The edge depends on a single vertex \f$ \mathbf{s}_i \f$ and minimizes: \n + * \f$ \min \textrm{penaltyBelow}( dist2point ) \cdot weight \f$. \n + * \e dist2point denotes the minimum distance to the point obstacle. \n + * \e weight can be set using setInformation(). \n + * \e penaltyBelow denotes the penalty function, see penaltyBoundFromBelow() \n + * @see TebOptimalPlanner::AddEdgesObstacles, TebOptimalPlanner::EdgeInflatedObstacle + * @remarks Do not forget to call setTebConfig() and setObstacle() + */ +class EdgeObstacle : public BaseTebUnaryEdge<1, const Obstacle*, VertexPose> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeObstacle() + { + _measurement = NULL; + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement && robot_model_, "You must call setTebConfig(), setObstacle() and setRobotModel() on EdgeObstacle()"); + const VertexPose* bandpt = static_cast(_vertices[0]); + + double dist = robot_model_->calculateDistance(bandpt->pose(), _measurement); + + // Original obstacle cost. + _error[0] = penaltyBoundFromBelow(dist, cfg_->obstacles.min_obstacle_dist, cfg_->optim.penalty_epsilon); + + if (cfg_->optim.obstacle_cost_exponent != 1.0 && cfg_->obstacles.min_obstacle_dist > 0.0) + { + // Optional non-linear cost. Note the max cost (before weighting) is + // the same as the straight line version and that all other costs are + // below the straight line (for positive exponent), so it may be + // necessary to increase weight_obstacle and/or the inflation_weight + // when using larger exponents. + _error[0] = cfg_->obstacles.min_obstacle_dist * std::pow(_error[0] / cfg_->obstacles.min_obstacle_dist, cfg_->optim.obstacle_cost_exponent); + } + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeObstacle::computeError() _error[0]=%f\n",_error[0]); + } + +#ifdef USE_ANALYTIC_JACOBI +#if 0 + + /** + * @brief Jacobi matrix of the cost function specified in computeError(). + */ + void linearizeOplus() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgePointObstacle()"); + const VertexPose* bandpt = static_cast(_vertices[0]); + + Eigen::Vector2d deltaS = *_measurement - bandpt->position(); + double angdiff = atan2(deltaS[1],deltaS[0])-bandpt->theta(); + + double dist_squared = deltaS.squaredNorm(); + double dist = sqrt(dist_squared); + + double aux0 = sin(angdiff); + double dev_left_border = penaltyBoundFromBelowDerivative(dist*fabs(aux0),cfg_->obstacles.min_obstacle_dist,cfg_->optim.penalty_epsilon); + + if (dev_left_border==0) + { + _jacobianOplusXi( 0 , 0 ) = 0; + _jacobianOplusXi( 0 , 1 ) = 0; + _jacobianOplusXi( 0 , 2 ) = 0; + return; + } + + double aux1 = -fabs(aux0) / dist; + double dev_norm_x = deltaS[0]*aux1; + double dev_norm_y = deltaS[1]*aux1; + + double aux2 = cos(angdiff) * g2o::sign(aux0); + double aux3 = aux2 / dist_squared; + double dev_proj_x = aux3 * deltaS[1] * dist; + double dev_proj_y = -aux3 * deltaS[0] * dist; + double dev_proj_angle = -aux2; + + _jacobianOplusXi( 0 , 0 ) = dev_left_border * ( dev_norm_x + dev_proj_x ); + _jacobianOplusXi( 0 , 1 ) = dev_left_border * ( dev_norm_y + dev_proj_y ); + _jacobianOplusXi( 0 , 2 ) = dev_left_border * dev_proj_angle; + } +#endif +#endif + + /** + * @brief Set pointer to associated obstacle for the underlying cost function + * @param obstacle 2D position vector containing the position of the obstacle + */ + void setObstacle(const Obstacle* obstacle) + { + _measurement = obstacle; + } + + /** + * @brief Set pointer to the robot model + * @param robot_model Robot model required for distance calculation + */ + void setRobotModel(const BaseRobotFootprintModel* robot_model) + { + robot_model_ = robot_model; + } + + /** + * @brief Set all parameters at once + * @param cfg TebConfig class + * @param robot_model Robot model required for distance calculation + * @param obstacle 2D position vector containing the position of the obstacle + */ + void setParameters(const TebConfig& cfg, const BaseRobotFootprintModel* robot_model, const Obstacle* obstacle) + { + cfg_ = &cfg; + robot_model_ = robot_model; + _measurement = obstacle; + } + +protected: + + const BaseRobotFootprintModel* robot_model_; //!< Store pointer to robot_model + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + + +/** + * @class EdgeInflatedObstacle + * @brief Edge defining the cost function for keeping a minimum distance from inflated obstacles. + * + * The edge depends on a single vertex \f$ \mathbf{s}_i \f$ and minimizes: \n + * \f$ \min \textrm{penaltyBelow}( dist2point, min_obstacle_dist ) \cdot weight_inflation \f$. \n + * Additional, a second penalty is provided with \n + * \f$ \min \textrm{penaltyBelow}( dist2point, inflation_dist ) \cdot weight_inflation \f$. + * It is assumed that inflation_dist > min_obstacle_dist and weight_inflation << weight_inflation. + * \e dist2point denotes the minimum distance to the point obstacle. \n + * \e penaltyBelow denotes the penalty function, see penaltyBoundFromBelow() \n + * @see TebOptimalPlanner::AddEdgesObstacles, TebOptimalPlanner::EdgeObstacle + * @remarks Do not forget to call setTebConfig() and setObstacle() + */ +class EdgeInflatedObstacle : public BaseTebUnaryEdge<2, const Obstacle*, VertexPose> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeInflatedObstacle() + { + _measurement = NULL; + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement && robot_model_, "You must call setTebConfig(), setObstacle() and setRobotModel() on EdgeInflatedObstacle()"); + const VertexPose* bandpt = static_cast(_vertices[0]); + + double dist = robot_model_->calculateDistance(bandpt->pose(), _measurement); + + // Original "straight line" obstacle cost. The max possible value + // before weighting is min_obstacle_dist + _error[0] = penaltyBoundFromBelow(dist, cfg_->obstacles.min_obstacle_dist, cfg_->optim.penalty_epsilon); + + if (cfg_->optim.obstacle_cost_exponent != 1.0 && cfg_->obstacles.min_obstacle_dist > 0.0) + { + // Optional non-linear cost. Note the max cost (before weighting) is + // the same as the straight line version and that all other costs are + // below the straight line (for positive exponent), so it may be + // necessary to increase weight_obstacle and/or the inflation_weight + // when using larger exponents. + _error[0] = cfg_->obstacles.min_obstacle_dist * std::pow(_error[0] / cfg_->obstacles.min_obstacle_dist, cfg_->optim.obstacle_cost_exponent); + } + + // Additional linear inflation cost + _error[1] = penaltyBoundFromBelow(dist, cfg_->obstacles.inflation_dist, 0.0); + + + TEB_ASSERT_MSG(std::isfinite(_error[0]) && std::isfinite(_error[1]), "EdgeInflatedObstacle::computeError() _error[0]=%f, _error[1]=%f\n",_error[0], _error[1]); + } + + /** + * @brief Set pointer to associated obstacle for the underlying cost function + * @param obstacle 2D position vector containing the position of the obstacle + */ + void setObstacle(const Obstacle* obstacle) + { + _measurement = obstacle; + } + + /** + * @brief Set pointer to the robot model + * @param robot_model Robot model required for distance calculation + */ + void setRobotModel(const BaseRobotFootprintModel* robot_model) + { + robot_model_ = robot_model; + } + + /** + * @brief Set all parameters at once + * @param cfg TebConfig class + * @param robot_model Robot model required for distance calculation + * @param obstacle 2D position vector containing the position of the obstacle + */ + void setParameters(const TebConfig& cfg, const BaseRobotFootprintModel* robot_model, const Obstacle* obstacle) + { + cfg_ = &cfg; + robot_model_ = robot_model; + _measurement = obstacle; + } + +protected: + + const BaseRobotFootprintModel* robot_model_; //!< Store pointer to robot_model + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + +} // end namespace + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_prefer_rotdir.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_prefer_rotdir.h new file mode 100755 index 0000000..6e5ec9e --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_prefer_rotdir.h @@ -0,0 +1,115 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ +#ifndef EDGE_PREFER_ROTDIR_H_ +#define EDGE_PREFER_ROTDIR_H_ + +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/g2o_types/penalties.h" +#include "g2o/core/base_unary_edge.h" +#include "teb_local_planner/misc.h" + +namespace teb_local_planner +{ + +/** + * @class EdgePreferRotDir + * @brief Edge defining the cost function for penalzing a specified turning direction, in particular left resp. right turns + * + * The edge depends on two consecutive vertices \f$ \mathbf{s}_i, \mathbf{s}_{i+1} \f$ and penalizes a given rotation direction + * based on the \e weight and \e dir (\f$ dir \in \{-1,1\} \f$) + * \e dir should be +1 to prefer left rotations and -1 to prefer right rotations \n + * \e weight can be set using setInformation(). \n + * @see TebOptimalPlanner::AddEdgePreferRotDir + */ +class EdgePreferRotDir : public BaseTebBinaryEdge<1, double, VertexPose, VertexPose> +{ +public: + + /** + * @brief Construct edge. + */ + EdgePreferRotDir() + { + _measurement = 1; + } + + /** + * @brief Actual cost function + */ + void computeError() + { + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + + _error[0] = penaltyBoundFromBelow( _measurement*g2o::normalize_theta(conf2->theta()-conf1->theta()) , 0, 0); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgePreferRotDir::computeError() _error[0]=%f\n",_error[0]); + } + + /** + * @brief Specify the prefered direction of rotation + * @param dir +1 to prefer the left side, -1 to prefer the right side + */ + void setRotDir(double dir) + { + _measurement = dir; + } + + /** Prefer rotations to the right */ + void preferRight() {_measurement = -1;} + + /** Prefer rotations to the right */ + void preferLeft() {_measurement = 1;} + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + + +} // end namespace + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_shortest_path.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_shortest_path.h new file mode 100644 index 0000000..8d5bb87 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_shortest_path.h @@ -0,0 +1,88 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef EDGE_SHORTEST_PATH_H_ +#define EDGE_SHORTEST_PATH_H_ + +#include + +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/misc.h" + +#include + +namespace teb_local_planner { + +/** + * @class EdgeShortestPath + * @brief Edge defining the cost function for minimizing the Euclidean distance between two consectuive poses. + * + * @see TebOptimalPlanner::AddEdgesShortestPath + */ +class EdgeShortestPath : public BaseTebBinaryEdge<1, double, VertexPose, VertexPose> { +public: + /** + * @brief Construct edge. + */ + EdgeShortestPath() { this->setMeasurement(0.); } + + /** + * @brief Actual cost function + */ + void computeError() { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeShortestPath()"); + const VertexPose *pose1 = static_cast(_vertices[0]); + const VertexPose *pose2 = static_cast(_vertices[1]); + _error[0] = (pose2->position() - pose1->position()).norm(); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeShortestPath::computeError() _error[0]=%f\n", _error[0]); + } + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +} // end namespace + +#endif /* EDGE_SHORTEST_PATH_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_time_optimal.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_time_optimal.h new file mode 100644 index 0000000..0f7671b --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_time_optimal.h @@ -0,0 +1,117 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef EDGE_TIMEOPTIMAL_H_ +#define EDGE_TIMEOPTIMAL_H_ + +#include + +//#include + +#include "teb_local_planner/g2o_types/vertex_timediff.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/g2o_types/penalties.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/misc.h" + +#include + +namespace teb_local_planner +{ + + +/** + * @class EdgeTimeOptimal + * @brief Edge defining the cost function for minimizing transition time of the trajectory. + * + * The edge depends on a single vertex \f$ \Delta T_i \f$ and minimizes: \n + * \f$ \min \Delta T_i^2 \cdot scale \cdot weight \f$. \n + * \e scale is determined using the penaltyEquality() function, since we experiences good convergence speeds with it. \n + * \e weight can be set using setInformation() (something around 1.0 seems to be fine). \n + * @see TebOptimalPlanner::AddEdgesTimeOptimal + * @remarks Do not forget to call setTebConfig() + */ +class EdgeTimeOptimal : public BaseTebUnaryEdge<1, double, VertexTimeDiff> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeTimeOptimal() + { + this->setMeasurement(0.); + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeTimeOptimal()"); + const VertexTimeDiff* timediff = static_cast(_vertices[0]); + + _error[0] = timediff->dt(); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeTimeOptimal::computeError() _error[0]=%f\n",_error[0]); + } + +#ifdef USE_ANALYTIC_JACOBI + /** + * @brief Jacobi matrix of the cost function specified in computeError(). + */ + void linearizeOplus() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeTimeOptimal()"); + _jacobianOplusXi( 0 , 0 ) = 1; + } +#endif + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +}; // end namespace + +#endif /* EDGE_TIMEOPTIMAL_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_velocity.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_velocity.h new file mode 100755 index 0000000..29956c0 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_velocity.h @@ -0,0 +1,275 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef EDGE_VELOCITY_H +#define EDGE_VELOCITY_H + +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/vertex_timediff.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/g2o_types/penalties.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/misc.h" + +#include + +#include + +namespace teb_local_planner +{ + + +/** + * @class EdgeVelocity + * @brief Edge defining the cost function for limiting the translational and rotational velocity. + * + * The edge depends on three vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \Delta T_i \f$ and minimizes: \n + * \f$ \min \textrm{penaltyInterval}( [v,omega]^T ) \cdot weight \f$. \n + * \e v is calculated using the difference quotient and the position parts of both poses. \n + * \e omega is calculated using the difference quotient of both yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation(). \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval(). \n + * The dimension of the error / cost vector is 2: the first component represents the translational velocity and + * the second one the rotational velocity. + * @see TebOptimalPlanner::AddEdgesVelocity + * @remarks Do not forget to call setTebConfig() + */ +class EdgeVelocity : public BaseTebMultiEdge<2, double> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeVelocity() + { + this->resize(3); // Since we derive from a g2o::BaseMultiEdge, set the desired number of vertices + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeVelocity()"); + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + const VertexTimeDiff* deltaT = static_cast(_vertices[2]); + + const Eigen::Vector2d deltaS = conf2->estimate().position() - conf1->estimate().position(); + + double dist = deltaS.norm(); + const double angle_diff = g2o::normalize_theta(conf2->theta() - conf1->theta()); + if (cfg_->trajectory.exact_arc_length && angle_diff != 0) + { + double radius = dist/(2*sin(angle_diff/2)); + dist = fabs( angle_diff * radius ); // actual arg length! + } + double vel = dist / deltaT->estimate(); + +// vel *= g2o::sign(deltaS[0]*cos(conf1->theta()) + deltaS[1]*sin(conf1->theta())); // consider direction + vel *= fast_sigmoid( 100 * (deltaS.x()*cos(conf1->theta()) + deltaS.y()*sin(conf1->theta())) ); // consider direction + + const double omega = angle_diff / deltaT->estimate(); + + _error[0] = penaltyBoundToInterval(vel, -cfg_->robot.max_vel_x_backwards, cfg_->robot.max_vel_x,cfg_->optim.penalty_epsilon); + _error[1] = penaltyBoundToInterval(omega, cfg_->robot.max_vel_theta,cfg_->optim.penalty_epsilon); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeVelocity::computeError() _error[0]=%f _error[1]=%f\n",_error[0],_error[1]); + } + +#ifdef USE_ANALYTIC_JACOBI +#if 0 //TODO the hardcoded jacobian does not include the changing direction (just the absolute value) + // Change accordingly... + + /** + * @brief Jacobi matrix of the cost function specified in computeError(). + */ + void linearizeOplus() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeVelocity()"); + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + const VertexTimeDiff* deltaT = static_cast(_vertices[2]); + + Eigen::Vector2d deltaS = conf2->position() - conf1->position(); + double dist = deltaS.norm(); + double aux1 = dist*deltaT->estimate(); + double aux2 = 1/deltaT->estimate(); + + double vel = dist * aux2; + double omega = g2o::normalize_theta(conf2->theta() - conf1->theta()) * aux2; + + double dev_border_vel = penaltyBoundToIntervalDerivative(vel, -cfg_->robot.max_vel_x_backwards, cfg_->robot.max_vel_x,cfg_->optim.penalty_epsilon); + double dev_border_omega = penaltyBoundToIntervalDerivative(omega, cfg_->robot.max_vel_theta,cfg_->optim.penalty_epsilon); + + _jacobianOplus[0].resize(2,3); // conf1 + _jacobianOplus[1].resize(2,3); // conf2 + _jacobianOplus[2].resize(2,1); // deltaT + +// if (aux1==0) aux1=1e-6; +// if (aux2==0) aux2=1e-6; + + if (dev_border_vel!=0) + { + double aux3 = dev_border_vel / aux1; + _jacobianOplus[0](0,0) = -deltaS[0] * aux3; // vel x1 + _jacobianOplus[0](0,1) = -deltaS[1] * aux3; // vel y1 + _jacobianOplus[1](0,0) = deltaS[0] * aux3; // vel x2 + _jacobianOplus[1](0,1) = deltaS[1] * aux3; // vel y2 + _jacobianOplus[2](0,0) = -vel * aux2 * dev_border_vel; // vel deltaT + } + else + { + _jacobianOplus[0](0,0) = 0; // vel x1 + _jacobianOplus[0](0,1) = 0; // vel y1 + _jacobianOplus[1](0,0) = 0; // vel x2 + _jacobianOplus[1](0,1) = 0; // vel y2 + _jacobianOplus[2](0,0) = 0; // vel deltaT + } + + if (dev_border_omega!=0) + { + double aux4 = aux2 * dev_border_omega; + _jacobianOplus[2](1,0) = -omega * aux4; // omega deltaT + _jacobianOplus[0](1,2) = -aux4; // omega angle1 + _jacobianOplus[1](1,2) = aux4; // omega angle2 + } + else + { + _jacobianOplus[2](1,0) = 0; // omega deltaT + _jacobianOplus[0](1,2) = 0; // omega angle1 + _jacobianOplus[1](1,2) = 0; // omega angle2 + } + + _jacobianOplus[0](1,0) = 0; // omega x1 + _jacobianOplus[0](1,1) = 0; // omega y1 + _jacobianOplus[1](1,0) = 0; // omega x2 + _jacobianOplus[1](1,1) = 0; // omega y2 + _jacobianOplus[0](0,2) = 0; // vel angle1 + _jacobianOplus[1](0,2) = 0; // vel angle2 + } +#endif +#endif + + +public: + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + + + + + +/** + * @class EdgeVelocityHolonomic + * @brief Edge defining the cost function for limiting the translational and rotational velocity according to x,y and theta. + * + * The edge depends on three vertices \f$ \mathbf{s}_i, \mathbf{s}_{ip1}, \Delta T_i \f$ and minimizes: \n + * \f$ \min \textrm{penaltyInterval}( [vx,vy,omega]^T ) \cdot weight \f$. \n + * \e vx denotes the translational velocity w.r.t. x-axis (computed using finite differneces). \n + * \e vy denotes the translational velocity w.r.t. y-axis (computed using finite differneces). \n + * \e omega is calculated using the difference quotient of both yaw angles followed by a normalization to [-pi, pi]. \n + * \e weight can be set using setInformation(). \n + * \e penaltyInterval denotes the penalty function, see penaltyBoundToInterval(). \n + * The dimension of the error / cost vector is 3: the first component represents the translational velocity w.r.t. x-axis, + * the second one w.r.t. the y-axis and the third one the rotational velocity. + * @see TebOptimalPlanner::AddEdgesVelocity + * @remarks Do not forget to call setTebConfig() + */ +class EdgeVelocityHolonomic : public BaseTebMultiEdge<3, double> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeVelocityHolonomic() + { + this->resize(3); // Since we derive from a g2o::BaseMultiEdge, set the desired number of vertices + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_, "You must call setTebConfig on EdgeVelocityHolonomic()"); + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + const VertexTimeDiff* deltaT = static_cast(_vertices[2]); + Eigen::Vector2d deltaS = conf2->position() - conf1->position(); + + double cos_theta1 = std::cos(conf1->theta()); + double sin_theta1 = std::sin(conf1->theta()); + + // transform conf2 into current robot frame conf1 (inverse 2d rotation matrix) + double r_dx = cos_theta1*deltaS.x() + sin_theta1*deltaS.y(); + double r_dy = -sin_theta1*deltaS.x() + cos_theta1*deltaS.y(); + + double vx = r_dx / deltaT->estimate(); + double vy = r_dy / deltaT->estimate(); + double omega = g2o::normalize_theta(conf2->theta() - conf1->theta()) / deltaT->estimate(); + + _error[0] = penaltyBoundToInterval(vx, -cfg_->robot.max_vel_x_backwards, cfg_->robot.max_vel_x, cfg_->optim.penalty_epsilon); + _error[1] = penaltyBoundToInterval(vy, cfg_->robot.max_vel_y, 0.0); // we do not apply the penalty epsilon here, since the velocity could be close to zero + _error[2] = penaltyBoundToInterval(omega, cfg_->robot.max_vel_theta,cfg_->optim.penalty_epsilon); + + TEB_ASSERT_MSG(std::isfinite(_error[0]) && std::isfinite(_error[1]) && std::isfinite(_error[2]), + "EdgeVelocityHolonomic::computeError() _error[0]=%f _error[1]=%f _error[2]=%f\n",_error[0],_error[1],_error[2]); + } + + +public: + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + +} // end namespace + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_velocity_obstacle_ratio.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_velocity_obstacle_ratio.h new file mode 100644 index 0000000..1dff242 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_velocity_obstacle_ratio.h @@ -0,0 +1,127 @@ +#pragma once + + +#include +#include +#include +#include +#include + +namespace teb_local_planner +{ + + +/** + * @class EdgeVelocityObstacleRatio + * @brief Edge defining the cost function for keeping a minimum distance from obstacles. + * + * The edge depends on a single vertex \f$ \mathbf{s}_i \f$ and minimizes: \n + * \f$ \min \textrm{penaltyBelow}( dist2point ) \cdot weight \f$. \n + * \e dist2point denotes the minimum distance to the point obstacle. \n + * \e weight can be set using setInformation(). \n + * \e penaltyBelow denotes the penalty function, see penaltyBoundFromBelow() \n + * @see TebOptimalPlanner::AddEdgesObstacles, TebOptimalPlanner::EdgeInflatedObstacle + * @remarks Do not forget to call setTebConfig() and setObstacle() + */ +class EdgeVelocityObstacleRatio : public BaseTebMultiEdge<2, const Obstacle*> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeVelocityObstacleRatio() : + robot_model_(nullptr) + { + // The three vertices are two poses and one time difference + this->resize(3); // Since we derive from a g2o::BaseMultiEdge, set the desired number of vertices + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement && robot_model_, "You must call setTebConfig(), setObstacle() and setRobotModel() on EdgeVelocityObstacleRatio()"); + const VertexPose* conf1 = static_cast(_vertices[0]); + const VertexPose* conf2 = static_cast(_vertices[1]); + const VertexTimeDiff* deltaT = static_cast(_vertices[2]); + + const Eigen::Vector2d deltaS = conf2->estimate().position() - conf1->estimate().position(); + + double dist = deltaS.norm(); + const double angle_diff = g2o::normalize_theta(conf2->theta() - conf1->theta()); + if (cfg_->trajectory.exact_arc_length && angle_diff != 0) + { + double radius = dist/(2*sin(angle_diff/2)); + dist = fabs( angle_diff * radius ); // actual arg length! + } + double vel = dist / deltaT->estimate(); + + vel *= fast_sigmoid( 100 * (deltaS.x()*cos(conf1->theta()) + deltaS.y()*sin(conf1->theta())) ); // consider direction + + const double omega = angle_diff / deltaT->estimate(); + + double dist_to_obstacle = robot_model_->calculateDistance(conf1->pose(), _measurement); + + double ratio; + if (dist_to_obstacle < cfg_->obstacles.obstacle_proximity_lower_bound) + ratio = 0; + else if (dist_to_obstacle > cfg_->obstacles.obstacle_proximity_upper_bound) + ratio = 1; + else + ratio = (dist_to_obstacle - cfg_->obstacles.obstacle_proximity_lower_bound) / + (cfg_->obstacles.obstacle_proximity_upper_bound - cfg_->obstacles.obstacle_proximity_lower_bound); + ratio *= cfg_->obstacles.obstacle_proximity_ratio_max_vel; + + const double max_vel_fwd = ratio * cfg_->robot.max_vel_x; + const double max_omega = ratio * cfg_->robot.max_vel_theta; + _error[0] = penaltyBoundToInterval(vel, max_vel_fwd, 0); + _error[1] = penaltyBoundToInterval(omega, max_omega, 0); + + TEB_ASSERT_MSG(std::isfinite(_error[0]) || std::isfinite(_error[1]), "EdgeVelocityObstacleRatio::computeError() _error[0]=%f , _error[1]=%f\n",_error[0],_error[1]); + } + + /** + * @brief Set pointer to associated obstacle for the underlying cost function + * @param obstacle 2D position vector containing the position of the obstacle + */ + void setObstacle(const Obstacle* obstacle) + { + _measurement = obstacle; + } + + /** + * @brief Set pointer to the robot model + * @param robot_model Robot model required for distance calculation + */ + void setRobotModel(const BaseRobotFootprintModel* robot_model) + { + robot_model_ = robot_model; + } + + /** + * @brief Set all parameters at once + * @param cfg TebConfig class + * @param robot_model Robot model required for distance calculation + * @param obstacle 2D position vector containing the position of the obstacle + */ + void setParameters(const TebConfig& cfg, const BaseRobotFootprintModel* robot_model, const Obstacle* obstacle) + { + cfg_ = &cfg; + robot_model_ = robot_model; + _measurement = obstacle; + } + +protected: + + const BaseRobotFootprintModel* robot_model_; //!< Store pointer to robot_model + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + +} // end namespace + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_via_point.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_via_point.h new file mode 100755 index 0000000..5575d0f --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/edge_via_point.h @@ -0,0 +1,121 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ +#ifndef EDGE_VIA_POINT_H_ +#define EDGE_VIA_POINT_H_ + +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/base_teb_edges.h" +#include "teb_local_planner/misc.h" + +#include "g2o/core/base_unary_edge.h" + + +namespace teb_local_planner +{ + +/** + * @class EdgeViaPoint + * @brief Edge defining the cost function for pushing a configuration towards a via point + * + * The edge depends on a single vertex \f$ \mathbf{s}_i \f$ and minimizes: \n + * \f$ \min dist2point \cdot weight \f$. \n + * \e dist2point denotes the distance to the via point. \n + * \e weight can be set using setInformation(). \n + * @see TebOptimalPlanner::AddEdgesViaPoints + * @remarks Do not forget to call setTebConfig() and setViaPoint() + */ +class EdgeViaPoint : public BaseTebUnaryEdge<1, const Eigen::Vector2d*, VertexPose> +{ +public: + + /** + * @brief Construct edge. + */ + EdgeViaPoint() + { + _measurement = NULL; + } + + /** + * @brief Actual cost function + */ + void computeError() + { + TEB_ASSERT_MSG(cfg_ && _measurement, "You must call setTebConfig(), setViaPoint() on EdgeViaPoint()"); + const VertexPose* bandpt = static_cast(_vertices[0]); + + _error[0] = (bandpt->position() - *_measurement).norm(); + + TEB_ASSERT_MSG(std::isfinite(_error[0]), "EdgeViaPoint::computeError() _error[0]=%f\n",_error[0]); + } + + /** + * @brief Set pointer to associated via point for the underlying cost function + * @param via_point 2D position vector containing the position of the via point + */ + void setViaPoint(const Eigen::Vector2d* via_point) + { + _measurement = via_point; + } + + /** + * @brief Set all parameters at once + * @param cfg TebConfig class + * @param via_point 2D position vector containing the position of the via point + */ + void setParameters(const TebConfig& cfg, const Eigen::Vector2d* via_point) + { + cfg_ = &cfg; + _measurement = via_point; + } + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + + +} // end namespace + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/penalties.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/penalties.h new file mode 100755 index 0000000..6870558 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/penalties.h @@ -0,0 +1,193 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef PENALTIES_H +#define PENALTIES_H + +#include +#include +#include + +namespace teb_local_planner +{ + +/** + * @brief Linear penalty function for bounding \c var to the interval \f$ -a < var < a \f$ + * @param var The scalar that should be bounded + * @param a lower and upper absolute bound + * @param epsilon safty margin (move bound to the interior of the interval) + * @see penaltyBoundToIntervalDerivative + * @return Penalty / cost value that is nonzero if the constraint is not satisfied + */ +inline double penaltyBoundToInterval(const double& var,const double& a,const double& epsilon) +{ + if (var < -a+epsilon) + { + return (-var - (a - epsilon)); + } + if (var <= a-epsilon) + { + return 0.; + } + else + { + return (var - (a - epsilon)); + } +} + +/** + * @brief Linear penalty function for bounding \c var to the interval \f$ a < var < b \f$ + * @param var The scalar that should be bounded + * @param a lower bound + * @param b upper bound + * @param epsilon safty margin (move bound to the interior of the interval) + * @see penaltyBoundToIntervalDerivative + * @return Penalty / cost value that is nonzero if the constraint is not satisfied + */ +inline double penaltyBoundToInterval(const double& var,const double& a, const double& b, const double& epsilon) +{ + if (var < a+epsilon) + { + return (-var + (a + epsilon)); + } + if (var <= b-epsilon) + { + return 0.; + } + else + { + return (var - (b - epsilon)); + } +} + + +/** + * @brief Linear penalty function for bounding \c var from below: \f$ a < var \f$ + * @param var The scalar that should be bounded + * @param a lower bound + * @param epsilon safty margin (move bound to the interior of the interval) + * @see penaltyBoundFromBelowDerivative + * @return Penalty / cost value that is nonzero if the constraint is not satisfied + */ +inline double penaltyBoundFromBelow(const double& var, const double& a,const double& epsilon) +{ + if (var >= a+epsilon) + { + return 0.; + } + else + { + return (-var + (a+epsilon)); + } +} + +/** + * @brief Derivative of the linear penalty function for bounding \c var to the interval \f$ -a < var < a \f$ + * @param var The scalar that should be bounded + * @param a lower and upper absolute bound + * @param epsilon safty margin (move bound to the interior of the interval) + * @see penaltyBoundToInterval + * @return Derivative of the penalty function w.r.t. \c var + */ +inline double penaltyBoundToIntervalDerivative(const double& var,const double& a, const double& epsilon) +{ + if (var < -a+epsilon) + { + return -1; + } + if (var <= a-epsilon) + { + return 0.; + } + else + { + return 1; + } +} + +/** + * @brief Derivative of the linear penalty function for bounding \c var to the interval \f$ a < var < b \f$ + * @param var The scalar that should be bounded + * @param a lower bound + * @param b upper bound + * @param epsilon safty margin (move bound to the interior of the interval) + * @see penaltyBoundToInterval + * @return Derivative of the penalty function w.r.t. \c var + */ +inline double penaltyBoundToIntervalDerivative(const double& var,const double& a, const double& b, const double& epsilon) +{ + if (var < a+epsilon) + { + return -1; + } + if (var <= b-epsilon) + { + return 0.; + } + else + { + return 1; + } +} + + +/** + * @brief Derivative of the linear penalty function for bounding \c var from below: \f$ a < var \f$ + * @param var The scalar that should be bounded + * @param a lower bound + * @param epsilon safty margin (move bound to the interior of the interval) + * @see penaltyBoundFromBelow + * @return Derivative of the penalty function w.r.t. \c var + */ +inline double penaltyBoundFromBelowDerivative(const double& var, const double& a,const double& epsilon) +{ + if (var >= a+epsilon) + { + return 0.; + } + else + { + return -1; + } +} + + +} // namespace teb_local_planner + + +#endif // PENALTIES_H diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/vertex_pose.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/vertex_pose.h new file mode 100755 index 0000000..781a272 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/vertex_pose.h @@ -0,0 +1,229 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef VERTEX_POSE_H_ +#define VERTEX_POSE_H_ + +#include +#include +#include +#include + +#include "teb_local_planner/pose_se2.h" + +namespace teb_local_planner +{ + +/** + * @class VertexPose + * @brief This class stores and wraps a SE2 pose (position and orientation) into a vertex that can be optimized via g2o + * @see PoseSE2 + * @see VertexTimeDiff + */ +class VertexPose : public g2o::BaseVertex<3, PoseSE2 > +{ +public: + + /** + * @brief Default constructor + * @param fixed if \c true, this vertex is considered fixed during optimization [default: \c false] + */ + VertexPose(bool fixed = false) + { + setToOriginImpl(); + setFixed(fixed); + } + + /** + * @brief Construct pose using a given PoseSE2 + * @param pose PoseSE2 defining the pose [x, y, angle_rad] + * @param fixed if \c true, this vertex is considered fixed during optimization [default: \c false] + */ + VertexPose(const PoseSE2& pose, bool fixed = false) + { + _estimate = pose; + setFixed(fixed); + } + + /** + * @brief Construct pose using a given 2D position vector and orientation + * @param position Eigen::Vector2d containing x and y coordinates + * @param theta yaw-angle + * @param fixed if \c true, this vertex is considered fixed during optimization [default: \c false] + */ + VertexPose(const Eigen::Ref& position, double theta, bool fixed = false) + { + _estimate.position() = position; + _estimate.theta() = theta; + setFixed(fixed); + } + + /** + * @brief Construct pose using single components x, y, and the yaw angle + * @param x x-coordinate + * @param y y-coordinate + * @param theta yaw angle in rad + * @param fixed if \c true, this vertex is considered fixed during optimization [default: \c false] + */ + VertexPose(double x, double y, double theta, bool fixed = false) + { + _estimate.x() = x; + _estimate.y() = y; + _estimate.theta() = theta; + setFixed(fixed); + } + + /** + * @brief Access the pose + * @see estimate + * @return reference to the PoseSE2 estimate + */ + inline PoseSE2& pose() {return _estimate;} + + /** + * @brief Access the pose (read-only) + * @see estimate + * @return const reference to the PoseSE2 estimate + */ + inline const PoseSE2& pose() const {return _estimate;} + + + /** + * @brief Access the 2D position part + * @see estimate + * @return reference to the 2D position part + */ + inline Eigen::Vector2d& position() {return _estimate.position();} + + /** + * @brief Access the 2D position part (read-only) + * @see estimate + * @return const reference to the 2D position part + */ + inline const Eigen::Vector2d& position() const {return _estimate.position();} + + /** + * @brief Access the x-coordinate the pose + * @return reference to the x-coordinate + */ + inline double& x() {return _estimate.x();} + + /** + * @brief Access the x-coordinate the pose (read-only) + * @return const reference to the x-coordinate + */ + inline const double& x() const {return _estimate.x();} + + /** + * @brief Access the y-coordinate the pose + * @return reference to the y-coordinate + */ + inline double& y() {return _estimate.y();} + + /** + * @brief Access the y-coordinate the pose (read-only) + * @return const reference to the y-coordinate + */ + inline const double& y() const {return _estimate.y();} + + /** + * @brief Access the orientation part (yaw angle) of the pose + * @return reference to the yaw angle + */ + inline double& theta() {return _estimate.theta();} + + /** + * @brief Access the orientation part (yaw angle) of the pose (read-only) + * @return const reference to the yaw angle + */ + inline const double& theta() const {return _estimate.theta();} + + /** + * @brief Set the underlying estimate (2D vector) to zero. + */ + virtual void setToOriginImpl() override + { + _estimate.setZero(); + } + + /** + * @brief Define the update increment \f$ \mathbf{x}_{k+1} = \mathbf{x}_k + \Delta \mathbf{x} \f$. + * A simple addition for the position. + * The angle is first added to the previous estimated angle and afterwards normalized to the interval \f$ [-\pi \pi] \f$ + * @param update increment that should be added to the previous esimate + */ + virtual void oplusImpl(const double* update) override + { + _estimate.plus(update); + } + + /** + * @brief Read an estimate from an input stream. + * First the x-coordinate followed by y and the yaw angle. + * @param is input stream + * @return always \c true + */ + virtual bool read(std::istream& is) override + { + is >> _estimate.x() >> _estimate.y() >> _estimate.theta(); + return true; + } + + /** + * @brief Write the estimate to an output stream + * First the x-coordinate followed by y and the yaw angle. + * @param os output stream + * @return \c true if the export was successful, otherwise \c false + */ + virtual bool write(std::ostream& os) const override + { + os << _estimate.x() << " " << _estimate.y() << " " << _estimate.theta(); + return os.good(); + } + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +} + +#endif // VERTEX_POSE_H_ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/vertex_timediff.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/vertex_timediff.h new file mode 100755 index 0000000..4eead6c --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/g2o_types/vertex_timediff.h @@ -0,0 +1,145 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Notes: + * The following class is derived from a class defined by the + * g2o-framework. g2o is licensed under the terms of the BSD License. + * Refer to the base class source for detailed licensing information. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef VERTEX_TIMEDIFF_H +#define VERTEX_TIMEDIFF_H + + +#include "g2o/config.h" +#include "g2o/core/base_vertex.h" +#include "g2o/core/hyper_graph_action.h" + +#include + +namespace teb_local_planner +{ + +/** + * @class VertexTimeDiff + * @brief This class stores and wraps a time difference \f$ \Delta T \f$ into a vertex that can be optimized via g2o + */ +class VertexTimeDiff : public g2o::BaseVertex<1, double> +{ +public: + + /** + * @brief Default constructor + * @param fixed if \c true, this vertex is considered fixed during optimization [default: \c false] + */ + VertexTimeDiff(bool fixed = false) + { + setToOriginImpl(); + setFixed(fixed); + } + + /** + * @brief Construct the TimeDiff vertex with a value + * @param dt time difference value of the vertex + * @param fixed if \c true, this vertex is considered fixed during optimization [default: \c false] + */ + VertexTimeDiff(double dt, bool fixed = false) + { + _estimate = dt; + setFixed(fixed); + } + + /** + * @brief Access the timediff value of the vertex + * @see estimate + * @return reference to dt + */ + inline double& dt() {return _estimate;} + + /** + * @brief Access the timediff value of the vertex (read-only) + * @see estimate + * @return const reference to dt + */ + inline const double& dt() const {return _estimate;} + + /** + * @brief Set the underlying TimeDiff estimate \f$ \Delta T \f$ to default. + */ + virtual void setToOriginImpl() override + { + _estimate = 0.1; + } + + /** + * @brief Define the update increment \f$ \Delta T_{k+1} = \Delta T_k + update \f$. + * A simple addition implements what we want. + * @param update increment that should be added to the previous esimate + */ + virtual void oplusImpl(const double* update) override + { + _estimate += *update; + } + + /** + * @brief Read an estimate of \f$ \Delta T \f$ from an input stream + * @param is input stream + * @return always \c true + */ + virtual bool read(std::istream& is) override + { + is >> _estimate; + return true; + } + + /** + * @brief Write the estimate \f$ \Delta T \f$ to an output stream + * @param os output stream + * @return \c true if the export was successful, otherwise \c false + */ + virtual bool write(std::ostream& os) const override + { + os << estimate(); + return os.good(); + } + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +} + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/graph_search.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/graph_search.h new file mode 100644 index 0000000..3c4bd7c --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/graph_search.h @@ -0,0 +1,215 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Authors: Christoph Rösmann, Franz Albers + *********************************************************************/ + +#ifndef GRAPH_SEARCH_INTERFACE_H +#define GRAPH_SEARCH_INTERFACE_H + +#ifdef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS + #include +#else + // Workaround for a bug in boost graph library (concerning directed graphs), boost version 1.48: + // boost::add_vertex requires a move constructor/assignment operator in one of the underlying boost objects if C++11 is activated, + // but they are missing. The compiler fails due to an implicit deletion. We just deactivate C++11 default functions for now. + #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS + #include + #undef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS +#endif + +#include +#include +#include +#include + +#include + +#include + +#include "teb_local_planner/equivalence_relations.h" +#include "teb_local_planner/pose_se2.h" +#include "teb_local_planner/teb_config.h" + +namespace teb_local_planner +{ + +class HomotopyClassPlanner; // Forward declaration + +//! Vertex in the graph that is used to find homotopy classes (only stores 2D positions) +struct HcGraphVertex +{ +public: + Eigen::Vector2d pos; // position of vertices in the map + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +//! Abbrev. for the homotopy class search-graph type @see HcGraphVertex +typedef boost::adjacency_list < boost::listS, boost::vecS, boost::directedS, HcGraphVertex, boost::no_property > HcGraph; +//! Abbrev. for vertex type descriptors in the homotopy class search-graph +typedef boost::graph_traits::vertex_descriptor HcGraphVertexType; +//! Abbrev. for edge type descriptors in the homotopy class search-graph +typedef boost::graph_traits::edge_descriptor HcGraphEdgeType; +//! Abbrev. for the vertices iterator of the homotopy class search-graph +typedef boost::graph_traits::vertex_iterator HcGraphVertexIterator; +//! Abbrev. for the edges iterator of the homotopy class search-graph +typedef boost::graph_traits::edge_iterator HcGraphEdgeIterator; +//! Abbrev. for the adjacency iterator that iterates vertices that are adjecent to the specified one +typedef boost::graph_traits::adjacency_iterator HcGraphAdjecencyIterator; + +//!< Inline function used for calculateHSignature() in combination with HCP graph vertex descriptors +inline std::complex getCplxFromHcGraph(HcGraphVertexType vert_descriptor, const HcGraph& graph) +{ + return std::complex(graph[vert_descriptor].pos.x(), graph[vert_descriptor].pos.y()); +} + +//!< Inline function used for initializing the TEB in combination with HCP graph vertex descriptors +inline const Eigen::Vector2d& getVector2dFromHcGraph(HcGraphVertexType vert_descriptor, const HcGraph& graph) +{ + return graph[vert_descriptor].pos; +} + +/** + * @brief Base class for graph based path planning / homotopy class sampling + */ +class GraphSearchInterface +{ +public: + + virtual void createGraph(const PoseSE2& start, const PoseSE2& goal, double dist_to_obst, double obstacle_heading_threshold, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel = false) = 0; + + /** + * @brief Clear any existing graph of the homotopy class search + */ + void clearGraph() {graph_.clear();} + + // HcGraph graph() const {return graph_;} + // Workaround. graph_ is public for now, beacuse otherwise the compilation fails with the same boost bug mentioned above. + HcGraph graph_; //!< Store the graph that is utilized to find alternative homotopy classes. + +protected: + /** + * @brief Protected constructor that should be called by subclasses + */ + GraphSearchInterface(const TebConfig& cfg, HomotopyClassPlanner* hcp) : cfg_(&cfg), hcp_(hcp){} + + /** + * @brief Depth First Search implementation to find all paths between the start and the specified goal vertex. + * + * Complete paths are stored to the internal path container. + * @sa http://www.technical-recipes.com/2011/a-recursive-algorithm-to-find-all-paths-between-two-given-nodes/ + * @param g Graph on which the depth first should be performed + * @param visited A container that stores visited vertices (pass an empty container, it will be filled inside during recursion). + * @param goal Desired goal vertex + * @param start_orientation Orientation of the first trajectory pose, required to initialize the trajectory/TEB + * @param goal_orientation Orientation of the goal trajectory pose, required to initialize the trajectory/TEB + * @param start_velocity start velocity (optional) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, otherwise the final velocity will be zero (default: false) + */ + + void DepthFirst(HcGraph& g, std::vector& visited, const HcGraphVertexType& goal, double start_orientation, double goal_orientation, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel = false); + +protected: + const TebConfig* cfg_; //!< Config class that stores and manages all related parameters + HomotopyClassPlanner* const hcp_; //!< Raw pointer to the HomotopyClassPlanner. The HomotopyClassPlanner itself is guaranteed to outlive the graph search class it is holding. + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + + +class lrKeyPointGraph : public GraphSearchInterface +{ +public: + lrKeyPointGraph(const TebConfig& cfg, HomotopyClassPlanner* hcp) : GraphSearchInterface(cfg, hcp){} + + virtual ~lrKeyPointGraph(){} + + /** + * @brief Create a graph containing points in the global frame that can be used to explore new possible paths between start and goal. + * + * This version of the graph creation places a keypoint on the left and right side of each obstacle w.r.t to the goal heading. \n + * All feasible paths between start and goal point are extracted using a Depth First Search afterwards. \n + * This version works very well for small point obstacles. For more complex obstacles call the createProbRoadmapGraph() + * method that samples keypoints in a predefined area and hopefully finds all relevant alternative paths. + * + * @see createProbRoadmapGraph + * @param start Start pose from wich to start on (e.g. the current robot pose). + * @param goal Goal pose to find paths to (e.g. the robot's goal). + * @param dist_to_obst Allowed distance to obstacles: if not satisfying, the path will be rejected (note, this is not the distance used for optimization). + * @param obstacle_heading_threshold Value of the normalized scalar product between obstacle heading and goal heading in order to take them (obstacles) into account [0,1] + * @param start_velocity start velocity (optional) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, otherwise the final velocity will be zero (default: false) + */ + virtual void createGraph(const PoseSE2& start, const PoseSE2& goal, double dist_to_obst, double obstacle_heading_threshold, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel = false); +}; + + + + +class ProbRoadmapGraph : public GraphSearchInterface +{ +public: + ProbRoadmapGraph(const TebConfig& cfg, HomotopyClassPlanner* hcp) : GraphSearchInterface(cfg, hcp){} + + virtual ~ProbRoadmapGraph(){} + + + /** + * @brief Create a graph and sample points in the global frame that can be used to explore new possible paths between start and goal. + * + * This version of the graph samples keypoints in a predefined area (config) in the current frame between start and goal. \n + * Afterwards all feasible paths between start and goal point are extracted using a Depth First Search. \n + * Use the sampling method for complex, non-point or huge obstacles. \n + * You may call createGraph() instead. + * + * @see createGraph + * @param start Start pose from wich to start on (e.g. the current robot pose). + * @param goal Goal pose to find paths to (e.g. the robot's goal). + * @param dist_to_obst Allowed distance to obstacles: if not satisfying, the path will be rejected (note, this is not the distance used for optimization). + * @param no_samples number of random samples + * @param obstacle_heading_threshold Value of the normalized scalar product between obstacle heading and goal heading in order to take them (obstacles) into account [0,1] + * @param start_velocity start velocity (optional) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, otherwise the final velocity will be zero (default: false) + */ + virtual void createGraph(const PoseSE2& start, const PoseSE2& goal, double dist_to_obst, double obstacle_heading_threshold, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel = false); + +private: + boost::random::mt19937 rnd_generator_; //!< Random number generator used by createProbRoadmapGraph to sample graph keypoints. +}; +} // end namespace + +#endif // GRAPH_SEARCH_INTERFACE_H diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/h_signature.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/h_signature.h new file mode 100644 index 0000000..8a11f0f --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/h_signature.h @@ -0,0 +1,432 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Authors: Christoph Rösmann, Franz Albers + *********************************************************************/ + +#ifndef H_SIGNATURE_H_ +#define H_SIGNATURE_H_ + +#include + +#include "teb_local_planner/equivalence_relations.h" +#include "teb_local_planner/misc.h" +#include "teb_local_planner/obstacles.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/timed_elastic_band.h" + +#include +#include +#include +#include +#include +#include + + +namespace teb_local_planner +{ + +/** + * @brief The H-signature defines an equivalence relation based on homology in terms of complex calculus. + * + * The H-Signature depends on the obstacle configuration and can be utilized + * to check whether two trajectores belong to the same homology class. + * Refer to: \n + * - S. Bhattacharya et al.: Search-based Path Planning with Homotopy Class Constraints, AAAI, 2010 + */ +class HSignature : public EquivalenceClass +{ + +public: + + /** + * @brief Constructor accepting a TebConfig + * @param cfg TebConfig storing some user configuration options + */ + HSignature(const TebConfig& cfg) : cfg_(&cfg) {} + + + /** + * @brief Calculate the H-Signature of a path + * + * The implemented function accepts generic path descriptions that are restricted to the following structure: \n + * The path is composed of points T and is represented by a std::vector< T > or similar type (std::list, std::deque, ...). \n + * Provide a unary function with the following signature std::complex< long double > (const T& point_type) + * that returns a complex value for the position (Re(*)=x, Im(*)=y). + * + * T could also be a pointer type, if the passed function also accepts a const T* point_Type. + * + * @param path_start Iterator to the first element in the path + * @param path_end Iterator to the last element in the path + * @param obstacles obstacle container + * @param fun_cplx_point function accepting the dereference iterator type and that returns the position as complex number. + * @tparam BidirIter Bidirectional iterator type + * @tparam Fun function of the form std::complex< long double > (const T& point_type) + */ + template + void calculateHSignature(BidirIter path_start, BidirIter path_end, Fun fun_cplx_point, const ObstContainer* obstacles) + { + if (obstacles->empty()) + { + hsignature_ = std::complex(0,0); + return; + } + + + TEB_ASSERT_MSG(cfg_->hcp.h_signature_prescaler>0.1 && cfg_->hcp.h_signature_prescaler<=1, "Only a prescaler on the interval (0.1,1] ist allowed."); + + // guess values for f0 + // paper proposes a+b=N-1 && |a-b|<=1, 1...N obstacles + int m = std::max( (int)obstacles->size()-1, 5 ); // for only a few obstacles we need a min threshold in order to get significantly high H-Signatures + + int a = (int) std::ceil(double(m)/2.0); + int b = m-a; + + std::advance(path_end, -1); // reduce path_end by 1 (since we check line segments between those path points + + typedef std::complex cplx; + // guess map size (only a really really coarse guess is required + // use distance from start to goal as distance to each direction + // TODO: one could move the map determination outside this function, since it remains constant for the whole planning interval + cplx start = fun_cplx_point(*path_start); + cplx end = fun_cplx_point(*path_end); // path_end points to the last point now after calling std::advance before + cplx delta = end-start; + cplx normal(-delta.imag(), delta.real()); + cplx map_bottom_left; + cplx map_top_right; + if (std::abs(delta) < 3.0) + { // set minimum bound on distance (we do not want to have numerical instabilities) and 3.0 performs fine... + map_bottom_left = start + cplx(0, -3); + map_top_right = start + cplx(3, 3); + } + else + { + map_bottom_left = start - normal; + map_top_right = start + delta + normal; + } + + hsignature_ = 0; // reset local signature + + std::vector imag_proposals(5); + + // iterate path + while(path_start != path_end) + { + cplx z1 = fun_cplx_point(*path_start); + cplx z2 = fun_cplx_point(*std::next(path_start)); + + for (std::size_t l=0; lsize(); ++l) // iterate all obstacles + { + cplx obst_l = obstacles->at(l)->getCentroidCplx(); + //cplx f0 = (long double) prescaler * std::pow(obst_l-map_bottom_left,a) * std::pow(obst_l-map_top_right,b); + cplx f0 = (long double) cfg_->hcp.h_signature_prescaler * (long double)a*(obst_l-map_bottom_left) * (long double)b*(obst_l-map_top_right); + + // denum contains product with all obstacles exepct j==l + cplx Al = f0; + for (std::size_t j=0; jsize(); ++j) + { + if (j==l) + continue; + cplx obst_j = obstacles->at(j)->getCentroidCplx(); + cplx diff = obst_l - obst_j; + //if (diff.real()!=0 || diff.imag()!=0) + if (std::abs(diff)<0.05) // skip really close obstacles + continue; + else + Al /= diff; + } + // compute log value + double diff2 = std::abs(z2-obst_l); + double diff1 = std::abs(z1-obst_l); + if (diff2 == 0 || diff1 == 0) + continue; + double log_real = std::log(diff2)-std::log(diff1); + // complex ln has more than one solution -> choose minimum abs angle -> paper + double arg_diff = std::arg(z2-obst_l)-std::arg(z1-obst_l); + imag_proposals.at(0) = arg_diff; + imag_proposals.at(1) = arg_diff+2*M_PI; + imag_proposals.at(2) = arg_diff-2*M_PI; + imag_proposals.at(3) = arg_diff+4*M_PI; + imag_proposals.at(4) = arg_diff-4*M_PI; + double log_imag = *std::min_element(imag_proposals.begin(),imag_proposals.end(),smaller_than_abs); + cplx log_value(log_real,log_imag); + //cplx log_value = std::log(z2-obst_l)-std::log(z1-obst_l); // the principal solution doesn't seem to work + hsignature_ += Al*log_value; + } + ++path_start; + } + } + + + /** + * @brief Check if two candidate classes are equivalent + * @param other The other equivalence class to test with + */ + virtual bool isEqual(const EquivalenceClass& other) const + { + const HSignature* hother = dynamic_cast(&other); // TODO: better architecture without dynamic_cast + if (hother) + { + double diff_real = std::abs(hother->hsignature_.real() - hsignature_.real()); + double diff_imag = std::abs(hother->hsignature_.imag() - hsignature_.imag()); + if (diff_real<=cfg_->hcp.h_signature_threshold && diff_imag<=cfg_->hcp.h_signature_threshold) + return true; // Found! Homotopy class already exists, therefore nothing added + } + else + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), "Cannot compare HSignature equivalence classes with types other than HSignature."); + + return false; + } + + /** + * @brief Check if the equivalence value is detected correctly + * @return Returns false, if the equivalence class detection failed, e.g. if nan- or inf values occur. + */ + virtual bool isValid() const + { + return std::isfinite(hsignature_.real()) && std::isfinite(hsignature_.imag()); + } + + /** + * @brief Check if the trajectory is non-looping around an obstacle. + * @return Returns always true, as this cannot be detected by this kind of H-Signature. + */ + virtual bool isReasonable() const + { + return true; + } + + /** + * @brief Get the current value of the h-signature (read-only) + * @return h-signature in complex-number format + */ + const std::complex& value() const {return hsignature_;} + + +private: + + const TebConfig* cfg_; + std::complex hsignature_; +}; + + + + + +/** + * @brief The H-signature in three dimensions (here: x-y-t) defines an equivalence relation based on homology using theorems from electro magnetism. + * + * The H-Signature depends on the obstacle configuration and can be utilized + * to check whether two trajectores belong to the same homology class. + * Refer to: \n + * - S. Bhattacharya et al.: Identification and Representation of Homotopy Classes of Trajectories for Search-based Path Planning in 3D, 2011 + */ +class HSignature3d : public EquivalenceClass +{ +public: + /** + * @brief Constructor accepting a TebConfig + * @param cfg TebConfig storing some user configuration options + */ + HSignature3d(const TebConfig& cfg) : cfg_(&cfg) {} + + + /** + * @brief Calculate the H-Signature of a path + * + * The implemented function accepts generic path descriptions that are restricted to the following structure: \n + * The path is composed of points T and is represented by a std::vector< T > or similar type (std::list, std::deque, ...). \n + * Provide a unary function with the following signature std::complex< long double > (const T& point_type) + * that returns a complex value for the position (Re(*)=x, Im(*)=y). + * + * T could also be a pointer type, if the passed function also accepts a const T* point_Type. + * + * @param path_start Iterator to the first element in the path + * @param path_end Iterator to the last element in the path + * @param obstacles obstacle container + * @param fun_cplx_point function accepting the dereference iterator type and that returns the position as complex number. + * @tparam BidirIter Bidirectional iterator type + * @tparam Fun function of the form std::complex< long double > (const T& point_type) + */ + template + void calculateHSignature(BidirIter path_start, BidirIter path_end, Fun fun_cplx_point, const ObstContainer* obstacles, + boost::optional timediff_start, boost::optional timediff_end) + { + hsignature3d_.resize(obstacles->size()); + + std::advance(path_end, -1); // reduce path_end by 1 (since we check line segments between those path points) + + constexpr int num_int_steps_per_segment = 10; + + for (std::size_t l = 0; l < obstacles->size(); ++l) // iterate all obstacles + { + double H = 0; + double transition_time = 0; + double next_transition_time = 0; + BidirIter path_iter; + TimeDiffSequence::iterator timediff_iter; + + Eigen::Vector3d s1 (obstacles->at(l)->getCentroid()(0), obstacles->at(l)->getCentroid()(1), 0); + double t = 120; // some large value for defining the end point of the obstacle/"conductor" model + Eigen::Vector3d s2; + obstacles->at(l)->predictCentroidConstantVelocity(t, s2.head(2)); + s2[2] = t; + Eigen::Vector3d ds = s2 - s1; + double ds_sq_norm = ds.squaredNorm(); // by definition not zero as t > 0 (3rd component) + + // iterate path + for (path_iter = path_start, timediff_iter = timediff_start.get(); path_iter != path_end; ++path_iter, ++timediff_iter) + { + std::complex z1 = fun_cplx_point(*path_iter); + std::complex z2 = fun_cplx_point(*std::next(path_iter)); + + transition_time = next_transition_time; + if (timediff_start == boost::none || timediff_end == boost::none) // if no time information is provided yet, approximate transition time + next_transition_time += std::abs(z2 - z1) / cfg_->robot.max_vel_x; // Approximate the time, if no time is known + else // otherwise use the time information from the teb trajectory + { + if (std::distance(path_iter, path_end) != std::distance(timediff_iter, timediff_end.get())) { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), "Size of poses and timediff vectors does not match. This is a bug."); + } + next_transition_time += (*timediff_iter)->dt(); + } + + Eigen::Vector3d direction_vec; + direction_vec[0] = z2.real() - z1.real(); + direction_vec[1] = z2.imag() - z1.imag(); + direction_vec[2] = next_transition_time - transition_time; + + if(direction_vec.norm() < 1e-15) // Coincident poses + continue; + + Eigen::Vector3d r(z1.real(), z1.imag(), transition_time); + Eigen::Vector3d dl = 1.0/static_cast(num_int_steps_per_segment) * direction_vec; // Integrate with multiple steps between each pose + Eigen::Vector3d p1, p2, d, phi; + for (int i = 0; i < num_int_steps_per_segment; ++i, r += dl) + { + p1 = s1 - r; + p2 = s2 - r; + d = (ds.cross(p1.cross(p2))) / ds_sq_norm; + phi = 1.0 / d.squaredNorm() * ((d.cross(p2) / p2.norm()) - (d.cross(p1) / p1.norm())); + H += phi.dot(dl); + } + } + + // normalize to 1 + hsignature3d_.at(l) = H/(4.0*M_PI); + } + } + + /** + * @brief Check if two candidate classes are equivalent + * + * If the absolute value of the H-Signature is equal or greater than 1, a loop (in x-y) around the obstacle is indicated. + * Positive H-Signature: Obstacle lies on the left hand side of the planned trajectory + * Negative H-Signature: Obstacle lies on the right hand side of the planned trajectory + * H-Signature equals zero: Obstacle lies in infinity, has no influence on trajectory + * + * @param other The other equivalence class to test with + */ + virtual bool isEqual(const EquivalenceClass& other) const + { + const HSignature3d* hother = dynamic_cast(&other); // TODO: better architecture without dynamic_cast + if (hother) + { + if (hsignature3d_.size() == hother->hsignature3d_.size()) + { + for(size_t i = 0; i < hsignature3d_.size(); ++i) + { + // If the H-Signature for one obstacle is below this threshold, that obstacle is far away from the planned trajectory, + // and therefore ignored in the homotopy class planning + if (std::abs(hother->hsignature3d_.at(i)) < cfg_->hcp.h_signature_threshold || std::abs(hsignature3d_.at(i)) < cfg_->hcp.h_signature_threshold) + continue; + + if (boost::math::sign(hother->hsignature3d_.at(i)) != boost::math::sign(hsignature3d_.at(i))) + return false; // Signatures are not equal, new homotopy class + } + return true; // Found! Homotopy class already exists, therefore nothing added + } + } + else { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), "Cannot compare HSignature3d equivalence classes with types other than HSignature3d."); + } + + return false; + } + + /** + * @brief Check if the equivalence value is detected correctly + * @return Returns false, if the equivalence class detection failed, e.g. if nan- or inf values occur. + */ + virtual bool isValid() const + { + for(const double& value : hsignature3d_) + { + if (!std::isfinite(value)) + return false; + } + return true; + } + + /** + * @brief Check if the trajectory is non-looping around any obstacle. Values greater than 1 indicate a looping trajectory. + * @return Returns false, if the trajectory loops around an obstacle + */ + virtual bool isReasonable() const + { + for(const double& value : hsignature3d_) + { + if (value > 1.0) + return false; + } + return true; + } + + /** + * @brief Get the current h-signature (read-only) + * @return h-signature in complex-number format + */ + const std::vector& values() const {return hsignature3d_;} + +private: + const TebConfig* cfg_; + std::vector hsignature3d_; +}; + + +} // namespace teb_local_planner + + +#endif /* H_SIGNATURE_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/homotopy_class_planner.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/homotopy_class_planner.h new file mode 100644 index 0000000..841e630 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/homotopy_class_planner.h @@ -0,0 +1,591 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef HOMOTOPY_CLASS_PLANNER_H_ +#define HOMOTOPY_CLASS_PLANNER_H_ + +#include + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include "teb_local_planner/planner_interface.h" +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/obstacles.h" +#include "teb_local_planner/optimal_planner.h" +#include "teb_local_planner/visualization.h" +#include "teb_local_planner/robot_footprint_model.h" +#include "teb_local_planner/equivalence_relations.h" +#include "teb_local_planner/graph_search.h" + + +namespace teb_local_planner +{ + +//!< Inline function used for calculateHSignature() in combination with VertexPose pointers +inline std::complex getCplxFromVertexPosePtr(const VertexPose* pose) +{ + return std::complex(pose->x(), pose->y()); +}; + + +//!< Inline function used for calculateHSignature() in combination with geometry_msgs::msg::PoseStamped +inline std::complex getCplxFromMsgPoseStamped(const geometry_msgs::msg::PoseStamped& pose) +{ + return std::complex(pose.pose.position.x, pose.pose.position.y); +}; + +/** + * @class HomotopyClassPlanner + * @brief Local planner that explores alternative homotopy classes, create a plan for each alternative + * and finally return the robot controls for the current best path (repeated in each sampling interval) + * + * Equivalence classes (e.g. homotopy) are explored using the help of a search-graph. \n + * A couple of possible candidates are sampled / generated and filtered afterwards such that only a single candidate + * per homotopy class remain. Filtering is applied using the H-Signature, a homotopy (resp. homology) invariant: \n + * - S. Bhattacharya et al.: Search-based Path Planning with Homotopy Class Constraints, AAAI, 2010 + * - C. Rösmann et al.: Planning of Multiple Robot Trajectories in Distinctive Topologies, ECMR, 2015. + * + * Followed by the homotopy class search, each candidate is used as an initialization for the underlying trajectory + * optimization (in this case utilizing the TebOptimalPlanner class with the TimedElasticBand). \n + * Depending on the config parameters, the optimization is performed in parallel. \n + * After the optimization is completed, the best optimized candidate is selected w.r.t. to trajectory cost, since the + * cost already contains important features like clearance from obstacles and transition time. \n + * + * Everyhting is performed by calling one of the overloaded plan() methods. \n + * Afterwards the velocity command to control the robot is obtained from the "best" candidate + * via getVelocityCommand(). \n + * + * All steps are repeated in the subsequent sampling interval with the exception, that already planned (optimized) trajectories + * are preferred against new path initilizations in order to improve the hot-starting capability. + */ +class HomotopyClassPlanner : public PlannerInterface +{ +public: + + using EquivalenceClassContainer = std::vector< std::pair >; + + /** + * @brief Default constructor + */ + HomotopyClassPlanner(); + + /** + * @brief Construct and initialize the HomotopyClassPlanner + * @param node Shared pointer for rclcpp::Node + * @param cfg Const reference to the TebConfig class for internal parameters + * @param obstacles Container storing all relevant obstacles (see Obstacle) + * @param robot_model Shared pointer to the robot shape model used for optimization (optional) + * @param visualization Shared pointer to the TebVisualization class (optional) + * @param via_points Container storing via-points (optional) + */ + HomotopyClassPlanner(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles = NULL, + TebVisualizationPtr visualization = TebVisualizationPtr(), const ViaPointContainer* via_points = NULL); + + /** + * @brief Destruct the HomotopyClassPlanner. + */ + virtual ~HomotopyClassPlanner(); + + /** + * @brief Initialize the HomotopyClassPlanner + * @param node Shared pointer for rclcpp::Node + * @param cfg Const reference to the TebConfig class for internal parameters + * @param obstacles Container storing all relevant obstacles (see Obstacle) + * @param visualization Shared pointer to the TebVisualization class (optional) + * @param via_points Container storing via-points (optional) + */ + void initialize(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles = NULL, + TebVisualizationPtr visualization = TebVisualizationPtr(), const ViaPointContainer* via_points = NULL); + + /** @name Plan a trajectory */ + //@{ + + /** + * @brief Plan a trajectory based on an initial reference plan. + * + * Provide this method to create and optimize a trajectory that is initialized + * according to an initial reference plan (given as a container of poses). + * @warning The current implementation extracts only the start and goal pose and calls the overloaded plan() + * @param initial_plan vector of geometry_msgs::msg::PoseStamped (must be valid until clearPlanner() is called!) + * @param start_vel Current start velocity (e.g. the velocity of the robot, only linear.x, linear.y (holonomic) and angular.z are used) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + virtual bool plan(const std::vector& initial_plan, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false); + + /** + * @brief Plan a trajectory between a given start and goal pose (tf::Pose version). + * + * Provide this method to create and optimize a trajectory that is initialized between a given start and goal pose. + * @param start tf::Pose containing the start pose of the trajectory + * @param goal tf::Pose containing the goal pose of the trajectory + * @param start_vel Current start velocity (e.g. the velocity of the robot, only linear.x, linear.y (holonomic) and angular.z are used) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + // tf2 doesn't have tf::Pose +// virtual bool plan(const tf::Pose& start, const tf::Pose& goal, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false); + + /** + * @brief Plan a trajectory between a given start and goal pose. + * + * Provide this method to create and optimize a trajectory that is initialized between a given start and goal pose. + * @param start PoseSE2 containing the start pose of the trajectory + * @param goal PoseSE2 containing the goal pose of the trajectory + * @param start_vel Initial velocity at the start pose (twist message containing the translational and angular velocity). + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + virtual bool plan(const PoseSE2& start, const PoseSE2& goal, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false); + + /** + * @brief Get the velocity command from a previously optimized plan to control the robot at the current sampling interval. + * @warning Call plan() first and check if the generated plan is feasible. + * @param[out] vx translational velocity [m/s] + * @param[out] vy strafing velocity which can be nonzero for holonomic robots [m/s] + * @param[out] omega rotational velocity [rad/s] + * @param[in] look_ahead_poses index of the final pose used to compute the velocity command. + * @return \c true if command is valid, \c false otherwise + */ + virtual bool getVelocityCommand(double& vx, double& vy, double& omega, int look_ahead_poses) const; + + /** + * @brief Access current best trajectory candidate (that relates to the "best" homotopy class). + * + * If no trajectory is available, the pointer will be empty. + * If only a single trajectory is available, return it. + * Otherwise return the best one, but call selectBestTeb() before to perform the actual selection (part of the plan() methods). + * @return Shared pointer to the best TebOptimalPlanner that contains the selected trajectory (TimedElasticBand). + */ + TebOptimalPlannerPtr bestTeb() const {return tebs_.empty() ? TebOptimalPlannerPtr() : tebs_.size()==1 ? tebs_.front() : best_teb_;} + + /** + * @brief Check whether the planned trajectory is feasible or not. + * + * This method currently checks only that the trajectory, or a part of the trajectory is collision free. + * Obstacles are here represented as costmap instead of the internal ObstacleContainer. + * @param costmap_model Pointer to the costmap model + * @param footprint_spec The specification of the footprint of the robot in world coordinates + * @param inscribed_radius The radius of the inscribed circle of the robot + * @param circumscribed_radius The radius of the circumscribed circle of the robot + * @param look_ahead_idx Number of poses along the trajectory that should be verified, if -1, the complete trajectory will be checked. + * @return \c true, if the robot footprint along the first part of the trajectory intersects with + * any obstacle in the costmap, \c false otherwise. + */ + virtual bool isTrajectoryFeasible(dwb_critics::ObstacleFootprintCritic* costmap_model, const std::vector& footprint_spec, + double inscribed_radius = 0.0, double circumscribed_radius=0.0, int look_ahead_idx=-1, double feasibility_check_lookahead_distance=-1.0); + + /** + * @brief In case of empty best teb, scores again the available plans to find the best one. + * The best_teb_ variable is updated consequently. + * @return Shared pointer to the best TebOptimalPlanner that contains the selected trajectory (TimedElasticBand). + * An empty pointer is returned if no plan is available. + */ + TebOptimalPlannerPtr findBestTeb(); + + /** + * @brief Removes the specified teb and the corresponding homotopy class from the list of available ones. + * @param pointer to the teb Band to be removed + * @return Iterator to the next valid teb if available, else to the end of the tebs container. + */ + TebOptPlannerContainer::iterator removeTeb(TebOptimalPlannerPtr& teb); + + //@} + + /** @name Visualization */ + //@{ + + /** + * @brief Register a TebVisualization class to enable visiualization routines (e.g. publish the local plan and pose sequence) + * @param visualization shared pointer to a TebVisualization instance + * @see visualizeTeb + */ + void setVisualization(const TebVisualizationPtr & visualization) override; + + /** + * @brief Publish the local plan, pose sequence and additional information via ros topics (e.g. subscribe with rviz). + * + * Make sure to register a TebVisualization instance before using setVisualization() or an overlaoded constructor. + * @see setVisualization + */ + virtual void visualize(); + + //@} + + /** @name Important steps that are called during planning */ + //@{ + + + /** + * @brief Explore paths in new equivalence classes (e.g. homotopy classes) and initialize TEBs from them. + * + * This "all-in-one" method creates a graph with position keypoints from which + * feasible paths (with clearance from obstacles) are extracted. \n + * All obtained paths are filted to only keep a single path for each equivalence class. \n + * Each time a new equivalence class is explored (by means of \b no previous trajectory/TEB remain in that equivalence class), + * a new trajectory/TEB will be initialized. \n + * + * Everything is prepared now for the optimization step: see optimizeAllTEBs(). + * @param start Current start pose (e.g. pose of the robot) + * @param goal Goal pose (e.g. robot's goal) + * @param dist_to_obst Allowed distance to obstacles: if not satisfying, the path will be rejected (note, this is not the distance used for optimization). + * @param @param start_velocity start velocity (optional) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, otherwise the final velocity will be zero (default: false) + */ + void exploreEquivalenceClassesAndInitTebs(const PoseSE2& start, const PoseSE2& goal, double dist_to_obst, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel = false); + + /** + * @brief Add a new Teb to the internal trajectory container, if this teb constitutes a new equivalence class. Initialize it using a generic 2D reference path + * + * Refer to TimedElasticBand::initTEBtoGoal() for more details about the template parameters. + * @param path_start start iterator of a generic 2d path + * @param path_end end iterator of a generic 2d path + * @param fun_position unary function that returns the Eigen::Vector2d object + * @param start_orientation Orientation of the first pose of the trajectory (optional, otherwise use goal heading) + * @param goal_orientation Orientation of the last pose of the trajectory (optional, otherwise use goal heading) + * @param start_velocity start velocity (optional) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, otherwise the final velocity will be zero (default: false) + * @tparam BidirIter Bidirectional iterator type + * @tparam Fun unyary function that transforms the dereferenced iterator into an Eigen::Vector2d + * @return Shared pointer to the newly created teb optimal planner + */ + template + TebOptimalPlannerPtr addAndInitNewTeb(BidirIter path_start, BidirIter path_end, Fun fun_position, double start_orientation, double goal_orientation, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel = false); + + /** + * @brief Add a new Teb to the internal trajectory container, if this teb constitutes a new equivalence class. Initialize it with a simple straight line between a given start and goal + * @param start start pose + * @param goal goal pose + * @param start_velocity start velocity (optional) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, otherwise the final velocity will be zero (default: false) + * @return Shared pointer to the newly created teb optimal planner + */ + TebOptimalPlannerPtr addAndInitNewTeb(const PoseSE2& start, const PoseSE2& goal, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel = false); + + /** + * @brief Add a new Teb to the internal trajectory container , if this teb constitutes a new equivalence class. Initialize it using a PoseStamped container + * @param initial_plan container of poses (start and goal orientation should be valid!) + * @param start_velocity start velocity (optional) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, otherwise the final velocity will be zero (default: false) + * @return Shared pointer to the newly created teb optimal planner + */ + TebOptimalPlannerPtr addAndInitNewTeb(const std::vector& initial_plan, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel = false); + + /** + * @brief Update TEBs with new pose, goal and current velocity. + * @param start New start pose (optional) + * @param goal New goal pose (optional) + * @param start_velocity start velocity (optional) + */ + void updateAllTEBs(const PoseSE2* start, const PoseSE2* goal, const geometry_msgs::msg::Twist* start_velocity); + + + /** + * @brief Optimize all available trajectories by invoking the optimizer on each one. + * + * Depending on the configuration parameters, the optimization is performed either single or multi threaded. + * @param iter_innerloop Number of inner iterations (see TebOptimalPlanner::optimizeTEB()) + * @param iter_outerloop Number of outer iterations (see TebOptimalPlanner::optimizeTEB()) + */ + void optimizeAllTEBs(int iter_innerloop, int iter_outerloop); + + /** + * @brief Returns a shared pointer to the TEB related to the initial plan + * @return A non-empty shared ptr is returned if a match was found; Otherwise the shared ptr is empty. + */ + TebOptimalPlannerPtr getInitialPlanTEB(); + + /** + * @brief In case of multiple, internally stored, alternative trajectories, select the best one according to their cost values. + * + * The trajectory cost includes features such as transition time and clearance from obstacles. \n + * The best trajectory can be accessed later by bestTeb() within the current sampling interval in order to avoid unessary recalculations. + * @return Shared pointer to the best TebOptimalPlanner that contains the selected trajectory (TimedElasticBand). + */ + TebOptimalPlannerPtr selectBestTeb(); + + //@} + + /** + * @brief Reset the planner. + * + * Clear all previously found H-signatures, paths, tebs and the hcgraph. + */ + virtual void clearPlanner() {clearGraph(); equivalence_classes_.clear(); tebs_.clear(); initial_plan_ = NULL;} + + + /** + * @brief Prefer a desired initial turning direction (by penalizing the opposing one) + * + * A desired (initial) turning direction might be specified in case the planned trajectory oscillates between two + * solutions (in the same equivalence class!) with similar cost. Check the parameters in order to adjust the weight of the penalty. + * Initial means that the penalty is applied only to the first few poses of the trajectory. + * @param dir This parameter might be RotType::left (prefer left), RotType::right (prefer right) or RotType::none (prefer none) + */ + virtual void setPreferredTurningDir(RotType dir); + + /** + * @brief Calculate the equivalence class of a path + * + * Currently, only the H-signature (refer to HSignature) is implemented. + * + * @param path_start Iterator to the first element in the path + * @param path_end Iterator to the last element in the path + * @param obstacles obstacle container + * @param fun_cplx_point function accepting the dereference iterator type and that returns the position as complex number. + * @tparam BidirIter Bidirectional iterator type + * @tparam Fun function of the form std::complex< long double > (const T& point_type) + * @return pointer to the equivalence class base type + */ + template + EquivalenceClassPtr calculateEquivalenceClass(BidirIter path_start, BidirIter path_end, Fun fun_cplx_point, const ObstContainer* obstacles = NULL, + boost::optional timediff_start = boost::none, boost::optional timediff_end = boost::none); + + /** + * @brief Read-only access to the internal trajectory container. + * @return read-only reference to the teb container. + */ + const TebOptPlannerContainer& getTrajectoryContainer() const {return tebs_;} + + bool hasDiverged() const override; + + /** + * Compute and return the cost of the current optimization graph (supports multiple trajectories) + * @param[out] cost current cost value for each trajectory + * [for a planner with just a single trajectory: size=1, vector will not be cleared] + * @param obst_cost_scale Specify extra scaling for obstacle costs + * @param viapoint_cost_scale Specify extra scaling for via points. + * @param alternative_time_cost Replace the cost for the time optimal objective by the actual (weighted) transition time + */ + virtual void computeCurrentCost(std::vector& cost, double obst_cost_scale=1.0, double viapoint_cost_scale=1.0, bool alternative_time_cost=false); + + /** + * @brief Check if two h-signatures are similar (w.r.t. a certain threshold) + * @param h1 first h-signature + * @param h2 second h-signature + * @return \c true if both h-signatures are similar, false otherwise. + */ + inline static bool isHSignatureSimilar(const std::complex& h1, const std::complex& h2, double threshold) + { + double diff_real = std::abs(h2.real() - h1.real()); + double diff_imag = std::abs(h2.imag() - h1.imag()); + if (diff_real<=threshold && diff_imag<=threshold) + return true; // Found! Homotopy class already exists, therefore nothing added + return false; + } + /** + * @brief Checks if the orientation of the computed trajectories differs from that of the best plan of more than the + * specified threshold and eventually deletes them. + * Also deletes detours with a duration much bigger than the duration of the best_teb (duration / best duration > max_ratio_detours_duration_best_duration). + * @param orient_threshold: Threshold paramter for allowed orientation changes in radians + * @param len_orientation_vector: length of the vector used to compute the start orientation + */ + void deletePlansDetouringBackwards(const double orient_threshold, const double len_orientation_vector); + /** + * @brief Given a plan, computes its start orientation using a vector of length >= len_orientation_vector + * starting from the initial pose. + * @param plan: Teb to be analyzed + * @param len_orientation_vector: min length of the vector used to compute the start orientation + * @param orientation: computed start orientation + * @return: Could the vector for the orientation check be computed? (False if the plan has no pose with a distance + * > len_orientation_vector from the start poseq) + */ + bool computeStartOrientation(const TebOptimalPlannerPtr plan, const double len_orientation_vector, double& orientation); + + + /** + * @brief Access config (read-only) + * @return const pointer to the config instance + */ + const TebConfig* config() const {return cfg_;} + + /** + * @brief Access current obstacle container (read-only) + * @return const pointer to the obstacle container instance + */ + const ObstContainer* obstacles() const {return obstacles_;} + + /** + * @brief Returns true if the planner is initialized + */ + bool isInitialized() const {return initialized_;} + + /** + * @brief Clear any existing graph of the homotopy class search + */ + void clearGraph() {if(graph_search_) graph_search_->clearGraph();} + + /** + * @brief find the index of the currently best TEB in the container + * @remarks bestTeb() should be preferred whenever possible + * @return index of the best TEB obtained with bestTEB(), if no TEB is avaiable, it returns -1. + */ + int bestTebIdx() const; + + + /** + * @brief Internal helper function that adds a new equivalence class to the list of known classes only if it is unique. + * @param eq_class equivalence class that should be tested + * @param lock if \c true, exclude the H-signature from deletion. + * @return \c true if the h-signature was added and no duplicate was found, \c false otherwise + */ + bool addEquivalenceClassIfNew(const EquivalenceClassPtr& eq_class, bool lock=false); + + /** + * @brief Return the current set of equivalence erelations (read-only) + * @return reference to the internal set of currently tracked equivalence relations + */ + const EquivalenceClassContainer& getEquivalenceClassRef() const {return equivalence_classes_;} + + bool isInBestTebClass(const EquivalenceClassPtr& eq_class) const; + + int numTebsInClass(const EquivalenceClassPtr& eq_class) const; + + int numTebsInBestTebClass() const; + + /** + * @brief Randomly drop non-optimal TEBs to so we can explore other alternatives + * + * The HCP has a tendency to become "fixated" once its tebs_ list becomes + * fully populated, repeatedly refining and evaluating paths from the same + * few homotopy classes until the robot moves far enough for a teb to become + * invalid. As a result, it can fail to discover a more optimal path. This + * function alleviates this problem by randomly dropping TEBs other than the + * current "best" one with a probability controlled by + * selection_dropping_probability parameter. + */ + void randomlyDropTebs(); + +protected: + + /** @name Explore new paths and keep only a single one for each homotopy class */ + //@{ + + /** + * @brief Check if a h-signature exists already. + * @param eq_class equivalence class that should be tested + * @return \c true if the h-signature is found, \c false otherwise + */ + bool hasEquivalenceClass(const EquivalenceClassPtr& eq_class) const; + + + /** + * @brief Renew all found h-signatures for the new planning step based on existing TEBs. Optionally detours can be discarded. + * + * Calling this method in each new planning interval is really important. + * First all old h-signatures are deleted, since they could be invalid for this planning step (obstacle position may changed). + * Afterwards the h-signatures are calculated for each existing TEB/trajectory and is inserted to the list of known h-signatures. + * Doing this is important to prefer already optimized trajectories in contrast to initialize newly explored coarse paths. + * @param delete_detours if this param is \c true, all existing TEBs are cleared from detour-candidates calling deletePlansGoingBackwards(). + */ + void renewAndAnalyzeOldTebs(bool delete_detours); + + /** + * @brief Associate trajectories with via-points + * + * If \c all_trajectories is true, all trajectory candidates are connected with the set of via_points, + * otherwise only the trajectory sharing the homotopy class of the initial/global plan (and all via-points from alternative trajectories are removed) + * @remarks Requires that the plan method is called with an initial plan provided and that via-points are enabled (config) + * @param all_trajectories see method description + */ + void updateReferenceTrajectoryViaPoints(bool all_trajectories); + + //@} + + // external objects (store weak pointers) + const TebConfig* cfg_; //!< Config class that stores and manages all related parameters + ObstContainer* obstacles_; //!< Store obstacles that are relevant for planning + const ViaPointContainer* via_points_; //!< Store the current list of via-points + + // internal objects (memory management owned) + TebVisualizationPtr visualization_; //!< Instance of the visualization class (local/global plan, obstacles, ...) + TebOptimalPlannerPtr best_teb_; //!< Store the current best teb. + EquivalenceClassPtr best_teb_eq_class_; //!< Store the equivalence class of the current best teb + RobotFootprintModelPtr robot_model_; //!< Robot model shared instance + + const std::vector* initial_plan_; //!< Store the initial plan if available for a better trajectory initialization + EquivalenceClassPtr initial_plan_eq_class_; //!< Store the equivalence class of the initial plan + TebOptimalPlannerPtr initial_plan_teb_; //!< Store pointer to the TEB related to the initial plan (use method getInitialPlanTEB() since it checks if initial_plan_teb_ is still included in tebs_.) + + TebOptPlannerContainer tebs_; //!< Container that stores multiple local teb planners (for alternative equivalence classes) and their corresponding costs + + EquivalenceClassContainer equivalence_classes_; //!< Store all known quivalence classes (e.g. h-signatures) to allow checking for duplicates after finding and adding new ones. + // The second parameter denotes whether to exclude the class from detour deletion or not (true: force keeping). + + std::shared_ptr graph_search_; + + rclcpp::Time last_eq_class_switching_time_; //!< Store the time at which the equivalence class changed recently + + std::default_random_engine random_; + bool initialized_; //!< Keeps track about the correct initialization of this class + + TebOptimalPlannerPtr last_best_teb_; //!< Points to the plan used in the previous control cycle + + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + + +}; + +//! Abbrev. for a shared pointer of a HomotopyClassPlanner instance. +typedef std::shared_ptr HomotopyClassPlannerPtr; + + +} // namespace teb_local_planner + +// include template implementations / definitions +#include "teb_local_planner/homotopy_class_planner.hpp" + +#endif /* HOMOTOPY_CLASS_PLANNER_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/homotopy_class_planner.hpp b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/homotopy_class_planner.hpp new file mode 100644 index 0000000..db7cdef --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/homotopy_class_planner.hpp @@ -0,0 +1,95 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/homotopy_class_planner.h" +#include "teb_local_planner/h_signature.h" + +namespace teb_local_planner +{ + + +template +EquivalenceClassPtr HomotopyClassPlanner::calculateEquivalenceClass(BidirIter path_start, BidirIter path_end, Fun fun_cplx_point, const ObstContainer* obstacles, + boost::optional timediff_start, boost::optional timediff_end) +{ + if(cfg_->obstacles.include_dynamic_obstacles) + { + HSignature3d* H = new HSignature3d(*cfg_); + H->calculateHSignature(path_start, path_end, fun_cplx_point, obstacles, timediff_start, timediff_end); + return EquivalenceClassPtr(H); + } + else + { + HSignature* H = new HSignature(*cfg_); + H->calculateHSignature(path_start, path_end, fun_cplx_point, obstacles); + return EquivalenceClassPtr(H); + } +} + + +template +TebOptimalPlannerPtr HomotopyClassPlanner::addAndInitNewTeb(BidirIter path_start, BidirIter path_end, Fun fun_position, double start_orientation, double goal_orientation, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel) +{ + TebOptimalPlannerPtr candidate = TebOptimalPlannerPtr( new TebOptimalPlanner(node_, *cfg_, obstacles_)); + + candidate->teb().initTrajectoryToGoal(path_start, path_end, fun_position, cfg_->robot.max_vel_x, cfg_->robot.max_vel_theta, + cfg_->robot.acc_lim_x, cfg_->robot.acc_lim_theta, start_orientation, goal_orientation, cfg_->trajectory.min_samples, + cfg_->trajectory.allow_init_with_backwards_motion); + + if (start_velocity) + candidate->setVelocityStart(*start_velocity); + + EquivalenceClassPtr H = calculateEquivalenceClass(candidate->teb().poses().begin(), candidate->teb().poses().end(), getCplxFromVertexPosePtr, obstacles_, + candidate->teb().timediffs().begin(), candidate->teb().timediffs().end()); + + + if (free_goal_vel) + candidate->setVelocityGoalFree(); + + if(addEquivalenceClassIfNew(H)) + { + tebs_.push_back(candidate); + return tebs_.back(); + } + + // If the candidate constitutes no new equivalence class, return a null pointer + return TebOptimalPlannerPtr(); +} + +} // namespace teb_local_planner + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/misc.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/misc.h new file mode 100644 index 0000000..67f5d90 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/misc.h @@ -0,0 +1,210 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef MISC_H +#define MISC_H + +#include + +#include + +#include +#include + +#include + +namespace teb_local_planner +{ +#define SMALL_NUM 0.00000001 + +//! Symbols for left/none/right rotations +enum class RotType { left, none, right }; + +/** + * @brief Check whether two variables (double) are close to each other + * @param a the first value to compare + * @param b the second value to compare + * @param epsilon precision threshold + * @return \c true if |a-b| < epsilon, false otherwise + */ +inline bool is_close(double a, double b, double epsilon = 1e-4) +{ + return std::fabs(a - b) < epsilon; +} + +/** + * @brief Return the average angle of an arbitrary number of given angles [rad] + * @param angles vector containing all angles + * @return average / mean angle, that is normalized to [-pi, pi] + */ +inline double average_angles(const std::vector& angles) +{ + double x=0, y=0; + for (std::vector::const_iterator it = angles.begin(); it!=angles.end(); ++it) + { + x += cos(*it); + y += sin(*it); + } + if(x == 0 && y == 0) + return 0; + else + return std::atan2(y, x); +} + +/** @brief Small helper function: check if |a|<|b| */ +inline bool smaller_than_abs(double i, double j) {return std::fabs(i) +inline double distance_points2d(const P1& point1, const P2& point2) +{ + return std::sqrt( std::pow(point2.x-point1.x,2) + std::pow(point2.y-point1.y,2) ); +} + + +/** + * @brief Calculate the 2d cross product (returns length of the resulting vector along the z-axis in 3d) + * @param v1 object containing public methods x() and y() + * @param v2 object containing fields x() and y() + * @return magnitude that would result in the 3D case (along the z-axis) +*/ +template +inline double cross2d(const V1& v1, const V2& v2) +{ + return v1.x()*v2.y() - v2.x()*v1.y(); +} + +/** + * @brief Helper function that returns the const reference to a value defined by either its raw pointer type or const reference. + * + * Return a constant reference for boths input variants (pointer or reference). + * @remarks Makes only sense in combination with the overload getConstReference(const T& val). + * @param ptr pointer of type T + * @tparam T arbitrary type + * @return If \c T is a pointer, return const *T (leading to const T&), otherwise const T& with out pointer-to-ref conversion + */ +template +inline const T& get_const_reference(const T* ptr) {return *ptr;} + +/** + * @brief Helper function that returns the const reference to a value defined by either its raw pointer type or const reference. + * + * Return a constant reference for boths input variants (pointer or reference). + * @remarks Makes only sense in combination with the overload getConstReference(const T* val). + * @param val + * @param dummy SFINAE helper variable + * @tparam T arbitrary type + * @return If \c T is a pointer, return const *T (leading to const T&), otherwise const T& with out pointer-to-ref conversion + */ +template +inline const T& get_const_reference(const T& val, typename std::enable_if_t::value, T>* dummy = nullptr) {return val;} + +inline builtin_interfaces::msg::Duration durationFromSec(double t_sec) +{ + int32_t sec; + uint32_t nsec; + sec = static_cast(floor(t_sec)); + nsec = static_cast(std::round((t_sec - sec) * 1e9)); + // avoid rounding errors + sec += (nsec / 1000000000l); + nsec %= 1000000000l; + + builtin_interfaces::msg::Duration duration; + duration.sec = sec; + duration.nanosec = nsec; + return duration; +} + +struct TebAssertionFailureException : public std::runtime_error +{ + TebAssertionFailureException(const std::string &msg) + : std::runtime_error(msg) + { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), msg.c_str()); + } +}; + +#define TEB_ASSERT_MSG_IMPL(...) \ + { \ + char arg_string[1024]; \ + std::sprintf(arg_string, __VA_ARGS__); \ + const std::string msg(arg_string); \ + throw TebAssertionFailureException(msg); \ + } + +template::value>* = nullptr> +void teb_assert_msg_impl(const T expression, ARGS ...args) { + if(expression == 0) { + char arg_string[1024]; + std::sprintf(arg_string, args..., ""); + const std::string msg(arg_string); + throw TebAssertionFailureException(msg); + } +} + +template::value>* = nullptr> +void teb_assert_msg_impl(const T expression, ARGS ...args) { + if(expression == nullptr) { + char arg_string[1024]; + std::sprintf(arg_string, args..., ""); + const std::string msg(arg_string); + throw TebAssertionFailureException(msg); + } +} + +#define TEB_ASSERT_MSG(expression, ...) teb_assert_msg_impl(expression, __VA_ARGS__) + +} // namespace teb_local_planner + +#endif /* MISC_H */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/obstacles.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/obstacles.h new file mode 100644 index 0000000..6893589 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/obstacles.h @@ -0,0 +1,1112 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + + +#ifndef OBSTACLES_H +#define OBSTACLES_H + +#include +#include +#include + +#include + +#include +#include +#include + +#include "teb_local_planner/distance_calculations.h" + + +namespace teb_local_planner +{ + +/** + * @class Obstacle + * @brief Abstract class that defines the interface for modelling obstacles + */ +class Obstacle +{ +public: + + /** + * @brief Default constructor of the abstract obstacle class + */ + Obstacle() : dynamic_(false), centroid_velocity_(Eigen::Vector2d::Zero()) + { + } + + /** + * @brief Virtual destructor. + */ + virtual ~Obstacle() + { + } + + + /** @name Centroid coordinates (abstract, obstacle type depending) */ + //@{ + + /** + * @brief Get centroid coordinates of the obstacle + * @return Eigen::Vector2d containing the centroid + */ + virtual const Eigen::Vector2d& getCentroid() const = 0; + + /** + * @brief Get centroid coordinates of the obstacle as complex number + * @return std::complex containing the centroid coordinate + */ + virtual std::complex getCentroidCplx() const = 0; + + //@} + + + /** @name Collision checking and distance calculations (abstract, obstacle type depending) */ + //@{ + + /** + * @brief Check if a given point collides with the obstacle + * @param position 2D reference position that should be checked + * @param min_dist Minimum distance allowed to the obstacle to be collision free + * @return \c true if position is inside the region of the obstacle or if the minimum distance is lower than min_dist + */ + virtual bool checkCollision(const Eigen::Vector2d& position, double min_dist) const = 0; + + /** + * @brief Check if a given line segment between two points intersects with the obstacle (and additionally keeps a safty distance \c min_dist) + * @param line_start 2D point for the end of the reference line + * @param line_end 2D point for the end of the reference line + * @param min_dist Minimum distance allowed to the obstacle to be collision/intersection free + * @return \c true if given line intersects the region of the obstacle or if the minimum distance is lower than min_dist + */ + virtual bool checkLineIntersection(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double min_dist=0) const = 0; + + /** + * @brief Get the minimum euclidean distance to the obstacle (point as reference) + * @param position 2d reference position + * @return The nearest possible distance to the obstacle + */ + virtual double getMinimumDistance(const Eigen::Vector2d& position) const = 0; + + /** + * @brief Get the minimum euclidean distance to the obstacle (line as reference) + * @param line_start 2d position of the begin of the reference line + * @param line_end 2d position of the end of the reference line + * @return The nearest possible distance to the obstacle + */ + virtual double getMinimumDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) const = 0; + + /** + * @brief Get the minimum euclidean distance to the obstacle (polygon as reference) + * @param polygon Vertices (2D points) describing a closed polygon + * @return The nearest possible distance to the obstacle + */ + virtual double getMinimumDistance(const Point2dContainer& polygon) const = 0; + + /** + * @brief Get the closest point on the boundary of the obstacle w.r.t. a specified reference position + * @param position reference 2d position + * @return closest point on the obstacle boundary + */ + virtual Eigen::Vector2d getClosestPoint(const Eigen::Vector2d& position) const = 0; + + //@} + + + + /** @name Velocity related methods for non-static, moving obstacles */ + //@{ + + /** + * @brief Get the estimated minimum spatiotemporal distance to the moving obstacle using a constant velocity model (point as reference) + * @param position 2d reference position + * @param t time, for which the minimum distance to the obstacle is estimated + * @return The nearest possible distance to the obstacle at time t + */ + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& position, double t) const = 0; + + /** + * @brief Get the estimated minimum spatiotemporal distance to the moving obstacle using a constant velocity model (line as reference) + * @param line_start 2d position of the begin of the reference line + * @param line_end 2d position of the end of the reference line + * @param t time, for which the minimum distance to the obstacle is estimated + * @return The nearest possible distance to the obstacle at time t + */ + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double t) const = 0; + + /** + * @brief Get the estimated minimum spatiotemporal distance to the moving obstacle using a constant velocity model (polygon as reference) + * @param polygon Vertices (2D points) describing a closed polygon + * @param t time, for which the minimum distance to the obstacle is estimated + * @return The nearest possible distance to the obstacle at time t + */ + virtual double getMinimumSpatioTemporalDistance(const Point2dContainer& polygon, double t) const = 0; + + /** + * @brief Predict position of the centroid assuming a constant velocity model + * @param[in] t time in seconds for the prediction (t>=0) + * @param[out] position predicted 2d position of the centroid + */ + virtual void predictCentroidConstantVelocity(double t, Eigen::Ref position) const + { + position = getCentroid() + t * getCentroidVelocity(); + } + + /** + * @brief Check if the obstacle is a moving with a (non-zero) velocity + * @return \c true if the obstacle is not marked as static, \c false otherwise + */ + bool isDynamic() const {return dynamic_;} + + /** + * @brief Set the 2d velocity (vx, vy) of the obstacle w.r.t to the centroid + * @remarks Setting the velocity using this function marks the obstacle as dynamic (@see isDynamic) + * @param vel 2D vector containing the velocities of the centroid in x and y directions + */ + void setCentroidVelocity(const Eigen::Ref& vel) {centroid_velocity_ = vel; dynamic_=true;} + + /** + * @brief Set the 2d velocity (vx, vy) of the obstacle w.r.t to the centroid + * @remarks Setting the velocity using this function marks the obstacle as dynamic (@see isDynamic) + * @param velocity geometry_msgs::msg::TwistWithCovariance containing the velocity of the obstacle + * @param orientation geometry_msgs::msg::QuaternionStamped containing the orientation of the obstacle + */ + void setCentroidVelocity(const geometry_msgs::msg::TwistWithCovariance& velocity, + const geometry_msgs::msg::Quaternion& orientation) + { + // Set velocity, if obstacle is moving + Eigen::Vector2d vel; + vel.coeffRef(0) = velocity.twist.linear.x; + vel.coeffRef(1) = velocity.twist.linear.y; + + // If norm of velocity is less than 0.001, consider obstacle as not dynamic + // TODO: Get rid of constant + if (vel.norm() < 0.001) + return; + + // currently velocity published by stage is already given in the map frame +// double yaw = tf::getYaw(orientation.quaternion); +// ROS_INFO("Yaw: %f", yaw); +// Eigen::Rotation2Dd rot(yaw); +// vel = rot * vel; + setCentroidVelocity(vel); + } + + void setCentroidVelocity(const geometry_msgs::msg::TwistWithCovariance& velocity, + const geometry_msgs::msg::QuaternionStamped& orientation) + { + setCentroidVelocity(velocity, orientation.quaternion); + } + + /** + * @brief Get the obstacle velocity (vx, vy) (w.r.t. to the centroid) + * @returns 2D vector containing the velocities of the centroid in x and y directions + */ + const Eigen::Vector2d& getCentroidVelocity() const {return centroid_velocity_;} + + //@} + + + + /** @name Helper Functions */ + //@{ + + /** + * @brief Convert the obstacle to a polygon message + * + * Convert the obstacle to a corresponding polygon msg. + * Point obstacles have one vertex, lines have two vertices + * and polygons might are implictly closed such that the start vertex must not be repeated. + * @param[out] polygon the polygon message + */ + virtual void toPolygonMsg(geometry_msgs::msg::Polygon& polygon) = 0; + + virtual void toTwistWithCovarianceMsg(geometry_msgs::msg::TwistWithCovariance& twistWithCovariance) + { + if (dynamic_) + { + twistWithCovariance.twist.linear.x = centroid_velocity_(0); + twistWithCovariance.twist.linear.y = centroid_velocity_(1); + } + else + { + twistWithCovariance.twist.linear.x = 0; + twistWithCovariance.twist.linear.y = 0; + } + + // TODO:Covariance + } + + //@} + +protected: + + bool dynamic_; //!< Store flag if obstacle is dynamic (resp. a moving obstacle) + Eigen::Vector2d centroid_velocity_; //!< Store the corresponding velocity (vx, vy) of the centroid (zero, if _dynamic is \c true) + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + +//! Abbrev. for shared obstacle pointers +typedef std::shared_ptr ObstaclePtr; +//! Abbrev. for shared obstacle const pointers +typedef std::shared_ptr ObstacleConstPtr; +//! Abbrev. for containers storing multiple obstacles +typedef std::vector ObstContainer; + + + +/** + * @class PointObstacle + * @brief Implements a 2D point obstacle + */ +class PointObstacle : public Obstacle +{ +public: + + /** + * @brief Default constructor of the point obstacle class + */ + PointObstacle() : Obstacle(), pos_(Eigen::Vector2d::Zero()) + {} + + /** + * @brief Construct PointObstacle using a 2d position vector + * @param position 2d position that defines the current obstacle position + */ + PointObstacle(const Eigen::Ref< const Eigen::Vector2d>& position) : Obstacle(), pos_(position) + {} + + /** + * @brief Construct PointObstacle using x- and y-coordinates + * @param x x-coordinate + * @param y y-coordinate + */ + PointObstacle(double x, double y) : Obstacle(), pos_(Eigen::Vector2d(x,y)) + {} + + + // implements checkCollision() of the base class + virtual bool checkCollision(const Eigen::Vector2d& point, double min_dist) const + { + return getMinimumDistance(point) < min_dist; + } + + + // implements checkLineIntersection() of the base class + virtual bool checkLineIntersection(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double min_dist=0) const + { + // Distance Line - Circle + // refer to http://www.spieleprogrammierer.de/wiki/2D-Kollisionserkennung#Kollision_Kreis-Strecke + Eigen::Vector2d a = line_end-line_start; // not normalized! a=y-x + Eigen::Vector2d b = pos_-line_start; // b=m-x + + // Now find nearest point to circle v=x+a*t with t=a*b/(a*a) and bound to 0<=t<=1 + double t = a.dot(b)/a.dot(a); + if (t<0) t=0; // bound t (since a is not normalized, t can be scaled between 0 and 1 to parametrize the line + else if (t>1) t=1; + Eigen::Vector2d nearest_point = line_start + a*t; + + // check collision + return checkCollision(nearest_point, min_dist); + } + + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& position) const + { + return (position-pos_).norm(); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) const + { + return distance_point_to_segment_2d(pos_, line_start, line_end); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Point2dContainer& polygon) const + { + return distance_point_to_polygon_2d(pos_, polygon); + } + + // implements getMinimumDistanceVec() of the base class + virtual Eigen::Vector2d getClosestPoint(const Eigen::Vector2d& position) const + { + return pos_; + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& position, double t) const + { + return (pos_ + t*centroid_velocity_ - position).norm(); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double t) const + { + return distance_point_to_segment_2d(pos_ + t*centroid_velocity_, line_start, line_end); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Point2dContainer& polygon, double t) const + { + return distance_point_to_polygon_2d(pos_ + t*centroid_velocity_, polygon); + } + + // implements predictCentroidConstantVelocity() of the base class + virtual void predictCentroidConstantVelocity(double t, Eigen::Ref position) const + { + position = pos_ + t*centroid_velocity_; + } + + // implements getCentroid() of the base class + virtual const Eigen::Vector2d& getCentroid() const + { + return pos_; + } + + // implements getCentroidCplx() of the base class + virtual std::complex getCentroidCplx() const + { + return std::complex(pos_[0],pos_[1]); + } + + // Accessor methods + const Eigen::Vector2d& position() const {return pos_;} //!< Return the current position of the obstacle (read-only) + Eigen::Vector2d& position() {return pos_;} //!< Return the current position of the obstacle + double& x() {return pos_.coeffRef(0);} //!< Return the current x-coordinate of the obstacle + const double& x() const {return pos_.coeffRef(0);} //!< Return the current y-coordinate of the obstacle (read-only) + double& y() {return pos_.coeffRef(1);} //!< Return the current x-coordinate of the obstacle + const double& y() const {return pos_.coeffRef(1);} //!< Return the current y-coordinate of the obstacle (read-only) + + // implements toPolygonMsg() of the base class + virtual void toPolygonMsg(geometry_msgs::msg::Polygon& polygon) + { + polygon.points.resize(1); + polygon.points.front().x = pos_.x(); + polygon.points.front().y = pos_.y(); + polygon.points.front().z = 0; + } + +protected: + + Eigen::Vector2d pos_; //!< Store the position of the PointObstacle + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +/** + * @class CircularObstacle + * @brief Implements a 2D circular obstacle (point obstacle plus radius) + */ +class CircularObstacle : public Obstacle +{ +public: + + /** + * @brief Default constructor of the circular obstacle class + */ + CircularObstacle() : Obstacle(), pos_(Eigen::Vector2d::Zero()) + {} + + /** + * @brief Construct CircularObstacle using a 2d center position vector and radius + * @param position 2d position that defines the current obstacle position + * @param radius radius of the obstacle + */ + CircularObstacle(const Eigen::Ref< const Eigen::Vector2d>& position, double radius) : Obstacle(), pos_(position), radius_(radius) + {} + + /** + * @brief Construct CircularObstacle using x- and y-center-coordinates and radius + * @param x x-coordinate + * @param y y-coordinate + * @param radius radius of the obstacle + */ + CircularObstacle(double x, double y, double radius) : Obstacle(), pos_(Eigen::Vector2d(x,y)), radius_(radius) + {} + + + // implements checkCollision() of the base class + virtual bool checkCollision(const Eigen::Vector2d& point, double min_dist) const + { + return getMinimumDistance(point) < min_dist; + } + + + // implements checkLineIntersection() of the base class + virtual bool checkLineIntersection(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double min_dist=0) const + { + // Distance Line - Circle + // refer to http://www.spieleprogrammierer.de/wiki/2D-Kollisionserkennung#Kollision_Kreis-Strecke + Eigen::Vector2d a = line_end-line_start; // not normalized! a=y-x + Eigen::Vector2d b = pos_-line_start; // b=m-x + + // Now find nearest point to circle v=x+a*t with t=a*b/(a*a) and bound to 0<=t<=1 + double t = a.dot(b)/a.dot(a); + if (t<0) t=0; // bound t (since a is not normalized, t can be scaled between 0 and 1 to parametrize the line + else if (t>1) t=1; + Eigen::Vector2d nearest_point = line_start + a*t; + + // check collision + return checkCollision(nearest_point, min_dist); + } + + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& position) const + { + return (position-pos_).norm() - radius_; + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) const + { + return distance_point_to_segment_2d(pos_, line_start, line_end) - radius_; + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Point2dContainer& polygon) const + { + return distance_point_to_polygon_2d(pos_, polygon) - radius_; + } + + // implements getMinimumDistanceVec() of the base class + virtual Eigen::Vector2d getClosestPoint(const Eigen::Vector2d& position) const + { + return pos_ + radius_*(position-pos_).normalized(); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& position, double t) const + { + return (pos_ + t*centroid_velocity_ - position).norm() - radius_; + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double t) const + { + return distance_point_to_segment_2d(pos_ + t*centroid_velocity_, line_start, line_end) - radius_; + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Point2dContainer& polygon, double t) const + { + return distance_point_to_polygon_2d(pos_ + t*centroid_velocity_, polygon) - radius_; + } + + // implements predictCentroidConstantVelocity() of the base class + virtual void predictCentroidConstantVelocity(double t, Eigen::Ref position) const + { + position = pos_ + t*centroid_velocity_; + } + + // implements getCentroid() of the base class + virtual const Eigen::Vector2d& getCentroid() const + { + return pos_; + } + + // implements getCentroidCplx() of the base class + virtual std::complex getCentroidCplx() const + { + return std::complex(pos_[0],pos_[1]); + } + + // Accessor methods + const Eigen::Vector2d& position() const {return pos_;} //!< Return the current position of the obstacle (read-only) + Eigen::Vector2d& position() {return pos_;} //!< Return the current position of the obstacle + double& x() {return pos_.coeffRef(0);} //!< Return the current x-coordinate of the obstacle + const double& x() const {return pos_.coeffRef(0);} //!< Return the current y-coordinate of the obstacle (read-only) + double& y() {return pos_.coeffRef(1);} //!< Return the current x-coordinate of the obstacle + const double& y() const {return pos_.coeffRef(1);} //!< Return the current y-coordinate of the obstacle (read-only) + double& radius() {return radius_;} //!< Return the current radius of the obstacle + const double& radius() const {return radius_;} //!< Return the current radius of the obstacle + + // implements toPolygonMsg() of the base class + virtual void toPolygonMsg(geometry_msgs::msg::Polygon& polygon) + { + // TODO(roesmann): the polygon message type cannot describe a "perfect" circle + // We could switch to ObstacleMsg if required somewhere... + polygon.points.resize(1); + polygon.points.front().x = pos_.x(); + polygon.points.front().y = pos_.y(); + polygon.points.front().z = 0; + } + +protected: + + Eigen::Vector2d pos_; //!< Store the center position of the CircularObstacle + double radius_ = 0.0; //!< Radius of the obstacle + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +/** +* @class LineObstacle +* @brief Implements a 2D line obstacle +*/ + +class LineObstacle : public Obstacle +{ +public: + //! Abbrev. for a container storing vertices (2d points defining the edge points of the polygon) + typedef std::vector > VertexContainer; + + /** + * @brief Default constructor of the point obstacle class + */ + LineObstacle() : Obstacle() + { + start_.setZero(); + end_.setZero(); + centroid_.setZero(); + } + + /** + * @brief Construct LineObstacle using 2d position vectors as start and end of the line + * @param line_start 2d position that defines the start of the line obstacle + * @param line_end 2d position that defines the end of the line obstacle + */ + LineObstacle(const Eigen::Ref< const Eigen::Vector2d>& line_start, const Eigen::Ref< const Eigen::Vector2d>& line_end) + : Obstacle(), start_(line_start), end_(line_end) + { + calcCentroid(); + } + + /** + * @brief Construct LineObstacle using start and end coordinates + * @param x1 x-coordinate of the start of the line + * @param y1 y-coordinate of the start of the line + * @param x2 x-coordinate of the end of the line + * @param y2 y-coordinate of the end of the line + */ + LineObstacle(double x1, double y1, double x2, double y2) : Obstacle() + { + start_.x() = x1; + start_.y() = y1; + end_.x() = x2; + end_.y() = y2; + calcCentroid(); + } + + // implements checkCollision() of the base class + virtual bool checkCollision(const Eigen::Vector2d& point, double min_dist) const + { + return getMinimumDistance(point) <= min_dist; + } + + // implements checkLineIntersection() of the base class + virtual bool checkLineIntersection(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double min_dist=0) const + { + return check_line_segments_intersection_2d(line_start, line_end, start_, end_); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& position) const + { + return distance_point_to_segment_2d(position, start_, end_); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) const + { + return distance_segment_to_segment_2d(start_, end_, line_start, line_end); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Point2dContainer& polygon) const + { + return distance_segment_to_polygon_2d(start_, end_, polygon); + } + + // implements getMinimumDistanceVec() of the base class + virtual Eigen::Vector2d getClosestPoint(const Eigen::Vector2d& position) const + { + return closest_point_on_line_segment_2d(position, start_, end_); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& position, double t) const + { + Eigen::Vector2d offset = t*centroid_velocity_; + return distance_point_to_segment_2d(position, start_ + offset, end_ + offset); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double t) const + { + Eigen::Vector2d offset = t*centroid_velocity_; + return distance_segment_to_segment_2d(start_ + offset, end_ + offset, line_start, line_end); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Point2dContainer& polygon, double t) const + { + Eigen::Vector2d offset = t*centroid_velocity_; + return distance_segment_to_polygon_2d(start_ + offset, end_ + offset, polygon); + } + + // implements getCentroid() of the base class + virtual const Eigen::Vector2d& getCentroid() const + { + return centroid_; + } + + // implements getCentroidCplx() of the base class + virtual std::complex getCentroidCplx() const + { + return std::complex(centroid_.x(), centroid_.y()); + } + + // Access or modify line + const Eigen::Vector2d& start() const {return start_;} + void setStart(const Eigen::Ref& start) {start_ = start; calcCentroid();} + const Eigen::Vector2d& end() const {return end_;} + void setEnd(const Eigen::Ref& end) {end_ = end; calcCentroid();} + + // implements toPolygonMsg() of the base class + virtual void toPolygonMsg(geometry_msgs::msg::Polygon& polygon) + { + polygon.points.resize(2); + polygon.points.front().x = start_.x(); + polygon.points.front().y = start_.y(); + + polygon.points.back().x = end_.x(); + polygon.points.back().y = end_.y(); + polygon.points.back().z = polygon.points.front().z = 0; + } + +protected: + void calcCentroid() { centroid_ = 0.5*(start_ + end_); } + +private: + Eigen::Vector2d start_; + Eigen::Vector2d end_; + + Eigen::Vector2d centroid_; + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + +/** +* @class PillObstacle +* @brief Implements a 2D pill/stadium/capsular-shaped obstacle (line + distance/radius) +*/ + +class PillObstacle : public Obstacle +{ +public: + + /** + * @brief Default constructor of the point obstacle class + */ + PillObstacle() : Obstacle() + { + start_.setZero(); + end_.setZero(); + centroid_.setZero(); + } + + /** + * @brief Construct LineObstacle using 2d position vectors as start and end of the line + * @param line_start 2d position that defines the start of the line obstacle + * @param line_end 2d position that defines the end of the line obstacle + */ + PillObstacle(const Eigen::Ref< const Eigen::Vector2d>& line_start, const Eigen::Ref< const Eigen::Vector2d>& line_end, double radius) + : Obstacle(), start_(line_start), end_(line_end), radius_(radius) + { + calcCentroid(); + } + + /** + * @brief Construct LineObstacle using start and end coordinates + * @param x1 x-coordinate of the start of the line + * @param y1 y-coordinate of the start of the line + * @param x2 x-coordinate of the end of the line + * @param y2 y-coordinate of the end of the line + */ + PillObstacle(double x1, double y1, double x2, double y2, double radius) : Obstacle(), radius_(radius) + { + start_.x() = x1; + start_.y() = y1; + end_.x() = x2; + end_.y() = y2; + calcCentroid(); + } + + // implements checkCollision() of the base class + virtual bool checkCollision(const Eigen::Vector2d& point, double min_dist) const + { + return getMinimumDistance(point) <= min_dist; + } + + // implements checkLineIntersection() of the base class + virtual bool checkLineIntersection(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double min_dist=0) const + { + return check_line_segments_intersection_2d(line_start, line_end, start_, end_); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& position) const + { + return distance_point_to_segment_2d(position, start_, end_) - radius_; + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) const + { + return distance_segment_to_segment_2d(start_, end_, line_start, line_end) - radius_; + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Point2dContainer& polygon) const + { + return distance_segment_to_polygon_2d(start_, end_, polygon) - radius_; + } + + // implements getMinimumDistanceVec() of the base class + virtual Eigen::Vector2d getClosestPoint(const Eigen::Vector2d& position) const + { + Eigen::Vector2d closed_point_line = closest_point_on_line_segment_2d(position, start_, end_); + return closed_point_line + radius_*(position-closed_point_line).normalized(); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& position, double t) const + { + Eigen::Vector2d offset = t*centroid_velocity_; + return distance_point_to_segment_2d(position, start_ + offset, end_ + offset) - radius_; + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double t) const + { + Eigen::Vector2d offset = t*centroid_velocity_; + return distance_segment_to_segment_2d(start_ + offset, end_ + offset, line_start, line_end) - radius_; + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Point2dContainer& polygon, double t) const + { + Eigen::Vector2d offset = t*centroid_velocity_; + return distance_segment_to_polygon_2d(start_ + offset, end_ + offset, polygon) - radius_; + } + + // implements getCentroid() of the base class + virtual const Eigen::Vector2d& getCentroid() const + { + return centroid_; + } + + // implements getCentroidCplx() of the base class + virtual std::complex getCentroidCplx() const + { + return std::complex(centroid_.x(), centroid_.y()); + } + + // Access or modify line + const Eigen::Vector2d& start() const {return start_;} + void setStart(const Eigen::Ref& start) {start_ = start; calcCentroid();} + const Eigen::Vector2d& end() const {return end_;} + void setEnd(const Eigen::Ref& end) {end_ = end; calcCentroid();} + + // implements toPolygonMsg() of the base class + virtual void toPolygonMsg(geometry_msgs::msg::Polygon& polygon) + { + // Currently, we only export the line + // TODO(roesmann): export whole pill + polygon.points.resize(2); + polygon.points.front().x = start_.x(); + polygon.points.front().y = start_.y(); + + polygon.points.back().x = end_.x(); + polygon.points.back().y = end_.y(); + polygon.points.back().z = polygon.points.front().z = 0; + } + +protected: + void calcCentroid() { centroid_ = 0.5*(start_ + end_); } + +private: + Eigen::Vector2d start_; + Eigen::Vector2d end_; + double radius_ = 0.0; + + Eigen::Vector2d centroid_; + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +/** + * @class PolygonObstacle + * @brief Implements a polygon obstacle with an arbitrary number of vertices + * @details If the polygon has only 2 vertices, than it is considered as a line, + * otherwise the polygon will always be closed (a connection between the first and the last vertex + * is included automatically). + */ +class PolygonObstacle : public Obstacle +{ +public: + + /** + * @brief Default constructor of the polygon obstacle class + */ + PolygonObstacle() : Obstacle(), finalized_(false) + { + centroid_.setConstant(NAN); + } + + /** + * @brief Construct polygon obstacle with a list of vertices + */ + PolygonObstacle(const Point2dContainer& vertices) : Obstacle(), vertices_(vertices) + { + finalizePolygon(); + } + + + /* FIXME Not working at the moment due to the aligned allocator version of std::vector + * And it is C++11 code that is disabled atm to ensure compliance with ROS indigo/jade + template + PolygonObstacle(const Vector2dType&... vertices) : _vertices({vertices...}) + { + calcCentroid(); + _finalized = true; + } + */ + + + // implements checkCollision() of the base class + virtual bool checkCollision(const Eigen::Vector2d& point, double min_dist) const + { + // line case + if (noVertices()==2) + return getMinimumDistance(point) <= min_dist; + + // check if point is in the interior of the polygon + // point in polygon test - raycasting (http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html) + // using the following algorithm we may obtain false negatives on edge-cases, but that's ok for our purposes + int i, j; + bool c = false; + for (i = 0, j = noVertices()-1; i < noVertices(); j = i++) + { + if ( ((vertices_.at(i).y()>point.y()) != (vertices_.at(j).y()>point.y())) && + (point.x() < (vertices_.at(j).x()-vertices_.at(i).x()) * (point.y()-vertices_.at(i).y()) / (vertices_.at(j).y()-vertices_.at(i).y()) + vertices_.at(i).x()) ) + c = !c; + } + if (c>0) return true; + + // If this statement is reached, the point lies outside the polygon or maybe on its edges + // Let us check the minium distance as well + return min_dist == 0 ? false : getMinimumDistance(point) < min_dist; + } + + + /** + * @brief Check if a given line segment between two points intersects with the obstacle (and additionally keeps a safty distance \c min_dist) + * @param line_start 2D point for the end of the reference line + * @param line_end 2D point for the end of the reference line + * @param min_dist Minimum distance allowed to the obstacle to be collision/intersection free + * @remarks we ignore \c min_dist here + * @return \c true if given line intersects the region of the obstacle or if the minimum distance is lower than min_dist + */ + virtual bool checkLineIntersection(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double min_dist=0) const; + + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& position) const + { + return distance_point_to_polygon_2d(position, vertices_); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) const + { + return distance_segment_to_polygon_2d(line_start, line_end, vertices_); + } + + // implements getMinimumDistance() of the base class + virtual double getMinimumDistance(const Point2dContainer& polygon) const + { + return distance_polygon_to_polygon_2d(polygon, vertices_); + } + + // implements getMinimumDistanceVec() of the base class + virtual Eigen::Vector2d getClosestPoint(const Eigen::Vector2d& position) const; + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& position, double t) const + { + Point2dContainer pred_vertices; + predictVertices(t, pred_vertices); + return distance_point_to_polygon_2d(position, pred_vertices); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end, double t) const + { + Point2dContainer pred_vertices; + predictVertices(t, pred_vertices); + return distance_segment_to_polygon_2d(line_start, line_end, pred_vertices); + } + + // implements getMinimumSpatioTemporalDistance() of the base class + virtual double getMinimumSpatioTemporalDistance(const Point2dContainer& polygon, double t) const + { + Point2dContainer pred_vertices; + predictVertices(t, pred_vertices); + return distance_polygon_to_polygon_2d(polygon, pred_vertices); + } + + virtual void predictVertices(double t, Point2dContainer& pred_vertices) const + { + // Predict obstacle (polygon) at time t + pred_vertices.resize(vertices_.size()); + Eigen::Vector2d offset = t*centroid_velocity_; + for (std::size_t i = 0; i < vertices_.size(); i++) + { + pred_vertices[i] = vertices_[i] + offset; + } + } + + // implements getCentroid() of the base class + virtual const Eigen::Vector2d& getCentroid() const + { + assert(finalized_ && "Finalize the polygon after all vertices are added."); + return centroid_; + } + + // implements getCentroidCplx() of the base class + virtual std::complex getCentroidCplx() const + { + assert(finalized_ && "Finalize the polygon after all vertices are added."); + return std::complex(centroid_.coeffRef(0), centroid_.coeffRef(1)); + } + + // implements toPolygonMsg() of the base class + virtual void toPolygonMsg(geometry_msgs::msg::Polygon& polygon); + + + /** @name Define the polygon */ + ///@{ + + // Access or modify polygon + const Point2dContainer& vertices() const {return vertices_;} //!< Access vertices container (read-only) + Point2dContainer& vertices() {return vertices_;} //!< Access vertices container + + /** + * @brief Add a vertex to the polygon (edge-point) + * @remarks You do not need to close the polygon (do not repeat the first vertex) + * @warning Do not forget to call finalizePolygon() after adding all vertices + * @param vertex 2D point defining a new polygon edge + */ + void pushBackVertex(const Eigen::Ref& vertex) + { + vertices_.push_back(vertex); + finalized_ = false; + } + + /** + * @brief Add a vertex to the polygon (edge-point) + * @remarks You do not need to close the polygon (do not repeat the first vertex) + * @warning Do not forget to call finalizePolygon() after adding all vertices + * @param x x-coordinate of the new vertex + * @param y y-coordinate of the new vertex + */ + void pushBackVertex(double x, double y) + { + vertices_.push_back(Eigen::Vector2d(x,y)); + finalized_ = false; + } + + /** + * @brief Call finalizePolygon after the polygon is created with the help of pushBackVertex() methods + */ + void finalizePolygon() + { + fixPolygonClosure(); + calcCentroid(); + finalized_ = true; + } + + /** + * @brief Clear all vertices (Afterwards the polygon is not valid anymore) + */ + void clearVertices() {vertices_.clear(); finalized_ = false;} + + /** + * @brief Get the number of vertices defining the polygon (the first vertex is counted once) + */ + int noVertices() const {return (int)vertices_.size();} + + + ///@} + +protected: + + void fixPolygonClosure(); //!< Check if the current polygon contains the first vertex twice (as start and end) and in that case erase the last redundant one. + + void calcCentroid(); //!< Compute the centroid of the polygon (called inside finalizePolygon()) + + + Point2dContainer vertices_; //!< Store vertices defining the polygon (@see pushBackVertex) + Eigen::Vector2d centroid_; //!< Store the centroid coordinates of the polygon (@see calcCentroid) + + bool finalized_; //!< Flat that keeps track if the polygon was finalized after adding all vertices + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + +} // namespace teb_local_planner + +#endif /* OBSTACLES_H */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/optimal_planner.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/optimal_planner.h new file mode 100644 index 0000000..f76efe8 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/optimal_planner.h @@ -0,0 +1,736 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef OPTIMAL_PLANNER_H_ +#define OPTIMAL_PLANNER_H_ + +#include + + +// teb stuff +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/misc.h" +#include "teb_local_planner/timed_elastic_band.h" +#include "teb_local_planner/planner_interface.h" +#include "teb_local_planner/visualization.h" +#include "teb_local_planner/robot_footprint_model.h" + +// g2o lib stuff +#include "g2o/core/sparse_optimizer.h" +#include "g2o/core/block_solver.h" +#include "g2o/core/factory.h" +#include "g2o/core/optimization_algorithm_gauss_newton.h" +#include "g2o/core/optimization_algorithm_levenberg.h" +#include "g2o/solvers/csparse/linear_solver_csparse.h" +#include "g2o/solvers/cholmod/linear_solver_cholmod.h" + +// g2o custom edges and vertices for the TEB planner +#include "teb_local_planner/g2o_types/edge_velocity.h" +#include "teb_local_planner/g2o_types/edge_acceleration.h" +#include "teb_local_planner/g2o_types/edge_kinematics.h" +#include "teb_local_planner/g2o_types/edge_time_optimal.h" +#include "teb_local_planner/g2o_types/edge_shortest_path.h" +#include "teb_local_planner/g2o_types/edge_obstacle.h" +#include "teb_local_planner/g2o_types/edge_dynamic_obstacle.h" +#include "teb_local_planner/g2o_types/edge_via_point.h" +#include "teb_local_planner/g2o_types/edge_prefer_rotdir.h" + +// messages +#include +#include +#include +#include +#include + +#include + +#include + +#include + +namespace teb_local_planner +{ + +//! Typedef for the block solver utilized for optimization +typedef g2o::BlockSolverX TEBBlockSolver; + +//! Typedef for the linear solver utilized for optimization +typedef g2o::LinearSolverCSparse TEBLinearSolver; +//typedef g2o::LinearSolverCholmod TEBLinearSolver; + +//! Typedef for a container storing via-points +typedef std::vector< Eigen::Vector2d, Eigen::aligned_allocator > ViaPointContainer; + + +/** + * @class TebOptimalPlanner + * @brief This class optimizes an internal Timed Elastic Band trajectory using the g2o-framework. + * + * For an introduction and further details about the TEB optimization problem refer to: + * - C. Rösmann et al.: Trajectory modification considering dynamic constraints of autonomous robots, ROBOTIK, 2012. + * - C. Rösmann et al.: Efficient trajectory optimization using a sparse model, ECMR, 2013. + * - R. Kümmerle et al.: G2o: A general framework for graph optimization, ICRA, 2011. + * + * @todo: Call buildGraph() only if the teb structure has been modified to speed up hot-starting from previous solutions. + * @todo: We introduced the non-fast mode with the support of dynamic obstacles + * (which leads to better results in terms of x-y-t homotopy planning). + * However, we have not tested this mode intensively yet, so we keep + * the legacy fast mode as default until we finish our tests. + */ +class TebOptimalPlanner : public PlannerInterface +{ +public: + + /** + * @brief Default constructor + */ + TebOptimalPlanner(); + + /** + * @brief Construct and initialize the TEB optimal planner. + * @param cfg Const reference to the TebConfig class for internal parameters + * @param obstacles Container storing all relevant obstacles (see Obstacle) + * @param visual Shared pointer to the TebVisualization class (optional) + * @param via_points Container storing via-points (optional) + */ + TebOptimalPlanner(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles = NULL, + TebVisualizationPtr visual = TebVisualizationPtr(), const ViaPointContainer* via_points = NULL); + + /** + * @brief Destruct the optimal planner. + */ + virtual ~TebOptimalPlanner(); + + /** + * @brief Initializes the optimal planner + * @param node Shared pointer for rclcpp::Node + * @param cfg Const reference to the TebConfig class for internal parameters + * @param obstacles Container storing all relevant obstacles (see Obstacle) + * @param robot_model Shared pointer to the robot shape model used for optimization (optional) + * @param visual Shared pointer to the TebVisualization class (optional) + * @param via_points Container storing via-points (optional) + */ + void initialize(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles = NULL, + TebVisualizationPtr visual = TebVisualizationPtr(), const ViaPointContainer* via_points = NULL); + + /** @name Plan a trajectory */ + //@{ + + /** + * @brief Plan a trajectory based on an initial reference plan. + * + * Call this method to create and optimize a trajectory that is initialized + * according to an initial reference plan (given as a container of poses). \n + * The method supports hot-starting from previous solutions, if avaiable: \n + * - If no trajectory exist yet, a new trajectory is initialized based on the initial plan, + * see TimedElasticBand::initTEBtoGoal + * - If a previous solution is avaiable, update the trajectory based on the initial plan, + * see bool TimedElasticBand::updateAndPruneTEB + * - Afterwards optimize the recently initialized or updated trajectory by calling optimizeTEB() and invoking g2o + * @param initial_plan vector of geometry_msgs::msg::PoseStamped + * @param start_vel Current start velocity (e.g. the velocity of the robot, only linear.x, linear.y (holonomic) and angular.z are used) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + virtual bool plan(const std::vector& initial_plan, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false); + + /** + * @brief Plan a trajectory between a given start and goal pose (tf::Pose version) + * + * Call this method to create and optimize a trajectory that is initialized between a given start and goal pose. \n + * The method supports hot-starting from previous solutions, if avaiable: \n + * - If no trajectory exist yet, a new trajectory is initialized between start and goal poses, + * see TimedElasticBand::initTEBtoGoal + * - If a previous solution is avaiable, update the trajectory @see bool TimedElasticBand::updateAndPruneTEB + * - Afterwards optimize the recently initialized or updated trajectory by calling optimizeTEB() and invoking g2o + * @param start tf::Pose containing the start pose of the trajectory + * @param goal tf::Pose containing the goal pose of the trajectory + * @param start_vel Current start velocity (e.g. the velocity of the robot, only linear.x, linear.y (holonomic) and angular.z are used) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + // tf2 doesn't have tf::Pose +// virtual bool plan(const tf::Pose& start, const tf::Pose& goal, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false); + + /** + * @brief Plan a trajectory between a given start and goal pose + * + * Call this method to create and optimize a trajectory that is initialized between a given start and goal pose. \n + * The method supports hot-starting from previous solutions, if avaiable: \n + * - If no trajectory exist yet, a new trajectory is initialized between start and goal poses + * @see TimedElasticBand::initTEBtoGoal + * - If a previous solution is avaiable, update the trajectory @see bool TimedElasticBand::updateAndPruneTEB + * - Afterwards optimize the recently initialized or updated trajectory by calling optimizeTEB() and invoking g2o + * @param start PoseSE2 containing the start pose of the trajectory + * @param goal PoseSE2 containing the goal pose of the trajectory + * @param start_vel Initial velocity at the start pose (twist message containing the translational and angular velocity). + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + virtual bool plan(const PoseSE2& start, const PoseSE2& goal, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false); + + + /** + * @brief Get the velocity command from a previously optimized plan to control the robot at the current sampling interval. + * @warning Call plan() first and check if the generated plan is feasible. + * @param[out] vx translational velocity [m/s] + * @param[out] vy strafing velocity which can be nonzero for holonomic robots[m/s] + * @param[out] omega rotational velocity [rad/s] + * @param[in] look_ahead_poses index of the final pose used to compute the velocity command. + * @return \c true if command is valid, \c false otherwise + */ + virtual bool getVelocityCommand(double& vx, double& vy, double& omega, int look_ahead_poses) const; + + + /** + * @brief Optimize a previously initialized trajectory (actual TEB optimization loop). + * + * optimizeTEB implements the main optimization loop. \n + * It consist of two nested loops: + * - The outer loop resizes the trajectory according to the temporal resolution by invoking TimedElasticBand::autoResize(). + * Afterwards the internal method optimizeGraph() is called that constitutes the innerloop. + * - The inner loop calls the solver (g2o framework, resp. sparse Levenberg-Marquardt) and iterates a specified + * number of optimization calls (\c iterations_innerloop). + * + * The outer loop is repeated \c iterations_outerloop times. \n + * The ratio of inner and outer loop iterations significantly defines the contraction behavior + * and convergence rate of the trajectory optimization. Based on our experiences, 2-6 innerloop iterations are sufficient. \n + * The number of outer loop iterations should be determined by considering the maximum CPU time required to match the control rate. \n + * Optionally, the cost vector can be calculated by specifying \c compute_cost_afterwards, see computeCurrentCost(). + * @remarks This method is usually called from a plan() method + * @param iterations_innerloop Number of iterations for the actual solver loop + * @param iterations_outerloop Specifies how often the trajectory should be resized followed by the inner solver loop. + * @param compute_cost_afterwards if \c true Calculate the cost vector according to computeCurrentCost(), + * the vector can be accessed afterwards using getCurrentCost(). + * @param obst_cost_scale Specify extra scaling for obstacle costs (only used if \c compute_cost_afterwards is true) + * @param viapoint_cost_scale Specify extra scaling for via-point costs (only used if \c compute_cost_afterwards is true) + * @param alternative_time_cost Replace the cost for the time optimal objective by the actual (weighted) transition time + * (only used if \c compute_cost_afterwards is true). + * @return \c true if the optimization terminates successfully, \c false otherwise + */ + bool optimizeTEB(int iterations_innerloop, int iterations_outerloop, bool compute_cost_afterwards = false, + double obst_cost_scale=1.0, double viapoint_cost_scale=1.0, bool alternative_time_cost=false); + + //@} + + + /** @name Desired initial and final velocity */ + //@{ + + + /** + * @brief Set the initial velocity at the trajectory's start pose (e.g. the robot's velocity) [twist overload]. + * @remarks Calling this function is not neccessary if the initial velocity is passed via the plan() method + * @param vel_start Current start velocity (e.g. the velocity of the robot, only linear.x and angular.z are used, + * for holonomic robots also linear.y) + */ + void setVelocityStart(const geometry_msgs::msg::Twist& vel_start); + + /** + * @brief Set the desired final velocity at the trajectory's goal pose. + * @remarks Call this function only if a non-zero velocity is desired and if \c free_goal_vel is set to \c false in plan() + * @param vel_goal twist message containing the translational and angular final velocity + */ + void setVelocityGoal(const geometry_msgs::msg::Twist& vel_goal); + + /** + * @brief Set the desired final velocity at the trajectory's goal pose to be the maximum velocity limit + * @remarks Calling this function is not neccessary if \c free_goal_vel is set to \c false in plan() + */ + void setVelocityGoalFree() {vel_goal_.first = false;} + + //@} + + + /** @name Take obstacles into account */ + //@{ + + + /** + * @brief Assign a new set of obstacles + * @param obst_vector pointer to an obstacle container (can also be a nullptr) + * @remarks This method overrids the obstacle container optinally assigned in the constructor. + */ + void setObstVector(ObstContainer* obst_vector) {obstacles_ = obst_vector;} + + /** + * @brief Access the internal obstacle container. + * @return Const reference to the obstacle container + */ + const ObstContainer& getObstVector() const {return *obstacles_;} + + //@} + + /** @name Take via-points into account */ + //@{ + + + /** + * @brief Assign a new set of via-points + * @param via_points pointer to a via_point container (can also be a nullptr) + * @details Any previously set container will be overwritten. + */ + void setViaPoints(const ViaPointContainer* via_points) {via_points_ = via_points;} + + /** + * @brief Access the internal via-point container. + * @return Const reference to the via-point container + */ + const ViaPointContainer& getViaPoints() const {return *via_points_;} + + //@} + + + /** @name Visualization */ + //@{ + + /** + * @brief Register a TebVisualization class to enable visiualization routines (e.g. publish the local plan and pose sequence) + * @param visualization shared pointer to a TebVisualization instance + * @see visualize + */ + void setVisualization(const TebVisualizationPtr & visualization) override; + + /** + * @brief Publish the local plan and pose sequence via ros topics (e.g. subscribe with rviz). + * + * Make sure to register a TebVisualization instance before using setVisualization() or an overlaoded constructor. + * @see setVisualization + */ + virtual void visualize(); + + //@} + + + /** @name Utility methods and more */ + //@{ + + /** + * @brief Reset the planner by clearing the internal graph and trajectory. + */ + virtual void clearPlanner() + { + clearGraph(); + teb_.clearTimedElasticBand(); + } + + /** + * @brief Prefer a desired initial turning direction (by penalizing the opposing one) + * + * A desired (initial) turning direction might be specified in case the planned trajectory oscillates between two + * solutions (in the same equivalence class!) with similar cost. Check the parameters in order to adjust the weight of the penalty. + * Initial means that the penalty is applied only to the first few poses of the trajectory. + * @param dir This parameter might be RotType::left (prefer left), RotType::right (prefer right) or RotType::none (prefer none) + */ + virtual void setPreferredTurningDir(RotType dir) {prefer_rotdir_=dir;} + + /** + * @brief Register the vertices and edges defined for the TEB to the g2o::Factory. + * + * This allows the user to export the internal graph to a text file for instance. + * Access the optimizer() for more details. + */ + static void registerG2OTypes(); + + /** + * @brief Access the internal TimedElasticBand trajectory. + * @warning In general, the underlying teb must not be modified directly. Use with care... + * @return reference to the teb + */ + TimedElasticBand& teb() {return teb_;}; + + /** + * @brief Access the internal TimedElasticBand trajectory (read-only). + * @return const reference to the teb + */ + const TimedElasticBand& teb() const {return teb_;}; + + /** + * @brief Access the internal g2o optimizer. + * @warning In general, the underlying optimizer must not be modified directly. Use with care... + * @return const shared pointer to the g2o sparse optimizer + */ + std::shared_ptr optimizer() {return optimizer_;}; + + /** + * @brief Access the internal g2o optimizer (read-only). + * @return const shared pointer to the g2o sparse optimizer + */ + std::shared_ptr optimizer() const {return optimizer_;}; + + /** + * @brief Check if last optimization was successful + * @return \c true if the last optimization returned without errors, + * otherwise \c false (also if no optimization has been called before). + */ + bool isOptimized() const {return optimized_;}; + + /** + * @brief Returns true if the planner has diverged. + */ + bool hasDiverged() const override; + + /** + * @brief Compute the cost vector of a given optimization problen (hyper-graph must exist). + * + * Use this method to obtain information about the current edge errors / costs (local cost functions). \n + * The vector of cost values is composed according to the different edge types (time_optimal, obstacles, ...). \n + * Refer to the method declaration for the detailed composition. \n + * The cost for the edges that minimize time differences (EdgeTimeOptimal) corresponds to the sum of all single + * squared time differneces: \f$ \sum_i \Delta T_i^2 \f$. Sometimes, the user may want to get a value that is proportional + * or identical to the actual trajectory transition time \f$ \sum_i \Delta T_i \f$. \n + * Set \c alternative_time_cost to true in order to get the cost calculated using the latter equation, but check the + * implemented definition, if the value is scaled to match the magnitude of other cost values. + * + * @todo Remove the scaling term for the alternative time cost. + * @todo Can we use the last error (chi2) calculated from g2o instead of calculating it by ourself? + * @see getCurrentCost + * @see optimizeTEB + * @param obst_cost_scale Specify extra scaling for obstacle costs. + * @param viapoint_cost_scale Specify extra scaling for via points. + * @param alternative_time_cost Replace the cost for the time optimal objective by the actual (weighted) transition time. + * @return TebCostVec containing the cost values + */ + void computeCurrentCost(double obst_cost_scale=1.0, double viapoint_cost_scale=1.0, bool alternative_time_cost=false); + + /** + * Compute and return the cost of the current optimization graph (supports multiple trajectories) + * @param[out] cost current cost value for each trajectory + * [for a planner with just a single trajectory: size=1, vector will not be cleared] + * @param obst_cost_scale Specify extra scaling for obstacle costs + * @param viapoint_cost_scale Specify extra scaling for via points. + * @param alternative_time_cost Replace the cost for the time optimal objective by the actual (weighted) transition time + */ + virtual void computeCurrentCost(std::vector& cost, double obst_cost_scale=1.0, double viapoint_cost_scale=1.0, bool alternative_time_cost=false) + { + computeCurrentCost(obst_cost_scale, viapoint_cost_scale, alternative_time_cost); + cost.push_back( getCurrentCost() ); + } + + /** + * @brief Access the cost vector. + * + * The accumulated cost value previously calculated using computeCurrentCost + * or by calling optimizeTEB with enabled cost flag. + * @return const reference to the TebCostVec. + */ + double getCurrentCost() const {return cost_;} + + + /** + * @brief Extract the velocity from consecutive poses and a time difference (including strafing velocity for holonomic robots) + * + * The velocity is extracted using finite differences. + * The direction of the translational velocity is also determined. + * @param pose1 pose at time k + * @param pose2 consecutive pose at time k+1 + * @param dt actual time difference between k and k+1 (must be >0 !!!) + * @param[out] vx translational velocity + * @param[out] vy strafing velocity which can be nonzero for holonomic robots + * @param[out] omega rotational velocity + */ + inline void extractVelocity(const PoseSE2& pose1, const PoseSE2& pose2, double dt, double& vx, double& vy, double& omega) const; + + /** + * @brief Compute the velocity profile of the trajectory + * + * This method computes the translational and rotational velocity for the complete + * planned trajectory. + * The first velocity is the one that is provided as initial velocity (fixed). + * Velocities at index k=2...end-1 are related to the transition from pose_{k-1} to pose_k. + * The last velocity is the final velocity (fixed). + * The number of Twist objects is therefore sizePoses()+1; + * In summary: + * v[0] = v_start, + * v[1,...end-1] = +-(pose_{k+1}-pose{k})/dt, + * v(end) = v_goal + * It can be used for evaluation and debugging purposes or + * for open-loop control. For computing the velocity required for controlling the robot + * to the next step refer to getVelocityCommand(). + * @param[out] velocity_profile velocity profile will be written to this vector (after clearing any existing content) with the size=no_poses+1 + */ + void getVelocityProfile(std::vector& velocity_profile) const; + + /** + * @brief Return the complete trajectory including poses, velocity profiles and temporal information + * + * It is useful for evaluation and debugging purposes or for open-loop control. + * Since the velocity obtained using difference quotients is the mean velocity between consecutive poses, + * the velocity at each pose at time stamp k is obtained by taking the average between both velocities. + * The velocity of the first pose is v_start (provided initial value) and the last one is v_goal (usually zero, if free_goal_vel is off). + * See getVelocityProfile() for the list of velocities between consecutive points. + * @todo The acceleration profile is not added at the moment. + * @param[out] trajectory the resulting trajectory + */ + void getFullTrajectory(std::vector& trajectory) const; + + /** + * @brief Check whether the planned trajectory is feasible or not. + * + * This method currently checks only that the trajectory, or a part of the trajectory is collision free. + * Obstacles are here represented as costmap instead of the internal ObstacleContainer. + * @param costmap_model Pointer to the costmap model + * @param footprint_spec The specification of the footprint of the robot in world coordinates + * @param inscribed_radius The radius of the inscribed circle of the robot + * @param circumscribed_radius The radius of the circumscribed circle of the robot + * @param look_ahead_idx Number of poses along the trajectory that should be verified, if -1, the complete trajectory will be checked. + * @return \c true, if the robot footprint along the first part of the trajectory intersects with + * any obstacle in the costmap, \c false otherwise. + */ + virtual bool isTrajectoryFeasible(dwb_critics::ObstacleFootprintCritic* costmap_model, const std::vector& footprint_spec, double inscribed_radius = 0.0, + double circumscribed_radius=0.0, int look_ahead_idx=-1, double feasibility_check_lookahead_distance=-1); + + /** + * @brief Check whether the footprint of the robot at the pose touches an obstacle or not. + * + * @param pose2d Pose to check + * @param costmap_model Pointer to the costmap model + * @param footprint_spec The specification of the footprint of the robot in world coordinates + * @return \c true, if the robot pose is valid, \c false otherwise. + */ + virtual bool isPoseValid(geometry_msgs::msg::Pose2D pose2d, dwb_critics::ObstacleFootprintCritic* costmap_model, + const std::vector& footprint_spec); + + //@} + +protected: + + /** @name Hyper-Graph creation and optimization */ + //@{ + + /** + * @brief Build the hyper-graph representing the TEB optimization problem. + * + * This method creates the optimization problem according to the hyper-graph formulation. \n + * For more details refer to the literature cited in the TebOptimalPlanner class description. + * @see optimizeGraph + * @see clearGraph + * @param weight_multiplier Specify a weight multipler for selected weights in optimizeGraph + * This might be used for weight adapation strategies. + * Currently, only obstacle collision weights are considered. + * @return \c true, if the graph was created successfully, \c false otherwise. + */ + bool buildGraph(double weight_multiplier=1.0); + + /** + * @brief Optimize the previously constructed hyper-graph to deform / optimize the TEB. + * + * This method invokes the g2o framework to solve the optimization problem considering dedicated sparsity patterns. \n + * The current implementation calls a non-constrained sparse Levenberg-Marquardt algorithm. Constraints are considered + * by utilizing penalty approximations. Refer to the literature cited in the TebOptimalPlanner class description. + * @see buildGraph + * @see clearGraph + * @param no_iterations Number of solver iterations + * @param clear_after Clear the graph after optimization. + * @return \c true, if optimization terminates successfully, \c false otherwise. + */ + bool optimizeGraph(int no_iterations, bool clear_after=true); + + /** + * @brief Clear an existing internal hyper-graph. + * @see buildGraph + * @see optimizeGraph + */ + void clearGraph(); + + /** + * @brief Add all relevant vertices to the hyper-graph as optimizable variables. + * + * Vertices (if unfixed) represent the variables that will be optimized. \n + * In case of the Timed-Elastic-Band poses and time differences form the vertices of the hyper-graph. \n + * The order of insertion of vertices (to the graph) is important for efficiency, + * since it affect the sparsity pattern of the underlying hessian computed for optimization. + * @see VertexPose + * @see VertexTimeDiff + * @see buildGraph + * @see optimizeGraph + */ + void AddTEBVertices(); + + /** + * @brief Add all edges (local cost functions) for limiting the translational and angular velocity. + * @see EdgeVelocity + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesVelocity(); + + /** + * @brief Add all edges (local cost functions) for limiting the translational and angular acceleration. + * @see EdgeAcceleration + * @see EdgeAccelerationStart + * @see EdgeAccelerationGoal + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesAcceleration(); + + /** + * @brief Add all edges (local cost functions) for minimizing the transition time (resp. minimize time differences) + * @see EdgeTimeOptimal + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesTimeOptimal(); + + /** + * @brief Add all edges (local cost functions) for minimizing the path length + * @see EdgeShortestPath + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesShortestPath(); + + /** + * @brief Add all edges (local cost functions) related to keeping a distance from static obstacles + * @warning do not combine with AddEdgesInflatedObstacles + * @see EdgeObstacle + * @see buildGraph + * @see optimizeGraph + * @param weight_multiplier Specify an additional weight multipler (in addition to the the config weight) + */ + void AddEdgesObstacles(double weight_multiplier=1.0); + + /** + * @brief Add all edges (local cost functions) related to keeping a distance from static obstacles (legacy association strategy) + * @see EdgeObstacle + * @see buildGraph + * @see optimizeGraph + * @param weight_multiplier Specify an additional weight multipler (in addition to the the config weight) + */ + void AddEdgesObstaclesLegacy(double weight_multiplier=1.0); + + /** + * @brief Add all edges (local cost functions) related to minimizing the distance to via-points + * @see EdgeViaPoint + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesViaPoints(); + + /** + * @brief Add all edges (local cost functions) related to keeping a distance from dynamic (moving) obstacles. + * @warning experimental + * @todo Should we also add neighbors to decrease jiggling/oscillations + * @see EdgeDynamicObstacle + * @see buildGraph + * @see optimizeGraph + * @param weight_multiplier Specify an additional weight multipler (in addition to the the config weight) + + */ + void AddEdgesDynamicObstacles(double weight_multiplier=1.0); + + /** + * @brief Add all edges (local cost functions) for satisfying kinematic constraints of a differential drive robot + * @warning do not combine with AddEdgesKinematicsCarlike() + * @see AddEdgesKinematicsCarlike + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesKinematicsDiffDrive(); + + /** + * @brief Add all edges (local cost functions) for satisfying kinematic constraints of a carlike robot + * @warning do not combine with AddEdgesKinematicsDiffDrive() + * @see AddEdgesKinematicsDiffDrive + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesKinematicsCarlike(); + + /** + * @brief Add all edges (local cost functions) for prefering a specifiy turning direction (by penalizing the other one) + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesPreferRotDir(); + + /** + * @brief Add all edges (local cost function) for reducing the velocity of a vertex due to its associated obstacles + * @see buildGraph + * @see optimizeGraph + */ + void AddEdgesVelocityObstacleRatio(); + + //@} + + + /** + * @brief Initialize and configure the g2o sparse optimizer. + * @return shared pointer to the g2o::SparseOptimizer instance + */ + std::shared_ptr initOptimizer(); + + + // external objects (store weak pointers) + const TebConfig* cfg_; //!< Config class that stores and manages all related parameters + ObstContainer* obstacles_; //!< Store obstacles that are relevant for planning + const ViaPointContainer* via_points_; //!< Store via points for planning + std::vector obstacles_per_vertex_; //!< Store the obstacles associated with the n-1 initial vertices + + double cost_; //!< Store cost value of the current hyper-graph + RotType prefer_rotdir_; //!< Store whether to prefer a specific initial rotation in optimization (might be activated in case the robot oscillates) + + // internal objects (memory management owned) + TebVisualizationPtr visualization_; //!< Instance of the visualization class + TimedElasticBand teb_; //!< Actual trajectory object + RobotFootprintModelPtr robot_model_; //!< Robot model + std::shared_ptr optimizer_; //!< g2o optimizer for trajectory optimization + std::pair vel_start_; //!< Store the initial velocity at the start pose + std::pair vel_goal_; //!< Store the final velocity at the goal pose + + bool initialized_; //!< Keeps track about the correct initialization of this class + bool optimized_; //!< This variable is \c true as long as the last optimization has been completed successful + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +//! Abbrev. for shared instances of the TebOptimalPlanner +typedef std::shared_ptr TebOptimalPlannerPtr; +//! Abbrev. for shared const TebOptimalPlanner pointers +typedef std::shared_ptr TebOptimalPlannerConstPtr; +//! Abbrev. for containers storing multiple teb optimal planners +typedef std::vector< TebOptimalPlannerPtr > TebOptPlannerContainer; + +} // namespace teb_local_planner + +#endif /* OPTIMAL_PLANNER_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/planner_interface.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/planner_interface.h new file mode 100644 index 0000000..268ba84 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/planner_interface.h @@ -0,0 +1,218 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef PLANNER_INTERFACE_H_ +#define PLANNER_INTERFACE_H_ + +#include + +// ros +#include + +#include +// this package +#include +#include + +#include + +#include + +#include + +// messages +#include +#include +#include + +// this package +#include "teb_local_planner/pose_se2.h" +#include "teb_local_planner/visualization.h" + +namespace teb_local_planner +{ + + +/** + * @class PlannerInterface + * @brief This abstract class defines an interface for local planners + */ +class PlannerInterface +{ +public: + + /** + * @brief Default constructor + */ + PlannerInterface() + { + } + /** + * @brief Virtual destructor. + */ + virtual ~PlannerInterface() + { + } + + + /** @name Plan a trajectory */ + //@{ + + /** + * @brief Plan a trajectory based on an initial reference plan. + * + * Provide this method to create and optimize a trajectory that is initialized + * according to an initial reference plan (given as a container of poses). + * @param initial_plan vector of geometry_msgs::msg::PoseStamped + * @param start_vel Current start velocity (e.g. the velocity of the robot, only linear.x and angular.z are used) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + virtual bool plan(const std::vector& initial_plan, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false) = 0; + + /** + * @brief Plan a trajectory between a given start and goal pose (tf::Pose version). + * + * Provide this method to create and optimize a trajectory that is initialized between a given start and goal pose. + * @param start tf::Pose containing the start pose of the trajectory + * @param goal tf::Pose containing the goal pose of the trajectory + * @param start_vel Current start velocity (e.g. the velocity of the robot, only linear.x and angular.z are used) + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + // tf2 doesn't have tf2::Pose + //virtual bool plan(const tf::Pose& start, const tf::Pose& goal, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false) = 0; + + /** + * @brief Plan a trajectory between a given start and goal pose. + * + * Provide this method to create and optimize a trajectory that is initialized between a given start and goal pose. + * @param start PoseSE2 containing the start pose of the trajectory + * @param goal PoseSE2 containing the goal pose of the trajectory + * @param start_vel Initial velocity at the start pose (twist msg containing the translational and angular velocity). + * @param free_goal_vel if \c true, a nonzero final velocity at the goal pose is allowed, + * otherwise the final velocity will be zero (default: false) + * @return \c true if planning was successful, \c false otherwise + */ + virtual bool plan(const PoseSE2& start, const PoseSE2& goal, const geometry_msgs::msg::Twist* start_vel = NULL, bool free_goal_vel=false) = 0; + + /** + * @brief Get the velocity command from a previously optimized plan to control the robot at the current sampling interval. + * @warning Call plan() first and check if the generated plan is feasible. + * @param[out] vx translational velocity [m/s] + * @param[out] vy strafing velocity which can be nonzero for holonomic robots [m/s] + * @param[out] omega rotational velocity [rad/s] + * @param[in] look_ahead_poses index of the final pose used to compute the velocity command. + * @return \c true if command is valid, \c false otherwise + */ + virtual bool getVelocityCommand(double& vx, double& vy, double& omega, int look_ahead_poses) const = 0; + + //@} + + + /** + * @brief Reset the planner. + */ + virtual void clearPlanner() = 0; + + /** + * @brief Prefer a desired initial turning direction (by penalizing the opposing one) + * + * A desired (initial) turning direction might be specified in case the planned trajectory oscillates between two + * solutions (in the same equivalence class!) with similar cost. Check the parameters in order to adjust the weight of the penalty. + * Initial means that the penalty is applied only to the first few poses of the trajectory. + * @param dir This parameter might be RotType::left (prefer left), RotType::right (prefer right) or RotType::none (prefer none) + */ + virtual void setPreferredTurningDir(RotType dir) { + RCLCPP_WARN(rclcpp::get_logger("teb_local_planner"), + "setPreferredTurningDir() not implemented for this planner.");} + + /** + * @brief Visualize planner specific stuff. + * Overwrite this method to provide an interface to perform all planner related visualizations at once. + */ + virtual void visualize() + { + } + + virtual void setVisualization(const TebVisualizationPtr & visualization) = 0; + + /** + * @brief Check whether the planned trajectory is feasible or not. + * + * This method currently checks only that the trajectory, or a part of the trajectory is collision free. + * Obstacles are here represented as costmap instead of the internal ObstacleContainer. + * @param costmap_model Pointer to the costmap model + * @param footprint_spec The specification of the footprint of the robot in world coordinates + * @param inscribed_radius The radius of the inscribed circle of the robot + * @param circumscribed_radius The radius of the circumscribed circle of the robot + * @param look_ahead_idx Number of poses along the trajectory that should be verified, if -1, the complete trajectory will be checked. + * @return \c true, if the robot footprint along the first part of the trajectory intersects with + * any obstacle in the costmap, \c false otherwise. + */ + virtual bool isTrajectoryFeasible(dwb_critics::ObstacleFootprintCritic* costmap_model, const std::vector& footprint_spec, + double inscribed_radius = 0.0, double circumscribed_radius=0.0, int look_ahead_idx=-1, double feasibility_check_lookahead_distance=-1.0) = 0; + + /** + * Compute and return the cost of the current optimization graph (supports multiple trajectories) + * @param[out] cost current cost value for each trajectory + * [for a planner with just a single trajectory: size=1, vector will not be cleared] + * @param obst_cost_scale Specify extra scaling for obstacle costs + * @param alternative_time_cost Replace the cost for the time optimal objective by the actual (weighted) transition time + */ + virtual void computeCurrentCost(std::vector& cost, double obst_cost_scale=1.0, bool alternative_time_cost=false) + { + } + + /** + * @brief Returns true if the planner has diverged. + */ + virtual bool hasDiverged() const = 0; + + nav2_util::LifecycleNode::SharedPtr node_{nullptr}; +}; + +//! Abbrev. for shared instances of PlannerInterface or it's subclasses +typedef std::shared_ptr PlannerInterfacePtr; + + +} // namespace teb_local_planner + +#endif /* PLANNER_INTERFACE_H__ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/pose_se2.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/pose_se2.h new file mode 100755 index 0000000..55888c7 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/pose_se2.h @@ -0,0 +1,433 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef POSE_SE2_H_ +#define POSE_SE2_H_ + +#include + +#include +#include "teb_local_planner/misc.h" +#include +#include + +#include +#include +#include + +namespace teb_local_planner +{ + +/** + * @class PoseSE2 + * @brief This class implements a pose in the domain SE2: \f$ \mathbb{R}^2 \times S^1 \f$ + * The pose consist of the position x and y and an orientation given as angle theta [-pi, pi]. + */ +class PoseSE2 +{ +public: + + /** @name Construct PoseSE2 instances */ + ///@{ + + /** + * @brief Default constructor + */ + PoseSE2() + { + setZero(); + } + + /** + * @brief Construct pose given a position vector and an angle theta + * @param position 2D position vector + * @param theta angle given in rad + */ + PoseSE2(const Eigen::Ref& position, double theta) + { + _position = position; + _theta = theta; + } + + /** + * @brief Construct pose using single components x, y, and the yaw angle + * @param x x-coordinate + * @param y y-coordinate + * @param theta yaw angle in rad + */ + PoseSE2(double x, double y, double theta) + { + _position.coeffRef(0) = x; + _position.coeffRef(1) = y; + _theta = theta; + } + + /** + * @brief Construct pose using a geometry_msgs::msg::Pose + * @param pose geometry_msgs::msg::Pose object + */ + PoseSE2(const geometry_msgs::msg::PoseStamped& pose) + :PoseSE2(pose.pose) + { + + } + + /** + * @brief Construct pose using a geometry_msgs::msg::Pose + * @param pose geometry_msgs::msg::Pose object + */ + PoseSE2(const geometry_msgs::msg::Pose& pose) + { + _position.coeffRef(0) = pose.position.x; + _position.coeffRef(1) = pose.position.y; + _theta = tf2::getYaw( pose.orientation ); + } + + /** + * @brief Construct pose using a geometry_msgs::msg::Pose2D + * @param pose geometry_msgs::msg::Pose2D object + */ + PoseSE2(const geometry_msgs::msg::Pose2D& pose) + { + _position.coeffRef(0) = pose.x; + _position.coeffRef(1) = pose.y; + _theta = pose.theta; + } + + /** + * @brief Copy constructor + * @param pose PoseSE2 instance + */ + PoseSE2(const PoseSE2& pose) + { + _position = pose._position; + _theta = pose._theta; + } + + ///@} + + + /** + * @brief Destructs the PoseSE2 + */ + ~PoseSE2() {} + + + /** @name Access and modify values */ + ///@{ + + /** + * @brief Access the 2D position part + * @see estimate + * @return reference to the 2D position part + */ + Eigen::Vector2d& position() {return _position;} + + /** + * @brief Access the 2D position part (read-only) + * @see estimate + * @return const reference to the 2D position part + */ + const Eigen::Vector2d& position() const {return _position;} + + /** + * @brief Access the x-coordinate the pose + * @return reference to the x-coordinate + */ + double& x() {return _position.coeffRef(0);} + + /** + * @brief Access the x-coordinate the pose (read-only) + * @return const reference to the x-coordinate + */ + const double& x() const {return _position.coeffRef(0);} + + /** + * @brief Access the y-coordinate the pose + * @return reference to the y-coordinate + */ + double& y() {return _position.coeffRef(1);} + + /** + * @brief Access the y-coordinate the pose (read-only) + * @return const reference to the y-coordinate + */ + const double& y() const {return _position.coeffRef(1);} + + /** + * @brief Access the orientation part (yaw angle) of the pose + * @return reference to the yaw angle + */ + double& theta() {return _theta;} + + /** + * @brief Access the orientation part (yaw angle) of the pose (read-only) + * @return const reference to the yaw angle + */ + const double& theta() const {return _theta;} + + /** + * @brief Set pose to [0,0,0] + */ + void setZero() + { + _position.setZero(); + _theta = 0; + } + + /** + * @brief Convert PoseSE2 to a geometry_msgs::msg::Pose + * @param[out] pose Pose message + */ + void toPoseMsg(geometry_msgs::msg::Pose& pose) const + { + pose.position.x = _position.x(); + pose.position.y = _position.y(); + pose.position.z = 0; + tf2::Quaternion q; + q.setRPY(0, 0, _theta); + pose.orientation = tf2::toMsg(q); + } + + /** + * @brief Convert PoseSE2 to a geometry_msgs::msg::Pose2D + * @param[out] pose Pose message + */ + void toPoseMsg(geometry_msgs::msg::Pose2D& pose) const + { + pose.x = _position.x(); + pose.y = _position.y(); + pose.theta = _theta; + } + + /** + * @brief Return the unit vector of the current orientation + * @returns [cos(theta), sin(theta))]^T + */ + Eigen::Vector2d orientationUnitVec() const {return Eigen::Vector2d(std::cos(_theta), std::sin(_theta));} + + ///@} + + + /** @name Arithmetic operations for which operators are not always reasonable */ + ///@{ + + /** + * @brief Scale all SE2 components (x,y,theta) and normalize theta afterwards to [-pi, pi] + * @param factor scale factor + */ + void scale(double factor) + { + _position *= factor; + _theta = g2o::normalize_theta( _theta*factor ); + } + + /** + * @brief Increment the pose by adding a double[3] array + * The angle is normalized afterwards + * @param pose_as_array 3D double array [x, y, theta] + */ + void plus(const double* pose_as_array) + { + _position.coeffRef(0) += pose_as_array[0]; + _position.coeffRef(1) += pose_as_array[1]; + _theta = g2o::normalize_theta( _theta + pose_as_array[2] ); + } + + /** + * @brief Get the mean / average of two poses and store it in the caller class + * For the position part: 0.5*(x1+x2) + * For the angle: take the angle of the mean direction vector + * @param pose1 first pose to consider + * @param pose2 second pose to consider + */ + void averageInPlace(const PoseSE2& pose1, const PoseSE2& pose2) + { + _position = (pose1._position + pose2._position)/2; + _theta = g2o::average_angle(pose1._theta, pose2._theta); + } + + /** + * @brief Get the mean / average of two poses and return the result (static) + * For the position part: 0.5*(x1+x2) + * For the angle: take the angle of the mean direction vector + * @param pose1 first pose to consider + * @param pose2 second pose to consider + * @return mean / average of \c pose1 and \c pose2 + */ + static PoseSE2 average(const PoseSE2& pose1, const PoseSE2& pose2) + { + return PoseSE2( (pose1._position + pose2._position)/2 , g2o::average_angle(pose1._theta, pose2._theta) ); + } + + /** + * @brief Rotate pose globally + * + * Compute [pose_x, pose_y] = Rot(\c angle) * [pose_x, pose_y]. + * if \c adjust_theta, pose_theta is also rotated by \c angle + * @param angle the angle defining the 2d rotation + * @param adjust_theta if \c true, the orientation theta is also rotated + */ + void rotateGlobal(double angle, bool adjust_theta=true) + { + double new_x = std::cos(angle)*_position.x() - std::sin(angle)*_position.y(); + double new_y = std::sin(angle)*_position.x() + std::cos(angle)*_position.y(); + _position.x() = new_x; + _position.y() = new_y; + if (adjust_theta) + _theta = g2o::normalize_theta(_theta+angle); + } + + ///@} + + + /** @name Operator overloads / Allow some arithmetic operations */ + ///@{ + + /** + * @brief Asignment operator + * @param rhs PoseSE2 instance + * @todo exception safe version of the assignment operator + */ + PoseSE2& operator=( const PoseSE2& rhs ) + { + if (&rhs != this) + { + _position = rhs._position; + _theta = rhs._theta; + } + return *this; + } + + /** + * @brief Compound assignment operator (addition) + * @param rhs addend + */ + PoseSE2& operator+=(const PoseSE2& rhs) + { + _position += rhs._position; + _theta = g2o::normalize_theta(_theta + rhs._theta); + return *this; + } + + /** + * @brief Arithmetic operator overload for additions + * @param lhs First addend + * @param rhs Second addend + */ + friend PoseSE2 operator+(PoseSE2 lhs, const PoseSE2& rhs) + { + return lhs += rhs; + } + + /** + * @brief Compound assignment operator (subtraction) + * @param rhs value to subtract + */ + PoseSE2& operator-=(const PoseSE2& rhs) + { + _position -= rhs._position; + _theta = g2o::normalize_theta(_theta - rhs._theta); + return *this; + } + + /** + * @brief Arithmetic operator overload for subtractions + * @param lhs First term + * @param rhs Second term + */ + friend PoseSE2 operator-(PoseSE2 lhs, const PoseSE2& rhs) + { + return lhs -= rhs; + } + + /** + * @brief Multiply pose with scalar and return copy without normalizing theta + * This operator is useful for calculating velocities ... + * @param pose pose to scale + * @param scalar factor to multiply with + * @warning theta is not normalized after multiplying + */ + friend PoseSE2 operator*(PoseSE2 pose, double scalar) + { + pose._position *= scalar; + pose._theta *= scalar; + return pose; + } + + /** + * @brief Multiply pose with scalar and return copy without normalizing theta + * This operator is useful for calculating velocities ... + * @param scalar factor to multiply with + * @param pose pose to scale + * @warning theta is not normalized after multiplying + */ + friend PoseSE2 operator*(double scalar, PoseSE2 pose) + { + pose._position *= scalar; + pose._theta *= scalar; + return pose; + } + + /** + * @brief Output stream operator + * @param stream output stream + * @param pose to be used + */ + friend std::ostream& operator<< (std::ostream& stream, const PoseSE2& pose) + { + stream << "x: " << pose._position[0] << " y: " << pose._position[1] << " theta: " << pose._theta; + return stream; + } + + ///@} + + +private: + + Eigen::Vector2d _position; + double _theta; + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + +} // namespace teb_local_planner + +#endif // POSE_SE2_H_ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/recovery_behaviors.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/recovery_behaviors.h new file mode 100644 index 0000000..2e7607d --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/recovery_behaviors.h @@ -0,0 +1,134 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef RECOVERY_BEHAVIORS_H__ +#define RECOVERY_BEHAVIORS_H__ + + +#include +#include +#include + +namespace teb_local_planner +{ + + +/** + * @class FailureDetector + * @brief This class implements methods in order to detect if the robot got stucked or is oscillating + * + * The StuckDetector analyzes the last N commanded velocities in order to detect whether the robot + * might got stucked or oscillates between left/right/forward/backwards motions. + */ +class FailureDetector +{ +public: + + /** + * @brief Default constructor + */ + FailureDetector() {} + + /** + * @brief destructor. + */ + ~FailureDetector() {} + + /** + * @brief Set buffer length (measurement history) + * @param length number of measurements to be kept + */ + void setBufferLength(int length) {buffer_.set_capacity(length);} + + /** + * @brief Add a new twist measurement to the internal buffer and compute a new decision + * @param twist geometry_msgs::msg::Twist velocity information + * @param v_max maximum forward translational velocity + * @param v_backwards_max maximum backward translational velocity + * @param omega_max maximum angular velocity + * @param v_eps Threshold for the average normalized linear velocity in (0,1) that must not be exceded (e.g. 0.1) + * @param omega_eps Threshold for the average normalized angular velocity in (0,1) that must not be exceded (e.g. 0.1) + */ + void update(const geometry_msgs::msg::Twist& twist, double v_max, double v_backwards_max, double omega_max, double v_eps, double omega_eps); + + /** + * @brief Check if the robot got stucked + * + * This call does not compute the actual decision, + * since it is computed within each update() invocation. + * @return true if the robot got stucked, false otherwise. + */ + bool isOscillating() const; + + /** + * @brief Clear the current internal state + * + * This call also resets the internal buffer + */ + void clear(); + +protected: + + /** Variables to be monitored */ + struct VelMeasurement + { + double v = 0; + double omega = 0; + }; + + /** + * @brief Detect if the robot got stucked based on the current buffer content + * + * Afterwards the status might be checked using gotStucked(); + * @param v_eps Threshold for the average normalized linear velocity in (0,1) that must not be exceded (e.g. 0.1) + * @param omega_eps Threshold for the average normalized angular velocity in (0,1) that must not be exceded (e.g. 0.1) + * @return true if the robot got stucked, false otherwise + */ + bool detect(double v_eps, double omega_eps); + +private: + + boost::circular_buffer buffer_; //!< Circular buffer to store the last measurements @see setBufferLength + bool oscillating_ = false; //!< Current state: true if robot is oscillating + +}; + + +} // namespace teb_local_planner + +#endif /* RECOVERY_BEHAVIORS_H__ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/robot_footprint_model.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/robot_footprint_model.h new file mode 100644 index 0000000..65200f2 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/robot_footprint_model.h @@ -0,0 +1,684 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + + +#ifndef ROBOT_FOOTPRINT_MODEL_H +#define ROBOT_FOOTPRINT_MODEL_H + +#include "teb_local_planner/pose_se2.h" +#include "teb_local_planner/obstacles.h" +#include + +namespace teb_local_planner +{ + +/** + * @class BaseRobotFootprintModel + * @brief Abstract class that defines the interface for robot footprint/contour models + * + * The robot model class is currently used in optimization only, since + * taking the navigation stack footprint into account might be + * inefficient. The footprint is only used for checking feasibility. + */ +class BaseRobotFootprintModel +{ +public: + + /** + * @brief Default constructor of the abstract obstacle class + */ + BaseRobotFootprintModel() + { + } + + /** + * @brief Virtual destructor. + */ + virtual ~BaseRobotFootprintModel() + { + } + + + /** + * @brief Calculate the distance between the robot and an obstacle + * @param current_pose Current robot pose + * @param obstacle Pointer to the obstacle + * @return Euclidean distance to the robot + */ + virtual double calculateDistance(const PoseSE2& current_pose, const Obstacle* obstacle) const = 0; + + /** + * @brief Estimate the distance between the robot and the predicted location of an obstacle at time t + * @param current_pose robot pose, from which the distance to the obstacle is estimated + * @param obstacle Pointer to the dynamic obstacle (constant velocity model is assumed) + * @param t time, for which the predicted distance to the obstacle is calculated + * @return Euclidean distance to the robot + */ + virtual double estimateSpatioTemporalDistance(const PoseSE2& current_pose, const Obstacle* obstacle, double t) const = 0; + + /** + * @brief Visualize the robot using a markers + * + * Fill a marker message with all necessary information (type, pose, scale and color). + * The header, namespace, id and marker lifetime will be overwritten. + * @param current_pose Current robot pose + * @param[out] markers container of marker messages describing the robot shape + * @param color Color of the footprint + */ + virtual void visualizeRobot(const PoseSE2& current_pose, std::vector& markers, const std_msgs::msg::ColorRGBA& color) const {} + + + /** + * @brief Compute the inscribed radius of the footprint model + * @return inscribed radius + */ + virtual double getInscribedRadius() = 0; + + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + + +//! Abbrev. for shared obstacle pointers +typedef std::shared_ptr RobotFootprintModelPtr; +//! Abbrev. for shared obstacle const pointers +typedef std::shared_ptr RobotFootprintModelConstPtr; + + + +/** + * @class PointRobotShape + * @brief Class that defines a point-robot + * + * Instead of using a CircularRobotFootprint this class might + * be utitilzed and the robot radius can be added to the mininum distance + * parameter. This avoids a subtraction of zero each time a distance is calculated. + */ +class PointRobotFootprint : public BaseRobotFootprintModel +{ +public: + + /** + * @brief Default constructor of the abstract obstacle class + */ + PointRobotFootprint() {} + + /** + * @brief Virtual destructor. + */ + virtual ~PointRobotFootprint() {} + + /** + * @brief Calculate the distance between the robot and an obstacle + * @param current_pose Current robot pose + * @param obstacle Pointer to the obstacle + * @return Euclidean distance to the robot + */ + virtual double calculateDistance(const PoseSE2& current_pose, const Obstacle* obstacle) const + { + return obstacle->getMinimumDistance(current_pose.position()); + } + + /** + * @brief Estimate the distance between the robot and the predicted location of an obstacle at time t + * @param current_pose robot pose, from which the distance to the obstacle is estimated + * @param obstacle Pointer to the dynamic obstacle (constant velocity model is assumed) + * @param t time, for which the predicted distance to the obstacle is calculated + * @return Euclidean distance to the robot + */ + virtual double estimateSpatioTemporalDistance(const PoseSE2& current_pose, const Obstacle* obstacle, double t) const + { + return obstacle->getMinimumSpatioTemporalDistance(current_pose.position(), t); + } + + /** + * @brief Compute the inscribed radius of the footprint model + * @return inscribed radius + */ + virtual double getInscribedRadius() {return 0.0;} + +}; + + +/** + * @class CircularRobotFootprint + * @brief Class that defines the a robot of circular shape + */ +class CircularRobotFootprint : public BaseRobotFootprintModel +{ +public: + + /** + * @brief Default constructor of the abstract obstacle class + * @param radius radius of the robot + */ + CircularRobotFootprint(double radius) : radius_(radius) { } + + /** + * @brief Virtual destructor. + */ + virtual ~CircularRobotFootprint() { } + + /** + * @brief Set radius of the circular robot + * @param radius radius of the robot + */ + void setRadius(double radius) {radius_ = radius;} + + /** + * @brief Calculate the distance between the robot and an obstacle + * @param current_pose Current robot pose + * @param obstacle Pointer to the obstacle + * @return Euclidean distance to the robot + */ + virtual double calculateDistance(const PoseSE2& current_pose, const Obstacle* obstacle) const + { + return obstacle->getMinimumDistance(current_pose.position()) - radius_; + } + + /** + * @brief Estimate the distance between the robot and the predicted location of an obstacle at time t + * @param current_pose robot pose, from which the distance to the obstacle is estimated + * @param obstacle Pointer to the dynamic obstacle (constant velocity model is assumed) + * @param t time, for which the predicted distance to the obstacle is calculated + * @return Euclidean distance to the robot + */ + virtual double estimateSpatioTemporalDistance(const PoseSE2& current_pose, const Obstacle* obstacle, double t) const + { + return obstacle->getMinimumSpatioTemporalDistance(current_pose.position(), t) - radius_; + } + + /** + * @brief Visualize the robot using a markers + * + * Fill a marker message with all necessary information (type, pose, scale and color). + * The header, namespace, id and marker lifetime will be overwritten. + * @param current_pose Current robot pose + * @param[out] markers container of marker messages describing the robot shape + * @param color Color of the footprint + */ + virtual void visualizeRobot(const PoseSE2& current_pose, std::vector& markers, const std_msgs::msg::ColorRGBA& color) const + { + markers.resize(1); + visualization_msgs::msg::Marker& marker = markers.back(); + marker.type = visualization_msgs::msg::Marker::CYLINDER; + current_pose.toPoseMsg(marker.pose); + marker.scale.x = marker.scale.y = 2*radius_; // scale = diameter + marker.scale.z = 0.05; + marker.color = color; + } + + /** + * @brief Compute the inscribed radius of the footprint model + * @return inscribed radius + */ + virtual double getInscribedRadius() {return radius_;} + +private: + + double radius_; +}; + + +/** + * @class TwoCirclesRobotFootprint + * @brief Class that approximates the robot with two shifted circles + */ +class TwoCirclesRobotFootprint : public BaseRobotFootprintModel +{ +public: + + /** + * @brief Default constructor of the abstract obstacle class + * @param front_offset shift the center of the front circle along the robot orientation starting from the center at the rear axis (in meters) + * @param front_radius radius of the front circle + * @param rear_offset shift the center of the rear circle along the opposite robot orientation starting from the center at the rear axis (in meters) + * @param rear_radius radius of the front circle + */ + TwoCirclesRobotFootprint(double front_offset, double front_radius, double rear_offset, double rear_radius) + : front_offset_(front_offset), front_radius_(front_radius), rear_offset_(rear_offset), rear_radius_(rear_radius) { } + + /** + * @brief Virtual destructor. + */ + virtual ~TwoCirclesRobotFootprint() { } + + /** + * @brief Set parameters of the contour/footprint + * @param front_offset shift the center of the front circle along the robot orientation starting from the center at the rear axis (in meters) + * @param front_radius radius of the front circle + * @param rear_offset shift the center of the rear circle along the opposite robot orientation starting from the center at the rear axis (in meters) + * @param rear_radius radius of the front circle + */ + void setParameters(double front_offset, double front_radius, double rear_offset, double rear_radius) + {front_offset_=front_offset; front_radius_=front_radius; rear_offset_=rear_offset; rear_radius_=rear_radius;} + + /** + * @brief Calculate the distance between the robot and an obstacle + * @param current_pose Current robot pose + * @param obstacle Pointer to the obstacle + * @return Euclidean distance to the robot + */ + virtual double calculateDistance(const PoseSE2& current_pose, const Obstacle* obstacle) const + { + Eigen::Vector2d dir = current_pose.orientationUnitVec(); + double dist_front = obstacle->getMinimumDistance(current_pose.position() + front_offset_*dir) - front_radius_; + double dist_rear = obstacle->getMinimumDistance(current_pose.position() - rear_offset_*dir) - rear_radius_; + return std::min(dist_front, dist_rear); + } + + /** + * @brief Estimate the distance between the robot and the predicted location of an obstacle at time t + * @param current_pose robot pose, from which the distance to the obstacle is estimated + * @param obstacle Pointer to the dynamic obstacle (constant velocity model is assumed) + * @param t time, for which the predicted distance to the obstacle is calculated + * @return Euclidean distance to the robot + */ + virtual double estimateSpatioTemporalDistance(const PoseSE2& current_pose, const Obstacle* obstacle, double t) const + { + Eigen::Vector2d dir = current_pose.orientationUnitVec(); + double dist_front = obstacle->getMinimumSpatioTemporalDistance(current_pose.position() + front_offset_*dir, t) - front_radius_; + double dist_rear = obstacle->getMinimumSpatioTemporalDistance(current_pose.position() - rear_offset_*dir, t) - rear_radius_; + return std::min(dist_front, dist_rear); + } + + /** + * @brief Visualize the robot using a markers + * + * Fill a marker message with all necessary information (type, pose, scale and color). + * The header, namespace, id and marker lifetime will be overwritten. + * @param current_pose Current robot pose + * @param[out] markers container of marker messages describing the robot shape + * @param color Color of the footprint + */ + virtual void visualizeRobot(const PoseSE2& current_pose, std::vector& markers, const std_msgs::msg::ColorRGBA& color) const + { + Eigen::Vector2d dir = current_pose.orientationUnitVec(); + if (front_radius_>0) + { + markers.push_back(visualization_msgs::msg::Marker()); + visualization_msgs::msg::Marker& marker1 = markers.front(); + marker1.type = visualization_msgs::msg::Marker::CYLINDER; + current_pose.toPoseMsg(marker1.pose); + marker1.pose.position.x += front_offset_*dir.x(); + marker1.pose.position.y += front_offset_*dir.y(); + marker1.scale.x = marker1.scale.y = 2*front_radius_; // scale = diameter +// marker1.scale.z = 0.05; + marker1.color = color; + + } + if (rear_radius_>0) + { + markers.push_back(visualization_msgs::msg::Marker()); + visualization_msgs::msg::Marker& marker2 = markers.back(); + marker2.type = visualization_msgs::msg::Marker::CYLINDER; + current_pose.toPoseMsg(marker2.pose); + marker2.pose.position.x -= rear_offset_*dir.x(); + marker2.pose.position.y -= rear_offset_*dir.y(); + marker2.scale.x = marker2.scale.y = 2*rear_radius_; // scale = diameter +// marker2.scale.z = 0.05; + marker2.color = color; + } + } + + /** + * @brief Compute the inscribed radius of the footprint model + * @return inscribed radius + */ + virtual double getInscribedRadius() + { + double min_longitudinal = std::min(rear_offset_ + rear_radius_, front_offset_ + front_radius_); + double min_lateral = std::min(rear_radius_, front_radius_); + return std::min(min_longitudinal, min_lateral); + } + +private: + + double front_offset_; + double front_radius_; + double rear_offset_; + double rear_radius_; + +}; + + + +/** + * @class LineRobotFootprint + * @brief Class that approximates the robot with line segment (zero-width) + */ +class LineRobotFootprint : public BaseRobotFootprintModel +{ +public: + + /** + * @brief Default constructor of the abstract obstacle class + * @param line_start start coordinates (only x and y) of the line (w.r.t. robot center at (0,0)) + * @param line_end end coordinates (only x and y) of the line (w.r.t. robot center at (0,0)) + */ + LineRobotFootprint(const geometry_msgs::msg::Point& line_start, const geometry_msgs::msg::Point& line_end) + { + setLine(line_start, line_end); + } + + /** + * @brief Default constructor of the abstract obstacle class (Eigen Version) + * @param line_start start coordinates (only x and y) of the line (w.r.t. robot center at (0,0)) + * @param line_end end coordinates (only x and y) of the line (w.r.t. robot center at (0,0)) + */ + LineRobotFootprint(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) + { + setLine(line_start, line_end); + } + + /** + * @brief Virtual destructor. + */ + virtual ~LineRobotFootprint() { } + + /** + * @brief Set vertices of the contour/footprint + * @param vertices footprint vertices (only x and y) around the robot center (0,0) (do not repeat the first and last vertex at the end) + */ + void setLine(const geometry_msgs::msg::Point& line_start, const geometry_msgs::msg::Point& line_end) + { + line_start_.x() = line_start.x; + line_start_.y() = line_start.y; + line_end_.x() = line_end.x; + line_end_.y() = line_end.y; + } + + /** + * @brief Set vertices of the contour/footprint (Eigen version) + * @param vertices footprint vertices (only x and y) around the robot center (0,0) (do not repeat the first and last vertex at the end) + */ + void setLine(const Eigen::Vector2d& line_start, const Eigen::Vector2d& line_end) + { + line_start_ = line_start; + line_end_ = line_end; + } + + /** + * @brief Calculate the distance between the robot and an obstacle + * @param current_pose Current robot pose + * @param obstacle Pointer to the obstacle + * @return Euclidean distance to the robot + */ + virtual double calculateDistance(const PoseSE2& current_pose, const Obstacle* obstacle) const + { + Eigen::Vector2d line_start_world; + Eigen::Vector2d line_end_world; + transformToWorld(current_pose, line_start_world, line_end_world); + return obstacle->getMinimumDistance(line_start_world, line_end_world); + } + + /** + * @brief Estimate the distance between the robot and the predicted location of an obstacle at time t + * @param current_pose robot pose, from which the distance to the obstacle is estimated + * @param obstacle Pointer to the dynamic obstacle (constant velocity model is assumed) + * @param t time, for which the predicted distance to the obstacle is calculated + * @return Euclidean distance to the robot + */ + virtual double estimateSpatioTemporalDistance(const PoseSE2& current_pose, const Obstacle* obstacle, double t) const + { + Eigen::Vector2d line_start_world; + Eigen::Vector2d line_end_world; + transformToWorld(current_pose, line_start_world, line_end_world); + return obstacle->getMinimumSpatioTemporalDistance(line_start_world, line_end_world, t); + } + + /** + * @brief Visualize the robot using a markers + * + * Fill a marker message with all necessary information (type, pose, scale and color). + * The header, namespace, id and marker lifetime will be overwritten. + * @param current_pose Current robot pose + * @param[out] markers container of marker messages describing the robot shape + * @param color Color of the footprint + */ + virtual void visualizeRobot(const PoseSE2& current_pose, std::vector& markers, const std_msgs::msg::ColorRGBA& color) const + { + markers.push_back(visualization_msgs::msg::Marker()); + visualization_msgs::msg::Marker& marker = markers.front(); + marker.type = visualization_msgs::msg::Marker::LINE_STRIP; + current_pose.toPoseMsg(marker.pose); // all points are transformed into the robot frame! + + // line + geometry_msgs::msg::Point line_start_world; + line_start_world.x = line_start_.x(); + line_start_world.y = line_start_.y(); + line_start_world.z = 0; + marker.points.push_back(line_start_world); + + geometry_msgs::msg::Point line_end_world; + line_end_world.x = line_end_.x(); + line_end_world.y = line_end_.y(); + line_end_world.z = 0; + marker.points.push_back(line_end_world); + + marker.scale.x = 0.05; + marker.color = color; + } + + /** + * @brief Compute the inscribed radius of the footprint model + * @return inscribed radius + */ + virtual double getInscribedRadius() + { + return 0.0; // lateral distance = 0.0 + } + +private: + + /** + * @brief Transforms a line to the world frame manually + * @param current_pose Current robot pose + * @param[out] line_start line_start_ in the world frame + * @param[out] line_end line_end_ in the world frame + */ + void transformToWorld(const PoseSE2& current_pose, Eigen::Vector2d& line_start_world, Eigen::Vector2d& line_end_world) const + { + double cos_th = std::cos(current_pose.theta()); + double sin_th = std::sin(current_pose.theta()); + line_start_world.x() = current_pose.x() + cos_th * line_start_.x() - sin_th * line_start_.y(); + line_start_world.y() = current_pose.y() + sin_th * line_start_.x() + cos_th * line_start_.y(); + line_end_world.x() = current_pose.x() + cos_th * line_end_.x() - sin_th * line_end_.y(); + line_end_world.y() = current_pose.y() + sin_th * line_end_.x() + cos_th * line_end_.y(); + } + + Eigen::Vector2d line_start_; + Eigen::Vector2d line_end_; + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW + +}; + + + +/** + * @class PolygonRobotFootprint + * @brief Class that approximates the robot with a closed polygon + */ +class PolygonRobotFootprint : public BaseRobotFootprintModel +{ +public: + + + + /** + * @brief Default constructor of the abstract obstacle class + * @param vertices footprint vertices (only x and y) around the robot center (0,0) (do not repeat the first and last vertex at the end) + */ + PolygonRobotFootprint(const Point2dContainer& vertices) : vertices_(vertices) { } + + /** + * @brief Virtual destructor. + */ + virtual ~PolygonRobotFootprint() { } + + /** + * @brief Set vertices of the contour/footprint + * @param vertices footprint vertices (only x and y) around the robot center (0,0) (do not repeat the first and last vertex at the end) + */ + void setVertices(const Point2dContainer& vertices) {vertices_ = vertices;} + + /** + * @brief Calculate the distance between the robot and an obstacle + * @param current_pose Current robot pose + * @param obstacle Pointer to the obstacle + * @return Euclidean distance to the robot + */ + virtual double calculateDistance(const PoseSE2& current_pose, const Obstacle* obstacle) const + { + Point2dContainer polygon_world(vertices_.size()); + transformToWorld(current_pose, polygon_world); + return obstacle->getMinimumDistance(polygon_world); + } + + /** + * @brief Estimate the distance between the robot and the predicted location of an obstacle at time t + * @param current_pose robot pose, from which the distance to the obstacle is estimated + * @param obstacle Pointer to the dynamic obstacle (constant velocity model is assumed) + * @param t time, for which the predicted distance to the obstacle is calculated + * @return Euclidean distance to the robot + */ + virtual double estimateSpatioTemporalDistance(const PoseSE2& current_pose, const Obstacle* obstacle, double t) const + { + Point2dContainer polygon_world(vertices_.size()); + transformToWorld(current_pose, polygon_world); + return obstacle->getMinimumSpatioTemporalDistance(polygon_world, t); + } + + /** + * @brief Visualize the robot using a markers + * + * Fill a marker message with all necessary information (type, pose, scale and color). + * The header, namespace, id and marker lifetime will be overwritten. + * @param current_pose Current robot pose + * @param[out] markers container of marker messages describing the robot shape + * @param color Color of the footprint + */ + virtual void visualizeRobot(const PoseSE2& current_pose, std::vector& markers, const std_msgs::msg::ColorRGBA& color) const + { + if (vertices_.empty()) + return; + + markers.push_back(visualization_msgs::msg::Marker()); + visualization_msgs::msg::Marker& marker = markers.front(); + marker.type = visualization_msgs::msg::Marker::LINE_STRIP; + current_pose.toPoseMsg(marker.pose); // all points are transformed into the robot frame! + + for (std::size_t i = 0; i < vertices_.size(); ++i) + { + geometry_msgs::msg::Point point; + point.x = vertices_[i].x(); + point.y = vertices_[i].y(); + point.z = 0; + marker.points.push_back(point); + } + // add first point again in order to close the polygon + geometry_msgs::msg::Point point; + point.x = vertices_.front().x(); + point.y = vertices_.front().y(); + point.z = 0; + marker.points.push_back(point); + + marker.scale.x = 0.025; + marker.color = color; + + } + + /** + * @brief Compute the inscribed radius of the footprint model + * @return inscribed radius + */ + virtual double getInscribedRadius() + { + double min_dist = std::numeric_limits::max(); + Eigen::Vector2d center(0.0, 0.0); + + if (vertices_.size() <= 2) + return 0.0; + + for (int i = 0; i < (int)vertices_.size() - 1; ++i) + { + // compute distance from the robot center point to the first vertex + double vertex_dist = vertices_[i].norm(); + double edge_dist = distance_point_to_segment_2d(center, vertices_[i], vertices_[i+1]); + min_dist = std::min(min_dist, std::min(vertex_dist, edge_dist)); + } + + // we also need to check the last vertex and the first vertex + double vertex_dist = vertices_.back().norm(); + double edge_dist = distance_point_to_segment_2d(center, vertices_.back(), vertices_.front()); + return std::min(min_dist, std::min(vertex_dist, edge_dist)); + } + +private: + + /** + * @brief Transforms a polygon to the world frame manually + * @param current_pose Current robot pose + * @param[out] polygon_world polygon in the world frame + */ + void transformToWorld(const PoseSE2& current_pose, Point2dContainer& polygon_world) const + { + double cos_th = std::cos(current_pose.theta()); + double sin_th = std::sin(current_pose.theta()); + for (std::size_t i=0; i +#include +#include +#include +#include +#include +#include "teb_local_planner/robot_footprint_model.h" +#include + +// Definitions +#define USE_ANALYTIC_JACOBI // if available for a specific edge, use analytic jacobi + +namespace teb_local_planner +{ +/** + * @class TebConfig + * @brief Config class for the teb_local_planner and its components. + */ +class TebConfig +{ +public: + using UniquePtr = std::unique_ptr; + + std::string odom_topic; //!< Topic name of the odometry message, provided by the robot driver or simulator + std::string map_frame; //!< Global planning frame + std::string node_name; //!< node name used for parameter event callback + + RobotFootprintModelPtr robot_model; + std::string model_name; + double radius; + std::vector line_start, line_end; + double front_offset, front_radius, rear_offset, rear_radius; + std::string footprint_string; + + //! Trajectory related parameters + struct Trajectory + { + double teb_autosize; //!< Enable automatic resizing of the trajectory w.r.t to the temporal resolution (recommended) + double dt_ref; //!< Desired temporal resolution of the trajectory (should be in the magniture of the underlying control rate) + double dt_hysteresis; //!< Hysteresis for automatic resizing depending on the current temporal resolution (dt): usually 10% of dt_ref + int min_samples; //!< Minimum number of samples (should be always greater than 2) + int max_samples; //!< Maximum number of samples; Warning: if too small the discretization/resolution might not be sufficient for the given robot model or obstacle avoidance does not work anymore. + bool global_plan_overwrite_orientation; //!< Overwrite orientation of local subgoals provided by the global planner + bool allow_init_with_backwards_motion; //!< If true, the underlying trajectories might be initialized with backwards motions in case the goal is behind the start within the local costmap (this is only recommended if the robot is equipped with rear sensors) + double global_plan_viapoint_sep; //!< Min. separation between each two consecutive via-points extracted from the global plan (if negative: disabled) + bool via_points_ordered; //!< If true, the planner adheres to the order of via-points in the storage container + double max_global_plan_lookahead_dist; //!< Specify maximum length (cumulative Euclidean distances) of the subset of the global plan taken into account for optimization [if <=0: disabled; the length is also bounded by the local costmap size!] + double global_plan_prune_distance; //!< Distance between robot and via_points of global plan which is used for pruning + bool exact_arc_length; //!< If true, the planner uses the exact arc length in velocity, acceleration and turning rate computations [-> increased cpu time], otherwise the euclidean approximation is used. + double force_reinit_new_goal_dist; //!< Reinitialize the trajectory if a previous goal is updated with a seperation of more than the specified value in meters (skip hot-starting) + double force_reinit_new_goal_angular; //!< Reinitialize the trajectory if a previous goal is updated with an angular difference of more than the specified value in radians (skip hot-starting) + int feasibility_check_no_poses; //!< Specify up to which pose (under the feasibility_check_lookahead_distance) on the predicted plan the feasibility should be checked each sampling interval; if -1, all poses up to feasibility_check_lookahead_distance are checked. + double feasibility_check_lookahead_distance; //!< Specify up to which distance (and with an index below feasibility_check_no_poses) from the robot the feasibility should be checked each sampling interval; if -1, all poses up to feasibility_check_no_poses are checked. + bool publish_feedback; //!< Publish planner feedback containing the full trajectory and a list of active obstacles (should be enabled only for evaluation or debugging purposes) + double min_resolution_collision_check_angular; //! Min angular resolution used during the costmap collision check. If not respected, intermediate samples are added. [rad] + int control_look_ahead_poses; //! Index of the pose used to extract the velocity command + } trajectory; //!< Trajectory related parameters + + //! Robot related parameters + struct Robot + { + double base_max_vel_x; //!< Maximum translational velocity of the robot before speed limit is applied + double base_max_vel_x_backwards; //!< Maximum translational velocity of the robot for driving backwards before speed limit is applied + double base_max_vel_y; //!< Maximum strafing velocity of the robot (should be zero for non-holonomic robots!) before speed limit is applied + double base_max_vel_theta; //!< Maximum angular velocity of the robot before speed limit is applied + double max_vel_x; //!< Maximum translational velocity of the robot + double max_vel_x_backwards; //!< Maximum translational velocity of the robot for driving backwards + double max_vel_y; //!< Maximum strafing velocity of the robot (should be zero for non-holonomic robots!) + double max_vel_theta; //!< Maximum angular velocity of the robot + double acc_lim_x; //!< Maximum translational acceleration of the robot + double acc_lim_y; //!< Maximum strafing acceleration of the robot + double acc_lim_theta; //!< Maximum angular acceleration of the robot + double min_turning_radius; //!< Minimum turning radius of a carlike robot (diff-drive robot: zero); + double wheelbase; //!< The distance between the drive shaft and steering axle (only required for a carlike robot with 'cmd_angle_instead_rotvel' enabled); The value might be negative for back-wheeled robots! + bool cmd_angle_instead_rotvel; //!< Substitute the rotational velocity in the commanded velocity message by the corresponding steering angle (check 'axles_distance') + bool is_footprint_dynamic; // currently only activated if an oscillation is detected, see 'oscillation_recovery' + + double weight_adapt_factor; //!< Some special weights (currently 'weight_obstacle') are repeatedly scaled by this factor in each outer TEB iteration (weight_new = weight_old*factor); Increasing weights iteratively instead of setting a huge value a-priori leads to better numerical conditions of the underlying optimization problem. + double obstacle_cost_exponent; //!< Exponent for nonlinear obstacle cost (cost = linear_cost * obstacle_cost_exponent). Set to 1 to disable nonlinear cost (default) + } optim; //!< Optimization related parameters + + + struct HomotopyClasses + { + bool enable_homotopy_class_planning; //!< Activate homotopy class planning (Requires much more resources that simple planning, since multiple trajectories are optimized at once). + bool enable_multithreading; //!< Activate multiple threading for planning multiple trajectories in parallel. + bool simple_exploration; //!< If true, distinctive trajectories are explored using a simple left-right approach (pass each obstacle on the left or right side) for path generation, otherwise sample possible roadmaps randomly in a specified region between start and goal. + int max_number_classes; //!< Specify the maximum number of allowed alternative homotopy classes (limits computational effort) + int max_number_plans_in_current_class; //!< Specify the maximum number of trajectories to try that are in the same homotopy class as the current trajectory (helps avoid local minima) + double selection_cost_hysteresis; //!< Specify how much trajectory cost must a new candidate have w.r.t. a previously selected trajectory in order to be selected (selection if new_cost < old_cost*factor). + double selection_prefer_initial_plan; //!< Specify a cost reduction in the interval (0,1) for the trajectory in the equivalence class of the initial plan. + double selection_obst_cost_scale; //!< Extra scaling of obstacle cost terms just for selecting the 'best' candidate. + double selection_viapoint_cost_scale; //!< Extra scaling of via-point cost terms just for selecting the 'best' candidate. + bool selection_alternative_time_cost; //!< If true, time cost is replaced by the total transition time. + double selection_dropping_probability; //!< At each planning cycle, TEBs other than the current 'best' one will be randomly dropped with this probability. Prevents becoming 'fixated' on sub-optimal alternative homotopies. + double switching_blocking_period; //!< Specify a time duration in seconds that needs to be expired before a switch to new equivalence class is allowed + + int roadmap_graph_no_samples; //! < Specify the number of samples generated for creating the roadmap graph, if simple_exploration is turend off. + double roadmap_graph_area_width; //!< Random keypoints/waypoints are sampled in a rectangular region between start and goal. Specify the width of that region in meters. + double roadmap_graph_area_length_scale; //!< The length of the rectangular region is determined by the distance between start and goal. This parameter further scales the distance such that the geometric center remains equal! + double h_signature_prescaler; //!< Scale number of obstacle value in order to allow huge number of obstacles. Do not choose it extremly low, otherwise obstacles cannot be distinguished from each other (0.2 this + } hcp; + + //! Recovery/backup related parameters + struct Recovery + { + bool shrink_horizon_backup; //!< Allows the planner to shrink the horizon temporary (50%) in case of automatically detected issues. + double shrink_horizon_min_duration; //!< Specify minimum duration for the reduced horizon in case an infeasible trajectory is detected. + bool oscillation_recovery; //!< Try to detect and resolve oscillations between multiple solutions in the same equivalence class (robot frequently switches between left/right/forward/backwards) + double oscillation_v_eps; //!< Threshold for the average normalized linear velocity: if oscillation_v_eps and oscillation_omega_eps are not exceeded both, a possible oscillation is detected + double oscillation_omega_eps; //!< Threshold for the average normalized angular velocity: if oscillation_v_eps and oscillation_omega_eps are not exceeded both, a possible oscillation is detected + double oscillation_recovery_min_duration; //!< Minumum duration [sec] for which the recovery mode is activated after an oscillation is detected. + double oscillation_filter_duration; //!< Filter length/duration [sec] for the detection of oscillations + bool divergence_detection_enable; //!< True to enable divergence detection. + int divergence_detection_max_chi_squared; //!< Maximum acceptable Mahalanobis distance above which it is assumed that the optimization diverged. + } recovery; //!< Parameters related to recovery and backup strategies + + + /** + * @brief Construct the TebConfig using default values. + * @warning If the \b rosparam server or/and \b dynamic_reconfigure (rqt_reconfigure) node are used, + * the default variables will be overwritten: \n + * E.g. if \e base_local_planner is utilized as plugin for the navigation stack, the initialize() method will register a + * dynamic_reconfigure server. A subset (not all but most) of the parameters are considered for dynamic modifications. + * All parameters considered by the dynamic_reconfigure server (and their \b default values) are + * set in \e PROJECT_SRC/cfg/TebLocalPlannerReconfigure.cfg. \n + * In addition the rosparam server can be queried to get parameters e.g. defiend in a launch file. + * The plugin source (or a possible binary source) can call loadRosParamFromNodeHandle() to update the parameters. + * In \e summary, default parameters are loaded in the following order (the right one overrides the left ones): \n + * TebConfig Constructor defaults << dynamic_reconfigure defaults << rosparam server defaults + */ + TebConfig() + { + + odom_topic = "odom"; + map_frame = "odom"; + + // Trajectory + + trajectory.teb_autosize = true; + trajectory.dt_ref = 0.3; + trajectory.dt_hysteresis = 0.1; + trajectory.min_samples = 3; + trajectory.max_samples = 500; + trajectory.global_plan_overwrite_orientation = true; + trajectory.allow_init_with_backwards_motion = false; + trajectory.global_plan_viapoint_sep = -1; + trajectory.via_points_ordered = false; + trajectory.max_global_plan_lookahead_dist = 1; + trajectory.global_plan_prune_distance = 1; + trajectory.exact_arc_length = false; + trajectory.force_reinit_new_goal_dist = 1; + trajectory.force_reinit_new_goal_angular = 0.5 * M_PI; + trajectory.feasibility_check_no_poses = 5; + trajectory.feasibility_check_lookahead_distance = -1; + trajectory.publish_feedback = false; + trajectory.min_resolution_collision_check_angular = M_PI; + trajectory.control_look_ahead_poses = 1; + + // Robot + + robot.max_vel_x = 0.4; + robot.max_vel_x_backwards = 0.2; + robot.max_vel_y = 0.0; + robot.max_vel_theta = 0.3; + robot.base_max_vel_x = robot.max_vel_x; + robot.base_max_vel_x_backwards = robot.base_max_vel_x_backwards; + robot.base_max_vel_y = robot.base_max_vel_y; + robot.base_max_vel_theta = robot.base_max_vel_theta; + robot.acc_lim_x = 0.5; + robot.acc_lim_y = 0.5; + robot.acc_lim_theta = 0.5; + robot.min_turning_radius = 0; + robot.wheelbase = 1.0; + robot.cmd_angle_instead_rotvel = false; + robot.is_footprint_dynamic = false; + robot.use_proportional_saturation = false; + + // GoalTolerance + + goal_tolerance.xy_goal_tolerance = 0.2; + goal_tolerance.free_goal_vel = false; + + // Obstacles + + obstacles.min_obstacle_dist = 0.5; + obstacles.inflation_dist = 0.6; + obstacles.dynamic_obstacle_inflation_dist = 0.6; + obstacles.include_dynamic_obstacles = true; + obstacles.include_costmap_obstacles = true; + obstacles.costmap_obstacles_behind_robot_dist = 1.5; + obstacles.obstacle_poses_affected = 25; + obstacles.legacy_obstacle_association = false; + obstacles.obstacle_association_force_inclusion_factor = 1.5; + obstacles.obstacle_association_cutoff_factor = 5; + obstacles.costmap_converter_plugin = ""; + obstacles.costmap_converter_spin_thread = true; + obstacles.costmap_converter_rate = 5; + obstacles.obstacle_proximity_ratio_max_vel = 1; + obstacles.obstacle_proximity_lower_bound = 0; + obstacles.obstacle_proximity_upper_bound = 0.5; + + // Optimization + + optim.no_inner_iterations = 5; + optim.no_outer_iterations = 4; + optim.optimization_activate = true; + optim.optimization_verbose = false; + optim.penalty_epsilon = 0.05; + optim.weight_max_vel_x = 2; //1 + optim.weight_max_vel_y = 2; + optim.weight_max_vel_theta = 1; + optim.weight_acc_lim_x = 1; + optim.weight_acc_lim_y = 1; + optim.weight_acc_lim_theta = 1; + optim.weight_kinematics_nh = 1000; + optim.weight_kinematics_forward_drive = 1; + optim.weight_kinematics_turning_radius = 1; + optim.weight_optimaltime = 1; + optim.weight_shortest_path = 0; + optim.weight_obstacle = 50; + optim.weight_inflation = 0.1; + optim.weight_dynamic_obstacle = 50; + optim.weight_dynamic_obstacle_inflation = 0.1; + optim.weight_velocity_obstacle_ratio = 0; + optim.weight_viapoint = 1; + optim.weight_prefer_rotdir = 50; + + optim.weight_adapt_factor = 2.0; + optim.obstacle_cost_exponent = 1.0; + + // Homotopy Class Planner + + hcp.enable_homotopy_class_planning = true; + hcp.enable_multithreading = true; + hcp.simple_exploration = false; + hcp.max_number_classes = 5; + hcp.selection_cost_hysteresis = 1.0; + hcp.selection_prefer_initial_plan = 0.95; + hcp.selection_obst_cost_scale = 100.0; + hcp.selection_viapoint_cost_scale = 1.0; + hcp.selection_alternative_time_cost = false; + hcp.selection_dropping_probability = 0.0; + + hcp.obstacle_keypoint_offset = 0.1; + hcp.obstacle_heading_threshold = 0.45; + hcp.roadmap_graph_no_samples = 15; + hcp.roadmap_graph_area_width = 6; // [m] + hcp.roadmap_graph_area_length_scale = 1.0; + hcp.h_signature_prescaler = 1; + hcp.h_signature_threshold = 0.1; + hcp.switching_blocking_period = 0.0; + + hcp.viapoints_all_candidates = true; + + hcp.visualize_hc_graph = false; + hcp.visualize_with_time_as_z_axis_scale = 0.0; + hcp.delete_detours_backwards = true; + hcp.detours_orientation_tolerance = M_PI / 2.0; + hcp.length_start_orientation_vector = 0.4; + hcp.max_ratio_detours_duration_best_duration = 3.0; + + // Recovery + + recovery.shrink_horizon_backup = true; + recovery.shrink_horizon_min_duration = 10; + recovery.oscillation_recovery = true; + recovery.oscillation_v_eps = 0.1; + recovery.oscillation_omega_eps = 0.1; + recovery.oscillation_recovery_min_duration = 10; + recovery.oscillation_filter_duration = 10; + recovery.divergence_detection_enable = false; + recovery.divergence_detection_max_chi_squared = 10; + } + + void declareParameters(const nav2_util::LifecycleNode::SharedPtr, const std::string name); + + /** + * @brief Load parmeters from the ros param server. + * @param nh const reference to the local rclcpp::Node::SharedPtr + */ + void loadRosParamFromNodeHandle(const nav2_util::LifecycleNode::SharedPtr nh, const std::string name); + + /** + * @brief Callback executed when a paramter change is detected + * @param parameters list of changed parameters + */ + rcl_interfaces::msg::SetParametersResult + dynamicParametersCallback(std::vector parameters); + + /** + * @brief Check parameters and print warnings in case of discrepancies + * + * Call this method whenever parameters are changed using public interfaces to inform the user + * about some improper uses. + */ + void checkParameters() const; + + /** + * @brief Check if some deprecated parameters are found and print warnings + * @param nh const reference to the local rclcpp::Node::SharedPtr + */ + void checkDeprecated(const nav2_util::LifecycleNode::SharedPtr nh, const std::string name) const; + + /** + * @brief Return the internal config mutex + */ + std::mutex& configMutex() {return config_mutex_;} + +private: + std::mutex config_mutex_; //!< Mutex for config accesses and changes + rclcpp::Logger logger_{rclcpp::get_logger("TEBLocalPlanner")}; +}; +} // namespace teb_local_planner + +#endif diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/teb_local_planner_ros.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/teb_local_planner_ros.h new file mode 100644 index 0000000..5e67792 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/teb_local_planner_ros.h @@ -0,0 +1,426 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef TEB_LOCAL_PLANNER_ROS_H_ +#define TEB_LOCAL_PLANNER_ROS_H_ + +#include + +#include + +// Navigation2 local planner base class and utilities +#include + +// timed-elastic-band related classes +#include "teb_local_planner/optimal_planner.h" +#include "teb_local_planner/homotopy_class_planner.h" +#include "teb_local_planner/visualization.h" +#include "teb_local_planner/recovery_behaviors.h" + +// message types +#include +#include +#include +#include +#include +#include + +// transforms +#include +#include + +// costmap +#include +#include "nav2_costmap_2d/costmap_filters/filter_values.hpp" + +#include +#include +#include +#include "rcl_interfaces/msg/set_parameters_result.hpp" +// dynamic reconfigure +//#include "teb_local_planner/TebLocalPlannerReconfigureConfig.h> +//#include + + +namespace teb_local_planner +{ +using TFBufferPtr = std::shared_ptr; +using CostmapROSPtr = std::shared_ptr; + +/** + * @class TebLocalPlannerROS + * @brief Implements the actual abstract navigation stack routines of the teb_local_planner plugin + * @todo Escape behavior, more efficient obstacle handling + */ +class TebLocalPlannerROS : public nav2_core::Controller +{ + +public: + /** + * @brief Constructor of the teb plugin + */ + TebLocalPlannerROS(); + + /** + * @brief Destructor of the plugin + */ + ~TebLocalPlannerROS(); + + /** + * @brief Configure the teb plugin + * + * @param node The node of the instance + * @param tf Pointer to a transform listener + * @param costmap_ros Cost map representing occupied and free space + */ + void configure( + const rclcpp_lifecycle::LifecycleNode::WeakPtr & parent, + std::string name, + std::shared_ptr tf, + std::shared_ptr costmap_ros) override; + void activate() override; + void deactivate() override; + void cleanup() override; + + /** + * @brief Initializes the teb plugin + */ + void initialize(nav2_util::LifecycleNode::SharedPtr node); + + /** + * @brief Set the plan that the teb local planner is following + * @param orig_global_plan The plan to pass to the local planner + * @return + */ + void setPlan(const nav_msgs::msg::Path & orig_global_plan) override; + + /** + * @brief Given the current position, orientation, and velocity of the robot, compute velocity commands to send to the base + * @param pose is the current position + * @param velocity is the current velocity + * @return velocity commands to send to the base + */ + geometry_msgs::msg::TwistStamped computeVelocityCommands( + const geometry_msgs::msg::PoseStamped &pose, + const geometry_msgs::msg::Twist &velocity, + nav2_core::GoalChecker * goal_checker); + + + /** @name Public utility functions/methods */ + //@{ + + /** + * @brief Transform a tf::Pose type into a Eigen::Vector2d containing the translational and angular velocities. + * + * Translational velocities (x- and y-coordinates) are combined into a single translational velocity (first component). + * @param tf_vel tf::Pose message containing a 1D or 2D translational velocity (x,y) and an angular velocity (yaw-angle) + * @return Translational and angular velocity combined into an Eigen::Vector2d + */ +// static Eigen::Vector2d tfPoseToEigenVector2dTransRot(const tf::Pose& tf_vel); + + /** + * @brief Get the current robot footprint/contour model + * @param nh const reference to the local rclcpp::Node::SharedPtr + * @return Robot footprint model used for optimization + */ + RobotFootprintModelPtr getRobotFootprintFromParamServer(nav2_util::LifecycleNode::SharedPtr node); + + /** + * @brief Set the footprint from the given XmlRpcValue. + * @remarks This method is copied from costmap_2d/footprint.h, since it is not declared public in all ros distros + * @remarks It is modified in order to return a container of Eigen::Vector2d instead of geometry_msgs::msg::Point + * @param footprint_xmlrpc should be an array of arrays, where the top-level array should have 3 or more elements, and the + * sub-arrays should all have exactly 2 elements (x and y coordinates). + * @param full_param_name this is the full name of the rosparam from which the footprint_xmlrpc value came. + * It is used only for reporting errors. + * @return container of vertices describing the polygon + */ +// Using ROS2 parameter server +// static Point2dContainer makeFootprintFromXMLRPC(XmlRpc::XmlRpcValue& footprint_xmlrpc, const std::string& full_param_name); + + /** + * @brief Get a number from the given XmlRpcValue. + * @remarks This method is copied from costmap_2d/footprint.h, since it is not declared public in all ros distros + * @remarks It is modified in order to return a container of Eigen::Vector2d instead of geometry_msgs::msg::Point + * @param value double value type + * @param full_param_name this is the full name of the rosparam from which the footprint_xmlrpc value came. + * It is used only for reporting errors. + * @returns double value + */ +// Using ROS2 parameter server +// static double getNumberFromXMLRPC(XmlRpc::XmlRpcValue& value, const std::string& full_param_name); + + //@} + +protected: + + /** + * @brief Update internal obstacle vector based on occupied costmap cells + * @remarks All occupied cells will be added as point obstacles. + * @remarks All previous obstacles are cleared. + * @sa updateObstacleContainerWithCostmapConverter + * @todo Include temporal coherence among obstacle msgs (id vector) + * @todo Include properties for dynamic obstacles (e.g. using constant velocity model) + */ + void updateObstacleContainerWithCostmap(); + + /** + * @brief Update internal obstacle vector based on polygons provided by a costmap_converter plugin + * @remarks Requires a loaded costmap_converter plugin. + * @remarks All previous obstacles are cleared. + * @sa updateObstacleContainerWithCostmap + */ + void updateObstacleContainerWithCostmapConverter(); + + /** + * @brief Update internal obstacle vector based on custom messages received via subscriber + * @remarks All previous obstacles are NOT cleared. Call this method after other update methods. + * @sa updateObstacleContainerWithCostmap, updateObstacleContainerWithCostmapConverter + */ + void updateObstacleContainerWithCustomObstacles(); + + + /** + * @brief Update internal via-point container based on the current reference plan + * @remarks All previous via-points will be cleared. + * @param transformed_plan (local) portion of the global plan (which is already transformed to the planning frame) + * @param min_separation minimum separation between two consecutive via-points + */ + void updateViaPointsContainer(const std::vector& transformed_plan, double min_separation); + + + /** + * @brief Callback for the dynamic_reconfigure node. + * + * This callback allows to modify parameters dynamically at runtime without restarting the node + * @param config Reference to the dynamic reconfigure config + * @param level Dynamic reconfigure level + */ + // TODO : dynamic reconfigure is not supported on ROS2 +// void reconfigureCB(TebLocalPlannerReconfigureConfig& config, uint32_t level); + + + /** + * @brief Callback for custom obstacles that are not obtained from the costmap + * @param obst_msg pointer to the message containing a list of polygon shaped obstacles + */ + void customObstacleCB(const costmap_converter_msgs::msg::ObstacleArrayMsg::ConstSharedPtr obst_msg); + + /** + * @brief Callback for custom via-points + * @param via_points_msg pointer to the message containing a list of via-points + */ + void customViaPointsCB(const nav_msgs::msg::Path::ConstSharedPtr via_points_msg); + + /** + * @brief Prune global plan such that already passed poses are cut off + * + * The pose of the robot is transformed into the frame of the global plan by taking the most recent tf transform. + * If no valid transformation can be found, the method returns \c false. + * The global plan is pruned until the distance to the robot is at least \c dist_behind_robot. + * If no pose within the specified treshold \c dist_behind_robot can be found, + * nothing will be pruned and the method returns \c false. + * @remarks Do not choose \c dist_behind_robot too small (not smaller the cellsize of the map), otherwise nothing will be pruned. + * @param global_pose The global pose of the robot + * @param[in,out] global_plan The plan to be transformed + * @param dist_behind_robot Distance behind the robot that should be kept [meters] + * @return \c true if the plan is pruned, \c false in case of a transform exception or if no pose cannot be found inside the threshold + */ + bool pruneGlobalPlan(const geometry_msgs::msg::PoseStamped& global_pose, + std::vector& global_plan, double dist_behind_robot=1); + + /** + * @brief Transforms the global plan of the robot from the planner frame to the local frame (modified). + * + * The method replaces transformGlobalPlan as defined in base_local_planner/goal_functions.h + * such that the index of the current goal pose is returned as well as + * the transformation between the global plan and the planning frame. + * @param global_plan The plan to be transformed + * @param global_pose The global pose of the robot + * @param costmap A reference to the costmap being used so the window size for transforming can be computed + * @param global_frame The frame to transform the plan to + * @param max_plan_length Specify maximum length (cumulative Euclidean distances) of the transformed plan [if <=0: disabled; the length is also bounded by the local costmap size!] + * @param[out] transformed_plan Populated with the transformed plan + * @param[out] current_goal_idx Index of the current (local) goal pose in the global plan + * @param[out] tf_plan_to_global Transformation between the global plan and the global planning frame + * @return \c true if the global plan is transformed, \c false otherwise + */ + bool transformGlobalPlan(const std::vector& global_plan, + const geometry_msgs::msg::PoseStamped& global_pose, const nav2_costmap_2d::Costmap2D& costmap, + const std::string& global_frame, double max_plan_length, std::vector& transformed_plan, + int* current_goal_idx = NULL, geometry_msgs::msg::TransformStamped* tf_plan_to_global = NULL) const; + + /** + * @brief Estimate the orientation of a pose from the global_plan that is treated as a local goal for the local planner. + * + * If the current (local) goal point is not the final one (global) + * substitute the goal orientation by the angle of the direction vector between + * the local goal and the subsequent pose of the global plan. + * This is often helpful, if the global planner does not consider orientations. \n + * A moving average filter is utilized to smooth the orientation. + * @param global_plan The global plan + * @param local_goal Current local goal + * @param current_goal_idx Index of the current (local) goal pose in the global plan + * @param[out] tf_plan_to_global Transformation between the global plan and the global planning frame + * @param moving_average_length number of future poses of the global plan to be taken into account + * @return orientation (yaw-angle) estimate + */ + double estimateLocalGoalOrientation(const std::vector& global_plan, const geometry_msgs::msg::PoseStamped& local_goal, + int current_goal_idx, const geometry_msgs::msg::TransformStamped& tf_plan_to_global, int moving_average_length=3) const; + + + /** + * @brief Saturate the translational and angular velocity to given limits. + * + * The limit of the translational velocity for backwards driving can be changed independently. + * Do not choose max_vel_x_backwards <= 0. If no backward driving is desired, change the optimization weight for + * penalizing backwards driving instead. + * @param[in,out] vx The translational velocity that should be saturated. + * @param[in,out] vy Strafing velocity which can be nonzero for holonomic robots + * @param[in,out] omega The angular velocity that should be saturated. + * @param max_vel_x Maximum translational velocity for forward driving + * @param max_vel_y Maximum strafing velocity (for holonomic robots) + * @param max_vel_theta Maximum (absolute) angular velocity + * @param max_vel_x_backwards Maximum translational velocity for backwards driving + */ + void saturateVelocity(double& vx, double& vy, double& omega, double max_vel_x, double max_vel_y, + double max_vel_theta, double max_vel_x_backwards) const; + + + /** + * @brief Convert translational and rotational velocities to a steering angle of a carlike robot + * + * The conversion is based on the following equations: + * - The turning radius is defined by \f$ R = v/omega \f$ + * - For a car like robot withe a distance L between both axles, the relation is: \f$ tan(\phi) = L/R \f$ + * - phi denotes the steering angle. + * @remarks You might provide distances instead of velocities, since the temporal information is not required. + * @param v translational velocity [m/s] + * @param omega rotational velocity [rad/s] + * @param wheelbase distance between both axles (drive shaft and steering axle), the value might be negative for back_wheeled robots + * @param min_turning_radius Specify a lower bound on the turning radius + * @return Resulting steering angle in [rad] inbetween [-pi/2, pi/2] + */ + double convertTransRotVelToSteeringAngle(double v, double omega, double wheelbase, double min_turning_radius = 0) const; + + /** + * @brief Validate current parameter values of the footprint for optimization, obstacle distance and the costmap footprint + * + * This method prints warnings if validation fails. + * @remarks Currently, we only validate the inscribed radius of the footprints + * @param opt_inscribed_radius Inscribed radius of the RobotFootprintModel for optimization + * @param costmap_inscribed_radius Inscribed radius of the footprint model used for the costmap + * @param min_obst_dist desired distance to obstacles + */ + void validateFootprints(double opt_inscribed_radius, double costmap_inscribed_radius, double min_obst_dist); + + + void configureBackupModes(std::vector& transformed_plan, int& goal_idx); + + /** + * @brief Limits the maximum linear speed of the robot. + * @param speed_limit expressed in absolute value (in m/s) + * or in percentage from maximum robot speed. + * @param percentage Setting speed limit in percentage if true + * or in absolute values in false case. + */ + void setSpeedLimit(const double & speed_limit, const bool & percentage); + +private: + // Definition of member variables + rclcpp_lifecycle::LifecycleNode::WeakPtr nh_; + rclcpp::Logger logger_{rclcpp::get_logger("TEBLocalPlanner")}; + rclcpp::Clock::SharedPtr clock_; + rclcpp::Node::SharedPtr intra_proc_node_; + // external objects (store weak pointers) + CostmapROSPtr costmap_ros_; //!< Pointer to the costmap ros wrapper, received from the navigation stack + nav2_costmap_2d::Costmap2D* costmap_; //!< Pointer to the 2d costmap (obtained from the costmap ros wrapper) + TFBufferPtr tf_; //!< pointer to Transform Listener + TebConfig::UniquePtr cfg_; //!< Config class that stores and manages all related parameters + + // internal objects (memory management owned) + PlannerInterfacePtr planner_; //!< Instance of the underlying optimal planner class + ObstContainer obstacles_; //!< Obstacle vector that should be considered during local trajectory optimization + ViaPointContainer via_points_; //!< Container of via-points that should be considered during local trajectory optimization + TebVisualizationPtr visualization_; //!< Instance of the visualization class (local/global plan, obstacles, ...) + std::shared_ptr costmap_model_; + FailureDetector failure_detector_; //!< Detect if the robot got stucked + + std::vector global_plan_; //!< Store the current global plan + + pluginlib::ClassLoader costmap_converter_loader_; //!< Load costmap converter plugins at runtime + std::shared_ptr costmap_converter_; //!< Store the current costmap_converter + + //std::shared_ptr< dynamic_reconfigure::Server > dynamic_recfg_; //!< Dynamic reconfigure server to allow config modifications at runtime + rclcpp::Subscription::SharedPtr custom_obst_sub_; //!< Subscriber for custom obstacles received via a ObstacleMsg. + std::mutex custom_obst_mutex_; //!< Mutex that locks the obstacle array (multi-threaded) + costmap_converter_msgs::msg::ObstacleArrayMsg custom_obstacle_msg_; //!< Copy of the most recent obstacle message + + rclcpp::Subscription::SharedPtr via_points_sub_; //!< Subscriber for custom via-points received via a Path msg. + bool custom_via_points_active_; //!< Keep track whether valid via-points have been received from via_points_sub_ + std::mutex via_point_mutex_; //!< Mutex that locks the via_points container (multi-threaded) + + PoseSE2 robot_pose_; //!< Store current robot pose + PoseSE2 robot_goal_; //!< Store current robot goal + geometry_msgs::msg::Twist robot_vel_; //!< Store current robot translational and angular velocity (vx, vy, omega) + rclcpp::Time time_last_infeasible_plan_; //!< Store at which time stamp the last infeasible plan was detected + int no_infeasible_plans_; //!< Store how many times in a row the planner failed to find a feasible plan. + rclcpp::Time time_last_oscillation_; //!< Store at which time stamp the last oscillation was detected + RotType last_preferred_rotdir_; //!< Store recent preferred turning direction + geometry_msgs::msg::Twist last_cmd_; //!< Store the last control command generated in computeVelocityCommands() + + std::vector footprint_spec_; //!< Store the footprint of the robot + double robot_inscribed_radius_; //!< The radius of the inscribed circle of the robot (collision possible) + double robot_circumscribed_radius; //!< The radius of the circumscribed circle of the robot + + // flags + bool initialized_; //!< Keeps track about the correct initialization of this class + std::string name_; //!< Name of plugin ID + +protected: + // Dynamic parameters handler + rclcpp::node_interfaces::OnSetParametersCallbackHandle::SharedPtr dyn_params_handler; +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +}; // end namespace teb_local_planner + +#endif // TEB_LOCAL_PLANNER_ROS_H_ + + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/timed_elastic_band.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/timed_elastic_band.h new file mode 100644 index 0000000..f720906 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/timed_elastic_band.h @@ -0,0 +1,636 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef TIMED_ELASTIC_BAND_H_ +#define TIMED_ELASTIC_BAND_H_ +#include + +#include + +#include +#include +#include +#include + +#include +#include +#include + +#include "teb_local_planner/obstacles.h" + +// G2O Types +#include "teb_local_planner/g2o_types/vertex_pose.h" +#include "teb_local_planner/g2o_types/vertex_timediff.h" + + +namespace teb_local_planner +{ + +//! Container of poses that represent the spatial part of the trajectory +typedef std::vector PoseSequence; +//! Container of time differences that define the temporal of the trajectory +typedef std::vector TimeDiffSequence; + + +/** + * @class TimedElasticBand + * @brief Class that defines a trajectory modeled as an elastic band with augmented tempoarl information. + * + * All trajectory related methods (initialization, modifying, ...) are implemented inside this class. \n + * Let \f$ Q = \lbrace \mathbf{s}_i \rbrace_{i=0...n},\ n \in \mathbb{N} \f$ be a sequence of poses, \n + * in which \f$ \mathbf{s}_i = [x_i, y_i, \beta_i]^T \in \mathbb{R}^2 \times S^1 \f$ denotes a single pose of the robot. \n + * The Timed Elastic Band (TEB) augments this sequence of poses by incorporating time intervals between + * two consecutive poses, resuting in a sequence of \c n-1 time intervals \f$ \Delta T_i \f$: \n + * \f$ \tau = \lbrace \Delta T_i \rbrace_{i=0...n-1} \f$. \n + * Each time interval (time diff) denotes the time that the robot requires to transit from the current configuration to the next configuration. + * The tuple of both sequences defines the underlying trajectory. + * + * Poses and time differences are wrapped into a g2o::Vertex class in order to enable the efficient optimization in TebOptimalPlanner. \n + * TebOptimalPlanner utilizes this Timed_Elastic_band class for representing an optimizable trajectory. + * + * @todo Move decision if the start or goal state should be marked as fixed or unfixed for the optimization to the TebOptimalPlanner class. + */ +class TimedElasticBand +{ +public: + + /** + * @brief Construct the class + */ + TimedElasticBand(); + + /** + * @brief Destruct the class + */ + virtual ~TimedElasticBand(); + + + + /** @name Access pose and timediff sequences */ + //@{ + + /** + * @brief Access the complete pose sequence + * @return reference to the pose sequence + */ + PoseSequence& poses() {return pose_vec_;}; + + /** + * @brief Access the complete pose sequence (read-only) + * @return const reference to the pose sequence + */ + const PoseSequence& poses() const {return pose_vec_;}; + + /** + * @brief Access the complete timediff sequence + * @return reference to the dimediff sequence + */ + TimeDiffSequence& timediffs() {return timediff_vec_;}; + + /** + * @brief Access the complete timediff sequence + * @return reference to the dimediff sequence + */ + const TimeDiffSequence& timediffs() const {return timediff_vec_;}; + + /** + * @brief Access the time difference at pos \c index of the time sequence + * @param index element position inside the internal TimeDiffSequence + * @return reference to the time difference at pos \c index + */ + double& TimeDiff(int index) + { + assert(indexdt(); + } + + /** + * @brief Access the time difference at pos \c index of the time sequence (read-only) + * @param index element position inside the internal TimeDiffSequence + * @return const reference to the time difference at pos \c index + */ + const double& TimeDiff(int index) const + { + assert(indexdt(); + } + + /** + * @brief Access the pose at pos \c index of the pose sequence + * @param index element position inside the internal PoseSequence + * @return reference to the pose at pos \c index + */ + PoseSE2& Pose(int index) + { + assert(indexpose(); + } + + /** + * @brief Access the pose at pos \c index of the pose sequence (read-only) + * @param index element position inside the internal PoseSequence + * @return const reference to the pose at pos \c index + */ + const PoseSE2& Pose(int index) const + { + assert(indexpose(); + } + + /** + * @brief Access the last PoseSE2 in the pose sequence + */ + PoseSE2& BackPose() {return pose_vec_.back()->pose(); } + + /** + * @brief Access the last PoseSE2 in the pose sequence (read-only) + */ + const PoseSE2& BackPose() const {return pose_vec_.back()->pose();} + + /** + * @brief Access the last TimeDiff in the time diff sequence + */ + double& BackTimeDiff() {return timediff_vec_.back()->dt(); } + + /** + * @brief Access the last TimeDiff in the time diff sequence (read-only) + */ + const double& BackTimeDiff() const {return timediff_vec_.back()->dt(); } + + /** + * @brief Access the vertex of a pose at pos \c index for optimization purposes + * @param index element position inside the internal PoseSequence + * @return Weak raw pointer to the pose vertex at pos \c index + */ + VertexPose* PoseVertex(int index) + { + assert(index& position, double theta, bool fixed=false); + + /** + * @brief Append a new pose vertex to the back of the pose sequence + * @param x x-coordinate of the position part + * @param y y-coordinate of the position part + * @param theta yaw angle representing the orientation part + * @param fixed Mark the pose to be fixed or unfixed during trajectory optimization (important for the TebOptimalPlanner) + */ + void addPose(double x, double y, double theta, bool fixed=false); + + /** + * @brief Append a new time difference vertex to the back of the time diff sequence + * @param dt time difference value to push back on the internal TimeDiffSequence + * @param fixed Mark the pose to be fixed or unfixed during trajectory optimization (important for the TebOptimalPlanner) + */ + void addTimeDiff(double dt, bool fixed=false); + + /** + * @brief Append a (pose, timediff) vertex pair to the end of the current trajectory (pose and timediff sequences) + * @param pose PoseSE2 to push back on the internal PoseSequence + * @param dt time difference value to push back on the internal TimeDiffSequence + * @warning Since the timediff is defined to connect two consecutive poses, this call is only + * allowed if there exist already n poses and n-1 timediffs in the sequences (n=1,2,...): + * therefore add a single pose using addPose() first! + */ + void addPoseAndTimeDiff(const PoseSE2& pose, double dt); + + /** + * @brief Append a (pose, timediff) vertex pair to the end of the current trajectory (pose and timediff sequences) + * @param position 2D vector representing the position part + * @param theta yaw angle representing the orientation part + * @param dt time difference value to push back on the internal TimeDiffSequence + * @warning see addPoseAndTimeDiff(const PoseSE2& pose, double dt) + */ + void addPoseAndTimeDiff(const Eigen::Ref& position, double theta, double dt); + + /** + * @brief Append a (pose, timediff) vertex pair to the end of the current trajectory (pose and timediff sequences) + * @param x x-coordinate of the position part + * @param y y-coordinate of the position part + * @param theta yaw angle representing the orientation part + * @param dt time difference value to push back on the internal TimeDiffSequence + * @warning see addPoseAndTimeDiff(const PoseSE2& pose, double dt) + */ + void addPoseAndTimeDiff(double x, double y, double theta, double dt); + + //@} + + + /** @name Insert new elements and remove elements of the pose and timediff sequences */ + //@{ + + /** + * @brief Insert a new pose vertex at pos. \c index to the pose sequence + * @param index element position inside the internal PoseSequence + * @param pose PoseSE2 element to insert into the internal PoseSequence + */ + void insertPose(int index, const PoseSE2& pose); + + /** + * @brief Insert a new pose vertex at pos. \c index to the pose sequence + * @param index element position inside the internal PoseSequence + * @param position 2D vector representing the position part + * @param theta yaw-angle representing the orientation part + */ + void insertPose(int index, const Eigen::Ref& position, double theta); + + /** + * @brief Insert a new pose vertex at pos. \c index to the pose sequence + * @param index element position inside the internal PoseSequence + * @param x x-coordinate of the position part + * @param y y-coordinate of the position part + * @param theta yaw-angle representing the orientation part + */ + void insertPose(int index, double x, double y, double theta); + + /** + * @brief Insert a new timediff vertex at pos. \c index to the timediff sequence + * @param index element position inside the internal TimeDiffSequence + * @param dt timediff value + */ + void insertTimeDiff(int index, double dt); + + /** + * @brief Delete pose at pos. \c index in the pose sequence + * @param index element position inside the internal PoseSequence + */ + void deletePose(int index); + + /** + * @brief Delete multiple (\c number) poses starting at pos. \c index in the pose sequence + * @param index first element position inside the internal PoseSequence + * @param number number of elements that should be deleted + */ + void deletePoses(int index, int number); + + /** + * @brief Delete pose at pos. \c index in the timediff sequence + * @param index element position inside the internal TimeDiffSequence + */ + void deleteTimeDiff(int index); + + /** + * @brief Delete multiple (\c number) time differences starting at pos. \c index in the timediff sequence + * @param index first element position inside the internal TimeDiffSequence + * @param number number of elements that should be deleted + */ + void deleteTimeDiffs(int index, int number); + + //@} + + + /** @name Init the trajectory */ + //@{ + + /** + * @brief Initialize a trajectory between a given start and goal pose. + * + * The implemented algorithm subsamples the straight line between + * start and goal using a given discretiziation width. \n + * The discretization width can be defined in the euclidean space + * using the \c diststep parameter. Each time difference between two consecutive + * poses is initialized to \c timestep. \n + * If the \c diststep is chosen to be zero, + * the resulting trajectory contains the start and goal pose only. + * @param start PoseSE2 defining the start of the trajectory + * @param goal PoseSE2 defining the goal of the trajectory (final pose) + * @param diststep euclidean distance between two consecutive poses (if 0, no intermediate samples are inserted despite min_samples) + * @param max_vel_x maximum translational velocity used for determining time differences + * @param min_samples Minimum number of samples that should be initialized at least + * @param guess_backwards_motion Allow the initialization of backwards oriented trajectories if the goal heading is pointing behind the robot + * @return true if everything was fine, false otherwise + */ + bool initTrajectoryToGoal(const PoseSE2& start, const PoseSE2& goal, double diststep=0, double max_vel_x=0.5, int min_samples = 3, bool guess_backwards_motion = false); + + + /** + * @brief Initialize a trajectory from a generic 2D reference path. + * + * The temporal information is determined using a given maximum velocity + * (2D vector containing the translational and angular velocity). \n + * A constant velocity profile is implemented. \n + * A possible maximum acceleration is considered if \c max_acceleration param is provided. + * + * Since the orientation is not included in the reference path, it can be provided seperately + * (e.g. from the robot pose and robot goal). \n + * Otherwise the goal heading will be used as start and goal orientation. \n + * The orientation along the trajectory will be determined using the connection vector + * between two consecutive positions of the reference path. + * + * The reference path is provided using a start and end iterator to a container class. + * You must provide a unary function that accepts the dereferenced iterator and returns + * a copy or (const) reference to an Eigen::Vector2d type containing the 2d position. + * + * @param path_start start iterator of a generic 2d path + * @param path_end end iterator of a generic 2d path + * @param fun_position unary function that returns the Eigen::Vector2d object + * @param max_vel_x maximum translational velocity used for determining time differences + * @param max_vel_theta maximum angular velocity used for determining time differences + * @param max_acc_x specify to satisfy a maxmimum transl. acceleration and decceleration (optional) + * @param max_acc_theta specify to satisfy a maxmimum angular acceleration and decceleration (optional) + * @param start_orientation Orientation of the first pose of the trajectory (optional, otherwise use goal heading) + * @param goal_orientation Orientation of the last pose of the trajectory (optional, otherwise use goal heading) + * @param min_samples Minimum number of samples that should be initialized at least + * @param guess_backwards_motion Allow the initialization of backwards oriented trajectories if the goal heading is pointing behind the robot + * @tparam BidirIter Bidirectional iterator type + * @tparam Fun unyary function that transforms the dereferenced iterator into an Eigen::Vector2d + * @return true if everything was fine, false otherwise + * @remarks Use \c boost::none to skip optional arguments. + */ + template + bool initTrajectoryToGoal(BidirIter path_start, BidirIter path_end, Fun fun_position, double max_vel_x, double max_vel_theta, + boost::optional max_acc_x, boost::optional max_acc_theta, + boost::optional start_orientation, boost::optional goal_orientation, int min_samples = 3, bool guess_backwards_motion = false); + + /** + * @brief Initialize a trajectory from a reference pose sequence (positions and orientations). + * + * This method initializes the timed elastic band using a pose container + * (e.g. as local plan from the ros navigation stack). \n + * The initial time difference between two consecutive poses can be uniformly set + * via the argument \c dt. + * @param plan vector of geometry_msgs::msg::PoseStamped + * @param max_vel_x maximum translational velocity used for determining time differences + * @param max_vel_theta maximum rotational velocity used for determining time differences + * @param estimate_orient if \c true, calculate orientation using the straight line distance vector between consecutive poses + * (only copy start and goal orientation; recommended if no orientation data is available). + * @param min_samples Minimum number of samples that should be initialized at least + * @param guess_backwards_motion Allow the initialization of backwards oriented trajectories if the goal heading is pointing behind the robot (this parameter is used only if \c estimate_orient is enabled. + * @return true if everything was fine, false otherwise + */ + bool initTrajectoryToGoal(const std::vector& plan, double max_vel_x, double max_vel_theta, bool estimate_orient=false, int min_samples = 3, bool guess_backwards_motion = false); + + //@} + + /** @name Update and modify the trajectory */ + //@{ + + + /** + * @brief Hot-Start from an existing trajectory with updated start and goal poses. + * + * This method updates a previously optimized trajectory with a new start and/or a new goal pose. \n + * The current simple implementation cuts of pieces of the trajectory that are already passed due to the new start. \n + * Afterwards the start and goal pose are replaced by the new ones. The resulting discontinuity will not be smoothed. + * The optimizer has to smooth the trajectory in TebOptimalPlanner. \n + * + * @todo Smooth the trajectory here and test the performance improvement of the optimization. + * @todo Implement a updateAndPruneTEB based on a new reference path / pose sequence. + * + * @param new_start New start pose (optional) + * @param new_goal New goal pose (optional) + * @param min_samples Specify the minimum number of samples that should at least remain in the trajectory + */ + void updateAndPruneTEB(boost::optional new_start, boost::optional new_goal, int min_samples = 3); + + + /** + * @brief Resize the trajectory by removing or inserting a (pose,dt) pair depending on a reference temporal resolution. + * + * Resizing the trajectory is helpful e.g. for the following scenarios: + * + * - Obstacles requires the teb to be extended in order to + * satisfy the given discritization width (plan resolution) + * and to avoid undesirable behavior due to a large/small discretization step widths \f$ \Delta T_i \f$ + * After clearance of obstacles, the teb should (re-) contract to its (time-)optimal version. + * - If the distance to the goal state is getting smaller, + * dt is decreasing as well. This leads to a heavily + * fine-grained discretization in combination with many + * discrete poses. Thus, the computation time will + * be/remain high and in addition numerical instabilities + * can appear (e.g. due to the division by a small \f$ \Delta T_i \f$). + * + * The implemented strategy checks all timediffs \f$ \Delta T_i \f$ and + * + * - inserts a new sample if \f$ \Delta T_i > \Delta T_{ref} + \Delta T_{hyst} \f$ + * - removes a sample if \f$ \Delta T_i < \Delta T_{ref} - \Delta T_{hyst} \f$ + * + * Each call only one new sample (pose-dt-pair) is inserted or removed. + * @param dt_ref reference temporal resolution + * @param dt_hysteresis hysteresis to avoid oscillations + * @param min_samples minimum number of samples that should be remain in the trajectory after resizing + * @param max_samples maximum number of samples that should not be exceeded during resizing + * @param fast_mode if true, the trajectory is iterated once to insert or erase points; if false the trajectory + * is repeatedly iterated until no poses are added or removed anymore + */ + void autoResize(double dt_ref, double dt_hysteresis, int min_samples = 3, int max_samples=1000, bool fast_mode=false); + + /** + * @brief Set a pose vertex at pos \c index of the pose sequence to be fixed or unfixed during optimization. + * @param index index to the pose vertex + * @param status if \c true, the vertex will be fixed, otherwise unfixed + */ + void setPoseVertexFixed(int index, bool status); + + /** + * @brief Set a timediff vertex at pos \c index of the timediff sequence to be fixed or unfixed during optimization. + * @param index index to the timediff vertex + * @param status if \c true, the vertex will be fixed, otherwise unfixed + */ + void setTimeDiffVertexFixed(int index, bool status); + + /** + * @brief clear all poses and timediffs from the trajectory. + * The pose and timediff sequences will be empty and isInit() will return \c false + */ + void clearTimedElasticBand(); + + //@} + + + /** @name Utility and status methods */ + //@{ + + /** + * @brief Find the closest point on the trajectory w.r.t. to a provided reference point. + * + * This function can be useful to find the part of a trajectory that is close to an obstacle. + * + * @todo implement a more efficient version that first performs a coarse search. + * @todo implement a fast approximation that assumes only one local minima w.r.t to the distance: + * Allows simple comparisons starting from the middle of the trajectory. + * + * @param ref_point reference point (2D position vector) + * @param[out] distance [optional] the resulting minimum distance + * @param begin_idx start search at this pose index + * @return Index to the closest pose in the pose sequence + */ + int findClosestTrajectoryPose(const Eigen::Ref& ref_point, double* distance = NULL, int begin_idx=0) const; + + /** + * @brief Find the closest point on the trajectory w.r.t. to a provided reference line. + * + * This function can be useful to find the part of a trajectory that is close to an (line) obstacle. + * + * @todo implement a more efficient version that first performs a coarse search. + * @todo implement a fast approximation that assumes only one local minima w.r.t to the distance: + * Allows simple comparisons starting from the middle of the trajectory. + * + * @param ref_line_start start of the reference line (2D position vector) + * @param ref_line_end end of the reference line (2D position vector) + * @param[out] distance [optional] the resulting minimum distance + * @return Index to the closest pose in the pose sequence + */ + int findClosestTrajectoryPose(const Eigen::Ref& ref_line_start, const Eigen::Ref& ref_line_end, double* distance = NULL) const; + + /** + * @brief Find the closest point on the trajectory w.r.t. to a provided reference polygon. + * + * This function can be useful to find the part of a trajectory that is close to an (polygon) obstacle. + * + * @todo implement a more efficient version that first performs a coarse search. + * @todo implement a fast approximation that assumes only one local minima w.r.t to the distance: + * Allows simple comparisons starting from the middle of the trajectory. + * + * @param vertices vertex container containing Eigen::Vector2d points (the last and first point are connected) + * @param[out] distance [optional] the resulting minimum distance + * @return Index to the closest pose in the pose sequence + */ + int findClosestTrajectoryPose(const Point2dContainer& vertices, double* distance = NULL) const; + + /** + * @brief Find the closest point on the trajectory w.r.t to a provided obstacle type + * + * This function can be useful to find the part of a trajectory that is close to an obstacle. + * The method is calculates appropriate distance metrics for point, line and polygon obstacles. + * For all unknown obstacles the centroid is used. + * + * @param obstacle Subclass of the Obstacle base class + * @param[out] distance [optional] the resulting minimum distance + * @return Index to the closest pose in the pose sequence + */ + int findClosestTrajectoryPose(const Obstacle& obstacle, double* distance = NULL) const; + + + /** + * @brief Get the length of the internal pose sequence + */ + int sizePoses() const {return (int)pose_vec_.size();}; + + /** + * @brief Get the length of the internal timediff sequence + */ + int sizeTimeDiffs() const {return (int)timediff_vec_.size();}; + + /** + * @brief Check whether the trajectory is initialized (nonzero pose and timediff sequences) + */ + bool isInit() const {return !timediff_vec_.empty() && !pose_vec_.empty();} + + /** + * @brief Calculate the total transition time (sum over all time intervals of the timediff sequence) + */ + double getSumOfAllTimeDiffs() const; + + /** + * @brief Calculate the estimated transition time up to the pose denoted by index + * @param index Index of the pose up to which the transition times are summed up + * @return Estimated transition time up to pose index + */ + double getSumOfTimeDiffsUpToIdx(int index) const; + + /** + * @brief Calculate the length (accumulated euclidean distance) of the trajectory + */ + double getAccumulatedDistance() const; + + /** + * @brief Check if all trajectory points are contained in a specific region + * + * The specific region is a circle around the current robot position (Pose(0)) with given radius \c radius. + * This method investigates a different radius for points behind the robot if \c max_dist_behind_robot >= 0. + * @param radius radius of the region with the robot position (Pose(0)) as center + * @param max_dist_behind_robot A separate radius for trajectory points behind the robot, activated if 0 or positive + * @param skip_poses If >0: the specified number of poses are skipped for the test, e.g. Pose(0), Pose(0+skip_poses+1), Pose(2*skip_poses+2), ... are tested. + * @return \c true, if all tested trajectory points are inside the specified region, \c false otherwise. + */ + bool isTrajectoryInsideRegion(double radius, double max_dist_behind_robot=-1, int skip_poses=0); + + + + //@} + +protected: + PoseSequence pose_vec_; //!< Internal container storing the sequence of optimzable pose vertices + TimeDiffSequence timediff_vec_; //!< Internal container storing the sequence of optimzable timediff vertices + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +} // namespace teb_local_planner + + +// include template implementations / definitions +#include "teb_local_planner/timed_elastic_band.hpp" + + +#endif /* TIMED_ELASTIC_BAND_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/timed_elastic_band.hpp b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/timed_elastic_band.hpp new file mode 100644 index 0000000..9db4a25 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/timed_elastic_band.hpp @@ -0,0 +1,191 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/timed_elastic_band.h" + +#include + +namespace teb_local_planner +{ +template +bool TimedElasticBand::initTrajectoryToGoal(BidirIter path_start, BidirIter path_end, Fun fun_position, double max_vel_x, double max_vel_theta, + boost::optional max_acc_x, boost::optional max_acc_theta, + boost::optional start_orientation, boost::optional goal_orientation, int min_samples, bool guess_backwards_motion) +{ + Eigen::Vector2d start_position = fun_position( *path_start ); + Eigen::Vector2d goal_position = fun_position( *std::prev(path_end) ); + + bool backwards = false; + + double start_orient, goal_orient; + if (start_orientation) + { + start_orient = *start_orientation; + + // check if the goal is behind the start pose (w.r.t. start orientation) + if (guess_backwards_motion && (goal_position-start_position).dot(Eigen::Vector2d(std::cos(start_orient), std::sin(start_orient))) < 0) + backwards = true; + } + else + { + Eigen::Vector2d start2goal = goal_position - start_position; + start_orient = atan2(start2goal[1],start2goal[0]); + } + + double timestep = 1; // TODO: time + + if (goal_orientation) + { + goal_orient = *goal_orientation; + } + else + { + goal_orient = start_orient; + } + + if (!isInit()) + { + addPose(start_position, start_orient, true); // add starting point and mark it as fixed for optimization + + // we insert middle points now (increase start by 1 and decrease goal by 1) + std::advance(path_start,1); + std::advance(path_end,-1); + int idx=0; + for (; path_start != path_end; ++path_start) // insert middle-points + { + //Eigen::Vector2d point_to_goal = path.back()-*it; + //double dir_to_goal = atan2(point_to_goal[1],point_to_goal[0]); // direction to goal + // Alternative: Direction from last path + Eigen::Vector2d curr_point = fun_position(*path_start); + Eigen::Vector2d diff_last = curr_point - Pose(idx).position(); // we do not use std::prev(*path_start) for those cases, + // where fun_position() does not return a reference or is expensive. + double diff_norm = diff_last.norm(); + + double timestep_vel = diff_norm/max_vel_x; // constant velocity + double timestep_acc; + + if (max_acc_x) + { + timestep_acc = sqrt(2*diff_norm/(*max_acc_x)); // constant acceleration + if (timestep_vel < timestep_acc && max_acc_x) timestep = timestep_acc; + else timestep = timestep_vel; + } + else timestep = timestep_vel; + + if (timestep<=0) timestep=0.2; // TODO: this is an assumption + + double yaw = atan2(diff_last[1],diff_last[0]); + if (backwards) + yaw = g2o::normalize_theta(yaw + M_PI); + addPoseAndTimeDiff(curr_point, yaw ,timestep); + + /* + // TODO: the following code does not seem to hot-start the optimizer. Instead it recudes convergence time. + + Eigen::Vector2d diff_next = fun_position(*std::next(path_start))-curr_point; // TODO maybe store the std::next for the following iteration + double ang_diff = std::abs( g2o::normalize_theta( atan2(diff_next[1],diff_next[0]) + -atan2(diff_last[1],diff_last[0]) ) ); + + timestep_vel = ang_diff/max_vel_theta; // constant velocity + if (max_acc_theta) + { + timestep_acc = sqrt(2*ang_diff/(*max_acc_theta)); // constant acceleration + if (timestep_vel < timestep_acc) timestep = timestep_acc; + else timestep = timestep_vel; + } + else timestep = timestep_vel; + + if (timestep<=0) timestep=0.2; // TODO: this is an assumption + + yaw = atan2(diff_last[1],diff_last[0]); // TODO redundant right now, not yet finished + if (backwards) + yaw = g2o::normalize_theta(yaw + M_PI); + addPoseAndTimeDiff(curr_point, yaw ,timestep); + + */ + + ++idx; + } + Eigen::Vector2d diff = goal_position-Pose(idx).position(); + double diff_norm = diff.norm(); + double timestep_vel = diff_norm/max_vel_x; // constant velocity + if (max_acc_x) + { + double timestep_acc = sqrt(2*diff_norm/(*max_acc_x)); // constant acceleration + if (timestep_vel < timestep_acc) timestep = timestep_acc; + else timestep = timestep_vel; + } + else timestep = timestep_vel; + + + PoseSE2 goal(goal_position, goal_orient); + + // if number of samples is not larger than min_samples, insert manually + if ( sizePoses() < min_samples-1 ) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "initTEBtoGoal(): number of generated samples is less than specified by min_samples. Forcing the insertion of more samples..."); + while (sizePoses() < min_samples-1) // subtract goal point that will be added later + { + // Each inserted point bisects the remaining distance. Thus the timestep is also bisected. + timestep /= 2; + // simple strategy: interpolate between the current pose and the goal + addPoseAndTimeDiff( PoseSE2::average(BackPose(), goal), timestep ); // let the optimier correct the timestep (TODO: better initialization + } + } + + // now add goal + addPoseAndTimeDiff(goal, timestep); // add goal point + setPoseVertexFixed(sizePoses()-1,true); // GoalConf is a fixed constraint during optimization + } + else // size!=0 + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "Cannot init TEB between given configuration and goal, because TEB vectors are not empty or TEB is already initialized (call this function before adding states yourself)!"); + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "Number of TEB configurations: %d, Number of TEB timediffs: %d", sizePoses(), sizeTimeDiffs()); + return false; + } + return true; +} + + +} // namespace teb_local_planner + + + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/visualization.h b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/visualization.h new file mode 100644 index 0000000..c46dbe8 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/visualization.h @@ -0,0 +1,272 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#ifndef VISUALIZATION_H_ +#define VISUALIZATION_H_ + + + +// teb stuff +#include "teb_local_planner/teb_config.h" +#include "teb_local_planner/timed_elastic_band.h" +#include "teb_local_planner/robot_footprint_model.h" + +#include + +// boost +#include +#include + +// std +#include + +#include + +#include + +// messages +#include +#include +#include +#include +#include +#include +#include + +namespace teb_local_planner +{ + +class TebOptimalPlanner; //!< Forward Declaration + + +/** + * @class TebVisualization + * @brief Visualize stuff from the teb_local_planner + */ +class TebVisualization +{ +public: + /** + * @brief Constructor that initializes the class and registers topics + * @param nh local rclcpp::Node::SharedPtr + * @param cfg const reference to the TebConfig class for parameters + */ + TebVisualization(const rclcpp_lifecycle::LifecycleNode::SharedPtr & nh, const TebConfig& cfg); + + /** @name Publish to topics */ + //@{ + + /** + * @brief Publish a given global plan to the ros topic \e ../../global_plan + * @param global_plan Pose array describing the global plan + */ + void publishGlobalPlan(const std::vector& global_plan) const; + + /** + * @brief Publish a given local plan to the ros topic \e ../../local_plan + * @param local_plan Pose array describing the local plan + */ + void publishLocalPlan(const std::vector& local_plan) const; + + /** + * @brief Publish Timed_Elastic_Band related stuff (local plan, pose sequence). + * + * Given a Timed_Elastic_Band instance, publish the local plan to \e ../../local_plan + * and the pose sequence to \e ../../teb_poses. + * @param teb const reference to a Timed_Elastic_Band + */ + void publishLocalPlanAndPoses(const TimedElasticBand& teb) const; + + /** + * @brief Publish the visualization of the robot model + * + * @param current_pose Current pose of the robot + * @param robot_model Subclass of BaseRobotFootprintModel + * @param ns Namespace for the marker objects + * @param color Color of the footprint + */ + void publishRobotFootprintModel(const PoseSE2& current_pose, const BaseRobotFootprintModel& robot_model, const std::string& ns = "RobotFootprintModel", + const std_msgs::msg::ColorRGBA& color = toColorMsg(0.5, 0.0, 0.8, 0.0)); + + /** + * @brief Publish the robot footprints related to infeasible poses + * + * @param current_pose Current pose of the robot + * @param robot_model Subclass of BaseRobotFootprintModel + */ + void publishInfeasibleRobotPose(const PoseSE2& current_pose, const BaseRobotFootprintModel& robot_model); + + /** + * @brief Publish obstacle positions to the ros topic \e ../../teb_markers + * @todo Move filling of the marker message to polygon class in order to avoid checking types. + * @param obstacles Obstacle container + */ + void publishObstacles(const ObstContainer& obstacles) const; + + /** + * @brief Publish via-points to the ros topic \e ../../teb_markers + * @param via_points via-point container + */ + void publishViaPoints(const std::vector< Eigen::Vector2d, Eigen::aligned_allocator >& via_points, const std::string& ns = "ViaPoints") const; + + /** + * @brief Publish a boost::adjacency_list (boost's graph datatype) via markers. + * @remarks Make sure that vertices of the graph contain a member \c pos as \c Eigen::Vector2d type + * to query metric position values. + * @param graph Const reference to the boost::adjacency_list (graph) + * @param ns_prefix Namespace prefix for the marker objects (the strings "Edges" and "Vertices" will be appended) + * @tparam GraphType boost::graph object in which vertices has the field/member \c pos. + */ + template + void publishGraph(const GraphType& graph, const std::string& ns_prefix = "Graph"); + + /** + * @brief Publish multiple 2D paths (each path given as a point sequence) from a container class. + * + * Provide a std::vector< std::vector< T > > in which T.x() and T.y() exist + * and std::vector could be individually substituded by std::list / std::deque /... + * + * A common point-type for object T could be Eigen::Vector2d. + * + * T could be also a raw pointer std::vector< std::vector< T* > >. + * + * @code + * typedef std::vector > PathType; // could be a list or deque as well ... + * std::vector path_container(2); // init 2 empty paths; the container could be a list or deque as well ... + * // Fill path_container.at(0) with Eigen::Vector2d elements, we skip that here + * // Fill path_container.at(1) with Eigen::Vector2d elements, we skip that here + * publishPathContainer( path_container.begin(), path_container.end() ); + * @endcode + * + * @remarks Actually the underlying path does not necessarily need to be a Eigen::Vector2d sequence. + * Eigen::Vector2d can be replaced with any datatype that implement public x() and y() methods.\n + * @param first Bidirectional iterator pointing to the begin of the path + * @param last Bidirectional iterator pointing to the end of the path + * @param ns Namespace for the marker objects (the strings "Edges" and "Vertices" will be appended) + * @tparam BidirIter Bidirectional iterator to a 2D path (sequence of Eigen::Vector2d elements) in a container + */ + template + void publishPathContainer(BidirIter first, BidirIter last, const std::string& ns = "PathContainer"); + + /** + * @brief Publish multiple Tebs from a container class (publish as marker message). + * + * @param teb_planner Container of std::shared_ptr< TebOptPlannerPtr > + * @param ns Namespace for the marker objects + */ + void publishTebContainer(const std::vector< std::shared_ptr >& teb_planner, const std::string& ns = "TebContainer"); + + /** + * @brief Publish a feedback message (multiple trajectory version) + * + * The feedback message contains the all planned trajectory candidates (e.g. if planning in distinctive topologies is turned on). + * Each trajectory is composed of the sequence of poses, the velocity profile and temporal information. + * The feedback message also contains a list of active obstacles. + * @param teb_planners container with multiple tebs (resp. their planner instances) + * @param selected_trajectory_idx Idx of the currently selected trajectory in \c teb_planners + * @param obstacles Container of obstacles + */ + void publishFeedbackMessage(const std::vector< std::shared_ptr >& teb_planners, unsigned int selected_trajectory_idx, const ObstContainer& obstacles); + + /** + * @brief Publish a feedback message (single trajectory overload) + * + * The feedback message contains the planned trajectory + * that is composed of the sequence of poses, the velocity profile and temporal information. + * The feedback message also contains a list of active obstacles. + * @param teb_planner the planning instance + * @param obstacles Container of obstacles + */ + void publishFeedbackMessage(const TebOptimalPlanner& teb_planner, const ObstContainer& obstacles); + + nav2_util::CallbackReturn on_configure(); + nav2_util::CallbackReturn on_activate(); + nav2_util::CallbackReturn on_deactivate(); + nav2_util::CallbackReturn on_cleanup(); + + //@} + + /** + * @brief Helper function to generate a color message from single values + * @param a Alpha value + * @param r Red value + * @param g Green value + * @param b Blue value + * @return Color message + */ + static std_msgs::msg::ColorRGBA toColorMsg(double a, double r, double g, double b); + +protected: + + /** + * @brief Small helper function that checks if initialize() has been called and prints an error message if not. + * @return \c true if not initialized, \c false if everything is ok + */ + bool printErrorWhenNotInitialized() const; + + nav2_util::LifecycleNode::SharedPtr nh_; + + rclcpp_lifecycle::LifecyclePublisher::SharedPtr global_plan_pub_; //!< Publisher for the global plan + rclcpp_lifecycle::LifecyclePublisher::SharedPtr local_plan_pub_; //!< Publisher for the local plan + rclcpp_lifecycle::LifecyclePublisher::SharedPtr teb_poses_pub_; //!< Publisher for the trajectory pose sequence + rclcpp_lifecycle::LifecyclePublisher::SharedPtr teb_marker_pub_; //!< Publisher for visualization markers + rclcpp_lifecycle::LifecyclePublisher::SharedPtr feedback_pub_; //!< Publisher for the feedback message for analysis and debug purposes + + const TebConfig* cfg_; //!< Config class that stores and manages all related parameters + + bool initialized_; //!< Keeps track about the correct initialization of this class + + +public: + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +}; + +//! Abbrev. for shared instances of the TebVisualization +typedef std::shared_ptr TebVisualizationPtr; + +//! Abbrev. for shared instances of the TebVisualization (read-only) +typedef std::shared_ptr TebVisualizationConstPtr; + + +} // namespace teb_local_planner + + +// Include template method implementations / definitions +#include "teb_local_planner/visualization.hpp" + +#endif /* VISUALIZATION_H_ */ diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/visualization.hpp b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/visualization.hpp new file mode 100644 index 0000000..9b45a54 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/include/teb_local_planner/visualization.hpp @@ -0,0 +1,227 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/visualization.h" + +#include +#include + +namespace teb_local_planner +{ + + +template +void TebVisualization::publishGraph(const GraphType& graph, const std::string& ns_prefix) +{ + if ( printErrorWhenNotInitialized() ) + return; + + typedef typename boost::graph_traits::vertex_iterator GraphVertexIterator; + typedef typename boost::graph_traits::edge_iterator GraphEdgeIterator; + + // Visualize Edges + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = ns_prefix + "Edges"; + marker.id = 0; + marker.pose.orientation.w = 1.0; +// #define TRIANGLE +#ifdef TRIANGLE + marker.type = visualization_msgs::msg::Marker::TRIANGLE_LIST; +#else + marker.type = visualization_msgs::msg::Marker::LINE_LIST; +#endif + marker.action = visualization_msgs::msg::Marker::ADD; + + GraphEdgeIterator it_edge, end_edges; + for (boost::tie(it_edge,end_edges) = boost::edges(graph); it_edge!=end_edges; ++it_edge) + { +#ifdef TRIANGLE + geometry_msgs::msg::Point point_start1; + point_start1.x = graph[boost::source(*it_edge,graph)].pos[0]+0.05; + point_start1.y = graph[boost::source(*it_edge,graph)].pos[1]-0.05; + point_start1.z = 0; + marker.points.push_back(point_start1); + geometry_msgs::msg::Point point_start2; + point_start2.x = graph[boost::source(*it_edge,graph)].pos[0]-0.05; + point_start2.y = graph[boost::source(*it_edge,graph)].pos[1]+0.05; + point_start2.z = 0; + marker.points.push_back(point_start2); + +#else + geometry_msgs::msg::Point point_start; + point_start.x = graph[boost::source(*it_edge,graph)].pos[0]; + point_start.y = graph[boost::source(*it_edge,graph)].pos[1]; + point_start.z = 0; + marker.points.push_back(point_start); +#endif + geometry_msgs::msg::Point point_end; + point_end.x = graph[boost::target(*it_edge,graph)].pos[0]; + point_end.y = graph[boost::target(*it_edge,graph)].pos[1]; + point_end.z = 0; + marker.points.push_back(point_end); + + // add color + std_msgs::msg::ColorRGBA color; + color.a = 1.0; + color.r = 0; + color.g = 0; + color.b = 1; + marker.colors.push_back(color); + marker.colors.push_back(color); +#ifdef TRIANGLE + marker.colors.push_back(color); +#endif + } + +#ifdef TRIANGLE + marker.scale.x = 1; + marker.scale.y = 1; + marker.scale.z = 1; +#else + marker.scale.x = 0.01; +#endif + marker.color.a = 1.0; + marker.color.r = 0.0; + marker.color.g = 1.0; + marker.color.b = 0.0; + + // Now publish edge markers + teb_marker_pub_->publish( marker ); + + // Visualize vertices + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = ns_prefix + "Vertices"; + marker.id = 0; + marker.type = visualization_msgs::msg::Marker::POINTS; + marker.action = visualization_msgs::msg::Marker::ADD; + + GraphVertexIterator it_vert, end_vert; + for (boost::tie(it_vert,end_vert) = boost::vertices(graph); it_vert!=end_vert; ++it_vert) + { + geometry_msgs::msg::Point point; + point.x = graph[*it_vert].pos[0]; + point.y = graph[*it_vert].pos[1]; + point.z = 0; + marker.points.push_back(point); + // add color + + std_msgs::msg::ColorRGBA color; + color.a = 1.0; + if (it_vert==end_vert-1) + { + color.r = 1; + color.g = 0; + color.b = 0; + } + else + { + color.r = 0; + color.g = 1; + color.b = 0; + } + marker.colors.push_back(color); + } + // set first color (start vertix) to blue + if (!marker.colors.empty()) + { + marker.colors.front().b = 1; + marker.colors.front().g = 0; + } + + marker.scale.x = 0.1; + marker.scale.y = 0.1; + marker.color.a = 1.0; + marker.color.r = 0.0; + marker.color.g = 1.0; + marker.color.b = 0.0; + + // Now publish vertex markers + teb_marker_pub_->publish( marker ); +} + +template +void TebVisualization::publishPathContainer(BidirIter first, BidirIter last, const std::string& ns) +{ + if ( printErrorWhenNotInitialized() ) + return; + + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = ns; + marker.id = 0; + marker.type = visualization_msgs::msg::Marker::LINE_LIST; + marker.action = visualization_msgs::msg::Marker::ADD; + + typedef typename std::iterator_traits::value_type PathType; // Get type of the path (point container) + + // Iterate through path container + while(first != last) + { + // iterate single path points + typename PathType::const_iterator it_point, end_point; + for (it_point = first->begin(), end_point = std::prev(first->end()); it_point != end_point; ++it_point) + { + geometry_msgs::msg::Point point_start; + point_start.x = get_const_reference(*it_point).x(); + point_start.y = get_const_reference(*it_point).y(); + point_start.z = 0; + marker.points.push_back(point_start); + + geometry_msgs::msg::Point point_end; + point_end.x = get_const_reference(*std::next(it_point)).x(); + point_end.y = get_const_reference(*std::next(it_point)).y(); + point_end.z = 0; + marker.points.push_back(point_end); + } + ++first; + } + marker.scale.x = 0.01; + marker.color.a = 1.0; + marker.color.r = 0.0; + marker.color.g = 1.0; + marker.color.b = 0.0; + + teb_marker_pub_->publish( marker ); +} + + +} // namespace teb_local_planner diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/package.xml b/src/rm_navigation/teb_local_planner/teb_local_planner/package.xml new file mode 100644 index 0000000..770a32a --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/package.xml @@ -0,0 +1,53 @@ + + + teb_local_planner + + 0.9.1 + + + The teb_local_planner package implements a plugin + to the base_local_planner of the 2D navigation stack. + The underlying method called Timed Elastic Band locally optimizes + the robot's trajectory with respect to trajectory execution time, + separation from obstacles and compliance with kinodynamic constraints at runtime. + + + Christoph Rösmann + + BSD + + http://wiki.ros.org/teb_local_planner + + Christoph Rösmann + + ament_cmake + + costmap_converter + costmap_converter_msgs + + geometry_msgs + libg2o + dwb_critics + nav2_core + nav2_costmap_2d + nav2_msgs + nav2_util + pluginlib + rclcpp + rclcpp_action + rclcpp_lifecycle + std_msgs + teb_msgs + tf2 + tf2_eigen + visualization_msgs + builtin_interfaces + nav2_bringup + + ament_cmake_gtest + + + ament_cmake + + + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/params/teb_params.yaml b/src/rm_navigation/teb_local_planner/teb_local_planner/params/teb_params.yaml new file mode 100644 index 0000000..4fc447b --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/params/teb_params.yaml @@ -0,0 +1,109 @@ +controller_server: + ros__parameters: + odom_topic: /odom + use_sim_time: True + controller_frequency: 5.0 + controller_plugin_types: ["teb_local_planner::TebLocalPlannerROS"] + controller_plugins: ["FollowPath"] + FollowPath: + plugin: teb_local_planner::TebLocalPlannerROS + + teb_autosize: 1.0 + dt_ref: 0.3 + dt_hysteresis: 0.1 + max_samples: 500 + global_plan_overwrite_orientation: False + allow_init_with_backwards_motion: False + max_global_plan_lookahead_dist: 3.0 + global_plan_viapoint_sep: 0.3 + global_plan_prune_distance: 1.0 + exact_arc_length: False + feasibility_check_no_poses: 2 + publish_feedback: False + + # Robot + + max_vel_x: 0.26 + max_vel_theta: 1.0 + acc_lim_x: 2.5 + acc_lim_theta: 3.2 + + footprint_model: # types: "point", "circular", "two_circles", "line", "polygon" + type: "circular" + radius: 0.17 # for type "circular" + + # GoalTolerance + + free_goal_vel: False + + # Obstacles + + min_obstacle_dist: 0.27 + inflation_dist: 0.6 + include_costmap_obstacles: True + costmap_obstacles_behind_robot_dist: 1.0 + obstacle_poses_affected: 15 + + dynamic_obstacle_inflation_dist: 0.6 + include_dynamic_obstacles: True + + costmap_converter_plugin: "costmap_converter::CostmapToPolygonsDBSMCCH" + costmap_converter_spin_thread: True + costmap_converter_rate: 5 + + # Optimization + + no_inner_iterations: 5 + no_outer_iterations: 4 + optimization_activate: True + optimization_verbose: False + penalty_epsilon: 0.1 + obstacle_cost_exponent: 4.0 + weight_max_vel_x: 0.5 + weight_max_vel_theta: 0.5 + weight_acc_lim_x: 0.5 + weight_acc_lim_theta: 10.5 + weight_kinematics_nh: 1000.0 + weight_kinematics_forward_drive: 3.0 + weight_kinematics_turning_radius: 1.0 + weight_optimaltime: 1.0 # must be > 0 + weight_shortest_path: 0.0 + weight_obstacle: 100.0 + weight_inflation: 0.2 + weight_dynamic_obstacle: 10.0 # not in use yet + weight_dynamic_obstacle_inflation: 0.2 + weight_viapoint: 50.0 + weight_adapt_factor: 2.0 + + # Homotopy Class Planner + + enable_homotopy_class_planning: True + enable_multithreading: True + max_number_classes: 4 + selection_cost_hysteresis: 5.0 + selection_prefer_initial_plan: 1.0 + selection_obst_cost_scale: 1.0 + selection_alternative_time_cost: True + + roadmap_graph_no_samples: 15 + roadmap_graph_area_width: 5.0 + roadmap_graph_area_length_scale: 1.0 + h_signature_prescaler: 0.5 + h_signature_threshold: 0.1 + obstacle_heading_threshold: 0.45 + switching_blocking_period: 0.0 + viapoints_all_candidates: True + delete_detours_backwards: True + max_ratio_detours_duration_best_duration: 3.0 + visualize_hc_graph: False + visualize_with_time_as_z_axis_scale: 0.0 + + # Recovery + + shrink_horizon_backup: True + shrink_horizon_min_duration: 10.0 + oscillation_recovery: True + oscillation_v_eps: 0.1 + oscillation_omega_eps: 0.1 + oscillation_recovery_min_duration: 10.0 + oscillation_filter_duration: 10.0 diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/cmd_vel_to_ackermann_drive.py b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/cmd_vel_to_ackermann_drive.py new file mode 100755 index 0000000..d8c5b5f --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/cmd_vel_to_ackermann_drive.py @@ -0,0 +1,60 @@ +#!/usr/bin/env python3 + +# Author: christoph.roesmann@tu-dortmund.de + +import rclpy, math +from geometry_msgs.msg import Twist +from ackermann_msgs.msg import AckermannDriveStamped + + +def convert_trans_rot_vel_to_steering_angle(v, omega, wheelbase): + if omega == 0 or v == 0: + return 0 + + radius = v / omega + return math.atan(wheelbase / radius) + + +def cmd_callback(data): + global wheelbase + global ackermann_cmd_topic + global frame_id + global pub + global cmd_angle_instead_rotvel + + v = data.linear.x + # if cmd_angle_instead_rotvel is true, the rotational velocity is already converted in the C++ node + # in this case this script only needs to do the msg conversion from twist to Ackermann drive + if cmd_angle_instead_rotvel: + steering = data.angular.z + else: + steering = convert_trans_rot_vel_to_steering_angle(v, data.angular.z, wheelbase) + + msg = AckermannDriveStamped() + msg.header.stamp = node.get_clock().now().to_msg() + msg.header.frame_id = frame_id + msg.drive.steering_angle = float(steering) + msg.drive.speed = float(v) + + pub.publish(msg) + + + + + +if __name__ == '__main__': + rclpy.init() + global node + node = rclpy.create_node('cmd_vel_to_ackermann_drive') + + twist_cmd_topic = node.declare_parameter("twist_cmd_topic", "/cmd_vel").value + ackermann_cmd_topic = node.declare_parameter("ackermann_cmd_topic", "/ackermann_cmd").value + wheelbase = node.declare_parameter("wheelbase", 1.0).value + frame_id = node.declare_parameter('frame_id', 'odom').value + cmd_angle_instead_rotvel = node.declare_parameter('cmd_angle_instead_rotvel', False).value + + node.create_subscription(Twist, twist_cmd_topic, cmd_callback, 1) + pub = node.create_publisher(AckermannDriveStamped, ackermann_cmd_topic, 1) + + rclpy.spin(node) + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/export_to_mat.py b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/export_to_mat.py new file mode 100755 index 0000000..1cc3351 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/export_to_mat.py @@ -0,0 +1,112 @@ +#!/usr/bin/env python + +# This small script subscribes to the FeedbackMsg message of teb_local_planner +# and exports data to a mat file. +# publish_feedback must be turned on such that the planner publishes this information. +# Author: christoph.roesmann@tu-dortmund.de + +import rospy, math +from teb_local_planner.msg import FeedbackMsg, TrajectoryMsg, TrajectoryPointMsg +from geometry_msgs.msg import PolygonStamped, Point32, Quaternion +from tf.transformations import euler_from_quaternion +import numpy as np +import scipy.io as sio +import time + +def feedback_callback(data): + global got_data + + if not data.trajectories: # empty + trajectory = [] + return + + if got_data: + return + + got_data = True + + # copy trajectory + trajectories = [] + for traj in data.trajectories: + trajectory = [] +# # store as struct and cell array +# for point in traj.trajectory: +# (roll,pitch,yaw) = euler_from_quaternion([point.pose.orientation.x,point.pose.orientation.y,point.pose.orientation.z,point.pose.orientation.w]) +# pose = {'x': point.pose.position.x, 'y': point.pose.position.y, 'theta': yaw} +# velocity = {'v': point.velocity.linear.x, 'omega': point.velocity.angular.z} +# time_from_start = point.time_from_start.to_sec() +# trajectory.append({'pose': pose, 'velocity': velocity, 'time_from_start': time_from_start}) + + # store as all-in-one mat + arr = np.zeros([6, len(traj.trajectory)], dtype='double'); # x, y, theta, v, omega, t + for index, point in enumerate(traj.trajectory): + arr[0,index] = point.pose.position.x + arr[1,index] = point.pose.position.y + (roll,pitch,yaw) = euler_from_quaternion([point.pose.orientation.x,point.pose.orientation.y,point.pose.orientation.z,point.pose.orientation.w]) + arr[2,index] = yaw + arr[3,index] = point.velocity.linear.x + arr[4,index] = point.velocity.angular.z + arr[5,index] = point.time_from_start.to_sec() + +# trajectories.append({'raw': trajectory, 'mat': arr}) + trajectories.append({'data': arr, 'legend': ['x','y','theta','v','omega','t']}) + + # copy obstacles + obstacles = [] + for obst_id, obst in enumerate(data.obstacle_msg.obstacles): + #polygon = [] + #for point in obst.polygon.points: + # polygon.append({'x': point.x, 'y': point.y, 'z': point.z}) + obst_arr = np.zeros([4, len(obst.polygon.points)], dtype='double'); # x, y + for index, point in enumerate(obst.polygon.points): + obst_arr[0, index] = point.x + obst_arr[1, index] = point.y + obst_arr[2, index] = data.obstacle_msg.velocities[obst_id].twist.linear.x + obst_arr[3, index] = data.obstacle_msg.velocities[obst_id].twist.linear.y + + #obstacles.append(polygon) + obstacles.append({'data': obst_arr, 'legend': ['x','y', 'v_x', 'v_y']}) + + + # create main struct: + mat = {'selected_trajectory_idx': data.selected_trajectory_idx, 'trajectories': trajectories, 'obstacles': obstacles} + + timestr = time.strftime("%Y%m%d_%H%M%S") + filename = '/home/albers/MasterThesis/Matlab/Homotopie/test_optim_node/' + 'teb_data_' + timestr + '.mat' + + rospy.loginfo("Saving mat-file '%s'.", filename) + sio.savemat(filename, mat) + + + + + +def feedback_exporter(): + global got_data + + rospy.init_node("export_to_mat", anonymous=True) + + + topic_name = "/test_optim_node/teb_feedback" # define feedback topic here! + + rospy.Subscriber(topic_name, FeedbackMsg, feedback_callback, queue_size = 1) + + rospy.loginfo("Waiting for feedback message on topic %s.", topic_name) + + r = rospy.Rate(2) # define rate here + while not rospy.is_shutdown(): + + if got_data: + rospy.loginfo("Data export completed.") + return + + r.sleep() + +if __name__ == '__main__': + try: + global got_data + got_data = False + feedback_exporter() + except rospy.ROSInterruptException: + pass + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/export_to_svg.py b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/export_to_svg.py new file mode 100755 index 0000000..8d5edf2 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/export_to_svg.py @@ -0,0 +1,244 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +======================================================================================== +# This small script subscribes to the FeedbackMsg message of teb_local_planner +# and converts the current scene to a svg-image +# publish_feedback must be turned on such that the planner publishes this information. +# Author: christoph.roesmann@tu-dortmund.de + +It is recommendable to start this node after initialization of TEB is completed. + +Requirements: +svgwrite: A Python library to create SVG drawings. http://pypi.python.org/pypi/svgwrite +======================================================================================= +""" +import roslib; +import rospy +import svgwrite +import math +import sys +import time +import random +from svgwrite import cm, mm +from teb_local_planner.msg import FeedbackMsg, TrajectoryMsg, TrajectoryPointMsg +from geometry_msgs.msg import PolygonStamped, Point32, Quaternion + + +# ================= PARAMETERS ================== +# TODO: In case of a more general node, change parameter to ros-parameter +# Drawing parameters: +SCALE = 200 # Overall scaling: 100 pixel = 1 m +MIN_POSE_DISTANCE = 0.3 # Distance between two consecutive poses in SVG-image +SCALE_VELOCITY_VEC = 0.4 # Scaling of velocity vectors -> 1 cell = 1/SCALE_VELOCITY_VEC m/s +GRID_X_MIN = -2 # Define, how many cells your grid should contain in each direction. +GRID_X_MAX = 2 +GRID_Y_MIN = -2 +GRID_Y_MAX = 1 + +# TEB parameters: +OBSTACLE_DIST = 50 *SCALE/100 # cm + + +# ================= FUNCTIONS =================== + +def sign(number): + """ + Signum function: get sign of a number + + @param number: get sign of this number + @type number: numeric type (eg. integer) + @return: sign of number + @rtype: integer {1, -1, 0} + """ + return cmp(number,0) + +def arrowMarker(color='green', orientation='auto'): + """ + Create an arrow marker with svgwrite + + @return: arrow marker + @rtype: svg_write marker object + """ + arrow = svg.marker(insert=(1,5), size=(4,3), orient=orientation) + arrow.viewbox(width=10, height=10) + arrow.add(svg.polyline([(0,0),(10,5),(0,10),(1,5)], fill=color, opacity=1.0)) + svg.defs.add(arrow) + return arrow + +def quaternion2YawDegree(orientation): + """ + Get yaw angle [degree] from quaternion representation + + @param orientation: orientation in quaternions to read from + @type orientation: geometry_msgs/Quaternion + @return: yaw angle [degree] + @rtype: float + """ + yawRad = math.atan2(2*(orientation.x*orientation.y+orientation.z*orientation.w),1-2*(pow(orientation.y,2)+pow(orientation.z,2))) + return yawRad*180/math.pi + + +def feedback_callback(data): + """ + Callback for receiving TEB and obstacle information + + @param data: Received feedback message + @type data: visualization_msgs/Marker + + @globalparam tebList: Received TEB List + @globaltype tebList: teb_local_planner/FeedbackMsg + """ + # TODO: Remove global variables + global feedbackMsg + + if not feedbackMsg: + feedbackMsg = data + rospy.loginfo("TEB feedback message received...") + + +# ================ MAIN FUNCTION ================ + +if __name__ == '__main__': + rospy.init_node('export_to_svg', anonymous=True) + + topic_name = "/test_optim_node/teb_feedback" # define feedback topic here! + + rospy.Subscriber(topic_name, FeedbackMsg, feedback_callback, queue_size = 1) + + rospy.loginfo("Waiting for feedback message on topic %s.", topic_name) + + rate = rospy.Rate(10.0) + feedbackMsg = [] + + timestr = time.strftime("%Y%m%d_%H%M%S") + filename_string = "teb_svg_" + timestr + '.svg' + + rospy.loginfo("SVG will be written to '%s'.", filename_string) + + random.seed(0) + + svg=svgwrite.Drawing(filename=filename_string, debug=True) + + # Create viewbox -> this box defines the size of the visible drawing + svg.viewbox(GRID_X_MIN*SCALE-1*SCALE,GRID_Y_MIN*SCALE-1*SCALE,GRID_X_MAX*SCALE-GRID_X_MIN*SCALE+2*SCALE,GRID_Y_MAX*SCALE-GRID_Y_MIN*SCALE+2*SCALE) + + # Draw grid: + hLines = svg.add(svg.g(id='hLines', stroke='black')) + hLines.add(svg.line(start=(GRID_X_MIN*SCALE, 0), end=(GRID_X_MAX*SCALE, 0))) + for y in range(GRID_Y_MAX): + hLines.add(svg.line(start=(GRID_X_MIN*SCALE, SCALE+y*SCALE), end=(GRID_X_MAX*SCALE, SCALE+y*SCALE))) + for y in range(-GRID_Y_MIN): + hLines.add(svg.line(start=(GRID_X_MIN*SCALE, -SCALE-y*SCALE), end=(GRID_X_MAX*SCALE, -SCALE-y*SCALE))) + vLines = svg.add(svg.g(id='vline', stroke='black')) + vLines.add(svg.line(start=(0, GRID_Y_MIN*SCALE), end=(0, GRID_Y_MAX*SCALE))) + for x in range(GRID_X_MAX): + vLines.add(svg.line(start=(SCALE+x*SCALE, GRID_Y_MIN*SCALE), end=(SCALE+x*SCALE, GRID_Y_MAX*SCALE))) + for x in range(-GRID_X_MIN): + vLines.add(svg.line(start=(-SCALE-x*SCALE, GRID_Y_MIN*SCALE), end=(-SCALE-x*SCALE, GRID_Y_MAX*SCALE))) + + + # Draw legend: + legend = svg.g(id='legend', font_size=25) + stringGeometry = "Geometry: 1 Unit = 1.0m" + legendGeometry = svg.text(stringGeometry) + legend.add(legendGeometry) + legend.translate(tx=GRID_X_MIN*SCALE, ty=GRID_Y_MAX*SCALE + 30) # Move legend to buttom left corner + svg.add(legend) + + + #arrow = arrowMarker() # Init arrow marker + + rospy.loginfo("Initialization completed.\nWaiting for feedback message...") + + # -------------------- WAIT FOR CALLBACKS -------------------------- + while not rospy.is_shutdown(): + if feedbackMsg: + break # Leave loop after receiving all necessary TEB information (see callbacks) to finish drawing + rate.sleep() + # ------------------------------------------------------------------ + + if not feedbackMsg.trajectories: + rospy.loginfo("Received message does not contain trajectories. Shutting down...") + sys.exit() + + if len(feedbackMsg.trajectories[0].trajectory) < 2: + rospy.loginfo("Received message does not contain trajectories with at least two states (start and goal). Shutting down...") + sys.exit() + + # iterate trajectories + for index, traj in enumerate(feedbackMsg.trajectories): + + #color + traj_color = svgwrite.rgb(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255), 'RGB') + + # Iterate through TEB positions -> Draw Paths + points = [] + for point in traj.trajectory: + points.append( (point.pose.position.x*SCALE,-point.pose.position.y*SCALE) ) # y is negative in image coordinates + # svgwrite rotates clockwise! + + + if index == feedbackMsg.selected_trajectory_idx: # highlight currently selected teb + line = svg.add( svg.polyline(points=points, fill='none', stroke=traj_color, stroke_width=10, stroke_linecap='round', \ + stroke_linejoin='round', opacity=1.0 ) ) + else: + line = svg.add( svg.polyline(points=points, fill='none', stroke=traj_color, stroke_width=10, stroke_linecap='butt', \ + stroke_linejoin='round', stroke_dasharray='10,3', opacity=1.0 ) ) + #marker_points = points[::7] + #markerline = svg.add( svg.polyline(points=marker_points, fill='none', stroke=traj_color, stroke_width=10, opacity=0.0 ) ) + #arrow = arrowMarker(traj_color) + #markerline.set_markers( (arrow, arrow, arrow) ) + #line.set_markers( (arrow, arrow, arrow) ) + #line['marker-start'] = arrow.get_funciri() + + + # Add Start and Goal Point + start_pose = feedbackMsg.trajectories[0].trajectory[0].pose + goal_pose = feedbackMsg.trajectories[0].trajectory[len(feedbackMsg.trajectories[0].trajectory)-1].pose + start_position = start_pose.position + goal_position = goal_pose.position + svg.add(svg.circle(center=(start_position.x*SCALE,-start_position.y*SCALE), r=10, stroke_width=1, stroke='blue', fill ='blue')) + svg.add(svg.text("Start", (start_position.x*SCALE-70, -start_position.y*SCALE+45), font_size=35)) # Add label + svg.add(svg.circle(center=(goal_position.x*SCALE,-goal_position.y*SCALE), r=10, stroke_width=1, stroke='red', fill ='red')) + svg.add(svg.text("Goal", (goal_position.x*SCALE-40, -goal_position.y*SCALE+45), font_size=35)) # Add label + + # draw start arrow + start_arrow = svg.polyline([(0,-1),(6,-1),(5,-5),(15,0),(5,5),(6,1),(0,1)], fill='blue', opacity=1.0) + start_arrow.translate(start_position.x*SCALE,-start_position.y*SCALE) + start_arrow.rotate( quaternion2YawDegree(start_pose.orientation) ) + start_arrow.scale(3) + svg.add(start_arrow) + + # draw goal arrow + goal_arrow = svg.polyline([(0,-1),(6,-1),(5,-5),(15,0),(5,5),(6,1),(0,1)], fill='red', opacity=1.0) + goal_arrow.translate(goal_position.x*SCALE,-goal_position.y*SCALE) + goal_arrow.rotate( quaternion2YawDegree(goal_pose.orientation) ) + goal_arrow.scale(3) + svg.add(goal_arrow) + + # Draw obstacles + for obstacle in feedbackMsg.obstacles: + if len(obstacle.polygon.points) == 1: # point obstacle + point = obstacle.polygon.points[0] + svg.add(svg.circle(center=(point.x*SCALE,-point.y*SCALE), r=OBSTACLE_DIST, stroke_width=1, stroke='grey', fill ='grey', opacity=0.3)) + svg.add(svg.circle(center=(point.x*SCALE,-point.y*SCALE), r=15, stroke_width=1, stroke='black', fill ='black')) + svg.add(svg.text("Obstacle", (point.x*SCALE-70, -point.y*SCALE+45), font_size=35)) # Add label + if len(obstacle.polygon.points) == 2: # line obstacle + line_start = obstacle.polygon.points[0] + line_end = obstacle.polygon.points[1] + svg.add(svg.line(start=(line_start.x*SCALE,-line_start.y*SCALE), end=(line_end.x*SCALE,-line_end.y*SCALE), stroke='black', fill='gray', stroke_width=1, opacity=1.0)) + svg.add(svg.text("Obstacle", (line_start.x*SCALE-70, -line_start.y*SCALE+45), font_size=35)) # Add label + if len(obstacle.polygon.points) > 2: # polygon obstacle + vertices = [] + for point in obstacle.polygon.points: + vertices.append((point.x*SCALE, -point.y*SCALE)) + svg.add(svg.polygon(points=vertices, stroke='black', fill='gray', stroke_width=1, opacity=1.0)) + svg.add(svg.text("Obstacle", (obstacle.polygon.points[0].x*SCALE-70, -obstacle.polygon.points.y*SCALE+45), font_size=35)) # Add label + + + + # Save svg to file (svg_output.svg) and exit node + svg.save() + + rospy.loginfo("Drawing completed.") diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_dynamic_obstacle.py b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_dynamic_obstacle.py new file mode 100755 index 0000000..0cc16d4 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_dynamic_obstacle.py @@ -0,0 +1,67 @@ +#!/usr/bin/env python + +# Author: franz.albers@tu-dortmund.de + +import rospy, math, tf +from costmap_converter.msg import ObstacleArrayMsg, ObstacleMsg +from geometry_msgs.msg import PolygonStamped, Point32, QuaternionStamped, Quaternion, TwistWithCovariance +from tf.transformations import quaternion_from_euler + + +def publish_obstacle_msg(): + pub = rospy.Publisher('/test_optim_node/obstacles', ObstacleArrayMsg, queue_size=1) + #pub = rospy.Publisher('/p3dx/move_base/TebLocalPlannerROS/obstacles', ObstacleArrayMsg, queue_size=1) + rospy.init_node("test_obstacle_msg") + + y_0 = -3.0 + vel_x = 0.0 + vel_y = 0.3 + range_y = 6.0 + + obstacle_msg = ObstacleArrayMsg() + obstacle_msg.header.stamp = rospy.Time.now() + obstacle_msg.header.frame_id = "map" # CHANGE HERE: odom/map + + # Add point obstacle + obstacle_msg.obstacles.append(ObstacleMsg()) + obstacle_msg.obstacles[0].id = 99 + obstacle_msg.obstacles[0].polygon.points = [Point32()] + obstacle_msg.obstacles[0].polygon.points[0].x = -1.5 + obstacle_msg.obstacles[0].polygon.points[0].y = 0 + obstacle_msg.obstacles[0].polygon.points[0].z = 0 + + yaw = math.atan2(vel_y, vel_x) + q = tf.transformations.quaternion_from_euler(0,0,yaw) + obstacle_msg.obstacles[0].orientation = Quaternion(*q) + + obstacle_msg.obstacles[0].velocities.twist.linear.x = vel_x + obstacle_msg.obstacles[0].velocities.twist.linear.y = vel_y + obstacle_msg.obstacles[0].velocities.twist.linear.z = 0 + obstacle_msg.obstacles[0].velocities.twist.angular.x = 0 + obstacle_msg.obstacles[0].velocities.twist.angular.y = 0 + obstacle_msg.obstacles[0].velocities.twist.angular.z = 0 + + r = rospy.Rate(10) # 10hz + t = 0.0 + while not rospy.is_shutdown(): + + # Vary y component of the point obstacle + if (vel_y >= 0): + obstacle_msg.obstacles[0].polygon.points[0].y = y_0 + (vel_y*t)%range_y + else: + obstacle_msg.obstacles[0].polygon.points[0].y = y_0 + (vel_y*t)%range_y - range_y + + t = t + 0.1 + + pub.publish(obstacle_msg) + + r.sleep() + + + +if __name__ == '__main__': + try: + publish_obstacle_msg() + except rospy.ROSInterruptException: + pass + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_test_obstacles.py b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_test_obstacles.py new file mode 100755 index 0000000..800803d --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_test_obstacles.py @@ -0,0 +1,76 @@ +#!/usr/bin/env python + +# Author: christoph.roesmann@tu-dortmund.de + +import rospy, math +from costmap_converter.msg import ObstacleArrayMsg, ObstacleMsg +from geometry_msgs.msg import PolygonStamped, Point32 + + +def publish_obstacle_msg(): + pub = rospy.Publisher('/test_optim_node/obstacles', ObstacleArrayMsg, queue_size=1) + #pub = rospy.Publisher('/p3dx/move_base/TebLocalPlannerROS/obstacles', ObstacleArrayMsg, queue_size=1) + rospy.init_node("test_obstacle_msg") + + + obstacle_msg = ObstacleArrayMsg() + obstacle_msg.header.stamp = rospy.Time.now() + obstacle_msg.header.frame_id = "odom" # CHANGE HERE: odom/map + + # Add point obstacle + obstacle_msg.obstacles.append(ObstacleMsg()) + obstacle_msg.obstacles[0].id = 0 + obstacle_msg.obstacles[0].polygon.points = [Point32()] + obstacle_msg.obstacles[0].polygon.points[0].x = 1.5 + obstacle_msg.obstacles[0].polygon.points[0].y = 0 + obstacle_msg.obstacles[0].polygon.points[0].z = 0 + + + # Add line obstacle + obstacle_msg.obstacles.append(ObstacleMsg()) + obstacle_msg.obstacles[1].id = 1 + line_start = Point32() + line_start.x = -2.5 + line_start.y = 0.5 + #line_start.y = -3 + line_end = Point32() + line_end.x = -2.5 + line_end.y = 2 + #line_end.y = -4 + obstacle_msg.obstacles[1].polygon.points = [line_start, line_end] + + # Add polygon obstacle + obstacle_msg.obstacles.append(ObstacleMsg()) + obstacle_msg.obstacles[1].id = 2 + v1 = Point32() + v1.x = -1 + v1.y = -1 + v2 = Point32() + v2.x = -0.5 + v2.y = -1.5 + v3 = Point32() + v3.x = 0 + v3.y = -1 + obstacle_msg.obstacles[2].polygon.points = [v1, v2, v3] + + + r = rospy.Rate(10) # 10hz + t = 0.0 + while not rospy.is_shutdown(): + + # Vary y component of the point obstacle + obstacle_msg.obstacles[0].polygon.points[0].y = 1*math.sin(t) + t = t + 0.1 + + pub.publish(obstacle_msg) + + r.sleep() + + + +if __name__ == '__main__': + try: + publish_obstacle_msg() + except rospy.ROSInterruptException: + pass + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_viapoints.py b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_viapoints.py new file mode 100755 index 0000000..7bd0c7e --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/publish_viapoints.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python + +# Author: christoph.roesmann@tu-dortmund.de + +import rospy, math +from geometry_msgs.msg import PoseStamped +from nav_msgs.msg import Path + + +def publish_via_points_msg(): + pub = rospy.Publisher('/test_optim_node/via_points', Path, queue_size=1) + rospy.init_node("test_via_points_msg") + + + via_points_msg = Path() + via_points_msg.header.stamp = rospy.Time.now() + via_points_msg.header.frame_id = "odom" # CHANGE HERE: odom/map + + # Add via-points + point1 = PoseStamped() + point1.pose.position.x = 0.0; + point1.pose.position.y = 1.5; + + point2 = PoseStamped() + point2.pose.position.x = 2.0; + point2.pose.position.y = -0.5; + + + via_points_msg.poses = [point1, point2] + + r = rospy.Rate(5) # 10hz + t = 0.0 + while not rospy.is_shutdown(): + + pub.publish(via_points_msg) + + r.sleep() + + + +if __name__ == '__main__': + try: + publish_via_points_msg() + except rospy.ROSInterruptException: + pass + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/visualize_velocity_profile.py b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/visualize_velocity_profile.py new file mode 100755 index 0000000..b9b6d78 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/scripts/visualize_velocity_profile.py @@ -0,0 +1,76 @@ +#!/usr/bin/env python + +# This small script subscribes to the FeedbackMsg message of teb_local_planner +# and plots the current velocity. +# publish_feedback must be turned on such that the planner publishes this information. +# Author: christoph.roesmann@tu-dortmund.de + +import rospy, math +from teb_local_planner.msg import FeedbackMsg, TrajectoryMsg, TrajectoryPointMsg +from geometry_msgs.msg import PolygonStamped, Point32 +import numpy as np +import matplotlib.pyplot as plotter + +def feedback_callback(data): + global trajectory + + if not data.trajectories: # empty + trajectory = [] + return + trajectory = data.trajectories[data.selected_trajectory_idx].trajectory + + +def plot_velocity_profile(fig, ax_v, ax_omega, t, v, omega): + ax_v.cla() + ax_v.grid() + ax_v.set_ylabel('Trans. velocity [m/s]') + ax_v.plot(t, v, '-bx') + ax_omega.cla() + ax_omega.grid() + ax_omega.set_ylabel('Rot. velocity [rad/s]') + ax_omega.set_xlabel('Time [s]') + ax_omega.plot(t, omega, '-bx') + fig.canvas.draw() + + + +def velocity_plotter(): + global trajectory + rospy.init_node("visualize_velocity_profile", anonymous=True) + + topic_name = "/test_optim_node/teb_feedback" + topic_name = rospy.get_param('~feedback_topic', topic_name) + rospy.Subscriber(topic_name, FeedbackMsg, feedback_callback, queue_size = 1) # define feedback topic here! + + rospy.loginfo("Visualizing velocity profile published on '%s'.",topic_name) + rospy.loginfo("Make sure to enable rosparam 'publish_feedback' in the teb_local_planner.") + + # two subplots sharing the same t axis + fig, (ax_v, ax_omega) = plotter.subplots(2, sharex=True) + plotter.ion() + plotter.show() + + + r = rospy.Rate(2) # define rate here + while not rospy.is_shutdown(): + + t = [] + v = [] + omega = [] + + for point in trajectory: + t.append(point.time_from_start.to_sec()) + v.append(point.velocity.linear.x) + omega.append(point.velocity.angular.z) + + plot_velocity_profile(fig, ax_v, ax_omega, np.asarray(t), np.asarray(v), np.asarray(omega)) + + r.sleep() + +if __name__ == '__main__': + try: + trajectory = [] + velocity_plotter() + except rospy.ROSInterruptException: + pass + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/graph_search.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/graph_search.cpp new file mode 100644 index 0000000..f2d1218 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/graph_search.cpp @@ -0,0 +1,346 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Authors: Christoph Rösmann, Franz Albers + *********************************************************************/ + +#include "teb_local_planner/graph_search.h" +#include "teb_local_planner/homotopy_class_planner.h" + +namespace teb_local_planner +{ + +void GraphSearchInterface::DepthFirst(HcGraph& g, std::vector& visited, const HcGraphVertexType& goal, double start_orientation, + double goal_orientation, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel) +{ + // see http://www.technical-recipes.com/2011/a-recursive-algorithm-to-find-all-paths-between-two-given-nodes/ for details on finding all simple paths + + if ((int)hcp_->getTrajectoryContainer().size() >= cfg_->hcp.max_number_classes) + return; // We do not need to search for further possible alternative homotopy classes. + + HcGraphVertexType back = visited.back(); + + /// Examine adjacent nodes + HcGraphAdjecencyIterator it, end; + for ( boost::tie(it,end) = boost::adjacent_vertices(back,g); it!=end; ++it) + { + if ( std::find(visited.begin(), visited.end(), *it)!=visited.end() ) + continue; // already visited + + if ( *it == goal ) // goal reached + { + visited.push_back(*it); + + // Add new TEB, if this path belongs to a new homotopy class + hcp_->addAndInitNewTeb(visited.begin(), visited.end(), std::bind(getVector2dFromHcGraph, std::placeholders::_1, boost::cref(graph_)), + start_orientation, goal_orientation, start_velocity); + + visited.pop_back(); + break; + } + } + + /// Recursion for all adjacent vertices + for ( boost::tie(it,end) = boost::adjacent_vertices(back,g); it!=end; ++it) + { + if ( std::find(visited.begin(), visited.end(), *it)!=visited.end() || *it == goal) + continue; // already visited || goal reached + + + visited.push_back(*it); + + // recursion step + DepthFirst(g, visited, goal, start_orientation, goal_orientation, start_velocity, free_goal_vel); + + visited.pop_back(); + } +} + + + +void lrKeyPointGraph::createGraph(const PoseSE2& start, const PoseSE2& goal, double dist_to_obst, double obstacle_heading_threshold, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel) +{ + // Clear existing graph and paths + clearGraph(); + if((int)hcp_->getTrajectoryContainer().size() >= cfg_->hcp.max_number_classes) + return; + // Direction-vector between start and goal and normal-vector: + Eigen::Vector2d diff = goal.position()-start.position(); + + if (diff.norm()goal_tolerance.xy_goal_tolerance) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "HomotopyClassPlanner::createProbRoadmapGraph(): xy-goal-tolerance already reached."); + if (hcp_->getTrajectoryContainer().empty()) + { + RCLCPP_INFO(rclcpp::get_logger("teb_local_planner"), + "HomotopyClassPlanner::createProbRoadmapGraph(): Initializing a small straight line to just correct orientation errors."); + hcp_->addAndInitNewTeb(start, goal, start_velocity, free_goal_vel); + } + return; + } + + Eigen::Vector2d normal(-diff[1],diff[0]); // normal-vector + normal.normalize(); + normal = normal*dist_to_obst; // scale with obstacle_distance; + + // Insert Vertices + HcGraphVertexType start_vtx = boost::add_vertex(graph_); // start vertex + graph_[start_vtx].pos = start.position(); + diff.normalize(); + + // store nearest obstacle keypoints -> only used if limit_obstacle_heading is enabled + std::pair nearest_obstacle; // both vertices are stored + double min_dist = DBL_MAX; + + if (hcp_->obstacles()!=NULL) + { + for (ObstContainer::const_iterator it_obst = hcp_->obstacles()->begin(); it_obst != hcp_->obstacles()->end(); ++it_obst) + { + // check if obstacle is placed in front of start point + Eigen::Vector2d start2obst = (*it_obst)->getCentroid() - start.position(); + double dist = start2obst.norm(); + if (start2obst.dot(diff)/dist<0.1) + continue; + + // Add Keypoints + HcGraphVertexType u = boost::add_vertex(graph_); + graph_[u].pos = (*it_obst)->getCentroid() + normal; + HcGraphVertexType v = boost::add_vertex(graph_); + graph_[v].pos = (*it_obst)->getCentroid() - normal; + + // store nearest obstacle + if (obstacle_heading_threshold && distobstacles()!=NULL) + { + bool collision = false; + for (ObstContainer::const_iterator it_obst = hcp_->obstacles()->begin(); it_obst != hcp_->obstacles()->end(); ++it_obst) + { + if ( (*it_obst)->checkLineIntersection(graph_[*it_i].pos,graph_[*it_j].pos, 0.5*dist_to_obst) ) + { + collision = true; + break; + } + } + if (collision) + continue; + } + + // Create Edge + boost::add_edge(*it_i,*it_j,graph_); + } + } + + + // Find all paths between start and goal! + std::vector visited; + visited.push_back(start_vtx); + DepthFirst(graph_,visited,goal_vtx, start.theta(), goal.theta(), start_velocity, free_goal_vel); +} + + +void ProbRoadmapGraph::createGraph(const PoseSE2& start, const PoseSE2& goal, double dist_to_obst, double obstacle_heading_threshold, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel) +{ + // Clear existing graph and paths + clearGraph(); + if((int)hcp_->getTrajectoryContainer().size() >= cfg_->hcp.max_number_classes) + return; + // Direction-vector between start and goal and normal-vector: + Eigen::Vector2d diff = goal.position()-start.position(); + double start_goal_dist = diff.norm(); + + if (start_goal_distgoal_tolerance.xy_goal_tolerance) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "HomotopyClassPlanner::createProbRoadmapGraph(): xy-goal-tolerance already reached."); + if (hcp_->getTrajectoryContainer().empty()) + { + RCLCPP_INFO(rclcpp::get_logger("teb_local_planner"), + "HomotopyClassPlanner::createProbRoadmapGraph(): Initializing a small straight line to just correct orientation errors."); + hcp_->addAndInitNewTeb(start, goal, start_velocity, free_goal_vel); + } + return; + } + Eigen::Vector2d normal(-diff.coeffRef(1),diff.coeffRef(0)); // normal-vector + normal.normalize(); + + // Now sample vertices between start, goal and a specified width between both sides + // Let's start with a square area between start and goal (maybe change it later to something like a circle or whatever) + + double area_width = cfg_->hcp.roadmap_graph_area_width; + + boost::random::uniform_real_distribution distribution_x(0, start_goal_dist * cfg_->hcp.roadmap_graph_area_length_scale); + boost::random::uniform_real_distribution distribution_y(0, area_width); + + double phi = atan2(diff.coeffRef(1),diff.coeffRef(0)); // rotate area by this angle + Eigen::Rotation2D rot_phi(phi); + + Eigen::Vector2d area_origin; + if (cfg_->hcp.roadmap_graph_area_length_scale != 1.0) + area_origin = start.position() + 0.5*(1.0-cfg_->hcp.roadmap_graph_area_length_scale)*start_goal_dist*diff.normalized() - 0.5*area_width*normal; // bottom left corner of the origin + else + area_origin = start.position() - 0.5*area_width*normal; // bottom left corner of the origin + + // Insert Vertices + HcGraphVertexType start_vtx = boost::add_vertex(graph_); // start vertex + graph_[start_vtx].pos = start.position(); + diff.normalize(); // normalize in place + + + // Start sampling + for (int i=0; i < cfg_->hcp.roadmap_graph_no_samples; ++i) + { + Eigen::Vector2d sample; +// bool coll_free; +// do // sample as long as a collision free sample is found +// { + // Sample coordinates + sample = area_origin + rot_phi*Eigen::Vector2d(distribution_x(rnd_generator_), distribution_y(rnd_generator_)); + + // Test for collision + // we do not care for collision checking here to improve efficiency, since we perform resampling repeatedly. + // occupied vertices are ignored in the edge insertion state since they always violate the edge-obstacle collision check. +// coll_free = true; +// for (ObstContainer::const_iterator it_obst = obstacles_->begin(); it_obst != obstacles_->end(); ++it_obst) +// { +// if ( (*it_obst)->checkCollision(sample, dist_to_obst)) // TODO really keep dist_to_obst here? +// { +// coll_free = false; +// break; +// } +// } +// +// } while (!coll_free && ros::ok()); + + // Add new vertex + HcGraphVertexType v = boost::add_vertex(graph_); + graph_[v].pos = sample; + } + + // Now add goal vertex + HcGraphVertexType goal_vtx = boost::add_vertex(graph_); // goal vertex + graph_[goal_vtx].pos = goal.position(); + + + // Insert Edges + HcGraphVertexIterator it_i, end_i, it_j, end_j; + for (boost::tie(it_i,end_i) = boost::vertices(graph_); it_i!=boost::prior(end_i); ++it_i) // ignore goal in this loop + { + for (boost::tie(it_j,end_j) = boost::vertices(graph_); it_j!=end_j; ++it_j) // check all forward connections + { + if (it_i==it_j) // same vertex found + continue; + + Eigen::Vector2d distij = graph_[*it_j].pos-graph_[*it_i].pos; + distij.normalize(); // normalize in place + + // Check if the direction is backwards: + if (distij.dot(diff)<=obstacle_heading_threshold) + continue; // diff is already normalized + + + // Collision Check + bool collision = false; + for (ObstContainer::const_iterator it_obst = hcp_->obstacles()->begin(); it_obst != hcp_->obstacles()->end(); ++it_obst) + { + if ( (*it_obst)->checkLineIntersection(graph_[*it_i].pos,graph_[*it_j].pos, dist_to_obst) ) + { + collision = true; + break; + } + } + if (collision) + continue; + + // Create Edge + boost::add_edge(*it_i,*it_j,graph_); + } + } + + /// Find all paths between start and goal! + std::vector visited; + visited.push_back(start_vtx); + DepthFirst(graph_,visited,goal_vtx, start.theta(), goal.theta(), start_velocity, free_goal_vel); +} + +} // end namespace diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/homotopy_class_planner.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/homotopy_class_planner.cpp new file mode 100644 index 0000000..6fbf995 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/homotopy_class_planner.cpp @@ -0,0 +1,854 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/homotopy_class_planner.h" + +#include + +namespace teb_local_planner +{ + +HomotopyClassPlanner::HomotopyClassPlanner() : cfg_(NULL), obstacles_(NULL), via_points_(NULL), robot_model_(new PointRobotFootprint()), initial_plan_(NULL), initialized_(false) +{ +} + +HomotopyClassPlanner::HomotopyClassPlanner(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles, + TebVisualizationPtr visual, const ViaPointContainer* via_points) : initial_plan_(NULL) +{ + initialize(node, cfg, obstacles, visual, via_points); +} + +HomotopyClassPlanner::~HomotopyClassPlanner() +{ +} + +void HomotopyClassPlanner::initialize(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles, + TebVisualizationPtr visual, const ViaPointContainer* via_points) +{ + node_ = node; + cfg_ = &cfg; + obstacles_ = obstacles; + via_points_ = via_points; + + if (cfg_->hcp.simple_exploration) + graph_search_ = std::shared_ptr(new lrKeyPointGraph(*cfg_, this)); + else + graph_search_ = std::shared_ptr(new ProbRoadmapGraph(*cfg_, this)); + + std::random_device rd; + random_.seed(rd()); + + // This is needed to prevent different time sources error + last_eq_class_switching_time_ = rclcpp::Time(0, 0, node->get_clock()->get_clock_type()); + + initialized_ = true; + + setVisualization(visual); +} + +void HomotopyClassPlanner::setVisualization(const TebVisualizationPtr& visualization) +{ + visualization_ = visualization; +} + + + +bool HomotopyClassPlanner::plan(const std::vector& initial_plan, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel) +{ + TEB_ASSERT_MSG(initialized_, "Call initialize() first."); + + // store initial plan for further initializations (must be valid for the lifetime of this object or clearPlanner() is called!) + initial_plan_ = &initial_plan; + + PoseSE2 start(initial_plan.front().pose); + PoseSE2 goal(initial_plan.back().pose); + + return plan(start, goal, start_vel, free_goal_vel); +} + +// tf2 doesn't have tf::Pose +//bool HomotopyClassPlanner::plan(const tf::Pose& start, const tf::Pose& goal, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel) +//{ +// TEB_ASSERT_MSG(initialized_, "Call initialize() first."); +// PoseSE2 start_pose(start); +// PoseSE2 goal_pose(goal); +// return plan(start_pose, goal_pose, start_vel, free_goal_vel); +//} + +bool HomotopyClassPlanner::plan(const PoseSE2& start, const PoseSE2& goal, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel) +{ + TEB_ASSERT_MSG(initialized_, "Call initialize() first."); + + // Update old TEBs with new start, goal and velocity + updateAllTEBs(&start, &goal, start_vel); + + // Init new TEBs based on newly explored homotopy classes + exploreEquivalenceClassesAndInitTebs(start, goal, cfg_->obstacles.min_obstacle_dist, start_vel, free_goal_vel); + // update via-points if activated + updateReferenceTrajectoryViaPoints(cfg_->hcp.viapoints_all_candidates); + // Optimize all trajectories in alternative homotopy classes + optimizeAllTEBs(cfg_->optim.no_inner_iterations, cfg_->optim.no_outer_iterations); + // Select which candidate (based on alternative homotopy classes) should be used + selectBestTeb(); + + initial_plan_ = nullptr; // clear pointer to any previous initial plan (any previous plan is useless regarding the h-signature); + return true; +} + +bool HomotopyClassPlanner::getVelocityCommand(double& vx, double& vy, double& omega, int look_ahead_poses) const +{ + TebOptimalPlannerConstPtr best_teb = bestTeb(); + if (!best_teb) + { + vx = 0; + vy = 0; + omega = 0; + return false; + } + + return best_teb->getVelocityCommand(vx, vy, omega, look_ahead_poses); +} + + + + +void HomotopyClassPlanner::visualize() +{ + if (visualization_) + { + // Visualize graph + if (cfg_->hcp.visualize_hc_graph && graph_search_) + visualization_->publishGraph(graph_search_->graph_); + + // Visualize active tebs as marker + visualization_->publishTebContainer(tebs_); + + // Visualize best teb and feedback message if desired + TebOptimalPlannerConstPtr best_teb = bestTeb(); + if (best_teb) + { + visualization_->publishLocalPlanAndPoses(best_teb->teb()); + + if (best_teb->teb().sizePoses() > 0) //TODO maybe store current pose (start) within plan method as class field. + visualization_->publishRobotFootprintModel(best_teb->teb().Pose(0), *cfg_->robot_model); + + // feedback message + if (cfg_->trajectory.publish_feedback) + { + int best_idx = bestTebIdx(); + if (best_idx>=0) + visualization_->publishFeedbackMessage(tebs_, (unsigned int) best_idx, *obstacles_); + } + } + } + else RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "Ignoring HomotopyClassPlanner::visualize() call, since no visualization class was instantiated before."); +} + + + +bool HomotopyClassPlanner::hasEquivalenceClass(const EquivalenceClassPtr& eq_class) const +{ + // iterate existing h-signatures and check if there is an existing H-Signature similar the candidate + for (const std::pair& eqrel : equivalence_classes_) + { + if (eq_class->isEqual(*eqrel.first)) + return true; // Found! Homotopy class already exists, therefore nothing added + } + return false; +} + +bool HomotopyClassPlanner::addEquivalenceClassIfNew(const EquivalenceClassPtr& eq_class, bool lock) +{ + if (!eq_class) + return false; + + if (!eq_class->isValid()) + { + RCLCPP_WARN(rclcpp::get_logger("teb_local_planner"), "HomotopyClassPlanner: Ignoring invalid H-signature"); + return false; + } + + if (hasEquivalenceClass(eq_class)) + { + // Allow up to configured number of Tebs that are in the same homotopy + // class as the current (best) Teb to avoid being stuck in a local minimum + if (!isInBestTebClass(eq_class) || numTebsInBestTebClass() >= cfg_->hcp.max_number_plans_in_current_class) + return false; + } + + // Homotopy class not found -> Add to class-list, return that the h-signature is new + equivalence_classes_.push_back(std::make_pair(eq_class,lock)); + return true; +} + + +void HomotopyClassPlanner::renewAndAnalyzeOldTebs(bool delete_detours) +{ + // clear old h-signatures (since they could be changed due to new obstacle positions. + equivalence_classes_.clear(); + + // Adding the equivalence class of the latest best_teb_ first + TebOptPlannerContainer::iterator it_best_teb = best_teb_ ? std::find(tebs_.begin(), tebs_.end(), best_teb_) : tebs_.end(); + bool has_best_teb = it_best_teb != tebs_.end(); + if (has_best_teb) + { + std::iter_swap(tebs_.begin(), it_best_teb); // Putting the last best teb at the beginning of the container + best_teb_eq_class_ = calculateEquivalenceClass(best_teb_->teb().poses().begin(), + best_teb_->teb().poses().end(), getCplxFromVertexPosePtr , obstacles_, + best_teb_->teb().timediffs().begin(), best_teb_->teb().timediffs().end()); + addEquivalenceClassIfNew(best_teb_eq_class_); + } + // Collect h-signatures for all existing TEBs and store them together with the corresponding iterator / pointer: +// typedef std::list< std::pair > > TebCandidateType; +// TebCandidateType teb_candidates; + + // get new homotopy classes and delete multiple TEBs per homotopy class. Skips the best teb if available (added before). + TebOptPlannerContainer::iterator it_teb = has_best_teb ? std::next(tebs_.begin(), 1) : tebs_.begin(); + while(it_teb != tebs_.end()) + { + // calculate equivalence class for the current candidate + EquivalenceClassPtr equivalence_class = calculateEquivalenceClass(it_teb->get()->teb().poses().begin(), it_teb->get()->teb().poses().end(), getCplxFromVertexPosePtr , obstacles_, + it_teb->get()->teb().timediffs().begin(), it_teb->get()->teb().timediffs().end()); + +// teb_candidates.push_back(std::make_pair(it_teb,H)); + + // WORKAROUND until the commented code below works + // Here we do not compare cost values. Just first come first serve... + bool new_flag = addEquivalenceClassIfNew(equivalence_class); + if (!new_flag) + { + it_teb = tebs_.erase(it_teb); + continue; + } + + ++it_teb; + } + if(delete_detours) + deletePlansDetouringBackwards(cfg_->hcp.detours_orientation_tolerance, cfg_->hcp.length_start_orientation_vector); + + // Find multiple candidates and delete the one with higher cost + // TODO: this code needs to be adpated. Erasing tebs from the teb container_ could make iteratores stored in the candidate list invalid! +// TebCandidateType::reverse_iterator cand_i = teb_candidates.rbegin(); +// int test_idx = 0; +// while (cand_i != teb_candidates.rend()) +// { +// +// TebCandidateType::reverse_iterator cand_j = std::find_if(boost::next(cand_i),teb_candidates.rend(), boost::bind(compareH,_1,cand_i->second)); +// if (cand_j != teb_candidates.rend() && cand_j != cand_i) +// { +// TebOptimalPlannerPtr pt1 = *(cand_j->first); +// TebOptimalPlannerPtr pt2 = *(cand_i->first); +// assert(pt1); +// assert(pt2); +// if ( cand_j->first->get()->getCurrentCost().sum() > cand_i->first->get()->getCurrentCost().sum() ) +// { +// // found one that has higher cost, therefore erase cand_j +// tebs_.erase(cand_j->first); +// teb_candidates.erase(cand_j); +// } +// else // otherwise erase cand_i +// { +// tebs_.erase(cand_i->first); +// cand_i = teb_candidates.erase(cand_i); +// } +// } +// else +// { +// ROS_WARN_STREAM("increase cand_i"); +// ++cand_i; +// } +// } + + // now add the h-signatures to the internal lookup-table (but only if there is no existing duplicate) +// for (TebCandidateType::iterator cand=teb_candidates.begin(); cand!=teb_candidates.end(); ++cand) +// { +// bool new_flag = addNewHSignatureIfNew(cand->second, cfg_->hcp.h_signature_threshold); +// if (!new_flag) +// { +// // ROS_ERROR_STREAM("getAndFilterHomotopyClassesTEB() - This schould not be happen."); +// tebs_.erase(cand->first); +// } +// } + +} + +void HomotopyClassPlanner::updateReferenceTrajectoryViaPoints(bool all_trajectories) +{ + if ( (!all_trajectories && !initial_plan_) || !via_points_ || via_points_->empty() || cfg_->optim.weight_viapoint <= 0) + return; + + if(equivalence_classes_.size() < tebs_.size()) + { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), "HomotopyClassPlanner::updateReferenceTrajectoryWithViaPoints(): Number of h-signatures does not match number of trajectories."); + return; + } + + if (all_trajectories) + { + // enable via-points for all tebs + for (std::size_t i=0; i < equivalence_classes_.size(); ++i) + { + tebs_[i]->setViaPoints(via_points_); + } + } + else + { + // enable via-points for teb in the same hommotopy class as the initial_plan and deactivate it for all other ones + for (std::size_t i=0; i < equivalence_classes_.size(); ++i) + { + if(initial_plan_eq_class_->isEqual(*equivalence_classes_[i].first)) + tebs_[i]->setViaPoints(via_points_); + else + tebs_[i]->setViaPoints(NULL); + } + } +} + + +void HomotopyClassPlanner::exploreEquivalenceClassesAndInitTebs(const PoseSE2& start, const PoseSE2& goal, double dist_to_obst, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel) +{ + // first process old trajectories + renewAndAnalyzeOldTebs(cfg_->hcp.delete_detours_backwards); + randomlyDropTebs(); + + // inject initial plan if available and not yet captured + if (initial_plan_) + { + initial_plan_teb_ = addAndInitNewTeb(*initial_plan_, start_vel, free_goal_vel); + } + else + { + initial_plan_teb_.reset(); + initial_plan_teb_ = getInitialPlanTEB(); // this method searches for initial_plan_eq_class_ in the teb container (-> if !initial_plan_teb_) + } + + // now explore new homotopy classes and initialize tebs if new ones are found. The appropriate createGraph method is chosen via polymorphism. + graph_search_->createGraph(start,goal,dist_to_obst,cfg_->hcp.obstacle_heading_threshold, start_vel, free_goal_vel); +} + + +TebOptimalPlannerPtr HomotopyClassPlanner::addAndInitNewTeb(const PoseSE2& start, const PoseSE2& goal, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel) +{ + if(tebs_.size() >= cfg_->hcp.max_number_classes) + return TebOptimalPlannerPtr(); + TebOptimalPlannerPtr candidate = TebOptimalPlannerPtr( new TebOptimalPlanner(node_, *cfg_, obstacles_, visualization_)); + + candidate->teb().initTrajectoryToGoal(start, goal, 0, cfg_->robot.max_vel_x, cfg_->trajectory.min_samples, cfg_->trajectory.allow_init_with_backwards_motion); + + if (start_velocity) + candidate->setVelocityStart(*start_velocity); + + EquivalenceClassPtr H = calculateEquivalenceClass(candidate->teb().poses().begin(), candidate->teb().poses().end(), getCplxFromVertexPosePtr, obstacles_, + candidate->teb().timediffs().begin(), candidate->teb().timediffs().end()); + + if (free_goal_vel) + candidate->setVelocityGoalFree(); + + if(addEquivalenceClassIfNew(H)) + { + tebs_.push_back(candidate); + return tebs_.back(); + } + + // If the candidate constitutes no new equivalence class, return a null pointer + return TebOptimalPlannerPtr(); +} + + +bool HomotopyClassPlanner::isInBestTebClass(const EquivalenceClassPtr& eq_class) const +{ + bool answer = false; + if (best_teb_eq_class_) + answer = best_teb_eq_class_->isEqual(*eq_class); + return answer; +} + +int HomotopyClassPlanner::numTebsInClass(const EquivalenceClassPtr& eq_class) const +{ + int count = 0; + for (const std::pair& eqrel : equivalence_classes_) + { + if (eq_class->isEqual(*eqrel.first)) + ++count; + } + return count; +} + +int HomotopyClassPlanner::numTebsInBestTebClass() const +{ + int count = 0; + if (best_teb_eq_class_) + count = numTebsInClass(best_teb_eq_class_); + return count; +} + +TebOptimalPlannerPtr HomotopyClassPlanner::addAndInitNewTeb(const std::vector& initial_plan, const geometry_msgs::msg::Twist* start_velocity, bool free_goal_vel) +{ + if(tebs_.size() >= cfg_->hcp.max_number_classes) + return TebOptimalPlannerPtr(); + TebOptimalPlannerPtr candidate = TebOptimalPlannerPtr( new TebOptimalPlanner(node_, *cfg_, obstacles_, visualization_)); + + candidate->teb().initTrajectoryToGoal(initial_plan, cfg_->robot.max_vel_x, cfg_->robot.max_vel_theta, + cfg_->trajectory.global_plan_overwrite_orientation, cfg_->trajectory.min_samples, cfg_->trajectory.allow_init_with_backwards_motion); + + if (start_velocity) + candidate->setVelocityStart(*start_velocity); + + if (free_goal_vel) + candidate->setVelocityGoalFree(); + + // store the h signature of the initial plan to enable searching a matching teb later. + initial_plan_eq_class_ = calculateEquivalenceClass(candidate->teb().poses().begin(), candidate->teb().poses().end(), getCplxFromVertexPosePtr, obstacles_, + candidate->teb().timediffs().begin(), candidate->teb().timediffs().end()); + + if(addEquivalenceClassIfNew(initial_plan_eq_class_, true)) // also prevent candidate from deletion + { + tebs_.push_back(candidate); + return tebs_.back(); + } + + // If the candidate constitutes no new equivalence class, return a null pointer + return TebOptimalPlannerPtr(); +} + +void HomotopyClassPlanner::updateAllTEBs(const PoseSE2* start, const PoseSE2* goal, const geometry_msgs::msg::Twist* start_velocity) +{ + // If new goal is too far away, clear all existing trajectories to let them reinitialize later. + // Since all Tebs are sharing the same fixed goal pose, just take the first candidate: + if (!tebs_.empty() + && ((goal->position() - tebs_.front()->teb().BackPose().position()).norm() >= cfg_->trajectory.force_reinit_new_goal_dist + || fabs(g2o::normalize_theta(goal->theta() - tebs_.front()->teb().BackPose().theta())) >= cfg_->trajectory.force_reinit_new_goal_angular)) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "New goal: distance to existing goal is higher than the specified threshold. Reinitalizing trajectories."); + tebs_.clear(); + equivalence_classes_.clear(); + } + + // hot-start from previous solutions + for (TebOptPlannerContainer::iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb) + { + it_teb->get()->teb().updateAndPruneTEB(*start, *goal); + if (start_velocity) + it_teb->get()->setVelocityStart(*start_velocity); + } +} + + +void HomotopyClassPlanner::optimizeAllTEBs(int iter_innerloop, int iter_outerloop) +{ + // optimize TEBs in parallel since they are independend of each other + if (cfg_->hcp.enable_multithreading) + { + std::vector teb_threads; + + for (TebOptPlannerContainer::iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb) + { + auto functor = [&, it_teb]() { + it_teb->get()->optimizeTEB(iter_innerloop, iter_outerloop, + true, cfg_->hcp.selection_obst_cost_scale, cfg_->hcp.selection_viapoint_cost_scale, + cfg_->hcp.selection_alternative_time_cost); + }; + + teb_threads.emplace_back(functor); + } + + for(auto & thread : teb_threads) { + if(thread.joinable()) { + thread.join(); + } + } + } + else + { + for (TebOptPlannerContainer::iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb) + { + it_teb->get()->optimizeTEB(iter_innerloop,iter_outerloop, true, cfg_->hcp.selection_obst_cost_scale, + cfg_->hcp.selection_viapoint_cost_scale, cfg_->hcp.selection_alternative_time_cost); // compute cost as well inside optimizeTEB (last argument = true) + } + } +} + +TebOptimalPlannerPtr HomotopyClassPlanner::getInitialPlanTEB() +{ + // first check stored teb object + if (initial_plan_teb_) + { + // check if the teb is still part of the teb container + if ( std::find(tebs_.begin(), tebs_.end(), initial_plan_teb_ ) != tebs_.end() ) + return initial_plan_teb_; + else + { + initial_plan_teb_.reset(); // reset pointer for next call + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "initial teb not found, trying to find a match according to the cached equivalence class"); + } + } + + // reset the locked state for equivalence classes // TODO: this might be adapted if not only the plan containing the initial plan is locked! + for (int i=0; iisValid()) + { + if (equivalence_classes_.size() == tebs_.size()) + { + for (int i=0; iisEqual(*initial_plan_eq_class_)) + { + equivalence_classes_[i].second = true; + return tebs_[i]; + } + } + } + else + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), + "HomotopyClassPlanner::getInitialPlanTEB(): number of equivalence classes (%lu) and number of trajectories (%lu) does not match.", equivalence_classes_.size(), tebs_.size()); + } + else + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "HomotopyClassPlanner::getInitialPlanTEB(): initial TEB not found in the set of available trajectories."); + + return TebOptimalPlannerPtr(); +} + +void HomotopyClassPlanner::randomlyDropTebs() +{ + if (cfg_->hcp.selection_dropping_probability == 0.0) + { + return; + } + // interate both vectors in parallel + auto it_eqrel = equivalence_classes_.begin(); + auto it_teb = tebs_.begin(); + while (it_teb != tebs_.end() && it_eqrel != equivalence_classes_.end()) + { + if (it_teb->get() != best_teb_.get() // Always preserve the "best" teb + && (random_() <= cfg_->hcp.selection_dropping_probability * random_.max())) + { + it_teb = tebs_.erase(it_teb); + it_eqrel = equivalence_classes_.erase(it_eqrel); + } + else + { + ++it_teb; + ++it_eqrel; + } + } +} + +TebOptimalPlannerPtr HomotopyClassPlanner::selectBestTeb() +{ + double min_cost = std::numeric_limits::max(); // maximum cost + double min_cost_last_best = std::numeric_limits::max(); + double min_cost_initial_plan_teb = std::numeric_limits::max(); + TebOptimalPlannerPtr initial_plan_teb = getInitialPlanTEB(); + + // check if last best_teb is still a valid candidate + if (best_teb_ && std::find(tebs_.begin(), tebs_.end(), best_teb_) != tebs_.end()) + { + // get cost of this candidate + min_cost_last_best = best_teb_->getCurrentCost() * cfg_->hcp.selection_cost_hysteresis; // small hysteresis + last_best_teb_ = best_teb_; + } + else + { + last_best_teb_.reset(); + } + + if (initial_plan_teb) // the validity was already checked in getInitialPlanTEB() + { + // get cost of this candidate + min_cost_initial_plan_teb = initial_plan_teb->getCurrentCost() * cfg_->hcp.selection_prefer_initial_plan; // small hysteresis + } + + + best_teb_.reset(); // reset pointer + + for (TebOptPlannerContainer::iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb) + { + // check if the related TEB leaves the local costmap region +// if (tebs_.size()>1 && !(*it_teb)->teb().isTrajectoryInsideRegion(20, -1, 1)) +// { +// ROS_INFO("HomotopyClassPlanner::selectBestTeb(): skipping trajectories that are not inside the local costmap"); +// continue; +// } + + double teb_cost; + + if (*it_teb == last_best_teb_) + teb_cost = min_cost_last_best; // skip already known cost value of the last best_teb + else if (*it_teb == initial_plan_teb) + teb_cost = min_cost_initial_plan_teb; + else + teb_cost = it_teb->get()->getCurrentCost(); + + if (teb_cost < min_cost) + { + // check if this candidate is currently not selected + best_teb_ = *it_teb; + min_cost = teb_cost; + } + } + + + // in case we haven't found any teb due to some previous checks, investigate list again +// if (!best_teb_ && !tebs_.empty()) +// { +// RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "all " << tebs_.size() << " tebs rejected previously"); +// if (tebs_.size()==1) +// best_teb_ = tebs_.front(); +// else // if multiple TEBs are available: +// { +// // try to use the one that relates to the initial plan +// TebOptimalPlannerPtr initial_plan_teb = getInitialPlanTEB(); +// if (initial_plan_teb) +// best_teb_ = initial_plan_teb; +// else +// { +// // now compute the cost for the rest (we haven't computed it before) +// for (TebOptPlannerContainer::iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb) +// { +// double teb_cost = it_teb->get()->getCurrentCost(); +// if (teb_cost < min_cost) +// { +// // check if this candidate is currently not selected +// best_teb_ = *it_teb; +// min_cost = teb_cost; +// } +// } +// } +// } +// } + + // check if we are allowed to change + if (last_best_teb_ && best_teb_ != last_best_teb_) + { + rclcpp::Time now = node_->now(); + if ((now - last_eq_class_switching_time_).seconds() > cfg_->hcp.switching_blocking_period) + { + last_eq_class_switching_time_ = now; + } + else + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "HomotopyClassPlanner::selectBestTeb(): Switching equivalence classes blocked (check parameter switching_blocking_period."); + // block switching, so revert best_teb_ + best_teb_ = last_best_teb_; + } + + } + + + return best_teb_; +} + +int HomotopyClassPlanner::bestTebIdx() const +{ + if (tebs_.size() == 1) + return 0; + + if (!best_teb_) + return -1; + + int idx = 0; + for (TebOptPlannerContainer::const_iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb, ++idx) + { + if (*it_teb == best_teb_) + return idx; + } + return -1; +} + +bool HomotopyClassPlanner::isTrajectoryFeasible(dwb_critics::ObstacleFootprintCritic* costmap_model, const std::vector& footprint_spec, + double inscribed_radius, double circumscribed_radius, int look_ahead_idx, double feasibility_check_lookahead_distance) +{ + bool feasible = false; + while(rclcpp::ok() && !feasible && tebs_.size() > 0) + { + TebOptimalPlannerPtr best = findBestTeb(); + if (!best) + { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), "Couldn't retrieve the best plan"); + return false; + } + feasible = best->isTrajectoryFeasible(costmap_model, footprint_spec, inscribed_radius, circumscribed_radius, look_ahead_idx, feasibility_check_lookahead_distance); + if(!feasible) + { + removeTeb(best); + if(last_best_teb_ && (last_best_teb_ == best)) // Same plan as before. + return feasible; // Not failing could result in oscillations between trajectories. + } + } + return feasible; +} + +TebOptimalPlannerPtr HomotopyClassPlanner::findBestTeb() +{ + if(tebs_.empty()) + return TebOptimalPlannerPtr(); + if (!best_teb_ || std::find(tebs_.begin(), tebs_.end(), best_teb_) == tebs_.end()) + best_teb_ = selectBestTeb(); + return best_teb_; +} + +TebOptPlannerContainer::iterator HomotopyClassPlanner::removeTeb(TebOptimalPlannerPtr& teb) +{ + TebOptPlannerContainer::iterator return_iterator = tebs_.end(); + if(equivalence_classes_.size() != tebs_.size()) + { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), "removeTeb: size of eq classes != size of tebs"); + return return_iterator; + } + auto it_eq_classes = equivalence_classes_.begin(); + for(auto it = tebs_.begin(); it != tebs_.end(); ++it) + { + if(*it == teb) + { + return_iterator = tebs_.erase(it); + equivalence_classes_.erase(it_eq_classes); + break; + } + ++it_eq_classes; + } + return return_iterator; +} + +void HomotopyClassPlanner::setPreferredTurningDir(RotType dir) +{ + // set preferred turning dir for all TEBs + for (TebOptPlannerContainer::const_iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb) + { + (*it_teb)->setPreferredTurningDir(dir); + } +} + +bool HomotopyClassPlanner::hasDiverged() const +{ + // Early return if there is no best trajectory initialized + if (!best_teb_) + return false; + + return best_teb_->hasDiverged(); +} + +void HomotopyClassPlanner::computeCurrentCost(std::vector& cost, double obst_cost_scale, double viapoint_cost_scale, bool alternative_time_cost) +{ + for (TebOptPlannerContainer::iterator it_teb = tebs_.begin(); it_teb != tebs_.end(); ++it_teb) + { + it_teb->get()->computeCurrentCost(cost, obst_cost_scale, viapoint_cost_scale, alternative_time_cost); + } +} + +void HomotopyClassPlanner::deletePlansDetouringBackwards(const double orient_threshold, + const double len_orientation_vector) +{ + if (tebs_.size() < 2 || !best_teb_ || std::find(tebs_.begin(), tebs_.end(), best_teb_) == tebs_.end() || + best_teb_->teb().sizePoses() < 2) + { + return; // A moving direction wasn't chosen yet + } + double current_movement_orientation; + double best_plan_duration = std::max(best_teb_->teb().getSumOfAllTimeDiffs(), 1.0); + if(!computeStartOrientation(best_teb_, len_orientation_vector, current_movement_orientation)) + return; // The plan is shorter than len_orientation_vector + for(auto it_teb = tebs_.begin(); it_teb != tebs_.end();) + { + if(*it_teb == best_teb_) // The current plan should not be considered a detour + { + ++it_teb; + continue; + } + if((*it_teb)->teb().sizePoses() < 2) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "Discarding a plan with less than 2 poses"); + it_teb = removeTeb(*it_teb); + continue; + } + double plan_orientation; + if(!computeStartOrientation(*it_teb, len_orientation_vector, plan_orientation)) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "Failed to compute the start orientation for one of the tebs, likely close to the target"); + it_teb = removeTeb(*it_teb); + continue; + } + if(fabs(g2o::normalize_theta(plan_orientation - current_movement_orientation)) > orient_threshold) + { + it_teb = removeTeb(*it_teb); // Plan detouring backwards + continue; + } + if(!it_teb->get()->isOptimized()) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "Removing a teb because it's not optimized"); + it_teb = removeTeb(*it_teb); // Deletes tebs that cannot be optimized (last optim call failed) + continue; + } + if(it_teb->get()->teb().getSumOfAllTimeDiffs() / best_plan_duration > cfg_->hcp.max_ratio_detours_duration_best_duration) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "Removing a teb because it's duration is much longer than that of the best teb"); + it_teb = removeTeb(*it_teb); + continue; + } + ++it_teb; + } +} + +bool HomotopyClassPlanner::computeStartOrientation(const TebOptimalPlannerPtr plan, const double len_orientation_vector, + double& orientation) +{ + VertexPose start_pose = plan->teb().Pose(0); + bool second_pose_found = false; + Eigen::Vector2d start_vector; + for(auto& pose : plan->teb().poses()) + { + start_vector = start_pose.position() - pose->position(); + if(start_vector.norm() > len_orientation_vector) + { + second_pose_found = true; + break; + } + } + if(!second_pose_found) // The current plan is too short to make assumptions on the start orientation + return false; + orientation = std::atan2(start_vector[1], start_vector[0]); + return true; +} + + +} // end namespace diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/obstacles.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/obstacles.cpp new file mode 100644 index 0000000..95253e3 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/obstacles.cpp @@ -0,0 +1,216 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/obstacles.h" +// #include "teb_local_planner/misc.h" +#include +#include + +namespace teb_local_planner +{ + + +void PolygonObstacle::fixPolygonClosure() +{ + if (vertices_.size()<2) + return; + + if (vertices_.front().isApprox(vertices_.back())) + vertices_.pop_back(); +} + +void PolygonObstacle::calcCentroid() +{ + if (vertices_.empty()) + { + centroid_.setConstant(NAN); + RCLCPP_WARN(rclcpp::get_logger("teb_local_planner"), + "PolygonObstacle::calcCentroid(): number of vertices is empty. the resulting centroid is a vector of NANs."); + return; + } + + // if polygon is a point + if (noVertices()==1) + { + centroid_ = vertices_.front(); + return; + } + + // if polygon is a line: + if (noVertices()==2) + { + centroid_ = 0.5*(vertices_.front() + vertices_.back()); + return; + } + + // otherwise: + + centroid_.setZero(); + + // calculate centroid (see wikipedia http://de.wikipedia.org/wiki/Geometrischer_Schwerpunkt#Polygon) + double A = 0; // A = 0.5 * sum_0_n-1 (x_i * y_{i+1} - x_{i+1} * y_i) + for (int i=0; i < noVertices()-1; ++i) + { + A += vertices_.at(i).coeffRef(0) * vertices_.at(i+1).coeffRef(1) - vertices_.at(i+1).coeffRef(0) * vertices_.at(i).coeffRef(1); + } + A += vertices_.at(noVertices()-1).coeffRef(0) * vertices_.at(0).coeffRef(1) - vertices_.at(0).coeffRef(0) * vertices_.at(noVertices()-1).coeffRef(1); + A *= 0.5; + + if (A!=0) + { + for (int i=0; i < noVertices()-1; ++i) + { + double aux = (vertices_.at(i).coeffRef(0) * vertices_.at(i+1).coeffRef(1) - vertices_.at(i+1).coeffRef(0) * vertices_.at(i).coeffRef(1)); + centroid_ += ( vertices_.at(i) + vertices_.at(i+1) )*aux; + } + double aux = (vertices_.at(noVertices()-1).coeffRef(0) * vertices_.at(0).coeffRef(1) - vertices_.at(0).coeffRef(0) * vertices_.at(noVertices()-1).coeffRef(1)); + centroid_ += ( vertices_.at(noVertices()-1) + vertices_.at(0) )*aux; + centroid_ /= (6*A); + } + else // A == 0 -> all points are placed on a 'perfect' line + { + // seach for the two outer points of the line with the maximum distance inbetween + int i_cand = 0; + int j_cand = 0; + double max_dist = 0; + for (int i=0; i< noVertices(); ++i) + { + for (int j=i+1; j< noVertices(); ++j) // start with j=i+1 + { + double dist = (vertices_[j] - vertices_[i]).norm(); + if (dist > max_dist) + { + max_dist = dist; + i_cand = i; + j_cand = j; + } + } + } + // calc centroid of that line + centroid_ = 0.5*(vertices_[i_cand] + vertices_[j_cand]); + } +} + + + +Eigen::Vector2d PolygonObstacle::getClosestPoint(const Eigen::Vector2d& position) const +{ + // the polygon is a point + if (noVertices() == 1) + { + return vertices_.front(); + } + + if (noVertices() > 1) + { + + Eigen::Vector2d new_pt = closest_point_on_line_segment_2d(position, vertices_.at(0), vertices_.at(1)); + + if (noVertices() > 2) // real polygon and not a line + { + double dist = (new_pt-position).norm(); + Eigen::Vector2d closest_pt = new_pt; + + // check each polygon edge + for (int i=1; i +#include + +#include "teb_local_planner/optimal_planner.h" + +#include +// g2o custom edges and vertices for the TEB planner +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +namespace teb_local_planner +{ + +// ============== Implementation =================== + +TebOptimalPlanner::TebOptimalPlanner() : cfg_(nullptr), obstacles_(NULL), via_points_(NULL), cost_(HUGE_VAL), prefer_rotdir_(RotType::none), + initialized_(false), optimized_(false) +{ +} + +TebOptimalPlanner::TebOptimalPlanner(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles, TebVisualizationPtr visual, const ViaPointContainer* via_points) +{ + initialize(node, cfg, obstacles, visual, via_points); +} + +TebOptimalPlanner::~TebOptimalPlanner() +{ + clearGraph(); + // free dynamically allocated memory + //if (optimizer_) + // g2o::Factory::destroy(); + //g2o::OptimizationAlgorithmFactory::destroy(); + //g2o::HyperGraphActionLibrary::destroy(); +} + +void TebOptimalPlanner::initialize(nav2_util::LifecycleNode::SharedPtr node, const TebConfig& cfg, ObstContainer* obstacles, TebVisualizationPtr visual, const ViaPointContainer* via_points) +{ + node_ = node; + // init optimizer (set solver and block ordering settings) + optimizer_ = initOptimizer(); + + cfg_ = &cfg; + obstacles_ = obstacles; + via_points_ = via_points; + cost_ = HUGE_VAL; + prefer_rotdir_ = RotType::none; + + vel_start_.first = true; + vel_start_.second.linear.x = 0; + vel_start_.second.linear.y = 0; + vel_start_.second.angular.z = 0; + + vel_goal_.first = true; + vel_goal_.second.linear.x = 0; + vel_goal_.second.linear.y = 0; + vel_goal_.second.angular.z = 0; + initialized_ = true; + + setVisualization(visual); +} + +void TebOptimalPlanner::setVisualization(const TebVisualizationPtr& visualization) +{ + visualization_ = visualization; +} + +void TebOptimalPlanner::visualize() +{ + if (!visualization_) + return; + + visualization_->publishLocalPlanAndPoses(teb_); + + if (teb_.sizePoses() > 0) + visualization_->publishRobotFootprintModel(teb_.Pose(0), *cfg_->robot_model); + + if (cfg_->trajectory.publish_feedback) + visualization_->publishFeedbackMessage(*this, *obstacles_); + +} + +/* + * registers custom vertices and edges in g2o framework + */ +void TebOptimalPlanner::registerG2OTypes() +{ + g2o::Factory* factory = g2o::Factory::instance(); + factory->registerType("VERTEX_POSE", std::make_shared>()); + factory->registerType("VERTEX_TIMEDIFF", std::make_shared>()); + factory->registerType("EDGE_TIME_OPTIMAL", std::make_shared>()); + factory->registerType("EDGE_SHORTEST_PATH", std::make_shared>()); + factory->registerType("EDGE_VELOCITY", std::make_shared>()); + factory->registerType("EDGE_VELOCITY_HOLONOMIC", std::make_shared>()); + factory->registerType("EDGE_ACCELERATION", std::make_shared>()); + factory->registerType("EDGE_ACCELERATION_START", std::make_shared>()); + factory->registerType("EDGE_ACCELERATION_GOAL", std::make_shared>()); + factory->registerType("EDGE_ACCELERATION_HOLONOMIC", std::make_shared>()); + factory->registerType("EDGE_ACCELERATION_HOLONOMIC_START", std::make_shared>()); + factory->registerType("EDGE_ACCELERATION_HOLONOMIC_GOAL", std::make_shared>()); + factory->registerType("EDGE_KINEMATICS_DIFF_DRIVE", std::make_shared>()); + factory->registerType("EDGE_KINEMATICS_CARLIKE", std::make_shared>()); + factory->registerType("EDGE_OBSTACLE", std::make_shared>()); + factory->registerType("EDGE_INFLATED_OBSTACLE", std::make_shared>()); + factory->registerType("EDGE_DYNAMIC_OBSTACLE", std::make_shared>()); + factory->registerType("EDGE_VIA_POINT", std::make_shared>()); + factory->registerType("EDGE_PREFER_ROTDIR", std::make_shared>()); + return; +} + +/* + * initialize g2o optimizer. Set solver settings here. + * Return: pointer to new SparseOptimizer Object. + */ +std::shared_ptr TebOptimalPlanner::initOptimizer() +{ + // Call register_g2o_types once, even for multiple TebOptimalPlanner instances (thread-safe) + static std::once_flag flag; + std::call_once(flag, [this](){this->registerG2OTypes();}); + + // allocating the optimizer + std::shared_ptr optimizer = std::make_shared(); + auto linearSolver = std::make_unique(); // see typedef in optimization.h + linearSolver->setBlockOrdering(true); + auto blockSolver = std::make_unique(std::move(linearSolver)); + g2o::OptimizationAlgorithmLevenberg* solver = new g2o::OptimizationAlgorithmLevenberg(std::move(blockSolver)); + + optimizer->setAlgorithm(solver); + + optimizer->initMultiThreading(); // required for >Eigen 3.1 + + return optimizer; +} + + +bool TebOptimalPlanner::optimizeTEB(int iterations_innerloop, int iterations_outerloop, bool compute_cost_afterwards, + double obst_cost_scale, double viapoint_cost_scale, bool alternative_time_cost) +{ + if (cfg_->optim.optimization_activate==false) + return false; + + bool success = false; + optimized_ = false; + + double weight_multiplier = 1.0; + + // TODO(roesmann): we introduced the non-fast mode with the support of dynamic obstacles + // (which leads to better results in terms of x-y-t homotopy planning). + // however, we have not tested this mode intensively yet, so we keep + // the legacy fast mode as default until we finish our tests. + bool fast_mode = !cfg_->obstacles.include_dynamic_obstacles; + + for(int i=0; itrajectory.teb_autosize) + { + //teb_.autoResize(cfg_->trajectory.dt_ref, cfg_->trajectory.dt_hysteresis, cfg_->trajectory.min_samples, cfg_->trajectory.max_samples); + teb_.autoResize(cfg_->trajectory.dt_ref, cfg_->trajectory.dt_hysteresis, cfg_->trajectory.min_samples, cfg_->trajectory.max_samples, fast_mode); + + } + + success = buildGraph(weight_multiplier); + if (!success) + { + clearGraph(); + return false; + } + success = optimizeGraph(iterations_innerloop, false); + if (!success) + { + clearGraph(); + return false; + } + optimized_ = true; + + if (compute_cost_afterwards && i==iterations_outerloop-1) // compute cost vec only in the last iteration + computeCurrentCost(obst_cost_scale, viapoint_cost_scale, alternative_time_cost); + + clearGraph(); + + weight_multiplier *= cfg_->optim.weight_adapt_factor; + } + + return true; +} + +void TebOptimalPlanner::setVelocityStart(const geometry_msgs::msg::Twist& vel_start) +{ + vel_start_.first = true; + vel_start_.second.linear.x = vel_start.linear.x; + vel_start_.second.linear.y = vel_start.linear.y; + vel_start_.second.angular.z = vel_start.angular.z; +} + +void TebOptimalPlanner::setVelocityGoal(const geometry_msgs::msg::Twist& vel_goal) +{ + vel_goal_.first = true; + vel_goal_.second = vel_goal; +} + +bool TebOptimalPlanner::plan(const std::vector& initial_plan, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel) +{ + TEB_ASSERT_MSG(initialized_, "Call initialize() first."); + if (!teb_.isInit()) + { + teb_.initTrajectoryToGoal(initial_plan, cfg_->robot.max_vel_x, cfg_->robot.max_vel_theta, cfg_->trajectory.global_plan_overwrite_orientation, + cfg_->trajectory.min_samples, cfg_->trajectory.allow_init_with_backwards_motion); + } + else // warm start + { + PoseSE2 start_(initial_plan.front().pose); + PoseSE2 goal_(initial_plan.back().pose); + if (teb_.sizePoses()>0 + && (goal_.position() - teb_.BackPose().position()).norm() < cfg_->trajectory.force_reinit_new_goal_dist + && fabs(g2o::normalize_theta(goal_.theta() - teb_.BackPose().theta())) < cfg_->trajectory.force_reinit_new_goal_angular) // actual warm start! + teb_.updateAndPruneTEB(start_, goal_, cfg_->trajectory.min_samples); // update TEB + else // goal too far away -> reinit + { + RCLCPP_DEBUG(node_->get_logger(), "New goal: distance to existing goal is higher than the specified threshold. Reinitalizing trajectories."); + teb_.clearTimedElasticBand(); + teb_.initTrajectoryToGoal(initial_plan, cfg_->robot.max_vel_x, cfg_->robot.max_vel_theta, cfg_->trajectory.global_plan_overwrite_orientation, + cfg_->trajectory.min_samples, cfg_->trajectory.allow_init_with_backwards_motion); + } + } + if (start_vel) + setVelocityStart(*start_vel); + if (free_goal_vel) + setVelocityGoalFree(); + else + vel_goal_.first = true; // we just reactivate and use the previously set velocity (should be zero if nothing was modified) + + // now optimize + return optimizeTEB(cfg_->optim.no_inner_iterations, cfg_->optim.no_outer_iterations); +} + + +//bool TebOptimalPlanner::plan(const tf::Pose& start, const tf::Pose& goal, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel) +//{ +// PoseSE2 start_(start); +// PoseSE2 goal_(goal); +// return plan(start_, goal_, start_vel); +//} + +bool TebOptimalPlanner::plan(const PoseSE2& start, const PoseSE2& goal, const geometry_msgs::msg::Twist* start_vel, bool free_goal_vel) +{ + TEB_ASSERT_MSG(initialized_, "Call initialize() first."); + if (!teb_.isInit()) + { + // init trajectory + teb_.initTrajectoryToGoal(start, goal, 0, cfg_->robot.max_vel_x, cfg_->trajectory.min_samples, cfg_->trajectory.allow_init_with_backwards_motion); // 0 intermediate samples, but dt=1 -> autoResize will add more samples before calling first optimization + } + else // warm start + { + if (teb_.sizePoses() > 0 + && (goal.position() - teb_.BackPose().position()).norm() < cfg_->trajectory.force_reinit_new_goal_dist + && fabs(g2o::normalize_theta(goal.theta() - teb_.BackPose().theta())) < cfg_->trajectory.force_reinit_new_goal_angular) // actual warm start! + teb_.updateAndPruneTEB(start, goal, cfg_->trajectory.min_samples); + else // goal too far away -> reinit + { + RCLCPP_DEBUG(node_->get_logger(), "New goal: distance to existing goal is higher than the specified threshold. Reinitalizing trajectories."); + teb_.clearTimedElasticBand(); + teb_.initTrajectoryToGoal(start, goal, 0, cfg_->robot.max_vel_x, cfg_->trajectory.min_samples, cfg_->trajectory.allow_init_with_backwards_motion); + } + } + if (start_vel) + setVelocityStart(*start_vel); + if (free_goal_vel) + setVelocityGoalFree(); + else + vel_goal_.first = true; // we just reactivate and use the previously set velocity (should be zero if nothing was modified) + + // now optimize + return optimizeTEB(cfg_->optim.no_inner_iterations, cfg_->optim.no_outer_iterations, true); +} + + +bool TebOptimalPlanner::buildGraph(double weight_multiplier) +{ + if (!optimizer_->edges().empty() || !optimizer_->vertices().empty()) + { + RCLCPP_WARN(node_->get_logger(), "Cannot build graph, because it is not empty. Call graphClear()!"); + return false; + } + + optimizer_->setComputeBatchStatistics(cfg_->recovery.divergence_detection_enable); + + // add TEB vertices + AddTEBVertices(); + + // add Edges (local cost functions) + if (cfg_->obstacles.legacy_obstacle_association) + AddEdgesObstaclesLegacy(weight_multiplier); + else + AddEdgesObstacles(weight_multiplier); + + if (cfg_->obstacles.include_dynamic_obstacles) + AddEdgesDynamicObstacles(); + + AddEdgesViaPoints(); + + AddEdgesVelocity(); + + AddEdgesAcceleration(); + + AddEdgesTimeOptimal(); + + AddEdgesShortestPath(); + + if (cfg_->robot.min_turning_radius == 0 || cfg_->optim.weight_kinematics_turning_radius == 0) + AddEdgesKinematicsDiffDrive(); // we have a differential drive robot + else + AddEdgesKinematicsCarlike(); // we have a carlike robot since the turning radius is bounded from below. + + AddEdgesPreferRotDir(); + + if (cfg_->optim.weight_velocity_obstacle_ratio > 0) + AddEdgesVelocityObstacleRatio(); + + return true; +} + +bool TebOptimalPlanner::optimizeGraph(int no_iterations,bool clear_after) +{ + if (cfg_->robot.max_vel_x<0.01) + { + RCLCPP_WARN(node_->get_logger(), "optimizeGraph(): Robot Max Velocity is smaller than 0.01m/s. Optimizing aborted..."); + if (clear_after) clearGraph(); + return false; + } + + if (!teb_.isInit() || teb_.sizePoses() < cfg_->trajectory.min_samples) + { + RCLCPP_WARN(node_->get_logger(), "optimizeGraph(): TEB is empty or has too less elements. Skipping optimization."); + if (clear_after) clearGraph(); + return false; + } + + optimizer_->setVerbose(cfg_->optim.optimization_verbose); + optimizer_->initializeOptimization(); + + int iter = optimizer_->optimize(no_iterations); + + // Save Hessian for visualization + // g2o::OptimizationAlgorithmLevenberg* lm = dynamic_cast (optimizer_->solver()); + // lm->solver()->saveHessian("~/MasterThesis/Matlab/Hessian.txt"); + + if(!iter) + { + RCLCPP_ERROR(node_->get_logger(), "optimizeGraph(): Optimization failed! iter=%i", iter); + return false; + } + + if (clear_after) clearGraph(); + + return true; +} + +void TebOptimalPlanner::clearGraph() +{ + // clear optimizer states + if (optimizer_) + { + // we will delete all edges but keep the vertices. + // before doing so, we will delete the link from the vertices to the edges. + auto& vertices = optimizer_->vertices(); + for(auto& v : vertices) + v.second->edges().clear(); + + optimizer_->vertices().clear(); // necessary, because optimizer->clear deletes pointer-targets (therefore it deletes TEB states!) + optimizer_->clear(); + } +} + + + +void TebOptimalPlanner::AddTEBVertices() +{ + // add vertices to graph + RCLCPP_DEBUG_EXPRESSION(node_->get_logger(), cfg_->optim.optimization_verbose, "Adding TEB vertices ..."); + unsigned int id_counter = 0; // used for vertices ids + obstacles_per_vertex_.resize(teb_.sizePoses()); + auto iter_obstacle = obstacles_per_vertex_.begin(); + for (int i=0; isetId(id_counter++); + optimizer_->addVertex(teb_.PoseVertex(i)); + if (teb_.sizeTimeDiffs()!=0 && isetId(id_counter++); + optimizer_->addVertex(teb_.TimeDiffVertex(i)); + } + iter_obstacle->clear(); + (iter_obstacle++)->reserve(obstacles_->size()); + } +} + + +void TebOptimalPlanner::AddEdgesObstacles(double weight_multiplier) +{ + if (cfg_->optim.weight_obstacle==0 || weight_multiplier==0 || obstacles_==nullptr ) + return; // if weight equals zero skip adding edges! + + + bool inflated = cfg_->obstacles.inflation_dist > cfg_->obstacles.min_obstacle_dist; + + Eigen::Matrix information; + information.fill(cfg_->optim.weight_obstacle * weight_multiplier); + + Eigen::Matrix information_inflated; + information_inflated(0,0) = cfg_->optim.weight_obstacle * weight_multiplier; + information_inflated(1,1) = cfg_->optim.weight_inflation; + information_inflated(0,1) = information_inflated(1,0) = 0; + + auto iter_obstacle = obstacles_per_vertex_.begin(); + + auto create_edge = [inflated, &information, &information_inflated, this] (int index, const Obstacle* obstacle) { + if (inflated) + { + EdgeInflatedObstacle* dist_bandpt_obst = new EdgeInflatedObstacle; + dist_bandpt_obst->setVertex(0,teb_.PoseVertex(index)); + dist_bandpt_obst->setInformation(information_inflated); + dist_bandpt_obst->setParameters(*cfg_, cfg_->robot_model.get(), obstacle); + optimizer_->addEdge(dist_bandpt_obst); + } + else + { + EdgeObstacle* dist_bandpt_obst = new EdgeObstacle; + dist_bandpt_obst->setVertex(0,teb_.PoseVertex(index)); + dist_bandpt_obst->setInformation(information); + dist_bandpt_obst->setParameters(*cfg_, cfg_->robot_model.get(), obstacle); + optimizer_->addEdge(dist_bandpt_obst); + }; + }; + + // iterate all teb points, skipping the last and, if the EdgeVelocityObstacleRatio edges should not be created, the first one too + const int first_vertex = cfg_->optim.weight_velocity_obstacle_ratio == 0 ? 1 : 0; + for (int i = first_vertex; i < teb_.sizePoses() - 1; ++i) + { + double left_min_dist = std::numeric_limits::max(); + double right_min_dist = std::numeric_limits::max(); + ObstaclePtr left_obstacle; + ObstaclePtr right_obstacle; + + const Eigen::Vector2d pose_orient = teb_.Pose(i).orientationUnitVec(); + + // iterate obstacles + for (const ObstaclePtr& obst : *obstacles_) + { + // we handle dynamic obstacles differently below + if(cfg_->obstacles.include_dynamic_obstacles && obst->isDynamic()) + continue; + + // calculate distance to robot model + double dist = cfg_->robot_model->calculateDistance(teb_.Pose(i), obst.get()); + + // force considering obstacle if really close to the current pose + if (dist < cfg_->obstacles.min_obstacle_dist*cfg_->obstacles.obstacle_association_force_inclusion_factor) + { + iter_obstacle->push_back(obst); + continue; + } + // cut-off distance + if (dist > cfg_->obstacles.min_obstacle_dist*cfg_->obstacles.obstacle_association_cutoff_factor) + continue; + + // determine side (left or right) and assign obstacle if closer than the previous one + if (cross2d(pose_orient, obst->getCentroid()) > 0) // left + { + if (dist < left_min_dist) + { + left_min_dist = dist; + left_obstacle = obst; + } + } + else + { + if (dist < right_min_dist) + { + right_min_dist = dist; + right_obstacle = obst; + } + } + } + + if (left_obstacle) + iter_obstacle->push_back(left_obstacle); + if (right_obstacle) + iter_obstacle->push_back(right_obstacle); + + // continue here to ignore obstacles for the first pose, but use them later to create the EdgeVelocityObstacleRatio edges + if (i == 0) + { + ++iter_obstacle; + continue; + } + + // create obstacle edges + for (const ObstaclePtr obst : *iter_obstacle) + create_edge(i, obst.get()); + ++iter_obstacle; + } +} + + +void TebOptimalPlanner::AddEdgesObstaclesLegacy(double weight_multiplier) +{ + if (cfg_->optim.weight_obstacle==0 || weight_multiplier==0 || obstacles_==nullptr) + return; // if weight equals zero skip adding edges! + + Eigen::Matrix information; + information.fill(cfg_->optim.weight_obstacle * weight_multiplier); + + Eigen::Matrix information_inflated; + information_inflated(0,0) = cfg_->optim.weight_obstacle * weight_multiplier; + information_inflated(1,1) = cfg_->optim.weight_inflation; + information_inflated(0,1) = information_inflated(1,0) = 0; + + bool inflated = cfg_->obstacles.inflation_dist > cfg_->obstacles.min_obstacle_dist; + + for (ObstContainer::const_iterator obst = obstacles_->begin(); obst != obstacles_->end(); ++obst) + { + if (cfg_->obstacles.include_dynamic_obstacles && (*obst)->isDynamic()) // we handle dynamic obstacles differently below + continue; + + int index; + + if (cfg_->obstacles.obstacle_poses_affected >= teb_.sizePoses()) + index = teb_.sizePoses() / 2; + else + index = teb_.findClosestTrajectoryPose(*(obst->get())); + + + // check if obstacle is outside index-range between start and goal + if ( (index <= 1) || (index > teb_.sizePoses()-2) ) // start and goal are fixed and findNearestBandpoint finds first or last conf if intersection point is outside the range + continue; + + if (inflated) + { + EdgeInflatedObstacle* dist_bandpt_obst = new EdgeInflatedObstacle; + dist_bandpt_obst->setVertex(0,teb_.PoseVertex(index)); + dist_bandpt_obst->setInformation(information_inflated); + dist_bandpt_obst->setParameters(*cfg_, robot_model_.get(), obst->get()); + optimizer_->addEdge(dist_bandpt_obst); + } + else + { + EdgeObstacle* dist_bandpt_obst = new EdgeObstacle; + dist_bandpt_obst->setVertex(0,teb_.PoseVertex(index)); + dist_bandpt_obst->setInformation(information); + dist_bandpt_obst->setParameters(*cfg_, cfg_->robot_model.get(), obst->get()); + optimizer_->addEdge(dist_bandpt_obst); + } + + for (int neighbourIdx=0; neighbourIdx < floor(cfg_->obstacles.obstacle_poses_affected/2); neighbourIdx++) + { + if (index+neighbourIdx < teb_.sizePoses()) + { + if (inflated) + { + EdgeInflatedObstacle* dist_bandpt_obst_n_r = new EdgeInflatedObstacle; + dist_bandpt_obst_n_r->setVertex(0,teb_.PoseVertex(index+neighbourIdx)); + dist_bandpt_obst_n_r->setInformation(information_inflated); + dist_bandpt_obst_n_r->setParameters(*cfg_, cfg_->robot_model.get(), obst->get()); + optimizer_->addEdge(dist_bandpt_obst_n_r); + } + else + { + EdgeObstacle* dist_bandpt_obst_n_r = new EdgeObstacle; + dist_bandpt_obst_n_r->setVertex(0,teb_.PoseVertex(index+neighbourIdx)); + dist_bandpt_obst_n_r->setInformation(information); + dist_bandpt_obst_n_r->setParameters(*cfg_, robot_model_.get(), obst->get()); + optimizer_->addEdge(dist_bandpt_obst_n_r); + } + } + if ( index - neighbourIdx >= 0) // needs to be casted to int to allow negative values + { + if (inflated) + { + EdgeInflatedObstacle* dist_bandpt_obst_n_l = new EdgeInflatedObstacle; + dist_bandpt_obst_n_l->setVertex(0,teb_.PoseVertex(index-neighbourIdx)); + dist_bandpt_obst_n_l->setInformation(information_inflated); + dist_bandpt_obst_n_l->setParameters(*cfg_, cfg_->robot_model.get(), obst->get()); + optimizer_->addEdge(dist_bandpt_obst_n_l); + } + else + { + EdgeObstacle* dist_bandpt_obst_n_l = new EdgeObstacle; + dist_bandpt_obst_n_l->setVertex(0,teb_.PoseVertex(index-neighbourIdx)); + dist_bandpt_obst_n_l->setInformation(information); + dist_bandpt_obst_n_l->setParameters(*cfg_, cfg_->robot_model.get(), obst->get()); + optimizer_->addEdge(dist_bandpt_obst_n_l); + } + } + } + + } +} + + +void TebOptimalPlanner::AddEdgesDynamicObstacles(double weight_multiplier) +{ + if (cfg_->optim.weight_obstacle==0 || weight_multiplier==0 || obstacles_==NULL ) + return; // if weight equals zero skip adding edges! + + Eigen::Matrix information; + information(0,0) = cfg_->optim.weight_dynamic_obstacle * weight_multiplier; + information(1,1) = cfg_->optim.weight_dynamic_obstacle_inflation; + information(0,1) = information(1,0) = 0; + + for (ObstContainer::const_iterator obst = obstacles_->begin(); obst != obstacles_->end(); ++obst) + { + if (!(*obst)->isDynamic()) + continue; + + // Skip first and last pose, as they are fixed + double time = teb_.TimeDiff(0); + for (int i=1; i < teb_.sizePoses() - 1; ++i) + { + EdgeDynamicObstacle* dynobst_edge = new EdgeDynamicObstacle(time); + dynobst_edge->setVertex(0,teb_.PoseVertex(i)); + dynobst_edge->setInformation(information); + dynobst_edge->setParameters(*cfg_, cfg_->robot_model.get(), obst->get()); + optimizer_->addEdge(dynobst_edge); + time += teb_.TimeDiff(i); // we do not need to check the time diff bounds, since we iterate to "< sizePoses()-1". + } + } +} + +void TebOptimalPlanner::AddEdgesViaPoints() +{ + if (cfg_->optim.weight_viapoint==0 || via_points_==NULL || via_points_->empty() ) + return; // if weight equals zero skip adding edges! + + int start_pose_idx = 0; + + int n = teb_.sizePoses(); + if (n<3) // we do not have any degrees of freedom for reaching via-points + return; + + for (ViaPointContainer::const_iterator vp_it = via_points_->begin(); vp_it != via_points_->end(); ++vp_it) + { + + int index = teb_.findClosestTrajectoryPose(*vp_it, NULL, start_pose_idx); + if (cfg_->trajectory.via_points_ordered) + start_pose_idx = index+2; // skip a point to have a DOF inbetween for further via-points + + // check if point conicides with goal or is located behind it + if ( index > n-2 ) + index = n-2; // set to a pose before the goal, since we can move it away! + // check if point coincides with start or is located before it + if ( index < 1) + { + if (cfg_->trajectory.via_points_ordered) + { + index = 1; // try to connect the via point with the second (and non-fixed) pose. It is likely that autoresize adds new poses inbetween later. + } + else + { + RCLCPP_DEBUG(node_->get_logger(), "TebOptimalPlanner::AddEdgesViaPoints(): skipping a via-point that is close or behind the current robot pose."); + continue; // skip via points really close or behind the current robot pose + } + } + Eigen::Matrix information; + information.fill(cfg_->optim.weight_viapoint); + + EdgeViaPoint* edge_viapoint = new EdgeViaPoint; + edge_viapoint->setVertex(0,teb_.PoseVertex(index)); + edge_viapoint->setInformation(information); + edge_viapoint->setParameters(*cfg_, &(*vp_it)); + optimizer_->addEdge(edge_viapoint); + } +} + +void TebOptimalPlanner::AddEdgesVelocity() +{ + if (cfg_->robot.max_vel_y == 0) // non-holonomic robot + { + if ( cfg_->optim.weight_max_vel_x==0 && cfg_->optim.weight_max_vel_theta==0) + return; // if weight equals zero skip adding edges! + + int n = teb_.sizePoses(); + Eigen::Matrix information; + information(0,0) = cfg_->optim.weight_max_vel_x; + information(1,1) = cfg_->optim.weight_max_vel_theta; + information(0,1) = 0.0; + information(1,0) = 0.0; + + for (int i=0; i < n - 1; ++i) + { + EdgeVelocity* velocity_edge = new EdgeVelocity; + velocity_edge->setVertex(0,teb_.PoseVertex(i)); + velocity_edge->setVertex(1,teb_.PoseVertex(i+1)); + velocity_edge->setVertex(2,teb_.TimeDiffVertex(i)); + velocity_edge->setInformation(information); + velocity_edge->setTebConfig(*cfg_); + optimizer_->addEdge(velocity_edge); + } + } + else // holonomic-robot + { + if ( cfg_->optim.weight_max_vel_x==0 && cfg_->optim.weight_max_vel_y==0 && cfg_->optim.weight_max_vel_theta==0) + return; // if weight equals zero skip adding edges! + + int n = teb_.sizePoses(); + Eigen::Matrix information; + information.fill(0); + information(0,0) = cfg_->optim.weight_max_vel_x; + information(1,1) = cfg_->optim.weight_max_vel_y; + information(2,2) = cfg_->optim.weight_max_vel_theta; + + for (int i=0; i < n - 1; ++i) + { + EdgeVelocityHolonomic* velocity_edge = new EdgeVelocityHolonomic; + velocity_edge->setVertex(0,teb_.PoseVertex(i)); + velocity_edge->setVertex(1,teb_.PoseVertex(i+1)); + velocity_edge->setVertex(2,teb_.TimeDiffVertex(i)); + velocity_edge->setInformation(information); + velocity_edge->setTebConfig(*cfg_); + optimizer_->addEdge(velocity_edge); + } + + } +} + +void TebOptimalPlanner::AddEdgesAcceleration() +{ + if (cfg_->optim.weight_acc_lim_x==0 && cfg_->optim.weight_acc_lim_theta==0) + return; // if weight equals zero skip adding edges! + + int n = teb_.sizePoses(); + + if (cfg_->robot.max_vel_y == 0 || cfg_->robot.acc_lim_y == 0) // non-holonomic robot + { + Eigen::Matrix information; + information.fill(0); + information(0,0) = cfg_->optim.weight_acc_lim_x; + information(1,1) = cfg_->optim.weight_acc_lim_theta; + + // check if an initial velocity should be taken into accound + if (vel_start_.first) + { + EdgeAccelerationStart* acceleration_edge = new EdgeAccelerationStart; + acceleration_edge->setVertex(0,teb_.PoseVertex(0)); + acceleration_edge->setVertex(1,teb_.PoseVertex(1)); + acceleration_edge->setVertex(2,teb_.TimeDiffVertex(0)); + acceleration_edge->setInitialVelocity(vel_start_.second); + acceleration_edge->setInformation(information); + acceleration_edge->setTebConfig(*cfg_); + optimizer_->addEdge(acceleration_edge); + } + + // now add the usual acceleration edge for each tuple of three teb poses + for (int i=0; i < n - 2; ++i) + { + EdgeAcceleration* acceleration_edge = new EdgeAcceleration; + acceleration_edge->setVertex(0,teb_.PoseVertex(i)); + acceleration_edge->setVertex(1,teb_.PoseVertex(i+1)); + acceleration_edge->setVertex(2,teb_.PoseVertex(i+2)); + acceleration_edge->setVertex(3,teb_.TimeDiffVertex(i)); + acceleration_edge->setVertex(4,teb_.TimeDiffVertex(i+1)); + acceleration_edge->setInformation(information); + acceleration_edge->setTebConfig(*cfg_); + optimizer_->addEdge(acceleration_edge); + } + + // check if a goal velocity should be taken into accound + if (vel_goal_.first) + { + EdgeAccelerationGoal* acceleration_edge = new EdgeAccelerationGoal; + acceleration_edge->setVertex(0,teb_.PoseVertex(n-2)); + acceleration_edge->setVertex(1,teb_.PoseVertex(n-1)); + acceleration_edge->setVertex(2,teb_.TimeDiffVertex( teb_.sizeTimeDiffs()-1 )); + acceleration_edge->setGoalVelocity(vel_goal_.second); + acceleration_edge->setInformation(information); + acceleration_edge->setTebConfig(*cfg_); + optimizer_->addEdge(acceleration_edge); + } + } + else // holonomic robot + { + Eigen::Matrix information; + information.fill(0); + information(0,0) = cfg_->optim.weight_acc_lim_x; + information(1,1) = cfg_->optim.weight_acc_lim_y; + information(2,2) = cfg_->optim.weight_acc_lim_theta; + + // check if an initial velocity should be taken into accound + if (vel_start_.first) + { + EdgeAccelerationHolonomicStart* acceleration_edge = new EdgeAccelerationHolonomicStart; + acceleration_edge->setVertex(0,teb_.PoseVertex(0)); + acceleration_edge->setVertex(1,teb_.PoseVertex(1)); + acceleration_edge->setVertex(2,teb_.TimeDiffVertex(0)); + acceleration_edge->setInitialVelocity(vel_start_.second); + acceleration_edge->setInformation(information); + acceleration_edge->setTebConfig(*cfg_); + optimizer_->addEdge(acceleration_edge); + } + + // now add the usual acceleration edge for each tuple of three teb poses + for (int i=0; i < n - 2; ++i) + { + EdgeAccelerationHolonomic* acceleration_edge = new EdgeAccelerationHolonomic; + acceleration_edge->setVertex(0,teb_.PoseVertex(i)); + acceleration_edge->setVertex(1,teb_.PoseVertex(i+1)); + acceleration_edge->setVertex(2,teb_.PoseVertex(i+2)); + acceleration_edge->setVertex(3,teb_.TimeDiffVertex(i)); + acceleration_edge->setVertex(4,teb_.TimeDiffVertex(i+1)); + acceleration_edge->setInformation(information); + acceleration_edge->setTebConfig(*cfg_); + optimizer_->addEdge(acceleration_edge); + } + + // check if a goal velocity should be taken into accound + if (vel_goal_.first) + { + EdgeAccelerationHolonomicGoal* acceleration_edge = new EdgeAccelerationHolonomicGoal; + acceleration_edge->setVertex(0,teb_.PoseVertex(n-2)); + acceleration_edge->setVertex(1,teb_.PoseVertex(n-1)); + acceleration_edge->setVertex(2,teb_.TimeDiffVertex( teb_.sizeTimeDiffs()-1 )); + acceleration_edge->setGoalVelocity(vel_goal_.second); + acceleration_edge->setInformation(information); + acceleration_edge->setTebConfig(*cfg_); + optimizer_->addEdge(acceleration_edge); + } + } +} + + + +void TebOptimalPlanner::AddEdgesTimeOptimal() +{ + if (cfg_->optim.weight_optimaltime==0) + return; // if weight equals zero skip adding edges! + + Eigen::Matrix information; + information.fill(cfg_->optim.weight_optimaltime); + + for (int i=0; i < teb_.sizeTimeDiffs(); ++i) + { + EdgeTimeOptimal* timeoptimal_edge = new EdgeTimeOptimal; + timeoptimal_edge->setVertex(0,teb_.TimeDiffVertex(i)); + timeoptimal_edge->setInformation(information); + timeoptimal_edge->setTebConfig(*cfg_); + optimizer_->addEdge(timeoptimal_edge); + } +} + +void TebOptimalPlanner::AddEdgesShortestPath() +{ + if (cfg_->optim.weight_shortest_path==0) + return; // if weight equals zero skip adding edges! + + Eigen::Matrix information; + information.fill(cfg_->optim.weight_shortest_path); + + for (int i=0; i < teb_.sizePoses()-1; ++i) + { + EdgeShortestPath* shortest_path_edge = new EdgeShortestPath; + shortest_path_edge->setVertex(0,teb_.PoseVertex(i)); + shortest_path_edge->setVertex(1,teb_.PoseVertex(i+1)); + shortest_path_edge->setInformation(information); + shortest_path_edge->setTebConfig(*cfg_); + optimizer_->addEdge(shortest_path_edge); + } +} + + + +void TebOptimalPlanner::AddEdgesKinematicsDiffDrive() +{ + if (cfg_->optim.weight_kinematics_nh==0 && cfg_->optim.weight_kinematics_forward_drive==0) + return; // if weight equals zero skip adding edges! + + // create edge for satisfiying kinematic constraints + Eigen::Matrix information_kinematics; + information_kinematics.fill(0.0); + information_kinematics(0, 0) = cfg_->optim.weight_kinematics_nh; + information_kinematics(1, 1) = cfg_->optim.weight_kinematics_forward_drive; + + for (int i=0; i < teb_.sizePoses()-1; i++) // ignore twiced start only + { + EdgeKinematicsDiffDrive* kinematics_edge = new EdgeKinematicsDiffDrive; + kinematics_edge->setVertex(0,teb_.PoseVertex(i)); + kinematics_edge->setVertex(1,teb_.PoseVertex(i+1)); + kinematics_edge->setInformation(information_kinematics); + kinematics_edge->setTebConfig(*cfg_); + optimizer_->addEdge(kinematics_edge); + } +} + +void TebOptimalPlanner::AddEdgesKinematicsCarlike() +{ + if (cfg_->optim.weight_kinematics_nh==0 && cfg_->optim.weight_kinematics_turning_radius==0) + return; // if weight equals zero skip adding edges! + + // create edge for satisfiying kinematic constraints + Eigen::Matrix information_kinematics; + information_kinematics.fill(0.0); + information_kinematics(0, 0) = cfg_->optim.weight_kinematics_nh; + information_kinematics(1, 1) = cfg_->optim.weight_kinematics_turning_radius; + + for (int i=0; i < teb_.sizePoses()-1; i++) // ignore twiced start only + { + EdgeKinematicsCarlike* kinematics_edge = new EdgeKinematicsCarlike; + kinematics_edge->setVertex(0,teb_.PoseVertex(i)); + kinematics_edge->setVertex(1,teb_.PoseVertex(i+1)); + kinematics_edge->setInformation(information_kinematics); + kinematics_edge->setTebConfig(*cfg_); + optimizer_->addEdge(kinematics_edge); + } +} + + +void TebOptimalPlanner::AddEdgesPreferRotDir() +{ + //TODO(roesmann): Note, these edges can result in odd predictions, in particular + // we can observe a substantional mismatch between open- and closed-loop planning + // leading to a poor control performance. + // At the moment, we keep these functionality for oscillation recovery: + // Activating the edge for a short time period might not be crucial and + // could move the robot to a new oscillation-free state. + // This needs to be analyzed in more detail! + if (prefer_rotdir_ == RotType::none || cfg_->optim.weight_prefer_rotdir==0) + return; // if weight equals zero skip adding edges! + + if (prefer_rotdir_ != RotType::right && prefer_rotdir_ != RotType::left) + { + RCLCPP_WARN(node_->get_logger(), "TebOptimalPlanner::AddEdgesPreferRotDir(): unsupported RotType selected. Skipping edge creation."); + return; + } + + // create edge for satisfiying kinematic constraints + Eigen::Matrix information_rotdir; + information_rotdir.fill(cfg_->optim.weight_prefer_rotdir); + + for (int i=0; i < teb_.sizePoses()-1 && i < 3; ++i) // currently: apply to first 3 rotations + { + EdgePreferRotDir* rotdir_edge = new EdgePreferRotDir; + rotdir_edge->setVertex(0,teb_.PoseVertex(i)); + rotdir_edge->setVertex(1,teb_.PoseVertex(i+1)); + rotdir_edge->setInformation(information_rotdir); + + if (prefer_rotdir_ == RotType::left) + rotdir_edge->preferLeft(); + else if (prefer_rotdir_ == RotType::right) + rotdir_edge->preferRight(); + + optimizer_->addEdge(rotdir_edge); + } +} + +void TebOptimalPlanner::AddEdgesVelocityObstacleRatio() +{ + Eigen::Matrix information; + information(0,0) = cfg_->optim.weight_velocity_obstacle_ratio; + information(1,1) = cfg_->optim.weight_velocity_obstacle_ratio; + information(0,1) = information(1,0) = 0; + + auto iter_obstacle = obstacles_per_vertex_.begin(); + + for (int index = 0; index < teb_.sizePoses() - 1; ++index) + { + for (const ObstaclePtr obstacle : (*iter_obstacle++)) + { + EdgeVelocityObstacleRatio* edge = new EdgeVelocityObstacleRatio; + edge->setVertex(0,teb_.PoseVertex(index)); + edge->setVertex(1,teb_.PoseVertex(index + 1)); + edge->setVertex(2,teb_.TimeDiffVertex(index)); + edge->setInformation(information); + edge->setParameters(*cfg_, cfg_->robot_model.get(), obstacle.get()); + optimizer_->addEdge(edge); + } + } +} + +bool TebOptimalPlanner::hasDiverged() const +{ + // Early returns if divergence detection is not active + if (!cfg_->recovery.divergence_detection_enable) + return false; + + auto stats_vector = optimizer_->batchStatistics(); + + // No statistics yet + if (stats_vector.empty()) + return false; + + // Grab the statistics of the final iteration + const auto last_iter_stats = stats_vector.back(); + + return last_iter_stats.chi2 > cfg_->recovery.divergence_detection_max_chi_squared; +} + +void TebOptimalPlanner::computeCurrentCost(double obst_cost_scale, double viapoint_cost_scale, bool alternative_time_cost) +{ + // check if graph is empty/exist -> important if function is called between buildGraph and optimizeGraph/clearGraph + bool graph_exist_flag(false); + if (optimizer_->edges().empty() && optimizer_->vertices().empty()) + { + // here the graph is build again, for time efficiency make sure to call this function + // between buildGraph and Optimize (deleted), but it depends on the application + buildGraph(); + optimizer_->initializeOptimization(); + } + else + { + graph_exist_flag = true; + } + + optimizer_->computeInitialGuess(); + + cost_ = 0; + + if (alternative_time_cost) + { + cost_ += teb_.getSumOfAllTimeDiffs(); + // TEST we use SumOfAllTimeDiffs() here, because edge cost depends on number of samples, which is not always the same for similar TEBs, + // since we are using an AutoResize Function with hysteresis. + } + + // now we need pointers to all edges -> calculate error for each edge-type + // since we aren't storing edge pointers, we need to check every edge + for (std::vector::const_iterator it = optimizer_->activeEdges().begin(); it!= optimizer_->activeEdges().end(); it++) + { + double cur_cost = (*it)->chi2(); + + if (dynamic_cast(*it) != nullptr + || dynamic_cast(*it) != nullptr + || dynamic_cast(*it) != nullptr) + { + cur_cost *= obst_cost_scale; + } + else if (dynamic_cast(*it) != nullptr) + { + cur_cost *= viapoint_cost_scale; + } + else if (dynamic_cast(*it) != nullptr && alternative_time_cost) + { + continue; // skip these edges if alternative_time_cost is active + } + cost_ += cur_cost; + } + + // delete temporary created graph + if (!graph_exist_flag) + clearGraph(); +} + + +void TebOptimalPlanner::extractVelocity(const PoseSE2& pose1, const PoseSE2& pose2, double dt, double& vx, double& vy, double& omega) const +{ + if (dt == 0) + { + vx = 0; + vy = 0; + omega = 0; + return; + } + + Eigen::Vector2d deltaS = pose2.position() - pose1.position(); + + if (cfg_->robot.max_vel_y == 0) // nonholonomic robot + { + Eigen::Vector2d conf1dir( cos(pose1.theta()), sin(pose1.theta()) ); + // translational velocity + double dir = deltaS.dot(conf1dir); + vx = (double) g2o::sign(dir) * deltaS.norm()/dt; + vy = 0; + } + else // holonomic robot + { + // transform pose 2 into the current robot frame (pose1) + // for velocities only the rotation of the direction vector is necessary. + // (map->pose1-frame: inverse 2d rotation matrix) + double cos_theta1 = std::cos(pose1.theta()); + double sin_theta1 = std::sin(pose1.theta()); + double p1_dx = cos_theta1*deltaS.x() + sin_theta1*deltaS.y(); + double p1_dy = -sin_theta1*deltaS.x() + cos_theta1*deltaS.y(); + vx = p1_dx / dt; + vy = p1_dy / dt; + } + + // rotational velocity + double orientdiff = g2o::normalize_theta(pose2.theta() - pose1.theta()); + omega = orientdiff/dt; +} + +bool TebOptimalPlanner::getVelocityCommand(double& vx, double& vy, double& omega, int look_ahead_poses) const +{ + if (teb_.sizePoses()<2) + { + RCLCPP_ERROR(node_->get_logger(), "TebOptimalPlanner::getVelocityCommand(): The trajectory contains less than 2 poses. Make sure to init and optimize/plan the trajectory fist."); + vx = 0; + vy = 0; + omega = 0; + return false; + } + look_ahead_poses = std::max(1, std::min(look_ahead_poses, teb_.sizePoses() - 1)); + double dt = 0.0; + for(int counter = 0; counter < look_ahead_poses; ++counter) + { + dt += teb_.TimeDiff(counter); + if(dt >= cfg_->trajectory.dt_ref * look_ahead_poses) // TODO: change to look-ahead time? Refine trajectory? + { + look_ahead_poses = counter + 1; + break; + } + } + if (dt<=0) + { + RCLCPP_ERROR(node_->get_logger(), "TebOptimalPlanner::getVelocityCommand() - timediff<=0 is invalid!"); + vx = 0; + vy = 0; + omega = 0; + return false; + } + + // Get velocity from the first two configurations + extractVelocity(teb_.Pose(0), teb_.Pose(look_ahead_poses), dt, vx, vy, omega); + return true; +} + +void TebOptimalPlanner::getVelocityProfile(std::vector& velocity_profile) const +{ + int n = teb_.sizePoses(); + velocity_profile.resize( n+1 ); + + // start velocity + velocity_profile.front().linear.z = 0; + velocity_profile.front().angular.x = velocity_profile.front().angular.y = 0; + velocity_profile.front().linear.x = vel_start_.second.linear.x; + velocity_profile.front().linear.y = vel_start_.second.linear.y; + velocity_profile.front().angular.z = vel_start_.second.angular.z; + + for (int i=1; i& trajectory) const +{ + int n = teb_.sizePoses(); + + trajectory.resize(n); + + if (n == 0) + return; + + double curr_time = 0; + + // start + teb_msgs::msg::TrajectoryPointMsg& start = trajectory.front(); + teb_.Pose(0).toPoseMsg(start.pose); + start.velocity.linear.z = 0; + start.velocity.angular.x = start.velocity.angular.y = 0; + start.velocity.linear.x = vel_start_.second.linear.x; + start.velocity.linear.y = vel_start_.second.linear.y; + start.velocity.angular.z = vel_start_.second.angular.z; + start.time_from_start = durationFromSec(curr_time); + + curr_time += teb_.TimeDiff(0); + + // intermediate points + for (int i=1; i < n-1; ++i) + { + teb_msgs::msg::TrajectoryPointMsg& point = trajectory[i]; + teb_.Pose(i).toPoseMsg(point.pose); + point.velocity.linear.z = 0; + point.velocity.angular.x = point.velocity.angular.y = 0; + double vel1_x, vel1_y, vel2_x, vel2_y, omega1, omega2; + extractVelocity(teb_.Pose(i-1), teb_.Pose(i), teb_.TimeDiff(i-1), vel1_x, vel1_y, omega1); + extractVelocity(teb_.Pose(i), teb_.Pose(i+1), teb_.TimeDiff(i), vel2_x, vel2_y, omega2); + point.velocity.linear.x = 0.5*(vel1_x+vel2_x); + point.velocity.linear.y = 0.5*(vel1_y+vel2_y); + point.velocity.angular.z = 0.5*(omega1+omega2); + point.time_from_start = durationFromSec(curr_time); + + curr_time += teb_.TimeDiff(i); + } + + // goal + teb_msgs::msg::TrajectoryPointMsg& goal = trajectory.back(); + teb_.BackPose().toPoseMsg(goal.pose); + goal.velocity.linear.z = 0; + goal.velocity.angular.x = goal.velocity.angular.y = 0; + goal.velocity.linear.x = vel_goal_.second.linear.x; + goal.velocity.linear.y = vel_goal_.second.linear.y; + goal.velocity.angular.z = vel_goal_.second.angular.z; + goal.time_from_start = durationFromSec(curr_time); +} + + +bool TebOptimalPlanner::isTrajectoryFeasible(dwb_critics::ObstacleFootprintCritic* costmap_model, const std::vector& footprint_spec, + double inscribed_radius, double circumscribed_radius, int look_ahead_idx, double feasibility_check_lookahead_distance) +{ + if (look_ahead_idx < 0 || look_ahead_idx >= teb().sizePoses()) + look_ahead_idx = teb().sizePoses() - 1; + + if (feasibility_check_lookahead_distance > 0){ + for (int i=1; i < teb().sizePoses(); ++i){ + double pose_distance=std::hypot(teb().Pose(i).x()-teb().Pose(0).x(), teb().Pose(i).y()-teb().Pose(0).y()); + if(pose_distance > feasibility_check_lookahead_distance){ + look_ahead_idx = i - 1; + break; + } + } + } + + geometry_msgs::msg::Pose2D pose2d; + for (int i=0; i <= look_ahead_idx; ++i) + { + teb().Pose(i).toPoseMsg(pose2d); + if (!isPoseValid(pose2d, costmap_model, footprint_spec)){ + if (visualization_) + { + visualization_->publishInfeasibleRobotPose(teb().Pose(i), *cfg_->robot_model); + } + return false; + } + // Checks if the distance between two poses is higher than the robot radius or the orientation diff is bigger than the specified threshold + // and interpolates in that case. + // (if obstacles are pushing two consecutive poses away, the center between two consecutive poses might coincide with the obstacle ;-)! + if (i cfg_->trajectory.min_resolution_collision_check_angular || delta_dist.norm() > inscribed_radius) + { + int n_additional_samples = std::max(std::ceil(fabs(delta_rot) / cfg_->trajectory.min_resolution_collision_check_angular), + std::ceil(delta_dist.norm() / inscribed_radius)) - 1; + PoseSE2 intermediate_pose = teb().Pose(i); + for(int step = 0; step < n_additional_samples; ++step) + { + intermediate_pose.position() = intermediate_pose.position() + delta_dist / (n_additional_samples + 1.0); + intermediate_pose.theta() = g2o::normalize_theta(intermediate_pose.theta() + + delta_rot / (n_additional_samples + 1.0)); + intermediate_pose.toPoseMsg(pose2d); + + if (!isPoseValid(pose2d, costmap_model, footprint_spec)){ + if (visualization_) + { + visualization_->publishInfeasibleRobotPose(intermediate_pose, *cfg_->robot_model); + } + return false; + } + } + } + } + } + return true; +} + +bool TebOptimalPlanner::isPoseValid(geometry_msgs::msg::Pose2D pose2d, dwb_critics::ObstacleFootprintCritic* costmap_model, + const std::vector& footprint_spec) +{ + try { + if ( costmap_model->scorePose(pose2d, dwb_critics::getOrientedFootprint(pose2d, footprint_spec)) < 0 ) { + return false; + } + } catch (...) { + return false; + } + return true; +} + +} // namespace teb_local_planner diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/recovery_behaviors.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/recovery_behaviors.cpp new file mode 100644 index 0000000..eaeca56 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/recovery_behaviors.cpp @@ -0,0 +1,118 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/recovery_behaviors.h" +#include +#include +#include +#include +#include + +namespace teb_local_planner +{ + +// ============== FailureDetector Implementation =================== + +void FailureDetector::update(const geometry_msgs::msg::Twist& twist, double v_max, double v_backwards_max, double omega_max, double v_eps, double omega_eps) +{ + if (buffer_.capacity() == 0) + return; + + VelMeasurement measurement; + measurement.v = twist.linear.x; // just consider linear velocity in x-direction in the robot frame for now + measurement.omega = twist.angular.z; + + if (measurement.v > 0 && v_max>0) + measurement.v /= v_max; + else if (measurement.v < 0 && v_backwards_max > 0) + measurement.v /= v_backwards_max; + + if (omega_max > 0) + measurement.omega /= omega_max; + + buffer_.push_back(measurement); + + // immediately compute new state + detect(v_eps, omega_eps); +} + +void FailureDetector::clear() +{ + buffer_.clear(); + oscillating_ = false; +} + +bool FailureDetector::isOscillating() const +{ + return oscillating_; +} + +bool FailureDetector::detect(double v_eps, double omega_eps) +{ + oscillating_ = false; + + if (buffer_.size() < buffer_.capacity()/2) // we start detecting only as soon as we have the buffer filled at least half + return false; + + double n = (double)buffer_.size(); + + // compute mean for v and omega + double v_mean=0; + double omega_mean=0; + int omega_zero_crossings = 0; + for (int i=0; i < n; ++i) + { + v_mean += buffer_[i].v; + omega_mean += buffer_[i].omega; + if ( i>0 && g2o::sign(buffer_[i].omega) != g2o::sign(buffer_[i-1].omega) ) + ++omega_zero_crossings; + } + v_mean /= n; + omega_mean /= n; + + if (std::abs(v_mean) < v_eps && std::abs(omega_mean) < omega_eps && omega_zero_crossings>1 ) + { + oscillating_ = true; + } +// ROS_INFO_STREAM("v: " << std::abs(v_mean) << ", omega: " << std::abs(omega_mean) << ", zero crossings: " << omega_zero_crossings); + return oscillating_; +} + + + +} // namespace teb_local_planner diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/teb_config.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/teb_config.cpp new file mode 100644 index 0000000..8123efd --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/teb_config.cpp @@ -0,0 +1,886 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/teb_config.h" + +using nav2_util::declare_parameter_if_not_declared; + +namespace teb_local_planner +{ + +void TebConfig::declareParameters(const nav2_util::LifecycleNode::SharedPtr nh, const std::string name) { + node_name = name; + + declare_parameter_if_not_declared(nh, name + "." + "odom_topic", rclcpp::ParameterValue(odom_topic)); + + // Trajectory + declare_parameter_if_not_declared(nh, name + "." + "teb_autosize", rclcpp::ParameterValue(trajectory.teb_autosize)); + declare_parameter_if_not_declared(nh, name + "." + "dt_ref", rclcpp::ParameterValue(trajectory.dt_ref)); + declare_parameter_if_not_declared(nh, name + "." + "dt_hysteresis", rclcpp::ParameterValue(trajectory.dt_hysteresis)); + declare_parameter_if_not_declared(nh, name + "." + "min_samples", rclcpp::ParameterValue(trajectory.min_samples)); + declare_parameter_if_not_declared(nh, name + "." + "max_samples", rclcpp::ParameterValue(trajectory.max_samples)); + declare_parameter_if_not_declared(nh, name + "." + "global_plan_overwrite_orientation", rclcpp::ParameterValue(trajectory.global_plan_overwrite_orientation)); + declare_parameter_if_not_declared(nh, name + "." + "allow_init_with_backwards_motion", rclcpp::ParameterValue(trajectory.allow_init_with_backwards_motion)); + declare_parameter_if_not_declared(nh, name + "." + "global_plan_viapoint_sep", rclcpp::ParameterValue(trajectory.global_plan_viapoint_sep)); + declare_parameter_if_not_declared(nh, name + "." + "via_points_ordered", rclcpp::ParameterValue(trajectory.via_points_ordered)); + declare_parameter_if_not_declared(nh, name + "." + "max_global_plan_lookahead_dist", rclcpp::ParameterValue(trajectory.max_global_plan_lookahead_dist)); + declare_parameter_if_not_declared(nh, name + "." + "global_plan_prune_distance", rclcpp::ParameterValue(trajectory.global_plan_prune_distance)); + declare_parameter_if_not_declared(nh, name + "." + "exact_arc_length", rclcpp::ParameterValue(trajectory.exact_arc_length)); + declare_parameter_if_not_declared(nh, name + "." + "force_reinit_new_goal_dist", rclcpp::ParameterValue(trajectory.force_reinit_new_goal_dist)); + declare_parameter_if_not_declared(nh, name + "." + "force_reinit_new_goal_angular", rclcpp::ParameterValue(trajectory.force_reinit_new_goal_angular)); + declare_parameter_if_not_declared(nh, name + "." + "feasibility_check_no_poses", rclcpp::ParameterValue(trajectory.feasibility_check_no_poses)); + declare_parameter_if_not_declared(nh, name + "." + "publish_feedback", rclcpp::ParameterValue(trajectory.publish_feedback)); + declare_parameter_if_not_declared(nh, name + "." + "min_resolution_collision_check_angular", rclcpp::ParameterValue(trajectory.min_resolution_collision_check_angular)); + declare_parameter_if_not_declared(nh, name + "." + "control_look_ahead_poses", rclcpp::ParameterValue(trajectory.control_look_ahead_poses)); + declare_parameter_if_not_declared(nh, name + "." + "feasibility_check_lookahead_distance", rclcpp::ParameterValue(trajectory.feasibility_check_lookahead_distance)); + + // Robot + declare_parameter_if_not_declared(nh, name + "." + "max_vel_x", rclcpp::ParameterValue(robot.max_vel_x)); + declare_parameter_if_not_declared(nh, name + "." + "max_vel_x_backwards", rclcpp::ParameterValue(robot.max_vel_x_backwards)); + declare_parameter_if_not_declared(nh, name + "." + "max_vel_y", rclcpp::ParameterValue(robot.max_vel_y)); + declare_parameter_if_not_declared(nh, name + "." + "max_vel_theta", rclcpp::ParameterValue(robot.max_vel_theta)); + declare_parameter_if_not_declared(nh, name + "." + "acc_lim_x", rclcpp::ParameterValue(robot.acc_lim_x)); + declare_parameter_if_not_declared(nh, name + "." + "acc_lim_y", rclcpp::ParameterValue(robot.acc_lim_y)); + declare_parameter_if_not_declared(nh, name + "." + "acc_lim_theta", rclcpp::ParameterValue(robot.acc_lim_theta)); + declare_parameter_if_not_declared(nh, name + "." + "min_turning_radius", rclcpp::ParameterValue(robot.min_turning_radius)); + declare_parameter_if_not_declared(nh, name + "." + "wheelbase", rclcpp::ParameterValue(robot.wheelbase)); + declare_parameter_if_not_declared(nh, name + "." + "cmd_angle_instead_rotvel", rclcpp::ParameterValue(robot.cmd_angle_instead_rotvel)); + declare_parameter_if_not_declared(nh, name + "." + "is_footprint_dynamic", rclcpp::ParameterValue(robot.is_footprint_dynamic)); + + // GoalTolerance + declare_parameter_if_not_declared(nh, name + "." + "free_goal_vel", rclcpp::ParameterValue(goal_tolerance.free_goal_vel)); + + // Obstacles + declare_parameter_if_not_declared(nh, name + "." + "min_obstacle_dist", rclcpp::ParameterValue(obstacles.min_obstacle_dist)); + declare_parameter_if_not_declared(nh, name + "." + "inflation_dist", rclcpp::ParameterValue(obstacles.inflation_dist)); + declare_parameter_if_not_declared(nh, name + "." + "dynamic_obstacle_inflation_dist", rclcpp::ParameterValue(obstacles.dynamic_obstacle_inflation_dist)); + declare_parameter_if_not_declared(nh, name + "." + "include_dynamic_obstacles", rclcpp::ParameterValue(obstacles.include_dynamic_obstacles)); + declare_parameter_if_not_declared(nh, name + "." + "include_costmap_obstacles", rclcpp::ParameterValue(obstacles.include_costmap_obstacles)); + declare_parameter_if_not_declared(nh, name + "." + "costmap_obstacles_behind_robot_dist", rclcpp::ParameterValue(obstacles.costmap_obstacles_behind_robot_dist)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_poses_affected", rclcpp::ParameterValue(obstacles.obstacle_poses_affected)); + declare_parameter_if_not_declared(nh, name + "." + "legacy_obstacle_association", rclcpp::ParameterValue(obstacles.legacy_obstacle_association)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_association_force_inclusion_factor", rclcpp::ParameterValue(obstacles.obstacle_association_force_inclusion_factor)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_association_cutoff_factor", rclcpp::ParameterValue(obstacles.obstacle_association_cutoff_factor)); + declare_parameter_if_not_declared(nh, name + "." + "costmap_converter_plugin", rclcpp::ParameterValue(obstacles.costmap_converter_plugin)); + declare_parameter_if_not_declared(nh, name + "." + "costmap_converter_spin_thread", rclcpp::ParameterValue(obstacles.costmap_converter_spin_thread)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_proximity_ratio_max_vel", rclcpp::ParameterValue(obstacles.obstacle_proximity_ratio_max_vel)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_proximity_lower_bound", rclcpp::ParameterValue(obstacles.obstacle_proximity_lower_bound)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_proximity_upper_bound", rclcpp::ParameterValue(obstacles.obstacle_proximity_upper_bound)); + + // Optimization + declare_parameter_if_not_declared(nh, name + "." + "no_inner_iterations", rclcpp::ParameterValue(optim.no_inner_iterations)); + declare_parameter_if_not_declared(nh, name + "." + "no_outer_iterations", rclcpp::ParameterValue(optim.no_outer_iterations)); + declare_parameter_if_not_declared(nh, name + "." + "optimization_activate", rclcpp::ParameterValue(optim.optimization_activate)); + declare_parameter_if_not_declared(nh, name + "." + "optimization_verbose", rclcpp::ParameterValue(optim.optimization_verbose)); + declare_parameter_if_not_declared(nh, name + "." + "penalty_epsilon", rclcpp::ParameterValue(optim.penalty_epsilon)); + declare_parameter_if_not_declared(nh, name + "." + "weight_max_vel_x", rclcpp::ParameterValue(optim.weight_max_vel_x)); + declare_parameter_if_not_declared(nh, name + "." + "weight_max_vel_y", rclcpp::ParameterValue(optim.weight_max_vel_y)); + declare_parameter_if_not_declared(nh, name + "." + "weight_max_vel_theta", rclcpp::ParameterValue(optim.weight_max_vel_theta)); + declare_parameter_if_not_declared(nh, name + "." + "weight_acc_lim_x", rclcpp::ParameterValue(optim.weight_acc_lim_x)); + declare_parameter_if_not_declared(nh, name + "." + "weight_acc_lim_y", rclcpp::ParameterValue(optim.weight_acc_lim_y)); + declare_parameter_if_not_declared(nh, name + "." + "weight_acc_lim_theta", rclcpp::ParameterValue(optim.weight_acc_lim_theta)); + declare_parameter_if_not_declared(nh, name + "." + "weight_kinematics_nh", rclcpp::ParameterValue(optim.weight_kinematics_nh)); + declare_parameter_if_not_declared(nh, name + "." + "weight_kinematics_forward_drive", rclcpp::ParameterValue(optim.weight_kinematics_forward_drive)); + declare_parameter_if_not_declared(nh, name + "." + "weight_kinematics_turning_radius", rclcpp::ParameterValue(optim.weight_kinematics_turning_radius)); + declare_parameter_if_not_declared(nh, name + "." + "weight_optimaltime", rclcpp::ParameterValue(optim.weight_optimaltime)); + declare_parameter_if_not_declared(nh, name + "." + "weight_shortest_path", rclcpp::ParameterValue(optim.weight_shortest_path)); + declare_parameter_if_not_declared(nh, name + "." + "weight_obstacle", rclcpp::ParameterValue(optim.weight_obstacle)); + declare_parameter_if_not_declared(nh, name + "." + "weight_inflation", rclcpp::ParameterValue(optim.weight_inflation)); + declare_parameter_if_not_declared(nh, name + "." + "weight_dynamic_obstacle", rclcpp::ParameterValue(optim.weight_dynamic_obstacle)); + declare_parameter_if_not_declared(nh, name + "." + "weight_dynamic_obstacle_inflation", rclcpp::ParameterValue(optim.weight_dynamic_obstacle_inflation)); + declare_parameter_if_not_declared(nh, name + "." + "weight_viapoint", rclcpp::ParameterValue(optim.weight_viapoint)); + declare_parameter_if_not_declared(nh, name + "." + "weight_prefer_rotdir", rclcpp::ParameterValue(optim.weight_prefer_rotdir)); + declare_parameter_if_not_declared(nh, name + "." + "weight_adapt_factor", rclcpp::ParameterValue(optim.weight_adapt_factor)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_cost_exponent", rclcpp::ParameterValue(optim.obstacle_cost_exponent)); + declare_parameter_if_not_declared(nh, name + "." + "weight_velocity_obstacle_ratio", rclcpp::ParameterValue(optim.weight_velocity_obstacle_ratio)); + + // Homotopy Class Planner + declare_parameter_if_not_declared(nh, name + "." + "enable_homotopy_class_planning", rclcpp::ParameterValue(hcp.enable_homotopy_class_planning)); + declare_parameter_if_not_declared(nh, name + "." + "enable_multithreading", rclcpp::ParameterValue(hcp.enable_multithreading)); + declare_parameter_if_not_declared(nh, name + "." + "simple_exploration", rclcpp::ParameterValue(hcp.simple_exploration)); + declare_parameter_if_not_declared(nh, name + "." + "max_number_classes", rclcpp::ParameterValue(hcp.max_number_classes)); + declare_parameter_if_not_declared(nh, name + "." + "selection_obst_cost_scale", rclcpp::ParameterValue(hcp.selection_obst_cost_scale)); + declare_parameter_if_not_declared(nh, name + "." + "selection_prefer_initial_plan", rclcpp::ParameterValue(hcp.selection_prefer_initial_plan)); + declare_parameter_if_not_declared(nh, name + "." + "selection_viapoint_cost_scale", rclcpp::ParameterValue(hcp.selection_viapoint_cost_scale)); + declare_parameter_if_not_declared(nh, name + "." + "selection_cost_hysteresis", rclcpp::ParameterValue(hcp.selection_cost_hysteresis)); + declare_parameter_if_not_declared(nh, name + "." + "selection_alternative_time_cost", rclcpp::ParameterValue(hcp.selection_alternative_time_cost)); + declare_parameter_if_not_declared(nh, name + "." + "switching_blocking_period", rclcpp::ParameterValue(hcp.switching_blocking_period)); + declare_parameter_if_not_declared(nh, name + "." + "roadmap_graph_samples", rclcpp::ParameterValue(hcp.roadmap_graph_no_samples)); + declare_parameter_if_not_declared(nh, name + "." + "roadmap_graph_area_width", rclcpp::ParameterValue(hcp.roadmap_graph_area_width)); + declare_parameter_if_not_declared(nh, name + "." + "roadmap_graph_area_length_scale", rclcpp::ParameterValue(hcp.roadmap_graph_area_length_scale)); + declare_parameter_if_not_declared(nh, name + "." + "h_signature_prescaler", rclcpp::ParameterValue(hcp.h_signature_prescaler)); + declare_parameter_if_not_declared(nh, name + "." + "h_signature_threshold", rclcpp::ParameterValue(hcp.h_signature_threshold)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_keypoint_offset", rclcpp::ParameterValue(hcp.obstacle_keypoint_offset)); + declare_parameter_if_not_declared(nh, name + "." + "obstacle_heading_threshold", rclcpp::ParameterValue(hcp.obstacle_heading_threshold)); + declare_parameter_if_not_declared(nh, name + "." + "viapoints_all_candidates", rclcpp::ParameterValue(hcp.viapoints_all_candidates)); + declare_parameter_if_not_declared(nh, name + "." + "visualize_hc_graph", rclcpp::ParameterValue(hcp.visualize_hc_graph)); + declare_parameter_if_not_declared(nh, name + "." + "visualize_with_time_as_z_axis_scale", rclcpp::ParameterValue(hcp.visualize_with_time_as_z_axis_scale)); + declare_parameter_if_not_declared(nh, name + "." + "delete_detours_backwards", rclcpp::ParameterValue(hcp.delete_detours_backwards)); + declare_parameter_if_not_declared(nh, name + "." + "detours_orientation_tolerance", rclcpp::ParameterValue(hcp.detours_orientation_tolerance)); + declare_parameter_if_not_declared(nh, name + "." + "length_start_orientation_vector", rclcpp::ParameterValue(hcp.length_start_orientation_vector)); + declare_parameter_if_not_declared(nh, name + "." + "max_ratio_detours_duration_best_duration", rclcpp::ParameterValue(hcp.max_ratio_detours_duration_best_duration)); + declare_parameter_if_not_declared(nh, name + "." + "selection_dropping_probability", rclcpp::ParameterValue(hcp.selection_dropping_probability)); + + // Recovery + declare_parameter_if_not_declared(nh, name + "." + "shrink_horizon_backup", rclcpp::ParameterValue(recovery.shrink_horizon_backup)); + declare_parameter_if_not_declared(nh, name + "." + "shrink_horizon_min_duration", rclcpp::ParameterValue(recovery.shrink_horizon_min_duration)); + declare_parameter_if_not_declared(nh, name + "." + "oscillation_recovery", rclcpp::ParameterValue(recovery.oscillation_recovery)); + declare_parameter_if_not_declared(nh, name + "." + "oscillation_v_eps", rclcpp::ParameterValue(recovery.oscillation_v_eps)); + declare_parameter_if_not_declared(nh, name + "." + "oscillation_omega_eps", rclcpp::ParameterValue(recovery.oscillation_omega_eps)); + declare_parameter_if_not_declared(nh, name + "." + "oscillation_recovery_min_duration", rclcpp::ParameterValue(recovery.oscillation_recovery_min_duration)); + declare_parameter_if_not_declared(nh, name + "." + "oscillation_filter_duration", rclcpp::ParameterValue(recovery.oscillation_filter_duration)); + declare_parameter_if_not_declared(nh, name + "." + "divergence_detection_enable", rclcpp::ParameterValue(recovery.divergence_detection_enable)); + declare_parameter_if_not_declared(nh, name + "." + "divergence_detection_max_chi_squared", rclcpp::ParameterValue(recovery.divergence_detection_max_chi_squared)); + + // footprint model + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.type", rclcpp::ParameterType::PARAMETER_STRING); +} + +void TebConfig::loadRosParamFromNodeHandle(const nav2_util::LifecycleNode::SharedPtr nh, const std::string name) +{ + nh->get_parameter_or(name + "." + "odom_topic", odom_topic, odom_topic); + + // Trajectory + nh->get_parameter_or(name + "." + "teb_autosize", trajectory.teb_autosize, trajectory.teb_autosize); + nh->get_parameter_or(name + "." + "dt_ref", trajectory.dt_ref, trajectory.dt_ref); + nh->get_parameter_or(name + "." + "dt_hysteresis", trajectory.dt_hysteresis, trajectory.dt_hysteresis); + nh->get_parameter_or(name + "." + "min_samples", trajectory.min_samples, trajectory.min_samples); + nh->get_parameter_or(name + "." + "max_samples", trajectory.max_samples, trajectory.max_samples); + nh->get_parameter_or(name + "." + "global_plan_overwrite_orientation", trajectory.global_plan_overwrite_orientation, trajectory.global_plan_overwrite_orientation); + nh->get_parameter_or(name + "." + "allow_init_with_backwards_motion", trajectory.allow_init_with_backwards_motion, trajectory.allow_init_with_backwards_motion); + nh->get_parameter_or(name + "." + "global_plan_viapoint_sep", trajectory.global_plan_viapoint_sep, trajectory.global_plan_viapoint_sep); + nh->get_parameter_or(name + "." + "via_points_ordered", trajectory.via_points_ordered, trajectory.via_points_ordered); + nh->get_parameter_or(name + "." + "max_global_plan_lookahead_dist", trajectory.max_global_plan_lookahead_dist, trajectory.max_global_plan_lookahead_dist); + nh->get_parameter_or(name + "." + "global_plan_prune_distance", trajectory.global_plan_prune_distance, trajectory.global_plan_prune_distance); + nh->get_parameter_or(name + "." + "exact_arc_length", trajectory.exact_arc_length, trajectory.exact_arc_length); + nh->get_parameter_or(name + "." + "force_reinit_new_goal_dist", trajectory.force_reinit_new_goal_dist, trajectory.force_reinit_new_goal_dist); + nh->get_parameter_or(name + "." + "force_reinit_new_goal_angular", trajectory.force_reinit_new_goal_angular, trajectory.force_reinit_new_goal_angular); + nh->get_parameter_or(name + "." + "feasibility_check_no_poses", trajectory.feasibility_check_no_poses, trajectory.feasibility_check_no_poses); + nh->get_parameter_or(name + "." + "publish_feedback", trajectory.publish_feedback, trajectory.publish_feedback); + nh->get_parameter_or(name + "." + "min_resolution_collision_check_angular", trajectory.min_resolution_collision_check_angular, trajectory.min_resolution_collision_check_angular); + nh->get_parameter_or(name + "." + "control_look_ahead_poses", trajectory.control_look_ahead_poses, trajectory.control_look_ahead_poses); + nh->get_parameter_or(name + "." + "feasibility_check_lookahead_distance", trajectory.feasibility_check_lookahead_distance, trajectory.feasibility_check_lookahead_distance); + + // Robot + nh->get_parameter_or(name + "." + "max_vel_x", robot.max_vel_x, robot.max_vel_x); + nh->get_parameter_or(name + "." + "max_vel_x_backwards", robot.max_vel_x_backwards, robot.max_vel_x_backwards); + nh->get_parameter_or(name + "." + "max_vel_y", robot.max_vel_y, robot.max_vel_y); + nh->get_parameter_or(name + "." + "max_vel_theta", robot.max_vel_theta, robot.max_vel_theta); + nh->get_parameter_or(name + "." + "acc_lim_x", robot.acc_lim_x, robot.acc_lim_x); + nh->get_parameter_or(name + "." + "acc_lim_y", robot.acc_lim_y, robot.acc_lim_y); + nh->get_parameter_or(name + "." + "acc_lim_theta", robot.acc_lim_theta, robot.acc_lim_theta); + nh->get_parameter_or(name + "." + "min_turning_radius", robot.min_turning_radius, robot.min_turning_radius); + nh->get_parameter_or(name + "." + "wheelbase", robot.wheelbase, robot.wheelbase); + nh->get_parameter_or(name + "." + "cmd_angle_instead_rotvel", robot.cmd_angle_instead_rotvel, robot.cmd_angle_instead_rotvel); + nh->get_parameter_or(name + "." + "is_footprint_dynamic", robot.is_footprint_dynamic, robot.is_footprint_dynamic); + + // GoalTolerance + nh->get_parameter_or(name + "." + "free_goal_vel", goal_tolerance.free_goal_vel, goal_tolerance.free_goal_vel); + + // Obstacles + nh->get_parameter_or(name + "." + "min_obstacle_dist", obstacles.min_obstacle_dist, obstacles.min_obstacle_dist); + nh->get_parameter_or(name + "." + "inflation_dist", obstacles.inflation_dist, obstacles.inflation_dist); + nh->get_parameter_or(name + "." + "dynamic_obstacle_inflation_dist", obstacles.dynamic_obstacle_inflation_dist, obstacles.dynamic_obstacle_inflation_dist); + nh->get_parameter_or(name + "." + "include_dynamic_obstacles", obstacles.include_dynamic_obstacles, obstacles.include_dynamic_obstacles); + nh->get_parameter_or(name + "." + "include_costmap_obstacles", obstacles.include_costmap_obstacles, obstacles.include_costmap_obstacles); + nh->get_parameter_or(name + "." + "costmap_obstacles_behind_robot_dist", obstacles.costmap_obstacles_behind_robot_dist, obstacles.costmap_obstacles_behind_robot_dist); + nh->get_parameter_or(name + "." + "obstacle_poses_affected", obstacles.obstacle_poses_affected, obstacles.obstacle_poses_affected); + nh->get_parameter_or(name + "." + "legacy_obstacle_association", obstacles.legacy_obstacle_association, obstacles.legacy_obstacle_association); + nh->get_parameter_or(name + "." + "obstacle_association_force_inclusion_factor", obstacles.obstacle_association_force_inclusion_factor, obstacles.obstacle_association_force_inclusion_factor); + nh->get_parameter_or(name + "." + "obstacle_association_cutoff_factor", obstacles.obstacle_association_cutoff_factor, obstacles.obstacle_association_cutoff_factor); + nh->get_parameter_or(name + "." + "costmap_converter_plugin", obstacles.costmap_converter_plugin, obstacles.costmap_converter_plugin); + nh->get_parameter_or(name + "." + "costmap_converter_spin_thread", obstacles.costmap_converter_spin_thread, obstacles.costmap_converter_spin_thread); + nh->get_parameter_or(name + "." + "obstacle_proximity_ratio_max_vel", obstacles.obstacle_proximity_ratio_max_vel, obstacles.obstacle_proximity_ratio_max_vel); + nh->get_parameter_or(name + "." + "obstacle_proximity_lower_bound", obstacles.obstacle_proximity_lower_bound, obstacles.obstacle_proximity_lower_bound); + nh->get_parameter_or(name + "." + "obstacle_proximity_upper_bound", obstacles.obstacle_proximity_upper_bound, obstacles.obstacle_proximity_upper_bound); + + // Optimization + nh->get_parameter_or(name + "." + "no_inner_iterations", optim.no_inner_iterations, optim.no_inner_iterations); + nh->get_parameter_or(name + "." + "no_outer_iterations", optim.no_outer_iterations, optim.no_outer_iterations); + nh->get_parameter_or(name + "." + "optimization_activate", optim.optimization_activate, optim.optimization_activate); + nh->get_parameter_or(name + "." + "optimization_verbose", optim.optimization_verbose, optim.optimization_verbose); + nh->get_parameter_or(name + "." + "penalty_epsilon", optim.penalty_epsilon, optim.penalty_epsilon); + nh->get_parameter_or(name + "." + "weight_max_vel_x", optim.weight_max_vel_x, optim.weight_max_vel_x); + nh->get_parameter_or(name + "." + "weight_max_vel_y", optim.weight_max_vel_y, optim.weight_max_vel_y); + nh->get_parameter_or(name + "." + "weight_max_vel_theta", optim.weight_max_vel_theta, optim.weight_max_vel_theta); + nh->get_parameter_or(name + "." + "weight_acc_lim_x", optim.weight_acc_lim_x, optim.weight_acc_lim_x); + nh->get_parameter_or(name + "." + "weight_acc_lim_y", optim.weight_acc_lim_y, optim.weight_acc_lim_y); + nh->get_parameter_or(name + "." + "weight_acc_lim_theta", optim.weight_acc_lim_theta, optim.weight_acc_lim_theta); + nh->get_parameter_or(name + "." + "weight_kinematics_nh", optim.weight_kinematics_nh, optim.weight_kinematics_nh); + nh->get_parameter_or(name + "." + "weight_kinematics_forward_drive", optim.weight_kinematics_forward_drive, optim.weight_kinematics_forward_drive); + nh->get_parameter_or(name + "." + "weight_kinematics_turning_radius", optim.weight_kinematics_turning_radius, optim.weight_kinematics_turning_radius); + nh->get_parameter_or(name + "." + "weight_optimaltime", optim.weight_optimaltime, optim.weight_optimaltime); + nh->get_parameter_or(name + "." + "weight_shortest_path", optim.weight_shortest_path, optim.weight_shortest_path); + nh->get_parameter_or(name + "." + "weight_obstacle", optim.weight_obstacle, optim.weight_obstacle); + nh->get_parameter_or(name + "." + "weight_inflation", optim.weight_inflation, optim.weight_inflation); + nh->get_parameter_or(name + "." + "weight_dynamic_obstacle", optim.weight_dynamic_obstacle, optim.weight_dynamic_obstacle); + nh->get_parameter_or(name + "." + "weight_dynamic_obstacle_inflation", optim.weight_dynamic_obstacle_inflation, optim.weight_dynamic_obstacle_inflation); + nh->get_parameter_or(name + "." + "weight_viapoint", optim.weight_viapoint, optim.weight_viapoint); + nh->get_parameter_or(name + "." + "weight_prefer_rotdir", optim.weight_prefer_rotdir, optim.weight_prefer_rotdir); + nh->get_parameter_or(name + "." + "weight_adapt_factor", optim.weight_adapt_factor, optim.weight_adapt_factor); + nh->get_parameter_or(name + "." + "obstacle_cost_exponent", optim.obstacle_cost_exponent, optim.obstacle_cost_exponent); + nh->get_parameter_or(name + "." + "weight_velocity_obstacle_ratio", optim.weight_velocity_obstacle_ratio, optim.weight_velocity_obstacle_ratio); + + // Homotopy Class Planner + nh->get_parameter_or(name + "." + "enable_homotopy_class_planning", hcp.enable_homotopy_class_planning, hcp.enable_homotopy_class_planning); + nh->get_parameter_or(name + "." + "enable_multithreading", hcp.enable_multithreading, hcp.enable_multithreading); + nh->get_parameter_or(name + "." + "simple_exploration", hcp.simple_exploration, hcp.simple_exploration); + nh->get_parameter_or(name + "." + "max_number_classes", hcp.max_number_classes, hcp.max_number_classes); + nh->get_parameter_or(name + "." + "selection_obst_cost_scale", hcp.selection_obst_cost_scale, hcp.selection_obst_cost_scale); + nh->get_parameter_or(name + "." + "selection_prefer_initial_plan", hcp.selection_prefer_initial_plan, hcp.selection_prefer_initial_plan); + nh->get_parameter_or(name + "." + "selection_viapoint_cost_scale", hcp.selection_viapoint_cost_scale, hcp.selection_viapoint_cost_scale); + nh->get_parameter_or(name + "." + "selection_cost_hysteresis", hcp.selection_cost_hysteresis, hcp.selection_cost_hysteresis); + nh->get_parameter_or(name + "." + "selection_alternative_time_cost", hcp.selection_alternative_time_cost, hcp.selection_alternative_time_cost); + nh->get_parameter_or(name + "." + "switching_blocking_period", hcp.switching_blocking_period, hcp.switching_blocking_period); + nh->get_parameter_or(name + "." + "roadmap_graph_samples", hcp.roadmap_graph_no_samples, hcp.roadmap_graph_no_samples); + nh->get_parameter_or(name + "." + "roadmap_graph_area_width", hcp.roadmap_graph_area_width, hcp.roadmap_graph_area_width); + nh->get_parameter_or(name + "." + "roadmap_graph_area_length_scale", hcp.roadmap_graph_area_length_scale, hcp.roadmap_graph_area_length_scale); + nh->get_parameter_or(name + "." + "h_signature_prescaler", hcp.h_signature_prescaler, hcp.h_signature_prescaler); + nh->get_parameter_or(name + "." + "h_signature_threshold", hcp.h_signature_threshold, hcp.h_signature_threshold); + nh->get_parameter_or(name + "." + "obstacle_keypoint_offset", hcp.obstacle_keypoint_offset, hcp.obstacle_keypoint_offset); + nh->get_parameter_or(name + "." + "obstacle_heading_threshold", hcp.obstacle_heading_threshold, hcp.obstacle_heading_threshold); + nh->get_parameter_or(name + "." + "viapoints_all_candidates", hcp.viapoints_all_candidates, hcp.viapoints_all_candidates); + nh->get_parameter_or(name + "." + "visualize_hc_graph", hcp.visualize_hc_graph, hcp.visualize_hc_graph); + nh->get_parameter_or(name + "." + "visualize_with_time_as_z_axis_scale", hcp.visualize_with_time_as_z_axis_scale, hcp.visualize_with_time_as_z_axis_scale); + nh->get_parameter_or(name + "." + "delete_detours_backwards", hcp.delete_detours_backwards, hcp.delete_detours_backwards); + nh->get_parameter_or(name + "." + "detours_orientation_tolerance", hcp.detours_orientation_tolerance, hcp.detours_orientation_tolerance); + nh->get_parameter_or(name + "." + "length_start_orientation_vector", hcp.length_start_orientation_vector, hcp.length_start_orientation_vector); + nh->get_parameter_or(name + "." + "max_ratio_detours_duration_best_duration", hcp.max_ratio_detours_duration_best_duration, hcp.max_ratio_detours_duration_best_duration); + nh->get_parameter_or(name + "." + "selection_dropping_probability", hcp.selection_dropping_probability, hcp.selection_dropping_probability); + + // Recovery + nh->get_parameter_or(name + "." + "shrink_horizon_backup", recovery.shrink_horizon_backup, recovery.shrink_horizon_backup); + nh->get_parameter_or(name + "." + "shrink_horizon_min_duration", recovery.shrink_horizon_min_duration, recovery.shrink_horizon_min_duration); + nh->get_parameter_or(name + "." + "oscillation_recovery", recovery.oscillation_recovery, recovery.oscillation_recovery); + nh->get_parameter_or(name + "." + "oscillation_v_eps", recovery.oscillation_v_eps, recovery.oscillation_v_eps); + nh->get_parameter_or(name + "." + "oscillation_omega_eps", recovery.oscillation_omega_eps, recovery.oscillation_omega_eps); + nh->get_parameter_or(name + "." + "oscillation_recovery_min_duration", recovery.oscillation_recovery_min_duration, recovery.oscillation_recovery_min_duration); + nh->get_parameter_or(name + "." + "oscillation_filter_duration", recovery.oscillation_filter_duration, recovery.oscillation_filter_duration); + nh->get_parameter_or(name + "." + "divergence_detection_enable", recovery.divergence_detection_enable, recovery.divergence_detection_enable); + nh->get_parameter_or(name + "." + "divergence_detection_max_chi_squared", recovery.divergence_detection_max_chi_squared, recovery.divergence_detection_max_chi_squared); + + // footprint model + if (!nh->get_parameter(name + "." + "footprint_model.type", model_name)) + { + RCLCPP_INFO(logger_, "No robot footprint model specified for trajectory optimization. Using point-shaped model."); + robot_model = std::make_shared(); + } + + // point + else if (model_name.compare("point") == 0) + { + RCLCPP_INFO(logger_, "Footprint model 'point' loaded for trajectory optimization."); + robot_model = std::make_shared(); + } + + // circular + else if (model_name.compare("circular") == 0) + { + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.radius", rclcpp::ParameterType::PARAMETER_DOUBLE); + // get radius + double radius; + if (!nh->get_parameter(name + "." + "footprint_model.radius", radius)) + { + RCLCPP_ERROR(logger_, + "Footprint model 'circular' cannot be loaded for trajectory optimization, since param '%s.footprint_model.radius' does not exist. Using point-model instead.", + nh->get_namespace()); + + robot_model = std::make_shared(); + } + RCLCPP_INFO(logger_, "Footprint model 'circular' (radius: %fm) loaded for trajectory optimization.", radius); + robot_model = std::make_shared(radius); + } + + + // line + else if (model_name.compare("line") == 0) + { + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.line_start", rclcpp::ParameterType::PARAMETER_DOUBLE_ARRAY); + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.line_end", rclcpp::ParameterType::PARAMETER_DOUBLE_ARRAY); + std::vector line_start, line_end; + // check parameters + if (!nh->get_parameter(name + "." + "footprint_model.line_start", line_start) || !nh->get_parameter(name + "." + "footprint_model.line_end", line_end)) + { + RCLCPP_ERROR(logger_, + "Footprint model 'line' cannot be loaded for trajectory optimization, since param '%s.footprint_model.line_start' and/or '.../line_end' do not exist. Using point-model instead.", + nh->get_namespace()); + robot_model = std::make_shared(); + } + if (line_start.size() != 2 || line_end.size() != 2) + { + RCLCPP_ERROR(logger_, "Footprint model 'line' cannot be loaded for trajectory optimization, since param '%s.footprint_model.line_start' and/or '.../line_end' do not contain x and y coordinates (2D). Using point-model instead.", + nh->get_namespace()); + robot_model = std::make_shared(); + } + + RCLCPP_INFO(logger_, + "Footprint model 'line' (line_start: [%f,%f]m, line_end: [%f,%f]m) loaded for trajectory optimization.", + line_start[0], line_start[1], line_end[0], line_end[1]); + + robot_model = std::make_shared(Eigen::Map(line_start.data()), Eigen::Map(line_end.data())); + } + + // two circles + else if (model_name.compare("two_circles") == 0) + { + rclcpp::Parameter dummy; + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.front_offset", rclcpp::ParameterType::PARAMETER_DOUBLE); + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.front_radius", rclcpp::ParameterType::PARAMETER_DOUBLE); + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.rear_offset", rclcpp::ParameterType::PARAMETER_DOUBLE); + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.rear_radius", rclcpp::ParameterType::PARAMETER_DOUBLE); + // check parameters + if (!nh->get_parameter(name + "." + "footprint_model.front_offset", dummy) || !nh->get_parameter(name + "." + "footprint_model.front_radius", dummy) + || !nh->get_parameter(name + "." + "footprint_model.rear_offset", dummy) || !nh->get_parameter(name + "." + "footprint_model.rear_radius", dummy)) + { + RCLCPP_ERROR(logger_, + "Footprint model 'two_circles' cannot be loaded for trajectory optimization, since params '%s.footprint_model.front_offset', '.../front_radius', '.../rear_offset' and '.../rear_radius' do not exist. Using point-model instead.", + nh->get_namespace()); + robot_model = std::make_shared(); + } + double front_offset, front_radius, rear_offset, rear_radius; + nh->get_parameter(name + "." + "footprint_model.front_offset", front_offset); + nh->get_parameter(name + "." + "footprint_model.front_radius", front_radius); + nh->get_parameter(name + "." + "footprint_model.rear_offset", rear_offset); + nh->get_parameter(name + "." + "footprint_model.rear_radius", rear_radius); + RCLCPP_INFO(logger_, + "Footprint model 'two_circles' (front_offset: %fm, front_radius: %fm, rear_offset: %fm, rear_radius: %fm) loaded for trajectory optimization.", + front_offset, front_radius, rear_offset, rear_radius); + + robot_model = std::make_shared(front_offset, front_radius, rear_offset, rear_radius); + } + + // polygon + else if (model_name.compare("polygon") == 0) + { + declare_parameter_if_not_declared(nh, name + "." + "footprint_model.vertices", rclcpp::ParameterType::PARAMETER_STRING); + // check parameters + std::string footprint_string; + if (!nh->get_parameter(name + "." + "footprint_model.vertices", footprint_string) ) + { + RCLCPP_ERROR(logger_, + "Footprint model 'polygon' cannot be loaded for trajectory optimization, since param '%s.footprint_model.vertices' does not exist. Using point-model instead.", + nh->get_namespace()); + + robot_model = std::make_shared(); + } + + std::vector footprint; + // get vertices + if (nav2_costmap_2d::makeFootprintFromString(footprint_string, footprint)) + { + Point2dContainer polygon; + for(const auto &pt : footprint) { + polygon.push_back(Eigen::Vector2d(pt.x, pt.y)); + } + RCLCPP_INFO(logger_, "Footprint model 'polygon' loaded for trajectory optimization."); + robot_model = std::make_shared(polygon); + } + else + { + RCLCPP_ERROR(logger_, + "Footprint model 'polygon' cannot be loaded for trajectory optimization, since param '%s.footprint_model.vertices' does not define an array of coordinates. Using point-model instead.", + nh->get_namespace()); + robot_model = std::make_shared(); + } + + } + // otherwise + else + { + RCLCPP_WARN(logger_, "Unknown robot footprint model specified with parameter '%s.footprint_model.type'. Using point model instead.", + nh->get_namespace()); + robot_model = std::make_shared(); + } + + + checkParameters(); + checkDeprecated(nh, name); +} + +rcl_interfaces::msg::SetParametersResult + TebConfig::dynamicParametersCallback(std::vector parameters) +{ + auto result = rcl_interfaces::msg::SetParametersResult(); + std::lock_guard l(config_mutex_); + + bool reload_footprint = false; + + for (auto parameter : parameters) { + const auto & type = parameter.get_type(); + const auto & name = parameter.get_name(); + + if (type == rcl_interfaces::msg::ParameterType::PARAMETER_DOUBLE) { + // Trajectory + if (name == node_name + ".teb_autosize") { + trajectory.teb_autosize = parameter.as_double(); + } else if (name == node_name + ".dt_ref") { + trajectory.dt_ref = parameter.as_double(); + } else if (name == node_name + ".dt_hysteresis") { + trajectory.dt_hysteresis = parameter.as_double(); + } else if (name == node_name + ".global_plan_viapoint_sep") { + trajectory.global_plan_viapoint_sep = parameter.as_double(); + } else if (name == node_name + ".max_global_plan_lookahead_dist") { + trajectory.max_global_plan_lookahead_dist = parameter.as_double(); + } else if (name == node_name + ".global_plan_prune_distance") { + trajectory.global_plan_prune_distance = parameter.as_double(); + } else if (name == node_name + ".force_reinit_new_goal_dist") { + trajectory.force_reinit_new_goal_dist = parameter.as_double(); + } else if (name == node_name + ".force_reinit_new_goal_angular") { + trajectory.force_reinit_new_goal_angular = parameter.as_double(); + } else if (name == node_name + ".min_resolution_collision_check_angular") { + trajectory.min_resolution_collision_check_angular = parameter.as_double(); + } else if (name == node_name + ".feasibility_check_lookahead_distance") { + trajectory.feasibility_check_lookahead_distance = parameter.as_double(); + } + // Robot + else if (name == node_name + ".max_vel_x") { + robot.max_vel_x = parameter.as_double(); + robot.base_max_vel_x = parameter.as_double(); + } else if (name == node_name + ".max_vel_x_backwards") { + robot.max_vel_x_backwards = parameter.as_double(); + robot.base_max_vel_x_backwards = parameter.as_double(); + } else if (name == node_name + ".max_vel_y") { + robot.max_vel_y = parameter.as_double(); + robot.base_max_vel_y = parameter.as_double(); + } else if (name == node_name + ".max_vel_theta") { + robot.max_vel_theta = parameter.as_double(); + robot.base_max_vel_theta = parameter.as_double(); + } else if (name == node_name + ".acc_lim_x") { + robot.acc_lim_x = parameter.as_double(); + } else if (name == node_name + ".acc_lim_y") { + robot.acc_lim_y = parameter.as_double(); + } else if (name == node_name + ".acc_lim_theta") { + robot.acc_lim_theta = parameter.as_double(); + } else if (name == node_name + ".min_turning_radius") { + robot.min_turning_radius = parameter.as_double(); + } else if (name == node_name + ".wheelbase") { + robot.wheelbase = parameter.as_double(); + } + // GoalTolerance + // Obstacles + else if (name == node_name + ".min_obstacle_dist") { + obstacles.min_obstacle_dist = parameter.as_double(); + } else if (name == node_name + ".inflation_dist") { + obstacles.inflation_dist = parameter.as_double(); + } else if (name == node_name + ".dynamic_obstacle_inflation_dist") { + obstacles.dynamic_obstacle_inflation_dist = parameter.as_double(); + } else if (name == node_name + ".costmap_obstacles_behind_robot_dist") { + obstacles.costmap_obstacles_behind_robot_dist = parameter.as_double(); + } else if (name == node_name + ".obstacle_association_force_inclusion_factor") { + obstacles.obstacle_association_force_inclusion_factor = parameter.as_double(); + } else if (name == node_name + ".obstacle_association_cutoff_factor") { + obstacles.obstacle_association_cutoff_factor = parameter.as_double(); + } else if (name == node_name + ".obstacle_proximity_ratio_max_vel") { + obstacles.obstacle_proximity_ratio_max_vel = parameter.as_double(); + } else if (name == node_name + ".obstacle_proximity_lower_bound") { + obstacles.obstacle_proximity_lower_bound = parameter.as_double(); + } else if (name == node_name + ".obstacle_proximity_upper_bound") { + obstacles.obstacle_proximity_upper_bound = parameter.as_double(); + } + // Optimization + else if (name == node_name + ".penalty_epsilon") { + optim.penalty_epsilon = parameter.as_double(); + } else if (name == node_name + ".weight_max_vel_x") { + optim.weight_max_vel_x = parameter.as_double(); + } else if (name == node_name + ".weight_max_vel_y") { + optim.weight_max_vel_y = parameter.as_double(); + } else if (name == node_name + ".weight_max_vel_theta") { + optim.weight_max_vel_theta = parameter.as_double(); + } else if (name == node_name + ".weight_acc_lim_x") { + optim.weight_acc_lim_x = parameter.as_double(); + } else if (name == node_name + ".weight_acc_lim_y") { + optim.weight_acc_lim_y = parameter.as_double(); + } else if (name == node_name + ".weight_acc_lim_theta") { + optim.weight_acc_lim_theta = parameter.as_double(); + } else if (name == node_name + ".weight_kinematics_nh") { + optim.weight_kinematics_nh = parameter.as_double(); + } else if (name == node_name + ".weight_kinematics_forward_drive") { + optim.weight_kinematics_forward_drive = parameter.as_double(); + } else if (name == node_name + ".weight_kinematics_turning_radius") { + optim.weight_kinematics_turning_radius = parameter.as_double(); + } else if (name == node_name + ".weight_optimaltime") { + optim.weight_optimaltime = parameter.as_double(); + } else if (name == node_name + ".weight_shortest_path") { + optim.weight_shortest_path = parameter.as_double(); + } else if (name == node_name + ".weight_obstacle") { + optim.weight_obstacle = parameter.as_double(); + } else if (name == node_name + ".weight_inflation") { + optim.weight_inflation = parameter.as_double(); + } else if (name == node_name + ".weight_dynamic_obstacle") { + optim.weight_dynamic_obstacle = parameter.as_double(); + } else if (name == node_name + ".weight_dynamic_obstacle_inflation") { + optim.weight_dynamic_obstacle_inflation = parameter.as_double(); + } else if (name == node_name + ".weight_viapoint") { + optim.weight_viapoint = parameter.as_double(); + } else if (name == node_name + ".weight_prefer_rotdir") { + optim.weight_prefer_rotdir = parameter.as_double(); + } else if (name == node_name + ".weight_adapt_factor") { + optim.weight_adapt_factor = parameter.as_double(); + } else if (name == node_name + ".obstacle_cost_exponent") { + optim.obstacle_cost_exponent = parameter.as_double(); + } + // Homotopy Class Planner + else if (name == node_name + ".selection_cost_hysteresis") { + hcp.selection_cost_hysteresis = parameter.as_double(); + } else if (name == node_name + ".selection_prefer_initial_plan") { + hcp.selection_prefer_initial_plan = parameter.as_double(); + } else if (name == node_name + ".selection_obst_cost_scale") { + hcp.selection_obst_cost_scale = parameter.as_double(); + } else if (name == node_name + ".selection_viapoint_cost_scale") { + hcp.selection_viapoint_cost_scale = parameter.as_double(); + } else if (name == node_name + ".switching_blocking_period") { + hcp.switching_blocking_period = parameter.as_double(); + } else if (name == node_name + ".roadmap_graph_area_width") { + hcp.roadmap_graph_area_width = parameter.as_double(); + } else if (name == node_name + ".roadmap_graph_area_length_scale") { + hcp.roadmap_graph_area_length_scale = parameter.as_double(); + } else if (name == node_name + ".h_signature_prescaler") { + hcp.h_signature_prescaler = parameter.as_double(); + } else if (name == node_name + ".h_signature_threshold") { + hcp.h_signature_threshold = parameter.as_double(); + } else if (name == node_name + ".obstacle_keypoint_offset") { + hcp.obstacle_keypoint_offset = parameter.as_double(); + } else if (name == node_name + ".obstacle_heading_threshold") { + hcp.obstacle_heading_threshold = parameter.as_double(); + } else if (name == node_name + ".visualize_with_time_as_z_axis_scale") { + hcp.visualize_with_time_as_z_axis_scale = parameter.as_double(); + } else if (name == node_name + ".detours_orientation_tolerance") { + hcp.detours_orientation_tolerance = parameter.as_double(); + } else if (name == node_name + ".length_start_orientation_vector") { + hcp.length_start_orientation_vector = parameter.as_double(); + } else if (name == node_name + ".max_ratio_detours_duration_best_duration") { + hcp.max_ratio_detours_duration_best_duration = parameter.as_double(); + } else if (name == node_name + ".selection_dropping_probability") { + hcp.selection_dropping_probability = parameter.as_double(); + } + // Recovery + else if (name == node_name + ".shrink_horizon_min_duration") { + recovery.shrink_horizon_min_duration = parameter.as_double(); + } else if (name == node_name + ".oscillation_v_eps") { + recovery.oscillation_v_eps = parameter.as_double(); + } else if (name == node_name + ".oscillation_omega_eps") { + recovery.oscillation_omega_eps = parameter.as_double(); + } else if (name == node_name + ".oscillation_recovery_min_duration") { + recovery.oscillation_recovery_min_duration = parameter.as_double(); + } else if (name == node_name + ".oscillation_filter_duration") { + recovery.oscillation_filter_duration = parameter.as_double(); + } else if (name == node_name + ".divergence_detection_max_chi_squared") { + recovery.divergence_detection_max_chi_squared = parameter.as_double(); + } + // Footprint model + else if (name == node_name + ".footprint_model.radius") { + reload_footprint = true; + radius = parameter.as_double(); + } else if (name == node_name + ".footprint_model.front_offset") { + reload_footprint = true; + front_offset = parameter.as_double(); + } else if (name == node_name + ".footprint_model.front_radius") { + reload_footprint = true; + front_radius = parameter.as_double(); + } else if (name == node_name + ".footprint_model.rear_offset") { + reload_footprint = true; + rear_offset = parameter.as_double(); + } else if (name == node_name + ".footprint_model.rear_radius") { + reload_footprint = true; + rear_radius = parameter.as_double(); + } + } + + else if (type == rcl_interfaces::msg::ParameterType::PARAMETER_DOUBLE_ARRAY) { + if (name == node_name + ".footprint_model.line_start") { + reload_footprint = true; + line_start = parameter.as_double_array(); + } else if (name == node_name + ".footprint_model.line_end") { + reload_footprint = true; + line_end = parameter.as_double_array(); + } + } + + else if (type == rcl_interfaces::msg::ParameterType::PARAMETER_INTEGER) { + // Trajectory + if (name == node_name + ".min_samples") { + trajectory.min_samples = parameter.as_int(); + } else if (name == node_name + ".max_samples") { + trajectory.max_samples = parameter.as_int(); + } else if (name == node_name + ".feasibility_check_no_poses") { + trajectory.feasibility_check_no_poses = parameter.as_int(); + } else if (name == node_name + ".control_look_ahead_poses") { + trajectory.control_look_ahead_poses = parameter.as_int(); + } + // Robot + // GoalTolerance + // Obstacles + else if (name == node_name + ".obstacle_poses_affected") { + obstacles.obstacle_poses_affected = parameter.as_int(); + } else if (name == node_name + ".costmap_converter_rate") { + obstacles.costmap_converter_rate = parameter.as_int(); + } + // Optimization + else if (name == node_name + ".no_inner_iterations") { + optim.no_inner_iterations = parameter.as_int(); + } else if (name == node_name + ".no_outer_iterations") { + optim.no_outer_iterations = parameter.as_int(); + } + // Homotopy Class Planner + else if (name == node_name + ".max_number_classes") { + hcp.max_number_classes = parameter.as_int(); + } else if (name == node_name + ".roadmap_graph_no_samples") { + hcp.roadmap_graph_no_samples = parameter.as_int(); + } + // Recovery + } + + else if (type == rcl_interfaces::msg::ParameterType::PARAMETER_BOOL) { + // Trajectory + if (name == node_name + ".global_plan_overwrite_orientation") { + trajectory.global_plan_overwrite_orientation = parameter.as_bool(); + } else if (name == node_name + ".allow_init_with_backwards_motion") { + trajectory.allow_init_with_backwards_motion = parameter.as_bool(); + } else if (name == node_name + ".via_points_ordered") { + trajectory.via_points_ordered = parameter.as_bool(); + } else if (name == node_name + ".exact_arc_length") { + trajectory.exact_arc_length = parameter.as_bool(); + } else if (name == node_name + ".publish_feedback") { + trajectory.publish_feedback = parameter.as_bool(); + } + // Robot + else if (name == node_name + ".cmd_angle_instead_rotvel") { + robot.cmd_angle_instead_rotvel = parameter.as_bool(); + } else if (name == node_name + ".is_footprint_dynamic") { + robot.is_footprint_dynamic = parameter.as_bool(); + } + // GoalTolerance + else if (name == node_name + ".free_goal_vel") { + goal_tolerance.free_goal_vel = parameter.as_bool(); + } + // Obstacles + else if (name == node_name + ".include_dynamic_obstacles") { + obstacles.include_dynamic_obstacles = parameter.as_bool(); + } else if (name == node_name + ".include_costmap_obstacles") { + obstacles.include_costmap_obstacles = parameter.as_bool(); + } else if (name == node_name + ".legacy_obstacle_association") { + obstacles.legacy_obstacle_association = parameter.as_bool(); + } else if (name == node_name + ".costmap_converter_spin_thread") { + obstacles.costmap_converter_spin_thread = parameter.as_bool(); + } + // Optimization + else if (name == node_name + ".optimization_activate") { + optim.optimization_activate = parameter.as_bool(); + } else if (name == node_name + ".optimization_verbose") { + optim.optimization_verbose = parameter.as_bool(); + } + // Homotopy Class Planner + else if (name == node_name + ".enable_homotopy_class_planning") { + hcp.enable_homotopy_class_planning = parameter.as_bool(); + } else if (name == node_name + ".enable_multithreading") { + hcp.enable_multithreading = parameter.as_bool(); + } else if (name == node_name + ".simple_exploration") { + hcp.simple_exploration = parameter.as_bool(); + } else if (name == node_name + ".selection_alternative_time_cost") { + hcp.selection_alternative_time_cost = parameter.as_bool(); + } else if (name == node_name + ".viapoints_all_candidates") { + hcp.viapoints_all_candidates = parameter.as_bool(); + } else if (name == node_name + ".visualize_hc_graph") { + hcp.visualize_hc_graph = parameter.as_bool(); + } else if (name == node_name + ".delete_detours_backwards") { + hcp.delete_detours_backwards = parameter.as_bool(); + } + // Recovery + else if (name == node_name + ".shrink_horizon_backup") { + recovery.shrink_horizon_backup = parameter.as_bool(); + } else if (name == node_name + ".oscillation_recovery") { + recovery.oscillation_recovery = parameter.as_bool(); + } else if (name == node_name + ".divergence_detection_enable") { + recovery.divergence_detection_enable = parameter.as_bool(); + } + } + + else if (type == rcl_interfaces::msg::ParameterType::PARAMETER_STRING) { + // Trajectory + // Robot + // GoalTolerance + // Obstacles + if (name == node_name + ".costmap_converter_plugin") { + obstacles.costmap_converter_plugin = parameter.as_string(); + } + // Optimization + // Homotopy Class Planner + // Recovery + // Footprint model + else if (name == node_name + ".footprint_model.type") { + RCLCPP_WARN(logger_, "Changing footprint model type is not allowed at runtime"); + } else if (name == node_name + ".footprint_model.vertices") { + reload_footprint = true; + footprint_string = parameter.as_string(); + } + } + } + checkParameters(); + + if (reload_footprint) { + if (model_name.compare("circular") == 0) + { + RCLCPP_INFO(logger_, "Footprint model 'circular' (radius: %fm) reloaded for trajectory optimization.", radius); + robot_model = std::make_shared(radius); + } + else if (model_name.compare("line") == 0) { + if (line_start.size() != 2 || line_end.size() != 2) + { + RCLCPP_ERROR(logger_, "Footprint model 'line' cannot be reloaded for trajectory optimization"); + } else { + RCLCPP_INFO(logger_, + "Footprint model 'line' (line_start: [%f,%f]m, line_end: [%f,%f]m) reloaded for trajectory optimization.", + line_start[0], line_start[1], line_end[0], line_end[1]); + + robot_model = std::make_shared(Eigen::Map(line_start.data()), Eigen::Map(line_end.data())); + } + } + else if (model_name.compare("two_circles") == 0) { + RCLCPP_INFO(logger_, + "Footprint model 'two_circles' (front_offset: %fm, front_radius: %fm, rear_offset: %fm, rear_radius: %fm) loaded for trajectory optimization.", + front_offset, front_radius, rear_offset, rear_radius); + + robot_model = std::make_shared(front_offset, front_radius, rear_offset, rear_radius); + } + else if (model_name.compare("polygon") == 0) + { + std::vector footprint; + // get vertices + if (nav2_costmap_2d::makeFootprintFromString(footprint_string, footprint)) + { + Point2dContainer polygon; + for(const auto &pt : footprint) { + polygon.push_back(Eigen::Vector2d(pt.x, pt.y)); + } + RCLCPP_INFO(logger_, "Footprint model 'polygon' reloaded for trajectory optimization."); + robot_model = std::make_shared(polygon); + } + else + { + RCLCPP_ERROR(logger_, + "Footprint model 'polygon' cannot be reloaded for trajectory optimization, since param 'footprint_model.vertices' does not define an array of coordinates."); + } + } + } + result.successful = true; + return result; +} + + +void TebConfig::checkParameters() const +{ + //rclcpp::Logger logger_{rclcpp::get_logger("TEBLocalPlanner")}; + // positive backward velocity? + if (robot.max_vel_x_backwards <= 0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: Do not choose max_vel_x_backwards to be <=0. Disable backwards driving by increasing the optimization weight for penalyzing backwards driving."); + + // bounds smaller than penalty epsilon + if (robot.max_vel_x <= optim.penalty_epsilon) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: max_vel_x <= penalty_epsilon. The resulting bound is negative. Undefined behavior... Change at least one of them!"); + + if (robot.max_vel_x_backwards <= optim.penalty_epsilon) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: max_vel_x_backwards <= penalty_epsilon. The resulting bound is negative. Undefined behavior... Change at least one of them!"); + + if (robot.max_vel_theta <= optim.penalty_epsilon) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: max_vel_theta <= penalty_epsilon. The resulting bound is negative. Undefined behavior... Change at least one of them!"); + + if (robot.acc_lim_x <= optim.penalty_epsilon) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: acc_lim_x <= penalty_epsilon. The resulting bound is negative. Undefined behavior... Change at least one of them!"); + + if (robot.acc_lim_theta <= optim.penalty_epsilon) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: acc_lim_theta <= penalty_epsilon. The resulting bound is negative. Undefined behavior... Change at least one of them!"); + + // dt_ref and dt_hyst + if (trajectory.dt_ref <= trajectory.dt_hysteresis) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: dt_ref <= dt_hysteresis. The hysteresis is not allowed to be greater or equal!. Undefined behavior... Change at least one of them!"); + + // min number of samples + if (trajectory.min_samples <3) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter min_samples is smaller than 3! Sorry, I haven't enough degrees of freedom to plan a trajectory for you. Please increase ..."); + + // costmap obstacle behind robot + if (obstacles.costmap_obstacles_behind_robot_dist < 0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter 'costmap_obstacles_behind_robot_dist' should be positive or zero."); + + // hcp: obstacle heading threshold + if (hcp.obstacle_keypoint_offset>=1 || hcp.obstacle_keypoint_offset<=0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter obstacle_heading_threshold must be in the interval ]0,1[. 0=0deg opening angle, 1=90deg opening angle."); + + // carlike + if (robot.cmd_angle_instead_rotvel && robot.wheelbase==0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter cmd_angle_instead_rotvel is non-zero but wheelbase is set to zero: undesired behavior."); + + if (robot.cmd_angle_instead_rotvel && robot.min_turning_radius==0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter cmd_angle_instead_rotvel is non-zero but min_turning_radius is set to zero: undesired behavior. You are mixing a carlike and a diffdrive robot"); + + // positive weight_adapt_factor + if (optim.weight_adapt_factor < 1.0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter weight_adapt_factor shoud be >= 1.0"); + + if (recovery.oscillation_filter_duration < 0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter oscillation_filter_duration must be >= 0"); + + if (optim.weight_optimaltime <= 0) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: parameter weight_optimaltime shoud be > 0 (even if weight_shortest_path is in use)"); +} + +void TebConfig::checkDeprecated(const nav2_util::LifecycleNode::SharedPtr nh, const std::string name) const +{ + rclcpp::Parameter dummy; + + if (nh->get_parameter(name + "." + "line_obstacle_poses_affected", dummy) || nh->get_parameter(name + "." + "polygon_obstacle_poses_affected", dummy)) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: 'line_obstacle_poses_affected' and 'polygon_obstacle_poses_affected' are deprecated. They share now the common parameter 'obstacle_poses_affected'."); + + if (nh->get_parameter(name + "." + "weight_point_obstacle", dummy) || nh->get_parameter(name + "." + "weight_line_obstacle", dummy) || nh->get_parameter(name + "." + "weight_poly_obstacle", dummy)) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: 'weight_point_obstacle', 'weight_line_obstacle' and 'weight_poly_obstacle' are deprecated. They are replaced by the single param 'weight_obstacle'."); + + if (nh->get_parameter(name + "." + "costmap_obstacles_front_only", dummy)) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: 'costmap_obstacles_front_only' is deprecated. It is replaced by 'costmap_obstacles_behind_robot_dist' to define the actual area taken into account."); + + if (nh->get_parameter(name + "." + "costmap_emergency_stop_dist", dummy)) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: 'costmap_emergency_stop_dist' is deprecated. You can safely remove it from your parameter config."); + + if (nh->get_parameter(name + "." + "alternative_time_cost", dummy)) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: 'alternative_time_cost' is deprecated. It has been replaced by 'selection_alternative_time_cost'."); + + if (nh->get_parameter(name + "." + "global_plan_via_point_sep", dummy)) + RCLCPP_WARN(logger_, "TebLocalPlannerROS() Param Warning: 'global_plan_via_point_sep' is deprecated. It has been replaced by 'global_plan_viapoint_sep' due to consistency reasons."); +} + + +} // namespace teb_local_planner diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/teb_local_planner_ros.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/teb_local_planner_ros.cpp new file mode 100644 index 0000000..6060d8b --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/teb_local_planner_ros.cpp @@ -0,0 +1,1122 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/teb_local_planner_ros.h" + +//#include +#include + +#include + +// pluginlib macros +#include + +#include "g2o/core/sparse_optimizer.h" +#include "g2o/core/block_solver.h" +#include "g2o/core/factory.h" +#include "g2o/core/optimization_algorithm_gauss_newton.h" +#include "g2o/core/optimization_algorithm_levenberg.h" +#include "g2o/solvers/csparse/linear_solver_csparse.h" +#include "g2o/solvers/cholmod/linear_solver_cholmod.h" + +#include +#include +#include + +#include +#include + +using nav2_util::declare_parameter_if_not_declared; + +namespace teb_local_planner +{ + + +TebLocalPlannerROS::TebLocalPlannerROS() + : costmap_ros_(nullptr), tf_(nullptr), cfg_(new TebConfig()), costmap_model_(nullptr), intra_proc_node_(nullptr), + costmap_converter_loader_("costmap_converter", "costmap_converter::BaseCostmapToPolygons"), + custom_via_points_active_(false), no_infeasible_plans_(0), + last_preferred_rotdir_(RotType::none), initialized_(false) +{ +} + + +TebLocalPlannerROS::~TebLocalPlannerROS() +{ +} + +void TebLocalPlannerROS::initialize(nav2_util::LifecycleNode::SharedPtr node) +{ + // check if the plugin is already initialized + if(!initialized_) + { + // declare parameters (ros2-dashing) + intra_proc_node_.reset( + new rclcpp::Node("costmap_converter", node->get_namespace(), + rclcpp::NodeOptions())); + cfg_->declareParameters(node, name_); + + // get parameters of TebConfig via the nodehandle and override the default config + cfg_->loadRosParamFromNodeHandle(node, name_); + + // reserve some memory for obstacles + obstacles_.reserve(500); + + // create the planner instance + if (cfg_->hcp.enable_homotopy_class_planning) + { + planner_ = PlannerInterfacePtr(new HomotopyClassPlanner(node, *cfg_.get(), &obstacles_, visualization_, &via_points_)); + RCLCPP_INFO(logger_, "Parallel planning in distinctive topologies enabled."); + } + else + { + planner_ = PlannerInterfacePtr(new TebOptimalPlanner(node, *cfg_.get(), &obstacles_, visualization_, &via_points_)); + RCLCPP_INFO(logger_, "Parallel planning in distinctive topologies disabled."); + } + + // init other variables + costmap_ = costmap_ros_->getCostmap(); // locking should be done in MoveBase. + + costmap_model_ = std::make_shared(); + std::string costmap_model_name("costmap_model"); + costmap_model_->initialize(node, costmap_model_name, name_, costmap_ros_); + + cfg_->map_frame = costmap_ros_->getGlobalFrameID(); // TODO + + //Initialize a costmap to polygon converter + if (!cfg_->obstacles.costmap_converter_plugin.empty()) + { + try + { + costmap_converter_ = costmap_converter_loader_.createSharedInstance(cfg_->obstacles.costmap_converter_plugin); + std::string converter_name = costmap_converter_loader_.getName(cfg_->obstacles.costmap_converter_plugin); + RCLCPP_INFO(logger_, "library path : %s", costmap_converter_loader_.getClassLibraryPath(cfg_->obstacles.costmap_converter_plugin).c_str()); + // replace '::' by '/' to convert the c++ namespace to a NodeHandle namespace + boost::replace_all(converter_name, "::", "/"); + + costmap_converter_->setOdomTopic(cfg_->odom_topic); + costmap_converter_->initialize(intra_proc_node_); + costmap_converter_->setCostmap2D(costmap_); + const auto rate = std::make_shared((double)cfg_->obstacles.costmap_converter_rate); + costmap_converter_->startWorker(rate, costmap_, cfg_->obstacles.costmap_converter_spin_thread); + RCLCPP_INFO(logger_, "Costmap conversion plugin %s loaded.", cfg_->obstacles.costmap_converter_plugin.c_str()); + } + catch(pluginlib::PluginlibException& ex) + { + RCLCPP_INFO(logger_, + "The specified costmap converter plugin cannot be loaded. All occupied costmap cells are treaten as point obstacles. Error message: %s", ex.what()); + costmap_converter_.reset(); + } + } + else { + RCLCPP_INFO(logger_, "No costmap conversion plugin specified. All occupied costmap cells are treaten as point obstacles."); + } + + + // Get footprint of the robot and minimum and maximum distance from the center of the robot to its footprint vertices. + footprint_spec_ = costmap_ros_->getRobotFootprint(); + nav2_costmap_2d::calculateMinAndMaxDistances(footprint_spec_, robot_inscribed_radius_, robot_circumscribed_radius); + + // Add callback for dynamic parameters + dyn_params_handler = node->add_on_set_parameters_callback( + std::bind(&TebConfig::dynamicParametersCallback, std::ref(cfg_), std::placeholders::_1)); + + // validate optimization footprint and costmap footprint + validateFootprints(cfg_->robot_model->getInscribedRadius(), robot_inscribed_radius_, cfg_->obstacles.min_obstacle_dist); + + // setup callback for custom obstacles + custom_obst_sub_ = node->create_subscription( + "obstacles", + rclcpp::SystemDefaultsQoS(), + std::bind(&TebLocalPlannerROS::customObstacleCB, this, std::placeholders::_1)); + + // setup callback for custom via-points + via_points_sub_ = node->create_subscription( + "via_points", + rclcpp::SystemDefaultsQoS(), + std::bind(&TebLocalPlannerROS::customViaPointsCB, this, std::placeholders::_1)); + + // initialize failure detector + //rclcpp::Node::SharedPtr nh_move_base("~"); + double controller_frequency = 5; + node->get_parameter("controller_frequency", controller_frequency); + failure_detector_.setBufferLength(std::round(cfg_->recovery.oscillation_filter_duration*controller_frequency)); + + // set initialized flag + initialized_ = true; + + // This should be called since to prevent different time sources exception + time_last_infeasible_plan_ = clock_->now(); + time_last_oscillation_ = clock_->now(); + RCLCPP_DEBUG(logger_, "teb_local_planner plugin initialized."); + } + else + { + RCLCPP_INFO(logger_, "teb_local_planner has already been initialized, doing nothing."); + } +} + +void TebLocalPlannerROS::configure( + const rclcpp_lifecycle::LifecycleNode::WeakPtr & parent, + std::string name, + std::shared_ptr tf, + std::shared_ptr costmap_ros) { + nh_ = parent; + + auto node = nh_.lock(); + logger_ = node->get_logger(); + clock_ = node->get_clock(); + + costmap_ros_ = costmap_ros; + tf_ = tf; + name_ = name; + + initialize(node); + visualization_ = std::make_shared(node, *cfg_); + visualization_->on_configure(); + planner_->setVisualization(visualization_); + + return; +} + +void TebLocalPlannerROS::setPlan(const nav_msgs::msg::Path & orig_global_plan) +{ + // check if plugin is initialized + if(!initialized_) + { + RCLCPP_ERROR(logger_, "teb_local_planner has not been initialized, please call initialize() before using this planner"); + return; + } + + // store the global plan + global_plan_.clear(); + global_plan_.reserve(orig_global_plan.poses.size()); + for(const auto &in_pose :orig_global_plan.poses) { + geometry_msgs::msg::PoseStamped out_pose; + out_pose.pose = in_pose.pose; + out_pose.header = orig_global_plan.header; + global_plan_.push_back(out_pose); + } + + // we do not clear the local planner here, since setPlan is called frequently whenever the global planner updates the plan. + // the local planner checks whether it is required to reinitialize the trajectory or not within each velocity computation step. + + return; +} + + +geometry_msgs::msg::TwistStamped TebLocalPlannerROS::computeVelocityCommands(const geometry_msgs::msg::PoseStamped &pose, + const geometry_msgs::msg::Twist &velocity, nav2_core::GoalChecker *goal_checker) +{ + // check if plugin initialized + if(!initialized_) + { + throw nav2_core::PlannerException( + std::string("teb_local_planner has not been initialized, please call initialize() before using this planner") + ); + } + geometry_msgs::msg::TwistStamped cmd_vel; + + cmd_vel.header.stamp = clock_->now(); + cmd_vel.header.frame_id = costmap_ros_->getBaseFrameID(); + cmd_vel.twist.linear.x = 0; + cmd_vel.twist.linear.y = 0; + cmd_vel.twist.angular.z = 0; + + // Update for the current goal checker's state + geometry_msgs::msg::Pose pose_tolerance; + geometry_msgs::msg::Twist vel_tolerance; + if (!goal_checker->getTolerances(pose_tolerance, vel_tolerance)) { + RCLCPP_WARN(logger_, "Unable to retrieve goal checker's tolerances!"); + } else { + cfg_->goal_tolerance.xy_goal_tolerance = pose_tolerance.position.x; + } + + // Get robot pose + robot_pose_ = PoseSE2(pose.pose); + geometry_msgs::msg::PoseStamped robot_pose; + robot_pose.header = pose.header; + robot_pose_.toPoseMsg(robot_pose.pose); + + // Get robot velocity + robot_vel_ = velocity; + + // prune global plan to cut off parts of the past (spatially before the robot) + pruneGlobalPlan(robot_pose, global_plan_, cfg_->trajectory.global_plan_prune_distance); + + // Transform global plan to the frame of interest (w.r.t. the local costmap) + std::vector transformed_plan; + int goal_idx; + geometry_msgs::msg::TransformStamped tf_plan_to_global; + if (!transformGlobalPlan(global_plan_, robot_pose, *costmap_, cfg_->map_frame, cfg_->trajectory.max_global_plan_lookahead_dist, + transformed_plan, &goal_idx, &tf_plan_to_global)) + { + throw nav2_core::PlannerException( + std::string("Could not transform the global plan to the frame of the controller") + ); + } + + // update via-points container + if (!custom_via_points_active_) + updateViaPointsContainer(transformed_plan, cfg_->trajectory.global_plan_viapoint_sep); + + // check if we should enter any backup mode and apply settings + configureBackupModes(transformed_plan, goal_idx); + + // Return false if the transformed global plan is empty + if (transformed_plan.empty()) + { + throw nav2_core::PlannerException( + std::string("Transformed plan is empty. Cannot determine a local plan.") + ); + } + + // Get current goal point (last point of the transformed plan) + const geometry_msgs::msg::PoseStamped &goal_point = transformed_plan.back(); + robot_goal_.x() = goal_point.pose.position.x; + robot_goal_.y() = goal_point.pose.position.y; + if (cfg_->trajectory.global_plan_overwrite_orientation) + { + robot_goal_.theta() = estimateLocalGoalOrientation(global_plan_, goal_point, goal_idx, tf_plan_to_global); + // overwrite/update goal orientation of the transformed plan with the actual goal (enable using the plan as initialization) + //transformed_plan.back().pose.orientation = tf::createQuaternionMsgFromYaw(robot_goal_.theta()); + tf2::Quaternion q; + q.setRPY(0, 0, robot_goal_.theta()); + transformed_plan.back().pose.orientation = tf2::toMsg(q); + } + else + { + robot_goal_.theta() = tf2::getYaw(goal_point.pose.orientation); + } + + // overwrite/update start of the transformed plan with the actual robot position (allows using the plan as initial trajectory) + if (transformed_plan.size()==1) // plan only contains the goal + { + transformed_plan.insert(transformed_plan.begin(), geometry_msgs::msg::PoseStamped()); // insert start (not yet initialized) + } + //tf::poseTFToMsg(robot_pose, transformed_plan.front().pose); // update start; + transformed_plan.front().pose = robot_pose.pose; + + // clear currently existing obstacles + obstacles_.clear(); + + // Update obstacle container with costmap information or polygons provided by a costmap_converter plugin + if (costmap_converter_) + updateObstacleContainerWithCostmapConverter(); + else + updateObstacleContainerWithCostmap(); + + // also consider custom obstacles (must be called after other updates, since the container is not cleared) + updateObstacleContainerWithCustomObstacles(); + + + // Do not allow config changes during the following optimization step + std::lock_guard cfg_lock(cfg_->configMutex()); + + // Now perform the actual planning +// bool success = planner_->plan(robot_pose_, robot_goal_, robot_vel_, cfg_->goal_tolerance.free_goal_vel); // straight line init + bool success = planner_->plan(transformed_plan, &robot_vel_, cfg_->goal_tolerance.free_goal_vel); + if (!success) + { + planner_->clearPlanner(); // force reinitialization for next time + + ++no_infeasible_plans_; // increase number of infeasible solutions in a row + time_last_infeasible_plan_ = clock_->now(); + last_cmd_ = cmd_vel.twist; + + throw nav2_core::PlannerException( + std::string("teb_local_planner was not able to obtain a local plan for the current setting.") + ); + } + + // Check for divergence + if (planner_->hasDiverged()) + { + cmd_vel.twist.linear.x = cmd_vel.twist.linear.y = cmd_vel.twist.angular.z = 0; + + // Reset everything to start again with the initialization of new trajectories. + planner_->clearPlanner(); + RCLCPP_WARN_THROTTLE(logger_, *(clock_), 1, "TebLocalPlannerROS: the trajectory has diverged. Resetting planner..."); + + ++no_infeasible_plans_; // increase number of infeasible solutions in a row + time_last_infeasible_plan_ = clock_->now(); + last_cmd_ = cmd_vel.twist; + throw nav2_core::PlannerException( + std::string("TebLocalPlannerROS: velocity command invalid (hasDiverged). Resetting planner...") + ); + } + + // Check feasibility (but within the first few states only) + if(cfg_->robot.is_footprint_dynamic) + { + // Update footprint of the robot and minimum and maximum distance from the center of the robot to its footprint vertices. + std::vector updated_footprint_spec_ = costmap_ros_->getRobotFootprint(); + if (updated_footprint_spec_ != footprint_spec_) { + updated_footprint_spec_ = footprint_spec_; + nav2_costmap_2d::calculateMinAndMaxDistances(updated_footprint_spec_, robot_inscribed_radius_, robot_circumscribed_radius); + } + } + + bool feasible = planner_->isTrajectoryFeasible(costmap_model_.get(), footprint_spec_, robot_inscribed_radius_, robot_circumscribed_radius, cfg_->trajectory.feasibility_check_no_poses, cfg_->trajectory.feasibility_check_lookahead_distance); + if (!feasible) + { + cmd_vel.twist.linear.x = cmd_vel.twist.linear.y = cmd_vel.twist.angular.z = 0; + + // now we reset everything to start again with the initialization of new trajectories. + planner_->clearPlanner(); + + ++no_infeasible_plans_; // increase number of infeasible solutions in a row + time_last_infeasible_plan_ = clock_->now(); + last_cmd_ = cmd_vel.twist; + + throw nav2_core::PlannerException( + std::string("TebLocalPlannerROS: trajectory is not feasible. Resetting planner...") + ); + } + + // Get the velocity command for this sampling interval + if (!planner_->getVelocityCommand(cmd_vel.twist.linear.x, cmd_vel.twist.linear.y, cmd_vel.twist.angular.z, cfg_->trajectory.control_look_ahead_poses)) + { + planner_->clearPlanner(); + ++no_infeasible_plans_; // increase number of infeasible solutions in a row + time_last_infeasible_plan_ = clock_->now(); + last_cmd_ = cmd_vel.twist; + + throw nav2_core::PlannerException( + std::string("TebLocalPlannerROS: velocity command invalid. Resetting planner...") + ); + } + + // Saturate velocity, if the optimization results violates the constraints (could be possible due to soft constraints). + saturateVelocity(cmd_vel.twist.linear.x, cmd_vel.twist.linear.y, cmd_vel.twist.angular.z, cfg_->robot.max_vel_x, cfg_->robot.max_vel_y, + cfg_->robot.max_vel_theta, cfg_->robot.max_vel_x_backwards); + + // convert rot-vel to steering angle if desired (carlike robot). + // The min_turning_radius is allowed to be slighly smaller since it is a soft-constraint + // and opposed to the other constraints not affected by penalty_epsilon. The user might add a safety margin to the parameter itself. + if (cfg_->robot.cmd_angle_instead_rotvel) + { + cmd_vel.twist.angular.z = convertTransRotVelToSteeringAngle(cmd_vel.twist.linear.x, cmd_vel.twist.angular.z, cfg_->robot.wheelbase, 0.95*cfg_->robot.min_turning_radius); + if (!std::isfinite(cmd_vel.twist.angular.z)) + { + cmd_vel.twist.linear.x = cmd_vel.twist.linear.y = cmd_vel.twist.angular.z = 0; + last_cmd_ = cmd_vel.twist; + planner_->clearPlanner(); + + ++no_infeasible_plans_; // increase number of infeasible solutions in a row + time_last_infeasible_plan_ = clock_->now(); + + throw nav2_core::PlannerException( + std::string("TebLocalPlannerROS: Resulting steering angle is not finite. Resetting planner...") + ); + } + } + + // a feasible solution should be found, reset counter + no_infeasible_plans_ = 0; + + // store last command (for recovery analysis etc.) + last_cmd_ = cmd_vel.twist; + + // Now visualize everything + planner_->visualize(); + visualization_->publishObstacles(obstacles_); + visualization_->publishViaPoints(via_points_); + visualization_->publishGlobalPlan(global_plan_); + + return cmd_vel; +} + +void TebLocalPlannerROS::updateObstacleContainerWithCostmap() +{ + // Add costmap obstacles if desired + if (cfg_->obstacles.include_costmap_obstacles) + { + std::lock_guard lock(*costmap_->getMutex()); + + Eigen::Vector2d robot_orient = robot_pose_.orientationUnitVec(); + + for (unsigned int i=0; igetSizeInCellsX()-1; ++i) + { + for (unsigned int j=0; jgetSizeInCellsY()-1; ++j) + { + if (costmap_->getCost(i,j) == nav2_costmap_2d::LETHAL_OBSTACLE) + { + Eigen::Vector2d obs; + costmap_->mapToWorld(i,j,obs.coeffRef(0), obs.coeffRef(1)); + + // check if obstacle is interesting (e.g. not far behind the robot) + Eigen::Vector2d obs_dir = obs-robot_pose_.position(); + if ( obs_dir.dot(robot_orient) < 0 && obs_dir.norm() > cfg_->obstacles.costmap_obstacles_behind_robot_dist ) + continue; + + obstacles_.push_back(ObstaclePtr(new PointObstacle(obs))); + } + } + } + } +} + +void TebLocalPlannerROS::updateObstacleContainerWithCostmapConverter() +{ + if (!costmap_converter_) + return; + + //Get obstacles from costmap converter + costmap_converter::ObstacleArrayConstPtr obstacles = costmap_converter_->getObstacles(); + if (!obstacles) + return; + + for (std::size_t i=0; iobstacles.size(); ++i) + { + const costmap_converter_msgs::msg::ObstacleMsg* obstacle = &obstacles->obstacles.at(i); + const geometry_msgs::msg::Polygon* polygon = &obstacle->polygon; + + if (polygon->points.size()==1 && obstacle->radius > 0) // Circle + { + obstacles_.push_back(ObstaclePtr(new CircularObstacle(polygon->points[0].x, polygon->points[0].y, obstacle->radius))); + } + else if (polygon->points.size()==1) // Point + { + obstacles_.push_back(ObstaclePtr(new PointObstacle(polygon->points[0].x, polygon->points[0].y))); + } + else if (polygon->points.size()==2) // Line + { + obstacles_.push_back(ObstaclePtr(new LineObstacle(polygon->points[0].x, polygon->points[0].y, + polygon->points[1].x, polygon->points[1].y ))); + } + else if (polygon->points.size()>2) // Real polygon + { + PolygonObstacle* polyobst = new PolygonObstacle; + for (std::size_t j=0; jpoints.size(); ++j) + { + polyobst->pushBackVertex(polygon->points[j].x, polygon->points[j].y); + } + polyobst->finalizePolygon(); + obstacles_.push_back(ObstaclePtr(polyobst)); + } + + // Set velocity, if obstacle is moving + if(!obstacles_.empty()) + obstacles_.back()->setCentroidVelocity(obstacles->obstacles[i].velocities, obstacles->obstacles[i].orientation); + } +} + + +void TebLocalPlannerROS::updateObstacleContainerWithCustomObstacles() +{ + // Add custom obstacles obtained via message + std::lock_guard l(custom_obst_mutex_); + + if (!custom_obstacle_msg_.obstacles.empty()) + { + // We only use the global header to specify the obstacle coordinate system instead of individual ones + Eigen::Affine3d obstacle_to_map_eig; + try + { + geometry_msgs::msg::TransformStamped obstacle_to_map = tf_->lookupTransform( + cfg_->map_frame, tf2::timeFromSec(0), + custom_obstacle_msg_.header.frame_id, tf2::timeFromSec(0), + custom_obstacle_msg_.header.frame_id, tf2::durationFromSec(0.5)); + obstacle_to_map_eig = tf2::transformToEigen(obstacle_to_map); + //tf2::fromMsg(obstacle_to_map.transform, obstacle_to_map_eig); + } + catch (tf2::TransformException ex) + { + RCLCPP_ERROR(logger_, "%s",ex.what()); + obstacle_to_map_eig.setIdentity(); + } + + for (size_t i=0; i 0 ) // circle + { + Eigen::Vector3d pos( custom_obstacle_msg_.obstacles.at(i).polygon.points.front().x, + custom_obstacle_msg_.obstacles.at(i).polygon.points.front().y, + custom_obstacle_msg_.obstacles.at(i).polygon.points.front().z ); + obstacles_.push_back(ObstaclePtr(new CircularObstacle( (obstacle_to_map_eig * pos).head(2), custom_obstacle_msg_.obstacles.at(i).radius))); + } + else if (custom_obstacle_msg_.obstacles.at(i).polygon.points.size() == 1 ) // point + { + Eigen::Vector3d pos( custom_obstacle_msg_.obstacles.at(i).polygon.points.front().x, + custom_obstacle_msg_.obstacles.at(i).polygon.points.front().y, + custom_obstacle_msg_.obstacles.at(i).polygon.points.front().z ); + obstacles_.push_back(ObstaclePtr(new PointObstacle( (obstacle_to_map_eig * pos).head(2) ))); + } + else if (custom_obstacle_msg_.obstacles.at(i).polygon.points.size() == 2 ) // line + { + Eigen::Vector3d line_start( custom_obstacle_msg_.obstacles.at(i).polygon.points.front().x, + custom_obstacle_msg_.obstacles.at(i).polygon.points.front().y, + custom_obstacle_msg_.obstacles.at(i).polygon.points.front().z ); + Eigen::Vector3d line_end( custom_obstacle_msg_.obstacles.at(i).polygon.points.back().x, + custom_obstacle_msg_.obstacles.at(i).polygon.points.back().y, + custom_obstacle_msg_.obstacles.at(i).polygon.points.back().z ); + obstacles_.push_back(ObstaclePtr(new LineObstacle( (obstacle_to_map_eig * line_start).head(2), + (obstacle_to_map_eig * line_end).head(2) ))); + } + else if (custom_obstacle_msg_.obstacles.at(i).polygon.points.empty()) + { + RCLCPP_INFO(logger_, "Invalid custom obstacle received. List of polygon vertices is empty. Skipping..."); + continue; + } + else // polygon + { + PolygonObstacle* polyobst = new PolygonObstacle; + for (size_t j=0; jpushBackVertex( (obstacle_to_map_eig * pos).head(2) ); + } + polyobst->finalizePolygon(); + obstacles_.push_back(ObstaclePtr(polyobst)); + } + + // Set velocity, if obstacle is moving + if(!obstacles_.empty()) + obstacles_.back()->setCentroidVelocity(custom_obstacle_msg_.obstacles[i].velocities, custom_obstacle_msg_.obstacles[i].orientation); + } + } +} + +void TebLocalPlannerROS::updateViaPointsContainer(const std::vector& transformed_plan, double min_separation) +{ + via_points_.clear(); + + if (min_separation<=0) + return; + + std::size_t prev_idx = 0; + for (std::size_t i=1; i < transformed_plan.size(); ++i) // skip first one, since we do not need any point before the first min_separation [m] + { + // check separation to the previous via-point inserted + if (distance_points2d( transformed_plan[prev_idx].pose.position, transformed_plan[i].pose.position ) < min_separation) + continue; + + // add via-point + via_points_.push_back( Eigen::Vector2d( transformed_plan[i].pose.position.x, transformed_plan[i].pose.position.y ) ); + prev_idx = i; + } + +} + +//Eigen::Vector2d TebLocalPlannerROS::tfPoseToEigenVector2dTransRot(const tf::Pose& tf_vel) +//{ +// Eigen::Vector2d vel; +// vel.coeffRef(0) = std::sqrt( tf_vel.getOrigin().getX() * tf_vel.getOrigin().getX() + tf_vel.getOrigin().getY() * tf_vel.getOrigin().getY() ); +// vel.coeffRef(1) = tf::getYaw(tf_vel.getRotation()); +// return vel; +//} + + +bool TebLocalPlannerROS::pruneGlobalPlan(const geometry_msgs::msg::PoseStamped& global_pose, std::vector& global_plan, double dist_behind_robot) +{ + if (global_plan.empty()) + return true; + + try + { + // transform robot pose into the plan frame (we do not wait here, since pruning not crucial, if missed a few times) + //geometry_msgs::msg::TransformStamped global_to_plan_transform = tf_->lookupTransform(global_plan.front().header.frame_id, global_pose.header.frame_id, tf2::timeFromSec(0)); + geometry_msgs::msg::PoseStamped robot = tf_->transform( + global_pose, + global_plan.front().header.frame_id); + + //robot.setData( global_to_plan_transform * global_pose ); + + double dist_thresh_sq = dist_behind_robot*dist_behind_robot; + + // iterate plan until a pose close the robot is found + std::vector::iterator it = global_plan.begin(); + std::vector::iterator erase_end = it; + while (it != global_plan.end()) + { + double dx = robot.pose.position.x - it->pose.position.x; + double dy = robot.pose.position.y - it->pose.position.y; + double dist_sq = dx * dx + dy * dy; + if (dist_sq < dist_thresh_sq) + { + erase_end = it; + break; + } + ++it; + } + if (erase_end == global_plan.end()) + return false; + + if (erase_end != global_plan.begin()) + global_plan.erase(global_plan.begin(), erase_end); + } + catch (const tf2::TransformException& ex) + { + RCLCPP_DEBUG(logger_, "Cannot prune path since no transform is available: %s\n", ex.what()); + return false; + } + return true; +} + + +bool TebLocalPlannerROS::transformGlobalPlan(const std::vector& global_plan, + const geometry_msgs::msg::PoseStamped& global_pose, const nav2_costmap_2d::Costmap2D& costmap, const std::string& global_frame, double max_plan_length, + std::vector& transformed_plan, int* current_goal_idx, geometry_msgs::msg::TransformStamped* tf_plan_to_global) const +{ + // this method is a slightly modified version of base_local_planner/goal_functions.h + + const geometry_msgs::msg::PoseStamped& plan_pose = global_plan[0]; + + transformed_plan.clear(); + + try + { + if (global_plan.empty()) + { + RCLCPP_ERROR(logger_, "Received plan with zero length"); + *current_goal_idx = 0; + return false; + } + + // get plan_to_global_transform from plan frame to global_frame + geometry_msgs::msg::TransformStamped plan_to_global_transform = tf_->lookupTransform( + global_frame, tf2_ros::fromMsg(plan_pose.header.stamp), + plan_pose.header.frame_id, tf2::timeFromSec(0), + plan_pose.header.frame_id, tf2::durationFromSec(0.5)); + +// tf_->waitForTransform(global_frame, ros::Time::now(), +// plan_pose.header.frame_id, plan_pose.header.stamp, +// plan_pose.header.frame_id, ros::Duration(0.5)); +// tf_->lookupTransform(global_frame, ros::Time(), +// plan_pose.header.frame_id, plan_pose.header.stamp, +// plan_pose.header.frame_id, plan_to_global_transform); + + //let's get the pose of the robot in the frame of the plan + geometry_msgs::msg::PoseStamped robot_pose = tf_->transform(global_pose, plan_pose.header.frame_id); + + //we'll discard points on the plan that are outside the local costmap + double dist_threshold = std::max(costmap.getSizeInCellsX() * costmap.getResolution() / 2.0, + costmap.getSizeInCellsY() * costmap.getResolution() / 2.0); + dist_threshold *= 0.85; // just consider 85% of the costmap size to better incorporate point obstacle that are + // located on the border of the local costmap + + + int i = 0; + double sq_dist_threshold = dist_threshold * dist_threshold; + double sq_dist = 1e10; + + //we need to loop to a point on the plan that is within a certain distance of the robot + bool robot_reached = false; + for(int j=0; j < (int)global_plan.size(); ++j) + { + double x_diff = robot_pose.pose.position.x - global_plan[j].pose.position.x; + double y_diff = robot_pose.pose.position.y - global_plan[j].pose.position.y; + double new_sq_dist = x_diff * x_diff + y_diff * y_diff; + if (new_sq_dist > sq_dist_threshold) + break; // force stop if we have reached the costmap border + + if (robot_reached && new_sq_dist > sq_dist) + break; + + if (new_sq_dist < sq_dist) // find closest distance + { + sq_dist = new_sq_dist; + i = j; + if (sq_dist < 0.05) // 2.5 cm to the robot; take the immediate local minima; if it's not the global + robot_reached = true; // minima, probably means that there's a loop in the path, and so we prefer this + } + } + + geometry_msgs::msg::PoseStamped newer_pose; + + double plan_length = 0; // check cumulative Euclidean distance along the plan + + //now we'll transform until points are outside of our distance threshold + while(i < (int)global_plan.size() && sq_dist <= sq_dist_threshold && (max_plan_length<=0 || plan_length <= max_plan_length)) + { + //const geometry_msgs::msg::PoseStamped& pose = global_plan[i]; + //tf::poseStampedMsgToTF(pose, tf_pose); + //tf_pose.setData(plan_to_global_transform * tf_pose); + tf2::doTransform(global_plan[i], newer_pose, plan_to_global_transform); + +// tf_pose.stamp_ = plan_to_global_transform.stamp_; +// tf_pose.frame_id_ = global_frame; +// tf::poseStampedTFToMsg(tf_pose, newer_pose); + + transformed_plan.push_back(newer_pose); + + double x_diff = robot_pose.pose.position.x - global_plan[i].pose.position.x; + double y_diff = robot_pose.pose.position.y - global_plan[i].pose.position.y; + sq_dist = x_diff * x_diff + y_diff * y_diff; + + // caclulate distance to previous pose + if (i>0 && max_plan_length>0) + plan_length += distance_points2d(global_plan[i-1].pose.position, global_plan[i].pose.position); + + ++i; + } + + // if we are really close to the goal (>0) + // the resulting transformed plan can be empty. In that case we explicitly inject the global goal. + if (transformed_plan.empty()) + { +// tf::poseStampedMsgToTF(global_plan.back(), tf_pose); +// tf_pose.setData(plan_to_global_transform * tf_pose); +// tf_pose.stamp_ = plan_to_global_transform.stamp_; +// tf_pose.frame_id_ = global_frame; +// tf::poseStampedTFToMsg(tf_pose, newer_pose); + tf2::doTransform(global_plan.back(), newer_pose, plan_to_global_transform); + + transformed_plan.push_back(newer_pose); + + // Return the index of the current goal point (inside the distance threshold) + if (current_goal_idx) *current_goal_idx = int(global_plan.size())-1; + } + else + { + // Return the index of the current goal point (inside the distance threshold) + if (current_goal_idx) *current_goal_idx = i-1; // subtract 1, since i was increased once before leaving the loop + } + + // Return the transformation from the global plan to the global planning frame if desired + if (tf_plan_to_global) *tf_plan_to_global = plan_to_global_transform; + } + catch(tf2::LookupException& ex) + { + RCLCPP_ERROR(logger_, "No Transform available Error: %s\n", ex.what()); + return false; + } + catch(tf2::ConnectivityException& ex) + { + RCLCPP_ERROR(logger_, "Connectivity Error: %s\n", ex.what()); + return false; + } + catch(tf2::ExtrapolationException& ex) + { + RCLCPP_ERROR(logger_, "Extrapolation Error: %s\n", ex.what()); + if (global_plan.size() > 0) + RCLCPP_ERROR(logger_, "Global Frame: %s Plan Frame size %d: %s\n", global_frame.c_str(), (unsigned int)global_plan.size(), global_plan[0].header.frame_id.c_str()); + + return false; + } + + return true; +} + + + + +double TebLocalPlannerROS::estimateLocalGoalOrientation(const std::vector& global_plan, const geometry_msgs::msg::PoseStamped& local_goal, + int current_goal_idx, const geometry_msgs::msg::TransformStamped& tf_plan_to_global, int moving_average_length) const +{ + int n = (int)global_plan.size(); + + // check if we are near the global goal already + if (current_goal_idx > n-moving_average_length-2) + { + if (current_goal_idx >= n-1) // we've exactly reached the goal + { + return tf2::getYaw(local_goal.pose.orientation); + } + else + { +// tf::Quaternion global_orientation; +// tf::quaternionMsgToTF(global_plan.back().pose.orientation, global_orientation); +// return tf2::getYaw(tf_plan_to_global.getRotation() * global_orientation ); + + tf2::Quaternion global_orientation, tf_plan_to_global_orientation; + tf2::fromMsg(global_plan.back().pose.orientation, global_orientation); + tf2::fromMsg(tf_plan_to_global.transform.rotation, tf_plan_to_global_orientation); + + return tf2::getYaw(tf_plan_to_global_orientation * global_orientation); + } + } + + // reduce number of poses taken into account if the desired number of poses is not available + moving_average_length = std::min(moving_average_length, n-current_goal_idx-1 ); // maybe redundant, since we have checked the vicinity of the goal before + + std::vector candidates; + geometry_msgs::msg::PoseStamped tf_pose_k = local_goal; + geometry_msgs::msg::PoseStamped tf_pose_kp1; + + int range_end = current_goal_idx + moving_average_length; + for (int i = current_goal_idx; i < range_end; ++i) + { + // Transform pose of the global plan to the planning frame + const geometry_msgs::msg::PoseStamped& pose = global_plan.at(i+1); + tf2::doTransform(global_plan.at(i+1), tf_pose_kp1, tf_plan_to_global); + + // calculate yaw angle + candidates.push_back( std::atan2(tf_pose_kp1.pose.position.y - tf_pose_k.pose.position.y, + tf_pose_kp1.pose.position.x - tf_pose_k.pose.position.x ) ); + + if (i max_vel_x) + ratio_x = max_vel_x / vx; + + // limit strafing velocity + if (vy > max_vel_y || vy < -max_vel_y) + ratio_y = std::abs(max_vel_y / vy); + + // Limit angular velocity + if (omega > max_vel_theta || omega < -max_vel_theta) + ratio_omega = std::abs(max_vel_theta / omega); + + // Limit backwards velocity + if (max_vel_x_backwards<=0) + { + RCLCPP_WARN_ONCE( + logger_, + "TebLocalPlannerROS(): Do not choose max_vel_x_backwards to be <=0. Disable backwards driving by increasing the optimization weight for penalyzing backwards driving."); + } + else if (vx < -max_vel_x_backwards) + ratio_x = - max_vel_x_backwards / vx; + + if (cfg_->robot.use_proportional_saturation) + { + double ratio = std::min(std::min(ratio_x, ratio_y), ratio_omega); + vx *= ratio; + vy *= ratio; + omega *= ratio; + } + else + { + vx *= ratio_x; + vy *= ratio_y; + omega *= ratio_omega; + } +} + + +double TebLocalPlannerROS::convertTransRotVelToSteeringAngle(double v, double omega, double wheelbase, double min_turning_radius) const +{ + if (omega==0 || v==0) + return 0; + + double radius = v/omega; + + if (fabs(radius) < min_turning_radius) + radius = double(g2o::sign(radius)) * min_turning_radius; + + return std::atan(wheelbase / radius); +} + + +void TebLocalPlannerROS::validateFootprints(double opt_inscribed_radius, double costmap_inscribed_radius, double min_obst_dist) +{ + RCLCPP_WARN_EXPRESSION( + logger_, opt_inscribed_radius + min_obst_dist < costmap_inscribed_radius, + "The inscribed radius of the footprint specified for TEB optimization (%f) + min_obstacle_dist (%f) are smaller " + "than the inscribed radius of the robot's footprint in the costmap parameters (%f, including 'footprint_padding'). " + "Infeasible optimziation results might occur frequently!", opt_inscribed_radius, min_obst_dist, costmap_inscribed_radius); +} + + + +void TebLocalPlannerROS::configureBackupModes(std::vector& transformed_plan, int& goal_idx) +{ + rclcpp::Time current_time = clock_->now(); + + // reduced horizon backup mode + if (cfg_->recovery.shrink_horizon_backup && + goal_idx < (int)transformed_plan.size()-1 && // we do not reduce if the goal is already selected (because the orientation might change -> can introduce oscillations) + (no_infeasible_plans_>0 || (current_time - time_last_infeasible_plan_).seconds() < cfg_->recovery.shrink_horizon_min_duration )) // keep short horizon for at least a few seconds + { + RCLCPP_INFO_EXPRESSION( + logger_, + no_infeasible_plans_==1, + "Activating reduced horizon backup mode for at least %.2f sec (infeasible trajectory detected).", cfg_->recovery.shrink_horizon_min_duration); + + + // Shorten horizon if requested + // reduce to 50 percent: + int horizon_reduction = goal_idx/2; + + if (no_infeasible_plans_ > 9) + { + RCLCPP_INFO_EXPRESSION( + logger_, + no_infeasible_plans_==10, + "Infeasible trajectory detected 10 times in a row: further reducing horizon..."); + horizon_reduction /= 2; + } + + // we have a small overhead here, since we already transformed 50% more of the trajectory. + // But that's ok for now, since we do not need to make transformGlobalPlan more complex + // and a reduced horizon should occur just rarely. + int new_goal_idx_transformed_plan = int(transformed_plan.size()) - horizon_reduction - 1; + goal_idx -= horizon_reduction; + if (new_goal_idx_transformed_plan>0 && goal_idx >= 0) + transformed_plan.erase(transformed_plan.begin()+new_goal_idx_transformed_plan, transformed_plan.end()); + else + goal_idx += horizon_reduction; // this should not happen, but safety first ;-) + } + + + // detect and resolve oscillations + if (cfg_->recovery.oscillation_recovery) + { + double max_vel_theta; + double max_vel_current = last_cmd_.linear.x >= 0 ? cfg_->robot.max_vel_x : cfg_->robot.max_vel_x_backwards; + if (cfg_->robot.min_turning_radius!=0 && max_vel_current>0) + max_vel_theta = std::max( max_vel_current/std::abs(cfg_->robot.min_turning_radius), cfg_->robot.max_vel_theta ); + else + max_vel_theta = cfg_->robot.max_vel_theta; + + failure_detector_.update(last_cmd_, cfg_->robot.max_vel_x, cfg_->robot.max_vel_x_backwards, max_vel_theta, + cfg_->recovery.oscillation_v_eps, cfg_->recovery.oscillation_omega_eps); + + bool oscillating = failure_detector_.isOscillating(); + bool recently_oscillated = (clock_->now()-time_last_oscillation_).seconds() < cfg_->recovery.oscillation_recovery_min_duration; // check if we have already detected an oscillation recently + + if (oscillating) + { + if (!recently_oscillated) + { + // save current turning direction + if (robot_vel_.angular.z > 0) + last_preferred_rotdir_ = RotType::left; + else + last_preferred_rotdir_ = RotType::right; + RCLCPP_INFO(logger_, "TebLocalPlannerROS: possible oscillation (of the robot or its local plan) detected. Activating recovery strategy (prefer current turning direction during optimization)."); + } + time_last_oscillation_ = clock_->now(); + planner_->setPreferredTurningDir(last_preferred_rotdir_); + } + else if (!recently_oscillated && last_preferred_rotdir_ != RotType::none) // clear recovery behavior + { + last_preferred_rotdir_ = RotType::none; + planner_->setPreferredTurningDir(last_preferred_rotdir_); + RCLCPP_INFO(logger_, "TebLocalPlannerROS: oscillation recovery disabled/expired."); + } + } + +} + + +void TebLocalPlannerROS::setSpeedLimit( + const double & speed_limit, const bool & percentage) +{ + if (speed_limit == nav2_costmap_2d::NO_SPEED_LIMIT) { + // Restore default value + cfg_->robot.max_vel_x = cfg_->robot.base_max_vel_x; + cfg_->robot.base_max_vel_x_backwards = cfg_->robot.base_max_vel_x_backwards; + cfg_->robot.base_max_vel_y = cfg_->robot.base_max_vel_y; + cfg_->robot.base_max_vel_theta = cfg_->robot.base_max_vel_theta; + } else { + if (percentage) { + // Speed limit is expressed in % from maximum speed of robot + cfg_->robot.max_vel_x = cfg_->robot.base_max_vel_x * speed_limit / 100.0; + cfg_->robot.base_max_vel_x_backwards = cfg_->robot.base_max_vel_x_backwards * speed_limit / 100.0; + cfg_->robot.base_max_vel_y = cfg_->robot.base_max_vel_y * speed_limit / 100.0; + cfg_->robot.base_max_vel_theta = cfg_->robot.base_max_vel_theta * speed_limit / 100.0; + } else { + // Speed limit is expressed in absolute value + double max_speed_xy = std::max( + std::max(cfg_->robot.base_max_vel_x,cfg_->robot.base_max_vel_x_backwards),cfg_->robot.base_max_vel_y); + if (speed_limit < max_speed_xy) { + // Handling components and angular velocity changes: + // Max velocities are being changed in the same proportion + // as absolute linear speed changed in order to preserve + // robot moving trajectories to be the same after speed change. + // G. Doisy: not sure if that's applicable to base_max_vel_x_backwards. + const double ratio = speed_limit / max_speed_xy; + cfg_->robot.max_vel_x = cfg_->robot.base_max_vel_x * ratio; + cfg_->robot.base_max_vel_x_backwards = cfg_->robot.base_max_vel_x_backwards * ratio; + cfg_->robot.base_max_vel_y = cfg_->robot.base_max_vel_y * ratio; + cfg_->robot.base_max_vel_theta = cfg_->robot.base_max_vel_theta * ratio; + } + } + } +} + +void TebLocalPlannerROS::customObstacleCB(const costmap_converter_msgs::msg::ObstacleArrayMsg::ConstSharedPtr obst_msg) +{ + std::lock_guard l(custom_obst_mutex_); + custom_obstacle_msg_ = *obst_msg; +} + +void TebLocalPlannerROS::customViaPointsCB(const nav_msgs::msg::Path::ConstSharedPtr via_points_msg) +{ + RCLCPP_INFO_ONCE(logger_, "Via-points received. This message is printed once."); + if (cfg_->trajectory.global_plan_viapoint_sep > 0) + { + RCLCPP_INFO(logger_, "Via-points are already obtained from the global plan (global_plan_viapoint_sep>0)." + "Ignoring custom via-points."); + custom_via_points_active_ = false; + return; + } + + std::lock_guard l(via_point_mutex_); + via_points_.clear(); + for (const geometry_msgs::msg::PoseStamped& pose : via_points_msg->poses) + { + via_points_.emplace_back(pose.pose.position.x, pose.pose.position.y); + } + custom_via_points_active_ = !via_points_.empty(); +} + +void TebLocalPlannerROS::activate() { + visualization_->on_activate(); + + return; +} +void TebLocalPlannerROS::deactivate() { + visualization_->on_deactivate(); + + return; +} +void TebLocalPlannerROS::cleanup() { + visualization_->on_cleanup(); + costmap_converter_->stopWorker(); + + return; +} + +} // end namespace teb_local_planner + +// register this planner as a nav2_core::Controller plugin +PLUGINLIB_EXPORT_CLASS(teb_local_planner::TebLocalPlannerROS, nav2_core::Controller) diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/test_optim_node.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/test_optim_node.cpp new file mode 100644 index 0000000..94d9c02 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/test_optim_node.cpp @@ -0,0 +1,322 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2017. + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/teb_local_planner_ros.h" + +//#include +#include + + +using namespace teb_local_planner; // it is ok here to import everything for testing purposes + +// ============= Global Variables ================ +// Ok global variables are bad, but here we only have a simple testing node. +PlannerInterfacePtr planner; +TebVisualizationPtr visual; +std::vector obst_vector; +ViaPointContainer via_points; +TebConfig config; +//std::shared_ptr< dynamic_reconfigure::Server > dynamic_recfg; +ros::Subscriber custom_obst_sub; +ros::Subscriber via_points_sub; +ros::Subscriber clicked_points_sub; +std::vector obst_vel_subs; +unsigned int no_fixed_obstacles; + +// =========== Function declarations ============= +void CB_mainCycle(const ros::TimerEvent& e); +void CB_publishCycle(const ros::TimerEvent& e); +void CB_reconfigure(TebLocalPlannerReconfigureConfig& reconfig, uint32_t level); +void CB_customObstacle(const costmap_converter::ObstacleArrayMsg::ConstPtr& obst_msg); +void CreateInteractiveMarker(const double& init_x, const double& init_y, unsigned int id, std::string frame, interactive_markers::InteractiveMarkerServer* marker_server, interactive_markers::InteractiveMarkerServer::FeedbackCallback feedback_cb); +void CB_obstacle_marker(const visualization_msgs::InteractiveMarkerFeedbackConstPtr &feedback); +void CB_clicked_points(const geometry_msgs::PointStampedConstPtr& point_msg); +void CB_via_points(const nav_msgs::msg::Path::ConstPtr& via_points_msg); +void CB_setObstacleVelocity(const geometry_msgs::msg::TwistConstPtr& twist_msg, const unsigned int id); + + +// =============== Main function ================= +int main( int argc, char** argv ) +{ + ros::init(argc, argv, "test_optim_node"); + rclcpp::Node::SharedPtr n("~"); + + + // load ros parameters from node handle + config.loadRosParamFromNodeHandle(n); + + ros::Timer cycle_timer = n.createTimer(ros::Duration(0.025), CB_mainCycle); + ros::Timer publish_timer = n.createTimer(ros::Duration(0.1), CB_publishCycle); + + // setup dynamic reconfigure + dynamic_recfg = std::make_shared< dynamic_reconfigure::Server >(n); + dynamic_reconfigure::Server::CallbackType cb = boost::bind(CB_reconfigure, _1, _2); + dynamic_recfg->setCallback(cb); + + // setup callback for custom obstacles + custom_obst_sub = n.subscribe("obstacles", 1, CB_customObstacle); + + // setup callback for clicked points (in rviz) that are considered as via-points + clicked_points_sub = n.subscribe("/clicked_point", 5, CB_clicked_points); + + // setup callback for via-points (callback overwrites previously set via-points) + via_points_sub = n.subscribe("via_points", 1, CB_via_points); + + // interactive marker server for simulated dynamic obstacles + interactive_markers::InteractiveMarkerServer marker_server("marker_obstacles"); + + obst_vector.push_back( std::make_shared(-3,1) ); + obst_vector.push_back( std::make_shared(6,2) ); + obst_vector.push_back( std::make_shared(0,0.1) ); +// obst_vector.push_back( std::make_shared(1,1.5,1,-1.5) ); //90 deg +// obst_vector.push_back( std::make_shared(1,0,-1,0) ); //180 deg +// obst_vector.push_back( std::make_shared(-1.5,-0.5) ); + + // Dynamic obstacles + Eigen::Vector2d vel (0.1, -0.3); + obst_vector.at(0)->setCentroidVelocity(vel); + vel = Eigen::Vector2d(-0.3, -0.2); + obst_vector.at(1)->setCentroidVelocity(vel); + + /* + PolygonObstacle* polyobst = new PolygonObstacle; + polyobst->pushBackVertex(1, -1); + polyobst->pushBackVertex(0, 1); + polyobst->pushBackVertex(1, 1); + polyobst->pushBackVertex(2, 1); + + polyobst->finalizePolygon(); + obst_vector.emplace_back(polyobst); + */ + + for (unsigned int i=0; i(topic, 1, boost::bind(&CB_setObstacleVelocity, _1, i))); + + //CreateInteractiveMarker(obst_vector.at(i)[0],obst_vector.at(i)[1],i,&marker_server, &CB_obstacle_marker); + // Add interactive markers for all point obstacles + std::shared_ptr pobst = boost::dynamic_pointer_cast(obst_vector.at(i)); + if (pobst) + { + CreateInteractiveMarker(pobst->x(),pobst->y(),i, config.map_frame, &marker_server, &CB_obstacle_marker); + } + } + marker_server.applyChanges(); + + // Setup visualization + visual = TebVisualizationPtr(new TebVisualization(n, config)); + + // Setup robot shape model + RobotFootprintModelPtr robot_model = TebLocalPlannerROS::getRobotFootprintFromParamServer(n); + + // Setup planner (homotopy class planning or just the local teb planner) + if (config.hcp.enable_homotopy_class_planning) + planner = PlannerInterfacePtr(new HomotopyClassPlanner(config, &obst_vector, robot_model, visual, &via_points)); + else + planner = PlannerInterfacePtr(new TebOptimalPlanner(config, &obst_vector, robot_model, visual, &via_points)); + + + no_fixed_obstacles = obst_vector.size(); + ros::spin(); + + return 0; +} + +// Planning loop +void CB_mainCycle(const ros::TimerEvent& e) +{ + planner->plan(PoseSE2(-4,0,0), PoseSE2(4,0,0)); // hardcoded start and goal for testing purposes +} + +// Visualization loop +void CB_publishCycle(const ros::TimerEvent& e) +{ + planner->visualize(); + visual->publishObstacles(obst_vector); + visual->publishViaPoints(via_points); +} + +void CB_reconfigure(TebLocalPlannerReconfigureConfig& reconfig, uint32_t level) +{ + config.reconfigure(reconfig); +} + +void CreateInteractiveMarker(const double& init_x, const double& init_y, unsigned int id, std::string frame, interactive_markers::InteractiveMarkerServer* marker_server, interactive_markers::InteractiveMarkerServer::FeedbackCallback feedback_cb) +{ + // create an interactive marker for our server + visualization_msgs::InteractiveMarker i_marker; + i_marker.header.frame_id = frame; + i_marker.header.stamp = ros::Time::now(); + std::ostringstream oss; + //oss << "obstacle" << id; + oss << id; + i_marker.name = oss.str(); + i_marker.description = "Obstacle"; + i_marker.pose.position.x = init_x; + i_marker.pose.position.y = init_y; + i_marker.pose.orientation.w = 1.0f; // make quaternion normalized + + // create a grey box marker + visualization_msgs::msg::Marker box_marker; + box_marker.type = visualization_msgs::msg::Marker::CUBE; + box_marker.id = id; + box_marker.scale.x = 0.2; + box_marker.scale.y = 0.2; + box_marker.scale.z = 0.2; + box_marker.color.r = 0.5; + box_marker.color.g = 0.5; + box_marker.color.b = 0.5; + box_marker.color.a = 1.0; + box_marker.pose.orientation.w = 1.0f; // make quaternion normalized + + // create a non-interactive control which contains the box + visualization_msgs::InteractiveMarkerControl box_control; + box_control.always_visible = true; + box_control.markers.push_back( box_marker ); + + // add the control to the interactive marker + i_marker.controls.push_back( box_control ); + + // create a control which will move the box, rviz will insert 2 arrows + visualization_msgs::InteractiveMarkerControl move_control; + move_control.name = "move_x"; + move_control.orientation.w = 0.707107f; + move_control.orientation.x = 0; + move_control.orientation.y = 0.707107f; + move_control.orientation.z = 0; + move_control.interaction_mode = visualization_msgs::InteractiveMarkerControl::MOVE_PLANE; + + + // add the control to the interactive marker + i_marker.controls.push_back(move_control); + + // add the interactive marker to our collection + marker_server->insert(i_marker); + marker_server->setCallback(i_marker.name,feedback_cb); +} + +void CB_obstacle_marker(const visualization_msgs::InteractiveMarkerFeedbackConstPtr &feedback) +{ + std::stringstream ss(feedback->marker_name); + unsigned int index; + ss >> index; + + if (index>=no_fixed_obstacles) + return; + PointObstacle* pobst = static_cast(obst_vector.at(index).get()); + pobst->position() = Eigen::Vector2d(feedback->pose.position.x,feedback->pose.position.y); +} + +void CB_customObstacle(const costmap_converter::ObstacleArrayMsg::ConstPtr& obst_msg) +{ + // resize such that the vector contains only the fixed obstacles specified inside the main function + obst_vector.resize(no_fixed_obstacles); + + // Add custom obstacles obtained via message (assume that all obstacles coordiantes are specified in the default planning frame) + for (size_t i = 0; i < obst_msg->obstacles.size(); ++i) + { + if (obst_msg->obstacles.at(i).polygon.points.size() == 1 ) + { + if (obst_msg->obstacles.at(i).radius == 0) + { + obst_vector.push_back(ObstaclePtr(new PointObstacle( obst_msg->obstacles.at(i).polygon.points.front().x, + obst_msg->obstacles.at(i).polygon.points.front().y ))); + } + else + { + obst_vector.push_back(ObstaclePtr(new CircularObstacle( obst_msg->obstacles.at(i).polygon.points.front().x, + obst_msg->obstacles.at(i).polygon.points.front().y, + obst_msg->obstacles.at(i).radius ))); + } + } + else if (obst_msg->obstacles.at(i).polygon.points.empty()) + { + ROS_WARN("Invalid custom obstacle received. List of polygon vertices is empty. Skipping..."); + continue; + } + else + { + PolygonObstacle* polyobst = new PolygonObstacle; + for (size_t j=0; jobstacles.at(i).polygon.points.size(); ++j) + { + polyobst->pushBackVertex( obst_msg->obstacles.at(i).polygon.points[j].x, + obst_msg->obstacles.at(i).polygon.points[j].y ); + } + polyobst->finalizePolygon(); + obst_vector.push_back(ObstaclePtr(polyobst)); + } + + if(!obst_vector.empty()) + obst_vector.back()->setCentroidVelocity(obst_msg->obstacles.at(i).velocities, obst_msg->obstacles.at(i).orientation); + } +} + + +void CB_clicked_points(const geometry_msgs::PointStampedConstPtr& point_msg) +{ + // we assume for simplicity that the fixed frame is already the map/planning frame + // consider clicked points as via-points + via_points.push_back( Eigen::Vector2d(point_msg->point.x, point_msg->point.y) ); + ROS_INFO_STREAM("Via-point (" << point_msg->point.x << "," << point_msg->point.y << ") added."); + if (config.optim.weight_viapoint<=0) + ROS_WARN("Note, via-points are deactivated, since 'weight_via_point' <= 0"); +} + +void CB_via_points(const nav_msgs::msg::Path::ConstPtr& via_points_msg) +{ + ROS_INFO_ONCE("Via-points received. This message is printed once."); + via_points.clear(); + for (const geometry_msgs::msg::PoseStamped& pose : via_points_msg->poses) + { + via_points.emplace_back(pose.pose.position.x, pose.pose.position.y); + } +} + +void CB_setObstacleVelocity(const geometry_msgs::msg::TwistConstPtr& twist_msg, const unsigned int id) +{ + if (id >= obst_vector.size()) + { + ROS_WARN("Cannot set velocity: unknown obstacle id."); + return; + } + + Eigen::Vector2d vel (twist_msg->linear.x, twist_msg->linear.y); + obst_vector.at(id)->setCentroidVelocity(vel); +} diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/timed_elastic_band.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/timed_elastic_band.cpp new file mode 100644 index 0000000..4d7d37c --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/timed_elastic_band.cpp @@ -0,0 +1,630 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +#include "teb_local_planner/timed_elastic_band.h" + +namespace teb_local_planner +{ + +namespace +{ + /** + * estimate the time to move from start to end. + * Assumes constant velocity for the motion. + */ + double estimateDeltaT(const PoseSE2& start, const PoseSE2& end, + double max_vel_x, double max_vel_theta) + { + double dt_constant_motion = 0.1; + if (max_vel_x > 0) { + double trans_dist = (end.position() - start.position()).norm(); + dt_constant_motion = trans_dist / max_vel_x; + } + if (max_vel_theta > 0) { + double rot_dist = std::abs(g2o::normalize_theta(end.theta() - start.theta())); + dt_constant_motion = std::max(dt_constant_motion, rot_dist / max_vel_theta); + } + return dt_constant_motion; + } +} // namespace + + +TimedElasticBand::TimedElasticBand() +{ +} + +TimedElasticBand::~TimedElasticBand() +{ + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "Destructor Timed_Elastic_Band..."); + clearTimedElasticBand(); +} + + +void TimedElasticBand::addPose(const PoseSE2& pose, bool fixed) +{ + VertexPose* pose_vertex = new VertexPose(pose, fixed); + pose_vec_.push_back( pose_vertex ); + return; +} + +void TimedElasticBand::addPose(const Eigen::Ref& position, double theta, bool fixed) +{ + VertexPose* pose_vertex = new VertexPose(position, theta, fixed); + pose_vec_.push_back( pose_vertex ); + return; +} + + void TimedElasticBand::addPose(double x, double y, double theta, bool fixed) +{ + VertexPose* pose_vertex = new VertexPose(x, y, theta, fixed); + pose_vec_.push_back( pose_vertex ); + return; +} + +void TimedElasticBand::addTimeDiff(double dt, bool fixed) +{ + assert(dt > 0.0 && "Adding a timediff requires a positive dt"); + VertexTimeDiff* timediff_vertex = new VertexTimeDiff(dt, fixed); + timediff_vec_.push_back( timediff_vertex ); + return; +} + + +void TimedElasticBand::addPoseAndTimeDiff(double x, double y, double angle, double dt) +{ + if (sizePoses() != sizeTimeDiffs()) + { + addPose(x,y,angle,false); + addTimeDiff(dt,false); + } + else { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), + "Method addPoseAndTimeDiff: Add one single Pose first. Timediff describes the time difference between last conf and given conf"); + } + return; +} + + + +void TimedElasticBand::addPoseAndTimeDiff(const PoseSE2& pose, double dt) +{ + if (sizePoses() != sizeTimeDiffs()) + { + addPose(pose,false); + addTimeDiff(dt,false); + } else { + RCLCPP_ERROR(rclcpp::get_logger("teb_local_planner"), "Method addPoseAndTimeDiff: Add one single Pose first. Timediff describes the time difference between last conf and given conf"); + } + return; +} + +void TimedElasticBand::addPoseAndTimeDiff(const Eigen::Ref& position, double theta, double dt) +{ + if (sizePoses() != sizeTimeDiffs()) + { + addPose(position, theta,false); + addTimeDiff(dt,false); + } else { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "Method addPoseAndTimeDiff: Add one single Pose first. Timediff describes the time difference between last conf and given conf"); + } + return; +} + + +void TimedElasticBand::deletePose(int index) +{ + assert(index& position, double theta) +{ + VertexPose* pose_vertex = new VertexPose(position, theta); + pose_vec_.insert(pose_vec_.begin()+index, pose_vertex); +} + +void TimedElasticBand::insertPose(int index, double x, double y, double theta) +{ + VertexPose* pose_vertex = new VertexPose(x, y, theta); + pose_vec_.insert(pose_vec_.begin()+index, pose_vertex); +} + +void TimedElasticBand::insertTimeDiff(int index, double dt) +{ + VertexTimeDiff* timediff_vertex = new VertexTimeDiff(dt); + timediff_vec_.insert(timediff_vec_.begin()+index, timediff_vertex); +} + + +void TimedElasticBand::clearTimedElasticBand() +{ + for (PoseSequence::iterator pose_it = pose_vec_.begin(); pose_it != pose_vec_.end(); ++pose_it) + delete *pose_it; + pose_vec_.clear(); + + for (TimeDiffSequence::iterator dt_it = timediff_vec_.begin(); dt_it != timediff_vec_.end(); ++dt_it) + delete *dt_it; + timediff_vec_.clear(); +} + + +void TimedElasticBand::setPoseVertexFixed(int index, bool status) +{ + assert(indexsetFixed(status); +} + +void TimedElasticBand::setTimeDiffVertexFixed(int index, bool status) +{ + assert(indexsetFixed(status); +} + + +void TimedElasticBand::autoResize(double dt_ref, double dt_hysteresis, int min_samples, int max_samples, bool fast_mode) +{ + assert(sizeTimeDiffs() == 0 || sizeTimeDiffs() + 1 == sizePoses()); + /// iterate through all TEB states and add/remove states! + bool modified = true; + + for (int rep = 0; rep < 100 && modified; ++rep) // actually it should be while(), but we want to make sure to not get stuck in some oscillation, hence max 100 repitions. + { + modified = false; + + for(int i=0; i < sizeTimeDiffs(); ++i) // TimeDiff connects Point(i) with Point(i+1) + { + if(TimeDiff(i) > dt_ref + dt_hysteresis && sizeTimeDiffs()min_samples) // only remove samples if size is larger than min_samples. + { + //RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), "teb_local_planner: autoResize() deleting bandpoint i=%u, #TimeDiffs=%lu",i,sizeTimeDiffs()); + + if(i < ((int)sizeTimeDiffs()-1)) + { + TimeDiff(i+1) = TimeDiff(i+1) + TimeDiff(i); + deleteTimeDiff(i); + deletePose(i+1); + } + else + { // last motion should be adjusted, shift time to the interval before + TimeDiff(i-1) += TimeDiff(i); + deleteTimeDiff(i); + deletePose(i); + } + + modified = true; + } + } + if (fast_mode) break; + } +} + + +double TimedElasticBand::getSumOfAllTimeDiffs() const +{ + double time = 0; + + for(TimeDiffSequence::const_iterator dt_it = timediff_vec_.begin(); dt_it != timediff_vec_.end(); ++dt_it) + { + time += (*dt_it)->dt(); + } + return time; +} + +double TimedElasticBand::getSumOfTimeDiffsUpToIdx(int index) const +{ + assert(index<=timediff_vec_.size()); + + double time = 0; + + for(int i = 0; i < index; ++i) + { + time += timediff_vec_.at(i)->dt(); + } + + return time; +} + +double TimedElasticBand::getAccumulatedDistance() const +{ + double dist = 0; + + for(int i=1; i 0) timestep = diststep / max_vel_x; + + for (unsigned int i=1; i<=no_steps; i++) // start with 1! starting point had index 0 + { + if (i==no_steps && no_steps_d==(float) no_steps) + break; // if last conf (depending on stepsize) is equal to goal conf -> leave loop + addPoseAndTimeDiff(start.x()+i*dx,start.y()+i*dy,orient_init,timestep); + } + + } + + // if number of samples is not larger than min_samples, insert manually + if ( sizePoses() < min_samples-1 ) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "initTEBtoGoal(): number of generated samples is less than specified by min_samples. Forcing the insertion of more samples..."); + while (sizePoses() < min_samples-1) // subtract goal point that will be added later + { + // simple strategy: interpolate between the current pose and the goal + PoseSE2 intermediate_pose = PoseSE2::average(BackPose(), goal); + if (max_vel_x > 0) timestep = (intermediate_pose.position()-BackPose().position()).norm()/max_vel_x; + addPoseAndTimeDiff( intermediate_pose, timestep ); // let the optimier correct the timestep (TODO: better initialization + } + } + + // add goal + if (max_vel_x > 0) timestep = (goal.position()-BackPose().position()).norm()/max_vel_x; + addPoseAndTimeDiff(goal,timestep); // add goal point + setPoseVertexFixed(sizePoses()-1,true); // GoalConf is a fixed constraint during optimization + } + else // size!=0 + { + RCLCPP_WARN(rclcpp::get_logger("teb_local_planner"), + "Cannot init TEB between given configuration and goal, because TEB vectors are not empty or TEB is already initialized (call this function before adding states yourself)!"); + RCLCPP_WARN(rclcpp::get_logger("teb_local_planner"), + "Number of TEB configurations: %d, Number of TEB timediffs: %d",(unsigned int) sizePoses(),(unsigned int) sizeTimeDiffs()); + return false; + } + return true; +} + + +bool TimedElasticBand::initTrajectoryToGoal(const std::vector& plan, double max_vel_x, double max_vel_theta, bool estimate_orient, int min_samples, bool guess_backwards_motion) +{ + + if (!isInit()) + { + PoseSE2 start(plan.front().pose); + PoseSE2 goal(plan.back().pose); + + addPose(start); // add starting point with given orientation + setPoseVertexFixed(0,true); // StartConf is a fixed constraint during optimization + + bool backwards = false; + if (guess_backwards_motion && (goal.position()-start.position()).dot(start.orientationUnitVec()) < 0) // check if the goal is behind the start pose (w.r.t. start orientation) + backwards = true; + // TODO: dt ~ max_vel_x_backwards for backwards motions + + for (int i=1; i<(int)plan.size()-1; ++i) + { + double yaw; + if (estimate_orient) + { + // get yaw from the orientation of the distance vector between pose_{i+1} and pose_{i} + double dx = plan[i+1].pose.position.x - plan[i].pose.position.x; + double dy = plan[i+1].pose.position.y - plan[i].pose.position.y; + yaw = std::atan2(dy,dx); + if (backwards) + yaw = g2o::normalize_theta(yaw+M_PI); + } + else + { + yaw = tf2::getYaw(plan[i].pose.orientation); + } + PoseSE2 intermediate_pose(plan[i].pose.position.x, plan[i].pose.position.y, yaw); + double dt = estimateDeltaT(BackPose(), intermediate_pose, max_vel_x, max_vel_theta); + addPoseAndTimeDiff(intermediate_pose, dt); + } + + // if number of samples is not larger than min_samples, insert manually + if ( sizePoses() < min_samples-1 ) + { + RCLCPP_DEBUG(rclcpp::get_logger("teb_local_planner"), + "initTEBtoGoal(): number of generated samples is less than specified by min_samples. Forcing the insertion of more samples..."); + while (sizePoses() < min_samples-1) // subtract goal point that will be added later + { + // simple strategy: interpolate between the current pose and the goal + PoseSE2 intermediate_pose = PoseSE2::average(BackPose(), goal); + double dt = estimateDeltaT(BackPose(), intermediate_pose, max_vel_x, max_vel_theta); + addPoseAndTimeDiff( intermediate_pose, dt ); // let the optimier correct the timestep (TODO: better initialization + } + } + + // Now add final state with given orientation + double dt = estimateDeltaT(BackPose(), goal, max_vel_x, max_vel_theta); + addPoseAndTimeDiff(goal, dt); + setPoseVertexFixed(sizePoses()-1,true); // GoalConf is a fixed constraint during optimization + } + else // size!=0 + { + RCLCPP_WARN(rclcpp::get_logger("teb_local_planner"), + "Cannot init TEB between given configuration and goal, because TEB vectors are not empty or TEB is already initialized (call this function before adding states yourself)!"); + RCLCPP_WARN(rclcpp::get_logger("teb_local_planner"), + "Number of TEB configurations: %d, Number of TEB timediffs: %d", sizePoses(), sizeTimeDiffs()); + return false; + } + + return true; +} + + +int TimedElasticBand::findClosestTrajectoryPose(const Eigen::Ref& ref_point, double* distance, int begin_idx) const +{ + int n = sizePoses(); + if (begin_idx < 0 || begin_idx >= n) + return -1; + + double min_dist_sq = std::numeric_limits::max(); + int min_idx = -1; + + for (int i = begin_idx; i < n; i++) + { + double dist_sq = (ref_point - Pose(i).position()).squaredNorm(); + if (dist_sq < min_dist_sq) + { + min_dist_sq = dist_sq; + min_idx = i; + } + } + + if (distance) + *distance = std::sqrt(min_dist_sq); + + return min_idx; +} + + +int TimedElasticBand::findClosestTrajectoryPose(const Eigen::Ref& ref_line_start, const Eigen::Ref& ref_line_end, double* distance) const +{ + double min_dist = std::numeric_limits::max(); + int min_idx = -1; + + for (int i = 0; i < sizePoses(); i++) + { + Eigen::Vector2d point = Pose(i).position(); + double dist = distance_point_to_segment_2d(point, ref_line_start, ref_line_end); + if (dist < min_dist) + { + min_dist = dist; + min_idx = i; + } + } + + if (distance) + *distance = min_dist; + return min_idx; +} + +int TimedElasticBand::findClosestTrajectoryPose(const Point2dContainer& vertices, double* distance) const +{ + if (vertices.empty()) + return 0; + else if (vertices.size() == 1) + return findClosestTrajectoryPose(vertices.front()); + else if (vertices.size() == 2) + return findClosestTrajectoryPose(vertices.front(), vertices.back()); + + double min_dist = std::numeric_limits::max(); + int min_idx = -1; + + for (int i = 0; i < sizePoses(); i++) + { + Eigen::Vector2d point = Pose(i).position(); + double dist_to_polygon = std::numeric_limits::max(); + for (int j = 0; j < (int) vertices.size()-1; ++j) + { + dist_to_polygon = std::min(dist_to_polygon, distance_point_to_segment_2d(point, vertices[j], vertices[j+1])); + } + dist_to_polygon = std::min(dist_to_polygon, distance_point_to_segment_2d(point, vertices.back(), vertices.front())); + if (dist_to_polygon < min_dist) + { + min_dist = dist_to_polygon; + min_idx = i; + } + } + + if (distance) + *distance = min_dist; + + return min_idx; +} + + +int TimedElasticBand::findClosestTrajectoryPose(const Obstacle& obstacle, double* distance) const +{ + const PointObstacle* pobst = dynamic_cast(&obstacle); + if (pobst) + return findClosestTrajectoryPose(pobst->position(), distance); + + const LineObstacle* lobst = dynamic_cast(&obstacle); + if (lobst) + return findClosestTrajectoryPose(lobst->start(), lobst->end(), distance); + + const PolygonObstacle* polyobst = dynamic_cast(&obstacle); + if (polyobst) + return findClosestTrajectoryPose(polyobst->vertices(), distance); + + return findClosestTrajectoryPose(obstacle.getCentroid(), distance); +} + + +void TimedElasticBand::updateAndPruneTEB(boost::optional new_start, boost::optional new_goal, int min_samples) +{ + // first and simple approach: change only start confs (and virtual start conf for inital velocity) + // TEST if optimizer can handle this "hard" placement + + if (new_start && sizePoses()>0) + { + // find nearest state (using l2-norm) in order to prune the trajectory + // (remove already passed states) + double dist_cache = (new_start->position()- Pose(0).position()).norm(); + double dist; + int lookahead = std::min( sizePoses()-min_samples, 10); // satisfy min_samples, otherwise max 10 samples + + int nearest_idx = 0; + for (int i = 1; i<=lookahead; ++i) + { + dist = (new_start->position()- Pose(i).position()).norm(); + if (dist0) + { + // nearest_idx is equal to the number of samples to be removed (since it counts from 0 ;-) ) + // WARNING delete starting at pose 1, and overwrite the original pose(0) with new_start, since Pose(0) is fixed during optimization! + deletePoses(1, nearest_idx); // delete first states such that the closest state is the new first one + deleteTimeDiffs(1, nearest_idx); // delete corresponding time differences + } + + // update start + Pose(0) = *new_start; + } + + if (new_goal && sizePoses()>0) + { + BackPose() = *new_goal; + } +}; + + +bool TimedElasticBand::isTrajectoryInsideRegion(double radius, double max_dist_behind_robot, int skip_poses) +{ + if (sizePoses()<=0) + return true; + + double radius_sq = radius*radius; + double max_dist_behind_robot_sq = max_dist_behind_robot*max_dist_behind_robot; + Eigen::Vector2d robot_orient = Pose(0).orientationUnitVec(); + + for (int i=1; i radius_sq) + { + RCLCPP_INFO(rclcpp::get_logger("teb_local_planner"), "outside robot"); + return false; + } + + // check behind the robot with a different distance, if specified (or >=0) + if (max_dist_behind_robot >= 0 && dist_vec.dot(robot_orient) < 0 && dist_sq > max_dist_behind_robot_sq) + { + RCLCPP_INFO(rclcpp::get_logger("teb_local_planner"), "outside robot behind"); + return false; + } + + } + return true; +} + + + + +} // namespace teb_local_planner diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/src/visualization.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/src/visualization.cpp new file mode 100644 index 0000000..025960d --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/src/visualization.cpp @@ -0,0 +1,563 @@ +/********************************************************************* + * + * Software License Agreement (BSD License) + * + * Copyright (c) 2016, + * TU Dortmund - Institute of Control Theory and Systems Engineering. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of the institute nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Author: Christoph Rösmann + *********************************************************************/ + +// ros stuff +#include "teb_local_planner/visualization.h" +#include "teb_local_planner/optimal_planner.h" + +namespace teb_local_planner +{ + +void publishPlan(const std::vector& path, + rclcpp::Publisher *pub) { + if(path.empty()) + return; + + nav_msgs::msg::Path gui_path; + gui_path.poses.resize(path.size()); + gui_path.header.frame_id = path[0].header.frame_id; + gui_path.header.stamp = path[0].header.stamp; + + // Extract the plan in world co-ordinates, we assume the path is all in the same frame + for(unsigned int i=0; i < path.size(); i++){ + gui_path.poses[i] = path[i]; + } + + pub->publish(gui_path); +} + +TebVisualization::TebVisualization(const rclcpp_lifecycle::LifecycleNode::SharedPtr & nh, const TebConfig& cfg) : nh_(nh), cfg_(&cfg), initialized_(false) +{ +} + +void TebVisualization::publishGlobalPlan(const std::vector& global_plan) const +{ + if ( printErrorWhenNotInitialized() ) + return; + publishPlan(global_plan, global_plan_pub_.get()); +} + +void TebVisualization::publishLocalPlan(const std::vector& local_plan) const +{ + if ( printErrorWhenNotInitialized() ) + return; + publishPlan(local_plan, local_plan_pub_.get()); +} + +void TebVisualization::publishLocalPlanAndPoses(const TimedElasticBand& teb) const +{ + if ( printErrorWhenNotInitialized() ) + return; + + // create path msg + nav_msgs::msg::Path teb_path; + teb_path.header.frame_id = cfg_->map_frame; + teb_path.header.stamp = nh_->now(); + + // create pose_array (along trajectory) + geometry_msgs::msg::PoseArray teb_poses; + teb_poses.header.frame_id = teb_path.header.frame_id; + teb_poses.header.stamp = teb_path.header.stamp; + + // fill path msgs with teb configurations + for (int i=0; i < teb.sizePoses(); i++) + { + geometry_msgs::msg::PoseStamped pose; + + pose.header.frame_id = teb_path.header.frame_id; + pose.header.stamp = teb_path.header.stamp; + teb.Pose(i).toPoseMsg(pose.pose); + pose.pose.position.z = cfg_->hcp.visualize_with_time_as_z_axis_scale*teb.getSumOfTimeDiffsUpToIdx(i); + teb_path.poses.push_back(pose); + teb_poses.poses.push_back(pose.pose); + } + local_plan_pub_->publish(teb_path); + teb_poses_pub_->publish(teb_poses); +} + + + +void TebVisualization::publishRobotFootprintModel(const PoseSE2& current_pose, const BaseRobotFootprintModel& robot_model, const std::string& ns, + const std_msgs::msg::ColorRGBA &color) +{ + if ( printErrorWhenNotInitialized() ) + return; + + std::vector markers; + robot_model.visualizeRobot(current_pose, markers, color); + if (markers.empty()) + return; + + int idx = 1000000; // avoid overshadowing by obstacles + for (std::vector::iterator marker_it = markers.begin(); marker_it != markers.end(); ++marker_it, ++idx) + { + marker_it->header.frame_id = cfg_->map_frame; + marker_it->header.stamp = nh_->now(); + marker_it->action = visualization_msgs::msg::Marker::ADD; + marker_it->ns = ns; + marker_it->id = idx; + marker_it->lifetime = rclcpp::Duration(2, 0); + teb_marker_pub_->publish(*marker_it); + } + +} + +void TebVisualization::publishInfeasibleRobotPose(const PoseSE2& current_pose, const BaseRobotFootprintModel& robot_model) +{ + publishRobotFootprintModel(current_pose, robot_model, "InfeasibleRobotPoses", toColorMsg(0.5, 0.8, 0.0, 0.0)); +} + + +void TebVisualization::publishObstacles(const ObstContainer& obstacles) const +{ + if ( obstacles.empty() || printErrorWhenNotInitialized() ) + return; + + // Visualize point obstacles + { + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = "PointObstacles"; + marker.id = 0; + marker.type = visualization_msgs::msg::Marker::POINTS; + marker.action = visualization_msgs::msg::Marker::ADD; + marker.lifetime = rclcpp::Duration(2, 0); + marker.pose.orientation.w = 1.0; + + for (ObstContainer::const_iterator obst = obstacles.begin(); obst != obstacles.end(); ++obst) + { + std::shared_ptr pobst = std::dynamic_pointer_cast(*obst); + if (!pobst) + continue; + + if (cfg_->hcp.visualize_with_time_as_z_axis_scale < 0.001) + { + geometry_msgs::msg::Point point; + point.x = pobst->x(); + point.y = pobst->y(); + point.z = 0; + marker.points.push_back(point); + } + else // Spatiotemporally point obstacles become a line + { + marker.type = visualization_msgs::msg::Marker::LINE_LIST; + geometry_msgs::msg::Point start; + start.x = pobst->x(); + start.y = pobst->y(); + start.z = 0; + marker.points.push_back(start); + + geometry_msgs::msg::Point end; + double t = 20; + Eigen::Vector2d pred; + pobst->predictCentroidConstantVelocity(t, pred); + end.x = pred[0]; + end.y = pred[1]; + end.z = cfg_->hcp.visualize_with_time_as_z_axis_scale*t; + marker.points.push_back(end); + } + } + + marker.scale.x = 0.1; + marker.scale.y = 0.1; + marker.color.a = 1.0; + marker.color.r = 1.0; + marker.color.g = 0.0; + marker.color.b = 0.0; + + teb_marker_pub_->publish( marker ); + } + + // Visualize circular obstacles + { + std::size_t idx = 0; + for (ObstContainer::const_iterator obst = obstacles.begin(); obst != obstacles.end(); ++obst) + { + std::shared_ptr pobst = std::dynamic_pointer_cast(*obst); + if (!pobst) + continue; + + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = "CircularObstacles"; + marker.id = idx++; + marker.type = visualization_msgs::msg::Marker::SPHERE_LIST; + marker.action = visualization_msgs::msg::Marker::ADD; + marker.lifetime = rclcpp::Duration(2, 0); + geometry_msgs::msg::Point point; + point.x = pobst->x(); + point.y = pobst->y(); + point.z = 0; + marker.points.push_back(point); + + marker.scale.x = pobst->radius(); + marker.scale.y = pobst->radius(); + marker.color.a = 1.0; + marker.color.r = 0.0; + marker.color.g = 1.0; + marker.color.b = 0.0; + + teb_marker_pub_->publish( marker ); + } + } + + // Visualize line obstacles + { + std::size_t idx = 0; + for (ObstContainer::const_iterator obst = obstacles.begin(); obst != obstacles.end(); ++obst) + { + std::shared_ptr pobst = std::dynamic_pointer_cast(*obst); + if (!pobst) + continue; + + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = "LineObstacles"; + marker.id = idx++; + marker.type = visualization_msgs::msg::Marker::LINE_STRIP; + marker.action = visualization_msgs::msg::Marker::ADD; + marker.lifetime = rclcpp::Duration(2, 0); + marker.pose.orientation.w = 1.0; + + geometry_msgs::msg::Point start; + start.x = pobst->start().x(); + start.y = pobst->start().y(); + start.z = 0; + marker.points.push_back(start); + geometry_msgs::msg::Point end; + end.x = pobst->end().x(); + end.y = pobst->end().y(); + end.z = 0; + marker.points.push_back(end); + + marker.scale.x = 0.1; + marker.scale.y = 0.1; + marker.color.a = 1.0; + marker.color.r = 0.0; + marker.color.g = 1.0; + marker.color.b = 0.0; + + teb_marker_pub_->publish( marker ); + } + } + + + // Visualize polygon obstacles + { + std::size_t idx = 0; + for (ObstContainer::const_iterator obst = obstacles.begin(); obst != obstacles.end(); ++obst) + { + std::shared_ptr pobst = std::dynamic_pointer_cast(*obst); + if (!pobst) + continue; + + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = "PolyObstacles"; + marker.id = idx++; + marker.type = visualization_msgs::msg::Marker::LINE_STRIP; + marker.action = visualization_msgs::msg::Marker::ADD; + marker.lifetime = rclcpp::Duration(2, 0); + marker.pose.orientation.w = 1.0; + + for (Point2dContainer::const_iterator vertex = pobst->vertices().begin(); vertex != pobst->vertices().end(); ++vertex) + { + geometry_msgs::msg::Point point; + point.x = vertex->x(); + point.y = vertex->y(); + point.z = 0; + marker.points.push_back(point); + } + + // Also add last point to close the polygon + // but only if polygon has more than 2 points (it is not a line) + if (pobst->vertices().size() > 2) + { + geometry_msgs::msg::Point point; + point.x = pobst->vertices().front().x(); + point.y = pobst->vertices().front().y(); + point.z = 0; + marker.points.push_back(point); + } + marker.scale.x = 0.1; + marker.scale.y = 0.1; + marker.color.a = 1.0; + marker.color.r = 1.0; + marker.color.g = 0.0; + marker.color.b = 0.0; + + teb_marker_pub_->publish( marker ); + } + } +} + + +void TebVisualization::publishViaPoints(const std::vector< Eigen::Vector2d, Eigen::aligned_allocator >& via_points, const std::string& ns) const +{ + if ( via_points.empty() || printErrorWhenNotInitialized() ) + return; + + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = ns; + marker.id = 0; + marker.type = visualization_msgs::msg::Marker::POINTS; + marker.action = visualization_msgs::msg::Marker::ADD; + marker.lifetime = rclcpp::Duration(2, 0); + marker.pose.orientation.w = 1.0; + + for (std::size_t i=0; i < via_points.size(); ++i) + { + geometry_msgs::msg::Point point; + point.x = via_points[i].x(); + point.y = via_points[i].y(); + point.z = 0; + marker.points.push_back(point); + } + + marker.scale.x = 0.1; + marker.scale.y = 0.1; + marker.color.a = 1.0; + marker.color.r = 0.0; + marker.color.g = 0.0; + marker.color.b = 1.0; + + teb_marker_pub_->publish( marker ); +} + +void TebVisualization::publishTebContainer(const TebOptPlannerContainer& teb_planner, const std::string& ns) +{ +if ( printErrorWhenNotInitialized() ) + return; + + visualization_msgs::msg::Marker marker; + marker.header.frame_id = cfg_->map_frame; + marker.header.stamp = nh_->now(); + marker.ns = ns; + marker.id = 0; + marker.type = visualization_msgs::msg::Marker::LINE_LIST; + marker.action = visualization_msgs::msg::Marker::ADD; + marker.pose.orientation.w = 1.0; + + // Iterate through teb pose sequence + for( TebOptPlannerContainer::const_iterator it_teb = teb_planner.begin(); it_teb != teb_planner.end(); ++it_teb ) + { + // iterate single poses + PoseSequence::const_iterator it_pose = it_teb->get()->teb().poses().begin(); + TimeDiffSequence::const_iterator it_timediff = it_teb->get()->teb().timediffs().begin(); + PoseSequence::const_iterator it_pose_end = it_teb->get()->teb().poses().end(); + std::advance(it_pose_end, -1); // since we are interested in line segments, reduce end iterator by one. + double time = 0; + + while (it_pose != it_pose_end) + { + geometry_msgs::msg::Point point_start; + point_start.x = (*it_pose)->x(); + point_start.y = (*it_pose)->y(); + point_start.z = cfg_->hcp.visualize_with_time_as_z_axis_scale*time; + marker.points.push_back(point_start); + + time += (*it_timediff)->dt(); + + geometry_msgs::msg::Point point_end; + point_end.x = (*boost::next(it_pose))->x(); + point_end.y = (*boost::next(it_pose))->y(); + point_end.z = cfg_->hcp.visualize_with_time_as_z_axis_scale*time; + marker.points.push_back(point_end); + ++it_pose; + ++it_timediff; + } + } + marker.scale.x = 0.01; + marker.color.a = 1.0; + marker.color.r = 0.5; + marker.color.g = 1.0; + marker.color.b = 0.0; + + teb_marker_pub_->publish( marker ); +} + +void TebVisualization::publishFeedbackMessage(const std::vector< std::shared_ptr >& teb_planners, + unsigned int selected_trajectory_idx, const ObstContainer& obstacles) +{ + teb_msgs::msg::FeedbackMsg msg; + msg.header.stamp = nh_->now(); + msg.header.frame_id = cfg_->map_frame; + msg.selected_trajectory_idx = selected_trajectory_idx; + + + msg.trajectories.resize(teb_planners.size()); + + // Iterate through teb pose sequence + std::size_t idx_traj = 0; + for( TebOptPlannerContainer::const_iterator it_teb = teb_planners.begin(); it_teb != teb_planners.end(); ++it_teb, ++idx_traj ) + { + msg.trajectories[idx_traj].header = msg.header; + it_teb->get()->getFullTrajectory(msg.trajectories[idx_traj].trajectory); + } + + // add obstacles + msg.obstacles_msg.obstacles.resize(obstacles.size()); + for (std::size_t i=0; itoPolygonMsg(msg.obstacles_msg.obstacles[i].polygon); + + // copy id + msg.obstacles_msg.obstacles[i].id = i; // TODO: we do not have any id stored yet + + // orientation + //msg.obstacles_msg.obstacles[i].orientation =; // TODO + + // copy velocities + obstacles[i]->toTwistWithCovarianceMsg(msg.obstacles_msg.obstacles[i].velocities); + } + + feedback_pub_->publish(msg); +} + +void TebVisualization::publishFeedbackMessage(const TebOptimalPlanner& teb_planner, const ObstContainer& obstacles) +{ + teb_msgs::msg::FeedbackMsg msg; + msg.header.stamp = nh_->now(); + msg.header.frame_id = cfg_->map_frame; + msg.selected_trajectory_idx = 0; + + msg.trajectories.resize(1); + msg.trajectories.front().header = msg.header; + teb_planner.getFullTrajectory(msg.trajectories.front().trajectory); + + // add obstacles + msg.obstacles_msg.obstacles.resize(obstacles.size()); + for (std::size_t i=0; itoPolygonMsg(msg.obstacles_msg.obstacles[i].polygon); + + // copy id + msg.obstacles_msg.obstacles[i].id = i; // TODO: we do not have any id stored yet + + // orientation + //msg.obstacles_msg.obstacles[i].orientation =; // TODO + + // copy velocities + obstacles[i]->toTwistWithCovarianceMsg(msg.obstacles_msg.obstacles[i].velocities); + } + + feedback_pub_->publish(msg); +} + +std_msgs::msg::ColorRGBA TebVisualization::toColorMsg(double a, double r, double g, double b) +{ + std_msgs::msg::ColorRGBA color; + color.a = a; + color.r = r; + color.g = g; + color.b = b; + return color; +} + +bool TebVisualization::printErrorWhenNotInitialized() const +{ + if (!initialized_) + { + RCLCPP_ERROR(nh_->get_logger(), "TebVisualization class not initialized. You must call initialize or an appropriate constructor"); + return true; + } + return false; +} + +nav2_util::CallbackReturn TebVisualization::on_configure() +{ + // register topics + global_plan_pub_ = nh_->create_publisher("global_plan", 1);; + local_plan_pub_ = nh_->create_publisher("local_plan",1); + teb_poses_pub_ = nh_->create_publisher("teb_poses", 1); + teb_marker_pub_ = nh_->create_publisher("teb_markers", 1); + feedback_pub_ = nh_->create_publisher("teb_feedback", 1); + + initialized_ = true; + return nav2_util::CallbackReturn::SUCCESS; +} + +nav2_util::CallbackReturn +TebVisualization::on_activate() +{ + global_plan_pub_->on_activate(); + local_plan_pub_->on_activate(); + teb_poses_pub_->on_activate(); + teb_marker_pub_->on_activate(); + feedback_pub_->on_activate(); + return nav2_util::CallbackReturn::SUCCESS; +} + +nav2_util::CallbackReturn +TebVisualization::on_deactivate() +{ + global_plan_pub_->on_deactivate(); + local_plan_pub_->on_deactivate(); + teb_poses_pub_->on_deactivate(); + teb_marker_pub_->on_deactivate(); + feedback_pub_->on_deactivate(); + return nav2_util::CallbackReturn::SUCCESS; +} + +nav2_util::CallbackReturn +TebVisualization::on_cleanup() +{ + global_plan_pub_.reset(); + local_plan_pub_.reset(); + teb_poses_pub_.reset(); + teb_marker_pub_.reset(); + feedback_pub_.reset(); + + return nav2_util::CallbackReturn::SUCCESS; +} + +} // namespace teb_local_planner diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/teb_local_planner_plugin.xml b/src/rm_navigation/teb_local_planner/teb_local_planner/teb_local_planner_plugin.xml new file mode 100644 index 0000000..45d0bdf --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/teb_local_planner_plugin.xml @@ -0,0 +1,9 @@ + + + + The teb_local_planner package implements a plugin + to the base_local_planner of the 2D navigation stack. + + + + diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/test/homotopy_class_planner_test.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/test/homotopy_class_planner_test.cpp new file mode 100644 index 0000000..8f9251b --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/test/homotopy_class_planner_test.cpp @@ -0,0 +1,82 @@ +#include "teb_local_planner/homotopy_class_planner.h" +#include + +#include + +class HomotopyClassPlannerTest : public teb_local_planner::HomotopyClassPlanner { + public: + void SetUp(rclcpp::Node::SharedPtr node) { + teb_local_planner::RobotFootprintModelPtr robot_model; + teb_local_planner::TebVisualizationPtr visualization; + teb_local_planner::HomotopyClassPlannerPtr homotopy_class_planner; + + robot_model.reset(new teb_local_planner::CircularRobotFootprint(0.25)); + + obstacles.push_back( + teb_local_planner::ObstaclePtr(new teb_local_planner::PointObstacle(2, 2)) + ); + + obstacles.push_back( + teb_local_planner::ObstaclePtr(new teb_local_planner::PointObstacle(2, 3)) + ); + + obstacles.push_back( + teb_local_planner::ObstaclePtr(new teb_local_planner::PointObstacle(2, 4)) + ); + + visualization.reset( + new teb_local_planner::TebVisualization(node, cfg) + ); + + cfg.hcp.visualize_hc_graph = true; + + initialize(node, cfg, &obstacles, robot_model, visualization); + } + teb_local_planner::ObstContainer obstacles; + teb_local_planner::TebConfig cfg; +}; + +TEST(test, test) { + HomotopyClassPlannerTest test; + rclcpp::Node::SharedPtr node( new rclcpp::Node("test") ); + test.SetUp(node); + + using namespace teb_local_planner; + PoseSE2 start(0, 0, 0); + PoseSE2 goal(5, 5, 0); + geometry_msgs::msg::Twist twist; + twist.linear.x = 0; + twist.linear.y = 0; + twist.angular.z = 0; + + std::vector initial_plan; + + geometry_msgs::msg::PoseStamped start_pose; + geometry_msgs::msg::PoseStamped goal_pose; + + start.toPoseMsg(start_pose.pose); + goal.toPoseMsg(goal_pose.pose); + + initial_plan.push_back(start_pose); + initial_plan.push_back(goal_pose); + + test.plan(initial_plan, &twist, false); + //homotopy_class_planner_->exploreEquivalenceClassesAndInitTebs(start, goal, 0.3, &twist); + + rclcpp::Rate rate(10); + while(rclcpp::ok()) { + test.visualize(); + rclcpp::spin_some(node); + rate.sleep(); + } + + ASSERT_TRUE(true); +} + +int main(int argc, char** argv) { + rclcpp::init(argc, argv); + + testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} \ No newline at end of file diff --git a/src/rm_navigation/teb_local_planner/teb_local_planner/test/teb_basics.cpp b/src/rm_navigation/teb_local_planner/teb_local_planner/test/teb_basics.cpp new file mode 100644 index 0000000..b490974 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_local_planner/test/teb_basics.cpp @@ -0,0 +1,73 @@ +#include + +#include "teb_local_planner/timed_elastic_band.h" + +TEST(TEBBasic, autoResizeLargeValueAtEnd) +{ + double dt = 0.1; + double dt_hysteresis = dt/3.; + teb_local_planner::TimedElasticBand teb; + + teb.addPose(teb_local_planner::PoseSE2(0., 0., 0.)); + for (int i = 1; i < 10; ++i) { + teb.addPoseAndTimeDiff(teb_local_planner::PoseSE2(i * 1., 0., 0.), dt); + } + // add a pose with a large timediff as the last one + teb.addPoseAndTimeDiff(teb_local_planner::PoseSE2(10., 0., 0.), dt + 2*dt_hysteresis); + + // auto resize + test of the result + teb.autoResize(dt, dt_hysteresis, 3, 100, false); + for (int i = 0; i < teb.sizeTimeDiffs(); ++i) { + ASSERT_LE(teb.TimeDiff(i), dt + dt_hysteresis + 1e-3) << "dt is greater than allowed: " << i; + ASSERT_LE(dt - dt_hysteresis - 1e-3, teb.TimeDiff(i)) << "dt is less than allowed: " << i; + } +} + +TEST(TEBBasic, autoResizeSmallValueAtEnd) +{ + double dt = 0.1; + double dt_hysteresis = dt/3.; + teb_local_planner::TimedElasticBand teb; + + teb.addPose(teb_local_planner::PoseSE2(0., 0., 0.)); + for (int i = 1; i < 10; ++i) { + teb.addPoseAndTimeDiff(teb_local_planner::PoseSE2(i * 1., 0., 0.), dt); + } + // add a pose with a small timediff as the last one + teb.addPoseAndTimeDiff(teb_local_planner::PoseSE2(10., 0., 0.), dt - 2*dt_hysteresis); + + // auto resize + test of the result + teb.autoResize(dt, dt_hysteresis, 3, 100, false); + for (int i = 0; i < teb.sizeTimeDiffs(); ++i) { + ASSERT_LE(teb.TimeDiff(i), dt + dt_hysteresis + 1e-3) << "dt is greater than allowed: " << i; + ASSERT_LE(dt - dt_hysteresis - 1e-3, teb.TimeDiff(i)) << "dt is less than allowed: " << i; + } +} + +TEST(TEBBasic, autoResize) +{ + double dt = 0.1; + double dt_hysteresis = dt/3.; + teb_local_planner::TimedElasticBand teb; + + teb.addPose(teb_local_planner::PoseSE2(0., 0., 0.)); + for (int i = 1; i < 10; ++i) { + teb.addPoseAndTimeDiff(teb_local_planner::PoseSE2(i * 1., 0., 0.), dt); + } + // modify the timediff in the middle and add a pose with a smaller timediff as the last one + teb.TimeDiff(5) = dt + 2*dt_hysteresis; + teb.addPoseAndTimeDiff(teb_local_planner::PoseSE2(10., 0., 0.), dt - 2*dt_hysteresis); + + // auto resize + teb.autoResize(dt, dt_hysteresis, 3, 100, false); + for (int i = 0; i < teb.sizeTimeDiffs(); ++i) { + ASSERT_LE(teb.TimeDiff(i), dt + dt_hysteresis + 1e-3) << "dt is greater than allowed: " << i; + ASSERT_LE(dt - dt_hysteresis - 1e-3, teb.TimeDiff(i)) << "dt is less than allowed: " << i; + } +} + +int main(int argc, char** argv) +{ + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/src/rm_navigation/teb_local_planner/teb_msgs/CMakeLists.txt b/src/rm_navigation/teb_local_planner/teb_msgs/CMakeLists.txt new file mode 100644 index 0000000..b3ad44e --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_msgs/CMakeLists.txt @@ -0,0 +1,28 @@ +cmake_minimum_required(VERSION 3.5) + +project(teb_msgs) + +# Default to C++14 +if(NOT CMAKE_CXX_STANDARD) + set(CMAKE_CXX_STANDARD 14) +endif() + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +find_package(ament_cmake REQUIRED) +find_package(builtin_interfaces REQUIRED) +find_package(costmap_converter_msgs REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(std_msgs REQUIRED) +find_package(rosidl_default_generators REQUIRED) + +rosidl_generate_interfaces(teb_msgs + "msg/FeedbackMsg.msg" + "msg/TrajectoryMsg.msg" + "msg/TrajectoryPointMsg.msg" + DEPENDENCIES builtin_interfaces costmap_converter_msgs geometry_msgs std_msgs +) + +ament_package() diff --git a/src/rm_navigation/teb_local_planner/teb_msgs/msg/FeedbackMsg.msg b/src/rm_navigation/teb_local_planner/teb_msgs/msg/FeedbackMsg.msg new file mode 100644 index 0000000..aa97c96 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_msgs/msg/FeedbackMsg.msg @@ -0,0 +1,15 @@ +# Message that contains intermediate results +# and diagnostics of the (predictive) planner. + +std_msgs/Header header + +# The planned trajectory (or if multiple plans exist, all of them) +teb_msgs/TrajectoryMsg[] trajectories + +# Index of the trajectory in 'trajectories' that is selected currently +uint16 selected_trajectory_idx + +# List of active obstacles +costmap_converter_msgs/ObstacleArrayMsg obstacles_msg + + diff --git a/src/rm_navigation/teb_local_planner/teb_msgs/msg/TrajectoryMsg.msg b/src/rm_navigation/teb_local_planner/teb_msgs/msg/TrajectoryMsg.msg new file mode 100644 index 0000000..14bf608 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_msgs/msg/TrajectoryMsg.msg @@ -0,0 +1,6 @@ +# Message that contains a trajectory for mobile robot navigation + +std_msgs/Header header +teb_msgs/TrajectoryPointMsg[] trajectory + + diff --git a/src/rm_navigation/teb_local_planner/teb_msgs/msg/TrajectoryPointMsg.msg b/src/rm_navigation/teb_local_planner/teb_msgs/msg/TrajectoryPointMsg.msg new file mode 100644 index 0000000..47b186a --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_msgs/msg/TrajectoryPointMsg.msg @@ -0,0 +1,21 @@ +# Message that contains single point on a trajectory suited for mobile navigation. +# The trajectory is described by a sequence of poses, velocities, +# accelerations and temporal information. + +# Why this message type? +# nav_msgs/Path describes only a path without temporal information. +# trajectory_msgs package contains only messages for joint trajectories. + +# The pose of the robot +geometry_msgs/Pose pose + +# Corresponding velocity +geometry_msgs/Twist velocity + +# Corresponding acceleration +geometry_msgs/Twist acceleration + +builtin_interfaces/Duration time_from_start + + + diff --git a/src/rm_navigation/teb_local_planner/teb_msgs/package.xml b/src/rm_navigation/teb_local_planner/teb_msgs/package.xml new file mode 100644 index 0000000..9cfb7d0 --- /dev/null +++ b/src/rm_navigation/teb_local_planner/teb_msgs/package.xml @@ -0,0 +1,32 @@ + + + + teb_msgs + 0.0.1 + A package containing message definitions for teb_local_planner. + Vinnam Kim + Apache License 2.0 + + ament_cmake + + rosidl_default_generators + + builtin_interfaces + costmap_converter_msgs + geometry_msgs + std_msgs + + builtin_interfaces + costmap_converter_msgs + geometry_msgs + rosidl_default_runtime + std_msgs + + ament_lint_common + + rosidl_interface_packages + + + ament_cmake + + \ No newline at end of file diff --git a/src/rm_perception/imu_complementary_filter/CHANGELOG.rst b/src/rm_perception/imu_complementary_filter/CHANGELOG.rst new file mode 100644 index 0000000..d2aede6 --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/CHANGELOG.rst @@ -0,0 +1,128 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package imu_complementary_filter +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +2.1.3 (2022-12-07) +------------------ +* complementary: Build shared library + See `#172 `_. +* Update CMakeLists to use targets +* Remove node\_ prefix. (`#163 `_) +* Contributors: Martin Günther, Max Polzin + +2.1.2 (2022-07-14) +------------------ + +2.1.1 (2022-05-24) +------------------ +* Add missing build dependency to package.xml. (`#161 `_) +* Contributors: Martin Günther, Steven! Ragnarök + +2.1.0 (2022-05-02) +------------------ +* complementary: Add missing dependency on geometry_msgs +* Contributors: Martin Günther + +2.0.0 (2022-04-12) +------------------ +* Initial release into ROS2 foxy, galactic and rolling +* Fix gcc warnings + clang-tidy suggestions +* Fix CMakeLists +* Reformat python code using black +* Manually reformat licenses + defines +* Reformat everything using clang-format +* Fix trailing whitespace +* Add launch directory to CMakeLists.txt (`#146 `_) +* Port imu_complementary_filter to ROS2 (`#138 `_) +* Madgwick for eloquent (`#110 `_) +* Contributors: Guido Sanchez, Martin Günther, Maximilian Schik, tgreier + +1.2.2 (2020-05-25) +------------------ +* fix install path & boost linkage issues +* Contributors: Martin Günther, Sean Yen + +1.2.1 (2019-05-06) +------------------ +* Remove junk xml (`#93 `_) +* Fix C++14 builds (`#89 `_) +* Contributors: David V. Lu!!, Paul Bovbel + +1.2.0 (2018-05-25) +------------------ +* Add std dev parameter to orientation estimate from filter (`#85 `_) + Similar to `#41 `_, but not using dynamic_reconfigure as not implemented for complementary filter +* Contributors: Stefan Kohlbrecher + +1.1.5 (2017-05-24) +------------------ + +1.1.4 (2017-05-22) +------------------ + +1.1.3 (2017-03-10) +------------------ +* complementary_filter: move const initializations out of header + Initialization of static consts other than int (here: float) inside the + class declaration is not permitted in C++. It works in gcc (due to a + non-standard extension), but throws an error in C++11. +* Contributors: Martin Guenther + +1.1.2 (2016-09-07) +------------------ + +1.1.1 (2016-09-07) +------------------ + +1.1.0 (2016-04-25) +------------------ + +1.0.11 (2016-04-22) +------------------- + +1.0.10 (2016-04-22) +------------------- +* Remove Eigen dependency + Eigen is not actually used anywhere. Thanks @asimay! +* Removed main function from shared library +* Contributors: Martin Guenther, Matthias Nieuwenhuisen + +1.0.9 (2015-10-16) +------------------ +* complementary: Add Eigen dependency + Fixes `#54 `_. +* Contributors: Martin Günther + +1.0.8 (2015-10-07) +------------------ + +1.0.7 (2015-10-07) +------------------ +* Allow remapping imu namespace +* Publish RPY as Vector3Stamped +* Add params: constant_dt, publish_tf, reverse_tf, publish_debug_topics +* Use MagneticField instead of Vector3 +* Contributors: Martin Günther + +1.0.6 (2015-10-06) +------------------ +* Add new package: imu_complementary_filter +* Contributors: Roberto G. Valentini, Martin Günther, Michael Görner + +1.0.5 (2015-06-24) +------------------ + +1.0.4 (2015-05-06) +------------------ + +1.0.3 (2015-01-29) +------------------ + +1.0.2 (2015-01-27) +------------------ + +1.0.1 (2014-12-10) +------------------ + +1.0.0 (2014-11-28) +------------------ diff --git a/src/rm_perception/imu_complementary_filter/CMakeLists.txt b/src/rm_perception/imu_complementary_filter/CMakeLists.txt new file mode 100644 index 0000000..79aa917 --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/CMakeLists.txt @@ -0,0 +1,77 @@ +cmake_minimum_required(VERSION 3.8) +project(imu_complementary_filter) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() +add_compile_options(-std=c++17 -O3) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +find_package(ament_cmake REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(message_filters REQUIRED) +find_package(rclcpp REQUIRED) +find_package(sensor_msgs REQUIRED) +find_package(std_msgs REQUIRED) +find_package(tf2 REQUIRED) +find_package(tf2_ros REQUIRED) + +add_library(complementary_filter SHARED + src/complementary_filter.cpp + src/complementary_filter_ros.cpp + include/imu_complementary_filter/complementary_filter.h + include/imu_complementary_filter/complementary_filter_ros.h +) +target_compile_features(complementary_filter PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17 +target_include_directories(complementary_filter PUBLIC + $ + $) +ament_target_dependencies(complementary_filter + geometry_msgs + message_filters + rclcpp + sensor_msgs + std_msgs + tf2 + tf2_ros +) +# Causes the visibility macros to use dllexport rather than dllimport, +# which is appropriate when building the dll but not consuming it. +target_compile_definitions(complementary_filter PRIVATE "IMU_COMPLEMENTARY_FILTER_BUILDING_LIBRARY") + +# create complementary_filter_node executable +add_executable(complementary_filter_node + src/complementary_filter_node.cpp) +target_include_directories(complementary_filter_node PUBLIC + $ + $) +target_link_libraries(complementary_filter_node complementary_filter) + +install( + TARGETS complementary_filter + EXPORT export_${PROJECT_NAME} + ARCHIVE DESTINATION lib + LIBRARY DESTINATION lib + RUNTIME DESTINATION bin +) +install(TARGETS + complementary_filter_node + DESTINATION lib/${PROJECT_NAME} +) + +## Mark cpp header files for installation +install( + DIRECTORY include/ + DESTINATION include +) + +install(DIRECTORY launch + DESTINATION share/${PROJECT_NAME} +) + +ament_export_include_directories(include) +ament_export_libraries(complementary_filter) +ament_export_targets( + export_${PROJECT_NAME} +) +ament_package() diff --git a/src/rm_perception/imu_complementary_filter/include/imu_complementary_filter/complementary_filter.h b/src/rm_perception/imu_complementary_filter/include/imu_complementary_filter/complementary_filter.h new file mode 100644 index 0000000..4758cad --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/include/imu_complementary_filter/complementary_filter.h @@ -0,0 +1,175 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef IMU_TOOLS_COMPLEMENTARY_FILTER_H +#define IMU_TOOLS_COMPLEMENTARY_FILTER_H + +namespace imu_tools { + +class ComplementaryFilter +{ + public: + ComplementaryFilter(); + virtual ~ComplementaryFilter(); + + bool setGainAcc(double gain); + bool setGainMag(double gain); + double getGainAcc() const; + double getGainMag() const; + + bool setBiasAlpha(double bias_alpha); + double getBiasAlpha() const; + + // When the filter is in the steady state, bias estimation will occur (if + // the parameter is enabled). + bool getSteadyState() const; + + void setDoBiasEstimation(bool do_bias_estimation); + bool getDoBiasEstimation() const; + + void setDoAdaptiveGain(bool do_adaptive_gain); + bool getDoAdaptiveGain() const; + + double getAngularVelocityBiasX() const; + double getAngularVelocityBiasY() const; + double getAngularVelocityBiasZ() const; + + // Set the orientation, as a Hamilton Quaternion, of the body frame wrt the + // fixed frame. + void setOrientation(double q0, double q1, double q2, double q3); + + // Get the orientation, as a Hamilton Quaternion, of the body frame wrt the + // fixed frame. + void getOrientation(double& q0, double& q1, double& q2, double& q3) const; + + // Update from accelerometer and gyroscope data. + // [ax, ay, az]: Normalized gravity vector. + // [wx, wy, wz]: Angular veloctiy, in rad / s. + // dt: time delta, in seconds. + void update(double ax, double ay, double az, double wx, double wy, + double wz, double dt); + + // Update from accelerometer, gyroscope, and magnetometer data. + // [ax, ay, az]: Normalized gravity vector. + // [wx, wy, wz]: Angular veloctiy, in rad / s. + // [mx, my, mz]: Magnetic field, units irrelevant. + // dt: time delta, in seconds. + void update(double ax, double ay, double az, double wx, double wy, + double wz, double mx, double my, double mz, double dt); + + private: + static const double kGravity; + static const double gamma_; + // Bias estimation steady state thresholds + static const double kAngularVelocityThreshold; + static const double kAccelerationThreshold; + static const double kDeltaAngularVelocityThreshold; + + // Gain parameter for the complementary filter, belongs in [0, 1]. + double gain_acc_; + double gain_mag_; + + // Bias estimation gain parameter, belongs in [0, 1]. + double bias_alpha_; + + // Parameter whether to do bias estimation or not. + bool do_bias_estimation_; + + // Parameter whether to do adaptive gain or not. + bool do_adaptive_gain_; + + bool initialized_; + bool steady_state_; + + // The orientation as a Hamilton quaternion (q0 is the scalar). Represents + // the orientation of the fixed frame wrt the body frame. + double q0_, q1_, q2_, q3_; + + // Bias in angular velocities; + double wx_prev_, wy_prev_, wz_prev_; + + // Bias in angular velocities; + double wx_bias_, wy_bias_, wz_bias_; + + void updateBiases(double ax, double ay, double az, double wx, double wy, + double wz); + + bool checkState(double ax, double ay, double az, double wx, double wy, + double wz) const; + + void getPrediction(double wx, double wy, double wz, double dt, + double& q0_pred, double& q1_pred, double& q2_pred, + double& q3_pred) const; + + void getMeasurement(double ax, double ay, double az, double& q0_meas, + double& q1_meas, double& q2_meas, double& q3_meas); + + void getMeasurement(double ax, double ay, double az, double mx, double my, + double mz, double& q0_meas, double& q1_meas, + double& q2_meas, double& q3_meas); + + void getAccCorrection(double ax, double ay, double az, double p0, double p1, + double p2, double p3, double& dq0, double& dq1, + double& dq2, double& dq3); + + void getMagCorrection(double mx, double my, double mz, double p0, double p1, + double p2, double p3, double& dq0, double& dq1, + double& dq2, double& dq3); + + double getAdaptiveGain(double alpha, double ax, double ay, double az); +}; + +// Utility math functions: + +void normalizeVector(double& x, double& y, double& z); + +void normalizeQuaternion(double& q0, double& q1, double& q2, double& q3); + +void scaleQuaternion(double gain, double& dq0, double& dq1, double& dq2, + double& dq3); + +void invertQuaternion(double q0, double q1, double q2, double q3, + double& q0_inv, double& q1_inv, double& q2_inv, + double& q3_inv); + +void quaternionMultiplication(double p0, double p1, double p2, double p3, + double q0, double q1, double q2, double q3, + double& r0, double& r1, double& r2, double& r3); + +void rotateVectorByQuaternion(double x, double y, double z, double q0, + double q1, double q2, double q3, double& vx, + double& vy, double& vz); + +} // namespace imu_tools + +#endif // IMU_TOOLS_COMPLEMENTARY_FILTER_H diff --git a/src/rm_perception/imu_complementary_filter/include/imu_complementary_filter/complementary_filter_ros.h b/src/rm_perception/imu_complementary_filter/include/imu_complementary_filter/complementary_filter_ros.h new file mode 100644 index 0000000..9c9a44f --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/include/imu_complementary_filter/complementary_filter_ros.h @@ -0,0 +1,107 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef IMU_TOOLS_COMPLEMENTARY_FILTER_ROS_H +#define IMU_TOOLS_COMPLEMENTARY_FILTER_ROS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "imu_complementary_filter/complementary_filter.h" + +namespace imu_tools { + +class ComplementaryFilterROS : public rclcpp::Node +{ + public: + ComplementaryFilterROS(); + ~ComplementaryFilterROS() override; + + private: + // Convenience typedefs + typedef sensor_msgs::msg::Imu ImuMsg; + typedef sensor_msgs::msg::MagneticField MagMsg; + typedef geometry_msgs::msg::Vector3Stamped RpyVectorMsg; + typedef message_filters::sync_policies::ApproximateTime + SyncPolicy; + typedef message_filters::Synchronizer Synchronizer; + typedef message_filters::Subscriber ImuSubscriber; + typedef message_filters::Subscriber MagSubscriber; + + // ROS-related variables. + std::shared_ptr imu_subscriber_; + std::shared_ptr mag_subscriber_; + std::shared_ptr sync_; + + rclcpp::Publisher::SharedPtr imu_publisher_; + rclcpp::Publisher::SharedPtr rpy_publisher_; + rclcpp::Publisher::SharedPtr state_publisher_; + tf2_ros::TransformBroadcaster tf_broadcaster_; + + // Parameters: + bool use_mag_{}; + bool publish_tf_{}; + bool reverse_tf_{}; + double constant_dt_{}; + bool publish_debug_topics_{}; + std::string fixed_frame_; + double orientation_variance_{}; + + // State variables: + ComplementaryFilter filter_; + rclcpp::Time time_prev_; + bool initialized_filter_; + + void initializeParams(); + void imuCallback(ImuMsg::ConstSharedPtr imu_msg_raw); + void imuMagCallback(ImuMsg::ConstSharedPtr imu_msg_raw, + MagMsg::ConstSharedPtr mav_msg); + void publish(ImuMsg::ConstSharedPtr imu_msg_raw); + + tf2::Quaternion hamiltonToTFQuaternion(double q0, double q1, double q2, + double q3) const; +}; + +} // namespace imu_tools + +#endif // IMU_TOOLS_COMPLEMENTARY_FILTER_ROS_H diff --git a/src/rm_perception/imu_complementary_filter/launch/complementary_filter.launch.py b/src/rm_perception/imu_complementary_filter/launch/complementary_filter.launch.py new file mode 100644 index 0000000..8a10720 --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/launch/complementary_filter.launch.py @@ -0,0 +1,25 @@ +from launch import LaunchDescription +from launch_ros.actions import Node + + +def generate_launch_description(): + return LaunchDescription( + [ + Node( + package='imu_complementary_filter', + executable='complementary_filter_node', + name='complementary_filter_gain_node', + output='screen', + parameters=[ + {'do_bias_estimation': True}, + {'do_adaptive_gain': True}, + {'use_mag': False}, + {'gain_acc': 0.01}, + {'gain_mag': 0.01}, + ], + remappings=[ + ('/imu/data_raw', '/livox/imu'), + ] + ) + ] + ) diff --git a/src/rm_perception/imu_complementary_filter/package.xml b/src/rm_perception/imu_complementary_filter/package.xml new file mode 100644 index 0000000..d3c7951 --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/package.xml @@ -0,0 +1,24 @@ + + + imu_complementary_filter + 2.1.3 + Filter which fuses angular velocities, accelerations, and (optionally) magnetic readings from a generic IMU device into a quaternion to represent the orientation of the device wrt the global frame. Based on the algorithm by Roberto G. Valenti etal. described in the paper "Keeping a Good Attitude: A Quaternion-Based Orientation Filter for IMUs and MARGs" available at http://www.mdpi.com/1424-8220/15/8/19302 . + + Martin Günther + BSD + + http://www.mdpi.com/1424-8220/15/8/19302 + Roberto G. Valenti + + ament_cmake + geometry_msgs + message_filters + rclcpp + sensor_msgs + std_msgs + tf2 + tf2_ros + + ament_cmake + + diff --git a/src/rm_perception/imu_complementary_filter/src/complementary_filter.cpp b/src/rm_perception/imu_complementary_filter/src/complementary_filter.cpp new file mode 100644 index 0000000..1581ed9 --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/src/complementary_filter.cpp @@ -0,0 +1,535 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "imu_complementary_filter/complementary_filter.h" + +#include +#include +#include + +namespace imu_tools { + +const double ComplementaryFilter::kGravity = 9.81; +const double ComplementaryFilter::gamma_ = 0.01; +// Bias estimation steady state thresholds +const double ComplementaryFilter::kAngularVelocityThreshold = 0.2; +const double ComplementaryFilter::kAccelerationThreshold = 0.1; +const double ComplementaryFilter::kDeltaAngularVelocityThreshold = 0.01; + +ComplementaryFilter::ComplementaryFilter() + : gain_acc_(0.01), + gain_mag_(0.01), + bias_alpha_(0.01), + do_bias_estimation_(true), + do_adaptive_gain_(false), + initialized_(false), + steady_state_(false), + q0_(1), + q1_(0), + q2_(0), + q3_(0), + wx_prev_(0), + wy_prev_(0), + wz_prev_(0), + wx_bias_(0), + wy_bias_(0), + wz_bias_(0) +{ +} + +ComplementaryFilter::~ComplementaryFilter() = default; + +void ComplementaryFilter::setDoBiasEstimation(bool do_bias_estimation) +{ + do_bias_estimation_ = do_bias_estimation; +} + +bool ComplementaryFilter::getDoBiasEstimation() const +{ + return do_bias_estimation_; +} + +void ComplementaryFilter::setDoAdaptiveGain(bool do_adaptive_gain) +{ + do_adaptive_gain_ = do_adaptive_gain; +} + +bool ComplementaryFilter::getDoAdaptiveGain() const +{ + return do_adaptive_gain_; +} + +bool ComplementaryFilter::setGainAcc(double gain) +{ + if (gain >= 0 && gain <= 1.0) + { + gain_acc_ = gain; + return true; + } else + return false; +} +bool ComplementaryFilter::setGainMag(double gain) +{ + if (gain >= 0 && gain <= 1.0) + { + gain_mag_ = gain; + return true; + } else + return false; +} + +double ComplementaryFilter::getGainAcc() const +{ + return gain_acc_; +} + +double ComplementaryFilter::getGainMag() const +{ + return gain_mag_; +} + +bool ComplementaryFilter::getSteadyState() const +{ + return steady_state_; +} + +bool ComplementaryFilter::setBiasAlpha(double bias_alpha) +{ + if (bias_alpha >= 0 && bias_alpha <= 1.0) + { + bias_alpha_ = bias_alpha; + return true; + } else + return false; +} + +double ComplementaryFilter::getBiasAlpha() const +{ + return bias_alpha_; +} + +void ComplementaryFilter::setOrientation(double q0, double q1, double q2, + double q3) +{ + // Set the state to inverse (state is fixed wrt body). + invertQuaternion(q0, q1, q2, q3, q0_, q1_, q2_, q3_); +} + +double ComplementaryFilter::getAngularVelocityBiasX() const +{ + return wx_bias_; +} + +double ComplementaryFilter::getAngularVelocityBiasY() const +{ + return wy_bias_; +} + +double ComplementaryFilter::getAngularVelocityBiasZ() const +{ + return wz_bias_; +} + +void ComplementaryFilter::update(double ax, double ay, double az, double wx, + double wy, double wz, double dt) +{ + if (!initialized_) + { + // First time - ignore prediction: + getMeasurement(ax, ay, az, q0_, q1_, q2_, q3_); + initialized_ = true; + return; + } + + // Bias estimation. + if (do_bias_estimation_) updateBiases(ax, ay, az, wx, wy, wz); + + // Prediction. + double q0_pred, q1_pred, q2_pred, q3_pred; + getPrediction(wx, wy, wz, dt, q0_pred, q1_pred, q2_pred, q3_pred); + + // Correction (from acc): + // q_ = q_pred * [(1-gain) * qI + gain * dq_acc] + // where qI = identity quaternion + double dq0_acc, dq1_acc, dq2_acc, dq3_acc; + getAccCorrection(ax, ay, az, q0_pred, q1_pred, q2_pred, q3_pred, dq0_acc, + dq1_acc, dq2_acc, dq3_acc); + + double gain; + if (do_adaptive_gain_) + { + gain = getAdaptiveGain(gain_acc_, ax, ay, az); + + } else + { + gain = gain_acc_; + } + + scaleQuaternion(gain, dq0_acc, dq1_acc, dq2_acc, dq3_acc); + + quaternionMultiplication(q0_pred, q1_pred, q2_pred, q3_pred, dq0_acc, + dq1_acc, dq2_acc, dq3_acc, q0_, q1_, q2_, q3_); + + normalizeQuaternion(q0_, q1_, q2_, q3_); +} + +void ComplementaryFilter::update(double ax, double ay, double az, double wx, + double wy, double wz, double mx, double my, + double mz, double dt) +{ + if (!initialized_) + { + // First time - ignore prediction: + getMeasurement(ax, ay, az, mx, my, mz, q0_, q1_, q2_, q3_); + initialized_ = true; + return; + } + + // Bias estimation. + if (do_bias_estimation_) updateBiases(ax, ay, az, wx, wy, wz); + + // Prediction. + double q0_pred, q1_pred, q2_pred, q3_pred; + getPrediction(wx, wy, wz, dt, q0_pred, q1_pred, q2_pred, q3_pred); + + // Correction (from acc): + // q_temp = q_pred * [(1-gain) * qI + gain * dq_acc] + // where qI = identity quaternion + double dq0_acc, dq1_acc, dq2_acc, dq3_acc; + getAccCorrection(ax, ay, az, q0_pred, q1_pred, q2_pred, q3_pred, dq0_acc, + dq1_acc, dq2_acc, dq3_acc); + double alpha = gain_acc_; + if (do_adaptive_gain_) alpha = getAdaptiveGain(gain_acc_, ax, ay, az); + scaleQuaternion(alpha, dq0_acc, dq1_acc, dq2_acc, dq3_acc); + + double q0_temp, q1_temp, q2_temp, q3_temp; + quaternionMultiplication(q0_pred, q1_pred, q2_pred, q3_pred, dq0_acc, + dq1_acc, dq2_acc, dq3_acc, q0_temp, q1_temp, + q2_temp, q3_temp); + + // Correction (from mag): + // q_ = q_temp * [(1-gain) * qI + gain * dq_mag] + // where qI = identity quaternion + double dq0_mag, dq1_mag, dq2_mag, dq3_mag; + getMagCorrection(mx, my, mz, q0_temp, q1_temp, q2_temp, q3_temp, dq0_mag, + dq1_mag, dq2_mag, dq3_mag); + + scaleQuaternion(gain_mag_, dq0_mag, dq1_mag, dq2_mag, dq3_mag); + + quaternionMultiplication(q0_temp, q1_temp, q2_temp, q3_temp, dq0_mag, + dq1_mag, dq2_mag, dq3_mag, q0_, q1_, q2_, q3_); + + normalizeQuaternion(q0_, q1_, q2_, q3_); +} + +bool ComplementaryFilter::checkState(double ax, double ay, double az, double wx, + double wy, double wz) const +{ + double acc_magnitude = sqrt(ax * ax + ay * ay + az * az); + if (fabs(acc_magnitude - kGravity) > kAccelerationThreshold) return false; + + if (fabs(wx - wx_prev_) > kDeltaAngularVelocityThreshold || + fabs(wy - wy_prev_) > kDeltaAngularVelocityThreshold || + fabs(wz - wz_prev_) > kDeltaAngularVelocityThreshold) + return false; + + if (fabs(wx - wx_bias_) > kAngularVelocityThreshold || + fabs(wy - wy_bias_) > kAngularVelocityThreshold || + fabs(wz - wz_bias_) > kAngularVelocityThreshold) + return false; + + return true; +} + +void ComplementaryFilter::updateBiases(double ax, double ay, double az, + double wx, double wy, double wz) +{ + steady_state_ = checkState(ax, ay, az, wx, wy, wz); + + if (steady_state_) + { + wx_bias_ += bias_alpha_ * (wx - wx_bias_); + wy_bias_ += bias_alpha_ * (wy - wy_bias_); + wz_bias_ += bias_alpha_ * (wz - wz_bias_); + } + + wx_prev_ = wx; + wy_prev_ = wy; + wz_prev_ = wz; +} + +void ComplementaryFilter::getPrediction(double wx, double wy, double wz, + double dt, double& q0_pred, + double& q1_pred, double& q2_pred, + double& q3_pred) const +{ + double wx_unb = wx - wx_bias_; + double wy_unb = wy - wy_bias_; + double wz_unb = wz - wz_bias_; + + q0_pred = q0_ + 0.5 * dt * (wx_unb * q1_ + wy_unb * q2_ + wz_unb * q3_); + q1_pred = q1_ + 0.5 * dt * (-wx_unb * q0_ - wy_unb * q3_ + wz_unb * q2_); + q2_pred = q2_ + 0.5 * dt * (wx_unb * q3_ - wy_unb * q0_ - wz_unb * q1_); + q3_pred = q3_ + 0.5 * dt * (-wx_unb * q2_ + wy_unb * q1_ - wz_unb * q0_); + + normalizeQuaternion(q0_pred, q1_pred, q2_pred, q3_pred); +} + +void ComplementaryFilter::getMeasurement(double ax, double ay, double az, + double mx, double my, double mz, + double& q0_meas, double& q1_meas, + double& q2_meas, double& q3_meas) +{ + // q_acc is the quaternion obtained from the acceleration vector + // representing the orientation of the Global frame wrt the Local frame with + // arbitrary yaw (intermediary frame). q3_acc is defined as 0. + double q0_acc, q1_acc, q2_acc, q3_acc; + + // Normalize acceleration vector. + normalizeVector(ax, ay, az); + if (az >= 0) + { + q0_acc = sqrt((az + 1) * 0.5); + q1_acc = -ay / (2.0 * q0_acc); + q2_acc = ax / (2.0 * q0_acc); + q3_acc = 0; + } else + { + double X = sqrt((1 - az) * 0.5); + q0_acc = -ay / (2.0 * X); + q1_acc = X; + q2_acc = 0; + q3_acc = ax / (2.0 * X); + } + + // [lx, ly, lz] is the magnetic field reading, rotated into the intermediary + // frame by the inverse of q_acc. + // l = R(q_acc)^-1 m + double lx = (q0_acc * q0_acc + q1_acc * q1_acc - q2_acc * q2_acc) * mx + + 2.0 * (q1_acc * q2_acc) * my - 2.0 * (q0_acc * q2_acc) * mz; + double ly = 2.0 * (q1_acc * q2_acc) * mx + + (q0_acc * q0_acc - q1_acc * q1_acc + q2_acc * q2_acc) * my + + 2.0 * (q0_acc * q1_acc) * mz; + + // q_mag is the quaternion that rotates the Global frame (North West Up) + // into the intermediary frame. q1_mag and q2_mag are defined as 0. + double gamma = lx * lx + ly * ly; + double beta = sqrt(gamma + lx * sqrt(gamma)); + double q0_mag = beta / (sqrt(2.0 * gamma)); + double q3_mag = ly / (sqrt(2.0) * beta); + + // The quaternion multiplication between q_acc and q_mag represents the + // quaternion, orientation of the Global frame wrt the local frame. + // q = q_acc times q_mag + quaternionMultiplication(q0_acc, q1_acc, q2_acc, q3_acc, q0_mag, 0, 0, + q3_mag, q0_meas, q1_meas, q2_meas, q3_meas); + // q0_meas = q0_acc*q0_mag; + // q1_meas = q1_acc*q0_mag + q2_acc*q3_mag; + // q2_meas = q2_acc*q0_mag - q1_acc*q3_mag; + // q3_meas = q0_acc*q3_mag; +} + +void ComplementaryFilter::getMeasurement(double ax, double ay, double az, + double& q0_meas, double& q1_meas, + double& q2_meas, double& q3_meas) +{ + // q_acc is the quaternion obtained from the acceleration vector + // representing the orientation of the Global frame wrt the Local frame with + // arbitrary yaw (intermediary frame). q3_acc is defined as 0. + + // Normalize acceleration vector. + normalizeVector(ax, ay, az); + + if (az >= 0) + { + q0_meas = sqrt((az + 1) * 0.5); + q1_meas = -ay / (2.0 * q0_meas); + q2_meas = ax / (2.0 * q0_meas); + q3_meas = 0; + } else + { + double X = sqrt((1 - az) * 0.5); + q0_meas = -ay / (2.0 * X); + q1_meas = X; + q2_meas = 0; + q3_meas = ax / (2.0 * X); + } +} + +void ComplementaryFilter::getAccCorrection(double ax, double ay, double az, + double p0, double p1, double p2, + double p3, double& dq0, double& dq1, + double& dq2, double& dq3) +{ + // Normalize acceleration vector. + normalizeVector(ax, ay, az); + + // Acceleration reading rotated into the world frame by the inverse + // predicted quaternion (predicted gravity): + double gx, gy, gz; + rotateVectorByQuaternion(ax, ay, az, p0, -p1, -p2, -p3, gx, gy, gz); + + // Delta quaternion that rotates the predicted gravity into the real + // gravity: + dq0 = sqrt((gz + 1) * 0.5); + dq1 = -gy / (2.0 * dq0); + dq2 = gx / (2.0 * dq0); + dq3 = 0.0; +} + +void ComplementaryFilter::getMagCorrection(double mx, double my, double mz, + double p0, double p1, double p2, + double p3, double& dq0, double& dq1, + double& dq2, double& dq3) +{ + // Magnetic reading rotated into the world frame by the inverse predicted + // quaternion: + double lx, ly, lz; + rotateVectorByQuaternion(mx, my, mz, p0, -p1, -p2, -p3, lx, ly, lz); + + // Delta quaternion that rotates the l so that it lies in the xz-plane + // (points north): + double gamma = lx * lx + ly * ly; + double beta = sqrt(gamma + lx * sqrt(gamma)); + dq0 = beta / (sqrt(2.0 * gamma)); + dq1 = 0.0; + dq2 = 0.0; + dq3 = ly / (sqrt(2.0) * beta); +} + +void ComplementaryFilter::getOrientation(double& q0, double& q1, double& q2, + double& q3) const +{ + // Return the inverse of the state (state is fixed wrt body). + invertQuaternion(q0_, q1_, q2_, q3_, q0, q1, q2, q3); +} + +double ComplementaryFilter::getAdaptiveGain(double alpha, double ax, double ay, + double az) +{ + double a_mag = sqrt(ax * ax + ay * ay + az * az); + double error = fabs(a_mag - kGravity) / kGravity; + double factor; + double error1 = 0.1; + double error2 = 0.2; + double m = 1.0 / (error1 - error2); + double b = 1.0 - m * error1; + if (error < error1) + factor = 1.0; + else if (error < error2) + factor = m * error + b; + else + factor = 0.0; + // printf("FACTOR: %f \n", factor); + return factor * alpha; +} + +void normalizeVector(double& x, double& y, double& z) +{ + double norm = sqrt(x * x + y * y + z * z); + + x /= norm; + y /= norm; + z /= norm; +} + +void normalizeQuaternion(double& q0, double& q1, double& q2, double& q3) +{ + double norm = sqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); + q0 /= norm; + q1 /= norm; + q2 /= norm; + q3 /= norm; +} + +void invertQuaternion(double q0, double q1, double q2, double q3, + double& q0_inv, double& q1_inv, double& q2_inv, + double& q3_inv) +{ + // Assumes quaternion is normalized. + q0_inv = q0; + q1_inv = -q1; + q2_inv = -q2; + q3_inv = -q3; +} + +void scaleQuaternion(double gain, double& dq0, double& dq1, double& dq2, + double& dq3) +{ + if (dq0 < 0.0) // 0.9 + { + // Slerp (Spherical linear interpolation): + double angle = acos(dq0); + double A = sin(angle * (1.0 - gain)) / sin(angle); + double B = sin(angle * gain) / sin(angle); + dq0 = A + B * dq0; + dq1 = B * dq1; + dq2 = B * dq2; + dq3 = B * dq3; + } else + { + // Lerp (Linear interpolation): + dq0 = (1.0 - gain) + gain * dq0; + dq1 = gain * dq1; + dq2 = gain * dq2; + dq3 = gain * dq3; + } + + normalizeQuaternion(dq0, dq1, dq2, dq3); +} + +void quaternionMultiplication(double p0, double p1, double p2, double p3, + double q0, double q1, double q2, double q3, + double& r0, double& r1, double& r2, double& r3) +{ + // r = p q + r0 = p0 * q0 - p1 * q1 - p2 * q2 - p3 * q3; + r1 = p0 * q1 + p1 * q0 + p2 * q3 - p3 * q2; + r2 = p0 * q2 - p1 * q3 + p2 * q0 + p3 * q1; + r3 = p0 * q3 + p1 * q2 - p2 * q1 + p3 * q0; +} + +void rotateVectorByQuaternion(double x, double y, double z, double q0, + double q1, double q2, double q3, double& vx, + double& vy, double& vz) +{ + vx = (q0 * q0 + q1 * q1 - q2 * q2 - q3 * q3) * x + + 2 * (q1 * q2 - q0 * q3) * y + 2 * (q1 * q3 + q0 * q2) * z; + vy = 2 * (q1 * q2 + q0 * q3) * x + + (q0 * q0 - q1 * q1 + q2 * q2 - q3 * q3) * y + + 2 * (q2 * q3 - q0 * q1) * z; + vz = 2 * (q1 * q3 - q0 * q2) * x + 2 * (q2 * q3 + q0 * q1) * y + + (q0 * q0 - q1 * q1 - q2 * q2 + q3 * q3) * z; +} + +} // namespace imu_tools diff --git a/src/rm_perception/imu_complementary_filter/src/complementary_filter_node.cpp b/src/rm_perception/imu_complementary_filter/src/complementary_filter_node.cpp new file mode 100644 index 0000000..4f90284 --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/src/complementary_filter_node.cpp @@ -0,0 +1,43 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "imu_complementary_filter/complementary_filter_ros.h" + +int main(int argc, char **argv) +{ + rclcpp::init(argc, argv); + auto filter = std::make_shared(); + rclcpp::spin(filter); + rclcpp::shutdown(); + return 0; +} diff --git a/src/rm_perception/imu_complementary_filter/src/complementary_filter_ros.cpp b/src/rm_perception/imu_complementary_filter/src/complementary_filter_ros.cpp new file mode 100644 index 0000000..e8a9dd7 --- /dev/null +++ b/src/rm_perception/imu_complementary_filter/src/complementary_filter_ros.cpp @@ -0,0 +1,305 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "imu_complementary_filter/complementary_filter_ros.h" + +#include +#include +#include +#include +#include + +namespace imu_tools { + +ComplementaryFilterROS::ComplementaryFilterROS() + : Node("ComplementaryFilterROS"), + tf_broadcaster_(this), + initialized_filter_(false) +{ + RCLCPP_INFO(this->get_logger(), "Starting ComplementaryFilterROS"); + initializeParams(); + + int queue_size = 5; + + // Register publishers: + // TODO: Check why ros::names::resolve is need here + imu_publisher_ = this->create_publisher("imu/data", queue_size); + + if (publish_debug_topics_) + { + rpy_publisher_ = + this->create_publisher( + "imu/rpy/filtered", queue_size); + + if (filter_.getDoBiasEstimation()) + { + state_publisher_ = this->create_publisher( + "/imu/steady_state", queue_size); + } + } + + // Register IMU raw data subscriber. + imu_subscriber_.reset(new ImuSubscriber(this, "/imu/data_raw")); + + // Register magnetic data subscriber. + if (use_mag_) + { + mag_subscriber_.reset(new MagSubscriber(this, "/imu/mag")); + + sync_.reset(new Synchronizer(SyncPolicy(queue_size), *imu_subscriber_, + *mag_subscriber_)); + sync_->registerCallback(&ComplementaryFilterROS::imuMagCallback, this); + } else + { + imu_subscriber_->registerCallback(&ComplementaryFilterROS::imuCallback, + this); + } +} + +ComplementaryFilterROS::~ComplementaryFilterROS() +{ + RCLCPP_INFO(this->get_logger(), "Destroying ComplementaryFilterROS"); +} + +void ComplementaryFilterROS::initializeParams() +{ + double gain_acc; + double gain_mag; + bool do_bias_estimation; + double bias_alpha; + bool do_adaptive_gain; + double orientation_stddev; + + fixed_frame_ = this->declare_parameter("fixed_frame", "odom"); + use_mag_ = this->declare_parameter("use_mag", false); + publish_tf_ = this->declare_parameter("publish_tf", false); + reverse_tf_ = this->declare_parameter("reverse_tf", false); + constant_dt_ = this->declare_parameter("constant_dt", 0.0); + publish_debug_topics_ = + this->declare_parameter("publish_debug_topics", false); + gain_acc = this->declare_parameter("gain_acc", 0.01); + gain_mag = this->declare_parameter("gain_mag", 0.01); + do_bias_estimation = + this->declare_parameter("do_bias_estimation", true); + bias_alpha = this->declare_parameter("bias_alpha", 0.01); + do_adaptive_gain = this->declare_parameter("do_adaptive_gain", true); + orientation_stddev = + this->declare_parameter("orientation_stddev", 0.0); + orientation_variance_ = orientation_stddev * orientation_stddev; + + filter_.setDoBiasEstimation(do_bias_estimation); + filter_.setDoAdaptiveGain(do_adaptive_gain); + + if (!filter_.setGainAcc(gain_acc)) + RCLCPP_WARN(this->get_logger(), + "Invalid gain_acc passed to ComplementaryFilter."); + if (use_mag_) + { + if (!filter_.setGainMag(gain_mag)) + RCLCPP_WARN(this->get_logger(), + "Invalid gain_mag passed to ComplementaryFilter."); + } + if (do_bias_estimation) + { + if (!filter_.setBiasAlpha(bias_alpha)) + RCLCPP_WARN(this->get_logger(), + "Invalid bias_alpha passed to ComplementaryFilter."); + } + + // check for illegal constant_dt values + if (constant_dt_ < 0.0) + { + // if constant_dt_ is 0.0 (default), use IMU timestamp to determine dt + // otherwise, it will be constant + RCLCPP_WARN( + this->get_logger(), + "constant_dt parameter is %f, must be >= 0.0. Setting to 0.0", + constant_dt_); + constant_dt_ = 0.0; + } +} + +void ComplementaryFilterROS::imuCallback(ImuMsg::ConstSharedPtr imu_msg_raw) +{ + const geometry_msgs::msg::Vector3 &a = imu_msg_raw->linear_acceleration; + const geometry_msgs::msg::Vector3 &w = imu_msg_raw->angular_velocity; + const rclcpp::Time &time = imu_msg_raw->header.stamp; + + // Initialize. + if (!initialized_filter_) + { + time_prev_ = time; + initialized_filter_ = true; + return; + } + + // determine dt: either constant, or from IMU timestamp + double dt; + if (constant_dt_ > 0.0) + dt = constant_dt_; + else + dt = (time - time_prev_).nanoseconds() * 1e-9; + + time_prev_ = time; + + // Update the filter. + filter_.update(a.x, a.y, a.z, w.x, w.y, w.z, dt); + + // Publish state. + publish(imu_msg_raw); +} + +void ComplementaryFilterROS::imuMagCallback(ImuMsg::ConstSharedPtr imu_msg_raw, + MagMsg::ConstSharedPtr mag_msg) +{ + const geometry_msgs::msg::Vector3 &a = imu_msg_raw->linear_acceleration; + const geometry_msgs::msg::Vector3 &w = imu_msg_raw->angular_velocity; + const geometry_msgs::msg::Vector3 &m = mag_msg->magnetic_field; + const rclcpp::Time &time = imu_msg_raw->header.stamp; + + // Initialize. + if (!initialized_filter_) + { + time_prev_ = time; + initialized_filter_ = true; + return; + } + + // Calculate dt. + double dt = (time - time_prev_).nanoseconds() * 1e-9; + time_prev_ = time; + // ros::Time t_in, t_out; + // t_in = ros::Time::now(); + // Update the filter. + if (std::isnan(m.x) || std::isnan(m.y) || std::isnan(m.z)) + filter_.update(a.x, a.y, a.z, w.x, w.y, w.z, dt); + else + filter_.update(a.x, a.y, a.z, w.x, w.y, w.z, m.x, m.y, m.z, dt); + + // t_out = ros::Time::now(); + // float dt_tot = (t_out - t_in).toSec() * 1000.0; // In msec. + // printf("%.6f\n", dt_tot); + // Publish state. + publish(imu_msg_raw); +} + +tf2::Quaternion ComplementaryFilterROS::hamiltonToTFQuaternion(double q0, + double q1, + double q2, + double q3) const +{ + // ROS uses the Hamilton quaternion convention (q0 is the scalar). However, + // the ROS quaternion is in the form [x, y, z, w], with w as the scalar. + return tf2::Quaternion(q1, q2, q3, q0); +} + +void ComplementaryFilterROS::publish(ImuMsg::ConstSharedPtr imu_msg_raw) +{ + // Get the orientation: + double q0, q1, q2, q3; + filter_.getOrientation(q0, q1, q2, q3); + tf2::Quaternion q = hamiltonToTFQuaternion(q0, q1, q2, q3); + + // Create and publish fitlered IMU message. + ImuMsg::SharedPtr imu_msg = std::make_shared(*imu_msg_raw); + imu_msg->orientation.x = q1; + imu_msg->orientation.y = q2; + imu_msg->orientation.z = q3; + imu_msg->orientation.w = q0; + + imu_msg->orientation_covariance[0] = orientation_variance_; + imu_msg->orientation_covariance[1] = 0.0; + imu_msg->orientation_covariance[2] = 0.0; + imu_msg->orientation_covariance[3] = 0.0; + imu_msg->orientation_covariance[4] = orientation_variance_; + imu_msg->orientation_covariance[5] = 0.0; + imu_msg->orientation_covariance[6] = 0.0; + imu_msg->orientation_covariance[7] = 0.0; + imu_msg->orientation_covariance[8] = orientation_variance_; + + // Account for biases. + if (filter_.getDoBiasEstimation()) + { + imu_msg->angular_velocity.x -= filter_.getAngularVelocityBiasX(); + imu_msg->angular_velocity.y -= filter_.getAngularVelocityBiasY(); + imu_msg->angular_velocity.z -= filter_.getAngularVelocityBiasZ(); + } + + imu_publisher_->publish(*imu_msg); + + if (publish_debug_topics_) + { + // Create and publish roll, pitch, yaw angles + geometry_msgs::msg::Vector3Stamped rpy; + rpy.header = imu_msg_raw->header; + + tf2::Matrix3x3 M; + M.setRotation(q); + M.getRPY(rpy.vector.x, rpy.vector.y, rpy.vector.z); + rpy_publisher_->publish(rpy); + + // Publish whether we are in the steady state, when doing bias + // estimation + if (filter_.getDoBiasEstimation()) + { + std_msgs::msg::Bool state_msg; + state_msg.data = filter_.getSteadyState(); + state_publisher_->publish(state_msg); + } + } + + if (publish_tf_) + { + // Create and publish the ROS tf. + geometry_msgs::msg::TransformStamped transform; + transform.header.stamp = imu_msg_raw->header.stamp; + transform.transform.rotation.x = q1; + transform.transform.rotation.y = q2; + transform.transform.rotation.z = q3; + transform.transform.rotation.w = q0; + + if (reverse_tf_) + { + transform.header.frame_id = imu_msg_raw->header.frame_id; + transform.child_frame_id = fixed_frame_; + tf_broadcaster_.sendTransform(transform); + } else + { + transform.child_frame_id = imu_msg_raw->header.frame_id; + transform.header.frame_id = fixed_frame_; + tf_broadcaster_.sendTransform(transform); + } + } +} + +} // namespace imu_tools diff --git a/src/rm_perception/linefit_ground_segementation_ros2/LICENSE b/src/rm_perception/linefit_ground_segementation_ros2/LICENSE new file mode 100644 index 0000000..7809f45 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/LICENSE @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2017, Lorenz Wellhausen +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/rm_perception/linefit_ground_segementation_ros2/README.md b/src/rm_perception/linefit_ground_segementation_ros2/README.md new file mode 100644 index 0000000..1286b7b --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/README.md @@ -0,0 +1,67 @@ +# linefit_ground_segmentation + +Implementation of the ground segmentation algorithm proposed in +``` +@inproceedings{himmelsbach2010fast, + title={Fast segmentation of 3d point clouds for ground vehicles}, + author={Himmelsbach, Michael and Hundelshausen, Felix V and Wuensche, H-J}, + booktitle={Intelligent Vehicles Symposium (IV), 2010 IEEE}, + pages={560--565}, + year={2010}, + organization={IEEE} +} +``` +The `linefit_ground_segmentation` package contains the ground segmentation library. +A ROS interface is available in `linefit_ground_segmentation_ros` + +The library can be compiled separately from the ROS interface if you're not using ROS. + +## Installation + +```bash +colcon build --symlink-install +``` + +## Launch instructions + +The ground segmentation ROS node can be launch by executing `ros2 launch linefit_ground_segmentation_ros segmentation.launch`. +Input and output topic names can be specified in the same file. + +Getting up and running with your own point cloud source should be as simple as: + +1. Change the `input_topic` parameter in `segmentation.launch` to your topic. +2. Adjust the `sensor_height` parameter in `segmentation_params.yaml` to the height where the sensor is mounted on your robot (e.g. KITTI Velodyne: 1.8m) + +## Parameter description + +Parameters are set in `linefit_ground_segmentation_ros/launch/segmentation_params.yaml` + +This algorithm works on the assumption that you known the height of the sensor above ground. +Therefore, **you have to adjust the `sensor_height`** to your robot specifications, otherwise, it will not work. + +The default parameters should work on the KITTI dataset. + +### Ground Condition +- **sensor_height** Sensor height above ground. +- **max_dist_to_line** maximum vertical distance of point to line to be considered ground. +- **max_slope** Maximum slope of a line. +- **min_slope** Minimum slope of a line. +- **max_fit_error** Maximum error a point is allowed to have in a line fit. +- **max_start_height** Maximum height difference between new point and estimated ground height to start a new line. +- **long_threshold** Distance after which the max_height condition is applied. +- **max_height** Maximum height difference between line points when they are farther apart than *long_threshold*. +- **line_search_angle** How far to search in angular direction to find a line. A higher angle helps fill "holes" in the ground segmentation. +- **gravity_aligned_frame** Name of a coordinate frame which has its z-axis aligned with gravity. If specified, the incoming point cloud will be rotated, but not translated into this coordinate frame. If left empty, the sensor frame will be used. + +### Segmentation + +- **r_min** Distance at which segmentation starts. +- **r_max** Distance at which segmentation ends. +- **n_bins** Number of radial bins. +- **n_segments** Number of angular segments. + +### Other + +- **n_threads** Number of threads to use. +- **latch** Latch output point clouds in ROS node. +- **visualize** Visualize the segmentation result. **ONLY FOR DEBUGGING.** Do not set true during online operation. diff --git a/src/rm_perception/linefit_ground_segementation_ros2/doc/kitti.ply b/src/rm_perception/linefit_ground_segementation_ros2/doc/kitti.ply new file mode 100644 index 0000000..fdafed1 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/doc/kitti.ply @@ -0,0 +1,122557 @@ +ply +format ascii 1.0 +comment PCL generated +obj_info is_cyberware_data 0 +obj_info is_mesh 0 +obj_info is_warped 0 +obj_info is_interlaced 0 +obj_info num_cols 122527 +obj_info num_rows 1 +obj_info echo_rgb_offset_x 0 +obj_info echo_rgb_offset_y 0 +obj_info echo_rgb_offset_z 0 +obj_info echo_rgb_frontfocus 0.0 +obj_info echo_rgb_backfocus 0.0 +obj_info echo_rgb_pixelsize 0.0 +obj_info echo_rgb_centerpixel 0 +obj_info echo_frames 1 +obj_info echo_lgincr 0.0 +element vertex 122527 +property float x +property float y +property float z +property uchar red +property uchar green +property uchar blue +property float nx +property float ny +property float nz +property float curvature +end_header +58.761 0.029 2.196 0 0 0 0 0 0 0 +58.527 0.213 2.188 0 0 0 0 0 0 0 +58.458 0.396 2.186 0 0 0 0 0 0 0 +58.426 0.579 2.185 0 0 0 0 0 0 0 +58.4 0.763 2.184 0 0 0 0 0 0 0 +58.339 0.853 2.182 0 0 0 0 0 0 0 +58.302 1.036 2.181 0 0 0 0 0 0 0 +58.294 1.219 2.181 0 0 0 0 0 0 0 +58.218 1.401 2.178 0 0 0 0 0 0 0 +58.202 1.583 2.178 0 0 0 0 0 0 0 +58.142 1.764 2.176 0 0 0 0 0 0 0 +58.149 1.947 2.176 0 0 0 0 0 0 0 +58.249 2.042 2.18 0 0 0 0 0 0 0 +58.241 2.225 2.18 0 0 0 0 0 0 0 +58.205 2.407 2.179 0 0 0 0 0 0 0 +57.85 2.574 2.167 0 0 0 0 0 0 0 +57.526 2.741 2.157 0 0 0 0 0 0 0 +57.386 2.915 2.152 0 0 0 0 0 0 0 +58.651 3.164 2.195 0 0 0 0 0 0 0 +58.75 3.262 2.199 0 0 0 0 0 0 0 +25.565 1.485 1.075 0 0 0 0 0 0 0 +25.526 1.564 1.074 0 0 0 0 0 0 0 +59.158 3.845 2.214 0 0 0 0 0 0 0 +59.177 4.033 2.215 0 0 0 0 0 0 0 +59.252 4.225 2.218 0 0 0 0 0 0 0 +59.34 4.419 2.221 0 0 0 0 0 0 0 +59.457 4.521 2.225 0 0 0 0 0 0 0 +59.536 4.716 2.229 0 0 0 0 0 0 0 +59.636 4.912 2.233 0 0 0 0 0 0 0 +59.758 5.111 2.237 0 0 0 0 0 0 0 +59.827 5.307 2.24 0 0 0 0 0 0 0 +18.737 1.763 0.846 0 0 0 0 0 0 0 +18.71 1.79 0.845 0 0 0 0 0 0 0 +18.923 1.871 0.852 0 0 0 0 0 0 0 +60.376 6.217 2.262 0 0 0 0 0 0 0 +60.508 6.423 2.267 0 0 0 0 0 0 0 +60.61 6.626 2.271 0 0 0 0 0 0 0 +60.71 6.83 2.275 0 0 0 0 0 0 0 +25.001 2.996 1.061 0 0 0 0 0 0 0 +24.906 3.064 1.058 0 0 0 0 0 0 0 +24.94 3.148 1.059 0 0 0 0 0 0 0 +24.99 3.234 1.061 0 0 0 0 0 0 0 +25.003 3.316 1.062 0 0 0 0 0 0 0 +25.036 3.4 1.063 0 0 0 0 0 0 0 +25.049 3.482 1.064 0 0 0 0 0 0 0 +24.966 3.511 1.062 0 0 0 0 0 0 0 +25.412 3.655 1.077 0 0 0 0 0 0 0 +20.908 3.204 0.924 0 0 0 0 0 0 0 +20.803 3.255 0.921 0 0 0 0 0 0 0 +20.755 3.314 0.92 0 0 0 0 0 0 0 +20.73 3.344 0.919 0 0 0 0 0 0 0 +20.704 3.406 0.919 0 0 0 0 0 0 0 +20.65 3.464 0.917 0 0 0 0 0 0 0 +20.605 3.523 0.916 0 0 0 0 0 0 0 +20.563 3.582 0.915 0 0 0 0 0 0 0 +20.532 3.643 0.914 0 0 0 0 0 0 0 +18.691 3.375 0.851 0 0 0 0 0 0 0 +18.572 3.383 0.847 0 0 0 0 0 0 0 +18.553 3.44 0.847 0 0 0 0 0 0 0 +18.521 3.494 0.846 0 0 0 0 0 0 0 +18.492 3.549 0.846 0 0 0 0 0 0 0 +18.479 3.607 0.846 0 0 0 0 0 0 0 +18.462 3.664 0.846 0 0 0 0 0 0 0 +18.436 3.719 0.845 0 0 0 0 0 0 0 +18.423 3.746 0.845 0 0 0 0 0 0 0 +18.401 3.802 0.844 0 0 0 0 0 0 0 +18.373 3.857 0.844 0 0 0 0 0 0 0 +18.349 3.912 0.844 0 0 0 0 0 0 0 +18.304 3.962 0.842 0 0 0 0 0 0 0 +18.34 4.03 0.844 0 0 0 0 0 0 0 +18.485 4.123 0.85 0 0 0 0 0 0 0 +42.11 9.497 1.669 0 0 0 0 0 0 0 +42.158 9.647 1.672 0 0 0 0 0 0 0 +42.271 9.813 1.677 0 0 0 0 0 0 0 +42.336 9.968 1.68 0 0 0 0 0 0 0 +42.409 10.126 1.683 0 0 0 0 0 0 0 +42.515 10.293 1.688 0 0 0 0 0 0 0 +42.589 10.453 1.692 0 0 0 0 0 0 0 +42.707 10.553 1.697 0 0 0 0 0 0 0 +66.139 16.578 2.515 0 0 0 0 0 0 0 +66.294 16.839 2.522 0 0 0 0 0 0 0 +49.91 12.838 1.952 0 0 0 0 0 0 0 +49.748 12.963 1.948 0 0 0 0 0 0 0 +51.641 13.63 2.015 0 0 0 0 0 0 0 +50.598 13.525 1.98 0 0 0 0 0 0 0 +50.065 13.466 1.962 0 0 0 0 0 0 0 +66.294 18.064 2.533 0 0 0 0 0 0 0 +49.831 13.74 1.957 0 0 0 0 0 0 0 +49.815 13.904 1.958 0 0 0 0 0 0 0 +50.165 14.172 1.972 0 0 0 0 0 0 0 +50.019 14.3 1.968 0 0 0 0 0 0 0 +49.902 14.437 1.966 0 0 0 0 0 0 0 +49.958 14.538 1.969 0 0 0 0 0 0 0 +50.035 14.731 1.973 0 0 0 0 0 0 0 +51.921 15.465 2.041 0 0 0 0 0 0 0 +49.811 15.006 1.968 0 0 0 0 0 0 0 +49.81 15.176 1.97 0 0 0 0 0 0 0 +36.169 11.137 1.489 0 0 0 0 0 0 0 +36.265 11.292 1.493 0 0 0 0 0 0 0 +36.168 11.323 1.491 0 0 0 0 0 0 0 +35.827 11.34 1.48 0 0 0 0 0 0 0 +36.277 11.608 1.497 0 0 0 0 0 0 0 +36.503 11.934 1.508 0 0 0 0 0 0 0 +36.727 12.136 1.517 0 0 0 0 0 0 0 +36.687 12.25 1.517 0 0 0 0 0 0 0 +36.651 12.302 1.516 0 0 0 0 0 0 0 +46.457 15.764 1.868 0 0 0 0 0 0 0 +46.303 15.874 1.864 0 0 0 0 0 0 0 +34.354 12.012 1.44 0 0 0 0 0 0 0 +34.111 12.047 1.432 0 0 0 0 0 0 0 +46.083 16.449 1.864 0 0 0 0 0 0 0 +33.393 11.971 1.409 0 0 0 0 0 0 0 +33.061 11.969 1.398 0 0 0 0 0 0 0 +33.195 12.136 1.404 0 0 0 0 0 0 0 +33.328 12.303 1.41 0 0 0 0 0 0 0 +34.433 12.835 1.452 0 0 0 0 0 0 0 +34.929 13.146 1.471 0 0 0 0 0 0 0 +31.878 12.109 1.362 0 0 0 0 0 0 0 +31.953 12.195 1.366 0 0 0 0 0 0 0 +32.039 12.344 1.37 0 0 0 0 0 0 0 +31.695 12.325 1.359 0 0 0 0 0 0 0 +31.663 12.428 1.359 0 0 0 0 0 0 0 +31.542 12.495 1.356 0 0 0 0 0 0 0 +31.401 12.553 1.353 0 0 0 0 0 0 0 +31.658 12.771 1.363 0 0 0 0 0 0 0 +31.588 12.859 1.362 0 0 0 0 0 0 0 +73.729 30.186 2.903 0 0 0 0 0 0 0 +32.175 13.275 1.386 0 0 0 0 0 0 0 +32.154 13.385 1.387 0 0 0 0 0 0 0 +34.776 14.607 1.485 0 0 0 0 0 0 0 +34.003 14.408 1.458 0 0 0 0 0 0 0 +34.182 14.61 1.466 0 0 0 0 0 0 0 +41.605 18.49 1.749 0 0 0 0 0 0 0 +41.444 18.574 1.745 0 0 0 0 0 0 0 +41.3 18.666 1.742 0 0 0 0 0 0 0 +41.178 18.688 1.738 0 0 0 0 0 0 0 +41.027 18.775 1.735 0 0 0 0 0 0 0 +40.887 18.867 1.732 0 0 0 0 0 0 0 +40.745 18.957 1.729 0 0 0 0 0 0 0 +40.614 19.051 1.726 0 0 0 0 0 0 0 +40.477 19.142 1.723 0 0 0 0 0 0 0 +40.324 19.225 1.72 0 0 0 0 0 0 0 +40.217 19.251 1.717 0 0 0 0 0 0 0 +40.071 19.337 1.714 0 0 0 0 0 0 0 +39.919 19.418 1.71 0 0 0 0 0 0 0 +39.775 19.503 1.707 0 0 0 0 0 0 0 +39.638 19.59 1.704 0 0 0 0 0 0 0 +39.489 19.671 1.701 0 0 0 0 0 0 0 +39.343 19.753 1.698 0 0 0 0 0 0 0 +39.208 19.839 1.695 0 0 0 0 0 0 0 +28.487 14.463 1.289 0 0 0 0 0 0 0 +38.952 19.941 1.689 0 0 0 0 0 0 0 +38.802 20.018 1.686 0 0 0 0 0 0 0 +38.659 20.098 1.682 0 0 0 0 0 0 0 +38.536 20.188 1.68 0 0 0 0 0 0 0 +38.408 20.276 1.678 0 0 0 0 0 0 0 +38.263 20.353 1.675 0 0 0 0 0 0 0 +38.164 20.377 1.672 0 0 0 0 0 0 0 +38.035 20.462 1.67 0 0 0 0 0 0 0 +37.932 20.56 1.668 0 0 0 0 0 0 0 +37.883 20.688 1.669 0 0 0 0 0 0 0 +37.973 20.893 1.675 0 0 0 0 0 0 0 +38.053 21.092 1.68 0 0 0 0 0 0 0 +41.835 23.278 1.828 0 0 0 0 0 0 0 +41.791 23.426 1.829 0 0 0 0 0 0 0 +41.698 23.546 1.828 0 0 0 0 0 0 0 +41.64 23.686 1.829 0 0 0 0 0 0 0 +41.572 23.821 1.829 0 0 0 0 0 0 0 +41.506 23.956 1.83 0 0 0 0 0 0 0 +36.515 21.302 1.639 0 0 0 0 0 0 0 +36.344 21.356 1.635 0 0 0 0 0 0 0 +36.208 21.429 1.632 0 0 0 0 0 0 0 +36.076 21.504 1.629 0 0 0 0 0 0 0 +35.953 21.584 1.627 0 0 0 0 0 0 0 +35.812 21.652 1.624 0 0 0 0 0 0 0 +35.673 21.722 1.621 0 0 0 0 0 0 0 +35.586 21.746 1.619 0 0 0 0 0 0 0 +35.453 21.818 1.617 0 0 0 0 0 0 0 +35.339 21.9 1.615 0 0 0 0 0 0 0 +35.195 21.965 1.612 0 0 0 0 0 0 0 +35.085 22.05 1.61 0 0 0 0 0 0 0 +34.95 22.118 1.608 0 0 0 0 0 0 0 +34.823 22.191 1.605 0 0 0 0 0 0 0 +29.647 18.954 1.399 0 0 0 0 0 0 0 +13.087 8.408 0.735 0 0 0 0 0 0 0 +13.096 8.472 0.737 0 0 0 0 0 0 0 +13.123 8.548 0.739 0 0 0 0 0 0 0 +13.138 8.616 0.74 0 0 0 0 0 0 0 +13.083 8.699 0.74 0 0 0 0 0 0 0 +13.168 8.785 0.744 0 0 0 0 0 0 0 +13.198 8.865 0.747 0 0 0 0 0 0 0 +13.213 8.936 0.749 0 0 0 0 0 0 0 +32.686 22.302 1.547 0 0 0 0 0 0 0 +32.583 22.382 1.546 0 0 0 0 0 0 0 +33.319 23.043 1.579 0 0 0 0 0 0 0 +33.378 23.239 1.584 0 0 0 0 0 0 0 +33.367 23.387 1.587 0 0 0 0 0 0 0 +33.4 23.489 1.59 0 0 0 0 0 0 0 +33.387 23.637 1.592 0 0 0 0 0 0 0 +33.394 23.8 1.596 0 0 0 0 0 0 0 +33.407 23.967 1.599 0 0 0 0 0 0 0 +35.689 25.778 1.698 0 0 0 0 0 0 0 +35.479 25.796 1.692 0 0 0 0 0 0 0 +35.249 25.798 1.686 0 0 0 0 0 0 0 +35.072 25.753 1.68 0 0 0 0 0 0 0 +34.832 25.745 1.674 0 0 0 0 0 0 0 +34.497 25.666 1.663 0 0 0 0 0 0 0 +33.804 25.315 1.637 0 0 0 0 0 0 0 +33.638 25.356 1.634 0 0 0 0 0 0 0 +33.305 25.352 1.624 0 0 0 0 0 0 0 +30.878 23.656 1.524 0 0 0 0 0 0 0 +7.036 5.436 0.51 0 0 0 0 0 0 0 +6.819 5.301 0.501 0 0 0 0 0 0 0 +6.768 5.295 0.5 0 0 0 0 0 0 0 +6.762 5.325 0.5 0 0 0 0 0 0 0 +6.694 5.289 0.498 0 0 0 0 0 0 0 +6.611 5.291 0.495 0 0 0 0 0 0 0 +6.613 5.326 0.496 0 0 0 0 0 0 0 +6.779 5.496 0.504 0 0 0 0 0 0 0 +6.808 5.556 0.506 0 0 0 0 0 0 0 +6.745 5.539 0.504 0 0 0 0 0 0 0 +6.716 5.533 0.503 0 0 0 0 0 0 0 +6.703 5.558 0.504 0 0 0 0 0 0 0 +6.698 5.589 0.504 0 0 0 0 0 0 0 +11.61 9.838 0.724 0 0 0 0 0 0 0 +11.561 9.859 0.723 0 0 0 0 0 0 0 +11.571 9.93 0.725 0 0 0 0 0 0 0 +6.611 5.695 0.504 0 0 0 0 0 0 0 +6.695 5.786 0.508 0 0 0 0 0 0 0 +6.694 5.822 0.509 0 0 0 0 0 0 0 +6.713 5.876 0.511 0 0 0 0 0 0 0 +6.681 5.885 0.51 0 0 0 0 0 0 0 +6.679 5.921 0.511 0 0 0 0 0 0 0 +6.688 5.967 0.512 0 0 0 0 0 0 0 +6.662 5.981 0.512 0 0 0 0 0 0 0 +6.688 6.024 0.513 0 0 0 0 0 0 0 +11.11 10.093 0.717 0 0 0 0 0 0 0 +11.074 10.124 0.716 0 0 0 0 0 0 0 +15.821 14.571 0.936 0 0 0 0 0 0 0 +11.036 10.218 0.718 0 0 0 0 0 0 0 +10.995 10.244 0.717 0 0 0 0 0 0 0 +10.948 10.265 0.717 0 0 0 0 0 0 0 +10.887 10.239 0.715 0 0 0 0 0 0 0 +10.769 10.192 0.711 0 0 0 0 0 0 0 +10.747 10.236 0.711 0 0 0 0 0 0 0 +10.747 10.3 0.712 0 0 0 0 0 0 0 +10.727 10.346 0.713 0 0 0 0 0 0 0 +11.084 10.759 0.731 0 0 0 0 0 0 0 +10.836 10.584 0.721 0 0 0 0 0 0 0 +10.901 10.681 0.725 0 0 0 0 0 0 0 +15.92 15.714 0.966 0 0 0 0 0 0 0 +16.177 16.069 0.98 0 0 0 0 0 0 0 +15.645 15.637 0.957 0 0 0 0 0 0 0 +15.259 15.443 0.943 0 0 0 0 0 0 0 +15.985 16.282 0.981 0 0 0 0 0 0 0 +32.763 33.517 1.794 0 0 0 0 0 0 0 +15.572 16.012 0.964 0 0 0 0 0 0 0 +15.618 16.16 0.969 0 0 0 0 0 0 0 +32.469 33.849 1.795 0 0 0 0 0 0 0 +32.431 34.023 1.799 0 0 0 0 0 0 0 +14.822 15.726 0.94 0 0 0 0 0 0 0 +14.941 15.902 0.947 0 0 0 0 0 0 0 +14.655 15.696 0.935 0 0 0 0 0 0 0 +14.588 15.723 0.934 0 0 0 0 0 0 0 +14.498 15.725 0.932 0 0 0 0 0 0 0 +32.164 35.153 1.82 0 0 0 0 0 0 0 +31.86 35.041 1.811 0 0 0 0 0 0 0 +31.545 34.914 1.8 0 0 0 0 0 0 0 +31.468 34.939 1.799 0 0 0 0 0 0 0 +32.227 36.01 1.843 0 0 0 0 0 0 0 +32.182 36.187 1.847 0 0 0 0 0 0 0 +32.107 36.333 1.849 0 0 0 0 0 0 0 +32.042 36.489 1.851 0 0 0 0 0 0 0 +19.838 22.865 1.233 0 0 0 0 0 0 0 +31.735 36.951 1.856 0 0 0 0 0 0 0 +19.494 22.973 1.228 0 0 0 0 0 0 0 +31.477 37.357 1.861 0 0 0 0 0 0 0 +31.33 37.421 1.859 0 0 0 0 0 0 0 +20.227 24.3 1.278 0 0 0 0 0 0 0 +19.546 23.556 1.244 0 0 0 0 0 0 0 +18.992 23.033 1.219 0 0 0 0 0 0 0 +18.871 23.034 1.216 0 0 0 0 0 0 0 +19.658 24.151 1.262 0 0 0 0 0 0 0 +19.03 23.529 1.232 0 0 0 0 0 0 0 +18.718 23.292 1.22 0 0 0 0 0 0 0 +18.792 23.535 1.228 0 0 0 0 0 0 0 +18.811 23.635 1.231 0 0 0 0 0 0 0 +18.344 23.197 1.209 0 0 0 0 0 0 0 +30.706 39.11 1.891 0 0 0 0 0 0 0 +30.626 39.262 1.893 0 0 0 0 0 0 0 +17.763 22.902 1.189 0 0 0 0 0 0 0 +17.734 23.014 1.192 0 0 0 0 0 0 0 +17.707 23.128 1.194 0 0 0 0 0 0 0 +17.608 23.15 1.193 0 0 0 0 0 0 0 +18.432 24.314 1.241 0 0 0 0 0 0 0 +18.299 24.457 1.242 0 0 0 0 0 0 0 +18.293 24.609 1.246 0 0 0 0 0 0 0 +18.167 24.6 1.243 0 0 0 0 0 0 0 +29.818 40.672 1.914 0 0 0 0 0 0 0 +17.871 24.52 1.235 0 0 0 0 0 0 0 +17.951 24.711 1.242 0 0 0 0 0 0 0 +16.771 23.238 1.178 0 0 0 0 0 0 0 +16.635 23.203 1.175 0 0 0 0 0 0 0 +16.554 23.244 1.174 0 0 0 0 0 0 0 +29.382 41.565 1.93 0 0 0 0 0 0 0 +16.628 23.661 1.187 0 0 0 0 0 0 0 +16.635 23.75 1.19 0 0 0 0 0 0 0 +16.398 23.569 1.18 0 0 0 0 0 0 0 +26.832 38.855 1.806 0 0 0 0 0 0 0 +26.713 38.944 1.806 0 0 0 0 0 0 0 +26.62 39.071 1.808 0 0 0 0 0 0 0 +13.632 20.259 1.035 0 0 0 0 0 0 0 +13.598 20.277 1.035 0 0 0 0 0 0 0 +13.69 20.552 1.044 0 0 0 0 0 0 0 +28.535 43.185 1.959 0 0 0 0 0 0 0 +13.517 20.714 1.046 0 0 0 0 0 0 0 +26.076 40.281 1.832 0 0 0 0 0 0 0 +28.174 43.826 1.971 0 0 0 0 0 0 0 +28.067 43.963 1.973 0 0 0 0 0 0 0 +28.045 44.081 1.976 0 0 0 0 0 0 0 +18.364 29.049 1.371 0 0 0 0 0 0 0 +18.294 29.14 1.373 0 0 0 0 0 0 0 +18.333 29.408 1.381 0 0 0 0 0 0 0 +18.356 29.653 1.388 0 0 0 0 0 0 0 +25.838 42.055 1.878 0 0 0 0 0 0 0 +25.718 42.155 1.879 0 0 0 0 0 0 0 +27.396 45.069 1.993 0 0 0 0 0 0 0 +27.282 45.201 1.994 0 0 0 0 0 0 0 +27.174 45.343 1.997 0 0 0 0 0 0 0 +27.069 45.492 1.999 0 0 0 0 0 0 0 +26.954 45.623 2.001 0 0 0 0 0 0 0 +26.844 45.764 2.003 0 0 0 0 0 0 0 +26.742 45.921 2.006 0 0 0 0 0 0 0 +26.637 46.072 2.009 0 0 0 0 0 0 0 +26.593 46.164 2.011 0 0 0 0 0 0 0 +26.482 46.306 2.013 0 0 0 0 0 0 0 +26.373 46.454 2.015 0 0 0 0 0 0 0 +26.265 46.604 2.018 0 0 0 0 0 0 0 +26.149 46.742 2.02 0 0 0 0 0 0 0 +26.042 46.896 2.023 0 0 0 0 0 0 0 +25.997 46.989 2.025 0 0 0 0 0 0 0 +25.883 47.132 2.027 0 0 0 0 0 0 0 +12.439 22.963 1.092 0 0 0 0 0 0 0 +12.429 23.118 1.097 0 0 0 0 0 0 0 +12.519 23.464 1.108 0 0 0 0 0 0 0 +12.388 23.394 1.104 0 0 0 0 0 0 0 +25.152 47.92 2.039 0 0 0 0 0 0 0 +25.108 48.019 2.041 0 0 0 0 0 0 0 +24.975 48.134 2.043 0 0 0 0 0 0 0 +24.846 48.254 2.044 0 0 0 0 0 0 0 +18.493 36.181 1.583 0 0 0 0 0 0 0 +24.598 48.52 2.049 0 0 0 0 0 0 0 +18.432 36.627 1.596 0 0 0 0 0 0 0 +24.334 48.756 2.052 0 0 0 0 0 0 0 +17.545 35.276 1.541 0 0 0 0 0 0 0 +17.347 35.155 1.535 0 0 0 0 0 0 0 +16.072 32.826 1.445 0 0 0 0 0 0 0 +17.219 35.456 1.542 0 0 0 0 0 0 0 +17.092 35.475 1.541 0 0 0 0 0 0 0 +17.009 35.59 1.543 0 0 0 0 0 0 0 +17.048 35.961 1.555 0 0 0 0 0 0 0 +15.578 32.989 1.443 0 0 0 0 0 0 0 +15.499 33.092 1.445 0 0 0 0 0 0 0 +12.554 27.237 1.223 0 0 0 0 0 0 0 +13.769 30.128 1.329 0 0 0 0 0 0 0 +13.217 29.406 1.299 0 0 0 0 0 0 0 +13.189 29.467 1.301 0 0 0 0 0 0 0 +12.366 27.86 1.24 0 0 0 0 0 0 0 +12.296 27.939 1.241 0 0 0 0 0 0 0 +12.95 29.68 1.304 0 0 0 0 0 0 0 +15.15 35.035 1.5 0 0 0 0 0 0 0 +15.074 35.162 1.503 0 0 0 0 0 0 0 +15.526 36.534 1.551 0 0 0 0 0 0 0 +15.045 35.556 1.515 0 0 0 0 0 0 0 +14.91 35.548 1.513 0 0 0 0 0 0 0 +14.6 35.117 1.495 0 0 0 0 0 0 0 +14.578 35.377 1.503 0 0 0 0 0 0 0 +14.581 35.702 1.513 0 0 0 0 0 0 0 +19.947 49.31 2.008 0 0 0 0 0 0 0 +19.808 49.412 2.009 0 0 0 0 0 0 0 +19.751 49.723 2.018 0 0 0 0 0 0 0 +20.716 52.395 2.114 0 0 0 0 0 0 0 +20.568 52.503 2.116 0 0 0 0 0 0 0 +20.422 52.616 2.118 0 0 0 0 0 0 0 +20.274 52.726 2.119 0 0 0 0 0 0 0 +20.119 52.818 2.12 0 0 0 0 0 0 0 +19.973 52.933 2.122 0 0 0 0 0 0 0 +19.822 53.037 2.124 0 0 0 0 0 0 0 +19.763 53.134 2.126 0 0 0 0 0 0 0 +19.608 53.229 2.127 0 0 0 0 0 0 0 +19.464 53.352 2.13 0 0 0 0 0 0 0 +19.295 53.41 2.129 0 0 0 0 0 0 0 +19.15 53.536 2.132 0 0 0 0 0 0 0 +18.997 53.637 2.133 0 0 0 0 0 0 0 +18.856 53.776 2.136 0 0 0 0 0 0 0 +18.782 53.837 2.137 0 0 0 0 0 0 0 +18.633 53.955 2.139 0 0 0 0 0 0 0 +18.479 54.058 2.141 0 0 0 0 0 0 0 +18.329 54.175 2.143 0 0 0 0 0 0 0 +18.175 54.28 2.145 0 0 0 0 0 0 0 +18.022 54.392 2.147 0 0 0 0 0 0 0 +18.021 54.965 2.165 0 0 0 0 0 0 0 +18.197 55.799 2.194 0 0 0 0 0 0 0 +18.29 56.691 2.223 0 0 0 0 0 0 0 +18.377 57.58 2.253 0 0 0 0 0 0 0 +18.5 58.6 2.287 0 0 0 0 0 0 0 +18.623 59.643 2.322 0 0 0 0 0 0 0 +18.735 60.673 2.356 0 0 0 0 0 0 0 +18.804 61.585 2.387 0 0 0 0 0 0 0 +19.025 62.66 2.423 0 0 0 0 0 0 0 +19.177 63.886 2.465 0 0 0 0 0 0 0 +12.595 42.412 1.705 0 0 0 0 0 0 0 +19.424 66.221 2.543 0 0 0 0 0 0 0 +19.529 67.361 2.581 0 0 0 0 0 0 0 +19.521 68.135 2.606 0 0 0 0 0 0 0 +19.371 68.421 2.614 0 0 0 0 0 0 0 +19.193 68.616 2.618 0 0 0 0 0 0 0 +19.119 68.767 2.623 0 0 0 0 0 0 0 +18.938 68.956 2.627 0 0 0 0 0 0 0 +18.764 69.174 2.633 0 0 0 0 0 0 0 +18.758 70.022 2.66 0 0 0 0 0 0 0 +13.46 52.524 2.043 0 0 0 0 0 0 0 +13.39 52.94 2.056 0 0 0 0 0 0 0 +13.293 53.263 2.065 0 0 0 0 0 0 0 +16.362 72.865 2.734 0 0 0 0 0 0 0 +16.128 72.893 2.734 0 0 0 0 0 0 0 +15.887 72.886 2.732 0 0 0 0 0 0 0 +15.646 72.881 2.73 0 0 0 0 0 0 0 +2.592 12.856 0.653 0 0 0 0 0 0 0 +2.558 12.896 0.654 0 0 0 0 0 0 0 +3.418 17.571 0.814 0 0 0 0 0 0 0 +3.352 17.524 0.812 0 0 0 0 0 0 0 +3.346 17.642 0.816 0 0 0 0 0 0 0 +3.662 22.183 0.969 0 0 0 0 0 0 0 +0.583 3.539 0.33 0 0 0 0 0 0 0 +0.569 3.519 0.33 0 0 0 0 0 0 0 +0.553 3.487 0.329 0 0 0 0 0 0 0 +0.542 3.487 0.328 0 0 0 0 0 0 0 +0.542 3.525 0.33 0 0 0 0 0 0 0 +0.526 3.495 0.329 0 0 0 0 0 0 0 +0.515 3.495 0.329 0 0 0 0 0 0 0 +0.502 3.484 0.328 0 0 0 0 0 0 0 +0.495 3.516 0.329 0 0 0 0 0 0 0 +0.487 3.537 0.33 0 0 0 0 0 0 0 +0.478 3.554 0.33 0 0 0 0 0 0 0 +0.471 3.551 0.33 0 0 0 0 0 0 0 +0.454 3.501 0.329 0 0 0 0 0 0 0 +0.438 3.465 0.327 0 0 0 0 0 0 0 +2.622 22.411 0.972 0 0 0 0 0 0 0 +1.331 79.83 2.909 0 0 0 0 0 0 0 +1.079 79.753 2.906 0 0 0 0 0 0 0 +0.828 79.752 2.906 0 0 0 0 0 0 0 +0.576 79.559 2.899 0 0 0 0 0 0 0 +0.326 79.52 2.898 0 0 0 0 0 0 0 +-0.174 79.942 2.912 0 0 0 0 0 0 0 +-0.109 33.129 1.329 0 0 0 0 0 0 0 +-0.207 32.299 1.301 0 0 0 0 0 0 0 +-0.301 31.517 1.275 0 0 0 0 0 0 0 +-0.39 30.774 1.25 0 0 0 0 0 0 0 +-0.474 30.065 1.226 0 0 0 0 0 0 0 +-0.557 29.472 1.206 0 0 0 0 0 0 0 +-0.721 27.025 1.123 0 0 0 0 0 0 0 +-0.78 26.188 1.095 0 0 0 0 0 0 0 +-0.841 25.55 1.074 0 0 0 0 0 0 0 +-0.902 25.034 1.056 0 0 0 0 0 0 0 +-0.961 24.538 1.039 0 0 0 0 0 0 0 +-1.018 24.075 1.024 0 0 0 0 0 0 0 +-1.097 23.355 1 0 0 0 0 0 0 0 +-1.154 23.028 0.989 0 0 0 0 0 0 0 +-1.194 22.43 0.969 0 0 0 0 0 0 0 +-1.243 22.055 0.956 0 0 0 0 0 0 0 +-1.292 21.708 0.944 0 0 0 0 0 0 0 +-1.337 21.352 0.933 0 0 0 0 0 0 0 +-1.383 21.033 0.922 0 0 0 0 0 0 0 +-1.394 20.702 0.911 0 0 0 0 0 0 0 +-1.436 20.378 0.9 0 0 0 0 0 0 0 +-1.474 20.033 0.888 0 0 0 0 0 0 0 +-1.537 20.022 0.888 0 0 0 0 0 0 0 +-1.573 19.69 0.877 0 0 0 0 0 0 0 +-1.594 19.197 0.861 0 0 0 0 0 0 0 +-1.633 18.949 0.852 0 0 0 0 0 0 0 +-1.639 18.686 0.843 0 0 0 0 0 0 0 +-1.674 18.424 0.835 0 0 0 0 0 0 0 +-1.708 18.168 0.826 0 0 0 0 0 0 0 +-1.74 17.904 0.817 0 0 0 0 0 0 0 +-1.772 17.662 0.809 0 0 0 0 0 0 0 +-1.804 17.435 0.802 0 0 0 0 0 0 0 +-1.836 17.217 0.795 0 0 0 0 0 0 0 +-1.838 16.981 0.787 0 0 0 0 0 0 0 +-1.868 16.769 0.78 0 0 0 0 0 0 0 +-1.896 16.557 0.773 0 0 0 0 0 0 0 +-1.923 16.336 0.765 0 0 0 0 0 0 0 +-1.951 16.142 0.759 0 0 0 0 0 0 0 +-1.977 15.939 0.752 0 0 0 0 0 0 0 +-2.003 15.742 0.746 0 0 0 0 0 0 0 +-2.004 15.557 0.74 0 0 0 0 0 0 0 +-2.03 15.386 0.734 0 0 0 0 0 0 0 +-2.054 15.201 0.728 0 0 0 0 0 0 0 +-2.078 15.025 0.722 0 0 0 0 0 0 0 +-2.105 14.878 0.717 0 0 0 0 0 0 0 +-2.127 14.703 0.711 0 0 0 0 0 0 0 +-2.186 14.621 0.709 0 0 0 0 0 0 0 +-2.171 14.219 0.696 0 0 0 0 0 0 0 +-2.194 14.074 0.691 0 0 0 0 0 0 0 +-2.211 13.902 0.685 0 0 0 0 0 0 0 +-2.288 13.188 0.662 0 0 0 0 0 0 0 +-2.308 13.06 0.658 0 0 0 0 0 0 0 +-2.325 12.923 0.653 0 0 0 0 0 0 0 +-2.349 12.824 0.65 0 0 0 0 0 0 0 +-2.354 12.63 0.644 0 0 0 0 0 0 0 +-2.421 12.765 0.648 0 0 0 0 0 0 0 +-2.4 12.444 0.638 0 0 0 0 0 0 0 +-2.398 12.332 0.634 0 0 0 0 0 0 0 +-2.422 12.248 0.631 0 0 0 0 0 0 0 +-2.459 12.041 0.625 0 0 0 0 0 0 0 +-2.482 11.963 0.622 0 0 0 0 0 0 0 +-3.927 18.283 0.841 0 0 0 0 0 0 0 +-3.92 18.11 0.836 0 0 0 0 0 0 0 +-3.945 17.954 0.831 0 0 0 0 0 0 0 +-3.971 17.805 0.826 0 0 0 0 0 0 0 +-3.993 17.646 0.821 0 0 0 0 0 0 0 +-4.02 17.51 0.817 0 0 0 0 0 0 0 +-4.096 17.587 0.82 0 0 0 0 0 0 0 +-2.565 10.826 0.585 0 0 0 0 0 0 0 +-2.531 10.538 0.576 0 0 0 0 0 0 0 +-2.604 10.693 0.581 0 0 0 0 0 0 0 +-2.64 10.693 0.582 0 0 0 0 0 0 0 +-4.15 16.526 0.785 0 0 0 0 0 0 0 +-3.796 14.454 0.714 0 0 0 0 0 0 0 +-4.31 15.14 0.741 0 0 0 0 0 0 0 +-4.335 15.05 0.739 0 0 0 0 0 0 0 +-4.354 14.94 0.735 0 0 0 0 0 0 0 +-4.378 14.85 0.733 0 0 0 0 0 0 0 +-4.408 14.611 0.725 0 0 0 0 0 0 0 +-4.421 14.49 0.721 0 0 0 0 0 0 0 +-2.811 9.094 0.531 0 0 0 0 0 0 0 +-2.836 9.072 0.531 0 0 0 0 0 0 0 +-2.837 8.977 0.527 0 0 0 0 0 0 0 +-2.849 8.919 0.526 0 0 0 0 0 0 0 +-2.864 8.87 0.524 0 0 0 0 0 0 0 +-2.887 8.846 0.524 0 0 0 0 0 0 0 +-2.884 8.79 0.522 0 0 0 0 0 0 0 +-2.91 8.777 0.522 0 0 0 0 0 0 0 +-2.944 8.696 0.52 0 0 0 0 0 0 0 +-2.972 8.689 0.52 0 0 0 0 0 0 0 +-2.971 8.598 0.517 0 0 0 0 0 0 0 +-2.988 8.563 0.516 0 0 0 0 0 0 0 +-2.989 8.522 0.515 0 0 0 0 0 0 0 +-3.005 8.483 0.513 0 0 0 0 0 0 0 +-3.02 8.439 0.512 0 0 0 0 0 0 0 +-3.036 8.402 0.511 0 0 0 0 0 0 0 +-3.053 8.368 0.51 0 0 0 0 0 0 0 +-3.07 8.332 0.509 0 0 0 0 0 0 0 +-3.083 8.287 0.508 0 0 0 0 0 0 0 +-3.097 8.247 0.507 0 0 0 0 0 0 0 +-3.098 8.21 0.506 0 0 0 0 0 0 0 +-3.112 8.169 0.505 0 0 0 0 0 0 0 +-3.125 8.127 0.504 0 0 0 0 0 0 0 +-3.144 8.101 0.503 0 0 0 0 0 0 0 +-3.154 8.052 0.502 0 0 0 0 0 0 0 +-3.167 8.012 0.5 0 0 0 0 0 0 0 +-3.186 7.985 0.5 0 0 0 0 0 0 0 +-3.183 7.943 0.498 0 0 0 0 0 0 0 +-3.198 7.907 0.498 0 0 0 0 0 0 0 +-3.211 7.87 0.497 0 0 0 0 0 0 0 +-3.224 7.83 0.495 0 0 0 0 0 0 0 +-3.242 7.805 0.495 0 0 0 0 0 0 0 +-3.814 9.091 0.542 0 0 0 0 0 0 0 +-3.936 9.298 0.551 0 0 0 0 0 0 0 +-3.868 9.099 0.543 0 0 0 0 0 0 0 +-3.276 7.584 0.488 0 0 0 0 0 0 0 +-3.237 7.429 0.483 0 0 0 0 0 0 0 +-3.325 7.565 0.489 0 0 0 0 0 0 0 +-3.418 7.646 0.492 0 0 0 0 0 0 0 +-3.434 7.65 0.493 0 0 0 0 0 0 0 +-3.467 7.659 0.493 0 0 0 0 0 0 0 +-3.503 7.674 0.494 0 0 0 0 0 0 0 +-3.532 7.674 0.495 0 0 0 0 0 0 0 +-3.562 7.675 0.495 0 0 0 0 0 0 0 +-3.593 7.678 0.496 0 0 0 0 0 0 0 +-3.622 7.678 0.496 0 0 0 0 0 0 0 +-3.657 7.688 0.497 0 0 0 0 0 0 0 +-3.675 7.695 0.497 0 0 0 0 0 0 0 +-3.705 7.696 0.498 0 0 0 0 0 0 0 +-3.737 7.699 0.498 0 0 0 0 0 0 0 +-3.765 7.696 0.499 0 0 0 0 0 0 0 +-3.801 7.707 0.5 0 0 0 0 0 0 0 +-3.831 7.708 0.5 0 0 0 0 0 0 0 +-3.862 7.708 0.501 0 0 0 0 0 0 0 +-3.882 7.718 0.501 0 0 0 0 0 0 0 +-3.921 7.734 0.502 0 0 0 0 0 0 0 +-3.946 7.724 0.502 0 0 0 0 0 0 0 +-3.98 7.731 0.503 0 0 0 0 0 0 0 +-4.013 7.734 0.504 0 0 0 0 0 0 0 +-4.051 7.748 0.505 0 0 0 0 0 0 0 +-4.076 7.737 0.505 0 0 0 0 0 0 0 +-4.1 7.752 0.506 0 0 0 0 0 0 0 +-4.134 7.757 0.506 0 0 0 0 0 0 0 +-4.165 7.756 0.507 0 0 0 0 0 0 0 +-4.199 7.76 0.507 0 0 0 0 0 0 0 +-4.24 7.779 0.509 0 0 0 0 0 0 0 +-4.26 7.757 0.508 0 0 0 0 0 0 0 +-4.3 7.771 0.509 0 0 0 0 0 0 0 +-4.319 7.777 0.51 0 0 0 0 0 0 0 +-4.356 7.786 0.511 0 0 0 0 0 0 0 +-4.389 7.787 0.511 0 0 0 0 0 0 0 +-4.424 7.791 0.512 0 0 0 0 0 0 0 +-4.458 7.794 0.513 0 0 0 0 0 0 0 +-4.496 7.803 0.514 0 0 0 0 0 0 0 +-4.526 7.799 0.514 0 0 0 0 0 0 0 +-4.561 7.802 0.515 0 0 0 0 0 0 0 +-4.586 7.817 0.516 0 0 0 0 0 0 0 +-4.619 7.816 0.516 0 0 0 0 0 0 0 +-4.655 7.821 0.517 0 0 0 0 0 0 0 +-4.694 7.83 0.518 0 0 0 0 0 0 0 +-4.727 7.829 0.518 0 0 0 0 0 0 0 +-4.761 7.829 0.519 0 0 0 0 0 0 0 +-4.797 7.833 0.52 0 0 0 0 0 0 0 +-4.823 7.848 0.521 0 0 0 0 0 0 0 +-4.853 7.841 0.521 0 0 0 0 0 0 0 +-4.89 7.846 0.522 0 0 0 0 0 0 0 +-4.925 7.848 0.522 0 0 0 0 0 0 0 +-4.967 7.859 0.524 0 0 0 0 0 0 0 +-4.964 7.8 0.522 0 0 0 0 0 0 0 +-5.038 7.861 0.525 0 0 0 0 0 0 0 +-5.085 7.852 0.525 0 0 0 0 0 0 0 +-5.097 7.818 0.525 0 0 0 0 0 0 0 +-5.132 7.817 0.525 0 0 0 0 0 0 0 +-16.866 25.409 1.24 0 0 0 0 0 0 0 +-17.003 25.442 1.244 0 0 0 0 0 0 0 +-17.081 25.385 1.244 0 0 0 0 0 0 0 +-17.138 25.299 1.242 0 0 0 0 0 0 0 +-17.38 25.569 1.255 0 0 0 0 0 0 0 +-5.47 7.971 0.536 0 0 0 0 0 0 0 +-5.453 7.893 0.534 0 0 0 0 0 0 0 +-5.531 7.952 0.537 0 0 0 0 0 0 0 +-5.463 7.803 0.531 0 0 0 0 0 0 0 +-41.56 58.475 2.635 0 0 0 0 0 0 0 +-40.263 56.277 2.549 0 0 0 0 0 0 0 +-40.39 56.08 2.546 0 0 0 0 0 0 0 +-39.719 54.786 2.497 0 0 0 0 0 0 0 +-18.297 25.095 1.259 0 0 0 0 0 0 0 +-46.32 63.047 2.855 0 0 0 0 0 0 0 +-21.944 29.695 1.458 0 0 0 0 0 0 0 +-21.952 29.609 1.456 0 0 0 0 0 0 0 +-21.782 29.188 1.441 0 0 0 0 0 0 0 +-21.745 28.948 1.433 0 0 0 0 0 0 0 +-22.059 29.175 1.446 0 0 0 0 0 0 0 +-48.428 63.582 2.912 0 0 0 0 0 0 0 +-48.569 63.354 2.909 0 0 0 0 0 0 0 +-48.704 63.118 2.905 0 0 0 0 0 0 0 +-48.826 62.867 2.901 0 0 0 0 0 0 0 +-48.867 62.716 2.898 0 0 0 0 0 0 0 +-49.201 62.737 2.905 0 0 0 0 0 0 0 +-16.783 20.16 1.096 0 0 0 0 0 0 0 +-16.957 20.239 1.102 0 0 0 0 0 0 0 +-16.985 20.144 1.1 0 0 0 0 0 0 0 +-17.045 20.151 1.102 0 0 0 0 0 0 0 +-44.648 50.747 2.495 0 0 0 0 0 0 0 +-44.562 50.489 2.486 0 0 0 0 0 0 0 +-44.631 50.249 2.482 0 0 0 0 0 0 0 +-44.793 50.113 2.482 0 0 0 0 0 0 0 +-45.668 50.77 2.518 0 0 0 0 0 0 0 +-45.209 49.943 2.487 0 0 0 0 0 0 0 +-17.58 19.323 1.092 0 0 0 0 0 0 0 +-45.68 49.83 2.495 0 0 0 0 0 0 0 +-46.771 50.859 2.546 0 0 0 0 0 0 0 +-21.178 22.762 1.26 0 0 0 0 0 0 0 +-21.179 22.62 1.257 0 0 0 0 0 0 0 +-17.778 18.757 1.083 0 0 0 0 0 0 0 +-17.699 18.556 1.076 0 0 0 0 0 0 0 +-21.619 22.516 1.265 0 0 0 0 0 0 0 +-21.606 22.432 1.262 0 0 0 0 0 0 0 +-21.668 22.355 1.262 0 0 0 0 0 0 0 +-21.595 22.141 1.255 0 0 0 0 0 0 0 +-21.777 22.187 1.26 0 0 0 0 0 0 0 +-42.954 43.453 2.275 0 0 0 0 0 0 0 +-43.173 43.401 2.279 0 0 0 0 0 0 0 +-17.697 17.645 1.054 0 0 0 0 0 0 0 +-18.795 18.621 1.104 0 0 0 0 0 0 0 +-18.875 18.582 1.105 0 0 0 0 0 0 0 +-18.78 18.374 1.098 0 0 0 0 0 0 0 +-45.255 43.947 2.342 0 0 0 0 0 0 0 +-19.074 18.312 1.103 0 0 0 0 0 0 0 +-44.377 42.424 2.285 0 0 0 0 0 0 0 +-44.2 41.99 2.271 0 0 0 0 0 0 0 +-44.253 41.777 2.267 0 0 0 0 0 0 0 +-44.274 41.533 2.262 0 0 0 0 0 0 0 +-44.648 41.622 2.273 0 0 0 0 0 0 0 +-32.349 29.977 1.7 0 0 0 0 0 0 0 +-19.367 17.848 1.1 0 0 0 0 0 0 0 +-32.424 29.763 1.697 0 0 0 0 0 0 0 +-46.055 41.995 2.317 0 0 0 0 0 0 0 +-35.972 32.603 1.851 0 0 0 0 0 0 0 +-19.482 17.562 1.096 0 0 0 0 0 0 0 +-36.016 32.232 1.843 0 0 0 0 0 0 0 +-36.075 32.082 1.842 0 0 0 0 0 0 0 +-36.123 31.922 1.839 0 0 0 0 0 0 0 +-36.115 31.814 1.837 0 0 0 0 0 0 0 +-36.157 31.65 1.834 0 0 0 0 0 0 0 +-17.531 15.267 0.995 0 0 0 0 0 0 0 +-36.195 31.284 1.827 0 0 0 0 0 0 0 +-36.248 31.131 1.825 0 0 0 0 0 0 0 +-36.272 30.955 1.822 0 0 0 0 0 0 0 +-36.291 30.775 1.818 0 0 0 0 0 0 0 +-17.463 14.732 0.982 0 0 0 0 0 0 0 +-17.491 14.709 0.982 0 0 0 0 0 0 0 +-17.417 14.554 0.977 0 0 0 0 0 0 0 +-36.358 30.151 1.806 0 0 0 0 0 0 0 +-17.481 14.421 0.975 0 0 0 0 0 0 0 +-17.563 14.397 0.977 0 0 0 0 0 0 0 +-17.867 14.552 0.988 0 0 0 0 0 0 0 +-17.905 14.489 0.988 0 0 0 0 0 0 0 +-17.915 14.451 0.987 0 0 0 0 0 0 0 +-21.408 17.151 1.137 0 0 0 0 0 0 0 +-21.544 17.15 1.14 0 0 0 0 0 0 0 +-17.569 13.901 0.967 0 0 0 0 0 0 0 +-17.666 13.888 0.969 0 0 0 0 0 0 0 +-36.523 28.492 1.775 0 0 0 0 0 0 0 +-17.514 13.592 0.959 0 0 0 0 0 0 0 +-17.537 13.566 0.959 0 0 0 0 0 0 0 +-17.589 13.518 0.959 0 0 0 0 0 0 0 +-17.632 13.463 0.959 0 0 0 0 0 0 0 +-18.436 13.984 0.992 0 0 0 0 0 0 0 +-18.488 13.932 0.992 0 0 0 0 0 0 0 +-18.563 13.897 0.993 0 0 0 0 0 0 0 +-18.482 13.746 0.988 0 0 0 0 0 0 0 +-18.468 13.691 0.986 0 0 0 0 0 0 0 +-18.501 13.626 0.986 0 0 0 0 0 0 0 +-18.583 13.596 0.988 0 0 0 0 0 0 0 +-18.653 13.557 0.989 0 0 0 0 0 0 0 +-18.715 13.513 0.99 0 0 0 0 0 0 0 +-18.855 13.524 0.994 0 0 0 0 0 0 0 +-36.67 26.098 1.731 0 0 0 0 0 0 0 +-32.95 23.299 1.574 0 0 0 0 0 0 0 +-32.976 23.239 1.573 0 0 0 0 0 0 0 +-32.273 22.593 1.541 0 0 0 0 0 0 0 +-6.672 4.634 0.484 0 0 0 0 0 0 0 +-6.698 4.621 0.484 0 0 0 0 0 0 0 +-6.706 4.595 0.484 0 0 0 0 0 0 0 +-6.717 4.572 0.484 0 0 0 0 0 0 0 +-6.71 4.551 0.483 0 0 0 0 0 0 0 +-6.717 4.526 0.483 0 0 0 0 0 0 0 +-6.718 4.496 0.482 0 0 0 0 0 0 0 +-6.726 4.47 0.482 0 0 0 0 0 0 0 +-6.736 4.447 0.482 0 0 0 0 0 0 0 +-6.744 4.421 0.482 0 0 0 0 0 0 0 +-6.744 4.392 0.481 0 0 0 0 0 0 0 +-6.749 4.38 0.481 0 0 0 0 0 0 0 +-6.758 4.355 0.481 0 0 0 0 0 0 0 +-6.76 4.327 0.481 0 0 0 0 0 0 0 +-6.765 4.3 0.48 0 0 0 0 0 0 0 +-6.771 4.275 0.48 0 0 0 0 0 0 0 +-6.775 4.247 0.479 0 0 0 0 0 0 0 +-6.756 4.206 0.478 0 0 0 0 0 0 0 +-6.824 4.233 0.481 0 0 0 0 0 0 0 +-6.833 4.209 0.481 0 0 0 0 0 0 0 +-6.843 4.186 0.48 0 0 0 0 0 0 0 +-6.81 4.136 0.479 0 0 0 0 0 0 0 +-6.806 4.105 0.478 0 0 0 0 0 0 0 +-6.822 4.085 0.478 0 0 0 0 0 0 0 +-6.838 4.066 0.478 0 0 0 0 0 0 0 +-6.876 4.073 0.479 0 0 0 0 0 0 0 +-6.897 4.057 0.48 0 0 0 0 0 0 0 +-12.517 7.285 0.699 0 0 0 0 0 0 0 +-12.494 7.219 0.697 0 0 0 0 0 0 0 +-12.503 7.12 0.696 0 0 0 0 0 0 0 +-12.496 7.064 0.695 0 0 0 0 0 0 0 +-12.702 7.154 0.702 0 0 0 0 0 0 0 +-12.323 6.89 0.687 0 0 0 0 0 0 0 +-12.358 6.859 0.687 0 0 0 0 0 0 0 +-12.352 6.805 0.686 0 0 0 0 0 0 0 +-12.431 6.798 0.688 0 0 0 0 0 0 0 +-12.447 6.756 0.688 0 0 0 0 0 0 0 +-12.413 6.637 0.685 0 0 0 0 0 0 0 +-36.045 19.143 1.589 0 0 0 0 0 0 0 +-36.016 18.984 1.586 0 0 0 0 0 0 0 +-36.005 18.833 1.583 0 0 0 0 0 0 0 +-35.993 18.683 1.58 0 0 0 0 0 0 0 +-35.975 18.531 1.578 0 0 0 0 0 0 0 +-35.93 18.365 1.574 0 0 0 0 0 0 0 +-35.174 17.84 1.543 0 0 0 0 0 0 0 +-35.168 17.768 1.541 0 0 0 0 0 0 0 +-35.338 17.715 1.546 0 0 0 0 0 0 0 +-35.519 17.666 1.551 0 0 0 0 0 0 0 +-35.671 17.602 1.554 0 0 0 0 0 0 0 +-35.802 17.527 1.557 0 0 0 0 0 0 0 +-35.751 17.362 1.553 0 0 0 0 0 0 0 +-14.483 6.995 0.753 0 0 0 0 0 0 0 +-14.434 6.943 0.751 0 0 0 0 0 0 0 +-14.593 6.963 0.756 0 0 0 0 0 0 0 +-14.515 6.87 0.752 0 0 0 0 0 0 0 +-14.578 6.844 0.754 0 0 0 0 0 0 0 +-14.627 6.811 0.755 0 0 0 0 0 0 0 +-14.759 6.816 0.759 0 0 0 0 0 0 0 +-35.397 16.105 1.524 0 0 0 0 0 0 0 +-35.38 15.963 1.522 0 0 0 0 0 0 0 +-35.331 15.808 1.518 0 0 0 0 0 0 0 +-34.549 15.329 1.487 0 0 0 0 0 0 0 +-34.551 15.2 1.486 0 0 0 0 0 0 0 +-34.7 15.135 1.489 0 0 0 0 0 0 0 +-34.866 15.078 1.494 0 0 0 0 0 0 0 +-35.013 15.076 1.498 0 0 0 0 0 0 0 +-35.075 14.972 1.499 0 0 0 0 0 0 0 +-35.044 14.829 1.496 0 0 0 0 0 0 0 +-35.004 14.682 1.493 0 0 0 0 0 0 0 +-34.958 14.534 1.489 0 0 0 0 0 0 0 +-34.911 14.386 1.486 0 0 0 0 0 0 0 +-34.878 14.245 1.483 0 0 0 0 0 0 0 +-34.823 14.095 1.479 0 0 0 0 0 0 0 +-34.776 14.012 1.477 0 0 0 0 0 0 0 +-27.927 11.156 1.226 0 0 0 0 0 0 0 +-34.888 13.803 1.478 0 0 0 0 0 0 0 +-34.813 13.648 1.474 0 0 0 0 0 0 0 +-29.589 11.497 1.283 0 0 0 0 0 0 0 +-28.554 10.992 1.244 0 0 0 0 0 0 0 +-29.567 11.275 1.279 0 0 0 0 0 0 0 +-29.314 11.126 1.269 0 0 0 0 0 0 0 +-34.315 12.773 1.447 0 0 0 0 0 0 0 +-29.667 10.941 1.278 0 0 0 0 0 0 0 +-29.592 10.808 1.274 0 0 0 0 0 0 0 +-29.654 10.725 1.275 0 0 0 0 0 0 0 +-29.69 10.633 1.276 0 0 0 0 0 0 0 +-34.04 12.126 1.431 0 0 0 0 0 0 0 +-34.016 11.997 1.429 0 0 0 0 0 0 0 +-33.969 11.861 1.426 0 0 0 0 0 0 0 +-33.923 11.725 1.423 0 0 0 0 0 0 0 +-33.857 11.584 1.419 0 0 0 0 0 0 0 +-33.819 11.453 1.417 0 0 0 0 0 0 0 +-33.755 11.313 1.413 0 0 0 0 0 0 0 +-33.687 11.231 1.41 0 0 0 0 0 0 0 +-33.812 11.155 1.413 0 0 0 0 0 0 0 +-34.111 11.134 1.422 0 0 0 0 0 0 0 +-34.157 11.031 1.423 0 0 0 0 0 0 0 +-36.454 11.645 1.503 0 0 0 0 0 0 0 +-33.713 10.654 1.405 0 0 0 0 0 0 0 +-33.731 10.544 1.404 0 0 0 0 0 0 0 +-33.976 10.562 1.412 0 0 0 0 0 0 0 +-33.16 10.081 1.381 0 0 0 0 0 0 0 +-33.13 9.958 1.379 0 0 0 0 0 0 0 +-33.085 9.831 1.376 0 0 0 0 0 0 0 +-33.025 9.701 1.373 0 0 0 0 0 0 0 +-32.956 9.568 1.37 0 0 0 0 0 0 0 +-32.881 9.49 1.366 0 0 0 0 0 0 0 +-32.818 9.361 1.363 0 0 0 0 0 0 0 +-32.764 9.234 1.36 0 0 0 0 0 0 0 +-32.701 9.106 1.357 0 0 0 0 0 0 0 +-32.627 8.975 1.353 0 0 0 0 0 0 0 +-32.568 8.849 1.35 0 0 0 0 0 0 0 +-32.501 8.721 1.347 0 0 0 0 0 0 0 +-32.403 8.64 1.343 0 0 0 0 0 0 0 +-32.378 8.525 1.341 0 0 0 0 0 0 0 +-32.478 8.442 1.344 0 0 0 0 0 0 0 +-32.715 8.394 1.351 0 0 0 0 0 0 0 +-32.806 8.307 1.353 0 0 0 0 0 0 0 +-32.288 7.961 1.334 0 0 0 0 0 0 0 +-32.417 7.939 1.338 0 0 0 0 0 0 0 +-32.46 7.841 1.338 0 0 0 0 0 0 0 +-31.695 7.447 1.31 0 0 0 0 0 0 0 +-31.675 7.337 1.309 0 0 0 0 0 0 0 +-31.606 7.217 1.305 0 0 0 0 0 0 0 +-31.551 7.1 1.303 0 0 0 0 0 0 0 +-31.472 7.031 1.3 0 0 0 0 0 0 0 +-31.4 6.911 1.296 0 0 0 0 0 0 0 +-31.336 6.794 1.293 0 0 0 0 0 0 0 +-31.267 6.676 1.29 0 0 0 0 0 0 0 +-31.192 6.558 1.287 0 0 0 0 0 0 0 +-31.128 6.443 1.284 0 0 0 0 0 0 0 +-31.078 6.33 1.282 0 0 0 0 0 0 0 +-27.25 5.465 1.149 0 0 0 0 0 0 0 +-30.9 6.143 1.274 0 0 0 0 0 0 0 +-30.811 6.025 1.271 0 0 0 0 0 0 0 +-30.81 5.924 1.27 0 0 0 0 0 0 0 +-30.909 5.842 1.273 0 0 0 0 0 0 0 +-30.813 5.724 1.269 0 0 0 0 0 0 0 +-31.234 5.701 1.283 0 0 0 0 0 0 0 +-30.616 5.34 1.26 0 0 0 0 0 0 0 +-30.598 5.238 1.259 0 0 0 0 0 0 0 +-32.209 5.408 1.314 0 0 0 0 0 0 0 +-30.056 4.952 1.239 0 0 0 0 0 0 0 +-30.01 4.847 1.237 0 0 0 0 0 0 0 +-29.974 4.745 1.235 0 0 0 0 0 0 0 +-29.902 4.637 1.232 0 0 0 0 0 0 0 +-29.814 4.576 1.229 0 0 0 0 0 0 0 +-29.733 4.468 1.226 0 0 0 0 0 0 0 +-29.672 4.364 1.223 0 0 0 0 0 0 0 +-29.597 4.258 1.22 0 0 0 0 0 0 0 +-29.521 4.152 1.217 0 0 0 0 0 0 0 +-29.452 4.048 1.214 0 0 0 0 0 0 0 +-29.376 3.944 1.211 0 0 0 0 0 0 0 +-29.297 3.887 1.208 0 0 0 0 0 0 0 +-29.224 3.784 1.206 0 0 0 0 0 0 0 +-29.144 3.68 1.202 0 0 0 0 0 0 0 +-29.054 3.576 1.199 0 0 0 0 0 0 0 +-28.968 3.473 1.196 0 0 0 0 0 0 0 +-29.025 3.388 1.197 0 0 0 0 0 0 0 +-29.005 3.293 1.196 0 0 0 0 0 0 0 +-29.163 3.265 1.201 0 0 0 0 0 0 0 +-29.178 3.173 1.202 0 0 0 0 0 0 0 +-29.02 3.064 1.196 0 0 0 0 0 0 0 +-28.922 2.962 1.192 0 0 0 0 0 0 0 +-28.82 2.86 1.188 0 0 0 0 0 0 0 +-28.736 2.761 1.185 0 0 0 0 0 0 0 +-28.655 2.662 1.182 0 0 0 0 0 0 0 +-28.567 2.609 1.179 0 0 0 0 0 0 0 +-28.025 2.383 1.16 0 0 0 0 0 0 0 +-27.953 2.288 1.158 0 0 0 0 0 0 0 +-27.876 2.194 1.155 0 0 0 0 0 0 0 +-27.807 2.1 1.152 0 0 0 0 0 0 0 +-27.726 2.007 1.149 0 0 0 0 0 0 0 +-27.641 1.957 1.146 0 0 0 0 0 0 0 +-27.568 1.865 1.143 0 0 0 0 0 0 0 +-27.497 1.774 1.141 0 0 0 0 0 0 0 +-21.621 1.332 0.942 0 0 0 0 0 0 0 +-21.537 1.259 0.939 0 0 0 0 0 0 0 +-21.517 1.19 0.938 0 0 0 0 0 0 0 +-21.527 1.123 0.938 0 0 0 0 0 0 0 +-21.53 1.055 0.938 0 0 0 0 0 0 0 +-21.53 1.021 0.938 0 0 0 0 0 0 0 +-21.537 0.954 0.938 0 0 0 0 0 0 0 +-21.594 0.888 0.94 0 0 0 0 0 0 0 +-21.686 0.824 0.943 0 0 0 0 0 0 0 +-20.862 0.728 0.915 0 0 0 0 0 0 0 +-20.832 0.596 0.914 0 0 0 0 0 0 0 +-21.394 0.577 0.933 0 0 0 0 0 0 0 +-21.17 0.505 0.925 0 0 0 0 0 0 0 +-26.486 0.542 1.105 0 0 0 0 0 0 0 +-21.055 0.37 0.921 0 0 0 0 0 0 0 +-21.26 0.307 0.928 0 0 0 0 0 0 0 +-22.096 0.248 0.956 0 0 0 0 0 0 0 +-20.626 0.169 0.907 0 0 0 0 0 0 0 +-20.708 0.137 0.909 0 0 0 0 0 0 0 +-20.71 0.072 0.909 0 0 0 0 0 0 0 +-21.448 0.006 0.934 0 0 0 0 0 0 0 +-21.142 -0.06 0.924 0 0 0 0 0 0 0 +-25.545 -0.158 1.073 0 0 0 0 0 0 0 +-25.455 -0.238 1.07 0 0 0 0 0 0 0 +-25.39 -0.317 1.068 0 0 0 0 0 0 0 +-25.309 -0.356 1.065 0 0 0 0 0 0 0 +-25.214 -0.433 1.062 0 0 0 0 0 0 0 +-25.147 -0.511 1.06 0 0 0 0 0 0 0 +-25.073 -0.588 1.057 0 0 0 0 0 0 0 +-25.117 -0.668 1.059 0 0 0 0 0 0 0 +-25.145 -0.748 1.06 0 0 0 0 0 0 0 +-25.158 -0.828 1.06 0 0 0 0 0 0 0 +-25.365 -0.915 1.067 0 0 0 0 0 0 0 +-25.526 -1.001 1.073 0 0 0 0 0 0 0 +-25.549 -1.042 1.074 0 0 0 0 0 0 0 +-24.725 -1.163 1.046 0 0 0 0 0 0 0 +-24.573 -1.233 1.041 0 0 0 0 0 0 0 +-25.196 -1.345 1.062 0 0 0 0 0 0 0 +-24.112 -1.438 1.026 0 0 0 0 0 0 0 +-24.241 -1.484 1.03 0 0 0 0 0 0 0 +-16.116 -1.028 0.755 0 0 0 0 0 0 0 +-16.117 -1.079 0.755 0 0 0 0 0 0 0 +-16.012 -1.224 0.752 0 0 0 0 0 0 0 +-16.011 -1.274 0.752 0 0 0 0 0 0 0 +-16.038 -1.302 0.753 0 0 0 0 0 0 0 +-16.058 -1.354 0.754 0 0 0 0 0 0 0 +-19.679 -1.728 0.877 0 0 0 0 0 0 0 +-16.185 -1.468 0.759 0 0 0 0 0 0 0 +-16.194 -1.52 0.759 0 0 0 0 0 0 0 +-16.247 -1.577 0.761 0 0 0 0 0 0 0 +-16.222 -1.626 0.76 0 0 0 0 0 0 0 +-16.251 -1.654 0.761 0 0 0 0 0 0 0 +-16.22 -1.703 0.761 0 0 0 0 0 0 0 +-22.779 -2.474 0.984 0 0 0 0 0 0 0 +-22.754 -2.544 0.983 0 0 0 0 0 0 0 +-22.745 -2.615 0.983 0 0 0 0 0 0 0 +-22.759 -2.689 0.984 0 0 0 0 0 0 0 +-22.76 -2.762 0.984 0 0 0 0 0 0 0 +-22.778 -2.8 0.985 0 0 0 0 0 0 0 +-22.777 -2.873 0.985 0 0 0 0 0 0 0 +-22.778 -2.946 0.986 0 0 0 0 0 0 0 +-22.774 -3.018 0.986 0 0 0 0 0 0 0 +-22.79 -3.093 0.987 0 0 0 0 0 0 0 +-22.794 -3.167 0.987 0 0 0 0 0 0 0 +-22.764 -3.235 0.987 0 0 0 0 0 0 0 +-22.768 -3.309 0.987 0 0 0 0 0 0 0 +-22.842 -3.356 0.99 0 0 0 0 0 0 0 +-22.952 -3.446 0.994 0 0 0 0 0 0 0 +-22.998 -3.527 0.996 0 0 0 0 0 0 0 +-23.042 -3.608 0.998 0 0 0 0 0 0 0 +-23.096 -3.691 1 0 0 0 0 0 0 0 +-23.151 -3.775 1.002 0 0 0 0 0 0 0 +-23.145 -3.848 1.003 0 0 0 0 0 0 0 +-23.222 -3.899 1.005 0 0 0 0 0 0 0 +-21.096 -3.676 0.933 0 0 0 0 0 0 0 +-21.024 -3.731 0.931 0 0 0 0 0 0 0 +-20.949 -3.786 0.929 0 0 0 0 0 0 0 +-20.89 -3.843 0.927 0 0 0 0 0 0 0 +-20.793 -3.893 0.924 0 0 0 0 0 0 0 +-20.75 -3.918 0.923 0 0 0 0 0 0 0 +-20.665 -3.969 0.921 0 0 0 0 0 0 0 +-20.603 -4.024 0.919 0 0 0 0 0 0 0 +-20.524 -4.076 0.917 0 0 0 0 0 0 0 +-20.46 -4.13 0.915 0 0 0 0 0 0 0 +-20.372 -4.179 0.912 0 0 0 0 0 0 0 +-20.304 -4.231 0.91 0 0 0 0 0 0 0 +-20.227 -4.248 0.908 0 0 0 0 0 0 0 +-20.171 -4.303 0.907 0 0 0 0 0 0 0 +-20.087 -4.351 0.904 0 0 0 0 0 0 0 +-20.018 -4.402 0.902 0 0 0 0 0 0 0 +-19.94 -4.45 0.9 0 0 0 0 0 0 0 +-19.864 -4.499 0.898 0 0 0 0 0 0 0 +-19.775 -4.544 0.895 0 0 0 0 0 0 0 +-19.706 -4.56 0.893 0 0 0 0 0 0 0 +-19.623 -4.606 0.891 0 0 0 0 0 0 0 +-19.623 -4.671 0.891 0 0 0 0 0 0 0 +-19.645 -4.742 0.892 0 0 0 0 0 0 0 +-19.659 -4.81 0.893 0 0 0 0 0 0 0 +-19.632 -4.869 0.893 0 0 0 0 0 0 0 +-19.795 -4.976 0.899 0 0 0 0 0 0 0 +-19.926 -5.043 0.904 0 0 0 0 0 0 0 +-19.87 -5.095 0.903 0 0 0 0 0 0 0 +-19.78 -5.138 0.9 0 0 0 0 0 0 0 +-19.19 -5.113 0.881 0 0 0 0 0 0 0 +-19.305 -5.208 0.885 0 0 0 0 0 0 0 +-19.286 -5.269 0.885 0 0 0 0 0 0 0 +-19.467 -5.351 0.892 0 0 0 0 0 0 0 +-19.375 -5.391 0.889 0 0 0 0 0 0 0 +-18.501 -5.272 0.86 0 0 0 0 0 0 0 +-18.438 -5.317 0.858 0 0 0 0 0 0 0 +-18.4 -5.369 0.857 0 0 0 0 0 0 0 +-18.318 -5.407 0.855 0 0 0 0 0 0 0 +-18.259 -5.452 0.853 0 0 0 0 0 0 0 +-18.191 -5.463 0.851 0 0 0 0 0 0 0 +-18.116 -5.502 0.849 0 0 0 0 0 0 0 +-18.049 -5.544 0.848 0 0 0 0 0 0 0 +-17.976 -5.583 0.846 0 0 0 0 0 0 0 +-17.909 -5.624 0.844 0 0 0 0 0 0 0 +-17.844 -5.665 0.842 0 0 0 0 0 0 0 +-17.773 -5.704 0.84 0 0 0 0 0 0 0 +-17.72 -5.718 0.839 0 0 0 0 0 0 0 +-17.653 -5.757 0.837 0 0 0 0 0 0 0 +-17.583 -5.796 0.835 0 0 0 0 0 0 0 +-17.502 -5.83 0.833 0 0 0 0 0 0 0 +-17.45 -5.873 0.832 0 0 0 0 0 0 0 +-17.376 -5.91 0.83 0 0 0 0 0 0 0 +-17.314 -5.949 0.828 0 0 0 0 0 0 0 +-17.26 -5.961 0.827 0 0 0 0 0 0 0 +-17.192 -5.998 0.825 0 0 0 0 0 0 0 +-17.113 -6.03 0.823 0 0 0 0 0 0 0 +-17.045 -6.066 0.821 0 0 0 0 0 0 0 +-16.76 -6.024 0.811 0 0 0 0 0 0 0 +-16.873 -6.125 0.816 0 0 0 0 0 0 0 +-16.848 -6.176 0.816 0 0 0 0 0 0 0 +-16.797 -6.187 0.814 0 0 0 0 0 0 0 +-16.723 -6.219 0.812 0 0 0 0 0 0 0 +-16.666 -6.258 0.811 0 0 0 0 0 0 0 +-16.594 -6.29 0.809 0 0 0 0 0 0 0 +-16.529 -6.325 0.808 0 0 0 0 0 0 0 +-16.463 -6.359 0.806 0 0 0 0 0 0 0 +-16.406 -6.396 0.805 0 0 0 0 0 0 0 +-16.329 -6.395 0.802 0 0 0 0 0 0 0 +-16.286 -6.438 0.801 0 0 0 0 0 0 0 +-16.219 -6.47 0.8 0 0 0 0 0 0 0 +-16.156 -6.504 0.798 0 0 0 0 0 0 0 +-16.09 -6.536 0.796 0 0 0 0 0 0 0 +-16.034 -6.572 0.795 0 0 0 0 0 0 0 +-16.03 -6.629 0.796 0 0 0 0 0 0 0 +-16.03 -6.659 0.796 0 0 0 0 0 0 0 +-16.015 -6.712 0.796 0 0 0 0 0 0 0 +-15.891 -6.718 0.793 0 0 0 0 0 0 0 +-15.84 -6.755 0.791 0 0 0 0 0 0 0 +-15.465 -6.652 0.778 0 0 0 0 0 0 0 +-15.541 -6.743 0.782 0 0 0 0 0 0 0 +-15.463 -6.767 0.78 0 0 0 0 0 0 0 +-15.571 -6.844 0.784 0 0 0 0 0 0 0 +-16.107 -7.262 0.807 0 0 0 0 0 0 0 +-16.109 -7.324 0.808 0 0 0 0 0 0 0 +-16.128 -7.394 0.809 0 0 0 0 0 0 0 +-16.123 -7.453 0.81 0 0 0 0 0 0 0 +-16.135 -7.489 0.811 0 0 0 0 0 0 0 +-16.145 -7.556 0.812 0 0 0 0 0 0 0 +-16.156 -7.623 0.813 0 0 0 0 0 0 0 +-16.163 -7.689 0.814 0 0 0 0 0 0 0 +-16.183 -7.761 0.816 0 0 0 0 0 0 0 +-16.168 -7.816 0.816 0 0 0 0 0 0 0 +-16.17 -7.88 0.817 0 0 0 0 0 0 0 +-16.183 -7.918 0.818 0 0 0 0 0 0 0 +-16.221 -8 0.821 0 0 0 0 0 0 0 +-16.36 -8.133 0.827 0 0 0 0 0 0 0 +-16.367 -8.2 0.828 0 0 0 0 0 0 0 +-16.367 -8.265 0.829 0 0 0 0 0 0 0 +-16.386 -8.339 0.831 0 0 0 0 0 0 0 +-16.395 -8.409 0.832 0 0 0 0 0 0 0 +-16.401 -8.477 0.833 0 0 0 0 0 0 0 +-16.426 -8.523 0.835 0 0 0 0 0 0 0 +-16.424 -8.588 0.836 0 0 0 0 0 0 0 +-16.432 -8.658 0.837 0 0 0 0 0 0 0 +-16.435 -8.725 0.838 0 0 0 0 0 0 0 +-16.448 -8.799 0.84 0 0 0 0 0 0 0 +-16.45 -8.866 0.841 0 0 0 0 0 0 0 +-16.466 -8.942 0.843 0 0 0 0 0 0 0 +-16.487 -8.987 0.844 0 0 0 0 0 0 0 +-16.482 -9.051 0.845 0 0 0 0 0 0 0 +-16.513 -9.136 0.847 0 0 0 0 0 0 0 +-16.465 -9.177 0.847 0 0 0 0 0 0 0 +-16.382 -9.198 0.844 0 0 0 0 0 0 0 +-16.348 -9.247 0.844 0 0 0 0 0 0 0 +-16.357 -9.32 0.846 0 0 0 0 0 0 0 +-16.392 -9.375 0.848 0 0 0 0 0 0 0 +-16.403 -9.449 0.849 0 0 0 0 0 0 0 +-16.407 -9.521 0.851 0 0 0 0 0 0 0 +-16.412 -9.592 0.852 0 0 0 0 0 0 0 +-16.419 -9.666 0.853 0 0 0 0 0 0 0 +-16.429 -9.741 0.855 0 0 0 0 0 0 0 +-16.42 -9.806 0.856 0 0 0 0 0 0 0 +-16.453 -9.861 0.858 0 0 0 0 0 0 0 +-16.459 -9.935 0.859 0 0 0 0 0 0 0 +-16.462 -10.008 0.861 0 0 0 0 0 0 0 +-16.46 -10.077 0.862 0 0 0 0 0 0 0 +-16.479 -10.16 0.864 0 0 0 0 0 0 0 +-16.481 -10.233 0.865 0 0 0 0 0 0 0 +-16.501 -10.318 0.867 0 0 0 0 0 0 0 +-16.512 -10.361 0.868 0 0 0 0 0 0 0 +-16.528 -10.444 0.87 0 0 0 0 0 0 0 +-16.522 -10.513 0.871 0 0 0 0 0 0 0 +-16.528 -10.589 0.873 0 0 0 0 0 0 0 +-16.677 -10.76 0.88 0 0 0 0 0 0 0 +-17.253 -11.209 0.905 0 0 0 0 0 0 0 +-17.194 -11.248 0.904 0 0 0 0 0 0 0 +-16.81 -11.185 0.892 0 0 0 0 0 0 0 +-16.957 -11.361 0.899 0 0 0 0 0 0 0 +-17.151 -11.569 0.909 0 0 0 0 0 0 0 +-17.242 -11.71 0.914 0 0 0 0 0 0 0 +-17.228 -11.78 0.915 0 0 0 0 0 0 0 +-17.277 -11.853 0.918 0 0 0 0 0 0 0 +-16.874 -11.733 0.904 0 0 0 0 0 0 0 +-16.869 -11.808 0.905 0 0 0 0 0 0 0 +-16.794 -11.834 0.904 0 0 0 0 0 0 0 +-16.727 -11.866 0.903 0 0 0 0 0 0 0 +-16.666 -11.901 0.902 0 0 0 0 0 0 0 +-16.667 -11.981 0.903 0 0 0 0 0 0 0 +-16.723 -12.061 0.906 0 0 0 0 0 0 0 +-16.728 -12.146 0.908 0 0 0 0 0 0 0 +-16.738 -12.234 0.91 0 0 0 0 0 0 0 +-16.742 -12.317 0.912 0 0 0 0 0 0 0 +-16.762 -12.414 0.914 0 0 0 0 0 0 0 +-16.77 -12.501 0.916 0 0 0 0 0 0 0 +-16.77 -12.584 0.918 0 0 0 0 0 0 0 +-16.792 -12.641 0.92 0 0 0 0 0 0 0 +-16.803 -12.733 0.922 0 0 0 0 0 0 0 +-16.811 -12.822 0.924 0 0 0 0 0 0 0 +-16.827 -12.918 0.926 0 0 0 0 0 0 0 +-16.837 -13.01 0.929 0 0 0 0 0 0 0 +-16.842 -13.099 0.931 0 0 0 0 0 0 0 +-16.842 -13.184 0.932 0 0 0 0 0 0 0 +-16.865 -13.245 0.934 0 0 0 0 0 0 0 +-16.953 -13.401 0.94 0 0 0 0 0 0 0 +-17.508 -13.93 0.966 0 0 0 0 0 0 0 +-17.168 -13.836 0.955 0 0 0 0 0 0 0 +-17.128 -13.893 0.955 0 0 0 0 0 0 0 +-17.055 -13.922 0.954 0 0 0 0 0 0 0 +-17.569 -14.389 0.977 0 0 0 0 0 0 0 +-17.596 -14.504 0.98 0 0 0 0 0 0 0 +-17.553 -14.562 0.98 0 0 0 0 0 0 0 +-17.244 -14.396 0.969 0 0 0 0 0 0 0 +-17.217 -14.466 0.97 0 0 0 0 0 0 0 +-17.156 -14.507 0.969 0 0 0 0 0 0 0 +-17.068 -14.525 0.967 0 0 0 0 0 0 0 +-17.021 -14.531 0.966 0 0 0 0 0 0 0 +-17.039 -14.639 0.969 0 0 0 0 0 0 0 +-17.058 -14.748 0.972 0 0 0 0 0 0 0 +-17.073 -14.856 0.974 0 0 0 0 0 0 0 +-17.071 -14.949 0.976 0 0 0 0 0 0 0 +-17.096 -15.066 0.98 0 0 0 0 0 0 0 +-17.082 -15.149 0.981 0 0 0 0 0 0 0 +-17.129 -15.24 0.984 0 0 0 0 0 0 0 +-17.129 -15.336 0.987 0 0 0 0 0 0 0 +-17.142 -15.445 0.989 0 0 0 0 0 0 0 +-17.149 -15.55 0.992 0 0 0 0 0 0 0 +-17.162 -15.66 0.995 0 0 0 0 0 0 0 +-17.181 -15.776 0.998 0 0 0 0 0 0 0 +-17.154 -15.852 0.999 0 0 0 0 0 0 0 +-17.351 -16.084 1.009 0 0 0 0 0 0 0 +-17.477 -16.511 1.022 0 0 0 0 0 0 0 +-17.632 -16.763 1.032 0 0 0 0 0 0 0 +-17.888 -17.114 1.046 0 0 0 0 0 0 0 +-17.857 -17.192 1.047 0 0 0 0 0 0 0 +-17.564 -17.07 1.037 0 0 0 0 0 0 0 +-17.533 -17.147 1.038 0 0 0 0 0 0 0 +-17.445 -17.169 1.037 0 0 0 0 0 0 0 +-17.368 -17.201 1.036 0 0 0 0 0 0 0 +-17.341 -17.282 1.037 0 0 0 0 0 0 0 +-17.367 -17.417 1.041 0 0 0 0 0 0 0 +-17.384 -17.544 1.044 0 0 0 0 0 0 0 +-17.419 -17.636 1.047 0 0 0 0 0 0 0 +-17.424 -17.752 1.05 0 0 0 0 0 0 0 +-17.448 -17.888 1.054 0 0 0 0 0 0 0 +-17.448 -18.002 1.057 0 0 0 0 0 0 0 +-17.468 -18.136 1.061 0 0 0 0 0 0 0 +-17.479 -18.261 1.064 0 0 0 0 0 0 0 +-17.493 -18.392 1.067 0 0 0 0 0 0 0 +-17.524 -18.483 1.07 0 0 0 0 0 0 0 +-17.536 -18.612 1.074 0 0 0 0 0 0 0 +-24.549 -26.236 1.424 0 0 0 0 0 0 0 +-24.439 -26.283 1.423 0 0 0 0 0 0 0 +-24.298 -26.297 1.42 0 0 0 0 0 0 0 +-24.17 -26.323 1.418 0 0 0 0 0 0 0 +-24.037 -26.344 1.415 0 0 0 0 0 0 0 +-23.951 -26.333 1.413 0 0 0 0 0 0 0 +-23.937 -26.484 1.416 0 0 0 0 0 0 0 +-24.717 -27.522 1.46 0 0 0 0 0 0 0 +-24.726 -27.706 1.465 0 0 0 0 0 0 0 +-24.742 -27.901 1.47 0 0 0 0 0 0 0 +-24.756 -28.094 1.475 0 0 0 0 0 0 0 +-24.774 -28.293 1.481 0 0 0 0 0 0 0 +-24.849 -28.469 1.487 0 0 0 0 0 0 0 +-24.728 -28.511 1.485 0 0 0 0 0 0 0 +-24.589 -28.531 1.483 0 0 0 0 0 0 0 +-24.454 -28.555 1.48 0 0 0 0 0 0 0 +-24.311 -28.569 1.478 0 0 0 0 0 0 0 +-24.203 -28.624 1.477 0 0 0 0 0 0 0 +-24.167 -28.764 1.48 0 0 0 0 0 0 0 +-25.041 -29.902 1.528 0 0 0 0 0 0 0 +-25.063 -30.12 1.534 0 0 0 0 0 0 0 +-25.082 -30.336 1.54 0 0 0 0 0 0 0 +-25.104 -30.558 1.546 0 0 0 0 0 0 0 +-25.117 -30.77 1.552 0 0 0 0 0 0 0 +-25.138 -30.995 1.559 0 0 0 0 0 0 0 +-25.164 -31.226 1.565 0 0 0 0 0 0 0 +-25.236 -31.417 1.572 0 0 0 0 0 0 0 +-25.255 -31.645 1.578 0 0 0 0 0 0 0 +-25.282 -31.884 1.585 0 0 0 0 0 0 0 +-25.296 -32.107 1.591 0 0 0 0 0 0 0 +-25.322 -32.349 1.598 0 0 0 0 0 0 0 +-25.357 -32.605 1.606 0 0 0 0 0 0 0 +-25.377 -32.843 1.613 0 0 0 0 0 0 0 +-25.457 -33.054 1.62 0 0 0 0 0 0 0 +-25.484 -33.305 1.627 0 0 0 0 0 0 0 +-25.501 -33.546 1.634 0 0 0 0 0 0 0 +-25.524 -33.797 1.641 0 0 0 0 0 0 0 +-25.551 -34.054 1.649 0 0 0 0 0 0 0 +-25.578 -34.314 1.656 0 0 0 0 0 0 0 +-25.605 -34.577 1.664 0 0 0 0 0 0 0 +-25.681 -34.794 1.671 0 0 0 0 0 0 0 +-25.708 -35.06 1.679 0 0 0 0 0 0 0 +-25.723 -35.314 1.686 0 0 0 0 0 0 0 +-25.755 -35.592 1.695 0 0 0 0 0 0 0 +-25.775 -35.856 1.702 0 0 0 0 0 0 0 +-25.8 -36.131 1.71 0 0 0 0 0 0 0 +-25.824 -36.406 1.718 0 0 0 0 0 0 0 +-25.92 -36.663 1.727 0 0 0 0 0 0 0 +-25.935 -36.93 1.735 0 0 0 0 0 0 0 +-25.983 -37.247 1.745 0 0 0 0 0 0 0 +-25.881 -37.35 1.746 0 0 0 0 0 0 0 +-26.043 -37.838 1.762 0 0 0 0 0 0 0 +-26.058 -38.116 1.77 0 0 0 0 0 0 0 +-26.084 -38.413 1.779 0 0 0 0 0 0 0 +-26.188 -38.697 1.789 0 0 0 0 0 0 0 +-26.216 -39.001 1.798 0 0 0 0 0 0 0 +-26.25 -39.318 1.808 0 0 0 0 0 0 0 +-26.274 -39.624 1.817 0 0 0 0 0 0 0 +-26.312 -39.953 1.827 0 0 0 0 0 0 0 +-26.341 -40.273 1.836 0 0 0 0 0 0 0 +-26.368 -40.592 1.846 0 0 0 0 0 0 0 +-26.47 -40.891 1.856 0 0 0 0 0 0 0 +-26.5 -41.219 1.866 0 0 0 0 0 0 0 +-26.533 -41.558 1.876 0 0 0 0 0 0 0 +-26.565 -41.898 1.887 0 0 0 0 0 0 0 +-26.601 -42.249 1.897 0 0 0 0 0 0 0 +-26.632 -42.593 1.908 0 0 0 0 0 0 0 +-26.679 -42.969 1.919 0 0 0 0 0 0 0 +-26.71 -43.323 1.93 0 0 0 0 0 0 0 +-26.82 -43.654 1.942 0 0 0 0 0 0 0 +-26.852 -44.017 1.953 0 0 0 0 0 0 0 +-26.889 -44.39 1.964 0 0 0 0 0 0 0 +-26.924 -44.765 1.976 0 0 0 0 0 0 0 +-26.961 -45.147 1.987 0 0 0 0 0 0 0 +-27.005 -45.546 2 0 0 0 0 0 0 0 +-27.046 -45.944 2.012 0 0 0 0 0 0 0 +-27.162 -46.307 2.024 0 0 0 0 0 0 0 +-27.2 -46.709 2.037 0 0 0 0 0 0 0 +-27.239 -47.116 2.049 0 0 0 0 0 0 0 +-27.292 -47.552 2.063 0 0 0 0 0 0 0 +-27.34 -47.984 2.077 0 0 0 0 0 0 0 +-27.383 -48.413 2.09 0 0 0 0 0 0 0 +-27.423 -48.842 2.103 0 0 0 0 0 0 0 +-27.552 -49.252 2.117 0 0 0 0 0 0 0 +-27.597 -49.7 2.131 0 0 0 0 0 0 0 +-27.638 -50.143 2.145 0 0 0 0 0 0 0 +-27.683 -50.602 2.16 0 0 0 0 0 0 0 +-27.74 -51.086 2.175 0 0 0 0 0 0 0 +-27.781 -51.547 2.189 0 0 0 0 0 0 0 +-27.836 -52.042 2.205 0 0 0 0 0 0 0 +-27.961 -52.474 2.22 0 0 0 0 0 0 0 +-28.016 -52.976 2.236 0 0 0 0 0 0 0 +-28.064 -53.475 2.251 0 0 0 0 0 0 0 +-28.118 -53.99 2.268 0 0 0 0 0 0 0 +-28.17 -54.506 2.284 0 0 0 0 0 0 0 +-28.223 -55.034 2.301 0 0 0 0 0 0 0 +-28.278 -55.57 2.317 0 0 0 0 0 0 0 +-28.423 -56.072 2.335 0 0 0 0 0 0 0 +-28.477 -56.62 2.352 0 0 0 0 0 0 0 +-28.466 -57.044 2.365 0 0 0 0 0 0 0 +-28.596 -57.758 2.388 0 0 0 0 0 0 0 +-28.655 -58.34 2.407 0 0 0 0 0 0 0 +-28.726 -58.952 2.427 0 0 0 0 0 0 0 +-28.782 -59.541 2.445 0 0 0 0 0 0 0 +-28.946 -60.123 2.466 0 0 0 0 0 0 0 +-29.015 -60.753 2.486 0 0 0 0 0 0 0 +-29.079 -61.382 2.506 0 0 0 0 0 0 0 +-29.149 -62.034 2.527 0 0 0 0 0 0 0 +-29.204 -62.662 2.547 0 0 0 0 0 0 0 +-29.271 -63.325 2.568 0 0 0 0 0 0 0 +-16.774 -36.565 1.569 0 0 0 0 0 0 0 +-16.607 -36.352 1.561 0 0 0 0 0 0 0 +-16.022 -35.362 1.522 0 0 0 0 0 0 0 +-16.502 -36.731 1.571 0 0 0 0 0 0 0 +-15.903 -35.694 1.53 0 0 0 0 0 0 0 +-15.821 -35.813 1.533 0 0 0 0 0 0 0 +-15.849 -36.183 1.545 0 0 0 0 0 0 0 +-15.723 -36.205 1.544 0 0 0 0 0 0 0 +-15.865 -36.69 1.561 0 0 0 0 0 0 0 +-15.295 -35.678 1.522 0 0 0 0 0 0 0 +-17.464 -41.103 1.719 0 0 0 0 0 0 0 +-16.083 -38.182 1.61 0 0 0 0 0 0 0 +-15.649 -37.477 1.582 0 0 0 0 0 0 0 +-14.681 -35.47 1.507 0 0 0 0 0 0 0 +-14.592 -35.57 1.509 0 0 0 0 0 0 0 +-15.392 -37.693 1.586 0 0 0 0 0 0 0 +-14.546 -35.94 1.52 0 0 0 0 0 0 0 +-14.592 -36.716 1.545 0 0 0 0 0 0 0 +-14.204 -36.068 1.52 0 0 0 0 0 0 0 +-14.245 -36.509 1.534 0 0 0 0 0 0 0 +-13.875 -35.894 1.51 0 0 0 0 0 0 0 +-13.818 -35.912 1.51 0 0 0 0 0 0 0 +-13.995 -36.717 1.538 0 0 0 0 0 0 0 +-13.883 -36.77 1.538 0 0 0 0 0 0 0 +-13.781 -36.851 1.54 0 0 0 0 0 0 0 +-13.676 -36.923 1.541 0 0 0 0 0 0 0 +-13.528 -36.879 1.537 0 0 0 0 0 0 0 +-13.479 -37.105 1.544 0 0 0 0 0 0 0 +-13.324 -36.858 1.534 0 0 0 0 0 0 0 +-13.211 -36.909 1.535 0 0 0 0 0 0 0 +-13.083 -36.916 1.534 0 0 0 0 0 0 0 +-16.981 -48.422 1.944 0 0 0 0 0 0 0 +-12.906 -37.156 1.539 0 0 0 0 0 0 0 +-17.574 -51.144 2.038 0 0 0 0 0 0 0 +-16.669 -49.007 1.96 0 0 0 0 0 0 0 +-16.409 -48.492 1.94 0 0 0 0 0 0 0 +-16.697 -49.861 1.987 0 0 0 0 0 0 0 +-16.301 -49.188 1.961 0 0 0 0 0 0 0 +-16.063 -48.984 1.952 0 0 0 0 0 0 0 +-15.824 -48.772 1.943 0 0 0 0 0 0 0 +-15.835 -49.334 1.961 0 0 0 0 0 0 0 +-15.923 -50.151 1.988 0 0 0 0 0 0 0 +-15.584 -49.623 1.968 0 0 0 0 0 0 0 +-15.373 -49.22 1.953 0 0 0 0 0 0 0 +-15.204 -49.222 1.951 0 0 0 0 0 0 0 +-14.984 -49.054 1.944 0 0 0 0 0 0 0 +-14.889 -49.298 1.95 0 0 0 0 0 0 0 +-17.135 -57.399 2.235 0 0 0 0 0 0 0 +-14.325 -48.529 1.92 0 0 0 0 0 0 0 +-14.199 -48.664 1.923 0 0 0 0 0 0 0 +-14.175 -48.867 1.93 0 0 0 0 0 0 0 +-13.991 -48.806 1.926 0 0 0 0 0 0 0 +-19.386 -68.474 2.616 0 0 0 0 0 0 0 +-20.003 -71.517 2.72 0 0 0 0 0 0 0 +-19.59 -70.896 2.696 0 0 0 0 0 0 0 +-18.497 -67.763 2.584 0 0 0 0 0 0 0 +-17.746 -66.239 2.528 0 0 0 0 0 0 0 +-18.034 -68.171 2.594 0 0 0 0 0 0 0 +-1.039 -41.864 1.625 0 0 0 0 0 0 0 +-0.907 -41.823 1.624 0 0 0 0 0 0 0 +-0.573 -30.51 1.241 0 0 0 0 0 0 0 +-0.526 -30.61 1.244 0 0 0 0 0 0 0 +-0.431 -30.712 1.248 0 0 0 0 0 0 0 +-0.336 -30.841 1.252 0 0 0 0 0 0 0 +-0.239 -30.842 1.252 0 0 0 0 0 0 0 +-0.143 -31.062 1.259 0 0 0 0 0 0 0 +-0.046 -31.143 1.262 0 0 0 0 0 0 0 +0.146 -42.084 1.632 0 0 0 0 0 0 0 +0.278 -42.103 1.633 0 0 0 0 0 0 0 +0.411 -42.14 1.634 0 0 0 0 0 0 0 +0.543 -42.135 1.634 0 0 0 0 0 0 0 +0.676 -42.155 1.635 0 0 0 0 0 0 0 +0.808 -42.167 1.635 0 0 0 0 0 0 0 +0.941 -42.162 1.635 0 0 0 0 0 0 0 +1.008 -42.208 1.637 0 0 0 0 0 0 0 +1.141 -42.213 1.637 0 0 0 0 0 0 0 +1.274 -42.233 1.638 0 0 0 0 0 0 0 +1.407 -42.239 1.638 0 0 0 0 0 0 0 +1.541 -42.26 1.639 0 0 0 0 0 0 0 +1.675 -42.273 1.64 0 0 0 0 0 0 0 +1.809 -42.302 1.641 0 0 0 0 0 0 0 +1.942 -42.31 1.641 0 0 0 0 0 0 0 +2.01 -42.332 1.642 0 0 0 0 0 0 0 +2.145 -42.358 1.643 0 0 0 0 0 0 0 +2.278 -42.349 1.643 0 0 0 0 0 0 0 +2.413 -42.381 1.645 0 0 0 0 0 0 0 +2.549 -42.422 1.646 0 0 0 0 0 0 0 +2.683 -42.419 1.646 0 0 0 0 0 0 0 +3.24 -48.739 1.861 0 0 0 0 0 0 0 +3.323 -48.833 1.864 0 0 0 0 0 0 0 +3.983 -55.885 2.104 0 0 0 0 0 0 0 +4.141 -55.635 2.096 0 0 0 0 0 0 0 +4.074 -52.524 1.991 0 0 0 0 0 0 0 +4.228 -52.374 1.986 0 0 0 0 0 0 0 +4.392 -52.36 1.986 0 0 0 0 0 0 0 +4.427 -51.804 1.967 0 0 0 0 0 0 0 +4.556 -51.411 1.954 0 0 0 0 0 0 0 +4.496 -48.996 1.873 0 0 0 0 0 0 0 +4.644 -48.918 1.871 0 0 0 0 0 0 0 +4.802 -48.949 1.872 0 0 0 0 0 0 0 +4.949 -48.862 1.87 0 0 0 0 0 0 0 +5.077 -48.608 1.862 0 0 0 0 0 0 0 +5.229 -48.58 1.861 0 0 0 0 0 0 0 +5.153 -47.185 1.814 0 0 0 0 0 0 0 +5.236 -46.59 1.794 0 0 0 0 0 0 0 +5.367 -46.445 1.79 0 0 0 0 0 0 0 +5.508 -46.386 1.789 0 0 0 0 0 0 0 +5.456 -44.753 1.734 0 0 0 0 0 0 0 +5.543 -44.308 1.719 0 0 0 0 0 0 0 +5.677 -44.252 1.718 0 0 0 0 0 0 0 +5.744 -44.225 1.717 0 0 0 0 0 0 0 +5.682 -42.705 1.666 0 0 0 0 0 0 0 +5.751 -42.21 1.65 0 0 0 0 0 0 0 +5.874 -42.122 1.647 0 0 0 0 0 0 0 +5.96 -41.779 1.636 0 0 0 0 0 0 0 +5.899 -40.449 1.591 0 0 0 0 0 0 0 +5.983 -40.142 1.581 0 0 0 0 0 0 0 +6.042 -40.111 1.581 0 0 0 0 0 0 0 +6.161 -40.046 1.579 0 0 0 0 0 0 0 +3.751 -23.95 1.029 0 0 0 0 0 0 0 +3.84 -24.021 1.032 0 0 0 0 0 0 0 +3.881 -23.798 1.024 0 0 0 0 0 0 0 +3.943 -23.713 1.022 0 0 0 0 0 0 0 +4.017 -23.693 1.022 0 0 0 0 0 0 0 +4.042 -23.619 1.019 0 0 0 0 0 0 0 +4.142 -23.752 1.024 0 0 0 0 0 0 0 +4.246 -23.904 1.03 0 0 0 0 0 0 0 +4.148 -22.939 0.997 0 0 0 0 0 0 0 +4.186 -22.741 0.991 0 0 0 0 0 0 0 +4.258 -22.732 0.991 0 0 0 0 0 0 0 +4.341 -22.781 0.993 0 0 0 0 0 0 0 +4.54 -23.618 1.022 0 0 0 0 0 0 0 +4.548 -23.266 1.011 0 0 0 0 0 0 0 +4.624 -23.264 1.011 0 0 0 0 0 0 0 +4.657 -23.055 1.004 0 0 0 0 0 0 0 +4.676 -22.78 0.995 0 0 0 0 0 0 0 +4.221 -20.255 0.909 0 0 0 0 0 0 0 +4.269 -20.17 0.906 0 0 0 0 0 0 0 +4.377 -20.206 0.908 0 0 0 0 0 0 0 +4.457 -20.268 0.911 0 0 0 0 0 0 0 +4.469 -20.024 0.903 0 0 0 0 0 0 0 +4.543 -20.059 0.905 0 0 0 0 0 0 0 +4.634 -20.165 0.909 0 0 0 0 0 0 0 +4.656 -19.975 0.903 0 0 0 0 0 0 0 +4.732 -20.155 0.909 0 0 0 0 0 0 0 +4.81 -20.204 0.911 0 0 0 0 0 0 0 +4.973 -20.319 0.916 0 0 0 0 0 0 0 +7.432 -29.907 1.251 0 0 0 0 0 0 0 +7.535 -29.919 1.252 0 0 0 0 0 0 0 +7.629 -29.895 1.252 0 0 0 0 0 0 0 +5.169 -20.156 0.913 0 0 0 0 0 0 0 +5.239 -20.169 0.914 0 0 0 0 0 0 0 +5.327 -20.243 0.917 0 0 0 0 0 0 0 +5.421 -20.34 0.921 0 0 0 0 0 0 0 +5.504 -20.395 0.923 0 0 0 0 0 0 0 +5.543 -20.285 0.92 0 0 0 0 0 0 0 +7.672 -27.699 1.181 0 0 0 0 0 0 0 +7.667 -27.512 1.175 0 0 0 0 0 0 0 +7.691 -27.268 1.167 0 0 0 0 0 0 0 +7.735 -27.098 1.162 0 0 0 0 0 0 0 +7.75 -26.834 1.154 0 0 0 0 0 0 0 +7.819 -26.755 1.152 0 0 0 0 0 0 0 +7.899 -26.717 1.151 0 0 0 0 0 0 0 +7.994 -26.729 1.152 0 0 0 0 0 0 0 +8.002 -26.605 1.149 0 0 0 0 0 0 0 +8.078 -26.258 1.138 0 0 0 0 0 0 0 +7.949 -25.557 1.114 0 0 0 0 0 0 0 +7.974 -25.355 1.108 0 0 0 0 0 0 0 +8.001 -25.166 1.102 0 0 0 0 0 0 0 +8.026 -24.973 1.096 0 0 0 0 0 0 0 +8.019 -24.816 1.091 0 0 0 0 0 0 0 +3.445 -10.596 0.586 0 0 0 0 0 0 0 +3.472 -10.566 0.585 0 0 0 0 0 0 0 +3.487 -10.5 0.583 0 0 0 0 0 0 0 +3.511 -10.463 0.582 0 0 0 0 0 0 0 +3.539 -10.438 0.582 0 0 0 0 0 0 0 +3.572 -10.427 0.582 0 0 0 0 0 0 0 +3.599 -10.454 0.583 0 0 0 0 0 0 0 +3.721 -10.697 0.592 0 0 0 0 0 0 0 +3.704 -10.54 0.587 0 0 0 0 0 0 0 +3.736 -10.527 0.587 0 0 0 0 0 0 0 +3.765 -10.504 0.586 0 0 0 0 0 0 0 +3.803 -10.505 0.587 0 0 0 0 0 0 0 +3.77 -10.315 0.58 0 0 0 0 0 0 0 +3.788 -10.312 0.581 0 0 0 0 0 0 0 +3.817 -10.291 0.58 0 0 0 0 0 0 0 +3.867 -10.326 0.582 0 0 0 0 0 0 0 +3.894 -10.301 0.581 0 0 0 0 0 0 0 +8.36 -21.825 0.999 0 0 0 0 0 0 0 +8.299 -21.465 0.987 0 0 0 0 0 0 0 +8.321 -21.323 0.983 0 0 0 0 0 0 0 +8.314 -21.206 0.979 0 0 0 0 0 0 0 +8.323 -21.035 0.974 0 0 0 0 0 0 0 +8.345 -20.899 0.97 0 0 0 0 0 0 0 +8.402 -20.85 0.969 0 0 0 0 0 0 0 +8.473 -20.837 0.97 0 0 0 0 0 0 0 +8.555 -20.853 0.971 0 0 0 0 0 0 0 +8.585 -20.739 0.968 0 0 0 0 0 0 0 +8.576 -20.626 0.964 0 0 0 0 0 0 0 +8.592 -20.483 0.96 0 0 0 0 0 0 0 +8.617 -20.364 0.957 0 0 0 0 0 0 0 +8.55 -20.03 0.946 0 0 0 0 0 0 0 +8.502 -19.748 0.936 0 0 0 0 0 0 0 +8.553 -19.695 0.935 0 0 0 0 0 0 0 +8.619 -19.677 0.936 0 0 0 0 0 0 0 +8.666 -19.7 0.937 0 0 0 0 0 0 0 +8.705 -19.622 0.935 0 0 0 0 0 0 0 +8.723 -19.498 0.931 0 0 0 0 0 0 0 +8.748 -19.39 0.928 0 0 0 0 0 0 0 +8.764 -19.264 0.925 0 0 0 0 0 0 0 +8.787 -19.155 0.922 0 0 0 0 0 0 0 +8.704 -18.819 0.91 0 0 0 0 0 0 0 +8.638 -18.599 0.903 0 0 0 0 0 0 0 +8.664 -18.503 0.9 0 0 0 0 0 0 0 +8.683 -18.394 0.897 0 0 0 0 0 0 0 +8.702 -18.286 0.894 0 0 0 0 0 0 0 +8.716 -18.168 0.891 0 0 0 0 0 0 0 +8.741 -18.074 0.888 0 0 0 0 0 0 0 +8.79 -18.03 0.887 0 0 0 0 0 0 0 +8.777 -17.932 0.884 0 0 0 0 0 0 0 +8.841 -17.921 0.885 0 0 0 0 0 0 0 +8.921 -17.941 0.887 0 0 0 0 0 0 0 +8.93 -17.818 0.883 0 0 0 0 0 0 0 +8.955 -17.73 0.881 0 0 0 0 0 0 0 +8.966 -17.612 0.877 0 0 0 0 0 0 0 +8.954 -17.454 0.872 0 0 0 0 0 0 0 +8.96 -17.399 0.871 0 0 0 0 0 0 0 +9.005 -17.352 0.87 0 0 0 0 0 0 0 +9.078 -17.359 0.872 0 0 0 0 0 0 0 +9.145 -17.355 0.872 0 0 0 0 0 0 0 +9.176 -17.282 0.871 0 0 0 0 0 0 0 +9.19 -17.177 0.868 0 0 0 0 0 0 0 +9.213 -17.09 0.866 0 0 0 0 0 0 0 +9.203 -17.009 0.863 0 0 0 0 0 0 0 +9.212 -16.899 0.86 0 0 0 0 0 0 0 +9.233 -16.811 0.858 0 0 0 0 0 0 0 +9.25 -16.717 0.855 0 0 0 0 0 0 0 +9.267 -16.625 0.853 0 0 0 0 0 0 0 +9.281 -16.528 0.85 0 0 0 0 0 0 0 +9.13 -16.141 0.836 0 0 0 0 0 0 0 +9.121 -16.067 0.834 0 0 0 0 0 0 0 +9.163 -16.023 0.833 0 0 0 0 0 0 0 +9.184 -15.944 0.831 0 0 0 0 0 0 0 +9.2 -15.856 0.829 0 0 0 0 0 0 0 +9.215 -15.769 0.827 0 0 0 0 0 0 0 +9.217 -15.659 0.824 0 0 0 0 0 0 0 +9.205 -15.527 0.819 0 0 0 0 0 0 0 +9.21 -15.48 0.818 0 0 0 0 0 0 0 +9.255 -15.445 0.818 0 0 0 0 0 0 0 +9.311 -15.428 0.818 0 0 0 0 0 0 0 +9.39 -15.448 0.82 0 0 0 0 0 0 0 +9.453 -15.443 0.821 0 0 0 0 0 0 0 +9.501 -15.413 0.821 0 0 0 0 0 0 0 +9.514 -15.325 0.819 0 0 0 0 0 0 0 +9.56 -15.346 0.82 0 0 0 0 0 0 0 +9.539 -15.206 0.816 0 0 0 0 0 0 0 +9.548 -15.115 0.814 0 0 0 0 0 0 0 +9.549 -15.012 0.811 0 0 0 0 0 0 0 +9.556 -14.92 0.808 0 0 0 0 0 0 0 +9.564 -14.83 0.806 0 0 0 0 0 0 0 +9.574 -14.743 0.804 0 0 0 0 0 0 0 +9.585 -14.709 0.803 0 0 0 0 0 0 0 +9.584 -14.509 0.797 0 0 0 0 0 0 0 +9.585 -14.412 0.794 0 0 0 0 0 0 0 +9.394 -14.03 0.78 0 0 0 0 0 0 0 +9.41 -13.959 0.778 0 0 0 0 0 0 0 +9.448 -13.921 0.778 0 0 0 0 0 0 0 +9.451 -13.878 0.777 0 0 0 0 0 0 0 +9.452 -13.786 0.774 0 0 0 0 0 0 0 +9.474 -13.727 0.773 0 0 0 0 0 0 0 +9.489 -13.656 0.771 0 0 0 0 0 0 0 +9.489 -13.565 0.769 0 0 0 0 0 0 0 +9.465 -13.441 0.765 0 0 0 0 0 0 0 +9.482 -13.375 0.764 0 0 0 0 0 0 0 +9.517 -13.336 0.763 0 0 0 0 0 0 0 +9.534 -13.316 0.763 0 0 0 0 0 0 0 +9.597 -13.315 0.764 0 0 0 0 0 0 0 +9.676 -13.336 0.766 0 0 0 0 0 0 0 +9.699 -13.28 0.765 0 0 0 0 0 0 0 +9.712 -13.211 0.764 0 0 0 0 0 0 0 +9.722 -13.137 0.762 0 0 0 0 0 0 0 +9.734 -13.068 0.76 0 0 0 0 0 0 0 +9.726 -13.014 0.759 0 0 0 0 0 0 0 +9.738 -12.945 0.757 0 0 0 0 0 0 0 +9.748 -12.875 0.755 0 0 0 0 0 0 0 +9.76 -12.806 0.754 0 0 0 0 0 0 0 +9.771 -12.737 0.752 0 0 0 0 0 0 0 +9.781 -12.669 0.75 0 0 0 0 0 0 0 +9.776 -12.622 0.749 0 0 0 0 0 0 0 +9.782 -12.547 0.747 0 0 0 0 0 0 0 +9.804 -12.494 0.746 0 0 0 0 0 0 0 +9.799 -12.408 0.744 0 0 0 0 0 0 0 +9.639 -12.128 0.733 0 0 0 0 0 0 0 +9.644 -12.057 0.731 0 0 0 0 0 0 0 +9.684 -12.028 0.731 0 0 0 0 0 0 0 +9.691 -11.999 0.731 0 0 0 0 0 0 0 +9.701 -11.934 0.729 0 0 0 0 0 0 0 +9.713 -11.873 0.728 0 0 0 0 0 0 0 +9.729 -11.816 0.727 0 0 0 0 0 0 0 +9.735 -11.748 0.725 0 0 0 0 0 0 0 +9.745 -11.686 0.724 0 0 0 0 0 0 0 +9.752 -11.62 0.722 0 0 0 0 0 0 0 +9.742 -11.571 0.721 0 0 0 0 0 0 0 +9.741 -11.496 0.719 0 0 0 0 0 0 0 +9.623 -11.286 0.711 0 0 0 0 0 0 0 +9.614 -11.204 0.708 0 0 0 0 0 0 0 +9.623 -11.144 0.707 0 0 0 0 0 0 0 +9.635 -11.086 0.706 0 0 0 0 0 0 0 +9.64 -11.023 0.704 0 0 0 0 0 0 0 +9.659 -10.975 0.703 0 0 0 0 0 0 0 +9.645 -10.924 0.702 0 0 0 0 0 0 0 +9.656 -10.868 0.701 0 0 0 0 0 0 0 +9.666 -10.811 0.7 0 0 0 0 0 0 0 +9.661 -10.737 0.698 0 0 0 0 0 0 0 +9.667 -10.676 0.696 0 0 0 0 0 0 0 +9.687 -10.631 0.695 0 0 0 0 0 0 0 +9.711 -10.59 0.695 0 0 0 0 0 0 0 +9.73 -10.578 0.695 0 0 0 0 0 0 0 +9.77 -10.554 0.695 0 0 0 0 0 0 0 +9.859 -10.583 0.698 0 0 0 0 0 0 0 +9.896 -10.557 0.698 0 0 0 0 0 0 0 +9.905 -10.499 0.697 0 0 0 0 0 0 0 +9.917 -10.447 0.696 0 0 0 0 0 0 0 +9.928 -10.392 0.695 0 0 0 0 0 0 0 +9.923 -10.355 0.694 0 0 0 0 0 0 0 +9.921 -10.288 0.692 0 0 0 0 0 0 0 +9.939 -10.242 0.692 0 0 0 0 0 0 0 +9.945 -10.184 0.69 0 0 0 0 0 0 0 +9.957 -10.133 0.69 0 0 0 0 0 0 0 +9.962 -10.075 0.688 0 0 0 0 0 0 0 +9.955 -10.036 0.687 0 0 0 0 0 0 0 +9.967 -9.985 0.686 0 0 0 0 0 0 0 +9.971 -9.927 0.685 0 0 0 0 0 0 0 +9.987 -9.88 0.684 0 0 0 0 0 0 0 +9.986 -9.818 0.683 0 0 0 0 0 0 0 +10.007 -9.777 0.682 0 0 0 0 0 0 0 +10.008 -9.716 0.681 0 0 0 0 0 0 0 +10.027 -9.674 0.68 0 0 0 0 0 0 0 +10.007 -9.625 0.679 0 0 0 0 0 0 0 +10.026 -9.582 0.678 0 0 0 0 0 0 0 +10.024 -9.52 0.677 0 0 0 0 0 0 0 +10.044 -9.479 0.676 0 0 0 0 0 0 0 +10.044 -9.42 0.675 0 0 0 0 0 0 0 +10.072 -9.387 0.675 0 0 0 0 0 0 0 +10.059 -9.316 0.673 0 0 0 0 0 0 0 +9.941 -9.179 0.667 0 0 0 0 0 0 0 +9.868 -9.054 0.662 0 0 0 0 0 0 0 +9.87 -8.999 0.661 0 0 0 0 0 0 0 +9.895 -8.965 0.661 0 0 0 0 0 0 0 +9.913 -8.925 0.66 0 0 0 0 0 0 0 +9.926 -8.881 0.659 0 0 0 0 0 0 0 +9.928 -8.827 0.658 0 0 0 0 0 0 0 +9.926 -8.797 0.658 0 0 0 0 0 0 0 +9.922 -8.738 0.656 0 0 0 0 0 0 0 +9.943 -8.701 0.656 0 0 0 0 0 0 0 +9.933 -8.637 0.654 0 0 0 0 0 0 0 +9.957 -8.603 0.654 0 0 0 0 0 0 0 +9.95 -8.543 0.653 0 0 0 0 0 0 0 +9.974 -8.51 0.652 0 0 0 0 0 0 0 +9.961 -8.472 0.651 0 0 0 0 0 0 0 +9.983 -8.437 0.651 0 0 0 0 0 0 0 +9.987 -8.386 0.65 0 0 0 0 0 0 0 +10.024 -8.364 0.651 0 0 0 0 0 0 0 +10.035 -8.319 0.65 0 0 0 0 0 0 0 +10.069 -8.294 0.65 0 0 0 0 0 0 0 +10.063 -8.263 0.649 0 0 0 0 0 0 0 +10.101 -8.242 0.65 0 0 0 0 0 0 0 +10.107 -8.193 0.649 0 0 0 0 0 0 0 +10.136 -8.164 0.649 0 0 0 0 0 0 0 +10.144 -8.119 0.648 0 0 0 0 0 0 0 +10.179 -8.094 0.649 0 0 0 0 0 0 0 +10.212 -8.068 0.649 0 0 0 0 0 0 0 +10.285 -8.073 0.651 0 0 0 0 0 0 0 +10.457 -8.181 0.658 0 0 0 0 0 0 0 +10.514 -8.173 0.659 0 0 0 0 0 0 0 +10.532 -8.133 0.659 0 0 0 0 0 0 0 +10.576 -8.115 0.66 0 0 0 0 0 0 0 +10.597 -8.078 0.66 0 0 0 0 0 0 0 +10.619 -8.042 0.66 0 0 0 0 0 0 0 +10.641 -8.006 0.659 0 0 0 0 0 0 0 +10.658 -7.993 0.66 0 0 0 0 0 0 0 +10.687 -7.962 0.66 0 0 0 0 0 0 0 +10.696 -7.917 0.659 0 0 0 0 0 0 0 +10.716 -7.88 0.659 0 0 0 0 0 0 0 +10.748 -7.852 0.659 0 0 0 0 0 0 0 +10.778 -7.821 0.659 0 0 0 0 0 0 0 +10.786 -7.776 0.659 0 0 0 0 0 0 0 +10.792 -7.754 0.658 0 0 0 0 0 0 0 +10.823 -7.725 0.659 0 0 0 0 0 0 0 +10.839 -7.685 0.658 0 0 0 0 0 0 0 +10.879 -7.663 0.659 0 0 0 0 0 0 0 +10.9 -7.626 0.659 0 0 0 0 0 0 0 +10.917 -7.587 0.659 0 0 0 0 0 0 0 +10.936 -7.549 0.658 0 0 0 0 0 0 0 +10.954 -7.537 0.659 0 0 0 0 0 0 0 +10.97 -7.497 0.658 0 0 0 0 0 0 0 +11.003 -7.469 0.659 0 0 0 0 0 0 0 +11.038 -7.442 0.659 0 0 0 0 0 0 0 +11.05 -7.4 0.659 0 0 0 0 0 0 0 +11.053 -7.352 0.658 0 0 0 0 0 0 0 +11.065 -7.309 0.658 0 0 0 0 0 0 0 +10.959 -7.215 0.653 0 0 0 0 0 0 0 +10.848 -7.093 0.647 0 0 0 0 0 0 0 +10.83 -7.033 0.646 0 0 0 0 0 0 0 +10.857 -7.002 0.646 0 0 0 0 0 0 0 +10.88 -6.969 0.646 0 0 0 0 0 0 0 +10.907 -6.938 0.646 0 0 0 0 0 0 0 +10.951 -6.918 0.647 0 0 0 0 0 0 0 +10.957 -6.897 0.647 0 0 0 0 0 0 0 +10.982 -6.865 0.647 0 0 0 0 0 0 0 +11 -6.829 0.647 0 0 0 0 0 0 0 +11.028 -6.798 0.647 0 0 0 0 0 0 0 +11.044 -6.76 0.647 0 0 0 0 0 0 0 +11.077 -6.733 0.647 0 0 0 0 0 0 0 +11.114 -6.707 0.648 0 0 0 0 0 0 0 +11.16 -6.711 0.649 0 0 0 0 0 0 0 +11.199 -6.686 0.65 0 0 0 0 0 0 0 +11.252 -6.671 0.651 0 0 0 0 0 0 0 +11.308 -6.655 0.653 0 0 0 0 0 0 0 +11.356 -6.636 0.654 0 0 0 0 0 0 0 +11.41 -6.619 0.655 0 0 0 0 0 0 0 +11.46 -6.6 0.656 0 0 0 0 0 0 0 +11.498 -6.598 0.657 0 0 0 0 0 0 0 +11.557 -6.584 0.659 0 0 0 0 0 0 0 +11.592 -6.555 0.659 0 0 0 0 0 0 0 +11.64 -6.534 0.661 0 0 0 0 0 0 0 +11.68 -6.508 0.661 0 0 0 0 0 0 0 +11.973 -6.622 0.672 0 0 0 0 0 0 0 +12.057 -6.619 0.674 0 0 0 0 0 0 0 +12.103 -6.619 0.676 0 0 0 0 0 0 0 +12.155 -6.598 0.677 0 0 0 0 0 0 0 +12.218 -6.583 0.678 0 0 0 0 0 0 0 +12.272 -6.562 0.68 0 0 0 0 0 0 0 +12.326 -6.541 0.681 0 0 0 0 0 0 0 +12.375 -6.517 0.682 0 0 0 0 0 0 0 +12.445 -6.504 0.684 0 0 0 0 0 0 0 +12.48 -6.497 0.685 0 0 0 0 0 0 0 +12.54 -6.478 0.686 0 0 0 0 0 0 0 +8.805 -4.523 0.544 0 0 0 0 0 0 0 +8.812 -4.491 0.544 0 0 0 0 0 0 0 +8.824 -4.463 0.544 0 0 0 0 0 0 0 +12.787 -6.403 0.693 0 0 0 0 0 0 0 +12.842 -6.381 0.694 0 0 0 0 0 0 0 +12.892 -6.38 0.696 0 0 0 0 0 0 0 +12.951 -6.359 0.697 0 0 0 0 0 0 0 +13.018 -6.341 0.699 0 0 0 0 0 0 0 +13.063 -6.312 0.7 0 0 0 0 0 0 0 +13.151 -6.304 0.702 0 0 0 0 0 0 0 +13.184 -6.268 0.703 0 0 0 0 0 0 0 +13.171 -6.211 0.702 0 0 0 0 0 0 0 +13.143 -6.173 0.7 0 0 0 0 0 0 0 +13.151 -6.127 0.7 0 0 0 0 0 0 0 +13.17 -6.085 0.7 0 0 0 0 0 0 0 +13.202 -6.05 0.7 0 0 0 0 0 0 0 +13.261 -6.026 0.702 0 0 0 0 0 0 0 +13.347 -6.015 0.704 0 0 0 0 0 0 0 +13.415 -5.995 0.706 0 0 0 0 0 0 0 +13.467 -5.992 0.708 0 0 0 0 0 0 0 +13.537 -5.972 0.709 0 0 0 0 0 0 0 +13.605 -5.951 0.711 0 0 0 0 0 0 0 +13.675 -5.931 0.713 0 0 0 0 0 0 0 +13.74 -5.908 0.715 0 0 0 0 0 0 0 +13.806 -5.885 0.717 0 0 0 0 0 0 0 +13.907 -5.876 0.72 0 0 0 0 0 0 0 +14.155 -5.902 0.728 0 0 0 0 0 0 0 +14.21 -5.872 0.729 0 0 0 0 0 0 0 +14.256 -5.839 0.73 0 0 0 0 0 0 0 +14.306 -5.807 0.731 0 0 0 0 0 0 0 +14.365 -5.778 0.733 0 0 0 0 0 0 0 +14.403 -5.741 0.733 0 0 0 0 0 0 0 +14.453 -5.735 0.735 0 0 0 0 0 0 0 +14.495 -5.699 0.736 0 0 0 0 0 0 0 +14.545 -5.666 0.737 0 0 0 0 0 0 0 +14.594 -5.632 0.738 0 0 0 0 0 0 0 +14.642 -5.597 0.739 0 0 0 0 0 0 0 +14.667 -5.554 0.739 0 0 0 0 0 0 0 +14.677 -5.505 0.739 0 0 0 0 0 0 0 +14.723 -5.496 0.741 0 0 0 0 0 0 0 +14.778 -5.464 0.742 0 0 0 0 0 0 0 +15.091 -5.525 0.753 0 0 0 0 0 0 0 +15.141 -5.489 0.754 0 0 0 0 0 0 0 +15.184 -5.451 0.755 0 0 0 0 0 0 0 +15.247 -5.42 0.756 0 0 0 0 0 0 0 +15.299 -5.384 0.758 0 0 0 0 0 0 0 +15.336 -5.37 0.759 0 0 0 0 0 0 0 +15.393 -5.336 0.76 0 0 0 0 0 0 0 +15.458 -5.304 0.762 0 0 0 0 0 0 0 +15.5 -5.264 0.763 0 0 0 0 0 0 0 +15.55 -5.226 0.764 0 0 0 0 0 0 0 +15.618 -5.194 0.766 0 0 0 0 0 0 0 +15.672 -5.158 0.767 0 0 0 0 0 0 0 +15.709 -5.142 0.768 0 0 0 0 0 0 0 +15.776 -5.11 0.77 0 0 0 0 0 0 0 +15.826 -5.071 0.771 0 0 0 0 0 0 0 +15.886 -5.035 0.773 0 0 0 0 0 0 0 +15.949 -5 0.774 0 0 0 0 0 0 0 +15.978 -4.954 0.775 0 0 0 0 0 0 0 +15.937 -4.886 0.773 0 0 0 0 0 0 0 +15.902 -4.848 0.771 0 0 0 0 0 0 0 +15.913 -4.797 0.771 0 0 0 0 0 0 0 +15.938 -4.75 0.771 0 0 0 0 0 0 0 +15.982 -4.708 0.773 0 0 0 0 0 0 0 +16.11 -4.691 0.776 0 0 0 0 0 0 0 +16.172 -4.654 0.778 0 0 0 0 0 0 0 +16.223 -4.614 0.779 0 0 0 0 0 0 0 +16.284 -4.576 0.781 0 0 0 0 0 0 0 +16.341 -4.564 0.783 0 0 0 0 0 0 0 +16.392 -4.523 0.784 0 0 0 0 0 0 0 +16.453 -4.484 0.786 0 0 0 0 0 0 0 +16.511 -4.444 0.787 0 0 0 0 0 0 0 +16.577 -4.406 0.789 0 0 0 0 0 0 0 +16.618 -4.361 0.79 0 0 0 0 0 0 0 +16.69 -4.323 0.792 0 0 0 0 0 0 0 +16.743 -4.309 0.794 0 0 0 0 0 0 0 +16.805 -4.269 0.795 0 0 0 0 0 0 0 +16.874 -4.23 0.797 0 0 0 0 0 0 0 +16.93 -4.187 0.799 0 0 0 0 0 0 0 +16.978 -4.143 0.8 0 0 0 0 0 0 0 +17.046 -4.102 0.802 0 0 0 0 0 0 0 +17.107 -4.088 0.804 0 0 0 0 0 0 0 +17.17 -4.046 0.806 0 0 0 0 0 0 0 +17.235 -4.005 0.807 0 0 0 0 0 0 0 +17.287 -3.959 0.809 0 0 0 0 0 0 0 +17.356 -3.918 0.811 0 0 0 0 0 0 0 +17.42 -3.875 0.813 0 0 0 0 0 0 0 +17.489 -3.832 0.815 0 0 0 0 0 0 0 +17.527 -3.783 0.815 0 0 0 0 0 0 0 +17.534 -3.756 0.815 0 0 0 0 0 0 0 +17.601 -3.712 0.817 0 0 0 0 0 0 0 +17.977 -3.732 0.83 0 0 0 0 0 0 0 +18.047 -3.687 0.832 0 0 0 0 0 0 0 +18.108 -3.64 0.834 0 0 0 0 0 0 0 +18.18 -3.595 0.836 0 0 0 0 0 0 0 +18.24 -3.548 0.837 0 0 0 0 0 0 0 +18.328 -3.535 0.84 0 0 0 0 0 0 0 +18.376 -3.484 0.842 0 0 0 0 0 0 0 +18.454 -3.439 0.844 0 0 0 0 0 0 0 +18.526 -3.392 0.846 0 0 0 0 0 0 0 +13.788 -2.486 0.683 0 0 0 0 0 0 0 +13.729 -2.431 0.681 0 0 0 0 0 0 0 +13.715 -2.385 0.68 0 0 0 0 0 0 0 +13.687 -2.358 0.679 0 0 0 0 0 0 0 +13.669 -2.31 0.678 0 0 0 0 0 0 0 +13.694 -2.27 0.678 0 0 0 0 0 0 0 +13.679 -2.224 0.678 0 0 0 0 0 0 0 +13.692 -2.182 0.678 0 0 0 0 0 0 0 +13.691 -2.138 0.678 0 0 0 0 0 0 0 +13.705 -2.096 0.678 0 0 0 0 0 0 0 +13.758 -2.082 0.68 0 0 0 0 0 0 0 +13.76 -2.038 0.68 0 0 0 0 0 0 0 +13.818 -2.002 0.681 0 0 0 0 0 0 0 +13.852 -1.962 0.682 0 0 0 0 0 0 0 +19.358 -2.67 0.87 0 0 0 0 0 0 0 +19.402 -2.614 0.871 0 0 0 0 0 0 0 +19.507 -2.565 0.874 0 0 0 0 0 0 0 +19.573 -2.543 0.877 0 0 0 0 0 0 0 +19.531 -2.475 0.875 0 0 0 0 0 0 0 +19.479 -2.406 0.873 0 0 0 0 0 0 0 +19.552 -2.353 0.875 0 0 0 0 0 0 0 +19.589 -2.295 0.876 0 0 0 0 0 0 0 +19.642 -2.239 0.878 0 0 0 0 0 0 0 +19.689 -2.181 0.879 0 0 0 0 0 0 0 +19.744 -2.156 0.881 0 0 0 0 0 0 0 +19.784 -2.097 0.882 0 0 0 0 0 0 0 +19.836 -2.04 0.883 0 0 0 0 0 0 0 +19.878 -1.981 0.885 0 0 0 0 0 0 0 +19.95 -1.925 0.887 0 0 0 0 0 0 0 +19.978 -1.864 0.888 0 0 0 0 0 0 0 +20.028 -1.805 0.889 0 0 0 0 0 0 0 +20.094 -1.779 0.891 0 0 0 0 0 0 0 +24.43 -2.08 1.038 0 0 0 0 0 0 0 +24.452 -2.005 1.039 0 0 0 0 0 0 0 +24.6 -1.939 1.044 0 0 0 0 0 0 0 +24.63 -1.863 1.044 0 0 0 0 0 0 0 +21.194 -1.54 0.928 0 0 0 0 0 0 0 +21.225 -1.475 0.929 0 0 0 0 0 0 0 +21.331 -1.449 0.932 0 0 0 0 0 0 0 +24.449 -1.58 1.038 0 0 0 0 0 0 0 +21.106 -1.301 0.924 0 0 0 0 0 0 0 +21.453 -1.254 0.936 0 0 0 0 0 0 0 +21.529 -1.191 0.938 0 0 0 0 0 0 0 +21.591 -1.126 0.94 0 0 0 0 0 0 0 +21.628 -1.06 0.941 0 0 0 0 0 0 0 +21.5 -1.02 0.937 0 0 0 0 0 0 0 +21.239 -0.941 0.928 0 0 0 0 0 0 0 +21.266 -0.875 0.929 0 0 0 0 0 0 0 +21.205 -0.806 0.927 0 0 0 0 0 0 0 +21.143 -0.737 0.925 0 0 0 0 0 0 0 +21.14 -0.671 0.924 0 0 0 0 0 0 0 +21.16 -0.605 0.925 0 0 0 0 0 0 0 +21.234 -0.573 0.927 0 0 0 0 0 0 0 +21.3 -0.508 0.93 0 0 0 0 0 0 0 +21.362 -0.442 0.932 0 0 0 0 0 0 0 +21.417 -0.376 0.933 0 0 0 0 0 0 0 +21.462 -0.309 0.935 0 0 0 0 0 0 0 +21.529 -0.243 0.937 0 0 0 0 0 0 0 +21.585 -0.175 0.939 0 0 0 0 0 0 0 +21.646 -0.142 0.941 0 0 0 0 0 0 0 +22.224 -0.075 0.961 0 0 0 0 0 0 0 +58.694 0.146 1.821 0 0 0 0 0 0 0 +58.483 0.33 1.816 0 0 0 0 0 0 0 +58.43 0.513 1.814 0 0 0 0 0 0 0 +58.38 0.696 1.813 0 0 0 0 0 0 0 +58.368 0.879 1.813 0 0 0 0 0 0 0 +58.346 0.971 1.812 0 0 0 0 0 0 0 +58.315 1.153 1.811 0 0 0 0 0 0 0 +58.215 1.334 1.809 0 0 0 0 0 0 0 +58.225 1.518 1.809 0 0 0 0 0 0 0 +58.146 1.699 1.807 0 0 0 0 0 0 0 +58.15 1.881 1.807 0 0 0 0 0 0 0 +58.252 2.068 1.81 0 0 0 0 0 0 0 +58.214 2.158 1.809 0 0 0 0 0 0 0 +58.205 2.341 1.809 0 0 0 0 0 0 0 +57.914 2.512 1.801 0 0 0 0 0 0 0 +57.588 2.679 1.793 0 0 0 0 0 0 0 +57.474 2.855 1.79 0 0 0 0 0 0 0 +58.912 3.111 1.83 0 0 0 0 0 0 0 +25.54 1.484 0.912 0 0 0 0 0 0 0 +25.589 1.568 0.913 0 0 0 0 0 0 0 +59.499 3.798 1.847 0 0 0 0 0 0 0 +59.638 3.995 1.851 0 0 0 0 0 0 0 +59.647 4.184 1.852 0 0 0 0 0 0 0 +59.444 4.358 1.846 0 0 0 0 0 0 0 +59.458 4.546 1.847 0 0 0 0 0 0 0 +59.559 4.648 1.85 0 0 0 0 0 0 0 +59.624 4.842 1.852 0 0 0 0 0 0 0 +59.738 5.04 1.856 0 0 0 0 0 0 0 +18.717 1.716 0.725 0 0 0 0 0 0 0 +18.684 1.772 0.724 0 0 0 0 0 0 0 +18.696 1.832 0.725 0 0 0 0 0 0 0 +18.734 1.895 0.726 0 0 0 0 0 0 0 +60.759 6.185 1.887 0 0 0 0 0 0 0 +60.913 6.393 1.892 0 0 0 0 0 0 0 +61.033 6.6 1.895 0 0 0 0 0 0 0 +61.11 6.803 1.898 0 0 0 0 0 0 0 +61.318 7.216 1.905 0 0 0 0 0 0 0 +61.14 7.39 1.901 0 0 0 0 0 0 0 +61.132 7.486 1.901 0 0 0 0 0 0 0 +61.214 7.692 1.904 0 0 0 0 0 0 0 +25.062 3.245 0.903 0 0 0 0 0 0 0 +25.089 3.328 0.904 0 0 0 0 0 0 0 +44.024 5.961 1.429 0 0 0 0 0 0 0 +43.971 6.095 1.428 0 0 0 0 0 0 0 +43.734 6.202 1.422 0 0 0 0 0 0 0 +43.594 6.252 1.419 0 0 0 0 0 0 0 +20.917 3.148 0.79 0 0 0 0 0 0 0 +20.806 3.198 0.787 0 0 0 0 0 0 0 +20.756 3.257 0.786 0 0 0 0 0 0 0 +20.719 3.318 0.785 0 0 0 0 0 0 0 +20.698 3.382 0.785 0 0 0 0 0 0 0 +20.657 3.408 0.784 0 0 0 0 0 0 0 +20.605 3.466 0.783 0 0 0 0 0 0 0 +20.561 3.525 0.782 0 0 0 0 0 0 0 +20.541 3.588 0.782 0 0 0 0 0 0 0 +18.752 3.339 0.732 0 0 0 0 0 0 0 +18.685 3.388 0.73 0 0 0 0 0 0 0 +18.664 3.444 0.73 0 0 0 0 0 0 0 +18.639 3.47 0.73 0 0 0 0 0 0 0 +18.61 3.525 0.729 0 0 0 0 0 0 0 +18.58 3.58 0.729 0 0 0 0 0 0 0 +18.554 3.636 0.728 0 0 0 0 0 0 0 +18.531 3.692 0.728 0 0 0 0 0 0 0 +18.502 3.746 0.727 0 0 0 0 0 0 0 +18.486 3.804 0.727 0 0 0 0 0 0 0 +18.466 3.83 0.727 0 0 0 0 0 0 0 +18.448 3.887 0.727 0 0 0 0 0 0 0 +18.329 3.922 0.724 0 0 0 0 0 0 0 +18.299 3.975 0.723 0 0 0 0 0 0 0 +18.343 4.045 0.725 0 0 0 0 0 0 0 +18.714 4.188 0.736 0 0 0 0 0 0 0 +40.84 9.243 1.359 0 0 0 0 0 0 0 +41.043 9.357 1.365 0 0 0 0 0 0 0 +41.156 9.519 1.369 0 0 0 0 0 0 0 +41.284 9.685 1.374 0 0 0 0 0 0 0 +41.35 9.838 1.377 0 0 0 0 0 0 0 +41.368 9.979 1.378 0 0 0 0 0 0 0 +41.55 10.161 1.384 0 0 0 0 0 0 0 +41.673 10.33 1.388 0 0 0 0 0 0 0 +41.81 10.434 1.393 0 0 0 0 0 0 0 +41.829 10.578 1.394 0 0 0 0 0 0 0 +41.953 10.75 1.399 0 0 0 0 0 0 0 +42.103 10.929 1.404 0 0 0 0 0 0 0 +42.238 11.106 1.409 0 0 0 0 0 0 0 +42.333 11.273 1.412 0 0 0 0 0 0 0 +42.395 11.432 1.415 0 0 0 0 0 0 0 +42.462 11.522 1.418 0 0 0 0 0 0 0 +52.304 14.363 1.699 0 0 0 0 0 0 0 +50.189 13.953 1.64 0 0 0 0 0 0 0 +50.305 14.155 1.645 0 0 0 0 0 0 0 +52.272 14.885 1.702 0 0 0 0 0 0 0 +50.173 14.459 1.643 0 0 0 0 0 0 0 +50.024 14.586 1.64 0 0 0 0 0 0 0 +70.036 20.53 2.214 0 0 0 0 0 0 0 +69.741 20.682 2.207 0 0 0 0 0 0 0 +49.662 14.905 1.633 0 0 0 0 0 0 0 +51.123 15.518 1.677 0 0 0 0 0 0 0 +50.973 15.648 1.674 0 0 0 0 0 0 0 +68.746 21.331 2.186 0 0 0 0 0 0 0 +36.79 11.746 1.27 0 0 0 0 0 0 0 +36.715 11.849 1.269 0 0 0 0 0 0 0 +36.663 11.959 1.268 0 0 0 0 0 0 0 +36.454 12.018 1.263 0 0 0 0 0 0 0 +36.625 12.202 1.269 0 0 0 0 0 0 0 +46.638 15.694 1.561 0 0 0 0 0 0 0 +34.578 11.703 1.212 0 0 0 0 0 0 0 +34.637 11.844 1.214 0 0 0 0 0 0 0 +34.6 11.953 1.214 0 0 0 0 0 0 0 +35.559 12.409 1.244 0 0 0 0 0 0 0 +33.628 11.855 1.188 0 0 0 0 0 0 0 +33.616 11.97 1.189 0 0 0 0 0 0 0 +46.099 16.568 1.555 0 0 0 0 0 0 0 +46.173 16.758 1.558 0 0 0 0 0 0 0 +33.278 12.145 1.182 0 0 0 0 0 0 0 +71.581 26.347 2.305 0 0 0 0 0 0 0 +71.756 26.668 2.312 0 0 0 0 0 0 0 +34.147 12.827 1.211 0 0 0 0 0 0 0 +34.052 12.914 1.209 0 0 0 0 0 0 0 +34.264 13.117 1.217 0 0 0 0 0 0 0 +34.189 13.15 1.215 0 0 0 0 0 0 0 +34.008 13.203 1.211 0 0 0 0 0 0 0 +31.75 12.444 1.146 0 0 0 0 0 0 0 +72.969 28.827 2.364 0 0 0 0 0 0 0 +31.333 12.508 1.136 0 0 0 0 0 0 0 +31.216 12.575 1.133 0 0 0 0 0 0 0 +35.113 14.27 1.25 0 0 0 0 0 0 0 +31.477 12.853 1.143 0 0 0 0 0 0 0 +35.358 14.564 1.259 0 0 0 0 0 0 0 +34.364 14.408 1.233 0 0 0 0 0 0 0 +34.407 14.554 1.235 0 0 0 0 0 0 0 +34.306 14.638 1.234 0 0 0 0 0 0 0 +34.451 14.892 1.24 0 0 0 0 0 0 0 +41.657 18.469 1.461 0 0 0 0 0 0 0 +41.504 18.557 1.458 0 0 0 0 0 0 0 +41.363 18.65 1.455 0 0 0 0 0 0 0 +41.211 18.738 1.453 0 0 0 0 0 0 0 +41.06 18.825 1.45 0 0 0 0 0 0 0 +40.948 18.852 1.447 0 0 0 0 0 0 0 +40.793 18.936 1.444 0 0 0 0 0 0 0 +40.583 18.994 1.44 0 0 0 0 0 0 0 +40.454 19.089 1.438 0 0 0 0 0 0 0 +40.295 19.169 1.435 0 0 0 0 0 0 0 +40.175 19.267 1.433 0 0 0 0 0 0 0 +40.027 19.351 1.43 0 0 0 0 0 0 0 +39.909 19.371 1.428 0 0 0 0 0 0 0 +39.776 19.461 1.425 0 0 0 0 0 0 0 +39.641 19.55 1.423 0 0 0 0 0 0 0 +39.483 19.626 1.42 0 0 0 0 0 0 0 +39.346 19.713 1.418 0 0 0 0 0 0 0 +39.214 19.801 1.416 0 0 0 0 0 0 0 +29.071 14.744 1.104 0 0 0 0 0 0 0 +38.939 19.893 1.41 0 0 0 0 0 0 0 +38.782 19.967 1.407 0 0 0 0 0 0 0 +38.657 20.056 1.405 0 0 0 0 0 0 0 +38.526 20.143 1.403 0 0 0 0 0 0 0 +38.395 20.228 1.401 0 0 0 0 0 0 0 +38.256 20.308 1.399 0 0 0 0 0 0 0 +38.213 20.363 1.398 0 0 0 0 0 0 0 +38.167 20.492 1.399 0 0 0 0 0 0 0 +38.257 20.696 1.404 0 0 0 0 0 0 0 +38.337 20.895 1.408 0 0 0 0 0 0 0 +41.963 23.04 1.524 0 0 0 0 0 0 0 +41.877 23.164 1.524 0 0 0 0 0 0 0 +41.807 23.297 1.524 0 0 0 0 0 0 0 +41.778 23.367 1.524 0 0 0 0 0 0 0 +41.72 23.507 1.524 0 0 0 0 0 0 0 +41.641 23.635 1.524 0 0 0 0 0 0 0 +41.568 23.766 1.524 0 0 0 0 0 0 0 +41.507 23.905 1.525 0 0 0 0 0 0 0 +41.431 24.035 1.525 0 0 0 0 0 0 0 +36.386 21.341 1.368 0 0 0 0 0 0 0 +36.201 21.386 1.364 0 0 0 0 0 0 0 +36.074 21.464 1.362 0 0 0 0 0 0 0 +35.948 21.543 1.36 0 0 0 0 0 0 0 +35.8 21.607 1.358 0 0 0 0 0 0 0 +35.672 21.683 1.356 0 0 0 0 0 0 0 +35.554 21.765 1.354 0 0 0 0 0 0 0 +35.467 21.788 1.352 0 0 0 0 0 0 0 +35.325 21.854 1.35 0 0 0 0 0 0 0 +35.217 21.941 1.349 0 0 0 0 0 0 0 +35.074 22.005 1.346 0 0 0 0 0 0 0 +34.859 22.023 1.342 0 0 0 0 0 0 0 +34.837 22.162 1.343 0 0 0 0 0 0 0 +29.597 18.964 1.175 0 0 0 0 0 0 0 +29.562 19.073 1.175 0 0 0 0 0 0 0 +13.118 8.51 0.638 0 0 0 0 0 0 0 +13.138 8.582 0.64 0 0 0 0 0 0 0 +13.089 8.667 0.64 0 0 0 0 0 0 0 +13.166 8.778 0.643 0 0 0 0 0 0 0 +13.187 8.852 0.645 0 0 0 0 0 0 0 +33.728 22.745 1.326 0 0 0 0 0 0 0 +33.635 22.759 1.325 0 0 0 0 0 0 0 +33.533 22.844 1.324 0 0 0 0 0 0 0 +33.433 22.93 1.323 0 0 0 0 0 0 0 +33.407 23.067 1.324 0 0 0 0 0 0 0 +33.412 23.225 1.327 0 0 0 0 0 0 0 +33.403 23.375 1.329 0 0 0 0 0 0 0 +33.421 23.466 1.331 0 0 0 0 0 0 0 +33.421 23.623 1.333 0 0 0 0 0 0 0 +33.444 23.798 1.337 0 0 0 0 0 0 0 +35.937 25.739 1.423 0 0 0 0 0 0 0 +35.691 25.733 1.418 0 0 0 0 0 0 0 +35.459 25.736 1.413 0 0 0 0 0 0 0 +35.221 25.733 1.407 0 0 0 0 0 0 0 +35.06 25.699 1.403 0 0 0 0 0 0 0 +34.797 25.675 1.397 0 0 0 0 0 0 0 +34.581 25.684 1.392 0 0 0 0 0 0 0 +34.329 25.665 1.386 0 0 0 0 0 0 0 +33.833 25.46 1.372 0 0 0 0 0 0 0 +33.62 25.466 1.368 0 0 0 0 0 0 0 +33.418 25.479 1.363 0 0 0 0 0 0 0 +30.909 23.645 1.278 0 0 0 0 0 0 0 +33.356 25.681 1.365 0 0 0 0 0 0 0 +17.347 13.459 0.812 0 0 0 0 0 0 0 +6.741 5.284 0.444 0 0 0 0 0 0 0 +6.704 5.289 0.443 0 0 0 0 0 0 0 +6.681 5.305 0.443 0 0 0 0 0 0 0 +6.667 5.329 0.443 0 0 0 0 0 0 0 +6.669 5.365 0.444 0 0 0 0 0 0 0 +6.716 5.419 0.446 0 0 0 0 0 0 0 +6.804 5.525 0.449 0 0 0 0 0 0 0 +6.737 5.506 0.448 0 0 0 0 0 0 0 +6.725 5.531 0.448 0 0 0 0 0 0 0 +6.707 5.552 0.448 0 0 0 0 0 0 0 +6.697 5.58 0.448 0 0 0 0 0 0 0 +6.701 5.619 0.449 0 0 0 0 0 0 0 +6.732 5.663 0.45 0 0 0 0 0 0 0 +6.731 5.698 0.451 0 0 0 0 0 0 0 +6.749 5.749 0.452 0 0 0 0 0 0 0 +6.75 5.787 0.453 0 0 0 0 0 0 0 +6.737 5.812 0.453 0 0 0 0 0 0 0 +6.721 5.836 0.453 0 0 0 0 0 0 0 +6.697 5.851 0.453 0 0 0 0 0 0 0 +6.719 5.889 0.454 0 0 0 0 0 0 0 +6.699 5.909 0.454 0 0 0 0 0 0 0 +11.505 10.187 0.631 0 0 0 0 0 0 0 +11.486 10.235 0.631 0 0 0 0 0 0 0 +15.945 14.285 0.797 0 0 0 0 0 0 0 +11.472 10.353 0.633 0 0 0 0 0 0 0 +11.171 10.146 0.623 0 0 0 0 0 0 0 +11.179 10.185 0.624 0 0 0 0 0 0 0 +11.139 10.213 0.624 0 0 0 0 0 0 0 +15.799 14.562 0.799 0 0 0 0 0 0 0 +16.414 15.223 0.824 0 0 0 0 0 0 0 +16.294 15.207 0.821 0 0 0 0 0 0 0 +10.907 10.255 0.62 0 0 0 0 0 0 0 +11.535 10.912 0.645 0 0 0 0 0 0 0 +16.071 15.237 0.817 0 0 0 0 0 0 0 +10.708 10.293 0.617 0 0 0 0 0 0 0 +10.768 10.415 0.62 0 0 0 0 0 0 0 +10.804 10.516 0.623 0 0 0 0 0 0 0 +16.116 15.767 0.828 0 0 0 0 0 0 0 +11.199 11.072 0.641 0 0 0 0 0 0 0 +11.183 11.125 0.642 0 0 0 0 0 0 0 +15.977 15.979 0.83 0 0 0 0 0 0 0 +15.664 15.765 0.819 0 0 0 0 0 0 0 +15.671 15.871 0.821 0 0 0 0 0 0 0 +15.532 15.831 0.818 0 0 0 0 0 0 0 +15.641 16.041 0.824 0 0 0 0 0 0 0 +32.752 33.655 1.499 0 0 0 0 0 0 0 +32.586 33.696 1.497 0 0 0 0 0 0 0 +32.503 33.822 1.498 0 0 0 0 0 0 0 +32.455 33.985 1.5 0 0 0 0 0 0 0 +14.817 15.634 0.801 0 0 0 0 0 0 0 +14.881 15.8 0.805 0 0 0 0 0 0 0 +32.34 34.51 1.508 0 0 0 0 0 0 0 +32.355 34.635 1.511 0 0 0 0 0 0 0 +14.528 15.77 0.798 0 0 0 0 0 0 0 +32.321 35.258 1.523 0 0 0 0 0 0 0 +32.254 35.408 1.525 0 0 0 0 0 0 0 +32.198 35.57 1.527 0 0 0 0 0 0 0 +32.233 35.834 1.533 0 0 0 0 0 0 0 +32.282 36.002 1.537 0 0 0 0 0 0 0 +32.218 36.159 1.539 0 0 0 0 0 0 0 +32.147 36.308 1.541 0 0 0 0 0 0 0 +32.083 36.466 1.543 0 0 0 0 0 0 0 +32.009 36.613 1.545 0 0 0 0 0 0 0 +29.506 33.968 1.445 0 0 0 0 0 0 0 +31.883 36.934 1.549 0 0 0 0 0 0 0 +31.868 37.034 1.551 0 0 0 0 0 0 0 +31.69 37.063 1.549 0 0 0 0 0 0 0 +31.581 37.171 1.549 0 0 0 0 0 0 0 +31.507 37.321 1.551 0 0 0 0 0 0 0 +19.774 23.587 1.054 0 0 0 0 0 0 0 +19.598 23.528 1.05 0 0 0 0 0 0 0 +19.809 23.932 1.062 0 0 0 0 0 0 0 +19.634 23.874 1.058 0 0 0 0 0 0 0 +19.474 23.755 1.053 0 0 0 0 0 0 0 +19.341 23.745 1.05 0 0 0 0 0 0 0 +19.05 23.538 1.041 0 0 0 0 0 0 0 +18.949 23.565 1.04 0 0 0 0 0 0 0 +18.525 23.188 1.024 0 0 0 0 0 0 0 +18.197 22.925 1.013 0 0 0 0 0 0 0 +18.502 23.459 1.03 0 0 0 0 0 0 0 +18.302 23.281 1.022 0 0 0 0 0 0 0 +17.917 22.94 1.008 0 0 0 0 0 0 0 +17.856 23.01 1.009 0 0 0 0 0 0 0 +17.924 23.248 1.015 0 0 0 0 0 0 0 +30.454 39.728 1.584 0 0 0 0 0 0 0 +17.479 22.969 1.002 0 0 0 0 0 0 0 +17.489 23.057 1.004 0 0 0 0 0 0 0 +17.396 23.085 1.003 0 0 0 0 0 0 0 +30.151 40.241 1.59 0 0 0 0 0 0 0 +18.386 24.717 1.055 0 0 0 0 0 0 0 +18.212 24.807 1.054 0 0 0 0 0 0 0 +29.767 40.786 1.596 0 0 0 0 0 0 0 +29.771 40.927 1.599 0 0 0 0 0 0 0 +29.673 41.062 1.601 0 0 0 0 0 0 0 +29.589 41.218 1.603 0 0 0 0 0 0 0 +29.511 41.383 1.605 0 0 0 0 0 0 0 +32.917 46.462 1.773 0 0 0 0 0 0 0 +28.028 39.833 1.547 0 0 0 0 0 0 0 +27.035 38.681 1.505 0 0 0 0 0 0 0 +26.893 38.736 1.504 0 0 0 0 0 0 0 +26.876 38.841 1.506 0 0 0 0 0 0 0 +26.804 38.999 1.509 0 0 0 0 0 0 0 +27.08 39.666 1.528 0 0 0 0 0 0 0 +26.982 39.791 1.53 0 0 0 0 0 0 0 +26.997 40.082 1.537 0 0 0 0 0 0 0 +26.929 40.253 1.539 0 0 0 0 0 0 0 +26.898 40.483 1.544 0 0 0 0 0 0 0 +26.551 40.097 1.53 0 0 0 0 0 0 0 +26.333 40.041 1.525 0 0 0 0 0 0 0 +28.398 43.473 1.635 0 0 0 0 0 0 0 +28.296 43.616 1.637 0 0 0 0 0 0 0 +28.212 43.787 1.64 0 0 0 0 0 0 0 +28.113 43.936 1.642 0 0 0 0 0 0 0 +28.02 44.095 1.644 0 0 0 0 0 0 0 +18.446 29.247 1.159 0 0 0 0 0 0 0 +18.385 29.252 1.158 0 0 0 0 0 0 0 +18.276 29.282 1.157 0 0 0 0 0 0 0 +18.304 29.533 1.163 0 0 0 0 0 0 0 +25.903 42.068 1.566 0 0 0 0 0 0 0 +26.551 46.315 1.676 0 0 0 0 0 0 0 +26.432 46.444 1.677 0 0 0 0 0 0 0 +26.31 46.57 1.678 0 0 0 0 0 0 0 +26.193 46.705 1.68 0 0 0 0 0 0 0 +26.091 46.867 1.683 0 0 0 0 0 0 0 +25.969 46.994 1.684 0 0 0 0 0 0 0 +25.852 47.132 1.686 0 0 0 0 0 0 0 +12.656 23.187 0.934 0 0 0 0 0 0 0 +12.415 22.918 0.925 0 0 0 0 0 0 0 +12.403 23.068 0.928 0 0 0 0 0 0 0 +12.399 23.235 0.932 0 0 0 0 0 0 0 +12.401 23.415 0.937 0 0 0 0 0 0 0 +12.41 23.612 0.942 0 0 0 0 0 0 0 +12.418 23.806 0.946 0 0 0 0 0 0 0 +25.118 48.283 1.704 0 0 0 0 0 0 0 +24.941 48.312 1.703 0 0 0 0 0 0 0 +24.817 48.445 1.704 0 0 0 0 0 0 0 +24.647 48.487 1.703 0 0 0 0 0 0 0 +18.12 35.94 1.315 0 0 0 0 0 0 0 +14.802 29.601 1.118 0 0 0 0 0 0 0 +14.69 29.61 1.117 0 0 0 0 0 0 0 +24.332 49.2 1.717 0 0 0 0 0 0 0 +14.732 30.287 1.134 0 0 0 0 0 0 0 +14.558 30.171 1.129 0 0 0 0 0 0 0 +17.499 36.548 1.322 0 0 0 0 0 0 0 +17.344 36.518 1.319 0 0 0 0 0 0 0 +17.264 36.644 1.322 0 0 0 0 0 0 0 +16.555 35.287 1.28 0 0 0 0 0 0 0 +14.235 30.599 1.136 0 0 0 0 0 0 0 +14.083 30.523 1.132 0 0 0 0 0 0 0 +16.1 35.174 1.272 0 0 0 0 0 0 0 +13.612 30.248 1.12 0 0 0 0 0 0 0 +15.847 35.502 1.277 0 0 0 0 0 0 0 +13.227 29.895 1.107 0 0 0 0 0 0 0 +14.883 34.063 1.23 0 0 0 0 0 0 0 +15.483 35.738 1.279 0 0 0 0 0 0 0 +14.698 34.224 1.232 0 0 0 0 0 0 0 +15.149 35.579 1.271 0 0 0 0 0 0 0 +15.522 36.772 1.305 0 0 0 0 0 0 0 +15.088 36.062 1.283 0 0 0 0 0 0 0 +14.962 35.92 1.278 0 0 0 0 0 0 0 +14.633 35.442 1.262 0 0 0 0 0 0 0 +14.599 35.679 1.268 0 0 0 0 0 0 0 +14.571 35.932 1.274 0 0 0 0 0 0 0 +14.364 35.744 1.267 0 0 0 0 0 0 0 +14.75 37.036 1.304 0 0 0 0 0 0 0 +14.682 37.205 1.308 0 0 0 0 0 0 0 +20.63 52.491 1.758 0 0 0 0 0 0 0 +20.476 52.583 1.759 0 0 0 0 0 0 0 +20.329 52.694 1.761 0 0 0 0 0 0 0 +20.184 52.812 1.762 0 0 0 0 0 0 0 +20.035 52.92 1.763 0 0 0 0 0 0 0 +19.889 53.038 1.765 0 0 0 0 0 0 0 +19.734 53.131 1.766 0 0 0 0 0 0 0 +19.673 53.222 1.768 0 0 0 0 0 0 0 +19.525 53.336 1.769 0 0 0 0 0 0 0 +19.379 53.459 1.771 0 0 0 0 0 0 0 +19.222 53.549 1.772 0 0 0 0 0 0 0 +19.073 53.662 1.774 0 0 0 0 0 0 0 +18.911 53.743 1.774 0 0 0 0 0 0 0 +18.76 53.853 1.776 0 0 0 0 0 0 0 +18.693 53.931 1.777 0 0 0 0 0 0 0 +18.541 54.043 1.779 0 0 0 0 0 0 0 +18.391 54.157 1.78 0 0 0 0 0 0 0 +18.231 54.247 1.781 0 0 0 0 0 0 0 +18.078 54.357 1.783 0 0 0 0 0 0 0 +18.049 54.843 1.795 0 0 0 0 0 0 0 +16.843 51.729 1.703 0 0 0 0 0 0 0 +18.26 56.677 1.845 0 0 0 0 0 0 0 +18.458 57.602 1.871 0 0 0 0 0 0 0 +18.583 58.622 1.898 0 0 0 0 0 0 0 +18.704 59.653 1.926 0 0 0 0 0 0 0 +18.806 60.645 1.953 0 0 0 0 0 0 0 +18.925 61.709 1.982 0 0 0 0 0 0 0 +19.036 62.773 2.011 0 0 0 0 0 0 0 +19.13 63.803 2.039 0 0 0 0 0 0 0 +12.633 42.406 1.424 0 0 0 0 0 0 0 +19.525 66.251 2.106 0 0 0 0 0 0 0 +19.626 67.374 2.137 0 0 0 0 0 0 0 +19.612 68.121 2.156 0 0 0 0 0 0 0 +19.609 68.922 2.178 0 0 0 0 0 0 0 +19.43 69.118 2.181 0 0 0 0 0 0 0 +19.249 69.306 2.185 0 0 0 0 0 0 0 +19.313 69.964 2.203 0 0 0 0 0 0 0 +13.613 52.543 1.7 0 0 0 0 0 0 0 +13.326 52.109 1.687 0 0 0 0 0 0 0 +16.216 72.829 2.259 0 0 0 0 0 0 0 +15.984 72.866 2.258 0 0 0 0 0 0 0 +2.607 12.852 0.569 0 0 0 0 0 0 0 +2.564 12.846 0.569 0 0 0 0 0 0 0 +3.405 17.583 0.701 0 0 0 0 0 0 0 +3.315 17.415 0.696 0 0 0 0 0 0 0 +0.606 3.566 0.308 0 0 0 0 0 0 0 +0.591 3.546 0.307 0 0 0 0 0 0 0 +0.571 3.497 0.306 0 0 0 0 0 0 0 +0.56 3.499 0.306 0 0 0 0 0 0 0 +0.553 3.494 0.306 0 0 0 0 0 0 0 +0.544 3.507 0.306 0 0 0 0 0 0 0 +0.53 3.489 0.306 0 0 0 0 0 0 0 +0.522 3.508 0.306 0 0 0 0 0 0 0 +0.511 3.51 0.306 0 0 0 0 0 0 0 +0.5 3.514 0.306 0 0 0 0 0 0 0 +0.497 3.567 0.308 0 0 0 0 0 0 0 +0.496 3.643 0.31 0 0 0 0 0 0 0 +0.477 3.545 0.307 0 0 0 0 0 0 0 +0.462 3.525 0.306 0 0 0 0 0 0 0 +0.456 3.56 0.307 0 0 0 0 0 0 0 +-0.042 33.456 1.128 0 0 0 0 0 0 0 +-0.185 30.606 1.05 0 0 0 0 0 0 0 +-0.274 29.808 1.028 0 0 0 0 0 0 0 +-0.36 29.069 1.007 0 0 0 0 0 0 0 +-0.441 28.402 0.989 0 0 0 0 0 0 0 +-0.52 27.809 0.973 0 0 0 0 0 0 0 +-0.595 27.204 0.956 0 0 0 0 0 0 0 +-0.667 26.656 0.941 0 0 0 0 0 0 0 +-0.738 26.17 0.928 0 0 0 0 0 0 0 +-0.763 25.633 0.913 0 0 0 0 0 0 0 +-0.828 25.141 0.9 0 0 0 0 0 0 0 +-0.891 24.673 0.887 0 0 0 0 0 0 0 +-0.952 24.235 0.875 0 0 0 0 0 0 0 +-1.01 23.79 0.863 0 0 0 0 0 0 0 +-1.068 23.413 0.853 0 0 0 0 0 0 0 +-1.136 23.298 0.85 0 0 0 0 0 0 0 +-1.137 22.571 0.83 0 0 0 0 0 0 0 +-1.188 22.19 0.819 0 0 0 0 0 0 0 +-1.238 21.823 0.809 0 0 0 0 0 0 0 +-1.286 21.468 0.8 0 0 0 0 0 0 0 +-1.332 21.125 0.79 0 0 0 0 0 0 0 +-1.377 20.791 0.781 0 0 0 0 0 0 0 +-1.421 20.477 0.773 0 0 0 0 0 0 0 +-1.43 20.144 0.764 0 0 0 0 0 0 0 +-1.484 20.01 0.76 0 0 0 0 0 0 0 +-1.523 19.694 0.751 0 0 0 0 0 0 0 +-1.553 19.283 0.74 0 0 0 0 0 0 0 +-1.592 19.013 0.733 0 0 0 0 0 0 0 +-1.629 18.741 0.726 0 0 0 0 0 0 0 +-1.664 18.473 0.718 0 0 0 0 0 0 0 +-1.671 18.219 0.711 0 0 0 0 0 0 0 +-1.703 17.947 0.704 0 0 0 0 0 0 0 +-1.738 17.719 0.698 0 0 0 0 0 0 0 +-1.77 17.48 0.691 0 0 0 0 0 0 0 +-1.917 16.127 0.655 0 0 0 0 0 0 0 +-1.947 15.952 0.65 0 0 0 0 0 0 0 +-2.117 14.16 0.602 0 0 0 0 0 0 0 +-2.168 14.2 0.603 0 0 0 0 0 0 0 +-3.474 21.7 0.812 0 0 0 0 0 0 0 +-3.506 21.464 0.806 0 0 0 0 0 0 0 +-3.541 21.259 0.801 0 0 0 0 0 0 0 +-3.575 21.055 0.795 0 0 0 0 0 0 0 +-3.605 20.833 0.79 0 0 0 0 0 0 0 +-3.635 20.619 0.784 0 0 0 0 0 0 0 +-3.638 20.447 0.779 0 0 0 0 0 0 0 +-3.596 19.846 0.763 0 0 0 0 0 0 0 +-2.338 12.401 0.555 0 0 0 0 0 0 0 +-2.374 12.382 0.555 0 0 0 0 0 0 0 +-2.507 12.647 0.563 0 0 0 0 0 0 0 +-3.805 19.104 0.744 0 0 0 0 0 0 0 +-2.538 12.49 0.559 0 0 0 0 0 0 0 +-2.581 12.502 0.559 0 0 0 0 0 0 0 +-2.619 12.49 0.559 0 0 0 0 0 0 0 +-2.648 12.433 0.558 0 0 0 0 0 0 0 +-2.66 12.297 0.554 0 0 0 0 0 0 0 +-2.66 12.109 0.549 0 0 0 0 0 0 0 +-2.667 12.05 0.548 0 0 0 0 0 0 0 +-2.682 11.938 0.545 0 0 0 0 0 0 0 +-2.697 11.834 0.542 0 0 0 0 0 0 0 +-2.715 11.742 0.54 0 0 0 0 0 0 0 +-2.542 10.828 0.514 0 0 0 0 0 0 0 +-2.514 10.557 0.507 0 0 0 0 0 0 0 +-2.587 10.716 0.512 0 0 0 0 0 0 0 +-2.614 10.681 0.511 0 0 0 0 0 0 0 +-2.788 9.06 0.469 0 0 0 0 0 0 0 +-2.816 9.049 0.469 0 0 0 0 0 0 0 +-2.816 8.999 0.468 0 0 0 0 0 0 0 +-2.809 8.879 0.465 0 0 0 0 0 0 0 +-2.837 8.87 0.465 0 0 0 0 0 0 0 +-2.856 8.833 0.464 0 0 0 0 0 0 0 +-2.868 8.774 0.462 0 0 0 0 0 0 0 +-2.837 8.587 0.457 0 0 0 0 0 0 0 +-2.922 8.661 0.46 0 0 0 0 0 0 0 +-2.948 8.695 0.461 0 0 0 0 0 0 0 +-2.962 8.646 0.46 0 0 0 0 0 0 0 +-2.965 8.566 0.458 0 0 0 0 0 0 0 +-2.979 8.519 0.457 0 0 0 0 0 0 0 +-2.997 8.485 0.456 0 0 0 0 0 0 0 +-3.012 8.442 0.455 0 0 0 0 0 0 0 +-3.029 8.408 0.454 0 0 0 0 0 0 0 +-3.032 8.375 0.453 0 0 0 0 0 0 0 +-3.045 8.328 0.452 0 0 0 0 0 0 0 +-3.064 8.299 0.452 0 0 0 0 0 0 0 +-3.075 8.247 0.45 0 0 0 0 0 0 0 +-3.09 8.209 0.45 0 0 0 0 0 0 0 +-3.107 8.177 0.449 0 0 0 0 0 0 0 +-3.117 8.124 0.448 0 0 0 0 0 0 0 +-3.119 8.093 0.447 0 0 0 0 0 0 0 +-3.14 8.07 0.447 0 0 0 0 0 0 0 +-3.149 8.019 0.445 0 0 0 0 0 0 0 +-3.166 7.987 0.445 0 0 0 0 0 0 0 +-3.18 7.951 0.444 0 0 0 0 0 0 0 +-3.19 7.902 0.443 0 0 0 0 0 0 0 +-3.2 7.855 0.442 0 0 0 0 0 0 0 +-3.204 7.829 0.441 0 0 0 0 0 0 0 +-3.215 7.786 0.44 0 0 0 0 0 0 0 +-3.777 9.078 0.479 0 0 0 0 0 0 0 +-3.813 9.085 0.479 0 0 0 0 0 0 0 +-3.928 9.277 0.485 0 0 0 0 0 0 0 +-3.25 7.532 0.434 0 0 0 0 0 0 0 +-3.282 7.542 0.435 0 0 0 0 0 0 0 +-3.207 7.335 0.429 0 0 0 0 0 0 0 +-3.309 7.506 0.434 0 0 0 0 0 0 0 +-3.417 7.622 0.438 0 0 0 0 0 0 0 +-3.447 7.624 0.439 0 0 0 0 0 0 0 +-3.483 7.641 0.439 0 0 0 0 0 0 0 +-3.509 7.635 0.44 0 0 0 0 0 0 0 +-3.53 7.648 0.44 0 0 0 0 0 0 0 +-3.558 7.646 0.44 0 0 0 0 0 0 0 +-3.59 7.653 0.441 0 0 0 0 0 0 0 +-3.621 7.656 0.441 0 0 0 0 0 0 0 +-3.653 7.661 0.442 0 0 0 0 0 0 0 +-3.684 7.664 0.442 0 0 0 0 0 0 0 +-3.715 7.667 0.443 0 0 0 0 0 0 0 +-3.733 7.673 0.443 0 0 0 0 0 0 0 +-3.767 7.681 0.444 0 0 0 0 0 0 0 +-3.797 7.682 0.444 0 0 0 0 0 0 0 +-3.831 7.69 0.445 0 0 0 0 0 0 0 +-3.862 7.692 0.445 0 0 0 0 0 0 0 +-3.896 7.7 0.446 0 0 0 0 0 0 0 +-3.925 7.696 0.446 0 0 0 0 0 0 0 +-3.944 7.704 0.446 0 0 0 0 0 0 0 +-3.977 7.71 0.447 0 0 0 0 0 0 0 +-4.01 7.713 0.447 0 0 0 0 0 0 0 +-4.046 7.724 0.448 0 0 0 0 0 0 0 +-4.078 7.725 0.449 0 0 0 0 0 0 0 +-4.109 7.724 0.449 0 0 0 0 0 0 0 +-4.143 7.731 0.45 0 0 0 0 0 0 0 +-4.172 7.727 0.45 0 0 0 0 0 0 0 +-4.197 7.745 0.451 0 0 0 0 0 0 0 +-4.228 7.744 0.451 0 0 0 0 0 0 0 +-4.267 7.757 0.452 0 0 0 0 0 0 0 +-4.297 7.754 0.452 0 0 0 0 0 0 0 +-4.331 7.758 0.453 0 0 0 0 0 0 0 +-4.363 7.756 0.453 0 0 0 0 0 0 0 +-4.4 7.765 0.454 0 0 0 0 0 0 0 +-4.419 7.771 0.454 0 0 0 0 0 0 0 +-4.455 7.778 0.455 0 0 0 0 0 0 0 +-4.488 7.779 0.455 0 0 0 0 0 0 0 +-4.522 7.781 0.456 0 0 0 0 0 0 0 +-4.557 7.785 0.457 0 0 0 0 0 0 0 +-4.592 7.788 0.457 0 0 0 0 0 0 0 +-4.632 7.801 0.458 0 0 0 0 0 0 0 +-4.663 7.797 0.458 0 0 0 0 0 0 0 +-4.689 7.812 0.459 0 0 0 0 0 0 0 +-4.722 7.813 0.459 0 0 0 0 0 0 0 +-4.752 7.806 0.46 0 0 0 0 0 0 0 +-4.794 7.82 0.461 0 0 0 0 0 0 0 +-4.83 7.824 0.461 0 0 0 0 0 0 0 +-4.866 7.828 0.462 0 0 0 0 0 0 0 +-4.905 7.834 0.463 0 0 0 0 0 0 0 +-4.925 7.84 0.463 0 0 0 0 0 0 0 +-5.072 8.019 0.469 0 0 0 0 0 0 0 +-7.134 11.22 0.574 0 0 0 0 0 0 0 +-5.044 7.81 0.464 0 0 0 0 0 0 0 +-4.982 7.659 0.46 0 0 0 0 0 0 0 +-5.003 7.612 0.459 0 0 0 0 0 0 0 +-41.134 62.508 2.265 0 0 0 0 0 0 0 +-41.431 62.53 2.27 0 0 0 0 0 0 0 +-17.099 25.604 1.055 0 0 0 0 0 0 0 +-17.124 25.467 1.052 0 0 0 0 0 0 0 +-5.466 7.961 0.474 0 0 0 0 0 0 0 +-5.388 7.794 0.469 0 0 0 0 0 0 0 +-5.517 7.928 0.474 0 0 0 0 0 0 0 +-5.565 7.944 0.475 0 0 0 0 0 0 0 +-5.587 7.923 0.475 0 0 0 0 0 0 0 +-41.499 58.746 2.185 0 0 0 0 0 0 0 +-41.666 58.591 2.184 0 0 0 0 0 0 0 +-41.907 58.539 2.187 0 0 0 0 0 0 0 +-45.086 62.774 2.332 0 0 0 0 0 0 0 +-45.276 62.622 2.332 0 0 0 0 0 0 0 +-45.751 62.863 2.345 0 0 0 0 0 0 0 +-21.986 29.988 1.23 0 0 0 0 0 0 0 +-18.472 25.023 1.063 0 0 0 0 0 0 0 +-47.243 63.645 2.387 0 0 0 0 0 0 0 +-22.337 29.872 1.234 0 0 0 0 0 0 0 +-22.366 29.813 1.233 0 0 0 0 0 0 0 +-48.331 63.636 2.404 0 0 0 0 0 0 0 +-22.626 29.574 1.232 0 0 0 0 0 0 0 +-48.6 63.163 2.399 0 0 0 0 0 0 0 +-48.735 62.928 2.396 0 0 0 0 0 0 0 +-48.866 62.689 2.393 0 0 0 0 0 0 0 +-49.085 62.766 2.398 0 0 0 0 0 0 0 +-16.858 20.252 0.933 0 0 0 0 0 0 0 +-16.946 20.228 0.934 0 0 0 0 0 0 0 +-16.841 19.975 0.927 0 0 0 0 0 0 0 +-44.871 51.456 2.085 0 0 0 0 0 0 0 +-44.873 51.133 2.078 0 0 0 0 0 0 0 +-45.024 50.981 2.078 0 0 0 0 0 0 0 +-45.168 50.822 2.077 0 0 0 0 0 0 0 +-44.933 50.397 2.064 0 0 0 0 0 0 0 +-45.18 50.355 2.068 0 0 0 0 0 0 0 +-45.92 50.857 2.091 0 0 0 0 0 0 0 +-46.001 50.627 2.088 0 0 0 0 0 0 0 +-46.362 50.703 2.096 0 0 0 0 0 0 0 +-44.737 48.616 2.024 0 0 0 0 0 0 0 +-44.726 48.3 2.017 0 0 0 0 0 0 0 +-21.052 22.5 1.055 0 0 0 0 0 0 0 +-20.961 22.262 1.049 0 0 0 0 0 0 0 +-46.201 48.806 2.055 0 0 0 0 0 0 0 +-21.538 22.447 1.063 0 0 0 0 0 0 0 +-21.626 22.398 1.064 0 0 0 0 0 0 0 +-21.635 22.337 1.063 0 0 0 0 0 0 0 +-21.673 22.236 1.062 0 0 0 0 0 0 0 +-21.531 21.952 1.054 0 0 0 0 0 0 0 +-21.95 22.239 1.067 0 0 0 0 0 0 0 +-22.186 22.337 1.074 0 0 0 0 0 0 0 +-18.665 18.552 0.932 0 0 0 0 0 0 0 +-18.752 18.58 0.934 0 0 0 0 0 0 0 +-18.721 18.433 0.931 0 0 0 0 0 0 0 +-18.783 18.378 0.931 0 0 0 0 0 0 0 +-18.982 18.457 0.936 0 0 0 0 0 0 0 +-43.866 41.77 1.873 0 0 0 0 0 0 0 +-43.997 41.632 1.873 0 0 0 0 0 0 0 +-44.178 41.541 1.875 0 0 0 0 0 0 0 +-44.43 41.516 1.879 0 0 0 0 0 0 0 +-19.348 17.945 0.934 0 0 0 0 0 0 0 +-19.307 17.795 0.93 0 0 0 0 0 0 0 +-19.23 17.612 0.925 0 0 0 0 0 0 0 +-19.372 17.575 0.927 0 0 0 0 0 0 0 +-19.464 17.548 0.929 0 0 0 0 0 0 0 +-35.944 32.23 1.535 0 0 0 0 0 0 0 +-36.017 32.092 1.534 0 0 0 0 0 0 0 +-36.059 31.927 1.532 0 0 0 0 0 0 0 +-36.094 31.755 1.53 0 0 0 0 0 0 0 +-17.464 15.25 0.846 0 0 0 0 0 0 0 +-17.497 15.231 0.846 0 0 0 0 0 0 0 +-36.142 31.298 1.522 0 0 0 0 0 0 0 +-17.585 15.114 0.846 0 0 0 0 0 0 0 +-17.63 15.056 0.846 0 0 0 0 0 0 0 +-17.684 15.007 0.846 0 0 0 0 0 0 0 +-17.715 14.937 0.845 0 0 0 0 0 0 0 +-17.697 14.827 0.843 0 0 0 0 0 0 0 +-17.677 14.764 0.841 0 0 0 0 0 0 0 +-17.721 14.706 0.841 0 0 0 0 0 0 0 +-17.744 14.631 0.841 0 0 0 0 0 0 0 +-36.372 29.835 1.501 0 0 0 0 0 0 0 +-17.761 14.458 0.838 0 0 0 0 0 0 0 +-36.406 29.482 1.496 0 0 0 0 0 0 0 +-36.415 29.3 1.493 0 0 0 0 0 0 0 +-36.408 29.2 1.491 0 0 0 0 0 0 0 +-36.421 29.023 1.488 0 0 0 0 0 0 0 +-36.454 28.863 1.486 0 0 0 0 0 0 0 +-36.488 28.703 1.484 0 0 0 0 0 0 0 +-36.495 28.523 1.481 0 0 0 0 0 0 0 +-36.513 28.353 1.479 0 0 0 0 0 0 0 +-18.251 14.064 0.842 0 0 0 0 0 0 0 +-18.297 14.008 0.842 0 0 0 0 0 0 0 +-18.33 13.988 0.842 0 0 0 0 0 0 0 +-18.409 13.957 0.843 0 0 0 0 0 0 0 +-18.467 13.91 0.844 0 0 0 0 0 0 0 +-18.41 13.776 0.84 0 0 0 0 0 0 0 +-18.421 13.694 0.839 0 0 0 0 0 0 0 +-18.477 13.646 0.84 0 0 0 0 0 0 0 +-36.597 26.883 1.456 0 0 0 0 0 0 0 +-36.628 26.817 1.456 0 0 0 0 0 0 0 +-18.925 13.749 0.851 0 0 0 0 0 0 0 +-19.13 13.806 0.857 0 0 0 0 0 0 0 +-19.197 13.764 0.858 0 0 0 0 0 0 0 +-19.144 13.635 0.854 0 0 0 0 0 0 0 +-19.259 13.626 0.857 0 0 0 0 0 0 0 +-19.248 13.527 0.855 0 0 0 0 0 0 0 +-32.401 22.717 1.296 0 0 0 0 0 0 0 +-19.306 13.433 0.855 0 0 0 0 0 0 0 +-6.664 4.585 0.431 0 0 0 0 0 0 0 +-6.664 4.554 0.43 0 0 0 0 0 0 0 +-6.698 4.547 0.431 0 0 0 0 0 0 0 +-6.681 4.504 0.43 0 0 0 0 0 0 0 +-6.673 4.469 0.429 0 0 0 0 0 0 0 +-6.684 4.46 0.429 0 0 0 0 0 0 0 +-6.694 4.437 0.429 0 0 0 0 0 0 0 +-6.703 4.413 0.429 0 0 0 0 0 0 0 +-6.69 4.374 0.428 0 0 0 0 0 0 0 +-6.713 4.359 0.429 0 0 0 0 0 0 0 +-6.708 4.325 0.428 0 0 0 0 0 0 0 +-6.706 4.295 0.427 0 0 0 0 0 0 0 +-6.716 4.286 0.428 0 0 0 0 0 0 0 +-6.73 4.265 0.428 0 0 0 0 0 0 0 +-6.731 4.236 0.427 0 0 0 0 0 0 0 +-6.89 4.307 0.432 0 0 0 0 0 0 0 +-36.697 22.911 1.397 0 0 0 0 0 0 0 +-36.698 22.752 1.395 0 0 0 0 0 0 0 +-36.699 22.593 1.393 0 0 0 0 0 0 0 +-36.651 22.484 1.39 0 0 0 0 0 0 0 +-36.638 22.318 1.387 0 0 0 0 0 0 0 +-36.636 22.159 1.385 0 0 0 0 0 0 0 +-36.414 21.869 1.376 0 0 0 0 0 0 0 +-36.414 21.713 1.374 0 0 0 0 0 0 0 +-36.406 21.554 1.371 0 0 0 0 0 0 0 +-36.388 21.389 1.368 0 0 0 0 0 0 0 +-36.367 21.223 1.366 0 0 0 0 0 0 0 +-36.328 21.124 1.363 0 0 0 0 0 0 0 +-36.295 20.952 1.36 0 0 0 0 0 0 0 +-12.453 7.117 0.603 0 0 0 0 0 0 0 +-12.48 7.081 0.603 0 0 0 0 0 0 0 +-12.504 7.042 0.603 0 0 0 0 0 0 0 +-12.246 6.846 0.594 0 0 0 0 0 0 0 +-12.346 6.851 0.597 0 0 0 0 0 0 0 +-12.325 6.814 0.596 0 0 0 0 0 0 0 +-12.346 6.775 0.596 0 0 0 0 0 0 0 +-12.348 6.726 0.595 0 0 0 0 0 0 0 +-12.401 6.704 0.596 0 0 0 0 0 0 0 +-12.228 6.561 0.59 0 0 0 0 0 0 0 +-36.445 19.465 1.344 0 0 0 0 0 0 0 +-36.733 19.471 1.351 0 0 0 0 0 0 0 +-35.969 18.993 1.326 0 0 0 0 0 0 0 +-35.964 18.846 1.324 0 0 0 0 0 0 0 +-35.945 18.693 1.322 0 0 0 0 0 0 0 +-35.922 18.537 1.319 0 0 0 0 0 0 0 +-35.911 18.389 1.317 0 0 0 0 0 0 0 +-35.874 18.228 1.314 0 0 0 0 0 0 0 +-35.355 17.824 1.297 0 0 0 0 0 0 0 +-35.336 17.745 1.295 0 0 0 0 0 0 0 +-32.737 16.309 1.214 0 0 0 0 0 0 0 +-35.671 17.634 1.302 0 0 0 0 0 0 0 +-35.732 17.524 1.302 0 0 0 0 0 0 0 +-14.452 7.014 0.65 0 0 0 0 0 0 0 +-14.433 6.949 0.649 0 0 0 0 0 0 0 +-14.568 6.958 0.652 0 0 0 0 0 0 0 +-14.426 6.862 0.648 0 0 0 0 0 0 0 +-14.434 6.81 0.647 0 0 0 0 0 0 0 +-14.448 6.762 0.647 0 0 0 0 0 0 0 +-14.462 6.713 0.647 0 0 0 0 0 0 0 +-14.67 6.754 0.652 0 0 0 0 0 0 0 +-36.979 16.787 1.325 0 0 0 0 0 0 0 +-37.152 16.725 1.328 0 0 0 0 0 0 0 +-35.269 15.809 1.271 0 0 0 0 0 0 0 +-35.249 15.667 1.269 0 0 0 0 0 0 0 +-35.144 15.488 1.264 0 0 0 0 0 0 0 +-34.828 15.218 1.253 0 0 0 0 0 0 0 +-34.867 15.105 1.253 0 0 0 0 0 0 0 +-35.021 15.041 1.256 0 0 0 0 0 0 0 +-35.062 14.929 1.256 0 0 0 0 0 0 0 +-34.99 14.833 1.253 0 0 0 0 0 0 0 +-34.957 14.69 1.251 0 0 0 0 0 0 0 +-34.909 14.54 1.248 0 0 0 0 0 0 0 +-34.864 14.393 1.245 0 0 0 0 0 0 0 +-34.822 14.248 1.242 0 0 0 0 0 0 0 +-34.761 14.096 1.239 0 0 0 0 0 0 0 +-34.757 13.967 1.238 0 0 0 0 0 0 0 +-34.885 13.955 1.241 0 0 0 0 0 0 0 +-34.774 13.784 1.236 0 0 0 0 0 0 0 +-35.243 13.842 1.249 0 0 0 0 0 0 0 +-29.609 11.518 1.082 0 0 0 0 0 0 0 +-29.524 11.378 1.078 0 0 0 0 0 0 0 +-29.556 11.284 1.078 0 0 0 0 0 0 0 +-29.621 11.202 1.079 0 0 0 0 0 0 0 +-29.719 11.186 1.081 0 0 0 0 0 0 0 +-29.788 11.105 1.082 0 0 0 0 0 0 0 +-29.693 10.963 1.078 0 0 0 0 0 0 0 +-29.69 10.856 1.077 0 0 0 0 0 0 0 +-29.688 10.75 1.076 0 0 0 0 0 0 0 +-29.79 10.681 1.078 0 0 0 0 0 0 0 +-34.038 12.088 1.201 0 0 0 0 0 0 0 +-33.965 12.002 1.198 0 0 0 0 0 0 0 +-33.934 11.871 1.196 0 0 0 0 0 0 0 +-33.887 11.735 1.194 0 0 0 0 0 0 0 +-33.815 11.591 1.191 0 0 0 0 0 0 0 +-33.797 11.466 1.189 0 0 0 0 0 0 0 +-33.687 11.311 1.185 0 0 0 0 0 0 0 +-33.684 11.192 1.184 0 0 0 0 0 0 0 +-33.793 11.17 1.187 0 0 0 0 0 0 0 +-33.659 11.008 1.182 0 0 0 0 0 0 0 +-34.15 11.05 1.195 0 0 0 0 0 0 0 +-33.635 10.65 1.178 0 0 0 0 0 0 0 +-33.775 10.578 1.181 0 0 0 0 0 0 0 +-33.711 10.442 1.178 0 0 0 0 0 0 0 +-33.117 10.087 1.16 0 0 0 0 0 0 0 +-33.091 9.965 1.158 0 0 0 0 0 0 0 +-33.036 9.836 1.156 0 0 0 0 0 0 0 +-32.981 9.706 1.153 0 0 0 0 0 0 0 +-32.911 9.573 1.15 0 0 0 0 0 0 0 +-32.855 9.445 1.148 0 0 0 0 0 0 0 +-32.772 9.365 1.145 0 0 0 0 0 0 0 +-32.709 9.236 1.143 0 0 0 0 0 0 0 +-32.647 9.108 1.14 0 0 0 0 0 0 0 +-32.589 8.982 1.137 0 0 0 0 0 0 0 +-32.522 8.853 1.135 0 0 0 0 0 0 0 +-32.451 8.725 1.132 0 0 0 0 0 0 0 +-32.369 8.593 1.129 0 0 0 0 0 0 0 +-32.355 8.535 1.128 0 0 0 0 0 0 0 +-32.469 8.456 1.131 0 0 0 0 0 0 0 +-32.679 8.402 1.136 0 0 0 0 0 0 0 +-32.79 8.321 1.138 0 0 0 0 0 0 0 +-32.229 7.962 1.121 0 0 0 0 0 0 0 +-32.378 7.892 1.124 0 0 0 0 0 0 0 +-32.789 7.883 1.135 0 0 0 0 0 0 0 +-31.665 7.454 1.102 0 0 0 0 0 0 0 +-31.629 7.341 1.101 0 0 0 0 0 0 0 +-31.571 7.223 1.099 0 0 0 0 0 0 0 +-31.505 7.104 1.096 0 0 0 0 0 0 0 +-31.438 6.985 1.094 0 0 0 0 0 0 0 +-31.37 6.866 1.091 0 0 0 0 0 0 0 +-31.291 6.797 1.088 0 0 0 0 0 0 0 +-31.22 6.679 1.086 0 0 0 0 0 0 0 +-31.151 6.562 1.083 0 0 0 0 0 0 0 +-31.087 6.447 1.081 0 0 0 0 0 0 0 +-31.043 6.336 1.079 0 0 0 0 0 0 0 +-27.221 5.463 0.972 0 0 0 0 0 0 0 +-30.858 6.096 1.073 0 0 0 0 0 0 0 +-30.781 5.98 1.07 0 0 0 0 0 0 0 +-30.804 5.935 1.071 0 0 0 0 0 0 0 +-30.884 5.849 1.072 0 0 0 0 0 0 0 +-31.118 5.793 1.078 0 0 0 0 0 0 0 +-31.256 5.717 1.082 0 0 0 0 0 0 0 +-30.644 5.406 1.064 0 0 0 0 0 0 0 +-30.739 5.323 1.066 0 0 0 0 0 0 0 +-32.069 5.503 1.103 0 0 0 0 0 0 0 +-30.027 4.957 1.045 0 0 0 0 0 0 0 +-29.981 4.852 1.043 0 0 0 0 0 0 0 +-29.915 4.745 1.041 0 0 0 0 0 0 0 +-29.845 4.638 1.039 0 0 0 0 0 0 0 +-29.772 4.531 1.036 0 0 0 0 0 0 0 +-29.7 4.472 1.034 0 0 0 0 0 0 0 +-29.629 4.366 1.032 0 0 0 0 0 0 0 +-29.558 4.261 1.029 0 0 0 0 0 0 0 +-29.472 4.154 1.026 0 0 0 0 0 0 0 +-29.4 4.049 1.024 0 0 0 0 0 0 0 +-29.325 3.945 1.022 0 0 0 0 0 0 0 +-29.25 3.841 1.019 0 0 0 0 0 0 0 +-29.181 3.786 1.017 0 0 0 0 0 0 0 +-29.099 3.682 1.015 0 0 0 0 0 0 0 +-29 3.577 1.012 0 0 0 0 0 0 0 +-28.941 3.477 1.01 0 0 0 0 0 0 0 +-29.024 3.395 1.012 0 0 0 0 0 0 0 +-29.1 3.311 1.013 0 0 0 0 0 0 0 +-29.251 3.235 1.017 0 0 0 0 0 0 0 +-29.363 3.201 1.02 0 0 0 0 0 0 0 +-29.441 3.116 1.022 0 0 0 0 0 0 0 +-29.518 3.031 1.024 0 0 0 0 0 0 0 +-29.587 2.944 1.026 0 0 0 0 0 0 0 +-28.723 2.766 1.002 0 0 0 0 0 0 0 +-29.808 2.777 1.031 0 0 0 0 0 0 0 +-28.038 2.433 0.982 0 0 0 0 0 0 0 +-27.975 2.383 0.98 0 0 0 0 0 0 0 +-27.902 2.289 0.978 0 0 0 0 0 0 0 +-27.83 2.195 0.976 0 0 0 0 0 0 0 +-27.763 2.102 0.974 0 0 0 0 0 0 0 +-27.675 2.007 0.971 0 0 0 0 0 0 0 +-27.602 1.915 0.969 0 0 0 0 0 0 0 +-27.508 1.821 0.966 0 0 0 0 0 0 0 +-27.433 1.773 0.964 0 0 0 0 0 0 0 +-21.608 1.323 0.803 0 0 0 0 0 0 0 +-21.586 1.254 0.803 0 0 0 0 0 0 0 +-21.546 1.183 0.802 0 0 0 0 0 0 0 +-21.531 1.115 0.801 0 0 0 0 0 0 0 +-21.521 1.046 0.801 0 0 0 0 0 0 0 +-21.51 0.978 0.8 0 0 0 0 0 0 0 +-21.562 0.946 0.802 0 0 0 0 0 0 0 +-21.636 0.882 0.804 0 0 0 0 0 0 0 +-21.405 0.805 0.797 0 0 0 0 0 0 0 +-21.248 0.732 0.793 0 0 0 0 0 0 0 +-21.366 0.669 0.796 0 0 0 0 0 0 0 +-21.36 0.601 0.796 0 0 0 0 0 0 0 +-21.328 0.533 0.795 0 0 0 0 0 0 0 +-26.607 0.63 0.94 0 0 0 0 0 0 0 +-21.608 0.439 0.802 0 0 0 0 0 0 0 +-21.761 0.374 0.807 0 0 0 0 0 0 0 +-21.402 0.3 0.797 0 0 0 0 0 0 0 +-21.995 0.24 0.813 0 0 0 0 0 0 0 +-25.89 0.206 0.92 0 0 0 0 0 0 0 +-25.792 0.124 0.917 0 0 0 0 0 0 0 +-25.731 0.042 0.916 0 0 0 0 0 0 0 +-21.412 -0.036 0.797 0 0 0 0 0 0 0 +-25.563 -0.078 0.911 0 0 0 0 0 0 0 +-25.48 -0.158 0.909 0 0 0 0 0 0 0 +-25.398 -0.238 0.907 0 0 0 0 0 0 0 +-25.321 -0.317 0.904 0 0 0 0 0 0 0 +-25.242 -0.395 0.902 0 0 0 0 0 0 0 +-25.16 -0.473 0.9 0 0 0 0 0 0 0 +-25.077 -0.55 0.898 0 0 0 0 0 0 0 +-25.044 -0.589 0.897 0 0 0 0 0 0 0 +-25.104 -0.669 0.899 0 0 0 0 0 0 0 +-25.12 -0.749 0.899 0 0 0 0 0 0 0 +-25.121 -0.828 0.899 0 0 0 0 0 0 0 +-25.366 -0.915 0.906 0 0 0 0 0 0 0 +-25.561 -1.002 0.912 0 0 0 0 0 0 0 +-24.739 -1.088 0.889 0 0 0 0 0 0 0 +-24.855 -1.171 0.892 0 0 0 0 0 0 0 +-24.83 -1.248 0.892 0 0 0 0 0 0 0 +-25.149 -1.343 0.901 0 0 0 0 0 0 0 +-24.072 -1.438 0.871 0 0 0 0 0 0 0 +-23.998 -1.51 0.869 0 0 0 0 0 0 0 +-23.934 -1.543 0.868 0 0 0 0 0 0 0 +-23.845 -1.613 0.865 0 0 0 0 0 0 0 +-23.77 -1.683 0.863 0 0 0 0 0 0 0 +-15.982 -1.191 0.649 0 0 0 0 0 0 0 +-15.982 -1.241 0.649 0 0 0 0 0 0 0 +-15.998 -1.293 0.65 0 0 0 0 0 0 0 +-16.205 -1.361 0.655 0 0 0 0 0 0 0 +-16.046 -1.373 0.651 0 0 0 0 0 0 0 +-16.167 -1.434 0.655 0 0 0 0 0 0 0 +-16.162 -1.485 0.655 0 0 0 0 0 0 0 +-16.13 -1.533 0.654 0 0 0 0 0 0 0 +-16.079 -1.579 0.653 0 0 0 0 0 0 0 +-15.957 -1.618 0.649 0 0 0 0 0 0 0 +-15.914 -1.664 0.648 0 0 0 0 0 0 0 +-15.912 -1.715 0.648 0 0 0 0 0 0 0 +-22.712 -2.472 0.836 0 0 0 0 0 0 0 +-22.714 -2.545 0.837 0 0 0 0 0 0 0 +-22.716 -2.617 0.837 0 0 0 0 0 0 0 +-22.735 -2.692 0.838 0 0 0 0 0 0 0 +-22.732 -2.764 0.838 0 0 0 0 0 0 0 +-22.733 -2.837 0.838 0 0 0 0 0 0 0 +-22.74 -2.91 0.839 0 0 0 0 0 0 0 +-22.75 -2.948 0.839 0 0 0 0 0 0 0 +-22.756 -3.021 0.839 0 0 0 0 0 0 0 +-22.768 -3.096 0.84 0 0 0 0 0 0 0 +-22.756 -3.167 0.84 0 0 0 0 0 0 0 +-22.723 -3.235 0.839 0 0 0 0 0 0 0 +-22.794 -3.318 0.842 0 0 0 0 0 0 0 +-22.797 -3.392 0.842 0 0 0 0 0 0 0 +-22.963 -3.453 0.847 0 0 0 0 0 0 0 +-22.994 -3.532 0.848 0 0 0 0 0 0 0 +-23.03 -3.611 0.849 0 0 0 0 0 0 0 +-23.1 -3.696 0.851 0 0 0 0 0 0 0 +-23.122 -3.774 0.852 0 0 0 0 0 0 0 +-23.141 -3.852 0.853 0 0 0 0 0 0 0 +-23.243 -3.944 0.856 0 0 0 0 0 0 0 +-21.085 -3.614 0.796 0 0 0 0 0 0 0 +-21.038 -3.674 0.795 0 0 0 0 0 0 0 +-20.969 -3.73 0.794 0 0 0 0 0 0 0 +-20.896 -3.785 0.792 0 0 0 0 0 0 0 +-20.823 -3.84 0.79 0 0 0 0 0 0 0 +-20.746 -3.893 0.789 0 0 0 0 0 0 0 +-20.673 -3.947 0.787 0 0 0 0 0 0 0 +-20.608 -3.968 0.785 0 0 0 0 0 0 0 +-20.535 -4.021 0.784 0 0 0 0 0 0 0 +-20.463 -4.074 0.782 0 0 0 0 0 0 0 +-20.397 -4.127 0.78 0 0 0 0 0 0 0 +-20.31 -4.176 0.778 0 0 0 0 0 0 0 +-20.24 -4.228 0.777 0 0 0 0 0 0 0 +-20.166 -4.279 0.775 0 0 0 0 0 0 0 +-20.098 -4.298 0.773 0 0 0 0 0 0 0 +-20.026 -4.348 0.772 0 0 0 0 0 0 0 +-19.954 -4.398 0.77 0 0 0 0 0 0 0 +-19.875 -4.447 0.768 0 0 0 0 0 0 0 +-19.805 -4.496 0.767 0 0 0 0 0 0 0 +-19.715 -4.541 0.765 0 0 0 0 0 0 0 +-19.632 -4.587 0.763 0 0 0 0 0 0 0 +-19.586 -4.609 0.762 0 0 0 0 0 0 0 +-19.602 -4.678 0.762 0 0 0 0 0 0 0 +-19.64 -4.752 0.764 0 0 0 0 0 0 0 +-19.627 -4.814 0.764 0 0 0 0 0 0 0 +-19.606 -4.874 0.764 0 0 0 0 0 0 0 +-19.866 -5.005 0.772 0 0 0 0 0 0 0 +-19.852 -5.068 0.772 0 0 0 0 0 0 0 +-19.801 -5.121 0.771 0 0 0 0 0 0 0 +-19.21 -5.066 0.755 0 0 0 0 0 0 0 +-19.136 -5.111 0.753 0 0 0 0 0 0 0 +-19.296 -5.218 0.758 0 0 0 0 0 0 0 +-19.468 -5.33 0.763 0 0 0 0 0 0 0 +-19.403 -5.378 0.762 0 0 0 0 0 0 0 +-18.496 -5.222 0.737 0 0 0 0 0 0 0 +-18.453 -5.272 0.736 0 0 0 0 0 0 0 +-18.382 -5.315 0.734 0 0 0 0 0 0 0 +-18.339 -5.365 0.734 0 0 0 0 0 0 0 +-18.257 -5.403 0.732 0 0 0 0 0 0 0 +-18.203 -5.449 0.731 0 0 0 0 0 0 0 +-18.117 -5.486 0.729 0 0 0 0 0 0 0 +-18.06 -5.5 0.727 0 0 0 0 0 0 0 +-17.98 -5.537 0.726 0 0 0 0 0 0 0 +-17.921 -5.581 0.724 0 0 0 0 0 0 0 +-17.85 -5.62 0.723 0 0 0 0 0 0 0 +-17.788 -5.662 0.722 0 0 0 0 0 0 0 +-17.711 -5.699 0.72 0 0 0 0 0 0 0 +-17.649 -5.741 0.719 0 0 0 0 0 0 0 +-17.587 -5.751 0.717 0 0 0 0 0 0 0 +-17.525 -5.792 0.716 0 0 0 0 0 0 0 +-17.446 -5.827 0.714 0 0 0 0 0 0 0 +-17.386 -5.868 0.713 0 0 0 0 0 0 0 +-17.316 -5.905 0.711 0 0 0 0 0 0 0 +-17.254 -5.944 0.71 0 0 0 0 0 0 0 +-17.181 -5.979 0.708 0 0 0 0 0 0 0 +-17.126 -5.991 0.707 0 0 0 0 0 0 0 +-17.064 -6.029 0.706 0 0 0 0 0 0 0 +-16.881 -6.025 0.701 0 0 0 0 0 0 0 +-16.762 -6.042 0.698 0 0 0 0 0 0 0 +-16.86 -6.137 0.702 0 0 0 0 0 0 0 +-16.786 -6.17 0.7 0 0 0 0 0 0 0 +-16.716 -6.204 0.699 0 0 0 0 0 0 0 +-16.655 -6.211 0.697 0 0 0 0 0 0 0 +-16.602 -6.251 0.696 0 0 0 0 0 0 0 +-16.526 -6.282 0.694 0 0 0 0 0 0 0 +-16.462 -6.316 0.693 0 0 0 0 0 0 0 +-16.391 -6.349 0.692 0 0 0 0 0 0 0 +-16.332 -6.385 0.69 0 0 0 0 0 0 0 +-16.264 -6.417 0.689 0 0 0 0 0 0 0 +-16.22 -6.429 0.688 0 0 0 0 0 0 0 +-16.15 -6.46 0.687 0 0 0 0 0 0 0 +-16.098 -6.498 0.686 0 0 0 0 0 0 0 +-16.029 -6.529 0.684 0 0 0 0 0 0 0 +-16.016 -6.583 0.684 0 0 0 0 0 0 0 +-16.006 -6.638 0.685 0 0 0 0 0 0 0 +-16 -6.694 0.685 0 0 0 0 0 0 0 +-15.912 -6.687 0.683 0 0 0 0 0 0 0 +-15.86 -6.724 0.682 0 0 0 0 0 0 0 +-15.785 -6.751 0.68 0 0 0 0 0 0 0 +-15.523 -6.697 0.673 0 0 0 0 0 0 0 +-15.533 -6.759 0.674 0 0 0 0 0 0 0 +-15.583 -6.839 0.676 0 0 0 0 0 0 0 +-16.079 -7.207 0.693 0 0 0 0 0 0 0 +-16.094 -7.274 0.694 0 0 0 0 0 0 0 +-16.093 -7.335 0.695 0 0 0 0 0 0 0 +-16.103 -7.4 0.696 0 0 0 0 0 0 0 +-16.103 -7.462 0.696 0 0 0 0 0 0 0 +-16.118 -7.53 0.697 0 0 0 0 0 0 0 +-16.116 -7.591 0.698 0 0 0 0 0 0 0 +-16.147 -7.636 0.699 0 0 0 0 0 0 0 +-16.146 -7.698 0.7 0 0 0 0 0 0 0 +-16.162 -7.768 0.701 0 0 0 0 0 0 0 +-16.15 -7.825 0.702 0 0 0 0 0 0 0 +-16.156 -7.89 0.703 0 0 0 0 0 0 0 +-16.145 -7.948 0.703 0 0 0 0 0 0 0 +-16.335 -8.105 0.71 0 0 0 0 0 0 0 +-16.358 -8.149 0.711 0 0 0 0 0 0 0 +-16.368 -8.218 0.712 0 0 0 0 0 0 0 +-16.366 -8.281 0.713 0 0 0 0 0 0 0 +-16.37 -8.348 0.714 0 0 0 0 0 0 0 +-16.383 -8.419 0.715 0 0 0 0 0 0 0 +-16.399 -8.493 0.716 0 0 0 0 0 0 0 +-16.399 -8.558 0.717 0 0 0 0 0 0 0 +-16.424 -8.604 0.718 0 0 0 0 0 0 0 +-16.431 -8.673 0.719 0 0 0 0 0 0 0 +-16.432 -8.74 0.72 0 0 0 0 0 0 0 +-16.438 -8.809 0.721 0 0 0 0 0 0 0 +-16.445 -8.88 0.722 0 0 0 0 0 0 0 +-16.452 -8.95 0.723 0 0 0 0 0 0 0 +-16.464 -9.024 0.725 0 0 0 0 0 0 0 +-16.492 -9.073 0.726 0 0 0 0 0 0 0 +-16.485 -9.136 0.727 0 0 0 0 0 0 0 +-16.398 -9.156 0.725 0 0 0 0 0 0 0 +-16.347 -9.195 0.724 0 0 0 0 0 0 0 +-16.321 -9.248 0.724 0 0 0 0 0 0 0 +-16.346 -9.33 0.726 0 0 0 0 0 0 0 +-16.365 -9.409 0.727 0 0 0 0 0 0 0 +-16.392 -9.459 0.729 0 0 0 0 0 0 0 +-16.39 -9.526 0.73 0 0 0 0 0 0 0 +-16.408 -9.606 0.731 0 0 0 0 0 0 0 +-16.399 -9.67 0.732 0 0 0 0 0 0 0 +-16.42 -9.752 0.733 0 0 0 0 0 0 0 +-16.427 -9.826 0.735 0 0 0 0 0 0 0 +-16.429 -9.897 0.736 0 0 0 0 0 0 0 +-16.451 -9.945 0.737 0 0 0 0 0 0 0 +-16.452 -10.017 0.738 0 0 0 0 0 0 0 +-16.466 -10.096 0.739 0 0 0 0 0 0 0 +-16.465 -10.167 0.74 0 0 0 0 0 0 0 +-16.476 -10.245 0.742 0 0 0 0 0 0 0 +-16.484 -10.322 0.743 0 0 0 0 0 0 0 +-16.49 -10.398 0.744 0 0 0 0 0 0 0 +-16.523 -10.455 0.746 0 0 0 0 0 0 0 +-16.499 -10.512 0.746 0 0 0 0 0 0 0 +-16.607 -10.655 0.751 0 0 0 0 0 0 0 +-17.158 -11.083 0.77 0 0 0 0 0 0 0 +-17.043 -11.085 0.767 0 0 0 0 0 0 0 +-16.813 -11.162 0.763 0 0 0 0 0 0 0 +-16.802 -11.193 0.763 0 0 0 0 0 0 0 +-16.941 -11.363 0.769 0 0 0 0 0 0 0 +-17.253 -11.65 0.781 0 0 0 0 0 0 0 +-17.237 -11.718 0.781 0 0 0 0 0 0 0 +-17.236 -11.797 0.783 0 0 0 0 0 0 0 +-17.204 -11.854 0.783 0 0 0 0 0 0 0 +-16.903 -11.726 0.774 0 0 0 0 0 0 0 +-16.872 -11.744 0.773 0 0 0 0 0 0 0 +-16.828 -11.792 0.773 0 0 0 0 0 0 0 +-16.76 -11.823 0.772 0 0 0 0 0 0 0 +-16.684 -11.848 0.771 0 0 0 0 0 0 0 +-16.663 -11.912 0.771 0 0 0 0 0 0 0 +-16.676 -12 0.773 0 0 0 0 0 0 0 +-16.691 -12.091 0.775 0 0 0 0 0 0 0 +-16.718 -12.15 0.777 0 0 0 0 0 0 0 +-16.741 -12.248 0.779 0 0 0 0 0 0 0 +-16.742 -12.33 0.78 0 0 0 0 0 0 0 +-16.753 -12.419 0.782 0 0 0 0 0 0 0 +-16.759 -12.505 0.783 0 0 0 0 0 0 0 +-16.755 -12.584 0.784 0 0 0 0 0 0 0 +-16.778 -12.684 0.787 0 0 0 0 0 0 0 +-16.796 -12.739 0.788 0 0 0 0 0 0 0 +-16.815 -12.836 0.79 0 0 0 0 0 0 0 +-16.827 -12.929 0.792 0 0 0 0 0 0 0 +-16.827 -13.014 0.793 0 0 0 0 0 0 0 +-16.838 -13.107 0.795 0 0 0 0 0 0 0 +-16.825 -13.182 0.796 0 0 0 0 0 0 0 +-16.96 -13.373 0.802 0 0 0 0 0 0 0 +-17.502 -13.845 0.822 0 0 0 0 0 0 0 +-17.499 -13.932 0.823 0 0 0 0 0 0 0 +-17.131 -13.816 0.813 0 0 0 0 0 0 0 +-17.238 -13.992 0.819 0 0 0 0 0 0 0 +-17.494 -14.29 0.829 0 0 0 0 0 0 0 +-17.544 -14.423 0.833 0 0 0 0 0 0 0 +-17.587 -14.504 0.835 0 0 0 0 0 0 0 +-17.217 -14.382 0.825 0 0 0 0 0 0 0 +-17.189 -14.451 0.826 0 0 0 0 0 0 0 +-17.123 -14.488 0.825 0 0 0 0 0 0 0 +-17.027 -14.499 0.823 0 0 0 0 0 0 0 +-16.992 -14.561 0.824 0 0 0 0 0 0 0 +-17.038 -14.647 0.826 0 0 0 0 0 0 0 +-17.054 -14.754 0.828 0 0 0 0 0 0 0 +-17.068 -14.859 0.83 0 0 0 0 0 0 0 +-17.078 -14.963 0.833 0 0 0 0 0 0 0 +-17.081 -15.06 0.834 0 0 0 0 0 0 0 +-17.089 -15.163 0.836 0 0 0 0 0 0 0 +-17.104 -15.272 0.839 0 0 0 0 0 0 0 +-17.112 -15.377 0.841 0 0 0 0 0 0 0 +-17.149 -15.458 0.843 0 0 0 0 0 0 0 +-17.155 -15.562 0.845 0 0 0 0 0 0 0 +-17.167 -15.671 0.847 0 0 0 0 0 0 0 +-17.167 -15.771 0.849 0 0 0 0 0 0 0 +-17.178 -15.88 0.851 0 0 0 0 0 0 0 +-17.269 -16.064 0.857 0 0 0 0 0 0 0 +-17.523 -16.455 0.869 0 0 0 0 0 0 0 +-17.484 -16.522 0.87 0 0 0 0 0 0 0 +-17.507 -16.648 0.872 0 0 0 0 0 0 0 +-17.886 -17.115 0.889 0 0 0 0 0 0 0 +-17.82 -17.16 0.888 0 0 0 0 0 0 0 +-17.608 -17.063 0.882 0 0 0 0 0 0 0 +-17.53 -17.094 0.881 0 0 0 0 0 0 0 +-17.505 -17.123 0.881 0 0 0 0 0 0 0 +-17.415 -17.143 0.88 0 0 0 0 0 0 0 +-17.349 -17.185 0.88 0 0 0 0 0 0 0 +-17.355 -17.3 0.882 0 0 0 0 0 0 0 +-17.386 -17.439 0.885 0 0 0 0 0 0 0 +-17.392 -17.555 0.888 0 0 0 0 0 0 0 +-17.398 -17.672 0.89 0 0 0 0 0 0 0 +-17.438 -17.768 0.893 0 0 0 0 0 0 0 +-17.449 -17.891 0.895 0 0 0 0 0 0 0 +-17.466 -18.022 0.898 0 0 0 0 0 0 0 +-17.472 -18.141 0.901 0 0 0 0 0 0 0 +-17.48 -18.264 0.903 0 0 0 0 0 0 0 +-17.508 -18.409 0.907 0 0 0 0 0 0 0 +-17.515 -18.532 0.909 0 0 0 0 0 0 0 +-17.536 -18.613 0.911 0 0 0 0 0 0 0 +-24.561 -26.218 1.196 0 0 0 0 0 0 0 +-24.436 -26.249 1.194 0 0 0 0 0 0 0 +-24.304 -26.273 1.192 0 0 0 0 0 0 0 +-24.172 -26.295 1.19 0 0 0 0 0 0 0 +-24.109 -26.393 1.191 0 0 0 0 0 0 0 +-24.888 -27.417 1.226 0 0 0 0 0 0 0 +-25.016 -27.644 1.233 0 0 0 0 0 0 0 +-25.028 -27.832 1.237 0 0 0 0 0 0 0 +-25.029 -28.011 1.241 0 0 0 0 0 0 0 +-24.916 -28.061 1.24 0 0 0 0 0 0 0 +-24.804 -28.112 1.239 0 0 0 0 0 0 0 +-24.793 -28.278 1.242 0 0 0 0 0 0 0 +-24.815 -28.483 1.247 0 0 0 0 0 0 0 +-24.729 -28.475 1.245 0 0 0 0 0 0 0 +-24.586 -28.49 1.243 0 0 0 0 0 0 0 +-24.46 -28.525 1.241 0 0 0 0 0 0 0 +-24.42 -28.66 1.243 0 0 0 0 0 0 0 +-25.069 -29.608 1.275 0 0 0 0 0 0 0 +-25.181 -29.93 1.283 0 0 0 0 0 0 0 +-25.202 -30.147 1.288 0 0 0 0 0 0 0 +-25.27 -30.325 1.293 0 0 0 0 0 0 0 +-25.288 -30.541 1.298 0 0 0 0 0 0 0 +-25.243 -30.682 1.3 0 0 0 0 0 0 0 +-25.139 -30.752 1.3 0 0 0 0 0 0 0 +-25.172 -30.99 1.306 0 0 0 0 0 0 0 +-25.198 -31.222 1.311 0 0 0 0 0 0 0 +-25.218 -31.449 1.316 0 0 0 0 0 0 0 +-25.283 -31.631 1.321 0 0 0 0 0 0 0 +-25.306 -31.865 1.327 0 0 0 0 0 0 0 +-25.32 -32.088 1.332 0 0 0 0 0 0 0 +-25.377 -32.369 1.339 0 0 0 0 0 0 0 +-25.379 -32.581 1.343 0 0 0 0 0 0 0 +-25.401 -32.822 1.349 0 0 0 0 0 0 0 +-25.415 -33.054 1.354 0 0 0 0 0 0 0 +-25.488 -33.257 1.36 0 0 0 0 0 0 0 +-25.518 -33.513 1.366 0 0 0 0 0 0 0 +-25.556 -33.783 1.373 0 0 0 0 0 0 0 +-25.576 -34.031 1.378 0 0 0 0 0 0 0 +-25.605 -34.292 1.385 0 0 0 0 0 0 0 +-25.631 -34.553 1.391 0 0 0 0 0 0 0 +-25.637 -34.788 1.396 0 0 0 0 0 0 0 +-25.719 -35.015 1.402 0 0 0 0 0 0 0 +-25.734 -35.267 1.408 0 0 0 0 0 0 0 +-25.756 -35.53 1.414 0 0 0 0 0 0 0 +-25.786 -35.807 1.421 0 0 0 0 0 0 0 +-25.808 -36.077 1.427 0 0 0 0 0 0 0 +-25.859 -36.389 1.435 0 0 0 0 0 0 0 +-25.898 -36.687 1.443 0 0 0 0 0 0 0 +-25.978 -36.922 1.449 0 0 0 0 0 0 0 +-25.94 -37.115 1.453 0 0 0 0 0 0 0 +-25.927 -37.346 1.458 0 0 0 0 0 0 0 +-26.059 -37.789 1.47 0 0 0 0 0 0 0 +-26.092 -38.092 1.477 0 0 0 0 0 0 0 +-26.113 -38.38 1.484 0 0 0 0 0 0 0 +-26.147 -38.69 1.492 0 0 0 0 0 0 0 +-26.182 -39.006 1.499 0 0 0 0 0 0 0 +-26.276 -39.278 1.507 0 0 0 0 0 0 0 +-26.315 -39.605 1.515 0 0 0 0 0 0 0 +-26.353 -39.935 1.523 0 0 0 0 0 0 0 +-26.381 -40.251 1.531 0 0 0 0 0 0 0 +-26.415 -40.58 1.539 0 0 0 0 0 0 0 +-26.449 -40.913 1.547 0 0 0 0 0 0 0 +-26.475 -41.236 1.555 0 0 0 0 0 0 0 +-26.579 -41.541 1.564 0 0 0 0 0 0 0 +-26.609 -41.877 1.572 0 0 0 0 0 0 0 +-26.653 -42.237 1.581 0 0 0 0 0 0 0 +-26.685 -42.585 1.59 0 0 0 0 0 0 0 +-26.722 -42.942 1.598 0 0 0 0 0 0 0 +-26.757 -43.301 1.607 0 0 0 0 0 0 0 +-26.797 -43.671 1.617 0 0 0 0 0 0 0 +-26.897 -43.989 1.625 0 0 0 0 0 0 0 +-26.939 -44.369 1.635 0 0 0 0 0 0 0 +-26.974 -44.743 1.644 0 0 0 0 0 0 0 +-27.007 -45.117 1.653 0 0 0 0 0 0 0 +-27.053 -45.518 1.664 0 0 0 0 0 0 0 +-27.092 -45.911 1.673 0 0 0 0 0 0 0 +-27.121 -46.292 1.683 0 0 0 0 0 0 0 +-27.242 -46.666 1.693 0 0 0 0 0 0 0 +-27.279 -47.068 1.703 0 0 0 0 0 0 0 +-27.327 -47.493 1.714 0 0 0 0 0 0 0 +-27.377 -47.928 1.725 0 0 0 0 0 0 0 +-27.422 -48.359 1.736 0 0 0 0 0 0 0 +-27.47 -48.799 1.747 0 0 0 0 0 0 0 +-27.509 -49.229 1.758 0 0 0 0 0 0 0 +-27.624 -49.618 1.769 0 0 0 0 0 0 0 +-27.663 -50.058 1.78 0 0 0 0 0 0 0 +-27.713 -50.521 1.792 0 0 0 0 0 0 0 +-27.763 -50.991 1.804 0 0 0 0 0 0 0 +-27.814 -51.47 1.816 0 0 0 0 0 0 0 +-15.761 -29.633 1.131 0 0 0 0 0 0 0 +-15.697 -29.624 1.13 0 0 0 0 0 0 0 +-15.592 -29.65 1.129 0 0 0 0 0 0 0 +-15.488 -29.68 1.129 0 0 0 0 0 0 0 +-15.396 -29.73 1.129 0 0 0 0 0 0 0 +-28.271 -54.967 1.907 0 0 0 0 0 0 0 +-28.325 -55.499 1.921 0 0 0 0 0 0 0 +-28.372 -56.024 1.934 0 0 0 0 0 0 0 +-28.52 -56.536 1.949 0 0 0 0 0 0 0 +-28.514 -56.969 1.959 0 0 0 0 0 0 0 +-28.65 -57.692 1.979 0 0 0 0 0 0 0 +-28.717 -58.285 1.994 0 0 0 0 0 0 0 +-28.776 -58.871 2.009 0 0 0 0 0 0 0 +-28.839 -59.472 2.025 0 0 0 0 0 0 0 +-17.229 -35.839 1.301 0 0 0 0 0 0 0 +-17.225 -35.974 1.305 0 0 0 0 0 0 0 +-17.095 -35.994 1.304 0 0 0 0 0 0 0 +-16.95 -35.979 1.301 0 0 0 0 0 0 0 +-16.944 -36.262 1.308 0 0 0 0 0 0 0 +-29.359 -63.303 2.126 0 0 0 0 0 0 0 +-16.722 -36.38 1.309 0 0 0 0 0 0 0 +-16.328 -35.822 1.29 0 0 0 0 0 0 0 +-16.288 -35.882 1.291 0 0 0 0 0 0 0 +-16.102 -35.771 1.287 0 0 0 0 0 0 0 +-16.145 -36.17 1.297 0 0 0 0 0 0 0 +-18.869 -42.619 1.489 0 0 0 0 0 0 0 +-16.498 -37.59 1.337 0 0 0 0 0 0 0 +-16.22 -37.275 1.326 0 0 0 0 0 0 0 +-15.777 -36.572 1.303 0 0 0 0 0 0 0 +-16.23 -37.783 1.339 0 0 0 0 0 0 0 +-15.111 -35.801 1.276 0 0 0 0 0 0 0 +-15.007 -35.867 1.277 0 0 0 0 0 0 0 +-15.085 -36.374 1.291 0 0 0 0 0 0 0 +-14.951 -36.375 1.289 0 0 0 0 0 0 0 +-14.665 -35.999 1.277 0 0 0 0 0 0 0 +-14.619 -36.048 1.278 0 0 0 0 0 0 0 +-14.404 -35.842 1.27 0 0 0 0 0 0 0 +-14.27 -35.835 1.268 0 0 0 0 0 0 0 +-14.601 -37.001 1.302 0 0 0 0 0 0 0 +-14.434 -36.918 1.298 0 0 0 0 0 0 0 +-14.084 -36.359 1.28 0 0 0 0 0 0 0 +-14.163 -36.905 1.295 0 0 0 0 0 0 0 +-14.203 -37.183 1.302 0 0 0 0 0 0 0 +-14.005 -37.015 1.296 0 0 0 0 0 0 0 +-13.964 -37.261 1.302 0 0 0 0 0 0 0 +-13.875 -37.377 1.304 0 0 0 0 0 0 0 +-13.481 -36.672 1.282 0 0 0 0 0 0 0 +-13.304 -36.905 1.287 0 0 0 0 0 0 0 +-14.867 -41.639 1.424 0 0 0 0 0 0 0 +-17.132 -48.21 1.614 0 0 0 0 0 0 0 +-16.93 -48.12 1.61 0 0 0 0 0 0 0 +-16.653 -47.814 1.6 0 0 0 0 0 0 0 +-16.71 -48.465 1.617 0 0 0 0 0 0 0 +-17.321 -50.752 1.682 0 0 0 0 0 0 0 +-16.71 -49.471 1.643 0 0 0 0 0 0 0 +-16.525 -49.434 1.641 0 0 0 0 0 0 0 +-16.189 -48.684 1.618 0 0 0 0 0 0 0 +-16.007 -48.647 1.616 0 0 0 0 0 0 0 +-15.863 -48.726 1.617 0 0 0 0 0 0 0 +-16.147 -50.13 1.656 0 0 0 0 0 0 0 +-15.964 -50.099 1.653 0 0 0 0 0 0 0 +-15.746 -49.96 1.648 0 0 0 0 0 0 0 +-15.376 -49.054 1.621 0 0 0 0 0 0 0 +-15.225 -49.113 1.622 0 0 0 0 0 0 0 +-15.021 -49 1.617 0 0 0 0 0 0 0 +-14.834 -48.938 1.614 0 0 0 0 0 0 0 +-14.833 -49.494 1.628 0 0 0 0 0 0 0 +-14.667 -49.504 1.627 0 0 0 0 0 0 0 +-16.911 -57.728 1.862 0 0 0 0 0 0 0 +-16.713 -57.723 1.86 0 0 0 0 0 0 0 +-17.031 -59.169 1.9 0 0 0 0 0 0 0 +-16.871 -59.31 1.903 0 0 0 0 0 0 0 +-18.833 -66.995 2.121 0 0 0 0 0 0 0 +-19.45 -70.03 2.206 0 0 0 0 0 0 0 +-20.49 -77.04 2.399 0 0 0 0 0 0 0 +-20.278 -77.218 2.402 0 0 0 0 0 0 0 +-1.071 -41.837 1.359 0 0 0 0 0 0 0 +-0.945 -42.078 1.365 0 0 0 0 0 0 0 +-0.582 -30.487 1.047 0 0 0 0 0 0 0 +-0.488 -30.603 1.05 0 0 0 0 0 0 0 +-0.442 -30.712 1.053 0 0 0 0 0 0 0 +-0.346 -30.809 1.055 0 0 0 0 0 0 0 +-0.25 -30.816 1.055 0 0 0 0 0 0 0 +-0.154 -31.02 1.061 0 0 0 0 0 0 0 +0.046 -42.035 1.364 0 0 0 0 0 0 0 +0.178 -42.054 1.364 0 0 0 0 0 0 0 +0.31 -41.963 1.362 0 0 0 0 0 0 0 +0.377 -42.089 1.365 0 0 0 0 0 0 0 +0.509 -42.113 1.366 0 0 0 0 0 0 0 +0.642 -42.124 1.366 0 0 0 0 0 0 0 +0.774 -42.129 1.366 0 0 0 0 0 0 0 +0.907 -42.145 1.367 0 0 0 0 0 0 0 +1.04 -42.166 1.368 0 0 0 0 0 0 0 +1.173 -42.174 1.368 0 0 0 0 0 0 0 +1.24 -42.192 1.368 0 0 0 0 0 0 0 +1.373 -42.212 1.369 0 0 0 0 0 0 0 +1.507 -42.238 1.37 0 0 0 0 0 0 0 +1.64 -42.239 1.37 0 0 0 0 0 0 0 +1.773 -42.263 1.371 0 0 0 0 0 0 0 +1.907 -42.281 1.372 0 0 0 0 0 0 0 +1.975 -42.31 1.372 0 0 0 0 0 0 0 +2.108 -42.306 1.373 0 0 0 0 0 0 0 +2.242 -42.325 1.373 0 0 0 0 0 0 0 +2.377 -42.344 1.374 0 0 0 0 0 0 0 +2.512 -42.374 1.375 0 0 0 0 0 0 0 +3.036 -48.685 1.549 0 0 0 0 0 0 0 +3.19 -48.696 1.55 0 0 0 0 0 0 0 +3.352 -48.813 1.553 0 0 0 0 0 0 0 +3.919 -55.848 1.747 0 0 0 0 0 0 0 +4.077 -55.59 1.74 0 0 0 0 0 0 0 +4.016 -52.483 1.655 0 0 0 0 0 0 0 +4.171 -52.345 1.652 0 0 0 0 0 0 0 +4.335 -52.325 1.651 0 0 0 0 0 0 0 +4.472 -51.991 1.642 0 0 0 0 0 0 0 +4.589 -51.457 1.628 0 0 0 0 0 0 0 +4.444 -48.947 1.559 0 0 0 0 0 0 0 +4.594 -48.893 1.558 0 0 0 0 0 0 0 +4.751 -48.91 1.559 0 0 0 0 0 0 0 +4.891 -48.765 1.555 0 0 0 0 0 0 0 +5.028 -48.593 1.551 0 0 0 0 0 0 0 +5.179 -48.557 1.55 0 0 0 0 0 0 0 +5.177 -47.125 1.511 0 0 0 0 0 0 0 +5.185 -46.519 1.495 0 0 0 0 0 0 0 +5.32 -46.411 1.492 0 0 0 0 0 0 0 +5.456 -46.313 1.49 0 0 0 0 0 0 0 +5.405 -44.658 1.445 0 0 0 0 0 0 0 +5.499 -44.271 1.434 0 0 0 0 0 0 0 +5.632 -44.204 1.433 0 0 0 0 0 0 0 +5.767 -44.157 1.432 0 0 0 0 0 0 0 +5.634 -42.611 1.39 0 0 0 0 0 0 0 +5.709 -42.154 1.377 0 0 0 0 0 0 0 +5.834 -42.086 1.376 0 0 0 0 0 0 0 +5.953 -41.974 1.374 0 0 0 0 0 0 0 +5.854 -40.357 1.329 0 0 0 0 0 0 0 +5.952 -40.14 1.324 0 0 0 0 0 0 0 +6.074 -40.098 1.323 0 0 0 0 0 0 0 +6.135 -40.07 1.322 0 0 0 0 0 0 0 +6.268 -40.096 1.324 0 0 0 0 0 0 0 +6.41 -40.181 1.327 0 0 0 0 0 0 0 +6.546 -40.218 1.328 0 0 0 0 0 0 0 +6.709 -40.418 1.334 0 0 0 0 0 0 0 +6.276 -37.077 1.242 0 0 0 0 0 0 0 +6.33 -36.696 1.232 0 0 0 0 0 0 0 +6.371 -36.59 1.229 0 0 0 0 0 0 0 +6.484 -36.558 1.229 0 0 0 0 0 0 0 +4.138 -22.856 0.847 0 0 0 0 0 0 0 +4.19 -22.737 0.844 0 0 0 0 0 0 0 +4.266 -22.747 0.845 0 0 0 0 0 0 0 +4.358 -22.844 0.848 0 0 0 0 0 0 0 +4.598 -23.701 0.872 0 0 0 0 0 0 0 +4.645 -23.741 0.873 0 0 0 0 0 0 0 +6.775 -34.121 1.165 0 0 0 0 0 0 0 +4.638 -22.939 0.852 0 0 0 0 0 0 0 +4.694 -22.846 0.85 0 0 0 0 0 0 0 +4.771 -22.857 0.85 0 0 0 0 0 0 0 +4.92 -23.204 0.86 0 0 0 0 0 0 0 +7.058 -32.836 1.131 0 0 0 0 0 0 0 +4.336 -19.967 0.77 0 0 0 0 0 0 0 +4.407 -19.993 0.771 0 0 0 0 0 0 0 +4.494 -20.088 0.774 0 0 0 0 0 0 0 +4.559 -20.084 0.775 0 0 0 0 0 0 0 +4.63 -20.102 0.775 0 0 0 0 0 0 0 +4.698 -20.109 0.776 0 0 0 0 0 0 0 +4.718 -19.909 0.771 0 0 0 0 0 0 0 +7.246 -30.426 1.068 0 0 0 0 0 0 0 +4.871 -20.136 0.778 0 0 0 0 0 0 0 +4.918 -20.052 0.776 0 0 0 0 0 0 0 +4.977 -20.021 0.776 0 0 0 0 0 0 0 +7.513 -29.877 1.055 0 0 0 0 0 0 0 +5.199 -20.103 0.779 0 0 0 0 0 0 0 +5.429 -20.336 0.787 0 0 0 0 0 0 0 +5.489 -20.304 0.787 0 0 0 0 0 0 0 +7.616 -27.859 1.002 0 0 0 0 0 0 0 +7.651 -27.644 0.997 0 0 0 0 0 0 0 +7.678 -27.408 0.991 0 0 0 0 0 0 0 +7.668 -27.206 0.985 0 0 0 0 0 0 0 +7.673 -26.901 0.977 0 0 0 0 0 0 0 +7.728 -26.771 0.974 0 0 0 0 0 0 0 +7.799 -26.704 0.973 0 0 0 0 0 0 0 +7.885 -26.687 0.973 0 0 0 0 0 0 0 +7.978 -26.693 0.974 0 0 0 0 0 0 0 +8.123 -26.869 0.98 0 0 0 0 0 0 0 +8.044 -26.161 0.961 0 0 0 0 0 0 0 +7.896 -25.393 0.939 0 0 0 0 0 0 0 +7.939 -25.25 0.936 0 0 0 0 0 0 0 +7.969 -25.07 0.931 0 0 0 0 0 0 0 +7.999 -24.891 0.927 0 0 0 0 0 0 0 +8.024 -24.704 0.922 0 0 0 0 0 0 0 +8.021 -24.562 0.919 0 0 0 0 0 0 0 +8.038 -24.355 0.913 0 0 0 0 0 0 0 +8.076 -24.213 0.91 0 0 0 0 0 0 0 +8.144 -24.163 0.909 0 0 0 0 0 0 0 +8.225 -24.153 0.91 0 0 0 0 0 0 0 +8.313 -24.161 0.911 0 0 0 0 0 0 0 +8.373 -24.091 0.909 0 0 0 0 0 0 0 +3.69 -10.52 0.515 0 0 0 0 0 0 0 +3.715 -10.484 0.514 0 0 0 0 0 0 0 +3.71 -10.364 0.511 0 0 0 0 0 0 0 +3.784 -10.469 0.515 0 0 0 0 0 0 0 +8.263 -22.728 0.873 0 0 0 0 0 0 0 +8.289 -22.578 0.87 0 0 0 0 0 0 0 +8.315 -22.432 0.866 0 0 0 0 0 0 0 +8.26 -22.173 0.859 0 0 0 0 0 0 0 +8.274 -22.001 0.855 0 0 0 0 0 0 0 +8.305 -21.874 0.852 0 0 0 0 0 0 0 +8.282 -21.607 0.844 0 0 0 0 0 0 0 +8.281 -21.402 0.839 0 0 0 0 0 0 0 +8.3 -21.253 0.836 0 0 0 0 0 0 0 +8.327 -21.124 0.833 0 0 0 0 0 0 0 +8.295 -20.947 0.828 0 0 0 0 0 0 0 +8.335 -20.856 0.826 0 0 0 0 0 0 0 +8.398 -20.822 0.826 0 0 0 0 0 0 0 +8.475 -20.826 0.826 0 0 0 0 0 0 0 +8.537 -20.791 0.826 0 0 0 0 0 0 0 +8.556 -20.652 0.823 0 0 0 0 0 0 0 +8.579 -20.523 0.82 0 0 0 0 0 0 0 +8.571 -20.414 0.817 0 0 0 0 0 0 0 +8.593 -20.287 0.814 0 0 0 0 0 0 0 +8.458 -19.793 0.8 0 0 0 0 0 0 0 +8.494 -19.708 0.798 0 0 0 0 0 0 0 +8.544 -19.653 0.797 0 0 0 0 0 0 0 +8.62 -19.658 0.798 0 0 0 0 0 0 0 +8.692 -19.654 0.799 0 0 0 0 0 0 0 +8.681 -19.545 0.796 0 0 0 0 0 0 0 +8.704 -19.434 0.794 0 0 0 0 0 0 0 +8.724 -19.315 0.791 0 0 0 0 0 0 0 +8.74 -19.188 0.788 0 0 0 0 0 0 0 +8.762 -19.077 0.785 0 0 0 0 0 0 0 +8.621 -18.615 0.772 0 0 0 0 0 0 0 +8.654 -18.532 0.771 0 0 0 0 0 0 0 +8.641 -18.43 0.768 0 0 0 0 0 0 0 +8.657 -18.314 0.765 0 0 0 0 0 0 0 +8.678 -18.209 0.763 0 0 0 0 0 0 0 +8.696 -18.1 0.76 0 0 0 0 0 0 0 +8.721 -18.006 0.758 0 0 0 0 0 0 0 +8.783 -17.989 0.759 0 0 0 0 0 0 0 +8.786 -17.854 0.755 0 0 0 0 0 0 0 +8.86 -17.934 0.758 0 0 0 0 0 0 0 +8.889 -17.85 0.757 0 0 0 0 0 0 0 +8.91 -17.752 0.754 0 0 0 0 0 0 0 +8.924 -17.642 0.752 0 0 0 0 0 0 0 +8.929 -17.514 0.749 0 0 0 0 0 0 0 +8.934 -17.388 0.746 0 0 0 0 0 0 0 +8.972 -17.328 0.745 0 0 0 0 0 0 0 +9.003 -17.321 0.745 0 0 0 0 0 0 0 +9.079 -17.335 0.746 0 0 0 0 0 0 0 +9.132 -17.303 0.746 0 0 0 0 0 0 0 +9.151 -17.207 0.744 0 0 0 0 0 0 0 +9.165 -17.104 0.742 0 0 0 0 0 0 0 +9.18 -17.003 0.74 0 0 0 0 0 0 0 +9.203 -16.918 0.738 0 0 0 0 0 0 0 +9.197 -16.844 0.736 0 0 0 0 0 0 0 +9.211 -16.745 0.734 0 0 0 0 0 0 0 +9.232 -16.658 0.732 0 0 0 0 0 0 0 +9.244 -16.556 0.73 0 0 0 0 0 0 0 +9.204 -16.363 0.724 0 0 0 0 0 0 0 +9.107 -16.071 0.716 0 0 0 0 0 0 0 +9.137 -16.007 0.715 0 0 0 0 0 0 0 +9.145 -15.963 0.714 0 0 0 0 0 0 0 +9.161 -15.874 0.712 0 0 0 0 0 0 0 +9.178 -15.79 0.71 0 0 0 0 0 0 0 +9.184 -15.685 0.708 0 0 0 0 0 0 0 +9.168 -15.546 0.705 0 0 0 0 0 0 0 +9.183 -15.46 0.703 0 0 0 0 0 0 0 +9.228 -15.424 0.703 0 0 0 0 0 0 0 +9.253 -15.411 0.703 0 0 0 0 0 0 0 +9.318 -15.41 0.703 0 0 0 0 0 0 0 +9.39 -15.42 0.705 0 0 0 0 0 0 0 +9.458 -15.422 0.706 0 0 0 0 0 0 0 +9.462 -15.319 0.703 0 0 0 0 0 0 0 +9.531 -15.324 0.704 0 0 0 0 0 0 0 +9.543 -15.236 0.703 0 0 0 0 0 0 0 +9.525 -15.155 0.7 0 0 0 0 0 0 0 +9.514 -15.032 0.697 0 0 0 0 0 0 0 +9.513 -14.926 0.695 0 0 0 0 0 0 0 +9.529 -14.847 0.693 0 0 0 0 0 0 0 +9.537 -14.758 0.691 0 0 0 0 0 0 0 +9.549 -14.675 0.69 0 0 0 0 0 0 0 +9.568 -14.603 0.688 0 0 0 0 0 0 0 +9.565 -14.499 0.686 0 0 0 0 0 0 0 +9.56 -14.442 0.685 0 0 0 0 0 0 0 +9.398 -14.099 0.674 0 0 0 0 0 0 0 +9.365 -13.955 0.67 0 0 0 0 0 0 0 +9.407 -13.922 0.67 0 0 0 0 0 0 0 +9.425 -13.854 0.669 0 0 0 0 0 0 0 +9.439 -13.782 0.668 0 0 0 0 0 0 0 +9.45 -13.706 0.666 0 0 0 0 0 0 0 +9.448 -13.656 0.665 0 0 0 0 0 0 0 +9.453 -13.572 0.663 0 0 0 0 0 0 0 +9.428 -13.446 0.66 0 0 0 0 0 0 0 +9.438 -13.371 0.658 0 0 0 0 0 0 0 +9.471 -13.328 0.658 0 0 0 0 0 0 0 +9.507 -13.29 0.658 0 0 0 0 0 0 0 +9.544 -13.298 0.658 0 0 0 0 0 0 0 +9.615 -13.308 0.66 0 0 0 0 0 0 0 +9.684 -13.315 0.661 0 0 0 0 0 0 0 +9.726 -13.285 0.661 0 0 0 0 0 0 0 +9.754 -13.236 0.66 0 0 0 0 0 0 0 +9.836 -13.26 0.662 0 0 0 0 0 0 0 +9.824 -13.157 0.66 0 0 0 0 0 0 0 +9.817 -13.105 0.659 0 0 0 0 0 0 0 +9.826 -13.031 0.657 0 0 0 0 0 0 0 +9.834 -12.957 0.656 0 0 0 0 0 0 0 +9.842 -12.883 0.654 0 0 0 0 0 0 0 +9.844 -12.801 0.652 0 0 0 0 0 0 0 +9.872 -12.754 0.652 0 0 0 0 0 0 0 +9.878 -12.679 0.65 0 0 0 0 0 0 0 +9.884 -12.646 0.65 0 0 0 0 0 0 0 +9.872 -12.549 0.647 0 0 0 0 0 0 0 +9.623 -12.152 0.635 0 0 0 0 0 0 0 +9.606 -12.053 0.632 0 0 0 0 0 0 0 +9.628 -12.002 0.631 0 0 0 0 0 0 0 +9.678 -11.988 0.632 0 0 0 0 0 0 0 +9.68 -11.914 0.63 0 0 0 0 0 0 0 +9.697 -11.858 0.63 0 0 0 0 0 0 0 +9.682 -11.801 0.628 0 0 0 0 0 0 0 +9.7 -11.748 0.627 0 0 0 0 0 0 0 +9.707 -11.682 0.626 0 0 0 0 0 0 0 +9.718 -11.621 0.625 0 0 0 0 0 0 0 +9.727 -11.556 0.624 0 0 0 0 0 0 0 +9.725 -11.481 0.622 0 0 0 0 0 0 0 +9.635 -11.301 0.617 0 0 0 0 0 0 0 +9.584 -11.206 0.614 0 0 0 0 0 0 0 +9.593 -11.145 0.613 0 0 0 0 0 0 0 +9.608 -11.092 0.612 0 0 0 0 0 0 0 +9.611 -11.026 0.611 0 0 0 0 0 0 0 +9.62 -10.965 0.609 0 0 0 0 0 0 0 +9.632 -10.91 0.609 0 0 0 0 0 0 0 +9.642 -10.852 0.608 0 0 0 0 0 0 0 +9.631 -10.806 0.606 0 0 0 0 0 0 0 +9.637 -10.744 0.605 0 0 0 0 0 0 0 +9.635 -10.674 0.604 0 0 0 0 0 0 0 +9.644 -10.617 0.603 0 0 0 0 0 0 0 +9.668 -10.576 0.602 0 0 0 0 0 0 0 +9.701 -10.546 0.602 0 0 0 0 0 0 0 +9.726 -10.539 0.603 0 0 0 0 0 0 0 +9.794 -10.547 0.604 0 0 0 0 0 0 0 +9.85 -10.541 0.605 0 0 0 0 0 0 0 +9.87 -10.495 0.605 0 0 0 0 0 0 0 +9.882 -10.442 0.604 0 0 0 0 0 0 0 +9.89 -10.385 0.603 0 0 0 0 0 0 0 +9.906 -10.337 0.602 0 0 0 0 0 0 0 +9.907 -10.272 0.601 0 0 0 0 0 0 0 +9.905 -10.238 0.6 0 0 0 0 0 0 0 +9.915 -10.184 0.599 0 0 0 0 0 0 0 +9.917 -10.123 0.598 0 0 0 0 0 0 0 +9.928 -10.07 0.597 0 0 0 0 0 0 0 +9.941 -10.02 0.596 0 0 0 0 0 0 0 +9.95 -9.966 0.596 0 0 0 0 0 0 0 +9.957 -9.911 0.595 0 0 0 0 0 0 0 +9.946 -9.869 0.594 0 0 0 0 0 0 0 +9.956 -9.816 0.593 0 0 0 0 0 0 0 +9.965 -9.764 0.592 0 0 0 0 0 0 0 +9.976 -9.713 0.591 0 0 0 0 0 0 0 +9.982 -9.658 0.59 0 0 0 0 0 0 0 +9.989 -9.604 0.589 0 0 0 0 0 0 0 +10 -9.555 0.589 0 0 0 0 0 0 0 +9.994 -9.518 0.588 0 0 0 0 0 0 0 +10 -9.465 0.587 0 0 0 0 0 0 0 +10.013 -9.417 0.586 0 0 0 0 0 0 0 +10.026 -9.37 0.586 0 0 0 0 0 0 0 +10.035 -9.32 0.585 0 0 0 0 0 0 0 +9.931 -9.165 0.58 0 0 0 0 0 0 0 +9.845 -9.028 0.576 0 0 0 0 0 0 0 +9.837 -8.992 0.575 0 0 0 0 0 0 0 +9.859 -8.956 0.575 0 0 0 0 0 0 0 +9.877 -8.915 0.574 0 0 0 0 0 0 0 +9.889 -8.869 0.574 0 0 0 0 0 0 0 +9.888 -8.813 0.573 0 0 0 0 0 0 0 +9.896 -8.765 0.572 0 0 0 0 0 0 0 +9.894 -8.734 0.571 0 0 0 0 0 0 0 +9.904 -8.689 0.571 0 0 0 0 0 0 0 +9.909 -8.638 0.57 0 0 0 0 0 0 0 +9.927 -8.599 0.57 0 0 0 0 0 0 0 +9.922 -8.54 0.568 0 0 0 0 0 0 0 +9.931 -8.493 0.568 0 0 0 0 0 0 0 +9.938 -8.445 0.567 0 0 0 0 0 0 0 +9.951 -8.402 0.566 0 0 0 0 0 0 0 +9.955 -8.379 0.566 0 0 0 0 0 0 0 +9.978 -8.345 0.566 0 0 0 0 0 0 0 +10.002 -8.312 0.566 0 0 0 0 0 0 0 +10.021 -8.275 0.566 0 0 0 0 0 0 0 +10.045 -8.242 0.566 0 0 0 0 0 0 0 +10.066 -8.206 0.565 0 0 0 0 0 0 0 +10.078 -8.163 0.565 0 0 0 0 0 0 0 +10.086 -8.144 0.565 0 0 0 0 0 0 0 +10.109 -8.109 0.565 0 0 0 0 0 0 0 +10.136 -8.079 0.565 0 0 0 0 0 0 0 +10.18 -8.062 0.565 0 0 0 0 0 0 0 +10.258 -8.072 0.567 0 0 0 0 0 0 0 +10.424 -8.15 0.572 0 0 0 0 0 0 0 +10.487 -8.146 0.574 0 0 0 0 0 0 0 +10.495 -8.126 0.573 0 0 0 0 0 0 0 +10.546 -8.113 0.574 0 0 0 0 0 0 0 +10.592 -8.095 0.575 0 0 0 0 0 0 0 +10.595 -8.045 0.574 0 0 0 0 0 0 0 +10.62 -8.012 0.574 0 0 0 0 0 0 0 +10.636 -7.971 0.574 0 0 0 0 0 0 0 +10.658 -7.935 0.574 0 0 0 0 0 0 0 +10.67 -7.919 0.574 0 0 0 0 0 0 0 +10.682 -7.876 0.573 0 0 0 0 0 0 0 +10.72 -7.851 0.574 0 0 0 0 0 0 0 +10.739 -7.814 0.574 0 0 0 0 0 0 0 +10.756 -7.775 0.573 0 0 0 0 0 0 0 +10.779 -7.74 0.573 0 0 0 0 0 0 0 +10.808 -7.709 0.573 0 0 0 0 0 0 0 +10.813 -7.687 0.573 0 0 0 0 0 0 0 +10.841 -7.656 0.573 0 0 0 0 0 0 0 +10.876 -7.63 0.574 0 0 0 0 0 0 0 +10.877 -7.579 0.573 0 0 0 0 0 0 0 +10.904 -7.548 0.573 0 0 0 0 0 0 0 +10.926 -7.512 0.573 0 0 0 0 0 0 0 +10.946 -7.476 0.573 0 0 0 0 0 0 0 +10.966 -7.464 0.573 0 0 0 0 0 0 0 +11.001 -7.437 0.574 0 0 0 0 0 0 0 +11.01 -7.393 0.573 0 0 0 0 0 0 0 +11.023 -7.351 0.573 0 0 0 0 0 0 0 +11.036 -7.31 0.572 0 0 0 0 0 0 0 +10.957 -7.208 0.569 0 0 0 0 0 0 0 +10.821 -7.069 0.564 0 0 0 0 0 0 0 +10.807 -7.036 0.563 0 0 0 0 0 0 0 +10.824 -6.999 0.563 0 0 0 0 0 0 0 +10.848 -6.966 0.563 0 0 0 0 0 0 0 +10.874 -6.935 0.563 0 0 0 0 0 0 0 +10.916 -6.914 0.564 0 0 0 0 0 0 0 +10.938 -6.879 0.564 0 0 0 0 0 0 0 +10.958 -6.844 0.564 0 0 0 0 0 0 0 +10.964 -6.823 0.563 0 0 0 0 0 0 0 +10.99 -6.792 0.564 0 0 0 0 0 0 0 +11.013 -6.759 0.564 0 0 0 0 0 0 0 +11.033 -6.723 0.564 0 0 0 0 0 0 0 +11.081 -6.705 0.565 0 0 0 0 0 0 0 +11.129 -6.687 0.565 0 0 0 0 0 0 0 +11.183 -6.671 0.566 0 0 0 0 0 0 0 +11.217 -6.668 0.567 0 0 0 0 0 0 0 +11.276 -6.655 0.568 0 0 0 0 0 0 0 +11.33 -6.639 0.569 0 0 0 0 0 0 0 +11.38 -6.62 0.57 0 0 0 0 0 0 0 +11.43 -6.602 0.571 0 0 0 0 0 0 0 +11.477 -6.581 0.572 0 0 0 0 0 0 0 +11.53 -6.563 0.573 0 0 0 0 0 0 0 +11.56 -6.556 0.574 0 0 0 0 0 0 0 +11.599 -6.531 0.574 0 0 0 0 0 0 0 +11.651 -6.512 0.575 0 0 0 0 0 0 0 +11.937 -6.623 0.584 0 0 0 0 0 0 0 +12.022 -6.621 0.586 0 0 0 0 0 0 0 +12.073 -6.6 0.587 0 0 0 0 0 0 0 +12.131 -6.582 0.588 0 0 0 0 0 0 0 +12.176 -6.582 0.589 0 0 0 0 0 0 0 +12.227 -6.56 0.59 0 0 0 0 0 0 0 +12.281 -6.539 0.591 0 0 0 0 0 0 0 +12.343 -6.523 0.592 0 0 0 0 0 0 0 +12.401 -6.504 0.593 0 0 0 0 0 0 0 +12.473 -6.492 0.595 0 0 0 0 0 0 0 +12.52 -6.467 0.596 0 0 0 0 0 0 0 +8.786 -4.512 0.48 0 0 0 0 0 0 0 +8.789 -4.479 0.48 0 0 0 0 0 0 0 +12.688 -6.428 0.599 0 0 0 0 0 0 0 +12.744 -6.406 0.601 0 0 0 0 0 0 0 +12.807 -6.387 0.602 0 0 0 0 0 0 0 +12.861 -6.364 0.603 0 0 0 0 0 0 0 +12.931 -6.348 0.604 0 0 0 0 0 0 0 +12.975 -6.345 0.605 0 0 0 0 0 0 0 +13.047 -6.329 0.607 0 0 0 0 0 0 0 +13.122 -6.315 0.609 0 0 0 0 0 0 0 +13.151 -6.278 0.609 0 0 0 0 0 0 0 +13.142 -6.223 0.608 0 0 0 0 0 0 0 +13.129 -6.167 0.607 0 0 0 0 0 0 0 +13.125 -6.114 0.606 0 0 0 0 0 0 0 +13.143 -6.098 0.607 0 0 0 0 0 0 0 +13.17 -6.06 0.607 0 0 0 0 0 0 0 +13.23 -6.038 0.608 0 0 0 0 0 0 0 +13.306 -6.022 0.61 0 0 0 0 0 0 0 +13.388 -6.009 0.612 0 0 0 0 0 0 0 +13.438 -5.981 0.613 0 0 0 0 0 0 0 +13.506 -5.96 0.614 0 0 0 0 0 0 0 +13.565 -5.961 0.616 0 0 0 0 0 0 0 +13.635 -5.941 0.617 0 0 0 0 0 0 0 +13.699 -5.918 0.619 0 0 0 0 0 0 0 +13.764 -5.894 0.62 0 0 0 0 0 0 0 +13.847 -5.878 0.622 0 0 0 0 0 0 0 +14.112 -5.887 0.629 0 0 0 0 0 0 0 +14.162 -5.882 0.63 0 0 0 0 0 0 0 +14.208 -5.849 0.631 0 0 0 0 0 0 0 +14.263 -5.819 0.632 0 0 0 0 0 0 0 +14.307 -5.785 0.633 0 0 0 0 0 0 0 +14.366 -5.757 0.634 0 0 0 0 0 0 0 +14.416 -5.724 0.635 0 0 0 0 0 0 0 +14.467 -5.692 0.636 0 0 0 0 0 0 0 +14.498 -5.678 0.636 0 0 0 0 0 0 0 +14.552 -5.646 0.638 0 0 0 0 0 0 0 +14.607 -5.615 0.639 0 0 0 0 0 0 0 +14.65 -5.579 0.639 0 0 0 0 0 0 0 +14.651 -5.527 0.639 0 0 0 0 0 0 0 +14.694 -5.49 0.64 0 0 0 0 0 0 0 +14.753 -5.459 0.641 0 0 0 0 0 0 0 +15.046 -5.542 0.649 0 0 0 0 0 0 0 +15.099 -5.508 0.65 0 0 0 0 0 0 0 +15.158 -5.475 0.651 0 0 0 0 0 0 0 +15.205 -5.438 0.652 0 0 0 0 0 0 0 +15.258 -5.403 0.653 0 0 0 0 0 0 0 +15.309 -5.367 0.654 0 0 0 0 0 0 0 +15.365 -5.333 0.656 0 0 0 0 0 0 0 +15.402 -5.319 0.656 0 0 0 0 0 0 0 +15.464 -5.286 0.658 0 0 0 0 0 0 0 +15.511 -5.247 0.659 0 0 0 0 0 0 0 +15.565 -5.211 0.66 0 0 0 0 0 0 0 +15.631 -5.179 0.661 0 0 0 0 0 0 0 +15.679 -5.14 0.662 0 0 0 0 0 0 0 +15.735 -5.104 0.663 0 0 0 0 0 0 0 +15.787 -5.066 0.664 0 0 0 0 0 0 0 +15.829 -5.053 0.665 0 0 0 0 0 0 0 +15.9 -5.02 0.667 0 0 0 0 0 0 0 +15.945 -4.979 0.668 0 0 0 0 0 0 0 +15.932 -4.92 0.667 0 0 0 0 0 0 0 +15.886 -4.852 0.665 0 0 0 0 0 0 0 +15.895 -4.8 0.665 0 0 0 0 0 0 0 +15.908 -4.749 0.665 0 0 0 0 0 0 0 +15.952 -4.735 0.666 0 0 0 0 0 0 0 +16.042 -4.707 0.668 0 0 0 0 0 0 0 +16.122 -4.676 0.67 0 0 0 0 0 0 0 +16.186 -4.639 0.671 0 0 0 0 0 0 0 +16.235 -4.598 0.672 0 0 0 0 0 0 0 +16.304 -4.563 0.674 0 0 0 0 0 0 0 +16.351 -4.548 0.675 0 0 0 0 0 0 0 +16.412 -4.51 0.676 0 0 0 0 0 0 0 +16.457 -4.467 0.677 0 0 0 0 0 0 0 +16.523 -4.429 0.679 0 0 0 0 0 0 0 +16.573 -4.387 0.68 0 0 0 0 0 0 0 +16.641 -4.349 0.681 0 0 0 0 0 0 0 +16.709 -4.311 0.683 0 0 0 0 0 0 0 +16.775 -4.272 0.684 0 0 0 0 0 0 0 +16.816 -4.254 0.685 0 0 0 0 0 0 0 +16.874 -4.212 0.687 0 0 0 0 0 0 0 +16.938 -4.172 0.688 0 0 0 0 0 0 0 +17.005 -4.132 0.689 0 0 0 0 0 0 0 +17.061 -4.089 0.691 0 0 0 0 0 0 0 +17.132 -4.049 0.692 0 0 0 0 0 0 0 +17.189 -4.006 0.694 0 0 0 0 0 0 0 +17.246 -3.991 0.695 0 0 0 0 0 0 0 +17.309 -3.948 0.696 0 0 0 0 0 0 0 +17.368 -3.904 0.698 0 0 0 0 0 0 0 +17.447 -3.864 0.7 0 0 0 0 0 0 0 +17.494 -3.817 0.701 0 0 0 0 0 0 0 +17.508 -3.763 0.701 0 0 0 0 0 0 0 +17.569 -3.718 0.702 0 0 0 0 0 0 0 +17.889 -3.757 0.711 0 0 0 0 0 0 0 +18.018 -3.725 0.714 0 0 0 0 0 0 0 +18.079 -3.679 0.716 0 0 0 0 0 0 0 +18.141 -3.632 0.717 0 0 0 0 0 0 0 +18.227 -3.59 0.719 0 0 0 0 0 0 0 +18.274 -3.54 0.72 0 0 0 0 0 0 0 +18.342 -3.493 0.722 0 0 0 0 0 0 0 +18.406 -3.475 0.723 0 0 0 0 0 0 0 +18.49 -3.431 0.725 0 0 0 0 0 0 0 +13.76 -2.502 0.593 0 0 0 0 0 0 0 +13.708 -2.448 0.591 0 0 0 0 0 0 0 +13.68 -2.399 0.59 0 0 0 0 0 0 0 +13.676 -2.354 0.59 0 0 0 0 0 0 0 +13.664 -2.307 0.589 0 0 0 0 0 0 0 +13.658 -2.284 0.589 0 0 0 0 0 0 0 +13.651 -2.239 0.589 0 0 0 0 0 0 0 +13.662 -2.197 0.589 0 0 0 0 0 0 0 +13.678 -2.155 0.589 0 0 0 0 0 0 0 +13.695 -2.114 0.589 0 0 0 0 0 0 0 +13.727 -2.075 0.59 0 0 0 0 0 0 0 +13.746 -2.033 0.59 0 0 0 0 0 0 0 +13.802 -2.02 0.592 0 0 0 0 0 0 0 +13.874 -1.986 0.594 0 0 0 0 0 0 0 +13.971 -1.955 0.596 0 0 0 0 0 0 0 +19.365 -2.658 0.746 0 0 0 0 0 0 0 +19.451 -2.608 0.748 0 0 0 0 0 0 0 +19.534 -2.557 0.75 0 0 0 0 0 0 0 +19.584 -2.501 0.751 0 0 0 0 0 0 0 +19.477 -2.456 0.748 0 0 0 0 0 0 0 +19.554 -2.403 0.75 0 0 0 0 0 0 0 +19.553 -2.341 0.75 0 0 0 0 0 0 0 +19.614 -2.286 0.751 0 0 0 0 0 0 0 +19.653 -2.228 0.752 0 0 0 0 0 0 0 +19.71 -2.172 0.753 0 0 0 0 0 0 0 +19.762 -2.115 0.755 0 0 0 0 0 0 0 +19.803 -2.088 0.756 0 0 0 0 0 0 0 +19.857 -2.03 0.757 0 0 0 0 0 0 0 +19.917 -1.973 0.759 0 0 0 0 0 0 0 +19.967 -1.915 0.76 0 0 0 0 0 0 0 +19.989 -1.854 0.76 0 0 0 0 0 0 0 +20.068 -1.798 0.762 0 0 0 0 0 0 0 +24.509 -2.124 0.885 0 0 0 0 0 0 0 +26.096 -2.221 0.928 0 0 0 0 0 0 0 +21.026 -1.718 0.788 0 0 0 0 0 0 0 +26.323 -2.074 0.934 0 0 0 0 0 0 0 +21.148 -1.595 0.791 0 0 0 0 0 0 0 +21.229 -1.534 0.793 0 0 0 0 0 0 0 +21.254 -1.468 0.794 0 0 0 0 0 0 0 +21.322 -1.406 0.796 0 0 0 0 0 0 0 +24.385 -1.573 0.88 0 0 0 0 0 0 0 +21.779 -1.334 0.808 0 0 0 0 0 0 0 +21.502 -1.249 0.8 0 0 0 0 0 0 0 +21.432 -1.177 0.798 0 0 0 0 0 0 0 +21.603 -1.118 0.803 0 0 0 0 0 0 0 +21.262 -0.966 0.793 0 0 0 0 0 0 0 +21.242 -0.932 0.793 0 0 0 0 0 0 0 +21.249 -0.865 0.793 0 0 0 0 0 0 0 +21.183 -0.796 0.791 0 0 0 0 0 0 0 +21.14 -0.728 0.79 0 0 0 0 0 0 0 +21.142 -0.661 0.79 0 0 0 0 0 0 0 +21.178 -0.596 0.791 0 0 0 0 0 0 0 +21.27 -0.532 0.793 0 0 0 0 0 0 0 +21.319 -0.5 0.795 0 0 0 0 0 0 0 +21.386 -0.434 0.796 0 0 0 0 0 0 0 +21.439 -0.368 0.798 0 0 0 0 0 0 0 +21.502 -0.301 0.8 0 0 0 0 0 0 0 +21.555 -0.234 0.801 0 0 0 0 0 0 0 +21.616 -0.167 0.803 0 0 0 0 0 0 0 +21.804 -0.1 0.808 0 0 0 0 0 0 0 +23.176 -0.072 0.845 0 0 0 0 0 0 0 +58.896 -0.038 1.827 0 0 0 0 0 0 0 +58.879 0.092 1.549 0 0 0 0 0 0 0 +58.834 0.277 1.548 0 0 0 0 0 0 0 +58.801 0.462 1.548 0 0 0 0 0 0 0 +58.485 0.643 1.54 0 0 0 0 0 0 0 +58.397 0.825 1.538 0 0 0 0 0 0 0 +58.372 1.008 1.538 0 0 0 0 0 0 0 +58.331 1.191 1.537 0 0 0 0 0 0 0 +58.279 1.281 1.536 0 0 0 0 0 0 0 +58.224 1.463 1.535 0 0 0 0 0 0 0 +58.196 1.646 1.534 0 0 0 0 0 0 0 +58.16 1.827 1.534 0 0 0 0 0 0 0 +58.208 2.012 1.535 0 0 0 0 0 0 0 +58.267 2.197 1.536 0 0 0 0 0 0 0 +58.236 2.379 1.536 0 0 0 0 0 0 0 +58.089 2.465 1.532 0 0 0 0 0 0 0 +57.429 2.798 1.518 0 0 0 0 0 0 0 +25.538 1.552 0.791 0 0 0 0 0 0 0 +59.445 3.834 1.565 0 0 0 0 0 0 0 +59.762 4.326 1.573 0 0 0 0 0 0 0 +59.591 4.502 1.569 0 0 0 0 0 0 0 +59.538 4.686 1.569 0 0 0 0 0 0 0 +59.609 4.88 1.57 0 0 0 0 0 0 0 +59.695 5.076 1.573 0 0 0 0 0 0 0 +59.828 5.182 1.576 0 0 0 0 0 0 0 +18.808 1.73 0.638 0 0 0 0 0 0 0 +18.732 1.783 0.637 0 0 0 0 0 0 0 +18.591 1.828 0.634 0 0 0 0 0 0 0 +18.777 1.906 0.638 0 0 0 0 0 0 0 +60.875 6.431 1.602 0 0 0 0 0 0 0 +60.976 6.539 1.605 0 0 0 0 0 0 0 +44.346 4.889 1.224 0 0 0 0 0 0 0 +44.314 5.027 1.224 0 0 0 0 0 0 0 +44.145 5.148 1.221 0 0 0 0 0 0 0 +43.899 5.259 1.215 0 0 0 0 0 0 0 +43.671 5.371 1.21 0 0 0 0 0 0 0 +43.391 5.475 1.204 0 0 0 0 0 0 0 +25.077 3.273 0.784 0 0 0 0 0 0 0 +42.575 5.848 1.187 0 0 0 0 0 0 0 +42.491 5.972 1.186 0 0 0 0 0 0 0 +20.943 3.165 0.691 0 0 0 0 0 0 0 +20.925 3.23 0.69 0 0 0 0 0 0 0 +20.895 3.292 0.69 0 0 0 0 0 0 0 +20.845 3.352 0.689 0 0 0 0 0 0 0 +20.822 3.415 0.689 0 0 0 0 0 0 0 +20.79 3.477 0.688 0 0 0 0 0 0 0 +20.749 3.504 0.688 0 0 0 0 0 0 0 +20.716 3.565 0.687 0 0 0 0 0 0 0 +20.665 3.623 0.686 0 0 0 0 0 0 0 +20.632 3.684 0.686 0 0 0 0 0 0 0 +20.597 3.745 0.685 0 0 0 0 0 0 0 +20.556 3.804 0.684 0 0 0 0 0 0 0 +20.514 3.863 0.684 0 0 0 0 0 0 0 +20.482 3.89 0.683 0 0 0 0 0 0 0 +20.441 3.949 0.682 0 0 0 0 0 0 0 +20.403 4.008 0.682 0 0 0 0 0 0 0 +18.943 3.781 0.648 0 0 0 0 0 0 0 +39.248 7.991 1.121 0 0 0 0 0 0 0 +39.327 8.136 1.123 0 0 0 0 0 0 0 +39.438 8.288 1.126 0 0 0 0 0 0 0 +39.542 8.375 1.129 0 0 0 0 0 0 0 +39.633 8.524 1.132 0 0 0 0 0 0 0 +39.725 8.675 1.134 0 0 0 0 0 0 0 +39.807 8.824 1.137 0 0 0 0 0 0 0 +39.894 8.975 1.14 0 0 0 0 0 0 0 +39.979 9.126 1.142 0 0 0 0 0 0 0 +40.061 9.278 1.145 0 0 0 0 0 0 0 +40.138 9.362 1.147 0 0 0 0 0 0 0 +40.208 9.511 1.149 0 0 0 0 0 0 0 +40.282 9.663 1.152 0 0 0 0 0 0 0 +40.38 9.821 1.155 0 0 0 0 0 0 0 +40.464 9.976 1.157 0 0 0 0 0 0 0 +40.57 10.137 1.161 0 0 0 0 0 0 0 +40.666 10.297 1.164 0 0 0 0 0 0 0 +40.733 10.382 1.166 0 0 0 0 0 0 0 +40.88 10.557 1.17 0 0 0 0 0 0 0 +41.149 11.041 1.179 0 0 0 0 0 0 0 +41.647 11.668 1.193 0 0 0 0 0 0 0 +41.601 11.796 1.193 0 0 0 0 0 0 0 +41.825 12.002 1.199 0 0 0 0 0 0 0 +42.101 12.368 1.208 0 0 0 0 0 0 0 +42.204 12.543 1.211 0 0 0 0 0 0 0 +42.179 12.607 1.211 0 0 0 0 0 0 0 +50.96 15.762 1.423 0 0 0 0 0 0 0 +36.895 11.787 1.09 0 0 0 0 0 0 0 +36.78 11.877 1.089 0 0 0 0 0 0 0 +36.753 11.932 1.088 0 0 0 0 0 0 0 +36.683 12.037 1.088 0 0 0 0 0 0 0 +36.771 12.194 1.091 0 0 0 0 0 0 0 +36.728 12.308 1.091 0 0 0 0 0 0 0 +46.509 15.756 1.327 0 0 0 0 0 0 0 +46.374 15.873 1.325 0 0 0 0 0 0 0 +46.268 15.918 1.323 0 0 0 0 0 0 0 +46.178 16.049 1.322 0 0 0 0 0 0 0 +46.123 16.193 1.322 0 0 0 0 0 0 0 +33.236 11.778 1.011 0 0 0 0 0 0 0 +33.43 11.965 1.017 0 0 0 0 0 0 0 +46.198 16.71 1.327 0 0 0 0 0 0 0 +46.249 16.893 1.33 0 0 0 0 0 0 0 +71.514 26.263 1.943 0 0 0 0 0 0 0 +71.671 26.577 1.949 0 0 0 0 0 0 0 +71.842 26.897 1.955 0 0 0 0 0 0 0 +34.484 13.02 1.048 0 0 0 0 0 0 0 +35.654 13.591 1.077 0 0 0 0 0 0 0 +35.788 13.771 1.082 0 0 0 0 0 0 0 +34.079 13.235 1.041 0 0 0 0 0 0 0 +34.008 13.269 1.04 0 0 0 0 0 0 0 +35.575 14.01 1.079 0 0 0 0 0 0 0 +35.917 14.276 1.089 0 0 0 0 0 0 0 +35.816 14.366 1.087 0 0 0 0 0 0 0 +35.671 14.438 1.085 0 0 0 0 0 0 0 +35.066 14.322 1.071 0 0 0 0 0 0 0 +34.999 14.423 1.07 0 0 0 0 0 0 0 +34.963 14.536 1.071 0 0 0 0 0 0 0 +34.759 14.516 1.066 0 0 0 0 0 0 0 +35.314 14.878 1.081 0 0 0 0 0 0 0 +34.741 14.765 1.068 0 0 0 0 0 0 0 +34.67 14.864 1.067 0 0 0 0 0 0 0 +34.374 14.865 1.061 0 0 0 0 0 0 0 +34.29 14.956 1.06 0 0 0 0 0 0 0 +34.388 15.128 1.064 0 0 0 0 0 0 0 +34.38 15.189 1.064 0 0 0 0 0 0 0 +34.358 15.308 1.065 0 0 0 0 0 0 0 +41.455 18.633 1.243 0 0 0 0 0 0 0 +41.307 18.722 1.241 0 0 0 0 0 0 0 +41.157 18.811 1.239 0 0 0 0 0 0 0 +41.011 18.9 1.237 0 0 0 0 0 0 0 +40.919 18.935 1.235 0 0 0 0 0 0 0 +40.728 19.002 1.232 0 0 0 0 0 0 0 +40.55 19.074 1.229 0 0 0 0 0 0 0 +40.412 19.165 1.227 0 0 0 0 0 0 0 +40.274 19.255 1.225 0 0 0 0 0 0 0 +40.125 19.338 1.223 0 0 0 0 0 0 0 +39.996 19.431 1.221 0 0 0 0 0 0 0 +39.885 19.454 1.219 0 0 0 0 0 0 0 +39.734 19.536 1.217 0 0 0 0 0 0 0 +39.577 19.613 1.214 0 0 0 0 0 0 0 +39.444 19.702 1.212 0 0 0 0 0 0 0 +39.303 19.786 1.21 0 0 0 0 0 0 0 +39.173 19.875 1.209 0 0 0 0 0 0 0 +29.041 14.841 0.951 0 0 0 0 0 0 0 +38.891 19.962 1.204 0 0 0 0 0 0 0 +38.723 20.03 1.201 0 0 0 0 0 0 0 +38.619 20.13 1.2 0 0 0 0 0 0 0 +38.502 20.224 1.199 0 0 0 0 0 0 0 +38.359 20.302 1.197 0 0 0 0 0 0 0 +38.269 20.409 1.196 0 0 0 0 0 0 0 +38.24 20.548 1.197 0 0 0 0 0 0 0 +38.373 20.697 1.201 0 0 0 0 0 0 0 +38.455 20.898 1.205 0 0 0 0 0 0 0 +42.024 23.011 1.3 0 0 0 0 0 0 0 +41.941 23.137 1.299 0 0 0 0 0 0 0 +41.889 23.281 1.3 0 0 0 0 0 0 0 +41.821 23.415 1.3 0 0 0 0 0 0 0 +41.738 23.541 1.3 0 0 0 0 0 0 0 +41.712 23.613 1.3 0 0 0 0 0 0 0 +41.639 23.745 1.3 0 0 0 0 0 0 0 +41.587 23.888 1.301 0 0 0 0 0 0 0 +41.52 24.024 1.301 0 0 0 0 0 0 0 +41.439 24.151 1.301 0 0 0 0 0 0 0 +41.384 24.294 1.301 0 0 0 0 0 0 0 +36.312 21.466 1.169 0 0 0 0 0 0 0 +36.128 21.511 1.166 0 0 0 0 0 0 0 +36.036 21.533 1.164 0 0 0 0 0 0 0 +35.893 21.6 1.162 0 0 0 0 0 0 0 +35.768 21.679 1.161 0 0 0 0 0 0 0 +35.632 21.749 1.159 0 0 0 0 0 0 0 +35.516 21.832 1.158 0 0 0 0 0 0 0 +35.391 21.908 1.156 0 0 0 0 0 0 0 +35.273 21.989 1.155 0 0 0 0 0 0 0 +35.18 22.008 1.153 0 0 0 0 0 0 0 +35.043 22.076 1.152 0 0 0 0 0 0 0 +34.942 22.166 1.151 0 0 0 0 0 0 0 +29.681 18.955 1.01 0 0 0 0 0 0 0 +29.613 19.042 1.01 0 0 0 0 0 0 0 +29.571 19.147 1.011 0 0 0 0 0 0 0 +34.461 22.396 1.144 0 0 0 0 0 0 0 +34.329 22.463 1.143 0 0 0 0 0 0 0 +13.179 8.664 0.567 0 0 0 0 0 0 0 +13.26 8.777 0.57 0 0 0 0 0 0 0 +33.931 22.662 1.138 0 0 0 0 0 0 0 +33.802 22.73 1.136 0 0 0 0 0 0 0 +33.717 22.827 1.136 0 0 0 0 0 0 0 +33.635 22.848 1.134 0 0 0 0 0 0 0 +33.487 22.902 1.132 0 0 0 0 0 0 0 +33.43 23.017 1.133 0 0 0 0 0 0 0 +33.436 23.177 1.135 0 0 0 0 0 0 0 +33.45 23.343 1.137 0 0 0 0 0 0 0 +33.399 23.464 1.138 0 0 0 0 0 0 0 +33.399 23.62 1.14 0 0 0 0 0 0 0 +33.473 23.752 1.143 0 0 0 0 0 0 0 +33.471 23.909 1.145 0 0 0 0 0 0 0 +33.459 24.06 1.147 0 0 0 0 0 0 0 +33.459 24.22 1.149 0 0 0 0 0 0 0 +33.451 24.374 1.151 0 0 0 0 0 0 0 +33.439 24.527 1.153 0 0 0 0 0 0 0 +33.432 24.684 1.155 0 0 0 0 0 0 0 +33.443 24.854 1.157 0 0 0 0 0 0 0 +33.458 24.948 1.159 0 0 0 0 0 0 0 +33.475 25.125 1.162 0 0 0 0 0 0 0 +33.561 25.354 1.166 0 0 0 0 0 0 0 +33.53 25.497 1.168 0 0 0 0 0 0 0 +33.41 25.572 1.167 0 0 0 0 0 0 0 +33.38 25.715 1.168 0 0 0 0 0 0 0 +33.339 25.851 1.169 0 0 0 0 0 0 0 +17.352 13.483 0.709 0 0 0 0 0 0 0 +33.385 26.14 1.174 0 0 0 0 0 0 0 +6.948 5.484 0.41 0 0 0 0 0 0 0 +6.916 5.495 0.409 0 0 0 0 0 0 0 +6.871 5.494 0.409 0 0 0 0 0 0 0 +6.827 5.494 0.408 0 0 0 0 0 0 0 +6.834 5.518 0.408 0 0 0 0 0 0 0 +6.823 5.544 0.409 0 0 0 0 0 0 0 +6.792 5.554 0.408 0 0 0 0 0 0 0 +6.756 5.56 0.408 0 0 0 0 0 0 0 +6.731 5.575 0.407 0 0 0 0 0 0 0 +6.715 5.597 0.407 0 0 0 0 0 0 0 +11.779 9.939 0.559 0 0 0 0 0 0 0 +11.849 10.063 0.562 0 0 0 0 0 0 0 +11.836 10.116 0.563 0 0 0 0 0 0 0 +11.514 9.902 0.554 0 0 0 0 0 0 0 +11.371 9.841 0.551 0 0 0 0 0 0 0 +11.34 9.877 0.551 0 0 0 0 0 0 0 +11.319 9.922 0.551 0 0 0 0 0 0 0 +11.839 10.412 0.567 0 0 0 0 0 0 0 +11.81 10.453 0.567 0 0 0 0 0 0 0 +11.755 10.47 0.567 0 0 0 0 0 0 0 +11.455 10.266 0.559 0 0 0 0 0 0 0 +11.436 10.314 0.559 0 0 0 0 0 0 0 +11.22 10.183 0.553 0 0 0 0 0 0 0 +11.12 10.189 0.552 0 0 0 0 0 0 0 +11.028 10.232 0.551 0 0 0 0 0 0 0 +10.913 10.189 0.548 0 0 0 0 0 0 0 +10.898 10.24 0.549 0 0 0 0 0 0 0 +10.885 10.292 0.549 0 0 0 0 0 0 0 +10.968 10.436 0.553 0 0 0 0 0 0 0 +10.982 10.483 0.554 0 0 0 0 0 0 0 +10.815 10.388 0.55 0 0 0 0 0 0 0 +10.833 10.471 0.551 0 0 0 0 0 0 0 +11.278 10.971 0.567 0 0 0 0 0 0 0 +10.938 10.707 0.557 0 0 0 0 0 0 0 +15.468 15.348 0.705 0 0 0 0 0 0 0 +15.435 15.364 0.704 0 0 0 0 0 0 0 +15.405 15.431 0.705 0 0 0 0 0 0 0 +15.514 15.638 0.71 0 0 0 0 0 0 0 +15.557 15.88 0.715 0 0 0 0 0 0 0 +32.728 33.659 1.278 0 0 0 0 0 0 0 +32.64 33.781 1.278 0 0 0 0 0 0 0 +32.578 33.822 1.278 0 0 0 0 0 0 0 +32.474 33.927 1.278 0 0 0 0 0 0 0 +32.42 34.084 1.28 0 0 0 0 0 0 0 +32.378 34.255 1.282 0 0 0 0 0 0 0 +32.322 34.412 1.284 0 0 0 0 0 0 0 +32.307 34.613 1.287 0 0 0 0 0 0 0 +32.25 34.77 1.288 0 0 0 0 0 0 0 +32.431 35.076 1.296 0 0 0 0 0 0 0 +32.359 35.219 1.298 0 0 0 0 0 0 0 +32.308 35.387 1.3 0 0 0 0 0 0 0 +32.245 35.542 1.301 0 0 0 0 0 0 0 +32.18 35.695 1.303 0 0 0 0 0 0 0 +32.417 36.186 1.315 0 0 0 0 0 0 0 +32.333 36.321 1.316 0 0 0 0 0 0 0 +32.233 36.439 1.316 0 0 0 0 0 0 0 +20.425 23.149 0.911 0 0 0 0 0 0 0 +20.417 23.287 0.914 0 0 0 0 0 0 0 +19.951 23.046 0.903 0 0 0 0 0 0 0 +20.035 23.29 0.908 0 0 0 0 0 0 0 +19.988 23.383 0.909 0 0 0 0 0 0 0 +19.685 23.176 0.901 0 0 0 0 0 0 0 +19.619 23.172 0.9 0 0 0 0 0 0 0 +19.764 23.492 0.907 0 0 0 0 0 0 0 +19.736 23.61 0.909 0 0 0 0 0 0 0 +19.732 23.756 0.912 0 0 0 0 0 0 0 +19.628 23.782 0.911 0 0 0 0 0 0 0 +19.542 23.83 0.91 0 0 0 0 0 0 0 +19.165 23.596 0.901 0 0 0 0 0 0 0 +18.828 23.33 0.891 0 0 0 0 0 0 0 +18.299 22.82 0.874 0 0 0 0 0 0 0 +18.146 22.775 0.872 0 0 0 0 0 0 0 +18.345 23.174 0.881 0 0 0 0 0 0 0 +18.752 23.844 0.899 0 0 0 0 0 0 0 +18.59 23.714 0.895 0 0 0 0 0 0 0 +30.597 39.311 1.343 0 0 0 0 0 0 0 +17.756 22.944 0.869 0 0 0 0 0 0 0 +17.715 23.039 0.87 0 0 0 0 0 0 0 +30.407 39.836 1.35 0 0 0 0 0 0 0 +30.311 39.97 1.351 0 0 0 0 0 0 0 +30.22 40.111 1.352 0 0 0 0 0 0 0 +30.1 40.214 1.352 0 0 0 0 0 0 0 +30.077 40.316 1.354 0 0 0 0 0 0 0 +29.99 40.463 1.355 0 0 0 0 0 0 0 +29.91 40.621 1.357 0 0 0 0 0 0 0 +29.761 40.686 1.356 0 0 0 0 0 0 0 +29.733 40.917 1.36 0 0 0 0 0 0 0 +29.652 41.077 1.362 0 0 0 0 0 0 0 +29.564 41.228 1.364 0 0 0 0 0 0 0 +29.561 41.361 1.366 0 0 0 0 0 0 0 +29.605 41.698 1.373 0 0 0 0 0 0 0 +29.522 41.859 1.375 0 0 0 0 0 0 0 +29.413 41.985 1.376 0 0 0 0 0 0 0 +26.956 38.733 1.283 0 0 0 0 0 0 0 +26.869 38.867 1.284 0 0 0 0 0 0 0 +26.805 39.036 1.287 0 0 0 0 0 0 0 +27.06 39.674 1.302 0 0 0 0 0 0 0 +29.059 42.754 1.386 0 0 0 0 0 0 0 +28.972 42.914 1.388 0 0 0 0 0 0 0 +28.876 43.063 1.389 0 0 0 0 0 0 0 +28.785 43.22 1.391 0 0 0 0 0 0 0 +28.661 43.329 1.392 0 0 0 0 0 0 0 +28.469 43.334 1.389 0 0 0 0 0 0 0 +28.427 43.418 1.39 0 0 0 0 0 0 0 +28.333 43.573 1.392 0 0 0 0 0 0 0 +28.218 43.697 1.393 0 0 0 0 0 0 0 +28.146 43.886 1.396 0 0 0 0 0 0 0 +28.059 44.056 1.398 0 0 0 0 0 0 0 +18.602 29.393 1.001 0 0 0 0 0 0 0 +18.453 29.362 0.998 0 0 0 0 0 0 0 +18.341 29.389 0.997 0 0 0 0 0 0 0 +18.317 29.454 0.998 0 0 0 0 0 0 0 +18.28 29.601 1.001 0 0 0 0 0 0 0 +25.848 42.172 1.335 0 0 0 0 0 0 0 +29.999 49.299 1.523 0 0 0 0 0 0 0 +29.888 49.467 1.525 0 0 0 0 0 0 0 +29.758 49.603 1.526 0 0 0 0 0 0 0 +29.632 49.746 1.527 0 0 0 0 0 0 0 +29.961 50.479 1.545 0 0 0 0 0 0 0 +29.85 50.654 1.547 0 0 0 0 0 0 0 +29.716 50.792 1.549 0 0 0 0 0 0 0 +29.585 50.934 1.55 0 0 0 0 0 0 0 +29.447 51.065 1.551 0 0 0 0 0 0 0 +29.324 51.223 1.553 0 0 0 0 0 0 0 +29.195 51.372 1.554 0 0 0 0 0 0 0 +26.387 46.595 1.428 0 0 0 0 0 0 0 +26.248 46.692 1.428 0 0 0 0 0 0 0 +26.127 46.82 1.429 0 0 0 0 0 0 0 +26.009 46.956 1.431 0 0 0 0 0 0 0 +25.902 47.111 1.433 0 0 0 0 0 0 0 +12.612 23.256 0.811 0 0 0 0 0 0 0 +12.553 23.235 0.81 0 0 0 0 0 0 0 +12.424 23.17 0.807 0 0 0 0 0 0 0 +12.404 23.308 0.81 0 0 0 0 0 0 0 +12.403 23.483 0.813 0 0 0 0 0 0 0 +25.225 48.185 1.447 0 0 0 0 0 0 0 +25.095 48.306 1.448 0 0 0 0 0 0 0 +24.96 48.417 1.449 0 0 0 0 0 0 0 +24.913 48.513 1.45 0 0 0 0 0 0 0 +24.699 48.47 1.447 0 0 0 0 0 0 0 +24.548 48.551 1.447 0 0 0 0 0 0 0 +14.818 29.514 0.96 0 0 0 0 0 0 0 +14.683 29.709 0.963 0 0 0 0 0 0 0 +14.633 30.203 0.973 0 0 0 0 0 0 0 +23.88 49.725 1.465 0 0 0 0 0 0 0 +17.25 36.195 1.121 0 0 0 0 0 0 0 +17.243 36.475 1.127 0 0 0 0 0 0 0 +15.547 33.15 1.042 0 0 0 0 0 0 0 +16.442 35.351 1.096 0 0 0 0 0 0 0 +14.08 30.515 0.974 0 0 0 0 0 0 0 +16.273 35.423 1.096 0 0 0 0 0 0 0 +16.169 35.492 1.097 0 0 0 0 0 0 0 +16.265 36.002 1.108 0 0 0 0 0 0 0 +13.398 29.895 0.954 0 0 0 0 0 0 0 +13.317 29.968 0.955 0 0 0 0 0 0 0 +13.417 30.45 0.966 0 0 0 0 0 0 0 +13.358 30.577 0.968 0 0 0 0 0 0 0 +15.538 35.73 1.096 0 0 0 0 0 0 0 +22.178 51.468 1.485 0 0 0 0 0 0 0 +14.554 34.046 1.052 0 0 0 0 0 0 0 +14.552 34.342 1.058 0 0 0 0 0 0 0 +15.209 36.211 1.103 0 0 0 0 0 0 0 +14.789 35.522 1.085 0 0 0 0 0 0 0 +14.699 35.622 1.086 0 0 0 0 0 0 0 +14.651 35.664 1.086 0 0 0 0 0 0 0 +14.568 35.78 1.088 0 0 0 0 0 0 0 +14.458 35.833 1.088 0 0 0 0 0 0 0 +14.792 36.996 1.116 0 0 0 0 0 0 0 +14.731 37.184 1.119 0 0 0 0 0 0 0 +20.587 52.473 1.492 0 0 0 0 0 0 0 +20.44 52.586 1.493 0 0 0 0 0 0 0 +20.371 52.652 1.494 0 0 0 0 0 0 0 +20.23 52.781 1.496 0 0 0 0 0 0 0 +20.086 52.9 1.497 0 0 0 0 0 0 0 +19.932 52.997 1.498 0 0 0 0 0 0 0 +19.81 53.179 1.501 0 0 0 0 0 0 0 +19.545 52.977 1.494 0 0 0 0 0 0 0 +19.319 52.873 1.49 0 0 0 0 0 0 0 +19.129 52.869 1.489 0 0 0 0 0 0 0 +19.04 52.882 1.488 0 0 0 0 0 0 0 +18.877 52.949 1.489 0 0 0 0 0 0 0 +18.733 53.074 1.49 0 0 0 0 0 0 0 +18.613 53.267 1.493 0 0 0 0 0 0 0 +18.642 53.892 1.507 0 0 0 0 0 0 0 +18.505 54.045 1.509 0 0 0 0 0 0 0 +18.35 54.148 1.51 0 0 0 0 0 0 0 +18.278 54.215 1.511 0 0 0 0 0 0 0 +18.129 54.337 1.513 0 0 0 0 0 0 0 +18.022 54.587 1.518 0 0 0 0 0 0 0 +18.437 58.3 1.601 0 0 0 0 0 0 0 +13.079 42.022 1.211 0 0 0 0 0 0 0 +12.99 42.203 1.214 0 0 0 0 0 0 0 +12.62 42.419 1.216 0 0 0 0 0 0 0 +19.279 65.604 1.766 0 0 0 0 0 0 0 +19.62 67.948 1.819 0 0 0 0 0 0 0 +13.456 52.398 1.44 0 0 0 0 0 0 0 +16.377 72.76 1.907 0 0 0 0 0 0 0 +16.25 72.727 1.906 0 0 0 0 0 0 0 +16.016 72.757 1.905 0 0 0 0 0 0 0 +15.78 72.769 1.904 0 0 0 0 0 0 0 +2.623 12.872 0.507 0 0 0 0 0 0 0 +2.575 12.843 0.507 0 0 0 0 0 0 0 +3.458 17.578 0.616 0 0 0 0 0 0 0 +3.404 17.599 0.617 0 0 0 0 0 0 0 +3.35 17.614 0.617 0 0 0 0 0 0 0 +3.794 22.056 0.718 0 0 0 0 0 0 0 +3.729 22.092 0.719 0 0 0 0 0 0 0 +3.634 21.949 0.715 0 0 0 0 0 0 0 +0.586 3.545 0.29 0 0 0 0 0 0 0 +0.577 3.52 0.29 0 0 0 0 0 0 0 +3.584 22.075 0.718 0 0 0 0 0 0 0 +0.567 3.532 0.29 0 0 0 0 0 0 0 +0.555 3.526 0.29 0 0 0 0 0 0 0 +0.541 3.512 0.289 0 0 0 0 0 0 0 +0.531 3.517 0.289 0 0 0 0 0 0 0 +0.524 3.549 0.29 0 0 0 0 0 0 0 +0.509 3.524 0.289 0 0 0 0 0 0 0 +0.504 3.527 0.289 0 0 0 0 0 0 0 +0.494 3.539 0.29 0 0 0 0 0 0 0 +0.491 3.6 0.291 0 0 0 0 0 0 0 +0.481 3.609 0.291 0 0 0 0 0 0 0 +0.466 3.583 0.291 0 0 0 0 0 0 0 +0.444 3.493 0.288 0 0 0 0 0 0 0 +0.417 3.363 0.285 0 0 0 0 0 0 0 +0.402 3.278 0.283 0 0 0 0 0 0 0 +0.335 3.286 0.283 0 0 0 0 0 0 0 +0.273 3.292 0.283 0 0 0 0 0 0 0 +0.257 3.279 0.283 0 0 0 0 0 0 0 +0.247 3.294 0.283 0 0 0 0 0 0 0 +0.228 3.321 0.284 0 0 0 0 0 0 0 +0.216 3.296 0.283 0 0 0 0 0 0 0 +0.205 3.283 0.283 0 0 0 0 0 0 0 +0.18 3.298 0.283 0 0 0 0 0 0 0 +0.17 3.299 0.283 0 0 0 0 0 0 0 +0.012 32.216 0.942 0 0 0 0 0 0 0 +-0.27 30.043 0.893 0 0 0 0 0 0 0 +-0.356 29.4 0.878 0 0 0 0 0 0 0 +-0.393 28.772 0.864 0 0 0 0 0 0 0 +-0.473 28.167 0.85 0 0 0 0 0 0 0 +-0.549 27.581 0.837 0 0 0 0 0 0 0 +-0.623 27.022 0.824 0 0 0 0 0 0 0 +-0.693 26.486 0.812 0 0 0 0 0 0 0 +-0.761 25.984 0.8 0 0 0 0 0 0 0 +-0.826 25.476 0.789 0 0 0 0 0 0 0 +-0.85 25.007 0.778 0 0 0 0 0 0 0 +-0.912 24.575 0.768 0 0 0 0 0 0 0 +-0.97 24.12 0.758 0 0 0 0 0 0 0 +-1.086 23.355 0.741 0 0 0 0 0 0 0 +-1.147 23.117 0.735 0 0 0 0 0 0 0 +-1.187 22.515 0.722 0 0 0 0 0 0 0 +-1.201 22.118 0.713 0 0 0 0 0 0 0 +-1.251 21.782 0.705 0 0 0 0 0 0 0 +-1.299 21.449 0.698 0 0 0 0 0 0 0 +-1.47 20.103 0.667 0 0 0 0 0 0 0 +-1.497 20.047 0.666 0 0 0 0 0 0 0 +-1.556 19.988 0.665 0 0 0 0 0 0 0 +-1.563 19.304 0.649 0 0 0 0 0 0 0 +-1.705 17.924 0.618 0 0 0 0 0 0 0 +-1.745 17.764 0.615 0 0 0 0 0 0 0 +-2.978 25.979 0.804 0 0 0 0 0 0 0 +-3.028 25.706 0.798 0 0 0 0 0 0 0 +-1.92 16.162 0.579 0 0 0 0 0 0 0 +-1.955 16.027 0.576 0 0 0 0 0 0 0 +-3.08 23.898 0.757 0 0 0 0 0 0 0 +-3.198 24.209 0.764 0 0 0 0 0 0 0 +-3.242 23.967 0.759 0 0 0 0 0 0 0 +-3.301 23.838 0.756 0 0 0 0 0 0 0 +-3.369 24.055 0.761 0 0 0 0 0 0 0 +-2.179 15.275 0.56 0 0 0 0 0 0 0 +-2.121 14.239 0.536 0 0 0 0 0 0 0 +-2.168 14.25 0.537 0 0 0 0 0 0 0 +-3.494 21.94 0.714 0 0 0 0 0 0 0 +-3.516 21.859 0.713 0 0 0 0 0 0 0 +-2.393 14.636 0.546 0 0 0 0 0 0 0 +-2.411 14.467 0.542 0 0 0 0 0 0 0 +-2.43 14.305 0.539 0 0 0 0 0 0 0 +-2.452 14.165 0.536 0 0 0 0 0 0 0 +-2.474 14.028 0.533 0 0 0 0 0 0 0 +-2.49 13.868 0.529 0 0 0 0 0 0 0 +-2.336 12.462 0.497 0 0 0 0 0 0 0 +-2.477 12.559 0.5 0 0 0 0 0 0 0 +-2.511 12.523 0.499 0 0 0 0 0 0 0 +-2.55 12.513 0.499 0 0 0 0 0 0 0 +-2.571 12.515 0.499 0 0 0 0 0 0 0 +-2.563 10.84 0.462 0 0 0 0 0 0 0 +-2.541 10.603 0.457 0 0 0 0 0 0 0 +-2.6 10.698 0.459 0 0 0 0 0 0 0 +-2.631 10.68 0.459 0 0 0 0 0 0 0 +-4.268 17.142 0.611 0 0 0 0 0 0 0 +-4.346 17.001 0.608 0 0 0 0 0 0 0 +-2.812 9.113 0.425 0 0 0 0 0 0 0 +-2.825 9.053 0.424 0 0 0 0 0 0 0 +-2.834 8.985 0.423 0 0 0 0 0 0 0 +-2.828 8.918 0.421 0 0 0 0 0 0 0 +-2.856 8.909 0.421 0 0 0 0 0 0 0 +-2.874 8.868 0.421 0 0 0 0 0 0 0 +-2.888 8.817 0.42 0 0 0 0 0 0 0 +-2.861 8.644 0.416 0 0 0 0 0 0 0 +-2.94 8.698 0.417 0 0 0 0 0 0 0 +-2.964 8.724 0.418 0 0 0 0 0 0 0 +-2.966 8.641 0.416 0 0 0 0 0 0 0 +-2.978 8.59 0.415 0 0 0 0 0 0 0 +-2.998 8.56 0.415 0 0 0 0 0 0 0 +-3.011 8.513 0.414 0 0 0 0 0 0 0 +-3.023 8.462 0.413 0 0 0 0 0 0 0 +-3.041 8.43 0.412 0 0 0 0 0 0 0 +-3.042 8.389 0.412 0 0 0 0 0 0 0 +-3.06 8.357 0.411 0 0 0 0 0 0 0 +-3.075 8.319 0.41 0 0 0 0 0 0 0 +-3.089 8.278 0.41 0 0 0 0 0 0 0 +-3.102 8.233 0.409 0 0 0 0 0 0 0 +-3.122 8.208 0.408 0 0 0 0 0 0 0 +-3.135 8.165 0.407 0 0 0 0 0 0 0 +-3.146 8.117 0.407 0 0 0 0 0 0 0 +-3.148 8.085 0.406 0 0 0 0 0 0 0 +-3.165 8.054 0.405 0 0 0 0 0 0 0 +-3.175 8.007 0.404 0 0 0 0 0 0 0 +-3.189 7.969 0.404 0 0 0 0 0 0 0 +-3.208 7.942 0.403 0 0 0 0 0 0 0 +-3.217 7.894 0.402 0 0 0 0 0 0 0 +-3.233 7.863 0.402 0 0 0 0 0 0 0 +-3.239 7.843 0.402 0 0 0 0 0 0 0 +-3.804 9.12 0.433 0 0 0 0 0 0 0 +-3.843 9.132 0.434 0 0 0 0 0 0 0 +-3.803 8.958 0.43 0 0 0 0 0 0 0 +-3.923 9.159 0.435 0 0 0 0 0 0 0 +-3.3 7.585 0.397 0 0 0 0 0 0 0 +-3.227 7.386 0.392 0 0 0 0 0 0 0 +-3.333 7.562 0.396 0 0 0 0 0 0 0 +-3.44 7.674 0.4 0 0 0 0 0 0 0 +-3.464 7.663 0.4 0 0 0 0 0 0 0 +-3.49 7.656 0.4 0 0 0 0 0 0 0 +-3.519 7.656 0.4 0 0 0 0 0 0 0 +-3.541 7.67 0.401 0 0 0 0 0 0 0 +-3.571 7.671 0.401 0 0 0 0 0 0 0 +-3.605 7.682 0.402 0 0 0 0 0 0 0 +-3.633 7.68 0.402 0 0 0 0 0 0 0 +-3.667 7.688 0.402 0 0 0 0 0 0 0 +-3.697 7.689 0.403 0 0 0 0 0 0 0 +-3.727 7.688 0.403 0 0 0 0 0 0 0 +-3.761 7.698 0.403 0 0 0 0 0 0 0 +-3.778 7.701 0.404 0 0 0 0 0 0 0 +-3.812 7.709 0.404 0 0 0 0 0 0 0 +-3.841 7.706 0.404 0 0 0 0 0 0 0 +-3.874 7.711 0.405 0 0 0 0 0 0 0 +-3.907 7.717 0.405 0 0 0 0 0 0 0 +-3.938 7.717 0.406 0 0 0 0 0 0 0 +-3.97 7.721 0.406 0 0 0 0 0 0 0 +-3.995 7.739 0.407 0 0 0 0 0 0 0 +-4.022 7.732 0.407 0 0 0 0 0 0 0 +-4.054 7.733 0.407 0 0 0 0 0 0 0 +-4.088 7.738 0.408 0 0 0 0 0 0 0 +-4.125 7.75 0.408 0 0 0 0 0 0 0 +-4.159 7.755 0.409 0 0 0 0 0 0 0 +-4.185 7.745 0.409 0 0 0 0 0 0 0 +-4.217 7.746 0.409 0 0 0 0 0 0 0 +-4.243 7.764 0.41 0 0 0 0 0 0 0 +-4.274 7.763 0.41 0 0 0 0 0 0 0 +-4.31 7.77 0.411 0 0 0 0 0 0 0 +-4.342 7.771 0.411 0 0 0 0 0 0 0 +-4.377 7.774 0.411 0 0 0 0 0 0 0 +-4.413 7.781 0.412 0 0 0 0 0 0 0 +-4.445 7.781 0.412 0 0 0 0 0 0 0 +-4.472 7.799 0.413 0 0 0 0 0 0 0 +-4.51 7.809 0.414 0 0 0 0 0 0 0 +-4.548 7.817 0.414 0 0 0 0 0 0 0 +-4.58 7.816 0.415 0 0 0 0 0 0 0 +-4.618 7.824 0.415 0 0 0 0 0 0 0 +-4.649 7.82 0.415 0 0 0 0 0 0 0 +-4.687 7.828 0.416 0 0 0 0 0 0 0 +-4.706 7.832 0.416 0 0 0 0 0 0 0 +-4.747 7.843 0.417 0 0 0 0 0 0 0 +-4.784 7.849 0.418 0 0 0 0 0 0 0 +-4.815 7.844 0.418 0 0 0 0 0 0 0 +-4.85 7.845 0.418 0 0 0 0 0 0 0 +-4.893 7.859 0.419 0 0 0 0 0 0 0 +-4.925 7.855 0.419 0 0 0 0 0 0 0 +-4.941 7.854 0.42 0 0 0 0 0 0 0 +-4.974 7.851 0.42 0 0 0 0 0 0 0 +-5.021 7.87 0.421 0 0 0 0 0 0 0 +-5.031 7.833 0.42 0 0 0 0 0 0 0 +-5.076 7.847 0.421 0 0 0 0 0 0 0 +-5.058 7.766 0.419 0 0 0 0 0 0 0 +-5.137 7.781 0.421 0 0 0 0 0 0 0 +-17.115 25.549 0.909 0 0 0 0 0 0 0 +-17.2 25.504 0.909 0 0 0 0 0 0 0 +-17.241 25.392 0.907 0 0 0 0 0 0 0 +-43.518 63.591 1.963 0 0 0 0 0 0 0 +-5.526 8.007 0.43 0 0 0 0 0 0 0 +-5.521 7.973 0.429 0 0 0 0 0 0 0 +-41.637 58.644 1.846 0 0 0 0 0 0 0 +-41.876 58.591 1.849 0 0 0 0 0 0 0 +-45.18 62.791 1.97 0 0 0 0 0 0 0 +-45.313 62.561 1.968 0 0 0 0 0 0 0 +-45.583 62.726 1.974 0 0 0 0 0 0 0 +-22.131 30.276 1.062 0 0 0 0 0 0 0 +-47.215 63.699 2.014 0 0 0 0 0 0 0 +-48.453 63.473 2.027 0 0 0 0 0 0 0 +-48.598 63.251 2.025 0 0 0 0 0 0 0 +-48.736 63.019 2.023 0 0 0 0 0 0 0 +-48.869 62.784 2.02 0 0 0 0 0 0 0 +-49.025 62.576 2.019 0 0 0 0 0 0 0 +-31.13 35.319 1.281 0 0 0 0 0 0 0 +-31.096 34.836 1.272 0 0 0 0 0 0 0 +-31.199 34.731 1.272 0 0 0 0 0 0 0 +-31.187 34.609 1.269 0 0 0 0 0 0 0 +-45.491 50.147 1.75 0 0 0 0 0 0 0 +-45.864 50.24 1.758 0 0 0 0 0 0 0 +-46.023 50.097 1.758 0 0 0 0 0 0 0 +-45.112 48.797 1.722 0 0 0 0 0 0 0 +-46.225 49.219 1.746 0 0 0 0 0 0 0 +-21.129 22.237 0.907 0 0 0 0 0 0 0 +-21.182 22.153 0.906 0 0 0 0 0 0 0 +-21.346 22.184 0.909 0 0 0 0 0 0 0 +-21.413 22.114 0.909 0 0 0 0 0 0 0 +-21.745 22.316 0.918 0 0 0 0 0 0 0 +-21.459 21.954 0.907 0 0 0 0 0 0 0 +-21.311 21.666 0.9 0 0 0 0 0 0 0 +-43.023 43.429 1.601 0 0 0 0 0 0 0 +-44.44 44.578 1.642 0 0 0 0 0 0 0 +-49.247 49.086 1.792 0 0 0 0 0 0 0 +-18.709 18.437 0.807 0 0 0 0 0 0 0 +-18.709 18.323 0.805 0 0 0 0 0 0 0 +-18.953 18.503 0.812 0 0 0 0 0 0 0 +-44.519 41.805 1.599 0 0 0 0 0 0 0 +-44.289 41.459 1.59 0 0 0 0 0 0 0 +-44.34 41.246 1.588 0 0 0 0 0 0 0 +-32.437 29.993 1.214 0 0 0 0 0 0 0 +-32.472 29.837 1.213 0 0 0 0 0 0 0 +-32.588 29.755 1.213 0 0 0 0 0 0 0 +-35.97 32.633 1.314 0 0 0 0 0 0 0 +-36.019 32.472 1.313 0 0 0 0 0 0 0 +-17.312 15.576 0.739 0 0 0 0 0 0 0 +-17.336 15.499 0.738 0 0 0 0 0 0 0 +-17.38 15.441 0.738 0 0 0 0 0 0 0 +-17.326 15.296 0.735 0 0 0 0 0 0 0 +-17.401 15.265 0.735 0 0 0 0 0 0 0 +-17.36 15.133 0.733 0 0 0 0 0 0 0 +-17.471 15.133 0.735 0 0 0 0 0 0 0 +-17.527 15.133 0.736 0 0 0 0 0 0 0 +-17.524 15.035 0.734 0 0 0 0 0 0 0 +-17.554 14.966 0.734 0 0 0 0 0 0 0 +-17.649 14.951 0.735 0 0 0 0 0 0 0 +-17.691 14.891 0.735 0 0 0 0 0 0 0 +-17.569 14.695 0.73 0 0 0 0 0 0 0 +-17.846 14.831 0.737 0 0 0 0 0 0 0 +-18.049 14.904 0.741 0 0 0 0 0 0 0 +-36.393 29.921 1.281 0 0 0 0 0 0 0 +-36.551 29.86 1.283 0 0 0 0 0 0 0 +-36.6 29.708 1.282 0 0 0 0 0 0 0 +-36.617 29.532 1.28 0 0 0 0 0 0 0 +-36.63 29.353 1.277 0 0 0 0 0 0 0 +-36.661 29.189 1.276 0 0 0 0 0 0 0 +-36.697 29.03 1.274 0 0 0 0 0 0 0 +-36.657 28.905 1.272 0 0 0 0 0 0 0 +-36.535 28.623 1.265 0 0 0 0 0 0 0 +-18.348 14.299 0.738 0 0 0 0 0 0 0 +-18.244 14.126 0.734 0 0 0 0 0 0 0 +-18.248 14.037 0.733 0 0 0 0 0 0 0 +-18.263 13.958 0.732 0 0 0 0 0 0 0 +-18.358 13.939 0.733 0 0 0 0 0 0 0 +-18.447 13.961 0.735 0 0 0 0 0 0 0 +-18.417 13.848 0.733 0 0 0 0 0 0 0 +-18.382 13.731 0.731 0 0 0 0 0 0 0 +-36.638 27.158 1.247 0 0 0 0 0 0 0 +-18.877 13.916 0.742 0 0 0 0 0 0 0 +-36.673 26.828 1.243 0 0 0 0 0 0 0 +-36.805 26.748 1.245 0 0 0 0 0 0 0 +-36.901 26.729 1.246 0 0 0 0 0 0 0 +-37.041 26.654 1.248 0 0 0 0 0 0 0 +-37.196 26.588 1.25 0 0 0 0 0 0 0 +-37.234 26.439 1.248 0 0 0 0 0 0 0 +-19.108 13.493 0.741 0 0 0 0 0 0 0 +-19.148 13.432 0.741 0 0 0 0 0 0 0 +-19.271 13.428 0.743 0 0 0 0 0 0 0 +-19.396 13.469 0.746 0 0 0 0 0 0 0 +-19.354 13.35 0.744 0 0 0 0 0 0 0 +-6.695 4.608 0.393 0 0 0 0 0 0 0 +-6.703 4.583 0.393 0 0 0 0 0 0 0 +-6.714 4.559 0.393 0 0 0 0 0 0 0 +-6.709 4.525 0.393 0 0 0 0 0 0 0 +-6.723 4.504 0.393 0 0 0 0 0 0 0 +-6.721 4.488 0.392 0 0 0 0 0 0 0 +-6.725 4.46 0.392 0 0 0 0 0 0 0 +-6.733 4.434 0.392 0 0 0 0 0 0 0 +-6.745 4.412 0.392 0 0 0 0 0 0 0 +-6.739 4.378 0.391 0 0 0 0 0 0 0 +-6.744 4.351 0.391 0 0 0 0 0 0 0 +-6.761 4.332 0.391 0 0 0 0 0 0 0 +-6.759 4.301 0.391 0 0 0 0 0 0 0 +-6.769 4.293 0.391 0 0 0 0 0 0 0 +-6.773 4.265 0.391 0 0 0 0 0 0 0 +-6.625 4.144 0.386 0 0 0 0 0 0 0 +-6.776 4.208 0.39 0 0 0 0 0 0 0 +-36.732 22.518 1.19 0 0 0 0 0 0 0 +-36.815 22.409 1.19 0 0 0 0 0 0 0 +-36.45 21.953 1.177 0 0 0 0 0 0 0 +-36.454 21.8 1.176 0 0 0 0 0 0 0 +-36.453 21.644 1.174 0 0 0 0 0 0 0 +-36.437 21.48 1.172 0 0 0 0 0 0 0 +-36.442 21.329 1.17 0 0 0 0 0 0 0 +-36.417 21.161 1.168 0 0 0 0 0 0 0 +-36.404 21.001 1.165 0 0 0 0 0 0 0 +-36.346 20.892 1.163 0 0 0 0 0 0 0 +-12.502 7.154 0.536 0 0 0 0 0 0 0 +-12.509 7.106 0.536 0 0 0 0 0 0 0 +-12.552 7.078 0.536 0 0 0 0 0 0 0 +-12.625 7.067 0.538 0 0 0 0 0 0 0 +-12.376 6.877 0.531 0 0 0 0 0 0 0 +-12.357 6.816 0.53 0 0 0 0 0 0 0 +-12.378 6.802 0.53 0 0 0 0 0 0 0 +-12.393 6.76 0.53 0 0 0 0 0 0 0 +-12.421 6.674 0.529 0 0 0 0 0 0 0 +-36.047 18.878 1.135 0 0 0 0 0 0 0 +-36.008 18.786 1.133 0 0 0 0 0 0 0 +-35.972 18.624 1.131 0 0 0 0 0 0 0 +-35.968 18.479 1.129 0 0 0 0 0 0 0 +-35.93 18.317 1.127 0 0 0 0 0 0 0 +-35.918 18.168 1.125 0 0 0 0 0 0 0 +-35.891 18.013 1.123 0 0 0 0 0 0 0 +-35.879 17.867 1.121 0 0 0 0 0 0 0 +-35.858 17.716 1.119 0 0 0 0 0 0 0 +-35.791 17.613 1.117 0 0 0 0 0 0 0 +-35.774 17.465 1.115 0 0 0 0 0 0 0 +-14.496 7.038 0.575 0 0 0 0 0 0 0 +-14.467 6.968 0.574 0 0 0 0 0 0 0 +-14.648 6.998 0.578 0 0 0 0 0 0 0 +-14.889 6.998 0.583 0 0 0 0 0 0 0 +-14.962 7.004 0.585 0 0 0 0 0 0 0 +-15.011 6.969 0.585 0 0 0 0 0 0 0 +-15.247 7.02 0.591 0 0 0 0 0 0 0 +-36.803 16.765 1.129 0 0 0 0 0 0 0 +-37.105 16.762 1.136 0 0 0 0 0 0 0 +-37.285 16.703 1.139 0 0 0 0 0 0 0 +-35.35 15.705 1.089 0 0 0 0 0 0 0 +-35.287 15.61 1.087 0 0 0 0 0 0 0 +-35.261 15.466 1.085 0 0 0 0 0 0 0 +-35.212 15.313 1.083 0 0 0 0 0 0 0 +-35.181 15.169 1.081 0 0 0 0 0 0 0 +-35.131 15.016 1.078 0 0 0 0 0 0 0 +-35.092 14.869 1.076 0 0 0 0 0 0 0 +-35.05 14.722 1.074 0 0 0 0 0 0 0 +-34.982 14.629 1.072 0 0 0 0 0 0 0 +-34.932 14.479 1.07 0 0 0 0 0 0 0 +-34.892 14.335 1.067 0 0 0 0 0 0 0 +-34.858 14.193 1.065 0 0 0 0 0 0 0 +-34.791 14.038 1.063 0 0 0 0 0 0 0 +-34.859 13.939 1.063 0 0 0 0 0 0 0 +-34.795 13.786 1.061 0 0 0 0 0 0 0 +-35.201 13.883 1.07 0 0 0 0 0 0 0 +-35.375 13.823 1.073 0 0 0 0 0 0 0 +-35.014 13.556 1.063 0 0 0 0 0 0 0 +-34.783 13.341 1.057 0 0 0 0 0 0 0 +-29.644 11.268 0.931 0 0 0 0 0 0 0 +-29.674 11.173 0.93 0 0 0 0 0 0 0 +-29.73 11.087 0.931 0 0 0 0 0 0 0 +-29.741 11.038 0.931 0 0 0 0 0 0 0 +-29.723 10.925 0.93 0 0 0 0 0 0 0 +-29.752 10.83 0.929 0 0 0 0 0 0 0 +-29.814 10.747 0.93 0 0 0 0 0 0 0 +-29.934 10.684 0.932 0 0 0 0 0 0 0 +-34.071 12.036 1.031 0 0 0 0 0 0 0 +-34.018 11.897 1.029 0 0 0 0 0 0 0 +-33.95 11.813 1.027 0 0 0 0 0 0 0 +-33.913 11.681 1.025 0 0 0 0 0 0 0 +-33.849 11.541 1.023 0 0 0 0 0 0 0 +-33.808 11.408 1.021 0 0 0 0 0 0 0 +-33.726 11.263 1.018 0 0 0 0 0 0 0 +-33.782 11.164 1.019 0 0 0 0 0 0 0 +-33.708 11.022 1.016 0 0 0 0 0 0 0 +-34.021 11.065 1.023 0 0 0 0 0 0 0 +-36.435 11.722 1.08 0 0 0 0 0 0 0 +-33.673 10.602 1.012 0 0 0 0 0 0 0 +-33.571 10.454 1.009 0 0 0 0 0 0 0 +-34.045 10.484 1.02 0 0 0 0 0 0 0 +-33.171 10.045 0.998 0 0 0 0 0 0 0 +-33.143 9.923 0.996 0 0 0 0 0 0 0 +-33.078 9.791 0.994 0 0 0 0 0 0 0 +-33.017 9.66 0.992 0 0 0 0 0 0 0 +-32.959 9.531 0.99 0 0 0 0 0 0 0 +-32.89 9.399 0.987 0 0 0 0 0 0 0 +-32.824 9.269 0.985 0 0 0 0 0 0 0 +-32.774 9.143 0.983 0 0 0 0 0 0 0 +-32.691 9.065 0.981 0 0 0 0 0 0 0 +-32.62 8.935 0.979 0 0 0 0 0 0 0 +-32.564 8.81 0.977 0 0 0 0 0 0 0 +-32.488 8.68 0.974 0 0 0 0 0 0 0 +-32.408 8.55 0.972 0 0 0 0 0 0 0 +-32.46 8.455 0.972 0 0 0 0 0 0 0 +-32.547 8.368 0.974 0 0 0 0 0 0 0 +-32.569 8.319 0.974 0 0 0 0 0 0 0 +-33.001 8.319 0.983 0 0 0 0 0 0 0 +-32.283 7.923 0.965 0 0 0 0 0 0 0 +-32.092 7.77 0.96 0 0 0 0 0 0 0 +-32.832 7.839 0.977 0 0 0 0 0 0 0 +-31.724 7.365 0.95 0 0 0 0 0 0 0 +-31.675 7.301 0.949 0 0 0 0 0 0 0 +-31.608 7.182 0.947 0 0 0 0 0 0 0 +-31.55 7.064 0.945 0 0 0 0 0 0 0 +-31.471 6.943 0.942 0 0 0 0 0 0 0 +-31.403 6.825 0.94 0 0 0 0 0 0 0 +-31.346 6.709 0.938 0 0 0 0 0 0 0 +-31.269 6.59 0.936 0 0 0 0 0 0 0 +-31.201 6.525 0.934 0 0 0 0 0 0 0 +-31.133 6.409 0.932 0 0 0 0 0 0 0 +-31.069 6.294 0.93 0 0 0 0 0 0 0 +-30.953 6.169 0.927 0 0 0 0 0 0 0 +-30.882 6.054 0.925 0 0 0 0 0 0 0 +-30.818 5.941 0.923 0 0 0 0 0 0 0 +-30.909 5.858 0.925 0 0 0 0 0 0 0 +-30.854 5.798 0.923 0 0 0 0 0 0 0 +-30.99 5.722 0.926 0 0 0 0 0 0 0 +-31.34 5.685 0.934 0 0 0 0 0 0 0 +-30.65 5.362 0.917 0 0 0 0 0 0 0 +-30.843 5.295 0.921 0 0 0 0 0 0 0 +-32.157 5.416 0.951 0 0 0 0 0 0 0 +-30.062 4.919 0.902 0 0 0 0 0 0 0 +-30.008 4.814 0.9 0 0 0 0 0 0 0 +-29.936 4.706 0.898 0 0 0 0 0 0 0 +-29.878 4.601 0.897 0 0 0 0 0 0 0 +-29.793 4.492 0.895 0 0 0 0 0 0 0 +-29.724 4.386 0.893 0 0 0 0 0 0 0 +-29.644 4.327 0.891 0 0 0 0 0 0 0 +-29.568 4.221 0.889 0 0 0 0 0 0 0 +-29.498 4.117 0.887 0 0 0 0 0 0 0 +-29.42 4.012 0.885 0 0 0 0 0 0 0 +-29.343 3.907 0.882 0 0 0 0 0 0 0 +-29.272 3.805 0.881 0 0 0 0 0 0 0 +-29.205 3.703 0.879 0 0 0 0 0 0 0 +-29.119 3.599 0.877 0 0 0 0 0 0 0 +-29.019 3.54 0.874 0 0 0 0 0 0 0 +-29.004 3.446 0.874 0 0 0 0 0 0 0 +-28.991 3.352 0.873 0 0 0 0 0 0 0 +-29.165 3.279 0.877 0 0 0 0 0 0 0 +-29.185 3.189 0.877 0 0 0 0 0 0 0 +-29.127 3.09 0.875 0 0 0 0 0 0 0 +-28.989 2.983 0.872 0 0 0 0 0 0 0 +-28.91 2.929 0.87 0 0 0 0 0 0 0 +-28.778 2.825 0.867 0 0 0 0 0 0 0 +-28.671 2.724 0.864 0 0 0 0 0 0 0 +-28.57 2.624 0.862 0 0 0 0 0 0 0 +-28.491 2.526 0.86 0 0 0 0 0 0 0 +-28.086 2.402 0.85 0 0 0 0 0 0 0 +-27.998 2.306 0.848 0 0 0 0 0 0 0 +-27.926 2.256 0.846 0 0 0 0 0 0 0 +-27.857 2.162 0.845 0 0 0 0 0 0 0 +-27.766 2.067 0.842 0 0 0 0 0 0 0 +-27.694 1.975 0.841 0 0 0 0 0 0 0 +-27.601 1.881 0.838 0 0 0 0 0 0 0 +-27.531 1.789 0.837 0 0 0 0 0 0 0 +-27.468 1.699 0.835 0 0 0 0 0 0 0 +-21.663 1.311 0.703 0 0 0 0 0 0 0 +-21.629 1.241 0.702 0 0 0 0 0 0 0 +-21.609 1.172 0.701 0 0 0 0 0 0 0 +-22.024 1.124 0.711 0 0 0 0 0 0 0 +-21.172 1.015 0.691 0 0 0 0 0 0 0 +-21.317 0.955 0.694 0 0 0 0 0 0 0 +-21.226 0.884 0.692 0 0 0 0 0 0 0 +-21.75 0.837 0.704 0 0 0 0 0 0 0 +-21.507 0.76 0.698 0 0 0 0 0 0 0 +-26.87 0.901 0.821 0 0 0 0 0 0 0 +-21.416 0.656 0.696 0 0 0 0 0 0 0 +-21.466 0.59 0.697 0 0 0 0 0 0 0 +-22.429 0.545 0.719 0 0 0 0 0 0 0 +-21.008 0.446 0.687 0 0 0 0 0 0 0 +-21.083 0.381 0.689 0 0 0 0 0 0 0 +-21.06 0.314 0.688 0 0 0 0 0 0 0 +-21.762 0.29 0.704 0 0 0 0 0 0 0 +-21.517 0.219 0.698 0 0 0 0 0 0 0 +-25.927 0.177 0.799 0 0 0 0 0 0 0 +-25.821 0.096 0.796 0 0 0 0 0 0 0 +-25.747 0.015 0.795 0 0 0 0 0 0 0 +-25.671 -0.066 0.793 0 0 0 0 0 0 0 +-25.575 -0.146 0.791 0 0 0 0 0 0 0 +-25.509 -0.186 0.789 0 0 0 0 0 0 0 +-21.805 -0.223 0.705 0 0 0 0 0 0 0 +-25.345 -0.343 0.786 0 0 0 0 0 0 0 +-25.27 -0.422 0.784 0 0 0 0 0 0 0 +-25.178 -0.499 0.782 0 0 0 0 0 0 0 +-25.107 -0.577 0.78 0 0 0 0 0 0 0 +-25.091 -0.655 0.78 0 0 0 0 0 0 0 +-25.152 -0.696 0.781 0 0 0 0 0 0 0 +-25.167 -0.776 0.782 0 0 0 0 0 0 0 +-25.181 -0.856 0.782 0 0 0 0 0 0 0 +-25.43 -0.944 0.788 0 0 0 0 0 0 0 +-25.595 -1.031 0.792 0 0 0 0 0 0 0 +-24.767 -1.153 0.773 0 0 0 0 0 0 0 +-24.911 -1.199 0.776 0 0 0 0 0 0 0 +-25.18 -1.292 0.783 0 0 0 0 0 0 0 +-25.21 -1.372 0.783 0 0 0 0 0 0 0 +-24.087 -1.462 0.758 0 0 0 0 0 0 0 +-24.027 -1.534 0.757 0 0 0 0 0 0 0 +-24.199 -1.622 0.761 0 0 0 0 0 0 0 +-23.877 -1.675 0.753 0 0 0 0 0 0 0 +-16.037 -1.193 0.575 0 0 0 0 0 0 0 +-16.024 -1.242 0.574 0 0 0 0 0 0 0 +-16.038 -1.294 0.575 0 0 0 0 0 0 0 +-16.075 -1.348 0.576 0 0 0 0 0 0 0 +-16.059 -1.397 0.575 0 0 0 0 0 0 0 +-15.971 -1.44 0.573 0 0 0 0 0 0 0 +-15.927 -1.461 0.573 0 0 0 0 0 0 0 +-15.892 -1.508 0.572 0 0 0 0 0 0 0 +-15.879 -1.658 0.572 0 0 0 0 0 0 0 +-15.898 -1.711 0.572 0 0 0 0 0 0 0 +-22.748 -2.532 0.73 0 0 0 0 0 0 0 +-22.763 -2.569 0.73 0 0 0 0 0 0 0 +-22.767 -2.642 0.73 0 0 0 0 0 0 0 +-22.769 -2.715 0.731 0 0 0 0 0 0 0 +-22.788 -2.79 0.731 0 0 0 0 0 0 0 +-22.775 -2.861 0.731 0 0 0 0 0 0 0 +-22.782 -2.935 0.731 0 0 0 0 0 0 0 +-22.794 -3.009 0.732 0 0 0 0 0 0 0 +-22.803 -3.047 0.732 0 0 0 0 0 0 0 +-22.807 -3.12 0.733 0 0 0 0 0 0 0 +-22.792 -3.191 0.732 0 0 0 0 0 0 0 +-22.772 -3.261 0.732 0 0 0 0 0 0 0 +-23.06 -3.377 0.739 0 0 0 0 0 0 0 +-22.853 -3.42 0.735 0 0 0 0 0 0 0 +-23.011 -3.518 0.738 0 0 0 0 0 0 0 +-23.05 -3.561 0.739 0 0 0 0 0 0 0 +-23.087 -3.641 0.741 0 0 0 0 0 0 0 +-23.118 -3.72 0.742 0 0 0 0 0 0 0 +-23.176 -3.804 0.743 0 0 0 0 0 0 0 +-23.227 -3.888 0.745 0 0 0 0 0 0 0 +-21.132 -3.671 0.697 0 0 0 0 0 0 0 +-21.065 -3.694 0.695 0 0 0 0 0 0 0 +-20.992 -3.749 0.694 0 0 0 0 0 0 0 +-20.919 -3.804 0.693 0 0 0 0 0 0 0 +-20.848 -3.858 0.691 0 0 0 0 0 0 0 +-20.779 -3.913 0.69 0 0 0 0 0 0 0 +-20.71 -3.967 0.689 0 0 0 0 0 0 0 +-20.627 -4.019 0.687 0 0 0 0 0 0 0 +-20.569 -4.041 0.686 0 0 0 0 0 0 0 +-20.484 -4.091 0.684 0 0 0 0 0 0 0 +-20.408 -4.142 0.683 0 0 0 0 0 0 0 +-20.335 -4.194 0.681 0 0 0 0 0 0 0 +-20.272 -4.247 0.68 0 0 0 0 0 0 0 +-20.192 -4.297 0.678 0 0 0 0 0 0 0 +-20.118 -4.347 0.677 0 0 0 0 0 0 0 +-20.056 -4.4 0.676 0 0 0 0 0 0 0 +-19.977 -4.415 0.674 0 0 0 0 0 0 0 +-19.91 -4.466 0.673 0 0 0 0 0 0 0 +-19.831 -4.514 0.672 0 0 0 0 0 0 0 +-19.745 -4.559 0.67 0 0 0 0 0 0 0 +-19.647 -4.601 0.668 0 0 0 0 0 0 0 +-19.621 -4.66 0.668 0 0 0 0 0 0 0 +-19.631 -4.728 0.668 0 0 0 0 0 0 0 +-19.665 -4.769 0.669 0 0 0 0 0 0 0 +-19.659 -4.833 0.669 0 0 0 0 0 0 0 +-19.537 -4.868 0.667 0 0 0 0 0 0 0 +-19.908 -5.027 0.676 0 0 0 0 0 0 0 +-19.878 -5.086 0.676 0 0 0 0 0 0 0 +-19.837 -5.142 0.675 0 0 0 0 0 0 0 +-19.244 -5.085 0.662 0 0 0 0 0 0 0 +-19.165 -5.128 0.66 0 0 0 0 0 0 0 +-19.353 -5.244 0.665 0 0 0 0 0 0 0 +-19.473 -5.342 0.668 0 0 0 0 0 0 0 +-19.424 -5.394 0.667 0 0 0 0 0 0 0 +-18.53 -5.271 0.647 0 0 0 0 0 0 0 +-18.485 -5.289 0.646 0 0 0 0 0 0 0 +-18.432 -5.337 0.645 0 0 0 0 0 0 0 +-18.373 -5.382 0.644 0 0 0 0 0 0 0 +-18.293 -5.421 0.643 0 0 0 0 0 0 0 +-18.233 -5.466 0.642 0 0 0 0 0 0 0 +-18.147 -5.502 0.64 0 0 0 0 0 0 0 +-18.082 -5.544 0.639 0 0 0 0 0 0 0 +-18.026 -5.558 0.638 0 0 0 0 0 0 0 +-17.964 -5.601 0.637 0 0 0 0 0 0 0 +-17.878 -5.635 0.635 0 0 0 0 0 0 0 +-17.82 -5.679 0.634 0 0 0 0 0 0 0 +-17.747 -5.717 0.633 0 0 0 0 0 0 0 +-17.681 -5.757 0.632 0 0 0 0 0 0 0 +-17.603 -5.792 0.63 0 0 0 0 0 0 0 +-17.555 -5.808 0.629 0 0 0 0 0 0 0 +-17.492 -5.847 0.628 0 0 0 0 0 0 0 +-17.422 -5.885 0.627 0 0 0 0 0 0 0 +-17.345 -5.92 0.626 0 0 0 0 0 0 0 +-17.281 -5.958 0.625 0 0 0 0 0 0 0 +-17.213 -5.995 0.623 0 0 0 0 0 0 0 +-17.153 -6.035 0.622 0 0 0 0 0 0 0 +-17.124 -6.055 0.622 0 0 0 0 0 0 0 +-16.928 -6.045 0.618 0 0 0 0 0 0 0 +-16.787 -6.054 0.615 0 0 0 0 0 0 0 +-16.89 -6.152 0.618 0 0 0 0 0 0 0 +-16.818 -6.185 0.616 0 0 0 0 0 0 0 +-16.765 -6.225 0.616 0 0 0 0 0 0 0 +-16.691 -6.258 0.614 0 0 0 0 0 0 0 +-16.638 -6.268 0.613 0 0 0 0 0 0 0 +-16.558 -6.297 0.612 0 0 0 0 0 0 0 +-16.498 -6.333 0.611 0 0 0 0 0 0 0 +-16.429 -6.366 0.61 0 0 0 0 0 0 0 +-16.385 -6.408 0.609 0 0 0 0 0 0 0 +-16.305 -6.436 0.608 0 0 0 0 0 0 0 +-16.257 -6.476 0.607 0 0 0 0 0 0 0 +-16.193 -6.48 0.606 0 0 0 0 0 0 0 +-16.137 -6.517 0.605 0 0 0 0 0 0 0 +-16.065 -6.546 0.603 0 0 0 0 0 0 0 +-16.03 -6.59 0.603 0 0 0 0 0 0 0 +-16.057 -6.661 0.604 0 0 0 0 0 0 0 +-16.097 -6.737 0.606 0 0 0 0 0 0 0 +-15.961 -6.739 0.603 0 0 0 0 0 0 0 +-15.887 -6.766 0.602 0 0 0 0 0 0 0 +-15.626 -6.684 0.595 0 0 0 0 0 0 0 +-15.622 -6.74 0.596 0 0 0 0 0 0 0 +-15.639 -6.806 0.597 0 0 0 0 0 0 0 +-15.661 -6.874 0.598 0 0 0 0 0 0 0 +-16.101 -7.189 0.61 0 0 0 0 0 0 0 +-16.11 -7.254 0.611 0 0 0 0 0 0 0 +-16.135 -7.296 0.612 0 0 0 0 0 0 0 +-16.13 -7.355 0.612 0 0 0 0 0 0 0 +-16.141 -7.421 0.613 0 0 0 0 0 0 0 +-16.141 -7.483 0.613 0 0 0 0 0 0 0 +-16.156 -7.551 0.614 0 0 0 0 0 0 0 +-16.155 -7.613 0.615 0 0 0 0 0 0 0 +-16.166 -7.68 0.616 0 0 0 0 0 0 0 +-16.184 -7.72 0.617 0 0 0 0 0 0 0 +-16.183 -7.782 0.617 0 0 0 0 0 0 0 +-16.182 -7.844 0.618 0 0 0 0 0 0 0 +-16.197 -7.915 0.619 0 0 0 0 0 0 0 +-16.211 -7.985 0.62 0 0 0 0 0 0 0 +-16.38 -8.132 0.625 0 0 0 0 0 0 0 +-16.391 -8.202 0.626 0 0 0 0 0 0 0 +-16.396 -8.237 0.626 0 0 0 0 0 0 0 +-16.422 -8.315 0.628 0 0 0 0 0 0 0 +-16.421 -8.379 0.628 0 0 0 0 0 0 0 +-16.43 -8.449 0.629 0 0 0 0 0 0 0 +-16.444 -8.522 0.63 0 0 0 0 0 0 0 +-16.444 -8.587 0.631 0 0 0 0 0 0 0 +-16.443 -8.653 0.631 0 0 0 0 0 0 0 +-16.472 -8.701 0.633 0 0 0 0 0 0 0 +-16.468 -8.765 0.633 0 0 0 0 0 0 0 +-16.48 -8.839 0.634 0 0 0 0 0 0 0 +-16.5 -8.916 0.635 0 0 0 0 0 0 0 +-16.497 -8.981 0.636 0 0 0 0 0 0 0 +-16.482 -9.041 0.636 0 0 0 0 0 0 0 +-16.499 -9.118 0.638 0 0 0 0 0 0 0 +-16.513 -9.159 0.638 0 0 0 0 0 0 0 +-16.43 -9.181 0.637 0 0 0 0 0 0 0 +-16.377 -9.219 0.636 0 0 0 0 0 0 0 +-16.372 -9.284 0.637 0 0 0 0 0 0 0 +-16.374 -9.353 0.638 0 0 0 0 0 0 0 +-16.4 -9.437 0.639 0 0 0 0 0 0 0 +-16.405 -9.508 0.64 0 0 0 0 0 0 0 +-16.433 -9.559 0.641 0 0 0 0 0 0 0 +-16.423 -9.623 0.642 0 0 0 0 0 0 0 +-16.44 -9.702 0.643 0 0 0 0 0 0 0 +-16.442 -9.773 0.644 0 0 0 0 0 0 0 +-16.452 -9.849 0.645 0 0 0 0 0 0 0 +-16.46 -9.925 0.646 0 0 0 0 0 0 0 +-16.463 -9.997 0.647 0 0 0 0 0 0 0 +-16.476 -10.076 0.648 0 0 0 0 0 0 0 +-16.496 -10.124 0.649 0 0 0 0 0 0 0 +-16.508 -10.203 0.65 0 0 0 0 0 0 0 +-16.507 -10.274 0.651 0 0 0 0 0 0 0 +-16.512 -10.349 0.652 0 0 0 0 0 0 0 +-16.514 -10.423 0.653 0 0 0 0 0 0 0 +-16.544 -10.515 0.655 0 0 0 0 0 0 0 +-16.511 -10.567 0.655 0 0 0 0 0 0 0 +-16.671 -10.707 0.66 0 0 0 0 0 0 0 +-17.243 -11.152 0.676 0 0 0 0 0 0 0 +-17.054 -11.105 0.672 0 0 0 0 0 0 0 +-16.835 -11.19 0.669 0 0 0 0 0 0 0 +-16.815 -11.253 0.669 0 0 0 0 0 0 0 +-17.003 -11.418 0.675 0 0 0 0 0 0 0 +-17.223 -11.645 0.682 0 0 0 0 0 0 0 +-17.249 -11.742 0.684 0 0 0 0 0 0 0 +-17.273 -11.838 0.685 0 0 0 0 0 0 0 +-17.21 -11.874 0.684 0 0 0 0 0 0 0 +-16.923 -11.754 0.678 0 0 0 0 0 0 0 +-16.888 -11.809 0.678 0 0 0 0 0 0 0 +-16.853 -11.824 0.677 0 0 0 0 0 0 0 +-16.776 -11.849 0.676 0 0 0 0 0 0 0 +-16.693 -11.869 0.675 0 0 0 0 0 0 0 +-16.688 -11.945 0.676 0 0 0 0 0 0 0 +-16.709 -12.039 0.677 0 0 0 0 0 0 0 +-16.726 -12.131 0.679 0 0 0 0 0 0 0 +-16.74 -12.222 0.68 0 0 0 0 0 0 0 +-16.764 -12.28 0.682 0 0 0 0 0 0 0 +-16.782 -12.374 0.683 0 0 0 0 0 0 0 +-16.791 -12.463 0.685 0 0 0 0 0 0 0 +-16.784 -12.539 0.685 0 0 0 0 0 0 0 +-16.797 -12.632 0.687 0 0 0 0 0 0 0 +-16.808 -12.723 0.688 0 0 0 0 0 0 0 +-16.808 -12.806 0.69 0 0 0 0 0 0 0 +-16.84 -12.873 0.691 0 0 0 0 0 0 0 +-16.852 -12.966 0.693 0 0 0 0 0 0 0 +-16.853 -13.052 0.694 0 0 0 0 0 0 0 +-16.877 -13.155 0.696 0 0 0 0 0 0 0 +-16.859 -13.227 0.696 0 0 0 0 0 0 0 +-17.015 -13.436 0.702 0 0 0 0 0 0 0 +-17.501 -13.91 0.717 0 0 0 0 0 0 0 +-17.163 -13.863 0.711 0 0 0 0 0 0 0 +-17.302 -14.065 0.716 0 0 0 0 0 0 0 +-17.572 -14.377 0.725 0 0 0 0 0 0 0 +-17.573 -14.47 0.727 0 0 0 0 0 0 0 +-17.574 -14.564 0.728 0 0 0 0 0 0 0 +-17.237 -14.422 0.72 0 0 0 0 0 0 0 +-17.2 -14.484 0.72 0 0 0 0 0 0 0 +-17.121 -14.509 0.719 0 0 0 0 0 0 0 +-17.051 -14.542 0.719 0 0 0 0 0 0 0 +-17.025 -14.612 0.719 0 0 0 0 0 0 0 +-17.037 -14.716 0.721 0 0 0 0 0 0 0 +-17.054 -14.824 0.723 0 0 0 0 0 0 0 +-17.089 -14.902 0.725 0 0 0 0 0 0 0 +-17.096 -15.003 0.726 0 0 0 0 0 0 0 +-17.118 -15.118 0.728 0 0 0 0 0 0 0 +-17.12 -15.216 0.73 0 0 0 0 0 0 0 +-17.124 -15.316 0.732 0 0 0 0 0 0 0 +-17.136 -15.425 0.733 0 0 0 0 0 0 0 +-17.144 -15.529 0.735 0 0 0 0 0 0 0 +-17.177 -15.609 0.737 0 0 0 0 0 0 0 +-17.187 -15.717 0.739 0 0 0 0 0 0 0 +-17.194 -15.822 0.74 0 0 0 0 0 0 0 +-17.324 -16.043 0.746 0 0 0 0 0 0 0 +-17.649 -16.449 0.758 0 0 0 0 0 0 0 +-17.498 -16.514 0.756 0 0 0 0 0 0 0 +-17.627 -16.689 0.761 0 0 0 0 0 0 0 +-17.681 -16.846 0.764 0 0 0 0 0 0 0 +-17.883 -17.147 0.773 0 0 0 0 0 0 0 +-17.595 -17.083 0.767 0 0 0 0 0 0 0 +-17.54 -17.137 0.767 0 0 0 0 0 0 0 +-17.486 -17.192 0.767 0 0 0 0 0 0 0 +-17.425 -17.186 0.766 0 0 0 0 0 0 0 +-17.369 -17.239 0.766 0 0 0 0 0 0 0 +-17.385 -17.364 0.768 0 0 0 0 0 0 0 +-17.403 -17.491 0.77 0 0 0 0 0 0 0 +-17.411 -17.61 0.772 0 0 0 0 0 0 0 +-17.427 -17.737 0.775 0 0 0 0 0 0 0 +-17.437 -17.859 0.777 0 0 0 0 0 0 0 +-17.473 -17.952 0.779 0 0 0 0 0 0 0 +-17.479 -18.072 0.781 0 0 0 0 0 0 0 +-17.499 -18.207 0.783 0 0 0 0 0 0 0 +-17.504 -18.327 0.785 0 0 0 0 0 0 0 +-17.515 -18.455 0.788 0 0 0 0 0 0 0 +-17.45 -18.503 0.788 0 0 0 0 0 0 0 +-24.564 -26.225 1.027 0 0 0 0 0 0 0 +-24.602 -26.349 1.029 0 0 0 0 0 0 0 +-24.623 -26.539 1.033 0 0 0 0 0 0 0 +-24.628 -26.712 1.036 0 0 0 0 0 0 0 +-24.626 -26.879 1.039 0 0 0 0 0 0 0 +-25.572 -28.089 1.073 0 0 0 0 0 0 0 +-25.441 -28.122 1.072 0 0 0 0 0 0 0 +-25.303 -28.147 1.07 0 0 0 0 0 0 0 +-25.203 -28.124 1.068 0 0 0 0 0 0 0 +-25.004 -28.079 1.065 0 0 0 0 0 0 0 +-24.87 -28.107 1.063 0 0 0 0 0 0 0 +-24.795 -28.2 1.064 0 0 0 0 0 0 0 +-24.824 -28.411 1.068 0 0 0 0 0 0 0 +-24.848 -28.621 1.072 0 0 0 0 0 0 0 +-24.881 -28.841 1.076 0 0 0 0 0 0 0 +-24.937 -28.998 1.079 0 0 0 0 0 0 0 +-24.96 -29.21 1.083 0 0 0 0 0 0 0 +-24.952 -29.388 1.086 0 0 0 0 0 0 0 +-25.232 -30.099 1.103 0 0 0 0 0 0 0 +-25.421 -30.519 1.113 0 0 0 0 0 0 0 +-25.476 -30.782 1.118 0 0 0 0 0 0 0 +-25.315 -30.685 1.114 0 0 0 0 0 0 0 +-25.194 -30.735 1.113 0 0 0 0 0 0 0 +-25.149 -30.878 1.115 0 0 0 0 0 0 0 +-25.187 -31.123 1.12 0 0 0 0 0 0 0 +-25.2 -31.341 1.124 0 0 0 0 0 0 0 +-25.228 -31.578 1.129 0 0 0 0 0 0 0 +-25.259 -31.821 1.134 0 0 0 0 0 0 0 +-25.325 -32.008 1.138 0 0 0 0 0 0 0 +-25.341 -32.236 1.142 0 0 0 0 0 0 0 +-25.569 -32.737 1.154 0 0 0 0 0 0 0 +-25.581 -32.966 1.159 0 0 0 0 0 0 0 +-25.61 -33.219 1.164 0 0 0 0 0 0 0 +-25.628 -33.46 1.168 0 0 0 0 0 0 0 +-25.49 -33.497 1.167 0 0 0 0 0 0 0 +-25.532 -33.661 1.171 0 0 0 0 0 0 0 +-25.566 -33.927 1.176 0 0 0 0 0 0 0 +-25.592 -34.185 1.181 0 0 0 0 0 0 0 +-25.608 -34.432 1.186 0 0 0 0 0 0 0 +-25.646 -34.71 1.191 0 0 0 0 0 0 0 +-25.637 -34.928 1.195 0 0 0 0 0 0 0 +-25.862 -35.467 1.208 0 0 0 0 0 0 0 +-25.887 -35.738 1.213 0 0 0 0 0 0 0 +-25.973 -35.974 1.219 0 0 0 0 0 0 0 +-25.937 -36.165 1.222 0 0 0 0 0 0 0 +-25.82 -36.241 1.222 0 0 0 0 0 0 0 +-25.869 -36.552 1.228 0 0 0 0 0 0 0 +-25.898 -36.838 1.234 0 0 0 0 0 0 0 +-25.929 -37.131 1.24 0 0 0 0 0 0 0 +-25.928 -37.378 1.244 0 0 0 0 0 0 0 +-26.038 -37.664 1.251 0 0 0 0 0 0 0 +-26.061 -37.952 1.257 0 0 0 0 0 0 0 +-26.094 -38.256 1.263 0 0 0 0 0 0 0 +-26.194 -38.664 1.272 0 0 0 0 0 0 0 +-26.354 -39.165 1.283 0 0 0 0 0 0 0 +-26.384 -39.477 1.29 0 0 0 0 0 0 0 +-26.392 -39.759 1.295 0 0 0 0 0 0 0 +-26.315 -39.779 1.295 0 0 0 0 0 0 0 +-26.354 -40.111 1.301 0 0 0 0 0 0 0 +-26.379 -40.426 1.308 0 0 0 0 0 0 0 +-26.415 -40.761 1.315 0 0 0 0 0 0 0 +-26.451 -41.099 1.321 0 0 0 0 0 0 0 +-26.505 -41.468 1.329 0 0 0 0 0 0 0 +-26.529 -41.795 1.336 0 0 0 0 0 0 0 +-26.612 -42.073 1.342 0 0 0 0 0 0 0 +-26.631 -42.397 1.349 0 0 0 0 0 0 0 +-26.699 -42.803 1.357 0 0 0 0 0 0 0 +-26.724 -43.145 1.364 0 0 0 0 0 0 0 +-26.771 -43.527 1.372 0 0 0 0 0 0 0 +-26.776 -43.843 1.378 0 0 0 0 0 0 0 +-26.805 -44.202 1.386 0 0 0 0 0 0 0 +-26.911 -44.535 1.393 0 0 0 0 0 0 0 +-26.95 -44.918 1.401 0 0 0 0 0 0 0 +-26.997 -45.318 1.41 0 0 0 0 0 0 0 +-27.043 -45.721 1.418 0 0 0 0 0 0 0 +-27.079 -46.113 1.426 0 0 0 0 0 0 0 +-27.114 -46.507 1.434 0 0 0 0 0 0 0 +-27.153 -46.912 1.443 0 0 0 0 0 0 0 +-27.269 -47.284 1.451 0 0 0 0 0 0 0 +-27.32 -47.719 1.461 0 0 0 0 0 0 0 +-27.365 -48.148 1.47 0 0 0 0 0 0 0 +-27.419 -48.598 1.479 0 0 0 0 0 0 0 +-27.457 -49.026 1.488 0 0 0 0 0 0 0 +-27.497 -49.462 1.497 0 0 0 0 0 0 0 +-27.546 -49.917 1.507 0 0 0 0 0 0 0 +-27.67 -50.33 1.516 0 0 0 0 0 0 0 +-27.716 -50.791 1.526 0 0 0 0 0 0 0 +-27.783 -51.298 1.537 0 0 0 0 0 0 0 +-27.83 -51.773 1.547 0 0 0 0 0 0 0 +-15.837 -29.662 0.974 0 0 0 0 0 0 0 +-15.74 -29.704 0.974 0 0 0 0 0 0 0 +-15.634 -29.729 0.973 0 0 0 0 0 0 0 +-15.565 -29.711 0.972 0 0 0 0 0 0 0 +-15.561 -29.932 0.977 0 0 0 0 0 0 0 +-15.339 -29.732 0.97 0 0 0 0 0 0 0 +-28.261 -55.254 1.622 0 0 0 0 0 0 0 +-28.323 -55.806 1.634 0 0 0 0 0 0 0 +-28.382 -56.361 1.646 0 0 0 0 0 0 0 +-28.439 -56.92 1.658 0 0 0 0 0 0 0 +-28.491 -57.25 1.665 0 0 0 0 0 0 0 +-28.647 -58.018 1.682 0 0 0 0 0 0 0 +-28.705 -58.6 1.694 0 0 0 0 0 0 0 +-28.77 -59.205 1.708 0 0 0 0 0 0 0 +-28.832 -59.808 1.72 0 0 0 0 0 0 0 +-28.912 -60.459 1.735 0 0 0 0 0 0 0 +-17.109 -36.045 1.117 0 0 0 0 0 0 0 +-17.067 -36.103 1.118 0 0 0 0 0 0 0 +-17.134 -36.542 1.128 0 0 0 0 0 0 0 +-16.861 -36.254 1.119 0 0 0 0 0 0 0 +-17.036 -36.936 1.135 0 0 0 0 0 0 0 +-16.846 -36.827 1.131 0 0 0 0 0 0 0 +-16.834 -37.108 1.136 0 0 0 0 0 0 0 +-29.457 -65.529 1.845 0 0 0 0 0 0 0 +-15.804 -35.275 1.089 0 0 0 0 0 0 0 +-15.717 -35.378 1.09 0 0 0 0 0 0 0 +-15.701 -35.645 1.095 0 0 0 0 0 0 0 +-15.464 -35.406 1.088 0 0 0 0 0 0 0 +-15.548 -35.906 1.099 0 0 0 0 0 0 0 +-15.487 -36.076 1.102 0 0 0 0 0 0 0 +-15.482 -36.38 1.109 0 0 0 0 0 0 0 +-20.338 -48.023 1.396 0 0 0 0 0 0 0 +-15.188 -36.162 1.102 0 0 0 0 0 0 0 +-15.448 -37.108 1.124 0 0 0 0 0 0 0 +-14.961 -36.258 1.102 0 0 0 0 0 0 0 +-16.674 -40.779 1.212 0 0 0 0 0 0 0 +-14.682 -36.225 1.099 0 0 0 0 0 0 0 +-16.389 -40.813 1.21 0 0 0 0 0 0 0 +-14.511 -36.46 1.102 0 0 0 0 0 0 0 +-14.666 -37.02 1.115 0 0 0 0 0 0 0 +-14.71 -37.474 1.125 0 0 0 0 0 0 0 +-14.554 -37.423 1.123 0 0 0 0 0 0 0 +-14.378 -37.315 1.119 0 0 0 0 0 0 0 +-14.149 -37.067 1.112 0 0 0 0 0 0 0 +-14.13 -37.369 1.118 0 0 0 0 0 0 0 +-18.968 -50.672 1.441 0 0 0 0 0 0 0 +-18.875 -50.666 1.44 0 0 0 0 0 0 0 +-18.443 -50.474 1.432 0 0 0 0 0 0 0 +-18.306 -50.59 1.434 0 0 0 0 0 0 0 +-17.329 -48.362 1.378 0 0 0 0 0 0 0 +-17.196 -48.469 1.38 0 0 0 0 0 0 0 +-16.894 -47.856 1.364 0 0 0 0 0 0 0 +-16.683 -47.735 1.36 0 0 0 0 0 0 0 +-16.54 -47.806 1.36 0 0 0 0 0 0 0 +-16.371 -47.805 1.359 0 0 0 0 0 0 0 +-16.245 -47.927 1.361 0 0 0 0 0 0 0 +-16.154 -48.156 1.365 0 0 0 0 0 0 0 +-16.164 -48.694 1.377 0 0 0 0 0 0 0 +-16.64 -50.663 1.423 0 0 0 0 0 0 0 +-16.504 -50.516 1.419 0 0 0 0 0 0 0 +-16.255 -50.286 1.412 0 0 0 0 0 0 0 +-16.092 -50.324 1.412 0 0 0 0 0 0 0 +-17.867 -57.119 1.571 0 0 0 0 0 0 0 +-18.35 -59.988 1.637 0 0 0 0 0 0 0 +-18.215 -59.883 1.634 0 0 0 0 0 0 0 +-17.787 -60.52 1.645 0 0 0 0 0 0 0 +-17.382 -60.546 1.643 0 0 0 0 0 0 0 +-19.329 -68.555 1.831 0 0 0 0 0 0 0 +-18.835 -69.297 1.844 0 0 0 0 0 0 0 +-0.995 -41.899 1.163 0 0 0 0 0 0 0 +-0.864 -41.922 1.163 0 0 0 0 0 0 0 +-0.73 -41.781 1.16 0 0 0 0 0 0 0 +-0.449 -30.859 0.911 0 0 0 0 0 0 0 +-0.352 -30.882 0.912 0 0 0 0 0 0 0 +-0.255 -30.883 0.912 0 0 0 0 0 0 0 +-0.207 -30.925 0.913 0 0 0 0 0 0 0 +-0.11 -30.972 0.914 0 0 0 0 0 0 0 +-0.007 -42.085 1.167 0 0 0 0 0 0 0 +0.125 -42.107 1.167 0 0 0 0 0 0 0 +0.257 -42.116 1.168 0 0 0 0 0 0 0 +0.39 -42.147 1.168 0 0 0 0 0 0 0 +0.456 -42.153 1.168 0 0 0 0 0 0 0 +0.589 -42.167 1.169 0 0 0 0 0 0 0 +0.721 -42.181 1.169 0 0 0 0 0 0 0 +0.854 -42.196 1.17 0 0 0 0 0 0 0 +0.987 -42.215 1.17 0 0 0 0 0 0 0 +1.121 -42.228 1.17 0 0 0 0 0 0 0 +1.254 -42.244 1.171 0 0 0 0 0 0 0 +1.387 -42.252 1.171 0 0 0 0 0 0 0 +1.454 -42.272 1.172 0 0 0 0 0 0 0 +1.587 -42.279 1.172 0 0 0 0 0 0 0 +1.721 -42.304 1.173 0 0 0 0 0 0 0 +1.855 -42.32 1.173 0 0 0 0 0 0 0 +1.99 -42.354 1.174 0 0 0 0 0 0 0 +2.123 -42.35 1.174 0 0 0 0 0 0 0 +2.259 -42.387 1.175 0 0 0 0 0 0 0 +2.326 -42.401 1.175 0 0 0 0 0 0 0 +2.462 -42.436 1.176 0 0 0 0 0 0 0 +2.606 -42.611 1.181 0 0 0 0 0 0 0 +3.14 -48.762 1.321 0 0 0 0 0 0 0 +3.295 -48.778 1.322 0 0 0 0 0 0 0 +3.964 -56.009 1.487 0 0 0 0 0 0 0 +4.119 -55.711 1.481 0 0 0 0 0 0 0 +3.97 -52.589 1.409 0 0 0 0 0 0 0 +4.122 -52.41 1.406 0 0 0 0 0 0 0 +4.287 -52.397 1.406 0 0 0 0 0 0 0 +4.438 -52.232 1.402 0 0 0 0 0 0 0 +4.542 -51.539 1.387 0 0 0 0 0 0 0 +4.701 -51.492 1.386 0 0 0 0 0 0 0 +4.624 -48.961 1.328 0 0 0 0 0 0 0 +4.7 -48.946 1.328 0 0 0 0 0 0 0 +4.859 -48.987 1.329 0 0 0 0 0 0 0 +4.986 -48.703 1.323 0 0 0 0 0 0 0 +5.13 -48.603 1.321 0 0 0 0 0 0 0 +5.155 -47.426 1.295 0 0 0 0 0 0 0 +5.244 -46.875 1.283 0 0 0 0 0 0 0 +5.348 -46.485 1.274 0 0 0 0 0 0 0 +5.416 -46.431 1.273 0 0 0 0 0 0 0 +5.401 -45.08 1.242 0 0 0 0 0 0 0 +5.48 -44.555 1.231 0 0 0 0 0 0 0 +5.59 -44.297 1.225 0 0 0 0 0 0 0 +5.722 -44.23 1.224 0 0 0 0 0 0 0 +5.694 -42.957 1.195 0 0 0 0 0 0 0 +5.77 -42.509 1.185 0 0 0 0 0 0 0 +5.792 -42.175 1.178 0 0 0 0 0 0 0 +5.916 -42.091 1.176 0 0 0 0 0 0 0 +5.829 -40.559 1.142 0 0 0 0 0 0 0 +5.92 -40.295 1.136 0 0 0 0 0 0 0 +6.029 -40.157 1.133 0 0 0 0 0 0 0 +6.155 -40.134 1.133 0 0 0 0 0 0 0 +6.287 -40.156 1.134 0 0 0 0 0 0 0 +6.366 -40.243 1.136 0 0 0 0 0 0 0 +6.34 -37.068 1.065 0 0 0 0 0 0 0 +6.409 -36.778 1.059 0 0 0 0 0 0 0 +6.497 -36.602 1.055 0 0 0 0 0 0 0 +4.129 -23.106 0.743 0 0 0 0 0 0 0 +4.184 -22.998 0.741 0 0 0 0 0 0 0 +4.235 -22.871 0.738 0 0 0 0 0 0 0 +4.307 -22.858 0.738 0 0 0 0 0 0 0 +4.39 -22.903 0.739 0 0 0 0 0 0 0 +4.614 -23.664 0.757 0 0 0 0 0 0 0 +4.704 -23.726 0.759 0 0 0 0 0 0 0 +6.832 -34.122 1.001 0 0 0 0 0 0 0 +4.684 -23.059 0.744 0 0 0 0 0 0 0 +4.748 -23.003 0.743 0 0 0 0 0 0 0 +4.868 -23.215 0.749 0 0 0 0 0 0 0 +7.026 -32.94 0.975 0 0 0 0 0 0 0 +7.125 -32.898 0.975 0 0 0 0 0 0 0 +7.233 -32.893 0.975 0 0 0 0 0 0 0 +4.486 -20.295 0.682 0 0 0 0 0 0 0 +4.6 -19.92 0.674 0 0 0 0 0 0 0 +7.264 -30.951 0.932 0 0 0 0 0 0 0 +5.309 -22.336 0.731 0 0 0 0 0 0 0 +5.371 -22.284 0.73 0 0 0 0 0 0 0 +7.335 -30.187 0.916 0 0 0 0 0 0 0 +4.919 -20.007 0.678 0 0 0 0 0 0 0 +4.977 -19.974 0.677 0 0 0 0 0 0 0 +7.572 -29.929 0.911 0 0 0 0 0 0 0 +7.668 -29.917 0.912 0 0 0 0 0 0 0 +5.357 -20.399 0.689 0 0 0 0 0 0 0 +7.532 -28.456 0.879 0 0 0 0 0 0 0 +7.581 -28.286 0.875 0 0 0 0 0 0 0 +7.615 -28.059 0.87 0 0 0 0 0 0 0 +7.649 -27.839 0.866 0 0 0 0 0 0 0 +7.684 -27.628 0.861 0 0 0 0 0 0 0 +7.718 -27.417 0.857 0 0 0 0 0 0 0 +7.749 -27.198 0.852 0 0 0 0 0 0 0 +7.736 -26.992 0.848 0 0 0 0 0 0 0 +7.77 -26.795 0.844 0 0 0 0 0 0 0 +7.848 -26.747 0.843 0 0 0 0 0 0 0 +7.937 -26.742 0.844 0 0 0 0 0 0 0 +8.028 -26.739 0.844 0 0 0 0 0 0 0 +8.105 -26.689 0.844 0 0 0 0 0 0 0 +8.234 -26.811 0.847 0 0 0 0 0 0 0 +8.072 -26.141 0.831 0 0 0 0 0 0 0 +7.939 -25.428 0.815 0 0 0 0 0 0 0 +7.979 -25.278 0.812 0 0 0 0 0 0 0 +8.002 -25.077 0.808 0 0 0 0 0 0 0 +8.033 -24.904 0.804 0 0 0 0 0 0 0 +8.057 -24.711 0.8 0 0 0 0 0 0 0 +8.089 -24.549 0.797 0 0 0 0 0 0 0 +8.072 -24.367 0.793 0 0 0 0 0 0 0 +8.119 -24.255 0.791 0 0 0 0 0 0 0 +8.188 -24.208 0.79 0 0 0 0 0 0 0 +8.27 -24.201 0.791 0 0 0 0 0 0 0 +8.352 -24.19 0.791 0 0 0 0 0 0 0 +8.369 -23.996 0.787 0 0 0 0 0 0 0 +3.723 -10.56 0.463 0 0 0 0 0 0 0 +3.756 -10.546 0.463 0 0 0 0 0 0 0 +3.788 -10.532 0.463 0 0 0 0 0 0 0 +8.294 -22.745 0.76 0 0 0 0 0 0 0 +8.321 -22.6 0.757 0 0 0 0 0 0 0 +8.347 -22.452 0.754 0 0 0 0 0 0 0 +8.374 -22.312 0.751 0 0 0 0 0 0 0 +8.269 -21.928 0.742 0 0 0 0 0 0 0 +8.365 -21.973 0.744 0 0 0 0 0 0 0 +8.306 -21.613 0.736 0 0 0 0 0 0 0 +8.315 -21.436 0.732 0 0 0 0 0 0 0 +8.339 -21.3 0.729 0 0 0 0 0 0 0 +8.359 -21.156 0.726 0 0 0 0 0 0 0 +8.363 -20.972 0.723 0 0 0 0 0 0 0 +8.374 -20.905 0.721 0 0 0 0 0 0 0 +8.436 -20.87 0.721 0 0 0 0 0 0 0 +8.521 -20.891 0.722 0 0 0 0 0 0 0 +8.575 -20.837 0.721 0 0 0 0 0 0 0 +8.597 -20.704 0.719 0 0 0 0 0 0 0 +8.621 -20.581 0.716 0 0 0 0 0 0 0 +8.636 -20.436 0.714 0 0 0 0 0 0 0 +8.627 -20.327 0.711 0 0 0 0 0 0 0 +8.487 -19.824 0.699 0 0 0 0 0 0 0 +8.529 -19.751 0.698 0 0 0 0 0 0 0 +8.584 -19.708 0.698 0 0 0 0 0 0 0 +8.667 -19.729 0.699 0 0 0 0 0 0 0 +8.734 -19.712 0.699 0 0 0 0 0 0 0 +8.756 -19.597 0.697 0 0 0 0 0 0 0 +8.744 -19.487 0.695 0 0 0 0 0 0 0 +8.758 -19.357 0.692 0 0 0 0 0 0 0 +8.78 -19.244 0.69 0 0 0 0 0 0 0 +8.791 -19.109 0.687 0 0 0 0 0 0 0 +8.657 -18.665 0.677 0 0 0 0 0 0 0 +8.688 -18.578 0.675 0 0 0 0 0 0 0 +8.705 -18.463 0.673 0 0 0 0 0 0 0 +8.699 -18.376 0.671 0 0 0 0 0 0 0 +8.712 -18.256 0.669 0 0 0 0 0 0 0 +8.726 -18.139 0.667 0 0 0 0 0 0 0 +8.76 -18.065 0.666 0 0 0 0 0 0 0 +8.814 -18.032 0.665 0 0 0 0 0 0 0 +8.824 -17.909 0.663 0 0 0 0 0 0 0 +8.928 -17.976 0.665 0 0 0 0 0 0 0 +8.919 -17.889 0.664 0 0 0 0 0 0 0 +8.944 -17.798 0.662 0 0 0 0 0 0 0 +8.955 -17.682 0.66 0 0 0 0 0 0 0 +8.953 -17.542 0.657 0 0 0 0 0 0 0 +8.965 -17.43 0.655 0 0 0 0 0 0 0 +9.013 -17.388 0.654 0 0 0 0 0 0 0 +9.067 -17.359 0.654 0 0 0 0 0 0 0 +9.12 -17.393 0.656 0 0 0 0 0 0 0 +9.197 -17.407 0.657 0 0 0 0 0 0 0 +9.23 -17.337 0.656 0 0 0 0 0 0 0 +9.356 -17.442 0.659 0 0 0 0 0 0 0 +9.449 -17.483 0.661 0 0 0 0 0 0 0 +9.56 -17.556 0.664 0 0 0 0 0 0 0 +9.66 -17.607 0.666 0 0 0 0 0 0 0 +9.61 -17.452 0.662 0 0 0 0 0 0 0 +9.615 -17.332 0.66 0 0 0 0 0 0 0 +9.658 -17.281 0.659 0 0 0 0 0 0 0 +9.143 -16.243 0.633 0 0 0 0 0 0 0 +9.135 -16.109 0.63 0 0 0 0 0 0 0 +9.171 -16.056 0.629 0 0 0 0 0 0 0 +9.2 -15.989 0.628 0 0 0 0 0 0 0 +9.184 -15.904 0.627 0 0 0 0 0 0 0 +9.206 -15.828 0.625 0 0 0 0 0 0 0 +9.217 -15.732 0.624 0 0 0 0 0 0 0 +9.206 -15.602 0.621 0 0 0 0 0 0 0 +9.218 -15.511 0.619 0 0 0 0 0 0 0 +9.259 -15.47 0.619 0 0 0 0 0 0 0 +9.307 -15.439 0.619 0 0 0 0 0 0 0 +9.378 -15.447 0.62 0 0 0 0 0 0 0 +9.426 -15.47 0.621 0 0 0 0 0 0 0 +9.482 -15.454 0.621 0 0 0 0 0 0 0 +9.498 -15.371 0.62 0 0 0 0 0 0 0 +9.558 -15.36 0.62 0 0 0 0 0 0 0 +9.57 -15.272 0.619 0 0 0 0 0 0 0 +9.568 -15.163 0.617 0 0 0 0 0 0 0 +9.577 -15.072 0.615 0 0 0 0 0 0 0 +9.549 -14.976 0.613 0 0 0 0 0 0 0 +9.555 -14.882 0.611 0 0 0 0 0 0 0 +9.571 -14.805 0.61 0 0 0 0 0 0 0 +9.6 -14.748 0.609 0 0 0 0 0 0 0 +9.601 -14.65 0.607 0 0 0 0 0 0 0 +9.607 -14.559 0.606 0 0 0 0 0 0 0 +9.6 -14.499 0.604 0 0 0 0 0 0 0 +9.445 -14.168 0.596 0 0 0 0 0 0 0 +9.404 -14.012 0.593 0 0 0 0 0 0 0 +9.434 -13.961 0.592 0 0 0 0 0 0 0 +9.46 -13.907 0.591 0 0 0 0 0 0 0 +9.474 -13.832 0.59 0 0 0 0 0 0 0 +9.483 -13.753 0.589 0 0 0 0 0 0 0 +9.479 -13.702 0.588 0 0 0 0 0 0 0 +9.485 -13.618 0.586 0 0 0 0 0 0 0 +9.471 -13.508 0.584 0 0 0 0 0 0 0 +9.475 -13.425 0.583 0 0 0 0 0 0 0 +9.495 -13.364 0.582 0 0 0 0 0 0 0 +9.531 -13.326 0.581 0 0 0 0 0 0 0 +9.601 -13.335 0.583 0 0 0 0 0 0 0 +9.642 -13.347 0.583 0 0 0 0 0 0 0 +9.718 -13.364 0.585 0 0 0 0 0 0 0 +9.761 -13.335 0.585 0 0 0 0 0 0 0 +9.792 -13.289 0.584 0 0 0 0 0 0 0 +9.88 -13.32 0.586 0 0 0 0 0 0 0 +9.857 -13.202 0.584 0 0 0 0 0 0 0 +9.863 -13.125 0.582 0 0 0 0 0 0 0 +9.875 -13.055 0.581 0 0 0 0 0 0 0 +9.863 -12.997 0.58 0 0 0 0 0 0 0 +9.884 -12.941 0.579 0 0 0 0 0 0 0 +9.876 -12.846 0.577 0 0 0 0 0 0 0 +9.898 -12.791 0.577 0 0 0 0 0 0 0 +9.902 -12.714 0.575 0 0 0 0 0 0 0 +9.936 -12.675 0.575 0 0 0 0 0 0 0 +9.931 -12.588 0.573 0 0 0 0 0 0 0 +9.635 -12.174 0.562 0 0 0 0 0 0 0 +9.643 -12.107 0.561 0 0 0 0 0 0 0 +9.669 -12.061 0.56 0 0 0 0 0 0 0 +9.702 -12.024 0.56 0 0 0 0 0 0 0 +9.715 -11.964 0.559 0 0 0 0 0 0 0 +9.723 -11.896 0.558 0 0 0 0 0 0 0 +9.751 -11.855 0.558 0 0 0 0 0 0 0 +9.73 -11.792 0.556 0 0 0 0 0 0 0 +9.753 -11.744 0.556 0 0 0 0 0 0 0 +9.753 -11.669 0.555 0 0 0 0 0 0 0 +9.772 -11.619 0.554 0 0 0 0 0 0 0 +9.777 -11.55 0.553 0 0 0 0 0 0 0 +9.731 -11.423 0.55 0 0 0 0 0 0 0 +9.624 -11.262 0.546 0 0 0 0 0 0 0 +9.628 -11.196 0.545 0 0 0 0 0 0 0 +9.642 -11.141 0.544 0 0 0 0 0 0 0 +9.647 -11.076 0.543 0 0 0 0 0 0 0 +9.66 -11.022 0.542 0 0 0 0 0 0 0 +9.671 -10.964 0.541 0 0 0 0 0 0 0 +9.683 -10.909 0.54 0 0 0 0 0 0 0 +9.688 -10.845 0.539 0 0 0 0 0 0 0 +9.678 -10.8 0.539 0 0 0 0 0 0 0 +9.672 -10.726 0.537 0 0 0 0 0 0 0 +9.682 -10.67 0.536 0 0 0 0 0 0 0 +9.7 -10.622 0.536 0 0 0 0 0 0 0 +9.734 -10.593 0.536 0 0 0 0 0 0 0 +9.778 -10.574 0.536 0 0 0 0 0 0 0 +9.838 -10.571 0.537 0 0 0 0 0 0 0 +9.89 -10.593 0.538 0 0 0 0 0 0 0 +9.912 -10.551 0.538 0 0 0 0 0 0 0 +9.923 -10.496 0.537 0 0 0 0 0 0 0 +9.923 -10.43 0.536 0 0 0 0 0 0 0 +9.943 -10.386 0.536 0 0 0 0 0 0 0 +9.949 -10.327 0.535 0 0 0 0 0 0 0 +9.958 -10.272 0.534 0 0 0 0 0 0 0 +9.956 -10.237 0.534 0 0 0 0 0 0 0 +9.96 -10.178 0.533 0 0 0 0 0 0 0 +9.965 -10.119 0.532 0 0 0 0 0 0 0 +9.974 -10.065 0.531 0 0 0 0 0 0 0 +9.985 -10.013 0.53 0 0 0 0 0 0 0 +9.993 -9.959 0.53 0 0 0 0 0 0 0 +10.005 -9.908 0.529 0 0 0 0 0 0 0 +10 -9.872 0.528 0 0 0 0 0 0 0 +10.01 -9.82 0.528 0 0 0 0 0 0 0 +10.015 -9.763 0.527 0 0 0 0 0 0 0 +10.025 -9.712 0.526 0 0 0 0 0 0 0 +10.036 -9.661 0.526 0 0 0 0 0 0 0 +10.047 -9.612 0.525 0 0 0 0 0 0 0 +10.043 -9.578 0.524 0 0 0 0 0 0 0 +10.049 -9.523 0.524 0 0 0 0 0 0 0 +10.058 -9.472 0.523 0 0 0 0 0 0 0 +10.064 -9.419 0.522 0 0 0 0 0 0 0 +10.069 -9.364 0.521 0 0 0 0 0 0 0 +10.05 -9.288 0.52 0 0 0 0 0 0 0 +9.894 -9.088 0.514 0 0 0 0 0 0 0 +9.899 -9.035 0.514 0 0 0 0 0 0 0 +9.896 -9.003 0.513 0 0 0 0 0 0 0 +9.912 -8.961 0.513 0 0 0 0 0 0 0 +9.928 -8.92 0.512 0 0 0 0 0 0 0 +9.932 -8.867 0.512 0 0 0 0 0 0 0 +9.939 -8.817 0.511 0 0 0 0 0 0 0 +9.952 -8.773 0.51 0 0 0 0 0 0 0 +9.955 -8.72 0.51 0 0 0 0 0 0 0 +9.946 -8.685 0.509 0 0 0 0 0 0 0 +9.958 -8.641 0.509 0 0 0 0 0 0 0 +9.963 -8.59 0.508 0 0 0 0 0 0 0 +9.973 -8.544 0.507 0 0 0 0 0 0 0 +9.98 -8.496 0.507 0 0 0 0 0 0 0 +9.987 -8.448 0.506 0 0 0 0 0 0 0 +9.999 -8.405 0.506 0 0 0 0 0 0 0 +10.013 -8.389 0.506 0 0 0 0 0 0 0 +10.034 -8.354 0.506 0 0 0 0 0 0 0 +10.057 -8.32 0.506 0 0 0 0 0 0 0 +10.082 -8.287 0.506 0 0 0 0 0 0 0 +10.111 -8.258 0.506 0 0 0 0 0 0 0 +10.124 -8.216 0.505 0 0 0 0 0 0 0 +10.133 -8.17 0.505 0 0 0 0 0 0 0 +10.149 -8.157 0.505 0 0 0 0 0 0 0 +10.17 -8.121 0.505 0 0 0 0 0 0 0 +10.206 -8.098 0.505 0 0 0 0 0 0 0 +10.255 -8.084 0.506 0 0 0 0 0 0 0 +10.46 -8.192 0.511 0 0 0 0 0 0 0 +10.533 -8.196 0.512 0 0 0 0 0 0 0 +10.584 -8.182 0.513 0 0 0 0 0 0 0 +10.594 -8.163 0.513 0 0 0 0 0 0 0 +10.621 -8.131 0.513 0 0 0 0 0 0 0 +10.637 -8.091 0.513 0 0 0 0 0 0 0 +10.658 -8.054 0.513 0 0 0 0 0 0 0 +10.673 -8.013 0.512 0 0 0 0 0 0 0 +10.707 -7.985 0.512 0 0 0 0 0 0 0 +10.725 -7.947 0.512 0 0 0 0 0 0 0 +10.731 -7.925 0.512 0 0 0 0 0 0 0 +10.753 -7.889 0.512 0 0 0 0 0 0 0 +10.779 -7.856 0.512 0 0 0 0 0 0 0 +10.804 -7.823 0.512 0 0 0 0 0 0 0 +10.825 -7.786 0.512 0 0 0 0 0 0 0 +10.845 -7.749 0.512 0 0 0 0 0 0 0 +10.867 -7.713 0.512 0 0 0 0 0 0 0 +10.878 -7.695 0.512 0 0 0 0 0 0 0 +10.897 -7.658 0.512 0 0 0 0 0 0 0 +10.924 -7.626 0.512 0 0 0 0 0 0 0 +10.938 -7.584 0.511 0 0 0 0 0 0 0 +10.965 -7.552 0.512 0 0 0 0 0 0 0 +10.986 -7.516 0.511 0 0 0 0 0 0 0 +11.014 -7.484 0.512 0 0 0 0 0 0 0 +11.031 -7.47 0.512 0 0 0 0 0 0 0 +11.056 -7.437 0.512 0 0 0 0 0 0 0 +11.081 -7.403 0.512 0 0 0 0 0 0 0 +11.074 -7.348 0.511 0 0 0 0 0 0 0 +11.097 -7.314 0.511 0 0 0 0 0 0 0 +10.864 -7.112 0.504 0 0 0 0 0 0 0 +10.863 -7.062 0.503 0 0 0 0 0 0 0 +10.865 -7.04 0.503 0 0 0 0 0 0 0 +10.884 -7.003 0.503 0 0 0 0 0 0 0 +10.908 -6.97 0.503 0 0 0 0 0 0 0 +10.951 -6.95 0.504 0 0 0 0 0 0 0 +10.97 -6.913 0.504 0 0 0 0 0 0 0 +10.997 -6.882 0.504 0 0 0 0 0 0 0 +11.018 -6.847 0.504 0 0 0 0 0 0 0 +11.027 -6.829 0.504 0 0 0 0 0 0 0 +11.047 -6.793 0.504 0 0 0 0 0 0 0 +11.068 -6.759 0.504 0 0 0 0 0 0 0 +11.118 -6.741 0.504 0 0 0 0 0 0 0 +11.155 -6.716 0.505 0 0 0 0 0 0 0 +11.207 -6.699 0.506 0 0 0 0 0 0 0 +11.259 -6.682 0.506 0 0 0 0 0 0 0 +11.299 -6.682 0.507 0 0 0 0 0 0 0 +11.349 -6.663 0.508 0 0 0 0 0 0 0 +11.408 -6.65 0.509 0 0 0 0 0 0 0 +11.453 -6.628 0.51 0 0 0 0 0 0 0 +11.512 -6.614 0.511 0 0 0 0 0 0 0 +11.561 -6.593 0.511 0 0 0 0 0 0 0 +11.607 -6.572 0.512 0 0 0 0 0 0 0 +11.626 -6.558 0.512 0 0 0 0 0 0 0 +11.677 -6.538 0.513 0 0 0 0 0 0 0 +11.835 -6.578 0.517 0 0 0 0 0 0 0 +12.056 -6.65 0.522 0 0 0 0 0 0 0 +12.101 -6.626 0.522 0 0 0 0 0 0 0 +12.162 -6.61 0.524 0 0 0 0 0 0 0 +12.216 -6.589 0.524 0 0 0 0 0 0 0 +12.259 -6.587 0.525 0 0 0 0 0 0 0 +12.322 -6.571 0.526 0 0 0 0 0 0 0 +12.374 -6.549 0.527 0 0 0 0 0 0 0 +12.428 -6.528 0.528 0 0 0 0 0 0 0 +12.486 -6.508 0.529 0 0 0 0 0 0 0 +12.563 -6.498 0.53 0 0 0 0 0 0 0 +8.843 -4.547 0.435 0 0 0 0 0 0 0 +8.752 -4.484 0.432 0 0 0 0 0 0 0 +8.837 -4.492 0.434 0 0 0 0 0 0 0 +12.775 -6.43 0.534 0 0 0 0 0 0 0 +12.838 -6.412 0.535 0 0 0 0 0 0 0 +12.901 -6.393 0.536 0 0 0 0 0 0 0 +12.964 -6.373 0.537 0 0 0 0 0 0 0 +13.028 -6.353 0.538 0 0 0 0 0 0 0 +13.065 -6.346 0.539 0 0 0 0 0 0 0 +13.146 -6.334 0.541 0 0 0 0 0 0 0 +13.191 -6.305 0.541 0 0 0 0 0 0 0 +13.192 -6.255 0.541 0 0 0 0 0 0 0 +13.176 -6.196 0.54 0 0 0 0 0 0 0 +13.172 -6.144 0.539 0 0 0 0 0 0 0 +13.193 -6.103 0.539 0 0 0 0 0 0 0 +13.204 -6.084 0.539 0 0 0 0 0 0 0 +13.26 -6.059 0.54 0 0 0 0 0 0 0 +13.34 -6.045 0.542 0 0 0 0 0 0 0 +13.414 -6.027 0.543 0 0 0 0 0 0 0 +13.486 -6.009 0.545 0 0 0 0 0 0 0 +13.545 -5.984 0.546 0 0 0 0 0 0 0 +13.615 -5.964 0.547 0 0 0 0 0 0 0 +13.669 -5.962 0.548 0 0 0 0 0 0 0 +13.739 -5.941 0.549 0 0 0 0 0 0 0 +13.818 -5.923 0.551 0 0 0 0 0 0 0 +13.89 -5.903 0.552 0 0 0 0 0 0 0 +13.932 -5.869 0.553 0 0 0 0 0 0 0 +14.163 -5.913 0.558 0 0 0 0 0 0 0 +14.204 -5.878 0.558 0 0 0 0 0 0 0 +14.254 -5.872 0.559 0 0 0 0 0 0 0 +14.298 -5.838 0.56 0 0 0 0 0 0 0 +14.366 -5.813 0.561 0 0 0 0 0 0 0 +14.397 -5.773 0.562 0 0 0 0 0 0 0 +14.46 -5.746 0.563 0 0 0 0 0 0 0 +14.497 -5.708 0.563 0 0 0 0 0 0 0 +14.559 -5.679 0.564 0 0 0 0 0 0 0 +14.589 -5.664 0.565 0 0 0 0 0 0 0 +14.657 -5.638 0.566 0 0 0 0 0 0 0 +14.688 -5.597 0.566 0 0 0 0 0 0 0 +14.7 -5.549 0.566 0 0 0 0 0 0 0 +14.728 -5.506 0.566 0 0 0 0 0 0 0 +14.783 -5.474 0.567 0 0 0 0 0 0 0 +14.836 -5.441 0.568 0 0 0 0 0 0 0 +15.161 -5.505 0.576 0 0 0 0 0 0 0 +15.204 -5.494 0.576 0 0 0 0 0 0 0 +15.258 -5.459 0.577 0 0 0 0 0 0 0 +15.317 -5.426 0.578 0 0 0 0 0 0 0 +15.366 -5.389 0.579 0 0 0 0 0 0 0 +15.423 -5.354 0.58 0 0 0 0 0 0 0 +15.472 -5.317 0.581 0 0 0 0 0 0 0 +15.507 -5.275 0.581 0 0 0 0 0 0 0 +15.565 -5.267 0.583 0 0 0 0 0 0 0 +15.611 -5.228 0.583 0 0 0 0 0 0 0 +15.666 -5.192 0.584 0 0 0 0 0 0 0 +15.722 -5.155 0.585 0 0 0 0 0 0 0 +15.782 -5.12 0.586 0 0 0 0 0 0 0 +15.834 -5.082 0.587 0 0 0 0 0 0 0 +15.88 -5.069 0.588 0 0 0 0 0 0 0 +15.961 -5.04 0.589 0 0 0 0 0 0 0 +15.982 -4.991 0.59 0 0 0 0 0 0 0 +15.964 -4.931 0.589 0 0 0 0 0 0 0 +15.939 -4.868 0.588 0 0 0 0 0 0 0 +15.9 -4.802 0.587 0 0 0 0 0 0 0 +15.936 -4.758 0.587 0 0 0 0 0 0 0 +16.001 -4.723 0.588 0 0 0 0 0 0 0 +16.074 -4.717 0.59 0 0 0 0 0 0 0 +16.167 -4.689 0.592 0 0 0 0 0 0 0 +16.215 -4.647 0.592 0 0 0 0 0 0 0 +16.281 -4.611 0.594 0 0 0 0 0 0 0 +16.332 -4.57 0.595 0 0 0 0 0 0 0 +16.4 -4.534 0.596 0 0 0 0 0 0 0 +16.451 -4.492 0.597 0 0 0 0 0 0 0 +16.516 -4.482 0.598 0 0 0 0 0 0 0 +16.559 -4.438 0.599 0 0 0 0 0 0 0 +16.623 -4.399 0.6 0 0 0 0 0 0 0 +16.676 -4.357 0.601 0 0 0 0 0 0 0 +16.751 -4.32 0.602 0 0 0 0 0 0 0 +16.8 -4.276 0.603 0 0 0 0 0 0 0 +16.881 -4.24 0.605 0 0 0 0 0 0 0 +16.925 -4.223 0.606 0 0 0 0 0 0 0 +16.975 -4.179 0.606 0 0 0 0 0 0 0 +17.044 -4.139 0.608 0 0 0 0 0 0 0 +17.098 -4.095 0.609 0 0 0 0 0 0 0 +17.169 -4.055 0.61 0 0 0 0 0 0 0 +17.221 -4.01 0.611 0 0 0 0 0 0 0 +17.295 -3.97 0.612 0 0 0 0 0 0 0 +17.341 -3.952 0.613 0 0 0 0 0 0 0 +17.408 -3.91 0.615 0 0 0 0 0 0 0 +17.48 -3.868 0.616 0 0 0 0 0 0 0 +17.532 -3.822 0.617 0 0 0 0 0 0 0 +17.549 -3.768 0.617 0 0 0 0 0 0 0 +17.62 -3.725 0.618 0 0 0 0 0 0 0 +17.857 -3.716 0.624 0 0 0 0 0 0 0 +18.039 -3.724 0.628 0 0 0 0 0 0 0 +18.105 -3.679 0.629 0 0 0 0 0 0 0 +18.179 -3.634 0.631 0 0 0 0 0 0 0 +18.259 -3.591 0.632 0 0 0 0 0 0 0 +18.318 -3.542 0.633 0 0 0 0 0 0 0 +18.382 -3.495 0.634 0 0 0 0 0 0 0 +18.45 -3.447 0.636 0 0 0 0 0 0 0 +18.534 -3.433 0.638 0 0 0 0 0 0 0 +13.826 -2.523 0.528 0 0 0 0 0 0 0 +13.759 -2.466 0.527 0 0 0 0 0 0 0 +13.714 -2.414 0.525 0 0 0 0 0 0 0 +13.719 -2.37 0.525 0 0 0 0 0 0 0 +13.711 -2.324 0.525 0 0 0 0 0 0 0 +13.698 -2.278 0.525 0 0 0 0 0 0 0 +13.702 -2.257 0.525 0 0 0 0 0 0 0 +13.697 -2.212 0.524 0 0 0 0 0 0 0 +13.722 -2.171 0.525 0 0 0 0 0 0 0 +13.734 -2.129 0.525 0 0 0 0 0 0 0 +13.755 -2.088 0.525 0 0 0 0 0 0 0 +13.785 -2.048 0.526 0 0 0 0 0 0 0 +13.829 -2.01 0.527 0 0 0 0 0 0 0 +13.901 -1.998 0.528 0 0 0 0 0 0 0 +13.993 -1.967 0.53 0 0 0 0 0 0 0 +19.386 -2.652 0.654 0 0 0 0 0 0 0 +19.496 -2.605 0.656 0 0 0 0 0 0 0 +19.565 -2.552 0.658 0 0 0 0 0 0 0 +19.605 -2.494 0.658 0 0 0 0 0 0 0 +19.509 -2.42 0.656 0 0 0 0 0 0 0 +19.583 -2.398 0.658 0 0 0 0 0 0 0 +19.61 -2.338 0.658 0 0 0 0 0 0 0 +19.655 -2.281 0.659 0 0 0 0 0 0 0 +19.712 -2.225 0.66 0 0 0 0 0 0 0 +19.756 -2.167 0.661 0 0 0 0 0 0 0 +19.819 -2.111 0.662 0 0 0 0 0 0 0 +19.855 -2.052 0.663 0 0 0 0 0 0 0 +19.914 -2.026 0.664 0 0 0 0 0 0 0 +19.96 -1.967 0.665 0 0 0 0 0 0 0 +20.008 -1.909 0.666 0 0 0 0 0 0 0 +20.034 -1.847 0.666 0 0 0 0 0 0 0 +20.037 -1.784 0.666 0 0 0 0 0 0 0 +24.631 -2.11 0.771 0 0 0 0 0 0 0 +24.506 -2.021 0.768 0 0 0 0 0 0 0 +21.077 -1.709 0.69 0 0 0 0 0 0 0 +20.979 -1.635 0.688 0 0 0 0 0 0 0 +21.056 -1.574 0.689 0 0 0 0 0 0 0 +21.074 -1.509 0.689 0 0 0 0 0 0 0 +21.119 -1.445 0.69 0 0 0 0 0 0 0 +21.203 -1.384 0.692 0 0 0 0 0 0 0 +21.267 -1.321 0.694 0 0 0 0 0 0 0 +21.313 -1.29 0.695 0 0 0 0 0 0 0 +21.415 -1.229 0.697 0 0 0 0 0 0 0 +21.611 -1.172 0.701 0 0 0 0 0 0 0 +21.674 -1.107 0.703 0 0 0 0 0 0 0 +21.572 -1.034 0.7 0 0 0 0 0 0 0 +21.253 -0.952 0.693 0 0 0 0 0 0 0 +21.28 -0.886 0.693 0 0 0 0 0 0 0 +21.279 -0.853 0.693 0 0 0 0 0 0 0 +21.208 -0.783 0.692 0 0 0 0 0 0 0 +21.182 -0.716 0.691 0 0 0 0 0 0 0 +21.19 -0.649 0.691 0 0 0 0 0 0 0 +21.238 -0.584 0.692 0 0 0 0 0 0 0 +21.324 -0.519 0.694 0 0 0 0 0 0 0 +21.384 -0.453 0.695 0 0 0 0 0 0 0 +21.432 -0.421 0.697 0 0 0 0 0 0 0 +21.489 -0.354 0.698 0 0 0 0 0 0 0 +21.544 -0.287 0.699 0 0 0 0 0 0 0 +21.613 -0.22 0.701 0 0 0 0 0 0 0 +21.662 -0.153 0.702 0 0 0 0 0 0 0 +21.892 -0.085 0.707 0 0 0 0 0 0 0 +23.326 -0.016 0.74 0 0 0 0 0 0 0 +58.881 0.163 1.103 0 0 0 0 0 0 0 +58.85 0.255 1.103 0 0 0 0 0 0 0 +58.797 0.44 1.102 0 0 0 0 0 0 0 +58.522 0.622 1.098 0 0 0 0 0 0 0 +57.96 0.798 1.09 0 0 0 0 0 0 0 +58.315 0.986 1.095 0 0 0 0 0 0 0 +58.309 1.169 1.095 0 0 0 0 0 0 0 +58.281 1.352 1.095 0 0 0 0 0 0 0 +58.257 1.534 1.094 0 0 0 0 0 0 0 +58.192 1.624 1.093 0 0 0 0 0 0 0 +58.147 1.806 1.093 0 0 0 0 0 0 0 +58.241 1.992 1.094 0 0 0 0 0 0 0 +58.276 2.176 1.095 0 0 0 0 0 0 0 +58.233 2.358 1.094 0 0 0 0 0 0 0 +58.278 2.543 1.095 0 0 0 0 0 0 0 +58.427 2.733 1.098 0 0 0 0 0 0 0 +53.675 2.598 1.025 0 0 0 0 0 0 0 +53.77 2.772 1.027 0 0 0 0 0 0 0 +53.855 2.946 1.028 0 0 0 0 0 0 0 +25.551 1.492 0.597 0 0 0 0 0 0 0 +25.596 1.575 0.598 0 0 0 0 0 0 0 +25.545 1.653 0.597 0 0 0 0 0 0 0 +59.844 4.308 1.12 0 0 0 0 0 0 0 +59.645 4.483 1.118 0 0 0 0 0 0 0 +59.525 4.662 1.116 0 0 0 0 0 0 0 +59.639 4.859 1.118 0 0 0 0 0 0 0 +59.719 5.055 1.119 0 0 0 0 0 0 0 +59.823 5.253 1.121 0 0 0 0 0 0 0 +18.72 1.751 0.494 0 0 0 0 0 0 0 +18.72 1.81 0.494 0 0 0 0 0 0 0 +18.631 1.86 0.493 0 0 0 0 0 0 0 +60.783 6.204 1.137 0 0 0 0 0 0 0 +60.877 6.406 1.139 0 0 0 0 0 0 0 +60.997 6.613 1.141 0 0 0 0 0 0 0 +61.102 6.721 1.143 0 0 0 0 0 0 0 +61.256 6.933 1.146 0 0 0 0 0 0 0 +61.402 7.145 1.148 0 0 0 0 0 0 0 +61.463 7.348 1.149 0 0 0 0 0 0 0 +61.348 7.53 1.148 0 0 0 0 0 0 0 +61.183 7.705 1.146 0 0 0 0 0 0 0 +61.248 7.908 1.147 0 0 0 0 0 0 0 +25.058 3.291 0.592 0 0 0 0 0 0 0 +43.761 5.868 0.879 0 0 0 0 0 0 0 +43.633 5.99 0.878 0 0 0 0 0 0 0 +43.898 6.167 0.882 0 0 0 0 0 0 0 +43.935 6.313 0.883 0 0 0 0 0 0 0 +43.892 6.447 0.883 0 0 0 0 0 0 0 +20.769 3.131 0.527 0 0 0 0 0 0 0 +20.916 3.187 0.53 0 0 0 0 0 0 0 +43.117 6.819 0.872 0 0 0 0 0 0 0 +43.034 6.945 0.871 0 0 0 0 0 0 0 +42.854 7.054 0.868 0 0 0 0 0 0 0 +42.69 7.165 0.866 0 0 0 0 0 0 0 +42.507 7.272 0.864 0 0 0 0 0 0 0 +42.358 7.315 0.862 0 0 0 0 0 0 0 +41.375 7.28 0.847 0 0 0 0 0 0 0 +41.388 7.416 0.847 0 0 0 0 0 0 0 +40.164 7.328 0.829 0 0 0 0 0 0 0 +40.711 7.559 0.838 0 0 0 0 0 0 0 +40.807 7.71 0.839 0 0 0 0 0 0 0 +40.649 7.812 0.837 0 0 0 0 0 0 0 +40.874 7.922 0.841 0 0 0 0 0 0 0 +18.687 3.697 0.497 0 0 0 0 0 0 0 +40.698 8.154 0.839 0 0 0 0 0 0 0 +40.906 8.329 0.843 0 0 0 0 0 0 0 +40.752 8.431 0.841 0 0 0 0 0 0 0 +40.471 8.506 0.837 0 0 0 0 0 0 0 +39.523 8.437 0.822 0 0 0 0 0 0 0 +39.169 8.426 0.817 0 0 0 0 0 0 0 +39.09 8.537 0.816 0 0 0 0 0 0 0 +38.988 8.644 0.815 0 0 0 0 0 0 0 +38.926 8.758 0.815 0 0 0 0 0 0 0 +38.834 8.866 0.814 0 0 0 0 0 0 0 +38.847 8.997 0.814 0 0 0 0 0 0 0 +38.848 9.126 0.815 0 0 0 0 0 0 0 +38.895 9.202 0.816 0 0 0 0 0 0 0 +38.892 9.33 0.816 0 0 0 0 0 0 0 +39.056 9.499 0.819 0 0 0 0 0 0 0 +39.25 9.677 0.823 0 0 0 0 0 0 0 +42.087 10.515 0.868 0 0 0 0 0 0 0 +42.256 10.698 0.871 0 0 0 0 0 0 0 +42.233 10.834 0.871 0 0 0 0 0 0 0 +41.744 10.778 0.864 0 0 0 0 0 0 0 +42.53 11.123 0.876 0 0 0 0 0 0 0 +42.367 11.223 0.874 0 0 0 0 0 0 0 +50.235 13.471 0.999 0 0 0 0 0 0 0 +49.922 13.556 0.995 0 0 0 0 0 0 0 +42.08 11.573 0.872 0 0 0 0 0 0 0 +42.863 11.932 0.885 0 0 0 0 0 0 0 +42.758 12.048 0.883 0 0 0 0 0 0 0 +50.788 14.392 1.011 0 0 0 0 0 0 0 +70.689 20.261 1.326 0 0 0 0 0 0 0 +36.448 10.584 0.785 0 0 0 0 0 0 0 +50.859 14.931 1.014 0 0 0 0 0 0 0 +36.172 10.751 0.782 0 0 0 0 0 0 0 +35.941 10.867 0.779 0 0 0 0 0 0 0 +68.923 21.287 1.305 0 0 0 0 0 0 0 +36.84 11.772 0.796 0 0 0 0 0 0 0 +36.725 11.863 0.795 0 0 0 0 0 0 0 +36.678 11.911 0.794 0 0 0 0 0 0 0 +36.632 12.024 0.794 0 0 0 0 0 0 0 +36.705 12.176 0.796 0 0 0 0 0 0 0 +36.552 12.253 0.794 0 0 0 0 0 0 0 +46.492 15.74 0.954 0 0 0 0 0 0 0 +46.329 15.847 0.953 0 0 0 0 0 0 0 +46.203 15.966 0.951 0 0 0 0 0 0 0 +46.155 16.031 0.951 0 0 0 0 0 0 0 +46.116 16.18 0.951 0 0 0 0 0 0 0 +46.105 16.339 0.952 0 0 0 0 0 0 0 +46.091 16.497 0.952 0 0 0 0 0 0 0 +46.163 16.686 0.954 0 0 0 0 0 0 0 +46.292 16.898 0.957 0 0 0 0 0 0 0 +71.506 26.341 1.367 0 0 0 0 0 0 0 +71.679 26.661 1.371 0 0 0 0 0 0 0 +71.875 26.862 1.375 0 0 0 0 0 0 0 +72.051 27.186 1.379 0 0 0 0 0 0 0 +72.215 27.507 1.383 0 0 0 0 0 0 0 +34.091 13.246 0.764 0 0 0 0 0 0 0 +34.073 13.362 0.764 0 0 0 0 0 0 0 +36.181 14.319 0.8 0 0 0 0 0 0 0 +36.138 14.367 0.799 0 0 0 0 0 0 0 +35.914 14.41 0.796 0 0 0 0 0 0 0 +35.897 14.533 0.797 0 0 0 0 0 0 0 +35.912 14.671 0.798 0 0 0 0 0 0 0 +35.784 14.75 0.797 0 0 0 0 0 0 0 +35.76 14.872 0.797 0 0 0 0 0 0 0 +35.534 15.238 0.796 0 0 0 0 0 0 0 +35.596 15.397 0.798 0 0 0 0 0 0 0 +35.357 15.426 0.795 0 0 0 0 0 0 0 +35.469 15.608 0.797 0 0 0 0 0 0 0 +35.455 15.668 0.797 0 0 0 0 0 0 0 +35.404 15.779 0.797 0 0 0 0 0 0 0 +41.268 18.699 0.897 0 0 0 0 0 0 0 +41.134 18.795 0.896 0 0 0 0 0 0 0 +40.984 18.882 0.894 0 0 0 0 0 0 0 +40.838 18.97 0.893 0 0 0 0 0 0 0 +40.693 18.981 0.891 0 0 0 0 0 0 0 +40.532 19.061 0.889 0 0 0 0 0 0 0 +40.389 19.149 0.888 0 0 0 0 0 0 0 +40.231 19.229 0.886 0 0 0 0 0 0 0 +40.153 19.347 0.886 0 0 0 0 0 0 0 +40.308 19.578 0.889 0 0 0 0 0 0 0 +40.425 19.792 0.892 0 0 0 0 0 0 0 +40.367 19.842 0.892 0 0 0 0 0 0 0 +40.213 19.924 0.89 0 0 0 0 0 0 0 +40.07 20.01 0.889 0 0 0 0 0 0 0 +39.389 19.825 0.879 0 0 0 0 0 0 0 +28.942 14.689 0.701 0 0 0 0 0 0 0 +38.977 19.926 0.874 0 0 0 0 0 0 0 +38.822 20.001 0.872 0 0 0 0 0 0 0 +38.696 20.013 0.87 0 0 0 0 0 0 0 +38.608 20.121 0.87 0 0 0 0 0 0 0 +38.472 20.205 0.869 0 0 0 0 0 0 0 +38.366 20.303 0.868 0 0 0 0 0 0 0 +38.251 20.396 0.867 0 0 0 0 0 0 0 +38.109 20.474 0.866 0 0 0 0 0 0 0 +37.969 20.553 0.865 0 0 0 0 0 0 0 +37.827 20.63 0.863 0 0 0 0 0 0 0 +37.729 20.654 0.862 0 0 0 0 0 0 0 +37.592 20.733 0.861 0 0 0 0 0 0 0 +37.454 20.81 0.86 0 0 0 0 0 0 0 +37.317 20.888 0.858 0 0 0 0 0 0 0 +37.188 20.97 0.857 0 0 0 0 0 0 0 +37.052 21.047 0.856 0 0 0 0 0 0 0 +36.917 21.124 0.855 0 0 0 0 0 0 0 +36.817 21.144 0.854 0 0 0 0 0 0 0 +36.687 21.222 0.852 0 0 0 0 0 0 0 +36.573 21.31 0.852 0 0 0 0 0 0 0 +36.422 21.376 0.85 0 0 0 0 0 0 0 +36.28 21.446 0.849 0 0 0 0 0 0 0 +36.115 21.502 0.847 0 0 0 0 0 0 0 +35.986 21.502 0.845 0 0 0 0 0 0 0 +35.881 21.592 0.845 0 0 0 0 0 0 0 +35.741 21.662 0.843 0 0 0 0 0 0 0 +35.601 21.73 0.842 0 0 0 0 0 0 0 +35.488 21.815 0.841 0 0 0 0 0 0 0 +35.348 21.882 0.84 0 0 0 0 0 0 0 +35.247 21.973 0.84 0 0 0 0 0 0 0 +35.543 22.39 0.847 0 0 0 0 0 0 0 +29.717 18.855 0.743 0 0 0 0 0 0 0 +29.593 18.908 0.742 0 0 0 0 0 0 0 +29.566 19.021 0.743 0 0 0 0 0 0 0 +35.064 22.709 0.843 0 0 0 0 0 0 0 +34.915 22.768 0.842 0 0 0 0 0 0 0 +13.016 8.595 0.445 0 0 0 0 0 0 0 +34.037 22.579 0.829 0 0 0 0 0 0 0 +33.897 22.641 0.828 0 0 0 0 0 0 0 +33.788 22.721 0.827 0 0 0 0 0 0 0 +33.678 22.802 0.826 0 0 0 0 0 0 0 +33.56 22.876 0.826 0 0 0 0 0 0 0 +33.447 22.953 0.825 0 0 0 0 0 0 0 +33.439 23.025 0.825 0 0 0 0 0 0 0 +33.439 23.18 0.827 0 0 0 0 0 0 0 +33.415 23.319 0.828 0 0 0 0 0 0 0 +33.409 23.471 0.829 0 0 0 0 0 0 0 +33.41 23.629 0.83 0 0 0 0 0 0 0 +33.446 23.812 0.832 0 0 0 0 0 0 0 +33.464 23.984 0.834 0 0 0 0 0 0 0 +33.491 24.083 0.835 0 0 0 0 0 0 0 +33.487 24.239 0.837 0 0 0 0 0 0 0 +33.483 24.398 0.838 0 0 0 0 0 0 0 +33.356 24.466 0.837 0 0 0 0 0 0 0 +33.455 24.7 0.84 0 0 0 0 0 0 0 +33.449 24.859 0.842 0 0 0 0 0 0 0 +33.44 25.015 0.843 0 0 0 0 0 0 0 +33.461 25.113 0.844 0 0 0 0 0 0 0 +33.449 25.269 0.845 0 0 0 0 0 0 0 +17.179 13.079 0.536 0 0 0 0 0 0 0 +17.261 13.226 0.538 0 0 0 0 0 0 0 +17.373 13.399 0.541 0 0 0 0 0 0 0 +17.357 13.474 0.542 0 0 0 0 0 0 0 +17.326 13.537 0.542 0 0 0 0 0 0 0 +17.546 13.753 0.547 0 0 0 0 0 0 0 +33.346 26.447 0.855 0 0 0 0 0 0 0 +33.335 26.609 0.857 0 0 0 0 0 0 0 +33.315 26.765 0.858 0 0 0 0 0 0 0 +34.838 28.167 0.889 0 0 0 0 0 0 0 +34.791 28.311 0.89 0 0 0 0 0 0 0 +6.731 5.522 0.34 0 0 0 0 0 0 0 +6.702 5.533 0.34 0 0 0 0 0 0 0 +6.684 5.554 0.34 0 0 0 0 0 0 0 +11.67 9.796 0.439 0 0 0 0 0 0 0 +11.526 9.737 0.437 0 0 0 0 0 0 0 +11.446 9.732 0.436 0 0 0 0 0 0 0 +11.352 9.682 0.435 0 0 0 0 0 0 0 +11.775 10.107 0.444 0 0 0 0 0 0 0 +11.683 10.091 0.443 0 0 0 0 0 0 0 +11.588 10.073 0.441 0 0 0 0 0 0 0 +11.583 10.133 0.442 0 0 0 0 0 0 0 +11.443 10.075 0.44 0 0 0 0 0 0 0 +11.596 10.273 0.443 0 0 0 0 0 0 0 +33.262 29.496 0.884 0 0 0 0 0 0 0 +11.299 10.107 0.438 0 0 0 0 0 0 0 +11.394 10.256 0.441 0 0 0 0 0 0 0 +11.22 10.228 0.439 0 0 0 0 0 0 0 +16.767 15.363 0.554 0 0 0 0 0 0 0 +11.01 10.196 0.436 0 0 0 0 0 0 0 +10.878 10.138 0.434 0 0 0 0 0 0 0 +16.252 15.224 0.546 0 0 0 0 0 0 0 +16.166 15.24 0.546 0 0 0 0 0 0 0 +15.59 14.79 0.535 0 0 0 0 0 0 0 +10.785 10.307 0.435 0 0 0 0 0 0 0 +16.062 15.43 0.547 0 0 0 0 0 0 0 +16.053 15.469 0.547 0 0 0 0 0 0 0 +11.356 11.023 0.448 0 0 0 0 0 0 0 +33.053 32.216 0.91 0 0 0 0 0 0 0 +11.234 11.042 0.447 0 0 0 0 0 0 0 +32.96 32.531 0.912 0 0 0 0 0 0 0 +32.931 32.708 0.914 0 0 0 0 0 0 0 +32.884 32.867 0.915 0 0 0 0 0 0 0 +32.905 32.992 0.917 0 0 0 0 0 0 0 +32.854 33.147 0.918 0 0 0 0 0 0 0 +15.463 15.819 0.544 0 0 0 0 0 0 0 +32.751 33.672 0.922 0 0 0 0 0 0 0 +32.628 33.757 0.922 0 0 0 0 0 0 0 +32.505 33.842 0.922 0 0 0 0 0 0 0 +32.432 33.979 0.922 0 0 0 0 0 0 0 +32.41 34.063 0.923 0 0 0 0 0 0 0 +32.372 34.238 0.924 0 0 0 0 0 0 0 +32.304 34.381 0.925 0 0 0 0 0 0 0 +32.324 34.62 0.928 0 0 0 0 0 0 0 +32.29 34.802 0.93 0 0 0 0 0 0 0 +32.338 35.074 0.933 0 0 0 0 0 0 0 +32.315 35.271 0.935 0 0 0 0 0 0 0 +32.283 35.347 0.936 0 0 0 0 0 0 0 +32.244 35.528 0.938 0 0 0 0 0 0 0 +32.197 35.7 0.939 0 0 0 0 0 0 0 +32.712 36.501 0.953 0 0 0 0 0 0 0 +20.475 23.151 0.678 0 0 0 0 0 0 0 +20.376 23.113 0.676 0 0 0 0 0 0 0 +20.157 23.01 0.673 0 0 0 0 0 0 0 +20.095 23.085 0.673 0 0 0 0 0 0 0 +20.312 23.482 0.68 0 0 0 0 0 0 0 +20.25 23.56 0.68 0 0 0 0 0 0 0 +31.706 37.102 0.95 0 0 0 0 0 0 0 +31.577 37.186 0.95 0 0 0 0 0 0 0 +31.556 37.28 0.951 0 0 0 0 0 0 0 +31.482 37.431 0.952 0 0 0 0 0 0 0 +31.417 37.592 0.953 0 0 0 0 0 0 0 +31.354 37.757 0.954 0 0 0 0 0 0 0 +31.345 37.988 0.957 0 0 0 0 0 0 0 +31.778 38.76 0.97 0 0 0 0 0 0 0 +18.37 22.567 0.65 0 0 0 0 0 0 0 +18.313 22.642 0.651 0 0 0 0 0 0 0 +18.301 22.7 0.651 0 0 0 0 0 0 0 +18.98 23.693 0.67 0 0 0 0 0 0 0 +18.927 23.779 0.67 0 0 0 0 0 0 0 +18.202 23.017 0.654 0 0 0 0 0 0 0 +18.202 23.167 0.656 0 0 0 0 0 0 0 +18.15 23.251 0.656 0 0 0 0 0 0 0 +18.992 24.486 0.679 0 0 0 0 0 0 0 +18.929 24.484 0.679 0 0 0 0 0 0 0 +30.638 39.86 0.973 0 0 0 0 0 0 0 +30.562 40.021 0.974 0 0 0 0 0 0 0 +30.5 40.201 0.975 0 0 0 0 0 0 0 +30.397 40.327 0.976 0 0 0 0 0 0 0 +30.282 40.438 0.976 0 0 0 0 0 0 0 +30.071 40.421 0.974 0 0 0 0 0 0 0 +29.961 40.538 0.975 0 0 0 0 0 0 0 +29.92 40.615 0.975 0 0 0 0 0 0 0 +29.775 40.687 0.975 0 0 0 0 0 0 0 +29.744 40.913 0.977 0 0 0 0 0 0 0 +29.658 41.066 0.978 0 0 0 0 0 0 0 +29.578 41.227 0.98 0 0 0 0 0 0 0 +29.497 41.388 0.981 0 0 0 0 0 0 0 +27.121 38.696 0.927 0 0 0 0 0 0 0 +26.971 38.74 0.926 0 0 0 0 0 0 0 +26.92 38.927 0.928 0 0 0 0 0 0 0 +26.845 39.08 0.929 0 0 0 0 0 0 0 +31.457 46.097 1.057 0 0 0 0 0 0 0 +31.076 45.848 1.05 0 0 0 0 0 0 0 +30.806 45.603 1.045 0 0 0 0 0 0 0 +28.899 43.367 1 0 0 0 0 0 0 0 +28.636 43.268 0.997 0 0 0 0 0 0 0 +28.476 43.321 0.996 0 0 0 0 0 0 0 +28.378 43.469 0.997 0 0 0 0 0 0 0 +28.289 43.631 0.999 0 0 0 0 0 0 0 +28.262 43.739 1 0 0 0 0 0 0 0 +28.174 43.905 1.001 0 0 0 0 0 0 0 +28.072 44.049 1.002 0 0 0 0 0 0 0 +18.604 29.412 0.737 0 0 0 0 0 0 0 +18.462 29.392 0.736 0 0 0 0 0 0 0 +18.352 29.421 0.735 0 0 0 0 0 0 0 +18.268 29.493 0.735 0 0 0 0 0 0 0 +18.261 29.586 0.737 0 0 0 0 0 0 0 +27.532 44.896 1.009 0 0 0 0 0 0 0 +27.419 45.028 1.01 0 0 0 0 0 0 0 +27.321 45.186 1.011 0 0 0 0 0 0 0 +27.207 45.318 1.012 0 0 0 0 0 0 0 +27.094 45.453 1.013 0 0 0 0 0 0 0 +26.995 45.612 1.014 0 0 0 0 0 0 0 +26.955 45.708 1.015 0 0 0 0 0 0 0 +26.852 45.861 1.016 0 0 0 0 0 0 0 +26.748 46.014 1.017 0 0 0 0 0 0 0 +26.631 46.147 1.018 0 0 0 0 0 0 0 +26.522 46.292 1.019 0 0 0 0 0 0 0 +26.42 46.452 1.021 0 0 0 0 0 0 0 +26.31 46.599 1.022 0 0 0 0 0 0 0 +26.255 46.674 1.022 0 0 0 0 0 0 0 +26.146 46.822 1.024 0 0 0 0 0 0 0 +26.035 46.971 1.025 0 0 0 0 0 0 0 +25.911 47.094 1.025 0 0 0 0 0 0 0 +12.668 23.224 0.61 0 0 0 0 0 0 0 +12.563 23.204 0.609 0 0 0 0 0 0 0 +12.478 23.223 0.609 0 0 0 0 0 0 0 +12.393 23.239 0.608 0 0 0 0 0 0 0 +25.479 47.901 1.033 0 0 0 0 0 0 0 +25.35 48.021 1.034 0 0 0 0 0 0 0 +25.229 48.157 1.035 0 0 0 0 0 0 0 +25.107 48.293 1.036 0 0 0 0 0 0 0 +24.978 48.416 1.036 0 0 0 0 0 0 0 +24.846 48.533 1.037 0 0 0 0 0 0 0 +24.63 48.486 1.035 0 0 0 0 0 0 0 +24.578 48.573 1.036 0 0 0 0 0 0 0 +24.452 48.704 1.037 0 0 0 0 0 0 0 +24.33 49.229 1.043 0 0 0 0 0 0 0 +24.071 49.484 1.045 0 0 0 0 0 0 0 +23.894 49.715 1.047 0 0 0 0 0 0 0 +17.072 35.825 0.811 0 0 0 0 0 0 0 +17.01 35.985 0.813 0 0 0 0 0 0 0 +16.569 35.342 0.801 0 0 0 0 0 0 0 +16.441 35.356 0.801 0 0 0 0 0 0 0 +16.51 35.797 0.807 0 0 0 0 0 0 0 +22.995 50.25 1.048 0 0 0 0 0 0 0 +22.931 50.317 1.049 0 0 0 0 0 0 0 +15.809 35 0.792 0 0 0 0 0 0 0 +22.671 50.587 1.051 0 0 0 0 0 0 0 +15.522 34.947 0.789 0 0 0 0 0 0 0 +15.072 34.518 0.781 0 0 0 0 0 0 0 +15.165 35.032 0.788 0 0 0 0 0 0 0 +14.968 34.725 0.783 0 0 0 0 0 0 0 +14.948 34.981 0.786 0 0 0 0 0 0 0 +14.721 34.752 0.782 0 0 0 0 0 0 0 +14.725 35.067 0.786 0 0 0 0 0 0 0 +14.683 35.278 0.789 0 0 0 0 0 0 0 +14.851 35.998 0.8 0 0 0 0 0 0 0 +14.574 35.645 0.794 0 0 0 0 0 0 0 +14.398 35.533 0.791 0 0 0 0 0 0 0 +21.039 52.123 1.063 0 0 0 0 0 0 0 +20.901 52.256 1.064 0 0 0 0 0 0 0 +20.744 52.338 1.064 0 0 0 0 0 0 0 +20.601 52.459 1.065 0 0 0 0 0 0 0 +13.466 34.634 0.773 0 0 0 0 0 0 0 +20.314 52.698 1.067 0 0 0 0 0 0 0 +20.166 52.808 1.068 0 0 0 0 0 0 0 +20.106 52.901 1.069 0 0 0 0 0 0 0 +19.951 52.994 1.069 0 0 0 0 0 0 0 +19.601 52.564 1.061 0 0 0 0 0 0 0 +19.397 52.52 1.059 0 0 0 0 0 0 0 +19.19 52.468 1.058 0 0 0 0 0 0 0 +19.016 52.502 1.057 0 0 0 0 0 0 0 +18.849 52.555 1.057 0 0 0 0 0 0 0 +18.766 52.585 1.057 0 0 0 0 0 0 0 +18.618 52.691 1.058 0 0 0 0 0 0 0 +18.49 52.857 1.06 0 0 0 0 0 0 0 +18.351 52.994 1.061 0 0 0 0 0 0 0 +18.312 53.422 1.067 0 0 0 0 0 0 0 +18.37 54.144 1.077 0 0 0 0 0 0 0 +18.215 54.247 1.078 0 0 0 0 0 0 0 +18.146 54.325 1.079 0 0 0 0 0 0 0 +18.082 54.704 1.084 0 0 0 0 0 0 0 +17.958 54.905 1.086 0 0 0 0 0 0 0 +17.773 54.925 1.086 0 0 0 0 0 0 0 +13.31 42.053 0.879 0 0 0 0 0 0 0 +13.177 42.09 0.879 0 0 0 0 0 0 0 +13.041 42.12 0.878 0 0 0 0 0 0 0 +12.933 42.007 0.876 0 0 0 0 0 0 0 +12.803 42.053 0.876 0 0 0 0 0 0 0 +12.693 42.166 0.878 0 0 0 0 0 0 0 +12.567 42.228 0.878 0 0 0 0 0 0 0 +12.463 42.363 0.879 0 0 0 0 0 0 0 +19.79 68.004 1.285 0 0 0 0 0 0 0 +19.575 68.06 1.285 0 0 0 0 0 0 0 +19.629 68.654 1.294 0 0 0 0 0 0 0 +20.474 74.241 1.379 0 0 0 0 0 0 0 +20.485 75.203 1.393 0 0 0 0 0 0 0 +13.407 52.144 1.027 0 0 0 0 0 0 0 +15.317 62.816 1.191 0 0 0 0 0 0 0 +15.252 62.976 1.193 0 0 0 0 0 0 0 +15.049 63.004 1.193 0 0 0 0 0 0 0 +16.416 72.742 1.342 0 0 0 0 0 0 0 +16.174 72.734 1.341 0 0 0 0 0 0 0 +15.935 72.738 1.34 0 0 0 0 0 0 0 +15.815 72.734 1.34 0 0 0 0 0 0 0 +2.608 12.873 0.408 0 0 0 0 0 0 0 +2.565 12.867 0.407 0 0 0 0 0 0 0 +3.428 17.581 0.48 0 0 0 0 0 0 0 +3.372 17.587 0.48 0 0 0 0 0 0 0 +0.596 3.519 0.262 0 0 0 0 0 0 0 +0.574 3.49 0.262 0 0 0 0 0 0 0 +0.563 3.492 0.262 0 0 0 0 0 0 0 +0.553 3.498 0.262 0 0 0 0 0 0 0 +0.54 3.488 0.261 0 0 0 0 0 0 0 +0.534 3.517 0.262 0 0 0 0 0 0 0 +0.521 3.507 0.262 0 0 0 0 0 0 0 +0.517 3.518 0.262 0 0 0 0 0 0 0 +0.508 3.531 0.262 0 0 0 0 0 0 0 +0.51 3.626 0.263 0 0 0 0 0 0 0 +0.49 3.57 0.263 0 0 0 0 0 0 0 +0.47 3.504 0.261 0 0 0 0 0 0 0 +2.931 22.144 0.548 0 0 0 0 0 0 0 +2.864 22.169 0.548 0 0 0 0 0 0 0 +2.796 22.194 0.548 0 0 0 0 0 0 0 +2.726 22.196 0.548 0 0 0 0 0 0 0 +2.656 22.205 0.548 0 0 0 0 0 0 0 +2.622 22.521 0.553 0 0 0 0 0 0 0 +2.532 22.36 0.55 0 0 0 0 0 0 0 +2.445 22.221 0.548 0 0 0 0 0 0 0 +0.103 32.636 0.704 0 0 0 0 0 0 0 +0 31.98 0.694 0 0 0 0 0 0 0 +-0.192 30.346 0.669 0 0 0 0 0 0 0 +-0.282 29.703 0.66 0 0 0 0 0 0 0 +-0.368 29.082 0.65 0 0 0 0 0 0 0 +-0.45 28.507 0.641 0 0 0 0 0 0 0 +-0.635 26.783 0.615 0 0 0 0 0 0 0 +-0.833 25.075 0.589 0 0 0 0 0 0 0 +-1.038 23.43 0.564 0 0 0 0 0 0 0 +-1.098 23.137 0.56 0 0 0 0 0 0 0 +-1.147 22.662 0.553 0 0 0 0 0 0 0 +-1.49 20.01 0.513 0 0 0 0 0 0 0 +-1.555 20.035 0.513 0 0 0 0 0 0 0 +-1.563 19.348 0.503 0 0 0 0 0 0 0 +-3.554 40.375 0.824 0 0 0 0 0 0 0 +-1.706 17.931 0.482 0 0 0 0 0 0 0 +-1.745 17.744 0.479 0 0 0 0 0 0 0 +-1.802 17.754 0.479 0 0 0 0 0 0 0 +-1.908 18.522 0.491 0 0 0 0 0 0 0 +-1.933 18.197 0.486 0 0 0 0 0 0 0 +-1.947 17.791 0.48 0 0 0 0 0 0 0 +-2.005 17.801 0.48 0 0 0 0 0 0 0 +-1.924 16.146 0.455 0 0 0 0 0 0 0 +-1.957 15.997 0.453 0 0 0 0 0 0 0 +-1.978 15.956 0.452 0 0 0 0 0 0 0 +-2.041 16.053 0.454 0 0 0 0 0 0 0 +-2.083 15.985 0.453 0 0 0 0 0 0 0 +-2.126 14.353 0.428 0 0 0 0 0 0 0 +-2.15 14.204 0.426 0 0 0 0 0 0 0 +-2.19 14.166 0.426 0 0 0 0 0 0 0 +-2.343 12.631 0.403 0 0 0 0 0 0 0 +-2.361 12.505 0.401 0 0 0 0 0 0 0 +-2.362 12.405 0.4 0 0 0 0 0 0 0 +-2.396 12.37 0.399 0 0 0 0 0 0 0 +-2.565 11.069 0.381 0 0 0 0 0 0 0 +-2.532 10.849 0.377 0 0 0 0 0 0 0 +-2.548 10.763 0.376 0 0 0 0 0 0 0 +-2.565 10.685 0.375 0 0 0 0 0 0 0 +-2.6 10.685 0.375 0 0 0 0 0 0 0 +-4.207 17.118 0.476 0 0 0 0 0 0 0 +-4.266 17.126 0.476 0 0 0 0 0 0 0 +-4.322 17.123 0.476 0 0 0 0 0 0 0 +-4.346 16.991 0.474 0 0 0 0 0 0 0 +-4.046 14.471 0.436 0 0 0 0 0 0 0 +-4.097 14.475 0.437 0 0 0 0 0 0 0 +-4.15 14.489 0.437 0 0 0 0 0 0 0 +-4.196 14.478 0.437 0 0 0 0 0 0 0 +-4.247 14.484 0.437 0 0 0 0 0 0 0 +-2.8 9.041 0.352 0 0 0 0 0 0 0 +-2.812 8.979 0.351 0 0 0 0 0 0 0 +-2.83 8.937 0.35 0 0 0 0 0 0 0 +-2.845 8.886 0.35 0 0 0 0 0 0 0 +-2.859 8.834 0.349 0 0 0 0 0 0 0 +-2.86 8.789 0.348 0 0 0 0 0 0 0 +-2.873 8.734 0.348 0 0 0 0 0 0 0 +-2.913 8.673 0.347 0 0 0 0 0 0 0 +-2.952 8.699 0.347 0 0 0 0 0 0 0 +-2.958 8.628 0.346 0 0 0 0 0 0 0 +-2.973 8.582 0.346 0 0 0 0 0 0 0 +-2.977 8.507 0.345 0 0 0 0 0 0 0 +-2.99 8.502 0.345 0 0 0 0 0 0 0 +-2.999 8.442 0.344 0 0 0 0 0 0 0 +-3.022 8.423 0.344 0 0 0 0 0 0 0 +-3.028 8.355 0.343 0 0 0 0 0 0 0 +-3.056 8.351 0.343 0 0 0 0 0 0 0 +-3.058 8.274 0.342 0 0 0 0 0 0 0 +-3.083 8.262 0.342 0 0 0 0 0 0 0 +-3.075 8.201 0.341 0 0 0 0 0 0 0 +-3.087 8.156 0.34 0 0 0 0 0 0 0 +-3.102 8.118 0.34 0 0 0 0 0 0 0 +-3.119 8.086 0.34 0 0 0 0 0 0 0 +-3.128 8.033 0.339 0 0 0 0 0 0 0 +-3.142 7.995 0.338 0 0 0 0 0 0 0 +-3.153 7.948 0.338 0 0 0 0 0 0 0 +-3.157 7.923 0.337 0 0 0 0 0 0 0 +-3.171 7.885 0.337 0 0 0 0 0 0 0 +-3.188 7.856 0.337 0 0 0 0 0 0 0 +-3.196 7.806 0.336 0 0 0 0 0 0 0 +-3.216 7.783 0.336 0 0 0 0 0 0 0 +-3.778 9.074 0.357 0 0 0 0 0 0 0 +-3.819 9.093 0.358 0 0 0 0 0 0 0 +-3.835 9.091 0.358 0 0 0 0 0 0 0 +-3.875 9.106 0.358 0 0 0 0 0 0 0 +-3.265 7.529 0.333 0 0 0 0 0 0 0 +-3.278 7.495 0.332 0 0 0 0 0 0 0 +-3.298 7.476 0.332 0 0 0 0 0 0 0 +-3.424 7.601 0.335 0 0 0 0 0 0 0 +-3.454 7.603 0.335 0 0 0 0 0 0 0 +-3.486 7.61 0.335 0 0 0 0 0 0 0 +-3.516 7.612 0.335 0 0 0 0 0 0 0 +-3.546 7.614 0.335 0 0 0 0 0 0 0 +-3.578 7.621 0.336 0 0 0 0 0 0 0 +-3.613 7.633 0.336 0 0 0 0 0 0 0 +-3.627 7.631 0.336 0 0 0 0 0 0 0 +-3.656 7.63 0.336 0 0 0 0 0 0 0 +-3.691 7.642 0.337 0 0 0 0 0 0 0 +-3.722 7.645 0.337 0 0 0 0 0 0 0 +-3.755 7.651 0.337 0 0 0 0 0 0 0 +-3.785 7.652 0.338 0 0 0 0 0 0 0 +-3.818 7.658 0.338 0 0 0 0 0 0 0 +-3.845 7.653 0.338 0 0 0 0 0 0 0 +-3.854 7.64 0.338 0 0 0 0 0 0 0 +-3.901 7.674 0.339 0 0 0 0 0 0 0 +-3.934 7.68 0.339 0 0 0 0 0 0 0 +-3.954 7.658 0.339 0 0 0 0 0 0 0 +-3.994 7.678 0.339 0 0 0 0 0 0 0 +-4.017 7.662 0.339 0 0 0 0 0 0 0 +-4.047 7.661 0.34 0 0 0 0 0 0 0 +-4.068 7.671 0.34 0 0 0 0 0 0 0 +-4.102 7.678 0.34 0 0 0 0 0 0 0 +-4.133 7.677 0.34 0 0 0 0 0 0 0 +-4.162 7.675 0.341 0 0 0 0 0 0 0 +-4.197 7.681 0.341 0 0 0 0 0 0 0 +-4.232 7.687 0.341 0 0 0 0 0 0 0 +-4.266 7.693 0.342 0 0 0 0 0 0 0 +-4.292 7.711 0.342 0 0 0 0 0 0 0 +-4.325 7.713 0.342 0 0 0 0 0 0 0 +-4.361 7.72 0.343 0 0 0 0 0 0 0 +-4.392 7.719 0.343 0 0 0 0 0 0 0 +-4.424 7.719 0.343 0 0 0 0 0 0 0 +-4.461 7.727 0.343 0 0 0 0 0 0 0 +-4.496 7.731 0.344 0 0 0 0 0 0 0 +-4.521 7.746 0.344 0 0 0 0 0 0 0 +-4.553 7.746 0.344 0 0 0 0 0 0 0 +-4.587 7.747 0.345 0 0 0 0 0 0 0 +-4.619 7.746 0.345 0 0 0 0 0 0 0 +-4.656 7.752 0.345 0 0 0 0 0 0 0 +-4.694 7.761 0.346 0 0 0 0 0 0 0 +-4.726 7.759 0.346 0 0 0 0 0 0 0 +-4.764 7.766 0.346 0 0 0 0 0 0 0 +-4.789 7.779 0.347 0 0 0 0 0 0 0 +-4.827 7.786 0.347 0 0 0 0 0 0 0 +-4.859 7.783 0.347 0 0 0 0 0 0 0 +-4.901 7.796 0.348 0 0 0 0 0 0 0 +-4.933 7.793 0.348 0 0 0 0 0 0 0 +-4.973 7.802 0.348 0 0 0 0 0 0 0 +-5.031 7.839 0.349 0 0 0 0 0 0 0 +-5.063 7.861 0.35 0 0 0 0 0 0 0 +-5.09 7.849 0.35 0 0 0 0 0 0 0 +-5.074 7.771 0.349 0 0 0 0 0 0 0 +-5.131 7.805 0.35 0 0 0 0 0 0 0 +-5.12 7.734 0.349 0 0 0 0 0 0 0 +-16.969 25.568 0.675 0 0 0 0 0 0 0 +-16.969 25.394 0.672 0 0 0 0 0 0 0 +-17.021 25.386 0.673 0 0 0 0 0 0 0 +-42.94 63.68 1.376 0 0 0 0 0 0 0 +-43.2 63.632 1.378 0 0 0 0 0 0 0 +-43.499 63.642 1.38 0 0 0 0 0 0 0 +-5.501 7.954 0.355 0 0 0 0 0 0 0 +-44.596 63.731 1.391 0 0 0 0 0 0 0 +-41.365 58.718 1.3 0 0 0 0 0 0 0 +-41.568 58.614 1.301 0 0 0 0 0 0 0 +-44.974 62.999 1.385 0 0 0 0 0 0 0 +-45.115 62.779 1.384 0 0 0 0 0 0 0 +-45.257 62.561 1.382 0 0 0 0 0 0 0 +-45.655 62.695 1.388 0 0 0 0 0 0 0 +-46.03 63.003 1.395 0 0 0 0 0 0 0 +-46.522 63.258 1.402 0 0 0 0 0 0 0 +-47.013 63.507 1.41 0 0 0 0 0 0 0 +-47.519 63.771 1.418 0 0 0 0 0 0 0 +-47.981 63.97 1.424 0 0 0 0 0 0 0 +-48.357 63.636 1.424 0 0 0 0 0 0 0 +-48.506 63.417 1.422 0 0 0 0 0 0 0 +-48.54 63.255 1.421 0 0 0 0 0 0 0 +-48.67 63.013 1.419 0 0 0 0 0 0 0 +-48.82 62.798 1.418 0 0 0 0 0 0 0 +-49.006 62.63 1.417 0 0 0 0 0 0 0 +-34.142 42.784 1.04 0 0 0 0 0 0 0 +-34.166 42.676 1.039 0 0 0 0 0 0 0 +-31.647 38.524 0.966 0 0 0 0 0 0 0 +-36.361 43.986 1.076 0 0 0 0 0 0 0 +-23.851 28.654 0.775 0 0 0 0 0 0 0 +-36.503 43.736 1.074 0 0 0 0 0 0 0 +-36.591 43.563 1.073 0 0 0 0 0 0 0 +-36.71 43.426 1.073 0 0 0 0 0 0 0 +-36.81 43.268 1.072 0 0 0 0 0 0 0 +-36.921 43.123 1.071 0 0 0 0 0 0 0 +-31.042 35.453 0.925 0 0 0 0 0 0 0 +-45.068 50.842 1.241 0 0 0 0 0 0 0 +-45.148 50.611 1.239 0 0 0 0 0 0 0 +-45.233 50.387 1.238 0 0 0 0 0 0 0 +-45.058 49.875 1.23 0 0 0 0 0 0 0 +-45.211 49.887 1.232 0 0 0 0 0 0 0 +-45.381 49.76 1.232 0 0 0 0 0 0 0 +-45.495 49.571 1.231 0 0 0 0 0 0 0 +-45.802 49.591 1.235 0 0 0 0 0 0 0 +-20.922 22.349 0.673 0 0 0 0 0 0 0 +-21.12 22.419 0.676 0 0 0 0 0 0 0 +-45.973 48.538 1.225 0 0 0 0 0 0 0 +-21.744 22.866 0.688 0 0 0 0 0 0 0 +-21.616 22.588 0.683 0 0 0 0 0 0 0 +-21.541 22.368 0.68 0 0 0 0 0 0 0 +-21.613 22.302 0.68 0 0 0 0 0 0 0 +-21.751 22.304 0.682 0 0 0 0 0 0 0 +-21.533 21.941 0.675 0 0 0 0 0 0 0 +-21.974 22.251 0.683 0 0 0 0 0 0 0 +-22.019 22.088 0.682 0 0 0 0 0 0 0 +-22.095 21.887 0.681 0 0 0 0 0 0 0 +-22.168 21.822 0.681 0 0 0 0 0 0 0 +-18.844 18.313 0.607 0 0 0 0 0 0 0 +-18.886 18.296 0.608 0 0 0 0 0 0 0 +-18.985 18.276 0.609 0 0 0 0 0 0 0 +-18.959 18.136 0.607 0 0 0 0 0 0 0 +-19.039 18.099 0.607 0 0 0 0 0 0 0 +-32.407 29.97 0.879 0 0 0 0 0 0 0 +-32.449 29.821 0.878 0 0 0 0 0 0 0 +-32.55 29.725 0.878 0 0 0 0 0 0 0 +-32.757 29.727 0.881 0 0 0 0 0 0 0 +-35.951 32.423 0.944 0 0 0 0 0 0 0 +-36.014 32.275 0.943 0 0 0 0 0 0 0 +-36.021 32.078 0.941 0 0 0 0 0 0 0 +-17.385 15.415 0.561 0 0 0 0 0 0 0 +-17.439 15.366 0.561 0 0 0 0 0 0 0 +-17.477 15.302 0.561 0 0 0 0 0 0 0 +-36.14 31.478 0.937 0 0 0 0 0 0 0 +-36.175 31.309 0.936 0 0 0 0 0 0 0 +-36.211 31.142 0.934 0 0 0 0 0 0 0 +-36.246 30.974 0.933 0 0 0 0 0 0 0 +-36.222 30.855 0.932 0 0 0 0 0 0 0 +-36.253 30.686 0.93 0 0 0 0 0 0 0 +-17.688 14.859 0.559 0 0 0 0 0 0 0 +-36.313 30.347 0.928 0 0 0 0 0 0 0 +-36.342 30.178 0.926 0 0 0 0 0 0 0 +-36.364 30.004 0.925 0 0 0 0 0 0 0 +-36.407 29.847 0.924 0 0 0 0 0 0 0 +-36.522 29.846 0.925 0 0 0 0 0 0 0 +-36.531 29.662 0.924 0 0 0 0 0 0 0 +-36.571 29.504 0.923 0 0 0 0 0 0 0 +-36.587 29.328 0.921 0 0 0 0 0 0 0 +-36.613 29.16 0.92 0 0 0 0 0 0 0 +-36.661 29.01 0.919 0 0 0 0 0 0 0 +-36.657 28.821 0.917 0 0 0 0 0 0 0 +-36.485 28.593 0.913 0 0 0 0 0 0 0 +-36.509 28.426 0.912 0 0 0 0 0 0 0 +-36.535 28.262 0.91 0 0 0 0 0 0 0 +-36.555 28.095 0.909 0 0 0 0 0 0 0 +-36.561 27.917 0.907 0 0 0 0 0 0 0 +-18.465 13.992 0.56 0 0 0 0 0 0 0 +-18.488 13.918 0.56 0 0 0 0 0 0 0 +-18.547 13.916 0.56 0 0 0 0 0 0 0 +-36.587 27.305 0.902 0 0 0 0 0 0 0 +-36.594 27.132 0.901 0 0 0 0 0 0 0 +-36.587 26.949 0.899 0 0 0 0 0 0 0 +-36.634 26.807 0.898 0 0 0 0 0 0 0 +-36.77 26.729 0.899 0 0 0 0 0 0 0 +-36.925 26.665 0.901 0 0 0 0 0 0 0 +-37.027 26.65 0.902 0 0 0 0 0 0 0 +-37.156 26.566 0.903 0 0 0 0 0 0 0 +-37.309 26.499 0.904 0 0 0 0 0 0 0 +-37.67 26.578 0.909 0 0 0 0 0 0 0 +-19.487 13.642 0.57 0 0 0 0 0 0 0 +-19.375 13.473 0.567 0 0 0 0 0 0 0 +-6.647 4.571 0.33 0 0 0 0 0 0 0 +-6.638 4.534 0.33 0 0 0 0 0 0 0 +-6.647 4.524 0.33 0 0 0 0 0 0 0 +-6.648 4.495 0.33 0 0 0 0 0 0 0 +-6.654 4.468 0.33 0 0 0 0 0 0 0 +-6.665 4.445 0.33 0 0 0 0 0 0 0 +-6.662 4.413 0.329 0 0 0 0 0 0 0 +-6.682 4.396 0.329 0 0 0 0 0 0 0 +-6.718 4.39 0.33 0 0 0 0 0 0 0 +-6.678 4.348 0.329 0 0 0 0 0 0 0 +-6.68 4.32 0.329 0 0 0 0 0 0 0 +-6.693 4.299 0.329 0 0 0 0 0 0 0 +-6.7 4.273 0.329 0 0 0 0 0 0 0 +-6.708 4.249 0.328 0 0 0 0 0 0 0 +-6.715 4.224 0.328 0 0 0 0 0 0 0 +-6.715 4.194 0.328 0 0 0 0 0 0 0 +-6.72 4.182 0.328 0 0 0 0 0 0 0 +-36.516 22.388 0.859 0 0 0 0 0 0 0 +-37.042 22.551 0.867 0 0 0 0 0 0 0 +-36.417 21.857 0.854 0 0 0 0 0 0 0 +-36.402 21.77 0.853 0 0 0 0 0 0 0 +-36.248 21.524 0.849 0 0 0 0 0 0 0 +-12.45 7.32 0.427 0 0 0 0 0 0 0 +-12.464 7.276 0.427 0 0 0 0 0 0 0 +-12.463 7.17 0.426 0 0 0 0 0 0 0 +-12.463 7.093 0.426 0 0 0 0 0 0 0 +-12.687 7.168 0.429 0 0 0 0 0 0 0 +-12.269 6.88 0.422 0 0 0 0 0 0 0 +-12.324 6.86 0.422 0 0 0 0 0 0 0 +-12.498 6.804 0.424 0 0 0 0 0 0 0 +-12.4 6.674 0.422 0 0 0 0 0 0 0 +-36.328 19.463 0.835 0 0 0 0 0 0 0 +-35.987 18.846 0.826 0 0 0 0 0 0 0 +-35.984 18.7 0.825 0 0 0 0 0 0 0 +-35.964 18.547 0.823 0 0 0 0 0 0 0 +-35.908 18.446 0.822 0 0 0 0 0 0 0 +-35.866 18.283 0.82 0 0 0 0 0 0 0 +-35.84 18.127 0.819 0 0 0 0 0 0 0 +-35.748 17.94 0.816 0 0 0 0 0 0 0 +-35.819 17.835 0.816 0 0 0 0 0 0 0 +-35.774 17.673 0.815 0 0 0 0 0 0 0 +-35.761 17.527 0.814 0 0 0 0 0 0 0 +-14.457 7.04 0.452 0 0 0 0 0 0 0 +-14.427 6.969 0.451 0 0 0 0 0 0 0 +-14.582 6.988 0.454 0 0 0 0 0 0 0 +-14.422 6.855 0.451 0 0 0 0 0 0 0 +-14.461 6.818 0.451 0 0 0 0 0 0 0 +-14.491 6.777 0.451 0 0 0 0 0 0 0 +-14.495 6.723 0.451 0 0 0 0 0 0 0 +-36.868 16.794 0.824 0 0 0 0 0 0 0 +-37.087 16.753 0.827 0 0 0 0 0 0 0 +-35.273 15.666 0.795 0 0 0 0 0 0 0 +-35.252 15.525 0.794 0 0 0 0 0 0 0 +-35.18 15.427 0.792 0 0 0 0 0 0 0 +-35.149 15.282 0.791 0 0 0 0 0 0 0 +-35.101 15.13 0.789 0 0 0 0 0 0 0 +-35.062 14.983 0.788 0 0 0 0 0 0 0 +-35.012 14.831 0.786 0 0 0 0 0 0 0 +-34.971 14.685 0.785 0 0 0 0 0 0 0 +-34.929 14.538 0.783 0 0 0 0 0 0 0 +-34.881 14.454 0.782 0 0 0 0 0 0 0 +-34.816 14.298 0.78 0 0 0 0 0 0 0 +-34.781 14.156 0.779 0 0 0 0 0 0 0 +-29.725 11.986 0.695 0 0 0 0 0 0 0 +-34.852 13.931 0.779 0 0 0 0 0 0 0 +-30.028 11.889 0.699 0 0 0 0 0 0 0 +-35.244 13.832 0.784 0 0 0 0 0 0 0 +-34.718 13.436 0.774 0 0 0 0 0 0 0 +-34.988 13.415 0.778 0 0 0 0 0 0 0 +-34.953 13.275 0.776 0 0 0 0 0 0 0 +-29.692 11.166 0.69 0 0 0 0 0 0 0 +-29.682 11.056 0.69 0 0 0 0 0 0 0 +-29.699 10.957 0.689 0 0 0 0 0 0 0 +-29.679 10.896 0.689 0 0 0 0 0 0 0 +-29.713 10.803 0.689 0 0 0 0 0 0 0 +-29.777 10.72 0.689 0 0 0 0 0 0 0 +-29.837 10.636 0.69 0 0 0 0 0 0 0 +-33.912 11.973 0.755 0 0 0 0 0 0 0 +-33.978 11.876 0.755 0 0 0 0 0 0 0 +-33.9 11.729 0.753 0 0 0 0 0 0 0 +-33.833 11.647 0.752 0 0 0 0 0 0 0 +-33.781 11.51 0.751 0 0 0 0 0 0 0 +-33.716 11.37 0.749 0 0 0 0 0 0 0 +-33.659 11.233 0.747 0 0 0 0 0 0 0 +-33.76 11.149 0.749 0 0 0 0 0 0 0 +-34.059 11.129 0.753 0 0 0 0 0 0 0 +-34.125 11.032 0.753 0 0 0 0 0 0 0 +-33.634 10.582 0.744 0 0 0 0 0 0 0 +-33.505 10.426 0.742 0 0 0 0 0 0 0 +-34.031 10.473 0.749 0 0 0 0 0 0 0 +-33.136 10.083 0.735 0 0 0 0 0 0 0 +-33.104 9.959 0.734 0 0 0 0 0 0 0 +-33.072 9.836 0.733 0 0 0 0 0 0 0 +-32.988 9.755 0.731 0 0 0 0 0 0 0 +-32.938 9.628 0.73 0 0 0 0 0 0 0 +-32.864 9.494 0.728 0 0 0 0 0 0 0 +-32.803 9.365 0.727 0 0 0 0 0 0 0 +-32.746 9.237 0.725 0 0 0 0 0 0 0 +-32.667 9.104 0.724 0 0 0 0 0 0 0 +-32.616 8.98 0.722 0 0 0 0 0 0 0 +-32.55 8.851 0.721 0 0 0 0 0 0 0 +-32.465 8.774 0.719 0 0 0 0 0 0 0 +-32.4 8.647 0.718 0 0 0 0 0 0 0 +-32.348 8.524 0.717 0 0 0 0 0 0 0 +-32.43 8.437 0.717 0 0 0 0 0 0 0 +-32.712 8.401 0.721 0 0 0 0 0 0 0 +-32.692 8.286 0.721 0 0 0 0 0 0 0 +-32.207 7.894 0.712 0 0 0 0 0 0 0 +-32.256 7.799 0.713 0 0 0 0 0 0 0 +-31.665 7.445 0.703 0 0 0 0 0 0 0 +-31.643 7.335 0.702 0 0 0 0 0 0 0 +-31.607 7.222 0.701 0 0 0 0 0 0 0 +-31.527 7.152 0.699 0 0 0 0 0 0 0 +-31.45 7.03 0.698 0 0 0 0 0 0 0 +-31.382 6.912 0.697 0 0 0 0 0 0 0 +-31.318 6.794 0.695 0 0 0 0 0 0 0 +-31.259 6.679 0.694 0 0 0 0 0 0 0 +-31.189 6.561 0.693 0 0 0 0 0 0 0 +-31.118 6.444 0.691 0 0 0 0 0 0 0 +-31.05 6.379 0.69 0 0 0 0 0 0 0 +-27.209 5.498 0.63 0 0 0 0 0 0 0 +-30.891 6.144 0.687 0 0 0 0 0 0 0 +-30.785 6.023 0.685 0 0 0 0 0 0 0 +-30.778 5.921 0.684 0 0 0 0 0 0 0 +-30.865 5.837 0.686 0 0 0 0 0 0 0 +-30.746 5.715 0.683 0 0 0 0 0 0 0 +-31.126 5.735 0.689 0 0 0 0 0 0 0 +-30.584 5.337 0.68 0 0 0 0 0 0 0 +-30.563 5.235 0.679 0 0 0 0 0 0 0 +-32.171 5.407 0.704 0 0 0 0 0 0 0 +-29.989 4.845 0.67 0 0 0 0 0 0 0 +-29.926 4.787 0.669 0 0 0 0 0 0 0 +-29.858 4.68 0.667 0 0 0 0 0 0 0 +-29.779 4.572 0.666 0 0 0 0 0 0 0 +-29.709 4.465 0.665 0 0 0 0 0 0 0 +-29.639 4.359 0.663 0 0 0 0 0 0 0 +-29.566 4.254 0.662 0 0 0 0 0 0 0 +-29.486 4.148 0.661 0 0 0 0 0 0 0 +-29.401 4.089 0.659 0 0 0 0 0 0 0 +-29.325 3.984 0.658 0 0 0 0 0 0 0 +-29.26 3.882 0.657 0 0 0 0 0 0 0 +-29.183 3.778 0.655 0 0 0 0 0 0 0 +-29.125 3.677 0.654 0 0 0 0 0 0 0 +-29.027 3.572 0.653 0 0 0 0 0 0 0 +-28.945 3.47 0.651 0 0 0 0 0 0 0 +-28.849 3.412 0.65 0 0 0 0 0 0 0 +-28.774 3.312 0.648 0 0 0 0 0 0 0 +-28.703 3.212 0.647 0 0 0 0 0 0 0 +-28.62 3.112 0.646 0 0 0 0 0 0 0 +-28.544 3.013 0.644 0 0 0 0 0 0 0 +-28.458 2.913 0.643 0 0 0 0 0 0 0 +-28.385 2.816 0.642 0 0 0 0 0 0 0 +-28.286 2.761 0.64 0 0 0 0 0 0 0 +-28.219 2.665 0.639 0 0 0 0 0 0 0 +-28.14 2.568 0.638 0 0 0 0 0 0 0 +-28.064 2.472 0.636 0 0 0 0 0 0 0 +-27.99 2.377 0.635 0 0 0 0 0 0 0 +-27.909 2.282 0.634 0 0 0 0 0 0 0 +-27.825 2.187 0.632 0 0 0 0 0 0 0 +-27.764 2.094 0.631 0 0 0 0 0 0 0 +-21.96 1.582 0.543 0 0 0 0 0 0 0 +-21.905 1.543 0.542 0 0 0 0 0 0 0 +-21.886 1.472 0.541 0 0 0 0 0 0 0 +-21.85 1.401 0.541 0 0 0 0 0 0 0 +-21.845 1.332 0.541 0 0 0 0 0 0 0 +-21.833 1.262 0.54 0 0 0 0 0 0 0 +-21.887 1.196 0.541 0 0 0 0 0 0 0 +-21.856 1.126 0.541 0 0 0 0 0 0 0 +-21.59 1.078 0.537 0 0 0 0 0 0 0 +-21.809 1.02 0.54 0 0 0 0 0 0 0 +-21.685 0.946 0.538 0 0 0 0 0 0 0 +-21.759 0.881 0.539 0 0 0 0 0 0 0 +-21.66 0.809 0.537 0 0 0 0 0 0 0 +-21.802 0.746 0.54 0 0 0 0 0 0 0 +-21.959 0.682 0.542 0 0 0 0 0 0 0 +-21.948 0.647 0.542 0 0 0 0 0 0 0 +-22.221 0.586 0.546 0 0 0 0 0 0 0 +-26.294 0.615 0.608 0 0 0 0 0 0 0 +-26.215 0.531 0.607 0 0 0 0 0 0 0 +-26.141 0.447 0.605 0 0 0 0 0 0 0 +-26.044 0.364 0.604 0 0 0 0 0 0 0 +-25.987 0.281 0.603 0 0 0 0 0 0 0 +-21.39 0.193 0.533 0 0 0 0 0 0 0 +-25.82 0.157 0.6 0 0 0 0 0 0 0 +-25.743 0.076 0.599 0 0 0 0 0 0 0 +-21.559 -0.008 0.536 0 0 0 0 0 0 0 +-25.581 -0.085 0.597 0 0 0 0 0 0 0 +-25.488 -0.165 0.595 0 0 0 0 0 0 0 +-25.418 -0.245 0.594 0 0 0 0 0 0 0 +-25.335 -0.284 0.593 0 0 0 0 0 0 0 +-25.258 -0.362 0.592 0 0 0 0 0 0 0 +-25.183 -0.441 0.591 0 0 0 0 0 0 0 +-25.08 -0.518 0.589 0 0 0 0 0 0 0 +-25.03 -0.595 0.589 0 0 0 0 0 0 0 +-25.074 -0.675 0.589 0 0 0 0 0 0 0 +-25.107 -0.755 0.59 0 0 0 0 0 0 0 +-24.975 -0.83 0.588 0 0 0 0 0 0 0 +-25.349 -0.882 0.594 0 0 0 0 0 0 0 +-25.5 -0.967 0.596 0 0 0 0 0 0 0 +-24.761 -1.095 0.585 0 0 0 0 0 0 0 +-24.687 -1.17 0.584 0 0 0 0 0 0 0 +-24.586 -1.243 0.582 0 0 0 0 0 0 0 +-25.147 -1.35 0.591 0 0 0 0 0 0 0 +-24.078 -1.407 0.575 0 0 0 0 0 0 0 +-24.223 -1.492 0.577 0 0 0 0 0 0 0 +-23.955 -1.551 0.573 0 0 0 0 0 0 0 +-15.965 -1.194 0.451 0 0 0 0 0 0 0 +-15.969 -1.219 0.451 0 0 0 0 0 0 0 +-15.973 -1.27 0.451 0 0 0 0 0 0 0 +-15.987 -1.322 0.452 0 0 0 0 0 0 0 +-16.043 -1.377 0.453 0 0 0 0 0 0 0 +-16.011 -1.425 0.452 0 0 0 0 0 0 0 +-15.847 -1.461 0.45 0 0 0 0 0 0 0 +-15.936 -1.519 0.451 0 0 0 0 0 0 0 +-15.824 -1.534 0.45 0 0 0 0 0 0 0 +-15.808 -1.633 0.449 0 0 0 0 0 0 0 +-15.846 -1.687 0.45 0 0 0 0 0 0 0 +-22.712 -2.551 0.555 0 0 0 0 0 0 0 +-22.7 -2.622 0.555 0 0 0 0 0 0 0 +-22.722 -2.66 0.556 0 0 0 0 0 0 0 +-22.717 -2.732 0.556 0 0 0 0 0 0 0 +-22.719 -2.805 0.556 0 0 0 0 0 0 0 +-22.732 -2.879 0.556 0 0 0 0 0 0 0 +-22.744 -2.953 0.557 0 0 0 0 0 0 0 +-22.743 -3.026 0.557 0 0 0 0 0 0 0 +-22.753 -3.1 0.557 0 0 0 0 0 0 0 +-22.748 -3.135 0.557 0 0 0 0 0 0 0 +-22.708 -3.203 0.557 0 0 0 0 0 0 0 +-22.752 -3.282 0.557 0 0 0 0 0 0 0 +-22.803 -3.362 0.558 0 0 0 0 0 0 0 +-22.701 -3.42 0.557 0 0 0 0 0 0 0 +-22.664 -3.488 0.557 0 0 0 0 0 0 0 +-22.564 -3.545 0.555 0 0 0 0 0 0 0 +-22.494 -3.57 0.554 0 0 0 0 0 0 0 +-22.391 -3.626 0.553 0 0 0 0 0 0 0 +-22.327 -3.688 0.552 0 0 0 0 0 0 0 +-22.228 -3.743 0.551 0 0 0 0 0 0 0 +-21.042 -3.681 0.533 0 0 0 0 0 0 0 +-20.967 -3.736 0.532 0 0 0 0 0 0 0 +-20.904 -3.793 0.531 0 0 0 0 0 0 0 +-20.839 -3.815 0.53 0 0 0 0 0 0 0 +-20.764 -3.868 0.529 0 0 0 0 0 0 0 +-20.685 -3.921 0.528 0 0 0 0 0 0 0 +-20.616 -3.975 0.527 0 0 0 0 0 0 0 +-20.54 -4.028 0.526 0 0 0 0 0 0 0 +-20.469 -4.081 0.525 0 0 0 0 0 0 0 +-20.395 -4.133 0.524 0 0 0 0 0 0 0 +-20.324 -4.151 0.523 0 0 0 0 0 0 0 +-20.252 -4.203 0.522 0 0 0 0 0 0 0 +-20.17 -4.252 0.521 0 0 0 0 0 0 0 +-20.1 -4.304 0.52 0 0 0 0 0 0 0 +-20.022 -4.353 0.519 0 0 0 0 0 0 0 +-19.953 -4.404 0.519 0 0 0 0 0 0 0 +-19.881 -4.453 0.518 0 0 0 0 0 0 0 +-19.817 -4.472 0.517 0 0 0 0 0 0 0 +-19.744 -4.521 0.516 0 0 0 0 0 0 0 +-19.642 -4.563 0.514 0 0 0 0 0 0 0 +-19.568 -4.61 0.514 0 0 0 0 0 0 0 +-19.58 -4.678 0.514 0 0 0 0 0 0 0 +-19.616 -4.752 0.515 0 0 0 0 0 0 0 +-19.624 -4.819 0.515 0 0 0 0 0 0 0 +-19.819 -4.9 0.518 0 0 0 0 0 0 0 +-19.854 -4.974 0.519 0 0 0 0 0 0 0 +-19.877 -5.046 0.52 0 0 0 0 0 0 0 +-19.822 -5.099 0.519 0 0 0 0 0 0 0 +-19.752 -5.147 0.518 0 0 0 0 0 0 0 +-19.145 -5.119 0.509 0 0 0 0 0 0 0 +-19.284 -5.188 0.511 0 0 0 0 0 0 0 +-19.418 -5.289 0.514 0 0 0 0 0 0 0 +-19.422 -5.356 0.514 0 0 0 0 0 0 0 +-19.323 -5.394 0.513 0 0 0 0 0 0 0 +-18.45 -5.277 0.5 0 0 0 0 0 0 0 +-18.379 -5.319 0.499 0 0 0 0 0 0 0 +-18.348 -5.341 0.498 0 0 0 0 0 0 0 +-18.268 -5.38 0.497 0 0 0 0 0 0 0 +-18.205 -5.424 0.497 0 0 0 0 0 0 0 +-18.132 -5.465 0.496 0 0 0 0 0 0 0 +-18.061 -5.505 0.495 0 0 0 0 0 0 0 +-17.988 -5.545 0.494 0 0 0 0 0 0 0 +-17.929 -5.588 0.493 0 0 0 0 0 0 0 +-17.865 -5.599 0.493 0 0 0 0 0 0 0 +-17.799 -5.64 0.492 0 0 0 0 0 0 0 +-17.728 -5.679 0.491 0 0 0 0 0 0 0 +-17.659 -5.718 0.49 0 0 0 0 0 0 0 +-17.586 -5.756 0.489 0 0 0 0 0 0 0 +-17.52 -5.795 0.488 0 0 0 0 0 0 0 +-17.456 -5.835 0.488 0 0 0 0 0 0 0 +-17.39 -5.844 0.487 0 0 0 0 0 0 0 +-17.322 -5.882 0.486 0 0 0 0 0 0 0 +-17.256 -5.92 0.485 0 0 0 0 0 0 0 +-17.181 -5.955 0.484 0 0 0 0 0 0 0 +-17.132 -5.998 0.484 0 0 0 0 0 0 0 +-17.049 -6.029 0.483 0 0 0 0 0 0 0 +-16.996 -6.071 0.482 0 0 0 0 0 0 0 +-16.753 -6.014 0.478 0 0 0 0 0 0 0 +-16.849 -6.108 0.48 0 0 0 0 0 0 0 +-16.794 -6.148 0.48 0 0 0 0 0 0 0 +-16.724 -6.182 0.479 0 0 0 0 0 0 0 +-16.661 -6.218 0.478 0 0 0 0 0 0 0 +-16.6 -6.255 0.478 0 0 0 0 0 0 0 +-16.53 -6.288 0.477 0 0 0 0 0 0 0 +-16.469 -6.324 0.476 0 0 0 0 0 0 0 +-16.403 -6.329 0.475 0 0 0 0 0 0 0 +-16.34 -6.364 0.474 0 0 0 0 0 0 0 +-16.268 -6.394 0.474 0 0 0 0 0 0 0 +-16.216 -6.433 0.473 0 0 0 0 0 0 0 +-16.159 -6.469 0.472 0 0 0 0 0 0 0 +-16.09 -6.501 0.472 0 0 0 0 0 0 0 +-16.035 -6.537 0.471 0 0 0 0 0 0 0 +-15.985 -6.546 0.47 0 0 0 0 0 0 0 +-16 -6.611 0.471 0 0 0 0 0 0 0 +-16.001 -6.67 0.471 0 0 0 0 0 0 0 +-15.989 -6.724 0.472 0 0 0 0 0 0 0 +-15.85 -6.725 0.47 0 0 0 0 0 0 0 +-15.844 -6.781 0.47 0 0 0 0 0 0 0 +-15.543 -6.71 0.465 0 0 0 0 0 0 0 +-15.653 -6.904 0.468 0 0 0 0 0 0 0 +-16.061 -7.265 0.476 0 0 0 0 0 0 0 +-16.073 -7.331 0.476 0 0 0 0 0 0 0 +-16.089 -7.368 0.477 0 0 0 0 0 0 0 +-16.094 -7.432 0.477 0 0 0 0 0 0 0 +-16.106 -7.499 0.478 0 0 0 0 0 0 0 +-16.107 -7.561 0.478 0 0 0 0 0 0 0 +-16.118 -7.628 0.479 0 0 0 0 0 0 0 +-16.117 -7.69 0.479 0 0 0 0 0 0 0 +-16.133 -7.759 0.48 0 0 0 0 0 0 0 +-16.147 -7.798 0.48 0 0 0 0 0 0 0 +-16.143 -7.858 0.481 0 0 0 0 0 0 0 +-16.341 -8.018 0.485 0 0 0 0 0 0 0 +-16.233 -8.028 0.483 0 0 0 0 0 0 0 +-16.802 -8.374 0.493 0 0 0 0 0 0 0 +-16.719 -8.399 0.492 0 0 0 0 0 0 0 +-16.801 -8.506 0.494 0 0 0 0 0 0 0 +-16.455 -8.494 0.489 0 0 0 0 0 0 0 +-16.442 -8.553 0.49 0 0 0 0 0 0 0 +-16.622 -8.713 0.493 0 0 0 0 0 0 0 +-16.708 -8.825 0.495 0 0 0 0 0 0 0 +-16.603 -8.836 0.494 0 0 0 0 0 0 0 +-16.813 -8.981 0.498 0 0 0 0 0 0 0 +-16.838 -9.063 0.499 0 0 0 0 0 0 0 +-16.508 -9.087 0.494 0 0 0 0 0 0 0 +-16.484 -9.142 0.494 0 0 0 0 0 0 0 +-16.407 -9.166 0.494 0 0 0 0 0 0 0 +-16.334 -9.193 0.493 0 0 0 0 0 0 0 +-16.318 -9.218 0.493 0 0 0 0 0 0 0 +-16.334 -9.295 0.494 0 0 0 0 0 0 0 +-16.353 -9.374 0.494 0 0 0 0 0 0 0 +-16.36 -9.446 0.495 0 0 0 0 0 0 0 +-16.367 -9.519 0.496 0 0 0 0 0 0 0 +-16.371 -9.59 0.496 0 0 0 0 0 0 0 +-16.383 -9.666 0.497 0 0 0 0 0 0 0 +-16.402 -9.712 0.498 0 0 0 0 0 0 0 +-16.414 -9.789 0.498 0 0 0 0 0 0 0 +-16.418 -9.861 0.499 0 0 0 0 0 0 0 +-16.421 -9.933 0.5 0 0 0 0 0 0 0 +-16.425 -10.007 0.5 0 0 0 0 0 0 0 +-16.44 -10.086 0.501 0 0 0 0 0 0 0 +-16.444 -10.16 0.502 0 0 0 0 0 0 0 +-16.471 -10.212 0.503 0 0 0 0 0 0 0 +-16.469 -10.283 0.503 0 0 0 0 0 0 0 +-16.477 -10.36 0.504 0 0 0 0 0 0 0 +-16.477 -10.432 0.504 0 0 0 0 0 0 0 +-16.467 -10.499 0.505 0 0 0 0 0 0 0 +-16.675 -10.705 0.509 0 0 0 0 0 0 0 +-16.544 -10.694 0.507 0 0 0 0 0 0 0 +-16.865 -10.938 0.513 0 0 0 0 0 0 0 +-16.879 -11.023 0.514 0 0 0 0 0 0 0 +-16.823 -11.138 0.515 0 0 0 0 0 0 0 +-16.779 -11.185 0.514 0 0 0 0 0 0 0 +-16.917 -11.353 0.518 0 0 0 0 0 0 0 +-17.171 -11.602 0.523 0 0 0 0 0 0 0 +-17.254 -11.697 0.525 0 0 0 0 0 0 0 +-17.087 -11.662 0.522 0 0 0 0 0 0 0 +-17.238 -11.845 0.526 0 0 0 0 0 0 0 +-16.843 -11.73 0.52 0 0 0 0 0 0 0 +-16.832 -11.802 0.52 0 0 0 0 0 0 0 +-16.762 -11.831 0.52 0 0 0 0 0 0 0 +-16.69 -11.82 0.519 0 0 0 0 0 0 0 +-16.654 -11.873 0.519 0 0 0 0 0 0 0 +-16.661 -11.957 0.52 0 0 0 0 0 0 0 +-16.686 -12.055 0.521 0 0 0 0 0 0 0 +-16.702 -12.146 0.522 0 0 0 0 0 0 0 +-16.711 -12.233 0.523 0 0 0 0 0 0 0 +-16.714 -12.316 0.524 0 0 0 0 0 0 0 +-16.746 -12.38 0.525 0 0 0 0 0 0 0 +-16.749 -12.463 0.525 0 0 0 0 0 0 0 +-16.756 -12.551 0.526 0 0 0 0 0 0 0 +-16.777 -12.649 0.527 0 0 0 0 0 0 0 +-16.771 -12.727 0.528 0 0 0 0 0 0 0 +-16.782 -12.818 0.529 0 0 0 0 0 0 0 +-16.791 -12.909 0.53 0 0 0 0 0 0 0 +-16.794 -12.996 0.531 0 0 0 0 0 0 0 +-16.834 -13.069 0.532 0 0 0 0 0 0 0 +-16.835 -13.155 0.533 0 0 0 0 0 0 0 +-16.966 -13.342 0.536 0 0 0 0 0 0 0 +-17.374 -13.751 0.545 0 0 0 0 0 0 0 +-17.489 -13.931 0.548 0 0 0 0 0 0 0 +-17.128 -13.821 0.543 0 0 0 0 0 0 0 +-17.174 -13.902 0.544 0 0 0 0 0 0 0 +-17.026 -13.871 0.542 0 0 0 0 0 0 0 +-17.547 -14.387 0.553 0 0 0 0 0 0 0 +-17.574 -14.502 0.554 0 0 0 0 0 0 0 +-17.211 -14.385 0.549 0 0 0 0 0 0 0 +-17.184 -14.455 0.549 0 0 0 0 0 0 0 +-17.131 -14.456 0.549 0 0 0 0 0 0 0 +-17.056 -14.485 0.548 0 0 0 0 0 0 0 +-16.997 -14.527 0.548 0 0 0 0 0 0 0 +-16.988 -14.612 0.549 0 0 0 0 0 0 0 +-17.025 -14.737 0.55 0 0 0 0 0 0 0 +-17.033 -14.837 0.551 0 0 0 0 0 0 0 +-17.042 -14.939 0.552 0 0 0 0 0 0 0 +-17.079 -15.019 0.554 0 0 0 0 0 0 0 +-17.085 -15.12 0.555 0 0 0 0 0 0 0 +-17.093 -15.223 0.556 0 0 0 0 0 0 0 +-17.099 -15.325 0.557 0 0 0 0 0 0 0 +-17.11 -15.432 0.558 0 0 0 0 0 0 0 +-17.118 -15.536 0.559 0 0 0 0 0 0 0 +-17.134 -15.649 0.561 0 0 0 0 0 0 0 +-17.173 -15.734 0.562 0 0 0 0 0 0 0 +-17.164 -15.826 0.563 0 0 0 0 0 0 0 +-17.345 -16.093 0.568 0 0 0 0 0 0 0 +-17.453 -16.502 0.573 0 0 0 0 0 0 0 +-17.601 -16.746 0.577 0 0 0 0 0 0 0 +-17.893 -17.077 0.584 0 0 0 0 0 0 0 +-17.848 -17.142 0.584 0 0 0 0 0 0 0 +-17.529 -17.049 0.58 0 0 0 0 0 0 0 +-17.494 -17.122 0.58 0 0 0 0 0 0 0 +-17.416 -17.153 0.58 0 0 0 0 0 0 0 +-17.338 -17.184 0.579 0 0 0 0 0 0 0 +-17.342 -17.242 0.58 0 0 0 0 0 0 0 +-17.377 -17.385 0.582 0 0 0 0 0 0 0 +-17.386 -17.504 0.583 0 0 0 0 0 0 0 +-17.39 -17.618 0.584 0 0 0 0 0 0 0 +-17.399 -17.738 0.586 0 0 0 0 0 0 0 +-17.416 -17.867 0.587 0 0 0 0 0 0 0 +-17.426 -17.991 0.589 0 0 0 0 0 0 0 +-17.468 -18.09 0.59 0 0 0 0 0 0 0 +-17.476 -18.212 0.592 0 0 0 0 0 0 0 +-17.491 -18.342 0.593 0 0 0 0 0 0 0 +-17.504 -18.473 0.595 0 0 0 0 0 0 0 +-17.53 -18.616 0.597 0 0 0 0 0 0 0 +-17.92 -19.15 0.607 0 0 0 0 0 0 0 +-24.563 -26.4 0.756 0 0 0 0 0 0 0 +-24.614 -26.538 0.758 0 0 0 0 0 0 0 +-24.621 -26.714 0.76 0 0 0 0 0 0 0 +-24.617 -26.878 0.762 0 0 0 0 0 0 0 +-25.519 -28.037 0.784 0 0 0 0 0 0 0 +-25.397 -28.08 0.784 0 0 0 0 0 0 0 +-25.259 -28.105 0.783 0 0 0 0 0 0 0 +-25.096 -28.1 0.781 0 0 0 0 0 0 0 +-24.959 -28.035 0.779 0 0 0 0 0 0 0 +-24.832 -28.07 0.778 0 0 0 0 0 0 0 +-24.786 -28.196 0.779 0 0 0 0 0 0 0 +-24.829 -28.424 0.782 0 0 0 0 0 0 0 +-24.854 -28.633 0.784 0 0 0 0 0 0 0 +-24.877 -28.843 0.787 0 0 0 0 0 0 0 +-24.888 -29.039 0.79 0 0 0 0 0 0 0 +-24.952 -29.206 0.792 0 0 0 0 0 0 0 +-24.954 -29.396 0.794 0 0 0 0 0 0 0 +-25.299 -29.992 0.805 0 0 0 0 0 0 0 +-25.229 -30.1 0.805 0 0 0 0 0 0 0 +-25.403 -30.697 0.814 0 0 0 0 0 0 0 +-25.239 -30.695 0.812 0 0 0 0 0 0 0 +-25.166 -30.703 0.812 0 0 0 0 0 0 0 +-25.167 -30.902 0.814 0 0 0 0 0 0 0 +-25.202 -31.144 0.817 0 0 0 0 0 0 0 +-25.219 -31.366 0.82 0 0 0 0 0 0 0 +-25.234 -31.587 0.823 0 0 0 0 0 0 0 +-25.239 -31.798 0.825 0 0 0 0 0 0 0 +-25.283 -32.059 0.829 0 0 0 0 0 0 0 +-25.263 -32.242 0.831 0 0 0 0 0 0 0 +-25.593 -32.769 0.84 0 0 0 0 0 0 0 +-25.751 -33.4 0.849 0 0 0 0 0 0 0 +-25.6 -33.421 0.848 0 0 0 0 0 0 0 +-25.475 -33.476 0.848 0 0 0 0 0 0 0 +-25.497 -33.723 0.851 0 0 0 0 0 0 0 +-25.522 -33.977 0.854 0 0 0 0 0 0 0 +-25.605 -34.2 0.858 0 0 0 0 0 0 0 +-25.621 -34.445 0.861 0 0 0 0 0 0 0 +-25.598 -34.641 0.863 0 0 0 0 0 0 0 +-25.693 -34.999 0.868 0 0 0 0 0 0 0 +-25.909 -35.526 0.877 0 0 0 0 0 0 0 +-26.117 -36.048 0.885 0 0 0 0 0 0 0 +-25.995 -36.118 0.885 0 0 0 0 0 0 0 +-25.895 -36.099 0.884 0 0 0 0 0 0 0 +-25.849 -36.275 0.885 0 0 0 0 0 0 0 +-25.879 -36.558 0.889 0 0 0 0 0 0 0 +-25.917 -36.857 0.893 0 0 0 0 0 0 0 +-25.946 -37.146 0.897 0 0 0 0 0 0 0 +-25.895 -37.321 0.899 0 0 0 0 0 0 0 +-25.999 -37.723 0.905 0 0 0 0 0 0 0 +-26.09 -37.983 0.909 0 0 0 0 0 0 0 +-26.112 -38.271 0.913 0 0 0 0 0 0 0 +-26.227 -38.701 0.919 0 0 0 0 0 0 0 +-26.376 -39.184 0.926 0 0 0 0 0 0 0 +-26.416 -39.511 0.931 0 0 0 0 0 0 0 +-26.37 -39.712 0.933 0 0 0 0 0 0 0 +-26.27 -39.831 0.934 0 0 0 0 0 0 0 +-26.378 -40.132 0.938 0 0 0 0 0 0 0 +-26.407 -40.452 0.943 0 0 0 0 0 0 0 +-26.443 -40.786 0.947 0 0 0 0 0 0 0 +-26.459 -41.093 0.951 0 0 0 0 0 0 0 +-26.736 -41.811 0.963 0 0 0 0 0 0 0 +-26.752 -42.421 0.971 0 0 0 0 0 0 0 +-26.675 -42.446 0.97 0 0 0 0 0 0 0 +-26.716 -42.809 0.975 0 0 0 0 0 0 0 +-26.75 -43.165 0.98 0 0 0 0 0 0 0 +-26.786 -43.526 0.985 0 0 0 0 0 0 0 +-26.794 -43.847 0.989 0 0 0 0 0 0 0 +-27.056 -44.589 1.001 0 0 0 0 0 0 0 +-27.111 -44.998 1.007 0 0 0 0 0 0 0 +-27.087 -45.119 1.008 0 0 0 0 0 0 0 +-27.026 -45.34 1.011 0 0 0 0 0 0 0 +-27.081 -45.756 1.017 0 0 0 0 0 0 0 +-27.112 -46.139 1.022 0 0 0 0 0 0 0 +-27.726 -47.523 1.045 0 0 0 0 0 0 0 +-27.623 -47.691 1.046 0 0 0 0 0 0 0 +-27.506 -47.835 1.047 0 0 0 0 0 0 0 +-27.445 -47.902 1.048 0 0 0 0 0 0 0 +-27.398 -48.171 1.051 0 0 0 0 0 0 0 +-27.453 -48.622 1.057 0 0 0 0 0 0 0 +-27.483 -49.033 1.063 0 0 0 0 0 0 0 +-27.984 -50.296 1.083 0 0 0 0 0 0 0 +-27.808 -50.351 1.083 0 0 0 0 0 0 0 +-27.648 -50.436 1.083 0 0 0 0 0 0 0 +-27.763 -50.834 1.089 0 0 0 0 0 0 0 +-27.817 -51.314 1.096 0 0 0 0 0 0 0 +-15.809 -29.63 0.719 0 0 0 0 0 0 0 +-15.709 -29.665 0.718 0 0 0 0 0 0 0 +-15.598 -29.681 0.718 0 0 0 0 0 0 0 +-15.491 -29.703 0.717 0 0 0 0 0 0 0 +-15.521 -29.877 0.72 0 0 0 0 0 0 0 +-28.421 -55.082 1.151 0 0 0 0 0 0 0 +-28.526 -55.712 1.16 0 0 0 0 0 0 0 +-28.379 -55.857 1.161 0 0 0 0 0 0 0 +-28.418 -56.372 1.168 0 0 0 0 0 0 0 +-28.468 -56.914 1.176 0 0 0 0 0 0 0 +-28.514 -57.456 1.183 0 0 0 0 0 0 0 +-28.672 -58.003 1.192 0 0 0 0 0 0 0 +-28.944 -59.019 1.208 0 0 0 0 0 0 0 +-28.873 -59.345 1.212 0 0 0 0 0 0 0 +-17.588 -36.463 0.824 0 0 0 0 0 0 0 +-17.539 -36.655 0.826 0 0 0 0 0 0 0 +-17.283 -36.414 0.821 0 0 0 0 0 0 0 +-17.129 -36.385 0.819 0 0 0 0 0 0 0 +-16.992 -36.241 0.817 0 0 0 0 0 0 0 +-16.862 -36.26 0.816 0 0 0 0 0 0 0 +-16.768 -36.357 0.817 0 0 0 0 0 0 0 +-16.626 -36.349 0.816 0 0 0 0 0 0 0 +-16.01 -35.592 0.801 0 0 0 0 0 0 0 +-15.887 -35.619 0.801 0 0 0 0 0 0 0 +-15.527 -35.107 0.792 0 0 0 0 0 0 0 +-15.549 -35.307 0.795 0 0 0 0 0 0 0 +-29.658 -67.862 1.334 0 0 0 0 0 0 0 +-15.862 -36.639 0.815 0 0 0 0 0 0 0 +-15.761 -36.72 0.816 0 0 0 0 0 0 0 +-15.642 -36.762 0.815 0 0 0 0 0 0 0 +-15.513 -36.779 0.815 0 0 0 0 0 0 0 +-15.395 -36.82 0.815 0 0 0 0 0 0 0 +-15.336 -36.843 0.815 0 0 0 0 0 0 0 +-19.795 -47.959 0.997 0 0 0 0 0 0 0 +-14.902 -36.446 0.807 0 0 0 0 0 0 0 +-14.881 -36.723 0.81 0 0 0 0 0 0 0 +-19.31 -48.064 0.996 0 0 0 0 0 0 0 +-14.403 -36.361 0.803 0 0 0 0 0 0 0 +-14.228 -36.251 0.8 0 0 0 0 0 0 0 +-14.183 -36.473 0.803 0 0 0 0 0 0 0 +-13.937 -36.178 0.797 0 0 0 0 0 0 0 +-14.376 -37.667 0.821 0 0 0 0 0 0 0 +-19.331 -51.105 1.039 0 0 0 0 0 0 0 +-19.081 -50.926 1.035 0 0 0 0 0 0 0 +-17.097 -47.212 0.972 0 0 0 0 0 0 0 +-16.941 -47.242 0.971 0 0 0 0 0 0 0 +-17.275 -48.652 0.993 0 0 0 0 0 0 0 +-16.615 -47.267 0.97 0 0 0 0 0 0 0 +-16.511 -47.447 0.972 0 0 0 0 0 0 0 +-16.474 -47.581 0.974 0 0 0 0 0 0 0 +-16.17 -47.67 0.973 0 0 0 0 0 0 0 +-16.074 -47.882 0.976 0 0 0 0 0 0 0 +-15.913 -47.898 0.976 0 0 0 0 0 0 0 +-15.749 -47.91 0.975 0 0 0 0 0 0 0 +-19.262 -59.202 1.155 0 0 0 0 0 0 0 +-18.8 -58.721 1.146 0 0 0 0 0 0 0 +-19.49 -61.538 1.19 0 0 0 0 0 0 0 +-19.24 -61.417 1.187 0 0 0 0 0 0 0 +-20.721 -66.875 1.273 0 0 0 0 0 0 0 +-20.424 -66.657 1.268 0 0 0 0 0 0 0 +-20.208 -66.698 1.268 0 0 0 0 0 0 0 +-19.843 -66.623 1.265 0 0 0 0 0 0 0 +-20.062 -68.139 1.288 0 0 0 0 0 0 0 +-19.843 -68.183 1.288 0 0 0 0 0 0 0 +-19.644 -68.301 1.289 0 0 0 0 0 0 0 +-20.008 -70.393 1.321 0 0 0 0 0 0 0 +-19.699 -70.146 1.316 0 0 0 0 0 0 0 +-19.527 -69.953 1.313 0 0 0 0 0 0 0 +-20.98 -76.075 1.408 0 0 0 0 0 0 0 +-20.751 -76.177 1.409 0 0 0 0 0 0 0 +-20.567 -76.446 1.412 0 0 0 0 0 0 0 +-0.532 -30.83 0.677 0 0 0 0 0 0 0 +-0.435 -30.841 0.677 0 0 0 0 0 0 0 +-0.339 -30.862 0.677 0 0 0 0 0 0 0 +-0.241 -30.827 0.677 0 0 0 0 0 0 0 +-0.097 -30.954 0.679 0 0 0 0 0 0 0 +0.124 -42.041 0.847 0 0 0 0 0 0 0 +0.256 -42.056 0.847 0 0 0 0 0 0 0 +0.388 -42.055 0.847 0 0 0 0 0 0 0 +0.52 -42.084 0.848 0 0 0 0 0 0 0 +0.653 -42.092 0.848 0 0 0 0 0 0 0 +0.719 -42.127 0.849 0 0 0 0 0 0 0 +0.853 -42.162 0.849 0 0 0 0 0 0 0 +0.985 -42.151 0.849 0 0 0 0 0 0 0 +1.118 -42.176 0.85 0 0 0 0 0 0 0 +1.251 -42.19 0.85 0 0 0 0 0 0 0 +1.384 -42.198 0.85 0 0 0 0 0 0 0 +1.517 -42.224 0.85 0 0 0 0 0 0 0 +1.585 -42.249 0.851 0 0 0 0 0 0 0 +1.718 -42.258 0.851 0 0 0 0 0 0 0 +1.851 -42.26 0.851 0 0 0 0 0 0 0 +1.985 -42.282 0.852 0 0 0 0 0 0 0 +2.119 -42.304 0.852 0 0 0 0 0 0 0 +2.253 -42.317 0.852 0 0 0 0 0 0 0 +2.388 -42.346 0.853 0 0 0 0 0 0 0 +2.457 -42.374 0.853 0 0 0 0 0 0 0 +2.591 -42.388 0.854 0 0 0 0 0 0 0 +3.126 -48.692 0.95 0 0 0 0 0 0 0 +3.285 -48.766 0.951 0 0 0 0 0 0 0 +3.945 -56.006 1.062 0 0 0 0 0 0 0 +4.096 -55.651 1.057 0 0 0 0 0 0 0 +4.034 -52.533 1.009 0 0 0 0 0 0 0 +4.106 -52.395 1.007 0 0 0 0 0 0 0 +4.271 -52.38 1.007 0 0 0 0 0 0 0 +4.419 -52.169 1.004 0 0 0 0 0 0 0 +4.523 -51.469 0.994 0 0 0 0 0 0 0 +4.462 -48.999 0.956 0 0 0 0 0 0 0 +4.611 -48.933 0.955 0 0 0 0 0 0 0 +4.52 -46.389 0.917 0 0 0 0 0 0 0 +4.842 -48.913 0.955 0 0 0 0 0 0 0 +4.97 -48.647 0.952 0 0 0 0 0 0 0 +5.116 -48.567 0.951 0 0 0 0 0 0 0 +5.114 -47.114 0.929 0 0 0 0 0 0 0 +5.194 -46.489 0.919 0 0 0 0 0 0 0 +5.335 -46.433 0.919 0 0 0 0 0 0 0 +5.479 -46.396 0.918 0 0 0 0 0 0 0 +5.374 -44.898 0.896 0 0 0 0 0 0 0 +5.452 -44.359 0.888 0 0 0 0 0 0 0 +5.576 -44.226 0.886 0 0 0 0 0 0 0 +5.714 -44.197 0.886 0 0 0 0 0 0 0 +5.675 -42.832 0.865 0 0 0 0 0 0 0 +5.745 -42.335 0.858 0 0 0 0 0 0 0 +5.845 -42.081 0.854 0 0 0 0 0 0 0 +5.908 -42.05 0.854 0 0 0 0 0 0 0 +5.822 -40.507 0.83 0 0 0 0 0 0 0 +5.908 -40.207 0.826 0 0 0 0 0 0 0 +6.027 -40.135 0.825 0 0 0 0 0 0 0 +6.149 -40.088 0.825 0 0 0 0 0 0 0 +6.256 -39.95 0.823 0 0 0 0 0 0 0 +6.415 -40.144 0.826 0 0 0 0 0 0 0 +6.327 -36.966 0.778 0 0 0 0 0 0 0 +6.399 -36.692 0.774 0 0 0 0 0 0 0 +6.496 -36.565 0.773 0 0 0 0 0 0 0 +6.581 -36.381 0.77 0 0 0 0 0 0 0 +4.2 -22.956 0.563 0 0 0 0 0 0 0 +4.26 -22.878 0.562 0 0 0 0 0 0 0 +4.329 -22.853 0.562 0 0 0 0 0 0 0 +4.406 -22.862 0.562 0 0 0 0 0 0 0 +4.654 -23.757 0.576 0 0 0 0 0 0 0 +6.831 -34.357 0.741 0 0 0 0 0 0 0 +6.875 -34.016 0.736 0 0 0 0 0 0 0 +4.708 -23.067 0.566 0 0 0 0 0 0 0 +4.776 -23.031 0.566 0 0 0 0 0 0 0 +4.274 -20.272 0.523 0 0 0 0 0 0 0 +7.022 -32.874 0.719 0 0 0 0 0 0 0 +7.122 -32.836 0.719 0 0 0 0 0 0 0 +7.232 -32.845 0.719 0 0 0 0 0 0 0 +4.527 -20.213 0.523 0 0 0 0 0 0 0 +7.109 -31.572 0.7 0 0 0 0 0 0 0 +7.169 -31.378 0.697 0 0 0 0 0 0 0 +7.208 -31.1 0.693 0 0 0 0 0 0 0 +7.246 -30.822 0.689 0 0 0 0 0 0 0 +7.293 -30.587 0.686 0 0 0 0 0 0 0 +7.328 -30.313 0.682 0 0 0 0 0 0 0 +7.36 -30.031 0.678 0 0 0 0 0 0 0 +7.382 -29.917 0.676 0 0 0 0 0 0 0 +7.477 -29.895 0.676 0 0 0 0 0 0 0 +7.577 -29.899 0.677 0 0 0 0 0 0 0 +7.667 -29.859 0.677 0 0 0 0 0 0 0 +7.734 -29.35 0.669 0 0 0 0 0 0 0 +7.569 -28.36 0.654 0 0 0 0 0 0 0 +7.565 -28.164 0.651 0 0 0 0 0 0 0 +7.601 -27.949 0.648 0 0 0 0 0 0 0 +7.637 -27.734 0.645 0 0 0 0 0 0 0 +7.669 -27.514 0.642 0 0 0 0 0 0 0 +7.701 -27.295 0.639 0 0 0 0 0 0 0 +7.736 -27.092 0.636 0 0 0 0 0 0 0 +7.762 -26.864 0.633 0 0 0 0 0 0 0 +7.771 -26.738 0.631 0 0 0 0 0 0 0 +7.849 -26.692 0.631 0 0 0 0 0 0 0 +7.942 -26.696 0.631 0 0 0 0 0 0 0 +8.094 -26.901 0.635 0 0 0 0 0 0 0 +8.138 -26.742 0.633 0 0 0 0 0 0 0 +8.083 -26.263 0.626 0 0 0 0 0 0 0 +7.932 -25.485 0.614 0 0 0 0 0 0 0 +7.929 -25.333 0.612 0 0 0 0 0 0 0 +7.96 -25.153 0.609 0 0 0 0 0 0 0 +7.99 -24.976 0.607 0 0 0 0 0 0 0 +8.015 -24.785 0.604 0 0 0 0 0 0 0 +8.041 -24.602 0.601 0 0 0 0 0 0 0 +8.077 -24.451 0.599 0 0 0 0 0 0 0 +8.085 -24.219 0.596 0 0 0 0 0 0 0 +8.113 -24.176 0.596 0 0 0 0 0 0 0 +8.188 -24.146 0.596 0 0 0 0 0 0 0 +8.277 -24.16 0.596 0 0 0 0 0 0 0 +8.353 -24.134 0.596 0 0 0 0 0 0 0 +8.414 -24.066 0.596 0 0 0 0 0 0 0 +3.72 -10.49 0.377 0 0 0 0 0 0 0 +3.719 -10.382 0.375 0 0 0 0 0 0 0 +3.777 -10.493 0.377 0 0 0 0 0 0 0 +8.245 -22.77 0.576 0 0 0 0 0 0 0 +8.281 -22.648 0.575 0 0 0 0 0 0 0 +8.305 -22.493 0.572 0 0 0 0 0 0 0 +8.331 -22.347 0.571 0 0 0 0 0 0 0 +8.352 -22.189 0.568 0 0 0 0 0 0 0 +8.295 -21.828 0.563 0 0 0 0 0 0 0 +8.357 -21.888 0.564 0 0 0 0 0 0 0 +8.277 -21.475 0.558 0 0 0 0 0 0 0 +8.297 -21.326 0.556 0 0 0 0 0 0 0 +8.317 -21.181 0.554 0 0 0 0 0 0 0 +8.339 -21.043 0.552 0 0 0 0 0 0 0 +8.35 -20.877 0.55 0 0 0 0 0 0 0 +8.399 -20.81 0.549 0 0 0 0 0 0 0 +8.445 -20.83 0.55 0 0 0 0 0 0 0 +8.524 -20.837 0.55 0 0 0 0 0 0 0 +8.552 -20.719 0.549 0 0 0 0 0 0 0 +8.577 -20.595 0.547 0 0 0 0 0 0 0 +8.6 -20.468 0.545 0 0 0 0 0 0 0 +8.62 -20.336 0.544 0 0 0 0 0 0 0 +8.494 -19.863 0.536 0 0 0 0 0 0 0 +8.471 -19.723 0.534 0 0 0 0 0 0 0 +8.514 -19.652 0.534 0 0 0 0 0 0 0 +8.59 -19.66 0.534 0 0 0 0 0 0 0 +8.671 -19.677 0.535 0 0 0 0 0 0 0 +8.711 -19.599 0.534 0 0 0 0 0 0 0 +8.733 -19.484 0.533 0 0 0 0 0 0 0 +8.749 -19.356 0.531 0 0 0 0 0 0 0 +8.741 -19.256 0.529 0 0 0 0 0 0 0 +8.752 -19.122 0.528 0 0 0 0 0 0 0 +8.616 -18.667 0.52 0 0 0 0 0 0 0 +8.645 -18.576 0.519 0 0 0 0 0 0 0 +8.664 -18.466 0.518 0 0 0 0 0 0 0 +8.685 -18.361 0.517 0 0 0 0 0 0 0 +8.706 -18.256 0.515 0 0 0 0 0 0 0 +8.688 -18.143 0.514 0 0 0 0 0 0 0 +8.71 -18.043 0.512 0 0 0 0 0 0 0 +8.718 -17.917 0.511 0 0 0 0 0 0 0 +8.776 -17.891 0.511 0 0 0 0 0 0 0 +8.854 -17.908 0.512 0 0 0 0 0 0 0 +8.91 -17.88 0.512 0 0 0 0 0 0 0 +8.929 -17.777 0.51 0 0 0 0 0 0 0 +8.914 -17.679 0.509 0 0 0 0 0 0 0 +8.936 -17.585 0.508 0 0 0 0 0 0 0 +8.935 -17.447 0.506 0 0 0 0 0 0 0 +8.941 -17.324 0.504 0 0 0 0 0 0 0 +9.002 -17.308 0.504 0 0 0 0 0 0 0 +9.074 -17.314 0.505 0 0 0 0 0 0 0 +9.154 -17.333 0.506 0 0 0 0 0 0 0 +9.184 -17.324 0.506 0 0 0 0 0 0 0 +9.247 -17.312 0.506 0 0 0 0 0 0 0 +9.387 -17.442 0.509 0 0 0 0 0 0 0 +9.469 -17.463 0.51 0 0 0 0 0 0 0 +9.592 -17.558 0.512 0 0 0 0 0 0 0 +9.611 -17.461 0.511 0 0 0 0 0 0 0 +9.618 -17.345 0.509 0 0 0 0 0 0 0 +9.626 -17.231 0.508 0 0 0 0 0 0 0 +9.082 -16.195 0.49 0 0 0 0 0 0 0 +9.097 -16.104 0.489 0 0 0 0 0 0 0 +9.113 -16.014 0.488 0 0 0 0 0 0 0 +9.154 -15.968 0.488 0 0 0 0 0 0 0 +9.169 -15.878 0.487 0 0 0 0 0 0 0 +9.186 -15.792 0.486 0 0 0 0 0 0 0 +9.196 -15.696 0.484 0 0 0 0 0 0 0 +9.186 -15.623 0.483 0 0 0 0 0 0 0 +9.169 -15.482 0.481 0 0 0 0 0 0 0 +9.206 -15.433 0.481 0 0 0 0 0 0 0 +9.253 -15.402 0.481 0 0 0 0 0 0 0 +9.317 -15.398 0.481 0 0 0 0 0 0 0 +9.387 -15.405 0.482 0 0 0 0 0 0 0 +9.374 -15.329 0.481 0 0 0 0 0 0 0 +9.463 -15.366 0.482 0 0 0 0 0 0 0 +9.506 -15.327 0.482 0 0 0 0 0 0 0 +9.562 -15.311 0.482 0 0 0 0 0 0 0 +9.563 -15.206 0.481 0 0 0 0 0 0 0 +9.558 -15.092 0.479 0 0 0 0 0 0 0 +9.56 -14.991 0.478 0 0 0 0 0 0 0 +9.532 -14.895 0.477 0 0 0 0 0 0 0 +9.541 -14.806 0.476 0 0 0 0 0 0 0 +9.553 -14.722 0.475 0 0 0 0 0 0 0 +9.578 -14.66 0.474 0 0 0 0 0 0 0 +9.576 -14.556 0.473 0 0 0 0 0 0 0 +9.582 -14.466 0.472 0 0 0 0 0 0 0 +9.571 -14.351 0.47 0 0 0 0 0 0 0 +9.359 -13.985 0.464 0 0 0 0 0 0 0 +9.382 -13.924 0.463 0 0 0 0 0 0 0 +9.414 -13.878 0.463 0 0 0 0 0 0 0 +9.426 -13.802 0.462 0 0 0 0 0 0 0 +9.436 -13.723 0.461 0 0 0 0 0 0 0 +9.45 -13.652 0.46 0 0 0 0 0 0 0 +9.464 -13.579 0.459 0 0 0 0 0 0 0 +9.468 -13.496 0.458 0 0 0 0 0 0 0 +9.439 -13.409 0.457 0 0 0 0 0 0 0 +9.445 -13.328 0.456 0 0 0 0 0 0 0 +9.472 -13.277 0.456 0 0 0 0 0 0 0 +9.538 -13.282 0.456 0 0 0 0 0 0 0 +9.603 -13.284 0.457 0 0 0 0 0 0 0 +9.674 -13.294 0.458 0 0 0 0 0 0 0 +9.739 -13.295 0.458 0 0 0 0 0 0 0 +9.739 -13.252 0.458 0 0 0 0 0 0 0 +9.879 -13.355 0.46 0 0 0 0 0 0 0 +9.834 -13.206 0.458 0 0 0 0 0 0 0 +9.824 -13.107 0.457 0 0 0 0 0 0 0 +9.833 -13.033 0.456 0 0 0 0 0 0 0 +9.861 -12.984 0.456 0 0 0 0 0 0 0 +9.871 -12.913 0.455 0 0 0 0 0 0 0 +9.852 -12.847 0.454 0 0 0 0 0 0 0 +9.856 -12.768 0.453 0 0 0 0 0 0 0 +9.885 -12.723 0.453 0 0 0 0 0 0 0 +9.894 -12.652 0.452 0 0 0 0 0 0 0 +9.846 -12.51 0.45 0 0 0 0 0 0 0 +9.616 -12.136 0.443 0 0 0 0 0 0 0 +9.609 -12.088 0.443 0 0 0 0 0 0 0 +9.614 -12.018 0.442 0 0 0 0 0 0 0 +9.654 -11.99 0.442 0 0 0 0 0 0 0 +9.668 -11.93 0.441 0 0 0 0 0 0 0 +9.675 -11.863 0.441 0 0 0 0 0 0 0 +9.692 -11.808 0.44 0 0 0 0 0 0 0 +9.697 -11.738 0.439 0 0 0 0 0 0 0 +9.721 -11.693 0.439 0 0 0 0 0 0 0 +9.704 -11.634 0.438 0 0 0 0 0 0 0 +9.725 -11.585 0.438 0 0 0 0 0 0 0 +9.731 -11.518 0.437 0 0 0 0 0 0 0 +9.721 -11.434 0.436 0 0 0 0 0 0 0 +9.603 -11.222 0.432 0 0 0 0 0 0 0 +9.608 -11.157 0.432 0 0 0 0 0 0 0 +9.617 -11.097 0.431 0 0 0 0 0 0 0 +9.616 -11.06 0.431 0 0 0 0 0 0 0 +9.619 -10.994 0.43 0 0 0 0 0 0 0 +9.626 -10.932 0.429 0 0 0 0 0 0 0 +9.648 -10.888 0.429 0 0 0 0 0 0 0 +9.648 -10.819 0.428 0 0 0 0 0 0 0 +9.661 -10.765 0.428 0 0 0 0 0 0 0 +9.652 -10.687 0.427 0 0 0 0 0 0 0 +9.648 -10.649 0.426 0 0 0 0 0 0 0 +9.662 -10.597 0.426 0 0 0 0 0 0 0 +9.692 -10.563 0.426 0 0 0 0 0 0 0 +9.727 -10.534 0.426 0 0 0 0 0 0 0 +9.796 -10.543 0.427 0 0 0 0 0 0 0 +9.85 -10.535 0.427 0 0 0 0 0 0 0 +9.894 -10.515 0.427 0 0 0 0 0 0 0 +9.88 -10.468 0.427 0 0 0 0 0 0 0 +9.886 -10.407 0.426 0 0 0 0 0 0 0 +9.896 -10.353 0.426 0 0 0 0 0 0 0 +9.906 -10.299 0.425 0 0 0 0 0 0 0 +9.915 -10.243 0.425 0 0 0 0 0 0 0 +9.925 -10.189 0.424 0 0 0 0 0 0 0 +9.913 -10.145 0.423 0 0 0 0 0 0 0 +9.923 -10.091 0.423 0 0 0 0 0 0 0 +9.939 -10.044 0.423 0 0 0 0 0 0 0 +9.945 -9.987 0.422 0 0 0 0 0 0 0 +9.949 -9.929 0.422 0 0 0 0 0 0 0 +9.968 -9.885 0.421 0 0 0 0 0 0 0 +9.972 -9.827 0.421 0 0 0 0 0 0 0 +9.977 -9.77 0.42 0 0 0 0 0 0 0 +9.974 -9.736 0.42 0 0 0 0 0 0 0 +9.978 -9.68 0.419 0 0 0 0 0 0 0 +9.99 -9.63 0.419 0 0 0 0 0 0 0 +10 -9.58 0.418 0 0 0 0 0 0 0 +10.01 -9.529 0.418 0 0 0 0 0 0 0 +10.015 -9.474 0.417 0 0 0 0 0 0 0 +10.023 -9.422 0.417 0 0 0 0 0 0 0 +10.017 -9.387 0.417 0 0 0 0 0 0 0 +10.026 -9.336 0.416 0 0 0 0 0 0 0 +10.025 -9.276 0.415 0 0 0 0 0 0 0 +9.851 -9.057 0.411 0 0 0 0 0 0 0 +9.855 -9.003 0.411 0 0 0 0 0 0 0 +9.858 -8.949 0.41 0 0 0 0 0 0 0 +9.887 -8.92 0.41 0 0 0 0 0 0 0 +9.878 -8.883 0.41 0 0 0 0 0 0 0 +9.889 -8.837 0.409 0 0 0 0 0 0 0 +9.896 -8.787 0.409 0 0 0 0 0 0 0 +9.898 -8.734 0.409 0 0 0 0 0 0 0 +9.909 -8.688 0.408 0 0 0 0 0 0 0 +9.914 -8.637 0.408 0 0 0 0 0 0 0 +9.925 -8.593 0.407 0 0 0 0 0 0 0 +9.921 -8.561 0.407 0 0 0 0 0 0 0 +9.925 -8.511 0.407 0 0 0 0 0 0 0 +9.935 -8.465 0.406 0 0 0 0 0 0 0 +9.936 -8.412 0.406 0 0 0 0 0 0 0 +9.962 -8.381 0.406 0 0 0 0 0 0 0 +9.987 -8.348 0.406 0 0 0 0 0 0 0 +10.005 -8.31 0.406 0 0 0 0 0 0 0 +10.012 -8.289 0.405 0 0 0 0 0 0 0 +10.04 -8.259 0.405 0 0 0 0 0 0 0 +10.064 -8.226 0.405 0 0 0 0 0 0 0 +10.082 -8.188 0.405 0 0 0 0 0 0 0 +10.097 -8.148 0.405 0 0 0 0 0 0 0 +10.116 -8.111 0.405 0 0 0 0 0 0 0 +10.142 -8.079 0.405 0 0 0 0 0 0 0 +10.168 -8.074 0.405 0 0 0 0 0 0 0 +10.206 -8.052 0.405 0 0 0 0 0 0 0 +10.409 -8.16 0.409 0 0 0 0 0 0 0 +10.468 -8.153 0.41 0 0 0 0 0 0 0 +10.501 -8.126 0.41 0 0 0 0 0 0 0 +10.508 -8.079 0.409 0 0 0 0 0 0 0 +10.542 -8.053 0.41 0 0 0 0 0 0 0 +10.544 -8.028 0.409 0 0 0 0 0 0 0 +10.579 -8.002 0.409 0 0 0 0 0 0 0 +10.601 -7.966 0.409 0 0 0 0 0 0 0 +10.614 -7.925 0.409 0 0 0 0 0 0 0 +10.646 -7.896 0.409 0 0 0 0 0 0 0 +10.654 -7.851 0.409 0 0 0 0 0 0 0 +10.69 -7.825 0.409 0 0 0 0 0 0 0 +10.691 -7.8 0.409 0 0 0 0 0 0 0 +10.719 -7.769 0.409 0 0 0 0 0 0 0 +10.727 -7.724 0.409 0 0 0 0 0 0 0 +10.771 -7.704 0.409 0 0 0 0 0 0 0 +10.777 -7.657 0.409 0 0 0 0 0 0 0 +10.812 -7.631 0.409 0 0 0 0 0 0 0 +10.823 -7.588 0.409 0 0 0 0 0 0 0 +10.843 -7.577 0.409 0 0 0 0 0 0 0 +10.856 -7.535 0.409 0 0 0 0 0 0 0 +10.886 -7.505 0.409 0 0 0 0 0 0 0 +10.906 -7.469 0.409 0 0 0 0 0 0 0 +10.938 -7.44 0.409 0 0 0 0 0 0 0 +10.949 -7.398 0.409 0 0 0 0 0 0 0 +10.979 -7.368 0.409 0 0 0 0 0 0 0 +10.982 -7.345 0.409 0 0 0 0 0 0 0 +11.012 -7.315 0.409 0 0 0 0 0 0 0 +10.997 -7.255 0.408 0 0 0 0 0 0 0 +10.829 -7.095 0.405 0 0 0 0 0 0 0 +10.818 -7.039 0.404 0 0 0 0 0 0 0 +10.826 -6.996 0.404 0 0 0 0 0 0 0 +10.852 -6.964 0.404 0 0 0 0 0 0 0 +10.859 -6.945 0.404 0 0 0 0 0 0 0 +10.9 -6.923 0.404 0 0 0 0 0 0 0 +10.918 -6.886 0.404 0 0 0 0 0 0 0 +10.941 -6.853 0.404 0 0 0 0 0 0 0 +10.961 -6.818 0.404 0 0 0 0 0 0 0 +10.987 -6.786 0.404 0 0 0 0 0 0 0 +11.01 -6.753 0.404 0 0 0 0 0 0 0 +11.023 -6.737 0.404 0 0 0 0 0 0 0 +11.061 -6.712 0.405 0 0 0 0 0 0 0 +11.113 -6.696 0.405 0 0 0 0 0 0 0 +11.166 -6.681 0.406 0 0 0 0 0 0 0 +11.211 -6.66 0.406 0 0 0 0 0 0 0 +11.268 -6.646 0.407 0 0 0 0 0 0 0 +11.313 -6.625 0.407 0 0 0 0 0 0 0 +11.362 -6.629 0.408 0 0 0 0 0 0 0 +11.41 -6.61 0.408 0 0 0 0 0 0 0 +11.458 -6.59 0.409 0 0 0 0 0 0 0 +11.505 -6.569 0.409 0 0 0 0 0 0 0 +11.566 -6.555 0.41 0 0 0 0 0 0 0 +11.597 -6.525 0.41 0 0 0 0 0 0 0 +11.657 -6.511 0.411 0 0 0 0 0 0 0 +11.763 -6.546 0.412 0 0 0 0 0 0 0 +12.016 -6.638 0.417 0 0 0 0 0 0 0 +12.07 -6.619 0.417 0 0 0 0 0 0 0 +12.133 -6.604 0.418 0 0 0 0 0 0 0 +12.182 -6.581 0.418 0 0 0 0 0 0 0 +12.236 -6.561 0.419 0 0 0 0 0 0 0 +12.294 -6.542 0.42 0 0 0 0 0 0 0 +12.338 -6.541 0.42 0 0 0 0 0 0 0 +12.381 -6.514 0.421 0 0 0 0 0 0 0 +12.44 -6.496 0.421 0 0 0 0 0 0 0 +12.455 -6.454 0.421 0 0 0 0 0 0 0 +8.789 -4.51 0.358 0 0 0 0 0 0 0 +8.798 -4.48 0.358 0 0 0 0 0 0 0 +12.724 -6.417 0.424 0 0 0 0 0 0 0 +12.796 -6.403 0.425 0 0 0 0 0 0 0 +12.855 -6.382 0.426 0 0 0 0 0 0 0 +12.916 -6.362 0.427 0 0 0 0 0 0 0 +12.972 -6.339 0.427 0 0 0 0 0 0 0 +13.037 -6.32 0.428 0 0 0 0 0 0 0 +13.084 -6.292 0.429 0 0 0 0 0 0 0 +13.14 -6.294 0.429 0 0 0 0 0 0 0 +13.147 -6.247 0.429 0 0 0 0 0 0 0 +13.151 -6.198 0.429 0 0 0 0 0 0 0 +13.13 -6.138 0.428 0 0 0 0 0 0 0 +13.142 -6.093 0.428 0 0 0 0 0 0 0 +13.178 -6.059 0.428 0 0 0 0 0 0 0 +13.228 -6.032 0.429 0 0 0 0 0 0 0 +13.279 -6.03 0.43 0 0 0 0 0 0 0 +13.372 -6.023 0.431 0 0 0 0 0 0 0 +13.439 -6.002 0.432 0 0 0 0 0 0 0 +13.492 -5.975 0.432 0 0 0 0 0 0 0 +13.562 -5.955 0.433 0 0 0 0 0 0 0 +13.627 -5.933 0.434 0 0 0 0 0 0 0 +13.689 -5.909 0.435 0 0 0 0 0 0 0 +13.75 -5.91 0.435 0 0 0 0 0 0 0 +13.822 -5.889 0.436 0 0 0 0 0 0 0 +13.892 -5.868 0.437 0 0 0 0 0 0 0 +14.102 -5.905 0.44 0 0 0 0 0 0 0 +14.152 -5.873 0.441 0 0 0 0 0 0 0 +14.2 -5.841 0.441 0 0 0 0 0 0 0 +14.247 -5.809 0.442 0 0 0 0 0 0 0 +14.301 -5.778 0.442 0 0 0 0 0 0 0 +14.338 -5.767 0.443 0 0 0 0 0 0 0 +14.393 -5.737 0.443 0 0 0 0 0 0 0 +14.437 -5.702 0.444 0 0 0 0 0 0 0 +14.497 -5.673 0.445 0 0 0 0 0 0 0 +14.543 -5.638 0.445 0 0 0 0 0 0 0 +14.602 -5.609 0.446 0 0 0 0 0 0 0 +14.64 -5.571 0.446 0 0 0 0 0 0 0 +14.662 -5.552 0.446 0 0 0 0 0 0 0 +14.687 -5.509 0.446 0 0 0 0 0 0 0 +14.726 -5.471 0.447 0 0 0 0 0 0 0 +14.79 -5.443 0.447 0 0 0 0 0 0 0 +15.097 -5.502 0.452 0 0 0 0 0 0 0 +15.155 -5.469 0.453 0 0 0 0 0 0 0 +15.209 -5.462 0.454 0 0 0 0 0 0 0 +15.241 -5.42 0.454 0 0 0 0 0 0 0 +15.301 -5.387 0.454 0 0 0 0 0 0 0 +15.352 -5.351 0.455 0 0 0 0 0 0 0 +15.416 -5.319 0.456 0 0 0 0 0 0 0 +15.457 -5.279 0.456 0 0 0 0 0 0 0 +15.512 -5.243 0.457 0 0 0 0 0 0 0 +15.562 -5.206 0.457 0 0 0 0 0 0 0 +15.614 -5.196 0.458 0 0 0 0 0 0 0 +15.67 -5.16 0.459 0 0 0 0 0 0 0 +15.715 -5.12 0.459 0 0 0 0 0 0 0 +15.767 -5.083 0.46 0 0 0 0 0 0 0 +15.827 -5.047 0.46 0 0 0 0 0 0 0 +15.875 -5.008 0.461 0 0 0 0 0 0 0 +15.94 -4.973 0.462 0 0 0 0 0 0 0 +15.938 -4.945 0.462 0 0 0 0 0 0 0 +15.9 -4.879 0.461 0 0 0 0 0 0 0 +15.862 -4.812 0.46 0 0 0 0 0 0 0 +15.879 -4.763 0.46 0 0 0 0 0 0 0 +15.934 -4.725 0.461 0 0 0 0 0 0 0 +16.001 -4.69 0.461 0 0 0 0 0 0 0 +16.102 -4.665 0.463 0 0 0 0 0 0 0 +16.159 -4.654 0.464 0 0 0 0 0 0 0 +16.21 -4.614 0.464 0 0 0 0 0 0 0 +16.269 -4.576 0.465 0 0 0 0 0 0 0 +16.323 -4.536 0.465 0 0 0 0 0 0 0 +16.386 -4.498 0.466 0 0 0 0 0 0 0 +16.45 -4.46 0.467 0 0 0 0 0 0 0 +16.506 -4.42 0.468 0 0 0 0 0 0 0 +16.567 -4.408 0.468 0 0 0 0 0 0 0 +16.62 -4.366 0.469 0 0 0 0 0 0 0 +16.682 -4.327 0.47 0 0 0 0 0 0 0 +16.748 -4.288 0.471 0 0 0 0 0 0 0 +16.798 -4.245 0.471 0 0 0 0 0 0 0 +16.86 -4.204 0.472 0 0 0 0 0 0 0 +16.919 -4.162 0.473 0 0 0 0 0 0 0 +16.97 -4.147 0.473 0 0 0 0 0 0 0 +17.038 -4.107 0.474 0 0 0 0 0 0 0 +17.101 -4.065 0.475 0 0 0 0 0 0 0 +17.157 -4.022 0.476 0 0 0 0 0 0 0 +17.216 -3.979 0.476 0 0 0 0 0 0 0 +17.279 -3.936 0.477 0 0 0 0 0 0 0 +17.35 -3.895 0.478 0 0 0 0 0 0 0 +17.411 -3.88 0.479 0 0 0 0 0 0 0 +17.47 -3.836 0.48 0 0 0 0 0 0 0 +17.521 -3.789 0.48 0 0 0 0 0 0 0 +17.544 -3.737 0.481 0 0 0 0 0 0 0 +17.618 -3.695 0.482 0 0 0 0 0 0 0 +17.926 -3.701 0.486 0 0 0 0 0 0 0 +18.062 -3.67 0.488 0 0 0 0 0 0 0 +18.121 -3.653 0.489 0 0 0 0 0 0 0 +18.193 -3.608 0.49 0 0 0 0 0 0 0 +18.252 -3.56 0.491 0 0 0 0 0 0 0 +18.318 -3.513 0.491 0 0 0 0 0 0 0 +18.382 -3.466 0.492 0 0 0 0 0 0 0 +18.471 -3.423 0.493 0 0 0 0 0 0 0 +13.791 -2.504 0.421 0 0 0 0 0 0 0 +13.706 -2.466 0.42 0 0 0 0 0 0 0 +13.678 -2.417 0.419 0 0 0 0 0 0 0 +13.66 -2.369 0.419 0 0 0 0 0 0 0 +13.656 -2.324 0.418 0 0 0 0 0 0 0 +13.643 -2.278 0.418 0 0 0 0 0 0 0 +13.652 -2.235 0.418 0 0 0 0 0 0 0 +13.659 -2.193 0.418 0 0 0 0 0 0 0 +13.669 -2.172 0.418 0 0 0 0 0 0 0 +13.693 -2.132 0.419 0 0 0 0 0 0 0 +13.698 -2.089 0.418 0 0 0 0 0 0 0 +13.738 -2.051 0.419 0 0 0 0 0 0 0 +13.774 -2.012 0.419 0 0 0 0 0 0 0 +13.84 -1.977 0.42 0 0 0 0 0 0 0 +19.267 -2.701 0.504 0 0 0 0 0 0 0 +19.325 -2.678 0.504 0 0 0 0 0 0 0 +19.416 -2.629 0.506 0 0 0 0 0 0 0 +19.508 -2.579 0.507 0 0 0 0 0 0 0 +19.575 -2.526 0.508 0 0 0 0 0 0 0 +19.458 -2.448 0.506 0 0 0 0 0 0 0 +19.476 -2.388 0.506 0 0 0 0 0 0 0 +19.568 -2.337 0.507 0 0 0 0 0 0 0 +19.602 -2.31 0.508 0 0 0 0 0 0 0 +19.657 -2.254 0.509 0 0 0 0 0 0 0 +19.695 -2.196 0.509 0 0 0 0 0 0 0 +19.752 -2.139 0.51 0 0 0 0 0 0 0 +19.792 -2.081 0.51 0 0 0 0 0 0 0 +19.856 -2.025 0.511 0 0 0 0 0 0 0 +19.912 -1.967 0.512 0 0 0 0 0 0 0 +19.967 -1.941 0.513 0 0 0 0 0 0 0 +19.999 -1.881 0.513 0 0 0 0 0 0 0 +20.047 -1.822 0.514 0 0 0 0 0 0 0 +20.164 -1.769 0.516 0 0 0 0 0 0 0 +20.996 -1.776 0.528 0 0 0 0 0 0 0 +21.081 -1.717 0.529 0 0 0 0 0 0 0 +20.911 -1.637 0.527 0 0 0 0 0 0 0 +20.936 -1.606 0.527 0 0 0 0 0 0 0 +20.961 -1.541 0.527 0 0 0 0 0 0 0 +20.993 -1.478 0.528 0 0 0 0 0 0 0 +20.926 -1.407 0.527 0 0 0 0 0 0 0 +21.104 -1.352 0.529 0 0 0 0 0 0 0 +21.16 -1.289 0.53 0 0 0 0 0 0 0 +21.308 -1.231 0.532 0 0 0 0 0 0 0 +21.635 -1.216 0.537 0 0 0 0 0 0 0 +22.074 -1.172 0.544 0 0 0 0 0 0 0 +22.078 -1.103 0.544 0 0 0 0 0 0 0 +21.406 -1.001 0.534 0 0 0 0 0 0 0 +21.223 -0.925 0.531 0 0 0 0 0 0 0 +21.274 -0.861 0.532 0 0 0 0 0 0 0 +21.209 -0.791 0.531 0 0 0 0 0 0 0 +21.142 -0.755 0.53 0 0 0 0 0 0 0 +21.146 -0.689 0.53 0 0 0 0 0 0 0 +21.174 -0.623 0.53 0 0 0 0 0 0 0 +21.248 -0.559 0.531 0 0 0 0 0 0 0 +21.318 -0.494 0.532 0 0 0 0 0 0 0 +21.373 -0.428 0.533 0 0 0 0 0 0 0 +21.428 -0.362 0.534 0 0 0 0 0 0 0 +21.489 -0.329 0.535 0 0 0 0 0 0 0 +21.548 -0.262 0.536 0 0 0 0 0 0 0 +21.61 -0.195 0.536 0 0 0 0 0 0 0 +21.685 -0.128 0.538 0 0 0 0 0 0 0 +23.175 -0.066 0.56 0 0 0 0 0 0 0 +58.903 -0.022 1.104 0 0 0 0 0 0 0 +58.642 0.631 0.8 0 0 0 0 0 0 0 +58.421 0.812 0.798 0 0 0 0 0 0 0 +58.364 0.903 0.797 0 0 0 0 0 0 0 +58.309 1.085 0.796 0 0 0 0 0 0 0 +58.269 1.267 0.796 0 0 0 0 0 0 0 +58.219 1.449 0.796 0 0 0 0 0 0 0 +58.2 1.632 0.796 0 0 0 0 0 0 0 +58.157 1.813 0.795 0 0 0 0 0 0 0 +58.233 1.999 0.796 0 0 0 0 0 0 0 +58.252 2.091 0.796 0 0 0 0 0 0 0 +58.253 2.275 0.796 0 0 0 0 0 0 0 +58.331 2.461 0.797 0 0 0 0 0 0 0 +58.449 2.65 0.798 0 0 0 0 0 0 0 +25.564 1.507 0.466 0 0 0 0 0 0 0 +25.561 1.587 0.466 0 0 0 0 0 0 0 +60.116 4.148 0.816 0 0 0 0 0 0 0 +59.907 4.322 0.814 0 0 0 0 0 0 0 +59.652 4.492 0.812 0 0 0 0 0 0 0 +59.583 4.581 0.811 0 0 0 0 0 0 0 +59.664 4.776 0.812 0 0 0 0 0 0 0 +59.752 4.972 0.813 0 0 0 0 0 0 0 +59.856 5.17 0.814 0 0 0 0 0 0 0 +18.738 1.719 0.397 0 0 0 0 0 0 0 +18.707 1.776 0.397 0 0 0 0 0 0 0 +18.955 1.83 0.4 0 0 0 0 0 0 0 +18.756 1.87 0.398 0 0 0 0 0 0 0 +61.812 7.204 0.836 0 0 0 0 0 0 0 +61.612 7.279 0.834 0 0 0 0 0 0 0 +61.349 7.443 0.832 0 0 0 0 0 0 0 +61.29 7.631 0.831 0 0 0 0 0 0 0 +61.329 7.832 0.832 0 0 0 0 0 0 0 +25.071 3.266 0.463 0 0 0 0 0 0 0 +43.791 5.865 0.654 0 0 0 0 0 0 0 +43.851 6.013 0.654 0 0 0 0 0 0 0 +43.901 6.09 0.655 0 0 0 0 0 0 0 +43.929 6.235 0.656 0 0 0 0 0 0 0 +43.916 6.374 0.656 0 0 0 0 0 0 0 +20.926 3.158 0.421 0 0 0 0 0 0 0 +43.407 6.718 0.651 0 0 0 0 0 0 0 +43.129 6.814 0.648 0 0 0 0 0 0 0 +43.043 6.869 0.648 0 0 0 0 0 0 0 +42.861 6.978 0.646 0 0 0 0 0 0 0 +42.697 7.089 0.645 0 0 0 0 0 0 0 +42.533 7.199 0.643 0 0 0 0 0 0 0 +42.341 7.304 0.641 0 0 0 0 0 0 0 +42.158 7.408 0.64 0 0 0 0 0 0 0 +41.999 7.516 0.638 0 0 0 0 0 0 0 +41.821 7.552 0.637 0 0 0 0 0 0 0 +41.599 7.647 0.635 0 0 0 0 0 0 0 +41.494 7.763 0.634 0 0 0 0 0 0 0 +41.267 7.854 0.632 0 0 0 0 0 0 0 +40.549 7.849 0.625 0 0 0 0 0 0 0 +40.897 8.05 0.628 0 0 0 0 0 0 0 +18.676 3.723 0.4 0 0 0 0 0 0 0 +40.924 8.323 0.629 0 0 0 0 0 0 0 +39.573 8.112 0.615 0 0 0 0 0 0 0 +39.222 8.169 0.612 0 0 0 0 0 0 0 +39.073 8.266 0.611 0 0 0 0 0 0 0 +38.959 8.369 0.61 0 0 0 0 0 0 0 +38.87 8.478 0.609 0 0 0 0 0 0 0 +38.781 8.586 0.609 0 0 0 0 0 0 0 +38.728 8.702 0.608 0 0 0 0 0 0 0 +38.642 8.747 0.608 0 0 0 0 0 0 0 +38.652 8.877 0.608 0 0 0 0 0 0 0 +38.643 9.003 0.608 0 0 0 0 0 0 0 +38.652 9.133 0.609 0 0 0 0 0 0 0 +38.677 9.267 0.609 0 0 0 0 0 0 0 +38.691 9.399 0.61 0 0 0 0 0 0 0 +38.727 9.537 0.61 0 0 0 0 0 0 0 +38.889 9.642 0.612 0 0 0 0 0 0 0 +39.116 9.829 0.615 0 0 0 0 0 0 0 +42.352 10.786 0.649 0 0 0 0 0 0 0 +42.438 10.95 0.65 0 0 0 0 0 0 0 +42.508 11.11 0.651 0 0 0 0 0 0 0 +42.513 11.255 0.652 0 0 0 0 0 0 0 +50.029 13.417 0.731 0 0 0 0 0 0 0 +49.941 13.478 0.73 0 0 0 0 0 0 0 +42.865 11.709 0.656 0 0 0 0 0 0 0 +42.898 11.863 0.657 0 0 0 0 0 0 0 +42.935 12.019 0.658 0 0 0 0 0 0 0 +50.949 14.44 0.742 0 0 0 0 0 0 0 +70.649 20.273 0.95 0 0 0 0 0 0 0 +36.502 10.586 0.591 0 0 0 0 0 0 0 +70.13 20.483 0.945 0 0 0 0 0 0 0 +69.853 20.64 0.943 0 0 0 0 0 0 0 +36.081 10.771 0.588 0 0 0 0 0 0 0 +69.368 20.971 0.939 0 0 0 0 0 0 0 +35.796 10.932 0.585 0 0 0 0 0 0 0 +68.849 21.287 0.935 0 0 0 0 0 0 0 +36.909 11.717 0.599 0 0 0 0 0 0 0 +36.797 11.809 0.598 0 0 0 0 0 0 0 +36.754 11.923 0.598 0 0 0 0 0 0 0 +36.669 12.023 0.597 0 0 0 0 0 0 0 +36.776 12.186 0.599 0 0 0 0 0 0 0 +36.745 12.304 0.599 0 0 0 0 0 0 0 +46.536 15.671 0.703 0 0 0 0 0 0 0 +46.354 15.772 0.702 0 0 0 0 0 0 0 +46.23 15.892 0.701 0 0 0 0 0 0 0 +46.182 16.038 0.701 0 0 0 0 0 0 0 +46.111 16.176 0.701 0 0 0 0 0 0 0 +46.093 16.333 0.701 0 0 0 0 0 0 0 +46.102 16.499 0.702 0 0 0 0 0 0 0 +46.197 16.615 0.703 0 0 0 0 0 0 0 +46.323 16.825 0.705 0 0 0 0 0 0 0 +71.584 26.27 0.978 0 0 0 0 0 0 0 +71.732 26.58 0.98 0 0 0 0 0 0 0 +71.893 26.897 0.983 0 0 0 0 0 0 0 +72.059 27.218 0.985 0 0 0 0 0 0 0 +72.24 27.546 0.988 0 0 0 0 0 0 0 +34.216 13.094 0.577 0 0 0 0 0 0 0 +34.13 13.184 0.577 0 0 0 0 0 0 0 +34.094 13.293 0.577 0 0 0 0 0 0 0 +72.925 28.73 0.999 0 0 0 0 0 0 0 +73.139 29.08 1.002 0 0 0 0 0 0 0 +36.183 14.504 0.601 0 0 0 0 0 0 0 +36.052 14.583 0.6 0 0 0 0 0 0 0 +73.701 29.976 1.011 0 0 0 0 0 0 0 +73.84 30.303 1.014 0 0 0 0 0 0 0 +47.552 21.184 0.733 0 0 0 0 0 0 0 +47.629 21.399 0.735 0 0 0 0 0 0 0 +47.7 21.611 0.736 0 0 0 0 0 0 0 +41.194 18.738 0.665 0 0 0 0 0 0 0 +41.014 18.811 0.663 0 0 0 0 0 0 0 +40.864 18.898 0.662 0 0 0 0 0 0 0 +40.663 18.96 0.661 0 0 0 0 0 0 0 +40.523 19.05 0.66 0 0 0 0 0 0 0 +40.414 19.154 0.659 0 0 0 0 0 0 0 +40.248 19.23 0.658 0 0 0 0 0 0 0 +40.182 19.354 0.658 0 0 0 0 0 0 0 +40.207 19.444 0.659 0 0 0 0 0 0 0 +40.081 19.539 0.658 0 0 0 0 0 0 0 +39.926 19.619 0.657 0 0 0 0 0 0 0 +39.773 19.699 0.656 0 0 0 0 0 0 0 +39.629 19.782 0.655 0 0 0 0 0 0 0 +39.363 19.804 0.652 0 0 0 0 0 0 0 +29.067 14.674 0.536 0 0 0 0 0 0 0 +39.009 19.857 0.65 0 0 0 0 0 0 0 +38.871 19.941 0.649 0 0 0 0 0 0 0 +38.757 20.036 0.648 0 0 0 0 0 0 0 +38.605 20.112 0.647 0 0 0 0 0 0 0 +38.459 20.189 0.646 0 0 0 0 0 0 0 +38.393 20.309 0.646 0 0 0 0 0 0 0 +38.315 20.345 0.646 0 0 0 0 0 0 0 +38.347 20.516 0.647 0 0 0 0 0 0 0 +38.47 20.738 0.649 0 0 0 0 0 0 0 +42.558 23.118 0.697 0 0 0 0 0 0 0 +40.489 22.158 0.674 0 0 0 0 0 0 0 +40.533 22.347 0.675 0 0 0 0 0 0 0 +37.691 20.933 0.643 0 0 0 0 0 0 0 +43.852 24.45 0.715 0 0 0 0 0 0 0 +45.361 25.479 0.733 0 0 0 0 0 0 0 +45.281 25.622 0.733 0 0 0 0 0 0 0 +45.225 25.778 0.733 0 0 0 0 0 0 0 +41.273 23.695 0.688 0 0 0 0 0 0 0 +41.368 23.923 0.69 0 0 0 0 0 0 0 +41.378 24.102 0.691 0 0 0 0 0 0 0 +41.248 24.201 0.69 0 0 0 0 0 0 0 +36.319 21.382 0.633 0 0 0 0 0 0 0 +36.166 21.445 0.632 0 0 0 0 0 0 0 +36.011 21.506 0.631 0 0 0 0 0 0 0 +35.899 21.592 0.631 0 0 0 0 0 0 0 +35.76 21.662 0.63 0 0 0 0 0 0 0 +35.629 21.736 0.629 0 0 0 0 0 0 0 +35.486 21.802 0.628 0 0 0 0 0 0 0 +35.397 21.824 0.627 0 0 0 0 0 0 0 +35.282 21.906 0.627 0 0 0 0 0 0 0 +35.32 22.084 0.628 0 0 0 0 0 0 0 +35.22 22.176 0.628 0 0 0 0 0 0 0 +29.622 18.907 0.562 0 0 0 0 0 0 0 +29.608 18.964 0.563 0 0 0 0 0 0 0 +34.764 22.426 0.625 0 0 0 0 0 0 0 +34.606 22.478 0.624 0 0 0 0 0 0 0 +34.293 22.428 0.621 0 0 0 0 0 0 0 +12.983 8.589 0.365 0 0 0 0 0 0 0 +33.915 22.64 0.619 0 0 0 0 0 0 0 +33.845 22.67 0.619 0 0 0 0 0 0 0 +33.704 22.729 0.618 0 0 0 0 0 0 0 +33.589 22.806 0.617 0 0 0 0 0 0 0 +33.47 22.879 0.617 0 0 0 0 0 0 0 +33.416 22.996 0.617 0 0 0 0 0 0 0 +33.417 23.152 0.618 0 0 0 0 0 0 0 +33.418 23.309 0.619 0 0 0 0 0 0 0 +33.441 23.402 0.62 0 0 0 0 0 0 0 +33.444 23.562 0.621 0 0 0 0 0 0 0 +33.479 23.744 0.622 0 0 0 0 0 0 0 +37.5 26.778 0.673 0 0 0 0 0 0 0 +37.481 26.942 0.674 0 0 0 0 0 0 0 +33.676 24.365 0.627 0 0 0 0 0 0 0 +35.713 26.012 0.654 0 0 0 0 0 0 0 +35.591 26.009 0.653 0 0 0 0 0 0 0 +35.44 26.069 0.652 0 0 0 0 0 0 0 +35.209 26.07 0.65 0 0 0 0 0 0 0 +34.303 25.566 0.64 0 0 0 0 0 0 0 +34.016 25.518 0.637 0 0 0 0 0 0 0 +33.779 25.507 0.635 0 0 0 0 0 0 0 +33.572 25.516 0.633 0 0 0 0 0 0 0 +33.439 25.498 0.632 0 0 0 0 0 0 0 +30.873 23.692 0.6 0 0 0 0 0 0 0 +17.374 13.406 0.429 0 0 0 0 0 0 0 +17.345 13.47 0.429 0 0 0 0 0 0 0 +17.463 13.65 0.431 0 0 0 0 0 0 0 +17.541 13.801 0.433 0 0 0 0 0 0 0 +33.341 26.432 0.637 0 0 0 0 0 0 0 +33.304 26.573 0.638 0 0 0 0 0 0 0 +33.346 26.693 0.639 0 0 0 0 0 0 0 +34.87 28.095 0.66 0 0 0 0 0 0 0 +34.819 28.234 0.66 0 0 0 0 0 0 0 +12.097 9.915 0.365 0 0 0 0 0 0 0 +6.745 5.548 0.296 0 0 0 0 0 0 0 +6.709 5.554 0.295 0 0 0 0 0 0 0 +6.702 5.566 0.295 0 0 0 0 0 0 0 +6.704 5.604 0.296 0 0 0 0 0 0 0 +11.487 9.688 0.359 0 0 0 0 0 0 0 +11.774 9.994 0.363 0 0 0 0 0 0 0 +11.517 9.838 0.36 0 0 0 0 0 0 0 +11.3 9.713 0.358 0 0 0 0 0 0 0 +11.338 9.777 0.359 0 0 0 0 0 0 0 +11.247 9.76 0.358 0 0 0 0 0 0 0 +11.243 9.819 0.358 0 0 0 0 0 0 0 +11.302 9.934 0.359 0 0 0 0 0 0 0 +11.269 9.968 0.359 0 0 0 0 0 0 0 +11.243 10.007 0.359 0 0 0 0 0 0 0 +11.171 10.006 0.359 0 0 0 0 0 0 0 +11.151 10.02 0.359 0 0 0 0 0 0 0 +11.251 10.174 0.361 0 0 0 0 0 0 0 +17.484 15.93 0.446 0 0 0 0 0 0 0 +11.011 10.147 0.359 0 0 0 0 0 0 0 +11.055 10.252 0.36 0 0 0 0 0 0 0 +16.278 15.208 0.432 0 0 0 0 0 0 0 +16.229 15.211 0.432 0 0 0 0 0 0 0 +16.175 15.256 0.432 0 0 0 0 0 0 0 +16.113 15.293 0.432 0 0 0 0 0 0 0 +16.065 15.344 0.432 0 0 0 0 0 0 0 +16.047 15.423 0.432 0 0 0 0 0 0 0 +16.193 15.663 0.435 0 0 0 0 0 0 0 +33.045 32.201 0.673 0 0 0 0 0 0 0 +33.018 32.378 0.674 0 0 0 0 0 0 0 +33.007 32.469 0.675 0 0 0 0 0 0 0 +32.964 32.631 0.676 0 0 0 0 0 0 0 +32.935 32.808 0.677 0 0 0 0 0 0 0 +32.891 32.971 0.678 0 0 0 0 0 0 0 +32.877 33.165 0.679 0 0 0 0 0 0 0 +32.804 33.3 0.68 0 0 0 0 0 0 0 +32.791 33.497 0.681 0 0 0 0 0 0 0 +32.804 33.616 0.682 0 0 0 0 0 0 0 +32.676 33.696 0.681 0 0 0 0 0 0 0 +32.566 33.794 0.681 0 0 0 0 0 0 0 +32.482 33.919 0.682 0 0 0 0 0 0 0 +32.421 34.069 0.682 0 0 0 0 0 0 0 +32.396 34.258 0.684 0 0 0 0 0 0 0 +32.366 34.442 0.685 0 0 0 0 0 0 0 +32.358 34.543 0.685 0 0 0 0 0 0 0 +32.34 34.741 0.687 0 0 0 0 0 0 0 +32.412 35.039 0.69 0 0 0 0 0 0 0 +32.351 35.194 0.69 0 0 0 0 0 0 0 +32.276 35.335 0.691 0 0 0 0 0 0 0 +32.23 35.508 0.692 0 0 0 0 0 0 0 +32.185 35.683 0.693 0 0 0 0 0 0 0 +32.778 36.457 0.703 0 0 0 0 0 0 0 +32.707 36.609 0.703 0 0 0 0 0 0 0 +32.624 36.747 0.704 0 0 0 0 0 0 0 +32.142 36.434 0.698 0 0 0 0 0 0 0 +32.482 37.054 0.705 0 0 0 0 0 0 0 +32.389 37.419 0.707 0 0 0 0 0 0 0 +32.002 37.09 0.702 0 0 0 0 0 0 0 +31.754 37.037 0.7 0 0 0 0 0 0 0 +31.625 37.121 0.7 0 0 0 0 0 0 0 +31.544 37.263 0.701 0 0 0 0 0 0 0 +31.474 37.418 0.701 0 0 0 0 0 0 0 +31.4 37.569 0.702 0 0 0 0 0 0 0 +31.342 37.74 0.703 0 0 0 0 0 0 0 +31.352 37.872 0.704 0 0 0 0 0 0 0 +31.863 38.739 0.714 0 0 0 0 0 0 0 +19.201 23.629 0.515 0 0 0 0 0 0 0 +19.082 23.634 0.514 0 0 0 0 0 0 0 +18.968 23.644 0.514 0 0 0 0 0 0 0 +18.814 23.604 0.512 0 0 0 0 0 0 0 +18.809 23.674 0.513 0 0 0 0 0 0 0 +30.817 39.066 0.71 0 0 0 0 0 0 0 +18.097 23.072 0.504 0 0 0 0 0 0 0 +18.132 23.268 0.505 0 0 0 0 0 0 0 +19.083 24.81 0.524 0 0 0 0 0 0 0 +30.455 40.272 0.717 0 0 0 0 0 0 0 +30.344 40.389 0.718 0 0 0 0 0 0 0 +30.141 40.381 0.716 0 0 0 0 0 0 0 +30.034 40.503 0.717 0 0 0 0 0 0 0 +29.907 40.597 0.717 0 0 0 0 0 0 0 +29.774 40.684 0.717 0 0 0 0 0 0 0 +29.793 40.844 0.718 0 0 0 0 0 0 0 +29.703 40.991 0.719 0 0 0 0 0 0 0 +29.625 41.156 0.72 0 0 0 0 0 0 0 +29.56 41.338 0.721 0 0 0 0 0 0 0 +27.124 38.694 0.685 0 0 0 0 0 0 0 +27.039 38.702 0.684 0 0 0 0 0 0 0 +26.966 38.857 0.685 0 0 0 0 0 0 0 +28.862 43.314 0.733 0 0 0 0 0 0 0 +28.706 43.228 0.732 0 0 0 0 0 0 0 +28.546 43.281 0.731 0 0 0 0 0 0 0 +28.431 43.402 0.731 0 0 0 0 0 0 0 +28.337 43.557 0.732 0 0 0 0 0 0 0 +28.247 43.718 0.733 0 0 0 0 0 0 0 +28.158 43.882 0.734 0 0 0 0 0 0 0 +28.069 44.048 0.735 0 0 0 0 0 0 0 +18.535 29.375 0.558 0 0 0 0 0 0 0 +18.402 29.367 0.557 0 0 0 0 0 0 0 +18.317 29.437 0.558 0 0 0 0 0 0 0 +18.253 29.542 0.558 0 0 0 0 0 0 0 +27.529 44.893 0.739 0 0 0 0 0 0 0 +27.484 44.979 0.74 0 0 0 0 0 0 0 +27.376 45.12 0.74 0 0 0 0 0 0 0 +27.27 45.266 0.741 0 0 0 0 0 0 0 +27.171 45.423 0.742 0 0 0 0 0 0 0 +27.065 45.57 0.743 0 0 0 0 0 0 0 +26.946 45.696 0.743 0 0 0 0 0 0 0 +26.843 45.852 0.744 0 0 0 0 0 0 0 +26.804 45.949 0.745 0 0 0 0 0 0 0 +26.699 46.102 0.746 0 0 0 0 0 0 0 +26.59 46.248 0.746 0 0 0 0 0 0 0 +26.482 46.398 0.747 0 0 0 0 0 0 0 +26.376 46.55 0.748 0 0 0 0 0 0 0 +26.252 46.673 0.748 0 0 0 0 0 0 0 +26.133 46.806 0.749 0 0 0 0 0 0 0 +26.025 46.958 0.75 0 0 0 0 0 0 0 +25.996 47.079 0.751 0 0 0 0 0 0 0 +25.867 47.196 0.751 0 0 0 0 0 0 0 +12.637 23.202 0.474 0 0 0 0 0 0 0 +12.54 23.198 0.474 0 0 0 0 0 0 0 +12.476 23.253 0.474 0 0 0 0 0 0 0 +12.431 23.345 0.475 0 0 0 0 0 0 0 +25.335 47.999 0.756 0 0 0 0 0 0 0 +25.287 48.092 0.756 0 0 0 0 0 0 0 +25.172 48.241 0.757 0 0 0 0 0 0 0 +25.043 48.362 0.758 0 0 0 0 0 0 0 +24.919 48.496 0.758 0 0 0 0 0 0 0 +24.703 48.449 0.757 0 0 0 0 0 0 0 +24.574 48.573 0.757 0 0 0 0 0 0 0 +24.475 48.757 0.758 0 0 0 0 0 0 0 +24.436 49.063 0.761 0 0 0 0 0 0 0 +24.373 49.13 0.761 0 0 0 0 0 0 0 +24.264 49.3 0.762 0 0 0 0 0 0 0 +24.118 49.393 0.763 0 0 0 0 0 0 0 +24.004 49.555 0.764 0 0 0 0 0 0 0 +23.869 49.672 0.764 0 0 0 0 0 0 0 +23.652 49.62 0.763 0 0 0 0 0 0 0 +23.591 49.694 0.763 0 0 0 0 0 0 0 +16.637 35.313 0.602 0 0 0 0 0 0 0 +16.507 35.324 0.601 0 0 0 0 0 0 0 +16.415 35.417 0.602 0 0 0 0 0 0 0 +23.076 50.228 0.766 0 0 0 0 0 0 0 +22.94 50.347 0.766 0 0 0 0 0 0 0 +22.802 50.465 0.767 0 0 0 0 0 0 0 +22.664 50.582 0.767 0 0 0 0 0 0 0 +15.389 34.471 0.589 0 0 0 0 0 0 0 +22.587 51.054 0.771 0 0 0 0 0 0 0 +15.175 34.572 0.589 0 0 0 0 0 0 0 +15.044 34.57 0.588 0 0 0 0 0 0 0 +15.132 35.073 0.593 0 0 0 0 0 0 0 +15.077 35.249 0.595 0 0 0 0 0 0 0 +15.586 36.762 0.611 0 0 0 0 0 0 0 +14.896 35.285 0.594 0 0 0 0 0 0 0 +14.83 35.44 0.595 0 0 0 0 0 0 0 +14.71 35.466 0.595 0 0 0 0 0 0 0 +14.628 35.583 0.596 0 0 0 0 0 0 0 +14.483 35.547 0.595 0 0 0 0 0 0 0 +21.018 52.088 0.775 0 0 0 0 0 0 0 +20.88 52.217 0.775 0 0 0 0 0 0 0 +20.822 52.309 0.776 0 0 0 0 0 0 0 +20.672 52.412 0.776 0 0 0 0 0 0 0 +13.516 34.563 0.582 0 0 0 0 0 0 0 +13.517 34.887 0.585 0 0 0 0 0 0 0 +20.232 52.748 0.778 0 0 0 0 0 0 0 +20.1 52.899 0.779 0 0 0 0 0 0 0 +19.936 52.97 0.779 0 0 0 0 0 0 0 +19.432 52.377 0.772 0 0 0 0 0 0 0 +19.25 52.391 0.771 0 0 0 0 0 0 0 +19.064 52.392 0.771 0 0 0 0 0 0 0 +18.89 52.426 0.77 0 0 0 0 0 0 0 +18.725 52.485 0.77 0 0 0 0 0 0 0 +18.572 52.577 0.771 0 0 0 0 0 0 0 +18.517 52.684 0.771 0 0 0 0 0 0 0 +18.387 52.844 0.773 0 0 0 0 0 0 0 +18.276 53.062 0.774 0 0 0 0 0 0 0 +18.443 54.1 0.785 0 0 0 0 0 0 0 +18.288 54.203 0.785 0 0 0 0 0 0 0 +18.138 54.321 0.786 0 0 0 0 0 0 0 +18.089 54.746 0.79 0 0 0 0 0 0 0 +17.939 54.871 0.791 0 0 0 0 0 0 0 +17.846 54.878 0.79 0 0 0 0 0 0 0 +17.661 54.894 0.79 0 0 0 0 0 0 0 +13.278 42.158 0.654 0 0 0 0 0 0 0 +13.192 42.349 0.655 0 0 0 0 0 0 0 +13.029 42.294 0.654 0 0 0 0 0 0 0 +12.877 42.272 0.654 0 0 0 0 0 0 0 +12.767 42.147 0.652 0 0 0 0 0 0 0 +12.588 42.519 0.655 0 0 0 0 0 0 0 +12.401 42.374 0.653 0 0 0 0 0 0 0 +19.804 69.344 0.936 0 0 0 0 0 0 0 +20.567 74.223 0.985 0 0 0 0 0 0 0 +15.398 62.776 0.86 0 0 0 0 0 0 0 +15.223 62.917 0.861 0 0 0 0 0 0 0 +15.073 63.165 0.863 0 0 0 0 0 0 0 +13.614 57.44 0.804 0 0 0 0 0 0 0 +16.269 72.735 0.96 0 0 0 0 0 0 0 +16.024 72.709 0.959 0 0 0 0 0 0 0 +15.793 72.748 0.959 0 0 0 0 0 0 0 +2.619 12.835 0.34 0 0 0 0 0 0 0 +2.626 13.08 0.342 0 0 0 0 0 0 0 +3.406 17.586 0.388 0 0 0 0 0 0 0 +3.38 17.601 0.388 0 0 0 0 0 0 0 +3.913 22.294 0.436 0 0 0 0 0 0 0 +3.792 22.011 0.433 0 0 0 0 0 0 0 +3.76 22.03 0.433 0 0 0 0 0 0 0 +3.692 22.048 0.433 0 0 0 0 0 0 0 +0.555 3.379 0.242 0 0 0 0 0 0 0 +3.623 22.065 0.433 0 0 0 0 0 0 0 +0.55 3.418 0.242 0 0 0 0 0 0 0 +3.552 22.065 0.433 0 0 0 0 0 0 0 +0.539 3.416 0.242 0 0 0 0 0 0 0 +0.538 3.442 0.243 0 0 0 0 0 0 0 +0.53 3.464 0.243 0 0 0 0 0 0 0 +0.52 3.475 0.243 0 0 0 0 0 0 0 +0.506 3.453 0.243 0 0 0 0 0 0 0 +0.49 3.421 0.242 0 0 0 0 0 0 0 +0.48 3.424 0.242 0 0 0 0 0 0 0 +0.47 3.432 0.242 0 0 0 0 0 0 0 +0.468 3.505 0.243 0 0 0 0 0 0 0 +0.453 3.43 0.242 0 0 0 0 0 0 0 +0.44 3.408 0.242 0 0 0 0 0 0 0 +0.435 3.461 0.243 0 0 0 0 0 0 0 +3.011 25.967 0.471 0 0 0 0 0 0 0 +-0.146 35.058 0.561 0 0 0 0 0 0 0 +-0.218 30.278 0.513 0 0 0 0 0 0 0 +-0.367 35.072 0.562 0 0 0 0 0 0 0 +-0.477 35.051 0.561 0 0 0 0 0 0 0 +-0.587 35.089 0.562 0 0 0 0 0 0 0 +-0.697 35.067 0.562 0 0 0 0 0 0 0 +-0.753 35.114 0.562 0 0 0 0 0 0 0 +-0.649 26.643 0.477 0 0 0 0 0 0 0 +-0.975 35.131 0.562 0 0 0 0 0 0 0 +-0.837 27.282 0.483 0 0 0 0 0 0 0 +-0.842 24.975 0.46 0 0 0 0 0 0 0 +-0.975 23.481 0.445 0 0 0 0 0 0 0 +-1.046 23.405 0.444 0 0 0 0 0 0 0 +-1.089 22.783 0.438 0 0 0 0 0 0 0 +-1.429 20.042 0.41 0 0 0 0 0 0 0 +-1.487 19.974 0.41 0 0 0 0 0 0 0 +-1.509 19.461 0.405 0 0 0 0 0 0 0 +-1.554 19.258 0.403 0 0 0 0 0 0 0 +-1.697 17.885 0.389 0 0 0 0 0 0 0 +-1.737 17.718 0.387 0 0 0 0 0 0 0 +-1.912 16.132 0.371 0 0 0 0 0 0 0 +-1.943 15.967 0.37 0 0 0 0 0 0 0 +-2.111 14.193 0.352 0 0 0 0 0 0 0 +-2.139 14.233 0.353 0 0 0 0 0 0 0 +-2.395 12.789 0.339 0 0 0 0 0 0 0 +-2.37 12.444 0.335 0 0 0 0 0 0 0 +-2.536 10.814 0.32 0 0 0 0 0 0 0 +-2.605 10.952 0.321 0 0 0 0 0 0 0 +-2.574 10.677 0.318 0 0 0 0 0 0 0 +-2.609 10.675 0.318 0 0 0 0 0 0 0 +-4.262 17.135 0.386 0 0 0 0 0 0 0 +-4.34 16.994 0.384 0 0 0 0 0 0 0 +-3.543 13.119 0.345 0 0 0 0 0 0 0 +-3.589 13.126 0.345 0 0 0 0 0 0 0 +-3.631 13.118 0.345 0 0 0 0 0 0 0 +-4.091 14.501 0.36 0 0 0 0 0 0 0 +-4.144 14.517 0.36 0 0 0 0 0 0 0 +-4.184 14.483 0.36 0 0 0 0 0 0 0 +-4.228 14.464 0.36 0 0 0 0 0 0 0 +-2.791 9.103 0.304 0 0 0 0 0 0 0 +-2.809 9.062 0.303 0 0 0 0 0 0 0 +-2.828 9.021 0.303 0 0 0 0 0 0 0 +-2.836 8.951 0.302 0 0 0 0 0 0 0 +-2.852 8.902 0.302 0 0 0 0 0 0 0 +-2.87 8.863 0.301 0 0 0 0 0 0 0 +-2.865 8.801 0.301 0 0 0 0 0 0 0 +-2.901 8.817 0.301 0 0 0 0 0 0 0 +-2.893 8.701 0.3 0 0 0 0 0 0 0 +-2.918 8.686 0.3 0 0 0 0 0 0 0 +-2.953 8.7 0.3 0 0 0 0 0 0 0 +-2.964 8.643 0.3 0 0 0 0 0 0 0 +-2.966 8.562 0.299 0 0 0 0 0 0 0 +-2.982 8.523 0.299 0 0 0 0 0 0 0 +-2.988 8.497 0.298 0 0 0 0 0 0 0 +-3.004 8.458 0.298 0 0 0 0 0 0 0 +-3.021 8.422 0.298 0 0 0 0 0 0 0 +-3.037 8.382 0.297 0 0 0 0 0 0 0 +-3.051 8.341 0.297 0 0 0 0 0 0 0 +-3.064 8.296 0.297 0 0 0 0 0 0 0 +-3.08 8.258 0.296 0 0 0 0 0 0 0 +-3.08 8.219 0.296 0 0 0 0 0 0 0 +-3.097 8.187 0.296 0 0 0 0 0 0 0 +-3.116 8.159 0.296 0 0 0 0 0 0 0 +-3.119 8.091 0.295 0 0 0 0 0 0 0 +-3.137 8.063 0.295 0 0 0 0 0 0 0 +-3.158 8.042 0.295 0 0 0 0 0 0 0 +-3.165 7.987 0.294 0 0 0 0 0 0 0 +-3.169 7.96 0.294 0 0 0 0 0 0 0 +-3.187 7.933 0.294 0 0 0 0 0 0 0 +-3.198 7.89 0.293 0 0 0 0 0 0 0 +-3.214 7.858 0.293 0 0 0 0 0 0 0 +-3.227 7.82 0.293 0 0 0 0 0 0 0 +-3.242 7.786 0.293 0 0 0 0 0 0 0 +-3.831 9.109 0.307 0 0 0 0 0 0 0 +-3.855 9.127 0.307 0 0 0 0 0 0 0 +-3.885 9.116 0.307 0 0 0 0 0 0 0 +-3.297 7.68 0.292 0 0 0 0 0 0 0 +-3.292 7.538 0.29 0 0 0 0 0 0 0 +-3.333 7.568 0.291 0 0 0 0 0 0 0 +-3.265 7.351 0.289 0 0 0 0 0 0 0 +-3.356 7.492 0.29 0 0 0 0 0 0 0 +-3.47 7.649 0.292 0 0 0 0 0 0 0 +-5.078 10.98 0.33 0 0 0 0 0 0 0 +-4.312 9.183 0.31 0 0 0 0 0 0 0 +-4.344 9.175 0.31 0 0 0 0 0 0 0 +-4.377 9.208 0.31 0 0 0 0 0 0 0 +-4.393 9.167 0.31 0 0 0 0 0 0 0 +-4.509 9.333 0.312 0 0 0 0 0 0 0 +-4.958 10.174 0.322 0 0 0 0 0 0 0 +-4.971 10.12 0.321 0 0 0 0 0 0 0 +-5.013 10.125 0.321 0 0 0 0 0 0 0 +-5.13 9.666 0.318 0 0 0 0 0 0 0 +-5.137 9.606 0.317 0 0 0 0 0 0 0 +-5.051 9.237 0.314 0 0 0 0 0 0 0 +-5.097 9.252 0.314 0 0 0 0 0 0 0 +-5.105 9.198 0.314 0 0 0 0 0 0 0 +-5.09 9.137 0.313 0 0 0 0 0 0 0 +-5.111 9.108 0.313 0 0 0 0 0 0 0 +-5.126 9.069 0.313 0 0 0 0 0 0 0 +-5.172 9.082 0.313 0 0 0 0 0 0 0 +-5.206 9.076 0.313 0 0 0 0 0 0 0 +-5.226 9.044 0.313 0 0 0 0 0 0 0 +-5.214 8.959 0.312 0 0 0 0 0 0 0 +-5.209 8.918 0.312 0 0 0 0 0 0 0 +-5.198 8.836 0.311 0 0 0 0 0 0 0 +-5.204 8.784 0.31 0 0 0 0 0 0 0 +-4.617 7.743 0.298 0 0 0 0 0 0 0 +-4.635 7.719 0.298 0 0 0 0 0 0 0 +-5.2 8.532 0.308 0 0 0 0 0 0 0 +-5.181 8.471 0.308 0 0 0 0 0 0 0 +-5.102 8.284 0.306 0 0 0 0 0 0 0 +-5.114 8.246 0.305 0 0 0 0 0 0 0 +-5.042 8.074 0.303 0 0 0 0 0 0 0 +-4.892 7.781 0.3 0 0 0 0 0 0 0 +-4.939 7.801 0.301 0 0 0 0 0 0 0 +-4.957 7.776 0.3 0 0 0 0 0 0 0 +-4.976 7.778 0.301 0 0 0 0 0 0 0 +-5.027 7.803 0.301 0 0 0 0 0 0 0 +-5.08 7.777 0.301 0 0 0 0 0 0 0 +-5.076 7.666 0.3 0 0 0 0 0 0 0 +-16.985 25.369 0.516 0 0 0 0 0 0 0 +-17.091 25.354 0.516 0 0 0 0 0 0 0 +-17.126 25.321 0.516 0 0 0 0 0 0 0 +-43.876 63.93 0.991 0 0 0 0 0 0 0 +-41.265 58.931 0.934 0 0 0 0 0 0 0 +-41.386 58.71 0.933 0 0 0 0 0 0 0 +-41.529 58.716 0.934 0 0 0 0 0 0 0 +-45.203 63.063 0.991 0 0 0 0 0 0 0 +-45.451 62.99 0.992 0 0 0 0 0 0 0 +-45.703 62.922 0.993 0 0 0 0 0 0 0 +-46.088 63.034 0.996 0 0 0 0 0 0 0 +-46.324 62.941 0.997 0 0 0 0 0 0 0 +-47.061 63.523 1.006 0 0 0 0 0 0 0 +-47.473 63.869 1.011 0 0 0 0 0 0 0 +-48.286 63.699 1.015 0 0 0 0 0 0 0 +-48.41 63.449 1.014 0 0 0 0 0 0 0 +-48.548 63.217 1.013 0 0 0 0 0 0 0 +-48.683 62.982 1.012 0 0 0 0 0 0 0 +-33.924 43.196 0.762 0 0 0 0 0 0 0 +-34.016 43.035 0.761 0 0 0 0 0 0 0 +-34.274 43.081 0.763 0 0 0 0 0 0 0 +-34.235 42.756 0.761 0 0 0 0 0 0 0 +-34.282 42.541 0.759 0 0 0 0 0 0 0 +-23.65 28.893 0.585 0 0 0 0 0 0 0 +-23.738 28.815 0.584 0 0 0 0 0 0 0 +-23.804 28.712 0.584 0 0 0 0 0 0 0 +-23.95 28.703 0.585 0 0 0 0 0 0 0 +-24.046 28.635 0.585 0 0 0 0 0 0 0 +-36.654 43.489 0.782 0 0 0 0 0 0 0 +-36.763 43.341 0.781 0 0 0 0 0 0 0 +-36.872 43.194 0.781 0 0 0 0 0 0 0 +-31.021 35.435 0.683 0 0 0 0 0 0 0 +-45.601 48.885 0.883 0 0 0 0 0 0 0 +-46.213 49.23 0.889 0 0 0 0 0 0 0 +-46.413 49.133 0.89 0 0 0 0 0 0 0 +-21.674 22.82 0.525 0 0 0 0 0 0 0 +-21.697 22.701 0.525 0 0 0 0 0 0 0 +-21.608 22.537 0.523 0 0 0 0 0 0 0 +-21.63 22.419 0.522 0 0 0 0 0 0 0 +-21.472 22.116 0.519 0 0 0 0 0 0 0 +-21.345 21.848 0.516 0 0 0 0 0 0 0 +-22.006 22.034 0.522 0 0 0 0 0 0 0 +-21.913 21.804 0.52 0 0 0 0 0 0 0 +-21.899 21.653 0.518 0 0 0 0 0 0 0 +-22.014 21.63 0.519 0 0 0 0 0 0 0 +-18.764 18.212 0.471 0 0 0 0 0 0 0 +-18.818 18.15 0.471 0 0 0 0 0 0 0 +-18.923 18.194 0.473 0 0 0 0 0 0 0 +-32.414 29.987 0.653 0 0 0 0 0 0 0 +-32.458 29.839 0.653 0 0 0 0 0 0 0 +-32.51 29.792 0.653 0 0 0 0 0 0 0 +-32.667 29.747 0.654 0 0 0 0 0 0 0 +-35.928 32.508 0.697 0 0 0 0 0 0 0 +-35.976 32.347 0.696 0 0 0 0 0 0 0 +-35.973 32.14 0.695 0 0 0 0 0 0 0 +-36.039 31.997 0.694 0 0 0 0 0 0 0 +-36.084 31.834 0.693 0 0 0 0 0 0 0 +-36.065 31.717 0.693 0 0 0 0 0 0 0 +-36.095 31.543 0.692 0 0 0 0 0 0 0 +-36.134 31.377 0.691 0 0 0 0 0 0 0 +-36.173 31.212 0.69 0 0 0 0 0 0 0 +-36.192 31.031 0.689 0 0 0 0 0 0 0 +-36.244 30.878 0.688 0 0 0 0 0 0 0 +-36.258 30.694 0.687 0 0 0 0 0 0 0 +-36.253 30.592 0.687 0 0 0 0 0 0 0 +-36.28 30.42 0.686 0 0 0 0 0 0 0 +-36.295 30.24 0.685 0 0 0 0 0 0 0 +-36.341 30.085 0.684 0 0 0 0 0 0 0 +-36.365 29.913 0.683 0 0 0 0 0 0 0 +-36.55 29.874 0.684 0 0 0 0 0 0 0 +-36.68 29.788 0.685 0 0 0 0 0 0 0 +-36.631 29.274 0.681 0 0 0 0 0 0 0 +-36.503 28.612 0.676 0 0 0 0 0 0 0 +-36.52 28.441 0.675 0 0 0 0 0 0 0 +-36.488 28.324 0.674 0 0 0 0 0 0 0 +-36.522 28.167 0.673 0 0 0 0 0 0 0 +-36.527 27.989 0.672 0 0 0 0 0 0 0 +-36.537 27.815 0.671 0 0 0 0 0 0 0 +-18.473 13.987 0.441 0 0 0 0 0 0 0 +-18.497 13.915 0.441 0 0 0 0 0 0 0 +-36.578 27.305 0.668 0 0 0 0 0 0 0 +-36.591 27.137 0.668 0 0 0 0 0 0 0 +-36.565 27.028 0.667 0 0 0 0 0 0 0 +-36.604 26.88 0.666 0 0 0 0 0 0 0 +-36.726 26.792 0.667 0 0 0 0 0 0 0 +-36.879 26.727 0.667 0 0 0 0 0 0 0 +-37.009 26.643 0.668 0 0 0 0 0 0 0 +-37.187 26.594 0.669 0 0 0 0 0 0 0 +-37.311 26.506 0.67 0 0 0 0 0 0 0 +-37.589 26.615 0.673 0 0 0 0 0 0 0 +-37.872 26.637 0.675 0 0 0 0 0 0 0 +-32.863 22.965 0.612 0 0 0 0 0 0 0 +-32.851 22.803 0.611 0 0 0 0 0 0 0 +-6.715 4.624 0.29 0 0 0 0 0 0 0 +-6.712 4.591 0.289 0 0 0 0 0 0 0 +-6.714 4.577 0.289 0 0 0 0 0 0 0 +-6.712 4.545 0.289 0 0 0 0 0 0 0 +-6.721 4.52 0.289 0 0 0 0 0 0 0 +-6.725 4.492 0.289 0 0 0 0 0 0 0 +-6.736 4.469 0.289 0 0 0 0 0 0 0 +-6.74 4.441 0.289 0 0 0 0 0 0 0 +-6.745 4.415 0.289 0 0 0 0 0 0 0 +-6.741 4.396 0.289 0 0 0 0 0 0 0 +-6.748 4.371 0.289 0 0 0 0 0 0 0 +-6.756 4.346 0.288 0 0 0 0 0 0 0 +-6.765 4.322 0.288 0 0 0 0 0 0 0 +-6.775 4.299 0.288 0 0 0 0 0 0 0 +-6.782 4.273 0.288 0 0 0 0 0 0 0 +-6.754 4.226 0.288 0 0 0 0 0 0 0 +-6.783 4.215 0.288 0 0 0 0 0 0 0 +-36.656 22.563 0.642 0 0 0 0 0 0 0 +-36.819 22.504 0.643 0 0 0 0 0 0 0 +-36.4 21.935 0.637 0 0 0 0 0 0 0 +-36.413 21.787 0.636 0 0 0 0 0 0 0 +-36.396 21.622 0.635 0 0 0 0 0 0 0 +-36.398 21.469 0.634 0 0 0 0 0 0 0 +-36.361 21.37 0.633 0 0 0 0 0 0 0 +-36.336 21.202 0.632 0 0 0 0 0 0 0 +-36.33 21.046 0.631 0 0 0 0 0 0 0 +-12.5 7.156 0.353 0 0 0 0 0 0 0 +-12.499 7.104 0.353 0 0 0 0 0 0 0 +-12.518 7.063 0.353 0 0 0 0 0 0 0 +-12.625 7.097 0.354 0 0 0 0 0 0 0 +-12.331 6.881 0.35 0 0 0 0 0 0 0 +-12.261 6.593 0.348 0 0 0 0 0 0 0 +-35.978 18.925 0.618 0 0 0 0 0 0 0 +-35.961 18.772 0.617 0 0 0 0 0 0 0 +-35.96 18.628 0.616 0 0 0 0 0 0 0 +-35.913 18.461 0.615 0 0 0 0 0 0 0 +-35.889 18.306 0.614 0 0 0 0 0 0 0 +-35.832 18.206 0.613 0 0 0 0 0 0 0 +-35.812 18.055 0.612 0 0 0 0 0 0 0 +-35.788 17.902 0.612 0 0 0 0 0 0 0 +-35.774 17.755 0.611 0 0 0 0 0 0 0 +-35.729 17.593 0.61 0 0 0 0 0 0 0 +-35.7 17.44 0.609 0 0 0 0 0 0 0 +-14.483 7.036 0.37 0 0 0 0 0 0 0 +-14.436 6.985 0.369 0 0 0 0 0 0 0 +-14.602 7.009 0.371 0 0 0 0 0 0 0 +-14.44 6.876 0.369 0 0 0 0 0 0 0 +-14.46 6.829 0.369 0 0 0 0 0 0 0 +-14.463 6.775 0.369 0 0 0 0 0 0 0 +-14.502 6.738 0.369 0 0 0 0 0 0 0 +-14.696 6.772 0.371 0 0 0 0 0 0 0 +-35.344 16.045 0.599 0 0 0 0 0 0 0 +-35.307 15.895 0.598 0 0 0 0 0 0 0 +-35.293 15.755 0.598 0 0 0 0 0 0 0 +-35.247 15.602 0.597 0 0 0 0 0 0 0 +-35.192 15.446 0.596 0 0 0 0 0 0 0 +-35.165 15.303 0.595 0 0 0 0 0 0 0 +-35.137 15.16 0.594 0 0 0 0 0 0 0 +-35.054 15.059 0.593 0 0 0 0 0 0 0 +-35.03 14.918 0.592 0 0 0 0 0 0 0 +-34.979 14.767 0.591 0 0 0 0 0 0 0 +-34.935 14.619 0.59 0 0 0 0 0 0 0 +-34.899 14.476 0.589 0 0 0 0 0 0 0 +-29.762 12.239 0.532 0 0 0 0 0 0 0 +-29.667 12.092 0.531 0 0 0 0 0 0 0 +-29.727 12.062 0.531 0 0 0 0 0 0 0 +-34.841 14.005 0.587 0 0 0 0 0 0 0 +-34.764 13.847 0.585 0 0 0 0 0 0 0 +-35.217 13.899 0.59 0 0 0 0 0 0 0 +-35.366 13.83 0.591 0 0 0 0 0 0 0 +-34.78 13.35 0.584 0 0 0 0 0 0 0 +-34.911 13.337 0.585 0 0 0 0 0 0 0 +-29.759 11.159 0.528 0 0 0 0 0 0 0 +-29.713 11.036 0.528 0 0 0 0 0 0 0 +-29.714 10.93 0.527 0 0 0 0 0 0 0 +-29.727 10.829 0.527 0 0 0 0 0 0 0 +-29.793 10.747 0.527 0 0 0 0 0 0 0 +-29.889 10.729 0.528 0 0 0 0 0 0 0 +-34.013 12.085 0.572 0 0 0 0 0 0 0 +-33.94 11.939 0.571 0 0 0 0 0 0 0 +-33.898 11.804 0.57 0 0 0 0 0 0 0 +-33.868 11.675 0.569 0 0 0 0 0 0 0 +-33.825 11.541 0.568 0 0 0 0 0 0 0 +-33.759 11.401 0.567 0 0 0 0 0 0 0 +-33.675 11.255 0.566 0 0 0 0 0 0 0 +-33.731 11.214 0.566 0 0 0 0 0 0 0 +-33.684 11.082 0.566 0 0 0 0 0 0 0 +-34.033 11.078 0.569 0 0 0 0 0 0 0 +-33.634 10.599 0.564 0 0 0 0 0 0 0 +-33.627 10.48 0.563 0 0 0 0 0 0 0 +-33.182 10.171 0.558 0 0 0 0 0 0 0 +-33.109 10.035 0.557 0 0 0 0 0 0 0 +-33.089 9.915 0.556 0 0 0 0 0 0 0 +-33.016 9.781 0.555 0 0 0 0 0 0 0 +-32.972 9.655 0.554 0 0 0 0 0 0 0 +-32.896 9.521 0.553 0 0 0 0 0 0 0 +-32.803 9.438 0.552 0 0 0 0 0 0 0 +-32.76 9.315 0.551 0 0 0 0 0 0 0 +-32.696 9.186 0.55 0 0 0 0 0 0 0 +-32.631 9.057 0.549 0 0 0 0 0 0 0 +-32.557 8.926 0.548 0 0 0 0 0 0 0 +-32.511 8.804 0.548 0 0 0 0 0 0 0 +-32.427 8.672 0.546 0 0 0 0 0 0 0 +-32.353 8.598 0.546 0 0 0 0 0 0 0 +-32.427 8.509 0.546 0 0 0 0 0 0 0 +-32.389 8.39 0.545 0 0 0 0 0 0 0 +-32.555 8.324 0.547 0 0 0 0 0 0 0 +-32.973 8.32 0.551 0 0 0 0 0 0 0 +-32.22 7.916 0.542 0 0 0 0 0 0 0 +-32.211 7.86 0.542 0 0 0 0 0 0 0 +-32.776 7.889 0.548 0 0 0 0 0 0 0 +-31.678 7.415 0.536 0 0 0 0 0 0 0 +-31.623 7.297 0.535 0 0 0 0 0 0 0 +-31.572 7.181 0.534 0 0 0 0 0 0 0 +-31.51 7.063 0.534 0 0 0 0 0 0 0 +-31.42 6.991 0.532 0 0 0 0 0 0 0 +-31.36 6.875 0.532 0 0 0 0 0 0 0 +-31.293 6.757 0.531 0 0 0 0 0 0 0 +-31.205 6.636 0.53 0 0 0 0 0 0 0 +-31.137 6.519 0.529 0 0 0 0 0 0 0 +-31.087 6.407 0.528 0 0 0 0 0 0 0 +-31.011 6.29 0.527 0 0 0 0 0 0 0 +-30.911 6.219 0.526 0 0 0 0 0 0 0 +-30.824 6.101 0.525 0 0 0 0 0 0 0 +-30.781 5.992 0.524 0 0 0 0 0 0 0 +-30.878 5.91 0.525 0 0 0 0 0 0 0 +-30.926 5.819 0.525 0 0 0 0 0 0 0 +-30.969 5.726 0.525 0 0 0 0 0 0 0 +-31.29 5.684 0.529 0 0 0 0 0 0 0 +-30.616 5.413 0.521 0 0 0 0 0 0 0 +-30.408 5.278 0.519 0 0 0 0 0 0 0 +-32.185 5.481 0.537 0 0 0 0 0 0 0 +-30.01 4.918 0.515 0 0 0 0 0 0 0 +-29.954 4.813 0.514 0 0 0 0 0 0 0 +-29.885 4.753 0.513 0 0 0 0 0 0 0 +-29.797 4.644 0.512 0 0 0 0 0 0 0 +-29.742 4.539 0.511 0 0 0 0 0 0 0 +-29.661 4.432 0.51 0 0 0 0 0 0 0 +-29.604 4.328 0.51 0 0 0 0 0 0 0 +-29.534 4.223 0.509 0 0 0 0 0 0 0 +-29.438 4.116 0.508 0 0 0 0 0 0 0 +-29.37 4.012 0.507 0 0 0 0 0 0 0 +-29.307 3.957 0.506 0 0 0 0 0 0 0 +-29.226 3.852 0.505 0 0 0 0 0 0 0 +-29.156 3.75 0.504 0 0 0 0 0 0 0 +-29.075 3.647 0.503 0 0 0 0 0 0 0 +-28.983 3.543 0.502 0 0 0 0 0 0 0 +-28.986 3.451 0.502 0 0 0 0 0 0 0 +-28.989 3.359 0.502 0 0 0 0 0 0 0 +-29.119 3.328 0.503 0 0 0 0 0 0 0 +-29.05 3.227 0.503 0 0 0 0 0 0 0 +-28.946 3.124 0.501 0 0 0 0 0 0 0 +-28.898 3.027 0.501 0 0 0 0 0 0 0 +-28.812 2.927 0.5 0 0 0 0 0 0 0 +-28.738 2.828 0.499 0 0 0 0 0 0 0 +-28.671 2.73 0.498 0 0 0 0 0 0 0 +-28.576 2.631 0.497 0 0 0 0 0 0 0 +-28.502 2.579 0.496 0 0 0 0 0 0 0 +-28.06 2.451 0.492 0 0 0 0 0 0 0 +-27.956 2.353 0.491 0 0 0 0 0 0 0 +-27.903 2.261 0.49 0 0 0 0 0 0 0 +-27.818 2.166 0.489 0 0 0 0 0 0 0 +-27.741 2.072 0.488 0 0 0 0 0 0 0 +-27.666 1.979 0.488 0 0 0 0 0 0 0 +-27.571 1.929 0.487 0 0 0 0 0 0 0 +-27.491 1.837 0.486 0 0 0 0 0 0 0 +-27.289 1.737 0.484 0 0 0 0 0 0 0 +-21.673 1.317 0.427 0 0 0 0 0 0 0 +-21.605 1.245 0.426 0 0 0 0 0 0 0 +-21.571 1.175 0.426 0 0 0 0 0 0 0 +-21.541 1.105 0.425 0 0 0 0 0 0 0 +-21.572 1.073 0.426 0 0 0 0 0 0 0 +-21.562 1.005 0.425 0 0 0 0 0 0 0 +-21.483 0.933 0.425 0 0 0 0 0 0 0 +-21.659 0.873 0.426 0 0 0 0 0 0 0 +-21.668 0.805 0.426 0 0 0 0 0 0 0 +-21.692 0.737 0.427 0 0 0 0 0 0 0 +-21.663 0.668 0.426 0 0 0 0 0 0 0 +-26.654 0.691 0.477 0 0 0 0 0 0 0 +-26.578 0.605 0.476 0 0 0 0 0 0 0 +-26.396 0.518 0.474 0 0 0 0 0 0 0 +-26.557 0.438 0.476 0 0 0 0 0 0 0 +-25.955 0.265 0.47 0 0 0 0 0 0 0 +-25.88 0.224 0.469 0 0 0 0 0 0 0 +-25.806 0.142 0.468 0 0 0 0 0 0 0 +-25.721 0.061 0.467 0 0 0 0 0 0 0 +-25.647 -0.019 0.466 0 0 0 0 0 0 0 +-25.561 -0.1 0.466 0 0 0 0 0 0 0 +-25.47 -0.179 0.465 0 0 0 0 0 0 0 +-25.395 -0.258 0.464 0 0 0 0 0 0 0 +-25.322 -0.337 0.463 0 0 0 0 0 0 0 +-25.242 -0.376 0.462 0 0 0 0 0 0 0 +-25.157 -0.453 0.461 0 0 0 0 0 0 0 +-25.087 -0.531 0.461 0 0 0 0 0 0 0 +-24.995 -0.607 0.46 0 0 0 0 0 0 0 +-24.911 -0.684 0.459 0 0 0 0 0 0 0 +-24.851 -0.76 0.458 0 0 0 0 0 0 0 +-24.745 -0.834 0.457 0 0 0 0 0 0 0 +-24.709 -0.872 0.457 0 0 0 0 0 0 0 +-24.76 -0.952 0.458 0 0 0 0 0 0 0 +-24.769 -1.03 0.458 0 0 0 0 0 0 0 +-24.998 -1.119 0.46 0 0 0 0 0 0 0 +-24.99 -1.197 0.46 0 0 0 0 0 0 0 +-25.166 -1.285 0.462 0 0 0 0 0 0 0 +-25.12 -1.362 0.461 0 0 0 0 0 0 0 +-24.359 -1.435 0.454 0 0 0 0 0 0 0 +-24.546 -1.523 0.456 0 0 0 0 0 0 0 +-24.786 -1.617 0.458 0 0 0 0 0 0 0 +-23.748 -1.698 0.448 0 0 0 0 0 0 0 +-23.681 -1.768 0.447 0 0 0 0 0 0 0 +-23.618 -1.8 0.447 0 0 0 0 0 0 0 +-23.541 -1.869 0.446 0 0 0 0 0 0 0 +-23.455 -1.936 0.445 0 0 0 0 0 0 0 +-19.713 -1.685 0.407 0 0 0 0 0 0 0 +-16.204 -1.432 0.372 0 0 0 0 0 0 0 +-16.184 -1.481 0.371 0 0 0 0 0 0 0 +-23.16 -2.205 0.442 0 0 0 0 0 0 0 +-16.054 -1.571 0.37 0 0 0 0 0 0 0 +-15.854 -1.627 0.368 0 0 0 0 0 0 0 +-15.869 -1.679 0.369 0 0 0 0 0 0 0 +-22.749 -2.49 0.439 0 0 0 0 0 0 0 +-22.737 -2.561 0.438 0 0 0 0 0 0 0 +-22.755 -2.635 0.439 0 0 0 0 0 0 0 +-22.748 -2.707 0.439 0 0 0 0 0 0 0 +-22.746 -2.779 0.439 0 0 0 0 0 0 0 +-22.769 -2.819 0.439 0 0 0 0 0 0 0 +-22.772 -2.892 0.439 0 0 0 0 0 0 0 +-22.775 -2.965 0.439 0 0 0 0 0 0 0 +-22.779 -3.038 0.439 0 0 0 0 0 0 0 +-22.766 -3.109 0.439 0 0 0 0 0 0 0 +-22.764 -3.182 0.44 0 0 0 0 0 0 0 +-22.753 -3.253 0.44 0 0 0 0 0 0 0 +-23.025 -3.329 0.442 0 0 0 0 0 0 0 +-22.795 -3.369 0.44 0 0 0 0 0 0 0 +-22.729 -3.432 0.44 0 0 0 0 0 0 0 +-22.697 -3.5 0.439 0 0 0 0 0 0 0 +-22.553 -3.55 0.438 0 0 0 0 0 0 0 +-22.5 -3.615 0.438 0 0 0 0 0 0 0 +-22.406 -3.672 0.437 0 0 0 0 0 0 0 +-22.347 -3.698 0.436 0 0 0 0 0 0 0 +-22.27 -3.757 0.435 0 0 0 0 0 0 0 +-21.103 -3.627 0.424 0 0 0 0 0 0 0 +-21.049 -3.686 0.423 0 0 0 0 0 0 0 +-20.974 -3.74 0.423 0 0 0 0 0 0 0 +-20.899 -3.795 0.422 0 0 0 0 0 0 0 +-20.834 -3.851 0.421 0 0 0 0 0 0 0 +-20.771 -3.873 0.421 0 0 0 0 0 0 0 +-20.69 -3.925 0.42 0 0 0 0 0 0 0 +-20.621 -3.979 0.419 0 0 0 0 0 0 0 +-20.551 -4.032 0.419 0 0 0 0 0 0 0 +-20.481 -4.085 0.418 0 0 0 0 0 0 0 +-20.386 -4.133 0.417 0 0 0 0 0 0 0 +-20.314 -4.185 0.417 0 0 0 0 0 0 0 +-20.252 -4.238 0.416 0 0 0 0 0 0 0 +-20.177 -4.255 0.416 0 0 0 0 0 0 0 +-20.111 -4.307 0.415 0 0 0 0 0 0 0 +-20.035 -4.357 0.414 0 0 0 0 0 0 0 +-19.966 -4.408 0.414 0 0 0 0 0 0 0 +-19.888 -4.456 0.413 0 0 0 0 0 0 0 +-19.813 -4.505 0.413 0 0 0 0 0 0 0 +-19.733 -4.551 0.412 0 0 0 0 0 0 0 +-19.646 -4.564 0.411 0 0 0 0 0 0 0 +-19.604 -4.619 0.411 0 0 0 0 0 0 0 +-19.63 -4.69 0.411 0 0 0 0 0 0 0 +-19.658 -4.762 0.412 0 0 0 0 0 0 0 +-19.634 -4.822 0.412 0 0 0 0 0 0 0 +-19.867 -4.946 0.414 0 0 0 0 0 0 0 +-19.886 -5.017 0.415 0 0 0 0 0 0 0 +-19.87 -5.046 0.414 0 0 0 0 0 0 0 +-19.818 -5.099 0.414 0 0 0 0 0 0 0 +-19.223 -5.074 0.408 0 0 0 0 0 0 0 +-19.143 -5.117 0.407 0 0 0 0 0 0 0 +-19.339 -5.235 0.41 0 0 0 0 0 0 0 +-19.475 -5.338 0.411 0 0 0 0 0 0 0 +-19.414 -5.354 0.411 0 0 0 0 0 0 0 +-18.524 -5.233 0.402 0 0 0 0 0 0 0 +-18.475 -5.282 0.401 0 0 0 0 0 0 0 +-18.401 -5.323 0.401 0 0 0 0 0 0 0 +-18.355 -5.372 0.401 0 0 0 0 0 0 0 +-18.279 -5.412 0.4 0 0 0 0 0 0 0 +-18.216 -5.425 0.399 0 0 0 0 0 0 0 +-18.15 -5.467 0.399 0 0 0 0 0 0 0 +-18.079 -5.508 0.398 0 0 0 0 0 0 0 +-18.004 -5.547 0.398 0 0 0 0 0 0 0 +-17.939 -5.588 0.397 0 0 0 0 0 0 0 +-17.877 -5.631 0.397 0 0 0 0 0 0 0 +-17.789 -5.664 0.396 0 0 0 0 0 0 0 +-17.746 -5.681 0.396 0 0 0 0 0 0 0 +-17.675 -5.719 0.395 0 0 0 0 0 0 0 +-17.596 -5.755 0.394 0 0 0 0 0 0 0 +-17.54 -5.798 0.394 0 0 0 0 0 0 0 +-17.478 -5.838 0.393 0 0 0 0 0 0 0 +-17.397 -5.872 0.393 0 0 0 0 0 0 0 +-17.344 -5.915 0.392 0 0 0 0 0 0 0 +-17.273 -5.92 0.392 0 0 0 0 0 0 0 +-17.201 -5.956 0.391 0 0 0 0 0 0 0 +-17.152 -6 0.391 0 0 0 0 0 0 0 +-17.05 -6.024 0.39 0 0 0 0 0 0 0 +-16.888 -6.026 0.388 0 0 0 0 0 0 0 +-16.788 -6.05 0.388 0 0 0 0 0 0 0 +-16.869 -6.139 0.389 0 0 0 0 0 0 0 +-16.812 -6.178 0.388 0 0 0 0 0 0 0 +-16.757 -6.188 0.388 0 0 0 0 0 0 0 +-16.693 -6.224 0.387 0 0 0 0 0 0 0 +-16.626 -6.259 0.387 0 0 0 0 0 0 0 +-16.554 -6.291 0.386 0 0 0 0 0 0 0 +-16.488 -6.325 0.386 0 0 0 0 0 0 0 +-16.421 -6.358 0.385 0 0 0 0 0 0 0 +-16.353 -6.391 0.385 0 0 0 0 0 0 0 +-16.303 -6.401 0.384 0 0 0 0 0 0 0 +-16.242 -6.436 0.384 0 0 0 0 0 0 0 +-16.185 -6.472 0.383 0 0 0 0 0 0 0 +-16.122 -6.506 0.383 0 0 0 0 0 0 0 +-16.057 -6.538 0.382 0 0 0 0 0 0 0 +-16.035 -6.588 0.382 0 0 0 0 0 0 0 +-16.038 -6.648 0.383 0 0 0 0 0 0 0 +-16.096 -6.702 0.383 0 0 0 0 0 0 0 +-15.938 -6.695 0.382 0 0 0 0 0 0 0 +-15.864 -6.722 0.381 0 0 0 0 0 0 0 +-15.456 -6.606 0.377 0 0 0 0 0 0 0 +-15.597 -6.725 0.379 0 0 0 0 0 0 0 +-16.107 -7.157 0.385 0 0 0 0 0 0 0 +-16.117 -7.222 0.386 0 0 0 0 0 0 0 +-16.123 -7.286 0.386 0 0 0 0 0 0 0 +-16.12 -7.346 0.386 0 0 0 0 0 0 0 +-16.134 -7.413 0.387 0 0 0 0 0 0 0 +-16.139 -7.477 0.387 0 0 0 0 0 0 0 +-16.151 -7.513 0.387 0 0 0 0 0 0 0 +-16.167 -7.583 0.388 0 0 0 0 0 0 0 +-16.172 -7.647 0.388 0 0 0 0 0 0 0 +-16.164 -7.706 0.388 0 0 0 0 0 0 0 +-16.172 -7.772 0.389 0 0 0 0 0 0 0 +-16.186 -7.841 0.389 0 0 0 0 0 0 0 +-16.161 -7.892 0.389 0 0 0 0 0 0 0 +-16.333 -8.009 0.391 0 0 0 0 0 0 0 +-16.509 -8.159 0.393 0 0 0 0 0 0 0 +-16.521 -8.23 0.394 0 0 0 0 0 0 0 +-16.529 -8.299 0.394 0 0 0 0 0 0 0 +-16.563 -8.382 0.395 0 0 0 0 0 0 0 +-16.523 -8.492 0.395 0 0 0 0 0 0 0 +-16.504 -8.515 0.395 0 0 0 0 0 0 0 +-16.528 -8.594 0.396 0 0 0 0 0 0 0 +-16.5 -8.645 0.395 0 0 0 0 0 0 0 +-16.637 -8.784 0.397 0 0 0 0 0 0 0 +-16.759 -8.916 0.399 0 0 0 0 0 0 0 +-16.858 -9.037 0.401 0 0 0 0 0 0 0 +-16.593 -9.063 0.398 0 0 0 0 0 0 0 +-16.57 -9.118 0.398 0 0 0 0 0 0 0 +-16.498 -9.146 0.398 0 0 0 0 0 0 0 +-16.415 -9.167 0.397 0 0 0 0 0 0 0 +-16.36 -9.204 0.397 0 0 0 0 0 0 0 +-16.355 -9.269 0.397 0 0 0 0 0 0 0 +-16.386 -9.321 0.398 0 0 0 0 0 0 0 +-16.403 -9.399 0.398 0 0 0 0 0 0 0 +-16.401 -9.467 0.399 0 0 0 0 0 0 0 +-16.408 -9.539 0.399 0 0 0 0 0 0 0 +-16.422 -9.617 0.4 0 0 0 0 0 0 0 +-16.435 -9.694 0.4 0 0 0 0 0 0 0 +-16.444 -9.769 0.401 0 0 0 0 0 0 0 +-16.454 -9.845 0.401 0 0 0 0 0 0 0 +-16.463 -9.886 0.401 0 0 0 0 0 0 0 +-16.473 -9.962 0.402 0 0 0 0 0 0 0 +-16.488 -10.042 0.402 0 0 0 0 0 0 0 +-16.485 -10.112 0.403 0 0 0 0 0 0 0 +-16.489 -10.186 0.403 0 0 0 0 0 0 0 +-16.504 -10.267 0.404 0 0 0 0 0 0 0 +-16.506 -10.34 0.404 0 0 0 0 0 0 0 +-16.523 -10.387 0.404 0 0 0 0 0 0 0 +-16.538 -10.469 0.405 0 0 0 0 0 0 0 +-16.505 -10.521 0.405 0 0 0 0 0 0 0 +-16.674 -10.703 0.407 0 0 0 0 0 0 0 +-16.94 -10.95 0.411 0 0 0 0 0 0 0 +-16.887 -10.991 0.411 0 0 0 0 0 0 0 +-16.834 -11.145 0.411 0 0 0 0 0 0 0 +-16.812 -11.207 0.411 0 0 0 0 0 0 0 +-16.661 -11.182 0.41 0 0 0 0 0 0 0 +-17.021 -11.502 0.415 0 0 0 0 0 0 0 +-17.117 -11.646 0.416 0 0 0 0 0 0 0 +-16.931 -11.715 0.415 0 0 0 0 0 0 0 +-16.886 -11.762 0.415 0 0 0 0 0 0 0 +-16.833 -11.804 0.415 0 0 0 0 0 0 0 +-16.765 -11.835 0.415 0 0 0 0 0 0 0 +-16.693 -11.863 0.414 0 0 0 0 0 0 0 +-16.679 -11.931 0.414 0 0 0 0 0 0 0 +-16.718 -12 0.415 0 0 0 0 0 0 0 +-16.737 -12.093 0.416 0 0 0 0 0 0 0 +-16.738 -12.174 0.416 0 0 0 0 0 0 0 +-16.759 -12.27 0.417 0 0 0 0 0 0 0 +-16.759 -12.351 0.418 0 0 0 0 0 0 0 +-16.772 -12.442 0.418 0 0 0 0 0 0 0 +-16.779 -12.53 0.419 0 0 0 0 0 0 0 +-16.799 -12.586 0.419 0 0 0 0 0 0 0 +-16.806 -12.674 0.42 0 0 0 0 0 0 0 +-16.817 -12.765 0.421 0 0 0 0 0 0 0 +-16.837 -12.864 0.421 0 0 0 0 0 0 0 +-16.831 -12.944 0.422 0 0 0 0 0 0 0 +-16.846 -13.04 0.423 0 0 0 0 0 0 0 +-16.836 -13.117 0.423 0 0 0 0 0 0 0 +-16.846 -13.167 0.423 0 0 0 0 0 0 0 +-17.055 -13.418 0.427 0 0 0 0 0 0 0 +-17.521 -13.874 0.433 0 0 0 0 0 0 0 +-17.218 -13.811 0.43 0 0 0 0 0 0 0 +-17.151 -13.846 0.43 0 0 0 0 0 0 0 +-17.314 -14.068 0.433 0 0 0 0 0 0 0 +-17.516 -14.324 0.436 0 0 0 0 0 0 0 +-17.556 -14.404 0.437 0 0 0 0 0 0 0 +-17.327 -14.398 0.435 0 0 0 0 0 0 0 +-17.231 -14.41 0.434 0 0 0 0 0 0 0 +-17.177 -14.457 0.434 0 0 0 0 0 0 0 +-17.104 -14.487 0.434 0 0 0 0 0 0 0 +-17.025 -14.512 0.433 0 0 0 0 0 0 0 +-17.034 -14.566 0.434 0 0 0 0 0 0 0 +-17.056 -14.679 0.435 0 0 0 0 0 0 0 +-17.08 -14.792 0.436 0 0 0 0 0 0 0 +-17.08 -14.887 0.436 0 0 0 0 0 0 0 +-17.091 -14.992 0.437 0 0 0 0 0 0 0 +-17.1 -15.095 0.438 0 0 0 0 0 0 0 +-17.104 -15.195 0.438 0 0 0 0 0 0 0 +-17.134 -15.27 0.439 0 0 0 0 0 0 0 +-17.149 -15.38 0.44 0 0 0 0 0 0 0 +-17.155 -15.483 0.441 0 0 0 0 0 0 0 +-17.17 -15.595 0.442 0 0 0 0 0 0 0 +-17.177 -15.7 0.442 0 0 0 0 0 0 0 +-17.186 -15.808 0.443 0 0 0 0 0 0 0 +-17.351 -16.06 0.446 0 0 0 0 0 0 0 +-17.505 -16.461 0.45 0 0 0 0 0 0 0 +-17.64 -16.693 0.453 0 0 0 0 0 0 0 +-17.676 -16.833 0.454 0 0 0 0 0 0 0 +-17.858 -17.114 0.457 0 0 0 0 0 0 0 +-17.612 -17.038 0.455 0 0 0 0 0 0 0 +-17.553 -17.088 0.455 0 0 0 0 0 0 0 +-17.496 -17.14 0.455 0 0 0 0 0 0 0 +-17.404 -17.157 0.454 0 0 0 0 0 0 0 +-17.353 -17.214 0.454 0 0 0 0 0 0 0 +-17.378 -17.348 0.455 0 0 0 0 0 0 0 +-17.403 -17.483 0.457 0 0 0 0 0 0 0 +-17.434 -17.569 0.457 0 0 0 0 0 0 0 +-17.448 -17.695 0.458 0 0 0 0 0 0 0 +-17.46 -17.818 0.459 0 0 0 0 0 0 0 +-17.464 -17.935 0.46 0 0 0 0 0 0 0 +-17.482 -18.067 0.461 0 0 0 0 0 0 0 +-17.503 -18.203 0.462 0 0 0 0 0 0 0 +-17.504 -18.318 0.463 0 0 0 0 0 0 0 +-17.549 -18.424 0.464 0 0 0 0 0 0 0 +-17.563 -18.555 0.465 0 0 0 0 0 0 0 +-18.001 -19.139 0.473 0 0 0 0 0 0 0 +-24.625 -26.362 0.572 0 0 0 0 0 0 0 +-24.634 -26.537 0.573 0 0 0 0 0 0 0 +-24.627 -26.698 0.574 0 0 0 0 0 0 0 +-24.63 -26.87 0.576 0 0 0 0 0 0 0 +-24.665 -27.079 0.577 0 0 0 0 0 0 0 +-24.692 -27.195 0.578 0 0 0 0 0 0 0 +-24.734 -27.413 0.58 0 0 0 0 0 0 0 +-24.75 -27.605 0.582 0 0 0 0 0 0 0 +-24.772 -27.806 0.584 0 0 0 0 0 0 0 +-24.782 -27.993 0.585 0 0 0 0 0 0 0 +-24.812 -28.206 0.587 0 0 0 0 0 0 0 +-24.824 -28.398 0.588 0 0 0 0 0 0 0 +-24.843 -28.511 0.589 0 0 0 0 0 0 0 +-24.93 -28.793 0.592 0 0 0 0 0 0 0 +-24.946 -28.996 0.594 0 0 0 0 0 0 0 +-24.977 -29.217 0.596 0 0 0 0 0 0 0 +-24.963 -29.387 0.597 0 0 0 0 0 0 0 +-25.31 -29.986 0.604 0 0 0 0 0 0 0 +-25.221 -30.072 0.604 0 0 0 0 0 0 0 +-25.433 -30.617 0.609 0 0 0 0 0 0 0 +-25.302 -30.655 0.609 0 0 0 0 0 0 0 +-25.192 -30.717 0.609 0 0 0 0 0 0 0 +-25.18 -30.9 0.61 0 0 0 0 0 0 0 +-25.199 -31.124 0.612 0 0 0 0 0 0 0 +-25.217 -31.346 0.614 0 0 0 0 0 0 0 +-25.305 -31.557 0.616 0 0 0 0 0 0 0 +-25.323 -31.784 0.618 0 0 0 0 0 0 0 +-25.353 -32.028 0.62 0 0 0 0 0 0 0 +-25.335 -32.213 0.621 0 0 0 0 0 0 0 +-25.606 -32.77 0.627 0 0 0 0 0 0 0 +-25.756 -33.393 0.633 0 0 0 0 0 0 0 +-25.653 -33.366 0.633 0 0 0 0 0 0 0 +-25.534 -33.429 0.632 0 0 0 0 0 0 0 +-25.566 -33.69 0.635 0 0 0 0 0 0 0 +-25.58 -33.93 0.637 0 0 0 0 0 0 0 +-25.611 -34.194 0.639 0 0 0 0 0 0 0 +-25.634 -34.449 0.641 0 0 0 0 0 0 0 +-25.657 -34.708 0.643 0 0 0 0 0 0 0 +-25.759 -34.961 0.646 0 0 0 0 0 0 0 +-25.973 -35.484 0.652 0 0 0 0 0 0 0 +-26.177 -36.001 0.657 0 0 0 0 0 0 0 +-26.049 -36.062 0.657 0 0 0 0 0 0 0 +-25.919 -36.121 0.656 0 0 0 0 0 0 0 +-25.838 -36.248 0.657 0 0 0 0 0 0 0 +-25.889 -36.562 0.66 0 0 0 0 0 0 0 +-25.973 -36.804 0.662 0 0 0 0 0 0 0 +-26.021 -37.119 0.665 0 0 0 0 0 0 0 +-25.97 -37.295 0.666 0 0 0 0 0 0 0 +-26.081 -37.707 0.67 0 0 0 0 0 0 0 +-26.097 -37.985 0.673 0 0 0 0 0 0 0 +-26.124 -38.281 0.676 0 0 0 0 0 0 0 +-26.227 -38.693 0.68 0 0 0 0 0 0 0 +-26.466 -39.178 0.685 0 0 0 0 0 0 0 +-26.501 -39.497 0.688 0 0 0 0 0 0 0 +-26.444 -39.682 0.689 0 0 0 0 0 0 0 +-26.342 -39.8 0.689 0 0 0 0 0 0 0 +-26.405 -40.168 0.693 0 0 0 0 0 0 0 +-26.417 -40.463 0.695 0 0 0 0 0 0 0 +-26.467 -40.82 0.699 0 0 0 0 0 0 0 +-26.552 -41.092 0.702 0 0 0 0 0 0 0 +-26.806 -41.773 0.709 0 0 0 0 0 0 0 +-26.961 -42.307 0.714 0 0 0 0 0 0 0 +-26.835 -42.403 0.714 0 0 0 0 0 0 0 +-26.682 -42.455 0.714 0 0 0 0 0 0 0 +-26.712 -42.802 0.717 0 0 0 0 0 0 0 +-26.768 -43.193 0.721 0 0 0 0 0 0 0 +-26.861 -43.496 0.724 0 0 0 0 0 0 0 +-26.872 -43.822 0.727 0 0 0 0 0 0 0 +-27.13 -44.556 0.734 0 0 0 0 0 0 0 +-27.192 -44.976 0.738 0 0 0 0 0 0 0 +-27.089 -45.125 0.739 0 0 0 0 0 0 0 +-27.049 -45.382 0.741 0 0 0 0 0 0 0 +-27.091 -45.778 0.745 0 0 0 0 0 0 0 +-27.168 -46.074 0.748 0 0 0 0 0 0 0 +-27.951 -47.745 0.766 0 0 0 0 0 0 0 +-27.807 -47.843 0.766 0 0 0 0 0 0 0 +-27.656 -47.931 0.766 0 0 0 0 0 0 0 +-27.512 -48.028 0.766 0 0 0 0 0 0 0 +-27.409 -48.199 0.767 0 0 0 0 0 0 0 +-27.473 -48.668 0.772 0 0 0 0 0 0 0 +-27.581 -49.039 0.776 0 0 0 0 0 0 0 +-28.076 -50.289 0.789 0 0 0 0 0 0 0 +-27.885 -50.317 0.788 0 0 0 0 0 0 0 +-27.729 -50.41 0.789 0 0 0 0 0 0 0 +-27.778 -50.876 0.793 0 0 0 0 0 0 0 +-27.836 -51.366 0.798 0 0 0 0 0 0 0 +-27.864 -51.805 0.802 0 0 0 0 0 0 0 +-15.838 -29.647 0.547 0 0 0 0 0 0 0 +-15.777 -29.643 0.547 0 0 0 0 0 0 0 +-15.675 -29.677 0.546 0 0 0 0 0 0 0 +-15.56 -29.683 0.546 0 0 0 0 0 0 0 +-15.45 -29.7 0.546 0 0 0 0 0 0 0 +-28.534 -55.755 0.84 0 0 0 0 0 0 0 +-28.375 -55.877 0.84 0 0 0 0 0 0 0 +-28.525 -56.393 0.846 0 0 0 0 0 0 0 +-28.569 -56.922 0.851 0 0 0 0 0 0 0 +-28.62 -57.475 0.856 0 0 0 0 0 0 0 +-28.708 -58.108 0.862 0 0 0 0 0 0 0 +-29.07 -59.31 0.875 0 0 0 0 0 0 0 +-28.889 -59.413 0.875 0 0 0 0 0 0 0 +-28.895 -59.904 0.879 0 0 0 0 0 0 0 +-29.065 -60.499 0.885 0 0 0 0 0 0 0 +-29.349 -62.087 0.901 0 0 0 0 0 0 0 +-29.277 -62.444 0.904 0 0 0 0 0 0 0 +-16.85 -36.207 0.611 0 0 0 0 0 0 0 +-16.748 -36.286 0.611 0 0 0 0 0 0 0 +-16.784 -36.667 0.615 0 0 0 0 0 0 0 +-29.704 -65.212 0.931 0 0 0 0 0 0 0 +-29.658 -65.659 0.935 0 0 0 0 0 0 0 +-30.175 -67.367 0.953 0 0 0 0 0 0 0 +-29.953 -67.439 0.953 0 0 0 0 0 0 0 +-29.878 -67.844 0.956 0 0 0 0 0 0 0 +-29.65 -67.903 0.956 0 0 0 0 0 0 0 +-15.885 -36.663 0.611 0 0 0 0 0 0 0 +-30.389 -70.502 0.983 0 0 0 0 0 0 0 +-30.432 -71.217 0.99 0 0 0 0 0 0 0 +-30.793 -72.695 1.005 0 0 0 0 0 0 0 +-30.633 -72.956 1.007 0 0 0 0 0 0 0 +-15.208 -36.507 0.607 0 0 0 0 0 0 0 +-15.121 -36.621 0.608 0 0 0 0 0 0 0 +-14.923 -36.465 0.605 0 0 0 0 0 0 0 +-20.411 -50.127 0.754 0 0 0 0 0 0 0 +-14.933 -36.987 0.61 0 0 0 0 0 0 0 +-16.452 -42.88 0.671 0 0 0 0 0 0 0 +-16.336 -42.98 0.672 0 0 0 0 0 0 0 +-19.179 -50.955 0.757 0 0 0 0 0 0 0 +-17.009 -46.966 0.712 0 0 0 0 0 0 0 +-16.918 -46.944 0.711 0 0 0 0 0 0 0 +-16.754 -46.952 0.711 0 0 0 0 0 0 0 +-16.583 -46.936 0.71 0 0 0 0 0 0 0 +-16.365 -47.751 0.717 0 0 0 0 0 0 0 +-16.21 -47.787 0.717 0 0 0 0 0 0 0 +-16.136 -47.814 0.717 0 0 0 0 0 0 0 +-15.91 -47.637 0.715 0 0 0 0 0 0 0 +-15.797 -47.801 0.716 0 0 0 0 0 0 0 +-15.644 -47.841 0.716 0 0 0 0 0 0 0 +-15.511 -47.943 0.716 0 0 0 0 0 0 0 +-18.784 -58.707 0.83 0 0 0 0 0 0 0 +-19.318 -61.374 0.857 0 0 0 0 0 0 0 +-19.122 -61.427 0.857 0 0 0 0 0 0 0 +-20.362 -66.894 0.914 0 0 0 0 0 0 0 +-19.924 -68.137 0.924 0 0 0 0 0 0 0 +-0.504 -30.856 0.519 0 0 0 0 0 0 0 +-0.408 -30.874 0.519 0 0 0 0 0 0 0 +-0.311 -30.855 0.519 0 0 0 0 0 0 0 +-0.214 -30.916 0.52 0 0 0 0 0 0 0 +-0.117 -30.974 0.52 0 0 0 0 0 0 0 +-0.017 -42.02 0.632 0 0 0 0 0 0 0 +0.115 -42.038 0.632 0 0 0 0 0 0 0 +0.181 -42.071 0.632 0 0 0 0 0 0 0 +0.313 -42.087 0.633 0 0 0 0 0 0 0 +0.446 -42.111 0.633 0 0 0 0 0 0 0 +0.578 -42.13 0.633 0 0 0 0 0 0 0 +0.711 -42.158 0.633 0 0 0 0 0 0 0 +0.844 -42.169 0.633 0 0 0 0 0 0 0 +0.977 -42.177 0.634 0 0 0 0 0 0 0 +1.044 -42.205 0.634 0 0 0 0 0 0 0 +1.177 -42.217 0.634 0 0 0 0 0 0 0 +1.31 -42.244 0.634 0 0 0 0 0 0 0 +1.442 -42.221 0.634 0 0 0 0 0 0 0 +1.576 -42.248 0.634 0 0 0 0 0 0 0 +1.71 -42.265 0.635 0 0 0 0 0 0 0 +1.844 -42.284 0.635 0 0 0 0 0 0 0 +1.912 -42.317 0.635 0 0 0 0 0 0 0 +2.045 -42.326 0.635 0 0 0 0 0 0 0 +2.18 -42.356 0.636 0 0 0 0 0 0 0 +2.313 -42.353 0.636 0 0 0 0 0 0 0 +2.449 -42.383 0.636 0 0 0 0 0 0 0 +2.582 -42.373 0.636 0 0 0 0 0 0 0 +3.125 -48.699 0.7 0 0 0 0 0 0 0 +3.207 -48.79 0.701 0 0 0 0 0 0 0 +3.861 -55.99 0.774 0 0 0 0 0 0 0 +4.014 -55.653 0.771 0 0 0 0 0 0 0 +3.954 -52.545 0.74 0 0 0 0 0 0 0 +4.106 -52.371 0.738 0 0 0 0 0 0 0 +4.273 -52.389 0.738 0 0 0 0 0 0 0 +4.42 -52.166 0.736 0 0 0 0 0 0 0 +3.99 -46.264 0.676 0 0 0 0 0 0 0 +4.109 -45.952 0.673 0 0 0 0 0 0 0 +4.254 -45.953 0.674 0 0 0 0 0 0 0 +4.391 -45.858 0.673 0 0 0 0 0 0 0 +4.529 -45.784 0.672 0 0 0 0 0 0 0 +4.676 -45.804 0.672 0 0 0 0 0 0 0 +4.818 -45.765 0.672 0 0 0 0 0 0 0 +4.977 -45.893 0.674 0 0 0 0 0 0 0 +5.122 -46.545 0.68 0 0 0 0 0 0 0 +5.258 -46.443 0.679 0 0 0 0 0 0 0 +5.402 -46.404 0.679 0 0 0 0 0 0 0 +5.367 -44.888 0.664 0 0 0 0 0 0 0 +5.446 -44.369 0.659 0 0 0 0 0 0 0 +5.571 -44.234 0.658 0 0 0 0 0 0 0 +5.71 -44.221 0.658 0 0 0 0 0 0 0 +5.604 -42.869 0.644 0 0 0 0 0 0 0 +5.673 -42.364 0.639 0 0 0 0 0 0 0 +5.773 -42.108 0.637 0 0 0 0 0 0 0 +5.906 -42.096 0.637 0 0 0 0 0 0 0 +5.811 -40.497 0.621 0 0 0 0 0 0 0 +5.904 -40.249 0.618 0 0 0 0 0 0 0 +5.955 -40.157 0.617 0 0 0 0 0 0 0 +6.077 -40.11 0.617 0 0 0 0 0 0 0 +6.212 -40.15 0.618 0 0 0 0 0 0 0 +6.353 -40.227 0.619 0 0 0 0 0 0 0 +6.31 -36.949 0.586 0 0 0 0 0 0 0 +6.323 -36.679 0.583 0 0 0 0 0 0 0 +6.427 -36.594 0.583 0 0 0 0 0 0 0 +6.51 -36.393 0.581 0 0 0 0 0 0 0 +6.562 -36.032 0.577 0 0 0 0 0 0 0 +4.244 -22.948 0.443 0 0 0 0 0 0 0 +4.309 -22.895 0.443 0 0 0 0 0 0 0 +4.375 -22.854 0.442 0 0 0 0 0 0 0 +4.424 -22.912 0.443 0 0 0 0 0 0 0 +4.616 -23.508 0.449 0 0 0 0 0 0 0 +4.697 -23.151 0.446 0 0 0 0 0 0 0 +4.759 -23.087 0.445 0 0 0 0 0 0 0 +4.839 -23.106 0.446 0 0 0 0 0 0 0 +7.002 -32.863 0.547 0 0 0 0 0 0 0 +7.056 -32.865 0.547 0 0 0 0 0 0 0 +7.166 -32.872 0.547 0 0 0 0 0 0 0 +7.264 -32.828 0.547 0 0 0 0 0 0 0 +7.103 -31.631 0.535 0 0 0 0 0 0 0 +7.16 -31.427 0.533 0 0 0 0 0 0 0 +7.201 -31.153 0.53 0 0 0 0 0 0 0 +7.242 -30.889 0.528 0 0 0 0 0 0 0 +7.234 -30.638 0.525 0 0 0 0 0 0 0 +7.271 -30.368 0.523 0 0 0 0 0 0 0 +7.307 -30.104 0.52 0 0 0 0 0 0 0 +7.363 -29.926 0.519 0 0 0 0 0 0 0 +7.455 -29.895 0.519 0 0 0 0 0 0 0 +7.565 -29.931 0.519 0 0 0 0 0 0 0 +7.653 -29.886 0.519 0 0 0 0 0 0 0 +7.684 -29.43 0.515 0 0 0 0 0 0 0 +7.514 -28.418 0.504 0 0 0 0 0 0 0 +7.553 -28.207 0.502 0 0 0 0 0 0 0 +7.595 -28.013 0.501 0 0 0 0 0 0 0 +7.623 -27.771 0.498 0 0 0 0 0 0 0 +7.663 -27.578 0.496 0 0 0 0 0 0 0 +7.648 -27.356 0.494 0 0 0 0 0 0 0 +7.684 -27.156 0.492 0 0 0 0 0 0 0 +7.708 -26.919 0.49 0 0 0 0 0 0 0 +7.742 -26.72 0.488 0 0 0 0 0 0 0 +7.838 -26.739 0.489 0 0 0 0 0 0 0 +7.921 -26.711 0.489 0 0 0 0 0 0 0 +8.01 -26.703 0.489 0 0 0 0 0 0 0 +8.056 -26.704 0.489 0 0 0 0 0 0 0 +8.041 -26.353 0.486 0 0 0 0 0 0 0 +7.883 -25.552 0.477 0 0 0 0 0 0 0 +7.913 -25.365 0.476 0 0 0 0 0 0 0 +7.95 -25.207 0.474 0 0 0 0 0 0 0 +7.982 -25.033 0.473 0 0 0 0 0 0 0 +7.999 -24.819 0.471 0 0 0 0 0 0 0 +7.991 -24.662 0.469 0 0 0 0 0 0 0 +8.028 -24.512 0.468 0 0 0 0 0 0 0 +8.044 -24.302 0.466 0 0 0 0 0 0 0 +8.088 -24.182 0.465 0 0 0 0 0 0 0 +8.175 -24.191 0.465 0 0 0 0 0 0 0 +8.26 -24.189 0.466 0 0 0 0 0 0 0 +8.331 -24.148 0.465 0 0 0 0 0 0 0 +8.355 -24.095 0.465 0 0 0 0 0 0 0 +3.718 -10.554 0.32 0 0 0 0 0 0 0 +3.738 -10.504 0.32 0 0 0 0 0 0 0 +3.78 -10.517 0.32 0 0 0 0 0 0 0 +8.265 -22.682 0.451 0 0 0 0 0 0 0 +8.296 -22.549 0.45 0 0 0 0 0 0 0 +8.282 -22.403 0.449 0 0 0 0 0 0 0 +8.308 -22.259 0.447 0 0 0 0 0 0 0 +8.247 -21.885 0.444 0 0 0 0 0 0 0 +8.34 -21.924 0.444 0 0 0 0 0 0 0 +8.263 -21.517 0.44 0 0 0 0 0 0 0 +8.283 -21.37 0.439 0 0 0 0 0 0 0 +8.308 -21.237 0.438 0 0 0 0 0 0 0 +8.293 -21.1 0.436 0 0 0 0 0 0 0 +8.303 -20.934 0.435 0 0 0 0 0 0 0 +8.342 -20.841 0.434 0 0 0 0 0 0 0 +8.421 -20.846 0.434 0 0 0 0 0 0 0 +8.503 -20.862 0.435 0 0 0 0 0 0 0 +8.535 -20.752 0.434 0 0 0 0 0 0 0 +8.566 -20.644 0.433 0 0 0 0 0 0 0 +8.551 -20.516 0.432 0 0 0 0 0 0 0 +8.574 -20.394 0.431 0 0 0 0 0 0 0 +8.469 -19.969 0.426 0 0 0 0 0 0 0 +8.471 -19.801 0.425 0 0 0 0 0 0 0 +8.491 -19.677 0.424 0 0 0 0 0 0 0 +8.572 -19.692 0.424 0 0 0 0 0 0 0 +8.645 -19.691 0.425 0 0 0 0 0 0 0 +8.666 -19.655 0.424 0 0 0 0 0 0 0 +8.689 -19.542 0.423 0 0 0 0 0 0 0 +8.706 -19.416 0.422 0 0 0 0 0 0 0 +8.732 -19.311 0.421 0 0 0 0 0 0 0 +8.753 -19.198 0.42 0 0 0 0 0 0 0 +8.627 -18.765 0.416 0 0 0 0 0 0 0 +8.628 -18.614 0.415 0 0 0 0 0 0 0 +8.633 -18.548 0.414 0 0 0 0 0 0 0 +8.655 -18.443 0.413 0 0 0 0 0 0 0 +8.672 -18.331 0.412 0 0 0 0 0 0 0 +8.691 -18.223 0.411 0 0 0 0 0 0 0 +8.711 -18.118 0.41 0 0 0 0 0 0 0 +8.702 -17.955 0.409 0 0 0 0 0 0 0 +8.779 -17.969 0.409 0 0 0 0 0 0 0 +8.779 -17.898 0.409 0 0 0 0 0 0 0 +8.879 -17.96 0.41 0 0 0 0 0 0 0 +8.905 -17.871 0.409 0 0 0 0 0 0 0 +8.919 -17.759 0.408 0 0 0 0 0 0 0 +8.93 -17.644 0.407 0 0 0 0 0 0 0 +8.927 -17.5 0.406 0 0 0 0 0 0 0 +8.936 -17.383 0.405 0 0 0 0 0 0 0 +8.95 -17.344 0.404 0 0 0 0 0 0 0 +9.021 -17.348 0.405 0 0 0 0 0 0 0 +9.102 -17.369 0.405 0 0 0 0 0 0 0 +9.168 -17.363 0.406 0 0 0 0 0 0 0 +9.212 -17.313 0.405 0 0 0 0 0 0 0 +9.29 -17.328 0.406 0 0 0 0 0 0 0 +9.335 -17.283 0.406 0 0 0 0 0 0 0 +9.285 -17.126 0.404 0 0 0 0 0 0 0 +9.272 -16.974 0.403 0 0 0 0 0 0 0 +9.291 -16.883 0.402 0 0 0 0 0 0 0 +9.308 -16.789 0.401 0 0 0 0 0 0 0 +9.246 -16.556 0.399 0 0 0 0 0 0 0 +9.093 -16.163 0.395 0 0 0 0 0 0 0 +9.105 -16.066 0.394 0 0 0 0 0 0 0 +9.13 -16.052 0.394 0 0 0 0 0 0 0 +9.145 -15.961 0.393 0 0 0 0 0 0 0 +9.148 -15.851 0.392 0 0 0 0 0 0 0 +9.177 -15.787 0.392 0 0 0 0 0 0 0 +9.178 -15.676 0.391 0 0 0 0 0 0 0 +9.171 -15.55 0.39 0 0 0 0 0 0 0 +9.193 -15.477 0.389 0 0 0 0 0 0 0 +9.214 -15.457 0.389 0 0 0 0 0 0 0 +9.266 -15.433 0.389 0 0 0 0 0 0 0 +9.34 -15.447 0.39 0 0 0 0 0 0 0 +9.404 -15.443 0.39 0 0 0 0 0 0 0 +9.415 -15.352 0.389 0 0 0 0 0 0 0 +9.476 -15.343 0.389 0 0 0 0 0 0 0 +9.544 -15.345 0.39 0 0 0 0 0 0 0 +9.519 -15.252 0.389 0 0 0 0 0 0 0 +9.536 -15.173 0.388 0 0 0 0 0 0 0 +9.531 -15.061 0.387 0 0 0 0 0 0 0 +9.533 -14.96 0.387 0 0 0 0 0 0 0 +9.547 -14.878 0.386 0 0 0 0 0 0 0 +9.561 -14.797 0.385 0 0 0 0 0 0 0 +9.566 -14.703 0.385 0 0 0 0 0 0 0 +9.564 -14.551 0.383 0 0 0 0 0 0 0 +9.563 -14.451 0.382 0 0 0 0 0 0 0 +9.397 -14.104 0.379 0 0 0 0 0 0 0 +9.379 -13.983 0.377 0 0 0 0 0 0 0 +9.413 -13.938 0.377 0 0 0 0 0 0 0 +9.433 -13.874 0.377 0 0 0 0 0 0 0 +9.427 -13.818 0.376 0 0 0 0 0 0 0 +9.434 -13.735 0.376 0 0 0 0 0 0 0 +9.466 -13.689 0.375 0 0 0 0 0 0 0 +9.465 -13.597 0.375 0 0 0 0 0 0 0 +9.444 -13.477 0.374 0 0 0 0 0 0 0 +9.456 -13.404 0.373 0 0 0 0 0 0 0 +9.464 -13.327 0.372 0 0 0 0 0 0 0 +9.483 -13.308 0.372 0 0 0 0 0 0 0 +9.552 -13.318 0.373 0 0 0 0 0 0 0 +9.634 -13.343 0.374 0 0 0 0 0 0 0 +9.69 -13.332 0.374 0 0 0 0 0 0 0 +9.727 -13.295 0.374 0 0 0 0 0 0 0 +9.739 -13.224 0.373 0 0 0 0 0 0 0 +9.744 -13.143 0.373 0 0 0 0 0 0 0 +9.74 -13.096 0.372 0 0 0 0 0 0 0 +9.754 -13.029 0.372 0 0 0 0 0 0 0 +9.757 -12.948 0.371 0 0 0 0 0 0 0 +9.779 -12.892 0.371 0 0 0 0 0 0 0 +9.786 -12.819 0.37 0 0 0 0 0 0 0 +9.793 -12.745 0.37 0 0 0 0 0 0 0 +9.811 -12.686 0.369 0 0 0 0 0 0 0 +9.801 -12.631 0.369 0 0 0 0 0 0 0 +9.803 -12.553 0.368 0 0 0 0 0 0 0 +9.717 -12.363 0.366 0 0 0 0 0 0 0 +9.61 -12.148 0.364 0 0 0 0 0 0 0 +9.623 -12.086 0.363 0 0 0 0 0 0 0 +9.643 -12.034 0.363 0 0 0 0 0 0 0 +9.68 -12.002 0.363 0 0 0 0 0 0 0 +9.693 -11.943 0.363 0 0 0 0 0 0 0 +9.697 -11.909 0.362 0 0 0 0 0 0 0 +9.694 -11.829 0.362 0 0 0 0 0 0 0 +9.715 -11.78 0.362 0 0 0 0 0 0 0 +9.72 -11.711 0.361 0 0 0 0 0 0 0 +9.73 -11.648 0.361 0 0 0 0 0 0 0 +9.752 -11.601 0.36 0 0 0 0 0 0 0 +9.743 -11.516 0.36 0 0 0 0 0 0 0 +9.654 -11.375 0.358 0 0 0 0 0 0 0 +9.599 -11.238 0.357 0 0 0 0 0 0 0 +9.609 -11.179 0.356 0 0 0 0 0 0 0 +9.618 -11.119 0.356 0 0 0 0 0 0 0 +9.633 -11.066 0.356 0 0 0 0 0 0 0 +9.64 -11.004 0.355 0 0 0 0 0 0 0 +9.628 -10.956 0.355 0 0 0 0 0 0 0 +9.644 -10.905 0.354 0 0 0 0 0 0 0 +9.645 -10.837 0.354 0 0 0 0 0 0 0 +9.656 -10.781 0.354 0 0 0 0 0 0 0 +9.65 -10.706 0.353 0 0 0 0 0 0 0 +9.663 -10.654 0.353 0 0 0 0 0 0 0 +9.691 -10.618 0.353 0 0 0 0 0 0 0 +9.705 -10.599 0.352 0 0 0 0 0 0 0 +9.736 -10.566 0.352 0 0 0 0 0 0 0 +9.81 -10.579 0.353 0 0 0 0 0 0 0 +9.874 -10.582 0.354 0 0 0 0 0 0 0 +9.888 -10.53 0.353 0 0 0 0 0 0 0 +9.902 -10.479 0.353 0 0 0 0 0 0 0 +9.91 -10.422 0.353 0 0 0 0 0 0 0 +9.9 -10.379 0.352 0 0 0 0 0 0 0 +9.909 -10.323 0.352 0 0 0 0 0 0 0 +9.912 -10.262 0.351 0 0 0 0 0 0 0 +9.933 -10.219 0.351 0 0 0 0 0 0 0 +9.94 -10.162 0.351 0 0 0 0 0 0 0 +9.948 -10.107 0.351 0 0 0 0 0 0 0 +9.957 -10.053 0.35 0 0 0 0 0 0 0 +9.962 -9.995 0.35 0 0 0 0 0 0 0 +9.961 -9.962 0.35 0 0 0 0 0 0 0 +9.969 -9.908 0.349 0 0 0 0 0 0 0 +9.979 -9.856 0.349 0 0 0 0 0 0 0 +9.987 -9.802 0.349 0 0 0 0 0 0 0 +9.995 -9.748 0.348 0 0 0 0 0 0 0 +10.005 -9.697 0.348 0 0 0 0 0 0 0 +10.014 -9.645 0.348 0 0 0 0 0 0 0 +10.01 -9.611 0.348 0 0 0 0 0 0 0 +10.007 -9.548 0.347 0 0 0 0 0 0 0 +10.022 -9.503 0.347 0 0 0 0 0 0 0 +10.035 -9.455 0.347 0 0 0 0 0 0 0 +10.035 -9.396 0.346 0 0 0 0 0 0 0 +10.057 -9.358 0.346 0 0 0 0 0 0 0 +10.001 -9.248 0.345 0 0 0 0 0 0 0 +9.855 -9.084 0.343 0 0 0 0 0 0 0 +9.861 -9.033 0.342 0 0 0 0 0 0 0 +9.873 -8.987 0.342 0 0 0 0 0 0 0 +9.89 -8.946 0.342 0 0 0 0 0 0 0 +9.909 -8.906 0.342 0 0 0 0 0 0 0 +9.917 -8.858 0.342 0 0 0 0 0 0 0 +9.907 -8.821 0.341 0 0 0 0 0 0 0 +9.908 -8.766 0.341 0 0 0 0 0 0 0 +9.926 -8.727 0.341 0 0 0 0 0 0 0 +9.933 -8.678 0.341 0 0 0 0 0 0 0 +9.943 -8.632 0.34 0 0 0 0 0 0 0 +9.951 -8.584 0.34 0 0 0 0 0 0 0 +9.955 -8.533 0.34 0 0 0 0 0 0 0 +9.963 -8.486 0.34 0 0 0 0 0 0 0 +9.964 -8.46 0.339 0 0 0 0 0 0 0 +9.979 -8.418 0.339 0 0 0 0 0 0 0 +9.991 -8.375 0.339 0 0 0 0 0 0 0 +10.022 -8.348 0.339 0 0 0 0 0 0 0 +10.042 -8.311 0.339 0 0 0 0 0 0 0 +10.07 -8.281 0.339 0 0 0 0 0 0 0 +10.091 -8.245 0.339 0 0 0 0 0 0 0 +10.088 -8.217 0.339 0 0 0 0 0 0 0 +10.102 -8.175 0.339 0 0 0 0 0 0 0 +10.135 -8.15 0.339 0 0 0 0 0 0 0 +10.154 -8.113 0.339 0 0 0 0 0 0 0 +10.192 -8.091 0.339 0 0 0 0 0 0 0 +10.243 -8.079 0.339 0 0 0 0 0 0 0 +10.439 -8.179 0.341 0 0 0 0 0 0 0 +10.488 -8.191 0.342 0 0 0 0 0 0 0 +10.51 -8.156 0.342 0 0 0 0 0 0 0 +10.541 -8.126 0.342 0 0 0 0 0 0 0 +10.555 -8.085 0.342 0 0 0 0 0 0 0 +10.585 -8.055 0.342 0 0 0 0 0 0 0 +10.607 -8.019 0.342 0 0 0 0 0 0 0 +10.627 -7.982 0.342 0 0 0 0 0 0 0 +10.64 -7.966 0.342 0 0 0 0 0 0 0 +10.663 -7.931 0.342 0 0 0 0 0 0 0 +10.687 -7.896 0.342 0 0 0 0 0 0 0 +10.711 -7.863 0.342 0 0 0 0 0 0 0 +10.728 -7.823 0.341 0 0 0 0 0 0 0 +10.754 -7.79 0.341 0 0 0 0 0 0 0 +10.766 -7.774 0.341 0 0 0 0 0 0 0 +10.786 -7.736 0.341 0 0 0 0 0 0 0 +10.802 -7.697 0.341 0 0 0 0 0 0 0 +10.839 -7.672 0.341 0 0 0 0 0 0 0 +10.855 -7.632 0.341 0 0 0 0 0 0 0 +10.867 -7.59 0.341 0 0 0 0 0 0 0 +10.906 -7.566 0.341 0 0 0 0 0 0 0 +10.916 -7.523 0.341 0 0 0 0 0 0 0 +10.928 -7.505 0.341 0 0 0 0 0 0 0 +10.958 -7.475 0.341 0 0 0 0 0 0 0 +10.97 -7.433 0.341 0 0 0 0 0 0 0 +10.997 -7.401 0.341 0 0 0 0 0 0 0 +11.022 -7.367 0.341 0 0 0 0 0 0 0 +11.041 -7.331 0.341 0 0 0 0 0 0 0 +11.016 -7.264 0.341 0 0 0 0 0 0 0 +10.84 -7.124 0.338 0 0 0 0 0 0 0 +10.832 -7.07 0.338 0 0 0 0 0 0 0 +10.847 -7.032 0.338 0 0 0 0 0 0 0 +10.868 -6.997 0.338 0 0 0 0 0 0 0 +10.888 -6.962 0.338 0 0 0 0 0 0 0 +10.932 -6.941 0.338 0 0 0 0 0 0 0 +10.964 -6.913 0.338 0 0 0 0 0 0 0 +10.958 -6.885 0.338 0 0 0 0 0 0 0 +11.001 -6.865 0.338 0 0 0 0 0 0 0 +11.013 -6.824 0.338 0 0 0 0 0 0 0 +11.043 -6.794 0.338 0 0 0 0 0 0 0 +11.057 -6.755 0.338 0 0 0 0 0 0 0 +11.094 -6.73 0.338 0 0 0 0 0 0 0 +11.14 -6.71 0.339 0 0 0 0 0 0 0 +11.182 -6.711 0.339 0 0 0 0 0 0 0 +11.237 -6.697 0.339 0 0 0 0 0 0 0 +11.288 -6.679 0.34 0 0 0 0 0 0 0 +11.338 -6.66 0.34 0 0 0 0 0 0 0 +11.383 -6.639 0.34 0 0 0 0 0 0 0 +11.437 -6.622 0.341 0 0 0 0 0 0 0 +11.485 -6.602 0.341 0 0 0 0 0 0 0 +11.525 -6.601 0.341 0 0 0 0 0 0 0 +11.572 -6.579 0.342 0 0 0 0 0 0 0 +11.601 -6.548 0.342 0 0 0 0 0 0 0 +11.664 -6.535 0.342 0 0 0 0 0 0 0 +11.915 -6.626 0.345 0 0 0 0 0 0 0 +12.083 -6.669 0.347 0 0 0 0 0 0 0 +12.142 -6.652 0.347 0 0 0 0 0 0 0 +12.186 -6.651 0.348 0 0 0 0 0 0 0 +12.241 -6.631 0.348 0 0 0 0 0 0 0 +12.298 -6.612 0.348 0 0 0 0 0 0 0 +12.356 -6.593 0.349 0 0 0 0 0 0 0 +12.428 -6.582 0.349 0 0 0 0 0 0 0 +12.465 -6.551 0.35 0 0 0 0 0 0 0 +12.535 -6.537 0.35 0 0 0 0 0 0 0 +12.556 -6.523 0.35 0 0 0 0 0 0 0 +8.808 -4.55 0.307 0 0 0 0 0 0 0 +8.801 -4.511 0.307 0 0 0 0 0 0 0 +8.826 -4.489 0.307 0 0 0 0 0 0 0 +12.808 -6.451 0.352 0 0 0 0 0 0 0 +12.866 -6.429 0.353 0 0 0 0 0 0 0 +12.922 -6.407 0.353 0 0 0 0 0 0 0 +12.983 -6.411 0.354 0 0 0 0 0 0 0 +13.035 -6.386 0.354 0 0 0 0 0 0 0 +13.082 -6.358 0.354 0 0 0 0 0 0 0 +13.167 -6.348 0.355 0 0 0 0 0 0 0 +13.169 -6.298 0.355 0 0 0 0 0 0 0 +13.161 -6.244 0.354 0 0 0 0 0 0 0 +13.154 -6.19 0.354 0 0 0 0 0 0 0 +13.133 -6.155 0.354 0 0 0 0 0 0 0 +13.155 -6.115 0.354 0 0 0 0 0 0 0 +13.182 -6.077 0.354 0 0 0 0 0 0 0 +13.235 -6.051 0.354 0 0 0 0 0 0 0 +13.316 -6.038 0.355 0 0 0 0 0 0 0 +13.397 -6.024 0.356 0 0 0 0 0 0 0 +13.453 -5.998 0.356 0 0 0 0 0 0 0 +13.512 -5.999 0.357 0 0 0 0 0 0 0 +13.582 -5.979 0.357 0 0 0 0 0 0 0 +13.646 -5.956 0.358 0 0 0 0 0 0 0 +13.705 -5.93 0.358 0 0 0 0 0 0 0 +13.783 -5.912 0.359 0 0 0 0 0 0 0 +13.86 -5.894 0.359 0 0 0 0 0 0 0 +14.128 -5.929 0.362 0 0 0 0 0 0 0 +14.178 -5.897 0.362 0 0 0 0 0 0 0 +14.228 -5.866 0.363 0 0 0 0 0 0 0 +14.283 -5.836 0.363 0 0 0 0 0 0 0 +14.333 -5.804 0.364 0 0 0 0 0 0 0 +14.379 -5.77 0.364 0 0 0 0 0 0 0 +14.436 -5.74 0.364 0 0 0 0 0 0 0 +14.467 -5.726 0.364 0 0 0 0 0 0 0 +14.526 -5.697 0.365 0 0 0 0 0 0 0 +14.577 -5.664 0.365 0 0 0 0 0 0 0 +14.631 -5.632 0.366 0 0 0 0 0 0 0 +14.654 -5.588 0.366 0 0 0 0 0 0 0 +14.668 -5.541 0.366 0 0 0 0 0 0 0 +14.696 -5.499 0.366 0 0 0 0 0 0 0 +14.742 -5.489 0.366 0 0 0 0 0 0 0 +14.844 -5.474 0.367 0 0 0 0 0 0 0 +15.183 -5.544 0.371 0 0 0 0 0 0 0 +15.238 -5.51 0.371 0 0 0 0 0 0 0 +15.281 -5.471 0.371 0 0 0 0 0 0 0 +15.347 -5.441 0.372 0 0 0 0 0 0 0 +15.379 -5.398 0.372 0 0 0 0 0 0 0 +15.448 -5.395 0.373 0 0 0 0 0 0 0 +15.478 -5.351 0.373 0 0 0 0 0 0 0 +15.55 -5.321 0.373 0 0 0 0 0 0 0 +15.595 -5.281 0.374 0 0 0 0 0 0 0 +15.638 -5.241 0.374 0 0 0 0 0 0 0 +15.702 -5.208 0.374 0 0 0 0 0 0 0 +15.753 -5.17 0.375 0 0 0 0 0 0 0 +15.803 -5.158 0.375 0 0 0 0 0 0 0 +15.849 -5.118 0.376 0 0 0 0 0 0 0 +15.907 -5.082 0.376 0 0 0 0 0 0 0 +15.986 -5.052 0.377 0 0 0 0 0 0 0 +15.944 -4.984 0.376 0 0 0 0 0 0 0 +15.939 -4.927 0.376 0 0 0 0 0 0 0 +15.895 -4.859 0.375 0 0 0 0 0 0 0 +15.864 -4.822 0.375 0 0 0 0 0 0 0 +15.906 -4.781 0.375 0 0 0 0 0 0 0 +15.963 -4.743 0.376 0 0 0 0 0 0 0 +16.068 -4.719 0.376 0 0 0 0 0 0 0 +16.143 -4.686 0.377 0 0 0 0 0 0 0 +16.206 -4.649 0.378 0 0 0 0 0 0 0 +16.239 -4.603 0.378 0 0 0 0 0 0 0 +16.312 -4.596 0.379 0 0 0 0 0 0 0 +16.348 -4.551 0.379 0 0 0 0 0 0 0 +16.412 -4.513 0.379 0 0 0 0 0 0 0 +16.484 -4.477 0.38 0 0 0 0 0 0 0 +16.55 -4.439 0.38 0 0 0 0 0 0 0 +16.587 -4.393 0.381 0 0 0 0 0 0 0 +16.672 -4.36 0.381 0 0 0 0 0 0 0 +16.704 -4.34 0.382 0 0 0 0 0 0 0 +16.778 -4.303 0.382 0 0 0 0 0 0 0 +16.842 -4.263 0.383 0 0 0 0 0 0 0 +16.894 -4.22 0.383 0 0 0 0 0 0 0 +16.95 -4.177 0.384 0 0 0 0 0 0 0 +17.014 -4.136 0.384 0 0 0 0 0 0 0 +17.085 -4.096 0.385 0 0 0 0 0 0 0 +17.12 -4.076 0.385 0 0 0 0 0 0 0 +17.211 -4.041 0.386 0 0 0 0 0 0 0 +17.261 -3.995 0.386 0 0 0 0 0 0 0 +17.306 -3.949 0.387 0 0 0 0 0 0 0 +17.385 -3.909 0.387 0 0 0 0 0 0 0 +17.456 -3.867 0.388 0 0 0 0 0 0 0 +17.497 -3.819 0.388 0 0 0 0 0 0 0 +17.519 -3.766 0.388 0 0 0 0 0 0 0 +17.578 -3.749 0.389 0 0 0 0 0 0 0 +17.636 -3.704 0.389 0 0 0 0 0 0 0 +18.01 -3.723 0.393 0 0 0 0 0 0 0 +18.071 -3.676 0.394 0 0 0 0 0 0 0 +18.147 -3.632 0.394 0 0 0 0 0 0 0 +18.227 -3.589 0.395 0 0 0 0 0 0 0 +18.285 -3.541 0.395 0 0 0 0 0 0 0 +18.346 -3.522 0.396 0 0 0 0 0 0 0 +18.418 -3.476 0.397 0 0 0 0 0 0 0 +18.472 -3.426 0.397 0 0 0 0 0 0 0 +13.769 -2.516 0.349 0 0 0 0 0 0 0 +13.716 -2.462 0.348 0 0 0 0 0 0 0 +13.665 -2.408 0.347 0 0 0 0 0 0 0 +13.666 -2.387 0.347 0 0 0 0 0 0 0 +13.65 -2.34 0.347 0 0 0 0 0 0 0 +13.66 -2.297 0.347 0 0 0 0 0 0 0 +13.663 -2.253 0.347 0 0 0 0 0 0 0 +13.682 -2.212 0.347 0 0 0 0 0 0 0 +13.696 -2.171 0.347 0 0 0 0 0 0 0 +13.701 -2.127 0.347 0 0 0 0 0 0 0 +13.712 -2.085 0.347 0 0 0 0 0 0 0 +13.733 -2.066 0.348 0 0 0 0 0 0 0 +13.771 -2.027 0.348 0 0 0 0 0 0 0 +13.874 -1.998 0.349 0 0 0 0 0 0 0 +19.326 -2.711 0.404 0 0 0 0 0 0 0 +19.384 -2.657 0.405 0 0 0 0 0 0 0 +19.479 -2.607 0.406 0 0 0 0 0 0 0 +19.533 -2.552 0.406 0 0 0 0 0 0 0 +19.507 -2.518 0.406 0 0 0 0 0 0 0 +19.479 -2.452 0.406 0 0 0 0 0 0 0 +19.546 -2.398 0.406 0 0 0 0 0 0 0 +19.586 -2.34 0.407 0 0 0 0 0 0 0 +19.639 -2.284 0.407 0 0 0 0 0 0 0 +19.687 -2.227 0.407 0 0 0 0 0 0 0 +19.73 -2.169 0.408 0 0 0 0 0 0 0 +19.765 -2.141 0.408 0 0 0 0 0 0 0 +19.824 -2.085 0.409 0 0 0 0 0 0 0 +19.876 -2.027 0.409 0 0 0 0 0 0 0 +19.922 -1.968 0.41 0 0 0 0 0 0 0 +19.982 -1.911 0.41 0 0 0 0 0 0 0 +20.006 -1.85 0.41 0 0 0 0 0 0 0 +19.902 -1.777 0.409 0 0 0 0 0 0 0 +24.412 -2.135 0.455 0 0 0 0 0 0 0 +24.281 -2.047 0.453 0 0 0 0 0 0 0 +21.022 -1.709 0.42 0 0 0 0 0 0 0 +20.929 -1.636 0.419 0 0 0 0 0 0 0 +20.958 -1.572 0.42 0 0 0 0 0 0 0 +21.001 -1.509 0.42 0 0 0 0 0 0 0 +21.019 -1.444 0.42 0 0 0 0 0 0 0 +21.068 -1.414 0.421 0 0 0 0 0 0 0 +21.132 -1.351 0.421 0 0 0 0 0 0 0 +21.25 -1.292 0.422 0 0 0 0 0 0 0 +21.375 -1.232 0.424 0 0 0 0 0 0 0 +21.585 -1.176 0.426 0 0 0 0 0 0 0 +21.772 -1.117 0.428 0 0 0 0 0 0 0 +21.606 -1.041 0.426 0 0 0 0 0 0 0 +21.23 -0.989 0.422 0 0 0 0 0 0 0 +21.257 -0.924 0.422 0 0 0 0 0 0 0 +21.25 -0.857 0.422 0 0 0 0 0 0 0 +21.158 -0.786 0.421 0 0 0 0 0 0 0 +21.131 -0.719 0.421 0 0 0 0 0 0 0 +21.139 -0.653 0.421 0 0 0 0 0 0 0 +21.193 -0.588 0.421 0 0 0 0 0 0 0 +21.274 -0.556 0.422 0 0 0 0 0 0 0 +21.327 -0.491 0.423 0 0 0 0 0 0 0 +21.387 -0.425 0.423 0 0 0 0 0 0 0 +21.454 -0.359 0.424 0 0 0 0 0 0 0 +21.513 -0.292 0.425 0 0 0 0 0 0 0 +21.56 -0.225 0.425 0 0 0 0 0 0 0 +21.632 -0.158 0.426 0 0 0 0 0 0 0 +21.889 -0.125 0.428 0 0 0 0 0 0 0 +23.301 -0.058 0.443 0 0 0 0 0 0 0 +35.459 0.032 0.319 0 0 0 0 0 0 0 +35.283 0.143 0.318 0 0 0 0 0 0 0 +35.306 0.254 0.318 0 0 0 0 0 0 0 +35.367 0.365 0.318 0 0 0 0 0 0 0 +35.422 0.477 0.318 0 0 0 0 0 0 0 +35.482 0.589 0.319 0 0 0 0 0 0 0 +35.537 0.646 0.319 0 0 0 0 0 0 0 +35.315 0.753 0.318 0 0 0 0 0 0 0 +35.017 0.857 0.317 0 0 0 0 0 0 0 +34.828 0.962 0.317 0 0 0 0 0 0 0 +34.673 1.067 0.316 0 0 0 0 0 0 0 +34.559 1.172 0.316 0 0 0 0 0 0 0 +34.527 1.28 0.316 0 0 0 0 0 0 0 +34.421 1.33 0.315 0 0 0 0 0 0 0 +34.371 1.436 0.315 0 0 0 0 0 0 0 +34.378 1.545 0.315 0 0 0 0 0 0 0 +34.387 1.653 0.315 0 0 0 0 0 0 0 +34.418 1.763 0.315 0 0 0 0 0 0 0 +34.442 1.873 0.316 0 0 0 0 0 0 0 +25.473 1.472 0.287 0 0 0 0 0 0 0 +34.727 2.052 0.316 0 0 0 0 0 0 0 +34.692 2.16 0.316 0 0 0 0 0 0 0 +59.834 3.895 0.396 0 0 0 0 0 0 0 +59.956 4.092 0.396 0 0 0 0 0 0 0 +59.783 4.269 0.396 0 0 0 0 0 0 0 +59.558 4.441 0.395 0 0 0 0 0 0 0 +59.516 4.626 0.395 0 0 0 0 0 0 0 +59.58 4.725 0.395 0 0 0 0 0 0 0 +59.67 4.921 0.396 0 0 0 0 0 0 0 +59.766 5.118 0.396 0 0 0 0 0 0 0 +18.678 1.677 0.266 0 0 0 0 0 0 0 +18.635 1.732 0.266 0 0 0 0 0 0 0 +18.617 1.789 0.266 0 0 0 0 0 0 0 +18.66 1.852 0.266 0 0 0 0 0 0 0 +61.081 6.101 0.4 0 0 0 0 0 0 0 +61.177 6.305 0.401 0 0 0 0 0 0 0 +61.282 6.51 0.401 0 0 0 0 0 0 0 +61.387 6.716 0.401 0 0 0 0 0 0 0 +61.512 6.925 0.402 0 0 0 0 0 0 0 +61.629 7.135 0.402 0 0 0 0 0 0 0 +61.495 7.315 0.402 0 0 0 0 0 0 0 +61.264 7.385 0.401 0 0 0 0 0 0 0 +61.204 7.573 0.401 0 0 0 0 0 0 0 +24.979 3.186 0.286 0 0 0 0 0 0 0 +24.987 3.267 0.286 0 0 0 0 0 0 0 +61.453 8.193 0.402 0 0 0 0 0 0 0 +61.6 8.409 0.403 0 0 0 0 0 0 0 +61.686 8.618 0.403 0 0 0 0 0 0 0 +46.809 6.621 0.356 0 0 0 0 0 0 0 +43.805 6.338 0.346 0 0 0 0 0 0 0 +20.841 3.096 0.273 0 0 0 0 0 0 0 +43.444 6.565 0.345 0 0 0 0 0 0 0 +43.298 6.683 0.345 0 0 0 0 0 0 0 +42.961 6.769 0.344 0 0 0 0 0 0 0 +42.754 6.874 0.343 0 0 0 0 0 0 0 +42.566 6.981 0.343 0 0 0 0 0 0 0 +42.374 7.018 0.342 0 0 0 0 0 0 0 +42.261 7.136 0.342 0 0 0 0 0 0 0 +42.12 7.248 0.342 0 0 0 0 0 0 0 +42.105 7.382 0.342 0 0 0 0 0 0 0 +41.916 7.485 0.341 0 0 0 0 0 0 0 +41.611 7.566 0.34 0 0 0 0 0 0 0 +41.518 7.684 0.34 0 0 0 0 0 0 0 +41.457 7.74 0.34 0 0 0 0 0 0 0 +41.307 7.846 0.339 0 0 0 0 0 0 0 +41.105 7.942 0.339 0 0 0 0 0 0 0 +18.611 3.671 0.267 0 0 0 0 0 0 0 +41.041 8.197 0.339 0 0 0 0 0 0 0 +40.832 8.289 0.338 0 0 0 0 0 0 0 +41.061 8.47 0.339 0 0 0 0 0 0 0 +41.163 8.828 0.34 0 0 0 0 0 0 0 +41.139 8.958 0.34 0 0 0 0 0 0 0 +41.708 9.357 0.342 0 0 0 0 0 0 0 +39.428 8.977 0.334 0 0 0 0 0 0 0 +41.788 9.997 0.342 0 0 0 0 0 0 0 +42.001 10.188 0.343 0 0 0 0 0 0 0 +42.082 10.347 0.343 0 0 0 0 0 0 0 +41.886 10.439 0.343 0 0 0 0 0 0 0 +42.129 10.57 0.344 0 0 0 0 0 0 0 +42.455 10.793 0.345 0 0 0 0 0 0 0 +42.721 11.003 0.346 0 0 0 0 0 0 0 +42.545 11.101 0.345 0 0 0 0 0 0 0 +42.434 11.214 0.345 0 0 0 0 0 0 0 +42.339 11.332 0.345 0 0 0 0 0 0 0 +42.425 11.498 0.345 0 0 0 0 0 0 0 +42.513 11.593 0.346 0 0 0 0 0 0 0 +50.935 14.056 0.373 0 0 0 0 0 0 0 +50.873 14.212 0.373 0 0 0 0 0 0 0 +36.627 10.364 0.327 0 0 0 0 0 0 0 +36.519 10.457 0.327 0 0 0 0 0 0 0 +36.388 10.544 0.326 0 0 0 0 0 0 0 +36.248 10.626 0.326 0 0 0 0 0 0 0 +36.146 10.658 0.326 0 0 0 0 0 0 0 +16.119 4.823 0.26 0 0 0 0 0 0 0 +16.179 4.896 0.26 0 0 0 0 0 0 0 +16.085 4.923 0.26 0 0 0 0 0 0 0 +16.077 4.976 0.26 0 0 0 0 0 0 0 +16.042 5.021 0.26 0 0 0 0 0 0 0 +16.001 5.063 0.26 0 0 0 0 0 0 0 +15.988 5.086 0.26 0 0 0 0 0 0 0 +15.962 5.134 0.26 0 0 0 0 0 0 0 +15.948 5.184 0.26 0 0 0 0 0 0 0 +15.924 5.232 0.26 0 0 0 0 0 0 0 +15.903 5.281 0.26 0 0 0 0 0 0 0 +15.896 5.334 0.26 0 0 0 0 0 0 0 +15.883 5.385 0.26 0 0 0 0 0 0 0 +15.892 5.416 0.26 0 0 0 0 0 0 0 +15.892 5.471 0.26 0 0 0 0 0 0 0 +15.916 5.536 0.26 0 0 0 0 0 0 0 +15.946 5.602 0.26 0 0 0 0 0 0 0 +15.981 5.671 0.26 0 0 0 0 0 0 0 +15.976 5.726 0.26 0 0 0 0 0 0 0 +16.255 5.883 0.261 0 0 0 0 0 0 0 +15.994 5.817 0.26 0 0 0 0 0 0 0 +71.75 26.255 0.448 0 0 0 0 0 0 0 +72.194 26.675 0.449 0 0 0 0 0 0 0 +72.359 26.995 0.45 0 0 0 0 0 0 0 +72.521 27.315 0.451 0 0 0 0 0 0 0 +72.69 27.639 0.452 0 0 0 0 0 0 0 +34.108 13.107 0.322 0 0 0 0 0 0 0 +34.001 13.127 0.322 0 0 0 0 0 0 0 +73.057 28.438 0.454 0 0 0 0 0 0 0 +72.925 28.65 0.454 0 0 0 0 0 0 0 +73.095 28.982 0.455 0 0 0 0 0 0 0 +73.262 29.315 0.456 0 0 0 0 0 0 0 +73.451 29.659 0.457 0 0 0 0 0 0 0 +73.598 29.987 0.457 0 0 0 0 0 0 0 +73.844 30.223 0.458 0 0 0 0 0 0 0 +45.038 19.275 0.361 0 0 0 0 0 0 0 +44.968 19.413 0.361 0 0 0 0 0 0 0 +44.727 19.476 0.361 0 0 0 0 0 0 0 +44.278 19.363 0.359 0 0 0 0 0 0 0 +44.289 19.534 0.359 0 0 0 0 0 0 0 +44.132 19.631 0.359 0 0 0 0 0 0 0 +44.311 19.877 0.36 0 0 0 0 0 0 0 +44.409 20.089 0.36 0 0 0 0 0 0 0 +41.044 18.724 0.349 0 0 0 0 0 0 0 +40.945 18.757 0.349 0 0 0 0 0 0 0 +40.786 18.84 0.348 0 0 0 0 0 0 0 +40.593 18.905 0.348 0 0 0 0 0 0 0 +40.446 18.992 0.348 0 0 0 0 0 0 0 +40.305 19.08 0.347 0 0 0 0 0 0 0 +40.174 19.173 0.347 0 0 0 0 0 0 0 +40.137 19.311 0.347 0 0 0 0 0 0 0 +40.123 19.382 0.347 0 0 0 0 0 0 0 +40.357 19.651 0.348 0 0 0 0 0 0 0 +43.389 21.294 0.359 0 0 0 0 0 0 0 +43.26 21.399 0.359 0 0 0 0 0 0 0 +43.181 21.53 0.359 0 0 0 0 0 0 0 +39.186 19.695 0.345 0 0 0 0 0 0 0 +29.012 14.703 0.309 0 0 0 0 0 0 0 +38.945 19.804 0.345 0 0 0 0 0 0 0 +38.806 19.887 0.344 0 0 0 0 0 0 0 +38.656 19.964 0.344 0 0 0 0 0 0 0 +38.537 20.056 0.344 0 0 0 0 0 0 0 +38.39 20.133 0.343 0 0 0 0 0 0 0 +38.26 20.218 0.343 0 0 0 0 0 0 0 +38.18 20.33 0.343 0 0 0 0 0 0 0 +38.282 20.538 0.344 0 0 0 0 0 0 0 +38.434 20.698 0.344 0 0 0 0 0 0 0 +37.993 20.615 0.343 0 0 0 0 0 0 0 +37.972 20.758 0.343 0 0 0 0 0 0 0 +40.356 22.224 0.352 0 0 0 0 0 0 0 +37.624 20.876 0.342 0 0 0 0 0 0 0 +43.794 24.475 0.365 0 0 0 0 0 0 0 +37.485 21.108 0.342 0 0 0 0 0 0 0 +37.453 21.168 0.342 0 0 0 0 0 0 0 +41.316 23.519 0.357 0 0 0 0 0 0 0 +41.226 23.64 0.357 0 0 0 0 0 0 0 +41.339 23.877 0.357 0 0 0 0 0 0 0 +41.243 23.995 0.357 0 0 0 0 0 0 0 +41.071 24.068 0.357 0 0 0 0 0 0 0 +36.214 21.302 0.339 0 0 0 0 0 0 0 +36.07 21.37 0.339 0 0 0 0 0 0 0 +35.924 21.436 0.339 0 0 0 0 0 0 0 +35.787 21.508 0.338 0 0 0 0 0 0 0 +35.655 21.581 0.338 0 0 0 0 0 0 0 +35.546 21.668 0.338 0 0 0 0 0 0 0 +35.431 21.751 0.338 0 0 0 0 0 0 0 +35.339 21.771 0.338 0 0 0 0 0 0 0 +35.278 21.886 0.338 0 0 0 0 0 0 0 +35.265 22.032 0.338 0 0 0 0 0 0 0 +35.312 22.216 0.338 0 0 0 0 0 0 0 +29.666 18.799 0.318 0 0 0 0 0 0 0 +29.563 18.864 0.317 0 0 0 0 0 0 0 +29.514 18.964 0.317 0 0 0 0 0 0 0 +34.701 22.368 0.337 0 0 0 0 0 0 0 +34.491 22.387 0.336 0 0 0 0 0 0 0 +13.021 8.587 0.256 0 0 0 0 0 0 0 +33.947 22.491 0.335 0 0 0 0 0 0 0 +33.852 22.582 0.335 0 0 0 0 0 0 0 +33.723 22.649 0.335 0 0 0 0 0 0 0 +33.636 22.668 0.335 0 0 0 0 0 0 0 +33.507 22.734 0.334 0 0 0 0 0 0 0 +33.407 22.82 0.334 0 0 0 0 0 0 0 +33.362 22.943 0.334 0 0 0 0 0 0 0 +33.368 23.102 0.335 0 0 0 0 0 0 0 +33.358 23.25 0.335 0 0 0 0 0 0 0 +33.349 23.4 0.335 0 0 0 0 0 0 0 +33.397 23.512 0.336 0 0 0 0 0 0 0 +33.396 23.669 0.336 0 0 0 0 0 0 0 +37.453 26.717 0.352 0 0 0 0 0 0 0 +33.655 24.171 0.337 0 0 0 0 0 0 0 +35.735 25.833 0.346 0 0 0 0 0 0 0 +35.591 25.9 0.346 0 0 0 0 0 0 0 +35.25 25.821 0.345 0 0 0 0 0 0 0 +35.297 26.027 0.345 0 0 0 0 0 0 0 +35.118 25.98 0.345 0 0 0 0 0 0 0 +34.194 25.463 0.341 0 0 0 0 0 0 0 +33.905 25.415 0.34 0 0 0 0 0 0 0 +33.697 25.425 0.34 0 0 0 0 0 0 0 +17.09 12.995 0.274 0 0 0 0 0 0 0 +17.194 13.159 0.275 0 0 0 0 0 0 0 +17.288 13.318 0.276 0 0 0 0 0 0 0 +17.329 13.392 0.276 0 0 0 0 0 0 0 +17.278 13.439 0.276 0 0 0 0 0 0 0 +17.47 13.677 0.277 0 0 0 0 0 0 0 +33.288 26.369 0.341 0 0 0 0 0 0 0 +33.28 26.534 0.341 0 0 0 0 0 0 0 +33.307 26.641 0.341 0 0 0 0 0 0 0 +34.841 28.046 0.348 0 0 0 0 0 0 0 +12.09 9.816 0.256 0 0 0 0 0 0 0 +6.69 5.482 0.234 0 0 0 0 0 0 0 +6.643 5.479 0.234 0 0 0 0 0 0 0 +6.634 5.506 0.234 0 0 0 0 0 0 0 +6.638 5.545 0.234 0 0 0 0 0 0 0 +11.79 9.853 0.255 0 0 0 0 0 0 0 +11.762 9.893 0.255 0 0 0 0 0 0 0 +11.419 9.667 0.254 0 0 0 0 0 0 0 +11.331 9.653 0.254 0 0 0 0 0 0 0 +11.495 9.855 0.255 0 0 0 0 0 0 0 +11.787 10.169 0.256 0 0 0 0 0 0 0 +33.455 28.983 0.346 0 0 0 0 0 0 0 +33.314 28.953 0.346 0 0 0 0 0 0 0 +16.929 14.823 0.278 0 0 0 0 0 0 0 +16.869 14.864 0.278 0 0 0 0 0 0 0 +33.219 29.424 0.347 0 0 0 0 0 0 0 +33.206 29.599 0.347 0 0 0 0 0 0 0 +33.211 29.791 0.347 0 0 0 0 0 0 0 +33.165 29.938 0.348 0 0 0 0 0 0 0 +33.134 30.1 0.348 0 0 0 0 0 0 0 +33.217 30.271 0.348 0 0 0 0 0 0 0 +10.898 10.081 0.254 0 0 0 0 0 0 0 +16.301 15.157 0.277 0 0 0 0 0 0 0 +16.191 15.149 0.277 0 0 0 0 0 0 0 +16.11 15.169 0.277 0 0 0 0 0 0 0 +16.061 15.218 0.277 0 0 0 0 0 0 0 +16.057 15.262 0.277 0 0 0 0 0 0 0 +16.018 15.321 0.277 0 0 0 0 0 0 0 +15.991 15.392 0.277 0 0 0 0 0 0 0 +15.991 15.49 0.277 0 0 0 0 0 0 0 +33.012 32.139 0.352 0 0 0 0 0 0 0 +32.967 32.297 0.352 0 0 0 0 0 0 0 +32.925 32.459 0.353 0 0 0 0 0 0 0 +32.935 32.572 0.353 0 0 0 0 0 0 0 +32.9 32.741 0.353 0 0 0 0 0 0 0 +32.864 32.912 0.353 0 0 0 0 0 0 0 +32.821 33.076 0.354 0 0 0 0 0 0 0 +32.778 33.24 0.354 0 0 0 0 0 0 0 +32.739 33.41 0.354 0 0 0 0 0 0 0 +32.697 33.578 0.355 0 0 0 0 0 0 0 +32.622 33.606 0.354 0 0 0 0 0 0 0 +32.506 33.698 0.354 0 0 0 0 0 0 0 +32.454 33.856 0.355 0 0 0 0 0 0 0 +32.401 34.015 0.355 0 0 0 0 0 0 0 +32.367 34.193 0.355 0 0 0 0 0 0 0 +32.327 34.366 0.356 0 0 0 0 0 0 0 +32.291 34.545 0.356 0 0 0 0 0 0 0 +32.332 34.698 0.356 0 0 0 0 0 0 0 +32.392 34.981 0.357 0 0 0 0 0 0 0 +32.339 35.145 0.357 0 0 0 0 0 0 0 +32.28 35.302 0.358 0 0 0 0 0 0 0 +32.189 35.425 0.358 0 0 0 0 0 0 0 +32.163 35.621 0.358 0 0 0 0 0 0 0 +32.698 36.442 0.361 0 0 0 0 0 0 0 +32.71 36.571 0.361 0 0 0 0 0 0 0 +32.048 36.287 0.359 0 0 0 0 0 0 0 +32.456 36.983 0.362 0 0 0 0 0 0 0 +29.541 33.879 0.348 0 0 0 0 0 0 0 +31.869 37.011 0.361 0 0 0 0 0 0 0 +31.715 36.951 0.36 0 0 0 0 0 0 0 +31.59 37.04 0.36 0 0 0 0 0 0 0 +31.525 37.2 0.361 0 0 0 0 0 0 0 +31.453 37.352 0.361 0 0 0 0 0 0 0 +31.399 37.526 0.361 0 0 0 0 0 0 0 +31.342 37.698 0.361 0 0 0 0 0 0 0 +31.334 37.93 0.362 0 0 0 0 0 0 0 +31.795 38.611 0.364 0 0 0 0 0 0 0 +19.114 23.527 0.302 0 0 0 0 0 0 0 +18.98 23.513 0.302 0 0 0 0 0 0 0 +18.915 23.583 0.302 0 0 0 0 0 0 0 +18.808 23.602 0.302 0 0 0 0 0 0 0 +30.808 38.884 0.363 0 0 0 0 0 0 0 +30.762 38.951 0.363 0 0 0 0 0 0 0 +30.743 39.179 0.364 0 0 0 0 0 0 0 +30.766 39.463 0.365 0 0 0 0 0 0 0 +30.694 39.626 0.365 0 0 0 0 0 0 0 +30.608 39.773 0.365 0 0 0 0 0 0 0 +30.552 39.96 0.365 0 0 0 0 0 0 0 +30.459 40.098 0.366 0 0 0 0 0 0 0 +30.413 40.168 0.366 0 0 0 0 0 0 0 +30.31 40.294 0.366 0 0 0 0 0 0 0 +30.112 40.295 0.365 0 0 0 0 0 0 0 +29.993 40.399 0.365 0 0 0 0 0 0 0 +29.874 40.504 0.365 0 0 0 0 0 0 0 +29.801 40.672 0.366 0 0 0 0 0 0 0 +29.722 40.833 0.366 0 0 0 0 0 0 0 +29.642 40.993 0.366 0 0 0 0 0 0 0 +29.615 41.091 0.366 0 0 0 0 0 0 0 +29.545 41.267 0.367 0 0 0 0 0 0 0 +29.617 41.643 0.368 0 0 0 0 0 0 0 +27.274 38.607 0.356 0 0 0 0 0 0 0 +27.112 38.635 0.356 0 0 0 0 0 0 0 +26.974 38.697 0.356 0 0 0 0 0 0 0 +26.921 38.881 0.356 0 0 0 0 0 0 0 +29.251 42.383 0.369 0 0 0 0 0 0 0 +29.189 42.579 0.37 0 0 0 0 0 0 0 +29.11 42.751 0.37 0 0 0 0 0 0 0 +29.015 42.901 0.37 0 0 0 0 0 0 0 +28.931 43.068 0.37 0 0 0 0 0 0 0 +28.831 43.212 0.371 0 0 0 0 0 0 0 +28.681 43.134 0.37 0 0 0 0 0 0 0 +28.522 43.187 0.37 0 0 0 0 0 0 0 +28.424 43.335 0.37 0 0 0 0 0 0 0 +28.327 43.484 0.37 0 0 0 0 0 0 0 +28.232 43.637 0.371 0 0 0 0 0 0 0 +28.142 43.799 0.371 0 0 0 0 0 0 0 +28.053 43.963 0.371 0 0 0 0 0 0 0 +18.631 29.316 0.316 0 0 0 0 0 0 0 +18.493 29.301 0.316 0 0 0 0 0 0 0 +18.383 29.331 0.316 0 0 0 0 0 0 0 +18.298 29.4 0.316 0 0 0 0 0 0 0 +18.216 29.474 0.316 0 0 0 0 0 0 0 +27.512 44.804 0.373 0 0 0 0 0 0 0 +27.402 44.94 0.373 0 0 0 0 0 0 0 +27.302 45.094 0.373 0 0 0 0 0 0 0 +29.766 49.335 0.388 0 0 0 0 0 0 0 +29.639 49.475 0.389 0 0 0 0 0 0 0 +29.942 50.337 0.391 0 0 0 0 0 0 0 +29.862 50.564 0.392 0 0 0 0 0 0 0 +29.708 50.666 0.392 0 0 0 0 0 0 0 +29.591 50.831 0.392 0 0 0 0 0 0 0 +29.448 50.954 0.392 0 0 0 0 0 0 0 +29.419 51.088 0.393 0 0 0 0 0 0 0 +29.301 51.255 0.393 0 0 0 0 0 0 0 +26.551 46.791 0.376 0 0 0 0 0 0 0 +26.246 46.593 0.375 0 0 0 0 0 0 0 +26.124 46.719 0.376 0 0 0 0 0 0 0 +26.014 46.868 0.376 0 0 0 0 0 0 0 +25.898 47.007 0.376 0 0 0 0 0 0 0 +12.645 23.151 0.29 0 0 0 0 0 0 0 +12.569 23.097 0.29 0 0 0 0 0 0 0 +12.49 23.126 0.29 0 0 0 0 0 0 0 +12.562 23.434 0.291 0 0 0 0 0 0 0 +27.133 50.935 0.389 0 0 0 0 0 0 0 +26.789 50.672 0.387 0 0 0 0 0 0 0 +26.351 50.226 0.386 0 0 0 0 0 0 0 +25.976 49.7 0.384 0 0 0 0 0 0 0 +24.912 48.405 0.378 0 0 0 0 0 0 0 +24.702 48.37 0.378 0 0 0 0 0 0 0 +24.574 48.494 0.378 0 0 0 0 0 0 0 +24.455 48.637 0.378 0 0 0 0 0 0 0 +24.42 48.95 0.379 0 0 0 0 0 0 0 +24.31 49.116 0.38 0 0 0 0 0 0 0 +24.251 49.19 0.38 0 0 0 0 0 0 0 +24.144 49.365 0.38 0 0 0 0 0 0 0 +23.877 49.606 0.38 0 0 0 0 0 0 0 +23.656 49.543 0.38 0 0 0 0 0 0 0 +23.528 49.677 0.38 0 0 0 0 0 0 0 +16.536 35.218 0.329 0 0 0 0 0 0 0 +16.474 35.23 0.329 0 0 0 0 0 0 0 +23.219 50.036 0.381 0 0 0 0 0 0 0 +23.072 50.131 0.381 0 0 0 0 0 0 0 +22.936 50.25 0.381 0 0 0 0 0 0 0 +22.792 50.353 0.381 0 0 0 0 0 0 0 +22.67 50.506 0.381 0 0 0 0 0 0 0 +21.102 47.415 0.37 0 0 0 0 0 0 0 +15.975 36.061 0.331 0 0 0 0 0 0 0 +15.807 35.989 0.331 0 0 0 0 0 0 0 +15.677 36 0.331 0 0 0 0 0 0 0 +15.675 36.304 0.331 0 0 0 0 0 0 0 +15.533 36.289 0.331 0 0 0 0 0 0 0 +15.37 36.223 0.331 0 0 0 0 0 0 0 +15.284 36.336 0.331 0 0 0 0 0 0 0 +21.599 51.549 0.383 0 0 0 0 0 0 0 +15.241 36.718 0.332 0 0 0 0 0 0 0 +15.17 36.873 0.332 0 0 0 0 0 0 0 +21.176 51.906 0.384 0 0 0 0 0 0 0 +21.036 52.029 0.384 0 0 0 0 0 0 0 +20.892 52.144 0.384 0 0 0 0 0 0 0 +13.387 33.745 0.321 0 0 0 0 0 0 0 +13.494 34.169 0.323 0 0 0 0 0 0 0 +13.541 34.606 0.324 0 0 0 0 0 0 0 +13.534 34.91 0.325 0 0 0 0 0 0 0 +20.249 52.684 0.385 0 0 0 0 0 0 0 +20.092 52.771 0.385 0 0 0 0 0 0 0 +24.708 65.495 0.427 0 0 0 0 0 0 0 +24.491 65.541 0.427 0 0 0 0 0 0 0 +24.264 65.563 0.427 0 0 0 0 0 0 0 +24.145 65.558 0.427 0 0 0 0 0 0 0 +19.671 53.944 0.388 0 0 0 0 0 0 0 +23.476 65.641 0.427 0 0 0 0 0 0 0 +23.255 65.673 0.426 0 0 0 0 0 0 0 +23.038 65.716 0.426 0 0 0 0 0 0 0 +18.748 54.037 0.387 0 0 0 0 0 0 0 +18.616 53.93 0.387 0 0 0 0 0 0 0 +18.46 54.026 0.387 0 0 0 0 0 0 0 +18.299 54.111 0.387 0 0 0 0 0 0 0 +18.144 54.213 0.387 0 0 0 0 0 0 0 +18.459 55.734 0.392 0 0 0 0 0 0 0 +18.317 55.892 0.392 0 0 0 0 0 0 0 +18.353 56.6 0.394 0 0 0 0 0 0 0 +18.502 57.367 0.397 0 0 0 0 0 0 0 +19.084 59.81 0.405 0 0 0 0 0 0 0 +18.903 59.893 0.405 0 0 0 0 0 0 0 +18.833 60.328 0.406 0 0 0 0 0 0 0 +12.879 42.212 0.346 0 0 0 0 0 0 0 +12.682 42.04 0.345 0 0 0 0 0 0 0 +12.616 42.062 0.345 0 0 0 0 0 0 0 +12.567 42.379 0.346 0 0 0 0 0 0 0 +12.388 42.263 0.346 0 0 0 0 0 0 0 +19.693 67.92 0.43 0 0 0 0 0 0 0 +19.902 69.454 0.435 0 0 0 0 0 0 0 +20.037 71.619 0.441 0 0 0 0 0 0 0 +20.616 74.134 0.449 0 0 0 0 0 0 0 +20.661 75.209 0.453 0 0 0 0 0 0 0 +13.412 52.038 0.376 0 0 0 0 0 0 0 +15.605 62.554 0.41 0 0 0 0 0 0 0 +15.422 62.657 0.41 0 0 0 0 0 0 0 +15.305 63.034 0.411 0 0 0 0 0 0 0 +15.107 63.083 0.411 0 0 0 0 0 0 0 +13.543 57.358 0.393 0 0 0 0 0 0 0 +13.346 57.326 0.392 0 0 0 0 0 0 0 +0.68 3.096 0.217 0 0 0 0 0 0 0 +0.673 3.111 0.217 0 0 0 0 0 0 0 +0.655 3.072 0.217 0 0 0 0 0 0 0 +0.659 3.137 0.217 0 0 0 0 0 0 0 +0.643 3.114 0.217 0 0 0 0 0 0 0 +0.631 3.102 0.217 0 0 0 0 0 0 0 +0.629 3.119 0.217 0 0 0 0 0 0 0 +0.617 3.109 0.217 0 0 0 0 0 0 0 +0.611 3.13 0.217 0 0 0 0 0 0 0 +0.595 3.101 0.217 0 0 0 0 0 0 0 +0.587 3.111 0.217 0 0 0 0 0 0 0 +0.572 3.087 0.217 0 0 0 0 0 0 0 +0.572 3.138 0.217 0 0 0 0 0 0 0 +0.563 3.119 0.217 0 0 0 0 0 0 0 +0.551 3.109 0.217 0 0 0 0 0 0 0 +0.545 3.13 0.217 0 0 0 0 0 0 0 +0.535 3.134 0.217 0 0 0 0 0 0 0 +0.55 3.277 0.217 0 0 0 0 0 0 0 +0.547 3.317 0.217 0 0 0 0 0 0 0 +0.534 3.306 0.217 0 0 0 0 0 0 0 +0.529 3.338 0.217 0 0 0 0 0 0 0 +0.527 3.358 0.218 0 0 0 0 0 0 0 +0.516 3.358 0.218 0 0 0 0 0 0 0 +0.501 3.33 0.217 0 0 0 0 0 0 0 +0.492 3.343 0.217 0 0 0 0 0 0 0 +0.479 3.331 0.217 0 0 0 0 0 0 0 +0.469 3.334 0.217 0 0 0 0 0 0 0 +0.459 3.338 0.217 0 0 0 0 0 0 0 +0.459 3.372 0.218 0 0 0 0 0 0 0 +0.45 3.386 0.218 0 0 0 0 0 0 0 +0.431 3.332 0.217 0 0 0 0 0 0 0 +0.406 3.224 0.217 0 0 0 0 0 0 0 +0.388 3.166 0.217 0 0 0 0 0 0 0 +0.375 3.143 0.217 0 0 0 0 0 0 0 +0.367 3.154 0.217 0 0 0 0 0 0 0 +0.362 3.159 0.217 0 0 0 0 0 0 0 +0.349 3.136 0.217 0 0 0 0 0 0 0 +0.342 3.157 0.217 0 0 0 0 0 0 0 +0.33 3.138 0.217 0 0 0 0 0 0 0 +0.325 3.183 0.217 0 0 0 0 0 0 0 +0.308 3.124 0.217 0 0 0 0 0 0 0 +0.3 3.141 0.217 0 0 0 0 0 0 0 +0.295 3.143 0.217 0 0 0 0 0 0 0 +0.288 3.174 0.217 0 0 0 0 0 0 0 +0.276 3.149 0.217 0 0 0 0 0 0 0 +0.268 3.166 0.217 0 0 0 0 0 0 0 +0.256 3.145 0.217 0 0 0 0 0 0 0 +0.249 3.186 0.217 0 0 0 0 0 0 0 +0.239 3.18 0.217 0 0 0 0 0 0 0 +0.229 3.181 0.217 0 0 0 0 0 0 0 +0.019 31.881 0.307 0 0 0 0 0 0 0 +-0.126 30.219 0.302 0 0 0 0 0 0 0 +-0.388 28.403 0.296 0 0 0 0 0 0 0 +-0.616 26.626 0.291 0 0 0 0 0 0 0 +-0.775 24.961 0.286 0 0 0 0 0 0 0 +-1.02 23.339 0.28 0 0 0 0 0 0 0 +-1.096 23.384 0.281 0 0 0 0 0 0 0 +-1.093 22.537 0.278 0 0 0 0 0 0 0 +-1.387 20.067 0.27 0 0 0 0 0 0 0 +-1.442 19.945 0.27 0 0 0 0 0 0 0 +-1.504 19.937 0.27 0 0 0 0 0 0 0 +-1.512 19.222 0.268 0 0 0 0 0 0 0 +-1.659 17.842 0.263 0 0 0 0 0 0 0 +-1.7 17.672 0.263 0 0 0 0 0 0 0 +-1.879 16.068 0.258 0 0 0 0 0 0 0 +-1.911 15.905 0.257 0 0 0 0 0 0 0 +-2.087 14.146 0.252 0 0 0 0 0 0 0 +-2.133 14.145 0.252 0 0 0 0 0 0 0 +-2.296 12.305 0.246 0 0 0 0 0 0 0 +-2.342 12.339 0.246 0 0 0 0 0 0 0 +-3.747 17.005 0.262 0 0 0 0 0 0 0 +-2.494 10.563 0.241 0 0 0 0 0 0 0 +-2.535 10.588 0.241 0 0 0 0 0 0 0 +-2.574 10.601 0.241 0 0 0 0 0 0 0 +-4.156 17.069 0.262 0 0 0 0 0 0 0 +-4.209 17.054 0.262 0 0 0 0 0 0 0 +-4.265 17.05 0.262 0 0 0 0 0 0 0 +-4.303 16.976 0.262 0 0 0 0 0 0 0 +-4.346 16.922 0.262 0 0 0 0 0 0 0 +-3.787 14.354 0.254 0 0 0 0 0 0 0 +-3.509 13.04 0.249 0 0 0 0 0 0 0 +-3.548 13.025 0.249 0 0 0 0 0 0 0 +-4.009 14.37 0.254 0 0 0 0 0 0 0 +-4.068 14.406 0.254 0 0 0 0 0 0 0 +-4.115 14.401 0.254 0 0 0 0 0 0 0 +-4.149 14.433 0.254 0 0 0 0 0 0 0 +-4.193 14.416 0.254 0 0 0 0 0 0 0 +-2.778 8.988 0.236 0 0 0 0 0 0 0 +-2.79 8.925 0.236 0 0 0 0 0 0 0 +-2.794 8.889 0.236 0 0 0 0 0 0 0 +-2.804 8.822 0.236 0 0 0 0 0 0 0 +-2.824 8.789 0.236 0 0 0 0 0 0 0 +-2.838 8.74 0.236 0 0 0 0 0 0 0 +-2.839 8.649 0.235 0 0 0 0 0 0 0 +-2.858 8.614 0.235 0 0 0 0 0 0 0 +-2.892 8.626 0.235 0 0 0 0 0 0 0 +-2.902 8.611 0.235 0 0 0 0 0 0 0 +-2.916 8.563 0.235 0 0 0 0 0 0 0 +-2.932 8.523 0.235 0 0 0 0 0 0 0 +-2.949 8.485 0.235 0 0 0 0 0 0 0 +-2.973 8.469 0.235 0 0 0 0 0 0 0 +-3.005 8.474 0.235 0 0 0 0 0 0 0 +-3.042 8.495 0.235 0 0 0 0 0 0 0 +-2.999 8.33 0.235 0 0 0 0 0 0 0 +-4.66 12.859 0.25 0 0 0 0 0 0 0 +-4.712 12.878 0.25 0 0 0 0 0 0 0 +-4.736 12.818 0.25 0 0 0 0 0 0 0 +-3.051 8.151 0.234 0 0 0 0 0 0 0 +-3.072 8.128 0.234 0 0 0 0 0 0 0 +-4.792 12.601 0.249 0 0 0 0 0 0 0 +-3.735 9.025 0.238 0 0 0 0 0 0 0 +-3.766 9.019 0.238 0 0 0 0 0 0 0 +-3.809 9.042 0.238 0 0 0 0 0 0 0 +-3.842 9.041 0.238 0 0 0 0 0 0 0 +-3.85 8.983 0.238 0 0 0 0 0 0 0 +-3.264 7.539 0.233 0 0 0 0 0 0 0 +-3.26 7.432 0.232 0 0 0 0 0 0 0 +-3.232 7.304 0.232 0 0 0 0 0 0 0 +-3.303 7.404 0.232 0 0 0 0 0 0 0 +-3.442 7.589 0.233 0 0 0 0 0 0 0 +-3.854 8.434 0.236 0 0 0 0 0 0 0 +-5.023 10.873 0.245 0 0 0 0 0 0 0 +-4.274 9.091 0.238 0 0 0 0 0 0 0 +-4.314 9.103 0.239 0 0 0 0 0 0 0 +-4.354 9.113 0.239 0 0 0 0 0 0 0 +-4.482 9.306 0.239 0 0 0 0 0 0 0 +-4.37 9.036 0.238 0 0 0 0 0 0 0 +-4.987 9.185 0.24 0 0 0 0 0 0 0 +-4.996 9.132 0.24 0 0 0 0 0 0 0 +-5.054 9.171 0.24 0 0 0 0 0 0 0 +-5.06 9.113 0.24 0 0 0 0 0 0 0 +-5.064 9.053 0.24 0 0 0 0 0 0 0 +-5.073 9.002 0.239 0 0 0 0 0 0 0 +-5.096 9.01 0.239 0 0 0 0 0 0 0 +-5.13 9.004 0.239 0 0 0 0 0 0 0 +-5.177 9.021 0.24 0 0 0 0 0 0 0 +-5.182 8.963 0.239 0 0 0 0 0 0 0 +-5.174 8.885 0.239 0 0 0 0 0 0 0 +-5.176 8.823 0.239 0 0 0 0 0 0 0 +-5.178 8.764 0.239 0 0 0 0 0 0 0 +-5.187 8.747 0.239 0 0 0 0 0 0 0 +-5.146 8.494 0.238 0 0 0 0 0 0 0 +-5.166 8.466 0.238 0 0 0 0 0 0 0 +-5.172 8.417 0.238 0 0 0 0 0 0 0 +-5.121 8.275 0.237 0 0 0 0 0 0 0 +-5.042 8.089 0.237 0 0 0 0 0 0 0 +-4.865 7.777 0.236 0 0 0 0 0 0 0 +-4.891 7.763 0.236 0 0 0 0 0 0 0 +-4.956 7.812 0.236 0 0 0 0 0 0 0 +-4.991 7.706 0.236 0 0 0 0 0 0 0 +-5.021 7.672 0.236 0 0 0 0 0 0 0 +-5.044 7.655 0.236 0 0 0 0 0 0 0 +-5.041 7.597 0.236 0 0 0 0 0 0 0 +-41.716 62.789 0.444 0 0 0 0 0 0 0 +-39.435 58.551 0.429 0 0 0 0 0 0 0 +-39.723 58.581 0.43 0 0 0 0 0 0 0 +-39.994 58.387 0.43 0 0 0 0 0 0 0 +-39.927 57.897 0.429 0 0 0 0 0 0 0 +-40.056 57.695 0.428 0 0 0 0 0 0 0 +-41.061 58.75 0.433 0 0 0 0 0 0 0 +-40.796 57.981 0.43 0 0 0 0 0 0 0 +-41.16 58.11 0.431 0 0 0 0 0 0 0 +-41.128 57.679 0.43 0 0 0 0 0 0 0 +-45.191 63.171 0.452 0 0 0 0 0 0 0 +-45.48 63.155 0.452 0 0 0 0 0 0 0 +-45.733 63.088 0.452 0 0 0 0 0 0 0 +-45.977 63.007 0.453 0 0 0 0 0 0 0 +-46.231 62.938 0.453 0 0 0 0 0 0 0 +-46.959 63.512 0.456 0 0 0 0 0 0 0 +-47.48 63.796 0.457 0 0 0 0 0 0 0 +-48.028 63.902 0.459 0 0 0 0 0 0 0 +-48.166 63.668 0.458 0 0 0 0 0 0 0 +-48.296 63.424 0.458 0 0 0 0 0 0 0 +-48.439 63.199 0.458 0 0 0 0 0 0 0 +-48.575 62.966 0.457 0 0 0 0 0 0 0 +-48.705 62.726 0.457 0 0 0 0 0 0 0 +-33.827 43.13 0.38 0 0 0 0 0 0 0 +-33.937 42.992 0.379 0 0 0 0 0 0 0 +-34.137 42.967 0.38 0 0 0 0 0 0 0 +-34.168 42.73 0.379 0 0 0 0 0 0 0 +-34.214 42.513 0.379 0 0 0 0 0 0 0 +-23.598 28.842 0.324 0 0 0 0 0 0 0 +-23.667 28.741 0.324 0 0 0 0 0 0 0 +-23.749 28.657 0.324 0 0 0 0 0 0 0 +-23.876 28.627 0.324 0 0 0 0 0 0 0 +-23.975 28.563 0.324 0 0 0 0 0 0 0 +-36.634 43.388 0.386 0 0 0 0 0 0 0 +-36.74 43.237 0.386 0 0 0 0 0 0 0 +-36.781 43.148 0.386 0 0 0 0 0 0 0 +-30.984 35.654 0.356 0 0 0 0 0 0 0 +-30.812 35.232 0.354 0 0 0 0 0 0 0 +-36.577 39.893 0.377 0 0 0 0 0 0 0 +-36.732 39.81 0.378 0 0 0 0 0 0 0 +-21.623 22.765 0.306 0 0 0 0 0 0 0 +-21.597 22.594 0.305 0 0 0 0 0 0 0 +-21.622 22.478 0.305 0 0 0 0 0 0 0 +-21.64 22.427 0.305 0 0 0 0 0 0 0 +-21.716 22.365 0.305 0 0 0 0 0 0 0 +-21.753 22.262 0.305 0 0 0 0 0 0 0 +-21.871 21.827 0.304 0 0 0 0 0 0 0 +-22.102 21.308 0.304 0 0 0 0 0 0 0 +-22.172 21.242 0.304 0 0 0 0 0 0 0 +-32.382 29.983 0.346 0 0 0 0 0 0 0 +-32.447 29.854 0.346 0 0 0 0 0 0 0 +-32.511 29.725 0.346 0 0 0 0 0 0 0 +-35.845 32.467 0.359 0 0 0 0 0 0 0 +-35.868 32.284 0.359 0 0 0 0 0 0 0 +-35.913 32.12 0.359 0 0 0 0 0 0 0 +-35.967 31.966 0.358 0 0 0 0 0 0 0 +-36.006 31.799 0.358 0 0 0 0 0 0 0 +-36.045 31.632 0.358 0 0 0 0 0 0 0 +-36.035 31.523 0.358 0 0 0 0 0 0 0 +-36.058 31.344 0.357 0 0 0 0 0 0 0 +-36.099 31.181 0.357 0 0 0 0 0 0 0 +-36.132 31.011 0.357 0 0 0 0 0 0 0 +-36.154 30.834 0.357 0 0 0 0 0 0 0 +-36.184 30.663 0.356 0 0 0 0 0 0 0 +-36.227 30.504 0.356 0 0 0 0 0 0 0 +-36.21 30.393 0.356 0 0 0 0 0 0 0 +-36.232 30.218 0.356 0 0 0 0 0 0 0 +-36.26 30.049 0.355 0 0 0 0 0 0 0 +-36.29 29.882 0.355 0 0 0 0 0 0 0 +-36.702 30.029 0.356 0 0 0 0 0 0 0 +-36.664 29.806 0.356 0 0 0 0 0 0 0 +-36.552 29.334 0.355 0 0 0 0 0 0 0 +-36.471 29.176 0.354 0 0 0 0 0 0 0 +-33.86 26.91 0.343 0 0 0 0 0 0 0 +-36.4 28.56 0.353 0 0 0 0 0 0 0 +-36.425 28.395 0.352 0 0 0 0 0 0 0 +-36.459 28.238 0.352 0 0 0 0 0 0 0 +-36.479 28.07 0.352 0 0 0 0 0 0 0 +-36.445 27.953 0.352 0 0 0 0 0 0 0 +-36.45 27.776 0.351 0 0 0 0 0 0 0 +-18.402 13.915 0.28 0 0 0 0 0 0 0 +-18.462 13.87 0.28 0 0 0 0 0 0 0 +-36.494 27.269 0.35 0 0 0 0 0 0 0 +-36.519 27.109 0.35 0 0 0 0 0 0 0 +-36.507 26.923 0.35 0 0 0 0 0 0 0 +-36.53 26.851 0.35 0 0 0 0 0 0 0 +-36.676 26.781 0.35 0 0 0 0 0 0 0 +-36.82 26.709 0.35 0 0 0 0 0 0 0 +-36.963 26.637 0.35 0 0 0 0 0 0 0 +-37.079 26.544 0.351 0 0 0 0 0 0 0 +-37.238 26.481 0.351 0 0 0 0 0 0 0 +-37.276 26.332 0.351 0 0 0 0 0 0 0 +-37.249 26.225 0.35 0 0 0 0 0 0 0 +-32.808 22.941 0.333 0 0 0 0 0 0 0 +-6.592 4.553 0.232 0 0 0 0 0 0 0 +-6.611 4.536 0.232 0 0 0 0 0 0 0 +-6.617 4.509 0.232 0 0 0 0 0 0 0 +-6.618 4.48 0.232 0 0 0 0 0 0 0 +-6.63 4.458 0.232 0 0 0 0 0 0 0 +-6.631 4.428 0.232 0 0 0 0 0 0 0 +-6.631 4.413 0.232 0 0 0 0 0 0 0 +-6.643 4.391 0.232 0 0 0 0 0 0 0 +-6.645 4.362 0.232 0 0 0 0 0 0 0 +-6.657 4.34 0.232 0 0 0 0 0 0 0 +-6.656 4.31 0.232 0 0 0 0 0 0 0 +-6.661 4.283 0.232 0 0 0 0 0 0 0 +-6.676 4.263 0.232 0 0 0 0 0 0 0 +-6.669 4.244 0.232 0 0 0 0 0 0 0 +-6.684 4.224 0.232 0 0 0 0 0 0 0 +-6.667 4.184 0.232 0 0 0 0 0 0 0 +-6.641 4.139 0.231 0 0 0 0 0 0 0 +-36.848 22.621 0.343 0 0 0 0 0 0 0 +-36.926 22.589 0.343 0 0 0 0 0 0 0 +-36.312 21.901 0.34 0 0 0 0 0 0 0 +-36.327 21.755 0.34 0 0 0 0 0 0 0 +-36.313 21.591 0.34 0 0 0 0 0 0 0 +-36.305 21.432 0.34 0 0 0 0 0 0 0 +-36.289 21.27 0.339 0 0 0 0 0 0 0 +-36.236 21.162 0.339 0 0 0 0 0 0 0 +-36.235 21.009 0.339 0 0 0 0 0 0 0 +-36.214 20.845 0.339 0 0 0 0 0 0 0 +-36.203 20.687 0.338 0 0 0 0 0 0 0 +-12.479 7.059 0.252 0 0 0 0 0 0 0 +-12.496 7.017 0.252 0 0 0 0 0 0 0 +-12.518 6.978 0.252 0 0 0 0 0 0 0 +-12.462 6.921 0.252 0 0 0 0 0 0 0 +-12.306 6.783 0.251 0 0 0 0 0 0 0 +-12.32 6.741 0.251 0 0 0 0 0 0 0 +-12.369 6.717 0.251 0 0 0 0 0 0 0 +-12.582 6.782 0.252 0 0 0 0 0 0 0 +-36.264 19.456 0.337 0 0 0 0 0 0 0 +-35.89 18.893 0.335 0 0 0 0 0 0 0 +-35.88 18.744 0.334 0 0 0 0 0 0 0 +-35.862 18.592 0.334 0 0 0 0 0 0 0 +-35.83 18.433 0.334 0 0 0 0 0 0 0 +-35.802 18.276 0.334 0 0 0 0 0 0 0 +-35.788 18.127 0.333 0 0 0 0 0 0 0 +-35.709 17.947 0.333 0 0 0 0 0 0 0 +-35.725 17.884 0.333 0 0 0 0 0 0 0 +-35.666 17.715 0.332 0 0 0 0 0 0 0 +-35.653 17.569 0.332 0 0 0 0 0 0 0 +-14.395 7.02 0.257 0 0 0 0 0 0 0 +-14.393 6.963 0.257 0 0 0 0 0 0 0 +-14.413 6.917 0.257 0 0 0 0 0 0 0 +-14.509 6.907 0.257 0 0 0 0 0 0 0 +-14.675 6.958 0.258 0 0 0 0 0 0 0 +-14.86 6.989 0.259 0 0 0 0 0 0 0 +-14.889 6.946 0.259 0 0 0 0 0 0 0 +-15.159 7.014 0.259 0 0 0 0 0 0 0 +-35.643 16.396 0.33 0 0 0 0 0 0 0 +-35.611 16.245 0.33 0 0 0 0 0 0 0 +-35.596 16.104 0.33 0 0 0 0 0 0 0 +-35.437 15.965 0.329 0 0 0 0 0 0 0 +-35.186 15.719 0.328 0 0 0 0 0 0 0 +-35.151 15.571 0.328 0 0 0 0 0 0 0 +-35.115 15.423 0.328 0 0 0 0 0 0 0 +-35.074 15.273 0.327 0 0 0 0 0 0 0 +-35.041 15.128 0.327 0 0 0 0 0 0 0 +-34.998 14.979 0.327 0 0 0 0 0 0 0 +-34.913 14.878 0.326 0 0 0 0 0 0 0 +-34.901 14.743 0.326 0 0 0 0 0 0 0 +-29.613 12.396 0.308 0 0 0 0 0 0 0 +-34.799 14.443 0.326 0 0 0 0 0 0 0 +-29.683 12.207 0.308 0 0 0 0 0 0 0 +-34.676 14.137 0.325 0 0 0 0 0 0 0 +-34.672 14.009 0.325 0 0 0 0 0 0 0 +-34.772 13.986 0.325 0 0 0 0 0 0 0 +-35.089 13.985 0.326 0 0 0 0 0 0 0 +-35.205 13.904 0.326 0 0 0 0 0 0 0 +-34.658 13.436 0.324 0 0 0 0 0 0 0 +-34.909 13.408 0.325 0 0 0 0 0 0 0 +-35.113 13.36 0.325 0 0 0 0 0 0 0 +-34.223 12.836 0.322 0 0 0 0 0 0 0 +-29.667 11.018 0.307 0 0 0 0 0 0 0 +-29.648 10.904 0.306 0 0 0 0 0 0 0 +-29.668 10.806 0.306 0 0 0 0 0 0 0 +-29.755 10.732 0.307 0 0 0 0 0 0 0 +-33.955 12.13 0.32 0 0 0 0 0 0 0 +-33.922 11.998 0.32 0 0 0 0 0 0 0 +-33.861 11.917 0.32 0 0 0 0 0 0 0 +-33.814 11.781 0.32 0 0 0 0 0 0 0 +-33.758 11.643 0.319 0 0 0 0 0 0 0 +-33.713 11.509 0.319 0 0 0 0 0 0 0 +-33.647 11.368 0.319 0 0 0 0 0 0 0 +-33.595 11.233 0.318 0 0 0 0 0 0 0 +-33.714 11.155 0.319 0 0 0 0 0 0 0 +-33.984 11.186 0.32 0 0 0 0 0 0 0 +-34.034 11.084 0.32 0 0 0 0 0 0 0 +-36.227 11.674 0.327 0 0 0 0 0 0 0 +-33.784 10.651 0.318 0 0 0 0 0 0 0 +-33.666 10.498 0.318 0 0 0 0 0 0 0 +-33.052 10.135 0.316 0 0 0 0 0 0 0 +-33.023 10.012 0.316 0 0 0 0 0 0 0 +-32.979 9.886 0.315 0 0 0 0 0 0 0 +-32.924 9.757 0.315 0 0 0 0 0 0 0 +-32.86 9.626 0.315 0 0 0 0 0 0 0 +-32.792 9.494 0.314 0 0 0 0 0 0 0 +-32.724 9.363 0.314 0 0 0 0 0 0 0 +-32.662 9.29 0.314 0 0 0 0 0 0 0 +-32.591 9.159 0.314 0 0 0 0 0 0 0 +-32.533 9.032 0.313 0 0 0 0 0 0 0 +-32.478 8.907 0.313 0 0 0 0 0 0 0 +-32.411 8.779 0.313 0 0 0 0 0 0 0 +-32.325 8.647 0.312 0 0 0 0 0 0 0 +-32.298 8.531 0.312 0 0 0 0 0 0 0 +-32.369 8.495 0.312 0 0 0 0 0 0 0 +-32.332 8.377 0.312 0 0 0 0 0 0 0 +-32.575 8.331 0.313 0 0 0 0 0 0 0 +-32.124 7.894 0.311 0 0 0 0 0 0 0 +-32.201 7.805 0.311 0 0 0 0 0 0 0 +-31.611 7.504 0.309 0 0 0 0 0 0 0 +-31.578 7.392 0.309 0 0 0 0 0 0 0 +-31.534 7.277 0.309 0 0 0 0 0 0 0 +-31.46 7.156 0.309 0 0 0 0 0 0 0 +-31.392 7.037 0.308 0 0 0 0 0 0 0 +-31.324 6.918 0.308 0 0 0 0 0 0 0 +-31.253 6.851 0.308 0 0 0 0 0 0 0 +-31.177 6.731 0.307 0 0 0 0 0 0 0 +-31.106 6.614 0.307 0 0 0 0 0 0 0 +-31.05 6.5 0.307 0 0 0 0 0 0 0 +-30.967 6.381 0.306 0 0 0 0 0 0 0 +-27.171 5.507 0.294 0 0 0 0 0 0 0 +-30.828 6.15 0.306 0 0 0 0 0 0 0 +-30.729 6.081 0.306 0 0 0 0 0 0 0 +-30.723 5.979 0.305 0 0 0 0 0 0 0 +-30.834 5.9 0.306 0 0 0 0 0 0 0 +-31.064 5.843 0.306 0 0 0 0 0 0 0 +-31.045 5.739 0.306 0 0 0 0 0 0 0 +-31.1 5.648 0.306 0 0 0 0 0 0 0 +-30.521 5.344 0.304 0 0 0 0 0 0 0 +-30.77 5.338 0.305 0 0 0 0 0 0 0 +-30.006 5.011 0.303 0 0 0 0 0 0 0 +-29.936 4.903 0.302 0 0 0 0 0 0 0 +-29.871 4.796 0.302 0 0 0 0 0 0 0 +-29.787 4.686 0.302 0 0 0 0 0 0 0 +-29.716 4.58 0.302 0 0 0 0 0 0 0 +-29.637 4.52 0.301 0 0 0 0 0 0 0 +-29.566 4.414 0.301 0 0 0 0 0 0 0 +-29.502 4.309 0.301 0 0 0 0 0 0 0 +-29.422 4.203 0.3 0 0 0 0 0 0 0 +-29.35 4.099 0.3 0 0 0 0 0 0 0 +-29.284 3.996 0.3 0 0 0 0 0 0 0 +-29.191 3.89 0.3 0 0 0 0 0 0 0 +-29.126 3.788 0.299 0 0 0 0 0 0 0 +-29.06 3.733 0.299 0 0 0 0 0 0 0 +-28.955 3.627 0.299 0 0 0 0 0 0 0 +-28.879 3.525 0.299 0 0 0 0 0 0 0 +-28.953 3.442 0.299 0 0 0 0 0 0 0 +-29.284 3.388 0.3 0 0 0 0 0 0 0 +-29.038 3.267 0.299 0 0 0 0 0 0 0 +-28.949 3.165 0.299 0 0 0 0 0 0 0 +-28.86 3.109 0.298 0 0 0 0 0 0 0 +-28.772 3.008 0.298 0 0 0 0 0 0 0 +-28.722 2.912 0.298 0 0 0 0 0 0 0 +-28.647 2.813 0.298 0 0 0 0 0 0 0 +-28.57 2.715 0.297 0 0 0 0 0 0 0 +-28.475 2.616 0.297 0 0 0 0 0 0 0 +-28.298 2.51 0.296 0 0 0 0 0 0 0 +-27.933 2.433 0.295 0 0 0 0 0 0 0 +-27.851 2.337 0.295 0 0 0 0 0 0 0 +-27.791 2.244 0.295 0 0 0 0 0 0 0 +-27.712 2.15 0.294 0 0 0 0 0 0 0 +-27.639 2.057 0.294 0 0 0 0 0 0 0 +-27.543 1.963 0.294 0 0 0 0 0 0 0 +-27.47 1.871 0.294 0 0 0 0 0 0 0 +-27.397 1.823 0.293 0 0 0 0 0 0 0 +-27.3 1.73 0.293 0 0 0 0 0 0 0 +-21.576 1.294 0.275 0 0 0 0 0 0 0 +-21.529 1.223 0.275 0 0 0 0 0 0 0 +-21.504 1.154 0.275 0 0 0 0 0 0 0 +-21.506 1.086 0.275 0 0 0 0 0 0 0 +-21.485 1.017 0.275 0 0 0 0 0 0 0 +-21.493 0.984 0.275 0 0 0 0 0 0 0 +-21.544 0.919 0.275 0 0 0 0 0 0 0 +-21.614 0.854 0.275 0 0 0 0 0 0 0 +-26.885 0.984 0.292 0 0 0 0 0 0 0 +-26.816 0.897 0.291 0 0 0 0 0 0 0 +-26.717 0.809 0.291 0 0 0 0 0 0 0 +-26.645 0.723 0.291 0 0 0 0 0 0 0 +-26.564 0.637 0.291 0 0 0 0 0 0 0 +-26.487 0.594 0.29 0 0 0 0 0 0 0 +-26.41 0.509 0.29 0 0 0 0 0 0 0 +-26.326 0.425 0.29 0 0 0 0 0 0 0 +-26.051 0.338 0.289 0 0 0 0 0 0 0 +-25.842 0.254 0.288 0 0 0 0 0 0 0 +-25.779 0.172 0.288 0 0 0 0 0 0 0 +-25.701 0.091 0.288 0 0 0 0 0 0 0 +-25.615 0.05 0.288 0 0 0 0 0 0 0 +-25.533 -0.03 0.287 0 0 0 0 0 0 0 +-25.463 -0.11 0.287 0 0 0 0 0 0 0 +-25.369 -0.19 0.287 0 0 0 0 0 0 0 +-25.286 -0.269 0.287 0 0 0 0 0 0 0 +-25.213 -0.347 0.286 0 0 0 0 0 0 0 +-25.132 -0.425 0.286 0 0 0 0 0 0 0 +-25.053 -0.463 0.286 0 0 0 0 0 0 0 +-24.975 -0.54 0.286 0 0 0 0 0 0 0 +-24.888 -0.617 0.285 0 0 0 0 0 0 0 +-24.812 -0.693 0.285 0 0 0 0 0 0 0 +-24.735 -0.769 0.285 0 0 0 0 0 0 0 +-24.661 -0.844 0.285 0 0 0 0 0 0 0 +-24.644 -0.921 0.285 0 0 0 0 0 0 0 +-24.699 -0.962 0.285 0 0 0 0 0 0 0 +-24.713 -1.04 0.285 0 0 0 0 0 0 0 +-24.636 -1.114 0.285 0 0 0 0 0 0 0 +-24.908 -1.205 0.285 0 0 0 0 0 0 0 +-25.052 -1.291 0.286 0 0 0 0 0 0 0 +-24.027 -1.39 0.283 0 0 0 0 0 0 0 +-23.961 -1.462 0.282 0 0 0 0 0 0 0 +-23.89 -1.533 0.282 0 0 0 0 0 0 0 +-23.808 -1.565 0.282 0 0 0 0 0 0 0 +-23.723 -1.635 0.282 0 0 0 0 0 0 0 +-15.935 -1.157 0.257 0 0 0 0 0 0 0 +-15.922 -1.206 0.257 0 0 0 0 0 0 0 +-15.94 -1.258 0.257 0 0 0 0 0 0 0 +-16.219 -1.331 0.258 0 0 0 0 0 0 0 +-15.929 -1.358 0.257 0 0 0 0 0 0 0 +-15.911 -1.382 0.257 0 0 0 0 0 0 0 +-15.73 -1.416 0.257 0 0 0 0 0 0 0 +-15.745 -1.467 0.257 0 0 0 0 0 0 0 +-15.748 -1.617 0.257 0 0 0 0 0 0 0 +-15.789 -1.672 0.257 0 0 0 0 0 0 0 +-22.652 -2.423 0.279 0 0 0 0 0 0 0 +-22.68 -2.498 0.279 0 0 0 0 0 0 0 +-22.662 -2.568 0.279 0 0 0 0 0 0 0 +-22.696 -2.644 0.279 0 0 0 0 0 0 0 +-22.679 -2.714 0.279 0 0 0 0 0 0 0 +-22.701 -2.789 0.279 0 0 0 0 0 0 0 +-22.68 -2.859 0.279 0 0 0 0 0 0 0 +-22.713 -2.899 0.279 0 0 0 0 0 0 0 +-22.702 -2.97 0.279 0 0 0 0 0 0 0 +-22.726 -3.046 0.279 0 0 0 0 0 0 0 +-22.716 -3.118 0.279 0 0 0 0 0 0 0 +-22.671 -3.184 0.279 0 0 0 0 0 0 0 +-22.702 -3.261 0.279 0 0 0 0 0 0 0 +-22.684 -3.331 0.279 0 0 0 0 0 0 0 +-22.702 -3.37 0.279 0 0 0 0 0 0 0 +-22.595 -3.427 0.279 0 0 0 0 0 0 0 +-22.54 -3.491 0.279 0 0 0 0 0 0 0 +-22.436 -3.548 0.278 0 0 0 0 0 0 0 +-22.36 -3.608 0.278 0 0 0 0 0 0 0 +-22.285 -3.668 0.278 0 0 0 0 0 0 0 +-22.219 -3.728 0.278 0 0 0 0 0 0 0 +-21.01 -3.629 0.274 0 0 0 0 0 0 0 +-20.94 -3.685 0.274 0 0 0 0 0 0 0 +-20.865 -3.739 0.274 0 0 0 0 0 0 0 +-20.792 -3.794 0.273 0 0 0 0 0 0 0 +-20.713 -3.847 0.273 0 0 0 0 0 0 0 +-20.646 -3.901 0.273 0 0 0 0 0 0 0 +-20.588 -3.957 0.273 0 0 0 0 0 0 0 +-20.507 -3.975 0.273 0 0 0 0 0 0 0 +-20.438 -4.029 0.272 0 0 0 0 0 0 0 +-20.359 -4.08 0.272 0 0 0 0 0 0 0 +-20.279 -4.13 0.272 0 0 0 0 0 0 0 +-20.205 -4.181 0.272 0 0 0 0 0 0 0 +-20.145 -4.235 0.272 0 0 0 0 0 0 0 +-20.049 -4.281 0.271 0 0 0 0 0 0 0 +-19.978 -4.298 0.271 0 0 0 0 0 0 0 +-19.927 -4.353 0.271 0 0 0 0 0 0 0 +-19.832 -4.398 0.271 0 0 0 0 0 0 0 +-19.786 -4.453 0.271 0 0 0 0 0 0 0 +-19.694 -4.497 0.27 0 0 0 0 0 0 0 +-19.594 -4.539 0.27 0 0 0 0 0 0 0 +-19.531 -4.59 0.27 0 0 0 0 0 0 0 +-19.557 -4.628 0.27 0 0 0 0 0 0 0 +-19.577 -4.698 0.27 0 0 0 0 0 0 0 +-19.594 -4.767 0.27 0 0 0 0 0 0 0 +-19.812 -4.886 0.271 0 0 0 0 0 0 0 +-19.757 -4.938 0.271 0 0 0 0 0 0 0 +-19.806 -5.016 0.271 0 0 0 0 0 0 0 +-19.765 -5.072 0.271 0 0 0 0 0 0 0 +-19.107 -5.064 0.269 0 0 0 0 0 0 0 +-19.234 -5.163 0.27 0 0 0 0 0 0 0 +-19.328 -5.253 0.27 0 0 0 0 0 0 0 +-19.198 -5.282 0.27 0 0 0 0 0 0 0 +-18.925 -5.272 0.269 0 0 0 0 0 0 0 +-18.436 -5.23 0.267 0 0 0 0 0 0 0 +-18.342 -5.266 0.267 0 0 0 0 0 0 0 +-18.32 -5.322 0.267 0 0 0 0 0 0 0 +-18.232 -5.358 0.267 0 0 0 0 0 0 0 +-18.181 -5.405 0.267 0 0 0 0 0 0 0 +-18.093 -5.441 0.266 0 0 0 0 0 0 0 +-18.04 -5.456 0.266 0 0 0 0 0 0 0 +-17.956 -5.493 0.266 0 0 0 0 0 0 0 +-17.906 -5.539 0.266 0 0 0 0 0 0 0 +-17.822 -5.575 0.266 0 0 0 0 0 0 0 +-17.776 -5.621 0.266 0 0 0 0 0 0 0 +-17.678 -5.652 0.265 0 0 0 0 0 0 0 +-17.622 -5.695 0.265 0 0 0 0 0 0 0 +-17.537 -5.729 0.265 0 0 0 0 0 0 0 +-17.5 -5.747 0.265 0 0 0 0 0 0 0 +-17.411 -5.779 0.265 0 0 0 0 0 0 0 +-17.361 -5.823 0.265 0 0 0 0 0 0 0 +-17.276 -5.855 0.264 0 0 0 0 0 0 0 +-17.235 -5.901 0.264 0 0 0 0 0 0 0 +-17.135 -5.927 0.264 0 0 0 0 0 0 0 +-17.088 -5.971 0.264 0 0 0 0 0 0 0 +-17.012 -5.975 0.264 0 0 0 0 0 0 0 +-16.975 -6.022 0.264 0 0 0 0 0 0 0 +-16.786 -6.015 0.263 0 0 0 0 0 0 0 +-16.809 -6.082 0.263 0 0 0 0 0 0 0 +-16.771 -6.128 0.263 0 0 0 0 0 0 0 +-16.678 -6.154 0.263 0 0 0 0 0 0 0 +-16.625 -6.194 0.263 0 0 0 0 0 0 0 +-16.557 -6.198 0.263 0 0 0 0 0 0 0 +-16.509 -6.24 0.262 0 0 0 0 0 0 0 +-16.43 -6.269 0.262 0 0 0 0 0 0 0 +-16.371 -6.305 0.262 0 0 0 0 0 0 0 +-16.295 -6.335 0.262 0 0 0 0 0 0 0 +-16.238 -6.372 0.262 0 0 0 0 0 0 0 +-16.171 -6.404 0.262 0 0 0 0 0 0 0 +-16.137 -6.42 0.262 0 0 0 0 0 0 0 +-16.05 -6.444 0.261 0 0 0 0 0 0 0 +-16.013 -6.488 0.261 0 0 0 0 0 0 0 +-15.957 -6.524 0.261 0 0 0 0 0 0 0 +-15.977 -6.591 0.261 0 0 0 0 0 0 0 +-15.955 -6.64 0.261 0 0 0 0 0 0 0 +-15.945 -6.695 0.261 0 0 0 0 0 0 0 +-15.814 -6.669 0.261 0 0 0 0 0 0 0 +-15.775 -6.711 0.261 0 0 0 0 0 0 0 +-15.715 -6.744 0.261 0 0 0 0 0 0 0 +-15.733 -6.81 0.261 0 0 0 0 0 0 0 +-16.021 -6.994 0.262 0 0 0 0 0 0 0 +-16.017 -7.053 0.262 0 0 0 0 0 0 0 +-16.039 -7.122 0.262 0 0 0 0 0 0 0 +-16.041 -7.153 0.262 0 0 0 0 0 0 0 +-16.045 -7.216 0.262 0 0 0 0 0 0 0 +-16.059 -7.283 0.262 0 0 0 0 0 0 0 +-16.06 -7.344 0.262 0 0 0 0 0 0 0 +-16.075 -7.412 0.263 0 0 0 0 0 0 0 +-16.057 -7.465 0.263 0 0 0 0 0 0 0 +-16.09 -7.541 0.263 0 0 0 0 0 0 0 +-16.092 -7.574 0.263 0 0 0 0 0 0 0 +-16.115 -7.646 0.263 0 0 0 0 0 0 0 +-16.115 -7.708 0.263 0 0 0 0 0 0 0 +-16.125 -7.775 0.263 0 0 0 0 0 0 0 +-16.093 -7.822 0.263 0 0 0 0 0 0 0 +-16.268 -7.97 0.264 0 0 0 0 0 0 0 +-16.198 -7.999 0.264 0 0 0 0 0 0 0 +-16.454 -8.157 0.265 0 0 0 0 0 0 0 +-16.498 -8.244 0.265 0 0 0 0 0 0 0 +-16.46 -8.289 0.265 0 0 0 0 0 0 0 +-16.468 -8.489 0.265 0 0 0 0 0 0 0 +-16.416 -8.528 0.265 0 0 0 0 0 0 0 +-16.623 -8.668 0.266 0 0 0 0 0 0 0 +-16.582 -8.713 0.266 0 0 0 0 0 0 0 +-16.689 -8.836 0.266 0 0 0 0 0 0 0 +-16.795 -8.959 0.267 0 0 0 0 0 0 0 +-16.783 -9.021 0.267 0 0 0 0 0 0 0 +-16.534 -9.022 0.266 0 0 0 0 0 0 0 +-16.469 -9.053 0.266 0 0 0 0 0 0 0 +-16.462 -9.083 0.266 0 0 0 0 0 0 0 +-16.381 -9.106 0.266 0 0 0 0 0 0 0 +-16.313 -9.136 0.266 0 0 0 0 0 0 0 +-16.285 -9.187 0.266 0 0 0 0 0 0 0 +-16.311 -9.27 0.266 0 0 0 0 0 0 0 +-16.315 -9.34 0.266 0 0 0 0 0 0 0 +-16.339 -9.422 0.266 0 0 0 0 0 0 0 +-16.349 -9.461 0.266 0 0 0 0 0 0 0 +-16.364 -9.539 0.267 0 0 0 0 0 0 0 +-16.363 -9.607 0.267 0 0 0 0 0 0 0 +-16.392 -9.693 0.267 0 0 0 0 0 0 0 +-16.385 -9.759 0.267 0 0 0 0 0 0 0 +-16.406 -9.841 0.267 0 0 0 0 0 0 0 +-16.394 -9.904 0.267 0 0 0 0 0 0 0 +-16.428 -9.96 0.267 0 0 0 0 0 0 0 +-16.412 -10.021 0.267 0 0 0 0 0 0 0 +-16.445 -10.112 0.268 0 0 0 0 0 0 0 +-16.434 -10.176 0.268 0 0 0 0 0 0 0 +-16.459 -10.264 0.268 0 0 0 0 0 0 0 +-16.447 -10.328 0.268 0 0 0 0 0 0 0 +-16.467 -10.413 0.268 0 0 0 0 0 0 0 +-16.441 -10.432 0.268 0 0 0 0 0 0 0 +-16.629 -10.624 0.269 0 0 0 0 0 0 0 +-16.481 -10.603 0.269 0 0 0 0 0 0 0 +-17.118 -11.088 0.271 0 0 0 0 0 0 0 +-16.791 -11.102 0.27 0 0 0 0 0 0 0 +-16.743 -11.109 0.27 0 0 0 0 0 0 0 +-16.923 -11.304 0.271 0 0 0 0 0 0 0 +-16.881 -11.353 0.271 0 0 0 0 0 0 0 +-16.898 -11.442 0.271 0 0 0 0 0 0 0 +-17.131 -11.678 0.272 0 0 0 0 0 0 0 +-17.169 -11.783 0.272 0 0 0 0 0 0 0 +-16.832 -11.669 0.271 0 0 0 0 0 0 0 +-16.815 -11.736 0.271 0 0 0 0 0 0 0 +-16.739 -11.761 0.271 0 0 0 0 0 0 0 +-16.666 -11.788 0.271 0 0 0 0 0 0 0 +-16.629 -11.84 0.271 0 0 0 0 0 0 0 +-16.64 -11.927 0.271 0 0 0 0 0 0 0 +-16.666 -12.025 0.272 0 0 0 0 0 0 0 +-16.696 -12.086 0.272 0 0 0 0 0 0 0 +-16.696 -12.167 0.272 0 0 0 0 0 0 0 +-16.715 -12.261 0.272 0 0 0 0 0 0 0 +-16.718 -12.344 0.272 0 0 0 0 0 0 0 +-16.732 -12.436 0.273 0 0 0 0 0 0 0 +-16.743 -12.525 0.273 0 0 0 0 0 0 0 +-16.735 -12.602 0.273 0 0 0 0 0 0 0 +-16.753 -12.698 0.273 0 0 0 0 0 0 0 +-16.774 -12.756 0.273 0 0 0 0 0 0 0 +-16.802 -12.86 0.274 0 0 0 0 0 0 0 +-16.787 -12.933 0.274 0 0 0 0 0 0 0 +-16.808 -13.033 0.274 0 0 0 0 0 0 0 +-16.78 -13.096 0.274 0 0 0 0 0 0 0 +-16.953 -13.316 0.275 0 0 0 0 0 0 0 +-17.346 -13.712 0.277 0 0 0 0 0 0 0 +-17.118 -13.752 0.276 0 0 0 0 0 0 0 +-17.291 -13.98 0.277 0 0 0 0 0 0 0 +-17.147 -13.954 0.276 0 0 0 0 0 0 0 +-17.486 -14.32 0.278 0 0 0 0 0 0 0 +-17.518 -14.438 0.278 0 0 0 0 0 0 0 +-17.208 -14.32 0.277 0 0 0 0 0 0 0 +-17.177 -14.386 0.277 0 0 0 0 0 0 0 +-17.1 -14.413 0.277 0 0 0 0 0 0 0 +-17.011 -14.43 0.277 0 0 0 0 0 0 0 +-16.964 -14.482 0.277 0 0 0 0 0 0 0 +-16.975 -14.583 0.277 0 0 0 0 0 0 0 +-17.022 -14.67 0.278 0 0 0 0 0 0 0 +-17.036 -14.776 0.278 0 0 0 0 0 0 0 +-17.044 -14.877 0.278 0 0 0 0 0 0 0 +-17.057 -14.983 0.278 0 0 0 0 0 0 0 +-17.064 -15.084 0.279 0 0 0 0 0 0 0 +-17.075 -15.189 0.279 0 0 0 0 0 0 0 +-17.084 -15.293 0.279 0 0 0 0 0 0 0 +-17.121 -15.375 0.279 0 0 0 0 0 0 0 +-17.125 -15.476 0.28 0 0 0 0 0 0 0 +-17.135 -15.583 0.28 0 0 0 0 0 0 0 +-17.157 -15.701 0.28 0 0 0 0 0 0 0 +-17.137 -15.782 0.28 0 0 0 0 0 0 0 +-17.095 -15.843 0.28 0 0 0 0 0 0 0 +-17.517 -16.387 0.282 0 0 0 0 0 0 0 +-17.433 -16.412 0.282 0 0 0 0 0 0 0 +-17.623 -16.695 0.283 0 0 0 0 0 0 0 +-17.569 -16.749 0.283 0 0 0 0 0 0 0 +-17.812 -17.087 0.285 0 0 0 0 0 0 0 +-17.512 -17.012 0.284 0 0 0 0 0 0 0 +-17.493 -17.047 0.284 0 0 0 0 0 0 0 +-17.419 -17.082 0.284 0 0 0 0 0 0 0 +-17.324 -17.096 0.284 0 0 0 0 0 0 0 +-17.328 -17.208 0.284 0 0 0 0 0 0 0 +-17.361 -17.349 0.284 0 0 0 0 0 0 0 +-17.365 -17.463 0.284 0 0 0 0 0 0 0 +-17.377 -17.584 0.285 0 0 0 0 0 0 0 +-17.389 -17.707 0.285 0 0 0 0 0 0 0 +-17.42 -17.794 0.285 0 0 0 0 0 0 0 +-17.435 -17.922 0.286 0 0 0 0 0 0 0 +-17.454 -18.054 0.286 0 0 0 0 0 0 0 +-17.459 -18.174 0.286 0 0 0 0 0 0 0 +-17.467 -18.296 0.287 0 0 0 0 0 0 0 +-17.488 -18.434 0.287 0 0 0 0 0 0 0 +-17.508 -18.571 0.287 0 0 0 0 0 0 0 +-17.881 -19.026 0.289 0 0 0 0 0 0 0 +-18.008 -19.282 0.29 0 0 0 0 0 0 0 +-17.98 -19.373 0.29 0 0 0 0 0 0 0 +-24.614 -26.674 0.321 0 0 0 0 0 0 0 +-21.609 -23.571 0.308 0 0 0 0 0 0 0 +-21.077 -23.136 0.305 0 0 0 0 0 0 0 +-21.397 -23.637 0.307 0 0 0 0 0 0 0 +-25.012 -27.71 0.324 0 0 0 0 0 0 0 +-25.031 -27.906 0.325 0 0 0 0 0 0 0 +-24.929 -27.97 0.325 0 0 0 0 0 0 0 +-24.796 -27.997 0.325 0 0 0 0 0 0 0 +-20.629 -23.446 0.305 0 0 0 0 0 0 0 +-24.828 -28.39 0.326 0 0 0 0 0 0 0 +-24.837 -28.581 0.326 0 0 0 0 0 0 0 +-24.912 -28.758 0.327 0 0 0 0 0 0 0 +-24.922 -28.952 0.327 0 0 0 0 0 0 0 +-24.954 -29.175 0.328 0 0 0 0 0 0 0 +-24.927 -29.329 0.328 0 0 0 0 0 0 0 +-25.259 -29.908 0.33 0 0 0 0 0 0 0 +-25.188 -30.015 0.33 0 0 0 0 0 0 0 +-25.365 -30.516 0.332 0 0 0 0 0 0 0 +-25.262 -30.588 0.332 0 0 0 0 0 0 0 +-25.143 -30.639 0.332 0 0 0 0 0 0 0 +-25.154 -30.85 0.332 0 0 0 0 0 0 0 +-25.184 -31.086 0.333 0 0 0 0 0 0 0 +-25.205 -31.311 0.334 0 0 0 0 0 0 0 +-25.227 -31.541 0.334 0 0 0 0 0 0 0 +-25.299 -31.733 0.335 0 0 0 0 0 0 0 +-25.282 -31.917 0.335 0 0 0 0 0 0 0 +-25.557 -32.472 0.337 0 0 0 0 0 0 0 +-25.562 -32.689 0.338 0 0 0 0 0 0 0 +-25.676 -33.262 0.339 0 0 0 0 0 0 0 +-25.566 -33.336 0.339 0 0 0 0 0 0 0 +-25.512 -33.375 0.339 0 0 0 0 0 0 0 +-25.549 -33.641 0.34 0 0 0 0 0 0 0 +-25.572 -33.892 0.341 0 0 0 0 0 0 0 +-25.597 -34.147 0.341 0 0 0 0 0 0 0 +-25.617 -34.398 0.342 0 0 0 0 0 0 0 +-25.635 -34.649 0.343 0 0 0 0 0 0 0 +-25.854 -35.176 0.344 0 0 0 0 0 0 0 +-25.947 -35.418 0.345 0 0 0 0 0 0 0 +-26.125 -35.897 0.347 0 0 0 0 0 0 0 +-26.017 -35.985 0.347 0 0 0 0 0 0 0 +-25.878 -36.031 0.347 0 0 0 0 0 0 0 +-25.849 -36.229 0.347 0 0 0 0 0 0 0 +-25.885 -36.522 0.348 0 0 0 0 0 0 0 +-25.918 -36.813 0.349 0 0 0 0 0 0 0 +-26.007 -37.063 0.35 0 0 0 0 0 0 0 +-25.912 -37.175 0.35 0 0 0 0 0 0 0 +-26.056 -37.633 0.351 0 0 0 0 0 0 0 +-26.094 -37.942 0.352 0 0 0 0 0 0 0 +-26.11 -38.22 0.353 0 0 0 0 0 0 0 +-26.347 -38.828 0.355 0 0 0 0 0 0 0 +-26.527 -39.493 0.357 0 0 0 0 0 0 0 +-26.399 -39.569 0.357 0 0 0 0 0 0 0 +-26.335 -39.744 0.357 0 0 0 0 0 0 0 +-26.379 -40.084 0.358 0 0 0 0 0 0 0 +-26.419 -40.419 0.359 0 0 0 0 0 0 0 +-26.446 -40.74 0.36 0 0 0 0 0 0 0 +-26.502 -41.107 0.361 0 0 0 0 0 0 0 +-26.792 -41.7 0.363 0 0 0 0 0 0 0 +-26.925 -42.197 0.365 0 0 0 0 0 0 0 +-26.794 -42.285 0.365 0 0 0 0 0 0 0 +-26.666 -42.377 0.365 0 0 0 0 0 0 0 +-26.716 -42.752 0.366 0 0 0 0 0 0 0 +-26.77 -43.14 0.367 0 0 0 0 0 0 0 +-26.799 -43.491 0.368 0 0 0 0 0 0 0 +-26.978 -43.935 0.369 0 0 0 0 0 0 0 +-27.215 -44.951 0.372 0 0 0 0 0 0 0 +-27.075 -45.039 0.372 0 0 0 0 0 0 0 +-27.064 -45.342 0.373 0 0 0 0 0 0 0 +-27.098 -45.725 0.374 0 0 0 0 0 0 0 +-27.107 -46.07 0.375 0 0 0 0 0 0 0 +-27.868 -47.703 0.381 0 0 0 0 0 0 0 +-27.796 -47.752 0.381 0 0 0 0 0 0 0 +-27.653 -47.851 0.381 0 0 0 0 0 0 0 +-27.502 -47.936 0.381 0 0 0 0 0 0 0 +-27.421 -48.146 0.381 0 0 0 0 0 0 0 +-27.481 -48.604 0.383 0 0 0 0 0 0 0 +-27.538 -49.065 0.384 0 0 0 0 0 0 0 +-27.957 -50.178 0.388 0 0 0 0 0 0 0 +-27.88 -50.226 0.388 0 0 0 0 0 0 0 +-27.734 -50.334 0.388 0 0 0 0 0 0 0 +-27.792 -50.816 0.389 0 0 0 0 0 0 0 +-27.841 -51.288 0.391 0 0 0 0 0 0 0 +-27.959 -51.892 0.393 0 0 0 0 0 0 0 +-28.273 -52.872 0.396 0 0 0 0 0 0 0 +-28.127 -52.998 0.396 0 0 0 0 0 0 0 +-15.717 -29.751 0.313 0 0 0 0 0 0 0 +-28.198 -53.741 0.398 0 0 0 0 0 0 0 +-28.241 -54.237 0.4 0 0 0 0 0 0 0 +-28.349 -54.864 0.401 0 0 0 0 0 0 0 +-28.543 -55.666 0.404 0 0 0 0 0 0 0 +-28.404 -55.827 0.404 0 0 0 0 0 0 0 +-28.46 -56.374 0.406 0 0 0 0 0 0 0 +-28.575 -56.823 0.407 0 0 0 0 0 0 0 +-28.666 -57.452 0.409 0 0 0 0 0 0 0 +-29.077 -59.202 0.415 0 0 0 0 0 0 0 +-28.901 -59.315 0.415 0 0 0 0 0 0 0 +-28.921 -59.832 0.416 0 0 0 0 0 0 0 +-29.002 -60.483 0.418 0 0 0 0 0 0 0 +-29.361 -61.978 0.423 0 0 0 0 0 0 0 +-29.314 -62.383 0.424 0 0 0 0 0 0 0 +-29.394 -63.067 0.426 0 0 0 0 0 0 0 +-29.874 -64.626 0.431 0 0 0 0 0 0 0 +-29.652 -64.678 0.431 0 0 0 0 0 0 0 +-29.605 -65.115 0.432 0 0 0 0 0 0 0 +-29.775 -65.76 0.434 0 0 0 0 0 0 0 +-29.843 -66.467 0.436 0 0 0 0 0 0 0 +-29.932 -67.227 0.439 0 0 0 0 0 0 0 +-30.023 -68.007 0.441 0 0 0 0 0 0 0 +-15.794 -36.424 0.332 0 0 0 0 0 0 0 +-30.326 -70.48 0.449 0 0 0 0 0 0 0 +-30.84 -72.613 0.455 0 0 0 0 0 0 0 +-30.663 -72.831 0.456 0 0 0 0 0 0 0 +-16.366 -42.796 0.351 0 0 0 0 0 0 0 +-17.491 -48.686 0.37 0 0 0 0 0 0 0 +-17.395 -48.659 0.37 0 0 0 0 0 0 0 +-17.241 -48.71 0.37 0 0 0 0 0 0 0 +-16.42 -46.86 0.363 0 0 0 0 0 0 0 +-16.244 -46.83 0.363 0 0 0 0 0 0 0 +-16.08 -46.831 0.363 0 0 0 0 0 0 0 +-15.806 -47.734 0.365 0 0 0 0 0 0 0 +-15.636 -47.723 0.365 0 0 0 0 0 0 0 +-18.97 -58.502 0.401 0 0 0 0 0 0 0 +-18.793 -58.581 0.401 0 0 0 0 0 0 0 +-20.802 -66.262 0.426 0 0 0 0 0 0 0 +-20.702 -66.306 0.426 0 0 0 0 0 0 0 +-20.341 -66.621 0.426 0 0 0 0 0 0 0 +-20.075 -68.035 0.43 0 0 0 0 0 0 0 +-19.849 -68.056 0.43 0 0 0 0 0 0 0 +-7.214 -78.038 0.454 0 0 0 0 0 0 0 +-5.357 -77.955 0.453 0 0 0 0 0 0 0 +-5.114 -77.99 0.453 0 0 0 0 0 0 0 +-4.887 -78.295 0.454 0 0 0 0 0 0 0 +-4.605 -77.719 0.452 0 0 0 0 0 0 0 +-4.369 -77.868 0.453 0 0 0 0 0 0 0 +-4.248 -77.909 0.453 0 0 0 0 0 0 0 +-2.987 -62.051 0.403 0 0 0 0 0 0 0 +-2.788 -61.956 0.402 0 0 0 0 0 0 0 +-2.596 -62.029 0.403 0 0 0 0 0 0 0 +-2.387 -61.675 0.401 0 0 0 0 0 0 0 +-2.186 -61.498 0.401 0 0 0 0 0 0 0 +-2.09 -61.492 0.401 0 0 0 0 0 0 0 +-1.641 -53.344 0.375 0 0 0 0 0 0 0 +-1.593 -57.573 0.388 0 0 0 0 0 0 0 +-1.415 -57.702 0.389 0 0 0 0 0 0 0 +-0.905 -42.644 0.341 0 0 0 0 0 0 0 +-0.795 -43.92 0.345 0 0 0 0 0 0 0 +-0.656 -43.912 0.345 0 0 0 0 0 0 0 +-0.579 -43.339 0.343 0 0 0 0 0 0 0 +-0.307 -30.75 0.304 0 0 0 0 0 0 0 +-0.301 -42.492 0.341 0 0 0 0 0 0 0 +-0.168 -42.657 0.341 0 0 0 0 0 0 0 +-0.033 -41.961 0.339 0 0 0 0 0 0 0 +0.099 -41.963 0.339 0 0 0 0 0 0 0 +0.231 -41.995 0.339 0 0 0 0 0 0 0 +0.297 -42.006 0.339 0 0 0 0 0 0 0 +0.429 -42.029 0.339 0 0 0 0 0 0 0 +0.561 -42.037 0.339 0 0 0 0 0 0 0 +0.694 -42.047 0.339 0 0 0 0 0 0 0 +0.826 -42.071 0.339 0 0 0 0 0 0 0 +0.959 -42.078 0.339 0 0 0 0 0 0 0 +1.091 -42.097 0.34 0 0 0 0 0 0 0 +1.158 -42.111 0.34 0 0 0 0 0 0 0 +1.291 -42.141 0.34 0 0 0 0 0 0 0 +1.424 -42.153 0.34 0 0 0 0 0 0 0 +1.558 -42.178 0.34 0 0 0 0 0 0 0 +1.691 -42.187 0.34 0 0 0 0 0 0 0 +1.824 -42.212 0.34 0 0 0 0 0 0 0 +1.96 -42.264 0.34 0 0 0 0 0 0 0 +1.969 -41.064 0.336 0 0 0 0 0 0 0 +2.094 -40.972 0.336 0 0 0 0 0 0 0 +2.211 -40.739 0.335 0 0 0 0 0 0 0 +2.437 -42.471 0.341 0 0 0 0 0 0 0 +2.565 -42.366 0.341 0 0 0 0 0 0 0 +3.093 -48.617 0.36 0 0 0 0 0 0 0 +3.248 -48.647 0.36 0 0 0 0 0 0 0 +3.907 -55.933 0.384 0 0 0 0 0 0 0 +3.969 -55.557 0.382 0 0 0 0 0 0 0 +3.916 -52.475 0.373 0 0 0 0 0 0 0 +3.583 -46.026 0.352 0 0 0 0 0 0 0 +3.722 -45.937 0.352 0 0 0 0 0 0 0 +3.854 -45.785 0.352 0 0 0 0 0 0 0 +3.978 -45.54 0.351 0 0 0 0 0 0 0 +4.121 -45.527 0.351 0 0 0 0 0 0 0 +4.193 -45.53 0.351 0 0 0 0 0 0 0 +4.342 -45.579 0.351 0 0 0 0 0 0 0 +4.47 -45.412 0.351 0 0 0 0 0 0 0 +4.608 -45.344 0.35 0 0 0 0 0 0 0 +4.786 -45.675 0.352 0 0 0 0 0 0 0 +4.888 -45.27 0.35 0 0 0 0 0 0 0 +4.966 -45.332 0.351 0 0 0 0 0 0 0 +5.189 -46.034 0.353 0 0 0 0 0 0 0 +5.363 -46.267 0.354 0 0 0 0 0 0 0 +5.266 -44.209 0.347 0 0 0 0 0 0 0 +5.405 -44.196 0.347 0 0 0 0 0 0 0 +5.532 -44.077 0.347 0 0 0 0 0 0 0 +5.657 -43.959 0.347 0 0 0 0 0 0 0 +5.626 -42.65 0.342 0 0 0 0 0 0 0 +5.747 -42.036 0.341 0 0 0 0 0 0 0 +5.872 -41.966 0.34 0 0 0 0 0 0 0 +5.777 -40.362 0.335 0 0 0 0 0 0 0 +5.868 -40.094 0.335 0 0 0 0 0 0 0 +5.993 -40.071 0.335 0 0 0 0 0 0 0 +6.118 -40.045 0.335 0 0 0 0 0 0 0 +6.166 -39.938 0.334 0 0 0 0 0 0 0 +6.328 -40.15 0.335 0 0 0 0 0 0 0 +6.446 -40.078 0.335 0 0 0 0 0 0 0 +6.206 -37.088 0.325 0 0 0 0 0 0 0 +6.27 -36.76 0.324 0 0 0 0 0 0 0 +6.356 -36.571 0.324 0 0 0 0 0 0 0 +6.406 -36.516 0.324 0 0 0 0 0 0 0 +6.483 -36.283 0.323 0 0 0 0 0 0 0 +6.119 -33.629 0.315 0 0 0 0 0 0 0 +4.247 -22.886 0.28 0 0 0 0 0 0 0 +4.307 -22.808 0.28 0 0 0 0 0 0 0 +4.375 -22.777 0.28 0 0 0 0 0 0 0 +4.453 -22.796 0.28 0 0 0 0 0 0 0 +4.502 -22.854 0.28 0 0 0 0 0 0 0 +4.629 -23.118 0.281 0 0 0 0 0 0 0 +4.692 -23.057 0.281 0 0 0 0 0 0 0 +4.758 -23.008 0.281 0 0 0 0 0 0 0 +6.867 -32.747 0.312 0 0 0 0 0 0 0 +6.989 -32.813 0.313 0 0 0 0 0 0 0 +7.096 -32.811 0.313 0 0 0 0 0 0 0 +7.147 -32.794 0.313 0 0 0 0 0 0 0 +7.195 -32.525 0.312 0 0 0 0 0 0 0 +7.077 -31.518 0.309 0 0 0 0 0 0 0 +7.126 -31.274 0.308 0 0 0 0 0 0 0 +7.171 -31.019 0.307 0 0 0 0 0 0 0 +7.215 -30.771 0.306 0 0 0 0 0 0 0 +7.249 -30.483 0.306 0 0 0 0 0 0 0 +7.244 -30.248 0.305 0 0 0 0 0 0 0 +7.272 -29.949 0.304 0 0 0 0 0 0 0 +7.346 -29.844 0.304 0 0 0 0 0 0 0 +7.444 -29.837 0.304 0 0 0 0 0 0 0 +7.547 -29.85 0.304 0 0 0 0 0 0 0 +7.622 -29.754 0.304 0 0 0 0 0 0 0 +7.641 -29.252 0.302 0 0 0 0 0 0 0 +7.486 -28.294 0.299 0 0 0 0 0 0 0 +7.529 -28.098 0.299 0 0 0 0 0 0 0 +7.566 -27.883 0.298 0 0 0 0 0 0 0 +7.599 -27.66 0.297 0 0 0 0 0 0 0 +7.63 -27.436 0.297 0 0 0 0 0 0 0 +7.666 -27.233 0.296 0 0 0 0 0 0 0 +7.653 -27.022 0.295 0 0 0 0 0 0 0 +7.674 -26.775 0.295 0 0 0 0 0 0 0 +7.729 -26.651 0.294 0 0 0 0 0 0 0 +7.822 -26.657 0.294 0 0 0 0 0 0 0 +7.91 -26.646 0.294 0 0 0 0 0 0 0 +7.968 -26.537 0.294 0 0 0 0 0 0 0 +7.99 -26.309 0.293 0 0 0 0 0 0 0 +7.953 -26.038 0.293 0 0 0 0 0 0 0 +7.849 -25.411 0.291 0 0 0 0 0 0 0 +7.883 -25.239 0.29 0 0 0 0 0 0 0 +7.912 -25.054 0.29 0 0 0 0 0 0 0 +7.942 -24.876 0.289 0 0 0 0 0 0 0 +7.964 -24.676 0.289 0 0 0 0 0 0 0 +7.992 -24.499 0.288 0 0 0 0 0 0 0 +7.986 -24.349 0.288 0 0 0 0 0 0 0 +8.004 -24.149 0.287 0 0 0 0 0 0 0 +8.069 -24.092 0.287 0 0 0 0 0 0 0 +8.142 -24.057 0.287 0 0 0 0 0 0 0 +8.199 -23.976 0.287 0 0 0 0 0 0 0 +8.206 -23.752 0.286 0 0 0 0 0 0 0 +8.225 -23.567 0.285 0 0 0 0 0 0 0 +3.683 -10.456 0.242 0 0 0 0 0 0 0 +3.688 -10.365 0.241 0 0 0 0 0 0 0 +3.748 -10.432 0.242 0 0 0 0 0 0 0 +8.197 -22.679 0.283 0 0 0 0 0 0 0 +8.223 -22.529 0.282 0 0 0 0 0 0 0 +8.25 -22.385 0.282 0 0 0 0 0 0 0 +8.276 -22.239 0.282 0 0 0 0 0 0 0 +8.244 -22.046 0.281 0 0 0 0 0 0 0 +8.232 -21.803 0.28 0 0 0 0 0 0 0 +8.27 -21.699 0.28 0 0 0 0 0 0 0 +8.234 -21.402 0.279 0 0 0 0 0 0 0 +8.263 -21.277 0.279 0 0 0 0 0 0 0 +8.281 -21.126 0.278 0 0 0 0 0 0 0 +8.289 -20.951 0.278 0 0 0 0 0 0 0 +8.271 -20.81 0.277 0 0 0 0 0 0 0 +8.332 -20.773 0.277 0 0 0 0 0 0 0 +8.412 -20.783 0.277 0 0 0 0 0 0 0 +8.49 -20.788 0.278 0 0 0 0 0 0 0 +8.51 -20.651 0.277 0 0 0 0 0 0 0 +8.53 -20.517 0.277 0 0 0 0 0 0 0 +8.555 -20.395 0.277 0 0 0 0 0 0 0 +8.538 -20.264 0.276 0 0 0 0 0 0 0 +8.414 -19.795 0.275 0 0 0 0 0 0 0 +8.427 -19.653 0.274 0 0 0 0 0 0 0 +8.473 -19.589 0.274 0 0 0 0 0 0 0 +8.561 -19.625 0.274 0 0 0 0 0 0 0 +8.633 -19.62 0.274 0 0 0 0 0 0 0 +8.665 -19.527 0.274 0 0 0 0 0 0 0 +8.65 -19.411 0.274 0 0 0 0 0 0 0 +8.673 -19.298 0.273 0 0 0 0 0 0 0 +8.693 -19.181 0.273 0 0 0 0 0 0 0 +8.664 -18.957 0.273 0 0 0 0 0 0 0 +8.573 -18.603 0.271 0 0 0 0 0 0 0 +8.605 -18.518 0.271 0 0 0 0 0 0 0 +8.627 -18.415 0.271 0 0 0 0 0 0 0 +8.614 -18.312 0.271 0 0 0 0 0 0 0 +8.631 -18.198 0.27 0 0 0 0 0 0 0 +8.651 -18.093 0.27 0 0 0 0 0 0 0 +8.671 -17.989 0.27 0 0 0 0 0 0 0 +8.727 -17.961 0.27 0 0 0 0 0 0 0 +8.74 -17.846 0.269 0 0 0 0 0 0 0 +8.828 -17.883 0.27 0 0 0 0 0 0 0 +8.846 -17.847 0.27 0 0 0 0 0 0 0 +8.865 -17.746 0.269 0 0 0 0 0 0 0 +8.883 -17.643 0.269 0 0 0 0 0 0 0 +8.891 -17.521 0.269 0 0 0 0 0 0 0 +8.887 -17.377 0.268 0 0 0 0 0 0 0 +8.904 -17.276 0.268 0 0 0 0 0 0 0 +8.974 -17.278 0.268 0 0 0 0 0 0 0 +9.017 -17.296 0.268 0 0 0 0 0 0 0 +9.091 -17.305 0.268 0 0 0 0 0 0 0 +9.144 -17.272 0.268 0 0 0 0 0 0 0 +9.157 -17.168 0.268 0 0 0 0 0 0 0 +9.174 -17.068 0.268 0 0 0 0 0 0 0 +9.189 -16.969 0.268 0 0 0 0 0 0 0 +9.207 -16.875 0.267 0 0 0 0 0 0 0 +9.199 -16.797 0.267 0 0 0 0 0 0 0 +9.217 -16.705 0.267 0 0 0 0 0 0 0 +9.227 -16.599 0.267 0 0 0 0 0 0 0 +9.054 -16.167 0.265 0 0 0 0 0 0 0 +9.053 -16.046 0.265 0 0 0 0 0 0 0 +9.08 -15.977 0.265 0 0 0 0 0 0 0 +9.105 -15.903 0.265 0 0 0 0 0 0 0 +9.082 -15.806 0.264 0 0 0 0 0 0 0 +9.103 -15.727 0.264 0 0 0 0 0 0 0 +9.12 -15.643 0.264 0 0 0 0 0 0 0 +9.119 -15.53 0.264 0 0 0 0 0 0 0 +9.136 -15.446 0.263 0 0 0 0 0 0 0 +9.179 -15.408 0.263 0 0 0 0 0 0 0 +9.216 -15.361 0.263 0 0 0 0 0 0 0 +9.259 -15.377 0.263 0 0 0 0 0 0 0 +9.339 -15.401 0.264 0 0 0 0 0 0 0 +9.396 -15.385 0.264 0 0 0 0 0 0 0 +7.011 -11.306 0.249 0 0 0 0 0 0 0 +7.042 -11.277 0.249 0 0 0 0 0 0 0 +7.087 -11.27 0.249 0 0 0 0 0 0 0 +7.092 -11.239 0.249 0 0 0 0 0 0 0 +7.107 -11.184 0.249 0 0 0 0 0 0 0 +7.143 -11.164 0.249 0 0 0 0 0 0 0 +7.174 -11.135 0.249 0 0 0 0 0 0 0 +7.202 -11.102 0.249 0 0 0 0 0 0 0 +7.229 -11.067 0.248 0 0 0 0 0 0 0 +7.26 -11.038 0.248 0 0 0 0 0 0 0 +7.269 -11.015 0.248 0 0 0 0 0 0 0 +7.297 -10.982 0.248 0 0 0 0 0 0 0 +7.333 -10.961 0.248 0 0 0 0 0 0 0 +7.356 -10.921 0.248 0 0 0 0 0 0 0 +7.387 -10.893 0.248 0 0 0 0 0 0 0 +7.428 -10.879 0.248 0 0 0 0 0 0 0 +7.447 -10.835 0.248 0 0 0 0 0 0 0 +7.461 -10.818 0.248 0 0 0 0 0 0 0 +7.493 -10.791 0.248 0 0 0 0 0 0 0 +7.512 -10.746 0.248 0 0 0 0 0 0 0 +7.558 -10.741 0.248 0 0 0 0 0 0 0 +7.58 -10.701 0.248 0 0 0 0 0 0 0 +7.719 -10.825 0.249 0 0 0 0 0 0 0 +7.711 -10.742 0.248 0 0 0 0 0 0 0 +9.555 -13.277 0.258 0 0 0 0 0 0 0 +9.603 -13.256 0.258 0 0 0 0 0 0 0 +9.657 -13.242 0.258 0 0 0 0 0 0 0 +9.673 -13.178 0.258 0 0 0 0 0 0 0 +9.678 -13.098 0.258 0 0 0 0 0 0 0 +9.687 -13.024 0.258 0 0 0 0 0 0 0 +9.71 -12.969 0.258 0 0 0 0 0 0 0 +9.696 -12.867 0.258 0 0 0 0 0 0 0 +9.684 -12.808 0.257 0 0 0 0 0 0 0 +9.712 -12.762 0.257 0 0 0 0 0 0 0 +9.707 -12.672 0.257 0 0 0 0 0 0 0 +9.714 -12.599 0.257 0 0 0 0 0 0 0 +9.722 -12.527 0.257 0 0 0 0 0 0 0 +9.726 -12.451 0.257 0 0 0 0 0 0 0 +9.639 -12.26 0.256 0 0 0 0 0 0 0 +9.551 -12.108 0.255 0 0 0 0 0 0 0 +9.553 -12.032 0.255 0 0 0 0 0 0 0 +9.564 -11.969 0.255 0 0 0 0 0 0 0 +9.582 -11.914 0.255 0 0 0 0 0 0 0 +9.588 -11.845 0.255 0 0 0 0 0 0 0 +9.607 -11.793 0.255 0 0 0 0 0 0 0 +9.598 -11.744 0.255 0 0 0 0 0 0 0 +9.607 -11.68 0.254 0 0 0 0 0 0 0 +9.621 -11.622 0.254 0 0 0 0 0 0 0 +9.627 -11.555 0.254 0 0 0 0 0 0 0 +9.637 -11.494 0.254 0 0 0 0 0 0 0 +9.65 -11.436 0.254 0 0 0 0 0 0 0 +9.524 -11.215 0.253 0 0 0 0 0 0 0 +9.519 -11.172 0.253 0 0 0 0 0 0 0 +9.53 -11.115 0.253 0 0 0 0 0 0 0 +9.544 -11.061 0.253 0 0 0 0 0 0 0 +9.552 -10.999 0.253 0 0 0 0 0 0 0 +9.56 -10.939 0.253 0 0 0 0 0 0 0 +9.573 -10.884 0.252 0 0 0 0 0 0 0 +9.577 -10.82 0.252 0 0 0 0 0 0 0 +9.569 -10.776 0.252 0 0 0 0 0 0 0 +9.581 -10.722 0.252 0 0 0 0 0 0 0 +9.591 -10.665 0.252 0 0 0 0 0 0 0 +9.596 -10.604 0.252 0 0 0 0 0 0 0 +9.621 -10.565 0.252 0 0 0 0 0 0 0 +9.648 -10.527 0.252 0 0 0 0 0 0 0 +9.627 -10.438 0.252 0 0 0 0 0 0 0 +9.636 -10.383 0.251 0 0 0 0 0 0 0 +9.631 -10.344 0.251 0 0 0 0 0 0 0 +9.639 -10.287 0.251 0 0 0 0 0 0 0 +9.642 -10.226 0.251 0 0 0 0 0 0 0 +9.655 -10.176 0.251 0 0 0 0 0 0 0 +9.662 -10.119 0.251 0 0 0 0 0 0 0 +9.674 -10.069 0.251 0 0 0 0 0 0 0 +9.678 -10.009 0.251 0 0 0 0 0 0 0 +9.673 -9.973 0.251 0 0 0 0 0 0 0 +9.675 -9.912 0.25 0 0 0 0 0 0 0 +9.692 -9.867 0.25 0 0 0 0 0 0 0 +9.698 -9.811 0.25 0 0 0 0 0 0 0 +9.706 -9.758 0.25 0 0 0 0 0 0 0 +9.718 -9.709 0.25 0 0 0 0 0 0 0 +9.728 -9.657 0.25 0 0 0 0 0 0 0 +9.72 -9.619 0.25 0 0 0 0 0 0 0 +9.722 -9.561 0.25 0 0 0 0 0 0 0 +9.742 -9.52 0.25 0 0 0 0 0 0 0 +9.743 -9.462 0.25 0 0 0 0 0 0 0 +9.761 -9.42 0.25 0 0 0 0 0 0 0 +9.765 -9.364 0.249 0 0 0 0 0 0 0 +9.755 -9.325 0.249 0 0 0 0 0 0 0 +9.755 -9.267 0.249 0 0 0 0 0 0 0 +9.766 -9.218 0.249 0 0 0 0 0 0 0 +9.777 -9.171 0.249 0 0 0 0 0 0 0 +9.793 -9.128 0.249 0 0 0 0 0 0 0 +9.842 -9.117 0.249 0 0 0 0 0 0 0 +9.795 -9.016 0.249 0 0 0 0 0 0 0 +9.807 -8.971 0.249 0 0 0 0 0 0 0 +9.801 -8.936 0.249 0 0 0 0 0 0 0 +9.804 -8.883 0.249 0 0 0 0 0 0 0 +9.814 -8.836 0.248 0 0 0 0 0 0 0 +9.822 -8.787 0.248 0 0 0 0 0 0 0 +9.821 -8.731 0.248 0 0 0 0 0 0 0 +9.841 -8.694 0.248 0 0 0 0 0 0 0 +9.846 -8.643 0.248 0 0 0 0 0 0 0 +9.84 -8.61 0.248 0 0 0 0 0 0 0 +9.847 -8.562 0.248 0 0 0 0 0 0 0 +9.858 -8.517 0.248 0 0 0 0 0 0 0 +9.859 -8.464 0.248 0 0 0 0 0 0 0 +9.867 -8.417 0.248 0 0 0 0 0 0 0 +9.872 -8.368 0.248 0 0 0 0 0 0 0 +9.895 -8.334 0.248 0 0 0 0 0 0 0 +9.91 -8.32 0.248 0 0 0 0 0 0 0 +9.931 -8.285 0.248 0 0 0 0 0 0 0 +9.956 -8.252 0.248 0 0 0 0 0 0 0 +9.971 -8.212 0.248 0 0 0 0 0 0 0 +9.994 -8.178 0.248 0 0 0 0 0 0 0 +10.019 -8.147 0.248 0 0 0 0 0 0 0 +10.04 -8.111 0.247 0 0 0 0 0 0 0 +10.048 -8.092 0.247 0 0 0 0 0 0 0 +10.077 -8.063 0.247 0 0 0 0 0 0 0 +10.119 -8.045 0.248 0 0 0 0 0 0 0 +10.166 -8.03 0.248 0 0 0 0 0 0 0 +10.143 -7.96 0.247 0 0 0 0 0 0 0 +10.171 -7.931 0.247 0 0 0 0 0 0 0 +10.177 -7.91 0.247 0 0 0 0 0 0 0 +10.195 -7.873 0.247 0 0 0 0 0 0 0 +10.212 -7.835 0.247 0 0 0 0 0 0 0 +10.242 -7.806 0.247 0 0 0 0 0 0 0 +10.271 -7.778 0.247 0 0 0 0 0 0 0 +10.282 -7.736 0.247 0 0 0 0 0 0 0 +10.315 -7.709 0.247 0 0 0 0 0 0 0 +10.332 -7.672 0.247 0 0 0 0 0 0 0 +10.33 -7.645 0.247 0 0 0 0 0 0 0 +10.36 -7.617 0.247 0 0 0 0 0 0 0 +10.383 -7.584 0.247 0 0 0 0 0 0 0 +10.403 -7.549 0.247 0 0 0 0 0 0 0 +10.432 -7.519 0.247 0 0 0 0 0 0 0 +10.455 -7.487 0.247 0 0 0 0 0 0 0 +10.471 -7.448 0.247 0 0 0 0 0 0 0 +10.49 -7.437 0.247 0 0 0 0 0 0 0 +10.502 -7.396 0.247 0 0 0 0 0 0 0 +10.53 -7.367 0.247 0 0 0 0 0 0 0 +10.549 -7.33 0.247 0 0 0 0 0 0 0 +10.568 -7.295 0.247 0 0 0 0 0 0 0 +10.593 -7.262 0.247 0 0 0 0 0 0 0 +10.617 -7.23 0.247 0 0 0 0 0 0 0 +10.624 -7.21 0.247 0 0 0 0 0 0 0 +10.656 -7.183 0.247 0 0 0 0 0 0 0 +10.664 -7.14 0.247 0 0 0 0 0 0 0 +10.684 -7.105 0.247 0 0 0 0 0 0 0 +10.712 -7.075 0.247 0 0 0 0 0 0 0 +10.772 -7.067 0.247 0 0 0 0 0 0 0 +10.764 -7.013 0.247 0 0 0 0 0 0 0 +10.769 -6.992 0.247 0 0 0 0 0 0 0 +10.784 -6.954 0.247 0 0 0 0 0 0 0 +10.816 -6.926 0.247 0 0 0 0 0 0 0 +10.829 -6.887 0.247 0 0 0 0 0 0 0 +10.847 -6.85 0.247 0 0 0 0 0 0 0 +10.884 -6.826 0.247 0 0 0 0 0 0 0 +10.897 -6.786 0.247 0 0 0 0 0 0 0 +10.906 -6.768 0.247 0 0 0 0 0 0 0 +10.934 -6.738 0.247 0 0 0 0 0 0 0 +10.957 -6.705 0.247 0 0 0 0 0 0 0 +10.988 -6.677 0.247 0 0 0 0 0 0 0 +11.034 -6.658 0.247 0 0 0 0 0 0 0 +11.086 -6.642 0.248 0 0 0 0 0 0 0 +11.134 -6.623 0.248 0 0 0 0 0 0 0 +11.172 -6.622 0.248 0 0 0 0 0 0 0 +11.233 -6.61 0.248 0 0 0 0 0 0 0 +11.276 -6.588 0.248 0 0 0 0 0 0 0 +11.336 -6.576 0.248 0 0 0 0 0 0 0 +11.381 -6.554 0.248 0 0 0 0 0 0 0 +11.424 -6.531 0.248 0 0 0 0 0 0 0 +11.486 -6.519 0.248 0 0 0 0 0 0 0 +11.529 -6.52 0.249 0 0 0 0 0 0 0 +11.588 -6.505 0.249 0 0 0 0 0 0 0 +11.673 -6.505 0.249 0 0 0 0 0 0 0 +11.699 -6.471 0.249 0 0 0 0 0 0 0 +11.74 -6.446 0.249 0 0 0 0 0 0 0 +11.802 -6.432 0.249 0 0 0 0 0 0 0 +11.847 -6.408 0.249 0 0 0 0 0 0 0 +11.894 -6.41 0.249 0 0 0 0 0 0 0 +11.953 -6.393 0.25 0 0 0 0 0 0 0 +12.008 -6.374 0.25 0 0 0 0 0 0 0 +12.071 -6.359 0.25 0 0 0 0 0 0 0 +12.126 -6.34 0.25 0 0 0 0 0 0 0 +12.172 -6.315 0.25 0 0 0 0 0 0 0 +8.716 -4.479 0.238 0 0 0 0 0 0 0 +8.714 -4.461 0.238 0 0 0 0 0 0 0 +12.391 -6.257 0.251 0 0 0 0 0 0 0 +12.443 -6.234 0.251 0 0 0 0 0 0 0 +12.509 -6.219 0.251 0 0 0 0 0 0 0 +12.568 -6.199 0.251 0 0 0 0 0 0 0 +12.623 -6.177 0.251 0 0 0 0 0 0 0 +12.672 -6.176 0.251 0 0 0 0 0 0 0 +12.735 -6.158 0.251 0 0 0 0 0 0 0 +12.794 -6.137 0.252 0 0 0 0 0 0 0 +12.858 -6.118 0.252 0 0 0 0 0 0 0 +12.917 -6.096 0.252 0 0 0 0 0 0 0 +12.974 -6.074 0.252 0 0 0 0 0 0 0 +13.058 -6.063 0.252 0 0 0 0 0 0 0 +13.102 -6.059 0.252 0 0 0 0 0 0 0 +13.154 -6.033 0.252 0 0 0 0 0 0 0 +13.22 -6.013 0.253 0 0 0 0 0 0 0 +13.283 -5.991 0.253 0 0 0 0 0 0 0 +13.341 -5.968 0.253 0 0 0 0 0 0 0 +13.408 -5.947 0.253 0 0 0 0 0 0 0 +13.472 -5.925 0.253 0 0 0 0 0 0 0 +13.527 -5.924 0.253 0 0 0 0 0 0 0 +13.59 -5.9 0.254 0 0 0 0 0 0 0 +13.672 -5.885 0.254 0 0 0 0 0 0 0 +13.733 -5.861 0.254 0 0 0 0 0 0 0 +13.807 -5.841 0.254 0 0 0 0 0 0 0 +14.007 -5.874 0.255 0 0 0 0 0 0 0 +14.046 -5.839 0.255 0 0 0 0 0 0 0 +14.09 -5.831 0.255 0 0 0 0 0 0 0 +14.14 -5.8 0.255 0 0 0 0 0 0 0 +14.186 -5.767 0.255 0 0 0 0 0 0 0 +14.224 -5.731 0.255 0 0 0 0 0 0 0 +14.274 -5.699 0.255 0 0 0 0 0 0 0 +14.323 -5.666 0.255 0 0 0 0 0 0 0 +14.38 -5.637 0.255 0 0 0 0 0 0 0 +14.428 -5.629 0.256 0 0 0 0 0 0 0 +14.466 -5.592 0.256 0 0 0 0 0 0 0 +14.508 -5.556 0.256 0 0 0 0 0 0 0 +14.482 -5.494 0.256 0 0 0 0 0 0 0 +14.535 -5.462 0.256 0 0 0 0 0 0 0 +14.575 -5.424 0.256 0 0 0 0 0 0 0 +14.623 -5.39 0.256 0 0 0 0 0 0 0 +14.679 -5.385 0.256 0 0 0 0 0 0 0 +14.728 -5.35 0.256 0 0 0 0 0 0 0 +14.767 -5.312 0.256 0 0 0 0 0 0 0 +14.827 -5.281 0.256 0 0 0 0 0 0 0 +14.873 -5.245 0.257 0 0 0 0 0 0 0 +14.933 -5.214 0.257 0 0 0 0 0 0 0 +14.987 -5.18 0.257 0 0 0 0 0 0 0 +15.022 -5.166 0.257 0 0 0 0 0 0 0 +15.076 -5.131 0.257 0 0 0 0 0 0 0 +15.13 -5.097 0.257 0 0 0 0 0 0 0 +15.184 -5.062 0.257 0 0 0 0 0 0 0 +15.238 -5.027 0.257 0 0 0 0 0 0 0 +15.289 -4.991 0.258 0 0 0 0 0 0 0 +15.347 -4.956 0.258 0 0 0 0 0 0 0 +15.395 -4.945 0.258 0 0 0 0 0 0 0 +15.45 -4.909 0.258 0 0 0 0 0 0 0 +15.492 -4.869 0.258 0 0 0 0 0 0 0 +15.565 -4.839 0.258 0 0 0 0 0 0 0 +15.618 -4.801 0.258 0 0 0 0 0 0 0 +15.658 -4.76 0.258 0 0 0 0 0 0 0 +15.72 -4.725 0.259 0 0 0 0 0 0 0 +15.78 -4.716 0.259 0 0 0 0 0 0 0 +15.817 -4.673 0.259 0 0 0 0 0 0 0 +15.891 -4.641 0.259 0 0 0 0 0 0 0 +15.94 -4.601 0.259 0 0 0 0 0 0 0 +16.078 -4.586 0.26 0 0 0 0 0 0 0 +16.158 -4.554 0.26 0 0 0 0 0 0 0 +16.22 -4.517 0.26 0 0 0 0 0 0 0 +16.264 -4.502 0.26 0 0 0 0 0 0 0 +16.326 -4.464 0.26 0 0 0 0 0 0 0 +16.384 -4.425 0.26 0 0 0 0 0 0 0 +16.437 -4.384 0.26 0 0 0 0 0 0 0 +16.501 -4.345 0.261 0 0 0 0 0 0 0 +16.561 -4.306 0.261 0 0 0 0 0 0 0 +16.621 -4.265 0.261 0 0 0 0 0 0 0 +16.679 -4.225 0.261 0 0 0 0 0 0 0 +16.743 -4.213 0.261 0 0 0 0 0 0 0 +16.799 -4.171 0.261 0 0 0 0 0 0 0 +16.857 -4.129 0.262 0 0 0 0 0 0 0 +16.912 -4.087 0.262 0 0 0 0 0 0 0 +16.98 -4.047 0.262 0 0 0 0 0 0 0 +17.041 -4.005 0.262 0 0 0 0 0 0 0 +17.108 -3.964 0.262 0 0 0 0 0 0 0 +17.167 -3.949 0.262 0 0 0 0 0 0 0 +17.23 -3.907 0.262 0 0 0 0 0 0 0 +17.303 -3.866 0.263 0 0 0 0 0 0 0 +17.35 -3.82 0.263 0 0 0 0 0 0 0 +17.338 -3.76 0.263 0 0 0 0 0 0 0 +17.369 -3.71 0.263 0 0 0 0 0 0 0 +17.444 -3.697 0.263 0 0 0 0 0 0 0 +17.5 -3.652 0.263 0 0 0 0 0 0 0 +17.578 -3.611 0.263 0 0 0 0 0 0 0 +17.631 -3.564 0.264 0 0 0 0 0 0 0 +17.703 -3.521 0.264 0 0 0 0 0 0 0 +17.761 -3.474 0.264 0 0 0 0 0 0 0 +17.834 -3.431 0.264 0 0 0 0 0 0 0 +17.904 -3.386 0.264 0 0 0 0 0 0 0 +17.96 -3.367 0.264 0 0 0 0 0 0 0 +13.688 -2.516 0.251 0 0 0 0 0 0 0 +13.615 -2.458 0.25 0 0 0 0 0 0 0 +13.585 -2.408 0.25 0 0 0 0 0 0 0 +13.563 -2.36 0.25 0 0 0 0 0 0 0 +13.565 -2.317 0.25 0 0 0 0 0 0 0 +13.556 -2.271 0.25 0 0 0 0 0 0 0 +13.552 -2.249 0.25 0 0 0 0 0 0 0 +13.585 -2.21 0.25 0 0 0 0 0 0 0 +13.588 -2.167 0.25 0 0 0 0 0 0 0 +13.608 -2.127 0.25 0 0 0 0 0 0 0 +13.621 -2.085 0.25 0 0 0 0 0 0 0 +13.663 -2.047 0.25 0 0 0 0 0 0 0 +13.705 -2.01 0.25 0 0 0 0 0 0 0 +13.791 -2 0.251 0 0 0 0 0 0 0 +19.15 -2.727 0.268 0 0 0 0 0 0 0 +19.222 -2.675 0.268 0 0 0 0 0 0 0 +19.313 -2.626 0.268 0 0 0 0 0 0 0 +19.397 -2.576 0.268 0 0 0 0 0 0 0 +19.455 -2.521 0.269 0 0 0 0 0 0 0 +19.369 -2.448 0.268 0 0 0 0 0 0 0 +19.401 -2.421 0.268 0 0 0 0 0 0 0 +19.456 -2.366 0.269 0 0 0 0 0 0 0 +19.517 -2.312 0.269 0 0 0 0 0 0 0 +19.554 -2.254 0.269 0 0 0 0 0 0 0 +19.612 -2.198 0.269 0 0 0 0 0 0 0 +19.659 -2.141 0.269 0 0 0 0 0 0 0 +19.709 -2.084 0.269 0 0 0 0 0 0 0 +19.754 -2.057 0.269 0 0 0 0 0 0 0 +19.809 -2 0.27 0 0 0 0 0 0 0 +19.864 -1.943 0.27 0 0 0 0 0 0 0 +19.914 -1.885 0.27 0 0 0 0 0 0 0 +19.972 -1.827 0.27 0 0 0 0 0 0 0 +20.35 -1.797 0.271 0 0 0 0 0 0 0 +20.553 -1.751 0.272 0 0 0 0 0 0 0 +20.609 -1.723 0.272 0 0 0 0 0 0 0 +20.668 -1.662 0.272 0 0 0 0 0 0 0 +20.711 -1.6 0.272 0 0 0 0 0 0 0 +20.844 -1.545 0.273 0 0 0 0 0 0 0 +20.931 -1.485 0.273 0 0 0 0 0 0 0 +21.266 -1.443 0.274 0 0 0 0 0 0 0 +21.005 -1.358 0.273 0 0 0 0 0 0 0 +21.145 -1.334 0.274 0 0 0 0 0 0 0 +21.203 -1.271 0.274 0 0 0 0 0 0 0 +21.473 -1.22 0.275 0 0 0 0 0 0 0 +21.91 -1.176 0.276 0 0 0 0 0 0 0 +22.139 -1.119 0.277 0 0 0 0 0 0 0 +21.305 -1.009 0.274 0 0 0 0 0 0 0 +21.157 -0.935 0.274 0 0 0 0 0 0 0 +21.248 -0.906 0.274 0 0 0 0 0 0 0 +21.109 -0.833 0.273 0 0 0 0 0 0 0 +21.049 -0.764 0.273 0 0 0 0 0 0 0 +21.068 -0.699 0.273 0 0 0 0 0 0 0 +21.084 -0.633 0.273 0 0 0 0 0 0 0 +21.15 -0.569 0.273 0 0 0 0 0 0 0 +21.193 -0.503 0.274 0 0 0 0 0 0 0 +21.26 -0.471 0.274 0 0 0 0 0 0 0 +21.311 -0.406 0.274 0 0 0 0 0 0 0 +21.381 -0.34 0.274 0 0 0 0 0 0 0 +21.433 -0.273 0.274 0 0 0 0 0 0 0 +21.502 -0.207 0.275 0 0 0 0 0 0 0 +21.551 -0.14 0.275 0 0 0 0 0 0 0 +23.233 -0.08 0.28 0 0 0 0 0 0 0 +35.613 -0.08 0.319 0 0 0 0 0 0 0 +35.706 0.023 0.151 0 0 0 0 0 0 0 +35.538 0.135 0.151 0 0 0 0 0 0 0 +35.41 0.245 0.152 0 0 0 0 0 0 0 +35.447 0.357 0.152 0 0 0 0 0 0 0 +35.399 0.468 0.152 0 0 0 0 0 0 0 +35.312 0.577 0.152 0 0 0 0 0 0 0 +34.61 0.946 0.153 0 0 0 0 0 0 0 +34.095 1.253 0.154 0 0 0 0 0 0 0 +33.88 1.352 0.154 0 0 0 0 0 0 0 +36.201 1.731 0.15 0 0 0 0 0 0 0 +25.844 1.554 0.166 0 0 0 0 0 0 0 +34.686 2.697 0.153 0 0 0 0 0 0 0 +59.656 4.846 0.114 0 0 0 0 0 0 0 +59.754 4.949 0.114 0 0 0 0 0 0 0 +59.822 5.143 0.113 0 0 0 0 0 0 0 +18.802 1.718 0.177 0 0 0 0 0 0 0 +18.761 1.773 0.177 0 0 0 0 0 0 0 +18.735 1.83 0.177 0 0 0 0 0 0 0 +18.64 1.88 0.177 0 0 0 0 0 0 0 +61.631 7.355 0.11 0 0 0 0 0 0 0 +61.465 7.531 0.111 0 0 0 0 0 0 0 +61.302 7.706 0.111 0 0 0 0 0 0 0 +24.969 3.243 0.167 0 0 0 0 0 0 0 +61.523 8.225 0.11 0 0 0 0 0 0 0 +61.632 8.437 0.11 0 0 0 0 0 0 0 +61.734 8.649 0.11 0 0 0 0 0 0 0 +61.825 8.86 0.11 0 0 0 0 0 0 0 +43.909 6.426 0.138 0 0 0 0 0 0 0 +43.905 6.495 0.138 0 0 0 0 0 0 0 +20.962 3.155 0.174 0 0 0 0 0 0 0 +43.523 6.718 0.138 0 0 0 0 0 0 0 +43.255 6.816 0.139 0 0 0 0 0 0 0 +42.99 6.913 0.139 0 0 0 0 0 0 0 +42.799 7.02 0.139 0 0 0 0 0 0 0 +42.615 7.127 0.14 0 0 0 0 0 0 0 +42.424 7.164 0.14 0 0 0 0 0 0 0 +42.555 7.323 0.14 0 0 0 0 0 0 0 +42.301 7.416 0.14 0 0 0 0 0 0 0 +42.144 7.525 0.14 0 0 0 0 0 0 0 +41.638 7.705 0.141 0 0 0 0 0 0 0 +41.617 7.836 0.141 0 0 0 0 0 0 0 +41.501 7.882 0.141 0 0 0 0 0 0 0 +18.633 3.707 0.177 0 0 0 0 0 0 0 +40.81 8.283 0.142 0 0 0 0 0 0 0 +41.184 8.494 0.141 0 0 0 0 0 0 0 +41.208 8.634 0.141 0 0 0 0 0 0 0 +41.294 8.72 0.141 0 0 0 0 0 0 0 +41.36 8.87 0.141 0 0 0 0 0 0 0 +41.133 8.956 0.141 0 0 0 0 0 0 0 +41.68 9.213 0.14 0 0 0 0 0 0 0 +41.571 9.326 0.14 0 0 0 0 0 0 0 +41.552 9.459 0.14 0 0 0 0 0 0 0 +39.542 9.131 0.144 0 0 0 0 0 0 0 +41.968 9.762 0.14 0 0 0 0 0 0 0 +39.954 9.425 0.143 0 0 0 0 0 0 0 +39.891 9.542 0.143 0 0 0 0 0 0 0 +39.908 9.679 0.143 0 0 0 0 0 0 0 +42.172 10.511 0.139 0 0 0 0 0 0 0 +42.095 10.632 0.139 0 0 0 0 0 0 0 +41.514 10.554 0.14 0 0 0 0 0 0 0 +41.465 10.681 0.14 0 0 0 0 0 0 0 +41.402 10.803 0.14 0 0 0 0 0 0 0 +41.382 10.937 0.14 0 0 0 0 0 0 0 +42.476 11.513 0.138 0 0 0 0 0 0 0 +42.43 11.643 0.138 0 0 0 0 0 0 0 +67.344 18.61 0.098 0 0 0 0 0 0 0 +50.968 14.25 0.124 0 0 0 0 0 0 0 +36.792 10.404 0.147 0 0 0 0 0 0 0 +36.709 10.505 0.147 0 0 0 0 0 0 0 +16.25 4.746 0.18 0 0 0 0 0 0 0 +16.175 4.779 0.18 0 0 0 0 0 0 0 +16.164 4.804 0.18 0 0 0 0 0 0 0 +16.158 4.857 0.18 0 0 0 0 0 0 0 +16.128 4.903 0.18 0 0 0 0 0 0 0 +16.103 4.951 0.18 0 0 0 0 0 0 0 +16.076 4.998 0.18 0 0 0 0 0 0 0 +16.054 5.047 0.18 0 0 0 0 0 0 0 +16.019 5.091 0.18 0 0 0 0 0 0 0 +16.019 5.118 0.18 0 0 0 0 0 0 0 +15.999 5.168 0.18 0 0 0 0 0 0 0 +15.982 5.218 0.18 0 0 0 0 0 0 0 +15.947 5.262 0.18 0 0 0 0 0 0 0 +15.926 5.31 0.18 0 0 0 0 0 0 0 +15.891 5.354 0.18 0 0 0 0 0 0 0 +15.876 5.405 0.18 0 0 0 0 0 0 0 +15.869 5.43 0.18 0 0 0 0 0 0 0 +15.86 5.483 0.18 0 0 0 0 0 0 0 +15.848 5.534 0.18 0 0 0 0 0 0 0 +15.847 5.59 0.18 0 0 0 0 0 0 0 +15.807 5.632 0.18 0 0 0 0 0 0 0 +15.793 5.683 0.18 0 0 0 0 0 0 0 +15.781 5.735 0.18 0 0 0 0 0 0 0 +15.774 5.76 0.18 0 0 0 0 0 0 0 +15.746 5.806 0.18 0 0 0 0 0 0 0 +15.734 5.858 0.18 0 0 0 0 0 0 0 +15.698 5.901 0.18 0 0 0 0 0 0 0 +15.973 6.062 0.18 0 0 0 0 0 0 0 +16.264 6.231 0.179 0 0 0 0 0 0 0 +16.982 6.569 0.178 0 0 0 0 0 0 0 +34.122 13.35 0.15 0 0 0 0 0 0 0 +73.007 28.729 0.085 0 0 0 0 0 0 0 +73.056 29.014 0.085 0 0 0 0 0 0 0 +73.234 29.351 0.084 0 0 0 0 0 0 0 +73.386 29.68 0.084 0 0 0 0 0 0 0 +73.868 30.146 0.083 0 0 0 0 0 0 0 +73.749 30.368 0.083 0 0 0 0 0 0 0 +44.795 19.346 0.131 0 0 0 0 0 0 0 +44.656 19.452 0.131 0 0 0 0 0 0 0 +44.711 19.56 0.131 0 0 0 0 0 0 0 +44.43 19.604 0.131 0 0 0 0 0 0 0 +44.509 19.806 0.131 0 0 0 0 0 0 0 +44.528 19.982 0.131 0 0 0 0 0 0 0 +44.423 20.103 0.131 0 0 0 0 0 0 0 +47.702 21.77 0.125 0 0 0 0 0 0 0 +41.079 18.9 0.136 0 0 0 0 0 0 0 +40.968 18.926 0.137 0 0 0 0 0 0 0 +40.803 19.006 0.137 0 0 0 0 0 0 0 +40.617 19.074 0.137 0 0 0 0 0 0 0 +40.47 19.161 0.137 0 0 0 0 0 0 0 +40.33 19.25 0.137 0 0 0 0 0 0 0 +40.221 19.353 0.137 0 0 0 0 0 0 0 +40.228 19.513 0.137 0 0 0 0 0 0 0 +43.521 21.366 0.131 0 0 0 0 0 0 0 +39.923 19.753 0.137 0 0 0 0 0 0 0 +39.775 19.836 0.138 0 0 0 0 0 0 0 +43.294 21.764 0.131 0 0 0 0 0 0 0 +39.205 19.86 0.138 0 0 0 0 0 0 0 +29.017 14.806 0.156 0 0 0 0 0 0 0 +38.929 20.028 0.139 0 0 0 0 0 0 0 +38.806 20.042 0.139 0 0 0 0 0 0 0 +38.703 20.143 0.139 0 0 0 0 0 0 0 +38.558 20.222 0.139 0 0 0 0 0 0 0 +38.404 20.295 0.139 0 0 0 0 0 0 0 +38.301 20.395 0.139 0 0 0 0 0 0 0 +38.27 20.533 0.139 0 0 0 0 0 0 0 +38.456 20.711 0.139 0 0 0 0 0 0 0 +38.538 20.912 0.139 0 0 0 0 0 0 0 +40.529 22.158 0.135 0 0 0 0 0 0 0 +40.452 22.282 0.135 0 0 0 0 0 0 0 +40.434 22.438 0.135 0 0 0 0 0 0 0 +43.876 24.531 0.129 0 0 0 0 0 0 0 +37.606 21.177 0.14 0 0 0 0 0 0 0 +37.59 21.245 0.14 0 0 0 0 0 0 0 +37.502 21.352 0.14 0 0 0 0 0 0 0 +41.342 23.713 0.133 0 0 0 0 0 0 0 +41.315 23.87 0.133 0 0 0 0 0 0 0 +41.371 24.076 0.132 0 0 0 0 0 0 0 +41.057 24.066 0.133 0 0 0 0 0 0 0 +40.759 24.064 0.133 0 0 0 0 0 0 0 +36.225 21.461 0.141 0 0 0 0 0 0 0 +36.076 21.526 0.141 0 0 0 0 0 0 0 +35.962 21.611 0.141 0 0 0 0 0 0 0 +35.821 21.68 0.142 0 0 0 0 0 0 0 +35.691 21.755 0.142 0 0 0 0 0 0 0 +35.573 21.836 0.142 0 0 0 0 0 0 0 +35.45 21.914 0.142 0 0 0 0 0 0 0 +35.349 21.929 0.142 0 0 0 0 0 0 0 +35.328 22.069 0.142 0 0 0 0 0 0 0 +35.297 22.205 0.142 0 0 0 0 0 0 0 +29.696 18.938 0.152 0 0 0 0 0 0 0 +29.614 19.017 0.152 0 0 0 0 0 0 0 +34.656 22.491 0.142 0 0 0 0 0 0 0 +34.426 22.496 0.143 0 0 0 0 0 0 0 +13.033 8.614 0.182 0 0 0 0 0 0 0 +34 22.677 0.143 0 0 0 0 0 0 0 +33.878 22.75 0.143 0 0 0 0 0 0 0 +33.759 22.824 0.143 0 0 0 0 0 0 0 +33.637 22.896 0.143 0 0 0 0 0 0 0 +33.547 22.912 0.144 0 0 0 0 0 0 0 +33.48 23.021 0.144 0 0 0 0 0 0 0 +33.443 23.151 0.143 0 0 0 0 0 0 0 +33.446 23.308 0.143 0 0 0 0 0 0 0 +33.43 23.454 0.143 0 0 0 0 0 0 0 +33.436 23.615 0.143 0 0 0 0 0 0 0 +33.43 23.769 0.143 0 0 0 0 0 0 0 +33.481 23.884 0.143 0 0 0 0 0 0 0 +37.53 26.955 0.135 0 0 0 0 0 0 0 +37.505 27.116 0.135 0 0 0 0 0 0 0 +35.997 26.197 0.137 0 0 0 0 0 0 0 +35.708 26.159 0.138 0 0 0 0 0 0 0 +35.153 25.921 0.139 0 0 0 0 0 0 0 +34.954 25.86 0.139 0 0 0 0 0 0 0 +33.962 25.291 0.141 0 0 0 0 0 0 0 +33.865 25.384 0.141 0 0 0 0 0 0 0 +33.774 25.482 0.141 0 0 0 0 0 0 0 +17.436 13.226 0.173 0 0 0 0 0 0 0 +17.231 13.155 0.173 0 0 0 0 0 0 0 +17.275 13.275 0.173 0 0 0 0 0 0 0 +17.411 13.423 0.172 0 0 0 0 0 0 0 +17.4 13.502 0.172 0 0 0 0 0 0 0 +17.376 13.572 0.172 0 0 0 0 0 0 0 +17.569 13.812 0.172 0 0 0 0 0 0 0 +17.628 13.948 0.172 0 0 0 0 0 0 0 +33.341 26.582 0.14 0 0 0 0 0 0 0 +33.329 26.744 0.14 0 0 0 0 0 0 0 +33.465 26.939 0.14 0 0 0 0 0 0 0 +33.575 27.203 0.14 0 0 0 0 0 0 0 +12.236 9.956 0.182 0 0 0 0 0 0 0 +12.082 9.894 0.182 0 0 0 0 0 0 0 +6.775 5.569 0.193 0 0 0 0 0 0 0 +6.752 5.585 0.193 0 0 0 0 0 0 0 +6.731 5.604 0.193 0 0 0 0 0 0 0 +6.721 5.632 0.193 0 0 0 0 0 0 0 +11.856 9.992 0.182 0 0 0 0 0 0 0 +11.689 9.913 0.183 0 0 0 0 0 0 0 +11.825 10.093 0.182 0 0 0 0 0 0 0 +11.834 10.166 0.182 0 0 0 0 0 0 0 +12.016 10.389 0.182 0 0 0 0 0 0 0 +33.422 29.141 0.138 0 0 0 0 0 0 0 +33.254 29.179 0.138 0 0 0 0 0 0 0 +33.276 29.29 0.138 0 0 0 0 0 0 0 +33.266 29.468 0.138 0 0 0 0 0 0 0 +33.261 29.651 0.137 0 0 0 0 0 0 0 +33.239 29.819 0.137 0 0 0 0 0 0 0 +33.245 30.013 0.137 0 0 0 0 0 0 0 +33.221 30.182 0.137 0 0 0 0 0 0 0 +33.227 30.378 0.137 0 0 0 0 0 0 0 +33.241 30.487 0.137 0 0 0 0 0 0 0 +33.177 30.621 0.137 0 0 0 0 0 0 0 +16.464 15.274 0.172 0 0 0 0 0 0 0 +16.345 15.259 0.172 0 0 0 0 0 0 0 +16.252 15.268 0.172 0 0 0 0 0 0 0 +16.163 15.28 0.172 0 0 0 0 0 0 0 +16.131 15.346 0.172 0 0 0 0 0 0 0 +16.094 15.359 0.172 0 0 0 0 0 0 0 +16.074 15.437 0.172 0 0 0 0 0 0 0 +16.043 15.504 0.172 0 0 0 0 0 0 0 +16.215 15.77 0.171 0 0 0 0 0 0 0 +33.028 32.362 0.135 0 0 0 0 0 0 0 +32.993 32.532 0.135 0 0 0 0 0 0 0 +32.945 32.689 0.135 0 0 0 0 0 0 0 +32.958 32.806 0.134 0 0 0 0 0 0 0 +32.922 32.976 0.134 0 0 0 0 0 0 0 +32.876 33.137 0.134 0 0 0 0 0 0 0 +32.826 33.296 0.134 0 0 0 0 0 0 0 +32.795 33.475 0.134 0 0 0 0 0 0 0 +32.753 33.642 0.134 0 0 0 0 0 0 0 +32.705 33.805 0.134 0 0 0 0 0 0 0 +32.569 33.77 0.134 0 0 0 0 0 0 0 +32.518 33.93 0.134 0 0 0 0 0 0 0 +32.464 34.087 0.134 0 0 0 0 0 0 0 +32.406 34.241 0.133 0 0 0 0 0 0 0 +32.373 34.423 0.133 0 0 0 0 0 0 0 +32.333 34.598 0.133 0 0 0 0 0 0 0 +32.288 34.768 0.133 0 0 0 0 0 0 0 +32.379 34.976 0.133 0 0 0 0 0 0 0 +32.364 35.18 0.132 0 0 0 0 0 0 0 +32.314 35.348 0.132 0 0 0 0 0 0 0 +32.262 35.515 0.132 0 0 0 0 0 0 0 +32.193 35.664 0.132 0 0 0 0 0 0 0 +32.199 35.897 0.132 0 0 0 0 0 0 0 +32.282 36.218 0.131 0 0 0 0 0 0 0 +32.273 36.322 0.131 0 0 0 0 0 0 0 +32.197 36.467 0.131 0 0 0 0 0 0 0 +32.103 36.592 0.131 0 0 0 0 0 0 0 +32.114 36.837 0.131 0 0 0 0 0 0 0 +29.525 34.08 0.137 0 0 0 0 0 0 0 +31.81 37.19 0.131 0 0 0 0 0 0 0 +31.655 37.127 0.131 0 0 0 0 0 0 0 +31.574 37.268 0.131 0 0 0 0 0 0 0 +31.503 37.422 0.131 0 0 0 0 0 0 0 +31.44 37.587 0.131 0 0 0 0 0 0 0 +20.897 25.29 0.156 0 0 0 0 0 0 0 +20.936 25.501 0.155 0 0 0 0 0 0 0 +19.211 23.623 0.159 0 0 0 0 0 0 0 +19.092 23.627 0.159 0 0 0 0 0 0 0 +18.995 23.659 0.159 0 0 0 0 0 0 0 +18.934 23.736 0.159 0 0 0 0 0 0 0 +18.868 23.806 0.159 0 0 0 0 0 0 0 +30.761 39.088 0.129 0 0 0 0 0 0 0 +30.679 39.238 0.129 0 0 0 0 0 0 0 +30.802 39.523 0.129 0 0 0 0 0 0 0 +30.741 39.702 0.129 0 0 0 0 0 0 0 +30.664 39.86 0.129 0 0 0 0 0 0 0 +30.581 40.012 0.128 0 0 0 0 0 0 0 +30.524 40.199 0.128 0 0 0 0 0 0 0 +30.413 40.315 0.128 0 0 0 0 0 0 0 +30.321 40.457 0.128 0 0 0 0 0 0 0 +30.215 40.447 0.128 0 0 0 0 0 0 0 +30.039 40.476 0.128 0 0 0 0 0 0 0 +29.949 40.622 0.128 0 0 0 0 0 0 0 +29.848 40.751 0.128 0 0 0 0 0 0 0 +29.757 40.896 0.128 0 0 0 0 0 0 0 +29.679 41.059 0.128 0 0 0 0 0 0 0 +29.669 41.182 0.128 0 0 0 0 0 0 0 +29.576 41.326 0.128 0 0 0 0 0 0 0 +29.594 41.627 0.127 0 0 0 0 0 0 0 +29.566 41.865 0.127 0 0 0 0 0 0 0 +27.198 38.767 0.133 0 0 0 0 0 0 0 +27.045 38.808 0.133 0 0 0 0 0 0 0 +26.943 38.921 0.133 0 0 0 0 0 0 0 +29.301 42.474 0.127 0 0 0 0 0 0 0 +29.206 42.622 0.126 0 0 0 0 0 0 0 +29.11 42.77 0.126 0 0 0 0 0 0 0 +29.027 42.938 0.126 0 0 0 0 0 0 0 +28.929 43.083 0.126 0 0 0 0 0 0 0 +28.837 43.241 0.126 0 0 0 0 0 0 0 +28.719 43.358 0.126 0 0 0 0 0 0 0 +28.504 43.327 0.126 0 0 0 0 0 0 0 +28.465 43.417 0.126 0 0 0 0 0 0 0 +28.376 43.579 0.126 0 0 0 0 0 0 0 +28.274 43.723 0.126 0 0 0 0 0 0 0 +28.175 43.87 0.126 0 0 0 0 0 0 0 +28.09 44.043 0.126 0 0 0 0 0 0 0 +27.999 44.205 0.125 0 0 0 0 0 0 0 +18.551 29.477 0.153 0 0 0 0 0 0 0 +18.466 29.445 0.153 0 0 0 0 0 0 0 +18.367 29.493 0.153 0 0 0 0 0 0 0 +18.272 29.545 0.153 0 0 0 0 0 0 0 +18.194 29.628 0.153 0 0 0 0 0 0 0 +27.452 45.046 0.125 0 0 0 0 0 0 0 +29.846 49.326 0.117 0 0 0 0 0 0 0 +29.72 49.469 0.117 0 0 0 0 0 0 0 +29.592 49.609 0.117 0 0 0 0 0 0 0 +29.552 49.719 0.117 0 0 0 0 0 0 0 +29.191 49.463 0.117 0 0 0 0 0 0 0 +27.182 46.389 0.123 0 0 0 0 0 0 0 +27.032 46.467 0.123 0 0 0 0 0 0 0 +26.88 46.542 0.123 0 0 0 0 0 0 0 +26.727 46.614 0.123 0 0 0 0 0 0 0 +26.654 46.656 0.123 0 0 0 0 0 0 0 +26.491 46.711 0.123 0 0 0 0 0 0 0 +26.32 46.751 0.123 0 0 0 0 0 0 0 +26.164 46.818 0.123 0 0 0 0 0 0 0 +26.057 46.971 0.123 0 0 0 0 0 0 0 +25.939 47.107 0.123 0 0 0 0 0 0 0 +25.816 47.234 0.123 0 0 0 0 0 0 0 +12.643 23.279 0.165 0 0 0 0 0 0 0 +12.579 23.248 0.166 0 0 0 0 0 0 0 +12.512 23.297 0.165 0 0 0 0 0 0 0 +12.389 23.245 0.166 0 0 0 0 0 0 0 +26.094 50.152 0.119 0 0 0 0 0 0 0 +25.802 49.975 0.119 0 0 0 0 0 0 0 +25.006 48.619 0.122 0 0 0 0 0 0 0 +24.764 48.522 0.122 0 0 0 0 0 0 0 +24.615 48.607 0.122 0 0 0 0 0 0 0 +24.483 48.725 0.122 0 0 0 0 0 0 0 +24.401 48.945 0.122 0 0 0 0 0 0 0 +24.35 49.23 0.121 0 0 0 0 0 0 0 +24.216 49.349 0.121 0 0 0 0 0 0 0 +24.037 49.572 0.121 0 0 0 0 0 0 0 +23.914 49.716 0.121 0 0 0 0 0 0 0 +23.74 49.755 0.121 0 0 0 0 0 0 0 +23.551 49.76 0.121 0 0 0 0 0 0 0 +23.426 49.901 0.121 0 0 0 0 0 0 0 +16.497 35.412 0.146 0 0 0 0 0 0 0 +16.439 35.433 0.146 0 0 0 0 0 0 0 +23.109 50.247 0.121 0 0 0 0 0 0 0 +22.973 50.369 0.121 0 0 0 0 0 0 0 +22.841 50.497 0.121 0 0 0 0 0 0 0 +22.701 50.611 0.121 0 0 0 0 0 0 0 +21.16 47.571 0.126 0 0 0 0 0 0 0 +21.016 47.652 0.126 0 0 0 0 0 0 0 +22.483 51.199 0.12 0 0 0 0 0 0 0 +15.813 36.3 0.145 0 0 0 0 0 0 0 +22.19 51.408 0.12 0 0 0 0 0 0 0 +15.236 36.212 0.146 0 0 0 0 0 0 0 +15.23 36.518 0.145 0 0 0 0 0 0 0 +15.11 36.553 0.145 0 0 0 0 0 0 0 +21.343 51.891 0.12 0 0 0 0 0 0 0 +21.195 51.995 0.119 0 0 0 0 0 0 0 +21.06 52.133 0.119 0 0 0 0 0 0 0 +20.929 52.281 0.119 0 0 0 0 0 0 0 +20.775 52.37 0.119 0 0 0 0 0 0 0 +13.356 33.954 0.15 0 0 0 0 0 0 0 +13.434 34.471 0.149 0 0 0 0 0 0 0 +13.538 34.903 0.148 0 0 0 0 0 0 0 +20.268 52.779 0.119 0 0 0 0 0 0 0 +20.128 52.911 0.119 0 0 0 0 0 0 0 +19.976 53.012 0.119 0 0 0 0 0 0 0 +24.511 65.69 0.098 0 0 0 0 0 0 0 +24.287 65.72 0.098 0 0 0 0 0 0 0 +19.936 54.458 0.117 0 0 0 0 0 0 0 +19.642 53.916 0.118 0 0 0 0 0 0 0 +19.715 54.651 0.116 0 0 0 0 0 0 0 +20.176 56.487 0.114 0 0 0 0 0 0 0 +19.961 56.443 0.114 0 0 0 0 0 0 0 +23.059 65.873 0.098 0 0 0 0 0 0 0 +22.841 65.915 0.098 0 0 0 0 0 0 0 +18.577 54.146 0.118 0 0 0 0 0 0 0 +18.472 54.115 0.118 0 0 0 0 0 0 0 +18.335 54.271 0.118 0 0 0 0 0 0 0 +18.167 54.336 0.118 0 0 0 0 0 0 0 +18.024 54.478 0.118 0 0 0 0 0 0 0 +18.345 56.04 0.115 0 0 0 0 0 0 0 +18.243 56.326 0.115 0 0 0 0 0 0 0 +18.315 57.162 0.113 0 0 0 0 0 0 0 +18.871 59.869 0.109 0 0 0 0 0 0 0 +18.741 60.117 0.109 0 0 0 0 0 0 0 +18.799 60.978 0.108 0 0 0 0 0 0 0 +19.072 62.562 0.105 0 0 0 0 0 0 0 +12.66 42.455 0.138 0 0 0 0 0 0 0 +19.315 65.573 0.101 0 0 0 0 0 0 0 +19.406 66.265 0.099 0 0 0 0 0 0 0 +19.695 68.048 0.097 0 0 0 0 0 0 0 +19.519 68.242 0.097 0 0 0 0 0 0 0 +19.566 69.229 0.095 0 0 0 0 0 0 0 +20.01 71.661 0.091 0 0 0 0 0 0 0 +20.48 74.248 0.087 0 0 0 0 0 0 0 +20.399 74.873 0.086 0 0 0 0 0 0 0 +13.514 52.489 0.122 0 0 0 0 0 0 0 +15.418 62.752 0.106 0 0 0 0 0 0 0 +15.249 62.917 0.106 0 0 0 0 0 0 0 +15.101 63.173 0.106 0 0 0 0 0 0 0 +13.442 57.829 0.114 0 0 0 0 0 0 0 +2.639 12.91 0.186 0 0 0 0 0 0 0 +2.634 13.094 0.186 0 0 0 0 0 0 0 +0.588 2.965 0.202 0 0 0 0 0 0 0 +0.581 2.98 0.202 0 0 0 0 0 0 0 +3.474 17.903 0.178 0 0 0 0 0 0 0 +0.568 2.963 0.202 0 0 0 0 0 0 0 +0.563 2.961 0.202 0 0 0 0 0 0 0 +0.559 2.995 0.202 0 0 0 0 0 0 0 +0.545 2.971 0.202 0 0 0 0 0 0 0 +0.537 2.98 0.202 0 0 0 0 0 0 0 +0.529 2.988 0.202 0 0 0 0 0 0 0 +0.52 2.99 0.202 0 0 0 0 0 0 0 +0.509 2.985 0.202 0 0 0 0 0 0 0 +0.51 3.018 0.202 0 0 0 0 0 0 0 +0.567 3.446 0.201 0 0 0 0 0 0 0 +0.556 3.448 0.201 0 0 0 0 0 0 0 +0.545 3.444 0.201 0 0 0 0 0 0 0 +0.544 3.515 0.201 0 0 0 0 0 0 0 +0.533 3.516 0.201 0 0 0 0 0 0 0 +0.517 3.482 0.201 0 0 0 0 0 0 0 +0.512 3.483 0.201 0 0 0 0 0 0 0 +0.5 3.483 0.201 0 0 0 0 0 0 0 +0.484 3.445 0.201 0 0 0 0 0 0 0 +0.478 3.484 0.201 0 0 0 0 0 0 0 +0.468 3.493 0.201 0 0 0 0 0 0 0 +0.445 3.396 0.201 0 0 0 0 0 0 0 +0.447 3.5 0.201 0 0 0 0 0 0 0 +0.409 3.275 0.201 0 0 0 0 0 0 0 +0.375 3.019 0.202 0 0 0 0 0 0 0 +0.365 3.017 0.202 0 0 0 0 0 0 0 +0.357 3.034 0.202 0 0 0 0 0 0 0 +0.346 3.027 0.202 0 0 0 0 0 0 0 +0.337 3.032 0.202 0 0 0 0 0 0 0 +0.327 3.027 0.202 0 0 0 0 0 0 0 +0.318 3.034 0.202 0 0 0 0 0 0 0 +0.311 3.012 0.202 0 0 0 0 0 0 0 +0.304 3.033 0.202 0 0 0 0 0 0 0 +0.293 3.016 0.202 0 0 0 0 0 0 0 +0.285 3.037 0.202 0 0 0 0 0 0 0 +0.276 3.044 0.202 0 0 0 0 0 0 0 +0.266 3.039 0.202 0 0 0 0 0 0 0 +0.257 3.052 0.202 0 0 0 0 0 0 0 +0.251 3.03 0.202 0 0 0 0 0 0 0 +0.242 3.041 0.202 0 0 0 0 0 0 0 +0.232 3.034 0.202 0 0 0 0 0 0 0 +0.223 3.042 0.202 0 0 0 0 0 0 0 +0.214 3.047 0.202 0 0 0 0 0 0 0 +0.204 3.052 0.202 0 0 0 0 0 0 0 +0.194 3.044 0.202 0 0 0 0 0 0 0 +0.189 3.043 0.202 0 0 0 0 0 0 0 +0.18 3.043 0.202 0 0 0 0 0 0 0 +0.17 3.05 0.202 0 0 0 0 0 0 0 +0.161 3.042 0.202 0 0 0 0 0 0 0 +0.151 3.035 0.202 0 0 0 0 0 0 0 +0.142 3.051 0.202 0 0 0 0 0 0 0 +0.132 3.05 0.202 0 0 0 0 0 0 0 +0.127 3.038 0.202 0 0 0 0 0 0 0 +1.349 75.732 0.089 0 0 0 0 0 0 0 +1.112 75.766 0.089 0 0 0 0 0 0 0 +0.874 75.797 0.089 0 0 0 0 0 0 0 +0.755 75.839 0.089 0 0 0 0 0 0 0 +0.517 75.879 0.089 0 0 0 0 0 0 0 +-0.835 25.049 0.168 0 0 0 0 0 0 0 +-1.076 23.468 0.17 0 0 0 0 0 0 0 +-1.147 23.402 0.17 0 0 0 0 0 0 0 +-1.178 22.61 0.171 0 0 0 0 0 0 0 +-1.484 20.036 0.175 0 0 0 0 0 0 0 +-1.54 19.947 0.175 0 0 0 0 0 0 0 +-1.554 19.344 0.176 0 0 0 0 0 0 0 +-1.695 17.943 0.179 0 0 0 0 0 0 0 +-1.737 17.794 0.179 0 0 0 0 0 0 0 +-7.328 65.778 0.104 0 0 0 0 0 0 0 +-7.529 65.713 0.104 0 0 0 0 0 0 0 +-1.896 16.053 0.181 0 0 0 0 0 0 0 +-1.946 16.045 0.181 0 0 0 0 0 0 0 +-2.174 14.652 0.184 0 0 0 0 0 0 0 +-2.164 14.283 0.184 0 0 0 0 0 0 0 +-2.393 12.807 0.186 0 0 0 0 0 0 0 +-2.373 12.483 0.187 0 0 0 0 0 0 0 +-2.427 12.552 0.187 0 0 0 0 0 0 0 +-2.46 12.515 0.187 0 0 0 0 0 0 0 +-3.508 17.084 0.179 0 0 0 0 0 0 0 +-3.738 17.109 0.179 0 0 0 0 0 0 0 +-3.793 17.105 0.179 0 0 0 0 0 0 0 +-3.825 17.122 0.179 0 0 0 0 0 0 0 +-3.885 17.138 0.179 0 0 0 0 0 0 0 +-2.56 10.859 0.189 0 0 0 0 0 0 0 +-2.63 10.998 0.189 0 0 0 0 0 0 0 +-2.597 10.716 0.189 0 0 0 0 0 0 0 +-2.618 10.728 0.189 0 0 0 0 0 0 0 +-4.264 17.173 0.179 0 0 0 0 0 0 0 +-4.321 17.171 0.179 0 0 0 0 0 0 0 +-4.361 17.103 0.179 0 0 0 0 0 0 0 +-4.395 17.012 0.179 0 0 0 0 0 0 0 +-3.835 14.485 0.183 0 0 0 0 0 0 0 +-3.568 13.315 0.185 0 0 0 0 0 0 0 +-3.565 13.22 0.185 0 0 0 0 0 0 0 +-3.593 13.163 0.185 0 0 0 0 0 0 0 +-3.639 13.167 0.185 0 0 0 0 0 0 0 +-4.063 14.514 0.183 0 0 0 0 0 0 0 +-4.114 14.519 0.183 0 0 0 0 0 0 0 +-4.164 14.521 0.183 0 0 0 0 0 0 0 +-4.213 14.52 0.183 0 0 0 0 0 0 0 +-4.237 14.519 0.183 0 0 0 0 0 0 0 +-2.816 9.147 0.192 0 0 0 0 0 0 0 +-2.829 9.088 0.192 0 0 0 0 0 0 0 +-2.83 9.042 0.192 0 0 0 0 0 0 0 +-2.844 8.985 0.192 0 0 0 0 0 0 0 +-2.859 8.938 0.192 0 0 0 0 0 0 0 +-2.876 8.895 0.192 0 0 0 0 0 0 0 +-2.889 8.84 0.192 0 0 0 0 0 0 0 +-2.921 8.845 0.192 0 0 0 0 0 0 0 +-2.905 8.705 0.192 0 0 0 0 0 0 0 +-2.927 8.723 0.192 0 0 0 0 0 0 0 +-2.965 8.746 0.192 0 0 0 0 0 0 0 +-3.007 8.778 0.192 0 0 0 0 0 0 0 +-3.039 8.782 0.192 0 0 0 0 0 0 0 +-3.069 8.78 0.192 0 0 0 0 0 0 0 +-3.102 8.785 0.192 0 0 0 0 0 0 0 +-3.131 8.779 0.192 0 0 0 0 0 0 0 +-3.163 8.782 0.192 0 0 0 0 0 0 0 +-4.705 12.961 0.185 0 0 0 0 0 0 0 +-4.752 12.963 0.185 0 0 0 0 0 0 0 +-4.8 12.969 0.185 0 0 0 0 0 0 0 +-4.817 12.89 0.185 0 0 0 0 0 0 0 +-4.838 12.824 0.185 0 0 0 0 0 0 0 +-4.969 13.046 0.185 0 0 0 0 0 0 0 +-4.92 12.797 0.185 0 0 0 0 0 0 0 +-3.794 9.192 0.191 0 0 0 0 0 0 0 +-3.801 9.129 0.191 0 0 0 0 0 0 0 +-3.837 9.133 0.191 0 0 0 0 0 0 0 +-3.885 9.165 0.191 0 0 0 0 0 0 0 +-3.911 9.148 0.191 0 0 0 0 0 0 0 +-4.027 9.337 0.191 0 0 0 0 0 0 0 +-3.302 7.635 0.194 0 0 0 0 0 0 0 +-3.321 7.548 0.194 0 0 0 0 0 0 0 +-3.354 7.558 0.194 0 0 0 0 0 0 0 +-3.364 7.518 0.194 0 0 0 0 0 0 0 +-3.402 7.538 0.194 0 0 0 0 0 0 0 +-3.91 8.512 0.192 0 0 0 0 0 0 0 +-3.92 8.5 0.192 0 0 0 0 0 0 0 +-3.949 8.491 0.192 0 0 0 0 0 0 0 +-4.325 9.219 0.191 0 0 0 0 0 0 0 +-4.357 9.212 0.191 0 0 0 0 0 0 0 +-4.399 9.225 0.191 0 0 0 0 0 0 0 +-4.472 9.303 0.19 0 0 0 0 0 0 0 +-4.534 9.356 0.19 0 0 0 0 0 0 0 +-4.972 10.213 0.189 0 0 0 0 0 0 0 +-4.991 10.17 0.189 0 0 0 0 0 0 0 +-5.019 10.147 0.189 0 0 0 0 0 0 0 +-5.062 10.074 0.189 0 0 0 0 0 0 0 +-5.073 10.019 0.189 0 0 0 0 0 0 0 +-5.152 9.681 0.189 0 0 0 0 0 0 0 +-5.077 9.294 0.19 0 0 0 0 0 0 0 +-5.113 9.29 0.19 0 0 0 0 0 0 0 +-5.125 9.243 0.19 0 0 0 0 0 0 0 +-5.135 9.193 0.19 0 0 0 0 0 0 0 +-5.149 9.149 0.19 0 0 0 0 0 0 0 +-5.159 9.102 0.19 0 0 0 0 0 0 0 +-5.192 9.125 0.19 0 0 0 0 0 0 0 +-5.226 9.119 0.19 0 0 0 0 0 0 0 +-5.266 9.122 0.19 0 0 0 0 0 0 0 +-5.254 8.971 0.19 0 0 0 0 0 0 0 +-5.247 8.894 0.19 0 0 0 0 0 0 0 +-5.407 9.099 0.19 0 0 0 0 0 0 0 +-5.249 8.62 0.191 0 0 0 0 0 0 0 +-5.247 8.556 0.191 0 0 0 0 0 0 0 +-5.229 8.466 0.191 0 0 0 0 0 0 0 +-5.202 8.365 0.191 0 0 0 0 0 0 0 +-5.216 8.328 0.191 0 0 0 0 0 0 0 +-5.223 8.311 0.191 0 0 0 0 0 0 0 +-5.206 8.228 0.191 0 0 0 0 0 0 0 +-7.193 11.271 0.186 0 0 0 0 0 0 0 +-5.058 7.777 0.192 0 0 0 0 0 0 0 +-5.032 7.659 0.192 0 0 0 0 0 0 0 +-5.057 7.593 0.192 0 0 0 0 0 0 0 +-40.037 58.587 0.097 0 0 0 0 0 0 0 +-39.927 57.84 0.098 0 0 0 0 0 0 0 +-40.227 57.883 0.097 0 0 0 0 0 0 0 +-40.399 57.743 0.097 0 0 0 0 0 0 0 +-40.411 57.376 0.098 0 0 0 0 0 0 0 +-40.803 57.547 0.097 0 0 0 0 0 0 0 +-41.208 57.733 0.097 0 0 0 0 0 0 0 +-41.467 57.712 0.096 0 0 0 0 0 0 0 +-45.576 63.216 0.086 0 0 0 0 0 0 0 +-45.816 63.129 0.086 0 0 0 0 0 0 0 +-46.061 63.05 0.085 0 0 0 0 0 0 0 +-46.313 62.979 0.085 0 0 0 0 0 0 0 +-46.564 62.905 0.085 0 0 0 0 0 0 0 +-47.746 64.078 0.083 0 0 0 0 0 0 0 +-48.432 63.529 0.083 0 0 0 0 0 0 0 +-48.574 63.302 0.083 0 0 0 0 0 0 0 +-48.709 63.066 0.083 0 0 0 0 0 0 0 +-48.859 62.852 0.083 0 0 0 0 0 0 0 +-34.052 43.115 0.121 0 0 0 0 0 0 0 +-34.139 42.947 0.121 0 0 0 0 0 0 0 +-34.341 42.923 0.121 0 0 0 0 0 0 0 +-34.368 42.681 0.122 0 0 0 0 0 0 0 +-23.797 28.726 0.149 0 0 0 0 0 0 0 +-36.737 43.483 0.118 0 0 0 0 0 0 0 +-36.853 43.343 0.118 0 0 0 0 0 0 0 +-36.948 43.18 0.118 0 0 0 0 0 0 0 +-36.668 39.972 0.122 0 0 0 0 0 0 0 +-36.913 39.985 0.122 0 0 0 0 0 0 0 +-36.988 39.815 0.122 0 0 0 0 0 0 0 +-21.687 22.852 0.158 0 0 0 0 0 0 0 +-21.707 22.73 0.158 0 0 0 0 0 0 0 +-21.707 22.587 0.158 0 0 0 0 0 0 0 +-21.741 22.481 0.158 0 0 0 0 0 0 0 +-21.795 22.396 0.158 0 0 0 0 0 0 0 +-21.836 22.367 0.158 0 0 0 0 0 0 0 +-21.83 22.221 0.158 0 0 0 0 0 0 0 +-32.64 29.84 0.138 0 0 0 0 0 0 0 +-32.708 29.715 0.138 0 0 0 0 0 0 0 +-32.777 29.684 0.138 0 0 0 0 0 0 0 +-36.018 32.41 0.131 0 0 0 0 0 0 0 +-35.957 32.151 0.132 0 0 0 0 0 0 0 +-36.083 32.06 0.132 0 0 0 0 0 0 0 +-36.128 31.898 0.132 0 0 0 0 0 0 0 +-36.165 31.729 0.132 0 0 0 0 0 0 0 +-36.205 31.564 0.132 0 0 0 0 0 0 0 +-36.238 31.392 0.132 0 0 0 0 0 0 0 +-36.222 31.279 0.132 0 0 0 0 0 0 0 +-36.247 31.103 0.132 0 0 0 0 0 0 0 +-36.284 30.937 0.133 0 0 0 0 0 0 0 +-36.306 30.76 0.133 0 0 0 0 0 0 0 +-36.338 30.591 0.133 0 0 0 0 0 0 0 +-36.38 30.432 0.133 0 0 0 0 0 0 0 +-36.404 30.258 0.133 0 0 0 0 0 0 0 +-36.371 30.134 0.133 0 0 0 0 0 0 0 +-36.41 29.974 0.133 0 0 0 0 0 0 0 +-36.521 29.873 0.133 0 0 0 0 0 0 0 +-36.666 29.8 0.133 0 0 0 0 0 0 0 +-36.615 29.19 0.134 0 0 0 0 0 0 0 +-36.755 29.207 0.134 0 0 0 0 0 0 0 +-34.03 26.871 0.139 0 0 0 0 0 0 0 +-36.558 28.679 0.134 0 0 0 0 0 0 0 +-36.577 28.508 0.135 0 0 0 0 0 0 0 +-36.579 28.326 0.135 0 0 0 0 0 0 0 +-36.605 28.162 0.135 0 0 0 0 0 0 0 +-36.621 27.992 0.135 0 0 0 0 0 0 0 +-36.6 27.885 0.135 0 0 0 0 0 0 0 +-36.605 27.707 0.135 0 0 0 0 0 0 0 +-18.514 13.939 0.171 0 0 0 0 0 0 0 +-18.579 13.896 0.171 0 0 0 0 0 0 0 +-36.642 27.197 0.136 0 0 0 0 0 0 0 +-36.665 27.035 0.136 0 0 0 0 0 0 0 +-18.77 13.765 0.17 0 0 0 0 0 0 0 +-36.769 26.757 0.136 0 0 0 0 0 0 0 +-36.87 26.742 0.136 0 0 0 0 0 0 0 +-37.012 26.668 0.136 0 0 0 0 0 0 0 +-37.157 26.596 0.136 0 0 0 0 0 0 0 +-37.262 26.494 0.136 0 0 0 0 0 0 0 +-37.431 26.438 0.135 0 0 0 0 0 0 0 +-37.431 26.261 0.136 0 0 0 0 0 0 0 +-37.434 26.089 0.136 0 0 0 0 0 0 0 +-32.974 22.908 0.144 0 0 0 0 0 0 0 +-32.977 22.756 0.144 0 0 0 0 0 0 0 +-6.706 4.591 0.194 0 0 0 0 0 0 0 +-6.712 4.564 0.194 0 0 0 0 0 0 0 +-6.716 4.536 0.194 0 0 0 0 0 0 0 +-6.72 4.508 0.194 0 0 0 0 0 0 0 +-6.724 4.496 0.194 0 0 0 0 0 0 0 +-6.733 4.471 0.194 0 0 0 0 0 0 0 +-6.749 4.451 0.194 0 0 0 0 0 0 0 +-6.766 4.432 0.194 0 0 0 0 0 0 0 +-6.772 4.405 0.194 0 0 0 0 0 0 0 +-6.777 4.379 0.194 0 0 0 0 0 0 0 +-6.745 4.328 0.194 0 0 0 0 0 0 0 +-36.557 23.24 0.139 0 0 0 0 0 0 0 +-36.66 23.144 0.139 0 0 0 0 0 0 0 +-36.777 23.057 0.139 0 0 0 0 0 0 0 +-36.794 22.907 0.139 0 0 0 0 0 0 0 +-36.776 22.736 0.139 0 0 0 0 0 0 0 +-36.771 22.573 0.14 0 0 0 0 0 0 0 +-36.759 22.408 0.14 0 0 0 0 0 0 0 +-36.719 22.304 0.14 0 0 0 0 0 0 0 +-36.695 22.132 0.14 0 0 0 0 0 0 0 +-36.474 21.843 0.141 0 0 0 0 0 0 0 +-36.475 21.689 0.141 0 0 0 0 0 0 0 +-36.459 21.524 0.141 0 0 0 0 0 0 0 +-36.447 21.363 0.141 0 0 0 0 0 0 0 +-36.433 21.201 0.141 0 0 0 0 0 0 0 +-36.385 21.097 0.141 0 0 0 0 0 0 0 +-36.376 20.94 0.141 0 0 0 0 0 0 0 +-36.355 20.776 0.142 0 0 0 0 0 0 0 +-36.352 20.623 0.142 0 0 0 0 0 0 0 +-36.335 20.462 0.142 0 0 0 0 0 0 0 +-36.308 20.298 0.142 0 0 0 0 0 0 0 +-36.298 20.143 0.142 0 0 0 0 0 0 0 +-36.465 20.085 0.142 0 0 0 0 0 0 0 +-36.456 20.006 0.142 0 0 0 0 0 0 0 +-12.635 6.85 0.184 0 0 0 0 0 0 0 +-12.563 6.76 0.184 0 0 0 0 0 0 0 +-36.348 19.357 0.143 0 0 0 0 0 0 0 +-36.343 19.208 0.143 0 0 0 0 0 0 0 +-36.212 18.993 0.143 0 0 0 0 0 0 0 +-36.034 18.828 0.143 0 0 0 0 0 0 0 +-36.018 18.676 0.144 0 0 0 0 0 0 0 +-35.997 18.522 0.144 0 0 0 0 0 0 0 +-35.962 18.362 0.144 0 0 0 0 0 0 0 +-35.945 18.211 0.144 0 0 0 0 0 0 0 +-35.905 18.049 0.144 0 0 0 0 0 0 0 +-35.806 17.859 0.144 0 0 0 0 0 0 0 +-35.809 17.79 0.145 0 0 0 0 0 0 0 +-35.805 17.648 0.145 0 0 0 0 0 0 0 +-35.791 17.501 0.145 0 0 0 0 0 0 0 +-35.777 17.356 0.145 0 0 0 0 0 0 0 +-35.716 17.188 0.145 0 0 0 0 0 0 0 +-14.747 7 0.181 0 0 0 0 0 0 0 +-14.994 7.088 0.181 0 0 0 0 0 0 0 +-35.894 16.79 0.145 0 0 0 0 0 0 0 +-35.843 16.629 0.145 0 0 0 0 0 0 0 +-35.837 16.49 0.145 0 0 0 0 0 0 0 +-35.79 16.332 0.146 0 0 0 0 0 0 0 +-35.75 16.179 0.146 0 0 0 0 0 0 0 +-35.708 16.024 0.146 0 0 0 0 0 0 0 +-35.388 15.814 0.146 0 0 0 0 0 0 0 +-35.316 15.65 0.147 0 0 0 0 0 0 0 +-35.281 15.502 0.147 0 0 0 0 0 0 0 +-35.243 15.353 0.147 0 0 0 0 0 0 0 +-35.203 15.205 0.147 0 0 0 0 0 0 0 +-35.161 15.055 0.147 0 0 0 0 0 0 0 +-35.11 14.903 0.147 0 0 0 0 0 0 0 +-35.08 14.761 0.148 0 0 0 0 0 0 0 +-34.998 14.661 0.148 0 0 0 0 0 0 0 +-34.966 14.519 0.148 0 0 0 0 0 0 0 +-34.915 14.37 0.148 0 0 0 0 0 0 0 +-34.871 14.224 0.148 0 0 0 0 0 0 0 +-34.825 14.078 0.148 0 0 0 0 0 0 0 +-34.83 13.953 0.148 0 0 0 0 0 0 0 +-34.959 13.877 0.148 0 0 0 0 0 0 0 +-34.917 13.797 0.148 0 0 0 0 0 0 0 +-34.888 13.659 0.148 0 0 0 0 0 0 0 +-34.832 13.511 0.149 0 0 0 0 0 0 0 +-34.785 13.367 0.149 0 0 0 0 0 0 0 +-34.748 13.228 0.149 0 0 0 0 0 0 0 +-34.688 13.081 0.149 0 0 0 0 0 0 0 +-34.529 12.897 0.149 0 0 0 0 0 0 0 +-29.857 11.102 0.157 0 0 0 0 0 0 0 +-29.783 10.969 0.157 0 0 0 0 0 0 0 +-29.789 10.865 0.157 0 0 0 0 0 0 0 +-29.831 10.774 0.157 0 0 0 0 0 0 0 +-29.917 10.699 0.157 0 0 0 0 0 0 0 +-34.075 12.061 0.15 0 0 0 0 0 0 0 +-34.039 11.928 0.151 0 0 0 0 0 0 0 +-33.971 11.845 0.151 0 0 0 0 0 0 0 +-33.925 11.709 0.151 0 0 0 0 0 0 0 +-33.872 11.572 0.151 0 0 0 0 0 0 0 +-33.819 11.436 0.151 0 0 0 0 0 0 0 +-33.768 11.3 0.151 0 0 0 0 0 0 0 +-33.735 11.172 0.151 0 0 0 0 0 0 0 +-33.865 11.097 0.151 0 0 0 0 0 0 0 +-33.84 11.03 0.151 0 0 0 0 0 0 0 +-33.791 10.897 0.151 0 0 0 0 0 0 0 +-33.736 10.762 0.152 0 0 0 0 0 0 0 +-33.683 10.629 0.152 0 0 0 0 0 0 0 +-33.627 10.495 0.152 0 0 0 0 0 0 0 +-33.568 10.361 0.152 0 0 0 0 0 0 0 +-33.526 10.233 0.152 0 0 0 0 0 0 0 +-33.233 10.087 0.153 0 0 0 0 0 0 0 +-33.154 9.949 0.153 0 0 0 0 0 0 0 +-33.097 9.819 0.153 0 0 0 0 0 0 0 +-33.028 9.686 0.153 0 0 0 0 0 0 0 +-32.954 9.552 0.153 0 0 0 0 0 0 0 +-32.901 9.425 0.153 0 0 0 0 0 0 0 +-32.842 9.296 0.154 0 0 0 0 0 0 0 +-32.774 9.221 0.154 0 0 0 0 0 0 0 +-32.697 9.089 0.154 0 0 0 0 0 0 0 +-32.644 8.964 0.154 0 0 0 0 0 0 0 +-32.564 8.832 0.154 0 0 0 0 0 0 0 +-32.512 8.709 0.154 0 0 0 0 0 0 0 +-32.433 8.579 0.154 0 0 0 0 0 0 0 +-32.439 8.471 0.155 0 0 0 0 0 0 0 +-32.52 8.438 0.154 0 0 0 0 0 0 0 +-32.5 8.324 0.154 0 0 0 0 0 0 0 +-32.427 8.196 0.155 0 0 0 0 0 0 0 +-32.357 8.071 0.155 0 0 0 0 0 0 0 +-32.291 7.947 0.155 0 0 0 0 0 0 0 +-32.228 7.824 0.155 0 0 0 0 0 0 0 +-32.167 7.702 0.155 0 0 0 0 0 0 0 +-32.094 7.632 0.155 0 0 0 0 0 0 0 +-31.792 7.455 0.156 0 0 0 0 0 0 0 +-31.691 7.326 0.156 0 0 0 0 0 0 0 +-31.637 7.209 0.156 0 0 0 0 0 0 0 +-31.566 7.089 0.156 0 0 0 0 0 0 0 +-31.487 6.967 0.157 0 0 0 0 0 0 0 +-31.423 6.85 0.157 0 0 0 0 0 0 0 +-31.348 6.73 0.157 0 0 0 0 0 0 0 +-31.273 6.663 0.157 0 0 0 0 0 0 0 +-31.211 6.547 0.157 0 0 0 0 0 0 0 +-31.139 6.43 0.157 0 0 0 0 0 0 0 +-31.087 6.318 0.157 0 0 0 0 0 0 0 +-27.301 5.463 0.163 0 0 0 0 0 0 0 +-30.922 6.082 0.158 0 0 0 0 0 0 0 +-30.837 5.965 0.158 0 0 0 0 0 0 0 +-30.874 5.922 0.158 0 0 0 0 0 0 0 +-30.945 5.835 0.158 0 0 0 0 0 0 0 +-30.916 5.729 0.158 0 0 0 0 0 0 0 +-30.828 5.613 0.158 0 0 0 0 0 0 0 +-30.766 5.502 0.158 0 0 0 0 0 0 0 +-30.673 5.386 0.158 0 0 0 0 0 0 0 +-30.611 5.276 0.158 0 0 0 0 0 0 0 +-30.545 5.166 0.158 0 0 0 0 0 0 0 +-30.46 5.102 0.159 0 0 0 0 0 0 0 +-30.261 4.971 0.159 0 0 0 0 0 0 0 +-30.041 4.839 0.159 0 0 0 0 0 0 0 +-29.969 4.731 0.159 0 0 0 0 0 0 0 +-29.897 4.623 0.16 0 0 0 0 0 0 0 +-29.821 4.515 0.16 0 0 0 0 0 0 0 +-29.744 4.408 0.16 0 0 0 0 0 0 0 +-29.673 4.35 0.16 0 0 0 0 0 0 0 +-29.598 4.244 0.16 0 0 0 0 0 0 0 +-29.512 4.138 0.16 0 0 0 0 0 0 0 +-29.459 4.036 0.16 0 0 0 0 0 0 0 +-29.385 3.932 0.161 0 0 0 0 0 0 0 +-29.308 3.828 0.161 0 0 0 0 0 0 0 +-29.238 3.726 0.161 0 0 0 0 0 0 0 +-29.147 3.667 0.161 0 0 0 0 0 0 0 +-29.059 3.564 0.161 0 0 0 0 0 0 0 +-28.992 3.463 0.161 0 0 0 0 0 0 0 +-29.075 3.38 0.161 0 0 0 0 0 0 0 +-29.089 3.29 0.161 0 0 0 0 0 0 0 +-29.145 3.203 0.161 0 0 0 0 0 0 0 +-29.026 3.098 0.161 0 0 0 0 0 0 0 +-28.967 3.046 0.161 0 0 0 0 0 0 0 +-28.887 2.946 0.161 0 0 0 0 0 0 0 +-28.838 2.849 0.162 0 0 0 0 0 0 0 +-28.769 2.751 0.162 0 0 0 0 0 0 0 +-28.672 2.651 0.162 0 0 0 0 0 0 0 +-28.589 2.553 0.162 0 0 0 0 0 0 0 +-28.254 2.434 0.163 0 0 0 0 0 0 0 +-28.03 2.37 0.163 0 0 0 0 0 0 0 +-27.962 2.276 0.163 0 0 0 0 0 0 0 +-27.897 2.183 0.163 0 0 0 0 0 0 0 +-27.812 2.088 0.163 0 0 0 0 0 0 0 +-27.725 1.994 0.163 0 0 0 0 0 0 0 +-27.639 1.901 0.164 0 0 0 0 0 0 0 +-27.575 1.81 0.164 0 0 0 0 0 0 0 +-27.495 1.718 0.164 0 0 0 0 0 0 0 +-27.41 1.669 0.164 0 0 0 0 0 0 0 +-21.706 1.259 0.173 0 0 0 0 0 0 0 +-21.654 1.188 0.173 0 0 0 0 0 0 0 +-21.622 1.118 0.173 0 0 0 0 0 0 0 +-21.615 1.05 0.173 0 0 0 0 0 0 0 +-21.606 0.981 0.173 0 0 0 0 0 0 0 +-21.629 0.914 0.173 0 0 0 0 0 0 0 +-21.671 0.882 0.173 0 0 0 0 0 0 0 +-21.761 0.817 0.173 0 0 0 0 0 0 0 +-26.947 0.92 0.165 0 0 0 0 0 0 0 +-26.872 0.833 0.165 0 0 0 0 0 0 0 +-26.802 0.747 0.165 0 0 0 0 0 0 0 +-26.7 0.66 0.165 0 0 0 0 0 0 0 +-26.6 0.574 0.165 0 0 0 0 0 0 0 +-26.525 0.531 0.165 0 0 0 0 0 0 0 +-26.439 0.446 0.165 0 0 0 0 0 0 0 +-26.322 0.362 0.166 0 0 0 0 0 0 0 +-26.039 0.276 0.166 0 0 0 0 0 0 0 +-25.956 0.194 0.166 0 0 0 0 0 0 0 +-25.882 0.112 0.166 0 0 0 0 0 0 0 +-25.804 0.031 0.166 0 0 0 0 0 0 0 +-25.719 -0.009 0.167 0 0 0 0 0 0 0 +-25.65 -0.09 0.167 0 0 0 0 0 0 0 +-25.56 -0.17 0.167 0 0 0 0 0 0 0 +-25.455 -0.249 0.167 0 0 0 0 0 0 0 +-25.374 -0.328 0.167 0 0 0 0 0 0 0 +-25.305 -0.406 0.167 0 0 0 0 0 0 0 +-25.23 -0.484 0.167 0 0 0 0 0 0 0 +-25.136 -0.562 0.168 0 0 0 0 0 0 0 +-25.092 -0.639 0.168 0 0 0 0 0 0 0 +-25.171 -0.681 0.167 0 0 0 0 0 0 0 +-25.183 -0.761 0.167 0 0 0 0 0 0 0 +-25.384 -0.847 0.167 0 0 0 0 0 0 0 +-25.422 -0.928 0.167 0 0 0 0 0 0 0 +-25.56 -1.014 0.167 0 0 0 0 0 0 0 +-24.804 -1.139 0.168 0 0 0 0 0 0 0 +-24.731 -1.174 0.168 0 0 0 0 0 0 0 +-25.02 -1.267 0.168 0 0 0 0 0 0 0 +-25.182 -1.355 0.167 0 0 0 0 0 0 0 +-24.125 -1.449 0.169 0 0 0 0 0 0 0 +-24.051 -1.52 0.169 0 0 0 0 0 0 0 +-23.984 -1.592 0.169 0 0 0 0 0 0 0 +-23.919 -1.625 0.169 0 0 0 0 0 0 0 +-23.828 -1.694 0.169 0 0 0 0 0 0 0 +-16.063 -1.184 0.182 0 0 0 0 0 0 0 +-16.045 -1.234 0.182 0 0 0 0 0 0 0 +-16.067 -1.286 0.181 0 0 0 0 0 0 0 +-16.061 -1.336 0.181 0 0 0 0 0 0 0 +-16.089 -1.39 0.181 0 0 0 0 0 0 0 +-16.064 -1.413 0.181 0 0 0 0 0 0 0 +-16.331 -1.489 0.181 0 0 0 0 0 0 0 +-15.96 -1.505 0.182 0 0 0 0 0 0 0 +-15.883 -1.649 0.182 0 0 0 0 0 0 0 +-15.894 -1.7 0.182 0 0 0 0 0 0 0 +-15.989 -1.736 0.182 0 0 0 0 0 0 0 +-22.779 -2.557 0.171 0 0 0 0 0 0 0 +-22.779 -2.629 0.171 0 0 0 0 0 0 0 +-22.795 -2.704 0.171 0 0 0 0 0 0 0 +-22.786 -2.775 0.171 0 0 0 0 0 0 0 +-22.801 -2.85 0.171 0 0 0 0 0 0 0 +-22.798 -2.922 0.171 0 0 0 0 0 0 0 +-22.82 -2.998 0.171 0 0 0 0 0 0 0 +-22.818 -3.034 0.171 0 0 0 0 0 0 0 +-22.83 -3.109 0.171 0 0 0 0 0 0 0 +-22.812 -3.179 0.171 0 0 0 0 0 0 0 +-22.786 -3.249 0.171 0 0 0 0 0 0 0 +-22.817 -3.326 0.171 0 0 0 0 0 0 0 +-22.85 -3.405 0.171 0 0 0 0 0 0 0 +-22.8 -3.47 0.171 0 0 0 0 0 0 0 +-22.713 -3.494 0.171 0 0 0 0 0 0 0 +-22.627 -3.553 0.171 0 0 0 0 0 0 0 +-22.547 -3.613 0.171 0 0 0 0 0 0 0 +-22.526 -3.682 0.171 0 0 0 0 0 0 0 +-22.437 -3.74 0.171 0 0 0 0 0 0 0 +-22.35 -3.798 0.171 0 0 0 0 0 0 0 +-21.119 -3.689 0.173 0 0 0 0 0 0 0 +-21.04 -3.744 0.173 0 0 0 0 0 0 0 +-20.961 -3.798 0.173 0 0 0 0 0 0 0 +-20.908 -3.856 0.174 0 0 0 0 0 0 0 +-20.819 -3.907 0.174 0 0 0 0 0 0 0 +-20.76 -3.963 0.174 0 0 0 0 0 0 0 +-20.688 -4.017 0.174 0 0 0 0 0 0 0 +-20.617 -4.037 0.174 0 0 0 0 0 0 0 +-20.542 -4.089 0.174 0 0 0 0 0 0 0 +-20.476 -4.143 0.174 0 0 0 0 0 0 0 +-20.384 -4.191 0.174 0 0 0 0 0 0 0 +-20.322 -4.244 0.174 0 0 0 0 0 0 0 +-20.238 -4.293 0.174 0 0 0 0 0 0 0 +-20.174 -4.346 0.174 0 0 0 0 0 0 0 +-20.098 -4.363 0.175 0 0 0 0 0 0 0 +-20.028 -4.413 0.175 0 0 0 0 0 0 0 +-19.946 -4.461 0.175 0 0 0 0 0 0 0 +-19.887 -4.513 0.175 0 0 0 0 0 0 0 +-19.793 -4.557 0.175 0 0 0 0 0 0 0 +-19.72 -4.605 0.175 0 0 0 0 0 0 0 +-19.649 -4.654 0.175 0 0 0 0 0 0 0 +-19.673 -4.692 0.175 0 0 0 0 0 0 0 +-19.691 -4.762 0.175 0 0 0 0 0 0 0 +-19.705 -4.831 0.175 0 0 0 0 0 0 0 +-19.626 -4.877 0.175 0 0 0 0 0 0 0 +-19.568 -4.928 0.175 0 0 0 0 0 0 0 +-19.478 -4.97 0.175 0 0 0 0 0 0 0 +-19.414 -5.019 0.175 0 0 0 0 0 0 0 +-19.341 -5.032 0.176 0 0 0 0 0 0 0 +-19.288 -5.083 0.176 0 0 0 0 0 0 0 +-19.214 -5.128 0.176 0 0 0 0 0 0 0 +-19.148 -5.175 0.176 0 0 0 0 0 0 0 +-19.068 -5.218 0.176 0 0 0 0 0 0 0 +-19.001 -5.264 0.176 0 0 0 0 0 0 0 +-18.919 -5.305 0.176 0 0 0 0 0 0 0 +-18.814 -5.339 0.176 0 0 0 0 0 0 0 +-18.53 -5.29 0.177 0 0 0 0 0 0 0 +-18.477 -5.337 0.177 0 0 0 0 0 0 0 +-18.418 -5.383 0.177 0 0 0 0 0 0 0 +-18.342 -5.423 0.177 0 0 0 0 0 0 0 +-18.267 -5.463 0.177 0 0 0 0 0 0 0 +-18.204 -5.507 0.177 0 0 0 0 0 0 0 +-18.131 -5.547 0.177 0 0 0 0 0 0 0 +-18.076 -5.561 0.177 0 0 0 0 0 0 0 +-18.007 -5.602 0.177 0 0 0 0 0 0 0 +-17.94 -5.643 0.177 0 0 0 0 0 0 0 +-17.873 -5.683 0.177 0 0 0 0 0 0 0 +-17.796 -5.72 0.178 0 0 0 0 0 0 0 +-17.724 -5.759 0.178 0 0 0 0 0 0 0 +-17.657 -5.798 0.178 0 0 0 0 0 0 0 +-17.591 -5.807 0.178 0 0 0 0 0 0 0 +-17.527 -5.847 0.178 0 0 0 0 0 0 0 +-17.465 -5.887 0.178 0 0 0 0 0 0 0 +-17.405 -5.928 0.178 0 0 0 0 0 0 0 +-17.333 -5.964 0.178 0 0 0 0 0 0 0 +-17.26 -5.999 0.178 0 0 0 0 0 0 0 +-17.195 -6.038 0.178 0 0 0 0 0 0 0 +-17.124 -6.043 0.178 0 0 0 0 0 0 0 +-17.065 -6.082 0.178 0 0 0 0 0 0 0 +-16.722 -6.019 0.179 0 0 0 0 0 0 0 +-16.918 -6.15 0.179 0 0 0 0 0 0 0 +-16.872 -6.193 0.179 0 0 0 0 0 0 0 +-16.809 -6.23 0.179 0 0 0 0 0 0 0 +-16.731 -6.261 0.179 0 0 0 0 0 0 0 +-16.679 -6.271 0.179 0 0 0 0 0 0 0 +-16.608 -6.304 0.179 0 0 0 0 0 0 0 +-16.54 -6.337 0.179 0 0 0 0 0 0 0 +-16.483 -6.375 0.179 0 0 0 0 0 0 0 +-16.423 -6.411 0.179 0 0 0 0 0 0 0 +-16.346 -6.44 0.179 0 0 0 0 0 0 0 +-16.29 -6.477 0.179 0 0 0 0 0 0 0 +-16.243 -6.488 0.179 0 0 0 0 0 0 0 +-16.176 -6.52 0.179 0 0 0 0 0 0 0 +-16.109 -6.552 0.18 0 0 0 0 0 0 0 +-16.062 -6.592 0.18 0 0 0 0 0 0 0 +-16.071 -6.655 0.18 0 0 0 0 0 0 0 +-16.074 -6.715 0.179 0 0 0 0 0 0 0 +-16.047 -6.763 0.179 0 0 0 0 0 0 0 +-15.897 -6.729 0.18 0 0 0 0 0 0 0 +-16.047 -6.852 0.179 0 0 0 0 0 0 0 +-16.106 -6.938 0.179 0 0 0 0 0 0 0 +-16.11 -6.999 0.179 0 0 0 0 0 0 0 +-16.122 -7.065 0.179 0 0 0 0 0 0 0 +-16.126 -7.127 0.179 0 0 0 0 0 0 0 +-16.131 -7.19 0.179 0 0 0 0 0 0 0 +-16.145 -7.227 0.179 0 0 0 0 0 0 0 +-16.148 -7.289 0.179 0 0 0 0 0 0 0 +-16.154 -7.353 0.179 0 0 0 0 0 0 0 +-16.156 -7.416 0.179 0 0 0 0 0 0 0 +-16.171 -7.484 0.179 0 0 0 0 0 0 0 +-16.174 -7.548 0.179 0 0 0 0 0 0 0 +-16.179 -7.612 0.179 0 0 0 0 0 0 0 +-16.194 -7.65 0.179 0 0 0 0 0 0 0 +-16.21 -7.72 0.179 0 0 0 0 0 0 0 +-16.213 -7.784 0.179 0 0 0 0 0 0 0 +-16.222 -7.851 0.179 0 0 0 0 0 0 0 +-16.216 -7.911 0.179 0 0 0 0 0 0 0 +-16.21 -7.972 0.178 0 0 0 0 0 0 0 +-16.425 -8.142 0.178 0 0 0 0 0 0 0 +-16.451 -8.22 0.178 0 0 0 0 0 0 0 +-16.464 -8.258 0.178 0 0 0 0 0 0 0 +-16.487 -8.335 0.178 0 0 0 0 0 0 0 +-16.49 -8.401 0.178 0 0 0 0 0 0 0 +-16.492 -8.468 0.178 0 0 0 0 0 0 0 +-16.497 -8.536 0.178 0 0 0 0 0 0 0 +-16.509 -8.608 0.178 0 0 0 0 0 0 0 +-16.512 -8.676 0.178 0 0 0 0 0 0 0 +-16.532 -8.72 0.178 0 0 0 0 0 0 0 +-16.54 -8.79 0.177 0 0 0 0 0 0 0 +-16.544 -8.859 0.177 0 0 0 0 0 0 0 +-16.547 -8.928 0.177 0 0 0 0 0 0 0 +-16.553 -8.999 0.177 0 0 0 0 0 0 0 +-16.559 -9.07 0.177 0 0 0 0 0 0 0 +-16.564 -9.14 0.177 0 0 0 0 0 0 0 +-16.551 -9.167 0.177 0 0 0 0 0 0 0 +-16.489 -9.201 0.177 0 0 0 0 0 0 0 +-16.406 -9.222 0.177 0 0 0 0 0 0 0 +-16.388 -9.279 0.177 0 0 0 0 0 0 0 +-16.398 -9.354 0.177 0 0 0 0 0 0 0 +-16.423 -9.436 0.177 0 0 0 0 0 0 0 +-16.424 -9.506 0.177 0 0 0 0 0 0 0 +-16.445 -9.553 0.177 0 0 0 0 0 0 0 +-16.453 -9.626 0.177 0 0 0 0 0 0 0 +-16.459 -9.699 0.177 0 0 0 0 0 0 0 +-16.466 -9.774 0.177 0 0 0 0 0 0 0 +-16.478 -9.851 0.177 0 0 0 0 0 0 0 +-16.478 -9.921 0.177 0 0 0 0 0 0 0 +-16.481 -9.994 0.177 0 0 0 0 0 0 0 +-16.51 -10.047 0.177 0 0 0 0 0 0 0 +-16.511 -10.119 0.176 0 0 0 0 0 0 0 +-16.518 -10.195 0.176 0 0 0 0 0 0 0 +-16.516 -10.265 0.176 0 0 0 0 0 0 0 +-16.531 -10.347 0.176 0 0 0 0 0 0 0 +-16.544 -10.428 0.176 0 0 0 0 0 0 0 +-16.542 -10.499 0.176 0 0 0 0 0 0 0 +-16.546 -10.538 0.176 0 0 0 0 0 0 0 +-16.548 -10.613 0.176 0 0 0 0 0 0 0 +-16.785 -10.84 0.176 0 0 0 0 0 0 0 +-16.804 -10.927 0.175 0 0 0 0 0 0 0 +-16.815 -11.01 0.175 0 0 0 0 0 0 0 +-16.824 -11.091 0.175 0 0 0 0 0 0 0 +-16.83 -11.172 0.175 0 0 0 0 0 0 0 +-16.848 -11.221 0.175 0 0 0 0 0 0 0 +-16.869 -11.312 0.175 0 0 0 0 0 0 0 +-16.861 -11.384 0.175 0 0 0 0 0 0 0 +-16.885 -11.478 0.175 0 0 0 0 0 0 0 +-16.87 -11.545 0.175 0 0 0 0 0 0 0 +-16.891 -11.638 0.175 0 0 0 0 0 0 0 +-16.888 -11.714 0.175 0 0 0 0 0 0 0 +-16.915 -11.812 0.175 0 0 0 0 0 0 0 +-16.878 -11.825 0.175 0 0 0 0 0 0 0 +-16.82 -11.863 0.175 0 0 0 0 0 0 0 +-16.732 -11.88 0.175 0 0 0 0 0 0 0 +-16.709 -11.943 0.175 0 0 0 0 0 0 0 +-16.709 -12.023 0.175 0 0 0 0 0 0 0 +-16.752 -12.134 0.174 0 0 0 0 0 0 0 +-16.747 -12.211 0.174 0 0 0 0 0 0 0 +-16.794 -12.286 0.174 0 0 0 0 0 0 0 +-16.777 -12.354 0.174 0 0 0 0 0 0 0 +-16.8 -12.453 0.174 0 0 0 0 0 0 0 +-16.801 -12.536 0.174 0 0 0 0 0 0 0 +-16.819 -12.632 0.174 0 0 0 0 0 0 0 +-16.813 -12.71 0.174 0 0 0 0 0 0 0 +-16.824 -12.802 0.174 0 0 0 0 0 0 0 +-16.845 -12.86 0.174 0 0 0 0 0 0 0 +-16.873 -12.965 0.173 0 0 0 0 0 0 0 +-16.862 -13.041 0.173 0 0 0 0 0 0 0 +-16.884 -13.143 0.173 0 0 0 0 0 0 0 +-16.863 -13.212 0.173 0 0 0 0 0 0 0 +-16.868 -13.303 0.173 0 0 0 0 0 0 0 +-17.129 -13.596 0.173 0 0 0 0 0 0 0 +-17.162 -13.666 0.172 0 0 0 0 0 0 0 +-17.159 -13.753 0.172 0 0 0 0 0 0 0 +-17.178 -13.857 0.172 0 0 0 0 0 0 0 +-17.181 -13.949 0.172 0 0 0 0 0 0 0 +-17.195 -14.049 0.172 0 0 0 0 0 0 0 +-17.2 -14.144 0.172 0 0 0 0 0 0 0 +-17.208 -14.242 0.172 0 0 0 0 0 0 0 +-17.233 -14.308 0.172 0 0 0 0 0 0 0 +-17.248 -14.412 0.172 0 0 0 0 0 0 0 +-17.243 -14.501 0.172 0 0 0 0 0 0 0 +-17.167 -14.53 0.172 0 0 0 0 0 0 0 +-17.077 -14.546 0.172 0 0 0 0 0 0 0 +-17.032 -14.599 0.172 0 0 0 0 0 0 0 +-17.037 -14.697 0.172 0 0 0 0 0 0 0 +-17.093 -14.792 0.171 0 0 0 0 0 0 0 +-17.102 -14.894 0.171 0 0 0 0 0 0 0 +-17.108 -14.994 0.171 0 0 0 0 0 0 0 +-17.126 -15.106 0.171 0 0 0 0 0 0 0 +-17.139 -15.213 0.171 0 0 0 0 0 0 0 +-17.137 -15.308 0.171 0 0 0 0 0 0 0 +-17.15 -15.417 0.171 0 0 0 0 0 0 0 +-17.183 -15.496 0.171 0 0 0 0 0 0 0 +-17.191 -15.601 0.17 0 0 0 0 0 0 0 +-17.195 -15.704 0.17 0 0 0 0 0 0 0 +-17.219 -15.825 0.17 0 0 0 0 0 0 0 +-17.188 -15.897 0.17 0 0 0 0 0 0 0 +-17.369 -16.167 0.17 0 0 0 0 0 0 0 +-17.464 -16.358 0.169 0 0 0 0 0 0 0 +-17.472 -16.469 0.169 0 0 0 0 0 0 0 +-17.506 -16.553 0.169 0 0 0 0 0 0 0 +-17.53 -16.681 0.169 0 0 0 0 0 0 0 +-17.534 -16.79 0.169 0 0 0 0 0 0 0 +-17.545 -16.906 0.169 0 0 0 0 0 0 0 +-17.559 -17.027 0.169 0 0 0 0 0 0 0 +-17.561 -17.136 0.168 0 0 0 0 0 0 0 +-17.504 -17.188 0.168 0 0 0 0 0 0 0 +-17.457 -17.196 0.168 0 0 0 0 0 0 0 +-17.373 -17.221 0.169 0 0 0 0 0 0 0 +-17.382 -17.338 0.168 0 0 0 0 0 0 0 +-17.41 -17.476 0.168 0 0 0 0 0 0 0 +-17.421 -17.598 0.168 0 0 0 0 0 0 0 +-17.432 -17.72 0.168 0 0 0 0 0 0 0 +-17.447 -17.847 0.168 0 0 0 0 0 0 0 +-17.478 -17.935 0.168 0 0 0 0 0 0 0 +-17.484 -18.054 0.168 0 0 0 0 0 0 0 +-17.503 -18.189 0.167 0 0 0 0 0 0 0 +-17.507 -18.307 0.167 0 0 0 0 0 0 0 +-17.515 -18.432 0.167 0 0 0 0 0 0 0 +-17.53 -18.564 0.167 0 0 0 0 0 0 0 +-17.585 -18.74 0.167 0 0 0 0 0 0 0 +-18.092 -19.342 0.165 0 0 0 0 0 0 0 +-18.017 -19.384 0.165 0 0 0 0 0 0 0 +-20.83 -22.558 0.159 0 0 0 0 0 0 0 +-24.635 -26.855 0.15 0 0 0 0 0 0 0 +-21.12 -23.163 0.158 0 0 0 0 0 0 0 +-21.222 -23.571 0.157 0 0 0 0 0 0 0 +-21.027 -23.428 0.158 0 0 0 0 0 0 0 +-25.059 -28.105 0.148 0 0 0 0 0 0 0 +-20.913 -23.597 0.158 0 0 0 0 0 0 0 +-20.796 -23.615 0.158 0 0 0 0 0 0 0 +-20.476 -23.398 0.158 0 0 0 0 0 0 0 +-24.856 -28.593 0.148 0 0 0 0 0 0 0 +-24.877 -28.8 0.148 0 0 0 0 0 0 0 +-24.935 -28.959 0.147 0 0 0 0 0 0 0 +-24.953 -29.165 0.147 0 0 0 0 0 0 0 +-24.976 -29.379 0.147 0 0 0 0 0 0 0 +-24.937 -29.52 0.147 0 0 0 0 0 0 0 +-25.36 -30.214 0.145 0 0 0 0 0 0 0 +-25.273 -30.303 0.145 0 0 0 0 0 0 0 +-25.345 -30.682 0.145 0 0 0 0 0 0 0 +-25.242 -30.754 0.145 0 0 0 0 0 0 0 +-25.139 -30.825 0.145 0 0 0 0 0 0 0 +-25.194 -31.092 0.144 0 0 0 0 0 0 0 +-25.211 -31.313 0.144 0 0 0 0 0 0 0 +-25.226 -31.534 0.144 0 0 0 0 0 0 0 +-25.247 -31.765 0.144 0 0 0 0 0 0 0 +-25.322 -31.963 0.143 0 0 0 0 0 0 0 +-25.3 -32.142 0.143 0 0 0 0 0 0 0 +-25.756 -32.935 0.142 0 0 0 0 0 0 0 +-25.596 -32.943 0.142 0 0 0 0 0 0 0 +-25.656 -33.453 0.141 0 0 0 0 0 0 0 +-25.522 -33.495 0.141 0 0 0 0 0 0 0 +-25.507 -33.584 0.141 0 0 0 0 0 0 0 +-25.552 -33.864 0.141 0 0 0 0 0 0 0 +-25.575 -34.117 0.14 0 0 0 0 0 0 0 +-25.613 -34.393 0.14 0 0 0 0 0 0 0 +-25.629 -34.641 0.14 0 0 0 0 0 0 0 +-25.634 -34.877 0.139 0 0 0 0 0 0 0 +-25.862 -35.42 0.139 0 0 0 0 0 0 0 +-26.081 -36.076 0.137 0 0 0 0 0 0 0 +-25.962 -36.15 0.138 0 0 0 0 0 0 0 +-25.834 -36.212 0.138 0 0 0 0 0 0 0 +-25.858 -36.487 0.137 0 0 0 0 0 0 0 +-25.893 -36.782 0.137 0 0 0 0 0 0 0 +-25.918 -37.064 0.136 0 0 0 0 0 0 0 +-25.999 -37.305 0.136 0 0 0 0 0 0 0 +-25.907 -37.424 0.136 0 0 0 0 0 0 0 +-26.069 -37.912 0.135 0 0 0 0 0 0 0 +-26.105 -38.22 0.135 0 0 0 0 0 0 0 +-26.251 -38.696 0.134 0 0 0 0 0 0 0 +-26.363 -39.125 0.133 0 0 0 0 0 0 0 +-26.531 -39.644 0.133 0 0 0 0 0 0 0 +-26.487 -39.712 0.133 0 0 0 0 0 0 0 +-26.345 -39.77 0.133 0 0 0 0 0 0 0 +-26.348 -40.046 0.132 0 0 0 0 0 0 0 +-26.377 -40.367 0.132 0 0 0 0 0 0 0 +-26.411 -40.698 0.131 0 0 0 0 0 0 0 +-26.44 -41.024 0.131 0 0 0 0 0 0 0 +-26.74 -41.778 0.13 0 0 0 0 0 0 0 +-26.859 -42.404 0.129 0 0 0 0 0 0 0 +-26.726 -42.488 0.129 0 0 0 0 0 0 0 +-26.649 -42.663 0.129 0 0 0 0 0 0 0 +-26.709 -43.06 0.128 0 0 0 0 0 0 0 +-26.734 -43.404 0.127 0 0 0 0 0 0 0 +-26.766 -43.764 0.127 0 0 0 0 0 0 0 +-27.046 -44.536 0.126 0 0 0 0 0 0 0 +-27.269 -45.064 0.125 0 0 0 0 0 0 0 +-27.143 -45.175 0.125 0 0 0 0 0 0 0 +-26.988 -45.238 0.125 0 0 0 0 0 0 0 +-27.044 -45.658 0.124 0 0 0 0 0 0 0 +-27.082 -46.052 0.124 0 0 0 0 0 0 0 +-27.895 -47.779 0.121 0 0 0 0 0 0 0 +-27.766 -47.903 0.121 0 0 0 0 0 0 0 +-27.697 -47.957 0.121 0 0 0 0 0 0 0 +-27.555 -48.059 0.121 0 0 0 0 0 0 0 +-27.404 -48.146 0.121 0 0 0 0 0 0 0 +-27.406 -48.503 0.12 0 0 0 0 0 0 0 +-27.463 -48.964 0.119 0 0 0 0 0 0 0 +-27.612 -49.594 0.119 0 0 0 0 0 0 0 +-27.841 -50.377 0.117 0 0 0 0 0 0 0 +-27.767 -50.432 0.117 0 0 0 0 0 0 0 +-27.704 -50.694 0.117 0 0 0 0 0 0 0 +-27.764 -51.185 0.116 0 0 0 0 0 0 0 +-27.817 -51.67 0.116 0 0 0 0 0 0 0 +-28.154 -53.094 0.113 0 0 0 0 0 0 0 +-27.998 -53.203 0.113 0 0 0 0 0 0 0 +-15.695 -29.913 0.154 0 0 0 0 0 0 0 +-28.148 -54.105 0.112 0 0 0 0 0 0 0 +-28.2 -54.625 0.111 0 0 0 0 0 0 0 +-28.434 -55.505 0.11 0 0 0 0 0 0 0 +-28.393 -55.858 0.109 0 0 0 0 0 0 0 +-28.382 -56.272 0.109 0 0 0 0 0 0 0 +-28.418 -56.789 0.108 0 0 0 0 0 0 0 +-28.448 -57.071 0.108 0 0 0 0 0 0 0 +-28.633 -57.899 0.106 0 0 0 0 0 0 0 +-29.051 -59.214 0.104 0 0 0 0 0 0 0 +-28.923 -59.423 0.104 0 0 0 0 0 0 0 +-28.797 -59.64 0.104 0 0 0 0 0 0 0 +-28.896 -60.329 0.103 0 0 0 0 0 0 0 +-28.909 -60.846 0.102 0 0 0 0 0 0 0 +-29.373 -62.076 0.1 0 0 0 0 0 0 0 +-29.189 -62.191 0.1 0 0 0 0 0 0 0 +-29.259 -62.854 0.099 0 0 0 0 0 0 0 +-29.312 -63.489 0.098 0 0 0 0 0 0 0 +-29.695 -64.853 0.096 0 0 0 0 0 0 0 +-29.488 -64.939 0.096 0 0 0 0 0 0 0 +-29.55 -65.624 0.095 0 0 0 0 0 0 0 +-29.66 -66.147 0.094 0 0 0 0 0 0 0 +-29.992 -67.453 0.092 0 0 0 0 0 0 0 +-29.863 -67.736 0.092 0 0 0 0 0 0 0 +-29.965 -68.551 0.091 0 0 0 0 0 0 0 +-30.352 -70.036 0.088 0 0 0 0 0 0 0 +-15.732 -36.585 0.145 0 0 0 0 0 0 0 +-30.234 -70.984 0.087 0 0 0 0 0 0 0 +-30.462 -71.834 0.086 0 0 0 0 0 0 0 +-30.443 -72.422 0.085 0 0 0 0 0 0 0 +-30.624 -73.498 0.083 0 0 0 0 0 0 0 +-16.422 -42.952 0.135 0 0 0 0 0 0 0 +-16.283 -42.992 0.135 0 0 0 0 0 0 0 +-17.369 -48.861 0.126 0 0 0 0 0 0 0 +-17.271 -48.828 0.126 0 0 0 0 0 0 0 +-17.13 -48.916 0.126 0 0 0 0 0 0 0 +-17.971 -51.844 0.121 0 0 0 0 0 0 0 +-17.802 -51.883 0.121 0 0 0 0 0 0 0 +-17.716 -52.164 0.121 0 0 0 0 0 0 0 +-17.51 -53.203 0.12 0 0 0 0 0 0 0 +-18.801 -58.682 0.111 0 0 0 0 0 0 0 +-20.3 -66.223 0.099 0 0 0 0 0 0 0 +-20.006 -66.379 0.099 0 0 0 0 0 0 0 +-19.859 -68.212 0.096 0 0 0 0 0 0 0 +-19.65 -68.294 0.096 0 0 0 0 0 0 0 +-5.304 -77.794 0.086 0 0 0 0 0 0 0 +-5.045 -77.587 0.086 0 0 0 0 0 0 0 +-4.792 -77.46 0.086 0 0 0 0 0 0 0 +-4.548 -77.465 0.086 0 0 0 0 0 0 0 +-4.309 -77.561 0.086 0 0 0 0 0 0 0 +-4.074 -77.73 0.086 0 0 0 0 0 0 0 +-3.948 -77.666 0.086 0 0 0 0 0 0 0 +-2.948 -61.706 0.111 0 0 0 0 0 0 0 +-2.734 -61.261 0.111 0 0 0 0 0 0 0 +-2.537 -61.17 0.112 0 0 0 0 0 0 0 +-2.344 -61.138 0.112 0 0 0 0 0 0 0 +-2.154 -61.221 0.112 0 0 0 0 0 0 0 +-1.959 -61.127 0.112 0 0 0 0 0 0 0 +-1.593 -52.156 0.126 0 0 0 0 0 0 0 +-1.43 -52.175 0.126 0 0 0 0 0 0 0 +-1.264 -52.121 0.126 0 0 0 0 0 0 0 +-0.94 -44.355 0.138 0 0 0 0 0 0 0 +-0.798 -44.199 0.138 0 0 0 0 0 0 0 +-0.646 -43.256 0.139 0 0 0 0 0 0 0 +-0.514 -43.589 0.139 0 0 0 0 0 0 0 +-0.427 -41.686 0.142 0 0 0 0 0 0 0 +-0.226 -30.88 0.159 0 0 0 0 0 0 0 +-0.165 -41.624 0.142 0 0 0 0 0 0 0 +-0.034 -41.7 0.142 0 0 0 0 0 0 0 +0.097 -41.732 0.142 0 0 0 0 0 0 0 +0.291 -52.012 0.126 0 0 0 0 0 0 0 +0.455 -52.038 0.126 0 0 0 0 0 0 0 +0.536 -52.052 0.126 0 0 0 0 0 0 0 +0.7 -52.076 0.126 0 0 0 0 0 0 0 +0.863 -52.029 0.126 0 0 0 0 0 0 0 +1.028 -52.096 0.126 0 0 0 0 0 0 0 +1.193 -52.129 0.126 0 0 0 0 0 0 0 +1.357 -52.135 0.126 0 0 0 0 0 0 0 +1.52 -52.108 0.126 0 0 0 0 0 0 0 +1.685 -52.167 0.126 0 0 0 0 0 0 0 +1.767 -52.167 0.126 0 0 0 0 0 0 0 +1.931 -52.159 0.126 0 0 0 0 0 0 0 +2.096 -52.176 0.126 0 0 0 0 0 0 0 +2.265 -52.293 0.125 0 0 0 0 0 0 0 +2.419 -52.048 0.126 0 0 0 0 0 0 0 +2.544 -51.277 0.127 0 0 0 0 0 0 0 +2.166 -41.16 0.143 0 0 0 0 0 0 0 +2.236 -41.246 0.142 0 0 0 0 0 0 0 +2.348 -40.933 0.143 0 0 0 0 0 0 0 +2.608 -43.078 0.14 0 0 0 0 0 0 0 +2.702 -42.435 0.141 0 0 0 0 0 0 0 +3.195 -47.746 0.132 0 0 0 0 0 0 0 +3.345 -47.745 0.132 0 0 0 0 0 0 0 +3.616 -46.39 0.134 0 0 0 0 0 0 0 +3.733 -46.031 0.135 0 0 0 0 0 0 0 +3.864 -45.852 0.135 0 0 0 0 0 0 0 +4.015 -45.917 0.135 0 0 0 0 0 0 0 +4.161 -45.93 0.135 0 0 0 0 0 0 0 +4.278 -45.626 0.135 0 0 0 0 0 0 0 +4.336 -45.48 0.136 0 0 0 0 0 0 0 +4.47 -45.375 0.136 0 0 0 0 0 0 0 +4.605 -45.289 0.136 0 0 0 0 0 0 0 +4.738 -45.185 0.136 0 0 0 0 0 0 0 +4.879 -45.162 0.136 0 0 0 0 0 0 0 +4.967 -44.663 0.137 0 0 0 0 0 0 0 +4.963 -43.392 0.139 0 0 0 0 0 0 0 +5.14 -44.313 0.137 0 0 0 0 0 0 0 +5.248 -44.041 0.138 0 0 0 0 0 0 0 +5.305 -43.365 0.139 0 0 0 0 0 0 0 +5.388 -42.922 0.139 0 0 0 0 0 0 0 +5.456 -42.391 0.14 0 0 0 0 0 0 0 +5.592 -42.395 0.14 0 0 0 0 0 0 0 +5.733 -42.435 0.14 0 0 0 0 0 0 0 +5.771 -42.22 0.14 0 0 0 0 0 0 0 +5.891 -42.11 0.141 0 0 0 0 0 0 0 +6.007 -41.975 0.141 0 0 0 0 0 0 0 +5.906 -40.375 0.143 0 0 0 0 0 0 0 +6.004 -40.164 0.144 0 0 0 0 0 0 0 +6.135 -40.177 0.143 0 0 0 0 0 0 0 +6.257 -40.13 0.144 0 0 0 0 0 0 0 +6.323 -40.136 0.144 0 0 0 0 0 0 0 +5.531 -33.758 0.153 0 0 0 0 0 0 0 +5.566 -33.315 0.154 0 0 0 0 0 0 0 +5.69 -33.407 0.154 0 0 0 0 0 0 0 +5.864 -33.789 0.153 0 0 0 0 0 0 0 +6.045 -34.194 0.153 0 0 0 0 0 0 0 +6.054 -33.935 0.153 0 0 0 0 0 0 0 +6.055 -33.335 0.154 0 0 0 0 0 0 0 +6.102 -33.005 0.154 0 0 0 0 0 0 0 +4.324 -23.028 0.17 0 0 0 0 0 0 0 +4.379 -22.92 0.17 0 0 0 0 0 0 0 +4.442 -22.863 0.17 0 0 0 0 0 0 0 +4.517 -22.863 0.17 0 0 0 0 0 0 0 +4.562 -22.905 0.17 0 0 0 0 0 0 0 +4.698 -23.202 0.17 0 0 0 0 0 0 0 +4.765 -23.157 0.17 0 0 0 0 0 0 0 +4.836 -23.136 0.17 0 0 0 0 0 0 0 +6.979 -32.821 0.154 0 0 0 0 0 0 0 +7.029 -32.554 0.155 0 0 0 0 0 0 0 +7.073 -32.266 0.155 0 0 0 0 0 0 0 +7.063 -31.984 0.156 0 0 0 0 0 0 0 +7.109 -31.716 0.156 0 0 0 0 0 0 0 +7.171 -31.529 0.156 0 0 0 0 0 0 0 +7.219 -31.286 0.157 0 0 0 0 0 0 0 +7.256 -31.005 0.157 0 0 0 0 0 0 0 +7.298 -30.748 0.158 0 0 0 0 0 0 0 +7.335 -30.478 0.158 0 0 0 0 0 0 0 +7.327 -30.237 0.158 0 0 0 0 0 0 0 +7.374 -30.018 0.159 0 0 0 0 0 0 0 +7.454 -29.939 0.159 0 0 0 0 0 0 0 +7.556 -29.946 0.159 0 0 0 0 0 0 0 +7.657 -29.949 0.159 0 0 0 0 0 0 0 +7.728 -29.836 0.159 0 0 0 0 0 0 0 +7.733 -29.475 0.159 0 0 0 0 0 0 0 +7.544 -28.575 0.161 0 0 0 0 0 0 0 +7.572 -28.324 0.161 0 0 0 0 0 0 0 +7.61 -28.111 0.161 0 0 0 0 0 0 0 +7.643 -27.886 0.162 0 0 0 0 0 0 0 +7.678 -27.671 0.162 0 0 0 0 0 0 0 +7.716 -27.474 0.162 0 0 0 0 0 0 0 +7.75 -27.267 0.163 0 0 0 0 0 0 0 +7.729 -27.033 0.163 0 0 0 0 0 0 0 +7.749 -26.784 0.163 0 0 0 0 0 0 0 +7.78 -26.579 0.164 0 0 0 0 0 0 0 +7.81 -26.376 0.164 0 0 0 0 0 0 0 +7.842 -26.179 0.164 0 0 0 0 0 0 0 +7.876 -25.998 0.164 0 0 0 0 0 0 0 +7.902 -25.793 0.165 0 0 0 0 0 0 0 +7.894 -25.622 0.165 0 0 0 0 0 0 0 +7.925 -25.441 0.165 0 0 0 0 0 0 0 +7.964 -25.286 0.165 0 0 0 0 0 0 0 +7.997 -25.114 0.166 0 0 0 0 0 0 0 +8.026 -24.935 0.166 0 0 0 0 0 0 0 +8.053 -24.752 0.166 0 0 0 0 0 0 0 +8.083 -24.582 0.166 0 0 0 0 0 0 0 +8.057 -24.375 0.167 0 0 0 0 0 0 0 +8.082 -24.196 0.167 0 0 0 0 0 0 0 +8.115 -24.044 0.167 0 0 0 0 0 0 0 +8.138 -23.863 0.167 0 0 0 0 0 0 0 +8.162 -23.692 0.168 0 0 0 0 0 0 0 +8.19 -23.534 0.168 0 0 0 0 0 0 0 +8.21 -23.355 0.168 0 0 0 0 0 0 0 +3.726 -10.59 0.189 0 0 0 0 0 0 0 +3.756 -10.569 0.189 0 0 0 0 0 0 0 +3.877 -10.8 0.189 0 0 0 0 0 0 0 +3.826 -10.554 0.189 0 0 0 0 0 0 0 +8.309 -22.612 0.169 0 0 0 0 0 0 0 +8.335 -22.464 0.169 0 0 0 0 0 0 0 +8.363 -22.324 0.17 0 0 0 0 0 0 0 +8.309 -22.075 0.17 0 0 0 0 0 0 0 +8.314 -21.88 0.17 0 0 0 0 0 0 0 +8.283 -21.596 0.171 0 0 0 0 0 0 0 +8.304 -21.449 0.171 0 0 0 0 0 0 0 +8.282 -21.196 0.171 0 0 0 0 0 0 0 +8.277 -20.987 0.172 0 0 0 0 0 0 0 +8.296 -20.844 0.172 0 0 0 0 0 0 0 +8.286 -20.725 0.172 0 0 0 0 0 0 0 +8.307 -20.59 0.172 0 0 0 0 0 0 0 +8.328 -20.456 0.172 0 0 0 0 0 0 0 +8.35 -20.328 0.172 0 0 0 0 0 0 0 +8.374 -20.206 0.173 0 0 0 0 0 0 0 +8.392 -20.071 0.173 0 0 0 0 0 0 0 +8.41 -19.937 0.173 0 0 0 0 0 0 0 +8.398 -19.823 0.173 0 0 0 0 0 0 0 +8.418 -19.697 0.173 0 0 0 0 0 0 0 +8.441 -19.583 0.173 0 0 0 0 0 0 0 +8.46 -19.457 0.174 0 0 0 0 0 0 0 +8.483 -19.344 0.174 0 0 0 0 0 0 0 +8.497 -19.213 0.174 0 0 0 0 0 0 0 +8.515 -19.092 0.174 0 0 0 0 0 0 0 +8.505 -18.989 0.174 0 0 0 0 0 0 0 +8.523 -18.871 0.174 0 0 0 0 0 0 0 +8.539 -18.748 0.175 0 0 0 0 0 0 0 +8.559 -18.637 0.175 0 0 0 0 0 0 0 +8.58 -18.53 0.175 0 0 0 0 0 0 0 +8.639 -18.503 0.175 0 0 0 0 0 0 0 +8.693 -18.469 0.175 0 0 0 0 0 0 0 +8.683 -18.372 0.175 0 0 0 0 0 0 0 +8.701 -18.262 0.175 0 0 0 0 0 0 0 +8.722 -18.159 0.175 0 0 0 0 0 0 0 +8.738 -18.048 0.175 0 0 0 0 0 0 0 +8.8 -18.032 0.175 0 0 0 0 0 0 0 +8.822 -17.932 0.176 0 0 0 0 0 0 0 +8.889 -17.926 0.175 0 0 0 0 0 0 0 +8.905 -17.889 0.176 0 0 0 0 0 0 0 +8.85 -17.639 0.176 0 0 0 0 0 0 0 +8.852 -17.506 0.176 0 0 0 0 0 0 0 +8.869 -17.405 0.176 0 0 0 0 0 0 0 +8.89 -17.311 0.176 0 0 0 0 0 0 0 +8.904 -17.205 0.176 0 0 0 0 0 0 0 +8.923 -17.11 0.177 0 0 0 0 0 0 0 +8.914 -17.028 0.177 0 0 0 0 0 0 0 +8.926 -16.923 0.177 0 0 0 0 0 0 0 +8.944 -16.827 0.177 0 0 0 0 0 0 0 +8.959 -16.729 0.177 0 0 0 0 0 0 0 +8.975 -16.634 0.177 0 0 0 0 0 0 0 +8.989 -16.535 0.177 0 0 0 0 0 0 0 +9.008 -16.447 0.177 0 0 0 0 0 0 0 +8.996 -16.365 0.178 0 0 0 0 0 0 0 +9.01 -16.268 0.178 0 0 0 0 0 0 0 +9.032 -16.187 0.178 0 0 0 0 0 0 0 +9.043 -16.089 0.178 0 0 0 0 0 0 0 +9.06 -16.002 0.178 0 0 0 0 0 0 0 +9.105 -15.964 0.178 0 0 0 0 0 0 0 +9.169 -15.96 0.178 0 0 0 0 0 0 0 +9.157 -15.882 0.178 0 0 0 0 0 0 0 +9.178 -15.803 0.178 0 0 0 0 0 0 0 +9.196 -15.72 0.178 0 0 0 0 0 0 0 +9.207 -15.626 0.178 0 0 0 0 0 0 0 +9.223 -15.542 0.178 0 0 0 0 0 0 0 +9.26 -15.492 0.179 0 0 0 0 0 0 0 +9.297 -15.444 0.179 0 0 0 0 0 0 0 +9.339 -15.459 0.178 0 0 0 0 0 0 0 +9.422 -15.486 0.178 0 0 0 0 0 0 0 +9.521 -15.538 0.178 0 0 0 0 0 0 0 +7.115 -11.462 0.186 0 0 0 0 0 0 0 +7.101 -11.36 0.186 0 0 0 0 0 0 0 +7.145 -11.351 0.186 0 0 0 0 0 0 0 +7.156 -11.33 0.186 0 0 0 0 0 0 0 +7.181 -11.29 0.186 0 0 0 0 0 0 0 +7.212 -11.261 0.186 0 0 0 0 0 0 0 +7.243 -11.232 0.186 0 0 0 0 0 0 0 +7.273 -11.2 0.186 0 0 0 0 0 0 0 +7.307 -11.176 0.186 0 0 0 0 0 0 0 +7.335 -11.143 0.186 0 0 0 0 0 0 0 +7.348 -11.125 0.186 0 0 0 0 0 0 0 +7.38 -11.096 0.186 0 0 0 0 0 0 0 +7.412 -11.068 0.186 0 0 0 0 0 0 0 +7.437 -11.032 0.186 0 0 0 0 0 0 0 +7.472 -11.008 0.186 0 0 0 0 0 0 0 +7.496 -10.97 0.186 0 0 0 0 0 0 0 +7.531 -10.946 0.186 0 0 0 0 0 0 0 +7.558 -10.913 0.186 0 0 0 0 0 0 0 +7.568 -10.891 0.186 0 0 0 0 0 0 0 +7.598 -10.861 0.186 0 0 0 0 0 0 0 +7.631 -10.835 0.186 0 0 0 0 0 0 0 +7.66 -10.804 0.186 0 0 0 0 0 0 0 +7.677 -10.756 0.186 0 0 0 0 0 0 0 +7.742 -10.776 0.186 0 0 0 0 0 0 0 +7.884 -10.9 0.186 0 0 0 0 0 0 0 +9.444 -13.005 0.182 0 0 0 0 0 0 0 +9.451 -12.929 0.182 0 0 0 0 0 0 0 +9.464 -12.862 0.182 0 0 0 0 0 0 0 +9.476 -12.794 0.182 0 0 0 0 0 0 0 +9.481 -12.717 0.182 0 0 0 0 0 0 0 +9.491 -12.648 0.182 0 0 0 0 0 0 0 +9.483 -12.596 0.182 0 0 0 0 0 0 0 +9.499 -12.536 0.182 0 0 0 0 0 0 0 +9.516 -12.476 0.182 0 0 0 0 0 0 0 +9.522 -12.403 0.182 0 0 0 0 0 0 0 +9.531 -12.335 0.182 0 0 0 0 0 0 0 +9.543 -12.27 0.182 0 0 0 0 0 0 0 +9.551 -12.201 0.182 0 0 0 0 0 0 0 +9.546 -12.156 0.183 0 0 0 0 0 0 0 +9.558 -12.093 0.183 0 0 0 0 0 0 0 +9.576 -12.038 0.183 0 0 0 0 0 0 0 +9.574 -11.958 0.183 0 0 0 0 0 0 0 +9.628 -11.948 0.183 0 0 0 0 0 0 0 +9.678 -11.933 0.183 0 0 0 0 0 0 0 +9.707 -11.892 0.183 0 0 0 0 0 0 0 +9.692 -11.837 0.183 0 0 0 0 0 0 0 +9.718 -11.792 0.183 0 0 0 0 0 0 0 +9.715 -11.714 0.183 0 0 0 0 0 0 0 +9.73 -11.657 0.183 0 0 0 0 0 0 0 +9.733 -11.587 0.183 0 0 0 0 0 0 0 +9.759 -11.544 0.183 0 0 0 0 0 0 0 +9.629 -11.319 0.183 0 0 0 0 0 0 0 +9.643 -11.263 0.183 0 0 0 0 0 0 0 +9.625 -11.207 0.184 0 0 0 0 0 0 0 +9.639 -11.152 0.184 0 0 0 0 0 0 0 +9.643 -11.086 0.184 0 0 0 0 0 0 0 +9.665 -11.042 0.184 0 0 0 0 0 0 0 +9.67 -10.977 0.184 0 0 0 0 0 0 0 +9.676 -10.915 0.184 0 0 0 0 0 0 0 +9.694 -10.867 0.184 0 0 0 0 0 0 0 +9.681 -10.817 0.184 0 0 0 0 0 0 0 +9.696 -10.766 0.184 0 0 0 0 0 0 0 +9.711 -10.715 0.184 0 0 0 0 0 0 0 +9.712 -10.649 0.184 0 0 0 0 0 0 0 +9.76 -10.634 0.184 0 0 0 0 0 0 0 +9.731 -10.536 0.184 0 0 0 0 0 0 0 +9.746 -10.487 0.184 0 0 0 0 0 0 0 +9.725 -10.43 0.184 0 0 0 0 0 0 0 +9.749 -10.391 0.184 0 0 0 0 0 0 0 +9.746 -10.323 0.184 0 0 0 0 0 0 0 +9.769 -10.282 0.184 0 0 0 0 0 0 0 +9.769 -10.218 0.185 0 0 0 0 0 0 0 +9.783 -10.168 0.185 0 0 0 0 0 0 0 +9.77 -10.123 0.185 0 0 0 0 0 0 0 +9.785 -10.075 0.185 0 0 0 0 0 0 0 +9.786 -10.013 0.185 0 0 0 0 0 0 0 +9.797 -9.962 0.185 0 0 0 0 0 0 0 +9.796 -9.899 0.185 0 0 0 0 0 0 0 +9.817 -9.858 0.185 0 0 0 0 0 0 0 +9.816 -9.795 0.185 0 0 0 0 0 0 0 +9.839 -9.757 0.185 0 0 0 0 0 0 0 +9.823 -9.71 0.185 0 0 0 0 0 0 0 +9.841 -9.667 0.185 0 0 0 0 0 0 0 +9.841 -9.607 0.185 0 0 0 0 0 0 0 +9.857 -9.562 0.185 0 0 0 0 0 0 0 +9.856 -9.502 0.185 0 0 0 0 0 0 0 +9.875 -9.46 0.185 0 0 0 0 0 0 0 +9.874 -9.4 0.185 0 0 0 0 0 0 0 +9.874 -9.37 0.185 0 0 0 0 0 0 0 +9.879 -9.316 0.185 0 0 0 0 0 0 0 +9.887 -9.266 0.185 0 0 0 0 0 0 0 +9.883 -9.203 0.186 0 0 0 0 0 0 0 +9.938 -9.197 0.185 0 0 0 0 0 0 0 +9.915 -9.118 0.186 0 0 0 0 0 0 0 +9.922 -9.067 0.186 0 0 0 0 0 0 0 +9.914 -9.031 0.186 0 0 0 0 0 0 0 +9.921 -8.981 0.186 0 0 0 0 0 0 0 +9.921 -8.924 0.186 0 0 0 0 0 0 0 +9.937 -8.883 0.186 0 0 0 0 0 0 0 +9.937 -8.826 0.186 0 0 0 0 0 0 0 +9.948 -8.78 0.186 0 0 0 0 0 0 0 +9.954 -8.731 0.186 0 0 0 0 0 0 0 +9.944 -8.694 0.186 0 0 0 0 0 0 0 +9.96 -8.654 0.186 0 0 0 0 0 0 0 +9.965 -8.603 0.186 0 0 0 0 0 0 0 +9.975 -8.557 0.186 0 0 0 0 0 0 0 +9.976 -8.504 0.186 0 0 0 0 0 0 0 +9.986 -8.458 0.186 0 0 0 0 0 0 0 +9.987 -8.432 0.186 0 0 0 0 0 0 0 +10 -8.389 0.186 0 0 0 0 0 0 0 +10.034 -8.364 0.186 0 0 0 0 0 0 0 +10.052 -8.326 0.186 0 0 0 0 0 0 0 +10.083 -8.298 0.186 0 0 0 0 0 0 0 +10.098 -8.258 0.186 0 0 0 0 0 0 0 +10.125 -8.227 0.186 0 0 0 0 0 0 0 +10.145 -8.19 0.186 0 0 0 0 0 0 0 +10.158 -8.174 0.186 0 0 0 0 0 0 0 +10.182 -8.141 0.186 0 0 0 0 0 0 0 +10.215 -8.115 0.186 0 0 0 0 0 0 0 +10.272 -8.108 0.186 0 0 0 0 0 0 0 +10.252 -8.04 0.186 0 0 0 0 0 0 0 +10.282 -8.011 0.186 0 0 0 0 0 0 0 +10.296 -7.971 0.186 0 0 0 0 0 0 0 +10.315 -7.959 0.186 0 0 0 0 0 0 0 +10.327 -7.917 0.186 0 0 0 0 0 0 0 +10.357 -7.888 0.186 0 0 0 0 0 0 0 +10.37 -7.847 0.186 0 0 0 0 0 0 0 +10.403 -7.821 0.186 0 0 0 0 0 0 0 +10.421 -7.783 0.186 0 0 0 0 0 0 0 +10.45 -7.754 0.186 0 0 0 0 0 0 0 +10.453 -7.73 0.186 0 0 0 0 0 0 0 +10.488 -7.706 0.186 0 0 0 0 0 0 0 +10.504 -7.667 0.186 0 0 0 0 0 0 0 +10.517 -7.626 0.186 0 0 0 0 0 0 0 +10.546 -7.596 0.186 0 0 0 0 0 0 0 +10.563 -7.558 0.186 0 0 0 0 0 0 0 +10.596 -7.532 0.186 0 0 0 0 0 0 0 +10.6 -7.51 0.186 0 0 0 0 0 0 0 +10.62 -7.474 0.186 0 0 0 0 0 0 0 +10.642 -7.439 0.186 0 0 0 0 0 0 0 +10.672 -7.41 0.186 0 0 0 0 0 0 0 +10.684 -7.369 0.186 0 0 0 0 0 0 0 +10.72 -7.344 0.186 0 0 0 0 0 0 0 +10.74 -7.308 0.186 0 0 0 0 0 0 0 +10.751 -7.292 0.186 0 0 0 0 0 0 0 +10.769 -7.254 0.186 0 0 0 0 0 0 0 +10.798 -7.225 0.186 0 0 0 0 0 0 0 +10.821 -7.191 0.186 0 0 0 0 0 0 0 +10.829 -7.147 0.186 0 0 0 0 0 0 0 +10.883 -7.134 0.186 0 0 0 0 0 0 0 +10.895 -7.093 0.186 0 0 0 0 0 0 0 +10.871 -7.053 0.186 0 0 0 0 0 0 0 +10.903 -7.025 0.186 0 0 0 0 0 0 0 +10.925 -6.991 0.186 0 0 0 0 0 0 0 +10.947 -6.957 0.186 0 0 0 0 0 0 0 +10.962 -6.918 0.186 0 0 0 0 0 0 0 +10.984 -6.884 0.186 0 0 0 0 0 0 0 +11.009 -6.851 0.186 0 0 0 0 0 0 0 +11.025 -6.837 0.186 0 0 0 0 0 0 0 +11.037 -6.797 0.186 0 0 0 0 0 0 0 +11.067 -6.768 0.186 0 0 0 0 0 0 0 +11.083 -6.73 0.186 0 0 0 0 0 0 0 +11.135 -6.713 0.186 0 0 0 0 0 0 0 +11.179 -6.692 0.186 0 0 0 0 0 0 0 +11.25 -6.686 0.186 0 0 0 0 0 0 0 +11.276 -6.678 0.186 0 0 0 0 0 0 0 +11.34 -6.667 0.186 0 0 0 0 0 0 0 +11.386 -6.647 0.186 0 0 0 0 0 0 0 +11.437 -6.628 0.186 0 0 0 0 0 0 0 +11.492 -6.612 0.186 0 0 0 0 0 0 0 +11.548 -6.596 0.186 0 0 0 0 0 0 0 +11.586 -6.569 0.186 0 0 0 0 0 0 0 +11.638 -6.574 0.186 0 0 0 0 0 0 0 +11.676 -6.548 0.186 0 0 0 0 0 0 0 +11.746 -6.538 0.186 0 0 0 0 0 0 0 +11.831 -6.537 0.186 0 0 0 0 0 0 0 +11.848 -6.498 0.186 0 0 0 0 0 0 0 +11.905 -6.48 0.185 0 0 0 0 0 0 0 +11.962 -6.463 0.185 0 0 0 0 0 0 0 +12.004 -6.461 0.185 0 0 0 0 0 0 0 +12.062 -6.443 0.185 0 0 0 0 0 0 0 +12.117 -6.424 0.185 0 0 0 0 0 0 0 +12.167 -6.401 0.185 0 0 0 0 0 0 0 +12.241 -6.391 0.185 0 0 0 0 0 0 0 +12.27 -6.357 0.185 0 0 0 0 0 0 0 +12.311 -6.329 0.185 0 0 0 0 0 0 0 +8.834 -4.532 0.191 0 0 0 0 0 0 0 +8.843 -4.502 0.191 0 0 0 0 0 0 0 +12.498 -6.301 0.185 0 0 0 0 0 0 0 +12.552 -6.279 0.185 0 0 0 0 0 0 0 +12.623 -6.265 0.185 0 0 0 0 0 0 0 +12.668 -6.238 0.185 0 0 0 0 0 0 0 +12.749 -6.228 0.184 0 0 0 0 0 0 0 +12.789 -6.223 0.184 0 0 0 0 0 0 0 +12.848 -6.201 0.184 0 0 0 0 0 0 0 +12.902 -6.177 0.184 0 0 0 0 0 0 0 +12.975 -6.163 0.184 0 0 0 0 0 0 0 +13.022 -6.134 0.184 0 0 0 0 0 0 0 +13.094 -6.118 0.184 0 0 0 0 0 0 0 +13.153 -6.095 0.184 0 0 0 0 0 0 0 +13.235 -6.108 0.184 0 0 0 0 0 0 0 +13.269 -6.073 0.184 0 0 0 0 0 0 0 +13.33 -6.05 0.184 0 0 0 0 0 0 0 +13.396 -6.03 0.184 0 0 0 0 0 0 0 +13.461 -6.008 0.184 0 0 0 0 0 0 0 +13.522 -5.984 0.184 0 0 0 0 0 0 0 +13.586 -5.961 0.183 0 0 0 0 0 0 0 +13.652 -5.965 0.183 0 0 0 0 0 0 0 +13.702 -5.935 0.183 0 0 0 0 0 0 0 +13.793 -5.923 0.183 0 0 0 0 0 0 0 +13.828 -5.887 0.183 0 0 0 0 0 0 0 +13.89 -5.862 0.183 0 0 0 0 0 0 0 +14.119 -5.906 0.183 0 0 0 0 0 0 0 +14.16 -5.87 0.183 0 0 0 0 0 0 0 +14.213 -5.866 0.183 0 0 0 0 0 0 0 +14.248 -5.829 0.183 0 0 0 0 0 0 0 +14.313 -5.802 0.183 0 0 0 0 0 0 0 +14.354 -5.766 0.182 0 0 0 0 0 0 0 +14.412 -5.737 0.182 0 0 0 0 0 0 0 +14.445 -5.698 0.182 0 0 0 0 0 0 0 +14.502 -5.668 0.182 0 0 0 0 0 0 0 +14.535 -5.654 0.182 0 0 0 0 0 0 0 +14.587 -5.622 0.182 0 0 0 0 0 0 0 +14.638 -5.589 0.182 0 0 0 0 0 0 0 +14.678 -5.551 0.182 0 0 0 0 0 0 0 +14.708 -5.51 0.182 0 0 0 0 0 0 0 +14.746 -5.471 0.182 0 0 0 0 0 0 0 +14.81 -5.442 0.182 0 0 0 0 0 0 0 +14.853 -5.431 0.182 0 0 0 0 0 0 0 +14.902 -5.396 0.182 0 0 0 0 0 0 0 +14.977 -5.37 0.182 0 0 0 0 0 0 0 +15.013 -5.329 0.182 0 0 0 0 0 0 0 +15.054 -5.291 0.182 0 0 0 0 0 0 0 +15.114 -5.258 0.182 0 0 0 0 0 0 0 +15.172 -5.225 0.182 0 0 0 0 0 0 0 +15.212 -5.212 0.182 0 0 0 0 0 0 0 +15.267 -5.177 0.181 0 0 0 0 0 0 0 +15.319 -5.141 0.181 0 0 0 0 0 0 0 +15.388 -5.111 0.181 0 0 0 0 0 0 0 +15.429 -5.071 0.181 0 0 0 0 0 0 0 +15.49 -5.037 0.181 0 0 0 0 0 0 0 +15.538 -4.998 0.181 0 0 0 0 0 0 0 +15.579 -4.984 0.181 0 0 0 0 0 0 0 +15.64 -4.95 0.181 0 0 0 0 0 0 0 +15.69 -4.911 0.181 0 0 0 0 0 0 0 +15.743 -4.874 0.181 0 0 0 0 0 0 0 +15.801 -4.837 0.181 0 0 0 0 0 0 0 +15.852 -4.798 0.181 0 0 0 0 0 0 0 +15.906 -4.76 0.181 0 0 0 0 0 0 0 +15.963 -4.722 0.181 0 0 0 0 0 0 0 +16.008 -4.709 0.181 0 0 0 0 0 0 0 +16.077 -4.674 0.181 0 0 0 0 0 0 0 +16.161 -4.643 0.18 0 0 0 0 0 0 0 +16.22 -4.605 0.18 0 0 0 0 0 0 0 +16.286 -4.568 0.18 0 0 0 0 0 0 0 +16.337 -4.527 0.18 0 0 0 0 0 0 0 +16.395 -4.488 0.18 0 0 0 0 0 0 0 +16.453 -4.476 0.18 0 0 0 0 0 0 0 +16.499 -4.433 0.18 0 0 0 0 0 0 0 +16.564 -4.394 0.18 0 0 0 0 0 0 0 +16.628 -4.355 0.18 0 0 0 0 0 0 0 +16.682 -4.313 0.18 0 0 0 0 0 0 0 +16.746 -4.274 0.18 0 0 0 0 0 0 0 +16.803 -4.26 0.18 0 0 0 0 0 0 0 +16.869 -4.22 0.18 0 0 0 0 0 0 0 +16.923 -4.177 0.179 0 0 0 0 0 0 0 +16.994 -4.138 0.179 0 0 0 0 0 0 0 +17.046 -4.094 0.179 0 0 0 0 0 0 0 +17.097 -4.05 0.179 0 0 0 0 0 0 0 +17.163 -4.008 0.179 0 0 0 0 0 0 0 +17.228 -3.966 0.179 0 0 0 0 0 0 0 +17.283 -3.95 0.179 0 0 0 0 0 0 0 +17.346 -3.907 0.179 0 0 0 0 0 0 0 +17.421 -3.867 0.179 0 0 0 0 0 0 0 +17.48 -3.822 0.179 0 0 0 0 0 0 0 +17.525 -3.774 0.179 0 0 0 0 0 0 0 +17.574 -3.727 0.179 0 0 0 0 0 0 0 +17.634 -3.682 0.179 0 0 0 0 0 0 0 +17.707 -3.668 0.178 0 0 0 0 0 0 0 +17.769 -3.623 0.178 0 0 0 0 0 0 0 +17.843 -3.579 0.178 0 0 0 0 0 0 0 +17.909 -3.534 0.178 0 0 0 0 0 0 0 +17.963 -3.486 0.178 0 0 0 0 0 0 0 +18.045 -3.443 0.178 0 0 0 0 0 0 0 +18.115 -3.397 0.178 0 0 0 0 0 0 0 +18.175 -3.379 0.178 0 0 0 0 0 0 0 +13.846 -2.535 0.185 0 0 0 0 0 0 0 +13.756 -2.474 0.185 0 0 0 0 0 0 0 +13.732 -2.426 0.185 0 0 0 0 0 0 0 +13.69 -2.374 0.185 0 0 0 0 0 0 0 +13.7 -2.331 0.185 0 0 0 0 0 0 0 +13.679 -2.284 0.185 0 0 0 0 0 0 0 +13.669 -2.26 0.185 0 0 0 0 0 0 0 +13.692 -2.22 0.185 0 0 0 0 0 0 0 +13.697 -2.176 0.185 0 0 0 0 0 0 0 +13.733 -2.138 0.185 0 0 0 0 0 0 0 +13.756 -2.097 0.185 0 0 0 0 0 0 0 +13.78 -2.056 0.185 0 0 0 0 0 0 0 +13.818 -2.018 0.185 0 0 0 0 0 0 0 +13.881 -2.004 0.185 0 0 0 0 0 0 0 +19.302 -2.715 0.176 0 0 0 0 0 0 0 +19.353 -2.66 0.176 0 0 0 0 0 0 0 +19.436 -2.61 0.176 0 0 0 0 0 0 0 +19.516 -2.558 0.176 0 0 0 0 0 0 0 +19.577 -2.503 0.176 0 0 0 0 0 0 0 +19.511 -2.433 0.176 0 0 0 0 0 0 0 +19.533 -2.404 0.176 0 0 0 0 0 0 0 +19.59 -2.349 0.176 0 0 0 0 0 0 0 +19.635 -2.291 0.176 0 0 0 0 0 0 0 +19.678 -2.234 0.176 0 0 0 0 0 0 0 +19.741 -2.178 0.176 0 0 0 0 0 0 0 +19.785 -2.12 0.176 0 0 0 0 0 0 0 +19.834 -2.062 0.176 0 0 0 0 0 0 0 +19.891 -2.036 0.175 0 0 0 0 0 0 0 +19.929 -1.977 0.175 0 0 0 0 0 0 0 +19.985 -1.919 0.175 0 0 0 0 0 0 0 +20.026 -1.86 0.175 0 0 0 0 0 0 0 +20.096 -1.802 0.175 0 0 0 0 0 0 0 +20.488 -1.772 0.175 0 0 0 0 0 0 0 +20.673 -1.722 0.174 0 0 0 0 0 0 0 +20.731 -1.694 0.174 0 0 0 0 0 0 0 +20.776 -1.632 0.174 0 0 0 0 0 0 0 +20.845 -1.572 0.174 0 0 0 0 0 0 0 +20.972 -1.515 0.174 0 0 0 0 0 0 0 +21.062 -1.455 0.174 0 0 0 0 0 0 0 +21.35 -1.407 0.173 0 0 0 0 0 0 0 +21.165 -1.328 0.174 0 0 0 0 0 0 0 +21.271 -1.301 0.173 0 0 0 0 0 0 0 +21.359 -1.239 0.173 0 0 0 0 0 0 0 +21.608 -1.185 0.173 0 0 0 0 0 0 0 +22.009 -1.137 0.172 0 0 0 0 0 0 0 +22.065 -1.071 0.172 0 0 0 0 0 0 0 +21.368 -0.971 0.173 0 0 0 0 0 0 0 +21.305 -0.901 0.173 0 0 0 0 0 0 0 +21.299 -0.867 0.173 0 0 0 0 0 0 0 +21.248 -0.798 0.174 0 0 0 0 0 0 0 +21.184 -0.729 0.174 0 0 0 0 0 0 0 +21.188 -0.663 0.174 0 0 0 0 0 0 0 +21.218 -0.597 0.174 0 0 0 0 0 0 0 +21.272 -0.531 0.173 0 0 0 0 0 0 0 +21.319 -0.465 0.173 0 0 0 0 0 0 0 +21.388 -0.433 0.173 0 0 0 0 0 0 0 +21.445 -0.367 0.173 0 0 0 0 0 0 0 +21.5 -0.3 0.173 0 0 0 0 0 0 0 +21.561 -0.233 0.173 0 0 0 0 0 0 0 +21.604 -0.166 0.173 0 0 0 0 0 0 0 +21.692 -0.098 0.173 0 0 0 0 0 0 0 +23.352 -0.03 0.17 0 0 0 0 0 0 0 +35.611 0.075 -0.075 0 0 0 0 0 0 0 +35.447 0.13 -0.074 0 0 0 0 0 0 0 +35.35 0.241 -0.073 0 0 0 0 0 0 0 +35.423 0.352 -0.073 0 0 0 0 0 0 0 +35.08 0.46 -0.071 0 0 0 0 0 0 0 +34.371 0.829 -0.065 0 0 0 0 0 0 0 +33.724 1.344 -0.06 0 0 0 0 0 0 0 +33.542 1.442 -0.059 0 0 0 0 0 0 0 +36.01 1.717 -0.078 0 0 0 0 0 0 0 +25.776 1.561 0.002 0 0 0 0 0 0 0 +35.259 2.293 -0.073 0 0 0 0 0 0 0 +34.417 2.782 -0.066 0 0 0 0 0 0 0 +59.682 4.994 -0.266 0 0 0 0 0 0 0 +18.696 1.73 0.058 0 0 0 0 0 0 0 +18.678 1.788 0.058 0 0 0 0 0 0 0 +18.902 1.869 0.056 0 0 0 0 0 0 0 +61.401 7.476 -0.282 0 0 0 0 0 0 0 +61.238 7.652 -0.281 0 0 0 0 0 0 0 +25.046 3.265 0.007 0 0 0 0 0 0 0 +61.46 8.17 -0.283 0 0 0 0 0 0 0 +61.578 8.383 -0.284 0 0 0 0 0 0 0 +61.714 8.599 -0.285 0 0 0 0 0 0 0 +43.876 6.402 -0.144 0 0 0 0 0 0 0 +43.856 6.54 -0.144 0 0 0 0 0 0 0 +20.905 3.165 0.039 0 0 0 0 0 0 0 +43.455 6.69 -0.141 0 0 0 0 0 0 0 +43.114 6.776 -0.138 0 0 0 0 0 0 0 +42.899 6.881 -0.137 0 0 0 0 0 0 0 +42.683 6.984 -0.135 0 0 0 0 0 0 0 +42.553 7.1 -0.134 0 0 0 0 0 0 0 +42.315 7.197 -0.132 0 0 0 0 0 0 0 +42.535 7.303 -0.134 0 0 0 0 0 0 0 +42.234 7.388 -0.132 0 0 0 0 0 0 0 +42.108 7.503 -0.131 0 0 0 0 0 0 0 +41.932 7.608 -0.13 0 0 0 0 0 0 0 +41.566 7.676 -0.127 0 0 0 0 0 0 0 +41.442 7.923 -0.127 0 0 0 0 0 0 0 +41.279 7.959 -0.126 0 0 0 0 0 0 0 +18.805 3.702 0.055 0 0 0 0 0 0 0 +18.677 3.738 0.056 0 0 0 0 0 0 0 +40.625 8.231 -0.121 0 0 0 0 0 0 0 +41.058 8.453 -0.125 0 0 0 0 0 0 0 +41.145 8.606 -0.125 0 0 0 0 0 0 0 +41.2 8.752 -0.126 0 0 0 0 0 0 0 +41.121 8.938 -0.126 0 0 0 0 0 0 0 +41.485 9.154 -0.129 0 0 0 0 0 0 0 +38.805 8.82 -0.108 0 0 0 0 0 0 0 +39.483 9.104 -0.114 0 0 0 0 0 0 0 +42.224 9.874 -0.136 0 0 0 0 0 0 0 +39.903 9.399 -0.117 0 0 0 0 0 0 0 +39.774 9.501 -0.116 0 0 0 0 0 0 0 +42.001 10.171 -0.135 0 0 0 0 0 0 0 +42 10.45 -0.135 0 0 0 0 0 0 0 +41.878 10.56 -0.135 0 0 0 0 0 0 0 +41.564 10.62 -0.132 0 0 0 0 0 0 0 +41.574 10.692 -0.133 0 0 0 0 0 0 0 +41.527 10.819 -0.132 0 0 0 0 0 0 0 +41.551 10.965 -0.133 0 0 0 0 0 0 0 +66.879 17.857 -0.34 0 0 0 0 0 0 0 +42.379 11.468 -0.14 0 0 0 0 0 0 0 +42.198 11.562 -0.139 0 0 0 0 0 0 0 +51.109 14.17 -0.212 0 0 0 0 0 0 0 +50.923 14.205 -0.211 0 0 0 0 0 0 0 +36.708 10.371 -0.095 0 0 0 0 0 0 0 +16.175 4.64 0.073 0 0 0 0 0 0 0 +16.291 4.729 0.072 0 0 0 0 0 0 0 +17.122 5.085 0.065 0 0 0 0 0 0 0 +18.236 5.57 0.056 0 0 0 0 0 0 0 +18.226 5.63 0.056 0 0 0 0 0 0 0 +18.85 5.952 0.05 0 0 0 0 0 0 0 +19.277 6.827 0.045 0 0 0 0 0 0 0 +15.614 5.896 0.074 0 0 0 0 0 0 0 +15.468 5.897 0.075 0 0 0 0 0 0 0 +16.148 6.213 0.07 0 0 0 0 0 0 0 +16.604 6.447 0.066 0 0 0 0 0 0 0 +17.146 6.719 0.061 0 0 0 0 0 0 0 +18.169 7.151 0.052 0 0 0 0 0 0 0 +73.034 28.927 -0.413 0 0 0 0 0 0 0 +73.203 29.26 -0.416 0 0 0 0 0 0 0 +73.391 29.602 -0.418 0 0 0 0 0 0 0 +73.553 29.937 -0.42 0 0 0 0 0 0 0 +73.734 30.281 -0.423 0 0 0 0 0 0 0 +44.308 19.44 -0.176 0 0 0 0 0 0 0 +44.505 19.693 -0.178 0 0 0 0 0 0 0 +44.675 19.852 -0.18 0 0 0 0 0 0 0 +44.428 19.909 -0.178 0 0 0 0 0 0 0 +47.677 21.544 -0.207 0 0 0 0 0 0 0 +41.021 18.851 -0.15 0 0 0 0 0 0 0 +40.869 18.937 -0.149 0 0 0 0 0 0 0 +40.711 19.02 -0.148 0 0 0 0 0 0 0 +40.54 19.017 -0.147 0 0 0 0 0 0 0 +40.402 19.108 -0.146 0 0 0 0 0 0 0 +40.277 19.204 -0.146 0 0 0 0 0 0 0 +40.141 19.294 -0.145 0 0 0 0 0 0 0 +40.184 19.47 -0.146 0 0 0 0 0 0 0 +40.265 19.666 -0.147 0 0 0 0 0 0 0 +41.403 20.302 -0.158 0 0 0 0 0 0 0 +39.837 19.69 -0.144 0 0 0 0 0 0 0 +39.712 19.784 -0.144 0 0 0 0 0 0 0 +39.548 19.857 -0.143 0 0 0 0 0 0 0 +39.18 19.827 -0.14 0 0 0 0 0 0 0 +39.005 19.893 -0.139 0 0 0 0 0 0 0 +38.85 19.968 -0.138 0 0 0 0 0 0 0 +38.756 19.997 -0.138 0 0 0 0 0 0 0 +38.595 20.068 -0.137 0 0 0 0 0 0 0 +38.461 20.152 -0.136 0 0 0 0 0 0 0 +38.35 20.247 -0.136 0 0 0 0 0 0 0 +38.247 20.347 -0.136 0 0 0 0 0 0 0 +38.243 20.499 -0.136 0 0 0 0 0 0 0 +38.374 20.725 -0.138 0 0 0 0 0 0 0 +38.535 20.89 -0.14 0 0 0 0 0 0 0 +40.551 22.146 -0.158 0 0 0 0 0 0 0 +40.434 22.248 -0.158 0 0 0 0 0 0 0 +40.287 22.332 -0.157 0 0 0 0 0 0 0 +40.297 22.503 -0.158 0 0 0 0 0 0 0 +37.58 21.143 -0.134 0 0 0 0 0 0 0 +37.496 21.251 -0.134 0 0 0 0 0 0 0 +37.464 21.311 -0.134 0 0 0 0 0 0 0 +41.304 23.664 -0.169 0 0 0 0 0 0 0 +41.247 23.804 -0.17 0 0 0 0 0 0 0 +40.912 23.954 -0.168 0 0 0 0 0 0 0 +36.285 21.402 -0.126 0 0 0 0 0 0 0 +36.12 21.458 -0.125 0 0 0 0 0 0 0 +36.029 21.481 -0.125 0 0 0 0 0 0 0 +35.879 21.545 -0.124 0 0 0 0 0 0 0 +35.774 21.634 -0.124 0 0 0 0 0 0 0 +35.646 21.71 -0.123 0 0 0 0 0 0 0 +35.491 21.769 -0.122 0 0 0 0 0 0 0 +35.385 21.857 -0.122 0 0 0 0 0 0 0 +35.26 21.934 -0.121 0 0 0 0 0 0 0 +35.277 22.098 -0.122 0 0 0 0 0 0 0 +35.236 22.149 -0.122 0 0 0 0 0 0 0 +29.626 18.889 -0.071 0 0 0 0 0 0 0 +29.55 18.971 -0.071 0 0 0 0 0 0 0 +34.739 22.452 -0.12 0 0 0 0 0 0 0 +34.64 22.542 -0.12 0 0 0 0 0 0 0 +13.13 8.652 0.082 0 0 0 0 0 0 0 +34.048 22.54 -0.116 0 0 0 0 0 0 0 +33.941 22.622 -0.116 0 0 0 0 0 0 0 +33.805 22.686 -0.115 0 0 0 0 0 0 0 +33.685 22.759 -0.115 0 0 0 0 0 0 0 +33.574 22.838 -0.114 0 0 0 0 0 0 0 +33.483 22.853 -0.114 0 0 0 0 0 0 0 +33.433 22.973 -0.114 0 0 0 0 0 0 0 +33.405 23.109 -0.114 0 0 0 0 0 0 0 +33.403 23.263 -0.115 0 0 0 0 0 0 0 +33.374 23.399 -0.115 0 0 0 0 0 0 0 +33.396 23.571 -0.116 0 0 0 0 0 0 0 +33.378 23.715 -0.117 0 0 0 0 0 0 0 +34.012 24.246 -0.123 0 0 0 0 0 0 0 +33.969 24.377 -0.124 0 0 0 0 0 0 0 +33.661 24.316 -0.121 0 0 0 0 0 0 0 +35.872 26.084 -0.144 0 0 0 0 0 0 0 +35.598 26.056 -0.142 0 0 0 0 0 0 0 +35.44 26.112 -0.141 0 0 0 0 0 0 0 +35.003 25.96 -0.138 0 0 0 0 0 0 0 +33.874 25.206 -0.127 0 0 0 0 0 0 0 +33.937 25.419 -0.128 0 0 0 0 0 0 0 +33.814 25.493 -0.128 0 0 0 0 0 0 0 +33.59 25.49 -0.127 0 0 0 0 0 0 0 +33.337 25.463 -0.125 0 0 0 0 0 0 0 +33.352 25.641 -0.126 0 0 0 0 0 0 0 +33.328 25.79 -0.126 0 0 0 0 0 0 0 +17.289 13.481 0.033 0 0 0 0 0 0 0 +33.335 26.047 -0.128 0 0 0 0 0 0 0 +33.333 26.215 -0.128 0 0 0 0 0 0 0 +33.322 26.375 -0.129 0 0 0 0 0 0 0 +33.318 26.544 -0.13 0 0 0 0 0 0 0 +33.296 26.697 -0.131 0 0 0 0 0 0 0 +33.285 26.86 -0.131 0 0 0 0 0 0 0 +33.267 27.019 -0.132 0 0 0 0 0 0 0 +6.747 5.524 0.137 0 0 0 0 0 0 0 +6.719 5.536 0.137 0 0 0 0 0 0 0 +6.652 5.517 0.138 0 0 0 0 0 0 0 +6.689 5.582 0.137 0 0 0 0 0 0 0 +11.798 9.947 0.084 0 0 0 0 0 0 0 +11.777 9.993 0.084 0 0 0 0 0 0 0 +11.777 10.025 0.084 0 0 0 0 0 0 0 +11.793 10.102 0.084 0 0 0 0 0 0 0 +11.979 10.326 0.081 0 0 0 0 0 0 0 +33.251 28.784 -0.141 0 0 0 0 0 0 0 +33.237 28.956 -0.142 0 0 0 0 0 0 0 +33.218 29.123 -0.142 0 0 0 0 0 0 0 +33.206 29.297 -0.143 0 0 0 0 0 0 0 +33.238 29.418 -0.144 0 0 0 0 0 0 0 +33.23 29.598 -0.145 0 0 0 0 0 0 0 +33.219 29.776 -0.146 0 0 0 0 0 0 0 +33.221 29.966 -0.147 0 0 0 0 0 0 0 +33.181 30.12 -0.147 0 0 0 0 0 0 0 +33.178 30.308 -0.148 0 0 0 0 0 0 0 +33.18 30.501 -0.149 0 0 0 0 0 0 0 +33.095 30.519 -0.149 0 0 0 0 0 0 0 +16.379 15.218 0.03 0 0 0 0 0 0 0 +16.26 15.202 0.03 0 0 0 0 0 0 0 +16.181 15.225 0.031 0 0 0 0 0 0 0 +16.112 15.255 0.031 0 0 0 0 0 0 0 +16.066 15.308 0.031 0 0 0 0 0 0 0 +16.013 15.353 0.031 0 0 0 0 0 0 0 +16.007 15.396 0.031 0 0 0 0 0 0 0 +15.995 15.481 0.03 0 0 0 0 0 0 0 +16.006 15.59 0.03 0 0 0 0 0 0 0 +32.766 32.076 -0.156 0 0 0 0 0 0 0 +32.728 32.241 -0.156 0 0 0 0 0 0 0 +32.686 32.402 -0.157 0 0 0 0 0 0 0 +32.636 32.557 -0.158 0 0 0 0 0 0 0 +32.656 32.679 -0.158 0 0 0 0 0 0 0 +32.615 32.844 -0.159 0 0 0 0 0 0 0 +32.574 33.009 -0.16 0 0 0 0 0 0 0 +32.537 33.179 -0.16 0 0 0 0 0 0 0 +32.494 33.345 -0.161 0 0 0 0 0 0 0 +32.452 33.511 -0.162 0 0 0 0 0 0 0 +32.416 33.685 -0.163 0 0 0 0 0 0 0 +32.449 33.825 -0.164 0 0 0 0 0 0 0 +32.403 33.991 -0.164 0 0 0 0 0 0 0 +32.368 34.168 -0.165 0 0 0 0 0 0 0 +32.32 34.333 -0.166 0 0 0 0 0 0 0 +32.281 34.508 -0.167 0 0 0 0 0 0 0 +32.24 34.682 -0.167 0 0 0 0 0 0 0 +32.274 34.937 -0.169 0 0 0 0 0 0 0 +32.333 35.112 -0.17 0 0 0 0 0 0 0 +32.267 35.262 -0.171 0 0 0 0 0 0 0 +32.206 35.418 -0.171 0 0 0 0 0 0 0 +32.133 35.562 -0.172 0 0 0 0 0 0 0 +32.057 35.702 -0.172 0 0 0 0 0 0 0 +31.982 35.845 -0.173 0 0 0 0 0 0 0 +31.921 36.003 -0.173 0 0 0 0 0 0 0 +31.906 36.1 -0.174 0 0 0 0 0 0 0 +31.839 36.253 -0.174 0 0 0 0 0 0 0 +31.771 36.405 -0.175 0 0 0 0 0 0 0 +31.716 36.574 -0.176 0 0 0 0 0 0 0 +31.648 36.728 -0.176 0 0 0 0 0 0 0 +31.576 36.878 -0.177 0 0 0 0 0 0 0 +31.513 37.039 -0.177 0 0 0 0 0 0 0 +31.456 37.208 -0.178 0 0 0 0 0 0 0 +31.459 37.331 -0.179 0 0 0 0 0 0 0 +31.393 37.491 -0.18 0 0 0 0 0 0 0 +21.037 25.297 -0.053 0 0 0 0 0 0 0 +20.953 25.358 -0.053 0 0 0 0 0 0 0 +31.163 37.936 -0.181 0 0 0 0 0 0 0 +31.082 38.08 -0.182 0 0 0 0 0 0 0 +19.133 23.608 -0.034 0 0 0 0 0 0 0 +19.063 23.597 -0.033 0 0 0 0 0 0 0 +18.975 23.64 -0.033 0 0 0 0 0 0 0 +18.927 23.732 -0.033 0 0 0 0 0 0 0 +18.902 23.854 -0.034 0 0 0 0 0 0 0 +30.693 38.959 -0.185 0 0 0 0 0 0 0 +30.67 39.183 -0.186 0 0 0 0 0 0 0 +30.791 39.464 -0.189 0 0 0 0 0 0 0 +30.745 39.662 -0.19 0 0 0 0 0 0 0 +30.651 39.798 -0.19 0 0 0 0 0 0 0 +30.565 39.945 -0.191 0 0 0 0 0 0 0 +30.497 40.117 -0.191 0 0 0 0 0 0 0 +30.303 40.386 -0.192 0 0 0 0 0 0 0 +30.174 40.345 -0.191 0 0 0 0 0 0 0 +30.03 40.418 -0.191 0 0 0 0 0 0 0 +29.916 40.529 -0.191 0 0 0 0 0 0 0 +29.798 40.636 -0.191 0 0 0 0 0 0 0 +29.702 40.773 -0.192 0 0 0 0 0 0 0 +29.641 40.959 -0.193 0 0 0 0 0 0 0 +29.551 41.105 -0.193 0 0 0 0 0 0 0 +29.464 41.258 -0.194 0 0 0 0 0 0 0 +29.458 41.386 -0.195 0 0 0 0 0 0 0 +29.345 41.502 -0.195 0 0 0 0 0 0 0 +27.153 38.663 -0.167 0 0 0 0 0 0 0 +27.024 38.738 -0.166 0 0 0 0 0 0 0 +26.946 38.885 -0.167 0 0 0 0 0 0 0 +29.011 42.144 -0.197 0 0 0 0 0 0 0 +28.92 42.295 -0.198 0 0 0 0 0 0 0 +28.885 42.386 -0.198 0 0 0 0 0 0 0 +28.8 42.548 -0.199 0 0 0 0 0 0 0 +28.708 42.702 -0.2 0 0 0 0 0 0 0 +28.623 42.865 -0.2 0 0 0 0 0 0 0 +28.539 43.031 -0.201 0 0 0 0 0 0 0 +28.439 43.174 -0.202 0 0 0 0 0 0 0 +28.359 43.348 -0.202 0 0 0 0 0 0 0 +28.265 43.503 -0.203 0 0 0 0 0 0 0 +28.245 43.621 -0.204 0 0 0 0 0 0 0 +28.153 43.78 -0.204 0 0 0 0 0 0 0 +28.055 43.93 -0.205 0 0 0 0 0 0 0 +27.952 44.074 -0.206 0 0 0 0 0 0 0 +18.514 29.411 -0.068 0 0 0 0 0 0 0 +18.39 29.42 -0.068 0 0 0 0 0 0 0 +18.343 29.447 -0.068 0 0 0 0 0 0 0 +18.239 29.486 -0.067 0 0 0 0 0 0 0 +18.155 29.559 -0.068 0 0 0 0 0 0 0 +30.018 49.186 -0.248 0 0 0 0 0 0 0 +29.844 49.247 -0.248 0 0 0 0 0 0 0 +29.72 49.392 -0.249 0 0 0 0 0 0 0 +29.606 49.554 -0.249 0 0 0 0 0 0 0 +29.454 49.654 -0.249 0 0 0 0 0 0 0 +29.185 49.376 -0.246 0 0 0 0 0 0 0 +27.121 46.219 -0.217 0 0 0 0 0 0 0 +26.973 46.299 -0.217 0 0 0 0 0 0 0 +26.816 46.364 -0.216 0 0 0 0 0 0 0 +26.672 46.452 -0.216 0 0 0 0 0 0 0 +26.522 46.528 -0.216 0 0 0 0 0 0 0 +26.383 46.624 -0.216 0 0 0 0 0 0 0 +26.303 46.653 -0.216 0 0 0 0 0 0 0 +26.144 46.714 -0.216 0 0 0 0 0 0 0 +26.026 46.849 -0.217 0 0 0 0 0 0 0 +25.915 46.995 -0.217 0 0 0 0 0 0 0 +25.79 47.118 -0.218 0 0 0 0 0 0 0 +12.589 23.2 -0.002 0 0 0 0 0 0 0 +12.504 23.217 -0.002 0 0 0 0 0 0 0 +12.477 23.254 -0.002 0 0 0 0 0 0 0 +12.426 23.335 -0.002 0 0 0 0 0 0 0 +26.246 49.601 -0.237 0 0 0 0 0 0 0 +26.106 49.713 -0.237 0 0 0 0 0 0 0 +25.963 49.821 -0.237 0 0 0 0 0 0 0 +24.907 48.537 -0.224 0 0 0 0 0 0 0 +24.741 48.402 -0.223 0 0 0 0 0 0 0 +24.593 48.486 -0.223 0 0 0 0 0 0 0 +24.463 48.608 -0.223 0 0 0 0 0 0 0 +24.367 48.799 -0.224 0 0 0 0 0 0 0 +24.346 49.142 -0.226 0 0 0 0 0 0 0 +24.217 49.271 -0.227 0 0 0 0 0 0 0 +24.089 49.4 -0.227 0 0 0 0 0 0 0 +24.048 49.514 -0.228 0 0 0 0 0 0 0 +23.917 49.641 -0.229 0 0 0 0 0 0 0 +22.882 47.88 -0.212 0 0 0 0 0 0 0 +22.742 47.973 -0.213 0 0 0 0 0 0 0 +16.591 35.3 -0.102 0 0 0 0 0 0 0 +16.473 35.336 -0.101 0 0 0 0 0 0 0 +16.368 35.4 -0.102 0 0 0 0 0 0 0 +23.008 50.15 -0.229 0 0 0 0 0 0 0 +22.953 50.237 -0.23 0 0 0 0 0 0 0 +22.827 50.38 -0.23 0 0 0 0 0 0 0 +22.692 50.503 -0.231 0 0 0 0 0 0 0 +21.146 47.465 -0.204 0 0 0 0 0 0 0 +21.016 47.575 -0.204 0 0 0 0 0 0 0 +22.256 50.81 -0.231 0 0 0 0 0 0 0 +22.121 50.934 -0.232 0 0 0 0 0 0 0 +22.07 51.037 -0.232 0 0 0 0 0 0 0 +21.928 51.15 -0.233 0 0 0 0 0 0 0 +21.79 51.272 -0.233 0 0 0 0 0 0 0 +21.654 51.399 -0.234 0 0 0 0 0 0 0 +21.52 51.534 -0.234 0 0 0 0 0 0 0 +21.397 51.693 -0.235 0 0 0 0 0 0 0 +21.264 51.834 -0.236 0 0 0 0 0 0 0 +21.198 51.905 -0.236 0 0 0 0 0 0 0 +21.054 52.017 -0.237 0 0 0 0 0 0 0 +20.916 52.146 -0.237 0 0 0 0 0 0 0 +20.769 52.256 -0.237 0 0 0 0 0 0 0 +20.631 52.386 -0.238 0 0 0 0 0 0 0 +20.483 52.494 -0.238 0 0 0 0 0 0 0 +20.335 52.603 -0.239 0 0 0 0 0 0 0 +20.27 52.679 -0.239 0 0 0 0 0 0 0 +20.126 52.799 -0.24 0 0 0 0 0 0 0 +19.99 52.942 -0.24 0 0 0 0 0 0 0 +19.946 54.369 -0.251 0 0 0 0 0 0 0 +19.571 53.872 -0.246 0 0 0 0 0 0 0 +19.258 53.797 -0.245 0 0 0 0 0 0 0 +19.102 53.895 -0.245 0 0 0 0 0 0 0 +18.959 54.031 -0.246 0 0 0 0 0 0 0 +18.608 54.117 -0.245 0 0 0 0 0 0 0 +18.401 54.067 -0.244 0 0 0 0 0 0 0 +18.237 54.141 -0.245 0 0 0 0 0 0 0 +18.167 54.216 -0.245 0 0 0 0 0 0 0 +18.02 54.343 -0.245 0 0 0 0 0 0 0 +18.33 55.862 -0.258 0 0 0 0 0 0 0 +18.202 56.066 -0.259 0 0 0 0 0 0 0 +18.287 56.934 -0.266 0 0 0 0 0 0 0 +18.85 59.974 -0.29 0 0 0 0 0 0 0 +18.777 60.07 -0.29 0 0 0 0 0 0 0 +18.797 60.803 -0.296 0 0 0 0 0 0 0 +19.902 65.096 -0.331 0 0 0 0 0 0 0 +18.989 62.817 -0.312 0 0 0 0 0 0 0 +12.657 42.379 -0.143 0 0 0 0 0 0 0 +19.278 65.25 -0.331 0 0 0 0 0 0 0 +16.636 56.977 -0.262 0 0 0 0 0 0 0 +16.543 56.992 -0.262 0 0 0 0 0 0 0 +19.549 68.125 -0.353 0 0 0 0 0 0 0 +15.97 56.337 -0.256 0 0 0 0 0 0 0 +20.051 71.566 -0.38 0 0 0 0 0 0 0 +20.207 73.003 -0.391 0 0 0 0 0 0 0 +20.404 74.623 -0.404 0 0 0 0 0 0 0 +13.529 52.409 -0.221 0 0 0 0 0 0 0 +13.457 57.704 -0.261 0 0 0 0 0 0 0 +2.616 12.85 0.103 0 0 0 0 0 0 0 +2.61 13.029 0.101 0 0 0 0 0 0 0 +3.441 17.56 0.065 0 0 0 0 0 0 0 +3.385 17.564 0.065 0 0 0 0 0 0 0 +3.36 17.734 0.064 0 0 0 0 0 0 0 +3.838 21.514 0.034 0 0 0 0 0 0 0 +0.543 3.089 0.181 0 0 0 0 0 0 0 +3.713 21.205 0.036 0 0 0 0 0 0 0 +0.535 3.1 0.181 0 0 0 0 0 0 0 +0.561 3.39 0.179 0 0 0 0 0 0 0 +0.553 3.408 0.179 0 0 0 0 0 0 0 +0.544 3.423 0.179 0 0 0 0 0 0 0 +0.535 3.435 0.179 0 0 0 0 0 0 0 +0.524 3.432 0.179 0 0 0 0 0 0 0 +0.512 3.428 0.179 0 0 0 0 0 0 0 +0.508 3.437 0.179 0 0 0 0 0 0 0 +0.493 3.413 0.179 0 0 0 0 0 0 0 +3.124 22.104 0.03 0 0 0 0 0 0 0 +0.481 3.408 0.179 0 0 0 0 0 0 0 +0.472 3.416 0.179 0 0 0 0 0 0 0 +0.442 3.357 0.179 0 0 0 0 0 0 0 +0.401 3.139 0.181 0 0 0 0 0 0 0 +5.807 45.526 -0.156 0 0 0 0 0 0 0 +0.396 3.139 0.181 0 0 0 0 0 0 0 +5.666 45.554 -0.156 0 0 0 0 0 0 0 +0.384 3.127 0.181 0 0 0 0 0 0 0 +0.354 3.124 0.181 0 0 0 0 0 0 0 +0.341 3.095 0.181 0 0 0 0 0 0 0 +0.337 3.146 0.181 0 0 0 0 0 0 0 +0.328 3.113 0.181 0 0 0 0 0 0 0 +0.315 3.08 0.182 0 0 0 0 0 0 0 +0.309 3.121 0.181 0 0 0 0 0 0 0 +0.295 3.082 0.182 0 0 0 0 0 0 0 +0.288 3.109 0.181 0 0 0 0 0 0 0 +0.279 3.118 0.181 0 0 0 0 0 0 0 +0.27 3.123 0.181 0 0 0 0 0 0 0 +0.264 3.117 0.181 0 0 0 0 0 0 0 +0.256 3.13 0.181 0 0 0 0 0 0 0 +0.247 3.148 0.181 0 0 0 0 0 0 0 +0.237 3.149 0.181 0 0 0 0 0 0 0 +0.226 3.132 0.181 0 0 0 0 0 0 0 +0.215 3.113 0.181 0 0 0 0 0 0 0 +0.205 3.113 0.181 0 0 0 0 0 0 0 +0.201 3.126 0.181 0 0 0 0 0 0 0 +0.191 3.128 0.181 0 0 0 0 0 0 0 +0.181 3.123 0.181 0 0 0 0 0 0 0 +0.171 3.129 0.181 0 0 0 0 0 0 0 +0.161 3.126 0.181 0 0 0 0 0 0 0 +0.152 3.126 0.181 0 0 0 0 0 0 0 +0.141 3.115 0.181 0 0 0 0 0 0 0 +0.134 3.161 0.181 0 0 0 0 0 0 0 +0.127 3.122 0.181 0 0 0 0 0 0 0 +0.116 3.1 0.182 0 0 0 0 0 0 0 +0.109 3.158 0.181 0 0 0 0 0 0 0 +0.099 3.161 0.181 0 0 0 0 0 0 0 +0.087 3.119 0.181 0 0 0 0 0 0 0 +0.078 3.143 0.181 0 0 0 0 0 0 0 +1.416 75.659 -0.391 0 0 0 0 0 0 0 +0.922 74.194 -0.379 0 0 0 0 0 0 0 +0.689 74.189 -0.379 0 0 0 0 0 0 0 +-0.163 30.323 -0.033 0 0 0 0 0 0 0 +-0.423 28.502 -0.019 0 0 0 0 0 0 0 +-0.609 26.753 -0.005 0 0 0 0 0 0 0 +-0.809 25.076 0.008 0 0 0 0 0 0 0 +-0.88 24.85 0.01 0 0 0 0 0 0 0 +-1.014 23.404 0.021 0 0 0 0 0 0 0 +-1.093 23.51 0.02 0 0 0 0 0 0 0 +-1.125 22.648 0.027 0 0 0 0 0 0 0 +-1.469 19.992 0.048 0 0 0 0 0 0 0 +-1.534 20.011 0.048 0 0 0 0 0 0 0 +-1.514 19.35 0.053 0 0 0 0 0 0 0 +-1.689 17.928 0.064 0 0 0 0 0 0 0 +-1.729 17.752 0.065 0 0 0 0 0 0 0 +-7.261 65.658 -0.315 0 0 0 0 0 0 0 +-1.908 16.145 0.078 0 0 0 0 0 0 0 +-1.917 16.001 0.079 0 0 0 0 0 0 0 +-2.09 14.199 0.093 0 0 0 0 0 0 0 +-2.138 14.22 0.093 0 0 0 0 0 0 0 +-2.375 12.763 0.104 0 0 0 0 0 0 0 +-2.348 12.393 0.107 0 0 0 0 0 0 0 +-2.445 12.479 0.106 0 0 0 0 0 0 0 +-10.142 44.967 -0.158 0 0 0 0 0 0 0 +-2.517 10.679 0.119 0 0 0 0 0 0 0 +-2.555 10.691 0.119 0 0 0 0 0 0 0 +-2.586 10.671 0.119 0 0 0 0 0 0 0 +-4.242 17.099 0.067 0 0 0 0 0 0 0 +-4.299 17.1 0.067 0 0 0 0 0 0 0 +-4.331 17.112 0.067 0 0 0 0 0 0 0 +-4.355 16.982 0.068 0 0 0 0 0 0 0 +-3.467 13.151 0.099 0 0 0 0 0 0 0 +-3.514 13.163 0.099 0 0 0 0 0 0 0 +-3.551 13.134 0.099 0 0 0 0 0 0 0 +-3.59 13.115 0.099 0 0 0 0 0 0 0 +-3.622 13.15 0.098 0 0 0 0 0 0 0 +-3.659 13.125 0.099 0 0 0 0 0 0 0 +-3.713 13.158 0.098 0 0 0 0 0 0 0 +-3.768 13.196 0.098 0 0 0 0 0 0 0 +-3.806 13.173 0.098 0 0 0 0 0 0 0 +-3.854 13.184 0.098 0 0 0 0 0 0 0 +-2.797 9.06 0.131 0 0 0 0 0 0 0 +-2.814 9.015 0.132 0 0 0 0 0 0 0 +-2.83 8.966 0.132 0 0 0 0 0 0 0 +-2.843 8.909 0.132 0 0 0 0 0 0 0 +-2.857 8.859 0.133 0 0 0 0 0 0 0 +-2.859 8.814 0.133 0 0 0 0 0 0 0 +-2.872 8.761 0.133 0 0 0 0 0 0 0 +-2.888 8.718 0.134 0 0 0 0 0 0 0 +-2.907 8.682 0.134 0 0 0 0 0 0 0 +-2.933 8.669 0.134 0 0 0 0 0 0 0 +-2.977 8.709 0.133 0 0 0 0 0 0 0 +-3.014 8.728 0.133 0 0 0 0 0 0 0 +-3.035 8.746 0.133 0 0 0 0 0 0 0 +-3.061 8.733 0.133 0 0 0 0 0 0 0 +-3.097 8.746 0.133 0 0 0 0 0 0 0 +-3.119 8.721 0.133 0 0 0 0 0 0 0 +-4.648 12.904 0.098 0 0 0 0 0 0 0 +-4.694 12.905 0.098 0 0 0 0 0 0 0 +-4.711 12.828 0.098 0 0 0 0 0 0 0 +-4.77 12.926 0.097 0 0 0 0 0 0 0 +-4.789 12.853 0.098 0 0 0 0 0 0 0 +-4.804 12.77 0.098 0 0 0 0 0 0 0 +-4.784 12.596 0.1 0 0 0 0 0 0 0 +-4.887 12.747 0.098 0 0 0 0 0 0 0 +-3.213 7.727 0.14 0 0 0 0 0 0 0 +-3.805 9.083 0.128 0 0 0 0 0 0 0 +-3.826 9.094 0.128 0 0 0 0 0 0 0 +-3.863 9.102 0.128 0 0 0 0 0 0 0 +-3.824 8.93 0.129 0 0 0 0 0 0 0 +-3.919 9.074 0.128 0 0 0 0 0 0 0 +-3.316 7.471 0.142 0 0 0 0 0 0 0 +-3.263 7.322 0.143 0 0 0 0 0 0 0 +-3.331 7.412 0.142 0 0 0 0 0 0 0 +-3.861 8.458 0.133 0 0 0 0 0 0 0 +-3.897 8.466 0.133 0 0 0 0 0 0 0 +-3.935 8.477 0.132 0 0 0 0 0 0 0 +-4.295 9.146 0.126 0 0 0 0 0 0 0 +-4.333 9.152 0.126 0 0 0 0 0 0 0 +-4.364 9.144 0.126 0 0 0 0 0 0 0 +-4.41 9.166 0.126 0 0 0 0 0 0 0 +-4.436 9.147 0.126 0 0 0 0 0 0 0 +-5.007 9.127 0.124 0 0 0 0 0 0 0 +-5.097 9.257 0.123 0 0 0 0 0 0 0 +-5.089 9.173 0.123 0 0 0 0 0 0 0 +-5.1 9.125 0.124 0 0 0 0 0 0 0 +-5.102 9.062 0.124 0 0 0 0 0 0 0 +-5.13 9.044 0.124 0 0 0 0 0 0 0 +-5.173 9.054 0.124 0 0 0 0 0 0 0 +-5.21 9.054 0.124 0 0 0 0 0 0 0 +-5.159 8.899 0.125 0 0 0 0 0 0 0 +-5.22 8.907 0.125 0 0 0 0 0 0 0 +-5.214 8.832 0.125 0 0 0 0 0 0 0 +-5.238 8.81 0.125 0 0 0 0 0 0 0 +-5.225 8.571 0.127 0 0 0 0 0 0 0 +-5.215 8.495 0.127 0 0 0 0 0 0 0 +-5.171 8.362 0.128 0 0 0 0 0 0 0 +-5.153 8.275 0.129 0 0 0 0 0 0 0 +-5.186 8.27 0.129 0 0 0 0 0 0 0 +-5.191 8.22 0.129 0 0 0 0 0 0 0 +-5.238 8.238 0.129 0 0 0 0 0 0 0 +-7.128 11.188 0.101 0 0 0 0 0 0 0 +-5.047 7.692 0.133 0 0 0 0 0 0 0 +-5.076 7.683 0.133 0 0 0 0 0 0 0 +-5.104 7.674 0.133 0 0 0 0 0 0 0 +-5.148 7.714 0.133 0 0 0 0 0 0 0 +-40.079 59.963 -0.363 0 0 0 0 0 0 0 +-40.013 59.458 -0.359 0 0 0 0 0 0 0 +-39.491 58.286 -0.349 0 0 0 0 0 0 0 +-43.784 63.76 -0.404 0 0 0 0 0 0 0 +-40.54 58.636 -0.356 0 0 0 0 0 0 0 +-40.438 58.098 -0.352 0 0 0 0 0 0 0 +-40.59 58.122 -0.353 0 0 0 0 0 0 0 +-40.56 57.691 -0.35 0 0 0 0 0 0 0 +-41.204 58.218 -0.356 0 0 0 0 0 0 0 +-41.155 57.763 -0.353 0 0 0 0 0 0 0 +-45.587 63.565 -0.411 0 0 0 0 0 0 0 +-45.818 63.465 -0.411 0 0 0 0 0 0 0 +-46.021 63.326 -0.411 0 0 0 0 0 0 0 +-46.077 63.193 -0.411 0 0 0 0 0 0 0 +-46.212 62.963 -0.41 0 0 0 0 0 0 0 +-46.476 62.908 -0.411 0 0 0 0 0 0 0 +-47.66 64.089 -0.424 0 0 0 0 0 0 0 +-48.297 63.683 -0.424 0 0 0 0 0 0 0 +-48.345 63.539 -0.424 0 0 0 0 0 0 0 +-43.242 56.459 -0.355 0 0 0 0 0 0 0 +-43.44 56.349 -0.355 0 0 0 0 0 0 0 +-43.567 56.148 -0.354 0 0 0 0 0 0 0 +-43.696 55.951 -0.354 0 0 0 0 0 0 0 +-43.818 55.744 -0.353 0 0 0 0 0 0 0 +-43.933 55.531 -0.352 0 0 0 0 0 0 0 +-43.953 55.377 -0.352 0 0 0 0 0 0 0 +-44.034 55.123 -0.35 0 0 0 0 0 0 0 +-46.19 57.453 -0.375 0 0 0 0 0 0 0 +-46.326 57.253 -0.375 0 0 0 0 0 0 0 +-46.439 57.025 -0.374 0 0 0 0 0 0 0 +-46.578 56.829 -0.373 0 0 0 0 0 0 0 +-46.953 56.922 -0.376 0 0 0 0 0 0 0 +-23.733 28.66 -0.087 0 0 0 0 0 0 0 +-47.876 57.487 -0.384 0 0 0 0 0 0 0 +-48.39 57.735 -0.388 0 0 0 0 0 0 0 +-48.901 57.974 -0.392 0 0 0 0 0 0 0 +-49.444 58.246 -0.396 0 0 0 0 0 0 0 +-49.975 58.498 -0.401 0 0 0 0 0 0 0 +-30.992 35.465 -0.165 0 0 0 0 0 0 0 +-36.39 39.719 -0.219 0 0 0 0 0 0 0 +-36.638 39.738 -0.22 0 0 0 0 0 0 0 +-21.623 22.781 -0.042 0 0 0 0 0 0 0 +-21.596 22.611 -0.041 0 0 0 0 0 0 0 +-21.648 22.522 -0.04 0 0 0 0 0 0 0 +-21.694 22.428 -0.04 0 0 0 0 0 0 0 +-21.758 22.354 -0.04 0 0 0 0 0 0 0 +-21.845 22.303 -0.04 0 0 0 0 0 0 0 +-21.771 22.157 -0.039 0 0 0 0 0 0 0 +-32.623 29.85 -0.143 0 0 0 0 0 0 0 +-32.681 29.715 -0.142 0 0 0 0 0 0 0 +-32.778 29.615 -0.142 0 0 0 0 0 0 0 +-35.976 32.303 -0.175 0 0 0 0 0 0 0 +-35.894 32.128 -0.174 0 0 0 0 0 0 0 +-36.013 32.031 -0.174 0 0 0 0 0 0 0 +-36.052 31.864 -0.173 0 0 0 0 0 0 0 +-36.089 31.695 -0.173 0 0 0 0 0 0 0 +-36.125 31.526 -0.172 0 0 0 0 0 0 0 +-36.159 31.356 -0.171 0 0 0 0 0 0 0 +-36.195 31.189 -0.171 0 0 0 0 0 0 0 +-36.173 31.07 -0.17 0 0 0 0 0 0 0 +-36.208 30.903 -0.169 0 0 0 0 0 0 0 +-36.239 30.734 -0.169 0 0 0 0 0 0 0 +-36.264 30.559 -0.168 0 0 0 0 0 0 0 +-36.295 30.391 -0.167 0 0 0 0 0 0 0 +-36.328 30.224 -0.167 0 0 0 0 0 0 0 +-36.356 30.055 -0.166 0 0 0 0 0 0 0 +-36.323 29.932 -0.165 0 0 0 0 0 0 0 +-36.344 29.758 -0.164 0 0 0 0 0 0 0 +-36.368 29.587 -0.164 0 0 0 0 0 0 0 +-36.389 29.415 -0.163 0 0 0 0 0 0 0 +-36.408 29.241 -0.162 0 0 0 0 0 0 0 +-36.426 29.068 -0.162 0 0 0 0 0 0 0 +-36.456 28.905 -0.161 0 0 0 0 0 0 0 +-36.449 28.714 -0.16 0 0 0 0 0 0 0 +-36.449 28.62 -0.159 0 0 0 0 0 0 0 +-36.49 28.468 -0.159 0 0 0 0 0 0 0 +-36.498 28.29 -0.158 0 0 0 0 0 0 0 +-36.529 28.13 -0.158 0 0 0 0 0 0 0 +-36.541 27.957 -0.157 0 0 0 0 0 0 0 +-36.552 27.784 -0.156 0 0 0 0 0 0 0 +-18.483 13.942 0.023 0 0 0 0 0 0 0 +-18.481 13.895 0.024 0 0 0 0 0 0 0 +-18.54 13.849 0.024 0 0 0 0 0 0 0 +-36.561 27.162 -0.153 0 0 0 0 0 0 0 +-36.568 26.989 -0.152 0 0 0 0 0 0 0 +-36.577 26.818 -0.152 0 0 0 0 0 0 0 +-36.708 26.737 -0.152 0 0 0 0 0 0 0 +-36.85 26.664 -0.153 0 0 0 0 0 0 0 +-36.947 26.646 -0.153 0 0 0 0 0 0 0 +-37.098 26.579 -0.154 0 0 0 0 0 0 0 +-37.081 26.39 -0.153 0 0 0 0 0 0 0 +-37.351 26.406 -0.155 0 0 0 0 0 0 0 +-37.377 26.249 -0.154 0 0 0 0 0 0 0 +-37.344 26.051 -0.153 0 0 0 0 0 0 0 +-32.932 22.816 -0.11 0 0 0 0 0 0 0 +-32.892 22.711 -0.109 0 0 0 0 0 0 0 +-32.973 22.615 -0.109 0 0 0 0 0 0 0 +-33.105 22.553 -0.11 0 0 0 0 0 0 0 +-36.588 24.761 -0.142 0 0 0 0 0 0 0 +-36.602 24.603 -0.142 0 0 0 0 0 0 0 +-36.503 24.37 -0.14 0 0 0 0 0 0 0 +-6.702 4.419 0.143 0 0 0 0 0 0 0 +-6.699 4.402 0.143 0 0 0 0 0 0 0 +-6.69 4.365 0.143 0 0 0 0 0 0 0 +-6.693 4.338 0.143 0 0 0 0 0 0 0 +-6.945 4.471 0.141 0 0 0 0 0 0 0 +-6.774 4.33 0.143 0 0 0 0 0 0 0 +-36.538 23.329 -0.136 0 0 0 0 0 0 0 +-36.515 23.153 -0.135 0 0 0 0 0 0 0 +-36.477 23.049 -0.134 0 0 0 0 0 0 0 +-36.477 22.888 -0.134 0 0 0 0 0 0 0 +-36.467 22.723 -0.133 0 0 0 0 0 0 0 +-36.45 22.553 -0.132 0 0 0 0 0 0 0 +-36.449 22.395 -0.131 0 0 0 0 0 0 0 +-36.442 22.233 -0.131 0 0 0 0 0 0 0 +-36.44 22.075 -0.13 0 0 0 0 0 0 0 +-36.42 21.907 -0.129 0 0 0 0 0 0 0 +-36.377 21.803 -0.128 0 0 0 0 0 0 0 +-36.374 21.646 -0.128 0 0 0 0 0 0 0 +-36.364 21.486 -0.127 0 0 0 0 0 0 0 +-36.35 21.324 -0.126 0 0 0 0 0 0 0 +-36.337 21.163 -0.126 0 0 0 0 0 0 0 +-36.322 21.002 -0.125 0 0 0 0 0 0 0 +-36.307 20.841 -0.124 0 0 0 0 0 0 0 +-36.251 20.733 -0.123 0 0 0 0 0 0 0 +-36.25 20.581 -0.123 0 0 0 0 0 0 0 +-36.236 20.423 -0.122 0 0 0 0 0 0 0 +-36.214 20.261 -0.121 0 0 0 0 0 0 0 +-36.187 20.097 -0.12 0 0 0 0 0 0 0 +-36.187 19.948 -0.12 0 0 0 0 0 0 0 +-36.163 19.787 -0.119 0 0 0 0 0 0 0 +-12.574 6.835 0.093 0 0 0 0 0 0 0 +-12.534 6.762 0.094 0 0 0 0 0 0 0 +-36.017 19.341 -0.116 0 0 0 0 0 0 0 +-36.03 19.202 -0.116 0 0 0 0 0 0 0 +-36.01 19.047 -0.115 0 0 0 0 0 0 0 +-35.988 18.891 -0.115 0 0 0 0 0 0 0 +-35.977 18.74 -0.114 0 0 0 0 0 0 0 +-35.921 18.64 -0.113 0 0 0 0 0 0 0 +-35.908 18.49 -0.112 0 0 0 0 0 0 0 +-35.879 18.332 -0.112 0 0 0 0 0 0 0 +-35.852 18.177 -0.111 0 0 0 0 0 0 0 +-35.818 18.018 -0.11 0 0 0 0 0 0 0 +-35.805 17.871 -0.11 0 0 0 0 0 0 0 +-35.741 17.699 -0.109 0 0 0 0 0 0 0 +-35.717 17.617 -0.108 0 0 0 0 0 0 0 +-35.68 17.46 -0.107 0 0 0 0 0 0 0 +-35.677 17.32 -0.107 0 0 0 0 0 0 0 +-35.643 17.165 -0.106 0 0 0 0 0 0 0 +-14.682 6.997 0.078 0 0 0 0 0 0 0 +-14.886 7.037 0.076 0 0 0 0 0 0 0 +-35.841 16.846 -0.106 0 0 0 0 0 0 0 +-35.813 16.695 -0.106 0 0 0 0 0 0 0 +-35.746 16.596 -0.105 0 0 0 0 0 0 0 +-35.727 16.451 -0.104 0 0 0 0 0 0 0 +-35.692 16.299 -0.103 0 0 0 0 0 0 0 +-35.664 16.151 -0.103 0 0 0 0 0 0 0 +-35.622 15.997 -0.102 0 0 0 0 0 0 0 +-35.288 15.714 -0.099 0 0 0 0 0 0 0 +-35.244 15.562 -0.098 0 0 0 0 0 0 0 +-35.188 15.471 -0.097 0 0 0 0 0 0 0 +-35.14 15.318 -0.096 0 0 0 0 0 0 0 +-35.09 15.165 -0.095 0 0 0 0 0 0 0 +-35.051 15.018 -0.095 0 0 0 0 0 0 0 +-35.01 14.87 -0.094 0 0 0 0 0 0 0 +-34.959 14.719 -0.093 0 0 0 0 0 0 0 +-34.935 14.58 -0.093 0 0 0 0 0 0 0 +-34.864 14.486 -0.092 0 0 0 0 0 0 0 +-34.82 14.339 -0.091 0 0 0 0 0 0 0 +-34.784 14.197 -0.09 0 0 0 0 0 0 0 +-34.726 14.046 -0.089 0 0 0 0 0 0 0 +-34.681 13.901 -0.089 0 0 0 0 0 0 0 +-34.637 13.757 -0.088 0 0 0 0 0 0 0 +-34.598 13.616 -0.087 0 0 0 0 0 0 0 +-34.519 13.522 -0.086 0 0 0 0 0 0 0 +-34.476 13.38 -0.086 0 0 0 0 0 0 0 +-34.43 13.238 -0.085 0 0 0 0 0 0 0 +-34.395 13.101 -0.084 0 0 0 0 0 0 0 +-34.35 12.96 -0.084 0 0 0 0 0 0 0 +-34.193 12.778 -0.082 0 0 0 0 0 0 0 +-29.774 11.017 -0.044 0 0 0 0 0 0 0 +-29.713 10.941 -0.044 0 0 0 0 0 0 0 +-29.706 10.832 -0.043 0 0 0 0 0 0 0 +-29.774 10.751 -0.044 0 0 0 0 0 0 0 +-29.849 10.673 -0.044 0 0 0 0 0 0 0 +-33.998 12.04 -0.078 0 0 0 0 0 0 0 +-33.957 11.905 -0.078 0 0 0 0 0 0 0 +-33.896 11.764 -0.077 0 0 0 0 0 0 0 +-33.833 11.683 -0.076 0 0 0 0 0 0 0 +-33.782 11.547 -0.076 0 0 0 0 0 0 0 +-33.728 11.41 -0.075 0 0 0 0 0 0 0 +-33.663 11.27 -0.074 0 0 0 0 0 0 0 +-33.611 11.135 -0.073 0 0 0 0 0 0 0 +-33.568 11.004 -0.073 0 0 0 0 0 0 0 +-33.507 10.867 -0.072 0 0 0 0 0 0 0 +-33.438 10.787 -0.071 0 0 0 0 0 0 0 +-33.382 10.653 -0.07 0 0 0 0 0 0 0 +-33.33 10.521 -0.07 0 0 0 0 0 0 0 +-33.281 10.391 -0.069 0 0 0 0 0 0 0 +-33.237 10.263 -0.068 0 0 0 0 0 0 0 +-33.171 10.128 -0.068 0 0 0 0 0 0 0 +-33.119 9.998 -0.067 0 0 0 0 0 0 0 +-33.052 9.922 -0.066 0 0 0 0 0 0 0 +-33.001 9.793 -0.065 0 0 0 0 0 0 0 +-32.933 9.661 -0.065 0 0 0 0 0 0 0 +-32.87 9.53 -0.064 0 0 0 0 0 0 0 +-32.809 9.401 -0.063 0 0 0 0 0 0 0 +-32.748 9.272 -0.062 0 0 0 0 0 0 0 +-32.694 9.146 -0.062 0 0 0 0 0 0 0 +-32.608 9.066 -0.061 0 0 0 0 0 0 0 +-32.544 8.938 -0.06 0 0 0 0 0 0 0 +-32.477 8.81 -0.059 0 0 0 0 0 0 0 +-32.418 8.685 -0.059 0 0 0 0 0 0 0 +-32.348 8.557 -0.058 0 0 0 0 0 0 0 +-32.292 8.434 -0.057 0 0 0 0 0 0 0 +-32.222 8.307 -0.056 0 0 0 0 0 0 0 +-32.156 8.183 -0.056 0 0 0 0 0 0 0 +-32.078 8.109 -0.055 0 0 0 0 0 0 0 +-32.022 7.988 -0.054 0 0 0 0 0 0 0 +-31.95 7.863 -0.053 0 0 0 0 0 0 0 +-31.881 7.74 -0.053 0 0 0 0 0 0 0 +-31.814 7.618 -0.052 0 0 0 0 0 0 0 +-31.746 7.496 -0.051 0 0 0 0 0 0 0 +-31.688 7.378 -0.051 0 0 0 0 0 0 0 +-31.608 7.307 -0.05 0 0 0 0 0 0 0 +-31.549 7.188 -0.049 0 0 0 0 0 0 0 +-31.472 7.067 -0.048 0 0 0 0 0 0 0 +-31.408 6.949 -0.048 0 0 0 0 0 0 0 +-31.338 6.83 -0.047 0 0 0 0 0 0 0 +-31.271 6.713 -0.046 0 0 0 0 0 0 0 +-31.192 6.593 -0.045 0 0 0 0 0 0 0 +-31.14 6.48 -0.045 0 0 0 0 0 0 0 +-31.074 6.415 -0.044 0 0 0 0 0 0 0 +-31 6.298 -0.043 0 0 0 0 0 0 0 +-30.886 6.174 -0.042 0 0 0 0 0 0 0 +-30.845 6.065 -0.042 0 0 0 0 0 0 0 +-30.767 5.95 -0.041 0 0 0 0 0 0 0 +-30.703 5.837 -0.04 0 0 0 0 0 0 0 +-30.621 5.722 -0.04 0 0 0 0 0 0 0 +-30.544 5.658 -0.039 0 0 0 0 0 0 0 +-30.477 5.546 -0.038 0 0 0 0 0 0 0 +-30.402 5.434 -0.038 0 0 0 0 0 0 0 +-30.326 5.322 -0.037 0 0 0 0 0 0 0 +-30.256 5.212 -0.036 0 0 0 0 0 0 0 +-30.181 5.101 -0.035 0 0 0 0 0 0 0 +-30.106 4.991 -0.035 0 0 0 0 0 0 0 +-30.027 4.93 -0.034 0 0 0 0 0 0 0 +-29.956 4.821 -0.033 0 0 0 0 0 0 0 +-29.874 4.712 -0.032 0 0 0 0 0 0 0 +-29.81 4.605 -0.032 0 0 0 0 0 0 0 +-29.731 4.498 -0.031 0 0 0 0 0 0 0 +-29.654 4.391 -0.03 0 0 0 0 0 0 0 +-29.577 4.284 -0.03 0 0 0 0 0 0 0 +-29.498 4.226 -0.029 0 0 0 0 0 0 0 +-29.42 4.12 -0.028 0 0 0 0 0 0 0 +-29.346 4.016 -0.028 0 0 0 0 0 0 0 +-29.269 3.911 -0.027 0 0 0 0 0 0 0 +-29.2 3.809 -0.026 0 0 0 0 0 0 0 +-29.132 3.707 -0.026 0 0 0 0 0 0 0 +-29.053 3.604 -0.025 0 0 0 0 0 0 0 +-28.973 3.548 -0.024 0 0 0 0 0 0 0 +-28.95 3.453 -0.024 0 0 0 0 0 0 0 +-29.058 3.373 -0.025 0 0 0 0 0 0 0 +-29.093 3.284 -0.025 0 0 0 0 0 0 0 +-29.019 3.184 -0.024 0 0 0 0 0 0 0 +-28.952 3.084 -0.024 0 0 0 0 0 0 0 +-28.874 2.984 -0.023 0 0 0 0 0 0 0 +-28.809 2.886 -0.022 0 0 0 0 0 0 0 +-28.726 2.832 -0.022 0 0 0 0 0 0 0 +-28.651 2.734 -0.021 0 0 0 0 0 0 0 +-28.544 2.633 -0.02 0 0 0 0 0 0 0 +-28.473 2.536 -0.019 0 0 0 0 0 0 0 +-28.032 2.408 -0.016 0 0 0 0 0 0 0 +-27.952 2.312 -0.015 0 0 0 0 0 0 0 +-27.873 2.217 -0.014 0 0 0 0 0 0 0 +-27.793 2.167 -0.014 0 0 0 0 0 0 0 +-27.704 2.073 -0.013 0 0 0 0 0 0 0 +-27.621 1.979 -0.012 0 0 0 0 0 0 0 +-27.533 1.886 -0.012 0 0 0 0 0 0 0 +-27.467 1.794 -0.011 0 0 0 0 0 0 0 +-27.387 1.703 -0.01 0 0 0 0 0 0 0 +-27.306 1.611 -0.01 0 0 0 0 0 0 0 +-21.618 1.236 0.035 0 0 0 0 0 0 0 +-21.572 1.166 0.036 0 0 0 0 0 0 0 +-21.552 1.097 0.036 0 0 0 0 0 0 0 +-21.555 1.029 0.036 0 0 0 0 0 0 0 +-21.554 0.961 0.036 0 0 0 0 0 0 0 +-21.575 0.894 0.036 0 0 0 0 0 0 0 +-21.62 0.828 0.035 0 0 0 0 0 0 0 +-21.713 0.797 0.035 0 0 0 0 0 0 0 +-26.578 0.898 -0.004 0 0 0 0 0 0 0 +-26.507 0.813 -0.003 0 0 0 0 0 0 0 +-26.685 0.734 -0.005 0 0 0 0 0 0 0 +-26.506 0.646 -0.003 0 0 0 0 0 0 0 +-26.228 0.556 -0.001 0 0 0 0 0 0 0 +-26.163 0.473 -0 0 0 0 0 0 0 0 +-26.081 0.389 0 0 0 0 0 0 0 0 +-26 0.306 0.001 0 0 0 0 0 0 0 +-25.918 0.264 0.002 0 0 0 0 0 0 0 +-25.845 0.182 0.002 0 0 0 0 0 0 0 +-25.763 0.101 0.003 0 0 0 0 0 0 0 +-25.675 0.02 0.004 0 0 0 0 0 0 0 +-25.595 -0.061 0.004 0 0 0 0 0 0 0 +-25.515 -0.141 0.005 0 0 0 0 0 0 0 +-25.435 -0.22 0.005 0 0 0 0 0 0 0 +-25.352 -0.26 0.006 0 0 0 0 0 0 0 +-25.281 -0.338 0.007 0 0 0 0 0 0 0 +-25.196 -0.417 0.007 0 0 0 0 0 0 0 +-25.115 -0.494 0.008 0 0 0 0 0 0 0 +-25.033 -0.571 0.009 0 0 0 0 0 0 0 +-25.039 -0.65 0.008 0 0 0 0 0 0 0 +-25.099 -0.731 0.008 0 0 0 0 0 0 0 +-25.098 -0.77 0.008 0 0 0 0 0 0 0 +-25.011 -0.846 0.009 0 0 0 0 0 0 0 +-24.928 -0.922 0.009 0 0 0 0 0 0 0 +-24.851 -0.997 0.01 0 0 0 0 0 0 0 +-24.766 -1.072 0.011 0 0 0 0 0 0 0 +-24.701 -1.147 0.011 0 0 0 0 0 0 0 +-24.621 -1.221 0.012 0 0 0 0 0 0 0 +-24.559 -1.256 0.012 0 0 0 0 0 0 0 +-24.475 -1.329 0.013 0 0 0 0 0 0 0 +-24.349 -1.399 0.014 0 0 0 0 0 0 0 +-24.021 -1.457 0.016 0 0 0 0 0 0 0 +-23.971 -1.529 0.017 0 0 0 0 0 0 0 +-23.878 -1.599 0.017 0 0 0 0 0 0 0 +-23.813 -1.67 0.018 0 0 0 0 0 0 0 +-23.729 -1.701 0.018 0 0 0 0 0 0 0 +-23.643 -1.77 0.019 0 0 0 0 0 0 0 +-16.01 -1.257 0.079 0 0 0 0 0 0 0 +-15.99 -1.306 0.079 0 0 0 0 0 0 0 +-16.024 -1.36 0.079 0 0 0 0 0 0 0 +-16.151 -1.422 0.078 0 0 0 0 0 0 0 +-16.153 -1.473 0.078 0 0 0 0 0 0 0 +-16.148 -1.524 0.078 0 0 0 0 0 0 0 +-23.13 -2.208 0.023 0 0 0 0 0 0 0 +-16.001 -1.586 0.079 0 0 0 0 0 0 0 +-15.911 -1.628 0.08 0 0 0 0 0 0 0 +-15.876 -1.675 0.08 0 0 0 0 0 0 0 +-15.896 -1.727 0.08 0 0 0 0 0 0 0 +-22.707 -2.528 0.026 0 0 0 0 0 0 0 +-22.699 -2.6 0.026 0 0 0 0 0 0 0 +-22.713 -2.637 0.026 0 0 0 0 0 0 0 +-22.713 -2.71 0.026 0 0 0 0 0 0 0 +-22.734 -2.785 0.025 0 0 0 0 0 0 0 +-22.727 -2.856 0.025 0 0 0 0 0 0 0 +-22.74 -2.93 0.025 0 0 0 0 0 0 0 +-22.744 -3.004 0.025 0 0 0 0 0 0 0 +-22.74 -3.076 0.025 0 0 0 0 0 0 0 +-22.757 -3.115 0.025 0 0 0 0 0 0 0 +-22.73 -3.184 0.025 0 0 0 0 0 0 0 +-22.716 -3.254 0.025 0 0 0 0 0 0 0 +-22.63 -3.315 0.026 0 0 0 0 0 0 0 +-22.784 -3.41 0.024 0 0 0 0 0 0 0 +-22.698 -3.47 0.025 0 0 0 0 0 0 0 +-22.618 -3.531 0.025 0 0 0 0 0 0 0 +-22.497 -3.549 0.026 0 0 0 0 0 0 0 +-22.464 -3.616 0.027 0 0 0 0 0 0 0 +-22.412 -3.68 0.027 0 0 0 0 0 0 0 +-22.337 -3.739 0.027 0 0 0 0 0 0 0 +-22.226 -3.793 0.028 0 0 0 0 0 0 0 +-21.075 -3.666 0.037 0 0 0 0 0 0 0 +-21.008 -3.722 0.038 0 0 0 0 0 0 0 +-20.938 -3.744 0.038 0 0 0 0 0 0 0 +-20.873 -3.8 0.039 0 0 0 0 0 0 0 +-20.792 -3.853 0.039 0 0 0 0 0 0 0 +-20.738 -3.911 0.04 0 0 0 0 0 0 0 +-20.649 -3.961 0.04 0 0 0 0 0 0 0 +-20.586 -4.016 0.041 0 0 0 0 0 0 0 +-20.488 -4.064 0.041 0 0 0 0 0 0 0 +-20.435 -4.087 0.042 0 0 0 0 0 0 0 +-20.351 -4.137 0.042 0 0 0 0 0 0 0 +-20.289 -4.191 0.043 0 0 0 0 0 0 0 +-20.206 -4.24 0.043 0 0 0 0 0 0 0 +-20.145 -4.293 0.044 0 0 0 0 0 0 0 +-20.048 -4.338 0.044 0 0 0 0 0 0 0 +-19.999 -4.394 0.045 0 0 0 0 0 0 0 +-19.916 -4.408 0.045 0 0 0 0 0 0 0 +-19.855 -4.46 0.046 0 0 0 0 0 0 0 +-19.77 -4.507 0.046 0 0 0 0 0 0 0 +-19.682 -4.552 0.047 0 0 0 0 0 0 0 +-19.594 -4.596 0.047 0 0 0 0 0 0 0 +-19.568 -4.655 0.047 0 0 0 0 0 0 0 +-19.594 -4.726 0.047 0 0 0 0 0 0 0 +-19.608 -4.795 0.047 0 0 0 0 0 0 0 +-19.608 -4.828 0.047 0 0 0 0 0 0 0 +-19.529 -4.873 0.047 0 0 0 0 0 0 0 +-19.444 -4.917 0.048 0 0 0 0 0 0 0 +-19.374 -4.964 0.048 0 0 0 0 0 0 0 +-19.3 -5.01 0.049 0 0 0 0 0 0 0 +-19.234 -5.058 0.049 0 0 0 0 0 0 0 +-19.169 -5.105 0.05 0 0 0 0 0 0 0 +-19.102 -5.119 0.05 0 0 0 0 0 0 0 +-19.039 -5.167 0.05 0 0 0 0 0 0 0 +-18.959 -5.209 0.051 0 0 0 0 0 0 0 +-18.896 -5.256 0.051 0 0 0 0 0 0 0 +-18.812 -5.296 0.052 0 0 0 0 0 0 0 +-18.509 -5.274 0.054 0 0 0 0 0 0 0 +-18.415 -5.31 0.055 0 0 0 0 0 0 0 +-18.382 -5.332 0.055 0 0 0 0 0 0 0 +-18.311 -5.374 0.056 0 0 0 0 0 0 0 +-18.237 -5.415 0.056 0 0 0 0 0 0 0 +-18.151 -5.451 0.057 0 0 0 0 0 0 0 +-18.099 -5.498 0.057 0 0 0 0 0 0 0 +-18.019 -5.535 0.057 0 0 0 0 0 0 0 +-17.965 -5.581 0.058 0 0 0 0 0 0 0 +-17.893 -5.589 0.058 0 0 0 0 0 0 0 +-17.826 -5.63 0.059 0 0 0 0 0 0 0 +-17.749 -5.667 0.059 0 0 0 0 0 0 0 +-17.689 -5.709 0.059 0 0 0 0 0 0 0 +-17.61 -5.745 0.06 0 0 0 0 0 0 0 +-17.564 -5.791 0.06 0 0 0 0 0 0 0 +-17.479 -5.824 0.061 0 0 0 0 0 0 0 +-17.43 -5.838 0.061 0 0 0 0 0 0 0 +-17.347 -5.871 0.062 0 0 0 0 0 0 0 +-17.291 -5.913 0.062 0 0 0 0 0 0 0 +-17.215 -5.948 0.062 0 0 0 0 0 0 0 +-17.157 -5.988 0.063 0 0 0 0 0 0 0 +-17.087 -6.024 0.063 0 0 0 0 0 0 0 +-17.03 -6.064 0.063 0 0 0 0 0 0 0 +-16.744 -5.992 0.066 0 0 0 0 0 0 0 +-16.753 -6.055 0.066 0 0 0 0 0 0 0 +-16.834 -6.144 0.065 0 0 0 0 0 0 0 +-16.756 -6.175 0.065 0 0 0 0 0 0 0 +-16.701 -6.215 0.065 0 0 0 0 0 0 0 +-16.625 -6.246 0.066 0 0 0 0 0 0 0 +-16.555 -6.279 0.066 0 0 0 0 0 0 0 +-16.496 -6.287 0.067 0 0 0 0 0 0 0 +-16.435 -6.323 0.067 0 0 0 0 0 0 0 +-16.373 -6.358 0.068 0 0 0 0 0 0 0 +-16.3 -6.389 0.068 0 0 0 0 0 0 0 +-16.249 -6.428 0.068 0 0 0 0 0 0 0 +-16.193 -6.465 0.069 0 0 0 0 0 0 0 +-16.124 -6.496 0.069 0 0 0 0 0 0 0 +-16.07 -6.504 0.069 0 0 0 0 0 0 0 +-16.008 -6.537 0.07 0 0 0 0 0 0 0 +-15.995 -6.591 0.07 0 0 0 0 0 0 0 +-16.002 -6.652 0.069 0 0 0 0 0 0 0 +-16.057 -6.734 0.069 0 0 0 0 0 0 0 +-15.842 -6.703 0.07 0 0 0 0 0 0 0 +-15.828 -6.756 0.07 0 0 0 0 0 0 0 +-16.036 -6.874 0.068 0 0 0 0 0 0 0 +-16.042 -6.937 0.068 0 0 0 0 0 0 0 +-16.042 -6.996 0.068 0 0 0 0 0 0 0 +-16.055 -7.062 0.068 0 0 0 0 0 0 0 +-16.057 -7.123 0.067 0 0 0 0 0 0 0 +-16.063 -7.186 0.067 0 0 0 0 0 0 0 +-16.068 -7.249 0.067 0 0 0 0 0 0 0 +-16.076 -7.314 0.067 0 0 0 0 0 0 0 +-16.094 -7.352 0.066 0 0 0 0 0 0 0 +-16.091 -7.412 0.066 0 0 0 0 0 0 0 +-16.105 -7.48 0.066 0 0 0 0 0 0 0 +-16.1 -7.539 0.066 0 0 0 0 0 0 0 +-16.123 -7.612 0.065 0 0 0 0 0 0 0 +-16.119 -7.672 0.065 0 0 0 0 0 0 0 +-16.138 -7.743 0.065 0 0 0 0 0 0 0 +-16.155 -7.782 0.065 0 0 0 0 0 0 0 +-16.136 -7.836 0.065 0 0 0 0 0 0 0 +-16.147 -7.904 0.064 0 0 0 0 0 0 0 +-16.155 -7.97 0.064 0 0 0 0 0 0 0 +-16.289 -8.1 0.063 0 0 0 0 0 0 0 +-16.287 -8.163 0.062 0 0 0 0 0 0 0 +-16.288 -8.227 0.062 0 0 0 0 0 0 0 +-16.314 -8.273 0.062 0 0 0 0 0 0 0 +-16.324 -8.342 0.061 0 0 0 0 0 0 0 +-16.328 -8.409 0.061 0 0 0 0 0 0 0 +-16.337 -8.479 0.061 0 0 0 0 0 0 0 +-16.336 -8.544 0.061 0 0 0 0 0 0 0 +-16.343 -8.613 0.06 0 0 0 0 0 0 0 +-16.339 -8.676 0.06 0 0 0 0 0 0 0 +-16.348 -8.714 0.06 0 0 0 0 0 0 0 +-16.365 -8.789 0.06 0 0 0 0 0 0 0 +-16.362 -8.854 0.059 0 0 0 0 0 0 0 +-16.366 -8.922 0.059 0 0 0 0 0 0 0 +-16.357 -8.984 0.059 0 0 0 0 0 0 0 +-16.35 -9.047 0.059 0 0 0 0 0 0 0 +-16.365 -9.123 0.058 0 0 0 0 0 0 0 +-16.347 -9.146 0.058 0 0 0 0 0 0 0 +-16.309 -9.193 0.058 0 0 0 0 0 0 0 +-16.317 -9.265 0.058 0 0 0 0 0 0 0 +-16.345 -9.349 0.058 0 0 0 0 0 0 0 +-16.359 -9.425 0.057 0 0 0 0 0 0 0 +-16.36 -9.494 0.057 0 0 0 0 0 0 0 +-16.37 -9.569 0.056 0 0 0 0 0 0 0 +-16.385 -9.611 0.056 0 0 0 0 0 0 0 +-16.406 -9.693 0.056 0 0 0 0 0 0 0 +-16.394 -9.756 0.056 0 0 0 0 0 0 0 +-16.419 -9.84 0.055 0 0 0 0 0 0 0 +-16.413 -9.907 0.055 0 0 0 0 0 0 0 +-16.435 -9.991 0.054 0 0 0 0 0 0 0 +-16.428 -10.057 0.054 0 0 0 0 0 0 0 +-16.458 -10.111 0.054 0 0 0 0 0 0 0 +-16.46 -10.184 0.053 0 0 0 0 0 0 0 +-16.47 -10.262 0.053 0 0 0 0 0 0 0 +-16.465 -10.331 0.053 0 0 0 0 0 0 0 +-16.48 -10.412 0.052 0 0 0 0 0 0 0 +-16.486 -10.488 0.052 0 0 0 0 0 0 0 +-16.485 -10.561 0.052 0 0 0 0 0 0 0 +-16.484 -10.633 0.051 0 0 0 0 0 0 0 +-16.669 -10.789 0.049 0 0 0 0 0 0 0 +-16.675 -10.867 0.049 0 0 0 0 0 0 0 +-16.693 -10.954 0.049 0 0 0 0 0 0 0 +-16.705 -11.037 0.048 0 0 0 0 0 0 0 +-16.715 -11.119 0.048 0 0 0 0 0 0 0 +-16.713 -11.194 0.047 0 0 0 0 0 0 0 +-16.733 -11.283 0.047 0 0 0 0 0 0 0 +-16.748 -11.332 0.047 0 0 0 0 0 0 0 +-16.766 -11.42 0.046 0 0 0 0 0 0 0 +-16.779 -11.507 0.046 0 0 0 0 0 0 0 +-16.786 -11.589 0.045 0 0 0 0 0 0 0 +-16.792 -11.671 0.045 0 0 0 0 0 0 0 +-16.796 -11.752 0.044 0 0 0 0 0 0 0 +-16.766 -11.81 0.044 0 0 0 0 0 0 0 +-16.719 -11.816 0.045 0 0 0 0 0 0 0 +-16.651 -11.847 0.045 0 0 0 0 0 0 0 +-16.663 -11.934 0.044 0 0 0 0 0 0 0 +-16.676 -12.023 0.044 0 0 0 0 0 0 0 +-16.701 -12.121 0.043 0 0 0 0 0 0 0 +-16.695 -12.197 0.043 0 0 0 0 0 0 0 +-16.721 -12.296 0.042 0 0 0 0 0 0 0 +-16.731 -12.344 0.042 0 0 0 0 0 0 0 +-16.74 -12.432 0.042 0 0 0 0 0 0 0 +-16.741 -12.515 0.041 0 0 0 0 0 0 0 +-16.769 -12.617 0.041 0 0 0 0 0 0 0 +-16.761 -12.694 0.04 0 0 0 0 0 0 0 +-16.778 -12.79 0.04 0 0 0 0 0 0 0 +-16.776 -12.872 0.039 0 0 0 0 0 0 0 +-16.821 -12.948 0.039 0 0 0 0 0 0 0 +-16.812 -13.026 0.038 0 0 0 0 0 0 0 +-16.84 -13.132 0.038 0 0 0 0 0 0 0 +-16.813 -13.196 0.037 0 0 0 0 0 0 0 +-16.855 -13.315 0.037 0 0 0 0 0 0 0 +-16.976 -13.497 0.035 0 0 0 0 0 0 0 +-16.955 -13.568 0.035 0 0 0 0 0 0 0 +-16.976 -13.628 0.034 0 0 0 0 0 0 0 +-16.988 -13.725 0.034 0 0 0 0 0 0 0 +-16.99 -13.815 0.033 0 0 0 0 0 0 0 +-16.985 -13.9 0.033 0 0 0 0 0 0 0 +-16.998 -14 0.032 0 0 0 0 0 0 0 +-17 -14.092 0.032 0 0 0 0 0 0 0 +-17.007 -14.187 0.031 0 0 0 0 0 0 0 +-17.049 -14.268 0.031 0 0 0 0 0 0 0 +-17.052 -14.361 0.03 0 0 0 0 0 0 0 +-17.048 -14.45 0.03 0 0 0 0 0 0 0 +-16.996 -14.498 0.03 0 0 0 0 0 0 0 +-16.988 -14.584 0.029 0 0 0 0 0 0 0 +-17.011 -14.696 0.029 0 0 0 0 0 0 0 +-17.032 -14.808 0.028 0 0 0 0 0 0 0 +-17.04 -14.909 0.027 0 0 0 0 0 0 0 +-17.072 -14.984 0.027 0 0 0 0 0 0 0 +-17.082 -15.088 0.026 0 0 0 0 0 0 0 +-17.092 -15.192 0.026 0 0 0 0 0 0 0 +-17.091 -15.289 0.025 0 0 0 0 0 0 0 +-17.113 -15.405 0.024 0 0 0 0 0 0 0 +-17.114 -15.503 0.024 0 0 0 0 0 0 0 +-17.13 -15.616 0.023 0 0 0 0 0 0 0 +-17.16 -15.693 0.023 0 0 0 0 0 0 0 +-17.168 -15.799 0.022 0 0 0 0 0 0 0 +-17.155 -15.887 0.022 0 0 0 0 0 0 0 +-17.168 -15.999 0.021 0 0 0 0 0 0 0 +-17.163 -16.096 0.02 0 0 0 0 0 0 0 +-17.162 -16.196 0.02 0 0 0 0 0 0 0 +-17.159 -16.295 0.019 0 0 0 0 0 0 0 +-17.188 -16.374 0.019 0 0 0 0 0 0 0 +-17.2 -16.489 0.018 0 0 0 0 0 0 0 +-17.203 -16.596 0.018 0 0 0 0 0 0 0 +-17.206 -16.703 0.017 0 0 0 0 0 0 0 +-17.215 -16.817 0.016 0 0 0 0 0 0 0 +-17.222 -16.93 0.016 0 0 0 0 0 0 0 +-17.238 -17.052 0.015 0 0 0 0 0 0 0 +-17.273 -17.14 0.014 0 0 0 0 0 0 0 +-17.343 -17.318 0.013 0 0 0 0 0 0 0 +-17.375 -17.459 0.012 0 0 0 0 0 0 0 +-17.386 -17.58 0.011 0 0 0 0 0 0 0 +-17.393 -17.698 0.01 0 0 0 0 0 0 0 +-17.41 -17.827 0.01 0 0 0 0 0 0 0 +-17.423 -17.953 0.009 0 0 0 0 0 0 0 +-17.458 -18.045 0.008 0 0 0 0 0 0 0 +-17.466 -18.167 0.007 0 0 0 0 0 0 0 +-17.467 -18.283 0.007 0 0 0 0 0 0 0 +-17.499 -18.432 0.006 0 0 0 0 0 0 0 +-17.517 -18.566 0.005 0 0 0 0 0 0 0 +-17.88 -19.07 -0 0 0 0 0 0 0 0 +-17.987 -19.305 -0.002 0 0 0 0 0 0 0 +-18.159 -19.551 -0.004 0 0 0 0 0 0 0 +-20.428 -22.128 -0.031 0 0 0 0 0 0 0 +-21.04 -22.934 -0.039 0 0 0 0 0 0 0 +-20.627 -22.626 -0.035 0 0 0 0 0 0 0 +-20.424 -22.546 -0.034 0 0 0 0 0 0 0 +-20.466 -22.735 -0.035 0 0 0 0 0 0 0 +-20.533 -22.954 -0.037 0 0 0 0 0 0 0 +-20.914 -23.453 -0.042 0 0 0 0 0 0 0 +-20.442 -23.07 -0.037 0 0 0 0 0 0 0 +-20.402 -23.171 -0.037 0 0 0 0 0 0 0 +-20.717 -23.678 -0.042 0 0 0 0 0 0 0 +-20.602 -23.696 -0.042 0 0 0 0 0 0 0 +-24.847 -28.752 -0.094 0 0 0 0 0 0 0 +-24.86 -28.95 -0.095 0 0 0 0 0 0 0 +-24.924 -29.117 -0.096 0 0 0 0 0 0 0 +-24.937 -29.318 -0.098 0 0 0 0 0 0 0 +-24.893 -29.453 -0.098 0 0 0 0 0 0 0 +-18.832 -22.435 -0.025 0 0 0 0 0 0 0 +-18.702 -22.422 -0.024 0 0 0 0 0 0 0 +-18.724 -22.593 -0.025 0 0 0 0 0 0 0 +-24.956 -30.291 -0.103 0 0 0 0 0 0 0 +-25.052 -30.505 -0.105 0 0 0 0 0 0 0 +-25.063 -30.715 -0.107 0 0 0 0 0 0 0 +-25.163 -31.036 -0.109 0 0 0 0 0 0 0 +-25.187 -31.266 -0.111 0 0 0 0 0 0 0 +-25.204 -31.488 -0.112 0 0 0 0 0 0 0 +-25.22 -31.711 -0.114 0 0 0 0 0 0 0 +-25.249 -31.953 -0.115 0 0 0 0 0 0 0 +-25.287 -32.104 -0.116 0 0 0 0 0 0 0 +-19.227 -24.579 -0.04 0 0 0 0 0 0 0 +-19.04 -24.498 -0.039 0 0 0 0 0 0 0 +-19.072 -24.699 -0.04 0 0 0 0 0 0 0 +-18.96 -24.714 -0.04 0 0 0 0 0 0 0 +-18.893 -24.788 -0.04 0 0 0 0 0 0 0 +-18.824 -24.858 -0.04 0 0 0 0 0 0 0 +-18.889 -25.027 -0.041 0 0 0 0 0 0 0 +-25.577 -34.094 -0.13 0 0 0 0 0 0 0 +-25.595 -34.342 -0.132 0 0 0 0 0 0 0 +-25.615 -34.594 -0.133 0 0 0 0 0 0 0 +-25.615 -34.823 -0.135 0 0 0 0 0 0 0 +-25.562 -34.98 -0.136 0 0 0 0 0 0 0 +-25.594 -35.256 -0.138 0 0 0 0 0 0 0 +-25.668 -35.475 -0.139 0 0 0 0 0 0 0 +-25.698 -35.752 -0.141 0 0 0 0 0 0 0 +-25.734 -36.04 -0.143 0 0 0 0 0 0 0 +-25.858 -36.455 -0.146 0 0 0 0 0 0 0 +-25.889 -36.742 -0.148 0 0 0 0 0 0 0 +-25.901 -37.005 -0.15 0 0 0 0 0 0 0 +-25.923 -37.285 -0.152 0 0 0 0 0 0 0 +-25.862 -37.448 -0.153 0 0 0 0 0 0 0 +-26.059 -37.86 -0.156 0 0 0 0 0 0 0 +-26.09 -38.161 -0.159 0 0 0 0 0 0 0 +-26.073 -38.395 -0.16 0 0 0 0 0 0 0 +-26.049 -38.619 -0.161 0 0 0 0 0 0 0 +-26.085 -38.936 -0.164 0 0 0 0 0 0 0 +-26.112 -39.241 -0.166 0 0 0 0 0 0 0 +-26.149 -39.567 -0.168 0 0 0 0 0 0 0 +-26.318 -39.958 -0.171 0 0 0 0 0 0 0 +-26.377 -40.322 -0.174 0 0 0 0 0 0 0 +-26.405 -40.642 -0.176 0 0 0 0 0 0 0 +-26.444 -40.984 -0.179 0 0 0 0 0 0 0 +-26.385 -41.176 -0.18 0 0 0 0 0 0 0 +-26.405 -41.493 -0.182 0 0 0 0 0 0 0 +-26.446 -41.847 -0.184 0 0 0 0 0 0 0 +-26.541 -42.143 -0.187 0 0 0 0 0 0 0 +-26.636 -42.589 -0.19 0 0 0 0 0 0 0 +-26.714 -43.014 -0.193 0 0 0 0 0 0 0 +-26.747 -43.37 -0.196 0 0 0 0 0 0 0 +-26.786 -43.74 -0.198 0 0 0 0 0 0 0 +-26.726 -43.951 -0.2 0 0 0 0 0 0 0 +-26.761 -44.322 -0.202 0 0 0 0 0 0 0 +-26.878 -44.674 -0.205 0 0 0 0 0 0 0 +-26.918 -45.059 -0.208 0 0 0 0 0 0 0 +-27.045 -45.597 -0.212 0 0 0 0 0 0 0 +-27.086 -45.994 -0.215 0 0 0 0 0 0 0 +-27.894 -47.706 -0.23 0 0 0 0 0 0 0 +-27.759 -47.819 -0.23 0 0 0 0 0 0 0 +-27.621 -47.927 -0.23 0 0 0 0 0 0 0 +-27.534 -47.952 -0.23 0 0 0 0 0 0 0 +-27.4 -48.067 -0.23 0 0 0 0 0 0 0 +-27.425 -48.463 -0.233 0 0 0 0 0 0 0 +-27.462 -48.885 -0.236 0 0 0 0 0 0 0 +-27.439 -49.207 -0.238 0 0 0 0 0 0 0 +-27.482 -49.65 -0.242 0 0 0 0 0 0 0 +-27.533 -50.111 -0.245 0 0 0 0 0 0 0 +-27.71 -50.621 -0.249 0 0 0 0 0 0 0 +-27.777 -51.124 -0.253 0 0 0 0 0 0 0 +-27.823 -51.594 -0.256 0 0 0 0 0 0 0 +-27.814 -51.967 -0.259 0 0 0 0 0 0 0 +-27.881 -52.487 -0.263 0 0 0 0 0 0 0 +-15.61 -29.635 -0.058 0 0 0 0 0 0 0 +-15.518 -29.686 -0.058 0 0 0 0 0 0 0 +-28.167 -54.045 -0.275 0 0 0 0 0 0 0 +-28.184 -54.494 -0.278 0 0 0 0 0 0 0 +-28.244 -55.034 -0.282 0 0 0 0 0 0 0 +-28.305 -55.58 -0.286 0 0 0 0 0 0 0 +-28.376 -56.154 -0.29 0 0 0 0 0 0 0 +-28.437 -56.717 -0.294 0 0 0 0 0 0 0 +-28.377 -57.044 -0.296 0 0 0 0 0 0 0 +-28.659 -57.837 -0.303 0 0 0 0 0 0 0 +-28.674 -58.327 -0.307 0 0 0 0 0 0 0 +-28.751 -58.951 -0.311 0 0 0 0 0 0 0 +-28.831 -59.588 -0.316 0 0 0 0 0 0 0 +-28.902 -60.217 -0.321 0 0 0 0 0 0 0 +-28.965 -60.837 -0.325 0 0 0 0 0 0 0 +-29.04 -61.49 -0.33 0 0 0 0 0 0 0 +-29.202 -62.085 -0.335 0 0 0 0 0 0 0 +-29.289 -62.78 -0.34 0 0 0 0 0 0 0 +-29.34 -63.409 -0.345 0 0 0 0 0 0 0 +-29.416 -64.101 -0.35 0 0 0 0 0 0 0 +-29.496 -64.81 -0.356 0 0 0 0 0 0 0 +-29.568 -65.513 -0.361 0 0 0 0 0 0 0 +-29.57 -66.069 -0.365 0 0 0 0 0 0 0 +-30.024 -67.366 -0.376 0 0 0 0 0 0 0 +-29.904 -67.669 -0.377 0 0 0 0 0 0 0 +-29.995 -68.455 -0.383 0 0 0 0 0 0 0 +-15.897 -36.623 -0.109 0 0 0 0 0 0 0 +-15.707 -36.499 -0.107 0 0 0 0 0 0 0 +-30.246 -70.833 -0.401 0 0 0 0 0 0 0 +-30.302 -71.585 -0.407 0 0 0 0 0 0 0 +-24.285 -57.637 -0.287 0 0 0 0 0 0 0 +-24.126 -57.766 -0.288 0 0 0 0 0 0 0 +-23.917 -57.774 -0.287 0 0 0 0 0 0 0 +-23.655 -57.654 -0.285 0 0 0 0 0 0 0 +-23.372 -57.478 -0.283 0 0 0 0 0 0 0 +-23.274 -57.755 -0.285 0 0 0 0 0 0 0 +-23.083 -57.806 -0.285 0 0 0 0 0 0 0 +-23.001 -57.863 -0.285 0 0 0 0 0 0 0 +-16.402 -42.842 -0.156 0 0 0 0 0 0 0 +-16.28 -42.927 -0.156 0 0 0 0 0 0 0 +-18.625 -51.775 -0.228 0 0 0 0 0 0 0 +-17.391 -48.832 -0.203 0 0 0 0 0 0 0 +-17.217 -48.826 -0.202 0 0 0 0 0 0 0 +-17.088 -48.952 -0.203 0 0 0 0 0 0 0 +-17.981 -51.767 -0.226 0 0 0 0 0 0 0 +-17.802 -51.774 -0.226 0 0 0 0 0 0 0 +-17.412 -51.695 -0.224 0 0 0 0 0 0 0 +-17.273 -51.82 -0.225 0 0 0 0 0 0 0 +-19.9 -68.136 -0.354 0 0 0 0 0 0 0 +-19.688 -68.205 -0.354 0 0 0 0 0 0 0 +-6.506 -44.823 -0.151 0 0 0 0 0 0 0 +-7.003 -78.113 -0.412 0 0 0 0 0 0 0 +-4.52 -65.468 -0.312 0 0 0 0 0 0 0 +-4.316 -65.512 -0.312 0 0 0 0 0 0 0 +-4.863 -77.457 -0.406 0 0 0 0 0 0 0 +-4.535 -76.055 -0.395 0 0 0 0 0 0 0 +-4.381 -77.57 -0.407 0 0 0 0 0 0 0 +-3.302 -62.01 -0.284 0 0 0 0 0 0 0 +-3.086 -61.599 -0.28 0 0 0 0 0 0 0 +-2.972 -61.258 -0.278 0 0 0 0 0 0 0 +-2.766 -60.966 -0.275 0 0 0 0 0 0 0 +-2.504 -59.33 -0.262 0 0 0 0 0 0 0 +-2.392 -61.206 -0.277 0 0 0 0 0 0 0 +-2.196 -61.119 -0.276 0 0 0 0 0 0 0 +-1.688 -51.601 -0.201 0 0 0 0 0 0 0 +-1.512 -51.154 -0.198 0 0 0 0 0 0 0 +-1.412 -50.471 -0.192 0 0 0 0 0 0 0 +-1.24 -49.961 -0.188 0 0 0 0 0 0 0 +-0.957 -44.293 -0.143 0 0 0 0 0 0 0 +-0.811 -43.907 -0.14 0 0 0 0 0 0 0 +-0.661 -43.136 -0.134 0 0 0 0 0 0 0 +-0.519 -42.692 -0.131 0 0 0 0 0 0 0 +-0.375 -41.593 -0.122 0 0 0 0 0 0 0 +-0.174 -30.803 -0.037 0 0 0 0 0 0 0 +-0.178 -41.489 -0.121 0 0 0 0 0 0 0 +-0.048 -41.529 -0.121 0 0 0 0 0 0 0 +0.083 -41.707 -0.123 0 0 0 0 0 0 0 +0.216 -42.14 -0.126 0 0 0 0 0 0 0 +0.369 -44.899 -0.148 0 0 0 0 0 0 0 +0.511 -44.942 -0.148 0 0 0 0 0 0 0 +0.527 -35.963 -0.078 0 0 0 0 0 0 0 +0.719 -44.721 -0.147 0 0 0 0 0 0 0 +0.862 -44.841 -0.148 0 0 0 0 0 0 0 +0.995 -44.48 -0.145 0 0 0 0 0 0 0 +1.134 -44.452 -0.145 0 0 0 0 0 0 0 +1.275 -44.505 -0.145 0 0 0 0 0 0 0 +1.415 -44.492 -0.145 0 0 0 0 0 0 0 +1.404 -42.016 -0.126 0 0 0 0 0 0 0 +1.534 -41.969 -0.125 0 0 0 0 0 0 0 +1.669 -42.046 -0.126 0 0 0 0 0 0 0 +1.8 -42.004 -0.126 0 0 0 0 0 0 0 +1.934 -42.058 -0.126 0 0 0 0 0 0 0 +2.059 -41.902 -0.125 0 0 0 0 0 0 0 +2.196 -41.998 -0.126 0 0 0 0 0 0 0 +2.275 -41.022 -0.118 0 0 0 0 0 0 0 +2.324 -40.745 -0.116 0 0 0 0 0 0 0 +2.487 -41.326 -0.12 0 0 0 0 0 0 0 +2.585 -40.815 -0.117 0 0 0 0 0 0 0 +2.812 -42.296 -0.128 0 0 0 0 0 0 0 +2.866 -41.145 -0.119 0 0 0 0 0 0 0 +3.522 -46.411 -0.161 0 0 0 0 0 0 0 +3.599 -46.46 -0.161 0 0 0 0 0 0 0 +3.72 -46.129 -0.159 0 0 0 0 0 0 0 +3.856 -46.016 -0.158 0 0 0 0 0 0 0 +3.979 -45.75 -0.156 0 0 0 0 0 0 0 +4.1 -45.486 -0.154 0 0 0 0 0 0 0 +4.255 -45.605 -0.155 0 0 0 0 0 0 0 +4.372 -45.314 -0.153 0 0 0 0 0 0 0 +4.427 -45.146 -0.152 0 0 0 0 0 0 0 +4.566 -45.096 -0.151 0 0 0 0 0 0 0 +4.706 -45.07 -0.151 0 0 0 0 0 0 0 +4.811 -44.709 -0.149 0 0 0 0 0 0 0 +4.937 -44.568 -0.148 0 0 0 0 0 0 0 +5.061 -44.413 -0.147 0 0 0 0 0 0 0 +5.026 -42.894 -0.135 0 0 0 0 0 0 0 +5.159 -43.448 -0.139 0 0 0 0 0 0 0 +5.262 -43.149 -0.137 0 0 0 0 0 0 0 +5.332 -42.613 -0.133 0 0 0 0 0 0 0 +5.441 -42.397 -0.131 0 0 0 0 0 0 0 +5.578 -42.412 -0.131 0 0 0 0 0 0 0 +5.733 -42.553 -0.133 0 0 0 0 0 0 0 +5.824 -42.223 -0.13 0 0 0 0 0 0 0 +5.848 -41.909 -0.128 0 0 0 0 0 0 0 +5.99 -41.964 -0.128 0 0 0 0 0 0 0 +5.869 -40.205 -0.114 0 0 0 0 0 0 0 +5.985 -40.117 -0.114 0 0 0 0 0 0 0 +5.176 -33.937 -0.065 0 0 0 0 0 0 0 +5.264 -33.8 -0.064 0 0 0 0 0 0 0 +5.341 -33.601 -0.062 0 0 0 0 0 0 0 +5.358 -33.37 -0.061 0 0 0 0 0 0 0 +5.485 -33.489 -0.062 0 0 0 0 0 0 0 +5.545 -33.201 -0.059 0 0 0 0 0 0 0 +5.628 -33.056 -0.058 0 0 0 0 0 0 0 +5.711 -32.919 -0.057 0 0 0 0 0 0 0 +5.773 -32.661 -0.056 0 0 0 0 0 0 0 +5.825 -32.365 -0.053 0 0 0 0 0 0 0 +5.89 -32.433 -0.054 0 0 0 0 0 0 0 +6.013 -32.528 -0.055 0 0 0 0 0 0 0 +6 -31.896 -0.05 0 0 0 0 0 0 0 +4.378 -22.84 0.023 0 0 0 0 0 0 0 +4.438 -22.763 0.023 0 0 0 0 0 0 0 +4.507 -22.735 0.023 0 0 0 0 0 0 0 +4.583 -22.746 0.023 0 0 0 0 0 0 0 +4.681 -23.047 0.021 0 0 0 0 0 0 0 +4.767 -23.099 0.02 0 0 0 0 0 0 0 +6.77 -32.34 -0.055 0 0 0 0 0 0 0 +6.936 -32.622 -0.057 0 0 0 0 0 0 0 +7.023 -32.528 -0.056 0 0 0 0 0 0 0 +7.091 -32.351 -0.055 0 0 0 0 0 0 0 +7.139 -32.087 -0.053 0 0 0 0 0 0 0 +7.117 -31.751 -0.051 0 0 0 0 0 0 0 +7.162 -31.489 -0.049 0 0 0 0 0 0 0 +7.204 -31.217 -0.047 0 0 0 0 0 0 0 +7.245 -30.951 -0.045 0 0 0 0 0 0 0 +7.282 -30.671 -0.043 0 0 0 0 0 0 0 +7.32 -30.405 -0.041 0 0 0 0 0 0 0 +7.363 -30.166 -0.039 0 0 0 0 0 0 0 +7.342 -29.876 -0.037 0 0 0 0 0 0 0 +7.441 -29.873 -0.037 0 0 0 0 0 0 0 +7.54 -29.87 -0.037 0 0 0 0 0 0 0 +7.631 -29.837 -0.037 0 0 0 0 0 0 0 +7.696 -29.7 -0.036 0 0 0 0 0 0 0 +7.711 -29.378 -0.034 0 0 0 0 0 0 0 +7.555 -28.418 -0.026 0 0 0 0 0 0 0 +7.559 -28.252 -0.025 0 0 0 0 0 0 0 +7.595 -28.035 -0.023 0 0 0 0 0 0 0 +7.628 -27.808 -0.021 0 0 0 0 0 0 0 +7.663 -27.593 -0.02 0 0 0 0 0 0 0 +7.695 -27.376 -0.018 0 0 0 0 0 0 0 +7.733 -27.181 -0.017 0 0 0 0 0 0 0 +7.764 -26.966 -0.015 0 0 0 0 0 0 0 +7.743 -26.735 -0.013 0 0 0 0 0 0 0 +7.799 -26.614 -0.013 0 0 0 0 0 0 0 +7.833 -26.425 -0.011 0 0 0 0 0 0 0 +7.867 -26.235 -0.01 0 0 0 0 0 0 0 +7.896 -26.034 -0.009 0 0 0 0 0 0 0 +7.921 -25.822 -0.007 0 0 0 0 0 0 0 +7.927 -25.556 -0.005 0 0 0 0 0 0 0 +7.913 -25.368 -0.004 0 0 0 0 0 0 0 +7.951 -25.209 -0.002 0 0 0 0 0 0 0 +7.98 -25.026 -0.001 0 0 0 0 0 0 0 +8.007 -24.843 0 0 0 0 0 0 0 0 +8.036 -24.665 0.001 0 0 0 0 0 0 0 +8.065 -24.494 0.003 0 0 0 0 0 0 0 +8.089 -24.307 0.004 0 0 0 0 0 0 0 +8.076 -24.141 0.005 0 0 0 0 0 0 0 +8.13 -24.051 0.006 0 0 0 0 0 0 0 +8.156 -23.881 0.007 0 0 0 0 0 0 0 +8.174 -23.689 0.008 0 0 0 0 0 0 0 +8.21 -23.552 0.009 0 0 0 0 0 0 0 +3.716 -10.51 0.118 0 0 0 0 0 0 0 +3.742 -10.48 0.118 0 0 0 0 0 0 0 +3.764 -10.487 0.118 0 0 0 0 0 0 0 +8.273 -22.693 0.016 0 0 0 0 0 0 0 +8.299 -22.544 0.017 0 0 0 0 0 0 0 +8.323 -22.391 0.018 0 0 0 0 0 0 0 +8.347 -22.241 0.019 0 0 0 0 0 0 0 +8.276 -21.842 0.022 0 0 0 0 0 0 0 +8.332 -21.885 0.021 0 0 0 0 0 0 0 +8.268 -21.513 0.024 0 0 0 0 0 0 0 +8.29 -21.37 0.025 0 0 0 0 0 0 0 +8.314 -21.232 0.026 0 0 0 0 0 0 0 +8.336 -21.092 0.027 0 0 0 0 0 0 0 +8.335 -20.899 0.029 0 0 0 0 0 0 0 +8.37 -20.796 0.029 0 0 0 0 0 0 0 +8.375 -20.713 0.03 0 0 0 0 0 0 0 +8.394 -20.575 0.031 0 0 0 0 0 0 0 +8.415 -20.441 0.032 0 0 0 0 0 0 0 +8.435 -20.308 0.033 0 0 0 0 0 0 0 +8.456 -20.179 0.033 0 0 0 0 0 0 0 +8.484 -20.068 0.034 0 0 0 0 0 0 0 +8.476 -19.876 0.036 0 0 0 0 0 0 0 +8.463 -19.757 0.037 0 0 0 0 0 0 0 +8.492 -19.654 0.037 0 0 0 0 0 0 0 +8.529 -19.57 0.038 0 0 0 0 0 0 0 +8.548 -19.448 0.038 0 0 0 0 0 0 0 +8.569 -19.329 0.039 0 0 0 0 0 0 0 +8.584 -19.2 0.04 0 0 0 0 0 0 0 +8.606 -19.087 0.041 0 0 0 0 0 0 0 +8.6 -18.993 0.042 0 0 0 0 0 0 0 +8.615 -18.868 0.042 0 0 0 0 0 0 0 +8.605 -18.69 0.044 0 0 0 0 0 0 0 +8.627 -18.585 0.044 0 0 0 0 0 0 0 +8.66 -18.503 0.045 0 0 0 0 0 0 0 +8.683 -18.402 0.046 0 0 0 0 0 0 0 +8.701 -18.29 0.046 0 0 0 0 0 0 0 +8.688 -18.189 0.047 0 0 0 0 0 0 0 +8.706 -18.081 0.048 0 0 0 0 0 0 0 +8.733 -17.99 0.048 0 0 0 0 0 0 0 +8.796 -17.977 0.048 0 0 0 0 0 0 0 +8.807 -17.856 0.049 0 0 0 0 0 0 0 +8.92 -17.945 0.048 0 0 0 0 0 0 0 +8.931 -17.825 0.049 0 0 0 0 0 0 0 +8.928 -17.749 0.049 0 0 0 0 0 0 0 +8.935 -17.624 0.05 0 0 0 0 0 0 0 +8.918 -17.455 0.051 0 0 0 0 0 0 0 +8.938 -17.358 0.052 0 0 0 0 0 0 0 +8.977 -17.299 0.052 0 0 0 0 0 0 0 +8.997 -17.205 0.053 0 0 0 0 0 0 0 +9.013 -17.106 0.054 0 0 0 0 0 0 0 +9.002 -17.02 0.054 0 0 0 0 0 0 0 +9.017 -16.919 0.055 0 0 0 0 0 0 0 +9.036 -16.827 0.055 0 0 0 0 0 0 0 +9.049 -16.725 0.056 0 0 0 0 0 0 0 +9.063 -16.626 0.057 0 0 0 0 0 0 0 +9.082 -16.536 0.057 0 0 0 0 0 0 0 +9.093 -16.434 0.058 0 0 0 0 0 0 0 +9.084 -16.356 0.058 0 0 0 0 0 0 0 +9.097 -16.258 0.059 0 0 0 0 0 0 0 +9.092 -16.13 0.06 0 0 0 0 0 0 0 +9.119 -16.059 0.06 0 0 0 0 0 0 0 +9.156 -16.008 0.061 0 0 0 0 0 0 0 +9.171 -15.917 0.061 0 0 0 0 0 0 0 +9.185 -15.826 0.062 0 0 0 0 0 0 0 +9.183 -15.766 0.062 0 0 0 0 0 0 0 +9.184 -15.654 0.063 0 0 0 0 0 0 0 +9.177 -15.529 0.064 0 0 0 0 0 0 0 +9.198 -15.454 0.064 0 0 0 0 0 0 0 +9.24 -15.414 0.064 0 0 0 0 0 0 0 +9.293 -15.392 0.064 0 0 0 0 0 0 0 +9.37 -15.411 0.064 0 0 0 0 0 0 0 +9.418 -15.435 0.063 0 0 0 0 0 0 0 +9.461 -15.397 0.063 0 0 0 0 0 0 0 +7.174 -11.5 0.099 0 0 0 0 0 0 0 +7.124 -11.26 0.101 0 0 0 0 0 0 0 +7.212 -11.322 0.1 0 0 0 0 0 0 0 +7.183 -11.198 0.101 0 0 0 0 0 0 0 +7.228 -11.152 0.101 0 0 0 0 0 0 0 +7.257 -11.119 0.101 0 0 0 0 0 0 0 +7.289 -11.091 0.101 0 0 0 0 0 0 0 +7.316 -11.057 0.101 0 0 0 0 0 0 0 +7.346 -11.027 0.102 0 0 0 0 0 0 0 +7.369 -10.987 0.102 0 0 0 0 0 0 0 +7.391 -10.982 0.102 0 0 0 0 0 0 0 +7.419 -10.949 0.102 0 0 0 0 0 0 0 +7.445 -10.914 0.102 0 0 0 0 0 0 0 +7.476 -10.886 0.102 0 0 0 0 0 0 0 +7.507 -10.857 0.102 0 0 0 0 0 0 0 +7.537 -10.827 0.102 0 0 0 0 0 0 0 +7.548 -10.807 0.102 0 0 0 0 0 0 0 +7.579 -10.78 0.102 0 0 0 0 0 0 0 +7.61 -10.751 0.102 0 0 0 0 0 0 0 +7.635 -10.716 0.102 0 0 0 0 0 0 0 +7.695 -10.728 0.102 0 0 0 0 0 0 0 +7.835 -10.851 0.1 0 0 0 0 0 0 0 +9.523 -13.112 0.078 0 0 0 0 0 0 0 +9.512 -13.054 0.079 0 0 0 0 0 0 0 +9.527 -12.988 0.079 0 0 0 0 0 0 0 +9.535 -12.913 0.079 0 0 0 0 0 0 0 +9.543 -12.84 0.08 0 0 0 0 0 0 0 +9.558 -12.776 0.08 0 0 0 0 0 0 0 +9.573 -12.712 0.081 0 0 0 0 0 0 0 +9.583 -12.642 0.081 0 0 0 0 0 0 0 +9.57 -12.584 0.081 0 0 0 0 0 0 0 +9.585 -12.522 0.082 0 0 0 0 0 0 0 +9.593 -12.451 0.082 0 0 0 0 0 0 0 +9.605 -12.386 0.082 0 0 0 0 0 0 0 +9.618 -12.322 0.083 0 0 0 0 0 0 0 +9.63 -12.258 0.083 0 0 0 0 0 0 0 +9.62 -12.166 0.084 0 0 0 0 0 0 0 +9.624 -12.093 0.084 0 0 0 0 0 0 0 +9.622 -12.052 0.084 0 0 0 0 0 0 0 +9.644 -12.001 0.085 0 0 0 0 0 0 0 +9.68 -11.969 0.085 0 0 0 0 0 0 0 +9.688 -11.901 0.085 0 0 0 0 0 0 0 +9.697 -11.837 0.085 0 0 0 0 0 0 0 +9.711 -11.778 0.086 0 0 0 0 0 0 0 +9.716 -11.709 0.086 0 0 0 0 0 0 0 +9.714 -11.669 0.086 0 0 0 0 0 0 0 +9.723 -11.605 0.087 0 0 0 0 0 0 0 +9.732 -11.542 0.087 0 0 0 0 0 0 0 +9.74 -11.478 0.087 0 0 0 0 0 0 0 +9.601 -11.242 0.089 0 0 0 0 0 0 0 +9.609 -11.18 0.09 0 0 0 0 0 0 0 +9.619 -11.121 0.09 0 0 0 0 0 0 0 +9.608 -11.072 0.09 0 0 0 0 0 0 0 +9.62 -11.016 0.091 0 0 0 0 0 0 0 +9.63 -10.958 0.091 0 0 0 0 0 0 0 +9.639 -10.899 0.091 0 0 0 0 0 0 0 +9.646 -10.837 0.092 0 0 0 0 0 0 0 +9.652 -10.775 0.092 0 0 0 0 0 0 0 +9.634 -10.721 0.092 0 0 0 0 0 0 0 +9.642 -10.663 0.093 0 0 0 0 0 0 0 +9.655 -10.61 0.093 0 0 0 0 0 0 0 +9.686 -10.577 0.093 0 0 0 0 0 0 0 +9.707 -10.533 0.093 0 0 0 0 0 0 0 +9.711 -10.472 0.093 0 0 0 0 0 0 0 +9.716 -10.411 0.094 0 0 0 0 0 0 0 +9.724 -10.354 0.094 0 0 0 0 0 0 0 +9.719 -10.316 0.094 0 0 0 0 0 0 0 +9.726 -10.258 0.095 0 0 0 0 0 0 0 +9.737 -10.206 0.095 0 0 0 0 0 0 0 +9.742 -10.146 0.095 0 0 0 0 0 0 0 +9.753 -10.094 0.095 0 0 0 0 0 0 0 +9.759 -10.038 0.096 0 0 0 0 0 0 0 +9.773 -9.988 0.096 0 0 0 0 0 0 0 +9.767 -9.951 0.096 0 0 0 0 0 0 0 +9.775 -9.896 0.096 0 0 0 0 0 0 0 +9.78 -9.84 0.097 0 0 0 0 0 0 0 +9.793 -9.791 0.097 0 0 0 0 0 0 0 +9.802 -9.739 0.097 0 0 0 0 0 0 0 +9.809 -9.684 0.097 0 0 0 0 0 0 0 +9.822 -9.636 0.098 0 0 0 0 0 0 0 +9.804 -9.589 0.098 0 0 0 0 0 0 0 +9.813 -9.537 0.098 0 0 0 0 0 0 0 +9.828 -9.492 0.098 0 0 0 0 0 0 0 +9.832 -9.436 0.099 0 0 0 0 0 0 0 +9.84 -9.385 0.099 0 0 0 0 0 0 0 +9.844 -9.329 0.099 0 0 0 0 0 0 0 +9.854 -9.28 0.099 0 0 0 0 0 0 0 +9.847 -9.244 0.1 0 0 0 0 0 0 0 +9.858 -9.197 0.1 0 0 0 0 0 0 0 +9.867 -9.146 0.1 0 0 0 0 0 0 0 +9.867 -9.09 0.1 0 0 0 0 0 0 0 +9.862 -9.027 0.101 0 0 0 0 0 0 0 +9.862 -8.971 0.101 0 0 0 0 0 0 0 +9.866 -8.946 0.101 0 0 0 0 0 0 0 +9.885 -8.907 0.101 0 0 0 0 0 0 0 +9.889 -8.854 0.101 0 0 0 0 0 0 0 +9.905 -8.813 0.101 0 0 0 0 0 0 0 +9.907 -8.759 0.102 0 0 0 0 0 0 0 +9.918 -8.713 0.102 0 0 0 0 0 0 0 +9.923 -8.662 0.102 0 0 0 0 0 0 0 +9.934 -8.616 0.102 0 0 0 0 0 0 0 +9.923 -8.58 0.103 0 0 0 0 0 0 0 +9.932 -8.533 0.103 0 0 0 0 0 0 0 +9.943 -8.489 0.103 0 0 0 0 0 0 0 +9.944 -8.435 0.103 0 0 0 0 0 0 0 +9.955 -8.391 0.103 0 0 0 0 0 0 0 +9.977 -8.356 0.103 0 0 0 0 0 0 0 +10.005 -8.326 0.103 0 0 0 0 0 0 0 +10.008 -8.302 0.103 0 0 0 0 0 0 0 +10.03 -8.267 0.104 0 0 0 0 0 0 0 +10.06 -8.239 0.103 0 0 0 0 0 0 0 +10.08 -8.203 0.104 0 0 0 0 0 0 0 +10.087 -8.156 0.104 0 0 0 0 0 0 0 +10.11 -8.122 0.104 0 0 0 0 0 0 0 +10.138 -8.092 0.104 0 0 0 0 0 0 0 +10.143 -8.07 0.104 0 0 0 0 0 0 0 +10.2 -8.063 0.103 0 0 0 0 0 0 0 +10.219 -8.026 0.104 0 0 0 0 0 0 0 +10.238 -7.989 0.104 0 0 0 0 0 0 0 +10.258 -7.953 0.104 0 0 0 0 0 0 0 +10.28 -7.918 0.104 0 0 0 0 0 0 0 +10.297 -7.88 0.104 0 0 0 0 0 0 0 +10.304 -7.86 0.104 0 0 0 0 0 0 0 +10.332 -7.83 0.104 0 0 0 0 0 0 0 +10.358 -7.799 0.104 0 0 0 0 0 0 0 +10.375 -7.76 0.104 0 0 0 0 0 0 0 +10.397 -7.726 0.104 0 0 0 0 0 0 0 +10.423 -7.695 0.104 0 0 0 0 0 0 0 +10.444 -7.66 0.104 0 0 0 0 0 0 0 +10.448 -7.637 0.104 0 0 0 0 0 0 0 +10.478 -7.609 0.104 0 0 0 0 0 0 0 +10.497 -7.573 0.104 0 0 0 0 0 0 0 +10.526 -7.543 0.104 0 0 0 0 0 0 0 +10.542 -7.504 0.104 0 0 0 0 0 0 0 +10.563 -7.47 0.104 0 0 0 0 0 0 0 +10.587 -7.437 0.104 0 0 0 0 0 0 0 +10.598 -7.42 0.104 0 0 0 0 0 0 0 +10.62 -7.386 0.104 0 0 0 0 0 0 0 +10.647 -7.355 0.104 0 0 0 0 0 0 0 +10.67 -7.321 0.104 0 0 0 0 0 0 0 +10.689 -7.285 0.104 0 0 0 0 0 0 0 +10.714 -7.253 0.104 0 0 0 0 0 0 0 +10.735 -7.218 0.104 0 0 0 0 0 0 0 +10.743 -7.199 0.104 0 0 0 0 0 0 0 +10.77 -7.169 0.104 0 0 0 0 0 0 0 +10.781 -7.127 0.104 0 0 0 0 0 0 0 +10.834 -7.113 0.104 0 0 0 0 0 0 0 +10.837 -7.067 0.104 0 0 0 0 0 0 0 +10.828 -7.012 0.104 0 0 0 0 0 0 0 +10.851 -6.979 0.104 0 0 0 0 0 0 0 +10.862 -6.962 0.104 0 0 0 0 0 0 0 +10.881 -6.926 0.104 0 0 0 0 0 0 0 +10.916 -6.9 0.104 0 0 0 0 0 0 0 +10.946 -6.871 0.104 0 0 0 0 0 0 0 +10.968 -6.836 0.104 0 0 0 0 0 0 0 +10.991 -6.803 0.104 0 0 0 0 0 0 0 +11.01 -6.767 0.104 0 0 0 0 0 0 0 +11.021 -6.75 0.104 0 0 0 0 0 0 0 +11.046 -6.718 0.104 0 0 0 0 0 0 0 +11.101 -6.704 0.104 0 0 0 0 0 0 0 +11.151 -6.686 0.103 0 0 0 0 0 0 0 +11.199 -6.668 0.103 0 0 0 0 0 0 0 +11.249 -6.65 0.103 0 0 0 0 0 0 0 +11.298 -6.631 0.103 0 0 0 0 0 0 0 +11.338 -6.63 0.102 0 0 0 0 0 0 0 +11.396 -6.617 0.102 0 0 0 0 0 0 0 +11.441 -6.595 0.102 0 0 0 0 0 0 0 +11.488 -6.574 0.102 0 0 0 0 0 0 0 +11.55 -6.561 0.101 0 0 0 0 0 0 0 +11.571 -6.525 0.101 0 0 0 0 0 0 0 +11.624 -6.507 0.101 0 0 0 0 0 0 0 +11.666 -6.507 0.101 0 0 0 0 0 0 0 +11.783 -6.523 0.1 0 0 0 0 0 0 0 +11.808 -6.489 0.1 0 0 0 0 0 0 0 +11.862 -6.47 0.099 0 0 0 0 0 0 0 +11.917 -6.452 0.099 0 0 0 0 0 0 0 +11.978 -6.437 0.099 0 0 0 0 0 0 0 +12.032 -6.417 0.098 0 0 0 0 0 0 0 +12.082 -6.42 0.098 0 0 0 0 0 0 0 +12.138 -6.4 0.098 0 0 0 0 0 0 0 +12.184 -6.376 0.098 0 0 0 0 0 0 0 +12.256 -6.365 0.097 0 0 0 0 0 0 0 +8.772 -4.512 0.128 0 0 0 0 0 0 0 +8.795 -4.489 0.128 0 0 0 0 0 0 0 +12.462 -6.299 0.096 0 0 0 0 0 0 0 +12.519 -6.279 0.096 0 0 0 0 0 0 0 +12.578 -6.259 0.095 0 0 0 0 0 0 0 +12.629 -6.235 0.095 0 0 0 0 0 0 0 +12.7 -6.221 0.094 0 0 0 0 0 0 0 +12.759 -6.2 0.094 0 0 0 0 0 0 0 +12.82 -6.18 0.094 0 0 0 0 0 0 0 +12.869 -6.179 0.093 0 0 0 0 0 0 0 +12.927 -6.157 0.093 0 0 0 0 0 0 0 +12.991 -6.138 0.093 0 0 0 0 0 0 0 +13.048 -6.115 0.092 0 0 0 0 0 0 0 +13.113 -6.095 0.092 0 0 0 0 0 0 0 +13.168 -6.07 0.092 0 0 0 0 0 0 0 +13.192 -6.031 0.092 0 0 0 0 0 0 0 +13.247 -6.031 0.091 0 0 0 0 0 0 0 +13.339 -6.023 0.091 0 0 0 0 0 0 0 +13.409 -6.004 0.09 0 0 0 0 0 0 0 +13.472 -5.981 0.09 0 0 0 0 0 0 0 +13.532 -5.958 0.089 0 0 0 0 0 0 0 +13.591 -5.933 0.089 0 0 0 0 0 0 0 +13.663 -5.913 0.089 0 0 0 0 0 0 0 +13.729 -5.916 0.088 0 0 0 0 0 0 0 +13.785 -5.889 0.088 0 0 0 0 0 0 0 +13.89 -5.882 0.087 0 0 0 0 0 0 0 +14.037 -5.893 0.086 0 0 0 0 0 0 0 +14.129 -5.88 0.085 0 0 0 0 0 0 0 +14.19 -5.853 0.085 0 0 0 0 0 0 0 +14.236 -5.82 0.085 0 0 0 0 0 0 0 +14.277 -5.81 0.084 0 0 0 0 0 0 0 +14.33 -5.78 0.084 0 0 0 0 0 0 0 +14.363 -5.741 0.084 0 0 0 0 0 0 0 +14.427 -5.714 0.084 0 0 0 0 0 0 0 +14.468 -5.677 0.083 0 0 0 0 0 0 0 +14.525 -5.647 0.083 0 0 0 0 0 0 0 +14.572 -5.613 0.083 0 0 0 0 0 0 0 +14.616 -5.604 0.083 0 0 0 0 0 0 0 +14.647 -5.563 0.082 0 0 0 0 0 0 0 +14.659 -5.515 0.083 0 0 0 0 0 0 0 +14.71 -5.481 0.082 0 0 0 0 0 0 0 +14.753 -5.445 0.082 0 0 0 0 0 0 0 +14.813 -5.414 0.082 0 0 0 0 0 0 0 +14.926 -5.403 0.081 0 0 0 0 0 0 0 +14.97 -5.392 0.081 0 0 0 0 0 0 0 +15.017 -5.356 0.08 0 0 0 0 0 0 0 +15.07 -5.321 0.08 0 0 0 0 0 0 0 +15.119 -5.285 0.08 0 0 0 0 0 0 0 +15.186 -5.255 0.079 0 0 0 0 0 0 0 +15.208 -5.21 0.079 0 0 0 0 0 0 0 +15.234 -5.165 0.079 0 0 0 0 0 0 0 +15.288 -5.13 0.079 0 0 0 0 0 0 0 +15.328 -5.117 0.079 0 0 0 0 0 0 0 +15.38 -5.081 0.078 0 0 0 0 0 0 0 +15.434 -5.045 0.078 0 0 0 0 0 0 0 +15.553 -5.03 0.077 0 0 0 0 0 0 0 +15.595 -4.989 0.077 0 0 0 0 0 0 0 +15.662 -4.957 0.076 0 0 0 0 0 0 0 +15.714 -4.919 0.076 0 0 0 0 0 0 0 +15.769 -4.909 0.076 0 0 0 0 0 0 0 +15.804 -4.865 0.076 0 0 0 0 0 0 0 +15.84 -4.822 0.075 0 0 0 0 0 0 0 +15.723 -4.732 0.077 0 0 0 0 0 0 0 +15.644 -4.655 0.077 0 0 0 0 0 0 0 +15.601 -4.589 0.078 0 0 0 0 0 0 0 +15.56 -4.55 0.078 0 0 0 0 0 0 0 +15.542 -4.492 0.078 0 0 0 0 0 0 0 +15.51 -4.43 0.079 0 0 0 0 0 0 0 +15.55 -4.389 0.079 0 0 0 0 0 0 0 +15.606 -4.352 0.078 0 0 0 0 0 0 0 +15.664 -4.315 0.078 0 0 0 0 0 0 0 +15.724 -4.278 0.078 0 0 0 0 0 0 0 +15.778 -4.24 0.077 0 0 0 0 0 0 0 +15.839 -4.229 0.077 0 0 0 0 0 0 0 +15.885 -4.188 0.076 0 0 0 0 0 0 0 +15.944 -4.151 0.076 0 0 0 0 0 0 0 +15.998 -4.111 0.076 0 0 0 0 0 0 0 +16.061 -4.074 0.075 0 0 0 0 0 0 0 +16.124 -4.036 0.075 0 0 0 0 0 0 0 +16.176 -3.995 0.075 0 0 0 0 0 0 0 +16.242 -3.984 0.074 0 0 0 0 0 0 0 +16.295 -3.943 0.074 0 0 0 0 0 0 0 +16.354 -3.903 0.073 0 0 0 0 0 0 0 +16.417 -3.864 0.073 0 0 0 0 0 0 0 +16.488 -3.826 0.073 0 0 0 0 0 0 0 +16.541 -3.783 0.072 0 0 0 0 0 0 0 +16.595 -3.741 0.072 0 0 0 0 0 0 0 +16.656 -3.727 0.071 0 0 0 0 0 0 0 +16.71 -3.685 0.071 0 0 0 0 0 0 0 +16.78 -3.645 0.071 0 0 0 0 0 0 0 +16.833 -3.601 0.07 0 0 0 0 0 0 0 +16.903 -3.561 0.07 0 0 0 0 0 0 0 +16.965 -3.518 0.069 0 0 0 0 0 0 0 +17.027 -3.475 0.069 0 0 0 0 0 0 0 +17.085 -3.459 0.069 0 0 0 0 0 0 0 +17.151 -3.417 0.068 0 0 0 0 0 0 0 +17.22 -3.374 0.068 0 0 0 0 0 0 0 +17.278 -3.329 0.067 0 0 0 0 0 0 0 +17.337 -3.285 0.067 0 0 0 0 0 0 0 +17.438 -3.247 0.066 0 0 0 0 0 0 0 +17.605 -3.221 0.065 0 0 0 0 0 0 0 +13.672 -2.473 0.096 0 0 0 0 0 0 0 +13.64 -2.423 0.097 0 0 0 0 0 0 0 +13.624 -2.376 0.097 0 0 0 0 0 0 0 +13.606 -2.329 0.097 0 0 0 0 0 0 0 +13.603 -2.285 0.097 0 0 0 0 0 0 0 +13.605 -2.241 0.097 0 0 0 0 0 0 0 +13.623 -2.2 0.097 0 0 0 0 0 0 0 +13.623 -2.178 0.097 0 0 0 0 0 0 0 +13.655 -2.139 0.097 0 0 0 0 0 0 0 +13.676 -2.099 0.097 0 0 0 0 0 0 0 +13.712 -2.06 0.097 0 0 0 0 0 0 0 +13.746 -2.021 0.096 0 0 0 0 0 0 0 +13.81 -1.986 0.096 0 0 0 0 0 0 0 +13.917 -1.957 0.095 0 0 0 0 0 0 0 +19.33 -2.698 0.052 0 0 0 0 0 0 0 +19.394 -2.645 0.052 0 0 0 0 0 0 0 +19.48 -2.594 0.051 0 0 0 0 0 0 0 +19.547 -2.541 0.051 0 0 0 0 0 0 0 +19.458 -2.467 0.051 0 0 0 0 0 0 0 +19.446 -2.403 0.051 0 0 0 0 0 0 0 +19.564 -2.356 0.051 0 0 0 0 0 0 0 +19.57 -2.325 0.051 0 0 0 0 0 0 0 +19.627 -2.27 0.05 0 0 0 0 0 0 0 +19.68 -2.213 0.05 0 0 0 0 0 0 0 +19.732 -2.156 0.049 0 0 0 0 0 0 0 +19.773 -2.098 0.049 0 0 0 0 0 0 0 +19.829 -2.041 0.049 0 0 0 0 0 0 0 +19.871 -1.982 0.049 0 0 0 0 0 0 0 +19.928 -1.957 0.048 0 0 0 0 0 0 0 +19.972 -1.898 0.048 0 0 0 0 0 0 0 +20.011 -1.838 0.048 0 0 0 0 0 0 0 +20.073 -1.78 0.047 0 0 0 0 0 0 0 +20.584 -1.761 0.043 0 0 0 0 0 0 0 +20.644 -1.701 0.043 0 0 0 0 0 0 0 +20.693 -1.64 0.042 0 0 0 0 0 0 0 +20.749 -1.611 0.042 0 0 0 0 0 0 0 +20.818 -1.551 0.041 0 0 0 0 0 0 0 +20.984 -1.497 0.04 0 0 0 0 0 0 0 +21.234 -1.448 0.038 0 0 0 0 0 0 0 +21.053 -1.369 0.04 0 0 0 0 0 0 0 +21.131 -1.308 0.039 0 0 0 0 0 0 0 +21.389 -1.223 0.037 0 0 0 0 0 0 0 +21.564 -1.165 0.036 0 0 0 0 0 0 0 +21.775 -1.108 0.034 0 0 0 0 0 0 0 +21.545 -1.028 0.036 0 0 0 0 0 0 0 +21.203 -0.945 0.039 0 0 0 0 0 0 0 +21.239 -0.88 0.038 0 0 0 0 0 0 0 +21.224 -0.812 0.039 0 0 0 0 0 0 0 +21.147 -0.776 0.039 0 0 0 0 0 0 0 +21.122 -0.709 0.039 0 0 0 0 0 0 0 +21.138 -0.643 0.039 0 0 0 0 0 0 0 +21.186 -0.578 0.039 0 0 0 0 0 0 0 +21.277 -0.513 0.038 0 0 0 0 0 0 0 +21.329 -0.448 0.038 0 0 0 0 0 0 0 +21.388 -0.382 0.037 0 0 0 0 0 0 0 +21.455 -0.349 0.037 0 0 0 0 0 0 0 +21.512 -0.283 0.036 0 0 0 0 0 0 0 +21.569 -0.216 0.036 0 0 0 0 0 0 0 +21.625 -0.148 0.035 0 0 0 0 0 0 0 +21.931 -0.082 0.033 0 0 0 0 0 0 0 +35.767 -0.038 -0.076 0 0 0 0 0 0 0 +35.719 0.026 -0.295 0 0 0 0 0 0 0 +35.533 0.137 -0.293 0 0 0 0 0 0 0 +35.338 0.247 -0.29 0 0 0 0 0 0 0 +35.404 0.303 -0.291 0 0 0 0 0 0 0 +35.256 0.413 -0.289 0 0 0 0 0 0 0 +35.089 0.631 -0.286 0 0 0 0 0 0 0 +34.841 0.736 -0.283 0 0 0 0 0 0 0 +34.619 0.84 -0.28 0 0 0 0 0 0 0 +34.426 0.943 -0.277 0 0 0 0 0 0 0 +33.55 1.183 -0.265 0 0 0 0 0 0 0 +33.729 1.507 -0.268 0 0 0 0 0 0 0 +33.479 1.601 -0.264 0 0 0 0 0 0 0 +33.482 1.707 -0.264 0 0 0 0 0 0 0 +25.706 1.507 -0.155 0 0 0 0 0 0 0 +25.559 1.579 -0.153 0 0 0 0 0 0 0 +33.751 2.573 -0.269 0 0 0 0 0 0 0 +33.803 2.684 -0.27 0 0 0 0 0 0 0 +33.868 2.796 -0.271 0 0 0 0 0 0 0 +33.99 2.914 -0.273 0 0 0 0 0 0 0 +18.686 1.738 -0.057 0 0 0 0 0 0 0 +18.656 1.794 -0.057 0 0 0 0 0 0 0 +18.684 1.856 -0.058 0 0 0 0 0 0 0 +60.758 6.288 -0.651 0 0 0 0 0 0 0 +60.865 6.492 -0.652 0 0 0 0 0 0 0 +60.968 6.697 -0.654 0 0 0 0 0 0 0 +61.081 6.904 -0.656 0 0 0 0 0 0 0 +61.184 7.013 -0.658 0 0 0 0 0 0 0 +61.29 7.22 -0.66 0 0 0 0 0 0 0 +61.406 7.43 -0.662 0 0 0 0 0 0 0 +61.224 7.603 -0.659 0 0 0 0 0 0 0 +61.226 7.799 -0.66 0 0 0 0 0 0 0 +24.899 3.235 -0.146 0 0 0 0 0 0 0 +61.419 8.216 -0.663 0 0 0 0 0 0 0 +61.501 8.325 -0.664 0 0 0 0 0 0 0 +61.625 8.539 -0.667 0 0 0 0 0 0 0 +61.707 8.748 -0.668 0 0 0 0 0 0 0 +46.827 6.783 -0.458 0 0 0 0 0 0 0 +43.86 6.492 -0.416 0 0 0 0 0 0 0 +20.893 3.146 -0.091 0 0 0 0 0 0 0 +20.879 3.211 -0.091 0 0 0 0 0 0 0 +43.32 6.76 -0.409 0 0 0 0 0 0 0 +42.984 6.846 -0.405 0 0 0 0 0 0 0 +42.777 6.95 -0.402 0 0 0 0 0 0 0 +42.578 7.055 -0.399 0 0 0 0 0 0 0 +42.388 7.16 -0.397 0 0 0 0 0 0 0 +42.282 7.279 -0.396 0 0 0 0 0 0 0 +42.271 7.414 -0.396 0 0 0 0 0 0 0 +42.234 7.476 -0.396 0 0 0 0 0 0 0 +41.991 7.569 -0.393 0 0 0 0 0 0 0 +41.623 7.638 -0.388 0 0 0 0 0 0 0 +41.599 7.768 -0.388 0 0 0 0 0 0 0 +41.539 7.892 -0.387 0 0 0 0 0 0 0 +41.208 7.963 -0.383 0 0 0 0 0 0 0 +18.59 3.669 -0.06 0 0 0 0 0 0 0 +18.666 3.745 -0.061 0 0 0 0 0 0 0 +40.35 8.258 -0.372 0 0 0 0 0 0 0 +40.285 8.377 -0.371 0 0 0 0 0 0 0 +41.191 8.701 -0.385 0 0 0 0 0 0 0 +41.211 8.841 -0.385 0 0 0 0 0 0 0 +41.083 8.948 -0.384 0 0 0 0 0 0 0 +41.168 9.035 -0.385 0 0 0 0 0 0 0 +39.871 9.408 -0.369 0 0 0 0 0 0 0 +39.762 9.514 -0.368 0 0 0 0 0 0 0 +39.819 9.594 -0.369 0 0 0 0 0 0 0 +39.608 9.675 -0.366 0 0 0 0 0 0 0 +41.937 10.385 -0.4 0 0 0 0 0 0 0 +41.897 10.515 -0.4 0 0 0 0 0 0 0 +41.757 10.619 -0.398 0 0 0 0 0 0 0 +41.869 10.788 -0.401 0 0 0 0 0 0 0 +41.802 10.911 -0.4 0 0 0 0 0 0 0 +41.695 10.953 -0.399 0 0 0 0 0 0 0 +41.415 11.018 -0.395 0 0 0 0 0 0 0 +42.285 11.535 -0.409 0 0 0 0 0 0 0 +42.633 11.919 -0.415 0 0 0 0 0 0 0 +16.163 4.584 -0.03 0 0 0 0 0 0 0 +16.231 4.659 -0.031 0 0 0 0 0 0 0 +17.134 5.036 -0.045 0 0 0 0 0 0 0 +17.152 5.1 -0.045 0 0 0 0 0 0 0 +18.231 5.548 -0.062 0 0 0 0 0 0 0 +18.981 5.94 -0.073 0 0 0 0 0 0 0 +18.078 5.782 -0.06 0 0 0 0 0 0 0 +18.051 5.835 -0.06 0 0 0 0 0 0 0 +18.03 5.891 -0.06 0 0 0 0 0 0 0 +18.01 5.916 -0.06 0 0 0 0 0 0 0 +17.707 6.471 -0.059 0 0 0 0 0 0 0 +17.672 6.521 -0.058 0 0 0 0 0 0 0 +17.638 6.571 -0.058 0 0 0 0 0 0 0 +15.612 5.897 -0.028 0 0 0 0 0 0 0 +15.728 5.998 -0.03 0 0 0 0 0 0 0 +15.888 6.116 -0.033 0 0 0 0 0 0 0 +16.487 6.408 -0.042 0 0 0 0 0 0 0 +17.025 6.679 -0.051 0 0 0 0 0 0 0 +17.647 6.989 -0.06 0 0 0 0 0 0 0 +73.081 29.296 -0.898 0 0 0 0 0 0 0 +73.258 29.5 -0.902 0 0 0 0 0 0 0 +44.539 19.907 -0.478 0 0 0 0 0 0 0 +47.558 21.618 -0.527 0 0 0 0 0 0 0 +41.054 18.814 -0.427 0 0 0 0 0 0 0 +40.915 18.905 -0.426 0 0 0 0 0 0 0 +40.752 18.986 -0.425 0 0 0 0 0 0 0 +40.568 19.055 -0.423 0 0 0 0 0 0 0 +40.471 19.087 -0.422 0 0 0 0 0 0 0 +40.322 19.172 -0.42 0 0 0 0 0 0 0 +40.159 19.249 -0.419 0 0 0 0 0 0 0 +40.156 19.403 -0.42 0 0 0 0 0 0 0 +40.106 19.534 -0.42 0 0 0 0 0 0 0 +41.657 20.616 -0.446 0 0 0 0 0 0 0 +39.757 19.753 -0.417 0 0 0 0 0 0 0 +39.609 19.834 -0.415 0 0 0 0 0 0 0 +39.244 19.805 -0.411 0 0 0 0 0 0 0 +29.044 14.765 -0.251 0 0 0 0 0 0 0 +38.926 19.953 -0.408 0 0 0 0 0 0 0 +38.778 20.031 -0.406 0 0 0 0 0 0 0 +38.624 20.106 -0.405 0 0 0 0 0 0 0 +38.527 20.132 -0.404 0 0 0 0 0 0 0 +38.393 20.216 -0.403 0 0 0 0 0 0 0 +38.262 20.3 -0.402 0 0 0 0 0 0 0 +38.197 20.42 -0.402 0 0 0 0 0 0 0 +38.322 20.642 -0.405 0 0 0 0 0 0 0 +38.333 20.803 -0.406 0 0 0 0 0 0 0 +38.094 20.829 -0.403 0 0 0 0 0 0 0 +38.134 20.929 -0.404 0 0 0 0 0 0 0 +38.233 21.14 -0.407 0 0 0 0 0 0 0 +38.098 21.222 -0.406 0 0 0 0 0 0 0 +37.62 21.11 -0.399 0 0 0 0 0 0 0 +37.466 21.179 -0.398 0 0 0 0 0 0 0 +37.408 21.301 -0.398 0 0 0 0 0 0 0 +37.546 21.536 -0.401 0 0 0 0 0 0 0 +37.397 21.607 -0.4 0 0 0 0 0 0 0 +37.294 21.626 -0.399 0 0 0 0 0 0 0 +37.143 21.694 -0.397 0 0 0 0 0 0 0 +36.995 21.764 -0.396 0 0 0 0 0 0 0 +36.166 21.429 -0.384 0 0 0 0 0 0 0 +36.039 21.507 -0.383 0 0 0 0 0 0 0 +35.906 21.581 -0.382 0 0 0 0 0 0 0 +35.773 21.654 -0.381 0 0 0 0 0 0 0 +35.67 21.669 -0.379 0 0 0 0 0 0 0 +35.554 21.751 -0.379 0 0 0 0 0 0 0 +35.423 21.824 -0.378 0 0 0 0 0 0 0 +35.291 21.896 -0.377 0 0 0 0 0 0 0 +35.209 21.998 -0.376 0 0 0 0 0 0 0 +35.243 22.174 -0.378 0 0 0 0 0 0 0 +35.294 22.284 -0.38 0 0 0 0 0 0 0 +29.671 18.859 -0.287 0 0 0 0 0 0 0 +29.583 18.934 -0.287 0 0 0 0 0 0 0 +29.53 19.031 -0.287 0 0 0 0 0 0 0 +34.684 22.513 -0.374 0 0 0 0 0 0 0 +34.466 22.526 -0.372 0 0 0 0 0 0 0 +13.068 8.609 -0.014 0 0 0 0 0 0 0 +33.98 22.591 -0.366 0 0 0 0 0 0 0 +33.849 22.657 -0.365 0 0 0 0 0 0 0 +33.732 22.732 -0.365 0 0 0 0 0 0 0 +33.599 22.796 -0.364 0 0 0 0 0 0 0 +33.477 22.868 -0.363 0 0 0 0 0 0 0 +33.397 22.967 -0.363 0 0 0 0 0 0 0 +33.381 23.033 -0.363 0 0 0 0 0 0 0 +33.412 23.21 -0.365 0 0 0 0 0 0 0 +33.407 23.363 -0.366 0 0 0 0 0 0 0 +33.389 23.507 -0.367 0 0 0 0 0 0 0 +33.374 23.653 -0.368 0 0 0 0 0 0 0 +33.461 23.873 -0.371 0 0 0 0 0 0 0 +34.024 24.437 -0.382 0 0 0 0 0 0 0 +33.744 24.397 -0.378 0 0 0 0 0 0 0 +33.858 24.561 -0.381 0 0 0 0 0 0 0 +33.832 24.705 -0.382 0 0 0 0 0 0 0 +33.784 24.832 -0.382 0 0 0 0 0 0 0 +33.741 24.965 -0.383 0 0 0 0 0 0 0 +33.67 25.076 -0.383 0 0 0 0 0 0 0 +33.93 25.437 -0.389 0 0 0 0 0 0 0 +33.86 25.55 -0.389 0 0 0 0 0 0 0 +33.667 25.487 -0.386 0 0 0 0 0 0 0 +33.386 25.44 -0.383 0 0 0 0 0 0 0 +30.871 23.675 -0.34 0 0 0 0 0 0 0 +33.301 25.708 -0.384 0 0 0 0 0 0 0 +17.273 13.493 -0.102 0 0 0 0 0 0 0 +33.249 26.172 -0.388 0 0 0 0 0 0 0 +33.304 26.3 -0.389 0 0 0 0 0 0 0 +33.312 26.477 -0.391 0 0 0 0 0 0 0 +33.283 26.625 -0.392 0 0 0 0 0 0 0 +33.282 26.796 -0.393 0 0 0 0 0 0 0 +33.281 26.968 -0.395 0 0 0 0 0 0 0 +12.192 9.922 -0.015 0 0 0 0 0 0 0 +12.051 9.87 -0.013 0 0 0 0 0 0 0 +6.721 5.507 0.084 0 0 0 0 0 0 0 +6.69 5.517 0.084 0 0 0 0 0 0 0 +6.679 5.543 0.084 0 0 0 0 0 0 0 +6.667 5.569 0.084 0 0 0 0 0 0 0 +11.791 9.938 -0.011 0 0 0 0 0 0 0 +11.767 9.982 -0.011 0 0 0 0 0 0 0 +11.763 10.042 -0.011 0 0 0 0 0 0 0 +11.786 10.093 -0.012 0 0 0 0 0 0 0 +11.981 10.326 -0.016 0 0 0 0 0 0 0 +11.8 10.235 -0.013 0 0 0 0 0 0 0 +33.198 29.041 -0.413 0 0 0 0 0 0 0 +33.207 29.234 -0.415 0 0 0 0 0 0 0 +33.191 29.406 -0.416 0 0 0 0 0 0 0 +33.169 29.573 -0.417 0 0 0 0 0 0 0 +33.191 29.686 -0.419 0 0 0 0 0 0 0 +33.203 29.885 -0.421 0 0 0 0 0 0 0 +33.193 30.066 -0.422 0 0 0 0 0 0 0 +33.161 30.227 -0.423 0 0 0 0 0 0 0 +33.164 30.421 -0.425 0 0 0 0 0 0 0 +33.117 30.57 -0.426 0 0 0 0 0 0 0 +33.058 30.708 -0.427 0 0 0 0 0 0 0 +16.343 15.211 -0.107 0 0 0 0 0 0 0 +16.233 15.205 -0.106 0 0 0 0 0 0 0 +16.145 15.217 -0.105 0 0 0 0 0 0 0 +16.085 15.257 -0.105 0 0 0 0 0 0 0 +16.027 15.298 -0.105 0 0 0 0 0 0 0 +15.998 15.366 -0.105 0 0 0 0 0 0 0 +15.967 15.433 -0.106 0 0 0 0 0 0 0 +15.97 15.484 -0.106 0 0 0 0 0 0 0 +15.898 15.512 -0.106 0 0 0 0 0 0 0 +32.722 32.168 -0.438 0 0 0 0 0 0 0 +32.685 32.334 -0.439 0 0 0 0 0 0 0 +32.641 32.494 -0.44 0 0 0 0 0 0 0 +32.607 32.665 -0.441 0 0 0 0 0 0 0 +32.563 32.826 -0.443 0 0 0 0 0 0 0 +32.582 32.949 -0.444 0 0 0 0 0 0 0 +32.537 33.111 -0.445 0 0 0 0 0 0 0 +32.476 33.257 -0.446 0 0 0 0 0 0 0 +32.465 33.455 -0.448 0 0 0 0 0 0 0 +32.376 33.574 -0.448 0 0 0 0 0 0 0 +32.378 33.789 -0.45 0 0 0 0 0 0 0 +32.342 33.964 -0.452 0 0 0 0 0 0 0 +32.342 34.071 -0.453 0 0 0 0 0 0 0 +32.289 34.23 -0.454 0 0 0 0 0 0 0 +32.269 34.424 -0.456 0 0 0 0 0 0 0 +32.246 34.618 -0.458 0 0 0 0 0 0 0 +32.187 34.773 -0.459 0 0 0 0 0 0 0 +32.284 35.098 -0.463 0 0 0 0 0 0 0 +32.208 35.238 -0.464 0 0 0 0 0 0 0 +32.139 35.385 -0.465 0 0 0 0 0 0 0 +32.114 35.469 -0.465 0 0 0 0 0 0 0 +32.062 35.635 -0.466 0 0 0 0 0 0 0 +31.993 35.785 -0.467 0 0 0 0 0 0 0 +31.939 35.951 -0.469 0 0 0 0 0 0 0 +31.853 36.081 -0.469 0 0 0 0 0 0 0 +31.784 36.232 -0.47 0 0 0 0 0 0 0 +31.73 36.402 -0.471 0 0 0 0 0 0 0 +29.501 33.949 -0.425 0 0 0 0 0 0 0 +31.646 36.652 -0.473 0 0 0 0 0 0 0 +31.587 36.817 -0.474 0 0 0 0 0 0 0 +31.512 36.964 -0.475 0 0 0 0 0 0 0 +31.453 37.13 -0.477 0 0 0 0 0 0 0 +21.146 25.19 -0.255 0 0 0 0 0 0 0 +21.027 25.209 -0.255 0 0 0 0 0 0 0 +20.935 25.259 -0.254 0 0 0 0 0 0 0 +20.847 25.314 -0.254 0 0 0 0 0 0 0 +20.789 25.406 -0.255 0 0 0 0 0 0 0 +20.711 25.474 -0.255 0 0 0 0 0 0 0 +19.072 23.606 -0.22 0 0 0 0 0 0 0 +19.012 23.607 -0.219 0 0 0 0 0 0 0 +18.923 23.648 -0.219 0 0 0 0 0 0 0 +18.835 23.69 -0.219 0 0 0 0 0 0 0 +30.715 38.909 -0.489 0 0 0 0 0 0 0 +30.674 39.11 -0.491 0 0 0 0 0 0 0 +30.691 39.386 -0.494 0 0 0 0 0 0 0 +30.674 39.621 -0.497 0 0 0 0 0 0 0 +30.597 39.779 -0.498 0 0 0 0 0 0 0 +30.574 39.878 -0.499 0 0 0 0 0 0 0 +30.494 40.034 -0.5 0 0 0 0 0 0 0 +30.39 40.159 -0.5 0 0 0 0 0 0 0 +30.319 40.327 -0.502 0 0 0 0 0 0 0 +30.196 40.427 -0.502 0 0 0 0 0 0 0 +29.998 40.427 -0.5 0 0 0 0 0 0 0 +29.879 40.533 -0.5 0 0 0 0 0 0 0 +29.82 40.586 -0.5 0 0 0 0 0 0 0 +29.703 40.694 -0.501 0 0 0 0 0 0 0 +29.64 40.876 -0.502 0 0 0 0 0 0 0 +29.565 41.044 -0.504 0 0 0 0 0 0 0 +29.473 41.188 -0.504 0 0 0 0 0 0 0 +29.387 41.341 -0.505 0 0 0 0 0 0 0 +29.288 41.477 -0.506 0 0 0 0 0 0 0 +27.139 38.688 -0.457 0 0 0 0 0 0 0 +27.05 38.691 -0.456 0 0 0 0 0 0 0 +26.973 38.84 -0.457 0 0 0 0 0 0 0 +26.905 39.004 -0.459 0 0 0 0 0 0 0 +28.917 42.207 -0.512 0 0 0 0 0 0 0 +28.826 42.359 -0.513 0 0 0 0 0 0 0 +28.754 42.539 -0.514 0 0 0 0 0 0 0 +28.721 42.636 -0.515 0 0 0 0 0 0 0 +28.625 42.782 -0.516 0 0 0 0 0 0 0 +28.526 42.925 -0.517 0 0 0 0 0 0 0 +23.926 36.243 -0.403 0 0 0 0 0 0 0 +28.364 43.269 -0.52 0 0 0 0 0 0 0 +28.265 43.415 -0.521 0 0 0 0 0 0 0 +28.175 43.576 -0.522 0 0 0 0 0 0 0 +28.097 43.757 -0.523 0 0 0 0 0 0 0 +28.07 43.865 -0.524 0 0 0 0 0 0 0 +27.965 44.005 -0.525 0 0 0 0 0 0 0 +27.857 44.142 -0.526 0 0 0 0 0 0 0 +18.438 29.404 -0.281 0 0 0 0 0 0 0 +18.328 29.433 -0.28 0 0 0 0 0 0 0 +18.242 29.502 -0.281 0 0 0 0 0 0 0 +18.145 29.553 -0.281 0 0 0 0 0 0 0 +18.145 29.656 -0.282 0 0 0 0 0 0 0 +27.9 45.95 -0.548 0 0 0 0 0 0 0 +27.764 46.053 -0.548 0 0 0 0 0 0 0 +27.647 46.187 -0.549 0 0 0 0 0 0 0 +27.591 46.423 -0.551 0 0 0 0 0 0 0 +29.15 49.402 -0.599 0 0 0 0 0 0 0 +12.638 23.185 -0.165 0 0 0 0 0 0 0 +12.54 23.179 -0.164 0 0 0 0 0 0 0 +12.461 23.208 -0.164 0 0 0 0 0 0 0 +12.513 23.482 -0.167 0 0 0 0 0 0 0 +25.874 49.929 -0.583 0 0 0 0 0 0 0 +24.748 48.5 -0.558 0 0 0 0 0 0 0 +24.53 48.447 -0.556 0 0 0 0 0 0 0 +24.414 48.597 -0.557 0 0 0 0 0 0 0 +24.366 48.691 -0.558 0 0 0 0 0 0 0 +24.351 49.046 -0.562 0 0 0 0 0 0 0 +24.229 49.187 -0.563 0 0 0 0 0 0 0 +24.106 49.328 -0.564 0 0 0 0 0 0 0 +23.978 49.459 -0.565 0 0 0 0 0 0 0 +22.801 47.793 -0.537 0 0 0 0 0 0 0 +22.769 47.919 -0.538 0 0 0 0 0 0 0 +22.558 47.862 -0.536 0 0 0 0 0 0 0 +16.497 35.273 -0.34 0 0 0 0 0 0 0 +16.401 35.356 -0.341 0 0 0 0 0 0 0 +23.047 50.122 -0.568 0 0 0 0 0 0 0 +22.913 50.245 -0.569 0 0 0 0 0 0 0 +22.779 50.37 -0.569 0 0 0 0 0 0 0 +22.713 50.435 -0.57 0 0 0 0 0 0 0 +21.172 47.406 -0.522 0 0 0 0 0 0 0 +21.03 47.489 -0.522 0 0 0 0 0 0 0 +22.309 50.811 -0.572 0 0 0 0 0 0 0 +22.16 50.907 -0.573 0 0 0 0 0 0 0 +22.032 51.05 -0.574 0 0 0 0 0 0 0 +21.888 51.157 -0.574 0 0 0 0 0 0 0 +21.83 51.245 -0.575 0 0 0 0 0 0 0 +21.698 51.381 -0.576 0 0 0 0 0 0 0 +21.548 51.477 -0.577 0 0 0 0 0 0 0 +21.407 51.594 -0.577 0 0 0 0 0 0 0 +21.265 51.711 -0.578 0 0 0 0 0 0 0 +13.361 33.819 -0.304 0 0 0 0 0 0 0 +13.412 34.263 -0.31 0 0 0 0 0 0 0 +13.436 34.646 -0.315 0 0 0 0 0 0 0 +13.463 35.041 -0.321 0 0 0 0 0 0 0 +13.454 35.349 -0.325 0 0 0 0 0 0 0 +19.934 52.912 -0.587 0 0 0 0 0 0 0 +20.162 54.294 -0.606 0 0 0 0 0 0 0 +19.967 54.289 -0.605 0 0 0 0 0 0 0 +14.957 41.046 -0.407 0 0 0 0 0 0 0 +14.737 40.842 -0.403 0 0 0 0 0 0 0 +19.202 53.767 -0.595 0 0 0 0 0 0 0 +19.041 53.851 -0.595 0 0 0 0 0 0 0 +18.986 53.964 -0.596 0 0 0 0 0 0 0 +18.654 54.105 -0.597 0 0 0 0 0 0 0 +18.444 54.046 -0.595 0 0 0 0 0 0 0 +18.265 54.077 -0.595 0 0 0 0 0 0 0 +18.111 54.18 -0.595 0 0 0 0 0 0 0 +17.958 54.292 -0.596 0 0 0 0 0 0 0 +17.989 54.671 -0.601 0 0 0 0 0 0 0 +18.214 55.95 -0.619 0 0 0 0 0 0 0 +18.268 56.721 -0.63 0 0 0 0 0 0 0 +18.283 57.384 -0.639 0 0 0 0 0 0 0 +18.89 59.944 -0.675 0 0 0 0 0 0 0 +18.701 60.003 -0.675 0 0 0 0 0 0 0 +18.613 60.389 -0.68 0 0 0 0 0 0 0 +12.696 42.344 -0.414 0 0 0 0 0 0 0 +12.597 42.498 -0.416 0 0 0 0 0 0 0 +16.682 56.966 -0.627 0 0 0 0 0 0 0 +16.34 56.455 -0.618 0 0 0 0 0 0 0 +16.067 56.17 -0.613 0 0 0 0 0 0 0 +15.87 56.149 -0.612 0 0 0 0 0 0 0 +15.301 55.126 -0.596 0 0 0 0 0 0 0 +20.301 74.073 -0.871 0 0 0 0 0 0 0 +19.491 72.911 -0.852 0 0 0 0 0 0 0 +13.571 52.384 -0.553 0 0 0 0 0 0 0 +13.405 52.42 -0.553 0 0 0 0 0 0 0 +13.517 57.758 -0.626 0 0 0 0 0 0 0 +13.297 57.63 -0.624 0 0 0 0 0 0 0 +12.451 54.745 -0.581 0 0 0 0 0 0 0 +12.043 57.534 -0.618 0 0 0 0 0 0 0 +2.619 13.026 0.019 0 0 0 0 0 0 0 +2.541 12.846 0.022 0 0 0 0 0 0 0 +3.405 17.549 -0.045 0 0 0 0 0 0 0 +3.38 17.568 -0.045 0 0 0 0 0 0 0 +3.336 17.638 -0.046 0 0 0 0 0 0 0 +3.872 22.018 -0.108 0 0 0 0 0 0 0 +3.801 22.018 -0.108 0 0 0 0 0 0 0 +3.766 22.022 -0.108 0 0 0 0 0 0 0 +0.573 3.414 0.157 0 0 0 0 0 0 0 +3.673 21.894 -0.106 0 0 0 0 0 0 0 +0.553 3.355 0.158 0 0 0 0 0 0 0 +0.545 3.378 0.158 0 0 0 0 0 0 0 +0.541 3.423 0.157 0 0 0 0 0 0 0 +0.54 3.454 0.157 0 0 0 0 0 0 0 +0.525 3.422 0.157 0 0 0 0 0 0 0 +0.512 3.408 0.157 0 0 0 0 0 0 0 +0.5 3.403 0.157 0 0 0 0 0 0 0 +0.487 3.389 0.158 0 0 0 0 0 0 0 +0.48 3.412 0.157 0 0 0 0 0 0 0 +0.457 3.325 0.159 0 0 0 0 0 0 0 +0.438 3.212 0.16 0 0 0 0 0 0 0 +0.426 3.2 0.16 0 0 0 0 0 0 0 +0.415 3.195 0.16 0 0 0 0 0 0 0 +0.408 3.22 0.16 0 0 0 0 0 0 0 +0.397 3.214 0.16 0 0 0 0 0 0 0 +0.385 3.205 0.16 0 0 0 0 0 0 0 +0.376 3.212 0.16 0 0 0 0 0 0 0 +0.37 3.201 0.16 0 0 0 0 0 0 0 +0.361 3.214 0.16 0 0 0 0 0 0 0 +0.35 3.207 0.16 0 0 0 0 0 0 0 +0.34 3.204 0.16 0 0 0 0 0 0 0 +0.332 3.231 0.16 0 0 0 0 0 0 0 +0.32 3.216 0.16 0 0 0 0 0 0 0 +0.311 3.231 0.16 0 0 0 0 0 0 0 +0.3 3.212 0.16 0 0 0 0 0 0 0 +0.296 3.224 0.16 0 0 0 0 0 0 0 +0.284 3.203 0.161 0 0 0 0 0 0 0 +0.276 3.232 0.16 0 0 0 0 0 0 0 +0.265 3.229 0.16 0 0 0 0 0 0 0 +0.254 3.216 0.16 0 0 0 0 0 0 0 +0.245 3.227 0.16 0 0 0 0 0 0 0 +0.235 3.241 0.16 0 0 0 0 0 0 0 +0.23 3.23 0.16 0 0 0 0 0 0 0 +0.22 3.231 0.16 0 0 0 0 0 0 0 +0.209 3.231 0.16 0 0 0 0 0 0 0 +0.2 3.238 0.16 0 0 0 0 0 0 0 +0.188 3.218 0.16 0 0 0 0 0 0 0 +0.179 3.229 0.16 0 0 0 0 0 0 0 +0.168 3.22 0.16 0 0 0 0 0 0 0 +0.164 3.232 0.16 0 0 0 0 0 0 0 +0.153 3.234 0.16 0 0 0 0 0 0 0 +0.144 3.245 0.16 0 0 0 0 0 0 0 +0.133 3.243 0.16 0 0 0 0 0 0 0 +0.123 3.226 0.16 0 0 0 0 0 0 0 +0.112 3.204 0.161 0 0 0 0 0 0 0 +0.103 3.238 0.16 0 0 0 0 0 0 0 +0.093 3.267 0.16 0 0 0 0 0 0 0 +0.088 3.247 0.16 0 0 0 0 0 0 0 +0.077 3.233 0.16 0 0 0 0 0 0 0 +0.067 3.247 0.16 0 0 0 0 0 0 0 +0.057 3.253 0.16 0 0 0 0 0 0 0 +0.047 3.252 0.16 0 0 0 0 0 0 0 +0.037 3.238 0.16 0 0 0 0 0 0 0 +0.026 3.254 0.16 0 0 0 0 0 0 0 +0.021 3.264 0.16 0 0 0 0 0 0 0 +0.011 3.246 0.16 0 0 0 0 0 0 0 +0.001 3.252 0.16 0 0 0 0 0 0 0 +-0.009 3.238 0.16 0 0 0 0 0 0 0 +-0.066 3.263 0.16 0 0 0 0 0 0 0 +-0.075 3.239 0.16 0 0 0 0 0 0 0 +-0.639 26.594 -0.167 0 0 0 0 0 0 0 +-0.097 3.267 0.16 0 0 0 0 0 0 0 +-0.833 24.95 -0.144 0 0 0 0 0 0 0 +-1.037 23.387 -0.123 0 0 0 0 0 0 0 +-1.105 23.272 -0.121 0 0 0 0 0 0 0 +-1.14 22.533 -0.111 0 0 0 0 0 0 0 +-1.483 20.013 -0.076 0 0 0 0 0 0 0 +-1.535 19.863 -0.074 0 0 0 0 0 0 0 +-1.548 19.262 -0.065 0 0 0 0 0 0 0 +-1.689 17.871 -0.046 0 0 0 0 0 0 0 +-1.73 17.708 -0.044 0 0 0 0 0 0 0 +-7.222 65.724 -0.721 0 0 0 0 0 0 0 +-7.418 65.616 -0.72 0 0 0 0 0 0 0 +-1.904 16.109 -0.022 0 0 0 0 0 0 0 +-1.937 15.956 -0.02 0 0 0 0 0 0 0 +-2.093 14.262 0.004 0 0 0 0 0 0 0 +-2.129 14.198 0.004 0 0 0 0 0 0 0 +-2.381 12.738 0.024 0 0 0 0 0 0 0 +-2.357 12.397 0.029 0 0 0 0 0 0 0 +-2.386 12.444 0.028 0 0 0 0 0 0 0 +-2.429 12.456 0.028 0 0 0 0 0 0 0 +-2.494 12.576 0.026 0 0 0 0 0 0 0 +-2.59 12.847 0.022 0 0 0 0 0 0 0 +-2.635 12.86 0.022 0 0 0 0 0 0 0 +-2.681 12.877 0.021 0 0 0 0 0 0 0 +-2.726 12.89 0.021 0 0 0 0 0 0 0 +-2.526 10.789 0.05 0 0 0 0 0 0 0 +-2.591 10.908 0.048 0 0 0 0 0 0 0 +-2.562 10.641 0.052 0 0 0 0 0 0 0 +-2.594 10.629 0.052 0 0 0 0 0 0 0 +-4.239 17.068 -0.041 0 0 0 0 0 0 0 +-4.298 17.076 -0.041 0 0 0 0 0 0 0 +-4.355 17.074 -0.041 0 0 0 0 0 0 0 +-3.361 13.117 0.016 0 0 0 0 0 0 0 +-3.404 13.11 0.016 0 0 0 0 0 0 0 +-3.444 13.098 0.016 0 0 0 0 0 0 0 +-3.483 13.079 0.016 0 0 0 0 0 0 0 +-3.528 13.082 0.016 0 0 0 0 0 0 0 +-3.57 13.074 0.016 0 0 0 0 0 0 0 +-3.618 13.086 0.015 0 0 0 0 0 0 0 +-3.2 11.245 0.042 0 0 0 0 0 0 0 +-3.832 13.133 0.014 0 0 0 0 0 0 0 +-3.873 13.121 0.014 0 0 0 0 0 0 0 +-3.917 13.119 0.014 0 0 0 0 0 0 0 +-2.774 9.058 0.073 0 0 0 0 0 0 0 +-2.795 9.025 0.073 0 0 0 0 0 0 0 +-2.804 8.957 0.074 0 0 0 0 0 0 0 +-2.819 8.908 0.075 0 0 0 0 0 0 0 +-2.834 8.857 0.075 0 0 0 0 0 0 0 +-2.844 8.793 0.076 0 0 0 0 0 0 0 +-2.845 8.751 0.077 0 0 0 0 0 0 0 +-2.824 8.595 0.079 0 0 0 0 0 0 0 +-2.901 8.646 0.078 0 0 0 0 0 0 0 +-2.93 8.642 0.078 0 0 0 0 0 0 0 +-2.974 8.68 0.077 0 0 0 0 0 0 0 +-3.008 8.692 0.077 0 0 0 0 0 0 0 +-3.027 8.702 0.076 0 0 0 0 0 0 0 +-3.056 8.696 0.076 0 0 0 0 0 0 0 +-3.089 8.703 0.076 0 0 0 0 0 0 0 +-3.122 8.709 0.076 0 0 0 0 0 0 0 +-4.671 12.865 0.014 0 0 0 0 0 0 0 +-4.723 12.882 0.013 0 0 0 0 0 0 0 +-4.771 12.888 0.013 0 0 0 0 0 0 0 +-4.791 12.819 0.014 0 0 0 0 0 0 0 +-4.791 12.757 0.015 0 0 0 0 0 0 0 +-4.84 12.764 0.014 0 0 0 0 0 0 0 +-4.823 12.602 0.016 0 0 0 0 0 0 0 +-4.655 11.566 0.031 0 0 0 0 0 0 0 +-4.684 11.532 0.031 0 0 0 0 0 0 0 +-4.729 11.54 0.031 0 0 0 0 0 0 0 +-3.774 9.061 0.068 0 0 0 0 0 0 0 +-3.807 9.06 0.068 0 0 0 0 0 0 0 +-3.838 9.093 0.067 0 0 0 0 0 0 0 +-3.864 9.075 0.067 0 0 0 0 0 0 0 +-3.98 9.265 0.064 0 0 0 0 0 0 0 +-3.295 7.425 0.092 0 0 0 0 0 0 0 +-3.389 7.602 0.089 0 0 0 0 0 0 0 +-3.332 7.413 0.092 0 0 0 0 0 0 0 +-3.852 8.42 0.076 0 0 0 0 0 0 0 +-3.885 8.423 0.076 0 0 0 0 0 0 0 +-5.098 10.944 0.036 0 0 0 0 0 0 0 +-4.292 9.148 0.064 0 0 0 0 0 0 0 +-4.326 9.146 0.064 0 0 0 0 0 0 0 +-4.352 9.162 0.063 0 0 0 0 0 0 0 +-4.426 9.242 0.062 0 0 0 0 0 0 0 +-4.471 9.263 0.061 0 0 0 0 0 0 0 +-4.931 10.128 0.048 0 0 0 0 0 0 0 +-4.959 10.104 0.048 0 0 0 0 0 0 0 +-4.976 10.06 0.048 0 0 0 0 0 0 0 +-5.02 10.069 0.048 0 0 0 0 0 0 0 +-5.03 9.97 0.049 0 0 0 0 0 0 0 +-5.115 9.645 0.053 0 0 0 0 0 0 0 +-5.135 9.611 0.053 0 0 0 0 0 0 0 +-5.049 9.24 0.058 0 0 0 0 0 0 0 +-5.08 9.228 0.058 0 0 0 0 0 0 0 +-5.091 9.18 0.058 0 0 0 0 0 0 0 +-5.087 9.139 0.059 0 0 0 0 0 0 0 +-5.097 9.09 0.059 0 0 0 0 0 0 0 +-5.116 9.058 0.06 0 0 0 0 0 0 0 +-5.143 9.039 0.06 0 0 0 0 0 0 0 +-5.193 9.06 0.059 0 0 0 0 0 0 0 +-5.207 9.018 0.06 0 0 0 0 0 0 0 +-5.225 8.985 0.06 0 0 0 0 0 0 0 +-5.209 8.925 0.061 0 0 0 0 0 0 0 +-5.222 8.884 0.061 0 0 0 0 0 0 0 +-5.16 8.716 0.064 0 0 0 0 0 0 0 +-5.209 8.552 0.065 0 0 0 0 0 0 0 +-5.198 8.505 0.066 0 0 0 0 0 0 0 +-5.199 8.447 0.067 0 0 0 0 0 0 0 +-5.16 8.326 0.068 0 0 0 0 0 0 0 +-5.168 8.281 0.069 0 0 0 0 0 0 0 +-5.183 8.246 0.069 0 0 0 0 0 0 0 +-5.33 8.42 0.066 0 0 0 0 0 0 0 +-7.146 11.195 0.019 0 0 0 0 0 0 0 +-5.082 7.733 0.076 0 0 0 0 0 0 0 +-5.069 7.66 0.077 0 0 0 0 0 0 0 +-5.097 7.651 0.077 0 0 0 0 0 0 0 +-5.105 7.612 0.077 0 0 0 0 0 0 0 +-40.291 59.549 -0.802 0 0 0 0 0 0 0 +-40.255 58.698 -0.792 0 0 0 0 0 0 0 +-40.407 58.525 -0.791 0 0 0 0 0 0 0 +-40.608 58.423 -0.792 0 0 0 0 0 0 0 +-41.091 58.722 -0.799 0 0 0 0 0 0 0 +-41.033 58.25 -0.793 0 0 0 0 0 0 0 +-41.374 58.538 -0.799 0 0 0 0 0 0 0 +-45.271 63.622 -0.889 0 0 0 0 0 0 0 +-41.613 58.098 -0.796 0 0 0 0 0 0 0 +-41.054 56.94 -0.778 0 0 0 0 0 0 0 +-41.178 56.735 -0.777 0 0 0 0 0 0 0 +-41.332 56.573 -0.777 0 0 0 0 0 0 0 +-43.189 58.725 -0.816 0 0 0 0 0 0 0 +-43.308 58.693 -0.817 0 0 0 0 0 0 0 +-43.577 58.67 -0.819 0 0 0 0 0 0 0 +-47.707 63.808 -0.911 0 0 0 0 0 0 0 +-48.088 63.897 -0.915 0 0 0 0 0 0 0 +-48.275 63.728 -0.915 0 0 0 0 0 0 0 +-48.413 63.495 -0.914 0 0 0 0 0 0 0 +-43.33 56.464 -0.792 0 0 0 0 0 0 0 +-43.384 56.352 -0.791 0 0 0 0 0 0 0 +-44.058 55.049 -0.783 0 0 0 0 0 0 0 +-44.254 54.939 -0.783 0 0 0 0 0 0 0 +-46.485 56.788 -0.823 0 0 0 0 0 0 0 +-23.614 28.501 -0.313 0 0 0 0 0 0 0 +-23.807 28.551 -0.316 0 0 0 0 0 0 0 +-45.528 54.216 -0.787 0 0 0 0 0 0 0 +-45.559 54.081 -0.786 0 0 0 0 0 0 0 +-45.689 53.89 -0.785 0 0 0 0 0 0 0 +-45.807 53.687 -0.784 0 0 0 0 0 0 0 +-45.933 53.493 -0.783 0 0 0 0 0 0 0 +-46.06 53.301 -0.782 0 0 0 0 0 0 0 +-46.431 53.39 -0.786 0 0 0 0 0 0 0 +-31.067 35.398 -0.455 0 0 0 0 0 0 0 +-36.524 39.684 -0.55 0 0 0 0 0 0 0 +-36.743 39.671 -0.552 0 0 0 0 0 0 0 +-41.377 43.834 -0.639 0 0 0 0 0 0 0 +-21.601 22.687 -0.234 0 0 0 0 0 0 0 +-21.634 22.58 -0.233 0 0 0 0 0 0 0 +-21.672 22.477 -0.232 0 0 0 0 0 0 0 +-21.733 22.399 -0.232 0 0 0 0 0 0 0 +-21.811 22.339 -0.232 0 0 0 0 0 0 0 +-22.14 22.533 -0.237 0 0 0 0 0 0 0 +-22.068 22.319 -0.234 0 0 0 0 0 0 0 +-39.472 38.297 -0.565 0 0 0 0 0 0 0 +-32.656 29.946 -0.416 0 0 0 0 0 0 0 +-32.682 29.781 -0.414 0 0 0 0 0 0 0 +-32.749 29.654 -0.414 0 0 0 0 0 0 0 +-32.861 29.568 -0.414 0 0 0 0 0 0 0 +-35.958 32.148 -0.471 0 0 0 0 0 0 0 +-36.05 32.027 -0.47 0 0 0 0 0 0 0 +-36.045 31.921 -0.469 0 0 0 0 0 0 0 +-36.076 31.747 -0.468 0 0 0 0 0 0 0 +-36.114 31.58 -0.467 0 0 0 0 0 0 0 +-36.158 31.419 -0.466 0 0 0 0 0 0 0 +-36.19 31.248 -0.465 0 0 0 0 0 0 0 +-36.218 31.074 -0.463 0 0 0 0 0 0 0 +-36.252 30.905 -0.462 0 0 0 0 0 0 0 +-36.277 30.731 -0.461 0 0 0 0 0 0 0 +-36.256 30.616 -0.46 0 0 0 0 0 0 0 +-36.287 30.446 -0.458 0 0 0 0 0 0 0 +-36.321 30.281 -0.457 0 0 0 0 0 0 0 +-36.345 30.108 -0.456 0 0 0 0 0 0 0 +-36.377 29.943 -0.455 0 0 0 0 0 0 0 +-36.397 29.768 -0.454 0 0 0 0 0 0 0 +-36.426 29.602 -0.452 0 0 0 0 0 0 0 +-36.406 29.49 -0.451 0 0 0 0 0 0 0 +-36.43 29.321 -0.45 0 0 0 0 0 0 0 +-36.438 29.139 -0.448 0 0 0 0 0 0 0 +-36.469 28.977 -0.447 0 0 0 0 0 0 0 +-36.508 28.821 -0.446 0 0 0 0 0 0 0 +-36.517 28.642 -0.445 0 0 0 0 0 0 0 +-36.533 28.47 -0.444 0 0 0 0 0 0 0 +-36.503 28.355 -0.442 0 0 0 0 0 0 0 +-36.529 28.191 -0.441 0 0 0 0 0 0 0 +-36.544 28.02 -0.44 0 0 0 0 0 0 0 +-36.558 27.85 -0.439 0 0 0 0 0 0 0 +-36.555 27.666 -0.437 0 0 0 0 0 0 0 +-18.491 13.919 -0.119 0 0 0 0 0 0 0 +-18.51 13.843 -0.118 0 0 0 0 0 0 0 +-18.556 13.832 -0.119 0 0 0 0 0 0 0 +-36.575 27.054 -0.432 0 0 0 0 0 0 0 +-36.567 26.871 -0.431 0 0 0 0 0 0 0 +-36.636 26.745 -0.43 0 0 0 0 0 0 0 +-36.782 26.674 -0.431 0 0 0 0 0 0 0 +-36.932 26.606 -0.433 0 0 0 0 0 0 0 +-37.072 26.531 -0.433 0 0 0 0 0 0 0 +-37.156 26.503 -0.434 0 0 0 0 0 0 0 +-37.31 26.436 -0.435 0 0 0 0 0 0 0 +-37.335 26.278 -0.434 0 0 0 0 0 0 0 +-37.365 26.124 -0.434 0 0 0 0 0 0 0 +-32.95 22.735 -0.356 0 0 0 0 0 0 0 +-32.971 22.596 -0.355 0 0 0 0 0 0 0 +-33.029 22.56 -0.355 0 0 0 0 0 0 0 +-36.575 24.81 -0.414 0 0 0 0 0 0 0 +-36.6 24.66 -0.413 0 0 0 0 0 0 0 +-36.584 24.482 -0.412 0 0 0 0 0 0 0 +-36.587 24.319 -0.41 0 0 0 0 0 0 0 +-36.582 24.15 -0.409 0 0 0 0 0 0 0 +-6.737 4.442 0.092 0 0 0 0 0 0 0 +-6.687 4.38 0.094 0 0 0 0 0 0 0 +-6.664 4.35 0.094 0 0 0 0 0 0 0 +-6.674 4.326 0.094 0 0 0 0 0 0 0 +-6.891 4.436 0.091 0 0 0 0 0 0 0 +-6.763 4.324 0.093 0 0 0 0 0 0 0 +-36.533 23.061 -0.4 0 0 0 0 0 0 0 +-36.522 22.894 -0.399 0 0 0 0 0 0 0 +-36.512 22.728 -0.397 0 0 0 0 0 0 0 +-36.469 22.622 -0.396 0 0 0 0 0 0 0 +-36.46 22.458 -0.395 0 0 0 0 0 0 0 +-36.454 22.297 -0.393 0 0 0 0 0 0 0 +-36.44 22.131 -0.392 0 0 0 0 0 0 0 +-36.432 21.97 -0.391 0 0 0 0 0 0 0 +-36.424 21.81 -0.39 0 0 0 0 0 0 0 +-36.42 21.652 -0.388 0 0 0 0 0 0 0 +-36.363 21.541 -0.387 0 0 0 0 0 0 0 +-36.351 21.38 -0.386 0 0 0 0 0 0 0 +-36.331 21.215 -0.384 0 0 0 0 0 0 0 +-36.325 21.059 -0.383 0 0 0 0 0 0 0 +-36.315 20.901 -0.382 0 0 0 0 0 0 0 +-36.294 20.737 -0.38 0 0 0 0 0 0 0 +-36.282 20.58 -0.379 0 0 0 0 0 0 0 +-36.232 20.477 -0.378 0 0 0 0 0 0 0 +-36.216 20.318 -0.377 0 0 0 0 0 0 0 +-36.201 20.16 -0.375 0 0 0 0 0 0 0 +-36.182 20.001 -0.374 0 0 0 0 0 0 0 +-36.178 19.851 -0.373 0 0 0 0 0 0 0 +-36.163 19.695 -0.372 0 0 0 0 0 0 0 +-12.583 6.821 0.005 0 0 0 0 0 0 0 +-12.502 6.752 0.006 0 0 0 0 0 0 0 +-36.017 19.25 -0.367 0 0 0 0 0 0 0 +-36.022 19.108 -0.366 0 0 0 0 0 0 0 +-36.006 18.955 -0.365 0 0 0 0 0 0 0 +-35.985 18.8 -0.364 0 0 0 0 0 0 0 +-35.966 18.646 -0.362 0 0 0 0 0 0 0 +-35.93 18.485 -0.361 0 0 0 0 0 0 0 +-35.897 18.325 -0.359 0 0 0 0 0 0 0 +-35.857 18.234 -0.358 0 0 0 0 0 0 0 +-35.821 18.074 -0.357 0 0 0 0 0 0 0 +-35.749 17.897 -0.355 0 0 0 0 0 0 0 +-32.743 16.266 -0.307 0 0 0 0 0 0 0 +-35.746 17.616 -0.353 0 0 0 0 0 0 0 +-35.72 17.464 -0.352 0 0 0 0 0 0 0 +-35.712 17.321 -0.351 0 0 0 0 0 0 0 +-35.649 17.221 -0.349 0 0 0 0 0 0 0 +-35.623 17.071 -0.348 0 0 0 0 0 0 0 +-14.668 6.99 -0.022 0 0 0 0 0 0 0 +-14.855 7.021 -0.025 0 0 0 0 0 0 0 +-35.799 16.742 -0.348 0 0 0 0 0 0 0 +-35.795 16.604 -0.348 0 0 0 0 0 0 0 +-35.787 16.464 -0.347 0 0 0 0 0 0 0 +-35.704 16.358 -0.345 0 0 0 0 0 0 0 +-35.677 16.21 -0.344 0 0 0 0 0 0 0 +-35.645 16.061 -0.342 0 0 0 0 0 0 0 +-35.445 15.837 -0.339 0 0 0 0 0 0 0 +-35.259 15.621 -0.335 0 0 0 0 0 0 0 +-35.222 15.473 -0.334 0 0 0 0 0 0 0 +-35.173 15.32 -0.332 0 0 0 0 0 0 0 +-35.1 15.222 -0.331 0 0 0 0 0 0 0 +-35.057 15.073 -0.329 0 0 0 0 0 0 0 +-35.02 14.927 -0.328 0 0 0 0 0 0 0 +-34.976 14.779 -0.327 0 0 0 0 0 0 0 +-34.949 14.638 -0.326 0 0 0 0 0 0 0 +-34.899 14.489 -0.324 0 0 0 0 0 0 0 +-34.855 14.342 -0.323 0 0 0 0 0 0 0 +-34.8 14.256 -0.322 0 0 0 0 0 0 0 +-34.75 14.108 -0.32 0 0 0 0 0 0 0 +-34.703 13.962 -0.319 0 0 0 0 0 0 0 +-34.659 13.819 -0.317 0 0 0 0 0 0 0 +-34.626 13.68 -0.316 0 0 0 0 0 0 0 +-34.572 13.533 -0.315 0 0 0 0 0 0 0 +-34.533 13.392 -0.314 0 0 0 0 0 0 0 +-34.455 13.3 -0.312 0 0 0 0 0 0 0 +-34.424 13.164 -0.311 0 0 0 0 0 0 0 +-34.366 13.018 -0.31 0 0 0 0 0 0 0 +-34.33 12.881 -0.308 0 0 0 0 0 0 0 +-34.3 12.748 -0.307 0 0 0 0 0 0 0 +-29.76 10.958 -0.239 0 0 0 0 0 0 0 +-29.721 10.838 -0.238 0 0 0 0 0 0 0 +-29.73 10.788 -0.238 0 0 0 0 0 0 0 +-29.783 10.701 -0.238 0 0 0 0 0 0 0 +-33.985 12.087 -0.3 0 0 0 0 0 0 0 +-33.967 11.96 -0.299 0 0 0 0 0 0 0 +-33.911 11.821 -0.298 0 0 0 0 0 0 0 +-33.863 11.686 -0.297 0 0 0 0 0 0 0 +-33.813 11.549 -0.295 0 0 0 0 0 0 0 +-33.742 11.466 -0.294 0 0 0 0 0 0 0 +-33.687 11.33 -0.293 0 0 0 0 0 0 0 +-33.639 11.196 -0.291 0 0 0 0 0 0 0 +-33.584 11.061 -0.29 0 0 0 0 0 0 0 +-33.537 10.929 -0.289 0 0 0 0 0 0 0 +-33.484 10.795 -0.288 0 0 0 0 0 0 0 +-33.426 10.661 -0.286 0 0 0 0 0 0 0 +-33.359 10.582 -0.285 0 0 0 0 0 0 0 +-33.31 10.451 -0.284 0 0 0 0 0 0 0 +-33.262 10.322 -0.283 0 0 0 0 0 0 0 +-33.185 10.184 -0.281 0 0 0 0 0 0 0 +-33.141 10.056 -0.28 0 0 0 0 0 0 0 +-33.088 9.927 -0.279 0 0 0 0 0 0 0 +-33.029 9.796 -0.277 0 0 0 0 0 0 0 +-32.983 9.67 -0.276 0 0 0 0 0 0 0 +-32.909 9.593 -0.275 0 0 0 0 0 0 0 +-32.834 9.459 -0.273 0 0 0 0 0 0 0 +-32.777 9.331 -0.272 0 0 0 0 0 0 0 +-32.708 9.2 -0.271 0 0 0 0 0 0 0 +-32.648 9.073 -0.269 0 0 0 0 0 0 0 +-32.589 8.947 -0.268 0 0 0 0 0 0 0 +-32.521 8.818 -0.267 0 0 0 0 0 0 0 +-32.436 8.741 -0.265 0 0 0 0 0 0 0 +-32.382 8.617 -0.264 0 0 0 0 0 0 0 +-32.314 8.49 -0.263 0 0 0 0 0 0 0 +-32.252 8.366 -0.261 0 0 0 0 0 0 0 +-32.196 8.244 -0.26 0 0 0 0 0 0 0 +-32.123 8.118 -0.259 0 0 0 0 0 0 0 +-32.061 7.995 -0.258 0 0 0 0 0 0 0 +-31.999 7.873 -0.256 0 0 0 0 0 0 0 +-31.908 7.797 -0.255 0 0 0 0 0 0 0 +-31.849 7.677 -0.254 0 0 0 0 0 0 0 +-31.785 7.556 -0.252 0 0 0 0 0 0 0 +-31.711 7.434 -0.251 0 0 0 0 0 0 0 +-31.637 7.312 -0.25 0 0 0 0 0 0 0 +-31.586 7.195 -0.249 0 0 0 0 0 0 0 +-31.503 7.072 -0.247 0 0 0 0 0 0 0 +-31.436 7.006 -0.246 0 0 0 0 0 0 0 +-31.382 6.89 -0.245 0 0 0 0 0 0 0 +-31.286 6.766 -0.243 0 0 0 0 0 0 0 +-31.221 6.65 -0.242 0 0 0 0 0 0 0 +-31.154 6.533 -0.241 0 0 0 0 0 0 0 +-31.088 6.418 -0.239 0 0 0 0 0 0 0 +-31.035 6.305 -0.238 0 0 0 0 0 0 0 +-27.198 5.484 -0.183 0 0 0 0 0 0 0 +-30.861 6.119 -0.235 0 0 0 0 0 0 0 +-30.793 6.005 -0.234 0 0 0 0 0 0 0 +-30.725 5.892 -0.233 0 0 0 0 0 0 0 +-30.657 5.779 -0.232 0 0 0 0 0 0 0 +-30.583 5.665 -0.23 0 0 0 0 0 0 0 +-30.518 5.554 -0.229 0 0 0 0 0 0 0 +-30.434 5.49 -0.228 0 0 0 0 0 0 0 +-30.361 5.378 -0.227 0 0 0 0 0 0 0 +-30.293 5.268 -0.225 0 0 0 0 0 0 0 +-30.214 5.157 -0.224 0 0 0 0 0 0 0 +-30.14 5.047 -0.223 0 0 0 0 0 0 0 +-30.065 4.937 -0.222 0 0 0 0 0 0 0 +-30.003 4.83 -0.22 0 0 0 0 0 0 0 +-29.906 4.767 -0.219 0 0 0 0 0 0 0 +-29.842 4.66 -0.218 0 0 0 0 0 0 0 +-29.755 4.551 -0.216 0 0 0 0 0 0 0 +-29.686 4.445 -0.215 0 0 0 0 0 0 0 +-29.617 4.34 -0.214 0 0 0 0 0 0 0 +-29.538 4.234 -0.213 0 0 0 0 0 0 0 +-29.464 4.129 -0.211 0 0 0 0 0 0 0 +-29.385 4.024 -0.21 0 0 0 0 0 0 0 +-29.298 3.965 -0.209 0 0 0 0 0 0 0 +-29.237 3.863 -0.208 0 0 0 0 0 0 0 +-29.158 3.76 -0.207 0 0 0 0 0 0 0 +-29.096 3.659 -0.206 0 0 0 0 0 0 0 +-29.014 3.556 -0.204 0 0 0 0 0 0 0 +-28.934 3.454 -0.203 0 0 0 0 0 0 0 +-28.976 3.367 -0.203 0 0 0 0 0 0 0 +-29.073 3.332 -0.205 0 0 0 0 0 0 0 +-29.079 3.24 -0.205 0 0 0 0 0 0 0 +-28.99 3.138 -0.203 0 0 0 0 0 0 0 +-28.912 3.038 -0.202 0 0 0 0 0 0 0 +-28.828 2.938 -0.201 0 0 0 0 0 0 0 +-28.76 2.839 -0.2 0 0 0 0 0 0 0 +-28.685 2.741 -0.198 0 0 0 0 0 0 0 +-28.595 2.687 -0.197 0 0 0 0 0 0 0 +-28.516 2.59 -0.196 0 0 0 0 0 0 0 +-28.367 2.486 -0.194 0 0 0 0 0 0 0 +-27.984 2.365 -0.188 0 0 0 0 0 0 0 +-27.907 2.27 -0.187 0 0 0 0 0 0 0 +-27.835 2.176 -0.186 0 0 0 0 0 0 0 +-27.756 2.082 -0.185 0 0 0 0 0 0 0 +-27.669 2.032 -0.183 0 0 0 0 0 0 0 +-27.58 1.939 -0.182 0 0 0 0 0 0 0 +-27.5 1.846 -0.181 0 0 0 0 0 0 0 +-21.859 1.404 -0.101 0 0 0 0 0 0 0 +-21.845 1.334 -0.101 0 0 0 0 0 0 0 +-21.846 1.265 -0.101 0 0 0 0 0 0 0 +-21.859 1.197 -0.101 0 0 0 0 0 0 0 +-21.905 1.131 -0.102 0 0 0 0 0 0 0 +-21.974 1.065 -0.103 0 0 0 0 0 0 0 +-26.814 1.252 -0.171 0 0 0 0 0 0 0 +-26.722 1.163 -0.169 0 0 0 0 0 0 0 +-26.658 1.077 -0.168 0 0 0 0 0 0 0 +-26.559 0.989 -0.167 0 0 0 0 0 0 0 +-26.494 0.904 -0.166 0 0 0 0 0 0 0 +-26.421 0.818 -0.165 0 0 0 0 0 0 0 +-26.336 0.733 -0.164 0 0 0 0 0 0 0 +-26.253 0.689 -0.163 0 0 0 0 0 0 0 +-26.229 0.606 -0.162 0 0 0 0 0 0 0 +-26.195 0.523 -0.162 0 0 0 0 0 0 0 +-26.128 0.44 -0.161 0 0 0 0 0 0 0 +-26.043 0.356 -0.16 0 0 0 0 0 0 0 +-25.96 0.274 -0.158 0 0 0 0 0 0 0 +-25.885 0.192 -0.157 0 0 0 0 0 0 0 +-25.803 0.151 -0.156 0 0 0 0 0 0 0 +-25.726 0.07 -0.155 0 0 0 0 0 0 0 +-25.636 -0.011 -0.154 0 0 0 0 0 0 0 +-25.57 -0.091 -0.153 0 0 0 0 0 0 0 +-25.479 -0.171 -0.152 0 0 0 0 0 0 0 +-25.417 -0.25 -0.151 0 0 0 0 0 0 0 +-25.314 -0.329 -0.149 0 0 0 0 0 0 0 +-25.241 -0.367 -0.148 0 0 0 0 0 0 0 +-25.158 -0.445 -0.147 0 0 0 0 0 0 0 +-24.99 -0.521 -0.145 0 0 0 0 0 0 0 +-24.903 -0.597 -0.144 0 0 0 0 0 0 0 +-24.823 -0.673 -0.143 0 0 0 0 0 0 0 +-24.745 -0.749 -0.141 0 0 0 0 0 0 0 +-24.652 -0.823 -0.14 0 0 0 0 0 0 0 +-24.587 -0.86 -0.139 0 0 0 0 0 0 0 +-24.508 -0.934 -0.138 0 0 0 0 0 0 0 +-24.437 -1.008 -0.137 0 0 0 0 0 0 0 +-24.354 -1.081 -0.136 0 0 0 0 0 0 0 +-24.273 -1.154 -0.135 0 0 0 0 0 0 0 +-24.195 -1.226 -0.134 0 0 0 0 0 0 0 +-24.119 -1.298 -0.133 0 0 0 0 0 0 0 +-24.041 -1.37 -0.132 0 0 0 0 0 0 0 +-24.001 -1.405 -0.131 0 0 0 0 0 0 0 +-23.992 -1.48 -0.131 0 0 0 0 0 0 0 +-23.926 -1.552 -0.131 0 0 0 0 0 0 0 +-23.847 -1.622 -0.129 0 0 0 0 0 0 0 +-23.768 -1.691 -0.128 0 0 0 0 0 0 0 +-23.673 -1.759 -0.127 0 0 0 0 0 0 0 +-23.615 -1.83 -0.126 0 0 0 0 0 0 0 +-23.519 -1.859 -0.125 0 0 0 0 0 0 0 +-23.455 -1.928 -0.124 0 0 0 0 0 0 0 +-23.353 -1.994 -0.123 0 0 0 0 0 0 0 +-19.66 -1.736 -0.071 0 0 0 0 0 0 0 +-16.124 -1.471 -0.021 0 0 0 0 0 0 0 +-16.157 -1.525 -0.022 0 0 0 0 0 0 0 +-22.829 -2.238 -0.116 0 0 0 0 0 0 0 +-23.004 -2.291 -0.118 0 0 0 0 0 0 0 +-22.893 -2.353 -0.117 0 0 0 0 0 0 0 +-22.816 -2.417 -0.116 0 0 0 0 0 0 0 +-22.755 -2.483 -0.115 0 0 0 0 0 0 0 +-22.689 -2.548 -0.114 0 0 0 0 0 0 0 +-22.697 -2.621 -0.115 0 0 0 0 0 0 0 +-22.715 -2.696 -0.115 0 0 0 0 0 0 0 +-22.704 -2.731 -0.115 0 0 0 0 0 0 0 +-22.726 -2.806 -0.115 0 0 0 0 0 0 0 +-22.723 -2.878 -0.115 0 0 0 0 0 0 0 +-22.725 -2.951 -0.116 0 0 0 0 0 0 0 +-22.736 -3.025 -0.116 0 0 0 0 0 0 0 +-22.75 -3.099 -0.116 0 0 0 0 0 0 0 +-22.732 -3.17 -0.116 0 0 0 0 0 0 0 +-22.721 -3.205 -0.116 0 0 0 0 0 0 0 +-22.729 -3.279 -0.116 0 0 0 0 0 0 0 +-22.772 -3.358 -0.117 0 0 0 0 0 0 0 +-22.737 -3.426 -0.117 0 0 0 0 0 0 0 +-22.634 -3.483 -0.115 0 0 0 0 0 0 0 +-22.577 -3.547 -0.115 0 0 0 0 0 0 0 +-22.475 -3.603 -0.114 0 0 0 0 0 0 0 +-22.438 -3.633 -0.113 0 0 0 0 0 0 0 +-22.371 -3.694 -0.112 0 0 0 0 0 0 0 +-22.286 -3.752 -0.111 0 0 0 0 0 0 0 +-21.063 -3.681 -0.094 0 0 0 0 0 0 0 +-20.978 -3.734 -0.093 0 0 0 0 0 0 0 +-20.927 -3.793 -0.093 0 0 0 0 0 0 0 +-20.845 -3.812 -0.091 0 0 0 0 0 0 0 +-20.779 -3.867 -0.091 0 0 0 0 0 0 0 +-20.685 -3.917 -0.09 0 0 0 0 0 0 0 +-20.623 -3.972 -0.089 0 0 0 0 0 0 0 +-20.544 -4.024 -0.088 0 0 0 0 0 0 0 +-20.476 -4.077 -0.087 0 0 0 0 0 0 0 +-20.393 -4.127 -0.086 0 0 0 0 0 0 0 +-20.333 -4.182 -0.085 0 0 0 0 0 0 0 +-20.254 -4.198 -0.084 0 0 0 0 0 0 0 +-20.19 -4.251 -0.084 0 0 0 0 0 0 0 +-20.106 -4.299 -0.083 0 0 0 0 0 0 0 +-20.039 -4.351 -0.082 0 0 0 0 0 0 0 +-19.975 -4.403 -0.081 0 0 0 0 0 0 0 +-19.904 -4.453 -0.08 0 0 0 0 0 0 0 +-19.83 -4.501 -0.079 0 0 0 0 0 0 0 +-19.756 -4.517 -0.079 0 0 0 0 0 0 0 +-19.592 -4.544 -0.076 0 0 0 0 0 0 0 +-19.498 -4.587 -0.075 0 0 0 0 0 0 0 +-19.427 -4.635 -0.074 0 0 0 0 0 0 0 +-19.356 -4.682 -0.074 0 0 0 0 0 0 0 +-19.285 -4.729 -0.073 0 0 0 0 0 0 0 +-19.212 -4.775 -0.072 0 0 0 0 0 0 0 +-19.136 -4.788 -0.071 0 0 0 0 0 0 0 +-19.084 -4.839 -0.07 0 0 0 0 0 0 0 +-19.001 -4.881 -0.069 0 0 0 0 0 0 0 +-18.947 -4.931 -0.069 0 0 0 0 0 0 0 +-18.858 -4.971 -0.068 0 0 0 0 0 0 0 +-18.792 -5.017 -0.067 0 0 0 0 0 0 0 +-18.715 -5.059 -0.066 0 0 0 0 0 0 0 +-18.66 -5.076 -0.066 0 0 0 0 0 0 0 +-18.587 -5.118 -0.065 0 0 0 0 0 0 0 +-18.534 -5.166 -0.064 0 0 0 0 0 0 0 +-18.462 -5.209 -0.063 0 0 0 0 0 0 0 +-18.436 -5.264 -0.063 0 0 0 0 0 0 0 +-18.406 -5.318 -0.063 0 0 0 0 0 0 0 +-18.35 -5.364 -0.062 0 0 0 0 0 0 0 +-18.29 -5.378 -0.062 0 0 0 0 0 0 0 +-18.221 -5.42 -0.061 0 0 0 0 0 0 0 +-18.151 -5.461 -0.06 0 0 0 0 0 0 0 +-18.07 -5.499 -0.059 0 0 0 0 0 0 0 +-18.007 -5.541 -0.059 0 0 0 0 0 0 0 +-17.932 -5.58 -0.058 0 0 0 0 0 0 0 +-17.869 -5.622 -0.057 0 0 0 0 0 0 0 +-17.805 -5.632 -0.056 0 0 0 0 0 0 0 +-17.751 -5.676 -0.056 0 0 0 0 0 0 0 +-17.674 -5.713 -0.055 0 0 0 0 0 0 0 +-17.612 -5.754 -0.054 0 0 0 0 0 0 0 +-17.545 -5.793 -0.053 0 0 0 0 0 0 0 +-17.47 -5.829 -0.053 0 0 0 0 0 0 0 +-17.4 -5.867 -0.052 0 0 0 0 0 0 0 +-17.342 -5.877 -0.051 0 0 0 0 0 0 0 +-17.274 -5.915 -0.05 0 0 0 0 0 0 0 +-17.218 -5.956 -0.05 0 0 0 0 0 0 0 +-17.136 -5.988 -0.049 0 0 0 0 0 0 0 +-17.074 -6.026 -0.048 0 0 0 0 0 0 0 +-17.004 -6.062 -0.047 0 0 0 0 0 0 0 +-16.82 -6.055 -0.045 0 0 0 0 0 0 0 +-16.786 -6.073 -0.045 0 0 0 0 0 0 0 +-16.821 -6.146 -0.045 0 0 0 0 0 0 0 +-16.751 -6.18 -0.045 0 0 0 0 0 0 0 +-16.681 -6.213 -0.044 0 0 0 0 0 0 0 +-16.622 -6.251 -0.043 0 0 0 0 0 0 0 +-16.548 -6.282 -0.043 0 0 0 0 0 0 0 +-16.48 -6.316 -0.042 0 0 0 0 0 0 0 +-16.434 -6.328 -0.041 0 0 0 0 0 0 0 +-16.364 -6.36 -0.041 0 0 0 0 0 0 0 +-16.285 -6.388 -0.04 0 0 0 0 0 0 0 +-16.233 -6.426 -0.039 0 0 0 0 0 0 0 +-16.177 -6.463 -0.039 0 0 0 0 0 0 0 +-16.111 -6.495 -0.038 0 0 0 0 0 0 0 +-16.051 -6.53 -0.037 0 0 0 0 0 0 0 +-15.997 -6.566 -0.037 0 0 0 0 0 0 0 +-15.993 -6.594 -0.037 0 0 0 0 0 0 0 +-15.996 -6.654 -0.037 0 0 0 0 0 0 0 +-15.982 -6.707 -0.037 0 0 0 0 0 0 0 +-15.821 -6.698 -0.035 0 0 0 0 0 0 0 +-15.817 -6.755 -0.036 0 0 0 0 0 0 0 +-16.014 -6.899 -0.039 0 0 0 0 0 0 0 +-16.021 -6.962 -0.039 0 0 0 0 0 0 0 +-16.04 -7 -0.04 0 0 0 0 0 0 0 +-16.049 -7.064 -0.04 0 0 0 0 0 0 0 +-16.05 -7.125 -0.041 0 0 0 0 0 0 0 +-16.059 -7.19 -0.041 0 0 0 0 0 0 0 +-16.063 -7.252 -0.041 0 0 0 0 0 0 0 +-16.073 -7.318 -0.042 0 0 0 0 0 0 0 +-16.085 -7.384 -0.043 0 0 0 0 0 0 0 +-16.098 -7.421 -0.043 0 0 0 0 0 0 0 +-16.095 -7.481 -0.043 0 0 0 0 0 0 0 +-16.104 -7.547 -0.044 0 0 0 0 0 0 0 +-16.114 -7.614 -0.044 0 0 0 0 0 0 0 +-16.123 -7.68 -0.045 0 0 0 0 0 0 0 +-16.131 -7.746 -0.045 0 0 0 0 0 0 0 +-16.145 -7.815 -0.046 0 0 0 0 0 0 0 +-16.138 -7.843 -0.046 0 0 0 0 0 0 0 +-16.143 -7.909 -0.046 0 0 0 0 0 0 0 +-16.158 -7.979 -0.047 0 0 0 0 0 0 0 +-16.151 -8.038 -0.047 0 0 0 0 0 0 0 +-16.157 -8.105 -0.048 0 0 0 0 0 0 0 +-16.168 -8.174 -0.048 0 0 0 0 0 0 0 +-16.174 -8.241 -0.049 0 0 0 0 0 0 0 +-16.193 -8.283 -0.049 0 0 0 0 0 0 0 +-16.195 -8.349 -0.05 0 0 0 0 0 0 0 +-16.199 -8.415 -0.05 0 0 0 0 0 0 0 +-16.213 -8.487 -0.051 0 0 0 0 0 0 0 +-16.22 -8.556 -0.051 0 0 0 0 0 0 0 +-16.232 -8.628 -0.052 0 0 0 0 0 0 0 +-16.237 -8.696 -0.053 0 0 0 0 0 0 0 +-16.258 -8.74 -0.053 0 0 0 0 0 0 0 +-16.257 -8.806 -0.054 0 0 0 0 0 0 0 +-16.275 -8.882 -0.054 0 0 0 0 0 0 0 +-16.278 -8.95 -0.055 0 0 0 0 0 0 0 +-16.282 -9.019 -0.055 0 0 0 0 0 0 0 +-16.292 -9.091 -0.056 0 0 0 0 0 0 0 +-16.289 -9.157 -0.056 0 0 0 0 0 0 0 +-16.32 -9.208 -0.057 0 0 0 0 0 0 0 +-16.319 -9.275 -0.058 0 0 0 0 0 0 0 +-16.347 -9.359 -0.058 0 0 0 0 0 0 0 +-16.353 -9.432 -0.059 0 0 0 0 0 0 0 +-16.362 -9.505 -0.06 0 0 0 0 0 0 0 +-16.372 -9.58 -0.06 0 0 0 0 0 0 0 +-16.374 -9.651 -0.061 0 0 0 0 0 0 0 +-16.375 -9.72 -0.061 0 0 0 0 0 0 0 +-16.394 -9.767 -0.062 0 0 0 0 0 0 0 +-16.404 -9.843 -0.063 0 0 0 0 0 0 0 +-16.414 -9.919 -0.063 0 0 0 0 0 0 0 +-16.415 -9.991 -0.064 0 0 0 0 0 0 0 +-16.42 -10.064 -0.064 0 0 0 0 0 0 0 +-16.427 -10.14 -0.065 0 0 0 0 0 0 0 +-16.441 -10.22 -0.066 0 0 0 0 0 0 0 +-16.457 -10.266 -0.066 0 0 0 0 0 0 0 +-16.462 -10.341 -0.067 0 0 0 0 0 0 0 +-16.48 -10.425 -0.068 0 0 0 0 0 0 0 +-16.482 -10.499 -0.068 0 0 0 0 0 0 0 +-16.483 -10.573 -0.069 0 0 0 0 0 0 0 +-16.482 -10.645 -0.069 0 0 0 0 0 0 0 +-16.488 -10.723 -0.07 0 0 0 0 0 0 0 +-16.518 -10.779 -0.071 0 0 0 0 0 0 0 +-16.508 -10.847 -0.071 0 0 0 0 0 0 0 +-16.53 -10.936 -0.072 0 0 0 0 0 0 0 +-16.522 -11.006 -0.073 0 0 0 0 0 0 0 +-16.541 -11.093 -0.074 0 0 0 0 0 0 0 +-16.544 -11.171 -0.074 0 0 0 0 0 0 0 +-16.55 -11.251 -0.075 0 0 0 0 0 0 0 +-16.575 -11.306 -0.076 0 0 0 0 0 0 0 +-16.589 -11.392 -0.077 0 0 0 0 0 0 0 +-16.583 -11.465 -0.077 0 0 0 0 0 0 0 +-16.598 -11.553 -0.078 0 0 0 0 0 0 0 +-16.596 -11.629 -0.078 0 0 0 0 0 0 0 +-16.613 -11.719 -0.079 0 0 0 0 0 0 0 +-16.607 -11.793 -0.08 0 0 0 0 0 0 0 +-16.64 -11.856 -0.081 0 0 0 0 0 0 0 +-16.65 -11.942 -0.082 0 0 0 0 0 0 0 +-16.692 -12.052 -0.083 0 0 0 0 0 0 0 +-16.678 -12.122 -0.083 0 0 0 0 0 0 0 +-16.7 -12.218 -0.084 0 0 0 0 0 0 0 +-16.705 -12.303 -0.085 0 0 0 0 0 0 0 +-16.708 -12.386 -0.086 0 0 0 0 0 0 0 +-16.736 -12.448 -0.087 0 0 0 0 0 0 0 +-16.755 -12.544 -0.088 0 0 0 0 0 0 0 +-16.742 -12.617 -0.088 0 0 0 0 0 0 0 +-16.76 -12.713 -0.089 0 0 0 0 0 0 0 +-16.769 -12.804 -0.09 0 0 0 0 0 0 0 +-16.784 -12.899 -0.091 0 0 0 0 0 0 0 +-16.772 -12.974 -0.092 0 0 0 0 0 0 0 +-16.826 -13.058 -0.093 0 0 0 0 0 0 0 +-16.812 -13.131 -0.093 0 0 0 0 0 0 0 +-16.811 -13.216 -0.094 0 0 0 0 0 0 0 +-16.824 -13.313 -0.095 0 0 0 0 0 0 0 +-16.825 -13.399 -0.096 0 0 0 0 0 0 0 +-16.832 -13.492 -0.097 0 0 0 0 0 0 0 +-16.852 -13.595 -0.098 0 0 0 0 0 0 0 +-16.85 -13.681 -0.099 0 0 0 0 0 0 0 +-16.879 -13.749 -0.1 0 0 0 0 0 0 0 +-16.896 -13.851 -0.101 0 0 0 0 0 0 0 +-16.897 -13.941 -0.102 0 0 0 0 0 0 0 +-16.918 -14.048 -0.103 0 0 0 0 0 0 0 +-16.93 -14.149 -0.104 0 0 0 0 0 0 0 +-16.932 -14.241 -0.105 0 0 0 0 0 0 0 +-16.94 -14.339 -0.106 0 0 0 0 0 0 0 +-16.974 -14.413 -0.107 0 0 0 0 0 0 0 +-16.973 -14.504 -0.107 0 0 0 0 0 0 0 +-16.994 -14.615 -0.109 0 0 0 0 0 0 0 +-17.008 -14.721 -0.11 0 0 0 0 0 0 0 +-17.021 -14.826 -0.111 0 0 0 0 0 0 0 +-17.037 -14.934 -0.112 0 0 0 0 0 0 0 +-17.034 -15.026 -0.113 0 0 0 0 0 0 0 +-17.064 -15.101 -0.114 0 0 0 0 0 0 0 +-17.07 -15.202 -0.115 0 0 0 0 0 0 0 +-17.091 -15.317 -0.116 0 0 0 0 0 0 0 +-17.093 -15.416 -0.117 0 0 0 0 0 0 0 +-17.112 -15.532 -0.118 0 0 0 0 0 0 0 +-17.117 -15.634 -0.119 0 0 0 0 0 0 0 +-17.133 -15.749 -0.121 0 0 0 0 0 0 0 +-17.148 -15.813 -0.121 0 0 0 0 0 0 0 +-17.17 -15.933 -0.123 0 0 0 0 0 0 0 +-17.174 -16.037 -0.124 0 0 0 0 0 0 0 +-17.191 -16.154 -0.125 0 0 0 0 0 0 0 +-17.198 -16.263 -0.126 0 0 0 0 0 0 0 +-17.209 -16.377 -0.127 0 0 0 0 0 0 0 +-17.218 -16.489 -0.129 0 0 0 0 0 0 0 +-17.26 -16.581 -0.13 0 0 0 0 0 0 0 +-17.261 -16.687 -0.131 0 0 0 0 0 0 0 +-17.281 -16.812 -0.132 0 0 0 0 0 0 0 +-17.28 -16.917 -0.133 0 0 0 0 0 0 0 +-17.294 -17.037 -0.135 0 0 0 0 0 0 0 +-17.304 -17.155 -0.136 0 0 0 0 0 0 0 +-17.315 -17.274 -0.137 0 0 0 0 0 0 0 +-17.35 -17.363 -0.139 0 0 0 0 0 0 0 +-17.37 -17.493 -0.14 0 0 0 0 0 0 0 +-17.381 -17.614 -0.141 0 0 0 0 0 0 0 +-17.392 -17.738 -0.143 0 0 0 0 0 0 0 +-17.398 -17.855 -0.144 0 0 0 0 0 0 0 +-17.411 -17.982 -0.145 0 0 0 0 0 0 0 +-17.418 -18.103 -0.147 0 0 0 0 0 0 0 +-17.462 -18.205 -0.148 0 0 0 0 0 0 0 +-17.473 -18.332 -0.149 0 0 0 0 0 0 0 +-17.487 -18.463 -0.151 0 0 0 0 0 0 0 +-17.487 -18.579 -0.152 0 0 0 0 0 0 0 +-18.192 -19.452 -0.168 0 0 0 0 0 0 0 +-18.081 -19.455 -0.167 0 0 0 0 0 0 0 +-20.593 -22.304 -0.22 0 0 0 0 0 0 0 +-20.654 -22.441 -0.222 0 0 0 0 0 0 0 +-20.495 -22.408 -0.22 0 0 0 0 0 0 0 +-20.659 -22.732 -0.225 0 0 0 0 0 0 0 +-20.606 -22.961 -0.227 0 0 0 0 0 0 0 +-20.834 -23.363 -0.233 0 0 0 0 0 0 0 +-20.582 -23.226 -0.229 0 0 0 0 0 0 0 +-20.476 -23.181 -0.228 0 0 0 0 0 0 0 +-20.547 -23.409 -0.231 0 0 0 0 0 0 0 +-20.651 -23.677 -0.235 0 0 0 0 0 0 0 +-20.636 -23.811 -0.236 0 0 0 0 0 0 0 +-18.942 -21.993 -0.201 0 0 0 0 0 0 0 +-18.726 -21.88 -0.198 0 0 0 0 0 0 0 +-18.665 -21.948 -0.198 0 0 0 0 0 0 0 +-18.629 -21.976 -0.198 0 0 0 0 0 0 0 +-18.622 -22.108 -0.2 0 0 0 0 0 0 0 +-18.469 -22.066 -0.198 0 0 0 0 0 0 0 +-18.424 -22.153 -0.198 0 0 0 0 0 0 0 +-18.512 -22.403 -0.202 0 0 0 0 0 0 0 +-18.594 -22.646 -0.205 0 0 0 0 0 0 0 +-18.512 -22.692 -0.205 0 0 0 0 0 0 0 +-18.578 -22.845 -0.207 0 0 0 0 0 0 0 +-25.152 -31.144 -0.356 0 0 0 0 0 0 0 +-25.174 -31.373 -0.358 0 0 0 0 0 0 0 +-25.199 -31.607 -0.361 0 0 0 0 0 0 0 +-25.209 -31.824 -0.364 0 0 0 0 0 0 0 +-19.372 -24.604 -0.233 0 0 0 0 0 0 0 +-19.131 -24.455 -0.23 0 0 0 0 0 0 0 +-19.017 -24.389 -0.228 0 0 0 0 0 0 0 +-18.881 -24.371 -0.227 0 0 0 0 0 0 0 +-18.796 -24.419 -0.226 0 0 0 0 0 0 0 +-18.819 -24.61 -0.229 0 0 0 0 0 0 0 +-18.758 -24.69 -0.229 0 0 0 0 0 0 0 +-18.782 -24.885 -0.231 0 0 0 0 0 0 0 +-18.799 -25.07 -0.234 0 0 0 0 0 0 0 +-18.867 -25.326 -0.237 0 0 0 0 0 0 0 +-25.581 -34.468 -0.396 0 0 0 0 0 0 0 +-25.603 -34.726 -0.399 0 0 0 0 0 0 0 +-25.634 -34.996 -0.403 0 0 0 0 0 0 0 +-25.661 -35.266 -0.406 0 0 0 0 0 0 0 +-25.681 -35.528 -0.409 0 0 0 0 0 0 0 +-25.709 -35.804 -0.412 0 0 0 0 0 0 0 +-25.738 -36.083 -0.416 0 0 0 0 0 0 0 +-25.811 -36.306 -0.419 0 0 0 0 0 0 0 +-25.847 -36.599 -0.423 0 0 0 0 0 0 0 +-25.869 -36.877 -0.426 0 0 0 0 0 0 0 +-25.899 -37.166 -0.429 0 0 0 0 0 0 0 +-25.791 -37.261 -0.43 0 0 0 0 0 0 0 +-25.959 -37.757 -0.437 0 0 0 0 0 0 0 +-25.991 -38.06 -0.44 0 0 0 0 0 0 0 +-26.082 -38.322 -0.444 0 0 0 0 0 0 0 +-26.124 -38.644 -0.448 0 0 0 0 0 0 0 +-26.146 -38.94 -0.452 0 0 0 0 0 0 0 +-26.175 -39.25 -0.456 0 0 0 0 0 0 0 +-26.216 -39.581 -0.46 0 0 0 0 0 0 0 +-26.246 -39.897 -0.464 0 0 0 0 0 0 0 +-26.274 -40.215 -0.468 0 0 0 0 0 0 0 +-26.369 -40.5 -0.472 0 0 0 0 0 0 0 +-26.398 -40.824 -0.476 0 0 0 0 0 0 0 +-26.436 -41.166 -0.48 0 0 0 0 0 0 0 +-26.467 -41.502 -0.484 0 0 0 0 0 0 0 +-26.501 -41.844 -0.489 0 0 0 0 0 0 0 +-26.53 -42.182 -0.493 0 0 0 0 0 0 0 +-26.574 -42.549 -0.498 0 0 0 0 0 0 0 +-26.67 -42.854 -0.502 0 0 0 0 0 0 0 +-26.708 -43.216 -0.507 0 0 0 0 0 0 0 +-26.747 -43.585 -0.511 0 0 0 0 0 0 0 +-26.776 -43.942 -0.516 0 0 0 0 0 0 0 +-26.801 -44.296 -0.52 0 0 0 0 0 0 0 +-19.516 -32.471 -0.326 0 0 0 0 0 0 0 +-19.411 -32.529 -0.325 0 0 0 0 0 0 0 +-19.332 -32.511 -0.325 0 0 0 0 0 0 0 +-19.253 -32.611 -0.325 0 0 0 0 0 0 0 +-19.248 -32.839 -0.328 0 0 0 0 0 0 0 +-27.789 -47.777 -0.569 0 0 0 0 0 0 0 +-27.647 -47.878 -0.569 0 0 0 0 0 0 0 +-27.487 -47.949 -0.569 0 0 0 0 0 0 0 +-27.352 -48.063 -0.57 0 0 0 0 0 0 0 +-27.366 -48.264 -0.572 0 0 0 0 0 0 0 +-27.413 -48.702 -0.578 0 0 0 0 0 0 0 +-20.151 -36.051 -0.373 0 0 0 0 0 0 0 +-20.011 -36.067 -0.373 0 0 0 0 0 0 0 +-19.872 -36.082 -0.372 0 0 0 0 0 0 0 +-19.741 -36.113 -0.371 0 0 0 0 0 0 0 +-19.639 -36.196 -0.372 0 0 0 0 0 0 0 +-19.732 -36.505 -0.376 0 0 0 0 0 0 0 +-27.821 -51.882 -0.62 0 0 0 0 0 0 0 +-27.871 -52.37 -0.626 0 0 0 0 0 0 0 +-15.648 -29.83 -0.267 0 0 0 0 0 0 0 +-20.625 -39.637 -0.421 0 0 0 0 0 0 0 +-20.477 -39.655 -0.42 0 0 0 0 0 0 0 +-20.398 -39.655 -0.42 0 0 0 0 0 0 0 +-20.249 -39.671 -0.419 0 0 0 0 0 0 0 +-20.143 -39.772 -0.419 0 0 0 0 0 0 0 +-20.154 -40.107 -0.424 0 0 0 0 0 0 0 +-28.413 -57.012 -0.687 0 0 0 0 0 0 0 +-28.501 -57.641 -0.696 0 0 0 0 0 0 0 +-28.568 -58.238 -0.704 0 0 0 0 0 0 0 +-28.679 -58.696 -0.71 0 0 0 0 0 0 0 +-20.976 -43.26 -0.468 0 0 0 0 0 0 0 +-20.818 -43.279 -0.468 0 0 0 0 0 0 0 +-20.669 -43.317 -0.467 0 0 0 0 0 0 0 +-20.662 -43.657 -0.472 0 0 0 0 0 0 0 +-29.065 -61.937 -0.754 0 0 0 0 0 0 0 +-29.127 -62.581 -0.762 0 0 0 0 0 0 0 +-29.299 -63.211 -0.771 0 0 0 0 0 0 0 +-21.558 -46.88 -0.518 0 0 0 0 0 0 0 +-21.388 -46.896 -0.517 0 0 0 0 0 0 0 +-21.226 -46.932 -0.516 0 0 0 0 0 0 0 +-21.093 -47.03 -0.517 0 0 0 0 0 0 0 +-21.584 -48.536 -0.539 0 0 0 0 0 0 0 +-21.429 -48.596 -0.539 0 0 0 0 0 0 0 +-21.326 -48.571 -0.538 0 0 0 0 0 0 0 +-15.824 -36.648 -0.354 0 0 0 0 0 0 0 +-15.704 -36.686 -0.354 0 0 0 0 0 0 0 +-22.101 -52.11 -0.588 0 0 0 0 0 0 0 +-21.92 -52.136 -0.587 0 0 0 0 0 0 0 +-21.749 -52.188 -0.587 0 0 0 0 0 0 0 +-23.724 -57.442 -0.666 0 0 0 0 0 0 0 +-23.616 -57.437 -0.665 0 0 0 0 0 0 0 +-23.467 -57.586 -0.666 0 0 0 0 0 0 0 +-22.504 -55.722 -0.637 0 0 0 0 0 0 0 +-22.326 -55.787 -0.637 0 0 0 0 0 0 0 +-22.223 -56.039 -0.64 0 0 0 0 0 0 0 +-14.598 -37.126 -0.354 0 0 0 0 0 0 0 +-14.477 -37.162 -0.354 0 0 0 0 0 0 0 +-14.402 -37.142 -0.353 0 0 0 0 0 0 0 +-14.273 -37.153 -0.352 0 0 0 0 0 0 0 +-14.143 -37.164 -0.352 0 0 0 0 0 0 0 +-14.016 -37.18 -0.351 0 0 0 0 0 0 0 +-13.885 -37.187 -0.351 0 0 0 0 0 0 0 +-13.759 -37.206 -0.351 0 0 0 0 0 0 0 +-13.691 -37.203 -0.35 0 0 0 0 0 0 0 +-13.568 -37.227 -0.35 0 0 0 0 0 0 0 +-13.44 -37.239 -0.349 0 0 0 0 0 0 0 +-13.311 -37.249 -0.349 0 0 0 0 0 0 0 +-13.218 -37.359 -0.35 0 0 0 0 0 0 0 +-13.242 -37.804 -0.356 0 0 0 0 0 0 0 +-13.271 -38.273 -0.362 0 0 0 0 0 0 0 +-13.309 -38.776 -0.369 0 0 0 0 0 0 0 +-13.413 -39.281 -0.376 0 0 0 0 0 0 0 +-13.468 -39.852 -0.384 0 0 0 0 0 0 0 +-13.597 -40.657 -0.395 0 0 0 0 0 0 0 +-19.954 -68.158 -0.79 0 0 0 0 0 0 0 +-19.719 -68.15 -0.789 0 0 0 0 0 0 0 +-4.463 -65.47 -0.714 0 0 0 0 0 0 0 +-4.254 -65.432 -0.714 0 0 0 0 0 0 0 +-4.158 -65.554 -0.715 0 0 0 0 0 0 0 +-4.545 -75.462 -0.854 0 0 0 0 0 0 0 +-4.154 -72.761 -0.816 0 0 0 0 0 0 0 +-3.685 -68.286 -0.753 0 0 0 0 0 0 0 +-3.129 -61.535 -0.658 0 0 0 0 0 0 0 +-2.931 -61.432 -0.657 0 0 0 0 0 0 0 +-2.721 -61.058 -0.651 0 0 0 0 0 0 0 +-2.456 -59.284 -0.626 0 0 0 0 0 0 0 +-2.35 -58.962 -0.622 0 0 0 0 0 0 0 +-2.097 -57.094 -0.595 0 0 0 0 0 0 0 +-1.848 -55.002 -0.566 0 0 0 0 0 0 0 +-1.571 -51.533 -0.517 0 0 0 0 0 0 0 +-1.389 -50.812 -0.507 0 0 0 0 0 0 0 +-1.214 -50.163 -0.498 0 0 0 0 0 0 0 +-1.016 -48.203 -0.47 0 0 0 0 0 0 0 +-0.866 -44.279 -0.415 0 0 0 0 0 0 0 +-0.727 -44.254 -0.415 0 0 0 0 0 0 0 +-0.575 -43.236 -0.401 0 0 0 0 0 0 0 +-0.43 -42.302 -0.387 0 0 0 0 0 0 0 +-0.223 -30.798 -0.226 0 0 0 0 0 0 0 +-0.161 -41.44 -0.375 0 0 0 0 0 0 0 +-0.096 -41.486 -0.376 0 0 0 0 0 0 0 +0.034 -41.602 -0.378 0 0 0 0 0 0 0 +0.165 -41.68 -0.379 0 0 0 0 0 0 0 +0.296 -41.661 -0.378 0 0 0 0 0 0 0 +0.478 -35.946 -0.298 0 0 0 0 0 0 0 +0.591 -35.956 -0.299 0 0 0 0 0 0 0 +0.822 -41.758 -0.38 0 0 0 0 0 0 0 +0.887 -41.761 -0.38 0 0 0 0 0 0 0 +1.021 -41.85 -0.381 0 0 0 0 0 0 0 +1.154 -41.896 -0.382 0 0 0 0 0 0 0 +1.282 -41.781 -0.38 0 0 0 0 0 0 0 +1.416 -41.864 -0.382 0 0 0 0 0 0 0 +1.542 -41.716 -0.38 0 0 0 0 0 0 0 +1.674 -41.719 -0.38 0 0 0 0 0 0 0 +1.748 -41.932 -0.383 0 0 0 0 0 0 0 +1.88 -41.922 -0.383 0 0 0 0 0 0 0 +1.976 -41.185 -0.372 0 0 0 0 0 0 0 +2.061 -40.326 -0.36 0 0 0 0 0 0 0 +2.202 -40.573 -0.364 0 0 0 0 0 0 0 +2.351 -40.937 -0.369 0 0 0 0 0 0 0 +2.476 -40.877 -0.369 0 0 0 0 0 0 0 +2.545 -40.945 -0.37 0 0 0 0 0 0 0 +2.74 -41.941 -0.384 0 0 0 0 0 0 0 +2.884 -42.11 -0.386 0 0 0 0 0 0 0 +3.014 -42.078 -0.386 0 0 0 0 0 0 0 +3.155 -42.184 -0.387 0 0 0 0 0 0 0 +3.292 -42.226 -0.388 0 0 0 0 0 0 0 +3.425 -42.221 -0.388 0 0 0 0 0 0 0 +3.493 -42.238 -0.389 0 0 0 0 0 0 0 +3.63 -42.275 -0.389 0 0 0 0 0 0 0 +3.767 -42.313 -0.39 0 0 0 0 0 0 0 +3.9 -42.297 -0.39 0 0 0 0 0 0 0 +4.036 -42.316 -0.39 0 0 0 0 0 0 0 +4.171 -42.323 -0.391 0 0 0 0 0 0 0 +4.463 -43.87 -0.413 0 0 0 0 0 0 0 +4.518 -43.725 -0.411 0 0 0 0 0 0 0 +4.631 -43.486 -0.407 0 0 0 0 0 0 0 +4.77 -43.495 -0.408 0 0 0 0 0 0 0 +4.906 -43.474 -0.408 0 0 0 0 0 0 0 +5.056 -43.568 -0.409 0 0 0 0 0 0 0 +5.203 -43.639 -0.411 0 0 0 0 0 0 0 +5.28 -43.136 -0.404 0 0 0 0 0 0 0 +5.327 -42.957 -0.401 0 0 0 0 0 0 0 +5.427 -42.67 -0.397 0 0 0 0 0 0 0 +5.527 -42.395 -0.394 0 0 0 0 0 0 0 +5.657 -42.35 -0.393 0 0 0 0 0 0 0 +5.799 -42.397 -0.394 0 0 0 0 0 0 0 +5.888 -42.064 -0.39 0 0 0 0 0 0 0 +6.014 -42.008 -0.389 0 0 0 0 0 0 0 +5.86 -40.484 -0.368 0 0 0 0 0 0 0 +5.936 -40.122 -0.363 0 0 0 0 0 0 0 +5.14 -34.027 -0.277 0 0 0 0 0 0 0 +5.249 -34.026 -0.277 0 0 0 0 0 0 0 +5.332 -33.86 -0.275 0 0 0 0 0 0 0 +5.407 -33.645 -0.272 0 0 0 0 0 0 0 +5.411 -33.011 -0.263 0 0 0 0 0 0 0 +5.449 -32.923 -0.262 0 0 0 0 0 0 0 +5.546 -32.864 -0.262 0 0 0 0 0 0 0 +5.603 -32.583 -0.258 0 0 0 0 0 0 0 +5.677 -32.403 -0.256 0 0 0 0 0 0 0 +5.79 -32.445 -0.256 0 0 0 0 0 0 0 +5.89 -32.418 -0.256 0 0 0 0 0 0 0 +6.037 -32.643 -0.26 0 0 0 0 0 0 0 +6.097 -32.677 -0.26 0 0 0 0 0 0 0 +6.161 -32.456 -0.258 0 0 0 0 0 0 0 +4.406 -22.859 -0.121 0 0 0 0 0 0 0 +4.468 -22.796 -0.12 0 0 0 0 0 0 0 +4.534 -22.755 -0.12 0 0 0 0 0 0 0 +4.609 -22.758 -0.12 0 0 0 0 0 0 0 +4.728 -22.973 -0.123 0 0 0 0 0 0 0 +4.767 -22.981 -0.123 0 0 0 0 0 0 0 +6.871 -32.554 -0.261 0 0 0 0 0 0 0 +6.944 -32.397 -0.259 0 0 0 0 0 0 0 +7.008 -32.203 -0.256 0 0 0 0 0 0 0 +7.101 -32.142 -0.256 0 0 0 0 0 0 0 +7.138 -31.835 -0.252 0 0 0 0 0 0 0 +7.181 -31.563 -0.248 0 0 0 0 0 0 0 +7.186 -31.358 -0.245 0 0 0 0 0 0 0 +7.224 -31.079 -0.242 0 0 0 0 0 0 0 +7.264 -30.81 -0.238 0 0 0 0 0 0 0 +7.303 -30.546 -0.235 0 0 0 0 0 0 0 +7.346 -30.306 -0.232 0 0 0 0 0 0 0 +7.375 -30.016 -0.228 0 0 0 0 0 0 0 +7.432 -29.844 -0.226 0 0 0 0 0 0 0 +7.487 -29.863 -0.226 0 0 0 0 0 0 0 +7.59 -29.876 -0.227 0 0 0 0 0 0 0 +7.633 -29.655 -0.224 0 0 0 0 0 0 0 +7.728 -29.638 -0.224 0 0 0 0 0 0 0 +7.714 -29.21 -0.218 0 0 0 0 0 0 0 +7.581 -28.349 -0.206 0 0 0 0 0 0 0 +7.624 -28.153 -0.203 0 0 0 0 0 0 0 +7.612 -27.935 -0.2 0 0 0 0 0 0 0 +7.645 -27.714 -0.197 0 0 0 0 0 0 0 +7.676 -27.492 -0.195 0 0 0 0 0 0 0 +7.712 -27.291 -0.192 0 0 0 0 0 0 0 +7.748 -27.091 -0.189 0 0 0 0 0 0 0 +7.773 -26.86 -0.186 0 0 0 0 0 0 0 +7.806 -26.66 -0.184 0 0 0 0 0 0 0 +7.814 -26.535 -0.182 0 0 0 0 0 0 0 +7.845 -26.336 -0.18 0 0 0 0 0 0 0 +7.863 -26.095 -0.176 0 0 0 0 0 0 0 +7.905 -25.94 -0.175 0 0 0 0 0 0 0 +7.933 -25.743 -0.172 0 0 0 0 0 0 0 +7.926 -25.437 -0.168 0 0 0 0 0 0 0 +7.973 -25.307 -0.166 0 0 0 0 0 0 0 +7.962 -25.137 -0.164 0 0 0 0 0 0 0 +7.994 -24.963 -0.162 0 0 0 0 0 0 0 +8.021 -24.782 -0.16 0 0 0 0 0 0 0 +8.046 -24.595 -0.157 0 0 0 0 0 0 0 +8.076 -24.425 -0.155 0 0 0 0 0 0 0 +8.092 -24.22 -0.152 0 0 0 0 0 0 0 +8.136 -24.1 -0.151 0 0 0 0 0 0 0 +8.143 -23.996 -0.15 0 0 0 0 0 0 0 +8.169 -23.826 -0.148 0 0 0 0 0 0 0 +8.177 -23.608 -0.145 0 0 0 0 0 0 0 +8.214 -23.477 -0.143 0 0 0 0 0 0 0 +3.736 -10.509 0.049 0 0 0 0 0 0 0 +3.787 -10.548 0.048 0 0 0 0 0 0 0 +3.781 -10.48 0.049 0 0 0 0 0 0 0 +8.28 -22.637 -0.132 0 0 0 0 0 0 0 +8.303 -22.482 -0.13 0 0 0 0 0 0 0 +8.33 -22.337 -0.129 0 0 0 0 0 0 0 +8.36 -22.206 -0.127 0 0 0 0 0 0 0 +8.293 -21.821 -0.122 0 0 0 0 0 0 0 +8.39 -21.868 -0.123 0 0 0 0 0 0 0 +8.27 -21.457 -0.117 0 0 0 0 0 0 0 +8.292 -21.314 -0.115 0 0 0 0 0 0 0 +8.315 -21.176 -0.113 0 0 0 0 0 0 0 +8.335 -21.033 -0.112 0 0 0 0 0 0 0 +8.343 -20.864 -0.109 0 0 0 0 0 0 0 +8.38 -20.767 -0.108 0 0 0 0 0 0 0 +8.425 -20.69 -0.108 0 0 0 0 0 0 0 +8.302 -20.298 -0.102 0 0 0 0 0 0 0 +8.354 -20.242 -0.101 0 0 0 0 0 0 0 +8.414 -20.208 -0.101 0 0 0 0 0 0 0 +8.467 -20.158 -0.101 0 0 0 0 0 0 0 +8.499 -20.058 -0.1 0 0 0 0 0 0 0 +8.481 -19.842 -0.097 0 0 0 0 0 0 0 +8.498 -19.71 -0.095 0 0 0 0 0 0 0 +8.505 -19.642 -0.094 0 0 0 0 0 0 0 +8.552 -19.58 -0.094 0 0 0 0 0 0 0 +8.515 -19.332 -0.091 0 0 0 0 0 0 0 +8.491 -19.113 -0.088 0 0 0 0 0 0 0 +8.551 -19.088 -0.088 0 0 0 0 0 0 0 +8.594 -19.023 -0.087 0 0 0 0 0 0 0 +8.649 -18.987 -0.087 0 0 0 0 0 0 0 +8.64 -18.888 -0.086 0 0 0 0 0 0 0 +8.615 -18.677 -0.083 0 0 0 0 0 0 0 +8.633 -18.563 -0.081 0 0 0 0 0 0 0 +8.665 -18.482 -0.081 0 0 0 0 0 0 0 +8.682 -18.368 -0.079 0 0 0 0 0 0 0 +8.703 -18.263 -0.078 0 0 0 0 0 0 0 +8.718 -18.149 -0.077 0 0 0 0 0 0 0 +8.716 -18.072 -0.076 0 0 0 0 0 0 0 +8.745 -17.987 -0.075 0 0 0 0 0 0 0 +8.794 -17.943 -0.075 0 0 0 0 0 0 0 +8.82 -17.855 -0.074 0 0 0 0 0 0 0 +8.927 -17.929 -0.075 0 0 0 0 0 0 0 +8.942 -17.819 -0.074 0 0 0 0 0 0 0 +8.96 -17.716 -0.073 0 0 0 0 0 0 0 +8.939 -17.607 -0.071 0 0 0 0 0 0 0 +8.934 -17.461 -0.069 0 0 0 0 0 0 0 +8.938 -17.334 -0.068 0 0 0 0 0 0 0 +8.981 -17.284 -0.067 0 0 0 0 0 0 0 +9.019 -17.226 -0.067 0 0 0 0 0 0 0 +9.033 -17.122 -0.066 0 0 0 0 0 0 0 +9.043 -17.01 -0.064 0 0 0 0 0 0 0 +8.941 -16.756 -0.061 0 0 0 0 0 0 0 +8.961 -16.666 -0.06 0 0 0 0 0 0 0 +9.013 -16.638 -0.06 0 0 0 0 0 0 0 +9.061 -16.603 -0.06 0 0 0 0 0 0 0 +9.104 -16.557 -0.059 0 0 0 0 0 0 0 +9.121 -16.465 -0.058 0 0 0 0 0 0 0 +9.131 -16.363 -0.057 0 0 0 0 0 0 0 +9.098 -16.244 -0.055 0 0 0 0 0 0 0 +9.092 -16.114 -0.054 0 0 0 0 0 0 0 +9.124 -16.053 -0.053 0 0 0 0 0 0 0 +9.163 -16.005 -0.053 0 0 0 0 0 0 0 +9.172 -15.905 -0.052 0 0 0 0 0 0 0 +9.193 -15.826 -0.051 0 0 0 0 0 0 0 +9.204 -15.732 -0.05 0 0 0 0 0 0 0 +9.208 -15.625 -0.049 0 0 0 0 0 0 0 +9.174 -15.513 -0.047 0 0 0 0 0 0 0 +9.193 -15.434 -0.046 0 0 0 0 0 0 0 +9.243 -15.407 -0.046 0 0 0 0 0 0 0 +9.3 -15.393 -0.047 0 0 0 0 0 0 0 +9.371 -15.4 -0.047 0 0 0 0 0 0 0 +9.466 -15.447 -0.048 0 0 0 0 0 0 0 +9.481 -15.363 -0.047 0 0 0 0 0 0 0 +7.06 -11.334 0.018 0 0 0 0 0 0 0 +7.089 -11.3 0.019 0 0 0 0 0 0 0 +7.105 -11.247 0.019 0 0 0 0 0 0 0 +7.214 -11.341 0.017 0 0 0 0 0 0 0 +7.166 -11.187 0.019 0 0 0 0 0 0 0 +7.218 -11.153 0.019 0 0 0 0 0 0 0 +7.251 -11.127 0.019 0 0 0 0 0 0 0 +7.277 -11.091 0.02 0 0 0 0 0 0 0 +7.311 -11.066 0.02 0 0 0 0 0 0 0 +7.336 -11.028 0.02 0 0 0 0 0 0 0 +7.368 -11.002 0.02 0 0 0 0 0 0 0 +7.381 -10.984 0.02 0 0 0 0 0 0 0 +7.41 -10.952 0.02 0 0 0 0 0 0 0 +7.439 -10.922 0.02 0 0 0 0 0 0 0 +7.473 -10.897 0.02 0 0 0 0 0 0 0 +7.501 -10.865 0.02 0 0 0 0 0 0 0 +7.528 -10.832 0.021 0 0 0 0 0 0 0 +7.563 -10.81 0.021 0 0 0 0 0 0 0 +7.571 -10.785 0.021 0 0 0 0 0 0 0 +7.597 -10.749 0.021 0 0 0 0 0 0 0 +7.627 -10.721 0.021 0 0 0 0 0 0 0 +7.664 -10.702 0.021 0 0 0 0 0 0 0 +7.807 -10.828 0.018 0 0 0 0 0 0 0 +9.546 -13.144 -0.022 0 0 0 0 0 0 0 +9.56 -13.077 -0.021 0 0 0 0 0 0 0 +9.574 -13.009 -0.021 0 0 0 0 0 0 0 +9.551 -12.935 -0.02 0 0 0 0 0 0 0 +9.487 -12.765 -0.017 0 0 0 0 0 0 0 +9.497 -12.696 -0.017 0 0 0 0 0 0 0 +9.512 -12.632 -0.016 0 0 0 0 0 0 0 +9.549 -12.599 -0.016 0 0 0 0 0 0 0 +9.585 -12.564 -0.016 0 0 0 0 0 0 0 +9.625 -12.536 -0.016 0 0 0 0 0 0 0 +9.619 -12.487 -0.015 0 0 0 0 0 0 0 +9.63 -12.421 -0.015 0 0 0 0 0 0 0 +9.647 -12.362 -0.014 0 0 0 0 0 0 0 +9.654 -12.291 -0.014 0 0 0 0 0 0 0 +9.625 -12.176 -0.012 0 0 0 0 0 0 0 +9.628 -12.102 -0.011 0 0 0 0 0 0 0 +9.635 -12.032 -0.011 0 0 0 0 0 0 0 +9.648 -12.01 -0.01 0 0 0 0 0 0 0 +9.684 -11.978 -0.01 0 0 0 0 0 0 0 +9.695 -11.915 -0.01 0 0 0 0 0 0 0 +9.701 -11.845 -0.009 0 0 0 0 0 0 0 +9.715 -11.787 -0.009 0 0 0 0 0 0 0 +9.725 -11.724 -0.008 0 0 0 0 0 0 0 +9.719 -11.68 -0.007 0 0 0 0 0 0 0 +9.728 -11.616 -0.007 0 0 0 0 0 0 0 +9.741 -11.558 -0.006 0 0 0 0 0 0 0 +9.732 -11.474 -0.005 0 0 0 0 0 0 0 +9.617 -11.267 -0.002 0 0 0 0 0 0 0 +9.608 -11.185 -0.001 0 0 0 0 0 0 0 +9.628 -11.138 -0.001 0 0 0 0 0 0 0 +9.624 -11.063 0 0 0 0 0 0 0 0 +9.625 -11.029 0 0 0 0 0 0 0 0 +9.62 -10.954 0.001 0 0 0 0 0 0 0 +9.644 -10.912 0.001 0 0 0 0 0 0 0 +9.646 -10.846 0.002 0 0 0 0 0 0 0 +9.66 -10.793 0.003 0 0 0 0 0 0 0 +9.655 -10.72 0.003 0 0 0 0 0 0 0 +9.667 -10.666 0.004 0 0 0 0 0 0 0 +9.646 -10.609 0.005 0 0 0 0 0 0 0 +9.672 -10.57 0.005 0 0 0 0 0 0 0 +9.709 -10.544 0.005 0 0 0 0 0 0 0 +9.709 -10.478 0.005 0 0 0 0 0 0 0 +9.732 -10.437 0.006 0 0 0 0 0 0 0 +9.721 -10.36 0.006 0 0 0 0 0 0 0 +9.741 -10.316 0.007 0 0 0 0 0 0 0 +9.727 -10.269 0.007 0 0 0 0 0 0 0 +9.747 -10.226 0.008 0 0 0 0 0 0 0 +9.746 -10.16 0.008 0 0 0 0 0 0 0 +9.761 -10.112 0.009 0 0 0 0 0 0 0 +9.761 -10.049 0.009 0 0 0 0 0 0 0 +9.782 -10.008 0.009 0 0 0 0 0 0 0 +9.783 -9.946 0.01 0 0 0 0 0 0 0 +9.789 -9.921 0.01 0 0 0 0 0 0 0 +9.789 -9.859 0.011 0 0 0 0 0 0 0 +9.8 -9.808 0.011 0 0 0 0 0 0 0 +9.792 -9.739 0.012 0 0 0 0 0 0 0 +9.811 -9.697 0.012 0 0 0 0 0 0 0 +9.809 -9.634 0.013 0 0 0 0 0 0 0 +9.813 -9.608 0.013 0 0 0 0 0 0 0 +9.81 -9.545 0.014 0 0 0 0 0 0 0 +9.837 -9.511 0.014 0 0 0 0 0 0 0 +9.825 -9.44 0.015 0 0 0 0 0 0 0 +9.846 -9.401 0.015 0 0 0 0 0 0 0 +9.852 -9.348 0.015 0 0 0 0 0 0 0 +9.869 -9.306 0.015 0 0 0 0 0 0 0 +9.868 -9.246 0.016 0 0 0 0 0 0 0 +9.872 -9.221 0.016 0 0 0 0 0 0 0 +9.863 -9.155 0.017 0 0 0 0 0 0 0 +9.881 -9.114 0.017 0 0 0 0 0 0 0 +9.855 -9.033 0.018 0 0 0 0 0 0 0 +9.87 -8.99 0.018 0 0 0 0 0 0 0 +9.875 -8.938 0.019 0 0 0 0 0 0 0 +9.892 -8.897 0.019 0 0 0 0 0 0 0 +9.888 -8.866 0.019 0 0 0 0 0 0 0 +9.904 -8.824 0.02 0 0 0 0 0 0 0 +9.896 -8.761 0.02 0 0 0 0 0 0 0 +9.929 -8.735 0.02 0 0 0 0 0 0 0 +9.919 -8.671 0.021 0 0 0 0 0 0 0 +9.936 -8.631 0.021 0 0 0 0 0 0 0 +9.929 -8.571 0.022 0 0 0 0 0 0 0 +9.934 -8.548 0.022 0 0 0 0 0 0 0 +9.938 -8.497 0.022 0 0 0 0 0 0 0 +9.952 -8.455 0.023 0 0 0 0 0 0 0 +9.95 -8.4 0.023 0 0 0 0 0 0 0 +9.981 -8.372 0.023 0 0 0 0 0 0 0 +9.99 -8.327 0.023 0 0 0 0 0 0 0 +10.03 -8.307 0.023 0 0 0 0 0 0 0 +10.027 -8.278 0.023 0 0 0 0 0 0 0 +10.06 -8.252 0.023 0 0 0 0 0 0 0 +10.073 -8.21 0.023 0 0 0 0 0 0 0 +10.089 -8.171 0.024 0 0 0 0 0 0 0 +10.107 -8.133 0.024 0 0 0 0 0 0 0 +10.13 -8.099 0.024 0 0 0 0 0 0 0 +10.15 -8.063 0.024 0 0 0 0 0 0 0 +10.185 -8.064 0.023 0 0 0 0 0 0 0 +10.239 -8.054 0.023 0 0 0 0 0 0 0 +10.229 -7.995 0.024 0 0 0 0 0 0 0 +10.264 -7.97 0.023 0 0 0 0 0 0 0 +10.274 -7.927 0.024 0 0 0 0 0 0 0 +10.309 -7.902 0.023 0 0 0 0 0 0 0 +10.327 -7.865 0.024 0 0 0 0 0 0 0 +10.343 -7.851 0.024 0 0 0 0 0 0 0 +10.353 -7.808 0.024 0 0 0 0 0 0 0 +10.382 -7.779 0.024 0 0 0 0 0 0 0 +10.392 -7.735 0.024 0 0 0 0 0 0 0 +10.429 -7.712 0.024 0 0 0 0 0 0 0 +10.449 -7.676 0.024 0 0 0 0 0 0 0 +10.471 -7.642 0.024 0 0 0 0 0 0 0 +10.475 -7.619 0.024 0 0 0 0 0 0 0 +10.505 -7.591 0.024 0 0 0 0 0 0 0 +10.519 -7.551 0.024 0 0 0 0 0 0 0 +10.553 -7.525 0.024 0 0 0 0 0 0 0 +10.567 -7.485 0.024 0 0 0 0 0 0 0 +10.597 -7.456 0.024 0 0 0 0 0 0 0 +10.612 -7.417 0.024 0 0 0 0 0 0 0 +10.627 -7.403 0.024 0 0 0 0 0 0 0 +10.648 -7.368 0.024 0 0 0 0 0 0 0 +10.668 -7.333 0.024 0 0 0 0 0 0 0 +10.691 -7.299 0.024 0 0 0 0 0 0 0 +10.711 -7.263 0.024 0 0 0 0 0 0 0 +10.73 -7.227 0.024 0 0 0 0 0 0 0 +10.751 -7.192 0.024 0 0 0 0 0 0 0 +10.766 -7.178 0.024 0 0 0 0 0 0 0 +10.783 -7.141 0.024 0 0 0 0 0 0 0 +10.806 -7.107 0.024 0 0 0 0 0 0 0 +10.828 -7.073 0.024 0 0 0 0 0 0 0 +10.823 -7.021 0.025 0 0 0 0 0 0 0 +10.843 -6.986 0.025 0 0 0 0 0 0 0 +10.87 -6.955 0.025 0 0 0 0 0 0 0 +10.878 -6.936 0.025 0 0 0 0 0 0 0 +10.928 -6.92 0.024 0 0 0 0 0 0 0 +10.94 -6.879 0.024 0 0 0 0 0 0 0 +10.973 -6.852 0.024 0 0 0 0 0 0 0 +10.981 -6.809 0.024 0 0 0 0 0 0 0 +11.016 -6.783 0.024 0 0 0 0 0 0 0 +11.034 -6.746 0.024 0 0 0 0 0 0 0 +11.051 -6.733 0.024 0 0 0 0 0 0 0 +11.086 -6.707 0.024 0 0 0 0 0 0 0 +11.15 -6.697 0.023 0 0 0 0 0 0 0 +11.18 -6.668 0.023 0 0 0 0 0 0 0 +11.249 -6.661 0.022 0 0 0 0 0 0 0 +11.285 -6.635 0.022 0 0 0 0 0 0 0 +11.351 -6.625 0.021 0 0 0 0 0 0 0 +11.377 -6.616 0.021 0 0 0 0 0 0 0 +11.439 -6.604 0.02 0 0 0 0 0 0 0 +11.481 -6.58 0.02 0 0 0 0 0 0 0 +11.545 -6.569 0.019 0 0 0 0 0 0 0 +11.573 -6.537 0.019 0 0 0 0 0 0 0 +11.628 -6.52 0.019 0 0 0 0 0 0 0 +11.659 -6.489 0.019 0 0 0 0 0 0 0 +11.76 -6.521 0.017 0 0 0 0 0 0 0 +11.803 -6.496 0.017 0 0 0 0 0 0 0 +11.857 -6.477 0.016 0 0 0 0 0 0 0 +11.925 -6.466 0.015 0 0 0 0 0 0 0 +11.959 -6.436 0.015 0 0 0 0 0 0 0 +12.031 -6.425 0.014 0 0 0 0 0 0 0 +12.068 -6.397 0.014 0 0 0 0 0 0 0 +12.135 -6.408 0.013 0 0 0 0 0 0 0 +12.184 -6.384 0.013 0 0 0 0 0 0 0 +12.243 -6.366 0.012 0 0 0 0 0 0 0 +12.271 -6.332 0.012 0 0 0 0 0 0 0 +8.788 -4.508 0.067 0 0 0 0 0 0 0 +8.786 -4.473 0.067 0 0 0 0 0 0 0 +12.5 -6.277 0.01 0 0 0 0 0 0 0 +12.584 -6.269 0.008 0 0 0 0 0 0 0 +12.619 -6.238 0.008 0 0 0 0 0 0 0 +12.7 -6.228 0.007 0 0 0 0 0 0 0 +12.738 -6.197 0.007 0 0 0 0 0 0 0 +12.82 -6.187 0.006 0 0 0 0 0 0 0 +12.874 -6.163 0.006 0 0 0 0 0 0 0 +12.932 -6.166 0.005 0 0 0 0 0 0 0 +12.984 -6.141 0.004 0 0 0 0 0 0 0 +13.063 -6.128 0.003 0 0 0 0 0 0 0 +13.091 -6.091 0.003 0 0 0 0 0 0 0 +13.163 -6.074 0.002 0 0 0 0 0 0 0 +13.191 -6.037 0.002 0 0 0 0 0 0 0 +13.25 -6.013 0.002 0 0 0 0 0 0 0 +13.322 -6.02 0.001 0 0 0 0 0 0 0 +13.39 -6 -0 0 0 0 0 0 0 0 +13.474 -5.987 -0.001 0 0 0 0 0 0 0 +13.535 -5.964 -0.002 0 0 0 0 0 0 0 +13.594 -5.939 -0.002 0 0 0 0 0 0 0 +13.661 -5.916 -0.003 0 0 0 0 0 0 0 +13.727 -5.894 -0.004 0 0 0 0 0 0 0 +13.78 -5.891 -0.005 0 0 0 0 0 0 0 +13.865 -5.876 -0.006 0 0 0 0 0 0 0 +14.076 -5.912 -0.008 0 0 0 0 0 0 0 +14.131 -5.883 -0.009 0 0 0 0 0 0 0 +14.185 -5.853 -0.01 0 0 0 0 0 0 0 +14.227 -5.819 -0.01 0 0 0 0 0 0 0 +14.279 -5.787 -0.01 0 0 0 0 0 0 0 +14.317 -5.777 -0.011 0 0 0 0 0 0 0 +14.374 -5.747 -0.011 0 0 0 0 0 0 0 +14.417 -5.712 -0.012 0 0 0 0 0 0 0 +14.474 -5.682 -0.012 0 0 0 0 0 0 0 +14.523 -5.648 -0.013 0 0 0 0 0 0 0 +14.569 -5.614 -0.013 0 0 0 0 0 0 0 +14.612 -5.578 -0.014 0 0 0 0 0 0 0 +14.637 -5.535 -0.014 0 0 0 0 0 0 0 +14.657 -5.516 -0.014 0 0 0 0 0 0 0 +14.703 -5.48 -0.014 0 0 0 0 0 0 0 +14.755 -5.447 -0.015 0 0 0 0 0 0 0 +14.816 -5.416 -0.016 0 0 0 0 0 0 0 +14.929 -5.404 -0.017 0 0 0 0 0 0 0 +14.983 -5.371 -0.018 0 0 0 0 0 0 0 +15.032 -5.335 -0.018 0 0 0 0 0 0 0 +15.073 -5.323 -0.018 0 0 0 0 0 0 0 +15.121 -5.286 -0.019 0 0 0 0 0 0 0 +15.187 -5.256 -0.02 0 0 0 0 0 0 0 +15.207 -5.209 -0.02 0 0 0 0 0 0 0 +15.206 -5.156 -0.02 0 0 0 0 0 0 0 +15.234 -5.112 -0.02 0 0 0 0 0 0 0 +15.223 -5.082 -0.019 0 0 0 0 0 0 0 +15.248 -5.037 -0.02 0 0 0 0 0 0 0 +15.352 -5.017 -0.021 0 0 0 0 0 0 0 +15.546 -5.027 -0.023 0 0 0 0 0 0 0 +15.604 -4.991 -0.024 0 0 0 0 0 0 0 +15.66 -4.955 -0.025 0 0 0 0 0 0 0 +15.723 -4.92 -0.025 0 0 0 0 0 0 0 +15.786 -4.886 -0.026 0 0 0 0 0 0 0 +15.799 -4.863 -0.026 0 0 0 0 0 0 0 +15.728 -4.787 -0.025 0 0 0 0 0 0 0 +15.49 -4.662 -0.021 0 0 0 0 0 0 0 +15.444 -4.595 -0.02 0 0 0 0 0 0 0 +15.477 -4.552 -0.021 0 0 0 0 0 0 0 +15.528 -4.514 -0.021 0 0 0 0 0 0 0 +15.534 -4.463 -0.021 0 0 0 0 0 0 0 +15.507 -4.429 -0.02 0 0 0 0 0 0 0 +15.574 -4.395 -0.021 0 0 0 0 0 0 0 +15.631 -4.358 -0.022 0 0 0 0 0 0 0 +15.683 -4.319 -0.022 0 0 0 0 0 0 0 +15.725 -4.278 -0.023 0 0 0 0 0 0 0 +15.797 -4.244 -0.024 0 0 0 0 0 0 0 +15.847 -4.204 -0.024 0 0 0 0 0 0 0 +15.905 -4.193 -0.025 0 0 0 0 0 0 0 +15.963 -4.154 -0.026 0 0 0 0 0 0 0 +16.021 -4.115 -0.026 0 0 0 0 0 0 0 +16.074 -4.075 -0.027 0 0 0 0 0 0 0 +16.118 -4.033 -0.027 0 0 0 0 0 0 0 +16.2 -3.999 -0.028 0 0 0 0 0 0 0 +16.261 -3.96 -0.029 0 0 0 0 0 0 0 +16.289 -3.939 -0.029 0 0 0 0 0 0 0 +16.364 -3.903 -0.03 0 0 0 0 0 0 0 +16.423 -3.863 -0.031 0 0 0 0 0 0 0 +16.499 -3.826 -0.032 0 0 0 0 0 0 0 +16.536 -3.78 -0.032 0 0 0 0 0 0 0 +16.61 -3.742 -0.033 0 0 0 0 0 0 0 +16.659 -3.698 -0.034 0 0 0 0 0 0 0 +16.714 -3.682 -0.034 0 0 0 0 0 0 0 +16.78 -3.641 -0.035 0 0 0 0 0 0 0 +16.842 -3.599 -0.036 0 0 0 0 0 0 0 +16.92 -3.56 -0.037 0 0 0 0 0 0 0 +16.964 -3.514 -0.037 0 0 0 0 0 0 0 +17.022 -3.47 -0.038 0 0 0 0 0 0 0 +17.112 -3.432 -0.039 0 0 0 0 0 0 0 +17.152 -3.413 -0.04 0 0 0 0 0 0 0 +17.23 -3.372 -0.041 0 0 0 0 0 0 0 +17.291 -3.327 -0.041 0 0 0 0 0 0 0 +17.361 -3.284 -0.042 0 0 0 0 0 0 0 +17.505 -3.254 -0.044 0 0 0 0 0 0 0 +13.731 -2.514 0.01 0 0 0 0 0 0 0 +13.668 -2.458 0.011 0 0 0 0 0 0 0 +13.609 -2.425 0.012 0 0 0 0 0 0 0 +13.6 -2.38 0.012 0 0 0 0 0 0 0 +13.586 -2.333 0.012 0 0 0 0 0 0 0 +13.597 -2.291 0.012 0 0 0 0 0 0 0 +13.587 -2.246 0.013 0 0 0 0 0 0 0 +13.605 -2.205 0.012 0 0 0 0 0 0 0 +13.614 -2.162 0.012 0 0 0 0 0 0 0 +13.63 -2.143 0.012 0 0 0 0 0 0 0 +13.676 -2.106 0.012 0 0 0 0 0 0 0 +13.68 -2.063 0.012 0 0 0 0 0 0 0 +13.756 -2.03 0.011 0 0 0 0 0 0 0 +13.774 -1.988 0.01 0 0 0 0 0 0 0 +13.844 -1.954 0.01 0 0 0 0 0 0 0 +19.329 -2.656 -0.068 0 0 0 0 0 0 0 +19.41 -2.636 -0.069 0 0 0 0 0 0 0 +19.5 -2.585 -0.07 0 0 0 0 0 0 0 +19.547 -2.529 -0.071 0 0 0 0 0 0 0 +19.438 -2.453 -0.069 0 0 0 0 0 0 0 +19.432 -2.39 -0.069 0 0 0 0 0 0 0 +19.541 -2.341 -0.07 0 0 0 0 0 0 0 +19.568 -2.282 -0.071 0 0 0 0 0 0 0 +19.615 -2.257 -0.071 0 0 0 0 0 0 0 +19.664 -2.199 -0.072 0 0 0 0 0 0 0 +19.714 -2.142 -0.072 0 0 0 0 0 0 0 +19.761 -2.085 -0.073 0 0 0 0 0 0 0 +19.815 -2.027 -0.074 0 0 0 0 0 0 0 +19.881 -1.971 -0.074 0 0 0 0 0 0 0 +19.917 -1.911 -0.075 0 0 0 0 0 0 0 +19.958 -1.883 -0.075 0 0 0 0 0 0 0 +19.987 -1.823 -0.076 0 0 0 0 0 0 0 +20.065 -1.766 -0.077 0 0 0 0 0 0 0 +20.479 -1.737 -0.083 0 0 0 0 0 0 0 +20.638 -1.685 -0.085 0 0 0 0 0 0 0 +20.687 -1.624 -0.085 0 0 0 0 0 0 0 +20.757 -1.564 -0.086 0 0 0 0 0 0 0 +20.832 -1.536 -0.087 0 0 0 0 0 0 0 +20.968 -1.48 -0.089 0 0 0 0 0 0 0 +21.021 -1.417 -0.09 0 0 0 0 0 0 0 +21.071 -1.354 -0.09 0 0 0 0 0 0 0 +21.141 -1.292 -0.091 0 0 0 0 0 0 0 +21.243 -1.231 -0.093 0 0 0 0 0 0 0 +21.456 -1.176 -0.096 0 0 0 0 0 0 0 +21.656 -1.152 -0.098 0 0 0 0 0 0 0 +22.091 -1.105 -0.104 0 0 0 0 0 0 0 +21.443 -1.006 -0.095 0 0 0 0 0 0 0 +21.212 -0.929 -0.092 0 0 0 0 0 0 0 +21.225 -0.863 -0.092 0 0 0 0 0 0 0 +21.179 -0.794 -0.092 0 0 0 0 0 0 0 +21.108 -0.725 -0.09 0 0 0 0 0 0 0 +21.075 -0.691 -0.09 0 0 0 0 0 0 0 +21.135 -0.626 -0.091 0 0 0 0 0 0 0 +21.189 -0.561 -0.092 0 0 0 0 0 0 0 +21.258 -0.496 -0.093 0 0 0 0 0 0 0 +21.34 -0.431 -0.094 0 0 0 0 0 0 0 +21.393 -0.365 -0.094 0 0 0 0 0 0 0 +21.456 -0.298 -0.095 0 0 0 0 0 0 0 +21.501 -0.265 -0.096 0 0 0 0 0 0 0 +21.561 -0.198 -0.097 0 0 0 0 0 0 0 +21.662 -0.131 -0.098 0 0 0 0 0 0 0 +23.206 -0.065 -0.12 0 0 0 0 0 0 0 +35.774 0.018 -0.545 0 0 0 0 0 0 0 +35.572 0.13 -0.541 0 0 0 0 0 0 0 +35.387 0.241 -0.537 0 0 0 0 0 0 0 +35.412 0.352 -0.537 0 0 0 0 0 0 0 +35.193 0.461 -0.533 0 0 0 0 0 0 0 +35.012 0.513 -0.529 0 0 0 0 0 0 0 +34.839 0.62 -0.526 0 0 0 0 0 0 0 +34.669 0.727 -0.522 0 0 0 0 0 0 0 +34.506 0.832 -0.519 0 0 0 0 0 0 0 +34.34 0.936 -0.515 0 0 0 0 0 0 0 +34.167 1.039 -0.512 0 0 0 0 0 0 0 +34.013 1.141 -0.509 0 0 0 0 0 0 0 +33.86 1.189 -0.505 0 0 0 0 0 0 0 +33.712 1.29 -0.502 0 0 0 0 0 0 0 +33.552 1.39 -0.499 0 0 0 0 0 0 0 +33.395 1.489 -0.496 0 0 0 0 0 0 0 +33.259 1.587 -0.493 0 0 0 0 0 0 0 +33.168 1.687 -0.491 0 0 0 0 0 0 0 +33.094 1.788 -0.49 0 0 0 0 0 0 0 +25.384 1.498 -0.328 0 0 0 0 0 0 0 +33.097 2.049 -0.49 0 0 0 0 0 0 0 +33.089 2.153 -0.49 0 0 0 0 0 0 0 +33.098 2.258 -0.491 0 0 0 0 0 0 0 +33.134 2.365 -0.491 0 0 0 0 0 0 0 +33.179 2.473 -0.493 0 0 0 0 0 0 0 +33.218 2.528 -0.493 0 0 0 0 0 0 0 +33.262 2.637 -0.495 0 0 0 0 0 0 0 +33.335 2.748 -0.496 0 0 0 0 0 0 0 +33.375 2.857 -0.497 0 0 0 0 0 0 0 +33.688 2.99 -0.504 0 0 0 0 0 0 0 +33.551 3.084 -0.501 0 0 0 0 0 0 0 +18.706 1.79 -0.189 0 0 0 0 0 0 0 +18.976 1.846 -0.195 0 0 0 0 0 0 0 +18.745 1.883 -0.19 0 0 0 0 0 0 0 +60.371 6.198 -1.067 0 0 0 0 0 0 0 +60.629 6.61 -1.074 0 0 0 0 0 0 0 +60.69 6.81 -1.075 0 0 0 0 0 0 0 +60.779 7.013 -1.078 0 0 0 0 0 0 0 +60.923 7.126 -1.081 0 0 0 0 0 0 0 +25.12 3.194 -0.326 0 0 0 0 0 0 0 +25.263 3.293 -0.329 0 0 0 0 0 0 0 +25.472 3.401 -0.334 0 0 0 0 0 0 0 +61.545 8.378 -1.097 0 0 0 0 0 0 0 +61.732 8.502 -1.102 0 0 0 0 0 0 0 +46.955 6.623 -0.789 0 0 0 0 0 0 0 +43.903 6.335 -0.725 0 0 0 0 0 0 0 +43.917 6.478 -0.726 0 0 0 0 0 0 0 +20.796 3.148 -0.236 0 0 0 0 0 0 0 +43.141 6.78 -0.711 0 0 0 0 0 0 0 +43.055 6.836 -0.709 0 0 0 0 0 0 0 +43.016 6.968 -0.709 0 0 0 0 0 0 0 +42.812 7.074 -0.705 0 0 0 0 0 0 0 +42.644 7.184 -0.702 0 0 0 0 0 0 0 +42.449 7.288 -0.698 0 0 0 0 0 0 0 +42.28 7.396 -0.695 0 0 0 0 0 0 0 +42.131 7.506 -0.692 0 0 0 0 0 0 0 +41.639 7.622 -0.683 0 0 0 0 0 0 0 +41.626 7.755 -0.683 0 0 0 0 0 0 0 +41.343 7.836 -0.677 0 0 0 0 0 0 0 +41.145 7.933 -0.674 0 0 0 0 0 0 0 +18.728 3.748 -0.195 0 0 0 0 0 0 0 +40.415 8.122 -0.659 0 0 0 0 0 0 0 +40.401 8.252 -0.66 0 0 0 0 0 0 0 +40.565 8.418 -0.664 0 0 0 0 0 0 0 +41.166 8.677 -0.677 0 0 0 0 0 0 0 +41.136 8.941 -0.678 0 0 0 0 0 0 0 +41.227 9.097 -0.68 0 0 0 0 0 0 0 +35.676 8.17 -0.562 0 0 0 0 0 0 0 +35.74 8.303 -0.564 0 0 0 0 0 0 0 +35.796 8.434 -0.566 0 0 0 0 0 0 0 +39.597 9.458 -0.649 0 0 0 0 0 0 0 +39.439 9.552 -0.646 0 0 0 0 0 0 0 +39.428 9.615 -0.646 0 0 0 0 0 0 0 +39.405 9.74 -0.646 0 0 0 0 0 0 0 +39.489 9.893 -0.649 0 0 0 0 0 0 0 +41.547 10.546 -0.694 0 0 0 0 0 0 0 +41.518 10.677 -0.694 0 0 0 0 0 0 0 +41.468 10.803 -0.693 0 0 0 0 0 0 0 +41.426 10.932 -0.693 0 0 0 0 0 0 0 +41.641 11.128 -0.699 0 0 0 0 0 0 0 +34.397 9.255 -0.542 0 0 0 0 0 0 0 +42.889 11.822 -0.728 0 0 0 0 0 0 0 +42.913 11.974 -0.729 0 0 0 0 0 0 0 +16.156 4.58 -0.147 0 0 0 0 0 0 0 +16.322 4.682 -0.151 0 0 0 0 0 0 0 +17.202 5.021 -0.171 0 0 0 0 0 0 0 +16.515 4.934 -0.156 0 0 0 0 0 0 0 +16.501 4.986 -0.156 0 0 0 0 0 0 0 +16.48 5.036 -0.156 0 0 0 0 0 0 0 +16.464 5.088 -0.156 0 0 0 0 0 0 0 +17.266 5.424 -0.174 0 0 0 0 0 0 0 +18.091 5.807 -0.193 0 0 0 0 0 0 0 +18.084 5.867 -0.194 0 0 0 0 0 0 0 +18.08 5.929 -0.194 0 0 0 0 0 0 0 +16.315 5.41 -0.155 0 0 0 0 0 0 0 +16.323 5.441 -0.156 0 0 0 0 0 0 0 +16.283 5.484 -0.155 0 0 0 0 0 0 0 +16.255 5.532 -0.155 0 0 0 0 0 0 0 +17.017 5.849 -0.172 0 0 0 0 0 0 0 +17.032 5.915 -0.173 0 0 0 0 0 0 0 +16.133 5.86 -0.155 0 0 0 0 0 0 0 +16.084 5.9 -0.154 0 0 0 0 0 0 0 +16.064 5.95 -0.154 0 0 0 0 0 0 0 +15.528 5.919 -0.143 0 0 0 0 0 0 0 +15.795 6.049 -0.15 0 0 0 0 0 0 0 +16.56 6.46 -0.168 0 0 0 0 0 0 0 +17.078 6.723 -0.18 0 0 0 0 0 0 0 +17.849 7.09 -0.198 0 0 0 0 0 0 0 +34.328 13.736 -0.57 0 0 0 0 0 0 0 +34.864 15.498 -0.595 0 0 0 0 0 0 0 +34.802 15.602 -0.595 0 0 0 0 0 0 0 +33.573 15.369 -0.569 0 0 0 0 0 0 0 +33.539 15.482 -0.569 0 0 0 0 0 0 0 +40.547 19.02 -0.734 0 0 0 0 0 0 0 +40.402 19.107 -0.732 0 0 0 0 0 0 0 +40.312 19.142 -0.731 0 0 0 0 0 0 0 +40.183 19.236 -0.729 0 0 0 0 0 0 0 +40.223 19.411 -0.731 0 0 0 0 0 0 0 +40.286 19.597 -0.734 0 0 0 0 0 0 0 +40.508 19.863 -0.741 0 0 0 0 0 0 0 +41.667 20.593 -0.769 0 0 0 0 0 0 0 +41.602 20.723 -0.769 0 0 0 0 0 0 0 +41.56 20.784 -0.769 0 0 0 0 0 0 0 +39.198 19.759 -0.715 0 0 0 0 0 0 0 +29.083 14.783 -0.479 0 0 0 0 0 0 0 +38.906 19.919 -0.711 0 0 0 0 0 0 0 +38.766 20.002 -0.71 0 0 0 0 0 0 0 +38.631 20.086 -0.708 0 0 0 0 0 0 0 +38.5 20.172 -0.706 0 0 0 0 0 0 0 +38.352 20.248 -0.704 0 0 0 0 0 0 0 +38.272 20.283 -0.703 0 0 0 0 0 0 0 +38.284 20.443 -0.705 0 0 0 0 0 0 0 +37.127 19.977 -0.679 0 0 0 0 0 0 0 +38.227 20.723 -0.707 0 0 0 0 0 0 0 +37.991 20.905 -0.704 0 0 0 0 0 0 0 +37.881 21 -0.703 0 0 0 0 0 0 0 +38.033 21.162 -0.708 0 0 0 0 0 0 0 +36.149 20.264 -0.664 0 0 0 0 0 0 0 +37.555 21.206 -0.699 0 0 0 0 0 0 0 +37.481 21.32 -0.699 0 0 0 0 0 0 0 +37.296 21.37 -0.696 0 0 0 0 0 0 0 +37.194 21.467 -0.695 0 0 0 0 0 0 0 +37.169 21.531 -0.696 0 0 0 0 0 0 0 +37.199 21.705 -0.698 0 0 0 0 0 0 0 +36.75 21.598 -0.689 0 0 0 0 0 0 0 +36.188 21.421 -0.677 0 0 0 0 0 0 0 +36.055 21.496 -0.675 0 0 0 0 0 0 0 +35.927 21.573 -0.674 0 0 0 0 0 0 0 +35.791 21.644 -0.672 0 0 0 0 0 0 0 +35.701 21.666 -0.671 0 0 0 0 0 0 0 +35.581 21.747 -0.669 0 0 0 0 0 0 0 +35.467 21.831 -0.668 0 0 0 0 0 0 0 +35.321 21.895 -0.666 0 0 0 0 0 0 0 +35.3 22.035 -0.667 0 0 0 0 0 0 0 +35.3 22.189 -0.669 0 0 0 0 0 0 0 +37.547 23.765 -0.727 0 0 0 0 0 0 0 +29.685 18.861 -0.532 0 0 0 0 0 0 0 +29.552 18.906 -0.531 0 0 0 0 0 0 0 +29.6 19.068 -0.533 0 0 0 0 0 0 0 +34.717 22.514 -0.663 0 0 0 0 0 0 0 +13.032 8.587 -0.122 0 0 0 0 0 0 0 +34.11 22.58 -0.653 0 0 0 0 0 0 0 +33.999 22.661 -0.652 0 0 0 0 0 0 0 +33.895 22.669 -0.65 0 0 0 0 0 0 0 +33.756 22.729 -0.648 0 0 0 0 0 0 0 +33.648 22.811 -0.647 0 0 0 0 0 0 0 +33.531 22.886 -0.646 0 0 0 0 0 0 0 +33.454 22.988 -0.646 0 0 0 0 0 0 0 +33.428 23.124 -0.647 0 0 0 0 0 0 0 +33.429 23.281 -0.649 0 0 0 0 0 0 0 +33.46 23.38 -0.651 0 0 0 0 0 0 0 +33.448 23.529 -0.652 0 0 0 0 0 0 0 +33.446 23.685 -0.654 0 0 0 0 0 0 0 +33.575 23.934 -0.659 0 0 0 0 0 0 0 +34.038 24.425 -0.673 0 0 0 0 0 0 0 +33.844 24.448 -0.67 0 0 0 0 0 0 0 +33.882 24.638 -0.673 0 0 0 0 0 0 0 +33.885 24.721 -0.674 0 0 0 0 0 0 0 +33.849 24.858 -0.676 0 0 0 0 0 0 0 +33.802 24.987 -0.676 0 0 0 0 0 0 0 +33.726 25.096 -0.676 0 0 0 0 0 0 0 +33.652 25.205 -0.677 0 0 0 0 0 0 0 +33.667 25.382 -0.679 0 0 0 0 0 0 0 +33.659 25.542 -0.681 0 0 0 0 0 0 0 +33.49 25.496 -0.677 0 0 0 0 0 0 0 +17.278 13.256 -0.252 0 0 0 0 0 0 0 +17.352 13.399 -0.255 0 0 0 0 0 0 0 +17.374 13.504 -0.256 0 0 0 0 0 0 0 +17.382 13.598 -0.258 0 0 0 0 0 0 0 +33.341 26.221 -0.684 0 0 0 0 0 0 0 +33.321 26.375 -0.686 0 0 0 0 0 0 0 +33.352 26.484 -0.688 0 0 0 0 0 0 0 +33.35 26.654 -0.69 0 0 0 0 0 0 0 +33.33 26.81 -0.692 0 0 0 0 0 0 0 +33.32 26.975 -0.694 0 0 0 0 0 0 0 +6.741 5.519 0.022 0 0 0 0 0 0 0 +6.728 5.544 0.022 0 0 0 0 0 0 0 +6.718 5.571 0.022 0 0 0 0 0 0 0 +6.708 5.581 0.022 0 0 0 0 0 0 0 +11.824 9.937 -0.119 0 0 0 0 0 0 0 +11.808 9.987 -0.119 0 0 0 0 0 0 0 +11.797 10.042 -0.12 0 0 0 0 0 0 0 +11.811 10.118 -0.121 0 0 0 0 0 0 0 +11.828 10.196 -0.122 0 0 0 0 0 0 0 +11.852 10.249 -0.123 0 0 0 0 0 0 0 +33.257 28.88 -0.718 0 0 0 0 0 0 0 +33.245 29.054 -0.721 0 0 0 0 0 0 0 +33.235 29.23 -0.723 0 0 0 0 0 0 0 +33.223 29.404 -0.725 0 0 0 0 0 0 0 +33.22 29.588 -0.728 0 0 0 0 0 0 0 +33.198 29.757 -0.73 0 0 0 0 0 0 0 +33.241 29.889 -0.732 0 0 0 0 0 0 0 +33.231 30.07 -0.735 0 0 0 0 0 0 0 +33.207 30.238 -0.737 0 0 0 0 0 0 0 +33.196 30.42 -0.739 0 0 0 0 0 0 0 +33.124 30.545 -0.74 0 0 0 0 0 0 0 +16.419 15.254 -0.265 0 0 0 0 0 0 0 +16.319 15.258 -0.263 0 0 0 0 0 0 0 +16.234 15.226 -0.262 0 0 0 0 0 0 0 +16.163 15.255 -0.261 0 0 0 0 0 0 0 +16.095 15.286 -0.26 0 0 0 0 0 0 0 +16.048 15.338 -0.26 0 0 0 0 0 0 0 +16.014 15.402 -0.261 0 0 0 0 0 0 0 +15.987 15.473 -0.261 0 0 0 0 0 0 0 +15.979 15.563 -0.263 0 0 0 0 0 0 0 +16.116 15.745 -0.267 0 0 0 0 0 0 0 +32.795 32.205 -0.759 0 0 0 0 0 0 0 +32.766 32.38 -0.761 0 0 0 0 0 0 0 +32.713 32.53 -0.762 0 0 0 0 0 0 0 +32.684 32.706 -0.764 0 0 0 0 0 0 0 +32.634 32.863 -0.766 0 0 0 0 0 0 0 +32.601 33.036 -0.768 0 0 0 0 0 0 0 +32.551 33.193 -0.77 0 0 0 0 0 0 0 +32.574 33.321 -0.772 0 0 0 0 0 0 0 +32.515 33.47 -0.773 0 0 0 0 0 0 0 +32.474 33.639 -0.775 0 0 0 0 0 0 0 +32.432 33.807 -0.777 0 0 0 0 0 0 0 +32.394 33.981 -0.779 0 0 0 0 0 0 0 +32.367 34.167 -0.782 0 0 0 0 0 0 0 +32.32 34.332 -0.784 0 0 0 0 0 0 0 +32.33 34.451 -0.786 0 0 0 0 0 0 0 +32.289 34.624 -0.788 0 0 0 0 0 0 0 +32.276 34.83 -0.791 0 0 0 0 0 0 0 +32.325 35.103 -0.796 0 0 0 0 0 0 0 +32.27 35.265 -0.797 0 0 0 0 0 0 0 +32.204 35.415 -0.799 0 0 0 0 0 0 0 +32.182 35.502 -0.8 0 0 0 0 0 0 0 +32.12 35.658 -0.801 0 0 0 0 0 0 0 +32.051 35.808 -0.803 0 0 0 0 0 0 0 +32.005 35.983 -0.805 0 0 0 0 0 0 0 +31.932 36.128 -0.806 0 0 0 0 0 0 0 +31.875 36.293 -0.808 0 0 0 0 0 0 0 +31.817 36.458 -0.81 0 0 0 0 0 0 0 +31.725 36.7 -0.812 0 0 0 0 0 0 0 +31.655 36.852 -0.814 0 0 0 0 0 0 0 +31.6 37.023 -0.816 0 0 0 0 0 0 0 +31.519 37.163 -0.817 0 0 0 0 0 0 0 +21.212 25.184 -0.485 0 0 0 0 0 0 0 +21.018 25.114 -0.482 0 0 0 0 0 0 0 +20.886 25.115 -0.48 0 0 0 0 0 0 0 +20.832 25.131 -0.479 0 0 0 0 0 0 0 +20.829 25.289 -0.482 0 0 0 0 0 0 0 +20.78 25.391 -0.483 0 0 0 0 0 0 0 +19.178 23.587 -0.432 0 0 0 0 0 0 0 +19.077 23.614 -0.431 0 0 0 0 0 0 0 +18.983 23.649 -0.431 0 0 0 0 0 0 0 +18.878 23.671 -0.43 0 0 0 0 0 0 0 +30.864 38.798 -0.834 0 0 0 0 0 0 0 +30.778 38.94 -0.836 0 0 0 0 0 0 0 +30.73 39.131 -0.838 0 0 0 0 0 0 0 +30.781 39.451 -0.844 0 0 0 0 0 0 0 +30.739 39.654 -0.847 0 0 0 0 0 0 0 +30.665 39.815 -0.849 0 0 0 0 0 0 0 +30.584 39.97 -0.85 0 0 0 0 0 0 0 +30.52 40.147 -0.852 0 0 0 0 0 0 0 +30.48 40.225 -0.853 0 0 0 0 0 0 0 +30.385 40.362 -0.854 0 0 0 0 0 0 0 +30.232 40.422 -0.853 0 0 0 0 0 0 0 +30.055 40.449 -0.852 0 0 0 0 0 0 0 +29.919 40.532 -0.851 0 0 0 0 0 0 0 +29.812 40.654 -0.852 0 0 0 0 0 0 0 +29.751 40.705 -0.852 0 0 0 0 0 0 0 +29.666 40.857 -0.854 0 0 0 0 0 0 0 +22.012 31.667 -0.604 0 0 0 0 0 0 0 +21.948 31.786 -0.605 0 0 0 0 0 0 0 +23.689 36.341 -0.705 0 0 0 0 0 0 0 +28.256 43.637 -0.885 0 0 0 0 0 0 0 +28.069 43.952 -0.888 0 0 0 0 0 0 0 +28.034 44.048 -0.89 0 0 0 0 0 0 0 +18.61 29.461 -0.526 0 0 0 0 0 0 0 +18.467 29.44 -0.524 0 0 0 0 0 0 0 +18.353 29.463 -0.523 0 0 0 0 0 0 0 +18.26 29.519 -0.523 0 0 0 0 0 0 0 +18.19 29.614 -0.524 0 0 0 0 0 0 0 +18.142 29.744 -0.525 0 0 0 0 0 0 0 +27.531 45.272 -0.906 0 0 0 0 0 0 0 +27.367 45.323 -0.905 0 0 0 0 0 0 0 +27.247 45.446 -0.906 0 0 0 0 0 0 0 +14.834 26.923 -0.439 0 0 0 0 0 0 0 +14.781 26.927 -0.439 0 0 0 0 0 0 0 +12.637 23.202 -0.349 0 0 0 0 0 0 0 +12.546 23.208 -0.348 0 0 0 0 0 0 0 +12.489 23.277 -0.349 0 0 0 0 0 0 0 +12.377 23.242 -0.347 0 0 0 0 0 0 0 +24.599 48.498 -0.935 0 0 0 0 0 0 0 +24.467 48.616 -0.936 0 0 0 0 0 0 0 +24.395 48.854 -0.94 0 0 0 0 0 0 0 +24.437 49.13 -0.945 0 0 0 0 0 0 0 +24.305 49.253 -0.947 0 0 0 0 0 0 0 +24.187 49.405 -0.948 0 0 0 0 0 0 0 +23.19 47.749 -0.908 0 0 0 0 0 0 0 +23.043 47.827 -0.908 0 0 0 0 0 0 0 +13.878 29.298 -0.475 0 0 0 0 0 0 0 +16.68 35.343 -0.614 0 0 0 0 0 0 0 +16.533 35.319 -0.613 0 0 0 0 0 0 0 +16.441 35.413 -0.614 0 0 0 0 0 0 0 +22.929 49.77 -0.944 0 0 0 0 0 0 0 +22.779 49.857 -0.944 0 0 0 0 0 0 0 +22.648 49.984 -0.946 0 0 0 0 0 0 0 +22.511 50.101 -0.947 0 0 0 0 0 0 0 +21.224 47.439 -0.885 0 0 0 0 0 0 0 +21.08 47.516 -0.885 0 0 0 0 0 0 0 +22.352 50.81 -0.959 0 0 0 0 0 0 0 +22.225 50.954 -0.961 0 0 0 0 0 0 0 +22.08 51.058 -0.961 0 0 0 0 0 0 0 +21.94 51.175 -0.962 0 0 0 0 0 0 0 +16.685 41.237 -0.728 0 0 0 0 0 0 0 +16.569 41.322 -0.728 0 0 0 0 0 0 0 +13.422 33.949 -0.56 0 0 0 0 0 0 0 +13.458 34.356 -0.569 0 0 0 0 0 0 0 +13.487 34.748 -0.576 0 0 0 0 0 0 0 +13.536 35.203 -0.586 0 0 0 0 0 0 0 +13.401 35.182 -0.584 0 0 0 0 0 0 0 +15.16 41.142 -0.714 0 0 0 0 0 0 0 +14.98 41.048 -0.711 0 0 0 0 0 0 0 +14.74 40.791 -0.704 0 0 0 0 0 0 0 +16.274 46.389 -0.826 0 0 0 0 0 0 0 +15.726 46.939 -0.833 0 0 0 0 0 0 0 +15.673 47.774 -0.849 0 0 0 0 0 0 0 +15.296 47.379 -0.839 0 0 0 0 0 0 0 +18.308 57.305 -1.056 0 0 0 0 0 0 0 +18.951 59.963 -1.114 0 0 0 0 0 0 0 +18.766 60.035 -1.114 0 0 0 0 0 0 0 +18.731 60.591 -1.125 0 0 0 0 0 0 0 +12.785 42.563 -0.727 0 0 0 0 0 0 0 +12.612 42.473 -0.724 0 0 0 0 0 0 0 +16.748 57.024 -1.041 0 0 0 0 0 0 0 +16.113 56.168 -1.02 0 0 0 0 0 0 0 +15.918 56.152 -1.019 0 0 0 0 0 0 0 +15.48 55.268 -0.998 0 0 0 0 0 0 0 +15.345 55.123 -0.995 0 0 0 0 0 0 0 +15.218 55.339 -0.998 0 0 0 0 0 0 0 +19.733 75.414 -1.429 0 0 0 0 0 0 0 +19.548 75.677 -1.434 0 0 0 0 0 0 0 +13.449 52.439 -0.93 0 0 0 0 0 0 0 +15.484 62.807 -1.151 0 0 0 0 0 0 0 +2.651 13.122 -0.076 0 0 0 0 0 0 0 +2.556 12.865 -0.07 0 0 0 0 0 0 0 +3.443 17.568 -0.17 0 0 0 0 0 0 0 +3.394 17.612 -0.171 0 0 0 0 0 0 0 +3.331 17.581 -0.17 0 0 0 0 0 0 0 +9.847 52.143 -0.908 0 0 0 0 0 0 0 +0.609 3.539 0.13 0 0 0 0 0 0 0 +0.595 3.523 0.13 0 0 0 0 0 0 0 +0.583 3.519 0.13 0 0 0 0 0 0 0 +0.569 3.507 0.131 0 0 0 0 0 0 0 +0.562 3.496 0.131 0 0 0 0 0 0 0 +0.55 3.49 0.131 0 0 0 0 0 0 0 +0.532 3.448 0.132 0 0 0 0 0 0 0 +0.517 3.426 0.132 0 0 0 0 0 0 0 +0.508 3.44 0.132 0 0 0 0 0 0 0 +0.499 3.451 0.132 0 0 0 0 0 0 0 +3.164 22.132 -0.264 0 0 0 0 0 0 0 +0.467 3.308 0.135 0 0 0 0 0 0 0 +3.095 22.146 -0.264 0 0 0 0 0 0 0 +0.452 3.244 0.136 0 0 0 0 0 0 0 +6.475 47.203 -0.794 0 0 0 0 0 0 0 +6.335 47.281 -0.795 0 0 0 0 0 0 0 +6.191 47.336 -0.796 0 0 0 0 0 0 0 +5.904 46.277 -0.773 0 0 0 0 0 0 0 +5.754 46.257 -0.772 0 0 0 0 0 0 0 +6.032 49.108 -0.832 0 0 0 0 0 0 0 +0.357 3.191 0.138 0 0 0 0 0 0 0 +0.354 3.246 0.137 0 0 0 0 0 0 0 +0.341 3.227 0.137 0 0 0 0 0 0 0 +0.328 3.204 0.138 0 0 0 0 0 0 0 +0.317 3.197 0.138 0 0 0 0 0 0 0 +0.311 3.232 0.137 0 0 0 0 0 0 0 +0.306 3.233 0.137 0 0 0 0 0 0 0 +0.296 3.24 0.137 0 0 0 0 0 0 0 +0.282 3.197 0.138 0 0 0 0 0 0 0 +0.276 3.241 0.137 0 0 0 0 0 0 0 +0.26 3.183 0.138 0 0 0 0 0 0 0 +0.252 3.207 0.138 0 0 0 0 0 0 0 +0.238 3.156 0.139 0 0 0 0 0 0 0 +0.24 3.236 0.137 0 0 0 0 0 0 0 +0.227 3.201 0.138 0 0 0 0 0 0 0 +0.215 3.186 0.138 0 0 0 0 0 0 0 +0.206 3.199 0.138 0 0 0 0 0 0 0 +0.197 3.205 0.138 0 0 0 0 0 0 0 +0.187 3.216 0.138 0 0 0 0 0 0 0 +0.182 3.288 0.136 0 0 0 0 0 0 0 +0.167 3.215 0.138 0 0 0 0 0 0 0 +0.161 3.211 0.138 0 0 0 0 0 0 0 +0.153 3.244 0.137 0 0 0 0 0 0 0 +0.144 3.264 0.137 0 0 0 0 0 0 0 +0.132 3.228 0.137 0 0 0 0 0 0 0 +0.122 3.237 0.137 0 0 0 0 0 0 0 +0.113 3.255 0.137 0 0 0 0 0 0 0 +0.103 3.272 0.136 0 0 0 0 0 0 0 +0.1 3.326 0.135 0 0 0 0 0 0 0 +0.077 3.24 0.137 0 0 0 0 0 0 0 +0.065 3.193 0.138 0 0 0 0 0 0 0 +0.056 3.245 0.137 0 0 0 0 0 0 0 +0.047 3.271 0.137 0 0 0 0 0 0 0 +1.028 73.419 -1.335 0 0 0 0 0 0 0 +0.038 3.337 0.135 0 0 0 0 0 0 0 +0.793 73.076 -1.327 0 0 0 0 0 0 0 +0.032 3.341 0.135 0 0 0 0 0 0 0 +0.564 73.088 -1.327 0 0 0 0 0 0 0 +-0.01 3.243 0.137 0 0 0 0 0 0 0 +-0.02 3.263 0.137 0 0 0 0 0 0 0 +-0.03 3.295 0.136 0 0 0 0 0 0 0 +-0.035 3.231 0.137 0 0 0 0 0 0 0 +-0.378 28.537 -0.393 0 0 0 0 0 0 0 +-0.046 3.251 0.137 0 0 0 0 0 0 0 +-0.056 3.263 0.137 0 0 0 0 0 0 0 +-0.609 26.767 -0.356 0 0 0 0 0 0 0 +-0.844 24.938 -0.318 0 0 0 0 0 0 0 +-1.014 23.411 -0.286 0 0 0 0 0 0 0 +-1.06 23.615 -0.291 0 0 0 0 0 0 0 +-1.092 22.709 -0.272 0 0 0 0 0 0 0 +-1.44 20.034 -0.216 0 0 0 0 0 0 0 +-1.507 20.081 -0.217 0 0 0 0 0 0 0 +-1.519 19.41 -0.203 0 0 0 0 0 0 0 +-1.662 17.953 -0.173 0 0 0 0 0 0 0 +-1.707 17.82 -0.17 0 0 0 0 0 0 0 +-1.887 16.191 -0.137 0 0 0 0 0 0 0 +-1.921 16.038 -0.134 0 0 0 0 0 0 0 +-2.119 14.4 -0.1 0 0 0 0 0 0 0 +-2.144 14.262 -0.097 0 0 0 0 0 0 0 +-2.311 12.414 -0.06 0 0 0 0 0 0 0 +-2.357 12.442 -0.06 0 0 0 0 0 0 0 +-2.548 10.813 -0.028 0 0 0 0 0 0 0 +-2.562 10.718 -0.026 0 0 0 0 0 0 0 +-2.588 10.68 -0.025 0 0 0 0 0 0 0 +-4.172 17.164 -0.165 0 0 0 0 0 0 0 +-4.216 17.108 -0.164 0 0 0 0 0 0 0 +-4.277 17.126 -0.165 0 0 0 0 0 0 0 +-3.379 13.154 -0.08 0 0 0 0 0 0 0 +-3.416 13.128 -0.079 0 0 0 0 0 0 0 +-3.456 13.109 -0.079 0 0 0 0 0 0 0 +-3.477 13.108 -0.079 0 0 0 0 0 0 0 +-3.515 13.083 -0.079 0 0 0 0 0 0 0 +-3.157 11.313 -0.041 0 0 0 0 0 0 0 +-3.192 11.299 -0.041 0 0 0 0 0 0 0 +-3.22 11.264 -0.041 0 0 0 0 0 0 0 +-3.245 11.282 -0.041 0 0 0 0 0 0 0 +-3.282 11.279 -0.041 0 0 0 0 0 0 0 +-2.934 9.729 -0.008 0 0 0 0 0 0 0 +-2.804 9.085 0.006 0 0 0 0 0 0 0 +-2.806 9.04 0.007 0 0 0 0 0 0 0 +-2.819 8.98 0.008 0 0 0 0 0 0 0 +-2.831 8.921 0.009 0 0 0 0 0 0 0 +-2.848 8.876 0.01 0 0 0 0 0 0 0 +-2.86 8.818 0.011 0 0 0 0 0 0 0 +-2.877 8.778 0.011 0 0 0 0 0 0 0 +-2.886 8.71 0.013 0 0 0 0 0 0 0 +-2.907 8.684 0.013 0 0 0 0 0 0 0 +-2.931 8.708 0.012 0 0 0 0 0 0 0 +-2.971 8.737 0.012 0 0 0 0 0 0 0 +-2.999 8.731 0.012 0 0 0 0 0 0 0 +-3.035 8.746 0.011 0 0 0 0 0 0 0 +-3.067 8.748 0.011 0 0 0 0 0 0 0 +-3.101 8.757 0.01 0 0 0 0 0 0 0 +-3.12 8.723 0.011 0 0 0 0 0 0 0 +-3.154 8.776 0.01 0 0 0 0 0 0 0 +-4.159 11.483 -0.051 0 0 0 0 0 0 0 +-4.209 11.51 -0.052 0 0 0 0 0 0 0 +-4.772 12.932 -0.084 0 0 0 0 0 0 0 +-4.8 12.882 -0.083 0 0 0 0 0 0 0 +-4.825 12.825 -0.082 0 0 0 0 0 0 0 +-4.859 12.793 -0.082 0 0 0 0 0 0 0 +-4.841 12.685 -0.08 0 0 0 0 0 0 0 +-4.611 11.637 -0.057 0 0 0 0 0 0 0 +-4.625 11.565 -0.056 0 0 0 0 0 0 0 +-4.594 11.383 -0.052 0 0 0 0 0 0 0 +-4.213 10.385 -0.03 0 0 0 0 0 0 0 +-4.24 10.357 -0.03 0 0 0 0 0 0 0 +-3.216 7.771 0.029 0 0 0 0 0 0 0 +-3.668 8.793 0.005 0 0 0 0 0 0 0 +-3.694 8.776 0.005 0 0 0 0 0 0 0 +-3.731 8.789 0.005 0 0 0 0 0 0 0 +-3.761 8.782 0.005 0 0 0 0 0 0 0 +-3.795 8.785 0.004 0 0 0 0 0 0 0 +-3.806 8.772 0.005 0 0 0 0 0 0 0 +-3.295 7.457 0.034 0 0 0 0 0 0 0 +-3.331 7.474 0.034 0 0 0 0 0 0 0 +-3.336 7.423 0.034 0 0 0 0 0 0 0 +-3.358 7.409 0.035 0 0 0 0 0 0 0 +-3.882 8.468 0.01 0 0 0 0 0 0 0 +-3.921 8.483 0.009 0 0 0 0 0 0 0 +-4.309 9.176 -0.007 0 0 0 0 0 0 0 +-4.346 9.181 -0.008 0 0 0 0 0 0 0 +-4.38 9.176 -0.008 0 0 0 0 0 0 0 +-4.424 9.195 -0.009 0 0 0 0 0 0 0 +-4.4 9.071 -0.006 0 0 0 0 0 0 0 +-4.994 10.263 -0.034 0 0 0 0 0 0 0 +-4.977 10.066 -0.03 0 0 0 0 0 0 0 +-4.985 10.002 -0.029 0 0 0 0 0 0 0 +-5.061 9.261 -0.016 0 0 0 0 0 0 0 +-5.11 9.28 -0.017 0 0 0 0 0 0 0 +-5.114 9.218 -0.016 0 0 0 0 0 0 0 +-5.127 9.174 -0.015 0 0 0 0 0 0 0 +-5.126 9.104 -0.014 0 0 0 0 0 0 0 +-5.131 9.08 -0.014 0 0 0 0 0 0 0 +-5.168 9.08 -0.014 0 0 0 0 0 0 0 +-5.209 9.084 -0.014 0 0 0 0 0 0 0 +-5.233 9.061 -0.014 0 0 0 0 0 0 0 +-5.258 9.037 -0.014 0 0 0 0 0 0 0 +-5.244 8.948 -0.012 0 0 0 0 0 0 0 +-5.179 8.773 -0.009 0 0 0 0 0 0 0 +-5.244 8.82 -0.01 0 0 0 0 0 0 0 +-5.226 8.572 -0.005 0 0 0 0 0 0 0 +-5.21 8.486 -0.004 0 0 0 0 0 0 0 +-5.217 8.437 -0.003 0 0 0 0 0 0 0 +-5.182 8.322 -0 0 0 0 0 0 0 0 +-5.186 8.299 -0 0 0 0 0 0 0 0 +-5.218 8.293 -0 0 0 0 0 0 0 0 +-5.231 8.256 0 0 0 0 0 0 0 0 +-7.148 11.22 -0.074 0 0 0 0 0 0 0 +-5.084 7.723 0.011 0 0 0 0 0 0 0 +-5.101 7.695 0.012 0 0 0 0 0 0 0 +-5.113 7.66 0.012 0 0 0 0 0 0 0 +-33.727 50.112 -1.061 0 0 0 0 0 0 0 +-40.321 58.518 -1.285 0 0 0 0 0 0 0 +-40.429 58.281 -1.282 0 0 0 0 0 0 0 +-40.499 57.993 -1.278 0 0 0 0 0 0 0 +-40.763 57.981 -1.281 0 0 0 0 0 0 0 +-41.086 58.052 -1.286 0 0 0 0 0 0 0 +-45.245 63.721 -1.434 0 0 0 0 0 0 0 +-41.579 58.165 -1.294 0 0 0 0 0 0 0 +-41.028 57.015 -1.268 0 0 0 0 0 0 0 +-39.578 54.636 -1.21 0 0 0 0 0 0 0 +-39.716 54.464 -1.208 0 0 0 0 0 0 0 +-39.849 54.288 -1.207 0 0 0 0 0 0 0 +-39.967 54.092 -1.205 0 0 0 0 0 0 0 +-40.091 53.905 -1.204 0 0 0 0 0 0 0 +-40.126 53.774 -1.202 0 0 0 0 0 0 0 +-40.237 53.571 -1.2 0 0 0 0 0 0 0 +-40.349 53.371 -1.198 0 0 0 0 0 0 0 +-40.469 53.181 -1.196 0 0 0 0 0 0 0 +-40.588 52.991 -1.195 0 0 0 0 0 0 0 +-40.758 52.868 -1.195 0 0 0 0 0 0 0 +-31.532 38.583 -0.84 0 0 0 0 0 0 0 +-46.763 56.873 -1.339 0 0 0 0 0 0 0 +-23.727 28.653 -0.575 0 0 0 0 0 0 0 +-45.302 54.394 -1.279 0 0 0 0 0 0 0 +-45.96 53.286 -1.27 0 0 0 0 0 0 0 +-31.084 35.346 -0.782 0 0 0 0 0 0 0 +-38.494 43.642 -1.015 0 0 0 0 0 0 0 +-38.566 43.448 -1.013 0 0 0 0 0 0 0 +-36.441 39.775 -0.926 0 0 0 0 0 0 0 +-36.644 39.745 -0.928 0 0 0 0 0 0 0 +-36.781 39.769 -0.931 0 0 0 0 0 0 0 +-21.688 22.708 -0.453 0 0 0 0 0 0 0 +-21.688 22.564 -0.451 0 0 0 0 0 0 0 +-21.711 22.517 -0.451 0 0 0 0 0 0 0 +-21.773 22.44 -0.451 0 0 0 0 0 0 0 +-21.885 22.415 -0.452 0 0 0 0 0 0 0 +-21.853 22.242 -0.449 0 0 0 0 0 0 0 +-39.433 38.556 -0.951 0 0 0 0 0 0 0 +-39.548 38.426 -0.951 0 0 0 0 0 0 0 +-47.286 45.663 -1.173 0 0 0 0 0 0 0 +-32.714 29.839 -0.723 0 0 0 0 0 0 0 +-32.791 29.721 -0.723 0 0 0 0 0 0 0 +-32.886 29.62 -0.723 0 0 0 0 0 0 0 +-36.029 32.046 -0.806 0 0 0 0 0 0 0 +-36.096 31.903 -0.805 0 0 0 0 0 0 0 +-36.124 31.726 -0.803 0 0 0 0 0 0 0 +-36.113 31.616 -0.801 0 0 0 0 0 0 0 +-36.152 31.45 -0.8 0 0 0 0 0 0 0 +-36.192 31.285 -0.798 0 0 0 0 0 0 0 +-36.211 31.104 -0.796 0 0 0 0 0 0 0 +-36.251 30.94 -0.794 0 0 0 0 0 0 0 +-36.276 30.766 -0.792 0 0 0 0 0 0 0 +-36.313 30.601 -0.791 0 0 0 0 0 0 0 +-36.289 30.484 -0.789 0 0 0 0 0 0 0 +-36.325 30.319 -0.787 0 0 0 0 0 0 0 +-36.341 30.14 -0.785 0 0 0 0 0 0 0 +-36.368 29.97 -0.783 0 0 0 0 0 0 0 +-36.402 29.806 -0.781 0 0 0 0 0 0 0 +-36.419 29.629 -0.779 0 0 0 0 0 0 0 +-36.459 29.472 -0.778 0 0 0 0 0 0 0 +-36.434 29.357 -0.776 0 0 0 0 0 0 0 +-36.425 29.161 -0.773 0 0 0 0 0 0 0 +-36.4 28.954 -0.77 0 0 0 0 0 0 0 +-36.507 28.852 -0.771 0 0 0 0 0 0 0 +-36.515 28.673 -0.768 0 0 0 0 0 0 0 +-36.547 28.513 -0.767 0 0 0 0 0 0 0 +-36.562 28.34 -0.765 0 0 0 0 0 0 0 +-36.531 28.224 -0.763 0 0 0 0 0 0 0 +-36.548 28.054 -0.761 0 0 0 0 0 0 0 +-36.561 27.882 -0.759 0 0 0 0 0 0 0 +-36.564 27.703 -0.757 0 0 0 0 0 0 0 +-18.495 13.905 -0.28 0 0 0 0 0 0 0 +-18.556 13.86 -0.281 0 0 0 0 0 0 0 +-36.594 27.187 -0.751 0 0 0 0 0 0 0 +-36.571 27.081 -0.749 0 0 0 0 0 0 0 +-36.574 26.905 -0.747 0 0 0 0 0 0 0 +-36.671 26.799 -0.747 0 0 0 0 0 0 0 +-36.815 26.728 -0.749 0 0 0 0 0 0 0 +-36.952 26.65 -0.75 0 0 0 0 0 0 0 +-37.101 26.581 -0.752 0 0 0 0 0 0 0 +-37.23 26.497 -0.753 0 0 0 0 0 0 0 +-37.371 26.421 -0.755 0 0 0 0 0 0 0 +-37.354 26.321 -0.753 0 0 0 0 0 0 0 +-37.376 26.161 -0.752 0 0 0 0 0 0 0 +-32.947 22.903 -0.636 0 0 0 0 0 0 0 +-32.962 22.761 -0.635 0 0 0 0 0 0 0 +-32.999 22.633 -0.634 0 0 0 0 0 0 0 +-33.087 22.541 -0.634 0 0 0 0 0 0 0 +-36.604 24.772 -0.722 0 0 0 0 0 0 0 +-36.606 24.69 -0.721 0 0 0 0 0 0 0 +-6.739 4.458 0.036 0 0 0 0 0 0 0 +-6.753 4.437 0.036 0 0 0 0 0 0 0 +-6.763 4.414 0.036 0 0 0 0 0 0 0 +-6.781 4.395 0.036 0 0 0 0 0 0 0 +-6.734 4.334 0.037 0 0 0 0 0 0 0 +-6.81 4.368 0.035 0 0 0 0 0 0 0 +-36.538 23.41 -0.705 0 0 0 0 0 0 0 +-36.537 23.248 -0.703 0 0 0 0 0 0 0 +-36.531 23.083 -0.701 0 0 0 0 0 0 0 +-36.525 22.919 -0.699 0 0 0 0 0 0 0 +-36.526 22.76 -0.697 0 0 0 0 0 0 0 +-36.515 22.594 -0.695 0 0 0 0 0 0 0 +-36.471 22.488 -0.693 0 0 0 0 0 0 0 +-36.458 22.322 -0.691 0 0 0 0 0 0 0 +-36.454 22.162 -0.689 0 0 0 0 0 0 0 +-36.443 21.999 -0.687 0 0 0 0 0 0 0 +-36.428 21.834 -0.685 0 0 0 0 0 0 0 +-36.419 21.674 -0.684 0 0 0 0 0 0 0 +-36.413 21.515 -0.682 0 0 0 0 0 0 0 +-36.363 21.408 -0.68 0 0 0 0 0 0 0 +-36.347 21.245 -0.678 0 0 0 0 0 0 0 +-36.339 21.088 -0.676 0 0 0 0 0 0 0 +-36.324 20.927 -0.674 0 0 0 0 0 0 0 +-36.31 20.767 -0.672 0 0 0 0 0 0 0 +-36.291 20.605 -0.67 0 0 0 0 0 0 0 +-36.272 20.444 -0.668 0 0 0 0 0 0 0 +-36.258 20.286 -0.666 0 0 0 0 0 0 0 +-36.209 20.184 -0.664 0 0 0 0 0 0 0 +-36.19 20.025 -0.662 0 0 0 0 0 0 0 +-36.202 19.883 -0.661 0 0 0 0 0 0 0 +-12.614 6.857 -0.096 0 0 0 0 0 0 0 +-12.544 6.768 -0.094 0 0 0 0 0 0 0 +-36.095 19.237 -0.653 0 0 0 0 0 0 0 +-36.031 19.131 -0.65 0 0 0 0 0 0 0 +-36.004 18.972 -0.648 0 0 0 0 0 0 0 +-36.007 18.829 -0.647 0 0 0 0 0 0 0 +-35.958 18.659 -0.644 0 0 0 0 0 0 0 +-35.94 18.507 -0.643 0 0 0 0 0 0 0 +-35.918 18.353 -0.641 0 0 0 0 0 0 0 +-35.89 18.196 -0.639 0 0 0 0 0 0 0 +-35.833 18.097 -0.637 0 0 0 0 0 0 0 +-35.821 17.95 -0.635 0 0 0 0 0 0 0 +-35.751 17.774 -0.632 0 0 0 0 0 0 0 +-35.754 17.636 -0.631 0 0 0 0 0 0 0 +-35.732 17.486 -0.629 0 0 0 0 0 0 0 +-35.74 17.351 -0.628 0 0 0 0 0 0 0 +-35.685 17.185 -0.625 0 0 0 0 0 0 0 +-14.696 7.032 -0.137 0 0 0 0 0 0 0 +-14.628 6.943 -0.134 0 0 0 0 0 0 0 +-14.748 6.943 -0.137 0 0 0 0 0 0 0 +-35.833 16.774 -0.625 0 0 0 0 0 0 0 +-35.803 16.623 -0.623 0 0 0 0 0 0 0 +-35.797 16.483 -0.621 0 0 0 0 0 0 0 +-35.757 16.329 -0.619 0 0 0 0 0 0 0 +-35.531 16.024 -0.612 0 0 0 0 0 0 0 +-35.344 15.806 -0.607 0 0 0 0 0 0 0 +-35.269 15.639 -0.604 0 0 0 0 0 0 0 +-35.234 15.491 -0.602 0 0 0 0 0 0 0 +-35.187 15.339 -0.6 0 0 0 0 0 0 0 +-35.133 15.184 -0.597 0 0 0 0 0 0 0 +-35.078 15.095 -0.596 0 0 0 0 0 0 0 +-35.027 14.943 -0.593 0 0 0 0 0 0 0 +-34.988 14.796 -0.591 0 0 0 0 0 0 0 +-34.955 14.653 -0.59 0 0 0 0 0 0 0 +-34.912 14.506 -0.588 0 0 0 0 0 0 0 +-34.856 14.354 -0.585 0 0 0 0 0 0 0 +-34.823 14.213 -0.584 0 0 0 0 0 0 0 +-34.76 14.124 -0.582 0 0 0 0 0 0 0 +-34.722 13.981 -0.58 0 0 0 0 0 0 0 +-34.675 13.836 -0.578 0 0 0 0 0 0 0 +-34.627 13.691 -0.576 0 0 0 0 0 0 0 +-34.588 13.55 -0.574 0 0 0 0 0 0 0 +-34.536 13.404 -0.572 0 0 0 0 0 0 0 +-34.494 13.263 -0.57 0 0 0 0 0 0 0 +-34.427 13.175 -0.568 0 0 0 0 0 0 0 +-34.378 13.033 -0.566 0 0 0 0 0 0 0 +-34.361 12.903 -0.565 0 0 0 0 0 0 0 +-34.336 12.771 -0.563 0 0 0 0 0 0 0 +-29.758 10.958 -0.46 0 0 0 0 0 0 0 +-29.76 10.853 -0.459 0 0 0 0 0 0 0 +-29.792 10.758 -0.459 0 0 0 0 0 0 0 +-29.824 10.717 -0.459 0 0 0 0 0 0 0 +-34.01 12.105 -0.552 0 0 0 0 0 0 0 +-33.973 11.971 -0.55 0 0 0 0 0 0 0 +-33.914 11.831 -0.548 0 0 0 0 0 0 0 +-33.881 11.7 -0.546 0 0 0 0 0 0 0 +-33.819 11.56 -0.544 0 0 0 0 0 0 0 +-33.774 11.426 -0.543 0 0 0 0 0 0 0 +-33.722 11.29 -0.541 0 0 0 0 0 0 0 +-33.662 11.211 -0.539 0 0 0 0 0 0 0 +-33.593 11.071 -0.537 0 0 0 0 0 0 0 +-33.54 10.937 -0.535 0 0 0 0 0 0 0 +-33.5 10.807 -0.533 0 0 0 0 0 0 0 +-33.439 10.672 -0.531 0 0 0 0 0 0 0 +-33.415 10.548 -0.53 0 0 0 0 0 0 0 +-33.322 10.404 -0.527 0 0 0 0 0 0 0 +-33.264 10.328 -0.525 0 0 0 0 0 0 0 +-33.206 10.196 -0.523 0 0 0 0 0 0 0 +-33.158 10.067 -0.522 0 0 0 0 0 0 0 +-33.091 9.934 -0.519 0 0 0 0 0 0 0 +-33.048 9.808 -0.518 0 0 0 0 0 0 0 +-32.977 9.674 -0.516 0 0 0 0 0 0 0 +-32.921 9.545 -0.514 0 0 0 0 0 0 0 +-32.854 9.414 -0.512 0 0 0 0 0 0 0 +-32.786 9.339 -0.51 0 0 0 0 0 0 0 +-32.723 9.21 -0.508 0 0 0 0 0 0 0 +-32.669 9.084 -0.506 0 0 0 0 0 0 0 +-32.597 8.953 -0.504 0 0 0 0 0 0 0 +-32.533 8.826 -0.502 0 0 0 0 0 0 0 +-32.458 8.696 -0.499 0 0 0 0 0 0 0 +-32.396 8.57 -0.498 0 0 0 0 0 0 0 +-32.33 8.498 -0.496 0 0 0 0 0 0 0 +-32.258 8.371 -0.494 0 0 0 0 0 0 0 +-32.201 8.248 -0.492 0 0 0 0 0 0 0 +-32.132 8.123 -0.49 0 0 0 0 0 0 0 +-32.07 8 -0.488 0 0 0 0 0 0 0 +-32 7.876 -0.486 0 0 0 0 0 0 0 +-31.943 7.756 -0.484 0 0 0 0 0 0 0 +-31.858 7.682 -0.482 0 0 0 0 0 0 0 +-31.788 7.559 -0.48 0 0 0 0 0 0 0 +-31.724 7.439 -0.478 0 0 0 0 0 0 0 +-31.654 7.318 -0.476 0 0 0 0 0 0 0 +-31.591 7.198 -0.474 0 0 0 0 0 0 0 +-31.53 7.08 -0.472 0 0 0 0 0 0 0 +-31.452 6.959 -0.47 0 0 0 0 0 0 0 +-31.363 6.888 -0.468 0 0 0 0 0 0 0 +-31.297 6.77 -0.466 0 0 0 0 0 0 0 +-31.232 6.653 -0.464 0 0 0 0 0 0 0 +-31.165 6.537 -0.463 0 0 0 0 0 0 0 +-31.095 6.42 -0.461 0 0 0 0 0 0 0 +-31.08 6.315 -0.46 0 0 0 0 0 0 0 +-30.9 6.177 -0.456 0 0 0 0 0 0 0 +-30.87 6.121 -0.455 0 0 0 0 0 0 0 +-30.801 6.007 -0.453 0 0 0 0 0 0 0 +-30.735 5.893 -0.451 0 0 0 0 0 0 0 +-30.671 5.781 -0.449 0 0 0 0 0 0 0 +-30.6 5.668 -0.447 0 0 0 0 0 0 0 +-30.506 5.552 -0.445 0 0 0 0 0 0 0 +-30.433 5.44 -0.443 0 0 0 0 0 0 0 +-30.367 5.329 -0.441 0 0 0 0 0 0 0 +-30.297 5.268 -0.44 0 0 0 0 0 0 0 +-30.22 5.157 -0.438 0 0 0 0 0 0 0 +-30.154 5.048 -0.436 0 0 0 0 0 0 0 +-30.075 4.938 -0.434 0 0 0 0 0 0 0 +-29.997 4.828 -0.432 0 0 0 0 0 0 0 +-29.925 4.72 -0.43 0 0 0 0 0 0 0 +-29.853 4.612 -0.428 0 0 0 0 0 0 0 +-29.771 4.552 -0.426 0 0 0 0 0 0 0 +-29.698 4.445 -0.425 0 0 0 0 0 0 0 +-29.617 4.338 -0.423 0 0 0 0 0 0 0 +-29.538 4.231 -0.421 0 0 0 0 0 0 0 +-29.456 4.125 -0.419 0 0 0 0 0 0 0 +-29.382 4.021 -0.417 0 0 0 0 0 0 0 +-29.311 3.917 -0.415 0 0 0 0 0 0 0 +-29.242 3.861 -0.413 0 0 0 0 0 0 0 +-29.164 3.758 -0.411 0 0 0 0 0 0 0 +-29.095 3.656 -0.41 0 0 0 0 0 0 0 +-29.005 3.552 -0.408 0 0 0 0 0 0 0 +-28.952 3.453 -0.406 0 0 0 0 0 0 0 +-29.033 3.37 -0.408 0 0 0 0 0 0 0 +-29.021 3.276 -0.407 0 0 0 0 0 0 0 +-29.084 3.237 -0.409 0 0 0 0 0 0 0 +-29.004 3.136 -0.407 0 0 0 0 0 0 0 +-28.931 3.036 -0.405 0 0 0 0 0 0 0 +-28.801 2.931 -0.402 0 0 0 0 0 0 0 +-28.382 2.798 -0.393 0 0 0 0 0 0 0 +-28.269 2.697 -0.39 0 0 0 0 0 0 0 +-28.21 2.602 -0.389 0 0 0 0 0 0 0 +-28.128 2.505 -0.387 0 0 0 0 0 0 0 +-28.036 2.408 -0.385 0 0 0 0 0 0 0 +-27.953 2.357 -0.383 0 0 0 0 0 0 0 +-27.868 2.261 -0.381 0 0 0 0 0 0 0 +-27.787 2.167 -0.379 0 0 0 0 0 0 0 +-27.706 2.073 -0.377 0 0 0 0 0 0 0 +-27.651 1.981 -0.376 0 0 0 0 0 0 0 +-21.982 1.5 -0.257 0 0 0 0 0 0 0 +-21.927 1.427 -0.256 0 0 0 0 0 0 0 +-21.899 1.391 -0.255 0 0 0 0 0 0 0 +-21.901 1.322 -0.255 0 0 0 0 0 0 0 +-21.895 1.253 -0.255 0 0 0 0 0 0 0 +-21.927 1.185 -0.255 0 0 0 0 0 0 0 +-21.979 1.119 -0.256 0 0 0 0 0 0 0 +-22.074 1.054 -0.258 0 0 0 0 0 0 0 +-26.919 1.207 -0.36 0 0 0 0 0 0 0 +-26.837 1.161 -0.358 0 0 0 0 0 0 0 +-26.758 1.073 -0.356 0 0 0 0 0 0 0 +-26.676 0.986 -0.355 0 0 0 0 0 0 0 +-26.609 0.9 -0.353 0 0 0 0 0 0 0 +-26.534 0.814 -0.352 0 0 0 0 0 0 0 +-26.442 0.728 -0.35 0 0 0 0 0 0 0 +-26.366 0.642 -0.348 0 0 0 0 0 0 0 +-26.295 0.599 -0.346 0 0 0 0 0 0 0 +-26.203 0.515 -0.344 0 0 0 0 0 0 0 +-26.378 0.436 -0.348 0 0 0 0 0 0 0 +-22.349 0.295 -0.264 0 0 0 0 0 0 0 +-22.332 0.224 -0.263 0 0 0 0 0 0 0 +-25.864 0.183 -0.337 0 0 0 0 0 0 0 +-25.8 0.101 -0.336 0 0 0 0 0 0 0 +-25.718 0.06 -0.334 0 0 0 0 0 0 0 +-25.636 -0.02 -0.332 0 0 0 0 0 0 0 +-25.556 -0.101 -0.331 0 0 0 0 0 0 0 +-25.472 -0.181 -0.329 0 0 0 0 0 0 0 +-25.405 -0.26 -0.328 0 0 0 0 0 0 0 +-25.318 -0.339 -0.326 0 0 0 0 0 0 0 +-25.243 -0.417 -0.324 0 0 0 0 0 0 0 +-25.161 -0.495 -0.323 0 0 0 0 0 0 0 +-25.081 -0.533 -0.321 0 0 0 0 0 0 0 +-25.007 -0.61 -0.319 0 0 0 0 0 0 0 +-24.927 -0.686 -0.318 0 0 0 0 0 0 0 +-24.843 -0.762 -0.316 0 0 0 0 0 0 0 +-24.762 -0.838 -0.314 0 0 0 0 0 0 0 +-24.684 -0.913 -0.313 0 0 0 0 0 0 0 +-24.609 -0.988 -0.311 0 0 0 0 0 0 0 +-24.527 -1.023 -0.31 0 0 0 0 0 0 0 +-24.45 -1.097 -0.308 0 0 0 0 0 0 0 +-24.368 -1.17 -0.306 0 0 0 0 0 0 0 +-24.305 -1.243 -0.305 0 0 0 0 0 0 0 +-24.215 -1.315 -0.303 0 0 0 0 0 0 0 +-24.135 -1.387 -0.302 0 0 0 0 0 0 0 +-24.06 -1.459 -0.3 0 0 0 0 0 0 0 +-23.994 -1.493 -0.299 0 0 0 0 0 0 0 +-23.908 -1.563 -0.297 0 0 0 0 0 0 0 +-23.821 -1.632 -0.296 0 0 0 0 0 0 0 +-23.752 -1.703 -0.294 0 0 0 0 0 0 0 +-23.66 -1.771 -0.292 0 0 0 0 0 0 0 +-23.581 -1.84 -0.291 0 0 0 0 0 0 0 +-23.513 -1.909 -0.29 0 0 0 0 0 0 0 +-23.439 -1.94 -0.288 0 0 0 0 0 0 0 +-23.414 -2.012 -0.288 0 0 0 0 0 0 0 +-16.189 -1.45 -0.136 0 0 0 0 0 0 0 +-22.885 -2.184 -0.277 0 0 0 0 0 0 0 +-23.009 -2.269 -0.28 0 0 0 0 0 0 0 +-22.964 -2.338 -0.279 0 0 0 0 0 0 0 +-22.895 -2.367 -0.278 0 0 0 0 0 0 0 +-22.816 -2.431 -0.276 0 0 0 0 0 0 0 +-22.722 -2.494 -0.274 0 0 0 0 0 0 0 +-22.716 -2.565 -0.274 0 0 0 0 0 0 0 +-22.718 -2.638 -0.274 0 0 0 0 0 0 0 +-22.73 -2.711 -0.275 0 0 0 0 0 0 0 +-22.743 -2.785 -0.275 0 0 0 0 0 0 0 +-22.739 -2.821 -0.275 0 0 0 0 0 0 0 +-22.751 -2.895 -0.276 0 0 0 0 0 0 0 +-22.748 -2.968 -0.276 0 0 0 0 0 0 0 +-22.762 -3.042 -0.276 0 0 0 0 0 0 0 +-22.765 -3.115 -0.277 0 0 0 0 0 0 0 +-22.755 -3.187 -0.277 0 0 0 0 0 0 0 +-22.743 -3.258 -0.277 0 0 0 0 0 0 0 +-22.785 -3.301 -0.278 0 0 0 0 0 0 0 +-22.8 -3.376 -0.278 0 0 0 0 0 0 0 +-22.742 -3.44 -0.277 0 0 0 0 0 0 0 +-22.658 -3.501 -0.276 0 0 0 0 0 0 0 +-22.601 -3.565 -0.275 0 0 0 0 0 0 0 +-22.519 -3.624 -0.273 0 0 0 0 0 0 0 +-22.45 -3.686 -0.272 0 0 0 0 0 0 0 +-22.364 -3.744 -0.27 0 0 0 0 0 0 0 +-22.257 -3.762 -0.268 0 0 0 0 0 0 0 +-21.071 -3.631 -0.243 0 0 0 0 0 0 0 +-21.043 -3.694 -0.243 0 0 0 0 0 0 0 +-20.967 -3.749 -0.242 0 0 0 0 0 0 0 +-20.904 -3.806 -0.24 0 0 0 0 0 0 0 +-20.829 -3.86 -0.239 0 0 0 0 0 0 0 +-20.742 -3.911 -0.237 0 0 0 0 0 0 0 +-20.679 -3.933 -0.236 0 0 0 0 0 0 0 +-20.609 -3.987 -0.235 0 0 0 0 0 0 0 +-20.54 -4.04 -0.234 0 0 0 0 0 0 0 +-20.456 -4.091 -0.232 0 0 0 0 0 0 0 +-20.39 -4.144 -0.231 0 0 0 0 0 0 0 +-20.303 -4.193 -0.23 0 0 0 0 0 0 0 +-20.237 -4.246 -0.228 0 0 0 0 0 0 0 +-20.169 -4.265 -0.227 0 0 0 0 0 0 0 +-20.093 -4.315 -0.226 0 0 0 0 0 0 0 +-20.023 -4.366 -0.225 0 0 0 0 0 0 0 +-19.954 -4.417 -0.223 0 0 0 0 0 0 0 +-19.876 -4.465 -0.222 0 0 0 0 0 0 0 +-19.798 -4.513 -0.221 0 0 0 0 0 0 0 +-19.721 -4.561 -0.219 0 0 0 0 0 0 0 +-19.663 -4.58 -0.218 0 0 0 0 0 0 0 +-19.594 -4.629 -0.217 0 0 0 0 0 0 0 +-19.513 -4.675 -0.216 0 0 0 0 0 0 0 +-19.452 -4.725 -0.215 0 0 0 0 0 0 0 +-19.373 -4.77 -0.213 0 0 0 0 0 0 0 +-19.3 -4.816 -0.212 0 0 0 0 0 0 0 +-19.23 -4.863 -0.211 0 0 0 0 0 0 0 +-19.168 -4.88 -0.21 0 0 0 0 0 0 0 +-19.093 -4.925 -0.208 0 0 0 0 0 0 0 +-19.029 -4.972 -0.207 0 0 0 0 0 0 0 +-18.957 -5.017 -0.206 0 0 0 0 0 0 0 +-18.877 -5.06 -0.205 0 0 0 0 0 0 0 +-18.815 -5.106 -0.204 0 0 0 0 0 0 0 +-18.741 -5.15 -0.202 0 0 0 0 0 0 0 +-18.677 -5.164 -0.201 0 0 0 0 0 0 0 +-18.605 -5.207 -0.2 0 0 0 0 0 0 0 +-18.538 -5.251 -0.199 0 0 0 0 0 0 0 +-18.466 -5.293 -0.198 0 0 0 0 0 0 0 +-18.395 -5.336 -0.197 0 0 0 0 0 0 0 +-18.329 -5.379 -0.195 0 0 0 0 0 0 0 +-18.256 -5.42 -0.194 0 0 0 0 0 0 0 +-18.188 -5.431 -0.193 0 0 0 0 0 0 0 +-18.125 -5.474 -0.192 0 0 0 0 0 0 0 +-18.048 -5.513 -0.191 0 0 0 0 0 0 0 +-17.976 -5.553 -0.189 0 0 0 0 0 0 0 +-17.914 -5.596 -0.188 0 0 0 0 0 0 0 +-17.843 -5.635 -0.187 0 0 0 0 0 0 0 +-17.781 -5.677 -0.186 0 0 0 0 0 0 0 +-17.715 -5.687 -0.185 0 0 0 0 0 0 0 +-17.65 -5.727 -0.184 0 0 0 0 0 0 0 +-17.58 -5.766 -0.183 0 0 0 0 0 0 0 +-17.519 -5.807 -0.182 0 0 0 0 0 0 0 +-17.441 -5.842 -0.181 0 0 0 0 0 0 0 +-17.37 -5.879 -0.179 0 0 0 0 0 0 0 +-17.317 -5.922 -0.179 0 0 0 0 0 0 0 +-17.253 -5.93 -0.177 0 0 0 0 0 0 0 +-17.193 -5.97 -0.177 0 0 0 0 0 0 0 +-17.129 -6.008 -0.176 0 0 0 0 0 0 0 +-17.057 -6.043 -0.174 0 0 0 0 0 0 0 +-16.761 -6.058 -0.169 0 0 0 0 0 0 0 +-16.845 -6.148 -0.171 0 0 0 0 0 0 0 +-16.783 -6.185 -0.17 0 0 0 0 0 0 0 +-16.726 -6.194 -0.169 0 0 0 0 0 0 0 +-16.656 -6.228 -0.168 0 0 0 0 0 0 0 +-16.595 -6.265 -0.167 0 0 0 0 0 0 0 +-16.528 -6.299 -0.166 0 0 0 0 0 0 0 +-16.464 -6.334 -0.165 0 0 0 0 0 0 0 +-16.403 -6.37 -0.164 0 0 0 0 0 0 0 +-16.344 -6.406 -0.163 0 0 0 0 0 0 0 +-16.294 -6.416 -0.162 0 0 0 0 0 0 0 +-16.222 -6.447 -0.161 0 0 0 0 0 0 0 +-16.166 -6.483 -0.16 0 0 0 0 0 0 0 +-16.096 -6.514 -0.159 0 0 0 0 0 0 0 +-16.046 -6.553 -0.158 0 0 0 0 0 0 0 +-15.997 -6.592 -0.158 0 0 0 0 0 0 0 +-16.013 -6.657 -0.159 0 0 0 0 0 0 0 +-16.02 -6.689 -0.159 0 0 0 0 0 0 0 +-15.982 -6.732 -0.159 0 0 0 0 0 0 0 +-15.841 -6.732 -0.156 0 0 0 0 0 0 0 +-16.039 -6.875 -0.161 0 0 0 0 0 0 0 +-16.052 -6.941 -0.162 0 0 0 0 0 0 0 +-16.054 -7.001 -0.162 0 0 0 0 0 0 0 +-16.054 -7.061 -0.163 0 0 0 0 0 0 0 +-16.079 -7.103 -0.163 0 0 0 0 0 0 0 +-16.073 -7.16 -0.164 0 0 0 0 0 0 0 +-16.087 -7.227 -0.165 0 0 0 0 0 0 0 +-16.084 -7.287 -0.165 0 0 0 0 0 0 0 +-16.098 -7.354 -0.166 0 0 0 0 0 0 0 +-16.093 -7.413 -0.166 0 0 0 0 0 0 0 +-16.118 -7.486 -0.168 0 0 0 0 0 0 0 +-16.127 -7.52 -0.168 0 0 0 0 0 0 0 +-16.136 -7.586 -0.169 0 0 0 0 0 0 0 +-16.137 -7.649 -0.169 0 0 0 0 0 0 0 +-16.153 -7.718 -0.17 0 0 0 0 0 0 0 +-16.162 -7.786 -0.171 0 0 0 0 0 0 0 +-16.169 -7.851 -0.172 0 0 0 0 0 0 0 +-16.171 -7.915 -0.172 0 0 0 0 0 0 0 +-16.2 -7.961 -0.173 0 0 0 0 0 0 0 +-16.191 -8.02 -0.174 0 0 0 0 0 0 0 +-16.21 -8.093 -0.175 0 0 0 0 0 0 0 +-16.21 -8.156 -0.175 0 0 0 0 0 0 0 +-16.214 -8.222 -0.176 0 0 0 0 0 0 0 +-16.222 -8.29 -0.177 0 0 0 0 0 0 0 +-16.232 -8.36 -0.178 0 0 0 0 0 0 0 +-16.245 -8.399 -0.178 0 0 0 0 0 0 0 +-16.249 -8.465 -0.179 0 0 0 0 0 0 0 +-16.258 -8.535 -0.18 0 0 0 0 0 0 0 +-16.264 -8.604 -0.181 0 0 0 0 0 0 0 +-16.267 -8.671 -0.181 0 0 0 0 0 0 0 +-16.279 -8.743 -0.182 0 0 0 0 0 0 0 +-16.281 -8.81 -0.183 0 0 0 0 0 0 0 +-16.29 -8.881 -0.184 0 0 0 0 0 0 0 +-16.31 -8.925 -0.185 0 0 0 0 0 0 0 +-16.318 -8.996 -0.186 0 0 0 0 0 0 0 +-16.327 -9.068 -0.186 0 0 0 0 0 0 0 +-16.333 -9.138 -0.187 0 0 0 0 0 0 0 +-16.329 -9.203 -0.188 0 0 0 0 0 0 0 +-16.336 -9.275 -0.189 0 0 0 0 0 0 0 +-16.347 -9.349 -0.19 0 0 0 0 0 0 0 +-16.37 -9.397 -0.191 0 0 0 0 0 0 0 +-16.372 -9.466 -0.191 0 0 0 0 0 0 0 +-16.382 -9.541 -0.192 0 0 0 0 0 0 0 +-16.388 -9.613 -0.193 0 0 0 0 0 0 0 +-16.391 -9.684 -0.194 0 0 0 0 0 0 0 +-16.396 -9.757 -0.195 0 0 0 0 0 0 0 +-16.402 -9.83 -0.196 0 0 0 0 0 0 0 +-16.426 -9.879 -0.197 0 0 0 0 0 0 0 +-16.43 -9.953 -0.198 0 0 0 0 0 0 0 +-16.443 -10.031 -0.199 0 0 0 0 0 0 0 +-16.448 -10.105 -0.2 0 0 0 0 0 0 0 +-16.452 -10.178 -0.201 0 0 0 0 0 0 0 +-16.459 -10.254 -0.202 0 0 0 0 0 0 0 +-16.469 -10.332 -0.203 0 0 0 0 0 0 0 +-16.481 -10.376 -0.203 0 0 0 0 0 0 0 +-16.511 -10.468 -0.205 0 0 0 0 0 0 0 +-16.498 -10.532 -0.205 0 0 0 0 0 0 0 +-16.517 -10.618 -0.207 0 0 0 0 0 0 0 +-16.518 -10.691 -0.207 0 0 0 0 0 0 0 +-16.527 -10.771 -0.209 0 0 0 0 0 0 0 +-16.529 -10.846 -0.209 0 0 0 0 0 0 0 +-16.56 -10.904 -0.211 0 0 0 0 0 0 0 +-16.569 -10.985 -0.212 0 0 0 0 0 0 0 +-16.579 -11.066 -0.213 0 0 0 0 0 0 0 +-16.575 -11.139 -0.214 0 0 0 0 0 0 0 +-16.589 -11.224 -0.215 0 0 0 0 0 0 0 +-16.6 -11.308 -0.216 0 0 0 0 0 0 0 +-16.601 -11.385 -0.217 0 0 0 0 0 0 0 +-16.623 -11.438 -0.218 0 0 0 0 0 0 0 +-16.644 -11.53 -0.219 0 0 0 0 0 0 0 +-16.636 -11.601 -0.22 0 0 0 0 0 0 0 +-16.653 -11.691 -0.222 0 0 0 0 0 0 0 +-16.657 -11.772 -0.223 0 0 0 0 0 0 0 +-16.661 -11.854 -0.224 0 0 0 0 0 0 0 +-16.666 -11.936 -0.225 0 0 0 0 0 0 0 +-16.704 -12.003 -0.226 0 0 0 0 0 0 0 +-16.694 -12.075 -0.227 0 0 0 0 0 0 0 +-16.712 -12.169 -0.228 0 0 0 0 0 0 0 +-16.726 -12.259 -0.23 0 0 0 0 0 0 0 +-16.724 -12.339 -0.231 0 0 0 0 0 0 0 +-16.734 -12.427 -0.232 0 0 0 0 0 0 0 +-16.747 -12.519 -0.233 0 0 0 0 0 0 0 +-16.751 -12.604 -0.234 0 0 0 0 0 0 0 +-16.781 -12.668 -0.236 0 0 0 0 0 0 0 +-16.797 -12.762 -0.237 0 0 0 0 0 0 0 +-16.792 -12.842 -0.238 0 0 0 0 0 0 0 +-16.805 -12.936 -0.24 0 0 0 0 0 0 0 +-16.82 -13.031 -0.241 0 0 0 0 0 0 0 +-16.817 -13.114 -0.242 0 0 0 0 0 0 0 +-16.822 -13.203 -0.243 0 0 0 0 0 0 0 +-16.86 -13.276 -0.245 0 0 0 0 0 0 0 +-16.857 -13.359 -0.246 0 0 0 0 0 0 0 +-16.876 -13.461 -0.248 0 0 0 0 0 0 0 +-16.89 -13.559 -0.249 0 0 0 0 0 0 0 +-16.891 -13.647 -0.25 0 0 0 0 0 0 0 +-16.893 -13.736 -0.251 0 0 0 0 0 0 0 +-16.906 -13.835 -0.253 0 0 0 0 0 0 0 +-16.926 -13.896 -0.254 0 0 0 0 0 0 0 +-16.942 -13.998 -0.256 0 0 0 0 0 0 0 +-16.955 -14.099 -0.257 0 0 0 0 0 0 0 +-16.958 -14.192 -0.259 0 0 0 0 0 0 0 +-16.97 -14.293 -0.26 0 0 0 0 0 0 0 +-16.982 -14.394 -0.262 0 0 0 0 0 0 0 +-16.981 -14.484 -0.263 0 0 0 0 0 0 0 +-17.019 -14.563 -0.265 0 0 0 0 0 0 0 +-17.035 -14.67 -0.266 0 0 0 0 0 0 0 +-17.046 -14.773 -0.268 0 0 0 0 0 0 0 +-17.057 -14.876 -0.269 0 0 0 0 0 0 0 +-17.061 -14.975 -0.271 0 0 0 0 0 0 0 +-17.065 -15.073 -0.272 0 0 0 0 0 0 0 +-17.072 -15.174 -0.274 0 0 0 0 0 0 0 +-17.108 -15.254 -0.276 0 0 0 0 0 0 0 +-17.118 -15.36 -0.277 0 0 0 0 0 0 0 +-17.132 -15.47 -0.279 0 0 0 0 0 0 0 +-17.135 -15.571 -0.28 0 0 0 0 0 0 0 +-17.146 -15.68 -0.282 0 0 0 0 0 0 0 +-17.155 -15.786 -0.284 0 0 0 0 0 0 0 +-17.174 -15.904 -0.286 0 0 0 0 0 0 0 +-17.208 -15.985 -0.287 0 0 0 0 0 0 0 +-17.216 -16.094 -0.289 0 0 0 0 0 0 0 +-17.229 -16.208 -0.291 0 0 0 0 0 0 0 +-17.229 -16.31 -0.292 0 0 0 0 0 0 0 +-17.239 -16.422 -0.294 0 0 0 0 0 0 0 +-17.251 -16.537 -0.296 0 0 0 0 0 0 0 +-17.268 -16.658 -0.298 0 0 0 0 0 0 0 +-17.308 -16.749 -0.3 0 0 0 0 0 0 0 +-17.309 -16.856 -0.302 0 0 0 0 0 0 0 +-17.319 -16.972 -0.303 0 0 0 0 0 0 0 +-17.329 -17.088 -0.305 0 0 0 0 0 0 0 +-17.337 -17.204 -0.307 0 0 0 0 0 0 0 +-17.35 -17.325 -0.309 0 0 0 0 0 0 0 +-17.364 -17.448 -0.311 0 0 0 0 0 0 0 +-17.409 -17.548 -0.313 0 0 0 0 0 0 0 +-17.41 -17.659 -0.315 0 0 0 0 0 0 0 +-17.43 -17.791 -0.317 0 0 0 0 0 0 0 +-17.433 -17.906 -0.319 0 0 0 0 0 0 0 +-17.45 -18.037 -0.321 0 0 0 0 0 0 0 +-17.463 -18.163 -0.323 0 0 0 0 0 0 0 +-17.471 -18.286 -0.325 0 0 0 0 0 0 0 +-17.511 -18.386 -0.327 0 0 0 0 0 0 0 +-17.518 -18.509 -0.329 0 0 0 0 0 0 0 +-17.524 -18.632 -0.331 0 0 0 0 0 0 0 +-17.536 -18.763 -0.333 0 0 0 0 0 0 0 +-17.54 -18.885 -0.335 0 0 0 0 0 0 0 +-17.573 -19.04 -0.338 0 0 0 0 0 0 0 +-17.567 -19.154 -0.34 0 0 0 0 0 0 0 +-20.684 -22.617 -0.438 0 0 0 0 0 0 0 +-20.822 -22.911 -0.444 0 0 0 0 0 0 0 +-20.906 -23.15 -0.449 0 0 0 0 0 0 0 +-20.765 -23.14 -0.447 0 0 0 0 0 0 0 +-20.797 -23.321 -0.45 0 0 0 0 0 0 0 +-20.537 -23.177 -0.444 0 0 0 0 0 0 0 +-20.441 -23.215 -0.443 0 0 0 0 0 0 0 +-19.133 -21.8 -0.403 0 0 0 0 0 0 0 +-18.989 -21.775 -0.401 0 0 0 0 0 0 0 +-18.869 -21.775 -0.399 0 0 0 0 0 0 0 +-18.723 -21.744 -0.397 0 0 0 0 0 0 0 +-18.705 -21.862 -0.398 0 0 0 0 0 0 0 +-18.343 -21.576 -0.389 0 0 0 0 0 0 0 +-18.215 -21.562 -0.387 0 0 0 0 0 0 0 +-18.15 -21.554 -0.386 0 0 0 0 0 0 0 +-18.038 -21.559 -0.384 0 0 0 0 0 0 0 +-17.942 -21.581 -0.383 0 0 0 0 0 0 0 +-17.919 -21.692 -0.385 0 0 0 0 0 0 0 +-17.932 -21.847 -0.388 0 0 0 0 0 0 0 +-17.941 -21.997 -0.39 0 0 0 0 0 0 0 +-18.451 -22.768 -0.409 0 0 0 0 0 0 0 +-18.465 -22.931 -0.412 0 0 0 0 0 0 0 +-18.565 -23.13 -0.417 0 0 0 0 0 0 0 +-18.57 -23.285 -0.419 0 0 0 0 0 0 0 +-18.745 -23.657 -0.428 0 0 0 0 0 0 0 +-19.343 -24.568 -0.451 0 0 0 0 0 0 0 +-19.137 -24.463 -0.446 0 0 0 0 0 0 0 +-19.062 -24.527 -0.446 0 0 0 0 0 0 0 +-18.89 -24.463 -0.443 0 0 0 0 0 0 0 +-18.822 -24.455 -0.442 0 0 0 0 0 0 0 +-18.08 -23.645 -0.419 0 0 0 0 0 0 0 +-18.434 -24.265 -0.434 0 0 0 0 0 0 0 +-18.424 -24.411 -0.436 0 0 0 0 0 0 0 +-18.315 -24.425 -0.435 0 0 0 0 0 0 0 +-18.257 -24.508 -0.436 0 0 0 0 0 0 0 +-18.26 -24.673 -0.439 0 0 0 0 0 0 0 +-18.308 -24.819 -0.442 0 0 0 0 0 0 0 +-22.391 -30.546 -0.589 0 0 0 0 0 0 0 +-22.451 -30.829 -0.595 0 0 0 0 0 0 0 +-22.417 -30.987 -0.597 0 0 0 0 0 0 0 +-22.348 -31.096 -0.598 0 0 0 0 0 0 0 +-22.214 -31.116 -0.597 0 0 0 0 0 0 0 +-22.103 -31.167 -0.596 0 0 0 0 0 0 0 +-25.907 -36.645 -0.736 0 0 0 0 0 0 0 +-25.93 -36.923 -0.741 0 0 0 0 0 0 0 +-18.997 -27.243 -0.491 0 0 0 0 0 0 0 +-18.889 -27.272 -0.491 0 0 0 0 0 0 0 +-18.691 -27.168 -0.486 0 0 0 0 0 0 0 +-18.646 -27.286 -0.488 0 0 0 0 0 0 0 +-18.595 -27.396 -0.489 0 0 0 0 0 0 0 +-18.678 -27.61 -0.494 0 0 0 0 0 0 0 +-21.093 -31.386 -0.588 0 0 0 0 0 0 0 +-19.153 -28.895 -0.522 0 0 0 0 0 0 0 +-19.025 -28.898 -0.52 0 0 0 0 0 0 0 +-18.921 -28.937 -0.52 0 0 0 0 0 0 0 +-18.797 -28.946 -0.519 0 0 0 0 0 0 0 +-18.834 -29.102 -0.522 0 0 0 0 0 0 0 +-18.86 -29.344 -0.526 0 0 0 0 0 0 0 +-26.505 -41.506 -0.828 0 0 0 0 0 0 0 +-26.514 -41.808 -0.833 0 0 0 0 0 0 0 +-26.593 -42.225 -0.841 0 0 0 0 0 0 0 +-26.655 -42.62 -0.849 0 0 0 0 0 0 0 +-26.705 -42.999 -0.856 0 0 0 0 0 0 0 +-26.815 -43.328 -0.863 0 0 0 0 0 0 0 +-26.867 -43.717 -0.871 0 0 0 0 0 0 0 +-26.879 -44.047 -0.877 0 0 0 0 0 0 0 +-19.672 -32.478 -0.591 0 0 0 0 0 0 0 +-19.558 -32.519 -0.591 0 0 0 0 0 0 0 +-19.437 -32.55 -0.59 0 0 0 0 0 0 0 +-19.317 -32.582 -0.589 0 0 0 0 0 0 0 +-19.308 -32.682 -0.591 0 0 0 0 0 0 0 +-19.308 -32.919 -0.595 0 0 0 0 0 0 0 +-27.844 -47.792 -0.955 0 0 0 0 0 0 0 +-27.694 -47.879 -0.955 0 0 0 0 0 0 0 +-19.572 -34.1 -0.619 0 0 0 0 0 0 0 +-19.448 -34.131 -0.619 0 0 0 0 0 0 0 +-27.358 -48.344 -0.96 0 0 0 0 0 0 0 +-27.496 -48.766 -0.969 0 0 0 0 0 0 0 +-20.193 -36.092 -0.662 0 0 0 0 0 0 0 +-20.028 -36.063 -0.66 0 0 0 0 0 0 0 +-19.651 -35.647 -0.648 0 0 0 0 0 0 0 +-19.67 -35.949 -0.654 0 0 0 0 0 0 0 +-19.745 -36.357 -0.662 0 0 0 0 0 0 0 +-23.864 -44.259 -0.849 0 0 0 0 0 0 0 +-15.871 -29.564 -0.498 0 0 0 0 0 0 0 +-15.777 -29.612 -0.498 0 0 0 0 0 0 0 +-15.669 -29.633 -0.498 0 0 0 0 0 0 0 +-15.56 -29.652 -0.497 0 0 0 0 0 0 0 +-15.443 -29.656 -0.496 0 0 0 0 0 0 0 +-15.298 -29.604 -0.494 0 0 0 0 0 0 0 +-20.38 -39.725 -0.731 0 0 0 0 0 0 0 +-20.296 -39.715 -0.73 0 0 0 0 0 0 0 +-20.252 -39.937 -0.734 0 0 0 0 0 0 0 +-22.329 -44.372 -0.836 0 0 0 0 0 0 0 +-22.171 -44.406 -0.836 0 0 0 0 0 0 0 +-22.061 -44.534 -0.837 0 0 0 0 0 0 0 +-21.886 -44.533 -0.835 0 0 0 0 0 0 0 +-21.653 -44.411 -0.831 0 0 0 0 0 0 0 +-21.019 -43.284 -0.804 0 0 0 0 0 0 0 +-20.877 -43.337 -0.804 0 0 0 0 0 0 0 +-20.723 -43.366 -0.803 0 0 0 0 0 0 0 +-20.699 -43.668 -0.808 0 0 0 0 0 0 0 +-21.839 -46.446 -0.871 0 0 0 0 0 0 0 +-21.794 -46.73 -0.876 0 0 0 0 0 0 0 +-21.52 -46.91 -0.877 0 0 0 0 0 0 0 +-21.43 -46.907 -0.876 0 0 0 0 0 0 0 +-21.265 -46.936 -0.875 0 0 0 0 0 0 0 +-21.163 -47.103 -0.878 0 0 0 0 0 0 0 +-21.636 -48.562 -0.91 0 0 0 0 0 0 0 +-21.465 -48.588 -0.909 0 0 0 0 0 0 0 +-21.323 -48.681 -0.909 0 0 0 0 0 0 0 +-15.796 -36.546 -0.63 0 0 0 0 0 0 0 +-15.742 -36.737 -0.633 0 0 0 0 0 0 0 +-22.158 -52.136 -0.983 0 0 0 0 0 0 0 +-21.973 -52.154 -0.982 0 0 0 0 0 0 0 +-21.813 -52.232 -0.982 0 0 0 0 0 0 0 +-23.684 -57.467 -1.098 0 0 0 0 0 0 0 +-22.731 -55.651 -1.055 0 0 0 0 0 0 0 +-22.569 -55.756 -1.056 0 0 0 0 0 0 0 +-22.374 -55.776 -1.055 0 0 0 0 0 0 0 +-14.711 -37.032 -0.63 0 0 0 0 0 0 0 +-14.589 -37.065 -0.63 0 0 0 0 0 0 0 +-14.453 -37.061 -0.629 0 0 0 0 0 0 0 +-14.326 -37.08 -0.628 0 0 0 0 0 0 0 +-14.257 -37.072 -0.628 0 0 0 0 0 0 0 +-14.129 -37.089 -0.627 0 0 0 0 0 0 0 +-13.999 -37.096 -0.626 0 0 0 0 0 0 0 +-13.872 -37.111 -0.626 0 0 0 0 0 0 0 +-13.742 -37.121 -0.625 0 0 0 0 0 0 0 +-13.619 -37.145 -0.624 0 0 0 0 0 0 0 +-13.489 -37.152 -0.624 0 0 0 0 0 0 0 +-13.426 -37.16 -0.623 0 0 0 0 0 0 0 +-13.291 -37.151 -0.622 0 0 0 0 0 0 0 +-13.181 -37.214 -0.623 0 0 0 0 0 0 0 +-13.18 -37.583 -0.63 0 0 0 0 0 0 0 +-13.218 -38.074 -0.64 0 0 0 0 0 0 0 +-13.25 -38.556 -0.65 0 0 0 0 0 0 0 +-13.297 -39.091 -0.661 0 0 0 0 0 0 0 +-13.405 -39.612 -0.672 0 0 0 0 0 0 0 +-13.512 -40.766 -0.695 0 0 0 0 0 0 0 +-14.097 -42.979 -0.743 0 0 0 0 0 0 0 +-16.536 -76.85 -1.443 0 0 0 0 0 0 0 +-16.322 -77.03 -1.446 0 0 0 0 0 0 0 +-16.048 -76.931 -1.443 0 0 0 0 0 0 0 +-15.925 -76.942 -1.442 0 0 0 0 0 0 0 +-15.715 -77.15 -1.446 0 0 0 0 0 0 0 +-15.436 -77.017 -1.442 0 0 0 0 0 0 0 +-15.229 -77.24 -1.446 0 0 0 0 0 0 0 +-14.956 -77.134 -1.442 0 0 0 0 0 0 0 +-4.527 -65.565 -1.173 0 0 0 0 0 0 0 +-4.314 -65.477 -1.171 0 0 0 0 0 0 0 +-4.294 -72.018 -1.308 0 0 0 0 0 0 0 +-4.167 -71.797 -1.303 0 0 0 0 0 0 0 +-3.852 -70.197 -1.269 0 0 0 0 0 0 0 +-3.466 -67.026 -1.202 0 0 0 0 0 0 0 +-3.153 -64.947 -1.158 0 0 0 0 0 0 0 +-2.767 -60.988 -1.075 0 0 0 0 0 0 0 +-2.505 -59.338 -1.04 0 0 0 0 0 0 0 +-2.393 -58.886 -1.031 0 0 0 0 0 0 0 +-2.134 -56.953 -0.99 0 0 0 0 0 0 0 +-1.874 -54.616 -0.941 0 0 0 0 0 0 0 +-1.61 -51.701 -0.88 0 0 0 0 0 0 0 +-1.427 -51.003 -0.865 0 0 0 0 0 0 0 +-1.239 -49.888 -0.841 0 0 0 0 0 0 0 +-1.057 -48.754 -0.817 0 0 0 0 0 0 0 +-0.889 -47.975 -0.801 0 0 0 0 0 0 0 +-0.79 -46.635 -0.773 0 0 0 0 0 0 0 +-0.222 -30.76 -0.44 0 0 0 0 0 0 0 +-0.126 -30.885 -0.443 0 0 0 0 0 0 0 +-0.048 -41.627 -0.668 0 0 0 0 0 0 0 +0.083 -41.743 -0.67 0 0 0 0 0 0 0 +0.148 -41.658 -0.668 0 0 0 0 0 0 0 +0.244 -36.011 -0.55 0 0 0 0 0 0 0 +0.357 -35.928 -0.548 0 0 0 0 0 0 0 +0.469 -35.905 -0.548 0 0 0 0 0 0 0 +0.582 -35.917 -0.548 0 0 0 0 0 0 0 +0.695 -35.913 -0.548 0 0 0 0 0 0 0 +0.801 -35.575 -0.541 0 0 0 0 0 0 0 +0.842 -34.948 -0.528 0 0 0 0 0 0 0 +0.938 -34.436 -0.517 0 0 0 0 0 0 0 +1.035 -34.049 -0.509 0 0 0 0 0 0 0 +1.128 -33.622 -0.5 0 0 0 0 0 0 0 +1.218 -33.168 -0.491 0 0 0 0 0 0 0 +1.307 -32.773 -0.483 0 0 0 0 0 0 0 +1.392 -32.345 -0.474 0 0 0 0 0 0 0 +1.431 -32.089 -0.468 0 0 0 0 0 0 0 +1.526 -31.952 -0.466 0 0 0 0 0 0 0 +1.596 -31.344 -0.453 0 0 0 0 0 0 0 +1.674 -30.954 -0.445 0 0 0 0 0 0 0 +1.754 -30.651 -0.439 0 0 0 0 0 0 0 +1.844 -30.532 -0.436 0 0 0 0 0 0 0 +1.921 -30.226 -0.43 0 0 0 0 0 0 0 +1.935 -29.694 -0.419 0 0 0 0 0 0 0 +2.022 -29.6 -0.417 0 0 0 0 0 0 0 +2.132 -29.835 -0.422 0 0 0 0 0 0 0 +2.218 -29.729 -0.42 0 0 0 0 0 0 0 +2.318 -29.807 -0.422 0 0 0 0 0 0 0 +2.411 -29.792 -0.422 0 0 0 0 0 0 0 +2.507 -29.804 -0.422 0 0 0 0 0 0 0 +2.558 -29.854 -0.423 0 0 0 0 0 0 0 +2.654 -29.876 -0.424 0 0 0 0 0 0 0 +2.746 -29.845 -0.423 0 0 0 0 0 0 0 +2.835 -29.779 -0.422 0 0 0 0 0 0 0 +2.914 -29.622 -0.419 0 0 0 0 0 0 0 +3.007 -29.611 -0.419 0 0 0 0 0 0 0 +3.104 -29.643 -0.42 0 0 0 0 0 0 0 +3.144 -29.573 -0.418 0 0 0 0 0 0 0 +3.244 -29.632 -0.42 0 0 0 0 0 0 0 +3.071 -27.245 -0.37 0 0 0 0 0 0 0 +3.442 -29.717 -0.422 0 0 0 0 0 0 0 +3.533 -29.688 -0.422 0 0 0 0 0 0 0 +3.657 -29.929 -0.427 0 0 0 0 0 0 0 +3.779 -30.143 -0.432 0 0 0 0 0 0 0 +3.802 -29.937 -0.428 0 0 0 0 0 0 0 +3.914 -30.07 -0.431 0 0 0 0 0 0 0 +3.998 -29.976 -0.429 0 0 0 0 0 0 0 +4.1 -30.025 -0.43 0 0 0 0 0 0 0 +4.206 -30.091 -0.432 0 0 0 0 0 0 0 +3.938 -27.531 -0.378 0 0 0 0 0 0 0 +4.063 -27.78 -0.384 0 0 0 0 0 0 0 +4.105 -27.76 -0.383 0 0 0 0 0 0 0 +4.217 -27.917 -0.387 0 0 0 0 0 0 0 +4.272 -27.69 -0.382 0 0 0 0 0 0 0 +4.397 -27.916 -0.387 0 0 0 0 0 0 0 +4.802 -29.888 -0.43 0 0 0 0 0 0 0 +4.553 -27.769 -0.385 0 0 0 0 0 0 0 +4.992 -29.875 -0.43 0 0 0 0 0 0 0 +5.042 -29.885 -0.43 0 0 0 0 0 0 0 +5.141 -29.9 -0.431 0 0 0 0 0 0 0 +5.247 -29.949 -0.432 0 0 0 0 0 0 0 +4.984 -27.924 -0.39 0 0 0 0 0 0 0 +5.067 -27.883 -0.389 0 0 0 0 0 0 0 +5.152 -27.851 -0.389 0 0 0 0 0 0 0 +5.235 -27.809 -0.388 0 0 0 0 0 0 0 +5.287 -27.846 -0.389 0 0 0 0 0 0 0 +4.432 -22.928 -0.285 0 0 0 0 0 0 0 +4.492 -22.851 -0.283 0 0 0 0 0 0 0 +4.564 -22.839 -0.283 0 0 0 0 0 0 0 +4.639 -22.838 -0.284 0 0 0 0 0 0 0 +4.731 -22.924 -0.286 0 0 0 0 0 0 0 +4.839 -23.081 -0.289 0 0 0 0 0 0 0 +5.875 -27.83 -0.391 0 0 0 0 0 0 0 +5.958 -27.792 -0.391 0 0 0 0 0 0 0 +6.038 -27.738 -0.39 0 0 0 0 0 0 0 +6.133 -27.758 -0.391 0 0 0 0 0 0 0 +6.229 -27.774 -0.392 0 0 0 0 0 0 0 +6.304 -27.703 -0.391 0 0 0 0 0 0 0 +6.402 -27.728 -0.392 0 0 0 0 0 0 0 +6.458 -27.775 -0.393 0 0 0 0 0 0 0 +6.544 -27.75 -0.393 0 0 0 0 0 0 0 +7.28 -30.453 -0.451 0 0 0 0 0 0 0 +5.954 -24.542 -0.324 0 0 0 0 0 0 0 +6.013 -24.448 -0.323 0 0 0 0 0 0 0 +6.089 -24.427 -0.323 0 0 0 0 0 0 0 +6.169 -24.421 -0.323 0 0 0 0 0 0 0 +6.218 -24.452 -0.324 0 0 0 0 0 0 0 +6.299 -24.45 -0.324 0 0 0 0 0 0 0 +6.384 -24.463 -0.325 0 0 0 0 0 0 0 +6.475 -24.497 -0.326 0 0 0 0 0 0 0 +7.189 -26.865 -0.378 0 0 0 0 0 0 0 +7.265 -26.813 -0.377 0 0 0 0 0 0 0 +5.894 -21.466 -0.262 0 0 0 0 0 0 0 +5.94 -21.5 -0.263 0 0 0 0 0 0 0 +7.29 -26.088 -0.363 0 0 0 0 0 0 0 +6.029 -21.3 -0.259 0 0 0 0 0 0 0 +6.169 -21.537 -0.265 0 0 0 0 0 0 0 +7.399 -25.544 -0.353 0 0 0 0 0 0 0 +6.23 -21.242 -0.259 0 0 0 0 0 0 0 +7.582 -25.574 -0.354 0 0 0 0 0 0 0 +7.619 -25.55 -0.354 0 0 0 0 0 0 0 +7.709 -25.561 -0.355 0 0 0 0 0 0 0 +6.582 -21.563 -0.268 0 0 0 0 0 0 0 +6.682 -21.649 -0.27 0 0 0 0 0 0 0 +6.865 -21.998 -0.278 0 0 0 0 0 0 0 +7.979 -25.302 -0.351 0 0 0 0 0 0 0 +6.818 -21.372 -0.265 0 0 0 0 0 0 0 +6.972 -21.736 -0.274 0 0 0 0 0 0 0 +8.025 -24.766 -0.341 0 0 0 0 0 0 0 +8.055 -24.593 -0.338 0 0 0 0 0 0 0 +8.085 -24.425 -0.334 0 0 0 0 0 0 0 +7.194 -21.497 -0.27 0 0 0 0 0 0 0 +8.116 -24.012 -0.326 0 0 0 0 0 0 0 +7.587 -22.21 -0.287 0 0 0 0 0 0 0 +7.624 -22.202 -0.287 0 0 0 0 0 0 0 +7.716 -22.243 -0.289 0 0 0 0 0 0 0 +3.747 -10.44 -0.027 0 0 0 0 0 0 0 +3.811 -10.516 -0.029 0 0 0 0 0 0 0 +7.905 -21.681 -0.279 0 0 0 0 0 0 0 +7.997 -21.826 -0.282 0 0 0 0 0 0 0 +8.064 -21.797 -0.282 0 0 0 0 0 0 0 +8.127 -21.758 -0.282 0 0 0 0 0 0 0 +8.184 -21.703 -0.281 0 0 0 0 0 0 0 +8.272 -21.729 -0.282 0 0 0 0 0 0 0 +8.299 -21.595 -0.28 0 0 0 0 0 0 0 +8.316 -21.438 -0.277 0 0 0 0 0 0 0 +8.306 -21.312 -0.275 0 0 0 0 0 0 0 +8.336 -21.192 -0.272 0 0 0 0 0 0 0 +8.344 -21.017 -0.269 0 0 0 0 0 0 0 +8.354 -20.852 -0.266 0 0 0 0 0 0 0 +8.406 -20.792 -0.265 0 0 0 0 0 0 0 +8.448 -20.708 -0.264 0 0 0 0 0 0 0 +8.396 -20.396 -0.257 0 0 0 0 0 0 0 +8.387 -20.283 -0.255 0 0 0 0 0 0 0 +8.441 -20.233 -0.255 0 0 0 0 0 0 0 +8.494 -20.18 -0.254 0 0 0 0 0 0 0 +8.506 -20.034 -0.251 0 0 0 0 0 0 0 +8.49 -19.821 -0.247 0 0 0 0 0 0 0 +8.511 -19.699 -0.245 0 0 0 0 0 0 0 +8.558 -19.637 -0.244 0 0 0 0 0 0 0 +8.578 -19.6 -0.244 0 0 0 0 0 0 0 +8.518 -19.297 -0.237 0 0 0 0 0 0 0 +8.526 -19.151 -0.234 0 0 0 0 0 0 0 +8.563 -19.073 -0.233 0 0 0 0 0 0 0 +8.623 -19.046 -0.233 0 0 0 0 0 0 0 +8.671 -18.993 -0.233 0 0 0 0 0 0 0 +8.658 -18.806 -0.229 0 0 0 0 0 0 0 +8.626 -18.66 -0.226 0 0 0 0 0 0 0 +8.659 -18.578 -0.225 0 0 0 0 0 0 0 +8.68 -18.471 -0.223 0 0 0 0 0 0 0 +8.702 -18.366 -0.221 0 0 0 0 0 0 0 +8.722 -18.259 -0.219 0 0 0 0 0 0 0 +8.736 -18.142 -0.217 0 0 0 0 0 0 0 +8.755 -18.037 -0.215 0 0 0 0 0 0 0 +8.791 -18.039 -0.216 0 0 0 0 0 0 0 +8.803 -17.92 -0.214 0 0 0 0 0 0 0 +8.886 -17.946 -0.215 0 0 0 0 0 0 0 +8.927 -17.888 -0.214 0 0 0 0 0 0 0 +8.944 -17.781 -0.212 0 0 0 0 0 0 0 +8.96 -17.674 -0.21 0 0 0 0 0 0 0 +8.976 -17.569 -0.209 0 0 0 0 0 0 0 +8.935 -17.42 -0.205 0 0 0 0 0 0 0 +8.964 -17.342 -0.204 0 0 0 0 0 0 0 +9.008 -17.294 -0.204 0 0 0 0 0 0 0 +9.038 -17.22 -0.203 0 0 0 0 0 0 0 +9.047 -17.105 -0.201 0 0 0 0 0 0 0 +8.983 -16.855 -0.195 0 0 0 0 0 0 0 +8.973 -16.709 -0.193 0 0 0 0 0 0 0 +9.019 -16.668 -0.192 0 0 0 0 0 0 0 +9.041 -16.647 -0.192 0 0 0 0 0 0 0 +9.088 -16.61 -0.192 0 0 0 0 0 0 0 +9.117 -16.539 -0.191 0 0 0 0 0 0 0 +9.135 -16.447 -0.189 0 0 0 0 0 0 0 +9.147 -16.349 -0.188 0 0 0 0 0 0 0 +9.119 -16.179 -0.184 0 0 0 0 0 0 0 +9.136 -16.091 -0.183 0 0 0 0 0 0 0 +9.144 -16.045 -0.182 0 0 0 0 0 0 0 +9.163 -15.961 -0.181 0 0 0 0 0 0 0 +9.18 -15.875 -0.179 0 0 0 0 0 0 0 +9.199 -15.794 -0.178 0 0 0 0 0 0 0 +9.213 -15.703 -0.177 0 0 0 0 0 0 0 +9.205 -15.577 -0.174 0 0 0 0 0 0 0 +9.198 -15.51 -0.173 0 0 0 0 0 0 0 +9.213 -15.424 -0.172 0 0 0 0 0 0 0 +9.282 -15.429 -0.172 0 0 0 0 0 0 0 +9.355 -15.441 -0.173 0 0 0 0 0 0 0 +9.42 -15.439 -0.174 0 0 0 0 0 0 0 +9.494 -15.45 -0.175 0 0 0 0 0 0 0 +7.057 -11.352 -0.075 0 0 0 0 0 0 0 +7.097 -11.337 -0.075 0 0 0 0 0 0 0 +7.119 -11.292 -0.075 0 0 0 0 0 0 0 +7.156 -11.271 -0.075 0 0 0 0 0 0 0 +7.192 -11.251 -0.075 0 0 0 0 0 0 0 +7.218 -11.213 -0.075 0 0 0 0 0 0 0 +7.249 -11.183 -0.074 0 0 0 0 0 0 0 +7.248 -11.143 -0.074 0 0 0 0 0 0 0 +7.286 -11.126 -0.074 0 0 0 0 0 0 0 +7.313 -11.091 -0.073 0 0 0 0 0 0 0 +7.343 -11.061 -0.073 0 0 0 0 0 0 0 +7.373 -11.03 -0.073 0 0 0 0 0 0 0 +7.409 -11.01 -0.073 0 0 0 0 0 0 0 +7.431 -10.967 -0.073 0 0 0 0 0 0 0 +7.462 -10.938 -0.073 0 0 0 0 0 0 0 +7.473 -10.918 -0.072 0 0 0 0 0 0 0 +7.513 -10.903 -0.073 0 0 0 0 0 0 0 +7.534 -10.86 -0.072 0 0 0 0 0 0 0 +7.567 -10.834 -0.072 0 0 0 0 0 0 0 +7.593 -10.799 -0.072 0 0 0 0 0 0 0 +7.629 -10.778 -0.072 0 0 0 0 0 0 0 +7.646 -10.732 -0.071 0 0 0 0 0 0 0 +7.79 -10.897 -0.076 0 0 0 0 0 0 0 +9.554 -13.199 -0.137 0 0 0 0 0 0 0 +9.573 -13.138 -0.136 0 0 0 0 0 0 0 +9.58 -13.061 -0.135 0 0 0 0 0 0 0 +9.595 -12.996 -0.134 0 0 0 0 0 0 0 +9.467 -12.737 -0.128 0 0 0 0 0 0 0 +9.472 -12.702 -0.127 0 0 0 0 0 0 0 +9.504 -12.662 -0.127 0 0 0 0 0 0 0 +9.548 -12.637 -0.127 0 0 0 0 0 0 0 +9.59 -12.61 -0.127 0 0 0 0 0 0 0 +9.623 -12.572 -0.127 0 0 0 0 0 0 0 +9.659 -12.537 -0.127 0 0 0 0 0 0 0 +9.641 -12.473 -0.125 0 0 0 0 0 0 0 +9.652 -12.406 -0.124 0 0 0 0 0 0 0 +9.66 -12.336 -0.123 0 0 0 0 0 0 0 +9.655 -12.251 -0.122 0 0 0 0 0 0 0 +9.637 -12.148 -0.12 0 0 0 0 0 0 0 +9.65 -12.087 -0.119 0 0 0 0 0 0 0 +9.657 -12.017 -0.118 0 0 0 0 0 0 0 +9.701 -11.995 -0.118 0 0 0 0 0 0 0 +9.701 -11.956 -0.118 0 0 0 0 0 0 0 +9.709 -11.89 -0.117 0 0 0 0 0 0 0 +9.726 -11.835 -0.116 0 0 0 0 0 0 0 +9.724 -11.756 -0.115 0 0 0 0 0 0 0 +9.745 -11.707 -0.114 0 0 0 0 0 0 0 +9.748 -11.635 -0.113 0 0 0 0 0 0 0 +9.769 -11.586 -0.113 0 0 0 0 0 0 0 +9.751 -11.528 -0.111 0 0 0 0 0 0 0 +9.709 -11.406 -0.109 0 0 0 0 0 0 0 +9.622 -11.231 -0.105 0 0 0 0 0 0 0 +9.634 -11.173 -0.104 0 0 0 0 0 0 0 +9.636 -11.105 -0.103 0 0 0 0 0 0 0 +9.646 -11.046 -0.102 0 0 0 0 0 0 0 +9.658 -10.99 -0.102 0 0 0 0 0 0 0 +9.653 -10.949 -0.101 0 0 0 0 0 0 0 +9.665 -10.893 -0.1 0 0 0 0 0 0 0 +9.678 -10.839 -0.1 0 0 0 0 0 0 0 +9.677 -10.77 -0.098 0 0 0 0 0 0 0 +9.673 -10.698 -0.097 0 0 0 0 0 0 0 +9.687 -10.645 -0.097 0 0 0 0 0 0 0 +9.69 -10.582 -0.096 0 0 0 0 0 0 0 +9.698 -10.557 -0.095 0 0 0 0 0 0 0 +9.721 -10.516 -0.095 0 0 0 0 0 0 0 +9.73 -10.459 -0.094 0 0 0 0 0 0 0 +9.739 -10.403 -0.094 0 0 0 0 0 0 0 +9.75 -10.349 -0.093 0 0 0 0 0 0 0 +9.762 -10.297 -0.092 0 0 0 0 0 0 0 +9.753 -10.255 -0.092 0 0 0 0 0 0 0 +9.758 -10.196 -0.091 0 0 0 0 0 0 0 +9.776 -10.151 -0.09 0 0 0 0 0 0 0 +9.783 -10.094 -0.09 0 0 0 0 0 0 0 +9.79 -10.037 -0.089 0 0 0 0 0 0 0 +9.8 -9.985 -0.088 0 0 0 0 0 0 0 +9.808 -9.93 -0.088 0 0 0 0 0 0 0 +9.813 -9.874 -0.087 0 0 0 0 0 0 0 +9.803 -9.833 -0.086 0 0 0 0 0 0 0 +9.815 -9.782 -0.085 0 0 0 0 0 0 0 +9.818 -9.724 -0.085 0 0 0 0 0 0 0 +9.835 -9.679 -0.084 0 0 0 0 0 0 0 +9.842 -9.626 -0.084 0 0 0 0 0 0 0 +9.851 -9.574 -0.083 0 0 0 0 0 0 0 +9.854 -9.517 -0.082 0 0 0 0 0 0 0 +9.848 -9.482 -0.082 0 0 0 0 0 0 0 +9.855 -9.429 -0.081 0 0 0 0 0 0 0 +9.867 -9.381 -0.08 0 0 0 0 0 0 0 +9.872 -9.327 -0.08 0 0 0 0 0 0 0 +9.878 -9.274 -0.079 0 0 0 0 0 0 0 +9.885 -9.222 -0.078 0 0 0 0 0 0 0 +9.889 -9.168 -0.078 0 0 0 0 0 0 0 +9.86 -9.111 -0.076 0 0 0 0 0 0 0 +9.872 -9.065 -0.076 0 0 0 0 0 0 0 +9.881 -9.017 -0.075 0 0 0 0 0 0 0 +9.89 -8.968 -0.075 0 0 0 0 0 0 0 +9.92 -8.938 -0.075 0 0 0 0 0 0 0 +9.924 -8.886 -0.074 0 0 0 0 0 0 0 +9.934 -8.839 -0.074 0 0 0 0 0 0 0 +9.927 -8.804 -0.073 0 0 0 0 0 0 0 +9.94 -8.76 -0.073 0 0 0 0 0 0 0 +9.94 -8.705 -0.072 0 0 0 0 0 0 0 +9.949 -8.658 -0.071 0 0 0 0 0 0 0 +9.958 -8.611 -0.071 0 0 0 0 0 0 0 +9.961 -8.559 -0.07 0 0 0 0 0 0 0 +9.97 -8.512 -0.07 0 0 0 0 0 0 0 +9.963 -8.479 -0.069 0 0 0 0 0 0 0 +9.97 -8.431 -0.069 0 0 0 0 0 0 0 +9.991 -8.394 -0.069 0 0 0 0 0 0 0 +10.008 -8.355 -0.068 0 0 0 0 0 0 0 +10.042 -8.33 -0.068 0 0 0 0 0 0 0 +10.061 -8.294 -0.068 0 0 0 0 0 0 0 +10.078 -8.254 -0.068 0 0 0 0 0 0 0 +10.09 -8.237 -0.068 0 0 0 0 0 0 0 +10.102 -8.194 -0.068 0 0 0 0 0 0 0 +10.124 -8.16 -0.068 0 0 0 0 0 0 0 +10.156 -8.133 -0.068 0 0 0 0 0 0 0 +10.17 -8.092 -0.067 0 0 0 0 0 0 0 +10.212 -8.073 -0.068 0 0 0 0 0 0 0 +10.227 -8.033 -0.068 0 0 0 0 0 0 0 +10.246 -8.022 -0.068 0 0 0 0 0 0 0 +10.276 -7.993 -0.068 0 0 0 0 0 0 0 +10.3 -7.96 -0.068 0 0 0 0 0 0 0 +10.315 -7.92 -0.068 0 0 0 0 0 0 0 +10.34 -7.888 -0.068 0 0 0 0 0 0 0 +10.365 -7.855 -0.068 0 0 0 0 0 0 0 +10.383 -7.818 -0.067 0 0 0 0 0 0 0 +10.392 -7.799 -0.067 0 0 0 0 0 0 0 +10.423 -7.771 -0.068 0 0 0 0 0 0 0 +10.441 -7.734 -0.067 0 0 0 0 0 0 0 +10.467 -7.702 -0.067 0 0 0 0 0 0 0 +10.484 -7.664 -0.067 0 0 0 0 0 0 0 +10.495 -7.622 -0.067 0 0 0 0 0 0 0 +10.526 -7.594 -0.067 0 0 0 0 0 0 0 +10.533 -7.574 -0.067 0 0 0 0 0 0 0 +10.558 -7.542 -0.067 0 0 0 0 0 0 0 +10.587 -7.512 -0.067 0 0 0 0 0 0 0 +10.605 -7.475 -0.067 0 0 0 0 0 0 0 +10.624 -7.438 -0.067 0 0 0 0 0 0 0 +10.652 -7.408 -0.067 0 0 0 0 0 0 0 +10.679 -7.377 -0.067 0 0 0 0 0 0 0 +10.692 -7.361 -0.067 0 0 0 0 0 0 0 +10.708 -7.323 -0.067 0 0 0 0 0 0 0 +10.725 -7.285 -0.067 0 0 0 0 0 0 0 +10.748 -7.251 -0.067 0 0 0 0 0 0 0 +10.777 -7.222 -0.067 0 0 0 0 0 0 0 +10.803 -7.19 -0.067 0 0 0 0 0 0 0 +10.82 -7.153 -0.067 0 0 0 0 0 0 0 +10.835 -7.138 -0.067 0 0 0 0 0 0 0 +10.824 -7.082 -0.066 0 0 0 0 0 0 0 +10.836 -7.042 -0.066 0 0 0 0 0 0 0 +10.867 -7.013 -0.066 0 0 0 0 0 0 0 +10.895 -6.983 -0.066 0 0 0 0 0 0 0 +10.912 -6.946 -0.066 0 0 0 0 0 0 0 +10.947 -6.92 -0.066 0 0 0 0 0 0 0 +10.958 -6.903 -0.066 0 0 0 0 0 0 0 +10.983 -6.87 -0.067 0 0 0 0 0 0 0 +11.006 -6.837 -0.067 0 0 0 0 0 0 0 +11.033 -6.805 -0.067 0 0 0 0 0 0 0 +11.047 -6.767 -0.067 0 0 0 0 0 0 0 +11.07 -6.733 -0.067 0 0 0 0 0 0 0 +11.121 -6.716 -0.067 0 0 0 0 0 0 0 +11.158 -6.715 -0.068 0 0 0 0 0 0 0 +11.209 -6.697 -0.069 0 0 0 0 0 0 0 +11.255 -6.677 -0.069 0 0 0 0 0 0 0 +11.314 -6.664 -0.07 0 0 0 0 0 0 0 +11.359 -6.643 -0.071 0 0 0 0 0 0 0 +11.413 -6.626 -0.072 0 0 0 0 0 0 0 +11.463 -6.607 -0.072 0 0 0 0 0 0 0 +11.508 -6.609 -0.073 0 0 0 0 0 0 0 +11.567 -6.595 -0.074 0 0 0 0 0 0 0 +11.603 -6.568 -0.074 0 0 0 0 0 0 0 +11.641 -6.541 -0.075 0 0 0 0 0 0 0 +11.697 -6.524 -0.076 0 0 0 0 0 0 0 +11.741 -6.501 -0.076 0 0 0 0 0 0 0 +11.811 -6.491 -0.077 0 0 0 0 0 0 0 +11.879 -6.504 -0.079 0 0 0 0 0 0 0 +11.929 -6.483 -0.08 0 0 0 0 0 0 0 +11.983 -6.464 -0.08 0 0 0 0 0 0 0 +12.038 -6.445 -0.081 0 0 0 0 0 0 0 +12.094 -6.426 -0.082 0 0 0 0 0 0 0 +12.147 -6.406 -0.083 0 0 0 0 0 0 0 +12.208 -6.389 -0.084 0 0 0 0 0 0 0 +12.273 -6.398 -0.085 0 0 0 0 0 0 0 +12.306 -6.366 -0.085 0 0 0 0 0 0 0 +8.817 -4.518 -0.003 0 0 0 0 0 0 0 +8.84 -4.495 -0.003 0 0 0 0 0 0 0 +12.47 -6.303 -0.088 0 0 0 0 0 0 0 +12.545 -6.292 -0.089 0 0 0 0 0 0 0 +12.599 -6.27 -0.09 0 0 0 0 0 0 0 +12.65 -6.27 -0.091 0 0 0 0 0 0 0 +12.704 -6.247 -0.092 0 0 0 0 0 0 0 +12.772 -6.231 -0.093 0 0 0 0 0 0 0 +12.831 -6.21 -0.094 0 0 0 0 0 0 0 +12.886 -6.187 -0.095 0 0 0 0 0 0 0 +12.953 -6.169 -0.096 0 0 0 0 0 0 0 +13.01 -6.147 -0.097 0 0 0 0 0 0 0 +13.059 -6.145 -0.098 0 0 0 0 0 0 0 +13.111 -6.119 -0.098 0 0 0 0 0 0 0 +13.15 -6.087 -0.099 0 0 0 0 0 0 0 +13.207 -6.063 -0.1 0 0 0 0 0 0 0 +13.274 -6.044 -0.101 0 0 0 0 0 0 0 +13.349 -6.027 -0.102 0 0 0 0 0 0 0 +13.415 -6.007 -0.103 0 0 0 0 0 0 0 +13.472 -6.007 -0.104 0 0 0 0 0 0 0 +13.54 -5.987 -0.105 0 0 0 0 0 0 0 +13.612 -5.967 -0.107 0 0 0 0 0 0 0 +13.673 -5.943 -0.108 0 0 0 0 0 0 0 +13.732 -5.917 -0.108 0 0 0 0 0 0 0 +13.811 -5.9 -0.11 0 0 0 0 0 0 0 +13.892 -5.884 -0.111 0 0 0 0 0 0 0 +14.139 -5.91 -0.116 0 0 0 0 0 0 0 +14.183 -5.876 -0.117 0 0 0 0 0 0 0 +14.224 -5.841 -0.117 0 0 0 0 0 0 0 +14.283 -5.813 -0.118 0 0 0 0 0 0 0 +14.334 -5.782 -0.119 0 0 0 0 0 0 0 +14.38 -5.748 -0.12 0 0 0 0 0 0 0 +14.437 -5.718 -0.121 0 0 0 0 0 0 0 +14.469 -5.704 -0.121 0 0 0 0 0 0 0 +14.527 -5.675 -0.122 0 0 0 0 0 0 0 +14.575 -5.641 -0.123 0 0 0 0 0 0 0 +14.632 -5.61 -0.123 0 0 0 0 0 0 0 +14.672 -5.573 -0.124 0 0 0 0 0 0 0 +14.693 -5.528 -0.124 0 0 0 0 0 0 0 +14.718 -5.511 -0.124 0 0 0 0 0 0 0 +14.773 -5.479 -0.125 0 0 0 0 0 0 0 +14.818 -5.443 -0.126 0 0 0 0 0 0 0 +14.937 -5.433 -0.128 0 0 0 0 0 0 0 +14.999 -5.403 -0.129 0 0 0 0 0 0 0 +15.046 -5.366 -0.13 0 0 0 0 0 0 0 +15.091 -5.329 -0.13 0 0 0 0 0 0 0 +15.142 -5.294 -0.131 0 0 0 0 0 0 0 +15.203 -5.288 -0.132 0 0 0 0 0 0 0 +15.223 -5.242 -0.132 0 0 0 0 0 0 0 +15.236 -5.193 -0.132 0 0 0 0 0 0 0 +15.258 -5.147 -0.133 0 0 0 0 0 0 0 +15.27 -5.097 -0.132 0 0 0 0 0 0 0 +15.299 -5.054 -0.133 0 0 0 0 0 0 0 +15.338 -5.013 -0.133 0 0 0 0 0 0 0 +15.57 -5.062 -0.138 0 0 0 0 0 0 0 +15.628 -5.027 -0.139 0 0 0 0 0 0 0 +15.685 -4.991 -0.14 0 0 0 0 0 0 0 +15.737 -4.953 -0.141 0 0 0 0 0 0 0 +15.795 -4.917 -0.142 0 0 0 0 0 0 0 +15.842 -4.878 -0.142 0 0 0 0 0 0 0 +15.873 -4.832 -0.143 0 0 0 0 0 0 0 +15.538 -4.703 -0.135 0 0 0 0 0 0 0 +15.488 -4.635 -0.134 0 0 0 0 0 0 0 +15.485 -4.581 -0.133 0 0 0 0 0 0 0 +15.547 -4.546 -0.135 0 0 0 0 0 0 0 +15.563 -4.498 -0.135 0 0 0 0 0 0 0 +15.543 -4.439 -0.134 0 0 0 0 0 0 0 +15.584 -4.398 -0.134 0 0 0 0 0 0 0 +15.635 -4.386 -0.135 0 0 0 0 0 0 0 +15.685 -4.347 -0.136 0 0 0 0 0 0 0 +15.741 -4.31 -0.137 0 0 0 0 0 0 0 +15.803 -4.273 -0.138 0 0 0 0 0 0 0 +15.859 -4.235 -0.139 0 0 0 0 0 0 0 +15.92 -4.198 -0.14 0 0 0 0 0 0 0 +15.98 -4.16 -0.141 0 0 0 0 0 0 0 +16.023 -4.145 -0.142 0 0 0 0 0 0 0 +16.082 -4.106 -0.143 0 0 0 0 0 0 0 +16.14 -4.067 -0.144 0 0 0 0 0 0 0 +16.207 -4.03 -0.145 0 0 0 0 0 0 0 +16.26 -3.989 -0.146 0 0 0 0 0 0 0 +16.321 -3.95 -0.147 0 0 0 0 0 0 0 +16.38 -3.91 -0.148 0 0 0 0 0 0 0 +16.408 -3.889 -0.148 0 0 0 0 0 0 0 +16.494 -3.855 -0.15 0 0 0 0 0 0 0 +16.549 -3.813 -0.151 0 0 0 0 0 0 0 +16.609 -3.772 -0.152 0 0 0 0 0 0 0 +16.678 -3.733 -0.153 0 0 0 0 0 0 0 +16.732 -3.69 -0.154 0 0 0 0 0 0 0 +16.816 -3.653 -0.156 0 0 0 0 0 0 0 +16.859 -3.635 -0.157 0 0 0 0 0 0 0 +16.923 -3.593 -0.158 0 0 0 0 0 0 0 +16.989 -3.551 -0.159 0 0 0 0 0 0 0 +17.041 -3.506 -0.16 0 0 0 0 0 0 0 +17.105 -3.464 -0.161 0 0 0 0 0 0 0 +17.178 -3.422 -0.162 0 0 0 0 0 0 0 +17.232 -3.377 -0.163 0 0 0 0 0 0 0 +17.3 -3.362 -0.164 0 0 0 0 0 0 0 +17.364 -3.318 -0.166 0 0 0 0 0 0 0 +17.445 -3.277 -0.167 0 0 0 0 0 0 0 +17.498 -3.23 -0.168 0 0 0 0 0 0 0 +13.681 -2.475 -0.086 0 0 0 0 0 0 0 +13.635 -2.423 -0.085 0 0 0 0 0 0 0 +13.615 -2.375 -0.085 0 0 0 0 0 0 0 +13.623 -2.354 -0.085 0 0 0 0 0 0 0 +13.614 -2.309 -0.084 0 0 0 0 0 0 0 +13.608 -2.264 -0.084 0 0 0 0 0 0 0 +13.619 -2.222 -0.084 0 0 0 0 0 0 0 +13.634 -2.18 -0.084 0 0 0 0 0 0 0 +13.652 -2.139 -0.085 0 0 0 0 0 0 0 +13.691 -2.101 -0.085 0 0 0 0 0 0 0 +13.714 -2.083 -0.086 0 0 0 0 0 0 0 +13.762 -2.046 -0.087 0 0 0 0 0 0 0 +13.825 -2.011 -0.088 0 0 0 0 0 0 0 +13.897 -1.977 -0.089 0 0 0 0 0 0 0 +19.332 -2.698 -0.204 0 0 0 0 0 0 0 +19.396 -2.645 -0.205 0 0 0 0 0 0 0 +19.484 -2.595 -0.207 0 0 0 0 0 0 0 +19.557 -2.574 -0.209 0 0 0 0 0 0 0 +19.529 -2.508 -0.208 0 0 0 0 0 0 0 +19.462 -2.437 -0.206 0 0 0 0 0 0 0 +19.568 -2.388 -0.208 0 0 0 0 0 0 0 +19.602 -2.329 -0.209 0 0 0 0 0 0 0 +19.66 -2.274 -0.21 0 0 0 0 0 0 0 +19.709 -2.217 -0.211 0 0 0 0 0 0 0 +19.754 -2.191 -0.212 0 0 0 0 0 0 0 +19.803 -2.133 -0.213 0 0 0 0 0 0 0 +19.861 -2.076 -0.214 0 0 0 0 0 0 0 +19.919 -2.019 -0.215 0 0 0 0 0 0 0 +19.961 -1.96 -0.215 0 0 0 0 0 0 0 +20.011 -1.902 -0.216 0 0 0 0 0 0 0 +20.037 -1.841 -0.217 0 0 0 0 0 0 0 +20.07 -1.812 -0.217 0 0 0 0 0 0 0 +20.157 -1.756 -0.219 0 0 0 0 0 0 0 +20.677 -1.736 -0.23 0 0 0 0 0 0 0 +20.724 -1.675 -0.231 0 0 0 0 0 0 0 +20.761 -1.612 -0.232 0 0 0 0 0 0 0 +20.83 -1.552 -0.233 0 0 0 0 0 0 0 +21.217 -1.514 -0.241 0 0 0 0 0 0 0 +21.465 -1.498 -0.246 0 0 0 0 0 0 0 +21.384 -1.425 -0.244 0 0 0 0 0 0 0 +21.63 -1.374 -0.249 0 0 0 0 0 0 0 +21.522 -1.299 -0.247 0 0 0 0 0 0 0 +21.37 -1.222 -0.244 0 0 0 0 0 0 0 +21.58 -1.166 -0.248 0 0 0 0 0 0 0 +21.805 -1.11 -0.253 0 0 0 0 0 0 0 +21.733 -1.072 -0.251 0 0 0 0 0 0 0 +21.239 -0.98 -0.241 0 0 0 0 0 0 0 +21.258 -0.914 -0.241 0 0 0 0 0 0 0 +21.286 -0.848 -0.242 0 0 0 0 0 0 0 +21.219 -0.779 -0.24 0 0 0 0 0 0 0 +21.155 -0.71 -0.239 0 0 0 0 0 0 0 +21.171 -0.644 -0.239 0 0 0 0 0 0 0 +21.226 -0.612 -0.24 0 0 0 0 0 0 0 +21.306 -0.548 -0.242 0 0 0 0 0 0 0 +21.366 -0.482 -0.243 0 0 0 0 0 0 0 +21.427 -0.416 -0.244 0 0 0 0 0 0 0 +21.474 -0.35 -0.245 0 0 0 0 0 0 0 +21.535 -0.283 -0.246 0 0 0 0 0 0 0 +21.596 -0.216 -0.248 0 0 0 0 0 0 0 +21.638 -0.183 -0.249 0 0 0 0 0 0 0 +21.893 -0.116 -0.254 0 0 0 0 0 0 0 +23.287 -0.052 -0.283 0 0 0 0 0 0 0 +35.692 0.08 -0.726 0 0 0 0 0 0 0 +35.42 0.246 -0.719 0 0 0 0 0 0 0 +35.275 0.355 -0.715 0 0 0 0 0 0 0 +35.094 0.464 -0.711 0 0 0 0 0 0 0 +34.918 0.571 -0.706 0 0 0 0 0 0 0 +34.756 0.677 -0.702 0 0 0 0 0 0 0 +34.57 0.782 -0.697 0 0 0 0 0 0 0 +34.423 0.887 -0.693 0 0 0 0 0 0 0 +34.258 0.937 -0.689 0 0 0 0 0 0 0 +34.093 1.039 -0.685 0 0 0 0 0 0 0 +33.932 1.141 -0.681 0 0 0 0 0 0 0 +33.766 1.241 -0.676 0 0 0 0 0 0 0 +33.468 1.441 -0.669 0 0 0 0 0 0 0 +33.316 1.539 -0.665 0 0 0 0 0 0 0 +33.165 1.584 -0.661 0 0 0 0 0 0 0 +33.009 1.68 -0.657 0 0 0 0 0 0 0 +33.129 1.791 -0.66 0 0 0 0 0 0 0 +33.137 1.896 -0.661 0 0 0 0 0 0 0 +33.227 2.006 -0.663 0 0 0 0 0 0 0 +33.577 2.133 -0.673 0 0 0 0 0 0 0 +32.984 2.199 -0.657 0 0 0 0 0 0 0 +33.086 2.258 -0.66 0 0 0 0 0 0 0 +33.145 2.367 -0.662 0 0 0 0 0 0 0 +33.207 2.476 -0.664 0 0 0 0 0 0 0 +33.219 2.582 -0.664 0 0 0 0 0 0 0 +33.415 2.809 -0.67 0 0 0 0 0 0 0 +33.446 2.917 -0.671 0 0 0 0 0 0 0 +18.758 1.714 -0.286 0 0 0 0 0 0 0 +18.727 1.77 -0.286 0 0 0 0 0 0 0 +18.998 1.856 -0.293 0 0 0 0 0 0 0 +43.071 4.652 -0.925 0 0 0 0 0 0 0 +42.933 4.706 -0.922 0 0 0 0 0 0 0 +60.749 6.862 -1.39 0 0 0 0 0 0 0 +60.857 7.068 -1.393 0 0 0 0 0 0 0 +60.949 7.273 -1.396 0 0 0 0 0 0 0 +25.298 3.246 -0.46 0 0 0 0 0 0 0 +25.141 3.265 -0.456 0 0 0 0 0 0 0 +61.5 8.223 -1.413 0 0 0 0 0 0 0 +61.632 8.438 -1.418 0 0 0 0 0 0 0 +61.713 8.646 -1.42 0 0 0 0 0 0 0 +46.878 6.712 -1.03 0 0 0 0 0 0 0 +43.941 6.431 -0.953 0 0 0 0 0 0 0 +20.89 3.144 -0.346 0 0 0 0 0 0 0 +43.017 6.779 -0.931 0 0 0 0 0 0 0 +43.114 6.933 -0.934 0 0 0 0 0 0 0 +42.902 7.037 -0.929 0 0 0 0 0 0 0 +42.728 7.146 -0.925 0 0 0 0 0 0 0 +42.578 7.259 -0.922 0 0 0 0 0 0 0 +42.389 7.295 -0.917 0 0 0 0 0 0 0 +41.974 7.495 -0.907 0 0 0 0 0 0 0 +41.862 7.611 -0.905 0 0 0 0 0 0 0 +40.656 7.523 -0.874 0 0 0 0 0 0 0 +40.605 7.645 -0.873 0 0 0 0 0 0 0 +40.671 7.79 -0.875 0 0 0 0 0 0 0 +40.704 7.863 -0.876 0 0 0 0 0 0 0 +18.737 3.666 -0.293 0 0 0 0 0 0 0 +18.733 3.727 -0.293 0 0 0 0 0 0 0 +40.673 8.255 -0.878 0 0 0 0 0 0 0 +37.326 7.696 -0.789 0 0 0 0 0 0 0 +37.212 7.794 -0.787 0 0 0 0 0 0 0 +37.121 7.897 -0.785 0 0 0 0 0 0 0 +37.184 8.033 -0.787 0 0 0 0 0 0 0 +41.259 8.984 -0.896 0 0 0 0 0 0 0 +38.935 8.605 -0.835 0 0 0 0 0 0 0 +38.879 8.72 -0.834 0 0 0 0 0 0 0 +35.668 8.116 -0.749 0 0 0 0 0 0 0 +35.752 8.253 -0.752 0 0 0 0 0 0 0 +35.881 8.402 -0.756 0 0 0 0 0 0 0 +35.993 8.548 -0.76 0 0 0 0 0 0 0 +39.388 9.422 -0.851 0 0 0 0 0 0 0 +39.317 9.535 -0.85 0 0 0 0 0 0 0 +39.281 9.657 -0.85 0 0 0 0 0 0 0 +39.299 9.793 -0.851 0 0 0 0 0 0 0 +39.328 9.932 -0.853 0 0 0 0 0 0 0 +41.665 10.663 -0.917 0 0 0 0 0 0 0 +41.62 10.791 -0.917 0 0 0 0 0 0 0 +41.522 10.835 -0.914 0 0 0 0 0 0 0 +40.136 10.607 -0.878 0 0 0 0 0 0 0 +34.422 9.209 -0.724 0 0 0 0 0 0 0 +39.998 10.84 -0.876 0 0 0 0 0 0 0 +40.062 10.992 -0.879 0 0 0 0 0 0 0 +40.096 11.137 -0.88 0 0 0 0 0 0 0 +16.15 4.552 -0.233 0 0 0 0 0 0 0 +16.352 4.665 -0.239 0 0 0 0 0 0 0 +17.184 4.962 -0.262 0 0 0 0 0 0 0 +17.244 5.038 -0.264 0 0 0 0 0 0 0 +16.557 4.949 -0.246 0 0 0 0 0 0 0 +16.522 4.996 -0.245 0 0 0 0 0 0 0 +16.506 5.019 -0.245 0 0 0 0 0 0 0 +16.483 5.069 -0.245 0 0 0 0 0 0 0 +17.278 5.434 -0.268 0 0 0 0 0 0 0 +16.33 5.389 -0.244 0 0 0 0 0 0 0 +16.308 5.438 -0.244 0 0 0 0 0 0 0 +16.296 5.492 -0.244 0 0 0 0 0 0 0 +16.254 5.534 -0.243 0 0 0 0 0 0 0 +16.845 5.796 -0.26 0 0 0 0 0 0 0 +17.033 5.92 -0.265 0 0 0 0 0 0 0 +18.079 6.446 -0.296 0 0 0 0 0 0 0 +16.108 5.854 -0.242 0 0 0 0 0 0 0 +16.099 5.908 -0.242 0 0 0 0 0 0 0 +16.063 5.952 -0.242 0 0 0 0 0 0 0 +15.525 5.891 -0.228 0 0 0 0 0 0 0 +15.756 6.036 -0.235 0 0 0 0 0 0 0 +15.607 6.035 -0.232 0 0 0 0 0 0 0 +16.36 6.387 -0.253 0 0 0 0 0 0 0 +16.844 6.637 -0.267 0 0 0 0 0 0 0 +17.328 6.86 -0.281 0 0 0 0 0 0 0 +18.529 7.405 -0.316 0 0 0 0 0 0 0 +18.542 7.478 -0.317 0 0 0 0 0 0 0 +19.135 7.788 -0.334 0 0 0 0 0 0 0 +18.395 7.621 -0.315 0 0 0 0 0 0 0 +29.361 12.344 -0.626 0 0 0 0 0 0 0 +34.175 15.33 -0.772 0 0 0 0 0 0 0 +34.019 15.388 -0.769 0 0 0 0 0 0 0 +33.885 15.456 -0.767 0 0 0 0 0 0 0 +33.846 15.567 -0.767 0 0 0 0 0 0 0 +40.803 18.928 -0.968 0 0 0 0 0 0 0 +40.642 19.009 -0.965 0 0 0 0 0 0 0 +40.545 19.041 -0.963 0 0 0 0 0 0 0 +40.364 19.111 -0.96 0 0 0 0 0 0 0 +40.264 19.219 -0.959 0 0 0 0 0 0 0 +40.223 19.355 -0.959 0 0 0 0 0 0 0 +40.212 19.505 -0.961 0 0 0 0 0 0 0 +40.418 19.763 -0.969 0 0 0 0 0 0 0 +41.319 20.365 -0.997 0 0 0 0 0 0 0 +41.224 20.479 -0.996 0 0 0 0 0 0 0 +41.215 20.556 -0.996 0 0 0 0 0 0 0 +39.256 19.731 -0.941 0 0 0 0 0 0 0 +29.089 14.728 -0.646 0 0 0 0 0 0 0 +38.966 19.893 -0.936 0 0 0 0 0 0 0 +38.823 19.974 -0.934 0 0 0 0 0 0 0 +38.694 20.062 -0.932 0 0 0 0 0 0 0 +38.581 20.08 -0.93 0 0 0 0 0 0 0 +38.458 20.169 -0.928 0 0 0 0 0 0 0 +38.334 20.258 -0.926 0 0 0 0 0 0 0 +38.26 20.373 -0.926 0 0 0 0 0 0 0 +37.244 19.982 -0.897 0 0 0 0 0 0 0 +37.955 20.518 -0.92 0 0 0 0 0 0 0 +37.901 20.643 -0.921 0 0 0 0 0 0 0 +37.87 20.703 -0.921 0 0 0 0 0 0 0 +37.726 20.779 -0.918 0 0 0 0 0 0 0 +37.577 20.85 -0.916 0 0 0 0 0 0 0 +36.22 20.246 -0.877 0 0 0 0 0 0 0 +36.115 20.336 -0.876 0 0 0 0 0 0 0 +37.214 21.11 -0.911 0 0 0 0 0 0 0 +37.163 21.236 -0.911 0 0 0 0 0 0 0 +37.143 21.302 -0.912 0 0 0 0 0 0 0 +36.882 21.306 -0.906 0 0 0 0 0 0 0 +36.813 21.421 -0.906 0 0 0 0 0 0 0 +36.231 21.387 -0.892 0 0 0 0 0 0 0 +36.101 21.464 -0.891 0 0 0 0 0 0 0 +35.97 21.54 -0.889 0 0 0 0 0 0 0 +35.837 21.613 -0.887 0 0 0 0 0 0 0 +35.735 21.628 -0.885 0 0 0 0 0 0 0 +35.611 21.706 -0.883 0 0 0 0 0 0 0 +35.476 21.777 -0.881 0 0 0 0 0 0 0 +35.361 21.86 -0.879 0 0 0 0 0 0 0 +35.252 21.945 -0.878 0 0 0 0 0 0 0 +35.335 22.152 -0.883 0 0 0 0 0 0 0 +35.292 22.28 -0.884 0 0 0 0 0 0 0 +29.762 18.849 -0.714 0 0 0 0 0 0 0 +29.665 18.919 -0.713 0 0 0 0 0 0 0 +29.611 19.015 -0.713 0 0 0 0 0 0 0 +34.758 22.48 -0.875 0 0 0 0 0 0 0 +34.651 22.565 -0.874 0 0 0 0 0 0 0 +13.054 8.569 -0.202 0 0 0 0 0 0 0 +33.976 22.508 -0.858 0 0 0 0 0 0 0 +33.903 22.613 -0.858 0 0 0 0 0 0 0 +33.779 22.684 -0.856 0 0 0 0 0 0 0 +33.517 22.661 -0.85 0 0 0 0 0 0 0 +33.54 22.83 -0.853 0 0 0 0 0 0 0 +33.447 22.921 -0.853 0 0 0 0 0 0 0 +30.072 20.814 -0.749 0 0 0 0 0 0 0 +30.05 20.939 -0.75 0 0 0 0 0 0 0 +33.171 23.272 -0.852 0 0 0 0 0 0 0 +29.603 20.905 -0.74 0 0 0 0 0 0 0 +29.858 21.367 -0.753 0 0 0 0 0 0 0 +29.057 20.862 -0.728 0 0 0 0 0 0 0 +29.325 21.195 -0.739 0 0 0 0 0 0 0 +33.706 24.528 -0.882 0 0 0 0 0 0 0 +33.698 24.685 -0.885 0 0 0 0 0 0 0 +33.679 24.833 -0.886 0 0 0 0 0 0 0 +33.687 25.168 -0.892 0 0 0 0 0 0 0 +33.594 25.181 -0.89 0 0 0 0 0 0 0 +33.726 25.446 -0.897 0 0 0 0 0 0 0 +33.504 25.444 -0.892 0 0 0 0 0 0 0 +33.437 25.559 -0.893 0 0 0 0 0 0 0 +17.288 13.285 -0.364 0 0 0 0 0 0 0 +17.335 13.496 -0.368 0 0 0 0 0 0 0 +33.334 26.235 -0.902 0 0 0 0 0 0 0 +33.313 26.388 -0.904 0 0 0 0 0 0 0 +33.305 26.553 -0.906 0 0 0 0 0 0 0 +33.296 26.717 -0.909 0 0 0 0 0 0 0 +33.279 26.876 -0.911 0 0 0 0 0 0 0 +12.395 10.119 -0.213 0 0 0 0 0 0 0 +12.055 9.872 -0.202 0 0 0 0 0 0 0 +6.758 5.555 -0.023 0 0 0 0 0 0 0 +6.739 5.575 -0.023 0 0 0 0 0 0 0 +6.718 5.593 -0.023 0 0 0 0 0 0 0 +11.819 9.993 -0.199 0 0 0 0 0 0 0 +11.788 10.03 -0.199 0 0 0 0 0 0 0 +11.816 10.086 -0.2 0 0 0 0 0 0 0 +11.84 10.171 -0.202 0 0 0 0 0 0 0 +11.802 10.203 -0.202 0 0 0 0 0 0 0 +33.221 28.966 -0.945 0 0 0 0 0 0 0 +33.209 29.14 -0.947 0 0 0 0 0 0 0 +33.223 29.337 -0.951 0 0 0 0 0 0 0 +33.241 29.446 -0.953 0 0 0 0 0 0 0 +33.215 29.61 -0.956 0 0 0 0 0 0 0 +33.205 29.789 -0.959 0 0 0 0 0 0 0 +33.201 29.974 -0.962 0 0 0 0 0 0 0 +33.196 30.16 -0.965 0 0 0 0 0 0 0 +33.168 30.325 -0.967 0 0 0 0 0 0 0 +33.184 30.532 -0.971 0 0 0 0 0 0 0 +33.145 30.592 -0.972 0 0 0 0 0 0 0 +16.459 15.269 -0.381 0 0 0 0 0 0 0 +16.336 15.251 -0.378 0 0 0 0 0 0 0 +16.233 15.25 -0.376 0 0 0 0 0 0 0 +16.163 15.281 -0.375 0 0 0 0 0 0 0 +16.108 15.325 -0.375 0 0 0 0 0 0 0 +16.055 15.371 -0.375 0 0 0 0 0 0 0 +16.033 15.397 -0.375 0 0 0 0 0 0 0 +16.006 15.469 -0.376 0 0 0 0 0 0 0 +16.192 15.748 -0.384 0 0 0 0 0 0 0 +15.985 15.645 -0.379 0 0 0 0 0 0 0 +32.783 32.325 -0.996 0 0 0 0 0 0 0 +32.742 32.488 -0.998 0 0 0 0 0 0 0 +32.699 32.65 -1 0 0 0 0 0 0 0 +32.641 32.798 -1.002 0 0 0 0 0 0 0 +32.673 32.933 -1.005 0 0 0 0 0 0 0 +32.611 33.078 -1.007 0 0 0 0 0 0 0 +32.597 33.272 -1.01 0 0 0 0 0 0 0 +32.545 33.429 -1.012 0 0 0 0 0 0 0 +32.494 33.587 -1.014 0 0 0 0 0 0 0 +32.44 33.742 -1.016 0 0 0 0 0 0 0 +28.328 29.646 -0.865 0 0 0 0 0 0 0 +32.432 34.054 -1.022 0 0 0 0 0 0 0 +32.404 34.24 -1.025 0 0 0 0 0 0 0 +32.361 34.41 -1.027 0 0 0 0 0 0 0 +32.314 34.577 -1.029 0 0 0 0 0 0 0 +32.271 34.749 -1.032 0 0 0 0 0 0 0 +32.339 35.043 -1.039 0 0 0 0 0 0 0 +32.291 35.212 -1.041 0 0 0 0 0 0 0 +32.303 35.337 -1.044 0 0 0 0 0 0 0 +32.247 35.499 -1.046 0 0 0 0 0 0 0 +32.142 35.607 -1.046 0 0 0 0 0 0 0 +32.095 35.781 -1.049 0 0 0 0 0 0 0 +32.032 35.937 -1.051 0 0 0 0 0 0 0 +31.962 36.087 -1.052 0 0 0 0 0 0 0 +31.895 36.239 -1.054 0 0 0 0 0 0 0 +31.908 36.369 -1.057 0 0 0 0 0 0 0 +29.593 33.942 -0.97 0 0 0 0 0 0 0 +31.765 36.669 -1.06 0 0 0 0 0 0 0 +31.69 36.815 -1.062 0 0 0 0 0 0 0 +31.607 36.953 -1.063 0 0 0 0 0 0 0 +31.567 37.142 -1.066 0 0 0 0 0 0 0 +31.49 37.288 -1.068 0 0 0 0 0 0 0 +31.462 37.374 -1.069 0 0 0 0 0 0 0 +21.029 25.288 -0.653 0 0 0 0 0 0 0 +20.916 25.314 -0.652 0 0 0 0 0 0 0 +20.795 25.329 -0.65 0 0 0 0 0 0 0 +20.822 25.526 -0.654 0 0 0 0 0 0 0 +19.145 23.617 -0.588 0 0 0 0 0 0 0 +19.095 23.632 -0.588 0 0 0 0 0 0 0 +19.026 23.698 -0.588 0 0 0 0 0 0 0 +19.137 23.99 -0.596 0 0 0 0 0 0 0 +30.809 38.899 -1.089 0 0 0 0 0 0 0 +30.723 39.041 -1.091 0 0 0 0 0 0 0 +30.709 39.277 -1.095 0 0 0 0 0 0 0 +30.753 39.588 -1.103 0 0 0 0 0 0 0 +30.755 39.72 -1.105 0 0 0 0 0 0 0 +30.673 39.872 -1.107 0 0 0 0 0 0 0 +30.585 40.018 -1.109 0 0 0 0 0 0 0 +30.506 40.176 -1.111 0 0 0 0 0 0 0 +30.406 40.307 -1.112 0 0 0 0 0 0 0 +30.316 40.45 -1.114 0 0 0 0 0 0 0 +30.102 40.429 -1.11 0 0 0 0 0 0 0 +30.026 40.459 -1.109 0 0 0 0 0 0 0 +21.997 31.345 -0.794 0 0 0 0 0 0 0 +21.927 31.455 -0.795 0 0 0 0 0 0 0 +23.566 36.687 -0.932 0 0 0 0 0 0 0 +28.061 43.998 -1.156 0 0 0 0 0 0 0 +27.951 44.13 -1.158 0 0 0 0 0 0 0 +18.563 29.496 -0.704 0 0 0 0 0 0 0 +18.429 29.488 -0.702 0 0 0 0 0 0 0 +18.316 29.513 -0.701 0 0 0 0 0 0 0 +18.268 29.54 -0.701 0 0 0 0 0 0 0 +18.214 29.661 -0.703 0 0 0 0 0 0 0 +18.167 29.793 -0.705 0 0 0 0 0 0 0 +27.311 45.133 -1.171 0 0 0 0 0 0 0 +27.19 45.254 -1.172 0 0 0 0 0 0 0 +22.253 38.242 -0.949 0 0 0 0 0 0 0 +22.092 38.243 -0.947 0 0 0 0 0 0 0 +21.956 38.284 -0.946 0 0 0 0 0 0 0 +21.85 38.377 -0.947 0 0 0 0 0 0 0 +21.827 38.478 -0.949 0 0 0 0 0 0 0 +14.904 26.844 -0.596 0 0 0 0 0 0 0 +14.845 26.936 -0.597 0 0 0 0 0 0 0 +14.785 27.029 -0.599 0 0 0 0 0 0 0 +12.617 23.23 -0.485 0 0 0 0 0 0 0 +12.531 23.247 -0.484 0 0 0 0 0 0 0 +12.5 23.276 -0.484 0 0 0 0 0 0 0 +12.442 23.345 -0.485 0 0 0 0 0 0 0 +12.323 23.297 -0.483 0 0 0 0 0 0 0 +12.254 23.343 -0.483 0 0 0 0 0 0 0 +12.142 23.307 -0.481 0 0 0 0 0 0 0 +12.13 23.464 -0.484 0 0 0 0 0 0 0 +14.157 29.29 -0.644 0 0 0 0 0 0 0 +14.095 29.279 -0.643 0 0 0 0 0 0 0 +14.033 29.387 -0.645 0 0 0 0 0 0 0 +14.003 29.563 -0.648 0 0 0 0 0 0 0 +16.588 35.318 -0.813 0 0 0 0 0 0 0 +16.47 35.355 -0.812 0 0 0 0 0 0 0 +16.379 35.448 -0.814 0 0 0 0 0 0 0 +22.9 49.792 -1.225 0 0 0 0 0 0 0 +20.82 45.643 -1.104 0 0 0 0 0 0 0 +16.022 35.405 -0.809 0 0 0 0 0 0 0 +16.937 38.064 -0.882 0 0 0 0 0 0 0 +16.747 37.958 -0.877 0 0 0 0 0 0 0 +16.666 38.099 -0.88 0 0 0 0 0 0 0 +16.587 38.246 -0.882 0 0 0 0 0 0 0 +16.489 38.182 -0.88 0 0 0 0 0 0 0 +16.354 38.199 -0.879 0 0 0 0 0 0 0 +16.22 38.219 -0.878 0 0 0 0 0 0 0 +16.125 38.329 -0.88 0 0 0 0 0 0 0 +16.043 38.471 -0.882 0 0 0 0 0 0 0 +15.905 38.481 -0.881 0 0 0 0 0 0 0 +15.752 38.453 -0.879 0 0 0 0 0 0 0 +16.765 41.113 -0.953 0 0 0 0 0 0 0 +16.654 41.212 -0.954 0 0 0 0 0 0 0 +16.536 41.293 -0.955 0 0 0 0 0 0 0 +13.438 33.851 -0.745 0 0 0 0 0 0 0 +16.325 41.519 -0.959 0 0 0 0 0 0 0 +13.453 34.521 -0.761 0 0 0 0 0 0 0 +13.491 34.944 -0.772 0 0 0 0 0 0 0 +13.569 35.31 -0.782 0 0 0 0 0 0 0 +15.11 39.704 -0.903 0 0 0 0 0 0 0 +14.983 39.744 -0.903 0 0 0 0 0 0 0 +14.87 39.824 -0.904 0 0 0 0 0 0 0 +14.595 39.464 -0.893 0 0 0 0 0 0 0 +14.781 40.754 -0.926 0 0 0 0 0 0 0 +14.274 39.547 -0.892 0 0 0 0 0 0 0 +15.18 42.907 -0.982 0 0 0 0 0 0 0 +16.224 46.325 -1.075 0 0 0 0 0 0 0 +16.091 46.414 -1.076 0 0 0 0 0 0 0 +15.968 46.53 -1.078 0 0 0 0 0 0 0 +15.841 46.637 -1.08 0 0 0 0 0 0 0 +15.8 46.756 -1.082 0 0 0 0 0 0 0 +15.672 46.863 -1.084 0 0 0 0 0 0 0 +15.545 46.974 -1.086 0 0 0 0 0 0 0 +15.424 47.103 -1.088 0 0 0 0 0 0 0 +15.04 47.44 -1.093 0 0 0 0 0 0 0 +14.916 47.566 -1.095 0 0 0 0 0 0 0 +12.782 42.378 -0.95 0 0 0 0 0 0 0 +12.612 42.295 -0.946 0 0 0 0 0 0 0 +16.801 57.027 -1.346 0 0 0 0 0 0 0 +16.297 56.291 -1.324 0 0 0 0 0 0 0 +16.034 56.042 -1.315 0 0 0 0 0 0 0 +15.6 55.18 -1.291 0 0 0 0 0 0 0 +15.443 55.287 -1.292 0 0 0 0 0 0 0 +15.274 55.352 -1.293 0 0 0 0 0 0 0 +0.826 3.192 0.119 0 0 0 0 0 0 0 +13.502 52.442 -1.207 0 0 0 0 0 0 0 +0.812 3.179 0.119 0 0 0 0 0 0 0 +0.805 3.175 0.119 0 0 0 0 0 0 0 +0.804 3.214 0.118 0 0 0 0 0 0 0 +0.815 3.304 0.116 0 0 0 0 0 0 0 +0.774 3.222 0.118 0 0 0 0 0 0 0 +11.825 50.144 -1.139 0 0 0 0 0 0 0 +0.745 3.189 0.119 0 0 0 0 0 0 0 +0.746 3.216 0.119 0 0 0 0 0 0 0 +8.149 35.521 -0.746 0 0 0 0 0 0 0 +0.724 3.213 0.119 0 0 0 0 0 0 0 +7.652 34.592 -0.719 0 0 0 0 0 0 0 +0.702 3.257 0.118 0 0 0 0 0 0 0 +7.36 34.294 -0.71 0 0 0 0 0 0 0 +0.707 3.335 0.116 0 0 0 0 0 0 0 +7.342 34.741 -0.721 0 0 0 0 0 0 0 +0.685 3.36 0.115 0 0 0 0 0 0 0 +2.611 12.876 -0.138 0 0 0 0 0 0 0 +2.647 13.16 -0.145 0 0 0 0 0 0 0 +3.417 17.608 -0.263 0 0 0 0 0 0 0 +0.626 3.282 0.118 0 0 0 0 0 0 0 +3.426 17.956 -0.272 0 0 0 0 0 0 0 +3.352 17.875 -0.27 0 0 0 0 0 0 0 +0.628 3.349 0.116 0 0 0 0 0 0 0 +0.625 3.362 0.116 0 0 0 0 0 0 0 +3.902 22.184 -0.383 0 0 0 0 0 0 0 +3.81 22.066 -0.379 0 0 0 0 0 0 0 +3.791 22.374 -0.387 0 0 0 0 0 0 0 +0.543 3.256 0.119 0 0 0 0 0 0 0 +3.675 22.108 -0.38 0 0 0 0 0 0 0 +0.539 3.265 0.118 0 0 0 0 0 0 0 +4.284 26.315 -0.491 0 0 0 0 0 0 0 +0.542 3.354 0.116 0 0 0 0 0 0 0 +0.536 3.383 0.115 0 0 0 0 0 0 0 +0.525 3.385 0.115 0 0 0 0 0 0 0 +0.521 3.436 0.114 0 0 0 0 0 0 0 +0.511 3.44 0.114 0 0 0 0 0 0 0 +0.497 3.421 0.115 0 0 0 0 0 0 0 +0.491 3.412 0.115 0 0 0 0 0 0 0 +0.478 3.4 0.115 0 0 0 0 0 0 0 +0.464 3.376 0.116 0 0 0 0 0 0 0 +0.455 3.387 0.116 0 0 0 0 0 0 0 +6.032 48.696 -1.075 0 0 0 0 0 0 0 +5.884 48.762 -1.076 0 0 0 0 0 0 0 +5.738 48.838 -1.078 0 0 0 0 0 0 0 +0.382 3.265 0.119 0 0 0 0 0 0 0 +5.59 48.907 -1.079 0 0 0 0 0 0 0 +0.372 3.266 0.119 0 0 0 0 0 0 0 +5.519 48.962 -1.08 0 0 0 0 0 0 0 +0.362 3.275 0.119 0 0 0 0 0 0 0 +0.351 3.269 0.119 0 0 0 0 0 0 0 +0.343 3.296 0.118 0 0 0 0 0 0 0 +0.331 3.271 0.119 0 0 0 0 0 0 0 +0.325 3.261 0.119 0 0 0 0 0 0 0 +0.318 3.298 0.118 0 0 0 0 0 0 0 +0.307 3.291 0.119 0 0 0 0 0 0 0 +0.295 3.276 0.119 0 0 0 0 0 0 0 +0.285 3.279 0.119 0 0 0 0 0 0 0 +0.272 3.254 0.12 0 0 0 0 0 0 0 +0.266 3.303 0.118 0 0 0 0 0 0 0 +0.259 3.283 0.119 0 0 0 0 0 0 0 +0.842 72.977 -1.699 0 0 0 0 0 0 0 +0.612 72.925 -1.697 0 0 0 0 0 0 0 +-0.159 30.304 -0.586 0 0 0 0 0 0 0 +-0.372 28.504 -0.539 0 0 0 0 0 0 0 +-0.599 26.747 -0.493 0 0 0 0 0 0 0 +-0.796 25.061 -0.449 0 0 0 0 0 0 0 +-1.002 23.461 -0.408 0 0 0 0 0 0 0 +-1.063 23.176 -0.4 0 0 0 0 0 0 0 +-1.111 22.678 -0.387 0 0 0 0 0 0 0 +-1.452 20.037 -0.319 0 0 0 0 0 0 0 +-1.522 20.124 -0.322 0 0 0 0 0 0 0 +-1.498 19.408 -0.303 0 0 0 0 0 0 0 +-1.671 17.991 -0.266 0 0 0 0 0 0 0 +-1.715 17.856 -0.263 0 0 0 0 0 0 0 +-6.898 60.22 -1.376 0 0 0 0 0 0 0 +-1.901 16.091 -0.218 0 0 0 0 0 0 0 +-2.093 14.422 -0.175 0 0 0 0 0 0 0 +-2.107 14.204 -0.17 0 0 0 0 0 0 0 +-2.155 14.221 -0.17 0 0 0 0 0 0 0 +-2.319 12.629 -0.13 0 0 0 0 0 0 0 +-2.318 12.41 -0.124 0 0 0 0 0 0 0 +-2.363 12.432 -0.125 0 0 0 0 0 0 0 +-2.423 12.534 -0.128 0 0 0 0 0 0 0 +-2.459 12.509 -0.128 0 0 0 0 0 0 0 +-2.623 12.906 -0.139 0 0 0 0 0 0 0 +-2.641 12.894 -0.138 0 0 0 0 0 0 0 +-2.531 10.89 -0.087 0 0 0 0 0 0 0 +-2.605 11.048 -0.091 0 0 0 0 0 0 0 +-2.563 10.723 -0.083 0 0 0 0 0 0 0 +-2.595 10.705 -0.082 0 0 0 0 0 0 0 +-3.349 13.156 -0.149 0 0 0 0 0 0 0 +-3.171 11.845 -0.115 0 0 0 0 0 0 0 +-3.147 11.398 -0.104 0 0 0 0 0 0 0 +-3.165 11.325 -0.102 0 0 0 0 0 0 0 +-3.196 11.299 -0.101 0 0 0 0 0 0 0 +-3.227 11.276 -0.101 0 0 0 0 0 0 0 +-3.276 11.31 -0.102 0 0 0 0 0 0 0 +-2.804 9.107 -0.044 0 0 0 0 0 0 0 +-2.818 9.053 -0.042 0 0 0 0 0 0 0 +-2.838 9.015 -0.042 0 0 0 0 0 0 0 +-2.833 8.952 -0.04 0 0 0 0 0 0 0 +-2.847 8.899 -0.039 0 0 0 0 0 0 0 +-2.867 8.865 -0.038 0 0 0 0 0 0 0 +-2.88 8.811 -0.037 0 0 0 0 0 0 0 +-2.868 8.684 -0.034 0 0 0 0 0 0 0 +-2.938 8.711 -0.035 0 0 0 0 0 0 0 +-2.961 8.733 -0.036 0 0 0 0 0 0 0 +-3.005 8.773 -0.037 0 0 0 0 0 0 0 +-3.031 8.76 -0.037 0 0 0 0 0 0 0 +-3.063 8.761 -0.037 0 0 0 0 0 0 0 +-3.1 8.78 -0.038 0 0 0 0 0 0 0 +-3.128 8.77 -0.038 0 0 0 0 0 0 0 +-3.16 8.772 -0.038 0 0 0 0 0 0 0 +-4.193 11.502 -0.115 0 0 0 0 0 0 0 +-4.209 11.492 -0.114 0 0 0 0 0 0 0 +-4.278 11.565 -0.117 0 0 0 0 0 0 0 +-4.809 12.869 -0.154 0 0 0 0 0 0 0 +-4.833 12.81 -0.152 0 0 0 0 0 0 0 +-4.829 12.679 -0.149 0 0 0 0 0 0 0 +-4.921 12.8 -0.153 0 0 0 0 0 0 0 +-4.624 11.65 -0.122 0 0 0 0 0 0 0 +-4.642 11.587 -0.121 0 0 0 0 0 0 0 +-4.217 10.439 -0.089 0 0 0 0 0 0 0 +-4.242 10.407 -0.088 0 0 0 0 0 0 0 +-4.259 10.355 -0.087 0 0 0 0 0 0 0 +-3.256 7.899 -0.018 0 0 0 0 0 0 0 +-3.639 8.742 -0.042 0 0 0 0 0 0 0 +-3.639 8.666 -0.04 0 0 0 0 0 0 0 +-3.654 8.625 -0.04 0 0 0 0 0 0 0 +-3.673 8.595 -0.039 0 0 0 0 0 0 0 +-3.706 8.597 -0.039 0 0 0 0 0 0 0 +-3.751 8.625 -0.041 0 0 0 0 0 0 0 +-3.749 8.585 -0.04 0 0 0 0 0 0 0 +-3.341 7.53 -0.01 0 0 0 0 0 0 0 +-3.344 7.474 -0.009 0 0 0 0 0 0 0 +-3.361 7.449 -0.008 0 0 0 0 0 0 0 +-3.391 7.452 -0.009 0 0 0 0 0 0 0 +-3.986 8.607 -0.043 0 0 0 0 0 0 0 +-4.02 8.642 -0.044 0 0 0 0 0 0 0 +-4.039 8.613 -0.043 0 0 0 0 0 0 0 +-4.313 9.119 -0.058 0 0 0 0 0 0 0 +-4.404 9.235 -0.062 0 0 0 0 0 0 0 +-4.424 9.203 -0.062 0 0 0 0 0 0 0 +-4.56 9.408 -0.068 0 0 0 0 0 0 0 +-4.943 10.113 -0.089 0 0 0 0 0 0 0 +-4.91 10.007 -0.086 0 0 0 0 0 0 0 +-4.937 9.983 -0.086 0 0 0 0 0 0 0 +-4.964 9.958 -0.085 0 0 0 0 0 0 0 +-4.999 9.95 -0.086 0 0 0 0 0 0 0 +-5.031 9.936 -0.086 0 0 0 0 0 0 0 +-5.064 9.27 -0.071 0 0 0 0 0 0 0 +-5.118 9.298 -0.072 0 0 0 0 0 0 0 +-5.125 9.243 -0.071 0 0 0 0 0 0 0 +-5.133 9.189 -0.07 0 0 0 0 0 0 0 +-5.151 9.153 -0.069 0 0 0 0 0 0 0 +-5.16 9.102 -0.068 0 0 0 0 0 0 0 +-5.193 9.095 -0.068 0 0 0 0 0 0 0 +-5.223 9.114 -0.069 0 0 0 0 0 0 0 +-5.238 9.074 -0.068 0 0 0 0 0 0 0 +-5.254 9.036 -0.068 0 0 0 0 0 0 0 +-5.248 8.961 -0.066 0 0 0 0 0 0 0 +-5.379 9.118 -0.071 0 0 0 0 0 0 0 +-5.268 8.866 -0.064 0 0 0 0 0 0 0 +-5.246 8.613 -0.058 0 0 0 0 0 0 0 +-5.252 8.563 -0.057 0 0 0 0 0 0 0 +-5.234 8.475 -0.055 0 0 0 0 0 0 0 +-5.2 8.362 -0.052 0 0 0 0 0 0 0 +-5.23 8.351 -0.052 0 0 0 0 0 0 0 +-5.214 8.297 -0.051 0 0 0 0 0 0 0 +-5.375 8.493 -0.057 0 0 0 0 0 0 0 +-32.431 49.95 -1.348 0 0 0 0 0 0 0 +-5.24 7.919 -0.043 0 0 0 0 0 0 0 +-5.102 7.66 -0.035 0 0 0 0 0 0 0 +-5.145 7.672 -0.036 0 0 0 0 0 0 0 +-34.148 50.314 -1.381 0 0 0 0 0 0 0 +-34.503 50.494 -1.39 0 0 0 0 0 0 0 +-34.872 50.691 -1.4 0 0 0 0 0 0 0 +-40.577 58.582 -1.654 0 0 0 0 0 0 0 +-40.411 58.147 -1.642 0 0 0 0 0 0 0 +-40.573 57.99 -1.641 0 0 0 0 0 0 0 +-40.99 58.196 -1.652 0 0 0 0 0 0 0 +-45.151 63.674 -1.831 0 0 0 0 0 0 0 +-41.575 58.246 -1.662 0 0 0 0 0 0 0 +-41.707 58.044 -1.659 0 0 0 0 0 0 0 +-41.096 56.818 -1.624 0 0 0 0 0 0 0 +-42.525 58.598 -1.683 0 0 0 0 0 0 0 +-42.914 58.744 -1.692 0 0 0 0 0 0 0 +-40.168 54.627 -1.564 0 0 0 0 0 0 0 +-40.584 54.832 -1.574 0 0 0 0 0 0 0 +-40.844 54.821 -1.578 0 0 0 0 0 0 0 +-40.469 53.264 -1.54 0 0 0 0 0 0 0 +-40.537 53.179 -1.539 0 0 0 0 0 0 0 +-40.689 53.033 -1.538 0 0 0 0 0 0 0 +-41.137 53.269 -1.55 0 0 0 0 0 0 0 +-41.601 53.521 -1.563 0 0 0 0 0 0 0 +-42.068 53.773 -1.576 0 0 0 0 0 0 0 +-42.548 54.034 -1.589 0 0 0 0 0 0 0 +-34.077 42.868 -1.223 0 0 0 0 0 0 0 +-43.968 54.944 -1.63 0 0 0 0 0 0 0 +-45.181 54.676 -1.645 0 0 0 0 0 0 0 +-45.419 54.788 -1.651 0 0 0 0 0 0 0 +-45.318 54.318 -1.64 0 0 0 0 0 0 0 +-45.428 54.104 -1.638 0 0 0 0 0 0 0 +-45.546 53.9 -1.636 0 0 0 0 0 0 0 +-45.671 53.705 -1.634 0 0 0 0 0 0 0 +-12.022 14.077 -0.278 0 0 0 0 0 0 0 +-12.043 14.012 -0.277 0 0 0 0 0 0 0 +-12.055 13.981 -0.277 0 0 0 0 0 0 0 +-30.747 35.373 -1.018 0 0 0 0 0 0 0 +-30.858 35.277 -1.018 0 0 0 0 0 0 0 +-30.97 35.181 -1.018 0 0 0 0 0 0 0 +-31.257 35.283 -1.025 0 0 0 0 0 0 0 +-31.156 34.947 -1.016 0 0 0 0 0 0 0 +-38.617 43.034 -1.303 0 0 0 0 0 0 0 +-38.703 42.858 -1.301 0 0 0 0 0 0 0 +-36.651 40.46 -1.219 0 0 0 0 0 0 0 +-36.366 39.643 -1.198 0 0 0 0 0 0 0 +-36.706 39.762 -1.206 0 0 0 0 0 0 0 +-39.207 41.673 -1.287 0 0 0 0 0 0 0 +-39.232 41.569 -1.286 0 0 0 0 0 0 0 +-21.743 22.911 -0.619 0 0 0 0 0 0 0 +-21.696 22.718 -0.614 0 0 0 0 0 0 0 +-21.699 22.579 -0.612 0 0 0 0 0 0 0 +-21.761 22.501 -0.612 0 0 0 0 0 0 0 +-21.862 22.464 -0.613 0 0 0 0 0 0 0 +-21.899 22.361 -0.611 0 0 0 0 0 0 0 +-22.052 22.446 -0.616 0 0 0 0 0 0 0 +-42.041 42.226 -1.349 0 0 0 0 0 0 0 +-42.215 42.135 -1.351 0 0 0 0 0 0 0 +-42.459 42.113 -1.355 0 0 0 0 0 0 0 +-46.434 45.477 -1.49 0 0 0 0 0 0 0 +-39.413 38.485 -1.232 0 0 0 0 0 0 0 +-46.6 45.212 -1.489 0 0 0 0 0 0 0 +-46.904 44.938 -1.489 0 0 0 0 0 0 0 +-46.975 44.724 -1.487 0 0 0 0 0 0 0 +-47.225 44.399 -1.486 0 0 0 0 0 0 0 +-47.539 44.554 -1.494 0 0 0 0 0 0 0 +-45.026 41.411 -1.391 0 0 0 0 0 0 0 +-32.796 29.795 -0.951 0 0 0 0 0 0 0 +-32.859 29.663 -0.95 0 0 0 0 0 0 0 +-32.98 29.585 -0.951 0 0 0 0 0 0 0 +-35.964 32.157 -1.053 0 0 0 0 0 0 0 +-36.007 31.992 -1.051 0 0 0 0 0 0 0 +-36.041 31.821 -1.049 0 0 0 0 0 0 0 +-36.081 31.655 -1.047 0 0 0 0 0 0 0 +-36.11 31.481 -1.045 0 0 0 0 0 0 0 +-36.15 31.316 -1.043 0 0 0 0 0 0 0 +-36.186 31.149 -1.04 0 0 0 0 0 0 0 +-36.164 31.031 -1.038 0 0 0 0 0 0 0 +-36.202 30.867 -1.036 0 0 0 0 0 0 0 +-36.241 30.704 -1.034 0 0 0 0 0 0 0 +-36.265 30.529 -1.031 0 0 0 0 0 0 0 +-36.281 30.349 -1.029 0 0 0 0 0 0 0 +-36.325 30.192 -1.027 0 0 0 0 0 0 0 +-36.363 30.031 -1.025 0 0 0 0 0 0 0 +-36.333 29.91 -1.023 0 0 0 0 0 0 0 +-36.352 29.735 -1.02 0 0 0 0 0 0 0 +-36.379 29.567 -1.018 0 0 0 0 0 0 0 +-36.411 29.403 -1.016 0 0 0 0 0 0 0 +-36.423 29.225 -1.013 0 0 0 0 0 0 0 +-36.462 29.068 -1.011 0 0 0 0 0 0 0 +-36.478 28.894 -1.009 0 0 0 0 0 0 0 +-34.018 26.861 -0.926 0 0 0 0 0 0 0 +-36.467 28.607 -1.004 0 0 0 0 0 0 0 +-36.479 28.432 -1.001 0 0 0 0 0 0 0 +-36.488 28.255 -0.999 0 0 0 0 0 0 0 +-36.527 28.102 -0.997 0 0 0 0 0 0 0 +-36.55 27.938 -0.995 0 0 0 0 0 0 0 +-36.565 27.767 -0.993 0 0 0 0 0 0 0 +-18.516 13.94 -0.4 0 0 0 0 0 0 0 +-18.779 14.046 -0.407 0 0 0 0 0 0 0 +-36.547 27.125 -0.982 0 0 0 0 0 0 0 +-36.58 26.973 -0.981 0 0 0 0 0 0 0 +-36.647 26.844 -0.98 0 0 0 0 0 0 0 +-36.781 26.766 -0.982 0 0 0 0 0 0 0 +-36.922 26.691 -0.983 0 0 0 0 0 0 0 +-37.025 26.677 -0.985 0 0 0 0 0 0 0 +-37.171 26.605 -0.987 0 0 0 0 0 0 0 +-37.297 26.518 -0.989 0 0 0 0 0 0 0 +-37.393 26.41 -0.989 0 0 0 0 0 0 0 +-37.408 26.245 -0.987 0 0 0 0 0 0 0 +-37.415 26.075 -0.985 0 0 0 0 0 0 0 +-32.988 22.84 -0.842 0 0 0 0 0 0 0 +-32.984 22.761 -0.84 0 0 0 0 0 0 0 +-33.042 22.648 -0.84 0 0 0 0 0 0 0 +-33.153 22.571 -0.841 0 0 0 0 0 0 0 +-36.574 24.729 -0.947 0 0 0 0 0 0 0 +-36.502 24.514 -0.942 0 0 0 0 0 0 0 +-36.462 24.322 -0.938 0 0 0 0 0 0 0 +-6.825 4.501 -0.008 0 0 0 0 0 0 0 +-6.792 4.449 -0.007 0 0 0 0 0 0 0 +-6.78 4.41 -0.006 0 0 0 0 0 0 0 +-6.687 4.321 -0.003 0 0 0 0 0 0 0 +-6.913 4.435 -0.009 0 0 0 0 0 0 0 +-36.532 23.144 -0.923 0 0 0 0 0 0 0 +-36.497 23.041 -0.921 0 0 0 0 0 0 0 +-36.496 22.881 -0.919 0 0 0 0 0 0 0 +-36.476 22.709 -0.916 0 0 0 0 0 0 0 +-36.481 22.554 -0.914 0 0 0 0 0 0 0 +-36.475 22.392 -0.911 0 0 0 0 0 0 0 +-36.47 22.231 -0.909 0 0 0 0 0 0 0 +-36.466 22.072 -0.907 0 0 0 0 0 0 0 +-36.469 21.917 -0.905 0 0 0 0 0 0 0 +-36.402 21.8 -0.902 0 0 0 0 0 0 0 +-36.394 21.64 -0.899 0 0 0 0 0 0 0 +-36.385 21.48 -0.897 0 0 0 0 0 0 0 +-36.381 21.324 -0.895 0 0 0 0 0 0 0 +-36.369 21.164 -0.893 0 0 0 0 0 0 0 +-36.345 20.997 -0.89 0 0 0 0 0 0 0 +-36.336 20.84 -0.888 0 0 0 0 0 0 0 +-36.271 20.728 -0.885 0 0 0 0 0 0 0 +-36.296 20.591 -0.884 0 0 0 0 0 0 0 +-36.251 20.415 -0.88 0 0 0 0 0 0 0 +-36.252 20.266 -0.878 0 0 0 0 0 0 0 +-36.225 20.102 -0.876 0 0 0 0 0 0 0 +-36.209 19.944 -0.873 0 0 0 0 0 0 0 +-36.196 19.789 -0.871 0 0 0 0 0 0 0 +-12.614 6.89 -0.17 0 0 0 0 0 0 0 +-12.633 6.849 -0.17 0 0 0 0 0 0 0 +-12.675 6.82 -0.171 0 0 0 0 0 0 0 +-36.087 19.218 -0.861 0 0 0 0 0 0 0 +-36.067 19.062 -0.859 0 0 0 0 0 0 0 +-36.049 18.908 -0.857 0 0 0 0 0 0 0 +-36.028 18.753 -0.854 0 0 0 0 0 0 0 +-35.967 18.65 -0.852 0 0 0 0 0 0 0 +-35.956 18.501 -0.85 0 0 0 0 0 0 0 +-35.922 18.341 -0.847 0 0 0 0 0 0 0 +-35.888 18.182 -0.844 0 0 0 0 0 0 0 +-35.866 18.029 -0.842 0 0 0 0 0 0 0 +-35.862 17.886 -0.84 0 0 0 0 0 0 0 +-35.792 17.711 -0.837 0 0 0 0 0 0 0 +-35.763 17.627 -0.835 0 0 0 0 0 0 0 +-35.743 17.478 -0.833 0 0 0 0 0 0 0 +-35.713 17.324 -0.83 0 0 0 0 0 0 0 +-35.675 17.168 -0.828 0 0 0 0 0 0 0 +-14.764 7.065 -0.222 0 0 0 0 0 0 0 +-14.817 7.033 -0.223 0 0 0 0 0 0 0 +-14.784 6.961 -0.221 0 0 0 0 0 0 0 +-35.844 16.766 -0.827 0 0 0 0 0 0 0 +-35.824 16.62 -0.825 0 0 0 0 0 0 0 +-35.79 16.468 -0.823 0 0 0 0 0 0 0 +-35.731 16.305 -0.819 0 0 0 0 0 0 0 +-35.703 16.157 -0.817 0 0 0 0 0 0 0 +-35.637 15.993 -0.814 0 0 0 0 0 0 0 +-35.329 15.722 -0.804 0 0 0 0 0 0 0 +-35.285 15.569 -0.801 0 0 0 0 0 0 0 +-35.231 15.479 -0.799 0 0 0 0 0 0 0 +-35.178 15.325 -0.796 0 0 0 0 0 0 0 +-35.147 15.18 -0.794 0 0 0 0 0 0 0 +-35.103 15.03 -0.791 0 0 0 0 0 0 0 +-35.051 14.878 -0.788 0 0 0 0 0 0 0 +-35.009 14.731 -0.786 0 0 0 0 0 0 0 +-34.977 14.588 -0.784 0 0 0 0 0 0 0 +-34.917 14.499 -0.781 0 0 0 0 0 0 0 +-34.877 14.354 -0.779 0 0 0 0 0 0 0 +-34.832 14.208 -0.776 0 0 0 0 0 0 0 +-34.796 14.066 -0.774 0 0 0 0 0 0 0 +-34.748 13.919 -0.771 0 0 0 0 0 0 0 +-34.704 13.776 -0.769 0 0 0 0 0 0 0 +-34.667 13.635 -0.767 0 0 0 0 0 0 0 +-34.593 13.544 -0.764 0 0 0 0 0 0 0 +-34.546 13.4 -0.762 0 0 0 0 0 0 0 +-34.517 13.264 -0.76 0 0 0 0 0 0 0 +-34.465 13.12 -0.757 0 0 0 0 0 0 0 +-34.407 12.975 -0.754 0 0 0 0 0 0 0 +-34.294 12.809 -0.75 0 0 0 0 0 0 0 +-29.831 11.039 -0.625 0 0 0 0 0 0 0 +-29.775 10.965 -0.623 0 0 0 0 0 0 0 +-29.787 10.864 -0.622 0 0 0 0 0 0 0 +-29.83 10.773 -0.622 0 0 0 0 0 0 0 +-29.899 10.692 -0.623 0 0 0 0 0 0 0 +-34.037 12.048 -0.737 0 0 0 0 0 0 0 +-33.997 11.914 -0.735 0 0 0 0 0 0 0 +-33.955 11.779 -0.733 0 0 0 0 0 0 0 +-33.881 11.694 -0.73 0 0 0 0 0 0 0 +-33.831 11.558 -0.728 0 0 0 0 0 0 0 +-33.778 11.422 -0.725 0 0 0 0 0 0 0 +-33.724 11.286 -0.723 0 0 0 0 0 0 0 +-33.676 11.152 -0.72 0 0 0 0 0 0 0 +-33.637 11.022 -0.718 0 0 0 0 0 0 0 +-33.57 10.884 -0.716 0 0 0 0 0 0 0 +-33.526 10.753 -0.713 0 0 0 0 0 0 0 +-33.45 10.671 -0.711 0 0 0 0 0 0 0 +-33.397 10.539 -0.709 0 0 0 0 0 0 0 +-33.339 10.405 -0.706 0 0 0 0 0 0 0 +-33.289 10.275 -0.704 0 0 0 0 0 0 0 +-33.233 10.144 -0.701 0 0 0 0 0 0 0 +-33.175 10.012 -0.699 0 0 0 0 0 0 0 +-33.118 9.882 -0.697 0 0 0 0 0 0 0 +-33.041 9.802 -0.694 0 0 0 0 0 0 0 +-32.98 9.672 -0.692 0 0 0 0 0 0 0 +-32.926 9.543 -0.689 0 0 0 0 0 0 0 +-32.863 9.414 -0.687 0 0 0 0 0 0 0 +-32.804 9.285 -0.684 0 0 0 0 0 0 0 +-32.748 9.159 -0.682 0 0 0 0 0 0 0 +-32.679 9.029 -0.679 0 0 0 0 0 0 0 +-32.608 8.954 -0.677 0 0 0 0 0 0 0 +-32.547 8.828 -0.675 0 0 0 0 0 0 0 +-32.474 8.698 -0.672 0 0 0 0 0 0 0 +-32.413 8.573 -0.67 0 0 0 0 0 0 0 +-32.35 8.448 -0.667 0 0 0 0 0 0 0 +-32.274 8.32 -0.664 0 0 0 0 0 0 0 +-32.217 8.197 -0.662 0 0 0 0 0 0 0 +-32.144 8.125 -0.66 0 0 0 0 0 0 0 +-32.073 8 -0.657 0 0 0 0 0 0 0 +-32.016 7.879 -0.655 0 0 0 0 0 0 0 +-31.945 7.756 -0.653 0 0 0 0 0 0 0 +-31.876 7.633 -0.65 0 0 0 0 0 0 0 +-31.805 7.51 -0.647 0 0 0 0 0 0 0 +-31.744 7.391 -0.645 0 0 0 0 0 0 0 +-31.664 7.32 -0.643 0 0 0 0 0 0 0 +-31.611 7.203 -0.641 0 0 0 0 0 0 0 +-31.532 7.081 -0.638 0 0 0 0 0 0 0 +-31.468 6.963 -0.636 0 0 0 0 0 0 0 +-31.4 6.845 -0.633 0 0 0 0 0 0 0 +-31.332 6.727 -0.631 0 0 0 0 0 0 0 +-31.251 6.607 -0.628 0 0 0 0 0 0 0 +-31.179 6.541 -0.626 0 0 0 0 0 0 0 +-31.113 6.425 -0.624 0 0 0 0 0 0 0 +-31.086 6.318 -0.623 0 0 0 0 0 0 0 +-30.951 6.189 -0.618 0 0 0 0 0 0 0 +-30.896 6.077 -0.616 0 0 0 0 0 0 0 +-30.822 5.962 -0.614 0 0 0 0 0 0 0 +-30.751 5.848 -0.612 0 0 0 0 0 0 0 +-30.671 5.783 -0.609 0 0 0 0 0 0 0 +-30.603 5.671 -0.607 0 0 0 0 0 0 0 +-30.534 5.559 -0.605 0 0 0 0 0 0 0 +-30.461 5.447 -0.602 0 0 0 0 0 0 0 +-30.381 5.335 -0.6 0 0 0 0 0 0 0 +-30.317 5.225 -0.598 0 0 0 0 0 0 0 +-30.243 5.115 -0.595 0 0 0 0 0 0 0 +-30.16 5.052 -0.593 0 0 0 0 0 0 0 +-30.081 4.942 -0.59 0 0 0 0 0 0 0 +-30.013 4.834 -0.588 0 0 0 0 0 0 0 +-29.94 4.726 -0.586 0 0 0 0 0 0 0 +-29.877 4.62 -0.584 0 0 0 0 0 0 0 +-29.803 4.513 -0.581 0 0 0 0 0 0 0 +-29.718 4.404 -0.579 0 0 0 0 0 0 0 +-29.626 4.343 -0.576 0 0 0 0 0 0 0 +-29.562 4.239 -0.574 0 0 0 0 0 0 0 +-29.478 4.133 -0.572 0 0 0 0 0 0 0 +-29.408 4.029 -0.569 0 0 0 0 0 0 0 +-29.335 3.925 -0.567 0 0 0 0 0 0 0 +-29.256 3.821 -0.565 0 0 0 0 0 0 0 +-29.193 3.72 -0.563 0 0 0 0 0 0 0 +-29.113 3.617 -0.56 0 0 0 0 0 0 0 +-29.029 3.56 -0.558 0 0 0 0 0 0 0 +-29.01 3.465 -0.557 0 0 0 0 0 0 0 +-29.107 3.384 -0.559 0 0 0 0 0 0 0 +-29.165 3.298 -0.561 0 0 0 0 0 0 0 +-29.111 3.199 -0.559 0 0 0 0 0 0 0 +-29.012 3.096 -0.556 0 0 0 0 0 0 0 +-28.932 2.996 -0.554 0 0 0 0 0 0 0 +-28.859 2.943 -0.552 0 0 0 0 0 0 0 +-28.795 2.845 -0.55 0 0 0 0 0 0 0 +-28.716 2.746 -0.548 0 0 0 0 0 0 0 +-28.605 2.645 -0.544 0 0 0 0 0 0 0 +-28.517 2.546 -0.542 0 0 0 0 0 0 0 +-28.093 2.42 -0.531 0 0 0 0 0 0 0 +-28.009 2.324 -0.528 0 0 0 0 0 0 0 +-27.944 2.231 -0.526 0 0 0 0 0 0 0 +-27.842 2.178 -0.524 0 0 0 0 0 0 0 +-27.759 2.084 -0.521 0 0 0 0 0 0 0 +-27.698 1.992 -0.519 0 0 0 0 0 0 0 +-27.598 1.898 -0.517 0 0 0 0 0 0 0 +-27.514 1.806 -0.514 0 0 0 0 0 0 0 +-27.468 1.716 -0.513 0 0 0 0 0 0 0 +-27.357 1.623 -0.51 0 0 0 0 0 0 0 +-21.757 1.262 -0.364 0 0 0 0 0 0 0 +-21.681 1.189 -0.361 0 0 0 0 0 0 0 +-21.628 1.118 -0.36 0 0 0 0 0 0 0 +-21.624 1.05 -0.36 0 0 0 0 0 0 0 +-21.627 0.982 -0.36 0 0 0 0 0 0 0 +-21.622 0.914 -0.36 0 0 0 0 0 0 0 +-21.675 0.848 -0.361 0 0 0 0 0 0 0 +-21.742 0.816 -0.363 0 0 0 0 0 0 0 +-26.628 0.91 -0.49 0 0 0 0 0 0 0 +-26.587 0.825 -0.489 0 0 0 0 0 0 0 +-26.499 0.739 -0.487 0 0 0 0 0 0 0 +-26.419 0.654 -0.484 0 0 0 0 0 0 0 +-26.341 0.569 -0.482 0 0 0 0 0 0 0 +-26.263 0.485 -0.48 0 0 0 0 0 0 0 +-26.182 0.442 -0.478 0 0 0 0 0 0 0 +-26.113 0.359 -0.476 0 0 0 0 0 0 0 +-26.048 0.276 -0.475 0 0 0 0 0 0 0 +-22.22 0.17 -0.375 0 0 0 0 0 0 0 +-22.197 0.1 -0.374 0 0 0 0 0 0 0 +-22.191 0.03 -0.374 0 0 0 0 0 0 0 +-22.177 -0.04 -0.374 0 0 0 0 0 0 0 +-22.159 -0.074 -0.373 0 0 0 0 0 0 0 +-22.189 -0.144 -0.374 0 0 0 0 0 0 0 +-22.16 -0.214 -0.373 0 0 0 0 0 0 0 +-25.362 -0.328 -0.457 0 0 0 0 0 0 0 +-25.299 -0.406 -0.455 0 0 0 0 0 0 0 +-25.227 -0.485 -0.453 0 0 0 0 0 0 0 +-25.144 -0.562 -0.451 0 0 0 0 0 0 0 +-25.056 -0.639 -0.449 0 0 0 0 0 0 0 +-24.981 -0.676 -0.447 0 0 0 0 0 0 0 +-24.905 -0.752 -0.445 0 0 0 0 0 0 0 +-24.818 -0.827 -0.443 0 0 0 0 0 0 0 +-24.744 -0.903 -0.441 0 0 0 0 0 0 0 +-24.673 -0.978 -0.439 0 0 0 0 0 0 0 +-24.588 -1.052 -0.437 0 0 0 0 0 0 0 +-24.494 -1.125 -0.435 0 0 0 0 0 0 0 +-24.421 -1.16 -0.433 0 0 0 0 0 0 0 +-24.351 -1.233 -0.431 0 0 0 0 0 0 0 +-24.259 -1.305 -0.429 0 0 0 0 0 0 0 +-24.187 -1.377 -0.427 0 0 0 0 0 0 0 +-24.101 -1.448 -0.425 0 0 0 0 0 0 0 +-24.018 -1.518 -0.423 0 0 0 0 0 0 0 +-23.946 -1.589 -0.421 0 0 0 0 0 0 0 +-23.879 -1.623 -0.419 0 0 0 0 0 0 0 +-23.794 -1.692 -0.417 0 0 0 0 0 0 0 +-23.717 -1.761 -0.415 0 0 0 0 0 0 0 +-23.656 -1.831 -0.414 0 0 0 0 0 0 0 +-23.558 -1.898 -0.412 0 0 0 0 0 0 0 +-23.474 -1.965 -0.41 0 0 0 0 0 0 0 +-23.406 -2.034 -0.408 0 0 0 0 0 0 0 +-23.335 -2.064 -0.406 0 0 0 0 0 0 0 +-23.251 -2.131 -0.404 0 0 0 0 0 0 0 +-23.199 -2.199 -0.403 0 0 0 0 0 0 0 +-23.058 -2.259 -0.399 0 0 0 0 0 0 0 +-23.013 -2.327 -0.398 0 0 0 0 0 0 0 +-22.926 -2.391 -0.396 0 0 0 0 0 0 0 +-22.837 -2.455 -0.394 0 0 0 0 0 0 0 +-22.786 -2.521 -0.393 0 0 0 0 0 0 0 +-22.768 -2.592 -0.393 0 0 0 0 0 0 0 +-22.797 -2.631 -0.394 0 0 0 0 0 0 0 +-22.779 -2.702 -0.393 0 0 0 0 0 0 0 +-22.806 -2.778 -0.394 0 0 0 0 0 0 0 +-22.795 -2.849 -0.394 0 0 0 0 0 0 0 +-22.812 -2.924 -0.395 0 0 0 0 0 0 0 +-22.809 -2.997 -0.395 0 0 0 0 0 0 0 +-22.835 -3.073 -0.396 0 0 0 0 0 0 0 +-22.818 -3.107 -0.396 0 0 0 0 0 0 0 +-22.8 -3.178 -0.396 0 0 0 0 0 0 0 +-22.776 -3.247 -0.395 0 0 0 0 0 0 0 +-22.891 -3.337 -0.399 0 0 0 0 0 0 0 +-22.842 -3.404 -0.398 0 0 0 0 0 0 0 +-22.77 -3.466 -0.396 0 0 0 0 0 0 0 +-22.678 -3.525 -0.394 0 0 0 0 0 0 0 +-22.606 -3.55 -0.392 0 0 0 0 0 0 0 +-22.506 -3.606 -0.39 0 0 0 0 0 0 0 +-22.413 -3.664 -0.388 0 0 0 0 0 0 0 +-22.358 -3.727 -0.386 0 0 0 0 0 0 0 +-21.141 -3.659 -0.355 0 0 0 0 0 0 0 +-21.106 -3.721 -0.354 0 0 0 0 0 0 0 +-21.003 -3.737 -0.352 0 0 0 0 0 0 0 +-20.964 -3.798 -0.351 0 0 0 0 0 0 0 +-20.863 -3.848 -0.349 0 0 0 0 0 0 0 +-20.804 -3.904 -0.347 0 0 0 0 0 0 0 +-20.715 -3.955 -0.345 0 0 0 0 0 0 0 +-20.663 -4.012 -0.344 0 0 0 0 0 0 0 +-20.568 -4.061 -0.342 0 0 0 0 0 0 0 +-20.531 -4.087 -0.341 0 0 0 0 0 0 0 +-20.429 -4.133 -0.339 0 0 0 0 0 0 0 +-20.375 -4.189 -0.338 0 0 0 0 0 0 0 +-20.274 -4.235 -0.335 0 0 0 0 0 0 0 +-20.233 -4.292 -0.335 0 0 0 0 0 0 0 +-20.132 -4.337 -0.332 0 0 0 0 0 0 0 +-20.083 -4.392 -0.331 0 0 0 0 0 0 0 +-19.983 -4.436 -0.329 0 0 0 0 0 0 0 +-19.931 -4.458 -0.328 0 0 0 0 0 0 0 +-19.853 -4.505 -0.326 0 0 0 0 0 0 0 +-19.802 -4.559 -0.325 0 0 0 0 0 0 0 +-19.698 -4.6 -0.323 0 0 0 0 0 0 0 +-19.648 -4.654 -0.322 0 0 0 0 0 0 0 +-19.559 -4.698 -0.32 0 0 0 0 0 0 0 +-19.502 -4.749 -0.319 0 0 0 0 0 0 0 +-19.421 -4.761 -0.317 0 0 0 0 0 0 0 +-19.363 -4.811 -0.316 0 0 0 0 0 0 0 +-19.278 -4.855 -0.314 0 0 0 0 0 0 0 +-19.222 -4.905 -0.313 0 0 0 0 0 0 0 +-19.141 -4.948 -0.311 0 0 0 0 0 0 0 +-19.082 -4.997 -0.31 0 0 0 0 0 0 0 +-18.991 -5.037 -0.308 0 0 0 0 0 0 0 +-18.956 -5.059 -0.307 0 0 0 0 0 0 0 +-18.859 -5.097 -0.305 0 0 0 0 0 0 0 +-18.807 -5.146 -0.304 0 0 0 0 0 0 0 +-18.729 -5.188 -0.302 0 0 0 0 0 0 0 +-18.66 -5.232 -0.301 0 0 0 0 0 0 0 +-18.584 -5.274 -0.299 0 0 0 0 0 0 0 +-18.531 -5.321 -0.298 0 0 0 0 0 0 0 +-18.448 -5.329 -0.296 0 0 0 0 0 0 0 +-18.396 -5.377 -0.295 0 0 0 0 0 0 0 +-18.316 -5.416 -0.293 0 0 0 0 0 0 0 +-18.263 -5.462 -0.292 0 0 0 0 0 0 0 +-18.182 -5.5 -0.291 0 0 0 0 0 0 0 +-18.117 -5.543 -0.289 0 0 0 0 0 0 0 +-18.033 -5.579 -0.288 0 0 0 0 0 0 0 +-17.99 -5.596 -0.287 0 0 0 0 0 0 0 +-17.902 -5.631 -0.285 0 0 0 0 0 0 0 +-17.842 -5.673 -0.283 0 0 0 0 0 0 0 +-17.773 -5.713 -0.282 0 0 0 0 0 0 0 +-17.718 -5.757 -0.281 0 0 0 0 0 0 0 +-17.628 -5.789 -0.279 0 0 0 0 0 0 0 +-17.578 -5.833 -0.278 0 0 0 0 0 0 0 +-17.512 -5.842 -0.277 0 0 0 0 0 0 0 +-17.446 -5.881 -0.275 0 0 0 0 0 0 0 +-17.372 -5.917 -0.274 0 0 0 0 0 0 0 +-17.318 -5.959 -0.273 0 0 0 0 0 0 0 +-17.231 -5.99 -0.271 0 0 0 0 0 0 0 +-17.193 -6.037 -0.27 0 0 0 0 0 0 0 +-17.076 -6.056 -0.268 0 0 0 0 0 0 0 +-17.022 -6.067 -0.266 0 0 0 0 0 0 0 +-16.813 -6.052 -0.261 0 0 0 0 0 0 0 +-16.912 -6.148 -0.265 0 0 0 0 0 0 0 +-16.855 -6.187 -0.263 0 0 0 0 0 0 0 +-16.785 -6.221 -0.262 0 0 0 0 0 0 0 +-16.73 -6.26 -0.261 0 0 0 0 0 0 0 +-16.642 -6.287 -0.259 0 0 0 0 0 0 0 +-16.606 -6.333 -0.259 0 0 0 0 0 0 0 +-16.529 -6.333 -0.257 0 0 0 0 0 0 0 +-16.475 -6.372 -0.256 0 0 0 0 0 0 0 +-16.388 -6.398 -0.254 0 0 0 0 0 0 0 +-16.344 -6.439 -0.253 0 0 0 0 0 0 0 +-16.268 -6.469 -0.252 0 0 0 0 0 0 0 +-16.223 -6.51 -0.251 0 0 0 0 0 0 0 +-16.142 -6.536 -0.249 0 0 0 0 0 0 0 +-16.105 -6.551 -0.249 0 0 0 0 0 0 0 +-16.068 -6.594 -0.248 0 0 0 0 0 0 0 +-16.077 -6.657 -0.249 0 0 0 0 0 0 0 +-16.03 -6.697 -0.248 0 0 0 0 0 0 0 +-16 -6.743 -0.248 0 0 0 0 0 0 0 +-15.883 -6.753 -0.245 0 0 0 0 0 0 0 +-16.089 -6.901 -0.252 0 0 0 0 0 0 0 +-16.111 -6.94 -0.253 0 0 0 0 0 0 0 +-16.122 -7.005 -0.254 0 0 0 0 0 0 0 +-16.121 -7.065 -0.254 0 0 0 0 0 0 0 +-16.129 -7.129 -0.255 0 0 0 0 0 0 0 +-16.127 -7.189 -0.256 0 0 0 0 0 0 0 +-16.141 -7.256 -0.257 0 0 0 0 0 0 0 +-16.149 -7.32 -0.258 0 0 0 0 0 0 0 +-16.166 -7.359 -0.258 0 0 0 0 0 0 0 +-16.167 -7.421 -0.259 0 0 0 0 0 0 0 +-16.169 -7.483 -0.26 0 0 0 0 0 0 0 +-16.189 -7.554 -0.261 0 0 0 0 0 0 0 +-16.188 -7.616 -0.262 0 0 0 0 0 0 0 +-16.206 -7.687 -0.263 0 0 0 0 0 0 0 +-16.198 -7.746 -0.263 0 0 0 0 0 0 0 +-16.225 -7.79 -0.265 0 0 0 0 0 0 0 +-16.237 -7.858 -0.266 0 0 0 0 0 0 0 +-16.241 -7.923 -0.266 0 0 0 0 0 0 0 +-16.228 -7.981 -0.267 0 0 0 0 0 0 0 +-16.251 -8.056 -0.268 0 0 0 0 0 0 0 +-16.262 -8.125 -0.269 0 0 0 0 0 0 0 +-16.266 -8.191 -0.27 0 0 0 0 0 0 0 +-16.268 -8.224 -0.271 0 0 0 0 0 0 0 +-16.29 -8.299 -0.272 0 0 0 0 0 0 0 +-16.285 -8.362 -0.273 0 0 0 0 0 0 0 +-16.307 -8.438 -0.274 0 0 0 0 0 0 0 +-16.3 -8.499 -0.275 0 0 0 0 0 0 0 +-16.315 -8.572 -0.276 0 0 0 0 0 0 0 +-16.304 -8.632 -0.276 0 0 0 0 0 0 0 +-16.342 -8.685 -0.278 0 0 0 0 0 0 0 +-16.335 -8.748 -0.278 0 0 0 0 0 0 0 +-16.354 -8.824 -0.28 0 0 0 0 0 0 0 +-16.347 -8.886 -0.28 0 0 0 0 0 0 0 +-16.368 -8.965 -0.282 0 0 0 0 0 0 0 +-16.361 -9.028 -0.283 0 0 0 0 0 0 0 +-16.372 -9.101 -0.284 0 0 0 0 0 0 0 +-16.383 -9.141 -0.284 0 0 0 0 0 0 0 +-16.403 -9.22 -0.286 0 0 0 0 0 0 0 +-16.393 -9.282 -0.287 0 0 0 0 0 0 0 +-16.415 -9.363 -0.288 0 0 0 0 0 0 0 +-16.419 -9.434 -0.289 0 0 0 0 0 0 0 +-16.429 -9.508 -0.29 0 0 0 0 0 0 0 +-16.421 -9.573 -0.291 0 0 0 0 0 0 0 +-16.456 -9.628 -0.292 0 0 0 0 0 0 0 +-16.455 -9.697 -0.293 0 0 0 0 0 0 0 +-16.468 -9.774 -0.295 0 0 0 0 0 0 0 +-16.463 -9.842 -0.295 0 0 0 0 0 0 0 +-16.486 -9.926 -0.297 0 0 0 0 0 0 0 +-16.472 -9.988 -0.298 0 0 0 0 0 0 0 +-16.492 -10.071 -0.299 0 0 0 0 0 0 0 +-16.489 -10.141 -0.3 0 0 0 0 0 0 0 +-16.522 -10.198 -0.302 0 0 0 0 0 0 0 +-16.516 -10.265 -0.302 0 0 0 0 0 0 0 +-16.534 -10.349 -0.304 0 0 0 0 0 0 0 +-16.527 -10.417 -0.305 0 0 0 0 0 0 0 +-16.55 -10.504 -0.306 0 0 0 0 0 0 0 +-16.547 -10.576 -0.307 0 0 0 0 0 0 0 +-16.566 -10.661 -0.309 0 0 0 0 0 0 0 +-16.584 -10.71 -0.31 0 0 0 0 0 0 0 +-16.602 -10.796 -0.312 0 0 0 0 0 0 0 +-16.59 -10.862 -0.312 0 0 0 0 0 0 0 +-16.603 -10.945 -0.314 0 0 0 0 0 0 0 +-16.6 -11.018 -0.315 0 0 0 0 0 0 0 +-16.6 -11.094 -0.316 0 0 0 0 0 0 0 +-16.63 -11.189 -0.318 0 0 0 0 0 0 0 +-16.637 -11.232 -0.319 0 0 0 0 0 0 0 +-16.658 -11.323 -0.321 0 0 0 0 0 0 0 +-16.643 -11.39 -0.321 0 0 0 0 0 0 0 +-16.673 -11.488 -0.323 0 0 0 0 0 0 0 +-16.659 -11.555 -0.324 0 0 0 0 0 0 0 +-16.686 -11.652 -0.326 0 0 0 0 0 0 0 +-16.684 -11.728 -0.327 0 0 0 0 0 0 0 +-16.726 -11.797 -0.329 0 0 0 0 0 0 0 +-16.715 -11.868 -0.33 0 0 0 0 0 0 0 +-16.739 -11.965 -0.332 0 0 0 0 0 0 0 +-16.729 -12.037 -0.333 0 0 0 0 0 0 0 +-16.756 -12.137 -0.335 0 0 0 0 0 0 0 +-16.748 -12.212 -0.336 0 0 0 0 0 0 0 +-16.769 -12.308 -0.338 0 0 0 0 0 0 0 +-16.78 -12.357 -0.339 0 0 0 0 0 0 0 +-16.803 -12.455 -0.341 0 0 0 0 0 0 0 +-16.794 -12.531 -0.342 0 0 0 0 0 0 0 +-16.829 -12.64 -0.344 0 0 0 0 0 0 0 +-16.807 -12.706 -0.345 0 0 0 0 0 0 0 +-16.829 -12.806 -0.347 0 0 0 0 0 0 0 +-16.822 -12.884 -0.348 0 0 0 0 0 0 0 +-16.864 -12.958 -0.35 0 0 0 0 0 0 0 +-16.87 -13.048 -0.351 0 0 0 0 0 0 0 +-16.886 -13.145 -0.353 0 0 0 0 0 0 0 +-16.884 -13.229 -0.355 0 0 0 0 0 0 0 +-16.9 -13.328 -0.357 0 0 0 0 0 0 0 +-16.9 -13.415 -0.358 0 0 0 0 0 0 0 +-16.907 -13.506 -0.36 0 0 0 0 0 0 0 +-16.934 -13.572 -0.361 0 0 0 0 0 0 0 +-16.944 -13.668 -0.363 0 0 0 0 0 0 0 +-16.946 -13.757 -0.364 0 0 0 0 0 0 0 +-16.961 -13.859 -0.366 0 0 0 0 0 0 0 +-16.965 -13.951 -0.368 0 0 0 0 0 0 0 +-16.989 -14.061 -0.37 0 0 0 0 0 0 0 +-16.985 -14.147 -0.372 0 0 0 0 0 0 0 +-16.995 -14.247 -0.374 0 0 0 0 0 0 0 +-17.03 -14.321 -0.376 0 0 0 0 0 0 0 +-17.038 -14.42 -0.377 0 0 0 0 0 0 0 +-17.049 -14.521 -0.379 0 0 0 0 0 0 0 +-17.067 -14.63 -0.381 0 0 0 0 0 0 0 +-17.065 -14.721 -0.383 0 0 0 0 0 0 0 +-17.086 -14.834 -0.385 0 0 0 0 0 0 0 +-17.079 -14.922 -0.387 0 0 0 0 0 0 0 +-17.121 -15.006 -0.389 0 0 0 0 0 0 0 +-17.116 -15.097 -0.39 0 0 0 0 0 0 0 +-17.136 -15.211 -0.393 0 0 0 0 0 0 0 +-17.138 -15.31 -0.395 0 0 0 0 0 0 0 +-17.153 -15.42 -0.397 0 0 0 0 0 0 0 +-17.165 -15.529 -0.399 0 0 0 0 0 0 0 +-17.166 -15.628 -0.401 0 0 0 0 0 0 0 +-17.205 -15.713 -0.403 0 0 0 0 0 0 0 +-17.217 -15.824 -0.405 0 0 0 0 0 0 0 +-17.225 -15.931 -0.407 0 0 0 0 0 0 0 +-17.23 -16.037 -0.409 0 0 0 0 0 0 0 +-17.251 -16.158 -0.412 0 0 0 0 0 0 0 +-17.258 -16.267 -0.414 0 0 0 0 0 0 0 +-17.272 -16.383 -0.416 0 0 0 0 0 0 0 +-17.307 -16.468 -0.418 0 0 0 0 0 0 0 +-17.31 -16.575 -0.42 0 0 0 0 0 0 0 +-17.323 -16.692 -0.423 0 0 0 0 0 0 0 +-17.331 -16.805 -0.425 0 0 0 0 0 0 0 +-17.343 -16.924 -0.427 0 0 0 0 0 0 0 +-17.354 -17.041 -0.43 0 0 0 0 0 0 0 +-17.368 -17.162 -0.432 0 0 0 0 0 0 0 +-17.392 -17.24 -0.434 0 0 0 0 0 0 0 +-17.415 -17.372 -0.437 0 0 0 0 0 0 0 +-17.428 -17.495 -0.439 0 0 0 0 0 0 0 +-17.438 -17.615 -0.442 0 0 0 0 0 0 0 +-17.437 -17.725 -0.444 0 0 0 0 0 0 0 +-17.468 -17.868 -0.447 0 0 0 0 0 0 0 +-17.457 -17.971 -0.449 0 0 0 0 0 0 0 +-17.517 -18.089 -0.452 0 0 0 0 0 0 0 +-17.521 -18.207 -0.454 0 0 0 0 0 0 0 +-17.524 -18.326 -0.456 0 0 0 0 0 0 0 +-17.548 -18.466 -0.46 0 0 0 0 0 0 0 +-17.555 -18.591 -0.462 0 0 0 0 0 0 0 +-17.564 -18.718 -0.465 0 0 0 0 0 0 0 +-17.576 -18.849 -0.467 0 0 0 0 0 0 0 +-17.633 -18.97 -0.471 0 0 0 0 0 0 0 +-17.622 -19.078 -0.473 0 0 0 0 0 0 0 +-20.377 -22.206 -0.581 0 0 0 0 0 0 0 +-20.802 -22.814 -0.6 0 0 0 0 0 0 0 +-20.8 -22.956 -0.603 0 0 0 0 0 0 0 +-20.785 -23.086 -0.605 0 0 0 0 0 0 0 +-20.73 -23.17 -0.606 0 0 0 0 0 0 0 +-20.8 -23.397 -0.612 0 0 0 0 0 0 0 +-20.774 -23.441 -0.612 0 0 0 0 0 0 0 +-20.621 -23.416 -0.609 0 0 0 0 0 0 0 +-20.438 -23.356 -0.605 0 0 0 0 0 0 0 +-18.953 -21.794 -0.548 0 0 0 0 0 0 0 +-18.787 -21.74 -0.545 0 0 0 0 0 0 0 +-18.826 -21.925 -0.549 0 0 0 0 0 0 0 +-18.638 -21.844 -0.544 0 0 0 0 0 0 0 +-18.234 -21.437 -0.529 0 0 0 0 0 0 0 +-18.187 -21.519 -0.53 0 0 0 0 0 0 0 +-18.113 -21.568 -0.53 0 0 0 0 0 0 0 +-18.023 -21.599 -0.529 0 0 0 0 0 0 0 +-17.924 -21.617 -0.528 0 0 0 0 0 0 0 +-17.942 -21.778 -0.531 0 0 0 0 0 0 0 +-17.948 -21.926 -0.534 0 0 0 0 0 0 0 +-18.007 -22.069 -0.538 0 0 0 0 0 0 0 +-18.703 -23.072 -0.57 0 0 0 0 0 0 0 +-18.516 -22.987 -0.565 0 0 0 0 0 0 0 +-18.45 -23.053 -0.565 0 0 0 0 0 0 0 +-18.423 -23.168 -0.567 0 0 0 0 0 0 0 +-18.608 -23.553 -0.578 0 0 0 0 0 0 0 +-18.463 -23.521 -0.575 0 0 0 0 0 0 0 +-18.728 -23.936 -0.588 0 0 0 0 0 0 0 +-18.93 -24.352 -0.6 0 0 0 0 0 0 0 +-18.245 -23.623 -0.574 0 0 0 0 0 0 0 +-18.139 -23.639 -0.572 0 0 0 0 0 0 0 +-18.054 -23.681 -0.572 0 0 0 0 0 0 0 +-18.476 -24.395 -0.593 0 0 0 0 0 0 0 +-18.39 -24.44 -0.593 0 0 0 0 0 0 0 +-18.32 -24.427 -0.592 0 0 0 0 0 0 0 +-18.314 -24.58 -0.595 0 0 0 0 0 0 0 +-18.32 -24.75 -0.598 0 0 0 0 0 0 0 +-22.319 -30.361 -0.778 0 0 0 0 0 0 0 +-22.33 -30.578 -0.783 0 0 0 0 0 0 0 +-22.443 -30.936 -0.792 0 0 0 0 0 0 0 +-22.37 -31.041 -0.793 0 0 0 0 0 0 0 +-22.292 -31.035 -0.792 0 0 0 0 0 0 0 +-22.177 -31.08 -0.791 0 0 0 0 0 0 0 +-22.021 -31.067 -0.788 0 0 0 0 0 0 0 +-21.924 -31.137 -0.788 0 0 0 0 0 0 0 +-19.059 -27.244 -0.662 0 0 0 0 0 0 0 +-18.753 -26.985 -0.652 0 0 0 0 0 0 0 +-18.409 -26.669 -0.64 0 0 0 0 0 0 0 +-18.398 -26.742 -0.642 0 0 0 0 0 0 0 +-18.507 -27.084 -0.651 0 0 0 0 0 0 0 +-18.662 -27.496 -0.662 0 0 0 0 0 0 0 +-18.672 -27.697 -0.666 0 0 0 0 0 0 0 +-19.641 -29.337 -0.716 0 0 0 0 0 0 0 +-19.267 -28.973 -0.703 0 0 0 0 0 0 0 +-19.103 -28.924 -0.699 0 0 0 0 0 0 0 +-19.034 -28.917 -0.698 0 0 0 0 0 0 0 +-18.913 -28.931 -0.697 0 0 0 0 0 0 0 +-18.84 -29.017 -0.697 0 0 0 0 0 0 0 +-18.865 -29.258 -0.703 0 0 0 0 0 0 0 +-19.833 -30.975 -0.754 0 0 0 0 0 0 0 +-19.785 -31.114 -0.757 0 0 0 0 0 0 0 +-19.77 -31.308 -0.761 0 0 0 0 0 0 0 +-19.837 -31.524 -0.767 0 0 0 0 0 0 0 +-26.682 -42.717 -1.109 0 0 0 0 0 0 0 +-26.709 -43.06 -1.117 0 0 0 0 0 0 0 +-26.727 -43.393 -1.124 0 0 0 0 0 0 0 +-26.787 -43.799 -1.134 0 0 0 0 0 0 0 +-26.805 -44.139 -1.142 0 0 0 0 0 0 0 +-19.63 -32.541 -0.786 0 0 0 0 0 0 0 +-19.555 -32.533 -0.785 0 0 0 0 0 0 0 +-19.429 -32.554 -0.784 0 0 0 0 0 0 0 +-19.326 -32.614 -0.784 0 0 0 0 0 0 0 +-19.333 -32.86 -0.79 0 0 0 0 0 0 0 +-19.673 -33.681 -0.812 0 0 0 0 0 0 0 +-19.66 -33.903 -0.817 0 0 0 0 0 0 0 +-19.589 -34.027 -0.819 0 0 0 0 0 0 0 +-19.535 -34.056 -0.819 0 0 0 0 0 0 0 +-19.439 -34.137 -0.82 0 0 0 0 0 0 0 +-19.323 -34.184 -0.819 0 0 0 0 0 0 0 +-27.463 -48.964 -1.259 0 0 0 0 0 0 0 +-19.873 -35.679 -0.86 0 0 0 0 0 0 0 +-19.708 -35.645 -0.857 0 0 0 0 0 0 0 +-19.64 -35.788 -0.86 0 0 0 0 0 0 0 +-19.646 -35.933 -0.863 0 0 0 0 0 0 0 +-19.808 -36.502 -0.878 0 0 0 0 0 0 0 +-15.834 -29.611 -0.671 0 0 0 0 0 0 0 +-15.736 -29.65 -0.671 0 0 0 0 0 0 0 +-15.62 -29.657 -0.669 0 0 0 0 0 0 0 +-15.507 -29.669 -0.668 0 0 0 0 0 0 0 +-15.522 -29.927 -0.674 0 0 0 0 0 0 0 +-15.352 -29.711 -0.667 0 0 0 0 0 0 0 +-20.378 -39.764 -0.96 0 0 0 0 0 0 0 +-20.261 -39.844 -0.961 0 0 0 0 0 0 0 +-20.23 -40.095 -0.966 0 0 0 0 0 0 0 +-22.222 -44.394 -1.09 0 0 0 0 0 0 0 +-22.062 -44.423 -1.089 0 0 0 0 0 0 0 +-21.88 -44.406 -1.086 0 0 0 0 0 0 0 +-21.804 -44.428 -1.086 0 0 0 0 0 0 0 +-21.089 -43.313 -1.052 0 0 0 0 0 0 0 +-20.937 -43.346 -1.051 0 0 0 0 0 0 0 +-20.773 -43.354 -1.049 0 0 0 0 0 0 0 +-20.703 -43.558 -1.053 0 0 0 0 0 0 0 +-21.759 -46.157 -1.126 0 0 0 0 0 0 0 +-21.773 -46.566 -1.136 0 0 0 0 0 0 0 +-29.284 -62.909 -1.605 0 0 0 0 0 0 0 +-21.502 -46.945 -1.142 0 0 0 0 0 0 0 +-21.329 -46.956 -1.14 0 0 0 0 0 0 0 +-21.177 -47.012 -1.14 0 0 0 0 0 0 0 +-21.171 -47.396 -1.149 0 0 0 0 0 0 0 +-21.535 -48.623 -1.182 0 0 0 0 0 0 0 +-21.443 -48.622 -1.181 0 0 0 0 0 0 0 +-21.375 -48.883 -1.187 0 0 0 0 0 0 0 +-15.915 -36.692 -0.838 0 0 0 0 0 0 0 +-15.801 -36.746 -0.838 0 0 0 0 0 0 0 +-22.217 -52.146 -1.273 0 0 0 0 0 0 0 +-22.033 -52.167 -1.272 0 0 0 0 0 0 0 +-21.861 -52.218 -1.272 0 0 0 0 0 0 0 +-21.878 -52.488 -1.278 0 0 0 0 0 0 0 +-23.726 -57.438 -1.416 0 0 0 0 0 0 0 +-23.468 -57.321 -1.411 0 0 0 0 0 0 0 +-22.633 -55.779 -1.365 0 0 0 0 0 0 0 +-22.435 -55.794 -1.364 0 0 0 0 0 0 0 +-14.75 -36.995 -0.834 0 0 0 0 0 0 0 +-14.613 -36.987 -0.832 0 0 0 0 0 0 0 +-14.537 -36.963 -0.831 0 0 0 0 0 0 0 +-14.409 -36.979 -0.83 0 0 0 0 0 0 0 +-14.275 -36.979 -0.829 0 0 0 0 0 0 0 +-14.152 -37.005 -0.828 0 0 0 0 0 0 0 +-14.02 -37.008 -0.827 0 0 0 0 0 0 0 +-13.89 -37.017 -0.826 0 0 0 0 0 0 0 +-13.764 -37.034 -0.826 0 0 0 0 0 0 0 +-13.695 -37.026 -0.825 0 0 0 0 0 0 0 +-13.568 -37.038 -0.824 0 0 0 0 0 0 0 +-13.449 -37.075 -0.824 0 0 0 0 0 0 0 +-13.324 -37.093 -0.823 0 0 0 0 0 0 0 +-13.2 -37.114 -0.823 0 0 0 0 0 0 0 +-13.103 -37.212 -0.824 0 0 0 0 0 0 0 +-13.117 -37.628 -0.834 0 0 0 0 0 0 0 +-13.201 -38.063 -0.846 0 0 0 0 0 0 0 +-13.241 -38.571 -0.859 0 0 0 0 0 0 0 +-13.288 -39.109 -0.872 0 0 0 0 0 0 0 +-13.329 -39.639 -0.886 0 0 0 0 0 0 0 +-13.384 -40.222 -0.901 0 0 0 0 0 0 0 +-13.455 -40.862 -0.917 0 0 0 0 0 0 0 +-13.926 -42.977 -0.973 0 0 0 0 0 0 0 +-16.34 -57.454 -1.353 0 0 0 0 0 0 0 +-16.152 -57.478 -1.352 0 0 0 0 0 0 0 +-16.051 -57.465 -1.351 0 0 0 0 0 0 0 +-15.857 -57.469 -1.35 0 0 0 0 0 0 0 +-15.683 -57.541 -1.351 0 0 0 0 0 0 0 +-15.537 -57.72 -1.354 0 0 0 0 0 0 0 +-15.292 -57.529 -1.348 0 0 0 0 0 0 0 +-6.732 -42.285 -0.912 0 0 0 0 0 0 0 +-6.596 -42.291 -0.911 0 0 0 0 0 0 0 +-6.352 -42.936 -0.927 0 0 0 0 0 0 0 +-5.864 -43.405 -0.937 0 0 0 0 0 0 0 +-5.722 -43.38 -0.936 0 0 0 0 0 0 0 +-5.589 -43.421 -0.937 0 0 0 0 0 0 0 +-5.019 -42.694 -0.916 0 0 0 0 0 0 0 +-4.59 -65.748 -1.514 0 0 0 0 0 0 0 +-4.366 -65.501 -1.507 0 0 0 0 0 0 0 +-4.256 -65.402 -1.504 0 0 0 0 0 0 0 +-4.2 -71.503 -1.663 0 0 0 0 0 0 0 +-3.598 -68.601 -1.587 0 0 0 0 0 0 0 +-3.228 -65.449 -1.504 0 0 0 0 0 0 0 +-2.758 -59.699 -1.354 0 0 0 0 0 0 0 +-2.671 -59.837 -1.357 0 0 0 0 0 0 0 +-2.456 -59.207 -1.341 0 0 0 0 0 0 0 +-2.208 -57.569 -1.298 0 0 0 0 0 0 0 +-1.959 -55.605 -1.246 0 0 0 0 0 0 0 +-1.677 -52.24 -1.158 0 0 0 0 0 0 0 +-1.49 -51.443 -1.137 0 0 0 0 0 0 0 +-1.305 -50.516 -1.113 0 0 0 0 0 0 0 +-1.203 -49.557 -1.088 0 0 0 0 0 0 0 +-1.021 -48.263 -1.054 0 0 0 0 0 0 0 +-0.806 -44.64 -0.96 0 0 0 0 0 0 0 +-0.274 -30.905 -0.601 0 0 0 0 0 0 0 +-0.178 -31.071 -0.606 0 0 0 0 0 0 0 +-0.165 -41.674 -0.882 0 0 0 0 0 0 0 +-0.034 -41.834 -0.886 0 0 0 0 0 0 0 +0.098 -41.848 -0.887 0 0 0 0 0 0 0 +0.194 -36.13 -0.737 0 0 0 0 0 0 0 +0.307 -35.999 -0.734 0 0 0 0 0 0 0 +0.419 -35.942 -0.733 0 0 0 0 0 0 0 +0.532 -35.964 -0.733 0 0 0 0 0 0 0 +0.59 -36.037 -0.735 0 0 0 0 0 0 0 +0.7 -35.863 -0.731 0 0 0 0 0 0 0 +0.797 -35.206 -0.714 0 0 0 0 0 0 0 +0.895 -34.723 -0.701 0 0 0 0 0 0 0 +0.989 -34.197 -0.687 0 0 0 0 0 0 0 +1.087 -33.928 -0.68 0 0 0 0 0 0 0 +1.178 -33.478 -0.669 0 0 0 0 0 0 0 +1.217 -33.131 -0.66 0 0 0 0 0 0 0 +1.303 -32.665 -0.648 0 0 0 0 0 0 0 +1.386 -32.23 -0.637 0 0 0 0 0 0 0 +1.471 -31.88 -0.628 0 0 0 0 0 0 0 +1.555 -31.549 -0.619 0 0 0 0 0 0 0 +1.633 -31.151 -0.609 0 0 0 0 0 0 0 +1.71 -30.777 -0.599 0 0 0 0 0 0 0 +1.74 -30.456 -0.591 0 0 0 0 0 0 0 +1.815 -30.11 -0.582 0 0 0 0 0 0 0 +1.892 -29.824 -0.575 0 0 0 0 0 0 0 +1.969 -29.575 -0.568 0 0 0 0 0 0 0 +2.057 -29.495 -0.566 0 0 0 0 0 0 0 +2.149 -29.484 -0.566 0 0 0 0 0 0 0 +2.243 -29.499 -0.567 0 0 0 0 0 0 0 +2.29 -29.504 -0.567 0 0 0 0 0 0 0 +2.383 -29.494 -0.567 0 0 0 0 0 0 0 +2.48 -29.541 -0.568 0 0 0 0 0 0 0 +2.406 -27.639 -0.519 0 0 0 0 0 0 0 +2.469 -27.364 -0.512 0 0 0 0 0 0 0 +2.54 -27.197 -0.508 0 0 0 0 0 0 0 +2.623 -27.165 -0.507 0 0 0 0 0 0 0 +2.662 -27.125 -0.506 0 0 0 0 0 0 0 +2.675 -26.41 -0.488 0 0 0 0 0 0 0 +2.762 -26.44 -0.489 0 0 0 0 0 0 0 +2.831 -26.3 -0.485 0 0 0 0 0 0 0 +2.928 -26.424 -0.489 0 0 0 0 0 0 0 +2.972 -26.071 -0.48 0 0 0 0 0 0 0 +2.921 -24.94 -0.45 0 0 0 0 0 0 0 +3.015 -25.057 -0.453 0 0 0 0 0 0 0 +3.19 -26.162 -0.483 0 0 0 0 0 0 0 +3.229 -25.808 -0.474 0 0 0 0 0 0 0 +3.326 -25.296 -0.461 0 0 0 0 0 0 0 +3.417 -25.369 -0.463 0 0 0 0 0 0 0 +3.778 -27.386 -0.516 0 0 0 0 0 0 0 +3.863 -27.366 -0.516 0 0 0 0 0 0 0 +3.911 -27.389 -0.517 0 0 0 0 0 0 0 +4.004 -27.424 -0.518 0 0 0 0 0 0 0 +4.086 -27.388 -0.517 0 0 0 0 0 0 0 +4.181 -27.43 -0.519 0 0 0 0 0 0 0 +4.274 -27.464 -0.52 0 0 0 0 0 0 0 +4.419 -27.537 -0.523 0 0 0 0 0 0 0 +4.511 -27.56 -0.524 0 0 0 0 0 0 0 +4.607 -27.603 -0.525 0 0 0 0 0 0 0 +4.691 -27.571 -0.525 0 0 0 0 0 0 0 +4.775 -27.54 -0.524 0 0 0 0 0 0 0 +4.859 -27.513 -0.524 0 0 0 0 0 0 0 +4.959 -27.573 -0.526 0 0 0 0 0 0 0 +5.053 -27.594 -0.527 0 0 0 0 0 0 0 +5.108 -27.651 -0.529 0 0 0 0 0 0 0 +5.214 -27.737 -0.531 0 0 0 0 0 0 0 +5.295 -27.685 -0.53 0 0 0 0 0 0 0 +4.464 -22.975 -0.406 0 0 0 0 0 0 0 +4.527 -22.914 -0.404 0 0 0 0 0 0 0 +4.598 -22.897 -0.404 0 0 0 0 0 0 0 +4.672 -22.893 -0.405 0 0 0 0 0 0 0 +4.728 -22.981 -0.407 0 0 0 0 0 0 0 +4.814 -23.033 -0.409 0 0 0 0 0 0 0 +5.865 -27.601 -0.531 0 0 0 0 0 0 0 +5.97 -27.668 -0.533 0 0 0 0 0 0 0 +6.066 -27.69 -0.534 0 0 0 0 0 0 0 +4.796 -21.593 -0.372 0 0 0 0 0 0 0 +4.888 -21.687 -0.375 0 0 0 0 0 0 0 +4.924 -21.687 -0.375 0 0 0 0 0 0 0 +4.937 -21.434 -0.369 0 0 0 0 0 0 0 +4.997 -21.387 -0.368 0 0 0 0 0 0 0 +5.08 -21.435 -0.37 0 0 0 0 0 0 0 +5.144 -21.406 -0.369 0 0 0 0 0 0 0 +5.19 -21.302 -0.367 0 0 0 0 0 0 0 +5.271 -21.346 -0.369 0 0 0 0 0 0 0 +5.295 -21.299 -0.368 0 0 0 0 0 0 0 +5.372 -21.321 -0.369 0 0 0 0 0 0 0 +5.434 -21.286 -0.368 0 0 0 0 0 0 0 +5.498 -21.256 -0.368 0 0 0 0 0 0 0 +5.56 -21.223 -0.367 0 0 0 0 0 0 0 +5.632 -21.223 -0.368 0 0 0 0 0 0 0 +5.707 -21.238 -0.369 0 0 0 0 0 0 0 +5.759 -21.296 -0.371 0 0 0 0 0 0 0 +5.843 -21.34 -0.372 0 0 0 0 0 0 0 +5.908 -21.313 -0.372 0 0 0 0 0 0 0 +5.975 -21.297 -0.372 0 0 0 0 0 0 0 +6.062 -21.347 -0.374 0 0 0 0 0 0 0 +6.104 -21.243 -0.372 0 0 0 0 0 0 0 +6.184 -21.27 -0.373 0 0 0 0 0 0 0 +6.243 -21.347 -0.375 0 0 0 0 0 0 0 +6.318 -21.354 -0.376 0 0 0 0 0 0 0 +6.371 -21.288 -0.375 0 0 0 0 0 0 0 +6.455 -21.321 -0.376 0 0 0 0 0 0 0 +6.521 -21.299 -0.376 0 0 0 0 0 0 0 +6.629 -21.41 -0.38 0 0 0 0 0 0 0 +6.731 -21.5 -0.383 0 0 0 0 0 0 0 +6.733 -21.39 -0.38 0 0 0 0 0 0 0 +6.791 -21.338 -0.379 0 0 0 0 0 0 0 +6.875 -21.372 -0.381 0 0 0 0 0 0 0 +6.946 -21.36 -0.381 0 0 0 0 0 0 0 +7.02 -21.359 -0.382 0 0 0 0 0 0 0 +7.142 -21.504 -0.386 0 0 0 0 0 0 0 +7.207 -21.474 -0.386 0 0 0 0 0 0 0 +7.225 -21.415 -0.385 0 0 0 0 0 0 0 +7.306 -21.434 -0.386 0 0 0 0 0 0 0 +7.392 -21.464 -0.387 0 0 0 0 0 0 0 +7.469 -21.467 -0.388 0 0 0 0 0 0 0 +7.547 -21.475 -0.389 0 0 0 0 0 0 0 +3.746 -10.592 -0.088 0 0 0 0 0 0 0 +3.776 -10.571 -0.088 0 0 0 0 0 0 0 +3.811 -10.617 -0.089 0 0 0 0 0 0 0 +7.848 -21.567 -0.394 0 0 0 0 0 0 0 +7.93 -21.584 -0.395 0 0 0 0 0 0 0 +8 -21.564 -0.395 0 0 0 0 0 0 0 +8.083 -21.579 -0.396 0 0 0 0 0 0 0 +8.207 -21.703 -0.4 0 0 0 0 0 0 0 +8.338 -21.841 -0.405 0 0 0 0 0 0 0 +8.271 -21.563 -0.398 0 0 0 0 0 0 0 +8.288 -21.406 -0.394 0 0 0 0 0 0 0 +8.317 -21.283 -0.391 0 0 0 0 0 0 0 +8.332 -21.125 -0.387 0 0 0 0 0 0 0 +8.341 -20.956 -0.383 0 0 0 0 0 0 0 +8.38 -20.865 -0.382 0 0 0 0 0 0 0 +8.403 -20.733 -0.379 0 0 0 0 0 0 0 +8.391 -20.61 -0.376 0 0 0 0 0 0 0 +8.416 -20.488 -0.373 0 0 0 0 0 0 0 +8.443 -20.371 -0.37 0 0 0 0 0 0 0 +8.464 -20.243 -0.367 0 0 0 0 0 0 0 +8.48 -20.104 -0.364 0 0 0 0 0 0 0 +8.485 -19.941 -0.36 0 0 0 0 0 0 0 +8.501 -19.806 -0.357 0 0 0 0 0 0 0 +8.501 -19.719 -0.355 0 0 0 0 0 0 0 +8.534 -19.626 -0.353 0 0 0 0 0 0 0 +8.553 -19.502 -0.351 0 0 0 0 0 0 0 +8.576 -19.39 -0.348 0 0 0 0 0 0 0 +8.593 -19.266 -0.345 0 0 0 0 0 0 0 +8.603 -19.126 -0.342 0 0 0 0 0 0 0 +8.638 -19.044 -0.341 0 0 0 0 0 0 0 +8.625 -18.938 -0.338 0 0 0 0 0 0 0 +8.62 -18.769 -0.334 0 0 0 0 0 0 0 +8.639 -18.656 -0.331 0 0 0 0 0 0 0 +8.671 -18.573 -0.33 0 0 0 0 0 0 0 +8.693 -18.468 -0.328 0 0 0 0 0 0 0 +8.712 -18.359 -0.325 0 0 0 0 0 0 0 +8.728 -18.245 -0.323 0 0 0 0 0 0 0 +8.727 -18.169 -0.321 0 0 0 0 0 0 0 +8.746 -18.064 -0.319 0 0 0 0 0 0 0 +8.803 -18.036 -0.319 0 0 0 0 0 0 0 +8.81 -17.908 -0.316 0 0 0 0 0 0 0 +8.93 -18.009 -0.319 0 0 0 0 0 0 0 +8.946 -17.901 -0.317 0 0 0 0 0 0 0 +8.97 -17.808 -0.315 0 0 0 0 0 0 0 +8.946 -17.691 -0.312 0 0 0 0 0 0 0 +8.947 -17.557 -0.309 0 0 0 0 0 0 0 +8.956 -17.439 -0.306 0 0 0 0 0 0 0 +8.984 -17.359 -0.305 0 0 0 0 0 0 0 +9.013 -17.283 -0.304 0 0 0 0 0 0 0 +9.025 -17.173 -0.301 0 0 0 0 0 0 0 +9.047 -17.085 -0.299 0 0 0 0 0 0 0 +9.033 -16.994 -0.297 0 0 0 0 0 0 0 +9.049 -16.897 -0.295 0 0 0 0 0 0 0 +9.062 -16.793 -0.293 0 0 0 0 0 0 0 +9.077 -16.696 -0.291 0 0 0 0 0 0 0 +9.101 -16.615 -0.289 0 0 0 0 0 0 0 +9.12 -16.527 -0.288 0 0 0 0 0 0 0 +9.138 -16.437 -0.286 0 0 0 0 0 0 0 +9.114 -16.334 -0.283 0 0 0 0 0 0 0 +9.107 -16.202 -0.28 0 0 0 0 0 0 0 +9.139 -16.141 -0.279 0 0 0 0 0 0 0 +9.165 -16.068 -0.278 0 0 0 0 0 0 0 +9.197 -16.008 -0.277 0 0 0 0 0 0 0 +9.202 -15.902 -0.274 0 0 0 0 0 0 0 +9.224 -15.824 -0.273 0 0 0 0 0 0 0 +9.2 -15.727 -0.27 0 0 0 0 0 0 0 +9.187 -15.591 -0.267 0 0 0 0 0 0 0 +9.198 -15.499 -0.265 0 0 0 0 0 0 0 +9.235 -15.451 -0.265 0 0 0 0 0 0 0 +9.301 -15.451 -0.266 0 0 0 0 0 0 0 +9.375 -15.464 -0.267 0 0 0 0 0 0 0 +9.442 -15.464 -0.268 0 0 0 0 0 0 0 +9.479 -15.469 -0.268 0 0 0 0 0 0 0 +7.082 -11.409 -0.145 0 0 0 0 0 0 0 +7.11 -11.375 -0.145 0 0 0 0 0 0 0 +7.146 -11.352 -0.145 0 0 0 0 0 0 0 +7.175 -11.32 -0.145 0 0 0 0 0 0 0 +7.203 -11.285 -0.144 0 0 0 0 0 0 0 +7.21 -11.257 -0.144 0 0 0 0 0 0 0 +7.245 -11.234 -0.144 0 0 0 0 0 0 0 +7.272 -11.198 -0.143 0 0 0 0 0 0 0 +7.302 -11.169 -0.143 0 0 0 0 0 0 0 +7.34 -11.149 -0.143 0 0 0 0 0 0 0 +7.362 -11.108 -0.143 0 0 0 0 0 0 0 +7.393 -11.078 -0.143 0 0 0 0 0 0 0 +7.409 -11.064 -0.143 0 0 0 0 0 0 0 +7.431 -11.023 -0.142 0 0 0 0 0 0 0 +7.466 -10.999 -0.142 0 0 0 0 0 0 0 +7.498 -10.973 -0.142 0 0 0 0 0 0 0 +7.529 -10.944 -0.142 0 0 0 0 0 0 0 +7.559 -10.914 -0.141 0 0 0 0 0 0 0 +7.586 -10.88 -0.141 0 0 0 0 0 0 0 +7.593 -10.854 -0.141 0 0 0 0 0 0 0 +7.63 -10.833 -0.141 0 0 0 0 0 0 0 +7.659 -10.802 -0.141 0 0 0 0 0 0 0 +7.677 -10.756 -0.14 0 0 0 0 0 0 0 +7.765 -10.808 -0.142 0 0 0 0 0 0 0 +9.565 -13.215 -0.221 0 0 0 0 0 0 0 +9.578 -13.146 -0.219 0 0 0 0 0 0 0 +9.583 -13.11 -0.219 0 0 0 0 0 0 0 +9.587 -13.028 -0.217 0 0 0 0 0 0 0 +9.508 -12.837 -0.212 0 0 0 0 0 0 0 +9.523 -12.774 -0.211 0 0 0 0 0 0 0 +9.531 -12.701 -0.209 0 0 0 0 0 0 0 +9.564 -12.661 -0.209 0 0 0 0 0 0 0 +9.601 -12.628 -0.209 0 0 0 0 0 0 0 +9.622 -12.614 -0.209 0 0 0 0 0 0 0 +9.641 -12.557 -0.208 0 0 0 0 0 0 0 +9.656 -12.495 -0.207 0 0 0 0 0 0 0 +9.668 -12.43 -0.206 0 0 0 0 0 0 0 +9.675 -12.359 -0.205 0 0 0 0 0 0 0 +9.66 -12.261 -0.202 0 0 0 0 0 0 0 +9.659 -12.18 -0.201 0 0 0 0 0 0 0 +9.635 -12.112 -0.199 0 0 0 0 0 0 0 +9.673 -12.082 -0.199 0 0 0 0 0 0 0 +9.715 -12.056 -0.199 0 0 0 0 0 0 0 +9.725 -11.991 -0.198 0 0 0 0 0 0 0 +9.749 -11.944 -0.197 0 0 0 0 0 0 0 +9.753 -11.873 -0.196 0 0 0 0 0 0 0 +9.76 -11.805 -0.195 0 0 0 0 0 0 0 +9.77 -11.742 -0.194 0 0 0 0 0 0 0 +9.767 -11.701 -0.193 0 0 0 0 0 0 0 +9.77 -11.63 -0.191 0 0 0 0 0 0 0 +9.778 -11.566 -0.19 0 0 0 0 0 0 0 +9.696 -11.397 -0.185 0 0 0 0 0 0 0 +9.641 -11.26 -0.182 0 0 0 0 0 0 0 +9.645 -11.194 -0.181 0 0 0 0 0 0 0 +9.655 -11.135 -0.18 0 0 0 0 0 0 0 +9.646 -11.089 -0.179 0 0 0 0 0 0 0 +9.65 -11.024 -0.177 0 0 0 0 0 0 0 +9.666 -10.973 -0.177 0 0 0 0 0 0 0 +9.676 -10.914 -0.176 0 0 0 0 0 0 0 +9.683 -10.854 -0.175 0 0 0 0 0 0 0 +9.69 -10.794 -0.174 0 0 0 0 0 0 0 +9.673 -10.74 -0.172 0 0 0 0 0 0 0 +9.681 -10.682 -0.171 0 0 0 0 0 0 0 +9.689 -10.623 -0.17 0 0 0 0 0 0 0 +9.714 -10.584 -0.17 0 0 0 0 0 0 0 +9.735 -10.54 -0.169 0 0 0 0 0 0 0 +9.75 -10.49 -0.169 0 0 0 0 0 0 0 +9.754 -10.429 -0.168 0 0 0 0 0 0 0 +9.751 -10.393 -0.167 0 0 0 0 0 0 0 +9.759 -10.337 -0.166 0 0 0 0 0 0 0 +9.77 -10.283 -0.165 0 0 0 0 0 0 0 +9.773 -10.222 -0.164 0 0 0 0 0 0 0 +9.79 -10.175 -0.163 0 0 0 0 0 0 0 +9.801 -10.123 -0.163 0 0 0 0 0 0 0 +9.809 -10.068 -0.162 0 0 0 0 0 0 0 +9.806 -10.034 -0.161 0 0 0 0 0 0 0 +9.801 -9.966 -0.16 0 0 0 0 0 0 0 +9.808 -9.911 -0.159 0 0 0 0 0 0 0 +9.821 -9.862 -0.158 0 0 0 0 0 0 0 +9.839 -9.818 -0.158 0 0 0 0 0 0 0 +9.833 -9.75 -0.156 0 0 0 0 0 0 0 +9.851 -9.707 -0.156 0 0 0 0 0 0 0 +9.857 -9.652 -0.155 0 0 0 0 0 0 0 +9.849 -9.614 -0.154 0 0 0 0 0 0 0 +9.861 -9.565 -0.154 0 0 0 0 0 0 0 +9.86 -9.505 -0.152 0 0 0 0 0 0 0 +9.883 -9.467 -0.152 0 0 0 0 0 0 0 +9.885 -9.41 -0.151 0 0 0 0 0 0 0 +9.897 -9.363 -0.151 0 0 0 0 0 0 0 +9.896 -9.303 -0.149 0 0 0 0 0 0 0 +9.9 -9.278 -0.149 0 0 0 0 0 0 0 +9.891 -9.211 -0.148 0 0 0 0 0 0 0 +9.891 -9.153 -0.147 0 0 0 0 0 0 0 +9.9 -9.104 -0.146 0 0 0 0 0 0 0 +9.899 -9.046 -0.145 0 0 0 0 0 0 0 +9.902 -8.992 -0.144 0 0 0 0 0 0 0 +9.925 -8.956 -0.144 0 0 0 0 0 0 0 +9.921 -8.924 -0.143 0 0 0 0 0 0 0 +9.941 -8.886 -0.143 0 0 0 0 0 0 0 +9.939 -8.828 -0.142 0 0 0 0 0 0 0 +9.946 -8.779 -0.141 0 0 0 0 0 0 0 +9.952 -8.729 -0.14 0 0 0 0 0 0 0 +9.957 -8.678 -0.14 0 0 0 0 0 0 0 +9.96 -8.653 -0.139 0 0 0 0 0 0 0 +9.957 -8.596 -0.138 0 0 0 0 0 0 0 +9.984 -8.564 -0.138 0 0 0 0 0 0 0 +9.976 -8.503 -0.137 0 0 0 0 0 0 0 +9.993 -8.464 -0.137 0 0 0 0 0 0 0 +10.006 -8.421 -0.136 0 0 0 0 0 0 0 +10.026 -8.385 -0.136 0 0 0 0 0 0 0 +10.054 -8.354 -0.136 0 0 0 0 0 0 0 +10.061 -8.333 -0.136 0 0 0 0 0 0 0 +10.082 -8.298 -0.136 0 0 0 0 0 0 0 +10.107 -8.265 -0.136 0 0 0 0 0 0 0 +10.119 -8.222 -0.135 0 0 0 0 0 0 0 +10.137 -8.184 -0.135 0 0 0 0 0 0 0 +10.17 -8.158 -0.135 0 0 0 0 0 0 0 +10.182 -8.115 -0.135 0 0 0 0 0 0 0 +10.191 -8.096 -0.135 0 0 0 0 0 0 0 +10.218 -8.066 -0.135 0 0 0 0 0 0 0 +10.272 -8.056 -0.136 0 0 0 0 0 0 0 +10.286 -8.015 -0.135 0 0 0 0 0 0 0 +10.318 -7.987 -0.136 0 0 0 0 0 0 0 +10.34 -7.952 -0.135 0 0 0 0 0 0 0 +10.355 -7.913 -0.135 0 0 0 0 0 0 0 +10.367 -7.896 -0.135 0 0 0 0 0 0 0 +10.395 -7.866 -0.135 0 0 0 0 0 0 0 +10.41 -7.826 -0.135 0 0 0 0 0 0 0 +10.441 -7.798 -0.135 0 0 0 0 0 0 0 +10.459 -7.761 -0.135 0 0 0 0 0 0 0 +10.477 -7.723 -0.135 0 0 0 0 0 0 0 +10.495 -7.685 -0.134 0 0 0 0 0 0 0 +10.518 -7.677 -0.135 0 0 0 0 0 0 0 +10.528 -7.634 -0.134 0 0 0 0 0 0 0 +10.558 -7.605 -0.135 0 0 0 0 0 0 0 +10.584 -7.573 -0.135 0 0 0 0 0 0 0 +10.594 -7.531 -0.134 0 0 0 0 0 0 0 +10.623 -7.501 -0.134 0 0 0 0 0 0 0 +10.636 -7.485 -0.134 0 0 0 0 0 0 0 +10.647 -7.443 -0.134 0 0 0 0 0 0 0 +10.686 -7.42 -0.135 0 0 0 0 0 0 0 +10.718 -7.392 -0.135 0 0 0 0 0 0 0 +10.72 -7.344 -0.134 0 0 0 0 0 0 0 +10.748 -7.314 -0.134 0 0 0 0 0 0 0 +10.764 -7.275 -0.134 0 0 0 0 0 0 0 +10.783 -7.239 -0.134 0 0 0 0 0 0 0 +10.808 -7.231 -0.134 0 0 0 0 0 0 0 +10.821 -7.191 -0.134 0 0 0 0 0 0 0 +10.837 -7.152 -0.134 0 0 0 0 0 0 0 +10.841 -7.106 -0.133 0 0 0 0 0 0 0 +10.863 -7.072 -0.133 0 0 0 0 0 0 0 +10.88 -7.035 -0.133 0 0 0 0 0 0 0 +10.905 -7.003 -0.133 0 0 0 0 0 0 0 +10.911 -6.982 -0.133 0 0 0 0 0 0 0 +10.947 -6.957 -0.133 0 0 0 0 0 0 0 +10.974 -6.925 -0.134 0 0 0 0 0 0 0 +11 -6.894 -0.134 0 0 0 0 0 0 0 +11.024 -6.86 -0.134 0 0 0 0 0 0 0 +11.038 -6.822 -0.134 0 0 0 0 0 0 0 +11.075 -6.796 -0.134 0 0 0 0 0 0 0 +11.077 -6.774 -0.134 0 0 0 0 0 0 0 +11.116 -6.749 -0.134 0 0 0 0 0 0 0 +11.164 -6.731 -0.135 0 0 0 0 0 0 0 +11.216 -6.714 -0.136 0 0 0 0 0 0 0 +11.275 -6.701 -0.137 0 0 0 0 0 0 0 +11.318 -6.679 -0.138 0 0 0 0 0 0 0 +11.364 -6.657 -0.139 0 0 0 0 0 0 0 +11.403 -6.657 -0.14 0 0 0 0 0 0 0 +11.462 -6.643 -0.141 0 0 0 0 0 0 0 +11.509 -6.621 -0.142 0 0 0 0 0 0 0 +11.565 -6.605 -0.143 0 0 0 0 0 0 0 +11.615 -6.585 -0.143 0 0 0 0 0 0 0 +11.65 -6.557 -0.144 0 0 0 0 0 0 0 +11.696 -6.535 -0.145 0 0 0 0 0 0 0 +11.738 -6.534 -0.146 0 0 0 0 0 0 0 +11.818 -6.53 -0.147 0 0 0 0 0 0 0 +11.889 -6.52 -0.149 0 0 0 0 0 0 0 +11.956 -6.508 -0.15 0 0 0 0 0 0 0 +11.997 -6.481 -0.151 0 0 0 0 0 0 0 +12.056 -6.464 -0.152 0 0 0 0 0 0 0 +12.11 -6.444 -0.153 0 0 0 0 0 0 0 +12.159 -6.446 -0.154 0 0 0 0 0 0 0 +12.206 -6.421 -0.155 0 0 0 0 0 0 0 +12.283 -6.413 -0.157 0 0 0 0 0 0 0 +12.306 -6.376 -0.157 0 0 0 0 0 0 0 +8.822 -4.509 -0.054 0 0 0 0 0 0 0 +8.852 -4.489 -0.054 0 0 0 0 0 0 0 +12.547 -6.326 -0.162 0 0 0 0 0 0 0 +12.599 -6.303 -0.163 0 0 0 0 0 0 0 +12.666 -6.286 -0.164 0 0 0 0 0 0 0 +12.719 -6.263 -0.165 0 0 0 0 0 0 0 +12.771 -6.239 -0.166 0 0 0 0 0 0 0 +12.834 -6.219 -0.167 0 0 0 0 0 0 0 +12.909 -6.206 -0.169 0 0 0 0 0 0 0 +12.948 -6.199 -0.17 0 0 0 0 0 0 0 +13.005 -6.177 -0.171 0 0 0 0 0 0 0 +13.072 -6.158 -0.172 0 0 0 0 0 0 0 +13.135 -6.137 -0.173 0 0 0 0 0 0 0 +13.163 -6.1 -0.174 0 0 0 0 0 0 0 +13.217 -6.074 -0.175 0 0 0 0 0 0 0 +13.283 -6.054 -0.176 0 0 0 0 0 0 0 +13.345 -6.057 -0.177 0 0 0 0 0 0 0 +13.423 -6.041 -0.179 0 0 0 0 0 0 0 +13.496 -6.023 -0.181 0 0 0 0 0 0 0 +13.555 -5.999 -0.182 0 0 0 0 0 0 0 +13.618 -5.975 -0.183 0 0 0 0 0 0 0 +13.683 -5.952 -0.184 0 0 0 0 0 0 0 +13.753 -5.931 -0.186 0 0 0 0 0 0 0 +13.81 -5.93 -0.187 0 0 0 0 0 0 0 +13.882 -5.909 -0.189 0 0 0 0 0 0 0 +14.181 -5.931 -0.196 0 0 0 0 0 0 0 +14.229 -5.899 -0.197 0 0 0 0 0 0 0 +14.273 -5.865 -0.198 0 0 0 0 0 0 0 +14.325 -5.833 -0.199 0 0 0 0 0 0 0 +14.368 -5.824 -0.2 0 0 0 0 0 0 0 +14.414 -5.79 -0.2 0 0 0 0 0 0 0 +14.467 -5.759 -0.201 0 0 0 0 0 0 0 +14.5 -5.719 -0.202 0 0 0 0 0 0 0 +14.559 -5.69 -0.203 0 0 0 0 0 0 0 +14.595 -5.651 -0.203 0 0 0 0 0 0 0 +14.658 -5.622 -0.205 0 0 0 0 0 0 0 +14.669 -5.6 -0.205 0 0 0 0 0 0 0 +14.686 -5.554 -0.205 0 0 0 0 0 0 0 +14.733 -5.519 -0.206 0 0 0 0 0 0 0 +14.788 -5.486 -0.207 0 0 0 0 0 0 0 +14.835 -5.451 -0.207 0 0 0 0 0 0 0 +14.935 -5.434 -0.21 0 0 0 0 0 0 0 +15.007 -5.407 -0.211 0 0 0 0 0 0 0 +15.047 -5.395 -0.212 0 0 0 0 0 0 0 +15.104 -5.361 -0.213 0 0 0 0 0 0 0 +15.156 -5.327 -0.214 0 0 0 0 0 0 0 +15.213 -5.293 -0.215 0 0 0 0 0 0 0 +15.246 -5.251 -0.216 0 0 0 0 0 0 0 +15.259 -5.201 -0.216 0 0 0 0 0 0 0 +15.3 -5.162 -0.216 0 0 0 0 0 0 0 +15.351 -5.152 -0.218 0 0 0 0 0 0 0 +15.406 -5.117 -0.219 0 0 0 0 0 0 0 +15.46 -5.081 -0.22 0 0 0 0 0 0 0 +15.567 -5.061 -0.222 0 0 0 0 0 0 0 +15.621 -5.025 -0.223 0 0 0 0 0 0 0 +15.676 -4.988 -0.224 0 0 0 0 0 0 0 +15.728 -4.95 -0.225 0 0 0 0 0 0 0 +15.78 -4.939 -0.226 0 0 0 0 0 0 0 +15.843 -4.904 -0.228 0 0 0 0 0 0 0 +15.872 -4.859 -0.228 0 0 0 0 0 0 0 +15.548 -4.707 -0.219 0 0 0 0 0 0 0 +15.509 -4.642 -0.217 0 0 0 0 0 0 0 +15.518 -4.592 -0.217 0 0 0 0 0 0 0 +15.575 -4.555 -0.218 0 0 0 0 0 0 0 +15.611 -4.539 -0.219 0 0 0 0 0 0 0 +15.561 -4.472 -0.217 0 0 0 0 0 0 0 +15.61 -4.433 -0.218 0 0 0 0 0 0 0 +15.633 -4.386 -0.219 0 0 0 0 0 0 0 +15.734 -4.361 -0.221 0 0 0 0 0 0 0 +15.778 -4.32 -0.222 0 0 0 0 0 0 0 +15.834 -4.282 -0.223 0 0 0 0 0 0 0 +15.882 -4.268 -0.224 0 0 0 0 0 0 0 +15.924 -4.225 -0.225 0 0 0 0 0 0 0 +16.018 -4.197 -0.227 0 0 0 0 0 0 0 +16.045 -4.15 -0.227 0 0 0 0 0 0 0 +16.116 -4.114 -0.229 0 0 0 0 0 0 0 +16.154 -4.07 -0.23 0 0 0 0 0 0 0 +16.229 -4.034 -0.231 0 0 0 0 0 0 0 +16.292 -4.023 -0.233 0 0 0 0 0 0 0 +16.333 -3.978 -0.234 0 0 0 0 0 0 0 +16.406 -3.941 -0.235 0 0 0 0 0 0 0 +16.438 -3.894 -0.236 0 0 0 0 0 0 0 +16.514 -3.858 -0.238 0 0 0 0 0 0 0 +16.594 -3.821 -0.239 0 0 0 0 0 0 0 +16.634 -3.775 -0.24 0 0 0 0 0 0 0 +16.682 -3.759 -0.241 0 0 0 0 0 0 0 +16.766 -3.722 -0.243 0 0 0 0 0 0 0 +16.798 -3.674 -0.244 0 0 0 0 0 0 0 +16.881 -3.637 -0.246 0 0 0 0 0 0 0 +16.951 -3.596 -0.247 0 0 0 0 0 0 0 +17.029 -3.556 -0.249 0 0 0 0 0 0 0 +17.081 -3.511 -0.25 0 0 0 0 0 0 0 +17.145 -3.468 -0.251 0 0 0 0 0 0 0 +17.204 -3.452 -0.253 0 0 0 0 0 0 0 +17.318 -3.418 -0.256 0 0 0 0 0 0 0 +17.323 -3.363 -0.255 0 0 0 0 0 0 0 +17.379 -3.317 -0.257 0 0 0 0 0 0 0 +17.458 -3.275 -0.258 0 0 0 0 0 0 0 +17.508 -3.227 -0.26 0 0 0 0 0 0 0 +13.666 -2.481 -0.157 0 0 0 0 0 0 0 +13.629 -2.452 -0.156 0 0 0 0 0 0 0 +13.619 -2.406 -0.156 0 0 0 0 0 0 0 +13.621 -2.362 -0.156 0 0 0 0 0 0 0 +13.612 -2.317 -0.155 0 0 0 0 0 0 0 +13.635 -2.276 -0.156 0 0 0 0 0 0 0 +13.607 -2.228 -0.155 0 0 0 0 0 0 0 +13.626 -2.209 -0.155 0 0 0 0 0 0 0 +13.653 -2.169 -0.156 0 0 0 0 0 0 0 +13.687 -2.131 -0.156 0 0 0 0 0 0 0 +13.707 -2.09 -0.157 0 0 0 0 0 0 0 +13.74 -2.05 -0.158 0 0 0 0 0 0 0 +13.799 -2.015 -0.159 0 0 0 0 0 0 0 +13.867 -1.98 -0.161 0 0 0 0 0 0 0 +19.344 -2.69 -0.305 0 0 0 0 0 0 0 +19.399 -2.667 -0.306 0 0 0 0 0 0 0 +19.481 -2.615 -0.308 0 0 0 0 0 0 0 +19.549 -2.562 -0.309 0 0 0 0 0 0 0 +19.515 -2.495 -0.308 0 0 0 0 0 0 0 +19.481 -2.429 -0.307 0 0 0 0 0 0 0 +19.584 -2.379 -0.31 0 0 0 0 0 0 0 +19.603 -2.319 -0.31 0 0 0 0 0 0 0 +19.664 -2.295 -0.312 0 0 0 0 0 0 0 +19.701 -2.236 -0.312 0 0 0 0 0 0 0 +19.756 -2.18 -0.314 0 0 0 0 0 0 0 +19.812 -2.123 -0.315 0 0 0 0 0 0 0 +19.859 -2.065 -0.316 0 0 0 0 0 0 0 +19.907 -2.006 -0.317 0 0 0 0 0 0 0 +19.959 -1.948 -0.318 0 0 0 0 0 0 0 +20.008 -1.921 -0.319 0 0 0 0 0 0 0 +20.028 -1.86 -0.32 0 0 0 0 0 0 0 +20.083 -1.801 -0.321 0 0 0 0 0 0 0 +20.154 -1.744 -0.323 0 0 0 0 0 0 0 +21.076 -1.755 -0.347 0 0 0 0 0 0 0 +21.094 -1.69 -0.347 0 0 0 0 0 0 0 +21.053 -1.62 -0.346 0 0 0 0 0 0 0 +20.912 -1.577 -0.342 0 0 0 0 0 0 0 +21.278 -1.537 -0.352 0 0 0 0 0 0 0 +21.36 -1.475 -0.354 0 0 0 0 0 0 0 +21.397 -1.41 -0.354 0 0 0 0 0 0 0 +21.439 -1.345 -0.355 0 0 0 0 0 0 0 +21.493 -1.281 -0.357 0 0 0 0 0 0 0 +21.403 -1.208 -0.354 0 0 0 0 0 0 0 +21.591 -1.184 -0.359 0 0 0 0 0 0 0 +21.908 -1.132 -0.367 0 0 0 0 0 0 0 +21.602 -1.049 -0.359 0 0 0 0 0 0 0 +21.269 -0.966 -0.35 0 0 0 0 0 0 0 +21.272 -0.899 -0.35 0 0 0 0 0 0 0 +21.273 -0.832 -0.35 0 0 0 0 0 0 0 +21.204 -0.763 -0.349 0 0 0 0 0 0 0 +21.141 -0.728 -0.347 0 0 0 0 0 0 0 +21.157 -0.662 -0.347 0 0 0 0 0 0 0 +21.221 -0.597 -0.349 0 0 0 0 0 0 0 +21.287 -0.532 -0.351 0 0 0 0 0 0 0 +21.34 -0.466 -0.352 0 0 0 0 0 0 0 +21.4 -0.4 -0.353 0 0 0 0 0 0 0 +21.465 -0.333 -0.355 0 0 0 0 0 0 0 +21.513 -0.3 -0.356 0 0 0 0 0 0 0 +21.568 -0.233 -0.358 0 0 0 0 0 0 0 +21.637 -0.166 -0.36 0 0 0 0 0 0 0 +21.755 -0.098 -0.363 0 0 0 0 0 0 0 +23.317 -0.03 -0.403 0 0 0 0 0 0 0 +36.06 0.078 -0.95 0 0 0 0 0 0 0 +36.28 0.192 -0.957 0 0 0 0 0 0 0 +35.191 0.353 -0.922 0 0 0 0 0 0 0 +35.014 0.461 -0.916 0 0 0 0 0 0 0 +34.826 0.568 -0.91 0 0 0 0 0 0 0 +34.664 0.675 -0.905 0 0 0 0 0 0 0 +34.5 0.78 -0.9 0 0 0 0 0 0 0 +34.332 0.884 -0.895 0 0 0 0 0 0 0 +34.161 0.987 -0.889 0 0 0 0 0 0 0 +33.999 1.036 -0.884 0 0 0 0 0 0 0 +33.844 1.138 -0.879 0 0 0 0 0 0 0 +33.673 1.238 -0.874 0 0 0 0 0 0 0 +33.561 1.34 -0.871 0 0 0 0 0 0 0 +33.678 1.451 -0.875 0 0 0 0 0 0 0 +33.36 1.542 -0.865 0 0 0 0 0 0 0 +33.339 1.646 -0.864 0 0 0 0 0 0 0 +33.037 1.684 -0.854 0 0 0 0 0 0 0 +32.882 1.779 -0.85 0 0 0 0 0 0 0 +25.529 1.468 -0.614 0 0 0 0 0 0 0 +25.531 1.548 -0.614 0 0 0 0 0 0 0 +32.81 2.086 -0.848 0 0 0 0 0 0 0 +32.821 2.19 -0.848 0 0 0 0 0 0 0 +32.846 2.295 -0.849 0 0 0 0 0 0 0 +32.88 2.35 -0.851 0 0 0 0 0 0 0 +32.938 2.458 -0.853 0 0 0 0 0 0 0 +32.984 2.565 -0.855 0 0 0 0 0 0 0 +33.022 2.673 -0.856 0 0 0 0 0 0 0 +18.733 1.705 -0.398 0 0 0 0 0 0 0 +18.705 1.732 -0.397 0 0 0 0 0 0 0 +18.679 1.789 -0.396 0 0 0 0 0 0 0 +18.972 1.877 -0.406 0 0 0 0 0 0 0 +56.242 5.692 -1.605 0 0 0 0 0 0 0 +45.422 4.746 -1.257 0 0 0 0 0 0 0 +42.779 4.607 -1.173 0 0 0 0 0 0 0 +56.395 6.244 -1.612 0 0 0 0 0 0 0 +56.389 6.333 -1.612 0 0 0 0 0 0 0 +56.192 6.49 -1.606 0 0 0 0 0 0 0 +56.527 6.709 -1.618 0 0 0 0 0 0 0 +25.249 3.253 -0.61 0 0 0 0 0 0 0 +25.348 3.346 -0.614 0 0 0 0 0 0 0 +56.555 7.524 -1.622 0 0 0 0 0 0 0 +56.519 7.7 -1.621 0 0 0 0 0 0 0 +46.854 6.538 -1.31 0 0 0 0 0 0 0 +46.77 6.676 -1.308 0 0 0 0 0 0 0 +43.889 6.407 -1.215 0 0 0 0 0 0 0 +21.146 3.168 -0.48 0 0 0 0 0 0 0 +20.883 3.196 -0.472 0 0 0 0 0 0 0 +42.974 6.758 -1.188 0 0 0 0 0 0 0 +43.02 6.903 -1.19 0 0 0 0 0 0 0 +42.83 7.011 -1.185 0 0 0 0 0 0 0 +42.692 7.126 -1.181 0 0 0 0 0 0 0 +24.792 4.229 -0.601 0 0 0 0 0 0 0 +42.068 7.431 -1.163 0 0 0 0 0 0 0 +41.94 7.476 -1.159 0 0 0 0 0 0 0 +40.753 7.397 -1.121 0 0 0 0 0 0 0 +40.797 7.538 -1.124 0 0 0 0 0 0 0 +40.449 7.605 -1.113 0 0 0 0 0 0 0 +40.533 7.753 -1.116 0 0 0 0 0 0 0 +40.567 7.891 -1.118 0 0 0 0 0 0 0 +18.678 3.709 -0.405 0 0 0 0 0 0 0 +40.355 8.048 -1.113 0 0 0 0 0 0 0 +40.339 8.177 -1.113 0 0 0 0 0 0 0 +37.192 7.662 -1.011 0 0 0 0 0 0 0 +37.109 7.767 -1.009 0 0 0 0 0 0 0 +37.092 7.885 -1.009 0 0 0 0 0 0 0 +41.263 8.904 -1.147 0 0 0 0 0 0 0 +41.264 9.04 -1.148 0 0 0 0 0 0 0 +38.886 8.585 -1.07 0 0 0 0 0 0 0 +38.835 8.702 -1.069 0 0 0 0 0 0 0 +35.579 8.092 -0.963 0 0 0 0 0 0 0 +35.773 8.373 -0.972 0 0 0 0 0 0 0 +38.579 9.155 -1.065 0 0 0 0 0 0 0 +38.612 9.291 -1.067 0 0 0 0 0 0 0 +38.568 9.345 -1.066 0 0 0 0 0 0 0 +38.583 9.477 -1.067 0 0 0 0 0 0 0 +39.155 9.747 -1.087 0 0 0 0 0 0 0 +39.318 9.919 -1.094 0 0 0 0 0 0 0 +41.417 10.586 -1.164 0 0 0 0 0 0 0 +41.374 10.713 -1.164 0 0 0 0 0 0 0 +39.948 10.479 -1.117 0 0 0 0 0 0 0 +39.846 10.519 -1.115 0 0 0 0 0 0 0 +39.838 10.651 -1.116 0 0 0 0 0 0 0 +39.897 10.801 -1.119 0 0 0 0 0 0 0 +39.979 10.958 -1.122 0 0 0 0 0 0 0 +16.149 4.552 -0.333 0 0 0 0 0 0 0 +16.217 4.626 -0.335 0 0 0 0 0 0 0 +15.874 4.963 -0.328 0 0 0 0 0 0 0 +15.87 5.017 -0.328 0 0 0 0 0 0 0 +15.868 5.071 -0.329 0 0 0 0 0 0 0 +15.846 5.119 -0.329 0 0 0 0 0 0 0 +15.856 5.177 -0.33 0 0 0 0 0 0 0 +15.836 5.226 -0.329 0 0 0 0 0 0 0 +15.731 5.218 -0.326 0 0 0 0 0 0 0 +15.777 5.289 -0.328 0 0 0 0 0 0 0 +15.732 5.329 -0.327 0 0 0 0 0 0 0 +15.747 5.389 -0.328 0 0 0 0 0 0 0 +15.759 5.448 -0.329 0 0 0 0 0 0 0 +15.772 5.508 -0.33 0 0 0 0 0 0 0 +15.777 5.566 -0.331 0 0 0 0 0 0 0 +15.778 5.594 -0.331 0 0 0 0 0 0 0 +15.785 5.652 -0.332 0 0 0 0 0 0 0 +15.859 5.735 -0.335 0 0 0 0 0 0 0 +15.893 5.804 -0.337 0 0 0 0 0 0 0 +15.95 5.881 -0.34 0 0 0 0 0 0 0 +15.475 5.845 -0.325 0 0 0 0 0 0 0 +15.526 5.92 -0.327 0 0 0 0 0 0 0 +15.653 6.024 -0.332 0 0 0 0 0 0 0 +15.794 6.136 -0.338 0 0 0 0 0 0 0 +16.467 6.456 -0.362 0 0 0 0 0 0 0 +16.994 6.723 -0.381 0 0 0 0 0 0 0 +18.022 7.193 -0.417 0 0 0 0 0 0 0 +18.464 7.403 -0.432 0 0 0 0 0 0 0 +34.508 14.189 -0.99 0 0 0 0 0 0 0 +29.536 12.366 -0.82 0 0 0 0 0 0 0 +29.392 12.415 -0.817 0 0 0 0 0 0 0 +50.831 21.544 -1.563 0 0 0 0 0 0 0 +50.776 21.709 -1.563 0 0 0 0 0 0 0 +34.988 15.36 -1.019 0 0 0 0 0 0 0 +34.25 15.293 -0.996 0 0 0 0 0 0 0 +33.903 15.459 -0.988 0 0 0 0 0 0 0 +33.873 15.574 -0.989 0 0 0 0 0 0 0 +40.745 18.883 -1.233 0 0 0 0 0 0 0 +40.587 18.965 -1.23 0 0 0 0 0 0 0 +40.448 19.055 -1.227 0 0 0 0 0 0 0 +28.525 13.612 -0.807 0 0 0 0 0 0 0 +28.497 13.708 -0.808 0 0 0 0 0 0 0 +40.153 19.459 -1.224 0 0 0 0 0 0 0 +40 19.54 -1.221 0 0 0 0 0 0 0 +39.874 19.634 -1.218 0 0 0 0 0 0 0 +39.719 19.713 -1.215 0 0 0 0 0 0 0 +39.625 19.744 -1.213 0 0 0 0 0 0 0 +39.233 19.703 -1.201 0 0 0 0 0 0 0 +29.048 14.71 -0.838 0 0 0 0 0 0 0 +38.941 19.864 -1.195 0 0 0 0 0 0 0 +38.768 19.929 -1.191 0 0 0 0 0 0 0 +38.641 20.018 -1.189 0 0 0 0 0 0 0 +38.511 20.104 -1.186 0 0 0 0 0 0 0 +38.399 20.123 -1.183 0 0 0 0 0 0 0 +27.834 14.818 -0.805 0 0 0 0 0 0 0 +27.652 14.833 -0.8 0 0 0 0 0 0 0 +37.521 20.268 -1.161 0 0 0 0 0 0 0 +37.09 20.186 -1.147 0 0 0 0 0 0 0 +36.866 20.215 -1.141 0 0 0 0 0 0 0 +36.647 20.245 -1.136 0 0 0 0 0 0 0 +36.449 20.211 -1.13 0 0 0 0 0 0 0 +36.336 20.298 -1.128 0 0 0 0 0 0 0 +36.236 20.391 -1.126 0 0 0 0 0 0 0 +36.916 20.926 -1.154 0 0 0 0 0 0 0 +36.776 21 -1.151 0 0 0 0 0 0 0 +36.659 21.086 -1.149 0 0 0 0 0 0 0 +36.522 21.16 -1.147 0 0 0 0 0 0 0 +36.418 21.176 -1.144 0 0 0 0 0 0 0 +36.292 21.256 -1.142 0 0 0 0 0 0 0 +27.547 16.375 -0.821 0 0 0 0 0 0 0 +27.624 16.538 -0.826 0 0 0 0 0 0 0 +35.784 21.568 -1.133 0 0 0 0 0 0 0 +35.706 21.597 -1.131 0 0 0 0 0 0 0 +35.571 21.668 -1.129 0 0 0 0 0 0 0 +35.43 21.735 -1.126 0 0 0 0 0 0 0 +35.302 21.81 -1.124 0 0 0 0 0 0 0 +35.235 21.921 -1.124 0 0 0 0 0 0 0 +35.281 22.104 -1.128 0 0 0 0 0 0 0 +35.198 22.206 -1.128 0 0 0 0 0 0 0 +29.717 18.819 -0.921 0 0 0 0 0 0 0 +29.619 18.887 -0.92 0 0 0 0 0 0 0 +29.56 18.98 -0.92 0 0 0 0 0 0 0 +34.733 22.451 -1.119 0 0 0 0 0 0 0 +27.512 17.913 -0.846 0 0 0 0 0 0 0 +13.25 8.702 -0.303 0 0 0 0 0 0 0 +34.024 22.451 -1.1 0 0 0 0 0 0 0 +33.972 22.493 -1.1 0 0 0 0 0 0 0 +33.777 22.517 -1.095 0 0 0 0 0 0 0 +33.558 22.524 -1.089 0 0 0 0 0 0 0 +28.703 19.664 -0.909 0 0 0 0 0 0 0 +28.433 19.612 -0.901 0 0 0 0 0 0 0 +33.219 23.139 -1.091 0 0 0 0 0 0 0 +29.549 20.863 -0.953 0 0 0 0 0 0 0 +33.173 23.574 -1.098 0 0 0 0 0 0 0 +33.281 23.808 -1.105 0 0 0 0 0 0 0 +28.842 20.843 -0.935 0 0 0 0 0 0 0 +28.939 21.052 -0.941 0 0 0 0 0 0 0 +33.311 24.387 -1.117 0 0 0 0 0 0 0 +28.695 21.29 -0.939 0 0 0 0 0 0 0 +28.793 21.503 -0.946 0 0 0 0 0 0 0 +33.288 25.018 -1.128 0 0 0 0 0 0 0 +33.282 25.178 -1.131 0 0 0 0 0 0 0 +33.31 25.281 -1.134 0 0 0 0 0 0 0 +33.278 25.422 -1.136 0 0 0 0 0 0 0 +17.282 13.304 -0.494 0 0 0 0 0 0 0 +17.331 13.429 -0.497 0 0 0 0 0 0 0 +17.25 13.453 -0.496 0 0 0 0 0 0 0 +33.303 26.111 -1.15 0 0 0 0 0 0 0 +33.276 26.259 -1.152 0 0 0 0 0 0 0 +33.301 26.363 -1.155 0 0 0 0 0 0 0 +33.288 26.523 -1.158 0 0 0 0 0 0 0 +33.281 26.689 -1.161 0 0 0 0 0 0 0 +33.27 26.852 -1.164 0 0 0 0 0 0 0 +12.19 9.923 -0.299 0 0 0 0 0 0 0 +6.715 5.516 -0.074 0 0 0 0 0 0 0 +6.703 5.524 -0.074 0 0 0 0 0 0 0 +6.644 5.511 -0.072 0 0 0 0 0 0 0 +6.677 5.574 -0.074 0 0 0 0 0 0 0 +11.814 9.899 -0.289 0 0 0 0 0 0 0 +11.786 9.938 -0.289 0 0 0 0 0 0 0 +11.771 9.989 -0.29 0 0 0 0 0 0 0 +11.766 10.048 -0.291 0 0 0 0 0 0 0 +11.796 10.106 -0.293 0 0 0 0 0 0 0 +12.012 10.356 -0.303 0 0 0 0 0 0 0 +33.231 28.772 -1.203 0 0 0 0 0 0 0 +33.209 28.935 -1.205 0 0 0 0 0 0 0 +33.19 29.287 -1.212 0 0 0 0 0 0 0 +33.172 29.458 -1.216 0 0 0 0 0 0 0 +33.198 29.574 -1.219 0 0 0 0 0 0 0 +33.176 29.742 -1.222 0 0 0 0 0 0 0 +33.17 29.925 -1.225 0 0 0 0 0 0 0 +33.145 30.092 -1.229 0 0 0 0 0 0 0 +33.157 30.293 -1.233 0 0 0 0 0 0 0 +33.1 30.432 -1.235 0 0 0 0 0 0 0 +16.351 15.242 -0.511 0 0 0 0 0 0 0 +16.272 15.215 -0.509 0 0 0 0 0 0 0 +16.17 15.216 -0.506 0 0 0 0 0 0 0 +16.109 15.254 -0.506 0 0 0 0 0 0 0 +16.058 15.302 -0.506 0 0 0 0 0 0 0 +16.008 15.351 -0.506 0 0 0 0 0 0 0 +15.963 15.404 -0.506 0 0 0 0 0 0 0 +15.943 15.482 -0.507 0 0 0 0 0 0 0 +16.151 15.733 -0.517 0 0 0 0 0 0 0 +32.785 32.1 -1.264 0 0 0 0 0 0 0 +32.767 32.284 -1.268 0 0 0 0 0 0 0 +32.874 32.593 -1.277 0 0 0 0 0 0 0 +32.854 32.778 -1.281 0 0 0 0 0 0 0 +32.856 32.988 -1.286 0 0 0 0 0 0 0 +32.776 33.115 -1.287 0 0 0 0 0 0 0 +32.719 33.16 -1.287 0 0 0 0 0 0 0 +32.578 33.226 -1.285 0 0 0 0 0 0 0 +32.513 33.368 -1.287 0 0 0 0 0 0 0 +32.484 33.549 -1.29 0 0 0 0 0 0 0 +32.463 33.739 -1.294 0 0 0 0 0 0 0 +32.415 33.901 -1.297 0 0 0 0 0 0 0 +32.358 34.055 -1.299 0 0 0 0 0 0 0 +32.381 34.187 -1.303 0 0 0 0 0 0 0 +32.336 34.354 -1.306 0 0 0 0 0 0 0 +32.297 34.53 -1.309 0 0 0 0 0 0 0 +32.244 34.691 -1.312 0 0 0 0 0 0 0 +32.336 35.01 -1.321 0 0 0 0 0 0 0 +32.276 35.166 -1.323 0 0 0 0 0 0 0 +32.2 35.305 -1.325 0 0 0 0 0 0 0 +32.192 35.407 -1.327 0 0 0 0 0 0 0 +28.059 31.062 -1.135 0 0 0 0 0 0 0 +32.076 35.728 -1.332 0 0 0 0 0 0 0 +32.014 35.885 -1.335 0 0 0 0 0 0 0 +32.086 36.193 -1.344 0 0 0 0 0 0 0 +32.036 36.368 -1.347 0 0 0 0 0 0 0 +31.952 36.503 -1.348 0 0 0 0 0 0 0 +29.569 33.89 -1.235 0 0 0 0 0 0 0 +31.839 36.721 -1.351 0 0 0 0 0 0 0 +31.669 36.757 -1.349 0 0 0 0 0 0 0 +31.597 36.908 -1.351 0 0 0 0 0 0 0 +31.541 37.077 -1.354 0 0 0 0 0 0 0 +31.471 37.231 -1.356 0 0 0 0 0 0 0 +31.418 37.406 -1.359 0 0 0 0 0 0 0 +21.081 25.193 -0.847 0 0 0 0 0 0 0 +20.987 25.241 -0.846 0 0 0 0 0 0 0 +20.918 25.319 -0.847 0 0 0 0 0 0 0 +20.814 25.355 -0.846 0 0 0 0 0 0 0 +20.723 25.406 -0.845 0 0 0 0 0 0 0 +19.107 23.579 -0.767 0 0 0 0 0 0 0 +19.018 23.621 -0.766 0 0 0 0 0 0 0 +18.994 23.668 -0.767 0 0 0 0 0 0 0 +18.914 23.719 -0.767 0 0 0 0 0 0 0 +30.786 38.832 -1.382 0 0 0 0 0 0 0 +30.705 38.98 -1.384 0 0 0 0 0 0 0 +30.766 39.311 -1.393 0 0 0 0 0 0 0 +30.738 39.53 -1.398 0 0 0 0 0 0 0 +30.667 39.695 -1.401 0 0 0 0 0 0 0 +30.637 39.786 -1.403 0 0 0 0 0 0 0 +23.344 30.923 -1.036 0 0 0 0 0 0 0 +23.242 30.99 -1.035 0 0 0 0 0 0 0 +23.024 30.901 -1.029 0 0 0 0 0 0 0 +22.897 30.933 -1.027 0 0 0 0 0 0 0 +22.825 30.938 -1.026 0 0 0 0 0 0 0 +22.502 30.702 -1.014 0 0 0 0 0 0 0 +18.981 26.248 -0.832 0 0 0 0 0 0 0 +18.899 26.309 -0.832 0 0 0 0 0 0 0 +22.008 30.833 -1.008 0 0 0 0 0 0 0 +18.558 26.18 -0.823 0 0 0 0 0 0 0 +18.461 26.217 -0.822 0 0 0 0 0 0 0 +18.399 26.216 -0.821 0 0 0 0 0 0 0 +21.855 31.341 -1.019 0 0 0 0 0 0 0 +21.804 31.479 -1.021 0 0 0 0 0 0 0 +21.747 31.608 -1.024 0 0 0 0 0 0 0 +21.696 31.747 -1.026 0 0 0 0 0 0 0 +21.651 31.895 -1.029 0 0 0 0 0 0 0 +21.601 32.037 -1.032 0 0 0 0 0 0 0 +21.603 32.149 -1.035 0 0 0 0 0 0 0 +21.556 32.298 -1.038 0 0 0 0 0 0 0 +21.496 32.429 -1.041 0 0 0 0 0 0 0 +21.448 32.578 -1.044 0 0 0 0 0 0 0 +21.403 32.732 -1.047 0 0 0 0 0 0 0 +21.351 32.878 -1.05 0 0 0 0 0 0 0 +21.357 33 -1.054 0 0 0 0 0 0 0 +21.311 33.156 -1.057 0 0 0 0 0 0 0 +21.284 33.345 -1.062 0 0 0 0 0 0 0 +21.224 33.482 -1.064 0 0 0 0 0 0 0 +18.546 29.468 -0.91 0 0 0 0 0 0 0 +18.398 29.437 -0.907 0 0 0 0 0 0 0 +18.287 29.465 -0.906 0 0 0 0 0 0 0 +18.243 29.497 -0.906 0 0 0 0 0 0 0 +18.193 29.624 -0.908 0 0 0 0 0 0 0 +18.148 29.76 -0.911 0 0 0 0 0 0 0 +27.3 45.061 -1.482 0 0 0 0 0 0 0 +22.989 38.496 -1.231 0 0 0 0 0 0 0 +22.764 38.393 -1.224 0 0 0 0 0 0 0 +22.687 38.538 -1.227 0 0 0 0 0 0 0 +18.431 31.431 -0.962 0 0 0 0 0 0 0 +22.05 38.139 -1.206 0 0 0 0 0 0 0 +22.087 38.482 -1.216 0 0 0 0 0 0 0 +21.831 38.315 -1.207 0 0 0 0 0 0 0 +14.981 26.697 -0.775 0 0 0 0 0 0 0 +14.935 26.713 -0.775 0 0 0 0 0 0 0 +14.843 26.746 -0.775 0 0 0 0 0 0 0 +14.756 26.787 -0.774 0 0 0 0 0 0 0 +14.688 26.862 -0.776 0 0 0 0 0 0 0 +12.53 23.27 -0.642 0 0 0 0 0 0 0 +12.438 23.274 -0.64 0 0 0 0 0 0 0 +12.348 23.281 -0.639 0 0 0 0 0 0 0 +12.278 23.237 -0.637 0 0 0 0 0 0 0 +12.214 23.293 -0.637 0 0 0 0 0 0 0 +12.102 23.257 -0.635 0 0 0 0 0 0 0 +12.085 23.403 -0.639 0 0 0 0 0 0 0 +14.7 28.676 -0.827 0 0 0 0 0 0 0 +14.654 28.807 -0.83 0 0 0 0 0 0 0 +14.672 28.955 -0.835 0 0 0 0 0 0 0 +14.641 29.12 -0.839 0 0 0 0 0 0 0 +14.613 29.293 -0.843 0 0 0 0 0 0 0 +14.574 29.446 -0.847 0 0 0 0 0 0 0 +14.259 29.272 -0.838 0 0 0 0 0 0 0 +14.137 29.255 -0.836 0 0 0 0 0 0 0 +14.01 29.225 -0.833 0 0 0 0 0 0 0 +14.015 29.354 -0.837 0 0 0 0 0 0 0 +13.867 29.28 -0.833 0 0 0 0 0 0 0 +13.829 29.438 -0.837 0 0 0 0 0 0 0 +16.411 35.21 -1.039 0 0 0 0 0 0 0 +16.264 35.183 -1.036 0 0 0 0 0 0 0 +16.204 35.345 -1.04 0 0 0 0 0 0 0 +16.053 35.309 -1.037 0 0 0 0 0 0 0 +16.029 35.403 -1.04 0 0 0 0 0 0 0 +16.602 36.974 -1.093 0 0 0 0 0 0 0 +16.407 36.848 -1.087 0 0 0 0 0 0 0 +16.406 37.159 -1.096 0 0 0 0 0 0 0 +16.374 37.405 -1.103 0 0 0 0 0 0 0 +16.304 37.566 -1.106 0 0 0 0 0 0 0 +16.206 37.663 -1.108 0 0 0 0 0 0 0 +16.212 37.841 -1.113 0 0 0 0 0 0 0 +15.987 37.641 -1.105 0 0 0 0 0 0 0 +15.853 37.655 -1.103 0 0 0 0 0 0 0 +15.66 37.527 -1.097 0 0 0 0 0 0 0 +15.596 37.706 -1.102 0 0 0 0 0 0 0 +15.573 37.987 -1.11 0 0 0 0 0 0 0 +15.484 38.11 -1.112 0 0 0 0 0 0 0 +15.399 38.071 -1.11 0 0 0 0 0 0 0 +15.254 38.057 -1.108 0 0 0 0 0 0 0 +13.42 33.797 -0.96 0 0 0 0 0 0 0 +15.269 38.799 -1.13 0 0 0 0 0 0 0 +15.241 39.087 -1.138 0 0 0 0 0 0 0 +13.517 34.998 -0.996 0 0 0 0 0 0 0 +15.025 39.26 -1.141 0 0 0 0 0 0 0 +15.025 39.444 -1.147 0 0 0 0 0 0 0 +14.835 39.317 -1.141 0 0 0 0 0 0 0 +14.681 39.283 -1.138 0 0 0 0 0 0 0 +14.633 39.532 -1.145 0 0 0 0 0 0 0 +14.55 39.69 -1.149 0 0 0 0 0 0 0 +14.449 39.801 -1.151 0 0 0 0 0 0 0 +14.33 39.863 -1.151 0 0 0 0 0 0 0 +15.19 42.67 -1.245 0 0 0 0 0 0 0 +15.148 42.764 -1.248 0 0 0 0 0 0 0 +15.038 42.881 -1.25 0 0 0 0 0 0 0 +14.93 43.005 -1.253 0 0 0 0 0 0 0 +14.847 43.203 -1.258 0 0 0 0 0 0 0 +15.824 46.516 -1.368 0 0 0 0 0 0 0 +15.699 46.629 -1.37 0 0 0 0 0 0 0 +15.577 46.751 -1.373 0 0 0 0 0 0 0 +15.529 46.851 -1.375 0 0 0 0 0 0 0 +15.402 46.962 -1.378 0 0 0 0 0 0 0 +15.275 47.073 -1.38 0 0 0 0 0 0 0 +15.15 47.193 -1.382 0 0 0 0 0 0 0 +15.023 47.309 -1.384 0 0 0 0 0 0 0 +14.898 47.43 -1.387 0 0 0 0 0 0 0 +14.772 47.551 -1.389 0 0 0 0 0 0 0 +14.773 47.819 -1.398 0 0 0 0 0 0 0 +14.671 48.024 -1.403 0 0 0 0 0 0 0 +12.633 42.31 -1.209 0 0 0 0 0 0 0 +16.369 56.078 -1.665 0 0 0 0 0 0 0 +16.117 56.199 -1.667 0 0 0 0 0 0 0 +15.616 55.105 -1.629 0 0 0 0 0 0 0 +15.257 55.158 -1.627 0 0 0 0 0 0 0 +13.515 52.371 -1.527 0 0 0 0 0 0 0 +8.37 32.901 -0.882 0 0 0 0 0 0 0 +0.766 3.147 0.101 0 0 0 0 0 0 0 +0.761 3.169 0.1 0 0 0 0 0 0 0 +0.754 3.183 0.1 0 0 0 0 0 0 0 +0.739 3.164 0.1 0 0 0 0 0 0 0 +0.733 3.163 0.1 0 0 0 0 0 0 0 +0.727 3.183 0.1 0 0 0 0 0 0 0 +0.714 3.17 0.1 0 0 0 0 0 0 0 +0.705 3.176 0.1 0 0 0 0 0 0 0 +0.699 3.195 0.1 0 0 0 0 0 0 0 +0.683 3.172 0.101 0 0 0 0 0 0 0 +0.673 3.174 0.101 0 0 0 0 0 0 0 +0.671 3.187 0.1 0 0 0 0 0 0 0 +0.661 3.191 0.1 0 0 0 0 0 0 0 +0.648 3.178 0.101 0 0 0 0 0 0 0 +0.639 3.186 0.1 0 0 0 0 0 0 0 +0.629 3.187 0.1 0 0 0 0 0 0 0 +0.618 3.186 0.101 0 0 0 0 0 0 0 +0.609 3.193 0.1 0 0 0 0 0 0 0 +0.604 3.194 0.1 0 0 0 0 0 0 0 +0.593 3.188 0.101 0 0 0 0 0 0 0 +0.584 3.196 0.1 0 0 0 0 0 0 0 +0.572 3.188 0.101 0 0 0 0 0 0 0 +0.565 3.208 0.1 0 0 0 0 0 0 0 +0.554 3.201 0.1 0 0 0 0 0 0 0 +0.543 3.199 0.101 0 0 0 0 0 0 0 +0.545 3.243 0.099 0 0 0 0 0 0 0 +0.545 3.304 0.097 0 0 0 0 0 0 0 +0.536 3.314 0.097 0 0 0 0 0 0 0 +0.529 3.335 0.096 0 0 0 0 0 0 0 +0.522 3.355 0.096 0 0 0 0 0 0 0 +0.512 3.36 0.096 0 0 0 0 0 0 0 +0.505 3.383 0.095 0 0 0 0 0 0 0 +0.487 3.338 0.096 0 0 0 0 0 0 0 +0.481 3.338 0.096 0 0 0 0 0 0 0 +0.472 3.344 0.096 0 0 0 0 0 0 0 +0.458 3.325 0.097 0 0 0 0 0 0 0 +0.436 3.242 0.1 0 0 0 0 0 0 0 +0.423 3.225 0.1 0 0 0 0 0 0 0 +0.413 3.231 0.1 0 0 0 0 0 0 0 +0.402 3.226 0.1 0 0 0 0 0 0 0 +0.397 3.225 0.1 0 0 0 0 0 0 0 +0.388 3.236 0.1 0 0 0 0 0 0 0 +0.377 3.229 0.1 0 0 0 0 0 0 0 +0.366 3.226 0.1 0 0 0 0 0 0 0 +0.357 3.237 0.1 0 0 0 0 0 0 0 +0.347 3.238 0.1 0 0 0 0 0 0 0 +0.338 3.243 0.1 0 0 0 0 0 0 0 +0.334 3.256 0.1 0 0 0 0 0 0 0 +0.322 3.247 0.1 0 0 0 0 0 0 0 +0.313 3.254 0.1 0 0 0 0 0 0 0 +0.301 3.241 0.1 0 0 0 0 0 0 0 +0.292 3.252 0.1 0 0 0 0 0 0 0 +0.284 3.273 0.099 0 0 0 0 0 0 0 +0.271 3.252 0.1 0 0 0 0 0 0 0 +0.266 3.25 0.1 0 0 0 0 0 0 0 +0.257 3.263 0.1 0 0 0 0 0 0 0 +0.247 3.272 0.099 0 0 0 0 0 0 0 +0.237 3.276 0.099 0 0 0 0 0 0 0 +0.231 3.329 0.098 0 0 0 0 0 0 0 +0.218 3.3 0.099 0 0 0 0 0 0 0 +0.207 3.28 0.099 0 0 0 0 0 0 0 +0.17 3.459 0.094 0 0 0 0 0 0 0 +0.185 32.885 -0.848 0 0 0 0 0 0 0 +0.13 32.106 -0.823 0 0 0 0 0 0 0 +0.028 31.335 -0.799 0 0 0 0 0 0 0 +-0.07 30.573 -0.774 0 0 0 0 0 0 0 +-0.163 29.911 -0.753 0 0 0 0 0 0 0 +-0.252 29.281 -0.733 0 0 0 0 0 0 0 +-0.337 28.668 -0.713 0 0 0 0 0 0 0 +-0.418 28.027 -0.693 0 0 0 0 0 0 0 +-0.454 27.467 -0.675 0 0 0 0 0 0 0 +-0.53 26.91 -0.657 0 0 0 0 0 0 0 +-0.602 26.356 -0.639 0 0 0 0 0 0 0 +-0.672 25.855 -0.623 0 0 0 0 0 0 0 +-0.74 25.379 -0.608 0 0 0 0 0 0 0 +-0.807 24.945 -0.594 0 0 0 0 0 0 0 +-1.012 23.321 -0.543 0 0 0 0 0 0 0 +-1.062 22.804 -0.526 0 0 0 0 0 0 0 +-1.114 22.391 -0.513 0 0 0 0 0 0 0 +-1.407 19.987 -0.437 0 0 0 0 0 0 0 +-1.467 19.938 -0.436 0 0 0 0 0 0 0 +-1.483 19.328 -0.416 0 0 0 0 0 0 0 +-1.537 19.233 -0.413 0 0 0 0 0 0 0 +-1.681 17.828 -0.369 0 0 0 0 0 0 0 +-1.883 15.923 -0.309 0 0 0 0 0 0 0 +-1.936 15.939 -0.31 0 0 0 0 0 0 0 +-2.141 14.544 -0.266 0 0 0 0 0 0 0 +-2.132 14.168 -0.254 0 0 0 0 0 0 0 +-2.322 12.581 -0.205 0 0 0 0 0 0 0 +-2.317 12.334 -0.197 0 0 0 0 0 0 0 +-2.343 12.362 -0.198 0 0 0 0 0 0 0 +-2.403 12.467 -0.202 0 0 0 0 0 0 0 +-2.44 12.451 -0.202 0 0 0 0 0 0 0 +-2.554 12.822 -0.214 0 0 0 0 0 0 0 +-2.597 12.826 -0.214 0 0 0 0 0 0 0 +-2.641 12.837 -0.215 0 0 0 0 0 0 0 +-2.533 10.818 -0.151 0 0 0 0 0 0 0 +-2.583 10.958 -0.156 0 0 0 0 0 0 0 +-2.553 10.676 -0.147 0 0 0 0 0 0 0 +-2.584 10.658 -0.147 0 0 0 0 0 0 0 +-4.121 16.832 -0.35 0 0 0 0 0 0 0 +-3.049 12.094 -0.195 0 0 0 0 0 0 0 +-3.098 12.125 -0.196 0 0 0 0 0 0 0 +-3.06 11.897 -0.189 0 0 0 0 0 0 0 +-3.085 11.841 -0.187 0 0 0 0 0 0 0 +-3.111 11.787 -0.186 0 0 0 0 0 0 0 +-3.187 11.777 -0.186 0 0 0 0 0 0 0 +-3.151 11.355 -0.173 0 0 0 0 0 0 0 +-3.157 11.308 -0.171 0 0 0 0 0 0 0 +-3.179 11.25 -0.17 0 0 0 0 0 0 0 +-3.214 11.24 -0.17 0 0 0 0 0 0 0 +-3.638 12.584 -0.215 0 0 0 0 0 0 0 +-3.694 12.627 -0.217 0 0 0 0 0 0 0 +-2.788 9.029 -0.098 0 0 0 0 0 0 0 +-2.802 8.973 -0.096 0 0 0 0 0 0 0 +-2.822 8.939 -0.096 0 0 0 0 0 0 0 +-2.832 8.873 -0.094 0 0 0 0 0 0 0 +-2.848 8.828 -0.093 0 0 0 0 0 0 0 +-2.866 8.786 -0.091 0 0 0 0 0 0 0 +-2.835 8.645 -0.087 0 0 0 0 0 0 0 +-2.902 8.667 -0.088 0 0 0 0 0 0 0 +-2.93 8.658 -0.088 0 0 0 0 0 0 0 +-2.979 8.713 -0.09 0 0 0 0 0 0 0 +-3.011 8.717 -0.091 0 0 0 0 0 0 0 +-3.039 8.709 -0.091 0 0 0 0 0 0 0 +-3.059 8.723 -0.091 0 0 0 0 0 0 0 +-3.092 8.73 -0.092 0 0 0 0 0 0 0 +-3.118 8.717 -0.092 0 0 0 0 0 0 0 +-4.141 11.487 -0.186 0 0 0 0 0 0 0 +-4.168 11.447 -0.186 0 0 0 0 0 0 0 +-4.21 11.451 -0.186 0 0 0 0 0 0 0 +-4.293 11.565 -0.19 0 0 0 0 0 0 0 +-4.323 11.59 -0.192 0 0 0 0 0 0 0 +-4.799 12.753 -0.232 0 0 0 0 0 0 0 +-4.856 12.782 -0.233 0 0 0 0 0 0 0 +-4.85 12.646 -0.229 0 0 0 0 0 0 0 +-4.629 11.573 -0.195 0 0 0 0 0 0 0 +-4.648 11.514 -0.193 0 0 0 0 0 0 0 +-4.242 10.408 -0.155 0 0 0 0 0 0 0 +-4.259 10.357 -0.154 0 0 0 0 0 0 0 +-3.235 7.779 -0.065 0 0 0 0 0 0 0 +-3.579 8.538 -0.092 0 0 0 0 0 0 0 +-3.603 8.519 -0.092 0 0 0 0 0 0 0 +-3.615 8.51 -0.092 0 0 0 0 0 0 0 +-3.657 8.535 -0.093 0 0 0 0 0 0 0 +-3.681 8.518 -0.093 0 0 0 0 0 0 0 +-3.804 8.729 -0.1 0 0 0 0 0 0 0 +-3.322 7.421 -0.056 0 0 0 0 0 0 0 +-3.268 7.27 -0.051 0 0 0 0 0 0 0 +-3.354 7.4 -0.056 0 0 0 0 0 0 0 +-3.921 8.517 -0.096 0 0 0 0 0 0 0 +-3.962 8.535 -0.097 0 0 0 0 0 0 0 +-3.996 8.539 -0.097 0 0 0 0 0 0 0 +-4.015 8.51 -0.097 0 0 0 0 0 0 0 +-4.04 8.527 -0.098 0 0 0 0 0 0 0 +-4.074 8.531 -0.098 0 0 0 0 0 0 0 +-4.479 9.308 -0.126 0 0 0 0 0 0 0 +-4.774 9.846 -0.146 0 0 0 0 0 0 0 +-4.902 10.031 -0.153 0 0 0 0 0 0 0 +-4.907 9.962 -0.151 0 0 0 0 0 0 0 +-4.927 9.923 -0.15 0 0 0 0 0 0 0 +-4.938 9.906 -0.15 0 0 0 0 0 0 0 +-4.941 9.833 -0.148 0 0 0 0 0 0 0 +-5.023 9.92 -0.152 0 0 0 0 0 0 0 +-5.096 9.287 -0.135 0 0 0 0 0 0 0 +-5.118 9.259 -0.134 0 0 0 0 0 0 0 +-5.101 9.193 -0.132 0 0 0 0 0 0 0 +-5.102 9.128 -0.13 0 0 0 0 0 0 0 +-5.122 9.096 -0.13 0 0 0 0 0 0 0 +-5.135 9.052 -0.129 0 0 0 0 0 0 0 +-5.181 9.067 -0.13 0 0 0 0 0 0 0 +-5.223 9.074 -0.131 0 0 0 0 0 0 0 +-5.266 9.083 -0.132 0 0 0 0 0 0 0 +-5.223 8.911 -0.126 0 0 0 0 0 0 0 +-5.35 9.064 -0.133 0 0 0 0 0 0 0 +-5.22 8.562 -0.117 0 0 0 0 0 0 0 +-5.224 8.508 -0.115 0 0 0 0 0 0 0 +-5.177 8.372 -0.111 0 0 0 0 0 0 0 +-5.169 8.3 -0.109 0 0 0 0 0 0 0 +-5.193 8.28 -0.108 0 0 0 0 0 0 0 +-5.334 8.446 -0.115 0 0 0 0 0 0 0 +-5.215 8.2 -0.107 0 0 0 0 0 0 0 +-7.155 11.19 -0.221 0 0 0 0 0 0 0 +-5.069 7.672 -0.09 0 0 0 0 0 0 0 +-5.044 7.581 -0.087 0 0 0 0 0 0 0 +-33.451 50.031 -1.722 0 0 0 0 0 0 0 +-5.094 7.605 -0.089 0 0 0 0 0 0 0 +-33.739 50.12 -1.729 0 0 0 0 0 0 0 +-34.077 50.282 -1.74 0 0 0 0 0 0 0 +-34.417 50.44 -1.75 0 0 0 0 0 0 0 +-34.765 50.609 -1.761 0 0 0 0 0 0 0 +-40.414 58.055 -2.06 0 0 0 0 0 0 0 +-40.595 57.926 -2.06 0 0 0 0 0 0 0 +-40.849 58.094 -2.069 0 0 0 0 0 0 0 +-41.251 58.276 -2.081 0 0 0 0 0 0 0 +-41.511 58.255 -2.085 0 0 0 0 0 0 0 +-41.657 58.072 -2.083 0 0 0 0 0 0 0 +-40.978 56.748 -2.036 0 0 0 0 0 0 0 +-41.47 57.051 -2.053 0 0 0 0 0 0 0 +-42.93 58.673 -2.123 0 0 0 0 0 0 0 +-40.091 53.896 -1.946 0 0 0 0 0 0 0 +-40.654 53.242 -1.94 0 0 0 0 0 0 0 +-21.377 27.885 -0.92 0 0 0 0 0 0 0 +-21.442 27.788 -0.919 0 0 0 0 0 0 0 +-21.428 27.591 -0.914 0 0 0 0 0 0 0 +-21.483 27.482 -0.912 0 0 0 0 0 0 0 +-20.217 25.693 -0.842 0 0 0 0 0 0 0 +-21.287 26.881 -0.893 0 0 0 0 0 0 0 +-21.413 26.866 -0.895 0 0 0 0 0 0 0 +-21.545 26.945 -0.9 0 0 0 0 0 0 0 +-21.271 26.431 -0.882 0 0 0 0 0 0 0 +-21.458 26.493 -0.887 0 0 0 0 0 0 0 +-21.794 26.736 -0.9 0 0 0 0 0 0 0 +-22.111 26.952 -0.911 0 0 0 0 0 0 0 +-21.947 26.581 -0.899 0 0 0 0 0 0 0 +-22.117 26.617 -0.903 0 0 0 0 0 0 0 +-22.26 26.618 -0.906 0 0 0 0 0 0 0 +-22.41 26.711 -0.912 0 0 0 0 0 0 0 +-45.412 53.827 -2.05 0 0 0 0 0 0 0 +-11.941 14.034 -0.385 0 0 0 0 0 0 0 +-11.958 13.965 -0.384 0 0 0 0 0 0 0 +-11.997 13.921 -0.384 0 0 0 0 0 0 0 +-11.979 13.812 -0.381 0 0 0 0 0 0 0 +-12.142 13.912 -0.387 0 0 0 0 0 0 0 +-30.812 35.253 -1.294 0 0 0 0 0 0 0 +-30.917 35.15 -1.294 0 0 0 0 0 0 0 +-31.21 35.26 -1.303 0 0 0 0 0 0 0 +-38.431 43.153 -1.645 0 0 0 0 0 0 0 +-38.547 43.009 -1.644 0 0 0 0 0 0 0 +-35.987 39.897 -1.515 0 0 0 0 0 0 0 +-36.458 40.166 -1.532 0 0 0 0 0 0 0 +-36.381 39.703 -1.519 0 0 0 0 0 0 0 +-36.591 39.681 -1.523 0 0 0 0 0 0 0 +-36.82 39.679 -1.528 0 0 0 0 0 0 0 +-39.031 41.8 -1.626 0 0 0 0 0 0 0 +-39.109 41.62 -1.624 0 0 0 0 0 0 0 +-21.657 22.814 -0.802 0 0 0 0 0 0 0 +-21.629 22.642 -0.798 0 0 0 0 0 0 0 +-21.662 22.533 -0.796 0 0 0 0 0 0 0 +-21.753 22.487 -0.797 0 0 0 0 0 0 0 +-21.843 22.438 -0.798 0 0 0 0 0 0 0 +-21.899 22.355 -0.797 0 0 0 0 0 0 0 +-40.148 40.63 -1.624 0 0 0 0 0 0 0 +-40.557 40.787 -1.637 0 0 0 0 0 0 0 +-42.091 42.066 -1.7 0 0 0 0 0 0 0 +-31.515 31.29 -1.217 0 0 0 0 0 0 0 +-31.555 31.133 -1.214 0 0 0 0 0 0 0 +-39.39 38.386 -1.556 0 0 0 0 0 0 0 +-31.722 30.713 -1.209 0 0 0 0 0 0 0 +-31.737 30.631 -1.207 0 0 0 0 0 0 0 +-46.768 44.872 -1.87 0 0 0 0 0 0 0 +-46.884 44.702 -1.869 0 0 0 0 0 0 0 +-47.024 44.554 -1.869 0 0 0 0 0 0 0 +-50.674 47.116 -2.01 0 0 0 0 0 0 0 +-32.142 29.778 -1.198 0 0 0 0 0 0 0 +-44.96 41.406 -1.752 0 0 0 0 0 0 0 +-32.718 29.932 -1.215 0 0 0 0 0 0 0 +-32.744 29.767 -1.212 0 0 0 0 0 0 0 +-32.806 29.636 -1.211 0 0 0 0 0 0 0 +-32.94 29.57 -1.212 0 0 0 0 0 0 0 +-35.955 32.077 -1.338 0 0 0 0 0 0 0 +-33.506 29.795 -1.231 0 0 0 0 0 0 0 +-35.962 31.78 -1.332 0 0 0 0 0 0 0 +-36.006 31.618 -1.329 0 0 0 0 0 0 0 +-36.047 31.453 -1.327 0 0 0 0 0 0 0 +-36.082 31.285 -1.324 0 0 0 0 0 0 0 +-36.144 31.14 -1.323 0 0 0 0 0 0 0 +-36.158 30.955 -1.319 0 0 0 0 0 0 0 +-36.129 30.832 -1.316 0 0 0 0 0 0 0 +-36.185 30.683 -1.314 0 0 0 0 0 0 0 +-36.22 30.324 -1.308 0 0 0 0 0 0 0 +-36.256 30.16 -1.305 0 0 0 0 0 0 0 +-36.276 29.985 -1.302 0 0 0 0 0 0 0 +-36.299 29.812 -1.299 0 0 0 0 0 0 0 +-36.298 29.716 -1.297 0 0 0 0 0 0 0 +-33.563 27.298 -1.18 0 0 0 0 0 0 0 +-31.713 25.627 -1.101 0 0 0 0 0 0 0 +-36.368 29.205 -1.289 0 0 0 0 0 0 0 +-33.862 27.016 -1.182 0 0 0 0 0 0 0 +-33.825 26.812 -1.177 0 0 0 0 0 0 0 +-34.011 26.527 -1.176 0 0 0 0 0 0 0 +-36.444 28.244 -1.271 0 0 0 0 0 0 0 +-36.464 28.077 -1.269 0 0 0 0 0 0 0 +-36.455 27.888 -1.265 0 0 0 0 0 0 0 +-18.499 13.952 -0.537 0 0 0 0 0 0 0 +-18.501 13.863 -0.536 0 0 0 0 0 0 0 +-18.459 13.786 -0.533 0 0 0 0 0 0 0 +-36.49 27.105 -1.251 0 0 0 0 0 0 0 +-36.527 26.954 -1.249 0 0 0 0 0 0 0 +-36.597 26.829 -1.248 0 0 0 0 0 0 0 +-36.739 26.756 -1.25 0 0 0 0 0 0 0 +-36.883 26.684 -1.253 0 0 0 0 0 0 0 +-37.031 26.615 -1.255 0 0 0 0 0 0 0 +-37.078 26.56 -1.255 0 0 0 0 0 0 0 +-37.262 26.515 -1.259 0 0 0 0 0 0 0 +-32.843 23.212 -1.083 0 0 0 0 0 0 0 +-32.923 23.113 -1.083 0 0 0 0 0 0 0 +-32.936 22.815 -1.078 0 0 0 0 0 0 0 +-33.002 22.708 -1.078 0 0 0 0 0 0 0 +-33.01 22.637 -1.077 0 0 0 0 0 0 0 +-33.093 22.541 -1.077 0 0 0 0 0 0 0 +-36.356 24.6 -1.201 0 0 0 0 0 0 0 +-36.249 24.361 -1.194 0 0 0 0 0 0 0 +-6.741 4.444 -0.054 0 0 0 0 0 0 0 +-6.717 4.398 -0.053 0 0 0 0 0 0 0 +-6.686 4.347 -0.051 0 0 0 0 0 0 0 +-6.691 4.335 -0.051 0 0 0 0 0 0 0 +-6.964 4.483 -0.061 0 0 0 0 0 0 0 +-7.034 4.497 -0.063 0 0 0 0 0 0 0 +-31.089 19.842 -0.976 0 0 0 0 0 0 0 +-36.466 23.118 -1.178 0 0 0 0 0 0 0 +-36.455 22.951 -1.174 0 0 0 0 0 0 0 +-36.449 22.788 -1.171 0 0 0 0 0 0 0 +-36.399 22.677 -1.168 0 0 0 0 0 0 0 +-36.409 22.524 -1.166 0 0 0 0 0 0 0 +-36.394 22.357 -1.163 0 0 0 0 0 0 0 +-36.381 22.192 -1.16 0 0 0 0 0 0 0 +-36.387 22.039 -1.157 0 0 0 0 0 0 0 +-36.362 21.868 -1.154 0 0 0 0 0 0 0 +-36.356 21.709 -1.151 0 0 0 0 0 0 0 +-36.306 21.602 -1.148 0 0 0 0 0 0 0 +-36.293 21.44 -1.145 0 0 0 0 0 0 0 +-36.286 21.283 -1.142 0 0 0 0 0 0 0 +-36.26 21.114 -1.139 0 0 0 0 0 0 0 +-36.264 20.964 -1.136 0 0 0 0 0 0 0 +-36.244 20.801 -1.133 0 0 0 0 0 0 0 +-36.216 20.634 -1.13 0 0 0 0 0 0 0 +-36.158 20.525 -1.126 0 0 0 0 0 0 0 +-36.101 20.046 -1.117 0 0 0 0 0 0 0 +-36.094 19.894 -1.115 0 0 0 0 0 0 0 +-12.601 6.823 -0.254 0 0 0 0 0 0 0 +-12.836 6.925 -0.262 0 0 0 0 0 0 0 +-35.969 19.312 -1.102 0 0 0 0 0 0 0 +-35.965 19.164 -1.1 0 0 0 0 0 0 0 +-35.954 19.013 -1.097 0 0 0 0 0 0 0 +-35.92 18.851 -1.094 0 0 0 0 0 0 0 +-35.892 18.693 -1.091 0 0 0 0 0 0 0 +-35.869 18.538 -1.088 0 0 0 0 0 0 0 +-35.813 18.437 -1.085 0 0 0 0 0 0 0 +-35.79 18.284 -1.082 0 0 0 0 0 0 0 +-35.773 18.133 -1.079 0 0 0 0 0 0 0 +-35.747 17.979 -1.076 0 0 0 0 0 0 0 +-32.71 16.321 -0.966 0 0 0 0 0 0 0 +-35.684 17.667 -1.07 0 0 0 0 0 0 0 +-35.664 17.518 -1.067 0 0 0 0 0 0 0 +-35.642 17.368 -1.065 0 0 0 0 0 0 0 +-35.633 17.295 -1.063 0 0 0 0 0 0 0 +-14.682 7.052 -0.317 0 0 0 0 0 0 0 +-14.596 6.954 -0.313 0 0 0 0 0 0 0 +-14.842 7.015 -0.321 0 0 0 0 0 0 0 +-35.808 16.827 -1.062 0 0 0 0 0 0 0 +-35.788 16.681 -1.059 0 0 0 0 0 0 0 +-35.755 16.529 -1.056 0 0 0 0 0 0 0 +-35.708 16.439 -1.054 0 0 0 0 0 0 0 +-35.674 16.288 -1.051 0 0 0 0 0 0 0 +-35.634 16.134 -1.048 0 0 0 0 0 0 0 +-35.519 15.948 -1.042 0 0 0 0 0 0 0 +-35.255 15.696 -1.031 0 0 0 0 0 0 0 +-35.222 15.549 -1.028 0 0 0 0 0 0 0 +-35.135 15.378 -1.023 0 0 0 0 0 0 0 +-35.087 15.292 -1.021 0 0 0 0 0 0 0 +-35.042 15.141 -1.017 0 0 0 0 0 0 0 +-35.025 15.004 -1.015 0 0 0 0 0 0 0 +-34.96 14.846 -1.011 0 0 0 0 0 0 0 +-34.934 14.705 -1.009 0 0 0 0 0 0 0 +-34.888 14.557 -1.006 0 0 0 0 0 0 0 +-34.847 14.411 -1.003 0 0 0 0 0 0 0 +-34.781 14.32 -1 0 0 0 0 0 0 0 +-34.742 14.177 -0.997 0 0 0 0 0 0 0 +-34.694 14.03 -0.993 0 0 0 0 0 0 0 +-34.647 13.884 -0.99 0 0 0 0 0 0 0 +-34.607 13.742 -0.987 0 0 0 0 0 0 0 +-34.575 13.604 -0.985 0 0 0 0 0 0 0 +-34.51 13.453 -0.981 0 0 0 0 0 0 0 +-34.451 13.368 -0.978 0 0 0 0 0 0 0 +-34.4 13.224 -0.975 0 0 0 0 0 0 0 +-34.359 13.084 -0.972 0 0 0 0 0 0 0 +-34.301 12.939 -0.969 0 0 0 0 0 0 0 +-34.287 12.811 -0.967 0 0 0 0 0 0 0 +-29.763 11.01 -0.811 0 0 0 0 0 0 0 +-29.738 10.895 -0.809 0 0 0 0 0 0 0 +-29.755 10.795 -0.809 0 0 0 0 0 0 0 +-29.777 10.75 -0.809 0 0 0 0 0 0 0 +-29.894 10.686 -0.812 0 0 0 0 0 0 0 +-33.945 12.018 -0.948 0 0 0 0 0 0 0 +-33.9 11.882 -0.945 0 0 0 0 0 0 0 +-33.848 11.745 -0.942 0 0 0 0 0 0 0 +-33.794 11.607 -0.939 0 0 0 0 0 0 0 +-33.736 11.469 -0.936 0 0 0 0 0 0 0 +-33.667 11.386 -0.933 0 0 0 0 0 0 0 +-33.612 11.25 -0.93 0 0 0 0 0 0 0 +-33.556 11.114 -0.927 0 0 0 0 0 0 0 +-33.492 10.976 -0.924 0 0 0 0 0 0 0 +-33.448 10.846 -0.921 0 0 0 0 0 0 0 +-33.387 10.71 -0.918 0 0 0 0 0 0 0 +-33.319 10.573 -0.914 0 0 0 0 0 0 0 +-33.267 10.499 -0.912 0 0 0 0 0 0 0 +-33.201 10.363 -0.909 0 0 0 0 0 0 0 +-33.147 10.232 -0.906 0 0 0 0 0 0 0 +-33.101 10.104 -0.903 0 0 0 0 0 0 0 +-33.033 9.97 -0.9 0 0 0 0 0 0 0 +-32.992 9.844 -0.898 0 0 0 0 0 0 0 +-32.932 9.714 -0.895 0 0 0 0 0 0 0 +-32.855 9.635 -0.892 0 0 0 0 0 0 0 +-32.809 9.51 -0.889 0 0 0 0 0 0 0 +-32.748 9.381 -0.886 0 0 0 0 0 0 0 +-32.689 9.252 -0.883 0 0 0 0 0 0 0 +-32.624 9.123 -0.88 0 0 0 0 0 0 0 +-32.554 8.994 -0.877 0 0 0 0 0 0 0 +-32.487 8.865 -0.873 0 0 0 0 0 0 0 +-32.42 8.792 -0.871 0 0 0 0 0 0 0 +-32.345 8.663 -0.867 0 0 0 0 0 0 0 +-32.291 8.54 -0.865 0 0 0 0 0 0 0 +-32.216 8.411 -0.861 0 0 0 0 0 0 0 +-32.168 8.291 -0.859 0 0 0 0 0 0 0 +-32.088 8.163 -0.855 0 0 0 0 0 0 0 +-32.016 8.038 -0.852 0 0 0 0 0 0 0 +-31.94 7.965 -0.849 0 0 0 0 0 0 0 +-31.86 7.839 -0.846 0 0 0 0 0 0 0 +-31.795 7.717 -0.843 0 0 0 0 0 0 0 +-31.737 7.597 -0.84 0 0 0 0 0 0 0 +-31.671 7.476 -0.837 0 0 0 0 0 0 0 +-31.588 7.352 -0.834 0 0 0 0 0 0 0 +-31.539 7.236 -0.831 0 0 0 0 0 0 0 +-31.451 7.164 -0.828 0 0 0 0 0 0 0 +-31.385 7.045 -0.825 0 0 0 0 0 0 0 +-31.315 6.926 -0.822 0 0 0 0 0 0 0 +-31.249 6.808 -0.819 0 0 0 0 0 0 0 +-31.188 6.693 -0.817 0 0 0 0 0 0 0 +-31.111 6.574 -0.813 0 0 0 0 0 0 0 +-31.034 6.456 -0.81 0 0 0 0 0 0 0 +-30.944 6.386 -0.807 0 0 0 0 0 0 0 +-27.204 5.522 -0.684 0 0 0 0 0 0 0 +-30.811 6.157 -0.801 0 0 0 0 0 0 0 +-30.752 6.045 -0.799 0 0 0 0 0 0 0 +-30.679 5.93 -0.796 0 0 0 0 0 0 0 +-30.617 5.818 -0.793 0 0 0 0 0 0 0 +-30.527 5.702 -0.79 0 0 0 0 0 0 0 +-30.457 5.639 -0.787 0 0 0 0 0 0 0 +-30.392 5.528 -0.784 0 0 0 0 0 0 0 +-30.329 5.418 -0.782 0 0 0 0 0 0 0 +-30.279 5.311 -0.78 0 0 0 0 0 0 0 +-30.21 5.202 -0.777 0 0 0 0 0 0 0 +-30.136 5.091 -0.774 0 0 0 0 0 0 0 +-30.081 4.985 -0.772 0 0 0 0 0 0 0 +-30.017 4.877 -0.769 0 0 0 0 0 0 0 +-29.936 4.816 -0.766 0 0 0 0 0 0 0 +-29.854 4.706 -0.763 0 0 0 0 0 0 0 +-29.78 4.599 -0.76 0 0 0 0 0 0 0 +-29.713 4.493 -0.757 0 0 0 0 0 0 0 +-29.636 4.386 -0.755 0 0 0 0 0 0 0 +-29.561 4.28 -0.752 0 0 0 0 0 0 0 +-29.479 4.173 -0.749 0 0 0 0 0 0 0 +-29.401 4.115 -0.746 0 0 0 0 0 0 0 +-29.324 4.01 -0.743 0 0 0 0 0 0 0 +-29.254 3.907 -0.74 0 0 0 0 0 0 0 +-29.181 3.804 -0.738 0 0 0 0 0 0 0 +-29.127 3.704 -0.735 0 0 0 0 0 0 0 +-29.027 3.599 -0.732 0 0 0 0 0 0 0 +-28.951 3.497 -0.729 0 0 0 0 0 0 0 +-29.006 3.411 -0.73 0 0 0 0 0 0 0 +-29.075 3.373 -0.732 0 0 0 0 0 0 0 +-29.091 3.282 -0.733 0 0 0 0 0 0 0 +-29.022 3.182 -0.73 0 0 0 0 0 0 0 +-28.922 3.079 -0.727 0 0 0 0 0 0 0 +-28.848 2.979 -0.724 0 0 0 0 0 0 0 +-28.768 2.88 -0.721 0 0 0 0 0 0 0 +-28.691 2.781 -0.718 0 0 0 0 0 0 0 +-28.602 2.727 -0.715 0 0 0 0 0 0 0 +-28.543 2.631 -0.713 0 0 0 0 0 0 0 +-28.408 2.528 -0.708 0 0 0 0 0 0 0 +-27.995 2.402 -0.695 0 0 0 0 0 0 0 +-27.925 2.308 -0.692 0 0 0 0 0 0 0 +-27.84 2.213 -0.69 0 0 0 0 0 0 0 +-27.766 2.119 -0.687 0 0 0 0 0 0 0 +-27.677 2.069 -0.684 0 0 0 0 0 0 0 +-27.588 1.975 -0.681 0 0 0 0 0 0 0 +-27.522 1.883 -0.679 0 0 0 0 0 0 0 +-27.446 1.791 -0.676 0 0 0 0 0 0 0 +-27.35 1.698 -0.673 0 0 0 0 0 0 0 +-27.289 1.609 -0.671 0 0 0 0 0 0 0 +-21.678 1.204 -0.491 0 0 0 0 0 0 0 +-21.62 1.167 -0.489 0 0 0 0 0 0 0 +-21.594 1.097 -0.488 0 0 0 0 0 0 0 +-21.579 1.029 -0.487 0 0 0 0 0 0 0 +-21.57 0.96 -0.487 0 0 0 0 0 0 0 +-21.595 0.893 -0.487 0 0 0 0 0 0 0 +-21.64 0.827 -0.489 0 0 0 0 0 0 0 +-21.726 0.762 -0.491 0 0 0 0 0 0 0 +-26.562 0.896 -0.646 0 0 0 0 0 0 0 +-26.499 0.81 -0.644 0 0 0 0 0 0 0 +-26.415 0.725 -0.641 0 0 0 0 0 0 0 +-26.345 0.64 -0.639 0 0 0 0 0 0 0 +-26.269 0.555 -0.637 0 0 0 0 0 0 0 +-26.187 0.471 -0.634 0 0 0 0 0 0 0 +-26.11 0.388 -0.631 0 0 0 0 0 0 0 +-26.019 0.305 -0.628 0 0 0 0 0 0 0 +-22.212 0.221 -0.507 0 0 0 0 0 0 0 +-22.183 0.151 -0.506 0 0 0 0 0 0 0 +-22.139 0.081 -0.504 0 0 0 0 0 0 0 +-22.097 0.012 -0.503 0 0 0 0 0 0 0 +-22.103 -0.058 -0.503 0 0 0 0 0 0 0 +-22.097 -0.127 -0.503 0 0 0 0 0 0 0 +-22.154 -0.197 -0.505 0 0 0 0 0 0 0 +-22.12 -0.231 -0.504 0 0 0 0 0 0 0 +-22.151 -0.301 -0.505 0 0 0 0 0 0 0 +-25.238 -0.419 -0.604 0 0 0 0 0 0 0 +-25.141 -0.497 -0.6 0 0 0 0 0 0 0 +-25.063 -0.574 -0.598 0 0 0 0 0 0 0 +-24.981 -0.651 -0.595 0 0 0 0 0 0 0 +-24.903 -0.727 -0.593 0 0 0 0 0 0 0 +-24.816 -0.763 -0.59 0 0 0 0 0 0 0 +-24.75 -0.839 -0.588 0 0 0 0 0 0 0 +-24.655 -0.914 -0.585 0 0 0 0 0 0 0 +-24.586 -0.989 -0.583 0 0 0 0 0 0 0 +-24.493 -1.062 -0.58 0 0 0 0 0 0 0 +-24.436 -1.137 -0.579 0 0 0 0 0 0 0 +-24.338 -1.209 -0.576 0 0 0 0 0 0 0 +-24.274 -1.244 -0.574 0 0 0 0 0 0 0 +-24.174 -1.315 -0.571 0 0 0 0 0 0 0 +-24.112 -1.388 -0.569 0 0 0 0 0 0 0 +-23.994 -1.457 -0.565 0 0 0 0 0 0 0 +-23.944 -1.529 -0.564 0 0 0 0 0 0 0 +-23.837 -1.598 -0.56 0 0 0 0 0 0 0 +-23.772 -1.668 -0.558 0 0 0 0 0 0 0 +-23.679 -1.737 -0.556 0 0 0 0 0 0 0 +-23.615 -1.807 -0.554 0 0 0 0 0 0 0 +-23.529 -1.837 -0.551 0 0 0 0 0 0 0 +-23.457 -1.906 -0.549 0 0 0 0 0 0 0 +-23.481 -1.982 -0.55 0 0 0 0 0 0 0 +-16.149 -1.474 -0.315 0 0 0 0 0 0 0 +-16.16 -1.526 -0.315 0 0 0 0 0 0 0 +-22.911 -2.225 -0.532 0 0 0 0 0 0 0 +-22.981 -2.268 -0.535 0 0 0 0 0 0 0 +-22.902 -2.333 -0.532 0 0 0 0 0 0 0 +-22.827 -2.398 -0.53 0 0 0 0 0 0 0 +-22.75 -2.462 -0.528 0 0 0 0 0 0 0 +-22.71 -2.53 -0.527 0 0 0 0 0 0 0 +-22.704 -2.602 -0.527 0 0 0 0 0 0 0 +-22.722 -2.676 -0.528 0 0 0 0 0 0 0 +-22.735 -2.714 -0.528 0 0 0 0 0 0 0 +-22.727 -2.785 -0.528 0 0 0 0 0 0 0 +-22.746 -2.86 -0.529 0 0 0 0 0 0 0 +-22.756 -2.934 -0.53 0 0 0 0 0 0 0 +-22.753 -3.006 -0.53 0 0 0 0 0 0 0 +-22.773 -3.082 -0.531 0 0 0 0 0 0 0 +-22.757 -3.153 -0.531 0 0 0 0 0 0 0 +-22.729 -3.185 -0.53 0 0 0 0 0 0 0 +-22.744 -3.26 -0.531 0 0 0 0 0 0 0 +-22.861 -3.35 -0.535 0 0 0 0 0 0 0 +-22.735 -3.405 -0.531 0 0 0 0 0 0 0 +-22.649 -3.465 -0.529 0 0 0 0 0 0 0 +-22.609 -3.531 -0.528 0 0 0 0 0 0 0 +-22.483 -3.584 -0.524 0 0 0 0 0 0 0 +-22.458 -3.616 -0.524 0 0 0 0 0 0 0 +-22.377 -3.676 -0.521 0 0 0 0 0 0 0 +-22.3 -3.735 -0.519 0 0 0 0 0 0 0 +-21.079 -3.668 -0.48 0 0 0 0 0 0 0 +-20.992 -3.721 -0.478 0 0 0 0 0 0 0 +-20.931 -3.778 -0.476 0 0 0 0 0 0 0 +-20.841 -3.83 -0.474 0 0 0 0 0 0 0 +-20.784 -3.853 -0.472 0 0 0 0 0 0 0 +-20.701 -3.905 -0.47 0 0 0 0 0 0 0 +-20.639 -3.961 -0.468 0 0 0 0 0 0 0 +-20.552 -4.011 -0.466 0 0 0 0 0 0 0 +-20.496 -4.067 -0.464 0 0 0 0 0 0 0 +-20.405 -4.116 -0.462 0 0 0 0 0 0 0 +-20.341 -4.169 -0.46 0 0 0 0 0 0 0 +-20.254 -4.185 -0.458 0 0 0 0 0 0 0 +-20.204 -4.241 -0.456 0 0 0 0 0 0 0 +-20.118 -4.289 -0.454 0 0 0 0 0 0 0 +-20.054 -4.341 -0.452 0 0 0 0 0 0 0 +-19.97 -4.389 -0.45 0 0 0 0 0 0 0 +-19.905 -4.44 -0.448 0 0 0 0 0 0 0 +-19.823 -4.487 -0.446 0 0 0 0 0 0 0 +-19.773 -4.509 -0.445 0 0 0 0 0 0 0 +-19.679 -4.553 -0.442 0 0 0 0 0 0 0 +-19.623 -4.605 -0.441 0 0 0 0 0 0 0 +-19.541 -4.65 -0.439 0 0 0 0 0 0 0 +-19.464 -4.697 -0.436 0 0 0 0 0 0 0 +-19.375 -4.74 -0.434 0 0 0 0 0 0 0 +-19.329 -4.793 -0.433 0 0 0 0 0 0 0 +-19.257 -4.808 -0.431 0 0 0 0 0 0 0 +-19.184 -4.853 -0.429 0 0 0 0 0 0 0 +-19.134 -4.905 -0.428 0 0 0 0 0 0 0 +-19.041 -4.945 -0.425 0 0 0 0 0 0 0 +-18.983 -4.994 -0.424 0 0 0 0 0 0 0 +-18.919 -5.04 -0.422 0 0 0 0 0 0 0 +-18.835 -5.082 -0.42 0 0 0 0 0 0 0 +-18.787 -5.1 -0.419 0 0 0 0 0 0 0 +-18.718 -5.145 -0.417 0 0 0 0 0 0 0 +-18.635 -5.185 -0.415 0 0 0 0 0 0 0 +-18.568 -5.23 -0.413 0 0 0 0 0 0 0 +-18.5 -5.273 -0.411 0 0 0 0 0 0 0 +-18.422 -5.314 -0.409 0 0 0 0 0 0 0 +-18.359 -5.358 -0.408 0 0 0 0 0 0 0 +-18.299 -5.372 -0.406 0 0 0 0 0 0 0 +-18.22 -5.411 -0.404 0 0 0 0 0 0 0 +-18.161 -5.456 -0.403 0 0 0 0 0 0 0 +-18.083 -5.494 -0.401 0 0 0 0 0 0 0 +-18.014 -5.535 -0.399 0 0 0 0 0 0 0 +-17.947 -5.576 -0.397 0 0 0 0 0 0 0 +-17.872 -5.615 -0.395 0 0 0 0 0 0 0 +-17.817 -5.629 -0.394 0 0 0 0 0 0 0 +-17.748 -5.668 -0.392 0 0 0 0 0 0 0 +-17.677 -5.707 -0.39 0 0 0 0 0 0 0 +-17.607 -5.746 -0.388 0 0 0 0 0 0 0 +-17.542 -5.785 -0.387 0 0 0 0 0 0 0 +-17.474 -5.824 -0.385 0 0 0 0 0 0 0 +-17.401 -5.861 -0.383 0 0 0 0 0 0 0 +-17.339 -5.9 -0.382 0 0 0 0 0 0 0 +-17.284 -5.912 -0.38 0 0 0 0 0 0 0 +-17.218 -5.95 -0.379 0 0 0 0 0 0 0 +-17.152 -5.988 -0.377 0 0 0 0 0 0 0 +-17.075 -6.021 -0.375 0 0 0 0 0 0 0 +-17.022 -6.063 -0.374 0 0 0 0 0 0 0 +-16.732 -6.019 -0.365 0 0 0 0 0 0 0 +-16.856 -6.123 -0.37 0 0 0 0 0 0 0 +-16.829 -6.144 -0.369 0 0 0 0 0 0 0 +-16.759 -6.178 -0.367 0 0 0 0 0 0 0 +-16.698 -6.215 -0.366 0 0 0 0 0 0 0 +-16.634 -6.251 -0.364 0 0 0 0 0 0 0 +-16.558 -6.282 -0.362 0 0 0 0 0 0 0 +-16.497 -6.318 -0.361 0 0 0 0 0 0 0 +-16.43 -6.352 -0.359 0 0 0 0 0 0 0 +-16.372 -6.359 -0.358 0 0 0 0 0 0 0 +-16.298 -6.389 -0.356 0 0 0 0 0 0 0 +-16.257 -6.433 -0.355 0 0 0 0 0 0 0 +-16.191 -6.465 -0.354 0 0 0 0 0 0 0 +-16.128 -6.499 -0.352 0 0 0 0 0 0 0 +-16.057 -6.529 -0.35 0 0 0 0 0 0 0 +-16.003 -6.566 -0.349 0 0 0 0 0 0 0 +-16.015 -6.6 -0.35 0 0 0 0 0 0 0 +-16.016 -6.66 -0.351 0 0 0 0 0 0 0 +-16.017 -6.719 -0.352 0 0 0 0 0 0 0 +-15.961 -6.755 -0.35 0 0 0 0 0 0 0 +-15.883 -6.781 -0.348 0 0 0 0 0 0 0 +-16.045 -6.909 -0.355 0 0 0 0 0 0 0 +-16.049 -6.971 -0.356 0 0 0 0 0 0 0 +-16.064 -7.007 -0.357 0 0 0 0 0 0 0 +-16.069 -7.07 -0.358 0 0 0 0 0 0 0 +-16.076 -7.133 -0.359 0 0 0 0 0 0 0 +-16.087 -7.198 -0.36 0 0 0 0 0 0 0 +-16.091 -7.261 -0.361 0 0 0 0 0 0 0 +-16.097 -7.325 -0.362 0 0 0 0 0 0 0 +-16.1 -7.387 -0.363 0 0 0 0 0 0 0 +-16.123 -7.428 -0.364 0 0 0 0 0 0 0 +-16.127 -7.491 -0.365 0 0 0 0 0 0 0 +-16.135 -7.557 -0.366 0 0 0 0 0 0 0 +-16.144 -7.623 -0.367 0 0 0 0 0 0 0 +-16.155 -7.69 -0.368 0 0 0 0 0 0 0 +-16.154 -7.752 -0.369 0 0 0 0 0 0 0 +-16.158 -7.816 -0.37 0 0 0 0 0 0 0 +-16.18 -7.858 -0.371 0 0 0 0 0 0 0 +-16.188 -7.925 -0.372 0 0 0 0 0 0 0 +-16.2 -7.994 -0.374 0 0 0 0 0 0 0 +-16.204 -8.059 -0.375 0 0 0 0 0 0 0 +-16.205 -8.124 -0.376 0 0 0 0 0 0 0 +-16.213 -8.191 -0.377 0 0 0 0 0 0 0 +-16.223 -8.26 -0.378 0 0 0 0 0 0 0 +-16.237 -8.3 -0.379 0 0 0 0 0 0 0 +-16.252 -8.372 -0.381 0 0 0 0 0 0 0 +-16.252 -8.436 -0.382 0 0 0 0 0 0 0 +-16.263 -8.507 -0.383 0 0 0 0 0 0 0 +-16.266 -8.574 -0.384 0 0 0 0 0 0 0 +-16.274 -8.643 -0.385 0 0 0 0 0 0 0 +-16.275 -8.709 -0.386 0 0 0 0 0 0 0 +-16.297 -8.754 -0.388 0 0 0 0 0 0 0 +-16.303 -8.823 -0.389 0 0 0 0 0 0 0 +-16.308 -8.892 -0.39 0 0 0 0 0 0 0 +-16.319 -8.965 -0.392 0 0 0 0 0 0 0 +-16.32 -9.032 -0.393 0 0 0 0 0 0 0 +-16.327 -9.103 -0.394 0 0 0 0 0 0 0 +-16.333 -9.174 -0.395 0 0 0 0 0 0 0 +-16.337 -9.244 -0.396 0 0 0 0 0 0 0 +-16.363 -9.292 -0.398 0 0 0 0 0 0 0 +-16.365 -9.361 -0.399 0 0 0 0 0 0 0 +-16.37 -9.432 -0.4 0 0 0 0 0 0 0 +-16.378 -9.506 -0.402 0 0 0 0 0 0 0 +-16.384 -9.578 -0.403 0 0 0 0 0 0 0 +-16.391 -9.651 -0.404 0 0 0 0 0 0 0 +-16.401 -9.727 -0.406 0 0 0 0 0 0 0 +-16.424 -9.775 -0.407 0 0 0 0 0 0 0 +-16.433 -9.85 -0.409 0 0 0 0 0 0 0 +-16.434 -9.921 -0.41 0 0 0 0 0 0 0 +-16.44 -9.996 -0.411 0 0 0 0 0 0 0 +-16.441 -10.067 -0.413 0 0 0 0 0 0 0 +-16.454 -10.146 -0.414 0 0 0 0 0 0 0 +-16.459 -10.221 -0.416 0 0 0 0 0 0 0 +-16.487 -10.274 -0.417 0 0 0 0 0 0 0 +-16.492 -10.349 -0.419 0 0 0 0 0 0 0 +-16.502 -10.428 -0.42 0 0 0 0 0 0 0 +-16.508 -10.504 -0.422 0 0 0 0 0 0 0 +-16.512 -10.579 -0.423 0 0 0 0 0 0 0 +-16.526 -10.662 -0.425 0 0 0 0 0 0 0 +-16.533 -10.74 -0.427 0 0 0 0 0 0 0 +-16.551 -10.788 -0.428 0 0 0 0 0 0 0 +-16.557 -10.867 -0.43 0 0 0 0 0 0 0 +-16.561 -10.944 -0.431 0 0 0 0 0 0 0 +-16.568 -11.023 -0.433 0 0 0 0 0 0 0 +-16.572 -11.101 -0.434 0 0 0 0 0 0 0 +-16.582 -11.183 -0.436 0 0 0 0 0 0 0 +-16.585 -11.261 -0.437 0 0 0 0 0 0 0 +-16.621 -11.324 -0.439 0 0 0 0 0 0 0 +-16.615 -11.396 -0.441 0 0 0 0 0 0 0 +-16.634 -11.486 -0.443 0 0 0 0 0 0 0 +-16.627 -11.559 -0.444 0 0 0 0 0 0 0 +-16.648 -11.651 -0.446 0 0 0 0 0 0 0 +-16.644 -11.726 -0.447 0 0 0 0 0 0 0 +-16.66 -11.815 -0.449 0 0 0 0 0 0 0 +-16.68 -11.869 -0.451 0 0 0 0 0 0 0 +-16.693 -11.958 -0.453 0 0 0 0 0 0 0 +-16.69 -12.035 -0.454 0 0 0 0 0 0 0 +-16.718 -12.135 -0.457 0 0 0 0 0 0 0 +-16.717 -12.215 -0.458 0 0 0 0 0 0 0 +-16.73 -12.305 -0.46 0 0 0 0 0 0 0 +-16.735 -12.389 -0.462 0 0 0 0 0 0 0 +-16.762 -12.45 -0.464 0 0 0 0 0 0 0 +-16.761 -12.531 -0.465 0 0 0 0 0 0 0 +-16.775 -12.624 -0.468 0 0 0 0 0 0 0 +-16.776 -12.708 -0.469 0 0 0 0 0 0 0 +-16.8 -12.809 -0.472 0 0 0 0 0 0 0 +-16.798 -12.891 -0.473 0 0 0 0 0 0 0 +-16.816 -12.988 -0.476 0 0 0 0 0 0 0 +-16.819 -13.075 -0.477 0 0 0 0 0 0 0 +-16.847 -13.14 -0.479 0 0 0 0 0 0 0 +-16.855 -13.231 -0.481 0 0 0 0 0 0 0 +-16.871 -13.33 -0.484 0 0 0 0 0 0 0 +-16.868 -13.414 -0.485 0 0 0 0 0 0 0 +-16.87 -13.501 -0.487 0 0 0 0 0 0 0 +-16.887 -13.602 -0.49 0 0 0 0 0 0 0 +-16.898 -13.699 -0.492 0 0 0 0 0 0 0 +-16.912 -13.754 -0.493 0 0 0 0 0 0 0 +-16.937 -13.863 -0.496 0 0 0 0 0 0 0 +-16.931 -13.947 -0.498 0 0 0 0 0 0 0 +-16.959 -14.06 -0.501 0 0 0 0 0 0 0 +-16.956 -14.147 -0.502 0 0 0 0 0 0 0 +-16.976 -14.255 -0.505 0 0 0 0 0 0 0 +-16.968 -14.339 -0.507 0 0 0 0 0 0 0 +-17.019 -14.427 -0.51 0 0 0 0 0 0 0 +-17.013 -14.514 -0.511 0 0 0 0 0 0 0 +-17.036 -14.626 -0.514 0 0 0 0 0 0 0 +-17.035 -14.719 -0.516 0 0 0 0 0 0 0 +-17.066 -14.839 -0.519 0 0 0 0 0 0 0 +-17.054 -14.923 -0.521 0 0 0 0 0 0 0 +-17.068 -15.031 -0.524 0 0 0 0 0 0 0 +-17.099 -15.105 -0.526 0 0 0 0 0 0 0 +-17.115 -15.216 -0.529 0 0 0 0 0 0 0 +-17.114 -15.311 -0.531 0 0 0 0 0 0 0 +-17.147 -15.438 -0.534 0 0 0 0 0 0 0 +-17.133 -15.522 -0.536 0 0 0 0 0 0 0 +-17.158 -15.643 -0.539 0 0 0 0 0 0 0 +-17.156 -15.74 -0.541 0 0 0 0 0 0 0 +-17.196 -15.827 -0.544 0 0 0 0 0 0 0 +-17.197 -15.928 -0.546 0 0 0 0 0 0 0 +-17.225 -16.054 -0.549 0 0 0 0 0 0 0 +-17.217 -16.148 -0.551 0 0 0 0 0 0 0 +-17.237 -16.269 -0.554 0 0 0 0 0 0 0 +-17.246 -16.38 -0.557 0 0 0 0 0 0 0 +-17.252 -16.489 -0.559 0 0 0 0 0 0 0 +-17.285 -16.573 -0.562 0 0 0 0 0 0 0 +-17.311 -16.702 -0.566 0 0 0 0 0 0 0 +-17.307 -16.803 -0.568 0 0 0 0 0 0 0 +-17.333 -16.934 -0.571 0 0 0 0 0 0 0 +-17.338 -17.046 -0.574 0 0 0 0 0 0 0 +-17.334 -17.15 -0.576 0 0 0 0 0 0 0 +-17.348 -17.272 -0.579 0 0 0 0 0 0 0 +-17.4 -17.378 -0.583 0 0 0 0 0 0 0 +-17.395 -17.482 -0.585 0 0 0 0 0 0 0 +-17.409 -17.606 -0.588 0 0 0 0 0 0 0 +-17.424 -17.732 -0.591 0 0 0 0 0 0 0 +-17.425 -17.845 -0.594 0 0 0 0 0 0 0 +-17.369 -17.9 -0.594 0 0 0 0 0 0 0 +-17.245 -17.884 -0.591 0 0 0 0 0 0 0 +-17.124 -17.87 -0.588 0 0 0 0 0 0 0 +-17.089 -17.89 -0.587 0 0 0 0 0 0 0 +-17.098 -18.013 -0.591 0 0 0 0 0 0 0 +-17.099 -18.128 -0.593 0 0 0 0 0 0 0 +-17.119 -18.263 -0.597 0 0 0 0 0 0 0 +-17.128 -18.388 -0.6 0 0 0 0 0 0 0 +-17.061 -18.432 -0.6 0 0 0 0 0 0 0 +-17.361 -18.873 -0.616 0 0 0 0 0 0 0 +-20.972 -22.863 -0.789 0 0 0 0 0 0 0 +-21.004 -23.042 -0.794 0 0 0 0 0 0 0 +-20.832 -22.999 -0.789 0 0 0 0 0 0 0 +-20.757 -23.061 -0.789 0 0 0 0 0 0 0 +-20.866 -23.329 -0.797 0 0 0 0 0 0 0 +-22.977 -25.849 -0.903 0 0 0 0 0 0 0 +-22.834 -25.85 -0.9 0 0 0 0 0 0 0 +-22.639 -25.711 -0.892 0 0 0 0 0 0 0 +-22.625 -25.858 -0.895 0 0 0 0 0 0 0 +-22.437 -25.807 -0.89 0 0 0 0 0 0 0 +-18.887 -21.869 -0.72 0 0 0 0 0 0 0 +-18.839 -21.952 -0.722 0 0 0 0 0 0 0 +-18.486 -21.678 -0.708 0 0 0 0 0 0 0 +-18.233 -21.518 -0.698 0 0 0 0 0 0 0 +-18.159 -21.5 -0.696 0 0 0 0 0 0 0 +-18.054 -21.512 -0.695 0 0 0 0 0 0 0 +-17.963 -21.541 -0.693 0 0 0 0 0 0 0 +-17.925 -21.633 -0.695 0 0 0 0 0 0 0 +-17.927 -21.774 -0.698 0 0 0 0 0 0 0 +-17.937 -21.926 -0.702 0 0 0 0 0 0 0 +-18.547 -22.816 -0.737 0 0 0 0 0 0 0 +-18.471 -22.796 -0.735 0 0 0 0 0 0 0 +-18.363 -22.808 -0.733 0 0 0 0 0 0 0 +-18.402 -23.005 -0.739 0 0 0 0 0 0 0 +-18.459 -23.225 -0.745 0 0 0 0 0 0 0 +-18.312 -23.189 -0.741 0 0 0 0 0 0 0 +-18.351 -23.389 -0.747 0 0 0 0 0 0 0 +-18.353 -23.543 -0.751 0 0 0 0 0 0 0 +-18.166 -23.379 -0.743 0 0 0 0 0 0 0 +-18.086 -23.428 -0.743 0 0 0 0 0 0 0 +-18.044 -23.526 -0.745 0 0 0 0 0 0 0 +-18.024 -23.653 -0.747 0 0 0 0 0 0 0 +-18.319 -24.197 -0.767 0 0 0 0 0 0 0 +-18.335 -24.377 -0.772 0 0 0 0 0 0 0 +-18.247 -24.419 -0.771 0 0 0 0 0 0 0 +-18.31 -24.583 -0.777 0 0 0 0 0 0 0 +-18.317 -24.755 -0.781 0 0 0 0 0 0 0 +-19.783 -26.908 -0.865 0 0 0 0 0 0 0 +-21.454 -29.371 -0.96 0 0 0 0 0 0 0 +-21.45 -29.559 -0.965 0 0 0 0 0 0 0 +-21.455 -29.763 -0.97 0 0 0 0 0 0 0 +-21.728 -30.34 -0.99 0 0 0 0 0 0 0 +-21.719 -30.429 -0.992 0 0 0 0 0 0 0 +-18.731 -26.424 -0.832 0 0 0 0 0 0 0 +-18.588 -26.574 -0.834 0 0 0 0 0 0 0 +-18.452 -26.557 -0.831 0 0 0 0 0 0 0 +-18.345 -26.58 -0.829 0 0 0 0 0 0 0 +-18.278 -26.663 -0.83 0 0 0 0 0 0 0 +-18.368 -26.884 -0.838 0 0 0 0 0 0 0 +-18.302 -26.968 -0.839 0 0 0 0 0 0 0 +-19.633 -29.123 -0.92 0 0 0 0 0 0 0 +-19.644 -29.337 -0.926 0 0 0 0 0 0 0 +-19.182 -28.845 -0.904 0 0 0 0 0 0 0 +-19.069 -28.87 -0.903 0 0 0 0 0 0 0 +-18.946 -28.881 -0.901 0 0 0 0 0 0 0 +-18.876 -28.874 -0.9 0 0 0 0 0 0 0 +-18.828 -28.999 -0.902 0 0 0 0 0 0 0 +-18.868 -29.261 -0.91 0 0 0 0 0 0 0 +-19.753 -30.843 -0.968 0 0 0 0 0 0 0 +-19.805 -31.139 -0.977 0 0 0 0 0 0 0 +-19.784 -31.323 -0.981 0 0 0 0 0 0 0 +-26.575 -42.352 -1.396 0 0 0 0 0 0 0 +-26.678 -42.664 -1.406 0 0 0 0 0 0 0 +-26.721 -43.031 -1.417 0 0 0 0 0 0 0 +-26.747 -43.377 -1.427 0 0 0 0 0 0 0 +-26.783 -43.742 -1.437 0 0 0 0 0 0 0 +-19.719 -32.447 -1.011 0 0 0 0 0 0 0 +-19.601 -32.481 -1.01 0 0 0 0 0 0 0 +-19.475 -32.503 -1.008 0 0 0 0 0 0 0 +-19.398 -32.491 -1.007 0 0 0 0 0 0 0 +-19.329 -32.607 -1.009 0 0 0 0 0 0 0 +-19.328 -32.84 -1.015 0 0 0 0 0 0 0 +-19.573 -33.495 -1.037 0 0 0 0 0 0 0 +-19.423 -33.481 -1.035 0 0 0 0 0 0 0 +-19.343 -33.585 -1.036 0 0 0 0 0 0 0 +-19.428 -33.978 -1.048 0 0 0 0 0 0 0 +-19.311 -34.022 -1.048 0 0 0 0 0 0 0 +-19.304 -34.134 -1.051 0 0 0 0 0 0 0 +-19.242 -34.275 -1.054 0 0 0 0 0 0 0 +-19.607 -35.181 -1.085 0 0 0 0 0 0 0 +-19.59 -35.413 -1.091 0 0 0 0 0 0 0 +-19.555 -35.612 -1.096 0 0 0 0 0 0 0 +-19.471 -35.726 -1.098 0 0 0 0 0 0 0 +-19.738 -36.487 -1.123 0 0 0 0 0 0 0 +-23.732 -44.024 -1.396 0 0 0 0 0 0 0 +-23.563 -44.042 -1.394 0 0 0 0 0 0 0 +-23.437 -44.138 -1.395 0 0 0 0 0 0 0 +-15.604 -29.63 -0.867 0 0 0 0 0 0 0 +-23.106 -44.182 -1.391 0 0 0 0 0 0 0 +-20.579 -39.659 -1.226 0 0 0 0 0 0 0 +-20.434 -39.684 -1.224 0 0 0 0 0 0 0 +-20.345 -39.664 -1.222 0 0 0 0 0 0 0 +-20.254 -39.794 -1.225 0 0 0 0 0 0 0 +-22.38 -44.31 -1.384 0 0 0 0 0 0 0 +-22.21 -44.317 -1.382 0 0 0 0 0 0 0 +-22.048 -44.342 -1.381 0 0 0 0 0 0 0 +-21.857 -44.307 -1.377 0 0 0 0 0 0 0 +-21.726 -44.392 -1.378 0 0 0 0 0 0 0 +-20.936 -42.951 -1.325 0 0 0 0 0 0 0 +-20.763 -42.938 -1.322 0 0 0 0 0 0 0 +-20.664 -43.078 -1.325 0 0 0 0 0 0 0 +-20.725 -43.554 -1.339 0 0 0 0 0 0 0 +-20.693 -43.842 -1.347 0 0 0 0 0 0 0 +-20.718 -44.254 -1.36 0 0 0 0 0 0 0 +-20.779 -44.748 -1.375 0 0 0 0 0 0 0 +-20.911 -45.218 -1.39 0 0 0 0 0 0 0 +-20.966 -45.714 -1.405 0 0 0 0 0 0 0 +-21.054 -46.287 -1.423 0 0 0 0 0 0 0 +-21.136 -46.858 -1.441 0 0 0 0 0 0 0 +-21.681 -48.469 -1.495 0 0 0 0 0 0 0 +-21.534 -48.548 -1.496 0 0 0 0 0 0 0 +-21.362 -48.573 -1.494 0 0 0 0 0 0 0 +-15.898 -36.633 -1.074 0 0 0 0 0 0 0 +-15.78 -36.675 -1.074 0 0 0 0 0 0 0 +-21.615 -50.649 -1.558 0 0 0 0 0 0 0 +-21.675 -51.234 -1.576 0 0 0 0 0 0 0 +-21.734 -51.827 -1.594 0 0 0 0 0 0 0 +-21.813 -52.476 -1.615 0 0 0 0 0 0 0 +-21.954 -53.05 -1.633 0 0 0 0 0 0 0 +-15.721 -38.348 -1.122 0 0 0 0 0 0 0 +-22.107 -54.383 -1.675 0 0 0 0 0 0 0 +-14.708 -36.866 -1.066 0 0 0 0 0 0 0 +-14.575 -36.868 -1.065 0 0 0 0 0 0 0 +-14.447 -36.882 -1.063 0 0 0 0 0 0 0 +-14.373 -36.864 -1.062 0 0 0 0 0 0 0 +-14.25 -36.892 -1.061 0 0 0 0 0 0 0 +-14.117 -36.892 -1.06 0 0 0 0 0 0 0 +-13.987 -36.898 -1.059 0 0 0 0 0 0 0 +-13.864 -36.923 -1.058 0 0 0 0 0 0 0 +-13.739 -36.944 -1.057 0 0 0 0 0 0 0 +-13.611 -36.953 -1.056 0 0 0 0 0 0 0 +-13.547 -36.958 -1.056 0 0 0 0 0 0 0 +-13.429 -36.997 -1.055 0 0 0 0 0 0 0 +-13.303 -37.01 -1.054 0 0 0 0 0 0 0 +-13.18 -37.033 -1.054 0 0 0 0 0 0 0 +-13.09 -37.152 -1.056 0 0 0 0 0 0 0 +-13.108 -37.578 -1.069 0 0 0 0 0 0 0 +-13.133 -38.032 -1.083 0 0 0 0 0 0 0 +-13.235 -38.522 -1.099 0 0 0 0 0 0 0 +-13.279 -39.047 -1.116 0 0 0 0 0 0 0 +-13.334 -39.615 -1.133 0 0 0 0 0 0 0 +-13.909 -42.645 -1.231 0 0 0 0 0 0 0 +-13.749 -42.606 -1.229 0 0 0 0 0 0 0 +-13.809 -43.022 -1.242 0 0 0 0 0 0 0 +-14.867 -47.857 -1.4 0 0 0 0 0 0 0 +-14.545 -47.88 -1.397 0 0 0 0 0 0 0 +-14.439 -48.071 -1.402 0 0 0 0 0 0 0 +-14.288 -47.843 -1.394 0 0 0 0 0 0 0 +-16.319 -57.241 -1.701 0 0 0 0 0 0 0 +-16.13 -57.26 -1.7 0 0 0 0 0 0 0 +-15.94 -57.271 -1.698 0 0 0 0 0 0 0 +-5.746 -51.48 -1.454 0 0 0 0 0 0 0 +-5.585 -51.506 -1.454 0 0 0 0 0 0 0 +-5.44 -51.68 -1.459 0 0 0 0 0 0 0 +-5.322 -51.333 -1.447 0 0 0 0 0 0 0 +-1.904 -19.108 -0.41 0 0 0 0 0 0 0 +-1.835 -19.026 -0.407 0 0 0 0 0 0 0 +-1.765 -18.923 -0.404 0 0 0 0 0 0 0 +-1.697 -18.837 -0.401 0 0 0 0 0 0 0 +-1.631 -18.756 -0.398 0 0 0 0 0 0 0 +-1.571 -18.753 -0.398 0 0 0 0 0 0 0 +-1.539 -18.726 -0.397 0 0 0 0 0 0 0 +-1.479 -18.711 -0.396 0 0 0 0 0 0 0 +-1.419 -18.707 -0.396 0 0 0 0 0 0 0 +-1.359 -18.698 -0.396 0 0 0 0 0 0 0 +-1.303 -18.728 -0.396 0 0 0 0 0 0 0 +-1.244 -18.74 -0.397 0 0 0 0 0 0 0 +-1.186 -18.748 -0.397 0 0 0 0 0 0 0 +-1.16 -18.813 -0.399 0 0 0 0 0 0 0 +-1.103 -18.847 -0.4 0 0 0 0 0 0 0 +-1.048 -18.928 -0.402 0 0 0 0 0 0 0 +-0.991 -18.977 -0.404 0 0 0 0 0 0 0 +-0.934 -19.022 -0.405 0 0 0 0 0 0 0 +-2.856 -60.94 -1.748 0 0 0 0 0 0 0 +-2.59 -59.25 -1.694 0 0 0 0 0 0 0 +-2.412 -57.258 -1.63 0 0 0 0 0 0 0 +-2.214 -56.82 -1.616 0 0 0 0 0 0 0 +-1.979 -55.257 -1.565 0 0 0 0 0 0 0 +-1.692 -51.84 -1.456 0 0 0 0 0 0 0 +-1.51 -51.206 -1.435 0 0 0 0 0 0 0 +-1.329 -50.461 -1.411 0 0 0 0 0 0 0 +-1.135 -48.992 -1.364 0 0 0 0 0 0 0 +-1.037 -48.021 -1.333 0 0 0 0 0 0 0 +-0.859 -46.587 -1.287 0 0 0 0 0 0 0 +-0.677 -44.371 -1.216 0 0 0 0 0 0 0 +-0.53 -43.733 -1.195 0 0 0 0 0 0 0 +-0.374 -41.863 -1.136 0 0 0 0 0 0 0 +-0.241 -41.591 -1.127 0 0 0 0 0 0 0 +-0.11 -41.627 -1.128 0 0 0 0 0 0 0 +-0.045 -41.711 -1.131 0 0 0 0 0 0 0 +0.086 -41.723 -1.131 0 0 0 0 0 0 0 +0.191 -35.974 -0.947 0 0 0 0 0 0 0 +0.303 -35.911 -0.945 0 0 0 0 0 0 0 +0.416 -35.924 -0.946 0 0 0 0 0 0 0 +0.529 -35.942 -0.946 0 0 0 0 0 0 0 +0.643 -36.018 -0.949 0 0 0 0 0 0 0 +0.693 -35.624 -0.936 0 0 0 0 0 0 0 +0.793 -35.072 -0.918 0 0 0 0 0 0 0 +0.892 -34.653 -0.905 0 0 0 0 0 0 0 +0.987 -34.159 -0.889 0 0 0 0 0 0 0 +1.084 -33.806 -0.878 0 0 0 0 0 0 0 +1.176 -33.399 -0.865 0 0 0 0 0 0 0 +1.267 -33.015 -0.853 0 0 0 0 0 0 0 +1.302 -32.582 -0.839 0 0 0 0 0 0 0 +1.388 -32.196 -0.827 0 0 0 0 0 0 0 +1.472 -31.818 -0.815 0 0 0 0 0 0 0 +1.556 -31.478 -0.804 0 0 0 0 0 0 0 +1.63 -31.004 -0.789 0 0 0 0 0 0 0 +1.708 -30.631 -0.778 0 0 0 0 0 0 0 +1.784 -30.285 -0.767 0 0 0 0 0 0 0 +1.813 -29.966 -0.757 0 0 0 0 0 0 0 +1.888 -29.663 -0.747 0 0 0 0 0 0 0 +1.966 -29.422 -0.739 0 0 0 0 0 0 0 +2.057 -29.394 -0.739 0 0 0 0 0 0 0 +2.152 -29.427 -0.74 0 0 0 0 0 0 0 +2.244 -29.42 -0.74 0 0 0 0 0 0 0 +2.337 -29.411 -0.74 0 0 0 0 0 0 0 +2.432 -29.433 -0.741 0 0 0 0 0 0 0 +2.478 -29.435 -0.741 0 0 0 0 0 0 0 +2.409 -27.557 -0.681 0 0 0 0 0 0 0 +2.463 -27.183 -0.669 0 0 0 0 0 0 0 +2.505 -26.708 -0.654 0 0 0 0 0 0 0 +2.577 -26.58 -0.65 0 0 0 0 0 0 0 +2.643 -26.397 -0.645 0 0 0 0 0 0 0 +2.714 -26.271 -0.641 0 0 0 0 0 0 0 +2.743 -26.152 -0.637 0 0 0 0 0 0 0 +2.772 -25.638 -0.621 0 0 0 0 0 0 0 +2.82 -25.337 -0.612 0 0 0 0 0 0 0 +2.865 -25.022 -0.602 0 0 0 0 0 0 0 +2.915 -24.773 -0.594 0 0 0 0 0 0 0 +2.975 -24.611 -0.589 0 0 0 0 0 0 0 +2.981 -24.34 -0.581 0 0 0 0 0 0 0 +3.04 -24.19 -0.576 0 0 0 0 0 0 0 +3.097 -24.029 -0.571 0 0 0 0 0 0 0 +3.14 -23.776 -0.563 0 0 0 0 0 0 0 +3.183 -23.524 -0.555 0 0 0 0 0 0 0 +3.229 -23.31 -0.549 0 0 0 0 0 0 0 +3.291 -23.221 -0.546 0 0 0 0 0 0 0 +3.339 -23.042 -0.541 0 0 0 0 0 0 0 +3.324 -22.683 -0.529 0 0 0 0 0 0 0 +3.381 -22.579 -0.526 0 0 0 0 0 0 0 +3.431 -22.428 -0.522 0 0 0 0 0 0 0 +3.505 -22.439 -0.523 0 0 0 0 0 0 0 +3.575 -22.426 -0.522 0 0 0 0 0 0 0 +3.613 -22.211 -0.516 0 0 0 0 0 0 0 +3.666 -22.099 -0.513 0 0 0 0 0 0 0 +3.746 -22.365 -0.521 0 0 0 0 0 0 0 +3.835 -22.466 -0.525 0 0 0 0 0 0 0 +3.93 -22.592 -0.53 0 0 0 0 0 0 0 +3.989 -22.516 -0.528 0 0 0 0 0 0 0 +4.981 -27.643 -0.695 0 0 0 0 0 0 0 +4.652 -25.348 -0.62 0 0 0 0 0 0 0 +5.212 -27.678 -0.697 0 0 0 0 0 0 0 +4.471 -22.923 -0.543 0 0 0 0 0 0 0 +4.537 -22.879 -0.542 0 0 0 0 0 0 0 +4.608 -22.863 -0.542 0 0 0 0 0 0 0 +4.686 -22.876 -0.543 0 0 0 0 0 0 0 +4.775 -22.945 -0.546 0 0 0 0 0 0 0 +4.835 -23.051 -0.549 0 0 0 0 0 0 0 +5.909 -27.764 -0.704 0 0 0 0 0 0 0 +6.017 -27.841 -0.707 0 0 0 0 0 0 0 +4.709 -21.434 -0.498 0 0 0 0 0 0 0 +4.808 -21.564 -0.503 0 0 0 0 0 0 0 +4.866 -21.504 -0.501 0 0 0 0 0 0 0 +4.898 -21.334 -0.496 0 0 0 0 0 0 0 +4.941 -21.366 -0.498 0 0 0 0 0 0 0 +4.994 -21.29 -0.496 0 0 0 0 0 0 0 +5.088 -21.392 -0.499 0 0 0 0 0 0 0 +5.132 -21.277 -0.496 0 0 0 0 0 0 0 +5.192 -21.232 -0.495 0 0 0 0 0 0 0 +5.263 -21.235 -0.496 0 0 0 0 0 0 0 +5.327 -21.209 -0.496 0 0 0 0 0 0 0 +5.356 -21.183 -0.495 0 0 0 0 0 0 0 +5.427 -21.181 -0.495 0 0 0 0 0 0 0 +5.493 -21.162 -0.495 0 0 0 0 0 0 0 +5.573 -21.199 -0.497 0 0 0 0 0 0 0 +5.634 -21.158 -0.496 0 0 0 0 0 0 0 +5.713 -21.189 -0.498 0 0 0 0 0 0 0 +5.78 -21.171 -0.498 0 0 0 0 0 0 0 +5.815 -21.167 -0.498 0 0 0 0 0 0 0 +5.879 -21.141 -0.498 0 0 0 0 0 0 0 +5.974 -21.225 -0.501 0 0 0 0 0 0 0 +6.044 -21.217 -0.502 0 0 0 0 0 0 0 +6.124 -21.244 -0.503 0 0 0 0 0 0 0 +6.199 -21.254 -0.504 0 0 0 0 0 0 0 +6.264 -21.23 -0.504 0 0 0 0 0 0 0 +6.311 -21.265 -0.506 0 0 0 0 0 0 0 +6.377 -21.245 -0.506 0 0 0 0 0 0 0 +6.439 -21.207 -0.505 0 0 0 0 0 0 0 +6.527 -21.258 -0.507 0 0 0 0 0 0 0 +6.61 -21.291 -0.509 0 0 0 0 0 0 0 +6.668 -21.239 -0.508 0 0 0 0 0 0 0 +6.75 -21.268 -0.51 0 0 0 0 0 0 0 +6.799 -21.305 -0.511 0 0 0 0 0 0 0 +6.879 -21.325 -0.513 0 0 0 0 0 0 0 +6.945 -21.301 -0.513 0 0 0 0 0 0 0 +7.05 -21.395 -0.517 0 0 0 0 0 0 0 +7.111 -21.354 -0.516 0 0 0 0 0 0 0 +7.184 -21.349 -0.517 0 0 0 0 0 0 0 +7.248 -21.319 -0.516 0 0 0 0 0 0 0 +7.313 -21.4 -0.519 0 0 0 0 0 0 0 +7.386 -21.392 -0.52 0 0 0 0 0 0 0 +7.473 -21.427 -0.522 0 0 0 0 0 0 0 +3.703 -10.471 -0.151 0 0 0 0 0 0 0 +3.731 -10.445 -0.151 0 0 0 0 0 0 0 +3.855 -10.687 -0.159 0 0 0 0 0 0 0 +7.786 -21.454 -0.526 0 0 0 0 0 0 0 +7.838 -21.49 -0.528 0 0 0 0 0 0 0 +7.925 -21.52 -0.53 0 0 0 0 0 0 0 +7.988 -21.482 -0.529 0 0 0 0 0 0 0 +8.084 -21.533 -0.532 0 0 0 0 0 0 0 +8.156 -21.519 -0.532 0 0 0 0 0 0 0 +8.219 -21.482 -0.532 0 0 0 0 0 0 0 +8.249 -21.359 -0.528 0 0 0 0 0 0 0 +8.255 -21.274 -0.526 0 0 0 0 0 0 0 +8.276 -21.13 -0.522 0 0 0 0 0 0 0 +8.297 -20.991 -0.518 0 0 0 0 0 0 0 +8.316 -20.846 -0.514 0 0 0 0 0 0 0 +8.337 -20.71 -0.51 0 0 0 0 0 0 0 +8.36 -20.58 -0.507 0 0 0 0 0 0 0 +8.383 -20.45 -0.503 0 0 0 0 0 0 0 +8.373 -20.335 -0.5 0 0 0 0 0 0 0 +8.393 -20.201 -0.496 0 0 0 0 0 0 0 +8.411 -20.066 -0.492 0 0 0 0 0 0 0 +8.433 -19.944 -0.489 0 0 0 0 0 0 0 +8.458 -19.829 -0.486 0 0 0 0 0 0 0 +8.476 -19.698 -0.482 0 0 0 0 0 0 0 +8.499 -19.581 -0.479 0 0 0 0 0 0 0 +8.484 -19.463 -0.475 0 0 0 0 0 0 0 +8.503 -19.341 -0.472 0 0 0 0 0 0 0 +8.524 -19.223 -0.469 0 0 0 0 0 0 0 +8.539 -19.096 -0.465 0 0 0 0 0 0 0 +8.562 -18.987 -0.462 0 0 0 0 0 0 0 +8.578 -18.863 -0.459 0 0 0 0 0 0 0 +8.597 -18.747 -0.456 0 0 0 0 0 0 0 +8.587 -18.648 -0.453 0 0 0 0 0 0 0 +8.609 -18.541 -0.45 0 0 0 0 0 0 0 +8.628 -18.431 -0.447 0 0 0 0 0 0 0 +8.646 -18.318 -0.444 0 0 0 0 0 0 0 +8.666 -18.212 -0.441 0 0 0 0 0 0 0 +8.681 -18.098 -0.438 0 0 0 0 0 0 0 +8.701 -17.993 -0.435 0 0 0 0 0 0 0 +8.719 -17.96 -0.435 0 0 0 0 0 0 0 +8.7 -17.778 -0.429 0 0 0 0 0 0 0 +8.825 -17.89 -0.434 0 0 0 0 0 0 0 +8.86 -17.819 -0.433 0 0 0 0 0 0 0 +8.881 -17.722 -0.43 0 0 0 0 0 0 0 +8.9 -17.62 -0.427 0 0 0 0 0 0 0 +8.92 -17.523 -0.425 0 0 0 0 0 0 0 +8.907 -17.429 -0.422 0 0 0 0 0 0 0 +8.926 -17.331 -0.42 0 0 0 0 0 0 0 +8.943 -17.232 -0.417 0 0 0 0 0 0 0 +8.958 -17.128 -0.414 0 0 0 0 0 0 0 +8.972 -17.025 -0.412 0 0 0 0 0 0 0 +8.989 -16.928 -0.409 0 0 0 0 0 0 0 +9.01 -16.838 -0.407 0 0 0 0 0 0 0 +8.996 -16.75 -0.404 0 0 0 0 0 0 0 +9.012 -16.653 -0.402 0 0 0 0 0 0 0 +9.026 -16.554 -0.399 0 0 0 0 0 0 0 +9.044 -16.464 -0.397 0 0 0 0 0 0 0 +9.059 -16.369 -0.394 0 0 0 0 0 0 0 +9.07 -16.267 -0.392 0 0 0 0 0 0 0 +9.087 -16.178 -0.39 0 0 0 0 0 0 0 +9.074 -16.095 -0.387 0 0 0 0 0 0 0 +9.096 -16.016 -0.385 0 0 0 0 0 0 0 +9.118 -15.937 -0.383 0 0 0 0 0 0 0 +9.142 -15.864 -0.382 0 0 0 0 0 0 0 +9.154 -15.769 -0.379 0 0 0 0 0 0 0 +9.173 -15.688 -0.377 0 0 0 0 0 0 0 +9.17 -15.572 -0.374 0 0 0 0 0 0 0 +9.161 -15.5 -0.372 0 0 0 0 0 0 0 +9.175 -15.413 -0.37 0 0 0 0 0 0 0 +9.241 -15.413 -0.371 0 0 0 0 0 0 0 +9.311 -15.42 -0.372 0 0 0 0 0 0 0 +9.391 -15.442 -0.374 0 0 0 0 0 0 0 +9.464 -15.454 -0.376 0 0 0 0 0 0 0 +9.473 -15.359 -0.373 0 0 0 0 0 0 0 +7.036 -11.355 -0.223 0 0 0 0 0 0 0 +7.073 -11.336 -0.223 0 0 0 0 0 0 0 +7.104 -11.305 -0.223 0 0 0 0 0 0 0 +7.139 -11.283 -0.223 0 0 0 0 0 0 0 +7.161 -11.238 -0.222 0 0 0 0 0 0 0 +7.192 -11.209 -0.222 0 0 0 0 0 0 0 +7.217 -11.171 -0.221 0 0 0 0 0 0 0 +7.234 -11.158 -0.221 0 0 0 0 0 0 0 +7.264 -11.129 -0.221 0 0 0 0 0 0 0 +7.301 -11.109 -0.221 0 0 0 0 0 0 0 +7.321 -11.063 -0.22 0 0 0 0 0 0 0 +7.352 -11.035 -0.22 0 0 0 0 0 0 0 +7.387 -11.012 -0.22 0 0 0 0 0 0 0 +7.414 -10.977 -0.22 0 0 0 0 0 0 0 +7.426 -10.959 -0.219 0 0 0 0 0 0 0 +7.46 -10.933 -0.219 0 0 0 0 0 0 0 +7.485 -10.897 -0.219 0 0 0 0 0 0 0 +7.512 -10.863 -0.218 0 0 0 0 0 0 0 +7.545 -10.838 -0.218 0 0 0 0 0 0 0 +7.568 -10.798 -0.218 0 0 0 0 0 0 0 +7.604 -10.777 -0.218 0 0 0 0 0 0 0 +7.615 -10.757 -0.217 0 0 0 0 0 0 0 +7.64 -10.72 -0.217 0 0 0 0 0 0 0 +7.705 -10.74 -0.219 0 0 0 0 0 0 0 +7.852 -10.873 -0.225 0 0 0 0 0 0 0 +9.514 -13.098 -0.314 0 0 0 0 0 0 0 +9.534 -13.039 -0.313 0 0 0 0 0 0 0 +9.546 -12.97 -0.311 0 0 0 0 0 0 0 +9.529 -12.903 -0.309 0 0 0 0 0 0 0 +9.548 -12.844 -0.308 0 0 0 0 0 0 0 +9.56 -12.776 -0.306 0 0 0 0 0 0 0 +9.566 -12.701 -0.305 0 0 0 0 0 0 0 +9.579 -12.636 -0.303 0 0 0 0 0 0 0 +9.592 -12.571 -0.302 0 0 0 0 0 0 0 +9.599 -12.498 -0.3 0 0 0 0 0 0 0 +9.611 -12.433 -0.299 0 0 0 0 0 0 0 +9.606 -12.386 -0.297 0 0 0 0 0 0 0 +9.617 -12.319 -0.296 0 0 0 0 0 0 0 +9.631 -12.258 -0.295 0 0 0 0 0 0 0 +9.614 -12.157 -0.292 0 0 0 0 0 0 0 +9.625 -12.092 -0.29 0 0 0 0 0 0 0 +9.641 -12.035 -0.289 0 0 0 0 0 0 0 +9.678 -12.003 -0.289 0 0 0 0 0 0 0 +9.678 -11.965 -0.288 0 0 0 0 0 0 0 +9.695 -11.909 -0.287 0 0 0 0 0 0 0 +9.705 -11.845 -0.286 0 0 0 0 0 0 0 +9.714 -11.78 -0.284 0 0 0 0 0 0 0 +9.729 -11.723 -0.283 0 0 0 0 0 0 0 +9.737 -11.657 -0.282 0 0 0 0 0 0 0 +9.732 -11.614 -0.281 0 0 0 0 0 0 0 +9.739 -11.549 -0.279 0 0 0 0 0 0 0 +9.726 -11.46 -0.277 0 0 0 0 0 0 0 +9.6 -11.239 -0.269 0 0 0 0 0 0 0 +9.611 -11.18 -0.268 0 0 0 0 0 0 0 +9.622 -11.123 -0.266 0 0 0 0 0 0 0 +9.628 -11.059 -0.265 0 0 0 0 0 0 0 +9.622 -11.017 -0.264 0 0 0 0 0 0 0 +9.629 -10.955 -0.262 0 0 0 0 0 0 0 +9.637 -10.895 -0.261 0 0 0 0 0 0 0 +9.65 -10.84 -0.26 0 0 0 0 0 0 0 +9.655 -10.777 -0.259 0 0 0 0 0 0 0 +9.656 -10.711 -0.257 0 0 0 0 0 0 0 +9.668 -10.657 -0.256 0 0 0 0 0 0 0 +9.654 -10.608 -0.255 0 0 0 0 0 0 0 +9.677 -10.565 -0.254 0 0 0 0 0 0 0 +9.699 -10.523 -0.254 0 0 0 0 0 0 0 +9.713 -10.472 -0.253 0 0 0 0 0 0 0 +9.721 -10.415 -0.252 0 0 0 0 0 0 0 +9.728 -10.357 -0.25 0 0 0 0 0 0 0 +9.739 -10.303 -0.249 0 0 0 0 0 0 0 +9.748 -10.248 -0.248 0 0 0 0 0 0 0 +9.738 -10.205 -0.247 0 0 0 0 0 0 0 +9.746 -10.15 -0.246 0 0 0 0 0 0 0 +9.759 -10.099 -0.245 0 0 0 0 0 0 0 +9.775 -10.052 -0.244 0 0 0 0 0 0 0 +9.77 -9.984 -0.243 0 0 0 0 0 0 0 +9.789 -9.941 -0.242 0 0 0 0 0 0 0 +9.784 -9.873 -0.241 0 0 0 0 0 0 0 +9.793 -9.852 -0.24 0 0 0 0 0 0 0 +9.791 -9.787 -0.239 0 0 0 0 0 0 0 +9.816 -9.751 -0.238 0 0 0 0 0 0 0 +9.806 -9.68 -0.237 0 0 0 0 0 0 0 +9.83 -9.643 -0.236 0 0 0 0 0 0 0 +9.821 -9.574 -0.235 0 0 0 0 0 0 0 +9.841 -9.533 -0.234 0 0 0 0 0 0 0 +9.833 -9.495 -0.233 0 0 0 0 0 0 0 +9.839 -9.441 -0.232 0 0 0 0 0 0 0 +9.847 -9.389 -0.231 0 0 0 0 0 0 0 +9.86 -9.343 -0.23 0 0 0 0 0 0 0 +9.859 -9.283 -0.229 0 0 0 0 0 0 0 +9.879 -9.244 -0.229 0 0 0 0 0 0 0 +9.86 -9.197 -0.227 0 0 0 0 0 0 0 +9.854 -9.133 -0.226 0 0 0 0 0 0 0 +9.853 -9.075 -0.224 0 0 0 0 0 0 0 +9.864 -9.028 -0.224 0 0 0 0 0 0 0 +9.86 -8.967 -0.222 0 0 0 0 0 0 0 +9.889 -8.938 -0.222 0 0 0 0 0 0 0 +9.895 -8.886 -0.221 0 0 0 0 0 0 0 +9.914 -8.847 -0.221 0 0 0 0 0 0 0 +9.898 -8.805 -0.22 0 0 0 0 0 0 0 +9.911 -8.761 -0.219 0 0 0 0 0 0 0 +9.916 -8.71 -0.218 0 0 0 0 0 0 0 +9.924 -8.661 -0.217 0 0 0 0 0 0 0 +9.933 -8.614 -0.216 0 0 0 0 0 0 0 +9.94 -8.566 -0.216 0 0 0 0 0 0 0 +9.953 -8.523 -0.215 0 0 0 0 0 0 0 +9.944 -8.488 -0.214 0 0 0 0 0 0 0 +9.946 -8.436 -0.213 0 0 0 0 0 0 0 +9.963 -8.397 -0.213 0 0 0 0 0 0 0 +9.991 -8.367 -0.213 0 0 0 0 0 0 0 +10.013 -8.332 -0.213 0 0 0 0 0 0 0 +10.03 -8.292 -0.212 0 0 0 0 0 0 0 +10.054 -8.26 -0.212 0 0 0 0 0 0 0 +10.066 -8.243 -0.212 0 0 0 0 0 0 0 +10.084 -8.205 -0.212 0 0 0 0 0 0 0 +10.108 -8.172 -0.212 0 0 0 0 0 0 0 +10.116 -8.126 -0.211 0 0 0 0 0 0 0 +10.156 -8.105 -0.212 0 0 0 0 0 0 0 +10.156 -8.054 -0.21 0 0 0 0 0 0 0 +10.196 -8.033 -0.211 0 0 0 0 0 0 0 +10.224 -8.029 -0.212 0 0 0 0 0 0 0 +10.257 -8.003 -0.212 0 0 0 0 0 0 0 +10.271 -7.962 -0.212 0 0 0 0 0 0 0 +10.301 -7.934 -0.212 0 0 0 0 0 0 0 +10.308 -7.888 -0.211 0 0 0 0 0 0 0 +10.343 -7.863 -0.211 0 0 0 0 0 0 0 +10.347 -7.84 -0.211 0 0 0 0 0 0 0 +10.365 -7.803 -0.211 0 0 0 0 0 0 0 +10.401 -7.779 -0.211 0 0 0 0 0 0 0 +10.417 -7.74 -0.211 0 0 0 0 0 0 0 +10.429 -7.698 -0.21 0 0 0 0 0 0 0 +10.456 -7.667 -0.211 0 0 0 0 0 0 0 +10.493 -7.644 -0.211 0 0 0 0 0 0 0 +10.504 -7.602 -0.211 0 0 0 0 0 0 0 +10.529 -7.594 -0.211 0 0 0 0 0 0 0 +10.54 -7.552 -0.211 0 0 0 0 0 0 0 +10.558 -7.515 -0.21 0 0 0 0 0 0 0 +10.592 -7.489 -0.211 0 0 0 0 0 0 0 +10.597 -7.443 -0.21 0 0 0 0 0 0 0 +10.63 -7.417 -0.21 0 0 0 0 0 0 0 +10.647 -7.379 -0.21 0 0 0 0 0 0 0 +10.667 -7.368 -0.211 0 0 0 0 0 0 0 +10.674 -7.323 -0.21 0 0 0 0 0 0 0 +10.706 -7.296 -0.21 0 0 0 0 0 0 0 +10.718 -7.254 -0.21 0 0 0 0 0 0 0 +10.765 -7.237 -0.211 0 0 0 0 0 0 0 +10.761 -7.186 -0.21 0 0 0 0 0 0 0 +10.799 -7.162 -0.21 0 0 0 0 0 0 0 +10.792 -7.133 -0.21 0 0 0 0 0 0 0 +10.801 -7.09 -0.209 0 0 0 0 0 0 0 +10.816 -7.052 -0.209 0 0 0 0 0 0 0 +10.837 -7.017 -0.209 0 0 0 0 0 0 0 +10.874 -6.992 -0.209 0 0 0 0 0 0 0 +10.877 -6.946 -0.209 0 0 0 0 0 0 0 +10.912 -6.921 -0.209 0 0 0 0 0 0 0 +10.937 -6.912 -0.21 0 0 0 0 0 0 0 +10.95 -6.872 -0.209 0 0 0 0 0 0 0 +10.98 -6.843 -0.21 0 0 0 0 0 0 0 +11.002 -6.809 -0.21 0 0 0 0 0 0 0 +11.028 -6.777 -0.21 0 0 0 0 0 0 0 +11.047 -6.741 -0.21 0 0 0 0 0 0 0 +11.077 -6.712 -0.21 0 0 0 0 0 0 0 +11.122 -6.715 -0.211 0 0 0 0 0 0 0 +11.169 -6.696 -0.212 0 0 0 0 0 0 0 +11.22 -6.679 -0.214 0 0 0 0 0 0 0 +11.272 -6.662 -0.215 0 0 0 0 0 0 0 +11.326 -6.646 -0.216 0 0 0 0 0 0 0 +11.369 -6.624 -0.217 0 0 0 0 0 0 0 +11.414 -6.602 -0.218 0 0 0 0 0 0 0 +11.461 -6.605 -0.219 0 0 0 0 0 0 0 +11.514 -6.588 -0.22 0 0 0 0 0 0 0 +11.572 -6.572 -0.222 0 0 0 0 0 0 0 +11.596 -6.538 -0.222 0 0 0 0 0 0 0 +11.661 -6.527 -0.223 0 0 0 0 0 0 0 +11.705 -6.503 -0.224 0 0 0 0 0 0 0 +11.781 -6.497 -0.226 0 0 0 0 0 0 0 +11.837 -6.504 -0.228 0 0 0 0 0 0 0 +11.904 -6.493 -0.23 0 0 0 0 0 0 0 +11.942 -6.465 -0.23 0 0 0 0 0 0 0 +12.015 -6.456 -0.232 0 0 0 0 0 0 0 +12.053 -6.427 -0.233 0 0 0 0 0 0 0 +12.126 -6.418 -0.235 0 0 0 0 0 0 0 +12.164 -6.389 -0.235 0 0 0 0 0 0 0 +12.222 -6.395 -0.237 0 0 0 0 0 0 0 +12.256 -6.364 -0.238 0 0 0 0 0 0 0 +8.791 -4.521 -0.112 0 0 0 0 0 0 0 +8.876 -4.53 -0.115 0 0 0 0 0 0 0 +12.497 -6.291 -0.243 0 0 0 0 0 0 0 +12.547 -6.267 -0.245 0 0 0 0 0 0 0 +12.611 -6.274 -0.246 0 0 0 0 0 0 0 +12.661 -6.25 -0.248 0 0 0 0 0 0 0 +12.722 -6.23 -0.249 0 0 0 0 0 0 0 +12.777 -6.208 -0.25 0 0 0 0 0 0 0 +12.836 -6.187 -0.252 0 0 0 0 0 0 0 +12.897 -6.166 -0.253 0 0 0 0 0 0 0 +12.947 -6.14 -0.254 0 0 0 0 0 0 0 +13.007 -6.144 -0.256 0 0 0 0 0 0 0 +13.072 -6.124 -0.258 0 0 0 0 0 0 0 +13.123 -6.099 -0.259 0 0 0 0 0 0 0 +13.162 -6.067 -0.26 0 0 0 0 0 0 0 +13.221 -6.044 -0.261 0 0 0 0 0 0 0 +13.282 -6.021 -0.262 0 0 0 0 0 0 0 +13.381 -6.015 -0.265 0 0 0 0 0 0 0 +13.436 -6.015 -0.267 0 0 0 0 0 0 0 +13.499 -5.992 -0.268 0 0 0 0 0 0 0 +13.572 -5.974 -0.27 0 0 0 0 0 0 0 +13.628 -5.947 -0.272 0 0 0 0 0 0 0 +13.698 -5.927 -0.273 0 0 0 0 0 0 0 +13.777 -5.91 -0.275 0 0 0 0 0 0 0 +13.882 -5.904 -0.278 0 0 0 0 0 0 0 +13.885 -5.879 -0.278 0 0 0 0 0 0 0 +13.902 -5.835 -0.278 0 0 0 0 0 0 0 +14.14 -5.883 -0.286 0 0 0 0 0 0 0 +14.193 -5.853 -0.287 0 0 0 0 0 0 0 +14.249 -5.824 -0.288 0 0 0 0 0 0 0 +14.287 -5.787 -0.289 0 0 0 0 0 0 0 +14.344 -5.758 -0.29 0 0 0 0 0 0 0 +14.375 -5.744 -0.291 0 0 0 0 0 0 0 +14.423 -5.711 -0.292 0 0 0 0 0 0 0 +14.465 -5.675 -0.293 0 0 0 0 0 0 0 +14.522 -5.645 -0.294 0 0 0 0 0 0 0 +14.56 -5.607 -0.295 0 0 0 0 0 0 0 +14.606 -5.572 -0.296 0 0 0 0 0 0 0 +14.646 -5.535 -0.297 0 0 0 0 0 0 0 +14.658 -5.513 -0.297 0 0 0 0 0 0 0 +14.716 -5.483 -0.298 0 0 0 0 0 0 0 +14.762 -5.447 -0.299 0 0 0 0 0 0 0 +14.831 -5.42 -0.301 0 0 0 0 0 0 0 +14.888 -5.387 -0.302 0 0 0 0 0 0 0 +14.938 -5.353 -0.304 0 0 0 0 0 0 0 +14.998 -5.321 -0.305 0 0 0 0 0 0 0 +15.037 -5.308 -0.306 0 0 0 0 0 0 0 +15.095 -5.276 -0.307 0 0 0 0 0 0 0 +15.144 -5.239 -0.309 0 0 0 0 0 0 0 +15.194 -5.204 -0.31 0 0 0 0 0 0 0 +15.246 -5.168 -0.311 0 0 0 0 0 0 0 +15.306 -5.135 -0.312 0 0 0 0 0 0 0 +15.358 -5.099 -0.314 0 0 0 0 0 0 0 +15.398 -5.085 -0.315 0 0 0 0 0 0 0 +15.462 -5.053 -0.316 0 0 0 0 0 0 0 +15.51 -5.014 -0.317 0 0 0 0 0 0 0 +15.562 -4.977 -0.319 0 0 0 0 0 0 0 +15.615 -4.941 -0.32 0 0 0 0 0 0 0 +15.669 -4.903 -0.321 0 0 0 0 0 0 0 +15.722 -4.866 -0.322 0 0 0 0 0 0 0 +15.772 -4.854 -0.324 0 0 0 0 0 0 0 +15.531 -4.726 -0.315 0 0 0 0 0 0 0 +15.483 -4.658 -0.313 0 0 0 0 0 0 0 +15.455 -4.597 -0.312 0 0 0 0 0 0 0 +15.538 -4.569 -0.314 0 0 0 0 0 0 0 +15.57 -4.525 -0.315 0 0 0 0 0 0 0 +15.527 -4.46 -0.313 0 0 0 0 0 0 0 +15.539 -4.437 -0.313 0 0 0 0 0 0 0 +15.603 -4.402 -0.315 0 0 0 0 0 0 0 +15.659 -4.365 -0.316 0 0 0 0 0 0 0 +15.709 -4.326 -0.317 0 0 0 0 0 0 0 +15.762 -4.287 -0.318 0 0 0 0 0 0 0 +15.825 -4.251 -0.32 0 0 0 0 0 0 0 +15.871 -4.21 -0.321 0 0 0 0 0 0 0 +15.932 -4.2 -0.323 0 0 0 0 0 0 0 +15.991 -4.162 -0.325 0 0 0 0 0 0 0 +16.047 -4.123 -0.326 0 0 0 0 0 0 0 +16.095 -4.081 -0.327 0 0 0 0 0 0 0 +16.162 -4.044 -0.329 0 0 0 0 0 0 0 +16.225 -4.006 -0.331 0 0 0 0 0 0 0 +16.265 -3.962 -0.331 0 0 0 0 0 0 0 +16.318 -3.92 -0.333 0 0 0 0 0 0 0 +16.4 -3.913 -0.335 0 0 0 0 0 0 0 +16.449 -3.87 -0.336 0 0 0 0 0 0 0 +16.506 -3.829 -0.338 0 0 0 0 0 0 0 +16.576 -3.79 -0.34 0 0 0 0 0 0 0 +16.623 -3.746 -0.341 0 0 0 0 0 0 0 +16.709 -3.711 -0.343 0 0 0 0 0 0 0 +16.767 -3.668 -0.345 0 0 0 0 0 0 0 +16.832 -3.655 -0.347 0 0 0 0 0 0 0 +16.89 -3.612 -0.348 0 0 0 0 0 0 0 +16.934 -3.566 -0.35 0 0 0 0 0 0 0 +17.006 -3.526 -0.352 0 0 0 0 0 0 0 +17.054 -3.48 -0.353 0 0 0 0 0 0 0 +17.145 -3.442 -0.355 0 0 0 0 0 0 0 +17.288 -3.443 -0.36 0 0 0 0 0 0 0 +17.236 -3.376 -0.358 0 0 0 0 0 0 0 +17.321 -3.337 -0.36 0 0 0 0 0 0 0 +17.475 -3.31 -0.365 0 0 0 0 0 0 0 +13.672 -2.539 -0.241 0 0 0 0 0 0 0 +13.601 -2.482 -0.238 0 0 0 0 0 0 0 +13.597 -2.437 -0.238 0 0 0 0 0 0 0 +13.565 -2.387 -0.236 0 0 0 0 0 0 0 +13.571 -2.366 -0.237 0 0 0 0 0 0 0 +13.553 -2.319 -0.236 0 0 0 0 0 0 0 +13.548 -2.274 -0.235 0 0 0 0 0 0 0 +13.557 -2.232 -0.235 0 0 0 0 0 0 0 +13.572 -2.191 -0.236 0 0 0 0 0 0 0 +13.598 -2.151 -0.236 0 0 0 0 0 0 0 +13.615 -2.11 -0.237 0 0 0 0 0 0 0 +13.666 -2.096 -0.238 0 0 0 0 0 0 0 +13.686 -2.055 -0.239 0 0 0 0 0 0 0 +13.76 -2.022 -0.241 0 0 0 0 0 0 0 +13.804 -1.984 -0.242 0 0 0 0 0 0 0 +19.195 -2.708 -0.416 0 0 0 0 0 0 0 +19.268 -2.657 -0.418 0 0 0 0 0 0 0 +19.348 -2.606 -0.42 0 0 0 0 0 0 0 +19.429 -2.586 -0.423 0 0 0 0 0 0 0 +19.479 -2.531 -0.424 0 0 0 0 0 0 0 +19.366 -2.454 -0.42 0 0 0 0 0 0 0 +19.437 -2.401 -0.422 0 0 0 0 0 0 0 +19.506 -2.347 -0.424 0 0 0 0 0 0 0 +19.553 -2.291 -0.426 0 0 0 0 0 0 0 +19.598 -2.234 -0.427 0 0 0 0 0 0 0 +19.665 -2.21 -0.429 0 0 0 0 0 0 0 +19.703 -2.152 -0.43 0 0 0 0 0 0 0 +19.758 -2.095 -0.432 0 0 0 0 0 0 0 +19.804 -2.037 -0.433 0 0 0 0 0 0 0 +19.844 -1.978 -0.434 0 0 0 0 0 0 0 +19.906 -1.921 -0.436 0 0 0 0 0 0 0 +19.962 -1.864 -0.437 0 0 0 0 0 0 0 +20.006 -1.836 -0.439 0 0 0 0 0 0 0 +20.068 -1.778 -0.44 0 0 0 0 0 0 0 +20.45 -1.748 -0.453 0 0 0 0 0 0 0 +20.503 -1.688 -0.454 0 0 0 0 0 0 0 +20.562 -1.627 -0.456 0 0 0 0 0 0 0 +20.609 -1.566 -0.457 0 0 0 0 0 0 0 +20.679 -1.506 -0.459 0 0 0 0 0 0 0 +20.707 -1.476 -0.46 0 0 0 0 0 0 0 +20.774 -1.415 -0.462 0 0 0 0 0 0 0 +20.822 -1.353 -0.463 0 0 0 0 0 0 0 +20.89 -1.291 -0.466 0 0 0 0 0 0 0 +20.93 -1.228 -0.467 0 0 0 0 0 0 0 +20.996 -1.165 -0.469 0 0 0 0 0 0 0 +21.039 -1.102 -0.47 0 0 0 0 0 0 0 +21.101 -1.072 -0.472 0 0 0 0 0 0 0 +21.15 -1.008 -0.473 0 0 0 0 0 0 0 +21.217 -0.944 -0.475 0 0 0 0 0 0 0 +21.345 -0.883 -0.479 0 0 0 0 0 0 0 +21.18 -0.809 -0.474 0 0 0 0 0 0 0 +21.107 -0.74 -0.472 0 0 0 0 0 0 0 +21.081 -0.673 -0.471 0 0 0 0 0 0 0 +21.138 -0.641 -0.473 0 0 0 0 0 0 0 +21.198 -0.576 -0.474 0 0 0 0 0 0 0 +21.256 -0.511 -0.476 0 0 0 0 0 0 0 +21.317 -0.446 -0.478 0 0 0 0 0 0 0 +21.366 -0.38 -0.48 0 0 0 0 0 0 0 +21.435 -0.314 -0.482 0 0 0 0 0 0 0 +21.486 -0.247 -0.483 0 0 0 0 0 0 0 +21.546 -0.214 -0.485 0 0 0 0 0 0 0 +21.617 -0.147 -0.488 0 0 0 0 0 0 0 +22.081 -0.081 -0.502 0 0 0 0 0 0 0 +23.499 -0.014 -0.548 0 0 0 0 0 0 0 +23.192 0.015 -0.69 0 0 0 0 0 0 0 +36.025 0.151 -1.185 0 0 0 0 0 0 0 +35.956 0.263 -1.182 0 0 0 0 0 0 0 +35.887 0.375 -1.18 0 0 0 0 0 0 0 +35.19 0.478 -1.153 0 0 0 0 0 0 0 +35.014 0.531 -1.146 0 0 0 0 0 0 0 +34.856 0.638 -1.14 0 0 0 0 0 0 0 +34.686 0.744 -1.133 0 0 0 0 0 0 0 +34.518 0.848 -1.127 0 0 0 0 0 0 0 +34.339 0.952 -1.12 0 0 0 0 0 0 0 +34.172 1.054 -1.114 0 0 0 0 0 0 0 +34.011 1.156 -1.108 0 0 0 0 0 0 0 +33.859 1.204 -1.102 0 0 0 0 0 0 0 +33.721 1.305 -1.097 0 0 0 0 0 0 0 +33.559 1.405 -1.091 0 0 0 0 0 0 0 +33.439 1.505 -1.086 0 0 0 0 0 0 0 +33.22 1.599 -1.078 0 0 0 0 0 0 0 +33.114 1.698 -1.074 0 0 0 0 0 0 0 +32.954 1.794 -1.068 0 0 0 0 0 0 0 +25.572 1.507 -0.784 0 0 0 0 0 0 0 +32.83 2.046 -1.064 0 0 0 0 0 0 0 +32.861 2.151 -1.065 0 0 0 0 0 0 0 +32.84 2.254 -1.065 0 0 0 0 0 0 0 +32.985 2.524 -1.071 0 0 0 0 0 0 0 +33.054 2.634 -1.074 0 0 0 0 0 0 0 +33.108 2.743 -1.077 0 0 0 0 0 0 0 +33.18 2.854 -1.08 0 0 0 0 0 0 0 +33.102 2.952 -1.077 0 0 0 0 0 0 0 +18.741 1.719 -0.522 0 0 0 0 0 0 0 +18.71 1.776 -0.521 0 0 0 0 0 0 0 +18.782 1.813 -0.523 0 0 0 0 0 0 0 +18.735 1.867 -0.522 0 0 0 0 0 0 0 +44.021 4.563 -1.502 0 0 0 0 0 0 0 +33.768 3.816 -1.106 0 0 0 0 0 0 0 +33.654 3.91 -1.102 0 0 0 0 0 0 0 +43.567 5.139 -1.487 0 0 0 0 0 0 0 +25.149 3.196 -0.773 0 0 0 0 0 0 0 +25.164 3.278 -0.774 0 0 0 0 0 0 0 +43.055 5.765 -1.471 0 0 0 0 0 0 0 +42.999 5.895 -1.469 0 0 0 0 0 0 0 +42.961 6.028 -1.468 0 0 0 0 0 0 0 +42.91 6.089 -1.467 0 0 0 0 0 0 0 +42.878 6.222 -1.466 0 0 0 0 0 0 0 +20.921 3.09 -0.611 0 0 0 0 0 0 0 +21.164 3.194 -0.621 0 0 0 0 0 0 0 +20.907 3.222 -0.611 0 0 0 0 0 0 0 +42.639 6.735 -1.46 0 0 0 0 0 0 0 +42.554 6.859 -1.458 0 0 0 0 0 0 0 +24.672 4.165 -0.761 0 0 0 0 0 0 0 +24.893 4.283 -0.77 0 0 0 0 0 0 0 +42.134 7.404 -1.445 0 0 0 0 0 0 0 +42.028 7.521 -1.442 0 0 0 0 0 0 0 +40.884 7.448 -1.398 0 0 0 0 0 0 0 +41.617 7.65 -1.427 0 0 0 0 0 0 0 +41.426 7.749 -1.421 0 0 0 0 0 0 0 +40.38 7.685 -1.381 0 0 0 0 0 0 0 +41.225 7.98 -1.415 0 0 0 0 0 0 0 +18.749 3.676 -0.533 0 0 0 0 0 0 0 +18.719 3.731 -0.532 0 0 0 0 0 0 0 +40.349 8.205 -1.383 0 0 0 0 0 0 0 +37.367 7.658 -1.266 0 0 0 0 0 0 0 +37.28 7.762 -1.264 0 0 0 0 0 0 0 +23.43 4.945 -0.719 0 0 0 0 0 0 0 +37.185 7.987 -1.262 0 0 0 0 0 0 0 +41.244 8.997 -1.423 0 0 0 0 0 0 0 +38.935 8.62 -1.333 0 0 0 0 0 0 0 +38.883 8.737 -1.332 0 0 0 0 0 0 0 +35.675 8.072 -1.206 0 0 0 0 0 0 0 +35.706 8.198 -1.208 0 0 0 0 0 0 0 +35.8 8.338 -1.213 0 0 0 0 0 0 0 +35.795 8.455 -1.214 0 0 0 0 0 0 0 +21.88 5.231 -0.663 0 0 0 0 0 0 0 +38.584 9.373 -1.327 0 0 0 0 0 0 0 +38.539 9.49 -1.326 0 0 0 0 0 0 0 +38.596 9.568 -1.329 0 0 0 0 0 0 0 +39.37 9.892 -1.361 0 0 0 0 0 0 0 +42.102 10.721 -1.471 0 0 0 0 0 0 0 +42.254 10.901 -1.478 0 0 0 0 0 0 0 +40.023 10.459 -1.391 0 0 0 0 0 0 0 +39.907 10.562 -1.387 0 0 0 0 0 0 0 +39.835 10.677 -1.386 0 0 0 0 0 0 0 +39.943 10.774 -1.391 0 0 0 0 0 0 0 +40.033 10.933 -1.396 0 0 0 0 0 0 0 +16.164 4.508 -0.443 0 0 0 0 0 0 0 +16.11 4.547 -0.441 0 0 0 0 0 0 0 +16.08 4.593 -0.441 0 0 0 0 0 0 0 +16.048 4.639 -0.44 0 0 0 0 0 0 0 +16.026 4.659 -0.439 0 0 0 0 0 0 0 +16.007 4.709 -0.439 0 0 0 0 0 0 0 +15.975 4.754 -0.439 0 0 0 0 0 0 0 +15.966 4.806 -0.439 0 0 0 0 0 0 0 +15.935 4.851 -0.438 0 0 0 0 0 0 0 +15.916 4.9 -0.438 0 0 0 0 0 0 0 +15.883 4.945 -0.437 0 0 0 0 0 0 0 +15.874 4.969 -0.437 0 0 0 0 0 0 0 +15.847 5.015 -0.437 0 0 0 0 0 0 0 +15.829 5.064 -0.437 0 0 0 0 0 0 0 +15.805 5.111 -0.436 0 0 0 0 0 0 0 +15.782 5.159 -0.436 0 0 0 0 0 0 0 +15.756 5.205 -0.436 0 0 0 0 0 0 0 +15.738 5.254 -0.436 0 0 0 0 0 0 0 +15.72 5.275 -0.435 0 0 0 0 0 0 0 +15.707 5.326 -0.435 0 0 0 0 0 0 0 +15.686 5.374 -0.435 0 0 0 0 0 0 0 +15.66 5.42 -0.435 0 0 0 0 0 0 0 +15.637 5.467 -0.435 0 0 0 0 0 0 0 +15.62 5.516 -0.435 0 0 0 0 0 0 0 +15.597 5.563 -0.434 0 0 0 0 0 0 0 +15.596 5.591 -0.435 0 0 0 0 0 0 0 +15.567 5.635 -0.434 0 0 0 0 0 0 0 +15.549 5.684 -0.434 0 0 0 0 0 0 0 +15.522 5.73 -0.434 0 0 0 0 0 0 0 +15.519 5.784 -0.434 0 0 0 0 0 0 0 +15.495 5.831 -0.434 0 0 0 0 0 0 0 +15.474 5.878 -0.434 0 0 0 0 0 0 0 +15.476 5.907 -0.435 0 0 0 0 0 0 0 +15.534 5.985 -0.438 0 0 0 0 0 0 0 +15.657 6.089 -0.444 0 0 0 0 0 0 0 +16.138 6.336 -0.464 0 0 0 0 0 0 0 +16.647 6.597 -0.486 0 0 0 0 0 0 0 +17.626 7.051 -0.528 0 0 0 0 0 0 0 +18.376 7.419 -0.56 0 0 0 0 0 0 0 +34.79 14.262 -1.245 0 0 0 0 0 0 0 +40.932 16.935 -1.504 0 0 0 0 0 0 0 +29.275 12.321 -1.02 0 0 0 0 0 0 0 +40.625 17.259 -1.498 0 0 0 0 0 0 0 +40.561 17.382 -1.497 0 0 0 0 0 0 0 +40.506 17.434 -1.496 0 0 0 0 0 0 0 +40.44 17.556 -1.496 0 0 0 0 0 0 0 +34.498 15.361 -1.252 0 0 0 0 0 0 0 +33.932 15.364 -1.232 0 0 0 0 0 0 0 +33.951 15.437 -1.234 0 0 0 0 0 0 0 +33.721 15.461 -1.226 0 0 0 0 0 0 0 +40.153 18.721 -1.504 0 0 0 0 0 0 0 +28.439 13.579 -1.011 0 0 0 0 0 0 0 +28.259 13.547 -1.004 0 0 0 0 0 0 0 +39.675 19.186 -1.495 0 0 0 0 0 0 0 +39.617 19.311 -1.495 0 0 0 0 0 0 0 +39.567 19.441 -1.495 0 0 0 0 0 0 0 +39.461 19.543 -1.494 0 0 0 0 0 0 0 +39.342 19.638 -1.491 0 0 0 0 0 0 0 +39.223 19.733 -1.489 0 0 0 0 0 0 0 +29.07 14.732 -1.052 0 0 0 0 0 0 0 +29.045 14.777 -1.052 0 0 0 0 0 0 0 +38.855 19.932 -1.479 0 0 0 0 0 0 0 +38.714 20.013 -1.476 0 0 0 0 0 0 0 +38.607 20.112 -1.474 0 0 0 0 0 0 0 +38.441 20.179 -1.47 0 0 0 0 0 0 0 +27.819 14.875 -1.012 0 0 0 0 0 0 0 +27.955 15.061 -1.02 0 0 0 0 0 0 0 +37.299 20.256 -1.432 0 0 0 0 0 0 0 +37.58 20.563 -1.447 0 0 0 0 0 0 0 +37.524 20.685 -1.448 0 0 0 0 0 0 0 +37.378 20.759 -1.444 0 0 0 0 0 0 0 +37.166 20.717 -1.436 0 0 0 0 0 0 0 +37.129 20.849 -1.438 0 0 0 0 0 0 0 +36.407 20.594 -1.408 0 0 0 0 0 0 0 +36.87 21.01 -1.432 0 0 0 0 0 0 0 +36.717 21.076 -1.428 0 0 0 0 0 0 0 +36.601 21.162 -1.426 0 0 0 0 0 0 0 +36.443 21.223 -1.422 0 0 0 0 0 0 0 +36.373 21.259 -1.42 0 0 0 0 0 0 0 +27.412 16.363 -1.027 0 0 0 0 0 0 0 +27.384 16.463 -1.028 0 0 0 0 0 0 0 +35.727 21.642 -1.406 0 0 0 0 0 0 0 +35.592 21.713 -1.403 0 0 0 0 0 0 0 +35.492 21.728 -1.4 0 0 0 0 0 0 0 +35.369 21.806 -1.398 0 0 0 0 0 0 0 +35.241 21.88 -1.395 0 0 0 0 0 0 0 +35.304 22.073 -1.401 0 0 0 0 0 0 0 +35.251 22.195 -1.402 0 0 0 0 0 0 0 +29.651 18.925 -1.152 0 0 0 0 0 0 0 +29.591 18.952 -1.151 0 0 0 0 0 0 0 +29.56 19.063 -1.152 0 0 0 0 0 0 0 +27.577 18.029 -1.066 0 0 0 0 0 0 0 +13.298 8.738 -0.409 0 0 0 0 0 0 0 +33.97 22.522 -1.367 0 0 0 0 0 0 0 +33.844 22.592 -1.365 0 0 0 0 0 0 0 +33.487 22.582 -1.353 0 0 0 0 0 0 0 +29.395 19.953 -1.166 0 0 0 0 0 0 0 +30.332 21.011 -1.218 0 0 0 0 0 0 0 +28.535 19.898 -1.137 0 0 0 0 0 0 0 +29.619 20.863 -1.193 0 0 0 0 0 0 0 +29.534 20.942 -1.192 0 0 0 0 0 0 0 +29.381 20.973 -1.188 0 0 0 0 0 0 0 +29.317 21.066 -1.188 0 0 0 0 0 0 0 +29.57 21.389 -1.203 0 0 0 0 0 0 0 +29.015 21.126 -1.18 0 0 0 0 0 0 0 +28.942 21.213 -1.179 0 0 0 0 0 0 0 +29.368 21.597 -1.201 0 0 0 0 0 0 0 +33.361 24.699 -1.396 0 0 0 0 0 0 0 +33.329 24.839 -1.398 0 0 0 0 0 0 0 +28.721 21.54 -1.18 0 0 0 0 0 0 0 +33.31 25.151 -1.405 0 0 0 0 0 0 0 +33.301 25.309 -1.408 0 0 0 0 0 0 0 +33.318 25.405 -1.411 0 0 0 0 0 0 0 +30.878 23.696 -1.296 0 0 0 0 0 0 0 +17.335 13.375 -0.64 0 0 0 0 0 0 0 +17.336 13.463 -0.642 0 0 0 0 0 0 0 +17.289 13.514 -0.642 0 0 0 0 0 0 0 +33.296 26.226 -1.43 0 0 0 0 0 0 0 +33.268 26.374 -1.433 0 0 0 0 0 0 0 +33.303 26.487 -1.436 0 0 0 0 0 0 0 +33.292 26.649 -1.44 0 0 0 0 0 0 0 +33.273 26.806 -1.443 0 0 0 0 0 0 0 +12.136 9.882 -0.399 0 0 0 0 0 0 0 +6.8 5.558 -0.135 0 0 0 0 0 0 0 +6.686 5.5 -0.13 0 0 0 0 0 0 0 +6.676 5.509 -0.13 0 0 0 0 0 0 0 +6.66 5.531 -0.13 0 0 0 0 0 0 0 +6.641 5.551 -0.13 0 0 0 0 0 0 0 +11.809 9.96 -0.392 0 0 0 0 0 0 0 +11.767 9.988 -0.391 0 0 0 0 0 0 0 +11.779 10.062 -0.393 0 0 0 0 0 0 0 +11.807 10.15 -0.396 0 0 0 0 0 0 0 +12.022 10.402 -0.409 0 0 0 0 0 0 0 +33.242 28.914 -1.494 0 0 0 0 0 0 0 +33.199 29.06 -1.497 0 0 0 0 0 0 0 +33.212 29.257 -1.502 0 0 0 0 0 0 0 +33.192 29.425 -1.506 0 0 0 0 0 0 0 +33.171 29.593 -1.51 0 0 0 0 0 0 0 +33.174 29.784 -1.515 0 0 0 0 0 0 0 +33.149 29.95 -1.518 0 0 0 0 0 0 0 +33.179 30.071 -1.522 0 0 0 0 0 0 0 +33.169 30.254 -1.527 0 0 0 0 0 0 0 +33.146 30.424 -1.53 0 0 0 0 0 0 0 +33.07 30.546 -1.531 0 0 0 0 0 0 0 +16.344 15.27 -0.658 0 0 0 0 0 0 0 +16.22 15.25 -0.654 0 0 0 0 0 0 0 +16.166 15.246 -0.653 0 0 0 0 0 0 0 +16.115 15.294 -0.652 0 0 0 0 0 0 0 +16.058 15.337 -0.652 0 0 0 0 0 0 0 +16.008 15.386 -0.652 0 0 0 0 0 0 0 +15.97 15.446 -0.652 0 0 0 0 0 0 0 +15.931 15.505 -0.653 0 0 0 0 0 0 0 +16.102 15.771 -0.665 0 0 0 0 0 0 0 +32.776 32.241 -1.568 0 0 0 0 0 0 0 +32.728 32.397 -1.571 0 0 0 0 0 0 0 +32.69 32.563 -1.575 0 0 0 0 0 0 0 +32.655 32.734 -1.578 0 0 0 0 0 0 0 +32.617 32.902 -1.582 0 0 0 0 0 0 0 +32.557 33.048 -1.584 0 0 0 0 0 0 0 +32.543 33.242 -1.589 0 0 0 0 0 0 0 +32.545 33.349 -1.592 0 0 0 0 0 0 0 +32.481 33.494 -1.595 0 0 0 0 0 0 0 +32.416 33.637 -1.597 0 0 0 0 0 0 0 +28.35 29.599 -1.376 0 0 0 0 0 0 0 +32.297 33.937 -1.602 0 0 0 0 0 0 0 +32.275 34.129 -1.607 0 0 0 0 0 0 0 +32.188 34.252 -1.608 0 0 0 0 0 0 0 +32.224 34.399 -1.613 0 0 0 0 0 0 0 +32.184 34.573 -1.617 0 0 0 0 0 0 0 +32.14 34.744 -1.621 0 0 0 0 0 0 0 +32.165 34.991 -1.628 0 0 0 0 0 0 0 +31.987 35.018 -1.624 0 0 0 0 0 0 0 +31.931 35.177 -1.627 0 0 0 0 0 0 0 +31.85 35.31 -1.629 0 0 0 0 0 0 0 +31.821 35.39 -1.631 0 0 0 0 0 0 0 +31.738 35.521 -1.632 0 0 0 0 0 0 0 +17.166 19.317 -0.792 0 0 0 0 0 0 0 +17.042 19.299 -0.789 0 0 0 0 0 0 0 +17.138 19.531 -0.798 0 0 0 0 0 0 0 +17.138 19.656 -0.801 0 0 0 0 0 0 0 +16.808 19.461 -0.787 0 0 0 0 0 0 0 +16.777 19.548 -0.789 0 0 0 0 0 0 0 +16.658 19.534 -0.786 0 0 0 0 0 0 0 +16.605 19.595 -0.786 0 0 0 0 0 0 0 +16.571 19.681 -0.788 0 0 0 0 0 0 0 +16.507 19.73 -0.788 0 0 0 0 0 0 0 +16.437 19.773 -0.787 0 0 0 0 0 0 0 +21.02 25.378 -1.066 0 0 0 0 0 0 0 +20.795 25.429 -1.062 0 0 0 0 0 0 0 +19.165 23.584 -0.967 0 0 0 0 0 0 0 +19.057 23.602 -0.965 0 0 0 0 0 0 0 +18.969 23.645 -0.965 0 0 0 0 0 0 0 +18.924 23.742 -0.966 0 0 0 0 0 0 0 +18.855 23.731 -0.964 0 0 0 0 0 0 0 +30.075 38.123 -1.668 0 0 0 0 0 0 0 +19.898 25.372 -1.039 0 0 0 0 0 0 0 +18.901 24.256 -0.981 0 0 0 0 0 0 0 +18.815 24.303 -0.981 0 0 0 0 0 0 0 +19.11 24.845 -1.004 0 0 0 0 0 0 0 +19.18 25.099 -1.014 0 0 0 0 0 0 0 +18.914 24.912 -1.002 0 0 0 0 0 0 0 +18.769 24.801 -0.995 0 0 0 0 0 0 0 +17.586 23.388 -0.924 0 0 0 0 0 0 0 +20.584 27.562 -1.122 0 0 0 0 0 0 0 +18.785 25.316 -1.011 0 0 0 0 0 0 0 +20.354 27.616 -1.118 0 0 0 0 0 0 0 +20.325 27.758 -1.122 0 0 0 0 0 0 0 +20.213 27.788 -1.121 0 0 0 0 0 0 0 +18.827 25.965 -1.032 0 0 0 0 0 0 0 +18.683 25.938 -1.028 0 0 0 0 0 0 0 +18.586 25.975 -1.027 0 0 0 0 0 0 0 +18.587 26.149 -1.033 0 0 0 0 0 0 0 +18.611 26.358 -1.04 0 0 0 0 0 0 0 +18.677 26.629 -1.05 0 0 0 0 0 0 0 +18.629 26.65 -1.049 0 0 0 0 0 0 0 +18.559 26.728 -1.05 0 0 0 0 0 0 0 +16.956 24.58 -0.947 0 0 0 0 0 0 0 +18.023 26.306 -1.025 0 0 0 0 0 0 0 +16.833 24.733 -0.949 0 0 0 0 0 0 0 +17.993 26.619 -1.035 0 0 0 0 0 0 0 +19.407 28.912 -1.138 0 0 0 0 0 0 0 +17.956 26.837 -1.041 0 0 0 0 0 0 0 +17.804 26.792 -1.036 0 0 0 0 0 0 0 +17.694 26.809 -1.034 0 0 0 0 0 0 0 +17.555 26.781 -1.03 0 0 0 0 0 0 0 +17.564 26.978 -1.037 0 0 0 0 0 0 0 +17.732 27.426 -1.055 0 0 0 0 0 0 0 +17.65 27.489 -1.055 0 0 0 0 0 0 0 +17.719 27.787 -1.066 0 0 0 0 0 0 0 +17.554 27.624 -1.058 0 0 0 0 0 0 0 +16.143 25.577 -0.962 0 0 0 0 0 0 0 +16.171 25.8 -0.97 0 0 0 0 0 0 0 +15.775 25.524 -0.953 0 0 0 0 0 0 0 +18.146 29.575 -1.134 0 0 0 0 0 0 0 +17.087 28.044 -1.062 0 0 0 0 0 0 0 +16.788 27.65 -1.043 0 0 0 0 0 0 0 +16.473 27.322 -1.026 0 0 0 0 0 0 0 +16.669 27.846 -1.047 0 0 0 0 0 0 0 +16.705 28.108 -1.056 0 0 0 0 0 0 0 +16.635 28.191 -1.058 0 0 0 0 0 0 0 +14.965 25.538 -0.937 0 0 0 0 0 0 0 +14.947 25.692 -0.942 0 0 0 0 0 0 0 +14.925 25.841 -0.946 0 0 0 0 0 0 0 +14.948 25.975 -0.951 0 0 0 0 0 0 0 +14.926 26.126 -0.956 0 0 0 0 0 0 0 +14.906 26.285 -0.961 0 0 0 0 0 0 0 +14.892 26.453 -0.966 0 0 0 0 0 0 0 +14.888 26.641 -0.973 0 0 0 0 0 0 0 +14.745 26.878 -0.978 0 0 0 0 0 0 0 +12.629 23.186 -0.814 0 0 0 0 0 0 0 +12.544 23.204 -0.813 0 0 0 0 0 0 0 +12.477 23.254 -0.813 0 0 0 0 0 0 0 +12.428 23.339 -0.815 0 0 0 0 0 0 0 +12.288 23.251 -0.81 0 0 0 0 0 0 0 +12.213 23.286 -0.81 0 0 0 0 0 0 0 +12.176 23.305 -0.81 0 0 0 0 0 0 0 +12.079 23.297 -0.808 0 0 0 0 0 0 0 +14.653 28.493 -1.031 0 0 0 0 0 0 0 +14.625 28.66 -1.036 0 0 0 0 0 0 0 +14.59 28.814 -1.041 0 0 0 0 0 0 0 +14.556 28.973 -1.046 0 0 0 0 0 0 0 +14.514 29.117 -1.05 0 0 0 0 0 0 0 +14.53 29.265 -1.056 0 0 0 0 0 0 0 +14.286 29.233 -1.05 0 0 0 0 0 0 0 +14.17 29.228 -1.048 0 0 0 0 0 0 0 +14.041 29.195 -1.045 0 0 0 0 0 0 0 +13.927 29.192 -1.043 0 0 0 0 0 0 0 +13.81 29.183 -1.041 0 0 0 0 0 0 0 +13.775 29.226 -1.042 0 0 0 0 0 0 0 +13.799 29.517 -1.052 0 0 0 0 0 0 0 +13.703 29.555 -1.052 0 0 0 0 0 0 0 +14.707 31.989 -1.153 0 0 0 0 0 0 0 +15.009 32.919 -1.191 0 0 0 0 0 0 0 +14.941 33.044 -1.194 0 0 0 0 0 0 0 +14.563 32.48 -1.168 0 0 0 0 0 0 0 +14.432 32.322 -1.161 0 0 0 0 0 0 0 +14.346 32.402 -1.162 0 0 0 0 0 0 0 +14.277 32.522 -1.165 0 0 0 0 0 0 0 +14.166 32.548 -1.164 0 0 0 0 0 0 0 +14.18 32.862 -1.176 0 0 0 0 0 0 0 +14.136 33.044 -1.182 0 0 0 0 0 0 0 +14.016 33.052 -1.18 0 0 0 0 0 0 0 +13.962 33.068 -1.18 0 0 0 0 0 0 0 +13.915 33.248 -1.185 0 0 0 0 0 0 0 +13.876 33.449 -1.192 0 0 0 0 0 0 0 +13.884 33.77 -1.204 0 0 0 0 0 0 0 +13.81 33.893 -1.207 0 0 0 0 0 0 0 +13.673 33.858 -1.204 0 0 0 0 0 0 0 +13.596 33.975 -1.207 0 0 0 0 0 0 0 +13.518 34.092 -1.21 0 0 0 0 0 0 0 +13.934 35.303 -1.259 0 0 0 0 0 0 0 +13.871 35.47 -1.264 0 0 0 0 0 0 0 +13.513 34.876 -1.238 0 0 0 0 0 0 0 +13.529 35.248 -1.251 0 0 0 0 0 0 0 +14.262 37.514 -1.343 0 0 0 0 0 0 0 +14.168 37.622 -1.346 0 0 0 0 0 0 0 +14.254 38.215 -1.368 0 0 0 0 0 0 0 +14.319 38.575 -1.382 0 0 0 0 0 0 0 +14.354 39.044 -1.4 0 0 0 0 0 0 0 +14.352 39.421 -1.413 0 0 0 0 0 0 0 +14.302 39.671 -1.422 0 0 0 0 0 0 0 +14.249 39.917 -1.43 0 0 0 0 0 0 0 +14.43 40.831 -1.465 0 0 0 0 0 0 0 +14.397 41.149 -1.477 0 0 0 0 0 0 0 +15.008 43.117 -1.556 0 0 0 0 0 0 0 +14.847 43.09 -1.553 0 0 0 0 0 0 0 +14.765 43.293 -1.559 0 0 0 0 0 0 0 +15.751 46.669 -1.695 0 0 0 0 0 0 0 +15.628 46.792 -1.698 0 0 0 0 0 0 0 +15.506 46.917 -1.701 0 0 0 0 0 0 0 +15.379 47.028 -1.703 0 0 0 0 0 0 0 +15.334 47.14 -1.707 0 0 0 0 0 0 0 +15.21 47.262 -1.71 0 0 0 0 0 0 0 +15.077 47.359 -1.712 0 0 0 0 0 0 0 +14.946 47.463 -1.714 0 0 0 0 0 0 0 +14.831 47.619 -1.719 0 0 0 0 0 0 0 +12.679 42.335 -1.5 0 0 0 0 0 0 0 +12.54 42.355 -1.499 0 0 0 0 0 0 0 +15.315 52.971 -1.922 0 0 0 0 0 0 0 +15.196 53.182 -1.928 0 0 0 0 0 0 0 +15.055 53.324 -1.932 0 0 0 0 0 0 0 +14.93 53.525 -1.938 0 0 0 0 0 0 0 +14.867 53.624 -1.941 0 0 0 0 0 0 0 +14.731 53.788 -1.946 0 0 0 0 0 0 0 +14.593 53.949 -1.95 0 0 0 0 0 0 0 +14.46 54.134 -1.956 0 0 0 0 0 0 0 +14.327 54.32 -1.962 0 0 0 0 0 0 0 +8.302 32.466 -1.088 0 0 0 0 0 0 0 +8.19 32.455 -1.086 0 0 0 0 0 0 0 +7.985 32.5 -1.086 0 0 0 0 0 0 0 +7.875 32.492 -1.085 0 0 0 0 0 0 0 +7.763 32.478 -1.083 0 0 0 0 0 0 0 +7.661 32.5 -1.083 0 0 0 0 0 0 0 +7.609 32.508 -1.083 0 0 0 0 0 0 0 +7.506 32.53 -1.083 0 0 0 0 0 0 0 +7.416 32.604 -1.085 0 0 0 0 0 0 0 +7.305 32.59 -1.084 0 0 0 0 0 0 0 +7.195 32.58 -1.082 0 0 0 0 0 0 0 +7.152 32.876 -1.093 0 0 0 0 0 0 0 +0.729 3.369 0.071 0 0 0 0 0 0 0 +6.998 32.66 -1.084 0 0 0 0 0 0 0 +0.721 3.383 0.071 0 0 0 0 0 0 0 +2.623 12.855 -0.302 0 0 0 0 0 0 0 +0.687 3.382 0.071 0 0 0 0 0 0 0 +2.581 12.853 -0.301 0 0 0 0 0 0 0 +0.657 3.368 0.072 0 0 0 0 0 0 0 +3.405 17.58 -0.486 0 0 0 0 0 0 0 +0.648 3.376 0.071 0 0 0 0 0 0 0 +3.408 17.901 -0.498 0 0 0 0 0 0 0 +0.638 3.383 0.071 0 0 0 0 0 0 0 +0.628 3.389 0.071 0 0 0 0 0 0 0 +0.607 3.395 0.071 0 0 0 0 0 0 0 +3.927 22.373 -0.672 0 0 0 0 0 0 0 +3.728 22.05 -0.658 0 0 0 0 0 0 0 +0.552 3.287 0.075 0 0 0 0 0 0 0 +3.716 22.194 -0.663 0 0 0 0 0 0 0 +0.546 3.317 0.074 0 0 0 0 0 0 0 +4.255 25.939 -0.809 0 0 0 0 0 0 0 +0.537 3.332 0.074 0 0 0 0 0 0 0 +0.53 3.354 0.073 0 0 0 0 0 0 0 +0.521 3.369 0.073 0 0 0 0 0 0 0 +0.519 3.392 0.072 0 0 0 0 0 0 0 +0.506 3.373 0.072 0 0 0 0 0 0 0 +0.493 3.361 0.073 0 0 0 0 0 0 0 +0.481 3.351 0.073 0 0 0 0 0 0 0 +0.47 3.35 0.074 0 0 0 0 0 0 0 +0.456 3.322 0.075 0 0 0 0 0 0 0 +0.443 3.308 0.075 0 0 0 0 0 0 0 +0.436 3.294 0.076 0 0 0 0 0 0 0 +0.425 3.29 0.076 0 0 0 0 0 0 0 +0.416 3.295 0.076 0 0 0 0 0 0 0 +0.405 3.296 0.076 0 0 0 0 0 0 0 +0.395 3.296 0.076 0 0 0 0 0 0 0 +0.384 3.297 0.076 0 0 0 0 0 0 0 +0.375 3.304 0.076 0 0 0 0 0 0 0 +0.365 3.315 0.075 0 0 0 0 0 0 0 +0.359 3.306 0.076 0 0 0 0 0 0 0 +0.348 3.301 0.076 0 0 0 0 0 0 0 +0.338 3.31 0.076 0 0 0 0 0 0 0 +0.329 3.321 0.075 0 0 0 0 0 0 0 +0.318 3.314 0.076 0 0 0 0 0 0 0 +0.307 3.313 0.076 0 0 0 0 0 0 0 +0.297 3.318 0.076 0 0 0 0 0 0 0 +0.292 3.316 0.076 0 0 0 0 0 0 0 +0.281 3.311 0.076 0 0 0 0 0 0 0 +0.27 3.306 0.076 0 0 0 0 0 0 0 +0.26 3.311 0.076 0 0 0 0 0 0 0 +0.25 3.322 0.076 0 0 0 0 0 0 0 +0.24 3.327 0.075 0 0 0 0 0 0 0 +0.23 3.337 0.075 0 0 0 0 0 0 0 +0.223 3.312 0.076 0 0 0 0 0 0 0 +0.214 3.338 0.075 0 0 0 0 0 0 0 +0.203 3.323 0.076 0 0 0 0 0 0 0 +0.193 3.336 0.075 0 0 0 0 0 0 0 +0.182 3.33 0.075 0 0 0 0 0 0 0 +0.172 3.327 0.076 0 0 0 0 0 0 0 +0.161 3.323 0.076 0 0 0 0 0 0 0 +0.156 3.332 0.075 0 0 0 0 0 0 0 +0.146 3.334 0.075 0 0 0 0 0 0 0 +0.135 3.336 0.075 0 0 0 0 0 0 0 +0.125 3.343 0.075 0 0 0 0 0 0 0 +0.093 3.318 0.076 0 0 0 0 0 0 0 +0.088 3.342 0.075 0 0 0 0 0 0 0 +0.078 3.328 0.076 0 0 0 0 0 0 0 +0.067 3.337 0.075 0 0 0 0 0 0 0 +0.057 3.363 0.074 0 0 0 0 0 0 0 +0.229 33.276 -1.079 0 0 0 0 0 0 0 +0.122 32.545 -1.051 0 0 0 0 0 0 0 +0.02 31.686 -1.017 0 0 0 0 0 0 0 +-0.077 31.013 -0.992 0 0 0 0 0 0 0 +-0.123 30.309 -0.964 0 0 0 0 0 0 0 +-0.213 29.651 -0.939 0 0 0 0 0 0 0 +-0.299 29.013 -0.914 0 0 0 0 0 0 0 +-0.381 28.394 -0.891 0 0 0 0 0 0 0 +-0.459 27.779 -0.867 0 0 0 0 0 0 0 +-0.535 27.226 -0.846 0 0 0 0 0 0 0 +-0.609 26.721 -0.826 0 0 0 0 0 0 0 +-0.636 26.137 -0.804 0 0 0 0 0 0 0 +-0.704 25.637 -0.785 0 0 0 0 0 0 0 +-0.771 25.209 -0.768 0 0 0 0 0 0 0 +-0.835 24.755 -0.751 0 0 0 0 0 0 0 +-0.894 24.265 -0.732 0 0 0 0 0 0 0 +-0.954 23.867 -0.717 0 0 0 0 0 0 0 +-1.009 23.417 -0.7 0 0 0 0 0 0 0 +-1.036 23.197 -0.691 0 0 0 0 0 0 0 +-1.079 22.591 -0.668 0 0 0 0 0 0 0 +-1.132 22.244 -0.655 0 0 0 0 0 0 0 +-1.183 21.889 -0.641 0 0 0 0 0 0 0 +-1.231 21.534 -0.628 0 0 0 0 0 0 0 +-1.278 21.193 -0.615 0 0 0 0 0 0 0 +-1.324 20.872 -0.602 0 0 0 0 0 0 0 +-1.368 20.555 -0.59 0 0 0 0 0 0 0 +-1.427 20.018 -0.57 0 0 0 0 0 0 0 +-1.499 20.131 -0.574 0 0 0 0 0 0 0 +-1.503 19.377 -0.545 0 0 0 0 0 0 0 +-1.537 19.054 -0.533 0 0 0 0 0 0 0 +-1.576 18.8 -0.523 0 0 0 0 0 0 0 +-1.611 18.518 -0.513 0 0 0 0 0 0 0 +-1.622 18.316 -0.505 0 0 0 0 0 0 0 +-1.647 17.967 -0.492 0 0 0 0 0 0 0 +-1.688 17.799 -0.485 0 0 0 0 0 0 0 +-1.865 16.17 -0.424 0 0 0 0 0 0 0 +-1.891 15.958 -0.416 0 0 0 0 0 0 0 +-2.095 14.401 -0.357 0 0 0 0 0 0 0 +-2.167 14.572 -0.364 0 0 0 0 0 0 0 +-2.131 14.182 -0.349 0 0 0 0 0 0 0 +-2.32 12.61 -0.29 0 0 0 0 0 0 0 +-2.392 12.772 -0.297 0 0 0 0 0 0 0 +-2.363 12.409 -0.283 0 0 0 0 0 0 0 +-2.418 12.482 -0.286 0 0 0 0 0 0 0 +-2.441 12.496 -0.287 0 0 0 0 0 0 0 +-2.466 11.839 -0.262 0 0 0 0 0 0 0 +-2.491 11.772 -0.26 0 0 0 0 0 0 0 +-2.541 11.563 -0.252 0 0 0 0 0 0 0 +-2.579 11.563 -0.253 0 0 0 0 0 0 0 +-2.617 11.562 -0.253 0 0 0 0 0 0 0 +-2.528 10.857 -0.226 0 0 0 0 0 0 0 +-2.593 10.977 -0.231 0 0 0 0 0 0 0 +-2.54 10.684 -0.219 0 0 0 0 0 0 0 +-2.578 10.691 -0.22 0 0 0 0 0 0 0 +-2.845 11.63 -0.258 0 0 0 0 0 0 0 +-2.884 11.631 -0.258 0 0 0 0 0 0 0 +-2.968 11.657 -0.26 0 0 0 0 0 0 0 +-3.005 11.647 -0.26 0 0 0 0 0 0 0 +-3.012 11.6 -0.258 0 0 0 0 0 0 0 +-2.997 11.395 -0.25 0 0 0 0 0 0 0 +-3.036 11.398 -0.251 0 0 0 0 0 0 0 +-3.069 11.38 -0.25 0 0 0 0 0 0 0 +-3.117 11.413 -0.252 0 0 0 0 0 0 0 +-3.136 11.343 -0.25 0 0 0 0 0 0 0 +-3.174 11.341 -0.25 0 0 0 0 0 0 0 +-3.216 11.352 -0.251 0 0 0 0 0 0 0 +-3.243 11.382 -0.252 0 0 0 0 0 0 0 +-3.267 11.329 -0.251 0 0 0 0 0 0 0 +-3.314 11.357 -0.252 0 0 0 0 0 0 0 +-2.894 9.816 -0.191 0 0 0 0 0 0 0 +-2.926 9.813 -0.191 0 0 0 0 0 0 0 +-2.964 9.825 -0.192 0 0 0 0 0 0 0 +-2.792 9.108 -0.163 0 0 0 0 0 0 0 +-2.804 9.046 -0.161 0 0 0 0 0 0 0 +-2.82 8.997 -0.16 0 0 0 0 0 0 0 +-2.827 8.922 -0.157 0 0 0 0 0 0 0 +-2.851 8.899 -0.156 0 0 0 0 0 0 0 +-2.858 8.828 -0.154 0 0 0 0 0 0 0 +-2.876 8.788 -0.152 0 0 0 0 0 0 0 +-2.907 8.837 -0.155 0 0 0 0 0 0 0 +-2.92 8.692 -0.149 0 0 0 0 0 0 0 +-2.969 8.747 -0.152 0 0 0 0 0 0 0 +-2.998 8.743 -0.152 0 0 0 0 0 0 0 +-3.041 8.777 -0.154 0 0 0 0 0 0 0 +-3.065 8.756 -0.154 0 0 0 0 0 0 0 +-3.092 8.789 -0.155 0 0 0 0 0 0 0 +-3.112 8.758 -0.154 0 0 0 0 0 0 0 +-3.147 8.769 -0.155 0 0 0 0 0 0 0 +-3.044 8.403 -0.141 0 0 0 0 0 0 0 +-3.059 8.363 -0.139 0 0 0 0 0 0 0 +-3.069 8.308 -0.137 0 0 0 0 0 0 0 +-3.074 8.243 -0.135 0 0 0 0 0 0 0 +-3.082 8.186 -0.133 0 0 0 0 0 0 0 +-4.375 11.535 -0.272 0 0 0 0 0 0 0 +-4.405 11.506 -0.271 0 0 0 0 0 0 0 +-4.48 11.593 -0.275 0 0 0 0 0 0 0 +-4.532 11.618 -0.277 0 0 0 0 0 0 0 +-4.563 11.588 -0.276 0 0 0 0 0 0 0 +-4.15 10.451 -0.23 0 0 0 0 0 0 0 +-4.166 10.396 -0.228 0 0 0 0 0 0 0 +-4.174 10.369 -0.227 0 0 0 0 0 0 0 +-4.207 10.357 -0.227 0 0 0 0 0 0 0 +-4.247 10.363 -0.228 0 0 0 0 0 0 0 +-4.273 10.333 -0.227 0 0 0 0 0 0 0 +-3.546 8.51 -0.151 0 0 0 0 0 0 0 +-3.568 8.487 -0.151 0 0 0 0 0 0 0 +-3.595 8.478 -0.151 0 0 0 0 0 0 0 +-3.614 8.485 -0.152 0 0 0 0 0 0 0 +-3.668 8.536 -0.154 0 0 0 0 0 0 0 +-3.688 8.51 -0.154 0 0 0 0 0 0 0 +-3.794 8.678 -0.161 0 0 0 0 0 0 0 +-3.342 7.461 -0.111 0 0 0 0 0 0 0 +-3.368 7.487 -0.113 0 0 0 0 0 0 0 +-3.371 7.433 -0.111 0 0 0 0 0 0 0 +-3.922 8.495 -0.157 0 0 0 0 0 0 0 +-3.95 8.486 -0.157 0 0 0 0 0 0 0 +-4.027 8.58 -0.161 0 0 0 0 0 0 0 +-3.951 8.351 -0.152 0 0 0 0 0 0 0 +-3.675 7.71 -0.125 0 0 0 0 0 0 0 +-3.693 7.715 -0.126 0 0 0 0 0 0 0 +-3.723 7.716 -0.126 0 0 0 0 0 0 0 +-3.752 7.713 -0.127 0 0 0 0 0 0 0 +-3.786 7.723 -0.128 0 0 0 0 0 0 0 +-3.82 7.729 -0.128 0 0 0 0 0 0 0 +-3.853 7.735 -0.129 0 0 0 0 0 0 0 +-3.879 7.726 -0.129 0 0 0 0 0 0 0 +-3.9 7.738 -0.13 0 0 0 0 0 0 0 +-3.926 7.729 -0.13 0 0 0 0 0 0 0 +-3.959 7.733 -0.131 0 0 0 0 0 0 0 +-3.995 7.743 -0.132 0 0 0 0 0 0 0 +-4.029 7.749 -0.133 0 0 0 0 0 0 0 +-4.052 7.734 -0.133 0 0 0 0 0 0 0 +-4.089 7.746 -0.134 0 0 0 0 0 0 0 +-4.101 7.74 -0.134 0 0 0 0 0 0 0 +-4.138 7.75 -0.135 0 0 0 0 0 0 0 +-4.169 7.749 -0.135 0 0 0 0 0 0 0 +-4.214 7.772 -0.137 0 0 0 0 0 0 0 +-4.227 7.74 -0.136 0 0 0 0 0 0 0 +-4.265 7.751 -0.137 0 0 0 0 0 0 0 +-4.299 7.755 -0.138 0 0 0 0 0 0 0 +-4.324 7.771 -0.139 0 0 0 0 0 0 0 +-4.355 7.77 -0.139 0 0 0 0 0 0 0 +-4.388 7.77 -0.14 0 0 0 0 0 0 0 +-4.421 7.772 -0.141 0 0 0 0 0 0 0 +-4.456 7.777 -0.142 0 0 0 0 0 0 0 +-4.491 7.78 -0.142 0 0 0 0 0 0 0 +-4.531 7.793 -0.144 0 0 0 0 0 0 0 +-4.556 7.779 -0.144 0 0 0 0 0 0 0 +-4.575 7.784 -0.144 0 0 0 0 0 0 0 +-5.23 8.827 -0.192 0 0 0 0 0 0 0 +-5.243 8.602 -0.184 0 0 0 0 0 0 0 +-5.263 8.574 -0.184 0 0 0 0 0 0 0 +-5.228 8.487 -0.18 0 0 0 0 0 0 0 +-5.2 8.383 -0.176 0 0 0 0 0 0 0 +-5.198 8.322 -0.174 0 0 0 0 0 0 0 +-5.254 8.353 -0.176 0 0 0 0 0 0 0 +-5.344 8.436 -0.181 0 0 0 0 0 0 0 +-5.254 8.238 -0.173 0 0 0 0 0 0 0 +-19.772 30.656 -1.202 0 0 0 0 0 0 0 +-19.869 30.595 -1.202 0 0 0 0 0 0 0 +-5.085 7.68 -0.151 0 0 0 0 0 0 0 +-5.267 7.847 -0.16 0 0 0 0 0 0 0 +-21.455 31.603 -1.268 0 0 0 0 0 0 0 +-21.638 31.765 -1.278 0 0 0 0 0 0 0 +-17.818 25.989 -1.011 0 0 0 0 0 0 0 +-21.993 31.854 -1.288 0 0 0 0 0 0 0 +-18.459 26.564 -1.043 0 0 0 0 0 0 0 +-22.957 32.805 -1.34 0 0 0 0 0 0 0 +-19.419 27.573 -1.096 0 0 0 0 0 0 0 +-19.529 27.544 -1.098 0 0 0 0 0 0 0 +-17.923 25.199 -0.988 0 0 0 0 0 0 0 +-18.046 25.204 -0.991 0 0 0 0 0 0 0 +-18.804 26.087 -1.036 0 0 0 0 0 0 0 +-19.302 26.6 -1.063 0 0 0 0 0 0 0 +-19.35 26.491 -1.061 0 0 0 0 0 0 0 +-19.432 26.428 -1.061 0 0 0 0 0 0 0 +-19.484 26.326 -1.059 0 0 0 0 0 0 0 +-19.53 26.301 -1.059 0 0 0 0 0 0 0 +-19.553 26.16 -1.055 0 0 0 0 0 0 0 +-19.644 26.111 -1.056 0 0 0 0 0 0 0 +-19.63 25.922 -1.049 0 0 0 0 0 0 0 +-19.752 25.914 -1.052 0 0 0 0 0 0 0 +-19.552 25.486 -1.034 0 0 0 0 0 0 0 +-19.663 25.464 -1.036 0 0 0 0 0 0 0 +-19.836 25.522 -1.042 0 0 0 0 0 0 0 +-19.932 25.563 -1.046 0 0 0 0 0 0 0 +-19.984 25.464 -1.044 0 0 0 0 0 0 0 +-20.069 25.407 -1.044 0 0 0 0 0 0 0 +-20.179 25.382 -1.046 0 0 0 0 0 0 0 +-20.575 25.713 -1.065 0 0 0 0 0 0 0 +-20.698 25.701 -1.068 0 0 0 0 0 0 0 +-20.727 25.572 -1.065 0 0 0 0 0 0 0 +-20.892 25.693 -1.073 0 0 0 0 0 0 0 +-21.097 25.779 -1.08 0 0 0 0 0 0 0 +-21.39 25.97 -1.093 0 0 0 0 0 0 0 +-21.492 25.927 -1.094 0 0 0 0 0 0 0 +-21.927 26.283 -1.115 0 0 0 0 0 0 0 +-22.111 26.334 -1.122 0 0 0 0 0 0 0 +-22.279 26.366 -1.127 0 0 0 0 0 0 0 +-23.343 27.536 -1.188 0 0 0 0 0 0 0 +-11.939 13.925 -0.503 0 0 0 0 0 0 0 +-12.031 13.943 -0.506 0 0 0 0 0 0 0 +-12.105 13.94 -0.508 0 0 0 0 0 0 0 +-12.141 13.893 -0.507 0 0 0 0 0 0 0 +-12.196 13.868 -0.508 0 0 0 0 0 0 0 +-23.44 26.532 -1.161 0 0 0 0 0 0 0 +-23.358 26.274 -1.151 0 0 0 0 0 0 0 +-23.347 26.096 -1.146 0 0 0 0 0 0 0 +-23.439 26.033 -1.146 0 0 0 0 0 0 0 +-23.565 26.008 -1.149 0 0 0 0 0 0 0 +-23.728 26.024 -1.154 0 0 0 0 0 0 0 +-36.478 39.734 -1.875 0 0 0 0 0 0 0 +-36.622 39.765 -1.88 0 0 0 0 0 0 0 +-38.043 41.048 -1.953 0 0 0 0 0 0 0 +-38.364 41.134 -1.964 0 0 0 0 0 0 0 +-38.362 40.874 -1.957 0 0 0 0 0 0 0 +-38.472 40.734 -1.956 0 0 0 0 0 0 0 +-21.696 22.843 -1.01 0 0 0 0 0 0 0 +-21.67 22.674 -1.005 0 0 0 0 0 0 0 +-21.701 22.564 -1.003 0 0 0 0 0 0 0 +-21.728 22.521 -1.002 0 0 0 0 0 0 0 +-21.83 22.485 -1.004 0 0 0 0 0 0 0 +-22.114 22.634 -1.016 0 0 0 0 0 0 0 +-22.021 22.398 -1.007 0 0 0 0 0 0 0 +-39.048 39.44 -1.935 0 0 0 0 0 0 0 +-32.184 32.31 -1.554 0 0 0 0 0 0 0 +-32.026 31.95 -1.54 0 0 0 0 0 0 0 +-31.618 31.445 -1.515 0 0 0 0 0 0 0 +-31.552 31.183 -1.506 0 0 0 0 0 0 0 +-39.304 38.592 -1.919 0 0 0 0 0 0 0 +-39.415 38.458 -1.919 0 0 0 0 0 0 0 +-31.629 30.483 -1.489 0 0 0 0 0 0 0 +-39.9 38.204 -1.925 0 0 0 0 0 0 0 +-40.067 38.243 -1.931 0 0 0 0 0 0 0 +-40.446 38.363 -1.945 0 0 0 0 0 0 0 +-40.581 38.25 -1.946 0 0 0 0 0 0 0 +-32.789 30.718 -1.528 0 0 0 0 0 0 0 +-32.726 30.467 -1.52 0 0 0 0 0 0 0 +-32.622 29.99 -1.504 0 0 0 0 0 0 0 +-33.887 31.053 -1.568 0 0 0 0 0 0 0 +-32.871 29.934 -1.51 0 0 0 0 0 0 0 +-32.753 29.639 -1.499 0 0 0 0 0 0 0 +-32.916 29.599 -1.502 0 0 0 0 0 0 0 +-33.101 29.578 -1.507 0 0 0 0 0 0 0 +-20.574 18.282 -0.857 0 0 0 0 0 0 0 +-20.518 18.117 -0.851 0 0 0 0 0 0 0 +-20.444 17.995 -0.846 0 0 0 0 0 0 0 +-20.651 18.062 -0.854 0 0 0 0 0 0 0 +-31.858 27.669 -1.423 0 0 0 0 0 0 0 +-31.88 27.513 -1.419 0 0 0 0 0 0 0 +-31.972 27.418 -1.42 0 0 0 0 0 0 0 +-19.866 16.941 -0.802 0 0 0 0 0 0 0 +-36.246 30.685 -1.627 0 0 0 0 0 0 0 +-31.832 26.781 -1.4 0 0 0 0 0 0 0 +-31.869 26.727 -1.399 0 0 0 0 0 0 0 +-31.881 26.567 -1.396 0 0 0 0 0 0 0 +-33.794 27.624 -1.479 0 0 0 0 0 0 0 +-33.823 27.295 -1.471 0 0 0 0 0 0 0 +-33.662 27.078 -1.461 0 0 0 0 0 0 0 +-33.791 27.007 -1.464 0 0 0 0 0 0 0 +-33.965 26.972 -1.468 0 0 0 0 0 0 0 +-33.827 26.518 -1.453 0 0 0 0 0 0 0 +-33.889 26.395 -1.452 0 0 0 0 0 0 0 +-33.863 26.204 -1.447 0 0 0 0 0 0 0 +-34.096 26.299 -1.456 0 0 0 0 0 0 0 +-34.119 26.146 -1.453 0 0 0 0 0 0 0 +-34.116 25.974 -1.449 0 0 0 0 0 0 0 +-18.542 13.948 -0.69 0 0 0 0 0 0 0 +-18.547 13.861 -0.689 0 0 0 0 0 0 0 +-18.712 13.894 -0.694 0 0 0 0 0 0 0 +-36.547 27.015 -1.548 0 0 0 0 0 0 0 +-36.607 26.883 -1.547 0 0 0 0 0 0 0 +-36.721 26.789 -1.548 0 0 0 0 0 0 0 +-36.876 26.725 -1.552 0 0 0 0 0 0 0 +-37.015 26.649 -1.554 0 0 0 0 0 0 0 +-37.144 26.565 -1.556 0 0 0 0 0 0 0 +-33.043 23.479 -1.359 0 0 0 0 0 0 0 +-32.96 23.265 -1.351 0 0 0 0 0 0 0 +-37.379 26.292 -1.558 0 0 0 0 0 0 0 +-31.557 21.906 -1.277 0 0 0 0 0 0 0 +-33.015 22.764 -1.342 0 0 0 0 0 0 0 +-32.88 22.519 -1.332 0 0 0 0 0 0 0 +-31.425 21.379 -1.261 0 0 0 0 0 0 0 +-31.475 21.269 -1.26 0 0 0 0 0 0 0 +-31.391 20.855 -1.249 0 0 0 0 0 0 0 +-6.797 4.479 -0.11 0 0 0 0 0 0 0 +-6.74 4.411 -0.107 0 0 0 0 0 0 0 +-6.744 4.384 -0.106 0 0 0 0 0 0 0 +-6.411 4.155 -0.091 0 0 0 0 0 0 0 +-6.861 4.413 -0.111 0 0 0 0 0 0 0 +-36.511 23.191 -1.463 0 0 0 0 0 0 0 +-36.487 23.016 -1.459 0 0 0 0 0 0 0 +-36.515 22.874 -1.457 0 0 0 0 0 0 0 +-36.644 22.795 -1.46 0 0 0 0 0 0 0 +-36.828 22.749 -1.465 0 0 0 0 0 0 0 +-36.522 22.48 -1.449 0 0 0 0 0 0 0 +-36.5 22.309 -1.445 0 0 0 0 0 0 0 +-31.053 18.851 -1.196 0 0 0 0 0 0 0 +-30.746 18.271 -1.175 0 0 0 0 0 0 0 +-30.755 18.146 -1.173 0 0 0 0 0 0 0 +-36.347 21.363 -1.421 0 0 0 0 0 0 0 +-36.347 21.209 -1.418 0 0 0 0 0 0 0 +-36.299 21.029 -1.413 0 0 0 0 0 0 0 +-36.294 20.874 -1.41 0 0 0 0 0 0 0 +-36.274 20.711 -1.406 0 0 0 0 0 0 0 +-36.245 20.544 -1.402 0 0 0 0 0 0 0 +-36.254 20.399 -1.4 0 0 0 0 0 0 0 +-32.798 18.389 -1.246 0 0 0 0 0 0 0 +-30.494 16.974 -1.141 0 0 0 0 0 0 0 +-36.165 19.976 -1.389 0 0 0 0 0 0 0 +-12.641 6.899 -0.351 0 0 0 0 0 0 0 +-12.506 6.774 -0.344 0 0 0 0 0 0 0 +-12.265 6.595 -0.333 0 0 0 0 0 0 0 +-12.905 6.885 -0.36 0 0 0 0 0 0 0 +-13.81 7.338 -0.399 0 0 0 0 0 0 0 +-13.84 7.298 -0.399 0 0 0 0 0 0 0 +-35.943 18.763 -1.359 0 0 0 0 0 0 0 +-30.044 15.569 -1.1 0 0 0 0 0 0 0 +-35.889 18.449 -1.352 0 0 0 0 0 0 0 +-35.853 18.288 -1.348 0 0 0 0 0 0 0 +-32.651 16.529 -1.207 0 0 0 0 0 0 0 +-35.789 18.044 -1.341 0 0 0 0 0 0 0 +-35.788 17.903 -1.339 0 0 0 0 0 0 0 +-32.4 15.957 -1.188 0 0 0 0 0 0 0 +-32.578 15.918 -1.194 0 0 0 0 0 0 0 +-35.704 17.304 -1.326 0 0 0 0 0 0 0 +-14.711 7.061 -0.425 0 0 0 0 0 0 0 +-14.375 6.845 -0.41 0 0 0 0 0 0 0 +-14.637 6.913 -0.42 0 0 0 0 0 0 0 +-35.824 16.741 -1.32 0 0 0 0 0 0 0 +-35.802 16.593 -1.317 0 0 0 0 0 0 0 +-35.805 16.458 -1.315 0 0 0 0 0 0 0 +-35.753 16.299 -1.311 0 0 0 0 0 0 0 +-35.698 16.206 -1.307 0 0 0 0 0 0 0 +-35.312 15.764 -1.287 0 0 0 0 0 0 0 +-35.295 15.624 -1.284 0 0 0 0 0 0 0 +-35.211 15.455 -1.278 0 0 0 0 0 0 0 +-35.158 15.3 -1.274 0 0 0 0 0 0 0 +-35.136 15.16 -1.271 0 0 0 0 0 0 0 +-35.061 15.062 -1.267 0 0 0 0 0 0 0 +-35.038 14.922 -1.264 0 0 0 0 0 0 0 +-35 14.776 -1.261 0 0 0 0 0 0 0 +-34.954 14.628 -1.257 0 0 0 0 0 0 0 +-34.908 14.48 -1.253 0 0 0 0 0 0 0 +-34.868 14.335 -1.249 0 0 0 0 0 0 0 +-34.841 14.196 -1.246 0 0 0 0 0 0 0 +-34.778 14.043 -1.242 0 0 0 0 0 0 0 +-34.722 13.957 -1.239 0 0 0 0 0 0 0 +-34.685 13.816 -1.235 0 0 0 0 0 0 0 +-34.634 13.67 -1.231 0 0 0 0 0 0 0 +-34.591 13.528 -1.228 0 0 0 0 0 0 0 +-34.548 13.386 -1.224 0 0 0 0 0 0 0 +-34.491 13.239 -1.22 0 0 0 0 0 0 0 +-34.437 13.095 -1.216 0 0 0 0 0 0 0 +-34.388 13.014 -1.213 0 0 0 0 0 0 0 +-27.688 10.385 -0.936 0 0 0 0 0 0 0 +-29.833 11.08 -1.023 0 0 0 0 0 0 0 +-29.794 10.96 -1.02 0 0 0 0 0 0 0 +-29.782 10.849 -1.018 0 0 0 0 0 0 0 +-29.814 10.755 -1.018 0 0 0 0 0 0 0 +-29.877 10.672 -1.019 0 0 0 0 0 0 0 +-30.018 10.669 -1.024 0 0 0 0 0 0 0 +-33.963 11.947 -1.184 0 0 0 0 0 0 0 +-33.919 11.812 -1.181 0 0 0 0 0 0 0 +-33.867 11.675 -1.177 0 0 0 0 0 0 0 +-33.8 11.533 -1.173 0 0 0 0 0 0 0 +-33.781 11.408 -1.17 0 0 0 0 0 0 0 +-33.699 11.263 -1.166 0 0 0 0 0 0 0 +-33.622 11.179 -1.162 0 0 0 0 0 0 0 +-33.575 11.046 -1.159 0 0 0 0 0 0 0 +-33.507 10.907 -1.154 0 0 0 0 0 0 0 +-33.453 10.774 -1.151 0 0 0 0 0 0 0 +-33.411 10.645 -1.148 0 0 0 0 0 0 0 +-33.358 10.513 -1.144 0 0 0 0 0 0 0 +-33.286 10.375 -1.14 0 0 0 0 0 0 0 +-33.228 10.3 -1.137 0 0 0 0 0 0 0 +-33.17 10.168 -1.133 0 0 0 0 0 0 0 +-33.107 10.035 -1.13 0 0 0 0 0 0 0 +-33.059 9.907 -1.126 0 0 0 0 0 0 0 +-32.991 9.774 -1.122 0 0 0 0 0 0 0 +-32.948 9.649 -1.119 0 0 0 0 0 0 0 +-32.883 9.518 -1.116 0 0 0 0 0 0 0 +-32.836 9.448 -1.113 0 0 0 0 0 0 0 +-32.75 9.312 -1.109 0 0 0 0 0 0 0 +-32.702 9.188 -1.105 0 0 0 0 0 0 0 +-32.631 9.057 -1.101 0 0 0 0 0 0 0 +-32.567 8.929 -1.098 0 0 0 0 0 0 0 +-32.513 8.805 -1.095 0 0 0 0 0 0 0 +-32.446 8.678 -1.091 0 0 0 0 0 0 0 +-32.363 8.601 -1.087 0 0 0 0 0 0 0 +-32.307 8.478 -1.084 0 0 0 0 0 0 0 +-32.243 8.353 -1.08 0 0 0 0 0 0 0 +-32.156 8.223 -1.076 0 0 0 0 0 0 0 +-32.103 8.102 -1.072 0 0 0 0 0 0 0 +-32.021 7.974 -1.068 0 0 0 0 0 0 0 +-31.959 7.852 -1.065 0 0 0 0 0 0 0 +-31.887 7.782 -1.061 0 0 0 0 0 0 0 +-31.83 7.662 -1.058 0 0 0 0 0 0 0 +-31.767 7.541 -1.055 0 0 0 0 0 0 0 +-31.683 7.416 -1.05 0 0 0 0 0 0 0 +-31.609 7.295 -1.047 0 0 0 0 0 0 0 +-31.536 7.174 -1.043 0 0 0 0 0 0 0 +-31.457 7.052 -1.039 0 0 0 0 0 0 0 +-31.39 6.985 -1.036 0 0 0 0 0 0 0 +-31.322 6.867 -1.032 0 0 0 0 0 0 0 +-31.25 6.748 -1.028 0 0 0 0 0 0 0 +-31.19 6.633 -1.025 0 0 0 0 0 0 0 +-31.117 6.515 -1.022 0 0 0 0 0 0 0 +-30.979 6.385 -1.015 0 0 0 0 0 0 0 +-27.275 5.536 -0.869 0 0 0 0 0 0 0 +-27.284 5.448 -0.869 0 0 0 0 0 0 0 +-30.826 6.102 -1.007 0 0 0 0 0 0 0 +-30.765 5.989 -1.004 0 0 0 0 0 0 0 +-30.677 5.872 -1 0 0 0 0 0 0 0 +-30.617 5.761 -0.997 0 0 0 0 0 0 0 +-30.549 5.649 -0.994 0 0 0 0 0 0 0 +-30.474 5.536 -0.99 0 0 0 0 0 0 0 +-30.399 5.424 -0.986 0 0 0 0 0 0 0 +-30.305 5.359 -0.982 0 0 0 0 0 0 0 +-30.258 5.252 -0.98 0 0 0 0 0 0 0 +-30.182 5.142 -0.976 0 0 0 0 0 0 0 +-30.129 5.035 -0.974 0 0 0 0 0 0 0 +-30.048 4.925 -0.97 0 0 0 0 0 0 0 +-29.969 4.815 -0.966 0 0 0 0 0 0 0 +-29.903 4.708 -0.963 0 0 0 0 0 0 0 +-29.819 4.599 -0.959 0 0 0 0 0 0 0 +-29.739 4.539 -0.956 0 0 0 0 0 0 0 +-29.662 4.432 -0.952 0 0 0 0 0 0 0 +-29.589 4.326 -0.949 0 0 0 0 0 0 0 +-29.511 4.221 -0.945 0 0 0 0 0 0 0 +-29.427 4.114 -0.941 0 0 0 0 0 0 0 +-29.355 4.01 -0.938 0 0 0 0 0 0 0 +-29.282 3.907 -0.935 0 0 0 0 0 0 0 +-29.205 3.85 -0.932 0 0 0 0 0 0 0 +-29.128 3.747 -0.928 0 0 0 0 0 0 0 +-29.098 3.65 -0.927 0 0 0 0 0 0 0 +-29.036 3.55 -0.924 0 0 0 0 0 0 0 +-28.991 3.452 -0.922 0 0 0 0 0 0 0 +-29.063 3.368 -0.924 0 0 0 0 0 0 0 +-29.159 3.286 -0.927 0 0 0 0 0 0 0 +-29.121 3.235 -0.926 0 0 0 0 0 0 0 +-29.01 3.131 -0.921 0 0 0 0 0 0 0 +-28.936 3.031 -0.918 0 0 0 0 0 0 0 +-28.862 2.932 -0.914 0 0 0 0 0 0 0 +-28.789 2.833 -0.911 0 0 0 0 0 0 0 +-28.728 2.736 -0.908 0 0 0 0 0 0 0 +-28.639 2.637 -0.905 0 0 0 0 0 0 0 +-28.542 2.583 -0.901 0 0 0 0 0 0 0 +-28.165 2.46 -0.886 0 0 0 0 0 0 0 +-28.014 2.358 -0.88 0 0 0 0 0 0 0 +-27.911 2.262 -0.876 0 0 0 0 0 0 0 +-27.813 2.166 -0.871 0 0 0 0 0 0 0 +-27.716 2.071 -0.867 0 0 0 0 0 0 0 +-27.624 1.977 -0.864 0 0 0 0 0 0 0 +-27.55 1.928 -0.861 0 0 0 0 0 0 0 +-27.47 1.836 -0.857 0 0 0 0 0 0 0 +-27.394 1.744 -0.854 0 0 0 0 0 0 0 +-27.329 1.654 -0.851 0 0 0 0 0 0 0 +-21.825 1.257 -0.639 0 0 0 0 0 0 0 +-21.707 1.182 -0.634 0 0 0 0 0 0 0 +-21.663 1.112 -0.632 0 0 0 0 0 0 0 +-21.628 1.042 -0.631 0 0 0 0 0 0 0 +-21.628 1.008 -0.631 0 0 0 0 0 0 0 +-21.629 0.94 -0.631 0 0 0 0 0 0 0 +-21.64 0.872 -0.631 0 0 0 0 0 0 0 +-21.685 0.806 -0.633 0 0 0 0 0 0 0 +-21.751 0.74 -0.635 0 0 0 0 0 0 0 +-26.514 0.812 -0.819 0 0 0 0 0 0 0 +-26.432 0.727 -0.815 0 0 0 0 0 0 0 +-26.349 0.683 -0.812 0 0 0 0 0 0 0 +-26.271 0.599 -0.809 0 0 0 0 0 0 0 +-26.201 0.515 -0.806 0 0 0 0 0 0 0 +-26.123 0.431 -0.803 0 0 0 0 0 0 0 +-26.048 0.348 -0.8 0 0 0 0 0 0 0 +-25.961 0.266 -0.797 0 0 0 0 0 0 0 +-22.239 0.161 -0.653 0 0 0 0 0 0 0 +-22.271 0.127 -0.655 0 0 0 0 0 0 0 +-22.143 0.057 -0.65 0 0 0 0 0 0 0 +-22.131 -0.013 -0.649 0 0 0 0 0 0 0 +-22.113 -0.082 -0.648 0 0 0 0 0 0 0 +-22.163 -0.152 -0.65 0 0 0 0 0 0 0 +-22.142 -0.222 -0.65 0 0 0 0 0 0 0 +-22.117 -0.291 -0.649 0 0 0 0 0 0 0 +-25.232 -0.375 -0.769 0 0 0 0 0 0 0 +-25.139 -0.453 -0.765 0 0 0 0 0 0 0 +-25.069 -0.53 -0.763 0 0 0 0 0 0 0 +-25.046 -0.608 -0.762 0 0 0 0 0 0 0 +-24.96 -0.685 -0.759 0 0 0 0 0 0 0 +-24.888 -0.761 -0.756 0 0 0 0 0 0 0 +-24.809 -0.836 -0.753 0 0 0 0 0 0 0 +-24.726 -0.911 -0.75 0 0 0 0 0 0 0 +-24.648 -0.986 -0.747 0 0 0 0 0 0 0 +-24.566 -1.021 -0.744 0 0 0 0 0 0 0 +-24.487 -1.095 -0.741 0 0 0 0 0 0 0 +-24.414 -1.168 -0.738 0 0 0 0 0 0 0 +-24.332 -1.241 -0.735 0 0 0 0 0 0 0 +-24.254 -1.313 -0.732 0 0 0 0 0 0 0 +-24.174 -1.385 -0.729 0 0 0 0 0 0 0 +-24.09 -1.456 -0.726 0 0 0 0 0 0 0 +-24.016 -1.489 -0.724 0 0 0 0 0 0 0 +-23.945 -1.561 -0.721 0 0 0 0 0 0 0 +-23.87 -1.631 -0.718 0 0 0 0 0 0 0 +-23.797 -1.701 -0.716 0 0 0 0 0 0 0 +-23.708 -1.769 -0.712 0 0 0 0 0 0 0 +-23.635 -1.839 -0.71 0 0 0 0 0 0 0 +-23.539 -1.905 -0.706 0 0 0 0 0 0 0 +-23.484 -1.938 -0.704 0 0 0 0 0 0 0 +-23.396 -2.005 -0.701 0 0 0 0 0 0 0 +-16.214 -1.484 -0.424 0 0 0 0 0 0 0 +-22.939 -2.183 -0.684 0 0 0 0 0 0 0 +-23.039 -2.266 -0.688 0 0 0 0 0 0 0 +-23.002 -2.335 -0.687 0 0 0 0 0 0 0 +-22.925 -2.364 -0.684 0 0 0 0 0 0 0 +-22.84 -2.427 -0.681 0 0 0 0 0 0 0 +-22.787 -2.494 -0.68 0 0 0 0 0 0 0 +-22.759 -2.563 -0.679 0 0 0 0 0 0 0 +-22.764 -2.636 -0.679 0 0 0 0 0 0 0 +-22.772 -2.71 -0.68 0 0 0 0 0 0 0 +-22.775 -2.783 -0.681 0 0 0 0 0 0 0 +-22.785 -2.82 -0.681 0 0 0 0 0 0 0 +-22.792 -2.894 -0.682 0 0 0 0 0 0 0 +-22.796 -2.967 -0.682 0 0 0 0 0 0 0 +-22.807 -3.042 -0.683 0 0 0 0 0 0 0 +-22.813 -3.115 -0.684 0 0 0 0 0 0 0 +-22.793 -3.186 -0.683 0 0 0 0 0 0 0 +-22.771 -3.255 -0.683 0 0 0 0 0 0 0 +-22.8 -3.333 -0.684 0 0 0 0 0 0 0 +-22.842 -3.376 -0.686 0 0 0 0 0 0 0 +-22.772 -3.438 -0.684 0 0 0 0 0 0 0 +-22.679 -3.497 -0.681 0 0 0 0 0 0 0 +-22.6 -3.558 -0.678 0 0 0 0 0 0 0 +-22.518 -3.617 -0.675 0 0 0 0 0 0 0 +-22.479 -3.683 -0.674 0 0 0 0 0 0 0 +-22.406 -3.744 -0.672 0 0 0 0 0 0 0 +-22.314 -3.764 -0.668 0 0 0 0 0 0 0 +-21.152 -3.635 -0.623 0 0 0 0 0 0 0 +-21.105 -3.695 -0.622 0 0 0 0 0 0 0 +-21.02 -3.748 -0.619 0 0 0 0 0 0 0 +-20.955 -3.805 -0.617 0 0 0 0 0 0 0 +-20.87 -3.857 -0.614 0 0 0 0 0 0 0 +-20.805 -3.913 -0.612 0 0 0 0 0 0 0 +-20.736 -3.933 -0.61 0 0 0 0 0 0 0 +-20.661 -3.986 -0.607 0 0 0 0 0 0 0 +-20.588 -4.039 -0.605 0 0 0 0 0 0 0 +-20.532 -4.095 -0.603 0 0 0 0 0 0 0 +-20.438 -4.143 -0.6 0 0 0 0 0 0 0 +-20.355 -4.193 -0.597 0 0 0 0 0 0 0 +-20.302 -4.248 -0.596 0 0 0 0 0 0 0 +-20.229 -4.266 -0.593 0 0 0 0 0 0 0 +-20.159 -4.318 -0.591 0 0 0 0 0 0 0 +-20.089 -4.369 -0.589 0 0 0 0 0 0 0 +-20.011 -4.417 -0.586 0 0 0 0 0 0 0 +-19.932 -4.466 -0.583 0 0 0 0 0 0 0 +-19.868 -4.517 -0.581 0 0 0 0 0 0 0 +-19.787 -4.564 -0.579 0 0 0 0 0 0 0 +-19.727 -4.583 -0.577 0 0 0 0 0 0 0 +-19.651 -4.63 -0.574 0 0 0 0 0 0 0 +-19.57 -4.676 -0.572 0 0 0 0 0 0 0 +-19.501 -4.724 -0.57 0 0 0 0 0 0 0 +-19.428 -4.771 -0.567 0 0 0 0 0 0 0 +-19.351 -4.816 -0.565 0 0 0 0 0 0 0 +-19.287 -4.865 -0.563 0 0 0 0 0 0 0 +-19.215 -4.879 -0.56 0 0 0 0 0 0 0 +-19.14 -4.923 -0.558 0 0 0 0 0 0 0 +-19.078 -4.971 -0.556 0 0 0 0 0 0 0 +-19.014 -5.018 -0.554 0 0 0 0 0 0 0 +-18.942 -5.063 -0.552 0 0 0 0 0 0 0 +-18.87 -5.107 -0.55 0 0 0 0 0 0 0 +-18.804 -5.153 -0.548 0 0 0 0 0 0 0 +-18.726 -5.163 -0.545 0 0 0 0 0 0 0 +-18.662 -5.208 -0.543 0 0 0 0 0 0 0 +-18.598 -5.253 -0.541 0 0 0 0 0 0 0 +-18.533 -5.298 -0.539 0 0 0 0 0 0 0 +-18.464 -5.341 -0.537 0 0 0 0 0 0 0 +-18.39 -5.382 -0.535 0 0 0 0 0 0 0 +-18.331 -5.427 -0.533 0 0 0 0 0 0 0 +-18.251 -5.466 -0.53 0 0 0 0 0 0 0 +-18.196 -5.481 -0.529 0 0 0 0 0 0 0 +-18.123 -5.521 -0.526 0 0 0 0 0 0 0 +-18.051 -5.561 -0.524 0 0 0 0 0 0 0 +-17.981 -5.601 -0.522 0 0 0 0 0 0 0 +-17.91 -5.641 -0.52 0 0 0 0 0 0 0 +-17.826 -5.676 -0.517 0 0 0 0 0 0 0 +-17.772 -5.72 -0.516 0 0 0 0 0 0 0 +-17.712 -5.731 -0.514 0 0 0 0 0 0 0 +-17.65 -5.773 -0.512 0 0 0 0 0 0 0 +-17.575 -5.809 -0.51 0 0 0 0 0 0 0 +-17.5 -5.845 -0.507 0 0 0 0 0 0 0 +-17.439 -5.886 -0.506 0 0 0 0 0 0 0 +-17.374 -5.925 -0.504 0 0 0 0 0 0 0 +-17.304 -5.961 -0.502 0 0 0 0 0 0 0 +-17.257 -5.976 -0.5 0 0 0 0 0 0 0 +-17.191 -6.013 -0.498 0 0 0 0 0 0 0 +-17.123 -6.05 -0.496 0 0 0 0 0 0 0 +-17.006 -6.068 -0.492 0 0 0 0 0 0 0 +-16.78 -6.047 -0.484 0 0 0 0 0 0 0 +-16.909 -6.154 -0.49 0 0 0 0 0 0 0 +-16.856 -6.195 -0.488 0 0 0 0 0 0 0 +-16.801 -6.204 -0.486 0 0 0 0 0 0 0 +-16.733 -6.239 -0.484 0 0 0 0 0 0 0 +-16.657 -6.27 -0.482 0 0 0 0 0 0 0 +-16.6 -6.308 -0.481 0 0 0 0 0 0 0 +-16.375 -6.281 -0.472 0 0 0 0 0 0 0 +-16.287 -6.306 -0.469 0 0 0 0 0 0 0 +-16.202 -6.331 -0.467 0 0 0 0 0 0 0 +-16.225 -6.37 -0.468 0 0 0 0 0 0 0 +-16.253 -6.44 -0.47 0 0 0 0 0 0 0 +-16.224 -6.488 -0.47 0 0 0 0 0 0 0 +-16.159 -6.52 -0.468 0 0 0 0 0 0 0 +-16.092 -6.552 -0.466 0 0 0 0 0 0 0 +-16.044 -6.591 -0.465 0 0 0 0 0 0 0 +-16.039 -6.649 -0.465 0 0 0 0 0 0 0 +-16.06 -6.687 -0.467 0 0 0 0 0 0 0 +-16.045 -6.74 -0.467 0 0 0 0 0 0 0 +-15.873 -6.726 -0.461 0 0 0 0 0 0 0 +-15.978 -6.83 -0.466 0 0 0 0 0 0 0 +-16.076 -6.932 -0.471 0 0 0 0 0 0 0 +-16.085 -6.996 -0.472 0 0 0 0 0 0 0 +-16.094 -7.06 -0.474 0 0 0 0 0 0 0 +-16.116 -7.1 -0.475 0 0 0 0 0 0 0 +-16.114 -7.16 -0.476 0 0 0 0 0 0 0 +-16.12 -7.223 -0.477 0 0 0 0 0 0 0 +-16.125 -7.286 -0.478 0 0 0 0 0 0 0 +-16.14 -7.354 -0.48 0 0 0 0 0 0 0 +-16.14 -7.416 -0.481 0 0 0 0 0 0 0 +-16.146 -7.48 -0.482 0 0 0 0 0 0 0 +-16.17 -7.522 -0.484 0 0 0 0 0 0 0 +-16.183 -7.59 -0.485 0 0 0 0 0 0 0 +-16.177 -7.649 -0.486 0 0 0 0 0 0 0 +-16.194 -7.72 -0.488 0 0 0 0 0 0 0 +-16.188 -7.78 -0.488 0 0 0 0 0 0 0 +-16.199 -7.848 -0.49 0 0 0 0 0 0 0 +-16.203 -7.913 -0.491 0 0 0 0 0 0 0 +-16.229 -7.957 -0.493 0 0 0 0 0 0 0 +-16.23 -8.021 -0.494 0 0 0 0 0 0 0 +-16.228 -8.084 -0.495 0 0 0 0 0 0 0 +-16.242 -8.154 -0.497 0 0 0 0 0 0 0 +-16.25 -8.223 -0.498 0 0 0 0 0 0 0 +-16.258 -8.291 -0.5 0 0 0 0 0 0 0 +-16.259 -8.356 -0.501 0 0 0 0 0 0 0 +-16.266 -8.424 -0.502 0 0 0 0 0 0 0 +-16.279 -8.464 -0.503 0 0 0 0 0 0 0 +-16.293 -8.536 -0.505 0 0 0 0 0 0 0 +-16.3 -8.605 -0.507 0 0 0 0 0 0 0 +-16.301 -8.671 -0.508 0 0 0 0 0 0 0 +-16.311 -8.742 -0.509 0 0 0 0 0 0 0 +-16.313 -8.81 -0.511 0 0 0 0 0 0 0 +-16.326 -8.883 -0.513 0 0 0 0 0 0 0 +-16.333 -8.92 -0.513 0 0 0 0 0 0 0 +-16.348 -8.995 -0.515 0 0 0 0 0 0 0 +-16.353 -9.065 -0.517 0 0 0 0 0 0 0 +-16.353 -9.132 -0.518 0 0 0 0 0 0 0 +-16.371 -9.21 -0.52 0 0 0 0 0 0 0 +-16.375 -9.28 -0.522 0 0 0 0 0 0 0 +-16.37 -9.345 -0.523 0 0 0 0 0 0 0 +-16.397 -9.395 -0.525 0 0 0 0 0 0 0 +-16.402 -9.467 -0.526 0 0 0 0 0 0 0 +-16.412 -9.541 -0.528 0 0 0 0 0 0 0 +-16.416 -9.613 -0.529 0 0 0 0 0 0 0 +-16.422 -9.686 -0.531 0 0 0 0 0 0 0 +-16.427 -9.759 -0.533 0 0 0 0 0 0 0 +-16.434 -9.833 -0.534 0 0 0 0 0 0 0 +-16.458 -9.883 -0.536 0 0 0 0 0 0 0 +-16.468 -9.959 -0.538 0 0 0 0 0 0 0 +-16.473 -10.033 -0.54 0 0 0 0 0 0 0 +-16.472 -10.103 -0.541 0 0 0 0 0 0 0 +-16.487 -10.184 -0.543 0 0 0 0 0 0 0 +-16.491 -10.258 -0.545 0 0 0 0 0 0 0 +-16.499 -10.336 -0.547 0 0 0 0 0 0 0 +-16.525 -10.388 -0.548 0 0 0 0 0 0 0 +-16.528 -10.463 -0.55 0 0 0 0 0 0 0 +-16.54 -10.544 -0.552 0 0 0 0 0 0 0 +-16.541 -10.617 -0.554 0 0 0 0 0 0 0 +-16.551 -10.697 -0.556 0 0 0 0 0 0 0 +-16.559 -10.776 -0.558 0 0 0 0 0 0 0 +-16.562 -10.853 -0.559 0 0 0 0 0 0 0 +-16.588 -10.907 -0.561 0 0 0 0 0 0 0 +-16.599 -10.989 -0.563 0 0 0 0 0 0 0 +-16.598 -11.063 -0.565 0 0 0 0 0 0 0 +-16.611 -11.148 -0.567 0 0 0 0 0 0 0 +-16.61 -11.224 -0.569 0 0 0 0 0 0 0 +-16.618 -11.305 -0.571 0 0 0 0 0 0 0 +-16.625 -11.387 -0.573 0 0 0 0 0 0 0 +-16.642 -11.436 -0.574 0 0 0 0 0 0 0 +-16.652 -11.521 -0.577 0 0 0 0 0 0 0 +-16.665 -11.607 -0.579 0 0 0 0 0 0 0 +-16.677 -11.694 -0.581 0 0 0 0 0 0 0 +-16.686 -11.779 -0.583 0 0 0 0 0 0 0 +-16.695 -11.863 -0.586 0 0 0 0 0 0 0 +-16.699 -11.946 -0.588 0 0 0 0 0 0 0 +-16.706 -12.03 -0.59 0 0 0 0 0 0 0 +-16.737 -12.093 -0.592 0 0 0 0 0 0 0 +-16.741 -12.176 -0.594 0 0 0 0 0 0 0 +-16.751 -12.264 -0.596 0 0 0 0 0 0 0 +-16.756 -12.348 -0.598 0 0 0 0 0 0 0 +-16.766 -12.438 -0.601 0 0 0 0 0 0 0 +-16.772 -12.524 -0.603 0 0 0 0 0 0 0 +-16.774 -12.608 -0.605 0 0 0 0 0 0 0 +-16.808 -12.675 -0.608 0 0 0 0 0 0 0 +-16.821 -12.768 -0.61 0 0 0 0 0 0 0 +-16.811 -12.844 -0.612 0 0 0 0 0 0 0 +-16.84 -12.95 -0.615 0 0 0 0 0 0 0 +-16.829 -13.026 -0.616 0 0 0 0 0 0 0 +-16.85 -13.127 -0.619 0 0 0 0 0 0 0 +-16.852 -13.215 -0.622 0 0 0 0 0 0 0 +-16.887 -13.284 -0.624 0 0 0 0 0 0 0 +-16.887 -13.371 -0.626 0 0 0 0 0 0 0 +-16.892 -13.461 -0.629 0 0 0 0 0 0 0 +-16.895 -13.551 -0.631 0 0 0 0 0 0 0 +-16.916 -13.655 -0.634 0 0 0 0 0 0 0 +-16.919 -13.746 -0.636 0 0 0 0 0 0 0 +-16.933 -13.846 -0.639 0 0 0 0 0 0 0 +-16.947 -13.902 -0.641 0 0 0 0 0 0 0 +-16.969 -14.01 -0.644 0 0 0 0 0 0 0 +-16.96 -14.093 -0.646 0 0 0 0 0 0 0 +-16.996 -14.213 -0.65 0 0 0 0 0 0 0 +-16.997 -14.305 -0.652 0 0 0 0 0 0 0 +-17.011 -14.408 -0.655 0 0 0 0 0 0 0 +-17.012 -14.501 -0.658 0 0 0 0 0 0 0 +-17.059 -14.587 -0.661 0 0 0 0 0 0 0 +-17.046 -14.669 -0.663 0 0 0 0 0 0 0 +-17.075 -14.788 -0.667 0 0 0 0 0 0 0 +-17.068 -14.876 -0.669 0 0 0 0 0 0 0 +-17.096 -14.996 -0.673 0 0 0 0 0 0 0 +-17.094 -15.089 -0.675 0 0 0 0 0 0 0 +-17.101 -15.192 -0.678 0 0 0 0 0 0 0 +-17.128 -15.264 -0.68 0 0 0 0 0 0 0 +-17.146 -15.376 -0.684 0 0 0 0 0 0 0 +-17.146 -15.474 -0.686 0 0 0 0 0 0 0 +-17.158 -15.583 -0.69 0 0 0 0 0 0 0 +-17.177 -15.699 -0.693 0 0 0 0 0 0 0 +-17.18 -15.802 -0.696 0 0 0 0 0 0 0 +-17.186 -15.908 -0.699 0 0 0 0 0 0 0 +-17.233 -16.001 -0.703 0 0 0 0 0 0 0 +-17.229 -16.099 -0.705 0 0 0 0 0 0 0 +-17.248 -16.219 -0.709 0 0 0 0 0 0 0 +-17.25 -16.322 -0.711 0 0 0 0 0 0 0 +-17.257 -16.433 -0.715 0 0 0 0 0 0 0 +-17.266 -16.545 -0.718 0 0 0 0 0 0 0 +-17.295 -16.677 -0.722 0 0 0 0 0 0 0 +-17.288 -16.776 -0.725 0 0 0 0 0 0 0 +-17.327 -16.868 -0.728 0 0 0 0 0 0 0 +-17.339 -16.985 -0.732 0 0 0 0 0 0 0 +-17.355 -17.108 -0.735 0 0 0 0 0 0 0 +-17.359 -17.22 -0.739 0 0 0 0 0 0 0 +-17.371 -17.341 -0.742 0 0 0 0 0 0 0 +-17.374 -17.454 -0.745 0 0 0 0 0 0 0 +-17.386 -17.575 -0.749 0 0 0 0 0 0 0 +-17.429 -17.675 -0.753 0 0 0 0 0 0 0 +-17.444 -17.801 -0.757 0 0 0 0 0 0 0 +-17.413 -17.882 -0.758 0 0 0 0 0 0 0 +-17.291 -17.869 -0.755 0 0 0 0 0 0 0 +-17.189 -17.875 -0.752 0 0 0 0 0 0 0 +-17.1 -17.895 -0.75 0 0 0 0 0 0 0 +-17.074 -17.98 -0.752 0 0 0 0 0 0 0 +-17.11 -18.075 -0.755 0 0 0 0 0 0 0 +-17.119 -18.199 -0.759 0 0 0 0 0 0 0 +-17.131 -18.327 -0.763 0 0 0 0 0 0 0 +-17.139 -18.451 -0.767 0 0 0 0 0 0 0 +-17.181 -18.614 -0.773 0 0 0 0 0 0 0 +-21.007 -22.912 -0.994 0 0 0 0 0 0 0 +-20.939 -22.982 -0.995 0 0 0 0 0 0 0 +-23.133 -25.474 -1.123 0 0 0 0 0 0 0 +-23.047 -25.541 -1.122 0 0 0 0 0 0 0 +-22.904 -25.543 -1.119 0 0 0 0 0 0 0 +-22.785 -25.572 -1.116 0 0 0 0 0 0 0 +-17.952 -20.266 -0.84 0 0 0 0 0 0 0 +-17.977 -20.425 -0.845 0 0 0 0 0 0 0 +-17.983 -20.561 -0.849 0 0 0 0 0 0 0 +-18.052 -20.705 -0.855 0 0 0 0 0 0 0 +-18.049 -20.834 -0.859 0 0 0 0 0 0 0 +-18.877 -21.931 -0.911 0 0 0 0 0 0 0 +-18.747 -21.919 -0.908 0 0 0 0 0 0 0 +-18.31 -21.543 -0.886 0 0 0 0 0 0 0 +-18.216 -21.57 -0.884 0 0 0 0 0 0 0 +-18.11 -21.581 -0.882 0 0 0 0 0 0 0 +-18.04 -21.566 -0.88 0 0 0 0 0 0 0 +-17.95 -21.597 -0.879 0 0 0 0 0 0 0 +-17.926 -21.706 -0.881 0 0 0 0 0 0 0 +-17.947 -21.872 -0.887 0 0 0 0 0 0 0 +-17.962 -22.03 -0.892 0 0 0 0 0 0 0 +-18.489 -22.825 -0.928 0 0 0 0 0 0 0 +-18.291 -22.725 -0.921 0 0 0 0 0 0 0 +-18.45 -22.997 -0.933 0 0 0 0 0 0 0 +-18.368 -23.043 -0.932 0 0 0 0 0 0 0 +-18.514 -23.376 -0.946 0 0 0 0 0 0 0 +-18.369 -23.343 -0.941 0 0 0 0 0 0 0 +-18.502 -23.665 -0.954 0 0 0 0 0 0 0 +-18.249 -23.493 -0.943 0 0 0 0 0 0 0 +-18.07 -23.414 -0.936 0 0 0 0 0 0 0 +-18.021 -23.426 -0.935 0 0 0 0 0 0 0 +-17.997 -23.548 -0.939 0 0 0 0 0 0 0 +-17.943 -23.631 -0.94 0 0 0 0 0 0 0 +-17.99 -23.849 -0.948 0 0 0 0 0 0 0 +-18.211 -24.301 -0.967 0 0 0 0 0 0 0 +-18.242 -24.502 -0.974 0 0 0 0 0 0 0 +-18.276 -24.71 -0.981 0 0 0 0 0 0 0 +-18.313 -24.842 -0.986 0 0 0 0 0 0 0 +-19.596 -26.761 -1.075 0 0 0 0 0 0 0 +-18.718 -25.73 -1.023 0 0 0 0 0 0 0 +-21.847 -30.237 -1.234 0 0 0 0 0 0 0 +-21.86 -30.457 -1.241 0 0 0 0 0 0 0 +-18.697 -26.392 -1.043 0 0 0 0 0 0 0 +-18.629 -26.384 -1.041 0 0 0 0 0 0 0 +-18.66 -26.604 -1.049 0 0 0 0 0 0 0 +-18.555 -26.633 -1.047 0 0 0 0 0 0 0 +-18.43 -26.63 -1.044 0 0 0 0 0 0 0 +-18.349 -26.693 -1.045 0 0 0 0 0 0 0 +-18.364 -26.896 -1.051 0 0 0 0 0 0 0 +-18.607 -27.437 -1.074 0 0 0 0 0 0 0 +-18.662 -27.612 -1.081 0 0 0 0 0 0 0 +-19.587 -29.179 -1.151 0 0 0 0 0 0 0 +-19.451 -29.174 -1.148 0 0 0 0 0 0 0 +-19.137 -28.9 -1.132 0 0 0 0 0 0 0 +-19.02 -28.92 -1.13 0 0 0 0 0 0 0 +-18.906 -28.944 -1.129 0 0 0 0 0 0 0 +-18.798 -28.977 -1.128 0 0 0 0 0 0 0 +-18.838 -29.139 -1.134 0 0 0 0 0 0 0 +-18.853 -29.365 -1.141 0 0 0 0 0 0 0 +-19.774 -31.015 -1.214 0 0 0 0 0 0 0 +-19.773 -31.231 -1.221 0 0 0 0 0 0 0 +-19.823 -31.528 -1.232 0 0 0 0 0 0 0 +-19.701 -31.555 -1.23 0 0 0 0 0 0 0 +-26.617 -42.949 -1.744 0 0 0 0 0 0 0 +-26.671 -43.339 -1.758 0 0 0 0 0 0 0 +-26.785 -43.679 -1.771 0 0 0 0 0 0 0 +-26.808 -44.026 -1.783 0 0 0 0 0 0 0 +-19.578 -32.367 -1.254 0 0 0 0 0 0 0 +-19.437 -32.363 -1.251 0 0 0 0 0 0 0 +-19.36 -32.465 -1.253 0 0 0 0 0 0 0 +-19.258 -32.526 -1.253 0 0 0 0 0 0 0 +-19.271 -32.783 -1.262 0 0 0 0 0 0 0 +-19.336 -33.013 -1.271 0 0 0 0 0 0 0 +-19.307 -33.202 -1.277 0 0 0 0 0 0 0 +-19.334 -33.491 -1.287 0 0 0 0 0 0 0 +-19.341 -33.747 -1.295 0 0 0 0 0 0 0 +-19.26 -33.853 -1.297 0 0 0 0 0 0 0 +-19.22 -34.03 -1.303 0 0 0 0 0 0 0 +-19.298 -34.422 -1.317 0 0 0 0 0 0 0 +-19.52 -34.946 -1.339 0 0 0 0 0 0 0 +-19.602 -35.355 -1.354 0 0 0 0 0 0 0 +-19.627 -35.663 -1.365 0 0 0 0 0 0 0 +-19.389 -35.495 -1.355 0 0 0 0 0 0 0 +-19.355 -35.698 -1.361 0 0 0 0 0 0 0 +-19.788 -36.775 -1.406 0 0 0 0 0 0 0 +-15.759 -29.497 -1.085 0 0 0 0 0 0 0 +-15.708 -29.513 -1.085 0 0 0 0 0 0 0 +-15.556 -29.451 -1.08 0 0 0 0 0 0 0 +-15.468 -29.507 -1.08 0 0 0 0 0 0 0 +-15.539 -29.871 -1.094 0 0 0 0 0 0 0 +-20.074 -38.904 -1.484 0 0 0 0 0 0 0 +-20.11 -39.276 -1.497 0 0 0 0 0 0 0 +-20.168 -39.697 -1.512 0 0 0 0 0 0 0 +-20.262 -40.039 -1.526 0 0 0 0 0 0 0 +-20.3 -40.43 -1.54 0 0 0 0 0 0 0 +-20.335 -40.819 -1.554 0 0 0 0 0 0 0 +-20.374 -41.221 -1.569 0 0 0 0 0 0 0 +-20.427 -41.658 -1.585 0 0 0 0 0 0 0 +-20.459 -42.057 -1.599 0 0 0 0 0 0 0 +-15.079 -31.232 -1.133 0 0 0 0 0 0 0 +-20.588 -42.836 -1.628 0 0 0 0 0 0 0 +-20.637 -43.286 -1.645 0 0 0 0 0 0 0 +-20.666 -43.7 -1.659 0 0 0 0 0 0 0 +-20.704 -44.139 -1.675 0 0 0 0 0 0 0 +-20.735 -44.57 -1.691 0 0 0 0 0 0 0 +-15.177 -32.877 -1.192 0 0 0 0 0 0 0 +-20.828 -45.515 -1.726 0 0 0 0 0 0 0 +-20.944 -45.961 -1.743 0 0 0 0 0 0 0 +-20.995 -46.458 -1.761 0 0 0 0 0 0 0 +-15.422 -34.399 -1.249 0 0 0 0 0 0 0 +-21.538 -48.473 -1.841 0 0 0 0 0 0 0 +-21.411 -48.599 -1.843 0 0 0 0 0 0 0 +-16.258 -37.202 -1.361 0 0 0 0 0 0 0 +-15.83 -36.693 -1.337 0 0 0 0 0 0 0 +-16.151 -37.764 -1.379 0 0 0 0 0 0 0 +-16.002 -37.743 -1.376 0 0 0 0 0 0 0 +-15.903 -37.841 -1.378 0 0 0 0 0 0 0 +-15.868 -38.092 -1.387 0 0 0 0 0 0 0 +-15.796 -38.258 -1.392 0 0 0 0 0 0 0 +-15.708 -38.387 -1.395 0 0 0 0 0 0 0 +-15.645 -38.404 -1.395 0 0 0 0 0 0 0 +-16.006 -39.649 -1.444 0 0 0 0 0 0 0 +-14.772 -36.921 -1.329 0 0 0 0 0 0 0 +-14.649 -36.948 -1.328 0 0 0 0 0 0 0 +-14.519 -36.959 -1.327 0 0 0 0 0 0 0 +-14.39 -36.972 -1.325 0 0 0 0 0 0 0 +-14.257 -36.973 -1.324 0 0 0 0 0 0 0 +-14.191 -36.976 -1.323 0 0 0 0 0 0 0 +-14.062 -36.985 -1.321 0 0 0 0 0 0 0 +-13.938 -37.011 -1.321 0 0 0 0 0 0 0 +-13.814 -37.032 -1.32 0 0 0 0 0 0 0 +-13.697 -37.075 -1.32 0 0 0 0 0 0 0 +-13.567 -37.08 -1.318 0 0 0 0 0 0 0 +-13.44 -37.095 -1.317 0 0 0 0 0 0 0 +-13.371 -37.086 -1.316 0 0 0 0 0 0 0 +-13.244 -37.097 -1.314 0 0 0 0 0 0 0 +-13.119 -37.116 -1.314 0 0 0 0 0 0 0 +-13.081 -37.382 -1.323 0 0 0 0 0 0 0 +-13.127 -37.895 -1.342 0 0 0 0 0 0 0 +-13.145 -38.339 -1.358 0 0 0 0 0 0 0 +-13.184 -38.849 -1.378 0 0 0 0 0 0 0 +-13.287 -39.356 -1.397 0 0 0 0 0 0 0 +-13.355 -39.974 -1.421 0 0 0 0 0 0 0 +-13.454 -40.696 -1.448 0 0 0 0 0 0 0 +-13.959 -42.675 -1.527 0 0 0 0 0 0 0 +-13.828 -42.731 -1.527 0 0 0 0 0 0 0 +-13.713 -42.835 -1.53 0 0 0 0 0 0 0 +-13.788 -43.539 -1.557 0 0 0 0 0 0 0 +-14.572 -47.845 -1.724 0 0 0 0 0 0 0 +-14.505 -48.168 -1.735 0 0 0 0 0 0 0 +-14.277 -47.954 -1.725 0 0 0 0 0 0 0 +-16.911 -59.908 -2.196 0 0 0 0 0 0 0 +-16.694 -59.861 -2.192 0 0 0 0 0 0 0 +-16.48 -59.817 -2.188 0 0 0 0 0 0 0 +-16.3 -59.899 -2.189 0 0 0 0 0 0 0 +-16.191 -59.869 -2.187 0 0 0 0 0 0 0 +-6.408 -41.614 -1.419 0 0 0 0 0 0 0 +-6.185 -41.017 -1.395 0 0 0 0 0 0 0 +-6.046 -40.971 -1.393 0 0 0 0 0 0 0 +-5.911 -40.944 -1.391 0 0 0 0 0 0 0 +-5.821 -41.236 -1.401 0 0 0 0 0 0 0 +-5.722 -41 -1.392 0 0 0 0 0 0 0 +-5.594 -41.023 -1.392 0 0 0 0 0 0 0 +-5.461 -41.013 -1.391 0 0 0 0 0 0 0 +-5.344 -41.119 -1.394 0 0 0 0 0 0 0 +-5.213 -41.124 -1.394 0 0 0 0 0 0 0 +-5.082 -41.12 -1.393 0 0 0 0 0 0 0 +-4.963 -41.221 -1.397 0 0 0 0 0 0 0 +-4.9 -41.245 -1.397 0 0 0 0 0 0 0 +-5.444 -51.38 -1.788 0 0 0 0 0 0 0 +-1.99 -19.202 -0.54 0 0 0 0 0 0 0 +-1.913 -19.044 -0.534 0 0 0 0 0 0 0 +-1.816 -18.354 -0.507 0 0 0 0 0 0 0 +-1.757 -18.344 -0.506 0 0 0 0 0 0 0 +-1.698 -18.34 -0.506 0 0 0 0 0 0 0 +-1.64 -18.345 -0.506 0 0 0 0 0 0 0 +-1.583 -18.348 -0.506 0 0 0 0 0 0 0 +-1.526 -18.361 -0.506 0 0 0 0 0 0 0 +-1.468 -18.365 -0.506 0 0 0 0 0 0 0 +-1.439 -18.368 -0.506 0 0 0 0 0 0 0 +-1.38 -18.35 -0.505 0 0 0 0 0 0 0 +-1.322 -18.358 -0.506 0 0 0 0 0 0 0 +-1.266 -18.386 -0.506 0 0 0 0 0 0 0 +-1.208 -18.386 -0.506 0 0 0 0 0 0 0 +-1.152 -18.406 -0.507 0 0 0 0 0 0 0 +-1.094 -18.41 -0.507 0 0 0 0 0 0 0 +-1.066 -18.431 -0.508 0 0 0 0 0 0 0 +-1.007 -18.424 -0.507 0 0 0 0 0 0 0 +-0.95 -18.443 -0.508 0 0 0 0 0 0 0 +-0.893 -18.448 -0.508 0 0 0 0 0 0 0 +-0.835 -18.463 -0.508 0 0 0 0 0 0 0 +-0.778 -18.484 -0.509 0 0 0 0 0 0 0 +-0.721 -18.51 -0.51 0 0 0 0 0 0 0 +-1.891 -51.873 -1.797 0 0 0 0 0 0 0 +-1.716 -51.511 -1.783 0 0 0 0 0 0 0 +-1.551 -51.42 -1.779 0 0 0 0 0 0 0 +-1.368 -50.608 -1.748 0 0 0 0 0 0 0 +-1.164 -48.706 -1.674 0 0 0 0 0 0 0 +-0.991 -47.69 -1.635 0 0 0 0 0 0 0 +-0.819 -46.414 -1.586 0 0 0 0 0 0 0 +-0.732 -45.506 -1.55 0 0 0 0 0 0 0 +-0.583 -45 -1.531 0 0 0 0 0 0 0 +-0.431 -43.849 -1.486 0 0 0 0 0 0 0 +-0.214 -30.88 -0.986 0 0 0 0 0 0 0 +-0.149 -41.64 -1.401 0 0 0 0 0 0 0 +-0.018 -41.687 -1.403 0 0 0 0 0 0 0 +0.113 -41.834 -1.409 0 0 0 0 0 0 0 +0.179 -41.796 -1.407 0 0 0 0 0 0 0 +0.264 -36.004 -1.184 0 0 0 0 0 0 0 +0.377 -36.013 -1.184 0 0 0 0 0 0 0 +0.492 -36.131 -1.189 0 0 0 0 0 0 0 +0.606 -36.17 -1.191 0 0 0 0 0 0 0 +0.838 -41.894 -1.411 0 0 0 0 0 0 0 +0.821 -35.644 -1.17 0 0 0 0 0 0 0 +0.863 -35.087 -1.149 0 0 0 0 0 0 0 +0.959 -34.609 -1.131 0 0 0 0 0 0 0 +1.054 -34.164 -1.114 0 0 0 0 0 0 0 +1.149 -33.791 -1.099 0 0 0 0 0 0 0 +1.242 -33.452 -1.086 0 0 0 0 0 0 0 +1.329 -33.008 -1.069 0 0 0 0 0 0 0 +1.414 -32.579 -1.053 0 0 0 0 0 0 0 +1.496 -32.141 -1.036 0 0 0 0 0 0 0 +1.527 -31.745 -1.021 0 0 0 0 0 0 0 +1.608 -31.379 -1.007 0 0 0 0 0 0 0 +1.684 -30.967 -0.992 0 0 0 0 0 0 0 +1.762 -30.628 -0.979 0 0 0 0 0 0 0 +1.839 -30.319 -0.967 0 0 0 0 0 0 0 +1.91 -29.933 -0.952 0 0 0 0 0 0 0 +1.98 -29.577 -0.939 0 0 0 0 0 0 0 +2.017 -29.437 -0.933 0 0 0 0 0 0 0 +2.11 -29.438 -0.934 0 0 0 0 0 0 0 +2.203 -29.437 -0.934 0 0 0 0 0 0 0 +2.297 -29.448 -0.935 0 0 0 0 0 0 0 +2.391 -29.461 -0.935 0 0 0 0 0 0 0 +2.485 -29.469 -0.936 0 0 0 0 0 0 0 +2.532 -29.471 -0.936 0 0 0 0 0 0 0 +2.444 -27.459 -0.859 0 0 0 0 0 0 0 +2.495 -27.069 -0.844 0 0 0 0 0 0 0 +2.552 -26.766 -0.833 0 0 0 0 0 0 0 +2.613 -26.526 -0.824 0 0 0 0 0 0 0 +2.68 -26.358 -0.817 0 0 0 0 0 0 0 +2.741 -26.149 -0.81 0 0 0 0 0 0 0 +2.799 -25.92 -0.801 0 0 0 0 0 0 0 +2.806 -25.611 -0.789 0 0 0 0 0 0 0 +2.857 -25.34 -0.779 0 0 0 0 0 0 0 +2.901 -25.023 -0.767 0 0 0 0 0 0 0 +2.95 -24.77 -0.758 0 0 0 0 0 0 0 +3.013 -24.642 -0.753 0 0 0 0 0 0 0 +3.055 -24.357 -0.742 0 0 0 0 0 0 0 +3.101 -24.109 -0.733 0 0 0 0 0 0 0 +3.121 -23.967 -0.728 0 0 0 0 0 0 0 +3.148 -23.601 -0.714 0 0 0 0 0 0 0 +3.197 -23.407 -0.707 0 0 0 0 0 0 0 +3.249 -23.24 -0.701 0 0 0 0 0 0 0 +3.307 -23.131 -0.697 0 0 0 0 0 0 0 +3.354 -22.941 -0.69 0 0 0 0 0 0 0 +3.376 -22.598 -0.677 0 0 0 0 0 0 0 +3.399 -22.512 -0.674 0 0 0 0 0 0 0 +3.432 -22.258 -0.664 0 0 0 0 0 0 0 +3.506 -22.277 -0.665 0 0 0 0 0 0 0 +3.565 -22.195 -0.663 0 0 0 0 0 0 0 +3.647 -22.258 -0.666 0 0 0 0 0 0 0 +3.68 -22.026 -0.657 0 0 0 0 0 0 0 +3.788 -22.245 -0.666 0 0 0 0 0 0 0 +3.84 -22.333 -0.67 0 0 0 0 0 0 0 +3.894 -22.23 -0.666 0 0 0 0 0 0 0 +3.949 -22.136 -0.663 0 0 0 0 0 0 0 +4.077 -22.445 -0.675 0 0 0 0 0 0 0 +4.465 -24.138 -0.742 0 0 0 0 0 0 0 +4.543 -24.134 -0.743 0 0 0 0 0 0 0 +4.624 -24.149 -0.744 0 0 0 0 0 0 0 +4.477 -23.188 -0.706 0 0 0 0 0 0 0 +4.51 -22.972 -0.698 0 0 0 0 0 0 0 +4.568 -22.889 -0.696 0 0 0 0 0 0 0 +4.644 -22.892 -0.696 0 0 0 0 0 0 0 +4.722 -22.909 -0.698 0 0 0 0 0 0 0 +4.814 -22.99 -0.701 0 0 0 0 0 0 0 +4.888 -22.982 -0.702 0 0 0 0 0 0 0 +4.94 -23.049 -0.705 0 0 0 0 0 0 0 +6.119 -28.09 -0.904 0 0 0 0 0 0 0 +4.737 -21.452 -0.643 0 0 0 0 0 0 0 +4.82 -21.506 -0.646 0 0 0 0 0 0 0 +4.87 -21.413 -0.643 0 0 0 0 0 0 0 +4.939 -21.407 -0.643 0 0 0 0 0 0 0 +5.003 -21.376 -0.642 0 0 0 0 0 0 0 +5.024 -21.313 -0.64 0 0 0 0 0 0 0 +5.128 -21.451 -0.646 0 0 0 0 0 0 0 +5.191 -21.419 -0.646 0 0 0 0 0 0 0 +5.285 -21.51 -0.65 0 0 0 0 0 0 0 +5.317 -21.351 -0.644 0 0 0 0 0 0 0 +5.411 -21.443 -0.649 0 0 0 0 0 0 0 +5.44 -21.277 -0.643 0 0 0 0 0 0 0 +5.461 -21.22 -0.641 0 0 0 0 0 0 0 +5.526 -21.197 -0.64 0 0 0 0 0 0 0 +5.601 -21.21 -0.642 0 0 0 0 0 0 0 +5.671 -21.204 -0.642 0 0 0 0 0 0 0 +5.732 -21.165 -0.641 0 0 0 0 0 0 0 +5.824 -21.241 -0.645 0 0 0 0 0 0 0 +5.884 -21.2 -0.644 0 0 0 0 0 0 0 +5.956 -21.325 -0.65 0 0 0 0 0 0 0 +6.031 -21.337 -0.651 0 0 0 0 0 0 0 +6.098 -21.316 -0.651 0 0 0 0 0 0 0 +6.158 -21.274 -0.65 0 0 0 0 0 0 0 +6.224 -21.251 -0.65 0 0 0 0 0 0 0 +6.301 -21.267 -0.651 0 0 0 0 0 0 0 +6.378 -21.28 -0.652 0 0 0 0 0 0 0 +6.405 -21.251 -0.652 0 0 0 0 0 0 0 +6.48 -21.257 -0.653 0 0 0 0 0 0 0 +6.584 -21.357 -0.658 0 0 0 0 0 0 0 +6.638 -21.294 -0.656 0 0 0 0 0 0 0 +6.713 -21.298 -0.657 0 0 0 0 0 0 0 +6.784 -21.29 -0.657 0 0 0 0 0 0 0 +6.86 -21.296 -0.658 0 0 0 0 0 0 0 +6.906 -21.325 -0.66 0 0 0 0 0 0 0 +6.993 -21.364 -0.663 0 0 0 0 0 0 0 +7.066 -21.359 -0.663 0 0 0 0 0 0 0 +7.152 -21.395 -0.666 0 0 0 0 0 0 0 +7.23 -21.403 -0.667 0 0 0 0 0 0 0 +7.296 -21.376 -0.667 0 0 0 0 0 0 0 +7.379 -21.398 -0.669 0 0 0 0 0 0 0 +7.428 -21.432 -0.67 0 0 0 0 0 0 0 +7.508 -21.446 -0.672 0 0 0 0 0 0 0 +3.727 -10.578 -0.228 0 0 0 0 0 0 0 +3.738 -10.504 -0.226 0 0 0 0 0 0 0 +3.78 -10.517 -0.227 0 0 0 0 0 0 0 +3.818 -10.52 -0.227 0 0 0 0 0 0 0 +7.912 -21.51 -0.68 0 0 0 0 0 0 0 +7.938 -21.475 -0.679 0 0 0 0 0 0 0 +8.03 -21.515 -0.681 0 0 0 0 0 0 0 +8.116 -21.54 -0.683 0 0 0 0 0 0 0 +8.17 -21.477 -0.682 0 0 0 0 0 0 0 +8.251 -21.487 -0.683 0 0 0 0 0 0 0 +7.576 -19.552 -0.604 0 0 0 0 0 0 0 +7.607 -19.452 -0.601 0 0 0 0 0 0 0 +8.292 -21.1 -0.67 0 0 0 0 0 0 0 +8.32 -20.977 -0.666 0 0 0 0 0 0 0 +8.341 -20.84 -0.661 0 0 0 0 0 0 0 +8.368 -20.717 -0.657 0 0 0 0 0 0 0 +8.393 -20.593 -0.653 0 0 0 0 0 0 0 +8.414 -20.461 -0.649 0 0 0 0 0 0 0 +8.432 -20.324 -0.644 0 0 0 0 0 0 0 +8.422 -20.211 -0.64 0 0 0 0 0 0 0 +8.449 -20.098 -0.636 0 0 0 0 0 0 0 +8.461 -19.95 -0.631 0 0 0 0 0 0 0 +8.485 -19.833 -0.628 0 0 0 0 0 0 0 +8.503 -19.705 -0.623 0 0 0 0 0 0 0 +8.529 -19.596 -0.62 0 0 0 0 0 0 0 +8.546 -19.467 -0.616 0 0 0 0 0 0 0 +8.537 -19.366 -0.612 0 0 0 0 0 0 0 +8.553 -19.238 -0.608 0 0 0 0 0 0 0 +8.573 -19.12 -0.604 0 0 0 0 0 0 0 +8.578 -18.973 -0.599 0 0 0 0 0 0 0 +8.615 -18.895 -0.597 0 0 0 0 0 0 0 +8.633 -18.779 -0.593 0 0 0 0 0 0 0 +8.651 -18.663 -0.589 0 0 0 0 0 0 0 +8.637 -18.557 -0.585 0 0 0 0 0 0 0 +8.658 -18.452 -0.582 0 0 0 0 0 0 0 +8.676 -18.34 -0.578 0 0 0 0 0 0 0 +8.695 -18.231 -0.575 0 0 0 0 0 0 0 +8.723 -18.145 -0.572 0 0 0 0 0 0 0 +8.731 -18.015 -0.568 0 0 0 0 0 0 0 +8.739 -17.888 -0.564 0 0 0 0 0 0 0 +8.728 -17.796 -0.56 0 0 0 0 0 0 0 +8.87 -17.942 -0.568 0 0 0 0 0 0 0 +8.897 -17.855 -0.565 0 0 0 0 0 0 0 +8.912 -17.747 -0.562 0 0 0 0 0 0 0 +8.934 -17.651 -0.559 0 0 0 0 0 0 0 +8.95 -17.546 -0.555 0 0 0 0 0 0 0 +8.965 -17.44 -0.552 0 0 0 0 0 0 0 +8.952 -17.348 -0.549 0 0 0 0 0 0 0 +8.969 -17.249 -0.545 0 0 0 0 0 0 0 +8.99 -17.157 -0.543 0 0 0 0 0 0 0 +9.009 -17.063 -0.54 0 0 0 0 0 0 0 +9.014 -16.943 -0.536 0 0 0 0 0 0 0 +9.043 -16.871 -0.534 0 0 0 0 0 0 0 +9.049 -16.754 -0.53 0 0 0 0 0 0 0 +9.041 -16.677 -0.527 0 0 0 0 0 0 0 +9.055 -16.58 -0.524 0 0 0 0 0 0 0 +9.068 -16.48 -0.521 0 0 0 0 0 0 0 +9.084 -16.386 -0.518 0 0 0 0 0 0 0 +9.102 -16.299 -0.516 0 0 0 0 0 0 0 +9.114 -16.2 -0.513 0 0 0 0 0 0 0 +9.137 -16.123 -0.51 0 0 0 0 0 0 0 +9.127 -16.046 -0.508 0 0 0 0 0 0 0 +9.138 -15.95 -0.505 0 0 0 0 0 0 0 +9.15 -15.855 -0.502 0 0 0 0 0 0 0 +9.169 -15.773 -0.499 0 0 0 0 0 0 0 +9.183 -15.684 -0.497 0 0 0 0 0 0 0 +9.198 -15.598 -0.494 0 0 0 0 0 0 0 +9.214 -15.512 -0.492 0 0 0 0 0 0 0 +9.213 -15.457 -0.49 0 0 0 0 0 0 0 +9.273 -15.446 -0.491 0 0 0 0 0 0 0 +9.349 -15.462 -0.493 0 0 0 0 0 0 0 +9.422 -15.473 -0.494 0 0 0 0 0 0 0 +9.521 -15.525 -0.498 0 0 0 0 0 0 0 +9.51 -15.398 -0.494 0 0 0 0 0 0 0 +7.086 -11.366 -0.312 0 0 0 0 0 0 0 +7.125 -11.349 -0.313 0 0 0 0 0 0 0 +7.149 -11.309 -0.312 0 0 0 0 0 0 0 +7.185 -11.287 -0.312 0 0 0 0 0 0 0 +7.221 -11.266 -0.312 0 0 0 0 0 0 0 +7.243 -11.221 -0.311 0 0 0 0 0 0 0 +7.271 -11.189 -0.31 0 0 0 0 0 0 0 +7.286 -11.172 -0.31 0 0 0 0 0 0 0 +7.315 -11.141 -0.31 0 0 0 0 0 0 0 +7.35 -11.118 -0.31 0 0 0 0 0 0 0 +7.375 -11.08 -0.309 0 0 0 0 0 0 0 +7.399 -11.04 -0.308 0 0 0 0 0 0 0 +7.434 -11.018 -0.308 0 0 0 0 0 0 0 +7.469 -10.995 -0.308 0 0 0 0 0 0 0 +7.476 -10.968 -0.308 0 0 0 0 0 0 0 +7.51 -10.945 -0.308 0 0 0 0 0 0 0 +7.54 -10.914 -0.307 0 0 0 0 0 0 0 +7.565 -10.878 -0.307 0 0 0 0 0 0 0 +7.595 -10.847 -0.306 0 0 0 0 0 0 0 +7.625 -10.818 -0.306 0 0 0 0 0 0 0 +7.655 -10.788 -0.306 0 0 0 0 0 0 0 +7.712 -10.796 -0.307 0 0 0 0 0 0 0 +7.717 -10.768 -0.307 0 0 0 0 0 0 0 +7.867 -10.904 -0.314 0 0 0 0 0 0 0 +9.515 -13.091 -0.42 0 0 0 0 0 0 0 +9.538 -13.037 -0.419 0 0 0 0 0 0 0 +9.542 -12.957 -0.416 0 0 0 0 0 0 0 +9.559 -12.895 -0.415 0 0 0 0 0 0 0 +9.569 -12.825 -0.413 0 0 0 0 0 0 0 +9.557 -12.767 -0.411 0 0 0 0 0 0 0 +9.565 -12.694 -0.409 0 0 0 0 0 0 0 +9.584 -12.637 -0.407 0 0 0 0 0 0 0 +9.591 -12.564 -0.405 0 0 0 0 0 0 0 +9.612 -12.51 -0.404 0 0 0 0 0 0 0 +9.614 -12.432 -0.402 0 0 0 0 0 0 0 +9.604 -12.379 -0.4 0 0 0 0 0 0 0 +9.609 -12.305 -0.398 0 0 0 0 0 0 0 +9.637 -12.262 -0.397 0 0 0 0 0 0 0 +9.636 -12.182 -0.395 0 0 0 0 0 0 0 +9.661 -12.134 -0.394 0 0 0 0 0 0 0 +9.659 -12.054 -0.391 0 0 0 0 0 0 0 +9.671 -11.992 -0.39 0 0 0 0 0 0 0 +9.66 -11.94 -0.388 0 0 0 0 0 0 0 +9.672 -11.879 -0.387 0 0 0 0 0 0 0 +9.685 -11.819 -0.385 0 0 0 0 0 0 0 +9.694 -11.755 -0.383 0 0 0 0 0 0 0 +9.703 -11.69 -0.382 0 0 0 0 0 0 0 +9.72 -11.637 -0.381 0 0 0 0 0 0 0 +9.725 -11.568 -0.379 0 0 0 0 0 0 0 +9.725 -11.531 -0.378 0 0 0 0 0 0 0 +9.62 -11.335 -0.369 0 0 0 0 0 0 0 +9.621 -11.265 -0.367 0 0 0 0 0 0 0 +9.632 -11.206 -0.366 0 0 0 0 0 0 0 +9.637 -11.141 -0.364 0 0 0 0 0 0 0 +9.651 -11.087 -0.363 0 0 0 0 0 0 0 +9.663 -11.031 -0.361 0 0 0 0 0 0 0 +9.675 -10.975 -0.36 0 0 0 0 0 0 0 +9.665 -10.928 -0.358 0 0 0 0 0 0 0 +9.68 -10.877 -0.357 0 0 0 0 0 0 0 +9.674 -10.802 -0.355 0 0 0 0 0 0 0 +9.68 -10.74 -0.353 0 0 0 0 0 0 0 +9.683 -10.676 -0.352 0 0 0 0 0 0 0 +9.707 -10.635 -0.351 0 0 0 0 0 0 0 +9.704 -10.565 -0.349 0 0 0 0 0 0 0 +9.728 -10.558 -0.349 0 0 0 0 0 0 0 +9.728 -10.491 -0.348 0 0 0 0 0 0 0 +9.732 -10.43 -0.346 0 0 0 0 0 0 0 +9.743 -10.376 -0.345 0 0 0 0 0 0 0 +9.752 -10.321 -0.343 0 0 0 0 0 0 0 +9.762 -10.267 -0.342 0 0 0 0 0 0 0 +9.76 -10.2 -0.34 0 0 0 0 0 0 0 +9.766 -10.175 -0.34 0 0 0 0 0 0 0 +9.766 -10.111 -0.338 0 0 0 0 0 0 0 +9.779 -10.062 -0.337 0 0 0 0 0 0 0 +9.79 -10.01 -0.336 0 0 0 0 0 0 0 +9.8 -9.957 -0.335 0 0 0 0 0 0 0 +9.816 -9.911 -0.334 0 0 0 0 0 0 0 +9.798 -9.862 -0.332 0 0 0 0 0 0 0 +9.81 -9.812 -0.331 0 0 0 0 0 0 0 +9.821 -9.762 -0.33 0 0 0 0 0 0 0 +9.838 -9.717 -0.329 0 0 0 0 0 0 0 +9.844 -9.662 -0.328 0 0 0 0 0 0 0 +9.858 -9.616 -0.327 0 0 0 0 0 0 0 +9.858 -9.556 -0.325 0 0 0 0 0 0 0 +9.874 -9.511 -0.325 0 0 0 0 0 0 0 +9.871 -9.479 -0.324 0 0 0 0 0 0 0 +9.876 -9.424 -0.322 0 0 0 0 0 0 0 +9.892 -9.38 -0.322 0 0 0 0 0 0 0 +9.895 -9.324 -0.32 0 0 0 0 0 0 0 +9.901 -9.271 -0.319 0 0 0 0 0 0 0 +9.905 -9.217 -0.318 0 0 0 0 0 0 0 +9.894 -9.149 -0.316 0 0 0 0 0 0 0 +9.885 -9.112 -0.314 0 0 0 0 0 0 0 +9.902 -9.07 -0.314 0 0 0 0 0 0 0 +9.899 -9.011 -0.312 0 0 0 0 0 0 0 +9.94 -8.991 -0.313 0 0 0 0 0 0 0 +9.923 -8.919 -0.31 0 0 0 0 0 0 0 +9.955 -8.892 -0.311 0 0 0 0 0 0 0 +9.945 -8.827 -0.309 0 0 0 0 0 0 0 +9.955 -8.808 -0.308 0 0 0 0 0 0 0 +9.949 -8.747 -0.307 0 0 0 0 0 0 0 +9.957 -8.699 -0.306 0 0 0 0 0 0 0 +9.965 -8.651 -0.305 0 0 0 0 0 0 0 +9.987 -8.615 -0.304 0 0 0 0 0 0 0 +9.982 -8.557 -0.303 0 0 0 0 0 0 0 +9.991 -8.51 -0.302 0 0 0 0 0 0 0 +9.997 -8.488 -0.302 0 0 0 0 0 0 0 +9.993 -8.43 -0.3 0 0 0 0 0 0 0 +10.018 -8.398 -0.3 0 0 0 0 0 0 0 +10.044 -8.366 -0.3 0 0 0 0 0 0 0 +10.07 -8.335 -0.3 0 0 0 0 0 0 0 +10.09 -8.298 -0.3 0 0 0 0 0 0 0 +10.112 -8.29 -0.3 0 0 0 0 0 0 0 +10.118 -8.241 -0.299 0 0 0 0 0 0 0 +10.129 -8.197 -0.298 0 0 0 0 0 0 0 +10.154 -8.165 -0.298 0 0 0 0 0 0 0 +10.177 -8.131 -0.298 0 0 0 0 0 0 0 +10.202 -8.099 -0.298 0 0 0 0 0 0 0 +10.228 -8.067 -0.298 0 0 0 0 0 0 0 +10.273 -8.051 -0.299 0 0 0 0 0 0 0 +10.288 -8.036 -0.299 0 0 0 0 0 0 0 +10.302 -7.995 -0.299 0 0 0 0 0 0 0 +10.333 -7.967 -0.299 0 0 0 0 0 0 0 +10.353 -7.931 -0.299 0 0 0 0 0 0 0 +10.377 -7.897 -0.299 0 0 0 0 0 0 0 +10.389 -7.855 -0.298 0 0 0 0 0 0 0 +10.41 -7.82 -0.298 0 0 0 0 0 0 0 +10.429 -7.808 -0.298 0 0 0 0 0 0 0 +10.444 -7.768 -0.298 0 0 0 0 0 0 0 +10.481 -7.745 -0.298 0 0 0 0 0 0 0 +10.489 -7.7 -0.298 0 0 0 0 0 0 0 +10.518 -7.671 -0.298 0 0 0 0 0 0 0 +10.534 -7.632 -0.297 0 0 0 0 0 0 0 +10.566 -7.605 -0.298 0 0 0 0 0 0 0 +10.565 -7.579 -0.297 0 0 0 0 0 0 0 +10.598 -7.552 -0.298 0 0 0 0 0 0 0 +10.625 -7.521 -0.298 0 0 0 0 0 0 0 +10.636 -7.479 -0.297 0 0 0 0 0 0 0 +10.658 -7.444 -0.297 0 0 0 0 0 0 0 +10.676 -7.407 -0.297 0 0 0 0 0 0 0 +10.709 -7.38 -0.297 0 0 0 0 0 0 0 +10.709 -7.356 -0.297 0 0 0 0 0 0 0 +10.736 -7.324 -0.297 0 0 0 0 0 0 0 +10.758 -7.291 -0.297 0 0 0 0 0 0 0 +10.78 -7.256 -0.297 0 0 0 0 0 0 0 +10.796 -7.217 -0.297 0 0 0 0 0 0 0 +10.828 -7.19 -0.297 0 0 0 0 0 0 0 +10.831 -7.143 -0.296 0 0 0 0 0 0 0 +10.834 -7.12 -0.296 0 0 0 0 0 0 0 +10.851 -7.083 -0.296 0 0 0 0 0 0 0 +10.868 -7.045 -0.295 0 0 0 0 0 0 0 +10.904 -7.02 -0.296 0 0 0 0 0 0 0 +10.916 -6.979 -0.295 0 0 0 0 0 0 0 +10.951 -6.953 -0.296 0 0 0 0 0 0 0 +10.969 -6.917 -0.296 0 0 0 0 0 0 0 +10.984 -6.902 -0.296 0 0 0 0 0 0 0 +11.002 -6.865 -0.296 0 0 0 0 0 0 0 +11.028 -6.834 -0.296 0 0 0 0 0 0 0 +11.052 -6.8 -0.296 0 0 0 0 0 0 0 +11.09 -6.776 -0.297 0 0 0 0 0 0 0 +11.104 -6.737 -0.297 0 0 0 0 0 0 0 +11.175 -6.732 -0.299 0 0 0 0 0 0 0 +11.193 -6.718 -0.299 0 0 0 0 0 0 0 +11.258 -6.709 -0.301 0 0 0 0 0 0 0 +11.305 -6.689 -0.302 0 0 0 0 0 0 0 +11.35 -6.668 -0.303 0 0 0 0 0 0 0 +11.409 -6.654 -0.305 0 0 0 0 0 0 0 +11.453 -6.631 -0.306 0 0 0 0 0 0 0 +11.503 -6.612 -0.307 0 0 0 0 0 0 0 +11.544 -6.612 -0.309 0 0 0 0 0 0 0 +11.593 -6.591 -0.31 0 0 0 0 0 0 0 +11.638 -6.569 -0.311 0 0 0 0 0 0 0 +11.667 -6.537 -0.312 0 0 0 0 0 0 0 +11.718 -6.517 -0.313 0 0 0 0 0 0 0 +11.773 -6.499 -0.314 0 0 0 0 0 0 0 +11.853 -6.495 -0.317 0 0 0 0 0 0 0 +11.895 -6.493 -0.318 0 0 0 0 0 0 0 +11.954 -6.477 -0.32 0 0 0 0 0 0 0 +12.004 -6.455 -0.321 0 0 0 0 0 0 0 +12.051 -6.431 -0.323 0 0 0 0 0 0 0 +12.113 -6.416 -0.324 0 0 0 0 0 0 0 +12.174 -6.399 -0.326 0 0 0 0 0 0 0 +12.247 -6.388 -0.329 0 0 0 0 0 0 0 +12.355 -6.42 -0.333 0 0 0 0 0 0 0 +8.828 -4.525 -0.178 0 0 0 0 0 0 0 +8.828 -4.49 -0.178 0 0 0 0 0 0 0 +12.51 -6.301 -0.336 0 0 0 0 0 0 0 +12.556 -6.275 -0.337 0 0 0 0 0 0 0 +12.612 -6.254 -0.339 0 0 0 0 0 0 0 +12.658 -6.252 -0.34 0 0 0 0 0 0 0 +12.718 -6.232 -0.342 0 0 0 0 0 0 0 +12.763 -6.204 -0.343 0 0 0 0 0 0 0 +12.837 -6.19 -0.345 0 0 0 0 0 0 0 +12.881 -6.162 -0.346 0 0 0 0 0 0 0 +12.942 -6.141 -0.348 0 0 0 0 0 0 0 +12.999 -6.118 -0.35 0 0 0 0 0 0 0 +13.049 -6.116 -0.352 0 0 0 0 0 0 0 +13.131 -6.104 -0.354 0 0 0 0 0 0 0 +13.181 -6.077 -0.356 0 0 0 0 0 0 0 +13.264 -6.065 -0.358 0 0 0 0 0 0 0 +13.305 -6.033 -0.359 0 0 0 0 0 0 0 +13.364 -6.009 -0.361 0 0 0 0 0 0 0 +13.419 -5.983 -0.362 0 0 0 0 0 0 0 +13.482 -5.986 -0.365 0 0 0 0 0 0 0 +13.557 -5.968 -0.367 0 0 0 0 0 0 0 +13.618 -5.944 -0.369 0 0 0 0 0 0 0 +13.686 -5.922 -0.371 0 0 0 0 0 0 0 +13.758 -5.902 -0.373 0 0 0 0 0 0 0 +13.826 -5.88 -0.375 0 0 0 0 0 0 0 +13.883 -5.853 -0.377 0 0 0 0 0 0 0 +13.924 -5.844 -0.378 0 0 0 0 0 0 0 +14.173 -5.843 -0.387 0 0 0 0 0 0 0 +14.228 -5.814 -0.389 0 0 0 0 0 0 0 +14.282 -5.783 -0.39 0 0 0 0 0 0 0 +14.337 -5.753 -0.392 0 0 0 0 0 0 0 +14.373 -5.716 -0.392 0 0 0 0 0 0 0 +14.425 -5.71 -0.394 0 0 0 0 0 0 0 +14.46 -5.671 -0.395 0 0 0 0 0 0 0 +14.522 -5.643 -0.397 0 0 0 0 0 0 0 +14.553 -5.602 -0.397 0 0 0 0 0 0 0 +14.617 -5.574 -0.399 0 0 0 0 0 0 0 +14.659 -5.537 -0.4 0 0 0 0 0 0 0 +14.719 -5.507 -0.402 0 0 0 0 0 0 0 +14.756 -5.495 -0.403 0 0 0 0 0 0 0 +14.813 -5.463 -0.405 0 0 0 0 0 0 0 +14.849 -5.423 -0.405 0 0 0 0 0 0 0 +14.907 -5.391 -0.407 0 0 0 0 0 0 0 +14.965 -5.359 -0.409 0 0 0 0 0 0 0 +15.018 -5.325 -0.41 0 0 0 0 0 0 0 +15.057 -5.285 -0.411 0 0 0 0 0 0 0 +15.128 -5.283 -0.414 0 0 0 0 0 0 0 +15.161 -5.242 -0.414 0 0 0 0 0 0 0 +15.229 -5.211 -0.417 0 0 0 0 0 0 0 +15.258 -5.168 -0.417 0 0 0 0 0 0 0 +14.751 -4.946 -0.396 0 0 0 0 0 0 0 +15.385 -5.103 -0.421 0 0 0 0 0 0 0 +15.42 -5.061 -0.422 0 0 0 0 0 0 0 +15.476 -5.052 -0.424 0 0 0 0 0 0 0 +15.522 -5.014 -0.425 0 0 0 0 0 0 0 +15.591 -4.982 -0.427 0 0 0 0 0 0 0 +15.626 -4.939 -0.428 0 0 0 0 0 0 0 +15.691 -4.905 -0.43 0 0 0 0 0 0 0 +15.75 -4.869 -0.432 0 0 0 0 0 0 0 +15.788 -4.827 -0.432 0 0 0 0 0 0 0 +15.845 -4.817 -0.434 0 0 0 0 0 0 0 +15.719 -4.725 -0.429 0 0 0 0 0 0 0 +15.674 -4.658 -0.426 0 0 0 0 0 0 0 +15.637 -4.593 -0.424 0 0 0 0 0 0 0 +15.609 -4.532 -0.423 0 0 0 0 0 0 0 +15.558 -4.464 -0.42 0 0 0 0 0 0 0 +15.587 -4.42 -0.421 0 0 0 0 0 0 0 +15.645 -4.383 -0.422 0 0 0 0 0 0 0 +15.691 -4.369 -0.424 0 0 0 0 0 0 0 +15.754 -4.334 -0.426 0 0 0 0 0 0 0 +15.808 -4.295 -0.428 0 0 0 0 0 0 0 +15.872 -4.259 -0.43 0 0 0 0 0 0 0 +15.914 -4.216 -0.431 0 0 0 0 0 0 0 +15.98 -4.18 -0.433 0 0 0 0 0 0 0 +16.035 -4.141 -0.434 0 0 0 0 0 0 0 +16.065 -4.121 -0.435 0 0 0 0 0 0 0 +16.14 -4.087 -0.438 0 0 0 0 0 0 0 +16.192 -4.046 -0.439 0 0 0 0 0 0 0 +16.262 -4.009 -0.442 0 0 0 0 0 0 0 +16.32 -3.969 -0.443 0 0 0 0 0 0 0 +16.386 -3.93 -0.446 0 0 0 0 0 0 0 +16.43 -3.913 -0.447 0 0 0 0 0 0 0 +16.502 -3.876 -0.449 0 0 0 0 0 0 0 +16.541 -3.83 -0.451 0 0 0 0 0 0 0 +16.616 -3.792 -0.453 0 0 0 0 0 0 0 +16.69 -3.754 -0.455 0 0 0 0 0 0 0 +16.71 -3.703 -0.456 0 0 0 0 0 0 0 +16.791 -3.666 -0.459 0 0 0 0 0 0 0 +16.865 -3.627 -0.461 0 0 0 0 0 0 0 +16.918 -3.61 -0.463 0 0 0 0 0 0 0 +16.99 -3.569 -0.465 0 0 0 0 0 0 0 +17.052 -3.526 -0.467 0 0 0 0 0 0 0 +17.096 -3.48 -0.469 0 0 0 0 0 0 0 +17.182 -3.441 -0.472 0 0 0 0 0 0 0 +17.231 -3.394 -0.473 0 0 0 0 0 0 0 +17.317 -3.355 -0.476 0 0 0 0 0 0 0 +17.367 -3.336 -0.478 0 0 0 0 0 0 0 +17.434 -3.292 -0.48 0 0 0 0 0 0 0 +13.667 -2.542 -0.332 0 0 0 0 0 0 0 +13.632 -2.491 -0.33 0 0 0 0 0 0 0 +13.58 -2.438 -0.328 0 0 0 0 0 0 0 +13.59 -2.396 -0.328 0 0 0 0 0 0 0 +7.648 -1.335 -0.095 0 0 0 0 0 0 0 +7.611 -1.316 -0.094 0 0 0 0 0 0 0 +7.621 -1.293 -0.094 0 0 0 0 0 0 0 +7.609 -1.267 -0.093 0 0 0 0 0 0 0 +7.615 -1.243 -0.093 0 0 0 0 0 0 0 +7.643 -1.223 -0.094 0 0 0 0 0 0 0 +7.688 -1.205 -0.096 0 0 0 0 0 0 0 +13.715 -2.064 -0.331 0 0 0 0 0 0 0 +13.775 -2.028 -0.333 0 0 0 0 0 0 0 +13.813 -1.989 -0.334 0 0 0 0 0 0 0 +19.257 -2.701 -0.546 0 0 0 0 0 0 0 +19.301 -2.646 -0.547 0 0 0 0 0 0 0 +19.404 -2.598 -0.551 0 0 0 0 0 0 0 +19.483 -2.546 -0.553 0 0 0 0 0 0 0 +19.414 -2.506 -0.551 0 0 0 0 0 0 0 +19.281 -2.427 -0.545 0 0 0 0 0 0 0 +19.463 -2.388 -0.552 0 0 0 0 0 0 0 +19.552 -2.337 -0.555 0 0 0 0 0 0 0 +19.603 -2.28 -0.557 0 0 0 0 0 0 0 +19.646 -2.222 -0.558 0 0 0 0 0 0 0 +19.696 -2.166 -0.56 0 0 0 0 0 0 0 +19.741 -2.139 -0.561 0 0 0 0 0 0 0 +19.804 -2.083 -0.564 0 0 0 0 0 0 0 +19.842 -2.024 -0.565 0 0 0 0 0 0 0 +19.892 -1.966 -0.567 0 0 0 0 0 0 0 +19.94 -1.907 -0.568 0 0 0 0 0 0 0 +20.003 -1.85 -0.57 0 0 0 0 0 0 0 +20.059 -1.791 -0.572 0 0 0 0 0 0 0 +20.103 -1.763 -0.574 0 0 0 0 0 0 0 +20.139 -1.703 -0.575 0 0 0 0 0 0 0 +20.204 -1.644 -0.577 0 0 0 0 0 0 0 +20.271 -1.585 -0.58 0 0 0 0 0 0 0 +20.315 -1.525 -0.581 0 0 0 0 0 0 0 +20.364 -1.464 -0.583 0 0 0 0 0 0 0 +20.406 -1.403 -0.585 0 0 0 0 0 0 0 +20.456 -1.374 -0.586 0 0 0 0 0 0 0 +20.51 -1.313 -0.588 0 0 0 0 0 0 0 +20.558 -1.251 -0.59 0 0 0 0 0 0 0 +20.616 -1.189 -0.592 0 0 0 0 0 0 0 +20.68 -1.128 -0.594 0 0 0 0 0 0 0 +20.725 -1.065 -0.596 0 0 0 0 0 0 0 +20.762 -1.001 -0.597 0 0 0 0 0 0 0 +20.818 -0.971 -0.599 0 0 0 0 0 0 0 +20.876 -0.908 -0.602 0 0 0 0 0 0 0 +20.931 -0.844 -0.604 0 0 0 0 0 0 0 +20.988 -0.781 -0.606 0 0 0 0 0 0 0 +21.05 -0.717 -0.608 0 0 0 0 0 0 0 +21.098 -0.652 -0.61 0 0 0 0 0 0 0 +21.16 -0.587 -0.612 0 0 0 0 0 0 0 +21.213 -0.555 -0.614 0 0 0 0 0 0 0 +21.282 -0.49 -0.617 0 0 0 0 0 0 0 +21.334 -0.424 -0.619 0 0 0 0 0 0 0 +21.361 -0.357 -0.62 0 0 0 0 0 0 0 +21.43 -0.291 -0.622 0 0 0 0 0 0 0 +21.495 -0.224 -0.625 0 0 0 0 0 0 0 +21.541 -0.157 -0.626 0 0 0 0 0 0 0 +21.581 -0.124 -0.628 0 0 0 0 0 0 0 +21.654 -0.056 -0.631 0 0 0 0 0 0 0 +23.563 0.009 -0.844 0 0 0 0 0 0 0 +36.264 0.114 -1.409 0 0 0 0 0 0 0 +36.21 0.228 -1.407 0 0 0 0 0 0 0 +39.625 0.371 -1.559 0 0 0 0 0 0 0 +39.57 0.495 -1.556 0 0 0 0 0 0 0 +39.5 0.618 -1.553 0 0 0 0 0 0 0 +34.888 0.604 -1.348 0 0 0 0 0 0 0 +34.73 0.711 -1.341 0 0 0 0 0 0 0 +34.548 0.816 -1.333 0 0 0 0 0 0 0 +34.406 0.92 -1.327 0 0 0 0 0 0 0 +34.233 1.024 -1.32 0 0 0 0 0 0 0 +34.074 1.126 -1.313 0 0 0 0 0 0 0 +33.916 1.228 -1.306 0 0 0 0 0 0 0 +33.799 1.277 -1.301 0 0 0 0 0 0 0 +33.541 1.373 -1.289 0 0 0 0 0 0 0 +33.26 1.571 -1.277 0 0 0 0 0 0 0 +33.121 1.669 -1.271 0 0 0 0 0 0 0 +33.028 1.768 -1.267 0 0 0 0 0 0 0 +25.465 1.49 -0.931 0 0 0 0 0 0 0 +32.909 2.021 -1.263 0 0 0 0 0 0 0 +32.909 2.125 -1.263 0 0 0 0 0 0 0 +32.924 2.23 -1.264 0 0 0 0 0 0 0 +32.971 2.337 -1.267 0 0 0 0 0 0 0 +33.047 2.447 -1.27 0 0 0 0 0 0 0 +33.075 2.553 -1.272 0 0 0 0 0 0 0 +33.493 2.744 -1.291 0 0 0 0 0 0 0 +18.797 1.67 -0.636 0 0 0 0 0 0 0 +18.73 1.724 -0.633 0 0 0 0 0 0 0 +18.713 1.782 -0.632 0 0 0 0 0 0 0 +18.956 1.864 -0.644 0 0 0 0 0 0 0 +40.493 4.081 -1.607 0 0 0 0 0 0 0 +40.55 4.152 -1.609 0 0 0 0 0 0 0 +33.398 3.742 -1.291 0 0 0 0 0 0 0 +33.652 3.878 -1.303 0 0 0 0 0 0 0 +41.013 4.851 -1.633 0 0 0 0 0 0 0 +40.96 4.975 -1.632 0 0 0 0 0 0 0 +40.792 5.02 -1.624 0 0 0 0 0 0 0 +25.253 3.198 -0.929 0 0 0 0 0 0 0 +40.488 5.241 -1.612 0 0 0 0 0 0 0 +30.596 4.26 -1.17 0 0 0 0 0 0 0 +30.454 4.338 -1.165 0 0 0 0 0 0 0 +39.68 5.708 -1.579 0 0 0 0 0 0 0 +20.932 3.091 -0.738 0 0 0 0 0 0 0 +20.796 3.138 -0.732 0 0 0 0 0 0 0 +39.194 6.016 -1.56 0 0 0 0 0 0 0 +39.039 6.118 -1.554 0 0 0 0 0 0 0 +38.877 6.218 -1.548 0 0 0 0 0 0 0 +24.782 4.173 -0.914 0 0 0 0 0 0 0 +24.994 4.289 -0.924 0 0 0 0 0 0 0 +38.488 6.715 -1.534 0 0 0 0 0 0 0 +38.465 6.836 -1.534 0 0 0 0 0 0 0 +38.406 6.95 -1.532 0 0 0 0 0 0 0 +38.35 7.064 -1.531 0 0 0 0 0 0 0 +38.261 7.11 -1.527 0 0 0 0 0 0 0 +18.969 3.724 -0.656 0 0 0 0 0 0 0 +18.965 3.785 -0.657 0 0 0 0 0 0 0 +38.021 7.685 -1.522 0 0 0 0 0 0 0 +37.591 7.722 -1.503 0 0 0 0 0 0 0 +23.436 4.939 -0.862 0 0 0 0 0 0 0 +37.916 8.099 -1.521 0 0 0 0 0 0 0 +18.892 4.173 -0.657 0 0 0 0 0 0 0 +18.89 4.235 -0.657 0 0 0 0 0 0 0 +35.68 8.093 -1.424 0 0 0 0 0 0 0 +35.659 8.147 -1.423 0 0 0 0 0 0 0 +35.707 8.276 -1.427 0 0 0 0 0 0 0 +21.773 5.201 -0.792 0 0 0 0 0 0 0 +22.118 5.357 -0.809 0 0 0 0 0 0 0 +20.312 4.989 -0.727 0 0 0 0 0 0 0 +37.506 9.315 -1.515 0 0 0 0 0 0 0 +37.467 9.368 -1.514 0 0 0 0 0 0 0 +37.443 9.487 -1.514 0 0 0 0 0 0 0 +37.432 9.609 -1.515 0 0 0 0 0 0 0 +37.421 9.732 -1.516 0 0 0 0 0 0 0 +37.425 9.859 -1.518 0 0 0 0 0 0 0 +34.461 9.196 -1.383 0 0 0 0 0 0 0 +37.413 10.107 -1.52 0 0 0 0 0 0 0 +16.186 4.47 -0.543 0 0 0 0 0 0 0 +16.118 4.506 -0.541 0 0 0 0 0 0 0 +16.09 4.552 -0.54 0 0 0 0 0 0 0 +16.068 4.601 -0.54 0 0 0 0 0 0 0 +16.038 4.647 -0.539 0 0 0 0 0 0 0 +16.016 4.695 -0.539 0 0 0 0 0 0 0 +15.993 4.716 -0.538 0 0 0 0 0 0 0 +15.968 4.763 -0.538 0 0 0 0 0 0 0 +15.946 4.811 -0.537 0 0 0 0 0 0 0 +15.925 4.859 -0.537 0 0 0 0 0 0 0 +15.898 4.906 -0.536 0 0 0 0 0 0 0 +15.873 4.953 -0.536 0 0 0 0 0 0 0 +15.852 5.001 -0.536 0 0 0 0 0 0 0 +15.838 5.024 -0.535 0 0 0 0 0 0 0 +15.818 5.072 -0.535 0 0 0 0 0 0 0 +15.795 5.119 -0.535 0 0 0 0 0 0 0 +15.779 5.169 -0.535 0 0 0 0 0 0 0 +15.753 5.215 -0.534 0 0 0 0 0 0 0 +15.732 5.264 -0.534 0 0 0 0 0 0 0 +15.703 5.309 -0.534 0 0 0 0 0 0 0 +15.7 5.335 -0.534 0 0 0 0 0 0 0 +15.67 5.38 -0.533 0 0 0 0 0 0 0 +15.664 5.433 -0.534 0 0 0 0 0 0 0 +15.632 5.477 -0.533 0 0 0 0 0 0 0 +15.605 5.523 -0.533 0 0 0 0 0 0 0 +15.605 5.578 -0.533 0 0 0 0 0 0 0 +15.58 5.624 -0.533 0 0 0 0 0 0 0 +15.547 5.668 -0.532 0 0 0 0 0 0 0 +15.547 5.695 -0.533 0 0 0 0 0 0 0 +15.526 5.743 -0.533 0 0 0 0 0 0 0 +15.509 5.792 -0.533 0 0 0 0 0 0 0 +15.493 5.842 -0.533 0 0 0 0 0 0 0 +15.475 5.89 -0.533 0 0 0 0 0 0 0 +15.443 5.934 -0.532 0 0 0 0 0 0 0 +15.697 6.059 -0.545 0 0 0 0 0 0 0 +15.799 6.155 -0.551 0 0 0 0 0 0 0 +29.642 11.74 -1.214 0 0 0 0 0 0 0 +17.692 7.083 -0.644 0 0 0 0 0 0 0 +33.159 13.371 -1.387 0 0 0 0 0 0 0 +33.451 13.611 -1.403 0 0 0 0 0 0 0 +33.391 13.647 -1.401 0 0 0 0 0 0 0 +33.178 13.682 -1.393 0 0 0 0 0 0 0 +33.318 13.862 -1.401 0 0 0 0 0 0 0 +33.259 14.084 -1.403 0 0 0 0 0 0 0 +33.443 14.285 -1.414 0 0 0 0 0 0 0 +33.187 14.3 -1.404 0 0 0 0 0 0 0 +33.283 14.403 -1.409 0 0 0 0 0 0 0 +33.298 14.534 -1.412 0 0 0 0 0 0 0 +33.522 14.757 -1.425 0 0 0 0 0 0 0 +33.687 14.956 -1.436 0 0 0 0 0 0 0 +33.831 15.147 -1.445 0 0 0 0 0 0 0 +33.78 15.252 -1.445 0 0 0 0 0 0 0 +33.999 15.479 -1.458 0 0 0 0 0 0 0 +33.814 15.524 -1.451 0 0 0 0 0 0 0 +36.255 16.711 -1.572 0 0 0 0 0 0 0 +36.2 16.824 -1.572 0 0 0 0 0 0 0 +36.153 16.94 -1.572 0 0 0 0 0 0 0 +36.119 17.063 -1.573 0 0 0 0 0 0 0 +36.076 17.181 -1.574 0 0 0 0 0 0 0 +28.39 13.636 -1.197 0 0 0 0 0 0 0 +36.047 17.446 -1.578 0 0 0 0 0 0 0 +36.059 17.522 -1.58 0 0 0 0 0 0 0 +36.018 17.642 -1.58 0 0 0 0 0 0 0 +36.002 17.775 -1.582 0 0 0 0 0 0 0 +35.976 17.903 -1.584 0 0 0 0 0 0 0 +35.904 18.008 -1.583 0 0 0 0 0 0 0 +29.088 14.709 -1.246 0 0 0 0 0 0 0 +29.079 14.762 -1.247 0 0 0 0 0 0 0 +35.724 18.27 -1.581 0 0 0 0 0 0 0 +35.709 18.404 -1.583 0 0 0 0 0 0 0 +35.713 18.548 -1.586 0 0 0 0 0 0 0 +35.722 18.696 -1.59 0 0 0 0 0 0 0 +35.693 18.823 -1.591 0 0 0 0 0 0 0 +35.656 18.948 -1.592 0 0 0 0 0 0 0 +27.83 14.851 -1.199 0 0 0 0 0 0 0 +35.637 19.153 -1.596 0 0 0 0 0 0 0 +35.624 19.291 -1.598 0 0 0 0 0 0 0 +35.632 19.44 -1.602 0 0 0 0 0 0 0 +35.599 19.567 -1.603 0 0 0 0 0 0 0 +35.567 19.695 -1.605 0 0 0 0 0 0 0 +35.508 19.809 -1.605 0 0 0 0 0 0 0 +35.474 19.863 -1.605 0 0 0 0 0 0 0 +35.381 19.957 -1.603 0 0 0 0 0 0 0 +35.319 20.068 -1.603 0 0 0 0 0 0 0 +35.247 20.174 -1.603 0 0 0 0 0 0 0 +35.18 20.283 -1.603 0 0 0 0 0 0 0 +35.105 20.387 -1.602 0 0 0 0 0 0 0 +35.034 20.494 -1.602 0 0 0 0 0 0 0 +35.011 20.554 -1.602 0 0 0 0 0 0 0 +34.973 20.68 -1.603 0 0 0 0 0 0 0 +27.575 16.429 -1.224 0 0 0 0 0 0 0 +34.814 20.882 -1.602 0 0 0 0 0 0 0 +34.732 20.982 -1.601 0 0 0 0 0 0 0 +34.663 21.089 -1.601 0 0 0 0 0 0 0 +34.605 21.203 -1.601 0 0 0 0 0 0 0 +34.579 21.261 -1.602 0 0 0 0 0 0 0 +34.5 21.362 -1.601 0 0 0 0 0 0 0 +34.429 21.468 -1.601 0 0 0 0 0 0 0 +34.378 21.587 -1.602 0 0 0 0 0 0 0 +29.678 18.901 -1.361 0 0 0 0 0 0 0 +29.595 18.979 -1.36 0 0 0 0 0 0 0 +29.587 19.105 -1.363 0 0 0 0 0 0 0 +13.054 8.534 -0.49 0 0 0 0 0 0 0 +13.099 8.622 -0.494 0 0 0 0 0 0 0 +33.875 22.401 -1.603 0 0 0 0 0 0 0 +33.775 22.487 -1.601 0 0 0 0 0 0 0 +33.661 22.564 -1.599 0 0 0 0 0 0 0 +33.5 22.61 -1.594 0 0 0 0 0 0 0 +29.628 20.068 -1.388 0 0 0 0 0 0 0 +30.234 20.895 -1.431 0 0 0 0 0 0 0 +30.107 20.948 -1.428 0 0 0 0 0 0 0 +33.111 23.19 -1.594 0 0 0 0 0 0 0 +33.122 23.275 -1.597 0 0 0 0 0 0 0 +29.64 20.971 -1.411 0 0 0 0 0 0 0 +30.059 21.409 -1.438 0 0 0 0 0 0 0 +29.389 21.072 -1.405 0 0 0 0 0 0 0 +29.619 21.378 -1.421 0 0 0 0 0 0 0 +32.841 23.857 -1.602 0 0 0 0 0 0 0 +29.028 21.23 -1.396 0 0 0 0 0 0 0 +29.296 21.496 -1.413 0 0 0 0 0 0 0 +28.34 20.934 -1.363 0 0 0 0 0 0 0 +32.694 24.304 -1.608 0 0 0 0 0 0 0 +28.983 21.833 -1.41 0 0 0 0 0 0 0 +32.664 24.763 -1.619 0 0 0 0 0 0 0 +32.642 24.907 -1.623 0 0 0 0 0 0 0 +30.911 23.665 -1.528 0 0 0 0 0 0 0 +17.227 13.376 -0.766 0 0 0 0 0 0 0 +28.646 22.365 -1.413 0 0 0 0 0 0 0 +32.403 25.458 -1.629 0 0 0 0 0 0 0 +32.354 25.584 -1.631 0 0 0 0 0 0 0 +32.277 25.688 -1.631 0 0 0 0 0 0 0 +32.222 25.811 -1.633 0 0 0 0 0 0 0 +6.77 5.537 -0.185 0 0 0 0 0 0 0 +6.673 5.493 -0.181 0 0 0 0 0 0 0 +6.656 5.514 -0.181 0 0 0 0 0 0 0 +6.6 5.503 -0.179 0 0 0 0 0 0 0 +6.736 5.652 -0.188 0 0 0 0 0 0 0 +11.816 9.921 -0.483 0 0 0 0 0 0 0 +11.799 9.969 -0.483 0 0 0 0 0 0 0 +11.786 10.022 -0.485 0 0 0 0 0 0 0 +11.823 10.117 -0.489 0 0 0 0 0 0 0 +11.832 10.189 -0.491 0 0 0 0 0 0 0 +12.078 10.467 -0.507 0 0 0 0 0 0 0 +19.454 16.945 -0.944 0 0 0 0 0 0 0 +31.441 27.452 -1.653 0 0 0 0 0 0 0 +31.4 27.59 -1.655 0 0 0 0 0 0 0 +31.377 27.745 -1.659 0 0 0 0 0 0 0 +31.305 27.857 -1.66 0 0 0 0 0 0 0 +31.242 27.978 -1.662 0 0 0 0 0 0 0 +19.18 17.298 -0.945 0 0 0 0 0 0 0 +19.164 17.393 -0.947 0 0 0 0 0 0 0 +19.158 17.442 -0.949 0 0 0 0 0 0 0 +19.314 17.695 -0.961 0 0 0 0 0 0 0 +30.454 28.058 -1.638 0 0 0 0 0 0 0 +16.339 15.261 -0.791 0 0 0 0 0 0 0 +16.227 15.252 -0.787 0 0 0 0 0 0 0 +16.147 15.273 -0.785 0 0 0 0 0 0 0 +16.11 15.286 -0.784 0 0 0 0 0 0 0 +16.061 15.335 -0.784 0 0 0 0 0 0 0 +16.015 15.388 -0.784 0 0 0 0 0 0 0 +15.974 15.445 -0.785 0 0 0 0 0 0 0 +15.951 15.521 -0.786 0 0 0 0 0 0 0 +16.128 15.791 -0.8 0 0 0 0 0 0 0 +29.988 29.515 -1.668 0 0 0 0 0 0 0 +30.115 29.733 -1.679 0 0 0 0 0 0 0 +29.972 29.779 -1.676 0 0 0 0 0 0 0 +19.036 19.045 -0.994 0 0 0 0 0 0 0 +29.982 30.165 -1.688 0 0 0 0 0 0 0 +18.552 18.797 -0.971 0 0 0 0 0 0 0 +29.96 30.523 -1.699 0 0 0 0 0 0 0 +29.85 30.603 -1.698 0 0 0 0 0 0 0 +29.877 30.727 -1.703 0 0 0 0 0 0 0 +29.744 30.784 -1.7 0 0 0 0 0 0 0 +28.39 29.569 -1.62 0 0 0 0 0 0 0 +29.779 31.21 -1.715 0 0 0 0 0 0 0 +17.265 18.224 -0.913 0 0 0 0 0 0 0 +17.374 18.455 -0.924 0 0 0 0 0 0 0 +17.27 18.46 -0.921 0 0 0 0 0 0 0 +17.218 18.463 -0.919 0 0 0 0 0 0 0 +17.215 18.577 -0.923 0 0 0 0 0 0 0 +17.291 18.776 -0.932 0 0 0 0 0 0 0 +17.217 18.814 -0.931 0 0 0 0 0 0 0 +16.963 18.772 -0.922 0 0 0 0 0 0 0 +29.121 32.402 -1.734 0 0 0 0 0 0 0 +15.241 17.139 -0.817 0 0 0 0 0 0 0 +17.01 19.245 -0.939 0 0 0 0 0 0 0 +16.932 19.279 -0.938 0 0 0 0 0 0 0 +16.693 19.127 -0.926 0 0 0 0 0 0 0 +16.631 19.178 -0.925 0 0 0 0 0 0 0 +16.622 19.289 -0.929 0 0 0 0 0 0 0 +16.627 19.356 -0.931 0 0 0 0 0 0 0 +16.61 19.46 -0.934 0 0 0 0 0 0 0 +16.52 19.478 -0.932 0 0 0 0 0 0 0 +16.395 19.454 -0.928 0 0 0 0 0 0 0 +16.353 19.528 -0.929 0 0 0 0 0 0 0 +16.382 19.689 -0.936 0 0 0 0 0 0 0 +16.365 19.794 -0.939 0 0 0 0 0 0 0 +16.407 19.972 -0.946 0 0 0 0 0 0 0 +16.484 20.13 -0.954 0 0 0 0 0 0 0 +16.631 20.439 -0.968 0 0 0 0 0 0 0 +15.144 18.856 -0.872 0 0 0 0 0 0 0 +15.217 19.069 -0.881 0 0 0 0 0 0 0 +15.023 18.947 -0.872 0 0 0 0 0 0 0 +15.207 19.303 -0.889 0 0 0 0 0 0 0 +18.798 23.929 -1.15 0 0 0 0 0 0 0 +18.65 23.895 -1.145 0 0 0 0 0 0 0 +18.614 24.004 -1.147 0 0 0 0 0 0 0 +15.676 20.354 -0.939 0 0 0 0 0 0 0 +18.739 24.481 -1.168 0 0 0 0 0 0 0 +15.585 20.501 -0.942 0 0 0 0 0 0 0 +15.478 20.427 -0.936 0 0 0 0 0 0 0 +17.425 23.141 -1.085 0 0 0 0 0 0 0 +15.3 20.458 -0.933 0 0 0 0 0 0 0 +15.369 20.684 -0.943 0 0 0 0 0 0 0 +14.832 20.094 -0.907 0 0 0 0 0 0 0 +18.42 25.11 -1.181 0 0 0 0 0 0 0 +18.5 25.385 -1.193 0 0 0 0 0 0 0 +12.965 17.863 -0.778 0 0 0 0 0 0 0 +12.935 17.939 -0.78 0 0 0 0 0 0 0 +12.905 18.017 -0.782 0 0 0 0 0 0 0 +12.849 18.057 -0.782 0 0 0 0 0 0 0 +12.769 18.065 -0.78 0 0 0 0 0 0 0 +12.805 18.237 -0.788 0 0 0 0 0 0 0 +12.876 18.461 -0.797 0 0 0 0 0 0 0 +12.802 18.478 -0.796 0 0 0 0 0 0 0 +12.964 18.774 -0.811 0 0 0 0 0 0 0 +16.647 24.258 -1.105 0 0 0 0 0 0 0 +16.537 24.261 -1.102 0 0 0 0 0 0 0 +16.67 24.62 -1.119 0 0 0 0 0 0 0 +16.682 24.805 -1.126 0 0 0 0 0 0 0 +16.639 24.91 -1.129 0 0 0 0 0 0 0 +17.05 25.698 -1.168 0 0 0 0 0 0 0 +17.26 26.103 -1.188 0 0 0 0 0 0 0 +17.274 26.304 -1.196 0 0 0 0 0 0 0 +17.352 26.604 -1.209 0 0 0 0 0 0 0 +17.355 26.792 -1.216 0 0 0 0 0 0 0 +16.448 25.569 -1.149 0 0 0 0 0 0 0 +16.374 25.63 -1.149 0 0 0 0 0 0 0 +17.207 27.12 -1.225 0 0 0 0 0 0 0 +16.135 25.611 -1.143 0 0 0 0 0 0 0 +16.07 25.596 -1.141 0 0 0 0 0 0 0 +16.051 25.744 -1.146 0 0 0 0 0 0 0 +15.838 25.583 -1.135 0 0 0 0 0 0 0 +15.841 25.768 -1.142 0 0 0 0 0 0 0 +15.795 25.874 -1.145 0 0 0 0 0 0 0 +15.708 25.915 -1.144 0 0 0 0 0 0 0 +15.663 25.933 -1.144 0 0 0 0 0 0 0 +16.283 27.148 -1.204 0 0 0 0 0 0 0 +15.491 26.015 -1.143 0 0 0 0 0 0 0 +15.385 26.023 -1.141 0 0 0 0 0 0 0 +15.71 26.763 -1.177 0 0 0 0 0 0 0 +16.87 28.943 -1.286 0 0 0 0 0 0 0 +16.782 29.001 -1.287 0 0 0 0 0 0 0 +16.694 29.059 -1.287 0 0 0 0 0 0 0 +16.761 29.283 -1.297 0 0 0 0 0 0 0 +16.79 29.547 -1.308 0 0 0 0 0 0 0 +16.711 29.624 -1.309 0 0 0 0 0 0 0 +15.492 27.669 -1.207 0 0 0 0 0 0 0 +15.442 27.786 -1.21 0 0 0 0 0 0 0 +14.696 26.642 -1.15 0 0 0 0 0 0 0 +12.687 23.179 -0.972 0 0 0 0 0 0 0 +12.613 23.13 -0.968 0 0 0 0 0 0 0 +12.532 23.154 -0.967 0 0 0 0 0 0 0 +12.465 23.204 -0.968 0 0 0 0 0 0 0 +12.406 23.269 -0.969 0 0 0 0 0 0 0 +12.334 23.31 -0.969 0 0 0 0 0 0 0 +12.228 23.287 -0.966 0 0 0 0 0 0 0 +12.155 23.325 -0.966 0 0 0 0 0 0 0 +12.135 23.376 -0.968 0 0 0 0 0 0 0 +14.358 27.861 -1.19 0 0 0 0 0 0 0 +14.307 27.979 -1.194 0 0 0 0 0 0 0 +14.268 28.12 -1.199 0 0 0 0 0 0 0 +14.232 28.268 -1.204 0 0 0 0 0 0 0 +14.199 28.424 -1.21 0 0 0 0 0 0 0 +14.164 28.579 -1.215 0 0 0 0 0 0 0 +14.171 28.705 -1.22 0 0 0 0 0 0 0 +14.148 28.888 -1.227 0 0 0 0 0 0 0 +14.138 29.097 -1.235 0 0 0 0 0 0 0 +13.804 29.105 -1.229 0 0 0 0 0 0 0 +13.84 29.538 -1.247 0 0 0 0 0 0 0 +13.753 29.594 -1.248 0 0 0 0 0 0 0 +14.537 31.536 -1.341 0 0 0 0 0 0 0 +14.659 32.065 -1.365 0 0 0 0 0 0 0 +14.593 32.187 -1.368 0 0 0 0 0 0 0 +14.334 31.883 -1.351 0 0 0 0 0 0 0 +14.282 32.036 -1.356 0 0 0 0 0 0 0 +14.195 32.11 -1.358 0 0 0 0 0 0 0 +14.153 32.152 -1.359 0 0 0 0 0 0 0 +14.009 32.099 -1.354 0 0 0 0 0 0 0 +13.984 32.317 -1.363 0 0 0 0 0 0 0 +13.964 32.55 -1.372 0 0 0 0 0 0 0 +13.919 32.728 -1.378 0 0 0 0 0 0 0 +13.806 32.75 -1.377 0 0 0 0 0 0 0 +13.7 32.784 -1.377 0 0 0 0 0 0 0 +13.996 33.639 -1.417 0 0 0 0 0 0 0 +13.806 33.479 -1.407 0 0 0 0 0 0 0 +13.702 33.526 -1.407 0 0 0 0 0 0 0 +13.694 33.808 -1.419 0 0 0 0 0 0 0 +13.655 34.02 -1.427 0 0 0 0 0 0 0 +13.986 35.161 -1.479 0 0 0 0 0 0 0 +13.416 34.042 -1.424 0 0 0 0 0 0 0 +13.756 35.063 -1.472 0 0 0 0 0 0 0 +13.889 35.73 -1.501 0 0 0 0 0 0 0 +13.724 35.637 -1.495 0 0 0 0 0 0 0 +13.897 36.427 -1.53 0 0 0 0 0 0 0 +13.941 36.889 -1.55 0 0 0 0 0 0 0 +13.996 37.387 -1.572 0 0 0 0 0 0 0 +14.018 37.805 -1.59 0 0 0 0 0 0 0 +13.985 37.9 -1.593 0 0 0 0 0 0 0 +13.89 38.01 -1.596 0 0 0 0 0 0 0 +14.038 38.791 -1.631 0 0 0 0 0 0 0 +14.101 39.35 -1.656 0 0 0 0 0 0 0 +14.163 39.916 -1.68 0 0 0 0 0 0 0 +14.266 40.609 -1.711 0 0 0 0 0 0 0 +14.196 40.819 -1.719 0 0 0 0 0 0 0 +14.212 41.072 -1.729 0 0 0 0 0 0 0 +15.476 45.642 -1.94 0 0 0 0 0 0 0 +15.346 45.73 -1.942 0 0 0 0 0 0 0 +15.201 45.775 -1.942 0 0 0 0 0 0 0 +15.066 45.851 -1.943 0 0 0 0 0 0 0 +14.962 46.019 -1.949 0 0 0 0 0 0 0 +14.829 46.104 -1.95 0 0 0 0 0 0 0 +14.765 46.152 -1.952 0 0 0 0 0 0 0 +14.623 46.21 -1.952 0 0 0 0 0 0 0 +14.49 46.295 -1.954 0 0 0 0 0 0 0 +14.369 46.417 -1.958 0 0 0 0 0 0 0 +14.237 46.51 -1.96 0 0 0 0 0 0 0 +14.106 46.602 -1.962 0 0 0 0 0 0 0 +12.666 42.334 -1.762 0 0 0 0 0 0 0 +12.602 42.362 -1.762 0 0 0 0 0 0 0 +13.774 46.83 -1.967 0 0 0 0 0 0 0 +13.644 46.933 -1.97 0 0 0 0 0 0 0 +13.496 46.973 -1.97 0 0 0 0 0 0 0 +13.368 47.085 -1.973 0 0 0 0 0 0 0 +13.224 47.138 -1.974 0 0 0 0 0 0 0 +13.069 47.154 -1.973 0 0 0 0 0 0 0 +13.015 47.248 -1.976 0 0 0 0 0 0 0 +12.879 47.337 -1.978 0 0 0 0 0 0 0 +12.74 47.412 -1.98 0 0 0 0 0 0 0 +12.601 47.488 -1.982 0 0 0 0 0 0 0 +12.455 47.543 -1.982 0 0 0 0 0 0 0 +8.388 32.467 -1.288 0 0 0 0 0 0 0 +8.275 32.448 -1.286 0 0 0 0 0 0 0 +8.218 32.438 -1.285 0 0 0 0 0 0 0 +8.116 32.462 -1.285 0 0 0 0 0 0 0 +8.004 32.448 -1.283 0 0 0 0 0 0 0 +7.901 32.472 -1.283 0 0 0 0 0 0 0 +7.791 32.463 -1.281 0 0 0 0 0 0 0 +7.692 32.499 -1.282 0 0 0 0 0 0 0 +7.588 32.515 -1.281 0 0 0 0 0 0 0 +7.486 32.537 -1.281 0 0 0 0 0 0 0 +7.428 32.52 -1.28 0 0 0 0 0 0 0 +7.327 32.549 -1.28 0 0 0 0 0 0 0 +7.229 32.589 -1.281 0 0 0 0 0 0 0 +7.099 32.487 -1.275 0 0 0 0 0 0 0 +7.03 32.663 -1.282 0 0 0 0 0 0 0 +2.436 12.04 -0.343 0 0 0 0 0 0 0 +0.674 3.345 0.052 0 0 0 0 0 0 0 +0.669 3.348 0.052 0 0 0 0 0 0 0 +0.648 3.351 0.052 0 0 0 0 0 0 0 +0.637 3.351 0.052 0 0 0 0 0 0 0 +0.628 3.359 0.052 0 0 0 0 0 0 0 +0.619 3.368 0.051 0 0 0 0 0 0 0 +0.604 3.347 0.052 0 0 0 0 0 0 0 +0.602 3.365 0.052 0 0 0 0 0 0 0 +0.591 3.367 0.052 0 0 0 0 0 0 0 +0.582 3.377 0.051 0 0 0 0 0 0 0 +0.574 3.394 0.05 0 0 0 0 0 0 0 +0.567 3.42 0.049 0 0 0 0 0 0 0 +0.559 3.433 0.049 0 0 0 0 0 0 0 +0.552 3.459 0.048 0 0 0 0 0 0 0 +0.544 3.442 0.049 0 0 0 0 0 0 0 +0.536 3.461 0.048 0 0 0 0 0 0 0 +0.519 3.426 0.049 0 0 0 0 0 0 0 +0.506 3.417 0.05 0 0 0 0 0 0 0 +0.495 3.417 0.05 0 0 0 0 0 0 0 +0.483 3.411 0.05 0 0 0 0 0 0 0 +0.471 3.4 0.051 0 0 0 0 0 0 0 +0.459 3.394 0.051 0 0 0 0 0 0 0 +0.453 3.391 0.051 0 0 0 0 0 0 0 +0.442 3.388 0.052 0 0 0 0 0 0 0 +0.431 3.389 0.052 0 0 0 0 0 0 0 +0.42 3.387 0.052 0 0 0 0 0 0 0 +0.409 3.384 0.052 0 0 0 0 0 0 0 +0.399 3.387 0.052 0 0 0 0 0 0 0 +0.388 3.385 0.052 0 0 0 0 0 0 0 +0.383 3.393 0.052 0 0 0 0 0 0 0 +0.371 3.382 0.052 0 0 0 0 0 0 0 +0.36 3.38 0.052 0 0 0 0 0 0 0 +0.352 3.401 0.052 0 0 0 0 0 0 0 +0.34 3.39 0.052 0 0 0 0 0 0 0 +0.33 3.397 0.052 0 0 0 0 0 0 0 +0.319 3.398 0.052 0 0 0 0 0 0 0 +0.314 3.396 0.052 0 0 0 0 0 0 0 +0.302 3.391 0.052 0 0 0 0 0 0 0 +0.292 3.398 0.052 0 0 0 0 0 0 0 +0.281 3.399 0.052 0 0 0 0 0 0 0 +0.271 3.398 0.052 0 0 0 0 0 0 0 +0.26 3.397 0.052 0 0 0 0 0 0 0 +0.248 3.39 0.052 0 0 0 0 0 0 0 +0.244 3.406 0.052 0 0 0 0 0 0 0 +0.234 3.409 0.052 0 0 0 0 0 0 0 +0.223 3.411 0.052 0 0 0 0 0 0 0 +0.212 3.404 0.052 0 0 0 0 0 0 0 +0.202 3.415 0.051 0 0 0 0 0 0 0 +0.191 3.403 0.052 0 0 0 0 0 0 0 +0.18 3.412 0.052 0 0 0 0 0 0 0 +0.175 3.406 0.052 0 0 0 0 0 0 0 +0.164 3.415 0.052 0 0 0 0 0 0 0 +0.154 3.425 0.051 0 0 0 0 0 0 0 +0.143 3.422 0.051 0 0 0 0 0 0 0 +0.132 3.418 0.051 0 0 0 0 0 0 0 +0.122 3.427 0.051 0 0 0 0 0 0 0 +0.111 3.431 0.051 0 0 0 0 0 0 0 +0.1 3.425 0.051 0 0 0 0 0 0 0 +0.095 3.437 0.051 0 0 0 0 0 0 0 +0.041 3.436 0.051 0 0 0 0 0 0 0 +0.259 33.222 -1.274 0 0 0 0 0 0 0 +0.15 32.412 -1.238 0 0 0 0 0 0 0 +0.046 31.607 -1.202 0 0 0 0 0 0 0 +-0.053 30.929 -1.172 0 0 0 0 0 0 0 +-0.147 30.248 -1.142 0 0 0 0 0 0 0 +-0.191 29.546 -1.111 0 0 0 0 0 0 0 +-0.278 28.912 -1.082 0 0 0 0 0 0 0 +-0.362 28.316 -1.056 0 0 0 0 0 0 0 +-0.442 27.721 -1.03 0 0 0 0 0 0 0 +-0.518 27.122 -1.003 0 0 0 0 0 0 0 +-0.592 26.607 -0.98 0 0 0 0 0 0 0 +-0.663 26.082 -0.957 0 0 0 0 0 0 0 +-0.73 25.546 -0.933 0 0 0 0 0 0 0 +-0.756 25.06 -0.912 0 0 0 0 0 0 0 +-0.819 24.556 -0.889 0 0 0 0 0 0 0 +-0.882 24.148 -0.871 0 0 0 0 0 0 0 +-1.004 23.443 -0.84 0 0 0 0 0 0 0 +-1.066 23.189 -0.829 0 0 0 0 0 0 0 +-1.109 22.551 -0.801 0 0 0 0 0 0 0 +-1.122 22.096 -0.78 0 0 0 0 0 0 0 +-1.174 21.765 -0.766 0 0 0 0 0 0 0 +-1.223 21.41 -0.75 0 0 0 0 0 0 0 +-1.27 21.065 -0.735 0 0 0 0 0 0 0 +-1.316 20.738 -0.721 0 0 0 0 0 0 0 +-1.359 20.395 -0.706 0 0 0 0 0 0 0 +-1.398 20.031 -0.69 0 0 0 0 0 0 0 +-1.428 20.007 -0.689 0 0 0 0 0 0 0 +-1.469 19.698 -0.675 0 0 0 0 0 0 0 +-1.494 19.213 -0.654 0 0 0 0 0 0 0 +-1.532 18.931 -0.641 0 0 0 0 0 0 0 +-1.57 18.664 -0.629 0 0 0 0 0 0 0 +-1.607 18.406 -0.618 0 0 0 0 0 0 0 +-1.641 18.128 -0.606 0 0 0 0 0 0 0 +-1.648 17.895 -0.596 0 0 0 0 0 0 0 +-1.682 17.655 -0.585 0 0 0 0 0 0 0 +-1.714 17.405 -0.574 0 0 0 0 0 0 0 +-1.744 17.155 -0.563 0 0 0 0 0 0 0 +-1.776 16.938 -0.554 0 0 0 0 0 0 0 +-1.809 16.738 -0.545 0 0 0 0 0 0 0 +-1.84 16.536 -0.536 0 0 0 0 0 0 0 +-1.855 15.979 -0.512 0 0 0 0 0 0 0 +-1.902 15.949 -0.511 0 0 0 0 0 0 0 +-1.928 15.745 -0.502 0 0 0 0 0 0 0 +-2.139 14.59 -0.452 0 0 0 0 0 0 0 +-2.129 14.207 -0.435 0 0 0 0 0 0 0 +-2.301 12.617 -0.367 0 0 0 0 0 0 0 +-2.293 12.351 -0.355 0 0 0 0 0 0 0 +-2.345 12.414 -0.358 0 0 0 0 0 0 0 +-2.394 12.46 -0.361 0 0 0 0 0 0 0 +-2.428 12.221 -0.351 0 0 0 0 0 0 0 +-2.444 12.197 -0.35 0 0 0 0 0 0 0 +-2.446 11.818 -0.333 0 0 0 0 0 0 0 +-2.476 11.777 -0.332 0 0 0 0 0 0 0 +-2.534 11.511 -0.321 0 0 0 0 0 0 0 +-2.558 11.532 -0.322 0 0 0 0 0 0 0 +-2.601 11.555 -0.323 0 0 0 0 0 0 0 +-2.517 10.857 -0.292 0 0 0 0 0 0 0 +-2.582 10.981 -0.298 0 0 0 0 0 0 0 +-2.546 10.674 -0.284 0 0 0 0 0 0 0 +-2.585 10.689 -0.286 0 0 0 0 0 0 0 +-2.844 11.611 -0.328 0 0 0 0 0 0 0 +-2.86 11.599 -0.328 0 0 0 0 0 0 0 +-2.904 11.617 -0.329 0 0 0 0 0 0 0 +-2.94 11.453 -0.322 0 0 0 0 0 0 0 +-2.955 11.365 -0.319 0 0 0 0 0 0 0 +-2.993 11.365 -0.319 0 0 0 0 0 0 0 +-3.023 11.332 -0.318 0 0 0 0 0 0 0 +-2.718 9.866 -0.252 0 0 0 0 0 0 0 +-2.754 9.873 -0.252 0 0 0 0 0 0 0 +-2.789 9.88 -0.253 0 0 0 0 0 0 0 +-2.822 9.879 -0.253 0 0 0 0 0 0 0 +-2.84 9.822 -0.251 0 0 0 0 0 0 0 +-2.846 9.787 -0.25 0 0 0 0 0 0 0 +-2.873 9.766 -0.249 0 0 0 0 0 0 0 +-2.909 9.774 -0.25 0 0 0 0 0 0 0 +-2.935 9.75 -0.249 0 0 0 0 0 0 0 +-2.79 9.053 -0.218 0 0 0 0 0 0 0 +-2.805 9.002 -0.216 0 0 0 0 0 0 0 +-2.806 8.954 -0.214 0 0 0 0 0 0 0 +-2.816 8.889 -0.211 0 0 0 0 0 0 0 +-2.835 8.852 -0.21 0 0 0 0 0 0 0 +-2.848 8.797 -0.208 0 0 0 0 0 0 0 +-2.819 8.612 -0.199 0 0 0 0 0 0 0 +-2.9 8.677 -0.203 0 0 0 0 0 0 0 +-2.929 8.672 -0.204 0 0 0 0 0 0 0 +-2.963 8.73 -0.206 0 0 0 0 0 0 0 +-2.997 8.737 -0.207 0 0 0 0 0 0 0 +-3.028 8.739 -0.208 0 0 0 0 0 0 0 +-3.057 8.733 -0.208 0 0 0 0 0 0 0 +-3.088 8.735 -0.208 0 0 0 0 0 0 0 +-3.087 8.644 -0.205 0 0 0 0 0 0 0 +-4.14 11.506 -0.34 0 0 0 0 0 0 0 +-3.055 8.427 -0.195 0 0 0 0 0 0 0 +-3.065 8.374 -0.193 0 0 0 0 0 0 0 +-3.067 8.297 -0.19 0 0 0 0 0 0 0 +-3.077 8.244 -0.188 0 0 0 0 0 0 0 +-3.083 8.18 -0.185 0 0 0 0 0 0 0 +-4.404 11.497 -0.344 0 0 0 0 0 0 0 +-4.421 11.487 -0.344 0 0 0 0 0 0 0 +-4.504 11.596 -0.35 0 0 0 0 0 0 0 +-4.527 11.546 -0.348 0 0 0 0 0 0 0 +-4.107 10.372 -0.293 0 0 0 0 0 0 0 +-4.137 10.351 -0.292 0 0 0 0 0 0 0 +-4.168 10.334 -0.292 0 0 0 0 0 0 0 +-4.206 10.336 -0.293 0 0 0 0 0 0 0 +-4.22 10.324 -0.292 0 0 0 0 0 0 0 +-3.258 7.883 -0.176 0 0 0 0 0 0 0 +-3.5 8.399 -0.201 0 0 0 0 0 0 0 +-3.54 8.419 -0.203 0 0 0 0 0 0 0 +-3.579 8.439 -0.204 0 0 0 0 0 0 0 +-3.624 8.47 -0.206 0 0 0 0 0 0 0 +-3.667 8.498 -0.208 0 0 0 0 0 0 0 +-3.689 8.477 -0.208 0 0 0 0 0 0 0 +-3.799 8.693 -0.218 0 0 0 0 0 0 0 +-3.333 7.426 -0.158 0 0 0 0 0 0 0 +-3.34 7.379 -0.157 0 0 0 0 0 0 0 +-3.367 7.378 -0.157 0 0 0 0 0 0 0 +-4 8.666 -0.221 0 0 0 0 0 0 0 +-3.905 8.389 -0.208 0 0 0 0 0 0 0 +-3.621 7.712 -0.175 0 0 0 0 0 0 0 +-3.639 7.686 -0.175 0 0 0 0 0 0 0 +-3.653 7.653 -0.174 0 0 0 0 0 0 0 +-3.663 7.612 -0.172 0 0 0 0 0 0 0 +-3.691 7.61 -0.173 0 0 0 0 0 0 0 +-3.71 7.618 -0.173 0 0 0 0 0 0 0 +-3.746 7.632 -0.175 0 0 0 0 0 0 0 +-3.772 7.624 -0.175 0 0 0 0 0 0 0 +-3.803 7.626 -0.175 0 0 0 0 0 0 0 +-3.836 7.632 -0.176 0 0 0 0 0 0 0 +-3.86 7.62 -0.176 0 0 0 0 0 0 0 +-3.895 7.631 -0.177 0 0 0 0 0 0 0 +-3.918 7.646 -0.179 0 0 0 0 0 0 0 +-3.943 7.636 -0.179 0 0 0 0 0 0 0 +-3.975 7.639 -0.179 0 0 0 0 0 0 0 +-4.009 7.646 -0.18 0 0 0 0 0 0 0 +-4.037 7.641 -0.181 0 0 0 0 0 0 0 +-4.069 7.642 -0.181 0 0 0 0 0 0 0 +-4.1 7.643 -0.182 0 0 0 0 0 0 0 +-4.134 7.648 -0.183 0 0 0 0 0 0 0 +-4.158 7.664 -0.184 0 0 0 0 0 0 0 +-4.189 7.663 -0.185 0 0 0 0 0 0 0 +-4.214 7.652 -0.185 0 0 0 0 0 0 0 +-4.253 7.667 -0.186 0 0 0 0 0 0 0 +-4.28 7.659 -0.187 0 0 0 0 0 0 0 +-4.31 7.656 -0.187 0 0 0 0 0 0 0 +-4.344 7.659 -0.188 0 0 0 0 0 0 0 +-4.378 7.693 -0.19 0 0 0 0 0 0 0 +-4.401 7.675 -0.19 0 0 0 0 0 0 0 +-4.437 7.682 -0.191 0 0 0 0 0 0 0 +-4.477 7.696 -0.192 0 0 0 0 0 0 0 +-4.509 7.696 -0.193 0 0 0 0 0 0 0 +-4.549 7.709 -0.195 0 0 0 0 0 0 0 +-4.572 7.693 -0.194 0 0 0 0 0 0 0 +-4.598 7.68 -0.195 0 0 0 0 0 0 0 +-5.221 8.574 -0.243 0 0 0 0 0 0 0 +-5.232 8.532 -0.242 0 0 0 0 0 0 0 +-5.237 8.479 -0.24 0 0 0 0 0 0 0 +-5.18 8.329 -0.233 0 0 0 0 0 0 0 +-5.198 8.299 -0.232 0 0 0 0 0 0 0 +-5.203 8.277 -0.231 0 0 0 0 0 0 0 +-5.199 8.213 -0.229 0 0 0 0 0 0 0 +-7.142 11.223 -0.388 0 0 0 0 0 0 0 +-19.612 30.691 -1.416 0 0 0 0 0 0 0 +-19.727 30.658 -1.418 0 0 0 0 0 0 0 +-5.019 7.58 -0.201 0 0 0 0 0 0 0 +-5.251 7.824 -0.216 0 0 0 0 0 0 0 +-15.756 23.41 -1.051 0 0 0 0 0 0 0 +-15.735 23.221 -1.044 0 0 0 0 0 0 0 +-15.707 23.023 -1.036 0 0 0 0 0 0 0 +-15.649 22.861 -1.029 0 0 0 0 0 0 0 +-15.625 22.672 -1.021 0 0 0 0 0 0 0 +-15.652 22.559 -1.018 0 0 0 0 0 0 0 +-17.234 24.678 -1.135 0 0 0 0 0 0 0 +-17.178 24.434 -1.125 0 0 0 0 0 0 0 +-17.278 24.413 -1.127 0 0 0 0 0 0 0 +-17.195 23.974 -1.109 0 0 0 0 0 0 0 +-17.282 24.015 -1.112 0 0 0 0 0 0 0 +-17.784 24.389 -1.139 0 0 0 0 0 0 0 +-17.697 24.111 -1.127 0 0 0 0 0 0 0 +-17.798 24.089 -1.129 0 0 0 0 0 0 0 +-17.061 22.939 -1.068 0 0 0 0 0 0 0 +-17.081 22.814 -1.064 0 0 0 0 0 0 0 +-17.004 22.637 -1.056 0 0 0 0 0 0 0 +-17.122 22.646 -1.059 0 0 0 0 0 0 0 +-17.625 23.162 -1.091 0 0 0 0 0 0 0 +-17.546 22.908 -1.08 0 0 0 0 0 0 0 +-18.237 23.657 -1.125 0 0 0 0 0 0 0 +-18.05 23.261 -1.106 0 0 0 0 0 0 0 +-18.053 23.115 -1.101 0 0 0 0 0 0 0 +-18.032 23.014 -1.097 0 0 0 0 0 0 0 +-17.641 22.369 -1.063 0 0 0 0 0 0 0 +-17.737 22.346 -1.065 0 0 0 0 0 0 0 +-17.754 22.223 -1.062 0 0 0 0 0 0 0 +-17.849 22.198 -1.063 0 0 0 0 0 0 0 +-17.804 22.001 -1.055 0 0 0 0 0 0 0 +-17.9 21.977 -1.057 0 0 0 0 0 0 0 +-17.935 21.95 -1.057 0 0 0 0 0 0 0 +-17.634 21.443 -1.031 0 0 0 0 0 0 0 +-17.112 20.674 -0.99 0 0 0 0 0 0 0 +-17.923 21.518 -1.042 0 0 0 0 0 0 0 +-15.91 18.974 -0.898 0 0 0 0 0 0 0 +-11.802 13.975 -0.61 0 0 0 0 0 0 0 +-11.833 13.923 -0.609 0 0 0 0 0 0 0 +-11.835 13.882 -0.608 0 0 0 0 0 0 0 +-11.9 13.869 -0.609 0 0 0 0 0 0 0 +-11.941 13.828 -0.609 0 0 0 0 0 0 0 +-12.009 13.819 -0.611 0 0 0 0 0 0 0 +-12.076 13.809 -0.612 0 0 0 0 0 0 0 +-12.152 13.808 -0.615 0 0 0 0 0 0 0 +-12.248 13.83 -0.618 0 0 0 0 0 0 0 +-16.309 18.312 -0.887 0 0 0 0 0 0 0 +-16.443 18.404 -0.894 0 0 0 0 0 0 0 +-16.466 18.198 -0.888 0 0 0 0 0 0 0 +-17.691 19.431 -0.965 0 0 0 0 0 0 0 +-16.363 17.857 -0.874 0 0 0 0 0 0 0 +-17.751 19.132 -0.957 0 0 0 0 0 0 0 +-17.308 18.594 -0.926 0 0 0 0 0 0 0 +-17.138 18.296 -0.911 0 0 0 0 0 0 0 +-17.276 18.328 -0.917 0 0 0 0 0 0 0 +-17.054 17.978 -0.899 0 0 0 0 0 0 0 +-21.679 22.72 -1.193 0 0 0 0 0 0 0 +-21.674 22.572 -1.188 0 0 0 0 0 0 0 +-21.775 22.536 -1.19 0 0 0 0 0 0 0 +-21.854 22.546 -1.193 0 0 0 0 0 0 0 +-15.875 16.265 -0.807 0 0 0 0 0 0 0 +-22.126 22.542 -1.201 0 0 0 0 0 0 0 +-15.798 15.984 -0.796 0 0 0 0 0 0 0 +-22.321 22.457 -1.205 0 0 0 0 0 0 0 +-31.863 31.872 -1.801 0 0 0 0 0 0 0 +-20.356 20.22 -1.073 0 0 0 0 0 0 0 +-20.402 20.202 -1.073 0 0 0 0 0 0 0 +-20.212 19.889 -1.058 0 0 0 0 0 0 0 +-31.694 31.012 -1.769 0 0 0 0 0 0 0 +-31.559 30.687 -1.754 0 0 0 0 0 0 0 +-35.083 33.903 -1.966 0 0 0 0 0 0 0 +-35.107 33.714 -1.961 0 0 0 0 0 0 0 +-35.173 33.565 -1.959 0 0 0 0 0 0 0 +-23.785 22.615 -1.256 0 0 0 0 0 0 0 +-35.255 33.327 -1.954 0 0 0 0 0 0 0 +-17.75 16.657 -0.879 0 0 0 0 0 0 0 +-17.798 16.597 -0.879 0 0 0 0 0 0 0 +-17.839 16.53 -0.878 0 0 0 0 0 0 0 +-17.811 16.401 -0.873 0 0 0 0 0 0 0 +-17.863 16.345 -0.873 0 0 0 0 0 0 0 +-19.933 18.128 -0.995 0 0 0 0 0 0 0 +-19.977 18.112 -0.996 0 0 0 0 0 0 0 +-20.019 18.035 -0.995 0 0 0 0 0 0 0 +-20.116 18.008 -0.997 0 0 0 0 0 0 0 +-20.398 18.146 -1.011 0 0 0 0 0 0 0 +-20.524 18.143 -1.015 0 0 0 0 0 0 0 +-20.589 18.086 -1.015 0 0 0 0 0 0 0 +-20.834 18.186 -1.026 0 0 0 0 0 0 0 +-20.875 18.163 -1.027 0 0 0 0 0 0 0 +-20.139 17.411 -0.98 0 0 0 0 0 0 0 +-19.889 17.086 -0.963 0 0 0 0 0 0 0 +-20.975 17.906 -1.023 0 0 0 0 0 0 0 +-21.156 17.946 -1.03 0 0 0 0 0 0 0 +-21.245 17.907 -1.032 0 0 0 0 0 0 0 +-21.582 18.076 -1.049 0 0 0 0 0 0 0 +-18.618 15.539 -0.875 0 0 0 0 0 0 0 +-18.84 15.625 -0.885 0 0 0 0 0 0 0 +-33.468 27.605 -1.726 0 0 0 0 0 0 0 +-33.679 27.602 -1.733 0 0 0 0 0 0 0 +-33.899 27.605 -1.741 0 0 0 0 0 0 0 +-20.593 16.649 -0.974 0 0 0 0 0 0 0 +-33.664 27.063 -1.718 0 0 0 0 0 0 0 +-33.716 27.018 -1.718 0 0 0 0 0 0 0 +-33.743 26.521 -1.705 0 0 0 0 0 0 0 +-20.647 16.11 -0.961 0 0 0 0 0 0 0 +-20.388 15.805 -0.944 0 0 0 0 0 0 0 +-19.754 15.213 -0.905 0 0 0 0 0 0 0 +-20.452 15.65 -0.942 0 0 0 0 0 0 0 +-19.805 15.104 -0.904 0 0 0 0 0 0 0 +-18.51 13.932 -0.827 0 0 0 0 0 0 0 +-18.536 13.86 -0.826 0 0 0 0 0 0 0 +-20.769 15.432 -0.947 0 0 0 0 0 0 0 +-20.825 15.271 -0.945 0 0 0 0 0 0 0 +-31.781 23.246 -1.548 0 0 0 0 0 0 0 +-33.154 23.775 -1.611 0 0 0 0 0 0 0 +-33.056 23.548 -1.602 0 0 0 0 0 0 0 +-33.048 23.23 -1.593 0 0 0 0 0 0 0 +-20.474 14.331 -0.908 0 0 0 0 0 0 0 +-32.792 22.82 -1.573 0 0 0 0 0 0 0 +-32.956 22.78 -1.578 0 0 0 0 0 0 0 +-31.539 21.653 -1.498 0 0 0 0 0 0 0 +-31.427 21.431 -1.488 0 0 0 0 0 0 0 +-31.378 21.254 -1.482 0 0 0 0 0 0 0 +-31.388 20.902 -1.474 0 0 0 0 0 0 0 +-6.719 4.419 -0.154 0 0 0 0 0 0 0 +-6.718 4.388 -0.153 0 0 0 0 0 0 0 +-6.723 4.362 -0.153 0 0 0 0 0 0 0 +-6.948 4.478 -0.164 0 0 0 0 0 0 0 +-36.475 23.395 -1.724 0 0 0 0 0 0 0 +-6.959 4.454 -0.164 0 0 0 0 0 0 0 +-36.447 23.216 -1.718 0 0 0 0 0 0 0 +-36.452 23.059 -1.715 0 0 0 0 0 0 0 +-36.477 22.914 -1.712 0 0 0 0 0 0 0 +-36.478 22.755 -1.709 0 0 0 0 0 0 0 +-36.473 22.593 -1.705 0 0 0 0 0 0 0 +-36.467 22.431 -1.701 0 0 0 0 0 0 0 +-36.461 22.349 -1.698 0 0 0 0 0 0 0 +-31.074 18.908 -1.414 0 0 0 0 0 0 0 +-31.032 18.749 -1.409 0 0 0 0 0 0 0 +-30.844 18.372 -1.393 0 0 0 0 0 0 0 +-30.774 18.199 -1.387 0 0 0 0 0 0 0 +-36.306 21.322 -1.669 0 0 0 0 0 0 0 +-36.347 21.193 -1.668 0 0 0 0 0 0 0 +-36.234 21.051 -1.66 0 0 0 0 0 0 0 +-36.246 20.906 -1.657 0 0 0 0 0 0 0 +-36.216 20.737 -1.653 0 0 0 0 0 0 0 +-36.203 20.579 -1.649 0 0 0 0 0 0 0 +-32.839 18.527 -1.473 0 0 0 0 0 0 0 +-36.194 20.274 -1.642 0 0 0 0 0 0 0 +-12.577 6.896 -0.434 0 0 0 0 0 0 0 +-12.555 6.833 -0.432 0 0 0 0 0 0 0 +-12.49 6.747 -0.428 0 0 0 0 0 0 0 +-12.686 6.801 -0.437 0 0 0 0 0 0 0 +-13.717 7.301 -0.488 0 0 0 0 0 0 0 +-13.74 7.258 -0.488 0 0 0 0 0 0 0 +-13.933 7.332 -0.497 0 0 0 0 0 0 0 +-35.917 18.804 -1.6 0 0 0 0 0 0 0 +-30.01 15.587 -1.3 0 0 0 0 0 0 0 +-35.857 18.487 -1.591 0 0 0 0 0 0 0 +-35.862 18.347 -1.588 0 0 0 0 0 0 0 +-32.626 16.559 -1.424 0 0 0 0 0 0 0 +-32.596 16.415 -1.42 0 0 0 0 0 0 0 +-32.541 16.196 -1.413 0 0 0 0 0 0 0 +-35.695 17.629 -1.567 0 0 0 0 0 0 0 +-35.658 17.332 -1.56 0 0 0 0 0 0 0 +-14.666 6.998 -0.519 0 0 0 0 0 0 0 +-14.473 6.878 -0.509 0 0 0 0 0 0 0 +-15.036 7.089 -0.536 0 0 0 0 0 0 0 +-35.787 16.774 -1.554 0 0 0 0 0 0 0 +-35.778 16.633 -1.551 0 0 0 0 0 0 0 +-35.73 16.474 -1.546 0 0 0 0 0 0 0 +-35.7 16.324 -1.542 0 0 0 0 0 0 0 +-35.666 16.173 -1.538 0 0 0 0 0 0 0 +-35.267 15.792 -1.515 0 0 0 0 0 0 0 +-35.231 15.643 -1.511 0 0 0 0 0 0 0 +-35.163 15.481 -1.505 0 0 0 0 0 0 0 +-35.125 15.333 -1.501 0 0 0 0 0 0 0 +-35.095 15.188 -1.497 0 0 0 0 0 0 0 +-35.065 15.045 -1.493 0 0 0 0 0 0 0 +-35.031 14.9 -1.49 0 0 0 0 0 0 0 +-34.968 14.808 -1.485 0 0 0 0 0 0 0 +-34.923 14.66 -1.481 0 0 0 0 0 0 0 +-34.884 14.515 -1.477 0 0 0 0 0 0 0 +-34.84 14.368 -1.473 0 0 0 0 0 0 0 +-34.802 14.225 -1.469 0 0 0 0 0 0 0 +-34.754 14.078 -1.464 0 0 0 0 0 0 0 +-34.694 13.927 -1.459 0 0 0 0 0 0 0 +-34.679 13.857 -1.457 0 0 0 0 0 0 0 +-34.724 13.749 -1.457 0 0 0 0 0 0 0 +-34.756 13.635 -1.457 0 0 0 0 0 0 0 +-34.674 13.478 -1.451 0 0 0 0 0 0 0 +-34.61 13.328 -1.446 0 0 0 0 0 0 0 +-34.463 13.147 -1.437 0 0 0 0 0 0 0 +-27.654 10.444 -1.111 0 0 0 0 0 0 0 +-34.274 12.89 -1.425 0 0 0 0 0 0 0 +-29.802 11.097 -1.211 0 0 0 0 0 0 0 +-29.763 10.977 -1.207 0 0 0 0 0 0 0 +-29.745 10.864 -1.205 0 0 0 0 0 0 0 +-29.79 10.774 -1.205 0 0 0 0 0 0 0 +-29.85 10.69 -1.207 0 0 0 0 0 0 0 +-29.995 10.636 -1.212 0 0 0 0 0 0 0 +-33.924 11.973 -1.396 0 0 0 0 0 0 0 +-33.878 11.837 -1.393 0 0 0 0 0 0 0 +-33.815 11.696 -1.388 0 0 0 0 0 0 0 +-33.752 11.555 -1.383 0 0 0 0 0 0 0 +-26.809 9.079 -1.055 0 0 0 0 0 0 0 +-33.657 11.287 -1.375 0 0 0 0 0 0 0 +-33.599 11.15 -1.371 0 0 0 0 0 0 0 +-33.571 11.082 -1.369 0 0 0 0 0 0 0 +-33.598 10.974 -1.368 0 0 0 0 0 0 0 +-33.627 10.867 -1.368 0 0 0 0 0 0 0 +-33.581 10.736 -1.364 0 0 0 0 0 0 0 +-33.462 10.582 -1.357 0 0 0 0 0 0 0 +-33.326 10.423 -1.349 0 0 0 0 0 0 0 +-33.196 10.268 -1.342 0 0 0 0 0 0 0 +-33.136 10.193 -1.338 0 0 0 0 0 0 0 +-33.081 10.062 -1.334 0 0 0 0 0 0 0 +-33.023 9.931 -1.33 0 0 0 0 0 0 0 +-25.832 7.674 -0.995 0 0 0 0 0 0 0 +-32.905 9.67 -1.322 0 0 0 0 0 0 0 +-32.856 9.544 -1.318 0 0 0 0 0 0 0 +-32.773 9.408 -1.313 0 0 0 0 0 0 0 +-32.732 9.341 -1.31 0 0 0 0 0 0 0 +-32.651 9.207 -1.305 0 0 0 0 0 0 0 +-32.584 9.077 -1.301 0 0 0 0 0 0 0 +-32.529 8.952 -1.297 0 0 0 0 0 0 0 +-32.451 8.821 -1.292 0 0 0 0 0 0 0 +-32.409 8.7 -1.289 0 0 0 0 0 0 0 +-32.394 8.587 -1.287 0 0 0 0 0 0 0 +-32.235 8.382 -1.278 0 0 0 0 0 0 0 +-32.277 8.285 -1.279 0 0 0 0 0 0 0 +-32.177 8.152 -1.273 0 0 0 0 0 0 0 +-32.1 8.025 -1.268 0 0 0 0 0 0 0 +-32.051 7.906 -1.265 0 0 0 0 0 0 0 +-31.973 7.78 -1.26 0 0 0 0 0 0 0 +-31.791 7.63 -1.251 0 0 0 0 0 0 0 +-31.704 7.556 -1.246 0 0 0 0 0 0 0 +-31.632 7.434 -1.242 0 0 0 0 0 0 0 +-31.56 7.312 -1.237 0 0 0 0 0 0 0 +-31.517 7.198 -1.234 0 0 0 0 0 0 0 +-31.307 7.046 -1.224 0 0 0 0 0 0 0 +-23.848 5.283 -0.883 0 0 0 0 0 0 0 +-31.257 6.829 -1.219 0 0 0 0 0 0 0 +-31.203 6.766 -1.216 0 0 0 0 0 0 0 +-31.154 6.653 -1.213 0 0 0 0 0 0 0 +-31.067 6.532 -1.208 0 0 0 0 0 0 0 +-31.01 6.418 -1.205 0 0 0 0 0 0 0 +-27.218 5.541 -1.032 0 0 0 0 0 0 0 +-27.234 5.455 -1.032 0 0 0 0 0 0 0 +-30.794 6.071 -1.192 0 0 0 0 0 0 0 +-30.709 5.954 -1.188 0 0 0 0 0 0 0 +-30.575 5.878 -1.181 0 0 0 0 0 0 0 +-23.594 4.453 -0.864 0 0 0 0 0 0 0 +-30.517 5.669 -1.177 0 0 0 0 0 0 0 +-30.423 5.552 -1.172 0 0 0 0 0 0 0 +-30.35 5.44 -1.168 0 0 0 0 0 0 0 +-23.034 4.048 -0.837 0 0 0 0 0 0 0 +-30.228 5.223 -1.161 0 0 0 0 0 0 0 +-30.155 5.161 -1.157 0 0 0 0 0 0 0 +-30.067 5.049 -1.152 0 0 0 0 0 0 0 +-29.976 4.937 -1.148 0 0 0 0 0 0 0 +-29.909 4.829 -1.144 0 0 0 0 0 0 0 +-29.847 4.723 -1.14 0 0 0 0 0 0 0 +-29.767 4.614 -1.136 0 0 0 0 0 0 0 +-29.682 4.506 -1.132 0 0 0 0 0 0 0 +-29.618 4.448 -1.129 0 0 0 0 0 0 0 +-22.281 3.268 -0.798 0 0 0 0 0 0 0 +-29.462 4.235 -1.12 0 0 0 0 0 0 0 +-29.394 4.131 -1.117 0 0 0 0 0 0 0 +-29.32 4.027 -1.113 0 0 0 0 0 0 0 +-29.251 3.924 -1.109 0 0 0 0 0 0 0 +-29.156 3.818 -1.104 0 0 0 0 0 0 0 +-29.067 3.76 -1.1 0 0 0 0 0 0 0 +-29.067 3.667 -1.099 0 0 0 0 0 0 0 +-28.981 3.563 -1.095 0 0 0 0 0 0 0 +-28.952 3.468 -1.093 0 0 0 0 0 0 0 +-22.22 2.584 -0.791 0 0 0 0 0 0 0 +-22.216 2.513 -0.791 0 0 0 0 0 0 0 +-29.047 3.202 -1.096 0 0 0 0 0 0 0 +-28.969 3.147 -1.092 0 0 0 0 0 0 0 +-28.901 3.048 -1.089 0 0 0 0 0 0 0 +-28.817 2.947 -1.085 0 0 0 0 0 0 0 +-28.761 2.85 -1.082 0 0 0 0 0 0 0 +-28.688 2.752 -1.078 0 0 0 0 0 0 0 +-28.589 2.652 -1.073 0 0 0 0 0 0 0 +-28.496 2.553 -1.069 0 0 0 0 0 0 0 +-28.056 2.424 -1.049 0 0 0 0 0 0 0 +-27.968 2.372 -1.045 0 0 0 0 0 0 0 +-27.848 2.274 -1.039 0 0 0 0 0 0 0 +-27.743 2.177 -1.034 0 0 0 0 0 0 0 +-27.666 2.084 -1.03 0 0 0 0 0 0 0 +-27.589 1.991 -1.027 0 0 0 0 0 0 0 +-27.513 1.898 -1.023 0 0 0 0 0 0 0 +-27.433 1.806 -1.019 0 0 0 0 0 0 0 +-27.363 1.758 -1.016 0 0 0 0 0 0 0 +-27.258 1.665 -1.011 0 0 0 0 0 0 0 +-21.774 1.256 -0.766 0 0 0 0 0 0 0 +-21.662 1.182 -0.761 0 0 0 0 0 0 0 +-21.628 1.112 -0.76 0 0 0 0 0 0 0 +-21.608 1.042 -0.759 0 0 0 0 0 0 0 +-21.617 0.975 -0.759 0 0 0 0 0 0 0 +-21.598 0.94 -0.758 0 0 0 0 0 0 0 +-21.625 0.873 -0.759 0 0 0 0 0 0 0 +-21.684 0.807 -0.762 0 0 0 0 0 0 0 +-21.752 0.742 -0.764 0 0 0 0 0 0 0 +-26.455 0.824 -0.974 0 0 0 0 0 0 0 +-26.384 0.739 -0.97 0 0 0 0 0 0 0 +-26.304 0.654 -0.967 0 0 0 0 0 0 0 +-26.225 0.611 -0.963 0 0 0 0 0 0 0 +-26.157 0.527 -0.96 0 0 0 0 0 0 0 +-26.085 0.443 -0.957 0 0 0 0 0 0 0 +-22.364 0.306 -0.791 0 0 0 0 0 0 0 +-22.359 0.236 -0.791 0 0 0 0 0 0 0 +-22.381 0.166 -0.792 0 0 0 0 0 0 0 +-22.402 0.096 -0.793 0 0 0 0 0 0 0 +-22.456 0.025 -0.795 0 0 0 0 0 0 0 +-22.404 -0.045 -0.793 0 0 0 0 0 0 0 +-25.545 -0.088 -0.933 0 0 0 0 0 0 0 +-25.472 -0.168 -0.929 0 0 0 0 0 0 0 +-25.386 -0.247 -0.926 0 0 0 0 0 0 0 +-25.307 -0.326 -0.922 0 0 0 0 0 0 0 +-25.232 -0.404 -0.919 0 0 0 0 0 0 0 +-25.141 -0.482 -0.915 0 0 0 0 0 0 0 +-25.065 -0.559 -0.912 0 0 0 0 0 0 0 +-24.98 -0.597 -0.908 0 0 0 0 0 0 0 +-24.91 -0.674 -0.905 0 0 0 0 0 0 0 +-24.824 -0.749 -0.901 0 0 0 0 0 0 0 +-24.752 -0.825 -0.898 0 0 0 0 0 0 0 +-24.665 -0.9 -0.894 0 0 0 0 0 0 0 +-24.594 -0.975 -0.891 0 0 0 0 0 0 0 +-24.503 -1.048 -0.887 0 0 0 0 0 0 0 +-24.43 -1.084 -0.884 0 0 0 0 0 0 0 +-24.349 -1.157 -0.881 0 0 0 0 0 0 0 +-24.267 -1.229 -0.877 0 0 0 0 0 0 0 +-24.189 -1.302 -0.874 0 0 0 0 0 0 0 +-24.111 -1.374 -0.871 0 0 0 0 0 0 0 +-24.031 -1.445 -0.867 0 0 0 0 0 0 0 +-23.962 -1.516 -0.864 0 0 0 0 0 0 0 +-23.882 -1.549 -0.861 0 0 0 0 0 0 0 +-23.817 -1.62 -0.858 0 0 0 0 0 0 0 +-23.731 -1.689 -0.855 0 0 0 0 0 0 0 +-23.655 -1.759 -0.851 0 0 0 0 0 0 0 +-23.562 -1.826 -0.848 0 0 0 0 0 0 0 +-23.498 -1.896 -0.845 0 0 0 0 0 0 0 +-23.401 -1.962 -0.841 0 0 0 0 0 0 0 +-16.188 -1.442 -0.519 0 0 0 0 0 0 0 +-15.954 -1.472 -0.509 0 0 0 0 0 0 0 +-22.904 -2.175 -0.82 0 0 0 0 0 0 0 +-23.011 -2.258 -0.825 0 0 0 0 0 0 0 +-22.948 -2.324 -0.822 0 0 0 0 0 0 0 +-22.859 -2.388 -0.819 0 0 0 0 0 0 0 +-22.786 -2.453 -0.816 0 0 0 0 0 0 0 +-22.722 -2.482 -0.813 0 0 0 0 0 0 0 +-22.73 -2.555 -0.814 0 0 0 0 0 0 0 +-22.736 -2.628 -0.814 0 0 0 0 0 0 0 +-22.732 -2.7 -0.815 0 0 0 0 0 0 0 +-22.741 -2.774 -0.815 0 0 0 0 0 0 0 +-22.744 -2.847 -0.816 0 0 0 0 0 0 0 +-22.757 -2.921 -0.817 0 0 0 0 0 0 0 +-22.758 -2.957 -0.817 0 0 0 0 0 0 0 +-22.77 -3.032 -0.818 0 0 0 0 0 0 0 +-22.763 -3.104 -0.818 0 0 0 0 0 0 0 +-22.735 -3.173 -0.817 0 0 0 0 0 0 0 +-22.735 -3.245 -0.818 0 0 0 0 0 0 0 +-23.001 -3.357 -0.83 0 0 0 0 0 0 0 +-22.807 -3.402 -0.822 0 0 0 0 0 0 0 +-22.736 -3.428 -0.819 0 0 0 0 0 0 0 +-22.643 -3.487 -0.815 0 0 0 0 0 0 0 +-22.553 -3.545 -0.812 0 0 0 0 0 0 0 +-22.488 -3.608 -0.809 0 0 0 0 0 0 0 +-22.431 -3.671 -0.807 0 0 0 0 0 0 0 +-22.356 -3.731 -0.805 0 0 0 0 0 0 0 +-22.268 -3.788 -0.801 0 0 0 0 0 0 0 +-21.1 -3.625 -0.749 0 0 0 0 0 0 0 +-21.029 -3.681 -0.746 0 0 0 0 0 0 0 +-20.978 -3.74 -0.744 0 0 0 0 0 0 0 +-20.884 -3.791 -0.74 0 0 0 0 0 0 0 +-20.821 -3.847 -0.738 0 0 0 0 0 0 0 +-20.746 -3.901 -0.735 0 0 0 0 0 0 0 +-20.668 -3.954 -0.732 0 0 0 0 0 0 0 +-20.599 -3.974 -0.73 0 0 0 0 0 0 0 +-20.534 -4.029 -0.727 0 0 0 0 0 0 0 +-20.449 -4.079 -0.724 0 0 0 0 0 0 0 +-20.397 -4.135 -0.722 0 0 0 0 0 0 0 +-20.309 -4.184 -0.719 0 0 0 0 0 0 0 +-20.239 -4.236 -0.716 0 0 0 0 0 0 0 +-20.163 -4.286 -0.713 0 0 0 0 0 0 0 +-20.1 -4.306 -0.711 0 0 0 0 0 0 0 +-20.018 -4.354 -0.708 0 0 0 0 0 0 0 +-19.955 -4.406 -0.705 0 0 0 0 0 0 0 +-19.885 -4.456 -0.703 0 0 0 0 0 0 0 +-19.796 -4.502 -0.699 0 0 0 0 0 0 0 +-19.737 -4.554 -0.697 0 0 0 0 0 0 0 +-19.659 -4.601 -0.694 0 0 0 0 0 0 0 +-19.585 -4.617 -0.691 0 0 0 0 0 0 0 +-19.52 -4.666 -0.689 0 0 0 0 0 0 0 +-19.434 -4.71 -0.686 0 0 0 0 0 0 0 +-19.374 -4.76 -0.684 0 0 0 0 0 0 0 +-19.301 -4.807 -0.681 0 0 0 0 0 0 0 +-19.222 -4.851 -0.678 0 0 0 0 0 0 0 +-19.152 -4.898 -0.676 0 0 0 0 0 0 0 +-19.084 -4.944 -0.673 0 0 0 0 0 0 0 +-19.032 -4.963 -0.671 0 0 0 0 0 0 0 +-18.957 -5.007 -0.668 0 0 0 0 0 0 0 +-18.891 -5.053 -0.666 0 0 0 0 0 0 0 +-18.821 -5.098 -0.664 0 0 0 0 0 0 0 +-18.747 -5.141 -0.661 0 0 0 0 0 0 0 +-18.675 -5.185 -0.658 0 0 0 0 0 0 0 +-18.6 -5.227 -0.656 0 0 0 0 0 0 0 +-18.544 -5.243 -0.654 0 0 0 0 0 0 0 +-18.474 -5.286 -0.651 0 0 0 0 0 0 0 +-18.407 -5.329 -0.649 0 0 0 0 0 0 0 +-18.335 -5.371 -0.646 0 0 0 0 0 0 0 +-18.262 -5.412 -0.644 0 0 0 0 0 0 0 +-18.193 -5.454 -0.641 0 0 0 0 0 0 0 +-18.126 -5.496 -0.639 0 0 0 0 0 0 0 +-18.062 -5.508 -0.636 0 0 0 0 0 0 0 +-17.997 -5.55 -0.634 0 0 0 0 0 0 0 +-17.924 -5.589 -0.631 0 0 0 0 0 0 0 +-17.848 -5.627 -0.629 0 0 0 0 0 0 0 +-17.784 -5.668 -0.627 0 0 0 0 0 0 0 +-17.721 -5.71 -0.624 0 0 0 0 0 0 0 +-17.657 -5.75 -0.622 0 0 0 0 0 0 0 +-17.593 -5.76 -0.62 0 0 0 0 0 0 0 +-17.523 -5.799 -0.617 0 0 0 0 0 0 0 +-17.463 -5.84 -0.615 0 0 0 0 0 0 0 +-17.386 -5.875 -0.613 0 0 0 0 0 0 0 +-17.315 -5.911 -0.61 0 0 0 0 0 0 0 +-17.253 -5.951 -0.608 0 0 0 0 0 0 0 +-17.19 -5.99 -0.606 0 0 0 0 0 0 0 +-17.138 -6.002 -0.604 0 0 0 0 0 0 0 +-17.134 -6.061 -0.605 0 0 0 0 0 0 0 +-16.891 -6.035 -0.594 0 0 0 0 0 0 0 +-16.777 -6.054 -0.59 0 0 0 0 0 0 0 +-16.862 -6.145 -0.595 0 0 0 0 0 0 0 +-16.803 -6.183 -0.593 0 0 0 0 0 0 0 +-16.735 -6.218 -0.59 0 0 0 0 0 0 0 +-16.682 -6.228 -0.588 0 0 0 0 0 0 0 +-16.608 -6.26 -0.586 0 0 0 0 0 0 0 +-16.489 -6.275 -0.581 0 0 0 0 0 0 0 +-16.268 -6.249 -0.572 0 0 0 0 0 0 0 +-16.215 -6.287 -0.57 0 0 0 0 0 0 0 +-16.141 -6.317 -0.567 0 0 0 0 0 0 0 +-16.195 -6.397 -0.571 0 0 0 0 0 0 0 +-16.23 -6.44 -0.573 0 0 0 0 0 0 0 +-16.165 -6.474 -0.571 0 0 0 0 0 0 0 +-16.105 -6.509 -0.569 0 0 0 0 0 0 0 +-16.044 -6.543 -0.567 0 0 0 0 0 0 0 +-16.02 -6.592 -0.567 0 0 0 0 0 0 0 +-16.023 -6.652 -0.568 0 0 0 0 0 0 0 +-16.004 -6.703 -0.568 0 0 0 0 0 0 0 +-15.898 -6.688 -0.564 0 0 0 0 0 0 0 +-15.856 -6.729 -0.563 0 0 0 0 0 0 0 +-16.043 -6.867 -0.573 0 0 0 0 0 0 0 +-16.065 -6.937 -0.575 0 0 0 0 0 0 0 +-16.076 -7.002 -0.576 0 0 0 0 0 0 0 +-16.076 -7.062 -0.577 0 0 0 0 0 0 0 +-16.085 -7.126 -0.579 0 0 0 0 0 0 0 +-16.103 -7.164 -0.58 0 0 0 0 0 0 0 +-16.106 -7.226 -0.582 0 0 0 0 0 0 0 +-16.105 -7.286 -0.583 0 0 0 0 0 0 0 +-16.122 -7.355 -0.585 0 0 0 0 0 0 0 +-16.126 -7.418 -0.586 0 0 0 0 0 0 0 +-16.137 -7.485 -0.588 0 0 0 0 0 0 0 +-16.141 -7.548 -0.589 0 0 0 0 0 0 0 +-16.148 -7.613 -0.59 0 0 0 0 0 0 0 +-16.165 -7.652 -0.592 0 0 0 0 0 0 0 +-16.171 -7.718 -0.593 0 0 0 0 0 0 0 +-16.174 -7.781 -0.595 0 0 0 0 0 0 0 +-16.182 -7.848 -0.596 0 0 0 0 0 0 0 +-16.193 -7.916 -0.598 0 0 0 0 0 0 0 +-16.198 -7.982 -0.6 0 0 0 0 0 0 0 +-16.202 -8.047 -0.601 0 0 0 0 0 0 0 +-16.222 -8.088 -0.603 0 0 0 0 0 0 0 +-16.225 -8.153 -0.604 0 0 0 0 0 0 0 +-16.238 -8.224 -0.606 0 0 0 0 0 0 0 +-16.241 -8.29 -0.607 0 0 0 0 0 0 0 +-16.25 -8.359 -0.609 0 0 0 0 0 0 0 +-16.25 -8.424 -0.611 0 0 0 0 0 0 0 +-16.256 -8.491 -0.612 0 0 0 0 0 0 0 +-16.276 -8.534 -0.614 0 0 0 0 0 0 0 +-16.285 -8.604 -0.616 0 0 0 0 0 0 0 +-16.291 -8.673 -0.617 0 0 0 0 0 0 0 +-16.299 -8.743 -0.619 0 0 0 0 0 0 0 +-16.303 -8.811 -0.621 0 0 0 0 0 0 0 +-16.307 -8.879 -0.622 0 0 0 0 0 0 0 +-16.314 -8.95 -0.624 0 0 0 0 0 0 0 +-16.338 -8.997 -0.626 0 0 0 0 0 0 0 +-16.34 -9.064 -0.627 0 0 0 0 0 0 0 +-16.346 -9.135 -0.629 0 0 0 0 0 0 0 +-16.354 -9.207 -0.631 0 0 0 0 0 0 0 +-16.358 -9.277 -0.633 0 0 0 0 0 0 0 +-16.364 -9.348 -0.635 0 0 0 0 0 0 0 +-16.369 -9.419 -0.636 0 0 0 0 0 0 0 +-16.401 -9.472 -0.639 0 0 0 0 0 0 0 +-16.405 -9.543 -0.641 0 0 0 0 0 0 0 +-16.413 -9.617 -0.643 0 0 0 0 0 0 0 +-16.414 -9.687 -0.644 0 0 0 0 0 0 0 +-16.425 -9.763 -0.646 0 0 0 0 0 0 0 +-16.425 -9.833 -0.648 0 0 0 0 0 0 0 +-16.433 -9.908 -0.65 0 0 0 0 0 0 0 +-16.454 -9.955 -0.652 0 0 0 0 0 0 0 +-16.463 -10.032 -0.654 0 0 0 0 0 0 0 +-16.471 -10.108 -0.656 0 0 0 0 0 0 0 +-16.478 -10.183 -0.658 0 0 0 0 0 0 0 +-16.478 -10.255 -0.66 0 0 0 0 0 0 0 +-16.488 -10.333 -0.662 0 0 0 0 0 0 0 +-16.495 -10.41 -0.664 0 0 0 0 0 0 0 +-16.517 -10.46 -0.666 0 0 0 0 0 0 0 +-16.525 -10.538 -0.668 0 0 0 0 0 0 0 +-16.539 -10.62 -0.671 0 0 0 0 0 0 0 +-16.539 -10.693 -0.672 0 0 0 0 0 0 0 +-16.547 -10.772 -0.675 0 0 0 0 0 0 0 +-16.562 -10.856 -0.677 0 0 0 0 0 0 0 +-16.566 -10.933 -0.679 0 0 0 0 0 0 0 +-16.571 -11.012 -0.681 0 0 0 0 0 0 0 +-16.601 -11.069 -0.684 0 0 0 0 0 0 0 +-16.601 -11.144 -0.686 0 0 0 0 0 0 0 +-16.607 -11.224 -0.688 0 0 0 0 0 0 0 +-16.611 -11.303 -0.69 0 0 0 0 0 0 0 +-16.617 -11.383 -0.692 0 0 0 0 0 0 0 +-16.621 -11.463 -0.694 0 0 0 0 0 0 0 +-16.637 -11.551 -0.697 0 0 0 0 0 0 0 +-16.66 -11.606 -0.699 0 0 0 0 0 0 0 +-16.674 -11.694 -0.702 0 0 0 0 0 0 0 +-16.663 -11.764 -0.704 0 0 0 0 0 0 0 +-10.589 -7.537 -0.374 0 0 0 0 0 0 0 +-10.537 -7.551 -0.373 0 0 0 0 0 0 0 +-10.499 -7.573 -0.372 0 0 0 0 0 0 0 +-10.503 -7.626 -0.374 0 0 0 0 0 0 0 +-16.741 -12.177 -0.717 0 0 0 0 0 0 0 +-16.747 -12.262 -0.72 0 0 0 0 0 0 0 +-16.759 -12.352 -0.722 0 0 0 0 0 0 0 +-16.756 -12.431 -0.724 0 0 0 0 0 0 0 +-16.778 -12.529 -0.728 0 0 0 0 0 0 0 +-16.773 -12.608 -0.73 0 0 0 0 0 0 0 +-16.791 -12.704 -0.733 0 0 0 0 0 0 0 +-16.813 -12.761 -0.735 0 0 0 0 0 0 0 +-16.822 -12.852 -0.738 0 0 0 0 0 0 0 +-16.819 -12.934 -0.74 0 0 0 0 0 0 0 +-16.845 -13.038 -0.744 0 0 0 0 0 0 0 +-16.839 -13.117 -0.746 0 0 0 0 0 0 0 +-16.857 -13.217 -0.749 0 0 0 0 0 0 0 +-16.855 -13.301 -0.751 0 0 0 0 0 0 0 +-16.889 -13.371 -0.754 0 0 0 0 0 0 0 +-16.894 -13.461 -0.757 0 0 0 0 0 0 0 +-16.912 -13.563 -0.761 0 0 0 0 0 0 0 +-16.911 -13.65 -0.763 0 0 0 0 0 0 0 +-16.926 -13.749 -0.766 0 0 0 0 0 0 0 +-16.921 -13.834 -0.769 0 0 0 0 0 0 0 +-16.943 -13.94 -0.772 0 0 0 0 0 0 0 +-16.959 -13.998 -0.774 0 0 0 0 0 0 0 +-16.986 -14.11 -0.779 0 0 0 0 0 0 0 +-16.978 -14.194 -0.781 0 0 0 0 0 0 0 +-17.004 -14.307 -0.785 0 0 0 0 0 0 0 +-17.006 -14.4 -0.788 0 0 0 0 0 0 0 +-17.025 -14.508 -0.791 0 0 0 0 0 0 0 +-17.023 -14.599 -0.794 0 0 0 0 0 0 0 +-17.075 -14.689 -0.798 0 0 0 0 0 0 0 +-17.065 -14.774 -0.8 0 0 0 0 0 0 0 +-17.08 -14.882 -0.804 0 0 0 0 0 0 0 +-17.08 -14.976 -0.807 0 0 0 0 0 0 0 +-17.102 -15.09 -0.811 0 0 0 0 0 0 0 +-17.098 -15.182 -0.813 0 0 0 0 0 0 0 +-17.112 -15.292 -0.817 0 0 0 0 0 0 0 +-17.113 -15.389 -0.82 0 0 0 0 0 0 0 +-17.146 -15.467 -0.823 0 0 0 0 0 0 0 +-17.161 -15.579 -0.827 0 0 0 0 0 0 0 +-17.172 -15.688 -0.831 0 0 0 0 0 0 0 +-17.179 -15.793 -0.834 0 0 0 0 0 0 0 +-17.189 -15.902 -0.838 0 0 0 0 0 0 0 +-17.189 -16.002 -0.841 0 0 0 0 0 0 0 +-17.204 -16.118 -0.845 0 0 0 0 0 0 0 +-17.243 -16.205 -0.849 0 0 0 0 0 0 0 +-17.263 -16.326 -0.853 0 0 0 0 0 0 0 +-17.263 -16.428 -0.856 0 0 0 0 0 0 0 +-17.277 -16.546 -0.86 0 0 0 0 0 0 0 +-17.277 -16.65 -0.864 0 0 0 0 0 0 0 +-17.289 -16.767 -0.868 0 0 0 0 0 0 0 +-17.295 -16.878 -0.871 0 0 0 0 0 0 0 +-17.337 -16.972 -0.876 0 0 0 0 0 0 0 +-17.331 -17.073 -0.878 0 0 0 0 0 0 0 +-17.343 -17.192 -0.883 0 0 0 0 0 0 0 +-17.374 -17.331 -0.888 0 0 0 0 0 0 0 +-17.377 -17.443 -0.892 0 0 0 0 0 0 0 +-17.387 -17.563 -0.896 0 0 0 0 0 0 0 +-17.375 -17.662 -0.898 0 0 0 0 0 0 0 +-17.392 -17.735 -0.901 0 0 0 0 0 0 0 +-17.377 -17.831 -0.904 0 0 0 0 0 0 0 +-17.273 -17.837 -0.901 0 0 0 0 0 0 0 +-17.182 -17.855 -0.899 0 0 0 0 0 0 0 +-17.097 -17.878 -0.897 0 0 0 0 0 0 0 +-17.074 -17.967 -0.899 0 0 0 0 0 0 0 +-17.083 -18.09 -0.903 0 0 0 0 0 0 0 +-17.136 -18.202 -0.908 0 0 0 0 0 0 0 +-17.137 -18.319 -0.912 0 0 0 0 0 0 0 +-17.152 -18.45 -0.917 0 0 0 0 0 0 0 +-17.364 -18.796 -0.935 0 0 0 0 0 0 0 +-21.003 -22.87 -1.177 0 0 0 0 0 0 0 +-24.219 -26.533 -1.394 0 0 0 0 0 0 0 +-23.117 -25.488 -1.327 0 0 0 0 0 0 0 +-21.404 -23.676 -1.216 0 0 0 0 0 0 0 +-21.273 -23.681 -1.212 0 0 0 0 0 0 0 +-21.341 -23.907 -1.222 0 0 0 0 0 0 0 +-21.189 -23.887 -1.217 0 0 0 0 0 0 0 +-21.156 -24.001 -1.219 0 0 0 0 0 0 0 +-20.714 -23.65 -1.195 0 0 0 0 0 0 0 +-18.044 -20.738 -1.019 0 0 0 0 0 0 0 +-20.796 -23.971 -1.208 0 0 0 0 0 0 0 +-18.898 -21.925 -1.084 0 0 0 0 0 0 0 +-18.791 -21.94 -1.081 0 0 0 0 0 0 0 +-18.313 -21.519 -1.053 0 0 0 0 0 0 0 +-18.209 -21.533 -1.051 0 0 0 0 0 0 0 +-18.111 -21.555 -1.049 0 0 0 0 0 0 0 +-18.004 -21.565 -1.046 0 0 0 0 0 0 0 +-17.946 -21.564 -1.044 0 0 0 0 0 0 0 +-17.948 -21.705 -1.049 0 0 0 0 0 0 0 +-17.99 -21.895 -1.057 0 0 0 0 0 0 0 +-18.002 -22.051 -1.062 0 0 0 0 0 0 0 +-18.562 -22.881 -1.107 0 0 0 0 0 0 0 +-18.497 -22.948 -1.107 0 0 0 0 0 0 0 +-18.388 -22.959 -1.105 0 0 0 0 0 0 0 +-18.38 -23.024 -1.107 0 0 0 0 0 0 0 +-18.309 -23.083 -1.107 0 0 0 0 0 0 0 +-18.235 -23.139 -1.107 0 0 0 0 0 0 0 +-18.526 -23.66 -1.133 0 0 0 0 0 0 0 +-18.258 -23.469 -1.119 0 0 0 0 0 0 0 +-18.126 -23.452 -1.115 0 0 0 0 0 0 0 +-18.019 -23.465 -1.112 0 0 0 0 0 0 0 +-17.955 -23.458 -1.11 0 0 0 0 0 0 0 +-17.915 -23.559 -1.113 0 0 0 0 0 0 0 +-17.898 -23.69 -1.117 0 0 0 0 0 0 0 +-18.212 -24.264 -1.146 0 0 0 0 0 0 0 +-18.28 -24.514 -1.157 0 0 0 0 0 0 0 +-18.302 -24.705 -1.164 0 0 0 0 0 0 0 +-18.302 -24.867 -1.17 0 0 0 0 0 0 0 +-19.563 -26.665 -1.267 0 0 0 0 0 0 0 +-18.844 -25.856 -1.219 0 0 0 0 0 0 0 +-19.525 -26.967 -1.277 0 0 0 0 0 0 0 +-21.886 -30.423 -1.463 0 0 0 0 0 0 0 +-18.742 -26.407 -1.237 0 0 0 0 0 0 0 +-18.596 -26.376 -1.232 0 0 0 0 0 0 0 +-18.585 -26.449 -1.234 0 0 0 0 0 0 0 +-18.63 -26.691 -1.244 0 0 0 0 0 0 0 +-18.427 -26.577 -1.235 0 0 0 0 0 0 0 +-18.344 -26.636 -1.235 0 0 0 0 0 0 0 +-18.445 -27.146 -1.256 0 0 0 0 0 0 0 +-18.659 -27.646 -1.28 0 0 0 0 0 0 0 +-19.688 -29.366 -1.369 0 0 0 0 0 0 0 +-19.494 -29.176 -1.357 0 0 0 0 0 0 0 +-19.176 -28.898 -1.339 0 0 0 0 0 0 0 +-19.05 -28.905 -1.336 0 0 0 0 0 0 0 +-18.928 -28.916 -1.334 0 0 0 0 0 0 0 +-18.83 -28.965 -1.333 0 0 0 0 0 0 0 +-18.851 -29.197 -1.342 0 0 0 0 0 0 0 +-18.867 -29.424 -1.351 0 0 0 0 0 0 0 +-18.944 -29.646 -1.361 0 0 0 0 0 0 0 +-18.97 -29.894 -1.371 0 0 0 0 0 0 0 +-18.984 -30.124 -1.38 0 0 0 0 0 0 0 +-19.015 -30.383 -1.391 0 0 0 0 0 0 0 +-19.041 -30.64 -1.401 0 0 0 0 0 0 0 +-19.072 -30.905 -1.412 0 0 0 0 0 0 0 +-19.118 -31.198 -1.424 0 0 0 0 0 0 0 +-19.191 -31.427 -1.434 0 0 0 0 0 0 0 +-19.217 -31.692 -1.445 0 0 0 0 0 0 0 +-19.23 -31.939 -1.455 0 0 0 0 0 0 0 +-19.261 -32.219 -1.466 0 0 0 0 0 0 0 +-19.278 -32.478 -1.476 0 0 0 0 0 0 0 +-19.308 -32.762 -1.488 0 0 0 0 0 0 0 +-19.328 -33.033 -1.499 0 0 0 0 0 0 0 +-19.414 -33.3 -1.511 0 0 0 0 0 0 0 +-19.448 -33.599 -1.523 0 0 0 0 0 0 0 +-19.438 -33.827 -1.532 0 0 0 0 0 0 0 +-19.376 -33.966 -1.536 0 0 0 0 0 0 0 +-19.287 -34.057 -1.537 0 0 0 0 0 0 0 +-19.141 -34.05 -1.534 0 0 0 0 0 0 0 +-19.59 -35.104 -1.584 0 0 0 0 0 0 0 +-19.667 -35.372 -1.596 0 0 0 0 0 0 0 +-19.427 -35.464 -1.595 0 0 0 0 0 0 0 +-19.371 -35.626 -1.6 0 0 0 0 0 0 0 +-19.246 -35.662 -1.599 0 0 0 0 0 0 0 +-19.787 -36.941 -1.66 0 0 0 0 0 0 0 +-15.658 -29.465 -1.28 0 0 0 0 0 0 0 +-15.578 -29.426 -1.277 0 0 0 0 0 0 0 +-15.49 -29.484 -1.278 0 0 0 0 0 0 0 +-15.424 -29.584 -1.28 0 0 0 0 0 0 0 +-20.025 -38.688 -1.734 0 0 0 0 0 0 0 +-20.067 -39.068 -1.75 0 0 0 0 0 0 0 +-15.052 -29.546 -1.271 0 0 0 0 0 0 0 +-20.153 -39.848 -1.782 0 0 0 0 0 0 0 +-20.261 -40.218 -1.799 0 0 0 0 0 0 0 +-20.305 -40.623 -1.816 0 0 0 0 0 0 0 +-15.267 -31.292 -1.345 0 0 0 0 0 0 0 +-15.146 -31.293 -1.343 0 0 0 0 0 0 0 +-20.521 -42.718 -1.904 0 0 0 0 0 0 0 +-20.635 -43.126 -1.923 0 0 0 0 0 0 0 +-15.329 -32.843 -1.408 0 0 0 0 0 0 0 +-15.292 -33.034 -1.415 0 0 0 0 0 0 0 +-15.71 -34.217 -1.471 0 0 0 0 0 0 0 +-15.476 -33.99 -1.457 0 0 0 0 0 0 0 +-15.404 -34.257 -1.467 0 0 0 0 0 0 0 +-15.356 -34.438 -1.473 0 0 0 0 0 0 0 +-15.218 -34.421 -1.47 0 0 0 0 0 0 0 +-15.921 -36.316 -1.56 0 0 0 0 0 0 0 +-15.844 -36.45 -1.564 0 0 0 0 0 0 0 +-15.744 -36.533 -1.566 0 0 0 0 0 0 0 +-15.675 -36.532 -1.564 0 0 0 0 0 0 0 +-15.589 -36.647 -1.568 0 0 0 0 0 0 0 +-15.447 -36.633 -1.565 0 0 0 0 0 0 0 +-15.379 -36.794 -1.57 0 0 0 0 0 0 0 +-15.366 -37.089 -1.582 0 0 0 0 0 0 0 +-15.305 -37.274 -1.589 0 0 0 0 0 0 0 +-15.326 -37.661 -1.605 0 0 0 0 0 0 0 +-15.347 -37.881 -1.614 0 0 0 0 0 0 0 +-14.677 -36.895 -1.562 0 0 0 0 0 0 0 +-14.563 -36.944 -1.563 0 0 0 0 0 0 0 +-14.149 -36.912 -1.555 0 0 0 0 0 0 0 +-14.083 -36.912 -1.554 0 0 0 0 0 0 0 +-13.948 -36.905 -1.551 0 0 0 0 0 0 0 +-13.819 -36.915 -1.55 0 0 0 0 0 0 0 +-13.697 -36.944 -1.549 0 0 0 0 0 0 0 +-13.565 -36.943 -1.547 0 0 0 0 0 0 0 +-13.442 -36.967 -1.546 0 0 0 0 0 0 0 +-13.326 -37.007 -1.546 0 0 0 0 0 0 0 +-13.207 -37.041 -1.545 0 0 0 0 0 0 0 +-13.12 -36.981 -1.542 0 0 0 0 0 0 0 +-13.165 -37.48 -1.563 0 0 0 0 0 0 0 +-13.213 -37.999 -1.586 0 0 0 0 0 0 0 +-13.223 -38.414 -1.603 0 0 0 0 0 0 0 +-13.283 -38.985 -1.628 0 0 0 0 0 0 0 +-13.335 -39.545 -1.653 0 0 0 0 0 0 0 +-13.367 -40.053 -1.674 0 0 0 0 0 0 0 +-13.407 -40.383 -1.689 0 0 0 0 0 0 0 +-14.084 -42.867 -1.803 0 0 0 0 0 0 0 +-13.943 -42.892 -1.802 0 0 0 0 0 0 0 +-13.805 -42.926 -1.802 0 0 0 0 0 0 0 +-13.783 -43.323 -1.818 0 0 0 0 0 0 0 +-14.173 -45.283 -1.907 0 0 0 0 0 0 0 +-15.519 -50.125 -2.13 0 0 0 0 0 0 0 +-15.373 -50.212 -2.132 0 0 0 0 0 0 0 +-15.112 -49.919 -2.116 0 0 0 0 0 0 0 +-14.947 -49.942 -2.115 0 0 0 0 0 0 0 +-14.558 -49.778 -2.103 0 0 0 0 0 0 0 +-14.287 -49.428 -2.085 0 0 0 0 0 0 0 +-14.204 -49.431 -2.084 0 0 0 0 0 0 0 +-14.013 -49.35 -2.078 0 0 0 0 0 0 0 +-13.778 -49.111 -2.065 0 0 0 0 0 0 0 +-10.156 -48.611 -2.005 0 0 0 0 0 0 0 +-10.002 -48.637 -2.005 0 0 0 0 0 0 0 +-9.84 -48.623 -2.003 0 0 0 0 0 0 0 +-9.755 -48.594 -2.001 0 0 0 0 0 0 0 +-9.606 -48.642 -2.002 0 0 0 0 0 0 0 +-9.473 -48.774 -2.006 0 0 0 0 0 0 0 +-8.987 -48.723 -2 0 0 0 0 0 0 0 +-8.82 -48.676 -1.997 0 0 0 0 0 0 0 +-7.022 -43.852 -1.772 0 0 0 0 0 0 0 +-6.431 -41.422 -1.661 0 0 0 0 0 0 0 +-6.097 -40.97 -1.639 0 0 0 0 0 0 0 +-5.963 -40.949 -1.637 0 0 0 0 0 0 0 +-5.841 -41.019 -1.639 0 0 0 0 0 0 0 +-5.702 -40.964 -1.636 0 0 0 0 0 0 0 +-5.638 -40.973 -1.636 0 0 0 0 0 0 0 +-5.51 -40.997 -1.636 0 0 0 0 0 0 0 +-5.389 -41.069 -1.639 0 0 0 0 0 0 0 +-5.256 -41.058 -1.637 0 0 0 0 0 0 0 +-5.144 -41.207 -1.643 0 0 0 0 0 0 0 +-5.01 -41.191 -1.642 0 0 0 0 0 0 0 +-4.885 -41.239 -1.643 0 0 0 0 0 0 0 +-5.603 -49.249 -2.001 0 0 0 0 0 0 0 +-1.968 -19.032 -0.647 0 0 0 0 0 0 0 +-1.818 -18.157 -0.608 0 0 0 0 0 0 0 +-1.805 -18.915 -0.642 0 0 0 0 0 0 0 +-1.747 -18.931 -0.642 0 0 0 0 0 0 0 +-1.688 -18.946 -0.642 0 0 0 0 0 0 0 +-1.62 -18.854 -0.638 0 0 0 0 0 0 0 +-1.553 -18.757 -0.634 0 0 0 0 0 0 0 +-1.249 -18.227 -0.609 0 0 0 0 0 0 0 +-1.3 -19.858 -0.682 0 0 0 0 0 0 0 +-1.238 -19.86 -0.681 0 0 0 0 0 0 0 +-1.192 -20.139 -0.694 0 0 0 0 0 0 0 +-1.111 -19.837 -0.68 0 0 0 0 0 0 0 +-0.957 -19.873 -0.681 0 0 0 0 0 0 0 +-0.891 -19.814 -0.679 0 0 0 0 0 0 0 +-0.747 -19.313 -0.656 0 0 0 0 0 0 0 +-0.651 -18.366 -0.614 0 0 0 0 0 0 0 +-1.432 -45.353 -1.815 0 0 0 0 0 0 0 +-1.284 -45.185 -1.807 0 0 0 0 0 0 0 +-1.138 -45.029 -1.8 0 0 0 0 0 0 0 +-0.991 -44.781 -1.789 0 0 0 0 0 0 0 +-0.845 -44.54 -1.778 0 0 0 0 0 0 0 +-0.701 -44.261 -1.765 0 0 0 0 0 0 0 +-0.626 -43.91 -1.75 0 0 0 0 0 0 0 +-0.477 -42.991 -1.709 0 0 0 0 0 0 0 +-0.238 -30.847 -1.168 0 0 0 0 0 0 0 +-0.2 -41.582 -1.646 0 0 0 0 0 0 0 +-0.069 -41.591 -1.646 0 0 0 0 0 0 0 +0.062 -41.667 -1.65 0 0 0 0 0 0 0 +0.282 -35.808 -1.389 0 0 0 0 0 0 0 +0.338 -35.869 -1.392 0 0 0 0 0 0 0 +0.455 -36.187 -1.406 0 0 0 0 0 0 0 +0.569 -36.188 -1.406 0 0 0 0 0 0 0 +0.784 -41.797 -1.656 0 0 0 0 0 0 0 +0.916 -41.809 -1.656 0 0 0 0 0 0 0 +0.888 -35.282 -1.366 0 0 0 0 0 0 0 +0.985 -34.778 -1.344 0 0 0 0 0 0 0 +1.024 -34.255 -1.321 0 0 0 0 0 0 0 +1.116 -33.774 -1.299 0 0 0 0 0 0 0 +1.212 -33.485 -1.287 0 0 0 0 0 0 0 +1.3 -33.014 -1.266 0 0 0 0 0 0 0 +1.387 -32.614 -1.248 0 0 0 0 0 0 0 +1.471 -32.201 -1.23 0 0 0 0 0 0 0 +1.504 -31.815 -1.213 0 0 0 0 0 0 0 +1.585 -31.427 -1.196 0 0 0 0 0 0 0 +1.666 -31.089 -1.181 0 0 0 0 0 0 0 +1.738 -30.624 -1.161 0 0 0 0 0 0 0 +1.817 -30.334 -1.148 0 0 0 0 0 0 0 +1.888 -29.943 -1.131 0 0 0 0 0 0 0 +1.96 -29.588 -1.115 0 0 0 0 0 0 0 +2.044 -29.448 -1.109 0 0 0 0 0 0 0 +2.092 -29.479 -1.111 0 0 0 0 0 0 0 +2.189 -29.534 -1.114 0 0 0 0 0 0 0 +2.278 -29.471 -1.111 0 0 0 0 0 0 0 +2.368 -29.432 -1.11 0 0 0 0 0 0 0 +2.462 -29.442 -1.11 0 0 0 0 0 0 0 +2.557 -29.47 -1.112 0 0 0 0 0 0 0 +2.474 -27.484 -1.024 0 0 0 0 0 0 0 +2.477 -27.036 -1.004 0 0 0 0 0 0 0 +2.538 -26.775 -0.993 0 0 0 0 0 0 0 +2.598 -26.521 -0.982 0 0 0 0 0 0 0 +2.661 -26.306 -0.972 0 0 0 0 0 0 0 +2.729 -26.16 -0.966 0 0 0 0 0 0 0 +2.777 -25.83 -0.952 0 0 0 0 0 0 0 +2.814 -25.419 -0.934 0 0 0 0 0 0 0 +2.841 -25.296 -0.929 0 0 0 0 0 0 0 +2.881 -24.939 -0.913 0 0 0 0 0 0 0 +2.928 -24.668 -0.901 0 0 0 0 0 0 0 +2.986 -24.498 -0.894 0 0 0 0 0 0 0 +3.034 -24.257 -0.884 0 0 0 0 0 0 0 +3.08 -24.009 -0.873 0 0 0 0 0 0 0 +3.13 -23.799 -0.864 0 0 0 0 0 0 0 +3.164 -23.769 -0.863 0 0 0 0 0 0 0 +3.181 -23.335 -0.844 0 0 0 0 0 0 0 +3.237 -23.202 -0.838 0 0 0 0 0 0 0 +3.291 -23.057 -0.832 0 0 0 0 0 0 0 +3.323 -22.764 -0.82 0 0 0 0 0 0 0 +3.364 -22.55 -0.81 0 0 0 0 0 0 0 +3.418 -22.429 -0.805 0 0 0 0 0 0 0 +3.427 -22.249 -0.798 0 0 0 0 0 0 0 +3.491 -22.205 -0.796 0 0 0 0 0 0 0 +3.557 -22.168 -0.795 0 0 0 0 0 0 0 +3.609 -22.049 -0.79 0 0 0 0 0 0 0 +3.698 -22.159 -0.796 0 0 0 0 0 0 0 +3.767 -22.14 -0.795 0 0 0 0 0 0 0 +3.85 -22.21 -0.799 0 0 0 0 0 0 0 +3.889 -22.228 -0.8 0 0 0 0 0 0 0 +3.964 -22.241 -0.801 0 0 0 0 0 0 0 +4.694 -25.433 -0.947 0 0 0 0 0 0 0 +4.796 -25.538 -0.952 0 0 0 0 0 0 0 +4.86 -25.438 -0.948 0 0 0 0 0 0 0 +4.513 -23.019 -0.84 0 0 0 0 0 0 0 +4.191 -21.015 -0.75 0 0 0 0 0 0 0 +4.719 -22.924 -0.837 0 0 0 0 0 0 0 +4.792 -22.913 -0.838 0 0 0 0 0 0 0 +4.87 -22.925 -0.839 0 0 0 0 0 0 0 +4.941 -22.906 -0.839 0 0 0 0 0 0 0 +4.087 -18.783 -0.651 0 0 0 0 0 0 0 +3.954 -17.894 -0.611 0 0 0 0 0 0 0 +4.823 -21.217 -0.764 0 0 0 0 0 0 0 +4.878 -21.149 -0.762 0 0 0 0 0 0 0 +4.956 -21.185 -0.764 0 0 0 0 0 0 0 +5.024 -21.175 -0.764 0 0 0 0 0 0 0 +5.065 -21.198 -0.766 0 0 0 0 0 0 0 +5.15 -21.258 -0.769 0 0 0 0 0 0 0 +5.211 -21.218 -0.768 0 0 0 0 0 0 0 +5.282 -21.221 -0.769 0 0 0 0 0 0 0 +4.336 -17.168 -0.584 0 0 0 0 0 0 0 +5.422 -21.214 -0.77 0 0 0 0 0 0 0 +5.486 -21.188 -0.77 0 0 0 0 0 0 0 +5.527 -21.208 -0.771 0 0 0 0 0 0 0 +5.59 -21.175 -0.77 0 0 0 0 0 0 0 +5.663 -21.184 -0.772 0 0 0 0 0 0 0 +5.731 -21.172 -0.772 0 0 0 0 0 0 0 +5.816 -21.22 -0.775 0 0 0 0 0 0 0 +4.951 -17.827 -0.619 0 0 0 0 0 0 0 +5.969 -21.256 -0.778 0 0 0 0 0 0 0 +6.015 -21.289 -0.78 0 0 0 0 0 0 0 +6.089 -21.297 -0.782 0 0 0 0 0 0 0 +6.146 -21.243 -0.78 0 0 0 0 0 0 0 +6.221 -21.25 -0.781 0 0 0 0 0 0 0 +6.292 -21.246 -0.782 0 0 0 0 0 0 0 +6.377 -21.287 -0.785 0 0 0 0 0 0 0 +6.436 -21.241 -0.784 0 0 0 0 0 0 0 +5.872 -19.263 -0.692 0 0 0 0 0 0 0 +6.555 -21.273 -0.786 0 0 0 0 0 0 0 +6.631 -21.283 -0.788 0 0 0 0 0 0 0 +6.713 -21.31 -0.79 0 0 0 0 0 0 0 +6.79 -21.319 -0.792 0 0 0 0 0 0 0 +5.715 -17.736 -0.625 0 0 0 0 0 0 0 +6.94 -21.327 -0.794 0 0 0 0 0 0 0 +6.986 -21.354 -0.796 0 0 0 0 0 0 0 +7.064 -21.366 -0.797 0 0 0 0 0 0 0 +7.153 -21.41 -0.8 0 0 0 0 0 0 0 +7.211 -21.359 -0.799 0 0 0 0 0 0 0 +7.294 -21.382 -0.801 0 0 0 0 0 0 0 +7.35 -21.329 -0.8 0 0 0 0 0 0 0 +7.451 -21.404 -0.804 0 0 0 0 0 0 0 +3.707 -10.555 -0.294 0 0 0 0 0 0 0 +3.747 -10.562 -0.295 0 0 0 0 0 0 0 +3.768 -10.516 -0.293 0 0 0 0 0 0 0 +3.802 -10.506 -0.293 0 0 0 0 0 0 0 +7.793 -21.407 -0.81 0 0 0 0 0 0 0 +7.899 -21.488 -0.815 0 0 0 0 0 0 0 +7.985 -21.513 -0.817 0 0 0 0 0 0 0 +8.059 -21.607 -0.822 0 0 0 0 0 0 0 +8.103 -21.518 -0.819 0 0 0 0 0 0 0 +8.141 -21.414 -0.815 0 0 0 0 0 0 0 +8.146 -21.226 -0.808 0 0 0 0 0 0 0 +6.344 -16.362 -0.577 0 0 0 0 0 0 0 +7.62 -19.484 -0.727 0 0 0 0 0 0 0 +8.227 -20.847 -0.793 0 0 0 0 0 0 0 +8.222 -20.74 -0.789 0 0 0 0 0 0 0 +8.242 -20.6 -0.783 0 0 0 0 0 0 0 +8.264 -20.467 -0.778 0 0 0 0 0 0 0 +8.292 -20.352 -0.774 0 0 0 0 0 0 0 +7.841 -19.071 -0.714 0 0 0 0 0 0 0 +8.33 -20.083 -0.763 0 0 0 0 0 0 0 +8.353 -19.961 -0.759 0 0 0 0 0 0 0 +8.328 -19.814 -0.752 0 0 0 0 0 0 0 +8.361 -19.717 -0.749 0 0 0 0 0 0 0 +8.381 -19.592 -0.744 0 0 0 0 0 0 0 +8.405 -19.479 -0.74 0 0 0 0 0 0 0 +8.426 -19.359 -0.735 0 0 0 0 0 0 0 +8.445 -19.237 -0.731 0 0 0 0 0 0 0 +8.465 -19.119 -0.726 0 0 0 0 0 0 0 +8.446 -18.996 -0.721 0 0 0 0 0 0 0 +8.469 -18.888 -0.717 0 0 0 0 0 0 0 +8.491 -18.779 -0.713 0 0 0 0 0 0 0 +8.512 -18.667 -0.709 0 0 0 0 0 0 0 +8.543 -18.58 -0.706 0 0 0 0 0 0 0 +8.571 -18.488 -0.703 0 0 0 0 0 0 0 +8.577 -18.35 -0.697 0 0 0 0 0 0 0 +8.569 -18.257 -0.693 0 0 0 0 0 0 0 +8.592 -18.158 -0.69 0 0 0 0 0 0 0 +8.621 -18.071 -0.687 0 0 0 0 0 0 0 +8.644 -17.974 -0.683 0 0 0 0 0 0 0 +8.705 -17.956 -0.684 0 0 0 0 0 0 0 +8.692 -17.786 -0.677 0 0 0 0 0 0 0 +8.769 -17.802 -0.679 0 0 0 0 0 0 0 +8.828 -17.851 -0.682 0 0 0 0 0 0 0 +8.844 -17.742 -0.678 0 0 0 0 0 0 0 +8.861 -17.638 -0.674 0 0 0 0 0 0 0 +8.88 -17.539 -0.671 0 0 0 0 0 0 0 +8.898 -17.438 -0.667 0 0 0 0 0 0 0 +8.915 -17.335 -0.663 0 0 0 0 0 0 0 +8.933 -17.237 -0.66 0 0 0 0 0 0 0 +8.927 -17.158 -0.657 0 0 0 0 0 0 0 +8.943 -17.059 -0.653 0 0 0 0 0 0 0 +8.965 -16.971 -0.65 0 0 0 0 0 0 0 +8.981 -16.872 -0.647 0 0 0 0 0 0 0 +9.003 -16.785 -0.644 0 0 0 0 0 0 0 +9.022 -16.694 -0.64 0 0 0 0 0 0 0 +9.037 -16.597 -0.637 0 0 0 0 0 0 0 +9.025 -16.512 -0.633 0 0 0 0 0 0 0 +9.047 -16.43 -0.631 0 0 0 0 0 0 0 +9.063 -16.338 -0.627 0 0 0 0 0 0 0 +9.076 -16.24 -0.624 0 0 0 0 0 0 0 +9.09 -16.145 -0.62 0 0 0 0 0 0 0 +9.111 -16.064 -0.618 0 0 0 0 0 0 0 +9.123 -15.968 -0.614 0 0 0 0 0 0 0 +9.11 -15.887 -0.611 0 0 0 0 0 0 0 +9.129 -15.805 -0.608 0 0 0 0 0 0 0 +9.143 -15.714 -0.605 0 0 0 0 0 0 0 +9.161 -15.632 -0.602 0 0 0 0 0 0 0 +9.176 -15.546 -0.599 0 0 0 0 0 0 0 +9.186 -15.452 -0.596 0 0 0 0 0 0 0 +9.231 -15.416 -0.596 0 0 0 0 0 0 0 +9.273 -15.432 -0.597 0 0 0 0 0 0 0 +9.349 -15.448 -0.599 0 0 0 0 0 0 0 +9.417 -15.451 -0.601 0 0 0 0 0 0 0 +9.476 -15.438 -0.602 0 0 0 0 0 0 0 +9.472 -15.323 -0.598 0 0 0 0 0 0 0 +7.072 -11.348 -0.391 0 0 0 0 0 0 0 +7.101 -11.315 -0.391 0 0 0 0 0 0 0 +7.112 -11.294 -0.39 0 0 0 0 0 0 0 +7.147 -11.27 -0.39 0 0 0 0 0 0 0 +7.172 -11.232 -0.389 0 0 0 0 0 0 0 +7.206 -11.206 -0.389 0 0 0 0 0 0 0 +7.238 -11.178 -0.389 0 0 0 0 0 0 0 +7.266 -11.146 -0.388 0 0 0 0 0 0 0 +7.296 -11.114 -0.388 0 0 0 0 0 0 0 +7.33 -11.091 -0.388 0 0 0 0 0 0 0 +7.34 -11.068 -0.387 0 0 0 0 0 0 0 +7.37 -11.038 -0.387 0 0 0 0 0 0 0 +7.4 -11.007 -0.386 0 0 0 0 0 0 0 +7.43 -10.977 -0.386 0 0 0 0 0 0 0 +7.46 -10.947 -0.386 0 0 0 0 0 0 0 +7.491 -10.919 -0.385 0 0 0 0 0 0 0 +7.517 -10.883 -0.385 0 0 0 0 0 0 0 +7.528 -10.863 -0.384 0 0 0 0 0 0 0 +7.561 -10.838 -0.384 0 0 0 0 0 0 0 +7.593 -10.811 -0.384 0 0 0 0 0 0 0 +7.626 -10.785 -0.384 0 0 0 0 0 0 0 +7.648 -10.745 -0.383 0 0 0 0 0 0 0 +7.7 -10.747 -0.384 0 0 0 0 0 0 0 +7.8 -10.85 -0.391 0 0 0 0 0 0 0 +9.482 -13.113 -0.516 0 0 0 0 0 0 0 +9.497 -13.047 -0.514 0 0 0 0 0 0 0 +9.51 -12.979 -0.512 0 0 0 0 0 0 0 +9.519 -12.905 -0.51 0 0 0 0 0 0 0 +9.53 -12.835 -0.507 0 0 0 0 0 0 0 +9.538 -12.762 -0.505 0 0 0 0 0 0 0 +9.53 -12.71 -0.503 0 0 0 0 0 0 0 +9.544 -12.645 -0.501 0 0 0 0 0 0 0 +9.554 -12.577 -0.499 0 0 0 0 0 0 0 +9.565 -12.509 -0.497 0 0 0 0 0 0 0 +9.576 -12.442 -0.495 0 0 0 0 0 0 0 +9.591 -12.38 -0.493 0 0 0 0 0 0 0 +9.603 -12.315 -0.491 0 0 0 0 0 0 0 +9.592 -12.262 -0.489 0 0 0 0 0 0 0 +9.603 -12.196 -0.487 0 0 0 0 0 0 0 +9.614 -12.131 -0.485 0 0 0 0 0 0 0 +9.624 -12.067 -0.483 0 0 0 0 0 0 0 +9.636 -12.004 -0.481 0 0 0 0 0 0 0 +9.645 -11.938 -0.479 0 0 0 0 0 0 0 +9.653 -11.871 -0.477 0 0 0 0 0 0 0 +9.668 -11.813 -0.475 0 0 0 0 0 0 0 +9.66 -11.766 -0.473 0 0 0 0 0 0 0 +9.67 -11.703 -0.472 0 0 0 0 0 0 0 +9.681 -11.642 -0.47 0 0 0 0 0 0 0 +9.694 -11.582 -0.468 0 0 0 0 0 0 0 +9.7 -11.516 -0.466 0 0 0 0 0 0 0 +9.582 -11.303 -0.455 0 0 0 0 0 0 0 +9.591 -11.242 -0.454 0 0 0 0 0 0 0 +9.58 -11.193 -0.452 0 0 0 0 0 0 0 +9.59 -11.133 -0.45 0 0 0 0 0 0 0 +9.598 -11.072 -0.448 0 0 0 0 0 0 0 +9.609 -11.015 -0.447 0 0 0 0 0 0 0 +9.618 -10.955 -0.445 0 0 0 0 0 0 0 +9.627 -10.896 -0.443 0 0 0 0 0 0 0 +9.636 -10.837 -0.441 0 0 0 0 0 0 0 +9.632 -10.798 -0.44 0 0 0 0 0 0 0 +9.642 -10.741 -0.438 0 0 0 0 0 0 0 +9.653 -10.686 -0.437 0 0 0 0 0 0 0 +9.665 -10.632 -0.435 0 0 0 0 0 0 0 +9.672 -10.573 -0.434 0 0 0 0 0 0 0 +9.675 -10.509 -0.432 0 0 0 0 0 0 0 +9.675 -10.476 -0.431 0 0 0 0 0 0 0 +9.679 -10.415 -0.429 0 0 0 0 0 0 0 +9.69 -10.361 -0.427 0 0 0 0 0 0 0 +9.699 -10.306 -0.426 0 0 0 0 0 0 0 +9.708 -10.25 -0.424 0 0 0 0 0 0 0 +9.714 -10.192 -0.423 0 0 0 0 0 0 0 +9.726 -10.14 -0.421 0 0 0 0 0 0 0 +9.733 -10.083 -0.42 0 0 0 0 0 0 0 +8.948 -9.238 -0.368 0 0 0 0 0 0 0 +9.728 -9.984 -0.416 0 0 0 0 0 0 0 +9.746 -9.94 -0.416 0 0 0 0 0 0 0 +9.752 -9.883 -0.414 0 0 0 0 0 0 0 +9.76 -9.83 -0.413 0 0 0 0 0 0 0 +9.769 -9.776 -0.411 0 0 0 0 0 0 0 +9.785 -9.732 -0.41 0 0 0 0 0 0 0 +9.776 -9.692 -0.409 0 0 0 0 0 0 0 +9.787 -9.642 -0.407 0 0 0 0 0 0 0 +9.796 -9.59 -0.406 0 0 0 0 0 0 0 +9.803 -9.537 -0.405 0 0 0 0 0 0 0 +9.808 -9.482 -0.403 0 0 0 0 0 0 0 +9.817 -9.431 -0.402 0 0 0 0 0 0 0 +9.832 -9.386 -0.401 0 0 0 0 0 0 0 +9.829 -9.354 -0.4 0 0 0 0 0 0 0 +9.827 -9.293 -0.398 0 0 0 0 0 0 0 +9.843 -9.25 -0.397 0 0 0 0 0 0 0 +9.85 -9.198 -0.396 0 0 0 0 0 0 0 +9.858 -9.148 -0.395 0 0 0 0 0 0 0 +9.855 -9.087 -0.393 0 0 0 0 0 0 0 +9.874 -9.048 -0.392 0 0 0 0 0 0 0 +9.856 -9.003 -0.39 0 0 0 0 0 0 0 +9.868 -8.957 -0.389 0 0 0 0 0 0 0 +9.883 -8.914 -0.388 0 0 0 0 0 0 0 +9.89 -8.864 -0.387 0 0 0 0 0 0 0 +9.898 -8.816 -0.386 0 0 0 0 0 0 0 +9.904 -8.765 -0.385 0 0 0 0 0 0 0 +9.898 -8.732 -0.383 0 0 0 0 0 0 0 +9.898 -8.677 -0.382 0 0 0 0 0 0 0 +9.911 -8.633 -0.381 0 0 0 0 0 0 0 +9.924 -8.59 -0.38 0 0 0 0 0 0 0 +9.919 -8.531 -0.378 0 0 0 0 0 0 0 +9.937 -8.492 -0.378 0 0 0 0 0 0 0 +9.942 -8.443 -0.377 0 0 0 0 0 0 0 +9.952 -8.397 -0.376 0 0 0 0 0 0 0 +9.965 -8.381 -0.376 0 0 0 0 0 0 0 +9.984 -8.344 -0.375 0 0 0 0 0 0 0 +10.008 -8.311 -0.375 0 0 0 0 0 0 0 +10.033 -8.278 -0.375 0 0 0 0 0 0 0 +10.051 -8.24 -0.374 0 0 0 0 0 0 0 +10.068 -8.201 -0.374 0 0 0 0 0 0 0 +10.1 -8.174 -0.374 0 0 0 0 0 0 0 +10.109 -8.156 -0.374 0 0 0 0 0 0 0 +10.14 -8.128 -0.374 0 0 0 0 0 0 0 +10.159 -8.091 -0.374 0 0 0 0 0 0 0 +10.175 -8.052 -0.374 0 0 0 0 0 0 0 +10.208 -8.026 -0.374 0 0 0 0 0 0 0 +10.233 -7.994 -0.374 0 0 0 0 0 0 0 +10.26 -7.963 -0.374 0 0 0 0 0 0 0 +10.267 -7.943 -0.374 0 0 0 0 0 0 0 +10.299 -7.916 -0.374 0 0 0 0 0 0 0 +10.306 -7.87 -0.373 0 0 0 0 0 0 0 +10.337 -7.842 -0.374 0 0 0 0 0 0 0 +10.357 -7.806 -0.373 0 0 0 0 0 0 0 +10.383 -7.775 -0.373 0 0 0 0 0 0 0 +10.407 -7.742 -0.373 0 0 0 0 0 0 0 +10.416 -7.723 -0.373 0 0 0 0 0 0 0 +10.426 -7.68 -0.372 0 0 0 0 0 0 0 +10.463 -7.657 -0.373 0 0 0 0 0 0 0 +10.472 -7.613 -0.372 0 0 0 0 0 0 0 +10.504 -7.586 -0.373 0 0 0 0 0 0 0 +10.496 -7.53 -0.371 0 0 0 0 0 0 0 +10.532 -7.506 -0.372 0 0 0 0 0 0 0 +10.538 -7.485 -0.371 0 0 0 0 0 0 0 +10.576 -7.462 -0.372 0 0 0 0 0 0 0 +10.591 -7.423 -0.372 0 0 0 0 0 0 0 +10.616 -7.391 -0.372 0 0 0 0 0 0 0 +10.644 -7.361 -0.372 0 0 0 0 0 0 0 +10.657 -7.321 -0.371 0 0 0 0 0 0 0 +10.69 -7.294 -0.372 0 0 0 0 0 0 0 +10.697 -7.274 -0.372 0 0 0 0 0 0 0 +10.718 -7.239 -0.372 0 0 0 0 0 0 0 +10.737 -7.203 -0.371 0 0 0 0 0 0 0 +10.768 -7.175 -0.372 0 0 0 0 0 0 0 +10.777 -7.132 -0.371 0 0 0 0 0 0 0 +10.798 -7.097 -0.371 0 0 0 0 0 0 0 +10.813 -7.059 -0.371 0 0 0 0 0 0 0 +10.828 -7.044 -0.371 0 0 0 0 0 0 0 +10.852 -7.011 -0.371 0 0 0 0 0 0 0 +10.875 -6.978 -0.371 0 0 0 0 0 0 0 +10.894 -6.942 -0.371 0 0 0 0 0 0 0 +10.91 -6.904 -0.371 0 0 0 0 0 0 0 +10.939 -6.874 -0.371 0 0 0 0 0 0 0 +10.967 -6.844 -0.371 0 0 0 0 0 0 0 +10.971 -6.822 -0.371 0 0 0 0 0 0 0 +10.996 -6.79 -0.371 0 0 0 0 0 0 0 +11.005 -6.748 -0.371 0 0 0 0 0 0 0 +11.042 -6.723 -0.371 0 0 0 0 0 0 0 +11.078 -6.697 -0.372 0 0 0 0 0 0 0 +11.13 -6.681 -0.374 0 0 0 0 0 0 0 +11.19 -6.67 -0.376 0 0 0 0 0 0 0 +11.23 -6.67 -0.377 0 0 0 0 0 0 0 +11.271 -6.647 -0.378 0 0 0 0 0 0 0 +11.327 -6.631 -0.38 0 0 0 0 0 0 0 +11.385 -6.618 -0.382 0 0 0 0 0 0 0 +11.436 -6.599 -0.384 0 0 0 0 0 0 0 +11.491 -6.583 -0.385 0 0 0 0 0 0 0 +11.534 -6.56 -0.387 0 0 0 0 0 0 0 +11.576 -6.56 -0.388 0 0 0 0 0 0 0 +11.629 -6.542 -0.39 0 0 0 0 0 0 0 +11.678 -6.521 -0.391 0 0 0 0 0 0 0 +11.731 -6.503 -0.393 0 0 0 0 0 0 0 +11.786 -6.485 -0.395 0 0 0 0 0 0 0 +11.838 -6.465 -0.396 0 0 0 0 0 0 0 +11.887 -6.443 -0.398 0 0 0 0 0 0 0 +11.944 -6.45 -0.4 0 0 0 0 0 0 0 +11.991 -6.427 -0.402 0 0 0 0 0 0 0 +12.051 -6.411 -0.404 0 0 0 0 0 0 0 +12.109 -6.393 -0.405 0 0 0 0 0 0 0 +12.175 -6.379 -0.408 0 0 0 0 0 0 0 +12.292 -6.392 -0.413 0 0 0 0 0 0 0 +8.803 -4.534 -0.237 0 0 0 0 0 0 0 +8.796 -4.513 -0.236 0 0 0 0 0 0 0 +8.823 -4.492 -0.237 0 0 0 0 0 0 0 +12.435 -6.293 -0.416 0 0 0 0 0 0 0 +12.497 -6.276 -0.418 0 0 0 0 0 0 0 +12.551 -6.253 -0.42 0 0 0 0 0 0 0 +12.608 -6.233 -0.422 0 0 0 0 0 0 0 +12.674 -6.216 -0.424 0 0 0 0 0 0 0 +12.721 -6.214 -0.426 0 0 0 0 0 0 0 +12.784 -6.195 -0.428 0 0 0 0 0 0 0 +12.837 -6.172 -0.43 0 0 0 0 0 0 0 +12.905 -6.155 -0.432 0 0 0 0 0 0 0 +12.963 -6.132 -0.434 0 0 0 0 0 0 0 +13.023 -6.111 -0.436 0 0 0 0 0 0 0 +13.088 -6.091 -0.438 0 0 0 0 0 0 0 +13.141 -6.091 -0.441 0 0 0 0 0 0 0 +13.194 -6.065 -0.442 0 0 0 0 0 0 0 +13.266 -6.048 -0.445 0 0 0 0 0 0 0 +13.329 -6.026 -0.447 0 0 0 0 0 0 0 +13.391 -6.004 -0.449 0 0 0 0 0 0 0 +13.456 -5.982 -0.451 0 0 0 0 0 0 0 +13.518 -5.959 -0.453 0 0 0 0 0 0 0 +13.573 -5.958 -0.456 0 0 0 0 0 0 0 +13.638 -5.936 -0.458 0 0 0 0 0 0 0 +13.704 -5.913 -0.46 0 0 0 0 0 0 0 +13.776 -5.893 -0.463 0 0 0 0 0 0 0 +13.838 -5.869 -0.465 0 0 0 0 0 0 0 +13.919 -5.852 -0.468 0 0 0 0 0 0 0 +13.93 -5.805 -0.468 0 0 0 0 0 0 0 +13.945 -5.785 -0.468 0 0 0 0 0 0 0 +14.064 -5.783 -0.473 0 0 0 0 0 0 0 +14.238 -5.803 -0.48 0 0 0 0 0 0 0 +14.287 -5.771 -0.482 0 0 0 0 0 0 0 +14.339 -5.739 -0.483 0 0 0 0 0 0 0 +14.386 -5.706 -0.485 0 0 0 0 0 0 0 +14.438 -5.674 -0.486 0 0 0 0 0 0 0 +14.475 -5.662 -0.488 0 0 0 0 0 0 0 +14.517 -5.626 -0.489 0 0 0 0 0 0 0 +14.573 -5.596 -0.491 0 0 0 0 0 0 0 +14.628 -5.564 -0.493 0 0 0 0 0 0 0 +14.666 -5.526 -0.493 0 0 0 0 0 0 0 +14.721 -5.494 -0.495 0 0 0 0 0 0 0 +14.772 -5.46 -0.497 0 0 0 0 0 0 0 +14.81 -5.448 -0.498 0 0 0 0 0 0 0 +14.878 -5.42 -0.501 0 0 0 0 0 0 0 +14.917 -5.381 -0.502 0 0 0 0 0 0 0 +14.97 -5.347 -0.503 0 0 0 0 0 0 0 +15.019 -5.312 -0.505 0 0 0 0 0 0 0 +15.054 -5.271 -0.506 0 0 0 0 0 0 0 +15.02 -5.206 -0.503 0 0 0 0 0 0 0 +15.292 -5.274 -0.516 0 0 0 0 0 0 0 +14.83 -5.062 -0.493 0 0 0 0 0 0 0 +15.179 -5.128 -0.509 0 0 0 0 0 0 0 +15.326 -5.125 -0.515 0 0 0 0 0 0 0 +15.386 -5.091 -0.517 0 0 0 0 0 0 0 +15.438 -5.054 -0.519 0 0 0 0 0 0 0 +15.493 -5.019 -0.521 0 0 0 0 0 0 0 +15.557 -4.986 -0.523 0 0 0 0 0 0 0 +15.593 -4.97 -0.524 0 0 0 0 0 0 0 +15.643 -4.932 -0.526 0 0 0 0 0 0 0 +15.698 -4.896 -0.528 0 0 0 0 0 0 0 +15.757 -4.86 -0.53 0 0 0 0 0 0 0 +15.826 -4.827 -0.532 0 0 0 0 0 0 0 +15.759 -4.752 -0.528 0 0 0 0 0 0 0 +15.684 -4.675 -0.524 0 0 0 0 0 0 0 +15.632 -4.633 -0.522 0 0 0 0 0 0 0 +15.608 -4.573 -0.52 0 0 0 0 0 0 0 +15.57 -4.509 -0.517 0 0 0 0 0 0 0 +15.556 -4.451 -0.516 0 0 0 0 0 0 0 +15.598 -4.411 -0.517 0 0 0 0 0 0 0 +15.66 -4.375 -0.52 0 0 0 0 0 0 0 +15.704 -4.361 -0.521 0 0 0 0 0 0 0 +15.767 -4.325 -0.524 0 0 0 0 0 0 0 +15.818 -4.286 -0.525 0 0 0 0 0 0 0 +15.885 -4.25 -0.528 0 0 0 0 0 0 0 +15.929 -4.209 -0.529 0 0 0 0 0 0 0 +15.991 -4.171 -0.531 0 0 0 0 0 0 0 +16.044 -4.132 -0.533 0 0 0 0 0 0 0 +16.098 -4.092 -0.535 0 0 0 0 0 0 0 +16.174 -4.084 -0.538 0 0 0 0 0 0 0 +16.216 -4.041 -0.54 0 0 0 0 0 0 0 +16.287 -4.004 -0.542 0 0 0 0 0 0 0 +16.334 -3.961 -0.544 0 0 0 0 0 0 0 +16.405 -3.924 -0.547 0 0 0 0 0 0 0 +16.458 -3.882 -0.548 0 0 0 0 0 0 0 +16.524 -3.843 -0.551 0 0 0 0 0 0 0 +16.581 -3.829 -0.553 0 0 0 0 0 0 0 +16.636 -3.787 -0.555 0 0 0 0 0 0 0 +16.698 -3.746 -0.558 0 0 0 0 0 0 0 +16.761 -3.705 -0.56 0 0 0 0 0 0 0 +16.819 -3.662 -0.562 0 0 0 0 0 0 0 +16.893 -3.623 -0.565 0 0 0 0 0 0 0 +16.965 -3.583 -0.568 0 0 0 0 0 0 0 +16.994 -3.561 -0.569 0 0 0 0 0 0 0 +17.069 -3.521 -0.572 0 0 0 0 0 0 0 +17.12 -3.475 -0.573 0 0 0 0 0 0 0 +17.209 -3.437 -0.577 0 0 0 0 0 0 0 +17.259 -3.391 -0.579 0 0 0 0 0 0 0 +17.336 -3.35 -0.582 0 0 0 0 0 0 0 +17.368 -3.299 -0.583 0 0 0 0 0 0 0 +13.575 -2.551 -0.411 0 0 0 0 0 0 0 +7.529 -1.379 -0.137 0 0 0 0 0 0 0 +7.538 -1.356 -0.137 0 0 0 0 0 0 0 +7.561 -1.336 -0.138 0 0 0 0 0 0 0 +7.581 -1.315 -0.139 0 0 0 0 0 0 0 +7.578 -1.289 -0.138 0 0 0 0 0 0 0 +7.601 -1.269 -0.139 0 0 0 0 0 0 0 +7.587 -1.254 -0.138 0 0 0 0 0 0 0 +7.617 -1.235 -0.14 0 0 0 0 0 0 0 +7.611 -1.209 -0.139 0 0 0 0 0 0 0 +13.65 -2.102 -0.411 0 0 0 0 0 0 0 +13.7 -2.065 -0.413 0 0 0 0 0 0 0 +13.73 -2.026 -0.414 0 0 0 0 0 0 0 +13.798 -2.014 -0.417 0 0 0 0 0 0 0 +13.876 -1.981 -0.42 0 0 0 0 0 0 0 +19.138 -2.681 -0.656 0 0 0 0 0 0 0 +19.21 -2.629 -0.659 0 0 0 0 0 0 0 +19.279 -2.577 -0.662 0 0 0 0 0 0 0 +19.361 -2.526 -0.665 0 0 0 0 0 0 0 +19.283 -2.455 -0.661 0 0 0 0 0 0 0 +19.285 -2.424 -0.661 0 0 0 0 0 0 0 +19.41 -2.378 -0.666 0 0 0 0 0 0 0 +19.453 -2.321 -0.668 0 0 0 0 0 0 0 +19.517 -2.267 -0.67 0 0 0 0 0 0 0 +19.554 -2.209 -0.672 0 0 0 0 0 0 0 +19.619 -2.154 -0.674 0 0 0 0 0 0 0 +19.651 -2.095 -0.675 0 0 0 0 0 0 0 +19.704 -2.069 -0.678 0 0 0 0 0 0 0 +19.746 -2.011 -0.679 0 0 0 0 0 0 0 +19.802 -1.954 -0.681 0 0 0 0 0 0 0 +19.858 -1.897 -0.684 0 0 0 0 0 0 0 +19.9 -1.838 -0.685 0 0 0 0 0 0 0 +19.959 -1.78 -0.688 0 0 0 0 0 0 0 +20.002 -1.721 -0.689 0 0 0 0 0 0 0 +20.057 -1.694 -0.692 0 0 0 0 0 0 0 +20.108 -1.634 -0.694 0 0 0 0 0 0 0 +20.167 -1.576 -0.696 0 0 0 0 0 0 0 +20.223 -1.516 -0.698 0 0 0 0 0 0 0 +20.272 -1.456 -0.7 0 0 0 0 0 0 0 +20.322 -1.395 -0.702 0 0 0 0 0 0 0 +20.368 -1.334 -0.704 0 0 0 0 0 0 0 +20.412 -1.305 -0.706 0 0 0 0 0 0 0 +20.472 -1.244 -0.709 0 0 0 0 0 0 0 +20.534 -1.183 -0.711 0 0 0 0 0 0 0 +20.587 -1.122 -0.713 0 0 0 0 0 0 0 +20.632 -1.059 -0.715 0 0 0 0 0 0 0 +20.686 -0.997 -0.718 0 0 0 0 0 0 0 +20.735 -0.934 -0.72 0 0 0 0 0 0 0 +20.798 -0.904 -0.722 0 0 0 0 0 0 0 +20.86 -0.841 -0.725 0 0 0 0 0 0 0 +20.917 -0.778 -0.727 0 0 0 0 0 0 0 +20.967 -0.714 -0.73 0 0 0 0 0 0 0 +21.025 -0.65 -0.732 0 0 0 0 0 0 0 +21.085 -0.585 -0.735 0 0 0 0 0 0 0 +21.147 -0.521 -0.737 0 0 0 0 0 0 0 +21.199 -0.489 -0.74 0 0 0 0 0 0 0 +21.257 -0.423 -0.742 0 0 0 0 0 0 0 +21.314 -0.358 -0.745 0 0 0 0 0 0 0 +21.373 -0.291 -0.747 0 0 0 0 0 0 0 +21.44 -0.225 -0.75 0 0 0 0 0 0 0 +21.496 -0.158 -0.753 0 0 0 0 0 0 0 +21.557 -0.091 -0.755 0 0 0 0 0 0 0 +21.623 -0.057 -0.758 0 0 0 0 0 0 0 +23.489 0.026 -0.976 0 0 0 0 0 0 0 +35.818 0.165 -1.595 0 0 0 0 0 0 0 +35.777 0.277 -1.593 0 0 0 0 0 0 0 +35.738 0.389 -1.591 0 0 0 0 0 0 0 +35.723 0.501 -1.59 0 0 0 0 0 0 0 +35.687 0.613 -1.589 0 0 0 0 0 0 0 +35.637 0.724 -1.586 0 0 0 0 0 0 0 +35.622 0.78 -1.585 0 0 0 0 0 0 0 +35.573 0.89 -1.583 0 0 0 0 0 0 0 +35.534 1.001 -1.581 0 0 0 0 0 0 0 +35.519 1.112 -1.581 0 0 0 0 0 0 0 +35.473 1.222 -1.579 0 0 0 0 0 0 0 +35.445 1.333 -1.577 0 0 0 0 0 0 0 +35.397 1.442 -1.575 0 0 0 0 0 0 0 +33.443 1.414 -1.477 0 0 0 0 0 0 0 +33.319 1.514 -1.471 0 0 0 0 0 0 0 +33.14 1.61 -1.462 0 0 0 0 0 0 0 +33.143 1.714 -1.463 0 0 0 0 0 0 0 +35.084 1.927 -1.561 0 0 0 0 0 0 0 +35.159 2.042 -1.565 0 0 0 0 0 0 0 +25.529 1.556 -1.081 0 0 0 0 0 0 0 +35.072 2.258 -1.561 0 0 0 0 0 0 0 +35.065 2.313 -1.561 0 0 0 0 0 0 0 +35.009 2.419 -1.558 0 0 0 0 0 0 0 +34.98 2.528 -1.557 0 0 0 0 0 0 0 +34.932 2.635 -1.555 0 0 0 0 0 0 0 +34.901 2.743 -1.554 0 0 0 0 0 0 0 +34.903 2.853 -1.555 0 0 0 0 0 0 0 +34.215 2.905 -1.521 0 0 0 0 0 0 0 +18.743 1.668 -0.741 0 0 0 0 0 0 0 +18.676 1.721 -0.738 0 0 0 0 0 0 0 +18.669 1.78 -0.738 0 0 0 0 0 0 0 +18.594 1.832 -0.735 0 0 0 0 0 0 0 +15.522 1.574 -0.58 0 0 0 0 0 0 0 +15.521 1.623 -0.58 0 0 0 0 0 0 0 +33.521 3.696 -1.49 0 0 0 0 0 0 0 +33.657 3.818 -1.497 0 0 0 0 0 0 0 +33.547 3.912 -1.492 0 0 0 0 0 0 0 +34.506 4.135 -1.541 0 0 0 0 0 0 0 +34.519 4.246 -1.543 0 0 0 0 0 0 0 +25.021 3.19 -1.063 0 0 0 0 0 0 0 +16.29 2.172 -0.622 0 0 0 0 0 0 0 +30.254 4.25 -1.33 0 0 0 0 0 0 0 +30.499 4.383 -1.344 0 0 0 0 0 0 0 +27.934 4.101 -1.214 0 0 0 0 0 0 0 +20.9 3.096 -0.857 0 0 0 0 0 0 0 +20.768 3.143 -0.851 0 0 0 0 0 0 0 +34.74 5.386 -1.562 0 0 0 0 0 0 0 +34.76 5.501 -1.563 0 0 0 0 0 0 0 +34.812 5.622 -1.567 0 0 0 0 0 0 0 +34.892 5.747 -1.572 0 0 0 0 0 0 0 +24.718 4.184 -1.055 0 0 0 0 0 0 0 +34.941 6.038 -1.577 0 0 0 0 0 0 0 +34.975 6.157 -1.58 0 0 0 0 0 0 0 +35.032 6.28 -1.583 0 0 0 0 0 0 0 +35.047 6.397 -1.585 0 0 0 0 0 0 0 +35.094 6.519 -1.589 0 0 0 0 0 0 0 +35.112 6.637 -1.591 0 0 0 0 0 0 0 +18.87 3.708 -0.762 0 0 0 0 0 0 0 +18.831 3.762 -0.761 0 0 0 0 0 0 0 +35.222 7.175 -1.601 0 0 0 0 0 0 0 +35.268 7.3 -1.605 0 0 0 0 0 0 0 +23.376 4.906 -0.996 0 0 0 0 0 0 0 +23.389 4.947 -0.997 0 0 0 0 0 0 0 +35.766 7.697 -1.633 0 0 0 0 0 0 0 +35.681 7.796 -1.63 0 0 0 0 0 0 0 +18.846 4.167 -0.766 0 0 0 0 0 0 0 +18.83 4.226 -0.766 0 0 0 0 0 0 0 +35.279 8.057 -1.613 0 0 0 0 0 0 0 +35.151 8.144 -1.608 0 0 0 0 0 0 0 +35.033 8.174 -1.603 0 0 0 0 0 0 0 +21.676 5.191 -0.916 0 0 0 0 0 0 0 +21.83 5.301 -0.925 0 0 0 0 0 0 0 +20.243 4.981 -0.843 0 0 0 0 0 0 0 +34.437 8.608 -1.579 0 0 0 0 0 0 0 +34.297 8.687 -1.573 0 0 0 0 0 0 0 +34.201 8.72 -1.569 0 0 0 0 0 0 0 +34.084 8.804 -1.564 0 0 0 0 0 0 0 +33.954 8.884 -1.559 0 0 0 0 0 0 0 +33.825 8.964 -1.553 0 0 0 0 0 0 0 +33.708 9.047 -1.549 0 0 0 0 0 0 0 +33.599 9.13 -1.545 0 0 0 0 0 0 0 +16.129 4.451 -0.637 0 0 0 0 0 0 0 +16.067 4.488 -0.634 0 0 0 0 0 0 0 +16.043 4.536 -0.634 0 0 0 0 0 0 0 +16.023 4.584 -0.633 0 0 0 0 0 0 0 +16.007 4.634 -0.633 0 0 0 0 0 0 0 +15.975 4.679 -0.632 0 0 0 0 0 0 0 +15.947 4.725 -0.632 0 0 0 0 0 0 0 +15.93 4.748 -0.631 0 0 0 0 0 0 0 +15.919 4.799 -0.631 0 0 0 0 0 0 0 +15.875 4.84 -0.63 0 0 0 0 0 0 0 +15.861 4.89 -0.63 0 0 0 0 0 0 0 +15.838 4.938 -0.63 0 0 0 0 0 0 0 +15.811 4.984 -0.629 0 0 0 0 0 0 0 +15.786 5.031 -0.629 0 0 0 0 0 0 0 +15.766 5.079 -0.628 0 0 0 0 0 0 0 +15.749 5.101 -0.628 0 0 0 0 0 0 0 +15.723 5.147 -0.627 0 0 0 0 0 0 0 +15.711 5.198 -0.628 0 0 0 0 0 0 0 +15.687 5.244 -0.627 0 0 0 0 0 0 0 +15.663 5.291 -0.627 0 0 0 0 0 0 0 +15.65 5.342 -0.627 0 0 0 0 0 0 0 +15.632 5.363 -0.626 0 0 0 0 0 0 0 +15.609 5.41 -0.626 0 0 0 0 0 0 0 +15.594 5.46 -0.626 0 0 0 0 0 0 0 +15.573 5.507 -0.626 0 0 0 0 0 0 0 +15.556 5.556 -0.626 0 0 0 0 0 0 0 +15.531 5.602 -0.626 0 0 0 0 0 0 0 +15.511 5.65 -0.625 0 0 0 0 0 0 0 +15.506 5.676 -0.626 0 0 0 0 0 0 0 +15.505 5.731 -0.627 0 0 0 0 0 0 0 +15.464 5.771 -0.625 0 0 0 0 0 0 0 +15.446 5.82 -0.625 0 0 0 0 0 0 0 +15.433 5.87 -0.626 0 0 0 0 0 0 0 +15.391 5.91 -0.624 0 0 0 0 0 0 0 +15.648 6.065 -0.639 0 0 0 0 0 0 0 +15.672 6.103 -0.641 0 0 0 0 0 0 0 +16.141 6.345 -0.667 0 0 0 0 0 0 0 +16.713 6.632 -0.699 0 0 0 0 0 0 0 +17.598 7.048 -0.748 0 0 0 0 0 0 0 +32.146 13.016 -1.538 0 0 0 0 0 0 0 +32.164 13.141 -1.541 0 0 0 0 0 0 0 +32.16 13.257 -1.543 0 0 0 0 0 0 0 +32.122 13.36 -1.543 0 0 0 0 0 0 0 +32.152 13.432 -1.546 0 0 0 0 0 0 0 +32.162 13.554 -1.549 0 0 0 0 0 0 0 +32.229 13.702 -1.555 0 0 0 0 0 0 0 +32.224 13.82 -1.557 0 0 0 0 0 0 0 +32.197 13.928 -1.558 0 0 0 0 0 0 0 +32.276 14.083 -1.565 0 0 0 0 0 0 0 +32.341 14.233 -1.571 0 0 0 0 0 0 0 +32.412 14.325 -1.576 0 0 0 0 0 0 0 +32.456 14.467 -1.581 0 0 0 0 0 0 0 +32.443 14.583 -1.582 0 0 0 0 0 0 0 +32.41 14.691 -1.583 0 0 0 0 0 0 0 +32.335 14.779 -1.582 0 0 0 0 0 0 0 +32.266 14.871 -1.58 0 0 0 0 0 0 0 +32.301 14.948 -1.584 0 0 0 0 0 0 0 +32.296 15.069 -1.586 0 0 0 0 0 0 0 +32.272 15.182 -1.587 0 0 0 0 0 0 0 +32.272 15.306 -1.59 0 0 0 0 0 0 0 +28.371 13.562 -1.375 0 0 0 0 0 0 0 +32.249 15.544 -1.594 0 0 0 0 0 0 0 +32.296 15.692 -1.599 0 0 0 0 0 0 0 +32.314 15.763 -1.602 0 0 0 0 0 0 0 +32.352 15.908 -1.607 0 0 0 0 0 0 0 +32.37 16.044 -1.61 0 0 0 0 0 0 0 +29.133 14.55 -1.431 0 0 0 0 0 0 0 +29.105 14.651 -1.433 0 0 0 0 0 0 0 +29.042 14.734 -1.432 0 0 0 0 0 0 0 +32.329 16.533 -1.62 0 0 0 0 0 0 0 +32.353 16.609 -1.622 0 0 0 0 0 0 0 +32.334 16.728 -1.624 0 0 0 0 0 0 0 +32.351 16.866 -1.628 0 0 0 0 0 0 0 +32.31 16.974 -1.629 0 0 0 0 0 0 0 +32.301 17.099 -1.631 0 0 0 0 0 0 0 +32.115 17.129 -1.624 0 0 0 0 0 0 0 +27.75 14.909 -1.378 0 0 0 0 0 0 0 +32.232 17.388 -1.635 0 0 0 0 0 0 0 +32.158 17.478 -1.634 0 0 0 0 0 0 0 +32.071 17.562 -1.632 0 0 0 0 0 0 0 +31.983 17.644 -1.63 0 0 0 0 0 0 0 +31.878 17.718 -1.628 0 0 0 0 0 0 0 +31.788 17.798 -1.626 0 0 0 0 0 0 0 +31.653 17.854 -1.621 0 0 0 0 0 0 0 +31.578 17.877 -1.618 0 0 0 0 0 0 0 +31.453 17.936 -1.614 0 0 0 0 0 0 0 +31.391 18.032 -1.614 0 0 0 0 0 0 0 +31.279 18.099 -1.611 0 0 0 0 0 0 0 +31.211 18.191 -1.61 0 0 0 0 0 0 0 +31.151 18.287 -1.61 0 0 0 0 0 0 0 +31.15 18.418 -1.613 0 0 0 0 0 0 0 +31.155 18.554 -1.617 0 0 0 0 0 0 0 +27.506 16.436 -1.405 0 0 0 0 0 0 0 +30.972 18.642 -1.611 0 0 0 0 0 0 0 +30.72 18.622 -1.6 0 0 0 0 0 0 0 +30.471 18.602 -1.589 0 0 0 0 0 0 0 +30.364 18.669 -1.586 0 0 0 0 0 0 0 +30.18 18.686 -1.579 0 0 0 0 0 0 0 +29.809 18.586 -1.56 0 0 0 0 0 0 0 +29.682 18.571 -1.554 0 0 0 0 0 0 0 +29.595 18.646 -1.553 0 0 0 0 0 0 0 +29.474 18.699 -1.549 0 0 0 0 0 0 0 +29.364 18.76 -1.546 0 0 0 0 0 0 0 +29.317 18.859 -1.547 0 0 0 0 0 0 0 +29.286 18.97 -1.548 0 0 0 0 0 0 0 +13.308 8.692 -0.595 0 0 0 0 0 0 0 +29.283 19.296 -1.557 0 0 0 0 0 0 0 +29.302 19.441 -1.562 0 0 0 0 0 0 0 +29.325 19.59 -1.567 0 0 0 0 0 0 0 +29.302 19.707 -1.569 0 0 0 0 0 0 0 +29.364 19.883 -1.577 0 0 0 0 0 0 0 +29.379 19.961 -1.58 0 0 0 0 0 0 0 +29.706 20.321 -1.604 0 0 0 0 0 0 0 +29.884 20.581 -1.618 0 0 0 0 0 0 0 +30.006 21.085 -1.638 0 0 0 0 0 0 0 +29.835 21.105 -1.631 0 0 0 0 0 0 0 +30.033 21.316 -1.646 0 0 0 0 0 0 0 +29.792 21.427 -1.639 0 0 0 0 0 0 0 +29.763 21.549 -1.641 0 0 0 0 0 0 0 +29.806 21.723 -1.648 0 0 0 0 0 0 0 +29.936 21.962 -1.661 0 0 0 0 0 0 0 +29.781 22.138 -1.66 0 0 0 0 0 0 0 +29.63 22.098 -1.652 0 0 0 0 0 0 0 +28.673 21.665 -1.601 0 0 0 0 0 0 0 +29.393 22.355 -1.651 0 0 0 0 0 0 0 +29.356 22.473 -1.653 0 0 0 0 0 0 0 +29.358 22.621 -1.657 0 0 0 0 0 0 0 +17.302 13.448 -0.897 0 0 0 0 0 0 0 +17.313 13.545 -0.9 0 0 0 0 0 0 0 +17.254 13.586 -0.899 0 0 0 0 0 0 0 +29.104 23.089 -1.662 0 0 0 0 0 0 0 +17.356 13.844 -0.911 0 0 0 0 0 0 0 +17.247 13.846 -0.907 0 0 0 0 0 0 0 +17.186 13.886 -0.906 0 0 0 0 0 0 0 +17.155 13.906 -0.905 0 0 0 0 0 0 0 +6.779 5.545 -0.236 0 0 0 0 0 0 0 +6.684 5.503 -0.231 0 0 0 0 0 0 0 +6.664 5.521 -0.231 0 0 0 0 0 0 0 +6.839 5.704 -0.244 0 0 0 0 0 0 0 +11.768 9.902 -0.569 0 0 0 0 0 0 0 +11.765 9.931 -0.57 0 0 0 0 0 0 0 +11.75 9.982 -0.571 0 0 0 0 0 0 0 +11.785 10.076 -0.575 0 0 0 0 0 0 0 +11.803 10.156 -0.578 0 0 0 0 0 0 0 +11.85 10.261 -0.584 0 0 0 0 0 0 0 +16.572 14.456 -0.901 0 0 0 0 0 0 0 +16.5 14.484 -0.899 0 0 0 0 0 0 0 +16.51 14.539 -0.901 0 0 0 0 0 0 0 +16.469 14.595 -0.901 0 0 0 0 0 0 0 +19.433 17.337 -1.104 0 0 0 0 0 0 0 +19.532 17.537 -1.115 0 0 0 0 0 0 0 +19.169 17.319 -1.094 0 0 0 0 0 0 0 +17.49 15.9 -0.983 0 0 0 0 0 0 0 +17.336 15.859 -0.976 0 0 0 0 0 0 0 +17.346 15.919 -0.979 0 0 0 0 0 0 0 +17.412 16.08 -0.987 0 0 0 0 0 0 0 +17.331 16.106 -0.984 0 0 0 0 0 0 0 +16.287 15.23 -0.916 0 0 0 0 0 0 0 +16.192 15.236 -0.913 0 0 0 0 0 0 0 +16.116 15.261 -0.911 0 0 0 0 0 0 0 +16.051 15.295 -0.91 0 0 0 0 0 0 0 +16.03 15.323 -0.91 0 0 0 0 0 0 0 +15.973 15.365 -0.909 0 0 0 0 0 0 0 +15.923 15.413 -0.909 0 0 0 0 0 0 0 +15.902 15.49 -0.911 0 0 0 0 0 0 0 +15.904 15.59 -0.915 0 0 0 0 0 0 0 +17.33 17.098 -1.019 0 0 0 0 0 0 0 +18.781 18.65 -1.125 0 0 0 0 0 0 0 +18.311 18.239 -1.094 0 0 0 0 0 0 0 +18.775 18.82 -1.131 0 0 0 0 0 0 0 +14.334 14.45 -0.819 0 0 0 0 0 0 0 +14.298 14.505 -0.819 0 0 0 0 0 0 0 +16.966 17.328 -1.014 0 0 0 0 0 0 0 +16.907 17.377 -1.014 0 0 0 0 0 0 0 +16.821 17.396 -1.012 0 0 0 0 0 0 0 +17.481 18.138 -1.061 0 0 0 0 0 0 0 +17.384 18.151 -1.058 0 0 0 0 0 0 0 +16.038 16.849 -0.965 0 0 0 0 0 0 0 +16.176 17.101 -0.978 0 0 0 0 0 0 0 +16.089 17.117 -0.976 0 0 0 0 0 0 0 +16.025 17.156 -0.975 0 0 0 0 0 0 0 +15.992 17.229 -0.977 0 0 0 0 0 0 0 +15.949 17.237 -0.976 0 0 0 0 0 0 0 +15.858 17.247 -0.973 0 0 0 0 0 0 0 +15.838 17.334 -0.975 0 0 0 0 0 0 0 +15.845 17.451 -0.98 0 0 0 0 0 0 0 +15.843 17.56 -0.984 0 0 0 0 0 0 0 +15.178 16.928 -0.938 0 0 0 0 0 0 0 +15.213 17.074 -0.945 0 0 0 0 0 0 0 +16.567 18.717 -1.052 0 0 0 0 0 0 0 +16.609 18.824 -1.057 0 0 0 0 0 0 0 +16.576 18.906 -1.059 0 0 0 0 0 0 0 +14.909 17.108 -0.936 0 0 0 0 0 0 0 +14.861 17.162 -0.936 0 0 0 0 0 0 0 +16.305 18.953 -1.052 0 0 0 0 0 0 0 +16.32 19.093 -1.058 0 0 0 0 0 0 0 +16.082 18.994 -1.046 0 0 0 0 0 0 0 +16.259 19.326 -1.065 0 0 0 0 0 0 0 +16.184 19.36 -1.063 0 0 0 0 0 0 0 +15.232 18.336 -0.993 0 0 0 0 0 0 0 +15.395 18.652 -1.011 0 0 0 0 0 0 0 +15.478 18.873 -1.022 0 0 0 0 0 0 0 +14.888 18.21 -0.978 0 0 0 0 0 0 0 +14.916 18.362 -0.984 0 0 0 0 0 0 0 +14.634 18.131 -0.966 0 0 0 0 0 0 0 +14.717 18.351 -0.978 0 0 0 0 0 0 0 +14.693 18.44 -0.98 0 0 0 0 0 0 0 +14.752 18.635 -0.99 0 0 0 0 0 0 0 +14.67 18.651 -0.988 0 0 0 0 0 0 0 +14.791 18.866 -1 0 0 0 0 0 0 0 +14.757 18.946 -1.002 0 0 0 0 0 0 0 +14.406 18.614 -0.978 0 0 0 0 0 0 0 +14.532 18.9 -0.994 0 0 0 0 0 0 0 +14.7 19.244 -1.012 0 0 0 0 0 0 0 +14.655 19.437 -1.019 0 0 0 0 0 0 0 +12.973 17.315 -0.883 0 0 0 0 0 0 0 +12.929 17.313 -0.881 0 0 0 0 0 0 0 +12.873 17.35 -0.881 0 0 0 0 0 0 0 +12.81 17.379 -0.881 0 0 0 0 0 0 0 +12.754 17.418 -0.88 0 0 0 0 0 0 0 +12.704 17.464 -0.881 0 0 0 0 0 0 0 +12.649 17.504 -0.881 0 0 0 0 0 0 0 +12.58 17.524 -0.88 0 0 0 0 0 0 0 +12.443 17.507 -0.875 0 0 0 0 0 0 0 +12.44 17.619 -0.879 0 0 0 0 0 0 0 +12.384 17.658 -0.879 0 0 0 0 0 0 0 +12.333 17.703 -0.88 0 0 0 0 0 0 0 +12.278 17.742 -0.88 0 0 0 0 0 0 0 +12.212 17.766 -0.879 0 0 0 0 0 0 0 +12.293 18.005 -0.891 0 0 0 0 0 0 0 +12.423 18.258 -0.905 0 0 0 0 0 0 0 +12.465 18.444 -0.914 0 0 0 0 0 0 0 +12.579 18.74 -0.93 0 0 0 0 0 0 0 +16.787 25.197 -1.317 0 0 0 0 0 0 0 +16.812 25.406 -1.326 0 0 0 0 0 0 0 +16.669 25.364 -1.32 0 0 0 0 0 0 0 +16.628 25.388 -1.32 0 0 0 0 0 0 0 +16.358 25.147 -1.303 0 0 0 0 0 0 0 +16.212 25.094 -1.297 0 0 0 0 0 0 0 +16.1 25.093 -1.293 0 0 0 0 0 0 0 +16.06 25.206 -1.297 0 0 0 0 0 0 0 +16.215 25.626 -1.319 0 0 0 0 0 0 0 +16.151 25.704 -1.321 0 0 0 0 0 0 0 +15.805 25.329 -1.296 0 0 0 0 0 0 0 +15.599 25.085 -1.28 0 0 0 0 0 0 0 +15.527 25.146 -1.28 0 0 0 0 0 0 0 +15.461 25.215 -1.282 0 0 0 0 0 0 0 +15.41 25.31 -1.284 0 0 0 0 0 0 0 +15.26 25.242 -1.277 0 0 0 0 0 0 0 +15.262 25.425 -1.285 0 0 0 0 0 0 0 +15.733 26.4 -1.34 0 0 0 0 0 0 0 +15.627 26.316 -1.333 0 0 0 0 0 0 0 +15.486 26.265 -1.327 0 0 0 0 0 0 0 +15.143 25.869 -1.302 0 0 0 0 0 0 0 +15.318 26.359 -1.327 0 0 0 0 0 0 0 +15.485 26.839 -1.352 0 0 0 0 0 0 0 +15.382 26.855 -1.35 0 0 0 0 0 0 0 +14.579 25.639 -1.277 0 0 0 0 0 0 0 +14.534 25.653 -1.277 0 0 0 0 0 0 0 +15.417 27.414 -1.376 0 0 0 0 0 0 0 +15.324 27.452 -1.375 0 0 0 0 0 0 0 +15.206 27.442 -1.372 0 0 0 0 0 0 0 +15.196 27.628 -1.38 0 0 0 0 0 0 0 +12.639 23.142 -1.12 0 0 0 0 0 0 0 +12.533 23.121 -1.117 0 0 0 0 0 0 0 +12.489 23.125 -1.116 0 0 0 0 0 0 0 +12.423 23.177 -1.117 0 0 0 0 0 0 0 +12.388 23.288 -1.121 0 0 0 0 0 0 0 +12.277 23.254 -1.117 0 0 0 0 0 0 0 +12.192 23.271 -1.116 0 0 0 0 0 0 0 +12.113 23.297 -1.115 0 0 0 0 0 0 0 +13.959 27.065 -1.326 0 0 0 0 0 0 0 +15.152 29.497 -1.461 0 0 0 0 0 0 0 +15.078 29.58 -1.463 0 0 0 0 0 0 0 +14.979 29.617 -1.463 0 0 0 0 0 0 0 +14.873 29.637 -1.461 0 0 0 0 0 0 0 +14.768 29.66 -1.46 0 0 0 0 0 0 0 +14.719 29.796 -1.465 0 0 0 0 0 0 0 +14.804 30.208 -1.486 0 0 0 0 0 0 0 +14.987 30.826 -1.517 0 0 0 0 0 0 0 +14.852 30.671 -1.508 0 0 0 0 0 0 0 +13.886 29.139 -1.417 0 0 0 0 0 0 0 +14.554 30.792 -1.507 0 0 0 0 0 0 0 +13.86 29.56 -1.436 0 0 0 0 0 0 0 +13.77 29.611 -1.436 0 0 0 0 0 0 0 +14.352 31.12 -1.517 0 0 0 0 0 0 0 +14.324 31.188 -1.52 0 0 0 0 0 0 0 +14.256 31.3 -1.523 0 0 0 0 0 0 0 +14.191 31.418 -1.527 0 0 0 0 0 0 0 +14.133 31.555 -1.532 0 0 0 0 0 0 0 +14.082 31.707 -1.538 0 0 0 0 0 0 0 +14.023 31.844 -1.544 0 0 0 0 0 0 0 +13.959 31.971 -1.548 0 0 0 0 0 0 0 +13.945 32.075 -1.553 0 0 0 0 0 0 0 +13.887 32.22 -1.558 0 0 0 0 0 0 0 +13.82 32.344 -1.562 0 0 0 0 0 0 0 +13.759 32.483 -1.568 0 0 0 0 0 0 0 +13.686 32.596 -1.571 0 0 0 0 0 0 0 +13.627 32.744 -1.577 0 0 0 0 0 0 0 +13.553 32.855 -1.581 0 0 0 0 0 0 0 +13.516 32.913 -1.583 0 0 0 0 0 0 0 +13.476 33.111 -1.591 0 0 0 0 0 0 0 +13.418 33.268 -1.598 0 0 0 0 0 0 0 +13.432 33.607 -1.614 0 0 0 0 0 0 0 +13.416 33.875 -1.626 0 0 0 0 0 0 0 +13.518 34.449 -1.655 0 0 0 0 0 0 0 +13.542 34.832 -1.673 0 0 0 0 0 0 0 +13.632 35.23 -1.693 0 0 0 0 0 0 0 +13.552 35.353 -1.697 0 0 0 0 0 0 0 +13.578 35.758 -1.717 0 0 0 0 0 0 0 +13.53 35.97 -1.726 0 0 0 0 0 0 0 +13.396 35.958 -1.723 0 0 0 0 0 0 0 +13.334 36.137 -1.73 0 0 0 0 0 0 0 +13.299 36.395 -1.742 0 0 0 0 0 0 0 +13.157 36.359 -1.738 0 0 0 0 0 0 0 +13.189 36.63 -1.751 0 0 0 0 0 0 0 +13.113 36.78 -1.757 0 0 0 0 0 0 0 +12.98 36.772 -1.754 0 0 0 0 0 0 0 +12.876 36.845 -1.756 0 0 0 0 0 0 0 +12.784 36.955 -1.76 0 0 0 0 0 0 0 +12.703 37.097 -1.765 0 0 0 0 0 0 0 +12.582 37.125 -1.765 0 0 0 0 0 0 0 +12.686 37.626 -1.79 0 0 0 0 0 0 0 +12.527 37.543 -1.784 0 0 0 0 0 0 0 +12.567 38.064 -1.809 0 0 0 0 0 0 0 +12.588 38.534 -1.832 0 0 0 0 0 0 0 +12.516 38.724 -1.84 0 0 0 0 0 0 0 +12.03 37.623 -1.78 0 0 0 0 0 0 0 +12.391 39.179 -1.86 0 0 0 0 0 0 0 +12.349 39.261 -1.863 0 0 0 0 0 0 0 +12.275 39.458 -1.871 0 0 0 0 0 0 0 +12.227 39.743 -1.884 0 0 0 0 0 0 0 +12.123 39.851 -1.888 0 0 0 0 0 0 0 +12.018 39.956 -1.891 0 0 0 0 0 0 0 +11.928 40.115 -1.898 0 0 0 0 0 0 0 +11.841 40.284 -1.905 0 0 0 0 0 0 0 +11.81 40.414 -1.91 0 0 0 0 0 0 0 +11.723 40.589 -1.918 0 0 0 0 0 0 0 +11.621 40.716 -1.922 0 0 0 0 0 0 0 +11.517 40.839 -1.927 0 0 0 0 0 0 0 +11.414 40.963 -1.931 0 0 0 0 0 0 0 +11.302 41.06 -1.935 0 0 0 0 0 0 0 +11.202 41.206 -1.94 0 0 0 0 0 0 0 +11.099 41.339 -1.946 0 0 0 0 0 0 0 +11.067 41.478 -1.952 0 0 0 0 0 0 0 +10.955 41.584 -1.956 0 0 0 0 0 0 0 +10.854 41.73 -1.961 0 0 0 0 0 0 0 +8.316 32.368 -1.474 0 0 0 0 0 0 0 +8.203 32.351 -1.472 0 0 0 0 0 0 0 +8.1 32.371 -1.472 0 0 0 0 0 0 0 +7.993 32.375 -1.471 0 0 0 0 0 0 0 +7.935 32.356 -1.469 0 0 0 0 0 0 0 +7.832 32.377 -1.469 0 0 0 0 0 0 0 +7.725 32.378 -1.468 0 0 0 0 0 0 0 +7.622 32.399 -1.468 0 0 0 0 0 0 0 +7.519 32.417 -1.467 0 0 0 0 0 0 0 +7.418 32.444 -1.467 0 0 0 0 0 0 0 +7.318 32.473 -1.468 0 0 0 0 0 0 0 +7.266 32.48 -1.468 0 0 0 0 0 0 0 +7.165 32.509 -1.468 0 0 0 0 0 0 0 +0.711 3.264 0.036 0 0 0 0 0 0 0 +7.037 32.412 -1.462 0 0 0 0 0 0 0 +0.722 3.37 0.03 0 0 0 0 0 0 0 +6.971 32.602 -1.47 0 0 0 0 0 0 0 +0.707 3.349 0.031 0 0 0 0 0 0 0 +2.608 12.808 -0.453 0 0 0 0 0 0 0 +2.569 12.824 -0.453 0 0 0 0 0 0 0 +3.448 17.547 -0.694 0 0 0 0 0 0 0 +3.378 17.477 -0.69 0 0 0 0 0 0 0 +3.259 17.152 -0.673 0 0 0 0 0 0 0 +3.393 18.174 -0.725 0 0 0 0 0 0 0 +3.343 18.224 -0.727 0 0 0 0 0 0 0 +3.451 19.156 -0.774 0 0 0 0 0 0 0 +3.593 20.137 -0.824 0 0 0 0 0 0 0 +3.8 21.699 -0.903 0 0 0 0 0 0 0 +0.566 3.286 0.036 0 0 0 0 0 0 0 +3.784 22.018 -0.918 0 0 0 0 0 0 0 +0.555 3.286 0.036 0 0 0 0 0 0 0 +3.693 21.902 -0.912 0 0 0 0 0 0 0 +0.552 3.329 0.034 0 0 0 0 0 0 0 +0.549 3.348 0.033 0 0 0 0 0 0 0 +0.539 3.354 0.033 0 0 0 0 0 0 0 +0.53 3.367 0.032 0 0 0 0 0 0 0 +0.523 3.389 0.031 0 0 0 0 0 0 0 +0.512 3.39 0.031 0 0 0 0 0 0 0 +0.499 3.376 0.032 0 0 0 0 0 0 0 +0.488 3.374 0.032 0 0 0 0 0 0 0 +0.48 3.351 0.033 0 0 0 0 0 0 0 +0.468 3.346 0.034 0 0 0 0 0 0 0 +0.453 3.31 0.036 0 0 0 0 0 0 0 +0.441 3.302 0.036 0 0 0 0 0 0 0 +0.429 3.287 0.037 0 0 0 0 0 0 0 +0.418 3.284 0.037 0 0 0 0 0 0 0 +0.409 3.294 0.037 0 0 0 0 0 0 0 +0.404 3.3 0.036 0 0 0 0 0 0 0 +0.393 3.298 0.037 0 0 0 0 0 0 0 +0.383 3.303 0.036 0 0 0 0 0 0 0 +0.374 3.31 0.036 0 0 0 0 0 0 0 +0.361 3.293 0.037 0 0 0 0 0 0 0 +0.351 3.296 0.037 0 0 0 0 0 0 0 +0.342 3.307 0.036 0 0 0 0 0 0 0 +0.336 3.302 0.037 0 0 0 0 0 0 0 +0.325 3.293 0.037 0 0 0 0 0 0 0 +0.315 3.3 0.037 0 0 0 0 0 0 0 +0.305 3.301 0.037 0 0 0 0 0 0 0 +0.296 3.322 0.036 0 0 0 0 0 0 0 +0.285 3.315 0.036 0 0 0 0 0 0 0 +0.273 3.302 0.037 0 0 0 0 0 0 0 +0.263 3.306 0.037 0 0 0 0 0 0 0 +0.258 3.307 0.037 0 0 0 0 0 0 0 +0.248 3.312 0.037 0 0 0 0 0 0 0 +0.238 3.314 0.036 0 0 0 0 0 0 0 +0.227 3.313 0.037 0 0 0 0 0 0 0 +0.216 3.308 0.037 0 0 0 0 0 0 0 +0.207 3.324 0.036 0 0 0 0 0 0 0 +0.196 3.307 0.037 0 0 0 0 0 0 0 +0.19 3.307 0.037 0 0 0 0 0 0 0 +0.18 3.318 0.036 0 0 0 0 0 0 0 +0.17 3.315 0.037 0 0 0 0 0 0 0 +0.16 3.323 0.036 0 0 0 0 0 0 0 +0.149 3.316 0.037 0 0 0 0 0 0 0 +0.139 3.324 0.036 0 0 0 0 0 0 0 +0.128 3.318 0.037 0 0 0 0 0 0 0 +0.123 3.309 0.037 0 0 0 0 0 0 0 +0.113 3.317 0.037 0 0 0 0 0 0 0 +0.102 3.325 0.036 0 0 0 0 0 0 0 +0.092 3.332 0.036 0 0 0 0 0 0 0 +0.081 3.33 0.036 0 0 0 0 0 0 0 +0.071 3.328 0.036 0 0 0 0 0 0 0 +0.061 3.326 0.036 0 0 0 0 0 0 0 +0.05 3.33 0.036 0 0 0 0 0 0 0 +0.045 3.339 0.036 0 0 0 0 0 0 0 +0.034 3.331 0.036 0 0 0 0 0 0 0 +0.024 3.331 0.036 0 0 0 0 0 0 0 +0.013 3.345 0.035 0 0 0 0 0 0 0 +-0.181 29.951 -1.3 0 0 0 0 0 0 0 +-0.269 29.315 -1.268 0 0 0 0 0 0 0 +-0.353 28.705 -1.238 0 0 0 0 0 0 0 +-0.389 28.083 -1.207 0 0 0 0 0 0 0 +-0.466 27.496 -1.177 0 0 0 0 0 0 0 +-0.541 26.944 -1.15 0 0 0 0 0 0 0 +-0.612 26.393 -1.122 0 0 0 0 0 0 0 +-0.681 25.883 -1.097 0 0 0 0 0 0 0 +-0.748 25.394 -1.072 0 0 0 0 0 0 0 +-0.812 24.914 -1.048 0 0 0 0 0 0 0 +-0.834 24.432 -1.024 0 0 0 0 0 0 0 +-0.896 24.04 -1.004 0 0 0 0 0 0 0 +-0.952 23.576 -0.981 0 0 0 0 0 0 0 +-1.019 23.413 -0.973 0 0 0 0 0 0 0 +-1.07 22.935 -0.949 0 0 0 0 0 0 0 +-1.114 22.387 -0.922 0 0 0 0 0 0 0 +-1.164 22.007 -0.903 0 0 0 0 0 0 0 +-1.18 21.674 -0.886 0 0 0 0 0 0 0 +-1.226 21.295 -0.868 0 0 0 0 0 0 0 +-1.274 20.986 -0.852 0 0 0 0 0 0 0 +-1.319 20.657 -0.836 0 0 0 0 0 0 0 +-1.402 19.989 -0.803 0 0 0 0 0 0 0 +-1.462 19.948 -0.801 0 0 0 0 0 0 0 +-1.464 19.57 -0.782 0 0 0 0 0 0 0 +-1.493 19.149 -0.761 0 0 0 0 0 0 0 +-1.53 18.863 -0.747 0 0 0 0 0 0 0 +-1.567 18.602 -0.734 0 0 0 0 0 0 0 +-1.605 18.362 -0.722 0 0 0 0 0 0 0 +-1.637 18.082 -0.708 0 0 0 0 0 0 0 +-1.67 17.828 -0.696 0 0 0 0 0 0 0 +-1.678 17.611 -0.685 0 0 0 0 0 0 0 +-1.709 17.369 -0.673 0 0 0 0 0 0 0 +-1.741 17.141 -0.662 0 0 0 0 0 0 0 +-1.771 16.909 -0.65 0 0 0 0 0 0 0 +-1.802 16.705 -0.64 0 0 0 0 0 0 0 +-1.83 16.481 -0.629 0 0 0 0 0 0 0 +-1.859 16.283 -0.619 0 0 0 0 0 0 0 +-1.886 16.07 -0.609 0 0 0 0 0 0 0 +-1.889 15.885 -0.6 0 0 0 0 0 0 0 +-1.914 15.679 -0.59 0 0 0 0 0 0 0 +-1.944 15.516 -0.582 0 0 0 0 0 0 0 +-1.965 15.302 -0.571 0 0 0 0 0 0 0 +-1.991 15.127 -0.563 0 0 0 0 0 0 0 +-2.013 14.935 -0.553 0 0 0 0 0 0 0 +-2.036 14.758 -0.545 0 0 0 0 0 0 0 +-2.126 14.562 -0.536 0 0 0 0 0 0 0 +-2.108 14.137 -0.514 0 0 0 0 0 0 0 +-2.133 14.006 -0.508 0 0 0 0 0 0 0 +-2.151 13.831 -0.499 0 0 0 0 0 0 0 +-2.171 13.68 -0.492 0 0 0 0 0 0 0 +-2.176 13.572 -0.487 0 0 0 0 0 0 0 +-2.282 12.596 -0.439 0 0 0 0 0 0 0 +-2.287 12.402 -0.43 0 0 0 0 0 0 0 +-2.325 12.393 -0.43 0 0 0 0 0 0 0 +-2.375 12.442 -0.433 0 0 0 0 0 0 0 +-2.406 12.188 -0.42 0 0 0 0 0 0 0 +-2.455 11.76 -0.4 0 0 0 0 0 0 0 +-2.579 11.054 -0.367 0 0 0 0 0 0 0 +-2.524 10.671 -0.347 0 0 0 0 0 0 0 +-2.554 10.647 -0.346 0 0 0 0 0 0 0 +-2.814 11.559 -0.394 0 0 0 0 0 0 0 +-2.851 11.556 -0.394 0 0 0 0 0 0 0 +-2.813 11.324 -0.383 0 0 0 0 0 0 0 +-2.947 11.552 -0.395 0 0 0 0 0 0 0 +-2.922 11.309 -0.383 0 0 0 0 0 0 0 +-2.956 11.292 -0.383 0 0 0 0 0 0 0 +-2.993 11.288 -0.383 0 0 0 0 0 0 0 +-2.721 9.839 -0.309 0 0 0 0 0 0 0 +-2.761 9.863 -0.311 0 0 0 0 0 0 0 +-2.794 9.86 -0.311 0 0 0 0 0 0 0 +-2.836 9.775 -0.308 0 0 0 0 0 0 0 +-2.866 9.764 -0.308 0 0 0 0 0 0 0 +-2.881 9.758 -0.308 0 0 0 0 0 0 0 +-2.906 9.73 -0.307 0 0 0 0 0 0 0 +-2.767 9.064 -0.273 0 0 0 0 0 0 0 +-2.792 9.042 -0.272 0 0 0 0 0 0 0 +-2.795 8.953 -0.268 0 0 0 0 0 0 0 +-2.815 8.92 -0.266 0 0 0 0 0 0 0 +-2.818 8.879 -0.264 0 0 0 0 0 0 0 +-2.828 8.817 -0.262 0 0 0 0 0 0 0 +-2.839 8.757 -0.259 0 0 0 0 0 0 0 +-2.813 8.585 -0.25 0 0 0 0 0 0 0 +-2.899 8.661 -0.255 0 0 0 0 0 0 0 +-2.937 8.684 -0.257 0 0 0 0 0 0 0 +-2.956 8.697 -0.258 0 0 0 0 0 0 0 +-2.995 8.721 -0.26 0 0 0 0 0 0 0 +-3.032 8.738 -0.261 0 0 0 0 0 0 0 +-3.061 8.733 -0.261 0 0 0 0 0 0 0 +-3.09 8.729 -0.262 0 0 0 0 0 0 0 +-3.126 8.743 -0.263 0 0 0 0 0 0 0 +-4.103 11.34 -0.402 0 0 0 0 0 0 0 +-3.062 8.44 -0.247 0 0 0 0 0 0 0 +-3.074 8.392 -0.245 0 0 0 0 0 0 0 +-3.076 8.317 -0.242 0 0 0 0 0 0 0 +-3.073 8.231 -0.238 0 0 0 0 0 0 0 +-3.077 8.161 -0.235 0 0 0 0 0 0 0 +-3.095 8.133 -0.234 0 0 0 0 0 0 0 +-4.404 11.435 -0.412 0 0 0 0 0 0 0 +-4.455 11.458 -0.414 0 0 0 0 0 0 0 +-3.521 9.029 -0.283 0 0 0 0 0 0 0 +-3.557 9.038 -0.284 0 0 0 0 0 0 0 +-3.599 9.06 -0.286 0 0 0 0 0 0 0 +-3.628 9.051 -0.286 0 0 0 0 0 0 0 +-3.665 9.062 -0.287 0 0 0 0 0 0 0 +-3.722 9.118 -0.291 0 0 0 0 0 0 0 +-3.643 8.846 -0.277 0 0 0 0 0 0 0 +-3.245 7.854 -0.223 0 0 0 0 0 0 0 +-3.451 8.275 -0.247 0 0 0 0 0 0 0 +-3.457 8.216 -0.244 0 0 0 0 0 0 0 +-3.467 8.169 -0.242 0 0 0 0 0 0 0 +-3.486 8.143 -0.241 0 0 0 0 0 0 0 +-3.494 8.092 -0.239 0 0 0 0 0 0 0 +-3.657 8.393 -0.256 0 0 0 0 0 0 0 +-3.675 8.399 -0.257 0 0 0 0 0 0 0 +-3.324 7.412 -0.205 0 0 0 0 0 0 0 +-3.293 7.283 -0.198 0 0 0 0 0 0 0 +-3.361 7.371 -0.203 0 0 0 0 0 0 0 +-3.61 7.815 -0.229 0 0 0 0 0 0 0 +-3.622 7.776 -0.227 0 0 0 0 0 0 0 +-3.628 7.727 -0.225 0 0 0 0 0 0 0 +-3.63 7.669 -0.223 0 0 0 0 0 0 0 +-3.646 7.641 -0.222 0 0 0 0 0 0 0 +-3.642 7.572 -0.219 0 0 0 0 0 0 0 +-3.668 7.564 -0.219 0 0 0 0 0 0 0 +-3.677 7.524 -0.217 0 0 0 0 0 0 0 +-3.718 7.577 -0.22 0 0 0 0 0 0 0 +-3.74 7.56 -0.22 0 0 0 0 0 0 0 +-3.775 7.572 -0.221 0 0 0 0 0 0 0 +-3.792 7.547 -0.221 0 0 0 0 0 0 0 +-3.832 7.567 -0.223 0 0 0 0 0 0 0 +-3.853 7.55 -0.222 0 0 0 0 0 0 0 +-3.896 7.575 -0.224 0 0 0 0 0 0 0 +-3.9 7.553 -0.223 0 0 0 0 0 0 0 +-3.944 7.579 -0.226 0 0 0 0 0 0 0 +-3.957 7.546 -0.225 0 0 0 0 0 0 0 +-3.998 7.567 -0.226 0 0 0 0 0 0 0 +-4.035 7.579 -0.228 0 0 0 0 0 0 0 +-4.06 7.568 -0.228 0 0 0 0 0 0 0 +-4.079 7.546 -0.227 0 0 0 0 0 0 0 +-4.127 7.577 -0.23 0 0 0 0 0 0 0 +-4.141 7.574 -0.23 0 0 0 0 0 0 0 +-4.161 7.556 -0.23 0 0 0 0 0 0 0 +-4.208 7.583 -0.232 0 0 0 0 0 0 0 +-4.223 7.556 -0.231 0 0 0 0 0 0 0 +-4.272 7.586 -0.234 0 0 0 0 0 0 0 +-4.302 7.583 -0.234 0 0 0 0 0 0 0 +-4.333 7.583 -0.235 0 0 0 0 0 0 0 +-4.361 7.604 -0.237 0 0 0 0 0 0 0 +-4.391 7.601 -0.237 0 0 0 0 0 0 0 +-4.419 7.594 -0.238 0 0 0 0 0 0 0 +-4.456 7.602 -0.239 0 0 0 0 0 0 0 +-4.48 7.588 -0.239 0 0 0 0 0 0 0 +-4.529 7.617 -0.242 0 0 0 0 0 0 0 +-4.549 7.596 -0.241 0 0 0 0 0 0 0 +-4.566 7.597 -0.242 0 0 0 0 0 0 0 +-5.218 8.552 -0.3 0 0 0 0 0 0 0 +-5.216 8.49 -0.297 0 0 0 0 0 0 0 +-5.186 8.382 -0.292 0 0 0 0 0 0 0 +-5.17 8.298 -0.288 0 0 0 0 0 0 0 +-5.181 8.258 -0.286 0 0 0 0 0 0 0 +-5.142 8.167 -0.281 0 0 0 0 0 0 0 +-5.207 8.213 -0.285 0 0 0 0 0 0 0 +-16.933 26.419 -1.372 0 0 0 0 0 0 0 +-16.934 26.238 -1.364 0 0 0 0 0 0 0 +-17.013 26.179 -1.364 0 0 0 0 0 0 0 +-17.022 25.837 -1.35 0 0 0 0 0 0 0 +-5.055 7.628 -0.256 0 0 0 0 0 0 0 +-5.029 7.487 -0.25 0 0 0 0 0 0 0 +-15.619 22.998 -1.192 0 0 0 0 0 0 0 +-15.609 22.828 -1.185 0 0 0 0 0 0 0 +-15.563 22.61 -1.175 0 0 0 0 0 0 0 +-16.981 24.5 -1.293 0 0 0 0 0 0 0 +-17.027 24.485 -1.294 0 0 0 0 0 0 0 +-17.171 24.526 -1.3 0 0 0 0 0 0 0 +-17.082 24.237 -1.285 0 0 0 0 0 0 0 +-17.097 24.097 -1.28 0 0 0 0 0 0 0 +-17.309 24.235 -1.292 0 0 0 0 0 0 0 +-17.381 24.174 -1.291 0 0 0 0 0 0 0 +-17.588 24.3 -1.303 0 0 0 0 0 0 0 +-16.568 22.819 -1.212 0 0 0 0 0 0 0 +-16.513 22.593 -1.202 0 0 0 0 0 0 0 +-16.536 22.476 -1.198 0 0 0 0 0 0 0 +-16.753 22.622 -1.21 0 0 0 0 0 0 0 +-16.783 22.514 -1.206 0 0 0 0 0 0 0 +-16.706 22.265 -1.194 0 0 0 0 0 0 0 +-16.58 21.953 -1.178 0 0 0 0 0 0 0 +-16.667 21.997 -1.182 0 0 0 0 0 0 0 +-16.892 22.148 -1.195 0 0 0 0 0 0 0 +-16.895 22.009 -1.19 0 0 0 0 0 0 0 +-17.148 22.193 -1.205 0 0 0 0 0 0 0 +-17.365 22.328 -1.217 0 0 0 0 0 0 0 +-17.367 22.187 -1.211 0 0 0 0 0 0 0 +-17.553 22.279 -1.221 0 0 0 0 0 0 0 +-16.477 20.849 -1.131 0 0 0 0 0 0 0 +-16.459 20.692 -1.124 0 0 0 0 0 0 0 +-16.553 20.676 -1.126 0 0 0 0 0 0 0 +-16.905 20.98 -1.149 0 0 0 0 0 0 0 +-16.659 20.544 -1.125 0 0 0 0 0 0 0 +-16.69 20.45 -1.122 0 0 0 0 0 0 0 +-16.803 20.457 -1.126 0 0 0 0 0 0 0 +-16.756 20.269 -1.117 0 0 0 0 0 0 0 +-16.342 19.707 -1.082 0 0 0 0 0 0 0 +-16.657 19.958 -1.102 0 0 0 0 0 0 0 +-16.433 19.565 -1.079 0 0 0 0 0 0 0 +-11.782 13.95 -0.713 0 0 0 0 0 0 0 +-11.796 13.878 -0.711 0 0 0 0 0 0 0 +-11.835 13.835 -0.711 0 0 0 0 0 0 0 +-11.882 13.802 -0.711 0 0 0 0 0 0 0 +-11.906 13.787 -0.711 0 0 0 0 0 0 0 +-11.913 13.707 -0.708 0 0 0 0 0 0 0 +-11.999 13.719 -0.712 0 0 0 0 0 0 0 +-12.063 13.705 -0.713 0 0 0 0 0 0 0 +-12.181 13.751 -0.719 0 0 0 0 0 0 0 +-12.269 13.763 -0.722 0 0 0 0 0 0 0 +-15.392 17.148 -0.953 0 0 0 0 0 0 0 +-15.444 17.151 -0.955 0 0 0 0 0 0 0 +-16.462 18.165 -1.027 0 0 0 0 0 0 0 +-16.736 18.35 -1.044 0 0 0 0 0 0 0 +-16.428 17.901 -1.016 0 0 0 0 0 0 0 +-15.563 16.853 -0.948 0 0 0 0 0 0 0 +-16.653 17.918 -1.025 0 0 0 0 0 0 0 +-15.538 16.615 -0.939 0 0 0 0 0 0 0 +-16.92 18.033 -1.038 0 0 0 0 0 0 0 +-16.655 17.64 -1.015 0 0 0 0 0 0 0 +-15.811 16.643 -0.949 0 0 0 0 0 0 0 +-15.732 16.457 -0.94 0 0 0 0 0 0 0 +-15.74 16.362 -0.937 0 0 0 0 0 0 0 +-15.804 16.326 -0.937 0 0 0 0 0 0 0 +-15.924 16.346 -0.942 0 0 0 0 0 0 0 +-15.611 15.976 -0.918 0 0 0 0 0 0 0 +-15.601 15.865 -0.914 0 0 0 0 0 0 0 +-15.588 15.753 -0.909 0 0 0 0 0 0 0 +-15.575 15.641 -0.905 0 0 0 0 0 0 0 +-15.519 15.488 -0.897 0 0 0 0 0 0 0 +-15.687 15.557 -0.906 0 0 0 0 0 0 0 +-16.049 15.816 -0.928 0 0 0 0 0 0 0 +-16.119 15.785 -0.929 0 0 0 0 0 0 0 +-20.368 19.874 -1.225 0 0 0 0 0 0 0 +-20.572 19.947 -1.235 0 0 0 0 0 0 0 +-18.543 17.871 -1.09 0 0 0 0 0 0 0 +-16.011 15.339 -0.91 0 0 0 0 0 0 0 +-18.611 17.712 -1.087 0 0 0 0 0 0 0 +-18.65 17.637 -1.085 0 0 0 0 0 0 0 +-18.877 17.74 -1.097 0 0 0 0 0 0 0 +-20.2 18.922 -1.186 0 0 0 0 0 0 0 +-18.929 17.622 -1.095 0 0 0 0 0 0 0 +-19.048 17.621 -1.099 0 0 0 0 0 0 0 +-18.712 17.202 -1.073 0 0 0 0 0 0 0 +-18.782 17.158 -1.074 0 0 0 0 0 0 0 +-17.833 16.191 -1.006 0 0 0 0 0 0 0 +-17.831 16.087 -1.002 0 0 0 0 0 0 0 +-17.997 16.185 -1.012 0 0 0 0 0 0 0 +-17.973 16.062 -1.007 0 0 0 0 0 0 0 +-18.934 16.812 -1.068 0 0 0 0 0 0 0 +-19.008 16.771 -1.069 0 0 0 0 0 0 0 +-19.161 16.8 -1.076 0 0 0 0 0 0 0 +-19.193 16.721 -1.075 0 0 0 0 0 0 0 +-19.582 16.952 -1.097 0 0 0 0 0 0 0 +-18.498 15.964 -1.023 0 0 0 0 0 0 0 +-18.677 16.017 -1.032 0 0 0 0 0 0 0 +-18.68 15.918 -1.029 0 0 0 0 0 0 0 +-18.713 15.845 -1.028 0 0 0 0 0 0 0 +-18.526 15.587 -1.012 0 0 0 0 0 0 0 +-18.544 15.503 -1.01 0 0 0 0 0 0 0 +-18.731 15.559 -1.019 0 0 0 0 0 0 0 +-18.929 15.624 -1.029 0 0 0 0 0 0 0 +-18.945 15.586 -1.028 0 0 0 0 0 0 0 +-19.02 15.548 -1.03 0 0 0 0 0 0 0 +-19.103 15.516 -1.032 0 0 0 0 0 0 0 +-19.349 15.615 -1.045 0 0 0 0 0 0 0 +-20.232 16.222 -1.099 0 0 0 0 0 0 0 +-20.321 16.188 -1.101 0 0 0 0 0 0 0 +-33.444 26.45 -1.937 0 0 0 0 0 0 0 +-33.503 26.411 -1.938 0 0 0 0 0 0 0 +-20.708 16.232 -1.118 0 0 0 0 0 0 0 +-20.341 15.842 -1.091 0 0 0 0 0 0 0 +-20.366 15.759 -1.089 0 0 0 0 0 0 0 +-20.323 15.624 -1.084 0 0 0 0 0 0 0 +-19.853 15.164 -1.051 0 0 0 0 0 0 0 +-19.712 14.959 -1.039 0 0 0 0 0 0 0 +-19.72 14.916 -1.038 0 0 0 0 0 0 0 +-18.48 13.89 -0.957 0 0 0 0 0 0 0 +-18.525 13.833 -0.957 0 0 0 0 0 0 0 +-19.803 14.688 -1.035 0 0 0 0 0 0 0 +-19.864 14.637 -1.035 0 0 0 0 0 0 0 +-19.95 14.604 -1.038 0 0 0 0 0 0 0 +-20.014 14.554 -1.039 0 0 0 0 0 0 0 +-20.056 14.536 -1.04 0 0 0 0 0 0 0 +-20.226 14.563 -1.048 0 0 0 0 0 0 0 +-20.191 14.441 -1.043 0 0 0 0 0 0 0 +-20.244 14.384 -1.043 0 0 0 0 0 0 0 +-20.394 14.394 -1.05 0 0 0 0 0 0 0 +-20.594 14.438 -1.059 0 0 0 0 0 0 0 +-20.764 14.46 -1.067 0 0 0 0 0 0 0 +-19.723 13.691 -1.002 0 0 0 0 0 0 0 +-20.867 14.386 -1.069 0 0 0 0 0 0 0 +-20.851 14.279 -1.065 0 0 0 0 0 0 0 +-31.45 21.376 -1.706 0 0 0 0 0 0 0 +-19.234 12.997 -0.962 0 0 0 0 0 0 0 +-19.909 13.271 -0.998 0 0 0 0 0 0 0 +-6.751 4.445 -0.203 0 0 0 0 0 0 0 +-6.723 4.396 -0.2 0 0 0 0 0 0 0 +-6.719 4.363 -0.199 0 0 0 0 0 0 0 +-6.934 4.471 -0.211 0 0 0 0 0 0 0 +-6.906 4.423 -0.208 0 0 0 0 0 0 0 +-35.229 22.279 -1.889 0 0 0 0 0 0 0 +-18.764 11.758 -0.908 0 0 0 0 0 0 0 +-19.179 11.85 -0.929 0 0 0 0 0 0 0 +-30.858 18.914 -1.614 0 0 0 0 0 0 0 +-35.445 21.568 -1.88 0 0 0 0 0 0 0 +-31.209 18.86 -1.627 0 0 0 0 0 0 0 +-31.478 18.955 -1.641 0 0 0 0 0 0 0 +-30.764 18.394 -1.596 0 0 0 0 0 0 0 +-30.851 18.315 -1.598 0 0 0 0 0 0 0 +-30.724 18.11 -1.587 0 0 0 0 0 0 0 +-30.715 17.975 -1.583 0 0 0 0 0 0 0 +-30.81 17.9 -1.586 0 0 0 0 0 0 0 +-30.634 17.67 -1.572 0 0 0 0 0 0 0 +-35.69 20.506 -1.863 0 0 0 0 0 0 0 +-32.982 18.678 -1.7 0 0 0 0 0 0 0 +-18.324 10.239 -0.851 0 0 0 0 0 0 0 +-35.82 19.84 -1.852 0 0 0 0 0 0 0 +-12.537 6.835 -0.514 0 0 0 0 0 0 0 +-12.534 6.782 -0.512 0 0 0 0 0 0 0 +-12.666 6.802 -0.519 0 0 0 0 0 0 0 +-13.693 7.296 -0.576 0 0 0 0 0 0 0 +-13.726 7.259 -0.576 0 0 0 0 0 0 0 +-13.792 7.238 -0.579 0 0 0 0 0 0 0 +-13.638 7.13 -0.569 0 0 0 0 0 0 0 +-29.985 15.522 -1.492 0 0 0 0 0 0 0 +-35.756 18.361 -1.815 0 0 0 0 0 0 0 +-35.742 18.213 -1.811 0 0 0 0 0 0 0 +-32.618 16.494 -1.632 0 0 0 0 0 0 0 +-32.557 16.335 -1.625 0 0 0 0 0 0 0 +-32.685 16.271 -1.63 0 0 0 0 0 0 0 +-35.688 17.624 -1.795 0 0 0 0 0 0 0 +-35.637 17.529 -1.79 0 0 0 0 0 0 0 +-32.422 15.824 -1.608 0 0 0 0 0 0 0 +-35.63 17.249 -1.784 0 0 0 0 0 0 0 +-14.648 6.995 -0.612 0 0 0 0 0 0 0 +-14.594 6.913 -0.607 0 0 0 0 0 0 0 +-14.931 7.015 -0.625 0 0 0 0 0 0 0 +-35.434 16.54 -1.76 0 0 0 0 0 0 0 +-35.418 16.397 -1.756 0 0 0 0 0 0 0 +-35.377 16.244 -1.751 0 0 0 0 0 0 0 +-35.346 16.095 -1.746 0 0 0 0 0 0 0 +-35.313 15.946 -1.742 0 0 0 0 0 0 0 +-29.013 12.997 -1.393 0 0 0 0 0 0 0 +-35.246 15.651 -1.733 0 0 0 0 0 0 0 +-35.188 15.559 -1.728 0 0 0 0 0 0 0 +-35.125 15.399 -1.722 0 0 0 0 0 0 0 +-35.087 15.252 -1.717 0 0 0 0 0 0 0 +-35.067 15.112 -1.714 0 0 0 0 0 0 0 +-35.019 14.961 -1.708 0 0 0 0 0 0 0 +-34.976 14.813 -1.704 0 0 0 0 0 0 0 +-34.941 14.669 -1.699 0 0 0 0 0 0 0 +-34.872 14.576 -1.694 0 0 0 0 0 0 0 +-34.844 14.435 -1.69 0 0 0 0 0 0 0 +-34.806 14.292 -1.686 0 0 0 0 0 0 0 +-34.745 14.14 -1.68 0 0 0 0 0 0 0 +-34.702 13.995 -1.675 0 0 0 0 0 0 0 +-34.651 13.848 -1.67 0 0 0 0 0 0 0 +-34.615 13.708 -1.666 0 0 0 0 0 0 0 +-34.549 13.619 -1.661 0 0 0 0 0 0 0 +-34.489 13.471 -1.656 0 0 0 0 0 0 0 +-34.446 13.329 -1.651 0 0 0 0 0 0 0 +-34.414 13.193 -1.647 0 0 0 0 0 0 0 +-34.379 13.056 -1.643 0 0 0 0 0 0 0 +-27.624 10.397 -1.278 0 0 0 0 0 0 0 +-34.266 12.767 -1.632 0 0 0 0 0 0 0 +-29.732 11.028 -1.389 0 0 0 0 0 0 0 +-29.717 10.917 -1.386 0 0 0 0 0 0 0 +-29.695 10.803 -1.383 0 0 0 0 0 0 0 +-29.718 10.706 -1.382 0 0 0 0 0 0 0 +-29.813 10.634 -1.386 0 0 0 0 0 0 0 +-29.965 10.583 -1.392 0 0 0 0 0 0 0 +-33.888 11.845 -1.599 0 0 0 0 0 0 0 +-33.831 11.765 -1.595 0 0 0 0 0 0 0 +-33.762 11.622 -1.589 0 0 0 0 0 0 0 +-33.73 11.493 -1.586 0 0 0 0 0 0 0 +-26.797 9.043 -1.217 0 0 0 0 0 0 0 +-33.619 11.22 -1.576 0 0 0 0 0 0 0 +-33.563 11.085 -1.571 0 0 0 0 0 0 0 +-33.558 10.966 -1.569 0 0 0 0 0 0 0 +-33.558 10.908 -1.568 0 0 0 0 0 0 0 +-33.509 10.776 -1.564 0 0 0 0 0 0 0 +-33.459 10.644 -1.559 0 0 0 0 0 0 0 +-33.414 10.514 -1.555 0 0 0 0 0 0 0 +-33.347 10.378 -1.55 0 0 0 0 0 0 0 +-33.162 10.207 -1.539 0 0 0 0 0 0 0 +-33.085 10.069 -1.533 0 0 0 0 0 0 0 +-33.034 9.997 -1.529 0 0 0 0 0 0 0 +-32.987 9.87 -1.525 0 0 0 0 0 0 0 +-25.812 7.641 -1.148 0 0 0 0 0 0 0 +-32.854 9.606 -1.515 0 0 0 0 0 0 0 +-32.806 9.48 -1.511 0 0 0 0 0 0 0 +-32.753 9.353 -1.507 0 0 0 0 0 0 0 +-32.684 9.223 -1.502 0 0 0 0 0 0 0 +-32.607 9.091 -1.496 0 0 0 0 0 0 0 +-32.536 9.016 -1.492 0 0 0 0 0 0 0 +-32.488 8.893 -1.488 0 0 0 0 0 0 0 +-32.415 8.764 -1.482 0 0 0 0 0 0 0 +-32.354 8.638 -1.478 0 0 0 0 0 0 0 +-24.891 6.568 -1.089 0 0 0 0 0 0 0 +-32.216 8.385 -1.468 0 0 0 0 0 0 0 +-32.227 8.28 -1.467 0 0 0 0 0 0 0 +-32.212 8.222 -1.466 0 0 0 0 0 0 0 +-32.093 8.085 -1.458 0 0 0 0 0 0 0 +-32.046 7.966 -1.454 0 0 0 0 0 0 0 +-31.995 7.847 -1.451 0 0 0 0 0 0 0 +-31.863 7.708 -1.442 0 0 0 0 0 0 0 +-31.741 7.573 -1.435 0 0 0 0 0 0 0 +-31.662 7.45 -1.43 0 0 0 0 0 0 0 +-31.589 7.328 -1.425 0 0 0 0 0 0 0 +-31.502 7.256 -1.42 0 0 0 0 0 0 0 +-31.444 7.139 -1.415 0 0 0 0 0 0 0 +-31.379 7.02 -1.411 0 0 0 0 0 0 0 +-23.848 5.263 -1.023 0 0 0 0 0 0 0 +-31.233 6.782 -1.401 0 0 0 0 0 0 0 +-31.172 6.666 -1.397 0 0 0 0 0 0 0 +-31.109 6.551 -1.393 0 0 0 0 0 0 0 +-31.025 6.482 -1.388 0 0 0 0 0 0 0 +-30.951 6.366 -1.383 0 0 0 0 0 0 0 +-27.216 5.511 -1.191 0 0 0 0 0 0 0 +-30.795 6.132 -1.373 0 0 0 0 0 0 0 +-23.505 4.61 -0.999 0 0 0 0 0 0 0 +-23.48 4.529 -0.997 0 0 0 0 0 0 0 +-23.439 4.444 -0.994 0 0 0 0 0 0 0 +-23.325 4.385 -0.988 0 0 0 0 0 0 0 +-30.584 5.642 -1.358 0 0 0 0 0 0 0 +-22.673 4.042 -0.953 0 0 0 0 0 0 0 +-23.325 4.082 -0.985 0 0 0 0 0 0 0 +-30.213 5.182 -1.336 0 0 0 0 0 0 0 +-30.099 5.066 -1.329 0 0 0 0 0 0 0 +-30.024 5.005 -1.325 0 0 0 0 0 0 0 +-29.951 4.896 -1.32 0 0 0 0 0 0 0 +-29.864 4.785 -1.315 0 0 0 0 0 0 0 +-29.784 4.677 -1.31 0 0 0 0 0 0 0 +-29.71 4.57 -1.306 0 0 0 0 0 0 0 +-29.639 4.463 -1.301 0 0 0 0 0 0 0 +-29.57 4.358 -1.297 0 0 0 0 0 0 0 +-21.661 3.095 -0.895 0 0 0 0 0 0 0 +-29.326 4.087 -1.283 0 0 0 0 0 0 0 +-29.256 3.984 -1.279 0 0 0 0 0 0 0 +-29.177 3.88 -1.274 0 0 0 0 0 0 0 +-29.114 3.779 -1.271 0 0 0 0 0 0 0 +-29.052 3.678 -1.267 0 0 0 0 0 0 0 +-29.03 3.583 -1.265 0 0 0 0 0 0 0 +-28.938 3.525 -1.26 0 0 0 0 0 0 0 +-28.953 3.435 -1.26 0 0 0 0 0 0 0 +-28.942 3.341 -1.259 0 0 0 0 0 0 0 +-29.087 3.265 -1.266 0 0 0 0 0 0 0 +-29.006 3.164 -1.262 0 0 0 0 0 0 0 +-28.931 3.064 -1.257 0 0 0 0 0 0 0 +-28.839 2.963 -1.252 0 0 0 0 0 0 0 +-28.778 2.911 -1.249 0 0 0 0 0 0 0 +-22.244 2.185 -0.919 0 0 0 0 0 0 0 +-22.145 2.106 -0.913 0 0 0 0 0 0 0 +-21.599 1.986 -0.886 0 0 0 0 0 0 0 +-28.004 2.39 -1.208 0 0 0 0 0 0 0 +-27.92 2.294 -1.203 0 0 0 0 0 0 0 +-27.772 2.238 -1.195 0 0 0 0 0 0 0 +-27.713 2.146 -1.192 0 0 0 0 0 0 0 +-27.622 2.052 -1.187 0 0 0 0 0 0 0 +-27.535 1.958 -1.183 0 0 0 0 0 0 0 +-27.447 1.866 -1.178 0 0 0 0 0 0 0 +-27.383 1.775 -1.174 0 0 0 0 0 0 0 +-27.307 1.684 -1.17 0 0 0 0 0 0 0 +-27.218 1.636 -1.166 0 0 0 0 0 0 0 +-21.74 1.243 -0.89 0 0 0 0 0 0 0 +-21.654 1.17 -0.885 0 0 0 0 0 0 0 +-21.935 1.116 -0.899 0 0 0 0 0 0 0 +-22.016 1.051 -0.903 0 0 0 0 0 0 0 +-26.785 1.188 -1.143 0 0 0 0 0 0 0 +-26.695 1.1 -1.138 0 0 0 0 0 0 0 +-26.62 1.013 -1.134 0 0 0 0 0 0 0 +-26.543 0.927 -1.13 0 0 0 0 0 0 0 +-26.473 0.883 -1.126 0 0 0 0 0 0 0 +-26.402 0.798 -1.123 0 0 0 0 0 0 0 +-26.308 0.712 -1.118 0 0 0 0 0 0 0 +-26.217 0.628 -1.113 0 0 0 0 0 0 0 +-22.446 0.47 -0.924 0 0 0 0 0 0 0 +-26.042 0.46 -1.104 0 0 0 0 0 0 0 +-22.406 0.329 -0.922 0 0 0 0 0 0 0 +-22.347 0.293 -0.919 0 0 0 0 0 0 0 +-22.312 0.222 -0.917 0 0 0 0 0 0 0 +-22.356 0.153 -0.919 0 0 0 0 0 0 0 +-22.367 0.082 -0.92 0 0 0 0 0 0 0 +-22.323 0.012 -0.917 0 0 0 0 0 0 0 +-25.513 -0.07 -1.078 0 0 0 0 0 0 0 +-25.425 -0.15 -1.073 0 0 0 0 0 0 0 +-25.352 -0.189 -1.07 0 0 0 0 0 0 0 +-25.272 -0.268 -1.065 0 0 0 0 0 0 0 +-25.201 -0.346 -1.062 0 0 0 0 0 0 0 +-25.118 -0.424 -1.058 0 0 0 0 0 0 0 +-25.056 -0.501 -1.055 0 0 0 0 0 0 0 +-24.957 -0.578 -1.05 0 0 0 0 0 0 0 +-24.883 -0.654 -1.046 0 0 0 0 0 0 0 +-24.798 -0.691 -1.042 0 0 0 0 0 0 0 +-24.722 -0.766 -1.038 0 0 0 0 0 0 0 +-24.646 -0.841 -1.035 0 0 0 0 0 0 0 +-24.545 -0.915 -1.03 0 0 0 0 0 0 0 +-24.48 -0.99 -1.027 0 0 0 0 0 0 0 +-24.395 -1.063 -1.023 0 0 0 0 0 0 0 +-24.32 -1.136 -1.019 0 0 0 0 0 0 0 +-24.236 -1.17 -1.015 0 0 0 0 0 0 0 +-24.161 -1.243 -1.011 0 0 0 0 0 0 0 +-24.079 -1.314 -1.007 0 0 0 0 0 0 0 +-24.007 -1.386 -1.004 0 0 0 0 0 0 0 +-23.929 -1.457 -1 0 0 0 0 0 0 0 +-23.852 -1.527 -0.997 0 0 0 0 0 0 0 +-23.769 -1.597 -0.993 0 0 0 0 0 0 0 +-23.695 -1.666 -0.989 0 0 0 0 0 0 0 +-23.622 -1.699 -0.986 0 0 0 0 0 0 0 +-23.531 -1.766 -0.981 0 0 0 0 0 0 0 +-23.46 -1.835 -0.978 0 0 0 0 0 0 0 +-23.374 -1.902 -0.974 0 0 0 0 0 0 0 +-23.308 -1.97 -0.971 0 0 0 0 0 0 0 +-16.115 -1.456 -0.609 0 0 0 0 0 0 0 +-16.083 -1.479 -0.608 0 0 0 0 0 0 0 +-16.195 -1.541 -0.613 0 0 0 0 0 0 0 +-22.911 -2.263 -0.952 0 0 0 0 0 0 0 +-22.85 -2.329 -0.95 0 0 0 0 0 0 0 +-22.773 -2.394 -0.946 0 0 0 0 0 0 0 +-22.731 -2.462 -0.945 0 0 0 0 0 0 0 +-22.7 -2.53 -0.943 0 0 0 0 0 0 0 +-22.698 -2.566 -0.943 0 0 0 0 0 0 0 +-22.721 -2.641 -0.945 0 0 0 0 0 0 0 +-22.707 -2.712 -0.945 0 0 0 0 0 0 0 +-22.728 -2.787 -0.946 0 0 0 0 0 0 0 +-22.733 -2.86 -0.947 0 0 0 0 0 0 0 +-22.732 -2.932 -0.947 0 0 0 0 0 0 0 +-22.732 -3.005 -0.948 0 0 0 0 0 0 0 +-22.749 -3.044 -0.949 0 0 0 0 0 0 0 +-22.752 -3.117 -0.95 0 0 0 0 0 0 0 +-22.718 -3.185 -0.948 0 0 0 0 0 0 0 +-22.74 -3.261 -0.95 0 0 0 0 0 0 0 +-22.642 -3.32 -0.946 0 0 0 0 0 0 0 +-22.768 -3.411 -0.952 0 0 0 0 0 0 0 +-22.678 -3.471 -0.948 0 0 0 0 0 0 0 +-22.598 -3.494 -0.945 0 0 0 0 0 0 0 +-22.535 -3.557 -0.942 0 0 0 0 0 0 0 +-22.465 -3.618 -0.939 0 0 0 0 0 0 0 +-22.378 -3.677 -0.935 0 0 0 0 0 0 0 +-22.294 -3.735 -0.932 0 0 0 0 0 0 0 +-21.082 -3.666 -0.871 0 0 0 0 0 0 0 +-21.003 -3.687 -0.867 0 0 0 0 0 0 0 +-20.946 -3.745 -0.865 0 0 0 0 0 0 0 +-20.858 -3.796 -0.861 0 0 0 0 0 0 0 +-20.793 -3.852 -0.858 0 0 0 0 0 0 0 +-20.702 -3.902 -0.854 0 0 0 0 0 0 0 +-20.652 -3.96 -0.852 0 0 0 0 0 0 0 +-20.569 -4.011 -0.849 0 0 0 0 0 0 0 +-20.524 -4.036 -0.847 0 0 0 0 0 0 0 +-20.431 -4.084 -0.843 0 0 0 0 0 0 0 +-20.369 -4.138 -0.84 0 0 0 0 0 0 0 +-20.272 -4.185 -0.836 0 0 0 0 0 0 0 +-20.223 -4.241 -0.834 0 0 0 0 0 0 0 +-20.132 -4.288 -0.83 0 0 0 0 0 0 0 +-20.081 -4.343 -0.828 0 0 0 0 0 0 0 +-19.987 -4.388 -0.824 0 0 0 0 0 0 0 +-19.934 -4.409 -0.822 0 0 0 0 0 0 0 +-19.844 -4.455 -0.818 0 0 0 0 0 0 0 +-19.783 -4.506 -0.815 0 0 0 0 0 0 0 +-19.698 -4.552 -0.812 0 0 0 0 0 0 0 +-19.647 -4.605 -0.81 0 0 0 0 0 0 0 +-19.541 -4.645 -0.805 0 0 0 0 0 0 0 +-19.484 -4.696 -0.803 0 0 0 0 0 0 0 +-19.409 -4.71 -0.799 0 0 0 0 0 0 0 +-19.349 -4.76 -0.797 0 0 0 0 0 0 0 +-19.253 -4.8 -0.793 0 0 0 0 0 0 0 +-19.203 -4.852 -0.791 0 0 0 0 0 0 0 +-19.116 -4.894 -0.787 0 0 0 0 0 0 0 +-19.069 -4.946 -0.786 0 0 0 0 0 0 0 +-18.994 -4.99 -0.783 0 0 0 0 0 0 0 +-18.938 -5.007 -0.78 0 0 0 0 0 0 0 +-18.847 -5.046 -0.776 0 0 0 0 0 0 0 +-18.792 -5.095 -0.774 0 0 0 0 0 0 0 +-18.714 -5.137 -0.771 0 0 0 0 0 0 0 +-18.65 -5.182 -0.768 0 0 0 0 0 0 0 +-18.58 -5.226 -0.766 0 0 0 0 0 0 0 +-18.515 -5.27 -0.763 0 0 0 0 0 0 0 +-18.453 -5.284 -0.76 0 0 0 0 0 0 0 +-18.393 -5.329 -0.758 0 0 0 0 0 0 0 +-18.309 -5.367 -0.755 0 0 0 0 0 0 0 +-18.251 -5.412 -0.752 0 0 0 0 0 0 0 +-18.167 -5.45 -0.749 0 0 0 0 0 0 0 +-18.11 -5.494 -0.747 0 0 0 0 0 0 0 +-18.028 -5.531 -0.743 0 0 0 0 0 0 0 +-17.977 -5.546 -0.741 0 0 0 0 0 0 0 +-17.893 -5.582 -0.738 0 0 0 0 0 0 0 +-17.845 -5.629 -0.736 0 0 0 0 0 0 0 +-17.757 -5.662 -0.732 0 0 0 0 0 0 0 +-17.705 -5.707 -0.731 0 0 0 0 0 0 0 +-17.622 -5.741 -0.727 0 0 0 0 0 0 0 +-17.547 -5.778 -0.724 0 0 0 0 0 0 0 +-17.489 -5.789 -0.722 0 0 0 0 0 0 0 +-17.434 -5.832 -0.72 0 0 0 0 0 0 0 +-17.363 -5.868 -0.717 0 0 0 0 0 0 0 +-17.307 -5.91 -0.715 0 0 0 0 0 0 0 +-17.235 -5.946 -0.712 0 0 0 0 0 0 0 +-17.173 -5.985 -0.71 0 0 0 0 0 0 0 +-17.103 -6.021 -0.707 0 0 0 0 0 0 0 +-17.088 -6.046 -0.707 0 0 0 0 0 0 0 +-16.864 -6.026 -0.696 0 0 0 0 0 0 0 +-16.744 -6.042 -0.69 0 0 0 0 0 0 0 +-16.837 -6.136 -0.696 0 0 0 0 0 0 0 +-16.792 -6.179 -0.695 0 0 0 0 0 0 0 +-16.703 -6.206 -0.691 0 0 0 0 0 0 0 +-16.65 -6.246 -0.689 0 0 0 0 0 0 0 +-16.584 -6.251 -0.686 0 0 0 0 0 0 0 +-16.495 -6.276 -0.683 0 0 0 0 0 0 0 +-16.252 -6.242 -0.671 0 0 0 0 0 0 0 +-16.208 -6.283 -0.669 0 0 0 0 0 0 0 +-16.116 -6.306 -0.666 0 0 0 0 0 0 0 +-16.162 -6.383 -0.669 0 0 0 0 0 0 0 +-16.187 -6.451 -0.672 0 0 0 0 0 0 0 +-16.149 -6.466 -0.67 0 0 0 0 0 0 0 +-16.071 -6.493 -0.667 0 0 0 0 0 0 0 +-16.025 -6.533 -0.666 0 0 0 0 0 0 0 +-15.978 -6.573 -0.664 0 0 0 0 0 0 0 +-15.994 -6.638 -0.666 0 0 0 0 0 0 0 +-16.069 -6.729 -0.671 0 0 0 0 0 0 0 +-15.79 -6.728 -0.658 0 0 0 0 0 0 0 +-16.025 -6.859 -0.672 0 0 0 0 0 0 0 +-16.029 -6.92 -0.673 0 0 0 0 0 0 0 +-16.04 -6.985 -0.675 0 0 0 0 0 0 0 +-16.046 -7.047 -0.677 0 0 0 0 0 0 0 +-16.056 -7.112 -0.678 0 0 0 0 0 0 0 +-16.061 -7.175 -0.68 0 0 0 0 0 0 0 +-16.073 -7.241 -0.682 0 0 0 0 0 0 0 +-16.084 -7.276 -0.683 0 0 0 0 0 0 0 +-16.099 -7.344 -0.685 0 0 0 0 0 0 0 +-16.094 -7.403 -0.686 0 0 0 0 0 0 0 +-16.107 -7.47 -0.688 0 0 0 0 0 0 0 +-16.107 -7.532 -0.689 0 0 0 0 0 0 0 +-16.124 -7.602 -0.692 0 0 0 0 0 0 0 +-16.111 -7.658 -0.692 0 0 0 0 0 0 0 +-16.146 -7.706 -0.695 0 0 0 0 0 0 0 +-16.145 -7.768 -0.696 0 0 0 0 0 0 0 +-16.155 -7.835 -0.698 0 0 0 0 0 0 0 +-16.164 -7.902 -0.7 0 0 0 0 0 0 0 +-16.164 -7.965 -0.701 0 0 0 0 0 0 0 +-16.171 -8.032 -0.703 0 0 0 0 0 0 0 +-16.184 -8.102 -0.705 0 0 0 0 0 0 0 +-16.203 -8.143 -0.707 0 0 0 0 0 0 0 +-16.206 -8.209 -0.709 0 0 0 0 0 0 0 +-16.207 -8.273 -0.71 0 0 0 0 0 0 0 +-16.212 -8.341 -0.712 0 0 0 0 0 0 0 +-16.215 -8.406 -0.714 0 0 0 0 0 0 0 +-16.227 -8.478 -0.716 0 0 0 0 0 0 0 +-16.23 -8.544 -0.718 0 0 0 0 0 0 0 +-16.259 -8.592 -0.72 0 0 0 0 0 0 0 +-16.25 -8.653 -0.721 0 0 0 0 0 0 0 +-16.277 -8.733 -0.724 0 0 0 0 0 0 0 +-16.269 -8.795 -0.725 0 0 0 0 0 0 0 +-16.285 -8.87 -0.728 0 0 0 0 0 0 0 +-16.285 -8.936 -0.729 0 0 0 0 0 0 0 +-16.302 -9.013 -0.732 0 0 0 0 0 0 0 +-16.312 -9.052 -0.733 0 0 0 0 0 0 0 +-16.334 -9.131 -0.736 0 0 0 0 0 0 0 +-16.314 -9.187 -0.737 0 0 0 0 0 0 0 +-16.336 -9.267 -0.74 0 0 0 0 0 0 0 +-16.336 -9.335 -0.741 0 0 0 0 0 0 0 +-16.352 -9.413 -0.744 0 0 0 0 0 0 0 +-16.351 -9.481 -0.746 0 0 0 0 0 0 0 +-16.395 -9.541 -0.749 0 0 0 0 0 0 0 +-16.372 -9.597 -0.749 0 0 0 0 0 0 0 +-16.385 -9.673 -0.752 0 0 0 0 0 0 0 +-16.395 -9.749 -0.754 0 0 0 0 0 0 0 +-16.399 -9.821 -0.756 0 0 0 0 0 0 0 +-16.402 -9.894 -0.758 0 0 0 0 0 0 0 +-16.414 -9.971 -0.761 0 0 0 0 0 0 0 +-16.406 -10.037 -0.762 0 0 0 0 0 0 0 +-16.441 -10.094 -0.765 0 0 0 0 0 0 0 +-16.435 -10.162 -0.767 0 0 0 0 0 0 0 +-16.45 -10.243 -0.77 0 0 0 0 0 0 0 +-16.445 -10.312 -0.771 0 0 0 0 0 0 0 +-16.465 -10.396 -0.774 0 0 0 0 0 0 0 +-16.456 -10.463 -0.776 0 0 0 0 0 0 0 +-16.477 -10.549 -0.779 0 0 0 0 0 0 0 +-16.494 -10.597 -0.781 0 0 0 0 0 0 0 +-16.507 -10.679 -0.784 0 0 0 0 0 0 0 +-16.517 -10.759 -0.786 0 0 0 0 0 0 0 +-16.545 -10.852 -0.79 0 0 0 0 0 0 0 +-16.526 -10.913 -0.791 0 0 0 0 0 0 0 +-16.548 -11.003 -0.794 0 0 0 0 0 0 0 +-16.54 -11.073 -0.796 0 0 0 0 0 0 0 +-16.575 -11.134 -0.799 0 0 0 0 0 0 0 +-16.58 -11.213 -0.802 0 0 0 0 0 0 0 +-16.591 -11.297 -0.804 0 0 0 0 0 0 0 +-16.583 -11.368 -0.806 0 0 0 0 0 0 0 +-16.616 -11.468 -0.81 0 0 0 0 0 0 0 +-16.602 -11.535 -0.812 0 0 0 0 0 0 0 +-16.626 -11.63 -0.815 0 0 0 0 0 0 0 +-16.632 -11.673 -0.817 0 0 0 0 0 0 0 +-16.616 -11.74 -0.818 0 0 0 0 0 0 0 +-10.564 -7.502 -0.447 0 0 0 0 0 0 0 +-10.518 -7.519 -0.446 0 0 0 0 0 0 0 +-10.487 -7.547 -0.445 0 0 0 0 0 0 0 +-10.457 -7.575 -0.445 0 0 0 0 0 0 0 +-10.435 -7.609 -0.445 0 0 0 0 0 0 0 +-16.736 -12.264 -0.838 0 0 0 0 0 0 0 +-16.725 -12.337 -0.84 0 0 0 0 0 0 0 +-16.725 -12.418 -0.842 0 0 0 0 0 0 0 +-16.724 -12.499 -0.845 0 0 0 0 0 0 0 +-16.726 -12.583 -0.848 0 0 0 0 0 0 0 +-16.739 -12.675 -0.851 0 0 0 0 0 0 0 +-16.753 -12.769 -0.854 0 0 0 0 0 0 0 +-16.765 -12.82 -0.856 0 0 0 0 0 0 0 +-16.765 -12.904 -0.859 0 0 0 0 0 0 0 +-16.748 -12.975 -0.86 0 0 0 0 0 0 0 +-16.752 -13.062 -0.863 0 0 0 0 0 0 0 +-16.765 -13.158 -0.867 0 0 0 0 0 0 0 +-16.776 -13.251 -0.87 0 0 0 0 0 0 0 +-16.771 -13.334 -0.872 0 0 0 0 0 0 0 +-16.814 -13.411 -0.876 0 0 0 0 0 0 0 +-16.819 -13.502 -0.879 0 0 0 0 0 0 0 +-16.818 -13.589 -0.882 0 0 0 0 0 0 0 +-16.834 -13.689 -0.886 0 0 0 0 0 0 0 +-16.841 -13.783 -0.889 0 0 0 0 0 0 0 +-16.845 -13.875 -0.892 0 0 0 0 0 0 0 +-16.855 -13.972 -0.896 0 0 0 0 0 0 0 +-16.868 -14.073 -0.9 0 0 0 0 0 0 0 +-16.901 -14.145 -0.903 0 0 0 0 0 0 0 +-16.904 -14.238 -0.906 0 0 0 0 0 0 0 +-16.923 -14.346 -0.91 0 0 0 0 0 0 0 +-16.919 -14.434 -0.913 0 0 0 0 0 0 0 +-16.929 -14.535 -0.917 0 0 0 0 0 0 0 +-16.945 -14.642 -0.921 0 0 0 0 0 0 0 +-16.958 -14.746 -0.925 0 0 0 0 0 0 0 +-16.993 -14.824 -0.929 0 0 0 0 0 0 0 +-17.005 -14.929 -0.933 0 0 0 0 0 0 0 +-17.012 -15.03 -0.936 0 0 0 0 0 0 0 +-17.026 -15.138 -0.94 0 0 0 0 0 0 0 +-17.024 -15.233 -0.944 0 0 0 0 0 0 0 +-17.042 -15.345 -0.948 0 0 0 0 0 0 0 +-17.047 -15.447 -0.952 0 0 0 0 0 0 0 +-17.092 -15.537 -0.956 0 0 0 0 0 0 0 +-17.096 -15.639 -0.96 0 0 0 0 0 0 0 +-17.102 -15.744 -0.964 0 0 0 0 0 0 0 +-17.113 -15.853 -0.968 0 0 0 0 0 0 0 +-17.116 -15.956 -0.971 0 0 0 0 0 0 0 +-17.127 -16.067 -0.976 0 0 0 0 0 0 0 +-17.135 -16.177 -0.98 0 0 0 0 0 0 0 +-17.167 -16.258 -0.984 0 0 0 0 0 0 0 +-17.183 -16.376 -0.988 0 0 0 0 0 0 0 +-17.189 -16.486 -0.992 0 0 0 0 0 0 0 +-17.205 -16.605 -0.997 0 0 0 0 0 0 0 +-17.204 -16.709 -1.001 0 0 0 0 0 0 0 +-17.226 -16.836 -1.006 0 0 0 0 0 0 0 +-17.228 -16.944 -1.01 0 0 0 0 0 0 0 +-17.277 -17.046 -1.015 0 0 0 0 0 0 0 +-17.29 -17.166 -1.02 0 0 0 0 0 0 0 +-17.295 -17.28 -1.024 0 0 0 0 0 0 0 +-17.318 -17.412 -1.03 0 0 0 0 0 0 0 +-17.331 -17.535 -1.034 0 0 0 0 0 0 0 +-17.326 -17.64 -1.038 0 0 0 0 0 0 0 +-17.334 -17.761 -1.043 0 0 0 0 0 0 0 +-17.322 -17.804 -1.044 0 0 0 0 0 0 0 +-17.231 -17.822 -1.041 0 0 0 0 0 0 0 +-17.136 -17.836 -1.038 0 0 0 0 0 0 0 +-17.053 -17.86 -1.036 0 0 0 0 0 0 0 +-17.042 -17.962 -1.04 0 0 0 0 0 0 0 +-17.058 -18.092 -1.045 0 0 0 0 0 0 0 +-17.062 -18.212 -1.05 0 0 0 0 0 0 0 +-17.102 -18.311 -1.055 0 0 0 0 0 0 0 +-17.123 -18.45 -1.06 0 0 0 0 0 0 0 +-17.211 -18.662 -1.071 0 0 0 0 0 0 0 +-21.812 -23.812 -1.418 0 0 0 0 0 0 0 +-21.746 -23.889 -1.418 0 0 0 0 0 0 0 +-21.523 -23.794 -1.407 0 0 0 0 0 0 0 +-17.885 -19.891 -1.14 0 0 0 0 0 0 0 +-21.222 -23.684 -1.393 0 0 0 0 0 0 0 +-21.021 -23.609 -1.384 0 0 0 0 0 0 0 +-20.935 -23.661 -1.383 0 0 0 0 0 0 0 +-20.797 -23.655 -1.378 0 0 0 0 0 0 0 +-20.744 -23.744 -1.38 0 0 0 0 0 0 0 +-19.044 -21.935 -1.255 0 0 0 0 0 0 0 +-18.953 -21.969 -1.253 0 0 0 0 0 0 0 +-18.869 -21.941 -1.25 0 0 0 0 0 0 0 +-18.713 -21.898 -1.243 0 0 0 0 0 0 0 +-18.249 -21.49 -1.212 0 0 0 0 0 0 0 +-18.144 -21.503 -1.209 0 0 0 0 0 0 0 +-18.041 -21.517 -1.206 0 0 0 0 0 0 0 +-17.937 -21.531 -1.204 0 0 0 0 0 0 0 +-17.871 -21.589 -1.204 0 0 0 0 0 0 0 +-17.917 -21.714 -1.21 0 0 0 0 0 0 0 +-17.932 -21.872 -1.217 0 0 0 0 0 0 0 +-17.957 -22.043 -1.224 0 0 0 0 0 0 0 +-17.931 -22.154 -1.228 0 0 0 0 0 0 0 +-17.919 -22.282 -1.232 0 0 0 0 0 0 0 +-17.93 -22.439 -1.239 0 0 0 0 0 0 0 +-17.936 -22.593 -1.245 0 0 0 0 0 0 0 +-17.987 -22.73 -1.252 0 0 0 0 0 0 0 +-18.002 -22.897 -1.259 0 0 0 0 0 0 0 +-18.021 -23.07 -1.266 0 0 0 0 0 0 0 +-18.04 -23.245 -1.274 0 0 0 0 0 0 0 +-18.044 -23.401 -1.28 0 0 0 0 0 0 0 +-17.947 -23.428 -1.278 0 0 0 0 0 0 0 +-17.859 -23.465 -1.277 0 0 0 0 0 0 0 +-17.831 -23.504 -1.278 0 0 0 0 0 0 0 +-17.84 -23.67 -1.285 0 0 0 0 0 0 0 +-17.781 -23.747 -1.286 0 0 0 0 0 0 0 +-18.269 -24.561 -1.333 0 0 0 0 0 0 0 +-18.275 -24.731 -1.34 0 0 0 0 0 0 0 +-18.301 -24.93 -1.349 0 0 0 0 0 0 0 +-18.306 -25.102 -1.356 0 0 0 0 0 0 0 +-18.335 -25.308 -1.366 0 0 0 0 0 0 0 +-18.387 -25.465 -1.374 0 0 0 0 0 0 0 +-18.417 -25.675 -1.383 0 0 0 0 0 0 0 +-18.411 -25.839 -1.389 0 0 0 0 0 0 0 +-18.434 -26.043 -1.399 0 0 0 0 0 0 0 +-18.456 -26.25 -1.408 0 0 0 0 0 0 0 +-18.468 -26.444 -1.416 0 0 0 0 0 0 0 +-18.484 -26.644 -1.425 0 0 0 0 0 0 0 +-18.534 -26.807 -1.433 0 0 0 0 0 0 0 +-18.282 -26.619 -1.418 0 0 0 0 0 0 0 +-18.206 -26.688 -1.419 0 0 0 0 0 0 0 +-18.425 -27.194 -1.446 0 0 0 0 0 0 0 +-18.609 -27.653 -1.47 0 0 0 0 0 0 0 +-19.59 -29.311 -1.567 0 0 0 0 0 0 0 +-19.197 -28.919 -1.539 0 0 0 0 0 0 0 +-19.096 -28.865 -1.534 0 0 0 0 0 0 0 +-18.968 -28.868 -1.531 0 0 0 0 0 0 0 +-18.855 -28.894 -1.529 0 0 0 0 0 0 0 +-18.754 -28.936 -1.528 0 0 0 0 0 0 0 +-18.762 -29.149 -1.537 0 0 0 0 0 0 0 +-18.786 -29.39 -1.548 0 0 0 0 0 0 0 +-18.807 -29.628 -1.558 0 0 0 0 0 0 0 +-18.875 -29.838 -1.569 0 0 0 0 0 0 0 +-18.916 -30.112 -1.582 0 0 0 0 0 0 0 +-18.933 -30.351 -1.593 0 0 0 0 0 0 0 +-18.957 -30.604 -1.604 0 0 0 0 0 0 0 +-18.985 -30.866 -1.616 0 0 0 0 0 0 0 +-19.023 -31.145 -1.629 0 0 0 0 0 0 0 +-19.042 -31.398 -1.64 0 0 0 0 0 0 0 +-19.108 -31.62 -1.651 0 0 0 0 0 0 0 +-19.147 -31.911 -1.665 0 0 0 0 0 0 0 +-19.162 -32.165 -1.676 0 0 0 0 0 0 0 +-19.194 -32.45 -1.689 0 0 0 0 0 0 0 +-19.212 -32.715 -1.701 0 0 0 0 0 0 0 +-19.24 -33 -1.714 0 0 0 0 0 0 0 +-19.276 -33.302 -1.728 0 0 0 0 0 0 0 +-19.339 -33.533 -1.74 0 0 0 0 0 0 0 +-19.362 -33.818 -1.753 0 0 0 0 0 0 0 +-19.177 -33.989 -1.756 0 0 0 0 0 0 0 +-19.411 -34.658 -1.791 0 0 0 0 0 0 0 +-19.508 -35.09 -1.812 0 0 0 0 0 0 0 +-19.525 -35.382 -1.825 0 0 0 0 0 0 0 +-19.481 -35.434 -1.827 0 0 0 0 0 0 0 +-19.66 -36.028 -1.857 0 0 0 0 0 0 0 +-19.522 -36.044 -1.855 0 0 0 0 0 0 0 +-19.198 -35.713 -1.832 0 0 0 0 0 0 0 +-15.59 -29.433 -1.469 0 0 0 0 0 0 0 +-15.483 -29.454 -1.467 0 0 0 0 0 0 0 +-15.443 -29.49 -1.468 0 0 0 0 0 0 0 +-15.366 -29.569 -1.47 0 0 0 0 0 0 0 +-15.111 -29.53 -1.462 0 0 0 0 0 0 0 +-14.933 -29.41 -1.453 0 0 0 0 0 0 0 +-15.548 -30.863 -1.532 0 0 0 0 0 0 0 +-15.19 -30.389 -1.502 0 0 0 0 0 0 0 +-15.159 -30.447 -1.504 0 0 0 0 0 0 0 +-15.152 -30.674 -1.514 0 0 0 0 0 0 0 +-15.165 -31.194 -1.538 0 0 0 0 0 0 0 +-15.132 -31.375 -1.545 0 0 0 0 0 0 0 +-15.059 -31.476 -1.548 0 0 0 0 0 0 0 +-15.091 -31.8 -1.564 0 0 0 0 0 0 0 +-15.356 -32.492 -1.601 0 0 0 0 0 0 0 +-15.111 -32.234 -1.584 0 0 0 0 0 0 0 +-15.202 -32.696 -1.607 0 0 0 0 0 0 0 +-15.097 -32.74 -1.607 0 0 0 0 0 0 0 +-15.079 -32.973 -1.617 0 0 0 0 0 0 0 +-14.986 -33.044 -1.618 0 0 0 0 0 0 0 +-15.133 -33.648 -1.649 0 0 0 0 0 0 0 +-15.111 -33.741 -1.653 0 0 0 0 0 0 0 +-15.102 -34.008 -1.665 0 0 0 0 0 0 0 +-15.043 -34.165 -1.671 0 0 0 0 0 0 0 +-15.001 -34.362 -1.679 0 0 0 0 0 0 0 +-14.96 -34.565 -1.687 0 0 0 0 0 0 0 +-15.006 -34.972 -1.707 0 0 0 0 0 0 0 +-15.403 -36.212 -1.772 0 0 0 0 0 0 0 +-15.38 -36.317 -1.777 0 0 0 0 0 0 0 +-15.297 -36.441 -1.781 0 0 0 0 0 0 0 +-15.175 -36.47 -1.78 0 0 0 0 0 0 0 +-15.119 -36.66 -1.787 0 0 0 0 0 0 0 +-15.054 -36.829 -1.794 0 0 0 0 0 0 0 +-15.006 -37.045 -1.803 0 0 0 0 0 0 0 +-15.093 -37.6 -1.831 0 0 0 0 0 0 0 +-15.153 -38.096 -1.855 0 0 0 0 0 0 0 +-15.116 -38.178 -1.858 0 0 0 0 0 0 0 +-14.691 -37.446 -1.816 0 0 0 0 0 0 0 +-14.506 -37.318 -1.807 0 0 0 0 0 0 0 +-14.281 -37.084 -1.792 0 0 0 0 0 0 0 +-14.136 -37.054 -1.788 0 0 0 0 0 0 0 +-14.01 -37.072 -1.786 0 0 0 0 0 0 0 +-13.885 -37.094 -1.785 0 0 0 0 0 0 0 +-13.82 -37.097 -1.784 0 0 0 0 0 0 0 +-13.698 -37.127 -1.783 0 0 0 0 0 0 0 +-13.579 -37.164 -1.783 0 0 0 0 0 0 0 +-13.455 -37.186 -1.782 0 0 0 0 0 0 0 +-15.4 -42.993 -2.089 0 0 0 0 0 0 0 +-15.364 -43.323 -2.104 0 0 0 0 0 0 0 +-13.255 -37.552 -1.796 0 0 0 0 0 0 0 +-13.157 -37.652 -1.799 0 0 0 0 0 0 0 +-13.145 -38.001 -1.815 0 0 0 0 0 0 0 +-14.706 -42.96 -2.076 0 0 0 0 0 0 0 +-14.542 -42.919 -2.072 0 0 0 0 0 0 0 +-13.333 -40.175 -1.922 0 0 0 0 0 0 0 +-14.04 -42.76 -2.056 0 0 0 0 0 0 0 +-13.983 -42.813 -2.058 0 0 0 0 0 0 0 +-13.791 -42.68 -2.048 0 0 0 0 0 0 0 +-13.588 -42.506 -2.037 0 0 0 0 0 0 0 +-13.424 -42.451 -2.032 0 0 0 0 0 0 0 +-13.241 -42.335 -2.024 0 0 0 0 0 0 0 +-13.085 -42.302 -2.02 0 0 0 0 0 0 0 +-12.918 -42.232 -2.014 0 0 0 0 0 0 0 +-12.818 -42.141 -2.008 0 0 0 0 0 0 0 +-12.621 -41.965 -1.997 0 0 0 0 0 0 0 +-12.5 -42.043 -1.999 0 0 0 0 0 0 0 +-12.393 -42.168 -2.003 0 0 0 0 0 0 0 +-12.234 -42.113 -1.998 0 0 0 0 0 0 0 +-12.098 -42.14 -1.998 0 0 0 0 0 0 0 +-11.962 -42.166 -1.997 0 0 0 0 0 0 0 +-11.89 -42.163 -1.996 0 0 0 0 0 0 0 +-11.766 -42.229 -1.997 0 0 0 0 0 0 0 +-11.683 -42.449 -2.007 0 0 0 0 0 0 0 +-11.318 -42.155 -1.988 0 0 0 0 0 0 0 +-11.187 -42.198 -1.988 0 0 0 0 0 0 0 +-11.044 -42.193 -1.986 0 0 0 0 0 0 0 +-10.971 -42.185 -1.985 0 0 0 0 0 0 0 +-10.832 -42.192 -1.984 0 0 0 0 0 0 0 +-10.699 -42.226 -1.984 0 0 0 0 0 0 0 +-10.562 -42.242 -1.983 0 0 0 0 0 0 0 +-10.417 -42.224 -1.98 0 0 0 0 0 0 0 +-10.286 -42.263 -1.98 0 0 0 0 0 0 0 +-10.182 -42.415 -1.987 0 0 0 0 0 0 0 +-9.755 -42.091 -1.966 0 0 0 0 0 0 0 +-9.609 -42.059 -1.963 0 0 0 0 0 0 0 +-9.461 -42.019 -1.959 0 0 0 0 0 0 0 +-9.321 -42.013 -1.957 0 0 0 0 0 0 0 +-9.178 -41.994 -1.955 0 0 0 0 0 0 0 +-9.104 -41.969 -1.953 0 0 0 0 0 0 0 +-8.967 -41.974 -1.951 0 0 0 0 0 0 0 +-8.832 -41.988 -1.951 0 0 0 0 0 0 0 +-8.697 -42 -1.95 0 0 0 0 0 0 0 +-8.581 -42.105 -1.954 0 0 0 0 0 0 0 +-8.219 -42.015 -1.946 0 0 0 0 0 0 0 +-8.075 -41.978 -1.943 0 0 0 0 0 0 0 +-7.939 -41.979 -1.941 0 0 0 0 0 0 0 +-7.8 -41.967 -1.94 0 0 0 0 0 0 0 +-7.667 -41.985 -1.939 0 0 0 0 0 0 0 +-7.534 -42.001 -1.939 0 0 0 0 0 0 0 +-7.395 -41.987 -1.937 0 0 0 0 0 0 0 +-7.331 -42.007 -1.937 0 0 0 0 0 0 0 +-7.202 -42.051 -1.938 0 0 0 0 0 0 0 +-7.099 -42.243 -1.947 0 0 0 0 0 0 0 +-7.049 -42.771 -1.973 0 0 0 0 0 0 0 +-6.813 -42.16 -1.941 0 0 0 0 0 0 0 +-6.671 -42.124 -1.938 0 0 0 0 0 0 0 +-6.519 -42.019 -1.931 0 0 0 0 0 0 0 +-6.35 -41.35 -1.897 0 0 0 0 0 0 0 +-6.254 -41.597 -1.908 0 0 0 0 0 0 0 +-6.173 -41.958 -1.926 0 0 0 0 0 0 0 +-6.034 -41.93 -1.923 0 0 0 0 0 0 0 +-5.899 -41.921 -1.922 0 0 0 0 0 0 0 +-5.771 -41.969 -1.923 0 0 0 0 0 0 0 +-5.642 -42.007 -1.924 0 0 0 0 0 0 0 +-5.577 -42.027 -1.925 0 0 0 0 0 0 0 +-5.44 -42.003 -1.923 0 0 0 0 0 0 0 +-5.309 -42.026 -1.923 0 0 0 0 0 0 0 +-5.175 -42.032 -1.923 0 0 0 0 0 0 0 +-5.03 -41.937 -1.917 0 0 0 0 0 0 0 +-4.873 -41.733 -1.906 0 0 0 0 0 0 0 +-4.779 -42.077 -1.923 0 0 0 0 0 0 0 +-4.717 -42.12 -1.924 0 0 0 0 0 0 0 +-2.086 -19.045 -0.759 0 0 0 0 0 0 0 +-1.77 -18.888 -0.749 0 0 0 0 0 0 0 +-1.74 -18.887 -0.749 0 0 0 0 0 0 0 +-1.68 -18.893 -0.749 0 0 0 0 0 0 0 +-1.595 -18.591 -0.733 0 0 0 0 0 0 0 +-1.534 -18.564 -0.732 0 0 0 0 0 0 0 +-1.471 -18.505 -0.729 0 0 0 0 0 0 0 +-1.424 -18.663 -0.736 0 0 0 0 0 0 0 +-1.456 -19.925 -0.8 0 0 0 0 0 0 0 +-1.245 -18.194 -0.712 0 0 0 0 0 0 0 +-1.292 -19.822 -0.794 0 0 0 0 0 0 0 +-1.214 -19.559 -0.781 0 0 0 0 0 0 0 +-1.127 -19.126 -0.759 0 0 0 0 0 0 0 +-1.067 -19.133 -0.759 0 0 0 0 0 0 0 +-1.007 -19.144 -0.759 0 0 0 0 0 0 0 +-0.979 -19.178 -0.761 0 0 0 0 0 0 0 +-0.918 -19.159 -0.76 0 0 0 0 0 0 0 +-0.886 -19.826 -0.793 0 0 0 0 0 0 0 +-0.825 -19.867 -0.795 0 0 0 0 0 0 0 +-0.738 -19.195 -0.761 0 0 0 0 0 0 0 +-0.677 -19.175 -0.76 0 0 0 0 0 0 0 +-1.153 -40.729 -1.842 0 0 0 0 0 0 0 +-1.088 -40.707 -1.841 0 0 0 0 0 0 0 +-0.956 -40.537 -1.832 0 0 0 0 0 0 0 +-0.824 -40.318 -1.821 0 0 0 0 0 0 0 +-0.695 -40.16 -1.813 0 0 0 0 0 0 0 +-0.567 -40.031 -1.807 0 0 0 0 0 0 0 +-0.44 -39.906 -1.8 0 0 0 0 0 0 0 +-0.314 -39.844 -1.797 0 0 0 0 0 0 0 +-0.201 -30.834 -1.345 0 0 0 0 0 0 0 +-0.126 -39.699 -1.79 0 0 0 0 0 0 0 +-0.001 -39.673 -1.788 0 0 0 0 0 0 0 +0.123 -39.615 -1.785 0 0 0 0 0 0 0 +0.22 -35.626 -1.585 0 0 0 0 0 0 0 +0.332 -35.673 -1.588 0 0 0 0 0 0 0 +0.508 -36.148 -1.612 0 0 0 0 0 0 0 +0.623 -36.272 -1.618 0 0 0 0 0 0 0 +0.8 -39.245 -1.767 0 0 0 0 0 0 0 +0.834 -35.56 -1.582 0 0 0 0 0 0 0 +0.933 -35.104 -1.56 0 0 0 0 0 0 0 +1.029 -34.632 -1.536 0 0 0 0 0 0 0 +1.125 -34.241 -1.517 0 0 0 0 0 0 0 +1.169 -33.962 -1.503 0 0 0 0 0 0 0 +1.269 -33.779 -1.494 0 0 0 0 0 0 0 +1.427 -35.018 -1.556 0 0 0 0 0 0 0 +1.445 -32.966 -1.453 0 0 0 0 0 0 0 +1.521 -32.377 -1.424 0 0 0 0 0 0 0 +1.599 -31.907 -1.401 0 0 0 0 0 0 0 +1.675 -31.459 -1.378 0 0 0 0 0 0 0 +1.704 -31.077 -1.359 0 0 0 0 0 0 0 +1.781 -30.729 -1.342 0 0 0 0 0 0 0 +1.859 -30.42 -1.327 0 0 0 0 0 0 0 +1.929 -30.021 -1.307 0 0 0 0 0 0 0 +1.998 -29.646 -1.288 0 0 0 0 0 0 0 +2.082 -29.506 -1.282 0 0 0 0 0 0 0 +2.173 -29.482 -1.281 0 0 0 0 0 0 0 +2.218 -29.468 -1.28 0 0 0 0 0 0 0 +2.308 -29.426 -1.278 0 0 0 0 0 0 0 +2.41 -29.538 -1.284 0 0 0 0 0 0 0 +2.456 -27.94 -1.205 0 0 0 0 0 0 0 +2.495 -27.411 -1.179 0 0 0 0 0 0 0 +2.55 -27.069 -1.162 0 0 0 0 0 0 0 +2.565 -26.789 -1.148 0 0 0 0 0 0 0 +2.627 -26.552 -1.136 0 0 0 0 0 0 0 +2.682 -26.269 -1.122 0 0 0 0 0 0 0 +2.735 -25.985 -1.108 0 0 0 0 0 0 0 +2.804 -25.859 -1.102 0 0 0 0 0 0 0 +2.846 -25.5 -1.085 0 0 0 0 0 0 0 +2.894 -25.218 -1.071 0 0 0 0 0 0 0 +2.91 -25.009 -1.061 0 0 0 0 0 0 0 +2.96 -24.761 -1.049 0 0 0 0 0 0 0 +3.016 -24.576 -1.04 0 0 0 0 0 0 0 +3.057 -24.285 -1.025 0 0 0 0 0 0 0 +3.106 -24.063 -1.015 0 0 0 0 0 0 0 +3.155 -23.855 -1.005 0 0 0 0 0 0 0 +3.201 -23.631 -0.994 0 0 0 0 0 0 0 +3.202 -23.365 -0.981 0 0 0 0 0 0 0 +3.244 -23.137 -0.97 0 0 0 0 0 0 0 +3.311 -23.083 -0.967 0 0 0 0 0 0 0 +3.31 -22.579 -0.942 0 0 0 0 0 0 0 +3.371 -22.501 -0.939 0 0 0 0 0 0 0 +3.436 -22.453 -0.937 0 0 0 0 0 0 0 +3.483 -22.292 -0.929 0 0 0 0 0 0 0 +3.516 -22.273 -0.929 0 0 0 0 0 0 0 +3.555 -22.072 -0.919 0 0 0 0 0 0 0 +3.612 -21.99 -0.915 0 0 0 0 0 0 0 +3.706 -22.123 -0.923 0 0 0 0 0 0 0 +3.779 -22.131 -0.924 0 0 0 0 0 0 0 +3.734 -21.469 -0.891 0 0 0 0 0 0 0 +3.777 -21.316 -0.884 0 0 0 0 0 0 0 +4.297 -24.017 -1.022 0 0 0 0 0 0 0 +3.781 -20.775 -0.857 0 0 0 0 0 0 0 +3.824 -20.641 -0.851 0 0 0 0 0 0 0 +3.863 -20.496 -0.844 0 0 0 0 0 0 0 +3.915 -20.417 -0.84 0 0 0 0 0 0 0 +3.945 -20.232 -0.832 0 0 0 0 0 0 0 +4.04 -20.376 -0.84 0 0 0 0 0 0 0 +3.979 -19.91 -0.816 0 0 0 0 0 0 0 +4.03 -19.838 -0.813 0 0 0 0 0 0 0 +4.055 -19.344 -0.789 0 0 0 0 0 0 0 +4.875 -22.874 -0.971 0 0 0 0 0 0 0 +4.966 -22.944 -0.975 0 0 0 0 0 0 0 +4.284 -19.513 -0.8 0 0 0 0 0 0 0 +4.229 -18.846 -0.766 0 0 0 0 0 0 0 +4.843 -21.251 -0.891 0 0 0 0 0 0 0 +4.253 -18.412 -0.745 0 0 0 0 0 0 0 +4.16 -17.759 -0.712 0 0 0 0 0 0 0 +5.039 -21.189 -0.89 0 0 0 0 0 0 0 +4.329 -17.97 -0.725 0 0 0 0 0 0 0 +4.367 -18.004 -0.727 0 0 0 0 0 0 0 +5.212 -21.176 -0.892 0 0 0 0 0 0 0 +4.573 -18.346 -0.746 0 0 0 0 0 0 0 +5.348 -21.154 -0.892 0 0 0 0 0 0 0 +5.419 -21.155 -0.893 0 0 0 0 0 0 0 +4.404 -16.991 -0.678 0 0 0 0 0 0 0 +5.571 -21.195 -0.897 0 0 0 0 0 0 0 +5.043 -19.075 -0.787 0 0 0 0 0 0 0 +5.106 -19.068 -0.788 0 0 0 0 0 0 0 +5.22 -19.251 -0.798 0 0 0 0 0 0 0 +5.815 -21.173 -0.899 0 0 0 0 0 0 0 +5.876 -21.134 -0.898 0 0 0 0 0 0 0 +5.973 -21.225 -0.904 0 0 0 0 0 0 0 +6.058 -21.269 -0.907 0 0 0 0 0 0 0 +6.083 -21.231 -0.905 0 0 0 0 0 0 0 +6.149 -21.208 -0.905 0 0 0 0 0 0 0 +6.23 -21.238 -0.908 0 0 0 0 0 0 0 +6.302 -21.238 -0.909 0 0 0 0 0 0 0 +6.171 -20.56 -0.874 0 0 0 0 0 0 0 +5.737 -18.907 -0.789 0 0 0 0 0 0 0 +5.864 -19.106 -0.8 0 0 0 0 0 0 0 +5.868 -19.015 -0.796 0 0 0 0 0 0 0 +6.667 -21.354 -0.92 0 0 0 0 0 0 0 +6.739 -21.348 -0.921 0 0 0 0 0 0 0 +5.668 -17.774 -0.733 0 0 0 0 0 0 0 +6.883 -21.336 -0.922 0 0 0 0 0 0 0 +6.945 -21.299 -0.921 0 0 0 0 0 0 0 +7.029 -21.33 -0.924 0 0 0 0 0 0 0 +7.071 -21.344 -0.926 0 0 0 0 0 0 0 +7.153 -21.365 -0.928 0 0 0 0 0 0 0 +7.242 -21.407 -0.931 0 0 0 0 0 0 0 +7.309 -21.384 -0.931 0 0 0 0 0 0 0 +7.367 -21.335 -0.93 0 0 0 0 0 0 0 +7.448 -21.351 -0.932 0 0 0 0 0 0 0 +3.719 -10.54 -0.358 0 0 0 0 0 0 0 +3.759 -10.549 -0.359 0 0 0 0 0 0 0 +3.82 -10.614 -0.363 0 0 0 0 0 0 0 +7.473 -20.489 -0.892 0 0 0 0 0 0 0 +7.928 -21.524 -0.948 0 0 0 0 0 0 0 +8.053 -21.653 -0.957 0 0 0 0 0 0 0 +8.063 -21.472 -0.948 0 0 0 0 0 0 0 +8.058 -21.359 -0.943 0 0 0 0 0 0 0 +8.09 -21.24 -0.938 0 0 0 0 0 0 0 +8.173 -21.257 -0.94 0 0 0 0 0 0 0 +6.354 -16.388 -0.679 0 0 0 0 0 0 0 +6.42 -16.406 -0.681 0 0 0 0 0 0 0 +8.236 -20.834 -0.921 0 0 0 0 0 0 0 +6.529 -16.38 -0.682 0 0 0 0 0 0 0 +8.247 -20.578 -0.91 0 0 0 0 0 0 0 +8.26 -20.426 -0.903 0 0 0 0 0 0 0 +8.289 -20.313 -0.898 0 0 0 0 0 0 0 +7.85 -19.071 -0.832 0 0 0 0 0 0 0 +8.329 -20.051 -0.887 0 0 0 0 0 0 0 +8.348 -19.92 -0.881 0 0 0 0 0 0 0 +8.357 -19.768 -0.874 0 0 0 0 0 0 0 +8.335 -19.63 -0.867 0 0 0 0 0 0 0 +8.351 -19.497 -0.862 0 0 0 0 0 0 0 +8.39 -19.421 -0.859 0 0 0 0 0 0 0 +8.414 -19.309 -0.854 0 0 0 0 0 0 0 +8.433 -19.189 -0.849 0 0 0 0 0 0 0 +8.456 -19.079 -0.844 0 0 0 0 0 0 0 +8.447 -18.899 -0.836 0 0 0 0 0 0 0 +8.435 -18.793 -0.831 0 0 0 0 0 0 0 +8.471 -18.715 -0.828 0 0 0 0 0 0 0 +8.488 -18.598 -0.823 0 0 0 0 0 0 0 +8.517 -18.506 -0.819 0 0 0 0 0 0 0 +8.531 -18.385 -0.814 0 0 0 0 0 0 0 +8.546 -18.267 -0.809 0 0 0 0 0 0 0 +8.558 -18.145 -0.804 0 0 0 0 0 0 0 +8.554 -18.063 -0.8 0 0 0 0 0 0 0 +8.575 -17.962 -0.796 0 0 0 0 0 0 0 +8.597 -17.863 -0.792 0 0 0 0 0 0 0 +8.66 -17.85 -0.793 0 0 0 0 0 0 0 +8.679 -17.748 -0.789 0 0 0 0 0 0 0 +8.742 -17.735 -0.789 0 0 0 0 0 0 0 +8.789 -17.689 -0.788 0 0 0 0 0 0 0 +8.781 -17.604 -0.784 0 0 0 0 0 0 0 +8.776 -17.457 -0.778 0 0 0 0 0 0 0 +8.812 -17.392 -0.776 0 0 0 0 0 0 0 +8.822 -17.277 -0.771 0 0 0 0 0 0 0 +8.845 -17.189 -0.767 0 0 0 0 0 0 0 +8.859 -17.085 -0.763 0 0 0 0 0 0 0 +8.877 -16.989 -0.759 0 0 0 0 0 0 0 +8.87 -16.91 -0.755 0 0 0 0 0 0 0 +8.891 -16.822 -0.752 0 0 0 0 0 0 0 +8.908 -16.727 -0.748 0 0 0 0 0 0 0 +8.921 -16.625 -0.744 0 0 0 0 0 0 0 +8.94 -16.537 -0.741 0 0 0 0 0 0 0 +8.954 -16.439 -0.737 0 0 0 0 0 0 0 +8.966 -16.339 -0.732 0 0 0 0 0 0 0 +8.939 -16.229 -0.727 0 0 0 0 0 0 0 +8.969 -16.164 -0.725 0 0 0 0 0 0 0 +8.98 -16.064 -0.721 0 0 0 0 0 0 0 +8.995 -15.974 -0.717 0 0 0 0 0 0 0 +8.99 -15.848 -0.711 0 0 0 0 0 0 0 +8.996 -15.743 -0.707 0 0 0 0 0 0 0 +9.05 -15.724 -0.708 0 0 0 0 0 0 0 +9.042 -15.652 -0.704 0 0 0 0 0 0 0 +9.059 -15.569 -0.701 0 0 0 0 0 0 0 +9.072 -15.48 -0.697 0 0 0 0 0 0 0 +9.1 -15.417 -0.695 0 0 0 0 0 0 0 +9.148 -15.387 -0.695 0 0 0 0 0 0 0 +9.217 -15.392 -0.697 0 0 0 0 0 0 0 +9.286 -15.397 -0.699 0 0 0 0 0 0 0 +9.359 -15.409 -0.702 0 0 0 0 0 0 0 +9.405 -15.43 -0.704 0 0 0 0 0 0 0 +9.473 -15.433 -0.706 0 0 0 0 0 0 0 +9.467 -15.315 -0.701 0 0 0 0 0 0 0 +7.052 -11.341 -0.467 0 0 0 0 0 0 0 +7.072 -11.295 -0.466 0 0 0 0 0 0 0 +7.11 -11.276 -0.466 0 0 0 0 0 0 0 +7.139 -11.243 -0.465 0 0 0 0 0 0 0 +7.15 -11.222 -0.465 0 0 0 0 0 0 0 +7.177 -11.186 -0.464 0 0 0 0 0 0 0 +7.218 -11.173 -0.465 0 0 0 0 0 0 0 +7.251 -11.147 -0.464 0 0 0 0 0 0 0 +7.277 -11.111 -0.464 0 0 0 0 0 0 0 +7.312 -11.088 -0.464 0 0 0 0 0 0 0 +7.319 -11.06 -0.463 0 0 0 0 0 0 0 +7.35 -11.032 -0.462 0 0 0 0 0 0 0 +7.386 -11.011 -0.462 0 0 0 0 0 0 0 +7.409 -10.971 -0.461 0 0 0 0 0 0 0 +7.444 -10.948 -0.461 0 0 0 0 0 0 0 +7.469 -10.911 -0.461 0 0 0 0 0 0 0 +7.503 -10.887 -0.461 0 0 0 0 0 0 0 +7.512 -10.864 -0.46 0 0 0 0 0 0 0 +7.545 -10.839 -0.46 0 0 0 0 0 0 0 +7.575 -10.809 -0.459 0 0 0 0 0 0 0 +7.599 -10.772 -0.459 0 0 0 0 0 0 0 +7.627 -10.74 -0.458 0 0 0 0 0 0 0 +7.765 -10.86 -0.467 0 0 0 0 0 0 0 +7.759 -10.78 -0.464 0 0 0 0 0 0 0 +9.47 -13.105 -0.608 0 0 0 0 0 0 0 +9.48 -13.032 -0.606 0 0 0 0 0 0 0 +9.492 -12.963 -0.603 0 0 0 0 0 0 0 +9.504 -12.895 -0.601 0 0 0 0 0 0 0 +9.515 -12.825 -0.598 0 0 0 0 0 0 0 +9.528 -12.758 -0.596 0 0 0 0 0 0 0 +9.544 -12.696 -0.594 0 0 0 0 0 0 0 +9.55 -12.622 -0.591 0 0 0 0 0 0 0 +9.54 -12.568 -0.589 0 0 0 0 0 0 0 +9.552 -12.502 -0.587 0 0 0 0 0 0 0 +9.567 -12.44 -0.585 0 0 0 0 0 0 0 +9.57 -12.364 -0.582 0 0 0 0 0 0 0 +9.588 -12.307 -0.58 0 0 0 0 0 0 0 +9.598 -12.241 -0.578 0 0 0 0 0 0 0 +9.609 -12.177 -0.575 0 0 0 0 0 0 0 +9.6 -12.125 -0.573 0 0 0 0 0 0 0 +9.619 -12.072 -0.572 0 0 0 0 0 0 0 +9.62 -11.995 -0.569 0 0 0 0 0 0 0 +9.633 -11.935 -0.567 0 0 0 0 0 0 0 +9.639 -11.866 -0.564 0 0 0 0 0 0 0 +9.649 -11.802 -0.562 0 0 0 0 0 0 0 +9.659 -11.739 -0.56 0 0 0 0 0 0 0 +9.661 -11.704 -0.559 0 0 0 0 0 0 0 +9.667 -11.637 -0.556 0 0 0 0 0 0 0 +9.675 -11.572 -0.554 0 0 0 0 0 0 0 +9.683 -11.508 -0.552 0 0 0 0 0 0 0 +9.569 -11.301 -0.54 0 0 0 0 0 0 0 +9.569 -11.23 -0.537 0 0 0 0 0 0 0 +9.561 -11.185 -0.535 0 0 0 0 0 0 0 +9.574 -11.129 -0.534 0 0 0 0 0 0 0 +9.585 -11.072 -0.532 0 0 0 0 0 0 0 +9.594 -11.012 -0.53 0 0 0 0 0 0 0 +9.603 -10.953 -0.528 0 0 0 0 0 0 0 +9.618 -10.9 -0.527 0 0 0 0 0 0 0 +9.62 -10.834 -0.524 0 0 0 0 0 0 0 +9.637 -10.785 -0.523 0 0 0 0 0 0 0 +9.623 -10.735 -0.521 0 0 0 0 0 0 0 +9.639 -10.686 -0.519 0 0 0 0 0 0 0 +9.638 -10.617 -0.517 0 0 0 0 0 0 0 +9.651 -10.565 -0.515 0 0 0 0 0 0 0 +9.666 -10.515 -0.514 0 0 0 0 0 0 0 +9.672 -10.455 -0.512 0 0 0 0 0 0 0 +9.686 -10.405 -0.51 0 0 0 0 0 0 0 +9.669 -10.354 -0.508 0 0 0 0 0 0 0 +9.677 -10.298 -0.506 0 0 0 0 0 0 0 +9.689 -10.246 -0.505 0 0 0 0 0 0 0 +9.706 -10.199 -0.504 0 0 0 0 0 0 0 +9.705 -10.134 -0.501 0 0 0 0 0 0 0 +9.717 -10.084 -0.5 0 0 0 0 0 0 0 +9.723 -10.027 -0.498 0 0 0 0 0 0 0 +9.714 -9.986 -0.496 0 0 0 0 0 0 0 +9.681 -9.89 -0.492 0 0 0 0 0 0 0 +9.125 -9.266 -0.45 0 0 0 0 0 0 0 +9.722 -9.808 -0.49 0 0 0 0 0 0 0 +9.278 -9.303 -0.456 0 0 0 0 0 0 0 +9.761 -9.724 -0.488 0 0 0 0 0 0 0 +9.774 -9.676 -0.487 0 0 0 0 0 0 0 +9.771 -9.643 -0.486 0 0 0 0 0 0 0 +9.771 -9.583 -0.484 0 0 0 0 0 0 0 +9.778 -9.53 -0.482 0 0 0 0 0 0 0 +9.791 -9.482 -0.481 0 0 0 0 0 0 0 +9.799 -9.431 -0.479 0 0 0 0 0 0 0 +9.802 -9.375 -0.478 0 0 0 0 0 0 0 +9.804 -9.347 -0.477 0 0 0 0 0 0 0 +9.81 -9.295 -0.475 0 0 0 0 0 0 0 +9.807 -9.234 -0.473 0 0 0 0 0 0 0 +9.823 -9.191 -0.472 0 0 0 0 0 0 0 +9.833 -9.142 -0.471 0 0 0 0 0 0 0 +9.841 -9.092 -0.469 0 0 0 0 0 0 0 +9.849 -9.042 -0.468 0 0 0 0 0 0 0 +9.862 -8.998 -0.467 0 0 0 0 0 0 0 +9.853 -8.961 -0.465 0 0 0 0 0 0 0 +9.86 -8.911 -0.464 0 0 0 0 0 0 0 +9.869 -8.863 -0.463 0 0 0 0 0 0 0 +9.871 -8.809 -0.461 0 0 0 0 0 0 0 +9.882 -8.764 -0.46 0 0 0 0 0 0 0 +9.887 -8.713 -0.458 0 0 0 0 0 0 0 +9.896 -8.666 -0.457 0 0 0 0 0 0 0 +9.892 -8.635 -0.456 0 0 0 0 0 0 0 +9.901 -8.588 -0.455 0 0 0 0 0 0 0 +9.905 -8.537 -0.453 0 0 0 0 0 0 0 +9.914 -8.491 -0.452 0 0 0 0 0 0 0 +9.914 -8.437 -0.45 0 0 0 0 0 0 0 +9.927 -8.395 -0.449 0 0 0 0 0 0 0 +9.949 -8.36 -0.449 0 0 0 0 0 0 0 +9.956 -8.339 -0.449 0 0 0 0 0 0 0 +9.982 -8.308 -0.449 0 0 0 0 0 0 0 +10.002 -8.271 -0.448 0 0 0 0 0 0 0 +10.036 -8.246 -0.449 0 0 0 0 0 0 0 +10.051 -8.206 -0.448 0 0 0 0 0 0 0 +10.07 -8.169 -0.448 0 0 0 0 0 0 0 +10.093 -8.135 -0.448 0 0 0 0 0 0 0 +10.102 -8.116 -0.447 0 0 0 0 0 0 0 +10.131 -8.087 -0.448 0 0 0 0 0 0 0 +10.166 -8.063 -0.448 0 0 0 0 0 0 0 +10.167 -8.012 -0.447 0 0 0 0 0 0 0 +9.969 -7.806 -0.432 0 0 0 0 0 0 0 +9.584 -7.458 -0.406 0 0 0 0 0 0 0 +9.611 -7.43 -0.407 0 0 0 0 0 0 0 +9.629 -7.42 -0.407 0 0 0 0 0 0 0 +9.657 -7.393 -0.407 0 0 0 0 0 0 0 +9.689 -7.37 -0.408 0 0 0 0 0 0 0 +9.727 -7.35 -0.409 0 0 0 0 0 0 0 +9.763 -7.329 -0.41 0 0 0 0 0 0 0 +9.808 -7.315 -0.411 0 0 0 0 0 0 0 +9.846 -7.295 -0.412 0 0 0 0 0 0 0 +9.881 -7.297 -0.413 0 0 0 0 0 0 0 +9.914 -7.273 -0.414 0 0 0 0 0 0 0 +9.969 -7.265 -0.416 0 0 0 0 0 0 0 +10.014 -7.25 -0.417 0 0 0 0 0 0 0 +10.078 -7.248 -0.42 0 0 0 0 0 0 0 +10.115 -7.227 -0.421 0 0 0 0 0 0 0 +10.164 -7.213 -0.422 0 0 0 0 0 0 0 +10.52 -7.44 -0.444 0 0 0 0 0 0 0 +10.559 -7.418 -0.445 0 0 0 0 0 0 0 +10.586 -7.388 -0.445 0 0 0 0 0 0 0 +10.612 -7.356 -0.445 0 0 0 0 0 0 0 +10.639 -7.325 -0.445 0 0 0 0 0 0 0 +10.652 -7.285 -0.445 0 0 0 0 0 0 0 +10.673 -7.251 -0.445 0 0 0 0 0 0 0 +10.681 -7.232 -0.444 0 0 0 0 0 0 0 +10.707 -7.2 -0.445 0 0 0 0 0 0 0 +10.725 -7.163 -0.444 0 0 0 0 0 0 0 +10.752 -7.133 -0.445 0 0 0 0 0 0 0 +10.771 -7.097 -0.444 0 0 0 0 0 0 0 +10.785 -7.057 -0.444 0 0 0 0 0 0 0 +10.812 -7.027 -0.444 0 0 0 0 0 0 0 +10.813 -7.003 -0.444 0 0 0 0 0 0 0 +10.835 -6.969 -0.444 0 0 0 0 0 0 0 +10.865 -6.941 -0.444 0 0 0 0 0 0 0 +10.892 -6.91 -0.444 0 0 0 0 0 0 0 +10.902 -6.868 -0.444 0 0 0 0 0 0 0 +10.93 -6.838 -0.444 0 0 0 0 0 0 0 +10.953 -6.805 -0.444 0 0 0 0 0 0 0 +10.962 -6.786 -0.444 0 0 0 0 0 0 0 +10.99 -6.756 -0.444 0 0 0 0 0 0 0 +11.022 -6.728 -0.445 0 0 0 0 0 0 0 +11.041 -6.692 -0.445 0 0 0 0 0 0 0 +11.088 -6.673 -0.446 0 0 0 0 0 0 0 +11.14 -6.656 -0.448 0 0 0 0 0 0 0 +11.19 -6.638 -0.45 0 0 0 0 0 0 0 +11.231 -6.639 -0.452 0 0 0 0 0 0 0 +11.292 -6.627 -0.454 0 0 0 0 0 0 0 +11.34 -6.607 -0.456 0 0 0 0 0 0 0 +11.388 -6.588 -0.457 0 0 0 0 0 0 0 +11.439 -6.569 -0.459 0 0 0 0 0 0 0 +11.49 -6.551 -0.461 0 0 0 0 0 0 0 +11.544 -6.533 -0.463 0 0 0 0 0 0 0 +11.594 -6.537 -0.465 0 0 0 0 0 0 0 +11.632 -6.511 -0.466 0 0 0 0 0 0 0 +11.691 -6.495 -0.468 0 0 0 0 0 0 0 +11.743 -6.476 -0.47 0 0 0 0 0 0 0 +11.805 -6.462 -0.472 0 0 0 0 0 0 0 +11.852 -6.439 -0.474 0 0 0 0 0 0 0 +11.92 -6.427 -0.477 0 0 0 0 0 0 0 +11.946 -6.417 -0.477 0 0 0 0 0 0 0 +12.011 -6.404 -0.48 0 0 0 0 0 0 0 +12.058 -6.38 -0.482 0 0 0 0 0 0 0 +12.119 -6.363 -0.484 0 0 0 0 0 0 0 +12.185 -6.349 -0.487 0 0 0 0 0 0 0 +12.295 -6.357 -0.492 0 0 0 0 0 0 0 +8.789 -4.518 -0.293 0 0 0 0 0 0 0 +8.78 -4.496 -0.292 0 0 0 0 0 0 0 +12.45 -6.265 -0.496 0 0 0 0 0 0 0 +12.509 -6.245 -0.499 0 0 0 0 0 0 0 +12.579 -6.231 -0.501 0 0 0 0 0 0 0 +12.634 -6.209 -0.503 0 0 0 0 0 0 0 +12.691 -6.187 -0.506 0 0 0 0 0 0 0 +12.735 -6.184 -0.507 0 0 0 0 0 0 0 +12.798 -6.164 -0.51 0 0 0 0 0 0 0 +12.862 -6.146 -0.512 0 0 0 0 0 0 0 +12.925 -6.126 -0.515 0 0 0 0 0 0 0 +12.984 -6.104 -0.517 0 0 0 0 0 0 0 +13.041 -6.081 -0.519 0 0 0 0 0 0 0 +13.107 -6.061 -0.522 0 0 0 0 0 0 0 +13.164 -6.062 -0.524 0 0 0 0 0 0 0 +13.223 -6.039 -0.527 0 0 0 0 0 0 0 +13.293 -6.021 -0.529 0 0 0 0 0 0 0 +13.345 -5.993 -0.531 0 0 0 0 0 0 0 +13.411 -5.972 -0.534 0 0 0 0 0 0 0 +13.47 -5.948 -0.536 0 0 0 0 0 0 0 +13.54 -5.928 -0.539 0 0 0 0 0 0 0 +13.602 -5.93 -0.542 0 0 0 0 0 0 0 +13.67 -5.908 -0.544 0 0 0 0 0 0 0 +13.736 -5.886 -0.547 0 0 0 0 0 0 0 +13.795 -5.86 -0.549 0 0 0 0 0 0 0 +14.011 -5.899 -0.56 0 0 0 0 0 0 0 +14.068 -5.871 -0.562 0 0 0 0 0 0 0 +14.072 -5.821 -0.561 0 0 0 0 0 0 0 +13.949 -5.745 -0.554 0 0 0 0 0 0 0 +13.949 -5.693 -0.553 0 0 0 0 0 0 0 +14.241 -5.76 -0.568 0 0 0 0 0 0 0 +14.291 -5.728 -0.57 0 0 0 0 0 0 0 +14.351 -5.7 -0.572 0 0 0 0 0 0 0 +14.39 -5.663 -0.573 0 0 0 0 0 0 0 +14.45 -5.634 -0.575 0 0 0 0 0 0 0 +14.47 -5.616 -0.576 0 0 0 0 0 0 0 +14.531 -5.586 -0.578 0 0 0 0 0 0 0 +14.438 -5.499 -0.572 0 0 0 0 0 0 0 +14.232 -5.319 -0.56 0 0 0 0 0 0 0 +14.281 -5.286 -0.561 0 0 0 0 0 0 0 +14.384 -5.273 -0.566 0 0 0 0 0 0 0 +14.738 -5.35 -0.584 0 0 0 0 0 0 0 +14.862 -5.368 -0.59 0 0 0 0 0 0 0 +14.91 -5.332 -0.592 0 0 0 0 0 0 0 +14.97 -5.301 -0.594 0 0 0 0 0 0 0 +14.97 -5.248 -0.593 0 0 0 0 0 0 0 +14.671 -5.092 -0.576 0 0 0 0 0 0 0 +15.12 -5.194 -0.599 0 0 0 0 0 0 0 +15.04 -5.113 -0.594 0 0 0 0 0 0 0 +15.193 -5.139 -0.602 0 0 0 0 0 0 0 +15.245 -5.103 -0.604 0 0 0 0 0 0 0 +15.326 -5.076 -0.607 0 0 0 0 0 0 0 +15.374 -5.039 -0.609 0 0 0 0 0 0 0 +15.426 -5.002 -0.611 0 0 0 0 0 0 0 +15.468 -4.962 -0.612 0 0 0 0 0 0 0 +15.522 -4.952 -0.615 0 0 0 0 0 0 0 +15.577 -4.916 -0.617 0 0 0 0 0 0 0 +15.627 -4.878 -0.619 0 0 0 0 0 0 0 +15.669 -4.837 -0.62 0 0 0 0 0 0 0 +15.72 -4.799 -0.622 0 0 0 0 0 0 0 +15.733 -4.749 -0.622 0 0 0 0 0 0 0 +15.645 -4.669 -0.616 0 0 0 0 0 0 0 +15.634 -4.612 -0.615 0 0 0 0 0 0 0 +15.58 -4.57 -0.612 0 0 0 0 0 0 0 +15.547 -4.507 -0.609 0 0 0 0 0 0 0 +15.515 -4.445 -0.607 0 0 0 0 0 0 0 +15.565 -4.406 -0.609 0 0 0 0 0 0 0 +15.613 -4.367 -0.611 0 0 0 0 0 0 0 +15.693 -4.336 -0.614 0 0 0 0 0 0 0 +15.733 -4.294 -0.615 0 0 0 0 0 0 0 +15.79 -4.283 -0.618 0 0 0 0 0 0 0 +15.817 -4.237 -0.619 0 0 0 0 0 0 0 +15.905 -4.207 -0.623 0 0 0 0 0 0 0 +15.942 -4.163 -0.624 0 0 0 0 0 0 0 +16.005 -4.126 -0.626 0 0 0 0 0 0 0 +16.068 -4.088 -0.629 0 0 0 0 0 0 0 +16.122 -4.048 -0.631 0 0 0 0 0 0 0 +16.18 -4.035 -0.634 0 0 0 0 0 0 0 +16.259 -4.001 -0.637 0 0 0 0 0 0 0 +16.295 -3.955 -0.639 0 0 0 0 0 0 0 +16.371 -3.919 -0.642 0 0 0 0 0 0 0 +16.428 -3.878 -0.644 0 0 0 0 0 0 0 +16.493 -3.839 -0.647 0 0 0 0 0 0 0 +16.54 -3.795 -0.649 0 0 0 0 0 0 0 +16.606 -3.783 -0.652 0 0 0 0 0 0 0 +16.653 -3.738 -0.654 0 0 0 0 0 0 0 +16.71 -3.696 -0.656 0 0 0 0 0 0 0 +16.811 -3.663 -0.66 0 0 0 0 0 0 0 +16.836 -3.613 -0.661 0 0 0 0 0 0 0 +16.912 -3.573 -0.665 0 0 0 0 0 0 0 +16.974 -3.531 -0.667 0 0 0 0 0 0 0 +17.028 -3.514 -0.67 0 0 0 0 0 0 0 +17.094 -3.472 -0.672 0 0 0 0 0 0 0 +17.189 -3.435 -0.677 0 0 0 0 0 0 0 +17.227 -3.386 -0.678 0 0 0 0 0 0 0 +17.297 -3.343 -0.681 0 0 0 0 0 0 0 +17.344 -3.296 -0.683 0 0 0 0 0 0 0 +13.556 -2.538 -0.489 0 0 0 0 0 0 0 +7.487 -1.401 -0.179 0 0 0 0 0 0 0 +7.48 -1.376 -0.179 0 0 0 0 0 0 0 +7.469 -1.349 -0.178 0 0 0 0 0 0 0 +7.516 -1.333 -0.18 0 0 0 0 0 0 0 +7.53 -1.311 -0.18 0 0 0 0 0 0 0 +7.556 -1.291 -0.182 0 0 0 0 0 0 0 +7.54 -1.264 -0.181 0 0 0 0 0 0 0 +7.528 -1.25 -0.18 0 0 0 0 0 0 0 +7.542 -1.228 -0.18 0 0 0 0 0 0 0 +7.601 -1.213 -0.183 0 0 0 0 0 0 0 +7.64 -1.195 -0.185 0 0 0 0 0 0 0 +13.638 -2.068 -0.489 0 0 0 0 0 0 0 +13.664 -2.028 -0.49 0 0 0 0 0 0 0 +13.732 -1.994 -0.493 0 0 0 0 0 0 0 +13.788 -1.98 -0.496 0 0 0 0 0 0 0 +19.071 -2.667 -0.763 0 0 0 0 0 0 0 +19.143 -2.616 -0.767 0 0 0 0 0 0 0 +19.204 -2.563 -0.769 0 0 0 0 0 0 0 +19.296 -2.513 -0.774 0 0 0 0 0 0 0 +19.242 -2.445 -0.77 0 0 0 0 0 0 0 +19.253 -2.385 -0.771 0 0 0 0 0 0 0 +19.35 -2.366 -0.775 0 0 0 0 0 0 0 +19.403 -2.31 -0.778 0 0 0 0 0 0 0 +19.454 -2.255 -0.78 0 0 0 0 0 0 0 +19.497 -2.197 -0.782 0 0 0 0 0 0 0 +19.571 -2.143 -0.785 0 0 0 0 0 0 0 +19.61 -2.085 -0.787 0 0 0 0 0 0 0 +19.666 -2.029 -0.789 0 0 0 0 0 0 0 +19.711 -2.002 -0.791 0 0 0 0 0 0 0 +19.759 -1.944 -0.793 0 0 0 0 0 0 0 +19.794 -1.885 -0.795 0 0 0 0 0 0 0 +19.864 -1.828 -0.798 0 0 0 0 0 0 0 +19.903 -1.769 -0.8 0 0 0 0 0 0 0 +19.961 -1.711 -0.802 0 0 0 0 0 0 0 +20.008 -1.651 -0.805 0 0 0 0 0 0 0 +20.064 -1.624 -0.807 0 0 0 0 0 0 0 +20.109 -1.564 -0.809 0 0 0 0 0 0 0 +20.164 -1.505 -0.812 0 0 0 0 0 0 0 +20.212 -1.445 -0.814 0 0 0 0 0 0 0 +20.278 -1.385 -0.817 0 0 0 0 0 0 0 +20.324 -1.324 -0.819 0 0 0 0 0 0 0 +20.382 -1.264 -0.822 0 0 0 0 0 0 0 +20.43 -1.234 -0.824 0 0 0 0 0 0 0 +20.492 -1.173 -0.827 0 0 0 0 0 0 0 +20.529 -1.111 -0.829 0 0 0 0 0 0 0 +20.594 -1.049 -0.832 0 0 0 0 0 0 0 +20.651 -0.987 -0.835 0 0 0 0 0 0 0 +20.708 -0.924 -0.837 0 0 0 0 0 0 0 +20.761 -0.861 -0.84 0 0 0 0 0 0 0 +20.82 -0.831 -0.843 0 0 0 0 0 0 0 +20.867 -0.767 -0.845 0 0 0 0 0 0 0 +20.941 -0.704 -0.849 0 0 0 0 0 0 0 +20.991 -0.64 -0.851 0 0 0 0 0 0 0 +21.051 -0.575 -0.854 0 0 0 0 0 0 0 +21.1 -0.51 -0.856 0 0 0 0 0 0 0 +21.168 -0.445 -0.86 0 0 0 0 0 0 0 +21.21 -0.413 -0.862 0 0 0 0 0 0 0 +21.283 -0.347 -0.865 0 0 0 0 0 0 0 +21.334 -0.281 -0.868 0 0 0 0 0 0 0 +21.397 -0.214 -0.871 0 0 0 0 0 0 0 +21.458 -0.147 -0.874 0 0 0 0 0 0 0 +21.518 -0.08 -0.877 0 0 0 0 0 0 0 +21.57 -0.013 -0.88 0 0 0 0 0 0 0 +13.448 0.015 -0.557 0 0 0 0 0 0 0 +31.906 0.101 -1.601 0 0 0 0 0 0 0 +31.94 0.152 -1.603 0 0 0 0 0 0 0 +32.021 0.252 -1.608 0 0 0 0 0 0 0 +32.048 0.353 -1.609 0 0 0 0 0 0 0 +32.195 0.456 -1.618 0 0 0 0 0 0 0 +32.199 0.557 -1.618 0 0 0 0 0 0 0 +32.277 0.66 -1.622 0 0 0 0 0 0 0 +13.382 0.331 -0.554 0 0 0 0 0 0 0 +32.43 0.867 -1.631 0 0 0 0 0 0 0 +32.365 0.916 -1.628 0 0 0 0 0 0 0 +13.938 0.497 -0.586 0 0 0 0 0 0 0 +13.937 0.541 -0.586 0 0 0 0 0 0 0 +13.965 0.586 -0.587 0 0 0 0 0 0 0 +13.961 0.63 -0.587 0 0 0 0 0 0 0 +13.975 0.674 -0.588 0 0 0 0 0 0 0 +32.16 1.568 -1.618 0 0 0 0 0 0 0 +32.149 1.669 -1.617 0 0 0 0 0 0 0 +32.11 1.768 -1.615 0 0 0 0 0 0 0 +25.551 1.493 -1.244 0 0 0 0 0 0 0 +14.549 0.953 -0.621 0 0 0 0 0 0 0 +14.55 0.999 -0.622 0 0 0 0 0 0 0 +31.994 2.216 -1.61 0 0 0 0 0 0 0 +31.977 2.315 -1.61 0 0 0 0 0 0 0 +31.939 2.414 -1.608 0 0 0 0 0 0 0 +31.908 2.512 -1.607 0 0 0 0 0 0 0 +31.933 2.615 -1.609 0 0 0 0 0 0 0 +14.869 1.279 -0.641 0 0 0 0 0 0 0 +14.887 1.327 -0.642 0 0 0 0 0 0 0 +14.916 1.353 -0.644 0 0 0 0 0 0 0 +18.849 1.763 -0.867 0 0 0 0 0 0 0 +15.421 1.594 -0.674 0 0 0 0 0 0 0 +31.768 3.357 -1.603 0 0 0 0 0 0 0 +31.68 3.448 -1.599 0 0 0 0 0 0 0 +31.624 3.492 -1.596 0 0 0 0 0 0 0 +31.584 3.588 -1.594 0 0 0 0 0 0 0 +31.552 3.685 -1.593 0 0 0 0 0 0 0 +31.507 3.78 -1.591 0 0 0 0 0 0 0 +31.467 3.876 -1.59 0 0 0 0 0 0 0 +25.101 3.177 -1.228 0 0 0 0 0 0 0 +25.101 3.257 -1.228 0 0 0 0 0 0 0 +16.31 2.152 -0.727 0 0 0 0 0 0 0 +30.341 4.174 -1.529 0 0 0 0 0 0 0 +30.3 4.266 -1.527 0 0 0 0 0 0 0 +30.31 4.364 -1.528 0 0 0 0 0 0 0 +27.939 4.115 -1.394 0 0 0 0 0 0 0 +20.773 3.133 -0.985 0 0 0 0 0 0 0 +20.904 3.186 -0.993 0 0 0 0 0 0 0 +31.095 4.826 -1.576 0 0 0 0 0 0 0 +31.06 4.921 -1.575 0 0 0 0 0 0 0 +31.009 5.013 -1.573 0 0 0 0 0 0 0 +31.003 5.112 -1.574 0 0 0 0 0 0 0 +24.846 4.182 -1.222 0 0 0 0 0 0 0 +24.833 4.26 -1.222 0 0 0 0 0 0 0 +30.926 5.349 -1.572 0 0 0 0 0 0 0 +30.899 5.444 -1.571 0 0 0 0 0 0 0 +30.843 5.534 -1.569 0 0 0 0 0 0 0 +30.806 5.628 -1.568 0 0 0 0 0 0 0 +30.79 5.725 -1.568 0 0 0 0 0 0 0 +18.932 3.684 -0.888 0 0 0 0 0 0 0 +18.806 3.721 -0.881 0 0 0 0 0 0 0 +30.657 6.15 -1.565 0 0 0 0 0 0 0 +30.647 6.248 -1.566 0 0 0 0 0 0 0 +30.667 6.352 -1.568 0 0 0 0 0 0 0 +23.396 4.929 -1.149 0 0 0 0 0 0 0 +30.573 6.534 -1.565 0 0 0 0 0 0 0 +30.561 6.581 -1.565 0 0 0 0 0 0 0 +18.758 4.173 -0.884 0 0 0 0 0 0 0 +30.542 6.879 -1.567 0 0 0 0 0 0 0 +30.558 6.983 -1.569 0 0 0 0 0 0 0 +21.832 5.178 -1.066 0 0 0 0 0 0 0 +21.808 5.244 -1.065 0 0 0 0 0 0 0 +20.272 4.944 -0.977 0 0 0 0 0 0 0 +20.266 5.01 -0.977 0 0 0 0 0 0 0 +30.639 7.663 -1.583 0 0 0 0 0 0 0 +30.642 7.766 -1.584 0 0 0 0 0 0 0 +30.629 7.866 -1.585 0 0 0 0 0 0 0 +30.671 7.928 -1.588 0 0 0 0 0 0 0 +30.659 8.027 -1.589 0 0 0 0 0 0 0 +30.675 8.134 -1.591 0 0 0 0 0 0 0 +30.655 8.232 -1.592 0 0 0 0 0 0 0 +16.133 4.454 -0.743 0 0 0 0 0 0 0 +16.086 4.496 -0.741 0 0 0 0 0 0 0 +16.043 4.538 -0.74 0 0 0 0 0 0 0 +16.044 4.566 -0.74 0 0 0 0 0 0 0 +16.001 4.608 -0.739 0 0 0 0 0 0 0 +15.994 4.66 -0.739 0 0 0 0 0 0 0 +15.956 4.704 -0.738 0 0 0 0 0 0 0 +15.936 4.752 -0.737 0 0 0 0 0 0 0 +15.903 4.797 -0.736 0 0 0 0 0 0 0 +15.9 4.823 -0.737 0 0 0 0 0 0 0 +15.869 4.868 -0.736 0 0 0 0 0 0 0 +15.848 4.916 -0.735 0 0 0 0 0 0 0 +15.829 4.965 -0.735 0 0 0 0 0 0 0 +15.805 5.012 -0.735 0 0 0 0 0 0 0 +15.78 5.059 -0.734 0 0 0 0 0 0 0 +15.755 5.105 -0.733 0 0 0 0 0 0 0 +15.726 5.123 -0.732 0 0 0 0 0 0 0 +15.706 5.171 -0.732 0 0 0 0 0 0 0 +15.699 5.224 -0.733 0 0 0 0 0 0 0 +15.682 5.273 -0.733 0 0 0 0 0 0 0 +15.66 5.32 -0.732 0 0 0 0 0 0 0 +15.638 5.368 -0.732 0 0 0 0 0 0 0 +15.621 5.417 -0.732 0 0 0 0 0 0 0 +15.597 5.436 -0.731 0 0 0 0 0 0 0 +15.584 5.486 -0.731 0 0 0 0 0 0 0 +15.562 5.534 -0.731 0 0 0 0 0 0 0 +15.547 5.584 -0.731 0 0 0 0 0 0 0 +15.529 5.632 -0.731 0 0 0 0 0 0 0 +15.504 5.678 -0.731 0 0 0 0 0 0 0 +15.479 5.724 -0.73 0 0 0 0 0 0 0 +15.468 5.776 -0.731 0 0 0 0 0 0 0 +15.459 5.8 -0.731 0 0 0 0 0 0 0 +15.444 5.85 -0.731 0 0 0 0 0 0 0 +15.432 5.901 -0.731 0 0 0 0 0 0 0 +15.433 5.957 -0.732 0 0 0 0 0 0 0 +15.349 5.98 -0.729 0 0 0 0 0 0 0 +15.909 6.255 -0.764 0 0 0 0 0 0 0 +16.495 6.544 -0.8 0 0 0 0 0 0 0 +17.355 6.915 -0.853 0 0 0 0 0 0 0 +18.024 7.246 -0.895 0 0 0 0 0 0 0 +29.858 12.094 -1.618 0 0 0 0 0 0 0 +29.729 12.151 -1.613 0 0 0 0 0 0 0 +29.713 12.254 -1.614 0 0 0 0 0 0 0 +29.547 12.294 -1.606 0 0 0 0 0 0 0 +29.393 12.284 -1.598 0 0 0 0 0 0 0 +29.244 12.33 -1.591 0 0 0 0 0 0 0 +29.368 12.491 -1.602 0 0 0 0 0 0 0 +29.448 12.635 -1.609 0 0 0 0 0 0 0 +29.59 12.806 -1.62 0 0 0 0 0 0 0 +29.528 12.889 -1.619 0 0 0 0 0 0 0 +29.522 12.997 -1.621 0 0 0 0 0 0 0 +29.552 13.066 -1.624 0 0 0 0 0 0 0 +29.508 13.157 -1.624 0 0 0 0 0 0 0 +29.484 13.258 -1.625 0 0 0 0 0 0 0 +29.455 13.356 -1.626 0 0 0 0 0 0 0 +29.455 13.468 -1.628 0 0 0 0 0 0 0 +29.451 13.578 -1.631 0 0 0 0 0 0 0 +29.444 13.687 -1.633 0 0 0 0 0 0 0 +29.437 13.74 -1.634 0 0 0 0 0 0 0 +29.397 13.834 -1.634 0 0 0 0 0 0 0 +29.355 13.927 -1.634 0 0 0 0 0 0 0 +28.402 13.585 -1.577 0 0 0 0 0 0 0 +29.3 14.127 -1.636 0 0 0 0 0 0 0 +29.232 14.207 -1.635 0 0 0 0 0 0 0 +29.236 14.323 -1.638 0 0 0 0 0 0 0 +29.143 14.334 -1.633 0 0 0 0 0 0 0 +29.05 14.402 -1.63 0 0 0 0 0 0 0 +28.942 14.462 -1.626 0 0 0 0 0 0 0 +28.891 14.55 -1.626 0 0 0 0 0 0 0 +28.886 14.662 -1.629 0 0 0 0 0 0 0 +28.911 14.789 -1.633 0 0 0 0 0 0 0 +28.917 14.907 -1.637 0 0 0 0 0 0 0 +29 15.007 -1.643 0 0 0 0 0 0 0 +29.035 15.141 -1.648 0 0 0 0 0 0 0 +29.033 15.256 -1.651 0 0 0 0 0 0 0 +28.976 15.342 -1.651 0 0 0 0 0 0 0 +28.928 15.433 -1.651 0 0 0 0 0 0 0 +28.842 15.504 -1.648 0 0 0 0 0 0 0 +28.828 15.614 -1.651 0 0 0 0 0 0 0 +28.795 15.713 -1.652 0 0 0 0 0 0 0 +28.725 15.733 -1.649 0 0 0 0 0 0 0 +28.637 15.802 -1.646 0 0 0 0 0 0 0 +28.669 15.938 -1.652 0 0 0 0 0 0 0 +28.615 16.026 -1.651 0 0 0 0 0 0 0 +28.57 16.118 -1.652 0 0 0 0 0 0 0 +28.524 16.211 -1.652 0 0 0 0 0 0 0 +28.473 16.301 -1.652 0 0 0 0 0 0 0 +28.484 16.366 -1.654 0 0 0 0 0 0 0 +28.398 16.436 -1.652 0 0 0 0 0 0 0 +28.329 16.515 -1.651 0 0 0 0 0 0 0 +28.294 16.614 -1.652 0 0 0 0 0 0 0 +28.022 16.573 -1.638 0 0 0 0 0 0 0 +27.619 16.452 -1.615 0 0 0 0 0 0 0 +27.605 16.503 -1.616 0 0 0 0 0 0 0 +28.111 16.925 -1.652 0 0 0 0 0 0 0 +28.075 17.023 -1.653 0 0 0 0 0 0 0 +27.999 17.098 -1.652 0 0 0 0 0 0 0 +27.944 17.185 -1.652 0 0 0 0 0 0 0 +27.915 17.288 -1.654 0 0 0 0 0 0 0 +27.832 17.358 -1.652 0 0 0 0 0 0 0 +27.82 17.411 -1.653 0 0 0 0 0 0 0 +27.745 17.486 -1.651 0 0 0 0 0 0 0 +27.703 17.581 -1.652 0 0 0 0 0 0 0 +27.663 17.678 -1.653 0 0 0 0 0 0 0 +27.587 17.752 -1.652 0 0 0 0 0 0 0 +27.474 17.802 -1.648 0 0 0 0 0 0 0 +13.114 8.572 -0.683 0 0 0 0 0 0 0 +13.097 8.59 -0.683 0 0 0 0 0 0 0 +27.329 18.013 -1.648 0 0 0 0 0 0 0 +27.28 18.105 -1.648 0 0 0 0 0 0 0 +27.246 18.206 -1.65 0 0 0 0 0 0 0 +27.239 18.325 -1.653 0 0 0 0 0 0 0 +27.213 18.432 -1.655 0 0 0 0 0 0 0 +27.214 18.557 -1.659 0 0 0 0 0 0 0 +27.228 18.692 -1.664 0 0 0 0 0 0 0 +27.289 18.797 -1.671 0 0 0 0 0 0 0 +27.315 18.942 -1.676 0 0 0 0 0 0 0 +27.316 19.07 -1.681 0 0 0 0 0 0 0 +27.338 19.213 -1.686 0 0 0 0 0 0 0 +27.356 19.354 -1.692 0 0 0 0 0 0 0 +27.365 19.49 -1.697 0 0 0 0 0 0 0 +27.401 19.645 -1.703 0 0 0 0 0 0 0 +27.457 19.751 -1.709 0 0 0 0 0 0 0 +27.473 19.894 -1.715 0 0 0 0 0 0 0 +17.489 12.76 -1.021 0 0 0 0 0 0 0 +27.595 20.248 -1.732 0 0 0 0 0 0 0 +16.436 12.152 -0.953 0 0 0 0 0 0 0 +16.34 12.161 -0.949 0 0 0 0 0 0 0 +16.572 12.414 -0.968 0 0 0 0 0 0 0 +16.34 12.281 -0.953 0 0 0 0 0 0 0 +27.566 20.832 -1.751 0 0 0 0 0 0 0 +27.561 20.964 -1.755 0 0 0 0 0 0 0 +17.829 13.662 -1.067 0 0 0 0 0 0 0 +17.479 13.569 -1.048 0 0 0 0 0 0 0 +17.473 13.652 -1.051 0 0 0 0 0 0 0 +17.459 13.686 -1.051 0 0 0 0 0 0 0 +17.388 13.719 -1.049 0 0 0 0 0 0 0 +15.067 11.969 -0.885 0 0 0 0 0 0 0 +17.404 13.91 -1.057 0 0 0 0 0 0 0 +17.351 13.957 -1.056 0 0 0 0 0 0 0 +6.756 5.525 -0.291 0 0 0 0 0 0 0 +6.707 5.503 -0.288 0 0 0 0 0 0 0 +6.679 5.515 -0.287 0 0 0 0 0 0 0 +6.588 5.475 -0.281 0 0 0 0 0 0 0 +6.696 5.6 -0.291 0 0 0 0 0 0 0 +11.791 9.898 -0.668 0 0 0 0 0 0 0 +11.763 9.938 -0.668 0 0 0 0 0 0 0 +11.733 9.976 -0.668 0 0 0 0 0 0 0 +11.766 10.036 -0.672 0 0 0 0 0 0 0 +11.806 10.134 -0.677 0 0 0 0 0 0 0 +11.777 10.173 -0.677 0 0 0 0 0 0 0 +16.973 14.739 -1.068 0 0 0 0 0 0 0 +15.044 13.151 -0.927 0 0 0 0 0 0 0 +16.539 14.547 -1.042 0 0 0 0 0 0 0 +16.452 14.562 -1.039 0 0 0 0 0 0 0 +14.755 13.105 -0.913 0 0 0 0 0 0 0 +14.739 13.174 -0.915 0 0 0 0 0 0 0 +15.241 13.708 -0.956 0 0 0 0 0 0 0 +15.168 13.729 -0.954 0 0 0 0 0 0 0 +17.583 16.009 -1.142 0 0 0 0 0 0 0 +17.512 16.046 -1.14 0 0 0 0 0 0 0 +17.313 15.964 -1.129 0 0 0 0 0 0 0 +17.287 15.99 -1.128 0 0 0 0 0 0 0 +16.282 15.158 -1.055 0 0 0 0 0 0 0 +16.229 15.204 -1.054 0 0 0 0 0 0 0 +16.165 15.24 -1.053 0 0 0 0 0 0 0 +16.097 15.271 -1.052 0 0 0 0 0 0 0 +16.023 15.297 -1.05 0 0 0 0 0 0 0 +15.983 15.355 -1.05 0 0 0 0 0 0 0 +15.966 15.387 -1.051 0 0 0 0 0 0 0 +15.921 15.44 -1.051 0 0 0 0 0 0 0 +15.905 15.522 -1.054 0 0 0 0 0 0 0 +15.95 15.664 -1.061 0 0 0 0 0 0 0 +16.11 15.92 -1.078 0 0 0 0 0 0 0 +17.007 16.91 -1.153 0 0 0 0 0 0 0 +16.983 16.993 -1.155 0 0 0 0 0 0 0 +16.91 16.973 -1.152 0 0 0 0 0 0 0 +16.726 16.895 -1.141 0 0 0 0 0 0 0 +14.315 14.555 -0.951 0 0 0 0 0 0 0 +13.592 13.91 -0.897 0 0 0 0 0 0 0 +15.924 16.392 -1.089 0 0 0 0 0 0 0 +16.03 16.606 -1.102 0 0 0 0 0 0 0 +13.224 13.791 -0.877 0 0 0 0 0 0 0 +14.08 14.774 -0.951 0 0 0 0 0 0 0 +15.313 16.115 -1.054 0 0 0 0 0 0 0 +12.771 13.531 -0.849 0 0 0 0 0 0 0 +15.408 16.42 -1.07 0 0 0 0 0 0 0 +15.381 16.495 -1.072 0 0 0 0 0 0 0 +14.139 15.261 -0.973 0 0 0 0 0 0 0 +15.558 16.895 -1.096 0 0 0 0 0 0 0 +15.676 17.131 -1.11 0 0 0 0 0 0 0 +15.731 17.245 -1.117 0 0 0 0 0 0 0 +13.778 15.205 -0.957 0 0 0 0 0 0 0 +13.52 15.015 -0.94 0 0 0 0 0 0 0 +13.76 15.377 -0.964 0 0 0 0 0 0 0 +13.816 15.538 -0.973 0 0 0 0 0 0 0 +13.753 15.565 -0.971 0 0 0 0 0 0 0 +14.749 16.742 -1.059 0 0 0 0 0 0 0 +14.363 16.409 -1.03 0 0 0 0 0 0 0 +14.646 16.837 -1.059 0 0 0 0 0 0 0 +13.519 15.644 -0.966 0 0 0 0 0 0 0 +14.79 17.22 -1.081 0 0 0 0 0 0 0 +13.131 15.391 -0.941 0 0 0 0 0 0 0 +14.679 17.364 -1.083 0 0 0 0 0 0 0 +14.866 17.697 -1.104 0 0 0 0 0 0 0 +14.7 17.724 -1.099 0 0 0 0 0 0 0 +14.559 17.667 -1.091 0 0 0 0 0 0 0 +14.151 17.284 -1.06 0 0 0 0 0 0 0 +14.178 17.429 -1.067 0 0 0 0 0 0 0 +13.974 17.289 -1.054 0 0 0 0 0 0 0 +13.828 17.163 -1.043 0 0 0 0 0 0 0 +14.519 18.135 -1.111 0 0 0 0 0 0 0 +14.364 18.058 -1.102 0 0 0 0 0 0 0 +14.327 18.128 -1.104 0 0 0 0 0 0 0 +14.32 18.236 -1.108 0 0 0 0 0 0 0 +14.283 18.308 -1.11 0 0 0 0 0 0 0 +14.216 18.34 -1.109 0 0 0 0 0 0 0 +14.308 18.519 -1.12 0 0 0 0 0 0 0 +14.485 18.869 -1.142 0 0 0 0 0 0 0 +14.424 18.913 -1.142 0 0 0 0 0 0 0 +14.58 19.241 -1.162 0 0 0 0 0 0 0 +14.559 19.339 -1.166 0 0 0 0 0 0 0 +14.455 19.327 -1.162 0 0 0 0 0 0 0 +12.936 17.414 -1.024 0 0 0 0 0 0 0 +12.874 17.445 -1.023 0 0 0 0 0 0 0 +12.861 17.484 -1.024 0 0 0 0 0 0 0 +12.781 17.491 -1.022 0 0 0 0 0 0 0 +12.721 17.525 -1.021 0 0 0 0 0 0 0 +12.655 17.55 -1.02 0 0 0 0 0 0 0 +12.593 17.58 -1.02 0 0 0 0 0 0 0 +12.526 17.603 -1.019 0 0 0 0 0 0 0 +12.483 17.6 -1.017 0 0 0 0 0 0 0 +12.448 17.668 -1.019 0 0 0 0 0 0 0 +12.358 17.658 -1.016 0 0 0 0 0 0 0 +12.304 17.699 -1.016 0 0 0 0 0 0 0 +12.238 17.723 -1.015 0 0 0 0 0 0 0 +12.328 17.973 -1.029 0 0 0 0 0 0 0 +12.466 18.297 -1.049 0 0 0 0 0 0 0 +12.625 18.655 -1.071 0 0 0 0 0 0 0 +12.814 18.997 -1.093 0 0 0 0 0 0 0 +16.109 24.034 -1.433 0 0 0 0 0 0 0 +16.182 24.307 -1.448 0 0 0 0 0 0 0 +16.161 24.441 -1.454 0 0 0 0 0 0 0 +15.956 24.296 -1.441 0 0 0 0 0 0 0 +15.918 24.405 -1.444 0 0 0 0 0 0 0 +15.871 24.502 -1.448 0 0 0 0 0 0 0 +15.878 24.597 -1.452 0 0 0 0 0 0 0 +15.799 24.643 -1.452 0 0 0 0 0 0 0 +15.691 24.646 -1.449 0 0 0 0 0 0 0 +15.697 24.826 -1.458 0 0 0 0 0 0 0 +15.607 24.857 -1.457 0 0 0 0 0 0 0 +15.481 24.828 -1.451 0 0 0 0 0 0 0 +15.569 25.145 -1.469 0 0 0 0 0 0 0 +15.546 25.196 -1.471 0 0 0 0 0 0 0 +15.403 25.141 -1.464 0 0 0 0 0 0 0 +15.392 25.3 -1.471 0 0 0 0 0 0 0 +15.309 25.343 -1.471 0 0 0 0 0 0 0 +15.233 25.398 -1.472 0 0 0 0 0 0 0 +15.192 25.511 -1.476 0 0 0 0 0 0 0 +15.159 25.638 -1.481 0 0 0 0 0 0 0 +15.162 25.735 -1.486 0 0 0 0 0 0 0 +15.141 25.885 -1.493 0 0 0 0 0 0 0 +15.141 26.072 -1.502 0 0 0 0 0 0 0 +15.127 26.237 -1.509 0 0 0 0 0 0 0 +15.11 26.398 -1.517 0 0 0 0 0 0 0 +15.058 26.5 -1.52 0 0 0 0 0 0 0 +15.078 26.731 -1.532 0 0 0 0 0 0 0 +15.108 26.882 -1.541 0 0 0 0 0 0 0 +15.08 27.03 -1.547 0 0 0 0 0 0 0 +15.057 27.189 -1.554 0 0 0 0 0 0 0 +12.726 23.159 -1.291 0 0 0 0 0 0 0 +12.619 23.136 -1.287 0 0 0 0 0 0 0 +12.524 23.135 -1.285 0 0 0 0 0 0 0 +12.445 23.162 -1.284 0 0 0 0 0 0 0 +12.395 23.245 -1.287 0 0 0 0 0 0 0 +12.392 23.326 -1.29 0 0 0 0 0 0 0 +14.891 28.234 -1.602 0 0 0 0 0 0 0 +14.106 26.953 -1.517 0 0 0 0 0 0 0 +14.015 26.985 -1.516 0 0 0 0 0 0 0 +14.053 27.266 -1.531 0 0 0 0 0 0 0 +13.817 27.017 -1.513 0 0 0 0 0 0 0 +14.609 28.897 -1.628 0 0 0 0 0 0 0 +14.53 28.966 -1.629 0 0 0 0 0 0 0 +14.445 29.024 -1.63 0 0 0 0 0 0 0 +14.353 29.067 -1.63 0 0 0 0 0 0 0 +14.376 29.345 -1.645 0 0 0 0 0 0 0 +14.311 29.448 -1.648 0 0 0 0 0 0 0 +14.213 29.48 -1.647 0 0 0 0 0 0 0 +14.087 29.337 -1.637 0 0 0 0 0 0 0 +13.866 29.112 -1.62 0 0 0 0 0 0 0 +13.837 29.288 -1.629 0 0 0 0 0 0 0 +13.888 29.635 -1.647 0 0 0 0 0 0 0 +13.751 29.584 -1.642 0 0 0 0 0 0 0 +13.795 29.924 -1.66 0 0 0 0 0 0 0 +13.762 30.1 -1.668 0 0 0 0 0 0 0 +13.711 30.114 -1.668 0 0 0 0 0 0 0 +13.618 30.161 -1.668 0 0 0 0 0 0 0 +13.589 30.349 -1.677 0 0 0 0 0 0 0 +13.493 30.392 -1.677 0 0 0 0 0 0 0 +13.382 30.399 -1.675 0 0 0 0 0 0 0 +13.332 30.545 -1.681 0 0 0 0 0 0 0 +13.24 30.594 -1.682 0 0 0 0 0 0 0 +13.221 30.683 -1.686 0 0 0 0 0 0 0 +13.132 30.743 -1.687 0 0 0 0 0 0 0 +13.056 30.832 -1.69 0 0 0 0 0 0 0 +12.958 30.871 -1.69 0 0 0 0 0 0 0 +12.839 30.858 -1.687 0 0 0 0 0 0 0 +12.82 31.086 -1.698 0 0 0 0 0 0 0 +12.748 31.189 -1.702 0 0 0 0 0 0 0 +12.664 31.264 -1.704 0 0 0 0 0 0 0 +12.64 31.347 -1.708 0 0 0 0 0 0 0 +12.558 31.427 -1.711 0 0 0 0 0 0 0 +12.437 31.411 -1.707 0 0 0 0 0 0 0 +12.386 31.571 -1.715 0 0 0 0 0 0 0 +12.309 31.667 -1.718 0 0 0 0 0 0 0 +12.227 31.752 -1.721 0 0 0 0 0 0 0 +12.16 31.874 -1.726 0 0 0 0 0 0 0 +12.066 31.778 -1.719 0 0 0 0 0 0 0 +12.033 31.995 -1.73 0 0 0 0 0 0 0 +11.959 32.104 -1.734 0 0 0 0 0 0 0 +11.895 32.24 -1.74 0 0 0 0 0 0 0 +11.82 32.349 -1.744 0 0 0 0 0 0 0 +11.742 32.451 -1.748 0 0 0 0 0 0 0 +11.687 32.62 -1.756 0 0 0 0 0 0 0 +11.655 32.693 -1.759 0 0 0 0 0 0 0 +11.566 32.767 -1.762 0 0 0 0 0 0 0 +11.489 32.876 -1.766 0 0 0 0 0 0 0 +11.359 32.837 -1.762 0 0 0 0 0 0 0 +11.283 32.95 -1.766 0 0 0 0 0 0 0 +11.194 33.029 -1.769 0 0 0 0 0 0 0 +11.096 33.081 -1.77 0 0 0 0 0 0 0 +11.048 33.111 -1.771 0 0 0 0 0 0 0 +10.968 33.218 -1.775 0 0 0 0 0 0 0 +10.873 33.282 -1.777 0 0 0 0 0 0 0 +10.786 33.37 -1.78 0 0 0 0 0 0 0 +10.691 33.434 -1.782 0 0 0 0 0 0 0 +10.599 33.509 -1.784 0 0 0 0 0 0 0 +10.506 33.58 -1.786 0 0 0 0 0 0 0 +10.416 33.663 -1.789 0 0 0 0 0 0 0 +10.382 33.742 -1.793 0 0 0 0 0 0 0 +10.3 33.853 -1.798 0 0 0 0 0 0 0 +10.216 33.96 -1.802 0 0 0 0 0 0 0 +10.123 34.037 -1.805 0 0 0 0 0 0 0 +10.025 34.1 -1.807 0 0 0 0 0 0 0 +9.934 34.187 -1.81 0 0 0 0 0 0 0 +9.838 34.256 -1.812 0 0 0 0 0 0 0 +9.8 34.327 -1.815 0 0 0 0 0 0 0 +9.708 34.413 -1.819 0 0 0 0 0 0 0 +9.618 34.509 -1.823 0 0 0 0 0 0 0 +9.538 34.643 -1.829 0 0 0 0 0 0 0 +9.543 35.091 -1.853 0 0 0 0 0 0 0 +9.613 35.79 -1.892 0 0 0 0 0 0 0 +9.689 36.528 -1.934 0 0 0 0 0 0 0 +9.799 37.178 -1.971 0 0 0 0 0 0 0 +8.59 33.02 -1.726 0 0 0 0 0 0 0 +8.457 32.937 -1.72 0 0 0 0 0 0 0 +8.37 33.027 -1.723 0 0 0 0 0 0 0 +8.172 32.679 -1.702 0 0 0 0 0 0 0 +8.073 32.718 -1.702 0 0 0 0 0 0 0 +7.952 32.668 -1.698 0 0 0 0 0 0 0 +7.886 32.622 -1.695 0 0 0 0 0 0 0 +7.797 32.703 -1.698 0 0 0 0 0 0 0 +7.705 32.77 -1.7 0 0 0 0 0 0 0 +7.599 32.785 -1.7 0 0 0 0 0 0 0 +7.453 33.097 -1.715 0 0 0 0 0 0 0 +7.32 32.989 -1.708 0 0 0 0 0 0 0 +7.333 33.544 -1.738 0 0 0 0 0 0 0 +7.273 33.521 -1.736 0 0 0 0 0 0 0 +7.086 33.163 -1.714 0 0 0 0 0 0 0 +2.598 12.826 -0.537 0 0 0 0 0 0 0 +2.529 12.693 -0.529 0 0 0 0 0 0 0 +3.125 16.042 -0.721 0 0 0 0 0 0 0 +3.206 16.73 -0.76 0 0 0 0 0 0 0 +3.281 17.411 -0.799 0 0 0 0 0 0 0 +3.358 18.13 -0.84 0 0 0 0 0 0 0 +3.45 18.949 -0.886 0 0 0 0 0 0 0 +3.569 19.952 -0.943 0 0 0 0 0 0 0 +0.581 3.433 0.006 0 0 0 0 0 0 0 +0.581 3.466 0.004 0 0 0 0 0 0 0 +0.569 3.457 0.005 0 0 0 0 0 0 0 +0.559 3.469 0.004 0 0 0 0 0 0 0 +0.548 3.465 0.005 0 0 0 0 0 0 0 +0.528 3.415 0.007 0 0 0 0 0 0 0 +0.517 3.411 0.008 0 0 0 0 0 0 0 +0.502 3.387 0.009 0 0 0 0 0 0 0 +0.493 3.364 0.011 0 0 0 0 0 0 0 +3.171 22.093 -1.059 0 0 0 0 0 0 0 +0.476 3.32 0.013 0 0 0 0 0 0 0 +3.103 22.115 -1.06 0 0 0 0 0 0 0 +0.457 3.264 0.016 0 0 0 0 0 0 0 +4.62 33.595 -1.714 0 0 0 0 0 0 0 +4.52 33.649 -1.717 0 0 0 0 0 0 0 +4.475 33.712 -1.72 0 0 0 0 0 0 0 +4.372 33.753 -1.721 0 0 0 0 0 0 0 +4.277 33.852 -1.726 0 0 0 0 0 0 0 +4.181 33.948 -1.731 0 0 0 0 0 0 0 +4.083 34.033 -1.735 0 0 0 0 0 0 0 +3.982 34.093 -1.738 0 0 0 0 0 0 0 +3.877 34.123 -1.739 0 0 0 0 0 0 0 +3.773 34.167 -1.741 0 0 0 0 0 0 0 +3.73 34.266 -1.746 0 0 0 0 0 0 0 +3.631 34.363 -1.751 0 0 0 0 0 0 0 +3.532 34.464 -1.756 0 0 0 0 0 0 0 +3.612 36.356 -1.863 0 0 0 0 0 0 0 +3.515 36.542 -1.873 0 0 0 0 0 0 0 +3.408 36.633 -1.877 0 0 0 0 0 0 0 +3.304 36.766 -1.884 0 0 0 0 0 0 0 +3.269 37.032 -1.899 0 0 0 0 0 0 0 +3.179 37.349 -1.916 0 0 0 0 0 0 0 +3.031 36.986 -1.895 0 0 0 0 0 0 0 +2.914 36.982 -1.894 0 0 0 0 0 0 0 +2.798 36.999 -1.895 0 0 0 0 0 0 0 +2.683 37.021 -1.896 0 0 0 0 0 0 0 +2.567 37.041 -1.896 0 0 0 0 0 0 0 +2.511 37.071 -1.898 0 0 0 0 0 0 0 +2.395 37.089 -1.898 0 0 0 0 0 0 0 +2.279 37.104 -1.899 0 0 0 0 0 0 0 +2.162 37.111 -1.899 0 0 0 0 0 0 0 +2.043 37.074 -1.896 0 0 0 0 0 0 0 +1.926 37.056 -1.895 0 0 0 0 0 0 0 +1.808 37.038 -1.894 0 0 0 0 0 0 0 +1.64 37.194 -1.902 0 0 0 0 0 0 0 +1.523 37.197 -1.902 0 0 0 0 0 0 0 +0.124 3.232 0.02 0 0 0 0 0 0 0 +1.408 37.235 -1.904 0 0 0 0 0 0 0 +1.29 37.222 -1.903 0 0 0 0 0 0 0 +1.173 37.238 -1.904 0 0 0 0 0 0 0 +1.056 37.241 -1.904 0 0 0 0 0 0 0 +0.94 37.262 -1.905 0 0 0 0 0 0 0 +0.882 37.288 -1.906 0 0 0 0 0 0 0 +0.765 37.314 -1.907 0 0 0 0 0 0 0 +0.649 37.34 -1.909 0 0 0 0 0 0 0 +0.532 37.376 -1.911 0 0 0 0 0 0 0 +0.414 37.394 -1.911 0 0 0 0 0 0 0 +0.297 37.413 -1.912 0 0 0 0 0 0 0 +0.182 37.845 -1.937 0 0 0 0 0 0 0 +0.099 31.966 -1.604 0 0 0 0 0 0 0 +-0.002 31.162 -1.559 0 0 0 0 0 0 0 +-0.098 30.433 -1.518 0 0 0 0 0 0 0 +-0.189 29.713 -1.477 0 0 0 0 0 0 0 +-0.277 29.09 -1.442 0 0 0 0 0 0 0 +-0.361 28.466 -1.407 0 0 0 0 0 0 0 +-0.442 27.846 -1.372 0 0 0 0 0 0 0 +-0.476 27.262 -1.339 0 0 0 0 0 0 0 +-0.551 26.733 -1.309 0 0 0 0 0 0 0 +-0.622 26.168 -1.277 0 0 0 0 0 0 0 +-0.692 25.679 -1.25 0 0 0 0 0 0 0 +-0.758 25.186 -1.222 0 0 0 0 0 0 0 +-0.822 24.718 -1.195 0 0 0 0 0 0 0 +-0.884 24.273 -1.17 0 0 0 0 0 0 0 +-0.905 23.786 -1.143 0 0 0 0 0 0 0 +-0.965 23.418 -1.122 0 0 0 0 0 0 0 +-1.028 23.174 -1.109 0 0 0 0 0 0 0 +-1.074 22.596 -1.076 0 0 0 0 0 0 0 +-1.125 22.192 -1.053 0 0 0 0 0 0 0 +-1.177 21.849 -1.034 0 0 0 0 0 0 0 +-1.227 21.508 -1.015 0 0 0 0 0 0 0 +-1.239 21.125 -0.994 0 0 0 0 0 0 0 +-1.285 20.795 -0.975 0 0 0 0 0 0 0 +-1.329 20.456 -0.956 0 0 0 0 0 0 0 +-1.371 20.119 -0.937 0 0 0 0 0 0 0 +-1.426 20.001 -0.931 0 0 0 0 0 0 0 +-1.475 19.801 -0.92 0 0 0 0 0 0 0 +-1.498 19.283 -0.891 0 0 0 0 0 0 0 +-1.531 18.935 -0.871 0 0 0 0 0 0 0 +-1.542 18.698 -0.858 0 0 0 0 0 0 0 +-1.58 18.444 -0.844 0 0 0 0 0 0 0 +-1.616 18.195 -0.83 0 0 0 0 0 0 0 +-1.649 17.919 -0.815 0 0 0 0 0 0 0 +-1.682 17.661 -0.8 0 0 0 0 0 0 0 +-1.715 17.431 -0.787 0 0 0 0 0 0 0 +-1.751 17.231 -0.776 0 0 0 0 0 0 0 +-1.75 16.954 -0.761 0 0 0 0 0 0 0 +-1.786 16.782 -0.751 0 0 0 0 0 0 0 +-1.841 16.32 -0.726 0 0 0 0 0 0 0 +-1.87 16.12 -0.715 0 0 0 0 0 0 0 +-1.899 15.931 -0.704 0 0 0 0 0 0 0 +-1.924 15.715 -0.692 0 0 0 0 0 0 0 +-1.927 15.537 -0.682 0 0 0 0 0 0 0 +-1.953 15.347 -0.672 0 0 0 0 0 0 0 +-1.978 15.161 -0.662 0 0 0 0 0 0 0 +-2.004 14.992 -0.652 0 0 0 0 0 0 0 +-2.027 14.806 -0.642 0 0 0 0 0 0 0 +-2.049 14.627 -0.632 0 0 0 0 0 0 0 +-2.075 14.474 -0.624 0 0 0 0 0 0 0 +-2.074 14.305 -0.614 0 0 0 0 0 0 0 +-2.095 14.138 -0.605 0 0 0 0 0 0 0 +-2.119 13.997 -0.598 0 0 0 0 0 0 0 +-2.139 13.833 -0.589 0 0 0 0 0 0 0 +-2.163 13.7 -0.581 0 0 0 0 0 0 0 +-2.183 13.545 -0.573 0 0 0 0 0 0 0 +-2.203 13.404 -0.565 0 0 0 0 0 0 0 +-2.223 13.261 -0.557 0 0 0 0 0 0 0 +-2.218 13.102 -0.548 0 0 0 0 0 0 0 +-2.238 12.971 -0.541 0 0 0 0 0 0 0 +-2.264 12.881 -0.537 0 0 0 0 0 0 0 +-2.293 12.58 -0.52 0 0 0 0 0 0 0 +-2.296 12.372 -0.509 0 0 0 0 0 0 0 +-2.329 12.335 -0.507 0 0 0 0 0 0 0 +-2.33 12.232 -0.501 0 0 0 0 0 0 0 +-2.344 12.099 -0.494 0 0 0 0 0 0 0 +-2.364 11.995 -0.488 0 0 0 0 0 0 0 +-2.507 10.817 -0.425 0 0 0 0 0 0 0 +-2.473 10.591 -0.412 0 0 0 0 0 0 0 +-2.528 10.677 -0.417 0 0 0 0 0 0 0 +-2.56 10.663 -0.417 0 0 0 0 0 0 0 +-2.808 11.546 -0.469 0 0 0 0 0 0 0 +-2.755 11.17 -0.448 0 0 0 0 0 0 0 +-2.882 11.534 -0.469 0 0 0 0 0 0 0 +-2.922 11.54 -0.47 0 0 0 0 0 0 0 +-2.899 11.295 -0.456 0 0 0 0 0 0 0 +-2.91 11.267 -0.455 0 0 0 0 0 0 0 +-2.953 11.287 -0.457 0 0 0 0 0 0 0 +-2.989 11.28 -0.457 0 0 0 0 0 0 0 +-2.734 9.805 -0.373 0 0 0 0 0 0 0 +-2.754 9.816 -0.374 0 0 0 0 0 0 0 +-2.794 9.84 -0.375 0 0 0 0 0 0 0 +-2.802 9.751 -0.371 0 0 0 0 0 0 0 +-2.827 9.723 -0.37 0 0 0 0 0 0 0 +-2.863 9.733 -0.371 0 0 0 0 0 0 0 +-2.896 9.732 -0.371 0 0 0 0 0 0 0 +-2.91 9.669 -0.368 0 0 0 0 0 0 0 +-2.761 9.011 -0.33 0 0 0 0 0 0 0 +-2.779 8.97 -0.328 0 0 0 0 0 0 0 +-2.793 8.915 -0.325 0 0 0 0 0 0 0 +-2.81 8.87 -0.323 0 0 0 0 0 0 0 +-2.825 8.823 -0.321 0 0 0 0 0 0 0 +-2.834 8.756 -0.317 0 0 0 0 0 0 0 +-2.817 8.654 -0.312 0 0 0 0 0 0 0 +-2.874 8.646 -0.312 0 0 0 0 0 0 0 +-2.901 8.635 -0.312 0 0 0 0 0 0 0 +-2.954 8.703 -0.317 0 0 0 0 0 0 0 +-2.984 8.701 -0.317 0 0 0 0 0 0 0 +-3.015 8.703 -0.318 0 0 0 0 0 0 0 +-3.047 8.707 -0.319 0 0 0 0 0 0 0 +-3.063 8.71 -0.319 0 0 0 0 0 0 0 +-3.07 8.642 -0.316 0 0 0 0 0 0 0 +-3.175 8.852 -0.329 0 0 0 0 0 0 0 +-3.081 8.502 -0.308 0 0 0 0 0 0 0 +-3.08 8.417 -0.304 0 0 0 0 0 0 0 +-3.086 8.349 -0.3 0 0 0 0 0 0 0 +-3.092 8.285 -0.297 0 0 0 0 0 0 0 +-3.1 8.267 -0.296 0 0 0 0 0 0 0 +-3.094 8.173 -0.291 0 0 0 0 0 0 0 +-3.119 8.162 -0.291 0 0 0 0 0 0 0 +-3.134 8.124 -0.289 0 0 0 0 0 0 0 +-3.142 8.068 -0.287 0 0 0 0 0 0 0 +-3.261 8.298 -0.301 0 0 0 0 0 0 0 +-3.564 8.951 -0.342 0 0 0 0 0 0 0 +-3.603 8.967 -0.344 0 0 0 0 0 0 0 +-3.587 8.847 -0.337 0 0 0 0 0 0 0 +-3.218 7.787 -0.274 0 0 0 0 0 0 0 +-3.44 8.006 -0.29 0 0 0 0 0 0 0 +-3.457 7.975 -0.289 0 0 0 0 0 0 0 +-3.476 7.951 -0.288 0 0 0 0 0 0 0 +-3.305 7.365 -0.254 0 0 0 0 0 0 0 +-3.252 7.216 -0.245 0 0 0 0 0 0 0 +-3.328 7.324 -0.252 0 0 0 0 0 0 0 +-3.601 7.798 -0.283 0 0 0 0 0 0 0 +-3.608 7.747 -0.28 0 0 0 0 0 0 0 +-3.612 7.694 -0.278 0 0 0 0 0 0 0 +-3.619 7.645 -0.275 0 0 0 0 0 0 0 +-3.618 7.612 -0.274 0 0 0 0 0 0 0 +-3.62 7.555 -0.271 0 0 0 0 0 0 0 +-3.633 7.521 -0.269 0 0 0 0 0 0 0 +-3.642 7.479 -0.267 0 0 0 0 0 0 0 +-3.666 7.469 -0.268 0 0 0 0 0 0 0 +-3.701 7.481 -0.269 0 0 0 0 0 0 0 +-3.725 7.469 -0.269 0 0 0 0 0 0 0 +-3.757 7.475 -0.27 0 0 0 0 0 0 0 +-3.775 7.482 -0.271 0 0 0 0 0 0 0 +-3.804 7.481 -0.272 0 0 0 0 0 0 0 +-3.83 7.474 -0.272 0 0 0 0 0 0 0 +-3.863 7.481 -0.273 0 0 0 0 0 0 0 +-3.891 7.476 -0.274 0 0 0 0 0 0 0 +-3.927 7.489 -0.275 0 0 0 0 0 0 0 +-3.95 7.475 -0.275 0 0 0 0 0 0 0 +-3.977 7.499 -0.277 0 0 0 0 0 0 0 +-4.002 7.488 -0.277 0 0 0 0 0 0 0 +-4.037 7.498 -0.279 0 0 0 0 0 0 0 +-4.069 7.501 -0.28 0 0 0 0 0 0 0 +-4.097 7.495 -0.28 0 0 0 0 0 0 0 +-4.132 7.503 -0.281 0 0 0 0 0 0 0 +-4.158 7.496 -0.282 0 0 0 0 0 0 0 +-4.181 7.508 -0.283 0 0 0 0 0 0 0 +-4.212 7.509 -0.284 0 0 0 0 0 0 0 +-4.246 7.515 -0.285 0 0 0 0 0 0 0 +-4.283 7.524 -0.287 0 0 0 0 0 0 0 +-4.312 7.521 -0.287 0 0 0 0 0 0 0 +-4.348 7.528 -0.289 0 0 0 0 0 0 0 +-4.377 7.525 -0.289 0 0 0 0 0 0 0 +-4.398 7.534 -0.29 0 0 0 0 0 0 0 +-4.436 7.544 -0.292 0 0 0 0 0 0 0 +-4.47 7.547 -0.293 0 0 0 0 0 0 0 +-4.513 7.566 -0.295 0 0 0 0 0 0 0 +-4.543 7.562 -0.296 0 0 0 0 0 0 0 +-4.575 7.561 -0.297 0 0 0 0 0 0 0 +-5.019 8.242 -0.343 0 0 0 0 0 0 0 +-5.083 8.289 -0.347 0 0 0 0 0 0 0 +-5.097 8.283 -0.347 0 0 0 0 0 0 0 +-5.154 8.258 -0.347 0 0 0 0 0 0 0 +-5.181 8.243 -0.348 0 0 0 0 0 0 0 +-5.34 8.44 -0.362 0 0 0 0 0 0 0 +-5.218 8.189 -0.346 0 0 0 0 0 0 0 +-5.038 7.558 -0.311 0 0 0 0 0 0 0 +-5.084 7.575 -0.313 0 0 0 0 0 0 0 +-5.084 7.549 -0.312 0 0 0 0 0 0 0 +-15.255 22.592 -1.338 0 0 0 0 0 0 0 +-15.363 22.598 -1.342 0 0 0 0 0 0 0 +-15.439 22.556 -1.343 0 0 0 0 0 0 0 +-15.571 22.597 -1.349 0 0 0 0 0 0 0 +-17.144 24.718 -1.498 0 0 0 0 0 0 0 +-18.088 25.907 -1.584 0 0 0 0 0 0 0 +-17.201 24.552 -1.492 0 0 0 0 0 0 0 +-17.203 24.392 -1.485 0 0 0 0 0 0 0 +-17.214 24.244 -1.478 0 0 0 0 0 0 0 +-16.596 23.218 -1.411 0 0 0 0 0 0 0 +-16.57 23.028 -1.401 0 0 0 0 0 0 0 +-16.547 22.843 -1.392 0 0 0 0 0 0 0 +-16.541 22.685 -1.384 0 0 0 0 0 0 0 +-16.501 22.555 -1.377 0 0 0 0 0 0 0 +-16.529 22.445 -1.373 0 0 0 0 0 0 0 +-16.64 22.448 -1.377 0 0 0 0 0 0 0 +-16.671 22.343 -1.373 0 0 0 0 0 0 0 +-16.679 22.207 -1.367 0 0 0 0 0 0 0 +-16.642 22.013 -1.357 0 0 0 0 0 0 0 +-16.806 22.086 -1.366 0 0 0 0 0 0 0 +-17.071 22.289 -1.384 0 0 0 0 0 0 0 +-16.829 21.9 -1.359 0 0 0 0 0 0 0 +-16.651 21.528 -1.336 0 0 0 0 0 0 0 +-16.775 21.548 -1.341 0 0 0 0 0 0 0 +-16.505 21.065 -1.31 0 0 0 0 0 0 0 +-16.627 21.083 -1.315 0 0 0 0 0 0 0 +-16.584 20.893 -1.305 0 0 0 0 0 0 0 +-16.398 20.526 -1.282 0 0 0 0 0 0 0 +-16.485 20.568 -1.287 0 0 0 0 0 0 0 +-16.609 20.59 -1.293 0 0 0 0 0 0 0 +-16.671 20.534 -1.293 0 0 0 0 0 0 0 +-15.473 18.934 -1.18 0 0 0 0 0 0 0 +-15.567 18.927 -1.183 0 0 0 0 0 0 0 +-15.607 18.855 -1.181 0 0 0 0 0 0 0 +-15.702 18.849 -1.184 0 0 0 0 0 0 0 +-15.695 18.78 -1.181 0 0 0 0 0 0 0 +-11.727 13.932 -0.827 0 0 0 0 0 0 0 +-11.752 13.874 -0.825 0 0 0 0 0 0 0 +-11.813 13.857 -0.827 0 0 0 0 0 0 0 +-11.868 13.833 -0.828 0 0 0 0 0 0 0 +-11.877 13.757 -0.825 0 0 0 0 0 0 0 +-11.883 13.675 -0.821 0 0 0 0 0 0 0 +-11.879 13.628 -0.819 0 0 0 0 0 0 0 +-11.938 13.609 -0.821 0 0 0 0 0 0 0 +-12.042 13.642 -0.826 0 0 0 0 0 0 0 +-12.089 13.608 -0.826 0 0 0 0 0 0 0 +-15.35 17.18 -1.1 0 0 0 0 0 0 0 +-15.217 16.924 -1.084 0 0 0 0 0 0 0 +-15.38 16.997 -1.093 0 0 0 0 0 0 0 +-15.124 16.661 -1.069 0 0 0 0 0 0 0 +-15.149 16.584 -1.067 0 0 0 0 0 0 0 +-15.088 16.413 -1.058 0 0 0 0 0 0 0 +-15.049 16.267 -1.05 0 0 0 0 0 0 0 +-15.567 16.723 -1.089 0 0 0 0 0 0 0 +-15.485 16.529 -1.078 0 0 0 0 0 0 0 +-15.605 16.553 -1.083 0 0 0 0 0 0 0 +-15.525 16.365 -1.072 0 0 0 0 0 0 0 +-15.357 16.136 -1.057 0 0 0 0 0 0 0 +-15.339 16.016 -1.051 0 0 0 0 0 0 0 +-15.314 15.89 -1.045 0 0 0 0 0 0 0 +-15.383 15.862 -1.046 0 0 0 0 0 0 0 +-15.337 15.715 -1.039 0 0 0 0 0 0 0 +-15.418 15.699 -1.041 0 0 0 0 0 0 0 +-15.504 15.688 -1.044 0 0 0 0 0 0 0 +-15.557 15.692 -1.046 0 0 0 0 0 0 0 +-15.514 15.551 -1.039 0 0 0 0 0 0 0 +-15.611 15.55 -1.043 0 0 0 0 0 0 0 +-15.669 15.509 -1.044 0 0 0 0 0 0 0 +-15.48 15.226 -1.025 0 0 0 0 0 0 0 +-15.626 15.274 -1.033 0 0 0 0 0 0 0 +-15.884 15.429 -1.049 0 0 0 0 0 0 0 +-15.904 15.4 -1.049 0 0 0 0 0 0 0 +-15.781 15.185 -1.035 0 0 0 0 0 0 0 +-15.812 15.119 -1.034 0 0 0 0 0 0 0 +-15.616 14.838 -1.015 0 0 0 0 0 0 0 +-15.599 14.728 -1.01 0 0 0 0 0 0 0 +-15.615 14.65 -1.008 0 0 0 0 0 0 0 +-17.764 16.567 -1.17 0 0 0 0 0 0 0 +-17.803 16.552 -1.172 0 0 0 0 0 0 0 +-17.757 16.405 -1.164 0 0 0 0 0 0 0 +-17.697 16.246 -1.155 0 0 0 0 0 0 0 +-17.992 16.414 -1.174 0 0 0 0 0 0 0 +-18.014 16.331 -1.172 0 0 0 0 0 0 0 +-17.805 16.038 -1.152 0 0 0 0 0 0 0 +-17.749 15.888 -1.144 0 0 0 0 0 0 0 +-18.149 16.144 -1.17 0 0 0 0 0 0 0 +-18.069 16.022 -1.162 0 0 0 0 0 0 0 +-18.279 16.106 -1.175 0 0 0 0 0 0 0 +-18.357 16.072 -1.177 0 0 0 0 0 0 0 +-18.302 15.923 -1.169 0 0 0 0 0 0 0 +-18.207 15.74 -1.158 0 0 0 0 0 0 0 +-18.135 15.578 -1.149 0 0 0 0 0 0 0 +-18.249 15.577 -1.154 0 0 0 0 0 0 0 +-18.275 15.549 -1.154 0 0 0 0 0 0 0 +-18.357 15.52 -1.156 0 0 0 0 0 0 0 +-18.345 15.411 -1.152 0 0 0 0 0 0 0 +-18.421 15.377 -1.154 0 0 0 0 0 0 0 +-18.577 15.408 -1.162 0 0 0 0 0 0 0 +-18.508 15.253 -1.153 0 0 0 0 0 0 0 +-18.672 15.29 -1.162 0 0 0 0 0 0 0 +-18.74 15.297 -1.165 0 0 0 0 0 0 0 +-18.807 15.253 -1.166 0 0 0 0 0 0 0 +-18.965 15.283 -1.174 0 0 0 0 0 0 0 +-19.039 15.245 -1.176 0 0 0 0 0 0 0 +-19.139 15.226 -1.18 0 0 0 0 0 0 0 +-19.373 15.313 -1.193 0 0 0 0 0 0 0 +-19.466 15.288 -1.197 0 0 0 0 0 0 0 +-19.482 15.251 -1.196 0 0 0 0 0 0 0 +-19.585 15.233 -1.2 0 0 0 0 0 0 0 +-19.644 15.18 -1.201 0 0 0 0 0 0 0 +-19.568 15.023 -1.192 0 0 0 0 0 0 0 +-19.581 14.935 -1.189 0 0 0 0 0 0 0 +-19.559 14.821 -1.185 0 0 0 0 0 0 0 +-18.48 13.911 -1.105 0 0 0 0 0 0 0 +-18.483 13.867 -1.104 0 0 0 0 0 0 0 +-18.545 13.824 -1.105 0 0 0 0 0 0 0 +-19.748 14.626 -1.187 0 0 0 0 0 0 0 +-19.781 14.554 -1.186 0 0 0 0 0 0 0 +-19.587 14.316 -1.169 0 0 0 0 0 0 0 +-19.698 14.303 -1.173 0 0 0 0 0 0 0 +-19.802 14.284 -1.178 0 0 0 0 0 0 0 +-19.882 14.294 -1.182 0 0 0 0 0 0 0 +-19.946 14.245 -1.183 0 0 0 0 0 0 0 +-20.028 14.209 -1.186 0 0 0 0 0 0 0 +-20.028 14.115 -1.182 0 0 0 0 0 0 0 +-20.058 14.042 -1.181 0 0 0 0 0 0 0 +-20.166 14.023 -1.186 0 0 0 0 0 0 0 +-20.169 13.931 -1.183 0 0 0 0 0 0 0 +-17.934 12.301 -1.027 0 0 0 0 0 0 0 +-17.974 12.287 -1.028 0 0 0 0 0 0 0 +-18.011 12.23 -1.028 0 0 0 0 0 0 0 +-17.955 12.109 -1.022 0 0 0 0 0 0 0 +-18.005 12.06 -1.022 0 0 0 0 0 0 0 +-18.119 12.055 -1.028 0 0 0 0 0 0 0 +-6.759 4.447 -0.255 0 0 0 0 0 0 0 +-6.701 4.378 -0.25 0 0 0 0 0 0 0 +-6.698 4.361 -0.249 0 0 0 0 0 0 0 +-6.718 4.344 -0.25 0 0 0 0 0 0 0 +-6.989 4.489 -0.267 0 0 0 0 0 0 0 +-17.817 11.414 -0.993 0 0 0 0 0 0 0 +-17.855 11.359 -0.994 0 0 0 0 0 0 0 +-18.654 11.787 -1.045 0 0 0 0 0 0 0 +-18.169 11.4 -1.01 0 0 0 0 0 0 0 +-18.446 11.534 -1.027 0 0 0 0 0 0 0 +-18.382 11.413 -1.02 0 0 0 0 0 0 0 +-18.701 11.531 -1.039 0 0 0 0 0 0 0 +-17.965 10.998 -0.988 0 0 0 0 0 0 0 +-18.75 11.399 -1.038 0 0 0 0 0 0 0 +-18.635 11.249 -1.028 0 0 0 0 0 0 0 +-18.889 11.322 -1.042 0 0 0 0 0 0 0 +-18.617 11.119 -1.023 0 0 0 0 0 0 0 +-18.177 10.777 -0.992 0 0 0 0 0 0 0 +-18.285 10.764 -0.997 0 0 0 0 0 0 0 +-17.497 10.225 -0.943 0 0 0 0 0 0 0 +-18.012 10.451 -0.975 0 0 0 0 0 0 0 +-18.105 10.429 -0.978 0 0 0 0 0 0 0 +-17.746 10.148 -0.953 0 0 0 0 0 0 0 +-17.819 10.153 -0.957 0 0 0 0 0 0 0 +-17.846 10.094 -0.956 0 0 0 0 0 0 0 +-17.657 9.913 -0.942 0 0 0 0 0 0 0 +-17.857 9.878 -0.951 0 0 0 0 0 0 0 +-12.552 6.832 -0.605 0 0 0 0 0 0 0 +-12.547 6.778 -0.603 0 0 0 0 0 0 0 +-12.566 6.763 -0.604 0 0 0 0 0 0 0 +-13.638 7.288 -0.671 0 0 0 0 0 0 0 +-13.678 7.254 -0.673 0 0 0 0 0 0 0 +-13.796 7.261 -0.679 0 0 0 0 0 0 0 +-32.613 17.075 -1.878 0 0 0 0 0 0 0 +-32.667 16.972 -1.878 0 0 0 0 0 0 0 +-32.642 16.829 -1.873 0 0 0 0 0 0 0 +-32.564 16.724 -1.867 0 0 0 0 0 0 0 +-32.641 16.634 -1.868 0 0 0 0 0 0 0 +-32.736 16.553 -1.871 0 0 0 0 0 0 0 +-32.779 16.446 -1.871 0 0 0 0 0 0 0 +-32.691 16.273 -1.862 0 0 0 0 0 0 0 +-32.758 16.179 -1.863 0 0 0 0 0 0 0 +-32.755 16.049 -1.859 0 0 0 0 0 0 0 +-32.687 15.952 -1.853 0 0 0 0 0 0 0 +-14.631 7.011 -0.714 0 0 0 0 0 0 0 +-14.622 6.95 -0.712 0 0 0 0 0 0 0 +-14.803 6.979 -0.722 0 0 0 0 0 0 0 +-32.946 15.443 -1.854 0 0 0 0 0 0 0 +-33.108 15.392 -1.861 0 0 0 0 0 0 0 +-33.132 15.34 -1.861 0 0 0 0 0 0 0 +-33.079 15.189 -1.855 0 0 0 0 0 0 0 +-33.132 15.088 -1.855 0 0 0 0 0 0 0 +-33.144 14.968 -1.853 0 0 0 0 0 0 0 +-33.166 14.852 -1.852 0 0 0 0 0 0 0 +-33.265 14.772 -1.855 0 0 0 0 0 0 0 +-33.278 14.653 -1.853 0 0 0 0 0 0 0 +-33.318 14.607 -1.854 0 0 0 0 0 0 0 +-33.334 14.49 -1.852 0 0 0 0 0 0 0 +-33.31 14.355 -1.848 0 0 0 0 0 0 0 +-33.381 14.261 -1.849 0 0 0 0 0 0 0 +-33.407 14.149 -1.848 0 0 0 0 0 0 0 +-33.433 14.036 -1.847 0 0 0 0 0 0 0 +-33.403 13.9 -1.843 0 0 0 0 0 0 0 +-33.417 13.844 -1.842 0 0 0 0 0 0 0 +-33.459 13.739 -1.842 0 0 0 0 0 0 0 +-33.469 13.62 -1.84 0 0 0 0 0 0 0 +-33.45 13.49 -1.836 0 0 0 0 0 0 0 +-33.433 13.361 -1.833 0 0 0 0 0 0 0 +-33.425 13.236 -1.83 0 0 0 0 0 0 0 +-33.425 13.115 -1.827 0 0 0 0 0 0 0 +-33.418 13.052 -1.825 0 0 0 0 0 0 0 +-33.42 12.931 -1.823 0 0 0 0 0 0 0 +-33.419 12.811 -1.821 0 0 0 0 0 0 0 +-33.439 12.698 -1.819 0 0 0 0 0 0 0 +-27.623 10.385 -1.466 0 0 0 0 0 0 0 +-29.758 11.083 -1.592 0 0 0 0 0 0 0 +-29.68 10.948 -1.586 0 0 0 0 0 0 0 +-29.697 10.902 -1.586 0 0 0 0 0 0 0 +-29.701 10.797 -1.584 0 0 0 0 0 0 0 +-29.756 10.711 -1.585 0 0 0 0 0 0 0 +-29.861 10.643 -1.589 0 0 0 0 0 0 0 +-29.998 10.586 -1.596 0 0 0 0 0 0 0 +-33.221 11.61 -1.787 0 0 0 0 0 0 0 +-33.282 11.514 -1.788 0 0 0 0 0 0 0 +-33.255 11.446 -1.786 0 0 0 0 0 0 0 +-33.272 11.335 -1.784 0 0 0 0 0 0 0 +-26.792 9.028 -1.396 0 0 0 0 0 0 0 +-33.215 11.083 -1.777 0 0 0 0 0 0 0 +-33.197 10.961 -1.774 0 0 0 0 0 0 0 +-33.212 10.85 -1.773 0 0 0 0 0 0 0 +-33.218 10.737 -1.771 0 0 0 0 0 0 0 +-33.185 10.611 -1.767 0 0 0 0 0 0 0 +-33.173 10.55 -1.765 0 0 0 0 0 0 0 +-33.158 10.431 -1.762 0 0 0 0 0 0 0 +-33.132 10.308 -1.759 0 0 0 0 0 0 0 +-33.082 10.178 -1.754 0 0 0 0 0 0 0 +-33.024 10.047 -1.749 0 0 0 0 0 0 0 +-32.985 9.922 -1.745 0 0 0 0 0 0 0 +-25.798 7.666 -1.319 0 0 0 0 0 0 0 +-32.826 9.706 -1.732 0 0 0 0 0 0 0 +-32.818 9.591 -1.73 0 0 0 0 0 0 0 +-32.773 9.466 -1.726 0 0 0 0 0 0 0 +-32.726 9.341 -1.721 0 0 0 0 0 0 0 +-32.659 9.211 -1.716 0 0 0 0 0 0 0 +-32.615 9.088 -1.711 0 0 0 0 0 0 0 +-32.545 8.959 -1.706 0 0 0 0 0 0 0 +-32.475 8.83 -1.7 0 0 0 0 0 0 0 +-32.388 8.751 -1.694 0 0 0 0 0 0 0 +-32.337 8.629 -1.689 0 0 0 0 0 0 0 +-24.893 6.552 -1.252 0 0 0 0 0 0 0 +-32.197 8.375 -1.678 0 0 0 0 0 0 0 +-32.107 8.244 -1.671 0 0 0 0 0 0 0 +-32.046 8.121 -1.666 0 0 0 0 0 0 0 +-31.998 8.001 -1.662 0 0 0 0 0 0 0 +-31.894 7.922 -1.655 0 0 0 0 0 0 0 +-31.843 7.803 -1.651 0 0 0 0 0 0 0 +-31.77 7.68 -1.645 0 0 0 0 0 0 0 +-31.707 7.559 -1.64 0 0 0 0 0 0 0 +-31.624 7.434 -1.634 0 0 0 0 0 0 0 +-31.565 7.316 -1.629 0 0 0 0 0 0 0 +-31.487 7.193 -1.623 0 0 0 0 0 0 0 +-31.412 7.124 -1.618 0 0 0 0 0 0 0 +-31.368 7.011 -1.614 0 0 0 0 0 0 0 +-23.839 5.243 -1.177 0 0 0 0 0 0 0 +-31.189 6.765 -1.602 0 0 0 0 0 0 0 +-31.144 6.653 -1.598 0 0 0 0 0 0 0 +-31.069 6.535 -1.592 0 0 0 0 0 0 0 +-30.999 6.418 -1.587 0 0 0 0 0 0 0 +-30.957 6.359 -1.584 0 0 0 0 0 0 0 +-23.789 4.802 -1.169 0 0 0 0 0 0 0 +-23.667 4.7 -1.161 0 0 0 0 0 0 0 +-23.587 4.608 -1.156 0 0 0 0 0 0 0 +-23.753 4.485 -1.164 0 0 0 0 0 0 0 +-30.563 5.679 -1.555 0 0 0 0 0 0 0 +-22.743 4.035 -1.103 0 0 0 0 0 0 0 +-23.049 4.015 -1.12 0 0 0 0 0 0 0 +-30.068 5.051 -1.521 0 0 0 0 0 0 0 +-29.983 4.94 -1.515 0 0 0 0 0 0 0 +-29.9 4.83 -1.51 0 0 0 0 0 0 0 +-29.834 4.771 -1.505 0 0 0 0 0 0 0 +-29.735 4.659 -1.499 0 0 0 0 0 0 0 +-29.654 4.551 -1.493 0 0 0 0 0 0 0 +-29.611 4.449 -1.49 0 0 0 0 0 0 0 +-29.509 4.339 -1.483 0 0 0 0 0 0 0 +-21.835 3.134 -1.044 0 0 0 0 0 0 0 +-21.714 3.047 -1.037 0 0 0 0 0 0 0 +-21.556 2.921 -1.027 0 0 0 0 0 0 0 +-21.569 2.854 -1.027 0 0 0 0 0 0 0 +-29.034 3.665 -1.452 0 0 0 0 0 0 0 +-28.98 3.565 -1.448 0 0 0 0 0 0 0 +-28.91 3.465 -1.443 0 0 0 0 0 0 0 +-28.973 3.426 -1.447 0 0 0 0 0 0 0 +-29.004 3.337 -1.448 0 0 0 0 0 0 0 +-29.058 3.251 -1.45 0 0 0 0 0 0 0 +-22.204 2.407 -1.06 0 0 0 0 0 0 0 +-22.116 2.328 -1.054 0 0 0 0 0 0 0 +-28.744 2.85 -1.43 0 0 0 0 0 0 0 +-21.668 2.108 -1.028 0 0 0 0 0 0 0 +-21.705 2.043 -1.03 0 0 0 0 0 0 0 +-28.503 2.6 -1.415 0 0 0 0 0 0 0 +-27.931 2.459 -1.382 0 0 0 0 0 0 0 +-27.847 2.364 -1.377 0 0 0 0 0 0 0 +-27.761 2.268 -1.372 0 0 0 0 0 0 0 +-27.694 2.175 -1.368 0 0 0 0 0 0 0 +-27.623 2.082 -1.363 0 0 0 0 0 0 0 +-27.542 1.989 -1.358 0 0 0 0 0 0 0 +-22.056 1.553 -1.047 0 0 0 0 0 0 0 +-21.951 1.476 -1.041 0 0 0 0 0 0 0 +-21.896 1.403 -1.038 0 0 0 0 0 0 0 +-21.874 1.333 -1.036 0 0 0 0 0 0 0 +-21.884 1.264 -1.036 0 0 0 0 0 0 0 +-21.876 1.195 -1.036 0 0 0 0 0 0 0 +-21.898 1.127 -1.037 0 0 0 0 0 0 0 +-21.931 1.094 -1.039 0 0 0 0 0 0 0 +-22.012 1.029 -1.043 0 0 0 0 0 0 0 +-26.721 1.171 -1.309 0 0 0 0 0 0 0 +-26.641 1.084 -1.305 0 0 0 0 0 0 0 +-26.574 0.997 -1.301 0 0 0 0 0 0 0 +-26.502 0.911 -1.296 0 0 0 0 0 0 0 +-26.424 0.825 -1.292 0 0 0 0 0 0 0 +-26.354 0.781 -1.288 0 0 0 0 0 0 0 +-26.26 0.696 -1.282 0 0 0 0 0 0 0 +-26.183 0.612 -1.278 0 0 0 0 0 0 0 +-22.271 0.446 -1.057 0 0 0 0 0 0 0 +-26 0.444 -1.267 0 0 0 0 0 0 0 +-22.32 0.307 -1.059 0 0 0 0 0 0 0 +-22.293 0.237 -1.058 0 0 0 0 0 0 0 +-22.273 0.201 -1.056 0 0 0 0 0 0 0 +-22.224 0.131 -1.054 0 0 0 0 0 0 0 +-22.202 0.061 -1.052 0 0 0 0 0 0 0 +-22.288 -0.009 -1.057 0 0 0 0 0 0 0 +-25.451 -0.086 -1.236 0 0 0 0 0 0 0 +-25.39 -0.166 -1.233 0 0 0 0 0 0 0 +-25.312 -0.245 -1.228 0 0 0 0 0 0 0 +-25.23 -0.284 -1.224 0 0 0 0 0 0 0 +-25.147 -0.362 -1.219 0 0 0 0 0 0 0 +-25.058 -0.439 -1.214 0 0 0 0 0 0 0 +-24.992 -0.517 -1.21 0 0 0 0 0 0 0 +-24.911 -0.594 -1.206 0 0 0 0 0 0 0 +-24.835 -0.67 -1.202 0 0 0 0 0 0 0 +-24.731 -0.745 -1.196 0 0 0 0 0 0 0 +-24.654 -0.82 -1.192 0 0 0 0 0 0 0 +-24.575 -0.856 -1.187 0 0 0 0 0 0 0 +-24.499 -0.931 -1.183 0 0 0 0 0 0 0 +-24.424 -1.005 -1.179 0 0 0 0 0 0 0 +-24.341 -1.078 -1.175 0 0 0 0 0 0 0 +-24.261 -1.151 -1.17 0 0 0 0 0 0 0 +-24.184 -1.224 -1.166 0 0 0 0 0 0 0 +-24.104 -1.296 -1.162 0 0 0 0 0 0 0 +-24.03 -1.33 -1.158 0 0 0 0 0 0 0 +-23.96 -1.401 -1.154 0 0 0 0 0 0 0 +-23.876 -1.472 -1.15 0 0 0 0 0 0 0 +-23.8 -1.542 -1.146 0 0 0 0 0 0 0 +-23.717 -1.612 -1.141 0 0 0 0 0 0 0 +-23.618 -1.68 -1.136 0 0 0 0 0 0 0 +-23.559 -1.75 -1.133 0 0 0 0 0 0 0 +-23.468 -1.78 -1.128 0 0 0 0 0 0 0 +-23.405 -1.85 -1.125 0 0 0 0 0 0 0 +-23.314 -1.916 -1.12 0 0 0 0 0 0 0 +-16.138 -1.437 -0.713 0 0 0 0 0 0 0 +-16.058 -1.48 -0.709 0 0 0 0 0 0 0 +-16.337 -1.558 -0.725 0 0 0 0 0 0 0 +-22.885 -2.208 -1.097 0 0 0 0 0 0 0 +-22.856 -2.277 -1.096 0 0 0 0 0 0 0 +-22.779 -2.342 -1.092 0 0 0 0 0 0 0 +-22.712 -2.407 -1.088 0 0 0 0 0 0 0 +-22.68 -2.476 -1.087 0 0 0 0 0 0 0 +-22.684 -2.549 -1.088 0 0 0 0 0 0 0 +-22.676 -2.62 -1.088 0 0 0 0 0 0 0 +-22.69 -2.658 -1.089 0 0 0 0 0 0 0 +-22.689 -2.73 -1.089 0 0 0 0 0 0 0 +-22.708 -2.804 -1.091 0 0 0 0 0 0 0 +-22.692 -2.875 -1.09 0 0 0 0 0 0 0 +-22.716 -2.95 -1.092 0 0 0 0 0 0 0 +-22.715 -3.023 -1.093 0 0 0 0 0 0 0 +-22.743 -3.099 -1.095 0 0 0 0 0 0 0 +-22.716 -3.132 -1.094 0 0 0 0 0 0 0 +-22.706 -3.203 -1.094 0 0 0 0 0 0 0 +-22.722 -3.278 -1.095 0 0 0 0 0 0 0 +-22.695 -3.347 -1.094 0 0 0 0 0 0 0 +-22.701 -3.421 -1.095 0 0 0 0 0 0 0 +-22.625 -3.482 -1.091 0 0 0 0 0 0 0 +-22.546 -3.543 -1.088 0 0 0 0 0 0 0 +-22.458 -3.565 -1.083 0 0 0 0 0 0 0 +-22.417 -3.631 -1.081 0 0 0 0 0 0 0 +-22.341 -3.691 -1.077 0 0 0 0 0 0 0 +-22.244 -3.747 -1.072 0 0 0 0 0 0 0 +-20.989 -3.673 -1.002 0 0 0 0 0 0 0 +-20.861 -3.718 -0.995 0 0 0 0 0 0 0 +-20.78 -3.771 -0.991 0 0 0 0 0 0 0 +-20.729 -3.795 -0.989 0 0 0 0 0 0 0 +-20.658 -3.85 -0.985 0 0 0 0 0 0 0 +-20.572 -3.901 -0.981 0 0 0 0 0 0 0 +-20.496 -3.953 -0.977 0 0 0 0 0 0 0 +-20.417 -4.005 -0.973 0 0 0 0 0 0 0 +-20.338 -4.055 -0.97 0 0 0 0 0 0 0 +-20.274 -4.109 -0.967 0 0 0 0 0 0 0 +-20.199 -4.127 -0.963 0 0 0 0 0 0 0 +-20.149 -4.183 -0.961 0 0 0 0 0 0 0 +-20.079 -4.234 -0.957 0 0 0 0 0 0 0 +-19.974 -4.278 -0.952 0 0 0 0 0 0 0 +-19.927 -4.333 -0.95 0 0 0 0 0 0 0 +-19.849 -4.382 -0.946 0 0 0 0 0 0 0 +-19.771 -4.43 -0.943 0 0 0 0 0 0 0 +-19.7 -4.446 -0.939 0 0 0 0 0 0 0 +-19.619 -4.493 -0.935 0 0 0 0 0 0 0 +-19.541 -4.54 -0.931 0 0 0 0 0 0 0 +-19.466 -4.587 -0.928 0 0 0 0 0 0 0 +-19.409 -4.638 -0.925 0 0 0 0 0 0 0 +-19.332 -4.684 -0.922 0 0 0 0 0 0 0 +-19.259 -4.731 -0.918 0 0 0 0 0 0 0 +-19.2 -4.748 -0.915 0 0 0 0 0 0 0 +-19.132 -4.795 -0.912 0 0 0 0 0 0 0 +-19.063 -4.842 -0.909 0 0 0 0 0 0 0 +-18.995 -4.888 -0.906 0 0 0 0 0 0 0 +-18.924 -4.933 -0.903 0 0 0 0 0 0 0 +-18.856 -4.979 -0.9 0 0 0 0 0 0 0 +-18.788 -5.024 -0.897 0 0 0 0 0 0 0 +-18.734 -5.041 -0.894 0 0 0 0 0 0 0 +-18.666 -5.086 -0.891 0 0 0 0 0 0 0 +-18.596 -5.13 -0.888 0 0 0 0 0 0 0 +-18.526 -5.173 -0.885 0 0 0 0 0 0 0 +-18.458 -5.217 -0.882 0 0 0 0 0 0 0 +-18.384 -5.259 -0.878 0 0 0 0 0 0 0 +-18.317 -5.302 -0.875 0 0 0 0 0 0 0 +-18.255 -5.315 -0.872 0 0 0 0 0 0 0 +-18.188 -5.358 -0.869 0 0 0 0 0 0 0 +-18.131 -5.403 -0.867 0 0 0 0 0 0 0 +-18.063 -5.445 -0.864 0 0 0 0 0 0 0 +-17.986 -5.483 -0.86 0 0 0 0 0 0 0 +-17.919 -5.525 -0.857 0 0 0 0 0 0 0 +-17.85 -5.565 -0.854 0 0 0 0 0 0 0 +-17.786 -5.576 -0.851 0 0 0 0 0 0 0 +-17.729 -5.619 -0.849 0 0 0 0 0 0 0 +-17.677 -5.664 -0.847 0 0 0 0 0 0 0 +-17.606 -5.702 -0.843 0 0 0 0 0 0 0 +-17.533 -5.739 -0.84 0 0 0 0 0 0 0 +-17.465 -5.778 -0.837 0 0 0 0 0 0 0 +-17.407 -5.82 -0.835 0 0 0 0 0 0 0 +-17.362 -5.835 -0.833 0 0 0 0 0 0 0 +-17.294 -5.873 -0.83 0 0 0 0 0 0 0 +-17.238 -5.914 -0.828 0 0 0 0 0 0 0 +-17.176 -5.953 -0.825 0 0 0 0 0 0 0 +-17.108 -5.99 -0.822 0 0 0 0 0 0 0 +-17.084 -6.042 -0.822 0 0 0 0 0 0 0 +-16.89 -6.033 -0.811 0 0 0 0 0 0 0 +-16.707 -5.998 -0.801 0 0 0 0 0 0 0 +-16.787 -6.146 -0.808 0 0 0 0 0 0 0 +-16.721 -6.182 -0.805 0 0 0 0 0 0 0 +-16.651 -6.215 -0.802 0 0 0 0 0 0 0 +-16.598 -6.255 -0.8 0 0 0 0 0 0 0 +-16.518 -6.284 -0.796 0 0 0 0 0 0 0 +-16.263 -6.246 -0.782 0 0 0 0 0 0 0 +-16.205 -6.253 -0.779 0 0 0 0 0 0 0 +-16.131 -6.283 -0.776 0 0 0 0 0 0 0 +-16.134 -6.343 -0.777 0 0 0 0 0 0 0 +-16.164 -6.413 -0.78 0 0 0 0 0 0 0 +-16.151 -6.467 -0.781 0 0 0 0 0 0 0 +-16.072 -6.494 -0.777 0 0 0 0 0 0 0 +-16.025 -6.534 -0.776 0 0 0 0 0 0 0 +-15.97 -6.541 -0.773 0 0 0 0 0 0 0 +-15.981 -6.604 -0.775 0 0 0 0 0 0 0 +-16.027 -6.681 -0.779 0 0 0 0 0 0 0 +-15.921 -6.696 -0.774 0 0 0 0 0 0 0 +-15.786 -6.698 -0.767 0 0 0 0 0 0 0 +-16.026 -6.919 -0.784 0 0 0 0 0 0 0 +-16.028 -6.949 -0.785 0 0 0 0 0 0 0 +-16.041 -7.015 -0.787 0 0 0 0 0 0 0 +-16.037 -7.073 -0.788 0 0 0 0 0 0 0 +-16.051 -7.14 -0.79 0 0 0 0 0 0 0 +-16.041 -7.196 -0.791 0 0 0 0 0 0 0 +-16.064 -7.267 -0.794 0 0 0 0 0 0 0 +-16.061 -7.326 -0.795 0 0 0 0 0 0 0 +-16.086 -7.368 -0.797 0 0 0 0 0 0 0 +-16.079 -7.426 -0.799 0 0 0 0 0 0 0 +-16.107 -7.5 -0.802 0 0 0 0 0 0 0 +-16.096 -7.556 -0.802 0 0 0 0 0 0 0 +-16.111 -7.626 -0.805 0 0 0 0 0 0 0 +-16.107 -7.686 -0.806 0 0 0 0 0 0 0 +-16.133 -7.76 -0.809 0 0 0 0 0 0 0 +-16.123 -7.787 -0.809 0 0 0 0 0 0 0 +-16.143 -7.859 -0.812 0 0 0 0 0 0 0 +-16.131 -7.916 -0.813 0 0 0 0 0 0 0 +-16.137 -7.982 -0.815 0 0 0 0 0 0 0 +-16.151 -8.052 -0.817 0 0 0 0 0 0 0 +-16.17 -8.125 -0.82 0 0 0 0 0 0 0 +-16.171 -8.189 -0.822 0 0 0 0 0 0 0 +-16.178 -8.224 -0.823 0 0 0 0 0 0 0 +-16.191 -8.295 -0.826 0 0 0 0 0 0 0 +-16.188 -8.358 -0.827 0 0 0 0 0 0 0 +-16.192 -8.424 -0.829 0 0 0 0 0 0 0 +-16.188 -8.487 -0.831 0 0 0 0 0 0 0 +-16.19 -8.553 -0.832 0 0 0 0 0 0 0 +-16.186 -8.616 -0.834 0 0 0 0 0 0 0 +-16.199 -8.655 -0.836 0 0 0 0 0 0 0 +-16.214 -8.729 -0.838 0 0 0 0 0 0 0 +-16.207 -8.791 -0.84 0 0 0 0 0 0 0 +-16.215 -8.861 -0.842 0 0 0 0 0 0 0 +-16.224 -8.932 -0.844 0 0 0 0 0 0 0 +-16.232 -9.003 -0.847 0 0 0 0 0 0 0 +-16.244 -9.077 -0.849 0 0 0 0 0 0 0 +-16.24 -9.141 -0.851 0 0 0 0 0 0 0 +-16.269 -9.191 -0.854 0 0 0 0 0 0 0 +-16.273 -9.261 -0.856 0 0 0 0 0 0 0 +-16.287 -9.337 -0.859 0 0 0 0 0 0 0 +-16.294 -9.409 -0.861 0 0 0 0 0 0 0 +-16.297 -9.479 -0.863 0 0 0 0 0 0 0 +-16.3 -9.549 -0.865 0 0 0 0 0 0 0 +-16.308 -9.623 -0.868 0 0 0 0 0 0 0 +-16.332 -9.672 -0.87 0 0 0 0 0 0 0 +-16.345 -9.749 -0.873 0 0 0 0 0 0 0 +-16.352 -9.822 -0.876 0 0 0 0 0 0 0 +-16.352 -9.892 -0.878 0 0 0 0 0 0 0 +-16.354 -9.964 -0.88 0 0 0 0 0 0 0 +-16.354 -10.034 -0.882 0 0 0 0 0 0 0 +-16.365 -10.112 -0.885 0 0 0 0 0 0 0 +-16.393 -10.165 -0.888 0 0 0 0 0 0 0 +-16.395 -10.238 -0.89 0 0 0 0 0 0 0 +-16.4 -10.312 -0.892 0 0 0 0 0 0 0 +-16.408 -10.389 -0.895 0 0 0 0 0 0 0 +-16.414 -10.466 -0.898 0 0 0 0 0 0 0 +-16.42 -10.542 -0.9 0 0 0 0 0 0 0 +-16.432 -10.623 -0.903 0 0 0 0 0 0 0 +-16.46 -10.678 -0.906 0 0 0 0 0 0 0 +-16.462 -10.752 -0.909 0 0 0 0 0 0 0 +-16.478 -10.837 -0.912 0 0 0 0 0 0 0 +-16.467 -10.904 -0.914 0 0 0 0 0 0 0 +-16.488 -10.992 -0.917 0 0 0 0 0 0 0 +-16.495 -11.071 -0.92 0 0 0 0 0 0 0 +-16.508 -11.156 -0.924 0 0 0 0 0 0 0 +-16.542 -11.216 -0.927 0 0 0 0 0 0 0 +-16.534 -11.287 -0.929 0 0 0 0 0 0 0 +-16.551 -11.375 -0.933 0 0 0 0 0 0 0 +-16.562 -11.459 -0.936 0 0 0 0 0 0 0 +-16.547 -11.526 -0.937 0 0 0 0 0 0 0 +-16.565 -11.615 -0.941 0 0 0 0 0 0 0 +-16.57 -11.697 -0.944 0 0 0 0 0 0 0 +-10.591 -7.513 -0.531 0 0 0 0 0 0 0 +-10.536 -7.524 -0.529 0 0 0 0 0 0 0 +-10.474 -7.529 -0.526 0 0 0 0 0 0 0 +-10.44 -7.555 -0.526 0 0 0 0 0 0 0 +-10.415 -7.586 -0.526 0 0 0 0 0 0 0 +-10.436 -7.652 -0.529 0 0 0 0 0 0 0 +-16.645 -12.266 -0.966 0 0 0 0 0 0 0 +-16.663 -12.319 -0.969 0 0 0 0 0 0 0 +-16.677 -12.411 -0.972 0 0 0 0 0 0 0 +-16.691 -12.503 -0.976 0 0 0 0 0 0 0 +-16.698 -12.59 -0.979 0 0 0 0 0 0 0 +-16.701 -12.675 -0.983 0 0 0 0 0 0 0 +-16.71 -12.765 -0.986 0 0 0 0 0 0 0 +-16.714 -12.851 -0.989 0 0 0 0 0 0 0 +-16.734 -12.95 -0.993 0 0 0 0 0 0 0 +-16.753 -13.007 -0.996 0 0 0 0 0 0 0 +-16.758 -13.095 -1 0 0 0 0 0 0 0 +-16.77 -13.19 -1.003 0 0 0 0 0 0 0 +-16.776 -13.279 -1.007 0 0 0 0 0 0 0 +-16.784 -13.372 -1.01 0 0 0 0 0 0 0 +-16.799 -13.471 -1.015 0 0 0 0 0 0 0 +-16.797 -13.556 -1.018 0 0 0 0 0 0 0 +-16.827 -13.624 -1.021 0 0 0 0 0 0 0 +-16.837 -13.719 -1.025 0 0 0 0 0 0 0 +-16.842 -13.811 -1.029 0 0 0 0 0 0 0 +-16.857 -13.912 -1.033 0 0 0 0 0 0 0 +-16.87 -14.012 -1.037 0 0 0 0 0 0 0 +-16.867 -14.1 -1.04 0 0 0 0 0 0 0 +-16.881 -14.201 -1.044 0 0 0 0 0 0 0 +-16.915 -14.276 -1.049 0 0 0 0 0 0 0 +-16.919 -14.37 -1.052 0 0 0 0 0 0 0 +-16.941 -14.48 -1.057 0 0 0 0 0 0 0 +-16.944 -14.575 -1.061 0 0 0 0 0 0 0 +-16.964 -14.685 -1.066 0 0 0 0 0 0 0 +-16.969 -14.783 -1.07 0 0 0 0 0 0 0 +-16.984 -14.89 -1.074 0 0 0 0 0 0 0 +-17.006 -14.956 -1.078 0 0 0 0 0 0 0 +-17.023 -15.067 -1.082 0 0 0 0 0 0 0 +-17.033 -15.17 -1.087 0 0 0 0 0 0 0 +-17.046 -15.278 -1.091 0 0 0 0 0 0 0 +-17.059 -15.387 -1.096 0 0 0 0 0 0 0 +-17.064 -15.488 -1.1 0 0 0 0 0 0 0 +-17.09 -15.611 -1.106 0 0 0 0 0 0 0 +-17.123 -15.69 -1.11 0 0 0 0 0 0 0 +-17.137 -15.802 -1.115 0 0 0 0 0 0 0 +-17.13 -15.895 -1.118 0 0 0 0 0 0 0 +-17.129 -15.995 -1.122 0 0 0 0 0 0 0 +-17.144 -16.11 -1.127 0 0 0 0 0 0 0 +-17.148 -16.215 -1.131 0 0 0 0 0 0 0 +-17.169 -16.337 -1.137 0 0 0 0 0 0 0 +-17.201 -16.419 -1.142 0 0 0 0 0 0 0 +-17.217 -16.538 -1.147 0 0 0 0 0 0 0 +-17.22 -16.645 -1.151 0 0 0 0 0 0 0 +-17.232 -16.761 -1.156 0 0 0 0 0 0 0 +-17.233 -16.868 -1.161 0 0 0 0 0 0 0 +-17.253 -16.994 -1.166 0 0 0 0 0 0 0 +-17.265 -17.113 -1.172 0 0 0 0 0 0 0 +-17.313 -17.214 -1.177 0 0 0 0 0 0 0 +-17.337 -17.346 -1.184 0 0 0 0 0 0 0 +-17.337 -17.456 -1.188 0 0 0 0 0 0 0 +-17.341 -17.57 -1.193 0 0 0 0 0 0 0 +-17.347 -17.687 -1.198 0 0 0 0 0 0 0 +-17.352 -17.803 -1.203 0 0 0 0 0 0 0 +-17.266 -17.827 -1.2 0 0 0 0 0 0 0 +-17.197 -17.811 -1.197 0 0 0 0 0 0 0 +-17.112 -17.835 -1.195 0 0 0 0 0 0 0 +-17.051 -17.884 -1.194 0 0 0 0 0 0 0 +-17.057 -18.003 -1.199 0 0 0 0 0 0 0 +-17.063 -18.123 -1.204 0 0 0 0 0 0 0 +-17.08 -18.255 -1.211 0 0 0 0 0 0 0 +-17.085 -18.376 -1.216 0 0 0 0 0 0 0 +-17.132 -18.485 -1.222 0 0 0 0 0 0 0 +-17.584 -19.09 -1.265 0 0 0 0 0 0 0 +-17.525 -19.147 -1.265 0 0 0 0 0 0 0 +-17.533 -19.277 -1.27 0 0 0 0 0 0 0 +-17.549 -19.416 -1.277 0 0 0 0 0 0 0 +-17.564 -19.556 -1.283 0 0 0 0 0 0 0 +-17.593 -19.712 -1.291 0 0 0 0 0 0 0 +-17.655 -19.844 -1.299 0 0 0 0 0 0 0 +-17.693 -20.013 -1.307 0 0 0 0 0 0 0 +-17.723 -20.174 -1.315 0 0 0 0 0 0 0 +-17.742 -20.324 -1.322 0 0 0 0 0 0 0 +-17.762 -20.476 -1.33 0 0 0 0 0 0 0 +-17.78 -20.627 -1.337 0 0 0 0 0 0 0 +-17.79 -20.771 -1.343 0 0 0 0 0 0 0 +-17.832 -20.885 -1.35 0 0 0 0 0 0 0 +-17.849 -21.038 -1.357 0 0 0 0 0 0 0 +-17.846 -21.169 -1.363 0 0 0 0 0 0 0 +-17.862 -21.324 -1.37 0 0 0 0 0 0 0 +-17.896 -21.501 -1.379 0 0 0 0 0 0 0 +-17.908 -21.653 -1.386 0 0 0 0 0 0 0 +-17.92 -21.806 -1.393 0 0 0 0 0 0 0 +-17.969 -21.936 -1.4 0 0 0 0 0 0 0 +-17.968 -22.076 -1.406 0 0 0 0 0 0 0 +-18.007 -22.266 -1.416 0 0 0 0 0 0 0 +-18.018 -22.423 -1.423 0 0 0 0 0 0 0 +-18.039 -22.594 -1.432 0 0 0 0 0 0 0 +-18.056 -22.761 -1.44 0 0 0 0 0 0 0 +-18.066 -22.921 -1.447 0 0 0 0 0 0 0 +-18.071 -23.077 -1.454 0 0 0 0 0 0 0 +-14.104 -18.078 -1.093 0 0 0 0 0 0 0 +-18.136 -23.386 -1.47 0 0 0 0 0 0 0 +-18.119 -23.515 -1.476 0 0 0 0 0 0 0 +-17.948 -23.445 -1.466 0 0 0 0 0 0 0 +-17.835 -23.451 -1.463 0 0 0 0 0 0 0 +-17.743 -23.483 -1.461 0 0 0 0 0 0 0 +-17.708 -23.59 -1.465 0 0 0 0 0 0 0 +-17.812 -23.806 -1.478 0 0 0 0 0 0 0 +-17.803 -23.95 -1.484 0 0 0 0 0 0 0 +-18.285 -24.758 -1.537 0 0 0 0 0 0 0 +-18.293 -24.933 -1.546 0 0 0 0 0 0 0 +-18.298 -25.105 -1.554 0 0 0 0 0 0 0 +-18.307 -25.284 -1.562 0 0 0 0 0 0 0 +-18.323 -25.474 -1.571 0 0 0 0 0 0 0 +-18.38 -25.637 -1.581 0 0 0 0 0 0 0 +-18.393 -25.827 -1.59 0 0 0 0 0 0 0 +-18.396 -26.003 -1.598 0 0 0 0 0 0 0 +-18.418 -26.208 -1.608 0 0 0 0 0 0 0 +-18.437 -26.411 -1.618 0 0 0 0 0 0 0 +-18.451 -26.608 -1.628 0 0 0 0 0 0 0 +-18.475 -26.822 -1.639 0 0 0 0 0 0 0 +-18.479 -26.919 -1.643 0 0 0 0 0 0 0 +-18.183 -26.667 -1.622 0 0 0 0 0 0 0 +-18.171 -26.829 -1.629 0 0 0 0 0 0 0 +-19.554 -29.261 -1.787 0 0 0 0 0 0 0 +-19.173 -28.889 -1.757 0 0 0 0 0 0 0 +-19.038 -28.882 -1.753 0 0 0 0 0 0 0 +-18.982 -28.895 -1.752 0 0 0 0 0 0 0 +-18.858 -28.905 -1.748 0 0 0 0 0 0 0 +-18.771 -28.969 -1.749 0 0 0 0 0 0 0 +-18.811 -29.232 -1.763 0 0 0 0 0 0 0 +-18.808 -29.429 -1.772 0 0 0 0 0 0 0 +-18.837 -29.68 -1.785 0 0 0 0 0 0 0 +-18.871 -29.94 -1.798 0 0 0 0 0 0 0 +-18.937 -30.149 -1.81 0 0 0 0 0 0 0 +-18.957 -30.393 -1.822 0 0 0 0 0 0 0 +-18.991 -30.661 -1.836 0 0 0 0 0 0 0 +-19.024 -30.931 -1.85 0 0 0 0 0 0 0 +-19.051 -31.194 -1.864 0 0 0 0 0 0 0 +-19.081 -31.463 -1.878 0 0 0 0 0 0 0 +-19.095 -31.711 -1.89 0 0 0 0 0 0 0 +-19.152 -31.919 -1.902 0 0 0 0 0 0 0 +-19.194 -32.217 -1.917 0 0 0 0 0 0 0 +-19.209 -32.473 -1.93 0 0 0 0 0 0 0 +-19.165 -32.633 -1.937 0 0 0 0 0 0 0 +-19.101 -32.759 -1.941 0 0 0 0 0 0 0 +-19.031 -32.876 -1.945 0 0 0 0 0 0 0 +-18.962 -32.994 -1.949 0 0 0 0 0 0 0 +-18.935 -33.067 -1.951 0 0 0 0 0 0 0 +-18.883 -33.219 -1.957 0 0 0 0 0 0 0 +-18.814 -33.34 -1.962 0 0 0 0 0 0 0 +-18.758 -33.486 -1.967 0 0 0 0 0 0 0 +-18.649 -33.538 -1.967 0 0 0 0 0 0 0 +-18.493 -33.506 -1.961 0 0 0 0 0 0 0 +-18.368 -33.527 -1.958 0 0 0 0 0 0 0 +-18.329 -33.582 -1.96 0 0 0 0 0 0 0 +-18.249 -33.687 -1.963 0 0 0 0 0 0 0 +-18.117 -33.695 -1.96 0 0 0 0 0 0 0 +-17.954 -33.644 -1.953 0 0 0 0 0 0 0 +-17.929 -33.854 -1.963 0 0 0 0 0 0 0 +-15.728 -29.931 -1.709 0 0 0 0 0 0 0 +-17.92 -34.357 -1.988 0 0 0 0 0 0 0 +-15.678 -30.18 -1.72 0 0 0 0 0 0 0 +-15.594 -30.25 -1.721 0 0 0 0 0 0 0 +-15.626 -30.546 -1.737 0 0 0 0 0 0 0 +-15.28 -30.104 -1.706 0 0 0 0 0 0 0 +-15.054 -29.891 -1.689 0 0 0 0 0 0 0 +-14.916 -29.851 -1.684 0 0 0 0 0 0 0 +-14.805 -29.864 -1.682 0 0 0 0 0 0 0 +-14.827 -30.027 -1.69 0 0 0 0 0 0 0 +-14.846 -30.304 -1.705 0 0 0 0 0 0 0 +-14.825 -30.503 -1.715 0 0 0 0 0 0 0 +-14.75 -30.591 -1.717 0 0 0 0 0 0 0 +-14.708 -30.751 -1.724 0 0 0 0 0 0 0 +-14.686 -30.954 -1.734 0 0 0 0 0 0 0 +-14.711 -31.26 -1.75 0 0 0 0 0 0 0 +-14.802 -31.581 -1.769 0 0 0 0 0 0 0 +-14.972 -32.207 -1.805 0 0 0 0 0 0 0 +-14.954 -32.433 -1.816 0 0 0 0 0 0 0 +-14.908 -32.601 -1.824 0 0 0 0 0 0 0 +-14.8 -32.637 -1.823 0 0 0 0 0 0 0 +-14.696 -32.68 -1.823 0 0 0 0 0 0 0 +-14.63 -32.808 -1.828 0 0 0 0 0 0 0 +-14.616 -33.055 -1.841 0 0 0 0 0 0 0 +-14.702 -33.39 -1.86 0 0 0 0 0 0 0 +-14.712 -33.699 -1.876 0 0 0 0 0 0 0 +-14.801 -34.196 -1.904 0 0 0 0 0 0 0 +-14.796 -34.479 -1.918 0 0 0 0 0 0 0 +-14.871 -34.955 -1.945 0 0 0 0 0 0 0 +-14.858 -35.232 -1.959 0 0 0 0 0 0 0 +-14.753 -35.293 -1.96 0 0 0 0 0 0 0 +-14.759 -35.464 -1.969 0 0 0 0 0 0 0 +-14.851 -36.002 -1.999 0 0 0 0 0 0 0 +-14.771 -36.13 -2.004 0 0 0 0 0 0 0 +-14.712 -36.31 -2.012 0 0 0 0 0 0 0 +-14.79 -36.834 -2.041 0 0 0 0 0 0 0 +-14.753 -37.077 -2.053 0 0 0 0 0 0 0 +-14.75 -37.239 -2.062 0 0 0 0 0 0 0 +-14.625 -37.265 -2.06 0 0 0 0 0 0 0 +-14.379 -36.981 -2.04 0 0 0 0 0 0 0 +-14.228 -36.937 -2.035 0 0 0 0 0 0 0 +-14.094 -36.933 -2.032 0 0 0 0 0 0 0 +-13.963 -36.937 -2.03 0 0 0 0 0 0 0 +-13.828 -36.931 -2.027 0 0 0 0 0 0 0 +-13.697 -36.935 -2.024 0 0 0 0 0 0 0 +-13.616 -36.894 -2.021 0 0 0 0 0 0 0 +-13.493 -36.916 -2.019 0 0 0 0 0 0 0 +-13.359 -36.91 -2.016 0 0 0 0 0 0 0 +-13.238 -36.938 -2.016 0 0 0 0 0 0 0 +-13.085 -36.874 -2.009 0 0 0 0 0 0 0 +-12.939 -36.831 -2.004 0 0 0 0 0 0 0 +-12.795 -36.79 -1.999 0 0 0 0 0 0 0 +-12.728 -36.784 -1.998 0 0 0 0 0 0 0 +-12.594 -36.77 -1.995 0 0 0 0 0 0 0 +-12.469 -36.783 -1.993 0 0 0 0 0 0 0 +-12.343 -36.79 -1.991 0 0 0 0 0 0 0 +-12.228 -36.831 -1.991 0 0 0 0 0 0 0 +-12.088 -36.795 -1.987 0 0 0 0 0 0 0 +-11.963 -36.804 -1.985 0 0 0 0 0 0 0 +-11.894 -36.789 -1.983 0 0 0 0 0 0 0 +-11.799 -36.891 -1.987 0 0 0 0 0 0 0 +-11.687 -36.941 -1.988 0 0 0 0 0 0 0 +-11.578 -36.998 -1.989 0 0 0 0 0 0 0 +-11.463 -37.04 -1.989 0 0 0 0 0 0 0 +-11.345 -37.068 -1.989 0 0 0 0 0 0 0 +-11.225 -37.092 -1.988 0 0 0 0 0 0 0 +-11.16 -37.089 -1.987 0 0 0 0 0 0 0 +-11.067 -37.202 -1.992 0 0 0 0 0 0 0 +-10.643 -37.052 -1.977 0 0 0 0 0 0 0 +-10.514 -37.041 -1.974 0 0 0 0 0 0 0 +-10.389 -37.045 -1.972 0 0 0 0 0 0 0 +-10.317 -37.011 -1.969 0 0 0 0 0 0 0 +-10.2 -37.041 -1.969 0 0 0 0 0 0 0 +-10.08 -37.058 -1.968 0 0 0 0 0 0 0 +-9.953 -37.053 -1.966 0 0 0 0 0 0 0 +-9.823 -37.034 -1.963 0 0 0 0 0 0 0 +-9.701 -37.043 -1.962 0 0 0 0 0 0 0 +-9.59 -37.091 -1.963 0 0 0 0 0 0 0 +-9.555 -37.199 -1.969 0 0 0 0 0 0 0 +-9.271 -37.058 -1.957 0 0 0 0 0 0 0 +-9.144 -37.045 -1.954 0 0 0 0 0 0 0 +-9.019 -37.038 -1.952 0 0 0 0 0 0 0 +-8.894 -37.032 -1.95 0 0 0 0 0 0 0 +-8.767 -37.011 -1.948 0 0 0 0 0 0 0 +-8.707 -37.019 -1.947 0 0 0 0 0 0 0 +-8.582 -37.011 -1.945 0 0 0 0 0 0 0 +-8.458 -37.003 -1.943 0 0 0 0 0 0 0 +-8.337 -37.007 -1.942 0 0 0 0 0 0 0 +-8.217 -37.018 -1.941 0 0 0 0 0 0 0 +-8.098 -37.032 -1.94 0 0 0 0 0 0 0 +-7.987 -37.082 -1.942 0 0 0 0 0 0 0 +-7.94 -37.144 -1.945 0 0 0 0 0 0 0 +-7.848 -37.286 -1.951 0 0 0 0 0 0 0 +-7.684 -37.085 -1.938 0 0 0 0 0 0 0 +-7.555 -37.049 -1.935 0 0 0 0 0 0 0 +-7.427 -37.015 -1.932 0 0 0 0 0 0 0 +-7.311 -37.039 -1.932 0 0 0 0 0 0 0 +-7.188 -37.032 -1.93 0 0 0 0 0 0 0 +-7.125 -37.016 -1.928 0 0 0 0 0 0 0 +-7.005 -37.02 -1.927 0 0 0 0 0 0 0 +-6.888 -37.036 -1.927 0 0 0 0 0 0 0 +-6.768 -37.04 -1.926 0 0 0 0 0 0 0 +-6.653 -37.069 -1.926 0 0 0 0 0 0 0 +-6.541 -37.115 -1.928 0 0 0 0 0 0 0 +-6.442 -37.236 -1.934 0 0 0 0 0 0 0 +-6.462 -37.699 -1.96 0 0 0 0 0 0 0 +-6.231 -37.057 -1.922 0 0 0 0 0 0 0 +-6.072 -36.821 -1.907 0 0 0 0 0 0 0 +-5.936 -36.711 -1.9 0 0 0 0 0 0 0 +-5.811 -36.673 -1.896 0 0 0 0 0 0 0 +-5.69 -36.653 -1.894 0 0 0 0 0 0 0 +-5.57 -36.633 -1.892 0 0 0 0 0 0 0 +-5.505 -36.595 -1.889 0 0 0 0 0 0 0 +-5.384 -36.57 -1.887 0 0 0 0 0 0 0 +-5.265 -36.559 -1.885 0 0 0 0 0 0 0 +-5.154 -36.605 -1.887 0 0 0 0 0 0 0 +-5.039 -36.623 -1.887 0 0 0 0 0 0 0 +-4.922 -36.621 -1.886 0 0 0 0 0 0 0 +-4.806 -36.629 -1.886 0 0 0 0 0 0 0 +-4.75 -36.65 -1.887 0 0 0 0 0 0 0 +-4.632 -36.645 -1.885 0 0 0 0 0 0 0 +-4.516 -36.653 -1.885 0 0 0 0 0 0 0 +-4.4 -36.659 -1.885 0 0 0 0 0 0 0 +-2.089 -17.996 -0.821 0 0 0 0 0 0 0 +-2.03 -17.98 -0.82 0 0 0 0 0 0 0 +-1.972 -17.971 -0.819 0 0 0 0 0 0 0 +-1.856 -18.804 -0.865 0 0 0 0 0 0 0 +-1.798 -18.82 -0.866 0 0 0 0 0 0 0 +-1.665 -18.67 -0.857 0 0 0 0 0 0 0 +-1.629 -18.597 -0.853 0 0 0 0 0 0 0 +-1.574 -18.641 -0.855 0 0 0 0 0 0 0 +-1.508 -18.567 -0.85 0 0 0 0 0 0 0 +-1.456 -18.649 -0.855 0 0 0 0 0 0 0 +-1.475 -19.667 -0.912 0 0 0 0 0 0 0 +-1.418 -19.729 -0.915 0 0 0 0 0 0 0 +-1.357 -19.749 -0.916 0 0 0 0 0 0 0 +-1.294 -19.748 -0.916 0 0 0 0 0 0 0 +-1.22 -19.094 -0.879 0 0 0 0 0 0 0 +-1.161 -19.106 -0.879 0 0 0 0 0 0 0 +-1.101 -19.119 -0.88 0 0 0 0 0 0 0 +-1.042 -19.137 -0.881 0 0 0 0 0 0 0 +-0.982 -19.144 -0.881 0 0 0 0 0 0 0 +-0.922 -19.153 -0.881 0 0 0 0 0 0 0 +-0.856 -19.028 -0.874 0 0 0 0 0 0 0 +-0.859 -19.761 -0.915 0 0 0 0 0 0 0 +-0.793 -19.656 -0.909 0 0 0 0 0 0 0 +-0.611 -18.028 -0.817 0 0 0 0 0 0 0 +-0.555 -18.042 -0.818 0 0 0 0 0 0 0 +-0.475 -18.23 -0.828 0 0 0 0 0 0 0 +-0.418 -18.248 -0.829 0 0 0 0 0 0 0 +-0.739 -36.05 -1.836 0 0 0 0 0 0 0 +-0.623 -35.947 -1.83 0 0 0 0 0 0 0 +-0.509 -35.849 -1.824 0 0 0 0 0 0 0 +-0.395 -35.752 -1.819 0 0 0 0 0 0 0 +-0.282 -35.669 -1.814 0 0 0 0 0 0 0 +-0.143 -30.822 -1.54 0 0 0 0 0 0 0 +-0.113 -35.441 -1.801 0 0 0 0 0 0 0 +-0.002 -35.347 -1.796 0 0 0 0 0 0 0 +0.109 -35.221 -1.788 0 0 0 0 0 0 0 +0.219 -35.123 -1.783 0 0 0 0 0 0 0 +0.328 -35.002 -1.776 0 0 0 0 0 0 0 +0.438 -34.923 -1.772 0 0 0 0 0 0 0 +0.542 -34.584 -1.753 0 0 0 0 0 0 0 +0.593 -34.366 -1.74 0 0 0 0 0 0 0 +0.698 -34.228 -1.733 0 0 0 0 0 0 0 +0.802 -34.058 -1.723 0 0 0 0 0 0 0 +0.903 -33.813 -1.71 0 0 0 0 0 0 0 +1 -33.501 -1.692 0 0 0 0 0 0 0 +1.099 -33.322 -1.682 0 0 0 0 0 0 0 +1.194 -33.043 -1.667 0 0 0 0 0 0 0 +1.241 -32.906 -1.659 0 0 0 0 0 0 0 +1.333 -32.606 -1.642 0 0 0 0 0 0 0 +1.424 -32.344 -1.628 0 0 0 0 0 0 0 +1.511 -32.017 -1.609 0 0 0 0 0 0 0 +1.591 -31.595 -1.586 0 0 0 0 0 0 0 +1.672 -31.251 -1.567 0 0 0 0 0 0 0 +1.75 -30.891 -1.546 0 0 0 0 0 0 0 +1.779 -30.535 -1.526 0 0 0 0 0 0 0 +1.855 -30.202 -1.508 0 0 0 0 0 0 0 +1.932 -29.911 -1.492 0 0 0 0 0 0 0 +2.014 -29.734 -1.482 0 0 0 0 0 0 0 +2.099 -29.604 -1.475 0 0 0 0 0 0 0 +2.22 -29.981 -1.497 0 0 0 0 0 0 0 +2.315 -29.982 -1.497 0 0 0 0 0 0 0 +2.342 -29.72 -1.483 0 0 0 0 0 0 0 +2.428 -29.627 -1.478 0 0 0 0 0 0 0 +2.507 -29.454 -1.468 0 0 0 0 0 0 0 +2.441 -27.628 -1.365 0 0 0 0 0 0 0 +2.503 -27.347 -1.35 0 0 0 0 0 0 0 +2.555 -26.983 -1.33 0 0 0 0 0 0 0 +2.624 -26.81 -1.32 0 0 0 0 0 0 0 +2.637 -26.504 -1.303 0 0 0 0 0 0 0 +2.691 -26.212 -1.287 0 0 0 0 0 0 0 +2.754 -26.016 -1.276 0 0 0 0 0 0 0 +2.807 -25.744 -1.261 0 0 0 0 0 0 0 +2.86 -25.487 -1.247 0 0 0 0 0 0 0 +2.905 -25.166 -1.229 0 0 0 0 0 0 0 +2.951 -24.875 -1.213 0 0 0 0 0 0 0 +2.968 -24.692 -1.203 0 0 0 0 0 0 0 +3.033 -24.574 -1.197 0 0 0 0 0 0 0 +3.078 -24.314 -1.183 0 0 0 0 0 0 0 +3.127 -24.085 -1.17 0 0 0 0 0 0 0 +3.167 -23.805 -1.155 0 0 0 0 0 0 0 +3.222 -23.655 -1.147 0 0 0 0 0 0 0 +3.281 -23.53 -1.14 0 0 0 0 0 0 0 +3.261 -23.121 -1.117 0 0 0 0 0 0 0 +3.293 -22.822 -1.101 0 0 0 0 0 0 0 +3.334 -22.606 -1.089 0 0 0 0 0 0 0 +3.372 -22.371 -1.076 0 0 0 0 0 0 0 +3.44 -22.344 -1.075 0 0 0 0 0 0 0 +3.488 -22.191 -1.067 0 0 0 0 0 0 0 +3.544 -22.099 -1.063 0 0 0 0 0 0 0 +3.567 -22.021 -1.058 0 0 0 0 0 0 0 +3.654 -22.116 -1.064 0 0 0 0 0 0 0 +3.601 -21.374 -1.023 0 0 0 0 0 0 0 +3.642 -21.205 -1.014 0 0 0 0 0 0 0 +3.655 -20.886 -0.996 0 0 0 0 0 0 0 +3.661 -20.54 -0.977 0 0 0 0 0 0 0 +3.742 -20.619 -0.982 0 0 0 0 0 0 0 +3.79 -20.7 -0.987 0 0 0 0 0 0 0 +3.83 -20.55 -0.979 0 0 0 0 0 0 0 +3.865 -20.385 -0.97 0 0 0 0 0 0 0 +3.894 -20.191 -0.96 0 0 0 0 0 0 0 +3.861 -19.678 -0.931 0 0 0 0 0 0 0 +3.966 -19.887 -0.944 0 0 0 0 0 0 0 +4.007 -19.61 -0.929 0 0 0 0 0 0 0 +4.026 -19.388 -0.917 0 0 0 0 0 0 0 +4.112 -19.497 -0.924 0 0 0 0 0 0 0 +4.138 -19.32 -0.914 0 0 0 0 0 0 0 +1.425 -6.47 -0.172 0 0 0 0 0 0 0 +1.445 -6.465 -0.172 0 0 0 0 0 0 0 +1.452 -6.398 -0.168 0 0 0 0 0 0 0 +4.238 -17.977 -0.841 0 0 0 0 0 0 0 +4.315 -18.047 -0.846 0 0 0 0 0 0 0 +4.355 -17.966 -0.842 0 0 0 0 0 0 0 +4.382 -17.832 -0.835 0 0 0 0 0 0 0 +4.416 -17.85 -0.837 0 0 0 0 0 0 0 +4.457 -17.774 -0.833 0 0 0 0 0 0 0 +4.452 -17.52 -0.819 0 0 0 0 0 0 0 +4.526 -17.579 -0.823 0 0 0 0 0 0 0 +4.513 -17.304 -0.808 0 0 0 0 0 0 0 +4.611 -17.454 -0.818 0 0 0 0 0 0 0 +4.527 -16.918 -0.787 0 0 0 0 0 0 0 +4.58 -17.012 -0.793 0 0 0 0 0 0 0 +4.696 -17.226 -0.807 0 0 0 0 0 0 0 +4.552 -16.288 -0.753 0 0 0 0 0 0 0 +4.612 -16.307 -0.755 0 0 0 0 0 0 0 +4.683 -16.359 -0.759 0 0 0 0 0 0 0 +4.79 -16.538 -0.771 0 0 0 0 0 0 0 +4.719 -16.197 -0.751 0 0 0 0 0 0 0 +4.813 -16.33 -0.76 0 0 0 0 0 0 0 +4.802 -16.104 -0.747 0 0 0 0 0 0 0 +4.823 -15.991 -0.741 0 0 0 0 0 0 0 +4.849 -15.894 -0.737 0 0 0 0 0 0 0 +5.029 -16.304 -0.762 0 0 0 0 0 0 0 +4.954 -15.882 -0.738 0 0 0 0 0 0 0 +6.658 -21.256 -1.056 0 0 0 0 0 0 0 +5.726 -17.873 -0.858 0 0 0 0 0 0 0 +5.38 -16.606 -0.784 0 0 0 0 0 0 0 +5.423 -16.562 -0.782 0 0 0 0 0 0 0 +7.059 -21.355 -1.069 0 0 0 0 0 0 0 +7.119 -21.312 -1.068 0 0 0 0 0 0 0 +6.188 -18.417 -0.896 0 0 0 0 0 0 0 +5.225 -15.378 -0.715 0 0 0 0 0 0 0 +3.625 -10.534 -0.427 0 0 0 0 0 0 0 +3.638 -10.465 -0.424 0 0 0 0 0 0 0 +3.66 -10.422 -0.422 0 0 0 0 0 0 0 +3.697 -10.422 -0.422 0 0 0 0 0 0 0 +3.746 -10.457 -0.425 0 0 0 0 0 0 0 +3.755 -10.43 -0.424 0 0 0 0 0 0 0 +3.802 -10.458 -0.426 0 0 0 0 0 0 0 +3.835 -10.446 -0.426 0 0 0 0 0 0 0 +3.864 -10.425 -0.426 0 0 0 0 0 0 0 +8.022 -21.514 -1.095 0 0 0 0 0 0 0 +8.048 -21.378 -1.089 0 0 0 0 0 0 0 +8.071 -21.235 -1.082 0 0 0 0 0 0 0 +8.097 -21.204 -1.08 0 0 0 0 0 0 0 +8.144 -21.126 -1.077 0 0 0 0 0 0 0 +8.187 -21.041 -1.074 0 0 0 0 0 0 0 +5.966 -15.171 -0.719 0 0 0 0 0 0 0 +6.041 -15.222 -0.723 0 0 0 0 0 0 0 +6.214 -15.517 -0.742 0 0 0 0 0 0 0 +8.279 -20.508 -1.048 0 0 0 0 0 0 0 +6.305 -15.532 -0.745 0 0 0 0 0 0 0 +6.347 -15.495 -0.744 0 0 0 0 0 0 0 +7.844 -18.997 -0.959 0 0 0 0 0 0 0 +6.452 -15.474 -0.745 0 0 0 0 0 0 0 +8.332 -19.826 -1.013 0 0 0 0 0 0 0 +6.56 -15.458 -0.747 0 0 0 0 0 0 0 +6.639 -15.509 -0.751 0 0 0 0 0 0 0 +6.625 -15.411 -0.746 0 0 0 0 0 0 0 +6.664 -15.366 -0.744 0 0 0 0 0 0 0 +6.745 -15.422 -0.749 0 0 0 0 0 0 0 +6.835 -15.496 -0.755 0 0 0 0 0 0 0 +6.864 -15.429 -0.752 0 0 0 0 0 0 0 +8.437 -18.82 -0.963 0 0 0 0 0 0 0 +6.981 -15.431 -0.755 0 0 0 0 0 0 0 +7.04 -15.496 -0.759 0 0 0 0 0 0 0 +7.036 -15.358 -0.752 0 0 0 0 0 0 0 +7.104 -15.379 -0.755 0 0 0 0 0 0 0 +7.164 -15.382 -0.757 0 0 0 0 0 0 0 +7.23 -15.397 -0.759 0 0 0 0 0 0 0 +8.545 -18.062 -0.927 0 0 0 0 0 0 0 +8.58 -17.988 -0.924 0 0 0 0 0 0 0 +8.569 -17.894 -0.919 0 0 0 0 0 0 0 +8.61 -17.834 -0.917 0 0 0 0 0 0 0 +7.602 -15.613 -0.779 0 0 0 0 0 0 0 +7.693 -15.676 -0.784 0 0 0 0 0 0 0 +7.765 -15.698 -0.787 0 0 0 0 0 0 0 +7.782 -15.607 -0.783 0 0 0 0 0 0 0 +7.8 -15.522 -0.779 0 0 0 0 0 0 0 +7.879 -15.619 -0.786 0 0 0 0 0 0 0 +7.958 -15.653 -0.79 0 0 0 0 0 0 0 +7.954 -15.523 -0.783 0 0 0 0 0 0 0 +8.017 -15.526 -0.785 0 0 0 0 0 0 0 +8.101 -15.568 -0.789 0 0 0 0 0 0 0 +8.142 -15.528 -0.788 0 0 0 0 0 0 0 +8.189 -15.499 -0.788 0 0 0 0 0 0 0 +8.23 -15.518 -0.79 0 0 0 0 0 0 0 +8.292 -15.517 -0.792 0 0 0 0 0 0 0 +8.351 -15.51 -0.793 0 0 0 0 0 0 0 +8.405 -15.492 -0.794 0 0 0 0 0 0 0 +6.479 -11.841 -0.56 0 0 0 0 0 0 0 +6.464 -11.726 -0.554 0 0 0 0 0 0 0 +8.702 -15.571 -0.806 0 0 0 0 0 0 0 +8.771 -15.637 -0.811 0 0 0 0 0 0 0 +8.873 -15.703 -0.817 0 0 0 0 0 0 0 +8.933 -15.695 -0.818 0 0 0 0 0 0 0 +8.991 -15.682 -0.819 0 0 0 0 0 0 0 +9.025 -15.628 -0.817 0 0 0 0 0 0 0 +9.047 -15.553 -0.814 0 0 0 0 0 0 0 +9.063 -15.467 -0.811 0 0 0 0 0 0 0 +9.057 -15.401 -0.807 0 0 0 0 0 0 0 +9.106 -15.374 -0.807 0 0 0 0 0 0 0 +9.17 -15.372 -0.809 0 0 0 0 0 0 0 +9.24 -15.379 -0.811 0 0 0 0 0 0 0 +9.308 -15.382 -0.814 0 0 0 0 0 0 0 +9.384 -15.399 -0.817 0 0 0 0 0 0 0 +9.476 -15.495 -0.824 0 0 0 0 0 0 0 +9.449 -15.342 -0.816 0 0 0 0 0 0 0 +7.025 -11.315 -0.55 0 0 0 0 0 0 0 +7.054 -11.281 -0.549 0 0 0 0 0 0 0 +7.09 -11.26 -0.549 0 0 0 0 0 0 0 +7.115 -11.221 -0.548 0 0 0 0 0 0 0 +7.154 -11.205 -0.549 0 0 0 0 0 0 0 +7.155 -11.167 -0.547 0 0 0 0 0 0 0 +7.2 -11.161 -0.548 0 0 0 0 0 0 0 +7.23 -11.13 -0.548 0 0 0 0 0 0 0 +7.264 -11.106 -0.547 0 0 0 0 0 0 0 +7.292 -11.073 -0.547 0 0 0 0 0 0 0 +7.321 -11.042 -0.546 0 0 0 0 0 0 0 +7.351 -11.01 -0.546 0 0 0 0 0 0 0 +7.366 -10.995 -0.545 0 0 0 0 0 0 0 +7.395 -10.964 -0.545 0 0 0 0 0 0 0 +7.424 -10.934 -0.544 0 0 0 0 0 0 0 +7.457 -10.907 -0.544 0 0 0 0 0 0 0 +7.486 -10.877 -0.544 0 0 0 0 0 0 0 +7.516 -10.847 -0.543 0 0 0 0 0 0 0 +7.545 -10.817 -0.543 0 0 0 0 0 0 0 +7.571 -10.782 -0.542 0 0 0 0 0 0 0 +7.585 -10.765 -0.542 0 0 0 0 0 0 0 +7.6 -10.715 -0.54 0 0 0 0 0 0 0 +7.76 -10.868 -0.552 0 0 0 0 0 0 0 +7.718 -10.738 -0.545 0 0 0 0 0 0 0 +9.381 -12.974 -0.702 0 0 0 0 0 0 0 +9.399 -12.914 -0.7 0 0 0 0 0 0 0 +9.412 -12.847 -0.698 0 0 0 0 0 0 0 +9.405 -12.795 -0.695 0 0 0 0 0 0 0 +9.421 -12.732 -0.693 0 0 0 0 0 0 0 +9.424 -12.652 -0.689 0 0 0 0 0 0 0 +9.443 -12.596 -0.687 0 0 0 0 0 0 0 +9.454 -12.528 -0.684 0 0 0 0 0 0 0 +9.462 -12.456 -0.682 0 0 0 0 0 0 0 +9.482 -12.401 -0.68 0 0 0 0 0 0 0 +9.477 -12.355 -0.677 0 0 0 0 0 0 0 +9.486 -12.287 -0.675 0 0 0 0 0 0 0 +9.497 -12.221 -0.672 0 0 0 0 0 0 0 +9.516 -12.165 -0.67 0 0 0 0 0 0 0 +9.534 -12.11 -0.669 0 0 0 0 0 0 0 +9.552 -12.055 -0.667 0 0 0 0 0 0 0 +9.545 -12.007 -0.664 0 0 0 0 0 0 0 +9.562 -11.951 -0.662 0 0 0 0 0 0 0 +9.577 -11.893 -0.66 0 0 0 0 0 0 0 +9.584 -11.825 -0.658 0 0 0 0 0 0 0 +9.602 -11.772 -0.656 0 0 0 0 0 0 0 +9.616 -11.714 -0.654 0 0 0 0 0 0 0 +9.63 -11.656 -0.652 0 0 0 0 0 0 0 +9.642 -11.596 -0.65 0 0 0 0 0 0 0 +9.635 -11.55 -0.648 0 0 0 0 0 0 0 +9.642 -11.485 -0.645 0 0 0 0 0 0 0 +9.538 -11.288 -0.633 0 0 0 0 0 0 0 +9.541 -11.22 -0.63 0 0 0 0 0 0 0 +9.554 -11.164 -0.628 0 0 0 0 0 0 0 +9.563 -11.104 -0.626 0 0 0 0 0 0 0 +9.568 -11.039 -0.623 0 0 0 0 0 0 0 +9.568 -11.004 -0.622 0 0 0 0 0 0 0 +9.575 -10.942 -0.619 0 0 0 0 0 0 0 +9.59 -10.89 -0.618 0 0 0 0 0 0 0 +9.604 -10.837 -0.616 0 0 0 0 0 0 0 +9.612 -10.777 -0.614 0 0 0 0 0 0 0 +9.623 -10.721 -0.612 0 0 0 0 0 0 0 +9.63 -10.662 -0.609 0 0 0 0 0 0 0 +9.629 -10.627 -0.608 0 0 0 0 0 0 0 +9.633 -10.564 -0.605 0 0 0 0 0 0 0 +9.64 -10.506 -0.603 0 0 0 0 0 0 0 +9.657 -10.458 -0.602 0 0 0 0 0 0 0 +9.665 -10.401 -0.6 0 0 0 0 0 0 0 +9.665 -10.336 -0.597 0 0 0 0 0 0 0 +9.677 -10.284 -0.596 0 0 0 0 0 0 0 +9.674 -10.248 -0.594 0 0 0 0 0 0 0 +9.679 -10.188 -0.592 0 0 0 0 0 0 0 +9.689 -10.135 -0.59 0 0 0 0 0 0 0 +9.695 -10.077 -0.588 0 0 0 0 0 0 0 +9.703 -10.022 -0.586 0 0 0 0 0 0 0 +9.724 -9.982 -0.585 0 0 0 0 0 0 0 +9.062 -9.269 -0.53 0 0 0 0 0 0 0 +9.721 -9.884 -0.581 0 0 0 0 0 0 0 +9.718 -9.82 -0.578 0 0 0 0 0 0 0 +9.694 -9.734 -0.574 0 0 0 0 0 0 0 +9.711 -9.689 -0.573 0 0 0 0 0 0 0 +9.751 -9.668 -0.574 0 0 0 0 0 0 0 +9.764 -9.621 -0.572 0 0 0 0 0 0 0 +9.715 -9.512 -0.566 0 0 0 0 0 0 0 +9.764 -9.47 -0.566 0 0 0 0 0 0 0 +9.782 -9.428 -0.565 0 0 0 0 0 0 0 +9.786 -9.372 -0.563 0 0 0 0 0 0 0 +9.8 -9.328 -0.562 0 0 0 0 0 0 0 +9.807 -9.275 -0.56 0 0 0 0 0 0 0 +9.815 -9.225 -0.559 0 0 0 0 0 0 0 +9.807 -9.188 -0.557 0 0 0 0 0 0 0 +9.821 -9.143 -0.556 0 0 0 0 0 0 0 +9.817 -9.082 -0.553 0 0 0 0 0 0 0 +9.83 -9.037 -0.552 0 0 0 0 0 0 0 +9.843 -8.992 -0.551 0 0 0 0 0 0 0 +9.849 -8.941 -0.549 0 0 0 0 0 0 0 +9.854 -8.889 -0.547 0 0 0 0 0 0 0 +9.85 -8.857 -0.546 0 0 0 0 0 0 0 +9.855 -8.806 -0.544 0 0 0 0 0 0 0 +9.863 -8.758 -0.543 0 0 0 0 0 0 0 +9.875 -8.712 -0.542 0 0 0 0 0 0 0 +9.434 -8.27 -0.506 0 0 0 0 0 0 0 +9.481 -8.258 -0.508 0 0 0 0 0 0 0 +9.527 -8.245 -0.509 0 0 0 0 0 0 0 +9.606 -8.288 -0.514 0 0 0 0 0 0 0 +9.752 -8.361 -0.523 0 0 0 0 0 0 0 +9.817 -8.364 -0.526 0 0 0 0 0 0 0 +9.866 -8.352 -0.528 0 0 0 0 0 0 0 +9.911 -8.337 -0.529 0 0 0 0 0 0 0 +9.946 -8.313 -0.53 0 0 0 0 0 0 0 +9.966 -8.277 -0.53 0 0 0 0 0 0 0 +9.977 -8.26 -0.529 0 0 0 0 0 0 0 +9.968 -8.199 -0.527 0 0 0 0 0 0 0 +9.867 -8.064 -0.518 0 0 0 0 0 0 0 +9.762 -7.927 -0.508 0 0 0 0 0 0 0 +9.755 -7.87 -0.506 0 0 0 0 0 0 0 +9.762 -7.825 -0.505 0 0 0 0 0 0 0 +9.762 -7.775 -0.503 0 0 0 0 0 0 0 +9.493 -7.535 -0.482 0 0 0 0 0 0 0 +9.503 -7.494 -0.481 0 0 0 0 0 0 0 +9.529 -7.467 -0.482 0 0 0 0 0 0 0 +9.521 -7.412 -0.479 0 0 0 0 0 0 0 +9.521 -7.364 -0.478 0 0 0 0 0 0 0 +9.539 -7.33 -0.477 0 0 0 0 0 0 0 +9.594 -7.325 -0.48 0 0 0 0 0 0 0 +9.645 -7.34 -0.482 0 0 0 0 0 0 0 +9.69 -7.327 -0.484 0 0 0 0 0 0 0 +9.721 -7.302 -0.485 0 0 0 0 0 0 0 +9.76 -7.283 -0.486 0 0 0 0 0 0 0 +9.797 -7.264 -0.487 0 0 0 0 0 0 0 +9.846 -7.252 -0.489 0 0 0 0 0 0 0 +9.884 -7.233 -0.49 0 0 0 0 0 0 0 +9.93 -7.242 -0.492 0 0 0 0 0 0 0 +9.986 -7.235 -0.494 0 0 0 0 0 0 0 +10.03 -7.219 -0.496 0 0 0 0 0 0 0 +10.057 -7.191 -0.496 0 0 0 0 0 0 0 +10.091 -7.167 -0.497 0 0 0 0 0 0 0 +10.202 -7.198 -0.503 0 0 0 0 0 0 0 +10.556 -7.399 -0.526 0 0 0 0 0 0 0 +10.571 -7.385 -0.526 0 0 0 0 0 0 0 +10.6 -7.356 -0.527 0 0 0 0 0 0 0 +10.625 -7.324 -0.527 0 0 0 0 0 0 0 +10.64 -7.285 -0.526 0 0 0 0 0 0 0 +10.654 -7.246 -0.526 0 0 0 0 0 0 0 +10.68 -7.215 -0.526 0 0 0 0 0 0 0 +10.705 -7.182 -0.526 0 0 0 0 0 0 0 +10.714 -7.164 -0.526 0 0 0 0 0 0 0 +10.738 -7.132 -0.526 0 0 0 0 0 0 0 +10.751 -7.091 -0.525 0 0 0 0 0 0 0 +10.775 -7.059 -0.525 0 0 0 0 0 0 0 +10.795 -7.024 -0.525 0 0 0 0 0 0 0 +10.819 -6.991 -0.525 0 0 0 0 0 0 0 +10.842 -6.958 -0.526 0 0 0 0 0 0 0 +10.855 -6.942 -0.526 0 0 0 0 0 0 0 +10.873 -6.906 -0.525 0 0 0 0 0 0 0 +10.897 -6.872 -0.526 0 0 0 0 0 0 0 +10.922 -6.84 -0.526 0 0 0 0 0 0 0 +10.941 -6.805 -0.526 0 0 0 0 0 0 0 +10.964 -6.772 -0.526 0 0 0 0 0 0 0 +10.987 -6.738 -0.526 0 0 0 0 0 0 0 +10.996 -6.72 -0.526 0 0 0 0 0 0 0 +11.029 -6.693 -0.527 0 0 0 0 0 0 0 +11.074 -6.672 -0.528 0 0 0 0 0 0 0 +11.126 -6.656 -0.53 0 0 0 0 0 0 0 +11.174 -6.637 -0.532 0 0 0 0 0 0 0 +11.231 -6.624 -0.534 0 0 0 0 0 0 0 +11.279 -6.605 -0.536 0 0 0 0 0 0 0 +11.329 -6.61 -0.539 0 0 0 0 0 0 0 +11.374 -6.588 -0.54 0 0 0 0 0 0 0 +11.426 -6.571 -0.542 0 0 0 0 0 0 0 +11.485 -6.557 -0.545 0 0 0 0 0 0 0 +11.529 -6.534 -0.546 0 0 0 0 0 0 0 +11.581 -6.516 -0.548 0 0 0 0 0 0 0 +11.631 -6.496 -0.55 0 0 0 0 0 0 0 +11.675 -6.496 -0.553 0 0 0 0 0 0 0 +11.733 -6.481 -0.555 0 0 0 0 0 0 0 +11.783 -6.46 -0.557 0 0 0 0 0 0 0 +11.839 -6.442 -0.559 0 0 0 0 0 0 0 +11.889 -6.421 -0.561 0 0 0 0 0 0 0 +11.949 -6.406 -0.564 0 0 0 0 0 0 0 +12.008 -6.389 -0.566 0 0 0 0 0 0 0 +12.059 -6.392 -0.569 0 0 0 0 0 0 0 +12.116 -6.373 -0.571 0 0 0 0 0 0 0 +12.169 -6.353 -0.573 0 0 0 0 0 0 0 +12.219 -6.33 -0.575 0 0 0 0 0 0 0 +8.774 -4.502 -0.355 0 0 0 0 0 0 0 +8.792 -4.476 -0.355 0 0 0 0 0 0 0 +12.392 -6.273 -0.582 0 0 0 0 0 0 0 +12.432 -6.269 -0.584 0 0 0 0 0 0 0 +12.488 -6.247 -0.587 0 0 0 0 0 0 0 +12.548 -6.229 -0.589 0 0 0 0 0 0 0 +12.609 -6.21 -0.592 0 0 0 0 0 0 0 +12.664 -6.188 -0.594 0 0 0 0 0 0 0 +12.723 -6.167 -0.597 0 0 0 0 0 0 0 +12.789 -6.15 -0.599 0 0 0 0 0 0 0 +12.829 -6.144 -0.601 0 0 0 0 0 0 0 +12.881 -6.119 -0.603 0 0 0 0 0 0 0 +12.931 -6.093 -0.605 0 0 0 0 0 0 0 +12.997 -6.075 -0.608 0 0 0 0 0 0 0 +13.065 -6.057 -0.611 0 0 0 0 0 0 0 +13.111 -6.028 -0.613 0 0 0 0 0 0 0 +13.181 -6.01 -0.616 0 0 0 0 0 0 0 +13.236 -6.01 -0.619 0 0 0 0 0 0 0 +13.294 -5.987 -0.621 0 0 0 0 0 0 0 +13.357 -5.965 -0.624 0 0 0 0 0 0 0 +13.408 -5.937 -0.626 0 0 0 0 0 0 0 +13.473 -5.915 -0.629 0 0 0 0 0 0 0 +13.513 -5.882 -0.63 0 0 0 0 0 0 0 +13.566 -5.855 -0.633 0 0 0 0 0 0 0 +13.614 -5.85 -0.635 0 0 0 0 0 0 0 +13.669 -5.823 -0.637 0 0 0 0 0 0 0 +13.735 -5.801 -0.64 0 0 0 0 0 0 0 +13.797 -5.776 -0.643 0 0 0 0 0 0 0 +13.873 -5.756 -0.646 0 0 0 0 0 0 0 +13.915 -5.723 -0.648 0 0 0 0 0 0 0 +13.938 -5.681 -0.648 0 0 0 0 0 0 0 +13.954 -5.637 -0.648 0 0 0 0 0 0 0 +14.183 -5.704 -0.661 0 0 0 0 0 0 0 +13.969 -5.566 -0.647 0 0 0 0 0 0 0 +14.271 -5.635 -0.665 0 0 0 0 0 0 0 +14.322 -5.603 -0.667 0 0 0 0 0 0 0 +14.367 -5.569 -0.668 0 0 0 0 0 0 0 +14.429 -5.541 -0.671 0 0 0 0 0 0 0 +14.421 -5.486 -0.669 0 0 0 0 0 0 0 +14.308 -5.417 -0.662 0 0 0 0 0 0 0 +14.517 -5.393 -0.673 0 0 0 0 0 0 0 +14.596 -5.37 -0.676 0 0 0 0 0 0 0 +14.71 -5.36 -0.682 0 0 0 0 0 0 0 +14.755 -5.324 -0.684 0 0 0 0 0 0 0 +14.799 -5.314 -0.686 0 0 0 0 0 0 0 +14.854 -5.28 -0.688 0 0 0 0 0 0 0 +14.627 -5.148 -0.674 0 0 0 0 0 0 0 +14.956 -5.211 -0.693 0 0 0 0 0 0 0 +15.007 -5.176 -0.695 0 0 0 0 0 0 0 +15.034 -5.133 -0.695 0 0 0 0 0 0 0 +14.886 -4.978 -0.685 0 0 0 0 0 0 0 +15.153 -5.041 -0.7 0 0 0 0 0 0 0 +14.909 -4.908 -0.685 0 0 0 0 0 0 0 +15.287 -4.98 -0.706 0 0 0 0 0 0 0 +15.367 -4.952 -0.71 0 0 0 0 0 0 0 +15.41 -4.913 -0.712 0 0 0 0 0 0 0 +15.461 -4.876 -0.714 0 0 0 0 0 0 0 +15.516 -4.84 -0.716 0 0 0 0 0 0 0 +15.564 -4.828 -0.718 0 0 0 0 0 0 0 +15.623 -4.792 -0.721 0 0 0 0 0 0 0 +15.688 -4.758 -0.724 0 0 0 0 0 0 0 +15.658 -4.696 -0.721 0 0 0 0 0 0 0 +15.62 -4.631 -0.718 0 0 0 0 0 0 0 +15.592 -4.569 -0.716 0 0 0 0 0 0 0 +15.549 -4.503 -0.712 0 0 0 0 0 0 0 +15.519 -4.468 -0.71 0 0 0 0 0 0 0 +15.543 -4.422 -0.711 0 0 0 0 0 0 0 +15.608 -4.388 -0.714 0 0 0 0 0 0 0 +15.647 -4.346 -0.715 0 0 0 0 0 0 0 +15.701 -4.308 -0.718 0 0 0 0 0 0 0 +15.765 -4.272 -0.721 0 0 0 0 0 0 0 +15.834 -4.238 -0.724 0 0 0 0 0 0 0 +15.873 -4.222 -0.726 0 0 0 0 0 0 0 +15.931 -4.184 -0.728 0 0 0 0 0 0 0 +15.99 -4.146 -0.731 0 0 0 0 0 0 0 +16.044 -4.106 -0.733 0 0 0 0 0 0 0 +16.099 -4.066 -0.736 0 0 0 0 0 0 0 +16.172 -4.031 -0.739 0 0 0 0 0 0 0 +16.233 -3.992 -0.742 0 0 0 0 0 0 0 +16.286 -3.978 -0.745 0 0 0 0 0 0 0 +16.343 -3.938 -0.748 0 0 0 0 0 0 0 +16.396 -3.896 -0.75 0 0 0 0 0 0 0 +16.47 -3.859 -0.754 0 0 0 0 0 0 0 +16.525 -3.817 -0.756 0 0 0 0 0 0 0 +16.588 -3.777 -0.759 0 0 0 0 0 0 0 +16.648 -3.736 -0.762 0 0 0 0 0 0 0 +16.687 -3.717 -0.764 0 0 0 0 0 0 0 +16.759 -3.678 -0.767 0 0 0 0 0 0 0 +16.827 -3.638 -0.771 0 0 0 0 0 0 0 +16.895 -3.597 -0.774 0 0 0 0 0 0 0 +16.957 -3.555 -0.777 0 0 0 0 0 0 0 +17.013 -3.511 -0.779 0 0 0 0 0 0 0 +17.069 -3.466 -0.782 0 0 0 0 0 0 0 +17.096 -3.444 -0.783 0 0 0 0 0 0 0 +7.51 -1.473 -0.23 0 0 0 0 0 0 0 +7.507 -1.448 -0.229 0 0 0 0 0 0 0 +7.525 -1.427 -0.23 0 0 0 0 0 0 0 +7.469 -1.392 -0.227 0 0 0 0 0 0 0 +7.489 -1.372 -0.228 0 0 0 0 0 0 0 +7.487 -1.347 -0.227 0 0 0 0 0 0 0 +7.481 -1.334 -0.227 0 0 0 0 0 0 0 +7.521 -1.317 -0.229 0 0 0 0 0 0 0 +7.511 -1.291 -0.228 0 0 0 0 0 0 0 +7.541 -1.271 -0.23 0 0 0 0 0 0 0 +7.566 -1.251 -0.231 0 0 0 0 0 0 0 +7.58 -1.229 -0.231 0 0 0 0 0 0 0 +7.598 -1.208 -0.232 0 0 0 0 0 0 0 +13.606 -2.118 -0.576 0 0 0 0 0 0 0 +13.614 -2.075 -0.576 0 0 0 0 0 0 0 +13.64 -2.035 -0.577 0 0 0 0 0 0 0 +13.696 -2 -0.58 0 0 0 0 0 0 0 +13.77 -1.967 -0.584 0 0 0 0 0 0 0 +19.062 -2.671 -0.885 0 0 0 0 0 0 0 +19.122 -2.649 -0.889 0 0 0 0 0 0 0 +19.201 -2.599 -0.893 0 0 0 0 0 0 0 +19.265 -2.546 -0.896 0 0 0 0 0 0 0 +19.269 -2.485 -0.896 0 0 0 0 0 0 0 +19.249 -2.421 -0.894 0 0 0 0 0 0 0 +19.326 -2.369 -0.898 0 0 0 0 0 0 0 +19.387 -2.315 -0.901 0 0 0 0 0 0 0 +19.416 -2.287 -0.902 0 0 0 0 0 0 0 +19.473 -2.232 -0.905 0 0 0 0 0 0 0 +19.529 -2.176 -0.908 0 0 0 0 0 0 0 +19.572 -2.119 -0.91 0 0 0 0 0 0 0 +19.632 -2.063 -0.913 0 0 0 0 0 0 0 +19.68 -2.006 -0.916 0 0 0 0 0 0 0 +19.72 -1.947 -0.917 0 0 0 0 0 0 0 +19.775 -1.921 -0.92 0 0 0 0 0 0 0 +19.824 -1.863 -0.923 0 0 0 0 0 0 0 +19.88 -1.806 -0.926 0 0 0 0 0 0 0 +19.933 -1.748 -0.928 0 0 0 0 0 0 0 +19.982 -1.689 -0.931 0 0 0 0 0 0 0 +20.035 -1.63 -0.934 0 0 0 0 0 0 0 +20.084 -1.57 -0.936 0 0 0 0 0 0 0 +20.13 -1.542 -0.939 0 0 0 0 0 0 0 +20.187 -1.483 -0.942 0 0 0 0 0 0 0 +20.353 -1.431 -0.951 0 0 0 0 0 0 0 +20.845 -1.4 -0.978 0 0 0 0 0 0 0 +20.839 -1.334 -0.978 0 0 0 0 0 0 0 +20.666 -1.258 -0.968 0 0 0 0 0 0 0 +20.82 -1.202 -0.976 0 0 0 0 0 0 0 +20.831 -1.17 -0.977 0 0 0 0 0 0 0 +20.865 -1.106 -0.978 0 0 0 0 0 0 0 +20.942 -1.044 -0.983 0 0 0 0 0 0 0 +20.885 -0.975 -0.979 0 0 0 0 0 0 0 +20.828 -0.907 -0.976 0 0 0 0 0 0 0 +20.797 -0.84 -0.974 0 0 0 0 0 0 0 +20.852 -0.777 -0.977 0 0 0 0 0 0 0 +20.907 -0.746 -0.98 0 0 0 0 0 0 0 +20.963 -0.682 -0.983 0 0 0 0 0 0 0 +21.013 -0.618 -0.986 0 0 0 0 0 0 0 +21.069 -0.553 -0.989 0 0 0 0 0 0 0 +21.132 -0.489 -0.992 0 0 0 0 0 0 0 +21.193 -0.423 -0.996 0 0 0 0 0 0 0 +21.243 -0.358 -0.998 0 0 0 0 0 0 0 +21.301 -0.325 -1.002 0 0 0 0 0 0 0 +21.368 -0.259 -1.005 0 0 0 0 0 0 0 +21.41 -0.193 -1.008 0 0 0 0 0 0 0 +21.487 -0.126 -1.012 0 0 0 0 0 0 0 +21.547 -0.059 -1.015 0 0 0 0 0 0 0 +22.168 0.057 -1.169 0 0 0 0 0 0 0 +28.04 0.168 -1.532 0 0 0 0 0 0 0 +28.203 0.257 -1.542 0 0 0 0 0 0 0 +13.434 0.172 -0.628 0 0 0 0 0 0 0 +28.153 0.478 -1.539 0 0 0 0 0 0 0 +28.217 0.568 -1.543 0 0 0 0 0 0 0 +28.335 0.659 -1.551 0 0 0 0 0 0 0 +13.379 0.382 -0.625 0 0 0 0 0 0 0 +13.725 0.457 -0.647 0 0 0 0 0 0 0 +13.725 0.5 -0.647 0 0 0 0 0 0 0 +28.449 1.154 -1.559 0 0 0 0 0 0 0 +28.543 1.248 -1.565 0 0 0 0 0 0 0 +28.64 1.342 -1.571 0 0 0 0 0 0 0 +28.63 1.432 -1.571 0 0 0 0 0 0 0 +28.583 1.52 -1.568 0 0 0 0 0 0 0 +28.748 1.574 -1.578 0 0 0 0 0 0 0 +25.569 1.478 -1.382 0 0 0 0 0 0 0 +25.56 1.558 -1.381 0 0 0 0 0 0 0 +14.855 0.988 -0.718 0 0 0 0 0 0 0 +28.762 2.028 -1.581 0 0 0 0 0 0 0 +28.893 2.129 -1.589 0 0 0 0 0 0 0 +28.911 2.176 -1.591 0 0 0 0 0 0 0 +28.873 2.264 -1.589 0 0 0 0 0 0 0 +28.965 2.363 -1.595 0 0 0 0 0 0 0 +15.779 1.325 -0.777 0 0 0 0 0 0 0 +15.872 1.384 -0.783 0 0 0 0 0 0 0 +18.801 1.703 -0.965 0 0 0 0 0 0 0 +15.791 1.476 -0.778 0 0 0 0 0 0 0 +18.716 1.784 -0.96 0 0 0 0 0 0 0 +15.619 1.534 -0.768 0 0 0 0 0 0 0 +15.162 1.537 -0.74 0 0 0 0 0 0 0 +15.085 1.577 -0.736 0 0 0 0 0 0 0 +15.896 1.713 -0.786 0 0 0 0 0 0 0 +15.894 1.764 -0.787 0 0 0 0 0 0 0 +15.879 1.813 -0.786 0 0 0 0 0 0 0 +28.907 3.367 -1.598 0 0 0 0 0 0 0 +28.893 3.458 -1.597 0 0 0 0 0 0 0 +28.856 3.545 -1.596 0 0 0 0 0 0 0 +25.11 3.242 -1.363 0 0 0 0 0 0 0 +16.191 2.185 -0.808 0 0 0 0 0 0 0 +28.811 3.954 -1.596 0 0 0 0 0 0 0 +28.133 4.131 -1.556 0 0 0 0 0 0 0 +20.909 3.131 -1.105 0 0 0 0 0 0 0 +20.909 3.198 -1.106 0 0 0 0 0 0 0 +28.625 4.48 -1.59 0 0 0 0 0 0 0 +28.631 4.527 -1.59 0 0 0 0 0 0 0 +28.639 4.62 -1.592 0 0 0 0 0 0 0 +28.591 4.705 -1.59 0 0 0 0 0 0 0 +28.548 4.79 -1.588 0 0 0 0 0 0 0 +24.86 4.248 -1.357 0 0 0 0 0 0 0 +28.48 4.962 -1.586 0 0 0 0 0 0 0 +28.443 5.048 -1.584 0 0 0 0 0 0 0 +28.413 5.089 -1.583 0 0 0 0 0 0 0 +28.411 5.181 -1.584 0 0 0 0 0 0 0 +18.19 3.366 -0.942 0 0 0 0 0 0 0 +28.321 5.348 -1.58 0 0 0 0 0 0 0 +28.296 5.436 -1.58 0 0 0 0 0 0 0 +18.603 3.686 -0.97 0 0 0 0 0 0 0 +28.189 5.691 -1.576 0 0 0 0 0 0 0 +28.162 5.732 -1.575 0 0 0 0 0 0 0 +28.181 5.828 -1.577 0 0 0 0 0 0 0 +23.434 4.918 -1.279 0 0 0 0 0 0 0 +23.419 4.992 -1.279 0 0 0 0 0 0 0 +28.102 6.088 -1.576 0 0 0 0 0 0 0 +28.08 6.176 -1.576 0 0 0 0 0 0 0 +18.881 4.206 -0.994 0 0 0 0 0 0 0 +18.882 4.237 -0.994 0 0 0 0 0 0 0 +28.004 6.39 -1.574 0 0 0 0 0 0 0 +27.991 6.48 -1.575 0 0 0 0 0 0 0 +27.971 6.568 -1.575 0 0 0 0 0 0 0 +21.892 5.28 -1.19 0 0 0 0 0 0 0 +20.185 4.967 -1.083 0 0 0 0 0 0 0 +27.846 6.955 -1.573 0 0 0 0 0 0 0 +27.842 7.047 -1.574 0 0 0 0 0 0 0 +27.816 7.133 -1.574 0 0 0 0 0 0 0 +27.77 7.215 -1.572 0 0 0 0 0 0 0 +27.749 7.302 -1.572 0 0 0 0 0 0 0 +27.685 7.379 -1.57 0 0 0 0 0 0 0 +27.678 7.423 -1.57 0 0 0 0 0 0 0 +16.216 4.447 -0.837 0 0 0 0 0 0 0 +15.969 4.433 -0.823 0 0 0 0 0 0 0 +15.943 4.48 -0.822 0 0 0 0 0 0 0 +15.916 4.526 -0.821 0 0 0 0 0 0 0 +16.015 4.609 -0.828 0 0 0 0 0 0 0 +16.053 4.648 -0.831 0 0 0 0 0 0 0 +16.021 4.693 -0.83 0 0 0 0 0 0 0 +15.993 4.739 -0.829 0 0 0 0 0 0 0 +15.953 4.782 -0.828 0 0 0 0 0 0 0 +15.94 4.833 -0.828 0 0 0 0 0 0 0 +15.913 4.879 -0.827 0 0 0 0 0 0 0 +15.883 4.924 -0.826 0 0 0 0 0 0 0 +15.917 4.963 -0.829 0 0 0 0 0 0 0 +15.884 5.007 -0.828 0 0 0 0 0 0 0 +15.868 5.057 -0.828 0 0 0 0 0 0 0 +15.841 5.103 -0.827 0 0 0 0 0 0 0 +15.825 5.153 -0.827 0 0 0 0 0 0 0 +15.797 5.199 -0.826 0 0 0 0 0 0 0 +15.777 5.247 -0.826 0 0 0 0 0 0 0 +15.754 5.267 -0.825 0 0 0 0 0 0 0 +15.705 5.305 -0.823 0 0 0 0 0 0 0 +15.673 5.349 -0.822 0 0 0 0 0 0 0 +15.649 5.396 -0.821 0 0 0 0 0 0 0 +15.632 5.445 -0.821 0 0 0 0 0 0 0 +15.624 5.498 -0.822 0 0 0 0 0 0 0 +15.608 5.547 -0.822 0 0 0 0 0 0 0 +15.594 5.57 -0.822 0 0 0 0 0 0 0 +15.573 5.617 -0.821 0 0 0 0 0 0 0 +15.566 5.67 -0.822 0 0 0 0 0 0 0 +15.541 5.717 -0.822 0 0 0 0 0 0 0 +15.534 5.77 -0.822 0 0 0 0 0 0 0 +15.563 5.836 -0.826 0 0 0 0 0 0 0 +15.434 5.843 -0.818 0 0 0 0 0 0 0 +15.333 5.832 -0.812 0 0 0 0 0 0 0 +15.192 5.833 -0.804 0 0 0 0 0 0 0 +15.529 6.019 -0.828 0 0 0 0 0 0 0 +15.579 6.095 -0.832 0 0 0 0 0 0 0 +16.061 6.342 -0.866 0 0 0 0 0 0 0 +16.713 6.662 -0.91 0 0 0 0 0 0 0 +17.638 7.097 -0.973 0 0 0 0 0 0 0 +18.346 7.416 -1.021 0 0 0 0 0 0 0 +27.139 11.083 -1.611 0 0 0 0 0 0 0 +27.12 11.175 -1.612 0 0 0 0 0 0 0 +27.092 11.263 -1.612 0 0 0 0 0 0 0 +27.072 11.355 -1.613 0 0 0 0 0 0 0 +27.038 11.44 -1.613 0 0 0 0 0 0 0 +27.025 11.536 -1.615 0 0 0 0 0 0 0 +27.015 11.581 -1.615 0 0 0 0 0 0 0 +26.991 11.672 -1.616 0 0 0 0 0 0 0 +26.947 11.753 -1.616 0 0 0 0 0 0 0 +26.926 11.845 -1.617 0 0 0 0 0 0 0 +26.916 11.942 -1.619 0 0 0 0 0 0 0 +26.904 12.038 -1.621 0 0 0 0 0 0 0 +26.877 12.127 -1.621 0 0 0 0 0 0 0 +26.887 12.182 -1.623 0 0 0 0 0 0 0 +26.858 12.271 -1.624 0 0 0 0 0 0 0 +26.848 12.369 -1.626 0 0 0 0 0 0 0 +26.84 12.467 -1.628 0 0 0 0 0 0 0 +26.809 12.556 -1.629 0 0 0 0 0 0 0 +26.768 12.639 -1.628 0 0 0 0 0 0 0 +26.743 12.73 -1.629 0 0 0 0 0 0 0 +26.706 12.816 -1.63 0 0 0 0 0 0 0 +26.713 12.871 -1.632 0 0 0 0 0 0 0 +26.701 12.968 -1.633 0 0 0 0 0 0 0 +26.707 13.075 -1.637 0 0 0 0 0 0 0 +26.692 13.172 -1.639 0 0 0 0 0 0 0 +26.705 13.283 -1.642 0 0 0 0 0 0 0 +26.73 13.401 -1.647 0 0 0 0 0 0 0 +26.709 13.443 -1.647 0 0 0 0 0 0 0 +26.69 13.538 -1.649 0 0 0 0 0 0 0 +26.655 13.626 -1.649 0 0 0 0 0 0 0 +26.622 13.715 -1.65 0 0 0 0 0 0 0 +26.597 13.808 -1.651 0 0 0 0 0 0 0 +26.576 13.903 -1.653 0 0 0 0 0 0 0 +26.552 13.997 -1.654 0 0 0 0 0 0 0 +26.555 14.052 -1.656 0 0 0 0 0 0 0 +26.537 14.149 -1.658 0 0 0 0 0 0 0 +26.522 14.248 -1.66 0 0 0 0 0 0 0 +26.489 14.338 -1.661 0 0 0 0 0 0 0 +26.446 14.422 -1.661 0 0 0 0 0 0 0 +26.404 14.507 -1.661 0 0 0 0 0 0 0 +26.358 14.59 -1.661 0 0 0 0 0 0 0 +26.351 14.64 -1.662 0 0 0 0 0 0 0 +26.333 14.739 -1.664 0 0 0 0 0 0 0 +26.292 14.824 -1.664 0 0 0 0 0 0 0 +26.262 14.917 -1.666 0 0 0 0 0 0 0 +26.2 14.99 -1.664 0 0 0 0 0 0 0 +26.149 15.07 -1.664 0 0 0 0 0 0 0 +26.12 15.164 -1.666 0 0 0 0 0 0 0 +26.083 15.252 -1.666 0 0 0 0 0 0 0 +26.087 15.309 -1.668 0 0 0 0 0 0 0 +26.055 15.401 -1.67 0 0 0 0 0 0 0 +25.988 15.471 -1.668 0 0 0 0 0 0 0 +25.936 15.551 -1.668 0 0 0 0 0 0 0 +25.87 15.622 -1.667 0 0 0 0 0 0 0 +25.807 15.695 -1.666 0 0 0 0 0 0 0 +25.764 15.78 -1.666 0 0 0 0 0 0 0 +25.728 15.813 -1.665 0 0 0 0 0 0 0 +25.698 15.906 -1.667 0 0 0 0 0 0 0 +25.675 16.004 -1.669 0 0 0 0 0 0 0 +25.648 16.099 -1.671 0 0 0 0 0 0 0 +25.618 16.193 -1.672 0 0 0 0 0 0 0 +25.587 16.286 -1.673 0 0 0 0 0 0 0 +25.575 16.335 -1.674 0 0 0 0 0 0 0 +25.569 16.444 -1.678 0 0 0 0 0 0 0 +25.494 16.509 -1.676 0 0 0 0 0 0 0 +13.305 8.72 -0.781 0 0 0 0 0 0 0 +25.302 16.726 -1.673 0 0 0 0 0 0 0 +25.258 16.811 -1.674 0 0 0 0 0 0 0 +25.223 16.845 -1.673 0 0 0 0 0 0 0 +25.165 16.921 -1.673 0 0 0 0 0 0 0 +25.135 17.015 -1.675 0 0 0 0 0 0 0 +15.558 10.591 -0.962 0 0 0 0 0 0 0 +25.05 17.189 -1.677 0 0 0 0 0 0 0 +15.533 10.718 -0.965 0 0 0 0 0 0 0 +15.536 10.792 -0.967 0 0 0 0 0 0 0 +24.834 17.329 -1.671 0 0 0 0 0 0 0 +16.26 11.411 -1.026 0 0 0 0 0 0 0 +16.188 11.437 -1.023 0 0 0 0 0 0 0 +24.639 17.54 -1.668 0 0 0 0 0 0 0 +24.563 17.602 -1.667 0 0 0 0 0 0 0 +17.567 12.663 -1.137 0 0 0 0 0 0 0 +16.011 11.616 -1.021 0 0 0 0 0 0 0 +15.935 11.598 -1.017 0 0 0 0 0 0 0 +15.895 11.646 -1.016 0 0 0 0 0 0 0 +15.247 11.244 -0.969 0 0 0 0 0 0 0 +17.37 12.898 -1.136 0 0 0 0 0 0 0 +15.815 11.818 -1.019 0 0 0 0 0 0 0 +17.346 13.051 -1.14 0 0 0 0 0 0 0 +17.265 13.075 -1.137 0 0 0 0 0 0 0 +16.382 12.445 -1.07 0 0 0 0 0 0 0 +16.226 12.407 -1.061 0 0 0 0 0 0 0 +14.986 11.531 -0.967 0 0 0 0 0 0 0 +16.013 12.404 -1.05 0 0 0 0 0 0 0 +17.149 13.373 -1.143 0 0 0 0 0 0 0 +14.608 11.46 -0.946 0 0 0 0 0 0 0 +16.32 12.891 -1.084 0 0 0 0 0 0 0 +14.893 11.837 -0.974 0 0 0 0 0 0 0 +14.845 11.837 -0.972 0 0 0 0 0 0 0 +14.8 11.877 -0.971 0 0 0 0 0 0 0 +14.794 11.948 -0.974 0 0 0 0 0 0 0 +12.124 9.85 -0.764 0 0 0 0 0 0 0 +12.051 9.853 -0.76 0 0 0 0 0 0 0 +6.825 5.602 -0.344 0 0 0 0 0 0 0 +6.725 5.554 -0.337 0 0 0 0 0 0 0 +6.714 5.563 -0.337 0 0 0 0 0 0 0 +6.887 5.744 -0.352 0 0 0 0 0 0 0 +11.81 9.938 -0.752 0 0 0 0 0 0 0 +11.777 9.974 -0.752 0 0 0 0 0 0 0 +11.754 10.017 -0.753 0 0 0 0 0 0 0 +11.783 10.106 -0.758 0 0 0 0 0 0 0 +11.82 10.17 -0.762 0 0 0 0 0 0 0 +11.842 10.254 -0.766 0 0 0 0 0 0 0 +16.24 14.165 -1.13 0 0 0 0 0 0 0 +16.131 14.159 -1.125 0 0 0 0 0 0 0 +13.674 12.074 -0.926 0 0 0 0 0 0 0 +15.684 13.942 -1.095 0 0 0 0 0 0 0 +14.998 13.415 -1.042 0 0 0 0 0 0 0 +15.018 13.476 -1.046 0 0 0 0 0 0 0 +15.158 13.688 -1.061 0 0 0 0 0 0 0 +14.699 13.356 -1.026 0 0 0 0 0 0 0 +14.823 13.555 -1.04 0 0 0 0 0 0 0 +14.767 13.589 -1.039 0 0 0 0 0 0 0 +15.16 14.04 -1.076 0 0 0 0 0 0 0 +15.15 14.119 -1.078 0 0 0 0 0 0 0 +15.069 14.088 -1.073 0 0 0 0 0 0 0 +14.919 14.036 -1.064 0 0 0 0 0 0 0 +14.798 14.01 -1.058 0 0 0 0 0 0 0 +16.026 15.271 -1.167 0 0 0 0 0 0 0 +14.826 14.214 -1.068 0 0 0 0 0 0 0 +14.86 14.337 -1.075 0 0 0 0 0 0 0 +14.804 14.373 -1.074 0 0 0 0 0 0 0 +15.72 15.361 -1.157 0 0 0 0 0 0 0 +14.676 14.383 -1.068 0 0 0 0 0 0 0 +14.639 14.438 -1.069 0 0 0 0 0 0 0 +14.679 14.568 -1.077 0 0 0 0 0 0 0 +13.512 13.492 -0.978 0 0 0 0 0 0 0 +13.568 13.633 -0.987 0 0 0 0 0 0 0 +15.16 15.334 -1.131 0 0 0 0 0 0 0 +13.994 14.241 -1.032 0 0 0 0 0 0 0 +14.192 14.489 -1.052 0 0 0 0 0 0 0 +14.204 14.592 -1.057 0 0 0 0 0 0 0 +13.588 14.046 -1.006 0 0 0 0 0 0 0 +12.433 12.93 -0.907 0 0 0 0 0 0 0 +12.409 12.987 -0.908 0 0 0 0 0 0 0 +12.471 13.134 -0.918 0 0 0 0 0 0 0 +12.941 13.717 -0.964 0 0 0 0 0 0 0 +12.901 13.717 -0.962 0 0 0 0 0 0 0 +12.942 13.848 -0.97 0 0 0 0 0 0 0 +12.847 13.833 -0.965 0 0 0 0 0 0 0 +12.167 13.181 -0.907 0 0 0 0 0 0 0 +11.666 12.717 -0.865 0 0 0 0 0 0 0 +11.682 12.816 -0.87 0 0 0 0 0 0 0 +12.894 14.239 -0.986 0 0 0 0 0 0 0 +12.928 14.322 -0.991 0 0 0 0 0 0 0 +12.953 14.441 -0.997 0 0 0 0 0 0 0 +12.777 14.334 -0.985 0 0 0 0 0 0 0 +13.261 14.974 -1.035 0 0 0 0 0 0 0 +12.647 14.369 -0.981 0 0 0 0 0 0 0 +13.3 15.209 -1.047 0 0 0 0 0 0 0 +13.284 15.289 -1.05 0 0 0 0 0 0 0 +12.233 14.121 -0.953 0 0 0 0 0 0 0 +12.248 14.227 -0.959 0 0 0 0 0 0 0 +13.216 15.453 -1.055 0 0 0 0 0 0 0 +13.082 15.394 -1.047 0 0 0 0 0 0 0 +12.909 15.287 -1.035 0 0 0 0 0 0 0 +12.797 15.251 -1.029 0 0 0 0 0 0 0 +12.962 15.547 -1.049 0 0 0 0 0 0 0 +13.009 15.654 -1.056 0 0 0 0 0 0 0 +12.862 15.576 -1.047 0 0 0 0 0 0 0 +12.784 15.581 -1.044 0 0 0 0 0 0 0 +13.023 15.976 -1.072 0 0 0 0 0 0 0 +13.048 16.11 -1.08 0 0 0 0 0 0 0 +12.639 15.704 -1.044 0 0 0 0 0 0 0 +12.804 16.012 -1.066 0 0 0 0 0 0 0 +12.799 16.058 -1.068 0 0 0 0 0 0 0 +13.781 17.405 -1.171 0 0 0 0 0 0 0 +13.635 17.332 -1.161 0 0 0 0 0 0 0 +13.603 17.403 -1.164 0 0 0 0 0 0 0 +13.383 17.233 -1.147 0 0 0 0 0 0 0 +13.907 18.026 -1.206 0 0 0 0 0 0 0 +13.775 17.971 -1.198 0 0 0 0 0 0 0 +13.975 18.293 -1.221 0 0 0 0 0 0 0 +14.326 18.876 -1.263 0 0 0 0 0 0 0 +14.448 19.162 -1.282 0 0 0 0 0 0 0 +14.4 19.223 -1.283 0 0 0 0 0 0 0 +12.972 17.427 -1.141 0 0 0 0 0 0 0 +12.91 17.458 -1.14 0 0 0 0 0 0 0 +12.859 17.503 -1.141 0 0 0 0 0 0 0 +12.821 17.509 -1.14 0 0 0 0 0 0 0 +12.75 17.528 -1.138 0 0 0 0 0 0 0 +12.682 17.55 -1.137 0 0 0 0 0 0 0 +12.631 17.595 -1.137 0 0 0 0 0 0 0 +12.568 17.625 -1.136 0 0 0 0 0 0 0 +12.499 17.645 -1.135 0 0 0 0 0 0 0 +12.438 17.676 -1.134 0 0 0 0 0 0 0 +12.399 17.679 -1.133 0 0 0 0 0 0 0 +12.34 17.713 -1.133 0 0 0 0 0 0 0 +12.274 17.737 -1.132 0 0 0 0 0 0 0 +12.295 17.887 -1.14 0 0 0 0 0 0 0 +12.434 18.213 -1.161 0 0 0 0 0 0 0 +12.581 18.554 -1.184 0 0 0 0 0 0 0 +12.759 18.945 -1.21 0 0 0 0 0 0 0 +14.714 22.004 -1.435 0 0 0 0 0 0 0 +14.753 22.138 -1.443 0 0 0 0 0 0 0 +15.577 23.537 -1.543 0 0 0 0 0 0 0 +15.501 23.582 -1.543 0 0 0 0 0 0 0 +15.42 23.621 -1.542 0 0 0 0 0 0 0 +15.345 23.668 -1.542 0 0 0 0 0 0 0 +15.279 23.729 -1.543 0 0 0 0 0 0 0 +15.185 23.747 -1.541 0 0 0 0 0 0 0 +15.155 23.782 -1.542 0 0 0 0 0 0 0 +15.089 23.843 -1.543 0 0 0 0 0 0 0 +15.047 23.943 -1.547 0 0 0 0 0 0 0 +15.012 24.054 -1.551 0 0 0 0 0 0 0 +14.985 24.181 -1.557 0 0 0 0 0 0 0 +14.945 24.286 -1.561 0 0 0 0 0 0 0 +14.973 24.419 -1.569 0 0 0 0 0 0 0 +14.919 24.503 -1.572 0 0 0 0 0 0 0 +14.818 24.509 -1.569 0 0 0 0 0 0 0 +14.785 24.629 -1.574 0 0 0 0 0 0 0 +14.764 24.771 -1.581 0 0 0 0 0 0 0 +14.71 24.857 -1.584 0 0 0 0 0 0 0 +14.668 24.965 -1.588 0 0 0 0 0 0 0 +14.698 25.107 -1.597 0 0 0 0 0 0 0 +14.63 25.172 -1.598 0 0 0 0 0 0 0 +14.488 25.109 -1.591 0 0 0 0 0 0 0 +14.55 25.4 -1.608 0 0 0 0 0 0 0 +14.492 25.484 -1.611 0 0 0 0 0 0 0 +14.331 25.387 -1.601 0 0 0 0 0 0 0 +14.313 25.542 -1.608 0 0 0 0 0 0 0 +14.249 25.616 -1.611 0 0 0 0 0 0 0 +14.271 25.75 -1.618 0 0 0 0 0 0 0 +14.22 25.851 -1.622 0 0 0 0 0 0 0 +12.643 23.149 -1.429 0 0 0 0 0 0 0 +12.544 23.141 -1.426 0 0 0 0 0 0 0 +12.469 23.175 -1.425 0 0 0 0 0 0 0 +12.385 23.195 -1.424 0 0 0 0 0 0 0 +12.357 23.318 -1.43 0 0 0 0 0 0 0 +13.856 26.254 -1.634 0 0 0 0 0 0 0 +13.774 26.297 -1.634 0 0 0 0 0 0 0 +13.71 26.377 -1.636 0 0 0 0 0 0 0 +13.653 26.47 -1.64 0 0 0 0 0 0 0 +13.581 26.534 -1.641 0 0 0 0 0 0 0 +13.515 26.612 -1.644 0 0 0 0 0 0 0 +13.424 26.638 -1.642 0 0 0 0 0 0 0 +13.373 26.747 -1.647 0 0 0 0 0 0 0 +13.319 26.744 -1.645 0 0 0 0 0 0 0 +13.238 26.791 -1.646 0 0 0 0 0 0 0 +13.211 26.949 -1.654 0 0 0 0 0 0 0 +13.124 26.987 -1.654 0 0 0 0 0 0 0 +13.009 26.965 -1.649 0 0 0 0 0 0 0 +12.981 27.125 -1.657 0 0 0 0 0 0 0 +12.939 27.147 -1.658 0 0 0 0 0 0 0 +12.879 27.24 -1.661 0 0 0 0 0 0 0 +12.806 27.307 -1.663 0 0 0 0 0 0 0 +12.727 27.364 -1.664 0 0 0 0 0 0 0 +12.658 27.44 -1.667 0 0 0 0 0 0 0 +12.564 27.463 -1.665 0 0 0 0 0 0 0 +12.496 27.543 -1.668 0 0 0 0 0 0 0 +12.431 27.631 -1.672 0 0 0 0 0 0 0 +12.43 27.743 -1.678 0 0 0 0 0 0 0 +12.337 27.769 -1.677 0 0 0 0 0 0 0 +12.267 27.848 -1.68 0 0 0 0 0 0 0 +12.207 27.951 -1.684 0 0 0 0 0 0 0 +12.055 27.839 -1.674 0 0 0 0 0 0 0 +12.022 28.005 -1.682 0 0 0 0 0 0 0 +12.007 28.215 -1.694 0 0 0 0 0 0 0 +12.003 28.328 -1.7 0 0 0 0 0 0 0 +11.905 28.345 -1.699 0 0 0 0 0 0 0 +11.84 28.44 -1.703 0 0 0 0 0 0 0 +11.774 28.534 -1.707 0 0 0 0 0 0 0 +11.735 28.694 -1.715 0 0 0 0 0 0 0 +11.678 28.814 -1.721 0 0 0 0 0 0 0 +11.618 28.927 -1.726 0 0 0 0 0 0 0 +11.566 28.929 -1.724 0 0 0 0 0 0 0 +11.499 29.024 -1.728 0 0 0 0 0 0 0 +11.431 29.12 -1.732 0 0 0 0 0 0 0 +11.34 29.157 -1.733 0 0 0 0 0 0 0 +11.248 29.193 -1.733 0 0 0 0 0 0 0 +11.177 29.282 -1.736 0 0 0 0 0 0 0 +11.091 29.332 -1.737 0 0 0 0 0 0 0 +11.052 29.37 -1.738 0 0 0 0 0 0 0 +10.981 29.461 -1.742 0 0 0 0 0 0 0 +10.901 29.53 -1.744 0 0 0 0 0 0 0 +10.826 29.611 -1.748 0 0 0 0 0 0 0 +10.737 29.658 -1.748 0 0 0 0 0 0 0 +10.649 29.707 -1.749 0 0 0 0 0 0 0 +10.579 29.806 -1.754 0 0 0 0 0 0 0 +10.536 29.834 -1.754 0 0 0 0 0 0 0 +10.471 29.948 -1.76 0 0 0 0 0 0 0 +10.387 30.011 -1.762 0 0 0 0 0 0 0 +10.297 30.055 -1.763 0 0 0 0 0 0 0 +10.224 30.151 -1.767 0 0 0 0 0 0 0 +10.14 30.216 -1.769 0 0 0 0 0 0 0 +10.044 30.245 -1.769 0 0 0 0 0 0 0 +9.964 30.32 -1.772 0 0 0 0 0 0 0 +9.93 30.378 -1.774 0 0 0 0 0 0 0 +9.845 30.441 -1.776 0 0 0 0 0 0 0 +9.76 30.508 -1.779 0 0 0 0 0 0 0 +9.675 30.573 -1.781 0 0 0 0 0 0 0 +9.576 30.594 -1.78 0 0 0 0 0 0 0 +9.465 30.576 -1.777 0 0 0 0 0 0 0 +9.38 30.64 -1.779 0 0 0 0 0 0 0 +9.335 30.666 -1.78 0 0 0 0 0 0 0 +9.259 30.764 -1.785 0 0 0 0 0 0 0 +9.186 30.871 -1.79 0 0 0 0 0 0 0 +9.109 30.969 -1.794 0 0 0 0 0 0 0 +9.055 31.145 -1.804 0 0 0 0 0 0 0 +9.063 31.544 -1.827 0 0 0 0 0 0 0 +9.131 32.162 -1.865 0 0 0 0 0 0 0 +9.235 32.727 -1.901 0 0 0 0 0 0 0 +9.285 33.306 -1.936 0 0 0 0 0 0 0 +9.225 33.499 -1.947 0 0 0 0 0 0 0 +9.087 33.405 -1.939 0 0 0 0 0 0 0 +8.956 33.336 -1.933 0 0 0 0 0 0 0 +8.865 33.417 -1.936 0 0 0 0 0 0 0 +8.778 33.514 -1.94 0 0 0 0 0 0 0 +8.711 33.473 -1.937 0 0 0 0 0 0 0 +8.537 33.232 -1.92 0 0 0 0 0 0 0 +8.444 33.303 -1.923 0 0 0 0 0 0 0 +8.39 33.531 -1.935 0 0 0 0 0 0 0 +8.272 33.507 -1.932 0 0 0 0 0 0 0 +8.148 33.455 -1.927 0 0 0 0 0 0 0 +8.02 33.385 -1.921 0 0 0 0 0 0 0 +7.953 33.336 -1.917 0 0 0 0 0 0 0 +7.835 33.304 -1.914 0 0 0 0 0 0 0 +7.723 33.297 -1.912 0 0 0 0 0 0 0 +7.6 33.244 -1.907 0 0 0 0 0 0 0 +7.489 33.236 -1.905 0 0 0 0 0 0 0 +7.39 33.285 -1.906 0 0 0 0 0 0 0 +7.297 33.359 -1.91 0 0 0 0 0 0 0 +7.208 33.457 -1.914 0 0 0 0 0 0 0 +7.139 33.391 -1.909 0 0 0 0 0 0 0 +2.817 13.304 -0.639 0 0 0 0 0 0 0 +2.795 13.408 -0.645 0 0 0 0 0 0 0 +2.598 12.862 -0.609 0 0 0 0 0 0 0 +0.661 3.307 -0.006 0 0 0 0 0 0 0 +2.612 13.15 -0.627 0 0 0 0 0 0 0 +3.023 15.494 -0.774 0 0 0 0 0 0 0 +3.189 16.779 -0.854 0 0 0 0 0 0 0 +3.312 17.737 -0.914 0 0 0 0 0 0 0 +3.354 18.284 -0.947 0 0 0 0 0 0 0 +3.513 19.507 -1.023 0 0 0 0 0 0 0 +3.624 20.501 -1.085 0 0 0 0 0 0 0 +3.771 21.736 -1.162 0 0 0 0 0 0 0 +3.789 22.047 -1.181 0 0 0 0 0 0 0 +0.555 3.284 -0.003 0 0 0 0 0 0 0 +3.764 22.326 -1.198 0 0 0 0 0 0 0 +0.55 3.323 -0.006 0 0 0 0 0 0 0 +3.847 23.27 -1.256 0 0 0 0 0 0 0 +0.55 3.392 -0.01 0 0 0 0 0 0 0 +0.54 3.393 -0.01 0 0 0 0 0 0 0 +0.539 3.426 -0.012 0 0 0 0 0 0 0 +0.528 3.425 -0.012 0 0 0 0 0 0 0 +0.519 3.439 -0.013 0 0 0 0 0 0 0 +0.51 3.452 -0.013 0 0 0 0 0 0 0 +0.496 3.43 -0.012 0 0 0 0 0 0 0 +0.484 3.424 -0.011 0 0 0 0 0 0 0 +0.473 3.423 -0.011 0 0 0 0 0 0 0 +0.458 3.391 -0.009 0 0 0 0 0 0 0 +3.851 30.427 -1.694 0 0 0 0 0 0 0 +3.764 30.51 -1.699 0 0 0 0 0 0 0 +3.669 30.53 -1.699 0 0 0 0 0 0 0 +3.581 30.605 -1.703 0 0 0 0 0 0 0 +3.486 30.632 -1.704 0 0 0 0 0 0 0 +3.391 30.655 -1.705 0 0 0 0 0 0 0 +3.306 30.768 -1.712 0 0 0 0 0 0 0 +3.266 30.857 -1.717 0 0 0 0 0 0 0 +3.183 31.002 -1.725 0 0 0 0 0 0 0 +3.088 31.036 -1.727 0 0 0 0 0 0 0 +3.138 32.593 -1.823 0 0 0 0 0 0 0 +3.05 32.754 -1.832 0 0 0 0 0 0 0 +2.956 32.861 -1.838 0 0 0 0 0 0 0 +2.862 32.977 -1.845 0 0 0 0 0 0 0 +2.823 33.143 -1.855 0 0 0 0 0 0 0 +2.762 33.673 -1.887 0 0 0 0 0 0 0 +2.627 33.315 -1.864 0 0 0 0 0 0 0 +2.518 33.258 -1.86 0 0 0 0 0 0 0 +2.412 33.251 -1.86 0 0 0 0 0 0 0 +2.309 33.279 -1.861 0 0 0 0 0 0 0 +2.205 33.296 -1.861 0 0 0 0 0 0 0 +2.154 33.325 -1.863 0 0 0 0 0 0 0 +2.05 33.336 -1.863 0 0 0 0 0 0 0 +1.947 33.372 -1.865 0 0 0 0 0 0 0 +1.843 33.394 -1.866 0 0 0 0 0 0 0 +1.739 33.411 -1.867 0 0 0 0 0 0 0 +1.634 33.421 -1.867 0 0 0 0 0 0 0 +1.53 33.44 -1.868 0 0 0 0 0 0 0 +1.424 33.434 -1.867 0 0 0 0 0 0 0 +1.371 33.426 -1.867 0 0 0 0 0 0 0 +1.274 33.632 -1.879 0 0 0 0 0 0 0 +1.164 33.518 -1.872 0 0 0 0 0 0 0 +1.057 33.484 -1.87 0 0 0 0 0 0 0 +0.953 33.495 -1.87 0 0 0 0 0 0 0 +0.847 33.486 -1.869 0 0 0 0 0 0 0 +0.742 33.488 -1.869 0 0 0 0 0 0 0 +0.689 33.491 -1.869 0 0 0 0 0 0 0 +0.584 33.515 -1.871 0 0 0 0 0 0 0 +0.479 33.507 -1.87 0 0 0 0 0 0 0 +0.374 33.528 -1.871 0 0 0 0 0 0 0 +0.269 33.543 -1.872 0 0 0 0 0 0 0 +0.163 33.576 -1.874 0 0 0 0 0 0 0 +0.058 33.58 -1.874 0 0 0 0 0 0 0 +0.005 33.616 -1.877 0 0 0 0 0 0 0 +-0.101 33.624 -1.877 0 0 0 0 0 0 0 +-0.206 33.618 -1.877 0 0 0 0 0 0 0 +-0.352 28.652 -1.57 0 0 0 0 0 0 0 +-0.432 28.056 -1.533 0 0 0 0 0 0 0 +-0.509 27.485 -1.498 0 0 0 0 0 0 0 +-0.54 26.918 -1.463 0 0 0 0 0 0 0 +-0.612 26.395 -1.431 0 0 0 0 0 0 0 +-0.681 25.872 -1.398 0 0 0 0 0 0 0 +-0.748 25.401 -1.369 0 0 0 0 0 0 0 +-0.812 24.92 -1.34 0 0 0 0 0 0 0 +-0.873 24.45 -1.311 0 0 0 0 0 0 0 +-0.933 24.02 -1.284 0 0 0 0 0 0 0 +-1.015 23.318 -1.241 0 0 0 0 0 0 0 +-1.074 23.019 -1.223 0 0 0 0 0 0 0 +-1.116 22.422 -1.186 0 0 0 0 0 0 0 +-1.165 22.022 -1.161 0 0 0 0 0 0 0 +-1.214 21.665 -1.14 0 0 0 0 0 0 0 +-1.263 21.34 -1.12 0 0 0 0 0 0 0 +-1.308 21.002 -1.099 0 0 0 0 0 0 0 +-1.321 20.695 -1.08 0 0 0 0 0 0 0 +-1.404 20.025 -1.039 0 0 0 0 0 0 0 +-1.465 19.985 -1.037 0 0 0 0 0 0 0 +-1.502 19.654 -1.017 0 0 0 0 0 0 0 +-1.522 19.135 -0.985 0 0 0 0 0 0 0 +-1.562 18.896 -0.97 0 0 0 0 0 0 0 +-1.569 18.619 -0.953 0 0 0 0 0 0 0 +-1.605 18.359 -0.937 0 0 0 0 0 0 0 +-1.636 18.074 -0.92 0 0 0 0 0 0 0 +-1.678 17.914 -0.91 0 0 0 0 0 0 0 +-1.706 17.612 -0.892 0 0 0 0 0 0 0 +-1.74 17.396 -0.879 0 0 0 0 0 0 0 +-1.777 17.222 -0.868 0 0 0 0 0 0 0 +-1.776 16.957 -0.852 0 0 0 0 0 0 0 +-1.8 16.684 -0.835 0 0 0 0 0 0 0 +-1.832 16.501 -0.824 0 0 0 0 0 0 0 +-1.86 16.291 -0.812 0 0 0 0 0 0 0 +-1.891 16.109 -0.801 0 0 0 0 0 0 0 +-1.91 15.849 -0.785 0 0 0 0 0 0 0 +-1.942 15.699 -0.776 0 0 0 0 0 0 0 +-1.966 15.498 -0.764 0 0 0 0 0 0 0 +-1.97 15.335 -0.754 0 0 0 0 0 0 0 +-1.997 15.174 -0.744 0 0 0 0 0 0 0 +-2.021 14.99 -0.733 0 0 0 0 0 0 0 +-2.043 14.806 -0.722 0 0 0 0 0 0 0 +-2.067 14.641 -0.712 0 0 0 0 0 0 0 +-2.089 14.471 -0.702 0 0 0 0 0 0 0 +-2.108 14.29 -0.691 0 0 0 0 0 0 0 +-2.111 14.157 -0.683 0 0 0 0 0 0 0 +-2.133 14.006 -0.674 0 0 0 0 0 0 0 +-2.153 13.847 -0.664 0 0 0 0 0 0 0 +-2.175 13.704 -0.656 0 0 0 0 0 0 0 +-2.198 13.573 -0.648 0 0 0 0 0 0 0 +-2.216 13.421 -0.639 0 0 0 0 0 0 0 +-2.234 13.27 -0.63 0 0 0 0 0 0 0 +-2.234 13.149 -0.622 0 0 0 0 0 0 0 +-2.251 13.004 -0.614 0 0 0 0 0 0 0 +-2.272 12.881 -0.606 0 0 0 0 0 0 0 +-2.29 12.754 -0.599 0 0 0 0 0 0 0 +-2.306 12.613 -0.591 0 0 0 0 0 0 0 +-2.325 12.496 -0.584 0 0 0 0 0 0 0 +-2.345 12.39 -0.577 0 0 0 0 0 0 0 +-2.34 12.257 -0.569 0 0 0 0 0 0 0 +-2.357 12.144 -0.563 0 0 0 0 0 0 0 +-2.372 12.017 -0.555 0 0 0 0 0 0 0 +-2.383 11.881 -0.547 0 0 0 0 0 0 0 +-2.402 11.783 -0.541 0 0 0 0 0 0 0 +-2.419 11.678 -0.535 0 0 0 0 0 0 0 +-2.436 11.578 -0.529 0 0 0 0 0 0 0 +-2.488 11.052 -0.498 0 0 0 0 0 0 0 +-2.577 11.044 -0.499 0 0 0 0 0 0 0 +-2.541 10.739 -0.48 0 0 0 0 0 0 0 +-2.563 10.684 -0.477 0 0 0 0 0 0 0 +-2.755 11.17 -0.509 0 0 0 0 0 0 0 +-2.783 11.134 -0.507 0 0 0 0 0 0 0 +-2.817 11.119 -0.507 0 0 0 0 0 0 0 +-2.842 11.074 -0.505 0 0 0 0 0 0 0 +-2.857 11.058 -0.504 0 0 0 0 0 0 0 +-2.896 11.066 -0.505 0 0 0 0 0 0 0 +-2.93 11.055 -0.505 0 0 0 0 0 0 0 +-2.734 9.824 -0.428 0 0 0 0 0 0 0 +-2.752 9.831 -0.429 0 0 0 0 0 0 0 +-2.788 9.84 -0.43 0 0 0 0 0 0 0 +-2.818 9.829 -0.43 0 0 0 0 0 0 0 +-2.836 9.774 -0.427 0 0 0 0 0 0 0 +-2.863 9.754 -0.426 0 0 0 0 0 0 0 +-2.902 9.773 -0.428 0 0 0 0 0 0 0 +-2.929 9.751 -0.427 0 0 0 0 0 0 0 +-2.777 9.094 -0.386 0 0 0 0 0 0 0 +-2.794 9.051 -0.383 0 0 0 0 0 0 0 +-2.805 8.987 -0.38 0 0 0 0 0 0 0 +-2.823 8.944 -0.378 0 0 0 0 0 0 0 +-2.838 8.895 -0.375 0 0 0 0 0 0 0 +-2.851 8.838 -0.372 0 0 0 0 0 0 0 +-2.853 8.8 -0.37 0 0 0 0 0 0 0 +-2.85 8.698 -0.364 0 0 0 0 0 0 0 +-2.912 8.703 -0.365 0 0 0 0 0 0 0 +-2.95 8.724 -0.367 0 0 0 0 0 0 0 +-2.96 8.663 -0.364 0 0 0 0 0 0 0 +-2.975 8.62 -0.362 0 0 0 0 0 0 0 +-2.991 8.579 -0.359 0 0 0 0 0 0 0 +-2.985 8.518 -0.356 0 0 0 0 0 0 0 +-3.002 8.482 -0.354 0 0 0 0 0 0 0 +-3.017 8.44 -0.352 0 0 0 0 0 0 0 +-3.028 8.39 -0.349 0 0 0 0 0 0 0 +-3.035 8.326 -0.346 0 0 0 0 0 0 0 +-3.056 8.303 -0.345 0 0 0 0 0 0 0 +-3.063 8.243 -0.341 0 0 0 0 0 0 0 +-3.075 8.234 -0.341 0 0 0 0 0 0 0 +-3.092 8.202 -0.34 0 0 0 0 0 0 0 +-3.096 8.135 -0.336 0 0 0 0 0 0 0 +-3.128 8.144 -0.337 0 0 0 0 0 0 0 +-3.144 8.108 -0.335 0 0 0 0 0 0 0 +-3.16 8.074 -0.334 0 0 0 0 0 0 0 +-3.178 8.045 -0.333 0 0 0 0 0 0 0 +-3.194 8.049 -0.333 0 0 0 0 0 0 0 +-3.223 8.049 -0.334 0 0 0 0 0 0 0 +-3.251 8.046 -0.334 0 0 0 0 0 0 0 +-3.284 8.054 -0.335 0 0 0 0 0 0 0 +-3.31 8.046 -0.336 0 0 0 0 0 0 0 +-3.252 7.834 -0.322 0 0 0 0 0 0 0 +-3.33 7.953 -0.331 0 0 0 0 0 0 0 +-3.337 7.935 -0.33 0 0 0 0 0 0 0 +-3.377 7.89 -0.328 0 0 0 0 0 0 0 +-3.412 7.903 -0.33 0 0 0 0 0 0 0 +-3.451 7.925 -0.332 0 0 0 0 0 0 0 +-3.466 7.89 -0.331 0 0 0 0 0 0 0 +-3.463 7.818 -0.326 0 0 0 0 0 0 0 +-3.331 7.428 -0.301 0 0 0 0 0 0 0 +-3.451 7.63 -0.315 0 0 0 0 0 0 0 +-3.36 7.369 -0.298 0 0 0 0 0 0 0 +-3.635 7.774 -0.328 0 0 0 0 0 0 0 +-3.649 7.741 -0.327 0 0 0 0 0 0 0 +-3.646 7.703 -0.325 0 0 0 0 0 0 0 +-3.652 7.654 -0.322 0 0 0 0 0 0 0 +-3.656 7.601 -0.319 0 0 0 0 0 0 0 +-3.66 7.548 -0.316 0 0 0 0 0 0 0 +-3.668 7.504 -0.314 0 0 0 0 0 0 0 +-3.693 7.496 -0.314 0 0 0 0 0 0 0 +-3.723 7.497 -0.315 0 0 0 0 0 0 0 +-3.735 7.491 -0.315 0 0 0 0 0 0 0 +-3.769 7.501 -0.317 0 0 0 0 0 0 0 +-3.794 7.493 -0.317 0 0 0 0 0 0 0 +-3.821 7.488 -0.317 0 0 0 0 0 0 0 +-3.857 7.499 -0.319 0 0 0 0 0 0 0 +-3.889 7.502 -0.32 0 0 0 0 0 0 0 +-3.91 7.487 -0.32 0 0 0 0 0 0 0 +-3.934 7.503 -0.322 0 0 0 0 0 0 0 +-3.963 7.5 -0.322 0 0 0 0 0 0 0 +-3.995 7.503 -0.323 0 0 0 0 0 0 0 +-4.027 7.506 -0.324 0 0 0 0 0 0 0 +-4.051 7.495 -0.324 0 0 0 0 0 0 0 +-4.088 7.507 -0.326 0 0 0 0 0 0 0 +-4.125 7.519 -0.328 0 0 0 0 0 0 0 +-4.151 7.509 -0.328 0 0 0 0 0 0 0 +-4.173 7.522 -0.33 0 0 0 0 0 0 0 +-4.199 7.512 -0.33 0 0 0 0 0 0 0 +-4.242 7.534 -0.332 0 0 0 0 0 0 0 +-4.272 7.531 -0.333 0 0 0 0 0 0 0 +-4.303 7.531 -0.334 0 0 0 0 0 0 0 +-4.331 7.525 -0.334 0 0 0 0 0 0 0 +-4.382 7.557 -0.338 0 0 0 0 0 0 0 +-4.396 7.554 -0.338 0 0 0 0 0 0 0 +-4.441 7.576 -0.341 0 0 0 0 0 0 0 +-4.462 7.559 -0.34 0 0 0 0 0 0 0 +-4.507 7.579 -0.343 0 0 0 0 0 0 0 +-4.53 7.565 -0.343 0 0 0 0 0 0 0 +-4.569 7.574 -0.345 0 0 0 0 0 0 0 +-4.593 7.562 -0.345 0 0 0 0 0 0 0 +-4.639 7.609 -0.349 0 0 0 0 0 0 0 +-4.995 8.133 -0.388 0 0 0 0 0 0 0 +-5.052 8.168 -0.392 0 0 0 0 0 0 0 +-5.108 8.199 -0.395 0 0 0 0 0 0 0 +-5.122 8.165 -0.394 0 0 0 0 0 0 0 +-5.134 8.127 -0.392 0 0 0 0 0 0 0 +-5.238 8.233 -0.401 0 0 0 0 0 0 0 +-16.583 25.696 -1.689 0 0 0 0 0 0 0 +-16.582 25.518 -1.68 0 0 0 0 0 0 0 +-5.075 7.632 -0.364 0 0 0 0 0 0 0 +-5.101 7.619 -0.365 0 0 0 0 0 0 0 +-5.09 7.576 -0.362 0 0 0 0 0 0 0 +-16.588 24.421 -1.623 0 0 0 0 0 0 0 +-16.646 24.343 -1.622 0 0 0 0 0 0 0 +-15.683 22.784 -1.508 0 0 0 0 0 0 0 +-17.021 24.558 -1.646 0 0 0 0 0 0 0 +-17.195 24.643 -1.656 0 0 0 0 0 0 0 +-17.171 24.445 -1.645 0 0 0 0 0 0 0 +-17.189 24.389 -1.643 0 0 0 0 0 0 0 +-17.261 24.328 -1.642 0 0 0 0 0 0 0 +-17.329 24.263 -1.642 0 0 0 0 0 0 0 +-16.684 23.054 -1.558 0 0 0 0 0 0 0 +-17.384 23.861 -1.623 0 0 0 0 0 0 0 +-16.55 22.569 -1.529 0 0 0 0 0 0 0 +-16.741 22.679 -1.541 0 0 0 0 0 0 0 +-16.585 22.395 -1.521 0 0 0 0 0 0 0 +-16.563 22.22 -1.512 0 0 0 0 0 0 0 +-16.822 22.419 -1.531 0 0 0 0 0 0 0 +-16.777 22.214 -1.519 0 0 0 0 0 0 0 +-16.87 22.191 -1.522 0 0 0 0 0 0 0 +-17.034 22.262 -1.531 0 0 0 0 0 0 0 +-16.361 21.245 -1.456 0 0 0 0 0 0 0 +-16.34 21.149 -1.451 0 0 0 0 0 0 0 +-16.244 20.889 -1.434 0 0 0 0 0 0 0 +-16.406 20.961 -1.444 0 0 0 0 0 0 0 +-16.452 20.884 -1.442 0 0 0 0 0 0 0 +-16.33 20.596 -1.423 0 0 0 0 0 0 0 +-16.412 20.567 -1.425 0 0 0 0 0 0 0 +-16.574 20.636 -1.435 0 0 0 0 0 0 0 +-16.482 20.457 -1.422 0 0 0 0 0 0 0 +-15.678 19.336 -1.337 0 0 0 0 0 0 0 +-15.928 19.518 -1.356 0 0 0 0 0 0 0 +-15.742 19.167 -1.332 0 0 0 0 0 0 0 +-15.722 19.021 -1.324 0 0 0 0 0 0 0 +-15.753 18.938 -1.321 0 0 0 0 0 0 0 +-15.542 18.566 -1.295 0 0 0 0 0 0 0 +-15.088 17.967 -1.249 0 0 0 0 0 0 0 +-11.796 13.967 -0.928 0 0 0 0 0 0 0 +-11.855 13.948 -0.93 0 0 0 0 0 0 0 +-11.899 13.91 -0.93 0 0 0 0 0 0 0 +-11.934 13.862 -0.929 0 0 0 0 0 0 0 +-11.916 13.754 -0.923 0 0 0 0 0 0 0 +-11.94 13.696 -0.921 0 0 0 0 0 0 0 +-11.94 13.608 -0.917 0 0 0 0 0 0 0 +-11.98 13.611 -0.919 0 0 0 0 0 0 0 +-12.064 13.619 -0.923 0 0 0 0 0 0 0 +-12.097 13.571 -0.922 0 0 0 0 0 0 0 +-14.974 16.683 -1.184 0 0 0 0 0 0 0 +-15.078 16.694 -1.189 0 0 0 0 0 0 0 +-15.151 16.669 -1.191 0 0 0 0 0 0 0 +-15.156 16.569 -1.186 0 0 0 0 0 0 0 +-15.102 16.459 -1.179 0 0 0 0 0 0 0 +-15.1 16.353 -1.174 0 0 0 0 0 0 0 +-15.184 16.34 -1.177 0 0 0 0 0 0 0 +-15.183 16.237 -1.172 0 0 0 0 0 0 0 +-15.26 16.217 -1.175 0 0 0 0 0 0 0 +-15.234 16.088 -1.168 0 0 0 0 0 0 0 +-15.229 15.982 -1.163 0 0 0 0 0 0 0 +-15.158 15.857 -1.154 0 0 0 0 0 0 0 +-15.263 15.867 -1.159 0 0 0 0 0 0 0 +-15.165 15.667 -1.146 0 0 0 0 0 0 0 +-15.181 15.585 -1.143 0 0 0 0 0 0 0 +-15.208 15.515 -1.141 0 0 0 0 0 0 0 +-15.309 15.521 -1.146 0 0 0 0 0 0 0 +-15.293 15.408 -1.14 0 0 0 0 0 0 0 +-15.26 15.326 -1.135 0 0 0 0 0 0 0 +-15.311 15.28 -1.135 0 0 0 0 0 0 0 +-15.503 15.375 -1.148 0 0 0 0 0 0 0 +-15.55 15.325 -1.148 0 0 0 0 0 0 0 +-15.621 15.299 -1.15 0 0 0 0 0 0 0 +-15.589 15.172 -1.143 0 0 0 0 0 0 0 +-15.678 15.163 -1.147 0 0 0 0 0 0 0 +-15.637 15.076 -1.141 0 0 0 0 0 0 0 +-15.765 15.104 -1.148 0 0 0 0 0 0 0 +-15.462 14.722 -1.118 0 0 0 0 0 0 0 +-17.709 16.75 -1.305 0 0 0 0 0 0 0 +-16.079 15.116 -1.162 0 0 0 0 0 0 0 +-17.73 16.56 -1.298 0 0 0 0 0 0 0 +-17.68 16.41 -1.29 0 0 0 0 0 0 0 +-17.769 16.388 -1.293 0 0 0 0 0 0 0 +-17.83 16.393 -1.296 0 0 0 0 0 0 0 +-17.804 16.267 -1.289 0 0 0 0 0 0 0 +-17.608 15.987 -1.269 0 0 0 0 0 0 0 +-17.201 15.52 -1.23 0 0 0 0 0 0 0 +-17.031 15.27 -1.212 0 0 0 0 0 0 0 +-17.208 15.331 -1.223 0 0 0 0 0 0 0 +-17.377 15.384 -1.233 0 0 0 0 0 0 0 +-17.591 15.524 -1.249 0 0 0 0 0 0 0 +-17.708 15.528 -1.254 0 0 0 0 0 0 0 +-18.044 15.722 -1.278 0 0 0 0 0 0 0 +-18.117 15.686 -1.28 0 0 0 0 0 0 0 +-17.926 15.423 -1.26 0 0 0 0 0 0 0 +-18.012 15.399 -1.263 0 0 0 0 0 0 0 +-18.082 15.36 -1.265 0 0 0 0 0 0 0 +-17.937 15.189 -1.251 0 0 0 0 0 0 0 +-18.275 15.376 -1.275 0 0 0 0 0 0 0 +-18.528 15.49 -1.291 0 0 0 0 0 0 0 +-18.5 15.368 -1.285 0 0 0 0 0 0 0 +-18.162 14.991 -1.254 0 0 0 0 0 0 0 +-18.09 14.837 -1.245 0 0 0 0 0 0 0 +-18.206 14.837 -1.25 0 0 0 0 0 0 0 +-18.49 15.019 -1.271 0 0 0 0 0 0 0 +-18.688 15.082 -1.283 0 0 0 0 0 0 0 +-18.794 15.071 -1.288 0 0 0 0 0 0 0 +-18.918 15.073 -1.294 0 0 0 0 0 0 0 +-18.951 15.002 -1.292 0 0 0 0 0 0 0 +-19.042 14.977 -1.296 0 0 0 0 0 0 0 +-19.013 14.858 -1.29 0 0 0 0 0 0 0 +-19.409 15.117 -1.319 0 0 0 0 0 0 0 +-19.402 15.015 -1.315 0 0 0 0 0 0 0 +-19.367 14.891 -1.309 0 0 0 0 0 0 0 +-17.391 13.288 -1.151 0 0 0 0 0 0 0 +-19.584 14.863 -1.318 0 0 0 0 0 0 0 +-19.395 14.623 -1.3 0 0 0 0 0 0 0 +-17.581 13.173 -1.156 0 0 0 0 0 0 0 +-18.334 13.646 -1.211 0 0 0 0 0 0 0 +-17.629 13.079 -1.155 0 0 0 0 0 0 0 +-19.463 14.342 -1.293 0 0 0 0 0 0 0 +-19.569 14.325 -1.298 0 0 0 0 0 0 0 +-19.215 13.974 -1.267 0 0 0 0 0 0 0 +-17.664 12.764 -1.145 0 0 0 0 0 0 0 +-17.694 12.702 -1.145 0 0 0 0 0 0 0 +-17.687 12.612 -1.141 0 0 0 0 0 0 0 +-17.671 12.559 -1.138 0 0 0 0 0 0 0 +-17.721 12.512 -1.139 0 0 0 0 0 0 0 +-17.752 12.45 -1.139 0 0 0 0 0 0 0 +-17.849 12.434 -1.143 0 0 0 0 0 0 0 +-17.768 12.295 -1.134 0 0 0 0 0 0 0 +-17.752 12.202 -1.13 0 0 0 0 0 0 0 +-17.789 12.145 -1.13 0 0 0 0 0 0 0 +-17.796 12.11 -1.129 0 0 0 0 0 0 0 +-17.804 12.033 -1.127 0 0 0 0 0 0 0 +-17.739 11.909 -1.119 0 0 0 0 0 0 0 +-17.795 11.865 -1.12 0 0 0 0 0 0 0 +-17.759 11.761 -1.115 0 0 0 0 0 0 0 +-6.819 4.473 -0.302 0 0 0 0 0 0 0 +-6.792 4.441 -0.299 0 0 0 0 0 0 0 +-6.808 4.421 -0.3 0 0 0 0 0 0 0 +-6.823 4.4 -0.3 0 0 0 0 0 0 0 +-6.825 4.371 -0.299 0 0 0 0 0 0 0 +-17.617 11.157 -1.087 0 0 0 0 0 0 0 +-16.446 10.345 -0.999 0 0 0 0 0 0 0 +-17.644 11.019 -1.084 0 0 0 0 0 0 0 +-17.642 10.941 -1.081 0 0 0 0 0 0 0 +-17.616 10.887 -1.078 0 0 0 0 0 0 0 +-17.565 10.78 -1.072 0 0 0 0 0 0 0 +-17.614 10.734 -1.073 0 0 0 0 0 0 0 +-17.672 10.693 -1.075 0 0 0 0 0 0 0 +-17.3 10.394 -1.046 0 0 0 0 0 0 0 +-17.444 10.406 -1.054 0 0 0 0 0 0 0 +-17.609 10.429 -1.063 0 0 0 0 0 0 0 +-17.696 10.443 -1.068 0 0 0 0 0 0 0 +-17.678 10.358 -1.065 0 0 0 0 0 0 0 +-17.265 10.044 -1.033 0 0 0 0 0 0 0 +-17.439 10.072 -1.043 0 0 0 0 0 0 0 +-17.354 9.95 -1.035 0 0 0 0 0 0 0 +-17.496 9.959 -1.043 0 0 0 0 0 0 0 +-17.521 9.9 -1.042 0 0 0 0 0 0 0 +-17.541 9.875 -1.043 0 0 0 0 0 0 0 +-17.534 9.799 -1.04 0 0 0 0 0 0 0 +-17.524 9.721 -1.037 0 0 0 0 0 0 0 +-17.618 9.701 -1.041 0 0 0 0 0 0 0 +-12.663 6.929 -0.69 0 0 0 0 0 0 0 +-12.625 6.857 -0.686 0 0 0 0 0 0 0 +-12.65 6.819 -0.686 0 0 0 0 0 0 0 +-12.687 6.814 -0.688 0 0 0 0 0 0 0 +-13.622 7.258 -0.752 0 0 0 0 0 0 0 +-13.625 7.205 -0.751 0 0 0 0 0 0 0 +-13.968 7.33 -0.773 0 0 0 0 0 0 0 +-30.864 16.038 -1.949 0 0 0 0 0 0 0 +-30.698 15.829 -1.934 0 0 0 0 0 0 0 +-30.961 15.841 -1.949 0 0 0 0 0 0 0 +-17.683 9.025 -1.025 0 0 0 0 0 0 0 +-17.739 8.984 -1.027 0 0 0 0 0 0 0 +-17.739 8.914 -1.025 0 0 0 0 0 0 0 +-30.943 15.406 -1.935 0 0 0 0 0 0 0 +-30.951 15.288 -1.933 0 0 0 0 0 0 0 +-30.991 15.188 -1.932 0 0 0 0 0 0 0 +-31.037 15.089 -1.932 0 0 0 0 0 0 0 +-31.039 15.03 -1.931 0 0 0 0 0 0 0 +-14.707 7.023 -0.806 0 0 0 0 0 0 0 +-14.689 6.958 -0.803 0 0 0 0 0 0 0 +-31.019 14.542 -1.916 0 0 0 0 0 0 0 +-31.018 14.423 -1.913 0 0 0 0 0 0 0 +-31.047 14.318 -1.912 0 0 0 0 0 0 0 +-31.024 14.19 -1.908 0 0 0 0 0 0 0 +-30.97 14.106 -1.902 0 0 0 0 0 0 0 +-30.994 14 -1.901 0 0 0 0 0 0 0 +-29.075 13.025 -1.768 0 0 0 0 0 0 0 +-31 13.768 -1.895 0 0 0 0 0 0 0 +-31.012 13.657 -1.893 0 0 0 0 0 0 0 +-31.04 13.553 -1.892 0 0 0 0 0 0 0 +-30.947 13.397 -1.883 0 0 0 0 0 0 0 +-31.026 13.374 -1.887 0 0 0 0 0 0 0 +-31.074 13.279 -1.888 0 0 0 0 0 0 0 +-31.051 13.154 -1.883 0 0 0 0 0 0 0 +-31.013 13.023 -1.878 0 0 0 0 0 0 0 +-31.011 12.908 -1.875 0 0 0 0 0 0 0 +-31.007 12.792 -1.872 0 0 0 0 0 0 0 +-31.009 12.679 -1.87 0 0 0 0 0 0 0 +-30.98 12.611 -1.866 0 0 0 0 0 0 0 +-30.905 12.467 -1.859 0 0 0 0 0 0 0 +-31.092 12.429 -1.869 0 0 0 0 0 0 0 +-31.083 12.312 -1.865 0 0 0 0 0 0 0 +-30.804 12.09 -1.844 0 0 0 0 0 0 0 +-31.135 12.107 -1.864 0 0 0 0 0 0 0 +-31.201 12.02 -1.866 0 0 0 0 0 0 0 +-31.19 11.96 -1.864 0 0 0 0 0 0 0 +-31.058 11.797 -1.852 0 0 0 0 0 0 0 +-27.675 10.416 -1.626 0 0 0 0 0 0 0 +-29.816 11.113 -1.766 0 0 0 0 0 0 0 +-29.737 10.977 -1.758 0 0 0 0 0 0 0 +-29.741 10.873 -1.756 0 0 0 0 0 0 0 +-29.756 10.772 -1.755 0 0 0 0 0 0 0 +-29.777 10.727 -1.755 0 0 0 0 0 0 0 +-29.859 10.651 -1.758 0 0 0 0 0 0 0 +-30.017 10.601 -1.766 0 0 0 0 0 0 0 +-31.273 10.933 -1.847 0 0 0 0 0 0 0 +-31.189 10.794 -1.839 0 0 0 0 0 0 0 +-31.262 10.709 -1.841 0 0 0 0 0 0 0 +-31.294 10.61 -1.841 0 0 0 0 0 0 0 +-26.848 9.013 -1.549 0 0 0 0 0 0 0 +-31.22 10.422 -1.833 0 0 0 0 0 0 0 +-31.255 10.324 -1.833 0 0 0 0 0 0 0 +-31.312 10.234 -1.835 0 0 0 0 0 0 0 +-31.311 10.125 -1.833 0 0 0 0 0 0 0 +-31.307 10.015 -1.831 0 0 0 0 0 0 0 +-30.98 9.804 -1.807 0 0 0 0 0 0 0 +-31.02 9.709 -1.808 0 0 0 0 0 0 0 +-31.053 9.666 -1.809 0 0 0 0 0 0 0 +-31.281 9.629 -1.822 0 0 0 0 0 0 0 +-31.269 9.518 -1.819 0 0 0 0 0 0 0 +-31.272 9.412 -1.817 0 0 0 0 0 0 0 +-25.857 7.698 -1.466 0 0 0 0 0 0 0 +-25.885 7.618 -1.466 0 0 0 0 0 0 0 +-31.227 9.078 -1.809 0 0 0 0 0 0 0 +-31.173 9.01 -1.804 0 0 0 0 0 0 0 +-31.166 8.902 -1.802 0 0 0 0 0 0 0 +-31.183 8.8 -1.802 0 0 0 0 0 0 0 +-31.212 8.703 -1.802 0 0 0 0 0 0 0 +-31.17 8.586 -1.797 0 0 0 0 0 0 0 +-31.15 8.475 -1.794 0 0 0 0 0 0 0 +-31.148 8.37 -1.792 0 0 0 0 0 0 0 +-31.146 8.317 -1.791 0 0 0 0 0 0 0 +-24.965 6.588 -1.394 0 0 0 0 0 0 0 +-31.114 8.099 -1.786 0 0 0 0 0 0 0 +-31.085 7.988 -1.783 0 0 0 0 0 0 0 +-31.064 7.878 -1.78 0 0 0 0 0 0 0 +-31.034 7.767 -1.776 0 0 0 0 0 0 0 +-30.88 7.626 -1.765 0 0 0 0 0 0 0 +-30.933 7.587 -1.767 0 0 0 0 0 0 0 +-30.935 7.485 -1.766 0 0 0 0 0 0 0 +-30.949 7.385 -1.765 0 0 0 0 0 0 0 +-9.873 2.309 -0.425 0 0 0 0 0 0 0 +-30.733 7.028 -1.747 0 0 0 0 0 0 0 +-23.887 5.272 -1.31 0 0 0 0 0 0 0 +-30.787 6.685 -1.746 0 0 0 0 0 0 0 +-30.79 6.585 -1.745 0 0 0 0 0 0 0 +-30.793 6.484 -1.744 0 0 0 0 0 0 0 +-30.819 6.389 -1.744 0 0 0 0 0 0 0 +-24.053 4.874 -1.315 0 0 0 0 0 0 0 +-30.778 6.129 -1.739 0 0 0 0 0 0 0 +-30.733 6.019 -1.734 0 0 0 0 0 0 0 +-23.586 4.549 -1.283 0 0 0 0 0 0 0 +-23.528 4.385 -1.278 0 0 0 0 0 0 0 +-23.388 4.283 -1.268 0 0 0 0 0 0 0 +-23.326 4.234 -1.264 0 0 0 0 0 0 0 +-22.793 4.064 -1.229 0 0 0 0 0 0 0 +-22.955 4.018 -1.239 0 0 0 0 0 0 0 +-23.013 3.954 -1.242 0 0 0 0 0 0 0 +-23.183 3.908 -1.252 0 0 0 0 0 0 0 +-30.069 4.964 -1.682 0 0 0 0 0 0 0 +-29.998 4.855 -1.677 0 0 0 0 0 0 0 +-29.901 4.791 -1.671 0 0 0 0 0 0 0 +-29.829 4.684 -1.665 0 0 0 0 0 0 0 +-29.741 4.574 -1.659 0 0 0 0 0 0 0 +-29.677 4.469 -1.654 0 0 0 0 0 0 0 +-29.619 4.365 -1.649 0 0 0 0 0 0 0 +-22.205 3.208 -1.185 0 0 0 0 0 0 0 +-21.376 2.713 -1.13 0 0 0 0 0 0 0 +-21.563 2.668 -1.141 0 0 0 0 0 0 0 +-29.01 3.488 -1.605 0 0 0 0 0 0 0 +-22.277 2.436 -1.184 0 0 0 0 0 0 0 +-28.868 3.057 -1.593 0 0 0 0 0 0 0 +-28.835 2.962 -1.59 0 0 0 0 0 0 0 +-28.755 2.863 -1.585 0 0 0 0 0 0 0 +-28.696 2.766 -1.581 0 0 0 0 0 0 0 +-21.72 2.031 -1.147 0 0 0 0 0 0 0 +-21.369 1.83 -1.124 0 0 0 0 0 0 0 +-21.274 1.754 -1.118 0 0 0 0 0 0 0 +-21.408 1.698 -1.126 0 0 0 0 0 0 0 +-27.756 2.105 -1.519 0 0 0 0 0 0 0 +-27.668 2.012 -1.513 0 0 0 0 0 0 0 +-27.576 1.961 -1.507 0 0 0 0 0 0 0 +-19.49 1.332 -1.006 0 0 0 0 0 0 0 +-27.395 1.776 -1.495 0 0 0 0 0 0 0 +-27.356 1.687 -1.493 0 0 0 0 0 0 0 +-27.276 1.596 -1.487 0 0 0 0 0 0 0 +-21.791 1.212 -1.147 0 0 0 0 0 0 0 +-21.717 1.139 -1.143 0 0 0 0 0 0 0 +-21.675 1.103 -1.14 0 0 0 0 0 0 0 +-21.644 1.033 -1.138 0 0 0 0 0 0 0 +-21.64 0.965 -1.137 0 0 0 0 0 0 0 +-21.627 0.896 -1.136 0 0 0 0 0 0 0 +-21.645 0.829 -1.137 0 0 0 0 0 0 0 +-21.682 0.762 -1.139 0 0 0 0 0 0 0 +-21.738 0.696 -1.143 0 0 0 0 0 0 0 +-22.076 0.671 -1.164 0 0 0 0 0 0 0 +-18.554 0.452 -0.945 0 0 0 0 0 0 0 +-18.271 0.388 -0.928 0 0 0 0 0 0 0 +-26.146 0.462 -1.415 0 0 0 0 0 0 0 +-26.068 0.378 -1.41 0 0 0 0 0 0 0 +-25.995 0.296 -1.405 0 0 0 0 0 0 0 +-25.908 0.254 -1.4 0 0 0 0 0 0 0 +-25.807 0.172 -1.394 0 0 0 0 0 0 0 +-25.773 0.091 -1.392 0 0 0 0 0 0 0 +-22.076 0.012 -1.163 0 0 0 0 0 0 0 +-25.39 -0.149 -1.368 0 0 0 0 0 0 0 +-22.091 -0.196 -1.164 0 0 0 0 0 0 0 +-22.057 -0.265 -1.162 0 0 0 0 0 0 0 +-25.256 -0.347 -1.36 0 0 0 0 0 0 0 +-25.195 -0.425 -1.356 0 0 0 0 0 0 0 +-25.115 -0.503 -1.351 0 0 0 0 0 0 0 +-25.042 -0.58 -1.347 0 0 0 0 0 0 0 +-24.952 -0.656 -1.341 0 0 0 0 0 0 0 +-24.874 -0.732 -1.337 0 0 0 0 0 0 0 +-24.76 -0.806 -1.33 0 0 0 0 0 0 0 +-24.703 -0.843 -1.326 0 0 0 0 0 0 0 +-24.63 -0.918 -1.322 0 0 0 0 0 0 0 +-24.581 -0.994 -1.319 0 0 0 0 0 0 0 +-24.54 -1.069 -1.317 0 0 0 0 0 0 0 +-24.555 -1.147 -1.318 0 0 0 0 0 0 0 +-24.457 -1.22 -1.312 0 0 0 0 0 0 0 +-24.374 -1.292 -1.307 0 0 0 0 0 0 0 +-24.27 -1.325 -1.301 0 0 0 0 0 0 0 +-24.23 -1.399 -1.299 0 0 0 0 0 0 0 +-24.086 -1.466 -1.29 0 0 0 0 0 0 0 +-23.934 -1.532 -1.281 0 0 0 0 0 0 0 +-23.847 -1.602 -1.276 0 0 0 0 0 0 0 +-23.766 -1.672 -1.271 0 0 0 0 0 0 0 +-23.681 -1.74 -1.266 0 0 0 0 0 0 0 +-23.599 -1.771 -1.261 0 0 0 0 0 0 0 +-23.526 -1.84 -1.257 0 0 0 0 0 0 0 +-23.45 -1.908 -1.253 0 0 0 0 0 0 0 +-23.339 -1.973 -1.246 0 0 0 0 0 0 0 +-16.289 -1.421 -0.809 0 0 0 0 0 0 0 +-16.162 -1.461 -0.801 0 0 0 0 0 0 0 +-15.746 -1.472 -0.776 0 0 0 0 0 0 0 +-16.18 -1.565 -0.803 0 0 0 0 0 0 0 +-22.949 -2.303 -1.224 0 0 0 0 0 0 0 +-22.88 -2.332 -1.22 0 0 0 0 0 0 0 +-22.801 -2.397 -1.216 0 0 0 0 0 0 0 +-22.778 -2.467 -1.215 0 0 0 0 0 0 0 +-22.768 -2.538 -1.214 0 0 0 0 0 0 0 +-22.746 -2.608 -1.214 0 0 0 0 0 0 0 +-22.753 -2.681 -1.215 0 0 0 0 0 0 0 +-22.761 -2.755 -1.216 0 0 0 0 0 0 0 +-22.784 -2.794 -1.217 0 0 0 0 0 0 0 +-22.785 -2.867 -1.218 0 0 0 0 0 0 0 +-22.808 -2.942 -1.22 0 0 0 0 0 0 0 +-22.786 -3.012 -1.219 0 0 0 0 0 0 0 +-22.816 -3.089 -1.222 0 0 0 0 0 0 0 +-22.797 -3.16 -1.221 0 0 0 0 0 0 0 +-22.765 -3.228 -1.22 0 0 0 0 0 0 0 +-22.78 -3.267 -1.221 0 0 0 0 0 0 0 +-22.82 -3.346 -1.224 0 0 0 0 0 0 0 +-22.808 -3.417 -1.224 0 0 0 0 0 0 0 +-22.708 -3.475 -1.218 0 0 0 0 0 0 0 +-22.648 -3.539 -1.215 0 0 0 0 0 0 0 +-22.534 -3.593 -1.209 0 0 0 0 0 0 0 +-22.495 -3.66 -1.207 0 0 0 0 0 0 0 +-22.426 -3.685 -1.203 0 0 0 0 0 0 0 +-22.356 -3.745 -1.199 0 0 0 0 0 0 0 +-21.091 -3.668 -1.122 0 0 0 0 0 0 0 +-20.954 -3.712 -1.114 0 0 0 0 0 0 0 +-20.881 -3.767 -1.11 0 0 0 0 0 0 0 +-20.814 -3.822 -1.106 0 0 0 0 0 0 0 +-20.739 -3.842 -1.102 0 0 0 0 0 0 0 +-20.668 -3.896 -1.098 0 0 0 0 0 0 0 +-20.589 -3.948 -1.094 0 0 0 0 0 0 0 +-20.502 -3.998 -1.089 0 0 0 0 0 0 0 +-20.433 -4.051 -1.086 0 0 0 0 0 0 0 +-20.36 -4.103 -1.082 0 0 0 0 0 0 0 +-20.296 -4.156 -1.079 0 0 0 0 0 0 0 +-20.228 -4.209 -1.075 0 0 0 0 0 0 0 +-20.155 -4.226 -1.071 0 0 0 0 0 0 0 +-20.087 -4.278 -1.068 0 0 0 0 0 0 0 +-19.997 -4.325 -1.063 0 0 0 0 0 0 0 +-19.923 -4.374 -1.059 0 0 0 0 0 0 0 +-19.847 -4.423 -1.055 0 0 0 0 0 0 0 +-19.778 -4.473 -1.052 0 0 0 0 0 0 0 +-19.704 -4.521 -1.048 0 0 0 0 0 0 0 +-19.642 -4.539 -1.044 0 0 0 0 0 0 0 +-19.56 -4.585 -1.04 0 0 0 0 0 0 0 +-19.491 -4.633 -1.037 0 0 0 0 0 0 0 +-19.426 -4.682 -1.033 0 0 0 0 0 0 0 +-19.355 -4.729 -1.03 0 0 0 0 0 0 0 +-19.299 -4.78 -1.027 0 0 0 0 0 0 0 +-19.218 -4.824 -1.023 0 0 0 0 0 0 0 +-19.163 -4.842 -1.02 0 0 0 0 0 0 0 +-19.087 -4.887 -1.016 0 0 0 0 0 0 0 +-19.018 -4.932 -1.013 0 0 0 0 0 0 0 +-18.952 -4.979 -1.009 0 0 0 0 0 0 0 +-18.871 -5.021 -1.005 0 0 0 0 0 0 0 +-18.811 -5.068 -1.002 0 0 0 0 0 0 0 +-18.758 -5.117 -1 0 0 0 0 0 0 0 +-18.675 -5.126 -0.995 0 0 0 0 0 0 0 +-18.607 -5.17 -0.992 0 0 0 0 0 0 0 +-18.56 -5.22 -0.99 0 0 0 0 0 0 0 +-18.478 -5.259 -0.986 0 0 0 0 0 0 0 +-18.018 -5.189 -0.957 0 0 0 0 0 0 0 +-17.847 -5.2 -0.947 0 0 0 0 0 0 0 +-17.769 -5.238 -0.943 0 0 0 0 0 0 0 +-17.717 -5.253 -0.94 0 0 0 0 0 0 0 +-17.654 -5.295 -0.937 0 0 0 0 0 0 0 +-17.577 -5.332 -0.934 0 0 0 0 0 0 0 +-17.523 -5.376 -0.931 0 0 0 0 0 0 0 +-17.457 -5.415 -0.928 0 0 0 0 0 0 0 +-17.385 -5.453 -0.924 0 0 0 0 0 0 0 +-17.329 -5.495 -0.922 0 0 0 0 0 0 0 +-17.275 -5.508 -0.919 0 0 0 0 0 0 0 +-17.286 -5.571 -0.921 0 0 0 0 0 0 0 +-17.31 -5.639 -0.924 0 0 0 0 0 0 0 +-17.357 -5.715 -0.928 0 0 0 0 0 0 0 +-17.381 -5.783 -0.93 0 0 0 0 0 0 0 +-17.402 -5.851 -0.933 0 0 0 0 0 0 0 +-17.329 -5.887 -0.929 0 0 0 0 0 0 0 +-17.282 -5.901 -0.927 0 0 0 0 0 0 0 +-17.222 -5.941 -0.924 0 0 0 0 0 0 0 +-17.152 -5.978 -0.921 0 0 0 0 0 0 0 +-17.08 -6.013 -0.917 0 0 0 0 0 0 0 +-17.013 -6.049 -0.914 0 0 0 0 0 0 0 +-16.795 -6.031 -0.901 0 0 0 0 0 0 0 +-16.762 -6.078 -0.9 0 0 0 0 0 0 0 +-16.801 -6.152 -0.904 0 0 0 0 0 0 0 +-16.737 -6.159 -0.901 0 0 0 0 0 0 0 +-16.682 -6.198 -0.898 0 0 0 0 0 0 0 +-16.62 -6.234 -0.895 0 0 0 0 0 0 0 +-16.548 -6.267 -0.892 0 0 0 0 0 0 0 +-16.489 -6.304 -0.889 0 0 0 0 0 0 0 +-16.445 -6.346 -0.888 0 0 0 0 0 0 0 +-16.304 -6.35 -0.88 0 0 0 0 0 0 0 +-16.294 -6.376 -0.88 0 0 0 0 0 0 0 +-16.229 -6.409 -0.877 0 0 0 0 0 0 0 +-16.165 -6.443 -0.874 0 0 0 0 0 0 0 +-16.1 -6.475 -0.871 0 0 0 0 0 0 0 +-16.037 -6.509 -0.868 0 0 0 0 0 0 0 +-15.97 -6.54 -0.865 0 0 0 0 0 0 0 +-15.972 -6.599 -0.866 0 0 0 0 0 0 0 +-15.985 -6.634 -0.868 0 0 0 0 0 0 0 +-15.961 -6.683 -0.868 0 0 0 0 0 0 0 +-15.855 -6.697 -0.862 0 0 0 0 0 0 0 +-15.783 -6.725 -0.859 0 0 0 0 0 0 0 +-15.749 -6.769 -0.858 0 0 0 0 0 0 0 +-15.751 -6.829 -0.859 0 0 0 0 0 0 0 +-16.018 -7.005 -0.879 0 0 0 0 0 0 0 +-16.048 -7.048 -0.882 0 0 0 0 0 0 0 +-16.013 -7.093 -0.881 0 0 0 0 0 0 0 +-15.899 -7.102 -0.875 0 0 0 0 0 0 0 +-15.797 -7.116 -0.869 0 0 0 0 0 0 0 +-15.705 -7.134 -0.864 0 0 0 0 0 0 0 +-15.663 -7.174 -0.863 0 0 0 0 0 0 0 +-15.682 -7.242 -0.866 0 0 0 0 0 0 0 +-15.707 -7.284 -0.868 0 0 0 0 0 0 0 +-15.698 -7.34 -0.869 0 0 0 0 0 0 0 +-15.709 -7.406 -0.872 0 0 0 0 0 0 0 +-15.713 -7.468 -0.874 0 0 0 0 0 0 0 +-15.724 -7.534 -0.876 0 0 0 0 0 0 0 +-15.73 -7.598 -0.878 0 0 0 0 0 0 0 +-15.755 -7.671 -0.881 0 0 0 0 0 0 0 +-15.768 -7.708 -0.883 0 0 0 0 0 0 0 +-15.778 -7.774 -0.885 0 0 0 0 0 0 0 +-15.782 -7.838 -0.887 0 0 0 0 0 0 0 +-15.827 -7.922 -0.892 0 0 0 0 0 0 0 +-16.167 -8.157 -0.917 0 0 0 0 0 0 0 +-16.184 -8.229 -0.92 0 0 0 0 0 0 0 +-16.191 -8.298 -0.923 0 0 0 0 0 0 0 +-16.214 -8.341 -0.925 0 0 0 0 0 0 0 +-16.209 -8.403 -0.927 0 0 0 0 0 0 0 +-16.227 -8.477 -0.93 0 0 0 0 0 0 0 +-16.233 -8.546 -0.932 0 0 0 0 0 0 0 +-16.233 -8.611 -0.934 0 0 0 0 0 0 0 +-16.239 -8.68 -0.936 0 0 0 0 0 0 0 +-16.243 -8.748 -0.939 0 0 0 0 0 0 0 +-16.252 -8.786 -0.94 0 0 0 0 0 0 0 +-16.262 -8.857 -0.943 0 0 0 0 0 0 0 +-16.269 -8.927 -0.945 0 0 0 0 0 0 0 +-16.274 -8.997 -0.948 0 0 0 0 0 0 0 +-16.285 -9.07 -0.95 0 0 0 0 0 0 0 +-16.304 -9.148 -0.954 0 0 0 0 0 0 0 +-16.299 -9.213 -0.956 0 0 0 0 0 0 0 +-16.321 -9.259 -0.958 0 0 0 0 0 0 0 +-16.309 -9.32 -0.959 0 0 0 0 0 0 0 +-16.337 -9.404 -0.963 0 0 0 0 0 0 0 +-16.339 -9.474 -0.966 0 0 0 0 0 0 0 +-16.352 -9.55 -0.969 0 0 0 0 0 0 0 +-16.353 -9.62 -0.971 0 0 0 0 0 0 0 +-16.369 -9.699 -0.974 0 0 0 0 0 0 0 +-16.365 -9.766 -0.976 0 0 0 0 0 0 0 +-16.389 -9.816 -0.979 0 0 0 0 0 0 0 +-16.389 -9.886 -0.981 0 0 0 0 0 0 0 +-16.401 -9.963 -0.984 0 0 0 0 0 0 0 +-16.414 -10.042 -0.988 0 0 0 0 0 0 0 +-16.418 -10.115 -0.99 0 0 0 0 0 0 0 +-16.418 -10.187 -0.993 0 0 0 0 0 0 0 +-16.425 -10.263 -0.995 0 0 0 0 0 0 0 +-16.449 -10.314 -0.998 0 0 0 0 0 0 0 +-16.445 -10.384 -1 0 0 0 0 0 0 0 +-16.463 -10.468 -1.004 0 0 0 0 0 0 0 +-16.469 -10.544 -1.007 0 0 0 0 0 0 0 +-16.473 -10.62 -1.01 0 0 0 0 0 0 0 +-16.479 -10.698 -1.013 0 0 0 0 0 0 0 +-16.496 -10.782 -1.016 0 0 0 0 0 0 0 +-16.515 -10.832 -1.019 0 0 0 0 0 0 0 +-16.523 -10.912 -1.022 0 0 0 0 0 0 0 +-16.527 -10.989 -1.025 0 0 0 0 0 0 0 +-16.535 -11.07 -1.028 0 0 0 0 0 0 0 +-16.547 -11.153 -1.032 0 0 0 0 0 0 0 +-16.546 -11.228 -1.034 0 0 0 0 0 0 0 +-16.557 -11.312 -1.038 0 0 0 0 0 0 0 +-16.587 -11.371 -1.041 0 0 0 0 0 0 0 +-16.592 -11.451 -1.044 0 0 0 0 0 0 0 +-16.595 -11.531 -1.047 0 0 0 0 0 0 0 +-16.608 -11.617 -1.051 0 0 0 0 0 0 0 +-16.612 -11.698 -1.054 0 0 0 0 0 0 0 +-16.626 -11.786 -1.058 0 0 0 0 0 0 0 +-10.628 -7.573 -0.605 0 0 0 0 0 0 0 +-10.562 -7.551 -0.601 0 0 0 0 0 0 0 +-10.522 -7.572 -0.599 0 0 0 0 0 0 0 +-10.49 -7.599 -0.599 0 0 0 0 0 0 0 +-10.45 -7.621 -0.597 0 0 0 0 0 0 0 +-10.483 -7.695 -0.602 0 0 0 0 0 0 0 +-16.691 -12.353 -1.082 0 0 0 0 0 0 0 +-16.687 -12.431 -1.085 0 0 0 0 0 0 0 +-16.719 -12.496 -1.088 0 0 0 0 0 0 0 +-16.732 -12.588 -1.093 0 0 0 0 0 0 0 +-16.745 -12.68 -1.097 0 0 0 0 0 0 0 +-16.745 -12.763 -1.1 0 0 0 0 0 0 0 +-16.749 -12.85 -1.103 0 0 0 0 0 0 0 +-16.77 -12.95 -1.108 0 0 0 0 0 0 0 +-16.769 -13.033 -1.111 0 0 0 0 0 0 0 +-16.808 -13.106 -1.116 0 0 0 0 0 0 0 +-16.8 -13.185 -1.118 0 0 0 0 0 0 0 +-16.808 -13.277 -1.122 0 0 0 0 0 0 0 +-16.816 -13.37 -1.126 0 0 0 0 0 0 0 +-16.823 -13.461 -1.13 0 0 0 0 0 0 0 +-16.827 -13.552 -1.134 0 0 0 0 0 0 0 +-16.841 -13.651 -1.138 0 0 0 0 0 0 0 +-16.849 -13.746 -1.142 0 0 0 0 0 0 0 +-16.88 -13.815 -1.147 0 0 0 0 0 0 0 +-16.898 -13.919 -1.152 0 0 0 0 0 0 0 +-16.899 -14.009 -1.155 0 0 0 0 0 0 0 +-16.913 -14.111 -1.16 0 0 0 0 0 0 0 +-16.918 -14.205 -1.164 0 0 0 0 0 0 0 +-16.934 -14.309 -1.169 0 0 0 0 0 0 0 +-16.94 -14.407 -1.173 0 0 0 0 0 0 0 +-16.98 -14.486 -1.178 0 0 0 0 0 0 0 +-16.989 -14.587 -1.182 0 0 0 0 0 0 0 +-16.997 -14.687 -1.187 0 0 0 0 0 0 0 +-17.016 -14.797 -1.192 0 0 0 0 0 0 0 +-17.016 -14.891 -1.196 0 0 0 0 0 0 0 +-17.024 -14.993 -1.201 0 0 0 0 0 0 0 +-17.029 -15.093 -1.205 0 0 0 0 0 0 0 +-17.08 -15.186 -1.211 0 0 0 0 0 0 0 +-17.077 -15.28 -1.215 0 0 0 0 0 0 0 +-17.097 -15.395 -1.22 0 0 0 0 0 0 0 +-17.099 -15.494 -1.225 0 0 0 0 0 0 0 +-17.1 -15.593 -1.229 0 0 0 0 0 0 0 +-17.125 -15.715 -1.235 0 0 0 0 0 0 0 +-17.131 -15.82 -1.24 0 0 0 0 0 0 0 +-17.16 -15.897 -1.244 0 0 0 0 0 0 0 +-17.168 -16.005 -1.249 0 0 0 0 0 0 0 +-17.17 -16.108 -1.254 0 0 0 0 0 0 0 +-17.196 -16.235 -1.26 0 0 0 0 0 0 0 +-17.218 -16.358 -1.266 0 0 0 0 0 0 0 +-17.243 -16.485 -1.273 0 0 0 0 0 0 0 +-17.264 -16.61 -1.279 0 0 0 0 0 0 0 +-17.311 -16.708 -1.286 0 0 0 0 0 0 0 +-17.336 -16.837 -1.292 0 0 0 0 0 0 0 +-17.326 -16.933 -1.296 0 0 0 0 0 0 0 +-17.286 -17.002 -1.297 0 0 0 0 0 0 0 +-17.29 -17.112 -1.302 0 0 0 0 0 0 0 +-17.308 -17.238 -1.308 0 0 0 0 0 0 0 +-17.31 -17.349 -1.313 0 0 0 0 0 0 0 +-17.357 -17.451 -1.32 0 0 0 0 0 0 0 +-17.368 -17.573 -1.326 0 0 0 0 0 0 0 +-17.366 -17.681 -1.33 0 0 0 0 0 0 0 +-17.38 -17.807 -1.337 0 0 0 0 0 0 0 +-17.324 -17.862 -1.337 0 0 0 0 0 0 0 +-17.232 -17.879 -1.333 0 0 0 0 0 0 0 +-17.129 -17.884 -1.329 0 0 0 0 0 0 0 +-17.087 -17.896 -1.328 0 0 0 0 0 0 0 +-17.07 -17.992 -1.331 0 0 0 0 0 0 0 +-17.092 -18.128 -1.339 0 0 0 0 0 0 0 +-17.108 -18.26 -1.345 0 0 0 0 0 0 0 +-17.1 -18.367 -1.35 0 0 0 0 0 0 0 +-14.006 -15.132 -1.073 0 0 0 0 0 0 0 +-17.321 -18.842 -1.38 0 0 0 0 0 0 0 +-17.613 -19.281 -1.413 0 0 0 0 0 0 0 +-17.651 -19.384 -1.419 0 0 0 0 0 0 0 +-17.677 -19.536 -1.427 0 0 0 0 0 0 0 +-17.694 -19.679 -1.434 0 0 0 0 0 0 0 +-17.708 -19.819 -1.441 0 0 0 0 0 0 0 +-17.72 -19.958 -1.448 0 0 0 0 0 0 0 +-17.706 -20.069 -1.453 0 0 0 0 0 0 0 +-17.719 -20.212 -1.46 0 0 0 0 0 0 0 +-17.777 -20.342 -1.468 0 0 0 0 0 0 0 +-17.792 -20.49 -1.476 0 0 0 0 0 0 0 +-17.805 -20.635 -1.483 0 0 0 0 0 0 0 +-17.812 -20.776 -1.49 0 0 0 0 0 0 0 +-14.093 -16.534 -1.141 0 0 0 0 0 0 0 +-17.85 -21.087 -1.506 0 0 0 0 0 0 0 +-17.842 -21.212 -1.512 0 0 0 0 0 0 0 +-17.893 -21.341 -1.52 0 0 0 0 0 0 0 +-17.905 -21.492 -1.528 0 0 0 0 0 0 0 +-17.901 -21.625 -1.534 0 0 0 0 0 0 0 +-17.885 -21.744 -1.539 0 0 0 0 0 0 0 +-17.905 -21.909 -1.548 0 0 0 0 0 0 0 +-17.913 -22.06 -1.555 0 0 0 0 0 0 0 +-17.919 -22.211 -1.563 0 0 0 0 0 0 0 +-17.968 -22.343 -1.571 0 0 0 0 0 0 0 +-17.995 -22.521 -1.581 0 0 0 0 0 0 0 +-17.987 -22.657 -1.587 0 0 0 0 0 0 0 +-17.998 -22.817 -1.595 0 0 0 0 0 0 0 +-14.185 -18.209 -1.225 0 0 0 0 0 0 0 +-14.118 -18.241 -1.224 0 0 0 0 0 0 0 +-18.112 -23.49 -1.632 0 0 0 0 0 0 0 +-18.117 -23.65 -1.64 0 0 0 0 0 0 0 +-18.061 -23.73 -1.642 0 0 0 0 0 0 0 +-17.761 -23.489 -1.619 0 0 0 0 0 0 0 +-17.713 -23.578 -1.622 0 0 0 0 0 0 0 +-17.809 -23.863 -1.639 0 0 0 0 0 0 0 +-17.691 -23.861 -1.635 0 0 0 0 0 0 0 +-18.245 -24.69 -1.696 0 0 0 0 0 0 0 +-18.29 -24.915 -1.709 0 0 0 0 0 0 0 +-18.297 -25.09 -1.718 0 0 0 0 0 0 0 +-18.319 -25.286 -1.729 0 0 0 0 0 0 0 +-18.334 -25.475 -1.739 0 0 0 0 0 0 0 +-18.345 -25.661 -1.749 0 0 0 0 0 0 0 +-18.362 -25.855 -1.759 0 0 0 0 0 0 0 +-18.422 -26.028 -1.77 0 0 0 0 0 0 0 +-18.423 -26.203 -1.779 0 0 0 0 0 0 0 +-18.442 -26.406 -1.79 0 0 0 0 0 0 0 +-18.483 -26.643 -1.803 0 0 0 0 0 0 0 +-18.51 -26.862 -1.815 0 0 0 0 0 0 0 +-18.513 -27.047 -1.825 0 0 0 0 0 0 0 +-18.487 -27.193 -1.831 0 0 0 0 0 0 0 +-18.107 -26.724 -1.794 0 0 0 0 0 0 0 +-18.06 -26.835 -1.798 0 0 0 0 0 0 0 +-19.259 -28.815 -1.941 0 0 0 0 0 0 0 +-19.155 -28.855 -1.94 0 0 0 0 0 0 0 +-19.037 -28.874 -1.937 0 0 0 0 0 0 0 +-18.896 -28.856 -1.931 0 0 0 0 0 0 0 +-18.796 -28.902 -1.93 0 0 0 0 0 0 0 +-18.747 -28.925 -1.929 0 0 0 0 0 0 0 +-18.704 -29.059 -1.935 0 0 0 0 0 0 0 +-18.598 -29.094 -1.933 0 0 0 0 0 0 0 +-18.524 -29.181 -1.935 0 0 0 0 0 0 0 +-18.44 -29.251 -1.936 0 0 0 0 0 0 0 +-18.364 -29.334 -1.938 0 0 0 0 0 0 0 +-18.281 -29.407 -1.939 0 0 0 0 0 0 0 +-18.259 -29.475 -1.942 0 0 0 0 0 0 0 +-18.185 -29.563 -1.944 0 0 0 0 0 0 0 +-18.1 -29.632 -1.945 0 0 0 0 0 0 0 +-18.009 -29.693 -1.945 0 0 0 0 0 0 0 +-17.925 -29.765 -1.947 0 0 0 0 0 0 0 +-17.833 -29.823 -1.947 0 0 0 0 0 0 0 +-17.74 -29.881 -1.947 0 0 0 0 0 0 0 +-17.649 -29.835 -1.942 0 0 0 0 0 0 0 +-17.508 -29.809 -1.936 0 0 0 0 0 0 0 +-17.47 -29.959 -1.943 0 0 0 0 0 0 0 +-17.46 -30.16 -1.953 0 0 0 0 0 0 0 +-17.386 -30.252 -1.956 0 0 0 0 0 0 0 +-17.373 -30.45 -1.966 0 0 0 0 0 0 0 +-17.186 -30.343 -1.954 0 0 0 0 0 0 0 +-17.139 -30.372 -1.954 0 0 0 0 0 0 0 +-17.052 -30.439 -1.955 0 0 0 0 0 0 0 +-16.977 -30.531 -1.958 0 0 0 0 0 0 0 +-16.898 -30.614 -1.96 0 0 0 0 0 0 0 +-16.813 -30.688 -1.962 0 0 0 0 0 0 0 +-16.705 -30.719 -1.96 0 0 0 0 0 0 0 +-16.649 -30.847 -1.966 0 0 0 0 0 0 0 +-16.577 -30.945 -1.969 0 0 0 0 0 0 0 +-15.753 -29.516 -1.867 0 0 0 0 0 0 0 +-15.629 -29.507 -1.863 0 0 0 0 0 0 0 +-15.514 -29.514 -1.86 0 0 0 0 0 0 0 +-15.445 -29.608 -1.863 0 0 0 0 0 0 0 +-15.444 -29.834 -1.875 0 0 0 0 0 0 0 +-15.241 -29.669 -1.861 0 0 0 0 0 0 0 +-15.166 -29.753 -1.863 0 0 0 0 0 0 0 +-15.017 -29.575 -1.849 0 0 0 0 0 0 0 +-14.952 -29.677 -1.853 0 0 0 0 0 0 0 +-14.823 -29.653 -1.848 0 0 0 0 0 0 0 +-14.73 -29.701 -1.848 0 0 0 0 0 0 0 +-14.689 -29.853 -1.855 0 0 0 0 0 0 0 +-14.673 -30.059 -1.866 0 0 0 0 0 0 0 +-14.58 -30.108 -1.867 0 0 0 0 0 0 0 +-14.5 -30.063 -1.862 0 0 0 0 0 0 0 +-14.451 -30.203 -1.868 0 0 0 0 0 0 0 +-14.482 -30.516 -1.887 0 0 0 0 0 0 0 +-14.527 -30.859 -1.907 0 0 0 0 0 0 0 +-14.566 -31.198 -1.927 0 0 0 0 0 0 0 +-14.507 -31.329 -1.933 0 0 0 0 0 0 0 +-14.419 -31.396 -1.934 0 0 0 0 0 0 0 +-14.659 -32.052 -1.977 0 0 0 0 0 0 0 +-14.649 -32.3 -1.991 0 0 0 0 0 0 0 +-14.576 -32.408 -1.995 0 0 0 0 0 0 0 +-14.54 -32.603 -2.005 0 0 0 0 0 0 0 +-14.514 -32.82 -2.017 0 0 0 0 0 0 0 +-14.485 -33.036 -2.029 0 0 0 0 0 0 0 +-14.402 -33.128 -2.032 0 0 0 0 0 0 0 +-14.099 -32.57 -1.993 0 0 0 0 0 0 0 +-14.015 -32.658 -1.996 0 0 0 0 0 0 0 +-14.065 -33.062 -2.02 0 0 0 0 0 0 0 +-13.975 -33.138 -2.022 0 0 0 0 0 0 0 +-13.798 -33.008 -2.01 0 0 0 0 0 0 0 +-13.63 -32.896 -2 0 0 0 0 0 0 0 +-13.463 -32.784 -1.99 0 0 0 0 0 0 0 +-13.441 -32.877 -1.994 0 0 0 0 0 0 0 +-13.296 -32.816 -1.987 0 0 0 0 0 0 0 +-13.177 -32.818 -1.985 0 0 0 0 0 0 0 +-13.067 -32.841 -1.984 0 0 0 0 0 0 0 +-12.966 -32.887 -1.984 0 0 0 0 0 0 0 +-12.849 -32.895 -1.982 0 0 0 0 0 0 0 +-12.729 -32.892 -1.979 0 0 0 0 0 0 0 +-12.655 -32.852 -1.975 0 0 0 0 0 0 0 +-12.534 -32.847 -1.972 0 0 0 0 0 0 0 +-12.418 -32.851 -1.97 0 0 0 0 0 0 0 +-12.303 -32.86 -1.968 0 0 0 0 0 0 0 +-12.194 -32.881 -1.967 0 0 0 0 0 0 0 +-12.082 -32.895 -1.965 0 0 0 0 0 0 0 +-11.974 -32.922 -1.964 0 0 0 0 0 0 0 +-11.909 -32.903 -1.962 0 0 0 0 0 0 0 +-11.804 -32.936 -1.962 0 0 0 0 0 0 0 +-11.694 -32.956 -1.96 0 0 0 0 0 0 0 +-11.587 -32.982 -1.96 0 0 0 0 0 0 0 +-11.485 -33.023 -1.96 0 0 0 0 0 0 0 +-11.376 -33.044 -1.959 0 0 0 0 0 0 0 +-11.274 -33.086 -1.959 0 0 0 0 0 0 0 +-11.223 -33.105 -1.96 0 0 0 0 0 0 0 +-11.113 -33.123 -1.958 0 0 0 0 0 0 0 +-11.018 -33.184 -1.96 0 0 0 0 0 0 0 +-10.912 -33.213 -1.96 0 0 0 0 0 0 0 +-10.808 -33.251 -1.96 0 0 0 0 0 0 0 +-10.702 -33.279 -1.96 0 0 0 0 0 0 0 +-10.59 -33.288 -1.958 0 0 0 0 0 0 0 +-10.565 -33.392 -1.964 0 0 0 0 0 0 0 +-10.185 -33.278 -1.95 0 0 0 0 0 0 0 +-10.083 -33.32 -1.951 0 0 0 0 0 0 0 +-9.967 -33.311 -1.948 0 0 0 0 0 0 0 +-9.86 -33.336 -1.948 0 0 0 0 0 0 0 +-9.807 -33.35 -1.948 0 0 0 0 0 0 0 +-9.693 -33.346 -1.945 0 0 0 0 0 0 0 +-9.582 -33.357 -1.944 0 0 0 0 0 0 0 +-9.467 -33.349 -1.942 0 0 0 0 0 0 0 +-9.353 -33.346 -1.94 0 0 0 0 0 0 0 +-9.246 -33.367 -1.939 0 0 0 0 0 0 0 +-9.142 -33.402 -1.939 0 0 0 0 0 0 0 +-9.115 -33.509 -1.945 0 0 0 0 0 0 0 +-9.029 -33.61 -1.95 0 0 0 0 0 0 0 +-8.727 -33.319 -1.928 0 0 0 0 0 0 0 +-8.616 -33.321 -1.926 0 0 0 0 0 0 0 +-8.501 -33.307 -1.924 0 0 0 0 0 0 0 +-8.396 -33.332 -1.924 0 0 0 0 0 0 0 +-8.29 -33.354 -1.923 0 0 0 0 0 0 0 +-8.23 -33.336 -1.921 0 0 0 0 0 0 0 +-8.124 -33.358 -1.921 0 0 0 0 0 0 0 +-8.016 -33.368 -1.92 0 0 0 0 0 0 0 +-7.906 -33.373 -1.919 0 0 0 0 0 0 0 +-7.804 -33.41 -1.92 0 0 0 0 0 0 0 +-7.698 -33.43 -1.919 0 0 0 0 0 0 0 +-7.593 -33.454 -1.919 0 0 0 0 0 0 0 +-7.545 -33.485 -1.921 0 0 0 0 0 0 0 +-7.458 -33.593 -1.926 0 0 0 0 0 0 0 +-7.377 -33.729 -1.933 0 0 0 0 0 0 0 +-7.246 -33.633 -1.925 0 0 0 0 0 0 0 +-7.091 -33.425 -1.911 0 0 0 0 0 0 0 +-6.977 -33.402 -1.908 0 0 0 0 0 0 0 +-6.92 -33.392 -1.907 0 0 0 0 0 0 0 +-6.814 -33.41 -1.906 0 0 0 0 0 0 0 +-6.705 -33.407 -1.905 0 0 0 0 0 0 0 +-6.6 -33.432 -1.905 0 0 0 0 0 0 0 +-6.491 -33.431 -1.904 0 0 0 0 0 0 0 +-6.387 -33.457 -1.904 0 0 0 0 0 0 0 +-6.28 -33.463 -1.903 0 0 0 0 0 0 0 +-6.175 -33.485 -1.904 0 0 0 0 0 0 0 +-6.127 -33.52 -1.905 0 0 0 0 0 0 0 +-6.03 -33.586 -1.908 0 0 0 0 0 0 0 +-5.973 -33.884 -1.926 0 0 0 0 0 0 0 +-5.827 -33.673 -1.911 0 0 0 0 0 0 0 +-5.666 -33.364 -1.891 0 0 0 0 0 0 0 +-5.533 -33.212 -1.88 0 0 0 0 0 0 0 +-5.415 -33.143 -1.875 0 0 0 0 0 0 0 +-5.352 -33.086 -1.871 0 0 0 0 0 0 0 +-5.246 -33.089 -1.87 0 0 0 0 0 0 0 +-5.139 -33.086 -1.868 0 0 0 0 0 0 0 +-5.037 -33.116 -1.869 0 0 0 0 0 0 0 +-4.935 -33.145 -1.87 0 0 0 0 0 0 0 +-4.817 -33.066 -1.864 0 0 0 0 0 0 0 +-4.702 -33.003 -1.859 0 0 0 0 0 0 0 +-4.651 -33.015 -1.86 0 0 0 0 0 0 0 +-4.549 -33.039 -1.86 0 0 0 0 0 0 0 +-4.447 -33.067 -1.861 0 0 0 0 0 0 0 +-4.343 -33.083 -1.861 0 0 0 0 0 0 0 +-4.24 -33.104 -1.862 0 0 0 0 0 0 0 +-4.133 -33.094 -1.86 0 0 0 0 0 0 0 +-4.025 -33.073 -1.858 0 0 0 0 0 0 0 +-3.966 -33.022 -1.855 0 0 0 0 0 0 0 +-3.86 -33.01 -1.853 0 0 0 0 0 0 0 +-2.199 -19.238 -0.995 0 0 0 0 0 0 0 +-2.057 -18.505 -0.949 0 0 0 0 0 0 0 +-1.96 -18.146 -0.926 0 0 0 0 0 0 0 +-1.798 -17.671 -0.896 0 0 0 0 0 0 0 +-1.769 -17.662 -0.895 0 0 0 0 0 0 0 +-1.714 -17.672 -0.896 0 0 0 0 0 0 0 +-1.655 -17.649 -0.894 0 0 0 0 0 0 0 +-1.601 -17.664 -0.895 0 0 0 0 0 0 0 +-1.545 -17.663 -0.894 0 0 0 0 0 0 0 +-1.488 -17.656 -0.893 0 0 0 0 0 0 0 +-1.43 -17.627 -0.891 0 0 0 0 0 0 0 +-1.404 -17.645 -0.892 0 0 0 0 0 0 0 +-1.348 -17.649 -0.892 0 0 0 0 0 0 0 +-1.292 -17.635 -0.891 0 0 0 0 0 0 0 +-1.236 -17.637 -0.891 0 0 0 0 0 0 0 +-1.181 -17.653 -0.892 0 0 0 0 0 0 0 +-1.125 -17.641 -0.891 0 0 0 0 0 0 0 +-1.071 -17.664 -0.892 0 0 0 0 0 0 0 +-1.042 -17.658 -0.892 0 0 0 0 0 0 0 +-0.989 -17.691 -0.893 0 0 0 0 0 0 0 +-0.933 -17.696 -0.894 0 0 0 0 0 0 0 +-0.879 -17.731 -0.896 0 0 0 0 0 0 0 +-0.824 -17.751 -0.897 0 0 0 0 0 0 0 +-0.77 -17.782 -0.898 0 0 0 0 0 0 0 +-0.715 -17.814 -0.9 0 0 0 0 0 0 0 +-0.687 -17.825 -0.901 0 0 0 0 0 0 0 +-0.632 -17.841 -0.902 0 0 0 0 0 0 0 +-0.576 -17.857 -0.903 0 0 0 0 0 0 0 +-0.521 -17.899 -0.905 0 0 0 0 0 0 0 +-0.468 -18.032 -0.913 0 0 0 0 0 0 0 +-0.69 -31.077 -1.72 0 0 0 0 0 0 0 +-0.592 -31.06 -1.719 0 0 0 0 0 0 0 +-0.544 -31.072 -1.72 0 0 0 0 0 0 0 +-0.445 -30.982 -1.714 0 0 0 0 0 0 0 +-0.346 -30.86 -1.706 0 0 0 0 0 0 0 +-0.248 -30.741 -1.699 0 0 0 0 0 0 0 +-0.151 -30.642 -1.693 0 0 0 0 0 0 0 +-0.055 -30.602 -1.69 0 0 0 0 0 0 0 +0.041 -30.568 -1.688 0 0 0 0 0 0 0 +0.089 -30.588 -1.689 0 0 0 0 0 0 0 +0.185 -30.522 -1.685 0 0 0 0 0 0 0 +0.28 -30.483 -1.683 0 0 0 0 0 0 0 +0.376 -30.454 -1.681 0 0 0 0 0 0 0 +0.471 -30.427 -1.68 0 0 0 0 0 0 0 +0.566 -30.405 -1.678 0 0 0 0 0 0 0 +0.662 -30.421 -1.68 0 0 0 0 0 0 0 +0.711 -30.49 -1.684 0 0 0 0 0 0 0 +0.806 -30.436 -1.681 0 0 0 0 0 0 0 +0.9 -30.373 -1.677 0 0 0 0 0 0 0 +0.993 -30.314 -1.673 0 0 0 0 0 0 0 +1.088 -30.307 -1.673 0 0 0 0 0 0 0 +1.183 -30.299 -1.673 0 0 0 0 0 0 0 +1.275 -30.218 -1.668 0 0 0 0 0 0 0 +1.32 -30.148 -1.664 0 0 0 0 0 0 0 +1.412 -30.092 -1.661 0 0 0 0 0 0 0 +1.502 -30.006 -1.656 0 0 0 0 0 0 0 +1.593 -29.929 -1.651 0 0 0 0 0 0 0 +1.682 -29.846 -1.646 0 0 0 0 0 0 0 +1.771 -29.765 -1.642 0 0 0 0 0 0 0 +1.857 -29.63 -1.634 0 0 0 0 0 0 0 +1.894 -29.481 -1.625 0 0 0 0 0 0 0 +1.982 -29.411 -1.621 0 0 0 0 0 0 0 +2.068 -29.319 -1.615 0 0 0 0 0 0 0 +2.162 -29.335 -1.617 0 0 0 0 0 0 0 +2.256 -29.348 -1.618 0 0 0 0 0 0 0 +2.349 -29.36 -1.619 0 0 0 0 0 0 0 +2.442 -29.357 -1.62 0 0 0 0 0 0 0 +2.35 -27.74 -1.519 0 0 0 0 0 0 0 +2.411 -27.442 -1.501 0 0 0 0 0 0 0 +2.473 -27.168 -1.485 0 0 0 0 0 0 0 +2.541 -26.973 -1.473 0 0 0 0 0 0 0 +2.613 -26.836 -1.465 0 0 0 0 0 0 0 +2.685 -26.709 -1.458 0 0 0 0 0 0 0 +2.748 -26.505 -1.446 0 0 0 0 0 0 0 +2.797 -26.181 -1.426 0 0 0 0 0 0 0 +2.806 -25.883 -1.408 0 0 0 0 0 0 0 +2.853 -25.563 -1.388 0 0 0 0 0 0 0 +2.894 -25.215 -1.367 0 0 0 0 0 0 0 +2.955 -25.051 -1.358 0 0 0 0 0 0 0 +3.017 -24.912 -1.35 0 0 0 0 0 0 0 +3.069 -24.689 -1.336 0 0 0 0 0 0 0 +3.119 -24.463 -1.323 0 0 0 0 0 0 0 +3.134 -24.282 -1.312 0 0 0 0 0 0 0 +3.169 -23.962 -1.292 0 0 0 0 0 0 0 +3.216 -23.746 -1.28 0 0 0 0 0 0 0 +3.281 -23.665 -1.275 0 0 0 0 0 0 0 +3.315 -23.373 -1.258 0 0 0 0 0 0 0 +3.289 -22.68 -1.215 0 0 0 0 0 0 0 +3.312 -22.589 -1.21 0 0 0 0 0 0 0 +3.378 -22.545 -1.208 0 0 0 0 0 0 0 +3.432 -22.43 -1.201 0 0 0 0 0 0 0 +3.499 -22.397 -1.2 0 0 0 0 0 0 0 +3.564 -22.351 -1.197 0 0 0 0 0 0 0 +3.639 -22.369 -1.199 0 0 0 0 0 0 0 +3.757 -22.641 -1.217 0 0 0 0 0 0 0 +3.788 -22.395 -1.202 0 0 0 0 0 0 0 +3.84 -22.487 -1.209 0 0 0 0 0 0 0 +3.638 -20.92 -1.111 0 0 0 0 0 0 0 +3.667 -20.7 -1.098 0 0 0 0 0 0 0 +3.774 -20.555 -1.09 0 0 0 0 0 0 0 +3.796 -20.313 -1.076 0 0 0 0 0 0 0 +3.837 -20.186 -1.068 0 0 0 0 0 0 0 +3.887 -20.276 -1.074 0 0 0 0 0 0 0 +3.883 -19.917 -1.053 0 0 0 0 0 0 0 +3.984 -20.098 -1.065 0 0 0 0 0 0 0 +3.995 -19.512 -1.029 0 0 0 0 0 0 0 +4.062 -19.528 -1.031 0 0 0 0 0 0 0 +4.114 -19.473 -1.028 0 0 0 0 0 0 0 +4.067 -19.103 -1.006 0 0 0 0 0 0 0 +1.39 -6.509 -0.209 0 0 0 0 0 0 0 +1.402 -6.47 -0.207 0 0 0 0 0 0 0 +1.421 -6.457 -0.206 0 0 0 0 0 0 0 +4.42 -17.852 -0.935 0 0 0 0 0 0 0 +4.468 -17.809 -0.933 0 0 0 0 0 0 0 +4.513 -17.751 -0.93 0 0 0 0 0 0 0 +4.493 -17.558 -0.918 0 0 0 0 0 0 0 +4.457 -17.194 -0.896 0 0 0 0 0 0 0 +4.54 -17.29 -0.903 0 0 0 0 0 0 0 +4.516 -16.985 -0.885 0 0 0 0 0 0 0 +4.556 -16.918 -0.881 0 0 0 0 0 0 0 +4.603 -16.885 -0.88 0 0 0 0 0 0 0 +4.602 -16.575 -0.861 0 0 0 0 0 0 0 +4.659 -16.575 -0.862 0 0 0 0 0 0 0 +4.648 -16.34 -0.848 0 0 0 0 0 0 0 +4.655 -16.172 -0.838 0 0 0 0 0 0 0 +4.709 -16.169 -0.839 0 0 0 0 0 0 0 +4.713 -15.997 -0.829 0 0 0 0 0 0 0 +4.76 -15.972 -0.828 0 0 0 0 0 0 0 +4.762 -15.887 -0.823 0 0 0 0 0 0 0 +4.816 -15.885 -0.824 0 0 0 0 0 0 0 +4.835 -15.77 -0.818 0 0 0 0 0 0 0 +4.894 -15.786 -0.82 0 0 0 0 0 0 0 +4.931 -15.73 -0.817 0 0 0 0 0 0 0 +5.013 -15.815 -0.824 0 0 0 0 0 0 0 +5.051 -15.764 -0.821 0 0 0 0 0 0 0 +4.911 -15.249 -0.788 0 0 0 0 0 0 0 +4.974 -15.279 -0.791 0 0 0 0 0 0 0 +5.008 -15.221 -0.789 0 0 0 0 0 0 0 +5.064 -15.23 -0.79 0 0 0 0 0 0 0 +5.127 -15.259 -0.793 0 0 0 0 0 0 0 +5.191 -15.29 -0.796 0 0 0 0 0 0 0 +5.23 -15.246 -0.794 0 0 0 0 0 0 0 +5.272 -15.29 -0.798 0 0 0 0 0 0 0 +5.313 -15.253 -0.796 0 0 0 0 0 0 0 +5.386 -15.31 -0.801 0 0 0 0 0 0 0 +3.737 -10.54 -0.489 0 0 0 0 0 0 0 +3.755 -10.485 -0.486 0 0 0 0 0 0 0 +3.756 -10.387 -0.481 0 0 0 0 0 0 0 +5.656 -15.452 -0.815 0 0 0 0 0 0 0 +5.65 -15.361 -0.81 0 0 0 0 0 0 0 +5.677 -15.285 -0.806 0 0 0 0 0 0 0 +5.734 -15.292 -0.808 0 0 0 0 0 0 0 +5.832 -15.404 -0.816 0 0 0 0 0 0 0 +5.883 -15.395 -0.817 0 0 0 0 0 0 0 +5.935 -15.386 -0.817 0 0 0 0 0 0 0 +5.965 -15.319 -0.814 0 0 0 0 0 0 0 +5.993 -15.319 -0.815 0 0 0 0 0 0 0 +6.044 -15.309 -0.816 0 0 0 0 0 0 0 +6.092 -15.29 -0.816 0 0 0 0 0 0 0 +6.148 -15.289 -0.817 0 0 0 0 0 0 0 +6.206 -15.294 -0.818 0 0 0 0 0 0 0 +6.264 -15.3 -0.82 0 0 0 0 0 0 0 +6.326 -15.314 -0.822 0 0 0 0 0 0 0 +6.366 -15.342 -0.825 0 0 0 0 0 0 0 +6.42 -15.335 -0.826 0 0 0 0 0 0 0 +6.487 -15.359 -0.829 0 0 0 0 0 0 0 +6.559 -15.395 -0.833 0 0 0 0 0 0 0 +6.674 -15.529 -0.843 0 0 0 0 0 0 0 +6.67 -15.387 -0.835 0 0 0 0 0 0 0 +6.834 -15.629 -0.853 0 0 0 0 0 0 0 +6.837 -15.569 -0.849 0 0 0 0 0 0 0 +6.879 -15.533 -0.848 0 0 0 0 0 0 0 +6.917 -15.487 -0.847 0 0 0 0 0 0 0 +6.943 -15.415 -0.843 0 0 0 0 0 0 0 +7.023 -15.462 -0.848 0 0 0 0 0 0 0 +7.063 -15.422 -0.847 0 0 0 0 0 0 0 +7.159 -15.501 -0.854 0 0 0 0 0 0 0 +7.182 -15.488 -0.853 0 0 0 0 0 0 0 +7.235 -15.474 -0.854 0 0 0 0 0 0 0 +7.266 -15.415 -0.852 0 0 0 0 0 0 0 +8.59 -18.066 -1.035 0 0 0 0 0 0 0 +7.472 -15.596 -0.867 0 0 0 0 0 0 0 +7.55 -15.632 -0.871 0 0 0 0 0 0 0 +7.573 -15.554 -0.867 0 0 0 0 0 0 0 +7.606 -15.56 -0.869 0 0 0 0 0 0 0 +7.729 -15.686 -0.879 0 0 0 0 0 0 0 +7.873 -15.851 -0.892 0 0 0 0 0 0 0 +7.856 -15.572 -0.876 0 0 0 0 0 0 0 +7.924 -15.584 -0.879 0 0 0 0 0 0 0 +7.986 -15.586 -0.881 0 0 0 0 0 0 0 +8.002 -15.556 -0.879 0 0 0 0 0 0 0 +8.066 -15.561 -0.882 0 0 0 0 0 0 0 +8.135 -15.574 -0.884 0 0 0 0 0 0 0 +8.212 -15.601 -0.888 0 0 0 0 0 0 0 +8.268 -15.588 -0.889 0 0 0 0 0 0 0 +8.377 -15.674 -0.897 0 0 0 0 0 0 0 +8.454 -15.699 -0.9 0 0 0 0 0 0 0 +7.23 -13.384 -0.738 0 0 0 0 0 0 0 +8.546 -15.692 -0.903 0 0 0 0 0 0 0 +7.454 -13.593 -0.756 0 0 0 0 0 0 0 +7.423 -13.437 -0.747 0 0 0 0 0 0 0 +6.651 -11.957 -0.644 0 0 0 0 0 0 0 +6.645 -11.858 -0.638 0 0 0 0 0 0 0 +7.615 -13.433 -0.753 0 0 0 0 0 0 0 +7.685 -13.457 -0.756 0 0 0 0 0 0 0 +6.939 -12.067 -0.658 0 0 0 0 0 0 0 +7.865 -13.573 -0.768 0 0 0 0 0 0 0 +9.086 -15.559 -0.912 0 0 0 0 0 0 0 +8.015 -13.633 -0.776 0 0 0 0 0 0 0 +8.029 -13.56 -0.772 0 0 0 0 0 0 0 +8.031 -13.514 -0.77 0 0 0 0 0 0 0 +8.127 -13.578 -0.776 0 0 0 0 0 0 0 +8.274 -13.725 -0.789 0 0 0 0 0 0 0 +8.353 -13.759 -0.793 0 0 0 0 0 0 0 +8.405 -13.746 -0.794 0 0 0 0 0 0 0 +8.449 -13.721 -0.794 0 0 0 0 0 0 0 +8.468 -13.655 -0.791 0 0 0 0 0 0 0 +7.072 -11.373 -0.626 0 0 0 0 0 0 0 +7.111 -11.356 -0.626 0 0 0 0 0 0 0 +7.133 -11.312 -0.625 0 0 0 0 0 0 0 +7.168 -11.289 -0.625 0 0 0 0 0 0 0 +7.197 -11.257 -0.624 0 0 0 0 0 0 0 +7.234 -11.236 -0.624 0 0 0 0 0 0 0 +7.254 -11.19 -0.622 0 0 0 0 0 0 0 +7.276 -11.185 -0.623 0 0 0 0 0 0 0 +7.29 -11.13 -0.62 0 0 0 0 0 0 0 +7.324 -11.106 -0.62 0 0 0 0 0 0 0 +7.358 -11.081 -0.62 0 0 0 0 0 0 0 +7.386 -11.048 -0.619 0 0 0 0 0 0 0 +7.416 -11.018 -0.619 0 0 0 0 0 0 0 +7.449 -10.993 -0.619 0 0 0 0 0 0 0 +7.458 -10.968 -0.618 0 0 0 0 0 0 0 +7.49 -10.941 -0.618 0 0 0 0 0 0 0 +7.532 -10.929 -0.618 0 0 0 0 0 0 0 +7.553 -10.886 -0.617 0 0 0 0 0 0 0 +7.584 -10.859 -0.617 0 0 0 0 0 0 0 +7.613 -10.827 -0.616 0 0 0 0 0 0 0 +7.642 -10.796 -0.616 0 0 0 0 0 0 0 +7.649 -10.77 -0.615 0 0 0 0 0 0 0 +7.696 -10.765 -0.616 0 0 0 0 0 0 0 +9.422 -12.996 -0.79 0 0 0 0 0 0 0 +9.433 -12.926 -0.787 0 0 0 0 0 0 0 +9.44 -12.849 -0.784 0 0 0 0 0 0 0 +9.453 -12.783 -0.781 0 0 0 0 0 0 0 +9.442 -12.726 -0.778 0 0 0 0 0 0 0 +9.454 -12.66 -0.775 0 0 0 0 0 0 0 +9.471 -12.6 -0.772 0 0 0 0 0 0 0 +9.474 -12.522 -0.769 0 0 0 0 0 0 0 +9.477 -12.445 -0.765 0 0 0 0 0 0 0 +9.498 -12.391 -0.763 0 0 0 0 0 0 0 +9.511 -12.328 -0.761 0 0 0 0 0 0 0 +9.506 -12.282 -0.758 0 0 0 0 0 0 0 +9.511 -12.209 -0.755 0 0 0 0 0 0 0 +9.526 -12.15 -0.752 0 0 0 0 0 0 0 +9.533 -12.081 -0.749 0 0 0 0 0 0 0 +9.544 -12.016 -0.747 0 0 0 0 0 0 0 +9.553 -11.95 -0.744 0 0 0 0 0 0 0 +9.56 -11.883 -0.741 0 0 0 0 0 0 0 +9.572 -11.822 -0.738 0 0 0 0 0 0 0 +9.571 -11.782 -0.736 0 0 0 0 0 0 0 +9.585 -11.724 -0.734 0 0 0 0 0 0 0 +9.596 -11.663 -0.732 0 0 0 0 0 0 0 +9.593 -11.585 -0.728 0 0 0 0 0 0 0 +9.489 -11.387 -0.714 0 0 0 0 0 0 0 +9.5 -11.328 -0.712 0 0 0 0 0 0 0 +9.498 -11.254 -0.708 0 0 0 0 0 0 0 +9.497 -11.216 -0.706 0 0 0 0 0 0 0 +9.511 -11.162 -0.705 0 0 0 0 0 0 0 +9.515 -11.096 -0.702 0 0 0 0 0 0 0 +9.527 -11.04 -0.699 0 0 0 0 0 0 0 +9.537 -10.982 -0.697 0 0 0 0 0 0 0 +9.543 -10.918 -0.694 0 0 0 0 0 0 0 +9.537 -10.878 -0.692 0 0 0 0 0 0 0 +9.553 -10.827 -0.691 0 0 0 0 0 0 0 +9.563 -10.77 -0.688 0 0 0 0 0 0 0 +9.567 -10.707 -0.686 0 0 0 0 0 0 0 +9.588 -10.662 -0.684 0 0 0 0 0 0 0 +9.594 -10.603 -0.682 0 0 0 0 0 0 0 +9.605 -10.547 -0.68 0 0 0 0 0 0 0 +9.598 -10.507 -0.678 0 0 0 0 0 0 0 +9.614 -10.458 -0.676 0 0 0 0 0 0 0 +9.621 -10.4 -0.674 0 0 0 0 0 0 0 +9.626 -10.341 -0.671 0 0 0 0 0 0 0 +9.643 -10.294 -0.67 0 0 0 0 0 0 0 +9.659 -10.247 -0.668 0 0 0 0 0 0 0 +9.669 -10.193 -0.666 0 0 0 0 0 0 0 +9.672 -10.163 -0.665 0 0 0 0 0 0 0 +9.674 -10.103 -0.663 0 0 0 0 0 0 0 +9.696 -10.062 -0.662 0 0 0 0 0 0 0 +9.699 -10.002 -0.659 0 0 0 0 0 0 0 +9.72 -9.961 -0.658 0 0 0 0 0 0 0 +9.32 -9.493 -0.62 0 0 0 0 0 0 0 +9.177 -9.289 -0.605 0 0 0 0 0 0 0 +9.127 -9.181 -0.598 0 0 0 0 0 0 0 +9.71 -9.674 -0.645 0 0 0 0 0 0 0 +9.729 -9.632 -0.644 0 0 0 0 0 0 0 +9.736 -9.579 -0.642 0 0 0 0 0 0 0 +9.751 -9.533 -0.641 0 0 0 0 0 0 0 +9.81 -9.472 -0.641 0 0 0 0 0 0 0 +9.811 -9.442 -0.64 0 0 0 0 0 0 0 +9.814 -9.387 -0.637 0 0 0 0 0 0 0 +9.822 -9.335 -0.636 0 0 0 0 0 0 0 +9.824 -9.278 -0.633 0 0 0 0 0 0 0 +9.835 -9.231 -0.632 0 0 0 0 0 0 0 +9.835 -9.173 -0.629 0 0 0 0 0 0 0 +9.843 -9.123 -0.628 0 0 0 0 0 0 0 +9.847 -9.098 -0.627 0 0 0 0 0 0 0 +9.851 -9.044 -0.625 0 0 0 0 0 0 0 +9.866 -9.001 -0.624 0 0 0 0 0 0 0 +9.876 -8.954 -0.622 0 0 0 0 0 0 0 +9.876 -8.898 -0.62 0 0 0 0 0 0 0 +9.895 -8.859 -0.619 0 0 0 0 0 0 0 +9.89 -8.826 -0.617 0 0 0 0 0 0 0 +9.307 -8.256 -0.567 0 0 0 0 0 0 0 +9.3 -8.197 -0.564 0 0 0 0 0 0 0 +9.351 -8.19 -0.566 0 0 0 0 0 0 0 +9.359 -8.145 -0.565 0 0 0 0 0 0 0 +9.383 -8.114 -0.565 0 0 0 0 0 0 0 +9.435 -8.108 -0.567 0 0 0 0 0 0 0 +9.496 -8.108 -0.57 0 0 0 0 0 0 0 +9.522 -8.105 -0.571 0 0 0 0 0 0 0 +9.543 -8.071 -0.571 0 0 0 0 0 0 0 +9.555 -8.03 -0.569 0 0 0 0 0 0 0 +9.574 -7.995 -0.569 0 0 0 0 0 0 0 +9.576 -7.945 -0.567 0 0 0 0 0 0 0 +9.591 -7.908 -0.566 0 0 0 0 0 0 0 +9.596 -7.861 -0.565 0 0 0 0 0 0 0 +9.571 -7.816 -0.562 0 0 0 0 0 0 0 +9.54 -7.74 -0.557 0 0 0 0 0 0 0 +9.53 -7.683 -0.555 0 0 0 0 0 0 0 +9.546 -7.647 -0.554 0 0 0 0 0 0 0 +9.547 -7.598 -0.552 0 0 0 0 0 0 0 +9.558 -7.558 -0.551 0 0 0 0 0 0 0 +9.574 -7.522 -0.551 0 0 0 0 0 0 0 +9.587 -7.508 -0.551 0 0 0 0 0 0 0 +9.562 -7.44 -0.547 0 0 0 0 0 0 0 +9.56 -7.391 -0.545 0 0 0 0 0 0 0 +9.537 -7.325 -0.541 0 0 0 0 0 0 0 +9.579 -7.31 -0.543 0 0 0 0 0 0 0 +9.613 -7.288 -0.544 0 0 0 0 0 0 0 +9.669 -7.283 -0.546 0 0 0 0 0 0 0 +9.721 -7.298 -0.549 0 0 0 0 0 0 0 +9.766 -7.284 -0.551 0 0 0 0 0 0 0 +9.821 -7.277 -0.554 0 0 0 0 0 0 0 +9.862 -7.259 -0.555 0 0 0 0 0 0 0 +9.915 -7.25 -0.557 0 0 0 0 0 0 0 +9.972 -7.244 -0.56 0 0 0 0 0 0 0 +10.019 -7.254 -0.563 0 0 0 0 0 0 0 +10.046 -7.226 -0.563 0 0 0 0 0 0 0 +10.09 -7.209 -0.565 0 0 0 0 0 0 0 +10.119 -7.182 -0.565 0 0 0 0 0 0 0 +10.205 -7.195 -0.57 0 0 0 0 0 0 0 +10.588 -7.414 -0.597 0 0 0 0 0 0 0 +10.603 -7.375 -0.596 0 0 0 0 0 0 0 +10.62 -7.337 -0.596 0 0 0 0 0 0 0 +10.646 -7.33 -0.597 0 0 0 0 0 0 0 +10.663 -7.293 -0.596 0 0 0 0 0 0 0 +10.679 -7.255 -0.596 0 0 0 0 0 0 0 +10.702 -7.221 -0.596 0 0 0 0 0 0 0 +10.726 -7.188 -0.596 0 0 0 0 0 0 0 +10.753 -7.158 -0.596 0 0 0 0 0 0 0 +10.774 -7.123 -0.596 0 0 0 0 0 0 0 +10.785 -7.106 -0.596 0 0 0 0 0 0 0 +10.809 -7.073 -0.596 0 0 0 0 0 0 0 +10.828 -7.037 -0.596 0 0 0 0 0 0 0 +10.852 -7.004 -0.596 0 0 0 0 0 0 0 +10.879 -6.973 -0.597 0 0 0 0 0 0 0 +10.896 -6.936 -0.596 0 0 0 0 0 0 0 +10.929 -6.909 -0.597 0 0 0 0 0 0 0 +10.937 -6.89 -0.597 0 0 0 0 0 0 0 +10.962 -6.857 -0.597 0 0 0 0 0 0 0 +10.971 -6.816 -0.596 0 0 0 0 0 0 0 +11.004 -6.788 -0.597 0 0 0 0 0 0 0 +11.019 -6.75 -0.597 0 0 0 0 0 0 0 +11.045 -6.718 -0.597 0 0 0 0 0 0 0 +11.082 -6.693 -0.598 0 0 0 0 0 0 0 +11.114 -6.689 -0.6 0 0 0 0 0 0 0 +11.166 -6.672 -0.602 0 0 0 0 0 0 0 +11.223 -6.658 -0.605 0 0 0 0 0 0 0 +11.26 -6.632 -0.606 0 0 0 0 0 0 0 +11.311 -6.615 -0.608 0 0 0 0 0 0 0 +11.36 -6.595 -0.61 0 0 0 0 0 0 0 +11.41 -6.576 -0.612 0 0 0 0 0 0 0 +11.457 -6.579 -0.615 0 0 0 0 0 0 0 +11.507 -6.56 -0.617 0 0 0 0 0 0 0 +11.55 -6.536 -0.618 0 0 0 0 0 0 0 +11.607 -6.521 -0.621 0 0 0 0 0 0 0 +11.661 -6.502 -0.623 0 0 0 0 0 0 0 +11.714 -6.484 -0.626 0 0 0 0 0 0 0 +11.757 -6.46 -0.627 0 0 0 0 0 0 0 +11.808 -6.463 -0.63 0 0 0 0 0 0 0 +11.847 -6.436 -0.631 0 0 0 0 0 0 0 +11.899 -6.416 -0.634 0 0 0 0 0 0 0 +11.935 -6.387 -0.635 0 0 0 0 0 0 0 +11.978 -6.362 -0.636 0 0 0 0 0 0 0 +12.039 -6.346 -0.639 0 0 0 0 0 0 0 +12.08 -6.319 -0.641 0 0 0 0 0 0 0 +12.114 -6.313 -0.642 0 0 0 0 0 0 0 +12.163 -6.289 -0.644 0 0 0 0 0 0 0 +8.813 -4.53 -0.41 0 0 0 0 0 0 0 +8.714 -4.445 -0.403 0 0 0 0 0 0 0 +12.385 -6.208 -0.654 0 0 0 0 0 0 0 +12.444 -6.189 -0.657 0 0 0 0 0 0 0 +12.488 -6.186 -0.659 0 0 0 0 0 0 0 +12.541 -6.163 -0.662 0 0 0 0 0 0 0 +12.604 -6.145 -0.665 0 0 0 0 0 0 0 +12.662 -6.124 -0.667 0 0 0 0 0 0 0 +12.719 -6.102 -0.67 0 0 0 0 0 0 0 +12.78 -6.082 -0.673 0 0 0 0 0 0 0 +12.826 -6.055 -0.675 0 0 0 0 0 0 0 +12.886 -6.058 -0.678 0 0 0 0 0 0 0 +12.942 -6.034 -0.681 0 0 0 0 0 0 0 +13.004 -6.014 -0.684 0 0 0 0 0 0 0 +13.075 -5.997 -0.687 0 0 0 0 0 0 0 +13.138 -5.976 -0.69 0 0 0 0 0 0 0 +13.202 -5.955 -0.693 0 0 0 0 0 0 0 +13.259 -5.93 -0.696 0 0 0 0 0 0 0 +13.308 -5.927 -0.699 0 0 0 0 0 0 0 +13.373 -5.905 -0.702 0 0 0 0 0 0 0 +13.428 -5.879 -0.704 0 0 0 0 0 0 0 +13.492 -5.857 -0.707 0 0 0 0 0 0 0 +13.554 -5.833 -0.71 0 0 0 0 0 0 0 +13.624 -5.813 -0.714 0 0 0 0 0 0 0 +13.686 -5.788 -0.717 0 0 0 0 0 0 0 +13.745 -5.788 -0.72 0 0 0 0 0 0 0 +13.808 -5.763 -0.723 0 0 0 0 0 0 0 +13.89 -5.746 -0.727 0 0 0 0 0 0 0 +13.953 -5.72 -0.73 0 0 0 0 0 0 0 +13.983 -5.682 -0.731 0 0 0 0 0 0 0 +14.159 -5.701 -0.742 0 0 0 0 0 0 0 +14.136 -5.64 -0.739 0 0 0 0 0 0 0 +14.113 -5.606 -0.737 0 0 0 0 0 0 0 +14.121 -5.558 -0.736 0 0 0 0 0 0 0 +14.049 -5.479 -0.73 0 0 0 0 0 0 0 +14.188 -5.481 -0.738 0 0 0 0 0 0 0 +14.11 -5.4 -0.732 0 0 0 0 0 0 0 +14.352 -5.441 -0.747 0 0 0 0 0 0 0 +14.472 -5.434 -0.754 0 0 0 0 0 0 0 +14.528 -5.429 -0.757 0 0 0 0 0 0 0 +14.539 -5.381 -0.756 0 0 0 0 0 0 0 +14.485 -5.309 -0.752 0 0 0 0 0 0 0 +14.728 -5.346 -0.767 0 0 0 0 0 0 0 +14.8 -5.319 -0.77 0 0 0 0 0 0 0 +14.878 -5.295 -0.774 0 0 0 0 0 0 0 +14.902 -5.251 -0.775 0 0 0 0 0 0 0 +14.635 -5.131 -0.757 0 0 0 0 0 0 0 +14.978 -5.198 -0.778 0 0 0 0 0 0 0 +14.892 -5.116 -0.771 0 0 0 0 0 0 0 +15.092 -5.131 -0.783 0 0 0 0 0 0 0 +14.879 -4.955 -0.767 0 0 0 0 0 0 0 +14.891 -4.907 -0.767 0 0 0 0 0 0 0 +14.931 -4.894 -0.769 0 0 0 0 0 0 0 +14.967 -4.854 -0.771 0 0 0 0 0 0 0 +15.009 -4.816 -0.772 0 0 0 0 0 0 0 +15.066 -4.782 -0.775 0 0 0 0 0 0 0 +15.064 -4.729 -0.774 0 0 0 0 0 0 0 +15.416 -4.786 -0.796 0 0 0 0 0 0 0 +15.633 -4.799 -0.809 0 0 0 0 0 0 0 +15.692 -4.79 -0.812 0 0 0 0 0 0 0 +15.703 -4.74 -0.812 0 0 0 0 0 0 0 +15.686 -4.681 -0.81 0 0 0 0 0 0 0 +15.645 -4.615 -0.806 0 0 0 0 0 0 0 +15.621 -4.555 -0.804 0 0 0 0 0 0 0 +15.572 -4.488 -0.8 0 0 0 0 0 0 0 +15.569 -4.434 -0.799 0 0 0 0 0 0 0 +15.606 -4.418 -0.801 0 0 0 0 0 0 0 +15.66 -4.38 -0.803 0 0 0 0 0 0 0 +15.718 -4.343 -0.806 0 0 0 0 0 0 0 +15.774 -4.305 -0.809 0 0 0 0 0 0 0 +15.797 -4.258 -0.809 0 0 0 0 0 0 0 +15.911 -4.235 -0.816 0 0 0 0 0 0 0 +15.934 -4.188 -0.816 0 0 0 0 0 0 0 +16.012 -4.181 -0.821 0 0 0 0 0 0 0 +16.068 -4.142 -0.824 0 0 0 0 0 0 0 +16.113 -4.099 -0.826 0 0 0 0 0 0 0 +16.163 -4.058 -0.828 0 0 0 0 0 0 0 +16.23 -4.021 -0.832 0 0 0 0 0 0 0 +16.299 -3.983 -0.835 0 0 0 0 0 0 0 +16.348 -3.941 -0.838 0 0 0 0 0 0 0 +16.42 -3.931 -0.842 0 0 0 0 0 0 0 +16.46 -3.886 -0.844 0 0 0 0 0 0 0 +16.526 -3.846 -0.847 0 0 0 0 0 0 0 +16.581 -3.804 -0.85 0 0 0 0 0 0 0 +16.642 -3.763 -0.853 0 0 0 0 0 0 0 +16.714 -3.724 -0.857 0 0 0 0 0 0 0 +16.761 -3.679 -0.859 0 0 0 0 0 0 0 +16.835 -3.64 -0.863 0 0 0 0 0 0 0 +16.899 -3.626 -0.867 0 0 0 0 0 0 0 +16.961 -3.584 -0.87 0 0 0 0 0 0 0 +17.013 -3.539 -0.872 0 0 0 0 0 0 0 +17.333 -3.548 -0.892 0 0 0 0 0 0 0 +7.565 -1.539 -0.275 0 0 0 0 0 0 0 +7.476 -1.496 -0.269 0 0 0 0 0 0 0 +7.512 -1.479 -0.271 0 0 0 0 0 0 0 +7.457 -1.456 -0.267 0 0 0 0 0 0 0 +7.483 -1.437 -0.269 0 0 0 0 0 0 0 +7.484 -1.413 -0.269 0 0 0 0 0 0 0 +7.443 -1.381 -0.266 0 0 0 0 0 0 0 +7.453 -1.359 -0.266 0 0 0 0 0 0 0 +7.455 -1.335 -0.266 0 0 0 0 0 0 0 +7.463 -1.324 -0.266 0 0 0 0 0 0 0 +7.466 -1.3 -0.266 0 0 0 0 0 0 0 +7.474 -1.278 -0.266 0 0 0 0 0 0 0 +7.483 -1.255 -0.267 0 0 0 0 0 0 0 +7.454 -1.226 -0.265 0 0 0 0 0 0 0 +7.493 -1.208 -0.267 0 0 0 0 0 0 0 +13.621 -2.087 -0.65 0 0 0 0 0 0 0 +13.644 -2.069 -0.651 0 0 0 0 0 0 0 +13.688 -2.032 -0.653 0 0 0 0 0 0 0 +13.716 -1.992 -0.655 0 0 0 0 0 0 0 +13.792 -1.958 -0.659 0 0 0 0 0 0 0 +19.116 -2.643 -0.991 0 0 0 0 0 0 0 +19.205 -2.594 -0.996 0 0 0 0 0 0 0 +19.243 -2.537 -0.998 0 0 0 0 0 0 0 +19.342 -2.519 -1.004 0 0 0 0 0 0 0 +19.249 -2.446 -0.998 0 0 0 0 0 0 0 +19.284 -2.389 -0.999 0 0 0 0 0 0 0 +19.363 -2.337 -1.004 0 0 0 0 0 0 0 +19.422 -2.282 -1.007 0 0 0 0 0 0 0 +19.476 -2.226 -1.01 0 0 0 0 0 0 0 +19.527 -2.17 -1.013 0 0 0 0 0 0 0 +19.568 -2.143 -1.015 0 0 0 0 0 0 0 +19.632 -2.088 -1.019 0 0 0 0 0 0 0 +19.674 -2.03 -1.021 0 0 0 0 0 0 0 +19.718 -1.971 -1.023 0 0 0 0 0 0 0 +19.776 -1.914 -1.026 0 0 0 0 0 0 0 +19.82 -1.856 -1.029 0 0 0 0 0 0 0 +19.875 -1.798 -1.032 0 0 0 0 0 0 0 +19.934 -1.772 -1.035 0 0 0 0 0 0 0 +19.975 -1.712 -1.038 0 0 0 0 0 0 0 +20.034 -1.654 -1.041 0 0 0 0 0 0 0 +20.073 -1.593 -1.043 0 0 0 0 0 0 0 +20.136 -1.535 -1.047 0 0 0 0 0 0 0 +20.196 -1.475 -1.05 0 0 0 0 0 0 0 +20.246 -1.415 -1.053 0 0 0 0 0 0 0 +20.721 -1.415 -1.082 0 0 0 0 0 0 0 +20.787 -1.354 -1.086 0 0 0 0 0 0 0 +20.667 -1.281 -1.078 0 0 0 0 0 0 0 +20.779 -1.222 -1.085 0 0 0 0 0 0 0 +20.816 -1.159 -1.087 0 0 0 0 0 0 0 +20.844 -1.094 -1.088 0 0 0 0 0 0 0 +20.913 -1.032 -1.093 0 0 0 0 0 0 0 +20.909 -0.999 -1.092 0 0 0 0 0 0 0 +20.874 -0.932 -1.09 0 0 0 0 0 0 0 +20.805 -0.863 -1.085 0 0 0 0 0 0 0 +20.847 -0.799 -1.088 0 0 0 0 0 0 0 +20.896 -0.735 -1.091 0 0 0 0 0 0 0 +20.958 -0.672 -1.094 0 0 0 0 0 0 0 +21.018 -0.607 -1.098 0 0 0 0 0 0 0 +21.074 -0.576 -1.101 0 0 0 0 0 0 0 +21.126 -0.511 -1.105 0 0 0 0 0 0 0 +21.181 -0.445 -1.108 0 0 0 0 0 0 0 +21.258 -0.38 -1.113 0 0 0 0 0 0 0 +21.313 -0.314 -1.116 0 0 0 0 0 0 0 +21.364 -0.248 -1.119 0 0 0 0 0 0 0 +21.417 -0.181 -1.122 0 0 0 0 0 0 0 +21.473 -0.148 -1.126 0 0 0 0 0 0 0 +21.547 -0.08 -1.13 0 0 0 0 0 0 0 +21.627 -0.013 -1.135 0 0 0 0 0 0 0 +21.843 0.009 -1.301 0 0 0 0 0 0 0 +21.907 0.078 -1.305 0 0 0 0 0 0 0 +21.845 0.146 -1.301 0 0 0 0 0 0 0 +13.454 0.185 -0.724 0 0 0 0 0 0 0 +13.559 0.228 -0.731 0 0 0 0 0 0 0 +13.614 0.251 -0.735 0 0 0 0 0 0 0 +13.661 0.294 -0.738 0 0 0 0 0 0 0 +13.71 0.338 -0.741 0 0 0 0 0 0 0 +13.769 0.383 -0.746 0 0 0 0 0 0 0 +13.758 0.426 -0.745 0 0 0 0 0 0 0 +13.728 0.468 -0.743 0 0 0 0 0 0 0 +13.625 0.508 -0.736 0 0 0 0 0 0 0 +24.772 0.941 -1.504 0 0 0 0 0 0 0 +24.795 1.02 -1.505 0 0 0 0 0 0 0 +24.814 1.099 -1.507 0 0 0 0 0 0 0 +24.862 1.179 -1.51 0 0 0 0 0 0 0 +24.874 1.258 -1.511 0 0 0 0 0 0 0 +24.892 1.337 -1.513 0 0 0 0 0 0 0 +24.967 1.42 -1.518 0 0 0 0 0 0 0 +24.983 1.46 -1.52 0 0 0 0 0 0 0 +25.022 1.541 -1.523 0 0 0 0 0 0 0 +14.444 0.946 -0.794 0 0 0 0 0 0 0 +14.56 1 -0.802 0 0 0 0 0 0 0 +25.19 1.79 -1.535 0 0 0 0 0 0 0 +25.232 1.873 -1.539 0 0 0 0 0 0 0 +25.198 1.95 -1.537 0 0 0 0 0 0 0 +25.324 1.999 -1.546 0 0 0 0 0 0 0 +25.355 2.082 -1.548 0 0 0 0 0 0 0 +15.045 1.341 -0.837 0 0 0 0 0 0 0 +15.559 1.485 -0.873 0 0 0 0 0 0 0 +15.531 1.531 -0.872 0 0 0 0 0 0 0 +15.564 1.559 -0.874 0 0 0 0 0 0 0 +15.38 1.59 -0.862 0 0 0 0 0 0 0 +15.732 1.676 -0.886 0 0 0 0 0 0 0 +15.664 1.718 -0.882 0 0 0 0 0 0 0 +25.524 2.865 -1.565 0 0 0 0 0 0 0 +25.58 2.952 -1.57 0 0 0 0 0 0 0 +25.567 3.032 -1.569 0 0 0 0 0 0 0 +25.588 3.075 -1.571 0 0 0 0 0 0 0 +25.536 3.151 -1.568 0 0 0 0 0 0 0 +25.158 3.185 -1.543 0 0 0 0 0 0 0 +25.128 3.261 -1.541 0 0 0 0 0 0 0 +16.319 2.179 -0.931 0 0 0 0 0 0 0 +25.246 3.438 -1.551 0 0 0 0 0 0 0 +25.379 3.537 -1.561 0 0 0 0 0 0 0 +25.553 3.602 -1.573 0 0 0 0 0 0 0 +25.684 3.702 -1.583 0 0 0 0 0 0 0 +20.898 3.085 -1.251 0 0 0 0 0 0 0 +16.867 2.549 -0.972 0 0 0 0 0 0 0 +25.778 3.964 -1.592 0 0 0 0 0 0 0 +25.927 4.07 -1.604 0 0 0 0 0 0 0 +26.07 4.177 -1.614 0 0 0 0 0 0 0 +26.084 4.263 -1.616 0 0 0 0 0 0 0 +26.05 4.299 -1.614 0 0 0 0 0 0 0 +24.863 4.185 -1.533 0 0 0 0 0 0 0 +25.841 4.516 -1.603 0 0 0 0 0 0 0 +17.877 3.19 -1.047 0 0 0 0 0 0 0 +25.889 4.692 -1.608 0 0 0 0 0 0 0 +25.87 4.772 -1.608 0 0 0 0 0 0 0 +25.851 4.811 -1.607 0 0 0 0 0 0 0 +25.826 4.89 -1.606 0 0 0 0 0 0 0 +25.795 4.968 -1.605 0 0 0 0 0 0 0 +18.595 3.65 -1.102 0 0 0 0 0 0 0 +25.782 5.134 -1.607 0 0 0 0 0 0 0 +25.784 5.219 -1.608 0 0 0 0 0 0 0 +25.746 5.295 -1.606 0 0 0 0 0 0 0 +25.735 5.335 -1.606 0 0 0 0 0 0 0 +23.445 4.94 -1.446 0 0 0 0 0 0 0 +25.721 5.501 -1.608 0 0 0 0 0 0 0 +25.694 5.58 -1.607 0 0 0 0 0 0 0 +18.844 4.223 -1.127 0 0 0 0 0 0 0 +25.654 5.825 -1.608 0 0 0 0 0 0 0 +25.625 5.861 -1.606 0 0 0 0 0 0 0 +25.599 5.939 -1.606 0 0 0 0 0 0 0 +25.566 6.016 -1.605 0 0 0 0 0 0 0 +21.853 5.219 -1.344 0 0 0 0 0 0 0 +20.265 4.976 -1.234 0 0 0 0 0 0 0 +25.452 6.328 -1.602 0 0 0 0 0 0 0 +25.434 6.366 -1.602 0 0 0 0 0 0 0 +25.41 6.445 -1.602 0 0 0 0 0 0 0 +25.369 6.519 -1.6 0 0 0 0 0 0 0 +25.35 6.6 -1.6 0 0 0 0 0 0 0 +25.315 6.676 -1.599 0 0 0 0 0 0 0 +25.316 6.761 -1.601 0 0 0 0 0 0 0 +25.254 6.829 -1.598 0 0 0 0 0 0 0 +16.155 4.46 -0.951 0 0 0 0 0 0 0 +16.108 4.502 -0.949 0 0 0 0 0 0 0 +16.071 4.546 -0.947 0 0 0 0 0 0 0 +16.072 4.601 -0.948 0 0 0 0 0 0 0 +16.019 4.64 -0.945 0 0 0 0 0 0 0 +15.991 4.687 -0.944 0 0 0 0 0 0 0 +15.964 4.706 -0.943 0 0 0 0 0 0 0 +15.955 4.758 -0.943 0 0 0 0 0 0 0 +15.925 4.803 -0.942 0 0 0 0 0 0 0 +15.896 4.849 -0.941 0 0 0 0 0 0 0 +15.875 4.898 -0.941 0 0 0 0 0 0 0 +15.858 4.947 -0.941 0 0 0 0 0 0 0 +15.768 4.973 -0.935 0 0 0 0 0 0 0 +15.741 4.992 -0.934 0 0 0 0 0 0 0 +15.693 5.031 -0.932 0 0 0 0 0 0 0 +15.671 5.079 -0.931 0 0 0 0 0 0 0 +15.655 5.128 -0.931 0 0 0 0 0 0 0 +15.639 5.177 -0.931 0 0 0 0 0 0 0 +15.625 5.227 -0.931 0 0 0 0 0 0 0 +15.606 5.275 -0.931 0 0 0 0 0 0 0 +15.596 5.299 -0.931 0 0 0 0 0 0 0 +15.581 5.349 -0.931 0 0 0 0 0 0 0 +15.555 5.394 -0.931 0 0 0 0 0 0 0 +15.612 5.469 -0.936 0 0 0 0 0 0 0 +15.579 5.512 -0.935 0 0 0 0 0 0 0 +15.566 5.563 -0.935 0 0 0 0 0 0 0 +15.544 5.61 -0.935 0 0 0 0 0 0 0 +15.539 5.636 -0.935 0 0 0 0 0 0 0 +15.521 5.685 -0.935 0 0 0 0 0 0 0 +15.5 5.732 -0.935 0 0 0 0 0 0 0 +15.452 5.77 -0.933 0 0 0 0 0 0 0 +15.484 5.837 -0.936 0 0 0 0 0 0 0 +15.46 5.884 -0.936 0 0 0 0 0 0 0 +15.464 5.941 -0.938 0 0 0 0 0 0 0 +15.467 5.97 -0.939 0 0 0 0 0 0 0 +15.499 6.038 -0.942 0 0 0 0 0 0 0 +15.981 6.283 -0.979 0 0 0 0 0 0 0 +16.453 6.528 -1.016 0 0 0 0 0 0 0 +17.5 7.005 -1.095 0 0 0 0 0 0 0 +18.415 7.437 -1.164 0 0 0 0 0 0 0 +24.254 9.874 -1.6 0 0 0 0 0 0 0 +24.233 9.91 -1.599 0 0 0 0 0 0 0 +24.178 9.976 -1.597 0 0 0 0 0 0 0 +24.15 10.054 -1.598 0 0 0 0 0 0 0 +24.113 10.127 -1.597 0 0 0 0 0 0 0 +24.108 10.215 -1.599 0 0 0 0 0 0 0 +24.089 10.296 -1.6 0 0 0 0 0 0 0 +24.06 10.373 -1.601 0 0 0 0 0 0 0 +24.042 10.455 -1.602 0 0 0 0 0 0 0 +24.06 10.508 -1.604 0 0 0 0 0 0 0 +24.031 10.585 -1.605 0 0 0 0 0 0 0 +24.016 10.668 -1.606 0 0 0 0 0 0 0 +23.993 10.749 -1.607 0 0 0 0 0 0 0 +23.981 10.834 -1.608 0 0 0 0 0 0 0 +23.95 10.911 -1.609 0 0 0 0 0 0 0 +23.917 10.941 -1.607 0 0 0 0 0 0 0 +23.855 11.004 -1.605 0 0 0 0 0 0 0 +23.828 11.082 -1.606 0 0 0 0 0 0 0 +23.825 11.172 -1.608 0 0 0 0 0 0 0 +23.823 11.262 -1.611 0 0 0 0 0 0 0 +23.836 11.36 -1.615 0 0 0 0 0 0 0 +23.856 11.461 -1.619 0 0 0 0 0 0 0 +23.886 11.522 -1.623 0 0 0 0 0 0 0 +23.871 11.608 -1.624 0 0 0 0 0 0 0 +23.812 11.671 -1.622 0 0 0 0 0 0 0 +23.789 11.753 -1.623 0 0 0 0 0 0 0 +23.795 11.849 -1.627 0 0 0 0 0 0 0 +23.774 11.932 -1.628 0 0 0 0 0 0 0 +23.74 12.008 -1.628 0 0 0 0 0 0 0 +23.749 12.06 -1.63 0 0 0 0 0 0 0 +23.74 12.149 -1.633 0 0 0 0 0 0 0 +23.717 12.232 -1.634 0 0 0 0 0 0 0 +23.668 12.301 -1.633 0 0 0 0 0 0 0 +23.647 12.384 -1.634 0 0 0 0 0 0 0 +23.622 12.466 -1.636 0 0 0 0 0 0 0 +23.585 12.541 -1.636 0 0 0 0 0 0 0 +23.559 12.622 -1.637 0 0 0 0 0 0 0 +23.559 12.67 -1.638 0 0 0 0 0 0 0 +23.501 12.734 -1.637 0 0 0 0 0 0 0 +23.472 12.814 -1.638 0 0 0 0 0 0 0 +23.433 12.888 -1.638 0 0 0 0 0 0 0 +23.419 12.976 -1.64 0 0 0 0 0 0 0 +23.378 13.05 -1.64 0 0 0 0 0 0 0 +23.344 13.127 -1.641 0 0 0 0 0 0 0 +23.337 13.172 -1.642 0 0 0 0 0 0 0 +23.301 13.248 -1.642 0 0 0 0 0 0 0 +23.267 13.326 -1.643 0 0 0 0 0 0 0 +23.231 13.402 -1.643 0 0 0 0 0 0 0 +23.207 13.486 -1.645 0 0 0 0 0 0 0 +23.165 13.559 -1.645 0 0 0 0 0 0 0 +23.149 13.598 -1.645 0 0 0 0 0 0 0 +23.116 13.677 -1.646 0 0 0 0 0 0 0 +23.08 13.754 -1.646 0 0 0 0 0 0 0 +23.042 13.829 -1.647 0 0 0 0 0 0 0 +23.003 13.904 -1.647 0 0 0 0 0 0 0 +22.973 13.985 -1.648 0 0 0 0 0 0 0 +22.931 14.058 -1.648 0 0 0 0 0 0 0 +22.917 14.099 -1.649 0 0 0 0 0 0 0 +22.885 14.179 -1.65 0 0 0 0 0 0 0 +22.852 14.258 -1.651 0 0 0 0 0 0 0 +22.81 14.332 -1.651 0 0 0 0 0 0 0 +22.779 14.412 -1.652 0 0 0 0 0 0 0 +22.728 14.48 -1.652 0 0 0 0 0 0 0 +22.696 14.56 -1.653 0 0 0 0 0 0 0 +22.678 14.599 -1.654 0 0 0 0 0 0 0 +13.29 8.687 -0.89 0 0 0 0 0 0 0 +22.571 14.833 -1.656 0 0 0 0 0 0 0 +22.548 14.919 -1.658 0 0 0 0 0 0 0 +22.524 15.005 -1.66 0 0 0 0 0 0 0 +22.475 15.075 -1.66 0 0 0 0 0 0 0 +22.483 15.131 -1.662 0 0 0 0 0 0 0 +22.436 15.202 -1.662 0 0 0 0 0 0 0 +22.437 15.306 -1.667 0 0 0 0 0 0 0 +14.83 10.195 -1.036 0 0 0 0 0 0 0 +14.794 10.24 -1.036 0 0 0 0 0 0 0 +15.56 10.84 -1.103 0 0 0 0 0 0 0 +15.935 11.175 -1.137 0 0 0 0 0 0 0 +15.105 10.631 -1.069 0 0 0 0 0 0 0 +15.888 11.255 -1.138 0 0 0 0 0 0 0 +12.952 9.242 -0.893 0 0 0 0 0 0 0 +15.392 11.05 -1.102 0 0 0 0 0 0 0 +15.301 11.057 -1.097 0 0 0 0 0 0 0 +15.513 11.285 -1.118 0 0 0 0 0 0 0 +15.528 11.37 -1.122 0 0 0 0 0 0 0 +15.473 11.404 -1.12 0 0 0 0 0 0 0 +12.347 9.137 -0.855 0 0 0 0 0 0 0 +12.432 9.26 -0.864 0 0 0 0 0 0 0 +13.06 9.79 -0.921 0 0 0 0 0 0 0 +13.055 9.85 -0.923 0 0 0 0 0 0 0 +14.562 11.056 -1.056 0 0 0 0 0 0 0 +14.489 11.073 -1.053 0 0 0 0 0 0 0 +14.706 11.311 -1.074 0 0 0 0 0 0 0 +14.647 11.303 -1.071 0 0 0 0 0 0 0 +14.239 11.06 -1.038 0 0 0 0 0 0 0 +12.165 9.515 -0.86 0 0 0 0 0 0 0 +14.455 11.374 -1.063 0 0 0 0 0 0 0 +14.424 11.423 -1.064 0 0 0 0 0 0 0 +14.327 11.42 -1.058 0 0 0 0 0 0 0 +14.252 11.396 -1.053 0 0 0 0 0 0 0 +14.77 11.885 -1.102 0 0 0 0 0 0 0 +12.086 9.794 -0.868 0 0 0 0 0 0 0 +6.744 5.515 -0.397 0 0 0 0 0 0 0 +6.694 5.51 -0.394 0 0 0 0 0 0 0 +6.666 5.522 -0.393 0 0 0 0 0 0 0 +6.666 5.557 -0.395 0 0 0 0 0 0 0 +6.695 5.599 -0.398 0 0 0 0 0 0 0 +11.795 9.902 -0.857 0 0 0 0 0 0 0 +11.775 9.948 -0.858 0 0 0 0 0 0 0 +11.73 9.973 -0.857 0 0 0 0 0 0 0 +11.537 9.873 -0.843 0 0 0 0 0 0 0 +11.653 10.035 -0.856 0 0 0 0 0 0 0 +11.794 10.22 -0.872 0 0 0 0 0 0 0 +11.877 10.325 -0.881 0 0 0 0 0 0 0 +13.394 11.713 -1.022 0 0 0 0 0 0 0 +13.88 12.214 -1.07 0 0 0 0 0 0 0 +11.073 9.813 -0.816 0 0 0 0 0 0 0 +13.671 12.183 -1.058 0 0 0 0 0 0 0 +13.82 12.393 -1.075 0 0 0 0 0 0 0 +13.748 12.407 -1.072 0 0 0 0 0 0 0 +13.767 12.503 -1.077 0 0 0 0 0 0 0 +13.927 12.688 -1.094 0 0 0 0 0 0 0 +13.805 12.656 -1.086 0 0 0 0 0 0 0 +13.78 12.713 -1.088 0 0 0 0 0 0 0 +13.77 12.785 -1.091 0 0 0 0 0 0 0 +13.618 12.723 -1.08 0 0 0 0 0 0 0 +13.715 12.894 -1.093 0 0 0 0 0 0 0 +13.43 12.707 -1.07 0 0 0 0 0 0 0 +13.035 12.373 -1.034 0 0 0 0 0 0 0 +12.765 12.194 -1.012 0 0 0 0 0 0 0 +12.826 12.329 -1.022 0 0 0 0 0 0 0 +12.89 12.469 -1.032 0 0 0 0 0 0 0 +13.066 12.718 -1.052 0 0 0 0 0 0 0 +12.923 12.659 -1.043 0 0 0 0 0 0 0 +13.162 12.973 -1.069 0 0 0 0 0 0 0 +12.988 12.843 -1.055 0 0 0 0 0 0 0 +12.973 12.909 -1.057 0 0 0 0 0 0 0 +12.909 12.925 -1.055 0 0 0 0 0 0 0 +12.9 12.998 -1.058 0 0 0 0 0 0 0 +12.881 13.06 -1.06 0 0 0 0 0 0 0 +13.34 13.61 -1.109 0 0 0 0 0 0 0 +12.49 12.825 -1.03 0 0 0 0 0 0 0 +12.496 12.872 -1.032 0 0 0 0 0 0 0 +12.506 12.963 -1.037 0 0 0 0 0 0 0 +12.413 12.948 -1.032 0 0 0 0 0 0 0 +12.205 12.812 -1.015 0 0 0 0 0 0 0 +12.106 12.788 -1.009 0 0 0 0 0 0 0 +11.827 12.573 -0.986 0 0 0 0 0 0 0 +12.328 13.187 -1.04 0 0 0 0 0 0 0 +11.798 12.661 -0.989 0 0 0 0 0 0 0 +11.72 12.657 -0.985 0 0 0 0 0 0 0 +11.581 12.587 -0.975 0 0 0 0 0 0 0 +11.685 12.779 -0.989 0 0 0 0 0 0 0 +11.653 12.825 -0.99 0 0 0 0 0 0 0 +12.506 13.848 -1.082 0 0 0 0 0 0 0 +12.481 13.908 -1.084 0 0 0 0 0 0 0 +12.431 13.896 -1.081 0 0 0 0 0 0 0 +11.549 12.995 -0.994 0 0 0 0 0 0 0 +12.126 13.729 -1.058 0 0 0 0 0 0 0 +11.59 13.207 -1.007 0 0 0 0 0 0 0 +12.165 13.947 -1.071 0 0 0 0 0 0 0 +12.287 14.177 -1.089 0 0 0 0 0 0 0 +12.246 14.22 -1.089 0 0 0 0 0 0 0 +12.065 14.055 -1.072 0 0 0 0 0 0 0 +12.171 14.268 -1.088 0 0 0 0 0 0 0 +12.064 14.234 -1.082 0 0 0 0 0 0 0 +12.129 14.401 -1.093 0 0 0 0 0 0 0 +12.225 14.607 -1.108 0 0 0 0 0 0 0 +12.514 15.047 -1.144 0 0 0 0 0 0 0 +12.575 15.217 -1.156 0 0 0 0 0 0 0 +12.15 14.752 -1.113 0 0 0 0 0 0 0 +13.038 15.928 -1.214 0 0 0 0 0 0 0 +12.074 14.848 -1.115 0 0 0 0 0 0 0 +12.187 15.083 -1.132 0 0 0 0 0 0 0 +12.142 15.124 -1.132 0 0 0 0 0 0 0 +12.042 15.097 -1.127 0 0 0 0 0 0 0 +12.127 15.302 -1.141 0 0 0 0 0 0 0 +12.114 15.335 -1.142 0 0 0 0 0 0 0 +12.93 16.47 -1.239 0 0 0 0 0 0 0 +12.036 15.434 -1.145 0 0 0 0 0 0 0 +12.897 16.643 -1.247 0 0 0 0 0 0 0 +12.784 16.604 -1.24 0 0 0 0 0 0 0 +12.908 16.874 -1.26 0 0 0 0 0 0 0 +14.284 18.79 -1.422 0 0 0 0 0 0 0 +14.298 18.87 -1.427 0 0 0 0 0 0 0 +14.313 19.013 -1.435 0 0 0 0 0 0 0 +14.241 19.042 -1.434 0 0 0 0 0 0 0 +12.953 17.437 -1.292 0 0 0 0 0 0 0 +12.889 17.466 -1.291 0 0 0 0 0 0 0 +12.838 17.512 -1.292 0 0 0 0 0 0 0 +12.769 17.533 -1.29 0 0 0 0 0 0 0 +12.701 17.555 -1.289 0 0 0 0 0 0 0 +12.667 17.567 -1.288 0 0 0 0 0 0 0 +12.594 17.58 -1.286 0 0 0 0 0 0 0 +12.529 17.607 -1.285 0 0 0 0 0 0 0 +12.479 17.654 -1.285 0 0 0 0 0 0 0 +12.431 17.703 -1.286 0 0 0 0 0 0 0 +12.349 17.705 -1.283 0 0 0 0 0 0 0 +12.289 17.737 -1.282 0 0 0 0 0 0 0 +12.285 17.79 -1.285 0 0 0 0 0 0 0 +12.421 18.108 -1.309 0 0 0 0 0 0 0 +12.556 18.429 -1.332 0 0 0 0 0 0 0 +12.722 18.799 -1.36 0 0 0 0 0 0 0 +14.397 21.412 -1.573 0 0 0 0 0 0 0 +14.331 21.458 -1.573 0 0 0 0 0 0 0 +14.346 21.554 -1.579 0 0 0 0 0 0 0 +14.241 21.542 -1.575 0 0 0 0 0 0 0 +14.273 21.739 -1.587 0 0 0 0 0 0 0 +14.235 21.83 -1.591 0 0 0 0 0 0 0 +14.193 21.917 -1.594 0 0 0 0 0 0 0 +14.132 21.973 -1.595 0 0 0 0 0 0 0 +14.096 22.069 -1.6 0 0 0 0 0 0 0 +14.077 22.115 -1.602 0 0 0 0 0 0 0 +14.029 22.194 -1.604 0 0 0 0 0 0 0 +13.95 22.223 -1.603 0 0 0 0 0 0 0 +13.855 22.226 -1.6 0 0 0 0 0 0 0 +13.86 22.39 -1.61 0 0 0 0 0 0 0 +13.758 22.382 -1.606 0 0 0 0 0 0 0 +13.725 22.487 -1.61 0 0 0 0 0 0 0 +13.685 22.581 -1.615 0 0 0 0 0 0 0 +13.654 22.609 -1.615 0 0 0 0 0 0 0 +13.588 22.661 -1.616 0 0 0 0 0 0 0 +13.517 22.703 -1.616 0 0 0 0 0 0 0 +13.46 22.77 -1.618 0 0 0 0 0 0 0 +13.397 22.827 -1.619 0 0 0 0 0 0 0 +13.337 22.89 -1.621 0 0 0 0 0 0 0 +13.273 22.945 -1.622 0 0 0 0 0 0 0 +13.251 22.991 -1.624 0 0 0 0 0 0 0 +13.141 22.966 -1.618 0 0 0 0 0 0 0 +13.112 23.082 -1.624 0 0 0 0 0 0 0 +13.06 23.16 -1.627 0 0 0 0 0 0 0 +12.902 23.049 -1.615 0 0 0 0 0 0 0 +12.834 23.098 -1.616 0 0 0 0 0 0 0 +12.78 23.172 -1.619 0 0 0 0 0 0 0 +12.635 23.08 -1.608 0 0 0 0 0 0 0 +12.588 23.081 -1.607 0 0 0 0 0 0 0 +12.514 23.117 -1.606 0 0 0 0 0 0 0 +12.451 23.174 -1.608 0 0 0 0 0 0 0 +12.389 23.234 -1.609 0 0 0 0 0 0 0 +12.347 23.331 -1.614 0 0 0 0 0 0 0 +12.246 23.316 -1.61 0 0 0 0 0 0 0 +12.261 23.435 -1.618 0 0 0 0 0 0 0 +12.25 23.593 -1.627 0 0 0 0 0 0 0 +12.213 23.704 -1.633 0 0 0 0 0 0 0 +12.159 23.782 -1.636 0 0 0 0 0 0 0 +12.11 23.871 -1.64 0 0 0 0 0 0 0 +12.037 23.913 -1.64 0 0 0 0 0 0 0 +11.968 23.963 -1.641 0 0 0 0 0 0 0 +11.898 24.011 -1.642 0 0 0 0 0 0 0 +11.868 24.046 -1.643 0 0 0 0 0 0 0 +11.806 24.11 -1.645 0 0 0 0 0 0 0 +11.759 24.206 -1.649 0 0 0 0 0 0 0 +11.712 24.304 -1.654 0 0 0 0 0 0 0 +11.661 24.393 -1.658 0 0 0 0 0 0 0 +11.617 24.5 -1.663 0 0 0 0 0 0 0 +11.571 24.601 -1.668 0 0 0 0 0 0 0 +11.563 24.684 -1.673 0 0 0 0 0 0 0 +11.492 24.735 -1.674 0 0 0 0 0 0 0 +11.426 24.796 -1.676 0 0 0 0 0 0 0 +11.358 24.854 -1.678 0 0 0 0 0 0 0 +11.293 24.918 -1.68 0 0 0 0 0 0 0 +11.23 24.988 -1.683 0 0 0 0 0 0 0 +11.164 25.051 -1.685 0 0 0 0 0 0 0 +11.129 25.078 -1.686 0 0 0 0 0 0 0 +11.067 25.151 -1.688 0 0 0 0 0 0 0 +10.995 25.202 -1.69 0 0 0 0 0 0 0 +10.938 25.287 -1.694 0 0 0 0 0 0 0 +10.877 25.366 -1.697 0 0 0 0 0 0 0 +10.808 25.424 -1.699 0 0 0 0 0 0 0 +10.745 25.498 -1.702 0 0 0 0 0 0 0 +10.718 25.546 -1.704 0 0 0 0 0 0 0 +10.646 25.6 -1.705 0 0 0 0 0 0 0 +10.567 25.637 -1.706 0 0 0 0 0 0 0 +10.497 25.696 -1.708 0 0 0 0 0 0 0 +10.42 25.738 -1.708 0 0 0 0 0 0 0 +10.349 25.794 -1.71 0 0 0 0 0 0 0 +10.274 25.842 -1.711 0 0 0 0 0 0 0 +10.243 25.882 -1.713 0 0 0 0 0 0 0 +10.175 25.949 -1.716 0 0 0 0 0 0 0 +10.107 26.015 -1.718 0 0 0 0 0 0 0 +10.036 26.076 -1.72 0 0 0 0 0 0 0 +9.976 26.163 -1.724 0 0 0 0 0 0 0 +9.907 26.23 -1.727 0 0 0 0 0 0 0 +9.842 26.308 -1.73 0 0 0 0 0 0 0 +9.771 26.37 -1.733 0 0 0 0 0 0 0 +9.753 26.449 -1.737 0 0 0 0 0 0 0 +9.678 26.502 -1.739 0 0 0 0 0 0 0 +9.632 26.634 -1.746 0 0 0 0 0 0 0 +9.572 26.731 -1.751 0 0 0 0 0 0 0 +9.519 26.848 -1.758 0 0 0 0 0 0 0 +9.428 26.859 -1.756 0 0 0 0 0 0 0 +9.355 26.922 -1.759 0 0 0 0 0 0 0 +9.336 27.003 -1.764 0 0 0 0 0 0 0 +9.254 27.041 -1.764 0 0 0 0 0 0 0 +9.187 27.123 -1.768 0 0 0 0 0 0 0 +9.115 27.19 -1.771 0 0 0 0 0 0 0 +9.031 27.222 -1.771 0 0 0 0 0 0 0 +8.961 27.3 -1.775 0 0 0 0 0 0 0 +8.884 27.354 -1.777 0 0 0 0 0 0 0 +8.839 27.362 -1.776 0 0 0 0 0 0 0 +8.764 27.422 -1.779 0 0 0 0 0 0 0 +8.705 27.537 -1.785 0 0 0 0 0 0 0 +8.632 27.608 -1.788 0 0 0 0 0 0 0 +8.637 27.929 -1.809 0 0 0 0 0 0 0 +8.688 28.41 -1.842 0 0 0 0 0 0 0 +8.731 28.872 -1.873 0 0 0 0 0 0 0 +8.827 29.354 -1.907 0 0 0 0 0 0 0 +8.811 29.638 -1.925 0 0 0 0 0 0 0 +8.717 29.663 -1.925 0 0 0 0 0 0 0 +8.584 29.553 -1.915 0 0 0 0 0 0 0 +8.481 29.545 -1.913 0 0 0 0 0 0 0 +8.395 29.595 -1.914 0 0 0 0 0 0 0 +8.314 29.667 -1.918 0 0 0 0 0 0 0 +8.271 29.689 -1.918 0 0 0 0 0 0 0 +8.174 29.704 -1.918 0 0 0 0 0 0 0 +8.079 29.724 -1.917 0 0 0 0 0 0 0 +7.985 29.747 -1.917 0 0 0 0 0 0 0 +7.881 29.731 -1.914 0 0 0 0 0 0 0 +7.773 29.702 -1.91 0 0 0 0 0 0 0 +7.664 29.666 -1.906 0 0 0 0 0 0 0 +7.549 29.603 -1.9 0 0 0 0 0 0 0 +7.5 29.607 -1.899 0 0 0 0 0 0 0 +7.412 29.65 -1.901 0 0 0 0 0 0 0 +7.31 29.636 -1.898 0 0 0 0 0 0 0 +7.195 29.568 -1.892 0 0 0 0 0 0 0 +7.107 29.612 -1.893 0 0 0 0 0 0 0 +7.01 29.617 -1.892 0 0 0 0 0 0 0 +6.902 29.578 -1.888 0 0 0 0 0 0 0 +6.851 29.568 -1.886 0 0 0 0 0 0 0 +6.763 29.612 -1.888 0 0 0 0 0 0 0 +6.694 29.741 -1.895 0 0 0 0 0 0 0 +0.679 3.167 -0.021 0 0 0 0 0 0 0 +0.667 3.163 -0.02 0 0 0 0 0 0 0 +0.66 3.175 -0.021 0 0 0 0 0 0 0 +0.658 3.216 -0.024 0 0 0 0 0 0 0 +0.645 3.178 -0.021 0 0 0 0 0 0 0 +0.633 3.173 -0.02 0 0 0 0 0 0 0 +0.624 3.18 -0.021 0 0 0 0 0 0 0 +0.612 3.171 -0.02 0 0 0 0 0 0 0 +0.603 3.178 -0.02 0 0 0 0 0 0 0 +0.595 3.19 -0.021 0 0 0 0 0 0 0 +0.583 3.184 -0.021 0 0 0 0 0 0 0 +0.581 3.199 -0.022 0 0 0 0 0 0 0 +0.567 3.181 -0.02 0 0 0 0 0 0 0 +0.557 3.183 -0.02 0 0 0 0 0 0 0 +0.554 3.222 -0.023 0 0 0 0 0 0 0 +0.555 3.284 -0.027 0 0 0 0 0 0 0 +0.558 3.367 -0.033 0 0 0 0 0 0 0 +0.556 3.416 -0.036 0 0 0 0 0 0 0 +0.548 3.433 -0.037 0 0 0 0 0 0 0 +0.542 3.432 -0.037 0 0 0 0 0 0 0 +0.532 3.438 -0.037 0 0 0 0 0 0 0 +0.523 3.451 -0.038 0 0 0 0 0 0 0 +0.512 3.449 -0.038 0 0 0 0 0 0 0 +0.498 3.435 -0.037 0 0 0 0 0 0 0 +0.489 3.444 -0.037 0 0 0 0 0 0 0 +0.475 3.424 -0.036 0 0 0 0 0 0 0 +0.465 3.395 -0.034 0 0 0 0 0 0 0 +0.447 3.343 -0.03 0 0 0 0 0 0 0 +0.426 3.269 -0.025 0 0 0 0 0 0 0 +0.413 3.249 -0.023 0 0 0 0 0 0 0 +0.403 3.25 -0.023 0 0 0 0 0 0 0 +0.389 3.226 -0.021 0 0 0 0 0 0 0 +0.38 3.233 -0.022 0 0 0 0 0 0 0 +0.373 3.218 -0.021 0 0 0 0 0 0 0 +0.364 3.235 -0.022 0 0 0 0 0 0 0 +0.353 3.224 -0.021 0 0 0 0 0 0 0 +0.342 3.219 -0.021 0 0 0 0 0 0 0 +0.334 3.238 -0.022 0 0 0 0 0 0 0 +0.325 3.255 -0.023 0 0 0 0 0 0 0 +0.309 3.2 -0.019 0 0 0 0 0 0 0 +0.308 3.24 -0.022 0 0 0 0 0 0 0 +0.297 3.225 -0.021 0 0 0 0 0 0 0 +0.287 3.232 -0.021 0 0 0 0 0 0 0 +0.278 3.243 -0.022 0 0 0 0 0 0 0 +0.266 3.23 -0.021 0 0 0 0 0 0 0 +2.368 29.534 -1.836 0 0 0 0 0 0 0 +0.254 3.203 -0.019 0 0 0 0 0 0 0 +2.341 29.778 -1.853 0 0 0 0 0 0 0 +0.251 3.295 -0.025 0 0 0 0 0 0 0 +2.267 30.042 -1.871 0 0 0 0 0 0 0 +2.149 29.725 -1.848 0 0 0 0 0 0 0 +2.053 29.701 -1.846 0 0 0 0 0 0 0 +1.961 29.722 -1.847 0 0 0 0 0 0 0 +1.867 29.726 -1.847 0 0 0 0 0 0 0 +1.776 29.759 -1.849 0 0 0 0 0 0 0 +1.729 29.76 -1.849 0 0 0 0 0 0 0 +1.636 29.781 -1.85 0 0 0 0 0 0 0 +1.543 29.802 -1.851 0 0 0 0 0 0 0 +1.45 29.815 -1.852 0 0 0 0 0 0 0 +1.357 29.827 -1.852 0 0 0 0 0 0 0 +1.263 29.829 -1.852 0 0 0 0 0 0 0 +1.17 29.847 -1.853 0 0 0 0 0 0 0 +1.122 29.829 -1.852 0 0 0 0 0 0 0 +1.028 29.807 -1.85 0 0 0 0 0 0 0 +0.935 29.855 -1.853 0 0 0 0 0 0 0 +0.846 30.018 -1.864 0 0 0 0 0 0 0 +0.748 29.877 -1.854 0 0 0 0 0 0 0 +0.653 29.823 -1.85 0 0 0 0 0 0 0 +0.56 29.831 -1.851 0 0 0 0 0 0 0 +0.513 29.83 -1.851 0 0 0 0 0 0 0 +0.419 29.841 -1.851 0 0 0 0 0 0 0 +0.325 29.846 -1.852 0 0 0 0 0 0 0 +0.232 29.837 -1.851 0 0 0 0 0 0 0 +0.138 29.856 -1.852 0 0 0 0 0 0 0 +0.044 29.862 -1.852 0 0 0 0 0 0 0 +-0.05 29.874 -1.853 0 0 0 0 0 0 0 +-0.097 29.884 -1.854 0 0 0 0 0 0 0 +-0.191 29.882 -1.854 0 0 0 0 0 0 0 +-0.285 29.893 -1.855 0 0 0 0 0 0 0 +-0.378 29.898 -1.855 0 0 0 0 0 0 0 +-0.473 29.912 -1.856 0 0 0 0 0 0 0 +-0.567 29.929 -1.857 0 0 0 0 0 0 0 +-0.661 29.913 -1.856 0 0 0 0 0 0 0 +-0.755 29.914 -1.857 0 0 0 0 0 0 0 +-0.69 25.609 -1.56 0 0 0 0 0 0 0 +-0.757 25.15 -1.529 0 0 0 0 0 0 0 +-0.822 24.699 -1.498 0 0 0 0 0 0 0 +-0.882 24.215 -1.465 0 0 0 0 0 0 0 +-1 23.39 -1.409 0 0 0 0 0 0 0 +-1.07 23.305 -1.403 0 0 0 0 0 0 0 +-1.073 22.572 -1.353 0 0 0 0 0 0 0 +-1.126 22.202 -1.327 0 0 0 0 0 0 0 +-1.176 21.827 -1.302 0 0 0 0 0 0 0 +-1.224 21.465 -1.277 0 0 0 0 0 0 0 +-1.273 21.138 -1.255 0 0 0 0 0 0 0 +-1.322 20.852 -1.235 0 0 0 0 0 0 0 +-1.362 20.467 -1.209 0 0 0 0 0 0 0 +-1.37 20.095 -1.184 0 0 0 0 0 0 0 +-1.425 19.985 -1.176 0 0 0 0 0 0 0 +-1.467 19.693 -1.157 0 0 0 0 0 0 0 +-1.496 19.249 -1.126 0 0 0 0 0 0 0 +-1.533 18.95 -1.106 0 0 0 0 0 0 0 +-1.573 18.716 -1.09 0 0 0 0 0 0 0 +-1.609 18.445 -1.072 0 0 0 0 0 0 0 +-1.644 18.181 -1.054 0 0 0 0 0 0 0 +-1.65 17.932 -1.037 0 0 0 0 0 0 0 +-1.684 17.689 -1.02 0 0 0 0 0 0 0 +-1.717 17.447 -1.004 0 0 0 0 0 0 0 +-1.75 17.221 -0.989 0 0 0 0 0 0 0 +-1.78 16.983 -0.973 0 0 0 0 0 0 0 +-1.813 16.783 -0.959 0 0 0 0 0 0 0 +-1.838 16.534 -0.942 0 0 0 0 0 0 0 +-1.842 16.326 -0.928 0 0 0 0 0 0 0 +-1.871 16.124 -0.915 0 0 0 0 0 0 0 +-1.899 15.932 -0.902 0 0 0 0 0 0 0 +-1.924 15.72 -0.888 0 0 0 0 0 0 0 +-1.953 15.546 -0.876 0 0 0 0 0 0 0 +-1.98 15.365 -0.864 0 0 0 0 0 0 0 +-2.003 15.171 -0.851 0 0 0 0 0 0 0 +-2.004 14.994 -0.839 0 0 0 0 0 0 0 +-2.028 14.813 -0.827 0 0 0 0 0 0 0 +-2.052 14.643 -0.815 0 0 0 0 0 0 0 +-2.077 14.49 -0.805 0 0 0 0 0 0 0 +-2.097 14.306 -0.793 0 0 0 0 0 0 0 +-2.12 14.153 -0.783 0 0 0 0 0 0 0 +-2.145 14.02 -0.774 0 0 0 0 0 0 0 +-2.139 13.829 -0.761 0 0 0 0 0 0 0 +-2.163 13.7 -0.752 0 0 0 0 0 0 0 +-2.185 13.561 -0.743 0 0 0 0 0 0 0 +-2.203 13.403 -0.732 0 0 0 0 0 0 0 +-2.225 13.274 -0.724 0 0 0 0 0 0 0 +-2.244 13.133 -0.715 0 0 0 0 0 0 0 +-2.265 13.006 -0.706 0 0 0 0 0 0 0 +-2.261 12.861 -0.696 0 0 0 0 0 0 0 +-2.279 12.73 -0.688 0 0 0 0 0 0 0 +-2.297 12.599 -0.679 0 0 0 0 0 0 0 +-2.316 12.478 -0.671 0 0 0 0 0 0 0 +-2.335 12.364 -0.664 0 0 0 0 0 0 0 +-2.349 12.228 -0.655 0 0 0 0 0 0 0 +-2.367 12.113 -0.647 0 0 0 0 0 0 0 +-2.367 12.011 -0.64 0 0 0 0 0 0 0 +-2.381 11.884 -0.632 0 0 0 0 0 0 0 +-2.397 11.771 -0.624 0 0 0 0 0 0 0 +-2.412 11.658 -0.617 0 0 0 0 0 0 0 +-2.426 11.541 -0.609 0 0 0 0 0 0 0 +-2.443 11.443 -0.603 0 0 0 0 0 0 0 +-2.462 11.353 -0.597 0 0 0 0 0 0 0 +-2.473 11.235 -0.589 0 0 0 0 0 0 0 +-2.471 11.141 -0.583 0 0 0 0 0 0 0 +-2.487 11.049 -0.577 0 0 0 0 0 0 0 +-2.501 10.946 -0.57 0 0 0 0 0 0 0 +-2.514 10.849 -0.564 0 0 0 0 0 0 0 +-2.58 10.977 -0.574 0 0 0 0 0 0 0 +-2.545 10.674 -0.553 0 0 0 0 0 0 0 +-2.871 11.043 -0.583 0 0 0 0 0 0 0 +-2.911 11.051 -0.584 0 0 0 0 0 0 0 +-2.723 9.764 -0.495 0 0 0 0 0 0 0 +-2.76 9.777 -0.497 0 0 0 0 0 0 0 +-2.796 9.789 -0.498 0 0 0 0 0 0 0 +-2.819 9.81 -0.5 0 0 0 0 0 0 0 +-2.836 9.639 -0.489 0 0 0 0 0 0 0 +-2.86 9.61 -0.488 0 0 0 0 0 0 0 +-2.781 9.028 -0.448 0 0 0 0 0 0 0 +-2.803 8.996 -0.446 0 0 0 0 0 0 0 +-2.8 8.936 -0.442 0 0 0 0 0 0 0 +-2.816 8.891 -0.44 0 0 0 0 0 0 0 +-2.833 8.846 -0.437 0 0 0 0 0 0 0 +-2.839 8.771 -0.432 0 0 0 0 0 0 0 +-2.861 8.745 -0.431 0 0 0 0 0 0 0 +-2.879 8.705 -0.429 0 0 0 0 0 0 0 +-2.893 8.657 -0.426 0 0 0 0 0 0 0 +-2.917 8.682 -0.428 0 0 0 0 0 0 0 +-2.946 8.681 -0.429 0 0 0 0 0 0 0 +-2.959 8.628 -0.425 0 0 0 0 0 0 0 +-2.971 8.575 -0.422 0 0 0 0 0 0 0 +-2.988 8.538 -0.42 0 0 0 0 0 0 0 +-2.995 8.472 -0.416 0 0 0 0 0 0 0 +-3.012 8.436 -0.414 0 0 0 0 0 0 0 +-3.014 8.399 -0.412 0 0 0 0 0 0 0 +-3.018 8.326 -0.407 0 0 0 0 0 0 0 +-3.039 8.303 -0.406 0 0 0 0 0 0 0 +-3.052 8.256 -0.403 0 0 0 0 0 0 0 +-3.064 8.209 -0.401 0 0 0 0 0 0 0 +-3.075 8.16 -0.398 0 0 0 0 0 0 0 +-3.09 8.124 -0.396 0 0 0 0 0 0 0 +-3.093 8.091 -0.394 0 0 0 0 0 0 0 +-3.107 8.052 -0.392 0 0 0 0 0 0 0 +-3.129 8.035 -0.391 0 0 0 0 0 0 0 +-3.141 7.989 -0.389 0 0 0 0 0 0 0 +-3.163 7.972 -0.388 0 0 0 0 0 0 0 +-3.177 7.936 -0.386 0 0 0 0 0 0 0 +-3.185 7.883 -0.383 0 0 0 0 0 0 0 +-3.211 7.875 -0.383 0 0 0 0 0 0 0 +-3.216 7.854 -0.382 0 0 0 0 0 0 0 +-3.246 7.856 -0.383 0 0 0 0 0 0 0 +-3.276 7.859 -0.384 0 0 0 0 0 0 0 +-3.313 7.876 -0.386 0 0 0 0 0 0 0 +-3.328 7.844 -0.384 0 0 0 0 0 0 0 +-3.354 7.837 -0.384 0 0 0 0 0 0 0 +-3.387 7.845 -0.386 0 0 0 0 0 0 0 +-3.398 7.838 -0.386 0 0 0 0 0 0 0 +-3.425 7.832 -0.386 0 0 0 0 0 0 0 +-3.464 7.854 -0.389 0 0 0 0 0 0 0 +-3.338 7.375 -0.355 0 0 0 0 0 0 0 +-3.29 7.209 -0.343 0 0 0 0 0 0 0 +-3.367 7.347 -0.354 0 0 0 0 0 0 0 +-3.622 7.779 -0.388 0 0 0 0 0 0 0 +-3.633 7.738 -0.386 0 0 0 0 0 0 0 +-3.646 7.703 -0.384 0 0 0 0 0 0 0 +-3.649 7.647 -0.381 0 0 0 0 0 0 0 +-3.65 7.587 -0.377 0 0 0 0 0 0 0 +-3.649 7.554 -0.375 0 0 0 0 0 0 0 +-3.649 7.494 -0.371 0 0 0 0 0 0 0 +-3.662 7.461 -0.37 0 0 0 0 0 0 0 +-3.687 7.453 -0.37 0 0 0 0 0 0 0 +-3.712 7.443 -0.37 0 0 0 0 0 0 0 +-3.74 7.442 -0.371 0 0 0 0 0 0 0 +-3.773 7.448 -0.372 0 0 0 0 0 0 0 +-3.793 7.431 -0.372 0 0 0 0 0 0 0 +-3.814 7.443 -0.373 0 0 0 0 0 0 0 +-3.85 7.455 -0.375 0 0 0 0 0 0 0 +-3.868 7.433 -0.374 0 0 0 0 0 0 0 +-3.903 7.443 -0.376 0 0 0 0 0 0 0 +-3.935 7.447 -0.377 0 0 0 0 0 0 0 +-3.965 7.447 -0.378 0 0 0 0 0 0 0 +-3.998 7.452 -0.38 0 0 0 0 0 0 0 +-4.01 7.448 -0.38 0 0 0 0 0 0 0 +-4.04 7.447 -0.381 0 0 0 0 0 0 0 +-4.084 7.471 -0.384 0 0 0 0 0 0 0 +-4.104 7.453 -0.383 0 0 0 0 0 0 0 +-4.137 7.458 -0.385 0 0 0 0 0 0 0 +-4.169 7.46 -0.386 0 0 0 0 0 0 0 +-4.205 7.468 -0.388 0 0 0 0 0 0 0 +-4.224 7.476 -0.389 0 0 0 0 0 0 0 +-4.259 7.483 -0.39 0 0 0 0 0 0 0 +-4.294 7.489 -0.392 0 0 0 0 0 0 0 +-4.317 7.475 -0.392 0 0 0 0 0 0 0 +-4.359 7.493 -0.394 0 0 0 0 0 0 0 +-4.39 7.493 -0.395 0 0 0 0 0 0 0 +-4.425 7.498 -0.397 0 0 0 0 0 0 0 +-4.45 7.513 -0.399 0 0 0 0 0 0 0 +-4.481 7.513 -0.4 0 0 0 0 0 0 0 +-4.516 7.518 -0.401 0 0 0 0 0 0 0 +-4.553 7.526 -0.403 0 0 0 0 0 0 0 +-4.583 7.522 -0.404 0 0 0 0 0 0 0 +-4.635 7.553 -0.408 0 0 0 0 0 0 0 +-4.901 7.933 -0.439 0 0 0 0 0 0 0 +-4.961 7.975 -0.444 0 0 0 0 0 0 0 +-4.986 7.988 -0.446 0 0 0 0 0 0 0 +-5 7.954 -0.444 0 0 0 0 0 0 0 +-4.976 7.86 -0.438 0 0 0 0 0 0 0 +-4.994 7.834 -0.437 0 0 0 0 0 0 0 +-5.021 7.822 -0.437 0 0 0 0 0 0 0 +-5.052 7.816 -0.438 0 0 0 0 0 0 0 +-5.07 7.606 -0.427 0 0 0 0 0 0 0 +-5.111 7.564 -0.426 0 0 0 0 0 0 0 +-16.005 23.624 -1.761 0 0 0 0 0 0 0 +-16.078 23.572 -1.761 0 0 0 0 0 0 0 +-16.118 23.55 -1.761 0 0 0 0 0 0 0 +-16.158 23.45 -1.757 0 0 0 0 0 0 0 +-16.243 23.415 -1.759 0 0 0 0 0 0 0 +-16.177 23.165 -1.742 0 0 0 0 0 0 0 +-16.356 23.266 -1.755 0 0 0 0 0 0 0 +-16.384 23.15 -1.749 0 0 0 0 0 0 0 +-16.404 23.024 -1.743 0 0 0 0 0 0 0 +-16.353 22.876 -1.733 0 0 0 0 0 0 0 +-16.335 22.7 -1.722 0 0 0 0 0 0 0 +-16.323 22.534 -1.712 0 0 0 0 0 0 0 +-16.301 22.355 -1.701 0 0 0 0 0 0 0 +-16.284 22.185 -1.691 0 0 0 0 0 0 0 +-16.263 22.01 -1.681 0 0 0 0 0 0 0 +-16.236 21.83 -1.67 0 0 0 0 0 0 0 +-16.177 21.678 -1.659 0 0 0 0 0 0 0 +-16.145 21.495 -1.648 0 0 0 0 0 0 0 +-16.15 21.361 -1.64 0 0 0 0 0 0 0 +-16.202 21.29 -1.639 0 0 0 0 0 0 0 +-16.277 21.25 -1.64 0 0 0 0 0 0 0 +-16.593 21.523 -1.668 0 0 0 0 0 0 0 +-16.85 21.715 -1.689 0 0 0 0 0 0 0 +-16.773 21.545 -1.676 0 0 0 0 0 0 0 +-16.646 21.244 -1.655 0 0 0 0 0 0 0 +-16.336 20.714 -1.613 0 0 0 0 0 0 0 +-16.388 20.645 -1.611 0 0 0 0 0 0 0 +-16.446 20.586 -1.611 0 0 0 0 0 0 0 +-16.512 20.535 -1.611 0 0 0 0 0 0 0 +-15.558 19.223 -1.499 0 0 0 0 0 0 0 +-15.614 19.168 -1.499 0 0 0 0 0 0 0 +-15.433 18.885 -1.476 0 0 0 0 0 0 0 +-15.517 18.866 -1.479 0 0 0 0 0 0 0 +-15.588 18.832 -1.48 0 0 0 0 0 0 0 +-15.558 18.676 -1.47 0 0 0 0 0 0 0 +-11.819 13.997 -1.058 0 0 0 0 0 0 0 +-11.856 13.952 -1.058 0 0 0 0 0 0 0 +-11.825 13.871 -1.052 0 0 0 0 0 0 0 +-11.854 13.817 -1.05 0 0 0 0 0 0 0 +-11.86 13.736 -1.047 0 0 0 0 0 0 0 +-11.869 13.66 -1.043 0 0 0 0 0 0 0 +-11.907 13.616 -1.042 0 0 0 0 0 0 0 +-11.951 13.58 -1.043 0 0 0 0 0 0 0 +-11.992 13.541 -1.042 0 0 0 0 0 0 0 +-12.184 13.715 -1.06 0 0 0 0 0 0 0 +-12.092 13.525 -1.046 0 0 0 0 0 0 0 +-14.895 16.564 -1.331 0 0 0 0 0 0 0 +-14.901 16.467 -1.326 0 0 0 0 0 0 0 +-14.977 16.447 -1.328 0 0 0 0 0 0 0 +-15.026 16.397 -1.328 0 0 0 0 0 0 0 +-15.075 16.346 -1.328 0 0 0 0 0 0 0 +-15.1 16.323 -1.328 0 0 0 0 0 0 0 +-15.202 16.329 -1.333 0 0 0 0 0 0 0 +-15.14 16.16 -1.321 0 0 0 0 0 0 0 +-15.185 16.107 -1.321 0 0 0 0 0 0 0 +-15.255 16.079 -1.323 0 0 0 0 0 0 0 +-15.187 15.907 -1.311 0 0 0 0 0 0 0 +-15.093 15.71 -1.297 0 0 0 0 0 0 0 +-15.249 15.822 -1.31 0 0 0 0 0 0 0 +-15.134 15.604 -1.293 0 0 0 0 0 0 0 +-15.181 15.555 -1.293 0 0 0 0 0 0 0 +-15.109 15.383 -1.281 0 0 0 0 0 0 0 +-15.095 15.273 -1.275 0 0 0 0 0 0 0 +-15.122 15.204 -1.273 0 0 0 0 0 0 0 +-15.183 15.169 -1.275 0 0 0 0 0 0 0 +-15.193 15.085 -1.271 0 0 0 0 0 0 0 +-15.216 15.06 -1.271 0 0 0 0 0 0 0 +-15.465 15.211 -1.29 0 0 0 0 0 0 0 +-15.384 15.036 -1.278 0 0 0 0 0 0 0 +-15.536 15.09 -1.288 0 0 0 0 0 0 0 +-15.458 14.92 -1.276 0 0 0 0 0 0 0 +-15.347 14.719 -1.261 0 0 0 0 0 0 0 +-15.657 14.923 -1.286 0 0 0 0 0 0 0 +-15.367 14.6 -1.256 0 0 0 0 0 0 0 +-16.794 15.859 -1.387 0 0 0 0 0 0 0 +-15.724 14.753 -1.281 0 0 0 0 0 0 0 +-15.845 14.773 -1.288 0 0 0 0 0 0 0 +-15.84 14.676 -1.284 0 0 0 0 0 0 0 +-16.67 15.35 -1.357 0 0 0 0 0 0 0 +-16.51 15.106 -1.338 0 0 0 0 0 0 0 +-16.423 14.979 -1.327 0 0 0 0 0 0 0 +-16.726 15.16 -1.351 0 0 0 0 0 0 0 +-16.849 15.175 -1.358 0 0 0 0 0 0 0 +-16.892 15.118 -1.358 0 0 0 0 0 0 0 +-16.956 15.08 -1.359 0 0 0 0 0 0 0 +-17.115 15.126 -1.369 0 0 0 0 0 0 0 +-17.095 15.012 -1.363 0 0 0 0 0 0 0 +-17.201 15.058 -1.371 0 0 0 0 0 0 0 +-17.323 15.069 -1.378 0 0 0 0 0 0 0 +-17.322 14.973 -1.373 0 0 0 0 0 0 0 +-17.214 14.784 -1.359 0 0 0 0 0 0 0 +-17.346 14.804 -1.367 0 0 0 0 0 0 0 +-17.344 14.708 -1.363 0 0 0 0 0 0 0 +-17.431 14.689 -1.366 0 0 0 0 0 0 0 +-17.502 14.701 -1.37 0 0 0 0 0 0 0 +-16.048 13.391 -1.236 0 0 0 0 0 0 0 +-17.736 14.709 -1.383 0 0 0 0 0 0 0 +-17.86 14.717 -1.39 0 0 0 0 0 0 0 +-17.566 14.382 -1.36 0 0 0 0 0 0 0 +-17.703 14.402 -1.368 0 0 0 0 0 0 0 +-18.004 14.553 -1.391 0 0 0 0 0 0 0 +-16.94 13.603 -1.293 0 0 0 0 0 0 0 +-18.624 14.911 -1.439 0 0 0 0 0 0 0 +-17.139 13.631 -1.305 0 0 0 0 0 0 0 +-17.124 13.532 -1.3 0 0 0 0 0 0 0 +-17.259 13.551 -1.308 0 0 0 0 0 0 0 +-17.103 13.341 -1.29 0 0 0 0 0 0 0 +-17.193 13.324 -1.294 0 0 0 0 0 0 0 +-16.969 13.065 -1.271 0 0 0 0 0 0 0 +-16.994 13.042 -1.272 0 0 0 0 0 0 0 +-17.046 12.997 -1.273 0 0 0 0 0 0 0 +-17.2 13.03 -1.282 0 0 0 0 0 0 0 +-17.231 12.968 -1.282 0 0 0 0 0 0 0 +-17.358 12.979 -1.289 0 0 0 0 0 0 0 +-17.077 12.685 -1.261 0 0 0 0 0 0 0 +-17.08 12.604 -1.258 0 0 0 0 0 0 0 +-17.352 12.763 -1.28 0 0 0 0 0 0 0 +-17.007 12.426 -1.247 0 0 0 0 0 0 0 +-17.204 12.488 -1.261 0 0 0 0 0 0 0 +-17.258 12.444 -1.262 0 0 0 0 0 0 0 +-17.341 12.421 -1.265 0 0 0 0 0 0 0 +-17.381 12.368 -1.266 0 0 0 0 0 0 0 +-17.122 12.102 -1.24 0 0 0 0 0 0 0 +-17.019 11.989 -1.23 0 0 0 0 0 0 0 +-16.816 11.767 -1.21 0 0 0 0 0 0 0 +-17.068 11.863 -1.228 0 0 0 0 0 0 0 +-16.99 11.73 -1.218 0 0 0 0 0 0 0 +-16.905 11.593 -1.208 0 0 0 0 0 0 0 +-17.07 11.628 -1.219 0 0 0 0 0 0 0 +-6.687 4.506 -0.353 0 0 0 0 0 0 0 +-6.718 4.496 -0.354 0 0 0 0 0 0 0 +-6.704 4.471 -0.352 0 0 0 0 0 0 0 +-6.714 4.447 -0.352 0 0 0 0 0 0 0 +-6.717 4.419 -0.351 0 0 0 0 0 0 0 +-6.736 4.401 -0.351 0 0 0 0 0 0 0 +-6.748 4.379 -0.351 0 0 0 0 0 0 0 +-6.755 4.353 -0.351 0 0 0 0 0 0 0 +-17.004 10.892 -1.187 0 0 0 0 0 0 0 +-6.783 4.341 -0.352 0 0 0 0 0 0 0 +-16.722 10.636 -1.161 0 0 0 0 0 0 0 +-16.465 10.4 -1.138 0 0 0 0 0 0 0 +-16.331 10.243 -1.124 0 0 0 0 0 0 0 +-16.549 10.308 -1.139 0 0 0 0 0 0 0 +-16.635 10.29 -1.144 0 0 0 0 0 0 0 +-16.71 10.263 -1.147 0 0 0 0 0 0 0 +-16.774 10.266 -1.151 0 0 0 0 0 0 0 +-16.465 10.006 -1.124 0 0 0 0 0 0 0 +-16.355 9.868 -1.112 0 0 0 0 0 0 0 +-16.721 10.018 -1.139 0 0 0 0 0 0 0 +-16.725 9.95 -1.137 0 0 0 0 0 0 0 +-16.626 9.82 -1.126 0 0 0 0 0 0 0 +-16.648 9.762 -1.126 0 0 0 0 0 0 0 +-16.847 9.844 -1.14 0 0 0 0 0 0 0 +-17.085 9.912 -1.157 0 0 0 0 0 0 0 +-16.944 9.758 -1.143 0 0 0 0 0 0 0 +-16.939 9.685 -1.14 0 0 0 0 0 0 0 +-17.242 9.787 -1.162 0 0 0 0 0 0 0 +-17.278 9.735 -1.162 0 0 0 0 0 0 0 +-17.341 9.7 -1.165 0 0 0 0 0 0 0 +-17.304 9.643 -1.161 0 0 0 0 0 0 0 +-17.338 9.591 -1.161 0 0 0 0 0 0 0 +-17.384 9.545 -1.162 0 0 0 0 0 0 0 +-12.606 6.862 -0.785 0 0 0 0 0 0 0 +-12.673 6.847 -0.789 0 0 0 0 0 0 0 +-12.674 6.796 -0.787 0 0 0 0 0 0 0 +-13.559 7.218 -0.855 0 0 0 0 0 0 0 +-13.572 7.197 -0.855 0 0 0 0 0 0 0 +-13.7 7.211 -0.863 0 0 0 0 0 0 0 +-13.709 7.16 -0.862 0 0 0 0 0 0 0 +-13.825 7.166 -0.869 0 0 0 0 0 0 0 +-17.583 9.052 -1.159 0 0 0 0 0 0 0 +-28.937 14.8 -2.034 0 0 0 0 0 0 0 +-28.972 14.704 -2.033 0 0 0 0 0 0 0 +-29.002 14.605 -2.032 0 0 0 0 0 0 0 +-29.043 14.568 -2.033 0 0 0 0 0 0 0 +-29.021 14.443 -2.028 0 0 0 0 0 0 0 +-28.991 14.315 -2.022 0 0 0 0 0 0 0 +-14.687 7.18 -0.923 0 0 0 0 0 0 0 +-14.675 7.117 -0.92 0 0 0 0 0 0 0 +-14.753 7.098 -0.924 0 0 0 0 0 0 0 +-14.677 7.004 -0.917 0 0 0 0 0 0 0 +-14.65 6.963 -0.914 0 0 0 0 0 0 0 +-14.61 6.888 -0.909 0 0 0 0 0 0 0 +-28.679 13.439 -1.977 0 0 0 0 0 0 0 +-28.644 13.313 -1.971 0 0 0 0 0 0 0 +-28.597 13.181 -1.964 0 0 0 0 0 0 0 +-28.56 13.056 -1.958 0 0 0 0 0 0 0 +-28.524 12.931 -1.953 0 0 0 0 0 0 0 +-28.496 12.864 -1.949 0 0 0 0 0 0 0 +-28.534 12.774 -1.949 0 0 0 0 0 0 0 +-28.552 12.675 -1.947 0 0 0 0 0 0 0 +-28.541 12.562 -1.943 0 0 0 0 0 0 0 +-28.543 12.457 -1.941 0 0 0 0 0 0 0 +-28.529 12.344 -1.937 0 0 0 0 0 0 0 +-28.535 12.24 -1.934 0 0 0 0 0 0 0 +-28.479 12.163 -1.929 0 0 0 0 0 0 0 +-28.449 12.044 -1.923 0 0 0 0 0 0 0 +-28.421 11.927 -1.919 0 0 0 0 0 0 0 +-28.401 11.814 -1.914 0 0 0 0 0 0 0 +-28.37 11.697 -1.909 0 0 0 0 0 0 0 +-28.347 11.583 -1.905 0 0 0 0 0 0 0 +-28.304 11.462 -1.899 0 0 0 0 0 0 0 +-28.277 11.399 -1.896 0 0 0 0 0 0 0 +-28.285 11.299 -1.894 0 0 0 0 0 0 0 +-28.278 11.194 -1.89 0 0 0 0 0 0 0 +-28.319 11.107 -1.891 0 0 0 0 0 0 0 +-28.383 11.029 -1.893 0 0 0 0 0 0 0 +-28.442 10.95 -1.895 0 0 0 0 0 0 0 +-28.485 10.864 -1.895 0 0 0 0 0 0 0 +-28.411 10.733 -1.887 0 0 0 0 0 0 0 +-27.635 10.389 -1.829 0 0 0 0 0 0 0 +-28.596 10.649 -1.897 0 0 0 0 0 0 0 +-28.631 10.56 -1.897 0 0 0 0 0 0 0 +-28.631 10.458 -1.895 0 0 0 0 0 0 0 +-28.558 10.33 -1.887 0 0 0 0 0 0 0 +-28.611 10.247 -1.889 0 0 0 0 0 0 0 +-28.624 10.151 -1.887 0 0 0 0 0 0 0 +-28.591 10.088 -1.884 0 0 0 0 0 0 0 +-28.582 9.984 -1.881 0 0 0 0 0 0 0 +-28.573 9.881 -1.878 0 0 0 0 0 0 0 +-28.529 9.765 -1.873 0 0 0 0 0 0 0 +-28.54 9.669 -1.871 0 0 0 0 0 0 0 +-28.502 9.556 -1.866 0 0 0 0 0 0 0 +-28.51 9.459 -1.865 0 0 0 0 0 0 0 +-28.471 9.397 -1.861 0 0 0 0 0 0 0 +-28.372 9.265 -1.851 0 0 0 0 0 0 0 +-28.492 9.205 -1.858 0 0 0 0 0 0 0 +-28.49 9.106 -1.856 0 0 0 0 0 0 0 +-28.452 8.995 -1.851 0 0 0 0 0 0 0 +-28.372 8.872 -1.843 0 0 0 0 0 0 0 +-28.422 8.79 -1.845 0 0 0 0 0 0 0 +-28.486 8.76 -1.848 0 0 0 0 0 0 0 +-28.488 8.663 -1.847 0 0 0 0 0 0 0 +-28.477 8.562 -1.844 0 0 0 0 0 0 0 +-25.846 7.68 -1.653 0 0 0 0 0 0 0 +-28.461 8.363 -1.839 0 0 0 0 0 0 0 +-28.461 8.266 -1.837 0 0 0 0 0 0 0 +-28.442 8.163 -1.834 0 0 0 0 0 0 0 +-28.394 8.101 -1.829 0 0 0 0 0 0 0 +-28.423 8.013 -1.83 0 0 0 0 0 0 0 +-28.471 7.93 -1.831 0 0 0 0 0 0 0 +-28.444 7.826 -1.828 0 0 0 0 0 0 0 +-28.368 7.71 -1.82 0 0 0 0 0 0 0 +-28.229 7.576 -1.809 0 0 0 0 0 0 0 +-28.405 7.528 -1.82 0 0 0 0 0 0 0 +-24.94 6.565 -1.572 0 0 0 0 0 0 0 +-28.43 7.392 -1.819 0 0 0 0 0 0 0 +-28.442 7.299 -1.818 0 0 0 0 0 0 0 +-28.41 7.196 -1.814 0 0 0 0 0 0 0 +-28.41 7.101 -1.813 0 0 0 0 0 0 0 +-28.519 7.033 -1.819 0 0 0 0 0 0 0 +-9.962 2.406 -0.503 0 0 0 0 0 0 0 +-9.621 2.307 -0.479 0 0 0 0 0 0 0 +-9.366 2.214 -0.46 0 0 0 0 0 0 0 +-9.167 2.136 -0.445 0 0 0 0 0 0 0 +-9.018 2.071 -0.435 0 0 0 0 0 0 0 +-8.92 2.019 -0.427 0 0 0 0 0 0 0 +-8.975 1.972 -0.43 0 0 0 0 0 0 0 +-9.188 1.142 -0.435 0 0 0 0 0 0 0 +-9.2 1.114 -0.435 0 0 0 0 0 0 0 +-9.207 1.085 -0.436 0 0 0 0 0 0 0 +-9.244 1.06 -0.438 0 0 0 0 0 0 0 +-9.265 1.033 -0.439 0 0 0 0 0 0 0 +-9.266 1.004 -0.439 0 0 0 0 0 0 0 +-28.056 2.87 -1.738 0 0 0 0 0 0 0 +-28.08 2.784 -1.739 0 0 0 0 0 0 0 +-21.702 2.077 -1.298 0 0 0 0 0 0 0 +-27.972 2.596 -1.731 0 0 0 0 0 0 0 +-20.179 1.801 -1.192 0 0 0 0 0 0 0 +-27.865 2.453 -1.722 0 0 0 0 0 0 0 +-27.76 2.268 -1.714 0 0 0 0 0 0 0 +-27.722 2.177 -1.711 0 0 0 0 0 0 0 +-27.655 2.085 -1.706 0 0 0 0 0 0 0 +-27.59 1.992 -1.701 0 0 0 0 0 0 0 +-27.534 1.901 -1.697 0 0 0 0 0 0 0 +-19.533 1.311 -1.145 0 0 0 0 0 0 0 +-27.357 1.76 -1.684 0 0 0 0 0 0 0 +-27.295 1.669 -1.679 0 0 0 0 0 0 0 +-21.803 1.26 -1.3 0 0 0 0 0 0 0 +-21.705 1.185 -1.293 0 0 0 0 0 0 0 +-21.637 1.113 -1.289 0 0 0 0 0 0 0 +-21.616 1.044 -1.287 0 0 0 0 0 0 0 +-21.598 1.009 -1.286 0 0 0 0 0 0 0 +-21.581 0.941 -1.284 0 0 0 0 0 0 0 +-21.59 0.873 -1.285 0 0 0 0 0 0 0 +-21.613 0.806 -1.286 0 0 0 0 0 0 0 +-21.659 0.74 -1.289 0 0 0 0 0 0 0 +-21.733 0.674 -1.294 0 0 0 0 0 0 0 +-22.01 0.614 -1.313 0 0 0 0 0 0 0 +-18.236 0.447 -1.053 0 0 0 0 0 0 0 +-21.903 0.438 -1.305 0 0 0 0 0 0 0 +-21.615 0.364 -1.285 0 0 0 0 0 0 0 +-21.596 0.296 -1.284 0 0 0 0 0 0 0 +-21.608 0.228 -1.285 0 0 0 0 0 0 0 +-25.863 0.197 -1.577 0 0 0 0 0 0 0 +-25.77 0.115 -1.571 0 0 0 0 0 0 0 +-25.714 0.075 -1.567 0 0 0 0 0 0 0 +-22.126 -0.009 -1.32 0 0 0 0 0 0 0 +-25.492 -0.086 -1.552 0 0 0 0 0 0 0 +-25.288 -0.165 -1.538 0 0 0 0 0 0 0 +-22.077 -0.217 -1.317 0 0 0 0 0 0 0 +-22.015 -0.286 -1.313 0 0 0 0 0 0 0 +-25.206 -0.402 -1.532 0 0 0 0 0 0 0 +-25.137 -0.441 -1.528 0 0 0 0 0 0 0 +-25.054 -0.518 -1.522 0 0 0 0 0 0 0 +-24.979 -0.595 -1.517 0 0 0 0 0 0 0 +-24.881 -0.671 -1.51 0 0 0 0 0 0 0 +-24.799 -0.747 -1.505 0 0 0 0 0 0 0 +-24.715 -0.822 -1.499 0 0 0 0 0 0 0 +-24.648 -0.898 -1.495 0 0 0 0 0 0 0 +-24.569 -0.934 -1.49 0 0 0 0 0 0 0 +-24.516 -1.009 -1.486 0 0 0 0 0 0 0 +-24.471 -1.084 -1.483 0 0 0 0 0 0 0 +-24.396 -1.157 -1.478 0 0 0 0 0 0 0 +-24.216 -1.225 -1.466 0 0 0 0 0 0 0 +-24.133 -1.297 -1.461 0 0 0 0 0 0 0 +-24.053 -1.369 -1.455 0 0 0 0 0 0 0 +-23.973 -1.44 -1.45 0 0 0 0 0 0 0 +-23.896 -1.511 -1.445 0 0 0 0 0 0 0 +-23.814 -1.543 -1.44 0 0 0 0 0 0 0 +-23.742 -1.614 -1.435 0 0 0 0 0 0 0 +-23.669 -1.683 -1.43 0 0 0 0 0 0 0 +-23.58 -1.752 -1.425 0 0 0 0 0 0 0 +-23.487 -1.819 -1.419 0 0 0 0 0 0 0 +-23.425 -1.888 -1.415 0 0 0 0 0 0 0 +-23.336 -1.955 -1.409 0 0 0 0 0 0 0 +-16.113 -1.435 -0.911 0 0 0 0 0 0 0 +-16.078 -1.482 -0.909 0 0 0 0 0 0 0 +-16.342 -1.558 -0.927 0 0 0 0 0 0 0 +-22.928 -2.248 -1.383 0 0 0 0 0 0 0 +-22.879 -2.316 -1.38 0 0 0 0 0 0 0 +-22.785 -2.379 -1.374 0 0 0 0 0 0 0 +-22.741 -2.411 -1.371 0 0 0 0 0 0 0 +-22.718 -2.48 -1.37 0 0 0 0 0 0 0 +-22.708 -2.551 -1.37 0 0 0 0 0 0 0 +-22.712 -2.624 -1.371 0 0 0 0 0 0 0 +-22.717 -2.697 -1.372 0 0 0 0 0 0 0 +-22.72 -2.77 -1.373 0 0 0 0 0 0 0 +-22.735 -2.844 -1.374 0 0 0 0 0 0 0 +-22.731 -2.88 -1.374 0 0 0 0 0 0 0 +-22.757 -2.956 -1.377 0 0 0 0 0 0 0 +-22.752 -3.028 -1.377 0 0 0 0 0 0 0 +-22.764 -3.102 -1.379 0 0 0 0 0 0 0 +-22.744 -3.172 -1.378 0 0 0 0 0 0 0 +-22.724 -3.242 -1.377 0 0 0 0 0 0 0 +-22.761 -3.321 -1.381 0 0 0 0 0 0 0 +-22.792 -3.362 -1.383 0 0 0 0 0 0 0 +-22.734 -3.426 -1.38 0 0 0 0 0 0 0 +-22.636 -3.484 -1.374 0 0 0 0 0 0 0 +-22.566 -3.546 -1.37 0 0 0 0 0 0 0 +-22.464 -3.603 -1.363 0 0 0 0 0 0 0 +-22.433 -3.67 -1.362 0 0 0 0 0 0 0 +-22.354 -3.729 -1.357 0 0 0 0 0 0 0 +-22.274 -3.788 -1.352 0 0 0 0 0 0 0 +-21.101 -3.624 -1.271 0 0 0 0 0 0 0 +-20.986 -3.672 -1.264 0 0 0 0 0 0 0 +-20.889 -3.723 -1.258 0 0 0 0 0 0 0 +-20.817 -3.778 -1.254 0 0 0 0 0 0 0 +-20.74 -3.831 -1.249 0 0 0 0 0 0 0 +-20.665 -3.885 -1.245 0 0 0 0 0 0 0 +-20.584 -3.937 -1.24 0 0 0 0 0 0 0 +-20.515 -3.957 -1.235 0 0 0 0 0 0 0 +-20.438 -4.009 -1.231 0 0 0 0 0 0 0 +-20.367 -4.061 -1.227 0 0 0 0 0 0 0 +-20.287 -4.112 -1.222 0 0 0 0 0 0 0 +-20.21 -4.162 -1.218 0 0 0 0 0 0 0 +-20.148 -4.216 -1.214 0 0 0 0 0 0 0 +-20.056 -4.262 -1.209 0 0 0 0 0 0 0 +-20.003 -4.284 -1.205 0 0 0 0 0 0 0 +-19.915 -4.331 -1.2 0 0 0 0 0 0 0 +-19.851 -4.382 -1.197 0 0 0 0 0 0 0 +-19.784 -4.433 -1.193 0 0 0 0 0 0 0 +-19.704 -4.48 -1.188 0 0 0 0 0 0 0 +-19.639 -4.53 -1.185 0 0 0 0 0 0 0 +-19.557 -4.576 -1.18 0 0 0 0 0 0 0 +-19.486 -4.592 -1.175 0 0 0 0 0 0 0 +-19.421 -4.641 -1.172 0 0 0 0 0 0 0 +-19.365 -4.692 -1.169 0 0 0 0 0 0 0 +-19.279 -4.736 -1.164 0 0 0 0 0 0 0 +-19.217 -4.785 -1.16 0 0 0 0 0 0 0 +-19.15 -4.832 -1.157 0 0 0 0 0 0 0 +-19.086 -4.88 -1.153 0 0 0 0 0 0 0 +-19.024 -4.896 -1.149 0 0 0 0 0 0 0 +-18.955 -4.941 -1.146 0 0 0 0 0 0 0 +-18.866 -4.982 -1.14 0 0 0 0 0 0 0 +-18.819 -5.033 -1.138 0 0 0 0 0 0 0 +-18.736 -5.074 -1.133 0 0 0 0 0 0 0 +-18.67 -5.119 -1.13 0 0 0 0 0 0 0 +-18.611 -5.166 -1.127 0 0 0 0 0 0 0 +-18.54 -5.177 -1.122 0 0 0 0 0 0 0 +-18.483 -5.224 -1.119 0 0 0 0 0 0 0 +-18.388 -5.26 -1.114 0 0 0 0 0 0 0 +-17.856 -5.169 -1.077 0 0 0 0 0 0 0 +-17.78 -5.208 -1.073 0 0 0 0 0 0 0 +-17.727 -5.253 -1.07 0 0 0 0 0 0 0 +-17.647 -5.29 -1.065 0 0 0 0 0 0 0 +-17.605 -5.307 -1.063 0 0 0 0 0 0 0 +-17.525 -5.343 -1.058 0 0 0 0 0 0 0 +-17.464 -5.385 -1.055 0 0 0 0 0 0 0 +-17.386 -5.421 -1.051 0 0 0 0 0 0 0 +-17.323 -5.461 -1.048 0 0 0 0 0 0 0 +-17.247 -5.497 -1.043 0 0 0 0 0 0 0 +-17.232 -5.552 -1.043 0 0 0 0 0 0 0 +-17.25 -5.617 -1.046 0 0 0 0 0 0 0 +-17.314 -5.668 -1.051 0 0 0 0 0 0 0 +-17.332 -5.734 -1.054 0 0 0 0 0 0 0 +-17.374 -5.809 -1.058 0 0 0 0 0 0 0 +-17.329 -5.854 -1.056 0 0 0 0 0 0 0 +-17.269 -5.895 -1.053 0 0 0 0 0 0 0 +-17.202 -5.932 -1.05 0 0 0 0 0 0 0 +-17.13 -5.968 -1.046 0 0 0 0 0 0 0 +-17.074 -5.978 -1.043 0 0 0 0 0 0 0 +-17.032 -6.024 -1.041 0 0 0 0 0 0 0 +-16.833 -6.013 -1.028 0 0 0 0 0 0 0 +-16.733 -6.037 -1.022 0 0 0 0 0 0 0 +-16.781 -6.114 -1.027 0 0 0 0 0 0 0 +-16.745 -6.161 -1.025 0 0 0 0 0 0 0 +-16.675 -6.195 -1.022 0 0 0 0 0 0 0 +-16.606 -6.199 -1.017 0 0 0 0 0 0 0 +-16.551 -6.237 -1.015 0 0 0 0 0 0 0 +-16.477 -6.269 -1.011 0 0 0 0 0 0 0 +-16.416 -6.305 -1.008 0 0 0 0 0 0 0 +-16.35 -6.338 -1.004 0 0 0 0 0 0 0 +-16.278 -6.37 -1.001 0 0 0 0 0 0 0 +-16.22 -6.406 -0.998 0 0 0 0 0 0 0 +-16.156 -6.41 -0.994 0 0 0 0 0 0 0 +-16.101 -6.447 -0.991 0 0 0 0 0 0 0 +-16.031 -6.477 -0.987 0 0 0 0 0 0 0 +-15.97 -6.511 -0.984 0 0 0 0 0 0 0 +-15.932 -6.555 -0.983 0 0 0 0 0 0 0 +-15.951 -6.621 -0.986 0 0 0 0 0 0 0 +-15.95 -6.679 -0.988 0 0 0 0 0 0 0 +-15.833 -6.659 -0.98 0 0 0 0 0 0 0 +-15.782 -6.697 -0.977 0 0 0 0 0 0 0 +-15.73 -6.733 -0.975 0 0 0 0 0 0 0 +-15.705 -6.781 -0.975 0 0 0 0 0 0 0 +-15.988 -6.962 -0.998 0 0 0 0 0 0 0 +-15.989 -7.022 -0.999 0 0 0 0 0 0 0 +-15.993 -7.084 -1.001 0 0 0 0 0 0 0 +-15.92 -7.082 -0.997 0 0 0 0 0 0 0 +-15.819 -7.096 -0.991 0 0 0 0 0 0 0 +-15.733 -7.117 -0.986 0 0 0 0 0 0 0 +-15.652 -7.14 -0.982 0 0 0 0 0 0 0 +-15.657 -7.202 -0.984 0 0 0 0 0 0 0 +-15.685 -7.275 -0.987 0 0 0 0 0 0 0 +-15.687 -7.336 -0.989 0 0 0 0 0 0 0 +-15.696 -7.37 -0.991 0 0 0 0 0 0 0 +-15.71 -7.437 -0.994 0 0 0 0 0 0 0 +-15.719 -7.501 -0.996 0 0 0 0 0 0 0 +-15.723 -7.564 -0.998 0 0 0 0 0 0 0 +-15.738 -7.632 -1.001 0 0 0 0 0 0 0 +-15.74 -7.694 -1.003 0 0 0 0 0 0 0 +-15.733 -7.752 -1.005 0 0 0 0 0 0 0 +-15.755 -7.794 -1.007 0 0 0 0 0 0 0 +-15.757 -7.856 -1.009 0 0 0 0 0 0 0 +-16.136 -8.108 -1.04 0 0 0 0 0 0 0 +-16.149 -8.178 -1.043 0 0 0 0 0 0 0 +-16.156 -8.245 -1.046 0 0 0 0 0 0 0 +-16.17 -8.317 -1.049 0 0 0 0 0 0 0 +-16.167 -8.379 -1.051 0 0 0 0 0 0 0 +-16.177 -8.417 -1.053 0 0 0 0 0 0 0 +-16.2 -8.493 -1.056 0 0 0 0 0 0 0 +-16.207 -8.562 -1.059 0 0 0 0 0 0 0 +-16.213 -8.63 -1.062 0 0 0 0 0 0 0 +-16.216 -8.697 -1.064 0 0 0 0 0 0 0 +-16.219 -8.764 -1.066 0 0 0 0 0 0 0 +-16.219 -8.83 -1.068 0 0 0 0 0 0 0 +-16.224 -8.9 -1.071 0 0 0 0 0 0 0 +-16.252 -8.948 -1.074 0 0 0 0 0 0 0 +-16.259 -9.018 -1.077 0 0 0 0 0 0 0 +-16.266 -9.089 -1.08 0 0 0 0 0 0 0 +-16.26 -9.153 -1.082 0 0 0 0 0 0 0 +-16.279 -9.231 -1.085 0 0 0 0 0 0 0 +-16.273 -9.295 -1.087 0 0 0 0 0 0 0 +-16.289 -9.372 -1.091 0 0 0 0 0 0 0 +-16.315 -9.421 -1.094 0 0 0 0 0 0 0 +-16.318 -9.492 -1.097 0 0 0 0 0 0 0 +-16.326 -9.565 -1.1 0 0 0 0 0 0 0 +-16.334 -9.638 -1.103 0 0 0 0 0 0 0 +-16.347 -9.715 -1.106 0 0 0 0 0 0 0 +-16.347 -9.785 -1.109 0 0 0 0 0 0 0 +-16.347 -9.855 -1.111 0 0 0 0 0 0 0 +-16.378 -9.908 -1.115 0 0 0 0 0 0 0 +-16.389 -9.985 -1.118 0 0 0 0 0 0 0 +-16.388 -10.056 -1.121 0 0 0 0 0 0 0 +-16.399 -10.133 -1.124 0 0 0 0 0 0 0 +-16.398 -10.204 -1.127 0 0 0 0 0 0 0 +-16.404 -10.279 -1.13 0 0 0 0 0 0 0 +-16.418 -10.36 -1.134 0 0 0 0 0 0 0 +-16.445 -10.413 -1.137 0 0 0 0 0 0 0 +-16.454 -10.491 -1.141 0 0 0 0 0 0 0 +-16.467 -10.572 -1.144 0 0 0 0 0 0 0 +-16.462 -10.642 -1.147 0 0 0 0 0 0 0 +-16.467 -10.719 -1.15 0 0 0 0 0 0 0 +-16.467 -10.792 -1.152 0 0 0 0 0 0 0 +-16.481 -10.876 -1.156 0 0 0 0 0 0 0 +-16.512 -10.934 -1.16 0 0 0 0 0 0 0 +-16.518 -11.012 -1.164 0 0 0 0 0 0 0 +-16.526 -11.093 -1.167 0 0 0 0 0 0 0 +-16.529 -11.17 -1.17 0 0 0 0 0 0 0 +-16.54 -11.253 -1.174 0 0 0 0 0 0 0 +-16.539 -11.329 -1.177 0 0 0 0 0 0 0 +-16.548 -11.411 -1.181 0 0 0 0 0 0 0 +-16.583 -11.474 -1.185 0 0 0 0 0 0 0 +-16.588 -11.554 -1.189 0 0 0 0 0 0 0 +-16.61 -11.647 -1.194 0 0 0 0 0 0 0 +-10.483 -7.412 -0.681 0 0 0 0 0 0 0 +-10.438 -7.43 -0.679 0 0 0 0 0 0 0 +-10.408 -7.458 -0.679 0 0 0 0 0 0 0 +-10.398 -7.5 -0.68 0 0 0 0 0 0 0 +-10.399 -7.525 -0.681 0 0 0 0 0 0 0 +-10.403 -7.578 -0.683 0 0 0 0 0 0 0 +-10.405 -7.629 -0.686 0 0 0 0 0 0 0 +-10.44 -7.706 -0.691 0 0 0 0 0 0 0 +-10.453 -7.766 -0.694 0 0 0 0 0 0 0 +-16.694 -12.464 -1.231 0 0 0 0 0 0 0 +-16.699 -12.55 -1.235 0 0 0 0 0 0 0 +-16.714 -12.643 -1.24 0 0 0 0 0 0 0 +-16.737 -12.702 -1.243 0 0 0 0 0 0 0 +-16.744 -12.791 -1.248 0 0 0 0 0 0 0 +-16.75 -12.879 -1.252 0 0 0 0 0 0 0 +-16.755 -12.967 -1.256 0 0 0 0 0 0 0 +-16.763 -13.057 -1.26 0 0 0 0 0 0 0 +-16.768 -13.145 -1.264 0 0 0 0 0 0 0 +-16.78 -13.24 -1.268 0 0 0 0 0 0 0 +-16.806 -13.303 -1.273 0 0 0 0 0 0 0 +-16.812 -13.395 -1.277 0 0 0 0 0 0 0 +-16.738 -13.421 -1.274 0 0 0 0 0 0 0 +-16.922 -13.656 -1.294 0 0 0 0 0 0 0 +-16.986 -13.796 -1.303 0 0 0 0 0 0 0 +-16.964 -13.867 -1.305 0 0 0 0 0 0 0 +-16.975 -13.965 -1.31 0 0 0 0 0 0 0 +-17.025 -14.051 -1.317 0 0 0 0 0 0 0 +-17.046 -14.158 -1.322 0 0 0 0 0 0 0 +-17.053 -14.255 -1.327 0 0 0 0 0 0 0 +-16.967 -14.274 -1.323 0 0 0 0 0 0 0 +-16.952 -14.353 -1.326 0 0 0 0 0 0 0 +-16.951 -14.443 -1.33 0 0 0 0 0 0 0 +-16.947 -14.531 -1.334 0 0 0 0 0 0 0 +-16.986 -14.611 -1.339 0 0 0 0 0 0 0 +-16.985 -14.704 -1.344 0 0 0 0 0 0 0 +-17.01 -14.819 -1.35 0 0 0 0 0 0 0 +-17.014 -14.917 -1.355 0 0 0 0 0 0 0 +-17.023 -15.019 -1.36 0 0 0 0 0 0 0 +-17.037 -15.126 -1.365 0 0 0 0 0 0 0 +-17.032 -15.218 -1.369 0 0 0 0 0 0 0 +-17.069 -15.3 -1.375 0 0 0 0 0 0 0 +-17.087 -15.412 -1.381 0 0 0 0 0 0 0 +-17.11 -15.531 -1.388 0 0 0 0 0 0 0 +-17.113 -15.632 -1.393 0 0 0 0 0 0 0 +-17.133 -15.749 -1.399 0 0 0 0 0 0 0 +-17.139 -15.854 -1.404 0 0 0 0 0 0 0 +-17.125 -15.94 -1.408 0 0 0 0 0 0 0 +-17.168 -16.031 -1.414 0 0 0 0 0 0 0 +-17.212 -16.174 -1.423 0 0 0 0 0 0 0 +-17.36 -16.415 -1.442 0 0 0 0 0 0 0 +-17.381 -16.539 -1.449 0 0 0 0 0 0 0 +-17.384 -16.645 -1.454 0 0 0 0 0 0 0 +-17.387 -16.754 -1.459 0 0 0 0 0 0 0 +-17.438 -16.908 -1.469 0 0 0 0 0 0 0 +-13.932 -13.559 -1.135 0 0 0 0 0 0 0 +-17.307 -16.94 -1.464 0 0 0 0 0 0 0 +-17.292 -17.032 -1.468 0 0 0 0 0 0 0 +-17.305 -17.152 -1.474 0 0 0 0 0 0 0 +-17.306 -17.262 -1.48 0 0 0 0 0 0 0 +-17.321 -17.385 -1.486 0 0 0 0 0 0 0 +-17.336 -17.51 -1.493 0 0 0 0 0 0 0 +-17.343 -17.627 -1.499 0 0 0 0 0 0 0 +-17.377 -17.717 -1.505 0 0 0 0 0 0 0 +-17.374 -17.826 -1.511 0 0 0 0 0 0 0 +-17.278 -17.839 -1.507 0 0 0 0 0 0 0 +-17.176 -17.845 -1.502 0 0 0 0 0 0 0 +-17.095 -17.873 -1.5 0 0 0 0 0 0 0 +-17.038 -17.927 -1.5 0 0 0 0 0 0 0 +-17.044 -18.046 -1.506 0 0 0 0 0 0 0 +-17.095 -18.157 -1.514 0 0 0 0 0 0 0 +-17.088 -18.264 -1.519 0 0 0 0 0 0 0 +-14.021 -15.087 -1.215 0 0 0 0 0 0 0 +-17.147 -18.558 -1.536 0 0 0 0 0 0 0 +-17.539 -19.103 -1.582 0 0 0 0 0 0 0 +-17.557 -19.243 -1.59 0 0 0 0 0 0 0 +-17.561 -19.369 -1.597 0 0 0 0 0 0 0 +-17.602 -19.475 -1.604 0 0 0 0 0 0 0 +-17.621 -19.619 -1.612 0 0 0 0 0 0 0 +-17.627 -19.75 -1.619 0 0 0 0 0 0 0 +-17.632 -19.882 -1.626 0 0 0 0 0 0 0 +-17.661 -20.04 -1.636 0 0 0 0 0 0 0 +-17.675 -20.184 -1.644 0 0 0 0 0 0 0 +-17.685 -20.324 -1.651 0 0 0 0 0 0 0 +-17.72 -20.428 -1.658 0 0 0 0 0 0 0 +-14.104 -16.475 -1.29 0 0 0 0 0 0 0 +-14.178 -16.667 -1.303 0 0 0 0 0 0 0 +-17.766 -21.009 -1.691 0 0 0 0 0 0 0 +-17.772 -21.15 -1.699 0 0 0 0 0 0 0 +-17.808 -21.328 -1.71 0 0 0 0 0 0 0 +-17.853 -21.449 -1.718 0 0 0 0 0 0 0 +-17.886 -21.627 -1.729 0 0 0 0 0 0 0 +-17.89 -21.771 -1.737 0 0 0 0 0 0 0 +-17.912 -21.938 -1.746 0 0 0 0 0 0 0 +-17.919 -22.087 -1.755 0 0 0 0 0 0 0 +-17.941 -22.256 -1.765 0 0 0 0 0 0 0 +-17.958 -22.422 -1.774 0 0 0 0 0 0 0 +-17.998 -22.543 -1.783 0 0 0 0 0 0 0 +-18.016 -22.712 -1.792 0 0 0 0 0 0 0 +-14.205 -18.148 -1.384 0 0 0 0 0 0 0 +-14.22 -18.286 -1.392 0 0 0 0 0 0 0 +-18.066 -23.371 -1.83 0 0 0 0 0 0 0 +-18.093 -23.559 -1.842 0 0 0 0 0 0 0 +-18.14 -23.696 -1.851 0 0 0 0 0 0 0 +-18.152 -23.867 -1.861 0 0 0 0 0 0 0 +-17.758 -23.503 -1.825 0 0 0 0 0 0 0 +-17.665 -23.533 -1.822 0 0 0 0 0 0 0 +-17.815 -23.889 -1.848 0 0 0 0 0 0 0 +-17.719 -23.916 -1.846 0 0 0 0 0 0 0 +-18.091 -24.578 -1.898 0 0 0 0 0 0 0 +-18.062 -24.619 -1.899 0 0 0 0 0 0 0 +-18 -24.697 -1.901 0 0 0 0 0 0 0 +-17.931 -24.765 -1.901 0 0 0 0 0 0 0 +-17.885 -24.866 -1.905 0 0 0 0 0 0 0 +-17.829 -24.953 -1.908 0 0 0 0 0 0 0 +-17.78 -25.05 -1.911 0 0 0 0 0 0 0 +-17.725 -25.14 -1.914 0 0 0 0 0 0 0 +-17.712 -25.205 -1.917 0 0 0 0 0 0 0 +-17.665 -25.306 -1.921 0 0 0 0 0 0 0 +-17.529 -25.281 -1.915 0 0 0 0 0 0 0 +-17.494 -25.4 -1.92 0 0 0 0 0 0 0 +-17.416 -25.459 -1.92 0 0 0 0 0 0 0 +-17.368 -25.559 -1.924 0 0 0 0 0 0 0 +-17.297 -25.629 -1.925 0 0 0 0 0 0 0 +-17.268 -25.672 -1.927 0 0 0 0 0 0 0 +-17.183 -25.72 -1.926 0 0 0 0 0 0 0 +-17.067 -25.72 -1.922 0 0 0 0 0 0 0 +-16.966 -25.744 -1.919 0 0 0 0 0 0 0 +-16.937 -25.876 -1.926 0 0 0 0 0 0 0 +-16.929 -26.042 -1.935 0 0 0 0 0 0 0 +-16.917 -26.203 -1.944 0 0 0 0 0 0 0 +-16.924 -26.305 -1.95 0 0 0 0 0 0 0 +-16.812 -26.312 -1.946 0 0 0 0 0 0 0 +-16.707 -26.33 -1.943 0 0 0 0 0 0 0 +-16.614 -26.365 -1.942 0 0 0 0 0 0 0 +-16.566 -26.473 -1.947 0 0 0 0 0 0 0 +-16.505 -26.56 -1.949 0 0 0 0 0 0 0 +-16.454 -26.665 -1.954 0 0 0 0 0 0 0 +-16.441 -26.738 -1.957 0 0 0 0 0 0 0 +-16.352 -26.781 -1.957 0 0 0 0 0 0 0 +-16.259 -26.819 -1.956 0 0 0 0 0 0 0 +-16.125 -26.786 -1.949 0 0 0 0 0 0 0 +-16.068 -26.883 -1.953 0 0 0 0 0 0 0 +-15.995 -26.952 -1.954 0 0 0 0 0 0 0 +-15.939 -27.052 -1.958 0 0 0 0 0 0 0 +-15.857 -27.107 -1.959 0 0 0 0 0 0 0 +-15.847 -27.187 -1.963 0 0 0 0 0 0 0 +-15.793 -27.292 -1.967 0 0 0 0 0 0 0 +-15.702 -27.331 -1.967 0 0 0 0 0 0 0 +-15.649 -27.439 -1.971 0 0 0 0 0 0 0 +-15.587 -27.53 -1.975 0 0 0 0 0 0 0 +-15.526 -27.624 -1.978 0 0 0 0 0 0 0 +-15.459 -27.709 -1.981 0 0 0 0 0 0 0 +-15.397 -27.7 -1.978 0 0 0 0 0 0 0 +-15.343 -27.808 -1.983 0 0 0 0 0 0 0 +-15.25 -27.845 -1.982 0 0 0 0 0 0 0 +-15.166 -27.9 -1.983 0 0 0 0 0 0 0 +-15.092 -27.972 -1.985 0 0 0 0 0 0 0 +-15.021 -28.053 -1.987 0 0 0 0 0 0 0 +-14.982 -28.192 -1.994 0 0 0 0 0 0 0 +-14.956 -28.25 -1.997 0 0 0 0 0 0 0 +-14.881 -28.322 -1.999 0 0 0 0 0 0 0 +-14.786 -28.358 -1.998 0 0 0 0 0 0 0 +-14.703 -28.417 -1.999 0 0 0 0 0 0 0 +-14.635 -28.503 -2.002 0 0 0 0 0 0 0 +-14.576 -28.61 -2.007 0 0 0 0 0 0 0 +-14.471 -28.625 -2.005 0 0 0 0 0 0 0 +-14.407 -28.61 -2.002 0 0 0 0 0 0 0 +-14.339 -28.698 -2.005 0 0 0 0 0 0 0 +-14.312 -28.872 -2.015 0 0 0 0 0 0 0 +-14.284 -29.044 -2.025 0 0 0 0 0 0 0 +-14.183 -29.069 -2.023 0 0 0 0 0 0 0 +-14.055 -29.038 -2.017 0 0 0 0 0 0 0 +-13.923 -28.997 -2.011 0 0 0 0 0 0 0 +-13.859 -28.981 -2.008 0 0 0 0 0 0 0 +-13.735 -28.954 -2.003 0 0 0 0 0 0 0 +-13.621 -28.949 -1.999 0 0 0 0 0 0 0 +-13.522 -28.973 -1.998 0 0 0 0 0 0 0 +-13.418 -28.988 -1.996 0 0 0 0 0 0 0 +-13.297 -28.965 -1.991 0 0 0 0 0 0 0 +-13.201 -28.998 -1.99 0 0 0 0 0 0 0 +-13.132 -28.966 -1.986 0 0 0 0 0 0 0 +-13.036 -28.996 -1.985 0 0 0 0 0 0 0 +-12.925 -28.993 -1.982 0 0 0 0 0 0 0 +-12.824 -29.01 -1.98 0 0 0 0 0 0 0 +-12.729 -29.043 -1.98 0 0 0 0 0 0 0 +-12.623 -29.048 -1.977 0 0 0 0 0 0 0 +-12.517 -29.054 -1.975 0 0 0 0 0 0 0 +-12.465 -29.059 -1.973 0 0 0 0 0 0 0 +-12.354 -29.052 -1.97 0 0 0 0 0 0 0 +-12.255 -29.073 -1.969 0 0 0 0 0 0 0 +-12.155 -29.089 -1.967 0 0 0 0 0 0 0 +-12.048 -29.09 -1.964 0 0 0 0 0 0 0 +-11.938 -29.084 -1.961 0 0 0 0 0 0 0 +-11.837 -29.097 -1.959 0 0 0 0 0 0 0 +-11.778 -29.082 -1.957 0 0 0 0 0 0 0 +-11.684 -29.114 -1.956 0 0 0 0 0 0 0 +-11.587 -29.135 -1.955 0 0 0 0 0 0 0 +-11.486 -29.149 -1.954 0 0 0 0 0 0 0 +-11.395 -29.187 -1.954 0 0 0 0 0 0 0 +-11.308 -29.234 -1.954 0 0 0 0 0 0 0 +-11.212 -29.258 -1.954 0 0 0 0 0 0 0 +-11.166 -29.276 -1.954 0 0 0 0 0 0 0 +-11.063 -29.283 -1.952 0 0 0 0 0 0 0 +-10.959 -29.285 -1.949 0 0 0 0 0 0 0 +-10.882 -29.359 -1.952 0 0 0 0 0 0 0 +-10.803 -29.429 -1.955 0 0 0 0 0 0 0 +-10.694 -29.419 -1.952 0 0 0 0 0 0 0 +-10.596 -29.438 -1.95 0 0 0 0 0 0 0 +-10.542 -29.432 -1.949 0 0 0 0 0 0 0 +-10.462 -29.5 -1.951 0 0 0 0 0 0 0 +-10.36 -29.507 -1.95 0 0 0 0 0 0 0 +-10.257 -29.509 -1.947 0 0 0 0 0 0 0 +-10.157 -29.52 -1.946 0 0 0 0 0 0 0 +-10.075 -29.582 -1.948 0 0 0 0 0 0 0 +-10.024 -29.739 -1.957 0 0 0 0 0 0 0 +-9.921 -29.588 -1.945 0 0 0 0 0 0 0 +-9.781 -29.477 -1.935 0 0 0 0 0 0 0 +-9.675 -29.468 -1.932 0 0 0 0 0 0 0 +-9.571 -29.462 -1.929 0 0 0 0 0 0 0 +-9.468 -29.462 -1.927 0 0 0 0 0 0 0 +-9.376 -29.493 -1.927 0 0 0 0 0 0 0 +-9.279 -29.507 -1.926 0 0 0 0 0 0 0 +-9.224 -29.495 -1.924 0 0 0 0 0 0 0 +-9.126 -29.507 -1.923 0 0 0 0 0 0 0 +-9.032 -29.531 -1.923 0 0 0 0 0 0 0 +-8.938 -29.556 -1.922 0 0 0 0 0 0 0 +-8.837 -29.555 -1.92 0 0 0 0 0 0 0 +-8.747 -29.594 -1.921 0 0 0 0 0 0 0 +-8.667 -29.664 -1.924 0 0 0 0 0 0 0 +-8.586 -29.733 -1.927 0 0 0 0 0 0 0 +-8.56 -29.821 -1.933 0 0 0 0 0 0 0 +-8.444 -29.769 -1.927 0 0 0 0 0 0 0 +-8.302 -29.621 -1.914 0 0 0 0 0 0 0 +-8.198 -29.61 -1.912 0 0 0 0 0 0 0 +-8.105 -29.636 -1.912 0 0 0 0 0 0 0 +-8.002 -29.623 -1.909 0 0 0 0 0 0 0 +-7.895 -29.597 -1.905 0 0 0 0 0 0 0 +-7.853 -29.627 -1.907 0 0 0 0 0 0 0 +-7.745 -29.594 -1.903 0 0 0 0 0 0 0 +-7.648 -29.604 -1.902 0 0 0 0 0 0 0 +-7.549 -29.605 -1.9 0 0 0 0 0 0 0 +-7.451 -29.607 -1.898 0 0 0 0 0 0 0 +-7.353 -29.611 -1.897 0 0 0 0 0 0 0 +-7.302 -29.605 -1.896 0 0 0 0 0 0 0 +-7.213 -29.644 -1.897 0 0 0 0 0 0 0 +-7.111 -29.631 -1.894 0 0 0 0 0 0 0 +-7.026 -29.685 -1.897 0 0 0 0 0 0 0 +-6.947 -29.769 -1.901 0 0 0 0 0 0 0 +-6.874 -29.88 -1.907 0 0 0 0 0 0 0 +-6.768 -29.847 -1.904 0 0 0 0 0 0 0 +-6.619 -29.621 -1.886 0 0 0 0 0 0 0 +-6.553 -29.547 -1.88 0 0 0 0 0 0 0 +-6.461 -29.57 -1.88 0 0 0 0 0 0 0 +-6.359 -29.549 -1.877 0 0 0 0 0 0 0 +-6.264 -29.559 -1.877 0 0 0 0 0 0 0 +-6.177 -29.604 -1.879 0 0 0 0 0 0 0 +-6.076 -29.588 -1.876 0 0 0 0 0 0 0 +-5.987 -29.622 -1.877 0 0 0 0 0 0 0 +-5.934 -29.602 -1.875 0 0 0 0 0 0 0 +-5.839 -29.613 -1.875 0 0 0 0 0 0 0 +-5.745 -29.624 -1.874 0 0 0 0 0 0 0 +-5.657 -29.667 -1.876 0 0 0 0 0 0 0 +-5.573 -29.735 -1.879 0 0 0 0 0 0 0 +-5.503 -29.88 -1.888 0 0 0 0 0 0 0 +-5.472 -30.245 -1.913 0 0 0 0 0 0 0 +-5.356 -29.873 -1.886 0 0 0 0 0 0 0 +-5.237 -29.748 -1.876 0 0 0 0 0 0 0 +-5.113 -29.583 -1.863 0 0 0 0 0 0 0 +-5.005 -29.513 -1.857 0 0 0 0 0 0 0 +-4.905 -29.485 -1.854 0 0 0 0 0 0 0 +-4.803 -29.447 -1.851 0 0 0 0 0 0 0 +-4.707 -29.436 -1.849 0 0 0 0 0 0 0 +-4.658 -29.426 -1.848 0 0 0 0 0 0 0 +-4.567 -29.45 -1.848 0 0 0 0 0 0 0 +-4.465 -29.403 -1.844 0 0 0 0 0 0 0 +-4.366 -29.372 -1.841 0 0 0 0 0 0 0 +-4.269 -29.358 -1.839 0 0 0 0 0 0 0 +-4.175 -29.353 -1.838 0 0 0 0 0 0 0 +-4.085 -29.386 -1.839 0 0 0 0 0 0 0 +-4.044 -29.428 -1.842 0 0 0 0 0 0 0 +-3.953 -29.454 -1.843 0 0 0 0 0 0 0 +-3.86 -29.461 -1.842 0 0 0 0 0 0 0 +-3.77 -29.496 -1.844 0 0 0 0 0 0 0 +-3.677 -29.504 -1.844 0 0 0 0 0 0 0 +-3.58 -29.48 -1.841 0 0 0 0 0 0 0 +-3.485 -29.469 -1.84 0 0 0 0 0 0 0 +-2.263 -19.471 -1.147 0 0 0 0 0 0 0 +-2.074 -18.366 -1.07 0 0 0 0 0 0 0 +-7.66 -69.131 -4.583 0 0 0 0 0 0 0 +-0.427 -17.494 -1.002 0 0 0 0 0 0 0 +-0.616 -28.177 -1.737 0 0 0 0 0 0 0 +-0.527 -28.151 -1.735 0 0 0 0 0 0 0 +-0.437 -28.107 -1.732 0 0 0 0 0 0 0 +-0.392 -27.994 -1.724 0 0 0 0 0 0 0 +-0.303 -27.935 -1.72 0 0 0 0 0 0 0 +-0.214 -27.84 -1.713 0 0 0 0 0 0 0 +-0.127 -27.799 -1.711 0 0 0 0 0 0 0 +-0.039 -27.753 -1.707 0 0 0 0 0 0 0 +0.048 -27.723 -1.705 0 0 0 0 0 0 0 +0.135 -27.681 -1.702 0 0 0 0 0 0 0 +0.178 -27.667 -1.701 0 0 0 0 0 0 0 +0.265 -27.634 -1.699 0 0 0 0 0 0 0 +0.352 -27.623 -1.699 0 0 0 0 0 0 0 +0.437 -27.53 -1.692 0 0 0 0 0 0 0 +0.523 -27.505 -1.691 0 0 0 0 0 0 0 +0.609 -27.483 -1.689 0 0 0 0 0 0 0 +0.695 -27.463 -1.688 0 0 0 0 0 0 0 +0.737 -27.43 -1.686 0 0 0 0 0 0 0 +0.824 -27.439 -1.687 0 0 0 0 0 0 0 +0.909 -27.409 -1.685 0 0 0 0 0 0 0 +0.993 -27.348 -1.681 0 0 0 0 0 0 0 +1.078 -27.313 -1.679 0 0 0 0 0 0 0 +1.163 -27.291 -1.677 0 0 0 0 0 0 0 +1.248 -27.276 -1.676 0 0 0 0 0 0 0 +1.291 -27.272 -1.676 0 0 0 0 0 0 0 +1.374 -27.21 -1.672 0 0 0 0 0 0 0 +1.455 -27.126 -1.667 0 0 0 0 0 0 0 +1.537 -27.067 -1.663 0 0 0 0 0 0 0 +1.619 -27.01 -1.66 0 0 0 0 0 0 0 +1.703 -26.981 -1.658 0 0 0 0 0 0 0 +1.784 -26.926 -1.655 0 0 0 0 0 0 0 +1.866 -26.878 -1.652 0 0 0 0 0 0 0 +1.905 -26.83 -1.648 0 0 0 0 0 0 0 +1.987 -26.79 -1.646 0 0 0 0 0 0 0 +2.068 -26.748 -1.644 0 0 0 0 0 0 0 +2.146 -26.667 -1.639 0 0 0 0 0 0 0 +2.228 -26.641 -1.637 0 0 0 0 0 0 0 +2.311 -26.625 -1.637 0 0 0 0 0 0 0 +2.395 -26.62 -1.637 0 0 0 0 0 0 0 +2.429 -26.533 -1.631 0 0 0 0 0 0 0 +2.502 -26.416 -1.623 0 0 0 0 0 0 0 +2.582 -26.368 -1.621 0 0 0 0 0 0 0 +2.649 -26.209 -1.61 0 0 0 0 0 0 0 +2.709 -25.978 -1.595 0 0 0 0 0 0 0 +2.763 -25.714 -1.577 0 0 0 0 0 0 0 +2.78 -25.493 -1.562 0 0 0 0 0 0 0 +2.834 -25.246 -1.546 0 0 0 0 0 0 0 +2.886 -24.999 -1.529 0 0 0 0 0 0 0 +2.935 -24.738 -1.512 0 0 0 0 0 0 0 +2.986 -24.507 -1.497 0 0 0 0 0 0 0 +3.036 -24.284 -1.482 0 0 0 0 0 0 0 +3.088 -24.084 -1.468 0 0 0 0 0 0 0 +3.141 -23.896 -1.456 0 0 0 0 0 0 0 +3.16 -23.751 -1.446 0 0 0 0 0 0 0 +3.222 -23.652 -1.44 0 0 0 0 0 0 0 +3.306 -23.713 -1.445 0 0 0 0 0 0 0 +3.381 -23.706 -1.445 0 0 0 0 0 0 0 +3.446 -23.626 -1.441 0 0 0 0 0 0 0 +3.458 -23.193 -1.411 0 0 0 0 0 0 0 +3.435 -22.551 -1.367 0 0 0 0 0 0 0 +3.458 -22.466 -1.362 0 0 0 0 0 0 0 +3.522 -22.41 -1.359 0 0 0 0 0 0 0 +3.614 -22.533 -1.368 0 0 0 0 0 0 0 +3.67 -22.431 -1.362 0 0 0 0 0 0 0 +3.783 -22.677 -1.38 0 0 0 0 0 0 0 +3.874 -22.783 -1.388 0 0 0 0 0 0 0 +3.712 -21.414 -1.293 0 0 0 0 0 0 0 +3.613 -20.643 -1.24 0 0 0 0 0 0 0 +3.688 -20.693 -1.244 0 0 0 0 0 0 0 +3.797 -20.921 -1.261 0 0 0 0 0 0 0 +3.838 -20.775 -1.251 0 0 0 0 0 0 0 +3.867 -20.216 -1.214 0 0 0 0 0 0 0 +3.819 -19.629 -1.174 0 0 0 0 0 0 0 +3.836 -19.551 -1.169 0 0 0 0 0 0 0 +3.957 -19.84 -1.19 0 0 0 0 0 0 0 +3.982 -19.642 -1.177 0 0 0 0 0 0 0 +4.067 -19.743 -1.185 0 0 0 0 0 0 0 +1.378 -6.499 -0.255 0 0 0 0 0 0 0 +1.396 -6.484 -0.254 0 0 0 0 0 0 0 +1.41 -6.449 -0.252 0 0 0 0 0 0 0 +1.42 -6.449 -0.252 0 0 0 0 0 0 0 +1.441 -6.446 -0.252 0 0 0 0 0 0 0 +1.459 -6.43 -0.252 0 0 0 0 0 0 0 +1.477 -6.417 -0.251 0 0 0 0 0 0 0 +1.505 -6.448 -0.253 0 0 0 0 0 0 0 +1.52 -6.418 -0.252 0 0 0 0 0 0 0 +1.551 -6.46 -0.255 0 0 0 0 0 0 0 +1.566 -6.48 -0.257 0 0 0 0 0 0 0 +4.381 -17.827 -1.061 0 0 0 0 0 0 0 +4.428 -17.776 -1.058 0 0 0 0 0 0 0 +4.401 -17.433 -1.035 0 0 0 0 0 0 0 +4.381 -17.125 -1.014 0 0 0 0 0 0 0 +4.44 -17.133 -1.016 0 0 0 0 0 0 0 +4.488 -17.207 -1.021 0 0 0 0 0 0 0 +4.497 -17.019 -1.009 0 0 0 0 0 0 0 +4.518 -16.883 -1 0 0 0 0 0 0 0 +4.554 -16.806 -0.996 0 0 0 0 0 0 0 +4.529 -16.508 -0.976 0 0 0 0 0 0 0 +4.603 -16.575 -0.981 0 0 0 0 0 0 0 +4.622 -16.441 -0.973 0 0 0 0 0 0 0 +4.611 -16.301 -0.963 0 0 0 0 0 0 0 +4.665 -16.298 -0.964 0 0 0 0 0 0 0 +4.679 -16.155 -0.955 0 0 0 0 0 0 0 +4.711 -16.073 -0.95 0 0 0 0 0 0 0 +4.721 -15.922 -0.941 0 0 0 0 0 0 0 +4.712 -15.71 -0.926 0 0 0 0 0 0 0 +4.768 -15.717 -0.928 0 0 0 0 0 0 0 +4.789 -15.696 -0.927 0 0 0 0 0 0 0 +4.823 -15.631 -0.923 0 0 0 0 0 0 0 +4.827 -15.471 -0.913 0 0 0 0 0 0 0 +4.854 -15.387 -0.908 0 0 0 0 0 0 0 +4.886 -15.321 -0.904 0 0 0 0 0 0 0 +4.902 -15.204 -0.897 0 0 0 0 0 0 0 +4.919 -15.094 -0.89 0 0 0 0 0 0 0 +4.96 -15.141 -0.894 0 0 0 0 0 0 0 +5.013 -15.143 -0.895 0 0 0 0 0 0 0 +5.098 -15.239 -0.903 0 0 0 0 0 0 0 +5.129 -15.171 -0.9 0 0 0 0 0 0 0 +5.216 -15.27 -0.908 0 0 0 0 0 0 0 +5.248 -15.209 -0.905 0 0 0 0 0 0 0 +5.277 -15.137 -0.901 0 0 0 0 0 0 0 +5.319 -15.182 -0.905 0 0 0 0 0 0 0 +3.736 -10.533 -0.567 0 0 0 0 0 0 0 +3.742 -10.446 -0.561 0 0 0 0 0 0 0 +3.812 -10.538 -0.569 0 0 0 0 0 0 0 +5.557 -15.245 -0.914 0 0 0 0 0 0 0 +5.622 -15.274 -0.918 0 0 0 0 0 0 0 +5.669 -15.255 -0.918 0 0 0 0 0 0 0 +5.714 -15.302 -0.922 0 0 0 0 0 0 0 +5.752 -15.258 -0.92 0 0 0 0 0 0 0 +5.894 -15.488 -0.938 0 0 0 0 0 0 0 +5.937 -15.454 -0.937 0 0 0 0 0 0 0 +5.963 -15.378 -0.933 0 0 0 0 0 0 0 +6.024 -15.391 -0.935 0 0 0 0 0 0 0 +6.055 -15.327 -0.932 0 0 0 0 0 0 0 +6.122 -15.427 -0.94 0 0 0 0 0 0 0 +6.128 -15.302 -0.932 0 0 0 0 0 0 0 +6.182 -15.298 -0.933 0 0 0 0 0 0 0 +6.23 -15.276 -0.933 0 0 0 0 0 0 0 +6.306 -15.325 -0.938 0 0 0 0 0 0 0 +6.38 -15.368 -0.943 0 0 0 0 0 0 0 +6.442 -15.381 -0.945 0 0 0 0 0 0 0 +5.586 -13.269 -0.788 0 0 0 0 0 0 0 +5.673 -13.36 -0.797 0 0 0 0 0 0 0 +5.707 -13.324 -0.795 0 0 0 0 0 0 0 +5.76 -13.331 -0.797 0 0 0 0 0 0 0 +5.795 -13.297 -0.796 0 0 0 0 0 0 0 +5.821 -13.244 -0.793 0 0 0 0 0 0 0 +6.874 -15.516 -0.966 0 0 0 0 0 0 0 +5.924 -13.307 -0.8 0 0 0 0 0 0 0 +5.962 -13.279 -0.799 0 0 0 0 0 0 0 +5.974 -13.195 -0.794 0 0 0 0 0 0 0 +5.94 -13.011 -0.782 0 0 0 0 0 0 0 +5.989 -13.009 -0.783 0 0 0 0 0 0 0 +6.104 -13.151 -0.795 0 0 0 0 0 0 0 +6.143 -13.126 -0.795 0 0 0 0 0 0 0 +6.302 -13.413 -0.818 0 0 0 0 0 0 0 +6.369 -13.446 -0.822 0 0 0 0 0 0 0 +6.414 -13.431 -0.822 0 0 0 0 0 0 0 +6.404 -13.303 -0.814 0 0 0 0 0 0 0 +6.47 -13.333 -0.818 0 0 0 0 0 0 0 +6.586 -13.465 -0.829 0 0 0 0 0 0 0 +6.58 -13.346 -0.822 0 0 0 0 0 0 0 +6.637 -13.409 -0.827 0 0 0 0 0 0 0 +6.141 -12.305 -0.744 0 0 0 0 0 0 0 +6.219 -12.364 -0.75 0 0 0 0 0 0 0 +6.232 -12.293 -0.746 0 0 0 0 0 0 0 +6.803 -13.321 -0.827 0 0 0 0 0 0 0 +6.856 -13.32 -0.829 0 0 0 0 0 0 0 +6.974 -13.446 -0.84 0 0 0 0 0 0 0 +6.95 -13.348 -0.833 0 0 0 0 0 0 0 +6.99 -13.323 -0.833 0 0 0 0 0 0 0 +7.031 -13.299 -0.833 0 0 0 0 0 0 0 +7.109 -13.346 -0.838 0 0 0 0 0 0 0 +7.201 -13.416 -0.846 0 0 0 0 0 0 0 +7.251 -13.408 -0.847 0 0 0 0 0 0 0 +7.262 -13.329 -0.842 0 0 0 0 0 0 0 +7.299 -13.347 -0.845 0 0 0 0 0 0 0 +7.341 -13.324 -0.845 0 0 0 0 0 0 0 +7.493 -13.5 -0.86 0 0 0 0 0 0 0 +6.633 -11.855 -0.733 0 0 0 0 0 0 0 +7.54 -13.385 -0.855 0 0 0 0 0 0 0 +7.571 -13.342 -0.853 0 0 0 0 0 0 0 +7.593 -13.284 -0.851 0 0 0 0 0 0 0 +7.641 -13.318 -0.854 0 0 0 0 0 0 0 +7.718 -13.357 -0.859 0 0 0 0 0 0 0 +7.753 -13.32 -0.858 0 0 0 0 0 0 0 +7.894 -13.465 -0.872 0 0 0 0 0 0 0 +7.954 -13.471 -0.874 0 0 0 0 0 0 0 +7.932 -13.338 -0.866 0 0 0 0 0 0 0 +8.027 -13.402 -0.873 0 0 0 0 0 0 0 +8.029 -13.356 -0.87 0 0 0 0 0 0 0 +8.155 -13.471 -0.881 0 0 0 0 0 0 0 +8.25 -13.533 -0.888 0 0 0 0 0 0 0 +8.286 -13.495 -0.887 0 0 0 0 0 0 0 +8.341 -13.489 -0.889 0 0 0 0 0 0 0 +7.061 -11.331 -0.716 0 0 0 0 0 0 0 +7.086 -11.292 -0.715 0 0 0 0 0 0 0 +7.104 -11.283 -0.715 0 0 0 0 0 0 0 +7.128 -11.242 -0.714 0 0 0 0 0 0 0 +7.172 -11.233 -0.715 0 0 0 0 0 0 0 +7.194 -11.19 -0.713 0 0 0 0 0 0 0 +7.222 -11.156 -0.712 0 0 0 0 0 0 0 +7.267 -11.148 -0.713 0 0 0 0 0 0 0 +7.287 -11.104 -0.712 0 0 0 0 0 0 0 +7.303 -11.089 -0.711 0 0 0 0 0 0 0 +7.34 -11.069 -0.712 0 0 0 0 0 0 0 +7.368 -11.036 -0.711 0 0 0 0 0 0 0 +7.397 -11.004 -0.71 0 0 0 0 0 0 0 +7.426 -10.973 -0.709 0 0 0 0 0 0 0 +7.447 -10.93 -0.708 0 0 0 0 0 0 0 +7.485 -10.911 -0.708 0 0 0 0 0 0 0 +7.498 -10.894 -0.708 0 0 0 0 0 0 0 +7.525 -10.859 -0.707 0 0 0 0 0 0 0 +7.554 -10.829 -0.706 0 0 0 0 0 0 0 +7.589 -10.807 -0.706 0 0 0 0 0 0 0 +7.61 -10.765 -0.705 0 0 0 0 0 0 0 +7.644 -10.741 -0.705 0 0 0 0 0 0 0 +7.702 -10.751 -0.708 0 0 0 0 0 0 0 +7.685 -10.692 -0.704 0 0 0 0 0 0 0 +9.388 -12.984 -0.9 0 0 0 0 0 0 0 +9.407 -12.924 -0.898 0 0 0 0 0 0 0 +9.412 -12.846 -0.894 0 0 0 0 0 0 0 +9.424 -12.778 -0.89 0 0 0 0 0 0 0 +9.433 -12.707 -0.887 0 0 0 0 0 0 0 +9.44 -12.632 -0.883 0 0 0 0 0 0 0 +9.455 -12.57 -0.88 0 0 0 0 0 0 0 +9.439 -12.508 -0.876 0 0 0 0 0 0 0 +9.454 -12.446 -0.873 0 0 0 0 0 0 0 +9.469 -12.385 -0.871 0 0 0 0 0 0 0 +9.478 -12.315 -0.867 0 0 0 0 0 0 0 +9.488 -12.249 -0.864 0 0 0 0 0 0 0 +9.502 -12.188 -0.861 0 0 0 0 0 0 0 +9.508 -12.117 -0.858 0 0 0 0 0 0 0 +9.499 -12.066 -0.854 0 0 0 0 0 0 0 +9.509 -12 -0.851 0 0 0 0 0 0 0 +9.521 -11.939 -0.849 0 0 0 0 0 0 0 +9.535 -11.879 -0.846 0 0 0 0 0 0 0 +9.54 -11.809 -0.842 0 0 0 0 0 0 0 +9.556 -11.752 -0.84 0 0 0 0 0 0 0 +9.543 -11.699 -0.837 0 0 0 0 0 0 0 +9.548 -11.63 -0.833 0 0 0 0 0 0 0 +9.556 -11.566 -0.83 0 0 0 0 0 0 0 +9.446 -11.359 -0.814 0 0 0 0 0 0 0 +9.438 -11.278 -0.81 0 0 0 0 0 0 0 +9.435 -11.202 -0.806 0 0 0 0 0 0 0 +9.474 -11.177 -0.806 0 0 0 0 0 0 0 +9.469 -11.135 -0.804 0 0 0 0 0 0 0 +9.482 -11.079 -0.801 0 0 0 0 0 0 0 +9.486 -11.014 -0.798 0 0 0 0 0 0 0 +9.507 -10.968 -0.797 0 0 0 0 0 0 0 +9.502 -10.893 -0.792 0 0 0 0 0 0 0 +9.652 -10.995 -0.804 0 0 0 0 0 0 0 +8.576 -9.703 -0.689 0 0 0 0 0 0 0 +8.558 -9.653 -0.685 0 0 0 0 0 0 0 +8.599 -9.638 -0.687 0 0 0 0 0 0 0 +8.648 -9.631 -0.688 0 0 0 0 0 0 0 +8.681 -9.607 -0.689 0 0 0 0 0 0 0 +8.727 -9.598 -0.69 0 0 0 0 0 0 0 +9.578 -10.404 -0.771 0 0 0 0 0 0 0 +9.582 -10.343 -0.768 0 0 0 0 0 0 0 +9.567 -10.295 -0.765 0 0 0 0 0 0 0 +9.587 -10.251 -0.764 0 0 0 0 0 0 0 +9.596 -10.196 -0.761 0 0 0 0 0 0 0 +9.598 -10.134 -0.758 0 0 0 0 0 0 0 +9.61 -10.084 -0.756 0 0 0 0 0 0 0 +9.621 -10.032 -0.754 0 0 0 0 0 0 0 +9.626 -9.974 -0.752 0 0 0 0 0 0 0 +9.618 -9.935 -0.749 0 0 0 0 0 0 0 +9.63 -9.884 -0.747 0 0 0 0 0 0 0 +9.649 -9.841 -0.746 0 0 0 0 0 0 0 +9.08 -9.201 -0.687 0 0 0 0 0 0 0 +9.316 -9.382 -0.708 0 0 0 0 0 0 0 +9.064 -9.07 -0.68 0 0 0 0 0 0 0 +9.242 -9.191 -0.695 0 0 0 0 0 0 0 +9.573 -9.491 -0.725 0 0 0 0 0 0 0 +9.675 -9.533 -0.732 0 0 0 0 0 0 0 +9.637 -9.435 -0.726 0 0 0 0 0 0 0 +9.615 -9.237 -0.715 0 0 0 0 0 0 0 +9.717 -9.248 -0.721 0 0 0 0 0 0 0 +9.726 -9.199 -0.719 0 0 0 0 0 0 0 +9.732 -9.146 -0.717 0 0 0 0 0 0 0 +9.739 -9.095 -0.715 0 0 0 0 0 0 0 +9.757 -9.055 -0.714 0 0 0 0 0 0 0 +9.761 -9.001 -0.711 0 0 0 0 0 0 0 +9.774 -8.957 -0.71 0 0 0 0 0 0 0 +9.762 -8.917 -0.708 0 0 0 0 0 0 0 +9.769 -8.868 -0.706 0 0 0 0 0 0 0 +9.778 -8.82 -0.704 0 0 0 0 0 0 0 +9.783 -8.769 -0.702 0 0 0 0 0 0 0 +9.262 -8.247 -0.651 0 0 0 0 0 0 0 +9.264 -8.197 -0.649 0 0 0 0 0 0 0 +9.285 -8.164 -0.649 0 0 0 0 0 0 0 +9.295 -8.147 -0.648 0 0 0 0 0 0 0 +9.316 -8.113 -0.648 0 0 0 0 0 0 0 +9.34 -8.083 -0.648 0 0 0 0 0 0 0 +9.353 -8.043 -0.647 0 0 0 0 0 0 0 +9.375 -8.011 -0.646 0 0 0 0 0 0 0 +9.399 -7.98 -0.646 0 0 0 0 0 0 0 +9.416 -7.944 -0.646 0 0 0 0 0 0 0 +9.407 -7.911 -0.644 0 0 0 0 0 0 0 +9.435 -7.884 -0.644 0 0 0 0 0 0 0 +9.443 -7.841 -0.642 0 0 0 0 0 0 0 +9.466 -7.81 -0.642 0 0 0 0 0 0 0 +9.475 -7.767 -0.641 0 0 0 0 0 0 0 +9.484 -7.725 -0.639 0 0 0 0 0 0 0 +9.491 -7.681 -0.638 0 0 0 0 0 0 0 +9.497 -7.661 -0.637 0 0 0 0 0 0 0 +9.52 -7.63 -0.637 0 0 0 0 0 0 0 +9.534 -7.593 -0.636 0 0 0 0 0 0 0 +9.556 -7.561 -0.636 0 0 0 0 0 0 0 +9.557 -7.513 -0.634 0 0 0 0 0 0 0 +9.568 -7.473 -0.633 0 0 0 0 0 0 0 +9.553 -7.437 -0.631 0 0 0 0 0 0 0 +9.538 -7.377 -0.628 0 0 0 0 0 0 0 +9.526 -7.321 -0.625 0 0 0 0 0 0 0 +9.556 -7.296 -0.625 0 0 0 0 0 0 0 +9.558 -7.25 -0.623 0 0 0 0 0 0 0 +9.595 -7.231 -0.625 0 0 0 0 0 0 0 +9.629 -7.209 -0.625 0 0 0 0 0 0 0 +9.672 -7.194 -0.627 0 0 0 0 0 0 0 +9.736 -7.218 -0.632 0 0 0 0 0 0 0 +9.817 -7.23 -0.637 0 0 0 0 0 0 0 +9.865 -7.218 -0.639 0 0 0 0 0 0 0 +9.917 -7.208 -0.641 0 0 0 0 0 0 0 +9.951 -7.185 -0.642 0 0 0 0 0 0 0 +9.994 -7.169 -0.644 0 0 0 0 0 0 0 +10.022 -7.141 -0.645 0 0 0 0 0 0 0 +10.055 -7.142 -0.646 0 0 0 0 0 0 0 +10.13 -7.147 -0.651 0 0 0 0 0 0 0 +10.472 -7.34 -0.678 0 0 0 0 0 0 0 +10.507 -7.315 -0.679 0 0 0 0 0 0 0 +10.525 -7.279 -0.678 0 0 0 0 0 0 0 +10.552 -7.249 -0.679 0 0 0 0 0 0 0 +10.57 -7.213 -0.678 0 0 0 0 0 0 0 +10.58 -7.195 -0.678 0 0 0 0 0 0 0 +10.607 -7.165 -0.679 0 0 0 0 0 0 0 +10.626 -7.129 -0.678 0 0 0 0 0 0 0 +10.652 -7.098 -0.679 0 0 0 0 0 0 0 +10.673 -7.064 -0.678 0 0 0 0 0 0 0 +10.695 -7.03 -0.678 0 0 0 0 0 0 0 +10.715 -6.995 -0.678 0 0 0 0 0 0 0 +10.726 -6.978 -0.678 0 0 0 0 0 0 0 +10.75 -6.946 -0.678 0 0 0 0 0 0 0 +10.766 -6.909 -0.678 0 0 0 0 0 0 0 +10.791 -6.877 -0.678 0 0 0 0 0 0 0 +10.816 -6.845 -0.679 0 0 0 0 0 0 0 +10.834 -6.809 -0.678 0 0 0 0 0 0 0 +10.856 -6.775 -0.678 0 0 0 0 0 0 0 +10.872 -6.761 -0.679 0 0 0 0 0 0 0 +10.888 -6.724 -0.678 0 0 0 0 0 0 0 +10.91 -6.691 -0.678 0 0 0 0 0 0 0 +10.942 -6.663 -0.679 0 0 0 0 0 0 0 +10.949 -6.62 -0.678 0 0 0 0 0 0 0 +10.98 -6.592 -0.679 0 0 0 0 0 0 0 +11.04 -6.581 -0.682 0 0 0 0 0 0 0 +11.072 -6.577 -0.684 0 0 0 0 0 0 0 +11.121 -6.558 -0.686 0 0 0 0 0 0 0 +11.172 -6.541 -0.689 0 0 0 0 0 0 0 +11.222 -6.523 -0.691 0 0 0 0 0 0 0 +11.28 -6.51 -0.694 0 0 0 0 0 0 0 +11.33 -6.491 -0.696 0 0 0 0 0 0 0 +11.387 -6.477 -0.699 0 0 0 0 0 0 0 +11.423 -6.474 -0.701 0 0 0 0 0 0 0 +11.476 -6.456 -0.704 0 0 0 0 0 0 0 +11.524 -6.436 -0.706 0 0 0 0 0 0 0 +11.571 -6.414 -0.708 0 0 0 0 0 0 0 +11.622 -6.395 -0.711 0 0 0 0 0 0 0 +11.675 -6.377 -0.713 0 0 0 0 0 0 0 +11.739 -6.364 -0.717 0 0 0 0 0 0 0 +11.77 -6.357 -0.718 0 0 0 0 0 0 0 +11.827 -6.34 -0.721 0 0 0 0 0 0 0 +11.877 -6.319 -0.723 0 0 0 0 0 0 0 +11.935 -6.302 -0.727 0 0 0 0 0 0 0 +11.992 -6.284 -0.729 0 0 0 0 0 0 0 +12.058 -6.27 -0.733 0 0 0 0 0 0 0 +12.1 -6.244 -0.735 0 0 0 0 0 0 0 +8.788 -4.509 -0.477 0 0 0 0 0 0 0 +8.797 -4.479 -0.477 0 0 0 0 0 0 0 +12.259 -6.205 -0.743 0 0 0 0 0 0 0 +12.314 -6.184 -0.746 0 0 0 0 0 0 0 +12.373 -6.165 -0.749 0 0 0 0 0 0 0 +12.419 -6.14 -0.751 0 0 0 0 0 0 0 +12.48 -6.121 -0.754 0 0 0 0 0 0 0 +12.538 -6.125 -0.758 0 0 0 0 0 0 0 +12.596 -6.105 -0.761 0 0 0 0 0 0 0 +12.651 -6.083 -0.764 0 0 0 0 0 0 0 +12.713 -6.064 -0.767 0 0 0 0 0 0 0 +12.774 -6.043 -0.77 0 0 0 0 0 0 0 +12.838 -6.025 -0.774 0 0 0 0 0 0 0 +12.893 -6.001 -0.776 0 0 0 0 0 0 0 +12.953 -6.004 -0.78 0 0 0 0 0 0 0 +13.006 -5.98 -0.783 0 0 0 0 0 0 0 +13.076 -5.962 -0.787 0 0 0 0 0 0 0 +13.134 -5.939 -0.79 0 0 0 0 0 0 0 +13.198 -5.918 -0.793 0 0 0 0 0 0 0 +13.263 -5.897 -0.797 0 0 0 0 0 0 0 +13.334 -5.879 -0.8 0 0 0 0 0 0 0 +13.376 -5.872 -0.803 0 0 0 0 0 0 0 +13.444 -5.852 -0.807 0 0 0 0 0 0 0 +13.508 -5.829 -0.81 0 0 0 0 0 0 0 +13.568 -5.805 -0.813 0 0 0 0 0 0 0 +13.641 -5.786 -0.817 0 0 0 0 0 0 0 +13.705 -5.762 -0.821 0 0 0 0 0 0 0 +13.768 -5.738 -0.824 0 0 0 0 0 0 0 +13.823 -5.735 -0.828 0 0 0 0 0 0 0 +13.89 -5.713 -0.831 0 0 0 0 0 0 0 +13.947 -5.685 -0.834 0 0 0 0 0 0 0 +14.076 -5.686 -0.842 0 0 0 0 0 0 0 +14.182 -5.677 -0.849 0 0 0 0 0 0 0 +14.102 -5.594 -0.842 0 0 0 0 0 0 0 +14.047 -5.521 -0.836 0 0 0 0 0 0 0 +14.021 -5.485 -0.834 0 0 0 0 0 0 0 +14.251 -5.524 -0.85 0 0 0 0 0 0 0 +14.189 -5.448 -0.844 0 0 0 0 0 0 0 +13.995 -5.323 -0.828 0 0 0 0 0 0 0 +14.178 -5.342 -0.84 0 0 0 0 0 0 0 +14.204 -5.301 -0.841 0 0 0 0 0 0 0 +14.271 -5.275 -0.845 0 0 0 0 0 0 0 +14.652 -5.391 -0.872 0 0 0 0 0 0 0 +14.374 -5.237 -0.85 0 0 0 0 0 0 0 +14.745 -5.32 -0.876 0 0 0 0 0 0 0 +14.786 -5.283 -0.878 0 0 0 0 0 0 0 +14.863 -5.257 -0.883 0 0 0 0 0 0 0 +14.942 -5.233 -0.887 0 0 0 0 0 0 0 +14.498 -5.025 -0.854 0 0 0 0 0 0 0 +15.023 -5.182 -0.891 0 0 0 0 0 0 0 +14.678 -5.011 -0.865 0 0 0 0 0 0 0 +14.785 -4.995 -0.872 0 0 0 0 0 0 0 +14.836 -4.961 -0.874 0 0 0 0 0 0 0 +14.901 -4.931 -0.878 0 0 0 0 0 0 0 +14.882 -4.873 -0.875 0 0 0 0 0 0 0 +15.527 -5.031 -0.921 0 0 0 0 0 0 0 +15.569 -5.018 -0.923 0 0 0 0 0 0 0 +15.654 -4.991 -0.928 0 0 0 0 0 0 0 +15.675 -4.943 -0.929 0 0 0 0 0 0 0 +15.656 -4.883 -0.926 0 0 0 0 0 0 0 +15.61 -4.815 -0.922 0 0 0 0 0 0 0 +15.601 -4.759 -0.92 0 0 0 0 0 0 0 +15.192 -4.581 -0.89 0 0 0 0 0 0 0 +15.642 -4.691 -0.921 0 0 0 0 0 0 0 +15.62 -4.631 -0.919 0 0 0 0 0 0 0 +15.589 -4.568 -0.916 0 0 0 0 0 0 0 +15.551 -4.504 -0.912 0 0 0 0 0 0 0 +15.517 -4.441 -0.908 0 0 0 0 0 0 0 +15.572 -4.404 -0.911 0 0 0 0 0 0 0 +15.614 -4.363 -0.913 0 0 0 0 0 0 0 +15.669 -4.352 -0.917 0 0 0 0 0 0 0 +15.713 -4.311 -0.919 0 0 0 0 0 0 0 +15.773 -4.275 -0.922 0 0 0 0 0 0 0 +15.833 -4.238 -0.926 0 0 0 0 0 0 0 +15.892 -4.2 -0.929 0 0 0 0 0 0 0 +15.957 -4.164 -0.933 0 0 0 0 0 0 0 +16.011 -4.124 -0.935 0 0 0 0 0 0 0 +16.061 -4.083 -0.938 0 0 0 0 0 0 0 +16.112 -4.069 -0.941 0 0 0 0 0 0 0 +16.19 -4.035 -0.946 0 0 0 0 0 0 0 +16.234 -3.992 -0.948 0 0 0 0 0 0 0 +16.293 -3.952 -0.951 0 0 0 0 0 0 0 +16.353 -3.913 -0.955 0 0 0 0 0 0 0 +16.406 -3.871 -0.958 0 0 0 0 0 0 0 +16.481 -3.834 -0.962 0 0 0 0 0 0 0 +16.531 -3.819 -0.965 0 0 0 0 0 0 0 +16.592 -3.778 -0.969 0 0 0 0 0 0 0 +16.65 -3.736 -0.972 0 0 0 0 0 0 0 +16.713 -3.695 -0.976 0 0 0 0 0 0 0 +16.773 -3.653 -0.979 0 0 0 0 0 0 0 +16.837 -3.612 -0.983 0 0 0 0 0 0 0 +17.102 -3.641 -1.001 0 0 0 0 0 0 0 +7.464 -1.55 -0.322 0 0 0 0 0 0 0 +7.423 -1.517 -0.319 0 0 0 0 0 0 0 +7.373 -1.482 -0.315 0 0 0 0 0 0 0 +7.388 -1.461 -0.316 0 0 0 0 0 0 0 +7.373 -1.434 -0.315 0 0 0 0 0 0 0 +7.371 -1.41 -0.314 0 0 0 0 0 0 0 +7.37 -1.385 -0.314 0 0 0 0 0 0 0 +7.372 -1.374 -0.314 0 0 0 0 0 0 0 +7.374 -1.35 -0.314 0 0 0 0 0 0 0 +7.373 -1.326 -0.313 0 0 0 0 0 0 0 +7.377 -1.303 -0.313 0 0 0 0 0 0 0 +7.377 -1.279 -0.313 0 0 0 0 0 0 0 +7.389 -1.257 -0.314 0 0 0 0 0 0 0 +7.401 -1.235 -0.314 0 0 0 0 0 0 0 +7.418 -1.226 -0.315 0 0 0 0 0 0 0 +7.432 -1.205 -0.316 0 0 0 0 0 0 0 +7.43 -1.18 -0.315 0 0 0 0 0 0 0 +7.453 -1.16 -0.317 0 0 0 0 0 0 0 +7.482 -1.141 -0.319 0 0 0 0 0 0 0 +13.595 -2.05 -0.744 0 0 0 0 0 0 0 +13.642 -2.014 -0.747 0 0 0 0 0 0 0 +13.685 -1.998 -0.749 0 0 0 0 0 0 0 +13.806 -1.972 -0.757 0 0 0 0 0 0 0 +19.055 -2.67 -1.122 0 0 0 0 0 0 0 +19.135 -2.62 -1.127 0 0 0 0 0 0 0 +19.2 -2.568 -1.131 0 0 0 0 0 0 0 +19.273 -2.516 -1.135 0 0 0 0 0 0 0 +19.249 -2.451 -1.133 0 0 0 0 0 0 0 +19.224 -2.417 -1.131 0 0 0 0 0 0 0 +19.33 -2.369 -1.138 0 0 0 0 0 0 0 +19.383 -2.314 -1.141 0 0 0 0 0 0 0 +19.422 -2.257 -1.143 0 0 0 0 0 0 0 +19.468 -2.2 -1.146 0 0 0 0 0 0 0 +19.517 -2.144 -1.149 0 0 0 0 0 0 0 +19.573 -2.088 -1.152 0 0 0 0 0 0 0 +19.624 -2.062 -1.156 0 0 0 0 0 0 0 +19.686 -2.006 -1.159 0 0 0 0 0 0 0 +19.734 -1.949 -1.162 0 0 0 0 0 0 0 +19.764 -1.889 -1.164 0 0 0 0 0 0 0 +19.833 -1.833 -1.168 0 0 0 0 0 0 0 +19.885 -1.775 -1.171 0 0 0 0 0 0 0 +19.93 -1.716 -1.174 0 0 0 0 0 0 0 +19.98 -1.688 -1.177 0 0 0 0 0 0 0 +20.033 -1.63 -1.181 0 0 0 0 0 0 0 +20.094 -1.571 -1.185 0 0 0 0 0 0 0 +20.142 -1.511 -1.188 0 0 0 0 0 0 0 +20.203 -1.452 -1.191 0 0 0 0 0 0 0 +20.432 -1.404 -1.207 0 0 0 0 0 0 0 +20.791 -1.364 -1.231 0 0 0 0 0 0 0 +20.693 -1.325 -1.225 0 0 0 0 0 0 0 +20.596 -1.253 -1.218 0 0 0 0 0 0 0 +20.865 -1.204 -1.236 0 0 0 0 0 0 0 +20.832 -1.137 -1.233 0 0 0 0 0 0 0 +20.85 -1.072 -1.234 0 0 0 0 0 0 0 +20.889 -1.008 -1.237 0 0 0 0 0 0 0 +20.894 -0.943 -1.237 0 0 0 0 0 0 0 +20.812 -0.906 -1.231 0 0 0 0 0 0 0 +20.795 -0.84 -1.23 0 0 0 0 0 0 0 +20.843 -0.776 -1.233 0 0 0 0 0 0 0 +20.909 -0.713 -1.237 0 0 0 0 0 0 0 +20.969 -0.649 -1.241 0 0 0 0 0 0 0 +21.021 -0.585 -1.245 0 0 0 0 0 0 0 +21.071 -0.52 -1.248 0 0 0 0 0 0 0 +21.133 -0.488 -1.252 0 0 0 0 0 0 0 +21.194 -0.423 -1.256 0 0 0 0 0 0 0 +21.257 -0.358 -1.261 0 0 0 0 0 0 0 +21.312 -0.292 -1.264 0 0 0 0 0 0 0 +21.371 -0.226 -1.268 0 0 0 0 0 0 0 +21.428 -0.159 -1.272 0 0 0 0 0 0 0 +21.482 -0.092 -1.276 0 0 0 0 0 0 0 +21.548 -0.058 -1.28 0 0 0 0 0 0 0 +21.967 0.02 -1.417 0 0 0 0 0 0 0 +13.299 0.085 -0.778 0 0 0 0 0 0 0 +13.488 0.129 -0.792 0 0 0 0 0 0 0 +21.981 0.296 -1.419 0 0 0 0 0 0 0 +22.379 0.372 -1.448 0 0 0 0 0 0 0 +22.535 0.446 -1.46 0 0 0 0 0 0 0 +22.626 0.483 -1.466 0 0 0 0 0 0 0 +22.623 0.554 -1.466 0 0 0 0 0 0 0 +13.631 0.367 -0.803 0 0 0 0 0 0 0 +22.659 0.698 -1.469 0 0 0 0 0 0 0 +13.78 0.458 -0.814 0 0 0 0 0 0 0 +13.773 0.501 -0.814 0 0 0 0 0 0 0 +14.03 0.555 -0.833 0 0 0 0 0 0 0 +14.083 0.579 -0.837 0 0 0 0 0 0 0 +14.135 0.626 -0.841 0 0 0 0 0 0 0 +14.197 0.673 -0.846 0 0 0 0 0 0 0 +14.268 0.722 -0.851 0 0 0 0 0 0 0 +14.465 0.778 -0.866 0 0 0 0 0 0 0 +14.351 0.816 -0.858 0 0 0 0 0 0 0 +23.034 1.399 -1.499 0 0 0 0 0 0 0 +14.553 0.943 -0.873 0 0 0 0 0 0 0 +14.631 0.994 -0.879 0 0 0 0 0 0 0 +23.17 1.663 -1.51 0 0 0 0 0 0 0 +23.181 1.737 -1.512 0 0 0 0 0 0 0 +23.195 1.812 -1.513 0 0 0 0 0 0 0 +23.209 1.886 -1.515 0 0 0 0 0 0 0 +23.027 1.907 -1.501 0 0 0 0 0 0 0 +15.101 1.337 -0.916 0 0 0 0 0 0 0 +14.926 1.369 -0.903 0 0 0 0 0 0 0 +15.561 1.478 -0.95 0 0 0 0 0 0 0 +15.719 1.543 -0.962 0 0 0 0 0 0 0 +15.628 1.583 -0.956 0 0 0 0 0 0 0 +15.545 1.599 -0.95 0 0 0 0 0 0 0 +23.351 2.49 -1.529 0 0 0 0 0 0 0 +23.315 2.56 -1.527 0 0 0 0 0 0 0 +23.38 2.642 -1.532 0 0 0 0 0 0 0 +23.285 2.705 -1.526 0 0 0 0 0 0 0 +23.338 2.785 -1.531 0 0 0 0 0 0 0 +23.475 2.877 -1.541 0 0 0 0 0 0 0 +23.529 2.959 -1.546 0 0 0 0 0 0 0 +23.4 2.98 -1.537 0 0 0 0 0 0 0 +16.368 2.181 -1.015 0 0 0 0 0 0 0 +23.626 3.235 -1.556 0 0 0 0 0 0 0 +23.704 3.322 -1.562 0 0 0 0 0 0 0 +23.747 3.404 -1.566 0 0 0 0 0 0 0 +23.768 3.483 -1.569 0 0 0 0 0 0 0 +20.916 3.096 -1.357 0 0 0 0 0 0 0 +20.918 3.163 -1.358 0 0 0 0 0 0 0 +21.15 3.267 -1.376 0 0 0 0 0 0 0 +20.858 3.288 -1.355 0 0 0 0 0 0 0 +17.335 2.784 -1.092 0 0 0 0 0 0 0 +17.435 2.857 -1.1 0 0 0 0 0 0 0 +17.534 2.93 -1.108 0 0 0 0 0 0 0 +23.896 4.041 -1.585 0 0 0 0 0 0 0 +23.93 4.124 -1.588 0 0 0 0 0 0 0 +23.872 4.191 -1.585 0 0 0 0 0 0 0 +23.949 4.283 -1.591 0 0 0 0 0 0 0 +23.955 4.361 -1.593 0 0 0 0 0 0 0 +23.977 4.443 -1.596 0 0 0 0 0 0 0 +23.965 4.519 -1.596 0 0 0 0 0 0 0 +23.967 4.558 -1.596 0 0 0 0 0 0 0 +23.974 4.638 -1.598 0 0 0 0 0 0 0 +18.796 3.692 -1.21 0 0 0 0 0 0 0 +23.964 4.792 -1.6 0 0 0 0 0 0 0 +24.027 4.884 -1.605 0 0 0 0 0 0 0 +24.08 4.973 -1.611 0 0 0 0 0 0 0 +23.951 5.025 -1.602 0 0 0 0 0 0 0 +23.779 5.028 -1.59 0 0 0 0 0 0 0 +24.181 5.192 -1.621 0 0 0 0 0 0 0 +24.188 5.274 -1.623 0 0 0 0 0 0 0 +18.93 4.246 -1.228 0 0 0 0 0 0 0 +24.125 5.499 -1.622 0 0 0 0 0 0 0 +24.119 5.577 -1.623 0 0 0 0 0 0 0 +24.113 5.615 -1.623 0 0 0 0 0 0 0 +24.093 5.691 -1.623 0 0 0 0 0 0 0 +21.932 5.251 -1.46 0 0 0 0 0 0 0 +20.332 5.001 -1.341 0 0 0 0 0 0 0 +24.02 5.993 -1.623 0 0 0 0 0 0 0 +23.989 6.065 -1.622 0 0 0 0 0 0 0 +23.976 6.102 -1.622 0 0 0 0 0 0 0 +23.949 6.175 -1.621 0 0 0 0 0 0 0 +23.919 6.248 -1.62 0 0 0 0 0 0 0 +23.892 6.321 -1.62 0 0 0 0 0 0 0 +23.878 6.398 -1.62 0 0 0 0 0 0 0 +23.852 6.471 -1.62 0 0 0 0 0 0 0 +16.202 4.524 -1.038 0 0 0 0 0 0 0 +16.109 4.552 -1.032 0 0 0 0 0 0 0 +16.1 4.605 -1.032 0 0 0 0 0 0 0 +16.082 4.654 -1.032 0 0 0 0 0 0 0 +16.061 4.703 -1.032 0 0 0 0 0 0 0 +16.035 4.75 -1.031 0 0 0 0 0 0 0 +16.02 4.773 -1.03 0 0 0 0 0 0 0 +15.986 4.817 -1.029 0 0 0 0 0 0 0 +15.967 4.866 -1.028 0 0 0 0 0 0 0 +15.946 4.915 -1.028 0 0 0 0 0 0 0 +15.915 4.96 -1.027 0 0 0 0 0 0 0 +15.895 5.009 -1.027 0 0 0 0 0 0 0 +15.868 5.055 -1.026 0 0 0 0 0 0 0 +15.847 5.076 -1.025 0 0 0 0 0 0 0 +15.835 5.127 -1.025 0 0 0 0 0 0 0 +15.805 5.172 -1.024 0 0 0 0 0 0 0 +15.785 5.22 -1.024 0 0 0 0 0 0 0 +15.776 5.273 -1.024 0 0 0 0 0 0 0 +15.746 5.318 -1.023 0 0 0 0 0 0 0 +15.724 5.365 -1.023 0 0 0 0 0 0 0 +15.712 5.388 -1.022 0 0 0 0 0 0 0 +15.689 5.436 -1.022 0 0 0 0 0 0 0 +15.668 5.484 -1.022 0 0 0 0 0 0 0 +15.649 5.532 -1.022 0 0 0 0 0 0 0 +15.63 5.581 -1.021 0 0 0 0 0 0 0 +15.604 5.627 -1.021 0 0 0 0 0 0 0 +15.59 5.677 -1.021 0 0 0 0 0 0 0 +15.58 5.701 -1.021 0 0 0 0 0 0 0 +15.646 5.781 -1.028 0 0 0 0 0 0 0 +15.697 5.856 -1.033 0 0 0 0 0 0 0 +15.467 5.826 -1.016 0 0 0 0 0 0 0 +15.44 5.871 -1.016 0 0 0 0 0 0 0 +15.436 5.925 -1.017 0 0 0 0 0 0 0 +15.432 5.979 -1.018 0 0 0 0 0 0 0 +16.615 6.53 -1.114 0 0 0 0 0 0 0 +18.375 7.358 -1.257 0 0 0 0 0 0 0 +18.536 7.491 -1.272 0 0 0 0 0 0 0 +22.921 9.354 -1.623 0 0 0 0 0 0 0 +22.895 9.427 -1.623 0 0 0 0 0 0 0 +22.899 9.471 -1.625 0 0 0 0 0 0 0 +22.889 9.551 -1.626 0 0 0 0 0 0 0 +22.866 9.626 -1.627 0 0 0 0 0 0 0 +22.849 9.703 -1.628 0 0 0 0 0 0 0 +22.77 9.755 -1.624 0 0 0 0 0 0 0 +22.765 9.837 -1.626 0 0 0 0 0 0 0 +22.774 9.926 -1.629 0 0 0 0 0 0 0 +22.777 9.97 -1.631 0 0 0 0 0 0 0 +22.76 10.048 -1.632 0 0 0 0 0 0 0 +22.752 10.13 -1.634 0 0 0 0 0 0 0 +22.739 10.21 -1.635 0 0 0 0 0 0 0 +22.73 10.292 -1.637 0 0 0 0 0 0 0 +22.701 10.365 -1.638 0 0 0 0 0 0 0 +22.678 10.44 -1.638 0 0 0 0 0 0 0 +22.688 10.488 -1.641 0 0 0 0 0 0 0 +22.648 10.556 -1.64 0 0 0 0 0 0 0 +22.613 10.626 -1.64 0 0 0 0 0 0 0 +22.583 10.699 -1.64 0 0 0 0 0 0 0 +22.553 10.772 -1.64 0 0 0 0 0 0 0 +22.533 10.849 -1.642 0 0 0 0 0 0 0 +22.508 10.925 -1.642 0 0 0 0 0 0 0 +22.479 10.998 -1.643 0 0 0 0 0 0 0 +22.469 11.037 -1.643 0 0 0 0 0 0 0 +22.445 11.113 -1.644 0 0 0 0 0 0 0 +22.426 11.191 -1.646 0 0 0 0 0 0 0 +22.394 11.263 -1.646 0 0 0 0 0 0 0 +22.368 11.338 -1.647 0 0 0 0 0 0 0 +22.342 11.414 -1.647 0 0 0 0 0 0 0 +22.305 11.483 -1.647 0 0 0 0 0 0 0 +22.297 11.523 -1.648 0 0 0 0 0 0 0 +22.261 11.593 -1.648 0 0 0 0 0 0 0 +22.239 11.671 -1.649 0 0 0 0 0 0 0 +22.204 11.741 -1.649 0 0 0 0 0 0 0 +22.181 11.819 -1.651 0 0 0 0 0 0 0 +22.149 11.891 -1.651 0 0 0 0 0 0 0 +22.133 11.928 -1.651 0 0 0 0 0 0 0 +22.103 12.001 -1.652 0 0 0 0 0 0 0 +22.086 12.082 -1.654 0 0 0 0 0 0 0 +22.051 12.153 -1.654 0 0 0 0 0 0 0 +22.022 12.227 -1.655 0 0 0 0 0 0 0 +21.99 12.3 -1.655 0 0 0 0 0 0 0 +21.95 12.368 -1.655 0 0 0 0 0 0 0 +21.941 12.409 -1.656 0 0 0 0 0 0 0 +21.898 12.476 -1.656 0 0 0 0 0 0 0 +21.866 12.548 -1.656 0 0 0 0 0 0 0 +21.831 12.62 -1.657 0 0 0 0 0 0 0 +21.793 12.689 -1.657 0 0 0 0 0 0 0 +21.755 12.759 -1.657 0 0 0 0 0 0 0 +21.748 12.847 -1.66 0 0 0 0 0 0 0 +21.727 12.881 -1.66 0 0 0 0 0 0 0 +21.714 12.965 -1.662 0 0 0 0 0 0 0 +21.694 13.046 -1.664 0 0 0 0 0 0 0 +21.672 13.125 -1.666 0 0 0 0 0 0 0 +21.649 13.205 -1.667 0 0 0 0 0 0 0 +21.628 13.285 -1.669 0 0 0 0 0 0 0 +21.598 13.36 -1.67 0 0 0 0 0 0 0 +21.582 13.397 -1.671 0 0 0 0 0 0 0 +21.558 13.477 -1.672 0 0 0 0 0 0 0 +21.536 13.557 -1.674 0 0 0 0 0 0 0 +21.5 13.629 -1.674 0 0 0 0 0 0 0 +21.496 13.721 -1.678 0 0 0 0 0 0 0 +21.449 13.787 -1.678 0 0 0 0 0 0 0 +13.223 8.576 -0.96 0 0 0 0 0 0 0 +13.338 8.71 -0.972 0 0 0 0 0 0 0 +21.38 14.077 -1.685 0 0 0 0 0 0 0 +15.135 10.093 -1.139 0 0 0 0 0 0 0 +15.487 10.399 -1.173 0 0 0 0 0 0 0 +15.548 10.511 -1.182 0 0 0 0 0 0 0 +15.476 10.533 -1.178 0 0 0 0 0 0 0 +15.407 10.521 -1.173 0 0 0 0 0 0 0 +15.293 10.514 -1.166 0 0 0 0 0 0 0 +15.199 10.52 -1.161 0 0 0 0 0 0 0 +15.236 10.617 -1.167 0 0 0 0 0 0 0 +14.811 10.389 -1.132 0 0 0 0 0 0 0 +14.911 10.529 -1.144 0 0 0 0 0 0 0 +14.91 10.599 -1.147 0 0 0 0 0 0 0 +15.062 10.743 -1.162 0 0 0 0 0 0 0 +15.078 10.827 -1.166 0 0 0 0 0 0 0 +14.957 10.811 -1.158 0 0 0 0 0 0 0 +15.034 10.939 -1.169 0 0 0 0 0 0 0 +15.082 11.046 -1.176 0 0 0 0 0 0 0 +14.76 10.881 -1.15 0 0 0 0 0 0 0 +12.377 9.149 -0.933 0 0 0 0 0 0 0 +12.434 9.253 -0.941 0 0 0 0 0 0 0 +12.364 9.26 -0.937 0 0 0 0 0 0 0 +12.322 9.29 -0.936 0 0 0 0 0 0 0 +14.386 10.922 -1.129 0 0 0 0 0 0 0 +14.334 10.954 -1.128 0 0 0 0 0 0 0 +14.272 10.978 -1.125 0 0 0 0 0 0 0 +14.273 11.014 -1.127 0 0 0 0 0 0 0 +14.164 11.001 -1.12 0 0 0 0 0 0 0 +14.035 10.972 -1.111 0 0 0 0 0 0 0 +13.825 10.877 -1.095 0 0 0 0 0 0 0 +13.911 11.016 -1.106 0 0 0 0 0 0 0 +13.937 11.109 -1.112 0 0 0 0 0 0 0 +13.964 11.202 -1.118 0 0 0 0 0 0 0 +13.807 11.111 -1.105 0 0 0 0 0 0 0 +13.546 10.971 -1.083 0 0 0 0 0 0 0 +12.142 9.894 -0.953 0 0 0 0 0 0 0 +6.791 5.554 -0.445 0 0 0 0 0 0 0 +6.7 5.515 -0.438 0 0 0 0 0 0 0 +6.684 5.537 -0.438 0 0 0 0 0 0 0 +6.561 5.469 -0.428 0 0 0 0 0 0 0 +6.708 5.629 -0.444 0 0 0 0 0 0 0 +11.832 9.986 -0.939 0 0 0 0 0 0 0 +11.749 9.979 -0.934 0 0 0 0 0 0 0 +11.641 9.95 -0.927 0 0 0 0 0 0 0 +11.561 9.945 -0.922 0 0 0 0 0 0 0 +11.427 9.892 -0.912 0 0 0 0 0 0 0 +11.183 9.741 -0.891 0 0 0 0 0 0 0 +11.139 9.765 -0.89 0 0 0 0 0 0 0 +11.324 9.959 -0.91 0 0 0 0 0 0 0 +11.201 9.914 -0.901 0 0 0 0 0 0 0 +11.38 10.136 -0.921 0 0 0 0 0 0 0 +11.28 10.111 -0.915 0 0 0 0 0 0 0 +13.259 11.966 -1.115 0 0 0 0 0 0 0 +11.333 10.287 -0.926 0 0 0 0 0 0 0 +11.212 10.242 -0.917 0 0 0 0 0 0 0 +11.288 10.345 -0.927 0 0 0 0 0 0 0 +11.32 10.44 -0.933 0 0 0 0 0 0 0 +12.951 12.025 -1.101 0 0 0 0 0 0 0 +12.716 11.88 -1.081 0 0 0 0 0 0 0 +12.818 12.051 -1.095 0 0 0 0 0 0 0 +12.728 12.042 -1.09 0 0 0 0 0 0 0 +12.91 12.293 -1.112 0 0 0 0 0 0 0 +13.021 12.437 -1.125 0 0 0 0 0 0 0 +12.331 11.851 -1.059 0 0 0 0 0 0 0 +12.404 11.997 -1.07 0 0 0 0 0 0 0 +12.423 12.091 -1.076 0 0 0 0 0 0 0 +12.434 12.178 -1.081 0 0 0 0 0 0 0 +12.519 12.339 -1.094 0 0 0 0 0 0 0 +12.36 12.258 -1.081 0 0 0 0 0 0 0 +12.589 12.526 -1.107 0 0 0 0 0 0 0 +12.869 12.886 -1.141 0 0 0 0 0 0 0 +12.886 12.985 -1.147 0 0 0 0 0 0 0 +12.697 12.874 -1.131 0 0 0 0 0 0 0 +11.441 11.67 -1.003 0 0 0 0 0 0 0 +12.573 12.909 -1.126 0 0 0 0 0 0 0 +11.359 11.733 -1.002 0 0 0 0 0 0 0 +12.483 12.938 -1.123 0 0 0 0 0 0 0 +12.447 12.983 -1.124 0 0 0 0 0 0 0 +12.163 12.766 -1.098 0 0 0 0 0 0 0 +12.078 12.757 -1.093 0 0 0 0 0 0 0 +11.919 12.668 -1.08 0 0 0 0 0 0 0 +11.815 12.637 -1.073 0 0 0 0 0 0 0 +11.896 12.804 -1.086 0 0 0 0 0 0 0 +11.694 12.625 -1.067 0 0 0 0 0 0 0 +12.182 13.238 -1.124 0 0 0 0 0 0 0 +12.017 13.14 -1.111 0 0 0 0 0 0 0 +11.747 12.925 -1.086 0 0 0 0 0 0 0 +11.454 12.682 -1.058 0 0 0 0 0 0 0 +11.407 12.71 -1.057 0 0 0 0 0 0 0 +11.565 12.968 -1.079 0 0 0 0 0 0 0 +11.623 13.074 -1.088 0 0 0 0 0 0 0 +11.468 12.982 -1.075 0 0 0 0 0 0 0 +11.526 13.131 -1.086 0 0 0 0 0 0 0 +11.699 13.414 -1.11 0 0 0 0 0 0 0 +11.658 13.452 -1.11 0 0 0 0 0 0 0 +11.542 13.402 -1.102 0 0 0 0 0 0 0 +12.017 14.045 -1.161 0 0 0 0 0 0 0 +12.15 14.247 -1.178 0 0 0 0 0 0 0 +12.022 14.186 -1.169 0 0 0 0 0 0 0 +11.902 14.133 -1.16 0 0 0 0 0 0 0 +12.011 14.354 -1.178 0 0 0 0 0 0 0 +11.903 14.317 -1.171 0 0 0 0 0 0 0 +11.9 14.405 -1.175 0 0 0 0 0 0 0 +11.827 14.408 -1.172 0 0 0 0 0 0 0 +11.754 14.365 -1.166 0 0 0 0 0 0 0 +11.966 14.719 -1.196 0 0 0 0 0 0 0 +11.93 14.769 -1.198 0 0 0 0 0 0 0 +11.945 14.885 -1.205 0 0 0 0 0 0 0 +11.963 15.003 -1.213 0 0 0 0 0 0 0 +12.005 15.153 -1.223 0 0 0 0 0 0 0 +12.15 15.436 -1.246 0 0 0 0 0 0 0 +12.04 15.395 -1.239 0 0 0 0 0 0 0 +12.373 15.874 -1.282 0 0 0 0 0 0 0 +11.94 15.417 -1.235 0 0 0 0 0 0 0 +13.008 16.909 -1.371 0 0 0 0 0 0 0 +13.563 17.747 -1.445 0 0 0 0 0 0 0 +12.868 16.947 -1.367 0 0 0 0 0 0 0 +12.718 16.859 -1.355 0 0 0 0 0 0 0 +13.435 17.929 -1.45 0 0 0 0 0 0 0 +13.384 17.92 -1.447 0 0 0 0 0 0 0 +12.976 17.485 -1.403 0 0 0 0 0 0 0 +12.929 17.537 -1.404 0 0 0 0 0 0 0 +12.864 17.565 -1.403 0 0 0 0 0 0 0 +12.796 17.587 -1.401 0 0 0 0 0 0 0 +12.732 17.615 -1.4 0 0 0 0 0 0 0 +12.71 17.643 -1.401 0 0 0 0 0 0 0 +12.621 17.635 -1.397 0 0 0 0 0 0 0 +12.566 17.677 -1.397 0 0 0 0 0 0 0 +12.518 17.726 -1.398 0 0 0 0 0 0 0 +12.452 17.75 -1.396 0 0 0 0 0 0 0 +12.339 17.708 -1.389 0 0 0 0 0 0 0 +12.311 17.787 -1.393 0 0 0 0 0 0 0 +12.389 17.959 -1.406 0 0 0 0 0 0 0 +12.524 18.278 -1.431 0 0 0 0 0 0 0 +12.67 18.618 -1.458 0 0 0 0 0 0 0 +12.83 18.982 -1.487 0 0 0 0 0 0 0 +13.632 20.308 -1.601 0 0 0 0 0 0 0 +13.59 20.384 -1.604 0 0 0 0 0 0 0 +13.559 20.476 -1.608 0 0 0 0 0 0 0 +13.48 20.497 -1.606 0 0 0 0 0 0 0 +13.513 20.618 -1.615 0 0 0 0 0 0 0 +13.428 20.629 -1.612 0 0 0 0 0 0 0 +13.449 20.805 -1.624 0 0 0 0 0 0 0 +13.399 20.871 -1.626 0 0 0 0 0 0 0 +13.344 20.93 -1.628 0 0 0 0 0 0 0 +13.286 20.983 -1.629 0 0 0 0 0 0 0 +13.242 21.06 -1.632 0 0 0 0 0 0 0 +13.221 21.1 -1.633 0 0 0 0 0 0 0 +13.175 21.175 -1.636 0 0 0 0 0 0 0 +13.133 21.255 -1.64 0 0 0 0 0 0 0 +13.054 21.278 -1.638 0 0 0 0 0 0 0 +13.029 21.387 -1.644 0 0 0 0 0 0 0 +12.991 21.476 -1.648 0 0 0 0 0 0 0 +12.947 21.556 -1.652 0 0 0 0 0 0 0 +12.889 21.613 -1.653 0 0 0 0 0 0 0 +12.867 21.654 -1.655 0 0 0 0 0 0 0 +12.799 21.694 -1.655 0 0 0 0 0 0 0 +12.726 21.726 -1.654 0 0 0 0 0 0 0 +12.647 21.747 -1.652 0 0 0 0 0 0 0 +12.583 21.795 -1.653 0 0 0 0 0 0 0 +12.491 21.793 -1.65 0 0 0 0 0 0 0 +12.442 21.787 -1.647 0 0 0 0 0 0 0 +12.375 21.829 -1.648 0 0 0 0 0 0 0 +12.333 21.915 -1.652 0 0 0 0 0 0 0 +12.269 21.962 -1.652 0 0 0 0 0 0 0 +12.172 21.95 -1.648 0 0 0 0 0 0 0 +12.131 22.039 -1.652 0 0 0 0 0 0 0 +12.091 22.131 -1.657 0 0 0 0 0 0 0 +12.012 22.151 -1.656 0 0 0 0 0 0 0 +11.982 22.179 -1.656 0 0 0 0 0 0 0 +11.902 22.197 -1.655 0 0 0 0 0 0 0 +11.799 22.173 -1.649 0 0 0 0 0 0 0 +11.773 22.293 -1.656 0 0 0 0 0 0 0 +11.699 22.323 -1.656 0 0 0 0 0 0 0 +11.619 22.34 -1.654 0 0 0 0 0 0 0 +11.579 22.435 -1.659 0 0 0 0 0 0 0 +11.552 22.469 -1.66 0 0 0 0 0 0 0 +11.491 22.525 -1.662 0 0 0 0 0 0 0 +11.44 22.6 -1.665 0 0 0 0 0 0 0 +11.375 22.648 -1.666 0 0 0 0 0 0 0 +11.317 22.709 -1.668 0 0 0 0 0 0 0 +11.255 22.764 -1.67 0 0 0 0 0 0 0 +11.204 22.842 -1.673 0 0 0 0 0 0 0 +11.177 22.877 -1.675 0 0 0 0 0 0 0 +11.118 22.939 -1.677 0 0 0 0 0 0 0 +11.065 23.014 -1.68 0 0 0 0 0 0 0 +11.008 23.081 -1.683 0 0 0 0 0 0 0 +10.948 23.141 -1.685 0 0 0 0 0 0 0 +10.894 23.215 -1.688 0 0 0 0 0 0 0 +10.831 23.272 -1.69 0 0 0 0 0 0 0 +10.811 23.324 -1.693 0 0 0 0 0 0 0 +10.748 23.381 -1.695 0 0 0 0 0 0 0 +10.683 23.433 -1.696 0 0 0 0 0 0 0 +10.616 23.481 -1.698 0 0 0 0 0 0 0 +10.555 23.543 -1.7 0 0 0 0 0 0 0 +10.488 23.593 -1.701 0 0 0 0 0 0 0 +10.417 23.633 -1.702 0 0 0 0 0 0 0 +10.412 23.722 -1.708 0 0 0 0 0 0 0 +10.342 23.766 -1.709 0 0 0 0 0 0 0 +10.269 23.802 -1.709 0 0 0 0 0 0 0 +10.209 23.867 -1.712 0 0 0 0 0 0 0 +10.137 23.906 -1.712 0 0 0 0 0 0 0 +10.074 23.967 -1.714 0 0 0 0 0 0 0 +10.016 24.041 -1.718 0 0 0 0 0 0 0 +9.943 24.078 -1.718 0 0 0 0 0 0 0 +9.922 24.136 -1.722 0 0 0 0 0 0 0 +9.863 24.208 -1.725 0 0 0 0 0 0 0 +9.797 24.263 -1.727 0 0 0 0 0 0 0 +9.719 24.29 -1.727 0 0 0 0 0 0 0 +9.656 24.354 -1.729 0 0 0 0 0 0 0 +9.593 24.419 -1.732 0 0 0 0 0 0 0 +9.534 24.496 -1.736 0 0 0 0 0 0 0 +9.517 24.565 -1.74 0 0 0 0 0 0 0 +9.462 24.654 -1.745 0 0 0 0 0 0 0 +9.402 24.728 -1.748 0 0 0 0 0 0 0 +9.338 24.795 -1.751 0 0 0 0 0 0 0 +9.266 24.841 -1.752 0 0 0 0 0 0 0 +9.205 24.915 -1.756 0 0 0 0 0 0 0 +9.143 24.989 -1.759 0 0 0 0 0 0 0 +9.114 25.031 -1.762 0 0 0 0 0 0 0 +9.055 25.116 -1.766 0 0 0 0 0 0 0 +8.99 25.182 -1.769 0 0 0 0 0 0 0 +8.913 25.216 -1.769 0 0 0 0 0 0 0 +8.853 25.3 -1.774 0 0 0 0 0 0 0 +8.486 24.494 -1.709 0 0 0 0 0 0 0 +8.418 24.549 -1.711 0 0 0 0 0 0 0 +8.393 24.602 -1.714 0 0 0 0 0 0 0 +8.355 24.746 -1.723 0 0 0 0 0 0 0 +8.414 25.181 -1.755 0 0 0 0 0 0 0 +8.457 25.578 -1.784 0 0 0 0 0 0 0 +8.402 25.682 -1.79 0 0 0 0 0 0 0 +8.388 25.915 -1.806 0 0 0 0 0 0 0 +8.424 26.31 -1.834 0 0 0 0 0 0 0 +8.51 26.723 -1.865 0 0 0 0 0 0 0 +8.551 27.149 -1.896 0 0 0 0 0 0 0 +8.558 27.473 -1.919 0 0 0 0 0 0 0 +8.48 27.528 -1.921 0 0 0 0 0 0 0 +8.377 27.499 -1.917 0 0 0 0 0 0 0 +8.282 27.497 -1.915 0 0 0 0 0 0 0 +8.182 27.477 -1.911 0 0 0 0 0 0 0 +8.102 27.525 -1.913 0 0 0 0 0 0 0 +8.066 27.563 -1.915 0 0 0 0 0 0 0 +7.975 27.573 -1.914 0 0 0 0 0 0 0 +7.875 27.55 -1.91 0 0 0 0 0 0 0 +7.791 27.584 -1.911 0 0 0 0 0 0 0 +7.709 27.626 -1.912 0 0 0 0 0 0 0 +7.617 27.629 -1.911 0 0 0 0 0 0 0 +7.522 27.624 -1.908 0 0 0 0 0 0 0 +7.467 27.593 -1.905 0 0 0 0 0 0 0 +7.36 27.539 -1.899 0 0 0 0 0 0 0 +7.258 27.502 -1.895 0 0 0 0 0 0 0 +7.163 27.492 -1.892 0 0 0 0 0 0 0 +7.065 27.47 -1.889 0 0 0 0 0 0 0 +6.978 27.492 -1.889 0 0 0 0 0 0 0 +6.881 27.469 -1.885 0 0 0 0 0 0 0 +6.822 27.418 -1.881 0 0 0 0 0 0 0 +6.737 27.443 -1.881 0 0 0 0 0 0 0 +6.648 27.451 -1.88 0 0 0 0 0 0 0 +6.559 27.462 -1.879 0 0 0 0 0 0 0 +6.477 27.5 -1.881 0 0 0 0 0 0 0 +6.399 27.557 -1.883 0 0 0 0 0 0 0 +2.525 11.041 -0.633 0 0 0 0 0 0 0 +2.505 11.115 -0.638 0 0 0 0 0 0 0 +2.62 11.805 -0.689 0 0 0 0 0 0 0 +2.62 11.985 -0.702 0 0 0 0 0 0 0 +2.693 12.51 -0.741 0 0 0 0 0 0 0 +2.749 12.975 -0.776 0 0 0 0 0 0 0 +2.727 13.075 -0.783 0 0 0 0 0 0 0 +2.651 12.91 -0.77 0 0 0 0 0 0 0 +2.623 12.875 -0.767 0 0 0 0 0 0 0 +2.637 13.161 -0.788 0 0 0 0 0 0 0 +3.03 15.395 -0.955 0 0 0 0 0 0 0 +3.113 16.088 -1.006 0 0 0 0 0 0 0 +3.192 16.786 -1.058 0 0 0 0 0 0 0 +3.273 17.516 -1.112 0 0 0 0 0 0 0 +3.355 18.277 -1.168 0 0 0 0 0 0 0 +3.51 19.301 -1.244 0 0 0 0 0 0 0 +3.626 20.312 -1.319 0 0 0 0 0 0 0 +0.609 3.412 -0.054 0 0 0 0 0 0 0 +3.707 21.152 -1.381 0 0 0 0 0 0 0 +0.612 3.494 -0.06 0 0 0 0 0 0 0 +0.61 3.553 -0.064 0 0 0 0 0 0 0 +0.597 3.543 -0.063 0 0 0 0 0 0 0 +0.595 3.568 -0.065 0 0 0 0 0 0 0 +0.585 3.578 -0.065 0 0 0 0 0 0 0 +0.573 3.57 -0.065 0 0 0 0 0 0 0 +0.561 3.571 -0.065 0 0 0 0 0 0 0 +0.549 3.565 -0.064 0 0 0 0 0 0 0 +0.537 3.563 -0.064 0 0 0 0 0 0 0 +0.525 3.557 -0.063 0 0 0 0 0 0 0 +0.52 3.56 -0.063 0 0 0 0 0 0 0 +0.51 3.575 -0.064 0 0 0 0 0 0 0 +0.506 3.626 -0.068 0 0 0 0 0 0 0 +0.466 3.408 -0.052 0 0 0 0 0 0 0 +0.466 3.493 -0.058 0 0 0 0 0 0 0 +0.449 3.45 -0.055 0 0 0 0 0 0 0 +0.437 3.444 -0.054 0 0 0 0 0 0 0 +0.427 3.449 -0.054 0 0 0 0 0 0 0 +0.421 3.446 -0.054 0 0 0 0 0 0 0 +0.41 3.445 -0.054 0 0 0 0 0 0 0 +0.399 3.441 -0.053 0 0 0 0 0 0 0 +0.387 3.436 -0.053 0 0 0 0 0 0 0 +0.376 3.435 -0.053 0 0 0 0 0 0 0 +0.365 3.432 -0.053 0 0 0 0 0 0 0 +0.355 3.435 -0.053 0 0 0 0 0 0 0 +0.349 3.44 -0.053 0 0 0 0 0 0 0 +0.339 3.443 -0.053 0 0 0 0 0 0 0 +0.328 3.44 -0.053 0 0 0 0 0 0 0 +0.318 3.453 -0.054 0 0 0 0 0 0 0 +0.307 3.452 -0.054 0 0 0 0 0 0 0 +0.294 3.427 -0.052 0 0 0 0 0 0 0 +0.284 3.442 -0.053 0 0 0 0 0 0 0 +0.28 3.456 -0.054 0 0 0 0 0 0 0 +0.268 3.445 -0.053 0 0 0 0 0 0 0 +0.257 3.446 -0.053 0 0 0 0 0 0 0 +0.246 3.445 -0.053 0 0 0 0 0 0 0 +0.236 3.45 -0.053 0 0 0 0 0 0 0 +0.229 3.528 -0.059 0 0 0 0 0 0 0 +1.538 27.731 -1.845 0 0 0 0 0 0 0 +1.494 27.729 -1.845 0 0 0 0 0 0 0 +1.408 27.748 -1.846 0 0 0 0 0 0 0 +1.32 27.742 -1.845 0 0 0 0 0 0 0 +1.233 27.754 -1.846 0 0 0 0 0 0 0 +1.146 27.772 -1.847 0 0 0 0 0 0 0 +1.058 27.752 -1.845 0 0 0 0 0 0 0 +0.972 27.785 -1.847 0 0 0 0 0 0 0 +0.928 27.76 -1.845 0 0 0 0 0 0 0 +0.841 27.765 -1.846 0 0 0 0 0 0 0 +0.753 27.751 -1.844 0 0 0 0 0 0 0 +0.665 27.714 -1.841 0 0 0 0 0 0 0 +0.584 28.015 -1.864 0 0 0 0 0 0 0 +0.493 27.885 -1.854 0 0 0 0 0 0 0 +0.404 27.787 -1.846 0 0 0 0 0 0 0 +0.317 27.776 -1.846 0 0 0 0 0 0 0 +0.274 27.796 -1.847 0 0 0 0 0 0 0 +0.186 27.801 -1.847 0 0 0 0 0 0 0 +0.099 27.797 -1.847 0 0 0 0 0 0 0 +0.012 27.78 -1.846 0 0 0 0 0 0 0 +-0.076 27.782 -1.846 0 0 0 0 0 0 0 +-0.163 27.777 -1.846 0 0 0 0 0 0 0 +-0.25 27.785 -1.846 0 0 0 0 0 0 0 +-0.294 27.78 -1.846 0 0 0 0 0 0 0 +-0.381 27.791 -1.847 0 0 0 0 0 0 0 +-0.469 27.798 -1.847 0 0 0 0 0 0 0 +-0.556 27.79 -1.847 0 0 0 0 0 0 0 +-0.644 27.802 -1.848 0 0 0 0 0 0 0 +-0.731 27.812 -1.849 0 0 0 0 0 0 0 +-0.818 27.802 -1.848 0 0 0 0 0 0 0 +-0.863 27.816 -1.849 0 0 0 0 0 0 0 +-0.956 27.977 -1.861 0 0 0 0 0 0 0 +-1.017 23.413 -1.526 0 0 0 0 0 0 0 +-1.079 23.177 -1.508 0 0 0 0 0 0 0 +-1.12 22.544 -1.462 0 0 0 0 0 0 0 +-1.171 22.178 -1.435 0 0 0 0 0 0 0 +-1.186 21.826 -1.409 0 0 0 0 0 0 0 +-1.234 21.461 -1.383 0 0 0 0 0 0 0 +-1.281 21.135 -1.359 0 0 0 0 0 0 0 +-1.325 20.778 -1.333 0 0 0 0 0 0 0 +-1.368 20.45 -1.309 0 0 0 0 0 0 0 +-1.406 20.075 -1.282 0 0 0 0 0 0 0 +-1.466 20.033 -1.279 0 0 0 0 0 0 0 +-1.481 19.81 -1.262 0 0 0 0 0 0 0 +-1.5 19.268 -1.223 0 0 0 0 0 0 0 +-1.537 18.973 -1.201 0 0 0 0 0 0 0 +-1.576 18.728 -1.183 0 0 0 0 0 0 0 +-1.611 18.453 -1.163 0 0 0 0 0 0 0 +-1.646 18.199 -1.145 0 0 0 0 0 0 0 +-1.681 17.96 -1.128 0 0 0 0 0 0 0 +-1.685 17.703 -1.109 0 0 0 0 0 0 0 +-1.717 17.467 -1.092 0 0 0 0 0 0 0 +-1.748 17.23 -1.075 0 0 0 0 0 0 0 +-1.781 17.022 -1.06 0 0 0 0 0 0 0 +-1.809 16.786 -1.043 0 0 0 0 0 0 0 +-1.841 16.594 -1.029 0 0 0 0 0 0 0 +-1.868 16.374 -1.013 0 0 0 0 0 0 0 +-1.871 16.171 -0.998 0 0 0 0 0 0 0 +-1.898 15.975 -0.984 0 0 0 0 0 0 0 +-1.927 15.791 -0.971 0 0 0 0 0 0 0 +-1.952 15.591 -0.956 0 0 0 0 0 0 0 +-1.978 15.412 -0.944 0 0 0 0 0 0 0 +-2.004 15.236 -0.931 0 0 0 0 0 0 0 +-2.028 15.056 -0.918 0 0 0 0 0 0 0 +-2.028 14.883 -0.905 0 0 0 0 0 0 0 +-2.052 14.712 -0.893 0 0 0 0 0 0 0 +-2.075 14.544 -0.881 0 0 0 0 0 0 0 +-2.099 14.391 -0.87 0 0 0 0 0 0 0 +-2.121 14.235 -0.859 0 0 0 0 0 0 0 +-2.137 14.037 -0.845 0 0 0 0 0 0 0 +-2.162 13.914 -0.836 0 0 0 0 0 0 0 +-2.163 13.774 -0.826 0 0 0 0 0 0 0 +-2.183 13.628 -0.815 0 0 0 0 0 0 0 +-2.204 13.487 -0.805 0 0 0 0 0 0 0 +-2.223 13.342 -0.795 0 0 0 0 0 0 0 +-2.245 13.217 -0.786 0 0 0 0 0 0 0 +-2.264 13.085 -0.777 0 0 0 0 0 0 0 +-2.282 12.948 -0.767 0 0 0 0 0 0 0 +-2.296 12.793 -0.756 0 0 0 0 0 0 0 +-2.294 12.668 -0.747 0 0 0 0 0 0 0 +-2.316 12.567 -0.74 0 0 0 0 0 0 0 +-2.331 12.43 -0.73 0 0 0 0 0 0 0 +-2.351 12.325 -0.723 0 0 0 0 0 0 0 +-2.375 12.239 -0.717 0 0 0 0 0 0 0 +-2.386 12.095 -0.707 0 0 0 0 0 0 0 +-2.4 11.872 -0.691 0 0 0 0 0 0 0 +-2.417 11.769 -0.684 0 0 0 0 0 0 0 +-2.428 11.64 -0.675 0 0 0 0 0 0 0 +-2.445 11.539 -0.668 0 0 0 0 0 0 0 +-2.457 11.418 -0.659 0 0 0 0 0 0 0 +-2.476 11.336 -0.653 0 0 0 0 0 0 0 +-2.489 11.229 -0.646 0 0 0 0 0 0 0 +-2.487 11.138 -0.639 0 0 0 0 0 0 0 +-2.501 11.038 -0.632 0 0 0 0 0 0 0 +-2.52 10.963 -0.627 0 0 0 0 0 0 0 +-2.525 10.83 -0.618 0 0 0 0 0 0 0 +-2.541 10.747 -0.612 0 0 0 0 0 0 0 +-2.554 10.653 -0.606 0 0 0 0 0 0 0 +-2.57 10.572 -0.6 0 0 0 0 0 0 0 +-2.563 10.473 -0.593 0 0 0 0 0 0 0 +-2.581 10.407 -0.588 0 0 0 0 0 0 0 +-2.589 10.302 -0.581 0 0 0 0 0 0 0 +-2.603 10.222 -0.576 0 0 0 0 0 0 0 +-2.617 10.144 -0.57 0 0 0 0 0 0 0 +-2.628 10.055 -0.564 0 0 0 0 0 0 0 +-2.717 10.261 -0.581 0 0 0 0 0 0 0 +-2.656 9.907 -0.554 0 0 0 0 0 0 0 +-2.655 9.846 -0.55 0 0 0 0 0 0 0 +-2.787 9.129 -0.502 0 0 0 0 0 0 0 +-2.801 9.075 -0.498 0 0 0 0 0 0 0 +-2.816 9.022 -0.495 0 0 0 0 0 0 0 +-2.817 8.976 -0.492 0 0 0 0 0 0 0 +-2.83 8.921 -0.488 0 0 0 0 0 0 0 +-2.846 8.875 -0.485 0 0 0 0 0 0 0 +-2.864 8.835 -0.483 0 0 0 0 0 0 0 +-2.901 8.855 -0.485 0 0 0 0 0 0 0 +-2.921 8.73 -0.477 0 0 0 0 0 0 0 +-2.938 8.735 -0.477 0 0 0 0 0 0 0 +-2.953 8.69 -0.475 0 0 0 0 0 0 0 +-2.966 8.641 -0.472 0 0 0 0 0 0 0 +-2.986 8.611 -0.47 0 0 0 0 0 0 0 +-2.995 8.551 -0.466 0 0 0 0 0 0 0 +-3.017 8.526 -0.465 0 0 0 0 0 0 0 +-3.023 8.461 -0.46 0 0 0 0 0 0 0 +-3.041 8.427 -0.459 0 0 0 0 0 0 0 +-3.043 8.39 -0.456 0 0 0 0 0 0 0 +-3.053 8.338 -0.453 0 0 0 0 0 0 0 +-3.069 8.3 -0.45 0 0 0 0 0 0 0 +-3.086 8.266 -0.449 0 0 0 0 0 0 0 +-3.09 8.2 -0.444 0 0 0 0 0 0 0 +-3.11 8.174 -0.443 0 0 0 0 0 0 0 +-3.132 8.156 -0.442 0 0 0 0 0 0 0 +-3.131 8.114 -0.439 0 0 0 0 0 0 0 +-3.15 8.09 -0.438 0 0 0 0 0 0 0 +-3.168 8.059 -0.436 0 0 0 0 0 0 0 +-3.18 8.018 -0.434 0 0 0 0 0 0 0 +-3.196 7.984 -0.432 0 0 0 0 0 0 0 +-3.214 7.957 -0.431 0 0 0 0 0 0 0 +-3.228 7.919 -0.429 0 0 0 0 0 0 0 +-3.234 7.899 -0.427 0 0 0 0 0 0 0 +-3.245 7.856 -0.425 0 0 0 0 0 0 0 +-3.262 7.827 -0.423 0 0 0 0 0 0 0 +-3.28 7.802 -0.422 0 0 0 0 0 0 0 +-3.299 7.777 -0.421 0 0 0 0 0 0 0 +-3.319 7.758 -0.42 0 0 0 0 0 0 0 +-3.349 7.76 -0.421 0 0 0 0 0 0 0 +-3.373 7.782 -0.423 0 0 0 0 0 0 0 +-3.408 7.795 -0.425 0 0 0 0 0 0 0 +-3.441 7.803 -0.427 0 0 0 0 0 0 0 +-3.359 7.431 -0.399 0 0 0 0 0 0 0 +-3.343 7.333 -0.392 0 0 0 0 0 0 0 +-3.408 7.413 -0.4 0 0 0 0 0 0 0 +-3.621 7.778 -0.431 0 0 0 0 0 0 0 +-3.638 7.75 -0.429 0 0 0 0 0 0 0 +-3.67 7.755 -0.431 0 0 0 0 0 0 0 +-3.675 7.702 -0.427 0 0 0 0 0 0 0 +-3.677 7.646 -0.424 0 0 0 0 0 0 0 +-3.691 7.614 -0.422 0 0 0 0 0 0 0 +-3.686 7.573 -0.419 0 0 0 0 0 0 0 +-3.694 7.529 -0.416 0 0 0 0 0 0 0 +-3.711 7.505 -0.415 0 0 0 0 0 0 0 +-3.739 7.502 -0.416 0 0 0 0 0 0 0 +-3.771 7.506 -0.417 0 0 0 0 0 0 0 +-3.799 7.503 -0.418 0 0 0 0 0 0 0 +-3.825 7.497 -0.419 0 0 0 0 0 0 0 +-3.847 7.51 -0.42 0 0 0 0 0 0 0 +-3.876 7.509 -0.421 0 0 0 0 0 0 0 +-3.904 7.505 -0.422 0 0 0 0 0 0 0 +-3.937 7.511 -0.423 0 0 0 0 0 0 0 +-3.964 7.505 -0.424 0 0 0 0 0 0 0 +-3.991 7.498 -0.424 0 0 0 0 0 0 0 +-4.022 7.5 -0.425 0 0 0 0 0 0 0 +-4.046 7.516 -0.427 0 0 0 0 0 0 0 +-4.077 7.517 -0.429 0 0 0 0 0 0 0 +-4.108 7.517 -0.43 0 0 0 0 0 0 0 +-4.143 7.525 -0.431 0 0 0 0 0 0 0 +-4.17 7.519 -0.432 0 0 0 0 0 0 0 +-4.204 7.523 -0.433 0 0 0 0 0 0 0 +-4.236 7.525 -0.435 0 0 0 0 0 0 0 +-4.268 7.526 -0.436 0 0 0 0 0 0 0 +-4.289 7.535 -0.437 0 0 0 0 0 0 0 +-4.318 7.531 -0.438 0 0 0 0 0 0 0 +-4.355 7.54 -0.44 0 0 0 0 0 0 0 +-4.388 7.542 -0.441 0 0 0 0 0 0 0 +-4.423 7.549 -0.443 0 0 0 0 0 0 0 +-4.454 7.547 -0.444 0 0 0 0 0 0 0 +-4.49 7.553 -0.446 0 0 0 0 0 0 0 +-4.511 7.562 -0.447 0 0 0 0 0 0 0 +-4.546 7.566 -0.449 0 0 0 0 0 0 0 +-4.584 7.574 -0.451 0 0 0 0 0 0 0 +-4.618 7.577 -0.452 0 0 0 0 0 0 0 +-4.587 7.474 -0.445 0 0 0 0 0 0 0 +-4.828 7.808 -0.475 0 0 0 0 0 0 0 +-4.882 7.84 -0.479 0 0 0 0 0 0 0 +-4.899 7.813 -0.478 0 0 0 0 0 0 0 +-4.887 7.767 -0.475 0 0 0 0 0 0 0 +-4.901 7.736 -0.473 0 0 0 0 0 0 0 +-4.93 7.727 -0.474 0 0 0 0 0 0 0 +-4.959 7.719 -0.474 0 0 0 0 0 0 0 +-5.01 7.745 -0.478 0 0 0 0 0 0 0 +-5.036 7.732 -0.478 0 0 0 0 0 0 0 +-5.072 7.733 -0.48 0 0 0 0 0 0 0 +-5.15 7.72 -0.482 0 0 0 0 0 0 0 +-5.127 7.582 -0.473 0 0 0 0 0 0 0 +-15.261 22.326 -1.792 0 0 0 0 0 0 0 +-15.319 22.26 -1.79 0 0 0 0 0 0 0 +-15.357 22.241 -1.79 0 0 0 0 0 0 0 +-15.438 22.209 -1.792 0 0 0 0 0 0 0 +-15.496 22.144 -1.79 0 0 0 0 0 0 0 +-15.56 22.087 -1.79 0 0 0 0 0 0 0 +-15.608 22.007 -1.787 0 0 0 0 0 0 0 +-15.67 21.948 -1.786 0 0 0 0 0 0 0 +-15.718 21.87 -1.783 0 0 0 0 0 0 0 +-15.715 21.793 -1.779 0 0 0 0 0 0 0 +-15.777 21.736 -1.778 0 0 0 0 0 0 0 +-15.85 21.693 -1.778 0 0 0 0 0 0 0 +-15.872 21.58 -1.773 0 0 0 0 0 0 0 +-15.935 21.524 -1.772 0 0 0 0 0 0 0 +-15.981 21.445 -1.769 0 0 0 0 0 0 0 +-16 21.331 -1.764 0 0 0 0 0 0 0 +-16.076 21.291 -1.765 0 0 0 0 0 0 0 +-16.045 21.182 -1.757 0 0 0 0 0 0 0 +-16.05 21.051 -1.749 0 0 0 0 0 0 0 +-16.019 20.874 -1.738 0 0 0 0 0 0 0 +-15.997 20.711 -1.727 0 0 0 0 0 0 0 +-15.935 20.497 -1.712 0 0 0 0 0 0 0 +-15.892 20.31 -1.699 0 0 0 0 0 0 0 +-15.863 20.143 -1.688 0 0 0 0 0 0 0 +-15.777 19.969 -1.674 0 0 0 0 0 0 0 +-15.728 19.779 -1.661 0 0 0 0 0 0 0 +-15.711 19.632 -1.652 0 0 0 0 0 0 0 +-15.746 19.548 -1.648 0 0 0 0 0 0 0 +-15.798 19.488 -1.647 0 0 0 0 0 0 0 +-15.732 19.282 -1.632 0 0 0 0 0 0 0 +-15.658 19.069 -1.617 0 0 0 0 0 0 0 +-15.778 19.154 -1.627 0 0 0 0 0 0 0 +-15.626 18.85 -1.603 0 0 0 0 0 0 0 +-11.842 14.113 -1.156 0 0 0 0 0 0 0 +-14.958 17.703 -1.506 0 0 0 0 0 0 0 +-14.947 17.579 -1.499 0 0 0 0 0 0 0 +-11.913 13.93 -1.149 0 0 0 0 0 0 0 +-11.905 13.876 -1.146 0 0 0 0 0 0 0 +-11.951 13.842 -1.146 0 0 0 0 0 0 0 +-11.933 13.733 -1.139 0 0 0 0 0 0 0 +-11.96 13.678 -1.137 0 0 0 0 0 0 0 +-11.989 13.624 -1.136 0 0 0 0 0 0 0 +-12.036 13.591 -1.136 0 0 0 0 0 0 0 +-12.106 13.584 -1.139 0 0 0 0 0 0 0 +-14.868 16.621 -1.442 0 0 0 0 0 0 0 +-14.932 16.588 -1.443 0 0 0 0 0 0 0 +-14.964 16.519 -1.441 0 0 0 0 0 0 0 +-15.024 16.48 -1.442 0 0 0 0 0 0 0 +-15.048 16.404 -1.439 0 0 0 0 0 0 0 +-15.019 16.268 -1.43 0 0 0 0 0 0 0 +-15.241 16.405 -1.449 0 0 0 0 0 0 0 +-15.64 16.728 -1.486 0 0 0 0 0 0 0 +-15.142 16.146 -1.43 0 0 0 0 0 0 0 +-15.452 16.372 -1.457 0 0 0 0 0 0 0 +-15.055 15.852 -1.41 0 0 0 0 0 0 0 +-15.177 15.881 -1.417 0 0 0 0 0 0 0 +-15.201 15.806 -1.415 0 0 0 0 0 0 0 +-15.288 15.797 -1.419 0 0 0 0 0 0 0 +-15.499 15.914 -1.436 0 0 0 0 0 0 0 +-15.048 15.404 -1.385 0 0 0 0 0 0 0 +-14.905 15.162 -1.365 0 0 0 0 0 0 0 +-15.104 15.268 -1.381 0 0 0 0 0 0 0 +-15.163 15.232 -1.382 0 0 0 0 0 0 0 +-15.181 15.155 -1.379 0 0 0 0 0 0 0 +-15.334 15.211 -1.39 0 0 0 0 0 0 0 +-15.143 14.928 -1.365 0 0 0 0 0 0 0 +-15.175 14.912 -1.366 0 0 0 0 0 0 0 +-15.254 14.896 -1.37 0 0 0 0 0 0 0 +-15.457 15 -1.386 0 0 0 0 0 0 0 +-15.468 14.916 -1.382 0 0 0 0 0 0 0 +-15.274 14.638 -1.358 0 0 0 0 0 0 0 +-15.512 14.772 -1.377 0 0 0 0 0 0 0 +-15.578 14.741 -1.379 0 0 0 0 0 0 0 +-15.922 15.019 -1.411 0 0 0 0 0 0 0 +-15.678 14.696 -1.382 0 0 0 0 0 0 0 +-15.696 14.621 -1.379 0 0 0 0 0 0 0 +-15.674 14.51 -1.373 0 0 0 0 0 0 0 +-15.658 14.404 -1.366 0 0 0 0 0 0 0 +-15.857 14.494 -1.382 0 0 0 0 0 0 0 +-16.02 14.551 -1.393 0 0 0 0 0 0 0 +-16.033 14.517 -1.392 0 0 0 0 0 0 0 +-16.011 14.406 -1.386 0 0 0 0 0 0 0 +-16.07 14.368 -1.387 0 0 0 0 0 0 0 +-16.443 14.608 -1.419 0 0 0 0 0 0 0 +-16.858 14.881 -1.456 0 0 0 0 0 0 0 +-17.008 14.919 -1.466 0 0 0 0 0 0 0 +-17.008 14.825 -1.461 0 0 0 0 0 0 0 +-17.151 14.855 -1.471 0 0 0 0 0 0 0 +-17.129 14.789 -1.466 0 0 0 0 0 0 0 +-17.163 14.724 -1.465 0 0 0 0 0 0 0 +-15.733 13.414 -1.322 0 0 0 0 0 0 0 +-15.988 13.545 -1.343 0 0 0 0 0 0 0 +-15.971 13.445 -1.337 0 0 0 0 0 0 0 +-16.341 13.668 -1.368 0 0 0 0 0 0 0 +-16.235 13.493 -1.354 0 0 0 0 0 0 0 +-16.388 13.577 -1.367 0 0 0 0 0 0 0 +-16.236 13.366 -1.348 0 0 0 0 0 0 0 +-16.223 13.269 -1.343 0 0 0 0 0 0 0 +-16.549 13.449 -1.37 0 0 0 0 0 0 0 +-16.759 13.532 -1.386 0 0 0 0 0 0 0 +-16.78 13.462 -1.384 0 0 0 0 0 0 0 +-16.532 13.179 -1.356 0 0 0 0 0 0 0 +-16.684 13.257 -1.369 0 0 0 0 0 0 0 +-16.973 13.399 -1.392 0 0 0 0 0 0 0 +-16.982 13.32 -1.389 0 0 0 0 0 0 0 +-16.553 12.9 -1.345 0 0 0 0 0 0 0 +-16.833 13.034 -1.367 0 0 0 0 0 0 0 +-17.056 13.12 -1.384 0 0 0 0 0 0 0 +-17.057 13.037 -1.381 0 0 0 0 0 0 0 +-17.021 12.966 -1.375 0 0 0 0 0 0 0 +-16.961 12.837 -1.366 0 0 0 0 0 0 0 +-17.1 12.858 -1.375 0 0 0 0 0 0 0 +-16.766 12.525 -1.341 0 0 0 0 0 0 0 +-16.749 12.431 -1.336 0 0 0 0 0 0 0 +-15.856 11.693 -1.25 0 0 0 0 0 0 0 +-16.534 12.111 -1.309 0 0 0 0 0 0 0 +-16.035 11.669 -1.26 0 0 0 0 0 0 0 +-15.97 11.584 -1.252 0 0 0 0 0 0 0 +-16.06 11.573 -1.257 0 0 0 0 0 0 0 +-15.827 11.33 -1.233 0 0 0 0 0 0 0 +-16.707 11.879 -1.309 0 0 0 0 0 0 0 +-16.764 11.84 -1.311 0 0 0 0 0 0 0 +-16.727 11.736 -1.304 0 0 0 0 0 0 0 +-16.807 11.713 -1.308 0 0 0 0 0 0 0 +-16.904 11.741 -1.315 0 0 0 0 0 0 0 +-16.955 11.698 -1.316 0 0 0 0 0 0 0 +-16.885 11.571 -1.307 0 0 0 0 0 0 0 +-16.925 11.521 -1.307 0 0 0 0 0 0 0 +-16.893 11.422 -1.301 0 0 0 0 0 0 0 +-6.773 4.567 -0.4 0 0 0 0 0 0 0 +-6.756 4.525 -0.397 0 0 0 0 0 0 0 +-6.748 4.504 -0.396 0 0 0 0 0 0 0 +-6.782 4.496 -0.398 0 0 0 0 0 0 0 +-6.796 4.475 -0.398 0 0 0 0 0 0 0 +-6.783 4.436 -0.396 0 0 0 0 0 0 0 +-6.806 4.42 -0.396 0 0 0 0 0 0 0 +-6.813 4.395 -0.396 0 0 0 0 0 0 0 +-16.325 10.379 -1.224 0 0 0 0 0 0 0 +-16.369 10.335 -1.225 0 0 0 0 0 0 0 +-16.359 10.257 -1.221 0 0 0 0 0 0 0 +-16.339 10.173 -1.217 0 0 0 0 0 0 0 +-16.316 10.088 -1.212 0 0 0 0 0 0 0 +-16.317 10.018 -1.209 0 0 0 0 0 0 0 +-16.234 9.897 -1.2 0 0 0 0 0 0 0 +-16.257 9.876 -1.2 0 0 0 0 0 0 0 +-16.252 9.803 -1.197 0 0 0 0 0 0 0 +-16.377 9.808 -1.205 0 0 0 0 0 0 0 +-16.409 9.758 -1.205 0 0 0 0 0 0 0 +-16.455 9.715 -1.207 0 0 0 0 0 0 0 +-16.451 9.644 -1.204 0 0 0 0 0 0 0 +-16.549 9.631 -1.209 0 0 0 0 0 0 0 +-16.655 9.658 -1.217 0 0 0 0 0 0 0 +-16.833 9.69 -1.23 0 0 0 0 0 0 0 +-17.005 9.718 -1.242 0 0 0 0 0 0 0 +-16.966 9.625 -1.236 0 0 0 0 0 0 0 +-17.106 9.633 -1.245 0 0 0 0 0 0 0 +-17.183 9.606 -1.249 0 0 0 0 0 0 0 +-16.918 9.388 -1.224 0 0 0 0 0 0 0 +-16.948 9.335 -1.224 0 0 0 0 0 0 0 +-12.637 6.891 -0.859 0 0 0 0 0 0 0 +-12.634 6.838 -0.857 0 0 0 0 0 0 0 +-12.673 6.808 -0.859 0 0 0 0 0 0 0 +-12.816 6.832 -0.869 0 0 0 0 0 0 0 +-13.625 7.207 -0.934 0 0 0 0 0 0 0 +-13.741 7.213 -0.942 0 0 0 0 0 0 0 +-13.768 7.2 -0.943 0 0 0 0 0 0 0 +-13.815 7.169 -0.945 0 0 0 0 0 0 0 +-17.041 8.769 -1.211 0 0 0 0 0 0 0 +-16.55 8.451 -1.168 0 0 0 0 0 0 0 +-17.872 9.053 -1.275 0 0 0 0 0 0 0 +-16.578 8.334 -1.166 0 0 0 0 0 0 0 +-16.809 8.384 -1.183 0 0 0 0 0 0 0 +-27.061 13.427 -2.025 0 0 0 0 0 0 0 +-14.751 7.217 -1.009 0 0 0 0 0 0 0 +-14.779 7.174 -1.009 0 0 0 0 0 0 0 +-14.629 7.044 -0.995 0 0 0 0 0 0 0 +-14.711 6.97 -0.998 0 0 0 0 0 0 0 +-14.652 6.914 -0.992 0 0 0 0 0 0 0 +-27.399 12.799 -2.027 0 0 0 0 0 0 0 +-27.466 12.726 -2.029 0 0 0 0 0 0 0 +-27.51 12.641 -2.03 0 0 0 0 0 0 0 +-27.516 12.54 -2.027 0 0 0 0 0 0 0 +-27.563 12.456 -2.028 0 0 0 0 0 0 0 +-27.591 12.365 -2.027 0 0 0 0 0 0 0 +-27.61 12.322 -2.027 0 0 0 0 0 0 0 +-27.636 12.229 -2.026 0 0 0 0 0 0 0 +-27.66 12.136 -2.025 0 0 0 0 0 0 0 +-27.74 12.067 -2.028 0 0 0 0 0 0 0 +-27.758 11.971 -2.026 0 0 0 0 0 0 0 +-27.755 11.867 -2.023 0 0 0 0 0 0 0 +-27.805 11.785 -2.024 0 0 0 0 0 0 0 +-27.735 11.653 -2.016 0 0 0 0 0 0 0 +-27.7 11.587 -2.011 0 0 0 0 0 0 0 +-27.683 11.478 -2.007 0 0 0 0 0 0 0 +-27.602 11.343 -1.998 0 0 0 0 0 0 0 +-27.542 11.217 -1.99 0 0 0 0 0 0 0 +-27.447 11.079 -1.98 0 0 0 0 0 0 0 +-27.48 10.992 -1.98 0 0 0 0 0 0 0 +-27.411 10.864 -1.971 0 0 0 0 0 0 0 +-27.344 10.788 -1.965 0 0 0 0 0 0 0 +-27.296 10.67 -1.958 0 0 0 0 0 0 0 +-27.255 10.556 -1.952 0 0 0 0 0 0 0 +-27.24 10.452 -1.949 0 0 0 0 0 0 0 +-27.28 10.369 -1.949 0 0 0 0 0 0 0 +-27.286 10.273 -1.947 0 0 0 0 0 0 0 +-27.301 10.181 -1.946 0 0 0 0 0 0 0 +-27.257 10.116 -1.941 0 0 0 0 0 0 0 +-27.227 10.008 -1.936 0 0 0 0 0 0 0 +-27.223 9.909 -1.934 0 0 0 0 0 0 0 +-27.23 9.815 -1.932 0 0 0 0 0 0 0 +-27.191 9.705 -1.926 0 0 0 0 0 0 0 +-27.202 9.613 -1.925 0 0 0 0 0 0 0 +-27.232 9.527 -1.925 0 0 0 0 0 0 0 +-27.208 9.47 -1.922 0 0 0 0 0 0 0 +-27.166 9.36 -1.916 0 0 0 0 0 0 0 +-27.051 9.226 -1.905 0 0 0 0 0 0 0 +-26.897 9.079 -1.891 0 0 0 0 0 0 0 +-27.098 9.052 -1.904 0 0 0 0 0 0 0 +-27.018 8.931 -1.896 0 0 0 0 0 0 0 +-27.014 8.836 -1.893 0 0 0 0 0 0 0 +-27.122 8.824 -1.9 0 0 0 0 0 0 0 +-27.123 8.731 -1.898 0 0 0 0 0 0 0 +-27.128 8.638 -1.897 0 0 0 0 0 0 0 +-27.13 8.545 -1.895 0 0 0 0 0 0 0 +-27.155 8.459 -1.895 0 0 0 0 0 0 0 +-27.13 8.358 -1.891 0 0 0 0 0 0 0 +-27.003 8.226 -1.879 0 0 0 0 0 0 0 +-26.993 8.177 -1.877 0 0 0 0 0 0 0 +-27.076 8.109 -1.881 0 0 0 0 0 0 0 +-25.94 7.682 -1.792 0 0 0 0 0 0 0 +-26.985 7.898 -1.871 0 0 0 0 0 0 0 +-27.027 7.818 -1.872 0 0 0 0 0 0 0 +-27.084 7.742 -1.874 0 0 0 0 0 0 0 +-27.081 7.65 -1.872 0 0 0 0 0 0 0 +-27.062 7.598 -1.87 0 0 0 0 0 0 0 +-27.038 7.5 -1.866 0 0 0 0 0 0 0 +-27.027 7.406 -1.864 0 0 0 0 0 0 0 +-27.013 7.311 -1.861 0 0 0 0 0 0 0 +-27.013 7.22 -1.859 0 0 0 0 0 0 0 +-27.01 7.128 -1.857 0 0 0 0 0 0 0 +-25.027 6.523 -1.704 0 0 0 0 0 0 0 +-26.943 6.975 -1.85 0 0 0 0 0 0 0 +-26.94 6.884 -1.848 0 0 0 0 0 0 0 +-26.859 6.773 -1.84 0 0 0 0 0 0 0 +-26.94 6.704 -1.844 0 0 0 0 0 0 0 +-10.213 2.524 -0.574 0 0 0 0 0 0 0 +-9.857 2.404 -0.546 0 0 0 0 0 0 0 +-9.618 2.314 -0.527 0 0 0 0 0 0 0 +-9.365 2.239 -0.508 0 0 0 0 0 0 0 +-9.174 2.163 -0.493 0 0 0 0 0 0 0 +-8.908 2.072 -0.472 0 0 0 0 0 0 0 +-8.798 2.018 -0.464 0 0 0 0 0 0 0 +-8.779 1.984 -0.462 0 0 0 0 0 0 0 +-8.793 1.958 -0.462 0 0 0 0 0 0 0 +-8.78 1.927 -0.461 0 0 0 0 0 0 0 +-8.786 1.899 -0.461 0 0 0 0 0 0 0 +-8.795 1.857 -0.461 0 0 0 0 0 0 0 +-8.795 1.671 -0.458 0 0 0 0 0 0 0 +-8.806 1.616 -0.458 0 0 0 0 0 0 0 +-8.823 1.59 -0.459 0 0 0 0 0 0 0 +-8.804 1.558 -0.457 0 0 0 0 0 0 0 +-8.813 1.531 -0.457 0 0 0 0 0 0 0 +-8.819 1.504 -0.458 0 0 0 0 0 0 0 +-8.804 1.487 -0.456 0 0 0 0 0 0 0 +-8.83 1.463 -0.458 0 0 0 0 0 0 0 +-8.861 1.439 -0.46 0 0 0 0 0 0 0 +-8.855 1.41 -0.459 0 0 0 0 0 0 0 +-8.856 1.381 -0.459 0 0 0 0 0 0 0 +-8.888 1.358 -0.461 0 0 0 0 0 0 0 +-8.874 1.327 -0.46 0 0 0 0 0 0 0 +-8.91 1.318 -0.462 0 0 0 0 0 0 0 +-8.912 1.29 -0.462 0 0 0 0 0 0 0 +-8.914 1.262 -0.462 0 0 0 0 0 0 0 +-8.947 1.238 -0.464 0 0 0 0 0 0 0 +-8.959 1.211 -0.465 0 0 0 0 0 0 0 +-8.967 1.183 -0.465 0 0 0 0 0 0 0 +-8.99 1.157 -0.466 0 0 0 0 0 0 0 +-9.004 1.145 -0.467 0 0 0 0 0 0 0 +-9.023 1.118 -0.468 0 0 0 0 0 0 0 +-9.039 1.091 -0.469 0 0 0 0 0 0 0 +-9.046 1.063 -0.47 0 0 0 0 0 0 0 +-9.079 1.038 -0.472 0 0 0 0 0 0 0 +-9.1 1.012 -0.473 0 0 0 0 0 0 0 +-9.111 0.984 -0.474 0 0 0 0 0 0 0 +-9.127 0.971 -0.475 0 0 0 0 0 0 0 +-9.146 0.944 -0.476 0 0 0 0 0 0 0 +-9.148 0.915 -0.476 0 0 0 0 0 0 0 +-21.781 2.074 -1.411 0 0 0 0 0 0 0 +-21.621 1.99 -1.399 0 0 0 0 0 0 0 +-21.549 1.915 -1.393 0 0 0 0 0 0 0 +-26.612 2.275 -1.767 0 0 0 0 0 0 0 +-21.302 1.792 -1.374 0 0 0 0 0 0 0 +-26.566 2.145 -1.763 0 0 0 0 0 0 0 +-26.537 2.059 -1.76 0 0 0 0 0 0 0 +-26.472 1.97 -1.755 0 0 0 0 0 0 0 +-26.434 1.884 -1.752 0 0 0 0 0 0 0 +-19.604 1.342 -1.247 0 0 0 0 0 0 0 +-19.612 1.281 -1.247 0 0 0 0 0 0 0 +-26.365 1.63 -1.745 0 0 0 0 0 0 0 +-26.296 1.584 -1.74 0 0 0 0 0 0 0 +-21.872 1.253 -1.413 0 0 0 0 0 0 0 +-21.758 1.178 -1.404 0 0 0 0 0 0 0 +-21.72 1.107 -1.401 0 0 0 0 0 0 0 +-21.679 1.037 -1.398 0 0 0 0 0 0 0 +-21.682 0.969 -1.398 0 0 0 0 0 0 0 +-21.654 0.9 -1.396 0 0 0 0 0 0 0 +-21.659 0.866 -1.396 0 0 0 0 0 0 0 +-21.683 0.798 -1.398 0 0 0 0 0 0 0 +-21.74 0.732 -1.401 0 0 0 0 0 0 0 +-21.72 0.663 -1.4 0 0 0 0 0 0 0 +-18.334 0.449 -1.15 0 0 0 0 0 0 0 +-21.844 0.426 -1.409 0 0 0 0 0 0 0 +-21.819 0.357 -1.407 0 0 0 0 0 0 0 +-25.833 0.337 -1.702 0 0 0 0 0 0 0 +-25.78 0.256 -1.698 0 0 0 0 0 0 0 +-25.727 0.174 -1.694 0 0 0 0 0 0 0 +-25.689 0.093 -1.692 0 0 0 0 0 0 0 +-25.659 0.013 -1.689 0 0 0 0 0 0 0 +-22.237 -0.02 -1.437 0 0 0 0 0 0 0 +-25.538 -0.108 -1.681 0 0 0 0 0 0 0 +-25.764 -0.19 -1.697 0 0 0 0 0 0 0 +-25.367 -0.266 -1.668 0 0 0 0 0 0 0 +-25.296 -0.345 -1.663 0 0 0 0 0 0 0 +-25.199 -0.423 -1.656 0 0 0 0 0 0 0 +-25.12 -0.5 -1.65 0 0 0 0 0 0 0 +-25.054 -0.577 -1.645 0 0 0 0 0 0 0 +-24.971 -0.654 -1.639 0 0 0 0 0 0 0 +-24.852 -0.69 -1.631 0 0 0 0 0 0 0 +-24.918 -0.77 -1.636 0 0 0 0 0 0 0 +-24.901 -0.848 -1.635 0 0 0 0 0 0 0 +-24.795 -0.922 -1.627 0 0 0 0 0 0 0 +-24.708 -0.996 -1.621 0 0 0 0 0 0 0 +-24.629 -1.071 -1.615 0 0 0 0 0 0 0 +-24.564 -1.145 -1.611 0 0 0 0 0 0 0 +-24.422 -1.177 -1.6 0 0 0 0 0 0 0 +-24.263 -1.245 -1.589 0 0 0 0 0 0 0 +-24.172 -1.317 -1.582 0 0 0 0 0 0 0 +-24.098 -1.389 -1.577 0 0 0 0 0 0 0 +-24.015 -1.459 -1.572 0 0 0 0 0 0 0 +-23.943 -1.531 -1.567 0 0 0 0 0 0 0 +-23.87 -1.601 -1.562 0 0 0 0 0 0 0 +-23.772 -1.632 -1.555 0 0 0 0 0 0 0 +-23.682 -1.7 -1.548 0 0 0 0 0 0 0 +-23.611 -1.77 -1.543 0 0 0 0 0 0 0 +-23.533 -1.838 -1.538 0 0 0 0 0 0 0 +-23.462 -1.907 -1.533 0 0 0 0 0 0 0 +-23.307 -1.968 -1.522 0 0 0 0 0 0 0 +-19.75 -1.726 -1.259 0 0 0 0 0 0 0 +-16.207 -1.437 -0.997 0 0 0 0 0 0 0 +-16.221 -1.49 -0.999 0 0 0 0 0 0 0 +-16.22 -1.541 -0.999 0 0 0 0 0 0 0 +-22.983 -2.268 -1.5 0 0 0 0 0 0 0 +-22.938 -2.336 -1.498 0 0 0 0 0 0 0 +-22.833 -2.398 -1.49 0 0 0 0 0 0 0 +-22.802 -2.467 -1.489 0 0 0 0 0 0 0 +-22.78 -2.501 -1.487 0 0 0 0 0 0 0 +-22.764 -2.571 -1.487 0 0 0 0 0 0 0 +-22.778 -2.645 -1.488 0 0 0 0 0 0 0 +-22.767 -2.717 -1.488 0 0 0 0 0 0 0 +-22.796 -2.793 -1.491 0 0 0 0 0 0 0 +-22.787 -2.865 -1.491 0 0 0 0 0 0 0 +-22.808 -2.94 -1.493 0 0 0 0 0 0 0 +-22.797 -3.011 -1.493 0 0 0 0 0 0 0 +-22.825 -3.052 -1.496 0 0 0 0 0 0 0 +-22.816 -3.123 -1.496 0 0 0 0 0 0 0 +-22.8 -3.194 -1.495 0 0 0 0 0 0 0 +-22.796 -3.267 -1.496 0 0 0 0 0 0 0 +-23.081 -3.382 -1.518 0 0 0 0 0 0 0 +-22.856 -3.422 -1.502 0 0 0 0 0 0 0 +-22.782 -3.484 -1.497 0 0 0 0 0 0 0 +-22.693 -3.507 -1.491 0 0 0 0 0 0 0 +-22.599 -3.565 -1.485 0 0 0 0 0 0 0 +-22.539 -3.628 -1.481 0 0 0 0 0 0 0 +-22.463 -3.688 -1.476 0 0 0 0 0 0 0 +-22.392 -3.749 -1.472 0 0 0 0 0 0 0 +-22.305 -3.806 -1.466 0 0 0 0 0 0 0 +-21.136 -3.674 -1.379 0 0 0 0 0 0 0 +-21.03 -3.689 -1.372 0 0 0 0 0 0 0 +-20.93 -3.739 -1.365 0 0 0 0 0 0 0 +-20.867 -3.796 -1.361 0 0 0 0 0 0 0 +-20.784 -3.848 -1.356 0 0 0 0 0 0 0 +-20.712 -3.902 -1.352 0 0 0 0 0 0 0 +-20.629 -3.953 -1.346 0 0 0 0 0 0 0 +-20.569 -4.009 -1.343 0 0 0 0 0 0 0 +-20.481 -4.025 -1.337 0 0 0 0 0 0 0 +-20.411 -4.078 -1.332 0 0 0 0 0 0 0 +-20.338 -4.13 -1.328 0 0 0 0 0 0 0 +-20.25 -4.178 -1.322 0 0 0 0 0 0 0 +-20.184 -4.231 -1.318 0 0 0 0 0 0 0 +-20.113 -4.281 -1.314 0 0 0 0 0 0 0 +-20.044 -4.333 -1.31 0 0 0 0 0 0 0 +-19.979 -4.351 -1.305 0 0 0 0 0 0 0 +-19.925 -4.405 -1.302 0 0 0 0 0 0 0 +-19.825 -4.448 -1.296 0 0 0 0 0 0 0 +-19.753 -4.497 -1.291 0 0 0 0 0 0 0 +-19.684 -4.547 -1.287 0 0 0 0 0 0 0 +-19.604 -4.593 -1.282 0 0 0 0 0 0 0 +-19.548 -4.645 -1.279 0 0 0 0 0 0 0 +-19.479 -4.66 -1.274 0 0 0 0 0 0 0 +-19.394 -4.705 -1.269 0 0 0 0 0 0 0 +-19.337 -4.755 -1.266 0 0 0 0 0 0 0 +-19.266 -4.802 -1.262 0 0 0 0 0 0 0 +-19.193 -4.847 -1.257 0 0 0 0 0 0 0 +-19.131 -4.896 -1.254 0 0 0 0 0 0 0 +-19.067 -4.943 -1.25 0 0 0 0 0 0 0 +-18.996 -4.956 -1.245 0 0 0 0 0 0 0 +-18.92 -5 -1.241 0 0 0 0 0 0 0 +-18.858 -5.047 -1.237 0 0 0 0 0 0 0 +-18.788 -5.092 -1.233 0 0 0 0 0 0 0 +-18.724 -5.137 -1.229 0 0 0 0 0 0 0 +-18.662 -5.183 -1.226 0 0 0 0 0 0 0 +-18.592 -5.227 -1.222 0 0 0 0 0 0 0 +-18.518 -5.269 -1.217 0 0 0 0 0 0 0 +-18.316 -5.242 -1.202 0 0 0 0 0 0 0 +-17.924 -5.19 -1.174 0 0 0 0 0 0 0 +-17.839 -5.226 -1.168 0 0 0 0 0 0 0 +-17.773 -5.268 -1.164 0 0 0 0 0 0 0 +-17.695 -5.305 -1.16 0 0 0 0 0 0 0 +-17.646 -5.351 -1.157 0 0 0 0 0 0 0 +-17.577 -5.39 -1.153 0 0 0 0 0 0 0 +-17.512 -5.4 -1.149 0 0 0 0 0 0 0 +-17.445 -5.44 -1.145 0 0 0 0 0 0 0 +-17.386 -5.481 -1.142 0 0 0 0 0 0 0 +-17.319 -5.52 -1.138 0 0 0 0 0 0 0 +-17.308 -5.576 -1.138 0 0 0 0 0 0 0 +-17.32 -5.64 -1.141 0 0 0 0 0 0 0 +-17.365 -5.715 -1.146 0 0 0 0 0 0 0 +-17.39 -5.754 -1.148 0 0 0 0 0 0 0 +-17.436 -5.83 -1.153 0 0 0 0 0 0 0 +-17.391 -5.876 -1.151 0 0 0 0 0 0 0 +-17.32 -5.913 -1.147 0 0 0 0 0 0 0 +-17.252 -5.95 -1.143 0 0 0 0 0 0 0 +-17.175 -5.984 -1.139 0 0 0 0 0 0 0 +-17.124 -6.026 -1.136 0 0 0 0 0 0 0 +-17.075 -6.039 -1.133 0 0 0 0 0 0 0 +-16.861 -6.023 -1.118 0 0 0 0 0 0 0 +-16.79 -6.057 -1.114 0 0 0 0 0 0 0 +-16.853 -6.139 -1.12 0 0 0 0 0 0 0 +-16.794 -6.178 -1.117 0 0 0 0 0 0 0 +-16.724 -6.212 -1.113 0 0 0 0 0 0 0 +-16.66 -6.247 -1.11 0 0 0 0 0 0 0 +-16.603 -6.256 -1.106 0 0 0 0 0 0 0 +-16.539 -6.291 -1.102 0 0 0 0 0 0 0 +-16.463 -6.321 -1.098 0 0 0 0 0 0 0 +-16.395 -6.354 -1.094 0 0 0 0 0 0 0 +-16.329 -6.387 -1.091 0 0 0 0 0 0 0 +-16.266 -6.422 -1.087 0 0 0 0 0 0 0 +-16.205 -6.457 -1.084 0 0 0 0 0 0 0 +-16.154 -6.466 -1.081 0 0 0 0 0 0 0 +-16.087 -6.498 -1.077 0 0 0 0 0 0 0 +-16.023 -6.53 -1.073 0 0 0 0 0 0 0 +-15.998 -6.579 -1.073 0 0 0 0 0 0 0 +-15.992 -6.635 -1.074 0 0 0 0 0 0 0 +-15.997 -6.696 -1.076 0 0 0 0 0 0 0 +-15.88 -6.706 -1.069 0 0 0 0 0 0 0 +-15.852 -6.723 -1.067 0 0 0 0 0 0 0 +-15.852 -6.782 -1.069 0 0 0 0 0 0 0 +-16.038 -6.922 -1.086 0 0 0 0 0 0 0 +-16.054 -6.989 -1.089 0 0 0 0 0 0 0 +-16.052 -7.048 -1.09 0 0 0 0 0 0 0 +-16.056 -7.11 -1.092 0 0 0 0 0 0 0 +-15.955 -7.125 -1.086 0 0 0 0 0 0 0 +-15.876 -7.12 -1.081 0 0 0 0 0 0 0 +-15.789 -7.14 -1.075 0 0 0 0 0 0 0 +-15.733 -7.175 -1.073 0 0 0 0 0 0 0 +-15.716 -7.227 -1.073 0 0 0 0 0 0 0 +-15.733 -7.294 -1.076 0 0 0 0 0 0 0 +-15.734 -7.355 -1.078 0 0 0 0 0 0 0 +-15.739 -7.418 -1.081 0 0 0 0 0 0 0 +-15.757 -7.456 -1.083 0 0 0 0 0 0 0 +-15.758 -7.518 -1.085 0 0 0 0 0 0 0 +-15.767 -7.583 -1.088 0 0 0 0 0 0 0 +-15.768 -7.645 -1.09 0 0 0 0 0 0 0 +-14.818 -7.24 -1.014 0 0 0 0 0 0 0 +-14.786 -7.282 -1.013 0 0 0 0 0 0 0 +-15.803 -7.908 -1.101 0 0 0 0 0 0 0 +-16.195 -8.137 -1.134 0 0 0 0 0 0 0 +-16.194 -8.201 -1.136 0 0 0 0 0 0 0 +-16.207 -8.271 -1.139 0 0 0 0 0 0 0 +-16.211 -8.338 -1.142 0 0 0 0 0 0 0 +-16.222 -8.408 -1.145 0 0 0 0 0 0 0 +-16.218 -8.471 -1.147 0 0 0 0 0 0 0 +-16.225 -8.54 -1.15 0 0 0 0 0 0 0 +-16.258 -8.589 -1.153 0 0 0 0 0 0 0 +-16.257 -8.654 -1.156 0 0 0 0 0 0 0 +-16.263 -8.723 -1.158 0 0 0 0 0 0 0 +-16.271 -8.794 -1.161 0 0 0 0 0 0 0 +-16.283 -8.867 -1.165 0 0 0 0 0 0 0 +-16.288 -8.936 -1.168 0 0 0 0 0 0 0 +-16.285 -9.001 -1.17 0 0 0 0 0 0 0 +-16.305 -9.046 -1.173 0 0 0 0 0 0 0 +-16.31 -9.115 -1.175 0 0 0 0 0 0 0 +-16.313 -9.184 -1.178 0 0 0 0 0 0 0 +-16.318 -9.255 -1.181 0 0 0 0 0 0 0 +-16.331 -9.33 -1.184 0 0 0 0 0 0 0 +-16.341 -9.404 -1.188 0 0 0 0 0 0 0 +-16.341 -9.473 -1.19 0 0 0 0 0 0 0 +-16.358 -9.517 -1.193 0 0 0 0 0 0 0 +-16.368 -9.592 -1.197 0 0 0 0 0 0 0 +-16.379 -9.668 -1.2 0 0 0 0 0 0 0 +-16.385 -9.741 -1.203 0 0 0 0 0 0 0 +-16.397 -9.818 -1.207 0 0 0 0 0 0 0 +-16.395 -9.887 -1.209 0 0 0 0 0 0 0 +-16.406 -9.964 -1.213 0 0 0 0 0 0 0 +-16.431 -10.015 -1.217 0 0 0 0 0 0 0 +-16.434 -10.087 -1.219 0 0 0 0 0 0 0 +-16.443 -10.164 -1.223 0 0 0 0 0 0 0 +-16.453 -10.242 -1.227 0 0 0 0 0 0 0 +-16.461 -10.319 -1.23 0 0 0 0 0 0 0 +-16.459 -10.39 -1.233 0 0 0 0 0 0 0 +-16.472 -10.471 -1.237 0 0 0 0 0 0 0 +-16.494 -10.521 -1.24 0 0 0 0 0 0 0 +-16.496 -10.596 -1.243 0 0 0 0 0 0 0 +-16.511 -10.679 -1.248 0 0 0 0 0 0 0 +-16.521 -10.759 -1.251 0 0 0 0 0 0 0 +-16.539 -10.845 -1.256 0 0 0 0 0 0 0 +-16.604 -10.963 -1.265 0 0 0 0 0 0 0 +-16.626 -11.053 -1.27 0 0 0 0 0 0 0 +-16.67 -11.12 -1.275 0 0 0 0 0 0 0 +-16.686 -11.207 -1.28 0 0 0 0 0 0 0 +-16.696 -11.289 -1.284 0 0 0 0 0 0 0 +-16.718 -11.381 -1.289 0 0 0 0 0 0 0 +-16.743 -11.475 -1.294 0 0 0 0 0 0 0 +-16.735 -11.547 -1.297 0 0 0 0 0 0 0 +-16.733 -11.624 -1.3 0 0 0 0 0 0 0 +-10.595 -7.422 -0.752 0 0 0 0 0 0 0 +-10.496 -7.403 -0.745 0 0 0 0 0 0 0 +-10.45 -7.419 -0.743 0 0 0 0 0 0 0 +-10.427 -7.452 -0.743 0 0 0 0 0 0 0 +-10.416 -7.494 -0.744 0 0 0 0 0 0 0 +-10.407 -7.537 -0.745 0 0 0 0 0 0 0 +-10.406 -7.587 -0.747 0 0 0 0 0 0 0 +-10.425 -7.625 -0.75 0 0 0 0 0 0 0 +-10.452 -7.696 -0.755 0 0 0 0 0 0 0 +-10.484 -7.771 -0.76 0 0 0 0 0 0 0 +-10.584 -7.897 -0.772 0 0 0 0 0 0 0 +-16.751 -12.599 -1.343 0 0 0 0 0 0 0 +-16.754 -12.684 -1.347 0 0 0 0 0 0 0 +-16.754 -12.767 -1.351 0 0 0 0 0 0 0 +-16.783 -12.831 -1.355 0 0 0 0 0 0 0 +-16.777 -12.91 -1.359 0 0 0 0 0 0 0 +-16.793 -13.007 -1.364 0 0 0 0 0 0 0 +-16.804 -13.1 -1.369 0 0 0 0 0 0 0 +-16.807 -13.188 -1.373 0 0 0 0 0 0 0 +-16.817 -13.281 -1.378 0 0 0 0 0 0 0 +-16.825 -13.374 -1.382 0 0 0 0 0 0 0 +-16.855 -13.441 -1.387 0 0 0 0 0 0 0 +-16.822 -13.502 -1.388 0 0 0 0 0 0 0 +-16.984 -13.72 -1.408 0 0 0 0 0 0 0 +-17.04 -13.854 -1.417 0 0 0 0 0 0 0 +-17.011 -13.919 -1.418 0 0 0 0 0 0 0 +-17.011 -14.009 -1.422 0 0 0 0 0 0 0 +-17.032 -14.116 -1.429 0 0 0 0 0 0 0 +-17.085 -14.205 -1.436 0 0 0 0 0 0 0 +-17.086 -14.297 -1.44 0 0 0 0 0 0 0 +-17.019 -14.333 -1.438 0 0 0 0 0 0 0 +-16.973 -14.385 -1.438 0 0 0 0 0 0 0 +-16.977 -14.481 -1.443 0 0 0 0 0 0 0 +-16.995 -14.589 -1.449 0 0 0 0 0 0 0 +-17.007 -14.692 -1.455 0 0 0 0 0 0 0 +-17.033 -14.762 -1.46 0 0 0 0 0 0 0 +-17.053 -14.873 -1.466 0 0 0 0 0 0 0 +-17.042 -14.958 -1.47 0 0 0 0 0 0 0 +-13.901 -12.35 -1.169 0 0 0 0 0 0 0 +-17.085 -15.283 -1.488 0 0 0 0 0 0 0 +-17.088 -15.384 -1.493 0 0 0 0 0 0 0 +-17.131 -15.471 -1.5 0 0 0 0 0 0 0 +-17.138 -15.575 -1.505 0 0 0 0 0 0 0 +-17.149 -15.684 -1.511 0 0 0 0 0 0 0 +-17.166 -15.799 -1.518 0 0 0 0 0 0 0 +-17.166 -15.899 -1.523 0 0 0 0 0 0 0 +-17.158 -15.992 -1.527 0 0 0 0 0 0 0 +-17.195 -16.128 -1.536 0 0 0 0 0 0 0 +-17.235 -16.268 -1.545 0 0 0 0 0 0 0 +-17.382 -16.459 -1.563 0 0 0 0 0 0 0 +-17.402 -16.582 -1.57 0 0 0 0 0 0 0 +-17.399 -16.684 -1.575 0 0 0 0 0 0 0 +-17.405 -16.795 -1.581 0 0 0 0 0 0 0 +-13.935 -13.61 -1.234 0 0 0 0 0 0 0 +-17.3 -17.012 -1.587 0 0 0 0 0 0 0 +-17.339 -17.103 -1.593 0 0 0 0 0 0 0 +-17.332 -17.204 -1.598 0 0 0 0 0 0 0 +-17.334 -17.315 -1.604 0 0 0 0 0 0 0 +-17.365 -17.456 -1.613 0 0 0 0 0 0 0 +-17.358 -17.559 -1.618 0 0 0 0 0 0 0 +-17.379 -17.691 -1.626 0 0 0 0 0 0 0 +-17.393 -17.817 -1.633 0 0 0 0 0 0 0 +-17.404 -17.885 -1.638 0 0 0 0 0 0 0 +-17.298 -17.888 -1.632 0 0 0 0 0 0 0 +-17.202 -17.9 -1.628 0 0 0 0 0 0 0 +-17.117 -17.924 -1.625 0 0 0 0 0 0 0 +-17.092 -18.011 -1.628 0 0 0 0 0 0 0 +-17.097 -18.13 -1.635 0 0 0 0 0 0 0 +-17.101 -18.249 -1.642 0 0 0 0 0 0 0 +-14.018 -15.094 -1.316 0 0 0 0 0 0 0 +-14.171 -15.357 -1.338 0 0 0 0 0 0 0 +-17.567 -19.166 -1.714 0 0 0 0 0 0 0 +-17.578 -19.299 -1.722 0 0 0 0 0 0 0 +-17.592 -19.437 -1.73 0 0 0 0 0 0 0 +-17.599 -19.568 -1.738 0 0 0 0 0 0 0 +-17.646 -19.683 -1.747 0 0 0 0 0 0 0 +-17.663 -19.827 -1.755 0 0 0 0 0 0 0 +-17.669 -19.96 -1.763 0 0 0 0 0 0 0 +-17.694 -20.116 -1.773 0 0 0 0 0 0 0 +-17.71 -20.261 -1.782 0 0 0 0 0 0 0 +-17.722 -20.404 -1.79 0 0 0 0 0 0 0 +-17.717 -20.529 -1.797 0 0 0 0 0 0 0 +-14.115 -16.503 -1.399 0 0 0 0 0 0 0 +-14.283 -16.808 -1.424 0 0 0 0 0 0 0 +-17.811 -21.103 -1.834 0 0 0 0 0 0 0 +-17.834 -21.266 -1.844 0 0 0 0 0 0 0 +-17.855 -21.427 -1.854 0 0 0 0 0 0 0 +-17.85 -21.559 -1.861 0 0 0 0 0 0 0 +-17.91 -21.701 -1.872 0 0 0 0 0 0 0 +-17.887 -21.812 -1.877 0 0 0 0 0 0 0 +-17.851 -21.909 -1.881 0 0 0 0 0 0 0 +-17.79 -21.974 -1.882 0 0 0 0 0 0 0 +-17.737 -22.05 -1.884 0 0 0 0 0 0 0 +-17.69 -22.134 -1.887 0 0 0 0 0 0 0 +-17.651 -22.228 -1.89 0 0 0 0 0 0 0 +-17.637 -22.282 -1.893 0 0 0 0 0 0 0 +-14.165 -18.121 -1.494 0 0 0 0 0 0 0 +-14.245 -18.342 -1.51 0 0 0 0 0 0 0 +-17.458 -22.635 -1.905 0 0 0 0 0 0 0 +-17.407 -22.717 -1.908 0 0 0 0 0 0 0 +-17.349 -22.789 -1.909 0 0 0 0 0 0 0 +-17.298 -22.795 -1.907 0 0 0 0 0 0 0 +-17.215 -22.835 -1.906 0 0 0 0 0 0 0 +-17.153 -22.902 -1.907 0 0 0 0 0 0 0 +-17.099 -22.98 -1.909 0 0 0 0 0 0 0 +-17.075 -23.099 -1.915 0 0 0 0 0 0 0 +-17.018 -23.174 -1.917 0 0 0 0 0 0 0 +-16.951 -23.235 -1.918 0 0 0 0 0 0 0 +-16.864 -23.192 -1.912 0 0 0 0 0 0 0 +-16.863 -23.345 -1.921 0 0 0 0 0 0 0 +-16.777 -23.38 -1.919 0 0 0 0 0 0 0 +-16.683 -23.404 -1.917 0 0 0 0 0 0 0 +-16.652 -23.516 -1.922 0 0 0 0 0 0 0 +-16.634 -23.648 -1.929 0 0 0 0 0 0 0 +-16.581 -23.732 -1.932 0 0 0 0 0 0 0 +-16.498 -23.692 -1.926 0 0 0 0 0 0 0 +-16.423 -23.742 -1.926 0 0 0 0 0 0 0 +-16.358 -23.809 -1.927 0 0 0 0 0 0 0 +-16.296 -23.878 -1.929 0 0 0 0 0 0 0 +-16.243 -23.962 -1.932 0 0 0 0 0 0 0 +-16.176 -24.026 -1.933 0 0 0 0 0 0 0 +-16.122 -24.108 -1.936 0 0 0 0 0 0 0 +-16.09 -24.142 -1.937 0 0 0 0 0 0 0 +-16.022 -24.206 -1.938 0 0 0 0 0 0 0 +-15.954 -24.268 -1.939 0 0 0 0 0 0 0 +-15.887 -24.333 -1.94 0 0 0 0 0 0 0 +-15.832 -24.414 -1.943 0 0 0 0 0 0 0 +-15.772 -24.491 -1.945 0 0 0 0 0 0 0 +-15.699 -24.547 -1.946 0 0 0 0 0 0 0 +-15.64 -24.625 -1.948 0 0 0 0 0 0 0 +-15.588 -24.627 -1.946 0 0 0 0 0 0 0 +-15.539 -24.722 -1.95 0 0 0 0 0 0 0 +-15.479 -24.799 -1.953 0 0 0 0 0 0 0 +-15.4 -24.846 -1.953 0 0 0 0 0 0 0 +-15.334 -24.915 -1.955 0 0 0 0 0 0 0 +-15.265 -24.978 -1.956 0 0 0 0 0 0 0 +-15.211 -25.065 -1.959 0 0 0 0 0 0 0 +-15.18 -25.103 -1.96 0 0 0 0 0 0 0 +-15.127 -25.195 -1.964 0 0 0 0 0 0 0 +-15.064 -25.27 -1.967 0 0 0 0 0 0 0 +-14.992 -25.329 -1.968 0 0 0 0 0 0 0 +-14.924 -25.397 -1.969 0 0 0 0 0 0 0 +-14.856 -25.462 -1.971 0 0 0 0 0 0 0 +-14.794 -25.54 -1.974 0 0 0 0 0 0 0 +-14.776 -25.603 -1.977 0 0 0 0 0 0 0 +-14.732 -25.713 -1.982 0 0 0 0 0 0 0 +-14.671 -25.794 -1.985 0 0 0 0 0 0 0 +-14.623 -25.899 -1.99 0 0 0 0 0 0 0 +-14.571 -25.997 -1.995 0 0 0 0 0 0 0 +-14.5 -26.062 -1.996 0 0 0 0 0 0 0 +-14.445 -26.156 -2.001 0 0 0 0 0 0 0 +-14.443 -26.251 -2.007 0 0 0 0 0 0 0 +-14.369 -26.312 -2.008 0 0 0 0 0 0 0 +-14.301 -26.383 -2.01 0 0 0 0 0 0 0 +-14.254 -26.495 -2.016 0 0 0 0 0 0 0 +-14.191 -26.578 -2.019 0 0 0 0 0 0 0 +-14.202 -26.8 -2.034 0 0 0 0 0 0 0 +-14.165 -26.935 -2.041 0 0 0 0 0 0 0 +-14.145 -27 -2.045 0 0 0 0 0 0 0 +-14.017 -26.961 -2.038 0 0 0 0 0 0 0 +-13.883 -26.911 -2.03 0 0 0 0 0 0 0 +-13.758 -26.874 -2.024 0 0 0 0 0 0 0 +-13.645 -26.862 -2.019 0 0 0 0 0 0 0 +-13.534 -26.851 -2.015 0 0 0 0 0 0 0 +-13.414 -26.822 -2.009 0 0 0 0 0 0 0 +-13.353 -26.806 -2.006 0 0 0 0 0 0 0 +-13.247 -26.803 -2.002 0 0 0 0 0 0 0 +-13.142 -26.802 -1.998 0 0 0 0 0 0 0 +-13.037 -26.801 -1.995 0 0 0 0 0 0 0 +-12.945 -26.826 -1.994 0 0 0 0 0 0 0 +-12.85 -26.843 -1.992 0 0 0 0 0 0 0 +-12.748 -26.847 -1.989 0 0 0 0 0 0 0 +-12.695 -26.844 -1.987 0 0 0 0 0 0 0 +-12.592 -26.844 -1.984 0 0 0 0 0 0 0 +-12.493 -26.851 -1.981 0 0 0 0 0 0 0 +-12.396 -26.863 -1.979 0 0 0 0 0 0 0 +-12.289 -26.853 -1.975 0 0 0 0 0 0 0 +-12.19 -26.86 -1.972 0 0 0 0 0 0 0 +-12.09 -26.862 -1.969 0 0 0 0 0 0 0 +-12.03 -26.843 -1.966 0 0 0 0 0 0 0 +-11.948 -26.884 -1.967 0 0 0 0 0 0 0 +-11.849 -26.89 -1.964 0 0 0 0 0 0 0 +-11.755 -26.905 -1.962 0 0 0 0 0 0 0 +-11.639 -26.869 -1.956 0 0 0 0 0 0 0 +-11.548 -26.891 -1.955 0 0 0 0 0 0 0 +-11.459 -26.916 -1.954 0 0 0 0 0 0 0 +-11.41 -26.917 -1.953 0 0 0 0 0 0 0 +-11.324 -26.949 -1.953 0 0 0 0 0 0 0 +-11.225 -26.952 -1.95 0 0 0 0 0 0 0 +-11.144 -26.996 -1.951 0 0 0 0 0 0 0 +-11.053 -27.014 -1.95 0 0 0 0 0 0 0 +-10.968 -27.049 -1.95 0 0 0 0 0 0 0 +-10.871 -27.055 -1.947 0 0 0 0 0 0 0 +-10.825 -27.061 -1.946 0 0 0 0 0 0 0 +-10.732 -27.077 -1.945 0 0 0 0 0 0 0 +-10.637 -27.084 -1.943 0 0 0 0 0 0 0 +-10.55 -27.112 -1.942 0 0 0 0 0 0 0 +-10.444 -27.091 -1.938 0 0 0 0 0 0 0 +-10.346 -27.09 -1.936 0 0 0 0 0 0 0 +-10.256 -27.111 -1.935 0 0 0 0 0 0 0 +-10.214 -27.129 -1.935 0 0 0 0 0 0 0 +-10.131 -27.167 -1.935 0 0 0 0 0 0 0 +-10.04 -27.183 -1.934 0 0 0 0 0 0 0 +-9.955 -27.215 -1.934 0 0 0 0 0 0 0 +-9.867 -27.239 -1.934 0 0 0 0 0 0 0 +-9.789 -27.292 -1.935 0 0 0 0 0 0 0 +-9.73 -27.398 -1.941 0 0 0 0 0 0 0 +-9.648 -27.304 -1.933 0 0 0 0 0 0 0 +-9.566 -27.345 -1.934 0 0 0 0 0 0 0 +-9.445 -27.273 -1.926 0 0 0 0 0 0 0 +-9.343 -27.254 -1.922 0 0 0 0 0 0 0 +-9.248 -27.257 -1.92 0 0 0 0 0 0 0 +-9.154 -27.261 -1.918 0 0 0 0 0 0 0 +-9.063 -27.273 -1.916 0 0 0 0 0 0 0 +-8.972 -27.284 -1.915 0 0 0 0 0 0 0 +-8.924 -27.285 -1.914 0 0 0 0 0 0 0 +-8.837 -27.309 -1.914 0 0 0 0 0 0 0 +-8.75 -27.331 -1.913 0 0 0 0 0 0 0 +-8.663 -27.354 -1.913 0 0 0 0 0 0 0 +-8.575 -27.376 -1.913 0 0 0 0 0 0 0 +-8.494 -27.42 -1.914 0 0 0 0 0 0 0 +-8.409 -27.45 -1.914 0 0 0 0 0 0 0 +-8.371 -27.48 -1.916 0 0 0 0 0 0 0 +-8.303 -27.566 -1.92 0 0 0 0 0 0 0 +-8.236 -27.659 -1.925 0 0 0 0 0 0 0 +-8.107 -27.543 -1.914 0 0 0 0 0 0 0 +-8.007 -27.52 -1.911 0 0 0 0 0 0 0 +-7.902 -27.482 -1.906 0 0 0 0 0 0 0 +-7.848 -27.454 -1.903 0 0 0 0 0 0 0 +-7.754 -27.452 -1.901 0 0 0 0 0 0 0 +-7.664 -27.462 -1.9 0 0 0 0 0 0 0 +-7.577 -27.484 -1.9 0 0 0 0 0 0 0 +-7.481 -27.473 -1.897 0 0 0 0 0 0 0 +-7.391 -27.483 -1.896 0 0 0 0 0 0 0 +-7.303 -27.499 -1.895 0 0 0 0 0 0 0 +-7.208 -27.489 -1.893 0 0 0 0 0 0 0 +-7.164 -27.498 -1.893 0 0 0 0 0 0 0 +-7.071 -27.495 -1.891 0 0 0 0 0 0 0 +-6.984 -27.515 -1.891 0 0 0 0 0 0 0 +-6.892 -27.514 -1.889 0 0 0 0 0 0 0 +-6.81 -27.553 -1.89 0 0 0 0 0 0 0 +-6.721 -27.566 -1.89 0 0 0 0 0 0 0 +-6.646 -27.634 -1.893 0 0 0 0 0 0 0 +-6.614 -27.693 -1.897 0 0 0 0 0 0 0 +-6.511 -27.646 -1.892 0 0 0 0 0 0 0 +-6.39 -27.516 -1.88 0 0 0 0 0 0 0 +-6.289 -27.474 -1.876 0 0 0 0 0 0 0 +-6.197 -27.47 -1.874 0 0 0 0 0 0 0 +-6.109 -27.48 -1.873 0 0 0 0 0 0 0 +-6.015 -27.466 -1.871 0 0 0 0 0 0 0 +-5.973 -27.481 -1.871 0 0 0 0 0 0 0 +-5.882 -27.476 -1.869 0 0 0 0 0 0 0 +-5.795 -27.493 -1.869 0 0 0 0 0 0 0 +-5.706 -27.495 -1.868 0 0 0 0 0 0 0 +-5.614 -27.489 -1.866 0 0 0 0 0 0 0 +-5.53 -27.517 -1.867 0 0 0 0 0 0 0 +-5.443 -27.53 -1.867 0 0 0 0 0 0 0 +-5.401 -27.544 -1.867 0 0 0 0 0 0 0 +-5.321 -27.598 -1.87 0 0 0 0 0 0 0 +-5.25 -27.699 -1.876 0 0 0 0 0 0 0 +-5.207 -27.949 -1.894 0 0 0 0 0 0 0 +-5.081 -27.755 -1.878 0 0 0 0 0 0 0 +-4.965 -27.614 -1.866 0 0 0 0 0 0 0 +-4.86 -27.523 -1.858 0 0 0 0 0 0 0 +-4.81 -27.496 -1.856 0 0 0 0 0 0 0 +-4.72 -27.487 -1.854 0 0 0 0 0 0 0 +-4.627 -27.46 -1.851 0 0 0 0 0 0 0 +-4.533 -27.43 -1.847 0 0 0 0 0 0 0 +-4.444 -27.424 -1.846 0 0 0 0 0 0 0 +-4.355 -27.42 -1.845 0 0 0 0 0 0 0 +-4.266 -27.418 -1.843 0 0 0 0 0 0 0 +-4.22 -27.407 -1.842 0 0 0 0 0 0 0 +-4.132 -27.408 -1.841 0 0 0 0 0 0 0 +-4.041 -27.383 -1.838 0 0 0 0 0 0 0 +-3.954 -27.388 -1.838 0 0 0 0 0 0 0 +-3.867 -27.394 -1.837 0 0 0 0 0 0 0 +-3.782 -27.416 -1.838 0 0 0 0 0 0 0 +-3.697 -27.436 -1.839 0 0 0 0 0 0 0 +-3.656 -27.456 -1.84 0 0 0 0 0 0 0 +-3.572 -27.491 -1.841 0 0 0 0 0 0 0 +-3.487 -27.512 -1.842 0 0 0 0 0 0 0 +-3.399 -27.507 -1.841 0 0 0 0 0 0 0 +-3.312 -27.515 -1.841 0 0 0 0 0 0 0 +-3.225 -27.518 -1.84 0 0 0 0 0 0 0 +-2.206 -19.285 -1.229 0 0 0 0 0 0 0 +-2.069 -18.327 -1.158 0 0 0 0 0 0 0 +-1.661 -17.104 -1.065 0 0 0 0 0 0 0 +-1.608 -17.119 -1.066 0 0 0 0 0 0 0 +-1.58 -17.112 -1.065 0 0 0 0 0 0 0 +-0.533 -17.276 -1.072 0 0 0 0 0 0 0 +-0.479 -17.299 -1.074 0 0 0 0 0 0 0 +-0.375 -17.523 -1.09 0 0 0 0 0 0 0 +-0.468 -26.353 -1.741 0 0 0 0 0 0 0 +-0.384 -26.317 -1.738 0 0 0 0 0 0 0 +-0.301 -26.278 -1.735 0 0 0 0 0 0 0 +-0.26 -26.239 -1.732 0 0 0 0 0 0 0 +-0.177 -26.161 -1.727 0 0 0 0 0 0 0 +-0.095 -26.108 -1.723 0 0 0 0 0 0 0 +-0.013 -26.052 -1.718 0 0 0 0 0 0 0 +0.069 -26.01 -1.715 0 0 0 0 0 0 0 +0.151 -25.964 -1.712 0 0 0 0 0 0 0 +0.231 -25.888 -1.706 0 0 0 0 0 0 0 +0.272 -25.885 -1.706 0 0 0 0 0 0 0 +0.353 -25.843 -1.703 0 0 0 0 0 0 0 +0.434 -25.843 -1.703 0 0 0 0 0 0 0 +0.514 -25.768 -1.698 0 0 0 0 0 0 0 +0.595 -25.778 -1.699 0 0 0 0 0 0 0 +0.756 -25.732 -1.696 0 0 0 0 0 0 0 +0.836 -25.716 -1.695 0 0 0 0 0 0 0 +0.875 -25.68 -1.692 0 0 0 0 0 0 0 +0.954 -25.634 -1.689 0 0 0 0 0 0 0 +1.034 -25.623 -1.688 0 0 0 0 0 0 0 +1.114 -25.595 -1.687 0 0 0 0 0 0 0 +1.19 -25.514 -1.681 0 0 0 0 0 0 0 +1.269 -25.48 -1.679 0 0 0 0 0 0 0 +1.347 -25.434 -1.676 0 0 0 0 0 0 0 +1.385 -25.404 -1.673 0 0 0 0 0 0 0 +1.462 -25.356 -1.67 0 0 0 0 0 0 0 +1.541 -25.335 -1.669 0 0 0 0 0 0 0 +1.619 -25.299 -1.667 0 0 0 0 0 0 0 +1.697 -25.271 -1.665 0 0 0 0 0 0 0 +1.775 -25.258 -1.664 0 0 0 0 0 0 0 +1.816 -25.271 -1.666 0 0 0 0 0 0 0 +1.893 -25.231 -1.663 0 0 0 0 0 0 0 +1.973 -25.229 -1.663 0 0 0 0 0 0 0 +2.05 -25.197 -1.662 0 0 0 0 0 0 0 +2.129 -25.187 -1.661 0 0 0 0 0 0 0 +2.205 -25.15 -1.659 0 0 0 0 0 0 0 +2.285 -25.157 -1.66 0 0 0 0 0 0 0 +2.363 -25.132 -1.659 0 0 0 0 0 0 0 +2.4 -25.102 -1.657 0 0 0 0 0 0 0 +2.473 -25.043 -1.653 0 0 0 0 0 0 0 +2.551 -25.027 -1.652 0 0 0 0 0 0 0 +2.627 -24.997 -1.651 0 0 0 0 0 0 0 +2.699 -24.925 -1.646 0 0 0 0 0 0 0 +2.778 -24.923 -1.647 0 0 0 0 0 0 0 +2.848 -24.84 -1.641 0 0 0 0 0 0 0 +2.877 -24.755 -1.635 0 0 0 0 0 0 0 +2.949 -24.696 -1.631 0 0 0 0 0 0 0 +3.008 -24.538 -1.62 0 0 0 0 0 0 0 +3.064 -24.357 -1.608 0 0 0 0 0 0 0 +3.106 -24.084 -1.588 0 0 0 0 0 0 0 +3.154 -23.866 -1.573 0 0 0 0 0 0 0 +3.203 -23.67 -1.559 0 0 0 0 0 0 0 +3.207 -23.42 -1.541 0 0 0 0 0 0 0 +3.256 -23.234 -1.527 0 0 0 0 0 0 0 +3.303 -23.046 -1.514 0 0 0 0 0 0 0 +3.346 -22.841 -1.5 0 0 0 0 0 0 0 +3.388 -22.633 -1.485 0 0 0 0 0 0 0 +3.435 -22.462 -1.473 0 0 0 0 0 0 0 +3.478 -22.28 -1.46 0 0 0 0 0 0 0 +3.497 -22.168 -1.452 0 0 0 0 0 0 0 +3.552 -22.07 -1.446 0 0 0 0 0 0 0 +3.61 -21.992 -1.441 0 0 0 0 0 0 0 +3.705 -22.134 -1.452 0 0 0 0 0 0 0 +3.782 -22.162 -1.455 0 0 0 0 0 0 0 +3.597 -20.696 -1.346 0 0 0 0 0 0 0 +3.684 -20.812 -1.356 0 0 0 0 0 0 0 +3.65 -20.431 -1.328 0 0 0 0 0 0 0 +3.765 -20.7 -1.349 0 0 0 0 0 0 0 +3.73 -20.153 -1.309 0 0 0 0 0 0 0 +3.766 -19.655 -1.273 0 0 0 0 0 0 0 +3.901 -20.017 -1.301 0 0 0 0 0 0 0 +3.996 -20.169 -1.314 0 0 0 0 0 0 0 +3.974 -19.897 -1.294 0 0 0 0 0 0 0 +3.998 -19.693 -1.279 0 0 0 0 0 0 0 +4.06 -19.682 -1.279 0 0 0 0 0 0 0 +4.054 -19.349 -1.255 0 0 0 0 0 0 0 +1.385 -6.589 -0.294 0 0 0 0 0 0 0 +1.402 -6.567 -0.293 0 0 0 0 0 0 0 +1.416 -6.533 -0.291 0 0 0 0 0 0 0 +1.422 -6.513 -0.29 0 0 0 0 0 0 0 +1.444 -6.515 -0.29 0 0 0 0 0 0 0 +1.463 -6.502 -0.289 0 0 0 0 0 0 0 +1.483 -6.498 -0.289 0 0 0 0 0 0 0 +1.511 -6.526 -0.292 0 0 0 0 0 0 0 +1.54 -6.554 -0.294 0 0 0 0 0 0 0 +1.554 -6.522 -0.292 0 0 0 0 0 0 0 +1.57 -6.545 -0.294 0 0 0 0 0 0 0 +1.598 -6.571 -0.297 0 0 0 0 0 0 0 +4.421 -17.749 -1.146 0 0 0 0 0 0 0 +4.322 -17.124 -1.1 0 0 0 0 0 0 0 +4.49 -17.555 -1.134 0 0 0 0 0 0 0 +4.521 -17.446 -1.127 0 0 0 0 0 0 0 +4.516 -17.208 -1.109 0 0 0 0 0 0 0 +4.5 -17.037 -1.097 0 0 0 0 0 0 0 +4.521 -16.903 -1.088 0 0 0 0 0 0 0 +4.523 -16.702 -1.074 0 0 0 0 0 0 0 +4.534 -16.536 -1.062 0 0 0 0 0 0 0 +4.584 -16.516 -1.062 0 0 0 0 0 0 0 +4.638 -16.507 -1.062 0 0 0 0 0 0 0 +4.647 -16.343 -1.051 0 0 0 0 0 0 0 +4.625 -16.169 -1.038 0 0 0 0 0 0 0 +4.701 -16.244 -1.045 0 0 0 0 0 0 0 +4.749 -16.216 -1.044 0 0 0 0 0 0 0 +4.744 -16.014 -1.029 0 0 0 0 0 0 0 +4.762 -15.894 -1.021 0 0 0 0 0 0 0 +4.808 -15.865 -1.02 0 0 0 0 0 0 0 +4.847 -15.816 -1.017 0 0 0 0 0 0 0 +4.833 -15.681 -1.008 0 0 0 0 0 0 0 +4.86 -15.597 -1.002 0 0 0 0 0 0 0 +4.872 -15.464 -0.993 0 0 0 0 0 0 0 +4.904 -15.395 -0.989 0 0 0 0 0 0 0 +4.921 -15.285 -0.982 0 0 0 0 0 0 0 +4.949 -15.207 -0.977 0 0 0 0 0 0 0 +5.006 -15.221 -0.979 0 0 0 0 0 0 0 +5.057 -15.293 -0.985 0 0 0 0 0 0 0 +5.125 -15.336 -0.99 0 0 0 0 0 0 0 +5.166 -15.299 -0.988 0 0 0 0 0 0 0 +5.23 -15.33 -0.992 0 0 0 0 0 0 0 +5.399 -15.662 -1.019 0 0 0 0 0 0 0 +5.33 -15.308 -0.993 0 0 0 0 0 0 0 +3.72 -10.601 -0.626 0 0 0 0 0 0 0 +3.727 -10.567 -0.624 0 0 0 0 0 0 0 +3.763 -10.562 -0.625 0 0 0 0 0 0 0 +3.794 -10.545 -0.624 0 0 0 0 0 0 0 +3.833 -10.55 -0.626 0 0 0 0 0 0 0 +3.889 -10.6 -0.63 0 0 0 0 0 0 0 +5.708 -15.375 -1.007 0 0 0 0 0 0 0 +5.79 -15.445 -1.014 0 0 0 0 0 0 0 +5.765 -15.305 -1.004 0 0 0 0 0 0 0 +5.872 -15.442 -1.016 0 0 0 0 0 0 0 +5.927 -15.44 -1.017 0 0 0 0 0 0 0 +5.999 -15.482 -1.022 0 0 0 0 0 0 0 +6.104 -15.606 -1.033 0 0 0 0 0 0 0 +5.307 -13.453 -0.864 0 0 0 0 0 0 0 +5.341 -13.416 -0.863 0 0 0 0 0 0 0 +5.35 -13.378 -0.86 0 0 0 0 0 0 0 +5.384 -13.343 -0.859 0 0 0 0 0 0 0 +5.416 -13.3 -0.857 0 0 0 0 0 0 0 +5.453 -13.272 -0.856 0 0 0 0 0 0 0 +5.484 -13.23 -0.854 0 0 0 0 0 0 0 +5.519 -13.197 -0.853 0 0 0 0 0 0 0 +5.552 -13.159 -0.851 0 0 0 0 0 0 0 +5.567 -13.137 -0.85 0 0 0 0 0 0 0 +5.6 -13.1 -0.848 0 0 0 0 0 0 0 +5.632 -13.062 -0.847 0 0 0 0 0 0 0 +5.662 -13.019 -0.845 0 0 0 0 0 0 0 +5.697 -12.988 -0.844 0 0 0 0 0 0 0 +5.734 -12.961 -0.843 0 0 0 0 0 0 0 +5.766 -12.923 -0.841 0 0 0 0 0 0 0 +5.782 -12.905 -0.84 0 0 0 0 0 0 0 +5.813 -12.866 -0.839 0 0 0 0 0 0 0 +5.849 -12.839 -0.838 0 0 0 0 0 0 0 +5.886 -12.812 -0.837 0 0 0 0 0 0 0 +5.914 -12.768 -0.835 0 0 0 0 0 0 0 +5.955 -12.751 -0.835 0 0 0 0 0 0 0 +5.986 -12.712 -0.834 0 0 0 0 0 0 0 +5.997 -12.685 -0.832 0 0 0 0 0 0 0 +6.035 -12.662 -0.832 0 0 0 0 0 0 0 +6.098 -12.692 -0.836 0 0 0 0 0 0 0 +6.145 -12.687 -0.837 0 0 0 0 0 0 0 +6.152 -12.601 -0.832 0 0 0 0 0 0 0 +6.171 -12.539 -0.828 0 0 0 0 0 0 0 +6.194 -12.487 -0.826 0 0 0 0 0 0 0 +6.237 -12.524 -0.829 0 0 0 0 0 0 0 +6.261 -12.474 -0.827 0 0 0 0 0 0 0 +6.302 -12.458 -0.827 0 0 0 0 0 0 0 +6.282 -12.323 -0.818 0 0 0 0 0 0 0 +6.313 -12.289 -0.816 0 0 0 0 0 0 0 +6.343 -12.251 -0.815 0 0 0 0 0 0 0 +6.372 -12.213 -0.814 0 0 0 0 0 0 0 +6.39 -12.202 -0.813 0 0 0 0 0 0 0 +6.425 -12.174 -0.813 0 0 0 0 0 0 0 +6.455 -12.14 -0.812 0 0 0 0 0 0 0 +6.492 -12.116 -0.811 0 0 0 0 0 0 0 +6.536 -12.108 -0.812 0 0 0 0 0 0 0 +6.57 -12.079 -0.812 0 0 0 0 0 0 0 +6.619 -12.079 -0.813 0 0 0 0 0 0 0 +6.607 -12.013 -0.809 0 0 0 0 0 0 0 +6.663 -12.025 -0.811 0 0 0 0 0 0 0 +6.744 -12.081 -0.818 0 0 0 0 0 0 0 +6.689 -11.894 -0.804 0 0 0 0 0 0 0 +6.83 -12.055 -0.819 0 0 0 0 0 0 0 +6.813 -11.939 -0.811 0 0 0 0 0 0 0 +6.861 -11.936 -0.813 0 0 0 0 0 0 0 +7.714 -13.365 -0.936 0 0 0 0 0 0 0 +7.791 -13.401 -0.941 0 0 0 0 0 0 0 +7.852 -13.409 -0.944 0 0 0 0 0 0 0 +7.997 -13.557 -0.958 0 0 0 0 0 0 0 +6.974 -11.745 -0.805 0 0 0 0 0 0 0 +7.02 -11.739 -0.806 0 0 0 0 0 0 0 +8.099 -13.439 -0.955 0 0 0 0 0 0 0 +8.161 -13.494 -0.961 0 0 0 0 0 0 0 +8.219 -13.494 -0.963 0 0 0 0 0 0 0 +8.274 -13.489 -0.965 0 0 0 0 0 0 0 +7.15 -11.581 -0.801 0 0 0 0 0 0 0 +8.411 -13.521 -0.972 0 0 0 0 0 0 0 +7.261 -11.596 -0.807 0 0 0 0 0 0 0 +7.215 -11.444 -0.795 0 0 0 0 0 0 0 +7.212 -11.401 -0.793 0 0 0 0 0 0 0 +7.294 -11.45 -0.799 0 0 0 0 0 0 0 +7.406 -11.544 -0.809 0 0 0 0 0 0 0 +8.798 -13.611 -0.993 0 0 0 0 0 0 0 +8.762 -13.463 -0.982 0 0 0 0 0 0 0 +8.865 -13.527 -0.99 0 0 0 0 0 0 0 +8.875 -13.451 -0.986 0 0 0 0 0 0 0 +7.597 -11.482 -0.813 0 0 0 0 0 0 0 +7.689 -11.541 -0.82 0 0 0 0 0 0 0 +9.02 -13.439 -0.991 0 0 0 0 0 0 0 +7.486 -11.086 -0.784 0 0 0 0 0 0 0 +7.6 -11.18 -0.795 0 0 0 0 0 0 0 +7.542 -11.019 -0.782 0 0 0 0 0 0 0 +7.955 -11.543 -0.831 0 0 0 0 0 0 0 +9.383 -13.517 -1.011 0 0 0 0 0 0 0 +9.383 -13.471 -1.008 0 0 0 0 0 0 0 +7.644 -10.909 -0.78 0 0 0 0 0 0 0 +9.399 -13.315 -1 0 0 0 0 0 0 0 +9.411 -13.244 -0.996 0 0 0 0 0 0 0 +7.756 -10.85 -0.781 0 0 0 0 0 0 0 +7.777 -10.808 -0.78 0 0 0 0 0 0 0 +7.789 -10.753 -0.777 0 0 0 0 0 0 0 +9.583 -13.176 -0.999 0 0 0 0 0 0 0 +8.056 -11.012 -0.804 0 0 0 0 0 0 0 +8.627 -11.711 -0.87 0 0 0 0 0 0 0 +9.634 -12.988 -0.99 0 0 0 0 0 0 0 +9.657 -12.934 -0.988 0 0 0 0 0 0 0 +9.666 -12.862 -0.984 0 0 0 0 0 0 0 +9.653 -12.802 -0.98 0 0 0 0 0 0 0 +9.662 -12.73 -0.976 0 0 0 0 0 0 0 +9.662 -12.648 -0.971 0 0 0 0 0 0 0 +9.662 -12.567 -0.967 0 0 0 0 0 0 0 +9.543 -12.332 -0.947 0 0 0 0 0 0 0 +9.546 -12.256 -0.943 0 0 0 0 0 0 0 +9.557 -12.191 -0.94 0 0 0 0 0 0 0 +9.547 -12.139 -0.936 0 0 0 0 0 0 0 +9.549 -12.064 -0.932 0 0 0 0 0 0 0 +9.57 -12.013 -0.93 0 0 0 0 0 0 0 +9.584 -11.954 -0.927 0 0 0 0 0 0 0 +9.597 -11.892 -0.925 0 0 0 0 0 0 0 +9.604 -11.825 -0.921 0 0 0 0 0 0 0 +9.626 -11.776 -0.919 0 0 0 0 0 0 0 +9.599 -11.706 -0.914 0 0 0 0 0 0 0 +9.548 -11.57 -0.904 0 0 0 0 0 0 0 +9.489 -11.426 -0.893 0 0 0 0 0 0 0 +9.479 -11.341 -0.888 0 0 0 0 0 0 0 +9.515 -11.311 -0.888 0 0 0 0 0 0 0 +9.526 -11.253 -0.885 0 0 0 0 0 0 0 +9.495 -11.145 -0.877 0 0 0 0 0 0 0 +9.547 -11.135 -0.879 0 0 0 0 0 0 0 +9.538 -11.09 -0.876 0 0 0 0 0 0 0 +9.555 -11.039 -0.874 0 0 0 0 0 0 0 +9.56 -10.976 -0.871 0 0 0 0 0 0 0 +9.568 -10.916 -0.868 0 0 0 0 0 0 0 +8.894 -10.085 -0.789 0 0 0 0 0 0 0 +8.704 -9.808 -0.765 0 0 0 0 0 0 0 +8.748 -9.796 -0.766 0 0 0 0 0 0 0 +8.69 -9.7 -0.758 0 0 0 0 0 0 0 +9.553 -10.593 -0.85 0 0 0 0 0 0 0 +9.608 -10.586 -0.852 0 0 0 0 0 0 0 +9.628 -10.542 -0.85 0 0 0 0 0 0 0 +9.623 -10.47 -0.846 0 0 0 0 0 0 0 +9.641 -10.424 -0.845 0 0 0 0 0 0 0 +9.642 -10.36 -0.841 0 0 0 0 0 0 0 +9.639 -10.324 -0.839 0 0 0 0 0 0 0 +9.639 -10.259 -0.836 0 0 0 0 0 0 0 +9.65 -10.207 -0.834 0 0 0 0 0 0 0 +9.66 -10.154 -0.831 0 0 0 0 0 0 0 +9.677 -10.108 -0.83 0 0 0 0 0 0 0 +9.682 -10.05 -0.827 0 0 0 0 0 0 0 +9.676 -10.012 -0.824 0 0 0 0 0 0 0 +9.692 -9.966 -0.823 0 0 0 0 0 0 0 +9.695 -9.907 -0.82 0 0 0 0 0 0 0 +9.107 -9.249 -0.755 0 0 0 0 0 0 0 +9.204 -9.29 -0.762 0 0 0 0 0 0 0 +9.375 -9.402 -0.777 0 0 0 0 0 0 0 +9.117 -9.087 -0.747 0 0 0 0 0 0 0 +9.17 -9.082 -0.749 0 0 0 0 0 0 0 +9.329 -9.21 -0.764 0 0 0 0 0 0 0 +9.179 -9.007 -0.746 0 0 0 0 0 0 0 +9.228 -8.997 -0.748 0 0 0 0 0 0 0 +9.31 -9.021 -0.754 0 0 0 0 0 0 0 +9.762 -9.398 -0.797 0 0 0 0 0 0 0 +9.776 -9.352 -0.795 0 0 0 0 0 0 0 +9.78 -9.298 -0.793 0 0 0 0 0 0 0 +9.788 -9.275 -0.792 0 0 0 0 0 0 0 +9.779 -9.209 -0.788 0 0 0 0 0 0 0 +9.808 -9.178 -0.788 0 0 0 0 0 0 0 +9.801 -9.115 -0.785 0 0 0 0 0 0 0 +9.82 -9.075 -0.784 0 0 0 0 0 0 0 +9.814 -9.013 -0.78 0 0 0 0 0 0 0 +9.831 -8.971 -0.779 0 0 0 0 0 0 0 +9.821 -8.934 -0.777 0 0 0 0 0 0 0 +9.831 -8.887 -0.775 0 0 0 0 0 0 0 +9.825 -8.826 -0.772 0 0 0 0 0 0 0 +9.339 -8.338 -0.721 0 0 0 0 0 0 0 +9.32 -8.269 -0.717 0 0 0 0 0 0 0 +9.341 -8.235 -0.716 0 0 0 0 0 0 0 +9.358 -8.198 -0.715 0 0 0 0 0 0 0 +9.365 -8.178 -0.715 0 0 0 0 0 0 0 +9.379 -8.138 -0.713 0 0 0 0 0 0 0 +9.409 -8.113 -0.714 0 0 0 0 0 0 0 +9.422 -8.073 -0.713 0 0 0 0 0 0 0 +9.455 -8.05 -0.713 0 0 0 0 0 0 0 +9.483 -8.022 -0.714 0 0 0 0 0 0 0 +9.467 -7.983 -0.711 0 0 0 0 0 0 0 +9.478 -7.942 -0.71 0 0 0 0 0 0 0 +9.512 -7.92 -0.71 0 0 0 0 0 0 0 +9.535 -7.889 -0.71 0 0 0 0 0 0 0 +9.535 -7.838 -0.708 0 0 0 0 0 0 0 +9.562 -7.81 -0.708 0 0 0 0 0 0 0 +9.57 -7.767 -0.707 0 0 0 0 0 0 0 +9.584 -7.728 -0.706 0 0 0 0 0 0 0 +9.587 -7.706 -0.705 0 0 0 0 0 0 0 +9.6 -7.667 -0.704 0 0 0 0 0 0 0 +9.607 -7.623 -0.702 0 0 0 0 0 0 0 +9.632 -7.594 -0.702 0 0 0 0 0 0 0 +9.647 -7.556 -0.701 0 0 0 0 0 0 0 +9.661 -7.519 -0.7 0 0 0 0 0 0 0 +9.659 -7.469 -0.698 0 0 0 0 0 0 0 +9.63 -7.422 -0.694 0 0 0 0 0 0 0 +9.637 -7.38 -0.693 0 0 0 0 0 0 0 +9.649 -7.341 -0.692 0 0 0 0 0 0 0 +9.675 -7.313 -0.692 0 0 0 0 0 0 0 +9.689 -7.275 -0.691 0 0 0 0 0 0 0 +9.758 -7.279 -0.695 0 0 0 0 0 0 0 +9.813 -7.272 -0.698 0 0 0 0 0 0 0 +9.86 -7.283 -0.702 0 0 0 0 0 0 0 +9.908 -7.271 -0.704 0 0 0 0 0 0 0 +9.931 -7.24 -0.704 0 0 0 0 0 0 0 +9.984 -7.231 -0.707 0 0 0 0 0 0 0 +10.018 -7.207 -0.708 0 0 0 0 0 0 0 +10.052 -7.184 -0.709 0 0 0 0 0 0 0 +10.096 -7.167 -0.711 0 0 0 0 0 0 0 +10.166 -7.193 -0.716 0 0 0 0 0 0 0 +10.238 -7.195 -0.72 0 0 0 0 0 0 0 +10.563 -7.373 -0.748 0 0 0 0 0 0 0 +10.576 -7.333 -0.747 0 0 0 0 0 0 0 +10.608 -7.306 -0.748 0 0 0 0 0 0 0 +10.617 -7.263 -0.746 0 0 0 0 0 0 0 +10.643 -7.232 -0.747 0 0 0 0 0 0 0 +10.658 -7.218 -0.747 0 0 0 0 0 0 0 +10.671 -7.178 -0.746 0 0 0 0 0 0 0 +10.705 -7.152 -0.747 0 0 0 0 0 0 0 +10.716 -7.11 -0.746 0 0 0 0 0 0 0 +10.735 -7.074 -0.746 0 0 0 0 0 0 0 +10.765 -7.046 -0.747 0 0 0 0 0 0 0 +10.784 -7.01 -0.746 0 0 0 0 0 0 0 +10.795 -6.993 -0.746 0 0 0 0 0 0 0 +10.817 -6.959 -0.746 0 0 0 0 0 0 0 +10.84 -6.926 -0.746 0 0 0 0 0 0 0 +10.852 -6.886 -0.745 0 0 0 0 0 0 0 +10.882 -6.857 -0.746 0 0 0 0 0 0 0 +10.898 -6.82 -0.746 0 0 0 0 0 0 0 +10.921 -6.786 -0.746 0 0 0 0 0 0 0 +10.932 -6.769 -0.746 0 0 0 0 0 0 0 +10.962 -6.74 -0.747 0 0 0 0 0 0 0 +10.985 -6.707 -0.747 0 0 0 0 0 0 0 +11.004 -6.671 -0.747 0 0 0 0 0 0 0 +11.032 -6.641 -0.747 0 0 0 0 0 0 0 +11.076 -6.62 -0.749 0 0 0 0 0 0 0 +11.123 -6.601 -0.752 0 0 0 0 0 0 0 +11.157 -6.597 -0.754 0 0 0 0 0 0 0 +11.211 -6.581 -0.756 0 0 0 0 0 0 0 +11.278 -6.573 -0.76 0 0 0 0 0 0 0 +11.319 -6.549 -0.762 0 0 0 0 0 0 0 +11.374 -6.534 -0.765 0 0 0 0 0 0 0 +11.426 -6.516 -0.768 0 0 0 0 0 0 0 +11.478 -6.497 -0.77 0 0 0 0 0 0 0 +11.523 -6.499 -0.773 0 0 0 0 0 0 0 +11.576 -6.481 -0.776 0 0 0 0 0 0 0 +11.628 -6.462 -0.779 0 0 0 0 0 0 0 +11.676 -6.441 -0.781 0 0 0 0 0 0 0 +11.728 -6.421 -0.784 0 0 0 0 0 0 0 +11.783 -6.403 -0.787 0 0 0 0 0 0 0 +11.837 -6.384 -0.789 0 0 0 0 0 0 0 +11.876 -6.382 -0.792 0 0 0 0 0 0 0 +11.93 -6.362 -0.795 0 0 0 0 0 0 0 +11.98 -6.34 -0.797 0 0 0 0 0 0 0 +12.044 -6.326 -0.801 0 0 0 0 0 0 0 +12.096 -6.304 -0.804 0 0 0 0 0 0 0 +12.156 -6.287 -0.807 0 0 0 0 0 0 0 +8.863 -4.557 -0.533 0 0 0 0 0 0 0 +8.858 -4.537 -0.532 0 0 0 0 0 0 0 +8.876 -4.511 -0.532 0 0 0 0 0 0 0 +12.367 -6.225 -0.819 0 0 0 0 0 0 0 +12.426 -6.206 -0.822 0 0 0 0 0 0 0 +12.487 -6.187 -0.825 0 0 0 0 0 0 0 +12.551 -6.169 -0.829 0 0 0 0 0 0 0 +12.599 -6.144 -0.831 0 0 0 0 0 0 0 +12.648 -6.143 -0.835 0 0 0 0 0 0 0 +12.721 -6.129 -0.839 0 0 0 0 0 0 0 +12.765 -6.101 -0.841 0 0 0 0 0 0 0 +12.835 -6.085 -0.845 0 0 0 0 0 0 0 +12.892 -6.062 -0.848 0 0 0 0 0 0 0 +12.956 -6.043 -0.852 0 0 0 0 0 0 0 +13.011 -6.019 -0.855 0 0 0 0 0 0 0 +13.07 -6.021 -0.859 0 0 0 0 0 0 0 +13.13 -5.999 -0.862 0 0 0 0 0 0 0 +13.191 -5.976 -0.866 0 0 0 0 0 0 0 +13.266 -5.96 -0.87 0 0 0 0 0 0 0 +13.321 -5.935 -0.873 0 0 0 0 0 0 0 +13.386 -5.913 -0.877 0 0 0 0 0 0 0 +13.439 -5.886 -0.88 0 0 0 0 0 0 0 +13.499 -5.887 -0.884 0 0 0 0 0 0 0 +13.567 -5.866 -0.888 0 0 0 0 0 0 0 +13.641 -5.847 -0.892 0 0 0 0 0 0 0 +13.697 -5.82 -0.895 0 0 0 0 0 0 0 +13.764 -5.797 -0.899 0 0 0 0 0 0 0 +13.828 -5.773 -0.903 0 0 0 0 0 0 0 +13.896 -5.75 -0.907 0 0 0 0 0 0 0 +13.956 -5.749 -0.911 0 0 0 0 0 0 0 +14.024 -5.726 -0.915 0 0 0 0 0 0 0 +14.123 -5.714 -0.921 0 0 0 0 0 0 0 +14.001 -5.614 -0.91 0 0 0 0 0 0 0 +13.955 -5.545 -0.905 0 0 0 0 0 0 0 +14.331 -5.641 -0.933 0 0 0 0 0 0 0 +14.354 -5.598 -0.934 0 0 0 0 0 0 0 +14.406 -5.592 -0.937 0 0 0 0 0 0 0 +14.341 -5.516 -0.931 0 0 0 0 0 0 0 +14.075 -5.363 -0.908 0 0 0 0 0 0 0 +14.344 -5.414 -0.928 0 0 0 0 0 0 0 +14.103 -5.273 -0.908 0 0 0 0 0 0 0 +14.366 -5.319 -0.927 0 0 0 0 0 0 0 +14.364 -5.267 -0.926 0 0 0 0 0 0 0 +14.429 -5.265 -0.93 0 0 0 0 0 0 0 +14.46 -5.225 -0.931 0 0 0 0 0 0 0 +14.948 -5.348 -0.968 0 0 0 0 0 0 0 +14.828 -5.252 -0.958 0 0 0 0 0 0 0 +15.042 -5.275 -0.973 0 0 0 0 0 0 0 +14.544 -5.05 -0.933 0 0 0 0 0 0 0 +14.776 -5.078 -0.95 0 0 0 0 0 0 0 +14.809 -5.063 -0.952 0 0 0 0 0 0 0 +14.655 -4.959 -0.939 0 0 0 0 0 0 0 +14.77 -4.947 -0.946 0 0 0 0 0 0 0 +14.684 -4.867 -0.938 0 0 0 0 0 0 0 +14.981 -4.913 -0.96 0 0 0 0 0 0 0 +15.001 -4.867 -0.961 0 0 0 0 0 0 0 +14.928 -4.792 -0.954 0 0 0 0 0 0 0 +14.949 -4.772 -0.955 0 0 0 0 0 0 0 +15.725 -4.964 -1.014 0 0 0 0 0 0 0 +15.703 -4.903 -1.011 0 0 0 0 0 0 0 +15.682 -4.843 -1.008 0 0 0 0 0 0 0 +15.682 -4.789 -1.007 0 0 0 0 0 0 0 +15.727 -4.749 -1.009 0 0 0 0 0 0 0 +15.293 -4.566 -0.975 0 0 0 0 0 0 0 +15.701 -4.633 -1.005 0 0 0 0 0 0 0 +15.641 -4.589 -1 0 0 0 0 0 0 0 +15.623 -4.531 -0.997 0 0 0 0 0 0 0 +15.591 -4.468 -0.994 0 0 0 0 0 0 0 +15.632 -4.427 -0.996 0 0 0 0 0 0 0 +15.69 -4.39 -0.999 0 0 0 0 0 0 0 +15.74 -4.351 -1.002 0 0 0 0 0 0 0 +15.802 -4.314 -1.006 0 0 0 0 0 0 0 +15.851 -4.301 -1.009 0 0 0 0 0 0 0 +15.901 -4.261 -1.012 0 0 0 0 0 0 0 +15.959 -4.223 -1.015 0 0 0 0 0 0 0 +16.017 -4.184 -1.018 0 0 0 0 0 0 0 +16.078 -4.146 -1.022 0 0 0 0 0 0 0 +16.155 -4.112 -1.027 0 0 0 0 0 0 0 +16.219 -4.101 -1.031 0 0 0 0 0 0 0 +16.277 -4.061 -1.035 0 0 0 0 0 0 0 +16.338 -4.022 -1.038 0 0 0 0 0 0 0 +16.393 -3.981 -1.042 0 0 0 0 0 0 0 +16.446 -3.939 -1.045 0 0 0 0 0 0 0 +16.513 -3.9 -1.049 0 0 0 0 0 0 0 +16.61 -3.868 -1.055 0 0 0 0 0 0 0 +16.628 -3.817 -1.056 0 0 0 0 0 0 0 +16.681 -3.801 -1.059 0 0 0 0 0 0 0 +16.743 -3.76 -1.063 0 0 0 0 0 0 0 +16.81 -3.719 -1.067 0 0 0 0 0 0 0 +16.868 -3.677 -1.071 0 0 0 0 0 0 0 +16.95 -3.639 -1.076 0 0 0 0 0 0 0 +16.994 -3.592 -1.078 0 0 0 0 0 0 0 +7.483 -1.572 -0.362 0 0 0 0 0 0 0 +7.442 -1.552 -0.359 0 0 0 0 0 0 0 +7.422 -1.523 -0.357 0 0 0 0 0 0 0 +7.421 -1.499 -0.356 0 0 0 0 0 0 0 +7.4 -1.47 -0.354 0 0 0 0 0 0 0 +7.395 -1.445 -0.354 0 0 0 0 0 0 0 +7.391 -1.42 -0.353 0 0 0 0 0 0 0 +7.384 -1.395 -0.352 0 0 0 0 0 0 0 +7.382 -1.383 -0.352 0 0 0 0 0 0 0 +7.389 -1.36 -0.352 0 0 0 0 0 0 0 +7.391 -1.336 -0.352 0 0 0 0 0 0 0 +7.399 -1.314 -0.352 0 0 0 0 0 0 0 +7.421 -1.294 -0.353 0 0 0 0 0 0 0 +7.429 -1.271 -0.354 0 0 0 0 0 0 0 +7.44 -1.249 -0.354 0 0 0 0 0 0 0 +7.444 -1.237 -0.354 0 0 0 0 0 0 0 +7.464 -1.217 -0.356 0 0 0 0 0 0 0 +7.486 -1.196 -0.357 0 0 0 0 0 0 0 +7.489 -1.172 -0.357 0 0 0 0 0 0 0 +7.515 -1.152 -0.359 0 0 0 0 0 0 0 +7.538 -1.131 -0.36 0 0 0 0 0 0 0 +13.761 -2 -0.823 0 0 0 0 0 0 0 +13.79 -1.982 -0.825 0 0 0 0 0 0 0 +13.847 -1.945 -0.829 0 0 0 0 0 0 0 +19.202 -2.626 -1.227 0 0 0 0 0 0 0 +19.271 -2.574 -1.231 0 0 0 0 0 0 0 +19.366 -2.524 -1.238 0 0 0 0 0 0 0 +19.301 -2.454 -1.232 0 0 0 0 0 0 0 +19.283 -2.391 -1.23 0 0 0 0 0 0 0 +19.397 -2.374 -1.239 0 0 0 0 0 0 0 +19.436 -2.316 -1.241 0 0 0 0 0 0 0 +19.489 -2.261 -1.244 0 0 0 0 0 0 0 +19.54 -2.204 -1.248 0 0 0 0 0 0 0 +19.582 -2.147 -1.25 0 0 0 0 0 0 0 +19.633 -2.09 -1.253 0 0 0 0 0 0 0 +19.691 -2.033 -1.257 0 0 0 0 0 0 0 +19.735 -2.007 -1.26 0 0 0 0 0 0 0 +20.093 -1.979 -1.286 0 0 0 0 0 0 0 +11.189 -1.078 -0.627 0 0 0 0 0 0 0 +11.176 -1.041 -0.626 0 0 0 0 0 0 0 +11.175 -1.006 -0.625 0 0 0 0 0 0 0 +20.019 -1.718 -1.279 0 0 0 0 0 0 0 +20.058 -1.658 -1.282 0 0 0 0 0 0 0 +20.108 -1.63 -1.285 0 0 0 0 0 0 0 +20.161 -1.57 -1.289 0 0 0 0 0 0 0 +20.206 -1.51 -1.292 0 0 0 0 0 0 0 +20.268 -1.451 -1.296 0 0 0 0 0 0 0 +20.326 -1.39 -1.3 0 0 0 0 0 0 0 +20.372 -1.329 -1.303 0 0 0 0 0 0 0 +20.424 -1.268 -1.307 0 0 0 0 0 0 0 +20.48 -1.239 -1.31 0 0 0 0 0 0 0 +20.535 -1.178 -1.314 0 0 0 0 0 0 0 +20.583 -1.116 -1.318 0 0 0 0 0 0 0 +20.64 -1.054 -1.321 0 0 0 0 0 0 0 +20.703 -0.992 -1.326 0 0 0 0 0 0 0 +20.762 -0.929 -1.33 0 0 0 0 0 0 0 +20.811 -0.866 -1.333 0 0 0 0 0 0 0 +20.86 -0.835 -1.337 0 0 0 0 0 0 0 +20.934 -0.772 -1.342 0 0 0 0 0 0 0 +20.98 -0.707 -1.345 0 0 0 0 0 0 0 +21.04 -0.643 -1.35 0 0 0 0 0 0 0 +21.106 -0.579 -1.354 0 0 0 0 0 0 0 +21.141 -0.513 -1.357 0 0 0 0 0 0 0 +21.191 -0.448 -1.36 0 0 0 0 0 0 0 +21.259 -0.416 -1.365 0 0 0 0 0 0 0 +21.326 -0.35 -1.37 0 0 0 0 0 0 0 +21.381 -0.284 -1.374 0 0 0 0 0 0 0 +21.436 -0.217 -1.378 0 0 0 0 0 0 0 +21.508 -0.15 -1.384 0 0 0 0 0 0 0 +21.556 -0.083 -1.387 0 0 0 0 0 0 0 +21.612 -0.015 -1.391 0 0 0 0 0 0 0 +20.654 0.003 -1.456 0 0 0 0 0 0 0 +13.425 0.074 -0.876 0 0 0 0 0 0 0 +13.421 0.116 -0.876 0 0 0 0 0 0 0 +13.518 0.159 -0.883 0 0 0 0 0 0 0 +20.778 0.296 -1.466 0 0 0 0 0 0 0 +20.771 0.361 -1.466 0 0 0 0 0 0 0 +20.803 0.427 -1.468 0 0 0 0 0 0 0 +20.82 0.493 -1.47 0 0 0 0 0 0 0 +20.863 0.527 -1.473 0 0 0 0 0 0 0 +20.891 0.593 -1.476 0 0 0 0 0 0 0 +13.744 0.486 -0.902 0 0 0 0 0 0 0 +14.001 0.538 -0.923 0 0 0 0 0 0 0 +14.013 0.583 -0.924 0 0 0 0 0 0 0 +14.081 0.63 -0.93 0 0 0 0 0 0 0 +14.177 0.746 -0.938 0 0 0 0 0 0 0 +14.32 0.798 -0.95 0 0 0 0 0 0 0 +14.413 0.848 -0.957 0 0 0 0 0 0 0 +21.067 1.294 -1.492 0 0 0 0 0 0 0 +14.595 0.951 -0.972 0 0 0 0 0 0 0 +14.577 0.973 -0.971 0 0 0 0 0 0 0 +21.074 1.461 -1.494 0 0 0 0 0 0 0 +21.107 1.53 -1.497 0 0 0 0 0 0 0 +21.188 1.603 -1.504 0 0 0 0 0 0 0 +15.132 1.2 -1.017 0 0 0 0 0 0 0 +14.962 1.281 -1.004 0 0 0 0 0 0 0 +14.924 1.325 -1.001 0 0 0 0 0 0 0 +14.838 1.341 -0.994 0 0 0 0 0 0 0 +15.911 1.537 -1.081 0 0 0 0 0 0 0 +16.071 1.603 -1.095 0 0 0 0 0 0 0 +15.552 1.602 -1.053 0 0 0 0 0 0 0 +21.349 2.257 -1.521 0 0 0 0 0 0 0 +21.343 2.324 -1.521 0 0 0 0 0 0 0 +21.421 2.367 -1.528 0 0 0 0 0 0 0 +21.402 2.432 -1.527 0 0 0 0 0 0 0 +21.431 2.504 -1.53 0 0 0 0 0 0 0 +21.463 2.576 -1.533 0 0 0 0 0 0 0 +21.488 2.648 -1.536 0 0 0 0 0 0 0 +21.516 2.72 -1.539 0 0 0 0 0 0 0 +21.491 2.785 -1.538 0 0 0 0 0 0 0 +16.25 2.138 -1.114 0 0 0 0 0 0 0 +16.336 2.202 -1.121 0 0 0 0 0 0 0 +21.585 2.97 -1.547 0 0 0 0 0 0 0 +21.517 3.029 -1.542 0 0 0 0 0 0 0 +21.499 3.096 -1.542 0 0 0 0 0 0 0 +21.325 3.139 -1.528 0 0 0 0 0 0 0 +20.872 3.14 -1.492 0 0 0 0 0 0 0 +20.912 3.18 -1.496 0 0 0 0 0 0 0 +21.651 3.361 -1.557 0 0 0 0 0 0 0 +21.658 3.431 -1.558 0 0 0 0 0 0 0 +21.675 3.504 -1.56 0 0 0 0 0 0 0 +21.758 3.587 -1.568 0 0 0 0 0 0 0 +21.774 3.66 -1.57 0 0 0 0 0 0 0 +21.78 3.732 -1.572 0 0 0 0 0 0 0 +21.776 3.766 -1.572 0 0 0 0 0 0 0 +21.737 3.83 -1.57 0 0 0 0 0 0 0 +21.829 3.917 -1.578 0 0 0 0 0 0 0 +21.775 3.978 -1.575 0 0 0 0 0 0 0 +21.847 4.062 -1.582 0 0 0 0 0 0 0 +21.873 4.138 -1.585 0 0 0 0 0 0 0 +21.887 4.212 -1.587 0 0 0 0 0 0 0 +18.764 3.645 -1.333 0 0 0 0 0 0 0 +21.807 4.303 -1.582 0 0 0 0 0 0 0 +21.922 4.397 -1.593 0 0 0 0 0 0 0 +21.973 4.479 -1.598 0 0 0 0 0 0 0 +21.962 4.549 -1.598 0 0 0 0 0 0 0 +22.006 4.63 -1.603 0 0 0 0 0 0 0 +21.996 4.7 -1.604 0 0 0 0 0 0 0 +22.016 4.74 -1.606 0 0 0 0 0 0 0 +22.03 4.816 -1.608 0 0 0 0 0 0 0 +18.888 4.195 -1.351 0 0 0 0 0 0 0 +22.032 4.962 -1.611 0 0 0 0 0 0 0 +22.11 5.052 -1.619 0 0 0 0 0 0 0 +22.092 5.121 -1.618 0 0 0 0 0 0 0 +22.107 5.198 -1.621 0 0 0 0 0 0 0 +22.031 5.216 -1.615 0 0 0 0 0 0 0 +21.909 5.261 -1.607 0 0 0 0 0 0 0 +22.011 5.358 -1.616 0 0 0 0 0 0 0 +20.277 5.005 -1.475 0 0 0 0 0 0 0 +22.288 5.574 -1.642 0 0 0 0 0 0 0 +22.344 5.662 -1.648 0 0 0 0 0 0 0 +22.351 5.739 -1.65 0 0 0 0 0 0 0 +22.342 5.774 -1.65 0 0 0 0 0 0 0 +22.34 5.848 -1.652 0 0 0 0 0 0 0 +22.296 5.912 -1.65 0 0 0 0 0 0 0 +22.254 5.975 -1.648 0 0 0 0 0 0 0 +22.208 6.038 -1.645 0 0 0 0 0 0 0 +16.127 4.446 -1.141 0 0 0 0 0 0 0 +16.052 4.48 -1.136 0 0 0 0 0 0 0 +16.054 4.617 -1.139 0 0 0 0 0 0 0 +16.019 4.661 -1.137 0 0 0 0 0 0 0 +16.006 4.712 -1.138 0 0 0 0 0 0 0 +15.97 4.756 -1.136 0 0 0 0 0 0 0 +15.951 4.805 -1.135 0 0 0 0 0 0 0 +15.938 4.828 -1.135 0 0 0 0 0 0 0 +15.905 4.873 -1.134 0 0 0 0 0 0 0 +15.892 4.924 -1.134 0 0 0 0 0 0 0 +15.863 4.97 -1.133 0 0 0 0 0 0 0 +15.847 5.019 -1.133 0 0 0 0 0 0 0 +15.824 5.067 -1.132 0 0 0 0 0 0 0 +15.796 5.113 -1.131 0 0 0 0 0 0 0 +15.786 5.137 -1.131 0 0 0 0 0 0 0 +15.749 5.18 -1.129 0 0 0 0 0 0 0 +15.748 5.234 -1.13 0 0 0 0 0 0 0 +15.715 5.278 -1.129 0 0 0 0 0 0 0 +15.694 5.326 -1.129 0 0 0 0 0 0 0 +15.672 5.373 -1.128 0 0 0 0 0 0 0 +15.657 5.423 -1.128 0 0 0 0 0 0 0 +15.621 5.466 -1.127 0 0 0 0 0 0 0 +15.62 5.493 -1.127 0 0 0 0 0 0 0 +15.595 5.539 -1.127 0 0 0 0 0 0 0 +15.581 5.59 -1.127 0 0 0 0 0 0 0 +15.558 5.637 -1.126 0 0 0 0 0 0 0 +15.546 5.687 -1.127 0 0 0 0 0 0 0 +15.518 5.733 -1.126 0 0 0 0 0 0 0 +15.498 5.753 -1.125 0 0 0 0 0 0 0 +15.433 5.784 -1.121 0 0 0 0 0 0 0 +15.417 5.833 -1.121 0 0 0 0 0 0 0 +15.419 5.89 -1.123 0 0 0 0 0 0 0 +15.38 5.93 -1.121 0 0 0 0 0 0 0 +15.424 6.003 -1.127 0 0 0 0 0 0 0 +16.36 6.424 -1.209 0 0 0 0 0 0 0 +16.532 6.522 -1.225 0 0 0 0 0 0 0 +17.832 7.097 -1.339 0 0 0 0 0 0 0 +18.478 7.421 -1.397 0 0 0 0 0 0 0 +21.285 8.621 -1.641 0 0 0 0 0 0 0 +21.254 8.687 -1.641 0 0 0 0 0 0 0 +21.229 8.754 -1.641 0 0 0 0 0 0 0 +21.218 8.828 -1.643 0 0 0 0 0 0 0 +21.207 8.863 -1.643 0 0 0 0 0 0 0 +21.174 8.927 -1.643 0 0 0 0 0 0 0 +21.157 8.998 -1.644 0 0 0 0 0 0 0 +21.127 9.064 -1.643 0 0 0 0 0 0 0 +21.107 9.134 -1.644 0 0 0 0 0 0 0 +21.075 9.199 -1.644 0 0 0 0 0 0 0 +21.015 9.251 -1.641 0 0 0 0 0 0 0 +21 9.323 -1.642 0 0 0 0 0 0 0 +20.982 9.355 -1.642 0 0 0 0 0 0 0 +20.972 9.43 -1.644 0 0 0 0 0 0 0 +20.982 9.514 -1.647 0 0 0 0 0 0 0 +20.945 9.576 -1.647 0 0 0 0 0 0 0 +20.857 9.615 -1.642 0 0 0 0 0 0 0 +20.825 9.68 -1.641 0 0 0 0 0 0 0 +20.816 9.755 -1.643 0 0 0 0 0 0 0 +20.808 9.791 -1.644 0 0 0 0 0 0 0 +20.772 9.854 -1.644 0 0 0 0 0 0 0 +20.764 9.931 -1.646 0 0 0 0 0 0 0 +20.767 10.012 -1.649 0 0 0 0 0 0 0 +20.768 10.093 -1.652 0 0 0 0 0 0 0 +20.727 10.154 -1.651 0 0 0 0 0 0 0 +20.684 10.173 -1.648 0 0 0 0 0 0 0 +20.647 10.236 -1.648 0 0 0 0 0 0 0 +20.646 10.316 -1.651 0 0 0 0 0 0 0 +20.626 10.387 -1.652 0 0 0 0 0 0 0 +20.592 10.451 -1.652 0 0 0 0 0 0 0 +20.589 10.531 -1.654 0 0 0 0 0 0 0 +20.563 10.6 -1.655 0 0 0 0 0 0 0 +20.577 10.647 -1.658 0 0 0 0 0 0 0 +20.577 10.729 -1.661 0 0 0 0 0 0 0 +20.518 10.781 -1.659 0 0 0 0 0 0 0 +20.519 10.864 -1.662 0 0 0 0 0 0 0 +20.466 10.918 -1.66 0 0 0 0 0 0 0 +20.482 11.01 -1.665 0 0 0 0 0 0 0 +20.458 11.08 -1.666 0 0 0 0 0 0 0 +20.448 11.116 -1.666 0 0 0 0 0 0 0 +20.462 11.207 -1.671 0 0 0 0 0 0 0 +20.444 11.28 -1.672 0 0 0 0 0 0 0 +20.426 11.354 -1.674 0 0 0 0 0 0 0 +20.393 11.42 -1.674 0 0 0 0 0 0 0 +20.347 11.479 -1.673 0 0 0 0 0 0 0 +20.299 11.535 -1.672 0 0 0 0 0 0 0 +20.296 11.576 -1.674 0 0 0 0 0 0 0 +20.282 11.653 -1.676 0 0 0 0 0 0 0 +20.251 11.719 -1.676 0 0 0 0 0 0 0 +20.231 11.793 -1.678 0 0 0 0 0 0 0 +20.221 11.873 -1.68 0 0 0 0 0 0 0 +20.194 11.942 -1.681 0 0 0 0 0 0 0 +20.17 12.014 -1.683 0 0 0 0 0 0 0 +20.163 12.053 -1.684 0 0 0 0 0 0 0 +20.134 12.121 -1.684 0 0 0 0 0 0 0 +20.111 12.193 -1.686 0 0 0 0 0 0 0 +20.098 12.272 -1.688 0 0 0 0 0 0 0 +20.072 12.343 -1.689 0 0 0 0 0 0 0 +20.056 12.42 -1.692 0 0 0 0 0 0 0 +20.026 12.488 -1.692 0 0 0 0 0 0 0 +20.01 12.566 -1.695 0 0 0 0 0 0 0 +19.992 12.599 -1.695 0 0 0 0 0 0 0 +19.973 12.674 -1.697 0 0 0 0 0 0 0 +19.941 12.742 -1.698 0 0 0 0 0 0 0 +19.924 12.82 -1.7 0 0 0 0 0 0 0 +13.302 8.688 -1.074 0 0 0 0 0 0 0 +19.838 13.03 -1.703 0 0 0 0 0 0 0 +14.823 9.777 -1.224 0 0 0 0 0 0 0 +14.799 9.828 -1.224 0 0 0 0 0 0 0 +14.707 9.834 -1.218 0 0 0 0 0 0 0 +14.826 9.981 -1.233 0 0 0 0 0 0 0 +14.775 10.014 -1.231 0 0 0 0 0 0 0 +14.757 10.07 -1.232 0 0 0 0 0 0 0 +12.974 8.887 -1.061 0 0 0 0 0 0 0 +14.635 10.088 -1.225 0 0 0 0 0 0 0 +14.423 10.009 -1.207 0 0 0 0 0 0 0 +12.797 8.944 -1.051 0 0 0 0 0 0 0 +14.058 9.888 -1.178 0 0 0 0 0 0 0 +12.572 8.906 -1.035 0 0 0 0 0 0 0 +12.408 8.848 -1.022 0 0 0 0 0 0 0 +12.329 8.821 -1.015 0 0 0 0 0 0 0 +11.453 8.251 -0.931 0 0 0 0 0 0 0 +12.296 8.915 -1.017 0 0 0 0 0 0 0 +12.353 9.016 -1.026 0 0 0 0 0 0 0 +12.055 8.857 -0.999 0 0 0 0 0 0 0 +12.463 9.216 -1.042 0 0 0 0 0 0 0 +12.343 9.188 -1.033 0 0 0 0 0 0 0 +12.193 9.106 -1.02 0 0 0 0 0 0 0 +12.073 9.076 -1.011 0 0 0 0 0 0 0 +11.954 9.045 -1.002 0 0 0 0 0 0 0 +11.868 9.039 -0.996 0 0 0 0 0 0 0 +11.992 9.193 -1.011 0 0 0 0 0 0 0 +11.881 9.167 -1.003 0 0 0 0 0 0 0 +11.907 9.247 -1.008 0 0 0 0 0 0 0 +11.911 9.31 -1.012 0 0 0 0 0 0 0 +11.887 9.322 -1.011 0 0 0 0 0 0 0 +11.662 9.205 -0.991 0 0 0 0 0 0 0 +13.54 10.751 -1.186 0 0 0 0 0 0 0 +11.588 9.266 -0.989 0 0 0 0 0 0 0 +13.386 10.767 -1.177 0 0 0 0 0 0 0 +13.267 10.741 -1.168 0 0 0 0 0 0 0 +6.748 5.514 -0.498 0 0 0 0 0 0 0 +6.738 5.524 -0.498 0 0 0 0 0 0 0 +6.666 5.501 -0.492 0 0 0 0 0 0 0 +6.672 5.541 -0.495 0 0 0 0 0 0 0 +6.751 5.642 -0.505 0 0 0 0 0 0 0 +11.304 9.484 -0.983 0 0 0 0 0 0 0 +11.329 9.565 -0.988 0 0 0 0 0 0 0 +11.44 9.721 -1.003 0 0 0 0 0 0 0 +11.209 9.555 -0.981 0 0 0 0 0 0 0 +11.143 9.559 -0.977 0 0 0 0 0 0 0 +11.101 9.584 -0.975 0 0 0 0 0 0 0 +11.406 9.91 -1.011 0 0 0 0 0 0 0 +11.551 10.099 -1.03 0 0 0 0 0 0 0 +11.253 9.901 -1.001 0 0 0 0 0 0 0 +11.19 9.909 -0.998 0 0 0 0 0 0 0 +11.3 10.037 -1.011 0 0 0 0 0 0 0 +11.244 10.052 -1.009 0 0 0 0 0 0 0 +11.021 9.915 -0.988 0 0 0 0 0 0 0 +11.208 10.146 -1.012 0 0 0 0 0 0 0 +11.047 10.065 -0.998 0 0 0 0 0 0 0 +11.092 10.169 -1.006 0 0 0 0 0 0 0 +10.984 10.134 -0.998 0 0 0 0 0 0 0 +11.012 10.192 -1.003 0 0 0 0 0 0 0 +12.507 11.643 -1.17 0 0 0 0 0 0 0 +12.428 11.643 -1.165 0 0 0 0 0 0 0 +12.34 11.634 -1.16 0 0 0 0 0 0 0 +12.156 11.533 -1.143 0 0 0 0 0 0 0 +12.137 11.588 -1.145 0 0 0 0 0 0 0 +12.207 11.728 -1.157 0 0 0 0 0 0 0 +12.193 11.751 -1.158 0 0 0 0 0 0 0 +12.112 11.747 -1.153 0 0 0 0 0 0 0 +12.05 11.761 -1.15 0 0 0 0 0 0 0 +11.988 11.774 -1.147 0 0 0 0 0 0 0 +11.979 11.839 -1.15 0 0 0 0 0 0 0 +11.983 11.918 -1.155 0 0 0 0 0 0 0 +11.923 11.933 -1.152 0 0 0 0 0 0 0 +11.882 11.929 -1.15 0 0 0 0 0 0 0 +12.02 12.143 -1.17 0 0 0 0 0 0 0 +11.883 12.081 -1.158 0 0 0 0 0 0 0 +12.006 12.282 -1.177 0 0 0 0 0 0 0 +11.664 12.009 -1.142 0 0 0 0 0 0 0 +11.847 12.273 -1.167 0 0 0 0 0 0 0 +11.808 12.31 -1.167 0 0 0 0 0 0 0 +11.576 12.107 -1.143 0 0 0 0 0 0 0 +11.693 12.306 -1.161 0 0 0 0 0 0 0 +11.605 12.291 -1.155 0 0 0 0 0 0 0 +11.654 12.42 -1.165 0 0 0 0 0 0 0 +11.501 12.335 -1.152 0 0 0 0 0 0 0 +11.492 12.403 -1.155 0 0 0 0 0 0 0 +11.537 12.53 -1.165 0 0 0 0 0 0 0 +11.51 12.54 -1.165 0 0 0 0 0 0 0 +11.518 12.628 -1.17 0 0 0 0 0 0 0 +11.329 12.5 -1.152 0 0 0 0 0 0 0 +11.378 12.633 -1.163 0 0 0 0 0 0 0 +11.199 12.513 -1.146 0 0 0 0 0 0 0 +11.062 12.44 -1.134 0 0 0 0 0 0 0 +11.245 12.725 -1.161 0 0 0 0 0 0 0 +11.184 12.697 -1.156 0 0 0 0 0 0 0 +11.044 12.618 -1.144 0 0 0 0 0 0 0 +11.347 13.044 -1.186 0 0 0 0 0 0 0 +11.695 13.529 -1.234 0 0 0 0 0 0 0 +11.889 13.84 -1.263 0 0 0 0 0 0 0 +11.881 13.919 -1.267 0 0 0 0 0 0 0 +11.818 13.933 -1.265 0 0 0 0 0 0 0 +11.546 13.701 -1.236 0 0 0 0 0 0 0 +11.839 14.092 -1.276 0 0 0 0 0 0 0 +11.861 14.209 -1.284 0 0 0 0 0 0 0 +11.675 14.076 -1.266 0 0 0 0 0 0 0 +11.823 14.345 -1.29 0 0 0 0 0 0 0 +11.789 14.396 -1.292 0 0 0 0 0 0 0 +11.701 14.38 -1.286 0 0 0 0 0 0 0 +11.53 14.262 -1.27 0 0 0 0 0 0 0 +11.409 14.157 -1.258 0 0 0 0 0 0 0 +11.347 14.172 -1.255 0 0 0 0 0 0 0 +11.378 14.302 -1.265 0 0 0 0 0 0 0 +11.624 14.705 -1.303 0 0 0 0 0 0 0 +11.8 15.023 -1.332 0 0 0 0 0 0 0 +11.723 15.023 -1.328 0 0 0 0 0 0 0 +11.71 15.055 -1.329 0 0 0 0 0 0 0 +11.857 15.342 -1.355 0 0 0 0 0 0 0 +11.808 15.378 -1.354 0 0 0 0 0 0 0 +12.342 16.177 -1.431 0 0 0 0 0 0 0 +12.554 16.561 -1.466 0 0 0 0 0 0 0 +12.764 16.948 -1.501 0 0 0 0 0 0 0 +12.922 17.27 -1.529 0 0 0 0 0 0 0 +12.983 17.408 -1.541 0 0 0 0 0 0 0 +12.95 17.478 -1.544 0 0 0 0 0 0 0 +12.894 17.517 -1.544 0 0 0 0 0 0 0 +12.831 17.546 -1.543 0 0 0 0 0 0 0 +12.764 17.57 -1.541 0 0 0 0 0 0 0 +12.7 17.599 -1.54 0 0 0 0 0 0 0 +12.651 17.647 -1.541 0 0 0 0 0 0 0 +12.567 17.647 -1.537 0 0 0 0 0 0 0 +12.533 17.657 -1.536 0 0 0 0 0 0 0 +12.471 17.689 -1.535 0 0 0 0 0 0 0 +12.376 17.67 -1.53 0 0 0 0 0 0 0 +12.344 17.744 -1.533 0 0 0 0 0 0 0 +12.31 17.813 -1.536 0 0 0 0 0 0 0 +12.417 18.089 -1.559 0 0 0 0 0 0 0 +12.55 18.406 -1.586 0 0 0 0 0 0 0 +12.63 18.585 -1.602 0 0 0 0 0 0 0 +12.622 18.699 -1.609 0 0 0 0 0 0 0 +12.665 18.891 -1.624 0 0 0 0 0 0 0 +12.64 18.982 -1.629 0 0 0 0 0 0 0 +12.652 19.129 -1.639 0 0 0 0 0 0 0 +12.579 19.149 -1.637 0 0 0 0 0 0 0 +12.528 19.204 -1.639 0 0 0 0 0 0 0 +12.539 19.353 -1.649 0 0 0 0 0 0 0 +12.544 19.426 -1.654 0 0 0 0 0 0 0 +12.478 19.459 -1.654 0 0 0 0 0 0 0 +12.424 19.508 -1.655 0 0 0 0 0 0 0 +12.231 19.475 -1.644 0 0 0 0 0 0 0 +12.293 19.711 -1.663 0 0 0 0 0 0 0 +12.264 19.733 -1.663 0 0 0 0 0 0 0 +12.212 19.787 -1.664 0 0 0 0 0 0 0 +12.026 19.625 -1.646 0 0 0 0 0 0 0 +12.125 19.926 -1.67 0 0 0 0 0 0 0 +12.028 19.906 -1.665 0 0 0 0 0 0 0 +11.957 19.93 -1.664 0 0 0 0 0 0 0 +11.94 20.045 -1.671 0 0 0 0 0 0 0 +11.915 20.146 -1.677 0 0 0 0 0 0 0 +11.896 20.187 -1.679 0 0 0 0 0 0 0 +11.828 20.215 -1.678 0 0 0 0 0 0 0 +11.74 20.211 -1.674 0 0 0 0 0 0 0 +11.664 20.225 -1.672 0 0 0 0 0 0 0 +11.664 20.374 -1.683 0 0 0 0 0 0 0 +11.616 20.439 -1.685 0 0 0 0 0 0 0 +11.538 20.451 -1.683 0 0 0 0 0 0 0 +11.461 20.389 -1.676 0 0 0 0 0 0 0 +11.473 20.561 -1.688 0 0 0 0 0 0 0 +11.426 20.628 -1.691 0 0 0 0 0 0 0 +11.376 20.692 -1.693 0 0 0 0 0 0 0 +11.305 20.717 -1.692 0 0 0 0 0 0 0 +11.252 20.773 -1.694 0 0 0 0 0 0 0 +11.177 20.791 -1.693 0 0 0 0 0 0 0 +11.042 20.619 -1.676 0 0 0 0 0 0 0 +11.116 20.914 -1.699 0 0 0 0 0 0 0 +11.046 20.94 -1.698 0 0 0 0 0 0 0 +10.941 20.9 -1.692 0 0 0 0 0 0 0 +10.954 21.085 -1.705 0 0 0 0 0 0 0 +10.885 21.114 -1.705 0 0 0 0 0 0 0 +10.82 21.151 -1.705 0 0 0 0 0 0 0 +10.807 21.207 -1.709 0 0 0 0 0 0 0 +10.733 21.227 -1.707 0 0 0 0 0 0 0 +10.68 21.289 -1.71 0 0 0 0 0 0 0 +10.614 21.323 -1.71 0 0 0 0 0 0 0 +10.554 21.372 -1.711 0 0 0 0 0 0 0 +10.496 21.423 -1.713 0 0 0 0 0 0 0 +10.439 21.477 -1.715 0 0 0 0 0 0 0 +10.4 21.483 -1.714 0 0 0 0 0 0 0 +10.34 21.532 -1.715 0 0 0 0 0 0 0 +10.276 21.571 -1.716 0 0 0 0 0 0 0 +10.218 21.623 -1.718 0 0 0 0 0 0 0 +10.161 21.679 -1.72 0 0 0 0 0 0 0 +10.105 21.737 -1.722 0 0 0 0 0 0 0 +10.049 21.796 -1.725 0 0 0 0 0 0 0 +9.978 21.822 -1.724 0 0 0 0 0 0 0 +9.956 21.863 -1.726 0 0 0 0 0 0 0 +9.896 21.914 -1.728 0 0 0 0 0 0 0 +9.793 21.869 -1.721 0 0 0 0 0 0 0 +9.767 21.996 -1.73 0 0 0 0 0 0 0 +9.704 22.041 -1.731 0 0 0 0 0 0 0 +9.64 22.083 -1.732 0 0 0 0 0 0 0 +9.578 22.129 -1.734 0 0 0 0 0 0 0 +9.549 22.159 -1.735 0 0 0 0 0 0 0 +9.488 22.209 -1.737 0 0 0 0 0 0 0 +9.422 22.248 -1.737 0 0 0 0 0 0 0 +9.361 22.298 -1.739 0 0 0 0 0 0 0 +9.3 22.349 -1.741 0 0 0 0 0 0 0 +9.242 22.408 -1.744 0 0 0 0 0 0 0 +9.169 22.431 -1.743 0 0 0 0 0 0 0 +9.154 22.495 -1.748 0 0 0 0 0 0 0 +9.098 22.561 -1.751 0 0 0 0 0 0 0 +9.039 22.619 -1.753 0 0 0 0 0 0 0 +8.97 22.651 -1.754 0 0 0 0 0 0 0 +8.907 22.699 -1.755 0 0 0 0 0 0 0 +8.834 22.723 -1.755 0 0 0 0 0 0 0 +8.768 22.766 -1.756 0 0 0 0 0 0 0 +8.752 22.832 -1.761 0 0 0 0 0 0 0 +8.688 22.878 -1.762 0 0 0 0 0 0 0 +8.619 22.914 -1.763 0 0 0 0 0 0 0 +8.554 22.958 -1.765 0 0 0 0 0 0 0 +8.486 22.998 -1.766 0 0 0 0 0 0 0 +8.413 23.023 -1.766 0 0 0 0 0 0 0 +8.342 23.053 -1.766 0 0 0 0 0 0 0 +8.316 23.092 -1.768 0 0 0 0 0 0 0 +8.254 23.148 -1.771 0 0 0 0 0 0 0 +8.202 23.234 -1.776 0 0 0 0 0 0 0 +8.127 23.252 -1.775 0 0 0 0 0 0 0 +8.087 23.376 -1.784 0 0 0 0 0 0 0 +8.095 23.636 -1.804 0 0 0 0 0 0 0 +8.127 23.973 -1.83 0 0 0 0 0 0 0 +8.161 24.324 -1.857 0 0 0 0 0 0 0 +8.236 24.675 -1.886 0 0 0 0 0 0 0 +8.258 25.001 -1.912 0 0 0 0 0 0 0 +8.204 25.103 -1.918 0 0 0 0 0 0 0 +8.128 25.136 -1.919 0 0 0 0 0 0 0 +8.044 25.146 -1.917 0 0 0 0 0 0 0 +7.949 25.12 -1.913 0 0 0 0 0 0 0 +7.864 25.126 -1.911 0 0 0 0 0 0 0 +7.831 25.159 -1.913 0 0 0 0 0 0 0 +7.758 25.205 -1.915 0 0 0 0 0 0 0 +7.679 25.231 -1.915 0 0 0 0 0 0 0 +7.605 25.272 -1.916 0 0 0 0 0 0 0 +7.49 25.178 -1.907 0 0 0 0 0 0 0 +7.401 25.165 -1.904 0 0 0 0 0 0 0 +7.314 25.161 -1.901 0 0 0 0 0 0 0 +7.268 25.149 -1.899 0 0 0 0 0 0 0 +7.166 25.094 -1.893 0 0 0 0 0 0 0 +7.075 25.074 -1.889 0 0 0 0 0 0 0 +6.982 25.046 -1.885 0 0 0 0 0 0 0 +6.902 25.06 -1.884 0 0 0 0 0 0 0 +6.82 25.072 -1.884 0 0 0 0 0 0 0 +6.733 25.062 -1.881 0 0 0 0 0 0 0 +6.688 25.054 -1.88 0 0 0 0 0 0 0 +6.601 25.04 -1.877 0 0 0 0 0 0 0 +6.513 25.026 -1.874 0 0 0 0 0 0 0 +6.427 25.019 -1.872 0 0 0 0 0 0 0 +6.341 25.008 -1.869 0 0 0 0 0 0 0 +6.259 25.017 -1.868 0 0 0 0 0 0 0 +6.193 25.088 -1.872 0 0 0 0 0 0 0 +6.119 25.125 -1.874 0 0 0 0 0 0 0 +2.408 10.024 -0.626 0 0 0 0 0 0 0 +2.391 10.092 -0.631 0 0 0 0 0 0 0 +2.517 11.076 -0.71 0 0 0 0 0 0 0 +2.482 11.083 -0.71 0 0 0 0 0 0 0 +2.594 11.747 -0.764 0 0 0 0 0 0 0 +2.576 11.753 -0.764 0 0 0 0 0 0 0 +2.669 12.359 -0.813 0 0 0 0 0 0 0 +2.749 13.121 -0.874 0 0 0 0 0 0 0 +2.602 12.823 -0.849 0 0 0 0 0 0 0 +2.624 13.138 -0.874 0 0 0 0 0 0 0 +3.039 15.322 -1.052 0 0 0 0 0 0 0 +3.126 16.018 -1.108 0 0 0 0 0 0 0 +3.195 16.644 -1.159 0 0 0 0 0 0 0 +3.415 18.4 -1.3 0 0 0 0 0 0 0 +3.436 18.84 -1.335 0 0 0 0 0 0 0 +3.51 19.587 -1.395 0 0 0 0 0 0 0 +0.604 3.524 -0.085 0 0 0 0 0 0 0 +0.591 3.514 -0.084 0 0 0 0 0 0 0 +0.58 3.518 -0.085 0 0 0 0 0 0 0 +0.569 3.517 -0.084 0 0 0 0 0 0 0 +0.557 3.515 -0.084 0 0 0 0 0 0 0 +0.546 3.519 -0.084 0 0 0 0 0 0 0 +0.535 3.519 -0.084 0 0 0 0 0 0 0 +0.524 3.522 -0.084 0 0 0 0 0 0 0 +0.52 3.531 -0.085 0 0 0 0 0 0 0 +0.509 3.537 -0.085 0 0 0 0 0 0 0 +0.495 3.514 -0.083 0 0 0 0 0 0 0 +0.483 3.508 -0.083 0 0 0 0 0 0 0 +0.473 3.519 -0.084 0 0 0 0 0 0 0 +3.091 23.013 -1.662 0 0 0 0 0 0 0 +3.058 23.036 -1.663 0 0 0 0 0 0 0 +0.455 3.468 -0.079 0 0 0 0 0 0 0 +2.988 23.063 -1.665 0 0 0 0 0 0 0 +2.915 23.074 -1.665 0 0 0 0 0 0 0 +2.846 23.107 -1.667 0 0 0 0 0 0 0 +2.776 23.136 -1.668 0 0 0 0 0 0 0 +2.704 23.154 -1.669 0 0 0 0 0 0 0 +2.631 23.165 -1.669 0 0 0 0 0 0 0 +2.593 23.153 -1.668 0 0 0 0 0 0 0 +2.521 23.169 -1.669 0 0 0 0 0 0 0 +2.448 23.169 -1.668 0 0 0 0 0 0 0 +2.377 23.2 -1.67 0 0 0 0 0 0 0 +2.308 23.241 -1.673 0 0 0 0 0 0 0 +2.236 23.262 -1.674 0 0 0 0 0 0 0 +2.168 23.321 -1.678 0 0 0 0 0 0 0 +2.133 23.34 -1.679 0 0 0 0 0 0 0 +2.189 24.8 -1.796 0 0 0 0 0 0 0 +2.117 24.868 -1.801 0 0 0 0 0 0 0 +2.044 24.937 -1.806 0 0 0 0 0 0 0 +1.971 25.014 -1.812 0 0 0 0 0 0 0 +1.897 25.076 -1.817 0 0 0 0 0 0 0 +1.825 25.183 -1.825 0 0 0 0 0 0 0 +1.748 25.792 -1.873 0 0 0 0 0 0 0 +1.643 25.432 -1.844 0 0 0 0 0 0 0 +1.56 25.381 -1.839 0 0 0 0 0 0 0 +1.479 25.378 -1.839 0 0 0 0 0 0 0 +1.401 25.398 -1.84 0 0 0 0 0 0 0 +1.322 25.42 -1.841 0 0 0 0 0 0 0 +1.242 25.426 -1.841 0 0 0 0 0 0 0 +1.202 25.434 -1.842 0 0 0 0 0 0 0 +1.123 25.454 -1.843 0 0 0 0 0 0 0 +1.043 25.453 -1.843 0 0 0 0 0 0 0 +0.964 25.478 -1.845 0 0 0 0 0 0 0 +0.884 25.477 -1.844 0 0 0 0 0 0 0 +0.804 25.49 -1.845 0 0 0 0 0 0 0 +0.724 25.486 -1.845 0 0 0 0 0 0 0 +0.684 25.493 -1.845 0 0 0 0 0 0 0 +0.604 25.493 -1.845 0 0 0 0 0 0 0 +0.524 25.497 -1.845 0 0 0 0 0 0 0 +0.444 25.529 -1.848 0 0 0 0 0 0 0 +0.366 25.685 -1.86 0 0 0 0 0 0 0 +0.286 25.69 -1.86 0 0 0 0 0 0 0 +0.204 25.621 -1.855 0 0 0 0 0 0 0 +0.163 25.488 -1.844 0 0 0 0 0 0 0 +0.083 25.461 -1.842 0 0 0 0 0 0 0 +0.003 25.477 -1.843 0 0 0 0 0 0 0 +-0.077 25.469 -1.842 0 0 0 0 0 0 0 +-0.157 25.482 -1.844 0 0 0 0 0 0 0 +-0.237 25.47 -1.843 0 0 0 0 0 0 0 +-0.317 25.469 -1.843 0 0 0 0 0 0 0 +-0.398 25.486 -1.844 0 0 0 0 0 0 0 +-0.438 25.497 -1.845 0 0 0 0 0 0 0 +-0.518 25.485 -1.844 0 0 0 0 0 0 0 +-0.598 25.5 -1.845 0 0 0 0 0 0 0 +-0.678 25.5 -1.846 0 0 0 0 0 0 0 +-0.759 25.513 -1.847 0 0 0 0 0 0 0 +-0.839 25.521 -1.848 0 0 0 0 0 0 0 +-0.92 25.526 -1.848 0 0 0 0 0 0 0 +-0.96 25.542 -1.85 0 0 0 0 0 0 0 +-1.042 25.563 -1.852 0 0 0 0 0 0 0 +-1.122 25.552 -1.851 0 0 0 0 0 0 0 +-1.202 25.56 -1.852 0 0 0 0 0 0 0 +-1.287 25.64 -1.859 0 0 0 0 0 0 0 +-1.372 25.731 -1.866 0 0 0 0 0 0 0 +-1.226 21.63 -1.537 0 0 0 0 0 0 0 +-1.24 21.28 -1.509 0 0 0 0 0 0 0 +-1.287 20.938 -1.482 0 0 0 0 0 0 0 +-1.333 20.623 -1.457 0 0 0 0 0 0 0 +-1.42 20.002 -1.408 0 0 0 0 0 0 0 +-1.478 19.936 -1.403 0 0 0 0 0 0 0 +-1.501 19.406 -1.361 0 0 0 0 0 0 0 +-1.507 19.094 -1.336 0 0 0 0 0 0 0 +-1.546 18.83 -1.315 0 0 0 0 0 0 0 +-1.582 18.553 -1.293 0 0 0 0 0 0 0 +-1.619 18.3 -1.273 0 0 0 0 0 0 0 +-1.654 18.041 -1.252 0 0 0 0 0 0 0 +-1.687 17.783 -1.232 0 0 0 0 0 0 0 +-1.72 17.548 -1.213 0 0 0 0 0 0 0 +-1.725 17.307 -1.194 0 0 0 0 0 0 0 +-1.755 17.065 -1.175 0 0 0 0 0 0 0 +-1.789 16.867 -1.16 0 0 0 0 0 0 0 +-1.818 16.644 -1.142 0 0 0 0 0 0 0 +-1.847 16.428 -1.125 0 0 0 0 0 0 0 +-1.876 16.222 -1.109 0 0 0 0 0 0 0 +-1.903 16.012 -1.093 0 0 0 0 0 0 0 +-1.906 15.819 -1.077 0 0 0 0 0 0 0 +-1.933 15.627 -1.062 0 0 0 0 0 0 0 +-1.958 15.435 -1.047 0 0 0 0 0 0 0 +-1.987 15.276 -1.035 0 0 0 0 0 0 0 +-2.012 15.09 -1.02 0 0 0 0 0 0 0 +-2.036 14.916 -1.007 0 0 0 0 0 0 0 +-2.058 14.73 -0.992 0 0 0 0 0 0 0 +-2.081 14.557 -0.979 0 0 0 0 0 0 0 +-2.078 14.37 -0.964 0 0 0 0 0 0 0 +-2.105 14.242 -0.954 0 0 0 0 0 0 0 +-2.125 14.067 -0.94 0 0 0 0 0 0 0 +-2.146 13.909 -0.928 0 0 0 0 0 0 0 +-2.167 13.754 -0.916 0 0 0 0 0 0 0 +-2.188 13.608 -0.905 0 0 0 0 0 0 0 +-2.208 13.461 -0.893 0 0 0 0 0 0 0 +-2.207 13.326 -0.882 0 0 0 0 0 0 0 +-2.225 13.175 -0.871 0 0 0 0 0 0 0 +-2.247 13.05 -0.861 0 0 0 0 0 0 0 +-2.269 12.937 -0.853 0 0 0 0 0 0 0 +-2.282 12.771 -0.84 0 0 0 0 0 0 0 +-2.306 12.673 -0.832 0 0 0 0 0 0 0 +-2.32 12.529 -0.821 0 0 0 0 0 0 0 +-2.316 12.397 -0.811 0 0 0 0 0 0 0 +-2.325 12.228 -0.797 0 0 0 0 0 0 0 +-2.357 12.189 -0.795 0 0 0 0 0 0 0 +-2.368 12.04 -0.783 0 0 0 0 0 0 0 +-2.385 11.929 -0.775 0 0 0 0 0 0 0 +-2.404 11.826 -0.767 0 0 0 0 0 0 0 +-2.418 11.705 -0.758 0 0 0 0 0 0 0 +-2.415 11.602 -0.75 0 0 0 0 0 0 0 +-2.431 11.495 -0.741 0 0 0 0 0 0 0 +-2.446 11.387 -0.733 0 0 0 0 0 0 0 +-2.46 11.278 -0.725 0 0 0 0 0 0 0 +-2.452 11.072 -0.709 0 0 0 0 0 0 0 +-2.505 10.982 -0.703 0 0 0 0 0 0 0 +-2.518 10.883 -0.695 0 0 0 0 0 0 0 +-2.515 10.79 -0.688 0 0 0 0 0 0 0 +-2.529 10.698 -0.681 0 0 0 0 0 0 0 +-2.542 10.605 -0.674 0 0 0 0 0 0 0 +-2.557 10.517 -0.667 0 0 0 0 0 0 0 +-2.567 10.418 -0.66 0 0 0 0 0 0 0 +-2.578 10.321 -0.652 0 0 0 0 0 0 0 +-2.593 10.242 -0.646 0 0 0 0 0 0 0 +-2.592 10.17 -0.641 0 0 0 0 0 0 0 +-2.607 10.096 -0.635 0 0 0 0 0 0 0 +-2.611 9.98 -0.626 0 0 0 0 0 0 0 +-2.627 9.913 -0.622 0 0 0 0 0 0 0 +-2.64 9.838 -0.616 0 0 0 0 0 0 0 +-2.646 9.737 -0.608 0 0 0 0 0 0 0 +-2.66 9.667 -0.603 0 0 0 0 0 0 0 +-2.657 9.598 -0.598 0 0 0 0 0 0 0 +-2.667 9.518 -0.592 0 0 0 0 0 0 0 +-2.684 9.464 -0.588 0 0 0 0 0 0 0 +-2.696 9.392 -0.583 0 0 0 0 0 0 0 +-2.708 9.322 -0.578 0 0 0 0 0 0 0 +-2.722 9.262 -0.573 0 0 0 0 0 0 0 +-2.746 9.236 -0.572 0 0 0 0 0 0 0 +-2.744 9.176 -0.567 0 0 0 0 0 0 0 +-2.762 9.129 -0.564 0 0 0 0 0 0 0 +-2.772 9.061 -0.559 0 0 0 0 0 0 0 +-2.791 9.02 -0.556 0 0 0 0 0 0 0 +-2.799 8.947 -0.551 0 0 0 0 0 0 0 +-2.826 8.934 -0.551 0 0 0 0 0 0 0 +-2.829 8.845 -0.544 0 0 0 0 0 0 0 +-2.851 8.819 -0.542 0 0 0 0 0 0 0 +-2.844 8.75 -0.537 0 0 0 0 0 0 0 +-2.855 8.688 -0.532 0 0 0 0 0 0 0 +-2.984 8.323 -0.508 0 0 0 0 0 0 0 +-3.005 8.301 -0.507 0 0 0 0 0 0 0 +-3.022 8.265 -0.505 0 0 0 0 0 0 0 +-3.032 8.211 -0.501 0 0 0 0 0 0 0 +-3.031 8.17 -0.498 0 0 0 0 0 0 0 +-3.045 8.129 -0.495 0 0 0 0 0 0 0 +-3.058 8.086 -0.492 0 0 0 0 0 0 0 +-3.077 8.057 -0.491 0 0 0 0 0 0 0 +-3.094 8.027 -0.489 0 0 0 0 0 0 0 +-3.112 7.999 -0.487 0 0 0 0 0 0 0 +-3.137 7.989 -0.487 0 0 0 0 0 0 0 +-3.145 7.971 -0.486 0 0 0 0 0 0 0 +-3.148 7.907 -0.482 0 0 0 0 0 0 0 +-3.17 7.89 -0.481 0 0 0 0 0 0 0 +-3.187 7.86 -0.479 0 0 0 0 0 0 0 +-3.21 7.846 -0.479 0 0 0 0 0 0 0 +-3.219 7.797 -0.475 0 0 0 0 0 0 0 +-3.239 7.778 -0.475 0 0 0 0 0 0 0 +-3.247 7.727 -0.471 0 0 0 0 0 0 0 +-3.251 7.702 -0.469 0 0 0 0 0 0 0 +-3.276 7.695 -0.47 0 0 0 0 0 0 0 +-3.28 7.637 -0.466 0 0 0 0 0 0 0 +-3.3 7.616 -0.465 0 0 0 0 0 0 0 +-3.312 7.58 -0.462 0 0 0 0 0 0 0 +-3.327 7.547 -0.46 0 0 0 0 0 0 0 +-3.318 7.368 -0.447 0 0 0 0 0 0 0 +-3.331 7.336 -0.445 0 0 0 0 0 0 0 +-3.349 7.315 -0.444 0 0 0 0 0 0 0 +-3.651 7.505 -0.468 0 0 0 0 0 0 0 +-3.662 7.468 -0.466 0 0 0 0 0 0 0 +-3.663 7.41 -0.462 0 0 0 0 0 0 0 +-3.676 7.406 -0.462 0 0 0 0 0 0 0 +-3.704 7.405 -0.463 0 0 0 0 0 0 0 +-3.732 7.402 -0.464 0 0 0 0 0 0 0 +-3.761 7.403 -0.465 0 0 0 0 0 0 0 +-3.787 7.397 -0.465 0 0 0 0 0 0 0 +-3.813 7.39 -0.466 0 0 0 0 0 0 0 +-3.858 7.419 -0.47 0 0 0 0 0 0 0 +-3.879 7.403 -0.469 0 0 0 0 0 0 0 +-3.897 7.409 -0.47 0 0 0 0 0 0 0 +-3.932 7.42 -0.472 0 0 0 0 0 0 0 +-3.958 7.411 -0.473 0 0 0 0 0 0 0 +-3.984 7.404 -0.473 0 0 0 0 0 0 0 +-4.019 7.414 -0.475 0 0 0 0 0 0 0 +-4.043 7.403 -0.475 0 0 0 0 0 0 0 +-4.078 7.411 -0.477 0 0 0 0 0 0 0 +-4.101 7.426 -0.479 0 0 0 0 0 0 0 +-4.127 7.418 -0.48 0 0 0 0 0 0 0 +-4.153 7.409 -0.48 0 0 0 0 0 0 0 +-4.187 7.415 -0.482 0 0 0 0 0 0 0 +-4.221 7.421 -0.484 0 0 0 0 0 0 0 +-4.256 7.428 -0.486 0 0 0 0 0 0 0 +-4.292 7.437 -0.488 0 0 0 0 0 0 0 +-4.321 7.434 -0.489 0 0 0 0 0 0 0 +-4.341 7.441 -0.49 0 0 0 0 0 0 0 +-4.379 7.453 -0.492 0 0 0 0 0 0 0 +-4.418 7.465 -0.495 0 0 0 0 0 0 0 +-4.458 7.479 -0.497 0 0 0 0 0 0 0 +-4.494 7.487 -0.499 0 0 0 0 0 0 0 +-4.524 7.483 -0.5 0 0 0 0 0 0 0 +-4.56 7.489 -0.502 0 0 0 0 0 0 0 +-4.59 7.513 -0.505 0 0 0 0 0 0 0 +-4.619 7.507 -0.506 0 0 0 0 0 0 0 +-4.655 7.513 -0.508 0 0 0 0 0 0 0 +-4.692 7.52 -0.51 0 0 0 0 0 0 0 +-4.728 7.524 -0.512 0 0 0 0 0 0 0 +-4.761 7.524 -0.513 0 0 0 0 0 0 0 +-4.805 7.541 -0.516 0 0 0 0 0 0 0 +-4.835 7.562 -0.519 0 0 0 0 0 0 0 +-4.87 7.566 -0.521 0 0 0 0 0 0 0 +-4.917 7.585 -0.524 0 0 0 0 0 0 0 +-4.96 7.6 -0.527 0 0 0 0 0 0 0 +-4.996 7.603 -0.529 0 0 0 0 0 0 0 +-5.032 7.605 -0.53 0 0 0 0 0 0 0 +-5.095 7.649 -0.536 0 0 0 0 0 0 0 +-5.058 7.567 -0.529 0 0 0 0 0 0 0 +-14.19 20.885 -1.825 0 0 0 0 0 0 0 +-14.249 20.83 -1.824 0 0 0 0 0 0 0 +-14.3 20.764 -1.822 0 0 0 0 0 0 0 +-14.351 20.699 -1.82 0 0 0 0 0 0 0 +-14.414 20.651 -1.82 0 0 0 0 0 0 0 +-14.439 20.618 -1.819 0 0 0 0 0 0 0 +-14.494 20.558 -1.817 0 0 0 0 0 0 0 +-14.543 20.491 -1.815 0 0 0 0 0 0 0 +-14.601 20.436 -1.814 0 0 0 0 0 0 0 +-14.66 20.383 -1.813 0 0 0 0 0 0 0 +-7.353 10.134 -0.803 0 0 0 0 0 0 0 +-14.747 20.234 -1.808 0 0 0 0 0 0 0 +-14.77 20.2 -1.807 0 0 0 0 0 0 0 +-14.796 20.102 -1.802 0 0 0 0 0 0 0 +-14.838 20.027 -1.799 0 0 0 0 0 0 0 +-7.355 9.84 -0.784 0 0 0 0 0 0 0 +-7.375 9.803 -0.783 0 0 0 0 0 0 0 +-7.379 9.744 -0.779 0 0 0 0 0 0 0 +-7.379 9.68 -0.775 0 0 0 0 0 0 0 +-7.373 9.641 -0.773 0 0 0 0 0 0 0 +-7.382 9.59 -0.77 0 0 0 0 0 0 0 +-7.386 9.533 -0.766 0 0 0 0 0 0 0 +-7.402 9.491 -0.764 0 0 0 0 0 0 0 +-7.422 9.455 -0.763 0 0 0 0 0 0 0 +-7.436 9.413 -0.761 0 0 0 0 0 0 0 +-7.437 9.354 -0.758 0 0 0 0 0 0 0 +-15.511 19.49 -1.797 0 0 0 0 0 0 0 +-15.542 19.403 -1.794 0 0 0 0 0 0 0 +-15.538 19.274 -1.785 0 0 0 0 0 0 0 +-15.474 19.071 -1.769 0 0 0 0 0 0 0 +-15.401 18.859 -1.752 0 0 0 0 0 0 0 +-15.358 18.685 -1.74 0 0 0 0 0 0 0 +-15.285 18.479 -1.723 0 0 0 0 0 0 0 +-15.181 18.293 -1.706 0 0 0 0 0 0 0 +-15.101 18.08 -1.689 0 0 0 0 0 0 0 +-15.032 17.883 -1.673 0 0 0 0 0 0 0 +-15.027 17.764 -1.666 0 0 0 0 0 0 0 +-14.935 17.542 -1.647 0 0 0 0 0 0 0 +-11.882 13.86 -1.264 0 0 0 0 0 0 0 +-11.906 13.8 -1.261 0 0 0 0 0 0 0 +-11.983 13.801 -1.265 0 0 0 0 0 0 0 +-12.045 13.829 -1.27 0 0 0 0 0 0 0 +-15.154 17.298 -1.644 0 0 0 0 0 0 0 +-15.162 17.198 -1.638 0 0 0 0 0 0 0 +-14.881 16.772 -1.598 0 0 0 0 0 0 0 +-14.898 16.685 -1.594 0 0 0 0 0 0 0 +-15.025 16.721 -1.603 0 0 0 0 0 0 0 +-15.179 16.787 -1.615 0 0 0 0 0 0 0 +-14.939 16.469 -1.583 0 0 0 0 0 0 0 +-14.991 16.422 -1.583 0 0 0 0 0 0 0 +-15.063 16.397 -1.585 0 0 0 0 0 0 0 +-15.08 16.312 -1.581 0 0 0 0 0 0 0 +-15.225 16.366 -1.592 0 0 0 0 0 0 0 +-15.365 16.413 -1.603 0 0 0 0 0 0 0 +-15.44 16.389 -1.605 0 0 0 0 0 0 0 +-15.523 16.426 -1.612 0 0 0 0 0 0 0 +-15.552 16.354 -1.61 0 0 0 0 0 0 0 +-14.778 15.44 -1.514 0 0 0 0 0 0 0 +-14.919 15.489 -1.524 0 0 0 0 0 0 0 +-14.981 15.457 -1.526 0 0 0 0 0 0 0 +-15.018 15.398 -1.525 0 0 0 0 0 0 0 +-15.05 15.334 -1.523 0 0 0 0 0 0 0 +-15.05 15.286 -1.52 0 0 0 0 0 0 0 +-15.101 15.242 -1.52 0 0 0 0 0 0 0 +-15.142 15.187 -1.52 0 0 0 0 0 0 0 +-15.116 15.066 -1.511 0 0 0 0 0 0 0 +-15.153 15.009 -1.51 0 0 0 0 0 0 0 +-15.134 14.895 -1.503 0 0 0 0 0 0 0 +-15.274 14.94 -1.513 0 0 0 0 0 0 0 +-15.091 14.714 -1.49 0 0 0 0 0 0 0 +-15.329 14.852 -1.511 0 0 0 0 0 0 0 +-15.368 14.797 -1.511 0 0 0 0 0 0 0 +-15.446 14.779 -1.514 0 0 0 0 0 0 0 +-15.527 14.763 -1.518 0 0 0 0 0 0 0 +-15.485 14.631 -1.508 0 0 0 0 0 0 0 +-15.572 14.621 -1.513 0 0 0 0 0 0 0 +-15.589 14.544 -1.509 0 0 0 0 0 0 0 +-15.595 14.505 -1.508 0 0 0 0 0 0 0 +-15.615 14.431 -1.505 0 0 0 0 0 0 0 +-15.683 14.404 -1.507 0 0 0 0 0 0 0 +-15.676 14.306 -1.502 0 0 0 0 0 0 0 +-15.76 14.293 -1.506 0 0 0 0 0 0 0 +-15.787 14.227 -1.504 0 0 0 0 0 0 0 +-15.902 14.24 -1.512 0 0 0 0 0 0 0 +-16.046 14.324 -1.525 0 0 0 0 0 0 0 +-15.487 13.737 -1.46 0 0 0 0 0 0 0 +-15.448 13.616 -1.451 0 0 0 0 0 0 0 +-15.481 13.558 -1.45 0 0 0 0 0 0 0 +-15.549 13.532 -1.453 0 0 0 0 0 0 0 +-15.574 13.468 -1.451 0 0 0 0 0 0 0 +-15.556 13.367 -1.445 0 0 0 0 0 0 0 +-15.562 13.33 -1.443 0 0 0 0 0 0 0 +-15.496 13.189 -1.432 0 0 0 0 0 0 0 +-15.451 13.067 -1.422 0 0 0 0 0 0 0 +-15.663 13.162 -1.44 0 0 0 0 0 0 0 +-15.747 13.149 -1.445 0 0 0 0 0 0 0 +-15.783 13.095 -1.444 0 0 0 0 0 0 0 +-15.785 13.013 -1.44 0 0 0 0 0 0 0 +-15.819 12.999 -1.442 0 0 0 0 0 0 0 +-15.91 12.991 -1.447 0 0 0 0 0 0 0 +-15.939 12.931 -1.446 0 0 0 0 0 0 0 +-15.962 12.867 -1.444 0 0 0 0 0 0 0 +-16.003 12.817 -1.444 0 0 0 0 0 0 0 +-16.002 12.734 -1.44 0 0 0 0 0 0 0 +-16.114 12.741 -1.447 0 0 0 0 0 0 0 +-16.237 12.756 -1.456 0 0 0 0 0 0 0 +-16.086 12.596 -1.438 0 0 0 0 0 0 0 +-16.184 12.591 -1.444 0 0 0 0 0 0 0 +-16.236 12.55 -1.445 0 0 0 0 0 0 0 +-16.226 12.461 -1.44 0 0 0 0 0 0 0 +-16.175 12.341 -1.431 0 0 0 0 0 0 0 +-16.19 12.272 -1.429 0 0 0 0 0 0 0 +-16.268 12.251 -1.433 0 0 0 0 0 0 0 +-16.37 12.288 -1.441 0 0 0 0 0 0 0 +-16.378 12.213 -1.438 0 0 0 0 0 0 0 +-16.148 11.962 -1.411 0 0 0 0 0 0 0 +-15.887 11.691 -1.381 0 0 0 0 0 0 0 +-15.964 11.671 -1.385 0 0 0 0 0 0 0 +-15.928 11.568 -1.378 0 0 0 0 0 0 0 +-15.956 11.512 -1.377 0 0 0 0 0 0 0 +-15.971 11.484 -1.377 0 0 0 0 0 0 0 +-15.898 11.356 -1.366 0 0 0 0 0 0 0 +-16.053 11.391 -1.378 0 0 0 0 0 0 0 +-16.24 11.447 -1.393 0 0 0 0 0 0 0 +-16.351 11.449 -1.4 0 0 0 0 0 0 0 +-16.486 11.467 -1.41 0 0 0 0 0 0 0 +-16.697 11.537 -1.427 0 0 0 0 0 0 0 +-16.691 11.493 -1.425 0 0 0 0 0 0 0 +-16.732 11.444 -1.425 0 0 0 0 0 0 0 +-16.865 11.458 -1.435 0 0 0 0 0 0 0 +-6.694 4.498 -0.446 0 0 0 0 0 0 0 +-6.686 4.463 -0.444 0 0 0 0 0 0 0 +-6.725 4.458 -0.446 0 0 0 0 0 0 0 +-6.698 4.409 -0.442 0 0 0 0 0 0 0 +-6.705 4.399 -0.442 0 0 0 0 0 0 0 +-6.717 4.377 -0.442 0 0 0 0 0 0 0 +-6.739 4.361 -0.443 0 0 0 0 0 0 0 +-16.214 10.392 -1.344 0 0 0 0 0 0 0 +-16.232 10.332 -1.343 0 0 0 0 0 0 0 +-16.223 10.255 -1.339 0 0 0 0 0 0 0 +-16.122 10.155 -1.328 0 0 0 0 0 0 0 +-16.147 10.1 -1.327 0 0 0 0 0 0 0 +-16.128 10.018 -1.322 0 0 0 0 0 0 0 +-16.147 9.96 -1.321 0 0 0 0 0 0 0 +-16.222 9.936 -1.325 0 0 0 0 0 0 0 +-16.269 9.894 -1.327 0 0 0 0 0 0 0 +-16.194 9.779 -1.317 0 0 0 0 0 0 0 +-16.206 9.717 -1.315 0 0 0 0 0 0 0 +-16.173 9.663 -1.31 0 0 0 0 0 0 0 +-16.142 9.575 -1.305 0 0 0 0 0 0 0 +-16.198 9.54 -1.307 0 0 0 0 0 0 0 +-16.164 9.451 -1.301 0 0 0 0 0 0 0 +-16.307 9.467 -1.312 0 0 0 0 0 0 0 +-16.425 9.466 -1.32 0 0 0 0 0 0 0 +-16.513 9.448 -1.325 0 0 0 0 0 0 0 +-16.703 9.522 -1.341 0 0 0 0 0 0 0 +-16.651 9.424 -1.334 0 0 0 0 0 0 0 +-16.693 9.378 -1.335 0 0 0 0 0 0 0 +-14.067 7.84 -1.091 0 0 0 0 0 0 0 +-13.907 7.693 -1.074 0 0 0 0 0 0 0 +-13.89 7.627 -1.07 0 0 0 0 0 0 0 +-12.598 6.863 -0.95 0 0 0 0 0 0 0 +-12.574 6.824 -0.947 0 0 0 0 0 0 0 +-12.609 6.793 -0.948 0 0 0 0 0 0 0 +-12.745 6.814 -0.958 0 0 0 0 0 0 0 +-13.663 7.252 -1.04 0 0 0 0 0 0 0 +-13.66 7.195 -1.038 0 0 0 0 0 0 0 +-13.677 7.15 -1.037 0 0 0 0 0 0 0 +-13.742 7.129 -1.041 0 0 0 0 0 0 0 +-13.79 7.126 -1.044 0 0 0 0 0 0 0 +-14.096 7.229 -1.07 0 0 0 0 0 0 0 +-16.375 8.338 -1.273 0 0 0 0 0 0 0 +-13.898 6.962 -1.046 0 0 0 0 0 0 0 +-13.924 6.92 -1.046 0 0 0 0 0 0 0 +-13.983 6.868 -1.049 0 0 0 0 0 0 0 +-16.662 8.124 -1.286 0 0 0 0 0 0 0 +-16.802 8.128 -1.296 0 0 0 0 0 0 0 +-14.681 6.985 -1.103 0 0 0 0 0 0 0 +-14.72 6.946 -1.105 0 0 0 0 0 0 0 +-16.948 7.937 -1.3 0 0 0 0 0 0 0 +-16.868 7.835 -1.291 0 0 0 0 0 0 0 +-16.851 7.795 -1.289 0 0 0 0 0 0 0 +-24.903 11.439 -1.998 0 0 0 0 0 0 0 +-24.904 11.345 -1.995 0 0 0 0 0 0 0 +-24.942 11.267 -1.995 0 0 0 0 0 0 0 +-24.983 11.191 -1.995 0 0 0 0 0 0 0 +-25.018 11.113 -1.995 0 0 0 0 0 0 0 +-25.065 11.04 -1.996 0 0 0 0 0 0 0 +-25.099 11.007 -1.998 0 0 0 0 0 0 0 +-25.124 10.925 -1.997 0 0 0 0 0 0 0 +-25.162 10.847 -1.997 0 0 0 0 0 0 0 +-25.187 10.764 -1.997 0 0 0 0 0 0 0 +-25.226 10.687 -1.997 0 0 0 0 0 0 0 +-25.285 10.619 -1.999 0 0 0 0 0 0 0 +-25.372 10.562 -2.004 0 0 0 0 0 0 0 +-25.425 10.537 -2.007 0 0 0 0 0 0 0 +-25.44 10.449 -2.006 0 0 0 0 0 0 0 +-25.528 10.392 -2.01 0 0 0 0 0 0 0 +-25.573 10.317 -2.011 0 0 0 0 0 0 0 +-25.622 10.243 -2.013 0 0 0 0 0 0 0 +-25.65 10.161 -2.013 0 0 0 0 0 0 0 +-25.719 10.095 -2.016 0 0 0 0 0 0 0 +-25.7 10.041 -2.013 0 0 0 0 0 0 0 +-25.743 9.965 -2.014 0 0 0 0 0 0 0 +-25.785 9.888 -2.015 0 0 0 0 0 0 0 +-25.82 9.808 -2.015 0 0 0 0 0 0 0 +-25.856 9.729 -2.015 0 0 0 0 0 0 0 +-25.899 9.653 -2.017 0 0 0 0 0 0 0 +-25.946 9.578 -2.018 0 0 0 0 0 0 0 +-25.959 9.536 -2.018 0 0 0 0 0 0 0 +-26.016 9.464 -2.02 0 0 0 0 0 0 0 +-26.07 9.391 -2.022 0 0 0 0 0 0 0 +-26.161 9.332 -2.027 0 0 0 0 0 0 0 +-26.188 9.249 -2.027 0 0 0 0 0 0 0 +-26.097 9.124 -2.017 0 0 0 0 0 0 0 +-26.091 9.03 -2.014 0 0 0 0 0 0 0 +-26.062 8.974 -2.011 0 0 0 0 0 0 0 +-26.035 8.874 -2.006 0 0 0 0 0 0 0 +-25.973 8.761 -1.998 0 0 0 0 0 0 0 +-25.938 8.659 -1.993 0 0 0 0 0 0 0 +-25.891 8.553 -1.987 0 0 0 0 0 0 0 +-25.804 8.434 -1.977 0 0 0 0 0 0 0 +-25.722 8.318 -1.968 0 0 0 0 0 0 0 +-25.654 8.251 -1.961 0 0 0 0 0 0 0 +-25.573 8.137 -1.952 0 0 0 0 0 0 0 +-25.507 8.027 -1.944 0 0 0 0 0 0 0 +-25.449 7.921 -1.937 0 0 0 0 0 0 0 +-25.397 7.817 -1.931 0 0 0 0 0 0 0 +-25.37 7.722 -1.927 0 0 0 0 0 0 0 +-25.377 7.637 -1.925 0 0 0 0 0 0 0 +-25.37 7.591 -1.924 0 0 0 0 0 0 0 +-25.361 7.502 -1.921 0 0 0 0 0 0 0 +-25.362 7.416 -1.919 0 0 0 0 0 0 0 +-25.274 7.304 -1.91 0 0 0 0 0 0 0 +-25.316 7.23 -1.911 0 0 0 0 0 0 0 +-25.187 7.107 -1.899 0 0 0 0 0 0 0 +-25.34 7.065 -1.91 0 0 0 0 0 0 0 +-25.312 7.014 -1.906 0 0 0 0 0 0 0 +-25.336 6.935 -1.907 0 0 0 0 0 0 0 +-25.319 6.845 -1.903 0 0 0 0 0 0 0 +-25.217 6.732 -1.893 0 0 0 0 0 0 0 +-24.903 6.564 -1.865 0 0 0 0 0 0 0 +-25.255 6.573 -1.893 0 0 0 0 0 0 0 +-25.176 6.467 -1.884 0 0 0 0 0 0 0 +-10.443 2.632 -0.663 0 0 0 0 0 0 0 +-9.949 2.49 -0.622 0 0 0 0 0 0 0 +-9.69 2.392 -0.599 0 0 0 0 0 0 0 +-24.784 2.188 -1.795 0 0 0 0 0 0 0 +-24.763 2.108 -1.793 0 0 0 0 0 0 0 +-24.748 2.028 -1.791 0 0 0 0 0 0 0 +-24.732 1.949 -1.789 0 0 0 0 0 0 0 +-24.703 1.907 -1.787 0 0 0 0 0 0 0 +-24.679 1.827 -1.784 0 0 0 0 0 0 0 +-19.543 1.318 -1.37 0 0 0 0 0 0 0 +-24.68 1.594 -1.783 0 0 0 0 0 0 0 +-24.665 1.515 -1.782 0 0 0 0 0 0 0 +-24.639 1.436 -1.779 0 0 0 0 0 0 0 +-21.776 1.231 -1.549 0 0 0 0 0 0 0 +-21.67 1.157 -1.54 0 0 0 0 0 0 0 +-21.618 1.086 -1.536 0 0 0 0 0 0 0 +-21.591 1.017 -1.533 0 0 0 0 0 0 0 +-21.582 0.948 -1.532 0 0 0 0 0 0 0 +-21.577 0.88 -1.532 0 0 0 0 0 0 0 +-21.586 0.813 -1.532 0 0 0 0 0 0 0 +-21.611 0.78 -1.534 0 0 0 0 0 0 0 +-21.667 0.714 -1.538 0 0 0 0 0 0 0 +-21.972 0.655 -1.563 0 0 0 0 0 0 0 +-22.014 0.587 -1.566 0 0 0 0 0 0 0 +-21.918 0.515 -1.558 0 0 0 0 0 0 0 +-26.163 0.538 -1.899 0 0 0 0 0 0 0 +-26.093 0.454 -1.893 0 0 0 0 0 0 0 +-26.353 0.376 -1.914 0 0 0 0 0 0 0 +-22.465 0.246 -1.601 0 0 0 0 0 0 0 +-25.814 0.247 -1.87 0 0 0 0 0 0 0 +-25.769 0.165 -1.867 0 0 0 0 0 0 0 +-25.708 0.084 -1.862 0 0 0 0 0 0 0 +-22.271 -0.001 -1.586 0 0 0 0 0 0 0 +-25.508 -0.077 -1.846 0 0 0 0 0 0 0 +-25.446 -0.157 -1.841 0 0 0 0 0 0 0 +-25.376 -0.236 -1.835 0 0 0 0 0 0 0 +-25.3 -0.276 -1.829 0 0 0 0 0 0 0 +-25.209 -0.354 -1.822 0 0 0 0 0 0 0 +-25.136 -0.432 -1.816 0 0 0 0 0 0 0 +-25.047 -0.509 -1.809 0 0 0 0 0 0 0 +-24.971 -0.586 -1.803 0 0 0 0 0 0 0 +-24.91 -0.663 -1.798 0 0 0 0 0 0 0 +-24.816 -0.739 -1.791 0 0 0 0 0 0 0 +-24.723 -0.775 -1.784 0 0 0 0 0 0 0 +-24.649 -0.85 -1.778 0 0 0 0 0 0 0 +-24.578 -0.925 -1.772 0 0 0 0 0 0 0 +-24.511 -1 -1.767 0 0 0 0 0 0 0 +-24.438 -1.074 -1.762 0 0 0 0 0 0 0 +-24.373 -1.148 -1.757 0 0 0 0 0 0 0 +-24.29 -1.22 -1.75 0 0 0 0 0 0 0 +-24.176 -1.253 -1.741 0 0 0 0 0 0 0 +-24.089 -1.324 -1.735 0 0 0 0 0 0 0 +-24.015 -1.396 -1.729 0 0 0 0 0 0 0 +-23.935 -1.467 -1.723 0 0 0 0 0 0 0 +-23.86 -1.538 -1.717 0 0 0 0 0 0 0 +-23.778 -1.608 -1.711 0 0 0 0 0 0 0 +-23.701 -1.677 -1.705 0 0 0 0 0 0 0 +-23.615 -1.708 -1.699 0 0 0 0 0 0 0 +-23.538 -1.777 -1.693 0 0 0 0 0 0 0 +-23.45 -1.845 -1.686 0 0 0 0 0 0 0 +-23.391 -1.914 -1.682 0 0 0 0 0 0 0 +-23.311 -1.982 -1.676 0 0 0 0 0 0 0 +-16.127 -1.481 -1.098 0 0 0 0 0 0 0 +-16.132 -1.533 -1.099 0 0 0 0 0 0 0 +-16.185 -1.563 -1.103 0 0 0 0 0 0 0 +-16.18 -1.614 -1.103 0 0 0 0 0 0 0 +-16.213 -1.669 -1.106 0 0 0 0 0 0 0 +-22.746 -2.403 -1.634 0 0 0 0 0 0 0 +-22.737 -2.474 -1.634 0 0 0 0 0 0 0 +-22.691 -2.541 -1.631 0 0 0 0 0 0 0 +-22.705 -2.615 -1.633 0 0 0 0 0 0 0 +-22.713 -2.652 -1.634 0 0 0 0 0 0 0 +-22.732 -2.727 -1.636 0 0 0 0 0 0 0 +-22.715 -2.797 -1.635 0 0 0 0 0 0 0 +-22.699 -2.868 -1.635 0 0 0 0 0 0 0 +-22.747 -2.946 -1.639 0 0 0 0 0 0 0 +-22.741 -3.018 -1.64 0 0 0 0 0 0 0 +-22.761 -3.094 -1.642 0 0 0 0 0 0 0 +-22.761 -3.13 -1.642 0 0 0 0 0 0 0 +-22.723 -3.198 -1.64 0 0 0 0 0 0 0 +-22.752 -3.275 -1.643 0 0 0 0 0 0 0 +-22.85 -3.362 -1.652 0 0 0 0 0 0 0 +-22.769 -3.423 -1.646 0 0 0 0 0 0 0 +-22.669 -3.481 -1.639 0 0 0 0 0 0 0 +-22.607 -3.544 -1.635 0 0 0 0 0 0 0 +-22.542 -3.571 -1.63 0 0 0 0 0 0 0 +-22.454 -3.629 -1.624 0 0 0 0 0 0 0 +-22.389 -3.691 -1.62 0 0 0 0 0 0 0 +-22.277 -3.744 -1.611 0 0 0 0 0 0 0 +-21.059 -3.677 -1.514 0 0 0 0 0 0 0 +-20.918 -3.721 -1.504 0 0 0 0 0 0 0 +-20.857 -3.744 -1.499 0 0 0 0 0 0 0 +-20.773 -3.796 -1.493 0 0 0 0 0 0 0 +-20.7 -3.85 -1.488 0 0 0 0 0 0 0 +-20.629 -3.904 -1.483 0 0 0 0 0 0 0 +-20.556 -3.957 -1.478 0 0 0 0 0 0 0 +-20.473 -4.008 -1.473 0 0 0 0 0 0 0 +-20.402 -4.061 -1.468 0 0 0 0 0 0 0 +-20.333 -4.08 -1.463 0 0 0 0 0 0 0 +-20.245 -4.129 -1.457 0 0 0 0 0 0 0 +-20.18 -4.182 -1.452 0 0 0 0 0 0 0 +-20.094 -4.23 -1.446 0 0 0 0 0 0 0 +-20.026 -4.282 -1.442 0 0 0 0 0 0 0 +-19.974 -4.336 -1.439 0 0 0 0 0 0 0 +-19.884 -4.382 -1.433 0 0 0 0 0 0 0 +-19.823 -4.401 -1.428 0 0 0 0 0 0 0 +-19.754 -4.451 -1.424 0 0 0 0 0 0 0 +-19.672 -4.498 -1.418 0 0 0 0 0 0 0 +-19.596 -4.545 -1.413 0 0 0 0 0 0 0 +-19.527 -4.594 -1.408 0 0 0 0 0 0 0 +-19.45 -4.641 -1.403 0 0 0 0 0 0 0 +-19.407 -4.695 -1.401 0 0 0 0 0 0 0 +-19.39 -4.755 -1.401 0 0 0 0 0 0 0 +-19.402 -4.791 -1.402 0 0 0 0 0 0 0 +-19.363 -4.846 -1.4 0 0 0 0 0 0 0 +-19.342 -4.905 -1.4 0 0 0 0 0 0 0 +-19.273 -4.952 -1.395 0 0 0 0 0 0 0 +-19.141 -4.982 -1.386 0 0 0 0 0 0 0 +-19.033 -5.018 -1.378 0 0 0 0 0 0 0 +-18.951 -5.061 -1.373 0 0 0 0 0 0 0 +-18.872 -5.071 -1.367 0 0 0 0 0 0 0 +-18.783 -5.111 -1.361 0 0 0 0 0 0 0 +-18.657 -5.14 -1.352 0 0 0 0 0 0 0 +-18.574 -5.18 -1.346 0 0 0 0 0 0 0 +-18.515 -5.226 -1.342 0 0 0 0 0 0 0 +-18.455 -5.272 -1.339 0 0 0 0 0 0 0 +-17.882 -5.17 -1.292 0 0 0 0 0 0 0 +-17.817 -5.181 -1.288 0 0 0 0 0 0 0 +-17.76 -5.226 -1.284 0 0 0 0 0 0 0 +-17.677 -5.262 -1.279 0 0 0 0 0 0 0 +-17.62 -5.305 -1.275 0 0 0 0 0 0 0 +-17.55 -5.344 -1.271 0 0 0 0 0 0 0 +-17.491 -5.387 -1.267 0 0 0 0 0 0 0 +-17.417 -5.424 -1.262 0 0 0 0 0 0 0 +-17.349 -5.433 -1.257 0 0 0 0 0 0 0 +-17.292 -5.475 -1.254 0 0 0 0 0 0 0 +-17.231 -5.515 -1.25 0 0 0 0 0 0 0 +-17.246 -5.579 -1.253 0 0 0 0 0 0 0 +-17.265 -5.645 -1.256 0 0 0 0 0 0 0 +-17.307 -5.719 -1.261 0 0 0 0 0 0 0 +-17.344 -5.792 -1.266 0 0 0 0 0 0 0 +-17.377 -5.833 -1.269 0 0 0 0 0 0 0 +-17.3 -5.868 -1.265 0 0 0 0 0 0 0 +-17.236 -5.907 -1.261 0 0 0 0 0 0 0 +-17.159 -5.941 -1.256 0 0 0 0 0 0 0 +-17.102 -5.982 -1.253 0 0 0 0 0 0 0 +-17.04 -6.02 -1.249 0 0 0 0 0 0 0 +-16.95 -6.048 -1.243 0 0 0 0 0 0 0 +-16.756 -6.009 -1.227 0 0 0 0 0 0 0 +-16.754 -6.068 -1.229 0 0 0 0 0 0 0 +-16.784 -6.138 -1.233 0 0 0 0 0 0 0 +-16.714 -6.172 -1.228 0 0 0 0 0 0 0 +-16.635 -6.203 -1.223 0 0 0 0 0 0 0 +-16.58 -6.242 -1.22 0 0 0 0 0 0 0 +-16.506 -6.273 -1.216 0 0 0 0 0 0 0 +-16.44 -6.278 -1.211 0 0 0 0 0 0 0 +-16.404 -6.323 -1.209 0 0 0 0 0 0 0 +-16.287 -6.337 -1.201 0 0 0 0 0 0 0 +-16.247 -6.38 -1.199 0 0 0 0 0 0 0 +-16.184 -6.414 -1.196 0 0 0 0 0 0 0 +-16.117 -6.447 -1.192 0 0 0 0 0 0 0 +-16.056 -6.481 -1.188 0 0 0 0 0 0 0 +-15.994 -6.485 -1.184 0 0 0 0 0 0 0 +-15.942 -6.523 -1.181 0 0 0 0 0 0 0 +-15.95 -6.584 -1.183 0 0 0 0 0 0 0 +-15.967 -6.65 -1.187 0 0 0 0 0 0 0 +-15.912 -6.686 -1.184 0 0 0 0 0 0 0 +-15.799 -6.697 -1.176 0 0 0 0 0 0 0 +-15.801 -6.757 -1.178 0 0 0 0 0 0 0 +-15.937 -6.844 -1.19 0 0 0 0 0 0 0 +-16.002 -6.931 -1.198 0 0 0 0 0 0 0 +-15.995 -6.988 -1.199 0 0 0 0 0 0 0 +-16.005 -7.053 -1.202 0 0 0 0 0 0 0 +-15.967 -7.096 -1.201 0 0 0 0 0 0 0 +-15.859 -7.108 -1.193 0 0 0 0 0 0 0 +-15.762 -7.124 -1.187 0 0 0 0 0 0 0 +-15.676 -7.144 -1.181 0 0 0 0 0 0 0 +-15.661 -7.167 -1.181 0 0 0 0 0 0 0 +-15.671 -7.232 -1.184 0 0 0 0 0 0 0 +-15.69 -7.3 -1.187 0 0 0 0 0 0 0 +-15.703 -7.366 -1.19 0 0 0 0 0 0 0 +-15.689 -7.42 -1.191 0 0 0 0 0 0 0 +-15.705 -7.488 -1.195 0 0 0 0 0 0 0 +-15.712 -7.552 -1.197 0 0 0 0 0 0 0 +-15.711 -7.582 -1.198 0 0 0 0 0 0 0 +-14.802 -7.202 -1.12 0 0 0 0 0 0 0 +-14.758 -7.238 -1.118 0 0 0 0 0 0 0 +-14.725 -7.279 -1.117 0 0 0 0 0 0 0 +-15.738 -7.84 -1.209 0 0 0 0 0 0 0 +-15.832 -7.949 -1.22 0 0 0 0 0 0 0 +-16.161 -8.177 -1.252 0 0 0 0 0 0 0 +-16.204 -8.23 -1.257 0 0 0 0 0 0 0 +-16.261 -8.324 -1.265 0 0 0 0 0 0 0 +-16.255 -8.385 -1.266 0 0 0 0 0 0 0 +-16.272 -8.459 -1.27 0 0 0 0 0 0 0 +-16.306 -8.541 -1.276 0 0 0 0 0 0 0 +-16.29 -8.598 -1.277 0 0 0 0 0 0 0 +-16.282 -8.659 -1.278 0 0 0 0 0 0 0 +-16.303 -8.704 -1.282 0 0 0 0 0 0 0 +-16.337 -8.788 -1.287 0 0 0 0 0 0 0 +-16.355 -8.864 -1.291 0 0 0 0 0 0 0 +-16.376 -8.942 -1.296 0 0 0 0 0 0 0 +-16.292 -8.962 -1.291 0 0 0 0 0 0 0 +-16.254 -9.008 -1.29 0 0 0 0 0 0 0 +-16.25 -9.072 -1.292 0 0 0 0 0 0 0 +-16.265 -9.114 -1.295 0 0 0 0 0 0 0 +-16.283 -9.192 -1.299 0 0 0 0 0 0 0 +-16.278 -9.257 -1.301 0 0 0 0 0 0 0 +-16.3 -9.337 -1.306 0 0 0 0 0 0 0 +-16.301 -9.406 -1.309 0 0 0 0 0 0 0 +-16.304 -9.476 -1.312 0 0 0 0 0 0 0 +-16.307 -9.546 -1.315 0 0 0 0 0 0 0 +-16.339 -9.599 -1.319 0 0 0 0 0 0 0 +-16.336 -9.666 -1.322 0 0 0 0 0 0 0 +-16.348 -9.743 -1.326 0 0 0 0 0 0 0 +-16.359 -9.819 -1.33 0 0 0 0 0 0 0 +-16.369 -9.895 -1.333 0 0 0 0 0 0 0 +-16.368 -9.965 -1.336 0 0 0 0 0 0 0 +-16.378 -10.041 -1.34 0 0 0 0 0 0 0 +-16.399 -10.09 -1.344 0 0 0 0 0 0 0 +-16.401 -10.162 -1.347 0 0 0 0 0 0 0 +-16.413 -10.241 -1.351 0 0 0 0 0 0 0 +-16.42 -10.317 -1.355 0 0 0 0 0 0 0 +-16.43 -10.395 -1.359 0 0 0 0 0 0 0 +-16.436 -10.471 -1.362 0 0 0 0 0 0 0 +-16.435 -10.543 -1.365 0 0 0 0 0 0 0 +-16.455 -10.629 -1.371 0 0 0 0 0 0 0 +-16.477 -10.68 -1.374 0 0 0 0 0 0 0 +-16.48 -10.756 -1.378 0 0 0 0 0 0 0 +-16.419 -10.79 -1.375 0 0 0 0 0 0 0 +-16.593 -10.979 -1.395 0 0 0 0 0 0 0 +-16.61 -11.065 -1.4 0 0 0 0 0 0 0 +-16.637 -11.158 -1.406 0 0 0 0 0 0 0 +-16.626 -11.227 -1.409 0 0 0 0 0 0 0 +-16.7 -11.315 -1.417 0 0 0 0 0 0 0 +-16.723 -11.407 -1.423 0 0 0 0 0 0 0 +-16.743 -11.498 -1.429 0 0 0 0 0 0 0 +-16.704 -11.548 -1.428 0 0 0 0 0 0 0 +-10.575 -7.421 -0.835 0 0 0 0 0 0 0 +-10.432 -7.371 -0.824 0 0 0 0 0 0 0 +-10.393 -7.368 -0.821 0 0 0 0 0 0 0 +-10.355 -7.39 -0.819 0 0 0 0 0 0 0 +-10.358 -7.441 -0.822 0 0 0 0 0 0 0 +-10.39 -7.513 -0.827 0 0 0 0 0 0 0 +-10.371 -7.549 -0.828 0 0 0 0 0 0 0 +-10.353 -7.586 -0.829 0 0 0 0 0 0 0 +-10.381 -7.657 -0.834 0 0 0 0 0 0 0 +-10.415 -7.707 -0.838 0 0 0 0 0 0 0 +-10.47 -7.798 -0.846 0 0 0 0 0 0 0 +-10.517 -7.884 -0.853 0 0 0 0 0 0 0 +-16.705 -12.586 -1.477 0 0 0 0 0 0 0 +-16.721 -12.681 -1.483 0 0 0 0 0 0 0 +-16.728 -12.769 -1.487 0 0 0 0 0 0 0 +-16.735 -12.858 -1.492 0 0 0 0 0 0 0 +-16.758 -12.917 -1.497 0 0 0 0 0 0 0 +-16.766 -13.008 -1.501 0 0 0 0 0 0 0 +-16.779 -13.102 -1.507 0 0 0 0 0 0 0 +-16.792 -13.198 -1.513 0 0 0 0 0 0 0 +-16.791 -13.282 -1.517 0 0 0 0 0 0 0 +-16.793 -13.37 -1.521 0 0 0 0 0 0 0 +-16.744 -13.416 -1.52 0 0 0 0 0 0 0 +-16.921 -13.602 -1.541 0 0 0 0 0 0 0 +-16.97 -13.729 -1.55 0 0 0 0 0 0 0 +-16.981 -13.826 -1.556 0 0 0 0 0 0 0 +-16.978 -13.913 -1.56 0 0 0 0 0 0 0 +-17 -14.02 -1.567 0 0 0 0 0 0 0 +-17.004 -14.113 -1.572 0 0 0 0 0 0 0 +-17.02 -14.217 -1.578 0 0 0 0 0 0 0 +-17.042 -14.281 -1.583 0 0 0 0 0 0 0 +-16.966 -14.308 -1.58 0 0 0 0 0 0 0 +-16.951 -14.387 -1.583 0 0 0 0 0 0 0 +-16.965 -14.49 -1.589 0 0 0 0 0 0 0 +-16.972 -14.589 -1.595 0 0 0 0 0 0 0 +-16.987 -14.694 -1.601 0 0 0 0 0 0 0 +-16.983 -14.784 -1.605 0 0 0 0 0 0 0 +-16.99 -14.885 -1.611 0 0 0 0 0 0 0 +-13.843 -12.25 -1.282 0 0 0 0 0 0 0 +-13.799 -12.288 -1.281 0 0 0 0 0 0 0 +-17.057 -15.278 -1.636 0 0 0 0 0 0 0 +-17.073 -15.389 -1.643 0 0 0 0 0 0 0 +-17.073 -15.486 -1.648 0 0 0 0 0 0 0 +-17.086 -15.596 -1.655 0 0 0 0 0 0 0 +-17.122 -15.678 -1.662 0 0 0 0 0 0 0 +-17.13 -15.785 -1.668 0 0 0 0 0 0 0 +-17.151 -15.903 -1.676 0 0 0 0 0 0 0 +-17.155 -16.007 -1.681 0 0 0 0 0 0 0 +-17.151 -16.105 -1.687 0 0 0 0 0 0 0 +-17.177 -16.231 -1.695 0 0 0 0 0 0 0 +-17.181 -16.337 -1.701 0 0 0 0 0 0 0 +-17.225 -16.43 -1.709 0 0 0 0 0 0 0 +-17.219 -16.528 -1.714 0 0 0 0 0 0 0 +-13.919 -13.537 -1.357 0 0 0 0 0 0 0 +-13.976 -13.678 -1.368 0 0 0 0 0 0 0 +-17.26 -16.989 -1.742 0 0 0 0 0 0 0 +-17.28 -17.116 -1.75 0 0 0 0 0 0 0 +-17.314 -17.204 -1.757 0 0 0 0 0 0 0 +-17.321 -17.319 -1.764 0 0 0 0 0 0 0 +-17.342 -17.449 -1.773 0 0 0 0 0 0 0 +-17.341 -17.557 -1.779 0 0 0 0 0 0 0 +-17.347 -17.674 -1.786 0 0 0 0 0 0 0 +-17.367 -17.806 -1.795 0 0 0 0 0 0 0 +-17.34 -17.89 -1.798 0 0 0 0 0 0 0 +-17.235 -17.839 -1.789 0 0 0 0 0 0 0 +-17.113 -17.824 -1.781 0 0 0 0 0 0 0 +-17.071 -17.892 -1.783 0 0 0 0 0 0 0 +-17.065 -17.999 -1.789 0 0 0 0 0 0 0 +-17.059 -18.106 -1.795 0 0 0 0 0 0 0 +-14.019 -15.075 -1.451 0 0 0 0 0 0 0 +-13.944 -15.041 -1.445 0 0 0 0 0 0 0 +-17.326 -18.798 -1.85 0 0 0 0 0 0 0 +-17.539 -19.149 -1.882 0 0 0 0 0 0 0 +-17.532 -19.263 -1.889 0 0 0 0 0 0 0 +-17.491 -19.338 -1.891 0 0 0 0 0 0 0 +-17.44 -19.405 -1.892 0 0 0 0 0 0 0 +-17.405 -19.488 -1.895 0 0 0 0 0 0 0 +-17.391 -19.535 -1.897 0 0 0 0 0 0 0 +-17.347 -19.609 -1.9 0 0 0 0 0 0 0 +-17.305 -19.685 -1.902 0 0 0 0 0 0 0 +-17.263 -19.762 -1.904 0 0 0 0 0 0 0 +-17.216 -19.834 -1.906 0 0 0 0 0 0 0 +-14.139 -16.504 -1.543 0 0 0 0 0 0 0 +-14.199 -16.627 -1.553 0 0 0 0 0 0 0 +-17.089 -20.13 -1.918 0 0 0 0 0 0 0 +-17.011 -20.167 -1.916 0 0 0 0 0 0 0 +-16.949 -20.222 -1.916 0 0 0 0 0 0 0 +-16.895 -20.286 -1.917 0 0 0 0 0 0 0 +-16.823 -20.33 -1.916 0 0 0 0 0 0 0 +-16.772 -20.398 -1.918 0 0 0 0 0 0 0 +-16.759 -20.447 -1.92 0 0 0 0 0 0 0 +-16.705 -20.512 -1.921 0 0 0 0 0 0 0 +-16.65 -20.577 -1.923 0 0 0 0 0 0 0 +-16.575 -20.617 -1.921 0 0 0 0 0 0 0 +-16.517 -20.676 -1.922 0 0 0 0 0 0 0 +-16.445 -20.72 -1.921 0 0 0 0 0 0 0 +-16.346 -20.728 -1.917 0 0 0 0 0 0 0 +-16.338 -20.785 -1.92 0 0 0 0 0 0 0 +-14.202 -18.191 -1.651 0 0 0 0 0 0 0 +-16.3 -21.007 -1.932 0 0 0 0 0 0 0 +-16.213 -21.031 -1.93 0 0 0 0 0 0 0 +-16.211 -21.166 -1.938 0 0 0 0 0 0 0 +-16.153 -21.228 -1.939 0 0 0 0 0 0 0 +-16.084 -21.275 -1.939 0 0 0 0 0 0 0 +-16.053 -21.304 -1.939 0 0 0 0 0 0 0 +-15.985 -21.352 -1.939 0 0 0 0 0 0 0 +-15.943 -21.436 -1.942 0 0 0 0 0 0 0 +-15.897 -21.515 -1.945 0 0 0 0 0 0 0 +-15.85 -21.594 -1.948 0 0 0 0 0 0 0 +-15.796 -21.663 -1.95 0 0 0 0 0 0 0 +-15.728 -21.712 -1.95 0 0 0 0 0 0 0 +-15.709 -21.758 -1.952 0 0 0 0 0 0 0 +-15.636 -21.801 -1.952 0 0 0 0 0 0 0 +-15.564 -21.845 -1.951 0 0 0 0 0 0 0 +-15.493 -21.89 -1.951 0 0 0 0 0 0 0 +-15.439 -21.96 -1.953 0 0 0 0 0 0 0 +-15.378 -22.02 -1.954 0 0 0 0 0 0 0 +-15.325 -22.091 -1.956 0 0 0 0 0 0 0 +-15.26 -22.146 -1.957 0 0 0 0 0 0 0 +-15.242 -22.194 -1.959 0 0 0 0 0 0 0 +-15.177 -22.249 -1.96 0 0 0 0 0 0 0 +-15.115 -22.308 -1.961 0 0 0 0 0 0 0 +-15.048 -22.36 -1.961 0 0 0 0 0 0 0 +-14.98 -22.411 -1.962 0 0 0 0 0 0 0 +-14.932 -22.492 -1.965 0 0 0 0 0 0 0 +-14.877 -22.562 -1.967 0 0 0 0 0 0 0 +-14.851 -22.601 -1.969 0 0 0 0 0 0 0 +-14.802 -22.681 -1.972 0 0 0 0 0 0 0 +-14.751 -22.759 -1.975 0 0 0 0 0 0 0 +-14.69 -22.82 -1.976 0 0 0 0 0 0 0 +-14.651 -22.918 -1.981 0 0 0 0 0 0 0 +-14.594 -22.988 -1.984 0 0 0 0 0 0 0 +-14.57 -23.109 -1.991 0 0 0 0 0 0 0 +-14.548 -23.156 -1.993 0 0 0 0 0 0 0 +-14.521 -23.274 -2 0 0 0 0 0 0 0 +-14.451 -23.325 -2 0 0 0 0 0 0 0 +-14.391 -23.392 -2.003 0 0 0 0 0 0 0 +-14.335 -23.466 -2.005 0 0 0 0 0 0 0 +-14.277 -23.536 -2.008 0 0 0 0 0 0 0 +-14.224 -23.615 -2.011 0 0 0 0 0 0 0 +-14.213 -23.682 -2.015 0 0 0 0 0 0 0 +-14.18 -23.795 -2.021 0 0 0 0 0 0 0 +-14.145 -23.908 -2.028 0 0 0 0 0 0 0 +-14.088 -23.983 -2.031 0 0 0 0 0 0 0 +-14.035 -24.065 -2.034 0 0 0 0 0 0 0 +-14.012 -24.199 -2.043 0 0 0 0 0 0 0 +-14.016 -24.383 -2.055 0 0 0 0 0 0 0 +-14.035 -24.505 -2.065 0 0 0 0 0 0 0 +-14.032 -24.679 -2.077 0 0 0 0 0 0 0 +-13.988 -24.782 -2.082 0 0 0 0 0 0 0 +-13.874 -24.761 -2.076 0 0 0 0 0 0 0 +-13.697 -24.627 -2.06 0 0 0 0 0 0 0 +-13.53 -24.508 -2.045 0 0 0 0 0 0 0 +-13.381 -24.419 -2.033 0 0 0 0 0 0 0 +-13.289 -24.342 -2.024 0 0 0 0 0 0 0 +-13.176 -24.317 -2.018 0 0 0 0 0 0 0 +-13.048 -24.262 -2.009 0 0 0 0 0 0 0 +-12.948 -24.259 -2.005 0 0 0 0 0 0 0 +-12.85 -24.259 -2.002 0 0 0 0 0 0 0 +-12.754 -24.262 -1.998 0 0 0 0 0 0 0 +-12.659 -24.265 -1.995 0 0 0 0 0 0 0 +-12.608 -24.26 -1.993 0 0 0 0 0 0 0 +-12.511 -24.261 -1.989 0 0 0 0 0 0 0 +-12.422 -24.275 -1.987 0 0 0 0 0 0 0 +-12.34 -24.302 -1.986 0 0 0 0 0 0 0 +-12.239 -24.292 -1.981 0 0 0 0 0 0 0 +-12.147 -24.298 -1.979 0 0 0 0 0 0 0 +-12.056 -24.308 -1.976 0 0 0 0 0 0 0 +-11.99 -24.271 -1.971 0 0 0 0 0 0 0 +-11.915 -24.311 -1.971 0 0 0 0 0 0 0 +-11.829 -24.328 -1.969 0 0 0 0 0 0 0 +-11.754 -24.369 -1.97 0 0 0 0 0 0 0 +-11.658 -24.366 -1.966 0 0 0 0 0 0 0 +-11.564 -24.365 -1.963 0 0 0 0 0 0 0 +-11.475 -24.374 -1.96 0 0 0 0 0 0 0 +-11.423 -24.363 -1.958 0 0 0 0 0 0 0 +-11.331 -24.366 -1.955 0 0 0 0 0 0 0 +-11.251 -24.395 -1.954 0 0 0 0 0 0 0 +-11.178 -24.439 -1.955 0 0 0 0 0 0 0 +-11.097 -24.463 -1.954 0 0 0 0 0 0 0 +-11.016 -24.489 -1.953 0 0 0 0 0 0 0 +-10.931 -24.507 -1.952 0 0 0 0 0 0 0 +-10.882 -24.5 -1.95 0 0 0 0 0 0 0 +-10.793 -24.507 -1.948 0 0 0 0 0 0 0 +-10.711 -24.53 -1.947 0 0 0 0 0 0 0 +-10.624 -24.54 -1.944 0 0 0 0 0 0 0 +-10.532 -24.538 -1.941 0 0 0 0 0 0 0 +-10.445 -24.549 -1.94 0 0 0 0 0 0 0 +-10.347 -24.532 -1.935 0 0 0 0 0 0 0 +-10.291 -24.506 -1.932 0 0 0 0 0 0 0 +-10.218 -24.549 -1.932 0 0 0 0 0 0 0 +-10.13 -24.556 -1.93 0 0 0 0 0 0 0 +-10.031 -24.532 -1.925 0 0 0 0 0 0 0 +-9.945 -24.543 -1.924 0 0 0 0 0 0 0 +-9.857 -24.546 -1.921 0 0 0 0 0 0 0 +-9.776 -24.568 -1.92 0 0 0 0 0 0 0 +-9.728 -24.559 -1.918 0 0 0 0 0 0 0 +-9.647 -24.58 -1.918 0 0 0 0 0 0 0 +-9.563 -24.594 -1.916 0 0 0 0 0 0 0 +-9.487 -24.627 -1.916 0 0 0 0 0 0 0 +-9.422 -24.689 -1.919 0 0 0 0 0 0 0 +-9.378 -24.806 -1.927 0 0 0 0 0 0 0 +-9.273 -24.764 -1.921 0 0 0 0 0 0 0 +-9.212 -24.838 -1.924 0 0 0 0 0 0 0 +-9.121 -24.712 -1.912 0 0 0 0 0 0 0 +-9.036 -24.72 -1.911 0 0 0 0 0 0 0 +-8.948 -24.721 -1.908 0 0 0 0 0 0 0 +-8.867 -24.739 -1.908 0 0 0 0 0 0 0 +-8.785 -24.756 -1.907 0 0 0 0 0 0 0 +-8.704 -24.774 -1.906 0 0 0 0 0 0 0 +-8.625 -24.797 -1.905 0 0 0 0 0 0 0 +-8.576 -24.782 -1.903 0 0 0 0 0 0 0 +-8.497 -24.807 -1.903 0 0 0 0 0 0 0 +-8.42 -24.836 -1.903 0 0 0 0 0 0 0 +-8.337 -24.849 -1.902 0 0 0 0 0 0 0 +-8.257 -24.869 -1.901 0 0 0 0 0 0 0 +-8.177 -24.889 -1.901 0 0 0 0 0 0 0 +-8.132 -24.883 -1.899 0 0 0 0 0 0 0 +-8.057 -24.918 -1.9 0 0 0 0 0 0 0 +-7.988 -24.974 -1.903 0 0 0 0 0 0 0 +-7.927 -25.054 -1.907 0 0 0 0 0 0 0 +-7.855 -25.098 -1.909 0 0 0 0 0 0 0 +-7.725 -24.96 -1.895 0 0 0 0 0 0 0 +-7.64 -24.962 -1.893 0 0 0 0 0 0 0 +-7.553 -24.959 -1.891 0 0 0 0 0 0 0 +-7.51 -24.957 -1.89 0 0 0 0 0 0 0 +-7.426 -24.962 -1.888 0 0 0 0 0 0 0 +-7.341 -24.964 -1.887 0 0 0 0 0 0 0 +-7.255 -24.958 -1.884 0 0 0 0 0 0 0 +-7.171 -24.963 -1.883 0 0 0 0 0 0 0 +-7.079 -24.938 -1.879 0 0 0 0 0 0 0 +-6.97 -24.853 -1.87 0 0 0 0 0 0 0 +-6.942 -24.902 -1.873 0 0 0 0 0 0 0 +-6.886 -25.002 -1.88 0 0 0 0 0 0 0 +-6.815 -25.053 -1.882 0 0 0 0 0 0 0 +-6.72 -25.012 -1.877 0 0 0 0 0 0 0 +-6.634 -25.008 -1.875 0 0 0 0 0 0 0 +-6.546 -24.991 -1.872 0 0 0 0 0 0 0 +-6.455 -24.965 -1.868 0 0 0 0 0 0 0 +-6.388 -24.867 -1.859 0 0 0 0 0 0 0 +-6.373 -25.136 -1.88 0 0 0 0 0 0 0 +-6.309 -25.214 -1.884 0 0 0 0 0 0 0 +-6.254 -25.334 -1.893 0 0 0 0 0 0 0 +-6.136 -25.195 -1.88 0 0 0 0 0 0 0 +-6.045 -25.164 -1.875 0 0 0 0 0 0 0 +-5.958 -25.149 -1.873 0 0 0 0 0 0 0 +-5.914 -25.139 -1.871 0 0 0 0 0 0 0 +-5.831 -25.144 -1.87 0 0 0 0 0 0 0 +-5.75 -25.153 -1.869 0 0 0 0 0 0 0 +-5.67 -25.167 -1.869 0 0 0 0 0 0 0 +-5.589 -25.177 -1.868 0 0 0 0 0 0 0 +-5.506 -25.173 -1.866 0 0 0 0 0 0 0 +-5.426 -25.186 -1.866 0 0 0 0 0 0 0 +-5.387 -25.2 -1.867 0 0 0 0 0 0 0 +-5.307 -25.213 -1.866 0 0 0 0 0 0 0 +-5.224 -25.212 -1.865 0 0 0 0 0 0 0 +-5.145 -25.228 -1.865 0 0 0 0 0 0 0 +-5.072 -25.274 -1.867 0 0 0 0 0 0 0 +-5.003 -25.344 -1.872 0 0 0 0 0 0 0 +-4.943 -25.462 -1.88 0 0 0 0 0 0 0 +-4.91 -25.503 -1.883 0 0 0 0 0 0 0 +-4.721 -25.378 -1.87 0 0 0 0 0 0 0 +-4.628 -25.324 -1.864 0 0 0 0 0 0 0 +-4.527 -25.219 -1.855 0 0 0 0 0 0 0 +-4.435 -25.163 -1.849 0 0 0 0 0 0 0 +-4.346 -25.115 -1.844 0 0 0 0 0 0 0 +-4.3 -25.085 -1.841 0 0 0 0 0 0 0 +-4.214 -25.059 -1.838 0 0 0 0 0 0 0 +-4.128 -25.027 -1.834 0 0 0 0 0 0 0 +-4.039 -24.979 -1.829 0 0 0 0 0 0 0 +-3.96 -24.985 -1.829 0 0 0 0 0 0 0 +-3.877 -24.97 -1.826 0 0 0 0 0 0 0 +-3.819 -25.112 -1.837 0 0 0 0 0 0 0 +-3.768 -25.045 -1.831 0 0 0 0 0 0 0 +-3.694 -25.089 -1.834 0 0 0 0 0 0 0 +-3.618 -25.116 -1.835 0 0 0 0 0 0 0 +-3.541 -25.143 -1.836 0 0 0 0 0 0 0 +-3.468 -25.195 -1.84 0 0 0 0 0 0 0 +-3.386 -25.186 -1.838 0 0 0 0 0 0 0 +-3.308 -25.209 -1.839 0 0 0 0 0 0 0 +-3.269 -25.22 -1.839 0 0 0 0 0 0 0 +-3.189 -25.22 -1.839 0 0 0 0 0 0 0 +-3.112 -25.252 -1.84 0 0 0 0 0 0 0 +-3.038 -25.307 -1.844 0 0 0 0 0 0 0 +-2.954 -25.277 -1.841 0 0 0 0 0 0 0 +-2.106 -18.584 -1.299 0 0 0 0 0 0 0 +-1.962 -17.819 -1.237 0 0 0 0 0 0 0 +-1.691 -17.102 -1.178 0 0 0 0 0 0 0 +-1.636 -17.091 -1.176 0 0 0 0 0 0 0 +-1.583 -17.102 -1.177 0 0 0 0 0 0 0 +-1.555 -17.387 -1.199 0 0 0 0 0 0 0 +-1.036 -16.998 -1.165 0 0 0 0 0 0 0 +-0.483 -17.296 -1.187 0 0 0 0 0 0 0 +-0.46 -17.458 -1.2 0 0 0 0 0 0 0 +-0.4 -17.258 -1.184 0 0 0 0 0 0 0 +-0.349 -17.403 -1.195 0 0 0 0 0 0 0 +-0.419 -24.163 -1.738 0 0 0 0 0 0 0 +-0.343 -24.133 -1.735 0 0 0 0 0 0 0 +-0.267 -24.134 -1.735 0 0 0 0 0 0 0 +-0.191 -24.116 -1.734 0 0 0 0 0 0 0 +-0.115 -24.099 -1.732 0 0 0 0 0 0 0 +-0.077 -24.083 -1.731 0 0 0 0 0 0 0 +0.15 -24.087 -1.732 0 0 0 0 0 0 0 +0.225 -24.052 -1.729 0 0 0 0 0 0 0 +0.301 -24.033 -1.727 0 0 0 0 0 0 0 +0.376 -24.014 -1.726 0 0 0 0 0 0 0 +0.413 -23.968 -1.722 0 0 0 0 0 0 0 +0.488 -23.947 -1.721 0 0 0 0 0 0 0 +0.562 -23.909 -1.718 0 0 0 0 0 0 0 +0.637 -23.879 -1.716 0 0 0 0 0 0 0 +0.711 -23.837 -1.712 0 0 0 0 0 0 0 +0.784 -23.801 -1.71 0 0 0 0 0 0 0 +0.82 -23.752 -1.706 0 0 0 0 0 0 0 +0.893 -23.688 -1.701 0 0 0 0 0 0 0 +0.965 -23.645 -1.698 0 0 0 0 0 0 0 +1.039 -23.634 -1.697 0 0 0 0 0 0 0 +1.111 -23.582 -1.693 0 0 0 0 0 0 0 +1.186 -23.583 -1.693 0 0 0 0 0 0 0 +1.258 -23.553 -1.691 0 0 0 0 0 0 0 +1.332 -23.537 -1.69 0 0 0 0 0 0 0 +1.366 -23.485 -1.686 0 0 0 0 0 0 0 +1.437 -23.439 -1.683 0 0 0 0 0 0 0 +1.509 -23.403 -1.68 0 0 0 0 0 0 0 +1.58 -23.366 -1.678 0 0 0 0 0 0 0 +1.65 -23.307 -1.674 0 0 0 0 0 0 0 +1.72 -23.264 -1.671 0 0 0 0 0 0 0 +1.792 -23.239 -1.669 0 0 0 0 0 0 0 +1.828 -23.226 -1.668 0 0 0 0 0 0 0 +1.897 -23.174 -1.664 0 0 0 0 0 0 0 +1.965 -23.119 -1.66 0 0 0 0 0 0 0 +2.042 -23.152 -1.664 0 0 0 0 0 0 0 +2.113 -23.128 -1.662 0 0 0 0 0 0 0 +2.184 -23.107 -1.661 0 0 0 0 0 0 0 +2.254 -23.07 -1.659 0 0 0 0 0 0 0 +2.285 -23.015 -1.655 0 0 0 0 0 0 0 +2.357 -23.004 -1.654 0 0 0 0 0 0 0 +2.43 -23.004 -1.655 0 0 0 0 0 0 0 +2.499 -22.967 -1.652 0 0 0 0 0 0 0 +2.572 -22.971 -1.653 0 0 0 0 0 0 0 +2.647 -22.98 -1.655 0 0 0 0 0 0 0 +2.72 -22.984 -1.656 0 0 0 0 0 0 0 +2.756 -22.976 -1.656 0 0 0 0 0 0 0 +2.832 -22.996 -1.658 0 0 0 0 0 0 0 +2.895 -22.918 -1.652 0 0 0 0 0 0 0 +2.959 -22.846 -1.647 0 0 0 0 0 0 0 +3.029 -22.822 -1.646 0 0 0 0 0 0 0 +3.093 -22.759 -1.642 0 0 0 0 0 0 0 +3.15 -22.645 -1.633 0 0 0 0 0 0 0 +3.193 -22.693 -1.638 0 0 0 0 0 0 0 +3.243 -22.529 -1.625 0 0 0 0 0 0 0 +3.309 -22.487 -1.623 0 0 0 0 0 0 0 +3.367 -22.396 -1.616 0 0 0 0 0 0 0 +3.421 -22.275 -1.607 0 0 0 0 0 0 0 +3.467 -22.11 -1.595 0 0 0 0 0 0 0 +3.512 -21.944 -1.582 0 0 0 0 0 0 0 +3.519 -21.769 -1.568 0 0 0 0 0 0 0 +3.555 -21.557 -1.552 0 0 0 0 0 0 0 +3.573 -21.249 -1.528 0 0 0 0 0 0 0 +3.556 -20.744 -1.488 0 0 0 0 0 0 0 +3.639 -20.841 -1.496 0 0 0 0 0 0 0 +3.663 -20.59 -1.477 0 0 0 0 0 0 0 +3.615 -19.953 -1.426 0 0 0 0 0 0 0 +3.743 -20.124 -1.441 0 0 0 0 0 0 0 +3.699 -19.54 -1.394 0 0 0 0 0 0 0 +3.816 -19.816 -1.418 0 0 0 0 0 0 0 +3.866 -19.745 -1.413 0 0 0 0 0 0 0 +3.905 -19.613 -1.403 0 0 0 0 0 0 0 +4.004 -19.791 -1.419 0 0 0 0 0 0 0 +3.982 -19.52 -1.397 0 0 0 0 0 0 0 +1.375 -6.444 -0.327 0 0 0 0 0 0 0 +1.39 -6.417 -0.325 0 0 0 0 0 0 0 +1.436 -6.435 -0.328 0 0 0 0 0 0 0 +1.481 -6.492 -0.333 0 0 0 0 0 0 0 +1.494 -6.457 -0.33 0 0 0 0 0 0 0 +1.52 -6.477 -0.332 0 0 0 0 0 0 0 +1.538 -6.463 -0.332 0 0 0 0 0 0 0 +1.556 -6.446 -0.331 0 0 0 0 0 0 0 +1.577 -6.445 -0.331 0 0 0 0 0 0 0 +4.422 -18.024 -1.288 0 0 0 0 0 0 0 +4.206 -17.02 -1.205 0 0 0 0 0 0 0 +4.422 -17.661 -1.26 0 0 0 0 0 0 0 +4.506 -17.761 -1.269 0 0 0 0 0 0 0 +4.554 -17.716 -1.266 0 0 0 0 0 0 0 +4.339 -16.657 -1.18 0 0 0 0 0 0 0 +4.439 -16.825 -1.195 0 0 0 0 0 0 0 +4.462 -16.697 -1.185 0 0 0 0 0 0 0 +4.455 -16.565 -1.175 0 0 0 0 0 0 0 +4.536 -16.661 -1.184 0 0 0 0 0 0 0 +4.549 -16.5 -1.172 0 0 0 0 0 0 0 +4.549 -16.301 -1.157 0 0 0 0 0 0 0 +4.614 -16.337 -1.161 0 0 0 0 0 0 0 +4.665 -16.318 -1.161 0 0 0 0 0 0 0 +4.626 -15.991 -1.134 0 0 0 0 0 0 0 +4.704 -16.168 -1.15 0 0 0 0 0 0 0 +4.679 -15.893 -1.128 0 0 0 0 0 0 0 +4.699 -15.777 -1.12 0 0 0 0 0 0 0 +4.763 -15.812 -1.124 0 0 0 0 0 0 0 +4.773 -15.665 -1.113 0 0 0 0 0 0 0 +4.799 -15.574 -1.106 0 0 0 0 0 0 0 +4.86 -15.596 -1.11 0 0 0 0 0 0 0 +4.852 -15.484 -1.101 0 0 0 0 0 0 0 +4.867 -15.362 -1.092 0 0 0 0 0 0 0 +4.903 -15.311 -1.089 0 0 0 0 0 0 0 +4.928 -15.223 -1.083 0 0 0 0 0 0 0 +5.001 -15.285 -1.089 0 0 0 0 0 0 0 +5.059 -15.3 -1.092 0 0 0 0 0 0 0 +5.056 -15.131 -1.079 0 0 0 0 0 0 0 +5.099 -15.18 -1.084 0 0 0 0 0 0 0 +5.167 -15.224 -1.089 0 0 0 0 0 0 0 +5.229 -15.249 -1.092 0 0 0 0 0 0 0 +5.353 -15.453 -1.111 0 0 0 0 0 0 0 +5.438 -15.542 -1.12 0 0 0 0 0 0 0 +3.724 -10.511 -0.693 0 0 0 0 0 0 0 +3.745 -10.467 -0.691 0 0 0 0 0 0 0 +3.764 -10.467 -0.691 0 0 0 0 0 0 0 +3.801 -10.466 -0.692 0 0 0 0 0 0 0 +3.859 -10.523 -0.698 0 0 0 0 0 0 0 +3.89 -10.506 -0.698 0 0 0 0 0 0 0 +3.934 -10.523 -0.7 0 0 0 0 0 0 0 +5.785 -15.363 -1.116 0 0 0 0 0 0 0 +5.82 -15.309 -1.113 0 0 0 0 0 0 0 +5.874 -15.378 -1.12 0 0 0 0 0 0 0 +5.892 -15.281 -1.113 0 0 0 0 0 0 0 +6.01 -15.443 -1.128 0 0 0 0 0 0 0 +5.258 -13.376 -0.952 0 0 0 0 0 0 0 +6.112 -15.418 -1.13 0 0 0 0 0 0 0 +5.321 -13.291 -0.947 0 0 0 0 0 0 0 +5.374 -13.302 -0.95 0 0 0 0 0 0 0 +5.42 -13.356 -0.955 0 0 0 0 0 0 0 +5.44 -13.286 -0.951 0 0 0 0 0 0 0 +5.478 -13.259 -0.95 0 0 0 0 0 0 0 +5.527 -13.259 -0.951 0 0 0 0 0 0 0 +5.576 -13.26 -0.953 0 0 0 0 0 0 0 +5.628 -13.266 -0.955 0 0 0 0 0 0 0 +5.627 -13.147 -0.946 0 0 0 0 0 0 0 +5.696 -13.252 -0.956 0 0 0 0 0 0 0 +5.715 -13.183 -0.952 0 0 0 0 0 0 0 +5.719 -13.079 -0.944 0 0 0 0 0 0 0 +5.792 -13.134 -0.95 0 0 0 0 0 0 0 +5.818 -13.081 -0.947 0 0 0 0 0 0 0 +5.812 -12.957 -0.938 0 0 0 0 0 0 0 +5.822 -12.87 -0.932 0 0 0 0 0 0 0 +5.851 -12.88 -0.934 0 0 0 0 0 0 0 +5.906 -12.893 -0.937 0 0 0 0 0 0 0 +5.91 -12.796 -0.93 0 0 0 0 0 0 0 +5.952 -12.781 -0.93 0 0 0 0 0 0 0 +6.006 -12.791 -0.933 0 0 0 0 0 0 0 +5.983 -12.639 -0.921 0 0 0 0 0 0 0 +5.994 -12.559 -0.915 0 0 0 0 0 0 0 +6.103 -12.738 -0.932 0 0 0 0 0 0 0 +6.177 -12.789 -0.938 0 0 0 0 0 0 0 +6.133 -12.596 -0.923 0 0 0 0 0 0 0 +6.284 -12.806 -0.943 0 0 0 0 0 0 0 +6.28 -12.695 -0.935 0 0 0 0 0 0 0 +6.43 -12.898 -0.955 0 0 0 0 0 0 0 +6.649 -13.234 -0.987 0 0 0 0 0 0 0 +6.207 -12.301 -0.904 0 0 0 0 0 0 0 +6.281 -12.353 -0.911 0 0 0 0 0 0 0 +6.263 -12.221 -0.901 0 0 0 0 0 0 0 +6.319 -12.237 -0.904 0 0 0 0 0 0 0 +6.343 -12.189 -0.901 0 0 0 0 0 0 0 +6.382 -12.17 -0.901 0 0 0 0 0 0 0 +6.417 -12.143 -0.901 0 0 0 0 0 0 0 +6.471 -12.2 -0.907 0 0 0 0 0 0 0 +6.453 -12.074 -0.897 0 0 0 0 0 0 0 +6.586 -12.229 -0.913 0 0 0 0 0 0 0 +6.579 -12.126 -0.906 0 0 0 0 0 0 0 +6.622 -12.114 -0.906 0 0 0 0 0 0 0 +6.661 -12.095 -0.907 0 0 0 0 0 0 0 +6.664 -12.01 -0.901 0 0 0 0 0 0 0 +6.685 -12.004 -0.901 0 0 0 0 0 0 0 +6.714 -11.968 -0.9 0 0 0 0 0 0 0 +6.661 -11.785 -0.885 0 0 0 0 0 0 0 +6.721 -11.806 -0.889 0 0 0 0 0 0 0 +6.758 -11.783 -0.889 0 0 0 0 0 0 0 +6.862 -11.879 -0.899 0 0 0 0 0 0 0 +6.785 -11.661 -0.881 0 0 0 0 0 0 0 +6.801 -11.645 -0.881 0 0 0 0 0 0 0 +6.837 -11.623 -0.881 0 0 0 0 0 0 0 +7.052 -11.904 -0.909 0 0 0 0 0 0 0 +7.947 -13.325 -1.044 0 0 0 0 0 0 0 +7.012 -11.668 -0.891 0 0 0 0 0 0 0 +7.013 -11.586 -0.885 0 0 0 0 0 0 0 +7.052 -11.569 -0.886 0 0 0 0 0 0 0 +7.096 -11.601 -0.89 0 0 0 0 0 0 0 +7.145 -11.599 -0.892 0 0 0 0 0 0 0 +7.008 -11.295 -0.865 0 0 0 0 0 0 0 +7.172 -11.479 -0.885 0 0 0 0 0 0 0 +7.155 -11.372 -0.877 0 0 0 0 0 0 0 +7.186 -11.343 -0.876 0 0 0 0 0 0 0 +7.309 -11.458 -0.889 0 0 0 0 0 0 0 +8.529 -13.286 -1.066 0 0 0 0 0 0 0 +8.582 -13.323 -1.07 0 0 0 0 0 0 0 +8.651 -13.337 -1.074 0 0 0 0 0 0 0 +8.765 -13.42 -1.085 0 0 0 0 0 0 0 +7.454 -11.329 -0.887 0 0 0 0 0 0 0 +7.444 -11.235 -0.88 0 0 0 0 0 0 0 +7.619 -11.423 -0.9 0 0 0 0 0 0 0 +7.821 -11.647 -0.924 0 0 0 0 0 0 0 +7.646 -11.347 -0.897 0 0 0 0 0 0 0 +7.453 -10.984 -0.864 0 0 0 0 0 0 0 +7.42 -10.862 -0.854 0 0 0 0 0 0 0 +7.592 -11.039 -0.874 0 0 0 0 0 0 0 +7.691 -11.109 -0.883 0 0 0 0 0 0 0 +9.318 -13.379 -1.107 0 0 0 0 0 0 0 +7.531 -10.768 -0.853 0 0 0 0 0 0 0 +7.58 -10.766 -0.855 0 0 0 0 0 0 0 +7.614 -10.742 -0.855 0 0 0 0 0 0 0 +7.697 -10.788 -0.862 0 0 0 0 0 0 0 +7.808 -10.872 -0.873 0 0 0 0 0 0 0 +9.483 -13.125 -1.098 0 0 0 0 0 0 0 +7.875 -10.821 -0.873 0 0 0 0 0 0 0 +7.909 -10.831 -0.875 0 0 0 0 0 0 0 +7.937 -10.798 -0.874 0 0 0 0 0 0 0 +8.38 -11.329 -0.929 0 0 0 0 0 0 0 +7.901 -10.609 -0.86 0 0 0 0 0 0 0 +7.998 -10.669 -0.869 0 0 0 0 0 0 0 +8.132 -10.777 -0.882 0 0 0 0 0 0 0 +8.234 -10.843 -0.891 0 0 0 0 0 0 0 +8.099 -10.629 -0.871 0 0 0 0 0 0 0 +8.13 -10.601 -0.871 0 0 0 0 0 0 0 +8.124 -10.523 -0.865 0 0 0 0 0 0 0 +8.108 -10.434 -0.859 0 0 0 0 0 0 0 +8.169 -10.445 -0.863 0 0 0 0 0 0 0 +8.206 -10.426 -0.863 0 0 0 0 0 0 0 +8.16 -10.3 -0.853 0 0 0 0 0 0 0 +8.216 -10.304 -0.856 0 0 0 0 0 0 0 +8.225 -10.281 -0.855 0 0 0 0 0 0 0 +8.268 -10.269 -0.857 0 0 0 0 0 0 0 +9.549 -11.79 -1.016 0 0 0 0 0 0 0 +8.335 -10.22 -0.857 0 0 0 0 0 0 0 +8.368 -10.196 -0.857 0 0 0 0 0 0 0 +8.477 -10.197 -0.863 0 0 0 0 0 0 0 +9.314 -11.172 -0.966 0 0 0 0 0 0 0 +8.429 -10.042 -0.851 0 0 0 0 0 0 0 +8.5 -10.063 -0.856 0 0 0 0 0 0 0 +9.48 -11.156 -0.973 0 0 0 0 0 0 0 +9.495 -11.103 -0.971 0 0 0 0 0 0 0 +9.519 -10.99 -0.965 0 0 0 0 0 0 0 +9.469 -10.897 -0.957 0 0 0 0 0 0 0 +8.628 -9.863 -0.85 0 0 0 0 0 0 0 +8.628 -9.8 -0.846 0 0 0 0 0 0 0 +8.609 -9.718 -0.84 0 0 0 0 0 0 0 +8.651 -9.702 -0.842 0 0 0 0 0 0 0 +8.854 -9.868 -0.862 0 0 0 0 0 0 0 +8.647 -9.607 -0.836 0 0 0 0 0 0 0 +8.769 -9.62 -0.843 0 0 0 0 0 0 0 +8.907 -9.71 -0.856 0 0 0 0 0 0 0 +8.925 -9.669 -0.854 0 0 0 0 0 0 0 +8.886 -9.566 -0.846 0 0 0 0 0 0 0 +9.004 -9.633 -0.857 0 0 0 0 0 0 0 +8.892 -9.452 -0.84 0 0 0 0 0 0 0 +9.653 -10.233 -0.927 0 0 0 0 0 0 0 +9.663 -10.179 -0.925 0 0 0 0 0 0 0 +9.677 -10.13 -0.923 0 0 0 0 0 0 0 +9.679 -10.068 -0.919 0 0 0 0 0 0 0 +9.694 -10.02 -0.917 0 0 0 0 0 0 0 +9.019 -9.203 -0.833 0 0 0 0 0 0 0 +9.033 -9.189 -0.833 0 0 0 0 0 0 0 +9.679 -9.786 -0.903 0 0 0 0 0 0 0 +9.033 -9.074 -0.826 0 0 0 0 0 0 0 +9.233 -9.217 -0.846 0 0 0 0 0 0 0 +9.135 -9.062 -0.831 0 0 0 0 0 0 0 +9.135 -9.005 -0.828 0 0 0 0 0 0 0 +9.138 -8.951 -0.825 0 0 0 0 0 0 0 +9.15 -8.935 -0.825 0 0 0 0 0 0 0 +9.173 -8.901 -0.824 0 0 0 0 0 0 0 +9.176 -8.848 -0.822 0 0 0 0 0 0 0 +9.206 -8.821 -0.822 0 0 0 0 0 0 0 +9.216 -8.776 -0.82 0 0 0 0 0 0 0 +9.716 -9.196 -0.872 0 0 0 0 0 0 0 +9.741 -9.161 -0.872 0 0 0 0 0 0 0 +9.732 -9.124 -0.869 0 0 0 0 0 0 0 +9.74 -9.074 -0.867 0 0 0 0 0 0 0 +9.754 -9.03 -0.865 0 0 0 0 0 0 0 +9.757 -8.976 -0.862 0 0 0 0 0 0 0 +9.769 -8.931 -0.861 0 0 0 0 0 0 0 +9.777 -8.881 -0.858 0 0 0 0 0 0 0 +9.768 -8.846 -0.856 0 0 0 0 0 0 0 +9.749 -8.772 -0.851 0 0 0 0 0 0 0 +9.288 -8.303 -0.798 0 0 0 0 0 0 0 +9.267 -8.232 -0.793 0 0 0 0 0 0 0 +9.275 -8.187 -0.791 0 0 0 0 0 0 0 +9.29 -8.148 -0.79 0 0 0 0 0 0 0 +9.32 -8.123 -0.791 0 0 0 0 0 0 0 +9.323 -8.074 -0.788 0 0 0 0 0 0 0 +9.34 -8.063 -0.789 0 0 0 0 0 0 0 +9.356 -8.026 -0.788 0 0 0 0 0 0 0 +9.374 -7.99 -0.787 0 0 0 0 0 0 0 +9.405 -7.966 -0.788 0 0 0 0 0 0 0 +9.418 -7.926 -0.786 0 0 0 0 0 0 0 +9.438 -7.892 -0.786 0 0 0 0 0 0 0 +9.484 -7.881 -0.788 0 0 0 0 0 0 0 +9.486 -7.857 -0.787 0 0 0 0 0 0 0 +9.481 -7.803 -0.784 0 0 0 0 0 0 0 +9.501 -7.769 -0.783 0 0 0 0 0 0 0 +9.522 -7.737 -0.783 0 0 0 0 0 0 0 +9.548 -7.708 -0.783 0 0 0 0 0 0 0 +9.561 -7.669 -0.782 0 0 0 0 0 0 0 +9.581 -7.635 -0.782 0 0 0 0 0 0 0 +9.582 -7.612 -0.781 0 0 0 0 0 0 0 +9.582 -7.563 -0.778 0 0 0 0 0 0 0 +9.59 -7.52 -0.777 0 0 0 0 0 0 0 +9.612 -7.489 -0.776 0 0 0 0 0 0 0 +9.634 -7.458 -0.776 0 0 0 0 0 0 0 +9.612 -7.392 -0.772 0 0 0 0 0 0 0 +9.63 -7.358 -0.771 0 0 0 0 0 0 0 +9.629 -7.333 -0.77 0 0 0 0 0 0 0 +9.638 -7.292 -0.768 0 0 0 0 0 0 0 +9.659 -7.261 -0.768 0 0 0 0 0 0 0 +9.704 -7.247 -0.77 0 0 0 0 0 0 0 +9.754 -7.237 -0.773 0 0 0 0 0 0 0 +9.79 -7.216 -0.774 0 0 0 0 0 0 0 +9.798 -7.174 -0.773 0 0 0 0 0 0 0 +9.828 -7.173 -0.775 0 0 0 0 0 0 0 +9.88 -7.163 -0.778 0 0 0 0 0 0 0 +9.922 -7.146 -0.78 0 0 0 0 0 0 0 +9.965 -7.13 -0.782 0 0 0 0 0 0 0 +10.02 -7.122 -0.785 0 0 0 0 0 0 0 +10.098 -7.129 -0.79 0 0 0 0 0 0 0 +10.148 -7.117 -0.793 0 0 0 0 0 0 0 +10.297 -7.199 -0.807 0 0 0 0 0 0 0 +10.52 -7.305 -0.826 0 0 0 0 0 0 0 +10.544 -7.273 -0.826 0 0 0 0 0 0 0 +10.567 -7.24 -0.826 0 0 0 0 0 0 0 +10.59 -7.207 -0.826 0 0 0 0 0 0 0 +10.61 -7.173 -0.826 0 0 0 0 0 0 0 +10.63 -7.137 -0.826 0 0 0 0 0 0 0 +10.629 -7.113 -0.825 0 0 0 0 0 0 0 +10.658 -7.084 -0.826 0 0 0 0 0 0 0 +10.68 -7.05 -0.826 0 0 0 0 0 0 0 +10.706 -7.019 -0.826 0 0 0 0 0 0 0 +10.729 -6.986 -0.826 0 0 0 0 0 0 0 +10.741 -6.946 -0.825 0 0 0 0 0 0 0 +10.768 -6.915 -0.826 0 0 0 0 0 0 0 +10.781 -6.899 -0.826 0 0 0 0 0 0 0 +10.802 -6.866 -0.826 0 0 0 0 0 0 0 +10.819 -6.828 -0.825 0 0 0 0 0 0 0 +10.84 -6.794 -0.825 0 0 0 0 0 0 0 +10.865 -6.762 -0.826 0 0 0 0 0 0 0 +10.886 -6.728 -0.826 0 0 0 0 0 0 0 +10.911 -6.696 -0.826 0 0 0 0 0 0 0 +10.923 -6.68 -0.826 0 0 0 0 0 0 0 +10.944 -6.646 -0.826 0 0 0 0 0 0 0 +10.968 -6.613 -0.826 0 0 0 0 0 0 0 +11.014 -6.594 -0.829 0 0 0 0 0 0 0 +11.066 -6.578 -0.832 0 0 0 0 0 0 0 +11.11 -6.557 -0.834 0 0 0 0 0 0 0 +11.163 -6.542 -0.837 0 0 0 0 0 0 0 +11.201 -6.54 -0.839 0 0 0 0 0 0 0 +11.246 -6.519 -0.842 0 0 0 0 0 0 0 +11.306 -6.507 -0.845 0 0 0 0 0 0 0 +11.368 -6.495 -0.849 0 0 0 0 0 0 0 +11.409 -6.471 -0.851 0 0 0 0 0 0 0 +11.461 -6.453 -0.854 0 0 0 0 0 0 0 +11.514 -6.435 -0.857 0 0 0 0 0 0 0 +11.553 -6.434 -0.86 0 0 0 0 0 0 0 +11.612 -6.419 -0.863 0 0 0 0 0 0 0 +11.663 -6.4 -0.866 0 0 0 0 0 0 0 +11.724 -6.385 -0.87 0 0 0 0 0 0 0 +11.768 -6.361 -0.872 0 0 0 0 0 0 0 +11.822 -6.342 -0.875 0 0 0 0 0 0 0 +11.871 -6.321 -0.878 0 0 0 0 0 0 0 +11.918 -6.322 -0.881 0 0 0 0 0 0 0 +11.971 -6.302 -0.884 0 0 0 0 0 0 0 +12.044 -6.293 -0.889 0 0 0 0 0 0 0 +12.163 -6.306 -0.898 0 0 0 0 0 0 0 +8.779 -4.509 -0.591 0 0 0 0 0 0 0 +8.784 -4.476 -0.59 0 0 0 0 0 0 0 +12.445 -6.28 -0.917 0 0 0 0 0 0 0 +12.498 -6.258 -0.92 0 0 0 0 0 0 0 +12.548 -6.234 -0.923 0 0 0 0 0 0 0 +12.604 -6.212 -0.926 0 0 0 0 0 0 0 +12.666 -6.194 -0.93 0 0 0 0 0 0 0 +12.718 -6.17 -0.933 0 0 0 0 0 0 0 +12.778 -6.15 -0.937 0 0 0 0 0 0 0 +12.817 -6.143 -0.939 0 0 0 0 0 0 0 +12.811 -6.091 -0.937 0 0 0 0 0 0 0 +12.826 -6.049 -0.937 0 0 0 0 0 0 0 +12.883 -6.027 -0.94 0 0 0 0 0 0 0 +12.936 -6.002 -0.943 0 0 0 0 0 0 0 +13.007 -5.986 -0.948 0 0 0 0 0 0 0 +13.073 -5.966 -0.952 0 0 0 0 0 0 0 +13.119 -5.962 -0.955 0 0 0 0 0 0 0 +13.183 -5.942 -0.959 0 0 0 0 0 0 0 +13.243 -5.919 -0.963 0 0 0 0 0 0 0 +13.3 -5.894 -0.966 0 0 0 0 0 0 0 +13.364 -5.873 -0.97 0 0 0 0 0 0 0 +13.445 -5.858 -0.975 0 0 0 0 0 0 0 +13.498 -5.831 -0.978 0 0 0 0 0 0 0 +13.558 -5.832 -0.983 0 0 0 0 0 0 0 +13.624 -5.81 -0.987 0 0 0 0 0 0 0 +13.697 -5.79 -0.992 0 0 0 0 0 0 0 +13.759 -5.766 -0.996 0 0 0 0 0 0 0 +13.825 -5.742 -1 0 0 0 0 0 0 0 +13.893 -5.719 -1.004 0 0 0 0 0 0 0 +13.963 -5.697 -1.009 0 0 0 0 0 0 0 +13.953 -5.667 -1.007 0 0 0 0 0 0 0 +13.803 -5.556 -0.993 0 0 0 0 0 0 0 +13.746 -5.482 -0.986 0 0 0 0 0 0 0 +13.798 -5.453 -0.989 0 0 0 0 0 0 0 +13.832 -5.416 -0.991 0 0 0 0 0 0 0 +14.115 -5.477 -1.014 0 0 0 0 0 0 0 +14.271 -5.486 -1.026 0 0 0 0 0 0 0 +14.118 -5.401 -1.012 0 0 0 0 0 0 0 +13.881 -5.211 -0.988 0 0 0 0 0 0 0 +13.978 -5.197 -0.995 0 0 0 0 0 0 0 +14.377 -5.295 -1.028 0 0 0 0 0 0 0 +14.143 -5.158 -1.007 0 0 0 0 0 0 0 +14.163 -5.115 -1.007 0 0 0 0 0 0 0 +14.302 -5.14 -1.018 0 0 0 0 0 0 0 +14.247 -5.069 -1.012 0 0 0 0 0 0 0 +15.09 -5.317 -1.082 0 0 0 0 0 0 0 +15.018 -5.239 -1.075 0 0 0 0 0 0 0 +14.458 -4.992 -1.026 0 0 0 0 0 0 0 +14.628 -4.999 -1.039 0 0 0 0 0 0 0 +14.682 -4.915 -1.041 0 0 0 0 0 0 0 +15.38 -5.123 -1.099 0 0 0 0 0 0 0 +15.382 -5.07 -1.098 0 0 0 0 0 0 0 +14.959 -4.826 -1.06 0 0 0 0 0 0 0 +14.837 -4.735 -1.048 0 0 0 0 0 0 0 +15.606 -4.928 -1.112 0 0 0 0 0 0 0 +14.949 -4.667 -1.055 0 0 0 0 0 0 0 +15.542 -4.827 -1.105 0 0 0 0 0 0 0 +15.628 -4.8 -1.11 0 0 0 0 0 0 0 +15.677 -4.761 -1.113 0 0 0 0 0 0 0 +15.728 -4.723 -1.116 0 0 0 0 0 0 0 +15.193 -4.509 -1.07 0 0 0 0 0 0 0 +15.637 -4.588 -1.106 0 0 0 0 0 0 0 +15.6 -4.551 -1.103 0 0 0 0 0 0 0 +15.568 -4.489 -1.099 0 0 0 0 0 0 0 +15.561 -4.434 -1.097 0 0 0 0 0 0 0 +15.625 -4.399 -1.101 0 0 0 0 0 0 0 +15.675 -4.36 -1.104 0 0 0 0 0 0 0 +15.739 -4.324 -1.108 0 0 0 0 0 0 0 +15.789 -4.285 -1.111 0 0 0 0 0 0 0 +15.852 -4.249 -1.116 0 0 0 0 0 0 0 +15.905 -4.236 -1.119 0 0 0 0 0 0 0 +15.974 -4.201 -1.124 0 0 0 0 0 0 0 +16.02 -4.159 -1.127 0 0 0 0 0 0 0 +16.081 -4.122 -1.131 0 0 0 0 0 0 0 +16.139 -4.082 -1.134 0 0 0 0 0 0 0 +16.19 -4.041 -1.138 0 0 0 0 0 0 0 +16.251 -4.002 -1.142 0 0 0 0 0 0 0 +16.323 -3.993 -1.147 0 0 0 0 0 0 0 +16.374 -3.951 -1.15 0 0 0 0 0 0 0 +16.433 -3.911 -1.154 0 0 0 0 0 0 0 +16.517 -3.876 -1.16 0 0 0 0 0 0 0 +16.549 -3.829 -1.162 0 0 0 0 0 0 0 +16.605 -3.787 -1.165 0 0 0 0 0 0 0 +16.676 -3.748 -1.17 0 0 0 0 0 0 0 +16.742 -3.735 -1.175 0 0 0 0 0 0 0 +17.063 -3.751 -1.201 0 0 0 0 0 0 0 +7.402 -1.588 -0.406 0 0 0 0 0 0 0 +7.341 -1.55 -0.401 0 0 0 0 0 0 0 +7.32 -1.522 -0.399 0 0 0 0 0 0 0 +7.311 -1.496 -0.397 0 0 0 0 0 0 0 +7.296 -1.469 -0.396 0 0 0 0 0 0 0 +7.285 -1.455 -0.395 0 0 0 0 0 0 0 +7.283 -1.431 -0.394 0 0 0 0 0 0 0 +7.296 -1.409 -0.395 0 0 0 0 0 0 0 +7.275 -1.382 -0.393 0 0 0 0 0 0 0 +7.304 -1.364 -0.395 0 0 0 0 0 0 0 +7.291 -1.337 -0.393 0 0 0 0 0 0 0 +7.303 -1.316 -0.394 0 0 0 0 0 0 0 +7.295 -1.303 -0.393 0 0 0 0 0 0 0 +7.319 -1.283 -0.395 0 0 0 0 0 0 0 +7.329 -1.261 -0.395 0 0 0 0 0 0 0 +7.354 -1.242 -0.397 0 0 0 0 0 0 0 +7.388 -1.224 -0.399 0 0 0 0 0 0 0 +7.378 -1.198 -0.398 0 0 0 0 0 0 0 +7.401 -1.178 -0.4 0 0 0 0 0 0 0 +7.403 -1.167 -0.4 0 0 0 0 0 0 0 +7.446 -1.15 -0.403 0 0 0 0 0 0 0 +7.469 -1.129 -0.405 0 0 0 0 0 0 0 +13.643 -1.997 -0.905 0 0 0 0 0 0 0 +13.714 -1.963 -0.91 0 0 0 0 0 0 0 +13.793 -1.931 -0.916 0 0 0 0 0 0 0 +19.091 -2.652 -1.345 0 0 0 0 0 0 0 +19.175 -2.602 -1.351 0 0 0 0 0 0 0 +19.24 -2.549 -1.356 0 0 0 0 0 0 0 +19.293 -2.495 -1.36 0 0 0 0 0 0 0 +19.232 -2.425 -1.354 0 0 0 0 0 0 0 +19.275 -2.369 -1.357 0 0 0 0 0 0 0 +19.364 -2.319 -1.364 0 0 0 0 0 0 0 +19.409 -2.293 -1.367 0 0 0 0 0 0 0 +19.459 -2.237 -1.37 0 0 0 0 0 0 0 +19.512 -2.181 -1.374 0 0 0 0 0 0 0 +19.556 -2.124 -1.377 0 0 0 0 0 0 0 +19.571 -2.064 -1.378 0 0 0 0 0 0 0 +19.649 -2.009 -1.384 0 0 0 0 0 0 0 +19.679 -1.95 -1.385 0 0 0 0 0 0 0 +19.644 -1.915 -1.382 0 0 0 0 0 0 0 +11.13 -1.039 -0.696 0 0 0 0 0 0 0 +19.818 -1.744 -1.395 0 0 0 0 0 0 0 +19.841 -1.684 -1.397 0 0 0 0 0 0 0 +19.862 -1.623 -1.398 0 0 0 0 0 0 0 +20.026 -1.573 -1.411 0 0 0 0 0 0 0 +20.08 -1.545 -1.415 0 0 0 0 0 0 0 +20.093 -1.483 -1.415 0 0 0 0 0 0 0 +20.084 -1.419 -1.414 0 0 0 0 0 0 0 +20.166 -1.361 -1.421 0 0 0 0 0 0 0 +20.204 -1.3 -1.423 0 0 0 0 0 0 0 +20.172 -1.234 -1.42 0 0 0 0 0 0 0 +20.213 -1.173 -1.423 0 0 0 0 0 0 0 +20.241 -1.143 -1.425 0 0 0 0 0 0 0 +20.292 -1.082 -1.429 0 0 0 0 0 0 0 +20.222 -1.014 -1.423 0 0 0 0 0 0 0 +20.289 -0.954 -1.429 0 0 0 0 0 0 0 +20.274 -0.889 -1.427 0 0 0 0 0 0 0 +20.386 -0.83 -1.436 0 0 0 0 0 0 0 +20.436 -0.768 -1.44 0 0 0 0 0 0 0 +20.456 -0.737 -1.441 0 0 0 0 0 0 0 +20.496 -0.674 -1.444 0 0 0 0 0 0 0 +20.535 -0.61 -1.447 0 0 0 0 0 0 0 +20.537 -0.546 -1.447 0 0 0 0 0 0 0 +20.567 -0.482 -1.449 0 0 0 0 0 0 0 +20.59 -0.418 -1.451 0 0 0 0 0 0 0 +20.571 -0.353 -1.45 0 0 0 0 0 0 0 +20.508 -0.319 -1.445 0 0 0 0 0 0 0 +20.521 -0.255 -1.445 0 0 0 0 0 0 0 +20.566 -0.191 -1.449 0 0 0 0 0 0 0 +20.57 -0.127 -1.449 0 0 0 0 0 0 0 +20.594 -0.062 -1.451 0 0 0 0 0 0 0 +13.46 0.08 -0.956 0 0 0 0 0 0 0 +13.394 0.101 -0.95 0 0 0 0 0 0 0 +13.527 0.145 -0.962 0 0 0 0 0 0 0 +13.381 0.227 -0.949 0 0 0 0 0 0 0 +19.569 0.405 -1.482 0 0 0 0 0 0 0 +19.618 0.468 -1.486 0 0 0 0 0 0 0 +19.616 0.53 -1.486 0 0 0 0 0 0 0 +19.645 0.561 -1.489 0 0 0 0 0 0 0 +13.89 0.433 -0.994 0 0 0 0 0 0 0 +13.659 0.468 -0.974 0 0 0 0 0 0 0 +13.845 0.519 -0.99 0 0 0 0 0 0 0 +14.064 0.571 -1.009 0 0 0 0 0 0 0 +19.712 0.873 -1.495 0 0 0 0 0 0 0 +19.727 0.936 -1.497 0 0 0 0 0 0 0 +14.501 0.75 -1.047 0 0 0 0 0 0 0 +14.313 0.785 -1.031 0 0 0 0 0 0 0 +14.371 0.833 -1.036 0 0 0 0 0 0 0 +14.37 0.879 -1.037 0 0 0 0 0 0 0 +14.572 0.937 -1.054 0 0 0 0 0 0 0 +14.559 0.982 -1.053 0 0 0 0 0 0 0 +19.731 1.403 -1.499 0 0 0 0 0 0 0 +15.059 1.136 -1.097 0 0 0 0 0 0 0 +19.845 1.568 -1.51 0 0 0 0 0 0 0 +19.881 1.634 -1.514 0 0 0 0 0 0 0 +19.906 1.699 -1.516 0 0 0 0 0 0 0 +15.052 1.326 -1.098 0 0 0 0 0 0 0 +15.369 1.403 -1.126 0 0 0 0 0 0 0 +14.724 1.366 -1.07 0 0 0 0 0 0 0 +16.09 1.547 -1.189 0 0 0 0 0 0 0 +15.897 1.578 -1.172 0 0 0 0 0 0 0 +15.537 1.591 -1.142 0 0 0 0 0 0 0 +19.932 2.112 -1.522 0 0 0 0 0 0 0 +19.943 2.176 -1.524 0 0 0 0 0 0 0 +19.891 2.234 -1.52 0 0 0 0 0 0 0 +19.883 2.265 -1.519 0 0 0 0 0 0 0 +19.916 2.332 -1.523 0 0 0 0 0 0 0 +19.958 2.4 -1.527 0 0 0 0 0 0 0 +19.94 2.462 -1.526 0 0 0 0 0 0 0 +19.998 2.533 -1.532 0 0 0 0 0 0 0 +19.988 2.595 -1.532 0 0 0 0 0 0 0 +16.31 2.165 -1.213 0 0 0 0 0 0 0 +20.064 2.702 -1.539 0 0 0 0 0 0 0 +20.067 2.766 -1.54 0 0 0 0 0 0 0 +20.047 2.828 -1.539 0 0 0 0 0 0 0 +20.069 2.895 -1.542 0 0 0 0 0 0 0 +20.155 2.972 -1.55 0 0 0 0 0 0 0 +20.155 3.037 -1.551 0 0 0 0 0 0 0 +20.189 3.107 -1.555 0 0 0 0 0 0 0 +20.217 3.144 -1.558 0 0 0 0 0 0 0 +20.241 3.213 -1.561 0 0 0 0 0 0 0 +20.248 3.279 -1.562 0 0 0 0 0 0 0 +20.273 3.349 -1.565 0 0 0 0 0 0 0 +20.286 3.417 -1.567 0 0 0 0 0 0 0 +20.295 3.484 -1.569 0 0 0 0 0 0 0 +20.282 3.547 -1.569 0 0 0 0 0 0 0 +20.308 3.585 -1.572 0 0 0 0 0 0 0 +20.308 3.65 -1.573 0 0 0 0 0 0 0 +20.326 3.72 -1.575 0 0 0 0 0 0 0 +20.346 3.789 -1.578 0 0 0 0 0 0 0 +20.341 3.855 -1.579 0 0 0 0 0 0 0 +20.351 3.923 -1.581 0 0 0 0 0 0 0 +18.745 3.672 -1.441 0 0 0 0 0 0 0 +18.743 3.703 -1.441 0 0 0 0 0 0 0 +20.358 4.09 -1.584 0 0 0 0 0 0 0 +20.384 4.162 -1.588 0 0 0 0 0 0 0 +20.436 4.24 -1.593 0 0 0 0 0 0 0 +20.442 4.308 -1.595 0 0 0 0 0 0 0 +20.455 4.378 -1.597 0 0 0 0 0 0 0 +20.463 4.447 -1.599 0 0 0 0 0 0 0 +20.452 4.478 -1.599 0 0 0 0 0 0 0 +18.882 4.195 -1.462 0 0 0 0 0 0 0 +20.492 4.622 -1.605 0 0 0 0 0 0 0 +20.494 4.691 -1.606 0 0 0 0 0 0 0 +20.427 4.743 -1.602 0 0 0 0 0 0 0 +20.472 4.821 -1.607 0 0 0 0 0 0 0 +20.411 4.874 -1.603 0 0 0 0 0 0 0 +20.434 4.914 -1.606 0 0 0 0 0 0 0 +20.416 4.978 -1.606 0 0 0 0 0 0 0 +20.221 4.997 -1.59 0 0 0 0 0 0 0 +20.458 5.124 -1.612 0 0 0 0 0 0 0 +20.39 5.175 -1.607 0 0 0 0 0 0 0 +20.667 5.315 -1.633 0 0 0 0 0 0 0 +20.731 5.401 -1.641 0 0 0 0 0 0 0 +20.763 5.444 -1.644 0 0 0 0 0 0 0 +20.89 5.548 -1.657 0 0 0 0 0 0 0 +20.863 5.611 -1.656 0 0 0 0 0 0 0 +20.903 5.692 -1.661 0 0 0 0 0 0 0 +20.837 5.745 -1.657 0 0 0 0 0 0 0 +16.068 4.478 -1.233 0 0 0 0 0 0 0 +16.004 4.514 -1.228 0 0 0 0 0 0 0 +15.978 4.534 -1.227 0 0 0 0 0 0 0 +15.96 4.583 -1.226 0 0 0 0 0 0 0 +15.92 4.626 -1.224 0 0 0 0 0 0 0 +15.919 4.68 -1.225 0 0 0 0 0 0 0 +15.866 4.719 -1.222 0 0 0 0 0 0 0 +15.857 4.77 -1.222 0 0 0 0 0 0 0 +15.819 4.813 -1.22 0 0 0 0 0 0 0 +15.785 4.857 -1.219 0 0 0 0 0 0 0 +15.783 4.883 -1.219 0 0 0 0 0 0 0 +15.75 4.927 -1.218 0 0 0 0 0 0 0 +15.74 4.979 -1.218 0 0 0 0 0 0 0 +15.708 5.023 -1.217 0 0 0 0 0 0 0 +15.684 5.069 -1.216 0 0 0 0 0 0 0 +15.666 5.118 -1.216 0 0 0 0 0 0 0 +15.656 5.142 -1.216 0 0 0 0 0 0 0 +15.614 5.182 -1.213 0 0 0 0 0 0 0 +15.605 5.234 -1.214 0 0 0 0 0 0 0 +15.571 5.277 -1.212 0 0 0 0 0 0 0 +15.555 5.326 -1.212 0 0 0 0 0 0 0 +15.532 5.373 -1.212 0 0 0 0 0 0 0 +15.511 5.42 -1.212 0 0 0 0 0 0 0 +15.499 5.443 -1.211 0 0 0 0 0 0 0 +15.48 5.491 -1.211 0 0 0 0 0 0 0 +15.468 5.542 -1.212 0 0 0 0 0 0 0 +15.445 5.589 -1.211 0 0 0 0 0 0 0 +15.439 5.641 -1.212 0 0 0 0 0 0 0 +15.406 5.684 -1.211 0 0 0 0 0 0 0 +15.407 5.739 -1.212 0 0 0 0 0 0 0 +15.39 5.761 -1.212 0 0 0 0 0 0 0 +15.385 5.814 -1.213 0 0 0 0 0 0 0 +15.361 5.86 -1.212 0 0 0 0 0 0 0 +15.373 5.92 -1.215 0 0 0 0 0 0 0 +15.564 6.05 -1.234 0 0 0 0 0 0 0 +16.093 6.315 -1.285 0 0 0 0 0 0 0 +18.543 7.348 -1.514 0 0 0 0 0 0 0 +18.524 7.408 -1.514 0 0 0 0 0 0 0 +18.507 7.435 -1.514 0 0 0 0 0 0 0 +19.914 8.075 -1.646 0 0 0 0 0 0 0 +19.888 8.138 -1.646 0 0 0 0 0 0 0 +19.861 8.199 -1.646 0 0 0 0 0 0 0 +19.84 8.264 -1.647 0 0 0 0 0 0 0 +19.823 8.33 -1.648 0 0 0 0 0 0 0 +19.793 8.391 -1.647 0 0 0 0 0 0 0 +19.78 8.422 -1.647 0 0 0 0 0 0 0 +19.759 8.486 -1.648 0 0 0 0 0 0 0 +19.738 8.551 -1.648 0 0 0 0 0 0 0 +19.711 8.613 -1.648 0 0 0 0 0 0 0 +19.691 8.678 -1.649 0 0 0 0 0 0 0 +19.673 8.744 -1.65 0 0 0 0 0 0 0 +19.674 8.781 -1.651 0 0 0 0 0 0 0 +19.64 8.84 -1.651 0 0 0 0 0 0 0 +19.616 8.904 -1.651 0 0 0 0 0 0 0 +19.594 8.968 -1.651 0 0 0 0 0 0 0 +19.567 9.03 -1.652 0 0 0 0 0 0 0 +19.546 9.095 -1.652 0 0 0 0 0 0 0 +19.508 9.152 -1.651 0 0 0 0 0 0 0 +19.499 9.185 -1.652 0 0 0 0 0 0 0 +19.477 9.25 -1.653 0 0 0 0 0 0 0 +19.463 9.318 -1.654 0 0 0 0 0 0 0 +19.432 9.378 -1.654 0 0 0 0 0 0 0 +19.413 9.444 -1.655 0 0 0 0 0 0 0 +19.381 9.505 -1.655 0 0 0 0 0 0 0 +19.365 9.572 -1.656 0 0 0 0 0 0 0 +19.347 9.601 -1.656 0 0 0 0 0 0 0 +19.338 9.673 -1.658 0 0 0 0 0 0 0 +19.331 9.745 -1.66 0 0 0 0 0 0 0 +19.298 9.805 -1.66 0 0 0 0 0 0 0 +19.265 9.864 -1.66 0 0 0 0 0 0 0 +19.259 9.938 -1.662 0 0 0 0 0 0 0 +19.223 9.995 -1.662 0 0 0 0 0 0 0 +19.239 10.042 -1.665 0 0 0 0 0 0 0 +19.212 10.105 -1.665 0 0 0 0 0 0 0 +19.212 10.182 -1.668 0 0 0 0 0 0 0 +19.191 10.248 -1.669 0 0 0 0 0 0 0 +19.172 10.316 -1.671 0 0 0 0 0 0 0 +19.149 10.381 -1.671 0 0 0 0 0 0 0 +19.137 10.453 -1.674 0 0 0 0 0 0 0 +19.126 10.486 -1.674 0 0 0 0 0 0 0 +19.126 10.564 -1.677 0 0 0 0 0 0 0 +19.099 10.628 -1.678 0 0 0 0 0 0 0 +19.085 10.699 -1.68 0 0 0 0 0 0 0 +19.065 10.766 -1.681 0 0 0 0 0 0 0 +19.043 10.833 -1.682 0 0 0 0 0 0 0 +19.013 10.895 -1.683 0 0 0 0 0 0 0 +18.999 10.967 -1.685 0 0 0 0 0 0 0 +18.997 11.005 -1.686 0 0 0 0 0 0 0 +18.983 11.077 -1.688 0 0 0 0 0 0 0 +18.943 11.134 -1.688 0 0 0 0 0 0 0 +18.932 11.207 -1.69 0 0 0 0 0 0 0 +18.917 11.279 -1.692 0 0 0 0 0 0 0 +18.894 11.346 -1.694 0 0 0 0 0 0 0 +18.875 11.415 -1.695 0 0 0 0 0 0 0 +18.888 11.464 -1.698 0 0 0 0 0 0 0 +18.857 11.526 -1.699 0 0 0 0 0 0 0 +18.837 11.596 -1.701 0 0 0 0 0 0 0 +18.826 11.671 -1.703 0 0 0 0 0 0 0 +18.8 11.736 -1.704 0 0 0 0 0 0 0 +18.769 11.799 -1.705 0 0 0 0 0 0 0 +18.786 11.851 -1.708 0 0 0 0 0 0 0 +18.774 11.926 -1.711 0 0 0 0 0 0 0 +12.812 8.186 -1.106 0 0 0 0 0 0 0 +13.908 8.95 -1.221 0 0 0 0 0 0 0 +13.791 8.936 -1.212 0 0 0 0 0 0 0 +13.131 8.566 -1.147 0 0 0 0 0 0 0 +13.101 8.605 -1.146 0 0 0 0 0 0 0 +13.347 8.797 -1.173 0 0 0 0 0 0 0 +13.16 8.733 -1.157 0 0 0 0 0 0 0 +13.44 8.98 -1.189 0 0 0 0 0 0 0 +11.795 7.931 -1.021 0 0 0 0 0 0 0 +14.432 9.777 -1.298 0 0 0 0 0 0 0 +14.345 9.784 -1.292 0 0 0 0 0 0 0 +13.106 8.997 -1.166 0 0 0 0 0 0 0 +11.579 7.972 -1.007 0 0 0 0 0 0 0 +11.533 7.993 -1.005 0 0 0 0 0 0 0 +11.41 7.961 -0.995 0 0 0 0 0 0 0 +12.723 8.941 -1.136 0 0 0 0 0 0 0 +11.545 8.164 -1.014 0 0 0 0 0 0 0 +11.465 8.162 -1.009 0 0 0 0 0 0 0 +12.567 9.009 -1.128 0 0 0 0 0 0 0 +11.264 8.125 -0.993 0 0 0 0 0 0 0 +11.612 8.405 -1.031 0 0 0 0 0 0 0 +12.171 8.87 -1.094 0 0 0 0 0 0 0 +11.996 8.799 -1.078 0 0 0 0 0 0 0 +11.757 8.68 -1.055 0 0 0 0 0 0 0 +11.732 8.72 -1.056 0 0 0 0 0 0 0 +11.96 8.948 -1.083 0 0 0 0 0 0 0 +11.944 8.995 -1.084 0 0 0 0 0 0 0 +11.991 9.06 -1.091 0 0 0 0 0 0 0 +11.799 8.973 -1.073 0 0 0 0 0 0 0 +11.93 9.132 -1.091 0 0 0 0 0 0 0 +12.039 9.276 -1.105 0 0 0 0 0 0 0 +11.821 9.167 -1.085 0 0 0 0 0 0 0 +11.794 9.205 -1.085 0 0 0 0 0 0 0 +11.926 9.369 -1.103 0 0 0 0 0 0 0 +11.65 9.181 -1.074 0 0 0 0 0 0 0 +11.839 9.392 -1.098 0 0 0 0 0 0 0 +11.69 9.333 -1.085 0 0 0 0 0 0 0 +11.713 9.412 -1.091 0 0 0 0 0 0 0 +11.396 9.215 -1.059 0 0 0 0 0 0 0 +11.203 9.118 -1.041 0 0 0 0 0 0 0 +6.791 5.549 -0.553 0 0 0 0 0 0 0 +6.684 5.478 -0.542 0 0 0 0 0 0 0 +6.656 5.49 -0.541 0 0 0 0 0 0 0 +6.638 5.511 -0.541 0 0 0 0 0 0 0 +6.618 5.53 -0.54 0 0 0 0 0 0 0 +11.184 9.428 -1.056 0 0 0 0 0 0 0 +11.144 9.454 -1.055 0 0 0 0 0 0 0 +11.175 9.541 -1.062 0 0 0 0 0 0 0 +11.477 9.831 -1.098 0 0 0 0 0 0 0 +11.075 9.547 -1.056 0 0 0 0 0 0 0 +11.071 9.604 -1.059 0 0 0 0 0 0 0 +11.22 9.796 -1.079 0 0 0 0 0 0 0 +11.169 9.813 -1.077 0 0 0 0 0 0 0 +11.118 9.831 -1.075 0 0 0 0 0 0 0 +11.074 9.853 -1.073 0 0 0 0 0 0 0 +11.06 9.872 -1.073 0 0 0 0 0 0 0 +10.999 9.88 -1.07 0 0 0 0 0 0 0 +11.134 10.065 -1.089 0 0 0 0 0 0 0 +10.978 9.987 -1.075 0 0 0 0 0 0 0 +11 10.07 -1.081 0 0 0 0 0 0 0 +10.951 10.088 -1.079 0 0 0 0 0 0 0 +10.9 10.105 -1.077 0 0 0 0 0 0 0 +10.901 10.138 -1.079 0 0 0 0 0 0 0 +11.051 10.343 -1.1 0 0 0 0 0 0 0 +11.049 10.406 -1.104 0 0 0 0 0 0 0 +11.002 10.427 -1.102 0 0 0 0 0 0 0 +11.987 11.436 -1.223 0 0 0 0 0 0 0 +11.984 11.505 -1.227 0 0 0 0 0 0 0 +11.909 11.505 -1.222 0 0 0 0 0 0 0 +11.812 11.448 -1.213 0 0 0 0 0 0 0 +11.865 11.571 -1.224 0 0 0 0 0 0 0 +11.814 11.594 -1.222 0 0 0 0 0 0 0 +11.814 11.668 -1.226 0 0 0 0 0 0 0 +11.778 11.705 -1.226 0 0 0 0 0 0 0 +11.369 11.369 -1.181 0 0 0 0 0 0 0 +11.701 11.776 -1.226 0 0 0 0 0 0 0 +11.629 11.74 -1.22 0 0 0 0 0 0 0 +11.359 11.539 -1.191 0 0 0 0 0 0 0 +11.436 11.69 -1.205 0 0 0 0 0 0 0 +11.453 11.782 -1.212 0 0 0 0 0 0 0 +11.257 11.653 -1.192 0 0 0 0 0 0 0 +11.211 11.678 -1.191 0 0 0 0 0 0 0 +11.186 11.726 -1.192 0 0 0 0 0 0 0 +11.162 11.738 -1.191 0 0 0 0 0 0 0 +11.333 11.994 -1.218 0 0 0 0 0 0 0 +11.35 12.087 -1.224 0 0 0 0 0 0 0 +11.304 12.114 -1.223 0 0 0 0 0 0 0 +10.991 11.853 -1.189 0 0 0 0 0 0 0 +11.044 11.985 -1.2 0 0 0 0 0 0 0 +10.891 11.893 -1.185 0 0 0 0 0 0 0 +11.077 12.174 -1.214 0 0 0 0 0 0 0 +11.086 12.222 -1.218 0 0 0 0 0 0 0 +11.007 12.213 -1.212 0 0 0 0 0 0 0 +11.144 12.443 -1.235 0 0 0 0 0 0 0 +11.239 12.629 -1.252 0 0 0 0 0 0 0 +11.209 12.676 -1.254 0 0 0 0 0 0 0 +11.201 12.747 -1.258 0 0 0 0 0 0 0 +11.137 12.755 -1.255 0 0 0 0 0 0 0 +11.083 12.734 -1.25 0 0 0 0 0 0 0 +11.089 12.821 -1.256 0 0 0 0 0 0 0 +11.284 13.132 -1.287 0 0 0 0 0 0 0 +11.151 13.059 -1.275 0 0 0 0 0 0 0 +11.553 13.617 -1.334 0 0 0 0 0 0 0 +11.783 13.979 -1.371 0 0 0 0 0 0 0 +11.885 14.145 -1.387 0 0 0 0 0 0 0 +11.925 14.284 -1.399 0 0 0 0 0 0 0 +11.808 14.233 -1.389 0 0 0 0 0 0 0 +11.567 14.032 -1.362 0 0 0 0 0 0 0 +11.534 14.082 -1.364 0 0 0 0 0 0 0 +11.551 14.194 -1.372 0 0 0 0 0 0 0 +11.465 14.179 -1.367 0 0 0 0 0 0 0 +11.562 14.345 -1.383 0 0 0 0 0 0 0 +11.398 14.233 -1.367 0 0 0 0 0 0 0 +11.801 14.832 -1.428 0 0 0 0 0 0 0 +11.801 14.929 -1.435 0 0 0 0 0 0 0 +11.221 14.285 -1.361 0 0 0 0 0 0 0 +11.74 15.045 -1.44 0 0 0 0 0 0 0 +11.751 15.157 -1.448 0 0 0 0 0 0 0 +11.705 15.196 -1.448 0 0 0 0 0 0 0 +11.711 15.254 -1.452 0 0 0 0 0 0 0 +11.682 15.316 -1.455 0 0 0 0 0 0 0 +12.373 16.33 -1.56 0 0 0 0 0 0 0 +12.428 16.511 -1.576 0 0 0 0 0 0 0 +12.432 16.625 -1.584 0 0 0 0 0 0 0 +12.405 16.697 -1.587 0 0 0 0 0 0 0 +12.348 16.73 -1.587 0 0 0 0 0 0 0 +12.383 16.833 -1.595 0 0 0 0 0 0 0 +12.251 16.764 -1.584 0 0 0 0 0 0 0 +12.171 16.765 -1.58 0 0 0 0 0 0 0 +12.201 16.918 -1.592 0 0 0 0 0 0 0 +12.11 16.903 -1.587 0 0 0 0 0 0 0 +12.072 16.962 -1.589 0 0 0 0 0 0 0 +12.119 17.143 -1.604 0 0 0 0 0 0 0 +12.044 17.15 -1.601 0 0 0 0 0 0 0 +12.001 17.146 -1.598 0 0 0 0 0 0 0 +11.928 17.156 -1.595 0 0 0 0 0 0 0 +11.903 17.236 -1.6 0 0 0 0 0 0 0 +11.863 17.295 -1.602 0 0 0 0 0 0 0 +11.915 17.488 -1.618 0 0 0 0 0 0 0 +11.894 17.575 -1.623 0 0 0 0 0 0 0 +11.894 17.635 -1.628 0 0 0 0 0 0 0 +11.863 17.709 -1.631 0 0 0 0 0 0 0 +11.801 17.736 -1.63 0 0 0 0 0 0 0 +11.801 17.858 -1.639 0 0 0 0 0 0 0 +11.752 17.907 -1.64 0 0 0 0 0 0 0 +11.671 17.905 -1.636 0 0 0 0 0 0 0 +11.583 17.893 -1.631 0 0 0 0 0 0 0 +11.603 18.049 -1.644 0 0 0 0 0 0 0 +11.591 18.092 -1.646 0 0 0 0 0 0 0 +11.534 18.128 -1.646 0 0 0 0 0 0 0 +11.497 18.196 -1.649 0 0 0 0 0 0 0 +11.453 18.253 -1.651 0 0 0 0 0 0 0 +11.408 18.309 -1.653 0 0 0 0 0 0 0 +11.358 18.357 -1.655 0 0 0 0 0 0 0 +11.311 18.409 -1.656 0 0 0 0 0 0 0 +11.281 18.425 -1.656 0 0 0 0 0 0 0 +11.197 18.418 -1.652 0 0 0 0 0 0 0 +11.189 18.537 -1.66 0 0 0 0 0 0 0 +11.125 18.561 -1.659 0 0 0 0 0 0 0 +11.102 18.656 -1.665 0 0 0 0 0 0 0 +11.051 18.703 -1.667 0 0 0 0 0 0 0 +10.995 18.743 -1.667 0 0 0 0 0 0 0 +10.986 18.796 -1.671 0 0 0 0 0 0 0 +10.941 18.855 -1.673 0 0 0 0 0 0 0 +10.893 18.908 -1.675 0 0 0 0 0 0 0 +10.858 18.986 -1.679 0 0 0 0 0 0 0 +10.799 19.021 -1.679 0 0 0 0 0 0 0 +10.747 19.069 -1.681 0 0 0 0 0 0 0 +10.707 19.137 -1.684 0 0 0 0 0 0 0 +10.648 19.102 -1.679 0 0 0 0 0 0 0 +10.613 19.181 -1.683 0 0 0 0 0 0 0 +10.488 19.097 -1.672 0 0 0 0 0 0 0 +10.531 19.319 -1.691 0 0 0 0 0 0 0 +10.487 19.383 -1.694 0 0 0 0 0 0 0 +10.452 19.464 -1.698 0 0 0 0 0 0 0 +10.405 19.523 -1.701 0 0 0 0 0 0 0 +10.401 19.59 -1.706 0 0 0 0 0 0 0 +10.344 19.632 -1.707 0 0 0 0 0 0 0 +10.296 19.69 -1.709 0 0 0 0 0 0 0 +10.252 19.756 -1.712 0 0 0 0 0 0 0 +10.201 19.812 -1.715 0 0 0 0 0 0 0 +10.151 19.867 -1.717 0 0 0 0 0 0 0 +10.086 19.893 -1.716 0 0 0 0 0 0 0 +10.036 19.951 -1.719 0 0 0 0 0 0 0 +10.026 20.01 -1.723 0 0 0 0 0 0 0 +9.976 20.066 -1.725 0 0 0 0 0 0 0 +9.913 20.097 -1.725 0 0 0 0 0 0 0 +9.85 20.13 -1.726 0 0 0 0 0 0 0 +9.787 20.161 -1.726 0 0 0 0 0 0 0 +9.721 20.186 -1.725 0 0 0 0 0 0 0 +9.647 20.195 -1.723 0 0 0 0 0 0 0 +9.61 20.198 -1.722 0 0 0 0 0 0 0 +9.556 20.25 -1.724 0 0 0 0 0 0 0 +9.505 20.307 -1.726 0 0 0 0 0 0 0 +9.444 20.342 -1.727 0 0 0 0 0 0 0 +9.375 20.36 -1.726 0 0 0 0 0 0 0 +9.309 20.384 -1.725 0 0 0 0 0 0 0 +9.254 20.435 -1.728 0 0 0 0 0 0 0 +9.235 20.477 -1.73 0 0 0 0 0 0 0 +9.179 20.526 -1.732 0 0 0 0 0 0 0 +9.119 20.564 -1.733 0 0 0 0 0 0 0 +9.067 20.622 -1.736 0 0 0 0 0 0 0 +8.999 20.643 -1.735 0 0 0 0 0 0 0 +8.94 20.685 -1.736 0 0 0 0 0 0 0 +8.877 20.719 -1.737 0 0 0 0 0 0 0 +8.854 20.753 -1.739 0 0 0 0 0 0 0 +8.794 20.794 -1.74 0 0 0 0 0 0 0 +8.739 20.847 -1.742 0 0 0 0 0 0 0 +8.682 20.894 -1.744 0 0 0 0 0 0 0 +8.62 20.931 -1.745 0 0 0 0 0 0 0 +8.565 20.985 -1.748 0 0 0 0 0 0 0 +8.505 21.027 -1.749 0 0 0 0 0 0 0 +8.475 21.048 -1.75 0 0 0 0 0 0 0 +8.426 21.117 -1.754 0 0 0 0 0 0 0 +8.363 21.153 -1.754 0 0 0 0 0 0 0 +8.312 21.218 -1.758 0 0 0 0 0 0 0 +8.26 21.281 -1.761 0 0 0 0 0 0 0 +8.197 21.316 -1.762 0 0 0 0 0 0 0 +8.131 21.345 -1.763 0 0 0 0 0 0 0 +8.07 21.388 -1.764 0 0 0 0 0 0 0 +8.037 21.402 -1.764 0 0 0 0 0 0 0 +7.978 21.45 -1.766 0 0 0 0 0 0 0 +7.917 21.492 -1.768 0 0 0 0 0 0 0 +7.856 21.535 -1.77 0 0 0 0 0 0 0 +7.847 21.723 -1.785 0 0 0 0 0 0 0 +7.862 21.98 -1.806 0 0 0 0 0 0 0 +7.892 22.286 -1.831 0 0 0 0 0 0 0 +7.957 22.583 -1.857 0 0 0 0 0 0 0 +7.987 22.899 -1.884 0 0 0 0 0 0 0 +8 23.171 -1.906 0 0 0 0 0 0 0 +7.944 23.245 -1.911 0 0 0 0 0 0 0 +7.866 23.255 -1.909 0 0 0 0 0 0 0 +7.775 23.225 -1.904 0 0 0 0 0 0 0 +7.688 23.207 -1.901 0 0 0 0 0 0 0 +7.657 23.236 -1.902 0 0 0 0 0 0 0 +7.587 23.268 -1.903 0 0 0 0 0 0 0 +7.524 23.324 -1.906 0 0 0 0 0 0 0 +7.455 23.361 -1.907 0 0 0 0 0 0 0 +7.368 23.34 -1.903 0 0 0 0 0 0 0 +7.278 23.31 -1.898 0 0 0 0 0 0 0 +7.187 23.278 -1.893 0 0 0 0 0 0 0 +7.14 23.253 -1.89 0 0 0 0 0 0 0 +7.059 23.25 -1.888 0 0 0 0 0 0 0 +6.978 23.246 -1.885 0 0 0 0 0 0 0 +6.898 23.244 -1.883 0 0 0 0 0 0 0 +6.813 23.226 -1.88 0 0 0 0 0 0 0 +6.733 23.222 -1.878 0 0 0 0 0 0 0 +6.654 23.222 -1.876 0 0 0 0 0 0 0 +6.573 23.212 -1.873 0 0 0 0 0 0 0 +6.536 23.221 -1.873 0 0 0 0 0 0 0 +6.452 23.205 -1.87 0 0 0 0 0 0 0 +6.376 23.211 -1.868 0 0 0 0 0 0 0 +6.297 23.21 -1.866 0 0 0 0 0 0 0 +6.22 23.214 -1.865 0 0 0 0 0 0 0 +6.137 23.195 -1.862 0 0 0 0 0 0 0 +6.057 23.185 -1.859 0 0 0 0 0 0 0 +6.028 23.224 -1.862 0 0 0 0 0 0 0 +5.96 23.264 -1.864 0 0 0 0 0 0 0 +5.894 23.312 -1.866 0 0 0 0 0 0 0 +5.815 23.305 -1.864 0 0 0 0 0 0 0 +5.742 23.327 -1.864 0 0 0 0 0 0 0 +2.294 9.382 -0.629 0 0 0 0 0 0 0 +2.264 9.385 -0.629 0 0 0 0 0 0 0 +2.45 10.381 -0.716 0 0 0 0 0 0 0 +2.414 10.375 -0.715 0 0 0 0 0 0 0 +2.494 10.88 -0.759 0 0 0 0 0 0 0 +2.47 10.931 -0.762 0 0 0 0 0 0 0 +2.566 11.708 -0.829 0 0 0 0 0 0 0 +2.694 12.392 -0.889 0 0 0 0 0 0 0 +2.669 12.468 -0.895 0 0 0 0 0 0 0 +2.775 13.171 -0.956 0 0 0 0 0 0 0 +2.62 12.831 -0.925 0 0 0 0 0 0 0 +2.593 12.903 -0.93 0 0 0 0 0 0 0 +2.54 12.851 -0.925 0 0 0 0 0 0 0 +3.098 15.968 -1.197 0 0 0 0 0 0 0 +3.187 16.574 -1.25 0 0 0 0 0 0 0 +3.4 18.312 -1.4 0 0 0 0 0 0 0 +3.43 18.805 -1.442 0 0 0 0 0 0 0 +3.505 19.573 -1.508 0 0 0 0 0 0 0 +3.685 20.966 -1.629 0 0 0 0 0 0 0 +0.599 3.443 -0.099 0 0 0 0 0 0 0 +3.639 21.093 -1.639 0 0 0 0 0 0 0 +3.633 21.26 -1.653 0 0 0 0 0 0 0 +0.592 3.467 -0.101 0 0 0 0 0 0 0 +0.586 3.496 -0.104 0 0 0 0 0 0 0 +0.579 3.525 -0.106 0 0 0 0 0 0 0 +0.568 3.529 -0.106 0 0 0 0 0 0 0 +0.551 3.49 -0.103 0 0 0 0 0 0 0 +0.545 3.49 -0.103 0 0 0 0 0 0 0 +0.535 3.496 -0.103 0 0 0 0 0 0 0 +0.524 3.498 -0.103 0 0 0 0 0 0 0 +0.513 3.497 -0.103 0 0 0 0 0 0 0 +0.503 3.507 -0.103 0 0 0 0 0 0 0 +0.488 3.479 -0.101 0 0 0 0 0 0 0 +0.488 3.563 -0.108 0 0 0 0 0 0 0 +2.751 21.31 -1.646 0 0 0 0 0 0 0 +2.686 21.334 -1.648 0 0 0 0 0 0 0 +2.622 21.36 -1.649 0 0 0 0 0 0 0 +2.553 21.358 -1.648 0 0 0 0 0 0 0 +2.488 21.386 -1.65 0 0 0 0 0 0 0 +2.421 21.394 -1.65 0 0 0 0 0 0 0 +2.356 21.423 -1.652 0 0 0 0 0 0 0 +2.324 21.441 -1.653 0 0 0 0 0 0 0 +0.348 3.295 -0.084 0 0 0 0 0 0 0 +2.26 21.474 -1.655 0 0 0 0 0 0 0 +0.337 3.29 -0.083 0 0 0 0 0 0 0 +2.225 21.806 -1.683 0 0 0 0 0 0 0 +0.328 3.301 -0.084 0 0 0 0 0 0 0 +0.317 3.298 -0.084 0 0 0 0 0 0 0 +0.306 3.299 -0.084 0 0 0 0 0 0 0 +0.302 3.312 -0.085 0 0 0 0 0 0 0 +0.291 3.303 -0.084 0 0 0 0 0 0 0 +0.281 3.304 -0.084 0 0 0 0 0 0 0 +0.271 3.318 -0.085 0 0 0 0 0 0 0 +0.26 3.309 -0.084 0 0 0 0 0 0 0 +0.25 3.308 -0.084 0 0 0 0 0 0 0 +0.24 3.327 -0.086 0 0 0 0 0 0 0 +0.235 3.317 -0.085 0 0 0 0 0 0 0 +0.224 3.316 -0.085 0 0 0 0 0 0 0 +0.214 3.327 -0.085 0 0 0 0 0 0 0 +0.203 3.317 -0.085 0 0 0 0 0 0 0 +0.194 3.338 -0.086 0 0 0 0 0 0 0 +1.061 23.527 -1.824 0 0 0 0 0 0 0 +1.024 23.547 -1.825 0 0 0 0 0 0 0 +0.95 23.55 -1.825 0 0 0 0 0 0 0 +0.876 23.549 -1.825 0 0 0 0 0 0 0 +0.803 23.571 -1.827 0 0 0 0 0 0 0 +0.729 23.59 -1.828 0 0 0 0 0 0 0 +0.655 23.59 -1.828 0 0 0 0 0 0 0 +0.581 23.594 -1.828 0 0 0 0 0 0 0 +0.507 23.599 -1.828 0 0 0 0 0 0 0 +0.47 23.576 -1.826 0 0 0 0 0 0 0 +0.396 23.593 -1.828 0 0 0 0 0 0 0 +0.321 23.589 -1.827 0 0 0 0 0 0 0 +0.247 23.584 -1.827 0 0 0 0 0 0 0 +0.174 23.642 -1.831 0 0 0 0 0 0 0 +0.1 23.868 -1.851 0 0 0 0 0 0 0 +0.025 23.736 -1.84 0 0 0 0 0 0 0 +-0.012 23.692 -1.836 0 0 0 0 0 0 0 +-0.086 23.613 -1.829 0 0 0 0 0 0 0 +-0.16 23.584 -1.827 0 0 0 0 0 0 0 +-0.234 23.594 -1.827 0 0 0 0 0 0 0 +-0.308 23.581 -1.826 0 0 0 0 0 0 0 +-0.382 23.58 -1.826 0 0 0 0 0 0 0 +-0.457 23.584 -1.827 0 0 0 0 0 0 0 +-0.494 23.578 -1.826 0 0 0 0 0 0 0 +-0.568 23.586 -1.827 0 0 0 0 0 0 0 +-0.643 23.608 -1.829 0 0 0 0 0 0 0 +-0.716 23.596 -1.828 0 0 0 0 0 0 0 +-0.791 23.598 -1.829 0 0 0 0 0 0 0 +-0.865 23.597 -1.829 0 0 0 0 0 0 0 +-0.939 23.584 -1.828 0 0 0 0 0 0 0 +-0.976 23.585 -1.828 0 0 0 0 0 0 0 +-1.051 23.595 -1.829 0 0 0 0 0 0 0 +-1.125 23.594 -1.83 0 0 0 0 0 0 0 +-1.199 23.6 -1.83 0 0 0 0 0 0 0 +-1.275 23.62 -1.833 0 0 0 0 0 0 0 +-1.348 23.606 -1.832 0 0 0 0 0 0 0 +-1.423 23.61 -1.832 0 0 0 0 0 0 0 +-1.354 21.925 -1.687 0 0 0 0 0 0 0 +-1.423 20.009 -1.523 0 0 0 0 0 0 0 +-1.485 19.997 -1.523 0 0 0 0 0 0 0 +-1.497 19.34 -1.467 0 0 0 0 0 0 0 +-1.534 19.054 -1.442 0 0 0 0 0 0 0 +-1.543 18.793 -1.42 0 0 0 0 0 0 0 +-1.579 18.52 -1.397 0 0 0 0 0 0 0 +-1.615 18.269 -1.376 0 0 0 0 0 0 0 +-1.648 18.004 -1.353 0 0 0 0 0 0 0 +-1.684 17.782 -1.335 0 0 0 0 0 0 0 +-1.715 17.533 -1.313 0 0 0 0 0 0 0 +-1.747 17.298 -1.294 0 0 0 0 0 0 0 +-1.778 17.074 -1.275 0 0 0 0 0 0 0 +-1.781 16.846 -1.255 0 0 0 0 0 0 0 +-1.81 16.628 -1.237 0 0 0 0 0 0 0 +-1.838 16.41 -1.219 0 0 0 0 0 0 0 +-1.867 16.21 -1.202 0 0 0 0 0 0 0 +-1.894 16.007 -1.185 0 0 0 0 0 0 0 +-1.922 15.813 -1.168 0 0 0 0 0 0 0 +-1.948 15.623 -1.152 0 0 0 0 0 0 0 +-1.949 15.432 -1.136 0 0 0 0 0 0 0 +-1.974 15.25 -1.121 0 0 0 0 0 0 0 +-2 15.084 -1.107 0 0 0 0 0 0 0 +-2.023 14.898 -1.091 0 0 0 0 0 0 0 +-2.049 14.743 -1.079 0 0 0 0 0 0 0 +-2.068 14.549 -1.062 0 0 0 0 0 0 0 +-2.092 14.391 -1.049 0 0 0 0 0 0 0 +-2.094 14.25 -1.037 0 0 0 0 0 0 0 +-2.115 14.085 -1.023 0 0 0 0 0 0 0 +-2.133 13.915 -1.009 0 0 0 0 0 0 0 +-2.156 13.775 -0.998 0 0 0 0 0 0 0 +-2.175 13.616 -0.984 0 0 0 0 0 0 0 +-2.194 13.466 -0.972 0 0 0 0 0 0 0 +-2.216 13.341 -0.962 0 0 0 0 0 0 0 +-2.215 13.204 -0.95 0 0 0 0 0 0 0 +-2.234 13.067 -0.939 0 0 0 0 0 0 0 +-2.255 12.947 -0.929 0 0 0 0 0 0 0 +-2.271 12.802 -0.917 0 0 0 0 0 0 0 +-2.289 12.675 -0.906 0 0 0 0 0 0 0 +-2.308 12.556 -0.896 0 0 0 0 0 0 0 +-2.325 12.43 -0.886 0 0 0 0 0 0 0 +-2.342 12.307 -0.876 0 0 0 0 0 0 0 +-2.341 12.198 -0.867 0 0 0 0 0 0 0 +-2.355 12.071 -0.856 0 0 0 0 0 0 0 +-2.372 11.956 -0.847 0 0 0 0 0 0 0 +-2.388 11.845 -0.838 0 0 0 0 0 0 0 +-2.404 11.734 -0.829 0 0 0 0 0 0 0 +-2.419 11.623 -0.82 0 0 0 0 0 0 0 +-2.436 11.526 -0.812 0 0 0 0 0 0 0 +-2.433 11.423 -0.803 0 0 0 0 0 0 0 +-2.446 11.312 -0.794 0 0 0 0 0 0 0 +-2.463 11.216 -0.786 0 0 0 0 0 0 0 +-2.465 10.903 -0.76 0 0 0 0 0 0 0 +-2.521 10.835 -0.755 0 0 0 0 0 0 0 +-2.505 10.544 -0.731 0 0 0 0 0 0 0 +-2.553 10.453 -0.724 0 0 0 0 0 0 0 +-2.567 10.37 -0.717 0 0 0 0 0 0 0 +-2.578 10.278 -0.71 0 0 0 0 0 0 0 +-2.59 10.191 -0.703 0 0 0 0 0 0 0 +-2.588 10.118 -0.697 0 0 0 0 0 0 0 +-2.6 10.034 -0.69 0 0 0 0 0 0 0 +-2.611 9.949 -0.683 0 0 0 0 0 0 0 +-2.626 9.877 -0.678 0 0 0 0 0 0 0 +-2.635 9.788 -0.67 0 0 0 0 0 0 0 +-2.647 9.714 -0.665 0 0 0 0 0 0 0 +-2.659 9.639 -0.659 0 0 0 0 0 0 0 +-2.671 9.565 -0.653 0 0 0 0 0 0 0 +-2.665 9.486 -0.646 0 0 0 0 0 0 0 +-2.68 9.426 -0.641 0 0 0 0 0 0 0 +-2.691 9.353 -0.636 0 0 0 0 0 0 0 +-2.705 9.294 -0.631 0 0 0 0 0 0 0 +-2.723 9.248 -0.628 0 0 0 0 0 0 0 +-2.735 9.182 -0.623 0 0 0 0 0 0 0 +-2.751 9.131 -0.619 0 0 0 0 0 0 0 +-2.755 9.093 -0.616 0 0 0 0 0 0 0 +-2.768 9.034 -0.611 0 0 0 0 0 0 0 +-2.782 8.98 -0.607 0 0 0 0 0 0 0 +-2.798 8.931 -0.604 0 0 0 0 0 0 0 +-2.812 8.881 -0.6 0 0 0 0 0 0 0 +-2.826 8.828 -0.596 0 0 0 0 0 0 0 +-2.844 8.789 -0.593 0 0 0 0 0 0 0 +-2.84 8.73 -0.588 0 0 0 0 0 0 0 +-2.855 8.683 -0.585 0 0 0 0 0 0 0 +-2.873 8.647 -0.582 0 0 0 0 0 0 0 +-2.884 8.589 -0.578 0 0 0 0 0 0 0 +-2.898 8.543 -0.574 0 0 0 0 0 0 0 +-2.913 8.501 -0.571 0 0 0 0 0 0 0 +-2.924 8.445 -0.567 0 0 0 0 0 0 0 +-2.929 8.418 -0.565 0 0 0 0 0 0 0 +-2.935 8.352 -0.56 0 0 0 0 0 0 0 +-2.952 8.317 -0.558 0 0 0 0 0 0 0 +-2.97 8.283 -0.555 0 0 0 0 0 0 0 +-2.978 8.227 -0.551 0 0 0 0 0 0 0 +-2.986 8.167 -0.546 0 0 0 0 0 0 0 +-3 8.128 -0.544 0 0 0 0 0 0 0 +-3.058 8.013 -0.536 0 0 0 0 0 0 0 +-3.083 8.003 -0.536 0 0 0 0 0 0 0 +-3.097 7.963 -0.533 0 0 0 0 0 0 0 +-3.121 7.952 -0.533 0 0 0 0 0 0 0 +-3.14 7.927 -0.532 0 0 0 0 0 0 0 +-3.152 7.92 -0.532 0 0 0 0 0 0 0 +-3.162 7.875 -0.528 0 0 0 0 0 0 0 +-3.184 7.858 -0.528 0 0 0 0 0 0 0 +-3.202 7.833 -0.526 0 0 0 0 0 0 0 +-3.228 7.825 -0.527 0 0 0 0 0 0 0 +-3.237 7.778 -0.523 0 0 0 0 0 0 0 +-3.249 7.739 -0.52 0 0 0 0 0 0 0 +-3.259 7.728 -0.52 0 0 0 0 0 0 0 +-3.271 7.69 -0.517 0 0 0 0 0 0 0 +-3.287 7.66 -0.515 0 0 0 0 0 0 0 +-3.3 7.626 -0.513 0 0 0 0 0 0 0 +-3.32 7.604 -0.512 0 0 0 0 0 0 0 +-3.33 7.565 -0.509 0 0 0 0 0 0 0 +-3.346 7.536 -0.508 0 0 0 0 0 0 0 +-3.321 7.388 -0.495 0 0 0 0 0 0 0 +-3.423 7.549 -0.512 0 0 0 0 0 0 0 +-3.356 7.341 -0.493 0 0 0 0 0 0 0 +-3.455 7.432 -0.503 0 0 0 0 0 0 0 +-3.491 7.448 -0.506 0 0 0 0 0 0 0 +-3.512 7.433 -0.506 0 0 0 0 0 0 0 +-3.532 7.444 -0.507 0 0 0 0 0 0 0 +-3.559 7.44 -0.508 0 0 0 0 0 0 0 +-3.591 7.447 -0.51 0 0 0 0 0 0 0 +-3.612 7.432 -0.509 0 0 0 0 0 0 0 +-3.643 7.435 -0.511 0 0 0 0 0 0 0 +-3.668 7.427 -0.511 0 0 0 0 0 0 0 +-3.703 7.439 -0.513 0 0 0 0 0 0 0 +-3.715 7.435 -0.513 0 0 0 0 0 0 0 +-3.747 7.439 -0.515 0 0 0 0 0 0 0 +-3.775 7.436 -0.516 0 0 0 0 0 0 0 +-3.806 7.44 -0.517 0 0 0 0 0 0 0 +-3.832 7.433 -0.518 0 0 0 0 0 0 0 +-3.863 7.435 -0.519 0 0 0 0 0 0 0 +-3.891 7.432 -0.52 0 0 0 0 0 0 0 +-3.924 7.437 -0.522 0 0 0 0 0 0 0 +-3.939 7.438 -0.522 0 0 0 0 0 0 0 +-3.971 7.442 -0.524 0 0 0 0 0 0 0 +-3.999 7.438 -0.525 0 0 0 0 0 0 0 +-4.035 7.448 -0.527 0 0 0 0 0 0 0 +-4.057 7.433 -0.527 0 0 0 0 0 0 0 +-4.085 7.429 -0.528 0 0 0 0 0 0 0 +-4.124 7.444 -0.531 0 0 0 0 0 0 0 +-4.141 7.447 -0.531 0 0 0 0 0 0 0 +-4.182 7.465 -0.534 0 0 0 0 0 0 0 +-4.201 7.445 -0.534 0 0 0 0 0 0 0 +-4.242 7.461 -0.537 0 0 0 0 0 0 0 +-4.267 7.451 -0.537 0 0 0 0 0 0 0 +-4.296 7.448 -0.538 0 0 0 0 0 0 0 +-4.327 7.446 -0.539 0 0 0 0 0 0 0 +-4.352 7.462 -0.542 0 0 0 0 0 0 0 +-4.379 7.455 -0.542 0 0 0 0 0 0 0 +-4.399 7.436 -0.542 0 0 0 0 0 0 0 +-4.381 7.352 -0.535 0 0 0 0 0 0 0 +-4.371 7.284 -0.529 0 0 0 0 0 0 0 +-4.432 7.333 -0.536 0 0 0 0 0 0 0 +-4.565 7.499 -0.554 0 0 0 0 0 0 0 +-4.58 7.497 -0.554 0 0 0 0 0 0 0 +-4.615 7.501 -0.556 0 0 0 0 0 0 0 +-4.638 7.485 -0.556 0 0 0 0 0 0 0 +-4.687 7.511 -0.56 0 0 0 0 0 0 0 +-4.747 7.553 -0.566 0 0 0 0 0 0 0 +-4.79 7.569 -0.569 0 0 0 0 0 0 0 +-4.807 7.544 -0.568 0 0 0 0 0 0 0 +-4.821 7.513 -0.566 0 0 0 0 0 0 0 +-4.848 7.529 -0.569 0 0 0 0 0 0 0 +-4.88 7.527 -0.57 0 0 0 0 0 0 0 +-5.009 7.619 -0.583 0 0 0 0 0 0 0 +-5.045 7.622 -0.585 0 0 0 0 0 0 0 +-5.03 7.548 -0.579 0 0 0 0 0 0 0 +-5.088 7.583 -0.584 0 0 0 0 0 0 0 +-5.072 7.534 -0.58 0 0 0 0 0 0 0 +-7.249 10.676 -0.908 0 0 0 0 0 0 0 +-7.262 10.623 -0.905 0 0 0 0 0 0 0 +-7.276 10.573 -0.902 0 0 0 0 0 0 0 +-7.274 10.499 -0.897 0 0 0 0 0 0 0 +-7.286 10.447 -0.894 0 0 0 0 0 0 0 +-7.306 10.404 -0.892 0 0 0 0 0 0 0 +-7.314 10.381 -0.891 0 0 0 0 0 0 0 +-7.323 10.326 -0.887 0 0 0 0 0 0 0 +-13.704 19.156 -1.824 0 0 0 0 0 0 0 +-13.737 19.076 -1.82 0 0 0 0 0 0 0 +-7.282 10.066 -0.867 0 0 0 0 0 0 0 +-7.375 10.127 -0.876 0 0 0 0 0 0 0 +-13.895 18.916 -1.817 0 0 0 0 0 0 0 +-13.914 18.88 -1.815 0 0 0 0 0 0 0 +-13.979 18.844 -1.816 0 0 0 0 0 0 0 +-14.024 18.781 -1.814 0 0 0 0 0 0 0 +-14.083 18.737 -1.814 0 0 0 0 0 0 0 +-14.138 18.688 -1.814 0 0 0 0 0 0 0 +-14.18 18.621 -1.811 0 0 0 0 0 0 0 +-14.249 18.591 -1.813 0 0 0 0 0 0 0 +-14.272 18.561 -1.812 0 0 0 0 0 0 0 +-14.311 18.49 -1.809 0 0 0 0 0 0 0 +-14.358 18.431 -1.808 0 0 0 0 0 0 0 +-7.398 9.456 -0.831 0 0 0 0 0 0 0 +-7.438 9.446 -0.833 0 0 0 0 0 0 0 +-14.504 18.261 -1.804 0 0 0 0 0 0 0 +-14.582 18.242 -1.807 0 0 0 0 0 0 0 +-14.622 18.174 -1.804 0 0 0 0 0 0 0 +-14.649 18.149 -1.804 0 0 0 0 0 0 0 +-14.687 18.08 -1.802 0 0 0 0 0 0 0 +-14.705 17.986 -1.796 0 0 0 0 0 0 0 +-14.738 17.912 -1.793 0 0 0 0 0 0 0 +-14.828 17.906 -1.798 0 0 0 0 0 0 0 +-14.89 17.867 -1.798 0 0 0 0 0 0 0 +-14.945 17.818 -1.798 0 0 0 0 0 0 0 +-14.931 17.744 -1.793 0 0 0 0 0 0 0 +-14.859 17.547 -1.776 0 0 0 0 0 0 0 +-14.806 17.375 -1.761 0 0 0 0 0 0 0 +-7.472 8.733 -0.787 0 0 0 0 0 0 0 +-11.917 13.728 -1.362 0 0 0 0 0 0 0 +-12.136 13.891 -1.385 0 0 0 0 0 0 0 +-14.722 16.789 -1.719 0 0 0 0 0 0 0 +-7.501 8.52 -0.775 0 0 0 0 0 0 0 +-7.503 8.468 -0.772 0 0 0 0 0 0 0 +-7.518 8.431 -0.77 0 0 0 0 0 0 0 +-7.521 8.383 -0.767 0 0 0 0 0 0 0 +-7.525 8.334 -0.764 0 0 0 0 0 0 0 +-7.543 8.301 -0.763 0 0 0 0 0 0 0 +-7.529 8.26 -0.76 0 0 0 0 0 0 0 +-7.539 8.219 -0.758 0 0 0 0 0 0 0 +-7.55 8.179 -0.756 0 0 0 0 0 0 0 +-7.548 8.126 -0.752 0 0 0 0 0 0 0 +-7.565 8.094 -0.751 0 0 0 0 0 0 0 +-7.568 8.045 -0.748 0 0 0 0 0 0 0 +-7.608 8.037 -0.75 0 0 0 0 0 0 0 +-15.169 15.938 -1.691 0 0 0 0 0 0 0 +-14.979 15.64 -1.661 0 0 0 0 0 0 0 +-15.337 15.912 -1.699 0 0 0 0 0 0 0 +-14.855 15.317 -1.633 0 0 0 0 0 0 0 +-15.246 15.621 -1.675 0 0 0 0 0 0 0 +-14.924 15.196 -1.63 0 0 0 0 0 0 0 +-15.112 15.291 -1.647 0 0 0 0 0 0 0 +-15.14 15.224 -1.645 0 0 0 0 0 0 0 +-15.068 15.104 -1.633 0 0 0 0 0 0 0 +-15.008 14.95 -1.62 0 0 0 0 0 0 0 +-15.079 14.926 -1.623 0 0 0 0 0 0 0 +-15.152 14.904 -1.626 0 0 0 0 0 0 0 +-15.143 14.802 -1.619 0 0 0 0 0 0 0 +-15.146 14.713 -1.614 0 0 0 0 0 0 0 +-15.175 14.649 -1.612 0 0 0 0 0 0 0 +-15.217 14.643 -1.614 0 0 0 0 0 0 0 +-15.332 14.661 -1.623 0 0 0 0 0 0 0 +-15.371 14.606 -1.622 0 0 0 0 0 0 0 +-15.388 14.53 -1.618 0 0 0 0 0 0 0 +-15.398 14.449 -1.614 0 0 0 0 0 0 0 +-15.398 14.359 -1.609 0 0 0 0 0 0 0 +-15.354 14.228 -1.599 0 0 0 0 0 0 0 +-15.388 14.214 -1.6 0 0 0 0 0 0 0 +-15.448 14.179 -1.602 0 0 0 0 0 0 0 +-15.567 14.199 -1.61 0 0 0 0 0 0 0 +-15.585 14.126 -1.607 0 0 0 0 0 0 0 +-15.681 14.124 -1.613 0 0 0 0 0 0 0 +-15.565 13.931 -1.595 0 0 0 0 0 0 0 +-15.379 13.678 -1.568 0 0 0 0 0 0 0 +-15.38 13.636 -1.566 0 0 0 0 0 0 0 +-15.34 13.515 -1.557 0 0 0 0 0 0 0 +-15.38 13.464 -1.556 0 0 0 0 0 0 0 +-15.362 13.363 -1.549 0 0 0 0 0 0 0 +-15.405 13.316 -1.55 0 0 0 0 0 0 0 +-15.398 13.226 -1.544 0 0 0 0 0 0 0 +-15.399 13.143 -1.539 0 0 0 0 0 0 0 +-15.437 13.092 -1.539 0 0 0 0 0 0 0 +-15.473 13.081 -1.541 0 0 0 0 0 0 0 +-15.506 13.026 -1.54 0 0 0 0 0 0 0 +-15.513 12.949 -1.536 0 0 0 0 0 0 0 +-15.568 12.911 -1.538 0 0 0 0 0 0 0 +-15.602 12.857 -1.537 0 0 0 0 0 0 0 +-15.645 12.811 -1.537 0 0 0 0 0 0 0 +-15.676 12.754 -1.536 0 0 0 0 0 0 0 +-15.69 12.724 -1.536 0 0 0 0 0 0 0 +-15.631 12.595 -1.525 0 0 0 0 0 0 0 +-15.63 12.514 -1.52 0 0 0 0 0 0 0 +-15.769 12.544 -1.531 0 0 0 0 0 0 0 +-15.744 12.444 -1.524 0 0 0 0 0 0 0 +-15.636 12.279 -1.508 0 0 0 0 0 0 0 +-15.672 12.228 -1.508 0 0 0 0 0 0 0 +-15.704 12.213 -1.509 0 0 0 0 0 0 0 +-15.672 12.109 -1.502 0 0 0 0 0 0 0 +-15.676 12.034 -1.498 0 0 0 0 0 0 0 +-15.704 11.978 -1.497 0 0 0 0 0 0 0 +-15.717 11.909 -1.494 0 0 0 0 0 0 0 +-15.695 11.816 -1.488 0 0 0 0 0 0 0 +-15.748 11.778 -1.49 0 0 0 0 0 0 0 +-15.707 11.709 -1.483 0 0 0 0 0 0 0 +-15.726 11.647 -1.481 0 0 0 0 0 0 0 +-15.737 11.579 -1.479 0 0 0 0 0 0 0 +-15.749 11.512 -1.476 0 0 0 0 0 0 0 +-15.837 11.499 -1.481 0 0 0 0 0 0 0 +-15.846 11.43 -1.479 0 0 0 0 0 0 0 +-15.854 11.36 -1.476 0 0 0 0 0 0 0 +-15.812 11.293 -1.469 0 0 0 0 0 0 0 +-15.815 11.22 -1.466 0 0 0 0 0 0 0 +-16.12 11.36 -1.494 0 0 0 0 0 0 0 +-16.123 11.287 -1.491 0 0 0 0 0 0 0 +-16.183 11.253 -1.493 0 0 0 0 0 0 0 +-16.304 11.261 -1.502 0 0 0 0 0 0 0 +-16.222 11.13 -1.49 0 0 0 0 0 0 0 +-16.126 11.027 -1.478 0 0 0 0 0 0 0 +-16.063 10.91 -1.468 0 0 0 0 0 0 0 +-16.04 10.821 -1.462 0 0 0 0 0 0 0 +-16.127 10.806 -1.468 0 0 0 0 0 0 0 +-6.728 4.496 -0.495 0 0 0 0 0 0 0 +-6.724 4.463 -0.493 0 0 0 0 0 0 0 +-6.68 4.403 -0.487 0 0 0 0 0 0 0 +-6.75 4.419 -0.493 0 0 0 0 0 0 0 +-6.745 4.401 -0.491 0 0 0 0 0 0 0 +-6.747 4.372 -0.49 0 0 0 0 0 0 0 +-6.778 4.362 -0.492 0 0 0 0 0 0 0 +-16.092 10.242 -1.439 0 0 0 0 0 0 0 +-16.017 10.124 -1.428 0 0 0 0 0 0 0 +-15.984 10.033 -1.421 0 0 0 0 0 0 0 +-15.946 9.94 -1.414 0 0 0 0 0 0 0 +-15.865 9.855 -1.405 0 0 0 0 0 0 0 +-15.971 9.851 -1.412 0 0 0 0 0 0 0 +-15.949 9.769 -1.407 0 0 0 0 0 0 0 +-15.978 9.718 -1.407 0 0 0 0 0 0 0 +-15.974 9.647 -1.403 0 0 0 0 0 0 0 +-15.965 9.573 -1.399 0 0 0 0 0 0 0 +-16.081 9.574 -1.408 0 0 0 0 0 0 0 +-16.085 9.542 -1.407 0 0 0 0 0 0 0 +-16.017 9.434 -1.397 0 0 0 0 0 0 0 +-15.987 9.349 -1.391 0 0 0 0 0 0 0 +-16.068 9.328 -1.396 0 0 0 0 0 0 0 +-16.189 9.33 -1.405 0 0 0 0 0 0 0 +-16.199 9.269 -1.403 0 0 0 0 0 0 0 +-16.216 9.211 -1.402 0 0 0 0 0 0 0 +-16.242 9.192 -1.403 0 0 0 0 0 0 0 +-13.95 7.841 -1.175 0 0 0 0 0 0 0 +-13.922 7.769 -1.17 0 0 0 0 0 0 0 +-13.976 7.741 -1.172 0 0 0 0 0 0 0 +-13.899 7.642 -1.163 0 0 0 0 0 0 0 +-12.572 6.812 -1.028 0 0 0 0 0 0 0 +-12.591 6.797 -1.029 0 0 0 0 0 0 0 +-12.717 6.813 -1.039 0 0 0 0 0 0 0 +-13.677 7.27 -1.13 0 0 0 0 0 0 0 +-13.728 7.242 -1.133 0 0 0 0 0 0 0 +-13.763 7.205 -1.134 0 0 0 0 0 0 0 +-13.842 7.191 -1.14 0 0 0 0 0 0 0 +-16.225 8.36 -1.368 0 0 0 0 0 0 0 +-16.374 8.371 -1.38 0 0 0 0 0 0 0 +-16.05 8.174 -1.347 0 0 0 0 0 0 0 +-7.295 3.674 -0.501 0 0 0 0 0 0 0 +-7.378 3.686 -0.508 0 0 0 0 0 0 0 +-7.436 3.686 -0.512 0 0 0 0 0 0 0 +-7.677 3.774 -0.534 0 0 0 0 0 0 0 +-16.465 7.966 -1.371 0 0 0 0 0 0 0 +-14.662 6.984 -1.195 0 0 0 0 0 0 0 +-14.703 6.947 -1.197 0 0 0 0 0 0 0 +-16.836 7.886 -1.397 0 0 0 0 0 0 0 +-16.817 7.813 -1.393 0 0 0 0 0 0 0 +-16.818 7.749 -1.391 0 0 0 0 0 0 0 +-16.736 7.68 -1.382 0 0 0 0 0 0 0 +-16.747 7.621 -1.381 0 0 0 0 0 0 0 +-23.038 10.386 -1.971 0 0 0 0 0 0 0 +-23.063 10.31 -1.971 0 0 0 0 0 0 0 +-23.081 10.231 -1.969 0 0 0 0 0 0 0 +-23.091 10.149 -1.967 0 0 0 0 0 0 0 +-23.137 10.083 -1.969 0 0 0 0 0 0 0 +-23.16 10.05 -1.969 0 0 0 0 0 0 0 +-23.183 9.973 -1.969 0 0 0 0 0 0 0 +-23.19 9.89 -1.966 0 0 0 0 0 0 0 +-23.232 9.822 -1.967 0 0 0 0 0 0 0 +-23.274 9.753 -1.968 0 0 0 0 0 0 0 +-23.319 9.686 -1.97 0 0 0 0 0 0 0 +-23.353 9.614 -1.97 0 0 0 0 0 0 0 +-23.379 9.582 -1.971 0 0 0 0 0 0 0 +-23.428 9.516 -1.973 0 0 0 0 0 0 0 +-23.485 9.454 -1.975 0 0 0 0 0 0 0 +-23.524 9.383 -1.976 0 0 0 0 0 0 0 +-23.552 9.309 -1.976 0 0 0 0 0 0 0 +-23.594 9.24 -1.977 0 0 0 0 0 0 0 +-23.628 9.168 -1.978 0 0 0 0 0 0 0 +-23.644 9.131 -1.978 0 0 0 0 0 0 0 +-23.675 9.058 -1.978 0 0 0 0 0 0 0 +-23.731 8.994 -1.981 0 0 0 0 0 0 0 +-23.793 8.932 -1.984 0 0 0 0 0 0 0 +-23.81 8.853 -1.983 0 0 0 0 0 0 0 +-23.83 8.775 -1.982 0 0 0 0 0 0 0 +-23.915 8.722 -1.987 0 0 0 0 0 0 0 +-23.974 8.7 -1.991 0 0 0 0 0 0 0 +-23.997 8.624 -1.991 0 0 0 0 0 0 0 +-24.045 8.555 -1.993 0 0 0 0 0 0 0 +-24.091 8.486 -1.995 0 0 0 0 0 0 0 +-24.164 8.427 -1.999 0 0 0 0 0 0 0 +-24.228 8.364 -2.002 0 0 0 0 0 0 0 +-24.283 8.298 -2.005 0 0 0 0 0 0 0 +-24.309 8.264 -2.006 0 0 0 0 0 0 0 +-24.361 8.196 -2.009 0 0 0 0 0 0 0 +-24.387 8.12 -2.009 0 0 0 0 0 0 0 +-24.425 8.047 -2.01 0 0 0 0 0 0 0 +-24.458 7.973 -2.011 0 0 0 0 0 0 0 +-24.498 7.901 -2.012 0 0 0 0 0 0 0 +-24.531 7.827 -2.013 0 0 0 0 0 0 0 +-24.549 7.79 -2.013 0 0 0 0 0 0 0 +-24.59 7.718 -2.015 0 0 0 0 0 0 0 +-24.624 7.644 -2.015 0 0 0 0 0 0 0 +-24.674 7.574 -2.018 0 0 0 0 0 0 0 +-24.707 7.5 -2.019 0 0 0 0 0 0 0 +-24.769 7.434 -2.022 0 0 0 0 0 0 0 +-24.766 7.348 -2.02 0 0 0 0 0 0 0 +-24.712 7.248 -2.013 0 0 0 0 0 0 0 +-24.765 7.221 -2.017 0 0 0 0 0 0 0 +-24.709 7.121 -2.01 0 0 0 0 0 0 0 +-24.668 7.025 -2.004 0 0 0 0 0 0 0 +-24.623 6.929 -1.998 0 0 0 0 0 0 0 +-24.545 6.824 -1.989 0 0 0 0 0 0 0 +-24.482 6.723 -1.982 0 0 0 0 0 0 0 +-24.418 6.624 -1.974 0 0 0 0 0 0 0 +-24.327 6.558 -1.965 0 0 0 0 0 0 0 +-24.256 6.457 -1.957 0 0 0 0 0 0 0 +-24.159 6.35 -1.946 0 0 0 0 0 0 0 +-24.028 6.236 -1.933 0 0 0 0 0 0 0 +-24.046 6.16 -1.933 0 0 0 0 0 0 0 +-10.212 2.597 -0.705 0 0 0 0 0 0 0 +-9.818 2.465 -0.669 0 0 0 0 0 0 0 +-9.57 2.372 -0.647 0 0 0 0 0 0 0 +-9.291 2.288 -0.622 0 0 0 0 0 0 0 +-9.048 2.199 -0.599 0 0 0 0 0 0 0 +-8.538 1.921 -0.551 0 0 0 0 0 0 0 +-8.525 1.89 -0.55 0 0 0 0 0 0 0 +-8.976 1.797 -0.586 0 0 0 0 0 0 0 +-9.001 1.772 -0.588 0 0 0 0 0 0 0 +-9.005 1.744 -0.587 0 0 0 0 0 0 0 +-9.014 1.716 -0.588 0 0 0 0 0 0 0 +-8.665 1.44 -0.554 0 0 0 0 0 0 0 +-9.48 1.042 -0.619 0 0 0 0 0 0 0 +-9.463 1.01 -0.617 0 0 0 0 0 0 0 +-9.369 0.971 -0.609 0 0 0 0 0 0 0 +-8.929 0.87 -0.57 0 0 0 0 0 0 0 +-8.91 0.854 -0.568 0 0 0 0 0 0 0 +-8.895 0.824 -0.567 0 0 0 0 0 0 0 +-22.887 1.863 -1.773 0 0 0 0 0 0 0 +-22.857 1.788 -1.77 0 0 0 0 0 0 0 +-22.881 1.717 -1.772 0 0 0 0 0 0 0 +-22.838 1.678 -1.768 0 0 0 0 0 0 0 +-22.734 1.599 -1.758 0 0 0 0 0 0 0 +-19.523 1.315 -1.481 0 0 0 0 0 0 0 +-21.974 1.408 -1.692 0 0 0 0 0 0 0 +-21.924 1.335 -1.687 0 0 0 0 0 0 0 +-21.91 1.265 -1.686 0 0 0 0 0 0 0 +-21.896 1.196 -1.684 0 0 0 0 0 0 0 +-21.888 1.126 -1.683 0 0 0 0 0 0 0 +-21.915 1.059 -1.685 0 0 0 0 0 0 0 +-21.945 1.025 -1.688 0 0 0 0 0 0 0 +-22.016 0.959 -1.693 0 0 0 0 0 0 0 +-22.112 0.894 -1.701 0 0 0 0 0 0 0 +-18.566 0.696 -1.396 0 0 0 0 0 0 0 +-18.568 0.638 -1.396 0 0 0 0 0 0 0 +-25.4 0.783 -1.984 0 0 0 0 0 0 0 +-22.195 0.618 -1.708 0 0 0 0 0 0 0 +-25.388 0.663 -1.982 0 0 0 0 0 0 0 +-25.336 0.582 -1.978 0 0 0 0 0 0 0 +-25.317 0.502 -1.976 0 0 0 0 0 0 0 +-25.277 0.422 -1.972 0 0 0 0 0 0 0 +-25.276 0.343 -1.972 0 0 0 0 0 0 0 +-22.51 0.237 -1.734 0 0 0 0 0 0 0 +-25.178 0.183 -1.964 0 0 0 0 0 0 0 +-25.141 0.143 -1.96 0 0 0 0 0 0 0 +-25.115 0.064 -1.958 0 0 0 0 0 0 0 +-22.22 -0.01 -1.709 0 0 0 0 0 0 0 +-25.017 -0.093 -1.95 0 0 0 0 0 0 0 +-24.979 -0.171 -1.946 0 0 0 0 0 0 0 +-24.967 -0.25 -1.945 0 0 0 0 0 0 0 +-24.954 -0.328 -1.944 0 0 0 0 0 0 0 +-24.929 -0.367 -1.942 0 0 0 0 0 0 0 +-24.904 -0.444 -1.94 0 0 0 0 0 0 0 +-24.853 -0.522 -1.936 0 0 0 0 0 0 0 +-24.851 -0.6 -1.936 0 0 0 0 0 0 0 +-24.819 -0.677 -1.933 0 0 0 0 0 0 0 +-24.743 -0.753 -1.927 0 0 0 0 0 0 0 +-24.689 -0.829 -1.923 0 0 0 0 0 0 0 +-24.6 -0.864 -1.915 0 0 0 0 0 0 0 +-24.509 -0.938 -1.908 0 0 0 0 0 0 0 +-24.443 -1.012 -1.902 0 0 0 0 0 0 0 +-24.384 -1.086 -1.897 0 0 0 0 0 0 0 +-24.296 -1.159 -1.89 0 0 0 0 0 0 0 +-24.219 -1.232 -1.884 0 0 0 0 0 0 0 +-24.147 -1.304 -1.878 0 0 0 0 0 0 0 +-24.082 -1.376 -1.873 0 0 0 0 0 0 0 +-23.994 -1.409 -1.865 0 0 0 0 0 0 0 +-23.92 -1.48 -1.859 0 0 0 0 0 0 0 +-23.823 -1.549 -1.851 0 0 0 0 0 0 0 +-23.743 -1.619 -1.845 0 0 0 0 0 0 0 +-23.66 -1.687 -1.838 0 0 0 0 0 0 0 +-23.591 -1.757 -1.833 0 0 0 0 0 0 0 +-23.51 -1.825 -1.826 0 0 0 0 0 0 0 +-23.436 -1.856 -1.82 0 0 0 0 0 0 0 +-23.366 -1.925 -1.815 0 0 0 0 0 0 0 +-23.293 -1.992 -1.809 0 0 0 0 0 0 0 +-16.127 -1.473 -1.191 0 0 0 0 0 0 0 +-16.128 -1.525 -1.192 0 0 0 0 0 0 0 +-16.197 -1.583 -1.198 0 0 0 0 0 0 0 +-16.262 -1.615 -1.204 0 0 0 0 0 0 0 +-16.183 -1.658 -1.197 0 0 0 0 0 0 0 +-22.762 -2.415 -1.767 0 0 0 0 0 0 0 +-22.732 -2.484 -1.765 0 0 0 0 0 0 0 +-22.7 -2.553 -1.763 0 0 0 0 0 0 0 +-22.702 -2.626 -1.764 0 0 0 0 0 0 0 +-22.714 -2.699 -1.765 0 0 0 0 0 0 0 +-22.715 -2.736 -1.766 0 0 0 0 0 0 0 +-22.73 -2.81 -1.768 0 0 0 0 0 0 0 +-22.727 -2.882 -1.768 0 0 0 0 0 0 0 +-22.75 -2.958 -1.771 0 0 0 0 0 0 0 +-22.734 -3.028 -1.771 0 0 0 0 0 0 0 +-22.762 -3.105 -1.774 0 0 0 0 0 0 0 +-22.754 -3.177 -1.774 0 0 0 0 0 0 0 +-22.718 -3.208 -1.771 0 0 0 0 0 0 0 +-22.755 -3.286 -1.775 0 0 0 0 0 0 0 +-22.77 -3.361 -1.778 0 0 0 0 0 0 0 +-22.722 -3.427 -1.774 0 0 0 0 0 0 0 +-22.64 -3.488 -1.768 0 0 0 0 0 0 0 +-22.552 -3.547 -1.762 0 0 0 0 0 0 0 +-22.465 -3.605 -1.755 0 0 0 0 0 0 0 +-22.388 -3.629 -1.749 0 0 0 0 0 0 0 +-22.316 -3.689 -1.743 0 0 0 0 0 0 0 +-22.221 -3.745 -1.736 0 0 0 0 0 0 0 +-21.036 -3.68 -1.635 0 0 0 0 0 0 0 +-20.904 -3.724 -1.624 0 0 0 0 0 0 0 +-20.828 -3.778 -1.619 0 0 0 0 0 0 0 +-20.765 -3.801 -1.614 0 0 0 0 0 0 0 +-20.704 -3.857 -1.609 0 0 0 0 0 0 0 +-20.621 -3.908 -1.603 0 0 0 0 0 0 0 +-20.548 -3.961 -1.598 0 0 0 0 0 0 0 +-20.463 -4.011 -1.592 0 0 0 0 0 0 0 +-20.388 -4.063 -1.586 0 0 0 0 0 0 0 +-20.315 -4.115 -1.581 0 0 0 0 0 0 0 +-20.232 -4.164 -1.575 0 0 0 0 0 0 0 +-20.166 -4.184 -1.57 0 0 0 0 0 0 0 +-20.093 -4.234 -1.564 0 0 0 0 0 0 0 +-20.029 -4.286 -1.56 0 0 0 0 0 0 0 +-19.943 -4.333 -1.553 0 0 0 0 0 0 0 +-19.863 -4.381 -1.548 0 0 0 0 0 0 0 +-19.803 -4.433 -1.544 0 0 0 0 0 0 0 +-19.736 -4.484 -1.539 0 0 0 0 0 0 0 +-19.685 -4.504 -1.535 0 0 0 0 0 0 0 +-19.604 -4.551 -1.529 0 0 0 0 0 0 0 +-19.522 -4.596 -1.523 0 0 0 0 0 0 0 +-19.449 -4.643 -1.518 0 0 0 0 0 0 0 +-19.383 -4.692 -1.513 0 0 0 0 0 0 0 +-19.372 -4.754 -1.514 0 0 0 0 0 0 0 +-19.374 -4.819 -1.515 0 0 0 0 0 0 0 +-19.345 -4.844 -1.513 0 0 0 0 0 0 0 +-19.291 -4.895 -1.51 0 0 0 0 0 0 0 +-19.204 -4.937 -1.504 0 0 0 0 0 0 0 +-19.077 -4.968 -1.494 0 0 0 0 0 0 0 +-19.009 -5.014 -1.489 0 0 0 0 0 0 0 +-18.951 -5.062 -1.485 0 0 0 0 0 0 0 +-18.868 -5.104 -1.479 0 0 0 0 0 0 0 +-18.79 -5.114 -1.473 0 0 0 0 0 0 0 +-18.653 -5.14 -1.462 0 0 0 0 0 0 0 +-18.578 -5.182 -1.457 0 0 0 0 0 0 0 +-18.504 -5.224 -1.452 0 0 0 0 0 0 0 +-18.43 -5.265 -1.447 0 0 0 0 0 0 0 +-17.925 -5.181 -1.403 0 0 0 0 0 0 0 +-17.819 -5.211 -1.395 0 0 0 0 0 0 0 +-17.761 -5.225 -1.391 0 0 0 0 0 0 0 +-17.685 -5.263 -1.385 0 0 0 0 0 0 0 +-17.627 -5.306 -1.381 0 0 0 0 0 0 0 +-17.564 -5.347 -1.377 0 0 0 0 0 0 0 +-17.492 -5.385 -1.372 0 0 0 0 0 0 0 +-17.431 -5.426 -1.368 0 0 0 0 0 0 0 +-17.348 -5.46 -1.362 0 0 0 0 0 0 0 +-17.297 -5.474 -1.359 0 0 0 0 0 0 0 +-17.225 -5.51 -1.354 0 0 0 0 0 0 0 +-17.238 -5.574 -1.356 0 0 0 0 0 0 0 +-17.262 -5.642 -1.36 0 0 0 0 0 0 0 +-17.312 -5.719 -1.366 0 0 0 0 0 0 0 +-17.332 -5.786 -1.37 0 0 0 0 0 0 0 +-17.348 -5.852 -1.373 0 0 0 0 0 0 0 +-17.297 -5.865 -1.369 0 0 0 0 0 0 0 +-17.228 -5.902 -1.364 0 0 0 0 0 0 0 +-17.166 -5.941 -1.361 0 0 0 0 0 0 0 +-17.098 -5.978 -1.356 0 0 0 0 0 0 0 +-17.032 -6.015 -1.352 0 0 0 0 0 0 0 +-16.938 -6.041 -1.345 0 0 0 0 0 0 0 +-16.739 -6.029 -1.329 0 0 0 0 0 0 0 +-16.745 -6.061 -1.33 0 0 0 0 0 0 0 +-16.763 -6.127 -1.333 0 0 0 0 0 0 0 +-16.701 -6.164 -1.329 0 0 0 0 0 0 0 +-16.624 -6.195 -1.324 0 0 0 0 0 0 0 +-16.569 -6.234 -1.321 0 0 0 0 0 0 0 +-16.504 -6.269 -1.317 0 0 0 0 0 0 0 +-16.434 -6.301 -1.312 0 0 0 0 0 0 0 +-16.372 -6.307 -1.307 0 0 0 0 0 0 0 +-16.295 -6.336 -1.302 0 0 0 0 0 0 0 +-16.26 -6.381 -1.301 0 0 0 0 0 0 0 +-16.186 -6.411 -1.296 0 0 0 0 0 0 0 +-16.112 -6.44 -1.291 0 0 0 0 0 0 0 +-16.053 -6.475 -1.287 0 0 0 0 0 0 0 +-15.989 -6.507 -1.283 0 0 0 0 0 0 0 +-15.929 -6.542 -1.279 0 0 0 0 0 0 0 +-15.947 -6.578 -1.282 0 0 0 0 0 0 0 +-15.961 -6.643 -1.285 0 0 0 0 0 0 0 +-15.92 -6.684 -1.283 0 0 0 0 0 0 0 +-15.802 -6.693 -1.274 0 0 0 0 0 0 0 +-15.78 -6.743 -1.274 0 0 0 0 0 0 0 +-15.863 -6.837 -1.284 0 0 0 0 0 0 0 +-15.979 -6.947 -1.297 0 0 0 0 0 0 0 +-15.988 -6.981 -1.299 0 0 0 0 0 0 0 +-15.995 -7.044 -1.301 0 0 0 0 0 0 0 +-15.969 -7.092 -1.301 0 0 0 0 0 0 0 +-15.872 -7.109 -1.294 0 0 0 0 0 0 0 +-15.765 -7.12 -1.286 0 0 0 0 0 0 0 +-15.673 -7.138 -1.28 0 0 0 0 0 0 0 +-15.66 -7.191 -1.28 0 0 0 0 0 0 0 +-15.661 -7.222 -1.282 0 0 0 0 0 0 0 +-15.693 -7.296 -1.287 0 0 0 0 0 0 0 +-15.693 -7.357 -1.289 0 0 0 0 0 0 0 +-15.71 -7.425 -1.293 0 0 0 0 0 0 0 +-15.704 -7.483 -1.294 0 0 0 0 0 0 0 +-15.707 -7.545 -1.297 0 0 0 0 0 0 0 +-15.707 -7.606 -1.299 0 0 0 0 0 0 0 +-15.709 -7.637 -1.301 0 0 0 0 0 0 0 +-14.815 -7.258 -1.217 0 0 0 0 0 0 0 +-14.717 -7.268 -1.21 0 0 0 0 0 0 0 +-14.69 -7.312 -1.21 0 0 0 0 0 0 0 +-15.787 -7.922 -1.317 0 0 0 0 0 0 0 +-16.128 -8.157 -1.353 0 0 0 0 0 0 0 +-16.157 -8.236 -1.358 0 0 0 0 0 0 0 +-16.217 -8.299 -1.365 0 0 0 0 0 0 0 +-16.233 -8.372 -1.369 0 0 0 0 0 0 0 +-16.23 -8.434 -1.371 0 0 0 0 0 0 0 +-16.236 -8.503 -1.375 0 0 0 0 0 0 0 +-16.25 -8.575 -1.379 0 0 0 0 0 0 0 +-16.242 -8.637 -1.38 0 0 0 0 0 0 0 +-16.271 -8.718 -1.386 0 0 0 0 0 0 0 +-16.328 -8.781 -1.393 0 0 0 0 0 0 0 +-16.344 -8.856 -1.397 0 0 0 0 0 0 0 +-16.362 -8.933 -1.401 0 0 0 0 0 0 0 +-16.29 -8.96 -1.397 0 0 0 0 0 0 0 +-16.268 -9.015 -1.398 0 0 0 0 0 0 0 +-16.254 -9.074 -1.399 0 0 0 0 0 0 0 +-16.257 -9.142 -1.402 0 0 0 0 0 0 0 +-16.279 -9.189 -1.406 0 0 0 0 0 0 0 +-16.274 -9.253 -1.408 0 0 0 0 0 0 0 +-16.29 -9.33 -1.413 0 0 0 0 0 0 0 +-16.293 -9.4 -1.416 0 0 0 0 0 0 0 +-16.293 -9.469 -1.419 0 0 0 0 0 0 0 +-16.299 -9.541 -1.423 0 0 0 0 0 0 0 +-16.314 -9.618 -1.427 0 0 0 0 0 0 0 +-16.319 -9.691 -1.431 0 0 0 0 0 0 0 +-16.343 -9.74 -1.435 0 0 0 0 0 0 0 +-16.34 -9.808 -1.437 0 0 0 0 0 0 0 +-16.357 -9.888 -1.442 0 0 0 0 0 0 0 +-16.355 -9.957 -1.445 0 0 0 0 0 0 0 +-16.364 -10.034 -1.449 0 0 0 0 0 0 0 +-16.366 -10.106 -1.453 0 0 0 0 0 0 0 +-16.383 -10.188 -1.458 0 0 0 0 0 0 0 +-16.406 -10.238 -1.461 0 0 0 0 0 0 0 +-16.409 -10.312 -1.465 0 0 0 0 0 0 0 +-16.427 -10.395 -1.47 0 0 0 0 0 0 0 +-16.42 -10.463 -1.473 0 0 0 0 0 0 0 +-16.425 -10.539 -1.477 0 0 0 0 0 0 0 +-16.429 -10.615 -1.48 0 0 0 0 0 0 0 +-16.452 -10.703 -1.486 0 0 0 0 0 0 0 +-16.467 -10.75 -1.49 0 0 0 0 0 0 0 +-16.477 -10.83 -1.494 0 0 0 0 0 0 0 +-16.6 -10.986 -1.51 0 0 0 0 0 0 0 +-16.622 -11.076 -1.516 0 0 0 0 0 0 0 +-16.622 -11.152 -1.52 0 0 0 0 0 0 0 +-16.613 -11.222 -1.522 0 0 0 0 0 0 0 +-16.63 -11.31 -1.528 0 0 0 0 0 0 0 +-16.655 -11.365 -1.532 0 0 0 0 0 0 0 +-16.643 -11.433 -1.535 0 0 0 0 0 0 0 +-10.538 -7.326 -0.902 0 0 0 0 0 0 0 +-10.466 -7.325 -0.897 0 0 0 0 0 0 0 +-10.424 -7.344 -0.895 0 0 0 0 0 0 0 +-10.376 -7.359 -0.893 0 0 0 0 0 0 0 +-10.361 -7.373 -0.892 0 0 0 0 0 0 0 +-10.353 -7.416 -0.894 0 0 0 0 0 0 0 +-10.417 -7.512 -0.903 0 0 0 0 0 0 0 +-10.386 -7.54 -0.902 0 0 0 0 0 0 0 +-10.36 -7.57 -0.902 0 0 0 0 0 0 0 +-10.369 -7.627 -0.906 0 0 0 0 0 0 0 +-10.398 -7.699 -0.911 0 0 0 0 0 0 0 +-10.434 -7.751 -0.916 0 0 0 0 0 0 0 +-10.574 -7.907 -0.934 0 0 0 0 0 0 0 +-16.721 -12.606 -1.599 0 0 0 0 0 0 0 +-16.709 -12.679 -1.602 0 0 0 0 0 0 0 +-16.724 -12.773 -1.608 0 0 0 0 0 0 0 +-16.736 -12.866 -1.614 0 0 0 0 0 0 0 +-16.73 -12.945 -1.618 0 0 0 0 0 0 0 +-16.757 -13.008 -1.623 0 0 0 0 0 0 0 +-16.771 -13.104 -1.629 0 0 0 0 0 0 0 +-16.775 -13.192 -1.634 0 0 0 0 0 0 0 +-16.779 -13.281 -1.639 0 0 0 0 0 0 0 +-16.788 -13.375 -1.644 0 0 0 0 0 0 0 +-16.793 -13.465 -1.649 0 0 0 0 0 0 0 +-16.794 -13.553 -1.654 0 0 0 0 0 0 0 +-16.812 -13.654 -1.661 0 0 0 0 0 0 0 +-16.841 -13.722 -1.667 0 0 0 0 0 0 0 +-16.839 -13.809 -1.671 0 0 0 0 0 0 0 +-16.86 -13.915 -1.678 0 0 0 0 0 0 0 +-16.859 -14.004 -1.683 0 0 0 0 0 0 0 +-16.878 -14.109 -1.69 0 0 0 0 0 0 0 +-16.888 -14.209 -1.696 0 0 0 0 0 0 0 +-16.892 -14.303 -1.702 0 0 0 0 0 0 0 +-16.935 -14.385 -1.709 0 0 0 0 0 0 0 +-16.935 -14.477 -1.714 0 0 0 0 0 0 0 +-16.947 -14.58 -1.721 0 0 0 0 0 0 0 +-16.964 -14.688 -1.728 0 0 0 0 0 0 0 +-16.98 -14.795 -1.735 0 0 0 0 0 0 0 +-16.973 -14.883 -1.74 0 0 0 0 0 0 0 +-13.834 -12.24 -1.387 0 0 0 0 0 0 0 +-13.934 -12.407 -1.403 0 0 0 0 0 0 0 +-17.03 -15.268 -1.765 0 0 0 0 0 0 0 +-17.047 -15.38 -1.773 0 0 0 0 0 0 0 +-17.047 -15.478 -1.778 0 0 0 0 0 0 0 +-17.064 -15.592 -1.786 0 0 0 0 0 0 0 +-17.078 -15.703 -1.793 0 0 0 0 0 0 0 +-17.106 -15.779 -1.8 0 0 0 0 0 0 0 +-17.112 -15.884 -1.806 0 0 0 0 0 0 0 +-17.129 -16 -1.814 0 0 0 0 0 0 0 +-17.135 -16.107 -1.821 0 0 0 0 0 0 0 +-17.141 -16.214 -1.827 0 0 0 0 0 0 0 +-17.156 -16.331 -1.835 0 0 0 0 0 0 0 +-17.161 -16.439 -1.842 0 0 0 0 0 0 0 +-17.189 -16.519 -1.848 0 0 0 0 0 0 0 +-17.203 -16.636 -1.856 0 0 0 0 0 0 0 +-13.924 -13.543 -1.469 0 0 0 0 0 0 0 +-13.984 -13.687 -1.481 0 0 0 0 0 0 0 +-17.149 -16.9 -1.869 0 0 0 0 0 0 0 +-17.112 -16.969 -1.871 0 0 0 0 0 0 0 +-17.079 -17.044 -1.873 0 0 0 0 0 0 0 +-17.061 -17.079 -1.874 0 0 0 0 0 0 0 +-16.992 -17.117 -1.872 0 0 0 0 0 0 0 +-16.966 -17.199 -1.876 0 0 0 0 0 0 0 +-16.931 -17.272 -1.878 0 0 0 0 0 0 0 +-16.884 -17.332 -1.879 0 0 0 0 0 0 0 +-16.843 -17.4 -1.881 0 0 0 0 0 0 0 +-16.786 -17.45 -1.88 0 0 0 0 0 0 0 +-16.773 -17.492 -1.882 0 0 0 0 0 0 0 +-16.732 -17.559 -1.884 0 0 0 0 0 0 0 +-16.692 -17.627 -1.886 0 0 0 0 0 0 0 +-16.66 -17.704 -1.889 0 0 0 0 0 0 0 +-14.047 -15.111 -1.573 0 0 0 0 0 0 0 +-14.116 -15.281 -1.587 0 0 0 0 0 0 0 +-13.951 -15.151 -1.57 0 0 0 0 0 0 0 +-16.433 -17.966 -1.892 0 0 0 0 0 0 0 +-16.386 -18.028 -1.893 0 0 0 0 0 0 0 +-16.348 -18.1 -1.896 0 0 0 0 0 0 0 +-16.29 -18.15 -1.896 0 0 0 0 0 0 0 +-16.242 -18.211 -1.897 0 0 0 0 0 0 0 +-16.185 -18.262 -1.897 0 0 0 0 0 0 0 +-16.155 -18.286 -1.897 0 0 0 0 0 0 0 +-16.06 -18.295 -1.892 0 0 0 0 0 0 0 +-16.021 -18.366 -1.894 0 0 0 0 0 0 0 +-16.006 -18.466 -1.9 0 0 0 0 0 0 0 +-15.97 -18.542 -1.903 0 0 0 0 0 0 0 +-15.931 -18.615 -1.905 0 0 0 0 0 0 0 +-14.056 -16.524 -1.664 0 0 0 0 0 0 0 +-15.814 -18.655 -1.901 0 0 0 0 0 0 0 +-15.762 -18.712 -1.902 0 0 0 0 0 0 0 +-15.719 -18.781 -1.904 0 0 0 0 0 0 0 +-15.678 -18.852 -1.907 0 0 0 0 0 0 0 +-15.621 -18.904 -1.907 0 0 0 0 0 0 0 +-15.549 -18.938 -1.905 0 0 0 0 0 0 0 +-15.436 -18.92 -1.898 0 0 0 0 0 0 0 +-15.395 -18.93 -1.897 0 0 0 0 0 0 0 +-15.334 -18.977 -1.896 0 0 0 0 0 0 0 +-15.285 -19.039 -1.898 0 0 0 0 0 0 0 +-15.234 -19.098 -1.899 0 0 0 0 0 0 0 +-15.206 -19.186 -1.904 0 0 0 0 0 0 0 +-15.162 -19.254 -1.906 0 0 0 0 0 0 0 +-15.105 -19.307 -1.906 0 0 0 0 0 0 0 +-14.171 -18.17 -1.78 0 0 0 0 0 0 0 +-15.111 -19.504 -1.92 0 0 0 0 0 0 0 +-15.068 -19.575 -1.923 0 0 0 0 0 0 0 +-15.007 -19.622 -1.923 0 0 0 0 0 0 0 +-14.975 -19.709 -1.927 0 0 0 0 0 0 0 +-14.992 -19.861 -1.938 0 0 0 0 0 0 0 +-15.014 -20.021 -1.95 0 0 0 0 0 0 0 +-14.992 -20.123 -1.956 0 0 0 0 0 0 0 +-14.985 -20.18 -1.96 0 0 0 0 0 0 0 +-14.943 -20.256 -1.963 0 0 0 0 0 0 0 +-14.88 -20.304 -1.963 0 0 0 0 0 0 0 +-14.817 -20.351 -1.963 0 0 0 0 0 0 0 +-14.763 -20.412 -1.965 0 0 0 0 0 0 0 +-14.708 -20.471 -1.966 0 0 0 0 0 0 0 +-14.655 -20.533 -1.968 0 0 0 0 0 0 0 +-14.633 -20.571 -1.969 0 0 0 0 0 0 0 +-14.582 -20.636 -1.971 0 0 0 0 0 0 0 +-14.523 -20.69 -1.972 0 0 0 0 0 0 0 +-14.459 -20.737 -1.972 0 0 0 0 0 0 0 +-14.405 -20.799 -1.974 0 0 0 0 0 0 0 +-14.368 -20.885 -1.978 0 0 0 0 0 0 0 +-14.31 -20.942 -1.98 0 0 0 0 0 0 0 +-14.292 -20.986 -1.982 0 0 0 0 0 0 0 +-14.231 -21.037 -1.982 0 0 0 0 0 0 0 +-14.194 -21.126 -1.987 0 0 0 0 0 0 0 +-14.122 -21.163 -1.986 0 0 0 0 0 0 0 +-14.061 -21.215 -1.987 0 0 0 0 0 0 0 +-14.024 -21.304 -1.992 0 0 0 0 0 0 0 +-13.985 -21.392 -1.996 0 0 0 0 0 0 0 +-13.98 -21.457 -2.001 0 0 0 0 0 0 0 +-13.94 -21.543 -2.005 0 0 0 0 0 0 0 +-13.896 -21.623 -2.009 0 0 0 0 0 0 0 +-13.863 -21.722 -2.014 0 0 0 0 0 0 0 +-13.851 -21.855 -2.023 0 0 0 0 0 0 0 +-13.849 -22.005 -2.034 0 0 0 0 0 0 0 +-13.841 -22.146 -2.044 0 0 0 0 0 0 0 +-13.888 -22.3 -2.057 0 0 0 0 0 0 0 +-13.869 -22.426 -2.066 0 0 0 0 0 0 0 +-13.832 -22.524 -2.071 0 0 0 0 0 0 0 +-13.753 -22.554 -2.07 0 0 0 0 0 0 0 +-13.639 -22.525 -2.063 0 0 0 0 0 0 0 +-13.532 -22.508 -2.057 0 0 0 0 0 0 0 +-13.437 -22.51 -2.053 0 0 0 0 0 0 0 +-13.365 -22.469 -2.046 0 0 0 0 0 0 0 +-13.26 -22.453 -2.041 0 0 0 0 0 0 0 +-13.144 -22.417 -2.033 0 0 0 0 0 0 0 +-13.019 -22.365 -2.024 0 0 0 0 0 0 0 +-12.885 -22.295 -2.013 0 0 0 0 0 0 0 +-12.771 -22.258 -2.005 0 0 0 0 0 0 0 +-12.664 -22.234 -1.999 0 0 0 0 0 0 0 +-12.606 -22.212 -1.995 0 0 0 0 0 0 0 +-12.514 -22.211 -1.991 0 0 0 0 0 0 0 +-12.422 -22.212 -1.987 0 0 0 0 0 0 0 +-12.333 -22.216 -1.983 0 0 0 0 0 0 0 +-12.256 -22.241 -1.982 0 0 0 0 0 0 0 +-12.154 -22.222 -1.976 0 0 0 0 0 0 0 +-12.071 -22.235 -1.974 0 0 0 0 0 0 0 +-12.014 -22.214 -1.97 0 0 0 0 0 0 0 +-11.925 -22.215 -1.966 0 0 0 0 0 0 0 +-11.852 -22.247 -1.966 0 0 0 0 0 0 0 +-11.767 -22.256 -1.963 0 0 0 0 0 0 0 +-11.684 -22.268 -1.961 0 0 0 0 0 0 0 +-11.599 -22.274 -1.958 0 0 0 0 0 0 0 +-11.512 -22.279 -1.955 0 0 0 0 0 0 0 +-11.475 -22.293 -1.954 0 0 0 0 0 0 0 +-11.388 -22.295 -1.951 0 0 0 0 0 0 0 +-11.295 -22.285 -1.947 0 0 0 0 0 0 0 +-11.206 -22.283 -1.943 0 0 0 0 0 0 0 +-11.115 -22.277 -1.939 0 0 0 0 0 0 0 +-11.039 -22.299 -1.938 0 0 0 0 0 0 0 +-10.958 -22.311 -1.936 0 0 0 0 0 0 0 +-10.915 -22.312 -1.934 0 0 0 0 0 0 0 +-10.838 -22.331 -1.933 0 0 0 0 0 0 0 +-10.761 -22.353 -1.932 0 0 0 0 0 0 0 +-10.684 -22.372 -1.93 0 0 0 0 0 0 0 +-10.607 -22.391 -1.929 0 0 0 0 0 0 0 +-10.533 -22.417 -1.928 0 0 0 0 0 0 0 +-10.459 -22.443 -1.928 0 0 0 0 0 0 0 +-10.417 -22.443 -1.926 0 0 0 0 0 0 0 +-10.335 -22.452 -1.924 0 0 0 0 0 0 0 +-10.255 -22.463 -1.922 0 0 0 0 0 0 0 +-10.167 -22.457 -1.918 0 0 0 0 0 0 0 +-10.081 -22.454 -1.915 0 0 0 0 0 0 0 +-10.008 -22.48 -1.914 0 0 0 0 0 0 0 +-9.934 -22.504 -1.914 0 0 0 0 0 0 0 +-9.893 -22.507 -1.913 0 0 0 0 0 0 0 +-9.814 -22.52 -1.911 0 0 0 0 0 0 0 +-9.739 -22.539 -1.91 0 0 0 0 0 0 0 +-9.663 -22.559 -1.909 0 0 0 0 0 0 0 +-9.593 -22.591 -1.909 0 0 0 0 0 0 0 +-9.508 -22.588 -1.906 0 0 0 0 0 0 0 +-9.439 -22.621 -1.906 0 0 0 0 0 0 0 +-9.365 -22.643 -1.905 0 0 0 0 0 0 0 +-9.343 -22.693 -1.909 0 0 0 0 0 0 0 +-9.263 -22.7 -1.907 0 0 0 0 0 0 0 +-9.192 -22.729 -1.907 0 0 0 0 0 0 0 +-9.134 -22.791 -1.91 0 0 0 0 0 0 0 +-9.07 -22.84 -1.912 0 0 0 0 0 0 0 +-8.987 -22.841 -1.909 0 0 0 0 0 0 0 +-8.884 -22.789 -1.902 0 0 0 0 0 0 0 +-8.849 -22.803 -1.902 0 0 0 0 0 0 0 +-8.764 -22.797 -1.899 0 0 0 0 0 0 0 +-8.687 -22.812 -1.897 0 0 0 0 0 0 0 +-8.609 -22.822 -1.896 0 0 0 0 0 0 0 +-8.536 -22.845 -1.896 0 0 0 0 0 0 0 +-8.466 -22.876 -1.896 0 0 0 0 0 0 0 +-8.428 -22.883 -1.895 0 0 0 0 0 0 0 +-8.35 -22.893 -1.894 0 0 0 0 0 0 0 +-8.27 -22.896 -1.892 0 0 0 0 0 0 0 +-8.192 -22.907 -1.89 0 0 0 0 0 0 0 +-8.118 -22.927 -1.89 0 0 0 0 0 0 0 +-8.048 -22.956 -1.89 0 0 0 0 0 0 0 +-7.978 -22.989 -1.891 0 0 0 0 0 0 0 +-7.905 -23.01 -1.891 0 0 0 0 0 0 0 +-7.872 -23.032 -1.891 0 0 0 0 0 0 0 +-7.8 -23.059 -1.892 0 0 0 0 0 0 0 +-7.732 -23.098 -1.893 0 0 0 0 0 0 0 +-7.66 -23.124 -1.893 0 0 0 0 0 0 0 +-7.57 -23.095 -1.888 0 0 0 0 0 0 0 +-7.478 -23.058 -1.883 0 0 0 0 0 0 0 +-7.392 -23.04 -1.879 0 0 0 0 0 0 0 +-7.348 -23.027 -1.877 0 0 0 0 0 0 0 +-7.266 -23.017 -1.874 0 0 0 0 0 0 0 +-7.191 -23.03 -1.873 0 0 0 0 0 0 0 +-7.114 -23.04 -1.872 0 0 0 0 0 0 0 +-7.04 -23.056 -1.871 0 0 0 0 0 0 0 +-6.96 -23.053 -1.869 0 0 0 0 0 0 0 +-6.883 -23.06 -1.868 0 0 0 0 0 0 0 +-6.768 -23.069 -1.866 0 0 0 0 0 0 0 +-6.72 -23.178 -1.874 0 0 0 0 0 0 0 +-6.605 -23.05 -1.86 0 0 0 0 0 0 0 +-6.536 -23.084 -1.861 0 0 0 0 0 0 0 +-6.452 -23.062 -1.858 0 0 0 0 0 0 0 +-6.369 -23.044 -1.854 0 0 0 0 0 0 0 +-6.342 -23.088 -1.857 0 0 0 0 0 0 0 +-6.278 -23.139 -1.86 0 0 0 0 0 0 0 +-6.208 -23.17 -1.861 0 0 0 0 0 0 0 +-6.147 -23.232 -1.865 0 0 0 0 0 0 0 +-6.087 -23.303 -1.87 0 0 0 0 0 0 0 +-6.008 -23.301 -1.868 0 0 0 0 0 0 0 +-5.953 -23.389 -1.874 0 0 0 0 0 0 0 +-5.876 -23.24 -1.86 0 0 0 0 0 0 0 +-5.793 -23.216 -1.856 0 0 0 0 0 0 0 +-5.715 -23.216 -1.854 0 0 0 0 0 0 0 +-5.639 -23.219 -1.853 0 0 0 0 0 0 0 +-5.568 -23.244 -1.854 0 0 0 0 0 0 0 +-5.49 -23.244 -1.852 0 0 0 0 0 0 0 +-5.414 -23.248 -1.851 0 0 0 0 0 0 0 +-5.379 -23.264 -1.852 0 0 0 0 0 0 0 +-5.306 -23.279 -1.852 0 0 0 0 0 0 0 +-5.229 -23.278 -1.85 0 0 0 0 0 0 0 +-5.159 -23.31 -1.851 0 0 0 0 0 0 0 +-5.085 -23.324 -1.851 0 0 0 0 0 0 0 +-5.01 -23.328 -1.85 0 0 0 0 0 0 0 +-4.936 -23.34 -1.85 0 0 0 0 0 0 0 +-4.901 -23.357 -1.851 0 0 0 0 0 0 0 +-4.843 -23.449 -1.857 0 0 0 0 0 0 0 +-4.775 -23.493 -1.86 0 0 0 0 0 0 0 +-4.699 -23.494 -1.859 0 0 0 0 0 0 0 +-4.654 -23.659 -1.872 0 0 0 0 0 0 0 +-4.449 -23.391 -1.846 0 0 0 0 0 0 0 +-4.394 -23.3 -1.837 0 0 0 0 0 0 0 +-4.314 -23.272 -1.834 0 0 0 0 0 0 0 +-4.229 -23.223 -1.828 0 0 0 0 0 0 0 +-4.145 -23.173 -1.823 0 0 0 0 0 0 0 +-4.063 -23.137 -1.818 0 0 0 0 0 0 0 +-3.988 -23.136 -1.817 0 0 0 0 0 0 0 +-3.919 -23.17 -1.819 0 0 0 0 0 0 0 +-3.884 -23.184 -1.82 0 0 0 0 0 0 0 +-3.81 -23.186 -1.819 0 0 0 0 0 0 0 +-3.737 -23.2 -1.819 0 0 0 0 0 0 0 +-3.663 -23.2 -1.818 0 0 0 0 0 0 0 +-3.586 -23.188 -1.816 0 0 0 0 0 0 0 +-3.511 -23.187 -1.815 0 0 0 0 0 0 0 +-3.476 -23.452 -1.837 0 0 0 0 0 0 0 +-3.404 -23.219 -1.816 0 0 0 0 0 0 0 +-3.332 -23.232 -1.817 0 0 0 0 0 0 0 +-3.258 -23.24 -1.816 0 0 0 0 0 0 0 +-3.186 -23.256 -1.817 0 0 0 0 0 0 0 +-3.115 -23.284 -1.818 0 0 0 0 0 0 0 +-3.045 -23.317 -1.821 0 0 0 0 0 0 0 +-2.977 -23.364 -1.824 0 0 0 0 0 0 0 +-2.945 -23.408 -1.827 0 0 0 0 0 0 0 +-2.874 -23.435 -1.829 0 0 0 0 0 0 0 +-2.801 -23.45 -1.829 0 0 0 0 0 0 0 +-2.727 -23.459 -1.829 0 0 0 0 0 0 0 +-2.223 -19.627 -1.497 0 0 0 0 0 0 0 +-1.974 -17.909 -1.348 0 0 0 0 0 0 0 +-1.899 -17.737 -1.332 0 0 0 0 0 0 0 +-1.625 -16.919 -1.26 0 0 0 0 0 0 0 +-1.571 -16.912 -1.259 0 0 0 0 0 0 0 +-1.469 -16.976 -1.264 0 0 0 0 0 0 0 +-1.457 -17.151 -1.279 0 0 0 0 0 0 0 +-1.331 -16.923 -1.258 0 0 0 0 0 0 0 +-1.281 -16.979 -1.263 0 0 0 0 0 0 0 +-1.226 -16.957 -1.261 0 0 0 0 0 0 0 +-1.17 -16.927 -1.258 0 0 0 0 0 0 0 +-1.118 -16.944 -1.259 0 0 0 0 0 0 0 +-1.037 -16.932 -1.257 0 0 0 0 0 0 0 +-0.983 -16.925 -1.256 0 0 0 0 0 0 0 +-0.933 -16.978 -1.261 0 0 0 0 0 0 0 +-0.88 -16.98 -1.261 0 0 0 0 0 0 0 +-0.826 -16.971 -1.26 0 0 0 0 0 0 0 +-0.774 -17.013 -1.263 0 0 0 0 0 0 0 +-0.721 -17.02 -1.263 0 0 0 0 0 0 0 +-0.643 -17.081 -1.268 0 0 0 0 0 0 0 +-0.597 -17.336 -1.29 0 0 0 0 0 0 0 +-0.481 -17.074 -1.267 0 0 0 0 0 0 0 +-0.428 -17.095 -1.269 0 0 0 0 0 0 0 +-0.391 -23.305 -1.803 0 0 0 0 0 0 0 +-0.314 -23.027 -1.779 0 0 0 0 0 0 0 +-0.239 -22.713 -1.752 0 0 0 0 0 0 0 +-0.166 -22.5 -1.733 0 0 0 0 0 0 0 +-0.096 -22.475 -1.731 0 0 0 0 0 0 0 +-0.06 -22.429 -1.727 0 0 0 0 0 0 0 +0.01 -22.449 -1.729 0 0 0 0 0 0 0 +0.081 -22.471 -1.731 0 0 0 0 0 0 0 +0.151 -22.457 -1.73 0 0 0 0 0 0 0 +0.222 -22.468 -1.731 0 0 0 0 0 0 0 +0.292 -22.457 -1.73 0 0 0 0 0 0 0 +0.363 -22.454 -1.73 0 0 0 0 0 0 0 +0.433 -22.445 -1.729 0 0 0 0 0 0 0 +0.468 -22.426 -1.727 0 0 0 0 0 0 0 +0.538 -22.403 -1.725 0 0 0 0 0 0 0 +0.607 -22.341 -1.72 0 0 0 0 0 0 0 +0.676 -22.319 -1.719 0 0 0 0 0 0 0 +0.745 -22.269 -1.714 0 0 0 0 0 0 0 +0.814 -22.235 -1.712 0 0 0 0 0 0 0 +0.883 -22.214 -1.71 0 0 0 0 0 0 0 +0.915 -22.155 -1.705 0 0 0 0 0 0 0 +0.983 -22.108 -1.701 0 0 0 0 0 0 0 +1.051 -22.081 -1.699 0 0 0 0 0 0 0 +1.119 -22.052 -1.697 0 0 0 0 0 0 0 +1.186 -22.013 -1.694 0 0 0 0 0 0 0 +1.254 -21.991 -1.693 0 0 0 0 0 0 0 +1.321 -21.953 -1.69 0 0 0 0 0 0 0 +1.353 -21.911 -1.686 0 0 0 0 0 0 0 +1.42 -21.881 -1.684 0 0 0 0 0 0 0 +1.485 -21.815 -1.679 0 0 0 0 0 0 0 +1.552 -21.788 -1.677 0 0 0 0 0 0 0 +1.621 -21.793 -1.678 0 0 0 0 0 0 0 +1.689 -21.786 -1.677 0 0 0 0 0 0 0 +1.755 -21.751 -1.675 0 0 0 0 0 0 0 +1.786 -21.704 -1.671 0 0 0 0 0 0 0 +1.85 -21.649 -1.667 0 0 0 0 0 0 0 +1.914 -21.603 -1.663 0 0 0 0 0 0 0 +1.977 -21.547 -1.659 0 0 0 0 0 0 0 +2.043 -21.517 -1.657 0 0 0 0 0 0 0 +2.11 -21.507 -1.657 0 0 0 0 0 0 0 +2.176 -21.486 -1.656 0 0 0 0 0 0 0 +2.207 -21.455 -1.653 0 0 0 0 0 0 0 +2.274 -21.444 -1.653 0 0 0 0 0 0 0 +2.34 -21.429 -1.652 0 0 0 0 0 0 0 +2.405 -21.4 -1.65 0 0 0 0 0 0 0 +2.473 -21.396 -1.651 0 0 0 0 0 0 0 +2.541 -21.398 -1.651 0 0 0 0 0 0 0 +2.608 -21.384 -1.651 0 0 0 0 0 0 0 +2.639 -21.364 -1.65 0 0 0 0 0 0 0 +2.707 -21.358 -1.65 0 0 0 0 0 0 0 +2.768 -21.307 -1.646 0 0 0 0 0 0 0 +2.832 -21.271 -1.644 0 0 0 0 0 0 0 +2.899 -21.264 -1.644 0 0 0 0 0 0 0 +2.959 -21.207 -1.64 0 0 0 0 0 0 0 +3.023 -21.178 -1.638 0 0 0 0 0 0 0 +3.054 -21.162 -1.637 0 0 0 0 0 0 0 +3.116 -21.119 -1.634 0 0 0 0 0 0 0 +3.178 -21.081 -1.632 0 0 0 0 0 0 0 +3.238 -21.032 -1.628 0 0 0 0 0 0 0 +3.297 -20.98 -1.625 0 0 0 0 0 0 0 +3.355 -20.918 -1.62 0 0 0 0 0 0 0 +3.422 -20.914 -1.621 0 0 0 0 0 0 0 +3.443 -20.837 -1.615 0 0 0 0 0 0 0 +3.489 -20.715 -1.605 0 0 0 0 0 0 0 +3.446 -20.077 -1.55 0 0 0 0 0 0 0 +3.556 -20.335 -1.574 0 0 0 0 0 0 0 +3.578 -20.086 -1.553 0 0 0 0 0 0 0 +3.639 -20.065 -1.552 0 0 0 0 0 0 0 +3.713 -20.115 -1.557 0 0 0 0 0 0 0 +3.742 -20.093 -1.556 0 0 0 0 0 0 0 +3.658 -19.312 -1.489 0 0 0 0 0 0 0 +3.853 -19.989 -1.549 0 0 0 0 0 0 0 +3.89 -19.85 -1.538 0 0 0 0 0 0 0 +3.935 -19.747 -1.53 0 0 0 0 0 0 0 +3.95 -19.505 -1.51 0 0 0 0 0 0 0 +3.962 -19.258 -1.489 0 0 0 0 0 0 0 +3.947 -19.035 -1.47 0 0 0 0 0 0 0 +1.359 -6.533 -0.373 0 0 0 0 0 0 0 +1.372 -6.496 -0.37 0 0 0 0 0 0 0 +1.396 -6.507 -0.371 0 0 0 0 0 0 0 +1.413 -6.487 -0.37 0 0 0 0 0 0 0 +1.429 -6.461 -0.368 0 0 0 0 0 0 0 +1.445 -6.439 -0.366 0 0 0 0 0 0 0 +1.464 -6.476 -0.37 0 0 0 0 0 0 0 +1.492 -6.502 -0.372 0 0 0 0 0 0 0 +1.511 -6.496 -0.372 0 0 0 0 0 0 0 +1.536 -6.506 -0.374 0 0 0 0 0 0 0 +1.558 -6.509 -0.374 0 0 0 0 0 0 0 +1.581 -6.514 -0.375 0 0 0 0 0 0 0 +4.457 -17.809 -1.377 0 0 0 0 0 0 0 +4.515 -17.802 -1.378 0 0 0 0 0 0 0 +4.551 -17.713 -1.371 0 0 0 0 0 0 0 +4.331 -16.642 -1.277 0 0 0 0 0 0 0 +4.373 -16.59 -1.274 0 0 0 0 0 0 0 +4.412 -16.528 -1.27 0 0 0 0 0 0 0 +4.501 -16.653 -1.282 0 0 0 0 0 0 0 +4.477 -16.463 -1.266 0 0 0 0 0 0 0 +4.477 -16.259 -1.249 0 0 0 0 0 0 0 +4.566 -16.383 -1.261 0 0 0 0 0 0 0 +4.635 -16.428 -1.266 0 0 0 0 0 0 0 +4.632 -16.225 -1.25 0 0 0 0 0 0 0 +4.604 -15.937 -1.225 0 0 0 0 0 0 0 +4.702 -16.085 -1.24 0 0 0 0 0 0 0 +4.725 -16.07 -1.239 0 0 0 0 0 0 0 +4.756 -15.992 -1.233 0 0 0 0 0 0 0 +4.786 -15.908 -1.227 0 0 0 0 0 0 0 +4.892 -16.076 -1.244 0 0 0 0 0 0 0 +4.759 -15.471 -1.19 0 0 0 0 0 0 0 +4.839 -15.554 -1.199 0 0 0 0 0 0 0 +4.851 -15.421 -1.189 0 0 0 0 0 0 0 +4.863 -15.376 -1.185 0 0 0 0 0 0 0 +4.885 -15.281 -1.178 0 0 0 0 0 0 0 +4.904 -15.176 -1.17 0 0 0 0 0 0 0 +5 -15.147 -1.17 0 0 0 0 0 0 0 +5.1 -15.288 -1.184 0 0 0 0 0 0 0 +5.137 -15.238 -1.181 0 0 0 0 0 0 0 +5.137 -15.16 -1.175 0 0 0 0 0 0 0 +5.198 -15.182 -1.178 0 0 0 0 0 0 0 +5.239 -15.148 -1.177 0 0 0 0 0 0 0 +5.298 -15.162 -1.18 0 0 0 0 0 0 0 +3.713 -10.544 -0.76 0 0 0 0 0 0 0 +3.787 -10.541 -0.762 0 0 0 0 0 0 0 +3.781 -10.475 -0.756 0 0 0 0 0 0 0 +3.878 -10.533 -0.764 0 0 0 0 0 0 0 +3.912 -10.525 -0.764 0 0 0 0 0 0 0 +3.957 -10.544 -0.767 0 0 0 0 0 0 0 +5.872 -15.465 -1.221 0 0 0 0 0 0 0 +5.904 -15.404 -1.217 0 0 0 0 0 0 0 +5.949 -15.447 -1.222 0 0 0 0 0 0 0 +6.005 -15.449 -1.224 0 0 0 0 0 0 0 +5.259 -13.414 -1.038 0 0 0 0 0 0 0 +6.073 -15.338 -1.217 0 0 0 0 0 0 0 +6.102 -15.269 -1.213 0 0 0 0 0 0 0 +6.208 -15.394 -1.226 0 0 0 0 0 0 0 +6.259 -15.382 -1.227 0 0 0 0 0 0 0 +5.474 -13.4 -1.043 0 0 0 0 0 0 0 +5.491 -13.323 -1.038 0 0 0 0 0 0 0 +5.505 -13.238 -1.031 0 0 0 0 0 0 0 +5.522 -13.164 -1.026 0 0 0 0 0 0 0 +5.559 -13.135 -1.025 0 0 0 0 0 0 0 +5.591 -13.098 -1.023 0 0 0 0 0 0 0 +5.641 -13.1 -1.025 0 0 0 0 0 0 0 +5.675 -13.122 -1.028 0 0 0 0 0 0 0 +5.69 -13.044 -1.022 0 0 0 0 0 0 0 +5.802 -13.187 -1.037 0 0 0 0 0 0 0 +5.802 -13.076 -1.029 0 0 0 0 0 0 0 +5.779 -12.916 -1.015 0 0 0 0 0 0 0 +5.845 -12.954 -1.021 0 0 0 0 0 0 0 +5.882 -12.926 -1.02 0 0 0 0 0 0 0 +5.918 -12.951 -1.023 0 0 0 0 0 0 0 +5.882 -12.768 -1.007 0 0 0 0 0 0 0 +5.934 -12.773 -1.01 0 0 0 0 0 0 0 +6.006 -12.823 -1.016 0 0 0 0 0 0 0 +5.946 -12.593 -0.996 0 0 0 0 0 0 0 +6.023 -12.652 -1.004 0 0 0 0 0 0 0 +5.985 -12.471 -0.988 0 0 0 0 0 0 0 +6.012 -12.478 -0.99 0 0 0 0 0 0 0 +5.998 -12.252 -0.972 0 0 0 0 0 0 0 +6.112 -12.385 -0.986 0 0 0 0 0 0 0 +6.147 -12.359 -0.986 0 0 0 0 0 0 0 +6.166 -12.3 -0.982 0 0 0 0 0 0 0 +6.295 -12.411 -0.995 0 0 0 0 0 0 0 +6.333 -12.39 -0.995 0 0 0 0 0 0 0 +6.429 -12.383 -0.998 0 0 0 0 0 0 0 +6.432 -12.296 -0.992 0 0 0 0 0 0 0 +6.353 -12.054 -0.97 0 0 0 0 0 0 0 +6.431 -12.108 -0.977 0 0 0 0 0 0 0 +6.456 -12.11 -0.979 0 0 0 0 0 0 0 +6.526 -12.149 -0.985 0 0 0 0 0 0 0 +6.551 -12.104 -0.982 0 0 0 0 0 0 0 +6.631 -12.16 -0.99 0 0 0 0 0 0 0 +6.678 -12.155 -0.991 0 0 0 0 0 0 0 +6.652 -12.019 -0.98 0 0 0 0 0 0 0 +6.623 -11.878 -0.968 0 0 0 0 0 0 0 +6.709 -11.988 -0.98 0 0 0 0 0 0 0 +6.688 -11.862 -0.97 0 0 0 0 0 0 0 +6.688 -11.777 -0.963 0 0 0 0 0 0 0 +6.707 -11.725 -0.96 0 0 0 0 0 0 0 +6.723 -11.668 -0.957 0 0 0 0 0 0 0 +6.76 -11.647 -0.957 0 0 0 0 0 0 0 +6.779 -11.596 -0.954 0 0 0 0 0 0 0 +6.814 -11.571 -0.953 0 0 0 0 0 0 0 +6.81 -11.525 -0.95 0 0 0 0 0 0 0 +6.973 -11.632 -0.965 0 0 0 0 0 0 0 +6.999 -11.593 -0.963 0 0 0 0 0 0 0 +7.113 -11.697 -0.976 0 0 0 0 0 0 0 +7.121 -11.628 -0.971 0 0 0 0 0 0 0 +7.207 -11.686 -0.979 0 0 0 0 0 0 0 +7.13 -11.52 -0.964 0 0 0 0 0 0 0 +7.115 -11.417 -0.955 0 0 0 0 0 0 0 +7.14 -11.377 -0.954 0 0 0 0 0 0 0 +7.181 -11.363 -0.955 0 0 0 0 0 0 0 +7.259 -11.406 -0.961 0 0 0 0 0 0 0 +7.374 -11.507 -0.974 0 0 0 0 0 0 0 +7.333 -11.404 -0.964 0 0 0 0 0 0 0 +7.364 -11.374 -0.964 0 0 0 0 0 0 0 +7.37 -11.304 -0.959 0 0 0 0 0 0 0 +7.335 -11.174 -0.948 0 0 0 0 0 0 0 +7.376 -11.161 -0.949 0 0 0 0 0 0 0 +7.512 -11.289 -0.965 0 0 0 0 0 0 0 +7.706 -11.5 -0.989 0 0 0 0 0 0 0 +7.855 -11.683 -1.009 0 0 0 0 0 0 0 +7.584 -11.205 -0.962 0 0 0 0 0 0 0 +7.594 -11.145 -0.958 0 0 0 0 0 0 0 +7.59 -10.99 -0.947 0 0 0 0 0 0 0 +7.584 -10.907 -0.941 0 0 0 0 0 0 0 +7.64 -10.915 -0.944 0 0 0 0 0 0 0 +7.678 -10.932 -0.947 0 0 0 0 0 0 0 +7.717 -10.914 -0.948 0 0 0 0 0 0 0 +7.757 -10.898 -0.949 0 0 0 0 0 0 0 +7.729 -10.788 -0.94 0 0 0 0 0 0 0 +7.779 -10.786 -0.942 0 0 0 0 0 0 0 +7.798 -10.741 -0.94 0 0 0 0 0 0 0 +7.85 -10.742 -0.943 0 0 0 0 0 0 0 +7.905 -10.746 -0.946 0 0 0 0 0 0 0 +7.932 -10.746 -0.947 0 0 0 0 0 0 0 +8.312 -11.186 -0.997 0 0 0 0 0 0 0 +8.004 -10.703 -0.948 0 0 0 0 0 0 0 +8.006 -10.636 -0.943 0 0 0 0 0 0 0 +7.931 -10.468 -0.928 0 0 0 0 0 0 0 +8.098 -10.619 -0.947 0 0 0 0 0 0 0 +8.087 -10.535 -0.941 0 0 0 0 0 0 0 +8.1 -10.518 -0.94 0 0 0 0 0 0 0 +8.153 -10.519 -0.943 0 0 0 0 0 0 0 +8.145 -10.44 -0.937 0 0 0 0 0 0 0 +8.138 -10.364 -0.932 0 0 0 0 0 0 0 +8.18 -10.351 -0.933 0 0 0 0 0 0 0 +8.213 -10.325 -0.933 0 0 0 0 0 0 0 +8.25 -10.306 -0.934 0 0 0 0 0 0 0 +8.351 -10.398 -0.945 0 0 0 0 0 0 0 +8.424 -10.421 -0.951 0 0 0 0 0 0 0 +8.535 -10.49 -0.962 0 0 0 0 0 0 0 +8.883 -10.847 -1.004 0 0 0 0 0 0 0 +8.537 -10.36 -0.953 0 0 0 0 0 0 0 +9.455 -11.396 -1.072 0 0 0 0 0 0 0 +8.746 -10.511 -0.974 0 0 0 0 0 0 0 +8.35 -9.974 -0.917 0 0 0 0 0 0 0 +8.359 -9.92 -0.914 0 0 0 0 0 0 0 +8.401 -9.907 -0.916 0 0 0 0 0 0 0 +8.427 -9.875 -0.915 0 0 0 0 0 0 0 +8.465 -9.856 -0.916 0 0 0 0 0 0 0 +8.481 -9.813 -0.914 0 0 0 0 0 0 0 +8.523 -9.798 -0.915 0 0 0 0 0 0 0 +8.516 -9.759 -0.912 0 0 0 0 0 0 0 +8.542 -9.728 -0.912 0 0 0 0 0 0 0 +8.581 -9.649 -0.909 0 0 0 0 0 0 0 +8.745 -9.71 -0.922 0 0 0 0 0 0 0 +8.76 -9.665 -0.92 0 0 0 0 0 0 0 +8.791 -9.669 -0.922 0 0 0 0 0 0 0 +8.879 -9.704 -0.93 0 0 0 0 0 0 0 +8.906 -9.672 -0.929 0 0 0 0 0 0 0 +8.895 -9.6 -0.924 0 0 0 0 0 0 0 +8.905 -9.55 -0.921 0 0 0 0 0 0 0 +9.02 -9.612 -0.932 0 0 0 0 0 0 0 +9.225 -9.769 -0.954 0 0 0 0 0 0 0 +9.662 -10.197 -1.007 0 0 0 0 0 0 0 +9.631 -10.101 -0.999 0 0 0 0 0 0 0 +9.882 -10.299 -1.026 0 0 0 0 0 0 0 +9.958 -10.312 -1.031 0 0 0 0 0 0 0 +8.92 -9.184 -0.9 0 0 0 0 0 0 0 +8.974 -9.181 -0.903 0 0 0 0 0 0 0 +8.934 -9.083 -0.894 0 0 0 0 0 0 0 +9.669 -9.797 -0.982 0 0 0 0 0 0 0 +9.053 -9.061 -0.9 0 0 0 0 0 0 0 +9.092 -9.042 -0.901 0 0 0 0 0 0 0 +9.164 -9.057 -0.907 0 0 0 0 0 0 0 +9.719 -9.544 -0.97 0 0 0 0 0 0 0 +9.713 -9.507 -0.967 0 0 0 0 0 0 0 +9.796 -9.528 -0.974 0 0 0 0 0 0 0 +9.164 -8.86 -0.895 0 0 0 0 0 0 0 +9.068 -8.713 -0.88 0 0 0 0 0 0 0 +9.123 -8.71 -0.883 0 0 0 0 0 0 0 +9.739 -9.239 -0.953 0 0 0 0 0 0 0 +9.254 -8.725 -0.892 0 0 0 0 0 0 0 +9.749 -9.104 -0.946 0 0 0 0 0 0 0 +9.767 -9.063 -0.944 0 0 0 0 0 0 0 +9.774 -9.013 -0.942 0 0 0 0 0 0 0 +9.786 -8.967 -0.94 0 0 0 0 0 0 0 +9.781 -8.907 -0.936 0 0 0 0 0 0 0 +9.805 -8.872 -0.936 0 0 0 0 0 0 0 +9.796 -8.808 -0.931 0 0 0 0 0 0 0 +9.279 -8.319 -0.87 0 0 0 0 0 0 0 +9.286 -8.272 -0.868 0 0 0 0 0 0 0 +9.298 -8.231 -0.866 0 0 0 0 0 0 0 +9.288 -8.171 -0.862 0 0 0 0 0 0 0 +9.312 -8.14 -0.862 0 0 0 0 0 0 0 +9.342 -8.115 -0.863 0 0 0 0 0 0 0 +9.343 -8.064 -0.86 0 0 0 0 0 0 0 +9.361 -8.054 -0.86 0 0 0 0 0 0 0 +9.375 -8.015 -0.859 0 0 0 0 0 0 0 +9.399 -7.984 -0.859 0 0 0 0 0 0 0 +9.418 -7.95 -0.858 0 0 0 0 0 0 0 +9.466 -7.939 -0.861 0 0 0 0 0 0 0 +9.469 -7.892 -0.859 0 0 0 0 0 0 0 +9.472 -7.844 -0.856 0 0 0 0 0 0 0 +9.491 -7.834 -0.857 0 0 0 0 0 0 0 +9.515 -7.804 -0.857 0 0 0 0 0 0 0 +9.554 -7.786 -0.858 0 0 0 0 0 0 0 +9.569 -7.748 -0.857 0 0 0 0 0 0 0 +9.59 -7.716 -0.857 0 0 0 0 0 0 0 +9.578 -7.657 -0.853 0 0 0 0 0 0 0 +9.604 -7.628 -0.853 0 0 0 0 0 0 0 +9.62 -7.617 -0.854 0 0 0 0 0 0 0 +9.651 -7.591 -0.854 0 0 0 0 0 0 0 +9.648 -7.54 -0.852 0 0 0 0 0 0 0 +9.648 -7.492 -0.849 0 0 0 0 0 0 0 +9.662 -7.454 -0.848 0 0 0 0 0 0 0 +9.676 -7.416 -0.847 0 0 0 0 0 0 0 +9.667 -7.362 -0.844 0 0 0 0 0 0 0 +9.669 -7.339 -0.842 0 0 0 0 0 0 0 +9.698 -7.314 -0.843 0 0 0 0 0 0 0 +9.704 -7.27 -0.841 0 0 0 0 0 0 0 +9.723 -7.237 -0.841 0 0 0 0 0 0 0 +9.749 -7.209 -0.841 0 0 0 0 0 0 0 +9.78 -7.184 -0.842 0 0 0 0 0 0 0 +9.835 -7.177 -0.846 0 0 0 0 0 0 0 +9.872 -7.18 -0.848 0 0 0 0 0 0 0 +9.914 -7.163 -0.85 0 0 0 0 0 0 0 +9.964 -7.152 -0.853 0 0 0 0 0 0 0 +10.012 -7.139 -0.856 0 0 0 0 0 0 0 +10.059 -7.124 -0.859 0 0 0 0 0 0 0 +10.103 -7.108 -0.861 0 0 0 0 0 0 0 +10.125 -7.076 -0.861 0 0 0 0 0 0 0 +10.431 -7.264 -0.892 0 0 0 0 0 0 0 +10.542 -7.293 -0.901 0 0 0 0 0 0 0 +10.558 -7.255 -0.9 0 0 0 0 0 0 0 +10.584 -7.224 -0.901 0 0 0 0 0 0 0 +10.605 -7.19 -0.9 0 0 0 0 0 0 0 +10.625 -7.154 -0.9 0 0 0 0 0 0 0 +10.642 -7.117 -0.9 0 0 0 0 0 0 0 +10.653 -7.101 -0.9 0 0 0 0 0 0 0 +10.674 -7.066 -0.899 0 0 0 0 0 0 0 +10.699 -7.035 -0.9 0 0 0 0 0 0 0 +10.725 -7.003 -0.9 0 0 0 0 0 0 0 +10.753 -6.974 -0.901 0 0 0 0 0 0 0 +10.763 -6.932 -0.9 0 0 0 0 0 0 0 +10.79 -6.902 -0.9 0 0 0 0 0 0 0 +10.801 -6.885 -0.9 0 0 0 0 0 0 0 +10.826 -6.853 -0.9 0 0 0 0 0 0 0 +10.852 -6.822 -0.901 0 0 0 0 0 0 0 +10.869 -6.785 -0.9 0 0 0 0 0 0 0 +10.883 -6.746 -0.9 0 0 0 0 0 0 0 +10.909 -6.715 -0.9 0 0 0 0 0 0 0 +10.937 -6.685 -0.901 0 0 0 0 0 0 0 +10.938 -6.662 -0.9 0 0 0 0 0 0 0 +10.955 -6.625 -0.9 0 0 0 0 0 0 0 +11 -6.605 -0.902 0 0 0 0 0 0 0 +11.038 -6.581 -0.904 0 0 0 0 0 0 0 +11.096 -6.568 -0.907 0 0 0 0 0 0 0 +11.148 -6.551 -0.911 0 0 0 0 0 0 0 +11.196 -6.532 -0.913 0 0 0 0 0 0 0 +11.244 -6.537 -0.917 0 0 0 0 0 0 0 +11.292 -6.517 -0.92 0 0 0 0 0 0 0 +11.342 -6.499 -0.923 0 0 0 0 0 0 0 +11.393 -6.481 -0.926 0 0 0 0 0 0 0 +11.45 -6.465 -0.929 0 0 0 0 0 0 0 +11.498 -6.445 -0.932 0 0 0 0 0 0 0 +11.559 -6.431 -0.936 0 0 0 0 0 0 0 +11.605 -6.433 -0.94 0 0 0 0 0 0 0 +11.646 -6.408 -0.942 0 0 0 0 0 0 0 +11.705 -6.392 -0.945 0 0 0 0 0 0 0 +11.757 -6.372 -0.949 0 0 0 0 0 0 0 +11.808 -6.352 -0.952 0 0 0 0 0 0 0 +11.865 -6.335 -0.955 0 0 0 0 0 0 0 +11.924 -6.318 -0.959 0 0 0 0 0 0 0 +11.974 -6.321 -0.963 0 0 0 0 0 0 0 +12.068 -6.322 -0.97 0 0 0 0 0 0 0 +12.267 -6.376 -0.987 0 0 0 0 0 0 0 +8.782 -4.538 -0.649 0 0 0 0 0 0 0 +8.779 -4.502 -0.647 0 0 0 0 0 0 0 +8.81 -4.483 -0.649 0 0 0 0 0 0 0 +8.821 -4.454 -0.648 0 0 0 0 0 0 0 +12.537 -6.293 -1.005 0 0 0 0 0 0 0 +12.595 -6.272 -1.009 0 0 0 0 0 0 0 +12.657 -6.254 -1.013 0 0 0 0 0 0 0 +12.698 -6.224 -1.015 0 0 0 0 0 0 0 +12.75 -6.2 -1.018 0 0 0 0 0 0 0 +12.784 -6.167 -1.019 0 0 0 0 0 0 0 +12.821 -6.135 -1.021 0 0 0 0 0 0 0 +12.805 -6.103 -1.018 0 0 0 0 0 0 0 +12.826 -6.064 -1.019 0 0 0 0 0 0 0 +12.865 -6.033 -1.02 0 0 0 0 0 0 0 +12.942 -6.019 -1.026 0 0 0 0 0 0 0 +12.981 -5.987 -1.028 0 0 0 0 0 0 0 +13.048 -5.969 -1.032 0 0 0 0 0 0 0 +13.113 -5.948 -1.037 0 0 0 0 0 0 0 +13.171 -5.95 -1.041 0 0 0 0 0 0 0 +13.25 -5.935 -1.047 0 0 0 0 0 0 0 +13.296 -5.906 -1.05 0 0 0 0 0 0 0 +13.352 -5.881 -1.053 0 0 0 0 0 0 0 +13.424 -5.862 -1.058 0 0 0 0 0 0 0 +13.495 -5.842 -1.063 0 0 0 0 0 0 0 +13.552 -5.816 -1.067 0 0 0 0 0 0 0 +13.614 -5.818 -1.072 0 0 0 0 0 0 0 +13.678 -5.794 -1.076 0 0 0 0 0 0 0 +13.737 -5.768 -1.08 0 0 0 0 0 0 0 +13.81 -5.748 -1.085 0 0 0 0 0 0 0 +13.871 -5.722 -1.089 0 0 0 0 0 0 0 +13.968 -5.711 -1.096 0 0 0 0 0 0 0 +13.786 -5.586 -1.078 0 0 0 0 0 0 0 +13.921 -5.615 -1.089 0 0 0 0 0 0 0 +13.864 -5.542 -1.083 0 0 0 0 0 0 0 +14.021 -5.553 -1.095 0 0 0 0 0 0 0 +14.279 -5.603 -1.118 0 0 0 0 0 0 0 +14.314 -5.565 -1.119 0 0 0 0 0 0 0 +14.164 -5.456 -1.104 0 0 0 0 0 0 0 +14.005 -5.345 -1.088 0 0 0 0 0 0 0 +14.062 -5.29 -1.091 0 0 0 0 0 0 0 +14.221 -5.299 -1.104 0 0 0 0 0 0 0 +14.301 -5.277 -1.109 0 0 0 0 0 0 0 +14.018 -5.124 -1.082 0 0 0 0 0 0 0 +14.363 -5.147 -1.111 0 0 0 0 0 0 0 +14.25 -5.056 -1.099 0 0 0 0 0 0 0 +14.222 -5.021 -1.096 0 0 0 0 0 0 0 +14.567 -5.091 -1.126 0 0 0 0 0 0 0 +14.434 -4.994 -1.112 0 0 0 0 0 0 0 +14.325 -4.906 -1.101 0 0 0 0 0 0 0 +14.388 -4.877 -1.105 0 0 0 0 0 0 0 +15.356 -5.15 -1.191 0 0 0 0 0 0 0 +15.347 -5.12 -1.19 0 0 0 0 0 0 0 +14.993 -4.95 -1.156 0 0 0 0 0 0 0 +14.747 -4.818 -1.133 0 0 0 0 0 0 0 +14.651 -4.736 -1.123 0 0 0 0 0 0 0 +14.656 -4.687 -1.122 0 0 0 0 0 0 0 +15.25 -4.771 -1.173 0 0 0 0 0 0 0 +15.296 -4.732 -1.175 0 0 0 0 0 0 0 +14.939 -4.597 -1.143 0 0 0 0 0 0 0 +15.672 -4.767 -1.207 0 0 0 0 0 0 0 +15.716 -4.727 -1.21 0 0 0 0 0 0 0 +15.146 -4.504 -1.157 0 0 0 0 0 0 0 +15.648 -4.599 -1.201 0 0 0 0 0 0 0 +15.618 -4.537 -1.197 0 0 0 0 0 0 0 +15.586 -4.475 -1.193 0 0 0 0 0 0 0 +15.561 -4.441 -1.19 0 0 0 0 0 0 0 +15.615 -4.404 -1.194 0 0 0 0 0 0 0 +15.669 -4.366 -1.197 0 0 0 0 0 0 0 +15.735 -4.331 -1.202 0 0 0 0 0 0 0 +15.769 -4.287 -1.204 0 0 0 0 0 0 0 +15.848 -4.255 -1.21 0 0 0 0 0 0 0 +15.9 -4.215 -1.213 0 0 0 0 0 0 0 +15.953 -4.202 -1.217 0 0 0 0 0 0 0 +16.02 -4.166 -1.222 0 0 0 0 0 0 0 +16.066 -4.124 -1.225 0 0 0 0 0 0 0 +16.131 -4.087 -1.229 0 0 0 0 0 0 0 +16.19 -4.048 -1.234 0 0 0 0 0 0 0 +16.245 -4.007 -1.237 0 0 0 0 0 0 0 +16.306 -3.968 -1.242 0 0 0 0 0 0 0 +16.357 -3.953 -1.246 0 0 0 0 0 0 0 +16.422 -3.914 -1.25 0 0 0 0 0 0 0 +16.508 -3.88 -1.257 0 0 0 0 0 0 0 +16.574 -3.84 -1.262 0 0 0 0 0 0 0 +16.58 -3.787 -1.261 0 0 0 0 0 0 0 +16.633 -3.744 -1.265 0 0 0 0 0 0 0 +16.648 -3.692 -1.265 0 0 0 0 0 0 0 +16.732 -3.683 -1.272 0 0 0 0 0 0 0 +16.761 -3.634 -1.273 0 0 0 0 0 0 0 +7.384 -1.592 -0.448 0 0 0 0 0 0 0 +7.329 -1.556 -0.443 0 0 0 0 0 0 0 +7.318 -1.53 -0.442 0 0 0 0 0 0 0 +7.311 -1.504 -0.441 0 0 0 0 0 0 0 +7.312 -1.481 -0.44 0 0 0 0 0 0 0 +7.299 -1.466 -0.439 0 0 0 0 0 0 0 +7.282 -1.439 -0.437 0 0 0 0 0 0 0 +7.286 -1.416 -0.437 0 0 0 0 0 0 0 +7.273 -1.39 -0.435 0 0 0 0 0 0 0 +7.295 -1.37 -0.437 0 0 0 0 0 0 0 +7.299 -1.347 -0.437 0 0 0 0 0 0 0 +7.315 -1.326 -0.438 0 0 0 0 0 0 0 +7.319 -1.315 -0.438 0 0 0 0 0 0 0 +7.325 -1.293 -0.438 0 0 0 0 0 0 0 +7.349 -1.273 -0.44 0 0 0 0 0 0 0 +7.353 -1.25 -0.44 0 0 0 0 0 0 0 +7.39 -1.232 -0.443 0 0 0 0 0 0 0 +7.408 -1.211 -0.444 0 0 0 0 0 0 0 +7.421 -1.189 -0.445 0 0 0 0 0 0 0 +7.431 -1.179 -0.446 0 0 0 0 0 0 0 +7.46 -1.16 -0.448 0 0 0 0 0 0 0 +7.468 -1.137 -0.448 0 0 0 0 0 0 0 +7.503 -1.118 -0.451 0 0 0 0 0 0 0 +13.671 -1.971 -0.986 0 0 0 0 0 0 0 +13.741 -1.937 -0.992 0 0 0 0 0 0 0 +18.541 -2.545 -1.408 0 0 0 0 0 0 0 +18.61 -2.525 -1.413 0 0 0 0 0 0 0 +18.596 -2.464 -1.412 0 0 0 0 0 0 0 +18.618 -2.407 -1.413 0 0 0 0 0 0 0 +18.623 -2.348 -1.413 0 0 0 0 0 0 0 +18.524 -2.277 -1.403 0 0 0 0 0 0 0 +18.509 -2.216 -1.401 0 0 0 0 0 0 0 +18.674 -2.176 -1.415 0 0 0 0 0 0 0 +18.622 -2.141 -1.41 0 0 0 0 0 0 0 +18.66 -2.086 -1.413 0 0 0 0 0 0 0 +18.752 -2.036 -1.421 0 0 0 0 0 0 0 +18.776 -1.979 -1.422 0 0 0 0 0 0 0 +18.81 -1.923 -1.424 0 0 0 0 0 0 0 +18.82 -1.864 -1.425 0 0 0 0 0 0 0 +18.84 -1.806 -1.426 0 0 0 0 0 0 0 +11.06 -1.019 -0.754 0 0 0 0 0 0 0 +18.865 -1.659 -1.427 0 0 0 0 0 0 0 +18.888 -1.601 -1.429 0 0 0 0 0 0 0 +18.933 -1.545 -1.432 0 0 0 0 0 0 0 +18.924 -1.485 -1.431 0 0 0 0 0 0 0 +18.958 -1.427 -1.433 0 0 0 0 0 0 0 +18.968 -1.398 -1.434 0 0 0 0 0 0 0 +18.994 -1.34 -1.436 0 0 0 0 0 0 0 +19.002 -1.281 -1.436 0 0 0 0 0 0 0 +19.01 -1.221 -1.437 0 0 0 0 0 0 0 +19.01 -1.161 -1.436 0 0 0 0 0 0 0 +19.069 -1.105 -1.441 0 0 0 0 0 0 0 +19.101 -1.046 -1.443 0 0 0 0 0 0 0 +19.14 -1.018 -1.447 0 0 0 0 0 0 0 +19.163 -0.959 -1.448 0 0 0 0 0 0 0 +19.196 -0.9 -1.451 0 0 0 0 0 0 0 +19.195 -0.84 -1.451 0 0 0 0 0 0 0 +19.221 -0.78 -1.453 0 0 0 0 0 0 0 +19.249 -0.721 -1.455 0 0 0 0 0 0 0 +19.271 -0.661 -1.457 0 0 0 0 0 0 0 +19.296 -0.632 -1.459 0 0 0 0 0 0 0 +19.296 -0.571 -1.459 0 0 0 0 0 0 0 +19.318 -0.511 -1.46 0 0 0 0 0 0 0 +19.341 -0.451 -1.462 0 0 0 0 0 0 0 +19.36 -0.39 -1.464 0 0 0 0 0 0 0 +19.36 -0.329 -1.464 0 0 0 0 0 0 0 +19.406 -0.269 -1.467 0 0 0 0 0 0 0 +19.433 -0.239 -1.47 0 0 0 0 0 0 0 +19.437 -0.178 -1.47 0 0 0 0 0 0 0 +19.456 -0.117 -1.472 0 0 0 0 0 0 0 +13.107 -0.046 -0.926 0 0 0 0 0 0 0 +13.209 -0.005 -0.934 0 0 0 0 0 0 0 +18.578 0.025 -1.507 0 0 0 0 0 0 0 +18.55 0.083 -1.504 0 0 0 0 0 0 0 +13.382 0.11 -1.029 0 0 0 0 0 0 0 +13.204 0.15 -1.013 0 0 0 0 0 0 0 +13.546 0.196 -1.044 0 0 0 0 0 0 0 +18.473 0.286 -1.497 0 0 0 0 0 0 0 +13.621 0.261 -1.051 0 0 0 0 0 0 0 +18.516 0.403 -1.501 0 0 0 0 0 0 0 +18.559 0.463 -1.505 0 0 0 0 0 0 0 +13.802 0.437 -1.068 0 0 0 0 0 0 0 +13.705 0.478 -1.059 0 0 0 0 0 0 0 +13.688 0.499 -1.058 0 0 0 0 0 0 0 +14.212 0.606 -1.106 0 0 0 0 0 0 0 +18.643 0.846 -1.514 0 0 0 0 0 0 0 +18.694 0.907 -1.519 0 0 0 0 0 0 0 +14.144 0.737 -1.101 0 0 0 0 0 0 0 +18.632 1.021 -1.514 0 0 0 0 0 0 0 +18.66 1.052 -1.517 0 0 0 0 0 0 0 +14.299 0.857 -1.116 0 0 0 0 0 0 0 +14.524 0.962 -1.137 0 0 0 0 0 0 0 +18.642 1.286 -1.516 0 0 0 0 0 0 0 +15.129 1.097 -1.193 0 0 0 0 0 0 0 +18.56 1.398 -1.51 0 0 0 0 0 0 0 +18.524 1.425 -1.507 0 0 0 0 0 0 0 +18.483 1.48 -1.503 0 0 0 0 0 0 0 +15.354 1.331 -1.216 0 0 0 0 0 0 0 +15.449 1.388 -1.225 0 0 0 0 0 0 0 +14.635 1.363 -1.15 0 0 0 0 0 0 0 +15.801 1.519 -1.258 0 0 0 0 0 0 0 +15.852 1.549 -1.263 0 0 0 0 0 0 0 +15.528 1.567 -1.233 0 0 0 0 0 0 0 +18.667 1.938 -1.524 0 0 0 0 0 0 0 +18.657 1.996 -1.524 0 0 0 0 0 0 0 +18.649 2.055 -1.523 0 0 0 0 0 0 0 +18.66 2.115 -1.525 0 0 0 0 0 0 0 +18.616 2.169 -1.522 0 0 0 0 0 0 0 +18.595 2.197 -1.52 0 0 0 0 0 0 0 +18.597 2.256 -1.521 0 0 0 0 0 0 0 +18.677 2.325 -1.529 0 0 0 0 0 0 0 +18.551 2.369 -1.518 0 0 0 0 0 0 0 +16.28 2.134 -1.308 0 0 0 0 0 0 0 +16.311 2.19 -1.312 0 0 0 0 0 0 0 +18.745 2.573 -1.538 0 0 0 0 0 0 0 +18.755 2.605 -1.539 0 0 0 0 0 0 0 +18.757 2.665 -1.54 0 0 0 0 0 0 0 +18.799 2.731 -1.545 0 0 0 0 0 0 0 +18.745 2.784 -1.541 0 0 0 0 0 0 0 +18.801 2.852 -1.547 0 0 0 0 0 0 0 +18.832 2.917 -1.55 0 0 0 0 0 0 0 +18.695 2.956 -1.539 0 0 0 0 0 0 0 +18.902 3.019 -1.558 0 0 0 0 0 0 0 +18.952 3.088 -1.564 0 0 0 0 0 0 0 +18.954 3.15 -1.565 0 0 0 0 0 0 0 +18.863 3.196 -1.557 0 0 0 0 0 0 0 +18.896 3.262 -1.561 0 0 0 0 0 0 0 +18.966 3.336 -1.569 0 0 0 0 0 0 0 +18.917 3.388 -1.565 0 0 0 0 0 0 0 +18.903 3.417 -1.565 0 0 0 0 0 0 0 +18.946 3.486 -1.57 0 0 0 0 0 0 0 +18.831 3.526 -1.56 0 0 0 0 0 0 0 +18.683 3.559 -1.547 0 0 0 0 0 0 0 +18.65 3.614 -1.545 0 0 0 0 0 0 0 +18.417 3.629 -1.524 0 0 0 0 0 0 0 +18.521 3.71 -1.535 0 0 0 0 0 0 0 +18.262 3.688 -1.511 0 0 0 0 0 0 0 +19.103 3.919 -1.591 0 0 0 0 0 0 0 +19.143 3.99 -1.596 0 0 0 0 0 0 0 +19.117 4.047 -1.595 0 0 0 0 0 0 0 +19.139 4.115 -1.598 0 0 0 0 0 0 0 +19.145 4.179 -1.6 0 0 0 0 0 0 0 +18.92 4.193 -1.58 0 0 0 0 0 0 0 +18.931 4.226 -1.582 0 0 0 0 0 0 0 +19.034 4.312 -1.593 0 0 0 0 0 0 0 +18.958 4.357 -1.587 0 0 0 0 0 0 0 +19.119 4.457 -1.603 0 0 0 0 0 0 0 +19.258 4.553 -1.618 0 0 0 0 0 0 0 +19.246 4.614 -1.618 0 0 0 0 0 0 0 +19.278 4.686 -1.622 0 0 0 0 0 0 0 +19.237 4.708 -1.619 0 0 0 0 0 0 0 +19.205 4.764 -1.618 0 0 0 0 0 0 0 +19.258 4.842 -1.624 0 0 0 0 0 0 0 +19.291 4.914 -1.629 0 0 0 0 0 0 0 +19.387 5.004 -1.639 0 0 0 0 0 0 0 +19.362 5.062 -1.638 0 0 0 0 0 0 0 +19.276 5.105 -1.632 0 0 0 0 0 0 0 +19.516 5.233 -1.656 0 0 0 0 0 0 0 +19.517 5.267 -1.657 0 0 0 0 0 0 0 +19.497 5.327 -1.657 0 0 0 0 0 0 0 +19.528 5.401 -1.661 0 0 0 0 0 0 0 +16.499 4.624 -1.374 0 0 0 0 0 0 0 +16.469 4.671 -1.372 0 0 0 0 0 0 0 +16.445 4.72 -1.371 0 0 0 0 0 0 0 +16.453 4.75 -1.373 0 0 0 0 0 0 0 +16.728 4.886 -1.401 0 0 0 0 0 0 0 +16.774 4.957 -1.407 0 0 0 0 0 0 0 +16.733 5.002 -1.404 0 0 0 0 0 0 0 +16.701 5.049 -1.403 0 0 0 0 0 0 0 +16.685 5.102 -1.403 0 0 0 0 0 0 0 +16.604 5.134 -1.396 0 0 0 0 0 0 0 +16.171 5.029 -1.356 0 0 0 0 0 0 0 +16.026 5.04 -1.343 0 0 0 0 0 0 0 +15.881 5.049 -1.331 0 0 0 0 0 0 0 +15.894 5.108 -1.333 0 0 0 0 0 0 0 +15.855 5.151 -1.331 0 0 0 0 0 0 0 +15.829 5.197 -1.33 0 0 0 0 0 0 0 +15.824 5.251 -1.331 0 0 0 0 0 0 0 +15.84 5.284 -1.334 0 0 0 0 0 0 0 +15.829 5.335 -1.334 0 0 0 0 0 0 0 +15.863 5.402 -1.339 0 0 0 0 0 0 0 +15.846 5.452 -1.339 0 0 0 0 0 0 0 +15.891 5.523 -1.345 0 0 0 0 0 0 0 +15.942 5.597 -1.352 0 0 0 0 0 0 0 +15.642 5.603 -1.326 0 0 0 0 0 0 0 +15.698 5.651 -1.333 0 0 0 0 0 0 0 +15.705 5.709 -1.335 0 0 0 0 0 0 0 +15.67 5.752 -1.333 0 0 0 0 0 0 0 +15.624 5.791 -1.33 0 0 0 0 0 0 0 +16.162 6.047 -1.385 0 0 0 0 0 0 0 +15.826 5.979 -1.354 0 0 0 0 0 0 0 +15.766 6.013 -1.35 0 0 0 0 0 0 0 +15.721 6.024 -1.346 0 0 0 0 0 0 0 +15.737 6.087 -1.35 0 0 0 0 0 0 0 +15.87 6.196 -1.365 0 0 0 0 0 0 0 +18.645 7.341 -1.641 0 0 0 0 0 0 0 +18.62 7.399 -1.641 0 0 0 0 0 0 0 +18.63 7.471 -1.644 0 0 0 0 0 0 0 +18.799 7.573 -1.662 0 0 0 0 0 0 0 +18.801 7.642 -1.664 0 0 0 0 0 0 0 +18.748 7.689 -1.661 0 0 0 0 0 0 0 +18.727 7.75 -1.662 0 0 0 0 0 0 0 +18.705 7.809 -1.662 0 0 0 0 0 0 0 +18.676 7.867 -1.662 0 0 0 0 0 0 0 +18.661 7.929 -1.663 0 0 0 0 0 0 0 +18.646 7.958 -1.662 0 0 0 0 0 0 0 +18.614 8.013 -1.662 0 0 0 0 0 0 0 +18.589 8.071 -1.662 0 0 0 0 0 0 0 +18.578 8.136 -1.663 0 0 0 0 0 0 0 +18.543 8.19 -1.662 0 0 0 0 0 0 0 +18.524 8.252 -1.663 0 0 0 0 0 0 0 +18.484 8.304 -1.661 0 0 0 0 0 0 0 +18.474 8.334 -1.662 0 0 0 0 0 0 0 +18.448 8.392 -1.662 0 0 0 0 0 0 0 +18.422 8.45 -1.662 0 0 0 0 0 0 0 +18.401 8.51 -1.662 0 0 0 0 0 0 0 +18.374 8.568 -1.662 0 0 0 0 0 0 0 +18.357 8.631 -1.663 0 0 0 0 0 0 0 +18.339 8.693 -1.664 0 0 0 0 0 0 0 +18.327 8.722 -1.665 0 0 0 0 0 0 0 +18.296 8.778 -1.664 0 0 0 0 0 0 0 +18.272 8.837 -1.665 0 0 0 0 0 0 0 +18.262 8.904 -1.666 0 0 0 0 0 0 0 +18.236 8.962 -1.667 0 0 0 0 0 0 0 +18.222 9.026 -1.668 0 0 0 0 0 0 0 +18.21 9.091 -1.67 0 0 0 0 0 0 0 +18.213 9.129 -1.671 0 0 0 0 0 0 0 +18.188 9.188 -1.672 0 0 0 0 0 0 0 +18.164 9.247 -1.672 0 0 0 0 0 0 0 +18.164 9.319 -1.675 0 0 0 0 0 0 0 +18.136 9.377 -1.676 0 0 0 0 0 0 0 +18.122 9.442 -1.677 0 0 0 0 0 0 0 +18.107 9.506 -1.679 0 0 0 0 0 0 0 +18.091 9.571 -1.68 0 0 0 0 0 0 0 +18.099 9.611 -1.682 0 0 0 0 0 0 0 +18.074 9.671 -1.683 0 0 0 0 0 0 0 +18.068 9.741 -1.686 0 0 0 0 0 0 0 +18.03 9.794 -1.685 0 0 0 0 0 0 0 +18.02 9.862 -1.687 0 0 0 0 0 0 0 +18.008 9.929 -1.689 0 0 0 0 0 0 0 +17.996 9.996 -1.691 0 0 0 0 0 0 0 +17.982 10.025 -1.691 0 0 0 0 0 0 0 +17.977 10.096 -1.694 0 0 0 0 0 0 0 +17.948 10.155 -1.694 0 0 0 0 0 0 0 +17.935 10.222 -1.696 0 0 0 0 0 0 0 +17.917 10.286 -1.698 0 0 0 0 0 0 0 +17.919 10.362 -1.701 0 0 0 0 0 0 0 +17.905 10.391 -1.702 0 0 0 0 0 0 0 +17.889 10.457 -1.704 0 0 0 0 0 0 0 +17.866 10.52 -1.705 0 0 0 0 0 0 0 +17.854 10.588 -1.707 0 0 0 0 0 0 0 +17.838 10.654 -1.709 0 0 0 0 0 0 0 +17.83 10.725 -1.711 0 0 0 0 0 0 0 +17.82 10.796 -1.714 0 0 0 0 0 0 0 +17.799 10.822 -1.714 0 0 0 0 0 0 0 +17.782 10.888 -1.715 0 0 0 0 0 0 0 +17.763 10.953 -1.717 0 0 0 0 0 0 0 +12.429 7.727 -1.144 0 0 0 0 0 0 0 +17.762 11.107 -1.724 0 0 0 0 0 0 0 +12.969 8.175 -1.208 0 0 0 0 0 0 0 +13.071 8.296 -1.222 0 0 0 0 0 0 0 +14.006 8.919 -1.325 0 0 0 0 0 0 0 +12.824 8.225 -1.199 0 0 0 0 0 0 0 +12.863 8.307 -1.206 0 0 0 0 0 0 0 +12.685 8.249 -1.19 0 0 0 0 0 0 0 +12.797 8.379 -1.205 0 0 0 0 0 0 0 +12.916 8.514 -1.221 0 0 0 0 0 0 0 +12.96 8.602 -1.229 0 0 0 0 0 0 0 +12.439 8.314 -1.174 0 0 0 0 0 0 0 +11.676 7.832 -1.091 0 0 0 0 0 0 0 +11.593 7.83 -1.085 0 0 0 0 0 0 0 +11.582 7.875 -1.086 0 0 0 0 0 0 0 +11.551 7.907 -1.086 0 0 0 0 0 0 0 +11.429 7.877 -1.075 0 0 0 0 0 0 0 +11.468 7.957 -1.082 0 0 0 0 0 0 0 +11.39 7.956 -1.076 0 0 0 0 0 0 0 +11.391 7.983 -1.078 0 0 0 0 0 0 0 +11.389 8.035 -1.08 0 0 0 0 0 0 0 +11.453 8.134 -1.09 0 0 0 0 0 0 0 +11.648 8.327 -1.115 0 0 0 0 0 0 0 +11.338 8.161 -1.083 0 0 0 0 0 0 0 +11.276 8.17 -1.079 0 0 0 0 0 0 0 +11.38 8.3 -1.094 0 0 0 0 0 0 0 +11.338 8.296 -1.09 0 0 0 0 0 0 0 +11.144 8.208 -1.071 0 0 0 0 0 0 0 +11.034 8.182 -1.062 0 0 0 0 0 0 0 +10.822 8.077 -1.04 0 0 0 0 0 0 0 +10.895 8.185 -1.052 0 0 0 0 0 0 0 +10.731 8.115 -1.036 0 0 0 0 0 0 0 +10.907 8.302 -1.059 0 0 0 0 0 0 0 +11.617 8.869 -1.142 0 0 0 0 0 0 0 +11.854 9.109 -1.173 0 0 0 0 0 0 0 +11.215 8.675 -1.102 0 0 0 0 0 0 0 +11.328 8.819 -1.119 0 0 0 0 0 0 0 +11.176 8.758 -1.104 0 0 0 0 0 0 0 +11.451 9.03 -1.139 0 0 0 0 0 0 0 +11.391 9.042 -1.136 0 0 0 0 0 0 0 +11.422 9.095 -1.141 0 0 0 0 0 0 0 +11.459 9.183 -1.149 0 0 0 0 0 0 0 +11.609 9.363 -1.17 0 0 0 0 0 0 0 +6.715 5.465 -0.595 0 0 0 0 0 0 0 +6.692 5.481 -0.594 0 0 0 0 0 0 0 +6.675 5.502 -0.594 0 0 0 0 0 0 0 +6.644 5.512 -0.593 0 0 0 0 0 0 0 +6.649 5.534 -0.594 0 0 0 0 0 0 0 +10.948 9.148 -1.11 0 0 0 0 0 0 0 +10.98 9.233 -1.118 0 0 0 0 0 0 0 +11.056 9.356 -1.13 0 0 0 0 0 0 0 +10.958 9.333 -1.122 0 0 0 0 0 0 0 +10.73 9.198 -1.098 0 0 0 0 0 0 0 +10.795 9.312 -1.109 0 0 0 0 0 0 0 +10.968 9.49 -1.132 0 0 0 0 0 0 0 +10.995 9.574 -1.139 0 0 0 0 0 0 0 +10.887 9.541 -1.13 0 0 0 0 0 0 0 +11.032 9.729 -1.151 0 0 0 0 0 0 0 +11.01 9.771 -1.152 0 0 0 0 0 0 0 +10.99 9.815 -1.153 0 0 0 0 0 0 0 +10.92 9.815 -1.149 0 0 0 0 0 0 0 +11.188 10.086 -1.184 0 0 0 0 0 0 0 +11.191 10.154 -1.188 0 0 0 0 0 0 0 +10.968 10.014 -1.164 0 0 0 0 0 0 0 +11.036 10.14 -1.177 0 0 0 0 0 0 0 +11.019 10.188 -1.178 0 0 0 0 0 0 0 +10.907 10.148 -1.168 0 0 0 0 0 0 0 +10.959 10.262 -1.179 0 0 0 0 0 0 0 +11.75 11.034 -1.281 0 0 0 0 0 0 0 +11.842 11.19 -1.296 0 0 0 0 0 0 0 +11.702 11.128 -1.283 0 0 0 0 0 0 0 +11.611 11.111 -1.276 0 0 0 0 0 0 0 +11.562 11.134 -1.274 0 0 0 0 0 0 0 +11.537 11.18 -1.276 0 0 0 0 0 0 0 +11.58 11.292 -1.286 0 0 0 0 0 0 0 +11.579 11.327 -1.288 0 0 0 0 0 0 0 +11.581 11.4 -1.293 0 0 0 0 0 0 0 +11.38 11.274 -1.271 0 0 0 0 0 0 0 +11.331 11.296 -1.27 0 0 0 0 0 0 0 +11.311 11.347 -1.272 0 0 0 0 0 0 0 +11.236 11.343 -1.266 0 0 0 0 0 0 0 +11.241 11.419 -1.272 0 0 0 0 0 0 0 +11.276 11.527 -1.281 0 0 0 0 0 0 0 +11.298 11.586 -1.286 0 0 0 0 0 0 0 +11.263 11.622 -1.287 0 0 0 0 0 0 0 +11.278 11.711 -1.293 0 0 0 0 0 0 0 +11.18 11.683 -1.285 0 0 0 0 0 0 0 +11.11 11.683 -1.281 0 0 0 0 0 0 0 +11.102 11.749 -1.285 0 0 0 0 0 0 0 +11.116 11.837 -1.292 0 0 0 0 0 0 0 +11.186 11.949 -1.303 0 0 0 0 0 0 0 +11.117 11.95 -1.299 0 0 0 0 0 0 0 +11.094 12.001 -1.301 0 0 0 0 0 0 0 +11.063 12.044 -1.302 0 0 0 0 0 0 0 +11.062 12.118 -1.307 0 0 0 0 0 0 0 +11.081 12.216 -1.315 0 0 0 0 0 0 0 +11.157 12.338 -1.328 0 0 0 0 0 0 0 +11.101 12.354 -1.326 0 0 0 0 0 0 0 +11.094 12.424 -1.33 0 0 0 0 0 0 0 +11.051 12.455 -1.329 0 0 0 0 0 0 0 +10.902 12.365 -1.314 0 0 0 0 0 0 0 +10.811 12.34 -1.307 0 0 0 0 0 0 0 +11.203 12.867 -1.367 0 0 0 0 0 0 0 +11.189 12.892 -1.368 0 0 0 0 0 0 0 +11.102 12.873 -1.361 0 0 0 0 0 0 0 +11.239 13.115 -1.386 0 0 0 0 0 0 0 +11.255 13.217 -1.395 0 0 0 0 0 0 0 +11.154 13.182 -1.386 0 0 0 0 0 0 0 +11.145 13.255 -1.391 0 0 0 0 0 0 0 +11.149 13.345 -1.397 0 0 0 0 0 0 0 +11.168 13.454 -1.406 0 0 0 0 0 0 0 +11.455 13.842 -1.45 0 0 0 0 0 0 0 +11.57 14.07 -1.473 0 0 0 0 0 0 0 +11.524 14.105 -1.473 0 0 0 0 0 0 0 +11.384 14.023 -1.459 0 0 0 0 0 0 0 +11.395 14.127 -1.467 0 0 0 0 0 0 0 +11.541 14.399 -1.495 0 0 0 0 0 0 0 +11.325 14.222 -1.47 0 0 0 0 0 0 0 +11.231 14.149 -1.459 0 0 0 0 0 0 0 +11.185 14.183 -1.459 0 0 0 0 0 0 0 +11.142 14.22 -1.459 0 0 0 0 0 0 0 +11.107 14.267 -1.461 0 0 0 0 0 0 0 +11.081 14.327 -1.464 0 0 0 0 0 0 0 +11.035 14.36 -1.464 0 0 0 0 0 0 0 +11.023 14.437 -1.468 0 0 0 0 0 0 0 +11.029 14.54 -1.476 0 0 0 0 0 0 0 +11.687 15.456 -1.58 0 0 0 0 0 0 0 +11.872 15.803 -1.616 0 0 0 0 0 0 0 +11.809 15.822 -1.614 0 0 0 0 0 0 0 +11.758 15.858 -1.613 0 0 0 0 0 0 0 +11.679 15.854 -1.609 0 0 0 0 0 0 0 +11.623 15.883 -1.608 0 0 0 0 0 0 0 +11.643 15.962 -1.615 0 0 0 0 0 0 0 +11.616 16.031 -1.619 0 0 0 0 0 0 0 +11.554 16.051 -1.617 0 0 0 0 0 0 0 +11.463 16.031 -1.61 0 0 0 0 0 0 0 +11.409 16.062 -1.61 0 0 0 0 0 0 0 +11.375 16.121 -1.612 0 0 0 0 0 0 0 +11.353 16.197 -1.617 0 0 0 0 0 0 0 +11.371 16.332 -1.628 0 0 0 0 0 0 0 +11.317 16.309 -1.624 0 0 0 0 0 0 0 +11.27 16.351 -1.624 0 0 0 0 0 0 0 +11.247 16.428 -1.629 0 0 0 0 0 0 0 +11.203 16.474 -1.63 0 0 0 0 0 0 0 +11.179 16.551 -1.635 0 0 0 0 0 0 0 +11.165 16.642 -1.641 0 0 0 0 0 0 0 +11.135 16.71 -1.645 0 0 0 0 0 0 0 +11.103 16.719 -1.644 0 0 0 0 0 0 0 +11.048 16.751 -1.643 0 0 0 0 0 0 0 +11.008 16.804 -1.645 0 0 0 0 0 0 0 +10.954 16.836 -1.645 0 0 0 0 0 0 0 +10.931 16.917 -1.65 0 0 0 0 0 0 0 +10.854 16.915 -1.646 0 0 0 0 0 0 0 +10.808 16.959 -1.647 0 0 0 0 0 0 0 +10.769 16.957 -1.645 0 0 0 0 0 0 0 +10.741 17.032 -1.65 0 0 0 0 0 0 0 +10.706 17.094 -1.653 0 0 0 0 0 0 0 +10.642 17.111 -1.651 0 0 0 0 0 0 0 +10.631 17.213 -1.658 0 0 0 0 0 0 0 +10.587 17.264 -1.66 0 0 0 0 0 0 0 +10.532 17.295 -1.66 0 0 0 0 0 0 0 +10.513 17.325 -1.662 0 0 0 0 0 0 0 +10.473 17.382 -1.664 0 0 0 0 0 0 0 +10.428 17.432 -1.666 0 0 0 0 0 0 0 +10.375 17.466 -1.666 0 0 0 0 0 0 0 +10.326 17.509 -1.667 0 0 0 0 0 0 0 +10.297 17.586 -1.672 0 0 0 0 0 0 0 +10.264 17.656 -1.676 0 0 0 0 0 0 0 +10.262 17.717 -1.681 0 0 0 0 0 0 0 +10.226 17.784 -1.684 0 0 0 0 0 0 0 +10.17 17.816 -1.684 0 0 0 0 0 0 0 +10.12 17.858 -1.686 0 0 0 0 0 0 0 +10.065 17.892 -1.686 0 0 0 0 0 0 0 +10.007 17.92 -1.685 0 0 0 0 0 0 0 +9.961 17.97 -1.687 0 0 0 0 0 0 0 +9.952 18.087 -1.696 0 0 0 0 0 0 0 +9.923 18.102 -1.696 0 0 0 0 0 0 0 +9.882 18.163 -1.699 0 0 0 0 0 0 0 +9.838 18.217 -1.702 0 0 0 0 0 0 0 +9.79 18.265 -1.704 0 0 0 0 0 0 0 +9.733 18.298 -1.704 0 0 0 0 0 0 0 +9.689 18.353 -1.706 0 0 0 0 0 0 0 +9.644 18.408 -1.709 0 0 0 0 0 0 0 +9.629 18.449 -1.712 0 0 0 0 0 0 0 +9.584 18.504 -1.714 0 0 0 0 0 0 0 +9.53 18.543 -1.715 0 0 0 0 0 0 0 +9.474 18.577 -1.716 0 0 0 0 0 0 0 +9.432 18.638 -1.719 0 0 0 0 0 0 0 +9.361 18.645 -1.716 0 0 0 0 0 0 0 +9.329 18.726 -1.722 0 0 0 0 0 0 0 +9.303 18.747 -1.723 0 0 0 0 0 0 0 +9.257 18.803 -1.725 0 0 0 0 0 0 0 +9.198 18.832 -1.725 0 0 0 0 0 0 0 +9.139 18.861 -1.725 0 0 0 0 0 0 0 +9.093 18.918 -1.728 0 0 0 0 0 0 0 +9.04 18.959 -1.729 0 0 0 0 0 0 0 +8.994 19.017 -1.732 0 0 0 0 0 0 0 +8.966 19.036 -1.733 0 0 0 0 0 0 0 +8.906 19.062 -1.733 0 0 0 0 0 0 0 +8.858 19.115 -1.735 0 0 0 0 0 0 0 +8.807 19.163 -1.737 0 0 0 0 0 0 0 +8.744 19.185 -1.737 0 0 0 0 0 0 0 +8.697 19.242 -1.74 0 0 0 0 0 0 0 +8.636 19.269 -1.74 0 0 0 0 0 0 0 +8.62 19.313 -1.743 0 0 0 0 0 0 0 +8.566 19.355 -1.744 0 0 0 0 0 0 0 +8.51 19.393 -1.745 0 0 0 0 0 0 0 +8.453 19.43 -1.747 0 0 0 0 0 0 0 +8.395 19.462 -1.747 0 0 0 0 0 0 0 +8.337 19.496 -1.748 0 0 0 0 0 0 0 +8.275 19.52 -1.748 0 0 0 0 0 0 0 +8.227 19.579 -1.751 0 0 0 0 0 0 0 +8.19 19.577 -1.749 0 0 0 0 0 0 0 +8.138 19.625 -1.752 0 0 0 0 0 0 0 +8.087 19.676 -1.754 0 0 0 0 0 0 0 +8.035 19.725 -1.757 0 0 0 0 0 0 0 +7.931 19.647 -1.746 0 0 0 0 0 0 0 +7.776 19.439 -1.723 0 0 0 0 0 0 0 +7.731 19.504 -1.727 0 0 0 0 0 0 0 +7.822 19.824 -1.758 0 0 0 0 0 0 0 +7.771 19.878 -1.761 0 0 0 0 0 0 0 +7.714 19.915 -1.762 0 0 0 0 0 0 0 +7.671 19.991 -1.767 0 0 0 0 0 0 0 +7.665 20.164 -1.782 0 0 0 0 0 0 0 +7.687 20.413 -1.804 0 0 0 0 0 0 0 +7.711 20.673 -1.827 0 0 0 0 0 0 0 +7.769 20.929 -1.851 0 0 0 0 0 0 0 +7.788 21.183 -1.873 0 0 0 0 0 0 0 +7.816 21.466 -1.899 0 0 0 0 0 0 0 +7.82 21.687 -1.918 0 0 0 0 0 0 0 +7.743 21.689 -1.916 0 0 0 0 0 0 0 +7.683 21.734 -1.918 0 0 0 0 0 0 0 +7.603 21.726 -1.915 0 0 0 0 0 0 0 +7.553 21.693 -1.91 0 0 0 0 0 0 0 +7.484 21.712 -1.91 0 0 0 0 0 0 0 +7.426 21.768 -1.913 0 0 0 0 0 0 0 +7.367 21.817 -1.915 0 0 0 0 0 0 0 +7.306 21.863 -1.918 0 0 0 0 0 0 0 +7.228 21.86 -1.915 0 0 0 0 0 0 0 +7.144 21.835 -1.911 0 0 0 0 0 0 0 +7.056 21.797 -1.905 0 0 0 0 0 0 0 +7.007 21.762 -1.9 0 0 0 0 0 0 0 +6.926 21.744 -1.896 0 0 0 0 0 0 0 +6.85 21.743 -1.894 0 0 0 0 0 0 0 +6.774 21.74 -1.892 0 0 0 0 0 0 0 +6.703 21.753 -1.891 0 0 0 0 0 0 0 +6.626 21.746 -1.888 0 0 0 0 0 0 0 +6.543 21.717 -1.884 0 0 0 0 0 0 0 +6.511 21.735 -1.884 0 0 0 0 0 0 0 +6.434 21.726 -1.882 0 0 0 0 0 0 0 +6.353 21.703 -1.877 0 0 0 0 0 0 0 +6.287 21.728 -1.878 0 0 0 0 0 0 0 +6.208 21.712 -1.874 0 0 0 0 0 0 0 +6.132 21.704 -1.872 0 0 0 0 0 0 0 +6.058 21.704 -1.87 0 0 0 0 0 0 0 +6.016 21.685 -1.867 0 0 0 0 0 0 0 +5.948 21.702 -1.867 0 0 0 0 0 0 0 +5.867 21.674 -1.863 0 0 0 0 0 0 0 +5.797 21.685 -1.862 0 0 0 0 0 0 0 +5.728 21.703 -1.862 0 0 0 0 0 0 0 +5.661 21.723 -1.862 0 0 0 0 0 0 0 +5.592 21.736 -1.862 0 0 0 0 0 0 0 +5.558 21.749 -1.862 0 0 0 0 0 0 0 +5.493 21.778 -1.863 0 0 0 0 0 0 0 +2.409 10.145 -0.757 0 0 0 0 0 0 0 +2.381 10.166 -0.759 0 0 0 0 0 0 0 +2.505 10.92 -0.829 0 0 0 0 0 0 0 +2.49 11.011 -0.837 0 0 0 0 0 0 0 +2.581 11.577 -0.889 0 0 0 0 0 0 0 +2.574 11.719 -0.902 0 0 0 0 0 0 0 +2.684 12.4 -0.965 0 0 0 0 0 0 0 +2.652 12.44 -0.968 0 0 0 0 0 0 0 +2.759 13.138 -1.033 0 0 0 0 0 0 0 +2.627 12.809 -1.001 0 0 0 0 0 0 0 +2.586 12.815 -1.001 0 0 0 0 0 0 0 +2.544 12.814 -1 0 0 0 0 0 0 0 +3.062 15.653 -1.265 0 0 0 0 0 0 0 +3.106 16.141 -1.31 0 0 0 0 0 0 0 +3.175 16.781 -1.369 0 0 0 0 0 0 0 +3.346 17.827 -1.466 0 0 0 0 0 0 0 +3.365 18.239 -1.504 0 0 0 0 0 0 0 +0.603 3.51 -0.127 0 0 0 0 0 0 0 +0.592 3.508 -0.126 0 0 0 0 0 0 0 +0.583 3.522 -0.127 0 0 0 0 0 0 0 +0.572 3.524 -0.127 0 0 0 0 0 0 0 +0.565 3.521 -0.127 0 0 0 0 0 0 0 +0.554 3.52 -0.127 0 0 0 0 0 0 0 +0.541 3.508 -0.125 0 0 0 0 0 0 0 +0.533 3.53 -0.127 0 0 0 0 0 0 0 +0.52 3.521 -0.126 0 0 0 0 0 0 0 +0.506 3.499 -0.124 0 0 0 0 0 0 0 +0.491 3.473 -0.122 0 0 0 0 0 0 0 +0.474 3.401 -0.115 0 0 0 0 0 0 0 +2.782 19.953 -1.651 0 0 0 0 0 0 0 +0.471 3.456 -0.12 0 0 0 0 0 0 0 +2.719 19.959 -1.65 0 0 0 0 0 0 0 +2.658 19.978 -1.651 0 0 0 0 0 0 0 +2.596 19.992 -1.652 0 0 0 0 0 0 0 +2.536 20.026 -1.654 0 0 0 0 0 0 0 +2.476 20.053 -1.656 0 0 0 0 0 0 0 +2.447 20.077 -1.658 0 0 0 0 0 0 0 +2.385 20.094 -1.659 0 0 0 0 0 0 0 +2.324 20.124 -1.661 0 0 0 0 0 0 0 +2.261 20.131 -1.661 0 0 0 0 0 0 0 +2.198 20.134 -1.66 0 0 0 0 0 0 0 +2.134 20.137 -1.66 0 0 0 0 0 0 0 +2.072 20.153 -1.661 0 0 0 0 0 0 0 +2.041 20.168 -1.662 0 0 0 0 0 0 0 +1.979 20.183 -1.663 0 0 0 0 0 0 0 +1.919 20.23 -1.667 0 0 0 0 0 0 0 +1.86 20.286 -1.671 0 0 0 0 0 0 0 +1.797 20.301 -1.672 0 0 0 0 0 0 0 +1.744 20.424 -1.683 0 0 0 0 0 0 0 +1.764 21.446 -1.777 0 0 0 0 0 0 0 +1.735 21.496 -1.781 0 0 0 0 0 0 0 +1.671 21.551 -1.786 0 0 0 0 0 0 0 +1.607 21.608 -1.79 0 0 0 0 0 0 0 +1.542 21.644 -1.793 0 0 0 0 0 0 0 +1.476 21.687 -1.797 0 0 0 0 0 0 0 +1.418 21.844 -1.811 0 0 0 0 0 0 0 +1.358 21.984 -1.823 0 0 0 0 0 0 0 +1.309 22.32 -1.854 0 0 0 0 0 0 0 +1.255 21.996 -1.824 0 0 0 0 0 0 0 +1.182 21.94 -1.818 0 0 0 0 0 0 0 +1.113 21.936 -1.818 0 0 0 0 0 0 0 +1.044 21.947 -1.818 0 0 0 0 0 0 0 +0.976 21.966 -1.82 0 0 0 0 0 0 0 +0.907 21.965 -1.82 0 0 0 0 0 0 0 +0.838 21.972 -1.82 0 0 0 0 0 0 0 +0.804 21.989 -1.821 0 0 0 0 0 0 0 +0.735 21.996 -1.822 0 0 0 0 0 0 0 +0.666 21.998 -1.822 0 0 0 0 0 0 0 +0.598 22.014 -1.823 0 0 0 0 0 0 0 +0.529 22.024 -1.824 0 0 0 0 0 0 0 +0.459 22.027 -1.824 0 0 0 0 0 0 0 +0.39 22.04 -1.825 0 0 0 0 0 0 0 +0.356 22.033 -1.824 0 0 0 0 0 0 0 +0.286 22.03 -1.824 0 0 0 0 0 0 0 +0.217 22.021 -1.823 0 0 0 0 0 0 0 +0.148 22.009 -1.822 0 0 0 0 0 0 0 +0.079 22 -1.821 0 0 0 0 0 0 0 +0.01 22.02 -1.823 0 0 0 0 0 0 0 +-0.06 22.223 -1.842 0 0 0 0 0 0 0 +-0.095 22.217 -1.841 0 0 0 0 0 0 0 +-0.164 22.165 -1.836 0 0 0 0 0 0 0 +-0.233 22.07 -1.828 0 0 0 0 0 0 0 +-0.302 22.008 -1.822 0 0 0 0 0 0 0 +-0.371 22.007 -1.822 0 0 0 0 0 0 0 +-0.44 22.023 -1.824 0 0 0 0 0 0 0 +-0.51 22.032 -1.824 0 0 0 0 0 0 0 +-0.544 22.029 -1.824 0 0 0 0 0 0 0 +-0.614 22.035 -1.825 0 0 0 0 0 0 0 +-0.683 22.023 -1.824 0 0 0 0 0 0 0 +-0.752 22.043 -1.826 0 0 0 0 0 0 0 +-0.822 22.042 -1.826 0 0 0 0 0 0 0 +-0.891 22.042 -1.827 0 0 0 0 0 0 0 +-0.961 22.059 -1.828 0 0 0 0 0 0 0 +-0.996 22.053 -1.828 0 0 0 0 0 0 0 +-1.065 22.054 -1.828 0 0 0 0 0 0 0 +-1.135 22.066 -1.83 0 0 0 0 0 0 0 +-1.205 22.063 -1.83 0 0 0 0 0 0 0 +-1.275 22.083 -1.832 0 0 0 0 0 0 0 +-1.345 22.081 -1.832 0 0 0 0 0 0 0 +-1.415 22.09 -1.833 0 0 0 0 0 0 0 +-1.485 22.1 -1.835 0 0 0 0 0 0 0 +-1.511 21.962 -1.822 0 0 0 0 0 0 0 +-1.58 21.965 -1.823 0 0 0 0 0 0 0 +-1.665 22.167 -1.842 0 0 0 0 0 0 0 +-1.497 19.079 -1.558 0 0 0 0 0 0 0 +-1.538 18.836 -1.536 0 0 0 0 0 0 0 +-1.577 18.591 -1.514 0 0 0 0 0 0 0 +-1.612 18.318 -1.489 0 0 0 0 0 0 0 +-1.619 18.068 -1.466 0 0 0 0 0 0 0 +-1.654 17.829 -1.445 0 0 0 0 0 0 0 +-1.686 17.572 -1.421 0 0 0 0 0 0 0 +-1.719 17.33 -1.4 0 0 0 0 0 0 0 +-1.751 17.111 -1.38 0 0 0 0 0 0 0 +-1.781 16.873 -1.358 0 0 0 0 0 0 0 +-1.811 16.652 -1.339 0 0 0 0 0 0 0 +-1.817 16.465 -1.322 0 0 0 0 0 0 0 +-1.844 16.236 -1.301 0 0 0 0 0 0 0 +-1.872 16.034 -1.283 0 0 0 0 0 0 0 +-1.901 15.85 -1.266 0 0 0 0 0 0 0 +-1.926 15.634 -1.247 0 0 0 0 0 0 0 +-1.952 15.444 -1.23 0 0 0 0 0 0 0 +-1.981 15.282 -1.215 0 0 0 0 0 0 0 +-1.979 15.079 -1.197 0 0 0 0 0 0 0 +-2.005 14.917 -1.182 0 0 0 0 0 0 0 +-2.031 14.753 -1.168 0 0 0 0 0 0 0 +-2.052 14.563 -1.151 0 0 0 0 0 0 0 +-2.075 14.401 -1.136 0 0 0 0 0 0 0 +-2.097 14.236 -1.122 0 0 0 0 0 0 0 +-2.119 14.076 -1.107 0 0 0 0 0 0 0 +-2.138 13.904 -1.092 0 0 0 0 0 0 0 +-2.14 13.767 -1.08 0 0 0 0 0 0 0 +-2.16 13.612 -1.066 0 0 0 0 0 0 0 +-2.183 13.484 -1.054 0 0 0 0 0 0 0 +-2.206 13.355 -1.043 0 0 0 0 0 0 0 +-2.224 13.206 -1.03 0 0 0 0 0 0 0 +-2.239 13.046 -1.016 0 0 0 0 0 0 0 +-2.258 12.911 -1.004 0 0 0 0 0 0 0 +-2.255 12.773 -0.991 0 0 0 0 0 0 0 +-2.282 12.689 -0.984 0 0 0 0 0 0 0 +-2.294 12.529 -0.97 0 0 0 0 0 0 0 +-2.314 12.416 -0.96 0 0 0 0 0 0 0 +-2.328 12.279 -0.948 0 0 0 0 0 0 0 +-2.348 12.174 -0.939 0 0 0 0 0 0 0 +-2.364 12.051 -0.928 0 0 0 0 0 0 0 +-2.359 11.926 -0.916 0 0 0 0 0 0 0 +-2.377 11.817 -0.907 0 0 0 0 0 0 0 +-2.392 11.704 -0.897 0 0 0 0 0 0 0 +-2.407 11.589 -0.887 0 0 0 0 0 0 0 +-2.425 11.492 -0.879 0 0 0 0 0 0 0 +-2.441 11.393 -0.87 0 0 0 0 0 0 0 +-2.449 11.253 -0.858 0 0 0 0 0 0 0 +-2.447 11.161 -0.849 0 0 0 0 0 0 0 +-2.464 11.07 -0.841 0 0 0 0 0 0 0 +-2.47 10.934 -0.829 0 0 0 0 0 0 0 +-2.488 10.852 -0.822 0 0 0 0 0 0 0 +-2.5 10.749 -0.813 0 0 0 0 0 0 0 +-2.517 10.672 -0.807 0 0 0 0 0 0 0 +-2.531 10.578 -0.799 0 0 0 0 0 0 0 +-2.538 10.464 -0.789 0 0 0 0 0 0 0 +-2.54 10.4 -0.783 0 0 0 0 0 0 0 +-2.554 10.312 -0.776 0 0 0 0 0 0 0 +-2.566 10.225 -0.768 0 0 0 0 0 0 0 +-2.577 10.132 -0.76 0 0 0 0 0 0 0 +-2.593 10.06 -0.754 0 0 0 0 0 0 0 +-2.601 9.963 -0.746 0 0 0 0 0 0 0 +-2.628 9.938 -0.744 0 0 0 0 0 0 0 +-2.609 9.803 -0.731 0 0 0 0 0 0 0 +-2.626 9.621 -0.716 0 0 0 0 0 0 0 +-2.651 9.477 -0.704 0 0 0 0 0 0 0 +-2.675 9.336 -0.692 0 0 0 0 0 0 0 +-2.674 9.274 -0.686 0 0 0 0 0 0 0 +-2.689 9.218 -0.682 0 0 0 0 0 0 0 +-2.706 9.169 -0.678 0 0 0 0 0 0 0 +-2.731 9.146 -0.676 0 0 0 0 0 0 0 +-2.743 9.082 -0.671 0 0 0 0 0 0 0 +-2.769 9.065 -0.67 0 0 0 0 0 0 0 +-2.766 8.956 -0.661 0 0 0 0 0 0 0 +-2.776 8.936 -0.659 0 0 0 0 0 0 0 +-2.787 8.874 -0.654 0 0 0 0 0 0 0 +-2.808 8.842 -0.652 0 0 0 0 0 0 0 +-2.811 8.756 -0.644 0 0 0 0 0 0 0 +-2.84 8.751 -0.645 0 0 0 0 0 0 0 +-2.841 8.662 -0.637 0 0 0 0 0 0 0 +-2.863 8.636 -0.635 0 0 0 0 0 0 0 +-2.872 8.572 -0.63 0 0 0 0 0 0 0 +-2.872 8.526 -0.626 0 0 0 0 0 0 0 +-2.888 8.485 -0.623 0 0 0 0 0 0 0 +-2.899 8.433 -0.619 0 0 0 0 0 0 0 +-2.914 8.388 -0.615 0 0 0 0 0 0 0 +-2.916 8.311 -0.609 0 0 0 0 0 0 0 +-2.931 8.27 -0.606 0 0 0 0 0 0 0 +-2.951 8.242 -0.604 0 0 0 0 0 0 0 +-2.949 8.198 -0.6 0 0 0 0 0 0 0 +-2.966 8.162 -0.597 0 0 0 0 0 0 0 +-2.978 8.117 -0.594 0 0 0 0 0 0 0 +-2.989 8.067 -0.59 0 0 0 0 0 0 0 +-3.016 8.061 -0.59 0 0 0 0 0 0 0 +-3.019 7.994 -0.584 0 0 0 0 0 0 0 +-3.032 7.952 -0.581 0 0 0 0 0 0 0 +-3.039 7.933 -0.58 0 0 0 0 0 0 0 +-3.124 7.786 -0.57 0 0 0 0 0 0 0 +-3.144 7.763 -0.569 0 0 0 0 0 0 0 +-3.151 7.745 -0.568 0 0 0 0 0 0 0 +-3.17 7.722 -0.566 0 0 0 0 0 0 0 +-3.186 7.692 -0.564 0 0 0 0 0 0 0 +-3.21 7.682 -0.564 0 0 0 0 0 0 0 +-3.224 7.648 -0.562 0 0 0 0 0 0 0 +-3.239 7.616 -0.56 0 0 0 0 0 0 0 +-3.25 7.576 -0.557 0 0 0 0 0 0 0 +-3.276 7.572 -0.557 0 0 0 0 0 0 0 +-3.274 7.533 -0.554 0 0 0 0 0 0 0 +-3.292 7.51 -0.553 0 0 0 0 0 0 0 +-3.309 7.485 -0.551 0 0 0 0 0 0 0 +-3.29 7.317 -0.537 0 0 0 0 0 0 0 +-3.316 7.312 -0.537 0 0 0 0 0 0 0 +-3.331 7.285 -0.535 0 0 0 0 0 0 0 +-3.445 7.38 -0.548 0 0 0 0 0 0 0 +-3.474 7.382 -0.549 0 0 0 0 0 0 0 +-3.497 7.371 -0.549 0 0 0 0 0 0 0 +-3.524 7.369 -0.55 0 0 0 0 0 0 0 +-3.549 7.361 -0.55 0 0 0 0 0 0 0 +-3.579 7.365 -0.552 0 0 0 0 0 0 0 +-3.594 7.366 -0.552 0 0 0 0 0 0 0 +-3.625 7.371 -0.554 0 0 0 0 0 0 0 +-3.655 7.374 -0.556 0 0 0 0 0 0 0 +-3.683 7.371 -0.556 0 0 0 0 0 0 0 +-3.71 7.367 -0.557 0 0 0 0 0 0 0 +-3.735 7.36 -0.558 0 0 0 0 0 0 0 +-3.763 7.357 -0.559 0 0 0 0 0 0 0 +-3.781 7.364 -0.56 0 0 0 0 0 0 0 +-3.812 7.368 -0.562 0 0 0 0 0 0 0 +-3.842 7.368 -0.563 0 0 0 0 0 0 0 +-3.869 7.365 -0.564 0 0 0 0 0 0 0 +-3.901 7.369 -0.565 0 0 0 0 0 0 0 +-3.927 7.362 -0.566 0 0 0 0 0 0 0 +-3.964 7.376 -0.569 0 0 0 0 0 0 0 +-3.978 7.375 -0.569 0 0 0 0 0 0 0 +-4.006 7.371 -0.57 0 0 0 0 0 0 0 +-4.037 7.372 -0.572 0 0 0 0 0 0 0 +-4.066 7.37 -0.573 0 0 0 0 0 0 0 +-4.134 7.384 -0.577 0 0 0 0 0 0 0 +-4.163 7.382 -0.578 0 0 0 0 0 0 0 +-4.187 7.396 -0.58 0 0 0 0 0 0 0 +-4.22 7.4 -0.582 0 0 0 0 0 0 0 +-4.248 7.396 -0.583 0 0 0 0 0 0 0 +-4.28 7.398 -0.585 0 0 0 0 0 0 0 +-4.32 7.414 -0.588 0 0 0 0 0 0 0 +-4.355 7.419 -0.59 0 0 0 0 0 0 0 +-4.386 7.419 -0.591 0 0 0 0 0 0 0 +-4.419 7.422 -0.593 0 0 0 0 0 0 0 +-4.448 7.444 -0.596 0 0 0 0 0 0 0 +-4.481 7.446 -0.598 0 0 0 0 0 0 0 +-4.512 7.445 -0.599 0 0 0 0 0 0 0 +-4.549 7.453 -0.602 0 0 0 0 0 0 0 +-4.581 7.453 -0.603 0 0 0 0 0 0 0 +-4.618 7.46 -0.606 0 0 0 0 0 0 0 +-4.652 7.463 -0.607 0 0 0 0 0 0 0 +-4.68 7.482 -0.61 0 0 0 0 0 0 0 +-4.719 7.491 -0.613 0 0 0 0 0 0 0 +-4.762 7.508 -0.616 0 0 0 0 0 0 0 +-4.793 7.505 -0.618 0 0 0 0 0 0 0 +-4.834 7.517 -0.621 0 0 0 0 0 0 0 +-4.866 7.515 -0.622 0 0 0 0 0 0 0 +-4.911 7.533 -0.626 0 0 0 0 0 0 0 +-4.949 7.566 -0.63 0 0 0 0 0 0 0 +-4.985 7.568 -0.632 0 0 0 0 0 0 0 +-5.042 7.602 -0.638 0 0 0 0 0 0 0 +-5.044 7.553 -0.634 0 0 0 0 0 0 0 +-5.086 7.515 -0.633 0 0 0 0 0 0 0 +-7.255 10.667 -0.985 0 0 0 0 0 0 0 +-7.25 10.622 -0.981 0 0 0 0 0 0 0 +-7.266 10.575 -0.978 0 0 0 0 0 0 0 +-7.269 10.508 -0.973 0 0 0 0 0 0 0 +-7.279 10.452 -0.97 0 0 0 0 0 0 0 +-7.283 10.388 -0.965 0 0 0 0 0 0 0 +-7.293 10.333 -0.961 0 0 0 0 0 0 0 +-7.305 10.281 -0.958 0 0 0 0 0 0 0 +-7.296 10.233 -0.954 0 0 0 0 0 0 0 +-7.296 10.167 -0.949 0 0 0 0 0 0 0 +-7.29 10.09 -0.943 0 0 0 0 0 0 0 +-7.317 10.061 -0.942 0 0 0 0 0 0 0 +-7.323 10.002 -0.938 0 0 0 0 0 0 0 +-7.333 9.951 -0.935 0 0 0 0 0 0 0 +-7.33 9.881 -0.93 0 0 0 0 0 0 0 +-7.336 9.824 -0.926 0 0 0 0 0 0 0 +-7.324 9.776 -0.922 0 0 0 0 0 0 0 +-7.339 9.732 -0.919 0 0 0 0 0 0 0 +-7.348 9.681 -0.916 0 0 0 0 0 0 0 +-7.34 9.607 -0.91 0 0 0 0 0 0 0 +-7.347 9.554 -0.907 0 0 0 0 0 0 0 +-7.355 9.502 -0.903 0 0 0 0 0 0 0 +-7.363 9.451 -0.9 0 0 0 0 0 0 0 +-7.358 9.414 -0.897 0 0 0 0 0 0 0 +-7.366 9.362 -0.894 0 0 0 0 0 0 0 +-7.369 9.306 -0.89 0 0 0 0 0 0 0 +-7.392 9.275 -0.889 0 0 0 0 0 0 0 +-7.398 9.223 -0.886 0 0 0 0 0 0 0 +-7.402 9.168 -0.882 0 0 0 0 0 0 0 +-7.418 9.129 -0.88 0 0 0 0 0 0 0 +-13.961 17.164 -1.833 0 0 0 0 0 0 0 +-13.991 17.091 -1.829 0 0 0 0 0 0 0 +-14.03 17.029 -1.827 0 0 0 0 0 0 0 +-14.064 16.961 -1.824 0 0 0 0 0 0 0 +-14.112 16.911 -1.823 0 0 0 0 0 0 0 +-14.141 16.838 -1.82 0 0 0 0 0 0 0 +-14.177 16.773 -1.818 0 0 0 0 0 0 0 +-14.242 16.797 -1.823 0 0 0 0 0 0 0 +-7.445 8.705 -0.852 0 0 0 0 0 0 0 +-11.874 13.732 -1.468 0 0 0 0 0 0 0 +-11.895 13.669 -1.464 0 0 0 0 0 0 0 +-12.083 13.799 -1.485 0 0 0 0 0 0 0 +-14.51 16.473 -1.817 0 0 0 0 0 0 0 +-14.536 16.45 -1.817 0 0 0 0 0 0 0 +-14.618 16.439 -1.821 0 0 0 0 0 0 0 +-14.676 16.4 -1.822 0 0 0 0 0 0 0 +-14.701 16.324 -1.818 0 0 0 0 0 0 0 +-14.722 16.244 -1.814 0 0 0 0 0 0 0 +-14.74 16.162 -1.809 0 0 0 0 0 0 0 +-14.759 16.081 -1.805 0 0 0 0 0 0 0 +-14.775 15.998 -1.801 0 0 0 0 0 0 0 +-14.77 15.941 -1.796 0 0 0 0 0 0 0 +-14.777 15.849 -1.791 0 0 0 0 0 0 0 +-7.514 7.99 -0.807 0 0 0 0 0 0 0 +-14.814 15.59 -1.776 0 0 0 0 0 0 0 +-14.824 15.503 -1.77 0 0 0 0 0 0 0 +-14.837 15.419 -1.766 0 0 0 0 0 0 0 +-14.838 15.372 -1.763 0 0 0 0 0 0 0 +-14.842 15.279 -1.757 0 0 0 0 0 0 0 +-14.858 15.2 -1.753 0 0 0 0 0 0 0 +-14.88 15.127 -1.749 0 0 0 0 0 0 0 +-14.88 15.032 -1.743 0 0 0 0 0 0 0 +-14.891 14.949 -1.738 0 0 0 0 0 0 0 +-14.915 14.88 -1.735 0 0 0 0 0 0 0 +-14.906 14.824 -1.731 0 0 0 0 0 0 0 +-14.916 14.74 -1.726 0 0 0 0 0 0 0 +-14.933 14.666 -1.723 0 0 0 0 0 0 0 +-14.942 14.582 -1.718 0 0 0 0 0 0 0 +-14.958 14.506 -1.714 0 0 0 0 0 0 0 +-14.974 14.43 -1.71 0 0 0 0 0 0 0 +-15.02 14.384 -1.71 0 0 0 0 0 0 0 +-15.01 14.329 -1.706 0 0 0 0 0 0 0 +-15.061 14.287 -1.707 0 0 0 0 0 0 0 +-15.102 14.237 -1.707 0 0 0 0 0 0 0 +-15.144 14.187 -1.706 0 0 0 0 0 0 0 +-15.2 14.15 -1.708 0 0 0 0 0 0 0 +-15.253 14.11 -1.709 0 0 0 0 0 0 0 +-15.353 14.114 -1.716 0 0 0 0 0 0 0 +-15.427 14.092 -1.719 0 0 0 0 0 0 0 +-15.462 14.08 -1.721 0 0 0 0 0 0 0 +-15.443 13.974 -1.713 0 0 0 0 0 0 0 +-15.355 13.807 -1.697 0 0 0 0 0 0 0 +-15.387 13.748 -1.695 0 0 0 0 0 0 0 +-15.324 13.605 -1.682 0 0 0 0 0 0 0 +-15.248 13.452 -1.668 0 0 0 0 0 0 0 +-15.366 13.471 -1.677 0 0 0 0 0 0 0 +-15.357 13.42 -1.673 0 0 0 0 0 0 0 +-15.374 13.35 -1.67 0 0 0 0 0 0 0 +-15.325 13.223 -1.659 0 0 0 0 0 0 0 +-15.368 13.176 -1.66 0 0 0 0 0 0 0 +-15.399 13.119 -1.658 0 0 0 0 0 0 0 +-15.423 13.056 -1.656 0 0 0 0 0 0 0 +-15.452 12.997 -1.655 0 0 0 0 0 0 0 +-15.401 12.913 -1.646 0 0 0 0 0 0 0 +-15.489 12.904 -1.652 0 0 0 0 0 0 0 +-15.494 12.826 -1.648 0 0 0 0 0 0 0 +-15.428 12.69 -1.635 0 0 0 0 0 0 0 +-15.446 12.624 -1.632 0 0 0 0 0 0 0 +-15.443 12.54 -1.627 0 0 0 0 0 0 0 +-15.408 12.431 -1.619 0 0 0 0 0 0 0 +-15.438 12.416 -1.62 0 0 0 0 0 0 0 +-15.525 12.406 -1.626 0 0 0 0 0 0 0 +-15.471 12.283 -1.615 0 0 0 0 0 0 0 +-15.443 12.182 -1.607 0 0 0 0 0 0 0 +-15.508 12.154 -1.61 0 0 0 0 0 0 0 +-15.487 12.059 -1.603 0 0 0 0 0 0 0 +-15.504 11.994 -1.601 0 0 0 0 0 0 0 +-15.488 11.943 -1.597 0 0 0 0 0 0 0 +-15.534 11.901 -1.598 0 0 0 0 0 0 0 +-15.588 11.865 -1.6 0 0 0 0 0 0 0 +-15.57 11.774 -1.593 0 0 0 0 0 0 0 +-15.531 11.667 -1.584 0 0 0 0 0 0 0 +-15.596 11.64 -1.588 0 0 0 0 0 0 0 +-15.656 11.609 -1.59 0 0 0 0 0 0 0 +-15.699 11.602 -1.593 0 0 0 0 0 0 0 +-15.651 11.491 -1.584 0 0 0 0 0 0 0 +-15.713 11.461 -1.587 0 0 0 0 0 0 0 +-15.641 11.333 -1.574 0 0 0 0 0 0 0 +-15.63 11.25 -1.569 0 0 0 0 0 0 0 +-15.652 11.191 -1.568 0 0 0 0 0 0 0 +-15.734 11.176 -1.573 0 0 0 0 0 0 0 +-15.815 11.158 -1.578 0 0 0 0 0 0 0 +-15.857 11.151 -1.581 0 0 0 0 0 0 0 +-15.838 11.063 -1.575 0 0 0 0 0 0 0 +-15.856 11.002 -1.573 0 0 0 0 0 0 0 +-15.83 10.91 -1.566 0 0 0 0 0 0 0 +-15.749 10.782 -1.553 0 0 0 0 0 0 0 +-15.625 10.624 -1.536 0 0 0 0 0 0 0 +-15.659 10.575 -1.536 0 0 0 0 0 0 0 +-15.756 10.605 -1.545 0 0 0 0 0 0 0 +-15.981 10.684 -1.566 0 0 0 0 0 0 0 +-15.897 10.556 -1.553 0 0 0 0 0 0 0 +-6.694 4.397 -0.535 0 0 0 0 0 0 0 +-6.69 4.364 -0.533 0 0 0 0 0 0 0 +-6.702 4.341 -0.533 0 0 0 0 0 0 0 +-6.712 4.318 -0.533 0 0 0 0 0 0 0 +-15.985 10.22 -1.543 0 0 0 0 0 0 0 +-15.929 10.114 -1.533 0 0 0 0 0 0 0 +-15.808 9.967 -1.517 0 0 0 0 0 0 0 +-15.743 9.857 -1.506 0 0 0 0 0 0 0 +-15.847 9.853 -1.514 0 0 0 0 0 0 0 +-15.817 9.766 -1.507 0 0 0 0 0 0 0 +-15.917 9.793 -1.517 0 0 0 0 0 0 0 +-15.908 9.719 -1.512 0 0 0 0 0 0 0 +-15.869 9.627 -1.505 0 0 0 0 0 0 0 +-15.809 9.522 -1.495 0 0 0 0 0 0 0 +-15.839 9.472 -1.495 0 0 0 0 0 0 0 +-15.863 9.419 -1.495 0 0 0 0 0 0 0 +-15.836 9.336 -1.489 0 0 0 0 0 0 0 +-15.933 9.36 -1.497 0 0 0 0 0 0 0 +-15.935 9.294 -1.494 0 0 0 0 0 0 0 +-16.016 9.273 -1.5 0 0 0 0 0 0 0 +-16.119 9.266 -1.508 0 0 0 0 0 0 0 +-15.892 9.069 -1.481 0 0 0 0 0 0 0 +-15.974 9.049 -1.486 0 0 0 0 0 0 0 +-13.933 7.832 -1.268 0 0 0 0 0 0 0 +-13.906 7.759 -1.263 0 0 0 0 0 0 0 +-13.925 7.741 -1.263 0 0 0 0 0 0 0 +-13.876 7.656 -1.256 0 0 0 0 0 0 0 +-12.542 6.866 -1.113 0 0 0 0 0 0 0 +-12.536 6.811 -1.11 0 0 0 0 0 0 0 +-12.581 6.785 -1.113 0 0 0 0 0 0 0 +-13.638 7.247 -1.218 0 0 0 0 0 0 0 +-13.67 7.237 -1.221 0 0 0 0 0 0 0 +-13.753 7.225 -1.227 0 0 0 0 0 0 0 +-15.984 8.339 -1.456 0 0 0 0 0 0 0 +-16.074 8.321 -1.463 0 0 0 0 0 0 0 +-7.2 3.654 -0.541 0 0 0 0 0 0 0 +-7.29 3.671 -0.549 0 0 0 0 0 0 0 +-7.342 3.683 -0.554 0 0 0 0 0 0 0 +-7.423 3.695 -0.561 0 0 0 0 0 0 0 +-7.488 3.698 -0.567 0 0 0 0 0 0 0 +-7.439 3.645 -0.56 0 0 0 0 0 0 0 +-16.416 7.95 -1.475 0 0 0 0 0 0 0 +-14.663 7.041 -1.294 0 0 0 0 0 0 0 +-14.644 7.004 -1.291 0 0 0 0 0 0 0 +-14.66 6.955 -1.29 0 0 0 0 0 0 0 +-16.382 7.712 -1.463 0 0 0 0 0 0 0 +-16.41 7.662 -1.464 0 0 0 0 0 0 0 +-16.466 7.626 -1.467 0 0 0 0 0 0 0 +-16.322 7.497 -1.45 0 0 0 0 0 0 0 +-16.508 7.52 -1.466 0 0 0 0 0 0 0 +-16.435 7.455 -1.458 0 0 0 0 0 0 0 +-16.54 7.44 -1.466 0 0 0 0 0 0 0 +-21.698 9.688 -1.983 0 0 0 0 0 0 0 +-21.71 9.611 -1.981 0 0 0 0 0 0 0 +-21.738 9.542 -1.981 0 0 0 0 0 0 0 +-21.748 9.465 -1.979 0 0 0 0 0 0 0 +-21.771 9.394 -1.978 0 0 0 0 0 0 0 +-21.78 9.357 -1.978 0 0 0 0 0 0 0 +-21.78 9.276 -1.975 0 0 0 0 0 0 0 +-21.783 9.197 -1.972 0 0 0 0 0 0 0 +-21.79 9.119 -1.97 0 0 0 0 0 0 0 +-21.813 9.048 -1.969 0 0 0 0 0 0 0 +-21.817 8.97 -1.967 0 0 0 0 0 0 0 +-21.838 8.898 -1.966 0 0 0 0 0 0 0 +-21.854 8.865 -1.967 0 0 0 0 0 0 0 +-21.896 8.802 -1.968 0 0 0 0 0 0 0 +-21.889 8.719 -1.965 0 0 0 0 0 0 0 +-21.916 8.65 -1.965 0 0 0 0 0 0 0 +-21.954 8.586 -1.966 0 0 0 0 0 0 0 +-21.979 8.516 -1.965 0 0 0 0 0 0 0 +-21.985 8.439 -1.963 0 0 0 0 0 0 0 +-22.004 8.407 -1.964 0 0 0 0 0 0 0 +-22.038 8.34 -1.965 0 0 0 0 0 0 0 +-22.094 8.282 -1.968 0 0 0 0 0 0 0 +-22.127 8.216 -1.968 0 0 0 0 0 0 0 +-22.192 8.161 -1.972 0 0 0 0 0 0 0 +-22.21 8.088 -1.971 0 0 0 0 0 0 0 +-22.245 8.022 -1.972 0 0 0 0 0 0 0 +-22.271 7.991 -1.974 0 0 0 0 0 0 0 +-22.316 7.929 -1.976 0 0 0 0 0 0 0 +-22.358 7.865 -1.977 0 0 0 0 0 0 0 +-22.388 7.796 -1.978 0 0 0 0 0 0 0 +-22.405 7.723 -1.977 0 0 0 0 0 0 0 +-22.435 7.655 -1.978 0 0 0 0 0 0 0 +-22.472 7.589 -1.979 0 0 0 0 0 0 0 +-22.53 7.529 -1.982 0 0 0 0 0 0 0 +-22.576 7.505 -1.986 0 0 0 0 0 0 0 +-22.616 7.44 -1.987 0 0 0 0 0 0 0 +-22.673 7.38 -1.99 0 0 0 0 0 0 0 +-22.681 7.304 -1.989 0 0 0 0 0 0 0 +-22.721 7.238 -1.991 0 0 0 0 0 0 0 +-22.78 7.178 -1.994 0 0 0 0 0 0 0 +-22.795 7.104 -1.993 0 0 0 0 0 0 0 +-22.861 7.085 -1.999 0 0 0 0 0 0 0 +-22.887 7.015 -1.999 0 0 0 0 0 0 0 +-22.941 6.953 -2.002 0 0 0 0 0 0 0 +-22.978 6.885 -2.004 0 0 0 0 0 0 0 +-23.025 6.82 -2.006 0 0 0 0 0 0 0 +-23.08 6.758 -2.009 0 0 0 0 0 0 0 +-23.132 6.694 -2.012 0 0 0 0 0 0 0 +-23.134 6.616 -2.01 0 0 0 0 0 0 0 +-23.158 6.584 -2.012 0 0 0 0 0 0 0 +-23.192 6.515 -2.013 0 0 0 0 0 0 0 +-23.198 6.438 -2.012 0 0 0 0 0 0 0 +-23.207 6.362 -2.011 0 0 0 0 0 0 0 +-23.248 6.295 -2.013 0 0 0 0 0 0 0 +-23.3 6.231 -2.016 0 0 0 0 0 0 0 +-23.333 6.161 -2.017 0 0 0 0 0 0 0 +-10.117 2.605 -0.759 0 0 0 0 0 0 0 +-24.185 2.146 -2.031 0 0 0 0 0 0 0 +-24.244 2.075 -2.035 0 0 0 0 0 0 0 +-24.213 2.034 -2.032 0 0 0 0 0 0 0 +-19.791 1.595 -1.624 0 0 0 0 0 0 0 +-24.168 1.877 -2.027 0 0 0 0 0 0 0 +-24.261 1.808 -2.035 0 0 0 0 0 0 0 +-24.296 1.734 -2.038 0 0 0 0 0 0 0 +-22.056 1.502 -1.831 0 0 0 0 0 0 0 +-21.958 1.426 -1.821 0 0 0 0 0 0 0 +-21.902 1.387 -1.816 0 0 0 0 0 0 0 +-21.877 1.317 -1.813 0 0 0 0 0 0 0 +-21.869 1.247 -1.812 0 0 0 0 0 0 0 +-21.841 1.177 -1.809 0 0 0 0 0 0 0 +-21.85 1.109 -1.81 0 0 0 0 0 0 0 +-21.892 1.042 -1.813 0 0 0 0 0 0 0 +-21.933 0.975 -1.817 0 0 0 0 0 0 0 +-21.9 0.939 -1.814 0 0 0 0 0 0 0 +-22.192 0.882 -1.84 0 0 0 0 0 0 0 +-18.518 0.673 -1.502 0 0 0 0 0 0 0 +-24.036 0.806 -2.009 0 0 0 0 0 0 0 +-22.179 0.672 -1.838 0 0 0 0 0 0 0 +-23.965 0.653 -2.002 0 0 0 0 0 0 0 +-23.947 0.577 -2.001 0 0 0 0 0 0 0 +-23.922 0.539 -1.998 0 0 0 0 0 0 0 +-23.947 0.464 -2 0 0 0 0 0 0 0 +-23.879 0.388 -1.994 0 0 0 0 0 0 0 +-22.433 0.222 -1.861 0 0 0 0 0 0 0 +-23.768 0.162 -1.984 0 0 0 0 0 0 0 +-23.828 0.087 -1.989 0 0 0 0 0 0 0 +-23.733 0.05 -1.98 0 0 0 0 0 0 0 +-21.994 -0.025 -1.82 0 0 0 0 0 0 0 +-23.746 -0.1 -1.982 0 0 0 0 0 0 0 +-23.708 -0.174 -1.978 0 0 0 0 0 0 0 +-23.694 -0.248 -1.977 0 0 0 0 0 0 0 +-23.681 -0.323 -1.976 0 0 0 0 0 0 0 +-23.65 -0.397 -1.973 0 0 0 0 0 0 0 +-23.638 -0.471 -1.972 0 0 0 0 0 0 0 +-23.614 -0.507 -1.97 0 0 0 0 0 0 0 +-23.564 -0.58 -1.965 0 0 0 0 0 0 0 +-23.526 -0.653 -1.962 0 0 0 0 0 0 0 +-23.508 -0.727 -1.961 0 0 0 0 0 0 0 +-23.484 -0.8 -1.959 0 0 0 0 0 0 0 +-23.466 -0.873 -1.957 0 0 0 0 0 0 0 +-23.429 -0.946 -1.954 0 0 0 0 0 0 0 +-23.411 -0.982 -1.953 0 0 0 0 0 0 0 +-23.368 -1.053 -1.949 0 0 0 0 0 0 0 +-23.325 -1.125 -1.945 0 0 0 0 0 0 0 +-23.324 -1.198 -1.945 0 0 0 0 0 0 0 +-23.29 -1.27 -1.943 0 0 0 0 0 0 0 +-23.276 -1.343 -1.942 0 0 0 0 0 0 0 +-23.238 -1.414 -1.939 0 0 0 0 0 0 0 +-23.21 -1.449 -1.936 0 0 0 0 0 0 0 +-23.185 -1.52 -1.934 0 0 0 0 0 0 0 +-23.15 -1.591 -1.932 0 0 0 0 0 0 0 +-23.115 -1.662 -1.929 0 0 0 0 0 0 0 +-23.102 -1.734 -1.928 0 0 0 0 0 0 0 +-23.039 -1.802 -1.923 0 0 0 0 0 0 0 +-23.039 -1.875 -1.924 0 0 0 0 0 0 0 +-22.979 -1.906 -1.918 0 0 0 0 0 0 0 +-16.104 -1.446 -1.285 0 0 0 0 0 0 0 +-16.038 -1.491 -1.279 0 0 0 0 0 0 0 +-16.118 -1.549 -1.287 0 0 0 0 0 0 0 +-22.777 -2.25 -1.903 0 0 0 0 0 0 0 +-22.752 -2.32 -1.901 0 0 0 0 0 0 0 +-22.715 -2.352 -1.898 0 0 0 0 0 0 0 +-22.662 -2.419 -1.894 0 0 0 0 0 0 0 +-22.619 -2.486 -1.89 0 0 0 0 0 0 0 +-22.545 -2.55 -1.884 0 0 0 0 0 0 0 +-22.454 -2.611 -1.877 0 0 0 0 0 0 0 +-22.388 -2.675 -1.871 0 0 0 0 0 0 0 +-22.327 -2.739 -1.866 0 0 0 0 0 0 0 +-22.247 -2.765 -1.859 0 0 0 0 0 0 0 +-22.171 -2.826 -1.853 0 0 0 0 0 0 0 +-22.103 -2.888 -1.848 0 0 0 0 0 0 0 +-22.011 -2.946 -1.84 0 0 0 0 0 0 0 +-21.936 -3.007 -1.834 0 0 0 0 0 0 0 +-21.854 -3.066 -1.827 0 0 0 0 0 0 0 +-21.779 -3.125 -1.821 0 0 0 0 0 0 0 +-21.709 -3.15 -1.815 0 0 0 0 0 0 0 +-21.642 -3.21 -1.81 0 0 0 0 0 0 0 +-21.567 -3.268 -1.804 0 0 0 0 0 0 0 +-21.517 -3.329 -1.8 0 0 0 0 0 0 0 +-21.435 -3.386 -1.794 0 0 0 0 0 0 0 +-21.385 -3.447 -1.79 0 0 0 0 0 0 0 +-21.294 -3.501 -1.782 0 0 0 0 0 0 0 +-21.269 -3.566 -1.781 0 0 0 0 0 0 0 +-21.267 -3.6 -1.781 0 0 0 0 0 0 0 +-21.066 -3.634 -1.764 0 0 0 0 0 0 0 +-20.954 -3.683 -1.754 0 0 0 0 0 0 0 +-20.844 -3.731 -1.745 0 0 0 0 0 0 0 +-20.772 -3.785 -1.74 0 0 0 0 0 0 0 +-20.693 -3.838 -1.733 0 0 0 0 0 0 0 +-20.628 -3.893 -1.728 0 0 0 0 0 0 0 +-20.563 -3.915 -1.723 0 0 0 0 0 0 0 +-20.482 -3.966 -1.716 0 0 0 0 0 0 0 +-20.409 -4.019 -1.711 0 0 0 0 0 0 0 +-20.334 -4.07 -1.705 0 0 0 0 0 0 0 +-20.262 -4.122 -1.699 0 0 0 0 0 0 0 +-20.175 -4.171 -1.693 0 0 0 0 0 0 0 +-20.113 -4.224 -1.688 0 0 0 0 0 0 0 +-20.031 -4.24 -1.681 0 0 0 0 0 0 0 +-19.955 -4.289 -1.675 0 0 0 0 0 0 0 +-19.885 -4.34 -1.67 0 0 0 0 0 0 0 +-19.805 -4.387 -1.663 0 0 0 0 0 0 0 +-19.745 -4.439 -1.659 0 0 0 0 0 0 0 +-19.676 -4.489 -1.654 0 0 0 0 0 0 0 +-19.6 -4.536 -1.648 0 0 0 0 0 0 0 +-19.531 -4.553 -1.642 0 0 0 0 0 0 0 +-19.466 -4.602 -1.637 0 0 0 0 0 0 0 +-19.389 -4.649 -1.632 0 0 0 0 0 0 0 +-19.262 -4.682 -1.621 0 0 0 0 0 0 0 +-19.338 -4.765 -1.63 0 0 0 0 0 0 0 +-19.314 -4.823 -1.629 0 0 0 0 0 0 0 +-19.235 -4.868 -1.623 0 0 0 0 0 0 0 +-19.181 -4.887 -1.618 0 0 0 0 0 0 0 +-19.105 -4.931 -1.613 0 0 0 0 0 0 0 +-19.03 -4.976 -1.607 0 0 0 0 0 0 0 +-18.968 -5.023 -1.602 0 0 0 0 0 0 0 +-18.883 -5.065 -1.596 0 0 0 0 0 0 0 +-18.815 -5.11 -1.591 0 0 0 0 0 0 0 +-18.668 -5.133 -1.578 0 0 0 0 0 0 0 +-18.583 -5.141 -1.571 0 0 0 0 0 0 0 +-18.513 -5.185 -1.566 0 0 0 0 0 0 0 +-18.459 -5.232 -1.562 0 0 0 0 0 0 0 +-18.264 -5.239 -1.545 0 0 0 0 0 0 0 +-17.811 -5.171 -1.504 0 0 0 0 0 0 0 +-17.738 -5.21 -1.498 0 0 0 0 0 0 0 +-17.656 -5.246 -1.492 0 0 0 0 0 0 0 +-17.617 -5.265 -1.489 0 0 0 0 0 0 0 +-17.538 -5.301 -1.483 0 0 0 0 0 0 0 +-17.477 -5.343 -1.479 0 0 0 0 0 0 0 +-17.415 -5.384 -1.474 0 0 0 0 0 0 0 +-17.348 -5.423 -1.47 0 0 0 0 0 0 0 +-17.274 -5.46 -1.464 0 0 0 0 0 0 0 +-17.208 -5.498 -1.459 0 0 0 0 0 0 0 +-17.195 -5.524 -1.459 0 0 0 0 0 0 0 +-17.227 -5.594 -1.464 0 0 0 0 0 0 0 +-17.283 -5.672 -1.471 0 0 0 0 0 0 0 +-17.311 -5.741 -1.475 0 0 0 0 0 0 0 +-17.351 -5.815 -1.481 0 0 0 0 0 0 0 +-17.301 -5.859 -1.478 0 0 0 0 0 0 0 +-17.222 -5.893 -1.472 0 0 0 0 0 0 0 +-17.177 -5.908 -1.468 0 0 0 0 0 0 0 +-17.107 -5.944 -1.464 0 0 0 0 0 0 0 +-17.028 -5.977 -1.458 0 0 0 0 0 0 0 +-16.989 -6.023 -1.456 0 0 0 0 0 0 0 +-16.718 -5.987 -1.431 0 0 0 0 0 0 0 +-16.699 -6.039 -1.431 0 0 0 0 0 0 0 +-16.763 -6.121 -1.439 0 0 0 0 0 0 0 +-16.689 -6.154 -1.434 0 0 0 0 0 0 0 +-16.646 -6.168 -1.431 0 0 0 0 0 0 0 +-16.582 -6.203 -1.426 0 0 0 0 0 0 0 +-16.506 -6.235 -1.421 0 0 0 0 0 0 0 +-16.431 -6.265 -1.415 0 0 0 0 0 0 0 +-16.357 -6.296 -1.41 0 0 0 0 0 0 0 +-16.281 -6.326 -1.404 0 0 0 0 0 0 0 +-16.248 -6.372 -1.403 0 0 0 0 0 0 0 +-16.175 -6.373 -1.397 0 0 0 0 0 0 0 +-16.109 -6.405 -1.392 0 0 0 0 0 0 0 +-16.039 -6.436 -1.387 0 0 0 0 0 0 0 +-15.996 -6.477 -1.385 0 0 0 0 0 0 0 +-15.928 -6.508 -1.38 0 0 0 0 0 0 0 +-15.909 -6.559 -1.381 0 0 0 0 0 0 0 +-15.909 -6.617 -1.383 0 0 0 0 0 0 0 +-15.933 -6.657 -1.386 0 0 0 0 0 0 0 +-15.673 -6.664 -1.364 0 0 0 0 0 0 0 +-15.755 -6.757 -1.375 0 0 0 0 0 0 0 +-15.953 -6.901 -1.397 0 0 0 0 0 0 0 +-15.958 -6.963 -1.399 0 0 0 0 0 0 0 +-15.96 -7.024 -1.402 0 0 0 0 0 0 0 +-15.98 -7.062 -1.405 0 0 0 0 0 0 0 +-15.876 -7.076 -1.397 0 0 0 0 0 0 0 +-15.781 -7.093 -1.389 0 0 0 0 0 0 0 +-15.682 -7.109 -1.382 0 0 0 0 0 0 0 +-15.622 -7.14 -1.378 0 0 0 0 0 0 0 +-15.628 -7.203 -1.381 0 0 0 0 0 0 0 +-15.643 -7.269 -1.384 0 0 0 0 0 0 0 +-15.657 -7.306 -1.387 0 0 0 0 0 0 0 +-15.672 -7.373 -1.391 0 0 0 0 0 0 0 +-15.669 -7.431 -1.393 0 0 0 0 0 0 0 +-15.667 -7.491 -1.395 0 0 0 0 0 0 0 +-15.683 -7.559 -1.399 0 0 0 0 0 0 0 +-15.655 -7.606 -1.399 0 0 0 0 0 0 0 +-14.756 -7.228 -1.309 0 0 0 0 0 0 0 +-14.704 -7.231 -1.305 0 0 0 0 0 0 0 +-14.634 -7.255 -1.3 0 0 0 0 0 0 0 +-14.685 -7.337 -1.308 0 0 0 0 0 0 0 +-16.112 -8.111 -1.457 0 0 0 0 0 0 0 +-16.117 -8.177 -1.46 0 0 0 0 0 0 0 +-16.18 -8.272 -1.469 0 0 0 0 0 0 0 +-16.193 -8.343 -1.473 0 0 0 0 0 0 0 +-16.213 -8.386 -1.477 0 0 0 0 0 0 0 +-16.258 -8.474 -1.484 0 0 0 0 0 0 0 +-16.235 -8.527 -1.484 0 0 0 0 0 0 0 +-16.238 -8.593 -1.488 0 0 0 0 0 0 0 +-16.258 -8.669 -1.492 0 0 0 0 0 0 0 +-16.275 -8.744 -1.497 0 0 0 0 0 0 0 +-16.308 -8.828 -1.503 0 0 0 0 0 0 0 +-16.331 -8.907 -1.509 0 0 0 0 0 0 0 +-16.328 -8.938 -1.51 0 0 0 0 0 0 0 +-16.256 -8.966 -1.505 0 0 0 0 0 0 0 +-16.231 -9.019 -1.506 0 0 0 0 0 0 0 +-16.239 -9.09 -1.509 0 0 0 0 0 0 0 +-16.247 -9.161 -1.513 0 0 0 0 0 0 0 +-16.256 -9.234 -1.517 0 0 0 0 0 0 0 +-16.26 -9.304 -1.521 0 0 0 0 0 0 0 +-16.284 -9.351 -1.525 0 0 0 0 0 0 0 +-16.297 -9.427 -1.529 0 0 0 0 0 0 0 +-16.302 -9.498 -1.533 0 0 0 0 0 0 0 +-16.313 -9.573 -1.537 0 0 0 0 0 0 0 +-16.307 -9.639 -1.54 0 0 0 0 0 0 0 +-16.308 -9.708 -1.543 0 0 0 0 0 0 0 +-16.33 -9.791 -1.549 0 0 0 0 0 0 0 +-16.351 -9.838 -1.553 0 0 0 0 0 0 0 +-16.361 -9.914 -1.557 0 0 0 0 0 0 0 +-16.355 -9.981 -1.56 0 0 0 0 0 0 0 +-16.374 -10.064 -1.565 0 0 0 0 0 0 0 +-16.38 -10.138 -1.57 0 0 0 0 0 0 0 +-16.4 -10.222 -1.575 0 0 0 0 0 0 0 +-16.399 -10.293 -1.578 0 0 0 0 0 0 0 +-16.416 -10.34 -1.582 0 0 0 0 0 0 0 +-16.422 -10.416 -1.586 0 0 0 0 0 0 0 +-16.435 -10.496 -1.591 0 0 0 0 0 0 0 +-16.44 -10.572 -1.596 0 0 0 0 0 0 0 +-16.449 -10.651 -1.6 0 0 0 0 0 0 0 +-16.455 -10.729 -1.604 0 0 0 0 0 0 0 +-16.447 -10.797 -1.607 0 0 0 0 0 0 0 +-16.506 -10.873 -1.616 0 0 0 0 0 0 0 +-16.519 -10.955 -1.621 0 0 0 0 0 0 0 +-16.535 -11.041 -1.626 0 0 0 0 0 0 0 +-16.564 -11.135 -1.633 0 0 0 0 0 0 0 +-16.555 -11.205 -1.636 0 0 0 0 0 0 0 +-16.557 -11.283 -1.641 0 0 0 0 0 0 0 +-16.56 -11.361 -1.645 0 0 0 0 0 0 0 +-10.537 -7.265 -0.975 0 0 0 0 0 0 0 +-10.509 -7.294 -0.975 0 0 0 0 0 0 0 +-10.499 -7.337 -0.976 0 0 0 0 0 0 0 +-10.454 -7.353 -0.974 0 0 0 0 0 0 0 +-10.383 -7.353 -0.968 0 0 0 0 0 0 0 +-10.404 -7.417 -0.973 0 0 0 0 0 0 0 +-10.421 -7.478 -0.978 0 0 0 0 0 0 0 +-10.385 -7.477 -0.975 0 0 0 0 0 0 0 +-10.37 -7.516 -0.976 0 0 0 0 0 0 0 +-10.346 -7.548 -0.976 0 0 0 0 0 0 0 +-10.349 -7.601 -0.979 0 0 0 0 0 0 0 +-10.393 -7.683 -0.987 0 0 0 0 0 0 0 +-10.41 -7.746 -0.992 0 0 0 0 0 0 0 +-10.461 -7.835 -1 0 0 0 0 0 0 0 +-10.468 -7.892 -1.004 0 0 0 0 0 0 0 +-16.697 -12.609 -1.722 0 0 0 0 0 0 0 +-16.709 -12.701 -1.728 0 0 0 0 0 0 0 +-16.729 -12.799 -1.735 0 0 0 0 0 0 0 +-16.732 -12.884 -1.74 0 0 0 0 0 0 0 +-16.732 -12.968 -1.745 0 0 0 0 0 0 0 +-16.745 -13.063 -1.751 0 0 0 0 0 0 0 +-16.749 -13.151 -1.756 0 0 0 0 0 0 0 +-16.779 -13.216 -1.762 0 0 0 0 0 0 0 +-16.798 -13.317 -1.769 0 0 0 0 0 0 0 +-16.792 -13.398 -1.773 0 0 0 0 0 0 0 +-16.81 -13.5 -1.781 0 0 0 0 0 0 0 +-16.805 -13.582 -1.785 0 0 0 0 0 0 0 +-16.813 -13.677 -1.791 0 0 0 0 0 0 0 +-16.833 -13.781 -1.798 0 0 0 0 0 0 0 +-16.853 -13.841 -1.803 0 0 0 0 0 0 0 +-16.856 -13.932 -1.809 0 0 0 0 0 0 0 +-16.869 -14.032 -1.816 0 0 0 0 0 0 0 +-16.884 -14.135 -1.823 0 0 0 0 0 0 0 +-16.901 -14.239 -1.83 0 0 0 0 0 0 0 +-16.9 -14.33 -1.835 0 0 0 0 0 0 0 +-16.91 -14.429 -1.842 0 0 0 0 0 0 0 +-16.956 -14.515 -1.85 0 0 0 0 0 0 0 +-16.952 -14.603 -1.855 0 0 0 0 0 0 0 +-16.972 -14.714 -1.863 0 0 0 0 0 0 0 +-16.98 -14.814 -1.87 0 0 0 0 0 0 0 +-16.997 -14.924 -1.878 0 0 0 0 0 0 0 +-13.847 -12.242 -1.498 0 0 0 0 0 0 0 +-13.751 -12.234 -1.491 0 0 0 0 0 0 0 +-13.867 -12.376 -1.507 0 0 0 0 0 0 0 +-16.942 -15.208 -1.891 0 0 0 0 0 0 0 +-16.902 -15.268 -1.892 0 0 0 0 0 0 0 +-16.861 -15.328 -1.893 0 0 0 0 0 0 0 +-16.8 -15.369 -1.892 0 0 0 0 0 0 0 +-16.772 -15.44 -1.894 0 0 0 0 0 0 0 +-16.719 -15.489 -1.894 0 0 0 0 0 0 0 +-16.7 -15.52 -1.894 0 0 0 0 0 0 0 +-16.664 -15.585 -1.896 0 0 0 0 0 0 0 +-16.642 -15.662 -1.899 0 0 0 0 0 0 0 +-16.586 -15.709 -1.899 0 0 0 0 0 0 0 +-16.563 -15.785 -1.902 0 0 0 0 0 0 0 +-16.522 -15.845 -1.903 0 0 0 0 0 0 0 +-16.485 -15.91 -1.905 0 0 0 0 0 0 0 +-13.822 -13.472 -1.573 0 0 0 0 0 0 0 +-16.394 -16.072 -1.909 0 0 0 0 0 0 0 +-16.335 -16.115 -1.908 0 0 0 0 0 0 0 +-16.298 -16.18 -1.91 0 0 0 0 0 0 0 +-16.242 -16.226 -1.909 0 0 0 0 0 0 0 +-16.195 -16.281 -1.91 0 0 0 0 0 0 0 +-16.19 -16.328 -1.912 0 0 0 0 0 0 0 +-16.154 -16.394 -1.914 0 0 0 0 0 0 0 +-16.108 -16.45 -1.915 0 0 0 0 0 0 0 +-16.061 -16.505 -1.916 0 0 0 0 0 0 0 +-16.017 -16.564 -1.917 0 0 0 0 0 0 0 +-15.968 -16.617 -1.917 0 0 0 0 0 0 0 +-15.921 -16.673 -1.918 0 0 0 0 0 0 0 +-15.915 -16.72 -1.921 0 0 0 0 0 0 0 +-15.842 -16.748 -1.918 0 0 0 0 0 0 0 +-15.826 -16.837 -1.923 0 0 0 0 0 0 0 +-15.783 -16.897 -1.924 0 0 0 0 0 0 0 +-14.005 -15.093 -1.691 0 0 0 0 0 0 0 +-15.736 -17.06 -1.932 0 0 0 0 0 0 0 +-15.674 -17.1 -1.931 0 0 0 0 0 0 0 +-15.645 -17.122 -1.931 0 0 0 0 0 0 0 +-15.599 -17.18 -1.932 0 0 0 0 0 0 0 +-15.553 -17.238 -1.933 0 0 0 0 0 0 0 +-15.496 -17.284 -1.932 0 0 0 0 0 0 0 +-15.447 -17.338 -1.933 0 0 0 0 0 0 0 +-15.388 -17.382 -1.933 0 0 0 0 0 0 0 +-15.336 -17.433 -1.933 0 0 0 0 0 0 0 +-15.318 -17.468 -1.934 0 0 0 0 0 0 0 +-15.256 -17.508 -1.933 0 0 0 0 0 0 0 +-15.208 -17.564 -1.934 0 0 0 0 0 0 0 +-15.168 -17.629 -1.937 0 0 0 0 0 0 0 +-14.085 -16.478 -1.791 0 0 0 0 0 0 0 +-15.07 -17.74 -1.938 0 0 0 0 0 0 0 +-15.009 -17.781 -1.938 0 0 0 0 0 0 0 +-14.999 -17.826 -1.94 0 0 0 0 0 0 0 +-14.938 -17.867 -1.939 0 0 0 0 0 0 0 +-14.891 -17.924 -1.941 0 0 0 0 0 0 0 +-14.833 -17.969 -1.941 0 0 0 0 0 0 0 +-14.778 -18.017 -1.941 0 0 0 0 0 0 0 +-14.714 -18.054 -1.94 0 0 0 0 0 0 0 +-14.669 -18.116 -1.941 0 0 0 0 0 0 0 +-14.624 -18.176 -1.943 0 0 0 0 0 0 0 +-14.592 -18.196 -1.943 0 0 0 0 0 0 0 +-14.541 -18.249 -1.944 0 0 0 0 0 0 0 +-14.473 -18.281 -1.942 0 0 0 0 0 0 0 +-14.404 -18.312 -1.94 0 0 0 0 0 0 0 +-14.226 -18.204 -1.922 0 0 0 0 0 0 0 +-14.189 -18.273 -1.925 0 0 0 0 0 0 0 +-14.286 -18.518 -1.949 0 0 0 0 0 0 0 +-14.274 -18.563 -1.951 0 0 0 0 0 0 0 +-14.24 -18.639 -1.955 0 0 0 0 0 0 0 +-14.144 -18.757 -1.958 0 0 0 0 0 0 0 +-14.146 -18.882 -1.967 0 0 0 0 0 0 0 +-14.144 -19.003 -1.976 0 0 0 0 0 0 0 +-14.123 -19.1 -1.982 0 0 0 0 0 0 0 +-14.107 -19.142 -1.984 0 0 0 0 0 0 0 +-14.093 -19.249 -1.992 0 0 0 0 0 0 0 +-14.066 -19.339 -1.997 0 0 0 0 0 0 0 +-14.042 -19.433 -2.003 0 0 0 0 0 0 0 +-14.031 -19.547 -2.01 0 0 0 0 0 0 0 +-14.023 -19.666 -2.019 0 0 0 0 0 0 0 +-13.987 -19.747 -2.023 0 0 0 0 0 0 0 +-13.989 -19.816 -2.028 0 0 0 0 0 0 0 +-13.942 -19.881 -2.031 0 0 0 0 0 0 0 +-13.896 -19.948 -2.033 0 0 0 0 0 0 0 +-13.848 -20.012 -2.036 0 0 0 0 0 0 0 +-13.799 -20.077 -2.038 0 0 0 0 0 0 0 +-13.762 -20.158 -2.042 0 0 0 0 0 0 0 +-13.745 -20.269 -2.05 0 0 0 0 0 0 0 +-13.777 -20.386 -2.06 0 0 0 0 0 0 0 +-13.774 -20.52 -2.07 0 0 0 0 0 0 0 +-13.775 -20.661 -2.081 0 0 0 0 0 0 0 +-13.754 -20.771 -2.089 0 0 0 0 0 0 0 +-13.679 -20.799 -2.087 0 0 0 0 0 0 0 +-13.579 -20.788 -2.081 0 0 0 0 0 0 0 +-13.476 -20.774 -2.075 0 0 0 0 0 0 0 +-13.408 -20.74 -2.069 0 0 0 0 0 0 0 +-13.315 -20.738 -2.064 0 0 0 0 0 0 0 +-13.224 -20.74 -2.06 0 0 0 0 0 0 0 +-13.12 -20.721 -2.053 0 0 0 0 0 0 0 +-13.02 -20.706 -2.047 0 0 0 0 0 0 0 +-12.913 -20.68 -2.04 0 0 0 0 0 0 0 +-12.79 -20.627 -2.03 0 0 0 0 0 0 0 +-12.708 -20.568 -2.021 0 0 0 0 0 0 0 +-12.617 -20.565 -2.016 0 0 0 0 0 0 0 +-12.523 -20.555 -2.011 0 0 0 0 0 0 0 +-12.434 -20.555 -2.007 0 0 0 0 0 0 0 +-12.344 -20.552 -2.002 0 0 0 0 0 0 0 +-12.255 -20.549 -1.998 0 0 0 0 0 0 0 +-12.16 -20.536 -1.993 0 0 0 0 0 0 0 +-12.095 -20.5 -1.987 0 0 0 0 0 0 0 +-12.007 -20.499 -1.982 0 0 0 0 0 0 0 +-11.914 -20.487 -1.977 0 0 0 0 0 0 0 +-11.844 -20.515 -1.976 0 0 0 0 0 0 0 +-11.748 -20.497 -1.97 0 0 0 0 0 0 0 +-11.683 -20.532 -1.97 0 0 0 0 0 0 0 +-11.615 -20.564 -1.97 0 0 0 0 0 0 0 +-11.58 -20.577 -1.969 0 0 0 0 0 0 0 +-11.502 -20.59 -1.967 0 0 0 0 0 0 0 +-11.416 -20.588 -1.963 0 0 0 0 0 0 0 +-11.349 -20.619 -1.962 0 0 0 0 0 0 0 +-11.279 -20.645 -1.961 0 0 0 0 0 0 0 +-11.194 -20.644 -1.957 0 0 0 0 0 0 0 +-11.115 -20.653 -1.955 0 0 0 0 0 0 0 +-11.064 -20.635 -1.951 0 0 0 0 0 0 0 +-10.991 -20.654 -1.949 0 0 0 0 0 0 0 +-10.898 -20.636 -1.944 0 0 0 0 0 0 0 +-10.83 -20.664 -1.943 0 0 0 0 0 0 0 +-10.756 -20.681 -1.941 0 0 0 0 0 0 0 +-10.689 -20.711 -1.941 0 0 0 0 0 0 0 +-10.619 -20.735 -1.94 0 0 0 0 0 0 0 +-10.586 -20.75 -1.94 0 0 0 0 0 0 0 +-10.514 -20.771 -1.939 0 0 0 0 0 0 0 +-10.444 -20.795 -1.938 0 0 0 0 0 0 0 +-10.376 -20.822 -1.937 0 0 0 0 0 0 0 +-10.3 -20.834 -1.935 0 0 0 0 0 0 0 +-10.227 -20.85 -1.933 0 0 0 0 0 0 0 +-10.156 -20.871 -1.932 0 0 0 0 0 0 0 +-10.112 -20.864 -1.93 0 0 0 0 0 0 0 +-10.036 -20.874 -1.928 0 0 0 0 0 0 0 +-9.969 -20.902 -1.927 0 0 0 0 0 0 0 +-9.894 -20.913 -1.925 0 0 0 0 0 0 0 +-9.821 -20.93 -1.924 0 0 0 0 0 0 0 +-9.754 -20.957 -1.924 0 0 0 0 0 0 0 +-9.687 -20.985 -1.923 0 0 0 0 0 0 0 +-9.608 -20.987 -1.92 0 0 0 0 0 0 0 +-9.564 -20.978 -1.918 0 0 0 0 0 0 0 +-9.486 -20.983 -1.915 0 0 0 0 0 0 0 +-9.416 -21.004 -1.915 0 0 0 0 0 0 0 +-9.345 -21.022 -1.913 0 0 0 0 0 0 0 +-9.277 -21.046 -1.913 0 0 0 0 0 0 0 +-9.206 -21.064 -1.912 0 0 0 0 0 0 0 +-9.141 -21.096 -1.912 0 0 0 0 0 0 0 +-9.099 -21.091 -1.91 0 0 0 0 0 0 0 +-9.033 -21.119 -1.91 0 0 0 0 0 0 0 +-8.972 -21.16 -1.911 0 0 0 0 0 0 0 +-8.926 -21.236 -1.916 0 0 0 0 0 0 0 +-8.745 -21.178 -1.905 0 0 0 0 0 0 0 +-8.703 -21.171 -1.903 0 0 0 0 0 0 0 +-8.647 -21.222 -1.905 0 0 0 0 0 0 0 +-8.558 -21.196 -1.9 0 0 0 0 0 0 0 +-8.476 -21.184 -1.896 0 0 0 0 0 0 0 +-8.407 -21.205 -1.896 0 0 0 0 0 0 0 +-8.33 -21.205 -1.893 0 0 0 0 0 0 0 +-8.261 -21.226 -1.892 0 0 0 0 0 0 0 +-8.195 -21.251 -1.892 0 0 0 0 0 0 0 +-8.158 -21.255 -1.891 0 0 0 0 0 0 0 +-8.074 -21.236 -1.887 0 0 0 0 0 0 0 +-8.004 -21.252 -1.886 0 0 0 0 0 0 0 +-7.929 -21.256 -1.884 0 0 0 0 0 0 0 +-7.866 -21.291 -1.885 0 0 0 0 0 0 0 +-7.798 -21.313 -1.885 0 0 0 0 0 0 0 +-7.737 -21.353 -1.886 0 0 0 0 0 0 0 +-7.702 -21.363 -1.886 0 0 0 0 0 0 0 +-7.639 -21.396 -1.887 0 0 0 0 0 0 0 +-7.585 -21.46 -1.891 0 0 0 0 0 0 0 +-7.518 -21.483 -1.891 0 0 0 0 0 0 0 +-7.444 -21.488 -1.889 0 0 0 0 0 0 0 +-7.368 -21.487 -1.887 0 0 0 0 0 0 0 +-7.286 -21.468 -1.883 0 0 0 0 0 0 0 +-7.23 -21.414 -1.876 0 0 0 0 0 0 0 +-7.16 -21.429 -1.876 0 0 0 0 0 0 0 +-7.085 -21.429 -1.873 0 0 0 0 0 0 0 +-7.016 -21.445 -1.873 0 0 0 0 0 0 0 +-6.947 -21.461 -1.872 0 0 0 0 0 0 0 +-6.875 -21.47 -1.871 0 0 0 0 0 0 0 +-6.805 -21.484 -1.87 0 0 0 0 0 0 0 +-6.769 -21.487 -1.87 0 0 0 0 0 0 0 +-6.703 -21.514 -1.87 0 0 0 0 0 0 0 +-6.617 -21.474 -1.864 0 0 0 0 0 0 0 +-6.573 -21.571 -1.872 0 0 0 0 0 0 0 +-6.495 -21.557 -1.868 0 0 0 0 0 0 0 +-6.426 -21.573 -1.868 0 0 0 0 0 0 0 +-6.349 -21.563 -1.865 0 0 0 0 0 0 0 +-6.313 -21.565 -1.864 0 0 0 0 0 0 0 +-6.242 -21.573 -1.863 0 0 0 0 0 0 0 +-6.177 -21.602 -1.864 0 0 0 0 0 0 0 +-6.106 -21.614 -1.863 0 0 0 0 0 0 0 +-6.037 -21.627 -1.863 0 0 0 0 0 0 0 +-5.976 -21.673 -1.865 0 0 0 0 0 0 0 +-5.909 -21.696 -1.866 0 0 0 0 0 0 0 +-5.876 -21.707 -1.866 0 0 0 0 0 0 0 +-5.827 -21.798 -1.873 0 0 0 0 0 0 0 +-5.736 -21.73 -1.865 0 0 0 0 0 0 0 +-5.66 -21.721 -1.862 0 0 0 0 0 0 0 +-5.585 -21.711 -1.859 0 0 0 0 0 0 0 +-5.509 -21.7 -1.857 0 0 0 0 0 0 0 +-5.442 -21.719 -1.857 0 0 0 0 0 0 0 +-5.407 -21.724 -1.857 0 0 0 0 0 0 0 +-5.338 -21.741 -1.857 0 0 0 0 0 0 0 +-5.269 -21.753 -1.856 0 0 0 0 0 0 0 +-5.206 -21.793 -1.858 0 0 0 0 0 0 0 +-5.126 -21.761 -1.854 0 0 0 0 0 0 0 +-5.061 -21.788 -1.855 0 0 0 0 0 0 0 +-4.985 -21.773 -1.852 0 0 0 0 0 0 0 +-4.953 -21.793 -1.853 0 0 0 0 0 0 0 +-4.883 -21.8 -1.852 0 0 0 0 0 0 0 +-4.811 -21.798 -1.851 0 0 0 0 0 0 0 +-4.742 -21.811 -1.85 0 0 0 0 0 0 0 +-4.673 -21.824 -1.85 0 0 0 0 0 0 0 +-4.607 -21.852 -1.852 0 0 0 0 0 0 0 +-4.54 -21.874 -1.852 0 0 0 0 0 0 0 +-4.513 -21.915 -1.855 0 0 0 0 0 0 0 +-4.454 -21.979 -1.86 0 0 0 0 0 0 0 +-4.43 -22.218 -1.881 0 0 0 0 0 0 0 +-4.301 -21.933 -1.853 0 0 0 0 0 0 0 +-4.226 -21.911 -1.85 0 0 0 0 0 0 0 +-4.144 -21.856 -1.844 0 0 0 0 0 0 0 +-4.065 -21.818 -1.839 0 0 0 0 0 0 0 +-4.022 -21.775 -1.834 0 0 0 0 0 0 0 +-3.946 -21.746 -1.83 0 0 0 0 0 0 0 +-3.872 -21.727 -1.827 0 0 0 0 0 0 0 +-3.799 -21.712 -1.825 0 0 0 0 0 0 0 +-3.723 -21.681 -1.821 0 0 0 0 0 0 0 +-3.655 -21.69 -1.821 0 0 0 0 0 0 0 +-3.585 -21.692 -1.82 0 0 0 0 0 0 0 +-3.551 -21.699 -1.82 0 0 0 0 0 0 0 +-3.416 -21.727 -1.82 0 0 0 0 0 0 0 +-3.352 -21.763 -1.823 0 0 0 0 0 0 0 +-3.306 -21.923 -1.837 0 0 0 0 0 0 0 +-3.203 -21.707 -1.816 0 0 0 0 0 0 0 +-3.136 -21.723 -1.816 0 0 0 0 0 0 0 +-3.104 -21.742 -1.818 0 0 0 0 0 0 0 +-3.039 -21.777 -1.82 0 0 0 0 0 0 0 +-2.974 -21.808 -1.822 0 0 0 0 0 0 0 +-2.91 -21.855 -1.825 0 0 0 0 0 0 0 +-2.843 -21.874 -1.826 0 0 0 0 0 0 0 +-2.778 -21.91 -1.829 0 0 0 0 0 0 0 +-2.709 -21.919 -1.829 0 0 0 0 0 0 0 +-2.671 -21.899 -1.827 0 0 0 0 0 0 0 +-2.603 -21.91 -1.827 0 0 0 0 0 0 0 +-2.288 -19.815 -1.632 0 0 0 0 0 0 0 +-2.061 -18.366 -1.498 0 0 0 0 0 0 0 +-1.927 -17.687 -1.434 0 0 0 0 0 0 0 +-1.376 -16.789 -1.347 0 0 0 0 0 0 0 +-1.248 -16.851 -1.352 0 0 0 0 0 0 0 +-1.192 -16.821 -1.349 0 0 0 0 0 0 0 +-1.14 -16.837 -1.35 0 0 0 0 0 0 0 +-1.087 -16.841 -1.35 0 0 0 0 0 0 0 +-1.035 -16.856 -1.351 0 0 0 0 0 0 0 +-0.983 -16.869 -1.352 0 0 0 0 0 0 0 +-0.957 -16.88 -1.353 0 0 0 0 0 0 0 +-0.904 -16.889 -1.354 0 0 0 0 0 0 0 +-0.851 -16.888 -1.353 0 0 0 0 0 0 0 +-0.807 -17.084 -1.371 0 0 0 0 0 0 0 +-0.739 -16.778 -1.343 0 0 0 0 0 0 0 +-0.367 -22.68 -1.884 0 0 0 0 0 0 0 +-0.294 -22.56 -1.873 0 0 0 0 0 0 0 +-0.221 -22.405 -1.858 0 0 0 0 0 0 0 +-0.148 -22.089 -1.829 0 0 0 0 0 0 0 +-0.077 -21.747 -1.798 0 0 0 0 0 0 0 +-0.009 -21.476 -1.773 0 0 0 0 0 0 0 +0.058 -21.199 -1.747 0 0 0 0 0 0 0 +0.091 -21.062 -1.735 0 0 0 0 0 0 0 +0.157 -21.033 -1.732 0 0 0 0 0 0 0 +0.224 -21.051 -1.734 0 0 0 0 0 0 0 +0.29 -21.112 -1.74 0 0 0 0 0 0 0 +0.356 -21.059 -1.735 0 0 0 0 0 0 0 +0.421 -21.024 -1.732 0 0 0 0 0 0 0 +0.488 -21.032 -1.733 0 0 0 0 0 0 0 +0.52 -21 -1.73 0 0 0 0 0 0 0 +0.585 -20.966 -1.727 0 0 0 0 0 0 0 +0.651 -20.948 -1.725 0 0 0 0 0 0 0 +0.716 -20.936 -1.724 0 0 0 0 0 0 0 +0.781 -20.924 -1.723 0 0 0 0 0 0 0 +0.846 -20.895 -1.721 0 0 0 0 0 0 0 +0.91 -20.859 -1.718 0 0 0 0 0 0 0 +0.94 -20.794 -1.712 0 0 0 0 0 0 0 +1.007 -20.817 -1.714 0 0 0 0 0 0 0 +1.072 -20.799 -1.713 0 0 0 0 0 0 0 +1.135 -20.768 -1.711 0 0 0 0 0 0 0 +1.197 -20.693 -1.704 0 0 0 0 0 0 0 +1.262 -20.691 -1.704 0 0 0 0 0 0 0 +1.325 -20.663 -1.702 0 0 0 0 0 0 0 +1.353 -20.585 -1.695 0 0 0 0 0 0 0 +1.415 -20.547 -1.692 0 0 0 0 0 0 0 +1.478 -20.515 -1.689 0 0 0 0 0 0 0 +1.54 -20.486 -1.687 0 0 0 0 0 0 0 +1.602 -20.452 -1.684 0 0 0 0 0 0 0 +1.666 -20.439 -1.684 0 0 0 0 0 0 0 +1.728 -20.403 -1.681 0 0 0 0 0 0 0 +1.759 -20.389 -1.68 0 0 0 0 0 0 0 +1.822 -20.369 -1.679 0 0 0 0 0 0 0 +1.886 -20.371 -1.679 0 0 0 0 0 0 0 +1.95 -20.361 -1.679 0 0 0 0 0 0 0 +2.012 -20.331 -1.677 0 0 0 0 0 0 0 +2.072 -20.289 -1.673 0 0 0 0 0 0 0 +2.132 -20.249 -1.67 0 0 0 0 0 0 0 +2.163 -20.24 -1.67 0 0 0 0 0 0 0 +2.222 -20.187 -1.666 0 0 0 0 0 0 0 +2.284 -20.172 -1.665 0 0 0 0 0 0 0 +2.348 -20.163 -1.665 0 0 0 0 0 0 0 +2.408 -20.13 -1.662 0 0 0 0 0 0 0 +2.471 -20.122 -1.662 0 0 0 0 0 0 0 +2.532 -20.098 -1.661 0 0 0 0 0 0 0 +2.559 -20.057 -1.657 0 0 0 0 0 0 0 +2.619 -20.027 -1.655 0 0 0 0 0 0 0 +2.685 -20.042 -1.658 0 0 0 0 0 0 0 +2.746 -20.018 -1.656 0 0 0 0 0 0 0 +2.809 -20.009 -1.656 0 0 0 0 0 0 0 +2.874 -20.012 -1.657 0 0 0 0 0 0 0 +2.933 -19.981 -1.655 0 0 0 0 0 0 0 +2.961 -19.955 -1.653 0 0 0 0 0 0 0 +3.024 -19.948 -1.653 0 0 0 0 0 0 0 +3.083 -19.911 -1.651 0 0 0 0 0 0 0 +3.145 -19.899 -1.651 0 0 0 0 0 0 0 +3.207 -19.887 -1.65 0 0 0 0 0 0 0 +3.267 -19.863 -1.649 0 0 0 0 0 0 0 +3.319 -19.79 -1.643 0 0 0 0 0 0 0 +3.35 -19.781 -1.643 0 0 0 0 0 0 0 +3.401 -19.707 -1.637 0 0 0 0 0 0 0 +3.429 -19.498 -1.619 0 0 0 0 0 0 0 +3.484 -19.456 -1.616 0 0 0 0 0 0 0 +3.538 -19.406 -1.612 0 0 0 0 0 0 0 +3.584 -19.31 -1.604 0 0 0 0 0 0 0 +3.626 -19.199 -1.595 0 0 0 0 0 0 0 +3.651 -19.166 -1.592 0 0 0 0 0 0 0 +3.704 -19.119 -1.589 0 0 0 0 0 0 0 +3.767 -19.121 -1.59 0 0 0 0 0 0 0 +3.827 -19.111 -1.59 0 0 0 0 0 0 0 +1.418 -6.414 -0.403 0 0 0 0 0 0 0 +1.486 -6.434 -0.406 0 0 0 0 0 0 0 +1.513 -6.46 -0.409 0 0 0 0 0 0 0 +1.522 -6.454 -0.409 0 0 0 0 0 0 0 +4.252 -17.725 -1.474 0 0 0 0 0 0 0 +4.149 -17.055 -1.412 0 0 0 0 0 0 0 +4.336 -17.586 -1.464 0 0 0 0 0 0 0 +4.354 -17.425 -1.45 0 0 0 0 0 0 0 +4.367 -17.245 -1.434 0 0 0 0 0 0 0 +4.313 -16.916 -1.404 0 0 0 0 0 0 0 +4.405 -17.053 -1.418 0 0 0 0 0 0 0 +4.345 -16.603 -1.376 0 0 0 0 0 0 0 +4.491 -16.732 -1.391 0 0 0 0 0 0 0 +4.411 -16.227 -1.345 0 0 0 0 0 0 0 +4.472 -16.252 -1.348 0 0 0 0 0 0 0 +4.516 -16.31 -1.354 0 0 0 0 0 0 0 +4.598 -16.407 -1.365 0 0 0 0 0 0 0 +4.551 -16.043 -1.332 0 0 0 0 0 0 0 +4.567 -15.91 -1.32 0 0 0 0 0 0 0 +4.618 -15.898 -1.321 0 0 0 0 0 0 0 +4.712 -16.034 -1.335 0 0 0 0 0 0 0 +4.696 -15.796 -1.314 0 0 0 0 0 0 0 +4.683 -15.661 -1.301 0 0 0 0 0 0 0 +4.762 -15.743 -1.311 0 0 0 0 0 0 0 +4.815 -15.741 -1.312 0 0 0 0 0 0 0 +4.829 -15.612 -1.301 0 0 0 0 0 0 0 +4.884 -15.614 -1.303 0 0 0 0 0 0 0 +4.888 -15.456 -1.289 0 0 0 0 0 0 0 +4.959 -15.511 -1.296 0 0 0 0 0 0 0 +4.882 -15.186 -1.265 0 0 0 0 0 0 0 +4.947 -15.224 -1.27 0 0 0 0 0 0 0 +5.057 -15.399 -1.289 0 0 0 0 0 0 0 +5.02 -15.126 -1.264 0 0 0 0 0 0 0 +5.077 -15.139 -1.267 0 0 0 0 0 0 0 +5.127 -15.13 -1.267 0 0 0 0 0 0 0 +5.217 -15.238 -1.279 0 0 0 0 0 0 0 +5.286 -15.36 -1.292 0 0 0 0 0 0 0 +5.391 -15.509 -1.308 0 0 0 0 0 0 0 +3.683 -10.465 -0.819 0 0 0 0 0 0 0 +3.726 -10.377 -0.813 0 0 0 0 0 0 0 +3.773 -10.405 -0.816 0 0 0 0 0 0 0 +5.606 -15.27 -1.294 0 0 0 0 0 0 0 +5.668 -15.291 -1.298 0 0 0 0 0 0 0 +5.713 -15.266 -1.297 0 0 0 0 0 0 0 +5.805 -15.363 -1.309 0 0 0 0 0 0 0 +5.828 -15.28 -1.302 0 0 0 0 0 0 0 +5.918 -15.371 -1.313 0 0 0 0 0 0 0 +5.897 -15.172 -1.295 0 0 0 0 0 0 0 +6.027 -15.293 -1.31 0 0 0 0 0 0 0 +6.074 -15.272 -1.31 0 0 0 0 0 0 0 +5.357 -13.339 -1.12 0 0 0 0 0 0 0 +5.375 -13.263 -1.114 0 0 0 0 0 0 0 +5.408 -13.224 -1.112 0 0 0 0 0 0 0 +5.448 -13.203 -1.112 0 0 0 0 0 0 0 +5.474 -13.207 -1.113 0 0 0 0 0 0 0 +5.517 -13.194 -1.113 0 0 0 0 0 0 0 +5.554 -13.167 -1.112 0 0 0 0 0 0 0 +5.599 -13.157 -1.113 0 0 0 0 0 0 0 +5.627 -13.108 -1.11 0 0 0 0 0 0 0 +5.692 -13.147 -1.116 0 0 0 0 0 0 0 +5.677 -12.999 -1.103 0 0 0 0 0 0 0 +5.693 -12.979 -1.102 0 0 0 0 0 0 0 +5.738 -12.972 -1.103 0 0 0 0 0 0 0 +5.766 -12.925 -1.1 0 0 0 0 0 0 0 +5.774 -12.834 -1.093 0 0 0 0 0 0 0 +5.81 -12.805 -1.091 0 0 0 0 0 0 0 +5.838 -12.761 -1.089 0 0 0 0 0 0 0 +5.841 -12.609 -1.076 0 0 0 0 0 0 0 +5.885 -12.6 -1.077 0 0 0 0 0 0 0 +5.89 -12.507 -1.07 0 0 0 0 0 0 0 +5.979 -12.595 -1.08 0 0 0 0 0 0 0 +6.039 -12.619 -1.085 0 0 0 0 0 0 0 +6.118 -12.683 -1.093 0 0 0 0 0 0 0 +6.024 -12.386 -1.065 0 0 0 0 0 0 0 +5.987 -12.261 -1.053 0 0 0 0 0 0 0 +6.17 -12.538 -1.083 0 0 0 0 0 0 0 +6.088 -12.272 -1.058 0 0 0 0 0 0 0 +6.161 -12.322 -1.065 0 0 0 0 0 0 0 +6.145 -12.192 -1.054 0 0 0 0 0 0 0 +6.621 -13.04 -1.143 0 0 0 0 0 0 0 +6.438 -12.53 -1.094 0 0 0 0 0 0 0 +6.393 -12.253 -1.069 0 0 0 0 0 0 0 +6.44 -12.248 -1.071 0 0 0 0 0 0 0 +6.457 -12.188 -1.067 0 0 0 0 0 0 0 +6.427 -12.039 -1.053 0 0 0 0 0 0 0 +6.506 -12.094 -1.061 0 0 0 0 0 0 0 +6.582 -12.146 -1.069 0 0 0 0 0 0 0 +6.65 -12.225 -1.078 0 0 0 0 0 0 0 +6.512 -11.88 -1.044 0 0 0 0 0 0 0 +6.61 -11.971 -1.056 0 0 0 0 0 0 0 +6.661 -11.975 -1.059 0 0 0 0 0 0 0 +6.622 -11.816 -1.044 0 0 0 0 0 0 0 +6.619 -11.724 -1.037 0 0 0 0 0 0 0 +6.639 -11.672 -1.033 0 0 0 0 0 0 0 +6.67 -11.684 -1.036 0 0 0 0 0 0 0 +6.732 -11.708 -1.04 0 0 0 0 0 0 0 +6.773 -11.694 -1.041 0 0 0 0 0 0 0 +6.771 -11.607 -1.034 0 0 0 0 0 0 0 +6.759 -11.502 -1.025 0 0 0 0 0 0 0 +6.899 -11.657 -1.044 0 0 0 0 0 0 0 +6.922 -11.655 -1.045 0 0 0 0 0 0 0 +6.896 -11.527 -1.034 0 0 0 0 0 0 0 +6.85 -11.369 -1.019 0 0 0 0 0 0 0 +7.109 -11.717 -1.059 0 0 0 0 0 0 0 +7.106 -11.63 -1.052 0 0 0 0 0 0 0 +7.061 -11.473 -1.037 0 0 0 0 0 0 0 +7.029 -11.341 -1.025 0 0 0 0 0 0 0 +7.049 -11.333 -1.026 0 0 0 0 0 0 0 +7.123 -11.374 -1.033 0 0 0 0 0 0 0 +7.144 -11.328 -1.03 0 0 0 0 0 0 0 +7.167 -11.285 -1.028 0 0 0 0 0 0 0 +7.186 -11.237 -1.025 0 0 0 0 0 0 0 +7.205 -11.189 -1.022 0 0 0 0 0 0 0 +7.282 -11.23 -1.029 0 0 0 0 0 0 0 +7.313 -11.241 -1.032 0 0 0 0 0 0 0 +7.401 -11.298 -1.04 0 0 0 0 0 0 0 +7.523 -11.406 -1.055 0 0 0 0 0 0 0 +7.406 -11.151 -1.029 0 0 0 0 0 0 0 +7.484 -11.193 -1.037 0 0 0 0 0 0 0 +7.512 -11.159 -1.035 0 0 0 0 0 0 0 +7.561 -11.155 -1.038 0 0 0 0 0 0 0 +7.523 -11.024 -1.026 0 0 0 0 0 0 0 +7.522 -10.986 -1.023 0 0 0 0 0 0 0 +7.637 -11.079 -1.036 0 0 0 0 0 0 0 +7.6 -10.952 -1.024 0 0 0 0 0 0 0 +7.599 -10.877 -1.019 0 0 0 0 0 0 0 +7.709 -10.961 -1.031 0 0 0 0 0 0 0 +8.046 -11.366 -1.079 0 0 0 0 0 0 0 +7.689 -10.787 -1.017 0 0 0 0 0 0 0 +7.663 -10.715 -1.01 0 0 0 0 0 0 0 +7.744 -10.757 -1.017 0 0 0 0 0 0 0 +7.767 -10.718 -1.016 0 0 0 0 0 0 0 +7.841 -10.749 -1.022 0 0 0 0 0 0 0 +7.911 -10.774 -1.028 0 0 0 0 0 0 0 +8.097 -10.956 -1.051 0 0 0 0 0 0 0 +8.173 -10.986 -1.058 0 0 0 0 0 0 0 +8.341 -11.177 -1.081 0 0 0 0 0 0 0 +8.086 -10.763 -1.036 0 0 0 0 0 0 0 +7.977 -10.548 -1.015 0 0 0 0 0 0 0 +8.002 -10.512 -1.013 0 0 0 0 0 0 0 +8.028 -10.477 -1.012 0 0 0 0 0 0 0 +7.949 -10.307 -0.995 0 0 0 0 0 0 0 +8.03 -10.378 -1.005 0 0 0 0 0 0 0 +8.115 -10.42 -1.013 0 0 0 0 0 0 0 +8.097 -10.33 -1.005 0 0 0 0 0 0 0 +8.121 -10.294 -1.004 0 0 0 0 0 0 0 +8.131 -10.24 -1.001 0 0 0 0 0 0 0 +8.225 -10.292 -1.01 0 0 0 0 0 0 0 +8.284 -10.299 -1.014 0 0 0 0 0 0 0 +8.282 -10.231 -1.009 0 0 0 0 0 0 0 +8.229 -10.133 -0.999 0 0 0 0 0 0 0 +8.254 -10.098 -0.998 0 0 0 0 0 0 0 +8.34 -10.138 -1.006 0 0 0 0 0 0 0 +8.276 -9.932 -0.987 0 0 0 0 0 0 0 +8.491 -10.126 -1.014 0 0 0 0 0 0 0 +8.445 -10.006 -1.002 0 0 0 0 0 0 0 +8.454 -9.986 -1.002 0 0 0 0 0 0 0 +8.548 -10.033 -1.011 0 0 0 0 0 0 0 +8.664 -10.105 -1.022 0 0 0 0 0 0 0 +8.662 -10.038 -1.018 0 0 0 0 0 0 0 +8.7 -10.019 -1.019 0 0 0 0 0 0 0 +8.574 -9.811 -0.997 0 0 0 0 0 0 0 +8.849 -10.063 -1.031 0 0 0 0 0 0 0 +8.517 -9.652 -0.982 0 0 0 0 0 0 0 +8.55 -9.629 -0.983 0 0 0 0 0 0 0 +8.564 -9.584 -0.98 0 0 0 0 0 0 0 +8.76 -9.742 -1.003 0 0 0 0 0 0 0 +8.813 -9.74 -1.006 0 0 0 0 0 0 0 +8.729 -9.585 -0.991 0 0 0 0 0 0 0 +8.778 -9.578 -0.993 0 0 0 0 0 0 0 +8.895 -9.676 -1.007 0 0 0 0 0 0 0 +8.982 -9.71 -1.015 0 0 0 0 0 0 0 +8.989 -9.657 -1.012 0 0 0 0 0 0 0 +8.918 -9.519 -0.998 0 0 0 0 0 0 0 +9.564 -10.147 -1.081 0 0 0 0 0 0 0 +9.654 -10.179 -1.089 0 0 0 0 0 0 0 +9.627 -10.118 -1.083 0 0 0 0 0 0 0 +9.053 -9.454 -1.002 0 0 0 0 0 0 0 +8.905 -9.24 -0.979 0 0 0 0 0 0 0 +8.886 -9.162 -0.972 0 0 0 0 0 0 0 +9.606 -9.845 -1.063 0 0 0 0 0 0 0 +9.394 -9.567 -1.031 0 0 0 0 0 0 0 +9.018 -9.124 -0.978 0 0 0 0 0 0 0 +9.694 -9.719 -1.061 0 0 0 0 0 0 0 +9.03 -8.994 -0.97 0 0 0 0 0 0 0 +9.115 -9.022 -0.978 0 0 0 0 0 0 0 +9.659 -9.503 -1.044 0 0 0 0 0 0 0 +9.65 -9.434 -1.039 0 0 0 0 0 0 0 +9.647 -9.372 -1.035 0 0 0 0 0 0 0 +9.712 -9.376 -1.04 0 0 0 0 0 0 0 +9.681 -9.317 -1.034 0 0 0 0 0 0 0 +9.693 -9.27 -1.032 0 0 0 0 0 0 0 +9.705 -9.223 -1.03 0 0 0 0 0 0 0 +9.728 -9.187 -1.029 0 0 0 0 0 0 0 +9.683 -9.087 -1.02 0 0 0 0 0 0 0 +9.226 -8.602 -0.958 0 0 0 0 0 0 0 +9.728 -9.015 -1.018 0 0 0 0 0 0 0 +9.735 -8.993 -1.017 0 0 0 0 0 0 0 +9.749 -8.949 -1.015 0 0 0 0 0 0 0 +9.756 -8.899 -1.013 0 0 0 0 0 0 0 +9.759 -8.846 -1.01 0 0 0 0 0 0 0 +9.763 -8.793 -1.007 0 0 0 0 0 0 0 +9.269 -8.294 -0.942 0 0 0 0 0 0 0 +9.265 -8.239 -0.939 0 0 0 0 0 0 0 +9.259 -8.207 -0.936 0 0 0 0 0 0 0 +9.259 -8.155 -0.933 0 0 0 0 0 0 0 +9.285 -8.126 -0.933 0 0 0 0 0 0 0 +9.289 -8.078 -0.931 0 0 0 0 0 0 0 +9.309 -8.044 -0.93 0 0 0 0 0 0 0 +9.319 -8.002 -0.928 0 0 0 0 0 0 0 +9.352 -7.979 -0.929 0 0 0 0 0 0 0 +9.364 -7.964 -0.929 0 0 0 0 0 0 0 +9.389 -7.935 -0.929 0 0 0 0 0 0 0 +9.405 -7.898 -0.928 0 0 0 0 0 0 0 +9.422 -7.862 -0.927 0 0 0 0 0 0 0 +9.463 -7.846 -0.929 0 0 0 0 0 0 0 +9.473 -7.803 -0.927 0 0 0 0 0 0 0 +9.5 -7.776 -0.927 0 0 0 0 0 0 0 +9.488 -7.741 -0.925 0 0 0 0 0 0 0 +9.514 -7.712 -0.925 0 0 0 0 0 0 0 +9.536 -7.681 -0.925 0 0 0 0 0 0 0 +9.571 -7.66 -0.926 0 0 0 0 0 0 0 +9.595 -7.63 -0.926 0 0 0 0 0 0 0 +9.629 -7.607 -0.927 0 0 0 0 0 0 0 +9.638 -7.566 -0.925 0 0 0 0 0 0 0 +9.609 -7.519 -0.921 0 0 0 0 0 0 0 +9.638 -7.492 -0.921 0 0 0 0 0 0 0 +9.679 -7.475 -0.923 0 0 0 0 0 0 0 +9.704 -7.446 -0.923 0 0 0 0 0 0 0 +9.687 -7.385 -0.919 0 0 0 0 0 0 0 +9.682 -7.333 -0.915 0 0 0 0 0 0 0 +9.694 -7.294 -0.914 0 0 0 0 0 0 0 +9.718 -7.289 -0.916 0 0 0 0 0 0 0 +9.755 -7.269 -0.917 0 0 0 0 0 0 0 +9.786 -7.244 -0.918 0 0 0 0 0 0 0 +9.82 -7.221 -0.919 0 0 0 0 0 0 0 +9.843 -7.191 -0.919 0 0 0 0 0 0 0 +9.889 -7.177 -0.922 0 0 0 0 0 0 0 +9.902 -7.139 -0.921 0 0 0 0 0 0 0 +9.928 -7.134 -0.923 0 0 0 0 0 0 0 +9.961 -7.111 -0.924 0 0 0 0 0 0 0 +10 -7.091 -0.926 0 0 0 0 0 0 0 +10.042 -7.073 -0.928 0 0 0 0 0 0 0 +10.069 -7.045 -0.929 0 0 0 0 0 0 0 +10.073 -7.001 -0.927 0 0 0 0 0 0 0 +10.532 -7.272 -0.975 0 0 0 0 0 0 0 +10.543 -7.256 -0.975 0 0 0 0 0 0 0 +10.569 -7.225 -0.976 0 0 0 0 0 0 0 +10.595 -7.194 -0.976 0 0 0 0 0 0 0 +10.606 -7.153 -0.975 0 0 0 0 0 0 0 +10.619 -7.113 -0.974 0 0 0 0 0 0 0 +10.653 -7.087 -0.975 0 0 0 0 0 0 0 +10.675 -7.054 -0.975 0 0 0 0 0 0 0 +10.679 -7.033 -0.974 0 0 0 0 0 0 0 +10.688 -6.99 -0.973 0 0 0 0 0 0 0 +10.73 -6.97 -0.975 0 0 0 0 0 0 0 +10.75 -6.935 -0.975 0 0 0 0 0 0 0 +10.757 -6.891 -0.973 0 0 0 0 0 0 0 +10.785 -6.862 -0.974 0 0 0 0 0 0 0 +10.817 -6.834 -0.975 0 0 0 0 0 0 0 +10.817 -6.811 -0.974 0 0 0 0 0 0 0 +10.842 -6.779 -0.974 0 0 0 0 0 0 0 +10.868 -6.748 -0.975 0 0 0 0 0 0 0 +10.872 -6.703 -0.973 0 0 0 0 0 0 0 +10.907 -6.678 -0.974 0 0 0 0 0 0 0 +10.935 -6.647 -0.975 0 0 0 0 0 0 0 +10.964 -6.618 -0.976 0 0 0 0 0 0 0 +10.963 -6.594 -0.975 0 0 0 0 0 0 0 +11.017 -6.58 -0.979 0 0 0 0 0 0 0 +11.074 -6.567 -0.982 0 0 0 0 0 0 0 +11.108 -6.54 -0.984 0 0 0 0 0 0 0 +11.175 -6.532 -0.989 0 0 0 0 0 0 0 +11.23 -6.517 -0.992 0 0 0 0 0 0 0 +11.283 -6.501 -0.996 0 0 0 0 0 0 0 +11.307 -6.491 -0.997 0 0 0 0 0 0 0 +11.367 -6.478 -1.002 0 0 0 0 0 0 0 +11.429 -6.466 -1.006 0 0 0 0 0 0 0 +11.47 -6.442 -1.008 0 0 0 0 0 0 0 +11.52 -6.422 -1.011 0 0 0 0 0 0 0 +11.58 -6.408 -1.015 0 0 0 0 0 0 0 +11.619 -6.382 -1.018 0 0 0 0 0 0 0 +11.683 -6.394 -1.023 0 0 0 0 0 0 0 +11.724 -6.369 -1.025 0 0 0 0 0 0 0 +11.792 -6.357 -1.03 0 0 0 0 0 0 0 +11.833 -6.332 -1.033 0 0 0 0 0 0 0 +11.886 -6.312 -1.036 0 0 0 0 0 0 0 +11.95 -6.298 -1.041 0 0 0 0 0 0 0 +12.08 -6.319 -1.052 0 0 0 0 0 0 0 +12.182 -6.348 -1.062 0 0 0 0 0 0 0 +8.734 -4.508 -0.703 0 0 0 0 0 0 0 +8.731 -4.472 -0.701 0 0 0 0 0 0 0 +8.775 -4.46 -0.704 0 0 0 0 0 0 0 +12.513 -6.273 -1.086 0 0 0 0 0 0 0 +12.583 -6.259 -1.091 0 0 0 0 0 0 0 +12.621 -6.253 -1.094 0 0 0 0 0 0 0 +12.696 -6.241 -1.099 0 0 0 0 0 0 0 +12.708 -6.198 -1.099 0 0 0 0 0 0 0 +12.776 -6.181 -1.104 0 0 0 0 0 0 0 +12.788 -6.137 -1.103 0 0 0 0 0 0 0 +12.802 -6.095 -1.102 0 0 0 0 0 0 0 +12.811 -6.049 -1.101 0 0 0 0 0 0 0 +12.845 -6.041 -1.104 0 0 0 0 0 0 0 +12.918 -6.026 -1.109 0 0 0 0 0 0 0 +12.964 -5.998 -1.112 0 0 0 0 0 0 0 +13.008 -5.969 -1.115 0 0 0 0 0 0 0 +13.078 -5.951 -1.12 0 0 0 0 0 0 0 +13.145 -5.932 -1.125 0 0 0 0 0 0 0 +13.206 -5.91 -1.129 0 0 0 0 0 0 0 +13.275 -5.916 -1.135 0 0 0 0 0 0 0 +13.326 -5.889 -1.138 0 0 0 0 0 0 0 +13.387 -5.865 -1.142 0 0 0 0 0 0 0 +13.441 -5.839 -1.146 0 0 0 0 0 0 0 +13.522 -5.824 -1.152 0 0 0 0 0 0 0 +13.579 -5.798 -1.156 0 0 0 0 0 0 0 +13.642 -5.775 -1.161 0 0 0 0 0 0 0 +13.721 -5.757 -1.167 0 0 0 0 0 0 0 +13.743 -5.741 -1.168 0 0 0 0 0 0 0 +13.75 -5.693 -1.167 0 0 0 0 0 0 0 +13.84 -5.68 -1.174 0 0 0 0 0 0 0 +13.848 -5.632 -1.173 0 0 0 0 0 0 0 +13.663 -5.457 -1.151 0 0 0 0 0 0 0 +14.041 -5.558 -1.187 0 0 0 0 0 0 0 +14.248 -5.614 -1.207 0 0 0 0 0 0 0 +14.199 -5.543 -1.2 0 0 0 0 0 0 0 +14.001 -5.415 -1.179 0 0 0 0 0 0 0 +13.975 -5.354 -1.175 0 0 0 0 0 0 0 +13.77 -5.226 -1.153 0 0 0 0 0 0 0 +14.172 -5.328 -1.191 0 0 0 0 0 0 0 +14.494 -5.424 -1.221 0 0 0 0 0 0 0 +14.237 -5.276 -1.194 0 0 0 0 0 0 0 +14.333 -5.261 -1.202 0 0 0 0 0 0 0 +14.41 -5.238 -1.208 0 0 0 0 0 0 0 +13.932 -5.013 -1.16 0 0 0 0 0 0 0 +14.345 -5.112 -1.199 0 0 0 0 0 0 0 +14.397 -5.08 -1.202 0 0 0 0 0 0 0 +14.204 -4.961 -1.182 0 0 0 0 0 0 0 +14.095 -4.898 -1.171 0 0 0 0 0 0 0 +14.186 -4.88 -1.178 0 0 0 0 0 0 0 +14.257 -4.855 -1.183 0 0 0 0 0 0 0 +14.333 -4.83 -1.189 0 0 0 0 0 0 0 +14.539 -4.849 -1.208 0 0 0 0 0 0 0 +14.582 -4.813 -1.21 0 0 0 0 0 0 0 +14.804 -4.835 -1.23 0 0 0 0 0 0 0 +15.018 -4.879 -1.25 0 0 0 0 0 0 0 +14.606 -4.694 -1.209 0 0 0 0 0 0 0 +15.372 -4.888 -1.282 0 0 0 0 0 0 0 +15.414 -4.848 -1.284 0 0 0 0 0 0 0 +15.346 -4.774 -1.276 0 0 0 0 0 0 0 +15.157 -4.662 -1.257 0 0 0 0 0 0 0 +14.985 -4.558 -1.239 0 0 0 0 0 0 0 +15.587 -4.715 -1.296 0 0 0 0 0 0 0 +15.309 -4.578 -1.268 0 0 0 0 0 0 0 +15.648 -4.627 -1.299 0 0 0 0 0 0 0 +15.605 -4.561 -1.293 0 0 0 0 0 0 0 +15.562 -4.495 -1.288 0 0 0 0 0 0 0 +15.542 -4.436 -1.285 0 0 0 0 0 0 0 +15.594 -4.398 -1.288 0 0 0 0 0 0 0 +15.628 -4.381 -1.291 0 0 0 0 0 0 0 +15.684 -4.344 -1.295 0 0 0 0 0 0 0 +15.753 -4.31 -1.3 0 0 0 0 0 0 0 +15.797 -4.269 -1.303 0 0 0 0 0 0 0 +15.859 -4.232 -1.308 0 0 0 0 0 0 0 +15.928 -4.197 -1.313 0 0 0 0 0 0 0 +15.968 -4.154 -1.315 0 0 0 0 0 0 0 +16.032 -4.144 -1.321 0 0 0 0 0 0 0 +16.091 -4.105 -1.325 0 0 0 0 0 0 0 +16.154 -4.068 -1.33 0 0 0 0 0 0 0 +16.209 -4.027 -1.334 0 0 0 0 0 0 0 +16.261 -3.986 -1.338 0 0 0 0 0 0 0 +16.318 -3.946 -1.342 0 0 0 0 0 0 0 +16.297 -3.887 -1.339 0 0 0 0 0 0 0 +16.448 -3.896 -1.353 0 0 0 0 0 0 0 +16.528 -3.86 -1.359 0 0 0 0 0 0 0 +16.572 -3.815 -1.362 0 0 0 0 0 0 0 +16.824 -3.818 -1.385 0 0 0 0 0 0 0 +16.601 -3.712 -1.363 0 0 0 0 0 0 0 +7.282 -1.589 -0.484 0 0 0 0 0 0 0 +7.246 -1.546 -0.48 0 0 0 0 0 0 0 +7.259 -1.525 -0.481 0 0 0 0 0 0 0 +7.27 -1.503 -0.481 0 0 0 0 0 0 0 +7.231 -1.471 -0.477 0 0 0 0 0 0 0 +7.224 -1.446 -0.476 0 0 0 0 0 0 0 +7.223 -1.422 -0.476 0 0 0 0 0 0 0 +7.216 -1.397 -0.475 0 0 0 0 0 0 0 +7.232 -1.389 -0.476 0 0 0 0 0 0 0 +7.234 -1.366 -0.476 0 0 0 0 0 0 0 +7.246 -1.344 -0.476 0 0 0 0 0 0 0 +7.242 -1.32 -0.476 0 0 0 0 0 0 0 +7.295 -1.306 -0.48 0 0 0 0 0 0 0 +7.282 -1.28 -0.479 0 0 0 0 0 0 0 +7.311 -1.262 -0.481 0 0 0 0 0 0 0 +7.4 -1.265 -0.489 0 0 0 0 0 0 0 +7.372 -1.237 -0.486 0 0 0 0 0 0 0 +7.374 -1.213 -0.486 0 0 0 0 0 0 0 +7.384 -1.191 -0.487 0 0 0 0 0 0 0 +7.407 -1.171 -0.488 0 0 0 0 0 0 0 +7.434 -1.151 -0.491 0 0 0 0 0 0 0 +7.418 -1.125 -0.489 0 0 0 0 0 0 0 +7.452 -1.118 -0.492 0 0 0 0 0 0 0 +13.632 -1.98 -1.065 0 0 0 0 0 0 0 +13.687 -1.944 -1.07 0 0 0 0 0 0 0 +17.657 -2.459 -1.438 0 0 0 0 0 0 0 +17.679 -2.406 -1.439 0 0 0 0 0 0 0 +17.72 -2.355 -1.442 0 0 0 0 0 0 0 +17.745 -2.33 -1.444 0 0 0 0 0 0 0 +17.742 -2.273 -1.443 0 0 0 0 0 0 0 +17.761 -2.218 -1.444 0 0 0 0 0 0 0 +17.778 -2.164 -1.445 0 0 0 0 0 0 0 +17.795 -2.109 -1.446 0 0 0 0 0 0 0 +17.799 -2.053 -1.446 0 0 0 0 0 0 0 +17.823 -1.999 -1.447 0 0 0 0 0 0 0 +17.856 -1.974 -1.45 0 0 0 0 0 0 0 +17.839 -1.916 -1.448 0 0 0 0 0 0 0 +17.882 -1.864 -1.451 0 0 0 0 0 0 0 +17.882 -1.807 -1.451 0 0 0 0 0 0 0 +17.889 -1.751 -1.451 0 0 0 0 0 0 0 +11.081 -1.039 -0.822 0 0 0 0 0 0 0 +11.067 -1.003 -0.82 0 0 0 0 0 0 0 +17.917 -1.612 -1.452 0 0 0 0 0 0 0 +17.931 -1.556 -1.453 0 0 0 0 0 0 0 +17.942 -1.5 -1.454 0 0 0 0 0 0 0 +17.929 -1.442 -1.452 0 0 0 0 0 0 0 +18.009 -1.392 -1.459 0 0 0 0 0 0 0 +18.015 -1.336 -1.459 0 0 0 0 0 0 0 +18.023 -1.279 -1.46 0 0 0 0 0 0 0 +18.045 -1.252 -1.462 0 0 0 0 0 0 0 +18.075 -1.197 -1.464 0 0 0 0 0 0 0 +18.094 -1.142 -1.465 0 0 0 0 0 0 0 +18.112 -1.086 -1.467 0 0 0 0 0 0 0 +18.151 -1.031 -1.47 0 0 0 0 0 0 0 +18.158 -0.974 -1.47 0 0 0 0 0 0 0 +18.213 -0.92 -1.475 0 0 0 0 0 0 0 +18.226 -0.892 -1.476 0 0 0 0 0 0 0 +18.241 -0.835 -1.477 0 0 0 0 0 0 0 +18.257 -0.778 -1.479 0 0 0 0 0 0 0 +18.263 -0.721 -1.479 0 0 0 0 0 0 0 +18.293 -0.665 -1.481 0 0 0 0 0 0 0 +18.301 -0.607 -1.482 0 0 0 0 0 0 0 +18.325 -0.551 -1.484 0 0 0 0 0 0 0 +18.36 -0.523 -1.487 0 0 0 0 0 0 0 +18.381 -0.466 -1.489 0 0 0 0 0 0 0 +18.403 -0.408 -1.491 0 0 0 0 0 0 0 +18.428 -0.351 -1.493 0 0 0 0 0 0 0 +18.453 -0.294 -1.495 0 0 0 0 0 0 0 +18.475 -0.236 -1.497 0 0 0 0 0 0 0 +18.524 -0.178 -1.502 0 0 0 0 0 0 0 +13.139 -0.098 -1.007 0 0 0 0 0 0 0 +18.572 -0.091 -1.506 0 0 0 0 0 0 0 +18.6 -0.033 -1.509 0 0 0 0 0 0 0 +13.07 0.023 -1.083 0 0 0 0 0 0 0 +13.462 0.088 -1.122 0 0 0 0 0 0 0 +17.273 0.175 -1.496 0 0 0 0 0 0 0 +13.578 0.174 -1.134 0 0 0 0 0 0 0 +17.285 0.283 -1.498 0 0 0 0 0 0 0 +17.211 0.336 -1.491 0 0 0 0 0 0 0 +13.698 0.305 -1.145 0 0 0 0 0 0 0 +17.292 0.446 -1.499 0 0 0 0 0 0 0 +13.833 0.374 -1.159 0 0 0 0 0 0 0 +13.834 0.417 -1.159 0 0 0 0 0 0 0 +13.707 0.456 -1.147 0 0 0 0 0 0 0 +13.746 0.501 -1.151 0 0 0 0 0 0 0 +13.937 0.552 -1.17 0 0 0 0 0 0 0 +13.979 0.598 -1.174 0 0 0 0 0 0 0 +14.034 0.644 -1.18 0 0 0 0 0 0 0 +14.085 0.669 -1.185 0 0 0 0 0 0 0 +14.111 0.715 -1.188 0 0 0 0 0 0 0 +17.411 0.943 -1.512 0 0 0 0 0 0 0 +17.412 0.998 -1.513 0 0 0 0 0 0 0 +14.391 0.866 -1.216 0 0 0 0 0 0 0 +17.493 1.113 -1.521 0 0 0 0 0 0 0 +14.527 0.966 -1.23 0 0 0 0 0 0 0 +15.087 1.028 -1.285 0 0 0 0 0 0 0 +17.518 1.253 -1.525 0 0 0 0 0 0 0 +17.454 1.303 -1.519 0 0 0 0 0 0 0 +14.861 1.153 -1.264 0 0 0 0 0 0 0 +14.849 1.199 -1.263 0 0 0 0 0 0 0 +14.992 1.258 -1.277 0 0 0 0 0 0 0 +15.533 1.353 -1.331 0 0 0 0 0 0 0 +14.853 1.316 -1.264 0 0 0 0 0 0 0 +14.593 1.339 -1.239 0 0 0 0 0 0 0 +17.426 1.66 -1.519 0 0 0 0 0 0 0 +17.46 1.718 -1.523 0 0 0 0 0 0 0 +15.492 1.571 -1.329 0 0 0 0 0 0 0 +17.473 1.83 -1.525 0 0 0 0 0 0 0 +17.502 1.889 -1.529 0 0 0 0 0 0 0 +17.476 1.914 -1.527 0 0 0 0 0 0 0 +17.426 1.964 -1.522 0 0 0 0 0 0 0 +17.38 2.014 -1.518 0 0 0 0 0 0 0 +17.38 2.069 -1.519 0 0 0 0 0 0 0 +17.421 2.13 -1.524 0 0 0 0 0 0 0 +17.412 2.184 -1.523 0 0 0 0 0 0 0 +17.393 2.237 -1.522 0 0 0 0 0 0 0 +16.267 2.117 -1.411 0 0 0 0 0 0 0 +17.284 2.306 -1.512 0 0 0 0 0 0 0 +17.397 2.377 -1.524 0 0 0 0 0 0 0 +17.381 2.43 -1.524 0 0 0 0 0 0 0 +17.419 2.492 -1.528 0 0 0 0 0 0 0 +17.173 2.511 -1.504 0 0 0 0 0 0 0 +17.265 2.58 -1.514 0 0 0 0 0 0 0 +17.263 2.608 -1.515 0 0 0 0 0 0 0 +17.298 2.669 -1.519 0 0 0 0 0 0 0 +17.388 2.739 -1.529 0 0 0 0 0 0 0 +17.428 2.801 -1.534 0 0 0 0 0 0 0 +17.382 2.85 -1.53 0 0 0 0 0 0 0 +17.426 2.913 -1.535 0 0 0 0 0 0 0 +17.311 2.95 -1.525 0 0 0 0 0 0 0 +17.385 2.991 -1.532 0 0 0 0 0 0 0 +17.395 3.049 -1.534 0 0 0 0 0 0 0 +17.409 3.107 -1.537 0 0 0 0 0 0 0 +17.465 3.174 -1.543 0 0 0 0 0 0 0 +17.445 3.227 -1.542 0 0 0 0 0 0 0 +17.478 3.29 -1.547 0 0 0 0 0 0 0 +17.435 3.339 -1.543 0 0 0 0 0 0 0 +17.42 3.364 -1.542 0 0 0 0 0 0 0 +17.544 3.446 -1.556 0 0 0 0 0 0 0 +17.58 3.51 -1.561 0 0 0 0 0 0 0 +17.602 3.572 -1.564 0 0 0 0 0 0 0 +17.612 3.632 -1.566 0 0 0 0 0 0 0 +17.598 3.687 -1.566 0 0 0 0 0 0 0 +17.598 3.745 -1.567 0 0 0 0 0 0 0 +17.637 3.811 -1.572 0 0 0 0 0 0 0 +17.668 3.847 -1.576 0 0 0 0 0 0 0 +17.776 3.929 -1.588 0 0 0 0 0 0 0 +17.797 3.992 -1.591 0 0 0 0 0 0 0 +17.934 4.082 -1.606 0 0 0 0 0 0 0 +17.934 4.142 -1.608 0 0 0 0 0 0 0 +17.981 4.212 -1.614 0 0 0 0 0 0 0 +18.082 4.296 -1.625 0 0 0 0 0 0 0 +18.048 4.318 -1.623 0 0 0 0 0 0 0 +18.098 4.39 -1.629 0 0 0 0 0 0 0 +18.154 4.464 -1.636 0 0 0 0 0 0 0 +18.269 4.554 -1.649 0 0 0 0 0 0 0 +18.236 4.606 -1.647 0 0 0 0 0 0 0 +18.281 4.679 -1.653 0 0 0 0 0 0 0 +18.272 4.738 -1.654 0 0 0 0 0 0 0 +18.241 4.76 -1.652 0 0 0 0 0 0 0 +18.228 4.818 -1.652 0 0 0 0 0 0 0 +18.205 4.873 -1.651 0 0 0 0 0 0 0 +18.184 4.929 -1.65 0 0 0 0 0 0 0 +18.161 4.984 -1.65 0 0 0 0 0 0 0 +18.149 5.042 -1.65 0 0 0 0 0 0 0 +16.514 4.641 -1.485 0 0 0 0 0 0 0 +16.498 4.665 -1.484 0 0 0 0 0 0 0 +16.468 4.712 -1.482 0 0 0 0 0 0 0 +16.512 4.781 -1.488 0 0 0 0 0 0 0 +16.839 4.934 -1.523 0 0 0 0 0 0 0 +18.038 5.349 -1.648 0 0 0 0 0 0 0 +18.019 5.405 -1.648 0 0 0 0 0 0 0 +18.017 5.466 -1.649 0 0 0 0 0 0 0 +18.005 5.493 -1.649 0 0 0 0 0 0 0 +17.995 5.552 -1.65 0 0 0 0 0 0 0 +18.002 5.616 -1.652 0 0 0 0 0 0 0 +17.987 5.673 -1.652 0 0 0 0 0 0 0 +17.948 5.723 -1.65 0 0 0 0 0 0 0 +17.932 5.78 -1.65 0 0 0 0 0 0 0 +17.925 5.84 -1.652 0 0 0 0 0 0 0 +17.902 5.864 -1.65 0 0 0 0 0 0 0 +17.888 5.921 -1.651 0 0 0 0 0 0 0 +17.854 5.972 -1.649 0 0 0 0 0 0 0 +17.841 6.03 -1.65 0 0 0 0 0 0 0 +17.823 6.087 -1.65 0 0 0 0 0 0 0 +17.812 6.146 -1.651 0 0 0 0 0 0 0 +17.781 6.198 -1.649 0 0 0 0 0 0 0 +17.764 6.223 -1.649 0 0 0 0 0 0 0 +17.754 6.282 -1.65 0 0 0 0 0 0 0 +17.719 6.332 -1.648 0 0 0 0 0 0 0 +17.704 6.39 -1.649 0 0 0 0 0 0 0 +17.68 6.444 -1.648 0 0 0 0 0 0 0 +17.658 6.499 -1.648 0 0 0 0 0 0 0 +17.64 6.555 -1.648 0 0 0 0 0 0 0 +17.633 6.584 -1.649 0 0 0 0 0 0 0 +15.9 5.991 -1.469 0 0 0 0 0 0 0 +15.862 6.034 -1.467 0 0 0 0 0 0 0 +15.838 6.082 -1.466 0 0 0 0 0 0 0 +15.809 6.128 -1.465 0 0 0 0 0 0 0 +16.086 6.294 -1.496 0 0 0 0 0 0 0 +17.469 6.901 -1.645 0 0 0 0 0 0 0 +17.443 6.922 -1.643 0 0 0 0 0 0 0 +17.436 6.983 -1.645 0 0 0 0 0 0 0 +17.409 7.036 -1.644 0 0 0 0 0 0 0 +17.405 7.098 -1.646 0 0 0 0 0 0 0 +17.377 7.15 -1.645 0 0 0 0 0 0 0 +17.329 7.194 -1.643 0 0 0 0 0 0 0 +17.31 7.25 -1.643 0 0 0 0 0 0 0 +17.318 7.286 -1.645 0 0 0 0 0 0 0 +17.306 7.345 -1.646 0 0 0 0 0 0 0 +17.285 7.4 -1.647 0 0 0 0 0 0 0 +17.287 7.465 -1.649 0 0 0 0 0 0 0 +17.282 7.527 -1.651 0 0 0 0 0 0 0 +17.282 7.592 -1.654 0 0 0 0 0 0 0 +17.233 7.635 -1.651 0 0 0 0 0 0 0 +17.237 7.669 -1.653 0 0 0 0 0 0 0 +17.195 7.715 -1.651 0 0 0 0 0 0 0 +17.179 7.773 -1.652 0 0 0 0 0 0 0 +17.162 7.831 -1.653 0 0 0 0 0 0 0 +17.132 7.882 -1.652 0 0 0 0 0 0 0 +17.118 7.941 -1.653 0 0 0 0 0 0 0 +17.098 7.997 -1.654 0 0 0 0 0 0 0 +17.089 8.026 -1.654 0 0 0 0 0 0 0 +17.091 8.092 -1.657 0 0 0 0 0 0 0 +17.06 8.143 -1.657 0 0 0 0 0 0 0 +17.034 8.197 -1.657 0 0 0 0 0 0 0 +17.01 8.251 -1.657 0 0 0 0 0 0 0 +17.008 8.316 -1.659 0 0 0 0 0 0 0 +16.969 8.363 -1.658 0 0 0 0 0 0 0 +16.951 8.421 -1.659 0 0 0 0 0 0 0 +16.956 8.456 -1.661 0 0 0 0 0 0 0 +16.929 8.51 -1.661 0 0 0 0 0 0 0 +16.91 8.566 -1.662 0 0 0 0 0 0 0 +16.899 8.628 -1.663 0 0 0 0 0 0 0 +16.866 8.678 -1.663 0 0 0 0 0 0 0 +16.848 8.735 -1.664 0 0 0 0 0 0 0 +16.85 8.77 -1.666 0 0 0 0 0 0 0 +16.829 8.827 -1.666 0 0 0 0 0 0 0 +16.814 8.886 -1.668 0 0 0 0 0 0 0 +16.798 8.945 -1.669 0 0 0 0 0 0 0 +16.789 9.009 -1.671 0 0 0 0 0 0 0 +16.761 9.061 -1.671 0 0 0 0 0 0 0 +16.755 9.126 -1.674 0 0 0 0 0 0 0 +16.742 9.154 -1.674 0 0 0 0 0 0 0 +16.736 9.219 -1.677 0 0 0 0 0 0 0 +16.731 9.285 -1.679 0 0 0 0 0 0 0 +16.712 9.343 -1.68 0 0 0 0 0 0 0 +16.712 9.412 -1.684 0 0 0 0 0 0 0 +16.698 9.473 -1.686 0 0 0 0 0 0 0 +16.675 9.53 -1.686 0 0 0 0 0 0 0 +16.674 9.564 -1.688 0 0 0 0 0 0 0 +16.685 9.64 -1.693 0 0 0 0 0 0 0 +16.674 9.704 -1.695 0 0 0 0 0 0 0 +16.664 9.768 -1.697 0 0 0 0 0 0 0 +16.649 9.83 -1.699 0 0 0 0 0 0 0 +16.616 9.881 -1.699 0 0 0 0 0 0 0 +16.605 9.945 -1.701 0 0 0 0 0 0 0 +16.576 9.998 -1.701 0 0 0 0 0 0 0 +16.58 10.037 -1.704 0 0 0 0 0 0 0 +16.554 10.092 -1.704 0 0 0 0 0 0 0 +16.558 10.166 -1.708 0 0 0 0 0 0 0 +12.66 7.821 -1.261 0 0 0 0 0 0 0 +12.589 7.831 -1.256 0 0 0 0 0 0 0 +12.609 7.899 -1.261 0 0 0 0 0 0 0 +12.551 7.917 -1.257 0 0 0 0 0 0 0 +12.555 7.948 -1.259 0 0 0 0 0 0 0 +12.399 7.904 -1.244 0 0 0 0 0 0 0 +12.443 7.987 -1.252 0 0 0 0 0 0 0 +12.333 7.97 -1.242 0 0 0 0 0 0 0 +12.289 7.997 -1.24 0 0 0 0 0 0 0 +12.193 7.989 -1.232 0 0 0 0 0 0 0 +12.157 7.992 -1.229 0 0 0 0 0 0 0 +12.125 8.026 -1.228 0 0 0 0 0 0 0 +12.05 8.031 -1.222 0 0 0 0 0 0 0 +12.055 8.089 -1.226 0 0 0 0 0 0 0 +11.892 8.034 -1.209 0 0 0 0 0 0 0 +11.979 8.148 -1.223 0 0 0 0 0 0 0 +11.646 7.974 -1.186 0 0 0 0 0 0 0 +11.513 7.909 -1.172 0 0 0 0 0 0 0 +11.427 7.903 -1.164 0 0 0 0 0 0 0 +11.381 7.924 -1.162 0 0 0 0 0 0 0 +11.273 7.902 -1.152 0 0 0 0 0 0 0 +11.278 7.958 -1.155 0 0 0 0 0 0 0 +11.006 7.817 -1.126 0 0 0 0 0 0 0 +11.048 7.899 -1.134 0 0 0 0 0 0 0 +11.27 8.085 -1.162 0 0 0 0 0 0 0 +11.046 7.977 -1.138 0 0 0 0 0 0 0 +10.908 7.93 -1.124 0 0 0 0 0 0 0 +10.79 7.896 -1.113 0 0 0 0 0 0 0 +10.791 7.948 -1.116 0 0 0 0 0 0 0 +10.784 7.995 -1.118 0 0 0 0 0 0 0 +10.738 8.014 -1.116 0 0 0 0 0 0 0 +10.738 8.04 -1.117 0 0 0 0 0 0 0 +10.844 8.173 -1.134 0 0 0 0 0 0 0 +10.83 8.216 -1.135 0 0 0 0 0 0 0 +10.899 8.323 -1.147 0 0 0 0 0 0 0 +11.344 8.72 -1.205 0 0 0 0 0 0 0 +11.008 8.517 -1.167 0 0 0 0 0 0 0 +11.152 8.685 -1.188 0 0 0 0 0 0 0 +11.178 8.733 -1.193 0 0 0 0 0 0 0 +11.188 8.798 -1.198 0 0 0 0 0 0 0 +11.266 8.917 -1.211 0 0 0 0 0 0 0 +11.104 8.845 -1.194 0 0 0 0 0 0 0 +6.871 5.496 -0.664 0 0 0 0 0 0 0 +6.833 5.501 -0.661 0 0 0 0 0 0 0 +6.839 5.542 -0.664 0 0 0 0 0 0 0 +6.702 5.464 -0.649 0 0 0 0 0 0 0 +6.681 5.465 -0.647 0 0 0 0 0 0 0 +6.664 5.486 -0.647 0 0 0 0 0 0 0 +6.642 5.503 -0.647 0 0 0 0 0 0 0 +6.632 5.53 -0.648 0 0 0 0 0 0 0 +6.639 5.572 -0.651 0 0 0 0 0 0 0 +10.887 9.217 -1.201 0 0 0 0 0 0 0 +10.693 9.11 -1.18 0 0 0 0 0 0 0 +10.804 9.234 -1.196 0 0 0 0 0 0 0 +10.907 9.382 -1.213 0 0 0 0 0 0 0 +10.919 9.452 -1.218 0 0 0 0 0 0 0 +10.851 9.453 -1.213 0 0 0 0 0 0 0 +10.807 9.474 -1.211 0 0 0 0 0 0 0 +10.796 9.525 -1.214 0 0 0 0 0 0 0 +10.735 9.501 -1.208 0 0 0 0 0 0 0 +10.787 9.608 -1.219 0 0 0 0 0 0 0 +10.816 9.695 -1.226 0 0 0 0 0 0 0 +10.791 9.734 -1.227 0 0 0 0 0 0 0 +10.765 9.772 -1.228 0 0 0 0 0 0 0 +10.835 9.899 -1.241 0 0 0 0 0 0 0 +10.765 9.896 -1.236 0 0 0 0 0 0 0 +10.789 9.95 -1.241 0 0 0 0 0 0 0 +10.776 10.001 -1.244 0 0 0 0 0 0 0 +10.819 10.104 -1.254 0 0 0 0 0 0 0 +10.981 10.321 -1.28 0 0 0 0 0 0 0 +10.941 10.349 -1.279 0 0 0 0 0 0 0 +11.313 10.77 -1.334 0 0 0 0 0 0 0 +11.285 10.811 -1.335 0 0 0 0 0 0 0 +11.459 11.012 -1.361 0 0 0 0 0 0 0 +11.29 10.918 -1.342 0 0 0 0 0 0 0 +11.117 10.818 -1.323 0 0 0 0 0 0 0 +11.398 11.163 -1.367 0 0 0 0 0 0 0 +11.39 11.225 -1.371 0 0 0 0 0 0 0 +11.344 11.25 -1.369 0 0 0 0 0 0 0 +11.245 11.222 -1.36 0 0 0 0 0 0 0 +11.168 11.215 -1.354 0 0 0 0 0 0 0 +11.196 11.279 -1.361 0 0 0 0 0 0 0 +11.148 11.301 -1.359 0 0 0 0 0 0 0 +11.09 11.314 -1.356 0 0 0 0 0 0 0 +11.066 11.36 -1.357 0 0 0 0 0 0 0 +11.051 11.416 -1.36 0 0 0 0 0 0 0 +11.075 11.514 -1.369 0 0 0 0 0 0 0 +11.08 11.592 -1.375 0 0 0 0 0 0 0 +11.081 11.629 -1.378 0 0 0 0 0 0 0 +11.138 11.763 -1.391 0 0 0 0 0 0 0 +11.143 11.843 -1.397 0 0 0 0 0 0 0 +11.122 11.895 -1.399 0 0 0 0 0 0 0 +11.221 12.077 -1.419 0 0 0 0 0 0 0 +11.04 11.957 -1.398 0 0 0 0 0 0 0 +10.914 11.895 -1.385 0 0 0 0 0 0 0 +10.921 11.94 -1.389 0 0 0 0 0 0 0 +11.006 12.11 -1.407 0 0 0 0 0 0 0 +10.992 12.171 -1.411 0 0 0 0 0 0 0 +11.069 12.335 -1.428 0 0 0 0 0 0 0 +11.02 12.357 -1.426 0 0 0 0 0 0 0 +10.991 12.404 -1.428 0 0 0 0 0 0 0 +10.801 12.266 -1.405 0 0 0 0 0 0 0 +10.945 12.469 -1.429 0 0 0 0 0 0 0 +10.95 12.554 -1.436 0 0 0 0 0 0 0 +10.88 12.554 -1.432 0 0 0 0 0 0 0 +10.891 12.647 -1.439 0 0 0 0 0 0 0 +10.905 12.743 -1.447 0 0 0 0 0 0 0 +10.857 12.769 -1.446 0 0 0 0 0 0 0 +10.84 12.83 -1.45 0 0 0 0 0 0 0 +10.839 12.87 -1.452 0 0 0 0 0 0 0 +10.83 12.942 -1.457 0 0 0 0 0 0 0 +10.839 13.036 -1.465 0 0 0 0 0 0 0 +10.836 13.116 -1.471 0 0 0 0 0 0 0 +10.85 13.218 -1.479 0 0 0 0 0 0 0 +10.856 13.31 -1.487 0 0 0 0 0 0 0 +10.863 13.405 -1.495 0 0 0 0 0 0 0 +10.882 13.471 -1.501 0 0 0 0 0 0 0 +10.894 13.574 -1.509 0 0 0 0 0 0 0 +10.909 13.68 -1.518 0 0 0 0 0 0 0 +10.905 13.764 -1.525 0 0 0 0 0 0 0 +10.918 13.87 -1.534 0 0 0 0 0 0 0 +10.922 13.966 -1.541 0 0 0 0 0 0 0 +10.935 14.072 -1.55 0 0 0 0 0 0 0 +10.966 14.159 -1.559 0 0 0 0 0 0 0 +10.965 14.25 -1.566 0 0 0 0 0 0 0 +10.972 14.352 -1.574 0 0 0 0 0 0 0 +10.983 14.461 -1.583 0 0 0 0 0 0 0 +11.033 14.621 -1.599 0 0 0 0 0 0 0 +10.956 14.615 -1.594 0 0 0 0 0 0 0 +10.95 14.703 -1.6 0 0 0 0 0 0 0 +10.966 14.773 -1.607 0 0 0 0 0 0 0 +10.917 14.804 -1.607 0 0 0 0 0 0 0 +10.922 14.909 -1.615 0 0 0 0 0 0 0 +10.883 14.955 -1.617 0 0 0 0 0 0 0 +10.827 14.976 -1.615 0 0 0 0 0 0 0 +10.745 14.961 -1.609 0 0 0 0 0 0 0 +10.724 15.031 -1.613 0 0 0 0 0 0 0 +10.76 15.132 -1.624 0 0 0 0 0 0 0 +10.725 15.184 -1.626 0 0 0 0 0 0 0 +10.691 15.237 -1.628 0 0 0 0 0 0 0 +10.652 15.283 -1.63 0 0 0 0 0 0 0 +10.599 15.31 -1.629 0 0 0 0 0 0 0 +10.571 15.373 -1.632 0 0 0 0 0 0 0 +10.511 15.388 -1.63 0 0 0 0 0 0 0 +10.509 15.438 -1.634 0 0 0 0 0 0 0 +10.459 15.469 -1.634 0 0 0 0 0 0 0 +10.432 15.533 -1.638 0 0 0 0 0 0 0 +10.395 15.584 -1.64 0 0 0 0 0 0 0 +10.345 15.615 -1.64 0 0 0 0 0 0 0 +10.312 15.672 -1.643 0 0 0 0 0 0 0 +10.258 15.698 -1.642 0 0 0 0 0 0 0 +10.22 15.747 -1.644 0 0 0 0 0 0 0 +10.204 15.776 -1.645 0 0 0 0 0 0 0 +10.156 15.812 -1.646 0 0 0 0 0 0 0 +10.122 15.867 -1.648 0 0 0 0 0 0 0 +10.071 15.897 -1.648 0 0 0 0 0 0 0 +10.013 15.917 -1.647 0 0 0 0 0 0 0 +9.985 15.984 -1.651 0 0 0 0 0 0 0 +9.936 16.017 -1.651 0 0 0 0 0 0 0 +9.931 16.064 -1.655 0 0 0 0 0 0 0 +9.855 16.055 -1.65 0 0 0 0 0 0 0 +9.841 16.145 -1.657 0 0 0 0 0 0 0 +9.811 16.21 -1.661 0 0 0 0 0 0 0 +9.774 16.265 -1.664 0 0 0 0 0 0 0 +9.721 16.292 -1.663 0 0 0 0 0 0 0 +9.727 16.36 -1.669 0 0 0 0 0 0 0 +9.62 16.296 -1.659 0 0 0 0 0 0 0 +9.597 16.375 -1.664 0 0 0 0 0 0 0 +9.59 16.482 -1.673 0 0 0 0 0 0 0 +9.54 16.516 -1.673 0 0 0 0 0 0 0 +9.492 16.552 -1.674 0 0 0 0 0 0 0 +9.454 16.606 -1.677 0 0 0 0 0 0 0 +9.438 16.639 -1.679 0 0 0 0 0 0 0 +9.394 16.684 -1.68 0 0 0 0 0 0 0 +9.344 16.717 -1.681 0 0 0 0 0 0 0 +9.309 16.779 -1.685 0 0 0 0 0 0 0 +9.267 16.827 -1.687 0 0 0 0 0 0 0 +9.213 16.855 -1.687 0 0 0 0 0 0 0 +9.18 16.92 -1.691 0 0 0 0 0 0 0 +9.125 16.946 -1.69 0 0 0 0 0 0 0 +9.107 16.976 -1.692 0 0 0 0 0 0 0 +9.062 17.02 -1.694 0 0 0 0 0 0 0 +9.021 17.073 -1.696 0 0 0 0 0 0 0 +8.972 17.11 -1.697 0 0 0 0 0 0 0 +8.938 17.175 -1.702 0 0 0 0 0 0 0 +8.889 17.214 -1.703 0 0 0 0 0 0 0 +8.827 17.226 -1.701 0 0 0 0 0 0 0 +8.806 17.252 -1.702 0 0 0 0 0 0 0 +8.736 17.248 -1.699 0 0 0 0 0 0 0 +8.697 17.305 -1.702 0 0 0 0 0 0 0 +8.646 17.34 -1.703 0 0 0 0 0 0 0 +8.592 17.369 -1.703 0 0 0 0 0 0 0 +8.546 17.413 -1.705 0 0 0 0 0 0 0 +8.496 17.449 -1.706 0 0 0 0 0 0 0 +8.444 17.481 -1.707 0 0 0 0 0 0 0 +8.421 17.503 -1.708 0 0 0 0 0 0 0 +8.374 17.548 -1.71 0 0 0 0 0 0 0 +8.329 17.595 -1.712 0 0 0 0 0 0 0 +8.281 17.638 -1.714 0 0 0 0 0 0 0 +8.234 17.682 -1.716 0 0 0 0 0 0 0 +8.183 17.716 -1.717 0 0 0 0 0 0 0 +8.158 17.737 -1.717 0 0 0 0 0 0 0 +8.108 17.775 -1.719 0 0 0 0 0 0 0 +8.065 17.827 -1.722 0 0 0 0 0 0 0 +8.007 17.849 -1.721 0 0 0 0 0 0 0 +7.957 17.887 -1.723 0 0 0 0 0 0 0 +7.902 17.915 -1.723 0 0 0 0 0 0 0 +7.859 17.971 -1.726 0 0 0 0 0 0 0 +7.806 18.003 -1.727 0 0 0 0 0 0 0 +7.792 18.048 -1.731 0 0 0 0 0 0 0 +7.651 17.875 -1.71 0 0 0 0 0 0 0 +7.514 17.708 -1.689 0 0 0 0 0 0 0 +7.459 17.733 -1.689 0 0 0 0 0 0 0 +7.563 18.141 -1.73 0 0 0 0 0 0 0 +7.532 18.229 -1.737 0 0 0 0 0 0 0 +7.485 18.278 -1.74 0 0 0 0 0 0 0 +7.476 18.338 -1.745 0 0 0 0 0 0 0 +7.466 18.48 -1.757 0 0 0 0 0 0 0 +7.479 18.681 -1.776 0 0 0 0 0 0 0 +7.497 18.898 -1.797 0 0 0 0 0 0 0 +7.521 19.135 -1.819 0 0 0 0 0 0 0 +7.537 19.355 -1.84 0 0 0 0 0 0 0 +7.561 19.6 -1.863 0 0 0 0 0 0 0 +7.617 19.837 -1.887 0 0 0 0 0 0 0 +7.591 19.957 -1.897 0 0 0 0 0 0 0 +7.53 19.987 -1.898 0 0 0 0 0 0 0 +7.477 20.036 -1.9 0 0 0 0 0 0 0 +7.415 20.062 -1.901 0 0 0 0 0 0 0 +7.357 20.098 -1.902 0 0 0 0 0 0 0 +7.289 20.108 -1.901 0 0 0 0 0 0 0 +7.264 20.14 -1.903 0 0 0 0 0 0 0 +7.21 20.187 -1.905 0 0 0 0 0 0 0 +7.152 20.224 -1.907 0 0 0 0 0 0 0 +7.085 20.237 -1.906 0 0 0 0 0 0 0 +7.011 20.231 -1.903 0 0 0 0 0 0 0 +6.927 20.193 -1.897 0 0 0 0 0 0 0 +6.822 20.09 -1.884 0 0 0 0 0 0 0 +6.777 20.063 -1.88 0 0 0 0 0 0 0 +6.705 20.056 -1.877 0 0 0 0 0 0 0 +6.639 20.068 -1.876 0 0 0 0 0 0 0 +6.567 20.062 -1.873 0 0 0 0 0 0 0 +6.497 20.061 -1.871 0 0 0 0 0 0 0 +6.423 20.048 -1.868 0 0 0 0 0 0 0 +6.352 20.041 -1.865 0 0 0 0 0 0 0 +6.283 20.042 -1.863 0 0 0 0 0 0 0 +6.252 20.052 -1.863 0 0 0 0 0 0 0 +6.177 20.035 -1.859 0 0 0 0 0 0 0 +6.113 20.051 -1.859 0 0 0 0 0 0 0 +6.046 20.057 -1.857 0 0 0 0 0 0 0 +5.979 20.062 -1.856 0 0 0 0 0 0 0 +5.918 20.088 -1.857 0 0 0 0 0 0 0 +5.843 20.063 -1.852 0 0 0 0 0 0 0 +5.804 20.049 -1.85 0 0 0 0 0 0 0 +5.739 20.058 -1.849 0 0 0 0 0 0 0 +5.676 20.076 -1.849 0 0 0 0 0 0 0 +5.612 20.091 -1.849 0 0 0 0 0 0 0 +5.551 20.117 -1.85 0 0 0 0 0 0 0 +5.49 20.142 -1.85 0 0 0 0 0 0 0 +5.425 20.153 -1.85 0 0 0 0 0 0 0 +5.391 20.152 -1.849 0 0 0 0 0 0 0 +5.321 20.144 -1.846 0 0 0 0 0 0 0 +5.255 20.149 -1.845 0 0 0 0 0 0 0 +5.187 20.15 -1.844 0 0 0 0 0 0 0 +5.12 20.151 -1.842 0 0 0 0 0 0 0 +5.052 20.147 -1.84 0 0 0 0 0 0 0 +2.012 8.068 -0.616 0 0 0 0 0 0 0 +2.004 8.09 -0.618 0 0 0 0 0 0 0 +1.981 8.106 -0.619 0 0 0 0 0 0 0 +2.154 8.949 -0.704 0 0 0 0 0 0 0 +2.411 10.314 -0.84 0 0 0 0 0 0 0 +2.498 11.007 -0.908 0 0 0 0 0 0 0 +2.599 11.714 -0.978 0 0 0 0 0 0 0 +2.648 12.309 -1.036 0 0 0 0 0 0 0 +2.758 13.024 -1.107 0 0 0 0 0 0 0 +2.744 13.163 -1.12 0 0 0 0 0 0 0 +2.631 12.817 -1.085 0 0 0 0 0 0 0 +2.585 12.8 -1.082 0 0 0 0 0 0 0 +2.555 12.751 -1.077 0 0 0 0 0 0 0 +3.055 15.531 -1.355 0 0 0 0 0 0 0 +3.125 16.16 -1.416 0 0 0 0 0 0 0 +3.184 16.753 -1.475 0 0 0 0 0 0 0 +3.363 18.013 -1.6 0 0 0 0 0 0 0 +3.343 18.222 -1.619 0 0 0 0 0 0 0 +3.308 18.355 -1.632 0 0 0 0 0 0 0 +3.276 18.345 -1.63 0 0 0 0 0 0 0 +3.225 18.396 -1.634 0 0 0 0 0 0 0 +3.17 18.42 -1.636 0 0 0 0 0 0 0 +3.113 18.438 -1.636 0 0 0 0 0 0 0 +0.582 3.451 -0.143 0 0 0 0 0 0 0 +3.06 18.477 -1.639 0 0 0 0 0 0 0 +0.575 3.477 -0.146 0 0 0 0 0 0 0 +0.571 3.491 -0.147 0 0 0 0 0 0 0 +0.559 3.481 -0.146 0 0 0 0 0 0 0 +0.55 3.499 -0.147 0 0 0 0 0 0 0 +0.539 3.501 -0.147 0 0 0 0 0 0 0 +0.528 3.498 -0.147 0 0 0 0 0 0 0 +0.516 3.498 -0.147 0 0 0 0 0 0 0 +0.505 3.5 -0.147 0 0 0 0 0 0 0 +0.5 3.5 -0.147 0 0 0 0 0 0 0 +0.489 3.502 -0.147 0 0 0 0 0 0 0 +0.476 3.486 -0.145 0 0 0 0 0 0 0 +2.358 18.546 -1.636 0 0 0 0 0 0 0 +2.3 18.559 -1.637 0 0 0 0 0 0 0 +2.246 18.606 -1.641 0 0 0 0 0 0 0 +2.191 18.636 -1.643 0 0 0 0 0 0 0 +2.135 18.665 -1.645 0 0 0 0 0 0 0 +2.107 18.686 -1.647 0 0 0 0 0 0 0 +2.049 18.7 -1.648 0 0 0 0 0 0 0 +1.99 18.701 -1.647 0 0 0 0 0 0 0 +1.934 18.731 -1.649 0 0 0 0 0 0 0 +1.874 18.733 -1.649 0 0 0 0 0 0 0 +1.816 18.744 -1.65 0 0 0 0 0 0 0 +1.76 18.786 -1.653 0 0 0 0 0 0 0 +1.736 18.848 -1.659 0 0 0 0 0 0 0 +1.679 18.879 -1.661 0 0 0 0 0 0 0 +1.615 18.829 -1.656 0 0 0 0 0 0 0 +1.606 19.445 -1.716 0 0 0 0 0 0 0 +1.578 19.876 -1.758 0 0 0 0 0 0 0 +1.52 19.935 -1.764 0 0 0 0 0 0 0 +1.462 20.007 -1.77 0 0 0 0 0 0 0 +1.433 20.045 -1.774 0 0 0 0 0 0 0 +1.373 20.099 -1.779 0 0 0 0 0 0 0 +1.311 20.121 -1.78 0 0 0 0 0 0 0 +1.252 20.183 -1.786 0 0 0 0 0 0 0 +1.2 20.387 -1.806 0 0 0 0 0 0 0 +1.152 20.697 -1.836 0 0 0 0 0 0 0 +1.078 20.512 -1.817 0 0 0 0 0 0 0 +1.039 20.378 -1.804 0 0 0 0 0 0 0 +0.973 20.342 -1.8 0 0 0 0 0 0 0 +0.909 20.353 -1.801 0 0 0 0 0 0 0 +0.845 20.357 -1.801 0 0 0 0 0 0 0 +0.782 20.384 -1.803 0 0 0 0 0 0 0 +0.718 20.366 -1.801 0 0 0 0 0 0 0 +0.654 20.374 -1.802 0 0 0 0 0 0 0 +0.59 20.396 -1.804 0 0 0 0 0 0 0 +0.558 20.395 -1.804 0 0 0 0 0 0 0 +0.494 20.383 -1.802 0 0 0 0 0 0 0 +0.43 20.41 -1.805 0 0 0 0 0 0 0 +0.366 20.395 -1.803 0 0 0 0 0 0 0 +0.302 20.416 -1.805 0 0 0 0 0 0 0 +0.238 20.419 -1.806 0 0 0 0 0 0 0 +0.174 20.424 -1.806 0 0 0 0 0 0 0 +0.142 20.43 -1.807 0 0 0 0 0 0 0 +0.078 20.43 -1.807 0 0 0 0 0 0 0 +0.013 20.409 -1.804 0 0 0 0 0 0 0 +-0.051 20.403 -1.804 0 0 0 0 0 0 0 +-0.115 20.422 -1.806 0 0 0 0 0 0 0 +-0.179 20.398 -1.803 0 0 0 0 0 0 0 +-0.243 20.395 -1.803 0 0 0 0 0 0 0 +-0.278 20.634 -1.827 0 0 0 0 0 0 0 +-0.341 20.523 -1.816 0 0 0 0 0 0 0 +-0.405 20.468 -1.811 0 0 0 0 0 0 0 +-0.468 20.423 -1.806 0 0 0 0 0 0 0 +-0.532 20.414 -1.806 0 0 0 0 0 0 0 +-0.596 20.414 -1.806 0 0 0 0 0 0 0 +-0.661 20.438 -1.808 0 0 0 0 0 0 0 +-0.693 20.427 -1.807 0 0 0 0 0 0 0 +-0.757 20.436 -1.809 0 0 0 0 0 0 0 +-0.822 20.434 -1.809 0 0 0 0 0 0 0 +-0.886 20.439 -1.809 0 0 0 0 0 0 0 +-0.951 20.448 -1.81 0 0 0 0 0 0 0 +-1.015 20.445 -1.81 0 0 0 0 0 0 0 +-1.079 20.438 -1.81 0 0 0 0 0 0 0 +-1.112 20.45 -1.811 0 0 0 0 0 0 0 +-1.176 20.45 -1.812 0 0 0 0 0 0 0 +-1.241 20.451 -1.812 0 0 0 0 0 0 0 +-1.307 20.47 -1.815 0 0 0 0 0 0 0 +-1.371 20.46 -1.814 0 0 0 0 0 0 0 +-1.435 20.454 -1.814 0 0 0 0 0 0 0 +-1.5 20.467 -1.816 0 0 0 0 0 0 0 +-1.565 20.466 -1.816 0 0 0 0 0 0 0 +-1.599 20.49 -1.819 0 0 0 0 0 0 0 +-1.664 20.49 -1.819 0 0 0 0 0 0 0 +-1.729 20.487 -1.819 0 0 0 0 0 0 0 +-1.798 20.543 -1.825 0 0 0 0 0 0 0 +-1.866 20.571 -1.829 0 0 0 0 0 0 0 +-1.7 17.56 -1.533 0 0 0 0 0 0 0 +-1.704 17.314 -1.509 0 0 0 0 0 0 0 +-1.737 17.108 -1.489 0 0 0 0 0 0 0 +-1.766 16.871 -1.466 0 0 0 0 0 0 0 +-1.796 16.648 -1.444 0 0 0 0 0 0 0 +-1.827 16.46 -1.426 0 0 0 0 0 0 0 +-1.854 16.239 -1.405 0 0 0 0 0 0 0 +-1.881 16.029 -1.385 0 0 0 0 0 0 0 +-1.884 15.842 -1.367 0 0 0 0 0 0 0 +-1.911 15.649 -1.348 0 0 0 0 0 0 0 +-1.936 15.459 -1.33 0 0 0 0 0 0 0 +-1.962 15.279 -1.313 0 0 0 0 0 0 0 +-1.984 15.078 -1.293 0 0 0 0 0 0 0 +-2.012 14.929 -1.279 0 0 0 0 0 0 0 +-2.037 14.761 -1.263 0 0 0 0 0 0 0 +-2.058 14.583 -1.246 0 0 0 0 0 0 0 +-2.058 14.417 -1.23 0 0 0 0 0 0 0 +-2.079 14.249 -1.214 0 0 0 0 0 0 0 +-2.101 14.089 -1.199 0 0 0 0 0 0 0 +-2.125 13.95 -1.186 0 0 0 0 0 0 0 +-2.145 13.796 -1.171 0 0 0 0 0 0 0 +-2.164 13.636 -1.156 0 0 0 0 0 0 0 +-2.184 13.491 -1.142 0 0 0 0 0 0 0 +-2.183 13.352 -1.129 0 0 0 0 0 0 0 +-2.204 13.222 -1.116 0 0 0 0 0 0 0 +-2.222 13.078 -1.103 0 0 0 0 0 0 0 +-2.227 12.867 -1.082 0 0 0 0 0 0 0 +-2.264 12.836 -1.08 0 0 0 0 0 0 0 +-2.281 12.704 -1.067 0 0 0 0 0 0 0 +-2.297 12.567 -1.055 0 0 0 0 0 0 0 +-2.296 12.452 -1.043 0 0 0 0 0 0 0 +-2.312 12.324 -1.031 0 0 0 0 0 0 0 +-2.329 12.203 -1.02 0 0 0 0 0 0 0 +-2.348 12.098 -1.01 0 0 0 0 0 0 0 +-2.363 11.975 -0.999 0 0 0 0 0 0 0 +-2.381 11.868 -0.989 0 0 0 0 0 0 0 +-2.393 11.74 -0.977 0 0 0 0 0 0 0 +-2.394 11.654 -0.968 0 0 0 0 0 0 0 +-2.407 11.534 -0.957 0 0 0 0 0 0 0 +-2.424 11.437 -0.948 0 0 0 0 0 0 0 +-2.438 11.326 -0.938 0 0 0 0 0 0 0 +-2.454 11.231 -0.929 0 0 0 0 0 0 0 +-2.465 11.116 -0.918 0 0 0 0 0 0 0 +-2.478 11.011 -0.908 0 0 0 0 0 0 0 +-2.473 10.91 -0.899 0 0 0 0 0 0 0 +-2.489 10.823 -0.891 0 0 0 0 0 0 0 +-2.51 10.761 -0.885 0 0 0 0 0 0 0 +-2.534 10.712 -0.881 0 0 0 0 0 0 0 +-2.529 10.544 -0.865 0 0 0 0 0 0 0 +-2.544 10.464 -0.857 0 0 0 0 0 0 0 +-2.558 10.377 -0.849 0 0 0 0 0 0 0 +-2.555 10.296 -0.842 0 0 0 0 0 0 0 +-2.571 10.224 -0.835 0 0 0 0 0 0 0 +-2.579 10.125 -0.826 0 0 0 0 0 0 0 +-2.6 10.075 -0.822 0 0 0 0 0 0 0 +-2.601 9.949 -0.81 0 0 0 0 0 0 0 +-2.625 9.79 -0.795 0 0 0 0 0 0 0 +-2.632 9.636 -0.781 0 0 0 0 0 0 0 +-2.659 9.5 -0.769 0 0 0 0 0 0 0 +-2.686 9.371 -0.757 0 0 0 0 0 0 0 +-2.698 9.305 -0.751 0 0 0 0 0 0 0 +-2.721 9.275 -0.749 0 0 0 0 0 0 0 +-2.708 9.178 -0.74 0 0 0 0 0 0 0 +-2.748 9.103 -0.734 0 0 0 0 0 0 0 +-2.763 9.049 -0.729 0 0 0 0 0 0 0 +-2.779 9 -0.725 0 0 0 0 0 0 0 +-2.794 8.95 -0.721 0 0 0 0 0 0 0 +-2.806 8.89 -0.715 0 0 0 0 0 0 0 +-2.811 8.859 -0.713 0 0 0 0 0 0 0 +-2.823 8.801 -0.707 0 0 0 0 0 0 0 +-2.838 8.752 -0.703 0 0 0 0 0 0 0 +-2.849 8.696 -0.698 0 0 0 0 0 0 0 +-2.865 8.651 -0.695 0 0 0 0 0 0 0 +-2.875 8.593 -0.69 0 0 0 0 0 0 0 +-2.891 8.552 -0.686 0 0 0 0 0 0 0 +-2.89 8.504 -0.682 0 0 0 0 0 0 0 +-2.913 8.485 -0.681 0 0 0 0 0 0 0 +-2.916 8.407 -0.674 0 0 0 0 0 0 0 +-2.921 8.338 -0.667 0 0 0 0 0 0 0 +-2.939 8.306 -0.665 0 0 0 0 0 0 0 +-2.958 8.276 -0.663 0 0 0 0 0 0 0 +-2.969 8.227 -0.659 0 0 0 0 0 0 0 +-2.986 8.194 -0.656 0 0 0 0 0 0 0 +-2.984 8.148 -0.652 0 0 0 0 0 0 0 +-3.003 8.12 -0.65 0 0 0 0 0 0 0 +-3.015 8.075 -0.646 0 0 0 0 0 0 0 +-3.037 8.058 -0.645 0 0 0 0 0 0 0 +-3.048 8.009 -0.641 0 0 0 0 0 0 0 +-3.064 7.978 -0.639 0 0 0 0 0 0 0 +-3.08 7.946 -0.637 0 0 0 0 0 0 0 +-3.083 7.917 -0.634 0 0 0 0 0 0 0 +-3.096 7.876 -0.631 0 0 0 0 0 0 0 +-3.116 7.855 -0.63 0 0 0 0 0 0 0 +-3.123 7.801 -0.625 0 0 0 0 0 0 0 +-3.102 7.68 -0.613 0 0 0 0 0 0 0 +-3.156 7.742 -0.621 0 0 0 0 0 0 0 +-3.188 7.649 -0.614 0 0 0 0 0 0 0 +-3.216 7.648 -0.615 0 0 0 0 0 0 0 +-3.231 7.616 -0.612 0 0 0 0 0 0 0 +-3.254 7.606 -0.612 0 0 0 0 0 0 0 +-3.264 7.563 -0.609 0 0 0 0 0 0 0 +-3.287 7.551 -0.609 0 0 0 0 0 0 0 +-3.3 7.549 -0.609 0 0 0 0 0 0 0 +-3.329 7.55 -0.61 0 0 0 0 0 0 0 +-3.318 7.339 -0.591 0 0 0 0 0 0 0 +-3.433 7.527 -0.612 0 0 0 0 0 0 0 +-3.364 7.318 -0.591 0 0 0 0 0 0 0 +-3.446 7.403 -0.602 0 0 0 0 0 0 0 +-3.48 7.413 -0.604 0 0 0 0 0 0 0 +-3.499 7.395 -0.603 0 0 0 0 0 0 0 +-3.531 7.402 -0.605 0 0 0 0 0 0 0 +-3.561 7.405 -0.607 0 0 0 0 0 0 0 +-3.591 7.407 -0.608 0 0 0 0 0 0 0 +-3.617 7.401 -0.609 0 0 0 0 0 0 0 +-3.628 7.395 -0.609 0 0 0 0 0 0 0 +-3.66 7.401 -0.611 0 0 0 0 0 0 0 +-3.687 7.397 -0.611 0 0 0 0 0 0 0 +-3.717 7.398 -0.613 0 0 0 0 0 0 0 +-3.743 7.391 -0.613 0 0 0 0 0 0 0 +-3.77 7.387 -0.614 0 0 0 0 0 0 0 +-3.803 7.394 -0.616 0 0 0 0 0 0 0 +-3.819 7.397 -0.617 0 0 0 0 0 0 0 +-3.851 7.403 -0.619 0 0 0 0 0 0 0 +-3.883 7.406 -0.621 0 0 0 0 0 0 0 +-3.913 7.407 -0.622 0 0 0 0 0 0 0 +-3.931 7.385 -0.621 0 0 0 0 0 0 0 +-3.897 7.266 -0.61 0 0 0 0 0 0 0 +-3.984 7.373 -0.623 0 0 0 0 0 0 0 +-4.071 7.448 -0.633 0 0 0 0 0 0 0 +-4.085 7.418 -0.631 0 0 0 0 0 0 0 +-4.122 7.431 -0.634 0 0 0 0 0 0 0 +-4.161 7.446 -0.637 0 0 0 0 0 0 0 +-4.167 7.402 -0.634 0 0 0 0 0 0 0 +-4.209 7.421 -0.638 0 0 0 0 0 0 0 +-4.236 7.415 -0.638 0 0 0 0 0 0 0 +-4.265 7.438 -0.642 0 0 0 0 0 0 0 +-4.284 7.417 -0.641 0 0 0 0 0 0 0 +-4.325 7.433 -0.644 0 0 0 0 0 0 0 +-4.344 7.412 -0.644 0 0 0 0 0 0 0 +-4.392 7.44 -0.648 0 0 0 0 0 0 0 +-4.42 7.435 -0.649 0 0 0 0 0 0 0 +-4.463 7.453 -0.653 0 0 0 0 0 0 0 +-4.474 7.444 -0.653 0 0 0 0 0 0 0 +-4.518 7.464 -0.657 0 0 0 0 0 0 0 +-4.554 7.47 -0.659 0 0 0 0 0 0 0 +-4.585 7.47 -0.661 0 0 0 0 0 0 0 +-4.624 7.479 -0.663 0 0 0 0 0 0 0 +-4.659 7.483 -0.665 0 0 0 0 0 0 0 +-4.695 7.488 -0.668 0 0 0 0 0 0 0 +-4.716 7.496 -0.67 0 0 0 0 0 0 0 +-4.747 7.493 -0.671 0 0 0 0 0 0 0 +-4.786 7.501 -0.674 0 0 0 0 0 0 0 +-4.83 7.518 -0.677 0 0 0 0 0 0 0 +-4.865 7.521 -0.68 0 0 0 0 0 0 0 +-4.893 7.513 -0.68 0 0 0 0 0 0 0 +-4.935 7.524 -0.683 0 0 0 0 0 0 0 +-4.96 7.536 -0.686 0 0 0 0 0 0 0 +-5.002 7.548 -0.689 0 0 0 0 0 0 0 +-5.056 7.577 -0.694 0 0 0 0 0 0 0 +-5.101 7.542 -0.694 0 0 0 0 0 0 0 +-7.259 10.641 -1.065 0 0 0 0 0 0 0 +-7.28 10.6 -1.063 0 0 0 0 0 0 0 +-7.286 10.538 -1.058 0 0 0 0 0 0 0 +-7.275 10.487 -1.053 0 0 0 0 0 0 0 +-7.288 10.437 -1.05 0 0 0 0 0 0 0 +-7.292 10.373 -1.045 0 0 0 0 0 0 0 +-7.305 10.323 -1.042 0 0 0 0 0 0 0 +-7.317 10.27 -1.038 0 0 0 0 0 0 0 +-7.318 10.204 -1.033 0 0 0 0 0 0 0 +-7.318 10.137 -1.028 0 0 0 0 0 0 0 +-7.309 10.092 -1.024 0 0 0 0 0 0 0 +-7.332 10.056 -1.022 0 0 0 0 0 0 0 +-7.337 9.998 -1.018 0 0 0 0 0 0 0 +-7.347 9.946 -1.014 0 0 0 0 0 0 0 +-7.359 9.897 -1.011 0 0 0 0 0 0 0 +-7.365 9.841 -1.007 0 0 0 0 0 0 0 +-7.373 9.787 -1.003 0 0 0 0 0 0 0 +-7.376 9.728 -0.999 0 0 0 0 0 0 0 +-7.38 9.7 -0.997 0 0 0 0 0 0 0 +-7.371 9.626 -0.991 0 0 0 0 0 0 0 +-7.388 9.586 -0.988 0 0 0 0 0 0 0 +-7.385 9.52 -0.983 0 0 0 0 0 0 0 +-7.401 9.48 -0.981 0 0 0 0 0 0 0 +-7.394 9.41 -0.975 0 0 0 0 0 0 0 +-7.42 9.382 -0.975 0 0 0 0 0 0 0 +-7.425 9.358 -0.973 0 0 0 0 0 0 0 +-7.426 9.298 -0.969 0 0 0 0 0 0 0 +-7.426 9.24 -0.964 0 0 0 0 0 0 0 +-7.445 9.204 -0.962 0 0 0 0 0 0 0 +-7.45 9.151 -0.959 0 0 0 0 0 0 0 +-7.461 9.106 -0.956 0 0 0 0 0 0 0 +-7.468 9.057 -0.953 0 0 0 0 0 0 0 +-7.452 9.008 -0.948 0 0 0 0 0 0 0 +-7.47 8.972 -0.946 0 0 0 0 0 0 0 +-7.478 8.926 -0.943 0 0 0 0 0 0 0 +-7.482 8.874 -0.94 0 0 0 0 0 0 0 +-7.484 8.82 -0.936 0 0 0 0 0 0 0 +-7.47 8.748 -0.93 0 0 0 0 0 0 0 +-7.487 8.712 -0.928 0 0 0 0 0 0 0 +-7.478 8.673 -0.925 0 0 0 0 0 0 0 +-7.488 8.63 -0.922 0 0 0 0 0 0 0 +-7.496 8.586 -0.919 0 0 0 0 0 0 0 +-7.5 8.535 -0.916 0 0 0 0 0 0 0 +-7.501 8.484 -0.912 0 0 0 0 0 0 0 +-7.509 8.439 -0.909 0 0 0 0 0 0 0 +-7.511 8.387 -0.906 0 0 0 0 0 0 0 +-7.524 8.349 -0.904 0 0 0 0 0 0 0 +-7.509 8.306 -0.899 0 0 0 0 0 0 0 +-7.513 8.259 -0.896 0 0 0 0 0 0 0 +-7.516 8.211 -0.893 0 0 0 0 0 0 0 +-7.526 8.169 -0.891 0 0 0 0 0 0 0 +-7.538 8.131 -0.889 0 0 0 0 0 0 0 +-7.535 8.077 -0.885 0 0 0 0 0 0 0 +-7.55 8.043 -0.883 0 0 0 0 0 0 0 +-7.563 8.031 -0.883 0 0 0 0 0 0 0 +-14.301 15.058 -1.84 0 0 0 0 0 0 0 +-14.358 15.023 -1.841 0 0 0 0 0 0 0 +-14.416 14.989 -1.843 0 0 0 0 0 0 0 +-14.473 14.954 -1.844 0 0 0 0 0 0 0 +-14.506 14.894 -1.842 0 0 0 0 0 0 0 +-14.551 14.847 -1.842 0 0 0 0 0 0 0 +-14.58 14.83 -1.843 0 0 0 0 0 0 0 +-14.621 14.778 -1.842 0 0 0 0 0 0 0 +-14.67 14.735 -1.842 0 0 0 0 0 0 0 +-14.701 14.674 -1.84 0 0 0 0 0 0 0 +-14.734 14.615 -1.838 0 0 0 0 0 0 0 +-14.78 14.568 -1.838 0 0 0 0 0 0 0 +-14.846 14.541 -1.841 0 0 0 0 0 0 0 +-14.87 14.519 -1.841 0 0 0 0 0 0 0 +-14.861 14.42 -1.834 0 0 0 0 0 0 0 +-14.928 14.394 -1.837 0 0 0 0 0 0 0 +-14.931 14.307 -1.831 0 0 0 0 0 0 0 +-14.957 14.242 -1.828 0 0 0 0 0 0 0 +-14.954 14.15 -1.822 0 0 0 0 0 0 0 +-14.983 14.088 -1.82 0 0 0 0 0 0 0 +-14.984 14.045 -1.817 0 0 0 0 0 0 0 +-14.995 13.967 -1.813 0 0 0 0 0 0 0 +-15.011 13.894 -1.809 0 0 0 0 0 0 0 +-15.019 13.815 -1.804 0 0 0 0 0 0 0 +-15.036 13.743 -1.801 0 0 0 0 0 0 0 +-15.057 13.676 -1.798 0 0 0 0 0 0 0 +-15.068 13.599 -1.793 0 0 0 0 0 0 0 +-15.073 13.519 -1.789 0 0 0 0 0 0 0 +-15.068 13.471 -1.785 0 0 0 0 0 0 0 +-15.076 13.394 -1.781 0 0 0 0 0 0 0 +-15.091 13.322 -1.777 0 0 0 0 0 0 0 +-15.107 13.253 -1.774 0 0 0 0 0 0 0 +-15.113 13.174 -1.769 0 0 0 0 0 0 0 +-15.122 13.099 -1.765 0 0 0 0 0 0 0 +-15.139 13.031 -1.762 0 0 0 0 0 0 0 +-15.131 12.982 -1.758 0 0 0 0 0 0 0 +-15.15 12.917 -1.755 0 0 0 0 0 0 0 +-15.15 12.834 -1.75 0 0 0 0 0 0 0 +-15.169 12.769 -1.747 0 0 0 0 0 0 0 +-15.183 12.699 -1.744 0 0 0 0 0 0 0 +-15.175 12.612 -1.738 0 0 0 0 0 0 0 +-15.193 12.547 -1.735 0 0 0 0 0 0 0 +-15.182 12.498 -1.731 0 0 0 0 0 0 0 +-15.2 12.432 -1.729 0 0 0 0 0 0 0 +-15.218 12.368 -1.726 0 0 0 0 0 0 0 +-15.229 12.298 -1.722 0 0 0 0 0 0 0 +-15.268 12.25 -1.722 0 0 0 0 0 0 0 +-15.295 12.193 -1.721 0 0 0 0 0 0 0 +-15.334 12.145 -1.721 0 0 0 0 0 0 0 +-15.351 12.12 -1.721 0 0 0 0 0 0 0 +-15.402 12.081 -1.722 0 0 0 0 0 0 0 +-15.44 12.033 -1.722 0 0 0 0 0 0 0 +-15.476 11.983 -1.722 0 0 0 0 0 0 0 +-15.512 11.933 -1.722 0 0 0 0 0 0 0 +-15.514 11.858 -1.718 0 0 0 0 0 0 0 +-15.575 11.827 -1.721 0 0 0 0 0 0 0 +-15.575 11.788 -1.718 0 0 0 0 0 0 0 +-15.583 11.718 -1.715 0 0 0 0 0 0 0 +-15.562 11.626 -1.708 0 0 0 0 0 0 0 +-15.623 11.595 -1.711 0 0 0 0 0 0 0 +-15.624 11.52 -1.706 0 0 0 0 0 0 0 +-15.592 11.421 -1.698 0 0 0 0 0 0 0 +-15.591 11.345 -1.694 0 0 0 0 0 0 0 +-15.562 11.25 -1.686 0 0 0 0 0 0 0 +-15.541 11.197 -1.681 0 0 0 0 0 0 0 +-15.609 11.171 -1.685 0 0 0 0 0 0 0 +-15.544 11.052 -1.673 0 0 0 0 0 0 0 +-15.516 10.959 -1.666 0 0 0 0 0 0 0 +-15.576 10.928 -1.669 0 0 0 0 0 0 0 +-15.637 10.897 -1.672 0 0 0 0 0 0 0 +-15.653 10.836 -1.67 0 0 0 0 0 0 0 +-15.598 10.761 -1.661 0 0 0 0 0 0 0 +-15.639 10.718 -1.662 0 0 0 0 0 0 0 +-15.634 10.642 -1.657 0 0 0 0 0 0 0 +-15.675 10.598 -1.658 0 0 0 0 0 0 0 +-15.712 10.551 -1.659 0 0 0 0 0 0 0 +-15.922 10.62 -1.68 0 0 0 0 0 0 0 +-6.7 4.441 -0.589 0 0 0 0 0 0 0 +-15.61 10.342 -1.639 0 0 0 0 0 0 0 +-6.702 4.413 -0.588 0 0 0 0 0 0 0 +-6.724 4.397 -0.589 0 0 0 0 0 0 0 +-6.715 4.361 -0.586 0 0 0 0 0 0 0 +-6.743 4.349 -0.588 0 0 0 0 0 0 0 +-6.76 4.33 -0.588 0 0 0 0 0 0 0 +-15.652 9.881 -1.618 0 0 0 0 0 0 0 +-15.696 9.84 -1.619 0 0 0 0 0 0 0 +-15.808 9.842 -1.629 0 0 0 0 0 0 0 +-15.741 9.731 -1.617 0 0 0 0 0 0 0 +-15.792 9.694 -1.62 0 0 0 0 0 0 0 +-15.847 9.66 -1.623 0 0 0 0 0 0 0 +-15.803 9.565 -1.614 0 0 0 0 0 0 0 +-15.788 9.489 -1.609 0 0 0 0 0 0 0 +-15.779 9.45 -1.606 0 0 0 0 0 0 0 +-15.757 9.37 -1.6 0 0 0 0 0 0 0 +-15.929 9.404 -1.617 0 0 0 0 0 0 0 +-15.88 9.307 -1.608 0 0 0 0 0 0 0 +-15.855 9.227 -1.602 0 0 0 0 0 0 0 +-15.881 9.175 -1.601 0 0 0 0 0 0 0 +-15.858 9.095 -1.595 0 0 0 0 0 0 0 +-15.907 9.09 -1.599 0 0 0 0 0 0 0 +-16.02 9.088 -1.609 0 0 0 0 0 0 0 +-14.063 7.923 -1.385 0 0 0 0 0 0 0 +-14.041 7.853 -1.38 0 0 0 0 0 0 0 +-14.067 7.81 -1.38 0 0 0 0 0 0 0 +-15.796 8.701 -1.571 0 0 0 0 0 0 0 +-12.557 6.871 -1.206 0 0 0 0 0 0 0 +-12.552 6.843 -1.204 0 0 0 0 0 0 0 +-12.568 6.801 -1.203 0 0 0 0 0 0 0 +-12.635 6.786 -1.208 0 0 0 0 0 0 0 +-13.653 7.275 -1.319 0 0 0 0 0 0 0 +-13.801 7.298 -1.333 0 0 0 0 0 0 0 +-13.887 7.288 -1.34 0 0 0 0 0 0 0 +-15.919 8.286 -1.563 0 0 0 0 0 0 0 +-15.953 8.272 -1.565 0 0 0 0 0 0 0 +-15.937 8.2 -1.56 0 0 0 0 0 0 0 +-7.137 3.66 -0.587 0 0 0 0 0 0 0 +-7.162 3.645 -0.589 0 0 0 0 0 0 0 +-7.273 3.672 -0.6 0 0 0 0 0 0 0 +-7.319 3.666 -0.604 0 0 0 0 0 0 0 +-7.412 3.683 -0.613 0 0 0 0 0 0 0 +-7.473 3.699 -0.619 0 0 0 0 0 0 0 +-7.705 3.783 -0.643 0 0 0 0 0 0 0 +-13.985 6.734 -1.324 0 0 0 0 0 0 0 +-13.913 6.646 -1.314 0 0 0 0 0 0 0 +-14.674 6.951 -1.395 0 0 0 0 0 0 0 +-16.329 7.669 -1.572 0 0 0 0 0 0 0 +-16.328 7.637 -1.57 0 0 0 0 0 0 0 +-16.484 7.647 -1.585 0 0 0 0 0 0 0 +-16.611 7.642 -1.596 0 0 0 0 0 0 0 +-16.456 7.509 -1.576 0 0 0 0 0 0 0 +-16.497 7.465 -1.578 0 0 0 0 0 0 0 +-16.513 7.41 -1.578 0 0 0 0 0 0 0 +-20.3 9.026 -1.982 0 0 0 0 0 0 0 +-20.326 8.961 -1.982 0 0 0 0 0 0 0 +-20.327 8.924 -1.98 0 0 0 0 0 0 0 +-20.341 8.854 -1.979 0 0 0 0 0 0 0 +-20.352 8.783 -1.977 0 0 0 0 0 0 0 +-20.352 8.707 -1.974 0 0 0 0 0 0 0 +-20.385 8.645 -1.975 0 0 0 0 0 0 0 +-20.406 8.579 -1.974 0 0 0 0 0 0 0 +-20.406 8.503 -1.971 0 0 0 0 0 0 0 +-20.426 8.474 -1.972 0 0 0 0 0 0 0 +-20.433 8.402 -1.97 0 0 0 0 0 0 0 +-20.451 8.335 -1.969 0 0 0 0 0 0 0 +-20.476 8.27 -1.969 0 0 0 0 0 0 0 +-20.498 8.204 -1.968 0 0 0 0 0 0 0 +-20.507 8.133 -1.967 0 0 0 0 0 0 0 +-20.527 8.066 -1.966 0 0 0 0 0 0 0 +-20.526 8.029 -1.965 0 0 0 0 0 0 0 +-20.55 7.963 -1.965 0 0 0 0 0 0 0 +-20.558 7.892 -1.963 0 0 0 0 0 0 0 +-20.558 7.819 -1.96 0 0 0 0 0 0 0 +-20.575 7.751 -1.959 0 0 0 0 0 0 0 +-20.585 7.681 -1.958 0 0 0 0 0 0 0 +-20.603 7.614 -1.957 0 0 0 0 0 0 0 +-20.602 7.577 -1.956 0 0 0 0 0 0 0 +-20.616 7.509 -1.955 0 0 0 0 0 0 0 +-20.64 7.444 -1.955 0 0 0 0 0 0 0 +-20.646 7.373 -1.953 0 0 0 0 0 0 0 +-20.66 7.305 -1.952 0 0 0 0 0 0 0 +-20.688 7.242 -1.953 0 0 0 0 0 0 0 +-20.707 7.176 -1.952 0 0 0 0 0 0 0 +-20.728 7.146 -1.953 0 0 0 0 0 0 0 +-20.765 7.086 -1.955 0 0 0 0 0 0 0 +-20.759 7.012 -1.952 0 0 0 0 0 0 0 +-20.776 6.944 -1.951 0 0 0 0 0 0 0 +-20.839 6.893 -1.956 0 0 0 0 0 0 0 +-20.885 6.835 -1.958 0 0 0 0 0 0 0 +-20.925 6.776 -1.96 0 0 0 0 0 0 0 +-20.983 6.722 -1.964 0 0 0 0 0 0 0 +-21.048 6.706 -1.97 0 0 0 0 0 0 0 +-21.052 6.635 -1.968 0 0 0 0 0 0 0 +-21.103 6.578 -1.971 0 0 0 0 0 0 0 +-21.114 6.509 -1.97 0 0 0 0 0 0 0 +-21.121 6.438 -1.969 0 0 0 0 0 0 0 +-21.155 6.376 -1.97 0 0 0 0 0 0 0 +-21.144 6.3 -1.967 0 0 0 0 0 0 0 +-21.167 6.271 -1.968 0 0 0 0 0 0 0 +-21.175 6.201 -1.967 0 0 0 0 0 0 0 +-21.206 6.138 -1.968 0 0 0 0 0 0 0 +-21.201 6.064 -1.966 0 0 0 0 0 0 0 +-21.262 6.009 -1.97 0 0 0 0 0 0 0 +-21.296 5.947 -1.972 0 0 0 0 0 0 0 +-21.345 5.888 -1.975 0 0 0 0 0 0 0 +-21.377 5.861 -1.977 0 0 0 0 0 0 0 +-21.399 5.795 -1.977 0 0 0 0 0 0 0 +-21.431 5.731 -1.979 0 0 0 0 0 0 0 +-21.509 5.68 -1.985 0 0 0 0 0 0 0 +-10.481 2.746 -0.864 0 0 0 0 0 0 0 +-9.973 2.581 -0.812 0 0 0 0 0 0 0 +-9.63 2.461 -0.776 0 0 0 0 0 0 0 +-9.327 2.369 -0.745 0 0 0 0 0 0 0 +-9.048 2.268 -0.716 0 0 0 0 0 0 0 +-8.927 2.209 -0.703 0 0 0 0 0 0 0 +-8.359 1.986 -0.644 0 0 0 0 0 0 0 +-8.357 1.917 -0.642 0 0 0 0 0 0 0 +-8.363 1.891 -0.642 0 0 0 0 0 0 0 +-9.012 1.872 -0.704 0 0 0 0 0 0 0 +-9.01 1.842 -0.703 0 0 0 0 0 0 0 +-8.953 1.802 -0.697 0 0 0 0 0 0 0 +-8.953 1.772 -0.696 0 0 0 0 0 0 0 +-8.931 1.739 -0.693 0 0 0 0 0 0 0 +-8.982 1.719 -0.698 0 0 0 0 0 0 0 +-8.996 1.708 -0.699 0 0 0 0 0 0 0 +-9.092 1.696 -0.708 0 0 0 0 0 0 0 +-9.551 1.029 -0.743 0 0 0 0 0 0 0 +-9.448 0.988 -0.733 0 0 0 0 0 0 0 +-9.439 0.972 -0.732 0 0 0 0 0 0 0 +-9.444 0.943 -0.732 0 0 0 0 0 0 0 +-8.781 0.767 -0.665 0 0 0 0 0 0 0 +-8.742 0.736 -0.661 0 0 0 0 0 0 0 +-8.756 0.71 -0.663 0 0 0 0 0 0 0 +-20.474 1.463 -1.816 0 0 0 0 0 0 0 +-19.483 1.332 -1.718 0 0 0 0 0 0 0 +-20.495 1.335 -1.817 0 0 0 0 0 0 0 +-20.483 1.27 -1.816 0 0 0 0 0 0 0 +-20.433 1.202 -1.81 0 0 0 0 0 0 0 +-20.459 1.172 -1.813 0 0 0 0 0 0 0 +-20.48 1.108 -1.814 0 0 0 0 0 0 0 +-20.484 1.044 -1.814 0 0 0 0 0 0 0 +-20.499 0.98 -1.816 0 0 0 0 0 0 0 +-20.494 0.915 -1.815 0 0 0 0 0 0 0 +-20.487 0.851 -1.814 0 0 0 0 0 0 0 +-20.39 0.783 -1.804 0 0 0 0 0 0 0 +-20.401 0.751 -1.805 0 0 0 0 0 0 0 +-20.397 0.687 -1.804 0 0 0 0 0 0 0 +-20.399 0.622 -1.804 0 0 0 0 0 0 0 +-20.399 0.558 -1.804 0 0 0 0 0 0 0 +-18.214 0.444 -1.589 0 0 0 0 0 0 0 +-20.33 0.429 -1.797 0 0 0 0 0 0 0 +-20.318 0.365 -1.796 0 0 0 0 0 0 0 +-20.265 0.332 -1.791 0 0 0 0 0 0 0 +-20.22 0.268 -1.786 0 0 0 0 0 0 0 +-20.234 0.204 -1.787 0 0 0 0 0 0 0 +-20.245 0.141 -1.788 0 0 0 0 0 0 0 +-20.249 0.077 -1.789 0 0 0 0 0 0 0 +-20.231 0.014 -1.787 0 0 0 0 0 0 0 +-20.208 -0.05 -1.785 0 0 0 0 0 0 0 +-20.176 -0.081 -1.782 0 0 0 0 0 0 0 +-20.169 -0.145 -1.781 0 0 0 0 0 0 0 +-20.175 -0.208 -1.782 0 0 0 0 0 0 0 +-20.176 -0.272 -1.782 0 0 0 0 0 0 0 +-20.157 -0.335 -1.78 0 0 0 0 0 0 0 +-20.148 -0.398 -1.779 0 0 0 0 0 0 0 +-20.141 -0.461 -1.779 0 0 0 0 0 0 0 +-20.093 -0.523 -1.774 0 0 0 0 0 0 0 +-20.081 -0.554 -1.773 0 0 0 0 0 0 0 +-20.037 -0.616 -1.769 0 0 0 0 0 0 0 +-20.037 -0.679 -1.769 0 0 0 0 0 0 0 +-20.062 -0.743 -1.772 0 0 0 0 0 0 0 +-20.056 -0.806 -1.771 0 0 0 0 0 0 0 +-20.057 -0.869 -1.772 0 0 0 0 0 0 0 +-20.057 -0.932 -1.772 0 0 0 0 0 0 0 +-20.029 -0.962 -1.769 0 0 0 0 0 0 0 +-20.016 -1.025 -1.768 0 0 0 0 0 0 0 +-20.019 -1.088 -1.769 0 0 0 0 0 0 0 +-19.972 -1.148 -1.765 0 0 0 0 0 0 0 +-19.99 -1.212 -1.767 0 0 0 0 0 0 0 +-19.98 -1.275 -1.766 0 0 0 0 0 0 0 +-19.968 -1.337 -1.766 0 0 0 0 0 0 0 +-19.944 -1.367 -1.763 0 0 0 0 0 0 0 +-19.902 -1.427 -1.76 0 0 0 0 0 0 0 +-19.826 -1.484 -1.753 0 0 0 0 0 0 0 +-19.835 -1.547 -1.754 0 0 0 0 0 0 0 +-19.79 -1.606 -1.75 0 0 0 0 0 0 0 +-19.753 -1.666 -1.747 0 0 0 0 0 0 0 +-19.728 -1.726 -1.745 0 0 0 0 0 0 0 +-19.694 -1.754 -1.742 0 0 0 0 0 0 0 +-19.512 -1.799 -1.724 0 0 0 0 0 0 0 +-19.351 -1.846 -1.709 0 0 0 0 0 0 0 +-21.603 -2.132 -1.932 0 0 0 0 0 0 0 +-21.557 -2.196 -1.928 0 0 0 0 0 0 0 +-21.55 -2.264 -1.928 0 0 0 0 0 0 0 +-21.503 -2.327 -1.924 0 0 0 0 0 0 0 +-21.498 -2.395 -1.924 0 0 0 0 0 0 0 +-21.478 -2.461 -1.923 0 0 0 0 0 0 0 +-21.459 -2.493 -1.922 0 0 0 0 0 0 0 +-21.415 -2.556 -1.918 0 0 0 0 0 0 0 +-21.395 -2.622 -1.917 0 0 0 0 0 0 0 +-21.379 -2.688 -1.916 0 0 0 0 0 0 0 +-21.339 -2.751 -1.913 0 0 0 0 0 0 0 +-21.322 -2.817 -1.912 0 0 0 0 0 0 0 +-21.224 -2.872 -1.904 0 0 0 0 0 0 0 +-21.224 -2.906 -1.904 0 0 0 0 0 0 0 +-21.209 -2.971 -1.903 0 0 0 0 0 0 0 +-21.162 -3.033 -1.9 0 0 0 0 0 0 0 +-21.117 -3.094 -1.896 0 0 0 0 0 0 0 +-21.02 -3.147 -1.888 0 0 0 0 0 0 0 +-21.065 -3.222 -1.893 0 0 0 0 0 0 0 +-21.051 -3.287 -1.893 0 0 0 0 0 0 0 +-21.022 -3.317 -1.89 0 0 0 0 0 0 0 +-20.984 -3.378 -1.888 0 0 0 0 0 0 0 +-20.938 -3.438 -1.884 0 0 0 0 0 0 0 +-20.857 -3.492 -1.877 0 0 0 0 0 0 0 +-20.769 -3.544 -1.869 0 0 0 0 0 0 0 +-20.844 -3.625 -1.878 0 0 0 0 0 0 0 +-20.811 -3.686 -1.876 0 0 0 0 0 0 0 +-20.77 -3.713 -1.872 0 0 0 0 0 0 0 +-20.715 -3.77 -1.868 0 0 0 0 0 0 0 +-20.658 -3.827 -1.863 0 0 0 0 0 0 0 +-20.597 -3.882 -1.859 0 0 0 0 0 0 0 +-20.513 -3.933 -1.851 0 0 0 0 0 0 0 +-20.418 -3.981 -1.843 0 0 0 0 0 0 0 +-20.363 -4.037 -1.839 0 0 0 0 0 0 0 +-20.308 -4.059 -1.834 0 0 0 0 0 0 0 +-20.236 -4.111 -1.828 0 0 0 0 0 0 0 +-20.159 -4.161 -1.822 0 0 0 0 0 0 0 +-20.095 -4.214 -1.817 0 0 0 0 0 0 0 +-20.006 -4.261 -1.809 0 0 0 0 0 0 0 +-19.936 -4.311 -1.803 0 0 0 0 0 0 0 +-19.858 -4.36 -1.797 0 0 0 0 0 0 0 +-19.786 -4.409 -1.791 0 0 0 0 0 0 0 +-19.725 -4.428 -1.785 0 0 0 0 0 0 0 +-19.643 -4.474 -1.779 0 0 0 0 0 0 0 +-19.586 -4.526 -1.774 0 0 0 0 0 0 0 +-19.512 -4.573 -1.768 0 0 0 0 0 0 0 +-19.437 -4.62 -1.762 0 0 0 0 0 0 0 +-19.368 -4.668 -1.757 0 0 0 0 0 0 0 +-19.294 -4.714 -1.751 0 0 0 0 0 0 0 +-19.23 -4.731 -1.745 0 0 0 0 0 0 0 +-19.161 -4.777 -1.74 0 0 0 0 0 0 0 +-19.092 -4.824 -1.734 0 0 0 0 0 0 0 +-19.013 -4.867 -1.728 0 0 0 0 0 0 0 +-18.954 -4.916 -1.723 0 0 0 0 0 0 0 +-18.882 -4.96 -1.717 0 0 0 0 0 0 0 +-18.82 -5.007 -1.713 0 0 0 0 0 0 0 +-18.759 -5.022 -1.707 0 0 0 0 0 0 0 +-18.693 -5.068 -1.702 0 0 0 0 0 0 0 +-18.631 -5.114 -1.697 0 0 0 0 0 0 0 +-18.551 -5.154 -1.691 0 0 0 0 0 0 0 +-18.48 -5.197 -1.685 0 0 0 0 0 0 0 +-18.4 -5.237 -1.679 0 0 0 0 0 0 0 +-18.013 -5.187 -1.641 0 0 0 0 0 0 0 +-17.802 -5.157 -1.62 0 0 0 0 0 0 0 +-17.726 -5.195 -1.614 0 0 0 0 0 0 0 +-17.655 -5.234 -1.609 0 0 0 0 0 0 0 +-17.587 -5.274 -1.603 0 0 0 0 0 0 0 +-17.52 -5.314 -1.598 0 0 0 0 0 0 0 +-17.468 -5.358 -1.594 0 0 0 0 0 0 0 +-17.397 -5.397 -1.589 0 0 0 0 0 0 0 +-17.347 -5.411 -1.585 0 0 0 0 0 0 0 +-17.296 -5.454 -1.581 0 0 0 0 0 0 0 +-17.224 -5.491 -1.575 0 0 0 0 0 0 0 +-17.208 -5.546 -1.576 0 0 0 0 0 0 0 +-17.24 -5.616 -1.581 0 0 0 0 0 0 0 +-17.292 -5.693 -1.588 0 0 0 0 0 0 0 +-17.31 -5.759 -1.592 0 0 0 0 0 0 0 +-17.339 -5.799 -1.596 0 0 0 0 0 0 0 +-17.285 -5.842 -1.592 0 0 0 0 0 0 0 +-17.225 -5.882 -1.588 0 0 0 0 0 0 0 +-17.146 -5.915 -1.581 0 0 0 0 0 0 0 +-17.075 -5.95 -1.576 0 0 0 0 0 0 0 +-17.022 -5.992 -1.572 0 0 0 0 0 0 0 +-16.915 -6.014 -1.563 0 0 0 0 0 0 0 +-16.726 -5.976 -1.544 0 0 0 0 0 0 0 +-16.75 -6.044 -1.549 0 0 0 0 0 0 0 +-16.748 -6.103 -1.551 0 0 0 0 0 0 0 +-16.693 -6.142 -1.547 0 0 0 0 0 0 0 +-16.625 -6.177 -1.542 0 0 0 0 0 0 0 +-16.557 -6.211 -1.537 0 0 0 0 0 0 0 +-16.48 -6.241 -1.531 0 0 0 0 0 0 0 +-16.423 -6.278 -1.527 0 0 0 0 0 0 0 +-16.359 -6.283 -1.521 0 0 0 0 0 0 0 +-16.269 -6.307 -1.514 0 0 0 0 0 0 0 +-16.221 -6.347 -1.511 0 0 0 0 0 0 0 +-16.161 -6.382 -1.506 0 0 0 0 0 0 0 +-16.096 -6.415 -1.502 0 0 0 0 0 0 0 +-16.03 -6.447 -1.497 0 0 0 0 0 0 0 +-15.975 -6.483 -1.493 0 0 0 0 0 0 0 +-15.927 -6.493 -1.489 0 0 0 0 0 0 0 +-15.922 -6.549 -1.491 0 0 0 0 0 0 0 +-15.934 -6.613 -1.494 0 0 0 0 0 0 0 +-15.911 -6.662 -1.494 0 0 0 0 0 0 0 +-15.784 -6.667 -1.483 0 0 0 0 0 0 0 +-15.749 -6.71 -1.481 0 0 0 0 0 0 0 +-15.841 -6.809 -1.493 0 0 0 0 0 0 0 +-15.972 -6.895 -1.509 0 0 0 0 0 0 0 +-15.976 -6.956 -1.511 0 0 0 0 0 0 0 +-15.992 -7.023 -1.515 0 0 0 0 0 0 0 +-15.949 -7.064 -1.513 0 0 0 0 0 0 0 +-15.845 -7.077 -1.504 0 0 0 0 0 0 0 +-15.75 -7.094 -1.496 0 0 0 0 0 0 0 +-15.678 -7.121 -1.491 0 0 0 0 0 0 0 +-15.66 -7.143 -1.49 0 0 0 0 0 0 0 +-15.639 -7.193 -1.491 0 0 0 0 0 0 0 +-15.649 -7.257 -1.494 0 0 0 0 0 0 0 +-15.689 -7.336 -1.501 0 0 0 0 0 0 0 +-15.666 -7.385 -1.501 0 0 0 0 0 0 0 +-15.7 -7.462 -1.507 0 0 0 0 0 0 0 +-14.859 -7.117 -1.418 0 0 0 0 0 0 0 +-15.695 -7.55 -1.511 0 0 0 0 0 0 0 +-15.738 -7.632 -1.518 0 0 0 0 0 0 0 +-14.622 -7.145 -1.398 0 0 0 0 0 0 0 +-14.649 -7.216 -1.404 0 0 0 0 0 0 0 +-14.693 -7.295 -1.411 0 0 0 0 0 0 0 +-14.691 -7.352 -1.413 0 0 0 0 0 0 0 +-16.117 -8.132 -1.573 0 0 0 0 0 0 0 +-16.196 -8.204 -1.583 0 0 0 0 0 0 0 +-16.232 -8.286 -1.59 0 0 0 0 0 0 0 +-16.222 -8.346 -1.592 0 0 0 0 0 0 0 +-16.224 -8.411 -1.595 0 0 0 0 0 0 0 +-16.231 -8.48 -1.599 0 0 0 0 0 0 0 +-16.227 -8.543 -1.601 0 0 0 0 0 0 0 +-16.209 -8.598 -1.602 0 0 0 0 0 0 0 +-16.245 -8.65 -1.608 0 0 0 0 0 0 0 +-16.26 -8.724 -1.612 0 0 0 0 0 0 0 +-16.264 -8.792 -1.616 0 0 0 0 0 0 0 +-16.264 -8.858 -1.619 0 0 0 0 0 0 0 +-16.264 -8.924 -1.622 0 0 0 0 0 0 0 +-16.253 -8.985 -1.624 0 0 0 0 0 0 0 +-16.228 -9.038 -1.624 0 0 0 0 0 0 0 +-16.247 -9.082 -1.628 0 0 0 0 0 0 0 +-16.264 -9.159 -1.633 0 0 0 0 0 0 0 +-16.268 -9.228 -1.637 0 0 0 0 0 0 0 +-16.278 -9.302 -1.641 0 0 0 0 0 0 0 +-16.289 -9.376 -1.646 0 0 0 0 0 0 0 +-16.288 -9.444 -1.649 0 0 0 0 0 0 0 +-16.303 -9.522 -1.654 0 0 0 0 0 0 0 +-16.317 -9.564 -1.658 0 0 0 0 0 0 0 +-16.316 -9.633 -1.661 0 0 0 0 0 0 0 +-16.329 -9.709 -1.666 0 0 0 0 0 0 0 +-16.349 -9.791 -1.672 0 0 0 0 0 0 0 +-16.342 -9.857 -1.674 0 0 0 0 0 0 0 +-16.364 -9.941 -1.68 0 0 0 0 0 0 0 +-16.358 -10.008 -1.683 0 0 0 0 0 0 0 +-16.362 -10.081 -1.687 0 0 0 0 0 0 0 +-16.38 -10.128 -1.691 0 0 0 0 0 0 0 +-16.399 -10.211 -1.697 0 0 0 0 0 0 0 +-16.397 -10.281 -1.701 0 0 0 0 0 0 0 +-16.403 -10.357 -1.705 0 0 0 0 0 0 0 +-16.416 -10.437 -1.711 0 0 0 0 0 0 0 +-16.413 -10.508 -1.714 0 0 0 0 0 0 0 +-16.435 -10.596 -1.721 0 0 0 0 0 0 0 +-16.44 -10.635 -1.723 0 0 0 0 0 0 0 +-16.459 -10.721 -1.729 0 0 0 0 0 0 0 +-16.463 -10.798 -1.734 0 0 0 0 0 0 0 +-16.477 -10.881 -1.739 0 0 0 0 0 0 0 +-16.476 -10.955 -1.743 0 0 0 0 0 0 0 +-16.498 -11.044 -1.75 0 0 0 0 0 0 0 +-16.488 -11.113 -1.753 0 0 0 0 0 0 0 +-16.515 -11.169 -1.758 0 0 0 0 0 0 0 +-16.535 -11.259 -1.765 0 0 0 0 0 0 0 +-10.553 -7.271 -1.058 0 0 0 0 0 0 0 +-10.481 -7.27 -1.053 0 0 0 0 0 0 0 +-10.523 -7.349 -1.06 0 0 0 0 0 0 0 +-10.488 -7.374 -1.059 0 0 0 0 0 0 0 +-10.444 -7.367 -1.055 0 0 0 0 0 0 0 +-10.444 -7.416 -1.058 0 0 0 0 0 0 0 +-10.43 -7.456 -1.059 0 0 0 0 0 0 0 +-10.4 -7.484 -1.058 0 0 0 0 0 0 0 +-10.386 -7.524 -1.059 0 0 0 0 0 0 0 +-10.374 -7.565 -1.061 0 0 0 0 0 0 0 +-10.365 -7.608 -1.063 0 0 0 0 0 0 0 +-10.389 -7.651 -1.067 0 0 0 0 0 0 0 +-10.499 -7.784 -1.083 0 0 0 0 0 0 0 +-10.537 -7.863 -1.091 0 0 0 0 0 0 0 +-10.487 -7.877 -1.088 0 0 0 0 0 0 0 +-16.708 -12.652 -1.858 0 0 0 0 0 0 0 +-16.706 -12.733 -1.863 0 0 0 0 0 0 0 +-16.712 -12.821 -1.869 0 0 0 0 0 0 0 +-16.723 -12.872 -1.873 0 0 0 0 0 0 0 +-16.714 -12.948 -1.877 0 0 0 0 0 0 0 +-16.732 -13.046 -1.884 0 0 0 0 0 0 0 +-16.717 -13.12 -1.887 0 0 0 0 0 0 0 +-16.702 -13.193 -1.89 0 0 0 0 0 0 0 +-16.665 -13.249 -1.891 0 0 0 0 0 0 0 +-16.628 -13.305 -1.892 0 0 0 0 0 0 0 +-16.629 -13.349 -1.894 0 0 0 0 0 0 0 +-16.586 -13.4 -1.894 0 0 0 0 0 0 0 +-16.577 -13.48 -1.898 0 0 0 0 0 0 0 +-16.552 -13.545 -1.901 0 0 0 0 0 0 0 +-16.52 -13.606 -1.902 0 0 0 0 0 0 0 +-16.488 -13.667 -1.903 0 0 0 0 0 0 0 +-16.446 -13.72 -1.904 0 0 0 0 0 0 0 +-16.403 -13.772 -1.904 0 0 0 0 0 0 0 +-16.407 -13.819 -1.907 0 0 0 0 0 0 0 +-16.37 -13.876 -1.908 0 0 0 0 0 0 0 +-16.328 -13.928 -1.908 0 0 0 0 0 0 0 +-16.281 -13.977 -1.907 0 0 0 0 0 0 0 +-16.249 -14.039 -1.909 0 0 0 0 0 0 0 +-16.206 -14.091 -1.909 0 0 0 0 0 0 0 +-16.165 -14.144 -1.91 0 0 0 0 0 0 0 +-16.159 -14.184 -1.912 0 0 0 0 0 0 0 +-13.829 -12.211 -1.612 0 0 0 0 0 0 0 +-13.789 -12.253 -1.612 0 0 0 0 0 0 0 +-16.032 -14.342 -1.913 0 0 0 0 0 0 0 +-16.006 -14.41 -1.915 0 0 0 0 0 0 0 +-15.952 -14.452 -1.914 0 0 0 0 0 0 0 +-15.912 -14.508 -1.915 0 0 0 0 0 0 0 +-15.904 -14.546 -1.917 0 0 0 0 0 0 0 +-15.872 -14.608 -1.919 0 0 0 0 0 0 0 +-15.824 -14.657 -1.918 0 0 0 0 0 0 0 +-15.784 -14.712 -1.919 0 0 0 0 0 0 0 +-15.755 -14.778 -1.922 0 0 0 0 0 0 0 +-15.727 -14.845 -1.924 0 0 0 0 0 0 0 +-15.684 -14.897 -1.924 0 0 0 0 0 0 0 +-15.673 -14.934 -1.926 0 0 0 0 0 0 0 +-15.628 -14.984 -1.926 0 0 0 0 0 0 0 +-15.588 -15.04 -1.927 0 0 0 0 0 0 0 +-13.946 -13.537 -1.709 0 0 0 0 0 0 0 +-13.899 -13.577 -1.708 0 0 0 0 0 0 0 +-15.537 -15.277 -1.94 0 0 0 0 0 0 0 +-15.51 -15.347 -1.943 0 0 0 0 0 0 0 +-15.503 -15.388 -1.945 0 0 0 0 0 0 0 +-15.431 -15.413 -1.942 0 0 0 0 0 0 0 +-15.389 -15.468 -1.943 0 0 0 0 0 0 0 +-15.35 -15.527 -1.944 0 0 0 0 0 0 0 +-15.303 -15.576 -1.945 0 0 0 0 0 0 0 +-15.264 -15.634 -1.946 0 0 0 0 0 0 0 +-15.23 -15.698 -1.948 0 0 0 0 0 0 0 +-15.212 -15.729 -1.949 0 0 0 0 0 0 0 +-15.168 -15.782 -1.95 0 0 0 0 0 0 0 +-15.127 -15.839 -1.951 0 0 0 0 0 0 0 +-15.084 -15.893 -1.952 0 0 0 0 0 0 0 +-15.036 -15.943 -1.952 0 0 0 0 0 0 0 +-14.988 -15.992 -1.953 0 0 0 0 0 0 0 +-14.016 -15.047 -1.82 0 0 0 0 0 0 0 +-13.992 -15.069 -1.82 0 0 0 0 0 0 0 +-14.897 -16.147 -1.958 0 0 0 0 0 0 0 +-14.863 -16.213 -1.96 0 0 0 0 0 0 0 +-14.818 -16.266 -1.961 0 0 0 0 0 0 0 +-14.77 -16.317 -1.962 0 0 0 0 0 0 0 +-14.722 -16.366 -1.962 0 0 0 0 0 0 0 +-14.694 -16.439 -1.966 0 0 0 0 0 0 0 +-14.636 -16.477 -1.965 0 0 0 0 0 0 0 +-14.607 -16.497 -1.964 0 0 0 0 0 0 0 +-14.572 -16.563 -1.967 0 0 0 0 0 0 0 +-14.523 -16.611 -1.967 0 0 0 0 0 0 0 +-14.472 -16.658 -1.967 0 0 0 0 0 0 0 +-14.387 -16.666 -1.962 0 0 0 0 0 0 0 +-14.265 -16.63 -1.952 0 0 0 0 0 0 0 +-14.1 -16.542 -1.935 0 0 0 0 0 0 0 +-14.27 -16.795 -1.965 0 0 0 0 0 0 0 +-14.261 -16.892 -1.971 0 0 0 0 0 0 0 +-14.224 -16.956 -1.974 0 0 0 0 0 0 0 +-14.173 -17.004 -1.974 0 0 0 0 0 0 0 +-14.144 -17.078 -1.978 0 0 0 0 0 0 0 +-14.1 -17.134 -1.979 0 0 0 0 0 0 0 +-14.055 -17.189 -1.981 0 0 0 0 0 0 0 +-14.041 -17.227 -1.983 0 0 0 0 0 0 0 +-13.998 -17.285 -1.985 0 0 0 0 0 0 0 +-13.955 -17.343 -1.986 0 0 0 0 0 0 0 +-13.931 -17.425 -1.991 0 0 0 0 0 0 0 +-13.899 -17.497 -1.995 0 0 0 0 0 0 0 +-13.871 -17.575 -1.999 0 0 0 0 0 0 0 +-13.848 -17.661 -2.004 0 0 0 0 0 0 0 +-13.841 -17.709 -2.008 0 0 0 0 0 0 0 +-13.826 -17.805 -2.014 0 0 0 0 0 0 0 +-13.81 -17.9 -2.02 0 0 0 0 0 0 0 +-13.762 -17.954 -2.022 0 0 0 0 0 0 0 +-13.719 -18.015 -2.024 0 0 0 0 0 0 0 +-13.68 -18.082 -2.027 0 0 0 0 0 0 0 +-13.656 -18.168 -2.032 0 0 0 0 0 0 0 +-13.658 -18.23 -2.037 0 0 0 0 0 0 0 +-13.645 -18.332 -2.045 0 0 0 0 0 0 0 +-13.65 -18.46 -2.055 0 0 0 0 0 0 0 +-13.654 -18.588 -2.065 0 0 0 0 0 0 0 +-13.663 -18.724 -2.077 0 0 0 0 0 0 0 +-13.642 -18.819 -2.083 0 0 0 0 0 0 0 +-13.634 -18.932 -2.091 0 0 0 0 0 0 0 +-13.634 -18.996 -2.097 0 0 0 0 0 0 0 +-13.578 -19.043 -2.097 0 0 0 0 0 0 0 +-13.474 -19.024 -2.09 0 0 0 0 0 0 0 +-13.384 -19.023 -2.084 0 0 0 0 0 0 0 +-13.292 -19.019 -2.079 0 0 0 0 0 0 0 +-13.204 -19.02 -2.074 0 0 0 0 0 0 0 +-13.086 -18.977 -2.064 0 0 0 0 0 0 0 +-13.039 -18.972 -2.061 0 0 0 0 0 0 0 +-12.906 -18.905 -2.048 0 0 0 0 0 0 0 +-12.781 -18.849 -2.037 0 0 0 0 0 0 0 +-12.652 -18.785 -2.024 0 0 0 0 0 0 0 +-12.429 -18.579 -1.995 0 0 0 0 0 0 0 +-12.494 -18.804 -2.017 0 0 0 0 0 0 0 +-12.409 -18.805 -2.013 0 0 0 0 0 0 0 +-12.352 -18.781 -2.008 0 0 0 0 0 0 0 +-12.269 -18.783 -2.003 0 0 0 0 0 0 0 +-12.195 -18.8 -2.001 0 0 0 0 0 0 0 +-12.11 -18.798 -1.996 0 0 0 0 0 0 0 +-12.035 -18.811 -1.993 0 0 0 0 0 0 0 +-11.954 -18.813 -1.989 0 0 0 0 0 0 0 +-11.873 -18.817 -1.985 0 0 0 0 0 0 0 +-11.806 -18.775 -1.978 0 0 0 0 0 0 0 +-11.735 -18.793 -1.976 0 0 0 0 0 0 0 +-11.657 -18.8 -1.973 0 0 0 0 0 0 0 +-11.58 -18.807 -1.969 0 0 0 0 0 0 0 +-11.503 -18.813 -1.966 0 0 0 0 0 0 0 +-11.417 -18.805 -1.961 0 0 0 0 0 0 0 +-11.338 -18.808 -1.957 0 0 0 0 0 0 0 +-11.294 -18.802 -1.954 0 0 0 0 0 0 0 +-11.214 -18.801 -1.95 0 0 0 0 0 0 0 +-11.149 -18.828 -1.949 0 0 0 0 0 0 0 +-11.068 -18.825 -1.945 0 0 0 0 0 0 0 +-11.01 -18.862 -1.945 0 0 0 0 0 0 0 +-10.942 -18.881 -1.943 0 0 0 0 0 0 0 +-10.87 -18.894 -1.941 0 0 0 0 0 0 0 +-10.831 -18.894 -1.939 0 0 0 0 0 0 0 +-10.758 -18.904 -1.936 0 0 0 0 0 0 0 +-10.69 -18.923 -1.935 0 0 0 0 0 0 0 +-10.618 -18.934 -1.932 0 0 0 0 0 0 0 +-10.547 -18.947 -1.93 0 0 0 0 0 0 0 +-10.477 -18.961 -1.928 0 0 0 0 0 0 0 +-10.403 -18.967 -1.925 0 0 0 0 0 0 0 +-10.369 -18.976 -1.924 0 0 0 0 0 0 0 +-10.306 -19.002 -1.923 0 0 0 0 0 0 0 +-10.231 -19.006 -1.92 0 0 0 0 0 0 0 +-10.163 -19.022 -1.918 0 0 0 0 0 0 0 +-10.093 -19.035 -1.916 0 0 0 0 0 0 0 +-10.015 -19.031 -1.912 0 0 0 0 0 0 0 +-9.949 -19.052 -1.911 0 0 0 0 0 0 0 +-9.876 -19.057 -1.908 0 0 0 0 0 0 0 +-9.835 -19.051 -1.906 0 0 0 0 0 0 0 +-9.761 -19.055 -1.903 0 0 0 0 0 0 0 +-9.701 -19.086 -1.903 0 0 0 0 0 0 0 +-9.624 -19.082 -1.899 0 0 0 0 0 0 0 +-9.567 -19.118 -1.9 0 0 0 0 0 0 0 +-9.511 -19.157 -1.901 0 0 0 0 0 0 0 +-9.463 -19.211 -1.903 0 0 0 0 0 0 0 +-9.425 -19.21 -1.902 0 0 0 0 0 0 0 +-9.363 -19.236 -1.901 0 0 0 0 0 0 0 +-9.301 -19.262 -1.901 0 0 0 0 0 0 0 +-9.242 -19.295 -1.901 0 0 0 0 0 0 0 +-9.177 -19.315 -1.9 0 0 0 0 0 0 0 +-9.112 -19.334 -1.899 0 0 0 0 0 0 0 +-9.063 -19.388 -1.902 0 0 0 0 0 0 0 +-9.029 -19.393 -1.901 0 0 0 0 0 0 0 +-8.962 -19.409 -1.9 0 0 0 0 0 0 0 +-8.902 -19.439 -1.9 0 0 0 0 0 0 0 +-8.848 -19.483 -1.902 0 0 0 0 0 0 0 +-8.796 -19.531 -1.904 0 0 0 0 0 0 0 +-8.742 -19.576 -1.906 0 0 0 0 0 0 0 +-8.694 -19.635 -1.909 0 0 0 0 0 0 0 +-8.603 -19.512 -1.894 0 0 0 0 0 0 0 +-8.534 -19.52 -1.892 0 0 0 0 0 0 0 +-8.471 -19.543 -1.892 0 0 0 0 0 0 0 +-8.407 -19.563 -1.891 0 0 0 0 0 0 0 +-8.334 -19.563 -1.889 0 0 0 0 0 0 0 +-8.271 -19.586 -1.888 0 0 0 0 0 0 0 +-8.2 -19.588 -1.886 0 0 0 0 0 0 0 +-8.167 -19.597 -1.885 0 0 0 0 0 0 0 +-8.098 -19.604 -1.883 0 0 0 0 0 0 0 +-8.031 -19.616 -1.882 0 0 0 0 0 0 0 +-7.966 -19.632 -1.881 0 0 0 0 0 0 0 +-7.901 -19.648 -1.88 0 0 0 0 0 0 0 +-7.834 -19.66 -1.879 0 0 0 0 0 0 0 +-7.772 -19.684 -1.879 0 0 0 0 0 0 0 +-7.737 -19.685 -1.877 0 0 0 0 0 0 0 +-7.667 -19.691 -1.875 0 0 0 0 0 0 0 +-7.611 -19.73 -1.877 0 0 0 0 0 0 0 +-7.549 -19.754 -1.877 0 0 0 0 0 0 0 +-7.477 -19.751 -1.874 0 0 0 0 0 0 0 +-7.425 -19.801 -1.877 0 0 0 0 0 0 0 +-7.365 -19.83 -1.878 0 0 0 0 0 0 0 +-7.345 -19.871 -1.881 0 0 0 0 0 0 0 +-7.271 -19.864 -1.878 0 0 0 0 0 0 0 +-7.244 -19.984 -1.888 0 0 0 0 0 0 0 +-7.108 -19.803 -1.866 0 0 0 0 0 0 0 +-7.027 -19.772 -1.861 0 0 0 0 0 0 0 +-6.964 -19.792 -1.861 0 0 0 0 0 0 0 +-6.904 -19.818 -1.861 0 0 0 0 0 0 0 +-6.864 -19.804 -1.859 0 0 0 0 0 0 0 +-6.806 -19.837 -1.86 0 0 0 0 0 0 0 +-6.738 -19.843 -1.858 0 0 0 0 0 0 0 +-6.671 -19.849 -1.857 0 0 0 0 0 0 0 +-6.609 -19.872 -1.857 0 0 0 0 0 0 0 +-6.542 -19.877 -1.855 0 0 0 0 0 0 0 +-6.472 -19.877 -1.853 0 0 0 0 0 0 0 +-6.442 -19.891 -1.854 0 0 0 0 0 0 0 +-6.389 -19.94 -1.856 0 0 0 0 0 0 0 +-6.352 -20.041 -1.865 0 0 0 0 0 0 0 +-6.256 -19.957 -1.854 0 0 0 0 0 0 0 +-6.185 -19.949 -1.851 0 0 0 0 0 0 0 +-6.131 -19.995 -1.854 0 0 0 0 0 0 0 +-6.056 -19.975 -1.85 0 0 0 0 0 0 0 +-6.023 -19.98 -1.85 0 0 0 0 0 0 0 +-5.962 -20.005 -1.85 0 0 0 0 0 0 0 +-5.9 -20.027 -1.851 0 0 0 0 0 0 0 +-5.84 -20.055 -1.852 0 0 0 0 0 0 0 +-5.779 -20.079 -1.852 0 0 0 0 0 0 0 +-5.725 -20.13 -1.855 0 0 0 0 0 0 0 +-5.671 -20.182 -1.859 0 0 0 0 0 0 0 +-5.579 -20.218 -1.86 0 0 0 0 0 0 0 +-5.502 -20.188 -1.855 0 0 0 0 0 0 0 +-5.43 -20.172 -1.852 0 0 0 0 0 0 0 +-5.364 -20.18 -1.851 0 0 0 0 0 0 0 +-5.29 -20.154 -1.846 0 0 0 0 0 0 0 +-5.216 -20.132 -1.843 0 0 0 0 0 0 0 +-5.17 -20.082 -1.837 0 0 0 0 0 0 0 +-5.106 -20.096 -1.836 0 0 0 0 0 0 0 +-5.053 -20.151 -1.84 0 0 0 0 0 0 0 +-4.997 -20.198 -1.844 0 0 0 0 0 0 0 +-4.931 -20.202 -1.842 0 0 0 0 0 0 0 +-4.865 -20.207 -1.841 0 0 0 0 0 0 0 +-4.801 -20.219 -1.841 0 0 0 0 0 0 0 +-4.735 -20.226 -1.84 0 0 0 0 0 0 0 +-4.709 -20.257 -1.843 0 0 0 0 0 0 0 +-4.647 -20.279 -1.843 0 0 0 0 0 0 0 +-4.574 -20.251 -1.839 0 0 0 0 0 0 0 +-4.513 -20.281 -1.841 0 0 0 0 0 0 0 +-4.448 -20.289 -1.84 0 0 0 0 0 0 0 +-4.39 -20.328 -1.843 0 0 0 0 0 0 0 +-4.327 -20.346 -1.843 0 0 0 0 0 0 0 +-4.309 -20.417 -1.849 0 0 0 0 0 0 0 +-4.279 -20.596 -1.866 0 0 0 0 0 0 0 +-4.207 -20.576 -1.863 0 0 0 0 0 0 0 +-4.109 -20.421 -1.846 0 0 0 0 0 0 0 +-4.024 -20.331 -1.836 0 0 0 0 0 0 0 +-3.953 -20.302 -1.831 0 0 0 0 0 0 0 +-3.912 -20.263 -1.827 0 0 0 0 0 0 0 +-3.842 -20.244 -1.824 0 0 0 0 0 0 0 +-3.771 -20.215 -1.82 0 0 0 0 0 0 0 +-3.705 -20.211 -1.818 0 0 0 0 0 0 0 +-3.637 -20.199 -1.816 0 0 0 0 0 0 0 +-3.57 -20.189 -1.814 0 0 0 0 0 0 0 +-3.505 -20.19 -1.813 0 0 0 0 0 0 0 +-3.44 -20.193 -1.812 0 0 0 0 0 0 0 +-3.409 -20.201 -1.812 0 0 0 0 0 0 0 +-3.346 -20.215 -1.812 0 0 0 0 0 0 0 +-3.221 -20.25 -1.814 0 0 0 0 0 0 0 +-3.151 -20.218 -1.81 0 0 0 0 0 0 0 +-3.113 -20.395 -1.826 0 0 0 0 0 0 0 +-3.014 -20.171 -1.803 0 0 0 0 0 0 0 +-2.984 -20.187 -1.804 0 0 0 0 0 0 0 +-2.92 -20.191 -1.804 0 0 0 0 0 0 0 +-2.859 -20.218 -1.805 0 0 0 0 0 0 0 +-2.8 -20.264 -1.809 0 0 0 0 0 0 0 +-2.743 -20.32 -1.814 0 0 0 0 0 0 0 +-2.685 -20.374 -1.818 0 0 0 0 0 0 0 +-2.625 -20.412 -1.821 0 0 0 0 0 0 0 +-2.597 -20.449 -1.825 0 0 0 0 0 0 0 +-2.533 -20.461 -1.825 0 0 0 0 0 0 0 +-2.471 -20.487 -1.827 0 0 0 0 0 0 0 +-2.404 -20.473 -1.825 0 0 0 0 0 0 0 +-2.237 -19.569 -1.734 0 0 0 0 0 0 0 +-2.173 -19.554 -1.732 0 0 0 0 0 0 0 +-1.886 -17.449 -1.524 0 0 0 0 0 0 0 +-1.69 -16.861 -1.464 0 0 0 0 0 0 0 +-1.634 -16.834 -1.461 0 0 0 0 0 0 0 +-1.581 -16.841 -1.461 0 0 0 0 0 0 0 +-1.526 -16.821 -1.459 0 0 0 0 0 0 0 +-1.474 -16.841 -1.46 0 0 0 0 0 0 0 +-1.445 -16.814 -1.457 0 0 0 0 0 0 0 +-1.393 -16.826 -1.458 0 0 0 0 0 0 0 +-1.235 -16.848 -1.459 0 0 0 0 0 0 0 +-1.187 -16.922 -1.466 0 0 0 0 0 0 0 +-1.133 -16.909 -1.464 0 0 0 0 0 0 0 +-1.106 -16.899 -1.463 0 0 0 0 0 0 0 +-1.053 -16.911 -1.464 0 0 0 0 0 0 0 +-1 -16.914 -1.464 0 0 0 0 0 0 0 +-0.947 -16.929 -1.465 0 0 0 0 0 0 0 +-0.894 -16.932 -1.465 0 0 0 0 0 0 0 +-0.85 -17.127 -1.484 0 0 0 0 0 0 0 +-0.792 -17.042 -1.476 0 0 0 0 0 0 0 +-0.76 -16.902 -1.462 0 0 0 0 0 0 0 +-0.707 -16.907 -1.462 0 0 0 0 0 0 0 +-0.655 -16.947 -1.466 0 0 0 0 0 0 0 +-0.602 -16.957 -1.466 0 0 0 0 0 0 0 +-0.549 -16.986 -1.469 0 0 0 0 0 0 0 +-0.497 -17.014 -1.472 0 0 0 0 0 0 0 +-0.444 -17.029 -1.473 0 0 0 0 0 0 0 +-0.418 -17.08 -1.478 0 0 0 0 0 0 0 +-0.376 -21.018 -1.865 0 0 0 0 0 0 0 +-0.311 -21.095 -1.872 0 0 0 0 0 0 0 +-0.245 -21.072 -1.87 0 0 0 0 0 0 0 +-0.179 -21.099 -1.872 0 0 0 0 0 0 0 +-0.112 -21.081 -1.871 0 0 0 0 0 0 0 +-0.013 -21.014 -1.864 0 0 0 0 0 0 0 +0.053 -21.002 -1.863 0 0 0 0 0 0 0 +0.116 -20.661 -1.829 0 0 0 0 0 0 0 +0.179 -20.416 -1.805 0 0 0 0 0 0 0 +0.239 -20.141 -1.778 0 0 0 0 0 0 0 +0.299 -19.903 -1.755 0 0 0 0 0 0 0 +0.327 -19.727 -1.738 0 0 0 0 0 0 0 +0.387 -19.646 -1.73 0 0 0 0 0 0 0 +0.449 -19.637 -1.729 0 0 0 0 0 0 0 +0.509 -19.568 -1.722 0 0 0 0 0 0 0 +0.571 -19.608 -1.727 0 0 0 0 0 0 0 +0.633 -19.606 -1.727 0 0 0 0 0 0 0 +0.694 -19.582 -1.724 0 0 0 0 0 0 0 +0.724 -19.575 -1.724 0 0 0 0 0 0 0 +0.786 -19.571 -1.724 0 0 0 0 0 0 0 +0.846 -19.546 -1.722 0 0 0 0 0 0 0 +0.907 -19.538 -1.721 0 0 0 0 0 0 0 +0.969 -19.533 -1.721 0 0 0 0 0 0 0 +1.031 -19.54 -1.722 0 0 0 0 0 0 0 +1.091 -19.518 -1.72 0 0 0 0 0 0 0 +1.119 -19.479 -1.716 0 0 0 0 0 0 0 +1.179 -19.443 -1.713 0 0 0 0 0 0 0 +1.237 -19.398 -1.709 0 0 0 0 0 0 0 +1.297 -19.384 -1.708 0 0 0 0 0 0 0 +1.355 -19.342 -1.704 0 0 0 0 0 0 0 +1.416 -19.33 -1.704 0 0 0 0 0 0 0 +1.474 -19.294 -1.7 0 0 0 0 0 0 0 +1.502 -19.265 -1.698 0 0 0 0 0 0 0 +1.56 -19.233 -1.695 0 0 0 0 0 0 0 +1.618 -19.198 -1.692 0 0 0 0 0 0 0 +1.676 -19.171 -1.69 0 0 0 0 0 0 0 +1.737 -19.166 -1.69 0 0 0 0 0 0 0 +1.792 -19.111 -1.685 0 0 0 0 0 0 0 +1.85 -19.081 -1.683 0 0 0 0 0 0 0 +1.879 -19.068 -1.682 0 0 0 0 0 0 0 +1.939 -19.066 -1.682 0 0 0 0 0 0 0 +1.997 -19.042 -1.68 0 0 0 0 0 0 0 +2.056 -19.026 -1.679 0 0 0 0 0 0 0 +2.116 -19.025 -1.68 0 0 0 0 0 0 0 +2.177 -19.025 -1.681 0 0 0 0 0 0 0 +2.235 -19.002 -1.679 0 0 0 0 0 0 0 +2.288 -18.945 -1.674 0 0 0 0 0 0 0 +2.316 -18.924 -1.672 0 0 0 0 0 0 0 +2.374 -18.907 -1.671 0 0 0 0 0 0 0 +2.432 -18.889 -1.67 0 0 0 0 0 0 0 +2.486 -18.84 -1.666 0 0 0 0 0 0 0 +2.544 -18.822 -1.665 0 0 0 0 0 0 0 +2.6 -18.791 -1.663 0 0 0 0 0 0 0 +2.659 -18.788 -1.664 0 0 0 0 0 0 0 +2.687 -18.77 -1.662 0 0 0 0 0 0 0 +2.744 -18.75 -1.661 0 0 0 0 0 0 0 +2.802 -18.733 -1.66 0 0 0 0 0 0 0 +2.86 -18.719 -1.66 0 0 0 0 0 0 0 +2.916 -18.696 -1.658 0 0 0 0 0 0 0 +2.976 -18.69 -1.659 0 0 0 0 0 0 0 +3.005 -18.688 -1.659 0 0 0 0 0 0 0 +3.062 -18.664 -1.658 0 0 0 0 0 0 0 +3.116 -18.629 -1.655 0 0 0 0 0 0 0 +3.171 -18.6 -1.653 0 0 0 0 0 0 0 +3.229 -18.586 -1.653 0 0 0 0 0 0 0 +3.28 -18.534 -1.649 0 0 0 0 0 0 0 +3.34 -18.534 -1.65 0 0 0 0 0 0 0 +3.391 -18.482 -1.645 0 0 0 0 0 0 0 +3.419 -18.471 -1.645 0 0 0 0 0 0 0 +3.466 -18.401 -1.639 0 0 0 0 0 0 0 +3.518 -18.365 -1.636 0 0 0 0 0 0 0 +3.575 -18.348 -1.636 0 0 0 0 0 0 0 +3.616 -18.253 -1.627 0 0 0 0 0 0 0 +3.656 -18.155 -1.619 0 0 0 0 0 0 0 +1.326 -6.509 -0.452 0 0 0 0 0 0 0 +3.707 -18.115 -1.616 0 0 0 0 0 0 0 +1.344 -6.495 -0.451 0 0 0 0 0 0 0 +1.36 -6.472 -0.449 0 0 0 0 0 0 0 +1.357 -6.358 -0.438 0 0 0 0 0 0 0 +1.388 -6.405 -0.443 0 0 0 0 0 0 0 +1.383 -6.29 -0.432 0 0 0 0 0 0 0 +1.426 -6.388 -0.443 0 0 0 0 0 0 0 +1.429 -6.355 -0.439 0 0 0 0 0 0 0 +1.456 -6.377 -0.442 0 0 0 0 0 0 0 +1.487 -6.421 -0.447 0 0 0 0 0 0 0 +1.513 -6.44 -0.449 0 0 0 0 0 0 0 +1.538 -6.454 -0.451 0 0 0 0 0 0 0 +1.568 -6.492 -0.456 0 0 0 0 0 0 0 +4.311 -17.302 -1.551 0 0 0 0 0 0 0 +4.359 -17.261 -1.548 0 0 0 0 0 0 0 +4.38 -17.118 -1.535 0 0 0 0 0 0 0 +4.415 -17.033 -1.528 0 0 0 0 0 0 0 +4.352 -16.581 -1.484 0 0 0 0 0 0 0 +4.432 -16.669 -1.494 0 0 0 0 0 0 0 +4.454 -16.543 -1.483 0 0 0 0 0 0 0 +4.489 -16.569 -1.486 0 0 0 0 0 0 0 +4.46 -16.263 -1.456 0 0 0 0 0 0 0 +4.514 -16.259 -1.457 0 0 0 0 0 0 0 +4.488 -15.972 -1.429 0 0 0 0 0 0 0 +4.594 -16.152 -1.449 0 0 0 0 0 0 0 +4.622 -16.061 -1.441 0 0 0 0 0 0 0 +4.646 -15.954 -1.432 0 0 0 0 0 0 0 +4.647 -15.867 -1.424 0 0 0 0 0 0 0 +4.696 -15.848 -1.423 0 0 0 0 0 0 0 +4.652 -15.521 -1.391 0 0 0 0 0 0 0 +4.725 -15.586 -1.399 0 0 0 0 0 0 0 +4.741 -15.467 -1.389 0 0 0 0 0 0 0 +4.769 -15.383 -1.382 0 0 0 0 0 0 0 +4.859 -15.501 -1.395 0 0 0 0 0 0 0 +4.9 -15.547 -1.401 0 0 0 0 0 0 0 +4.921 -15.446 -1.392 0 0 0 0 0 0 0 +4.935 -15.322 -1.381 0 0 0 0 0 0 0 +4.945 -15.191 -1.369 0 0 0 0 0 0 0 +4.993 -15.176 -1.369 0 0 0 0 0 0 0 +5.049 -15.186 -1.372 0 0 0 0 0 0 0 +5.11 -15.208 -1.376 0 0 0 0 0 0 0 +5.125 -15.176 -1.373 0 0 0 0 0 0 0 +5.198 -15.233 -1.381 0 0 0 0 0 0 0 +5.26 -15.256 -1.385 0 0 0 0 0 0 0 +5.345 -15.346 -1.396 0 0 0 0 0 0 0 +3.683 -10.492 -0.892 0 0 0 0 0 0 0 +3.722 -10.499 -0.894 0 0 0 0 0 0 0 +3.738 -10.44 -0.889 0 0 0 0 0 0 0 +3.764 -10.459 -0.891 0 0 0 0 0 0 0 +3.801 -10.46 -0.893 0 0 0 0 0 0 0 +5.592 -15.203 -1.391 0 0 0 0 0 0 0 +5.651 -15.217 -1.394 0 0 0 0 0 0 0 +5.695 -15.188 -1.393 0 0 0 0 0 0 0 +5.739 -15.161 -1.392 0 0 0 0 0 0 0 +5.782 -15.13 -1.391 0 0 0 0 0 0 0 +5.814 -15.143 -1.393 0 0 0 0 0 0 0 +5.173 -13.357 -1.207 0 0 0 0 0 0 0 +5.218 -13.348 -1.207 0 0 0 0 0 0 0 +5.258 -13.328 -1.207 0 0 0 0 0 0 0 +5.298 -13.306 -1.206 0 0 0 0 0 0 0 +5.338 -13.286 -1.206 0 0 0 0 0 0 0 +5.367 -13.237 -1.203 0 0 0 0 0 0 0 +5.383 -13.216 -1.201 0 0 0 0 0 0 0 +5.412 -13.17 -1.198 0 0 0 0 0 0 0 +5.479 -13.099 -1.194 0 0 0 0 0 0 0 +5.522 -13.085 -1.195 0 0 0 0 0 0 0 +5.556 -13.051 -1.193 0 0 0 0 0 0 0 +5.597 -13.034 -1.193 0 0 0 0 0 0 0 +5.623 -13.038 -1.194 0 0 0 0 0 0 0 +5.649 -12.985 -1.191 0 0 0 0 0 0 0 +5.693 -12.975 -1.191 0 0 0 0 0 0 0 +5.749 -12.991 -1.195 0 0 0 0 0 0 0 +5.774 -12.939 -1.191 0 0 0 0 0 0 0 +5.787 -12.859 -1.185 0 0 0 0 0 0 0 +5.877 -12.949 -1.197 0 0 0 0 0 0 0 +5.854 -12.846 -1.186 0 0 0 0 0 0 0 +5.804 -12.632 -1.165 0 0 0 0 0 0 0 +5.818 -12.558 -1.159 0 0 0 0 0 0 0 +5.903 -12.637 -1.17 0 0 0 0 0 0 0 +5.965 -12.665 -1.175 0 0 0 0 0 0 0 +6.048 -12.738 -1.185 0 0 0 0 0 0 0 +6.102 -12.748 -1.188 0 0 0 0 0 0 0 +6.175 -12.847 -1.2 0 0 0 0 0 0 0 +6.062 -12.513 -1.165 0 0 0 0 0 0 0 +6.021 -12.329 -1.147 0 0 0 0 0 0 0 +6.206 -12.607 -1.18 0 0 0 0 0 0 0 +6.242 -12.58 -1.179 0 0 0 0 0 0 0 +6.514 -13.024 -1.23 0 0 0 0 0 0 0 +6.266 -12.432 -1.167 0 0 0 0 0 0 0 +6.168 -12.192 -1.142 0 0 0 0 0 0 0 +6.253 -12.263 -1.152 0 0 0 0 0 0 0 +6.263 -12.188 -1.146 0 0 0 0 0 0 0 +6.304 -12.174 -1.146 0 0 0 0 0 0 0 +6.373 -12.212 -1.153 0 0 0 0 0 0 0 +6.486 -12.334 -1.169 0 0 0 0 0 0 0 +6.507 -12.281 -1.165 0 0 0 0 0 0 0 +6.506 -12.232 -1.161 0 0 0 0 0 0 0 +6.505 -12.138 -1.152 0 0 0 0 0 0 0 +6.491 -12.023 -1.142 0 0 0 0 0 0 0 +6.667 -12.254 -1.17 0 0 0 0 0 0 0 +6.665 -12.159 -1.162 0 0 0 0 0 0 0 +6.573 -11.903 -1.135 0 0 0 0 0 0 0 +6.58 -11.829 -1.129 0 0 0 0 0 0 0 +6.582 -11.789 -1.126 0 0 0 0 0 0 0 +6.696 -11.905 -1.141 0 0 0 0 0 0 0 +6.687 -11.803 -1.132 0 0 0 0 0 0 0 +6.686 -11.714 -1.125 0 0 0 0 0 0 0 +6.738 -11.721 -1.128 0 0 0 0 0 0 0 +6.791 -11.727 -1.131 0 0 0 0 0 0 0 +6.917 -11.857 -1.148 0 0 0 0 0 0 0 +6.877 -11.747 -1.137 0 0 0 0 0 0 0 +6.877 -11.663 -1.13 0 0 0 0 0 0 0 +6.937 -11.681 -1.134 0 0 0 0 0 0 0 +6.978 -11.666 -1.135 0 0 0 0 0 0 0 +6.963 -11.559 -1.125 0 0 0 0 0 0 0 +6.87 -11.324 -1.101 0 0 0 0 0 0 0 +7.035 -11.515 -1.125 0 0 0 0 0 0 0 +7.074 -11.538 -1.129 0 0 0 0 0 0 0 +7.102 -11.502 -1.127 0 0 0 0 0 0 0 +7.079 -11.385 -1.117 0 0 0 0 0 0 0 +7.117 -11.366 -1.117 0 0 0 0 0 0 0 +7.162 -11.359 -1.119 0 0 0 0 0 0 0 +7.185 -11.316 -1.116 0 0 0 0 0 0 0 +7.238 -11.32 -1.119 0 0 0 0 0 0 0 +7.688 -11.98 -1.198 0 0 0 0 0 0 0 +7.316 -11.324 -1.124 0 0 0 0 0 0 0 +7.396 -11.37 -1.132 0 0 0 0 0 0 0 +7.461 -11.391 -1.137 0 0 0 0 0 0 0 +7.416 -11.245 -1.123 0 0 0 0 0 0 0 +7.521 -11.326 -1.135 0 0 0 0 0 0 0 +7.395 -11.063 -1.107 0 0 0 0 0 0 0 +7.452 -11.109 -1.114 0 0 0 0 0 0 0 +7.449 -11.029 -1.107 0 0 0 0 0 0 0 +7.503 -11.035 -1.11 0 0 0 0 0 0 0 +7.511 -10.972 -1.106 0 0 0 0 0 0 0 +7.54 -10.941 -1.105 0 0 0 0 0 0 0 +7.568 -10.909 -1.104 0 0 0 0 0 0 0 +7.621 -10.911 -1.107 0 0 0 0 0 0 0 +7.776 -11.094 -1.13 0 0 0 0 0 0 0 +7.631 -10.816 -1.1 0 0 0 0 0 0 0 +7.65 -10.771 -1.097 0 0 0 0 0 0 0 +7.715 -10.791 -1.103 0 0 0 0 0 0 0 +7.746 -10.763 -1.102 0 0 0 0 0 0 0 +7.805 -10.773 -1.106 0 0 0 0 0 0 0 +7.782 -10.671 -1.097 0 0 0 0 0 0 0 +7.787 -10.643 -1.095 0 0 0 0 0 0 0 +7.8 -10.591 -1.092 0 0 0 0 0 0 0 +7.98 -10.763 -1.116 0 0 0 0 0 0 0 +8.006 -10.728 -1.115 0 0 0 0 0 0 0 +8.023 -10.681 -1.112 0 0 0 0 0 0 0 +7.947 -10.511 -1.094 0 0 0 0 0 0 0 +7.968 -10.47 -1.092 0 0 0 0 0 0 0 +7.997 -10.474 -1.094 0 0 0 0 0 0 0 +7.957 -10.354 -1.082 0 0 0 0 0 0 0 +8.059 -10.418 -1.093 0 0 0 0 0 0 0 +7.975 -10.244 -1.075 0 0 0 0 0 0 0 +8.027 -10.244 -1.078 0 0 0 0 0 0 0 +8.106 -10.278 -1.085 0 0 0 0 0 0 0 +8.086 -10.187 -1.077 0 0 0 0 0 0 0 +8.143 -10.226 -1.084 0 0 0 0 0 0 0 +8.218 -10.253 -1.09 0 0 0 0 0 0 0 +8.248 -10.225 -1.09 0 0 0 0 0 0 0 +8.284 -10.204 -1.091 0 0 0 0 0 0 0 +8.206 -9.98 -1.069 0 0 0 0 0 0 0 +8.348 -10.087 -1.086 0 0 0 0 0 0 0 +8.374 -10.053 -1.085 0 0 0 0 0 0 0 +8.393 -10.045 -1.085 0 0 0 0 0 0 0 +8.4 -9.99 -1.082 0 0 0 0 0 0 0 +8.464 -10.001 -1.087 0 0 0 0 0 0 0 +8.478 -9.955 -1.084 0 0 0 0 0 0 0 +8.467 -9.878 -1.078 0 0 0 0 0 0 0 +8.537 -9.897 -1.083 0 0 0 0 0 0 0 +8.592 -9.897 -1.087 0 0 0 0 0 0 0 +8.488 -9.747 -1.069 0 0 0 0 0 0 0 +8.564 -9.773 -1.076 0 0 0 0 0 0 0 +8.891 -10.079 -1.12 0 0 0 0 0 0 0 +8.612 -9.704 -1.074 0 0 0 0 0 0 0 +8.707 -9.748 -1.083 0 0 0 0 0 0 0 +8.617 -9.587 -1.066 0 0 0 0 0 0 0 +8.807 -9.706 -1.087 0 0 0 0 0 0 0 +8.665 -9.49 -1.062 0 0 0 0 0 0 0 +8.903 -9.688 -1.092 0 0 0 0 0 0 0 +8.87 -9.591 -1.083 0 0 0 0 0 0 0 +8.954 -9.622 -1.091 0 0 0 0 0 0 0 +9.016 -9.627 -1.095 0 0 0 0 0 0 0 +9.061 -9.645 -1.1 0 0 0 0 0 0 0 +9.402 -9.944 -1.144 0 0 0 0 0 0 0 +9.805 -10.303 -1.197 0 0 0 0 0 0 0 +8.829 -9.223 -1.054 0 0 0 0 0 0 0 +8.949 -9.29 -1.067 0 0 0 0 0 0 0 +9.068 -9.354 -1.079 0 0 0 0 0 0 0 +9.113 -9.341 -1.082 0 0 0 0 0 0 0 +8.977 -9.174 -1.06 0 0 0 0 0 0 0 +9.154 -9.295 -1.081 0 0 0 0 0 0 0 +9.522 -9.607 -1.128 0 0 0 0 0 0 0 +9.521 -9.546 -1.124 0 0 0 0 0 0 0 +9.357 -9.324 -1.097 0 0 0 0 0 0 0 +9.614 -9.519 -1.129 0 0 0 0 0 0 0 +9.167 -9.021 -1.063 0 0 0 0 0 0 0 +9.618 -9.405 -1.121 0 0 0 0 0 0 0 +9.636 -9.392 -1.121 0 0 0 0 0 0 0 +9.552 -9.253 -1.106 0 0 0 0 0 0 0 +9.675 -9.312 -1.119 0 0 0 0 0 0 0 +9.697 -9.275 -1.118 0 0 0 0 0 0 0 +9.703 -9.222 -1.115 0 0 0 0 0 0 0 +9.711 -9.173 -1.112 0 0 0 0 0 0 0 +9.723 -9.126 -1.109 0 0 0 0 0 0 0 +9.65 -9.029 -1.098 0 0 0 0 0 0 0 +9.23 -8.584 -1.038 0 0 0 0 0 0 0 +9.738 -8.998 -1.102 0 0 0 0 0 0 0 +9.755 -8.957 -1.101 0 0 0 0 0 0 0 +9.758 -8.903 -1.097 0 0 0 0 0 0 0 +9.752 -8.842 -1.093 0 0 0 0 0 0 0 +9.716 -8.754 -1.084 0 0 0 0 0 0 0 +9.246 -8.306 -1.021 0 0 0 0 0 0 0 +9.236 -8.245 -1.016 0 0 0 0 0 0 0 +9.246 -8.202 -1.014 0 0 0 0 0 0 0 +9.278 -8.178 -1.014 0 0 0 0 0 0 0 +9.255 -8.107 -1.008 0 0 0 0 0 0 0 +9.287 -8.083 -1.009 0 0 0 0 0 0 0 +9.296 -8.066 -1.009 0 0 0 0 0 0 0 +9.322 -8.037 -1.009 0 0 0 0 0 0 0 +9.338 -7.999 -1.007 0 0 0 0 0 0 0 +9.358 -7.966 -1.007 0 0 0 0 0 0 0 +9.395 -7.947 -1.008 0 0 0 0 0 0 0 +9.413 -7.911 -1.007 0 0 0 0 0 0 0 +9.416 -7.864 -1.005 0 0 0 0 0 0 0 +9.455 -7.845 -1.006 0 0 0 0 0 0 0 +9.439 -7.808 -1.003 0 0 0 0 0 0 0 +9.491 -7.801 -1.006 0 0 0 0 0 0 0 +9.513 -7.768 -1.006 0 0 0 0 0 0 0 +9.537 -7.739 -1.006 0 0 0 0 0 0 0 +9.565 -7.711 -1.006 0 0 0 0 0 0 0 +9.578 -7.672 -1.005 0 0 0 0 0 0 0 +9.586 -7.63 -1.003 0 0 0 0 0 0 0 +9.59 -7.609 -1.002 0 0 0 0 0 0 0 +9.608 -7.573 -1.001 0 0 0 0 0 0 0 +9.636 -7.547 -1.002 0 0 0 0 0 0 0 +9.654 -7.512 -1.001 0 0 0 0 0 0 0 +9.704 -7.502 -1.004 0 0 0 0 0 0 0 +9.72 -7.465 -1.004 0 0 0 0 0 0 0 +9.735 -7.429 -1.003 0 0 0 0 0 0 0 +9.723 -7.395 -1 0 0 0 0 0 0 0 +9.722 -7.347 -0.997 0 0 0 0 0 0 0 +9.728 -7.303 -0.995 0 0 0 0 0 0 0 +9.781 -7.295 -0.998 0 0 0 0 0 0 0 +9.798 -7.26 -0.997 0 0 0 0 0 0 0 +9.838 -7.242 -1 0 0 0 0 0 0 0 +9.827 -7.186 -0.996 0 0 0 0 0 0 0 +9.842 -7.173 -0.996 0 0 0 0 0 0 0 +9.848 -7.131 -0.994 0 0 0 0 0 0 0 +9.894 -7.117 -0.997 0 0 0 0 0 0 0 +9.909 -7.08 -0.996 0 0 0 0 0 0 0 +9.929 -7.048 -0.996 0 0 0 0 0 0 0 +9.963 -7.025 -0.997 0 0 0 0 0 0 0 +9.966 -7.003 -0.996 0 0 0 0 0 0 0 +10.022 -6.996 -1 0 0 0 0 0 0 0 +10.047 -6.966 -1.001 0 0 0 0 0 0 0 +10.511 -7.238 -1.053 0 0 0 0 0 0 0 +10.555 -7.219 -1.056 0 0 0 0 0 0 0 +10.577 -7.186 -1.056 0 0 0 0 0 0 0 +10.6 -7.153 -1.056 0 0 0 0 0 0 0 +10.622 -7.119 -1.056 0 0 0 0 0 0 0 +10.635 -7.104 -1.056 0 0 0 0 0 0 0 +10.652 -7.067 -1.055 0 0 0 0 0 0 0 +10.666 -7.028 -1.054 0 0 0 0 0 0 0 +10.703 -7.004 -1.056 0 0 0 0 0 0 0 +10.708 -6.96 -1.054 0 0 0 0 0 0 0 +10.745 -6.936 -1.056 0 0 0 0 0 0 0 +10.757 -6.896 -1.055 0 0 0 0 0 0 0 +10.756 -6.871 -1.053 0 0 0 0 0 0 0 +10.786 -6.843 -1.054 0 0 0 0 0 0 0 +10.809 -6.81 -1.055 0 0 0 0 0 0 0 +10.824 -6.772 -1.054 0 0 0 0 0 0 0 +10.852 -6.742 -1.055 0 0 0 0 0 0 0 +10.861 -6.7 -1.053 0 0 0 0 0 0 0 +10.892 -6.672 -1.054 0 0 0 0 0 0 0 +10.906 -6.657 -1.055 0 0 0 0 0 0 0 +10.932 -6.626 -1.055 0 0 0 0 0 0 0 +10.954 -6.593 -1.056 0 0 0 0 0 0 0 +11.011 -6.58 -1.06 0 0 0 0 0 0 0 +11.052 -6.557 -1.062 0 0 0 0 0 0 0 +11.112 -6.546 -1.066 0 0 0 0 0 0 0 +11.162 -6.528 -1.07 0 0 0 0 0 0 0 +11.193 -6.522 -1.072 0 0 0 0 0 0 0 +11.258 -6.513 -1.077 0 0 0 0 0 0 0 +11.304 -6.492 -1.08 0 0 0 0 0 0 0 +11.349 -6.47 -1.083 0 0 0 0 0 0 0 +11.402 -6.453 -1.087 0 0 0 0 0 0 0 +11.461 -6.439 -1.091 0 0 0 0 0 0 0 +11.512 -6.42 -1.094 0 0 0 0 0 0 0 +11.555 -6.42 -1.098 0 0 0 0 0 0 0 +11.605 -6.4 -1.101 0 0 0 0 0 0 0 +11.655 -6.38 -1.105 0 0 0 0 0 0 0 +11.71 -6.362 -1.109 0 0 0 0 0 0 0 +11.775 -6.35 -1.114 0 0 0 0 0 0 0 +11.827 -6.33 -1.117 0 0 0 0 0 0 0 +11.894 -6.318 -1.123 0 0 0 0 0 0 0 +11.917 -6.306 -1.124 0 0 0 0 0 0 0 +12.106 -6.357 -1.143 0 0 0 0 0 0 0 +12.223 -6.369 -1.153 0 0 0 0 0 0 0 +8.749 -4.532 -0.768 0 0 0 0 0 0 0 +8.758 -4.502 -0.767 0 0 0 0 0 0 0 +8.763 -4.47 -0.766 0 0 0 0 0 0 0 +8.784 -4.446 -0.767 0 0 0 0 0 0 0 +12.513 -6.296 -1.176 0 0 0 0 0 0 0 +12.556 -6.268 -1.178 0 0 0 0 0 0 0 +12.614 -6.248 -1.182 0 0 0 0 0 0 0 +12.664 -6.224 -1.186 0 0 0 0 0 0 0 +12.707 -6.195 -1.188 0 0 0 0 0 0 0 +12.752 -6.167 -1.191 0 0 0 0 0 0 0 +12.769 -6.126 -1.191 0 0 0 0 0 0 0 +12.775 -6.104 -1.19 0 0 0 0 0 0 0 +12.785 -6.06 -1.189 0 0 0 0 0 0 0 +12.831 -6.032 -1.192 0 0 0 0 0 0 0 +12.885 -6.008 -1.196 0 0 0 0 0 0 0 +12.936 -5.983 -1.2 0 0 0 0 0 0 0 +12.994 -5.96 -1.204 0 0 0 0 0 0 0 +13.071 -5.945 -1.21 0 0 0 0 0 0 0 +13.126 -5.945 -1.215 0 0 0 0 0 0 0 +13.186 -5.923 -1.22 0 0 0 0 0 0 0 +13.254 -5.903 -1.225 0 0 0 0 0 0 0 +13.303 -5.875 -1.228 0 0 0 0 0 0 0 +13.378 -5.858 -1.234 0 0 0 0 0 0 0 +13.442 -5.836 -1.239 0 0 0 0 0 0 0 +13.517 -5.818 -1.245 0 0 0 0 0 0 0 +13.581 -5.82 -1.251 0 0 0 0 0 0 0 +13.634 -5.792 -1.255 0 0 0 0 0 0 0 +13.72 -5.777 -1.262 0 0 0 0 0 0 0 +13.724 -5.728 -1.26 0 0 0 0 0 0 0 +13.745 -5.687 -1.261 0 0 0 0 0 0 0 +13.782 -5.651 -1.263 0 0 0 0 0 0 0 +14.039 -5.705 -1.288 0 0 0 0 0 0 0 +14.042 -5.629 -1.286 0 0 0 0 0 0 0 +13.817 -5.489 -1.26 0 0 0 0 0 0 0 +14.068 -5.537 -1.285 0 0 0 0 0 0 0 +14.102 -5.499 -1.286 0 0 0 0 0 0 0 +14.071 -5.436 -1.281 0 0 0 0 0 0 0 +14.103 -5.398 -1.283 0 0 0 0 0 0 0 +14.355 -5.468 -1.309 0 0 0 0 0 0 0 +14.422 -5.442 -1.314 0 0 0 0 0 0 0 +14.503 -5.42 -1.32 0 0 0 0 0 0 0 +14.566 -5.391 -1.325 0 0 0 0 0 0 0 +14.624 -5.361 -1.33 0 0 0 0 0 0 0 +14.566 -5.288 -1.322 0 0 0 0 0 0 0 +13.91 -5.001 -1.252 0 0 0 0 0 0 0 +14.734 -5.27 -1.337 0 0 0 0 0 0 0 +14.84 -5.255 -1.346 0 0 0 0 0 0 0 +14.9 -5.223 -1.351 0 0 0 0 0 0 0 +14.954 -5.19 -1.355 0 0 0 0 0 0 0 +14.994 -5.151 -1.357 0 0 0 0 0 0 0 +15.078 -5.127 -1.364 0 0 0 0 0 0 0 +15.079 -5.074 -1.363 0 0 0 0 0 0 0 +14.355 -4.807 -1.287 0 0 0 0 0 0 0 +14.574 -4.829 -1.308 0 0 0 0 0 0 0 +15.204 -4.984 -1.371 0 0 0 0 0 0 0 +15.237 -4.941 -1.373 0 0 0 0 0 0 0 +15.269 -4.899 -1.375 0 0 0 0 0 0 0 +15.302 -4.856 -1.377 0 0 0 0 0 0 0 +15.227 -4.78 -1.367 0 0 0 0 0 0 0 +14.973 -4.675 -1.34 0 0 0 0 0 0 0 +14.865 -4.59 -1.328 0 0 0 0 0 0 0 +14.901 -4.55 -1.33 0 0 0 0 0 0 0 +15.348 -4.633 -1.374 0 0 0 0 0 0 0 +15.332 -4.576 -1.371 0 0 0 0 0 0 0 +15.438 -4.554 -1.381 0 0 0 0 0 0 0 +15.362 -4.48 -1.372 0 0 0 0 0 0 0 +15.419 -4.47 -1.377 0 0 0 0 0 0 0 +15.477 -4.434 -1.381 0 0 0 0 0 0 0 +15.491 -4.386 -1.381 0 0 0 0 0 0 0 +15.6 -4.364 -1.391 0 0 0 0 0 0 0 +15.558 -4.299 -1.385 0 0 0 0 0 0 0 +15.641 -4.269 -1.392 0 0 0 0 0 0 0 +15.704 -4.233 -1.397 0 0 0 0 0 0 0 +15.703 -4.207 -1.397 0 0 0 0 0 0 0 +15.789 -4.176 -1.404 0 0 0 0 0 0 0 +15.712 -4.103 -1.395 0 0 0 0 0 0 0 +15.79 -4.071 -1.401 0 0 0 0 0 0 0 +15.824 -4.026 -1.404 0 0 0 0 0 0 0 +15.862 -3.983 -1.406 0 0 0 0 0 0 0 +15.866 -3.931 -1.405 0 0 0 0 0 0 0 +15.875 -3.907 -1.406 0 0 0 0 0 0 0 +15.935 -3.869 -1.41 0 0 0 0 0 0 0 +15.97 -3.824 -1.413 0 0 0 0 0 0 0 +15.996 -3.777 -1.414 0 0 0 0 0 0 0 +16.017 -3.729 -1.415 0 0 0 0 0 0 0 +16.031 -3.679 -1.415 0 0 0 0 0 0 0 +16.06 -3.633 -1.417 0 0 0 0 0 0 0 +7.29 -1.627 -0.533 0 0 0 0 0 0 0 +7.275 -1.6 -0.531 0 0 0 0 0 0 0 +7.28 -1.577 -0.531 0 0 0 0 0 0 0 +7.277 -1.553 -0.531 0 0 0 0 0 0 0 +7.261 -1.526 -0.528 0 0 0 0 0 0 0 +7.261 -1.502 -0.528 0 0 0 0 0 0 0 +7.245 -1.475 -0.526 0 0 0 0 0 0 0 +7.249 -1.464 -0.526 0 0 0 0 0 0 0 +7.236 -1.438 -0.524 0 0 0 0 0 0 0 +7.231 -1.413 -0.523 0 0 0 0 0 0 0 +7.239 -1.391 -0.524 0 0 0 0 0 0 0 +7.257 -1.371 -0.525 0 0 0 0 0 0 0 +7.257 -1.347 -0.525 0 0 0 0 0 0 0 +7.265 -1.325 -0.525 0 0 0 0 0 0 0 +7.289 -1.318 -0.527 0 0 0 0 0 0 0 +7.309 -1.297 -0.529 0 0 0 0 0 0 0 +7.358 -1.282 -0.533 0 0 0 0 0 0 0 +7.384 -1.263 -0.535 0 0 0 0 0 0 0 +7.462 -1.252 -0.543 0 0 0 0 0 0 0 +7.448 -1.225 -0.541 0 0 0 0 0 0 0 +7.456 -1.215 -0.542 0 0 0 0 0 0 0 +7.452 -1.19 -0.541 0 0 0 0 0 0 0 +7.462 -1.167 -0.541 0 0 0 0 0 0 0 +7.477 -1.146 -0.543 0 0 0 0 0 0 0 +7.493 -1.124 -0.544 0 0 0 0 0 0 0 +7.496 -1.1 -0.544 0 0 0 0 0 0 0 +7.537 -1.082 -0.548 0 0 0 0 0 0 0 +13.774 -1.912 -1.166 0 0 0 0 0 0 0 +16.684 -2.283 -1.454 0 0 0 0 0 0 0 +16.701 -2.232 -1.455 0 0 0 0 0 0 0 +16.74 -2.184 -1.458 0 0 0 0 0 0 0 +16.762 -2.133 -1.46 0 0 0 0 0 0 0 +16.785 -2.083 -1.461 0 0 0 0 0 0 0 +16.799 -2.031 -1.462 0 0 0 0 0 0 0 +16.809 -1.978 -1.462 0 0 0 0 0 0 0 +16.822 -1.953 -1.463 0 0 0 0 0 0 0 +16.83 -1.901 -1.463 0 0 0 0 0 0 0 +16.832 -1.847 -1.463 0 0 0 0 0 0 0 +16.842 -1.795 -1.463 0 0 0 0 0 0 0 +16.859 -1.743 -1.465 0 0 0 0 0 0 0 +16.867 -1.69 -1.465 0 0 0 0 0 0 0 +16.888 -1.639 -1.466 0 0 0 0 0 0 0 +11.082 -1.067 -0.893 0 0 0 0 0 0 0 +11.089 -1.032 -0.894 0 0 0 0 0 0 0 +16.902 -1.506 -1.467 0 0 0 0 0 0 0 +16.879 -1.451 -1.464 0 0 0 0 0 0 0 +16.832 -1.394 -1.459 0 0 0 0 0 0 0 +16.939 -1.349 -1.469 0 0 0 0 0 0 0 +16.963 -1.297 -1.471 0 0 0 0 0 0 0 +16.934 -1.268 -1.468 0 0 0 0 0 0 0 +16.957 -1.216 -1.47 0 0 0 0 0 0 0 +11.532 -0.799 -0.935 0 0 0 0 0 0 0 +17.008 -1.112 -1.474 0 0 0 0 0 0 0 +17.014 -1.059 -1.474 0 0 0 0 0 0 0 +16.985 -1.004 -1.471 0 0 0 0 0 0 0 +17.044 -0.954 -1.477 0 0 0 0 0 0 0 +16.976 -0.923 -1.47 0 0 0 0 0 0 0 +16.963 -0.869 -1.468 0 0 0 0 0 0 0 +17.055 -0.82 -1.477 0 0 0 0 0 0 0 +17.081 -0.767 -1.479 0 0 0 0 0 0 0 +17.086 -0.714 -1.479 0 0 0 0 0 0 0 +17.102 -0.661 -1.481 0 0 0 0 0 0 0 +17.124 -0.607 -1.483 0 0 0 0 0 0 0 +17.144 -0.581 -1.485 0 0 0 0 0 0 0 +17.158 -0.528 -1.486 0 0 0 0 0 0 0 +17.168 -0.474 -1.487 0 0 0 0 0 0 0 +17.187 -0.42 -1.488 0 0 0 0 0 0 0 +17.214 -0.367 -1.491 0 0 0 0 0 0 0 +17.241 -0.313 -1.494 0 0 0 0 0 0 0 +17.254 -0.259 -1.495 0 0 0 0 0 0 0 +17.27 -0.232 -1.496 0 0 0 0 0 0 0 +13.025 -0.141 -1.079 0 0 0 0 0 0 0 +17.206 -0.124 -1.49 0 0 0 0 0 0 0 +17.16 -0.069 -1.485 0 0 0 0 0 0 0 +17.226 -0.015 -1.492 0 0 0 0 0 0 0 +13.317 0.015 -1.19 0 0 0 0 0 0 0 +13.333 0.057 -1.191 0 0 0 0 0 0 0 +16.394 0.116 -1.511 0 0 0 0 0 0 0 +16.485 0.168 -1.52 0 0 0 0 0 0 0 +13.576 0.164 -1.217 0 0 0 0 0 0 0 +16.502 0.246 -1.522 0 0 0 0 0 0 0 +16.491 0.298 -1.521 0 0 0 0 0 0 0 +16.575 0.351 -1.53 0 0 0 0 0 0 0 +13.685 0.337 -1.229 0 0 0 0 0 0 0 +13.723 0.381 -1.233 0 0 0 0 0 0 0 +13.821 0.427 -1.243 0 0 0 0 0 0 0 +13.725 0.446 -1.233 0 0 0 0 0 0 0 +13.722 0.489 -1.233 0 0 0 0 0 0 0 +14.036 0.588 -1.266 0 0 0 0 0 0 0 +14.12 0.636 -1.275 0 0 0 0 0 0 0 +14.118 0.68 -1.275 0 0 0 0 0 0 0 +14.12 0.725 -1.275 0 0 0 0 0 0 0 +16.719 0.88 -1.547 0 0 0 0 0 0 0 +16.71 0.932 -1.547 0 0 0 0 0 0 0 +14.39 0.852 -1.304 0 0 0 0 0 0 0 +16.706 1.037 -1.547 0 0 0 0 0 0 0 +14.531 0.951 -1.32 0 0 0 0 0 0 0 +14.897 1.022 -1.358 0 0 0 0 0 0 0 +16.686 1.194 -1.546 0 0 0 0 0 0 0 +15.567 1.14 -1.429 0 0 0 0 0 0 0 +16.662 1.271 -1.544 0 0 0 0 0 0 0 +16.61 1.32 -1.539 0 0 0 0 0 0 0 +16.679 1.378 -1.547 0 0 0 0 0 0 0 +16.506 1.416 -1.529 0 0 0 0 0 0 0 +14.554 1.298 -1.325 0 0 0 0 0 0 0 +16.673 1.562 -1.548 0 0 0 0 0 0 0 +16.678 1.615 -1.549 0 0 0 0 0 0 0 +15.507 1.553 -1.426 0 0 0 0 0 0 0 +15.557 1.607 -1.432 0 0 0 0 0 0 0 +16.646 1.771 -1.547 0 0 0 0 0 0 0 +16.649 1.824 -1.548 0 0 0 0 0 0 0 +16.625 1.874 -1.546 0 0 0 0 0 0 0 +16.634 1.902 -1.547 0 0 0 0 0 0 0 +16.555 1.945 -1.54 0 0 0 0 0 0 0 +16.548 1.997 -1.54 0 0 0 0 0 0 0 +16.459 2.039 -1.531 0 0 0 0 0 0 0 +16.388 2.083 -1.524 0 0 0 0 0 0 0 +16.286 2.122 -1.514 0 0 0 0 0 0 0 +16.392 2.188 -1.526 0 0 0 0 0 0 0 +16.497 2.228 -1.537 0 0 0 0 0 0 0 +16.476 2.278 -1.536 0 0 0 0 0 0 0 +16.512 2.336 -1.54 0 0 0 0 0 0 0 +16.463 2.382 -1.536 0 0 0 0 0 0 0 +16.499 2.44 -1.541 0 0 0 0 0 0 0 +16.481 2.49 -1.54 0 0 0 0 0 0 0 +16.503 2.547 -1.543 0 0 0 0 0 0 0 +16.538 2.579 -1.547 0 0 0 0 0 0 0 +16.556 2.635 -1.55 0 0 0 0 0 0 0 +16.532 2.684 -1.548 0 0 0 0 0 0 0 +16.59 2.747 -1.555 0 0 0 0 0 0 0 +16.562 2.796 -1.553 0 0 0 0 0 0 0 +16.543 2.846 -1.552 0 0 0 0 0 0 0 +16.536 2.898 -1.552 0 0 0 0 0 0 0 +16.601 2.964 -1.56 0 0 0 0 0 0 0 +16.628 2.995 -1.563 0 0 0 0 0 0 0 +16.702 3.063 -1.572 0 0 0 0 0 0 0 +16.783 3.132 -1.582 0 0 0 0 0 0 0 +16.867 3.202 -1.592 0 0 0 0 0 0 0 +16.935 3.27 -1.6 0 0 0 0 0 0 0 +17.041 3.346 -1.612 0 0 0 0 0 0 0 +17.058 3.405 -1.615 0 0 0 0 0 0 0 +17.115 3.444 -1.622 0 0 0 0 0 0 0 +17.139 3.505 -1.626 0 0 0 0 0 0 0 +17.276 3.59 -1.641 0 0 0 0 0 0 0 +17.242 3.639 -1.639 0 0 0 0 0 0 0 +17.232 3.694 -1.639 0 0 0 0 0 0 0 +17.246 3.753 -1.642 0 0 0 0 0 0 0 +17.253 3.812 -1.644 0 0 0 0 0 0 0 +17.263 3.842 -1.646 0 0 0 0 0 0 0 +17.367 3.922 -1.658 0 0 0 0 0 0 0 +17.345 3.975 -1.657 0 0 0 0 0 0 0 +17.34 4.031 -1.658 0 0 0 0 0 0 0 +17.337 4.088 -1.659 0 0 0 0 0 0 0 +17.303 4.137 -1.657 0 0 0 0 0 0 0 +17.295 4.193 -1.657 0 0 0 0 0 0 0 +17.297 4.222 -1.658 0 0 0 0 0 0 0 +17.285 4.277 -1.658 0 0 0 0 0 0 0 +17.254 4.327 -1.656 0 0 0 0 0 0 0 +17.256 4.385 -1.658 0 0 0 0 0 0 0 +17.231 4.436 -1.657 0 0 0 0 0 0 0 +17.222 4.492 -1.657 0 0 0 0 0 0 0 +17.212 4.547 -1.658 0 0 0 0 0 0 0 +17.209 4.575 -1.658 0 0 0 0 0 0 0 +17.204 4.631 -1.659 0 0 0 0 0 0 0 +17.174 4.681 -1.658 0 0 0 0 0 0 0 +17.172 4.739 -1.659 0 0 0 0 0 0 0 +17.054 4.764 -1.648 0 0 0 0 0 0 0 +16.583 4.689 -1.599 0 0 0 0 0 0 0 +16.553 4.737 -1.597 0 0 0 0 0 0 0 +16.546 4.763 -1.597 0 0 0 0 0 0 0 +16.62 4.841 -1.607 0 0 0 0 0 0 0 +17.122 5.045 -1.663 0 0 0 0 0 0 0 +17.122 5.103 -1.665 0 0 0 0 0 0 0 +17.088 5.152 -1.663 0 0 0 0 0 0 0 +17.076 5.207 -1.663 0 0 0 0 0 0 0 +17.061 5.261 -1.663 0 0 0 0 0 0 0 +17.042 5.284 -1.662 0 0 0 0 0 0 0 +17.008 5.332 -1.66 0 0 0 0 0 0 0 +16.985 5.384 -1.66 0 0 0 0 0 0 0 +16.963 5.435 -1.659 0 0 0 0 0 0 0 +16.938 5.486 -1.658 0 0 0 0 0 0 0 +16.923 5.54 -1.658 0 0 0 0 0 0 0 +16.896 5.59 -1.657 0 0 0 0 0 0 0 +16.885 5.616 -1.657 0 0 0 0 0 0 0 +16.858 5.666 -1.656 0 0 0 0 0 0 0 +16.838 5.718 -1.656 0 0 0 0 0 0 0 +16.82 5.771 -1.656 0 0 0 0 0 0 0 +16.794 5.821 -1.655 0 0 0 0 0 0 0 +16.774 5.873 -1.655 0 0 0 0 0 0 0 +16.759 5.927 -1.655 0 0 0 0 0 0 0 +16.741 5.95 -1.654 0 0 0 0 0 0 0 +16.727 6.005 -1.655 0 0 0 0 0 0 0 +16.703 6.055 -1.654 0 0 0 0 0 0 0 +16.687 6.109 -1.655 0 0 0 0 0 0 0 +16.659 6.158 -1.654 0 0 0 0 0 0 0 +16.634 6.208 -1.653 0 0 0 0 0 0 0 +16.584 6.249 -1.65 0 0 0 0 0 0 0 +15.942 6.037 -1.579 0 0 0 0 0 0 0 +15.908 6.081 -1.577 0 0 0 0 0 0 0 +15.883 6.129 -1.577 0 0 0 0 0 0 0 +15.884 6.187 -1.579 0 0 0 0 0 0 0 +16.465 6.472 -1.646 0 0 0 0 0 0 0 +16.483 6.539 -1.651 0 0 0 0 0 0 0 +16.457 6.588 -1.65 0 0 0 0 0 0 0 +16.447 6.614 -1.65 0 0 0 0 0 0 0 +16.441 6.672 -1.652 0 0 0 0 0 0 0 +16.442 6.732 -1.654 0 0 0 0 0 0 0 +16.42 6.784 -1.654 0 0 0 0 0 0 0 +16.388 6.831 -1.653 0 0 0 0 0 0 0 +16.385 6.89 -1.655 0 0 0 0 0 0 0 +16.363 6.941 -1.655 0 0 0 0 0 0 0 +16.365 6.973 -1.656 0 0 0 0 0 0 0 +16.352 7.028 -1.657 0 0 0 0 0 0 0 +16.332 7.08 -1.658 0 0 0 0 0 0 0 +16.317 7.134 -1.659 0 0 0 0 0 0 0 +16.309 7.192 -1.66 0 0 0 0 0 0 0 +16.295 7.247 -1.661 0 0 0 0 0 0 0 +16.285 7.304 -1.663 0 0 0 0 0 0 0 +16.273 7.36 -1.664 0 0 0 0 0 0 0 +16.265 7.387 -1.664 0 0 0 0 0 0 0 +16.244 7.439 -1.665 0 0 0 0 0 0 0 +16.233 7.496 -1.666 0 0 0 0 0 0 0 +16.209 7.547 -1.666 0 0 0 0 0 0 0 +16.2 7.605 -1.668 0 0 0 0 0 0 0 +16.194 7.664 -1.67 0 0 0 0 0 0 0 +16.184 7.69 -1.67 0 0 0 0 0 0 0 +16.156 7.739 -1.67 0 0 0 0 0 0 0 +16.151 7.799 -1.672 0 0 0 0 0 0 0 +16.153 7.863 -1.675 0 0 0 0 0 0 0 +16.134 7.917 -1.676 0 0 0 0 0 0 0 +16.111 7.968 -1.676 0 0 0 0 0 0 0 +16.089 8.02 -1.676 0 0 0 0 0 0 0 +16.078 8.047 -1.676 0 0 0 0 0 0 0 +16.055 8.098 -1.677 0 0 0 0 0 0 0 +16.051 8.159 -1.679 0 0 0 0 0 0 0 +16.032 8.213 -1.68 0 0 0 0 0 0 0 +16.011 8.266 -1.681 0 0 0 0 0 0 0 +15.982 8.315 -1.68 0 0 0 0 0 0 0 +15.956 8.365 -1.68 0 0 0 0 0 0 0 +15.955 8.396 -1.682 0 0 0 0 0 0 0 +15.946 8.456 -1.684 0 0 0 0 0 0 0 +15.924 8.509 -1.684 0 0 0 0 0 0 0 +15.91 8.565 -1.686 0 0 0 0 0 0 0 +15.89 8.619 -1.687 0 0 0 0 0 0 0 +15.87 8.672 -1.687 0 0 0 0 0 0 0 +15.855 8.729 -1.689 0 0 0 0 0 0 0 +15.839 8.785 -1.69 0 0 0 0 0 0 0 +15.834 8.815 -1.691 0 0 0 0 0 0 0 +15.817 8.871 -1.693 0 0 0 0 0 0 0 +15.801 8.927 -1.694 0 0 0 0 0 0 0 +15.792 8.988 -1.696 0 0 0 0 0 0 0 +15.776 9.044 -1.698 0 0 0 0 0 0 0 +15.773 9.108 -1.701 0 0 0 0 0 0 0 +15.76 9.167 -1.703 0 0 0 0 0 0 0 +15.775 9.209 -1.706 0 0 0 0 0 0 0 +15.759 9.266 -1.708 0 0 0 0 0 0 0 +15.741 9.322 -1.709 0 0 0 0 0 0 0 +15.733 9.384 -1.712 0 0 0 0 0 0 0 +15.743 9.457 -1.717 0 0 0 0 0 0 0 +11.385 6.896 -1.189 0 0 0 0 0 0 0 +15.719 9.544 -1.719 0 0 0 0 0 0 0 +15.706 9.603 -1.721 0 0 0 0 0 0 0 +11.364 7.006 -1.193 0 0 0 0 0 0 0 +12.478 7.744 -1.333 0 0 0 0 0 0 0 +11.295 7.062 -1.19 0 0 0 0 0 0 0 +11.219 7.064 -1.183 0 0 0 0 0 0 0 +11.09 7.032 -1.17 0 0 0 0 0 0 0 +11.217 7.137 -1.187 0 0 0 0 0 0 0 +11.592 7.425 -1.237 0 0 0 0 0 0 0 +11.731 7.566 -1.257 0 0 0 0 0 0 0 +11.402 7.405 -1.219 0 0 0 0 0 0 0 +11.282 7.378 -1.207 0 0 0 0 0 0 0 +10.568 6.961 -1.121 0 0 0 0 0 0 0 +10.347 6.862 -1.096 0 0 0 0 0 0 0 +11.305 7.52 -1.217 0 0 0 0 0 0 0 +10.874 7.284 -1.166 0 0 0 0 0 0 0 +10.63 7.17 -1.138 0 0 0 0 0 0 0 +10.493 7.126 -1.124 0 0 0 0 0 0 0 +11.42 7.805 -1.243 0 0 0 0 0 0 0 +11.111 7.646 -1.208 0 0 0 0 0 0 0 +11.169 7.737 -1.218 0 0 0 0 0 0 0 +11.132 7.738 -1.215 0 0 0 0 0 0 0 +11.106 7.772 -1.215 0 0 0 0 0 0 0 +10.974 7.731 -1.201 0 0 0 0 0 0 0 +11.012 7.809 -1.209 0 0 0 0 0 0 0 +11.046 7.885 -1.216 0 0 0 0 0 0 0 +11.009 7.912 -1.215 0 0 0 0 0 0 0 +10.942 7.916 -1.209 0 0 0 0 0 0 0 +10.82 7.854 -1.195 0 0 0 0 0 0 0 +10.998 8.036 -1.221 0 0 0 0 0 0 0 +10.797 7.941 -1.199 0 0 0 0 0 0 0 +10.743 7.953 -1.195 0 0 0 0 0 0 0 +11.007 8.202 -1.232 0 0 0 0 0 0 0 +10.724 8.045 -1.199 0 0 0 0 0 0 0 +10.763 8.126 -1.207 0 0 0 0 0 0 0 +11.046 8.394 -1.248 0 0 0 0 0 0 0 +10.848 8.271 -1.224 0 0 0 0 0 0 0 +10.85 8.326 -1.227 0 0 0 0 0 0 0 +10.695 8.261 -1.21 0 0 0 0 0 0 0 +10.714 8.33 -1.216 0 0 0 0 0 0 0 +10.961 8.576 -1.252 0 0 0 0 0 0 0 +10.969 8.638 -1.257 0 0 0 0 0 0 0 +10.816 8.573 -1.24 0 0 0 0 0 0 0 +10.886 8.656 -1.251 0 0 0 0 0 0 0 +6.836 5.483 -0.714 0 0 0 0 0 0 0 +6.842 5.523 -0.718 0 0 0 0 0 0 0 +6.75 5.485 -0.708 0 0 0 0 0 0 0 +6.688 5.47 -0.702 0 0 0 0 0 0 0 +6.679 5.497 -0.703 0 0 0 0 0 0 0 +6.658 5.497 -0.701 0 0 0 0 0 0 0 +6.651 5.527 -0.702 0 0 0 0 0 0 0 +6.637 5.551 -0.703 0 0 0 0 0 0 0 +10.662 9.01 -1.257 0 0 0 0 0 0 0 +10.644 9.053 -1.258 0 0 0 0 0 0 0 +10.611 9.082 -1.258 0 0 0 0 0 0 0 +10.654 9.148 -1.266 0 0 0 0 0 0 0 +10.635 9.189 -1.267 0 0 0 0 0 0 0 +10.63 9.243 -1.27 0 0 0 0 0 0 0 +10.554 9.236 -1.264 0 0 0 0 0 0 0 +10.555 9.295 -1.268 0 0 0 0 0 0 0 +10.569 9.367 -1.274 0 0 0 0 0 0 0 +10.627 9.478 -1.286 0 0 0 0 0 0 0 +10.739 9.607 -1.304 0 0 0 0 0 0 0 +10.707 9.639 -1.303 0 0 0 0 0 0 0 +10.558 9.566 -1.287 0 0 0 0 0 0 0 +10.44 9.519 -1.274 0 0 0 0 0 0 0 +10.567 9.696 -1.297 0 0 0 0 0 0 0 +10.633 9.818 -1.31 0 0 0 0 0 0 0 +10.705 9.946 -1.325 0 0 0 0 0 0 0 +10.713 10.016 -1.33 0 0 0 0 0 0 0 +10.804 10.133 -1.346 0 0 0 0 0 0 0 +10.791 10.185 -1.349 0 0 0 0 0 0 0 +10.709 10.171 -1.341 0 0 0 0 0 0 0 +10.649 10.178 -1.337 0 0 0 0 0 0 0 +10.919 10.501 -1.381 0 0 0 0 0 0 0 +10.904 10.553 -1.384 0 0 0 0 0 0 0 +10.994 10.706 -1.401 0 0 0 0 0 0 0 +10.997 10.743 -1.404 0 0 0 0 0 0 0 +11.151 10.961 -1.432 0 0 0 0 0 0 0 +11.088 10.968 -1.428 0 0 0 0 0 0 0 +11.061 11.01 -1.429 0 0 0 0 0 0 0 +10.913 10.932 -1.412 0 0 0 0 0 0 0 +10.896 10.983 -1.415 0 0 0 0 0 0 0 +10.868 11.025 -1.416 0 0 0 0 0 0 0 +10.837 11.028 -1.414 0 0 0 0 0 0 0 +10.936 11.198 -1.433 0 0 0 0 0 0 0 +10.955 11.288 -1.442 0 0 0 0 0 0 0 +10.882 11.284 -1.436 0 0 0 0 0 0 0 +10.862 11.334 -1.438 0 0 0 0 0 0 0 +10.84 11.382 -1.44 0 0 0 0 0 0 0 +10.834 11.448 -1.445 0 0 0 0 0 0 0 +10.776 11.423 -1.439 0 0 0 0 0 0 0 +10.783 11.502 -1.445 0 0 0 0 0 0 0 +10.702 11.487 -1.438 0 0 0 0 0 0 0 +10.707 11.566 -1.445 0 0 0 0 0 0 0 +10.687 11.617 -1.447 0 0 0 0 0 0 0 +10.659 11.66 -1.449 0 0 0 0 0 0 0 +10.657 11.731 -1.454 0 0 0 0 0 0 0 +10.665 11.777 -1.458 0 0 0 0 0 0 0 +10.673 11.861 -1.465 0 0 0 0 0 0 0 +10.677 11.94 -1.472 0 0 0 0 0 0 0 +10.683 12.023 -1.479 0 0 0 0 0 0 0 +10.692 12.109 -1.486 0 0 0 0 0 0 0 +10.702 12.197 -1.493 0 0 0 0 0 0 0 +10.716 12.291 -1.502 0 0 0 0 0 0 0 +10.73 12.345 -1.507 0 0 0 0 0 0 0 +10.75 12.446 -1.516 0 0 0 0 0 0 0 +10.762 12.54 -1.525 0 0 0 0 0 0 0 +10.762 12.619 -1.531 0 0 0 0 0 0 0 +10.772 12.712 -1.539 0 0 0 0 0 0 0 +10.777 12.799 -1.546 0 0 0 0 0 0 0 +10.783 12.888 -1.554 0 0 0 0 0 0 0 +10.815 12.967 -1.562 0 0 0 0 0 0 0 +10.822 13.059 -1.57 0 0 0 0 0 0 0 +10.805 13.122 -1.574 0 0 0 0 0 0 0 +10.76 13.152 -1.573 0 0 0 0 0 0 0 +10.773 13.252 -1.582 0 0 0 0 0 0 0 +10.763 13.324 -1.588 0 0 0 0 0 0 0 +10.73 13.369 -1.589 0 0 0 0 0 0 0 +10.72 13.4 -1.591 0 0 0 0 0 0 0 +10.705 13.467 -1.595 0 0 0 0 0 0 0 +10.648 13.482 -1.593 0 0 0 0 0 0 0 +10.653 13.577 -1.601 0 0 0 0 0 0 0 +10.598 13.594 -1.599 0 0 0 0 0 0 0 +10.554 13.626 -1.599 0 0 0 0 0 0 0 +10.543 13.7 -1.604 0 0 0 0 0 0 0 +10.529 13.726 -1.605 0 0 0 0 0 0 0 +10.497 13.773 -1.607 0 0 0 0 0 0 0 +10.46 13.816 -1.608 0 0 0 0 0 0 0 +10.427 13.861 -1.61 0 0 0 0 0 0 0 +10.372 13.88 -1.608 0 0 0 0 0 0 0 +10.338 13.925 -1.61 0 0 0 0 0 0 0 +10.311 13.98 -1.613 0 0 0 0 0 0 0 +10.249 13.941 -1.606 0 0 0 0 0 0 0 +10.272 14.065 -1.618 0 0 0 0 0 0 0 +10.24 14.115 -1.62 0 0 0 0 0 0 0 +10.198 14.15 -1.62 0 0 0 0 0 0 0 +10.169 14.203 -1.623 0 0 0 0 0 0 0 +10.135 14.25 -1.625 0 0 0 0 0 0 0 +10.103 14.299 -1.627 0 0 0 0 0 0 0 +10.079 14.362 -1.631 0 0 0 0 0 0 0 +10.057 14.378 -1.631 0 0 0 0 0 0 0 +10.023 14.425 -1.633 0 0 0 0 0 0 0 +9.99 14.475 -1.635 0 0 0 0 0 0 0 +9.952 14.518 -1.637 0 0 0 0 0 0 0 +9.924 14.573 -1.64 0 0 0 0 0 0 0 +9.867 14.588 -1.638 0 0 0 0 0 0 0 +9.86 14.677 -1.645 0 0 0 0 0 0 0 +9.848 14.709 -1.647 0 0 0 0 0 0 0 +9.811 14.755 -1.649 0 0 0 0 0 0 0 +9.775 14.8 -1.651 0 0 0 0 0 0 0 +9.726 14.828 -1.651 0 0 0 0 0 0 0 +9.628 14.882 -1.65 0 0 0 0 0 0 0 +9.619 14.918 -1.652 0 0 0 0 0 0 0 +9.555 14.922 -1.649 0 0 0 0 0 0 0 +9.566 15.042 -1.66 0 0 0 0 0 0 0 +9.523 15.079 -1.661 0 0 0 0 0 0 0 +9.492 15.136 -1.665 0 0 0 0 0 0 0 +9.456 15.184 -1.667 0 0 0 0 0 0 0 +9.406 15.21 -1.666 0 0 0 0 0 0 0 +9.393 15.242 -1.668 0 0 0 0 0 0 0 +9.344 15.27 -1.668 0 0 0 0 0 0 0 +9.297 15.301 -1.668 0 0 0 0 0 0 0 +9.261 15.35 -1.671 0 0 0 0 0 0 0 +9.225 15.4 -1.673 0 0 0 0 0 0 0 +9.178 15.43 -1.674 0 0 0 0 0 0 0 +9.135 15.469 -1.675 0 0 0 0 0 0 0 +9.082 15.489 -1.674 0 0 0 0 0 0 0 +9.079 15.54 -1.678 0 0 0 0 0 0 0 +9.015 15.542 -1.675 0 0 0 0 0 0 0 +9.009 15.645 -1.684 0 0 0 0 0 0 0 +8.95 15.657 -1.682 0 0 0 0 0 0 0 +8.921 15.72 -1.686 0 0 0 0 0 0 0 +8.875 15.755 -1.687 0 0 0 0 0 0 0 +8.822 15.776 -1.686 0 0 0 0 0 0 0 +8.799 15.793 -1.687 0 0 0 0 0 0 0 +8.755 15.831 -1.688 0 0 0 0 0 0 0 +8.687 15.825 -1.684 0 0 0 0 0 0 0 +8.654 15.882 -1.688 0 0 0 0 0 0 0 +8.613 15.927 -1.69 0 0 0 0 0 0 0 +8.571 15.968 -1.691 0 0 0 0 0 0 0 +8.529 16.011 -1.693 0 0 0 0 0 0 0 +8.479 16.037 -1.693 0 0 0 0 0 0 0 +8.464 16.07 -1.695 0 0 0 0 0 0 0 +8.423 16.116 -1.698 0 0 0 0 0 0 0 +8.385 16.165 -1.7 0 0 0 0 0 0 0 +8.34 16.204 -1.702 0 0 0 0 0 0 0 +8.295 16.24 -1.703 0 0 0 0 0 0 0 +8.252 16.282 -1.705 0 0 0 0 0 0 0 +8.22 16.283 -1.704 0 0 0 0 0 0 0 +8.194 16.358 -1.709 0 0 0 0 0 0 0 +8.136 16.372 -1.708 0 0 0 0 0 0 0 +8.103 16.435 -1.712 0 0 0 0 0 0 0 +8.068 16.494 -1.716 0 0 0 0 0 0 0 +8.018 16.523 -1.717 0 0 0 0 0 0 0 +7.982 16.582 -1.721 0 0 0 0 0 0 0 +7.931 16.609 -1.721 0 0 0 0 0 0 0 +7.912 16.635 -1.722 0 0 0 0 0 0 0 +7.86 16.662 -1.723 0 0 0 0 0 0 0 +7.811 16.692 -1.723 0 0 0 0 0 0 0 +7.765 16.731 -1.725 0 0 0 0 0 0 0 +7.721 16.773 -1.727 0 0 0 0 0 0 0 +7.674 16.81 -1.728 0 0 0 0 0 0 0 +7.613 16.816 -1.726 0 0 0 0 0 0 0 +7.601 16.861 -1.73 0 0 0 0 0 0 0 +7.514 16.808 -1.721 0 0 0 0 0 0 0 +7.425 16.752 -1.712 0 0 0 0 0 0 0 +7.295 16.598 -1.692 0 0 0 0 0 0 0 +7.309 16.772 -1.709 0 0 0 0 0 0 0 +7.334 16.976 -1.73 0 0 0 0 0 0 0 +7.316 17.079 -1.739 0 0 0 0 0 0 0 +7.311 17.144 -1.745 0 0 0 0 0 0 0 +7.315 17.302 -1.76 0 0 0 0 0 0 0 +7.331 17.492 -1.779 0 0 0 0 0 0 0 +7.352 17.697 -1.8 0 0 0 0 0 0 0 +7.37 17.898 -1.82 0 0 0 0 0 0 0 +7.387 18.102 -1.84 0 0 0 0 0 0 0 +7.404 18.307 -1.861 0 0 0 0 0 0 0 +7.452 18.507 -1.882 0 0 0 0 0 0 0 +7.421 18.598 -1.89 0 0 0 0 0 0 0 +7.371 18.644 -1.892 0 0 0 0 0 0 0 +7.323 18.693 -1.895 0 0 0 0 0 0 0 +7.277 18.749 -1.899 0 0 0 0 0 0 0 +7.215 18.764 -1.898 0 0 0 0 0 0 0 +7.153 18.778 -1.897 0 0 0 0 0 0 0 +7.117 18.772 -1.895 0 0 0 0 0 0 0 +7.057 18.793 -1.895 0 0 0 0 0 0 0 +6.997 18.811 -1.895 0 0 0 0 0 0 0 +6.938 18.833 -1.895 0 0 0 0 0 0 0 +6.876 18.847 -1.894 0 0 0 0 0 0 0 +6.801 18.828 -1.889 0 0 0 0 0 0 0 +6.716 18.776 -1.881 0 0 0 0 0 0 0 +6.658 18.801 -1.881 0 0 0 0 0 0 0 +6.627 18.805 -1.881 0 0 0 0 0 0 0 +6.57 18.832 -1.881 0 0 0 0 0 0 0 +6.501 18.826 -1.879 0 0 0 0 0 0 0 +6.438 18.835 -1.877 0 0 0 0 0 0 0 +6.37 18.827 -1.874 0 0 0 0 0 0 0 +6.303 18.824 -1.872 0 0 0 0 0 0 0 +6.23 18.804 -1.867 0 0 0 0 0 0 0 +6.192 18.788 -1.864 0 0 0 0 0 0 0 +6.126 18.784 -1.862 0 0 0 0 0 0 0 +6.065 18.8 -1.862 0 0 0 0 0 0 0 +5.998 18.794 -1.859 0 0 0 0 0 0 0 +5.936 18.803 -1.858 0 0 0 0 0 0 0 +5.873 18.808 -1.856 0 0 0 0 0 0 0 +5.813 18.823 -1.856 0 0 0 0 0 0 0 +5.777 18.811 -1.854 0 0 0 0 0 0 0 +5.715 18.82 -1.853 0 0 0 0 0 0 0 +5.65 18.82 -1.851 0 0 0 0 0 0 0 +5.587 18.823 -1.849 0 0 0 0 0 0 0 +5.524 18.829 -1.848 0 0 0 0 0 0 0 +5.46 18.831 -1.846 0 0 0 0 0 0 0 +5.397 18.835 -1.845 0 0 0 0 0 0 0 +5.367 18.839 -1.844 0 0 0 0 0 0 0 +5.309 18.862 -1.845 0 0 0 0 0 0 0 +5.261 18.919 -1.849 0 0 0 0 0 0 0 +5.194 18.908 -1.846 0 0 0 0 0 0 0 +5.133 18.917 -1.846 0 0 0 0 0 0 0 +5.073 18.931 -1.845 0 0 0 0 0 0 0 +5.011 18.939 -1.845 0 0 0 0 0 0 0 +4.979 18.937 -1.843 0 0 0 0 0 0 0 +4.918 18.949 -1.843 0 0 0 0 0 0 0 +4.853 18.941 -1.841 0 0 0 0 0 0 0 +1.92 7.655 -0.624 0 0 0 0 0 0 0 +1.892 7.646 -0.622 0 0 0 0 0 0 0 +1.865 7.642 -0.621 0 0 0 0 0 0 0 +2.13 8.83 -0.748 0 0 0 0 0 0 0 +2.286 9.599 -0.83 0 0 0 0 0 0 0 +2.409 10.322 -0.906 0 0 0 0 0 0 0 +2.484 10.946 -0.971 0 0 0 0 0 0 0 +2.583 11.715 -1.052 0 0 0 0 0 0 0 +2.659 12.331 -1.116 0 0 0 0 0 0 0 +2.754 13.165 -1.204 0 0 0 0 0 0 0 +2.591 12.788 -1.162 0 0 0 0 0 0 0 +2.548 12.783 -1.16 0 0 0 0 0 0 0 +3.011 15.331 -1.431 0 0 0 0 0 0 0 +3.101 15.916 -1.492 0 0 0 0 0 0 0 +3.192 16.656 -1.57 0 0 0 0 0 0 0 +3.243 17.207 -1.627 0 0 0 0 0 0 0 +3.191 17.229 -1.629 0 0 0 0 0 0 0 +3.135 17.231 -1.628 0 0 0 0 0 0 0 +3.082 17.249 -1.629 0 0 0 0 0 0 0 +3.026 17.245 -1.627 0 0 0 0 0 0 0 +0.583 3.477 -0.168 0 0 0 0 0 0 0 +0.574 3.489 -0.169 0 0 0 0 0 0 0 +0.565 3.503 -0.17 0 0 0 0 0 0 0 +0.546 3.453 -0.165 0 0 0 0 0 0 0 +0.534 3.451 -0.164 0 0 0 0 0 0 0 +0.525 3.463 -0.165 0 0 0 0 0 0 0 +0.512 3.45 -0.164 0 0 0 0 0 0 0 +0.504 3.474 -0.166 0 0 0 0 0 0 0 +0.505 3.514 -0.17 0 0 0 0 0 0 0 +0.492 3.5 -0.169 0 0 0 0 0 0 0 +0.479 3.487 -0.167 0 0 0 0 0 0 0 +0.449 3.359 -0.154 0 0 0 0 0 0 0 +2.327 17.415 -1.634 0 0 0 0 0 0 0 +0.45 3.445 -0.162 0 0 0 0 0 0 0 +2.273 17.422 -1.634 0 0 0 0 0 0 0 +2.247 17.439 -1.635 0 0 0 0 0 0 0 +2.195 17.466 -1.637 0 0 0 0 0 0 0 +2.141 17.481 -1.638 0 0 0 0 0 0 0 +2.087 17.497 -1.639 0 0 0 0 0 0 0 +2.035 17.526 -1.641 0 0 0 0 0 0 0 +1.982 17.552 -1.643 0 0 0 0 0 0 0 +1.93 17.583 -1.646 0 0 0 0 0 0 0 +1.903 17.596 -1.647 0 0 0 0 0 0 0 +1.849 17.618 -1.649 0 0 0 0 0 0 0 +1.797 17.648 -1.651 0 0 0 0 0 0 0 +1.742 17.663 -1.652 0 0 0 0 0 0 0 +1.689 17.688 -1.654 0 0 0 0 0 0 0 +1.636 17.725 -1.658 0 0 0 0 0 0 0 +1.583 17.764 -1.661 0 0 0 0 0 0 0 +1.559 17.812 -1.666 0 0 0 0 0 0 0 +1.505 17.838 -1.668 0 0 0 0 0 0 0 +1.454 17.905 -1.675 0 0 0 0 0 0 0 +1.457 18.651 -1.752 0 0 0 0 0 0 0 +1.402 18.707 -1.758 0 0 0 0 0 0 0 +1.347 18.763 -1.763 0 0 0 0 0 0 0 +1.292 18.82 -1.769 0 0 0 0 0 0 0 +1.235 18.858 -1.772 0 0 0 0 0 0 0 +1.208 18.898 -1.776 0 0 0 0 0 0 0 +1.15 18.923 -1.779 0 0 0 0 0 0 0 +1.093 18.972 -1.783 0 0 0 0 0 0 0 +1.044 19.151 -1.802 0 0 0 0 0 0 0 +0.929 19.274 -1.814 0 0 0 0 0 0 0 +0.861 19.118 -1.797 0 0 0 0 0 0 0 +0.831 19.107 -1.796 0 0 0 0 0 0 0 +0.771 19.114 -1.796 0 0 0 0 0 0 0 +0.711 19.122 -1.797 0 0 0 0 0 0 0 +0.651 19.128 -1.797 0 0 0 0 0 0 0 +0.591 19.144 -1.799 0 0 0 0 0 0 0 +0.531 19.142 -1.798 0 0 0 0 0 0 0 +0.471 19.151 -1.799 0 0 0 0 0 0 0 +0.441 19.152 -1.799 0 0 0 0 0 0 0 +0.381 19.157 -1.8 0 0 0 0 0 0 0 +0.321 19.18 -1.802 0 0 0 0 0 0 0 +0.261 19.171 -1.801 0 0 0 0 0 0 0 +0.201 19.18 -1.802 0 0 0 0 0 0 0 +0.14 19.184 -1.802 0 0 0 0 0 0 0 +0.08 19.189 -1.803 0 0 0 0 0 0 0 +0.05 19.199 -1.804 0 0 0 0 0 0 0 +-0.01 19.195 -1.803 0 0 0 0 0 0 0 +-0.071 19.199 -1.804 0 0 0 0 0 0 0 +-0.131 19.196 -1.803 0 0 0 0 0 0 0 +-0.191 19.18 -1.802 0 0 0 0 0 0 0 +-0.251 19.167 -1.801 0 0 0 0 0 0 0 +-0.311 19.166 -1.801 0 0 0 0 0 0 0 +-0.341 19.15 -1.799 0 0 0 0 0 0 0 +-0.405 19.35 -1.82 0 0 0 0 0 0 0 +-0.524 19.251 -1.81 0 0 0 0 0 0 0 +-0.584 19.206 -1.805 0 0 0 0 0 0 0 +-0.644 19.2 -1.805 0 0 0 0 0 0 0 +-0.704 19.202 -1.805 0 0 0 0 0 0 0 +-0.764 19.176 -1.803 0 0 0 0 0 0 0 +-0.794 19.186 -1.804 0 0 0 0 0 0 0 +-0.855 19.194 -1.805 0 0 0 0 0 0 0 +-0.915 19.187 -1.805 0 0 0 0 0 0 0 +-0.976 19.19 -1.805 0 0 0 0 0 0 0 +-1.037 19.209 -1.808 0 0 0 0 0 0 0 +-1.097 19.191 -1.806 0 0 0 0 0 0 0 +-1.158 19.204 -1.808 0 0 0 0 0 0 0 +-1.189 19.216 -1.809 0 0 0 0 0 0 0 +-1.249 19.208 -1.809 0 0 0 0 0 0 0 +-1.31 19.218 -1.81 0 0 0 0 0 0 0 +-1.371 19.222 -1.811 0 0 0 0 0 0 0 +-1.433 19.231 -1.813 0 0 0 0 0 0 0 +-1.493 19.23 -1.813 0 0 0 0 0 0 0 +-1.555 19.243 -1.815 0 0 0 0 0 0 0 +-1.586 19.247 -1.815 0 0 0 0 0 0 0 +-1.649 19.27 -1.818 0 0 0 0 0 0 0 +-1.712 19.298 -1.822 0 0 0 0 0 0 0 +-1.774 19.308 -1.824 0 0 0 0 0 0 0 +-1.837 19.325 -1.826 0 0 0 0 0 0 0 +-1.899 19.333 -1.827 0 0 0 0 0 0 0 +-1.965 19.378 -1.833 0 0 0 0 0 0 0 +-2.028 19.395 -1.835 0 0 0 0 0 0 0 +-2.074 19.539 -1.851 0 0 0 0 0 0 0 +-1.809 16.51 -1.533 0 0 0 0 0 0 0 +-1.839 16.307 -1.513 0 0 0 0 0 0 0 +-1.867 16.099 -1.491 0 0 0 0 0 0 0 +-1.894 15.896 -1.471 0 0 0 0 0 0 0 +-1.922 15.702 -1.451 0 0 0 0 0 0 0 +-1.947 15.504 -1.431 0 0 0 0 0 0 0 +-1.949 15.32 -1.412 0 0 0 0 0 0 0 +-1.974 15.138 -1.393 0 0 0 0 0 0 0 +-2 14.962 -1.375 0 0 0 0 0 0 0 +-2.024 14.788 -1.358 0 0 0 0 0 0 0 +-2.049 14.624 -1.341 0 0 0 0 0 0 0 +-2.07 14.444 -1.323 0 0 0 0 0 0 0 +-2.092 14.274 -1.306 0 0 0 0 0 0 0 +-2.093 14.125 -1.29 0 0 0 0 0 0 0 +-2.116 13.975 -1.275 0 0 0 0 0 0 0 +-2.137 13.819 -1.259 0 0 0 0 0 0 0 +-2.156 13.659 -1.243 0 0 0 0 0 0 0 +-2.18 13.532 -1.23 0 0 0 0 0 0 0 +-2.2 13.384 -1.215 0 0 0 0 0 0 0 +-2.22 13.245 -1.202 0 0 0 0 0 0 0 +-2.219 13.112 -1.188 0 0 0 0 0 0 0 +-2.238 12.974 -1.174 0 0 0 0 0 0 0 +-2.258 12.851 -1.162 0 0 0 0 0 0 0 +-2.277 12.719 -1.148 0 0 0 0 0 0 0 +-2.294 12.588 -1.135 0 0 0 0 0 0 0 +-2.311 12.458 -1.122 0 0 0 0 0 0 0 +-2.332 12.351 -1.112 0 0 0 0 0 0 0 +-2.33 12.232 -1.099 0 0 0 0 0 0 0 +-2.347 12.117 -1.088 0 0 0 0 0 0 0 +-2.363 11.994 -1.076 0 0 0 0 0 0 0 +-2.379 11.877 -1.064 0 0 0 0 0 0 0 +-2.394 11.757 -1.052 0 0 0 0 0 0 0 +-2.413 11.661 -1.043 0 0 0 0 0 0 0 +-2.424 11.535 -1.03 0 0 0 0 0 0 0 +-2.424 11.444 -1.021 0 0 0 0 0 0 0 +-2.438 11.331 -1.01 0 0 0 0 0 0 0 +-2.455 11.238 -1 0 0 0 0 0 0 0 +-2.462 11.1 -0.986 0 0 0 0 0 0 0 +-2.478 11.008 -0.978 0 0 0 0 0 0 0 +-2.505 10.966 -0.974 0 0 0 0 0 0 0 +-2.518 10.865 -0.964 0 0 0 0 0 0 0 +-2.53 10.762 -0.954 0 0 0 0 0 0 0 +-2.523 10.659 -0.943 0 0 0 0 0 0 0 +-2.528 10.529 -0.93 0 0 0 0 0 0 0 +-2.555 10.494 -0.927 0 0 0 0 0 0 0 +-2.558 10.364 -0.914 0 0 0 0 0 0 0 +-2.576 10.298 -0.908 0 0 0 0 0 0 0 +-2.586 10.199 -0.898 0 0 0 0 0 0 0 +-2.602 10.129 -0.891 0 0 0 0 0 0 0 +-2.592 10.025 -0.881 0 0 0 0 0 0 0 +-2.654 10.132 -0.893 0 0 0 0 0 0 0 +-2.612 9.843 -0.863 0 0 0 0 0 0 0 +-2.63 9.789 -0.858 0 0 0 0 0 0 0 +-2.714 9.855 -0.867 0 0 0 0 0 0 0 +-2.66 9.537 -0.833 0 0 0 0 0 0 0 +-2.657 9.468 -0.826 0 0 0 0 0 0 0 +-2.664 9.379 -0.817 0 0 0 0 0 0 0 +-2.741 9.539 -0.836 0 0 0 0 0 0 0 +-2.7 9.284 -0.809 0 0 0 0 0 0 0 +-2.716 9.229 -0.804 0 0 0 0 0 0 0 +-2.734 9.183 -0.8 0 0 0 0 0 0 0 +-2.753 9.142 -0.796 0 0 0 0 0 0 0 +-2.749 9.076 -0.79 0 0 0 0 0 0 0 +-2.77 9.043 -0.787 0 0 0 0 0 0 0 +-2.783 8.983 -0.781 0 0 0 0 0 0 0 +-2.8 8.94 -0.778 0 0 0 0 0 0 0 +-2.808 8.867 -0.771 0 0 0 0 0 0 0 +-2.832 8.844 -0.769 0 0 0 0 0 0 0 +-2.838 8.769 -0.762 0 0 0 0 0 0 0 +-2.858 8.737 -0.759 0 0 0 0 0 0 0 +-2.854 8.676 -0.753 0 0 0 0 0 0 0 +-2.872 8.639 -0.75 0 0 0 0 0 0 0 +-2.882 8.579 -0.744 0 0 0 0 0 0 0 +-2.902 8.549 -0.742 0 0 0 0 0 0 0 +-2.907 8.478 -0.735 0 0 0 0 0 0 0 +-2.922 8.433 -0.731 0 0 0 0 0 0 0 +-2.935 8.386 -0.727 0 0 0 0 0 0 0 +-2.942 8.363 -0.725 0 0 0 0 0 0 0 +-2.938 8.269 -0.716 0 0 0 0 0 0 0 +-2.972 8.2 -0.71 0 0 0 0 0 0 0 +-2.994 8.181 -0.709 0 0 0 0 0 0 0 +-3.002 8.121 -0.703 0 0 0 0 0 0 0 +-3.022 8.097 -0.702 0 0 0 0 0 0 0 +-3.02 8.053 -0.697 0 0 0 0 0 0 0 +-3.045 8.043 -0.697 0 0 0 0 0 0 0 +-3.052 7.985 -0.692 0 0 0 0 0 0 0 +-3.071 7.961 -0.69 0 0 0 0 0 0 0 +-3.085 7.921 -0.687 0 0 0 0 0 0 0 +-3.106 7.902 -0.686 0 0 0 0 0 0 0 +-3.114 7.85 -0.681 0 0 0 0 0 0 0 +-3.127 7.847 -0.681 0 0 0 0 0 0 0 +-3.13 7.782 -0.675 0 0 0 0 0 0 0 +-3.153 7.768 -0.675 0 0 0 0 0 0 0 +-3.163 7.723 -0.671 0 0 0 0 0 0 0 +-3.181 7.698 -0.669 0 0 0 0 0 0 0 +-3.186 7.641 -0.664 0 0 0 0 0 0 0 +-3.145 7.476 -0.646 0 0 0 0 0 0 0 +-3.208 7.56 -0.657 0 0 0 0 0 0 0 +-3.282 7.504 -0.655 0 0 0 0 0 0 0 +-3.285 7.446 -0.649 0 0 0 0 0 0 0 +-3.315 7.451 -0.651 0 0 0 0 0 0 0 +-3.311 7.348 -0.641 0 0 0 0 0 0 0 +-3.421 7.53 -0.663 0 0 0 0 0 0 0 +-3.355 7.321 -0.64 0 0 0 0 0 0 0 +-3.438 7.381 -0.65 0 0 0 0 0 0 0 +-3.47 7.389 -0.652 0 0 0 0 0 0 0 +-3.495 7.381 -0.652 0 0 0 0 0 0 0 +-3.51 7.383 -0.653 0 0 0 0 0 0 0 +-3.536 7.379 -0.654 0 0 0 0 0 0 0 +-3.567 7.384 -0.656 0 0 0 0 0 0 0 +-3.594 7.38 -0.657 0 0 0 0 0 0 0 +-3.624 7.383 -0.658 0 0 0 0 0 0 0 +-3.651 7.379 -0.659 0 0 0 0 0 0 0 +-3.679 7.378 -0.66 0 0 0 0 0 0 0 +-3.693 7.377 -0.661 0 0 0 0 0 0 0 +-3.722 7.376 -0.662 0 0 0 0 0 0 0 +-3.744 7.363 -0.662 0 0 0 0 0 0 0 +-3.78 7.376 -0.665 0 0 0 0 0 0 0 +-3.808 7.373 -0.666 0 0 0 0 0 0 0 +-3.834 7.368 -0.667 0 0 0 0 0 0 0 +-3.797 7.239 -0.653 0 0 0 0 0 0 0 +-3.851 7.287 -0.66 0 0 0 0 0 0 0 +-3.968 7.369 -0.673 0 0 0 0 0 0 0 +-4 7.372 -0.675 0 0 0 0 0 0 0 +-4.037 7.386 -0.678 0 0 0 0 0 0 0 +-4.061 7.375 -0.679 0 0 0 0 0 0 0 +-4.084 7.362 -0.679 0 0 0 0 0 0 0 +-4.102 7.366 -0.68 0 0 0 0 0 0 0 +-4.141 7.383 -0.683 0 0 0 0 0 0 0 +-4.163 7.366 -0.683 0 0 0 0 0 0 0 +-4.189 7.359 -0.684 0 0 0 0 0 0 0 +-4.218 7.356 -0.685 0 0 0 0 0 0 0 +-4.243 7.346 -0.685 0 0 0 0 0 0 0 +-4.272 7.343 -0.686 0 0 0 0 0 0 0 +-4.289 7.346 -0.688 0 0 0 0 0 0 0 +-4.329 7.362 -0.691 0 0 0 0 0 0 0 +-4.616 7.391 -0.709 0 0 0 0 0 0 0 +-4.663 7.415 -0.714 0 0 0 0 0 0 0 +-4.694 7.412 -0.716 0 0 0 0 0 0 0 +-4.734 7.424 -0.719 0 0 0 0 0 0 0 +-4.789 7.46 -0.725 0 0 0 0 0 0 0 +-4.813 7.471 -0.727 0 0 0 0 0 0 0 +-4.862 7.496 -0.732 0 0 0 0 0 0 0 +-4.891 7.489 -0.733 0 0 0 0 0 0 0 +-4.92 7.482 -0.734 0 0 0 0 0 0 0 +-4.95 7.476 -0.736 0 0 0 0 0 0 0 +-4.988 7.482 -0.738 0 0 0 0 0 0 0 +-5.022 7.483 -0.74 0 0 0 0 0 0 0 +-5 7.424 -0.734 0 0 0 0 0 0 0 +-5.082 7.495 -0.745 0 0 0 0 0 0 0 +-7.263 10.66 -1.146 0 0 0 0 0 0 0 +-7.273 10.602 -1.142 0 0 0 0 0 0 0 +-7.274 10.532 -1.136 0 0 0 0 0 0 0 +-7.293 10.49 -1.133 0 0 0 0 0 0 0 +-7.294 10.421 -1.127 0 0 0 0 0 0 0 +-7.301 10.36 -1.123 0 0 0 0 0 0 0 +-7.295 10.318 -1.119 0 0 0 0 0 0 0 +-7.304 10.263 -1.115 0 0 0 0 0 0 0 +-7.317 10.212 -1.111 0 0 0 0 0 0 0 +-7.305 10.128 -1.103 0 0 0 0 0 0 0 +-7.331 10.097 -1.102 0 0 0 0 0 0 0 +-7.336 10.037 -1.097 0 0 0 0 0 0 0 +-7.348 9.988 -1.094 0 0 0 0 0 0 0 +-7.336 9.938 -1.089 0 0 0 0 0 0 0 +-7.35 9.892 -1.086 0 0 0 0 0 0 0 +-7.361 9.842 -1.083 0 0 0 0 0 0 0 +-7.365 9.782 -1.078 0 0 0 0 0 0 0 +-7.373 9.729 -1.074 0 0 0 0 0 0 0 +-7.388 9.685 -1.071 0 0 0 0 0 0 0 +-7.385 9.619 -1.066 0 0 0 0 0 0 0 +-7.381 9.582 -1.062 0 0 0 0 0 0 0 +-7.401 9.546 -1.061 0 0 0 0 0 0 0 +-7.39 9.47 -1.054 0 0 0 0 0 0 0 +-7.386 9.404 -1.048 0 0 0 0 0 0 0 +-7.421 9.387 -1.049 0 0 0 0 0 0 0 +-7.429 9.337 -1.045 0 0 0 0 0 0 0 +-7.431 9.28 -1.041 0 0 0 0 0 0 0 +-7.422 9.238 -1.037 0 0 0 0 0 0 0 +-7.439 9.2 -1.035 0 0 0 0 0 0 0 +-7.435 9.136 -1.029 0 0 0 0 0 0 0 +-7.446 9.091 -1.026 0 0 0 0 0 0 0 +-7.46 9.049 -1.024 0 0 0 0 0 0 0 +-7.461 8.993 -1.019 0 0 0 0 0 0 0 +-7.473 8.95 -1.017 0 0 0 0 0 0 0 +-7.476 8.896 -1.013 0 0 0 0 0 0 0 +-7.47 8.861 -1.01 0 0 0 0 0 0 0 +-7.475 8.811 -1.006 0 0 0 0 0 0 0 +-7.472 8.751 -1.001 0 0 0 0 0 0 0 +-7.486 8.712 -0.999 0 0 0 0 0 0 0 +-7.501 8.673 -0.997 0 0 0 0 0 0 0 +-7.498 8.615 -0.992 0 0 0 0 0 0 0 +-7.509 8.574 -0.989 0 0 0 0 0 0 0 +-7.502 8.538 -0.986 0 0 0 0 0 0 0 +-7.506 8.489 -0.983 0 0 0 0 0 0 0 +-7.517 8.447 -0.98 0 0 0 0 0 0 0 +-7.528 8.406 -0.978 0 0 0 0 0 0 0 +-7.531 8.357 -0.974 0 0 0 0 0 0 0 +-7.54 8.314 -0.971 0 0 0 0 0 0 0 +-7.553 8.276 -0.969 0 0 0 0 0 0 0 +-7.554 8.251 -0.967 0 0 0 0 0 0 0 +-7.558 8.203 -0.964 0 0 0 0 0 0 0 +-7.572 8.166 -0.962 0 0 0 0 0 0 0 +-7.562 8.105 -0.957 0 0 0 0 0 0 0 +-7.54 8.03 -0.95 0 0 0 0 0 0 0 +-7.583 8.025 -0.952 0 0 0 0 0 0 0 +-13.562 14.292 -1.856 0 0 0 0 0 0 0 +-13.591 14.278 -1.857 0 0 0 0 0 0 0 +-13.623 14.222 -1.855 0 0 0 0 0 0 0 +-13.657 14.167 -1.854 0 0 0 0 0 0 0 +-13.697 14.12 -1.853 0 0 0 0 0 0 0 +-13.746 14.081 -1.854 0 0 0 0 0 0 0 +-13.783 14.031 -1.853 0 0 0 0 0 0 0 +-13.82 13.981 -1.852 0 0 0 0 0 0 0 +-13.845 13.962 -1.852 0 0 0 0 0 0 0 +-13.88 13.91 -1.851 0 0 0 0 0 0 0 +-13.922 13.865 -1.851 0 0 0 0 0 0 0 +-13.95 13.805 -1.848 0 0 0 0 0 0 0 +-13.988 13.756 -1.847 0 0 0 0 0 0 0 +-14.031 13.712 -1.847 0 0 0 0 0 0 0 +-14.08 13.673 -1.848 0 0 0 0 0 0 0 +-14.116 13.622 -1.847 0 0 0 0 0 0 0 +-14.127 13.59 -1.846 0 0 0 0 0 0 0 +-14.162 13.539 -1.845 0 0 0 0 0 0 0 +-14.192 13.482 -1.843 0 0 0 0 0 0 0 +-14.244 13.447 -1.844 0 0 0 0 0 0 0 +-14.285 13.401 -1.844 0 0 0 0 0 0 0 +-14.326 13.354 -1.844 0 0 0 0 0 0 0 +-14.372 13.313 -1.845 0 0 0 0 0 0 0 +-14.397 13.295 -1.845 0 0 0 0 0 0 0 +-14.439 13.25 -1.845 0 0 0 0 0 0 0 +-14.489 13.212 -1.846 0 0 0 0 0 0 0 +-14.535 13.171 -1.847 0 0 0 0 0 0 0 +-14.584 13.132 -1.848 0 0 0 0 0 0 0 +-14.623 13.084 -1.848 0 0 0 0 0 0 0 +-14.675 13.048 -1.849 0 0 0 0 0 0 0 +-14.71 13.038 -1.851 0 0 0 0 0 0 0 +-14.767 13.006 -1.854 0 0 0 0 0 0 0 +-14.855 13 -1.86 0 0 0 0 0 0 0 +-14.922 12.977 -1.864 0 0 0 0 0 0 0 +-14.94 12.911 -1.861 0 0 0 0 0 0 0 +-14.998 12.878 -1.863 0 0 0 0 0 0 0 +-14.993 12.792 -1.857 0 0 0 0 0 0 0 +-15.037 12.789 -1.86 0 0 0 0 0 0 0 +-15.068 12.734 -1.859 0 0 0 0 0 0 0 +-15.108 12.686 -1.859 0 0 0 0 0 0 0 +-15.137 12.63 -1.857 0 0 0 0 0 0 0 +-15.124 12.539 -1.85 0 0 0 0 0 0 0 +-15.164 12.492 -1.85 0 0 0 0 0 0 0 +-15.172 12.419 -1.846 0 0 0 0 0 0 0 +-15.167 12.375 -1.843 0 0 0 0 0 0 0 +-15.155 12.286 -1.836 0 0 0 0 0 0 0 +-15.198 12.242 -1.837 0 0 0 0 0 0 0 +-15.204 12.168 -1.832 0 0 0 0 0 0 0 +-15.214 12.098 -1.829 0 0 0 0 0 0 0 +-15.225 12.029 -1.825 0 0 0 0 0 0 0 +-15.238 11.961 -1.822 0 0 0 0 0 0 0 +-15.249 11.892 -1.818 0 0 0 0 0 0 0 +-15.235 11.843 -1.814 0 0 0 0 0 0 0 +-15.251 11.779 -1.811 0 0 0 0 0 0 0 +-15.258 11.708 -1.807 0 0 0 0 0 0 0 +-15.279 11.648 -1.805 0 0 0 0 0 0 0 +-15.287 11.578 -1.801 0 0 0 0 0 0 0 +-15.295 11.508 -1.798 0 0 0 0 0 0 0 +-15.31 11.445 -1.795 0 0 0 0 0 0 0 +-15.304 11.403 -1.792 0 0 0 0 0 0 0 +-15.308 11.331 -1.788 0 0 0 0 0 0 0 +-15.321 11.266 -1.785 0 0 0 0 0 0 0 +-15.328 11.197 -1.781 0 0 0 0 0 0 0 +-15.345 11.136 -1.779 0 0 0 0 0 0 0 +-15.353 11.068 -1.775 0 0 0 0 0 0 0 +-15.362 11.001 -1.772 0 0 0 0 0 0 0 +-15.363 10.965 -1.77 0 0 0 0 0 0 0 +-15.366 10.895 -1.766 0 0 0 0 0 0 0 +-15.384 10.835 -1.764 0 0 0 0 0 0 0 +-15.389 10.766 -1.76 0 0 0 0 0 0 0 +-15.403 10.704 -1.758 0 0 0 0 0 0 0 +-15.409 10.637 -1.754 0 0 0 0 0 0 0 +-15.413 10.568 -1.75 0 0 0 0 0 0 0 +-6.712 4.569 -0.647 0 0 0 0 0 0 0 +-6.701 4.531 -0.644 0 0 0 0 0 0 0 +-6.709 4.505 -0.643 0 0 0 0 0 0 0 +-6.759 4.508 -0.648 0 0 0 0 0 0 0 +-6.722 4.453 -0.641 0 0 0 0 0 0 0 +-6.695 4.404 -0.636 0 0 0 0 0 0 0 +-6.692 4.372 -0.634 0 0 0 0 0 0 0 +-6.714 4.357 -0.635 0 0 0 0 0 0 0 +-6.724 4.348 -0.636 0 0 0 0 0 0 0 +-6.751 4.336 -0.637 0 0 0 0 0 0 0 +-6.775 4.321 -0.639 0 0 0 0 0 0 0 +-15.609 9.927 -1.731 0 0 0 0 0 0 0 +-15.659 9.89 -1.733 0 0 0 0 0 0 0 +-15.72 9.86 -1.737 0 0 0 0 0 0 0 +-15.68 9.766 -1.728 0 0 0 0 0 0 0 +-15.653 9.715 -1.723 0 0 0 0 0 0 0 +-15.645 9.642 -1.718 0 0 0 0 0 0 0 +-15.731 9.627 -1.725 0 0 0 0 0 0 0 +-15.7 9.54 -1.717 0 0 0 0 0 0 0 +-15.743 9.499 -1.719 0 0 0 0 0 0 0 +-15.724 9.42 -1.713 0 0 0 0 0 0 0 +-15.685 9.33 -1.705 0 0 0 0 0 0 0 +-15.756 9.339 -1.711 0 0 0 0 0 0 0 +-15.765 9.277 -1.709 0 0 0 0 0 0 0 +-15.799 9.23 -1.71 0 0 0 0 0 0 0 +-15.685 9.098 -1.692 0 0 0 0 0 0 0 +-15.674 9.025 -1.688 0 0 0 0 0 0 0 +-15.633 8.937 -1.679 0 0 0 0 0 0 0 +-14.055 7.973 -1.486 0 0 0 0 0 0 0 +-15.693 8.873 -1.681 0 0 0 0 0 0 0 +-15.722 8.824 -1.682 0 0 0 0 0 0 0 +-14.064 7.832 -1.48 0 0 0 0 0 0 0 +-15.791 8.733 -1.683 0 0 0 0 0 0 0 +-12.546 6.881 -1.293 0 0 0 0 0 0 0 +-12.573 6.844 -1.294 0 0 0 0 0 0 0 +-12.572 6.793 -1.291 0 0 0 0 0 0 0 +-12.626 6.796 -1.296 0 0 0 0 0 0 0 +-13.65 7.295 -1.415 0 0 0 0 0 0 0 +-13.787 7.313 -1.429 0 0 0 0 0 0 0 +-13.857 7.294 -1.434 0 0 0 0 0 0 0 +-14.081 7.356 -1.458 0 0 0 0 0 0 0 +-7.105 3.641 -0.633 0 0 0 0 0 0 0 +-7.164 3.657 -0.639 0 0 0 0 0 0 0 +-7.245 3.67 -0.647 0 0 0 0 0 0 0 +-7.316 3.677 -0.654 0 0 0 0 0 0 0 +-7.365 3.673 -0.659 0 0 0 0 0 0 0 +-7.468 3.695 -0.669 0 0 0 0 0 0 0 +-7.522 3.693 -0.674 0 0 0 0 0 0 0 +-7.766 3.783 -0.701 0 0 0 0 0 0 0 +-14.019 6.799 -1.426 0 0 0 0 0 0 0 +-14.026 6.775 -1.426 0 0 0 0 0 0 0 +-14.002 6.709 -1.42 0 0 0 0 0 0 0 +-13.95 6.63 -1.412 0 0 0 0 0 0 0 +-14.632 6.899 -1.488 0 0 0 0 0 0 0 +-16.373 7.661 -1.687 0 0 0 0 0 0 0 +-16.291 7.56 -1.674 0 0 0 0 0 0 0 +-16.398 7.547 -1.684 0 0 0 0 0 0 0 +-16.693 7.652 -1.716 0 0 0 0 0 0 0 +-19.258 8.759 -2.008 0 0 0 0 0 0 0 +-19.269 8.691 -2.006 0 0 0 0 0 0 0 +-19.275 8.62 -2.004 0 0 0 0 0 0 0 +-19.276 8.548 -2.001 0 0 0 0 0 0 0 +-19.27 8.473 -1.997 0 0 0 0 0 0 0 +-19.287 8.409 -1.996 0 0 0 0 0 0 0 +-19.299 8.378 -1.996 0 0 0 0 0 0 0 +-19.305 8.308 -1.993 0 0 0 0 0 0 0 +-19.298 8.234 -1.99 0 0 0 0 0 0 0 +-19.313 8.168 -1.988 0 0 0 0 0 0 0 +-19.318 8.099 -1.986 0 0 0 0 0 0 0 +-19.32 8.028 -1.983 0 0 0 0 0 0 0 +-19.315 7.956 -1.98 0 0 0 0 0 0 0 +-19.31 7.918 -1.978 0 0 0 0 0 0 0 +-19.32 7.851 -1.976 0 0 0 0 0 0 0 +-19.331 7.785 -1.975 0 0 0 0 0 0 0 +-19.346 7.72 -1.974 0 0 0 0 0 0 0 +-19.354 7.653 -1.972 0 0 0 0 0 0 0 +-19.372 7.59 -1.971 0 0 0 0 0 0 0 +-19.376 7.521 -1.969 0 0 0 0 0 0 0 +-19.38 7.488 -1.968 0 0 0 0 0 0 0 +-19.39 7.422 -1.967 0 0 0 0 0 0 0 +-19.401 7.356 -1.965 0 0 0 0 0 0 0 +-19.426 7.296 -1.966 0 0 0 0 0 0 0 +-19.446 7.234 -1.965 0 0 0 0 0 0 0 +-19.454 7.167 -1.964 0 0 0 0 0 0 0 +-19.488 7.11 -1.965 0 0 0 0 0 0 0 +-19.504 7.047 -1.964 0 0 0 0 0 0 0 +-19.517 7.017 -1.965 0 0 0 0 0 0 0 +-19.509 6.945 -1.961 0 0 0 0 0 0 0 +-19.522 6.88 -1.96 0 0 0 0 0 0 0 +-19.545 6.82 -1.96 0 0 0 0 0 0 0 +-19.548 6.752 -1.958 0 0 0 0 0 0 0 +-19.554 6.685 -1.957 0 0 0 0 0 0 0 +-19.55 6.615 -1.954 0 0 0 0 0 0 0 +-19.536 6.576 -1.951 0 0 0 0 0 0 0 +-19.532 6.507 -1.949 0 0 0 0 0 0 0 +-19.55 6.445 -1.948 0 0 0 0 0 0 0 +-19.561 6.38 -1.947 0 0 0 0 0 0 0 +-19.585 6.32 -1.948 0 0 0 0 0 0 0 +-19.593 6.255 -1.946 0 0 0 0 0 0 0 +-19.617 6.194 -1.947 0 0 0 0 0 0 0 +-19.613 6.159 -1.945 0 0 0 0 0 0 0 +-19.644 6.101 -1.947 0 0 0 0 0 0 0 +-19.657 6.038 -1.946 0 0 0 0 0 0 0 +-19.684 5.978 -1.947 0 0 0 0 0 0 0 +-19.687 5.912 -1.945 0 0 0 0 0 0 0 +-19.744 5.861 -1.949 0 0 0 0 0 0 0 +-19.773 5.803 -1.951 0 0 0 0 0 0 0 +-19.802 5.777 -1.953 0 0 0 0 0 0 0 +-19.825 5.716 -1.953 0 0 0 0 0 0 0 +-19.853 5.657 -1.954 0 0 0 0 0 0 0 +-19.901 5.603 -1.958 0 0 0 0 0 0 0 +-19.928 5.543 -1.959 0 0 0 0 0 0 0 +-19.955 5.483 -1.96 0 0 0 0 0 0 0 +-19.982 5.423 -1.961 0 0 0 0 0 0 0 +-10.32 2.77 -0.915 0 0 0 0 0 0 0 +-9.982 2.645 -0.878 0 0 0 0 0 0 0 +-9.781 2.559 -0.855 0 0 0 0 0 0 0 +-9.61 2.481 -0.836 0 0 0 0 0 0 0 +-9.312 2.372 -0.803 0 0 0 0 0 0 0 +-8.999 2.261 -0.768 0 0 0 0 0 0 0 +-8.867 2.198 -0.753 0 0 0 0 0 0 0 +-8.633 2.125 -0.728 0 0 0 0 0 0 0 +-8.25 1.975 -0.685 0 0 0 0 0 0 0 +-8.276 1.899 -0.686 0 0 0 0 0 0 0 +-8.282 1.873 -0.686 0 0 0 0 0 0 0 +-10.019 2.254 -0.872 0 0 0 0 0 0 0 +-10.049 2.228 -0.874 0 0 0 0 0 0 0 +-10.042 2.194 -0.873 0 0 0 0 0 0 0 +-10.045 2.161 -0.872 0 0 0 0 0 0 0 +-9.957 2.109 -0.862 0 0 0 0 0 0 0 +-9 1.874 -0.759 0 0 0 0 0 0 0 +-9.014 1.848 -0.76 0 0 0 0 0 0 0 +-8.991 1.828 -0.757 0 0 0 0 0 0 0 +-8.942 1.789 -0.752 0 0 0 0 0 0 0 +-8.923 1.756 -0.749 0 0 0 0 0 0 0 +-8.946 1.731 -0.751 0 0 0 0 0 0 0 +-8.98 1.709 -0.754 0 0 0 0 0 0 0 +-9.044 1.692 -0.76 0 0 0 0 0 0 0 +-9.073 1.668 -0.763 0 0 0 0 0 0 0 +-10.228 1.701 -0.882 0 0 0 0 0 0 0 +-10.232 1.669 -0.882 0 0 0 0 0 0 0 +-10.237 1.637 -0.882 0 0 0 0 0 0 0 +-10.245 1.621 -0.882 0 0 0 0 0 0 0 +-10.256 1.59 -0.883 0 0 0 0 0 0 0 +-10.269 1.559 -0.884 0 0 0 0 0 0 0 +-10.284 1.528 -0.885 0 0 0 0 0 0 0 +-10.294 1.497 -0.886 0 0 0 0 0 0 0 +-9.575 1.36 -0.809 0 0 0 0 0 0 0 +-9.591 1.224 -0.809 0 0 0 0 0 0 0 +-10.335 1.288 -0.887 0 0 0 0 0 0 0 +-10.343 1.256 -0.887 0 0 0 0 0 0 0 +-9.512 0.987 -0.798 0 0 0 0 0 0 0 +-9.424 0.947 -0.788 0 0 0 0 0 0 0 +-9.417 0.917 -0.787 0 0 0 0 0 0 0 +-8.704 0.721 -0.711 0 0 0 0 0 0 0 +-8.67 0.691 -0.708 0 0 0 0 0 0 0 +-8.649 0.662 -0.705 0 0 0 0 0 0 0 +-19.515 1.372 -1.842 0 0 0 0 0 0 0 +-19.533 1.311 -1.843 0 0 0 0 0 0 0 +-19.606 1.254 -1.85 0 0 0 0 0 0 0 +-19.624 1.194 -1.852 0 0 0 0 0 0 0 +-19.628 1.132 -1.852 0 0 0 0 0 0 0 +-19.631 1.07 -1.852 0 0 0 0 0 0 0 +-19.631 1.039 -1.852 0 0 0 0 0 0 0 +-19.672 0.98 -1.856 0 0 0 0 0 0 0 +-19.583 0.914 -1.846 0 0 0 0 0 0 0 +-19.612 0.853 -1.849 0 0 0 0 0 0 0 +-19.601 0.791 -1.847 0 0 0 0 0 0 0 +-19.579 0.728 -1.845 0 0 0 0 0 0 0 +-19.581 0.667 -1.845 0 0 0 0 0 0 0 +-19.551 0.635 -1.841 0 0 0 0 0 0 0 +-19.541 0.573 -1.84 0 0 0 0 0 0 0 +-18.204 0.475 -1.7 0 0 0 0 0 0 0 +-19.365 0.446 -1.821 0 0 0 0 0 0 0 +-19.481 0.388 -1.834 0 0 0 0 0 0 0 +-19.463 0.326 -1.831 0 0 0 0 0 0 0 +-19.46 0.265 -1.831 0 0 0 0 0 0 0 +-19.44 0.204 -1.829 0 0 0 0 0 0 0 +-19.449 0.173 -1.83 0 0 0 0 0 0 0 +-19.423 0.112 -1.827 0 0 0 0 0 0 0 +-19.41 0.051 -1.826 0 0 0 0 0 0 0 +-19.404 -0.01 -1.825 0 0 0 0 0 0 0 +-19.392 -0.071 -1.824 0 0 0 0 0 0 0 +-19.385 -0.132 -1.823 0 0 0 0 0 0 0 +-19.383 -0.193 -1.823 0 0 0 0 0 0 0 +-19.367 -0.223 -1.821 0 0 0 0 0 0 0 +-19.324 -0.283 -1.817 0 0 0 0 0 0 0 +-19.309 -0.344 -1.815 0 0 0 0 0 0 0 +-19.282 -0.404 -1.813 0 0 0 0 0 0 0 +-19.273 -0.464 -1.812 0 0 0 0 0 0 0 +-19.303 -0.526 -1.815 0 0 0 0 0 0 0 +-19.287 -0.586 -1.814 0 0 0 0 0 0 0 +-19.243 -0.615 -1.809 0 0 0 0 0 0 0 +-19.233 -0.675 -1.808 0 0 0 0 0 0 0 +-19.225 -0.735 -1.808 0 0 0 0 0 0 0 +-19.206 -0.795 -1.806 0 0 0 0 0 0 0 +-19.202 -0.855 -1.806 0 0 0 0 0 0 0 +-19.199 -0.916 -1.806 0 0 0 0 0 0 0 +-19.192 -0.976 -1.806 0 0 0 0 0 0 0 +-19.188 -1.006 -1.805 0 0 0 0 0 0 0 +-19.179 -1.066 -1.805 0 0 0 0 0 0 0 +-19.158 -1.125 -1.803 0 0 0 0 0 0 0 +-20.659 -1.276 -1.96 0 0 0 0 0 0 0 +-20.665 -1.342 -1.961 0 0 0 0 0 0 0 +-20.661 -1.407 -1.961 0 0 0 0 0 0 0 +-20.64 -1.471 -1.96 0 0 0 0 0 0 0 +-20.602 -1.533 -1.956 0 0 0 0 0 0 0 +-20.619 -1.599 -1.958 0 0 0 0 0 0 0 +-20.563 -1.628 -1.953 0 0 0 0 0 0 0 +-20.53 -1.69 -1.95 0 0 0 0 0 0 0 +-19.666 -1.682 -1.86 0 0 0 0 0 0 0 +-16.118 -1.434 -1.489 0 0 0 0 0 0 0 +-16.105 -1.484 -1.488 0 0 0 0 0 0 0 +-16.043 -1.529 -1.482 0 0 0 0 0 0 0 +-20.271 -1.99 -1.926 0 0 0 0 0 0 0 +-20.399 -2.035 -1.939 0 0 0 0 0 0 0 +-20.519 -2.112 -1.953 0 0 0 0 0 0 0 +-20.516 -2.176 -1.953 0 0 0 0 0 0 0 +-20.489 -2.239 -1.951 0 0 0 0 0 0 0 +-20.474 -2.302 -1.95 0 0 0 0 0 0 0 +-20.449 -2.364 -1.948 0 0 0 0 0 0 0 +-20.414 -2.425 -1.945 0 0 0 0 0 0 0 +-20.414 -2.458 -1.946 0 0 0 0 0 0 0 +-20.382 -2.519 -1.943 0 0 0 0 0 0 0 +-20.335 -2.578 -1.939 0 0 0 0 0 0 0 +-20.343 -2.644 -1.941 0 0 0 0 0 0 0 +-20.326 -2.707 -1.94 0 0 0 0 0 0 0 +-20.308 -2.77 -1.939 0 0 0 0 0 0 0 +-20.299 -2.833 -1.939 0 0 0 0 0 0 0 +-20.277 -2.863 -1.937 0 0 0 0 0 0 0 +-20.246 -2.923 -1.935 0 0 0 0 0 0 0 +-20.229 -2.986 -1.934 0 0 0 0 0 0 0 +-20.198 -3.046 -1.932 0 0 0 0 0 0 0 +-20.192 -3.11 -1.932 0 0 0 0 0 0 0 +-20.162 -3.17 -1.93 0 0 0 0 0 0 0 +-20.127 -3.23 -1.927 0 0 0 0 0 0 0 +-20.106 -3.259 -1.926 0 0 0 0 0 0 0 +-20.09 -3.321 -1.925 0 0 0 0 0 0 0 +-20.062 -3.381 -1.923 0 0 0 0 0 0 0 +-20.023 -3.439 -1.92 0 0 0 0 0 0 0 +-20.001 -3.5 -1.919 0 0 0 0 0 0 0 +-19.962 -3.558 -1.916 0 0 0 0 0 0 0 +-19.937 -3.618 -1.915 0 0 0 0 0 0 0 +-19.898 -3.676 -1.912 0 0 0 0 0 0 0 +-19.83 -3.696 -1.905 0 0 0 0 0 0 0 +-19.791 -3.753 -1.902 0 0 0 0 0 0 0 +-19.767 -3.813 -1.901 0 0 0 0 0 0 0 +-19.722 -3.868 -1.897 0 0 0 0 0 0 0 +-19.688 -3.926 -1.895 0 0 0 0 0 0 0 +-19.647 -3.982 -1.892 0 0 0 0 0 0 0 +-19.599 -4.037 -1.888 0 0 0 0 0 0 0 +-19.571 -4.063 -1.886 0 0 0 0 0 0 0 +-19.518 -4.116 -1.882 0 0 0 0 0 0 0 +-19.512 -4.179 -1.883 0 0 0 0 0 0 0 +-19.464 -4.232 -1.879 0 0 0 0 0 0 0 +-19.418 -4.286 -1.875 0 0 0 0 0 0 0 +-19.398 -4.346 -1.875 0 0 0 0 0 0 0 +-19.342 -4.397 -1.87 0 0 0 0 0 0 0 +-19.312 -4.422 -1.868 0 0 0 0 0 0 0 +-19.263 -4.475 -1.864 0 0 0 0 0 0 0 +-19.225 -4.53 -1.861 0 0 0 0 0 0 0 +-19.197 -4.587 -1.86 0 0 0 0 0 0 0 +-19.148 -4.639 -1.856 0 0 0 0 0 0 0 +-19.087 -4.688 -1.851 0 0 0 0 0 0 0 +-19.049 -4.742 -1.849 0 0 0 0 0 0 0 +-19.009 -4.764 -1.845 0 0 0 0 0 0 0 +-18.957 -4.814 -1.841 0 0 0 0 0 0 0 +-18.926 -4.87 -1.84 0 0 0 0 0 0 0 +-18.873 -4.919 -1.835 0 0 0 0 0 0 0 +-18.822 -4.969 -1.832 0 0 0 0 0 0 0 +-18.759 -5.016 -1.826 0 0 0 0 0 0 0 +-18.704 -5.064 -1.822 0 0 0 0 0 0 0 +-18.635 -5.077 -1.816 0 0 0 0 0 0 0 +-18.581 -5.125 -1.812 0 0 0 0 0 0 0 +-18.511 -5.169 -1.806 0 0 0 0 0 0 0 +-18.443 -5.212 -1.8 0 0 0 0 0 0 0 +-18.369 -5.254 -1.794 0 0 0 0 0 0 0 +-17.834 -5.162 -1.738 0 0 0 0 0 0 0 +-17.759 -5.201 -1.731 0 0 0 0 0 0 0 +-17.703 -5.215 -1.726 0 0 0 0 0 0 0 +-17.639 -5.256 -1.721 0 0 0 0 0 0 0 +-17.557 -5.292 -1.714 0 0 0 0 0 0 0 +-17.502 -5.336 -1.71 0 0 0 0 0 0 0 +-17.44 -5.377 -1.705 0 0 0 0 0 0 0 +-17.364 -5.413 -1.698 0 0 0 0 0 0 0 +-17.29 -5.45 -1.692 0 0 0 0 0 0 0 +-17.245 -5.466 -1.688 0 0 0 0 0 0 0 +-17.202 -5.511 -1.685 0 0 0 0 0 0 0 +-17.224 -5.578 -1.689 0 0 0 0 0 0 0 +-17.278 -5.656 -1.697 0 0 0 0 0 0 0 +-17.311 -5.727 -1.703 0 0 0 0 0 0 0 +-17.331 -5.794 -1.707 0 0 0 0 0 0 0 +-17.3 -5.844 -1.706 0 0 0 0 0 0 0 +-17.234 -5.882 -1.7 0 0 0 0 0 0 0 +-17.181 -5.894 -1.696 0 0 0 0 0 0 0 +-17.114 -5.931 -1.69 0 0 0 0 0 0 0 +-17.054 -5.971 -1.686 0 0 0 0 0 0 0 +-16.975 -6.003 -1.679 0 0 0 0 0 0 0 +-16.726 -5.975 -1.654 0 0 0 0 0 0 0 +-16.701 -6.025 -1.653 0 0 0 0 0 0 0 +-16.763 -6.107 -1.662 0 0 0 0 0 0 0 +-16.723 -6.122 -1.659 0 0 0 0 0 0 0 +-16.638 -6.15 -1.651 0 0 0 0 0 0 0 +-16.595 -6.194 -1.649 0 0 0 0 0 0 0 +-16.514 -6.223 -1.642 0 0 0 0 0 0 0 +-16.446 -6.256 -1.636 0 0 0 0 0 0 0 +-16.381 -6.291 -1.631 0 0 0 0 0 0 0 +-16.274 -6.309 -1.622 0 0 0 0 0 0 0 +-16.251 -6.329 -1.62 0 0 0 0 0 0 0 +-16.194 -6.366 -1.616 0 0 0 0 0 0 0 +-16.13 -6.399 -1.611 0 0 0 0 0 0 0 +-16.052 -6.427 -1.605 0 0 0 0 0 0 0 +-15.992 -6.461 -1.6 0 0 0 0 0 0 0 +-15.932 -6.495 -1.596 0 0 0 0 0 0 0 +-15.906 -6.543 -1.595 0 0 0 0 0 0 0 +-15.931 -6.582 -1.599 0 0 0 0 0 0 0 +-15.936 -6.643 -1.602 0 0 0 0 0 0 0 +-15.835 -6.718 -1.595 0 0 0 0 0 0 0 +-15.745 -6.738 -1.587 0 0 0 0 0 0 0 +-15.952 -6.886 -1.613 0 0 0 0 0 0 0 +-15.967 -6.952 -1.617 0 0 0 0 0 0 0 +-15.992 -6.993 -1.622 0 0 0 0 0 0 0 +-15.967 -7.042 -1.621 0 0 0 0 0 0 0 +-15.888 -7.067 -1.615 0 0 0 0 0 0 0 +-15.789 -7.083 -1.606 0 0 0 0 0 0 0 +-15.705 -7.104 -1.599 0 0 0 0 0 0 0 +-15.645 -7.136 -1.595 0 0 0 0 0 0 0 +-15.648 -7.197 -1.597 0 0 0 0 0 0 0 +-15.662 -7.233 -1.6 0 0 0 0 0 0 0 +-15.679 -7.301 -1.605 0 0 0 0 0 0 0 +-15.663 -7.353 -1.606 0 0 0 0 0 0 0 +-15.699 -7.431 -1.613 0 0 0 0 0 0 0 +-14.785 -7.056 -1.51 0 0 0 0 0 0 0 +-15.704 -7.554 -1.619 0 0 0 0 0 0 0 +-15.716 -7.621 -1.623 0 0 0 0 0 0 0 +-15.724 -7.655 -1.625 0 0 0 0 0 0 0 +-14.77 -7.25 -1.517 0 0 0 0 0 0 0 +-14.719 -7.282 -1.514 0 0 0 0 0 0 0 +-14.689 -7.325 -1.513 0 0 0 0 0 0 0 +-14.66 -7.368 -1.512 0 0 0 0 0 0 0 +-16.122 -8.163 -1.686 0 0 0 0 0 0 0 +-16.128 -8.23 -1.69 0 0 0 0 0 0 0 +-16.147 -8.272 -1.693 0 0 0 0 0 0 0 +-16.151 -8.338 -1.697 0 0 0 0 0 0 0 +-16.157 -8.405 -1.701 0 0 0 0 0 0 0 +-16.167 -8.475 -1.705 0 0 0 0 0 0 0 +-16.17 -8.542 -1.709 0 0 0 0 0 0 0 +-16.179 -8.611 -1.713 0 0 0 0 0 0 0 +-16.183 -8.679 -1.716 0 0 0 0 0 0 0 +-16.196 -8.718 -1.72 0 0 0 0 0 0 0 +-16.205 -8.789 -1.724 0 0 0 0 0 0 0 +-16.212 -8.859 -1.728 0 0 0 0 0 0 0 +-16.217 -8.928 -1.732 0 0 0 0 0 0 0 +-16.231 -9.002 -1.737 0 0 0 0 0 0 0 +-16.239 -9.073 -1.741 0 0 0 0 0 0 0 +-16.244 -9.143 -1.745 0 0 0 0 0 0 0 +-16.248 -9.212 -1.749 0 0 0 0 0 0 0 +-16.268 -9.257 -1.753 0 0 0 0 0 0 0 +-16.277 -9.33 -1.758 0 0 0 0 0 0 0 +-16.277 -9.398 -1.761 0 0 0 0 0 0 0 +-16.293 -9.476 -1.767 0 0 0 0 0 0 0 +-16.303 -9.55 -1.772 0 0 0 0 0 0 0 +-16.311 -9.624 -1.776 0 0 0 0 0 0 0 +-16.315 -9.695 -1.781 0 0 0 0 0 0 0 +-16.34 -9.745 -1.786 0 0 0 0 0 0 0 +-16.349 -9.82 -1.79 0 0 0 0 0 0 0 +-16.357 -9.895 -1.795 0 0 0 0 0 0 0 +-16.358 -9.966 -1.799 0 0 0 0 0 0 0 +-16.371 -10.044 -1.804 0 0 0 0 0 0 0 +-16.373 -10.117 -1.809 0 0 0 0 0 0 0 +-16.38 -10.192 -1.813 0 0 0 0 0 0 0 +-16.391 -10.235 -1.817 0 0 0 0 0 0 0 +-16.396 -10.309 -1.821 0 0 0 0 0 0 0 +-16.411 -10.39 -1.827 0 0 0 0 0 0 0 +-16.42 -10.469 -1.832 0 0 0 0 0 0 0 +-16.426 -10.545 -1.837 0 0 0 0 0 0 0 +-16.439 -10.627 -1.843 0 0 0 0 0 0 0 +-16.436 -10.698 -1.847 0 0 0 0 0 0 0 +-16.461 -10.751 -1.852 0 0 0 0 0 0 0 +-16.475 -10.834 -1.858 0 0 0 0 0 0 0 +-16.474 -10.908 -1.862 0 0 0 0 0 0 0 +-16.453 -10.968 -1.864 0 0 0 0 0 0 0 +-16.458 -11.046 -1.869 0 0 0 0 0 0 0 +-16.46 -11.122 -1.873 0 0 0 0 0 0 0 +-16.464 -11.201 -1.878 0 0 0 0 0 0 0 +-16.502 -11.265 -1.885 0 0 0 0 0 0 0 +-10.588 -7.287 -1.141 0 0 0 0 0 0 0 +-10.555 -7.314 -1.14 0 0 0 0 0 0 0 +-10.516 -7.336 -1.138 0 0 0 0 0 0 0 +-10.486 -7.364 -1.137 0 0 0 0 0 0 0 +-10.432 -7.375 -1.133 0 0 0 0 0 0 0 +-10.42 -7.416 -1.135 0 0 0 0 0 0 0 +-10.425 -7.444 -1.137 0 0 0 0 0 0 0 +-10.404 -7.479 -1.137 0 0 0 0 0 0 0 +-10.378 -7.509 -1.137 0 0 0 0 0 0 0 +-10.37 -7.553 -1.139 0 0 0 0 0 0 0 +-10.369 -7.602 -1.142 0 0 0 0 0 0 0 +-10.362 -7.648 -1.144 0 0 0 0 0 0 0 +-10.425 -7.744 -1.155 0 0 0 0 0 0 0 +-10.563 -7.872 -1.175 0 0 0 0 0 0 0 +-10.519 -7.891 -1.172 0 0 0 0 0 0 0 +-10.475 -7.91 -1.17 0 0 0 0 0 0 0 +-10.417 -7.917 -1.165 0 0 0 0 0 0 0 +-16.066 -12.273 -1.91 0 0 0 0 0 0 0 +-16.041 -12.334 -1.912 0 0 0 0 0 0 0 +-16.007 -12.388 -1.912 0 0 0 0 0 0 0 +-15.981 -12.448 -1.914 0 0 0 0 0 0 0 +-15.975 -12.484 -1.916 0 0 0 0 0 0 0 +-15.938 -12.536 -1.916 0 0 0 0 0 0 0 +-15.895 -12.583 -1.916 0 0 0 0 0 0 0 +-15.862 -12.638 -1.917 0 0 0 0 0 0 0 +-15.824 -12.689 -1.917 0 0 0 0 0 0 0 +-15.794 -12.748 -1.918 0 0 0 0 0 0 0 +-15.773 -12.812 -1.921 0 0 0 0 0 0 0 +-15.747 -12.832 -1.92 0 0 0 0 0 0 0 +-15.703 -12.879 -1.919 0 0 0 0 0 0 0 +-15.666 -12.931 -1.92 0 0 0 0 0 0 0 +-15.628 -12.982 -1.92 0 0 0 0 0 0 0 +-15.595 -13.038 -1.921 0 0 0 0 0 0 0 +-15.561 -13.093 -1.922 0 0 0 0 0 0 0 +-15.529 -13.149 -1.924 0 0 0 0 0 0 0 +-15.513 -13.178 -1.924 0 0 0 0 0 0 0 +-15.466 -13.221 -1.923 0 0 0 0 0 0 0 +-15.409 -13.257 -1.921 0 0 0 0 0 0 0 +-15.391 -13.326 -1.925 0 0 0 0 0 0 0 +-15.382 -13.403 -1.929 0 0 0 0 0 0 0 +-15.366 -13.473 -1.933 0 0 0 0 0 0 0 +-15.319 -13.518 -1.932 0 0 0 0 0 0 0 +-13.799 -12.219 -1.723 0 0 0 0 0 0 0 +-15.314 -13.643 -1.94 0 0 0 0 0 0 0 +-13.608 -12.203 -1.708 0 0 0 0 0 0 0 +-15.205 -13.717 -1.937 0 0 0 0 0 0 0 +-15.172 -13.774 -1.939 0 0 0 0 0 0 0 +-15.133 -13.826 -1.939 0 0 0 0 0 0 0 +-15.083 -13.868 -1.938 0 0 0 0 0 0 0 +-15.081 -13.909 -1.941 0 0 0 0 0 0 0 +-15.028 -13.948 -1.94 0 0 0 0 0 0 0 +-15.002 -14.012 -1.942 0 0 0 0 0 0 0 +-14.969 -14.07 -1.944 0 0 0 0 0 0 0 +-14.938 -14.129 -1.946 0 0 0 0 0 0 0 +-14.836 -14.121 -1.938 0 0 0 0 0 0 0 +-14.883 -14.256 -1.951 0 0 0 0 0 0 0 +-14.054 -13.505 -1.834 0 0 0 0 0 0 0 +-13.813 -13.442 -1.812 0 0 0 0 0 0 0 +-14.729 -14.421 -1.951 0 0 0 0 0 0 0 +-14.743 -14.526 -1.96 0 0 0 0 0 0 0 +-14.713 -14.587 -1.962 0 0 0 0 0 0 0 +-14.684 -14.65 -1.965 0 0 0 0 0 0 0 +-14.668 -14.681 -1.966 0 0 0 0 0 0 0 +-14.643 -14.748 -1.969 0 0 0 0 0 0 0 +-14.593 -14.791 -1.968 0 0 0 0 0 0 0 +-14.554 -14.844 -1.97 0 0 0 0 0 0 0 +-14.524 -14.906 -1.972 0 0 0 0 0 0 0 +-14.484 -14.959 -1.973 0 0 0 0 0 0 0 +-14.442 -15.01 -1.974 0 0 0 0 0 0 0 +-14.405 -15.066 -1.975 0 0 0 0 0 0 0 +-14.366 -15.072 -1.973 0 0 0 0 0 0 0 +-14.336 -15.136 -1.976 0 0 0 0 0 0 0 +-14.3 -15.193 -1.977 0 0 0 0 0 0 0 +-14.128 -15.106 -1.959 0 0 0 0 0 0 0 +-13.996 -15.06 -1.946 0 0 0 0 0 0 0 +-13.992 -15.15 -1.952 0 0 0 0 0 0 0 +-14.103 -15.367 -1.977 0 0 0 0 0 0 0 +-14.12 -15.433 -1.983 0 0 0 0 0 0 0 +-14.066 -15.471 -1.982 0 0 0 0 0 0 0 +-14.05 -15.552 -1.987 0 0 0 0 0 0 0 +-14.02 -15.617 -1.99 0 0 0 0 0 0 0 +-13.994 -15.686 -1.994 0 0 0 0 0 0 0 +-13.943 -15.729 -1.994 0 0 0 0 0 0 0 +-13.912 -15.793 -1.997 0 0 0 0 0 0 0 +-13.899 -15.829 -1.998 0 0 0 0 0 0 0 +-13.858 -15.883 -2 0 0 0 0 0 0 0 +-13.82 -15.94 -2.002 0 0 0 0 0 0 0 +-13.785 -16.001 -2.004 0 0 0 0 0 0 0 +-13.736 -16.046 -2.004 0 0 0 0 0 0 0 +-13.68 -16.081 -2.003 0 0 0 0 0 0 0 +-13.644 -16.142 -2.006 0 0 0 0 0 0 0 +-13.631 -16.177 -2.008 0 0 0 0 0 0 0 +-13.569 -16.208 -2.006 0 0 0 0 0 0 0 +-13.54 -16.276 -2.01 0 0 0 0 0 0 0 +-13.521 -16.357 -2.015 0 0 0 0 0 0 0 +-13.508 -16.447 -2.021 0 0 0 0 0 0 0 +-13.512 -16.557 -2.03 0 0 0 0 0 0 0 +-13.508 -16.658 -2.038 0 0 0 0 0 0 0 +-13.544 -16.757 -2.049 0 0 0 0 0 0 0 +-13.542 -16.863 -2.057 0 0 0 0 0 0 0 +-13.532 -16.958 -2.064 0 0 0 0 0 0 0 +-13.537 -17.074 -2.074 0 0 0 0 0 0 0 +-13.532 -17.179 -2.082 0 0 0 0 0 0 0 +-13.499 -17.248 -2.086 0 0 0 0 0 0 0 +-13.475 -17.329 -2.091 0 0 0 0 0 0 0 +-13.466 -17.374 -2.094 0 0 0 0 0 0 0 +-13.37 -17.363 -2.087 0 0 0 0 0 0 0 +-13.27 -17.345 -2.079 0 0 0 0 0 0 0 +-13.198 -17.364 -2.076 0 0 0 0 0 0 0 +-13.159 -17.426 -2.079 0 0 0 0 0 0 0 +-13.078 -17.432 -2.074 0 0 0 0 0 0 0 +-12.99 -17.429 -2.069 0 0 0 0 0 0 0 +-12.919 -17.39 -2.061 0 0 0 0 0 0 0 +-12.823 -17.375 -2.054 0 0 0 0 0 0 0 +-12.734 -17.368 -2.048 0 0 0 0 0 0 0 +-12.66 -17.382 -2.044 0 0 0 0 0 0 0 +-12.565 -17.366 -2.037 0 0 0 0 0 0 0 +-12.468 -17.347 -2.03 0 0 0 0 0 0 0 +-12.381 -17.341 -2.024 0 0 0 0 0 0 0 +-12.309 -17.297 -2.016 0 0 0 0 0 0 0 +-12.21 -17.272 -2.008 0 0 0 0 0 0 0 +-12.142 -17.291 -2.005 0 0 0 0 0 0 0 +-12.075 -17.311 -2.003 0 0 0 0 0 0 0 +-12.008 -17.331 -2 0 0 0 0 0 0 0 +-11.94 -17.349 -1.998 0 0 0 0 0 0 0 +-11.867 -17.36 -1.995 0 0 0 0 0 0 0 +-11.809 -17.333 -1.989 0 0 0 0 0 0 0 +-11.734 -17.34 -1.985 0 0 0 0 0 0 0 +-11.657 -17.344 -1.981 0 0 0 0 0 0 0 +-11.588 -17.359 -1.978 0 0 0 0 0 0 0 +-11.513 -17.364 -1.974 0 0 0 0 0 0 0 +-11.443 -17.377 -1.971 0 0 0 0 0 0 0 +-11.375 -17.393 -1.969 0 0 0 0 0 0 0 +-11.334 -17.389 -1.966 0 0 0 0 0 0 0 +-11.263 -17.399 -1.963 0 0 0 0 0 0 0 +-11.206 -17.431 -1.963 0 0 0 0 0 0 0 +-11.126 -17.428 -1.958 0 0 0 0 0 0 0 +-11.049 -17.428 -1.954 0 0 0 0 0 0 0 +-10.985 -17.447 -1.952 0 0 0 0 0 0 0 +-10.925 -17.473 -1.951 0 0 0 0 0 0 0 +-10.873 -17.451 -1.946 0 0 0 0 0 0 0 +-10.814 -17.479 -1.945 0 0 0 0 0 0 0 +-10.758 -17.511 -1.945 0 0 0 0 0 0 0 +-10.689 -17.523 -1.942 0 0 0 0 0 0 0 +-10.633 -17.554 -1.942 0 0 0 0 0 0 0 +-10.574 -17.581 -1.941 0 0 0 0 0 0 0 +-10.507 -17.595 -1.939 0 0 0 0 0 0 0 +-10.484 -17.619 -1.94 0 0 0 0 0 0 0 +-10.413 -17.626 -1.937 0 0 0 0 0 0 0 +-10.35 -17.645 -1.935 0 0 0 0 0 0 0 +-10.271 -17.638 -1.93 0 0 0 0 0 0 0 +-10.21 -17.659 -1.929 0 0 0 0 0 0 0 +-10.133 -17.655 -1.924 0 0 0 0 0 0 0 +-10.072 -17.677 -1.923 0 0 0 0 0 0 0 +-10.01 -17.698 -1.922 0 0 0 0 0 0 0 +-9.97 -17.691 -1.919 0 0 0 0 0 0 0 +-9.904 -17.705 -1.917 0 0 0 0 0 0 0 +-9.839 -17.719 -1.915 0 0 0 0 0 0 0 +-9.773 -17.73 -1.913 0 0 0 0 0 0 0 +-9.708 -17.745 -1.911 0 0 0 0 0 0 0 +-9.639 -17.751 -1.908 0 0 0 0 0 0 0 +-9.573 -17.762 -1.906 0 0 0 0 0 0 0 +-9.533 -17.754 -1.903 0 0 0 0 0 0 0 +-9.471 -17.774 -1.902 0 0 0 0 0 0 0 +-9.406 -17.786 -1.9 0 0 0 0 0 0 0 +-9.364 -17.842 -1.903 0 0 0 0 0 0 0 +-9.312 -17.878 -1.904 0 0 0 0 0 0 0 +-9.247 -17.891 -1.902 0 0 0 0 0 0 0 +-9.187 -17.911 -1.901 0 0 0 0 0 0 0 +-9.147 -17.904 -1.898 0 0 0 0 0 0 0 +-9.093 -17.937 -1.899 0 0 0 0 0 0 0 +-9.036 -17.963 -1.899 0 0 0 0 0 0 0 +-8.971 -17.976 -1.897 0 0 0 0 0 0 0 +-8.916 -18.007 -1.897 0 0 0 0 0 0 0 +-8.862 -18.041 -1.898 0 0 0 0 0 0 0 +-8.804 -18.065 -1.897 0 0 0 0 0 0 0 +-8.779 -18.086 -1.898 0 0 0 0 0 0 0 +-8.725 -18.119 -1.899 0 0 0 0 0 0 0 +-8.673 -18.157 -1.9 0 0 0 0 0 0 0 +-8.612 -18.175 -1.899 0 0 0 0 0 0 0 +-8.571 -18.236 -1.903 0 0 0 0 0 0 0 +-8.514 -18.265 -1.903 0 0 0 0 0 0 0 +-8.416 -18.203 -1.893 0 0 0 0 0 0 0 +-8.387 -18.216 -1.893 0 0 0 0 0 0 0 +-8.332 -18.246 -1.893 0 0 0 0 0 0 0 +-8.271 -18.265 -1.892 0 0 0 0 0 0 0 +-8.212 -18.287 -1.892 0 0 0 0 0 0 0 +-8.148 -18.298 -1.89 0 0 0 0 0 0 0 +-8.087 -18.316 -1.89 0 0 0 0 0 0 0 +-8.025 -18.331 -1.888 0 0 0 0 0 0 0 +-7.988 -18.325 -1.886 0 0 0 0 0 0 0 +-7.931 -18.352 -1.886 0 0 0 0 0 0 0 +-7.865 -18.357 -1.884 0 0 0 0 0 0 0 +-7.801 -18.367 -1.883 0 0 0 0 0 0 0 +-7.742 -18.388 -1.882 0 0 0 0 0 0 0 +-7.678 -18.397 -1.88 0 0 0 0 0 0 0 +-7.617 -18.414 -1.88 0 0 0 0 0 0 0 +-7.586 -18.422 -1.879 0 0 0 0 0 0 0 +-7.52 -18.425 -1.877 0 0 0 0 0 0 0 +-7.462 -18.449 -1.877 0 0 0 0 0 0 0 +-7.4 -18.463 -1.876 0 0 0 0 0 0 0 +-7.339 -18.479 -1.875 0 0 0 0 0 0 0 +-7.281 -18.502 -1.875 0 0 0 0 0 0 0 +-7.219 -18.514 -1.874 0 0 0 0 0 0 0 +-7.16 -18.449 -1.865 0 0 0 0 0 0 0 +-7.142 -18.573 -1.877 0 0 0 0 0 0 0 +-7.088 -18.609 -1.878 0 0 0 0 0 0 0 +-7.008 -18.575 -1.872 0 0 0 0 0 0 0 +-6.928 -18.539 -1.866 0 0 0 0 0 0 0 +-6.854 -18.516 -1.861 0 0 0 0 0 0 0 +-6.793 -18.532 -1.86 0 0 0 0 0 0 0 +-6.758 -18.526 -1.858 0 0 0 0 0 0 0 +-6.698 -18.543 -1.858 0 0 0 0 0 0 0 +-6.635 -18.551 -1.856 0 0 0 0 0 0 0 +-6.576 -18.57 -1.856 0 0 0 0 0 0 0 +-6.514 -18.579 -1.855 0 0 0 0 0 0 0 +-6.454 -18.594 -1.854 0 0 0 0 0 0 0 +-6.39 -18.599 -1.852 0 0 0 0 0 0 0 +-6.352 -18.583 -1.85 0 0 0 0 0 0 0 +-6.288 -18.586 -1.848 0 0 0 0 0 0 0 +-6.243 -18.645 -1.852 0 0 0 0 0 0 0 +-6.212 -18.748 -1.861 0 0 0 0 0 0 0 +-6.136 -18.718 -1.856 0 0 0 0 0 0 0 +-6.063 -18.694 -1.851 0 0 0 0 0 0 0 +-5.997 -18.688 -1.848 0 0 0 0 0 0 0 +-5.968 -18.699 -1.848 0 0 0 0 0 0 0 +-5.904 -18.703 -1.847 0 0 0 0 0 0 0 +-5.841 -18.708 -1.845 0 0 0 0 0 0 0 +-5.766 -18.673 -1.84 0 0 0 0 0 0 0 +-5.699 -18.662 -1.836 0 0 0 0 0 0 0 +-5.665 -18.764 -1.846 0 0 0 0 0 0 0 +-5.621 -18.829 -1.851 0 0 0 0 0 0 0 +-5.609 -18.897 -1.857 0 0 0 0 0 0 0 +-5.549 -18.913 -1.857 0 0 0 0 0 0 0 +-5.489 -18.93 -1.857 0 0 0 0 0 0 0 +-5.462 -19.06 -1.869 0 0 0 0 0 0 0 +-5.356 -18.913 -1.851 0 0 0 0 0 0 0 +-5.289 -18.904 -1.849 0 0 0 0 0 0 0 +-5.22 -18.887 -1.845 0 0 0 0 0 0 0 +-5.156 -18.886 -1.843 0 0 0 0 0 0 0 +-5.124 -18.886 -1.842 0 0 0 0 0 0 0 +-5.063 -18.894 -1.841 0 0 0 0 0 0 0 +-5.003 -18.908 -1.841 0 0 0 0 0 0 0 +-4.945 -18.93 -1.842 0 0 0 0 0 0 0 +-4.886 -18.947 -1.842 0 0 0 0 0 0 0 +-4.825 -18.956 -1.841 0 0 0 0 0 0 0 +-4.768 -18.981 -1.842 0 0 0 0 0 0 0 +-4.735 -18.975 -1.841 0 0 0 0 0 0 0 +-4.677 -18.996 -1.842 0 0 0 0 0 0 0 +-4.616 -19.006 -1.841 0 0 0 0 0 0 0 +-4.555 -19.015 -1.841 0 0 0 0 0 0 0 +-4.496 -19.035 -1.841 0 0 0 0 0 0 0 +-4.432 -19.028 -1.839 0 0 0 0 0 0 0 +-4.417 -19.099 -1.846 0 0 0 0 0 0 0 +-4.368 -19.163 -1.851 0 0 0 0 0 0 0 +-4.304 -19.159 -1.849 0 0 0 0 0 0 0 +-4.241 -19.159 -1.848 0 0 0 0 0 0 0 +-4.185 -19.191 -1.85 0 0 0 0 0 0 0 +-4.141 -19.282 -1.858 0 0 0 0 0 0 0 +-4.059 -19.194 -1.847 0 0 0 0 0 0 0 +-3.955 -19.147 -1.84 0 0 0 0 0 0 0 +-3.875 -19.064 -1.83 0 0 0 0 0 0 0 +-3.8 -18.998 -1.822 0 0 0 0 0 0 0 +-3.729 -18.955 -1.816 0 0 0 0 0 0 0 +-3.667 -18.955 -1.815 0 0 0 0 0 0 0 +-3.606 -18.96 -1.814 0 0 0 0 0 0 0 +-3.55 -18.987 -1.816 0 0 0 0 0 0 0 +-3.517 -18.979 -1.814 0 0 0 0 0 0 0 +-3.455 -18.974 -1.813 0 0 0 0 0 0 0 +-3.392 -18.968 -1.811 0 0 0 0 0 0 0 +-3.331 -18.968 -1.81 0 0 0 0 0 0 0 +-3.27 -18.971 -1.809 0 0 0 0 0 0 0 +-3.209 -18.973 -1.808 0 0 0 0 0 0 0 +-3.147 -18.971 -1.807 0 0 0 0 0 0 0 +-3.058 -18.988 -1.807 0 0 0 0 0 0 0 +-2.999 -18.999 -1.807 0 0 0 0 0 0 0 +-2.938 -18.999 -1.806 0 0 0 0 0 0 0 +-2.878 -19.012 -1.807 0 0 0 0 0 0 0 +-2.818 -19.017 -1.806 0 0 0 0 0 0 0 +-2.76 -19.036 -1.807 0 0 0 0 0 0 0 +-2.729 -19.034 -1.807 0 0 0 0 0 0 0 +-2.67 -19.046 -1.807 0 0 0 0 0 0 0 +-2.61 -19.055 -1.807 0 0 0 0 0 0 0 +-2.551 -19.071 -1.808 0 0 0 0 0 0 0 +-2.495 -19.11 -1.811 0 0 0 0 0 0 0 +-2.438 -19.142 -1.814 0 0 0 0 0 0 0 +-2.382 -19.183 -1.817 0 0 0 0 0 0 0 +-2.354 -19.196 -1.818 0 0 0 0 0 0 0 +-2.295 -19.221 -1.82 0 0 0 0 0 0 0 +-2.237 -19.242 -1.822 0 0 0 0 0 0 0 +-2.176 -19.247 -1.821 0 0 0 0 0 0 0 +-1.922 -17.518 -1.639 0 0 0 0 0 0 0 +-1.829 -17.168 -1.602 0 0 0 0 0 0 0 +-1.716 -16.87 -1.57 0 0 0 0 0 0 0 +-1.663 -16.873 -1.569 0 0 0 0 0 0 0 +-1.617 -16.952 -1.577 0 0 0 0 0 0 0 +-1.559 -16.905 -1.572 0 0 0 0 0 0 0 +-1.504 -16.886 -1.569 0 0 0 0 0 0 0 +-1.456 -16.948 -1.575 0 0 0 0 0 0 0 +-1.395 -16.86 -1.566 0 0 0 0 0 0 0 +-1.374 -16.937 -1.573 0 0 0 0 0 0 0 +-1.321 -16.937 -1.573 0 0 0 0 0 0 0 +-1.269 -16.953 -1.574 0 0 0 0 0 0 0 +-1.215 -16.951 -1.574 0 0 0 0 0 0 0 +-1.162 -16.961 -1.574 0 0 0 0 0 0 0 +-1.109 -16.971 -1.575 0 0 0 0 0 0 0 +-1.057 -16.992 -1.577 0 0 0 0 0 0 0 +-1.029 -16.98 -1.575 0 0 0 0 0 0 0 +-0.976 -16.975 -1.574 0 0 0 0 0 0 0 +-0.921 -16.96 -1.573 0 0 0 0 0 0 0 +-0.869 -16.981 -1.574 0 0 0 0 0 0 0 +-0.816 -16.983 -1.574 0 0 0 0 0 0 0 +-0.762 -16.988 -1.575 0 0 0 0 0 0 0 +-0.709 -17.002 -1.576 0 0 0 0 0 0 0 +-0.681 -16.961 -1.572 0 0 0 0 0 0 0 +-0.628 -16.985 -1.574 0 0 0 0 0 0 0 +-0.576 -17.005 -1.576 0 0 0 0 0 0 0 +-0.523 -17.021 -1.577 0 0 0 0 0 0 0 +-0.47 -17.046 -1.58 0 0 0 0 0 0 0 +-0.417 -17.053 -1.58 0 0 0 0 0 0 0 +-0.367 -17.208 -1.596 0 0 0 0 0 0 0 +-0.391 -19.652 -1.851 0 0 0 0 0 0 0 +-0.33 -19.693 -1.856 0 0 0 0 0 0 0 +-0.269 -19.716 -1.858 0 0 0 0 0 0 0 +-0.207 -19.739 -1.86 0 0 0 0 0 0 0 +-0.145 -19.765 -1.863 0 0 0 0 0 0 0 +-0.083 -19.764 -1.863 0 0 0 0 0 0 0 +-0.021 -19.782 -1.864 0 0 0 0 0 0 0 +0.01 -19.821 -1.869 0 0 0 0 0 0 0 +0.072 -19.813 -1.868 0 0 0 0 0 0 0 +0.135 -19.851 -1.872 0 0 0 0 0 0 0 +0.197 -19.854 -1.872 0 0 0 0 0 0 0 +0.259 -19.858 -1.873 0 0 0 0 0 0 0 +0.319 -19.67 -1.853 0 0 0 0 0 0 0 +0.376 -19.426 -1.828 0 0 0 0 0 0 0 +0.403 -19.216 -1.806 0 0 0 0 0 0 0 +0.458 -18.996 -1.783 0 0 0 0 0 0 0 +0.512 -18.762 -1.759 0 0 0 0 0 0 0 +0.565 -18.572 -1.739 0 0 0 0 0 0 0 +0.621 -18.486 -1.73 0 0 0 0 0 0 0 +0.679 -18.47 -1.729 0 0 0 0 0 0 0 +0.736 -18.466 -1.729 0 0 0 0 0 0 0 +0.766 -18.471 -1.729 0 0 0 0 0 0 0 +0.823 -18.458 -1.728 0 0 0 0 0 0 0 +0.88 -18.432 -1.726 0 0 0 0 0 0 0 +0.938 -18.435 -1.726 0 0 0 0 0 0 0 +0.995 -18.412 -1.724 0 0 0 0 0 0 0 +1.052 -18.395 -1.723 0 0 0 0 0 0 0 +1.109 -18.374 -1.721 0 0 0 0 0 0 0 +1.137 -18.356 -1.719 0 0 0 0 0 0 0 +1.194 -18.34 -1.718 0 0 0 0 0 0 0 +1.25 -18.321 -1.716 0 0 0 0 0 0 0 +1.307 -18.307 -1.715 0 0 0 0 0 0 0 +1.366 -18.316 -1.717 0 0 0 0 0 0 0 +1.422 -18.294 -1.715 0 0 0 0 0 0 0 +1.478 -18.274 -1.713 0 0 0 0 0 0 0 +1.534 -18.253 -1.712 0 0 0 0 0 0 0 +1.562 -18.237 -1.71 0 0 0 0 0 0 0 +1.617 -18.208 -1.708 0 0 0 0 0 0 0 +1.676 -18.227 -1.71 0 0 0 0 0 0 0 +1.728 -18.162 -1.704 0 0 0 0 0 0 0 +1.783 -18.139 -1.702 0 0 0 0 0 0 0 +1.839 -18.125 -1.701 0 0 0 0 0 0 0 +1.893 -18.088 -1.698 0 0 0 0 0 0 0 +1.919 -18.061 -1.695 0 0 0 0 0 0 0 +1.975 -18.047 -1.695 0 0 0 0 0 0 0 +2.028 -18.011 -1.692 0 0 0 0 0 0 0 +2.083 -17.985 -1.689 0 0 0 0 0 0 0 +2.139 -17.978 -1.689 0 0 0 0 0 0 0 +2.193 -17.951 -1.687 0 0 0 0 0 0 0 +2.219 -17.93 -1.686 0 0 0 0 0 0 0 +2.274 -17.911 -1.684 0 0 0 0 0 0 0 +2.331 -17.91 -1.685 0 0 0 0 0 0 0 +2.388 -17.906 -1.685 0 0 0 0 0 0 0 +2.439 -17.859 -1.681 0 0 0 0 0 0 0 +2.493 -17.84 -1.68 0 0 0 0 0 0 0 +2.547 -17.814 -1.678 0 0 0 0 0 0 0 +2.597 -17.769 -1.674 0 0 0 0 0 0 0 +2.622 -17.745 -1.672 0 0 0 0 0 0 0 +2.676 -17.721 -1.67 0 0 0 0 0 0 0 +2.729 -17.695 -1.668 0 0 0 0 0 0 0 +2.781 -17.668 -1.667 0 0 0 0 0 0 0 +2.834 -17.64 -1.665 0 0 0 0 0 0 0 +2.888 -17.623 -1.664 0 0 0 0 0 0 0 +2.941 -17.6 -1.662 0 0 0 0 0 0 0 +2.968 -17.592 -1.662 0 0 0 0 0 0 0 +3.021 -17.566 -1.66 0 0 0 0 0 0 0 +3.073 -17.539 -1.658 0 0 0 0 0 0 0 +3.126 -17.52 -1.657 0 0 0 0 0 0 0 +3.178 -17.492 -1.655 0 0 0 0 0 0 0 +3.23 -17.468 -1.654 0 0 0 0 0 0 0 +3.283 -17.446 -1.653 0 0 0 0 0 0 0 +3.311 -17.445 -1.653 0 0 0 0 0 0 0 +3.361 -17.411 -1.651 0 0 0 0 0 0 0 +3.412 -17.381 -1.649 0 0 0 0 0 0 0 +1.321 -6.535 -0.496 0 0 0 0 0 0 0 +1.335 -6.499 -0.492 0 0 0 0 0 0 0 +1.343 -6.435 -0.486 0 0 0 0 0 0 0 +1.354 -6.386 -0.481 0 0 0 0 0 0 0 +1.36 -6.362 -0.479 0 0 0 0 0 0 0 +1.382 -6.369 -0.48 0 0 0 0 0 0 0 +1.4 -6.357 -0.479 0 0 0 0 0 0 0 +1.414 -6.324 -0.476 0 0 0 0 0 0 0 +1.447 -6.379 -0.483 0 0 0 0 0 0 0 +1.466 -6.369 -0.482 0 0 0 0 0 0 0 +1.488 -6.374 -0.483 0 0 0 0 0 0 0 +1.501 -6.385 -0.484 0 0 0 0 0 0 0 +1.525 -6.398 -0.486 0 0 0 0 0 0 0 +1.548 -6.405 -0.488 0 0 0 0 0 0 0 +1.571 -6.412 -0.489 0 0 0 0 0 0 0 +4.194 -16.836 -1.611 0 0 0 0 0 0 0 +4.241 -16.8 -1.608 0 0 0 0 0 0 0 +4.265 -16.782 -1.607 0 0 0 0 0 0 0 +4.315 -16.757 -1.606 0 0 0 0 0 0 0 +4.354 -16.693 -1.6 0 0 0 0 0 0 0 +4.322 -16.358 -1.566 0 0 0 0 0 0 0 +4.425 -16.538 -1.587 0 0 0 0 0 0 0 +4.485 -16.553 -1.59 0 0 0 0 0 0 0 +4.465 -16.274 -1.561 0 0 0 0 0 0 0 +4.446 -16.106 -1.544 0 0 0 0 0 0 0 +4.556 -16.305 -1.567 0 0 0 0 0 0 0 +4.581 -16.196 -1.557 0 0 0 0 0 0 0 +4.609 -16.103 -1.548 0 0 0 0 0 0 0 +4.628 -15.98 -1.536 0 0 0 0 0 0 0 +4.655 -15.885 -1.528 0 0 0 0 0 0 0 +4.677 -15.775 -1.517 0 0 0 0 0 0 0 +4.676 -15.682 -1.508 0 0 0 0 0 0 0 +4.697 -15.574 -1.498 0 0 0 0 0 0 0 +4.723 -15.481 -1.489 0 0 0 0 0 0 0 +4.744 -15.378 -1.48 0 0 0 0 0 0 0 +4.765 -15.274 -1.47 0 0 0 0 0 0 0 +4.792 -15.193 -1.463 0 0 0 0 0 0 0 +4.81 -15.085 -1.452 0 0 0 0 0 0 0 +4.819 -15.03 -1.447 0 0 0 0 0 0 0 +4.853 -14.973 -1.443 0 0 0 0 0 0 0 +4.904 -14.971 -1.444 0 0 0 0 0 0 0 +4.96 -14.984 -1.447 0 0 0 0 0 0 0 +5.008 -14.968 -1.447 0 0 0 0 0 0 0 +5.069 -14.996 -1.452 0 0 0 0 0 0 0 +5.119 -14.987 -1.453 0 0 0 0 0 0 0 +5.155 -15.017 -1.457 0 0 0 0 0 0 0 +5.198 -14.989 -1.456 0 0 0 0 0 0 0 +3.683 -10.489 -0.96 0 0 0 0 0 0 0 +3.718 -10.483 -0.961 0 0 0 0 0 0 0 +3.739 -10.439 -0.957 0 0 0 0 0 0 0 +3.779 -10.446 -0.959 0 0 0 0 0 0 0 +3.816 -10.447 -0.961 0 0 0 0 0 0 0 +5.511 -15.047 -1.472 0 0 0 0 0 0 0 +5.564 -15.044 -1.474 0 0 0 0 0 0 0 +5.621 -15.053 -1.477 0 0 0 0 0 0 0 +5.681 -15.07 -1.481 0 0 0 0 0 0 0 +5.736 -15.073 -1.483 0 0 0 0 0 0 0 +5.792 -15.077 -1.486 0 0 0 0 0 0 0 +5.843 -15.068 -1.487 0 0 0 0 0 0 0 +5.873 -15.074 -1.488 0 0 0 0 0 0 0 +5.937 -15.1 -1.493 0 0 0 0 0 0 0 +5.999 -15.116 -1.497 0 0 0 0 0 0 0 +6.049 -15.105 -1.498 0 0 0 0 0 0 0 +5.372 -13.284 -1.295 0 0 0 0 0 0 0 +5.412 -13.264 -1.295 0 0 0 0 0 0 0 +5.443 -13.221 -1.292 0 0 0 0 0 0 0 +5.443 -13.161 -1.286 0 0 0 0 0 0 0 +5.492 -13.164 -1.289 0 0 0 0 0 0 0 +5.537 -13.154 -1.289 0 0 0 0 0 0 0 +5.594 -13.173 -1.294 0 0 0 0 0 0 0 +5.58 -13.027 -1.279 0 0 0 0 0 0 0 +5.679 -13.145 -1.294 0 0 0 0 0 0 0 +5.676 -13.025 -1.283 0 0 0 0 0 0 0 +5.697 -13.016 -1.283 0 0 0 0 0 0 0 +5.707 -12.929 -1.275 0 0 0 0 0 0 0 +5.754 -12.925 -1.277 0 0 0 0 0 0 0 +5.831 -12.987 -1.286 0 0 0 0 0 0 0 +5.819 -12.853 -1.272 0 0 0 0 0 0 0 +5.919 -12.966 -1.288 0 0 0 0 0 0 0 +5.78 -12.553 -1.242 0 0 0 0 0 0 0 +5.833 -12.618 -1.251 0 0 0 0 0 0 0 +5.91 -12.68 -1.26 0 0 0 0 0 0 0 +6.05 -12.875 -1.285 0 0 0 0 0 0 0 +6.085 -12.845 -1.283 0 0 0 0 0 0 0 +6.073 -12.715 -1.27 0 0 0 0 0 0 0 +5.959 -12.376 -1.234 0 0 0 0 0 0 0 +5.979 -12.318 -1.229 0 0 0 0 0 0 0 +6.094 -12.406 -1.242 0 0 0 0 0 0 0 +6.107 -12.333 -1.236 0 0 0 0 0 0 0 +6.137 -12.298 -1.234 0 0 0 0 0 0 0 +6.167 -12.261 -1.232 0 0 0 0 0 0 0 +6.223 -12.277 -1.236 0 0 0 0 0 0 0 +6.186 -12.108 -1.219 0 0 0 0 0 0 0 +6.208 -12.104 -1.22 0 0 0 0 0 0 0 +6.265 -12.122 -1.224 0 0 0 0 0 0 0 +6.268 -12.035 -1.216 0 0 0 0 0 0 0 +6.329 -12.059 -1.221 0 0 0 0 0 0 0 +6.375 -12.055 -1.223 0 0 0 0 0 0 0 +6.387 -11.986 -1.217 0 0 0 0 0 0 0 +6.559 -12.216 -1.247 0 0 0 0 0 0 0 +6.58 -12.21 -1.247 0 0 0 0 0 0 0 +6.627 -12.205 -1.249 0 0 0 0 0 0 0 +6.595 -12.055 -1.234 0 0 0 0 0 0 0 +6.583 -11.943 -1.223 0 0 0 0 0 0 0 +6.544 -11.785 -1.207 0 0 0 0 0 0 0 +6.631 -11.855 -1.218 0 0 0 0 0 0 0 +6.708 -11.903 -1.226 0 0 0 0 0 0 0 +6.806 -12.035 -1.243 0 0 0 0 0 0 0 +6.754 -11.854 -1.224 0 0 0 0 0 0 0 +6.755 -11.769 -1.216 0 0 0 0 0 0 0 +6.749 -11.673 -1.207 0 0 0 0 0 0 0 +6.767 -11.621 -1.203 0 0 0 0 0 0 0 +6.861 -11.698 -1.215 0 0 0 0 0 0 0 +6.897 -11.674 -1.215 0 0 0 0 0 0 0 +7.061 -11.91 -1.245 0 0 0 0 0 0 0 +7.14 -11.958 -1.253 0 0 0 0 0 0 0 +7.042 -11.71 -1.226 0 0 0 0 0 0 0 +6.994 -11.547 -1.209 0 0 0 0 0 0 0 +7.13 -11.606 -1.221 0 0 0 0 0 0 0 +7.186 -11.616 -1.225 0 0 0 0 0 0 0 +7.213 -11.618 -1.227 0 0 0 0 0 0 0 +7.276 -11.639 -1.232 0 0 0 0 0 0 0 +7.102 -11.279 -1.191 0 0 0 0 0 0 0 +7.128 -11.243 -1.189 0 0 0 0 0 0 0 +7.134 -11.174 -1.183 0 0 0 0 0 0 0 +7.242 -11.265 -1.198 0 0 0 0 0 0 0 +7.294 -11.269 -1.201 0 0 0 0 0 0 0 +7.406 -11.403 -1.219 0 0 0 0 0 0 0 +7.41 -11.332 -1.213 0 0 0 0 0 0 0 +7.411 -11.255 -1.206 0 0 0 0 0 0 0 +7.377 -11.051 -1.187 0 0 0 0 0 0 0 +7.447 -11.081 -1.193 0 0 0 0 0 0 0 +7.472 -11.042 -1.191 0 0 0 0 0 0 0 +7.483 -11.021 -1.19 0 0 0 0 0 0 0 +7.479 -10.941 -1.183 0 0 0 0 0 0 0 +7.554 -10.977 -1.191 0 0 0 0 0 0 0 +7.562 -10.915 -1.186 0 0 0 0 0 0 0 +7.593 -10.886 -1.185 0 0 0 0 0 0 0 +7.619 -10.851 -1.184 0 0 0 0 0 0 0 +7.62 -10.78 -1.178 0 0 0 0 0 0 0 +7.618 -10.74 -1.174 0 0 0 0 0 0 0 +7.653 -10.718 -1.174 0 0 0 0 0 0 0 +7.723 -10.746 -1.181 0 0 0 0 0 0 0 +7.729 -10.683 -1.176 0 0 0 0 0 0 0 +7.764 -10.66 -1.176 0 0 0 0 0 0 0 +7.78 -10.611 -1.173 0 0 0 0 0 0 0 +7.802 -10.572 -1.171 0 0 0 0 0 0 0 +7.822 -10.565 -1.172 0 0 0 0 0 0 0 +7.85 -10.532 -1.171 0 0 0 0 0 0 0 +7.881 -10.506 -1.171 0 0 0 0 0 0 0 +7.891 -10.449 -1.166 0 0 0 0 0 0 0 +7.931 -10.434 -1.168 0 0 0 0 0 0 0 +7.956 -10.4 -1.166 0 0 0 0 0 0 0 +7.994 -10.381 -1.167 0 0 0 0 0 0 0 +8.037 -10.37 -1.169 0 0 0 0 0 0 0 +8.029 -10.326 -1.165 0 0 0 0 0 0 0 +8.064 -10.304 -1.165 0 0 0 0 0 0 0 +8.067 -10.241 -1.16 0 0 0 0 0 0 0 +8.099 -10.215 -1.16 0 0 0 0 0 0 0 +8.111 -10.165 -1.157 0 0 0 0 0 0 0 +8.165 -10.167 -1.161 0 0 0 0 0 0 0 +8.17 -10.108 -1.156 0 0 0 0 0 0 0 +8.206 -10.12 -1.16 0 0 0 0 0 0 0 +8.137 -9.97 -1.143 0 0 0 0 0 0 0 +8.215 -10.002 -1.151 0 0 0 0 0 0 0 +8.297 -10.037 -1.159 0 0 0 0 0 0 0 +8.318 -9.999 -1.157 0 0 0 0 0 0 0 +8.338 -9.959 -1.155 0 0 0 0 0 0 0 +8.308 -9.891 -1.148 0 0 0 0 0 0 0 +8.332 -9.857 -1.147 0 0 0 0 0 0 0 +8.313 -9.772 -1.139 0 0 0 0 0 0 0 +8.414 -9.827 -1.15 0 0 0 0 0 0 0 +8.422 -9.775 -1.147 0 0 0 0 0 0 0 +8.492 -9.794 -1.153 0 0 0 0 0 0 0 +8.499 -9.74 -1.149 0 0 0 0 0 0 0 +8.568 -9.788 -1.158 0 0 0 0 0 0 0 +8.571 -9.73 -1.153 0 0 0 0 0 0 0 +8.598 -9.698 -1.153 0 0 0 0 0 0 0 +8.64 -9.685 -1.154 0 0 0 0 0 0 0 +8.69 -9.68 -1.158 0 0 0 0 0 0 0 +8.621 -9.541 -1.142 0 0 0 0 0 0 0 +8.69 -9.557 -1.148 0 0 0 0 0 0 0 +8.765 -9.61 -1.157 0 0 0 0 0 0 0 +8.638 -9.41 -1.133 0 0 0 0 0 0 0 +8.789 -9.515 -1.152 0 0 0 0 0 0 0 +8.806 -9.474 -1.15 0 0 0 0 0 0 0 +8.798 -9.406 -1.144 0 0 0 0 0 0 0 +8.743 -9.288 -1.131 0 0 0 0 0 0 0 +8.919 -9.415 -1.153 0 0 0 0 0 0 0 +8.78 -9.21 -1.128 0 0 0 0 0 0 0 +8.876 -9.282 -1.14 0 0 0 0 0 0 0 +8.989 -9.342 -1.153 0 0 0 0 0 0 0 +9.053 -9.35 -1.158 0 0 0 0 0 0 0 +9.004 -9.24 -1.146 0 0 0 0 0 0 0 +8.977 -9.154 -1.138 0 0 0 0 0 0 0 +9.103 -9.225 -1.153 0 0 0 0 0 0 0 +9.132 -9.197 -1.153 0 0 0 0 0 0 0 +9.165 -9.201 -1.155 0 0 0 0 0 0 0 +9.153 -9.131 -1.149 0 0 0 0 0 0 0 +9.184 -9.105 -1.15 0 0 0 0 0 0 0 +9.212 -9.075 -1.149 0 0 0 0 0 0 0 +9.076 -8.884 -1.125 0 0 0 0 0 0 0 +9.093 -8.846 -1.124 0 0 0 0 0 0 0 +9.205 -8.899 -1.136 0 0 0 0 0 0 0 +9.378 -9.038 -1.159 0 0 0 0 0 0 0 +9.365 -8.969 -1.153 0 0 0 0 0 0 0 +9.423 -8.968 -1.158 0 0 0 0 0 0 0 +9.461 -8.948 -1.159 0 0 0 0 0 0 0 +9.539 -8.965 -1.166 0 0 0 0 0 0 0 +9.57 -8.937 -1.166 0 0 0 0 0 0 0 +9.26 -8.619 -1.12 0 0 0 0 0 0 0 +9.524 -8.811 -1.154 0 0 0 0 0 0 0 +9.651 -8.873 -1.168 0 0 0 0 0 0 0 +9.669 -8.833 -1.167 0 0 0 0 0 0 0 +9.669 -8.777 -1.163 0 0 0 0 0 0 0 +9.556 -8.62 -1.143 0 0 0 0 0 0 0 +9.237 -8.278 -1.094 0 0 0 0 0 0 0 +9.247 -8.235 -1.092 0 0 0 0 0 0 0 +9.258 -8.219 -1.092 0 0 0 0 0 0 0 +9.259 -8.167 -1.088 0 0 0 0 0 0 0 +9.269 -8.125 -1.086 0 0 0 0 0 0 0 +9.275 -8.079 -1.084 0 0 0 0 0 0 0 +9.283 -8.034 -1.081 0 0 0 0 0 0 0 +9.306 -8.003 -1.081 0 0 0 0 0 0 0 +9.337 -7.979 -1.082 0 0 0 0 0 0 0 +9.356 -7.97 -1.083 0 0 0 0 0 0 0 +9.366 -7.927 -1.081 0 0 0 0 0 0 0 +9.386 -7.894 -1.08 0 0 0 0 0 0 0 +9.411 -7.865 -1.08 0 0 0 0 0 0 0 +9.431 -7.831 -1.079 0 0 0 0 0 0 0 +9.454 -7.8 -1.079 0 0 0 0 0 0 0 +9.471 -7.764 -1.078 0 0 0 0 0 0 0 +9.485 -7.751 -1.078 0 0 0 0 0 0 0 +9.504 -7.717 -1.078 0 0 0 0 0 0 0 +9.524 -7.683 -1.077 0 0 0 0 0 0 0 +9.556 -7.66 -1.078 0 0 0 0 0 0 0 +9.578 -7.628 -1.078 0 0 0 0 0 0 0 +9.604 -7.599 -1.078 0 0 0 0 0 0 0 +9.618 -7.562 -1.077 0 0 0 0 0 0 0 +9.628 -7.545 -1.077 0 0 0 0 0 0 0 +9.646 -7.51 -1.076 0 0 0 0 0 0 0 +9.663 -7.475 -1.075 0 0 0 0 0 0 0 +9.682 -7.441 -1.074 0 0 0 0 0 0 0 +9.707 -7.412 -1.074 0 0 0 0 0 0 0 +9.727 -7.379 -1.074 0 0 0 0 0 0 0 +9.738 -7.364 -1.074 0 0 0 0 0 0 0 +9.76 -7.332 -1.074 0 0 0 0 0 0 0 +9.772 -7.293 -1.072 0 0 0 0 0 0 0 +9.804 -7.269 -1.074 0 0 0 0 0 0 0 +9.828 -7.239 -1.074 0 0 0 0 0 0 0 +9.84 -7.2 -1.072 0 0 0 0 0 0 0 +9.858 -7.166 -1.072 0 0 0 0 0 0 0 +9.859 -7.12 -1.069 0 0 0 0 0 0 0 +9.864 -7.099 -1.068 0 0 0 0 0 0 0 +9.889 -7.071 -1.069 0 0 0 0 0 0 0 +9.916 -7.043 -1.069 0 0 0 0 0 0 0 +9.94 -7.013 -1.07 0 0 0 0 0 0 0 +9.962 -6.982 -1.07 0 0 0 0 0 0 0 +9.987 -6.953 -1.07 0 0 0 0 0 0 0 +10.019 -6.928 -1.071 0 0 0 0 0 0 0 +10.015 -6.902 -1.069 0 0 0 0 0 0 0 +10.505 -7.193 -1.129 0 0 0 0 0 0 0 +10.579 -7.195 -1.135 0 0 0 0 0 0 0 +10.595 -7.157 -1.134 0 0 0 0 0 0 0 +10.616 -7.123 -1.134 0 0 0 0 0 0 0 +10.635 -7.087 -1.134 0 0 0 0 0 0 0 +10.662 -7.057 -1.134 0 0 0 0 0 0 0 +10.663 -7.034 -1.133 0 0 0 0 0 0 0 +10.69 -7.003 -1.134 0 0 0 0 0 0 0 +10.72 -6.975 -1.135 0 0 0 0 0 0 0 +10.757 -6.951 -1.137 0 0 0 0 0 0 0 +10.759 -6.904 -1.134 0 0 0 0 0 0 0 +10.797 -6.881 -1.136 0 0 0 0 0 0 0 +10.805 -6.839 -1.134 0 0 0 0 0 0 0 +10.831 -6.831 -1.136 0 0 0 0 0 0 0 +10.836 -6.787 -1.134 0 0 0 0 0 0 0 +10.872 -6.762 -1.136 0 0 0 0 0 0 0 +10.878 -6.719 -1.134 0 0 0 0 0 0 0 +10.897 -6.683 -1.134 0 0 0 0 0 0 0 +10.917 -6.648 -1.134 0 0 0 0 0 0 0 +10.931 -6.61 -1.133 0 0 0 0 0 0 0 +10.963 -6.606 -1.136 0 0 0 0 0 0 0 +10.999 -6.58 -1.138 0 0 0 0 0 0 0 +11.051 -6.564 -1.141 0 0 0 0 0 0 0 +11.107 -6.551 -1.146 0 0 0 0 0 0 0 +11.153 -6.531 -1.149 0 0 0 0 0 0 0 +11.207 -6.515 -1.153 0 0 0 0 0 0 0 +11.263 -6.501 -1.157 0 0 0 0 0 0 0 +11.292 -6.494 -1.159 0 0 0 0 0 0 0 +11.347 -6.478 -1.164 0 0 0 0 0 0 0 +11.402 -6.462 -1.168 0 0 0 0 0 0 0 +11.446 -6.44 -1.171 0 0 0 0 0 0 0 +11.503 -6.425 -1.175 0 0 0 0 0 0 0 +11.556 -6.407 -1.179 0 0 0 0 0 0 0 +11.611 -6.39 -1.183 0 0 0 0 0 0 0 +11.656 -6.391 -1.187 0 0 0 0 0 0 0 +11.706 -6.37 -1.191 0 0 0 0 0 0 0 +11.759 -6.351 -1.195 0 0 0 0 0 0 0 +11.812 -6.332 -1.199 0 0 0 0 0 0 0 +11.872 -6.317 -1.203 0 0 0 0 0 0 0 +11.934 -6.302 -1.208 0 0 0 0 0 0 0 +12.091 -6.337 -1.225 0 0 0 0 0 0 0 +12.18 -6.359 -1.234 0 0 0 0 0 0 0 +8.74 -4.52 -0.827 0 0 0 0 0 0 0 +8.754 -4.492 -0.827 0 0 0 0 0 0 0 +8.763 -4.462 -0.826 0 0 0 0 0 0 0 +8.786 -4.439 -0.827 0 0 0 0 0 0 0 +12.456 -6.257 -1.255 0 0 0 0 0 0 0 +12.512 -6.235 -1.259 0 0 0 0 0 0 0 +12.546 -6.228 -1.262 0 0 0 0 0 0 0 +12.614 -6.212 -1.267 0 0 0 0 0 0 0 +12.653 -6.182 -1.27 0 0 0 0 0 0 0 +12.71 -6.161 -1.274 0 0 0 0 0 0 0 +12.774 -6.143 -1.279 0 0 0 0 0 0 0 +12.813 -6.112 -1.281 0 0 0 0 0 0 0 +12.803 -6.058 -1.278 0 0 0 0 0 0 0 +12.838 -6.05 -1.281 0 0 0 0 0 0 0 +12.846 -6.004 -1.28 0 0 0 0 0 0 0 +12.928 -5.993 -1.287 0 0 0 0 0 0 0 +12.981 -5.969 -1.291 0 0 0 0 0 0 0 +12.998 -5.927 -1.291 0 0 0 0 0 0 0 +12.997 -5.877 -1.289 0 0 0 0 0 0 0 +13.151 -5.897 -1.304 0 0 0 0 0 0 0 +13.249 -5.917 -1.314 0 0 0 0 0 0 0 +13.311 -5.894 -1.319 0 0 0 0 0 0 0 +13.368 -5.869 -1.324 0 0 0 0 0 0 0 +13.45 -5.855 -1.331 0 0 0 0 0 0 0 +13.468 -5.813 -1.331 0 0 0 0 0 0 0 +13.556 -5.801 -1.339 0 0 0 0 0 0 0 +13.642 -5.787 -1.346 0 0 0 0 0 0 0 +13.517 -5.709 -1.331 0 0 0 0 0 0 0 +13.728 -5.747 -1.353 0 0 0 0 0 0 0 +13.564 -5.628 -1.333 0 0 0 0 0 0 0 +13.624 -5.603 -1.337 0 0 0 0 0 0 0 +13.792 -5.622 -1.354 0 0 0 0 0 0 0 +13.795 -5.573 -1.353 0 0 0 0 0 0 0 +13.77 -5.512 -1.348 0 0 0 0 0 0 0 +13.47 -5.367 -1.313 0 0 0 0 0 0 0 +14.033 -5.541 -1.374 0 0 0 0 0 0 0 +13.837 -5.413 -1.351 0 0 0 0 0 0 0 +14.13 -5.477 -1.382 0 0 0 0 0 0 0 +14.112 -5.419 -1.378 0 0 0 0 0 0 0 +14.099 -5.364 -1.374 0 0 0 0 0 0 0 +14.032 -5.288 -1.365 0 0 0 0 0 0 0 +14.1 -5.288 -1.372 0 0 0 0 0 0 0 +14.335 -5.325 -1.396 0 0 0 0 0 0 0 +14.236 -5.237 -1.383 0 0 0 0 0 0 0 +14.123 -5.145 -1.369 0 0 0 0 0 0 0 +14.487 -5.176 -1.405 0 0 0 0 0 0 0 +14.501 -5.129 -1.405 0 0 0 0 0 0 0 +14.502 -5.104 -1.404 0 0 0 0 0 0 0 +14.523 -5.06 -1.405 0 0 0 0 0 0 0 +14.532 -5.012 -1.404 0 0 0 0 0 0 0 +14.528 -4.96 -1.402 0 0 0 0 0 0 0 +14.617 -4.939 -1.41 0 0 0 0 0 0 0 +14.589 -4.879 -1.405 0 0 0 0 0 0 0 +14.622 -4.839 -1.407 0 0 0 0 0 0 0 +14.578 -4.799 -1.402 0 0 0 0 0 0 0 +14.412 -4.693 -1.382 0 0 0 0 0 0 0 +14.453 -4.657 -1.385 0 0 0 0 0 0 0 +14.505 -4.623 -1.389 0 0 0 0 0 0 0 +14.582 -4.598 -1.396 0 0 0 0 0 0 0 +14.553 -4.538 -1.391 0 0 0 0 0 0 0 +14.649 -4.518 -1.4 0 0 0 0 0 0 0 +14.812 -4.543 -1.417 0 0 0 0 0 0 0 +14.781 -4.482 -1.412 0 0 0 0 0 0 0 +14.859 -4.455 -1.419 0 0 0 0 0 0 0 +14.898 -4.416 -1.422 0 0 0 0 0 0 0 +14.912 -4.369 -1.422 0 0 0 0 0 0 0 +14.954 -4.331 -1.425 0 0 0 0 0 0 0 +14.964 -4.283 -1.424 0 0 0 0 0 0 0 +14.98 -4.262 -1.425 0 0 0 0 0 0 0 +14.986 -4.213 -1.425 0 0 0 0 0 0 0 +15.026 -4.173 -1.427 0 0 0 0 0 0 0 +15.037 -4.125 -1.427 0 0 0 0 0 0 0 +15.055 -4.08 -1.428 0 0 0 0 0 0 0 +15.082 -4.036 -1.429 0 0 0 0 0 0 0 +15.096 -3.989 -1.43 0 0 0 0 0 0 0 +15.11 -3.967 -1.43 0 0 0 0 0 0 0 +15.13 -3.922 -1.431 0 0 0 0 0 0 0 +15.154 -3.877 -1.432 0 0 0 0 0 0 0 +15.17 -3.831 -1.433 0 0 0 0 0 0 0 +15.188 -3.784 -1.433 0 0 0 0 0 0 0 +15.219 -3.741 -1.436 0 0 0 0 0 0 0 +15.267 -3.703 -1.439 0 0 0 0 0 0 0 +15.215 -3.639 -1.433 0 0 0 0 0 0 0 +15.265 -3.626 -1.437 0 0 0 0 0 0 0 +15.306 -3.585 -1.441 0 0 0 0 0 0 0 +7.253 -1.661 -0.576 0 0 0 0 0 0 0 +7.281 -1.643 -0.579 0 0 0 0 0 0 0 +7.265 -1.616 -0.577 0 0 0 0 0 0 0 +7.274 -1.594 -0.577 0 0 0 0 0 0 0 +7.283 -1.572 -0.577 0 0 0 0 0 0 0 +7.26 -1.555 -0.575 0 0 0 0 0 0 0 +7.244 -1.527 -0.572 0 0 0 0 0 0 0 +7.237 -1.502 -0.571 0 0 0 0 0 0 0 +7.226 -1.476 -0.57 0 0 0 0 0 0 0 +7.223 -1.452 -0.569 0 0 0 0 0 0 0 +7.215 -1.427 -0.568 0 0 0 0 0 0 0 +7.212 -1.414 -0.567 0 0 0 0 0 0 0 +7.226 -1.393 -0.568 0 0 0 0 0 0 0 +7.223 -1.369 -0.567 0 0 0 0 0 0 0 +7.24 -1.349 -0.569 0 0 0 0 0 0 0 +7.253 -1.328 -0.569 0 0 0 0 0 0 0 +7.263 -1.306 -0.57 0 0 0 0 0 0 0 +7.28 -1.286 -0.571 0 0 0 0 0 0 0 +7.314 -1.268 -0.575 0 0 0 0 0 0 0 +7.337 -1.26 -0.577 0 0 0 0 0 0 0 +7.404 -1.248 -0.583 0 0 0 0 0 0 0 +9.763 -1.623 -0.833 0 0 0 0 0 0 0 +9.594 -1.563 -0.814 0 0 0 0 0 0 0 +7.474 -1.188 -0.59 0 0 0 0 0 0 0 +7.494 -1.167 -0.591 0 0 0 0 0 0 0 +7.507 -1.145 -0.592 0 0 0 0 0 0 0 +7.505 -1.132 -0.592 0 0 0 0 0 0 0 +7.532 -1.112 -0.594 0 0 0 0 0 0 0 +7.612 -1.1 -0.603 0 0 0 0 0 0 0 +13.695 -1.956 -1.244 0 0 0 0 0 0 0 +13.77 -1.923 -1.251 0 0 0 0 0 0 0 +15.876 -2.17 -1.472 0 0 0 0 0 0 0 +15.923 -2.126 -1.476 0 0 0 0 0 0 0 +15.916 -2.099 -1.475 0 0 0 0 0 0 0 +15.927 -2.05 -1.476 0 0 0 0 0 0 0 +15.917 -1.998 -1.474 0 0 0 0 0 0 0 +15.941 -1.95 -1.476 0 0 0 0 0 0 0 +15.945 -1.9 -1.476 0 0 0 0 0 0 0 +15.929 -1.847 -1.474 0 0 0 0 0 0 0 +15.955 -1.799 -1.476 0 0 0 0 0 0 0 +15.954 -1.774 -1.475 0 0 0 0 0 0 0 +15.959 -1.724 -1.475 0 0 0 0 0 0 0 +15.98 -1.675 -1.477 0 0 0 0 0 0 0 +15.964 -1.623 -1.475 0 0 0 0 0 0 0 +16.016 -1.577 -1.48 0 0 0 0 0 0 0 +11.059 -1.046 -0.959 0 0 0 0 0 0 0 +11.075 -1.012 -0.961 0 0 0 0 0 0 0 +16.01 -1.45 -1.478 0 0 0 0 0 0 0 +15.999 -1.398 -1.476 0 0 0 0 0 0 0 +16.043 -1.351 -1.48 0 0 0 0 0 0 0 +16.065 -1.302 -1.482 0 0 0 0 0 0 0 +15.992 -1.246 -1.474 0 0 0 0 0 0 0 +15.97 -1.193 -1.471 0 0 0 0 0 0 0 +16.072 -1.15 -1.482 0 0 0 0 0 0 0 +16.1 -1.127 -1.484 0 0 0 0 0 0 0 +16.1 -1.076 -1.484 0 0 0 0 0 0 0 +16.101 -1.026 -1.484 0 0 0 0 0 0 0 +16.13 -0.977 -1.486 0 0 0 0 0 0 0 +11.742 -0.667 -1.027 0 0 0 0 0 0 0 +16.144 -0.876 -1.487 0 0 0 0 0 0 0 +16.152 -0.825 -1.488 0 0 0 0 0 0 0 +16.167 -0.801 -1.489 0 0 0 0 0 0 0 +16.19 -0.751 -1.491 0 0 0 0 0 0 0 +16.17 -0.699 -1.489 0 0 0 0 0 0 0 +16.198 -0.649 -1.492 0 0 0 0 0 0 0 +16.226 -0.599 -1.494 0 0 0 0 0 0 0 +16.232 -0.548 -1.495 0 0 0 0 0 0 0 +16.277 -0.499 -1.499 0 0 0 0 0 0 0 +16.28 -0.473 -1.5 0 0 0 0 0 0 0 +16.277 -0.422 -1.499 0 0 0 0 0 0 0 +16.223 -0.37 -1.493 0 0 0 0 0 0 0 +16.331 -0.321 -1.505 0 0 0 0 0 0 0 +16.338 -0.27 -1.505 0 0 0 0 0 0 0 +16.301 -0.218 -1.501 0 0 0 0 0 0 0 +12.964 -0.127 -1.153 0 0 0 0 0 0 0 +16.306 -0.141 -1.502 0 0 0 0 0 0 0 +16.332 -0.09 -1.504 0 0 0 0 0 0 0 +13.337 -0.027 -1.192 0 0 0 0 0 0 0 +15.813 0.003 -1.554 0 0 0 0 0 0 0 +15.824 0.052 -1.555 0 0 0 0 0 0 0 +15.824 0.102 -1.555 0 0 0 0 0 0 0 +15.794 0.151 -1.552 0 0 0 0 0 0 0 +13.633 0.17 -1.312 0 0 0 0 0 0 0 +15.807 0.226 -1.554 0 0 0 0 0 0 0 +15.78 0.275 -1.551 0 0 0 0 0 0 0 +15.766 0.324 -1.549 0 0 0 0 0 0 0 +15.774 0.374 -1.55 0 0 0 0 0 0 0 +13.76 0.366 -1.327 0 0 0 0 0 0 0 +15.766 0.473 -1.55 0 0 0 0 0 0 0 +13.819 0.455 -1.334 0 0 0 0 0 0 0 +13.793 0.476 -1.331 0 0 0 0 0 0 0 +15.823 0.599 -1.556 0 0 0 0 0 0 0 +15.724 0.645 -1.546 0 0 0 0 0 0 0 +14.185 0.624 -1.375 0 0 0 0 0 0 0 +15.759 0.746 -1.55 0 0 0 0 0 0 0 +15.826 0.799 -1.558 0 0 0 0 0 0 0 +15.836 0.849 -1.559 0 0 0 0 0 0 0 +14.419 0.794 -1.402 0 0 0 0 0 0 0 +15.844 0.975 -1.561 0 0 0 0 0 0 0 +14.598 0.942 -1.423 0 0 0 0 0 0 0 +14.656 0.992 -1.429 0 0 0 0 0 0 0 +15.807 1.122 -1.558 0 0 0 0 0 0 0 +15.787 1.17 -1.556 0 0 0 0 0 0 0 +15.77 1.194 -1.554 0 0 0 0 0 0 0 +15.673 1.236 -1.544 0 0 0 0 0 0 0 +14.791 1.212 -1.446 0 0 0 0 0 0 0 +15.714 1.388 -1.55 0 0 0 0 0 0 0 +15.656 1.433 -1.544 0 0 0 0 0 0 0 +15.608 1.478 -1.539 0 0 0 0 0 0 0 +15.57 1.499 -1.535 0 0 0 0 0 0 0 +15.488 1.54 -1.526 0 0 0 0 0 0 0 +15.451 1.585 -1.523 0 0 0 0 0 0 0 +15.472 1.636 -1.526 0 0 0 0 0 0 0 +15.654 1.706 -1.547 0 0 0 0 0 0 0 +15.493 1.737 -1.529 0 0 0 0 0 0 0 +15.768 1.819 -1.561 0 0 0 0 0 0 0 +15.735 1.84 -1.557 0 0 0 0 0 0 0 +15.745 1.891 -1.559 0 0 0 0 0 0 0 +15.854 1.955 -1.572 0 0 0 0 0 0 0 +15.853 2.006 -1.573 0 0 0 0 0 0 0 +15.888 2.061 -1.577 0 0 0 0 0 0 0 +15.817 2.102 -1.57 0 0 0 0 0 0 0 +15.814 2.152 -1.57 0 0 0 0 0 0 0 +15.801 2.201 -1.57 0 0 0 0 0 0 0 +15.8 2.226 -1.57 0 0 0 0 0 0 0 +15.818 2.28 -1.573 0 0 0 0 0 0 0 +15.831 2.332 -1.575 0 0 0 0 0 0 0 +15.882 2.391 -1.582 0 0 0 0 0 0 0 +15.949 2.452 -1.59 0 0 0 0 0 0 0 +16.028 2.516 -1.6 0 0 0 0 0 0 0 +16.102 2.58 -1.609 0 0 0 0 0 0 0 +16.188 2.62 -1.619 0 0 0 0 0 0 0 +16.255 2.683 -1.627 0 0 0 0 0 0 0 +16.328 2.748 -1.637 0 0 0 0 0 0 0 +16.388 2.811 -1.644 0 0 0 0 0 0 0 +16.454 2.876 -1.653 0 0 0 0 0 0 0 +16.419 2.923 -1.65 0 0 0 0 0 0 0 +16.469 2.985 -1.657 0 0 0 0 0 0 0 +16.503 3.018 -1.661 0 0 0 0 0 0 0 +16.538 3.079 -1.666 0 0 0 0 0 0 0 +16.534 3.132 -1.667 0 0 0 0 0 0 0 +16.542 3.187 -1.669 0 0 0 0 0 0 0 +16.553 3.243 -1.671 0 0 0 0 0 0 0 +16.588 3.304 -1.676 0 0 0 0 0 0 0 +16.615 3.364 -1.68 0 0 0 0 0 0 0 +16.623 3.393 -1.682 0 0 0 0 0 0 0 +16.591 3.441 -1.679 0 0 0 0 0 0 0 +16.607 3.498 -1.683 0 0 0 0 0 0 0 +16.58 3.547 -1.681 0 0 0 0 0 0 0 +16.561 3.598 -1.68 0 0 0 0 0 0 0 +16.556 3.651 -1.681 0 0 0 0 0 0 0 +16.539 3.702 -1.68 0 0 0 0 0 0 0 +16.519 3.724 -1.678 0 0 0 0 0 0 0 +16.5 3.775 -1.677 0 0 0 0 0 0 0 +16.484 3.825 -1.677 0 0 0 0 0 0 0 +16.47 3.877 -1.677 0 0 0 0 0 0 0 +16.465 3.93 -1.678 0 0 0 0 0 0 0 +16.428 3.976 -1.675 0 0 0 0 0 0 0 +16.421 4.029 -1.675 0 0 0 0 0 0 0 +16.409 4.053 -1.675 0 0 0 0 0 0 0 +16.388 4.103 -1.674 0 0 0 0 0 0 0 +16.371 4.153 -1.673 0 0 0 0 0 0 0 +16.37 4.208 -1.675 0 0 0 0 0 0 0 +16.368 4.262 -1.676 0 0 0 0 0 0 0 +16.362 4.316 -1.677 0 0 0 0 0 0 0 +16.354 4.369 -1.678 0 0 0 0 0 0 0 +16.363 4.398 -1.679 0 0 0 0 0 0 0 +16.357 4.452 -1.68 0 0 0 0 0 0 0 +16.341 4.503 -1.68 0 0 0 0 0 0 0 +16.323 4.553 -1.68 0 0 0 0 0 0 0 +16.306 4.604 -1.679 0 0 0 0 0 0 0 +16.294 4.655 -1.68 0 0 0 0 0 0 0 +16.264 4.702 -1.678 0 0 0 0 0 0 0 +16.258 4.728 -1.678 0 0 0 0 0 0 0 +16.234 4.776 -1.677 0 0 0 0 0 0 0 +16.217 4.827 -1.677 0 0 0 0 0 0 0 +16.179 4.871 -1.674 0 0 0 0 0 0 0 +16.169 4.923 -1.675 0 0 0 0 0 0 0 +16.153 4.974 -1.675 0 0 0 0 0 0 0 +16.134 5.024 -1.674 0 0 0 0 0 0 0 +16.115 5.046 -1.673 0 0 0 0 0 0 0 +16.112 5.1 -1.675 0 0 0 0 0 0 0 +16.083 5.147 -1.673 0 0 0 0 0 0 0 +16.068 5.198 -1.673 0 0 0 0 0 0 0 +16.054 5.249 -1.673 0 0 0 0 0 0 0 +16.02 5.294 -1.671 0 0 0 0 0 0 0 +16.019 5.349 -1.673 0 0 0 0 0 0 0 +15.991 5.368 -1.671 0 0 0 0 0 0 0 +15.961 5.413 -1.67 0 0 0 0 0 0 0 +15.955 5.467 -1.671 0 0 0 0 0 0 0 +15.931 5.515 -1.67 0 0 0 0 0 0 0 +15.915 5.566 -1.67 0 0 0 0 0 0 0 +15.903 5.618 -1.671 0 0 0 0 0 0 0 +15.876 5.664 -1.67 0 0 0 0 0 0 0 +15.858 5.686 -1.669 0 0 0 0 0 0 0 +15.836 5.734 -1.668 0 0 0 0 0 0 0 +15.822 5.785 -1.669 0 0 0 0 0 0 0 +15.805 5.836 -1.669 0 0 0 0 0 0 0 +15.785 5.885 -1.669 0 0 0 0 0 0 0 +15.77 5.936 -1.669 0 0 0 0 0 0 0 +15.739 5.98 -1.668 0 0 0 0 0 0 0 +15.751 6.013 -1.67 0 0 0 0 0 0 0 +15.729 6.061 -1.67 0 0 0 0 0 0 0 +15.726 6.117 -1.672 0 0 0 0 0 0 0 +15.729 6.175 -1.674 0 0 0 0 0 0 0 +15.689 6.217 -1.672 0 0 0 0 0 0 0 +15.662 6.263 -1.671 0 0 0 0 0 0 0 +15.656 6.317 -1.673 0 0 0 0 0 0 0 +15.634 6.366 -1.672 0 0 0 0 0 0 0 +15.644 6.399 -1.675 0 0 0 0 0 0 0 +15.616 6.445 -1.674 0 0 0 0 0 0 0 +15.6 6.495 -1.674 0 0 0 0 0 0 0 +15.601 6.554 -1.677 0 0 0 0 0 0 0 +15.579 6.602 -1.677 0 0 0 0 0 0 0 +15.576 6.658 -1.679 0 0 0 0 0 0 0 +15.56 6.681 -1.678 0 0 0 0 0 0 0 +15.552 6.735 -1.68 0 0 0 0 0 0 0 +15.54 6.788 -1.681 0 0 0 0 0 0 0 +15.538 6.845 -1.683 0 0 0 0 0 0 0 +15.51 6.891 -1.683 0 0 0 0 0 0 0 +15.497 6.944 -1.684 0 0 0 0 0 0 0 +15.488 6.998 -1.685 0 0 0 0 0 0 0 +15.491 7.029 -1.687 0 0 0 0 0 0 0 +15.48 7.083 -1.688 0 0 0 0 0 0 0 +15.461 7.133 -1.689 0 0 0 0 0 0 0 +15.453 7.188 -1.69 0 0 0 0 0 0 0 +15.436 7.239 -1.691 0 0 0 0 0 0 0 +15.426 7.294 -1.693 0 0 0 0 0 0 0 +15.392 7.337 -1.691 0 0 0 0 0 0 0 +15.407 7.374 -1.695 0 0 0 0 0 0 0 +15.387 7.424 -1.695 0 0 0 0 0 0 0 +15.364 7.472 -1.695 0 0 0 0 0 0 0 +15.353 7.527 -1.697 0 0 0 0 0 0 0 +15.342 7.581 -1.698 0 0 0 0 0 0 0 +15.33 7.636 -1.7 0 0 0 0 0 0 0 +15.319 7.69 -1.701 0 0 0 0 0 0 0 +15.303 7.743 -1.702 0 0 0 0 0 0 0 +15.3 7.771 -1.703 0 0 0 0 0 0 0 +15.283 7.823 -1.704 0 0 0 0 0 0 0 +15.276 7.88 -1.707 0 0 0 0 0 0 0 +15.244 7.924 -1.706 0 0 0 0 0 0 0 +15.192 7.958 -1.702 0 0 0 0 0 0 0 +15.204 8.025 -1.707 0 0 0 0 0 0 0 +15.203 8.086 -1.71 0 0 0 0 0 0 0 +15.196 8.113 -1.711 0 0 0 0 0 0 0 +15.183 8.167 -1.712 0 0 0 0 0 0 0 +15.178 8.226 -1.715 0 0 0 0 0 0 0 +15.161 8.279 -1.716 0 0 0 0 0 0 0 +15.15 8.335 -1.718 0 0 0 0 0 0 0 +15.133 8.387 -1.719 0 0 0 0 0 0 0 +15.126 8.415 -1.72 0 0 0 0 0 0 0 +15.095 8.459 -1.719 0 0 0 0 0 0 0 +15.09 8.52 -1.722 0 0 0 0 0 0 0 +15.091 8.583 -1.726 0 0 0 0 0 0 0 +15.078 8.638 -1.727 0 0 0 0 0 0 0 +15.065 8.693 -1.729 0 0 0 0 0 0 0 +15.058 8.753 -1.732 0 0 0 0 0 0 0 +15.066 8.789 -1.735 0 0 0 0 0 0 0 +15.081 8.862 -1.74 0 0 0 0 0 0 0 +15.079 8.924 -1.744 0 0 0 0 0 0 0 +14.911 8.888 -1.726 0 0 0 0 0 0 0 +11.243 6.742 -1.254 0 0 0 0 0 0 0 +10.771 6.504 -1.196 0 0 0 0 0 0 0 +11.125 6.767 -1.244 0 0 0 0 0 0 0 +11.272 6.881 -1.265 0 0 0 0 0 0 0 +11.129 6.841 -1.249 0 0 0 0 0 0 0 +10.687 6.615 -1.194 0 0 0 0 0 0 0 +10.717 6.68 -1.201 0 0 0 0 0 0 0 +10.612 6.66 -1.19 0 0 0 0 0 0 0 +10.599 6.699 -1.191 0 0 0 0 0 0 0 +10.596 6.744 -1.193 0 0 0 0 0 0 0 +10.502 6.707 -1.182 0 0 0 0 0 0 0 +10.461 6.727 -1.18 0 0 0 0 0 0 0 +10.395 6.731 -1.174 0 0 0 0 0 0 0 +10.375 6.764 -1.174 0 0 0 0 0 0 0 +10.326 6.778 -1.17 0 0 0 0 0 0 0 +10.329 6.827 -1.173 0 0 0 0 0 0 0 +10.29 6.848 -1.171 0 0 0 0 0 0 0 +10.427 6.963 -1.191 0 0 0 0 0 0 0 +10.381 6.979 -1.188 0 0 0 0 0 0 0 +10.489 7.1 -1.205 0 0 0 0 0 0 0 +10.506 7.16 -1.21 0 0 0 0 0 0 0 +10.434 7.159 -1.204 0 0 0 0 0 0 0 +10.282 7.103 -1.186 0 0 0 0 0 0 0 +10.179 7.078 -1.175 0 0 0 0 0 0 0 +10.327 7.23 -1.198 0 0 0 0 0 0 0 +10.931 7.68 -1.282 0 0 0 0 0 0 0 +11.217 7.935 -1.324 0 0 0 0 0 0 0 +11.028 7.853 -1.302 0 0 0 0 0 0 0 +11.062 7.929 -1.31 0 0 0 0 0 0 0 +10.963 7.91 -1.3 0 0 0 0 0 0 0 +10.922 7.933 -1.297 0 0 0 0 0 0 0 +10.876 7.952 -1.294 0 0 0 0 0 0 0 +10.759 7.893 -1.28 0 0 0 0 0 0 0 +10.76 7.945 -1.284 0 0 0 0 0 0 0 +10.695 7.949 -1.278 0 0 0 0 0 0 0 +10.702 8.007 -1.283 0 0 0 0 0 0 0 +10.71 8.065 -1.287 0 0 0 0 0 0 0 +10.699 8.11 -1.289 0 0 0 0 0 0 0 +10.727 8.158 -1.295 0 0 0 0 0 0 0 +10.717 8.204 -1.297 0 0 0 0 0 0 0 +10.632 8.191 -1.289 0 0 0 0 0 0 0 +10.686 8.287 -1.3 0 0 0 0 0 0 0 +10.608 8.28 -1.293 0 0 0 0 0 0 0 +10.565 8.3 -1.29 0 0 0 0 0 0 0 +10.615 8.393 -1.301 0 0 0 0 0 0 0 +10.776 8.549 -1.326 0 0 0 0 0 0 0 +10.938 8.734 -1.353 0 0 0 0 0 0 0 +6.874 5.512 -0.777 0 0 0 0 0 0 0 +6.752 5.449 -0.762 0 0 0 0 0 0 0 +6.786 5.511 -0.77 0 0 0 0 0 0 0 +6.744 5.512 -0.766 0 0 0 0 0 0 0 +6.723 5.531 -0.766 0 0 0 0 0 0 0 +6.698 5.528 -0.763 0 0 0 0 0 0 0 +6.694 5.56 -0.765 0 0 0 0 0 0 0 +10.739 9.055 -1.358 0 0 0 0 0 0 0 +10.677 9.061 -1.353 0 0 0 0 0 0 0 +10.74 9.172 -1.367 0 0 0 0 0 0 0 +10.67 9.17 -1.361 0 0 0 0 0 0 0 +10.674 9.233 -1.365 0 0 0 0 0 0 0 +10.645 9.236 -1.363 0 0 0 0 0 0 0 +10.662 9.31 -1.37 0 0 0 0 0 0 0 +10.674 9.381 -1.376 0 0 0 0 0 0 0 +10.664 9.431 -1.379 0 0 0 0 0 0 0 +10.617 9.449 -1.377 0 0 0 0 0 0 0 +10.631 9.522 -1.383 0 0 0 0 0 0 0 +10.609 9.562 -1.384 0 0 0 0 0 0 0 +10.673 9.651 -1.396 0 0 0 0 0 0 0 +10.624 9.667 -1.393 0 0 0 0 0 0 0 +10.617 9.722 -1.397 0 0 0 0 0 0 0 +10.599 9.767 -1.399 0 0 0 0 0 0 0 +10.595 9.825 -1.403 0 0 0 0 0 0 0 +10.57 9.863 -1.404 0 0 0 0 0 0 0 +10.559 9.916 -1.407 0 0 0 0 0 0 0 +10.575 9.962 -1.412 0 0 0 0 0 0 0 +10.515 9.968 -1.407 0 0 0 0 0 0 0 +10.535 10.051 -1.415 0 0 0 0 0 0 0 +10.547 10.125 -1.422 0 0 0 0 0 0 0 +10.483 10.128 -1.417 0 0 0 0 0 0 0 +10.545 10.252 -1.431 0 0 0 0 0 0 0 +10.524 10.296 -1.433 0 0 0 0 0 0 0 +10.531 10.335 -1.437 0 0 0 0 0 0 0 +10.486 10.356 -1.435 0 0 0 0 0 0 0 +10.488 10.424 -1.44 0 0 0 0 0 0 0 +10.554 10.555 -1.456 0 0 0 0 0 0 0 +10.55 10.618 -1.46 0 0 0 0 0 0 0 +10.532 10.666 -1.463 0 0 0 0 0 0 0 +10.55 10.752 -1.471 0 0 0 0 0 0 0 +10.569 10.806 -1.477 0 0 0 0 0 0 0 +10.568 10.873 -1.482 0 0 0 0 0 0 0 +10.582 10.956 -1.49 0 0 0 0 0 0 0 +10.597 11.041 -1.498 0 0 0 0 0 0 0 +10.596 11.111 -1.503 0 0 0 0 0 0 0 +10.604 11.189 -1.51 0 0 0 0 0 0 0 +10.604 11.259 -1.516 0 0 0 0 0 0 0 +10.627 11.32 -1.522 0 0 0 0 0 0 0 +10.637 11.403 -1.53 0 0 0 0 0 0 0 +10.645 11.483 -1.537 0 0 0 0 0 0 0 +10.641 11.551 -1.542 0 0 0 0 0 0 0 +10.654 11.639 -1.55 0 0 0 0 0 0 0 +10.67 11.73 -1.559 0 0 0 0 0 0 0 +10.669 11.803 -1.565 0 0 0 0 0 0 0 +10.693 11.867 -1.572 0 0 0 0 0 0 0 +10.713 11.966 -1.582 0 0 0 0 0 0 0 +10.661 11.983 -1.579 0 0 0 0 0 0 0 +10.664 12.063 -1.586 0 0 0 0 0 0 0 +10.663 12.138 -1.592 0 0 0 0 0 0 0 +10.613 12.158 -1.59 0 0 0 0 0 0 0 +10.633 12.259 -1.6 0 0 0 0 0 0 0 +10.624 12.288 -1.602 0 0 0 0 0 0 0 +10.61 12.35 -1.606 0 0 0 0 0 0 0 +10.572 12.383 -1.606 0 0 0 0 0 0 0 +10.548 12.434 -1.609 0 0 0 0 0 0 0 +10.566 12.536 -1.619 0 0 0 0 0 0 0 +10.514 12.554 -1.616 0 0 0 0 0 0 0 +10.499 12.616 -1.621 0 0 0 0 0 0 0 +10.48 12.634 -1.621 0 0 0 0 0 0 0 +10.442 12.668 -1.621 0 0 0 0 0 0 0 +10.406 12.706 -1.622 0 0 0 0 0 0 0 +10.357 12.727 -1.62 0 0 0 0 0 0 0 +10.349 12.8 -1.626 0 0 0 0 0 0 0 +10.315 12.84 -1.627 0 0 0 0 0 0 0 +10.279 12.877 -1.628 0 0 0 0 0 0 0 +10.266 12.903 -1.629 0 0 0 0 0 0 0 +10.235 12.948 -1.631 0 0 0 0 0 0 0 +10.189 12.973 -1.63 0 0 0 0 0 0 0 +10.167 13.029 -1.633 0 0 0 0 0 0 0 +10.116 13.048 -1.631 0 0 0 0 0 0 0 +10.087 13.096 -1.634 0 0 0 0 0 0 0 +10.039 13.118 -1.632 0 0 0 0 0 0 0 +10.007 13.162 -1.634 0 0 0 0 0 0 0 +9.984 13.174 -1.634 0 0 0 0 0 0 0 +9.949 13.214 -1.635 0 0 0 0 0 0 0 +9.898 13.232 -1.633 0 0 0 0 0 0 0 +9.877 13.292 -1.637 0 0 0 0 0 0 0 +9.844 13.334 -1.638 0 0 0 0 0 0 0 +9.796 13.357 -1.637 0 0 0 0 0 0 0 +9.731 13.355 -1.633 0 0 0 0 0 0 0 +9.741 13.414 -1.639 0 0 0 0 0 0 0 +9.702 13.45 -1.64 0 0 0 0 0 0 0 +9.661 13.482 -1.64 0 0 0 0 0 0 0 +9.627 13.523 -1.641 0 0 0 0 0 0 0 +9.588 13.558 -1.642 0 0 0 0 0 0 0 +9.549 13.593 -1.643 0 0 0 0 0 0 0 +9.536 13.621 -1.644 0 0 0 0 0 0 0 +9.504 13.666 -1.646 0 0 0 0 0 0 0 +9.449 13.679 -1.644 0 0 0 0 0 0 0 +9.409 13.712 -1.645 0 0 0 0 0 0 0 +9.386 13.771 -1.649 0 0 0 0 0 0 0 +9.351 13.814 -1.65 0 0 0 0 0 0 0 +9.304 13.838 -1.65 0 0 0 0 0 0 0 +9.258 13.816 -1.645 0 0 0 0 0 0 0 +9.258 13.91 -1.653 0 0 0 0 0 0 0 +9.212 13.936 -1.653 0 0 0 0 0 0 0 +9.181 13.985 -1.656 0 0 0 0 0 0 0 +9.149 14.032 -1.658 0 0 0 0 0 0 0 +9.117 14.079 -1.66 0 0 0 0 0 0 0 +9.074 14.109 -1.661 0 0 0 0 0 0 0 +9.033 14.144 -1.662 0 0 0 0 0 0 0 +9.017 14.167 -1.663 0 0 0 0 0 0 0 +9.006 14.249 -1.67 0 0 0 0 0 0 0 +8.956 14.269 -1.669 0 0 0 0 0 0 0 +8.928 14.324 -1.672 0 0 0 0 0 0 0 +8.882 14.35 -1.672 0 0 0 0 0 0 0 +8.818 14.347 -1.668 0 0 0 0 0 0 0 +8.806 14.429 -1.675 0 0 0 0 0 0 0 +8.792 14.458 -1.677 0 0 0 0 0 0 0 +8.721 14.443 -1.671 0 0 0 0 0 0 0 +8.721 14.546 -1.681 0 0 0 0 0 0 0 +8.684 14.588 -1.683 0 0 0 0 0 0 0 +8.644 14.626 -1.685 0 0 0 0 0 0 0 +8.614 14.68 -1.688 0 0 0 0 0 0 0 +8.568 14.707 -1.688 0 0 0 0 0 0 0 +8.531 14.75 -1.69 0 0 0 0 0 0 0 +8.52 14.784 -1.693 0 0 0 0 0 0 0 +8.471 14.807 -1.692 0 0 0 0 0 0 0 +8.435 14.853 -1.695 0 0 0 0 0 0 0 +8.377 14.858 -1.692 0 0 0 0 0 0 0 +8.351 14.921 -1.697 0 0 0 0 0 0 0 +8.313 14.965 -1.699 0 0 0 0 0 0 0 +8.297 14.992 -1.701 0 0 0 0 0 0 0 +8.253 15.023 -1.701 0 0 0 0 0 0 0 +8.219 15.073 -1.704 0 0 0 0 0 0 0 +8.174 15.102 -1.705 0 0 0 0 0 0 0 +8.137 15.149 -1.707 0 0 0 0 0 0 0 +8.086 15.167 -1.707 0 0 0 0 0 0 0 +8.06 15.233 -1.712 0 0 0 0 0 0 0 +8.017 15.269 -1.713 0 0 0 0 0 0 0 +8.004 15.303 -1.716 0 0 0 0 0 0 0 +7.96 15.335 -1.716 0 0 0 0 0 0 0 +7.918 15.372 -1.718 0 0 0 0 0 0 0 +7.879 15.415 -1.72 0 0 0 0 0 0 0 +7.836 15.45 -1.722 0 0 0 0 0 0 0 +7.799 15.498 -1.724 0 0 0 0 0 0 0 +7.752 15.526 -1.725 0 0 0 0 0 0 0 +7.744 15.572 -1.729 0 0 0 0 0 0 0 +7.692 15.589 -1.728 0 0 0 0 0 0 0 +7.649 15.625 -1.73 0 0 0 0 0 0 0 +7.6 15.651 -1.73 0 0 0 0 0 0 0 +7.55 15.671 -1.729 0 0 0 0 0 0 0 +7.51 15.715 -1.732 0 0 0 0 0 0 0 +7.462 15.742 -1.732 0 0 0 0 0 0 0 +7.438 15.755 -1.733 0 0 0 0 0 0 0 +7.387 15.775 -1.732 0 0 0 0 0 0 0 +7.339 15.802 -1.733 0 0 0 0 0 0 0 +7.297 15.841 -1.735 0 0 0 0 0 0 0 +7.267 15.907 -1.74 0 0 0 0 0 0 0 +7.228 15.955 -1.743 0 0 0 0 0 0 0 +7.177 15.976 -1.743 0 0 0 0 0 0 0 +7.18 16.051 -1.75 0 0 0 0 0 0 0 +7.188 16.204 -1.766 0 0 0 0 0 0 0 +7.207 16.387 -1.786 0 0 0 0 0 0 0 +7.216 16.548 -1.802 0 0 0 0 0 0 0 +7.216 16.693 -1.817 0 0 0 0 0 0 0 +7.226 16.862 -1.835 0 0 0 0 0 0 0 +7.265 17.101 -1.861 0 0 0 0 0 0 0 +7.297 17.253 -1.878 0 0 0 0 0 0 0 +7.281 17.368 -1.889 0 0 0 0 0 0 0 +7.232 17.403 -1.89 0 0 0 0 0 0 0 +7.191 17.459 -1.894 0 0 0 0 0 0 0 +7.131 17.47 -1.893 0 0 0 0 0 0 0 +7.073 17.484 -1.892 0 0 0 0 0 0 0 +7.019 17.509 -1.892 0 0 0 0 0 0 0 +6.958 17.515 -1.89 0 0 0 0 0 0 0 +6.929 17.522 -1.89 0 0 0 0 0 0 0 +6.877 17.553 -1.891 0 0 0 0 0 0 0 +6.824 17.578 -1.892 0 0 0 0 0 0 0 +6.765 17.59 -1.89 0 0 0 0 0 0 0 +6.709 17.609 -1.89 0 0 0 0 0 0 0 +6.643 17.603 -1.887 0 0 0 0 0 0 0 +6.584 17.614 -1.886 0 0 0 0 0 0 0 +6.536 17.57 -1.879 0 0 0 0 0 0 0 +6.477 17.579 -1.878 0 0 0 0 0 0 0 +6.414 17.577 -1.875 0 0 0 0 0 0 0 +6.356 17.59 -1.875 0 0 0 0 0 0 0 +6.301 17.612 -1.875 0 0 0 0 0 0 0 +6.241 17.618 -1.873 0 0 0 0 0 0 0 +6.182 17.628 -1.872 0 0 0 0 0 0 0 +6.146 17.612 -1.869 0 0 0 0 0 0 0 +6.083 17.61 -1.867 0 0 0 0 0 0 0 +6.018 17.599 -1.863 0 0 0 0 0 0 0 +5.958 17.607 -1.862 0 0 0 0 0 0 0 +5.894 17.599 -1.859 0 0 0 0 0 0 0 +5.845 17.636 -1.861 0 0 0 0 0 0 0 +5.787 17.645 -1.86 0 0 0 0 0 0 0 +5.751 17.63 -1.857 0 0 0 0 0 0 0 +5.691 17.632 -1.855 0 0 0 0 0 0 0 +5.635 17.648 -1.855 0 0 0 0 0 0 0 +5.57 17.636 -1.851 0 0 0 0 0 0 0 +5.513 17.649 -1.851 0 0 0 0 0 0 0 +5.452 17.649 -1.849 0 0 0 0 0 0 0 +5.387 17.634 -1.845 0 0 0 0 0 0 0 +5.353 17.622 -1.843 0 0 0 0 0 0 0 +5.292 17.619 -1.841 0 0 0 0 0 0 0 +5.238 17.64 -1.841 0 0 0 0 0 0 0 +5.186 17.669 -1.843 0 0 0 0 0 0 0 +5.134 17.699 -1.844 0 0 0 0 0 0 0 +5.079 17.715 -1.844 0 0 0 0 0 0 0 +5.029 17.752 -1.847 0 0 0 0 0 0 0 +4.976 17.777 -1.848 0 0 0 0 0 0 0 +4.947 17.781 -1.847 0 0 0 0 0 0 0 +4.891 17.797 -1.847 0 0 0 0 0 0 0 +4.834 17.806 -1.847 0 0 0 0 0 0 0 +4.769 17.79 -1.843 0 0 0 0 0 0 0 +4.709 17.79 -1.841 0 0 0 0 0 0 0 +4.648 17.784 -1.839 0 0 0 0 0 0 0 +4.585 17.769 -1.836 0 0 0 0 0 0 0 +4.546 17.734 -1.831 0 0 0 0 0 0 0 +4.488 17.739 -1.83 0 0 0 0 0 0 0 +2.444 10.368 -0.982 0 0 0 0 0 0 0 +2.415 10.389 -0.983 0 0 0 0 0 0 0 +2.525 11.025 -1.055 0 0 0 0 0 0 0 +2.502 11.087 -1.061 0 0 0 0 0 0 0 +2.601 11.704 -1.13 0 0 0 0 0 0 0 +2.58 11.784 -1.138 0 0 0 0 0 0 0 +2.683 12.45 -1.213 0 0 0 0 0 0 0 +2.767 13.143 -1.29 0 0 0 0 0 0 0 +2.62 12.845 -1.254 0 0 0 0 0 0 0 +2.63 13.104 -1.283 0 0 0 0 0 0 0 +3.144 16.223 -1.633 0 0 0 0 0 0 0 +3.097 16.256 -1.636 0 0 0 0 0 0 0 +3.068 16.241 -1.633 0 0 0 0 0 0 0 +3.018 16.258 -1.634 0 0 0 0 0 0 0 +2.969 16.28 -1.636 0 0 0 0 0 0 0 +2.919 16.297 -1.636 0 0 0 0 0 0 0 +2.863 16.274 -1.633 0 0 0 0 0 0 0 +0.596 3.429 -0.186 0 0 0 0 0 0 0 +2.813 16.293 -1.634 0 0 0 0 0 0 0 +0.592 3.468 -0.19 0 0 0 0 0 0 0 +2.763 16.308 -1.635 0 0 0 0 0 0 0 +0.584 3.491 -0.193 0 0 0 0 0 0 0 +0.578 3.527 -0.197 0 0 0 0 0 0 0 +0.568 3.53 -0.197 0 0 0 0 0 0 0 +0.56 3.554 -0.199 0 0 0 0 0 0 0 +0.545 3.53 -0.196 0 0 0 0 0 0 0 +0.539 3.531 -0.196 0 0 0 0 0 0 0 +0.526 3.519 -0.195 0 0 0 0 0 0 0 +0.514 3.51 -0.194 0 0 0 0 0 0 0 +0.506 3.538 -0.197 0 0 0 0 0 0 0 +0.485 3.46 -0.188 0 0 0 0 0 0 0 +0.504 3.695 -0.214 0 0 0 0 0 0 0 +2.092 16.383 -1.632 0 0 0 0 0 0 0 +2.067 16.396 -1.633 0 0 0 0 0 0 0 +2.018 16.417 -1.635 0 0 0 0 0 0 0 +1.968 16.439 -1.636 0 0 0 0 0 0 0 +1.919 16.469 -1.639 0 0 0 0 0 0 0 +1.87 16.502 -1.642 0 0 0 0 0 0 0 +1.823 16.549 -1.647 0 0 0 0 0 0 0 +1.772 16.567 -1.648 0 0 0 0 0 0 0 +1.719 16.563 -1.647 0 0 0 0 0 0 0 +1.695 16.587 -1.649 0 0 0 0 0 0 0 +1.644 16.6 -1.65 0 0 0 0 0 0 0 +1.593 16.613 -1.651 0 0 0 0 0 0 0 +1.541 16.63 -1.653 0 0 0 0 0 0 0 +1.49 16.645 -1.654 0 0 0 0 0 0 0 +1.441 16.685 -1.658 0 0 0 0 0 0 0 +1.393 16.747 -1.664 0 0 0 0 0 0 0 +1.369 16.777 -1.667 0 0 0 0 0 0 0 +1.322 16.856 -1.675 0 0 0 0 0 0 0 +1.324 17.608 -1.759 0 0 0 0 0 0 0 +1.272 17.659 -1.764 0 0 0 0 0 0 0 +1.22 17.709 -1.769 0 0 0 0 0 0 0 +1.167 17.75 -1.773 0 0 0 0 0 0 0 +1.113 17.795 -1.778 0 0 0 0 0 0 0 +1.087 17.831 -1.782 0 0 0 0 0 0 0 +1.033 17.862 -1.785 0 0 0 0 0 0 0 +0.98 17.917 -1.79 0 0 0 0 0 0 0 +0.927 17.997 -1.799 0 0 0 0 0 0 0 +0.874 18.068 -1.806 0 0 0 0 0 0 0 +0.831 18.392 -1.842 0 0 0 0 0 0 0 +0.761 18.093 -1.809 0 0 0 0 0 0 0 +0.732 18.076 -1.807 0 0 0 0 0 0 0 +0.674 18.052 -1.804 0 0 0 0 0 0 0 +0.617 18.042 -1.802 0 0 0 0 0 0 0 +0.56 18.044 -1.802 0 0 0 0 0 0 0 +0.504 18.042 -1.802 0 0 0 0 0 0 0 +0.447 18.057 -1.804 0 0 0 0 0 0 0 +0.391 18.065 -1.804 0 0 0 0 0 0 0 +0.363 18.077 -1.806 0 0 0 0 0 0 0 +0.306 18.076 -1.805 0 0 0 0 0 0 0 +0.249 18.081 -1.806 0 0 0 0 0 0 0 +0.192 18.082 -1.806 0 0 0 0 0 0 0 +0.135 18.102 -1.808 0 0 0 0 0 0 0 +0.079 18.104 -1.808 0 0 0 0 0 0 0 +0.022 18.107 -1.808 0 0 0 0 0 0 0 +-0.035 18.116 -1.81 0 0 0 0 0 0 0 +-0.064 18.114 -1.809 0 0 0 0 0 0 0 +-0.121 18.12 -1.81 0 0 0 0 0 0 0 +-0.178 18.12 -1.81 0 0 0 0 0 0 0 +-0.234 18.105 -1.808 0 0 0 0 0 0 0 +-0.291 18.106 -1.809 0 0 0 0 0 0 0 +-0.348 18.101 -1.808 0 0 0 0 0 0 0 +-0.405 18.098 -1.808 0 0 0 0 0 0 0 +-0.433 18.093 -1.808 0 0 0 0 0 0 0 +-0.49 18.086 -1.807 0 0 0 0 0 0 0 +-0.55 18.206 -1.82 0 0 0 0 0 0 0 +-0.608 18.202 -1.82 0 0 0 0 0 0 0 +-0.663 18.16 -1.816 0 0 0 0 0 0 0 +-0.718 18.112 -1.811 0 0 0 0 0 0 0 +-0.776 18.118 -1.811 0 0 0 0 0 0 0 +-0.803 18.097 -1.809 0 0 0 0 0 0 0 +-0.86 18.084 -1.808 0 0 0 0 0 0 0 +-0.917 18.089 -1.809 0 0 0 0 0 0 0 +-0.973 18.084 -1.809 0 0 0 0 0 0 0 +-1.031 18.087 -1.81 0 0 0 0 0 0 0 +-1.087 18.084 -1.81 0 0 0 0 0 0 0 +-1.145 18.088 -1.81 0 0 0 0 0 0 0 +-1.202 18.087 -1.811 0 0 0 0 0 0 0 +-1.231 18.103 -1.813 0 0 0 0 0 0 0 +-1.288 18.093 -1.812 0 0 0 0 0 0 0 +-1.346 18.104 -1.814 0 0 0 0 0 0 0 +-1.403 18.106 -1.814 0 0 0 0 0 0 0 +-1.461 18.113 -1.816 0 0 0 0 0 0 0 +-1.518 18.109 -1.816 0 0 0 0 0 0 0 +-1.576 18.112 -1.817 0 0 0 0 0 0 0 +-1.604 18.109 -1.817 0 0 0 0 0 0 0 +-1.663 18.132 -1.82 0 0 0 0 0 0 0 +-1.72 18.119 -1.819 0 0 0 0 0 0 0 +-1.779 18.139 -1.822 0 0 0 0 0 0 0 +-1.838 18.149 -1.823 0 0 0 0 0 0 0 +-1.897 18.161 -1.825 0 0 0 0 0 0 0 +-1.956 18.173 -1.827 0 0 0 0 0 0 0 +-1.985 18.181 -1.829 0 0 0 0 0 0 0 +-2.043 18.181 -1.829 0 0 0 0 0 0 0 +-2.105 18.212 -1.834 0 0 0 0 0 0 0 +-2.166 18.239 -1.837 0 0 0 0 0 0 0 +-2.243 18.394 -1.855 0 0 0 0 0 0 0 +-1.948 15.596 -1.543 0 0 0 0 0 0 0 +-1.973 15.405 -1.523 0 0 0 0 0 0 0 +-1.976 15.244 -1.505 0 0 0 0 0 0 0 +-2.001 15.066 -1.486 0 0 0 0 0 0 0 +-2.024 14.881 -1.466 0 0 0 0 0 0 0 +-2.048 14.715 -1.448 0 0 0 0 0 0 0 +-2.071 14.547 -1.43 0 0 0 0 0 0 0 +-2.094 14.385 -1.412 0 0 0 0 0 0 0 +-2.118 14.239 -1.397 0 0 0 0 0 0 0 +-2.116 14.078 -1.379 0 0 0 0 0 0 0 +-2.135 13.904 -1.36 0 0 0 0 0 0 0 +-2.156 13.758 -1.345 0 0 0 0 0 0 0 +-2.177 13.614 -1.329 0 0 0 0 0 0 0 +-2.198 13.476 -1.315 0 0 0 0 0 0 0 +-2.219 13.343 -1.3 0 0 0 0 0 0 0 +-2.237 13.195 -1.285 0 0 0 0 0 0 0 +-2.236 13.066 -1.27 0 0 0 0 0 0 0 +-2.257 12.944 -1.257 0 0 0 0 0 0 0 +-2.274 12.806 -1.243 0 0 0 0 0 0 0 +-2.292 12.677 -1.229 0 0 0 0 0 0 0 +-2.31 12.555 -1.216 0 0 0 0 0 0 0 +-2.326 12.424 -1.202 0 0 0 0 0 0 0 +-2.346 12.317 -1.191 0 0 0 0 0 0 0 +-2.363 12.197 -1.178 0 0 0 0 0 0 0 +-2.359 12.078 -1.165 0 0 0 0 0 0 0 +-2.374 11.953 -1.152 0 0 0 0 0 0 0 +-2.392 11.852 -1.141 0 0 0 0 0 0 0 +-2.406 11.732 -1.128 0 0 0 0 0 0 0 +-2.424 11.637 -1.119 0 0 0 0 0 0 0 +-2.44 11.532 -1.108 0 0 0 0 0 0 0 +-2.451 11.41 -1.095 0 0 0 0 0 0 0 +-2.449 11.313 -1.084 0 0 0 0 0 0 0 +-2.464 11.214 -1.074 0 0 0 0 0 0 0 +-2.479 11.117 -1.063 0 0 0 0 0 0 0 +-2.492 11.01 -1.052 0 0 0 0 0 0 0 +-2.509 10.927 -1.044 0 0 0 0 0 0 0 +-2.519 10.818 -1.032 0 0 0 0 0 0 0 +-2.533 10.725 -1.022 0 0 0 0 0 0 0 +-2.529 10.636 -1.013 0 0 0 0 0 0 0 +-2.542 10.541 -1.003 0 0 0 0 0 0 0 +-2.557 10.462 -0.995 0 0 0 0 0 0 0 +-2.572 10.382 -0.986 0 0 0 0 0 0 0 +-2.582 10.283 -0.976 0 0 0 0 0 0 0 +-2.596 10.204 -0.968 0 0 0 0 0 0 0 +-2.608 10.121 -0.959 0 0 0 0 0 0 0 +-2.605 10.046 -0.951 0 0 0 0 0 0 0 +-2.613 9.947 -0.941 0 0 0 0 0 0 0 +-2.632 9.895 -0.936 0 0 0 0 0 0 0 +-2.637 9.79 -0.925 0 0 0 0 0 0 0 +-2.626 9.629 -0.907 0 0 0 0 0 0 0 +-2.676 9.576 -0.903 0 0 0 0 0 0 0 +-2.688 9.504 -0.896 0 0 0 0 0 0 0 +-2.684 9.435 -0.888 0 0 0 0 0 0 0 +-2.694 9.358 -0.88 0 0 0 0 0 0 0 +-2.71 9.304 -0.875 0 0 0 0 0 0 0 +-2.697 9.152 -0.858 0 0 0 0 0 0 0 +-2.761 9.158 -0.861 0 0 0 0 0 0 0 +-2.775 9.1 -0.855 0 0 0 0 0 0 0 +-2.772 9.042 -0.849 0 0 0 0 0 0 0 +-2.791 9.003 -0.846 0 0 0 0 0 0 0 +-2.805 8.949 -0.84 0 0 0 0 0 0 0 +-2.818 8.893 -0.835 0 0 0 0 0 0 0 +-2.836 8.853 -0.831 0 0 0 0 0 0 0 +-2.855 8.816 -0.828 0 0 0 0 0 0 0 +-2.863 8.749 -0.821 0 0 0 0 0 0 0 +-2.867 8.716 -0.818 0 0 0 0 0 0 0 +-2.883 8.671 -0.814 0 0 0 0 0 0 0 +-2.895 8.619 -0.809 0 0 0 0 0 0 0 +-2.911 8.577 -0.805 0 0 0 0 0 0 0 +-2.926 8.533 -0.801 0 0 0 0 0 0 0 +-2.94 8.486 -0.796 0 0 0 0 0 0 0 +-2.947 8.422 -0.79 0 0 0 0 0 0 0 +-2.94 8.361 -0.783 0 0 0 0 0 0 0 +-2.965 8.348 -0.783 0 0 0 0 0 0 0 +-2.984 8.236 -0.772 0 0 0 0 0 0 0 +-3.003 8.21 -0.77 0 0 0 0 0 0 0 +-3.021 8.18 -0.767 0 0 0 0 0 0 0 +-3.037 8.144 -0.764 0 0 0 0 0 0 0 +-3.054 8.113 -0.762 0 0 0 0 0 0 0 +-3.055 8.076 -0.758 0 0 0 0 0 0 0 +-3.072 8.044 -0.755 0 0 0 0 0 0 0 +-3.088 8.01 -0.752 0 0 0 0 0 0 0 +-3.103 7.975 -0.749 0 0 0 0 0 0 0 +-3.12 7.947 -0.747 0 0 0 0 0 0 0 +-3.137 7.916 -0.745 0 0 0 0 0 0 0 +-3.154 7.886 -0.742 0 0 0 0 0 0 0 +-3.16 7.865 -0.74 0 0 0 0 0 0 0 +-3.168 7.814 -0.735 0 0 0 0 0 0 0 +-3.185 7.788 -0.733 0 0 0 0 0 0 0 +-3.204 7.763 -0.732 0 0 0 0 0 0 0 +-3.216 7.724 -0.728 0 0 0 0 0 0 0 +-3.233 7.697 -0.726 0 0 0 0 0 0 0 +-3.249 7.667 -0.724 0 0 0 0 0 0 0 +-3.24 7.612 -0.718 0 0 0 0 0 0 0 +-3.245 7.56 -0.713 0 0 0 0 0 0 0 +-3.269 7.55 -0.713 0 0 0 0 0 0 0 +-3.27 7.489 -0.706 0 0 0 0 0 0 0 +-3.277 7.44 -0.702 0 0 0 0 0 0 0 +-3.343 7.43 -0.704 0 0 0 0 0 0 0 +-3.286 7.245 -0.682 0 0 0 0 0 0 0 +-3.367 7.361 -0.698 0 0 0 0 0 0 0 +-3.901 7.307 -0.719 0 0 0 0 0 0 0 +-3.951 7.345 -0.725 0 0 0 0 0 0 0 +-3.968 7.322 -0.724 0 0 0 0 0 0 0 +-4.019 7.36 -0.73 0 0 0 0 0 0 0 +-4.045 7.353 -0.731 0 0 0 0 0 0 0 +-4.08 7.361 -0.734 0 0 0 0 0 0 0 +-4.101 7.372 -0.736 0 0 0 0 0 0 0 +-4.143 7.392 -0.74 0 0 0 0 0 0 0 +-4.215 7.465 -0.751 0 0 0 0 0 0 0 +-4.218 7.416 -0.746 0 0 0 0 0 0 0 +-4.232 7.387 -0.744 0 0 0 0 0 0 0 +-4.263 7.387 -0.746 0 0 0 0 0 0 0 +-4.285 7.372 -0.746 0 0 0 0 0 0 0 +-4.311 7.362 -0.746 0 0 0 0 0 0 0 +-4.337 7.381 -0.75 0 0 0 0 0 0 0 +-4.366 7.376 -0.751 0 0 0 0 0 0 0 +-4.397 7.376 -0.753 0 0 0 0 0 0 0 +-4.425 7.371 -0.754 0 0 0 0 0 0 0 +-4.453 7.365 -0.755 0 0 0 0 0 0 0 +-4.492 7.376 -0.758 0 0 0 0 0 0 0 +-4.515 7.362 -0.758 0 0 0 0 0 0 0 +-4.539 7.375 -0.761 0 0 0 0 0 0 0 +-4.569 7.371 -0.762 0 0 0 0 0 0 0 +-4.604 7.375 -0.764 0 0 0 0 0 0 0 +-4.636 7.376 -0.766 0 0 0 0 0 0 0 +-4.675 7.385 -0.77 0 0 0 0 0 0 0 +-4.699 7.372 -0.77 0 0 0 0 0 0 0 +-4.743 7.39 -0.774 0 0 0 0 0 0 0 +-4.771 7.382 -0.775 0 0 0 0 0 0 0 +-4.797 7.396 -0.778 0 0 0 0 0 0 0 +-4.808 7.363 -0.776 0 0 0 0 0 0 0 +-4.853 7.381 -0.78 0 0 0 0 0 0 0 +-4.939 7.46 -0.792 0 0 0 0 0 0 0 +-4.909 7.365 -0.782 0 0 0 0 0 0 0 +-4.965 7.397 -0.788 0 0 0 0 0 0 0 +-4.988 7.382 -0.788 0 0 0 0 0 0 0 +-4.997 7.371 -0.788 0 0 0 0 0 0 0 +-5.042 7.386 -0.792 0 0 0 0 0 0 0 +-7.295 10.596 -1.227 0 0 0 0 0 0 0 +-7.305 10.539 -1.222 0 0 0 0 0 0 0 +-7.311 10.477 -1.217 0 0 0 0 0 0 0 +-7.327 10.431 -1.214 0 0 0 0 0 0 0 +-7.333 10.369 -1.209 0 0 0 0 0 0 0 +-7.326 10.325 -1.204 0 0 0 0 0 0 0 +-7.337 10.273 -1.2 0 0 0 0 0 0 0 +-7.346 10.218 -1.196 0 0 0 0 0 0 0 +-7.337 10.138 -1.188 0 0 0 0 0 0 0 +-7.375 10.123 -1.189 0 0 0 0 0 0 0 +-7.367 10.046 -1.182 0 0 0 0 0 0 0 +-7.378 9.995 -1.178 0 0 0 0 0 0 0 +-7.368 9.949 -1.173 0 0 0 0 0 0 0 +-7.382 9.903 -1.17 0 0 0 0 0 0 0 +-7.387 9.845 -1.165 0 0 0 0 0 0 0 +-7.394 9.79 -1.161 0 0 0 0 0 0 0 +-7.405 9.741 -1.157 0 0 0 0 0 0 0 +-7.412 9.687 -1.153 0 0 0 0 0 0 0 +-7.418 9.632 -1.149 0 0 0 0 0 0 0 +-7.427 9.582 -1.145 0 0 0 0 0 0 0 +-7.425 9.548 -1.142 0 0 0 0 0 0 0 +-7.412 9.47 -1.134 0 0 0 0 0 0 0 +-7.432 9.434 -1.132 0 0 0 0 0 0 0 +-7.455 9.403 -1.131 0 0 0 0 0 0 0 +-7.453 9.339 -1.125 0 0 0 0 0 0 0 +-7.461 9.29 -1.122 0 0 0 0 0 0 0 +-7.467 9.238 -1.118 0 0 0 0 0 0 0 +-7.469 9.211 -1.115 0 0 0 0 0 0 0 +-7.472 9.155 -1.111 0 0 0 0 0 0 0 +-7.479 9.106 -1.107 0 0 0 0 0 0 0 +-7.495 9.067 -1.105 0 0 0 0 0 0 0 +-7.496 9.011 -1.1 0 0 0 0 0 0 0 +-7.507 8.966 -1.097 0 0 0 0 0 0 0 +-7.516 8.92 -1.094 0 0 0 0 0 0 0 +-7.501 8.875 -1.089 0 0 0 0 0 0 0 +-7.51 8.829 -1.086 0 0 0 0 0 0 0 +-7.51 8.773 -1.081 0 0 0 0 0 0 0 +-7.525 8.735 -1.079 0 0 0 0 0 0 0 +-7.527 8.682 -1.075 0 0 0 0 0 0 0 +-7.536 8.638 -1.072 0 0 0 0 0 0 0 +-7.545 8.593 -1.069 0 0 0 0 0 0 0 +-7.551 8.572 -1.067 0 0 0 0 0 0 0 +-7.552 8.521 -1.063 0 0 0 0 0 0 0 +-7.545 8.458 -1.057 0 0 0 0 0 0 0 +-7.559 8.421 -1.055 0 0 0 0 0 0 0 +-7.565 8.375 -1.052 0 0 0 0 0 0 0 +-7.566 8.324 -1.048 0 0 0 0 0 0 0 +-7.578 8.284 -1.045 0 0 0 0 0 0 0 +-7.576 8.256 -1.043 0 0 0 0 0 0 0 +-7.577 8.206 -1.039 0 0 0 0 0 0 0 +-7.588 8.166 -1.037 0 0 0 0 0 0 0 +-7.595 8.122 -1.033 0 0 0 0 0 0 0 +-7.592 8.067 -1.029 0 0 0 0 0 0 0 +-12.957 13.571 -1.881 0 0 0 0 0 0 0 +-12.991 13.521 -1.88 0 0 0 0 0 0 0 +-13.008 13.496 -1.879 0 0 0 0 0 0 0 +-13.043 13.448 -1.878 0 0 0 0 0 0 0 +-13.069 13.39 -1.875 0 0 0 0 0 0 0 +-13.114 13.352 -1.876 0 0 0 0 0 0 0 +-13.151 13.307 -1.875 0 0 0 0 0 0 0 +-13.189 13.261 -1.875 0 0 0 0 0 0 0 +-13.245 13.233 -1.877 0 0 0 0 0 0 0 +-13.244 13.192 -1.873 0 0 0 0 0 0 0 +-13.284 13.149 -1.873 0 0 0 0 0 0 0 +-13.321 13.103 -1.873 0 0 0 0 0 0 0 +-13.361 13.059 -1.872 0 0 0 0 0 0 0 +-13.405 13.02 -1.873 0 0 0 0 0 0 0 +-13.448 12.981 -1.873 0 0 0 0 0 0 0 +-13.495 12.944 -1.874 0 0 0 0 0 0 0 +-13.509 12.917 -1.873 0 0 0 0 0 0 0 +-13.557 12.881 -1.874 0 0 0 0 0 0 0 +-13.589 12.831 -1.873 0 0 0 0 0 0 0 +-13.623 12.782 -1.872 0 0 0 0 0 0 0 +-13.671 12.746 -1.873 0 0 0 0 0 0 0 +-13.709 12.702 -1.873 0 0 0 0 0 0 0 +-13.743 12.653 -1.872 0 0 0 0 0 0 0 +-13.761 12.63 -1.872 0 0 0 0 0 0 0 +-13.791 12.578 -1.87 0 0 0 0 0 0 0 +-13.833 12.537 -1.871 0 0 0 0 0 0 0 +-13.874 12.495 -1.871 0 0 0 0 0 0 0 +-13.912 12.45 -1.871 0 0 0 0 0 0 0 +-13.951 12.406 -1.871 0 0 0 0 0 0 0 +-13.979 12.353 -1.869 0 0 0 0 0 0 0 +-13.99 12.323 -1.868 0 0 0 0 0 0 0 +-14.04 12.29 -1.87 0 0 0 0 0 0 0 +-14.071 12.239 -1.869 0 0 0 0 0 0 0 +-14.116 12.2 -1.869 0 0 0 0 0 0 0 +-14.148 12.15 -1.869 0 0 0 0 0 0 0 +-14.188 12.107 -1.869 0 0 0 0 0 0 0 +-14.215 12.054 -1.867 0 0 0 0 0 0 0 +-14.256 12.011 -1.868 0 0 0 0 0 0 0 +-14.285 11.998 -1.869 0 0 0 0 0 0 0 +-14.33 11.959 -1.87 0 0 0 0 0 0 0 +-14.38 11.924 -1.872 0 0 0 0 0 0 0 +-14.448 11.904 -1.877 0 0 0 0 0 0 0 +-14.495 11.866 -1.878 0 0 0 0 0 0 0 +-14.541 11.828 -1.879 0 0 0 0 0 0 0 +-14.586 11.789 -1.88 0 0 0 0 0 0 0 +-14.626 11.783 -1.883 0 0 0 0 0 0 0 +-14.645 11.722 -1.881 0 0 0 0 0 0 0 +-14.691 11.684 -1.882 0 0 0 0 0 0 0 +-14.723 11.634 -1.881 0 0 0 0 0 0 0 +-14.756 11.585 -1.881 0 0 0 0 0 0 0 +-14.799 11.544 -1.882 0 0 0 0 0 0 0 +-14.84 11.501 -1.882 0 0 0 0 0 0 0 +-14.856 11.476 -1.882 0 0 0 0 0 0 0 +-14.902 11.437 -1.884 0 0 0 0 0 0 0 +-14.929 11.384 -1.882 0 0 0 0 0 0 0 +-14.96 11.333 -1.882 0 0 0 0 0 0 0 +-14.986 11.279 -1.881 0 0 0 0 0 0 0 +-15.02 11.231 -1.88 0 0 0 0 0 0 0 +-15.071 11.195 -1.882 0 0 0 0 0 0 0 +-15.102 11.181 -1.884 0 0 0 0 0 0 0 +-15.129 11.128 -1.883 0 0 0 0 0 0 0 +-15.16 11.078 -1.883 0 0 0 0 0 0 0 +-15.202 11.035 -1.884 0 0 0 0 0 0 0 +-15.233 10.985 -1.883 0 0 0 0 0 0 0 +-15.266 10.936 -1.883 0 0 0 0 0 0 0 +-15.307 10.892 -1.884 0 0 0 0 0 0 0 +-15.31 10.822 -1.88 0 0 0 0 0 0 0 +-15.314 10.789 -1.878 0 0 0 0 0 0 0 +-15.349 10.742 -1.878 0 0 0 0 0 0 0 +-15.367 10.682 -1.876 0 0 0 0 0 0 0 +-15.38 10.621 -1.873 0 0 0 0 0 0 0 +-15.392 10.558 -1.87 0 0 0 0 0 0 0 +-15.337 10.449 -1.858 0 0 0 0 0 0 0 +-6.769 4.598 -0.708 0 0 0 0 0 0 0 +-6.768 4.582 -0.707 0 0 0 0 0 0 0 +-6.743 4.534 -0.701 0 0 0 0 0 0 0 +-6.746 4.506 -0.7 0 0 0 0 0 0 0 +-6.775 4.494 -0.702 0 0 0 0 0 0 0 +-6.749 4.447 -0.697 0 0 0 0 0 0 0 +-6.783 4.439 -0.699 0 0 0 0 0 0 0 +-6.757 4.391 -0.694 0 0 0 0 0 0 0 +-6.752 4.373 -0.692 0 0 0 0 0 0 0 +-6.786 4.365 -0.695 0 0 0 0 0 0 0 +-6.858 4.381 -0.703 0 0 0 0 0 0 0 +-15.542 9.821 -1.839 0 0 0 0 0 0 0 +-15.548 9.756 -1.836 0 0 0 0 0 0 0 +-15.56 9.695 -1.834 0 0 0 0 0 0 0 +-15.566 9.632 -1.83 0 0 0 0 0 0 0 +-15.565 9.597 -1.828 0 0 0 0 0 0 0 +-15.573 9.535 -1.825 0 0 0 0 0 0 0 +-15.572 9.467 -1.821 0 0 0 0 0 0 0 +-15.586 9.409 -1.819 0 0 0 0 0 0 0 +-15.6 9.351 -1.817 0 0 0 0 0 0 0 +-15.604 9.287 -1.814 0 0 0 0 0 0 0 +-15.621 9.23 -1.813 0 0 0 0 0 0 0 +-15.612 9.192 -1.81 0 0 0 0 0 0 0 +-15.616 9.129 -1.806 0 0 0 0 0 0 0 +-15.631 9.072 -1.805 0 0 0 0 0 0 0 +-15.639 9.011 -1.802 0 0 0 0 0 0 0 +-15.65 8.952 -1.8 0 0 0 0 0 0 0 +-14.143 8.034 -1.604 0 0 0 0 0 0 0 +-15.643 8.818 -1.792 0 0 0 0 0 0 0 +-15.655 8.792 -1.792 0 0 0 0 0 0 0 +-15.653 8.727 -1.788 0 0 0 0 0 0 0 +-14.328 7.932 -1.617 0 0 0 0 0 0 0 +-12.593 6.872 -1.391 0 0 0 0 0 0 0 +-12.597 6.823 -1.389 0 0 0 0 0 0 0 +-12.641 6.795 -1.392 0 0 0 0 0 0 0 +-13.686 7.299 -1.52 0 0 0 0 0 0 0 +-13.855 7.361 -1.54 0 0 0 0 0 0 0 +-13.97 7.366 -1.552 0 0 0 0 0 0 0 +-14.159 7.352 -1.57 0 0 0 0 0 0 0 +-7.149 3.67 -0.692 0 0 0 0 0 0 0 +-7.177 3.655 -0.693 0 0 0 0 0 0 0 +-7.271 3.689 -0.705 0 0 0 0 0 0 0 +-7.331 3.69 -0.71 0 0 0 0 0 0 0 +-7.439 3.715 -0.722 0 0 0 0 0 0 0 +-7.486 3.709 -0.727 0 0 0 0 0 0 0 +-7.612 3.741 -0.741 0 0 0 0 0 0 0 +-7.747 3.777 -0.756 0 0 0 0 0 0 0 +-14.571 6.993 -1.593 0 0 0 0 0 0 0 +-14.351 6.833 -1.563 0 0 0 0 0 0 0 +-14.586 6.888 -1.589 0 0 0 0 0 0 0 +-13.93 6.526 -1.506 0 0 0 0 0 0 0 +-15.986 7.424 -1.755 0 0 0 0 0 0 0 +-16.016 7.377 -1.756 0 0 0 0 0 0 0 +-16.047 7.33 -1.757 0 0 0 0 0 0 0 +-16.111 7.329 -1.763 0 0 0 0 0 0 0 +-16.126 7.275 -1.762 0 0 0 0 0 0 0 +-16.147 7.223 -1.762 0 0 0 0 0 0 0 +-18.214 8.075 -2.01 0 0 0 0 0 0 0 +-18.261 8.028 -2.013 0 0 0 0 0 0 0 +-18.299 7.976 -2.014 0 0 0 0 0 0 0 +-18.331 7.921 -2.015 0 0 0 0 0 0 0 +-18.332 7.888 -2.014 0 0 0 0 0 0 0 +-18.361 7.832 -2.014 0 0 0 0 0 0 0 +-18.367 7.766 -2.012 0 0 0 0 0 0 0 +-18.369 7.699 -2.009 0 0 0 0 0 0 0 +-18.364 7.63 -2.006 0 0 0 0 0 0 0 +-18.362 7.561 -2.003 0 0 0 0 0 0 0 +-18.367 7.496 -2 0 0 0 0 0 0 0 +-18.37 7.43 -1.998 0 0 0 0 0 0 0 +-18.334 7.382 -1.992 0 0 0 0 0 0 0 +-18.337 7.316 -1.99 0 0 0 0 0 0 0 +-18.339 7.251 -1.987 0 0 0 0 0 0 0 +-18.357 7.191 -1.987 0 0 0 0 0 0 0 +-18.342 7.119 -1.982 0 0 0 0 0 0 0 +-18.364 7.061 -1.982 0 0 0 0 0 0 0 +-18.371 6.998 -1.981 0 0 0 0 0 0 0 +-18.373 6.965 -1.979 0 0 0 0 0 0 0 +-18.369 6.898 -1.976 0 0 0 0 0 0 0 +-18.402 6.844 -1.978 0 0 0 0 0 0 0 +-18.388 6.773 -1.974 0 0 0 0 0 0 0 +-18.396 6.711 -1.972 0 0 0 0 0 0 0 +-18.42 6.654 -1.972 0 0 0 0 0 0 0 +-18.426 6.591 -1.971 0 0 0 0 0 0 0 +-18.423 6.558 -1.969 0 0 0 0 0 0 0 +-18.431 6.495 -1.968 0 0 0 0 0 0 0 +-18.444 6.435 -1.967 0 0 0 0 0 0 0 +-18.462 6.376 -1.966 0 0 0 0 0 0 0 +-18.467 6.313 -1.965 0 0 0 0 0 0 0 +-18.498 6.259 -1.966 0 0 0 0 0 0 0 +-18.5 6.195 -1.964 0 0 0 0 0 0 0 +-18.52 6.169 -1.965 0 0 0 0 0 0 0 +-18.537 6.11 -1.965 0 0 0 0 0 0 0 +-18.56 6.053 -1.965 0 0 0 0 0 0 0 +-18.548 5.985 -1.962 0 0 0 0 0 0 0 +-18.58 5.931 -1.963 0 0 0 0 0 0 0 +-18.574 5.865 -1.961 0 0 0 0 0 0 0 +-18.579 5.802 -1.959 0 0 0 0 0 0 0 +-18.579 5.77 -1.958 0 0 0 0 0 0 0 +-18.595 5.711 -1.958 0 0 0 0 0 0 0 +-18.59 5.646 -1.955 0 0 0 0 0 0 0 +-18.602 5.586 -1.954 0 0 0 0 0 0 0 +-18.614 5.525 -1.954 0 0 0 0 0 0 0 +-18.637 5.469 -1.954 0 0 0 0 0 0 0 +-18.642 5.407 -1.953 0 0 0 0 0 0 0 +-18.637 5.374 -1.951 0 0 0 0 0 0 0 +-18.649 5.313 -1.951 0 0 0 0 0 0 0 +-18.657 5.253 -1.95 0 0 0 0 0 0 0 +-18.664 5.191 -1.949 0 0 0 0 0 0 0 +-18.69 5.135 -1.95 0 0 0 0 0 0 0 +-18.727 5.082 -1.952 0 0 0 0 0 0 0 +-9.931 2.674 -0.941 0 0 0 0 0 0 0 +-10.026 2.265 -0.94 0 0 0 0 0 0 0 +-9.045 1.942 -0.826 0 0 0 0 0 0 0 +-10.243 1.696 -0.952 0 0 0 0 0 0 0 +-10.267 1.667 -0.954 0 0 0 0 0 0 0 +-10.277 1.635 -0.954 0 0 0 0 0 0 0 +-10.278 1.602 -0.954 0 0 0 0 0 0 0 +-10.288 1.587 -0.955 0 0 0 0 0 0 0 +-10.291 1.554 -0.955 0 0 0 0 0 0 0 +-10.302 1.523 -0.955 0 0 0 0 0 0 0 +-10.324 1.493 -0.957 0 0 0 0 0 0 0 +-10.335 1.462 -0.958 0 0 0 0 0 0 0 +-10.356 1.216 -0.957 0 0 0 0 0 0 0 +-9.457 0.918 -0.854 0 0 0 0 0 0 0 +-18.859 1.208 -1.896 0 0 0 0 0 0 0 +-18.859 1.149 -1.896 0 0 0 0 0 0 0 +-18.929 0.914 -1.902 0 0 0 0 0 0 0 +-18.877 0.882 -1.896 0 0 0 0 0 0 0 +-18.854 0.822 -1.893 0 0 0 0 0 0 0 +-18.851 0.762 -1.893 0 0 0 0 0 0 0 +-18.831 0.702 -1.89 0 0 0 0 0 0 0 +-18.807 0.642 -1.887 0 0 0 0 0 0 0 +-18.817 0.583 -1.888 0 0 0 0 0 0 0 +-18.714 0.521 -1.877 0 0 0 0 0 0 0 +-18.283 0.481 -1.829 0 0 0 0 0 0 0 +-18.686 0.433 -1.873 0 0 0 0 0 0 0 +-18.793 0.376 -1.885 0 0 0 0 0 0 0 +-18.788 0.317 -1.884 0 0 0 0 0 0 0 +-18.777 0.258 -1.883 0 0 0 0 0 0 0 +-18.756 0.198 -1.881 0 0 0 0 0 0 0 +-18.756 0.139 -1.881 0 0 0 0 0 0 0 +-18.734 0.11 -1.878 0 0 0 0 0 0 0 +-18.713 0.051 -1.876 0 0 0 0 0 0 0 +-18.725 -0.008 -1.877 0 0 0 0 0 0 0 +-18.655 -0.066 -1.869 0 0 0 0 0 0 0 +-18.695 -0.125 -1.874 0 0 0 0 0 0 0 +-18.714 -0.184 -1.876 0 0 0 0 0 0 0 +-18.711 -0.243 -1.876 0 0 0 0 0 0 0 +-18.677 -0.272 -1.872 0 0 0 0 0 0 0 +-18.678 -0.331 -1.872 0 0 0 0 0 0 0 +-18.665 -0.389 -1.871 0 0 0 0 0 0 0 +-19.985 -0.481 -2.017 0 0 0 0 0 0 0 +-19.97 -0.544 -2.016 0 0 0 0 0 0 0 +-19.932 -0.605 -2.012 0 0 0 0 0 0 0 +-19.912 -0.667 -2.01 0 0 0 0 0 0 0 +-19.912 -0.73 -2.01 0 0 0 0 0 0 0 +-19.922 -0.793 -2.011 0 0 0 0 0 0 0 +-19.879 -0.822 -2.007 0 0 0 0 0 0 0 +-19.874 -0.885 -2.007 0 0 0 0 0 0 0 +-19.843 -0.946 -2.004 0 0 0 0 0 0 0 +-19.838 -1.008 -2.003 0 0 0 0 0 0 0 +-19.831 -1.07 -2.003 0 0 0 0 0 0 0 +-19.82 -1.132 -2.002 0 0 0 0 0 0 0 +-19.81 -1.194 -2.001 0 0 0 0 0 0 0 +-19.796 -1.224 -2 0 0 0 0 0 0 0 +-19.782 -1.286 -1.999 0 0 0 0 0 0 0 +-19.756 -1.346 -1.996 0 0 0 0 0 0 0 +-19.724 -1.406 -1.993 0 0 0 0 0 0 0 +-19.704 -1.467 -1.992 0 0 0 0 0 0 0 +-19.644 -1.525 -1.985 0 0 0 0 0 0 0 +-19.627 -1.585 -1.984 0 0 0 0 0 0 0 +-19.605 -1.614 -1.982 0 0 0 0 0 0 0 +-19.629 -1.679 -1.985 0 0 0 0 0 0 0 +-16.153 -1.479 -1.599 0 0 0 0 0 0 0 +-16.172 -1.532 -1.602 0 0 0 0 0 0 0 +-19.531 -1.918 -1.977 0 0 0 0 0 0 0 +-19.557 -1.982 -1.98 0 0 0 0 0 0 0 +-19.544 -2.012 -1.979 0 0 0 0 0 0 0 +-19.587 -2.079 -1.985 0 0 0 0 0 0 0 +-19.578 -2.14 -1.985 0 0 0 0 0 0 0 +-19.534 -2.197 -1.98 0 0 0 0 0 0 0 +-19.564 -2.263 -1.985 0 0 0 0 0 0 0 +-19.532 -2.321 -1.982 0 0 0 0 0 0 0 +-19.585 -2.39 -1.989 0 0 0 0 0 0 0 +-19.55 -2.417 -1.985 0 0 0 0 0 0 0 +-19.552 -2.48 -1.986 0 0 0 0 0 0 0 +-19.503 -2.536 -1.981 0 0 0 0 0 0 0 +-19.489 -2.596 -1.981 0 0 0 0 0 0 0 +-19.469 -2.656 -1.979 0 0 0 0 0 0 0 +-19.431 -2.713 -1.976 0 0 0 0 0 0 0 +-19.418 -2.773 -1.976 0 0 0 0 0 0 0 +-19.392 -2.832 -1.974 0 0 0 0 0 0 0 +-19.36 -2.858 -1.971 0 0 0 0 0 0 0 +-19.355 -2.919 -1.971 0 0 0 0 0 0 0 +-19.322 -2.976 -1.968 0 0 0 0 0 0 0 +-19.291 -3.034 -1.966 0 0 0 0 0 0 0 +-19.262 -3.091 -1.964 0 0 0 0 0 0 0 +-19.248 -3.151 -1.963 0 0 0 0 0 0 0 +-19.208 -3.206 -1.96 0 0 0 0 0 0 0 +-19.18 -3.233 -1.957 0 0 0 0 0 0 0 +-19.16 -3.291 -1.956 0 0 0 0 0 0 0 +-19.12 -3.346 -1.953 0 0 0 0 0 0 0 +-19.111 -3.407 -1.953 0 0 0 0 0 0 0 +-19.081 -3.463 -1.951 0 0 0 0 0 0 0 +-19.029 -3.515 -1.946 0 0 0 0 0 0 0 +-18.998 -3.571 -1.944 0 0 0 0 0 0 0 +-19.002 -3.603 -1.945 0 0 0 0 0 0 0 +-18.977 -3.66 -1.944 0 0 0 0 0 0 0 +-18.938 -3.714 -1.941 0 0 0 0 0 0 0 +-18.894 -3.767 -1.937 0 0 0 0 0 0 0 +-18.868 -3.824 -1.935 0 0 0 0 0 0 0 +-18.829 -3.877 -1.932 0 0 0 0 0 0 0 +-18.789 -3.931 -1.929 0 0 0 0 0 0 0 +-18.764 -3.956 -1.927 0 0 0 0 0 0 0 +-18.714 -4.007 -1.923 0 0 0 0 0 0 0 +-18.69 -4.063 -1.922 0 0 0 0 0 0 0 +-18.673 -4.121 -1.921 0 0 0 0 0 0 0 +-18.617 -4.17 -1.916 0 0 0 0 0 0 0 +-18.604 -4.229 -1.916 0 0 0 0 0 0 0 +-18.583 -4.285 -1.915 0 0 0 0 0 0 0 +-18.553 -4.309 -1.913 0 0 0 0 0 0 0 +-18.526 -4.364 -1.911 0 0 0 0 0 0 0 +-18.495 -4.418 -1.909 0 0 0 0 0 0 0 +-18.45 -4.469 -1.906 0 0 0 0 0 0 0 +-18.424 -4.524 -1.904 0 0 0 0 0 0 0 +-18.396 -4.578 -1.903 0 0 0 0 0 0 0 +-18.363 -4.631 -1.901 0 0 0 0 0 0 0 +-18.344 -4.657 -1.899 0 0 0 0 0 0 0 +-18.304 -4.708 -1.896 0 0 0 0 0 0 0 +-18.27 -4.761 -1.894 0 0 0 0 0 0 0 +-18.237 -4.813 -1.892 0 0 0 0 0 0 0 +-18.22 -4.87 -1.892 0 0 0 0 0 0 0 +-18.19 -4.923 -1.89 0 0 0 0 0 0 0 +-18.155 -4.975 -1.888 0 0 0 0 0 0 0 +-18.109 -4.993 -1.884 0 0 0 0 0 0 0 +-18.093 -5.05 -1.884 0 0 0 0 0 0 0 +-18.062 -5.102 -1.882 0 0 0 0 0 0 0 +-18.005 -5.147 -1.877 0 0 0 0 0 0 0 +-17.879 -5.172 -1.864 0 0 0 0 0 0 0 +-17.814 -5.214 -1.859 0 0 0 0 0 0 0 +-17.748 -5.255 -1.853 0 0 0 0 0 0 0 +-17.69 -5.298 -1.848 0 0 0 0 0 0 0 +-17.63 -5.31 -1.842 0 0 0 0 0 0 0 +-17.564 -5.351 -1.837 0 0 0 0 0 0 0 +-17.492 -5.389 -1.83 0 0 0 0 0 0 0 +-17.42 -5.426 -1.824 0 0 0 0 0 0 0 +-17.346 -5.463 -1.817 0 0 0 0 0 0 0 +-17.299 -5.508 -1.814 0 0 0 0 0 0 0 +-17.236 -5.548 -1.808 0 0 0 0 0 0 0 +-17.272 -5.589 -1.814 0 0 0 0 0 0 0 +-17.311 -5.662 -1.82 0 0 0 0 0 0 0 +-17.35 -5.735 -1.827 0 0 0 0 0 0 0 +-17.383 -5.807 -1.833 0 0 0 0 0 0 0 +-17.37 -5.863 -1.834 0 0 0 0 0 0 0 +-17.31 -5.904 -1.829 0 0 0 0 0 0 0 +-17.232 -5.937 -1.822 0 0 0 0 0 0 0 +-17.166 -5.945 -1.815 0 0 0 0 0 0 0 +-17.097 -5.981 -1.809 0 0 0 0 0 0 0 +-17.035 -6.019 -1.804 0 0 0 0 0 0 0 +-16.791 -5.992 -1.778 0 0 0 0 0 0 0 +-16.763 -6.042 -1.776 0 0 0 0 0 0 0 +-16.841 -6.13 -1.788 0 0 0 0 0 0 0 +-16.771 -6.164 -1.782 0 0 0 0 0 0 0 +-16.72 -6.175 -1.777 0 0 0 0 0 0 0 +-16.656 -6.211 -1.772 0 0 0 0 0 0 0 +-16.579 -6.241 -1.765 0 0 0 0 0 0 0 +-16.515 -6.276 -1.76 0 0 0 0 0 0 0 +-16.452 -6.312 -1.755 0 0 0 0 0 0 0 +-16.332 -6.325 -1.743 0 0 0 0 0 0 0 +-16.316 -6.377 -1.743 0 0 0 0 0 0 0 +-16.267 -6.388 -1.739 0 0 0 0 0 0 0 +-16.197 -6.419 -1.733 0 0 0 0 0 0 0 +-16.127 -6.45 -1.727 0 0 0 0 0 0 0 +-16.053 -6.479 -1.72 0 0 0 0 0 0 0 +-15.987 -6.51 -1.715 0 0 0 0 0 0 0 +-15.966 -6.56 -1.715 0 0 0 0 0 0 0 +-15.983 -6.626 -1.719 0 0 0 0 0 0 0 +-15.99 -6.659 -1.721 0 0 0 0 0 0 0 +-15.86 -6.662 -1.708 0 0 0 0 0 0 0 +-15.826 -6.707 -1.707 0 0 0 0 0 0 0 +-15.806 -6.757 -1.707 0 0 0 0 0 0 0 +-15.997 -6.899 -1.732 0 0 0 0 0 0 0 +-16.011 -6.965 -1.737 0 0 0 0 0 0 0 +-16.02 -7.029 -1.741 0 0 0 0 0 0 0 +-16.042 -7.068 -1.744 0 0 0 0 0 0 0 +-15.945 -7.085 -1.735 0 0 0 0 0 0 0 +-15.861 -7.108 -1.728 0 0 0 0 0 0 0 +-15.776 -7.129 -1.72 0 0 0 0 0 0 0 +-15.697 -7.153 -1.713 0 0 0 0 0 0 0 +-15.709 -7.218 -1.718 0 0 0 0 0 0 0 +-15.711 -7.279 -1.721 0 0 0 0 0 0 0 +-15.727 -7.316 -1.724 0 0 0 0 0 0 0 +-15.736 -7.381 -1.728 0 0 0 0 0 0 0 +-15.738 -7.442 -1.731 0 0 0 0 0 0 0 +-14.831 -7.068 -1.622 0 0 0 0 0 0 0 +-15.752 -7.57 -1.739 0 0 0 0 0 0 0 +-15.771 -7.64 -1.744 0 0 0 0 0 0 0 +-15.749 -7.691 -1.744 0 0 0 0 0 0 0 +-14.784 -7.247 -1.626 0 0 0 0 0 0 0 +-14.736 -7.281 -1.623 0 0 0 0 0 0 0 +-14.733 -7.337 -1.626 0 0 0 0 0 0 0 +-16.176 -8.122 -1.808 0 0 0 0 0 0 0 +-16.174 -8.185 -1.811 0 0 0 0 0 0 0 +-16.197 -8.261 -1.817 0 0 0 0 0 0 0 +-16.194 -8.323 -1.82 0 0 0 0 0 0 0 +-16.207 -8.394 -1.825 0 0 0 0 0 0 0 +-16.225 -8.436 -1.828 0 0 0 0 0 0 0 +-16.218 -8.497 -1.831 0 0 0 0 0 0 0 +-16.233 -8.571 -1.836 0 0 0 0 0 0 0 +-16.243 -8.641 -1.841 0 0 0 0 0 0 0 +-16.249 -8.71 -1.845 0 0 0 0 0 0 0 +-16.257 -8.78 -1.849 0 0 0 0 0 0 0 +-16.254 -8.844 -1.853 0 0 0 0 0 0 0 +-16.285 -8.895 -1.858 0 0 0 0 0 0 0 +-16.283 -8.96 -1.862 0 0 0 0 0 0 0 +-16.281 -9.026 -1.865 0 0 0 0 0 0 0 +-16.289 -9.097 -1.869 0 0 0 0 0 0 0 +-16.295 -9.168 -1.874 0 0 0 0 0 0 0 +-16.302 -9.24 -1.879 0 0 0 0 0 0 0 +-16.318 -9.317 -1.884 0 0 0 0 0 0 0 +-16.334 -9.36 -1.888 0 0 0 0 0 0 0 +-16.326 -9.423 -1.891 0 0 0 0 0 0 0 +-16.315 -9.486 -1.893 0 0 0 0 0 0 0 +-16.302 -9.547 -1.895 0 0 0 0 0 0 0 +-16.284 -9.605 -1.897 0 0 0 0 0 0 0 +-16.242 -9.649 -1.895 0 0 0 0 0 0 0 +-16.227 -9.709 -1.897 0 0 0 0 0 0 0 +-16.24 -9.752 -1.901 0 0 0 0 0 0 0 +-16.216 -9.807 -1.902 0 0 0 0 0 0 0 +-16.208 -9.872 -1.905 0 0 0 0 0 0 0 +-16.197 -9.935 -1.908 0 0 0 0 0 0 0 +-16.174 -9.991 -1.909 0 0 0 0 0 0 0 +-16.146 -10.044 -1.909 0 0 0 0 0 0 0 +-16.129 -10.104 -1.911 0 0 0 0 0 0 0 +-16.12 -10.134 -1.912 0 0 0 0 0 0 0 +-16.097 -10.19 -1.913 0 0 0 0 0 0 0 +-16.075 -10.247 -1.914 0 0 0 0 0 0 0 +-16.057 -10.307 -1.916 0 0 0 0 0 0 0 +-16.023 -10.356 -1.916 0 0 0 0 0 0 0 +-16.004 -10.415 -1.918 0 0 0 0 0 0 0 +-15.963 -10.46 -1.917 0 0 0 0 0 0 0 +-15.95 -10.487 -1.917 0 0 0 0 0 0 0 +-15.922 -10.541 -1.918 0 0 0 0 0 0 0 +-15.897 -10.596 -1.919 0 0 0 0 0 0 0 +-15.867 -10.648 -1.92 0 0 0 0 0 0 0 +-15.828 -10.695 -1.919 0 0 0 0 0 0 0 +-15.808 -10.753 -1.921 0 0 0 0 0 0 0 +-10.668 -7.321 -1.235 0 0 0 0 0 0 0 +-10.656 -7.362 -1.237 0 0 0 0 0 0 0 +-10.625 -7.39 -1.236 0 0 0 0 0 0 0 +-10.581 -7.408 -1.233 0 0 0 0 0 0 0 +-10.527 -7.42 -1.229 0 0 0 0 0 0 0 +-10.474 -7.432 -1.225 0 0 0 0 0 0 0 +-10.456 -7.468 -1.225 0 0 0 0 0 0 0 +-10.421 -7.493 -1.224 0 0 0 0 0 0 0 +-10.427 -7.522 -1.226 0 0 0 0 0 0 0 +-10.411 -7.561 -1.227 0 0 0 0 0 0 0 +-10.421 -7.618 -1.232 0 0 0 0 0 0 0 +-10.402 -7.654 -1.233 0 0 0 0 0 0 0 +-10.489 -7.77 -1.248 0 0 0 0 0 0 0 +-10.57 -7.934 -1.266 0 0 0 0 0 0 0 +-10.583 -7.97 -1.27 0 0 0 0 0 0 0 +-15.27 -11.589 -1.926 0 0 0 0 0 0 0 +-15.24 -11.642 -1.927 0 0 0 0 0 0 0 +-15.208 -11.693 -1.928 0 0 0 0 0 0 0 +-15.197 -11.761 -1.931 0 0 0 0 0 0 0 +-15.175 -11.82 -1.934 0 0 0 0 0 0 0 +-15.169 -11.893 -1.938 0 0 0 0 0 0 0 +-15.16 -11.924 -1.939 0 0 0 0 0 0 0 +-15.147 -11.991 -1.943 0 0 0 0 0 0 0 +-15.102 -12.033 -1.942 0 0 0 0 0 0 0 +-15.087 -12.099 -1.945 0 0 0 0 0 0 0 +-15.041 -12.14 -1.944 0 0 0 0 0 0 0 +-15.023 -12.203 -1.947 0 0 0 0 0 0 0 +-14.977 -12.244 -1.946 0 0 0 0 0 0 0 +-14.972 -12.279 -1.948 0 0 0 0 0 0 0 +-14.938 -12.33 -1.948 0 0 0 0 0 0 0 +-14.894 -12.373 -1.948 0 0 0 0 0 0 0 +-14.863 -12.426 -1.949 0 0 0 0 0 0 0 +-14.844 -12.489 -1.952 0 0 0 0 0 0 0 +-14.804 -12.536 -1.952 0 0 0 0 0 0 0 +-14.766 -12.583 -1.952 0 0 0 0 0 0 0 +-14.759 -12.617 -1.954 0 0 0 0 0 0 0 +-14.723 -12.667 -1.954 0 0 0 0 0 0 0 +-14.694 -12.722 -1.956 0 0 0 0 0 0 0 +-14.669 -12.782 -1.958 0 0 0 0 0 0 0 +-14.642 -12.839 -1.96 0 0 0 0 0 0 0 +-14.495 -12.791 -1.944 0 0 0 0 0 0 0 +-13.757 -12.215 -1.841 0 0 0 0 0 0 0 +-14.545 -12.958 -1.961 0 0 0 0 0 0 0 +-13.752 -12.327 -1.849 0 0 0 0 0 0 0 +-14.495 -13.077 -1.965 0 0 0 0 0 0 0 +-14.464 -13.132 -1.967 0 0 0 0 0 0 0 +-14.441 -13.195 -1.97 0 0 0 0 0 0 0 +-14.407 -13.247 -1.971 0 0 0 0 0 0 0 +-14.364 -13.291 -1.971 0 0 0 0 0 0 0 +-14.349 -13.319 -1.972 0 0 0 0 0 0 0 +-14.326 -13.381 -1.974 0 0 0 0 0 0 0 +-14.252 -13.396 -1.97 0 0 0 0 0 0 0 +-14.151 -13.385 -1.961 0 0 0 0 0 0 0 +-14.061 -13.384 -1.953 0 0 0 0 0 0 0 +-13.952 -13.363 -1.943 0 0 0 0 0 0 0 +-13.941 -13.438 -1.948 0 0 0 0 0 0 0 +-13.886 -13.469 -1.946 0 0 0 0 0 0 0 +-13.88 -13.506 -1.948 0 0 0 0 0 0 0 +-13.844 -13.555 -1.949 0 0 0 0 0 0 0 +-13.78 -13.578 -1.946 0 0 0 0 0 0 0 +-13.733 -13.617 -1.945 0 0 0 0 0 0 0 +-13.791 -13.761 -1.961 0 0 0 0 0 0 0 +-13.794 -13.851 -1.968 0 0 0 0 0 0 0 +-13.817 -13.962 -1.979 0 0 0 0 0 0 0 +-13.85 -14.039 -1.987 0 0 0 0 0 0 0 +-13.822 -14.099 -1.99 0 0 0 0 0 0 0 +-13.797 -14.163 -1.993 0 0 0 0 0 0 0 +-13.769 -14.223 -1.996 0 0 0 0 0 0 0 +-13.729 -14.27 -1.996 0 0 0 0 0 0 0 +-13.689 -14.319 -1.997 0 0 0 0 0 0 0 +-13.654 -14.372 -1.999 0 0 0 0 0 0 0 +-13.664 -14.428 -2.004 0 0 0 0 0 0 0 +-13.625 -14.479 -2.005 0 0 0 0 0 0 0 +-13.611 -14.555 -2.01 0 0 0 0 0 0 0 +-13.58 -14.613 -2.013 0 0 0 0 0 0 0 +-13.542 -14.665 -2.014 0 0 0 0 0 0 0 +-13.518 -14.731 -2.018 0 0 0 0 0 0 0 +-13.475 -14.778 -2.018 0 0 0 0 0 0 0 +-13.479 -14.828 -2.023 0 0 0 0 0 0 0 +-13.451 -14.891 -2.026 0 0 0 0 0 0 0 +-13.445 -14.979 -2.033 0 0 0 0 0 0 0 +-13.439 -15.067 -2.039 0 0 0 0 0 0 0 +-13.445 -15.171 -2.049 0 0 0 0 0 0 0 +-13.438 -15.259 -2.055 0 0 0 0 0 0 0 +-13.445 -15.364 -2.065 0 0 0 0 0 0 0 +-13.477 -15.45 -2.074 0 0 0 0 0 0 0 +-13.469 -15.539 -2.081 0 0 0 0 0 0 0 +-13.461 -15.629 -2.088 0 0 0 0 0 0 0 +-13.457 -15.724 -2.096 0 0 0 0 0 0 0 +-13.438 -15.801 -2.101 0 0 0 0 0 0 0 +-13.431 -15.895 -2.108 0 0 0 0 0 0 0 +-13.379 -15.934 -2.108 0 0 0 0 0 0 0 +-13.305 -15.897 -2.099 0 0 0 0 0 0 0 +-13.226 -15.904 -2.094 0 0 0 0 0 0 0 +-13.161 -15.927 -2.092 0 0 0 0 0 0 0 +-13.084 -15.936 -2.087 0 0 0 0 0 0 0 +-13.009 -15.946 -2.083 0 0 0 0 0 0 0 +-12.945 -15.97 -2.08 0 0 0 0 0 0 0 +-12.87 -15.979 -2.076 0 0 0 0 0 0 0 +-12.809 -15.954 -2.069 0 0 0 0 0 0 0 +-12.74 -15.971 -2.066 0 0 0 0 0 0 0 +-12.658 -15.971 -2.06 0 0 0 0 0 0 0 +-12.584 -15.981 -2.056 0 0 0 0 0 0 0 +-12.501 -15.978 -2.05 0 0 0 0 0 0 0 +-12.42 -15.978 -2.045 0 0 0 0 0 0 0 +-12.354 -15.996 -2.042 0 0 0 0 0 0 0 +-12.306 -15.986 -2.038 0 0 0 0 0 0 0 +-12.234 -15.996 -2.034 0 0 0 0 0 0 0 +-12.158 -15.999 -2.029 0 0 0 0 0 0 0 +-12.065 -15.982 -2.021 0 0 0 0 0 0 0 +-11.982 -15.975 -2.015 0 0 0 0 0 0 0 +-11.897 -16.071 -2.018 0 0 0 0 0 0 0 +-11.825 -16.027 -2.009 0 0 0 0 0 0 0 +-11.707 -15.971 -1.996 0 0 0 0 0 0 0 +-11.668 -16.024 -1.999 0 0 0 0 0 0 0 +-11.611 -16.051 -1.997 0 0 0 0 0 0 0 +-11.532 -16.047 -1.992 0 0 0 0 0 0 0 +-11.461 -16.055 -1.988 0 0 0 0 0 0 0 +-11.391 -16.064 -1.984 0 0 0 0 0 0 0 +-11.357 -16.069 -1.983 0 0 0 0 0 0 0 +-11.287 -16.077 -1.979 0 0 0 0 0 0 0 +-11.23 -16.102 -1.978 0 0 0 0 0 0 0 +-11.161 -16.111 -1.974 0 0 0 0 0 0 0 +-11.1 -16.131 -1.972 0 0 0 0 0 0 0 +-11.023 -16.127 -1.967 0 0 0 0 0 0 0 +-10.965 -16.151 -1.965 0 0 0 0 0 0 0 +-10.931 -16.155 -1.964 0 0 0 0 0 0 0 +-10.868 -16.172 -1.961 0 0 0 0 0 0 0 +-10.804 -16.186 -1.959 0 0 0 0 0 0 0 +-10.746 -16.21 -1.957 0 0 0 0 0 0 0 +-10.682 -16.223 -1.955 0 0 0 0 0 0 0 +-10.632 -16.259 -1.955 0 0 0 0 0 0 0 +-10.572 -16.277 -1.953 0 0 0 0 0 0 0 +-10.544 -16.29 -1.952 0 0 0 0 0 0 0 +-10.48 -16.303 -1.95 0 0 0 0 0 0 0 +-10.427 -16.334 -1.95 0 0 0 0 0 0 0 +-10.364 -16.348 -1.947 0 0 0 0 0 0 0 +-10.309 -16.374 -1.946 0 0 0 0 0 0 0 +-10.246 -16.388 -1.944 0 0 0 0 0 0 0 +-10.187 -16.408 -1.942 0 0 0 0 0 0 0 +-10.125 -16.423 -1.94 0 0 0 0 0 0 0 +-10.095 -16.432 -1.939 0 0 0 0 0 0 0 +-10.025 -16.433 -1.935 0 0 0 0 0 0 0 +-9.968 -16.456 -1.934 0 0 0 0 0 0 0 +-9.914 -16.484 -1.934 0 0 0 0 0 0 0 +-9.85 -16.495 -1.931 0 0 0 0 0 0 0 +-9.788 -16.508 -1.929 0 0 0 0 0 0 0 +-9.726 -16.522 -1.927 0 0 0 0 0 0 0 +-9.693 -16.525 -1.925 0 0 0 0 0 0 0 +-9.631 -16.538 -1.923 0 0 0 0 0 0 0 +-9.566 -16.546 -1.92 0 0 0 0 0 0 0 +-9.513 -16.574 -1.92 0 0 0 0 0 0 0 +-9.456 -16.596 -1.919 0 0 0 0 0 0 0 +-9.398 -16.615 -1.917 0 0 0 0 0 0 0 +-9.332 -16.62 -1.914 0 0 0 0 0 0 0 +-9.299 -16.622 -1.913 0 0 0 0 0 0 0 +-9.24 -16.639 -1.911 0 0 0 0 0 0 0 +-9.196 -16.682 -1.913 0 0 0 0 0 0 0 +-9.13 -16.687 -1.91 0 0 0 0 0 0 0 +-9.071 -16.703 -1.908 0 0 0 0 0 0 0 +-9.013 -16.721 -1.907 0 0 0 0 0 0 0 +-8.964 -16.756 -1.908 0 0 0 0 0 0 0 +-8.927 -16.751 -1.905 0 0 0 0 0 0 0 +-8.868 -16.767 -1.904 0 0 0 0 0 0 0 +-8.81 -16.784 -1.903 0 0 0 0 0 0 0 +-8.759 -16.815 -1.903 0 0 0 0 0 0 0 +-8.709 -16.848 -1.904 0 0 0 0 0 0 0 +-8.649 -16.861 -1.902 0 0 0 0 0 0 0 +-8.592 -16.881 -1.901 0 0 0 0 0 0 0 +-8.563 -16.889 -1.9 0 0 0 0 0 0 0 +-8.504 -16.905 -1.899 0 0 0 0 0 0 0 +-8.449 -16.928 -1.899 0 0 0 0 0 0 0 +-8.414 -16.99 -1.903 0 0 0 0 0 0 0 +-8.345 -16.986 -1.899 0 0 0 0 0 0 0 +-8.296 -17.021 -1.9 0 0 0 0 0 0 0 +-8.237 -17.035 -1.899 0 0 0 0 0 0 0 +-8.18 -16.985 -1.891 0 0 0 0 0 0 0 +-8.135 -17.028 -1.893 0 0 0 0 0 0 0 +-8.079 -17.049 -1.893 0 0 0 0 0 0 0 +-8.009 -17.04 -1.888 0 0 0 0 0 0 0 +-7.952 -17.056 -1.887 0 0 0 0 0 0 0 +-7.898 -17.081 -1.887 0 0 0 0 0 0 0 +-7.83 -17.075 -1.884 0 0 0 0 0 0 0 +-7.793 -17.063 -1.881 0 0 0 0 0 0 0 +-7.743 -17.097 -1.882 0 0 0 0 0 0 0 +-7.688 -17.117 -1.881 0 0 0 0 0 0 0 +-7.631 -17.134 -1.881 0 0 0 0 0 0 0 +-7.575 -17.154 -1.88 0 0 0 0 0 0 0 +-7.515 -17.164 -1.878 0 0 0 0 0 0 0 +-7.458 -17.18 -1.877 0 0 0 0 0 0 0 +-7.429 -17.186 -1.877 0 0 0 0 0 0 0 +-7.37 -17.198 -1.875 0 0 0 0 0 0 0 +-7.322 -17.236 -1.877 0 0 0 0 0 0 0 +-7.265 -17.252 -1.876 0 0 0 0 0 0 0 +-7.206 -17.263 -1.875 0 0 0 0 0 0 0 +-7.149 -17.28 -1.874 0 0 0 0 0 0 0 +-7.097 -17.308 -1.875 0 0 0 0 0 0 0 +-7.075 -17.332 -1.877 0 0 0 0 0 0 0 +-7.026 -17.367 -1.878 0 0 0 0 0 0 0 +-6.963 -17.369 -1.876 0 0 0 0 0 0 0 +-6.952 -17.5 -1.889 0 0 0 0 0 0 0 +-6.837 -17.37 -1.871 0 0 0 0 0 0 0 +-6.776 -17.375 -1.869 0 0 0 0 0 0 0 +-6.707 -17.357 -1.864 0 0 0 0 0 0 0 +-6.671 -17.345 -1.861 0 0 0 0 0 0 0 +-6.614 -17.36 -1.861 0 0 0 0 0 0 0 +-6.557 -17.374 -1.86 0 0 0 0 0 0 0 +-6.495 -17.374 -1.857 0 0 0 0 0 0 0 +-6.44 -17.394 -1.857 0 0 0 0 0 0 0 +-6.389 -17.423 -1.858 0 0 0 0 0 0 0 +-6.333 -17.442 -1.858 0 0 0 0 0 0 0 +-6.298 -17.429 -1.856 0 0 0 0 0 0 0 +-6.238 -17.436 -1.854 0 0 0 0 0 0 0 +-6.188 -17.466 -1.855 0 0 0 0 0 0 0 +-6.127 -17.471 -1.854 0 0 0 0 0 0 0 +-6.077 -17.503 -1.855 0 0 0 0 0 0 0 +-6.021 -17.52 -1.855 0 0 0 0 0 0 0 +-5.968 -17.545 -1.856 0 0 0 0 0 0 0 +-5.93 -17.524 -1.852 0 0 0 0 0 0 0 +-5.877 -17.548 -1.853 0 0 0 0 0 0 0 +-5.816 -17.548 -1.851 0 0 0 0 0 0 0 +-5.761 -17.566 -1.851 0 0 0 0 0 0 0 +-5.707 -17.588 -1.851 0 0 0 0 0 0 0 +-5.653 -17.611 -1.852 0 0 0 0 0 0 0 +-5.596 -17.623 -1.851 0 0 0 0 0 0 0 +-5.54 -17.639 -1.851 0 0 0 0 0 0 0 +-5.517 -17.661 -1.852 0 0 0 0 0 0 0 +-5.467 -17.699 -1.855 0 0 0 0 0 0 0 +-5.43 -17.775 -1.862 0 0 0 0 0 0 0 +-5.382 -17.82 -1.865 0 0 0 0 0 0 0 +-5.323 -17.826 -1.864 0 0 0 0 0 0 0 +-5.307 -17.978 -1.879 0 0 0 0 0 0 0 +-5.195 -17.803 -1.857 0 0 0 0 0 0 0 +-5.168 -17.815 -1.858 0 0 0 0 0 0 0 +-5.103 -17.801 -1.854 0 0 0 0 0 0 0 +-5.05 -17.826 -1.855 0 0 0 0 0 0 0 +-4.991 -17.833 -1.854 0 0 0 0 0 0 0 +-4.938 -17.86 -1.855 0 0 0 0 0 0 0 +-4.877 -17.856 -1.853 0 0 0 0 0 0 0 +-4.846 -17.852 -1.852 0 0 0 0 0 0 0 +-4.79 -17.869 -1.852 0 0 0 0 0 0 0 +-4.731 -17.871 -1.851 0 0 0 0 0 0 0 +-4.66 -17.828 -1.844 0 0 0 0 0 0 0 +-4.608 -17.862 -1.846 0 0 0 0 0 0 0 +-4.556 -17.891 -1.848 0 0 0 0 0 0 0 +-4.502 -17.913 -1.849 0 0 0 0 0 0 0 +-4.443 -17.918 -1.848 0 0 0 0 0 0 0 +-4.415 -17.925 -1.848 0 0 0 0 0 0 0 +-4.358 -17.935 -1.847 0 0 0 0 0 0 0 +-4.302 -17.952 -1.848 0 0 0 0 0 0 0 +-4.243 -17.954 -1.846 0 0 0 0 0 0 0 +-4.189 -17.979 -1.848 0 0 0 0 0 0 0 +-4.133 -17.992 -1.848 0 0 0 0 0 0 0 +-4.08 -18.022 -1.85 0 0 0 0 0 0 0 +-4.064 -18.081 -1.856 0 0 0 0 0 0 0 +-4.024 -18.173 -1.865 0 0 0 0 0 0 0 +-3.959 -18.147 -1.86 0 0 0 0 0 0 0 +-3.943 -18.354 -1.882 0 0 0 0 0 0 0 +-3.826 -18.08 -1.85 0 0 0 0 0 0 0 +-3.749 -17.995 -1.839 0 0 0 0 0 0 0 +-3.681 -17.95 -1.832 0 0 0 0 0 0 0 +-3.647 -17.93 -1.83 0 0 0 0 0 0 0 +-3.585 -17.914 -1.826 0 0 0 0 0 0 0 +-3.527 -17.914 -1.825 0 0 0 0 0 0 0 +-3.468 -17.911 -1.824 0 0 0 0 0 0 0 +-3.406 -17.893 -1.82 0 0 0 0 0 0 0 +-3.347 -17.886 -1.818 0 0 0 0 0 0 0 +-3.29 -17.894 -1.818 0 0 0 0 0 0 0 +-3.26 -17.889 -1.817 0 0 0 0 0 0 0 +-3.201 -17.882 -1.815 0 0 0 0 0 0 0 +-3.143 -17.884 -1.814 0 0 0 0 0 0 0 +-3.086 -17.886 -1.813 0 0 0 0 0 0 0 +-3.027 -17.878 -1.811 0 0 0 0 0 0 0 +-2.969 -17.882 -1.811 0 0 0 0 0 0 0 +-2.913 -17.887 -1.81 0 0 0 0 0 0 0 +-2.886 -17.903 -1.811 0 0 0 0 0 0 0 +-2.862 -18.118 -1.835 0 0 0 0 0 0 0 +-2.773 -17.913 -1.811 0 0 0 0 0 0 0 +-2.717 -17.926 -1.811 0 0 0 0 0 0 0 +-2.658 -17.914 -1.809 0 0 0 0 0 0 0 +-2.602 -17.929 -1.81 0 0 0 0 0 0 0 +-2.546 -17.935 -1.809 0 0 0 0 0 0 0 +-2.518 -17.939 -1.809 0 0 0 0 0 0 0 +-2.463 -17.96 -1.811 0 0 0 0 0 0 0 +-2.405 -17.958 -1.81 0 0 0 0 0 0 0 +-2.349 -17.968 -1.81 0 0 0 0 0 0 0 +-2.295 -17.991 -1.812 0 0 0 0 0 0 0 +-2.243 -18.037 -1.816 0 0 0 0 0 0 0 +-2.191 -18.08 -1.82 0 0 0 0 0 0 0 +-2.166 -18.115 -1.824 0 0 0 0 0 0 0 +-2.111 -18.139 -1.826 0 0 0 0 0 0 0 +-2.056 -18.166 -1.828 0 0 0 0 0 0 0 +-1.983 -18.026 -1.811 0 0 0 0 0 0 0 +-1.846 -17.263 -1.726 0 0 0 0 0 0 0 +-1.793 -17.282 -1.727 0 0 0 0 0 0 0 +-1.741 -17.314 -1.73 0 0 0 0 0 0 0 +-1.77 -17.89 -1.794 0 0 0 0 0 0 0 +-1.744 -18.222 -1.83 0 0 0 0 0 0 0 +-1.688 -18.233 -1.831 0 0 0 0 0 0 0 +-1.624 -18.163 -1.823 0 0 0 0 0 0 0 +-1.551 -17.99 -1.803 0 0 0 0 0 0 0 +-1.488 -17.914 -1.794 0 0 0 0 0 0 0 +-1.442 -18.049 -1.808 0 0 0 0 0 0 0 +-1.411 -18.008 -1.804 0 0 0 0 0 0 0 +-1.35 -17.96 -1.798 0 0 0 0 0 0 0 +-1.3 -18.048 -1.807 0 0 0 0 0 0 0 +-1.247 -18.115 -1.814 0 0 0 0 0 0 0 +-1.195 -18.193 -1.822 0 0 0 0 0 0 0 +-1.14 -18.23 -1.826 0 0 0 0 0 0 0 +-1.087 -18.305 -1.834 0 0 0 0 0 0 0 +-1.057 -18.287 -1.832 0 0 0 0 0 0 0 +-1.002 -18.33 -1.836 0 0 0 0 0 0 0 +-0.943 -18.323 -1.835 0 0 0 0 0 0 0 +-0.886 -18.33 -1.836 0 0 0 0 0 0 0 +-0.831 -18.39 -1.842 0 0 0 0 0 0 0 +-0.773 -18.377 -1.84 0 0 0 0 0 0 0 +-0.715 -18.381 -1.84 0 0 0 0 0 0 0 +-0.686 -18.388 -1.841 0 0 0 0 0 0 0 +-0.629 -18.41 -1.843 0 0 0 0 0 0 0 +-0.55 -17.708 -1.765 0 0 0 0 0 0 0 +-0.489 -17.495 -1.741 0 0 0 0 0 0 0 +-0.434 -17.499 -1.742 0 0 0 0 0 0 0 +-0.379 -17.498 -1.741 0 0 0 0 0 0 0 +-0.34 -18.435 -1.845 0 0 0 0 0 0 0 +-0.312 -18.498 -1.852 0 0 0 0 0 0 0 +-0.255 -18.54 -1.857 0 0 0 0 0 0 0 +-0.197 -18.569 -1.86 0 0 0 0 0 0 0 +-0.138 -18.573 -1.86 0 0 0 0 0 0 0 +-0.08 -18.566 -1.859 0 0 0 0 0 0 0 +-0.022 -18.582 -1.861 0 0 0 0 0 0 0 +0.037 -18.574 -1.86 0 0 0 0 0 0 0 +0.066 -18.633 -1.867 0 0 0 0 0 0 0 +0.125 -18.663 -1.87 0 0 0 0 0 0 0 +0.184 -18.686 -1.873 0 0 0 0 0 0 0 +0.243 -18.691 -1.873 0 0 0 0 0 0 0 +0.302 -18.71 -1.876 0 0 0 0 0 0 0 +0.361 -18.733 -1.878 0 0 0 0 0 0 0 +0.421 -18.76 -1.881 0 0 0 0 0 0 0 +0.508 -18.73 -1.878 0 0 0 0 0 0 0 +0.561 -18.545 -1.858 0 0 0 0 0 0 0 +0.613 -18.353 -1.837 0 0 0 0 0 0 0 +0.663 -18.148 -1.814 0 0 0 0 0 0 0 +0.712 -17.949 -1.793 0 0 0 0 0 0 0 +0.76 -17.76 -1.772 0 0 0 0 0 0 0 +0.808 -17.587 -1.753 0 0 0 0 0 0 0 +0.831 -17.502 -1.744 0 0 0 0 0 0 0 +0.886 -17.496 -1.743 0 0 0 0 0 0 0 +0.94 -17.487 -1.742 0 0 0 0 0 0 0 +0.994 -17.468 -1.741 0 0 0 0 0 0 0 +1.049 -17.457 -1.74 0 0 0 0 0 0 0 +1.103 -17.444 -1.739 0 0 0 0 0 0 0 +1.158 -17.442 -1.739 0 0 0 0 0 0 0 +1.185 -17.432 -1.738 0 0 0 0 0 0 0 +1.239 -17.415 -1.737 0 0 0 0 0 0 0 +1.293 -17.401 -1.735 0 0 0 0 0 0 0 +1.347 -17.397 -1.735 0 0 0 0 0 0 0 +1.401 -17.376 -1.734 0 0 0 0 0 0 0 +1.454 -17.364 -1.733 0 0 0 0 0 0 0 +1.482 -17.36 -1.733 0 0 0 0 0 0 0 +1.535 -17.345 -1.731 0 0 0 0 0 0 0 +1.589 -17.334 -1.731 0 0 0 0 0 0 0 +1.644 -17.333 -1.731 0 0 0 0 0 0 0 +1.697 -17.31 -1.729 0 0 0 0 0 0 0 +1.751 -17.305 -1.729 0 0 0 0 0 0 0 +1.804 -17.283 -1.727 0 0 0 0 0 0 0 +1.858 -17.277 -1.727 0 0 0 0 0 0 0 +1.883 -17.253 -1.725 0 0 0 0 0 0 0 +1.933 -17.211 -1.721 0 0 0 0 0 0 0 +1.986 -17.195 -1.72 0 0 0 0 0 0 0 +2.036 -17.159 -1.717 0 0 0 0 0 0 0 +2.09 -17.149 -1.716 0 0 0 0 0 0 0 +2.139 -17.111 -1.713 0 0 0 0 0 0 0 +2.191 -17.088 -1.711 0 0 0 0 0 0 0 +2.214 -17.053 -1.707 0 0 0 0 0 0 0 +2.264 -17.02 -1.705 0 0 0 0 0 0 0 +2.313 -16.98 -1.701 0 0 0 0 0 0 0 +2.366 -16.972 -1.701 0 0 0 0 0 0 0 +2.416 -16.937 -1.698 0 0 0 0 0 0 0 +2.466 -16.908 -1.695 0 0 0 0 0 0 0 +2.517 -16.888 -1.694 0 0 0 0 0 0 0 +2.542 -16.875 -1.693 0 0 0 0 0 0 0 +2.594 -16.861 -1.692 0 0 0 0 0 0 0 +2.646 -16.847 -1.692 0 0 0 0 0 0 0 +2.697 -16.828 -1.69 0 0 0 0 0 0 0 +2.745 -16.788 -1.687 0 0 0 0 0 0 0 +2.793 -16.752 -1.684 0 0 0 0 0 0 0 +2.841 -16.714 -1.681 0 0 0 0 0 0 0 +2.861 -16.676 -1.677 0 0 0 0 0 0 0 +2.912 -16.661 -1.676 0 0 0 0 0 0 0 +2.963 -16.64 -1.675 0 0 0 0 0 0 0 +3.015 -16.631 -1.675 0 0 0 0 0 0 0 +3.061 -16.59 -1.671 0 0 0 0 0 0 0 +3.113 -16.58 -1.671 0 0 0 0 0 0 0 +3.164 -16.561 -1.67 0 0 0 0 0 0 0 +3.186 -16.538 -1.668 0 0 0 0 0 0 0 +3.235 -16.511 -1.666 0 0 0 0 0 0 0 +3.285 -16.494 -1.666 0 0 0 0 0 0 0 +3.335 -16.472 -1.664 0 0 0 0 0 0 0 +1.339 -6.584 -0.545 0 0 0 0 0 0 0 +1.348 -6.525 -0.539 0 0 0 0 0 0 0 +1.359 -6.476 -0.534 0 0 0 0 0 0 0 +1.366 -6.462 -0.533 0 0 0 0 0 0 0 +1.39 -6.473 -0.535 0 0 0 0 0 0 0 +1.404 -6.44 -0.531 0 0 0 0 0 0 0 +1.428 -6.455 -0.533 0 0 0 0 0 0 0 +1.446 -6.439 -0.532 0 0 0 0 0 0 0 +1.465 -6.428 -0.531 0 0 0 0 0 0 0 +1.493 -6.459 -0.535 0 0 0 0 0 0 0 +1.509 -6.477 -0.538 0 0 0 0 0 0 0 +1.527 -6.463 -0.537 0 0 0 0 0 0 0 +1.555 -6.493 -0.541 0 0 0 0 0 0 0 +1.569 -6.459 -0.537 0 0 0 0 0 0 0 +1.605 -6.518 -0.545 0 0 0 0 0 0 0 +1.683 -6.742 -0.571 0 0 0 0 0 0 0 +4.112 -16.105 -1.644 0 0 0 0 0 0 0 +4.134 -16.083 -1.642 0 0 0 0 0 0 0 +4.178 -16.047 -1.639 0 0 0 0 0 0 0 +4.222 -16.011 -1.637 0 0 0 0 0 0 0 +4.274 -16.001 -1.637 0 0 0 0 0 0 0 +4.317 -15.963 -1.634 0 0 0 0 0 0 0 +4.356 -15.907 -1.629 0 0 0 0 0 0 0 +4.397 -15.863 -1.626 0 0 0 0 0 0 0 +4.413 -15.823 -1.622 0 0 0 0 0 0 0 +4.451 -15.769 -1.617 0 0 0 0 0 0 0 +4.504 -15.768 -1.619 0 0 0 0 0 0 0 +4.558 -15.769 -1.621 0 0 0 0 0 0 0 +4.603 -15.74 -1.619 0 0 0 0 0 0 0 +4.644 -15.695 -1.615 0 0 0 0 0 0 0 +4.687 -15.659 -1.613 0 0 0 0 0 0 0 +4.704 -15.627 -1.61 0 0 0 0 0 0 0 +4.735 -15.553 -1.603 0 0 0 0 0 0 0 +4.76 -15.46 -1.594 0 0 0 0 0 0 0 +4.789 -15.385 -1.587 0 0 0 0 0 0 0 +4.808 -15.277 -1.576 0 0 0 0 0 0 0 +4.832 -15.188 -1.568 0 0 0 0 0 0 0 +4.852 -15.085 -1.558 0 0 0 0 0 0 0 +4.858 -15.023 -1.551 0 0 0 0 0 0 0 +4.916 -15.042 -1.555 0 0 0 0 0 0 0 +4.968 -15.041 -1.557 0 0 0 0 0 0 0 +5.021 -15.041 -1.559 0 0 0 0 0 0 0 +5.078 -15.053 -1.562 0 0 0 0 0 0 0 +5.131 -15.056 -1.564 0 0 0 0 0 0 0 +5.187 -15.064 -1.567 0 0 0 0 0 0 0 +5.218 -15.076 -1.57 0 0 0 0 0 0 0 +5.251 -15.021 -1.565 0 0 0 0 0 0 0 +3.725 -10.572 -1.043 0 0 0 0 0 0 0 +3.75 -10.536 -1.041 0 0 0 0 0 0 0 +3.785 -10.531 -1.041 0 0 0 0 0 0 0 +3.816 -10.514 -1.041 0 0 0 0 0 0 0 +5.583 -15.125 -1.588 0 0 0 0 0 0 0 +5.636 -15.122 -1.59 0 0 0 0 0 0 0 +5.701 -15.149 -1.595 0 0 0 0 0 0 0 +5.75 -15.137 -1.596 0 0 0 0 0 0 0 +5.807 -15.143 -1.599 0 0 0 0 0 0 0 +5.844 -15.097 -1.596 0 0 0 0 0 0 0 +5.867 -15.017 -1.588 0 0 0 0 0 0 0 +5.278 -13.455 -1.403 0 0 0 0 0 0 0 +5.329 -13.336 -1.393 0 0 0 0 0 0 0 +5.409 -13.414 -1.404 0 0 0 0 0 0 0 +5.44 -13.371 -1.401 0 0 0 0 0 0 0 +5.49 -13.372 -1.403 0 0 0 0 0 0 0 +5.513 -13.311 -1.398 0 0 0 0 0 0 0 +5.541 -13.317 -1.4 0 0 0 0 0 0 0 +5.595 -13.33 -1.404 0 0 0 0 0 0 0 +5.619 -13.271 -1.399 0 0 0 0 0 0 0 +5.664 -13.26 -1.399 0 0 0 0 0 0 0 +5.643 -13.098 -1.382 0 0 0 0 0 0 0 +5.638 -12.973 -1.369 0 0 0 0 0 0 0 +5.685 -12.97 -1.371 0 0 0 0 0 0 0 +5.762 -13.09 -1.386 0 0 0 0 0 0 0 +5.785 -13.03 -1.381 0 0 0 0 0 0 0 +5.823 -13.006 -1.381 0 0 0 0 0 0 0 +5.875 -13.011 -1.384 0 0 0 0 0 0 0 +5.852 -12.854 -1.367 0 0 0 0 0 0 0 +5.803 -12.642 -1.343 0 0 0 0 0 0 0 +5.838 -12.613 -1.342 0 0 0 0 0 0 0 +5.958 -12.818 -1.368 0 0 0 0 0 0 0 +6.003 -12.81 -1.369 0 0 0 0 0 0 0 +6.087 -12.883 -1.38 0 0 0 0 0 0 0 +6.123 -12.855 -1.379 0 0 0 0 0 0 0 +6.152 -12.812 -1.377 0 0 0 0 0 0 0 +6.006 -12.41 -1.329 0 0 0 0 0 0 0 +6.207 -12.671 -1.365 0 0 0 0 0 0 0 +6.197 -12.551 -1.353 0 0 0 0 0 0 0 +6.232 -12.523 -1.352 0 0 0 0 0 0 0 +6.269 -12.498 -1.351 0 0 0 0 0 0 0 +6.304 -12.471 -1.35 0 0 0 0 0 0 0 +6.208 -12.186 -1.317 0 0 0 0 0 0 0 +6.325 -12.32 -1.336 0 0 0 0 0 0 0 +6.263 -12.153 -1.317 0 0 0 0 0 0 0 +6.296 -12.123 -1.315 0 0 0 0 0 0 0 +6.29 -12.02 -1.305 0 0 0 0 0 0 0 +6.43 -12.101 -1.32 0 0 0 0 0 0 0 +6.449 -12.046 -1.316 0 0 0 0 0 0 0 +6.521 -12.089 -1.324 0 0 0 0 0 0 0 +6.579 -12.15 -1.333 0 0 0 0 0 0 0 +6.602 -12.101 -1.329 0 0 0 0 0 0 0 +6.565 -11.945 -1.312 0 0 0 0 0 0 0 +6.577 -11.877 -1.306 0 0 0 0 0 0 0 +6.599 -11.83 -1.303 0 0 0 0 0 0 0 +6.712 -11.943 -1.32 0 0 0 0 0 0 0 +6.71 -11.853 -1.311 0 0 0 0 0 0 0 +6.726 -11.839 -1.31 0 0 0 0 0 0 0 +6.748 -11.79 -1.307 0 0 0 0 0 0 0 +6.776 -11.753 -1.305 0 0 0 0 0 0 0 +6.792 -11.696 -1.3 0 0 0 0 0 0 0 +6.838 -11.691 -1.302 0 0 0 0 0 0 0 +6.896 -11.706 -1.307 0 0 0 0 0 0 0 +6.974 -11.752 -1.316 0 0 0 0 0 0 0 +7.152 -12.009 -1.35 0 0 0 0 0 0 0 +7.143 -11.908 -1.34 0 0 0 0 0 0 0 +7.247 -11.996 -1.355 0 0 0 0 0 0 0 +6.901 -11.344 -1.273 0 0 0 0 0 0 0 +7.138 -11.651 -1.316 0 0 0 0 0 0 0 +7.26 -11.765 -1.334 0 0 0 0 0 0 0 +7.351 -11.83 -1.345 0 0 0 0 0 0 0 +7.129 -11.435 -1.295 0 0 0 0 0 0 0 +7.326 -11.668 -1.328 0 0 0 0 0 0 0 +7.311 -11.562 -1.317 0 0 0 0 0 0 0 +7.281 -11.435 -1.304 0 0 0 0 0 0 0 +7.299 -11.386 -1.3 0 0 0 0 0 0 0 +7.247 -11.228 -1.282 0 0 0 0 0 0 0 +7.339 -11.291 -1.294 0 0 0 0 0 0 0 +7.366 -11.293 -1.296 0 0 0 0 0 0 0 +7.399 -11.267 -1.295 0 0 0 0 0 0 0 +7.476 -11.306 -1.304 0 0 0 0 0 0 0 +7.458 -11.203 -1.293 0 0 0 0 0 0 0 +7.428 -11.083 -1.28 0 0 0 0 0 0 0 +7.515 -11.137 -1.29 0 0 0 0 0 0 0 +7.568 -11.139 -1.294 0 0 0 0 0 0 0 +7.566 -11.098 -1.29 0 0 0 0 0 0 0 +7.579 -11.043 -1.286 0 0 0 0 0 0 0 +7.635 -11.05 -1.29 0 0 0 0 0 0 0 +7.624 -10.961 -1.281 0 0 0 0 0 0 0 +7.661 -10.94 -1.281 0 0 0 0 0 0 0 +7.719 -10.95 -1.286 0 0 0 0 0 0 0 +7.749 -10.919 -1.285 0 0 0 0 0 0 0 +7.753 -10.853 -1.28 0 0 0 0 0 0 0 +7.71 -10.757 -1.268 0 0 0 0 0 0 0 +7.943 -11.008 -1.306 0 0 0 0 0 0 0 +7.87 -10.835 -1.285 0 0 0 0 0 0 0 +7.876 -10.772 -1.28 0 0 0 0 0 0 0 +7.813 -10.616 -1.262 0 0 0 0 0 0 0 +7.861 -10.612 -1.265 0 0 0 0 0 0 0 +7.882 -10.57 -1.263 0 0 0 0 0 0 0 +7.918 -10.584 -1.266 0 0 0 0 0 0 0 +7.971 -10.585 -1.27 0 0 0 0 0 0 0 +8.024 -10.587 -1.274 0 0 0 0 0 0 0 +8.061 -10.566 -1.274 0 0 0 0 0 0 0 +8.04 -10.47 -1.264 0 0 0 0 0 0 0 +8.159 -10.556 -1.28 0 0 0 0 0 0 0 +8.144 -10.502 -1.274 0 0 0 0 0 0 0 +8.171 -10.469 -1.273 0 0 0 0 0 0 0 +8.232 -10.479 -1.278 0 0 0 0 0 0 0 +8.122 -10.273 -1.253 0 0 0 0 0 0 0 +8.234 -10.348 -1.267 0 0 0 0 0 0 0 +8.274 -10.331 -1.268 0 0 0 0 0 0 0 +8.459 -10.494 -1.295 0 0 0 0 0 0 0 +8.635 -10.677 -1.323 0 0 0 0 0 0 0 +8.217 -10.033 -1.238 0 0 0 0 0 0 0 +8.474 -10.279 -1.278 0 0 0 0 0 0 0 +8.433 -10.164 -1.265 0 0 0 0 0 0 0 +8.401 -10.061 -1.254 0 0 0 0 0 0 0 +8.446 -10.052 -1.256 0 0 0 0 0 0 0 +8.48 -10.06 -1.259 0 0 0 0 0 0 0 +8.425 -9.931 -1.245 0 0 0 0 0 0 0 +8.453 -9.9 -1.244 0 0 0 0 0 0 0 +8.381 -9.755 -1.227 0 0 0 0 0 0 0 +8.397 -9.712 -1.224 0 0 0 0 0 0 0 +8.42 -9.677 -1.223 0 0 0 0 0 0 0 +8.58 -9.798 -1.245 0 0 0 0 0 0 0 +8.625 -9.787 -1.247 0 0 0 0 0 0 0 +8.496 -9.61 -1.223 0 0 0 0 0 0 0 +8.523 -9.58 -1.222 0 0 0 0 0 0 0 +8.616 -9.623 -1.233 0 0 0 0 0 0 0 +8.535 -9.474 -1.214 0 0 0 0 0 0 0 +8.634 -9.523 -1.226 0 0 0 0 0 0 0 +8.728 -9.505 -1.231 0 0 0 0 0 0 0 +8.727 -9.474 -1.229 0 0 0 0 0 0 0 +8.751 -9.441 -1.228 0 0 0 0 0 0 0 +8.772 -9.405 -1.227 0 0 0 0 0 0 0 +8.738 -9.309 -1.216 0 0 0 0 0 0 0 +8.752 -9.266 -1.214 0 0 0 0 0 0 0 +8.935 -9.399 -1.238 0 0 0 0 0 0 0 +9.033 -9.443 -1.25 0 0 0 0 0 0 0 +9.059 -9.44 -1.251 0 0 0 0 0 0 0 +9.282 -9.611 -1.282 0 0 0 0 0 0 0 +9.316 -9.586 -1.283 0 0 0 0 0 0 0 +9.033 -9.238 -1.233 0 0 0 0 0 0 0 +9.034 -9.181 -1.229 0 0 0 0 0 0 0 +9.226 -9.316 -1.254 0 0 0 0 0 0 0 +9.173 -9.234 -1.244 0 0 0 0 0 0 0 +9.244 -9.247 -1.25 0 0 0 0 0 0 0 +9.45 -9.393 -1.278 0 0 0 0 0 0 0 +9.276 -9.164 -1.246 0 0 0 0 0 0 0 +9.278 -9.108 -1.242 0 0 0 0 0 0 0 +9.295 -9.068 -1.24 0 0 0 0 0 0 0 +9.448 -9.159 -1.26 0 0 0 0 0 0 0 +9.517 -9.168 -1.266 0 0 0 0 0 0 0 +9.45 -9.075 -1.253 0 0 0 0 0 0 0 +9.53 -9.094 -1.261 0 0 0 0 0 0 0 +9.571 -9.076 -1.263 0 0 0 0 0 0 0 +9.585 -9.033 -1.261 0 0 0 0 0 0 0 +9.644 -9.031 -1.266 0 0 0 0 0 0 0 +9.435 -8.78 -1.23 0 0 0 0 0 0 0 +9.693 -8.935 -1.262 0 0 0 0 0 0 0 +9.633 -8.824 -1.249 0 0 0 0 0 0 0 +9.666 -8.799 -1.25 0 0 0 0 0 0 0 +9.687 -8.762 -1.249 0 0 0 0 0 0 0 +9.353 -8.408 -1.195 0 0 0 0 0 0 0 +9.332 -8.336 -1.188 0 0 0 0 0 0 0 +9.331 -8.283 -1.184 0 0 0 0 0 0 0 +9.302 -8.232 -1.178 0 0 0 0 0 0 0 +9.328 -8.202 -1.178 0 0 0 0 0 0 0 +9.333 -8.155 -1.175 0 0 0 0 0 0 0 +9.346 -8.115 -1.173 0 0 0 0 0 0 0 +9.336 -8.055 -1.168 0 0 0 0 0 0 0 +9.364 -8.028 -1.168 0 0 0 0 0 0 0 +9.383 -7.993 -1.167 0 0 0 0 0 0 0 +9.394 -7.977 -1.167 0 0 0 0 0 0 0 +9.413 -7.943 -1.166 0 0 0 0 0 0 0 +9.432 -7.908 -1.165 0 0 0 0 0 0 0 +9.472 -7.891 -1.168 0 0 0 0 0 0 0 +9.475 -7.843 -1.164 0 0 0 0 0 0 0 +9.5 -7.814 -1.164 0 0 0 0 0 0 0 +9.51 -7.797 -1.164 0 0 0 0 0 0 0 +9.524 -7.759 -1.163 0 0 0 0 0 0 0 +9.561 -7.739 -1.164 0 0 0 0 0 0 0 +9.56 -7.689 -1.161 0 0 0 0 0 0 0 +9.594 -7.666 -1.162 0 0 0 0 0 0 0 +9.6 -7.622 -1.16 0 0 0 0 0 0 0 +9.643 -7.607 -1.162 0 0 0 0 0 0 0 +9.659 -7.57 -1.161 0 0 0 0 0 0 0 +9.673 -7.556 -1.162 0 0 0 0 0 0 0 +9.681 -7.514 -1.159 0 0 0 0 0 0 0 +9.733 -7.505 -1.163 0 0 0 0 0 0 0 +9.723 -7.449 -1.159 0 0 0 0 0 0 0 +9.764 -7.432 -1.161 0 0 0 0 0 0 0 +9.766 -7.386 -1.158 0 0 0 0 0 0 0 +9.804 -7.366 -1.16 0 0 0 0 0 0 0 +9.796 -7.336 -1.158 0 0 0 0 0 0 0 +9.834 -7.316 -1.16 0 0 0 0 0 0 0 +9.836 -7.27 -1.157 0 0 0 0 0 0 0 +9.868 -7.246 -1.158 0 0 0 0 0 0 0 +9.876 -7.204 -1.156 0 0 0 0 0 0 0 +9.912 -7.182 -1.158 0 0 0 0 0 0 0 +9.912 -7.135 -1.155 0 0 0 0 0 0 0 +9.91 -7.11 -1.153 0 0 0 0 0 0 0 +9.929 -7.077 -1.153 0 0 0 0 0 0 0 +9.969 -7.058 -1.155 0 0 0 0 0 0 0 +9.965 -7.008 -1.151 0 0 0 0 0 0 0 +9.997 -6.984 -1.153 0 0 0 0 0 0 0 +10.035 -6.964 -1.155 0 0 0 0 0 0 0 +10.073 -6.944 -1.157 0 0 0 0 0 0 0 +10.102 -6.94 -1.16 0 0 0 0 0 0 0 +10.616 -7.242 -1.225 0 0 0 0 0 0 0 +10.633 -7.205 -1.225 0 0 0 0 0 0 0 +10.663 -7.176 -1.226 0 0 0 0 0 0 0 +10.68 -7.14 -1.225 0 0 0 0 0 0 0 +10.698 -7.103 -1.224 0 0 0 0 0 0 0 +10.722 -7.07 -1.225 0 0 0 0 0 0 0 +10.733 -7.053 -1.225 0 0 0 0 0 0 0 +10.756 -7.021 -1.225 0 0 0 0 0 0 0 +10.782 -6.989 -1.225 0 0 0 0 0 0 0 +10.805 -6.956 -1.225 0 0 0 0 0 0 0 +10.82 -6.918 -1.225 0 0 0 0 0 0 0 +10.842 -6.884 -1.225 0 0 0 0 0 0 0 +10.864 -6.85 -1.225 0 0 0 0 0 0 0 +10.876 -6.834 -1.225 0 0 0 0 0 0 0 +10.901 -6.802 -1.225 0 0 0 0 0 0 0 +10.919 -6.765 -1.225 0 0 0 0 0 0 0 +10.94 -6.731 -1.225 0 0 0 0 0 0 0 +10.965 -6.699 -1.225 0 0 0 0 0 0 0 +10.987 -6.665 -1.225 0 0 0 0 0 0 0 +11.017 -6.636 -1.227 0 0 0 0 0 0 0 +11.046 -6.63 -1.229 0 0 0 0 0 0 0 +11.091 -6.609 -1.232 0 0 0 0 0 0 0 +11.139 -6.59 -1.236 0 0 0 0 0 0 0 +11.195 -6.576 -1.24 0 0 0 0 0 0 0 +11.255 -6.564 -1.245 0 0 0 0 0 0 0 +11.3 -6.543 -1.248 0 0 0 0 0 0 0 +11.353 -6.526 -1.253 0 0 0 0 0 0 0 +11.391 -6.524 -1.256 0 0 0 0 0 0 0 +11.436 -6.502 -1.259 0 0 0 0 0 0 0 +11.493 -6.486 -1.264 0 0 0 0 0 0 0 +11.558 -6.475 -1.27 0 0 0 0 0 0 0 +11.599 -6.45 -1.272 0 0 0 0 0 0 0 +11.653 -6.432 -1.276 0 0 0 0 0 0 0 +11.701 -6.411 -1.28 0 0 0 0 0 0 0 +11.754 -6.416 -1.285 0 0 0 0 0 0 0 +11.804 -6.395 -1.289 0 0 0 0 0 0 0 +11.865 -6.38 -1.294 0 0 0 0 0 0 0 +11.92 -6.361 -1.299 0 0 0 0 0 0 0 +11.968 -6.338 -1.302 0 0 0 0 0 0 0 +12.014 -6.315 -1.306 0 0 0 0 0 0 0 +12.12 -6.322 -1.316 0 0 0 0 0 0 0 +12.226 -6.352 -1.328 0 0 0 0 0 0 0 +8.829 -4.56 -0.902 0 0 0 0 0 0 0 +8.836 -4.529 -0.901 0 0 0 0 0 0 0 +8.83 -4.491 -0.899 0 0 0 0 0 0 0 +8.871 -4.477 -0.902 0 0 0 0 0 0 0 +12.439 -6.217 -1.343 0 0 0 0 0 0 0 +12.496 -6.196 -1.347 0 0 0 0 0 0 0 +12.563 -6.204 -1.354 0 0 0 0 0 0 0 +12.592 -6.169 -1.355 0 0 0 0 0 0 0 +12.677 -6.162 -1.364 0 0 0 0 0 0 0 +12.716 -6.131 -1.366 0 0 0 0 0 0 0 +12.759 -6.102 -1.369 0 0 0 0 0 0 0 +12.817 -6.081 -1.374 0 0 0 0 0 0 0 +12.852 -6.048 -1.376 0 0 0 0 0 0 0 +12.873 -6.033 -1.377 0 0 0 0 0 0 0 +12.971 -6.029 -1.387 0 0 0 0 0 0 0 +12.959 -5.975 -1.383 0 0 0 0 0 0 0 +12.938 -5.916 -1.378 0 0 0 0 0 0 0 +13.004 -5.896 -1.384 0 0 0 0 0 0 0 +13.033 -5.86 -1.385 0 0 0 0 0 0 0 +13.084 -5.834 -1.389 0 0 0 0 0 0 0 +13.33 -5.918 -1.418 0 0 0 0 0 0 0 +13.33 -5.868 -1.416 0 0 0 0 0 0 0 +13.396 -5.846 -1.421 0 0 0 0 0 0 0 +13.438 -5.815 -1.424 0 0 0 0 0 0 0 +13.443 -5.767 -1.423 0 0 0 0 0 0 0 +13.467 -5.727 -1.423 0 0 0 0 0 0 0 +13.492 -5.688 -1.424 0 0 0 0 0 0 0 +13.477 -5.656 -1.421 0 0 0 0 0 0 0 +13.486 -5.61 -1.42 0 0 0 0 0 0 0 +13.525 -5.577 -1.423 0 0 0 0 0 0 0 +13.58 -5.549 -1.427 0 0 0 0 0 0 0 +13.636 -5.522 -1.432 0 0 0 0 0 0 0 +13.669 -5.486 -1.434 0 0 0 0 0 0 0 +13.703 -5.45 -1.436 0 0 0 0 0 0 0 +13.697 -5.422 -1.434 0 0 0 0 0 0 0 +13.684 -5.368 -1.431 0 0 0 0 0 0 0 +13.549 -5.266 -1.412 0 0 0 0 0 0 0 +13.566 -5.223 -1.412 0 0 0 0 0 0 0 +13.599 -5.187 -1.414 0 0 0 0 0 0 0 +13.62 -5.146 -1.415 0 0 0 0 0 0 0 +13.638 -5.104 -1.415 0 0 0 0 0 0 0 +13.646 -5.083 -1.415 0 0 0 0 0 0 0 +13.702 -5.054 -1.42 0 0 0 0 0 0 0 +13.773 -5.032 -1.427 0 0 0 0 0 0 0 +13.855 -5.012 -1.434 0 0 0 0 0 0 0 +13.852 -4.962 -1.432 0 0 0 0 0 0 0 +13.923 -4.938 -1.439 0 0 0 0 0 0 0 +13.974 -4.907 -1.443 0 0 0 0 0 0 0 +14.003 -4.892 -1.445 0 0 0 0 0 0 0 +13.986 -4.837 -1.442 0 0 0 0 0 0 0 +14.052 -4.81 -1.448 0 0 0 0 0 0 0 +14.067 -4.766 -1.448 0 0 0 0 0 0 0 +14.097 -4.727 -1.449 0 0 0 0 0 0 0 +14.097 -4.678 -1.448 0 0 0 0 0 0 0 +14.132 -4.64 -1.45 0 0 0 0 0 0 0 +14.052 -4.59 -1.44 0 0 0 0 0 0 0 +14.05 -4.54 -1.438 0 0 0 0 0 0 0 +14.075 -4.499 -1.439 0 0 0 0 0 0 0 +14.139 -4.471 -1.445 0 0 0 0 0 0 0 +14.25 -4.456 -1.456 0 0 0 0 0 0 0 +14.271 -4.414 -1.457 0 0 0 0 0 0 0 +14.287 -4.37 -1.457 0 0 0 0 0 0 0 +14.316 -4.354 -1.46 0 0 0 0 0 0 0 +14.324 -4.307 -1.459 0 0 0 0 0 0 0 +14.347 -4.265 -1.46 0 0 0 0 0 0 0 +14.342 -4.214 -1.458 0 0 0 0 0 0 0 +14.41 -4.185 -1.464 0 0 0 0 0 0 0 +14.433 -4.143 -1.466 0 0 0 0 0 0 0 +14.442 -4.096 -1.465 0 0 0 0 0 0 0 +14.453 -4.05 -1.465 0 0 0 0 0 0 0 +14.469 -4.03 -1.466 0 0 0 0 0 0 0 +14.479 -3.984 -1.466 0 0 0 0 0 0 0 +14.488 -3.938 -1.465 0 0 0 0 0 0 0 +14.5 -3.892 -1.465 0 0 0 0 0 0 0 +14.503 -3.844 -1.464 0 0 0 0 0 0 0 +14.474 -3.788 -1.46 0 0 0 0 0 0 0 +14.542 -3.757 -1.466 0 0 0 0 0 0 0 +14.556 -3.736 -1.467 0 0 0 0 0 0 0 +14.573 -3.692 -1.468 0 0 0 0 0 0 0 +14.581 -3.645 -1.467 0 0 0 0 0 0 0 +14.557 -3.591 -1.463 0 0 0 0 0 0 0 +14.592 -3.551 -1.466 0 0 0 0 0 0 0 +14.591 -3.502 -1.464 0 0 0 0 0 0 0 +14.62 -3.484 -1.467 0 0 0 0 0 0 0 +14.664 -3.446 -1.471 0 0 0 0 0 0 0 +7.406 -1.729 -0.644 0 0 0 0 0 0 0 +7.363 -1.695 -0.638 0 0 0 0 0 0 0 +7.349 -1.667 -0.636 0 0 0 0 0 0 0 +7.311 -1.635 -0.631 0 0 0 0 0 0 0 +7.345 -1.618 -0.634 0 0 0 0 0 0 0 +7.319 -1.589 -0.631 0 0 0 0 0 0 0 +7.316 -1.576 -0.63 0 0 0 0 0 0 0 +7.334 -1.556 -0.632 0 0 0 0 0 0 0 +7.285 -1.521 -0.626 0 0 0 0 0 0 0 +7.282 -1.497 -0.625 0 0 0 0 0 0 0 +7.275 -1.472 -0.623 0 0 0 0 0 0 0 +7.277 -1.449 -0.623 0 0 0 0 0 0 0 +7.264 -1.422 -0.621 0 0 0 0 0 0 0 +7.265 -1.41 -0.621 0 0 0 0 0 0 0 +7.283 -1.39 -0.622 0 0 0 0 0 0 0 +7.33 -1.375 -0.627 0 0 0 0 0 0 0 +7.301 -1.346 -0.624 0 0 0 0 0 0 0 +7.342 -1.33 -0.628 0 0 0 0 0 0 0 +7.345 -1.306 -0.628 0 0 0 0 0 0 0 +7.374 -1.288 -0.63 0 0 0 0 0 0 0 +9.878 -1.668 -0.911 0 0 0 0 0 0 0 +9.778 -1.62 -0.899 0 0 0 0 0 0 0 +9.898 -1.608 -0.912 0 0 0 0 0 0 0 +13.362 -2.118 -1.301 0 0 0 0 0 0 0 +7.645 -1.198 -0.658 0 0 0 0 0 0 0 +7.627 -1.171 -0.656 0 0 0 0 0 0 0 +7.648 -1.162 -0.658 0 0 0 0 0 0 0 +7.644 -1.137 -0.657 0 0 0 0 0 0 0 +7.654 -1.114 -0.658 0 0 0 0 0 0 0 +14.99 -2.06 -1.478 0 0 0 0 0 0 0 +14.988 -2.012 -1.477 0 0 0 0 0 0 0 +15.012 -1.967 -1.479 0 0 0 0 0 0 0 +15.027 -1.945 -1.481 0 0 0 0 0 0 0 +15.002 -1.894 -1.477 0 0 0 0 0 0 0 +15.041 -1.851 -1.481 0 0 0 0 0 0 0 +15.085 -1.808 -1.485 0 0 0 0 0 0 0 +14.997 -1.75 -1.475 0 0 0 0 0 0 0 +15.086 -1.712 -1.484 0 0 0 0 0 0 0 +14.965 -1.651 -1.47 0 0 0 0 0 0 0 +15.121 -1.644 -1.487 0 0 0 0 0 0 0 +15.085 -1.592 -1.483 0 0 0 0 0 0 0 +15.011 -1.537 -1.474 0 0 0 0 0 0 0 +15.013 -1.489 -1.474 0 0 0 0 0 0 0 +15.107 -1.451 -1.483 0 0 0 0 0 0 0 +11.154 -1.042 -1.043 0 0 0 0 0 0 0 +15.152 -1.335 -1.487 0 0 0 0 0 0 0 +15.186 -1.29 -1.49 0 0 0 0 0 0 0 +15.197 -1.243 -1.491 0 0 0 0 0 0 0 +15.286 -1.201 -1.501 0 0 0 0 0 0 0 +15.302 -1.154 -1.502 0 0 0 0 0 0 0 +15.323 -1.107 -1.504 0 0 0 0 0 0 0 +15.337 -1.06 -1.505 0 0 0 0 0 0 0 +15.344 -1.036 -1.506 0 0 0 0 0 0 0 +15.365 -0.989 -1.508 0 0 0 0 0 0 0 +15.357 -0.94 -1.507 0 0 0 0 0 0 0 +15.357 -0.892 -1.506 0 0 0 0 0 0 0 +15.35 -0.843 -1.505 0 0 0 0 0 0 0 +15.317 -0.793 -1.501 0 0 0 0 0 0 0 +15.351 -0.746 -1.505 0 0 0 0 0 0 0 +15.402 -0.724 -1.51 0 0 0 0 0 0 0 +15.408 -0.676 -1.511 0 0 0 0 0 0 0 +15.43 -0.629 -1.513 0 0 0 0 0 0 0 +15.474 -0.582 -1.518 0 0 0 0 0 0 0 +15.513 -0.534 -1.522 0 0 0 0 0 0 0 +15.559 -0.487 -1.527 0 0 0 0 0 0 0 +15.568 -0.438 -1.528 0 0 0 0 0 0 0 +15.585 -0.414 -1.529 0 0 0 0 0 0 0 +15.616 -0.366 -1.533 0 0 0 0 0 0 0 +15.678 -0.318 -1.539 0 0 0 0 0 0 0 +15.627 -0.268 -1.534 0 0 0 0 0 0 0 +15.67 -0.219 -1.538 0 0 0 0 0 0 0 +13.081 -0.146 -1.251 0 0 0 0 0 0 0 +15.737 -0.121 -1.546 0 0 0 0 0 0 0 +15.697 -0.096 -1.541 0 0 0 0 0 0 0 +16.019 -0.047 -1.577 0 0 0 0 0 0 0 +14.968 0.027 -1.552 0 0 0 0 0 0 0 +14.852 0.074 -1.539 0 0 0 0 0 0 0 +13.573 0.112 -1.389 0 0 0 0 0 0 0 +14.919 0.168 -1.547 0 0 0 0 0 0 0 +14.931 0.215 -1.548 0 0 0 0 0 0 0 +14.92 0.261 -1.547 0 0 0 0 0 0 0 +14.898 0.284 -1.544 0 0 0 0 0 0 0 +14.873 0.331 -1.542 0 0 0 0 0 0 0 +14.864 0.377 -1.541 0 0 0 0 0 0 0 +14.843 0.423 -1.538 0 0 0 0 0 0 0 +14.837 0.47 -1.538 0 0 0 0 0 0 0 +13.682 0.478 -1.403 0 0 0 0 0 0 0 +14.795 0.585 -1.534 0 0 0 0 0 0 0 +14.793 0.632 -1.534 0 0 0 0 0 0 0 +14.801 0.678 -1.535 0 0 0 0 0 0 0 +14.857 0.728 -1.541 0 0 0 0 0 0 0 +14.315 0.747 -1.478 0 0 0 0 0 0 0 +14.673 0.811 -1.521 0 0 0 0 0 0 0 +14.792 0.864 -1.535 0 0 0 0 0 0 0 +14.822 0.889 -1.538 0 0 0 0 0 0 0 +14.591 0.922 -1.512 0 0 0 0 0 0 0 +14.654 0.972 -1.519 0 0 0 0 0 0 0 +15.039 1.044 -1.565 0 0 0 0 0 0 0 +14.784 1.074 -1.535 0 0 0 0 0 0 0 +14.695 1.114 -1.525 0 0 0 0 0 0 0 +14.731 1.163 -1.53 0 0 0 0 0 0 0 +14.987 1.207 -1.56 0 0 0 0 0 0 0 +15.015 1.256 -1.564 0 0 0 0 0 0 0 +15.03 1.305 -1.566 0 0 0 0 0 0 0 +14.993 1.349 -1.562 0 0 0 0 0 0 0 +14.996 1.397 -1.563 0 0 0 0 0 0 0 +14.99 1.444 -1.563 0 0 0 0 0 0 0 +15.021 1.495 -1.567 0 0 0 0 0 0 0 +15.046 1.545 -1.571 0 0 0 0 0 0 0 +15.043 1.568 -1.571 0 0 0 0 0 0 0 +15.034 1.615 -1.57 0 0 0 0 0 0 0 +15.013 1.661 -1.568 0 0 0 0 0 0 0 +15.016 1.709 -1.569 0 0 0 0 0 0 0 +15.024 1.758 -1.571 0 0 0 0 0 0 0 +15.025 1.806 -1.572 0 0 0 0 0 0 0 +15.062 1.858 -1.577 0 0 0 0 0 0 0 +15.136 1.891 -1.586 0 0 0 0 0 0 0 +15.209 1.949 -1.595 0 0 0 0 0 0 0 +15.293 2.008 -1.606 0 0 0 0 0 0 0 +15.37 2.067 -1.616 0 0 0 0 0 0 0 +15.454 2.128 -1.626 0 0 0 0 0 0 0 +15.441 2.175 -1.626 0 0 0 0 0 0 0 +15.409 2.22 -1.623 0 0 0 0 0 0 0 +15.56 2.267 -1.641 0 0 0 0 0 0 0 +15.534 2.313 -1.639 0 0 0 0 0 0 0 +15.581 2.37 -1.645 0 0 0 0 0 0 0 +15.589 2.421 -1.647 0 0 0 0 0 0 0 +15.607 2.474 -1.65 0 0 0 0 0 0 0 +15.737 2.545 -1.666 0 0 0 0 0 0 0 +15.782 2.603 -1.673 0 0 0 0 0 0 0 +15.817 2.635 -1.677 0 0 0 0 0 0 0 +15.855 2.692 -1.683 0 0 0 0 0 0 0 +15.841 2.741 -1.682 0 0 0 0 0 0 0 +15.862 2.796 -1.686 0 0 0 0 0 0 0 +15.855 2.846 -1.686 0 0 0 0 0 0 0 +15.783 2.884 -1.678 0 0 0 0 0 0 0 +15.809 2.94 -1.683 0 0 0 0 0 0 0 +15.814 2.967 -1.684 0 0 0 0 0 0 0 +15.791 3.014 -1.682 0 0 0 0 0 0 0 +15.778 3.063 -1.682 0 0 0 0 0 0 0 +15.795 3.118 -1.685 0 0 0 0 0 0 0 +15.762 3.163 -1.682 0 0 0 0 0 0 0 +15.707 3.203 -1.677 0 0 0 0 0 0 0 +15.662 3.245 -1.673 0 0 0 0 0 0 0 +15.711 3.281 -1.679 0 0 0 0 0 0 0 +15.707 3.332 -1.68 0 0 0 0 0 0 0 +15.708 3.384 -1.681 0 0 0 0 0 0 0 +15.645 3.422 -1.675 0 0 0 0 0 0 0 +15.657 3.476 -1.678 0 0 0 0 0 0 0 +15.662 3.529 -1.68 0 0 0 0 0 0 0 +15.66 3.58 -1.681 0 0 0 0 0 0 0 +15.633 3.6 -1.678 0 0 0 0 0 0 0 +15.626 3.65 -1.679 0 0 0 0 0 0 0 +15.622 3.701 -1.68 0 0 0 0 0 0 0 +15.591 3.745 -1.677 0 0 0 0 0 0 0 +15.579 3.794 -1.677 0 0 0 0 0 0 0 +15.556 3.84 -1.676 0 0 0 0 0 0 0 +15.542 3.888 -1.676 0 0 0 0 0 0 0 +15.534 3.912 -1.675 0 0 0 0 0 0 0 +15.535 3.965 -1.677 0 0 0 0 0 0 0 +15.507 4.009 -1.675 0 0 0 0 0 0 0 +15.498 4.059 -1.676 0 0 0 0 0 0 0 +15.472 4.104 -1.674 0 0 0 0 0 0 0 +15.461 4.153 -1.674 0 0 0 0 0 0 0 +15.44 4.2 -1.673 0 0 0 0 0 0 0 +15.448 4.228 -1.675 0 0 0 0 0 0 0 +15.41 4.27 -1.672 0 0 0 0 0 0 0 +15.393 4.317 -1.672 0 0 0 0 0 0 0 +15.374 4.364 -1.671 0 0 0 0 0 0 0 +15.354 4.411 -1.67 0 0 0 0 0 0 0 +15.332 4.457 -1.669 0 0 0 0 0 0 0 +15.32 4.505 -1.67 0 0 0 0 0 0 0 +15.296 4.524 -1.667 0 0 0 0 0 0 0 +15.274 4.57 -1.667 0 0 0 0 0 0 0 +15.269 4.621 -1.668 0 0 0 0 0 0 0 +15.238 4.664 -1.666 0 0 0 0 0 0 0 +15.23 4.714 -1.667 0 0 0 0 0 0 0 +15.212 4.76 -1.666 0 0 0 0 0 0 0 +15.182 4.803 -1.664 0 0 0 0 0 0 0 +15.182 4.83 -1.665 0 0 0 0 0 0 0 +15.155 4.874 -1.664 0 0 0 0 0 0 0 +15.143 4.923 -1.664 0 0 0 0 0 0 0 +15.124 4.969 -1.664 0 0 0 0 0 0 0 +15.103 5.014 -1.663 0 0 0 0 0 0 0 +15.089 5.063 -1.663 0 0 0 0 0 0 0 +15.061 5.106 -1.662 0 0 0 0 0 0 0 +15.07 5.136 -1.664 0 0 0 0 0 0 0 +15.06 5.185 -1.665 0 0 0 0 0 0 0 +15.034 5.229 -1.664 0 0 0 0 0 0 0 +15.027 5.279 -1.665 0 0 0 0 0 0 0 +15.008 5.326 -1.664 0 0 0 0 0 0 0 +14.99 5.372 -1.664 0 0 0 0 0 0 0 +14.988 5.425 -1.666 0 0 0 0 0 0 0 +14.986 5.477 -1.668 0 0 0 0 0 0 0 +14.971 5.499 -1.667 0 0 0 0 0 0 0 +14.961 5.548 -1.668 0 0 0 0 0 0 0 +14.951 5.598 -1.669 0 0 0 0 0 0 0 +14.921 5.64 -1.667 0 0 0 0 0 0 0 +14.921 5.694 -1.67 0 0 0 0 0 0 0 +14.896 5.738 -1.669 0 0 0 0 0 0 0 +14.896 5.765 -1.67 0 0 0 0 0 0 0 +14.882 5.813 -1.67 0 0 0 0 0 0 0 +14.869 5.862 -1.671 0 0 0 0 0 0 0 +14.873 5.918 -1.674 0 0 0 0 0 0 0 +14.863 5.968 -1.675 0 0 0 0 0 0 0 +14.855 6.019 -1.677 0 0 0 0 0 0 0 +14.84 6.067 -1.677 0 0 0 0 0 0 0 +14.829 6.09 -1.677 0 0 0 0 0 0 0 +14.821 6.141 -1.678 0 0 0 0 0 0 0 +14.801 6.187 -1.678 0 0 0 0 0 0 0 +14.787 6.236 -1.679 0 0 0 0 0 0 0 +14.769 6.283 -1.679 0 0 0 0 0 0 0 +14.753 6.331 -1.68 0 0 0 0 0 0 0 +14.741 6.381 -1.68 0 0 0 0 0 0 0 +14.738 6.407 -1.681 0 0 0 0 0 0 0 +14.73 6.459 -1.683 0 0 0 0 0 0 0 +14.712 6.506 -1.683 0 0 0 0 0 0 0 +14.697 6.555 -1.684 0 0 0 0 0 0 0 +14.698 6.611 -1.687 0 0 0 0 0 0 0 +14.688 6.662 -1.688 0 0 0 0 0 0 0 +14.661 6.705 -1.687 0 0 0 0 0 0 0 +14.633 6.748 -1.687 0 0 0 0 0 0 0 +14.628 6.773 -1.687 0 0 0 0 0 0 0 +14.626 6.829 -1.69 0 0 0 0 0 0 0 +14.617 6.88 -1.691 0 0 0 0 0 0 0 +14.608 6.932 -1.693 0 0 0 0 0 0 0 +14.594 6.981 -1.694 0 0 0 0 0 0 0 +14.575 7.029 -1.694 0 0 0 0 0 0 0 +14.542 7.07 -1.693 0 0 0 0 0 0 0 +14.56 7.106 -1.697 0 0 0 0 0 0 0 +14.552 7.159 -1.699 0 0 0 0 0 0 0 +14.536 7.208 -1.7 0 0 0 0 0 0 0 +14.521 7.257 -1.7 0 0 0 0 0 0 0 +14.499 7.304 -1.701 0 0 0 0 0 0 0 +14.494 7.358 -1.703 0 0 0 0 0 0 0 +14.497 7.388 -1.705 0 0 0 0 0 0 0 +14.477 7.436 -1.705 0 0 0 0 0 0 0 +14.457 7.483 -1.706 0 0 0 0 0 0 0 +14.451 7.537 -1.708 0 0 0 0 0 0 0 +14.422 7.58 -1.707 0 0 0 0 0 0 0 +14.404 7.628 -1.708 0 0 0 0 0 0 0 +14.399 7.683 -1.711 0 0 0 0 0 0 0 +14.388 7.707 -1.711 0 0 0 0 0 0 0 +14.368 7.754 -1.711 0 0 0 0 0 0 0 +14.361 7.809 -1.714 0 0 0 0 0 0 0 +14.338 7.855 -1.714 0 0 0 0 0 0 0 +14.332 7.91 -1.717 0 0 0 0 0 0 0 +14.297 7.949 -1.715 0 0 0 0 0 0 0 +14.3 8.01 -1.719 0 0 0 0 0 0 0 +14.297 8.038 -1.72 0 0 0 0 0 0 0 +14.284 8.09 -1.722 0 0 0 0 0 0 0 +14.276 8.144 -1.724 0 0 0 0 0 0 0 +14.264 8.197 -1.726 0 0 0 0 0 0 0 +14.225 8.234 -1.724 0 0 0 0 0 0 0 +14.228 8.296 -1.728 0 0 0 0 0 0 0 +14.221 8.351 -1.731 0 0 0 0 0 0 0 +14.235 8.39 -1.734 0 0 0 0 0 0 0 +14.2 8.429 -1.733 0 0 0 0 0 0 0 +10.815 6.473 -1.276 0 0 0 0 0 0 0 +10.573 6.374 -1.245 0 0 0 0 0 0 0 +10.558 6.41 -1.246 0 0 0 0 0 0 0 +10.548 6.45 -1.248 0 0 0 0 0 0 0 +10.495 6.463 -1.243 0 0 0 0 0 0 0 +10.512 6.496 -1.247 0 0 0 0 0 0 0 +10.507 6.539 -1.249 0 0 0 0 0 0 0 +10.52 6.593 -1.254 0 0 0 0 0 0 0 +10.508 6.631 -1.255 0 0 0 0 0 0 0 +10.442 6.635 -1.249 0 0 0 0 0 0 0 +10.417 6.666 -1.248 0 0 0 0 0 0 0 +10.405 6.704 -1.249 0 0 0 0 0 0 0 +10.45 6.78 -1.259 0 0 0 0 0 0 0 +10.485 6.825 -1.265 0 0 0 0 0 0 0 +10.403 6.819 -1.256 0 0 0 0 0 0 0 +10.249 6.765 -1.238 0 0 0 0 0 0 0 +10.186 6.769 -1.232 0 0 0 0 0 0 0 +10.157 6.796 -1.231 0 0 0 0 0 0 0 +10.018 6.749 -1.214 0 0 0 0 0 0 0 +10.053 6.818 -1.222 0 0 0 0 0 0 0 +10.429 7.096 -1.277 0 0 0 0 0 0 0 +10.331 7.077 -1.266 0 0 0 0 0 0 0 +10.42 7.186 -1.282 0 0 0 0 0 0 0 +10.461 7.263 -1.291 0 0 0 0 0 0 0 +10.417 7.281 -1.288 0 0 0 0 0 0 0 +10.552 7.424 -1.311 0 0 0 0 0 0 0 +10.521 7.427 -1.308 0 0 0 0 0 0 0 +10.617 7.545 -1.325 0 0 0 0 0 0 0 +10.534 7.536 -1.316 0 0 0 0 0 0 0 +10.531 7.584 -1.319 0 0 0 0 0 0 0 +10.583 7.671 -1.33 0 0 0 0 0 0 0 +10.681 7.793 -1.348 0 0 0 0 0 0 0 +10.663 7.832 -1.349 0 0 0 0 0 0 0 +10.692 7.879 -1.355 0 0 0 0 0 0 0 +10.669 7.914 -1.355 0 0 0 0 0 0 0 +10.665 7.962 -1.358 0 0 0 0 0 0 0 +10.654 8.007 -1.36 0 0 0 0 0 0 0 +10.56 7.989 -1.35 0 0 0 0 0 0 0 +10.575 8.052 -1.356 0 0 0 0 0 0 0 +10.519 8.062 -1.352 0 0 0 0 0 0 0 +10.493 8.068 -1.35 0 0 0 0 0 0 0 +10.486 8.115 -1.352 0 0 0 0 0 0 0 +10.486 8.168 -1.356 0 0 0 0 0 0 0 +10.474 8.211 -1.358 0 0 0 0 0 0 0 +10.481 8.27 -1.363 0 0 0 0 0 0 0 +10.48 8.323 -1.367 0 0 0 0 0 0 0 +10.517 8.406 -1.376 0 0 0 0 0 0 0 +6.822 5.499 -0.826 0 0 0 0 0 0 0 +6.77 5.475 -0.82 0 0 0 0 0 0 0 +6.732 5.48 -0.817 0 0 0 0 0 0 0 +6.689 5.48 -0.813 0 0 0 0 0 0 0 +6.675 5.503 -0.813 0 0 0 0 0 0 0 +6.656 5.523 -0.813 0 0 0 0 0 0 0 +6.657 5.559 -0.816 0 0 0 0 0 0 0 +10.508 8.84 -1.408 0 0 0 0 0 0 0 +10.488 8.88 -1.409 0 0 0 0 0 0 0 +10.466 8.918 -1.41 0 0 0 0 0 0 0 +10.493 8.997 -1.418 0 0 0 0 0 0 0 +10.416 8.988 -1.411 0 0 0 0 0 0 0 +10.418 9.047 -1.415 0 0 0 0 0 0 0 +10.406 9.094 -1.418 0 0 0 0 0 0 0 +10.447 9.159 -1.427 0 0 0 0 0 0 0 +10.421 9.194 -1.427 0 0 0 0 0 0 0 +10.377 9.214 -1.425 0 0 0 0 0 0 0 +10.439 9.327 -1.439 0 0 0 0 0 0 0 +10.436 9.383 -1.443 0 0 0 0 0 0 0 +10.423 9.431 -1.446 0 0 0 0 0 0 0 +10.383 9.454 -1.444 0 0 0 0 0 0 0 +10.381 9.483 -1.446 0 0 0 0 0 0 0 +10.378 9.539 -1.45 0 0 0 0 0 0 0 +10.371 9.593 -1.454 0 0 0 0 0 0 0 +10.371 9.654 -1.459 0 0 0 0 0 0 0 +10.387 9.73 -1.466 0 0 0 0 0 0 0 +10.386 9.79 -1.471 0 0 0 0 0 0 0 +10.388 9.854 -1.476 0 0 0 0 0 0 0 +10.397 9.893 -1.48 0 0 0 0 0 0 0 +10.416 9.974 -1.488 0 0 0 0 0 0 0 +10.434 10.053 -1.496 0 0 0 0 0 0 0 +10.435 10.118 -1.502 0 0 0 0 0 0 0 +10.436 10.183 -1.507 0 0 0 0 0 0 0 +10.432 10.243 -1.512 0 0 0 0 0 0 0 +10.353 10.23 -1.504 0 0 0 0 0 0 0 +10.456 10.363 -1.524 0 0 0 0 0 0 0 +10.418 10.39 -1.523 0 0 0 0 0 0 0 +10.354 10.392 -1.518 0 0 0 0 0 0 0 +10.487 10.591 -1.545 0 0 0 0 0 0 0 +10.505 10.676 -1.554 0 0 0 0 0 0 0 +10.506 10.745 -1.559 0 0 0 0 0 0 0 +10.515 10.822 -1.567 0 0 0 0 0 0 0 +10.543 10.884 -1.574 0 0 0 0 0 0 0 +10.528 10.937 -1.577 0 0 0 0 0 0 0 +10.488 10.964 -1.576 0 0 0 0 0 0 0 +10.486 11.031 -1.582 0 0 0 0 0 0 0 +10.505 11.121 -1.591 0 0 0 0 0 0 0 +10.485 11.169 -1.594 0 0 0 0 0 0 0 +10.47 11.224 -1.597 0 0 0 0 0 0 0 +10.459 11.248 -1.598 0 0 0 0 0 0 0 +10.434 11.292 -1.6 0 0 0 0 0 0 0 +10.392 11.318 -1.599 0 0 0 0 0 0 0 +10.332 11.324 -1.595 0 0 0 0 0 0 0 +10.342 11.406 -1.603 0 0 0 0 0 0 0 +10.317 11.45 -1.604 0 0 0 0 0 0 0 +10.293 11.496 -1.607 0 0 0 0 0 0 0 +10.282 11.52 -1.608 0 0 0 0 0 0 0 +10.253 11.561 -1.609 0 0 0 0 0 0 0 +10.222 11.599 -1.61 0 0 0 0 0 0 0 +10.201 11.649 -1.613 0 0 0 0 0 0 0 +10.176 11.694 -1.615 0 0 0 0 0 0 0 +10.142 11.729 -1.615 0 0 0 0 0 0 0 +10.078 11.729 -1.611 0 0 0 0 0 0 0 +10.102 11.795 -1.618 0 0 0 0 0 0 0 +10.076 11.839 -1.62 0 0 0 0 0 0 0 +10.037 11.869 -1.62 0 0 0 0 0 0 0 +10.009 11.911 -1.621 0 0 0 0 0 0 0 +9.965 11.935 -1.62 0 0 0 0 0 0 0 +9.921 11.958 -1.619 0 0 0 0 0 0 0 +9.899 12.008 -1.622 0 0 0 0 0 0 0 +9.863 12.042 -1.622 0 0 0 0 0 0 0 +9.862 12.079 -1.626 0 0 0 0 0 0 0 +9.843 12.133 -1.629 0 0 0 0 0 0 0 +9.785 12.139 -1.625 0 0 0 0 0 0 0 +9.738 12.159 -1.624 0 0 0 0 0 0 0 +9.722 12.217 -1.628 0 0 0 0 0 0 0 +9.695 12.262 -1.63 0 0 0 0 0 0 0 +9.658 12.295 -1.631 0 0 0 0 0 0 0 +9.64 12.312 -1.631 0 0 0 0 0 0 0 +9.605 12.347 -1.631 0 0 0 0 0 0 0 +9.571 12.383 -1.632 0 0 0 0 0 0 0 +9.531 12.412 -1.632 0 0 0 0 0 0 0 +9.488 12.437 -1.631 0 0 0 0 0 0 0 +9.464 12.486 -1.634 0 0 0 0 0 0 0 +9.457 12.518 -1.637 0 0 0 0 0 0 0 +9.396 12.519 -1.633 0 0 0 0 0 0 0 +9.383 12.584 -1.638 0 0 0 0 0 0 0 +9.348 12.619 -1.639 0 0 0 0 0 0 0 +9.304 12.642 -1.638 0 0 0 0 0 0 0 +9.248 12.649 -1.634 0 0 0 0 0 0 0 +9.236 12.717 -1.64 0 0 0 0 0 0 0 +9.232 12.753 -1.643 0 0 0 0 0 0 0 +9.194 12.784 -1.644 0 0 0 0 0 0 0 +9.16 12.823 -1.645 0 0 0 0 0 0 0 +9.123 12.856 -1.646 0 0 0 0 0 0 0 +9.09 12.894 -1.647 0 0 0 0 0 0 0 +9.062 12.941 -1.65 0 0 0 0 0 0 0 +9.017 12.963 -1.649 0 0 0 0 0 0 0 +8.961 12.97 -1.646 0 0 0 0 0 0 0 +8.978 13.038 -1.653 0 0 0 0 0 0 0 +8.945 13.077 -1.655 0 0 0 0 0 0 0 +8.912 13.117 -1.657 0 0 0 0 0 0 0 +8.884 13.165 -1.659 0 0 0 0 0 0 0 +8.856 13.212 -1.662 0 0 0 0 0 0 0 +8.815 13.242 -1.662 0 0 0 0 0 0 0 +8.772 13.268 -1.662 0 0 0 0 0 0 0 +8.763 13.298 -1.664 0 0 0 0 0 0 0 +8.729 13.339 -1.666 0 0 0 0 0 0 0 +8.706 13.394 -1.67 0 0 0 0 0 0 0 +8.662 13.418 -1.67 0 0 0 0 0 0 0 +8.64 13.477 -1.674 0 0 0 0 0 0 0 +8.6 13.508 -1.675 0 0 0 0 0 0 0 +8.562 13.543 -1.676 0 0 0 0 0 0 0 +8.53 13.587 -1.678 0 0 0 0 0 0 0 +8.508 13.598 -1.678 0 0 0 0 0 0 0 +8.467 13.628 -1.678 0 0 0 0 0 0 0 +8.427 13.658 -1.679 0 0 0 0 0 0 0 +8.389 13.693 -1.68 0 0 0 0 0 0 0 +8.353 13.731 -1.682 0 0 0 0 0 0 0 +8.315 13.766 -1.683 0 0 0 0 0 0 0 +8.301 13.791 -1.684 0 0 0 0 0 0 0 +8.267 13.834 -1.687 0 0 0 0 0 0 0 +8.219 13.851 -1.686 0 0 0 0 0 0 0 +8.183 13.891 -1.687 0 0 0 0 0 0 0 +8.144 13.923 -1.688 0 0 0 0 0 0 0 +8.104 13.956 -1.689 0 0 0 0 0 0 0 +8.068 13.995 -1.691 0 0 0 0 0 0 0 +8.028 14.027 -1.692 0 0 0 0 0 0 0 +8.011 14.048 -1.693 0 0 0 0 0 0 0 +7.974 14.085 -1.695 0 0 0 0 0 0 0 +7.929 14.11 -1.695 0 0 0 0 0 0 0 +7.892 14.147 -1.697 0 0 0 0 0 0 0 +7.853 14.182 -1.698 0 0 0 0 0 0 0 +7.816 14.221 -1.7 0 0 0 0 0 0 0 +7.778 14.258 -1.701 0 0 0 0 0 0 0 +7.761 14.28 -1.703 0 0 0 0 0 0 0 +7.731 14.331 -1.706 0 0 0 0 0 0 0 +7.692 14.367 -1.708 0 0 0 0 0 0 0 +7.648 14.393 -1.708 0 0 0 0 0 0 0 +7.608 14.427 -1.71 0 0 0 0 0 0 0 +7.578 14.479 -1.713 0 0 0 0 0 0 0 +7.534 14.507 -1.714 0 0 0 0 0 0 0 +7.523 14.541 -1.717 0 0 0 0 0 0 0 +7.48 14.57 -1.717 0 0 0 0 0 0 0 +7.44 14.604 -1.719 0 0 0 0 0 0 0 +7.398 14.636 -1.72 0 0 0 0 0 0 0 +7.359 14.672 -1.722 0 0 0 0 0 0 0 +7.316 14.702 -1.723 0 0 0 0 0 0 0 +7.278 14.741 -1.725 0 0 0 0 0 0 0 +7.263 14.77 -1.727 0 0 0 0 0 0 0 +7.223 14.806 -1.729 0 0 0 0 0 0 0 +7.188 14.851 -1.732 0 0 0 0 0 0 0 +7.147 14.887 -1.733 0 0 0 0 0 0 0 +7.102 14.912 -1.734 0 0 0 0 0 0 0 +7.058 14.942 -1.735 0 0 0 0 0 0 0 +7.022 14.986 -1.737 0 0 0 0 0 0 0 +7.05 15.108 -1.752 0 0 0 0 0 0 0 +7.067 15.267 -1.77 0 0 0 0 0 0 0 +7.074 15.41 -1.785 0 0 0 0 0 0 0 +7.089 15.571 -1.803 0 0 0 0 0 0 0 +7.11 15.747 -1.823 0 0 0 0 0 0 0 +7.122 15.905 -1.84 0 0 0 0 0 0 0 +7.134 16.067 -1.858 0 0 0 0 0 0 0 +7.14 16.217 -1.874 0 0 0 0 0 0 0 +7.145 16.297 -1.883 0 0 0 0 0 0 0 +7.098 16.331 -1.885 0 0 0 0 0 0 0 +7.053 16.367 -1.886 0 0 0 0 0 0 0 +6.994 16.371 -1.884 0 0 0 0 0 0 0 +6.941 16.389 -1.884 0 0 0 0 0 0 0 +6.893 16.42 -1.885 0 0 0 0 0 0 0 +6.835 16.425 -1.883 0 0 0 0 0 0 0 +6.8 16.416 -1.88 0 0 0 0 0 0 0 +6.749 16.437 -1.88 0 0 0 0 0 0 0 +6.698 16.46 -1.88 0 0 0 0 0 0 0 +6.645 16.479 -1.88 0 0 0 0 0 0 0 +6.589 16.489 -1.879 0 0 0 0 0 0 0 +6.536 16.506 -1.878 0 0 0 0 0 0 0 +6.481 16.519 -1.877 0 0 0 0 0 0 0 +6.442 16.496 -1.873 0 0 0 0 0 0 0 +6.378 16.485 -1.869 0 0 0 0 0 0 0 +6.328 16.51 -1.87 0 0 0 0 0 0 0 +6.276 16.53 -1.87 0 0 0 0 0 0 0 +6.219 16.535 -1.868 0 0 0 0 0 0 0 +6.163 16.543 -1.867 0 0 0 0 0 0 0 +6.107 16.553 -1.866 0 0 0 0 0 0 0 +6.074 16.544 -1.863 0 0 0 0 0 0 0 +6.016 16.546 -1.861 0 0 0 0 0 0 0 +5.96 16.554 -1.86 0 0 0 0 0 0 0 +5.897 16.542 -1.856 0 0 0 0 0 0 0 +5.842 16.551 -1.855 0 0 0 0 0 0 0 +5.789 16.568 -1.855 0 0 0 0 0 0 0 +5.728 16.558 -1.851 0 0 0 0 0 0 0 +5.698 16.557 -1.85 0 0 0 0 0 0 0 +5.645 16.571 -1.85 0 0 0 0 0 0 0 +5.586 16.57 -1.847 0 0 0 0 0 0 0 +5.53 16.575 -1.846 0 0 0 0 0 0 0 +5.475 16.582 -1.844 0 0 0 0 0 0 0 +5.415 16.575 -1.841 0 0 0 0 0 0 0 +5.358 16.579 -1.84 0 0 0 0 0 0 0 +5.304 16.588 -1.839 0 0 0 0 0 0 0 +5.268 16.566 -1.835 0 0 0 0 0 0 0 +5.2 16.533 -1.829 0 0 0 0 0 0 0 +5.145 16.54 -1.828 0 0 0 0 0 0 0 +5.092 16.55 -1.827 0 0 0 0 0 0 0 +5.046 16.589 -1.83 0 0 0 0 0 0 0 +5.002 16.631 -1.833 0 0 0 0 0 0 0 +4.952 16.655 -1.834 0 0 0 0 0 0 0 +4.931 16.678 -1.836 0 0 0 0 0 0 0 +4.884 16.712 -1.838 0 0 0 0 0 0 0 +4.827 16.712 -1.836 0 0 0 0 0 0 0 +4.776 16.733 -1.837 0 0 0 0 0 0 0 +4.727 16.759 -1.839 0 0 0 0 0 0 0 +4.664 16.74 -1.834 0 0 0 0 0 0 0 +4.613 16.758 -1.835 0 0 0 0 0 0 0 +4.578 16.735 -1.831 0 0 0 0 0 0 0 +4.52 16.73 -1.829 0 0 0 0 0 0 0 +4.463 16.725 -1.827 0 0 0 0 0 0 0 +4.401 16.704 -1.822 0 0 0 0 0 0 0 +4.34 16.685 -1.818 0 0 0 0 0 0 0 +1.741 6.842 -0.627 0 0 0 0 0 0 0 +1.727 6.878 -0.631 0 0 0 0 0 0 0 +1.707 6.844 -0.626 0 0 0 0 0 0 0 +1.854 7.524 -0.707 0 0 0 0 0 0 0 +2.308 9.595 -0.956 0 0 0 0 0 0 0 +2.388 10.203 -1.027 0 0 0 0 0 0 0 +2.454 10.632 -1.078 0 0 0 0 0 0 0 +2.506 11.007 -1.122 0 0 0 0 0 0 0 +2.496 11.044 -1.126 0 0 0 0 0 0 0 +2.606 11.695 -1.203 0 0 0 0 0 0 0 +2.586 11.779 -1.212 0 0 0 0 0 0 0 +2.686 12.412 -1.287 0 0 0 0 0 0 0 +2.765 13.171 -1.376 0 0 0 0 0 0 0 +2.623 12.797 -1.329 0 0 0 0 0 0 0 +2.586 12.823 -1.332 0 0 0 0 0 0 0 +2.986 15.277 -1.622 0 0 0 0 0 0 0 +2.951 15.35 -1.63 0 0 0 0 0 0 0 +2.901 15.35 -1.629 0 0 0 0 0 0 0 +2.851 15.353 -1.628 0 0 0 0 0 0 0 +2.83 15.371 -1.63 0 0 0 0 0 0 0 +2.779 15.368 -1.628 0 0 0 0 0 0 0 +0.596 3.469 -0.212 0 0 0 0 0 0 0 +0.591 3.508 -0.217 0 0 0 0 0 0 0 +0.577 3.489 -0.214 0 0 0 0 0 0 0 +0.566 3.492 -0.215 0 0 0 0 0 0 0 +0.554 3.49 -0.214 0 0 0 0 0 0 0 +0.555 3.526 -0.218 0 0 0 0 0 0 0 +0.539 3.499 -0.215 0 0 0 0 0 0 0 +0.532 3.528 -0.218 0 0 0 0 0 0 0 +0.517 3.504 -0.215 0 0 0 0 0 0 0 +0.507 3.511 -0.216 0 0 0 0 0 0 0 +0.493 3.493 -0.213 0 0 0 0 0 0 0 +2.151 15.483 -1.63 0 0 0 0 0 0 0 +0.467 3.391 -0.201 0 0 0 0 0 0 0 +2.103 15.495 -1.631 0 0 0 0 0 0 0 +0.466 3.461 -0.209 0 0 0 0 0 0 0 +2.055 15.504 -1.631 0 0 0 0 0 0 0 +2.008 15.522 -1.632 0 0 0 0 0 0 0 +1.958 15.522 -1.632 0 0 0 0 0 0 0 +1.911 15.536 -1.633 0 0 0 0 0 0 0 +1.864 15.56 -1.635 0 0 0 0 0 0 0 +1.839 15.559 -1.634 0 0 0 0 0 0 0 +1.792 15.576 -1.636 0 0 0 0 0 0 0 +1.746 15.615 -1.64 0 0 0 0 0 0 0 +1.697 15.617 -1.639 0 0 0 0 0 0 0 +1.649 15.638 -1.641 0 0 0 0 0 0 0 +1.601 15.653 -1.642 0 0 0 0 0 0 0 +1.553 15.668 -1.643 0 0 0 0 0 0 0 +1.529 15.67 -1.643 0 0 0 0 0 0 0 +1.481 15.695 -1.646 0 0 0 0 0 0 0 +1.434 15.719 -1.648 0 0 0 0 0 0 0 +1.387 15.747 -1.651 0 0 0 0 0 0 0 +1.341 15.799 -1.656 0 0 0 0 0 0 0 +1.296 15.862 -1.663 0 0 0 0 0 0 0 +1.249 15.9 -1.667 0 0 0 0 0 0 0 +1.229 15.96 -1.674 0 0 0 0 0 0 0 +1.227 16.605 -1.749 0 0 0 0 0 0 0 +1.179 16.658 -1.755 0 0 0 0 0 0 0 +1.128 16.694 -1.759 0 0 0 0 0 0 0 +1.079 16.737 -1.763 0 0 0 0 0 0 0 +1.028 16.778 -1.768 0 0 0 0 0 0 0 +0.976 16.787 -1.769 0 0 0 0 0 0 0 +0.952 16.828 -1.773 0 0 0 0 0 0 0 +0.9 16.851 -1.776 0 0 0 0 0 0 0 +0.85 16.901 -1.781 0 0 0 0 0 0 0 +0.817 17.326 -1.831 0 0 0 0 0 0 0 +0.709 17.343 -1.832 0 0 0 0 0 0 0 +0.644 17.073 -1.8 0 0 0 0 0 0 0 +0.589 17.045 -1.797 0 0 0 0 0 0 0 +0.562 17.036 -1.796 0 0 0 0 0 0 0 +0.508 17.024 -1.794 0 0 0 0 0 0 0 +0.454 17.032 -1.795 0 0 0 0 0 0 0 +0.401 17.039 -1.795 0 0 0 0 0 0 0 +0.348 17.048 -1.796 0 0 0 0 0 0 0 +0.294 17.037 -1.795 0 0 0 0 0 0 0 +0.241 17.046 -1.796 0 0 0 0 0 0 0 +0.214 17.056 -1.797 0 0 0 0 0 0 0 +0.16 17.061 -1.797 0 0 0 0 0 0 0 +0.107 17.061 -1.797 0 0 0 0 0 0 0 +0.053 17.079 -1.8 0 0 0 0 0 0 0 +-0 17.075 -1.799 0 0 0 0 0 0 0 +-0.054 17.075 -1.799 0 0 0 0 0 0 0 +-0.108 17.089 -1.801 0 0 0 0 0 0 0 +-0.135 17.095 -1.801 0 0 0 0 0 0 0 +-0.188 17.092 -1.801 0 0 0 0 0 0 0 +-0.242 17.096 -1.802 0 0 0 0 0 0 0 +-0.296 17.087 -1.801 0 0 0 0 0 0 0 +-0.349 17.068 -1.799 0 0 0 0 0 0 0 +-0.403 17.073 -1.799 0 0 0 0 0 0 0 +-0.456 17.069 -1.799 0 0 0 0 0 0 0 +-0.51 17.068 -1.799 0 0 0 0 0 0 0 +-0.537 17.065 -1.799 0 0 0 0 0 0 0 +-0.59 17.067 -1.799 0 0 0 0 0 0 0 +-0.643 17.037 -1.796 0 0 0 0 0 0 0 +-0.704 17.232 -1.819 0 0 0 0 0 0 0 +-0.808 17.13 -1.808 0 0 0 0 0 0 0 +-0.86 17.086 -1.803 0 0 0 0 0 0 0 +-0.885 17.054 -1.799 0 0 0 0 0 0 0 +-0.939 17.064 -1.801 0 0 0 0 0 0 0 +-0.992 17.047 -1.799 0 0 0 0 0 0 0 +-1.046 17.051 -1.8 0 0 0 0 0 0 0 +-1.1 17.05 -1.8 0 0 0 0 0 0 0 +-1.154 17.056 -1.801 0 0 0 0 0 0 0 +-1.208 17.055 -1.802 0 0 0 0 0 0 0 +-1.235 17.057 -1.802 0 0 0 0 0 0 0 +-1.289 17.063 -1.803 0 0 0 0 0 0 0 +-1.343 17.058 -1.803 0 0 0 0 0 0 0 +-1.397 17.066 -1.805 0 0 0 0 0 0 0 +-1.452 17.073 -1.806 0 0 0 0 0 0 0 +-1.507 17.085 -1.808 0 0 0 0 0 0 0 +-1.56 17.076 -1.807 0 0 0 0 0 0 0 +-1.587 17.075 -1.808 0 0 0 0 0 0 0 +-1.641 17.066 -1.807 0 0 0 0 0 0 0 +-1.695 17.069 -1.808 0 0 0 0 0 0 0 +-1.748 17.062 -1.808 0 0 0 0 0 0 0 +-1.803 17.07 -1.81 0 0 0 0 0 0 0 +-1.858 17.076 -1.811 0 0 0 0 0 0 0 +-1.913 17.082 -1.812 0 0 0 0 0 0 0 +-1.94 17.081 -1.813 0 0 0 0 0 0 0 +-1.996 17.09 -1.814 0 0 0 0 0 0 0 +-2.051 17.096 -1.816 0 0 0 0 0 0 0 +-2.104 17.087 -1.816 0 0 0 0 0 0 0 +-2.159 17.087 -1.816 0 0 0 0 0 0 0 +-2.215 17.097 -1.818 0 0 0 0 0 0 0 +-2.277 17.159 -1.827 0 0 0 0 0 0 0 +-2.027 14.716 -1.539 0 0 0 0 0 0 0 +-2.049 14.536 -1.519 0 0 0 0 0 0 0 +-2.072 14.366 -1.499 0 0 0 0 0 0 0 +-2.097 14.222 -1.483 0 0 0 0 0 0 0 +-2.117 14.046 -1.463 0 0 0 0 0 0 0 +-2.138 13.891 -1.445 0 0 0 0 0 0 0 +-2.16 13.744 -1.429 0 0 0 0 0 0 0 +-2.157 13.586 -1.411 0 0 0 0 0 0 0 +-2.178 13.442 -1.394 0 0 0 0 0 0 0 +-2.198 13.3 -1.378 0 0 0 0 0 0 0 +-2.219 13.165 -1.363 0 0 0 0 0 0 0 +-2.236 13.017 -1.346 0 0 0 0 0 0 0 +-2.258 12.899 -1.333 0 0 0 0 0 0 0 +-2.275 12.758 -1.317 0 0 0 0 0 0 0 +-2.274 12.637 -1.303 0 0 0 0 0 0 0 +-2.293 12.517 -1.29 0 0 0 0 0 0 0 +-2.31 12.39 -1.276 0 0 0 0 0 0 0 +-2.328 12.27 -1.262 0 0 0 0 0 0 0 +-2.347 12.159 -1.25 0 0 0 0 0 0 0 +-2.36 12.025 -1.235 0 0 0 0 0 0 0 +-2.38 11.924 -1.224 0 0 0 0 0 0 0 +-2.377 11.815 -1.211 0 0 0 0 0 0 0 +-2.391 11.689 -1.197 0 0 0 0 0 0 0 +-2.406 11.578 -1.185 0 0 0 0 0 0 0 +-2.423 11.475 -1.173 0 0 0 0 0 0 0 +-2.436 11.362 -1.161 0 0 0 0 0 0 0 +-2.452 11.263 -1.15 0 0 0 0 0 0 0 +-2.469 11.168 -1.139 0 0 0 0 0 0 0 +-2.463 11.06 -1.127 0 0 0 0 0 0 0 +-2.477 10.959 -1.116 0 0 0 0 0 0 0 +-2.489 10.854 -1.104 0 0 0 0 0 0 0 +-2.504 10.761 -1.094 0 0 0 0 0 0 0 +-2.518 10.668 -1.083 0 0 0 0 0 0 0 +-2.533 10.583 -1.074 0 0 0 0 0 0 0 +-2.544 10.482 -1.063 0 0 0 0 0 0 0 +-2.557 10.393 -1.053 0 0 0 0 0 0 0 +-2.555 10.314 -1.044 0 0 0 0 0 0 0 +-2.567 10.223 -1.034 0 0 0 0 0 0 0 +-2.579 10.134 -1.024 0 0 0 0 0 0 0 +-2.594 10.062 -1.017 0 0 0 0 0 0 0 +-2.605 9.973 -1.007 0 0 0 0 0 0 0 +-2.617 9.89 -0.998 0 0 0 0 0 0 0 +-2.629 9.811 -0.989 0 0 0 0 0 0 0 +-2.625 9.733 -0.98 0 0 0 0 0 0 0 +-2.635 9.65 -0.971 0 0 0 0 0 0 0 +-2.647 9.575 -0.963 0 0 0 0 0 0 0 +-2.636 9.419 -0.945 0 0 0 0 0 0 0 +-2.747 9.584 -0.967 0 0 0 0 0 0 0 +-2.693 9.281 -0.932 0 0 0 0 0 0 0 +-2.698 9.245 -0.928 0 0 0 0 0 0 0 +-2.717 9.202 -0.923 0 0 0 0 0 0 0 +-2.727 9.13 -0.916 0 0 0 0 0 0 0 +-2.747 9.091 -0.912 0 0 0 0 0 0 0 +-2.762 9.039 -0.907 0 0 0 0 0 0 0 +-2.775 8.981 -0.901 0 0 0 0 0 0 0 +-2.791 8.93 -0.896 0 0 0 0 0 0 0 +-2.79 8.878 -0.89 0 0 0 0 0 0 0 +-2.807 8.836 -0.886 0 0 0 0 0 0 0 +-2.821 8.785 -0.88 0 0 0 0 0 0 0 +-2.814 8.668 -0.867 0 0 0 0 0 0 0 +-2.843 8.663 -0.868 0 0 0 0 0 0 0 +-2.861 8.626 -0.864 0 0 0 0 0 0 0 +-2.876 8.581 -0.86 0 0 0 0 0 0 0 +-2.889 8.531 -0.855 0 0 0 0 0 0 0 +-2.892 8.496 -0.851 0 0 0 0 0 0 0 +-2.907 8.453 -0.847 0 0 0 0 0 0 0 +-2.918 8.397 -0.841 0 0 0 0 0 0 0 +-2.933 8.356 -0.837 0 0 0 0 0 0 0 +-2.945 8.305 -0.832 0 0 0 0 0 0 0 +-2.959 8.262 -0.828 0 0 0 0 0 0 0 +-2.972 8.217 -0.823 0 0 0 0 0 0 0 +-2.973 8.179 -0.819 0 0 0 0 0 0 0 +-2.983 8.127 -0.814 0 0 0 0 0 0 0 +-3 8.093 -0.811 0 0 0 0 0 0 0 +-3.02 8.071 -0.809 0 0 0 0 0 0 0 +-3.033 8.028 -0.805 0 0 0 0 0 0 0 +-3.045 7.983 -0.8 0 0 0 0 0 0 0 +-3.064 7.958 -0.799 0 0 0 0 0 0 0 +-3.064 7.92 -0.794 0 0 0 0 0 0 0 +-3.083 7.896 -0.793 0 0 0 0 0 0 0 +-3.101 7.867 -0.79 0 0 0 0 0 0 0 +-3.114 7.828 -0.787 0 0 0 0 0 0 0 +-3.13 7.798 -0.784 0 0 0 0 0 0 0 +-3.147 7.77 -0.782 0 0 0 0 0 0 0 +-3.159 7.728 -0.778 0 0 0 0 0 0 0 +-3.164 7.705 -0.775 0 0 0 0 0 0 0 +-3.18 7.677 -0.773 0 0 0 0 0 0 0 +-3.193 7.639 -0.77 0 0 0 0 0 0 0 +-3.207 7.605 -0.767 0 0 0 0 0 0 0 +-3.225 7.582 -0.765 0 0 0 0 0 0 0 +-3.236 7.541 -0.761 0 0 0 0 0 0 0 +-3.251 7.511 -0.758 0 0 0 0 0 0 0 +-3.268 7.484 -0.756 0 0 0 0 0 0 0 +-3.265 7.446 -0.752 0 0 0 0 0 0 0 +-3.284 7.425 -0.751 0 0 0 0 0 0 0 +-3.295 7.387 -0.747 0 0 0 0 0 0 0 +-3.311 7.361 -0.745 0 0 0 0 0 0 0 +-3.333 7.348 -0.745 0 0 0 0 0 0 0 +-3.358 7.341 -0.745 0 0 0 0 0 0 0 +-3.375 7.318 -0.744 0 0 0 0 0 0 0 +-3.379 7.297 -0.742 0 0 0 0 0 0 0 +-3.398 7.277 -0.74 0 0 0 0 0 0 0 +-3.417 7.257 -0.739 0 0 0 0 0 0 0 +-3.453 7.275 -0.743 0 0 0 0 0 0 0 +-3.475 7.263 -0.743 0 0 0 0 0 0 0 +-3.5 7.257 -0.744 0 0 0 0 0 0 0 +-3.527 7.255 -0.745 0 0 0 0 0 0 0 +-3.555 7.283 -0.749 0 0 0 0 0 0 0 +-3.574 7.263 -0.748 0 0 0 0 0 0 0 +-3.6 7.259 -0.749 0 0 0 0 0 0 0 +-3.644 7.29 -0.754 0 0 0 0 0 0 0 +-3.795 7.332 -0.767 0 0 0 0 0 0 0 +-3.816 7.316 -0.766 0 0 0 0 0 0 0 +-3.863 7.35 -0.772 0 0 0 0 0 0 0 +-3.918 7.287 -0.769 0 0 0 0 0 0 0 +-3.923 7.242 -0.764 0 0 0 0 0 0 0 +-3.925 7.218 -0.762 0 0 0 0 0 0 0 +-3.964 7.235 -0.766 0 0 0 0 0 0 0 +-3.984 7.219 -0.766 0 0 0 0 0 0 0 +-4.012 7.215 -0.767 0 0 0 0 0 0 0 +-4.037 7.208 -0.767 0 0 0 0 0 0 0 +-4.066 7.206 -0.769 0 0 0 0 0 0 0 +-4.095 7.205 -0.77 0 0 0 0 0 0 0 +-4.111 7.207 -0.772 0 0 0 0 0 0 0 +-4.149 7.22 -0.775 0 0 0 0 0 0 0 +-4.17 7.204 -0.775 0 0 0 0 0 0 0 +-4.21 7.221 -0.779 0 0 0 0 0 0 0 +-4.248 7.234 -0.782 0 0 0 0 0 0 0 +-4.276 7.231 -0.784 0 0 0 0 0 0 0 +-4.307 7.231 -0.786 0 0 0 0 0 0 0 +-4.332 7.221 -0.786 0 0 0 0 0 0 0 +-4.335 7.2 -0.784 0 0 0 0 0 0 0 +-4.358 7.187 -0.784 0 0 0 0 0 0 0 +-4.395 7.197 -0.787 0 0 0 0 0 0 0 +-4.415 7.179 -0.787 0 0 0 0 0 0 0 +-4.451 7.188 -0.79 0 0 0 0 0 0 0 +-4.479 7.182 -0.791 0 0 0 0 0 0 0 +-4.517 7.193 -0.795 0 0 0 0 0 0 0 +-4.538 7.201 -0.797 0 0 0 0 0 0 0 +-4.569 7.2 -0.799 0 0 0 0 0 0 0 +-4.609 7.213 -0.802 0 0 0 0 0 0 0 +-4.645 7.22 -0.805 0 0 0 0 0 0 0 +-4.681 7.225 -0.808 0 0 0 0 0 0 0 +-4.717 7.231 -0.811 0 0 0 0 0 0 0 +-4.755 7.239 -0.814 0 0 0 0 0 0 0 +-4.784 7.26 -0.818 0 0 0 0 0 0 0 +-4.825 7.271 -0.822 0 0 0 0 0 0 0 +-4.862 7.278 -0.825 0 0 0 0 0 0 0 +-4.903 7.291 -0.829 0 0 0 0 0 0 0 +-4.954 7.316 -0.835 0 0 0 0 0 0 0 +-4.987 7.315 -0.837 0 0 0 0 0 0 0 +-4.983 7.26 -0.831 0 0 0 0 0 0 0 +-7.275 10.585 -1.304 0 0 0 0 0 0 0 +-7.276 10.515 -1.297 0 0 0 0 0 0 0 +-7.291 10.466 -1.293 0 0 0 0 0 0 0 +-7.305 10.417 -1.29 0 0 0 0 0 0 0 +-7.309 10.353 -1.284 0 0 0 0 0 0 0 +-7.317 10.295 -1.279 0 0 0 0 0 0 0 +-7.32 10.231 -1.273 0 0 0 0 0 0 0 +-7.331 10.179 -1.269 0 0 0 0 0 0 0 +-7.31 10.116 -1.261 0 0 0 0 0 0 0 +-7.331 10.078 -1.259 0 0 0 0 0 0 0 +-7.336 10.018 -1.254 0 0 0 0 0 0 0 +-7.343 9.962 -1.249 0 0 0 0 0 0 0 +-7.358 9.916 -1.246 0 0 0 0 0 0 0 +-7.364 9.86 -1.241 0 0 0 0 0 0 0 +-7.372 9.806 -1.236 0 0 0 0 0 0 0 +-7.372 9.774 -1.233 0 0 0 0 0 0 0 +-7.374 9.713 -1.228 0 0 0 0 0 0 0 +-7.386 9.666 -1.224 0 0 0 0 0 0 0 +-7.395 9.614 -1.22 0 0 0 0 0 0 0 +-7.398 9.556 -1.215 0 0 0 0 0 0 0 +-7.409 9.508 -1.211 0 0 0 0 0 0 0 +-7.409 9.447 -1.206 0 0 0 0 0 0 0 +-7.403 9.409 -1.202 0 0 0 0 0 0 0 +-7.418 9.367 -1.199 0 0 0 0 0 0 0 +-7.432 9.323 -1.196 0 0 0 0 0 0 0 +-7.439 9.272 -1.192 0 0 0 0 0 0 0 +-7.441 9.216 -1.187 0 0 0 0 0 0 0 +-7.447 9.163 -1.182 0 0 0 0 0 0 0 +-7.454 9.113 -1.179 0 0 0 0 0 0 0 +-7.446 9.074 -1.174 0 0 0 0 0 0 0 +-7.459 9.032 -1.172 0 0 0 0 0 0 0 +-7.466 8.983 -1.168 0 0 0 0 0 0 0 +-7.478 8.939 -1.165 0 0 0 0 0 0 0 +-7.479 8.884 -1.16 0 0 0 0 0 0 0 +-7.487 8.838 -1.156 0 0 0 0 0 0 0 +-7.484 8.778 -1.151 0 0 0 0 0 0 0 +-7.475 8.739 -1.146 0 0 0 0 0 0 0 +-7.492 8.703 -1.145 0 0 0 0 0 0 0 +-7.501 8.658 -1.141 0 0 0 0 0 0 0 +-7.501 8.603 -1.136 0 0 0 0 0 0 0 +-7.512 8.562 -1.134 0 0 0 0 0 0 0 +-7.518 8.514 -1.13 0 0 0 0 0 0 0 +-7.528 8.471 -1.127 0 0 0 0 0 0 0 +-7.533 8.424 -1.123 0 0 0 0 0 0 0 +-7.528 8.391 -1.12 0 0 0 0 0 0 0 +-7.542 8.354 -1.118 0 0 0 0 0 0 0 +-7.542 8.301 -1.113 0 0 0 0 0 0 0 +-7.539 8.245 -1.108 0 0 0 0 0 0 0 +-7.556 8.212 -1.107 0 0 0 0 0 0 0 +-7.565 8.17 -1.104 0 0 0 0 0 0 0 +-7.567 8.121 -1.1 0 0 0 0 0 0 0 +-7.55 8.077 -1.095 0 0 0 0 0 0 0 +-7.563 8.04 -1.092 0 0 0 0 0 0 0 +-12.247 12.961 -1.888 0 0 0 0 0 0 0 +-12.287 12.921 -1.887 0 0 0 0 0 0 0 +-12.326 12.881 -1.887 0 0 0 0 0 0 0 +-12.378 12.855 -1.889 0 0 0 0 0 0 0 +-12.422 12.819 -1.89 0 0 0 0 0 0 0 +-12.439 12.797 -1.889 0 0 0 0 0 0 0 +-12.48 12.759 -1.89 0 0 0 0 0 0 0 +-12.518 12.717 -1.889 0 0 0 0 0 0 0 +-12.563 12.683 -1.89 0 0 0 0 0 0 0 +-12.606 12.647 -1.89 0 0 0 0 0 0 0 +-12.657 12.618 -1.892 0 0 0 0 0 0 0 +-12.695 12.577 -1.892 0 0 0 0 0 0 0 +-12.722 12.564 -1.893 0 0 0 0 0 0 0 +-12.772 12.535 -1.895 0 0 0 0 0 0 0 +-12.812 12.495 -1.895 0 0 0 0 0 0 0 +-12.844 12.448 -1.894 0 0 0 0 0 0 0 +-12.889 12.413 -1.895 0 0 0 0 0 0 0 +-12.927 12.372 -1.895 0 0 0 0 0 0 0 +-12.968 12.333 -1.895 0 0 0 0 0 0 0 +-12.99 12.315 -1.896 0 0 0 0 0 0 0 +-13.027 12.273 -1.895 0 0 0 0 0 0 0 +-13.066 12.232 -1.895 0 0 0 0 0 0 0 +-13.102 12.19 -1.895 0 0 0 0 0 0 0 +-13.147 12.154 -1.896 0 0 0 0 0 0 0 +-13.189 12.116 -1.897 0 0 0 0 0 0 0 +-13.217 12.066 -1.895 0 0 0 0 0 0 0 +-13.262 12.031 -1.896 0 0 0 0 0 0 0 +-13.291 12.019 -1.898 0 0 0 0 0 0 0 +-13.329 11.977 -1.898 0 0 0 0 0 0 0 +-13.366 11.935 -1.898 0 0 0 0 0 0 0 +-13.413 11.901 -1.899 0 0 0 0 0 0 0 +-13.452 11.86 -1.9 0 0 0 0 0 0 0 +-13.496 11.825 -1.901 0 0 0 0 0 0 0 +-13.526 11.776 -1.9 0 0 0 0 0 0 0 +-13.559 11.767 -1.902 0 0 0 0 0 0 0 +-13.613 11.739 -1.904 0 0 0 0 0 0 0 +-13.663 11.708 -1.906 0 0 0 0 0 0 0 +-13.694 11.66 -1.906 0 0 0 0 0 0 0 +-13.73 11.617 -1.906 0 0 0 0 0 0 0 +-13.774 11.58 -1.907 0 0 0 0 0 0 0 +-13.812 11.538 -1.907 0 0 0 0 0 0 0 +-13.82 11.507 -1.905 0 0 0 0 0 0 0 +-13.86 11.468 -1.906 0 0 0 0 0 0 0 +-13.887 11.416 -1.905 0 0 0 0 0 0 0 +-13.915 11.366 -1.903 0 0 0 0 0 0 0 +-13.948 11.32 -1.903 0 0 0 0 0 0 0 +-13.986 11.279 -1.903 0 0 0 0 0 0 0 +-14.019 11.232 -1.903 0 0 0 0 0 0 0 +-14.036 11.21 -1.903 0 0 0 0 0 0 0 +-14.064 11.16 -1.902 0 0 0 0 0 0 0 +-14.095 11.113 -1.901 0 0 0 0 0 0 0 +-14.133 11.071 -1.902 0 0 0 0 0 0 0 +-14.165 11.024 -1.901 0 0 0 0 0 0 0 +-14.192 10.974 -1.9 0 0 0 0 0 0 0 +-14.226 10.929 -1.9 0 0 0 0 0 0 0 +-14.262 10.886 -1.9 0 0 0 0 0 0 0 +-14.271 10.857 -1.899 0 0 0 0 0 0 0 +-14.315 10.819 -1.901 0 0 0 0 0 0 0 +-14.337 10.766 -1.899 0 0 0 0 0 0 0 +-14.381 10.728 -1.9 0 0 0 0 0 0 0 +-14.408 10.678 -1.9 0 0 0 0 0 0 0 +-14.43 10.625 -1.898 0 0 0 0 0 0 0 +-14.448 10.567 -1.896 0 0 0 0 0 0 0 +-14.463 10.544 -1.895 0 0 0 0 0 0 0 +-14.492 10.496 -1.895 0 0 0 0 0 0 0 +-14.519 10.445 -1.894 0 0 0 0 0 0 0 +-14.547 10.396 -1.893 0 0 0 0 0 0 0 +-14.578 10.349 -1.893 0 0 0 0 0 0 0 +-14.61 10.304 -1.893 0 0 0 0 0 0 0 +-14.646 10.26 -1.893 0 0 0 0 0 0 0 +-14.652 10.23 -1.892 0 0 0 0 0 0 0 +-14.696 10.192 -1.894 0 0 0 0 0 0 0 +-14.734 10.15 -1.895 0 0 0 0 0 0 0 +-6.703 4.57 -0.75 0 0 0 0 0 0 0 +-6.701 4.537 -0.748 0 0 0 0 0 0 0 +-6.71 4.513 -0.747 0 0 0 0 0 0 0 +-6.726 4.493 -0.747 0 0 0 0 0 0 0 +-6.718 4.472 -0.745 0 0 0 0 0 0 0 +-6.699 4.429 -0.74 0 0 0 0 0 0 0 +-6.708 4.405 -0.74 0 0 0 0 0 0 0 +-6.724 4.385 -0.74 0 0 0 0 0 0 0 +-6.734 4.362 -0.74 0 0 0 0 0 0 0 +-6.748 4.34 -0.74 0 0 0 0 0 0 0 +-15.083 9.639 -1.896 0 0 0 0 0 0 0 +-6.77 4.325 -0.741 0 0 0 0 0 0 0 +-15.116 9.594 -1.896 0 0 0 0 0 0 0 +-15.135 9.539 -1.894 0 0 0 0 0 0 0 +-15.166 9.493 -1.895 0 0 0 0 0 0 0 +-15.196 9.445 -1.895 0 0 0 0 0 0 0 +-15.244 9.409 -1.897 0 0 0 0 0 0 0 +-15.277 9.363 -1.898 0 0 0 0 0 0 0 +-15.29 9.338 -1.897 0 0 0 0 0 0 0 +-15.312 9.285 -1.896 0 0 0 0 0 0 0 +-15.348 9.241 -1.897 0 0 0 0 0 0 0 +-15.365 9.186 -1.896 0 0 0 0 0 0 0 +-15.394 9.138 -1.896 0 0 0 0 0 0 0 +-15.428 9.092 -1.896 0 0 0 0 0 0 0 +-15.436 9.032 -1.894 0 0 0 0 0 0 0 +-15.44 8.969 -1.89 0 0 0 0 0 0 0 +-15.454 8.945 -1.89 0 0 0 0 0 0 0 +-15.518 8.917 -1.895 0 0 0 0 0 0 0 +-14.117 8.05 -1.703 0 0 0 0 0 0 0 +-15.567 8.816 -1.894 0 0 0 0 0 0 0 +-15.577 8.757 -1.892 0 0 0 0 0 0 0 +-15.584 8.696 -1.889 0 0 0 0 0 0 0 +-15.601 8.641 -1.888 0 0 0 0 0 0 0 +-12.571 6.88 -1.478 0 0 0 0 0 0 0 +-12.563 6.824 -1.474 0 0 0 0 0 0 0 +-12.596 6.791 -1.475 0 0 0 0 0 0 0 +-13.672 7.319 -1.616 0 0 0 0 0 0 0 +-13.829 7.347 -1.633 0 0 0 0 0 0 0 +-13.945 7.353 -1.646 0 0 0 0 0 0 0 +-14.113 7.413 -1.666 0 0 0 0 0 0 0 +-7.093 3.655 -0.734 0 0 0 0 0 0 0 +-7.177 3.67 -0.744 0 0 0 0 0 0 0 +-7.226 3.666 -0.749 0 0 0 0 0 0 0 +-7.331 3.691 -0.761 0 0 0 0 0 0 0 +-7.387 3.69 -0.767 0 0 0 0 0 0 0 +-7.483 3.724 -0.779 0 0 0 0 0 0 0 +-7.532 3.719 -0.784 0 0 0 0 0 0 0 +-7.833 3.838 -0.821 0 0 0 0 0 0 0 +-7.645 3.716 -0.795 0 0 0 0 0 0 0 +-14.255 6.898 -1.654 0 0 0 0 0 0 0 +-14.171 6.802 -1.64 0 0 0 0 0 0 0 +-14.194 6.758 -1.641 0 0 0 0 0 0 0 +-14.662 6.954 -1.7 0 0 0 0 0 0 0 +-14.136 6.649 -1.629 0 0 0 0 0 0 0 +-15.759 7.355 -1.836 0 0 0 0 0 0 0 +-13.912 6.437 -1.595 0 0 0 0 0 0 0 +-15.787 7.248 -1.834 0 0 0 0 0 0 0 +-15.785 7.187 -1.83 0 0 0 0 0 0 0 +-15.8 7.134 -1.83 0 0 0 0 0 0 0 +-15.797 7.073 -1.826 0 0 0 0 0 0 0 +-15.795 7.042 -1.825 0 0 0 0 0 0 0 +-15.823 6.995 -1.825 0 0 0 0 0 0 0 +-17.284 7.579 -2.009 0 0 0 0 0 0 0 +-17.286 7.515 -2.007 0 0 0 0 0 0 0 +-17.27 7.444 -2.002 0 0 0 0 0 0 0 +-17.266 7.378 -1.998 0 0 0 0 0 0 0 +-17.274 7.317 -1.996 0 0 0 0 0 0 0 +-17.271 7.284 -1.994 0 0 0 0 0 0 0 +-17.292 7.229 -1.994 0 0 0 0 0 0 0 +-17.311 7.173 -1.994 0 0 0 0 0 0 0 +-17.328 7.116 -1.993 0 0 0 0 0 0 0 +-17.345 7.059 -1.992 0 0 0 0 0 0 0 +-17.358 7.001 -1.991 0 0 0 0 0 0 0 +-17.383 6.948 -1.992 0 0 0 0 0 0 0 +-17.381 6.916 -1.99 0 0 0 0 0 0 0 +-17.377 6.851 -1.987 0 0 0 0 0 0 0 +-17.367 6.784 -1.983 0 0 0 0 0 0 0 +-17.37 6.722 -1.98 0 0 0 0 0 0 0 +-17.367 6.658 -1.977 0 0 0 0 0 0 0 +-17.365 6.595 -1.975 0 0 0 0 0 0 0 +-17.38 6.538 -1.974 0 0 0 0 0 0 0 +-17.374 6.505 -1.972 0 0 0 0 0 0 0 +-17.374 6.442 -1.969 0 0 0 0 0 0 0 +-17.379 6.382 -1.967 0 0 0 0 0 0 0 +-17.388 6.324 -1.966 0 0 0 0 0 0 0 +-17.42 6.274 -1.968 0 0 0 0 0 0 0 +-17.433 6.216 -1.967 0 0 0 0 0 0 0 +-17.441 6.157 -1.965 0 0 0 0 0 0 0 +-17.434 6.124 -1.963 0 0 0 0 0 0 0 +-17.453 6.069 -1.963 0 0 0 0 0 0 0 +-17.459 6.01 -1.962 0 0 0 0 0 0 0 +-17.487 5.958 -1.963 0 0 0 0 0 0 0 +-17.496 5.9 -1.962 0 0 0 0 0 0 0 +-17.507 5.843 -1.961 0 0 0 0 0 0 0 +-17.518 5.785 -1.96 0 0 0 0 0 0 0 +-17.51 5.752 -1.958 0 0 0 0 0 0 0 +-17.526 5.696 -1.957 0 0 0 0 0 0 0 +-17.538 5.639 -1.957 0 0 0 0 0 0 0 +-17.559 5.585 -1.957 0 0 0 0 0 0 0 +-17.584 5.533 -1.958 0 0 0 0 0 0 0 +-17.605 5.479 -1.959 0 0 0 0 0 0 0 +-17.607 5.418 -1.957 0 0 0 0 0 0 0 +-17.606 5.388 -1.956 0 0 0 0 0 0 0 +-17.614 5.33 -1.954 0 0 0 0 0 0 0 +-17.632 5.275 -1.955 0 0 0 0 0 0 0 +-17.635 5.215 -1.953 0 0 0 0 0 0 0 +-17.648 5.159 -1.953 0 0 0 0 0 0 0 +-17.647 5.098 -1.95 0 0 0 0 0 0 0 +-17.657 5.041 -1.95 0 0 0 0 0 0 0 +-17.652 5.01 -1.948 0 0 0 0 0 0 0 +-17.658 4.952 -1.947 0 0 0 0 0 0 0 +-17.683 4.899 -1.948 0 0 0 0 0 0 0 +-8.182 2.197 -0.792 0 0 0 0 0 0 0 +-8.166 2.165 -0.789 0 0 0 0 0 0 0 +-8.179 2.141 -0.79 0 0 0 0 0 0 0 +-8.147 2.119 -0.786 0 0 0 0 0 0 0 +-8.139 2.089 -0.784 0 0 0 0 0 0 0 +-8.151 2.065 -0.785 0 0 0 0 0 0 0 +-8.933 2.014 -0.872 0 0 0 0 0 0 0 +-8.924 1.982 -0.87 0 0 0 0 0 0 0 +-10.205 1.688 -1.011 0 0 0 0 0 0 0 +-10.214 1.657 -1.012 0 0 0 0 0 0 0 +-10.194 1.62 -1.009 0 0 0 0 0 0 0 +-9.48 1.368 -0.922 0 0 0 0 0 0 0 +-9.473 1.336 -0.92 0 0 0 0 0 0 0 +-9.485 1.308 -0.921 0 0 0 0 0 0 0 +-9.495 1.279 -0.922 0 0 0 0 0 0 0 +-9.503 1.249 -0.922 0 0 0 0 0 0 0 +-9.52 1.221 -0.924 0 0 0 0 0 0 0 +-9.522 1.206 -0.924 0 0 0 0 0 0 0 +-9.536 1.178 -0.925 0 0 0 0 0 0 0 +-9.404 0.907 -0.906 0 0 0 0 0 0 0 +-8.559 0.62 -0.805 0 0 0 0 0 0 0 +-8.678 0.506 -0.818 0 0 0 0 0 0 0 +-8.723 0.481 -0.823 0 0 0 0 0 0 0 +-18.14 0.8 -1.926 0 0 0 0 0 0 0 +-18.126 0.77 -1.924 0 0 0 0 0 0 0 +-18.102 0.712 -1.921 0 0 0 0 0 0 0 +-18.097 0.655 -1.92 0 0 0 0 0 0 0 +-18.095 0.598 -1.92 0 0 0 0 0 0 0 +-18.076 0.541 -1.917 0 0 0 0 0 0 0 +-18.062 0.484 -1.915 0 0 0 0 0 0 0 +-18.05 0.426 -1.914 0 0 0 0 0 0 0 +-18.054 0.398 -1.914 0 0 0 0 0 0 0 +-18.065 0.342 -1.915 0 0 0 0 0 0 0 +-18.068 0.285 -1.916 0 0 0 0 0 0 0 +-19.267 0.245 -2.056 0 0 0 0 0 0 0 +-19.256 0.184 -2.054 0 0 0 0 0 0 0 +-19.252 0.124 -2.054 0 0 0 0 0 0 0 +-19.252 0.063 -2.054 0 0 0 0 0 0 0 +-19.247 0.003 -2.053 0 0 0 0 0 0 0 +-19.229 -0.058 -2.051 0 0 0 0 0 0 0 +-19.199 -0.088 -2.048 0 0 0 0 0 0 0 +-19.22 -0.148 -2.05 0 0 0 0 0 0 0 +-19.216 -0.208 -2.05 0 0 0 0 0 0 0 +-19.205 -0.269 -2.049 0 0 0 0 0 0 0 +-19.174 -0.329 -2.045 0 0 0 0 0 0 0 +-19.163 -0.389 -2.044 0 0 0 0 0 0 0 +-19.166 -0.449 -2.044 0 0 0 0 0 0 0 +-19.177 -0.479 -2.046 0 0 0 0 0 0 0 +-19.152 -0.539 -2.043 0 0 0 0 0 0 0 +-19.11 -0.598 -2.038 0 0 0 0 0 0 0 +-19.116 -0.658 -2.039 0 0 0 0 0 0 0 +-19.126 -0.719 -2.041 0 0 0 0 0 0 0 +-19.102 -0.778 -2.038 0 0 0 0 0 0 0 +-19.077 -0.837 -2.036 0 0 0 0 0 0 0 +-19.064 -0.866 -2.034 0 0 0 0 0 0 0 +-19.053 -0.926 -2.033 0 0 0 0 0 0 0 +-19.048 -0.986 -2.033 0 0 0 0 0 0 0 +-19.029 -1.045 -2.031 0 0 0 0 0 0 0 +-19.012 -1.104 -2.029 0 0 0 0 0 0 0 +-19.001 -1.163 -2.029 0 0 0 0 0 0 0 +-18.985 -1.222 -2.027 0 0 0 0 0 0 0 +-18.959 -1.25 -2.024 0 0 0 0 0 0 0 +-18.953 -1.31 -2.024 0 0 0 0 0 0 0 +-18.943 -1.369 -2.023 0 0 0 0 0 0 0 +-18.931 -1.428 -2.022 0 0 0 0 0 0 0 +-18.922 -1.487 -2.022 0 0 0 0 0 0 0 +-18.894 -1.544 -2.019 0 0 0 0 0 0 0 +-18.863 -1.601 -2.016 0 0 0 0 0 0 0 +-16.131 -1.399 -1.696 0 0 0 0 0 0 0 +-16.103 -1.447 -1.693 0 0 0 0 0 0 0 +-16.055 -1.494 -1.688 0 0 0 0 0 0 0 +-18.84 -1.808 -2.016 0 0 0 0 0 0 0 +-18.809 -1.865 -2.013 0 0 0 0 0 0 0 +-18.777 -1.922 -2.01 0 0 0 0 0 0 0 +-18.702 -1.973 -2.002 0 0 0 0 0 0 0 +-18.741 -2.037 -2.007 0 0 0 0 0 0 0 +-18.724 -2.065 -2.005 0 0 0 0 0 0 0 +-18.702 -2.122 -2.003 0 0 0 0 0 0 0 +-18.665 -2.177 -2 0 0 0 0 0 0 0 +-18.615 -2.231 -1.995 0 0 0 0 0 0 0 +-18.62 -2.291 -1.996 0 0 0 0 0 0 0 +-18.606 -2.348 -1.996 0 0 0 0 0 0 0 +-18.605 -2.408 -1.996 0 0 0 0 0 0 0 +-18.581 -2.434 -1.994 0 0 0 0 0 0 0 +-18.564 -2.491 -1.993 0 0 0 0 0 0 0 +-18.55 -2.549 -1.992 0 0 0 0 0 0 0 +-18.54 -2.607 -1.992 0 0 0 0 0 0 0 +-18.526 -2.664 -1.991 0 0 0 0 0 0 0 +-18.517 -2.722 -1.991 0 0 0 0 0 0 0 +-18.469 -2.775 -1.986 0 0 0 0 0 0 0 +-18.479 -2.806 -1.988 0 0 0 0 0 0 0 +-18.472 -2.864 -1.988 0 0 0 0 0 0 0 +-18.463 -2.922 -1.988 0 0 0 0 0 0 0 +-18.432 -2.977 -1.986 0 0 0 0 0 0 0 +-18.42 -3.034 -1.986 0 0 0 0 0 0 0 +-18.383 -3.087 -1.982 0 0 0 0 0 0 0 +-18.375 -3.146 -1.983 0 0 0 0 0 0 0 +-18.335 -3.168 -1.978 0 0 0 0 0 0 0 +-18.331 -3.227 -1.979 0 0 0 0 0 0 0 +-18.321 -3.285 -1.979 0 0 0 0 0 0 0 +-18.289 -3.338 -1.976 0 0 0 0 0 0 0 +-18.261 -3.392 -1.974 0 0 0 0 0 0 0 +-18.254 -3.45 -1.975 0 0 0 0 0 0 0 +-18.192 -3.498 -1.969 0 0 0 0 0 0 0 +-18.173 -3.524 -1.967 0 0 0 0 0 0 0 +-18.139 -3.577 -1.964 0 0 0 0 0 0 0 +-18.098 -3.628 -1.961 0 0 0 0 0 0 0 +-18.059 -3.679 -1.958 0 0 0 0 0 0 0 +-18.024 -3.731 -1.955 0 0 0 0 0 0 0 +-18.016 -3.788 -1.955 0 0 0 0 0 0 0 +-17.962 -3.836 -1.95 0 0 0 0 0 0 0 +-17.948 -3.862 -1.949 0 0 0 0 0 0 0 +-17.922 -3.916 -1.948 0 0 0 0 0 0 0 +-17.904 -3.971 -1.947 0 0 0 0 0 0 0 +-17.864 -4.021 -1.944 0 0 0 0 0 0 0 +-17.853 -4.078 -1.944 0 0 0 0 0 0 0 +-17.815 -4.128 -1.941 0 0 0 0 0 0 0 +-17.794 -4.182 -1.94 0 0 0 0 0 0 0 +-17.763 -4.204 -1.937 0 0 0 0 0 0 0 +-17.742 -4.258 -1.936 0 0 0 0 0 0 0 +-17.707 -4.309 -1.933 0 0 0 0 0 0 0 +-17.684 -4.362 -1.932 0 0 0 0 0 0 0 +-17.649 -4.412 -1.93 0 0 0 0 0 0 0 +-17.625 -4.465 -1.929 0 0 0 0 0 0 0 +-17.592 -4.515 -1.926 0 0 0 0 0 0 0 +-17.543 -4.562 -1.922 0 0 0 0 0 0 0 +-17.515 -4.584 -1.92 0 0 0 0 0 0 0 +-17.477 -4.633 -1.917 0 0 0 0 0 0 0 +-17.449 -4.684 -1.915 0 0 0 0 0 0 0 +-17.43 -4.738 -1.915 0 0 0 0 0 0 0 +-17.387 -4.785 -1.911 0 0 0 0 0 0 0 +-17.362 -4.837 -1.91 0 0 0 0 0 0 0 +-17.333 -4.887 -1.908 0 0 0 0 0 0 0 +-17.304 -4.909 -1.906 0 0 0 0 0 0 0 +-17.274 -4.959 -1.904 0 0 0 0 0 0 0 +-17.241 -5.008 -1.902 0 0 0 0 0 0 0 +-17.204 -5.056 -1.899 0 0 0 0 0 0 0 +-17.179 -5.107 -1.898 0 0 0 0 0 0 0 +-17.149 -5.157 -1.896 0 0 0 0 0 0 0 +-17.129 -5.21 -1.896 0 0 0 0 0 0 0 +-17.106 -5.232 -1.894 0 0 0 0 0 0 0 +-17.091 -5.286 -1.894 0 0 0 0 0 0 0 +-17.042 -5.33 -1.89 0 0 0 0 0 0 0 +-17.016 -5.381 -1.889 0 0 0 0 0 0 0 +-17.003 -5.435 -1.89 0 0 0 0 0 0 0 +-16.989 -5.49 -1.89 0 0 0 0 0 0 0 +-16.978 -5.545 -1.891 0 0 0 0 0 0 0 +-16.967 -5.571 -1.891 0 0 0 0 0 0 0 +-16.949 -5.624 -1.891 0 0 0 0 0 0 0 +-16.911 -5.671 -1.888 0 0 0 0 0 0 0 +-16.893 -5.724 -1.888 0 0 0 0 0 0 0 +-16.873 -5.776 -1.888 0 0 0 0 0 0 0 +-16.827 -5.819 -1.884 0 0 0 0 0 0 0 +-16.791 -5.866 -1.882 0 0 0 0 0 0 0 +-16.773 -5.889 -1.881 0 0 0 0 0 0 0 +-16.704 -5.924 -1.875 0 0 0 0 0 0 0 +-16.679 -5.975 -1.874 0 0 0 0 0 0 0 +-16.638 -6.019 -1.871 0 0 0 0 0 0 0 +-16.598 -6.064 -1.869 0 0 0 0 0 0 0 +-16.57 -6.112 -1.868 0 0 0 0 0 0 0 +-16.528 -6.156 -1.865 0 0 0 0 0 0 0 +-16.507 -6.178 -1.863 0 0 0 0 0 0 0 +-16.451 -6.216 -1.859 0 0 0 0 0 0 0 +-16.422 -6.264 -1.858 0 0 0 0 0 0 0 +-16.335 -6.29 -1.849 0 0 0 0 0 0 0 +-16.297 -6.334 -1.847 0 0 0 0 0 0 0 +-16.229 -6.366 -1.841 0 0 0 0 0 0 0 +-16.172 -6.403 -1.836 0 0 0 0 0 0 0 +-16.105 -6.406 -1.829 0 0 0 0 0 0 0 +-16.055 -6.444 -1.825 0 0 0 0 0 0 0 +-15.987 -6.475 -1.819 0 0 0 0 0 0 0 +-15.926 -6.509 -1.814 0 0 0 0 0 0 0 +-15.931 -6.57 -1.817 0 0 0 0 0 0 0 +-15.951 -6.636 -1.823 0 0 0 0 0 0 0 +-15.878 -6.665 -1.816 0 0 0 0 0 0 0 +-15.78 -6.653 -1.805 0 0 0 0 0 0 0 +-15.772 -6.708 -1.807 0 0 0 0 0 0 0 +-15.827 -6.79 -1.816 0 0 0 0 0 0 0 +-15.987 -6.918 -1.839 0 0 0 0 0 0 0 +-15.988 -6.978 -1.842 0 0 0 0 0 0 0 +-15.988 -7.038 -1.845 0 0 0 0 0 0 0 +-15.939 -7.076 -1.842 0 0 0 0 0 0 0 +-15.859 -7.071 -1.833 0 0 0 0 0 0 0 +-15.757 -7.085 -1.823 0 0 0 0 0 0 0 +-15.68 -7.11 -1.816 0 0 0 0 0 0 0 +-15.661 -7.16 -1.816 0 0 0 0 0 0 0 +-15.678 -7.228 -1.821 0 0 0 0 0 0 0 +-15.67 -7.284 -1.823 0 0 0 0 0 0 0 +-15.699 -7.357 -1.83 0 0 0 0 0 0 0 +-15.678 -7.407 -1.83 0 0 0 0 0 0 0 +-14.905 -7.072 -1.731 0 0 0 0 0 0 0 +-15.714 -7.515 -1.839 0 0 0 0 0 0 0 +-15.734 -7.585 -1.845 0 0 0 0 0 0 0 +-15.71 -7.635 -1.845 0 0 0 0 0 0 0 +-14.738 -7.221 -1.721 0 0 0 0 0 0 0 +-14.697 -7.259 -1.719 0 0 0 0 0 0 0 +-14.701 -7.318 -1.723 0 0 0 0 0 0 0 +-15.821 -7.904 -1.87 0 0 0 0 0 0 0 +-16.037 -8.075 -1.902 0 0 0 0 0 0 0 +-16.044 -8.142 -1.906 0 0 0 0 0 0 0 +-16.039 -8.203 -1.909 0 0 0 0 0 0 0 +-16.031 -8.262 -1.911 0 0 0 0 0 0 0 +-16.012 -8.316 -1.912 0 0 0 0 0 0 0 +-16.012 -8.38 -1.916 0 0 0 0 0 0 0 +-16.011 -8.412 -1.917 0 0 0 0 0 0 0 +-15.988 -8.464 -1.918 0 0 0 0 0 0 0 +-15.97 -8.519 -1.919 0 0 0 0 0 0 0 +-15.937 -8.565 -1.918 0 0 0 0 0 0 0 +-15.927 -8.625 -1.92 0 0 0 0 0 0 0 +-15.91 -8.68 -1.922 0 0 0 0 0 0 0 +-15.873 -8.725 -1.92 0 0 0 0 0 0 0 +-15.862 -8.751 -1.921 0 0 0 0 0 0 0 +-15.828 -8.797 -1.92 0 0 0 0 0 0 0 +-15.802 -8.848 -1.92 0 0 0 0 0 0 0 +-15.793 -8.908 -1.923 0 0 0 0 0 0 0 +-15.76 -8.955 -1.922 0 0 0 0 0 0 0 +-15.747 -9.013 -1.924 0 0 0 0 0 0 0 +-15.722 -9.065 -1.925 0 0 0 0 0 0 0 +-15.713 -9.092 -1.925 0 0 0 0 0 0 0 +-15.698 -9.15 -1.927 0 0 0 0 0 0 0 +-15.678 -9.204 -1.928 0 0 0 0 0 0 0 +-15.664 -9.262 -1.93 0 0 0 0 0 0 0 +-15.656 -9.324 -1.933 0 0 0 0 0 0 0 +-15.626 -9.373 -1.933 0 0 0 0 0 0 0 +-15.59 -9.418 -1.932 0 0 0 0 0 0 0 +-15.597 -9.456 -1.935 0 0 0 0 0 0 0 +-15.574 -9.509 -1.936 0 0 0 0 0 0 0 +-15.554 -9.564 -1.938 0 0 0 0 0 0 0 +-15.528 -9.615 -1.938 0 0 0 0 0 0 0 +-15.511 -9.672 -1.94 0 0 0 0 0 0 0 +-15.472 -9.715 -1.939 0 0 0 0 0 0 0 +-15.404 -9.74 -1.934 0 0 0 0 0 0 0 +-15.448 -9.802 -1.942 0 0 0 0 0 0 0 +-15.422 -9.853 -1.943 0 0 0 0 0 0 0 +-15.394 -9.904 -1.943 0 0 0 0 0 0 0 +-15.387 -9.967 -1.946 0 0 0 0 0 0 0 +-15.35 -10.012 -1.946 0 0 0 0 0 0 0 +-15.334 -10.07 -1.948 0 0 0 0 0 0 0 +-15.299 -10.116 -1.947 0 0 0 0 0 0 0 +-15.265 -10.163 -1.947 0 0 0 0 0 0 0 +-15.259 -10.194 -1.948 0 0 0 0 0 0 0 +-15.233 -10.246 -1.949 0 0 0 0 0 0 0 +-15.195 -10.29 -1.948 0 0 0 0 0 0 0 +-10.69 -7.298 -1.315 0 0 0 0 0 0 0 +-10.628 -7.304 -1.31 0 0 0 0 0 0 0 +-10.602 -7.335 -1.309 0 0 0 0 0 0 0 +-10.58 -7.37 -1.31 0 0 0 0 0 0 0 +-10.552 -7.375 -1.307 0 0 0 0 0 0 0 +-10.495 -7.384 -1.302 0 0 0 0 0 0 0 +-10.441 -7.395 -1.298 0 0 0 0 0 0 0 +-10.427 -7.435 -1.299 0 0 0 0 0 0 0 +-10.401 -7.465 -1.299 0 0 0 0 0 0 0 +-10.416 -7.526 -1.305 0 0 0 0 0 0 0 +-10.394 -7.56 -1.305 0 0 0 0 0 0 0 +-10.406 -7.594 -1.308 0 0 0 0 0 0 0 +-10.382 -7.626 -1.308 0 0 0 0 0 0 0 +-10.438 -7.718 -1.32 0 0 0 0 0 0 0 +-14.724 -10.945 -1.948 0 0 0 0 0 0 0 +-10.537 -7.894 -1.342 0 0 0 0 0 0 0 +-10.521 -7.933 -1.343 0 0 0 0 0 0 0 +-14.614 -11.079 -1.947 0 0 0 0 0 0 0 +-14.597 -11.102 -1.947 0 0 0 0 0 0 0 +-14.557 -11.144 -1.946 0 0 0 0 0 0 0 +-14.538 -11.202 -1.949 0 0 0 0 0 0 0 +-14.498 -11.244 -1.948 0 0 0 0 0 0 0 +-14.48 -11.303 -1.95 0 0 0 0 0 0 0 +-14.45 -11.353 -1.951 0 0 0 0 0 0 0 +-14.421 -11.403 -1.952 0 0 0 0 0 0 0 +-14.403 -11.426 -1.952 0 0 0 0 0 0 0 +-14.37 -11.473 -1.953 0 0 0 0 0 0 0 +-14.385 -11.56 -1.96 0 0 0 0 0 0 0 +-14.367 -11.62 -1.963 0 0 0 0 0 0 0 +-14.326 -11.661 -1.963 0 0 0 0 0 0 0 +-14.297 -11.712 -1.964 0 0 0 0 0 0 0 +-14.265 -11.761 -1.964 0 0 0 0 0 0 0 +-14.254 -11.79 -1.966 0 0 0 0 0 0 0 +-14.224 -11.841 -1.967 0 0 0 0 0 0 0 +-14.202 -11.898 -1.969 0 0 0 0 0 0 0 +-14.15 -11.93 -1.967 0 0 0 0 0 0 0 +-14.121 -11.982 -1.968 0 0 0 0 0 0 0 +-14.09 -12.031 -1.969 0 0 0 0 0 0 0 +-14.046 -12.07 -1.968 0 0 0 0 0 0 0 +-13.966 -12.041 -1.959 0 0 0 0 0 0 0 +-13.906 -12.065 -1.955 0 0 0 0 0 0 0 +-13.853 -12.095 -1.953 0 0 0 0 0 0 0 +-13.821 -12.144 -1.954 0 0 0 0 0 0 0 +-13.757 -12.165 -1.95 0 0 0 0 0 0 0 +-13.698 -12.19 -1.947 0 0 0 0 0 0 0 +-13.672 -12.243 -1.949 0 0 0 0 0 0 0 +-13.704 -12.35 -1.96 0 0 0 0 0 0 0 +-13.772 -12.45 -1.973 0 0 0 0 0 0 0 +-13.731 -12.492 -1.973 0 0 0 0 0 0 0 +-13.698 -12.54 -1.974 0 0 0 0 0 0 0 +-13.682 -12.605 -1.978 0 0 0 0 0 0 0 +-13.657 -12.661 -1.98 0 0 0 0 0 0 0 +-13.643 -12.728 -1.984 0 0 0 0 0 0 0 +-13.617 -12.785 -1.987 0 0 0 0 0 0 0 +-13.592 -12.801 -1.986 0 0 0 0 0 0 0 +-13.567 -12.858 -1.988 0 0 0 0 0 0 0 +-13.541 -12.915 -1.991 0 0 0 0 0 0 0 +-13.518 -12.974 -1.993 0 0 0 0 0 0 0 +-13.508 -13.046 -1.999 0 0 0 0 0 0 0 +-13.466 -13.087 -1.998 0 0 0 0 0 0 0 +-13.457 -13.161 -2.004 0 0 0 0 0 0 0 +-13.431 -13.177 -2.003 0 0 0 0 0 0 0 +-13.397 -13.226 -2.004 0 0 0 0 0 0 0 +-13.371 -13.284 -2.006 0 0 0 0 0 0 0 +-13.343 -13.339 -2.009 0 0 0 0 0 0 0 +-13.329 -13.409 -2.013 0 0 0 0 0 0 0 +-13.327 -13.492 -2.02 0 0 0 0 0 0 0 +-13.324 -13.574 -2.027 0 0 0 0 0 0 0 +-13.35 -13.643 -2.035 0 0 0 0 0 0 0 +-13.35 -13.729 -2.042 0 0 0 0 0 0 0 +-13.345 -13.811 -2.048 0 0 0 0 0 0 0 +-13.343 -13.895 -2.055 0 0 0 0 0 0 0 +-13.346 -13.986 -2.063 0 0 0 0 0 0 0 +-13.35 -14.078 -2.071 0 0 0 0 0 0 0 +-13.345 -14.162 -2.078 0 0 0 0 0 0 0 +-13.36 -14.222 -2.084 0 0 0 0 0 0 0 +-13.361 -14.313 -2.092 0 0 0 0 0 0 0 +-13.351 -14.393 -2.098 0 0 0 0 0 0 0 +-13.322 -14.452 -2.101 0 0 0 0 0 0 0 +-13.304 -14.523 -2.106 0 0 0 0 0 0 0 +-13.269 -14.577 -2.108 0 0 0 0 0 0 0 +-13.2 -14.593 -2.104 0 0 0 0 0 0 0 +-13.151 -14.585 -2.099 0 0 0 0 0 0 0 +-13.099 -14.62 -2.098 0 0 0 0 0 0 0 +-13.03 -14.634 -2.094 0 0 0 0 0 0 0 +-12.966 -14.656 -2.091 0 0 0 0 0 0 0 +-12.903 -14.677 -2.088 0 0 0 0 0 0 0 +-12.84 -14.698 -2.085 0 0 0 0 0 0 0 +-12.777 -14.719 -2.082 0 0 0 0 0 0 0 +-12.741 -14.724 -2.079 0 0 0 0 0 0 0 +-12.668 -14.734 -2.075 0 0 0 0 0 0 0 +-12.61 -14.76 -2.073 0 0 0 0 0 0 0 +-12.532 -14.762 -2.067 0 0 0 0 0 0 0 +-12.464 -14.775 -2.063 0 0 0 0 0 0 0 +-12.379 -14.769 -2.056 0 0 0 0 0 0 0 +-12.292 -14.759 -2.049 0 0 0 0 0 0 0 +-12.244 -14.749 -2.044 0 0 0 0 0 0 0 +-12.166 -14.749 -2.038 0 0 0 0 0 0 0 +-12.087 -14.747 -2.032 0 0 0 0 0 0 0 +-12.004 -14.741 -2.026 0 0 0 0 0 0 0 +-11.929 -14.743 -2.02 0 0 0 0 0 0 0 +-11.866 -14.76 -2.017 0 0 0 0 0 0 0 +-11.788 -14.757 -2.011 0 0 0 0 0 0 0 +-11.753 -14.762 -2.009 0 0 0 0 0 0 0 +-11.696 -14.784 -2.007 0 0 0 0 0 0 0 +-11.622 -14.787 -2.002 0 0 0 0 0 0 0 +-11.557 -14.8 -1.998 0 0 0 0 0 0 0 +-11.499 -14.82 -1.996 0 0 0 0 0 0 0 +-11.435 -14.834 -1.993 0 0 0 0 0 0 0 +-11.368 -14.843 -1.989 0 0 0 0 0 0 0 +-11.318 -14.827 -1.984 0 0 0 0 0 0 0 +-11.257 -14.843 -1.981 0 0 0 0 0 0 0 +-11.193 -14.856 -1.978 0 0 0 0 0 0 0 +-11.112 -14.845 -1.971 0 0 0 0 0 0 0 +-11.048 -14.856 -1.967 0 0 0 0 0 0 0 +-10.994 -14.881 -1.966 0 0 0 0 0 0 0 +-10.947 -14.916 -1.966 0 0 0 0 0 0 0 +-10.919 -14.926 -1.965 0 0 0 0 0 0 0 +-10.861 -14.946 -1.963 0 0 0 0 0 0 0 +-10.81 -14.974 -1.962 0 0 0 0 0 0 0 +-10.744 -14.982 -1.958 0 0 0 0 0 0 0 +-10.696 -15.014 -1.958 0 0 0 0 0 0 0 +-10.637 -15.031 -1.956 0 0 0 0 0 0 0 +-10.59 -15.065 -1.956 0 0 0 0 0 0 0 +-10.561 -15.075 -1.955 0 0 0 0 0 0 0 +-10.509 -15.101 -1.954 0 0 0 0 0 0 0 +-10.455 -15.125 -1.953 0 0 0 0 0 0 0 +-10.409 -15.159 -1.953 0 0 0 0 0 0 0 +-10.355 -15.183 -1.952 0 0 0 0 0 0 0 +-10.307 -15.214 -1.951 0 0 0 0 0 0 0 +-10.257 -15.243 -1.951 0 0 0 0 0 0 0 +-10.205 -15.27 -1.95 0 0 0 0 0 0 0 +-10.169 -15.268 -1.948 0 0 0 0 0 0 0 +-10.12 -15.298 -1.947 0 0 0 0 0 0 0 +-10.061 -15.314 -1.945 0 0 0 0 0 0 0 +-10.008 -15.338 -1.944 0 0 0 0 0 0 0 +-9.956 -15.363 -1.943 0 0 0 0 0 0 0 +-9.896 -15.376 -1.941 0 0 0 0 0 0 0 +-9.837 -15.39 -1.938 0 0 0 0 0 0 0 +-9.806 -15.396 -1.937 0 0 0 0 0 0 0 +-9.743 -15.403 -1.934 0 0 0 0 0 0 0 +-9.686 -15.42 -1.932 0 0 0 0 0 0 0 +-9.629 -15.437 -1.93 0 0 0 0 0 0 0 +-9.572 -15.454 -1.928 0 0 0 0 0 0 0 +-9.522 -15.482 -1.928 0 0 0 0 0 0 0 +-9.468 -15.503 -1.927 0 0 0 0 0 0 0 +-9.439 -15.51 -1.926 0 0 0 0 0 0 0 +-9.374 -15.512 -1.922 0 0 0 0 0 0 0 +-9.322 -15.536 -1.921 0 0 0 0 0 0 0 +-9.264 -15.55 -1.919 0 0 0 0 0 0 0 +-9.2 -15.554 -1.916 0 0 0 0 0 0 0 +-9.152 -15.584 -1.916 0 0 0 0 0 0 0 +-9.087 -15.585 -1.912 0 0 0 0 0 0 0 +-9.068 -15.61 -1.913 0 0 0 0 0 0 0 +-9.02 -15.64 -1.914 0 0 0 0 0 0 0 +-8.95 -15.632 -1.909 0 0 0 0 0 0 0 +-8.891 -15.643 -1.906 0 0 0 0 0 0 0 +-8.845 -15.676 -1.907 0 0 0 0 0 0 0 +-8.786 -15.686 -1.905 0 0 0 0 0 0 0 +-8.741 -15.723 -1.906 0 0 0 0 0 0 0 +-8.716 -15.735 -1.906 0 0 0 0 0 0 0 +-8.665 -15.76 -1.906 0 0 0 0 0 0 0 +-8.608 -15.773 -1.904 0 0 0 0 0 0 0 +-8.558 -15.799 -1.903 0 0 0 0 0 0 0 +-8.497 -15.804 -1.901 0 0 0 0 0 0 0 +-8.443 -15.824 -1.9 0 0 0 0 0 0 0 +-8.39 -15.843 -1.899 0 0 0 0 0 0 0 +-8.355 -15.837 -1.896 0 0 0 0 0 0 0 +-8.307 -15.867 -1.897 0 0 0 0 0 0 0 +-8.266 -15.911 -1.899 0 0 0 0 0 0 0 +-8.144 -15.92 -1.893 0 0 0 0 0 0 0 +-8.092 -15.942 -1.893 0 0 0 0 0 0 0 +-8.042 -15.967 -1.893 0 0 0 0 0 0 0 +-8.021 -15.987 -1.894 0 0 0 0 0 0 0 +-7.957 -15.985 -1.89 0 0 0 0 0 0 0 +-7.893 -15.982 -1.887 0 0 0 0 0 0 0 +-7.84 -16.001 -1.886 0 0 0 0 0 0 0 +-7.786 -16.018 -1.885 0 0 0 0 0 0 0 +-7.722 -16.014 -1.881 0 0 0 0 0 0 0 +-7.673 -16.042 -1.882 0 0 0 0 0 0 0 +-7.64 -16.038 -1.88 0 0 0 0 0 0 0 +-7.585 -16.051 -1.878 0 0 0 0 0 0 0 +-7.528 -16.062 -1.877 0 0 0 0 0 0 0 +-7.472 -16.073 -1.875 0 0 0 0 0 0 0 +-7.415 -16.084 -1.873 0 0 0 0 0 0 0 +-7.368 -16.114 -1.874 0 0 0 0 0 0 0 +-7.313 -16.128 -1.873 0 0 0 0 0 0 0 +-7.287 -16.138 -1.873 0 0 0 0 0 0 0 +-7.236 -16.159 -1.873 0 0 0 0 0 0 0 +-7.182 -16.176 -1.872 0 0 0 0 0 0 0 +-7.132 -16.201 -1.872 0 0 0 0 0 0 0 +-7.071 -16.199 -1.869 0 0 0 0 0 0 0 +-7.027 -16.238 -1.871 0 0 0 0 0 0 0 +-6.975 -16.256 -1.871 0 0 0 0 0 0 0 +-6.951 -16.271 -1.871 0 0 0 0 0 0 0 +-6.893 -16.278 -1.87 0 0 0 0 0 0 0 +-6.841 -16.298 -1.869 0 0 0 0 0 0 0 +-6.802 -16.348 -1.873 0 0 0 0 0 0 0 +-6.785 -16.45 -1.883 0 0 0 0 0 0 0 +-6.685 -16.354 -1.868 0 0 0 0 0 0 0 +-6.611 -16.322 -1.862 0 0 0 0 0 0 0 +-6.58 -16.317 -1.86 0 0 0 0 0 0 0 +-6.527 -16.334 -1.859 0 0 0 0 0 0 0 +-6.466 -16.331 -1.856 0 0 0 0 0 0 0 +-6.418 -16.36 -1.857 0 0 0 0 0 0 0 +-6.363 -16.369 -1.856 0 0 0 0 0 0 0 +-6.307 -16.378 -1.855 0 0 0 0 0 0 0 +-6.258 -16.403 -1.855 0 0 0 0 0 0 0 +-6.224 -16.392 -1.853 0 0 0 0 0 0 0 +-6.17 -16.405 -1.852 0 0 0 0 0 0 0 +-6.118 -16.424 -1.852 0 0 0 0 0 0 0 +-6.064 -16.437 -1.851 0 0 0 0 0 0 0 +-6.009 -16.445 -1.85 0 0 0 0 0 0 0 +-5.963 -16.481 -1.852 0 0 0 0 0 0 0 +-5.897 -16.46 -1.847 0 0 0 0 0 0 0 +-5.858 -16.514 -1.851 0 0 0 0 0 0 0 +-5.819 -16.486 -1.847 0 0 0 0 0 0 0 +-5.764 -16.497 -1.846 0 0 0 0 0 0 0 +-5.72 -16.537 -1.849 0 0 0 0 0 0 0 +-5.663 -16.538 -1.846 0 0 0 0 0 0 0 +-5.612 -16.56 -1.847 0 0 0 0 0 0 0 +-5.555 -16.562 -1.845 0 0 0 0 0 0 0 +-5.534 -16.674 -1.857 0 0 0 0 0 0 0 +-5.455 -16.522 -1.837 0 0 0 0 0 0 0 +-5.417 -16.583 -1.842 0 0 0 0 0 0 0 +-5.369 -16.613 -1.844 0 0 0 0 0 0 0 +-5.324 -16.652 -1.847 0 0 0 0 0 0 0 +-5.293 -16.735 -1.855 0 0 0 0 0 0 0 +-5.244 -16.763 -1.856 0 0 0 0 0 0 0 +-5.205 -16.918 -1.872 0 0 0 0 0 0 0 +-5.092 -16.737 -1.848 0 0 0 0 0 0 0 +-5.032 -16.73 -1.845 0 0 0 0 0 0 0 +-4.973 -16.725 -1.843 0 0 0 0 0 0 0 +-4.919 -16.733 -1.842 0 0 0 0 0 0 0 +-4.863 -16.737 -1.84 0 0 0 0 0 0 0 +-4.808 -16.745 -1.84 0 0 0 0 0 0 0 +-4.784 -16.762 -1.841 0 0 0 0 0 0 0 +-4.733 -16.782 -1.841 0 0 0 0 0 0 0 +-4.678 -16.787 -1.84 0 0 0 0 0 0 0 +-4.625 -16.802 -1.84 0 0 0 0 0 0 0 +-4.574 -16.822 -1.841 0 0 0 0 0 0 0 +-4.519 -16.831 -1.84 0 0 0 0 0 0 0 +-4.467 -16.847 -1.84 0 0 0 0 0 0 0 +-4.437 -16.84 -1.839 0 0 0 0 0 0 0 +-4.388 -16.868 -1.84 0 0 0 0 0 0 0 +-4.333 -16.876 -1.84 0 0 0 0 0 0 0 +-4.28 -16.887 -1.84 0 0 0 0 0 0 0 +-4.228 -16.906 -1.84 0 0 0 0 0 0 0 +-4.177 -16.927 -1.841 0 0 0 0 0 0 0 +-4.122 -16.933 -1.84 0 0 0 0 0 0 0 +-4.095 -16.937 -1.84 0 0 0 0 0 0 0 +-4.048 -16.979 -1.843 0 0 0 0 0 0 0 +-4.002 -17.022 -1.847 0 0 0 0 0 0 0 +-3.944 -17.016 -1.845 0 0 0 0 0 0 0 +-3.895 -17.045 -1.847 0 0 0 0 0 0 0 +-3.849 -17.09 -1.851 0 0 0 0 0 0 0 +-3.777 -17.021 -1.841 0 0 0 0 0 0 0 +-3.629 -16.984 -1.833 0 0 0 0 0 0 0 +-3.561 -16.927 -1.825 0 0 0 0 0 0 0 +-3.496 -16.88 -1.818 0 0 0 0 0 0 0 +-3.431 -16.835 -1.811 0 0 0 0 0 0 0 +-3.379 -16.851 -1.812 0 0 0 0 0 0 0 +-3.352 -16.851 -1.811 0 0 0 0 0 0 0 +-3.299 -16.861 -1.811 0 0 0 0 0 0 0 +-3.242 -16.854 -1.809 0 0 0 0 0 0 0 +-3.185 -16.841 -1.807 0 0 0 0 0 0 0 +-3.132 -16.848 -1.806 0 0 0 0 0 0 0 +-3.078 -16.852 -1.806 0 0 0 0 0 0 0 +-3.021 -16.844 -1.803 0 0 0 0 0 0 0 +-2.995 -16.851 -1.804 0 0 0 0 0 0 0 +-2.941 -16.851 -1.803 0 0 0 0 0 0 0 +-2.884 -16.838 -1.8 0 0 0 0 0 0 0 +-2.782 -16.88 -1.803 0 0 0 0 0 0 0 +-2.725 -16.867 -1.8 0 0 0 0 0 0 0 +-2.708 -17.099 -1.827 0 0 0 0 0 0 0 +-2.645 -16.875 -1.8 0 0 0 0 0 0 0 +-2.591 -16.878 -1.799 0 0 0 0 0 0 0 +-2.538 -16.886 -1.799 0 0 0 0 0 0 0 +-2.487 -16.905 -1.8 0 0 0 0 0 0 0 +-2.431 -16.892 -1.798 0 0 0 0 0 0 0 +-2.381 -16.921 -1.8 0 0 0 0 0 0 0 +-2.328 -16.934 -1.801 0 0 0 0 0 0 0 +-2.303 -16.944 -1.802 0 0 0 0 0 0 0 +-2.25 -16.959 -1.803 0 0 0 0 0 0 0 +-2.2 -16.987 -1.805 0 0 0 0 0 0 0 +-2.149 -17.016 -1.808 0 0 0 0 0 0 0 +-2.099 -17.044 -1.81 0 0 0 0 0 0 0 +-2.049 -17.084 -1.814 0 0 0 0 0 0 0 +-1.997 -17.106 -1.816 0 0 0 0 0 0 0 +-1.974 -17.137 -1.82 0 0 0 0 0 0 0 +-1.919 -17.135 -1.819 0 0 0 0 0 0 0 +-1.868 -17.165 -1.821 0 0 0 0 0 0 0 +-1.815 -17.182 -1.823 0 0 0 0 0 0 0 +-1.762 -17.194 -1.823 0 0 0 0 0 0 0 +-1.709 -17.209 -1.825 0 0 0 0 0 0 0 +-1.654 -17.205 -1.823 0 0 0 0 0 0 0 +-1.626 -17.199 -1.823 0 0 0 0 0 0 0 +-1.571 -17.2 -1.822 0 0 0 0 0 0 0 +-1.517 -17.199 -1.821 0 0 0 0 0 0 0 +-1.462 -17.192 -1.82 0 0 0 0 0 0 0 +-1.407 -17.187 -1.819 0 0 0 0 0 0 0 +-1.351 -17.169 -1.816 0 0 0 0 0 0 0 +-1.295 -17.142 -1.813 0 0 0 0 0 0 0 +-1.267 -17.138 -1.812 0 0 0 0 0 0 0 +-1.214 -17.148 -1.813 0 0 0 0 0 0 0 +-1.161 -17.163 -1.814 0 0 0 0 0 0 0 +-1.109 -17.199 -1.818 0 0 0 0 0 0 0 +-1.057 -17.23 -1.821 0 0 0 0 0 0 0 +-1.005 -17.267 -1.825 0 0 0 0 0 0 0 +-0.951 -17.286 -1.827 0 0 0 0 0 0 0 +-0.925 -17.309 -1.829 0 0 0 0 0 0 0 +-0.873 -17.346 -1.833 0 0 0 0 0 0 0 +-0.817 -17.322 -1.83 0 0 0 0 0 0 0 +-0.764 -17.347 -1.833 0 0 0 0 0 0 0 +-0.71 -17.369 -1.835 0 0 0 0 0 0 0 +-0.656 -17.393 -1.838 0 0 0 0 0 0 0 +-0.602 -17.415 -1.84 0 0 0 0 0 0 0 +-0.575 -17.427 -1.841 0 0 0 0 0 0 0 +-0.521 -17.437 -1.842 0 0 0 0 0 0 0 +-0.466 -17.451 -1.844 0 0 0 0 0 0 0 +-0.411 -17.452 -1.844 0 0 0 0 0 0 0 +-0.357 -17.451 -1.843 0 0 0 0 0 0 0 +-0.302 -17.462 -1.845 0 0 0 0 0 0 0 +-0.247 -17.463 -1.845 0 0 0 0 0 0 0 +-0.22 -17.477 -1.846 0 0 0 0 0 0 0 +-0.165 -17.482 -1.847 0 0 0 0 0 0 0 +-0.11 -17.506 -1.85 0 0 0 0 0 0 0 +-0.055 -17.485 -1.847 0 0 0 0 0 0 0 +-0 -17.495 -1.848 0 0 0 0 0 0 0 +0.055 -17.493 -1.848 0 0 0 0 0 0 0 +0.11 -17.512 -1.85 0 0 0 0 0 0 0 +0.165 -17.536 -1.853 0 0 0 0 0 0 0 +0.193 -17.563 -1.856 0 0 0 0 0 0 0 +0.249 -17.614 -1.862 0 0 0 0 0 0 0 +0.304 -17.631 -1.864 0 0 0 0 0 0 0 +0.36 -17.656 -1.867 0 0 0 0 0 0 0 +0.416 -17.664 -1.869 0 0 0 0 0 0 0 +0.473 -17.725 -1.876 0 0 0 0 0 0 0 +0.528 -17.717 -1.875 0 0 0 0 0 0 0 +0.558 -17.764 -1.881 0 0 0 0 0 0 0 +0.66 -17.518 -1.852 0 0 0 0 0 0 0 +0.723 -17.718 -1.876 0 0 0 0 0 0 0 +0.77 -17.501 -1.851 0 0 0 0 0 0 0 +0.817 -17.314 -1.829 0 0 0 0 0 0 0 +0.836 -17.144 -1.81 0 0 0 0 0 0 0 +0.88 -16.959 -1.788 0 0 0 0 0 0 0 +0.924 -16.78 -1.767 0 0 0 0 0 0 0 +0.968 -16.626 -1.75 0 0 0 0 0 0 0 +1.015 -16.536 -1.74 0 0 0 0 0 0 0 +1.067 -16.525 -1.739 0 0 0 0 0 0 0 +1.116 -16.481 -1.734 0 0 0 0 0 0 0 +1.169 -16.494 -1.736 0 0 0 0 0 0 0 +1.195 -16.492 -1.736 0 0 0 0 0 0 0 +1.246 -16.484 -1.735 0 0 0 0 0 0 0 +1.298 -16.482 -1.736 0 0 0 0 0 0 0 +1.35 -16.474 -1.735 0 0 0 0 0 0 0 +1.402 -16.476 -1.736 0 0 0 0 0 0 0 +1.454 -16.477 -1.737 0 0 0 0 0 0 0 +1.506 -16.476 -1.737 0 0 0 0 0 0 0 +1.531 -16.462 -1.736 0 0 0 0 0 0 0 +1.581 -16.435 -1.733 0 0 0 0 0 0 0 +1.632 -16.424 -1.732 0 0 0 0 0 0 0 +1.68 -16.388 -1.729 0 0 0 0 0 0 0 +1.734 -16.4 -1.731 0 0 0 0 0 0 0 +1.782 -16.369 -1.728 0 0 0 0 0 0 0 +1.828 -16.314 -1.722 0 0 0 0 0 0 0 +1.853 -16.305 -1.721 0 0 0 0 0 0 0 +1.902 -16.277 -1.719 0 0 0 0 0 0 0 +1.95 -16.244 -1.715 0 0 0 0 0 0 0 +1.999 -16.222 -1.714 0 0 0 0 0 0 0 +2.045 -16.178 -1.709 0 0 0 0 0 0 0 +2.094 -16.154 -1.707 0 0 0 0 0 0 0 +2.14 -16.112 -1.703 0 0 0 0 0 0 0 +2.161 -16.073 -1.699 0 0 0 0 0 0 0 +2.21 -16.06 -1.698 0 0 0 0 0 0 0 +2.258 -16.033 -1.696 0 0 0 0 0 0 0 +2.308 -16.024 -1.695 0 0 0 0 0 0 0 +2.357 -16.007 -1.694 0 0 0 0 0 0 0 +2.404 -15.98 -1.692 0 0 0 0 0 0 0 +2.454 -15.972 -1.692 0 0 0 0 0 0 0 +2.473 -15.929 -1.687 0 0 0 0 0 0 0 +2.523 -15.915 -1.687 0 0 0 0 0 0 0 +2.568 -15.876 -1.683 0 0 0 0 0 0 0 +2.622 -15.893 -1.686 0 0 0 0 0 0 0 +2.667 -15.86 -1.683 0 0 0 0 0 0 0 +2.717 -15.851 -1.683 0 0 0 0 0 0 0 +2.763 -15.823 -1.68 0 0 0 0 0 0 0 +2.79 -15.828 -1.682 0 0 0 0 0 0 0 +2.839 -15.816 -1.681 0 0 0 0 0 0 0 +2.88 -15.758 -1.675 0 0 0 0 0 0 0 +2.929 -15.747 -1.675 0 0 0 0 0 0 0 +2.978 -15.733 -1.675 0 0 0 0 0 0 0 +3.024 -15.706 -1.673 0 0 0 0 0 0 0 +3.068 -15.67 -1.669 0 0 0 0 0 0 0 +3.093 -15.667 -1.67 0 0 0 0 0 0 0 +1.306 -6.432 -0.569 0 0 0 0 0 0 0 +1.323 -6.41 -0.567 0 0 0 0 0 0 0 +1.337 -6.377 -0.563 0 0 0 0 0 0 0 +1.354 -6.359 -0.561 0 0 0 0 0 0 0 +1.376 -6.364 -0.563 0 0 0 0 0 0 0 +1.397 -6.362 -0.563 0 0 0 0 0 0 0 +1.406 -6.356 -0.562 0 0 0 0 0 0 0 +1.43 -6.369 -0.564 0 0 0 0 0 0 0 +1.453 -6.38 -0.566 0 0 0 0 0 0 0 +1.476 -6.389 -0.568 0 0 0 0 0 0 0 +1.5 -6.4 -0.57 0 0 0 0 0 0 0 +1.521 -6.401 -0.571 0 0 0 0 0 0 0 +1.52 -6.307 -0.56 0 0 0 0 0 0 0 +1.561 -6.432 -0.575 0 0 0 0 0 0 0 +1.59 -6.464 -0.58 0 0 0 0 0 0 0 +1.605 -6.438 -0.577 0 0 0 0 0 0 0 +3.882 -15.308 -1.649 0 0 0 0 0 0 0 +3.922 -15.267 -1.645 0 0 0 0 0 0 0 +3.968 -15.247 -1.644 0 0 0 0 0 0 0 +3.986 -15.217 -1.642 0 0 0 0 0 0 0 +4.028 -15.182 -1.639 0 0 0 0 0 0 0 +4.077 -15.173 -1.639 0 0 0 0 0 0 0 +4.119 -15.143 -1.637 0 0 0 0 0 0 0 +4.161 -15.108 -1.635 0 0 0 0 0 0 0 +4.205 -15.082 -1.633 0 0 0 0 0 0 0 +4.25 -15.059 -1.632 0 0 0 0 0 0 0 +4.268 -15.033 -1.63 0 0 0 0 0 0 0 +4.316 -15.024 -1.63 0 0 0 0 0 0 0 +4.359 -14.995 -1.628 0 0 0 0 0 0 0 +4.4 -14.96 -1.626 0 0 0 0 0 0 0 +4.444 -14.935 -1.624 0 0 0 0 0 0 0 +4.486 -14.907 -1.623 0 0 0 0 0 0 0 +4.529 -14.88 -1.621 0 0 0 0 0 0 0 +4.553 -14.875 -1.621 0 0 0 0 0 0 0 +4.597 -14.851 -1.62 0 0 0 0 0 0 0 +4.642 -14.832 -1.62 0 0 0 0 0 0 0 +4.688 -14.814 -1.619 0 0 0 0 0 0 0 +4.735 -14.801 -1.619 0 0 0 0 0 0 0 +4.783 -14.792 -1.62 0 0 0 0 0 0 0 +4.824 -14.758 -1.618 0 0 0 0 0 0 0 +4.845 -14.746 -1.617 0 0 0 0 0 0 0 +4.884 -14.707 -1.614 0 0 0 0 0 0 0 +4.922 -14.667 -1.611 0 0 0 0 0 0 0 +4.977 -14.677 -1.614 0 0 0 0 0 0 0 +5.02 -14.654 -1.614 0 0 0 0 0 0 0 +5.062 -14.627 -1.612 0 0 0 0 0 0 0 +5.106 -14.606 -1.611 0 0 0 0 0 0 0 +3.697 -10.5 -1.103 0 0 0 0 0 0 0 +3.725 -10.473 -1.102 0 0 0 0 0 0 0 +3.76 -10.467 -1.102 0 0 0 0 0 0 0 +3.752 -10.341 -1.088 0 0 0 0 0 0 0 +5.357 -14.513 -1.611 0 0 0 0 0 0 0 +5.403 -14.496 -1.611 0 0 0 0 0 0 0 +5.427 -14.492 -1.612 0 0 0 0 0 0 0 +5.462 -14.447 -1.608 0 0 0 0 0 0 0 +5.132 -13.441 -1.484 0 0 0 0 0 0 0 +5.151 -13.364 -1.477 0 0 0 0 0 0 0 +5.173 -13.298 -1.471 0 0 0 0 0 0 0 +5.208 -13.263 -1.468 0 0 0 0 0 0 0 +5.239 -13.219 -1.465 0 0 0 0 0 0 0 +5.256 -13.201 -1.464 0 0 0 0 0 0 0 +5.291 -13.17 -1.462 0 0 0 0 0 0 0 +5.323 -13.129 -1.459 0 0 0 0 0 0 0 +5.357 -13.094 -1.456 0 0 0 0 0 0 0 +5.392 -13.062 -1.455 0 0 0 0 0 0 0 +5.425 -13.027 -1.452 0 0 0 0 0 0 0 +5.459 -12.994 -1.45 0 0 0 0 0 0 0 +5.475 -12.974 -1.449 0 0 0 0 0 0 0 +5.506 -12.935 -1.446 0 0 0 0 0 0 0 +5.538 -12.895 -1.443 0 0 0 0 0 0 0 +5.573 -12.867 -1.442 0 0 0 0 0 0 0 +5.611 -12.842 -1.441 0 0 0 0 0 0 0 +5.629 -12.774 -1.434 0 0 0 0 0 0 0 +5.671 -12.761 -1.435 0 0 0 0 0 0 0 +5.687 -12.743 -1.434 0 0 0 0 0 0 0 +5.721 -12.711 -1.432 0 0 0 0 0 0 0 +5.752 -12.675 -1.43 0 0 0 0 0 0 0 +5.754 -12.572 -1.419 0 0 0 0 0 0 0 +5.773 -12.51 -1.413 0 0 0 0 0 0 0 +5.847 -12.566 -1.423 0 0 0 0 0 0 0 +5.887 -12.549 -1.423 0 0 0 0 0 0 0 +5.902 -12.531 -1.422 0 0 0 0 0 0 0 +5.944 -12.518 -1.422 0 0 0 0 0 0 0 +5.904 -12.332 -1.401 0 0 0 0 0 0 0 +5.914 -12.255 -1.393 0 0 0 0 0 0 0 +6.013 -12.359 -1.409 0 0 0 0 0 0 0 +6.071 -12.381 -1.415 0 0 0 0 0 0 0 +6.108 -12.357 -1.414 0 0 0 0 0 0 0 +6.117 -12.328 -1.411 0 0 0 0 0 0 0 +6.159 -12.314 -1.412 0 0 0 0 0 0 0 +6.151 -12.202 -1.4 0 0 0 0 0 0 0 +6.152 -12.108 -1.39 0 0 0 0 0 0 0 +6.257 -12.222 -1.408 0 0 0 0 0 0 0 +6.285 -12.181 -1.405 0 0 0 0 0 0 0 +6.286 -12.088 -1.395 0 0 0 0 0 0 0 +6.295 -12.059 -1.393 0 0 0 0 0 0 0 +6.325 -12.025 -1.391 0 0 0 0 0 0 0 +6.357 -11.995 -1.389 0 0 0 0 0 0 0 +6.432 -12.045 -1.399 0 0 0 0 0 0 0 +6.477 -12.037 -1.4 0 0 0 0 0 0 0 +6.504 -11.997 -1.398 0 0 0 0 0 0 0 +6.542 -11.977 -1.398 0 0 0 0 0 0 0 +6.561 -11.968 -1.398 0 0 0 0 0 0 0 +6.577 -11.908 -1.393 0 0 0 0 0 0 0 +6.544 -11.76 -1.376 0 0 0 0 0 0 0 +6.658 -11.878 -1.394 0 0 0 0 0 0 0 +6.699 -11.862 -1.395 0 0 0 0 0 0 0 +6.745 -11.857 -1.397 0 0 0 0 0 0 0 +6.773 -11.82 -1.395 0 0 0 0 0 0 0 +6.787 -11.801 -1.394 0 0 0 0 0 0 0 +6.79 -11.721 -1.386 0 0 0 0 0 0 0 +6.858 -11.753 -1.393 0 0 0 0 0 0 0 +6.795 -11.561 -1.37 0 0 0 0 0 0 0 +6.887 -11.634 -1.383 0 0 0 0 0 0 0 +6.948 -11.653 -1.388 0 0 0 0 0 0 0 +7.002 -11.66 -1.392 0 0 0 0 0 0 0 +6.846 -11.36 -1.353 0 0 0 0 0 0 0 +7.115 -11.641 -1.397 0 0 0 0 0 0 0 +7.165 -11.64 -1.4 0 0 0 0 0 0 0 +7.208 -11.628 -1.402 0 0 0 0 0 0 0 +7.164 -11.477 -1.384 0 0 0 0 0 0 0 +7.055 -11.222 -1.352 0 0 0 0 0 0 0 +7.15 -11.334 -1.369 0 0 0 0 0 0 0 +7.164 -11.278 -1.364 0 0 0 0 0 0 0 +7.273 -11.371 -1.38 0 0 0 0 0 0 0 +7.164 -11.122 -1.349 0 0 0 0 0 0 0 +7.299 -11.255 -1.371 0 0 0 0 0 0 0 +7.392 -11.32 -1.383 0 0 0 0 0 0 0 +7.339 -11.162 -1.364 0 0 0 0 0 0 0 +7.338 -11.084 -1.356 0 0 0 0 0 0 0 +7.374 -11.101 -1.36 0 0 0 0 0 0 0 +7.369 -11.018 -1.352 0 0 0 0 0 0 0 +7.423 -11.023 -1.356 0 0 0 0 0 0 0 +7.477 -11.029 -1.36 0 0 0 0 0 0 0 +7.558 -11.073 -1.37 0 0 0 0 0 0 0 +7.474 -10.876 -1.345 0 0 0 0 0 0 0 +7.599 -10.984 -1.364 0 0 0 0 0 0 0 +7.594 -10.94 -1.359 0 0 0 0 0 0 0 +7.62 -10.905 -1.358 0 0 0 0 0 0 0 +7.618 -10.828 -1.35 0 0 0 0 0 0 0 +7.747 -10.939 -1.369 0 0 0 0 0 0 0 +7.743 -10.861 -1.362 0 0 0 0 0 0 0 +7.666 -10.682 -1.339 0 0 0 0 0 0 0 +7.741 -10.751 -1.351 0 0 0 0 0 0 0 +7.799 -10.76 -1.356 0 0 0 0 0 0 0 +7.828 -10.729 -1.355 0 0 0 0 0 0 0 +7.827 -10.656 -1.348 0 0 0 0 0 0 0 +7.919 -10.712 -1.36 0 0 0 0 0 0 0 +7.936 -10.664 -1.356 0 0 0 0 0 0 0 +7.925 -10.579 -1.348 0 0 0 0 0 0 0 +7.922 -10.541 -1.344 0 0 0 0 0 0 0 +8.011 -10.591 -1.355 0 0 0 0 0 0 0 +7.969 -10.466 -1.34 0 0 0 0 0 0 0 +8.052 -10.507 -1.35 0 0 0 0 0 0 0 +8.07 -10.461 -1.347 0 0 0 0 0 0 0 +8.138 -10.481 -1.354 0 0 0 0 0 0 0 +8.121 -10.391 -1.344 0 0 0 0 0 0 0 +8.158 -10.405 -1.348 0 0 0 0 0 0 0 +8.157 -10.337 -1.342 0 0 0 0 0 0 0 +8.199 -10.324 -1.344 0 0 0 0 0 0 0 +8.291 -10.373 -1.355 0 0 0 0 0 0 0 +8.29 -10.305 -1.348 0 0 0 0 0 0 0 +8.334 -10.293 -1.351 0 0 0 0 0 0 0 +8.386 -10.291 -1.354 0 0 0 0 0 0 0 +8.16 -9.948 -1.306 0 0 0 0 0 0 0 +8.455 -10.276 -1.358 0 0 0 0 0 0 0 +8.487 -10.25 -1.358 0 0 0 0 0 0 0 +8.485 -10.182 -1.352 0 0 0 0 0 0 0 +8.433 -10.054 -1.336 0 0 0 0 0 0 0 +8.452 -10.012 -1.334 0 0 0 0 0 0 0 +8.432 -9.925 -1.325 0 0 0 0 0 0 0 +8.476 -9.914 -1.327 0 0 0 0 0 0 0 +8.505 -9.917 -1.33 0 0 0 0 0 0 0 +8.516 -9.866 -1.326 0 0 0 0 0 0 0 +8.629 -9.934 -1.341 0 0 0 0 0 0 0 +8.614 -9.854 -1.332 0 0 0 0 0 0 0 +8.436 -9.588 -1.295 0 0 0 0 0 0 0 +8.455 -9.55 -1.293 0 0 0 0 0 0 0 +8.469 -9.505 -1.291 0 0 0 0 0 0 0 +8.523 -9.535 -1.297 0 0 0 0 0 0 0 +8.537 -9.491 -1.295 0 0 0 0 0 0 0 +8.695 -9.607 -1.317 0 0 0 0 0 0 0 +8.563 -9.4 -1.289 0 0 0 0 0 0 0 +8.659 -9.446 -1.3 0 0 0 0 0 0 0 +8.689 -9.419 -1.3 0 0 0 0 0 0 0 +8.679 -9.379 -1.296 0 0 0 0 0 0 0 +8.798 -9.448 -1.312 0 0 0 0 0 0 0 +8.76 -9.348 -1.3 0 0 0 0 0 0 0 +8.902 -9.44 -1.319 0 0 0 0 0 0 0 +8.972 -9.456 -1.326 0 0 0 0 0 0 0 +8.99 -9.414 -1.324 0 0 0 0 0 0 0 +9.043 -9.41 -1.328 0 0 0 0 0 0 0 +9.118 -9.429 -1.336 0 0 0 0 0 0 0 +9.083 -9.363 -1.327 0 0 0 0 0 0 0 +9.042 -9.262 -1.315 0 0 0 0 0 0 0 +8.968 -9.129 -1.298 0 0 0 0 0 0 0 +9.035 -9.14 -1.305 0 0 0 0 0 0 0 +9.109 -9.157 -1.312 0 0 0 0 0 0 0 +9.212 -9.203 -1.325 0 0 0 0 0 0 0 +9.163 -9.097 -1.312 0 0 0 0 0 0 0 +9.159 -9.064 -1.309 0 0 0 0 0 0 0 +9.198 -9.045 -1.31 0 0 0 0 0 0 0 +9.256 -9.045 -1.315 0 0 0 0 0 0 0 +9.28 -9.012 -1.315 0 0 0 0 0 0 0 +9.312 -8.987 -1.315 0 0 0 0 0 0 0 +9.385 -9 -1.322 0 0 0 0 0 0 0 +9.428 -8.985 -1.325 0 0 0 0 0 0 0 +9.422 -8.951 -1.322 0 0 0 0 0 0 0 +9.461 -8.932 -1.323 0 0 0 0 0 0 0 +9.349 -8.77 -1.301 0 0 0 0 0 0 0 +9.536 -8.834 -1.322 0 0 0 0 0 0 0 +9.573 -8.812 -1.323 0 0 0 0 0 0 0 +9.565 -8.75 -1.318 0 0 0 0 0 0 0 +9.553 -8.711 -1.314 0 0 0 0 0 0 0 +9.593 -8.693 -1.316 0 0 0 0 0 0 0 +9.669 -8.706 -1.323 0 0 0 0 0 0 0 +9.656 -8.64 -1.317 0 0 0 0 0 0 0 +9.889 -8.794 -1.349 0 0 0 0 0 0 0 +9.483 -8.378 -1.282 0 0 0 0 0 0 0 +9.379 -8.259 -1.263 0 0 0 0 0 0 0 +9.349 -8.181 -1.255 0 0 0 0 0 0 0 +9.323 -8.106 -1.246 0 0 0 0 0 0 0 +9.344 -8.072 -1.246 0 0 0 0 0 0 0 +9.369 -8.043 -1.246 0 0 0 0 0 0 0 +9.353 -7.979 -1.239 0 0 0 0 0 0 0 +9.363 -7.936 -1.237 0 0 0 0 0 0 0 +9.373 -7.894 -1.235 0 0 0 0 0 0 0 +9.404 -7.895 -1.238 0 0 0 0 0 0 0 +9.404 -7.845 -1.234 0 0 0 0 0 0 0 +9.423 -7.81 -1.233 0 0 0 0 0 0 0 +9.436 -7.772 -1.231 0 0 0 0 0 0 0 +9.473 -7.752 -1.233 0 0 0 0 0 0 0 +9.48 -7.708 -1.231 0 0 0 0 0 0 0 +9.523 -7.694 -1.233 0 0 0 0 0 0 0 +9.517 -7.664 -1.231 0 0 0 0 0 0 0 +9.53 -7.625 -1.229 0 0 0 0 0 0 0 +9.544 -7.587 -1.228 0 0 0 0 0 0 0 +9.568 -7.557 -1.228 0 0 0 0 0 0 0 +9.596 -7.531 -1.228 0 0 0 0 0 0 0 +9.598 -7.484 -1.225 0 0 0 0 0 0 0 +9.64 -7.468 -1.228 0 0 0 0 0 0 0 +9.63 -7.436 -1.225 0 0 0 0 0 0 0 +9.676 -7.423 -1.228 0 0 0 0 0 0 0 +9.68 -7.378 -1.225 0 0 0 0 0 0 0 +9.714 -7.356 -1.227 0 0 0 0 0 0 0 +9.715 -7.308 -1.223 0 0 0 0 0 0 0 +9.735 -7.275 -1.223 0 0 0 0 0 0 0 +9.761 -7.247 -1.223 0 0 0 0 0 0 0 +9.762 -7.225 -1.222 0 0 0 0 0 0 0 +9.787 -7.195 -1.222 0 0 0 0 0 0 0 +9.808 -7.163 -1.222 0 0 0 0 0 0 0 +9.84 -7.139 -1.223 0 0 0 0 0 0 0 +9.856 -7.104 -1.222 0 0 0 0 0 0 0 +9.863 -7.062 -1.22 0 0 0 0 0 0 0 +9.884 -7.03 -1.22 0 0 0 0 0 0 0 +9.905 -7.022 -1.222 0 0 0 0 0 0 0 +9.949 -7.007 -1.225 0 0 0 0 0 0 0 +10.009 -7.001 -1.23 0 0 0 0 0 0 0 +10 -6.948 -1.226 0 0 0 0 0 0 0 +10.025 -6.919 -1.226 0 0 0 0 0 0 0 +10.073 -6.906 -1.23 0 0 0 0 0 0 0 +10.57 -7.199 -1.297 0 0 0 0 0 0 0 +10.584 -7.185 -1.298 0 0 0 0 0 0 0 +10.607 -7.152 -1.298 0 0 0 0 0 0 0 +10.626 -7.116 -1.297 0 0 0 0 0 0 0 +10.65 -7.084 -1.298 0 0 0 0 0 0 0 +10.671 -7.049 -1.297 0 0 0 0 0 0 0 +10.698 -7.019 -1.298 0 0 0 0 0 0 0 +10.721 -6.986 -1.298 0 0 0 0 0 0 0 +10.729 -6.967 -1.298 0 0 0 0 0 0 0 +10.749 -6.932 -1.298 0 0 0 0 0 0 0 +10.771 -6.899 -1.298 0 0 0 0 0 0 0 +10.791 -6.864 -1.297 0 0 0 0 0 0 0 +10.816 -6.832 -1.298 0 0 0 0 0 0 0 +10.832 -6.795 -1.297 0 0 0 0 0 0 0 +10.857 -6.763 -1.298 0 0 0 0 0 0 0 +10.867 -6.746 -1.298 0 0 0 0 0 0 0 +10.887 -6.711 -1.297 0 0 0 0 0 0 0 +10.909 -6.677 -1.298 0 0 0 0 0 0 0 +10.935 -6.646 -1.298 0 0 0 0 0 0 0 +10.958 -6.613 -1.298 0 0 0 0 0 0 0 +10.996 -6.589 -1.301 0 0 0 0 0 0 0 +11.045 -6.571 -1.305 0 0 0 0 0 0 0 +11.083 -6.57 -1.308 0 0 0 0 0 0 0 +11.134 -6.554 -1.313 0 0 0 0 0 0 0 +11.194 -6.542 -1.318 0 0 0 0 0 0 0 +11.246 -6.524 -1.322 0 0 0 0 0 0 0 +11.294 -6.505 -1.326 0 0 0 0 0 0 0 +11.35 -6.49 -1.331 0 0 0 0 0 0 0 +11.398 -6.47 -1.335 0 0 0 0 0 0 0 +11.438 -6.469 -1.338 0 0 0 0 0 0 0 +11.496 -6.455 -1.344 0 0 0 0 0 0 0 +11.549 -6.437 -1.348 0 0 0 0 0 0 0 +11.597 -6.416 -1.352 0 0 0 0 0 0 0 +11.654 -6.4 -1.357 0 0 0 0 0 0 0 +11.705 -6.38 -1.361 0 0 0 0 0 0 0 +11.765 -6.365 -1.366 0 0 0 0 0 0 0 +11.807 -6.364 -1.37 0 0 0 0 0 0 0 +11.86 -6.345 -1.375 0 0 0 0 0 0 0 +11.901 -6.319 -1.378 0 0 0 0 0 0 0 +11.959 -6.302 -1.383 0 0 0 0 0 0 0 +12.014 -6.282 -1.387 0 0 0 0 0 0 0 +8.775 -4.546 -0.957 0 0 0 0 0 0 0 +8.763 -4.504 -0.954 0 0 0 0 0 0 0 +8.763 -4.487 -0.953 0 0 0 0 0 0 0 +8.786 -4.464 -0.954 0 0 0 0 0 0 0 +12.303 -6.166 -1.411 0 0 0 0 0 0 0 +12.378 -6.155 -1.418 0 0 0 0 0 0 0 +12.463 -6.148 -1.427 0 0 0 0 0 0 0 +12.457 -6.097 -1.424 0 0 0 0 0 0 0 +12.504 -6.096 -1.429 0 0 0 0 0 0 0 +12.545 -6.067 -1.431 0 0 0 0 0 0 0 +12.55 -6.021 -1.43 0 0 0 0 0 0 0 +12.552 -5.973 -1.428 0 0 0 0 0 0 0 +12.614 -5.954 -1.433 0 0 0 0 0 0 0 +12.678 -5.936 -1.439 0 0 0 0 0 0 0 +12.703 -5.899 -1.44 0 0 0 0 0 0 0 +12.713 -5.879 -1.44 0 0 0 0 0 0 0 +12.706 -5.828 -1.437 0 0 0 0 0 0 0 +12.708 -5.78 -1.435 0 0 0 0 0 0 0 +12.73 -5.742 -1.435 0 0 0 0 0 0 0 +12.789 -5.721 -1.44 0 0 0 0 0 0 0 +12.825 -5.689 -1.443 0 0 0 0 0 0 0 +12.85 -5.652 -1.444 0 0 0 0 0 0 0 +12.859 -5.631 -1.444 0 0 0 0 0 0 0 +12.862 -5.585 -1.442 0 0 0 0 0 0 0 +12.905 -5.555 -1.445 0 0 0 0 0 0 0 +12.921 -5.514 -1.445 0 0 0 0 0 0 0 +12.951 -5.479 -1.446 0 0 0 0 0 0 0 +12.957 -5.433 -1.445 0 0 0 0 0 0 0 +12.991 -5.399 -1.447 0 0 0 0 0 0 0 +13.01 -5.384 -1.448 0 0 0 0 0 0 0 +13.027 -5.343 -1.448 0 0 0 0 0 0 0 +13.042 -5.301 -1.448 0 0 0 0 0 0 0 +13.062 -5.262 -1.449 0 0 0 0 0 0 0 +13.015 -5.148 -1.439 0 0 0 0 0 0 0 +13.139 -5.149 -1.452 0 0 0 0 0 0 0 +13.147 -5.128 -1.452 0 0 0 0 0 0 0 +13.176 -5.092 -1.454 0 0 0 0 0 0 0 +13.179 -5.046 -1.452 0 0 0 0 0 0 0 +13.193 -5.004 -1.452 0 0 0 0 0 0 0 +13.221 -4.967 -1.454 0 0 0 0 0 0 0 +13.231 -4.923 -1.453 0 0 0 0 0 0 0 +13.224 -4.874 -1.45 0 0 0 0 0 0 0 +13.275 -4.869 -1.455 0 0 0 0 0 0 0 +13.309 -4.834 -1.458 0 0 0 0 0 0 0 +13.341 -4.798 -1.46 0 0 0 0 0 0 0 +13.359 -4.757 -1.46 0 0 0 0 0 0 0 +13.372 -4.715 -1.46 0 0 0 0 0 0 0 +13.404 -4.679 -1.462 0 0 0 0 0 0 0 +13.422 -4.638 -1.463 0 0 0 0 0 0 0 +13.428 -4.616 -1.462 0 0 0 0 0 0 0 +13.45 -4.576 -1.463 0 0 0 0 0 0 0 +13.473 -4.537 -1.464 0 0 0 0 0 0 0 +13.486 -4.494 -1.464 0 0 0 0 0 0 0 +13.511 -4.456 -1.466 0 0 0 0 0 0 0 +13.533 -4.416 -1.467 0 0 0 0 0 0 0 +13.545 -4.373 -1.466 0 0 0 0 0 0 0 +13.562 -4.331 -1.467 0 0 0 0 0 0 0 +13.586 -4.315 -1.469 0 0 0 0 0 0 0 +13.607 -4.275 -1.47 0 0 0 0 0 0 0 +13.613 -4.23 -1.469 0 0 0 0 0 0 0 +13.643 -4.192 -1.471 0 0 0 0 0 0 0 +13.654 -4.149 -1.471 0 0 0 0 0 0 0 +13.673 -4.108 -1.471 0 0 0 0 0 0 0 +13.67 -4.06 -1.47 0 0 0 0 0 0 0 +13.681 -4.04 -1.47 0 0 0 0 0 0 0 +13.697 -3.998 -1.471 0 0 0 0 0 0 0 +13.74 -3.964 -1.474 0 0 0 0 0 0 0 +13.758 -3.922 -1.475 0 0 0 0 0 0 0 +13.749 -3.873 -1.472 0 0 0 0 0 0 0 +13.737 -3.823 -1.469 0 0 0 0 0 0 0 +13.735 -3.799 -1.468 0 0 0 0 0 0 0 +13.712 -3.746 -1.464 0 0 0 0 0 0 0 +13.713 -3.7 -1.463 0 0 0 0 0 0 0 +13.703 -3.651 -1.46 0 0 0 0 0 0 0 +13.707 -3.606 -1.459 0 0 0 0 0 0 0 +13.701 -3.559 -1.457 0 0 0 0 0 0 0 +13.704 -3.514 -1.456 0 0 0 0 0 0 0 +13.723 -3.473 -1.457 0 0 0 0 0 0 0 +13.703 -3.445 -1.454 0 0 0 0 0 0 0 +13.699 -3.398 -1.452 0 0 0 0 0 0 0 +13.68 -3.348 -1.449 0 0 0 0 0 0 0 +7.273 -1.743 -0.676 0 0 0 0 0 0 0 +7.29 -1.723 -0.677 0 0 0 0 0 0 0 +7.276 -1.695 -0.675 0 0 0 0 0 0 0 +7.25 -1.665 -0.671 0 0 0 0 0 0 0 +7.245 -1.652 -0.67 0 0 0 0 0 0 0 +7.239 -1.627 -0.669 0 0 0 0 0 0 0 +7.244 -1.604 -0.669 0 0 0 0 0 0 0 +7.241 -1.579 -0.668 0 0 0 0 0 0 0 +7.225 -1.552 -0.665 0 0 0 0 0 0 0 +7.214 -1.526 -0.664 0 0 0 0 0 0 0 +7.205 -1.5 -0.662 0 0 0 0 0 0 0 +7.196 -1.487 -0.661 0 0 0 0 0 0 0 +7.189 -1.462 -0.659 0 0 0 0 0 0 0 +7.186 -1.437 -0.658 0 0 0 0 0 0 0 +7.19 -1.415 -0.658 0 0 0 0 0 0 0 +7.194 -1.392 -0.658 0 0 0 0 0 0 0 +7.209 -1.372 -0.659 0 0 0 0 0 0 0 +7.221 -1.35 -0.66 0 0 0 0 0 0 0 +7.236 -1.342 -0.662 0 0 0 0 0 0 0 +7.254 -1.321 -0.664 0 0 0 0 0 0 0 +7.292 -1.305 -0.667 0 0 0 0 0 0 0 +7.341 -1.29 -0.673 0 0 0 0 0 0 0 +7.38 -1.273 -0.677 0 0 0 0 0 0 0 +7.648 -1.295 -0.708 0 0 0 0 0 0 0 +7.873 -1.309 -0.735 0 0 0 0 0 0 0 +7.897 -1.3 -0.737 0 0 0 0 0 0 0 +7.909 -1.277 -0.738 0 0 0 0 0 0 0 +13.423 -2.142 -1.391 0 0 0 0 0 0 0 +7.646 -1.184 -0.706 0 0 0 0 0 0 0 +7.638 -1.158 -0.705 0 0 0 0 0 0 0 +7.645 -1.135 -0.705 0 0 0 0 0 0 0 +7.653 -1.111 -0.706 0 0 0 0 0 0 0 +13.822 -1.962 -1.435 0 0 0 0 0 0 0 +14.165 -1.966 -1.474 0 0 0 0 0 0 0 +14.216 -1.928 -1.48 0 0 0 0 0 0 0 +14.183 -1.878 -1.475 0 0 0 0 0 0 0 +14.212 -1.836 -1.478 0 0 0 0 0 0 0 +14.234 -1.794 -1.48 0 0 0 0 0 0 0 +14.327 -1.783 -1.49 0 0 0 0 0 0 0 +14.327 -1.737 -1.49 0 0 0 0 0 0 0 +14.362 -1.695 -1.493 0 0 0 0 0 0 0 +14.381 -1.652 -1.495 0 0 0 0 0 0 0 +14.384 -1.607 -1.494 0 0 0 0 0 0 0 +14.399 -1.562 -1.496 0 0 0 0 0 0 0 +14.411 -1.518 -1.497 0 0 0 0 0 0 0 +14.441 -1.498 -1.5 0 0 0 0 0 0 0 +14.389 -1.447 -1.493 0 0 0 0 0 0 0 +11.094 -1.075 -1.105 0 0 0 0 0 0 0 +11.097 -1.04 -1.105 0 0 0 0 0 0 0 +14.505 -1.321 -1.505 0 0 0 0 0 0 0 +14.522 -1.277 -1.507 0 0 0 0 0 0 0 +14.55 -1.233 -1.51 0 0 0 0 0 0 0 +14.562 -1.211 -1.511 0 0 0 0 0 0 0 +14.582 -1.167 -1.513 0 0 0 0 0 0 0 +14.589 -1.121 -1.513 0 0 0 0 0 0 0 +14.658 -1.08 -1.521 0 0 0 0 0 0 0 +14.701 -1.037 -1.525 0 0 0 0 0 0 0 +14.738 -0.993 -1.529 0 0 0 0 0 0 0 +14.745 -0.947 -1.53 0 0 0 0 0 0 0 +14.766 -0.925 -1.532 0 0 0 0 0 0 0 +14.781 -0.88 -1.534 0 0 0 0 0 0 0 +14.825 -0.836 -1.538 0 0 0 0 0 0 0 +14.808 -0.788 -1.536 0 0 0 0 0 0 0 +14.846 -0.743 -1.54 0 0 0 0 0 0 0 +14.866 -0.697 -1.542 0 0 0 0 0 0 0 +14.892 -0.652 -1.545 0 0 0 0 0 0 0 +14.891 -0.628 -1.545 0 0 0 0 0 0 0 +14.901 -0.582 -1.546 0 0 0 0 0 0 0 +14.928 -0.536 -1.549 0 0 0 0 0 0 0 +14.948 -0.49 -1.551 0 0 0 0 0 0 0 +14.943 -0.443 -1.55 0 0 0 0 0 0 0 +14.929 -0.395 -1.548 0 0 0 0 0 0 0 +14.864 -0.347 -1.541 0 0 0 0 0 0 0 +14.861 -0.323 -1.54 0 0 0 0 0 0 0 +14.896 -0.277 -1.544 0 0 0 0 0 0 0 +14.936 -0.231 -1.549 0 0 0 0 0 0 0 +13.046 -0.158 -1.328 0 0 0 0 0 0 0 +14.955 -0.137 -1.551 0 0 0 0 0 0 0 +14.954 -0.09 -1.551 0 0 0 0 0 0 0 +14.958 -0.043 -1.551 0 0 0 0 0 0 0 +14.944 -0.02 -1.55 0 0 0 0 0 0 0 +14.31 0.02 -1.558 0 0 0 0 0 0 0 +14.338 0.065 -1.561 0 0 0 0 0 0 0 +13.583 0.103 -1.468 0 0 0 0 0 0 0 +14.238 0.154 -1.549 0 0 0 0 0 0 0 +14.229 0.199 -1.548 0 0 0 0 0 0 0 +14.211 0.243 -1.546 0 0 0 0 0 0 0 +14.2 0.265 -1.544 0 0 0 0 0 0 0 +14.356 0.314 -1.564 0 0 0 0 0 0 0 +14.351 0.359 -1.563 0 0 0 0 0 0 0 +14.378 0.405 -1.567 0 0 0 0 0 0 0 +14.283 0.447 -1.555 0 0 0 0 0 0 0 +13.788 0.474 -1.494 0 0 0 0 0 0 0 +14.205 0.533 -1.546 0 0 0 0 0 0 0 +14.128 0.553 -1.537 0 0 0 0 0 0 0 +14.168 0.599 -1.542 0 0 0 0 0 0 0 +14.214 0.646 -1.548 0 0 0 0 0 0 0 +14.259 0.693 -1.553 0 0 0 0 0 0 0 +14.404 0.745 -1.571 0 0 0 0 0 0 0 +14.399 0.79 -1.571 0 0 0 0 0 0 0 +14.377 0.835 -1.569 0 0 0 0 0 0 0 +14.398 0.881 -1.572 0 0 0 0 0 0 0 +14.399 0.904 -1.572 0 0 0 0 0 0 0 +14.37 0.947 -1.569 0 0 0 0 0 0 0 +14.371 0.993 -1.569 0 0 0 0 0 0 0 +14.395 1.04 -1.573 0 0 0 0 0 0 0 +14.398 1.086 -1.573 0 0 0 0 0 0 0 +14.389 1.13 -1.573 0 0 0 0 0 0 0 +14.367 1.174 -1.57 0 0 0 0 0 0 0 +14.377 1.198 -1.572 0 0 0 0 0 0 0 +14.427 1.248 -1.579 0 0 0 0 0 0 0 +14.421 1.293 -1.578 0 0 0 0 0 0 0 +14.436 1.34 -1.581 0 0 0 0 0 0 0 +14.464 1.388 -1.585 0 0 0 0 0 0 0 +14.463 1.434 -1.585 0 0 0 0 0 0 0 +14.51 1.485 -1.591 0 0 0 0 0 0 0 +14.581 1.515 -1.6 0 0 0 0 0 0 0 +14.653 1.57 -1.61 0 0 0 0 0 0 0 +14.737 1.626 -1.621 0 0 0 0 0 0 0 +14.812 1.681 -1.631 0 0 0 0 0 0 0 +14.882 1.737 -1.64 0 0 0 0 0 0 0 +14.908 1.787 -1.644 0 0 0 0 0 0 0 +14.953 1.84 -1.65 0 0 0 0 0 0 0 +15.039 1.875 -1.661 0 0 0 0 0 0 0 +15.139 1.936 -1.675 0 0 0 0 0 0 0 +15.135 1.984 -1.675 0 0 0 0 0 0 0 +15.156 2.035 -1.678 0 0 0 0 0 0 0 +15.154 2.083 -1.679 0 0 0 0 0 0 0 +15.155 2.132 -1.68 0 0 0 0 0 0 0 +15.184 2.185 -1.684 0 0 0 0 0 0 0 +15.19 2.21 -1.685 0 0 0 0 0 0 0 +15.275 2.272 -1.697 0 0 0 0 0 0 0 +15.268 2.32 -1.697 0 0 0 0 0 0 0 +15.222 2.362 -1.692 0 0 0 0 0 0 0 +15.269 2.418 -1.699 0 0 0 0 0 0 0 +15.25 2.464 -1.697 0 0 0 0 0 0 0 +15.248 2.513 -1.698 0 0 0 0 0 0 0 +15.248 2.538 -1.698 0 0 0 0 0 0 0 +15.247 2.587 -1.699 0 0 0 0 0 0 0 +15.216 2.631 -1.696 0 0 0 0 0 0 0 +15.184 2.674 -1.694 0 0 0 0 0 0 0 +15.156 2.718 -1.691 0 0 0 0 0 0 0 +15.18 2.772 -1.695 0 0 0 0 0 0 0 +15.15 2.816 -1.693 0 0 0 0 0 0 0 +15.099 2.831 -1.687 0 0 0 0 0 0 0 +15.076 2.876 -1.685 0 0 0 0 0 0 0 +15.087 2.927 -1.687 0 0 0 0 0 0 0 +15.097 2.978 -1.69 0 0 0 0 0 0 0 +15.07 3.022 -1.688 0 0 0 0 0 0 0 +15.064 3.07 -1.688 0 0 0 0 0 0 0 +15.049 3.116 -1.687 0 0 0 0 0 0 0 +15.046 3.14 -1.688 0 0 0 0 0 0 0 +15.032 3.187 -1.687 0 0 0 0 0 0 0 +15.026 3.235 -1.688 0 0 0 0 0 0 0 +15.008 3.28 -1.687 0 0 0 0 0 0 0 +14.995 3.327 -1.686 0 0 0 0 0 0 0 +14.966 3.369 -1.684 0 0 0 0 0 0 0 +14.959 3.417 -1.685 0 0 0 0 0 0 0 +14.936 3.437 -1.682 0 0 0 0 0 0 0 +14.904 3.479 -1.68 0 0 0 0 0 0 0 +14.872 3.52 -1.677 0 0 0 0 0 0 0 +14.901 3.577 -1.682 0 0 0 0 0 0 0 +14.886 3.623 -1.682 0 0 0 0 0 0 0 +14.87 3.669 -1.681 0 0 0 0 0 0 0 +14.857 3.715 -1.681 0 0 0 0 0 0 0 +14.861 3.741 -1.682 0 0 0 0 0 0 0 +14.824 3.781 -1.679 0 0 0 0 0 0 0 +14.837 3.834 -1.682 0 0 0 0 0 0 0 +14.8 3.874 -1.679 0 0 0 0 0 0 0 +14.79 3.921 -1.679 0 0 0 0 0 0 0 +14.783 3.969 -1.68 0 0 0 0 0 0 0 +14.765 4.014 -1.679 0 0 0 0 0 0 0 +14.741 4.032 -1.677 0 0 0 0 0 0 0 +14.747 4.084 -1.679 0 0 0 0 0 0 0 +14.727 4.128 -1.678 0 0 0 0 0 0 0 +14.71 4.173 -1.678 0 0 0 0 0 0 0 +14.674 4.213 -1.675 0 0 0 0 0 0 0 +14.68 4.264 -1.677 0 0 0 0 0 0 0 +14.651 4.306 -1.676 0 0 0 0 0 0 0 +14.65 4.331 -1.676 0 0 0 0 0 0 0 +14.625 4.373 -1.675 0 0 0 0 0 0 0 +14.619 4.421 -1.676 0 0 0 0 0 0 0 +14.601 4.466 -1.675 0 0 0 0 0 0 0 +14.591 4.513 -1.676 0 0 0 0 0 0 0 +14.559 4.554 -1.674 0 0 0 0 0 0 0 +14.552 4.602 -1.675 0 0 0 0 0 0 0 +14.546 4.65 -1.676 0 0 0 0 0 0 0 +14.512 4.664 -1.672 0 0 0 0 0 0 0 +14.501 4.711 -1.673 0 0 0 0 0 0 0 +14.501 4.761 -1.675 0 0 0 0 0 0 0 +14.475 4.803 -1.673 0 0 0 0 0 0 0 +14.461 4.849 -1.673 0 0 0 0 0 0 0 +14.455 4.898 -1.675 0 0 0 0 0 0 0 +14.421 4.912 -1.671 0 0 0 0 0 0 0 +14.406 4.957 -1.671 0 0 0 0 0 0 0 +14.418 5.012 -1.675 0 0 0 0 0 0 0 +14.399 5.056 -1.674 0 0 0 0 0 0 0 +14.381 5.1 -1.674 0 0 0 0 0 0 0 +14.386 5.153 -1.677 0 0 0 0 0 0 0 +14.375 5.2 -1.677 0 0 0 0 0 0 0 +14.355 5.219 -1.676 0 0 0 0 0 0 0 +14.358 5.271 -1.678 0 0 0 0 0 0 0 +14.337 5.314 -1.678 0 0 0 0 0 0 0 +14.315 5.357 -1.677 0 0 0 0 0 0 0 +14.32 5.411 -1.68 0 0 0 0 0 0 0 +14.305 5.456 -1.68 0 0 0 0 0 0 0 +14.284 5.5 -1.68 0 0 0 0 0 0 0 +14.303 5.533 -1.684 0 0 0 0 0 0 0 +14.288 5.579 -1.684 0 0 0 0 0 0 0 +14.292 5.632 -1.687 0 0 0 0 0 0 0 +14.263 5.673 -1.685 0 0 0 0 0 0 0 +14.264 5.725 -1.688 0 0 0 0 0 0 0 +14.24 5.768 -1.687 0 0 0 0 0 0 0 +14.235 5.818 -1.689 0 0 0 0 0 0 0 +14.218 5.863 -1.689 0 0 0 0 0 0 0 +14.217 5.888 -1.69 0 0 0 0 0 0 0 +14.191 5.93 -1.689 0 0 0 0 0 0 0 +14.188 5.981 -1.691 0 0 0 0 0 0 0 +14.17 6.026 -1.691 0 0 0 0 0 0 0 +14.167 6.078 -1.693 0 0 0 0 0 0 0 +14.148 6.122 -1.693 0 0 0 0 0 0 0 +14.15 6.176 -1.696 0 0 0 0 0 0 0 +14.137 6.197 -1.696 0 0 0 0 0 0 0 +14.13 6.247 -1.697 0 0 0 0 0 0 0 +14.096 6.284 -1.695 0 0 0 0 0 0 0 +14.111 6.344 -1.7 0 0 0 0 0 0 0 +14.091 6.389 -1.7 0 0 0 0 0 0 0 +14.079 6.437 -1.701 0 0 0 0 0 0 0 +14.055 6.452 -1.699 0 0 0 0 0 0 0 +14.078 6.517 -1.705 0 0 0 0 0 0 0 +14.052 6.558 -1.705 0 0 0 0 0 0 0 +14.04 6.607 -1.706 0 0 0 0 0 0 0 +14.028 6.655 -1.707 0 0 0 0 0 0 0 +14.022 6.706 -1.709 0 0 0 0 0 0 0 +14.011 6.755 -1.71 0 0 0 0 0 0 0 +14.017 6.785 -1.713 0 0 0 0 0 0 0 +13.992 6.827 -1.712 0 0 0 0 0 0 0 +13.975 6.874 -1.713 0 0 0 0 0 0 0 +13.964 6.923 -1.714 0 0 0 0 0 0 0 +13.95 6.97 -1.715 0 0 0 0 0 0 0 +13.942 7.021 -1.717 0 0 0 0 0 0 0 +13.915 7.062 -1.716 0 0 0 0 0 0 0 +13.914 7.09 -1.718 0 0 0 0 0 0 0 +13.902 7.139 -1.719 0 0 0 0 0 0 0 +13.887 7.186 -1.72 0 0 0 0 0 0 0 +13.878 7.237 -1.722 0 0 0 0 0 0 0 +13.857 7.281 -1.723 0 0 0 0 0 0 0 +13.852 7.334 -1.725 0 0 0 0 0 0 0 +13.834 7.381 -1.726 0 0 0 0 0 0 0 +13.828 7.405 -1.726 0 0 0 0 0 0 0 +13.832 7.464 -1.73 0 0 0 0 0 0 0 +13.812 7.509 -1.731 0 0 0 0 0 0 0 +13.792 7.554 -1.731 0 0 0 0 0 0 0 +13.789 7.609 -1.734 0 0 0 0 0 0 0 +13.762 7.65 -1.734 0 0 0 0 0 0 0 +13.746 7.698 -1.735 0 0 0 0 0 0 0 +13.739 7.723 -1.736 0 0 0 0 0 0 0 +13.725 7.772 -1.737 0 0 0 0 0 0 0 +13.708 7.819 -1.738 0 0 0 0 0 0 0 +13.697 7.87 -1.74 0 0 0 0 0 0 0 +13.679 7.917 -1.741 0 0 0 0 0 0 0 +13.647 7.956 -1.74 0 0 0 0 0 0 0 +13.642 8.011 -1.743 0 0 0 0 0 0 0 +13.11 7.753 -1.671 0 0 0 0 0 0 0 +11.681 6.929 -1.468 0 0 0 0 0 0 0 +11.456 6.844 -1.439 0 0 0 0 0 0 0 +11.367 6.839 -1.429 0 0 0 0 0 0 0 +10.723 6.496 -1.34 0 0 0 0 0 0 0 +10.65 6.497 -1.332 0 0 0 0 0 0 0 +10.571 6.494 -1.324 0 0 0 0 0 0 0 +10.532 6.516 -1.321 0 0 0 0 0 0 0 +10.54 6.544 -1.324 0 0 0 0 0 0 0 +10.459 6.539 -1.315 0 0 0 0 0 0 0 +10.369 6.528 -1.305 0 0 0 0 0 0 0 +10.394 6.59 -1.312 0 0 0 0 0 0 0 +10.315 6.585 -1.303 0 0 0 0 0 0 0 +10.286 6.612 -1.302 0 0 0 0 0 0 0 +10.37 6.69 -1.316 0 0 0 0 0 0 0 +10.419 6.768 -1.326 0 0 0 0 0 0 0 +10.428 6.82 -1.33 0 0 0 0 0 0 0 +10.376 6.833 -1.326 0 0 0 0 0 0 0 +10.489 6.955 -1.346 0 0 0 0 0 0 0 +10.312 6.884 -1.323 0 0 0 0 0 0 0 +10.364 6.966 -1.334 0 0 0 0 0 0 0 +10.291 6.94 -1.325 0 0 0 0 0 0 0 +10.336 7.018 -1.335 0 0 0 0 0 0 0 +10.332 7.063 -1.337 0 0 0 0 0 0 0 +10.352 7.125 -1.344 0 0 0 0 0 0 0 +10.385 7.196 -1.352 0 0 0 0 0 0 0 +10.354 7.223 -1.351 0 0 0 0 0 0 0 +10.325 7.251 -1.35 0 0 0 0 0 0 0 +10.338 7.284 -1.353 0 0 0 0 0 0 0 +10.276 7.289 -1.347 0 0 0 0 0 0 0 +10.202 7.284 -1.34 0 0 0 0 0 0 0 +10.306 7.408 -1.359 0 0 0 0 0 0 0 +10.389 7.517 -1.375 0 0 0 0 0 0 0 +10.443 7.607 -1.387 0 0 0 0 0 0 0 +10.482 7.686 -1.396 0 0 0 0 0 0 0 +10.453 7.715 -1.396 0 0 0 0 0 0 0 +10.479 7.76 -1.402 0 0 0 0 0 0 0 +10.455 7.793 -1.402 0 0 0 0 0 0 0 +10.451 7.841 -1.405 0 0 0 0 0 0 0 +10.405 7.858 -1.402 0 0 0 0 0 0 0 +10.43 7.928 -1.409 0 0 0 0 0 0 0 +10.416 7.97 -1.411 0 0 0 0 0 0 0 +10.389 8.001 -1.411 0 0 0 0 0 0 0 +10.398 8.034 -1.414 0 0 0 0 0 0 0 +10.409 8.095 -1.42 0 0 0 0 0 0 0 +10.291 8.055 -1.405 0 0 0 0 0 0 0 +10.395 8.19 -1.425 0 0 0 0 0 0 0 +10.422 8.265 -1.434 0 0 0 0 0 0 0 +10.407 8.306 -1.435 0 0 0 0 0 0 0 +10.426 8.375 -1.443 0 0 0 0 0 0 0 +10.544 8.497 -1.463 0 0 0 0 0 0 0 +6.783 5.49 -0.872 0 0 0 0 0 0 0 +6.752 5.499 -0.87 0 0 0 0 0 0 0 +6.71 5.5 -0.866 0 0 0 0 0 0 0 +6.715 5.541 -0.87 0 0 0 0 0 0 0 +6.689 5.554 -0.868 0 0 0 0 0 0 0 +6.676 5.579 -0.869 0 0 0 0 0 0 0 +10.326 8.675 -1.456 0 0 0 0 0 0 0 +10.342 8.745 -1.463 0 0 0 0 0 0 0 +10.31 8.773 -1.463 0 0 0 0 0 0 0 +10.317 8.835 -1.468 0 0 0 0 0 0 0 +10.306 8.882 -1.471 0 0 0 0 0 0 0 +10.308 8.94 -1.476 0 0 0 0 0 0 0 +10.299 8.99 -1.479 0 0 0 0 0 0 0 +10.337 9.052 -1.488 0 0 0 0 0 0 0 +10.3 9.076 -1.486 0 0 0 0 0 0 0 +10.345 9.175 -1.498 0 0 0 0 0 0 0 +10.348 9.235 -1.503 0 0 0 0 0 0 0 +10.354 9.299 -1.509 0 0 0 0 0 0 0 +10.32 9.328 -1.509 0 0 0 0 0 0 0 +10.301 9.369 -1.51 0 0 0 0 0 0 0 +10.379 9.47 -1.526 0 0 0 0 0 0 0 +10.39 9.54 -1.532 0 0 0 0 0 0 0 +10.386 9.597 -1.537 0 0 0 0 0 0 0 +10.388 9.66 -1.542 0 0 0 0 0 0 0 +10.399 9.732 -1.549 0 0 0 0 0 0 0 +10.406 9.8 -1.556 0 0 0 0 0 0 0 +10.405 9.861 -1.561 0 0 0 0 0 0 0 +10.429 9.914 -1.567 0 0 0 0 0 0 0 +10.419 9.968 -1.571 0 0 0 0 0 0 0 +10.332 9.947 -1.561 0 0 0 0 0 0 0 +10.409 10.084 -1.58 0 0 0 0 0 0 0 +10.381 10.121 -1.581 0 0 0 0 0 0 0 +10.382 10.186 -1.586 0 0 0 0 0 0 0 +10.339 10.207 -1.584 0 0 0 0 0 0 0 +10.363 10.264 -1.591 0 0 0 0 0 0 0 +10.354 10.319 -1.595 0 0 0 0 0 0 0 +10.35 10.381 -1.6 0 0 0 0 0 0 0 +10.314 10.409 -1.6 0 0 0 0 0 0 0 +10.305 10.465 -1.604 0 0 0 0 0 0 0 +10.279 10.505 -1.605 0 0 0 0 0 0 0 +10.25 10.541 -1.606 0 0 0 0 0 0 0 +10.254 10.579 -1.609 0 0 0 0 0 0 0 +10.22 10.611 -1.609 0 0 0 0 0 0 0 +10.205 10.662 -1.613 0 0 0 0 0 0 0 +10.17 10.692 -1.612 0 0 0 0 0 0 0 +10.144 10.733 -1.614 0 0 0 0 0 0 0 +10.113 10.768 -1.614 0 0 0 0 0 0 0 +10.082 10.802 -1.615 0 0 0 0 0 0 0 +10.063 10.815 -1.614 0 0 0 0 0 0 0 +10.049 10.869 -1.618 0 0 0 0 0 0 0 +10.023 10.909 -1.619 0 0 0 0 0 0 0 +9.992 10.945 -1.62 0 0 0 0 0 0 0 +9.96 10.979 -1.621 0 0 0 0 0 0 0 +9.935 11.021 -1.622 0 0 0 0 0 0 0 +9.907 11.059 -1.624 0 0 0 0 0 0 0 +9.88 11.099 -1.625 0 0 0 0 0 0 0 +9.85 11.1 -1.623 0 0 0 0 0 0 0 +9.83 11.149 -1.626 0 0 0 0 0 0 0 +9.795 11.179 -1.626 0 0 0 0 0 0 0 +9.777 11.23 -1.629 0 0 0 0 0 0 0 +9.738 11.256 -1.628 0 0 0 0 0 0 0 +9.701 11.285 -1.628 0 0 0 0 0 0 0 +9.664 11.314 -1.628 0 0 0 0 0 0 0 +9.657 11.341 -1.629 0 0 0 0 0 0 0 +9.621 11.371 -1.629 0 0 0 0 0 0 0 +9.597 11.415 -1.632 0 0 0 0 0 0 0 +9.565 11.45 -1.632 0 0 0 0 0 0 0 +9.519 11.468 -1.63 0 0 0 0 0 0 0 +9.481 11.496 -1.63 0 0 0 0 0 0 0 +9.486 11.538 -1.635 0 0 0 0 0 0 0 +9.441 11.557 -1.633 0 0 0 0 0 0 0 +9.415 11.599 -1.635 0 0 0 0 0 0 0 +9.39 11.644 -1.637 0 0 0 0 0 0 0 +9.355 11.675 -1.637 0 0 0 0 0 0 0 +9.332 11.722 -1.64 0 0 0 0 0 0 0 +9.295 11.751 -1.64 0 0 0 0 0 0 0 +9.277 11.766 -1.64 0 0 0 0 0 0 0 +9.24 11.795 -1.64 0 0 0 0 0 0 0 +9.213 11.838 -1.642 0 0 0 0 0 0 0 +9.183 11.876 -1.644 0 0 0 0 0 0 0 +9.157 11.919 -1.646 0 0 0 0 0 0 0 +9.123 11.953 -1.647 0 0 0 0 0 0 0 +9.084 11.98 -1.647 0 0 0 0 0 0 0 +9.056 12.021 -1.648 0 0 0 0 0 0 0 +9.038 12.037 -1.649 0 0 0 0 0 0 0 +9.003 12.068 -1.649 0 0 0 0 0 0 0 +8.972 12.106 -1.651 0 0 0 0 0 0 0 +8.947 12.152 -1.653 0 0 0 0 0 0 0 +8.91 12.181 -1.654 0 0 0 0 0 0 0 +8.883 12.225 -1.656 0 0 0 0 0 0 0 +8.851 12.261 -1.657 0 0 0 0 0 0 0 +8.842 12.29 -1.659 0 0 0 0 0 0 0 +8.812 12.33 -1.661 0 0 0 0 0 0 0 +8.768 12.35 -1.66 0 0 0 0 0 0 0 +8.746 12.402 -1.664 0 0 0 0 0 0 0 +8.717 12.444 -1.666 0 0 0 0 0 0 0 +8.689 12.487 -1.668 0 0 0 0 0 0 0 +8.651 12.516 -1.669 0 0 0 0 0 0 0 +8.623 12.56 -1.671 0 0 0 0 0 0 0 +8.603 12.573 -1.671 0 0 0 0 0 0 0 +8.568 12.607 -1.672 0 0 0 0 0 0 0 +8.523 12.625 -1.671 0 0 0 0 0 0 0 +8.511 12.693 -1.677 0 0 0 0 0 0 0 +8.475 12.727 -1.678 0 0 0 0 0 0 0 +8.45 12.775 -1.681 0 0 0 0 0 0 0 +8.435 12.796 -1.682 0 0 0 0 0 0 0 +8.396 12.824 -1.683 0 0 0 0 0 0 0 +8.364 12.864 -1.685 0 0 0 0 0 0 0 +8.319 12.884 -1.684 0 0 0 0 0 0 0 +8.29 12.926 -1.686 0 0 0 0 0 0 0 +8.26 12.969 -1.688 0 0 0 0 0 0 0 +8.217 12.992 -1.688 0 0 0 0 0 0 0 +8.178 13.021 -1.688 0 0 0 0 0 0 0 +8.168 13.05 -1.691 0 0 0 0 0 0 0 +8.133 13.086 -1.692 0 0 0 0 0 0 0 +8.098 13.122 -1.694 0 0 0 0 0 0 0 +8.05 13.135 -1.692 0 0 0 0 0 0 0 +8.015 13.171 -1.694 0 0 0 0 0 0 0 +7.969 13.189 -1.693 0 0 0 0 0 0 0 +7.94 13.234 -1.695 0 0 0 0 0 0 0 +7.922 13.252 -1.696 0 0 0 0 0 0 0 +7.882 13.28 -1.697 0 0 0 0 0 0 0 +7.845 13.312 -1.698 0 0 0 0 0 0 0 +7.803 13.336 -1.698 0 0 0 0 0 0 0 +7.77 13.376 -1.7 0 0 0 0 0 0 0 +7.741 13.423 -1.703 0 0 0 0 0 0 0 +7.701 13.452 -1.704 0 0 0 0 0 0 0 +7.683 13.47 -1.705 0 0 0 0 0 0 0 +7.657 13.523 -1.709 0 0 0 0 0 0 0 +7.615 13.547 -1.709 0 0 0 0 0 0 0 +7.566 13.561 -1.707 0 0 0 0 0 0 0 +7.539 13.612 -1.711 0 0 0 0 0 0 0 +7.503 13.648 -1.713 0 0 0 0 0 0 0 +7.461 13.673 -1.713 0 0 0 0 0 0 0 +7.445 13.695 -1.715 0 0 0 0 0 0 0 +7.41 13.733 -1.716 0 0 0 0 0 0 0 +7.365 13.752 -1.716 0 0 0 0 0 0 0 +7.331 13.793 -1.718 0 0 0 0 0 0 0 +7.291 13.823 -1.719 0 0 0 0 0 0 0 +7.265 13.879 -1.724 0 0 0 0 0 0 0 +7.228 13.914 -1.726 0 0 0 0 0 0 0 +7.219 13.95 -1.729 0 0 0 0 0 0 0 +7.177 13.977 -1.73 0 0 0 0 0 0 0 +7.139 14.011 -1.731 0 0 0 0 0 0 0 +7.102 14.048 -1.733 0 0 0 0 0 0 0 +7.067 14.088 -1.736 0 0 0 0 0 0 0 +7.029 14.124 -1.738 0 0 0 0 0 0 0 +6.992 14.161 -1.74 0 0 0 0 0 0 0 +6.942 14.172 -1.738 0 0 0 0 0 0 0 +6.961 14.267 -1.75 0 0 0 0 0 0 0 +6.965 14.39 -1.763 0 0 0 0 0 0 0 +6.975 14.527 -1.779 0 0 0 0 0 0 0 +6.987 14.671 -1.796 0 0 0 0 0 0 0 +6.99 14.797 -1.81 0 0 0 0 0 0 0 +6.984 14.907 -1.822 0 0 0 0 0 0 0 +7.008 15.082 -1.842 0 0 0 0 0 0 0 +7.048 15.23 -1.861 0 0 0 0 0 0 0 +7.064 15.393 -1.88 0 0 0 0 0 0 0 +7.03 15.445 -1.884 0 0 0 0 0 0 0 +6.988 15.482 -1.886 0 0 0 0 0 0 0 +6.944 15.515 -1.888 0 0 0 0 0 0 0 +6.89 15.524 -1.886 0 0 0 0 0 0 0 +6.836 15.534 -1.884 0 0 0 0 0 0 0 +6.814 15.55 -1.885 0 0 0 0 0 0 0 +6.766 15.574 -1.885 0 0 0 0 0 0 0 +6.699 15.553 -1.88 0 0 0 0 0 0 0 +6.656 15.588 -1.882 0 0 0 0 0 0 0 +6.599 15.589 -1.879 0 0 0 0 0 0 0 +6.544 15.595 -1.877 0 0 0 0 0 0 0 +6.504 15.639 -1.88 0 0 0 0 0 0 0 +6.47 15.626 -1.877 0 0 0 0 0 0 0 +6.421 15.646 -1.877 0 0 0 0 0 0 0 +6.354 15.622 -1.871 0 0 0 0 0 0 0 +6.305 15.644 -1.871 0 0 0 0 0 0 0 +6.247 15.639 -1.868 0 0 0 0 0 0 0 +6.201 15.668 -1.87 0 0 0 0 0 0 0 +6.148 15.677 -1.868 0 0 0 0 0 0 0 +6.118 15.673 -1.866 0 0 0 0 0 0 0 +6.064 15.679 -1.865 0 0 0 0 0 0 0 +6.02 15.713 -1.867 0 0 0 0 0 0 0 +5.962 15.71 -1.864 0 0 0 0 0 0 0 +5.915 15.734 -1.864 0 0 0 0 0 0 0 +5.854 15.721 -1.86 0 0 0 0 0 0 0 +5.805 15.741 -1.86 0 0 0 0 0 0 0 +5.751 15.746 -1.859 0 0 0 0 0 0 0 +5.722 15.744 -1.857 0 0 0 0 0 0 0 +5.66 15.726 -1.853 0 0 0 0 0 0 0 +5.6 15.716 -1.849 0 0 0 0 0 0 0 +5.554 15.743 -1.85 0 0 0 0 0 0 0 +5.5 15.747 -1.849 0 0 0 0 0 0 0 +5.444 15.746 -1.846 0 0 0 0 0 0 0 +5.388 15.744 -1.844 0 0 0 0 0 0 0 +5.366 15.758 -1.844 0 0 0 0 0 0 0 +5.307 15.748 -1.841 0 0 0 0 0 0 0 +5.25 15.742 -1.838 0 0 0 0 0 0 0 +5.202 15.762 -1.839 0 0 0 0 0 0 0 +5.14 15.741 -1.834 0 0 0 0 0 0 0 +5.081 15.727 -1.83 0 0 0 0 0 0 0 +5.031 15.741 -1.83 0 0 0 0 0 0 0 +5.007 15.752 -1.83 0 0 0 0 0 0 0 +4.963 15.783 -1.832 0 0 0 0 0 0 0 +4.908 15.784 -1.83 0 0 0 0 0 0 0 +4.868 15.829 -1.834 0 0 0 0 0 0 0 +4.825 15.867 -1.837 0 0 0 0 0 0 0 +4.774 15.877 -1.836 0 0 0 0 0 0 0 +4.726 15.899 -1.837 0 0 0 0 0 0 0 +4.703 15.912 -1.838 0 0 0 0 0 0 0 +4.651 15.921 -1.837 0 0 0 0 0 0 0 +4.599 15.928 -1.836 0 0 0 0 0 0 0 +4.548 15.941 -1.836 0 0 0 0 0 0 0 +4.495 15.943 -1.834 0 0 0 0 0 0 0 +4.443 15.95 -1.833 0 0 0 0 0 0 0 +4.388 15.947 -1.831 0 0 0 0 0 0 0 +4.331 15.937 -1.828 0 0 0 0 0 0 0 +4.299 15.915 -1.825 0 0 0 0 0 0 0 +4.235 15.877 -1.818 0 0 0 0 0 0 0 +4.177 15.859 -1.814 0 0 0 0 0 0 0 +4.117 15.834 -1.809 0 0 0 0 0 0 0 +4.067 15.847 -1.809 0 0 0 0 0 0 0 +1.743 6.911 -0.676 0 0 0 0 0 0 0 +1.69 6.745 -0.654 0 0 0 0 0 0 0 +1.848 7.487 -0.747 0 0 0 0 0 0 0 +2.1 8.639 -0.892 0 0 0 0 0 0 0 +2.347 9.805 -1.038 0 0 0 0 0 0 0 +2.438 10.334 -1.104 0 0 0 0 0 0 0 +2.42 10.405 -1.112 0 0 0 0 0 0 0 +2.522 11.085 -1.196 0 0 0 0 0 0 0 +2.579 11.684 -1.27 0 0 0 0 0 0 0 +2.691 12.379 -1.356 0 0 0 0 0 0 0 +2.676 12.502 -1.37 0 0 0 0 0 0 0 +2.779 13.193 -1.456 0 0 0 0 0 0 0 +2.779 13.402 -1.481 0 0 0 0 0 0 0 +2.641 12.834 -1.409 0 0 0 0 0 0 0 +2.605 12.864 -1.412 0 0 0 0 0 0 0 +2.568 12.891 -1.415 0 0 0 0 0 0 0 +2.869 14.659 -1.635 0 0 0 0 0 0 0 +2.824 14.674 -1.635 0 0 0 0 0 0 0 +2.781 14.7 -1.637 0 0 0 0 0 0 0 +2.735 14.707 -1.637 0 0 0 0 0 0 0 +2.687 14.708 -1.636 0 0 0 0 0 0 0 +2.665 14.72 -1.637 0 0 0 0 0 0 0 +2.616 14.71 -1.635 0 0 0 0 0 0 0 +2.567 14.701 -1.633 0 0 0 0 0 0 0 +0.607 3.488 -0.235 0 0 0 0 0 0 0 +2.521 14.709 -1.633 0 0 0 0 0 0 0 +0.595 3.486 -0.235 0 0 0 0 0 0 0 +0.59 3.527 -0.24 0 0 0 0 0 0 0 +0.586 3.534 -0.241 0 0 0 0 0 0 0 +0.574 3.532 -0.24 0 0 0 0 0 0 0 +0.556 3.491 -0.235 0 0 0 0 0 0 0 +0.543 3.475 -0.233 0 0 0 0 0 0 0 +0.53 3.465 -0.231 0 0 0 0 0 0 0 +0.522 3.486 -0.234 0 0 0 0 0 0 0 +0.513 3.499 -0.235 0 0 0 0 0 0 0 +0.502 3.463 -0.23 0 0 0 0 0 0 0 +0.495 3.494 -0.234 0 0 0 0 0 0 0 +0.488 3.523 -0.237 0 0 0 0 0 0 0 +1.926 14.864 -1.641 0 0 0 0 0 0 0 +1.881 14.882 -1.642 0 0 0 0 0 0 0 +1.836 14.904 -1.644 0 0 0 0 0 0 0 +1.79 14.917 -1.645 0 0 0 0 0 0 0 +1.767 14.922 -1.646 0 0 0 0 0 0 0 +1.722 14.945 -1.648 0 0 0 0 0 0 0 +1.676 14.955 -1.648 0 0 0 0 0 0 0 +1.631 14.982 -1.651 0 0 0 0 0 0 0 +1.584 14.985 -1.651 0 0 0 0 0 0 0 +1.538 15.001 -1.652 0 0 0 0 0 0 0 +1.492 15.014 -1.653 0 0 0 0 0 0 0 +1.47 15.036 -1.656 0 0 0 0 0 0 0 +1.424 15.051 -1.657 0 0 0 0 0 0 0 +1.378 15.071 -1.659 0 0 0 0 0 0 0 +1.33 15.069 -1.658 0 0 0 0 0 0 0 +1.285 15.101 -1.661 0 0 0 0 0 0 0 +1.24 15.143 -1.666 0 0 0 0 0 0 0 +1.195 15.18 -1.67 0 0 0 0 0 0 0 +1.149 15.198 -1.672 0 0 0 0 0 0 0 +1.134 15.324 -1.687 0 0 0 0 0 0 0 +1.125 15.892 -1.757 0 0 0 0 0 0 0 +1.077 15.923 -1.76 0 0 0 0 0 0 0 +1.028 15.946 -1.763 0 0 0 0 0 0 0 +0.979 15.977 -1.766 0 0 0 0 0 0 0 +0.931 16.02 -1.771 0 0 0 0 0 0 0 +0.883 16.05 -1.774 0 0 0 0 0 0 0 +0.859 16.085 -1.778 0 0 0 0 0 0 0 +0.809 16.108 -1.781 0 0 0 0 0 0 0 +0.759 16.122 -1.782 0 0 0 0 0 0 0 +0.713 16.228 -1.795 0 0 0 0 0 0 0 +0.664 16.287 -1.802 0 0 0 0 0 0 0 +0.624 16.599 -1.84 0 0 0 0 0 0 0 +0.565 16.381 -1.813 0 0 0 0 0 0 0 +0.535 16.243 -1.796 0 0 0 0 0 0 0 +0.485 16.276 -1.8 0 0 0 0 0 0 0 +0.434 16.273 -1.799 0 0 0 0 0 0 0 +0.382 16.257 -1.797 0 0 0 0 0 0 0 +0.331 16.264 -1.798 0 0 0 0 0 0 0 +0.28 16.275 -1.799 0 0 0 0 0 0 0 +0.229 16.291 -1.801 0 0 0 0 0 0 0 +0.178 16.278 -1.799 0 0 0 0 0 0 0 +0.152 16.282 -1.8 0 0 0 0 0 0 0 +0.101 16.287 -1.8 0 0 0 0 0 0 0 +0.05 16.301 -1.802 0 0 0 0 0 0 0 +-0.001 16.297 -1.802 0 0 0 0 0 0 0 +-0.052 16.307 -1.803 0 0 0 0 0 0 0 +-0.104 16.307 -1.803 0 0 0 0 0 0 0 +-0.155 16.296 -1.802 0 0 0 0 0 0 0 +-0.18 16.3 -1.802 0 0 0 0 0 0 0 +-0.232 16.307 -1.803 0 0 0 0 0 0 0 +-0.283 16.308 -1.803 0 0 0 0 0 0 0 +-0.334 16.313 -1.804 0 0 0 0 0 0 0 +-0.386 16.322 -1.805 0 0 0 0 0 0 0 +-0.437 16.313 -1.804 0 0 0 0 0 0 0 +-0.488 16.298 -1.802 0 0 0 0 0 0 0 +-0.514 16.309 -1.804 0 0 0 0 0 0 0 +-0.565 16.301 -1.803 0 0 0 0 0 0 0 +-0.616 16.301 -1.803 0 0 0 0 0 0 0 +-0.667 16.283 -1.802 0 0 0 0 0 0 0 +-0.72 16.323 -1.807 0 0 0 0 0 0 0 +-0.774 16.388 -1.815 0 0 0 0 0 0 0 +-0.829 16.449 -1.823 0 0 0 0 0 0 0 +-0.901 16.348 -1.811 0 0 0 0 0 0 0 +-0.951 16.327 -1.809 0 0 0 0 0 0 0 +-1.003 16.332 -1.81 0 0 0 0 0 0 0 +-1.052 16.299 -1.806 0 0 0 0 0 0 0 +-1.105 16.313 -1.808 0 0 0 0 0 0 0 +-1.154 16.286 -1.805 0 0 0 0 0 0 0 +-1.18 16.28 -1.805 0 0 0 0 0 0 0 +-1.231 16.28 -1.805 0 0 0 0 0 0 0 +-1.283 16.28 -1.806 0 0 0 0 0 0 0 +-1.334 16.28 -1.806 0 0 0 0 0 0 0 +-1.386 16.282 -1.807 0 0 0 0 0 0 0 +-1.437 16.277 -1.807 0 0 0 0 0 0 0 +-1.488 16.277 -1.807 0 0 0 0 0 0 0 +-1.514 16.278 -1.808 0 0 0 0 0 0 0 +-1.567 16.295 -1.811 0 0 0 0 0 0 0 +-1.617 16.276 -1.809 0 0 0 0 0 0 0 +-1.67 16.285 -1.811 0 0 0 0 0 0 0 +-1.721 16.28 -1.811 0 0 0 0 0 0 0 +-1.772 16.27 -1.81 0 0 0 0 0 0 0 +-1.825 16.284 -1.812 0 0 0 0 0 0 0 +-1.878 16.29 -1.814 0 0 0 0 0 0 0 +-1.903 16.285 -1.814 0 0 0 0 0 0 0 +-1.955 16.285 -1.814 0 0 0 0 0 0 0 +-2.007 16.285 -1.815 0 0 0 0 0 0 0 +-2.058 16.281 -1.815 0 0 0 0 0 0 0 +-2.111 16.284 -1.817 0 0 0 0 0 0 0 +-2.161 16.275 -1.816 0 0 0 0 0 0 0 +-2.212 16.266 -1.816 0 0 0 0 0 0 0 +-2.239 16.269 -1.817 0 0 0 0 0 0 0 +-2.288 16.252 -1.816 0 0 0 0 0 0 0 +-2.345 16.284 -1.821 0 0 0 0 0 0 0 +-2.404 16.325 -1.827 0 0 0 0 0 0 0 +-2.12 14.118 -1.553 0 0 0 0 0 0 0 +-2.139 13.948 -1.533 0 0 0 0 0 0 0 +-2.16 13.796 -1.515 0 0 0 0 0 0 0 +-2.159 13.652 -1.498 0 0 0 0 0 0 0 +-2.18 13.508 -1.481 0 0 0 0 0 0 0 +-2.199 13.362 -1.463 0 0 0 0 0 0 0 +-2.22 13.23 -1.448 0 0 0 0 0 0 0 +-2.238 13.086 -1.431 0 0 0 0 0 0 0 +-2.259 12.965 -1.416 0 0 0 0 0 0 0 +-2.276 12.825 -1.4 0 0 0 0 0 0 0 +-2.274 12.704 -1.385 0 0 0 0 0 0 0 +-2.291 12.568 -1.369 0 0 0 0 0 0 0 +-2.313 12.469 -1.358 0 0 0 0 0 0 0 +-2.328 12.337 -1.342 0 0 0 0 0 0 0 +-2.346 12.221 -1.328 0 0 0 0 0 0 0 +-2.362 12.1 -1.314 0 0 0 0 0 0 0 +-2.378 11.986 -1.301 0 0 0 0 0 0 0 +-2.394 11.869 -1.287 0 0 0 0 0 0 0 +-2.394 11.774 -1.276 0 0 0 0 0 0 0 +-2.407 11.654 -1.262 0 0 0 0 0 0 0 +-2.423 11.547 -1.249 0 0 0 0 0 0 0 +-2.438 11.441 -1.237 0 0 0 0 0 0 0 +-2.453 11.338 -1.225 0 0 0 0 0 0 0 +-2.465 11.226 -1.212 0 0 0 0 0 0 0 +-2.482 11.134 -1.201 0 0 0 0 0 0 0 +-2.479 11.042 -1.19 0 0 0 0 0 0 0 +-2.493 10.943 -1.179 0 0 0 0 0 0 0 +-2.476 10.714 -1.151 0 0 0 0 0 0 0 +-2.53 10.647 -1.144 0 0 0 0 0 0 0 +-2.548 10.575 -1.136 0 0 0 0 0 0 0 +-2.557 10.467 -1.124 0 0 0 0 0 0 0 +-2.556 10.393 -1.115 0 0 0 0 0 0 0 +-2.57 10.312 -1.105 0 0 0 0 0 0 0 +-2.579 10.212 -1.094 0 0 0 0 0 0 0 +-2.592 10.128 -1.084 0 0 0 0 0 0 0 +-2.605 10.049 -1.075 0 0 0 0 0 0 0 +-2.617 9.966 -1.066 0 0 0 0 0 0 0 +-2.628 9.885 -1.057 0 0 0 0 0 0 0 +-2.625 9.81 -1.047 0 0 0 0 0 0 0 +-2.638 9.737 -1.039 0 0 0 0 0 0 0 +-2.647 9.65 -1.029 0 0 0 0 0 0 0 +-2.66 9.582 -1.022 0 0 0 0 0 0 0 +-2.664 9.48 -1.01 0 0 0 0 0 0 0 +-2.682 9.432 -1.005 0 0 0 0 0 0 0 +-2.697 9.372 -0.998 0 0 0 0 0 0 0 +-2.715 9.325 -0.993 0 0 0 0 0 0 0 +-2.714 9.268 -0.986 0 0 0 0 0 0 0 +-2.726 9.202 -0.979 0 0 0 0 0 0 0 +-2.742 9.152 -0.974 0 0 0 0 0 0 0 +-2.759 9.105 -0.969 0 0 0 0 0 0 0 +-2.775 9.055 -0.963 0 0 0 0 0 0 0 +-2.788 8.998 -0.957 0 0 0 0 0 0 0 +-2.803 8.946 -0.952 0 0 0 0 0 0 0 +-2.805 8.904 -0.947 0 0 0 0 0 0 0 +-2.82 8.853 -0.941 0 0 0 0 0 0 0 +-2.834 8.803 -0.936 0 0 0 0 0 0 0 +-2.819 8.666 -0.92 0 0 0 0 0 0 0 +-2.864 8.71 -0.926 0 0 0 0 0 0 0 +-2.87 8.637 -0.918 0 0 0 0 0 0 0 +-2.891 8.611 -0.916 0 0 0 0 0 0 0 +-2.888 8.555 -0.909 0 0 0 0 0 0 0 +-2.907 8.524 -0.906 0 0 0 0 0 0 0 +-2.916 8.464 -0.9 0 0 0 0 0 0 0 +-2.929 8.417 -0.895 0 0 0 0 0 0 0 +-2.943 8.372 -0.89 0 0 0 0 0 0 0 +-2.959 8.335 -0.887 0 0 0 0 0 0 0 +-2.972 8.288 -0.882 0 0 0 0 0 0 0 +-2.969 8.239 -0.876 0 0 0 0 0 0 0 +-2.98 8.191 -0.871 0 0 0 0 0 0 0 +-2.995 8.151 -0.867 0 0 0 0 0 0 0 +-3.011 8.116 -0.863 0 0 0 0 0 0 0 +-3.031 8.092 -0.862 0 0 0 0 0 0 0 +-3.042 8.045 -0.857 0 0 0 0 0 0 0 +-3.06 8.017 -0.854 0 0 0 0 0 0 0 +-3.072 7.974 -0.85 0 0 0 0 0 0 0 +-3.076 7.947 -0.847 0 0 0 0 0 0 0 +-3.092 7.913 -0.844 0 0 0 0 0 0 0 +-3.108 7.883 -0.841 0 0 0 0 0 0 0 +-3.122 7.846 -0.837 0 0 0 0 0 0 0 +-3.142 7.825 -0.836 0 0 0 0 0 0 0 +-3.152 7.78 -0.831 0 0 0 0 0 0 0 +-3.169 7.75 -0.829 0 0 0 0 0 0 0 +-3.174 7.728 -0.826 0 0 0 0 0 0 0 +-3.19 7.7 -0.824 0 0 0 0 0 0 0 +-3.203 7.662 -0.82 0 0 0 0 0 0 0 +-3.222 7.64 -0.819 0 0 0 0 0 0 0 +-3.232 7.598 -0.815 0 0 0 0 0 0 0 +-3.248 7.57 -0.812 0 0 0 0 0 0 0 +-3.262 7.536 -0.809 0 0 0 0 0 0 0 +-3.266 7.513 -0.806 0 0 0 0 0 0 0 +-3.279 7.479 -0.803 0 0 0 0 0 0 0 +-3.295 7.452 -0.801 0 0 0 0 0 0 0 +-3.305 7.411 -0.797 0 0 0 0 0 0 0 +-3.325 7.395 -0.796 0 0 0 0 0 0 0 +-3.34 7.367 -0.794 0 0 0 0 0 0 0 +-3.366 7.362 -0.795 0 0 0 0 0 0 0 +-3.372 7.345 -0.793 0 0 0 0 0 0 0 +-3.386 7.315 -0.79 0 0 0 0 0 0 0 +-3.403 7.292 -0.789 0 0 0 0 0 0 0 +-3.413 7.254 -0.785 0 0 0 0 0 0 0 +-3.432 7.234 -0.784 0 0 0 0 0 0 0 +-3.45 7.213 -0.782 0 0 0 0 0 0 0 +-3.469 7.195 -0.781 0 0 0 0 0 0 0 +-3.495 7.191 -0.782 0 0 0 0 0 0 0 +-3.501 7.175 -0.781 0 0 0 0 0 0 0 +-3.53 7.178 -0.783 0 0 0 0 0 0 0 +-3.55 7.162 -0.782 0 0 0 0 0 0 0 +-3.583 7.17 -0.785 0 0 0 0 0 0 0 +-3.607 7.162 -0.785 0 0 0 0 0 0 0 +-3.635 7.161 -0.787 0 0 0 0 0 0 0 +-3.655 7.146 -0.786 0 0 0 0 0 0 0 +-3.677 7.16 -0.789 0 0 0 0 0 0 0 +-3.696 7.143 -0.788 0 0 0 0 0 0 0 +-3.729 7.151 -0.791 0 0 0 0 0 0 0 +-3.752 7.141 -0.791 0 0 0 0 0 0 0 +-3.786 7.15 -0.794 0 0 0 0 0 0 0 +-3.811 7.143 -0.795 0 0 0 0 0 0 0 +-3.841 7.145 -0.797 0 0 0 0 0 0 0 +-3.867 7.138 -0.797 0 0 0 0 0 0 0 +-3.89 7.155 -0.801 0 0 0 0 0 0 0 +-3.917 7.151 -0.802 0 0 0 0 0 0 0 +-3.946 7.15 -0.803 0 0 0 0 0 0 0 +-3.971 7.142 -0.804 0 0 0 0 0 0 0 +-4 7.142 -0.806 0 0 0 0 0 0 0 +-4.032 7.147 -0.808 0 0 0 0 0 0 0 +-4.062 7.146 -0.81 0 0 0 0 0 0 0 +-4.08 7.152 -0.812 0 0 0 0 0 0 0 +-4.115 7.161 -0.815 0 0 0 0 0 0 0 +-4.141 7.153 -0.815 0 0 0 0 0 0 0 +-4.174 7.159 -0.818 0 0 0 0 0 0 0 +-4.208 7.165 -0.821 0 0 0 0 0 0 0 +-4.233 7.157 -0.822 0 0 0 0 0 0 0 +-4.268 7.164 -0.824 0 0 0 0 0 0 0 +-4.287 7.169 -0.826 0 0 0 0 0 0 0 +-4.318 7.171 -0.828 0 0 0 0 0 0 0 +-4.286 7.067 -0.815 0 0 0 0 0 0 0 +-4.382 7.174 -0.833 0 0 0 0 0 0 0 +-4.454 7.19 -0.839 0 0 0 0 0 0 0 +-4.487 7.193 -0.842 0 0 0 0 0 0 0 +-4.509 7.202 -0.844 0 0 0 0 0 0 0 +-4.546 7.21 -0.847 0 0 0 0 0 0 0 +-4.579 7.212 -0.85 0 0 0 0 0 0 0 +-4.648 7.27 -0.86 0 0 0 0 0 0 0 +-4.707 7.312 -0.868 0 0 0 0 0 0 0 +-4.793 7.393 -0.882 0 0 0 0 0 0 0 +-4.748 7.274 -0.867 0 0 0 0 0 0 0 +-4.854 7.385 -0.886 0 0 0 0 0 0 0 +-4.892 7.417 -0.892 0 0 0 0 0 0 0 +-4.95 7.454 -0.899 0 0 0 0 0 0 0 +-5 7.478 -0.905 0 0 0 0 0 0 0 +-5.017 7.452 -0.904 0 0 0 0 0 0 0 +-5.025 7.414 -0.9 0 0 0 0 0 0 0 +-5.018 7.354 -0.894 0 0 0 0 0 0 0 +-5.048 7.348 -0.895 0 0 0 0 0 0 0 +-7.302 10.573 -1.378 0 0 0 0 0 0 0 +-7.305 10.507 -1.372 0 0 0 0 0 0 0 +-7.319 10.457 -1.368 0 0 0 0 0 0 0 +-7.33 10.403 -1.363 0 0 0 0 0 0 0 +-7.338 10.346 -1.358 0 0 0 0 0 0 0 +-7.346 10.289 -1.353 0 0 0 0 0 0 0 +-7.35 10.225 -1.347 0 0 0 0 0 0 0 +-7.331 10.166 -1.339 0 0 0 0 0 0 0 +-7.36 10.139 -1.339 0 0 0 0 0 0 0 +-7.362 10.075 -1.333 0 0 0 0 0 0 0 +-7.374 10.026 -1.329 0 0 0 0 0 0 0 +-7.379 9.966 -1.323 0 0 0 0 0 0 0 +-7.385 9.909 -1.318 0 0 0 0 0 0 0 +-7.392 9.854 -1.313 0 0 0 0 0 0 0 +-7.386 9.814 -1.309 0 0 0 0 0 0 0 +-7.402 9.772 -1.306 0 0 0 0 0 0 0 +-7.413 9.722 -1.302 0 0 0 0 0 0 0 +-7.41 9.656 -1.295 0 0 0 0 0 0 0 +-7.427 9.616 -1.292 0 0 0 0 0 0 0 +-7.432 9.559 -1.287 0 0 0 0 0 0 0 +-7.419 9.481 -1.279 0 0 0 0 0 0 0 +-7.415 9.446 -1.275 0 0 0 0 0 0 0 +-7.445 9.423 -1.275 0 0 0 0 0 0 0 +-7.448 9.367 -1.27 0 0 0 0 0 0 0 +-7.457 9.317 -1.266 0 0 0 0 0 0 0 +-7.453 9.254 -1.26 0 0 0 0 0 0 0 +-7.472 9.218 -1.258 0 0 0 0 0 0 0 +-7.467 9.153 -1.251 0 0 0 0 0 0 0 +-7.485 9.116 -1.249 0 0 0 0 0 0 0 +-7.479 9.079 -1.245 0 0 0 0 0 0 0 +-7.496 9.042 -1.243 0 0 0 0 0 0 0 +-7.485 8.971 -1.235 0 0 0 0 0 0 0 +-7.51 8.945 -1.235 0 0 0 0 0 0 0 +-7.515 8.894 -1.23 0 0 0 0 0 0 0 +-7.519 8.842 -1.226 0 0 0 0 0 0 0 +-7.497 8.761 -1.216 0 0 0 0 0 0 0 +-7.511 8.749 -1.216 0 0 0 0 0 0 0 +-7.518 8.701 -1.212 0 0 0 0 0 0 0 +-7.531 8.661 -1.21 0 0 0 0 0 0 0 +-7.534 8.611 -1.205 0 0 0 0 0 0 0 +-7.548 8.572 -1.203 0 0 0 0 0 0 0 +-7.552 8.523 -1.199 0 0 0 0 0 0 0 +-7.559 8.477 -1.195 0 0 0 0 0 0 0 +-7.55 8.44 -1.191 0 0 0 0 0 0 0 +-7.561 8.399 -1.188 0 0 0 0 0 0 0 +-7.566 8.351 -1.184 0 0 0 0 0 0 0 +-7.58 8.314 -1.182 0 0 0 0 0 0 0 +-7.578 8.26 -1.177 0 0 0 0 0 0 0 +-7.593 8.224 -1.175 0 0 0 0 0 0 0 +-7.593 8.173 -1.17 0 0 0 0 0 0 0 +-7.587 8.141 -1.167 0 0 0 0 0 0 0 +-7.57 8.072 -1.159 0 0 0 0 0 0 0 +-7.621 8.076 -1.164 0 0 0 0 0 0 0 +-11.881 12.49 -1.917 0 0 0 0 0 0 0 +-11.931 12.464 -1.919 0 0 0 0 0 0 0 +-11.959 12.415 -1.917 0 0 0 0 0 0 0 +-12.004 12.383 -1.918 0 0 0 0 0 0 0 +-12.029 12.37 -1.919 0 0 0 0 0 0 0 +-12.058 12.322 -1.917 0 0 0 0 0 0 0 +-12.102 12.29 -1.918 0 0 0 0 0 0 0 +-12.14 12.251 -1.918 0 0 0 0 0 0 0 +-12.175 12.209 -1.918 0 0 0 0 0 0 0 +-12.21 12.168 -1.917 0 0 0 0 0 0 0 +-12.245 12.127 -1.917 0 0 0 0 0 0 0 +-12.298 12.102 -1.919 0 0 0 0 0 0 0 +-12.311 12.077 -1.918 0 0 0 0 0 0 0 +-12.35 12.04 -1.918 0 0 0 0 0 0 0 +-12.392 12.005 -1.919 0 0 0 0 0 0 0 +-12.443 11.979 -1.921 0 0 0 0 0 0 0 +-12.483 11.942 -1.922 0 0 0 0 0 0 0 +-12.534 11.915 -1.924 0 0 0 0 0 0 0 +-12.575 11.88 -1.925 0 0 0 0 0 0 0 +-12.598 11.864 -1.925 0 0 0 0 0 0 0 +-12.634 11.823 -1.925 0 0 0 0 0 0 0 +-12.681 11.793 -1.927 0 0 0 0 0 0 0 +-12.714 11.749 -1.926 0 0 0 0 0 0 0 +-12.758 11.716 -1.927 0 0 0 0 0 0 0 +-12.791 11.671 -1.927 0 0 0 0 0 0 0 +-12.833 11.637 -1.928 0 0 0 0 0 0 0 +-12.85 11.615 -1.927 0 0 0 0 0 0 0 +-12.888 11.576 -1.928 0 0 0 0 0 0 0 +-12.915 11.527 -1.926 0 0 0 0 0 0 0 +-12.957 11.492 -1.927 0 0 0 0 0 0 0 +-12.993 11.451 -1.927 0 0 0 0 0 0 0 +-13.026 11.408 -1.927 0 0 0 0 0 0 0 +-13.065 11.369 -1.927 0 0 0 0 0 0 0 +-13.083 11.349 -1.927 0 0 0 0 0 0 0 +-13.123 11.312 -1.928 0 0 0 0 0 0 0 +-13.152 11.265 -1.927 0 0 0 0 0 0 0 +-13.201 11.235 -1.929 0 0 0 0 0 0 0 +-13.232 11.19 -1.928 0 0 0 0 0 0 0 +-13.269 11.15 -1.928 0 0 0 0 0 0 0 +-13.299 11.104 -1.928 0 0 0 0 0 0 0 +-13.335 11.064 -1.928 0 0 0 0 0 0 0 +-13.362 11.05 -1.929 0 0 0 0 0 0 0 +-13.404 11.014 -1.931 0 0 0 0 0 0 0 +-13.428 10.963 -1.929 0 0 0 0 0 0 0 +-13.47 10.927 -1.93 0 0 0 0 0 0 0 +-13.498 10.88 -1.929 0 0 0 0 0 0 0 +-13.535 10.84 -1.93 0 0 0 0 0 0 0 +-13.58 10.806 -1.931 0 0 0 0 0 0 0 +-13.589 10.779 -1.93 0 0 0 0 0 0 0 +-13.631 10.742 -1.931 0 0 0 0 0 0 0 +-13.665 10.699 -1.931 0 0 0 0 0 0 0 +-13.695 10.654 -1.931 0 0 0 0 0 0 0 +-13.735 10.616 -1.932 0 0 0 0 0 0 0 +-13.766 10.571 -1.932 0 0 0 0 0 0 0 +-13.796 10.525 -1.931 0 0 0 0 0 0 0 +-13.81 10.501 -1.931 0 0 0 0 0 0 0 +-13.848 10.462 -1.931 0 0 0 0 0 0 0 +-13.88 10.418 -1.931 0 0 0 0 0 0 0 +-13.91 10.372 -1.931 0 0 0 0 0 0 0 +-13.934 10.322 -1.93 0 0 0 0 0 0 0 +-13.955 10.27 -1.928 0 0 0 0 0 0 0 +-13.962 10.208 -1.924 0 0 0 0 0 0 0 +-14.012 10.21 -1.929 0 0 0 0 0 0 0 +-14.028 10.155 -1.927 0 0 0 0 0 0 0 +-14.058 10.109 -1.927 0 0 0 0 0 0 0 +-14.098 10.071 -1.928 0 0 0 0 0 0 0 +-14.128 10.025 -1.928 0 0 0 0 0 0 0 +-14.153 9.976 -1.927 0 0 0 0 0 0 0 +-14.177 9.927 -1.926 0 0 0 0 0 0 0 +-14.183 9.898 -1.924 0 0 0 0 0 0 0 +-14.193 9.839 -1.921 0 0 0 0 0 0 0 +-14.229 9.798 -1.922 0 0 0 0 0 0 0 +-14.263 9.755 -1.922 0 0 0 0 0 0 0 +-6.735 4.561 -0.799 0 0 0 0 0 0 0 +-6.73 4.527 -0.796 0 0 0 0 0 0 0 +-6.732 4.513 -0.796 0 0 0 0 0 0 0 +-6.767 4.506 -0.799 0 0 0 0 0 0 0 +-6.732 4.452 -0.792 0 0 0 0 0 0 0 +-6.721 4.415 -0.788 0 0 0 0 0 0 0 +-6.743 4.399 -0.789 0 0 0 0 0 0 0 +-6.765 4.383 -0.79 0 0 0 0 0 0 0 +-6.764 4.352 -0.788 0 0 0 0 0 0 0 +-6.811 4.352 -0.793 0 0 0 0 0 0 0 +-14.579 9.249 -1.92 0 0 0 0 0 0 0 +-14.624 9.213 -1.923 0 0 0 0 0 0 0 +-14.654 9.168 -1.923 0 0 0 0 0 0 0 +-14.688 9.125 -1.924 0 0 0 0 0 0 0 +-14.716 9.079 -1.924 0 0 0 0 0 0 0 +-14.76 9.042 -1.926 0 0 0 0 0 0 0 +-14.778 8.989 -1.924 0 0 0 0 0 0 0 +-14.811 8.977 -1.927 0 0 0 0 0 0 0 +-14.838 8.93 -1.927 0 0 0 0 0 0 0 +-14.881 8.892 -1.929 0 0 0 0 0 0 0 +-14.893 8.836 -1.927 0 0 0 0 0 0 0 +-14.93 8.794 -1.928 0 0 0 0 0 0 0 +-14.95 8.743 -1.927 0 0 0 0 0 0 0 +-14.974 8.694 -1.927 0 0 0 0 0 0 0 +-14.99 8.672 -1.927 0 0 0 0 0 0 0 +-15.018 8.626 -1.927 0 0 0 0 0 0 0 +-15.02 8.564 -1.923 0 0 0 0 0 0 0 +-14.168 8.021 -1.8 0 0 0 0 0 0 0 +-14.905 8.375 -1.9 0 0 0 0 0 0 0 +-14.933 8.329 -1.9 0 0 0 0 0 0 0 +-15.095 8.357 -1.919 0 0 0 0 0 0 0 +-15.13 8.346 -1.922 0 0 0 0 0 0 0 +-12.571 6.887 -1.56 0 0 0 0 0 0 0 +-12.585 6.844 -1.56 0 0 0 0 0 0 0 +-12.6 6.801 -1.559 0 0 0 0 0 0 0 +-13.721 7.348 -1.712 0 0 0 0 0 0 0 +-13.881 7.377 -1.731 0 0 0 0 0 0 0 +-13.848 7.304 -1.723 0 0 0 0 0 0 0 +-15.243 8.007 -1.915 0 0 0 0 0 0 0 +-14.088 7.346 -1.751 0 0 0 0 0 0 0 +-7.078 3.649 -0.778 0 0 0 0 0 0 0 +-7.125 3.645 -0.783 0 0 0 0 0 0 0 +-7.202 3.655 -0.792 0 0 0 0 0 0 0 +-7.283 3.667 -0.802 0 0 0 0 0 0 0 +-7.374 3.684 -0.813 0 0 0 0 0 0 0 +-7.45 3.707 -0.822 0 0 0 0 0 0 0 +-7.518 3.711 -0.83 0 0 0 0 0 0 0 +-7.773 3.806 -0.863 0 0 0 0 0 0 0 +-14.306 6.869 -1.749 0 0 0 0 0 0 0 +-14.321 6.821 -1.748 0 0 0 0 0 0 0 +-14.137 6.68 -1.72 0 0 0 0 0 0 0 +-15.639 7.296 -1.919 0 0 0 0 0 0 0 +-15.697 7.263 -1.924 0 0 0 0 0 0 0 +-13.943 6.402 -1.684 0 0 0 0 0 0 0 +-15.735 7.161 -1.923 0 0 0 0 0 0 0 +-15.773 7.119 -1.925 0 0 0 0 0 0 0 +-15.783 7.064 -1.924 0 0 0 0 0 0 0 +-15.781 7.033 -1.922 0 0 0 0 0 0 0 +-15.798 6.981 -1.921 0 0 0 0 0 0 0 +-15.834 6.938 -1.923 0 0 0 0 0 0 0 +-15.867 6.893 -1.925 0 0 0 0 0 0 0 +-15.923 6.858 -1.929 0 0 0 0 0 0 0 +-16.168 6.902 -1.959 0 0 0 0 0 0 0 +-16.588 7.02 -2.012 0 0 0 0 0 0 0 +-16.568 6.981 -2.008 0 0 0 0 0 0 0 +-16.56 6.916 -2.004 0 0 0 0 0 0 0 +-16.576 6.862 -2.003 0 0 0 0 0 0 0 +-16.558 6.793 -1.998 0 0 0 0 0 0 0 +-16.595 6.748 -2 0 0 0 0 0 0 0 +-16.629 6.701 -2.002 0 0 0 0 0 0 0 +-16.648 6.648 -2.002 0 0 0 0 0 0 0 +-16.633 6.612 -1.998 0 0 0 0 0 0 0 +-16.67 6.566 -2 0 0 0 0 0 0 0 +-16.669 6.505 -1.997 0 0 0 0 0 0 0 +-16.702 6.457 -1.999 0 0 0 0 0 0 0 +-16.691 6.393 -1.995 0 0 0 0 0 0 0 +-16.718 6.343 -1.996 0 0 0 0 0 0 0 +-16.706 6.279 -1.992 0 0 0 0 0 0 0 +-16.72 6.254 -1.992 0 0 0 0 0 0 0 +-16.723 6.195 -1.99 0 0 0 0 0 0 0 +-16.737 6.141 -1.989 0 0 0 0 0 0 0 +-16.728 6.078 -1.986 0 0 0 0 0 0 0 +-16.749 6.026 -1.986 0 0 0 0 0 0 0 +-16.758 5.97 -1.985 0 0 0 0 0 0 0 +-16.749 5.907 -1.981 0 0 0 0 0 0 0 +-16.769 5.885 -1.983 0 0 0 0 0 0 0 +-16.759 5.823 -1.979 0 0 0 0 0 0 0 +-16.781 5.771 -1.979 0 0 0 0 0 0 0 +-16.786 5.714 -1.978 0 0 0 0 0 0 0 +-16.795 5.658 -1.976 0 0 0 0 0 0 0 +-16.799 5.601 -1.975 0 0 0 0 0 0 0 +-16.813 5.547 -1.974 0 0 0 0 0 0 0 +-16.81 5.517 -1.973 0 0 0 0 0 0 0 +-16.824 5.463 -1.972 0 0 0 0 0 0 0 +-16.828 5.406 -1.971 0 0 0 0 0 0 0 +-16.831 5.349 -1.969 0 0 0 0 0 0 0 +-16.831 5.29 -1.967 0 0 0 0 0 0 0 +-16.844 5.236 -1.966 0 0 0 0 0 0 0 +-16.858 5.183 -1.966 0 0 0 0 0 0 0 +-16.866 5.156 -1.966 0 0 0 0 0 0 0 +-16.875 5.101 -1.965 0 0 0 0 0 0 0 +-16.881 5.045 -1.964 0 0 0 0 0 0 0 +-16.889 4.99 -1.963 0 0 0 0 0 0 0 +-16.913 4.939 -1.964 0 0 0 0 0 0 0 +-16.903 4.879 -1.961 0 0 0 0 0 0 0 +-16.93 4.829 -1.962 0 0 0 0 0 0 0 +-16.924 4.77 -1.959 0 0 0 0 0 0 0 +-16.924 4.741 -1.958 0 0 0 0 0 0 0 +-16.933 4.686 -1.958 0 0 0 0 0 0 0 +-8.229 2.236 -0.848 0 0 0 0 0 0 0 +-8.209 2.203 -0.844 0 0 0 0 0 0 0 +-8.201 2.173 -0.842 0 0 0 0 0 0 0 +-8.2 2.145 -0.841 0 0 0 0 0 0 0 +-8.193 2.13 -0.84 0 0 0 0 0 0 0 +-8.363 2.117 -0.86 0 0 0 0 0 0 0 +-8.389 2.096 -0.862 0 0 0 0 0 0 0 +-8.062 1.55 -0.809 0 0 0 0 0 0 0 +-8.096 1.452 -0.811 0 0 0 0 0 0 0 +-8.126 1.339 -0.812 0 0 0 0 0 0 0 +-8.158 1.265 -0.814 0 0 0 0 0 0 0 +-8.195 1.179 -0.817 0 0 0 0 0 0 0 +-8.222 1.156 -0.82 0 0 0 0 0 0 0 +-8.21 1.128 -0.818 0 0 0 0 0 0 0 +-8.214 0.958 -0.816 0 0 0 0 0 0 0 +-8.277 0.887 -0.823 0 0 0 0 0 0 0 +-8.297 0.875 -0.825 0 0 0 0 0 0 0 +-8.293 0.849 -0.824 0 0 0 0 0 0 0 +-8.33 0.8 -0.828 0 0 0 0 0 0 0 +-8.341 0.774 -0.829 0 0 0 0 0 0 0 +-8.516 0.548 -0.848 0 0 0 0 0 0 0 +-8.739 0.506 -0.875 0 0 0 0 0 0 0 +-18.734 0.878 -2.103 0 0 0 0 0 0 0 +-18.723 0.819 -2.102 0 0 0 0 0 0 0 +-18.711 0.759 -2.1 0 0 0 0 0 0 0 +-18.595 0.696 -2.085 0 0 0 0 0 0 0 +-18.651 0.669 -2.092 0 0 0 0 0 0 0 +-18.693 0.612 -2.097 0 0 0 0 0 0 0 +-18.695 0.553 -2.097 0 0 0 0 0 0 0 +-18.696 0.494 -2.097 0 0 0 0 0 0 0 +-18.692 0.435 -2.096 0 0 0 0 0 0 0 +-18.705 0.377 -2.098 0 0 0 0 0 0 0 +-18.694 0.318 -2.096 0 0 0 0 0 0 0 +-18.705 0.289 -2.097 0 0 0 0 0 0 0 +-18.698 0.23 -2.096 0 0 0 0 0 0 0 +-18.698 0.171 -2.096 0 0 0 0 0 0 0 +-18.703 0.112 -2.097 0 0 0 0 0 0 0 +-18.679 0.054 -2.094 0 0 0 0 0 0 0 +-18.655 -0.005 -2.091 0 0 0 0 0 0 0 +-18.677 -0.064 -2.094 0 0 0 0 0 0 0 +-18.661 -0.093 -2.092 0 0 0 0 0 0 0 +-18.651 -0.152 -2.091 0 0 0 0 0 0 0 +-18.622 -0.21 -2.087 0 0 0 0 0 0 0 +-18.592 -0.268 -2.083 0 0 0 0 0 0 0 +-18.565 -0.326 -2.08 0 0 0 0 0 0 0 +-18.57 -0.384 -2.081 0 0 0 0 0 0 0 +-18.573 -0.443 -2.082 0 0 0 0 0 0 0 +-18.572 -0.472 -2.082 0 0 0 0 0 0 0 +-18.562 -0.53 -2.081 0 0 0 0 0 0 0 +-18.541 -0.588 -2.078 0 0 0 0 0 0 0 +-18.535 -0.646 -2.078 0 0 0 0 0 0 0 +-18.521 -0.703 -2.076 0 0 0 0 0 0 0 +-18.499 -0.761 -2.074 0 0 0 0 0 0 0 +-18.498 -0.819 -2.074 0 0 0 0 0 0 0 +-18.485 -0.847 -2.073 0 0 0 0 0 0 0 +-18.452 -0.904 -2.069 0 0 0 0 0 0 0 +-18.426 -0.961 -2.066 0 0 0 0 0 0 0 +-18.448 -1.02 -2.069 0 0 0 0 0 0 0 +-18.445 -1.078 -2.069 0 0 0 0 0 0 0 +-18.436 -1.136 -2.068 0 0 0 0 0 0 0 +-18.416 -1.192 -2.066 0 0 0 0 0 0 0 +-18.399 -1.249 -2.065 0 0 0 0 0 0 0 +-18.373 -1.277 -2.062 0 0 0 0 0 0 0 +-18.384 -1.335 -2.064 0 0 0 0 0 0 0 +-18.356 -1.391 -2.061 0 0 0 0 0 0 0 +-18.344 -1.448 -2.06 0 0 0 0 0 0 0 +-18.324 -1.505 -2.058 0 0 0 0 0 0 0 +-18.297 -1.56 -2.055 0 0 0 0 0 0 0 +-16.161 -1.426 -1.792 0 0 0 0 0 0 0 +-16.151 -1.451 -1.792 0 0 0 0 0 0 0 +-16.061 -1.494 -1.781 0 0 0 0 0 0 0 +-18.231 -1.757 -2.049 0 0 0 0 0 0 0 +-18.216 -1.813 -2.048 0 0 0 0 0 0 0 +-18.196 -1.869 -2.046 0 0 0 0 0 0 0 +-18.171 -1.924 -2.044 0 0 0 0 0 0 0 +-18.133 -1.977 -2.04 0 0 0 0 0 0 0 +-18.144 -2.008 -2.042 0 0 0 0 0 0 0 +-18.119 -2.062 -2.04 0 0 0 0 0 0 0 +-18.091 -2.117 -2.037 0 0 0 0 0 0 0 +-18.069 -2.172 -2.035 0 0 0 0 0 0 0 +-18.044 -2.226 -2.033 0 0 0 0 0 0 0 +-18.011 -2.28 -2.03 0 0 0 0 0 0 0 +-17.994 -2.335 -2.028 0 0 0 0 0 0 0 +-17.973 -2.361 -2.026 0 0 0 0 0 0 0 +-17.946 -2.415 -2.024 0 0 0 0 0 0 0 +-17.936 -2.471 -2.024 0 0 0 0 0 0 0 +-17.918 -2.526 -2.022 0 0 0 0 0 0 0 +-17.908 -2.582 -2.022 0 0 0 0 0 0 0 +-17.882 -2.635 -2.02 0 0 0 0 0 0 0 +-17.882 -2.693 -2.021 0 0 0 0 0 0 0 +-17.858 -2.718 -2.018 0 0 0 0 0 0 0 +-17.849 -2.774 -2.018 0 0 0 0 0 0 0 +-17.835 -2.829 -2.018 0 0 0 0 0 0 0 +-17.814 -2.883 -2.016 0 0 0 0 0 0 0 +-17.809 -2.94 -2.017 0 0 0 0 0 0 0 +-17.794 -2.995 -2.016 0 0 0 0 0 0 0 +-17.778 -3.049 -2.015 0 0 0 0 0 0 0 +-17.746 -3.073 -2.012 0 0 0 0 0 0 0 +-17.727 -3.127 -2.011 0 0 0 0 0 0 0 +-17.697 -3.179 -2.008 0 0 0 0 0 0 0 +-17.685 -3.234 -2.008 0 0 0 0 0 0 0 +-17.667 -3.288 -2.007 0 0 0 0 0 0 0 +-17.653 -3.343 -2.006 0 0 0 0 0 0 0 +-17.638 -3.397 -2.006 0 0 0 0 0 0 0 +-17.615 -3.422 -2.004 0 0 0 0 0 0 0 +-17.599 -3.476 -2.003 0 0 0 0 0 0 0 +-17.574 -3.528 -2.001 0 0 0 0 0 0 0 +-17.532 -3.577 -1.997 0 0 0 0 0 0 0 +-17.499 -3.628 -1.995 0 0 0 0 0 0 0 +-17.47 -3.679 -1.993 0 0 0 0 0 0 0 +-17.431 -3.728 -1.989 0 0 0 0 0 0 0 +-17.421 -3.783 -1.989 0 0 0 0 0 0 0 +-17.392 -3.805 -1.986 0 0 0 0 0 0 0 +-17.361 -3.856 -1.984 0 0 0 0 0 0 0 +-17.329 -3.906 -1.982 0 0 0 0 0 0 0 +-17.301 -3.957 -1.98 0 0 0 0 0 0 0 +-17.275 -4.008 -1.978 0 0 0 0 0 0 0 +-17.255 -4.06 -1.977 0 0 0 0 0 0 0 +-17.223 -4.11 -1.975 0 0 0 0 0 0 0 +-17.191 -4.131 -1.971 0 0 0 0 0 0 0 +-17.161 -4.181 -1.969 0 0 0 0 0 0 0 +-17.125 -4.229 -1.966 0 0 0 0 0 0 0 +-17.086 -4.276 -1.963 0 0 0 0 0 0 0 +-17.057 -4.326 -1.961 0 0 0 0 0 0 0 +-17.04 -4.378 -1.961 0 0 0 0 0 0 0 +-17.016 -4.429 -1.959 0 0 0 0 0 0 0 +-16.99 -4.451 -1.957 0 0 0 0 0 0 0 +-16.951 -4.498 -1.954 0 0 0 0 0 0 0 +-16.918 -4.546 -1.951 0 0 0 0 0 0 0 +-16.894 -4.596 -1.95 0 0 0 0 0 0 0 +-16.87 -4.647 -1.949 0 0 0 0 0 0 0 +-16.842 -4.696 -1.947 0 0 0 0 0 0 0 +-16.823 -4.748 -1.947 0 0 0 0 0 0 0 +-16.808 -4.772 -1.946 0 0 0 0 0 0 0 +-16.789 -4.824 -1.945 0 0 0 0 0 0 0 +-16.755 -4.871 -1.943 0 0 0 0 0 0 0 +-16.722 -4.918 -1.941 0 0 0 0 0 0 0 +-16.699 -4.969 -1.94 0 0 0 0 0 0 0 +-16.67 -5.017 -1.938 0 0 0 0 0 0 0 +-16.629 -5.062 -1.935 0 0 0 0 0 0 0 +-16.61 -5.084 -1.933 0 0 0 0 0 0 0 +-16.613 -5.143 -1.936 0 0 0 0 0 0 0 +-16.568 -5.186 -1.932 0 0 0 0 0 0 0 +-16.535 -5.232 -1.93 0 0 0 0 0 0 0 +-16.507 -5.281 -1.928 0 0 0 0 0 0 0 +-16.502 -5.336 -1.93 0 0 0 0 0 0 0 +-16.462 -5.381 -1.927 0 0 0 0 0 0 0 +-16.448 -5.405 -1.926 0 0 0 0 0 0 0 +-16.425 -5.454 -1.926 0 0 0 0 0 0 0 +-16.412 -5.507 -1.926 0 0 0 0 0 0 0 +-16.378 -5.553 -1.924 0 0 0 0 0 0 0 +-16.364 -5.606 -1.924 0 0 0 0 0 0 0 +-16.348 -5.658 -1.925 0 0 0 0 0 0 0 +-16.323 -5.706 -1.924 0 0 0 0 0 0 0 +-16.323 -5.735 -1.925 0 0 0 0 0 0 0 +-16.298 -5.784 -1.924 0 0 0 0 0 0 0 +-16.283 -5.836 -1.924 0 0 0 0 0 0 0 +-16.261 -5.886 -1.924 0 0 0 0 0 0 0 +-16.227 -5.932 -1.922 0 0 0 0 0 0 0 +-16.222 -5.988 -1.924 0 0 0 0 0 0 0 +-16.169 -6.026 -1.919 0 0 0 0 0 0 0 +-16.173 -6.056 -1.921 0 0 0 0 0 0 0 +-16.126 -6.096 -1.917 0 0 0 0 0 0 0 +-16.097 -6.144 -1.916 0 0 0 0 0 0 0 +-16.082 -6.195 -1.917 0 0 0 0 0 0 0 +-16.057 -6.244 -1.916 0 0 0 0 0 0 0 +-16.031 -6.292 -1.915 0 0 0 0 0 0 0 +-16.025 -6.348 -1.917 0 0 0 0 0 0 0 +-16.003 -6.368 -1.915 0 0 0 0 0 0 0 +-15.989 -6.421 -1.916 0 0 0 0 0 0 0 +-15.954 -6.465 -1.914 0 0 0 0 0 0 0 +-15.926 -6.512 -1.913 0 0 0 0 0 0 0 +-15.902 -6.56 -1.913 0 0 0 0 0 0 0 +-15.891 -6.614 -1.914 0 0 0 0 0 0 0 +-15.853 -6.657 -1.912 0 0 0 0 0 0 0 +-15.801 -6.694 -1.908 0 0 0 0 0 0 0 +-15.772 -6.711 -1.905 0 0 0 0 0 0 0 +-15.797 -6.78 -1.911 0 0 0 0 0 0 0 +-15.839 -6.857 -1.92 0 0 0 0 0 0 0 +-15.828 -6.912 -1.921 0 0 0 0 0 0 0 +-15.799 -6.958 -1.92 0 0 0 0 0 0 0 +-15.77 -7.005 -1.919 0 0 0 0 0 0 0 +-15.753 -7.057 -1.92 0 0 0 0 0 0 0 +-15.737 -7.079 -1.919 0 0 0 0 0 0 0 +-15.684 -7.114 -1.915 0 0 0 0 0 0 0 +-15.678 -7.171 -1.917 0 0 0 0 0 0 0 +-15.693 -7.238 -1.922 0 0 0 0 0 0 0 +-15.677 -7.29 -1.923 0 0 0 0 0 0 0 +-15.676 -7.35 -1.926 0 0 0 0 0 0 0 +-15.063 -7.119 -1.846 0 0 0 0 0 0 0 +-15.374 -7.296 -1.89 0 0 0 0 0 0 0 +-15.686 -7.505 -1.936 0 0 0 0 0 0 0 +-15.675 -7.56 -1.937 0 0 0 0 0 0 0 +-15.66 -7.614 -1.938 0 0 0 0 0 0 0 +-15.579 -7.635 -1.931 0 0 0 0 0 0 0 +-14.733 -7.277 -1.818 0 0 0 0 0 0 0 +-14.703 -7.319 -1.817 0 0 0 0 0 0 0 +-14.837 -7.415 -1.837 0 0 0 0 0 0 0 +-15.609 -7.864 -1.947 0 0 0 0 0 0 0 +-15.602 -7.922 -1.949 0 0 0 0 0 0 0 +-15.564 -7.965 -1.947 0 0 0 0 0 0 0 +-15.559 -8.024 -1.95 0 0 0 0 0 0 0 +-15.546 -8.079 -1.952 0 0 0 0 0 0 0 +-15.52 -8.128 -1.952 0 0 0 0 0 0 0 +-15.513 -8.155 -1.952 0 0 0 0 0 0 0 +-15.498 -8.209 -1.954 0 0 0 0 0 0 0 +-15.463 -8.253 -1.953 0 0 0 0 0 0 0 +-15.441 -8.304 -1.953 0 0 0 0 0 0 0 +-15.409 -8.349 -1.952 0 0 0 0 0 0 0 +-15.392 -8.402 -1.954 0 0 0 0 0 0 0 +-15.372 -8.455 -1.955 0 0 0 0 0 0 0 +-15.359 -8.479 -1.955 0 0 0 0 0 0 0 +-15.322 -8.521 -1.953 0 0 0 0 0 0 0 +-15.317 -8.582 -1.956 0 0 0 0 0 0 0 +-15.292 -8.631 -1.957 0 0 0 0 0 0 0 +-15.273 -8.684 -1.958 0 0 0 0 0 0 0 +-15.255 -8.737 -1.959 0 0 0 0 0 0 0 +-15.236 -8.79 -1.96 0 0 0 0 0 0 0 +-15.237 -8.822 -1.962 0 0 0 0 0 0 0 +-15.206 -8.868 -1.962 0 0 0 0 0 0 0 +-15.194 -8.925 -1.964 0 0 0 0 0 0 0 +-15.169 -8.975 -1.965 0 0 0 0 0 0 0 +-15.139 -9.021 -1.964 0 0 0 0 0 0 0 +-15.121 -9.075 -1.966 0 0 0 0 0 0 0 +-15.089 -9.12 -1.965 0 0 0 0 0 0 0 +-15.072 -9.175 -1.967 0 0 0 0 0 0 0 +-15.076 -9.21 -1.97 0 0 0 0 0 0 0 +-15.069 -9.271 -1.973 0 0 0 0 0 0 0 +-15.043 -9.32 -1.973 0 0 0 0 0 0 0 +-15.017 -9.37 -1.974 0 0 0 0 0 0 0 +-14.989 -9.418 -1.974 0 0 0 0 0 0 0 +-14.986 -9.482 -1.978 0 0 0 0 0 0 0 +-14.972 -9.539 -1.98 0 0 0 0 0 0 0 +-14.963 -9.566 -1.981 0 0 0 0 0 0 0 +-14.94 -9.618 -1.982 0 0 0 0 0 0 0 +-14.928 -9.676 -1.985 0 0 0 0 0 0 0 +-14.916 -9.735 -1.987 0 0 0 0 0 0 0 +-14.893 -9.788 -1.989 0 0 0 0 0 0 0 +-14.871 -9.84 -1.99 0 0 0 0 0 0 0 +-14.868 -9.905 -1.994 0 0 0 0 0 0 0 +-14.847 -9.925 -1.993 0 0 0 0 0 0 0 +-14.826 -9.978 -1.995 0 0 0 0 0 0 0 +-14.772 -10.009 -1.991 0 0 0 0 0 0 0 +-10.677 -7.325 -1.39 0 0 0 0 0 0 0 +-10.628 -7.34 -1.386 0 0 0 0 0 0 0 +-10.639 -7.397 -1.392 0 0 0 0 0 0 0 +-10.592 -7.389 -1.386 0 0 0 0 0 0 0 +-10.533 -7.397 -1.381 0 0 0 0 0 0 0 +-10.482 -7.411 -1.377 0 0 0 0 0 0 0 +-10.457 -7.442 -1.376 0 0 0 0 0 0 0 +-10.438 -7.479 -1.377 0 0 0 0 0 0 0 +-10.444 -7.532 -1.382 0 0 0 0 0 0 0 +-10.438 -7.578 -1.384 0 0 0 0 0 0 0 +-10.434 -7.6 -1.386 0 0 0 0 0 0 0 +-10.404 -7.628 -1.385 0 0 0 0 0 0 0 +-10.435 -7.702 -1.393 0 0 0 0 0 0 0 +-14.325 -10.655 -1.993 0 0 0 0 0 0 0 +-14.282 -10.693 -1.991 0 0 0 0 0 0 0 +-14.264 -10.75 -1.994 0 0 0 0 0 0 0 +-14.237 -10.799 -1.995 0 0 0 0 0 0 0 +-14.22 -10.822 -1.995 0 0 0 0 0 0 0 +-14.181 -10.863 -1.994 0 0 0 0 0 0 0 +-14.155 -10.913 -1.995 0 0 0 0 0 0 0 +-14.114 -10.953 -1.994 0 0 0 0 0 0 0 +-14.094 -11.008 -1.996 0 0 0 0 0 0 0 +-14.039 -11.036 -1.993 0 0 0 0 0 0 0 +-14.024 -11.096 -1.996 0 0 0 0 0 0 0 +-14 -11.113 -1.995 0 0 0 0 0 0 0 +-13.956 -11.15 -1.994 0 0 0 0 0 0 0 +-13.923 -11.195 -1.994 0 0 0 0 0 0 0 +-13.884 -11.236 -1.994 0 0 0 0 0 0 0 +-13.844 -11.276 -1.993 0 0 0 0 0 0 0 +-13.801 -11.313 -1.992 0 0 0 0 0 0 0 +-13.769 -11.359 -1.992 0 0 0 0 0 0 0 +-13.739 -11.407 -1.993 0 0 0 0 0 0 0 +-13.703 -11.413 -1.99 0 0 0 0 0 0 0 +-13.671 -11.46 -1.991 0 0 0 0 0 0 0 +-13.628 -11.497 -1.99 0 0 0 0 0 0 0 +-13.596 -11.543 -1.99 0 0 0 0 0 0 0 +-13.555 -11.582 -1.99 0 0 0 0 0 0 0 +-13.519 -11.625 -1.99 0 0 0 0 0 0 0 +-13.499 -11.681 -1.992 0 0 0 0 0 0 0 +-13.494 -11.714 -1.995 0 0 0 0 0 0 0 +-13.469 -11.767 -1.996 0 0 0 0 0 0 0 +-13.453 -11.828 -2 0 0 0 0 0 0 0 +-13.43 -11.883 -2.002 0 0 0 0 0 0 0 +-13.378 -11.912 -2 0 0 0 0 0 0 0 +-13.37 -11.981 -2.005 0 0 0 0 0 0 0 +-13.331 -12.021 -2.005 0 0 0 0 0 0 0 +-13.324 -12.053 -2.006 0 0 0 0 0 0 0 +-13.314 -12.12 -2.011 0 0 0 0 0 0 0 +-13.283 -12.168 -2.012 0 0 0 0 0 0 0 +-13.271 -12.234 -2.017 0 0 0 0 0 0 0 +-13.269 -12.31 -2.023 0 0 0 0 0 0 0 +-13.265 -12.384 -2.029 0 0 0 0 0 0 0 +-13.275 -12.472 -2.037 0 0 0 0 0 0 0 +-13.288 -12.524 -2.043 0 0 0 0 0 0 0 +-13.291 -12.605 -2.05 0 0 0 0 0 0 0 +-13.293 -12.687 -2.057 0 0 0 0 0 0 0 +-13.287 -12.762 -2.063 0 0 0 0 0 0 0 +-13.294 -12.849 -2.071 0 0 0 0 0 0 0 +-13.289 -12.925 -2.077 0 0 0 0 0 0 0 +-13.299 -13.017 -2.085 0 0 0 0 0 0 0 +-13.306 -13.064 -2.09 0 0 0 0 0 0 0 +-13.3 -13.141 -2.096 0 0 0 0 0 0 0 +-13.284 -13.208 -2.101 0 0 0 0 0 0 0 +-13.287 -13.295 -2.108 0 0 0 0 0 0 0 +-13.263 -13.355 -2.112 0 0 0 0 0 0 0 +-13.216 -13.391 -2.111 0 0 0 0 0 0 0 +-13.138 -13.395 -2.104 0 0 0 0 0 0 0 +-13.094 -13.393 -2.1 0 0 0 0 0 0 0 +-13.027 -13.408 -2.096 0 0 0 0 0 0 0 +-12.967 -13.431 -2.093 0 0 0 0 0 0 0 +-12.902 -13.447 -2.089 0 0 0 0 0 0 0 +-12.853 -13.48 -2.087 0 0 0 0 0 0 0 +-12.792 -13.502 -2.084 0 0 0 0 0 0 0 +-12.739 -13.53 -2.082 0 0 0 0 0 0 0 +-12.7 -13.532 -2.079 0 0 0 0 0 0 0 +-12.643 -13.555 -2.076 0 0 0 0 0 0 0 +-12.575 -13.567 -2.072 0 0 0 0 0 0 0 +-12.524 -13.598 -2.07 0 0 0 0 0 0 0 +-12.446 -13.599 -2.064 0 0 0 0 0 0 0 +-12.402 -13.637 -2.064 0 0 0 0 0 0 0 +-12.331 -13.645 -2.059 0 0 0 0 0 0 0 +-12.287 -13.639 -2.054 0 0 0 0 0 0 0 +-12.222 -13.652 -2.05 0 0 0 0 0 0 0 +-12.159 -13.668 -2.047 0 0 0 0 0 0 0 +-12.106 -13.695 -2.045 0 0 0 0 0 0 0 +-12.03 -13.695 -2.039 0 0 0 0 0 0 0 +-11.957 -13.698 -2.033 0 0 0 0 0 0 0 +-11.903 -13.724 -2.031 0 0 0 0 0 0 0 +-11.839 -13.693 -2.023 0 0 0 0 0 0 0 +-11.789 -13.723 -2.022 0 0 0 0 0 0 0 +-11.731 -13.741 -2.019 0 0 0 0 0 0 0 +-11.667 -13.754 -2.015 0 0 0 0 0 0 0 +-11.607 -13.771 -2.012 0 0 0 0 0 0 0 +-11.549 -13.789 -2.009 0 0 0 0 0 0 0 +-11.477 -13.792 -2.004 0 0 0 0 0 0 0 +-11.437 -13.787 -2 0 0 0 0 0 0 0 +-11.383 -13.81 -1.998 0 0 0 0 0 0 0 +-11.316 -13.817 -1.993 0 0 0 0 0 0 0 +-11.264 -13.841 -1.992 0 0 0 0 0 0 0 +-11.205 -13.858 -1.989 0 0 0 0 0 0 0 +-11.141 -13.867 -1.985 0 0 0 0 0 0 0 +-11.069 -13.866 -1.979 0 0 0 0 0 0 0 +-11.042 -13.877 -1.978 0 0 0 0 0 0 0 +-10.98 -13.889 -1.974 0 0 0 0 0 0 0 +-10.93 -13.915 -1.973 0 0 0 0 0 0 0 +-10.864 -13.921 -1.969 0 0 0 0 0 0 0 +-10.818 -13.952 -1.968 0 0 0 0 0 0 0 +-10.764 -13.973 -1.966 0 0 0 0 0 0 0 +-10.718 -14.004 -1.966 0 0 0 0 0 0 0 +-10.685 -14.007 -1.964 0 0 0 0 0 0 0 +-10.641 -14.04 -1.964 0 0 0 0 0 0 0 +-10.591 -14.066 -1.962 0 0 0 0 0 0 0 +-10.542 -14.092 -1.961 0 0 0 0 0 0 0 +-10.5 -14.129 -1.962 0 0 0 0 0 0 0 +-10.444 -14.146 -1.959 0 0 0 0 0 0 0 +-10.394 -14.17 -1.958 0 0 0 0 0 0 0 +-10.347 -14.2 -1.958 0 0 0 0 0 0 0 +-10.316 -14.205 -1.956 0 0 0 0 0 0 0 +-10.262 -14.224 -1.954 0 0 0 0 0 0 0 +-10.203 -14.235 -1.951 0 0 0 0 0 0 0 +-10.149 -14.254 -1.949 0 0 0 0 0 0 0 +-10.096 -14.275 -1.947 0 0 0 0 0 0 0 +-10.041 -14.292 -1.945 0 0 0 0 0 0 0 +-9.982 -14.304 -1.942 0 0 0 0 0 0 0 +-9.955 -14.313 -1.941 0 0 0 0 0 0 0 +-9.902 -14.333 -1.939 0 0 0 0 0 0 0 +-9.855 -14.36 -1.939 0 0 0 0 0 0 0 +-9.804 -14.383 -1.938 0 0 0 0 0 0 0 +-9.757 -14.41 -1.937 0 0 0 0 0 0 0 +-9.702 -14.428 -1.935 0 0 0 0 0 0 0 +-9.648 -14.445 -1.933 0 0 0 0 0 0 0 +-9.626 -14.46 -1.933 0 0 0 0 0 0 0 +-9.565 -14.467 -1.93 0 0 0 0 0 0 0 +-9.518 -14.495 -1.93 0 0 0 0 0 0 0 +-9.469 -14.52 -1.929 0 0 0 0 0 0 0 +-9.416 -14.538 -1.927 0 0 0 0 0 0 0 +-9.374 -14.573 -1.928 0 0 0 0 0 0 0 +-9.316 -14.584 -1.925 0 0 0 0 0 0 0 +-9.294 -14.6 -1.926 0 0 0 0 0 0 0 +-9.245 -14.624 -1.925 0 0 0 0 0 0 0 +-9.196 -14.648 -1.924 0 0 0 0 0 0 0 +-9.147 -14.672 -1.923 0 0 0 0 0 0 0 +-9.092 -14.687 -1.921 0 0 0 0 0 0 0 +-9.044 -14.712 -1.921 0 0 0 0 0 0 0 +-8.988 -14.723 -1.918 0 0 0 0 0 0 0 +-8.97 -14.746 -1.92 0 0 0 0 0 0 0 +-8.928 -14.783 -1.921 0 0 0 0 0 0 0 +-8.868 -14.787 -1.918 0 0 0 0 0 0 0 +-8.817 -14.808 -1.917 0 0 0 0 0 0 0 +-8.76 -14.818 -1.914 0 0 0 0 0 0 0 +-8.717 -14.851 -1.915 0 0 0 0 0 0 0 +-8.667 -14.873 -1.914 0 0 0 0 0 0 0 +-8.649 -14.895 -1.915 0 0 0 0 0 0 0 +-8.602 -14.922 -1.915 0 0 0 0 0 0 0 +-8.563 -14.963 -1.917 0 0 0 0 0 0 0 +-8.498 -14.959 -1.913 0 0 0 0 0 0 0 +-8.445 -14.975 -1.911 0 0 0 0 0 0 0 +-8.396 -14.998 -1.911 0 0 0 0 0 0 0 +-8.339 -15.005 -1.908 0 0 0 0 0 0 0 +-8.302 -14.996 -1.905 0 0 0 0 0 0 0 +-8.246 -15.004 -1.903 0 0 0 0 0 0 0 +-8.213 -15.056 -1.906 0 0 0 0 0 0 0 +-8.17 -15.091 -1.908 0 0 0 0 0 0 0 +-8.104 -15.081 -1.903 0 0 0 0 0 0 0 +-8.051 -15.096 -1.901 0 0 0 0 0 0 0 +-8.018 -15.15 -1.905 0 0 0 0 0 0 0 +-7.939 -15.171 -1.903 0 0 0 0 0 0 0 +-7.877 -15.17 -1.899 0 0 0 0 0 0 0 +-7.822 -15.18 -1.897 0 0 0 0 0 0 0 +-7.771 -15.198 -1.896 0 0 0 0 0 0 0 +-7.708 -15.192 -1.892 0 0 0 0 0 0 0 +-7.657 -15.211 -1.891 0 0 0 0 0 0 0 +-7.62 -15.196 -1.888 0 0 0 0 0 0 0 +-7.58 -15.236 -1.89 0 0 0 0 0 0 0 +-7.521 -15.237 -1.887 0 0 0 0 0 0 0 +-7.472 -15.258 -1.887 0 0 0 0 0 0 0 +-7.418 -15.269 -1.885 0 0 0 0 0 0 0 +-7.37 -15.292 -1.885 0 0 0 0 0 0 0 +-7.318 -15.307 -1.884 0 0 0 0 0 0 0 +-7.297 -15.323 -1.884 0 0 0 0 0 0 0 +-7.246 -15.341 -1.884 0 0 0 0 0 0 0 +-7.198 -15.365 -1.884 0 0 0 0 0 0 0 +-7.147 -15.381 -1.883 0 0 0 0 0 0 0 +-7.094 -15.394 -1.882 0 0 0 0 0 0 0 +-7.045 -15.414 -1.881 0 0 0 0 0 0 0 +-6.996 -15.435 -1.881 0 0 0 0 0 0 0 +-6.967 -15.437 -1.88 0 0 0 0 0 0 0 +-6.923 -15.467 -1.881 0 0 0 0 0 0 0 +-6.874 -15.487 -1.881 0 0 0 0 0 0 0 +-6.816 -15.489 -1.878 0 0 0 0 0 0 0 +-6.772 -15.521 -1.88 0 0 0 0 0 0 0 +-6.703 -15.495 -1.873 0 0 0 0 0 0 0 +-6.694 -15.609 -1.886 0 0 0 0 0 0 0 +-6.622 -15.508 -1.871 0 0 0 0 0 0 0 +-6.58 -15.545 -1.873 0 0 0 0 0 0 0 +-6.518 -15.533 -1.869 0 0 0 0 0 0 0 +-6.463 -15.539 -1.867 0 0 0 0 0 0 0 +-6.409 -15.546 -1.865 0 0 0 0 0 0 0 +-6.359 -15.564 -1.865 0 0 0 0 0 0 0 +-6.314 -15.593 -1.866 0 0 0 0 0 0 0 +-6.262 -15.606 -1.865 0 0 0 0 0 0 0 +-6.229 -15.595 -1.862 0 0 0 0 0 0 0 +-6.182 -15.62 -1.863 0 0 0 0 0 0 0 +-6.13 -15.632 -1.862 0 0 0 0 0 0 0 +-6.075 -15.635 -1.86 0 0 0 0 0 0 0 +-6.023 -15.646 -1.859 0 0 0 0 0 0 0 +-5.967 -15.648 -1.857 0 0 0 0 0 0 0 +-5.896 -15.682 -1.858 0 0 0 0 0 0 0 +-5.84 -15.684 -1.855 0 0 0 0 0 0 0 +-5.783 -15.681 -1.853 0 0 0 0 0 0 0 +-5.737 -15.709 -1.854 0 0 0 0 0 0 0 +-5.687 -15.723 -1.853 0 0 0 0 0 0 0 +-5.633 -15.73 -1.852 0 0 0 0 0 0 0 +-5.607 -15.735 -1.851 0 0 0 0 0 0 0 +-5.558 -15.752 -1.851 0 0 0 0 0 0 0 +-5.506 -15.764 -1.851 0 0 0 0 0 0 0 +-5.451 -15.766 -1.849 0 0 0 0 0 0 0 +-5.401 -15.781 -1.849 0 0 0 0 0 0 0 +-5.347 -15.783 -1.847 0 0 0 0 0 0 0 +-5.299 -15.807 -1.848 0 0 0 0 0 0 0 +-5.249 -15.822 -1.847 0 0 0 0 0 0 0 +-5.231 -15.849 -1.85 0 0 0 0 0 0 0 +-5.194 -15.905 -1.855 0 0 0 0 0 0 0 +-5.136 -15.899 -1.852 0 0 0 0 0 0 0 +-4.999 -15.986 -1.857 0 0 0 0 0 0 0 +-4.938 -15.97 -1.853 0 0 0 0 0 0 0 +-4.894 -15.913 -1.845 0 0 0 0 0 0 0 +-4.842 -15.924 -1.844 0 0 0 0 0 0 0 +-4.788 -15.924 -1.842 0 0 0 0 0 0 0 +-4.739 -15.945 -1.843 0 0 0 0 0 0 0 +-4.68 -15.927 -1.839 0 0 0 0 0 0 0 +-4.631 -15.946 -1.839 0 0 0 0 0 0 0 +-4.583 -15.968 -1.84 0 0 0 0 0 0 0 +-4.561 -15.987 -1.842 0 0 0 0 0 0 0 +-4.507 -15.987 -1.84 0 0 0 0 0 0 0 +-4.459 -16.007 -1.841 0 0 0 0 0 0 0 +-4.405 -16.008 -1.839 0 0 0 0 0 0 0 +-4.355 -16.025 -1.84 0 0 0 0 0 0 0 +-4.306 -16.045 -1.84 0 0 0 0 0 0 0 +-4.257 -16.06 -1.841 0 0 0 0 0 0 0 +-4.229 -16.057 -1.839 0 0 0 0 0 0 0 +-4.179 -16.072 -1.84 0 0 0 0 0 0 0 +-4.127 -16.081 -1.839 0 0 0 0 0 0 0 +-4.08 -16.106 -1.841 0 0 0 0 0 0 0 +-4.027 -16.111 -1.84 0 0 0 0 0 0 0 +-3.975 -16.118 -1.839 0 0 0 0 0 0 0 +-3.926 -16.138 -1.84 0 0 0 0 0 0 0 +-3.902 -16.148 -1.84 0 0 0 0 0 0 0 +-3.846 -16.137 -1.837 0 0 0 0 0 0 0 +-3.803 -16.184 -1.842 0 0 0 0 0 0 0 +-3.755 -16.207 -1.843 0 0 0 0 0 0 0 +-3.711 -16.25 -1.847 0 0 0 0 0 0 0 +-3.714 -16.506 -1.878 0 0 0 0 0 0 0 +-3.599 -16.226 -1.841 0 0 0 0 0 0 0 +-3.565 -16.197 -1.837 0 0 0 0 0 0 0 +-3.498 -16.131 -1.827 0 0 0 0 0 0 0 +-3.437 -16.095 -1.821 0 0 0 0 0 0 0 +-3.381 -16.076 -1.818 0 0 0 0 0 0 0 +-3.326 -16.067 -1.815 0 0 0 0 0 0 0 +-3.27 -16.053 -1.812 0 0 0 0 0 0 0 +-3.216 -16.045 -1.81 0 0 0 0 0 0 0 +-3.189 -16.037 -1.808 0 0 0 0 0 0 0 +-3.134 -16.023 -1.805 0 0 0 0 0 0 0 +-3.083 -16.029 -1.805 0 0 0 0 0 0 0 +-3.03 -16.027 -1.803 0 0 0 0 0 0 0 +-2.979 -16.031 -1.802 0 0 0 0 0 0 0 +-2.929 -16.044 -1.803 0 0 0 0 0 0 0 +-2.873 -16.02 -1.799 0 0 0 0 0 0 0 +-2.848 -16.03 -1.8 0 0 0 0 0 0 0 +-2.804 -16.076 -1.804 0 0 0 0 0 0 0 +-2.747 -16.044 -1.799 0 0 0 0 0 0 0 +-2.696 -16.05 -1.799 0 0 0 0 0 0 0 +-2.645 -16.051 -1.798 0 0 0 0 0 0 0 +-2.596 -16.069 -1.799 0 0 0 0 0 0 0 +-2.545 -16.079 -1.799 0 0 0 0 0 0 0 +-2.519 -16.075 -1.798 0 0 0 0 0 0 0 +-2.471 -16.1 -1.801 0 0 0 0 0 0 0 +-2.418 -16.09 -1.798 0 0 0 0 0 0 0 +-2.371 -16.12 -1.801 0 0 0 0 0 0 0 +-2.319 -16.119 -1.8 0 0 0 0 0 0 0 +-2.271 -16.144 -1.802 0 0 0 0 0 0 0 +-2.221 -16.163 -1.804 0 0 0 0 0 0 0 +-2.198 -16.178 -1.805 0 0 0 0 0 0 0 +-2.149 -16.201 -1.807 0 0 0 0 0 0 0 +-2.1 -16.223 -1.809 0 0 0 0 0 0 0 +-2.051 -16.243 -1.811 0 0 0 0 0 0 0 +-2.001 -16.262 -1.812 0 0 0 0 0 0 0 +-1.951 -16.276 -1.813 0 0 0 0 0 0 0 +-1.902 -16.303 -1.816 0 0 0 0 0 0 0 +-1.88 -16.332 -1.819 0 0 0 0 0 0 0 +-1.831 -16.362 -1.822 0 0 0 0 0 0 0 +-1.781 -16.377 -1.823 0 0 0 0 0 0 0 +-1.729 -16.383 -1.823 0 0 0 0 0 0 0 +-1.679 -16.398 -1.824 0 0 0 0 0 0 0 +-1.626 -16.391 -1.823 0 0 0 0 0 0 0 +-1.575 -16.404 -1.824 0 0 0 0 0 0 0 +-1.548 -16.397 -1.823 0 0 0 0 0 0 0 +-1.498 -16.417 -1.825 0 0 0 0 0 0 0 +-1.445 -16.406 -1.823 0 0 0 0 0 0 0 +-1.393 -16.401 -1.821 0 0 0 0 0 0 0 +-1.341 -16.399 -1.821 0 0 0 0 0 0 0 +-1.288 -16.383 -1.818 0 0 0 0 0 0 0 +-1.233 -16.346 -1.813 0 0 0 0 0 0 0 +-1.208 -16.354 -1.814 0 0 0 0 0 0 0 +-1.156 -16.343 -1.812 0 0 0 0 0 0 0 +-1.106 -16.365 -1.814 0 0 0 0 0 0 0 +-1.054 -16.356 -1.813 0 0 0 0 0 0 0 +-1.004 -16.395 -1.817 0 0 0 0 0 0 0 +-0.955 -16.432 -1.821 0 0 0 0 0 0 0 +-0.905 -16.467 -1.825 0 0 0 0 0 0 0 +-0.879 -16.472 -1.826 0 0 0 0 0 0 0 +-0.828 -16.487 -1.827 0 0 0 0 0 0 0 +-0.777 -16.517 -1.831 0 0 0 0 0 0 0 +-0.726 -16.527 -1.832 0 0 0 0 0 0 0 +-0.675 -16.549 -1.834 0 0 0 0 0 0 0 +-0.624 -16.579 -1.838 0 0 0 0 0 0 0 +-0.572 -16.581 -1.838 0 0 0 0 0 0 0 +-0.519 -16.583 -1.838 0 0 0 0 0 0 0 +-0.494 -16.599 -1.84 0 0 0 0 0 0 0 +-0.442 -16.621 -1.842 0 0 0 0 0 0 0 +-0.39 -16.638 -1.844 0 0 0 0 0 0 0 +-0.338 -16.643 -1.844 0 0 0 0 0 0 0 +-0.286 -16.652 -1.845 0 0 0 0 0 0 0 +-0.234 -16.659 -1.846 0 0 0 0 0 0 0 +-0.181 -16.657 -1.846 0 0 0 0 0 0 0 +-0.155 -16.687 -1.85 0 0 0 0 0 0 0 +-0.103 -16.676 -1.848 0 0 0 0 0 0 0 +-0.051 -16.696 -1.85 0 0 0 0 0 0 0 +0.002 -16.724 -1.854 0 0 0 0 0 0 0 +0.055 -16.761 -1.859 0 0 0 0 0 0 0 +0.108 -16.817 -1.865 0 0 0 0 0 0 0 +0.134 -16.836 -1.868 0 0 0 0 0 0 0 +0.187 -16.84 -1.868 0 0 0 0 0 0 0 +0.24 -16.831 -1.867 0 0 0 0 0 0 0 +0.293 -16.82 -1.866 0 0 0 0 0 0 0 +0.346 -16.847 -1.87 0 0 0 0 0 0 0 +0.399 -16.826 -1.867 0 0 0 0 0 0 0 +0.452 -16.837 -1.869 0 0 0 0 0 0 0 +0.506 -16.887 -1.875 0 0 0 0 0 0 0 +0.533 -16.886 -1.875 0 0 0 0 0 0 0 +0.587 -16.908 -1.878 0 0 0 0 0 0 0 +0.64 -16.922 -1.88 0 0 0 0 0 0 0 +0.696 -16.972 -1.886 0 0 0 0 0 0 0 +0.749 -16.975 -1.887 0 0 0 0 0 0 0 +0.856 -16.96 -1.886 0 0 0 0 0 0 0 +0.881 -16.941 -1.883 0 0 0 0 0 0 0 +0.926 -16.797 -1.866 0 0 0 0 0 0 0 +0.969 -16.626 -1.845 0 0 0 0 0 0 0 +1.011 -16.462 -1.826 0 0 0 0 0 0 0 +1.052 -16.297 -1.806 0 0 0 0 0 0 0 +1.092 -16.133 -1.786 0 0 0 0 0 0 0 +1.132 -15.981 -1.768 0 0 0 0 0 0 0 +1.147 -15.843 -1.751 0 0 0 0 0 0 0 +1.19 -15.75 -1.74 0 0 0 0 0 0 0 +1.239 -15.736 -1.739 0 0 0 0 0 0 0 +1.288 -15.726 -1.738 0 0 0 0 0 0 0 +1.338 -15.738 -1.74 0 0 0 0 0 0 0 +1.388 -15.74 -1.741 0 0 0 0 0 0 0 +1.438 -15.741 -1.741 0 0 0 0 0 0 0 +1.462 -15.729 -1.74 0 0 0 0 0 0 0 +1.511 -15.722 -1.74 0 0 0 0 0 0 0 +1.561 -15.715 -1.74 0 0 0 0 0 0 0 +1.61 -15.712 -1.74 0 0 0 0 0 0 0 +1.659 -15.703 -1.739 0 0 0 0 0 0 0 +1.709 -15.7 -1.74 0 0 0 0 0 0 0 +1.756 -15.679 -1.738 0 0 0 0 0 0 0 +1.782 -15.684 -1.739 0 0 0 0 0 0 0 +1.829 -15.659 -1.736 0 0 0 0 0 0 0 +1.874 -15.619 -1.732 0 0 0 0 0 0 0 +1.919 -15.582 -1.728 0 0 0 0 0 0 0 +1.967 -15.57 -1.727 0 0 0 0 0 0 0 +2.015 -15.56 -1.727 0 0 0 0 0 0 0 +2.064 -15.553 -1.727 0 0 0 0 0 0 0 +2.086 -15.526 -1.724 0 0 0 0 0 0 0 +2.131 -15.494 -1.721 0 0 0 0 0 0 0 +2.181 -15.495 -1.722 0 0 0 0 0 0 0 +2.228 -15.476 -1.72 0 0 0 0 0 0 0 +2.273 -15.448 -1.718 0 0 0 0 0 0 0 +2.315 -15.395 -1.712 0 0 0 0 0 0 0 +2.36 -15.366 -1.709 0 0 0 0 0 0 0 +2.382 -15.355 -1.708 0 0 0 0 0 0 0 +2.426 -15.318 -1.705 0 0 0 0 0 0 0 +2.473 -15.302 -1.704 0 0 0 0 0 0 0 +2.519 -15.283 -1.702 0 0 0 0 0 0 0 +2.563 -15.253 -1.7 0 0 0 0 0 0 0 +2.608 -15.228 -1.697 0 0 0 0 0 0 0 +2.654 -15.21 -1.696 0 0 0 0 0 0 0 +2.676 -15.196 -1.695 0 0 0 0 0 0 0 +2.718 -15.154 -1.691 0 0 0 0 0 0 0 +2.765 -15.143 -1.691 0 0 0 0 0 0 0 +2.809 -15.115 -1.688 0 0 0 0 0 0 0 +2.851 -15.075 -1.684 0 0 0 0 0 0 0 +2.898 -15.066 -1.684 0 0 0 0 0 0 0 +2.942 -15.041 -1.682 0 0 0 0 0 0 0 +2.97 -15.056 -1.685 0 0 0 0 0 0 0 +3.014 -15.031 -1.683 0 0 0 0 0 0 0 +1.323 -6.567 -0.623 0 0 0 0 0 0 0 +1.327 -6.483 -0.613 0 0 0 0 0 0 0 +1.337 -6.428 -0.607 0 0 0 0 0 0 0 +1.352 -6.401 -0.604 0 0 0 0 0 0 0 +1.372 -6.395 -0.604 0 0 0 0 0 0 0 +1.383 -6.396 -0.604 0 0 0 0 0 0 0 +1.399 -6.377 -0.602 0 0 0 0 0 0 0 +1.426 -6.399 -0.606 0 0 0 0 0 0 0 +1.451 -6.416 -0.608 0 0 0 0 0 0 0 +1.469 -6.406 -0.608 0 0 0 0 0 0 0 +1.493 -6.415 -0.609 0 0 0 0 0 0 0 +1.518 -6.433 -0.612 0 0 0 0 0 0 0 +1.528 -6.429 -0.612 0 0 0 0 0 0 0 +1.551 -6.435 -0.613 0 0 0 0 0 0 0 +1.588 -6.5 -0.622 0 0 0 0 0 0 0 +1.613 -6.512 -0.624 0 0 0 0 0 0 0 +1.635 -6.511 -0.625 0 0 0 0 0 0 0 +1.65 -6.485 -0.622 0 0 0 0 0 0 0 +3.806 -14.637 -1.657 0 0 0 0 0 0 0 +3.826 -14.618 -1.656 0 0 0 0 0 0 0 +3.871 -14.602 -1.655 0 0 0 0 0 0 0 +3.917 -14.589 -1.655 0 0 0 0 0 0 0 +3.961 -14.571 -1.655 0 0 0 0 0 0 0 +4.004 -14.549 -1.653 0 0 0 0 0 0 0 +4.051 -14.54 -1.654 0 0 0 0 0 0 0 +4.093 -14.514 -1.652 0 0 0 0 0 0 0 +4.112 -14.494 -1.65 0 0 0 0 0 0 0 +4.156 -14.479 -1.65 0 0 0 0 0 0 0 +4.202 -14.468 -1.65 0 0 0 0 0 0 0 +4.245 -14.444 -1.649 0 0 0 0 0 0 0 +4.288 -14.423 -1.648 0 0 0 0 0 0 0 +4.328 -14.394 -1.646 0 0 0 0 0 0 0 +4.371 -14.371 -1.645 0 0 0 0 0 0 0 +4.394 -14.366 -1.645 0 0 0 0 0 0 0 +4.439 -14.352 -1.645 0 0 0 0 0 0 0 +4.479 -14.323 -1.643 0 0 0 0 0 0 0 +4.518 -14.29 -1.641 0 0 0 0 0 0 0 +4.566 -14.285 -1.642 0 0 0 0 0 0 0 +4.607 -14.257 -1.64 0 0 0 0 0 0 0 +4.65 -14.237 -1.639 0 0 0 0 0 0 0 +4.673 -14.233 -1.64 0 0 0 0 0 0 0 +4.712 -14.2 -1.637 0 0 0 0 0 0 0 +4.76 -14.196 -1.639 0 0 0 0 0 0 0 +4.801 -14.172 -1.638 0 0 0 0 0 0 0 +4.844 -14.151 -1.637 0 0 0 0 0 0 0 +4.88 -14.111 -1.634 0 0 0 0 0 0 0 +4.893 -14.008 -1.622 0 0 0 0 0 0 0 +3.705 -10.573 -1.176 0 0 0 0 0 0 0 +3.727 -10.529 -1.172 0 0 0 0 0 0 0 +3.759 -10.514 -1.172 0 0 0 0 0 0 0 +3.799 -10.522 -1.174 0 0 0 0 0 0 0 +3.837 -10.524 -1.176 0 0 0 0 0 0 0 +5.169 -14.014 -1.635 0 0 0 0 0 0 0 +5.204 -13.974 -1.631 0 0 0 0 0 0 0 +5.224 -13.962 -1.631 0 0 0 0 0 0 0 +5.222 -13.823 -1.615 0 0 0 0 0 0 0 +5.154 -13.517 -1.577 0 0 0 0 0 0 0 +5.172 -13.438 -1.569 0 0 0 0 0 0 0 +5.19 -13.359 -1.56 0 0 0 0 0 0 0 +5.222 -13.317 -1.557 0 0 0 0 0 0 0 +5.253 -13.273 -1.553 0 0 0 0 0 0 0 +5.257 -13.224 -1.548 0 0 0 0 0 0 0 +5.305 -13.224 -1.55 0 0 0 0 0 0 0 +5.351 -13.216 -1.551 0 0 0 0 0 0 0 +5.373 -13.152 -1.545 0 0 0 0 0 0 0 +5.406 -13.114 -1.542 0 0 0 0 0 0 0 +5.447 -13.097 -1.542 0 0 0 0 0 0 0 +5.477 -13.055 -1.539 0 0 0 0 0 0 0 +5.49 -13.028 -1.536 0 0 0 0 0 0 0 +5.524 -12.994 -1.534 0 0 0 0 0 0 0 +5.559 -12.964 -1.532 0 0 0 0 0 0 0 +5.59 -12.924 -1.53 0 0 0 0 0 0 0 +5.624 -12.892 -1.528 0 0 0 0 0 0 0 +5.646 -12.831 -1.522 0 0 0 0 0 0 0 +5.688 -12.819 -1.522 0 0 0 0 0 0 0 +5.704 -12.801 -1.521 0 0 0 0 0 0 0 +5.74 -12.772 -1.52 0 0 0 0 0 0 0 +5.769 -12.73 -1.517 0 0 0 0 0 0 0 +5.8 -12.692 -1.514 0 0 0 0 0 0 0 +5.775 -12.535 -1.495 0 0 0 0 0 0 0 +5.822 -12.531 -1.497 0 0 0 0 0 0 0 +5.845 -12.479 -1.492 0 0 0 0 0 0 0 +5.911 -12.568 -1.506 0 0 0 0 0 0 0 +5.941 -12.53 -1.503 0 0 0 0 0 0 0 +5.97 -12.49 -1.5 0 0 0 0 0 0 0 +6.007 -12.466 -1.5 0 0 0 0 0 0 0 +6.035 -12.425 -1.497 0 0 0 0 0 0 0 +6.074 -12.406 -1.497 0 0 0 0 0 0 0 +6.108 -12.376 -1.495 0 0 0 0 0 0 0 +6.128 -12.369 -1.495 0 0 0 0 0 0 0 +6.108 -12.23 -1.479 0 0 0 0 0 0 0 +6.219 -12.259 -1.488 0 0 0 0 0 0 0 +6.247 -12.22 -1.486 0 0 0 0 0 0 0 +6.246 -12.125 -1.475 0 0 0 0 0 0 0 +6.296 -12.128 -1.478 0 0 0 0 0 0 0 +6.329 -12.144 -1.482 0 0 0 0 0 0 0 +6.358 -12.107 -1.48 0 0 0 0 0 0 0 +6.393 -12.081 -1.479 0 0 0 0 0 0 0 +6.422 -12.044 -1.476 0 0 0 0 0 0 0 +6.455 -12.015 -1.475 0 0 0 0 0 0 0 +6.487 -11.984 -1.474 0 0 0 0 0 0 0 +6.514 -11.944 -1.471 0 0 0 0 0 0 0 +6.533 -11.934 -1.471 0 0 0 0 0 0 0 +6.563 -11.901 -1.469 0 0 0 0 0 0 0 +6.613 -11.903 -1.473 0 0 0 0 0 0 0 +6.587 -11.77 -1.457 0 0 0 0 0 0 0 +6.608 -11.72 -1.453 0 0 0 0 0 0 0 +6.687 -11.773 -1.463 0 0 0 0 0 0 0 +6.656 -11.633 -1.446 0 0 0 0 0 0 0 +6.492 -11.308 -1.402 0 0 0 0 0 0 0 +6.748 -11.667 -1.455 0 0 0 0 0 0 0 +6.782 -11.641 -1.455 0 0 0 0 0 0 0 +6.8 -11.589 -1.45 0 0 0 0 0 0 0 +6.856 -11.6 -1.455 0 0 0 0 0 0 0 +6.883 -11.563 -1.453 0 0 0 0 0 0 0 +6.872 -11.463 -1.442 0 0 0 0 0 0 0 +6.845 -11.338 -1.427 0 0 0 0 0 0 0 +6.955 -11.478 -1.448 0 0 0 0 0 0 0 +6.982 -11.441 -1.446 0 0 0 0 0 0 0 +7.017 -11.417 -1.446 0 0 0 0 0 0 0 +7.043 -11.38 -1.444 0 0 0 0 0 0 0 +7.07 -11.344 -1.442 0 0 0 0 0 0 0 +7.093 -11.302 -1.439 0 0 0 0 0 0 0 +7.139 -11.296 -1.441 0 0 0 0 0 0 0 +7.143 -11.263 -1.438 0 0 0 0 0 0 0 +7.174 -11.234 -1.437 0 0 0 0 0 0 0 +7.214 -11.218 -1.438 0 0 0 0 0 0 0 +7.226 -11.16 -1.433 0 0 0 0 0 0 0 +7.264 -11.141 -1.434 0 0 0 0 0 0 0 +7.297 -11.116 -1.433 0 0 0 0 0 0 0 +7.303 -11.087 -1.431 0 0 0 0 0 0 0 +7.34 -11.067 -1.431 0 0 0 0 0 0 0 +7.373 -11.042 -1.431 0 0 0 0 0 0 0 +7.406 -11.016 -1.43 0 0 0 0 0 0 0 +7.433 -10.981 -1.429 0 0 0 0 0 0 0 +7.439 -10.916 -1.423 0 0 0 0 0 0 0 +7.468 -10.885 -1.421 0 0 0 0 0 0 0 +7.506 -10.904 -1.426 0 0 0 0 0 0 0 +7.531 -10.867 -1.424 0 0 0 0 0 0 0 +7.569 -10.849 -1.425 0 0 0 0 0 0 0 +7.593 -10.81 -1.423 0 0 0 0 0 0 0 +7.627 -10.786 -1.423 0 0 0 0 0 0 0 +7.647 -10.743 -1.42 0 0 0 0 0 0 0 +7.679 -10.717 -1.419 0 0 0 0 0 0 0 +7.688 -10.694 -1.418 0 0 0 0 0 0 0 +7.727 -10.678 -1.419 0 0 0 0 0 0 0 +7.751 -10.641 -1.417 0 0 0 0 0 0 0 +7.782 -10.613 -1.416 0 0 0 0 0 0 0 +7.801 -10.569 -1.414 0 0 0 0 0 0 0 +7.838 -10.549 -1.414 0 0 0 0 0 0 0 +7.869 -10.522 -1.414 0 0 0 0 0 0 0 +7.896 -10.489 -1.413 0 0 0 0 0 0 0 +7.91 -10.473 -1.412 0 0 0 0 0 0 0 +7.934 -10.437 -1.41 0 0 0 0 0 0 0 +7.962 -10.406 -1.409 0 0 0 0 0 0 0 +7.993 -10.378 -1.409 0 0 0 0 0 0 0 +8.02 -10.347 -1.408 0 0 0 0 0 0 0 +8.05 -10.318 -1.407 0 0 0 0 0 0 0 +8.085 -10.296 -1.408 0 0 0 0 0 0 0 +8.095 -10.275 -1.407 0 0 0 0 0 0 0 +8.121 -10.242 -1.405 0 0 0 0 0 0 0 +8.158 -10.223 -1.406 0 0 0 0 0 0 0 +8.178 -10.182 -1.404 0 0 0 0 0 0 0 +8.211 -10.157 -1.404 0 0 0 0 0 0 0 +8.243 -10.132 -1.404 0 0 0 0 0 0 0 +8.266 -10.095 -1.403 0 0 0 0 0 0 0 +8.158 -9.932 -1.379 0 0 0 0 0 0 0 +8.294 -10.033 -1.399 0 0 0 0 0 0 0 +8.327 -10.008 -1.399 0 0 0 0 0 0 0 +8.366 -9.991 -1.401 0 0 0 0 0 0 0 +8.396 -9.963 -1.4 0 0 0 0 0 0 0 +8.368 -9.867 -1.389 0 0 0 0 0 0 0 +8.42 -9.897 -1.396 0 0 0 0 0 0 0 +8.46 -9.881 -1.398 0 0 0 0 0 0 0 +8.482 -9.843 -1.396 0 0 0 0 0 0 0 +8.512 -9.815 -1.396 0 0 0 0 0 0 0 +8.541 -9.787 -1.395 0 0 0 0 0 0 0 +8.572 -9.76 -1.395 0 0 0 0 0 0 0 +8.594 -9.724 -1.394 0 0 0 0 0 0 0 +8.63 -9.703 -1.395 0 0 0 0 0 0 0 +8.536 -9.567 -1.375 0 0 0 0 0 0 0 +8.538 -9.509 -1.37 0 0 0 0 0 0 0 +8.696 -9.623 -1.393 0 0 0 0 0 0 0 +8.728 -9.599 -1.394 0 0 0 0 0 0 0 +8.75 -9.563 -1.392 0 0 0 0 0 0 0 +8.787 -9.542 -1.393 0 0 0 0 0 0 0 +8.775 -9.47 -1.386 0 0 0 0 0 0 0 +8.823 -9.491 -1.392 0 0 0 0 0 0 0 +8.86 -9.472 -1.393 0 0 0 0 0 0 0 +8.883 -9.437 -1.392 0 0 0 0 0 0 0 +8.905 -9.4 -1.39 0 0 0 0 0 0 0 +8.942 -9.381 -1.392 0 0 0 0 0 0 0 +8.966 -9.347 -1.391 0 0 0 0 0 0 0 +8.993 -9.316 -1.39 0 0 0 0 0 0 0 +9.005 -9.299 -1.39 0 0 0 0 0 0 0 +9.028 -9.265 -1.389 0 0 0 0 0 0 0 +9.07 -9.249 -1.391 0 0 0 0 0 0 0 +9.052 -9.172 -1.383 0 0 0 0 0 0 0 +9.038 -9.102 -1.376 0 0 0 0 0 0 0 +9.134 -9.141 -1.387 0 0 0 0 0 0 0 +9.166 -9.115 -1.388 0 0 0 0 0 0 0 +9.167 -9.088 -1.386 0 0 0 0 0 0 0 +9.189 -9.052 -1.384 0 0 0 0 0 0 0 +9.207 -9.013 -1.383 0 0 0 0 0 0 0 +9.268 -9.016 -1.388 0 0 0 0 0 0 0 +9.292 -8.983 -1.387 0 0 0 0 0 0 0 +9.323 -8.956 -1.388 0 0 0 0 0 0 0 +9.34 -8.944 -1.388 0 0 0 0 0 0 0 +9.358 -8.905 -1.387 0 0 0 0 0 0 0 +9.291 -8.786 -1.371 0 0 0 0 0 0 0 +9.195 -8.642 -1.35 0 0 0 0 0 0 0 +9.448 -8.822 -1.388 0 0 0 0 0 0 0 +9.465 -8.783 -1.386 0 0 0 0 0 0 0 +9.509 -8.768 -1.389 0 0 0 0 0 0 0 +9.53 -8.733 -1.388 0 0 0 0 0 0 0 +9.544 -8.718 -1.388 0 0 0 0 0 0 0 +9.573 -8.689 -1.388 0 0 0 0 0 0 0 +9.603 -8.662 -1.388 0 0 0 0 0 0 0 +9.623 -8.625 -1.387 0 0 0 0 0 0 0 +9.663 -8.606 -1.389 0 0 0 0 0 0 0 +9.668 -8.556 -1.386 0 0 0 0 0 0 0 +9.465 -8.325 -1.348 0 0 0 0 0 0 0 +9.476 -8.308 -1.348 0 0 0 0 0 0 0 +9.52 -8.294 -1.351 0 0 0 0 0 0 0 +9.551 -8.268 -1.352 0 0 0 0 0 0 0 +9.55 -8.215 -1.347 0 0 0 0 0 0 0 +9.474 -8.099 -1.331 0 0 0 0 0 0 0 +9.487 -8.058 -1.329 0 0 0 0 0 0 0 +9.493 -8.012 -1.326 0 0 0 0 0 0 0 +9.56 -8.043 -1.335 0 0 0 0 0 0 0 +9.631 -8.051 -1.342 0 0 0 0 0 0 0 +9.686 -8.045 -1.347 0 0 0 0 0 0 0 +9.671 -7.982 -1.34 0 0 0 0 0 0 0 +9.642 -7.907 -1.332 0 0 0 0 0 0 0 +9.662 -7.873 -1.331 0 0 0 0 0 0 0 +9.662 -7.823 -1.327 0 0 0 0 0 0 0 +9.797 -7.906 -1.346 0 0 0 0 0 0 0 +9.978 -8 -1.371 0 0 0 0 0 0 0 +9.972 -7.944 -1.366 0 0 0 0 0 0 0 +9.852 -7.798 -1.343 0 0 0 0 0 0 0 +9.92 -7.802 -1.35 0 0 0 0 0 0 0 +9.761 -7.628 -1.322 0 0 0 0 0 0 0 +9.723 -7.549 -1.312 0 0 0 0 0 0 0 +9.711 -7.515 -1.308 0 0 0 0 0 0 0 +9.706 -7.463 -1.304 0 0 0 0 0 0 0 +9.715 -7.421 -1.302 0 0 0 0 0 0 0 +9.721 -7.378 -1.299 0 0 0 0 0 0 0 +9.738 -7.342 -1.298 0 0 0 0 0 0 0 +9.753 -7.306 -1.297 0 0 0 0 0 0 0 +9.776 -7.275 -1.297 0 0 0 0 0 0 0 +9.779 -7.254 -1.296 0 0 0 0 0 0 0 +9.804 -7.224 -1.296 0 0 0 0 0 0 0 +9.833 -7.198 -1.297 0 0 0 0 0 0 0 +9.863 -7.173 -1.298 0 0 0 0 0 0 0 +9.892 -7.147 -1.299 0 0 0 0 0 0 0 +9.919 -7.119 -1.3 0 0 0 0 0 0 0 +9.948 -7.092 -1.301 0 0 0 0 0 0 0 +9.99 -7.099 -1.305 0 0 0 0 0 0 0 +10.024 -7.075 -1.307 0 0 0 0 0 0 0 +10.031 -7.033 -1.305 0 0 0 0 0 0 0 +10.04 -6.993 -1.303 0 0 0 0 0 0 0 +10.072 -6.968 -1.304 0 0 0 0 0 0 0 +10.112 -6.949 -1.307 0 0 0 0 0 0 0 +10.157 -6.932 -1.31 0 0 0 0 0 0 0 +10.62 -7.223 -1.377 0 0 0 0 0 0 0 +10.647 -7.192 -1.378 0 0 0 0 0 0 0 +10.668 -7.158 -1.378 0 0 0 0 0 0 0 +10.684 -7.12 -1.377 0 0 0 0 0 0 0 +10.701 -7.083 -1.376 0 0 0 0 0 0 0 +10.723 -7.049 -1.376 0 0 0 0 0 0 0 +10.755 -7.022 -1.378 0 0 0 0 0 0 0 +10.761 -7.002 -1.377 0 0 0 0 0 0 0 +10.788 -6.971 -1.378 0 0 0 0 0 0 0 +10.809 -6.936 -1.377 0 0 0 0 0 0 0 +10.82 -6.896 -1.376 0 0 0 0 0 0 0 +10.847 -6.865 -1.377 0 0 0 0 0 0 0 +10.872 -6.833 -1.377 0 0 0 0 0 0 0 +10.893 -6.799 -1.377 0 0 0 0 0 0 0 +10.907 -6.784 -1.378 0 0 0 0 0 0 0 +10.923 -6.747 -1.377 0 0 0 0 0 0 0 +10.94 -6.709 -1.376 0 0 0 0 0 0 0 +10.983 -6.688 -1.379 0 0 0 0 0 0 0 +11.009 -6.657 -1.38 0 0 0 0 0 0 0 +11.031 -6.623 -1.38 0 0 0 0 0 0 0 +11.069 -6.598 -1.383 0 0 0 0 0 0 0 +11.114 -6.601 -1.388 0 0 0 0 0 0 0 +11.16 -6.581 -1.391 0 0 0 0 0 0 0 +11.23 -6.575 -1.398 0 0 0 0 0 0 0 +11.268 -6.55 -1.401 0 0 0 0 0 0 0 +11.326 -6.536 -1.406 0 0 0 0 0 0 0 +11.373 -6.515 -1.41 0 0 0 0 0 0 0 +11.443 -6.508 -1.417 0 0 0 0 0 0 0 +11.455 -6.491 -1.417 0 0 0 0 0 0 0 +11.505 -6.471 -1.421 0 0 0 0 0 0 0 +11.572 -6.461 -1.428 0 0 0 0 0 0 0 +11.625 -6.443 -1.433 0 0 0 0 0 0 0 +11.68 -6.426 -1.437 0 0 0 0 0 0 0 +11.741 -6.411 -1.443 0 0 0 0 0 0 0 +11.776 -6.382 -1.445 0 0 0 0 0 0 0 +11.8 -6.371 -1.447 0 0 0 0 0 0 0 +11.847 -6.348 -1.451 0 0 0 0 0 0 0 +11.875 -6.316 -1.452 0 0 0 0 0 0 0 +11.914 -6.288 -1.455 0 0 0 0 0 0 0 +11.929 -6.248 -1.454 0 0 0 0 0 0 0 +11.961 -6.217 -1.456 0 0 0 0 0 0 0 +8.816 -4.555 -1.019 0 0 0 0 0 0 0 +8.798 -4.528 -1.016 0 0 0 0 0 0 0 +8.833 -4.511 -1.018 0 0 0 0 0 0 0 +8.849 -4.485 -1.019 0 0 0 0 0 0 0 +12.06 -6.054 -1.457 0 0 0 0 0 0 0 +12.107 -6.03 -1.461 0 0 0 0 0 0 0 +12.146 -6.001 -1.464 0 0 0 0 0 0 0 +12.172 -5.967 -1.465 0 0 0 0 0 0 0 +12.174 -5.944 -1.464 0 0 0 0 0 0 0 +12.203 -5.911 -1.465 0 0 0 0 0 0 0 +12.234 -5.879 -1.467 0 0 0 0 0 0 0 +12.26 -5.844 -1.468 0 0 0 0 0 0 0 +12.282 -5.807 -1.469 0 0 0 0 0 0 0 +12.289 -5.763 -1.467 0 0 0 0 0 0 0 +12.323 -5.732 -1.469 0 0 0 0 0 0 0 +12.329 -5.711 -1.469 0 0 0 0 0 0 0 +12.358 -5.677 -1.47 0 0 0 0 0 0 0 +12.365 -5.633 -1.469 0 0 0 0 0 0 0 +12.377 -5.592 -1.468 0 0 0 0 0 0 0 +12.405 -5.558 -1.47 0 0 0 0 0 0 0 +12.432 -5.523 -1.471 0 0 0 0 0 0 0 +12.451 -5.485 -1.471 0 0 0 0 0 0 0 +12.47 -5.47 -1.473 0 0 0 0 0 0 0 +12.484 -5.429 -1.472 0 0 0 0 0 0 0 +12.515 -5.396 -1.474 0 0 0 0 0 0 0 +12.525 -5.354 -1.473 0 0 0 0 0 0 0 +12.564 -5.324 -1.476 0 0 0 0 0 0 0 +12.589 -5.288 -1.477 0 0 0 0 0 0 0 +12.621 -5.254 -1.479 0 0 0 0 0 0 0 +12.62 -5.231 -1.478 0 0 0 0 0 0 0 +12.662 -5.202 -1.481 0 0 0 0 0 0 0 +12.667 -5.157 -1.48 0 0 0 0 0 0 0 +12.698 -5.123 -1.482 0 0 0 0 0 0 0 +12.699 -5.078 -1.48 0 0 0 0 0 0 0 +12.732 -5.044 -1.482 0 0 0 0 0 0 0 +12.733 -4.998 -1.48 0 0 0 0 0 0 0 +12.744 -4.98 -1.481 0 0 0 0 0 0 0 +12.765 -4.942 -1.481 0 0 0 0 0 0 0 +12.796 -4.907 -1.483 0 0 0 0 0 0 0 +12.804 -4.864 -1.482 0 0 0 0 0 0 0 +12.83 -4.828 -1.484 0 0 0 0 0 0 0 +12.828 -4.782 -1.482 0 0 0 0 0 0 0 +12.877 -4.754 -1.486 0 0 0 0 0 0 0 +12.892 -4.713 -1.486 0 0 0 0 0 0 0 +12.905 -4.695 -1.487 0 0 0 0 0 0 0 +12.919 -4.655 -1.487 0 0 0 0 0 0 0 +12.94 -4.616 -1.487 0 0 0 0 0 0 0 +12.958 -4.577 -1.488 0 0 0 0 0 0 0 +12.981 -4.539 -1.489 0 0 0 0 0 0 0 +12.992 -4.497 -1.489 0 0 0 0 0 0 0 +13.021 -4.461 -1.491 0 0 0 0 0 0 0 +13.03 -4.441 -1.491 0 0 0 0 0 0 0 +13.047 -4.402 -1.491 0 0 0 0 0 0 0 +13.052 -4.358 -1.49 0 0 0 0 0 0 0 +13.09 -4.325 -1.493 0 0 0 0 0 0 0 +13.092 -4.28 -1.492 0 0 0 0 0 0 0 +13.102 -4.237 -1.491 0 0 0 0 0 0 0 +13.089 -4.211 -1.489 0 0 0 0 0 0 0 +13.108 -4.171 -1.49 0 0 0 0 0 0 0 +13.148 -4.139 -1.493 0 0 0 0 0 0 0 +13.161 -4.097 -1.493 0 0 0 0 0 0 0 +13.172 -4.055 -1.493 0 0 0 0 0 0 0 +13.171 -4.01 -1.491 0 0 0 0 0 0 0 +13.187 -3.97 -1.492 0 0 0 0 0 0 0 +13.202 -3.929 -1.492 0 0 0 0 0 0 0 +13.2 -3.906 -1.491 0 0 0 0 0 0 0 +13.22 -3.866 -1.492 0 0 0 0 0 0 0 +13.221 -3.822 -1.49 0 0 0 0 0 0 0 +13.212 -3.774 -1.488 0 0 0 0 0 0 0 +13.225 -3.733 -1.488 0 0 0 0 0 0 0 +13.233 -3.691 -1.487 0 0 0 0 0 0 0 +13.233 -3.646 -1.486 0 0 0 0 0 0 0 +13.254 -3.629 -1.488 0 0 0 0 0 0 0 +13.245 -3.582 -1.485 0 0 0 0 0 0 0 +13.219 -3.531 -1.481 0 0 0 0 0 0 0 +13.238 -3.491 -1.482 0 0 0 0 0 0 0 +13.239 -3.447 -1.48 0 0 0 0 0 0 0 +13.219 -3.397 -1.476 0 0 0 0 0 0 0 +13.245 -3.36 -1.478 0 0 0 0 0 0 0 +13.22 -3.331 -1.474 0 0 0 0 0 0 0 +13.224 -3.288 -1.474 0 0 0 0 0 0 0 +13.229 -3.245 -1.473 0 0 0 0 0 0 0 +7.334 -1.787 -0.727 0 0 0 0 0 0 0 +7.324 -1.76 -0.726 0 0 0 0 0 0 0 +7.322 -1.735 -0.725 0 0 0 0 0 0 0 +7.302 -1.706 -0.721 0 0 0 0 0 0 0 +7.288 -1.691 -0.719 0 0 0 0 0 0 0 +7.277 -1.665 -0.717 0 0 0 0 0 0 0 +7.284 -1.642 -0.718 0 0 0 0 0 0 0 +7.264 -1.614 -0.714 0 0 0 0 0 0 0 +7.256 -1.588 -0.713 0 0 0 0 0 0 0 +7.241 -1.561 -0.71 0 0 0 0 0 0 0 +7.233 -1.535 -0.708 0 0 0 0 0 0 0 +7.231 -1.523 -0.708 0 0 0 0 0 0 0 +7.226 -1.499 -0.707 0 0 0 0 0 0 0 +7.219 -1.474 -0.705 0 0 0 0 0 0 0 +7.233 -1.453 -0.707 0 0 0 0 0 0 0 +7.222 -1.427 -0.705 0 0 0 0 0 0 0 +7.229 -1.405 -0.705 0 0 0 0 0 0 0 +7.237 -1.383 -0.705 0 0 0 0 0 0 0 +7.243 -1.372 -0.706 0 0 0 0 0 0 0 +7.257 -1.351 -0.707 0 0 0 0 0 0 0 +7.283 -1.332 -0.71 0 0 0 0 0 0 0 +7.305 -1.312 -0.712 0 0 0 0 0 0 0 +7.334 -1.294 -0.715 0 0 0 0 0 0 0 +7.37 -1.276 -0.719 0 0 0 0 0 0 0 +7.326 -1.245 -0.713 0 0 0 0 0 0 0 +7.977 -1.34 -0.794 0 0 0 0 0 0 0 +7.969 -1.313 -0.792 0 0 0 0 0 0 0 +7.932 -1.282 -0.787 0 0 0 0 0 0 0 +7.969 -1.262 -0.791 0 0 0 0 0 0 0 +7.952 -1.234 -0.789 0 0 0 0 0 0 0 +7.822 -1.189 -0.772 0 0 0 0 0 0 0 +7.73 -1.15 -0.76 0 0 0 0 0 0 0 +7.767 -1.143 -0.765 0 0 0 0 0 0 0 +13.713 -1.955 -1.501 0 0 0 0 0 0 0 +13.754 -1.916 -1.506 0 0 0 0 0 0 0 +13.79 -1.877 -1.509 0 0 0 0 0 0 0 +13.827 -1.838 -1.513 0 0 0 0 0 0 0 +13.839 -1.795 -1.514 0 0 0 0 0 0 0 +13.858 -1.753 -1.516 0 0 0 0 0 0 0 +13.874 -1.733 -1.517 0 0 0 0 0 0 0 +13.898 -1.692 -1.52 0 0 0 0 0 0 0 +13.915 -1.65 -1.521 0 0 0 0 0 0 0 +13.924 -1.606 -1.521 0 0 0 0 0 0 0 +13.935 -1.563 -1.522 0 0 0 0 0 0 0 +13.973 -1.523 -1.526 0 0 0 0 0 0 0 +13.952 -1.476 -1.523 0 0 0 0 0 0 0 +13.996 -1.459 -1.528 0 0 0 0 0 0 0 +14.016 -1.416 -1.53 0 0 0 0 0 0 0 +14.013 -1.372 -1.529 0 0 0 0 0 0 0 +11.149 -1.061 -1.176 0 0 0 0 0 0 0 +14.082 -1.244 -1.536 0 0 0 0 0 0 0 +14.11 -1.202 -1.539 0 0 0 0 0 0 0 +14.126 -1.181 -1.541 0 0 0 0 0 0 0 +14.155 -1.139 -1.544 0 0 0 0 0 0 0 +14.162 -1.095 -1.545 0 0 0 0 0 0 0 +14.188 -1.052 -1.547 0 0 0 0 0 0 0 +14.207 -1.008 -1.549 0 0 0 0 0 0 0 +14.251 -0.966 -1.554 0 0 0 0 0 0 0 +14.312 -0.925 -1.561 0 0 0 0 0 0 0 +14.337 -0.904 -1.564 0 0 0 0 0 0 0 +14.294 -0.856 -1.559 0 0 0 0 0 0 0 +14.394 -0.817 -1.571 0 0 0 0 0 0 0 +14.371 -0.77 -1.568 0 0 0 0 0 0 0 +14.393 -0.726 -1.57 0 0 0 0 0 0 0 +14.403 -0.681 -1.571 0 0 0 0 0 0 0 +14.411 -0.636 -1.572 0 0 0 0 0 0 0 +14.396 -0.613 -1.57 0 0 0 0 0 0 0 +14.368 -0.567 -1.566 0 0 0 0 0 0 0 +14.378 -0.522 -1.567 0 0 0 0 0 0 0 +14.407 -0.477 -1.57 0 0 0 0 0 0 0 +14.411 -0.432 -1.571 0 0 0 0 0 0 0 +14.396 -0.387 -1.569 0 0 0 0 0 0 0 +14.363 -0.341 -1.565 0 0 0 0 0 0 0 +14.366 -0.318 -1.565 0 0 0 0 0 0 0 +14.403 -0.274 -1.569 0 0 0 0 0 0 0 +14.378 -0.228 -1.566 0 0 0 0 0 0 0 +14.305 -0.182 -1.557 0 0 0 0 0 0 0 +13.138 -0.128 -1.414 0 0 0 0 0 0 0 +14.381 -0.092 -1.566 0 0 0 0 0 0 0 +14.344 -0.047 -1.562 0 0 0 0 0 0 0 +14.3 -0.025 -1.556 0 0 0 0 0 0 0 +13.732 0.018 -1.557 0 0 0 0 0 0 0 +13.722 0.083 -1.556 0 0 0 0 0 0 0 +13.801 0.126 -1.566 0 0 0 0 0 0 0 +13.622 0.168 -1.543 0 0 0 0 0 0 0 +13.54 0.21 -1.533 0 0 0 0 0 0 0 +13.527 0.252 -1.531 0 0 0 0 0 0 0 +13.582 0.296 -1.538 0 0 0 0 0 0 0 +13.597 0.339 -1.54 0 0 0 0 0 0 0 +13.675 0.383 -1.55 0 0 0 0 0 0 0 +13.551 0.401 -1.535 0 0 0 0 0 0 0 +13.633 0.447 -1.545 0 0 0 0 0 0 0 +13.679 0.491 -1.551 0 0 0 0 0 0 0 +13.684 0.534 -1.552 0 0 0 0 0 0 0 +13.662 0.576 -1.55 0 0 0 0 0 0 0 +13.668 0.62 -1.551 0 0 0 0 0 0 0 +13.728 0.665 -1.559 0 0 0 0 0 0 0 +13.717 0.687 -1.557 0 0 0 0 0 0 0 +13.798 0.734 -1.568 0 0 0 0 0 0 0 +13.831 0.779 -1.572 0 0 0 0 0 0 0 +13.856 0.824 -1.576 0 0 0 0 0 0 0 +13.855 0.868 -1.576 0 0 0 0 0 0 0 +13.872 0.913 -1.579 0 0 0 0 0 0 0 +13.865 0.956 -1.578 0 0 0 0 0 0 0 +13.874 0.978 -1.58 0 0 0 0 0 0 0 +13.881 1.023 -1.581 0 0 0 0 0 0 0 +13.889 1.067 -1.582 0 0 0 0 0 0 0 +13.89 1.111 -1.583 0 0 0 0 0 0 0 +13.928 1.158 -1.588 0 0 0 0 0 0 0 +14.013 1.209 -1.6 0 0 0 0 0 0 0 +14.076 1.259 -1.608 0 0 0 0 0 0 0 +14.153 1.288 -1.618 0 0 0 0 0 0 0 +14.226 1.34 -1.628 0 0 0 0 0 0 0 +14.317 1.394 -1.64 0 0 0 0 0 0 0 +14.387 1.446 -1.65 0 0 0 0 0 0 0 +14.489 1.502 -1.664 0 0 0 0 0 0 0 +14.522 1.552 -1.669 0 0 0 0 0 0 0 +14.545 1.6 -1.672 0 0 0 0 0 0 0 +14.53 1.622 -1.671 0 0 0 0 0 0 0 +14.586 1.674 -1.679 0 0 0 0 0 0 0 +14.585 1.721 -1.679 0 0 0 0 0 0 0 +14.56 1.764 -1.676 0 0 0 0 0 0 0 +14.595 1.815 -1.682 0 0 0 0 0 0 0 +14.59 1.861 -1.682 0 0 0 0 0 0 0 +14.621 1.911 -1.687 0 0 0 0 0 0 0 +14.628 1.936 -1.688 0 0 0 0 0 0 0 +14.671 1.988 -1.694 0 0 0 0 0 0 0 +14.676 2.036 -1.696 0 0 0 0 0 0 0 +14.536 2.063 -1.679 0 0 0 0 0 0 0 +14.652 2.126 -1.694 0 0 0 0 0 0 0 +14.631 2.17 -1.692 0 0 0 0 0 0 0 +14.622 2.216 -1.692 0 0 0 0 0 0 0 +14.613 2.238 -1.691 0 0 0 0 0 0 0 +14.594 2.282 -1.69 0 0 0 0 0 0 0 +14.579 2.327 -1.689 0 0 0 0 0 0 0 +14.569 2.372 -1.689 0 0 0 0 0 0 0 +14.562 2.418 -1.689 0 0 0 0 0 0 0 +14.533 2.46 -1.686 0 0 0 0 0 0 0 +14.517 2.504 -1.685 0 0 0 0 0 0 0 +14.49 2.523 -1.682 0 0 0 0 0 0 0 +14.503 2.572 -1.685 0 0 0 0 0 0 0 +14.495 2.618 -1.685 0 0 0 0 0 0 0 +14.485 2.663 -1.684 0 0 0 0 0 0 0 +14.463 2.706 -1.683 0 0 0 0 0 0 0 +14.45 2.751 -1.682 0 0 0 0 0 0 0 +14.43 2.794 -1.681 0 0 0 0 0 0 0 +14.437 2.819 -1.682 0 0 0 0 0 0 0 +14.411 2.861 -1.68 0 0 0 0 0 0 0 +14.394 2.905 -1.679 0 0 0 0 0 0 0 +14.385 2.95 -1.679 0 0 0 0 0 0 0 +14.373 2.994 -1.679 0 0 0 0 0 0 0 +14.354 3.038 -1.677 0 0 0 0 0 0 0 +14.331 3.08 -1.675 0 0 0 0 0 0 0 +14.326 3.102 -1.675 0 0 0 0 0 0 0 +14.312 3.146 -1.675 0 0 0 0 0 0 0 +14.32 3.195 -1.677 0 0 0 0 0 0 0 +14.304 3.239 -1.676 0 0 0 0 0 0 0 +14.278 3.28 -1.674 0 0 0 0 0 0 0 +14.262 3.324 -1.674 0 0 0 0 0 0 0 +14.255 3.369 -1.674 0 0 0 0 0 0 0 +14.242 3.39 -1.673 0 0 0 0 0 0 0 +14.238 3.436 -1.674 0 0 0 0 0 0 0 +14.229 3.481 -1.674 0 0 0 0 0 0 0 +14.202 3.522 -1.672 0 0 0 0 0 0 0 +14.203 3.57 -1.674 0 0 0 0 0 0 0 +14.187 3.613 -1.673 0 0 0 0 0 0 0 +14.151 3.652 -1.67 0 0 0 0 0 0 0 +14.161 3.678 -1.672 0 0 0 0 0 0 0 +14.145 3.721 -1.671 0 0 0 0 0 0 0 +14.124 3.763 -1.67 0 0 0 0 0 0 0 +14.114 3.808 -1.67 0 0 0 0 0 0 0 +14.098 3.851 -1.67 0 0 0 0 0 0 0 +14.086 3.895 -1.67 0 0 0 0 0 0 0 +14.089 3.944 -1.672 0 0 0 0 0 0 0 +14.053 3.982 -1.669 0 0 0 0 0 0 0 +14.041 4.002 -1.668 0 0 0 0 0 0 0 +14.035 4.048 -1.669 0 0 0 0 0 0 0 +14.014 4.09 -1.668 0 0 0 0 0 0 0 +14.001 4.134 -1.668 0 0 0 0 0 0 0 +14 4.181 -1.669 0 0 0 0 0 0 0 +13.979 4.223 -1.668 0 0 0 0 0 0 0 +13.966 4.243 -1.668 0 0 0 0 0 0 0 +13.966 4.291 -1.669 0 0 0 0 0 0 0 +13.941 4.331 -1.668 0 0 0 0 0 0 0 +13.926 4.374 -1.668 0 0 0 0 0 0 0 +13.929 4.424 -1.67 0 0 0 0 0 0 0 +13.909 4.466 -1.669 0 0 0 0 0 0 0 +13.89 4.507 -1.668 0 0 0 0 0 0 0 +13.875 4.527 -1.667 0 0 0 0 0 0 0 +13.872 4.574 -1.669 0 0 0 0 0 0 0 +13.858 4.618 -1.669 0 0 0 0 0 0 0 +13.862 4.667 -1.671 0 0 0 0 0 0 0 +13.855 4.713 -1.672 0 0 0 0 0 0 0 +13.847 4.76 -1.673 0 0 0 0 0 0 0 +13.821 4.799 -1.672 0 0 0 0 0 0 0 +13.811 4.82 -1.672 0 0 0 0 0 0 0 +13.808 4.867 -1.673 0 0 0 0 0 0 0 +13.8 4.913 -1.674 0 0 0 0 0 0 0 +13.782 4.956 -1.674 0 0 0 0 0 0 0 +13.772 5.001 -1.675 0 0 0 0 0 0 0 +13.76 5.046 -1.675 0 0 0 0 0 0 0 +13.737 5.086 -1.674 0 0 0 0 0 0 0 +13.743 5.138 -1.677 0 0 0 0 0 0 0 +13.742 5.162 -1.678 0 0 0 0 0 0 0 +13.732 5.208 -1.679 0 0 0 0 0 0 0 +13.715 5.251 -1.679 0 0 0 0 0 0 0 +13.701 5.294 -1.679 0 0 0 0 0 0 0 +13.693 5.341 -1.681 0 0 0 0 0 0 0 +13.687 5.388 -1.682 0 0 0 0 0 0 0 +13.667 5.43 -1.682 0 0 0 0 0 0 0 +13.669 5.456 -1.683 0 0 0 0 0 0 0 +13.654 5.499 -1.683 0 0 0 0 0 0 0 +13.638 5.543 -1.684 0 0 0 0 0 0 0 +13.626 5.588 -1.684 0 0 0 0 0 0 0 +13.616 5.634 -1.685 0 0 0 0 0 0 0 +13.607 5.68 -1.687 0 0 0 0 0 0 0 +13.593 5.699 -1.686 0 0 0 0 0 0 0 +13.593 5.75 -1.688 0 0 0 0 0 0 0 +13.579 5.794 -1.689 0 0 0 0 0 0 0 +13.573 5.842 -1.691 0 0 0 0 0 0 0 +13.559 5.886 -1.691 0 0 0 0 0 0 0 +13.542 5.93 -1.691 0 0 0 0 0 0 0 +13.539 5.979 -1.694 0 0 0 0 0 0 0 +13.525 5.998 -1.693 0 0 0 0 0 0 0 +13.498 6.038 -1.692 0 0 0 0 0 0 0 +13.501 6.09 -1.695 0 0 0 0 0 0 0 +13.496 6.139 -1.697 0 0 0 0 0 0 0 +13.481 6.183 -1.698 0 0 0 0 0 0 0 +13.476 6.232 -1.7 0 0 0 0 0 0 0 +13.461 6.276 -1.7 0 0 0 0 0 0 0 +13.473 6.308 -1.703 0 0 0 0 0 0 0 +13.46 6.353 -1.704 0 0 0 0 0 0 0 +13.451 6.401 -1.706 0 0 0 0 0 0 0 +13.44 6.447 -1.707 0 0 0 0 0 0 0 +13.423 6.491 -1.708 0 0 0 0 0 0 0 +13.415 6.539 -1.709 0 0 0 0 0 0 0 +13.391 6.58 -1.709 0 0 0 0 0 0 0 +13.375 6.598 -1.708 0 0 0 0 0 0 0 +13.36 6.643 -1.709 0 0 0 0 0 0 0 +13.273 6.652 -1.7 0 0 0 0 0 0 0 +13.297 6.716 -1.706 0 0 0 0 0 0 0 +13.318 6.779 -1.712 0 0 0 0 0 0 0 +13.302 6.823 -1.713 0 0 0 0 0 0 0 +13.291 6.871 -1.714 0 0 0 0 0 0 0 +13.299 6.902 -1.717 0 0 0 0 0 0 0 +13.287 6.948 -1.718 0 0 0 0 0 0 0 +13.268 6.991 -1.719 0 0 0 0 0 0 0 +13.255 7.038 -1.72 0 0 0 0 0 0 0 +13.222 7.074 -1.719 0 0 0 0 0 0 0 +13.226 7.129 -1.722 0 0 0 0 0 0 0 +13.151 7.143 -1.715 0 0 0 0 0 0 0 +13.188 7.216 -1.723 0 0 0 0 0 0 0 +13.191 7.244 -1.725 0 0 0 0 0 0 0 +13.178 7.292 -1.727 0 0 0 0 0 0 0 +13.157 7.334 -1.727 0 0 0 0 0 0 0 +13.136 7.376 -1.727 0 0 0 0 0 0 0 +13.116 7.419 -1.728 0 0 0 0 0 0 0 +13.098 7.463 -1.729 0 0 0 0 0 0 0 +13.078 7.506 -1.729 0 0 0 0 0 0 0 +13.024 7.503 -1.723 0 0 0 0 0 0 0 +12.891 7.481 -1.707 0 0 0 0 0 0 0 +12.075 7.06 -1.59 0 0 0 0 0 0 0 +11.48 6.762 -1.505 0 0 0 0 0 0 0 +11.284 6.695 -1.479 0 0 0 0 0 0 0 +11.079 6.621 -1.451 0 0 0 0 0 0 0 +11.002 6.598 -1.442 0 0 0 0 0 0 0 +10.966 6.624 -1.439 0 0 0 0 0 0 0 +10.848 6.6 -1.425 0 0 0 0 0 0 0 +10.597 6.493 -1.39 0 0 0 0 0 0 0 +10.497 6.478 -1.378 0 0 0 0 0 0 0 +10.411 6.47 -1.369 0 0 0 0 0 0 0 +10.366 6.487 -1.365 0 0 0 0 0 0 0 +10.312 6.476 -1.358 0 0 0 0 0 0 0 +10.335 6.536 -1.365 0 0 0 0 0 0 0 +10.388 6.615 -1.376 0 0 0 0 0 0 0 +10.35 6.637 -1.373 0 0 0 0 0 0 0 +10.236 6.609 -1.359 0 0 0 0 0 0 0 +10.165 6.609 -1.352 0 0 0 0 0 0 0 +10.256 6.713 -1.369 0 0 0 0 0 0 0 +10.327 6.783 -1.381 0 0 0 0 0 0 0 +10.324 6.827 -1.384 0 0 0 0 0 0 0 +10.299 6.857 -1.383 0 0 0 0 0 0 0 +10.183 6.827 -1.369 0 0 0 0 0 0 0 +10.209 6.891 -1.376 0 0 0 0 0 0 0 +10.237 6.956 -1.384 0 0 0 0 0 0 0 +10.172 6.959 -1.377 0 0 0 0 0 0 0 +10.121 6.971 -1.373 0 0 0 0 0 0 0 +10.102 6.981 -1.371 0 0 0 0 0 0 0 +10.109 7.033 -1.376 0 0 0 0 0 0 0 +10.263 7.188 -1.403 0 0 0 0 0 0 0 +10.172 7.172 -1.393 0 0 0 0 0 0 0 +10.164 7.214 -1.395 0 0 0 0 0 0 0 +10.233 7.312 -1.409 0 0 0 0 0 0 0 +10.206 7.34 -1.409 0 0 0 0 0 0 0 +10.289 7.425 -1.424 0 0 0 0 0 0 0 +10.237 7.436 -1.419 0 0 0 0 0 0 0 +10.245 7.492 -1.424 0 0 0 0 0 0 0 +10.217 7.52 -1.423 0 0 0 0 0 0 0 +10.216 7.569 -1.427 0 0 0 0 0 0 0 +10.206 7.611 -1.429 0 0 0 0 0 0 0 +10.224 7.674 -1.436 0 0 0 0 0 0 0 +10.221 7.697 -1.437 0 0 0 0 0 0 0 +10.195 7.728 -1.437 0 0 0 0 0 0 0 +10.154 7.747 -1.434 0 0 0 0 0 0 0 +10.165 7.807 -1.44 0 0 0 0 0 0 0 +10.207 7.889 -1.451 0 0 0 0 0 0 0 +10.168 7.911 -1.448 0 0 0 0 0 0 0 +10.177 7.969 -1.454 0 0 0 0 0 0 0 +10.173 7.991 -1.455 0 0 0 0 0 0 0 +10.202 8.066 -1.464 0 0 0 0 0 0 0 +10.169 8.092 -1.463 0 0 0 0 0 0 0 +10.164 8.14 -1.466 0 0 0 0 0 0 0 +10.15 8.182 -1.468 0 0 0 0 0 0 0 +6.716 5.46 -0.908 0 0 0 0 0 0 0 +6.679 5.464 -0.905 0 0 0 0 0 0 0 +6.673 5.477 -0.905 0 0 0 0 0 0 0 +6.644 5.488 -0.903 0 0 0 0 0 0 0 +6.634 5.515 -0.904 0 0 0 0 0 0 0 +6.652 5.565 -0.91 0 0 0 0 0 0 0 +10.219 8.586 -1.508 0 0 0 0 0 0 0 +10.236 8.655 -1.515 0 0 0 0 0 0 0 +10.239 8.713 -1.52 0 0 0 0 0 0 0 +10.244 8.746 -1.524 0 0 0 0 0 0 0 +10.253 8.809 -1.53 0 0 0 0 0 0 0 +10.264 8.875 -1.536 0 0 0 0 0 0 0 +10.267 8.933 -1.541 0 0 0 0 0 0 0 +10.276 8.998 -1.548 0 0 0 0 0 0 0 +10.282 9.06 -1.553 0 0 0 0 0 0 0 +10.276 9.112 -1.557 0 0 0 0 0 0 0 +10.298 9.161 -1.564 0 0 0 0 0 0 0 +10.309 9.229 -1.57 0 0 0 0 0 0 0 +10.31 9.288 -1.576 0 0 0 0 0 0 0 +10.322 9.357 -1.583 0 0 0 0 0 0 0 +10.307 9.403 -1.585 0 0 0 0 0 0 0 +10.311 9.466 -1.591 0 0 0 0 0 0 0 +10.276 9.493 -1.59 0 0 0 0 0 0 0 +10.255 9.504 -1.589 0 0 0 0 0 0 0 +10.24 9.55 -1.592 0 0 0 0 0 0 0 +10.211 9.583 -1.592 0 0 0 0 0 0 0 +10.185 9.619 -1.593 0 0 0 0 0 0 0 +10.171 9.666 -1.595 0 0 0 0 0 0 0 +10.142 9.699 -1.596 0 0 0 0 0 0 0 +10.125 9.745 -1.598 0 0 0 0 0 0 0 +10.132 9.782 -1.602 0 0 0 0 0 0 0 +10.108 9.82 -1.603 0 0 0 0 0 0 0 +10.08 9.855 -1.604 0 0 0 0 0 0 0 +10.057 9.895 -1.605 0 0 0 0 0 0 0 +10.032 9.932 -1.606 0 0 0 0 0 0 0 +10.002 9.965 -1.606 0 0 0 0 0 0 0 +9.988 10.013 -1.61 0 0 0 0 0 0 0 +9.977 10.034 -1.611 0 0 0 0 0 0 0 +9.956 10.075 -1.612 0 0 0 0 0 0 0 +9.93 10.112 -1.613 0 0 0 0 0 0 0 +9.902 10.148 -1.614 0 0 0 0 0 0 0 +9.885 10.194 -1.617 0 0 0 0 0 0 0 +9.863 10.235 -1.619 0 0 0 0 0 0 0 +9.832 10.268 -1.619 0 0 0 0 0 0 0 +9.801 10.3 -1.619 0 0 0 0 0 0 0 +9.781 10.311 -1.618 0 0 0 0 0 0 0 +9.755 10.349 -1.62 0 0 0 0 0 0 0 +9.724 10.381 -1.62 0 0 0 0 0 0 0 +9.687 10.407 -1.619 0 0 0 0 0 0 0 +9.633 10.414 -1.615 0 0 0 0 0 0 0 +9.597 10.441 -1.615 0 0 0 0 0 0 0 +9.593 10.502 -1.62 0 0 0 0 0 0 0 +9.575 10.516 -1.62 0 0 0 0 0 0 0 +9.55 10.555 -1.621 0 0 0 0 0 0 0 +9.526 10.595 -1.623 0 0 0 0 0 0 0 +9.483 10.614 -1.621 0 0 0 0 0 0 0 +9.456 10.652 -1.622 0 0 0 0 0 0 0 +9.42 10.678 -1.622 0 0 0 0 0 0 0 +9.407 10.698 -1.623 0 0 0 0 0 0 0 +9.369 10.721 -1.622 0 0 0 0 0 0 0 +9.33 10.744 -1.621 0 0 0 0 0 0 0 +9.311 10.792 -1.624 0 0 0 0 0 0 0 +9.285 10.83 -1.625 0 0 0 0 0 0 0 +9.252 10.861 -1.625 0 0 0 0 0 0 0 +9.223 10.896 -1.627 0 0 0 0 0 0 0 +9.217 10.922 -1.629 0 0 0 0 0 0 0 +9.189 10.959 -1.63 0 0 0 0 0 0 0 +9.117 10.943 -1.622 0 0 0 0 0 0 0 +9.05 10.932 -1.616 0 0 0 0 0 0 0 +9.068 11.025 -1.627 0 0 0 0 0 0 0 +9.039 11.059 -1.628 0 0 0 0 0 0 0 +9.032 11.122 -1.633 0 0 0 0 0 0 0 +9.01 11.167 -1.636 0 0 0 0 0 0 0 +9.001 11.192 -1.638 0 0 0 0 0 0 0 +8.969 11.223 -1.638 0 0 0 0 0 0 0 +8.945 11.265 -1.64 0 0 0 0 0 0 0 +8.903 11.286 -1.639 0 0 0 0 0 0 0 +8.879 11.327 -1.641 0 0 0 0 0 0 0 +8.865 11.383 -1.646 0 0 0 0 0 0 0 +8.818 11.397 -1.644 0 0 0 0 0 0 0 +8.795 11.405 -1.643 0 0 0 0 0 0 0 +8.762 11.435 -1.643 0 0 0 0 0 0 0 +8.743 11.485 -1.647 0 0 0 0 0 0 0 +8.711 11.519 -1.648 0 0 0 0 0 0 0 +8.693 11.57 -1.652 0 0 0 0 0 0 0 +8.675 11.621 -1.655 0 0 0 0 0 0 0 +8.65 11.664 -1.658 0 0 0 0 0 0 0 +8.607 11.683 -1.657 0 0 0 0 0 0 0 +8.613 11.729 -1.662 0 0 0 0 0 0 0 +8.583 11.765 -1.663 0 0 0 0 0 0 0 +8.553 11.802 -1.665 0 0 0 0 0 0 0 +8.534 11.854 -1.669 0 0 0 0 0 0 0 +8.491 11.873 -1.668 0 0 0 0 0 0 0 +8.468 11.919 -1.671 0 0 0 0 0 0 0 +8.455 11.94 -1.672 0 0 0 0 0 0 0 +8.42 11.972 -1.673 0 0 0 0 0 0 0 +8.387 12.005 -1.674 0 0 0 0 0 0 0 +8.363 12.05 -1.677 0 0 0 0 0 0 0 +8.325 12.077 -1.677 0 0 0 0 0 0 0 +8.283 12.096 -1.676 0 0 0 0 0 0 0 +8.236 12.109 -1.674 0 0 0 0 0 0 0 +8.216 12.161 -1.678 0 0 0 0 0 0 0 +8.204 12.185 -1.68 0 0 0 0 0 0 0 +8.157 12.198 -1.678 0 0 0 0 0 0 0 +8.135 12.248 -1.681 0 0 0 0 0 0 0 +8.092 12.267 -1.68 0 0 0 0 0 0 0 +8.059 12.301 -1.682 0 0 0 0 0 0 0 +8.029 12.339 -1.684 0 0 0 0 0 0 0 +7.995 12.371 -1.685 0 0 0 0 0 0 0 +7.978 12.389 -1.685 0 0 0 0 0 0 0 +7.945 12.422 -1.687 0 0 0 0 0 0 0 +7.905 12.445 -1.686 0 0 0 0 0 0 0 +7.869 12.475 -1.687 0 0 0 0 0 0 0 +7.831 12.501 -1.687 0 0 0 0 0 0 0 +7.799 12.538 -1.689 0 0 0 0 0 0 0 +7.756 12.557 -1.688 0 0 0 0 0 0 0 +7.747 12.586 -1.691 0 0 0 0 0 0 0 +7.713 12.621 -1.692 0 0 0 0 0 0 0 +7.677 12.65 -1.693 0 0 0 0 0 0 0 +7.637 12.674 -1.693 0 0 0 0 0 0 0 +7.6 12.703 -1.694 0 0 0 0 0 0 0 +7.56 12.727 -1.694 0 0 0 0 0 0 0 +7.526 12.761 -1.696 0 0 0 0 0 0 0 +7.514 12.786 -1.698 0 0 0 0 0 0 0 +7.479 12.818 -1.699 0 0 0 0 0 0 0 +7.442 12.847 -1.7 0 0 0 0 0 0 0 +7.407 12.88 -1.701 0 0 0 0 0 0 0 +7.366 12.902 -1.701 0 0 0 0 0 0 0 +7.326 12.927 -1.701 0 0 0 0 0 0 0 +7.289 12.955 -1.702 0 0 0 0 0 0 0 +7.274 12.977 -1.703 0 0 0 0 0 0 0 +7.238 13.008 -1.705 0 0 0 0 0 0 0 +7.204 13.043 -1.706 0 0 0 0 0 0 0 +7.171 13.079 -1.708 0 0 0 0 0 0 0 +7.138 13.118 -1.711 0 0 0 0 0 0 0 +7.103 13.152 -1.713 0 0 0 0 0 0 0 +7.069 13.187 -1.714 0 0 0 0 0 0 0 +7.031 13.216 -1.715 0 0 0 0 0 0 0 +7.02 13.244 -1.718 0 0 0 0 0 0 0 +6.983 13.277 -1.719 0 0 0 0 0 0 0 +6.956 13.327 -1.723 0 0 0 0 0 0 0 +6.918 13.356 -1.724 0 0 0 0 0 0 0 +6.884 13.393 -1.727 0 0 0 0 0 0 0 +6.846 13.422 -1.728 0 0 0 0 0 0 0 +6.835 13.505 -1.737 0 0 0 0 0 0 0 +6.859 13.604 -1.749 0 0 0 0 0 0 0 +6.864 13.722 -1.763 0 0 0 0 0 0 0 +6.874 13.85 -1.778 0 0 0 0 0 0 0 +6.884 13.98 -1.794 0 0 0 0 0 0 0 +6.898 14.119 -1.81 0 0 0 0 0 0 0 +6.897 14.229 -1.823 0 0 0 0 0 0 0 +6.919 14.39 -1.843 0 0 0 0 0 0 0 +6.952 14.516 -1.859 0 0 0 0 0 0 0 +6.95 14.629 -1.872 0 0 0 0 0 0 0 +6.913 14.67 -1.875 0 0 0 0 0 0 0 +6.871 14.701 -1.876 0 0 0 0 0 0 0 +6.823 14.719 -1.876 0 0 0 0 0 0 0 +6.773 14.731 -1.874 0 0 0 0 0 0 0 +6.73 14.76 -1.875 0 0 0 0 0 0 0 +6.7 14.756 -1.873 0 0 0 0 0 0 0 +6.65 14.768 -1.872 0 0 0 0 0 0 0 +6.609 14.801 -1.874 0 0 0 0 0 0 0 +6.549 14.791 -1.87 0 0 0 0 0 0 0 +6.505 14.819 -1.871 0 0 0 0 0 0 0 +6.457 14.835 -1.87 0 0 0 0 0 0 0 +6.414 14.865 -1.871 0 0 0 0 0 0 0 +6.386 14.862 -1.87 0 0 0 0 0 0 0 +6.342 14.889 -1.871 0 0 0 0 0 0 0 +6.284 14.884 -1.867 0 0 0 0 0 0 0 +6.231 14.887 -1.865 0 0 0 0 0 0 0 +6.18 14.897 -1.863 0 0 0 0 0 0 0 +6.128 14.904 -1.862 0 0 0 0 0 0 0 +6.073 14.903 -1.859 0 0 0 0 0 0 0 +6.021 14.909 -1.857 0 0 0 0 0 0 0 +5.99 14.9 -1.855 0 0 0 0 0 0 0 +5.944 14.92 -1.855 0 0 0 0 0 0 0 +5.893 14.93 -1.854 0 0 0 0 0 0 0 +5.845 14.945 -1.853 0 0 0 0 0 0 0 +5.788 14.939 -1.85 0 0 0 0 0 0 0 +5.745 14.966 -1.851 0 0 0 0 0 0 0 +5.692 14.969 -1.849 0 0 0 0 0 0 0 +5.667 14.975 -1.848 0 0 0 0 0 0 0 +5.61 14.964 -1.845 0 0 0 0 0 0 0 +5.554 14.958 -1.841 0 0 0 0 0 0 0 +5.505 14.972 -1.841 0 0 0 0 0 0 0 +5.456 14.983 -1.84 0 0 0 0 0 0 0 +5.403 14.983 -1.838 0 0 0 0 0 0 0 +5.357 15.004 -1.838 0 0 0 0 0 0 0 +5.328 14.996 -1.836 0 0 0 0 0 0 0 +5.279 15.009 -1.836 0 0 0 0 0 0 0 +5.22 14.991 -1.831 0 0 0 0 0 0 0 +5.174 15.011 -1.831 0 0 0 0 0 0 0 +5.122 15.011 -1.829 0 0 0 0 0 0 0 +5.066 15.002 -1.826 0 0 0 0 0 0 0 +5.013 15.001 -1.824 0 0 0 0 0 0 0 +4.983 14.988 -1.821 0 0 0 0 0 0 0 +4.935 15.002 -1.821 0 0 0 0 0 0 0 +4.883 15.002 -1.819 0 0 0 0 0 0 0 +4.839 15.029 -1.82 0 0 0 0 0 0 0 +4.794 15.05 -1.821 0 0 0 0 0 0 0 +4.75 15.076 -1.822 0 0 0 0 0 0 0 +4.708 15.108 -1.825 0 0 0 0 0 0 0 +4.66 15.121 -1.824 0 0 0 0 0 0 0 +4.638 15.134 -1.825 0 0 0 0 0 0 0 +4.589 15.145 -1.825 0 0 0 0 0 0 0 +4.542 15.161 -1.825 0 0 0 0 0 0 0 +4.494 15.173 -1.825 0 0 0 0 0 0 0 +4.442 15.172 -1.823 0 0 0 0 0 0 0 +4.396 15.192 -1.823 0 0 0 0 0 0 0 +4.343 15.188 -1.821 0 0 0 0 0 0 0 +4.316 15.182 -1.819 0 0 0 0 0 0 0 +4.264 15.182 -1.818 0 0 0 0 0 0 0 +4.213 15.182 -1.816 0 0 0 0 0 0 0 +4.156 15.162 -1.811 0 0 0 0 0 0 0 +4.098 15.137 -1.806 0 0 0 0 0 0 0 +4.043 15.123 -1.803 0 0 0 0 0 0 0 +3.989 15.113 -1.8 0 0 0 0 0 0 0 +3.935 15.002 -1.784 0 0 0 0 0 0 0 +1.758 6.846 -0.705 0 0 0 0 0 0 0 +1.734 6.84 -0.703 0 0 0 0 0 0 0 +1.674 6.697 -0.684 0 0 0 0 0 0 0 +2.004 8.212 -0.882 0 0 0 0 0 0 0 +2.285 9.475 -1.047 0 0 0 0 0 0 0 +2.433 10.292 -1.153 0 0 0 0 0 0 0 +2.413 10.351 -1.16 0 0 0 0 0 0 0 +2.471 10.902 -1.231 0 0 0 0 0 0 0 +2.581 11.548 -1.314 0 0 0 0 0 0 0 +2.578 11.707 -1.334 0 0 0 0 0 0 0 +2.67 12.303 -1.411 0 0 0 0 0 0 0 +2.676 12.423 -1.426 0 0 0 0 0 0 0 +2.726 12.849 -1.481 0 0 0 0 0 0 0 +2.894 13.841 -1.609 0 0 0 0 0 0 0 +2.629 12.786 -1.47 0 0 0 0 0 0 0 +2.588 12.792 -1.47 0 0 0 0 0 0 0 +2.551 12.816 -1.472 0 0 0 0 0 0 0 +2.746 14.009 -1.627 0 0 0 0 0 0 0 +2.727 14.029 -1.629 0 0 0 0 0 0 0 +2.68 14.024 -1.627 0 0 0 0 0 0 0 +2.635 14.03 -1.627 0 0 0 0 0 0 0 +2.592 14.042 -1.627 0 0 0 0 0 0 0 +2.546 14.038 -1.625 0 0 0 0 0 0 0 +0.589 3.481 -0.253 0 0 0 0 0 0 0 +0.582 3.473 -0.251 0 0 0 0 0 0 0 +0.568 3.459 -0.249 0 0 0 0 0 0 0 +0.556 3.455 -0.248 0 0 0 0 0 0 0 +0.546 3.46 -0.249 0 0 0 0 0 0 0 +0.535 3.462 -0.249 0 0 0 0 0 0 0 +0.525 3.468 -0.249 0 0 0 0 0 0 0 +0.517 3.491 -0.252 0 0 0 0 0 0 0 +0.509 3.47 -0.249 0 0 0 0 0 0 0 +0.496 3.46 -0.248 0 0 0 0 0 0 0 +2.025 14.197 -1.635 0 0 0 0 0 0 0 +0.469 3.351 -0.234 0 0 0 0 0 0 0 +1.982 14.211 -1.636 0 0 0 0 0 0 0 +1.937 14.213 -1.635 0 0 0 0 0 0 0 +1.892 14.221 -1.636 0 0 0 0 0 0 0 +1.87 14.226 -1.636 0 0 0 0 0 0 0 +1.824 14.222 -1.635 0 0 0 0 0 0 0 +1.781 14.238 -1.636 0 0 0 0 0 0 0 +1.736 14.241 -1.636 0 0 0 0 0 0 0 +1.692 14.257 -1.637 0 0 0 0 0 0 0 +1.649 14.272 -1.638 0 0 0 0 0 0 0 +1.605 14.289 -1.64 0 0 0 0 0 0 0 +1.561 14.301 -1.641 0 0 0 0 0 0 0 +1.54 14.314 -1.642 0 0 0 0 0 0 0 +1.495 14.321 -1.642 0 0 0 0 0 0 0 +1.45 14.321 -1.642 0 0 0 0 0 0 0 +1.405 14.328 -1.642 0 0 0 0 0 0 0 +1.361 14.344 -1.644 0 0 0 0 0 0 0 +1.316 14.352 -1.644 0 0 0 0 0 0 0 +1.272 14.362 -1.645 0 0 0 0 0 0 0 +1.249 14.364 -1.645 0 0 0 0 0 0 0 +1.205 14.376 -1.646 0 0 0 0 0 0 0 +1.165 14.453 -1.655 0 0 0 0 0 0 0 +1.12 14.454 -1.655 0 0 0 0 0 0 0 +1.076 14.473 -1.657 0 0 0 0 0 0 0 +1.041 14.619 -1.675 0 0 0 0 0 0 0 +1.033 15.167 -1.745 0 0 0 0 0 0 0 +1.012 15.208 -1.75 0 0 0 0 0 0 0 +0.965 15.227 -1.752 0 0 0 0 0 0 0 +0.919 15.255 -1.755 0 0 0 0 0 0 0 +0.872 15.284 -1.759 0 0 0 0 0 0 0 +0.826 15.314 -1.762 0 0 0 0 0 0 0 +0.779 15.341 -1.765 0 0 0 0 0 0 0 +0.732 15.363 -1.768 0 0 0 0 0 0 0 +0.685 15.399 -1.772 0 0 0 0 0 0 0 +0.662 15.426 -1.775 0 0 0 0 0 0 0 +0.613 15.424 -1.775 0 0 0 0 0 0 0 +0.529 15.796 -1.822 0 0 0 0 0 0 0 +0.472 15.55 -1.79 0 0 0 0 0 0 0 +0.422 15.509 -1.785 0 0 0 0 0 0 0 +0.373 15.499 -1.784 0 0 0 0 0 0 0 +0.348 15.497 -1.783 0 0 0 0 0 0 0 +0.3 15.504 -1.784 0 0 0 0 0 0 0 +0.251 15.517 -1.786 0 0 0 0 0 0 0 +0.202 15.51 -1.785 0 0 0 0 0 0 0 +0.154 15.526 -1.787 0 0 0 0 0 0 0 +0.105 15.523 -1.786 0 0 0 0 0 0 0 +0.056 15.525 -1.786 0 0 0 0 0 0 0 +0.032 15.533 -1.787 0 0 0 0 0 0 0 +-0.017 15.545 -1.789 0 0 0 0 0 0 0 +-0.066 15.551 -1.79 0 0 0 0 0 0 0 +-0.115 15.547 -1.789 0 0 0 0 0 0 0 +-0.164 15.55 -1.79 0 0 0 0 0 0 0 +-0.212 15.544 -1.789 0 0 0 0 0 0 0 +-0.261 15.555 -1.79 0 0 0 0 0 0 0 +-0.286 15.562 -1.791 0 0 0 0 0 0 0 +-0.335 15.565 -1.792 0 0 0 0 0 0 0 +-0.384 15.576 -1.793 0 0 0 0 0 0 0 +-0.433 15.577 -1.794 0 0 0 0 0 0 0 +-0.482 15.563 -1.792 0 0 0 0 0 0 0 +-0.53 15.558 -1.792 0 0 0 0 0 0 0 +-0.58 15.562 -1.792 0 0 0 0 0 0 0 +-0.604 15.571 -1.794 0 0 0 0 0 0 0 +-0.653 15.565 -1.793 0 0 0 0 0 0 0 +-0.702 15.573 -1.794 0 0 0 0 0 0 0 +-0.75 15.553 -1.792 0 0 0 0 0 0 0 +-0.799 15.534 -1.79 0 0 0 0 0 0 0 +-0.854 15.667 -1.807 0 0 0 0 0 0 0 +-0.903 15.646 -1.805 0 0 0 0 0 0 0 +-0.927 15.635 -1.804 0 0 0 0 0 0 0 +-0.973 15.578 -1.797 0 0 0 0 0 0 0 +-1.019 15.543 -1.793 0 0 0 0 0 0 0 +-1.068 15.54 -1.793 0 0 0 0 0 0 0 +-1.118 15.543 -1.794 0 0 0 0 0 0 0 +-1.166 15.537 -1.793 0 0 0 0 0 0 0 +-1.215 15.527 -1.793 0 0 0 0 0 0 0 +-1.264 15.527 -1.793 0 0 0 0 0 0 0 +-1.287 15.514 -1.792 0 0 0 0 0 0 0 +-1.336 15.515 -1.792 0 0 0 0 0 0 0 +-1.386 15.519 -1.793 0 0 0 0 0 0 0 +-1.435 15.524 -1.795 0 0 0 0 0 0 0 +-1.484 15.522 -1.795 0 0 0 0 0 0 0 +-1.535 15.533 -1.797 0 0 0 0 0 0 0 +-1.584 15.532 -1.797 0 0 0 0 0 0 0 +-1.609 15.533 -1.798 0 0 0 0 0 0 0 +-1.657 15.526 -1.798 0 0 0 0 0 0 0 +-1.706 15.521 -1.798 0 0 0 0 0 0 0 +-1.755 15.519 -1.798 0 0 0 0 0 0 0 +-1.805 15.524 -1.8 0 0 0 0 0 0 0 +-1.854 15.518 -1.8 0 0 0 0 0 0 0 +-1.903 15.52 -1.801 0 0 0 0 0 0 0 +-1.929 15.523 -1.801 0 0 0 0 0 0 0 +-1.977 15.513 -1.801 0 0 0 0 0 0 0 +-2.026 15.508 -1.801 0 0 0 0 0 0 0 +-2.075 15.506 -1.802 0 0 0 0 0 0 0 +-2.124 15.503 -1.802 0 0 0 0 0 0 0 +-2.172 15.493 -1.802 0 0 0 0 0 0 0 +-2.221 15.484 -1.801 0 0 0 0 0 0 0 +-2.247 15.492 -1.803 0 0 0 0 0 0 0 +-2.296 15.487 -1.803 0 0 0 0 0 0 0 +-2.346 15.489 -1.804 0 0 0 0 0 0 0 +-2.396 15.49 -1.805 0 0 0 0 0 0 0 +-2.451 15.525 -1.811 0 0 0 0 0 0 0 +-2.191 13.311 -1.526 0 0 0 0 0 0 0 +-2.211 13.173 -1.509 0 0 0 0 0 0 0 +-2.21 13.042 -1.493 0 0 0 0 0 0 0 +-2.229 12.906 -1.476 0 0 0 0 0 0 0 +-2.248 12.776 -1.46 0 0 0 0 0 0 0 +-2.267 12.645 -1.444 0 0 0 0 0 0 0 +-2.285 12.517 -1.428 0 0 0 0 0 0 0 +-2.302 12.391 -1.413 0 0 0 0 0 0 0 +-2.32 12.27 -1.398 0 0 0 0 0 0 0 +-2.318 12.154 -1.383 0 0 0 0 0 0 0 +-2.336 12.041 -1.37 0 0 0 0 0 0 0 +-2.352 11.925 -1.355 0 0 0 0 0 0 0 +-2.368 11.806 -1.341 0 0 0 0 0 0 0 +-2.383 11.69 -1.327 0 0 0 0 0 0 0 +-2.4 11.587 -1.314 0 0 0 0 0 0 0 +-2.414 11.473 -1.3 0 0 0 0 0 0 0 +-2.413 11.378 -1.288 0 0 0 0 0 0 0 +-2.426 11.263 -1.274 0 0 0 0 0 0 0 +-2.441 11.161 -1.262 0 0 0 0 0 0 0 +-2.458 11.07 -1.251 0 0 0 0 0 0 0 +-2.471 10.965 -1.238 0 0 0 0 0 0 0 +-2.485 10.868 -1.227 0 0 0 0 0 0 0 +-2.499 10.77 -1.215 0 0 0 0 0 0 0 +-2.497 10.684 -1.204 0 0 0 0 0 0 0 +-2.508 10.582 -1.192 0 0 0 0 0 0 0 +-2.52 10.485 -1.18 0 0 0 0 0 0 0 +-2.533 10.392 -1.169 0 0 0 0 0 0 0 +-2.544 10.298 -1.157 0 0 0 0 0 0 0 +-2.562 10.232 -1.15 0 0 0 0 0 0 0 +-2.569 10.122 -1.136 0 0 0 0 0 0 0 +-2.583 10.046 -1.128 0 0 0 0 0 0 0 +-2.581 9.971 -1.118 0 0 0 0 0 0 0 +-2.591 9.882 -1.107 0 0 0 0 0 0 0 +-2.603 9.801 -1.098 0 0 0 0 0 0 0 +-2.617 9.73 -1.089 0 0 0 0 0 0 0 +-2.63 9.656 -1.081 0 0 0 0 0 0 0 +-2.641 9.575 -1.071 0 0 0 0 0 0 0 +-2.652 9.5 -1.062 0 0 0 0 0 0 0 +-2.649 9.431 -1.054 0 0 0 0 0 0 0 +-2.664 9.369 -1.047 0 0 0 0 0 0 0 +-2.679 9.311 -1.04 0 0 0 0 0 0 0 +-2.695 9.257 -1.034 0 0 0 0 0 0 0 +-2.707 9.191 -1.026 0 0 0 0 0 0 0 +-2.725 9.145 -1.021 0 0 0 0 0 0 0 +-2.742 9.098 -1.016 0 0 0 0 0 0 0 +-2.742 9.046 -1.01 0 0 0 0 0 0 0 +-2.76 9.001 -1.005 0 0 0 0 0 0 0 +-2.772 8.941 -0.998 0 0 0 0 0 0 0 +-2.785 8.883 -0.992 0 0 0 0 0 0 0 +-2.8 8.833 -0.986 0 0 0 0 0 0 0 +-2.81 8.767 -0.978 0 0 0 0 0 0 0 +-2.817 8.696 -0.97 0 0 0 0 0 0 0 +-2.823 8.667 -0.967 0 0 0 0 0 0 0 +-2.837 8.617 -0.961 0 0 0 0 0 0 0 +-2.856 8.585 -0.958 0 0 0 0 0 0 0 +-2.867 8.529 -0.952 0 0 0 0 0 0 0 +-2.882 8.483 -0.947 0 0 0 0 0 0 0 +-2.895 8.436 -0.942 0 0 0 0 0 0 0 +-2.915 8.406 -0.939 0 0 0 0 0 0 0 +-2.927 8.356 -0.933 0 0 0 0 0 0 0 +-2.925 8.308 -0.927 0 0 0 0 0 0 0 +-2.94 8.267 -0.923 0 0 0 0 0 0 0 +-2.951 8.215 -0.917 0 0 0 0 0 0 0 +-2.965 8.174 -0.913 0 0 0 0 0 0 0 +-2.978 8.131 -0.908 0 0 0 0 0 0 0 +-2.992 8.09 -0.904 0 0 0 0 0 0 0 +-3.009 8.056 -0.901 0 0 0 0 0 0 0 +-3.015 8.035 -0.898 0 0 0 0 0 0 0 +-3.031 7.999 -0.895 0 0 0 0 0 0 0 +-3.044 7.958 -0.891 0 0 0 0 0 0 0 +-3.064 7.935 -0.889 0 0 0 0 0 0 0 +-3.078 7.898 -0.885 0 0 0 0 0 0 0 +-3.091 7.857 -0.881 0 0 0 0 0 0 0 +-3.109 7.83 -0.878 0 0 0 0 0 0 0 +-3.112 7.803 -0.875 0 0 0 0 0 0 0 +-3.123 7.759 -0.871 0 0 0 0 0 0 0 +-3.141 7.732 -0.868 0 0 0 0 0 0 0 +-3.157 7.704 -0.866 0 0 0 0 0 0 0 +-3.173 7.674 -0.863 0 0 0 0 0 0 0 +-3.187 7.638 -0.859 0 0 0 0 0 0 0 +-3.2 7.602 -0.856 0 0 0 0 0 0 0 +-3.203 7.575 -0.853 0 0 0 0 0 0 0 +-3.227 7.565 -0.853 0 0 0 0 0 0 0 +-3.232 7.511 -0.847 0 0 0 0 0 0 0 +-3.249 7.487 -0.845 0 0 0 0 0 0 0 +-3.264 7.456 -0.842 0 0 0 0 0 0 0 +-3.277 7.422 -0.839 0 0 0 0 0 0 0 +-3.294 7.397 -0.837 0 0 0 0 0 0 0 +-3.306 7.364 -0.833 0 0 0 0 0 0 0 +-3.322 7.367 -0.834 0 0 0 0 0 0 0 +-3.335 7.333 -0.831 0 0 0 0 0 0 0 +-3.358 7.323 -0.831 0 0 0 0 0 0 0 +-3.367 7.283 -0.827 0 0 0 0 0 0 0 +-3.388 7.267 -0.826 0 0 0 0 0 0 0 +-3.401 7.235 -0.823 0 0 0 0 0 0 0 +-3.42 7.217 -0.822 0 0 0 0 0 0 0 +-3.418 7.185 -0.819 0 0 0 0 0 0 0 +-3.442 7.176 -0.819 0 0 0 0 0 0 0 +-3.455 7.145 -0.816 0 0 0 0 0 0 0 +-3.477 7.135 -0.816 0 0 0 0 0 0 0 +-3.508 7.14 -0.818 0 0 0 0 0 0 0 +-3.534 7.138 -0.82 0 0 0 0 0 0 0 +-3.557 7.126 -0.82 0 0 0 0 0 0 0 +-3.583 7.122 -0.821 0 0 0 0 0 0 0 +-3.602 7.133 -0.823 0 0 0 0 0 0 0 +-3.626 7.125 -0.823 0 0 0 0 0 0 0 +-3.656 7.128 -0.825 0 0 0 0 0 0 0 +-3.68 7.12 -0.826 0 0 0 0 0 0 0 +-3.702 7.108 -0.826 0 0 0 0 0 0 0 +-3.734 7.114 -0.828 0 0 0 0 0 0 0 +-3.762 7.113 -0.83 0 0 0 0 0 0 0 +-3.781 7.123 -0.832 0 0 0 0 0 0 0 +-3.807 7.118 -0.833 0 0 0 0 0 0 0 +-3.836 7.118 -0.835 0 0 0 0 0 0 0 +-3.866 7.12 -0.837 0 0 0 0 0 0 0 +-3.895 7.12 -0.839 0 0 0 0 0 0 0 +-3.924 7.12 -0.841 0 0 0 0 0 0 0 +-3.953 7.12 -0.842 0 0 0 0 0 0 0 +-3.963 7.112 -0.842 0 0 0 0 0 0 0 +-4.009 7.141 -0.848 0 0 0 0 0 0 0 +-4.021 7.111 -0.846 0 0 0 0 0 0 0 +-4.058 7.124 -0.849 0 0 0 0 0 0 0 +-4.076 7.103 -0.848 0 0 0 0 0 0 0 +-4.111 7.112 -0.851 0 0 0 0 0 0 0 +-4.153 7.133 -0.857 0 0 0 0 0 0 0 +-4.157 7.115 -0.855 0 0 0 0 0 0 0 +-4.195 7.128 -0.859 0 0 0 0 0 0 0 +-4.234 7.143 -0.863 0 0 0 0 0 0 0 +-4.245 7.111 -0.86 0 0 0 0 0 0 0 +-4.313 7.124 -0.866 0 0 0 0 0 0 0 +-4.389 7.147 -0.874 0 0 0 0 0 0 0 +-4.413 7.161 -0.877 0 0 0 0 0 0 0 +-4.448 7.167 -0.88 0 0 0 0 0 0 0 +-4.482 7.171 -0.882 0 0 0 0 0 0 0 +-4.515 7.174 -0.885 0 0 0 0 0 0 0 +-4.643 7.328 -0.91 0 0 0 0 0 0 0 +-4.581 7.179 -0.89 0 0 0 0 0 0 0 +-4.752 7.371 -0.923 0 0 0 0 0 0 0 +-4.772 7.351 -0.922 0 0 0 0 0 0 0 +-4.756 7.276 -0.913 0 0 0 0 0 0 0 +-4.848 7.368 -0.929 0 0 0 0 0 0 0 +-4.889 7.379 -0.933 0 0 0 0 0 0 0 +-4.98 7.416 -0.943 0 0 0 0 0 0 0 +-4.973 7.38 -0.939 0 0 0 0 0 0 0 +-4.988 7.353 -0.937 0 0 0 0 0 0 0 +-5.079 7.437 -0.953 0 0 0 0 0 0 0 +-5.003 7.275 -0.93 0 0 0 0 0 0 0 +-7.258 10.504 -1.434 0 0 0 0 0 0 0 +-7.275 10.458 -1.43 0 0 0 0 0 0 0 +-7.275 10.388 -1.423 0 0 0 0 0 0 0 +-7.274 10.352 -1.419 0 0 0 0 0 0 0 +-7.283 10.295 -1.414 0 0 0 0 0 0 0 +-7.294 10.243 -1.409 0 0 0 0 0 0 0 +-7.297 10.178 -1.403 0 0 0 0 0 0 0 +-7.29 10.102 -1.394 0 0 0 0 0 0 0 +-7.314 10.068 -1.392 0 0 0 0 0 0 0 +-7.326 10.018 -1.388 0 0 0 0 0 0 0 +-7.322 9.979 -1.384 0 0 0 0 0 0 0 +-7.319 9.91 -1.376 0 0 0 0 0 0 0 +-7.332 9.863 -1.373 0 0 0 0 0 0 0 +-7.345 9.816 -1.369 0 0 0 0 0 0 0 +-7.348 9.754 -1.363 0 0 0 0 0 0 0 +-7.358 9.704 -1.358 0 0 0 0 0 0 0 +-7.375 9.664 -1.356 0 0 0 0 0 0 0 +-7.375 9.601 -1.349 0 0 0 0 0 0 0 +-7.373 9.568 -1.346 0 0 0 0 0 0 0 +-7.383 9.518 -1.341 0 0 0 0 0 0 0 +-7.363 9.43 -1.331 0 0 0 0 0 0 0 +-7.39 9.404 -1.33 0 0 0 0 0 0 0 +-7.406 9.364 -1.328 0 0 0 0 0 0 0 +-7.411 9.309 -1.323 0 0 0 0 0 0 0 +-7.419 9.259 -1.318 0 0 0 0 0 0 0 +-7.409 9.217 -1.313 0 0 0 0 0 0 0 +-7.419 9.17 -1.309 0 0 0 0 0 0 0 +-7.433 9.128 -1.306 0 0 0 0 0 0 0 +-7.439 9.077 -1.302 0 0 0 0 0 0 0 +-7.438 9.019 -1.296 0 0 0 0 0 0 0 +-7.44 8.963 -1.291 0 0 0 0 0 0 0 +-7.452 8.92 -1.287 0 0 0 0 0 0 0 +-7.452 8.891 -1.285 0 0 0 0 0 0 0 +-7.45 8.833 -1.279 0 0 0 0 0 0 0 +-7.463 8.791 -1.276 0 0 0 0 0 0 0 +-7.452 8.723 -1.268 0 0 0 0 0 0 0 +-7.474 8.693 -1.267 0 0 0 0 0 0 0 +-7.483 8.649 -1.263 0 0 0 0 0 0 0 +-7.489 8.601 -1.259 0 0 0 0 0 0 0 +-7.488 8.573 -1.257 0 0 0 0 0 0 0 +-7.491 8.521 -1.252 0 0 0 0 0 0 0 +-7.498 8.475 -1.248 0 0 0 0 0 0 0 +-7.506 8.431 -1.244 0 0 0 0 0 0 0 +-7.507 8.379 -1.24 0 0 0 0 0 0 0 +-7.519 8.339 -1.237 0 0 0 0 0 0 0 +-7.526 8.295 -1.233 0 0 0 0 0 0 0 +-7.521 8.262 -1.23 0 0 0 0 0 0 0 +-7.527 8.217 -1.226 0 0 0 0 0 0 0 +-7.534 8.172 -1.222 0 0 0 0 0 0 0 +-7.536 8.124 -1.218 0 0 0 0 0 0 0 +-7.55 8.087 -1.216 0 0 0 0 0 0 0 +-7.532 8.017 -1.208 0 0 0 0 0 0 0 +-7.59 8.028 -1.214 0 0 0 0 0 0 0 +-11.431 12.035 -1.924 0 0 0 0 0 0 0 +-11.461 12.028 -1.926 0 0 0 0 0 0 0 +-11.518 12.012 -1.929 0 0 0 0 0 0 0 +-11.569 11.99 -1.932 0 0 0 0 0 0 0 +-11.614 11.961 -1.933 0 0 0 0 0 0 0 +-11.665 11.939 -1.936 0 0 0 0 0 0 0 +-11.71 11.909 -1.937 0 0 0 0 0 0 0 +-11.743 11.868 -1.936 0 0 0 0 0 0 0 +-11.768 11.857 -1.937 0 0 0 0 0 0 0 +-11.81 11.824 -1.938 0 0 0 0 0 0 0 +-11.841 11.781 -1.937 0 0 0 0 0 0 0 +-11.888 11.754 -1.939 0 0 0 0 0 0 0 +-11.928 11.719 -1.939 0 0 0 0 0 0 0 +-11.962 11.679 -1.939 0 0 0 0 0 0 0 +-12.001 11.644 -1.939 0 0 0 0 0 0 0 +-12.009 11.615 -1.938 0 0 0 0 0 0 0 +-12.047 11.579 -1.938 0 0 0 0 0 0 0 +-12.079 11.537 -1.937 0 0 0 0 0 0 0 +-12.123 11.506 -1.938 0 0 0 0 0 0 0 +-12.156 11.465 -1.938 0 0 0 0 0 0 0 +-12.195 11.429 -1.938 0 0 0 0 0 0 0 +-12.232 11.392 -1.939 0 0 0 0 0 0 0 +-12.263 11.385 -1.941 0 0 0 0 0 0 0 +-12.303 11.351 -1.942 0 0 0 0 0 0 0 +-12.342 11.315 -1.942 0 0 0 0 0 0 0 +-12.377 11.276 -1.942 0 0 0 0 0 0 0 +-12.411 11.235 -1.942 0 0 0 0 0 0 0 +-12.443 11.194 -1.941 0 0 0 0 0 0 0 +-12.474 11.151 -1.941 0 0 0 0 0 0 0 +-12.5 11.104 -1.939 0 0 0 0 0 0 0 +-12.519 11.085 -1.939 0 0 0 0 0 0 0 +-12.56 11.051 -1.94 0 0 0 0 0 0 0 +-12.582 11.001 -1.938 0 0 0 0 0 0 0 +-12.606 10.952 -1.937 0 0 0 0 0 0 0 +-12.654 10.924 -1.939 0 0 0 0 0 0 0 +-12.684 10.881 -1.938 0 0 0 0 0 0 0 +-12.726 10.847 -1.939 0 0 0 0 0 0 0 +-12.735 10.821 -1.938 0 0 0 0 0 0 0 +-12.778 10.788 -1.94 0 0 0 0 0 0 0 +-12.814 10.75 -1.94 0 0 0 0 0 0 0 +-12.859 10.719 -1.942 0 0 0 0 0 0 0 +-12.908 10.692 -1.944 0 0 0 0 0 0 0 +-12.946 10.655 -1.945 0 0 0 0 0 0 0 +-12.987 10.62 -1.946 0 0 0 0 0 0 0 +-12.993 10.591 -1.945 0 0 0 0 0 0 0 +-13.019 10.544 -1.943 0 0 0 0 0 0 0 +-13.058 10.508 -1.944 0 0 0 0 0 0 0 +-13.085 10.462 -1.943 0 0 0 0 0 0 0 +-13.118 10.421 -1.943 0 0 0 0 0 0 0 +-13.143 10.373 -1.942 0 0 0 0 0 0 0 +-13.17 10.328 -1.941 0 0 0 0 0 0 0 +-13.174 10.298 -1.939 0 0 0 0 0 0 0 +-13.205 10.255 -1.939 0 0 0 0 0 0 0 +-13.237 10.214 -1.939 0 0 0 0 0 0 0 +-13.26 10.165 -1.938 0 0 0 0 0 0 0 +-13.291 10.123 -1.938 0 0 0 0 0 0 0 +-13.325 10.083 -1.938 0 0 0 0 0 0 0 +-13.348 10.035 -1.937 0 0 0 0 0 0 0 +-13.369 10.017 -1.937 0 0 0 0 0 0 0 +-13.407 9.98 -1.938 0 0 0 0 0 0 0 +-13.436 9.937 -1.938 0 0 0 0 0 0 0 +-13.48 9.904 -1.94 0 0 0 0 0 0 0 +-13.492 9.847 -1.937 0 0 0 0 0 0 0 +-13.523 9.805 -1.937 0 0 0 0 0 0 0 +-13.551 9.76 -1.937 0 0 0 0 0 0 0 +-13.569 9.741 -1.937 0 0 0 0 0 0 0 +-13.611 9.706 -1.939 0 0 0 0 0 0 0 +-13.637 9.66 -1.938 0 0 0 0 0 0 0 +-13.662 9.614 -1.937 0 0 0 0 0 0 0 +-13.69 9.57 -1.937 0 0 0 0 0 0 0 +-13.72 9.527 -1.937 0 0 0 0 0 0 0 +-13.757 9.488 -1.938 0 0 0 0 0 0 0 +-13.778 9.439 -1.937 0 0 0 0 0 0 0 +-13.8 9.422 -1.938 0 0 0 0 0 0 0 +-13.828 9.377 -1.938 0 0 0 0 0 0 0 +-13.849 9.328 -1.936 0 0 0 0 0 0 0 +-13.883 9.288 -1.937 0 0 0 0 0 0 0 +-6.694 4.432 -0.828 0 0 0 0 0 0 0 +-6.688 4.398 -0.825 0 0 0 0 0 0 0 +-6.697 4.373 -0.824 0 0 0 0 0 0 0 +-6.697 4.359 -0.823 0 0 0 0 0 0 0 +-6.714 4.34 -0.823 0 0 0 0 0 0 0 +-6.936 4.453 -0.855 0 0 0 0 0 0 0 +-14.091 8.954 -1.936 0 0 0 0 0 0 0 +-14.131 8.917 -1.938 0 0 0 0 0 0 0 +-14.149 8.867 -1.936 0 0 0 0 0 0 0 +-14.154 8.839 -1.935 0 0 0 0 0 0 0 +-14.189 8.799 -1.936 0 0 0 0 0 0 0 +-14.23 8.763 -1.938 0 0 0 0 0 0 0 +-14.249 8.713 -1.937 0 0 0 0 0 0 0 +-14.28 8.67 -1.937 0 0 0 0 0 0 0 +-14.312 8.628 -1.938 0 0 0 0 0 0 0 +-14.334 8.58 -1.937 0 0 0 0 0 0 0 +-14.349 8.558 -1.938 0 0 0 0 0 0 0 +-14.384 8.518 -1.939 0 0 0 0 0 0 0 +-14.403 8.468 -1.938 0 0 0 0 0 0 0 +-14.432 8.425 -1.938 0 0 0 0 0 0 0 +-14.45 8.374 -1.937 0 0 0 0 0 0 0 +-14.47 8.325 -1.936 0 0 0 0 0 0 0 +-14.503 8.284 -1.937 0 0 0 0 0 0 0 +-14.504 8.254 -1.935 0 0 0 0 0 0 0 +-14.41 8.141 -1.917 0 0 0 0 0 0 0 +-14.114 7.914 -1.87 0 0 0 0 0 0 0 +-14.485 8.064 -1.921 0 0 0 0 0 0 0 +-14.608 8.072 -1.935 0 0 0 0 0 0 0 +-12.535 6.871 -1.629 0 0 0 0 0 0 0 +-12.534 6.819 -1.626 0 0 0 0 0 0 0 +-12.561 6.783 -1.627 0 0 0 0 0 0 0 +-13.873 7.41 -1.812 0 0 0 0 0 0 0 +-13.887 7.362 -1.811 0 0 0 0 0 0 0 +-13.922 7.324 -1.813 0 0 0 0 0 0 0 +-7.043 3.634 -0.814 0 0 0 0 0 0 0 +-7.088 3.629 -0.819 0 0 0 0 0 0 0 +-7.153 3.649 -0.828 0 0 0 0 0 0 0 +-7.234 3.662 -0.838 0 0 0 0 0 0 0 +-7.312 3.673 -0.847 0 0 0 0 0 0 0 +-7.4 3.688 -0.858 0 0 0 0 0 0 0 +-7.479 3.699 -0.868 0 0 0 0 0 0 0 +-7.425 3.643 -0.859 0 0 0 0 0 0 0 +-7.6 3.7 -0.882 0 0 0 0 0 0 0 +-15.033 7.317 -1.939 0 0 0 0 0 0 0 +-14.596 7.047 -1.874 0 0 0 0 0 0 0 +-14.303 6.849 -1.829 0 0 0 0 0 0 0 +-14.627 6.949 -1.872 0 0 0 0 0 0 0 +-14.62 6.889 -1.868 0 0 0 0 0 0 0 +-15.184 7.098 -1.944 0 0 0 0 0 0 0 +-15.24 7.066 -1.949 0 0 0 0 0 0 0 +-13.912 6.421 -1.76 0 0 0 0 0 0 0 +-15.284 6.999 -1.951 0 0 0 0 0 0 0 +-15.312 6.954 -1.951 0 0 0 0 0 0 0 +-15.314 6.896 -1.949 0 0 0 0 0 0 0 +-15.332 6.847 -1.948 0 0 0 0 0 0 0 +-15.355 6.799 -1.948 0 0 0 0 0 0 0 +-15.374 6.75 -1.948 0 0 0 0 0 0 0 +-15.399 6.732 -1.95 0 0 0 0 0 0 0 +-15.428 6.687 -1.951 0 0 0 0 0 0 0 +-15.498 6.66 -1.958 0 0 0 0 0 0 0 +-15.526 6.614 -1.959 0 0 0 0 0 0 0 +-15.558 6.57 -1.961 0 0 0 0 0 0 0 +-15.781 6.607 -1.989 0 0 0 0 0 0 0 +-15.928 6.61 -2.006 0 0 0 0 0 0 0 +-15.913 6.574 -2.003 0 0 0 0 0 0 0 +-15.904 6.512 -1.999 0 0 0 0 0 0 0 +-15.913 6.399 -1.994 0 0 0 0 0 0 0 +-15.928 6.347 -1.994 0 0 0 0 0 0 0 +-15.939 6.293 -1.992 0 0 0 0 0 0 0 +-15.945 6.238 -1.991 0 0 0 0 0 0 0 +-15.955 6.213 -1.991 0 0 0 0 0 0 0 +-15.962 6.158 -1.989 0 0 0 0 0 0 0 +-15.968 6.103 -1.987 0 0 0 0 0 0 0 +-15.98 6.05 -1.986 0 0 0 0 0 0 0 +-16 6 -1.986 0 0 0 0 0 0 0 +-16.01 5.946 -1.985 0 0 0 0 0 0 0 +-16.049 5.904 -1.988 0 0 0 0 0 0 0 +-16.064 5.88 -1.989 0 0 0 0 0 0 0 +-16.064 5.823 -1.986 0 0 0 0 0 0 0 +-16.076 5.771 -1.985 0 0 0 0 0 0 0 +-16.042 5.701 -1.978 0 0 0 0 0 0 0 +-16.045 5.646 -1.976 0 0 0 0 0 0 0 +-16.047 5.59 -1.974 0 0 0 0 0 0 0 +-16.057 5.537 -1.973 0 0 0 0 0 0 0 +-16.042 5.503 -1.97 0 0 0 0 0 0 0 +-16.042 5.447 -1.967 0 0 0 0 0 0 0 +-16.05 5.394 -1.966 0 0 0 0 0 0 0 +-16.048 5.337 -1.964 0 0 0 0 0 0 0 +-16.072 5.289 -1.965 0 0 0 0 0 0 0 +-15.958 5.196 -1.947 0 0 0 0 0 0 0 +-16.133 5.197 -1.968 0 0 0 0 0 0 0 +-16.134 5.141 -1.966 0 0 0 0 0 0 0 +-16.114 5.107 -1.963 0 0 0 0 0 0 0 +-16.128 5.056 -1.962 0 0 0 0 0 0 0 +-16.081 4.986 -1.954 0 0 0 0 0 0 0 +-16.086 4.932 -1.953 0 0 0 0 0 0 0 +-16.099 4.88 -1.952 0 0 0 0 0 0 0 +-16.099 4.825 -1.95 0 0 0 0 0 0 0 +-16.107 4.772 -1.949 0 0 0 0 0 0 0 +-16.11 4.746 -1.949 0 0 0 0 0 0 0 +-16.125 4.695 -1.949 0 0 0 0 0 0 0 +-16.136 4.643 -1.948 0 0 0 0 0 0 0 +-16.156 4.594 -1.949 0 0 0 0 0 0 0 +-15.976 4.489 -1.923 0 0 0 0 0 0 0 +-16.221 4.503 -1.954 0 0 0 0 0 0 0 +-9.628 2.629 -1.077 0 0 0 0 0 0 0 +-9.244 2.492 -1.025 0 0 0 0 0 0 0 +-8.221 2.144 -0.888 0 0 0 0 0 0 0 +-8.125 2.01 -0.871 0 0 0 0 0 0 0 +-8.068 1.982 -0.863 0 0 0 0 0 0 0 +-7.967 1.825 -0.846 0 0 0 0 0 0 0 +-8.042 1.816 -0.855 0 0 0 0 0 0 0 +-8.128 1.822 -0.866 0 0 0 0 0 0 0 +-7.917 1.748 -0.838 0 0 0 0 0 0 0 +-7.88 1.713 -0.832 0 0 0 0 0 0 0 +-7.889 1.69 -0.833 0 0 0 0 0 0 0 +-7.873 1.66 -0.83 0 0 0 0 0 0 0 +-7.87 1.634 -0.829 0 0 0 0 0 0 0 +-7.852 1.604 -0.826 0 0 0 0 0 0 0 +-7.858 1.593 -0.826 0 0 0 0 0 0 0 +-7.871 1.57 -0.827 0 0 0 0 0 0 0 +-7.866 1.543 -0.826 0 0 0 0 0 0 0 +-7.86 1.516 -0.825 0 0 0 0 0 0 0 +-7.839 1.486 -0.821 0 0 0 0 0 0 0 +-7.846 1.462 -0.822 0 0 0 0 0 0 0 +-7.834 1.435 -0.82 0 0 0 0 0 0 0 +-7.835 1.422 -0.819 0 0 0 0 0 0 0 +-7.82 1.394 -0.817 0 0 0 0 0 0 0 +-7.834 1.371 -0.818 0 0 0 0 0 0 0 +-7.817 1.342 -0.815 0 0 0 0 0 0 0 +-7.807 1.316 -0.813 0 0 0 0 0 0 0 +-7.823 1.293 -0.815 0 0 0 0 0 0 0 +-7.837 1.27 -0.816 0 0 0 0 0 0 0 +-7.829 1.243 -0.815 0 0 0 0 0 0 0 +-7.825 1.23 -0.814 0 0 0 0 0 0 0 +-7.829 1.206 -0.814 0 0 0 0 0 0 0 +-7.854 1.184 -0.817 0 0 0 0 0 0 0 +-7.85 1.159 -0.816 0 0 0 0 0 0 0 +-7.842 1.132 -0.814 0 0 0 0 0 0 0 +-7.841 1.107 -0.814 0 0 0 0 0 0 0 +-7.864 1.085 -0.816 0 0 0 0 0 0 0 +-7.843 1.069 -0.813 0 0 0 0 0 0 0 +-7.866 1.047 -0.816 0 0 0 0 0 0 0 +-7.869 1.023 -0.816 0 0 0 0 0 0 0 +-7.878 0.999 -0.816 0 0 0 0 0 0 0 +-7.891 0.975 -0.818 0 0 0 0 0 0 0 +-7.912 0.953 -0.82 0 0 0 0 0 0 0 +-7.936 0.93 -0.823 0 0 0 0 0 0 0 +-7.926 0.917 -0.821 0 0 0 0 0 0 0 +-7.933 0.892 -0.822 0 0 0 0 0 0 0 +-7.918 0.865 -0.82 0 0 0 0 0 0 0 +-7.968 0.845 -0.826 0 0 0 0 0 0 0 +-7.994 0.823 -0.829 0 0 0 0 0 0 0 +-7.994 0.798 -0.828 0 0 0 0 0 0 0 +-8.003 0.773 -0.829 0 0 0 0 0 0 0 +-8.024 0.762 -0.832 0 0 0 0 0 0 0 +-8.044 0.739 -0.834 0 0 0 0 0 0 0 +-8.082 0.717 -0.839 0 0 0 0 0 0 0 +-8.495 0.701 -0.891 0 0 0 0 0 0 0 +-8.517 0.676 -0.894 0 0 0 0 0 0 0 +-8.519 0.649 -0.894 0 0 0 0 0 0 0 +-8.557 0.625 -0.898 0 0 0 0 0 0 0 +-8.571 0.599 -0.9 0 0 0 0 0 0 0 +-8.716 0.541 -0.918 0 0 0 0 0 0 0 +-8.713 0.513 -0.917 0 0 0 0 0 0 0 +-8.743 0.488 -0.921 0 0 0 0 0 0 0 +-8.77 0.462 -0.924 0 0 0 0 0 0 0 +-8.835 0.437 -0.932 0 0 0 0 0 0 0 +-18.178 0.842 -2.128 0 0 0 0 0 0 0 +-18.178 0.785 -2.128 0 0 0 0 0 0 0 +-18.153 0.726 -2.124 0 0 0 0 0 0 0 +-18.153 0.669 -2.124 0 0 0 0 0 0 0 +-18.134 0.611 -2.121 0 0 0 0 0 0 0 +-18.141 0.555 -2.122 0 0 0 0 0 0 0 +-18.132 0.526 -2.121 0 0 0 0 0 0 0 +-18.128 0.469 -2.12 0 0 0 0 0 0 0 +-18.115 0.411 -2.118 0 0 0 0 0 0 0 +-18.121 0.355 -2.119 0 0 0 0 0 0 0 +-18.116 0.297 -2.118 0 0 0 0 0 0 0 +-18.112 0.241 -2.117 0 0 0 0 0 0 0 +-18.123 0.184 -2.119 0 0 0 0 0 0 0 +-18.125 0.155 -2.119 0 0 0 0 0 0 0 +-18.112 0.098 -2.117 0 0 0 0 0 0 0 +-18.11 0.041 -2.117 0 0 0 0 0 0 0 +-18.104 -0.016 -2.116 0 0 0 0 0 0 0 +-18.098 -0.072 -2.115 0 0 0 0 0 0 0 +-18.078 -0.129 -2.113 0 0 0 0 0 0 0 +-18.058 -0.186 -2.11 0 0 0 0 0 0 0 +-18.071 -0.214 -2.112 0 0 0 0 0 0 0 +-18.064 -0.271 -2.111 0 0 0 0 0 0 0 +-18.054 -0.328 -2.11 0 0 0 0 0 0 0 +-18.043 -0.384 -2.109 0 0 0 0 0 0 0 +-18.021 -0.44 -2.106 0 0 0 0 0 0 0 +-18.022 -0.497 -2.106 0 0 0 0 0 0 0 +-18.012 -0.553 -2.105 0 0 0 0 0 0 0 +-18.007 -0.61 -2.105 0 0 0 0 0 0 0 +-18.002 -0.638 -2.104 0 0 0 0 0 0 0 +-17.986 -0.694 -2.103 0 0 0 0 0 0 0 +-17.971 -0.75 -2.101 0 0 0 0 0 0 0 +-17.953 -0.806 -2.099 0 0 0 0 0 0 0 +-17.945 -0.862 -2.098 0 0 0 0 0 0 0 +-17.926 -0.917 -2.096 0 0 0 0 0 0 0 +-17.917 -0.973 -2.096 0 0 0 0 0 0 0 +-17.896 -1.001 -2.093 0 0 0 0 0 0 0 +-17.871 -1.056 -2.09 0 0 0 0 0 0 0 +-17.861 -1.111 -2.089 0 0 0 0 0 0 0 +-17.826 -1.165 -2.085 0 0 0 0 0 0 0 +-17.806 -1.22 -2.083 0 0 0 0 0 0 0 +-17.787 -1.275 -2.081 0 0 0 0 0 0 0 +-17.771 -1.33 -2.08 0 0 0 0 0 0 0 +-17.757 -1.357 -2.078 0 0 0 0 0 0 0 +-17.746 -1.412 -2.078 0 0 0 0 0 0 0 +-17.724 -1.467 -2.075 0 0 0 0 0 0 0 +-16.118 -1.387 -1.87 0 0 0 0 0 0 0 +-16.096 -1.436 -1.868 0 0 0 0 0 0 0 +-16.084 -1.486 -1.867 0 0 0 0 0 0 0 +-16.106 -1.539 -1.87 0 0 0 0 0 0 0 +-17.642 -1.712 -2.068 0 0 0 0 0 0 0 +-17.611 -1.764 -2.064 0 0 0 0 0 0 0 +-17.596 -1.819 -2.063 0 0 0 0 0 0 0 +-17.588 -1.874 -2.063 0 0 0 0 0 0 0 +-17.566 -1.927 -2.061 0 0 0 0 0 0 0 +-17.55 -1.981 -2.06 0 0 0 0 0 0 0 +-17.526 -2.034 -2.057 0 0 0 0 0 0 0 +-17.493 -2.059 -2.053 0 0 0 0 0 0 0 +-17.477 -2.112 -2.052 0 0 0 0 0 0 0 +-17.462 -2.166 -2.051 0 0 0 0 0 0 0 +-17.434 -2.218 -2.048 0 0 0 0 0 0 0 +-17.415 -2.272 -2.047 0 0 0 0 0 0 0 +-17.402 -2.326 -2.046 0 0 0 0 0 0 0 +-17.379 -2.378 -2.044 0 0 0 0 0 0 0 +-17.369 -2.405 -2.043 0 0 0 0 0 0 0 +-17.361 -2.459 -2.043 0 0 0 0 0 0 0 +-17.328 -2.51 -2.04 0 0 0 0 0 0 0 +-17.346 -2.568 -2.043 0 0 0 0 0 0 0 +-17.322 -2.62 -2.041 0 0 0 0 0 0 0 +-17.315 -2.675 -2.042 0 0 0 0 0 0 0 +-17.311 -2.73 -2.042 0 0 0 0 0 0 0 +-17.303 -2.757 -2.042 0 0 0 0 0 0 0 +-17.274 -2.808 -2.039 0 0 0 0 0 0 0 +-17.258 -2.861 -2.038 0 0 0 0 0 0 0 +-17.223 -2.911 -2.035 0 0 0 0 0 0 0 +-17.194 -2.961 -2.032 0 0 0 0 0 0 0 +-17.183 -3.015 -2.032 0 0 0 0 0 0 0 +-17.144 -3.064 -2.028 0 0 0 0 0 0 0 +-17.131 -3.117 -2.028 0 0 0 0 0 0 0 +-17.116 -3.142 -2.026 0 0 0 0 0 0 0 +-17.094 -3.194 -2.025 0 0 0 0 0 0 0 +-17.059 -3.243 -2.022 0 0 0 0 0 0 0 +-17.041 -3.295 -2.02 0 0 0 0 0 0 0 +-17.017 -3.346 -2.019 0 0 0 0 0 0 0 +-17 -3.398 -2.018 0 0 0 0 0 0 0 +-16.984 -3.45 -2.017 0 0 0 0 0 0 0 +-16.968 -3.475 -2.016 0 0 0 0 0 0 0 +-16.95 -3.526 -2.015 0 0 0 0 0 0 0 +-16.929 -3.578 -2.014 0 0 0 0 0 0 0 +-16.894 -3.626 -2.011 0 0 0 0 0 0 0 +-16.885 -3.679 -2.011 0 0 0 0 0 0 0 +-16.857 -3.729 -2.009 0 0 0 0 0 0 0 +-16.832 -3.779 -2.007 0 0 0 0 0 0 0 +-16.82 -3.804 -2.006 0 0 0 0 0 0 0 +-16.785 -3.852 -2.003 0 0 0 0 0 0 0 +-16.761 -3.902 -2.002 0 0 0 0 0 0 0 +-16.73 -3.95 -1.999 0 0 0 0 0 0 0 +-16.679 -3.993 -1.994 0 0 0 0 0 0 0 +-16.647 -4.041 -1.992 0 0 0 0 0 0 0 +-16.626 -4.091 -1.991 0 0 0 0 0 0 0 +-16.583 -4.108 -1.986 0 0 0 0 0 0 0 +-16.561 -4.158 -1.984 0 0 0 0 0 0 0 +-16.528 -4.205 -1.982 0 0 0 0 0 0 0 +-16.484 -4.249 -1.978 0 0 0 0 0 0 0 +-16.465 -4.299 -1.977 0 0 0 0 0 0 0 +-16.421 -4.343 -1.973 0 0 0 0 0 0 0 +-16.399 -4.393 -1.972 0 0 0 0 0 0 0 +-16.383 -4.416 -1.971 0 0 0 0 0 0 0 +-16.352 -4.462 -1.968 0 0 0 0 0 0 0 +-16.324 -4.51 -1.967 0 0 0 0 0 0 0 +-16.302 -4.559 -1.966 0 0 0 0 0 0 0 +-16.278 -4.608 -1.964 0 0 0 0 0 0 0 +-16.26 -4.658 -1.964 0 0 0 0 0 0 0 +-16.241 -4.708 -1.963 0 0 0 0 0 0 0 +-16.224 -4.731 -1.962 0 0 0 0 0 0 0 +-16.192 -4.776 -1.96 0 0 0 0 0 0 0 +-16.152 -4.82 -1.957 0 0 0 0 0 0 0 +-16.128 -4.868 -1.955 0 0 0 0 0 0 0 +-16.107 -4.917 -1.955 0 0 0 0 0 0 0 +-16.072 -4.962 -1.952 0 0 0 0 0 0 0 +-16.058 -5.013 -1.952 0 0 0 0 0 0 0 +-16.037 -5.034 -1.95 0 0 0 0 0 0 0 +-16.008 -5.08 -1.949 0 0 0 0 0 0 0 +-15.977 -5.125 -1.947 0 0 0 0 0 0 0 +-15.955 -5.174 -1.946 0 0 0 0 0 0 0 +-15.924 -5.219 -1.944 0 0 0 0 0 0 0 +-15.89 -5.263 -1.942 0 0 0 0 0 0 0 +-15.877 -5.314 -1.942 0 0 0 0 0 0 0 +-15.85 -5.333 -1.94 0 0 0 0 0 0 0 +-15.835 -5.383 -1.94 0 0 0 0 0 0 0 +-15.813 -5.431 -1.939 0 0 0 0 0 0 0 +-15.824 -5.491 -1.943 0 0 0 0 0 0 0 +-15.799 -5.538 -1.942 0 0 0 0 0 0 0 +-15.783 -5.588 -1.942 0 0 0 0 0 0 0 +-15.758 -5.635 -1.941 0 0 0 0 0 0 0 +-15.747 -5.659 -1.941 0 0 0 0 0 0 0 +-15.72 -5.705 -1.94 0 0 0 0 0 0 0 +-15.698 -5.753 -1.939 0 0 0 0 0 0 0 +-15.68 -5.802 -1.939 0 0 0 0 0 0 0 +-15.649 -5.847 -1.937 0 0 0 0 0 0 0 +-15.632 -5.896 -1.938 0 0 0 0 0 0 0 +-15.614 -5.946 -1.938 0 0 0 0 0 0 0 +-15.571 -5.985 -1.934 0 0 0 0 0 0 0 +-15.563 -6.01 -1.934 0 0 0 0 0 0 0 +-15.541 -6.058 -1.934 0 0 0 0 0 0 0 +-15.529 -6.11 -1.935 0 0 0 0 0 0 0 +-15.512 -6.159 -1.935 0 0 0 0 0 0 0 +-15.489 -6.206 -1.935 0 0 0 0 0 0 0 +-15.473 -6.256 -1.935 0 0 0 0 0 0 0 +-15.44 -6.3 -1.933 0 0 0 0 0 0 0 +-15.43 -6.324 -1.933 0 0 0 0 0 0 0 +-15.405 -6.37 -1.933 0 0 0 0 0 0 0 +-15.394 -6.422 -1.934 0 0 0 0 0 0 0 +-15.381 -6.474 -1.935 0 0 0 0 0 0 0 +-15.349 -6.517 -1.933 0 0 0 0 0 0 0 +-15.343 -6.572 -1.936 0 0 0 0 0 0 0 +-15.325 -6.621 -1.936 0 0 0 0 0 0 0 +-15.321 -6.648 -1.937 0 0 0 0 0 0 0 +-15.306 -6.698 -1.938 0 0 0 0 0 0 0 +-15.288 -6.748 -1.938 0 0 0 0 0 0 0 +-15.283 -6.803 -1.94 0 0 0 0 0 0 0 +-15.262 -6.851 -1.94 0 0 0 0 0 0 0 +-15.251 -6.904 -1.942 0 0 0 0 0 0 0 +-15.228 -6.951 -1.942 0 0 0 0 0 0 0 +-15.226 -6.979 -1.943 0 0 0 0 0 0 0 +-15.204 -7.027 -1.943 0 0 0 0 0 0 0 +-15.18 -7.074 -1.943 0 0 0 0 0 0 0 +-14.796 -6.953 -1.892 0 0 0 0 0 0 0 +-14.888 -7.052 -1.908 0 0 0 0 0 0 0 +-14.713 -7.027 -1.886 0 0 0 0 0 0 0 +-14.97 -7.207 -1.926 0 0 0 0 0 0 0 +-15.128 -7.312 -1.95 0 0 0 0 0 0 0 +-15.107 -7.36 -1.95 0 0 0 0 0 0 0 +-14.924 -7.329 -1.927 0 0 0 0 0 0 0 +-14.692 -7.273 -1.897 0 0 0 0 0 0 0 +-14.657 -7.313 -1.896 0 0 0 0 0 0 0 +-14.797 -7.441 -1.919 0 0 0 0 0 0 0 +-15.076 -7.64 -1.962 0 0 0 0 0 0 0 +-15.08 -7.672 -1.965 0 0 0 0 0 0 0 +-15.067 -7.725 -1.966 0 0 0 0 0 0 0 +-15.044 -7.773 -1.966 0 0 0 0 0 0 0 +-15.03 -7.826 -1.968 0 0 0 0 0 0 0 +-15.007 -7.874 -1.968 0 0 0 0 0 0 0 +-14.997 -7.928 -1.97 0 0 0 0 0 0 0 +-14.982 -7.981 -1.972 0 0 0 0 0 0 0 +-14.982 -8.011 -1.974 0 0 0 0 0 0 0 +-14.964 -8.062 -1.975 0 0 0 0 0 0 0 +-14.952 -8.116 -1.977 0 0 0 0 0 0 0 +-14.916 -8.158 -1.975 0 0 0 0 0 0 0 +-14.899 -8.209 -1.976 0 0 0 0 0 0 0 +-14.88 -8.26 -1.977 0 0 0 0 0 0 0 +-14.863 -8.311 -1.979 0 0 0 0 0 0 0 +-14.852 -8.367 -1.981 0 0 0 0 0 0 0 +-14.823 -8.381 -1.979 0 0 0 0 0 0 0 +-14.802 -8.431 -1.979 0 0 0 0 0 0 0 +-14.781 -8.48 -1.98 0 0 0 0 0 0 0 +-14.758 -8.529 -1.981 0 0 0 0 0 0 0 +-14.748 -8.585 -1.983 0 0 0 0 0 0 0 +-14.726 -8.634 -1.984 0 0 0 0 0 0 0 +-14.706 -8.684 -1.985 0 0 0 0 0 0 0 +-14.699 -8.712 -1.986 0 0 0 0 0 0 0 +-14.663 -8.753 -1.985 0 0 0 0 0 0 0 +-14.654 -8.81 -1.988 0 0 0 0 0 0 0 +-14.63 -8.858 -1.988 0 0 0 0 0 0 0 +-14.612 -8.91 -1.99 0 0 0 0 0 0 0 +-14.596 -8.963 -1.991 0 0 0 0 0 0 0 +-14.566 -9.008 -1.991 0 0 0 0 0 0 0 +-14.557 -9.034 -1.992 0 0 0 0 0 0 0 +-14.532 -9.082 -1.992 0 0 0 0 0 0 0 +-14.505 -9.128 -1.993 0 0 0 0 0 0 0 +-14.481 -9.177 -1.993 0 0 0 0 0 0 0 +-14.469 -9.233 -1.996 0 0 0 0 0 0 0 +-14.453 -9.287 -1.998 0 0 0 0 0 0 0 +-14.429 -9.336 -1.999 0 0 0 0 0 0 0 +-14.417 -9.361 -1.999 0 0 0 0 0 0 0 +-14.4 -9.413 -2.001 0 0 0 0 0 0 0 +-14.382 -9.466 -2.003 0 0 0 0 0 0 0 +-14.37 -9.523 -2.006 0 0 0 0 0 0 0 +-14.36 -9.582 -2.009 0 0 0 0 0 0 0 +-14.349 -9.64 -2.012 0 0 0 0 0 0 0 +-14.336 -9.696 -2.014 0 0 0 0 0 0 0 +-14.347 -9.736 -2.018 0 0 0 0 0 0 0 +-10.761 -7.41 -1.472 0 0 0 0 0 0 0 +-10.778 -7.472 -1.478 0 0 0 0 0 0 0 +-10.571 -7.378 -1.449 0 0 0 0 0 0 0 +-10.512 -7.386 -1.444 0 0 0 0 0 0 0 +-10.475 -7.41 -1.442 0 0 0 0 0 0 0 +-10.444 -7.412 -1.439 0 0 0 0 0 0 0 +-10.406 -7.435 -1.436 0 0 0 0 0 0 0 +-10.402 -7.481 -1.44 0 0 0 0 0 0 0 +-10.416 -7.541 -1.445 0 0 0 0 0 0 0 +-10.399 -7.578 -1.446 0 0 0 0 0 0 0 +-10.375 -7.611 -1.446 0 0 0 0 0 0 0 +-10.34 -7.635 -1.445 0 0 0 0 0 0 0 +-13.961 -10.332 -2.022 0 0 0 0 0 0 0 +-13.933 -10.379 -2.023 0 0 0 0 0 0 0 +-13.899 -10.422 -2.023 0 0 0 0 0 0 0 +-13.869 -10.468 -2.023 0 0 0 0 0 0 0 +-13.832 -10.507 -2.022 0 0 0 0 0 0 0 +-13.788 -10.542 -2.02 0 0 0 0 0 0 0 +-13.743 -10.577 -2.019 0 0 0 0 0 0 0 +-13.723 -10.63 -2.021 0 0 0 0 0 0 0 +-13.7 -10.647 -2.02 0 0 0 0 0 0 0 +-13.66 -10.685 -2.019 0 0 0 0 0 0 0 +-13.623 -10.725 -2.018 0 0 0 0 0 0 0 +-13.578 -10.759 -2.016 0 0 0 0 0 0 0 +-13.54 -10.798 -2.016 0 0 0 0 0 0 0 +-13.497 -10.833 -2.014 0 0 0 0 0 0 0 +-13.458 -10.872 -2.013 0 0 0 0 0 0 0 +-13.439 -10.892 -2.013 0 0 0 0 0 0 0 +-13.399 -10.929 -2.012 0 0 0 0 0 0 0 +-13.357 -10.965 -2.011 0 0 0 0 0 0 0 +-13.319 -11.004 -2.01 0 0 0 0 0 0 0 +-13.292 -11.052 -2.012 0 0 0 0 0 0 0 +-13.268 -11.103 -2.013 0 0 0 0 0 0 0 +-13.225 -11.138 -2.012 0 0 0 0 0 0 0 +-13.208 -11.159 -2.012 0 0 0 0 0 0 0 +-13.168 -11.196 -2.011 0 0 0 0 0 0 0 +-13.168 -11.267 -2.017 0 0 0 0 0 0 0 +-13.167 -11.338 -2.023 0 0 0 0 0 0 0 +-13.169 -11.412 -2.029 0 0 0 0 0 0 0 +-13.155 -11.473 -2.033 0 0 0 0 0 0 0 +-13.168 -11.557 -2.042 0 0 0 0 0 0 0 +-13.179 -11.603 -2.046 0 0 0 0 0 0 0 +-13.181 -11.678 -2.053 0 0 0 0 0 0 0 +-13.174 -11.746 -2.058 0 0 0 0 0 0 0 +-13.166 -11.814 -2.063 0 0 0 0 0 0 0 +-13.172 -11.894 -2.07 0 0 0 0 0 0 0 +-13.189 -11.984 -2.08 0 0 0 0 0 0 0 +-13.179 -12.051 -2.085 0 0 0 0 0 0 0 +-13.202 -12.111 -2.092 0 0 0 0 0 0 0 +-13.199 -12.184 -2.098 0 0 0 0 0 0 0 +-13.197 -12.259 -2.104 0 0 0 0 0 0 0 +-13.173 -12.314 -2.107 0 0 0 0 0 0 0 +-13.153 -12.373 -2.11 0 0 0 0 0 0 0 +-13.127 -12.427 -2.113 0 0 0 0 0 0 0 +-13.074 -12.454 -2.11 0 0 0 0 0 0 0 +-13.016 -12.438 -2.103 0 0 0 0 0 0 0 +-12.962 -12.465 -2.101 0 0 0 0 0 0 0 +-12.914 -12.497 -2.099 0 0 0 0 0 0 0 +-12.861 -12.524 -2.097 0 0 0 0 0 0 0 +-12.806 -12.549 -2.094 0 0 0 0 0 0 0 +-12.748 -12.571 -2.091 0 0 0 0 0 0 0 +-12.69 -12.593 -2.087 0 0 0 0 0 0 0 +-12.653 -12.596 -2.084 0 0 0 0 0 0 0 +-12.594 -12.616 -2.081 0 0 0 0 0 0 0 +-12.543 -12.645 -2.079 0 0 0 0 0 0 0 +-12.496 -12.677 -2.077 0 0 0 0 0 0 0 +-12.441 -12.7 -2.075 0 0 0 0 0 0 0 +-12.379 -12.717 -2.07 0 0 0 0 0 0 0 +-12.318 -12.734 -2.067 0 0 0 0 0 0 0 +-12.275 -12.729 -2.062 0 0 0 0 0 0 0 +-12.21 -12.742 -2.058 0 0 0 0 0 0 0 +-12.147 -12.756 -2.053 0 0 0 0 0 0 0 +-12.082 -12.768 -2.049 0 0 0 0 0 0 0 +-12.013 -12.776 -2.044 0 0 0 0 0 0 0 +-11.954 -12.793 -2.04 0 0 0 0 0 0 0 +-11.883 -12.797 -2.034 0 0 0 0 0 0 0 +-11.844 -12.796 -2.031 0 0 0 0 0 0 0 +-11.777 -12.804 -2.026 0 0 0 0 0 0 0 +-11.719 -12.821 -2.022 0 0 0 0 0 0 0 +-11.666 -12.845 -2.02 0 0 0 0 0 0 0 +-11.61 -12.864 -2.017 0 0 0 0 0 0 0 +-11.558 -12.887 -2.015 0 0 0 0 0 0 0 +-11.489 -12.892 -2.009 0 0 0 0 0 0 0 +-11.456 -12.896 -2.007 0 0 0 0 0 0 0 +-11.384 -12.896 -2.001 0 0 0 0 0 0 0 +-11.331 -12.918 -1.998 0 0 0 0 0 0 0 +-11.271 -12.931 -1.995 0 0 0 0 0 0 0 +-11.211 -12.944 -1.991 0 0 0 0 0 0 0 +-11.155 -12.961 -1.988 0 0 0 0 0 0 0 +-11.096 -12.975 -1.984 0 0 0 0 0 0 0 +-11.064 -12.979 -1.982 0 0 0 0 0 0 0 +-11.004 -12.991 -1.978 0 0 0 0 0 0 0 +-10.96 -13.022 -1.978 0 0 0 0 0 0 0 +-10.908 -13.043 -1.975 0 0 0 0 0 0 0 +-10.853 -13.061 -1.973 0 0 0 0 0 0 0 +-10.784 -13.061 -1.967 0 0 0 0 0 0 0 +-10.744 -13.096 -1.967 0 0 0 0 0 0 0 +-10.71 -13.096 -1.964 0 0 0 0 0 0 0 +-10.655 -13.113 -1.962 0 0 0 0 0 0 0 +-10.611 -13.143 -1.961 0 0 0 0 0 0 0 +-10.565 -13.17 -1.96 0 0 0 0 0 0 0 +-10.506 -13.182 -1.957 0 0 0 0 0 0 0 +-10.456 -13.204 -1.955 0 0 0 0 0 0 0 +-10.406 -13.226 -1.953 0 0 0 0 0 0 0 +-10.352 -13.243 -1.95 0 0 0 0 0 0 0 +-10.329 -13.256 -1.95 0 0 0 0 0 0 0 +-10.278 -13.277 -1.948 0 0 0 0 0 0 0 +-10.235 -13.308 -1.948 0 0 0 0 0 0 0 +-10.183 -13.326 -1.946 0 0 0 0 0 0 0 +-10.132 -13.347 -1.944 0 0 0 0 0 0 0 +-10.074 -13.356 -1.94 0 0 0 0 0 0 0 +-10.032 -13.388 -1.94 0 0 0 0 0 0 0 +-10.002 -13.393 -1.939 0 0 0 0 0 0 0 +-9.949 -13.41 -1.936 0 0 0 0 0 0 0 +-9.899 -13.43 -1.934 0 0 0 0 0 0 0 +-9.851 -13.453 -1.933 0 0 0 0 0 0 0 +-9.799 -13.471 -1.931 0 0 0 0 0 0 0 +-9.751 -13.493 -1.93 0 0 0 0 0 0 0 +-9.703 -13.516 -1.929 0 0 0 0 0 0 0 +-9.673 -13.52 -1.927 0 0 0 0 0 0 0 +-9.633 -13.553 -1.927 0 0 0 0 0 0 0 +-9.583 -13.572 -1.926 0 0 0 0 0 0 0 +-9.53 -13.588 -1.923 0 0 0 0 0 0 0 +-9.487 -13.618 -1.923 0 0 0 0 0 0 0 +-9.436 -13.636 -1.922 0 0 0 0 0 0 0 +-9.392 -13.664 -1.921 0 0 0 0 0 0 0 +-9.363 -13.667 -1.92 0 0 0 0 0 0 0 +-9.323 -13.701 -1.92 0 0 0 0 0 0 0 +-9.259 -13.7 -1.915 0 0 0 0 0 0 0 +-9.215 -13.727 -1.915 0 0 0 0 0 0 0 +-9.17 -13.754 -1.915 0 0 0 0 0 0 0 +-9.124 -13.778 -1.914 0 0 0 0 0 0 0 +-9.078 -13.803 -1.914 0 0 0 0 0 0 0 +-9.057 -13.817 -1.914 0 0 0 0 0 0 0 +-9 -13.826 -1.911 0 0 0 0 0 0 0 +-8.963 -13.864 -1.912 0 0 0 0 0 0 0 +-8.913 -13.882 -1.911 0 0 0 0 0 0 0 +-8.863 -13.9 -1.909 0 0 0 0 0 0 0 +-8.818 -13.926 -1.909 0 0 0 0 0 0 0 +-8.79 -13.979 -1.913 0 0 0 0 0 0 0 +-8.749 -13.963 -1.908 0 0 0 0 0 0 0 +-8.699 -13.98 -1.907 0 0 0 0 0 0 0 +-8.65 -13.999 -1.905 0 0 0 0 0 0 0 +-8.608 -14.029 -1.906 0 0 0 0 0 0 0 +-8.56 -14.049 -1.905 0 0 0 0 0 0 0 +-8.523 -14.088 -1.907 0 0 0 0 0 0 0 +-8.473 -14.106 -1.905 0 0 0 0 0 0 0 +-8.46 -14.135 -1.908 0 0 0 0 0 0 0 +-8.41 -14.151 -1.906 0 0 0 0 0 0 0 +-8.358 -14.166 -1.904 0 0 0 0 0 0 0 +-8.316 -14.195 -1.905 0 0 0 0 0 0 0 +-8.27 -14.22 -1.905 0 0 0 0 0 0 0 +-8.222 -14.24 -1.904 0 0 0 0 0 0 0 +-8.171 -14.254 -1.902 0 0 0 0 0 0 0 +-8.145 -14.262 -1.901 0 0 0 0 0 0 0 +-8.095 -14.277 -1.9 0 0 0 0 0 0 0 +-8.071 -14.34 -1.905 0 0 0 0 0 0 0 +-7.991 -14.303 -1.896 0 0 0 0 0 0 0 +-7.923 -14.287 -1.89 0 0 0 0 0 0 0 +-7.9 -14.351 -1.896 0 0 0 0 0 0 0 +-7.826 -14.324 -1.888 0 0 0 0 0 0 0 +-7.809 -14.345 -1.89 0 0 0 0 0 0 0 +-7.753 -14.35 -1.887 0 0 0 0 0 0 0 +-7.691 -14.343 -1.882 0 0 0 0 0 0 0 +-7.643 -14.362 -1.881 0 0 0 0 0 0 0 +-7.588 -14.367 -1.879 0 0 0 0 0 0 0 +-7.536 -14.378 -1.877 0 0 0 0 0 0 0 +-7.484 -14.388 -1.875 0 0 0 0 0 0 0 +-7.46 -14.398 -1.875 0 0 0 0 0 0 0 +-7.412 -14.416 -1.874 0 0 0 0 0 0 0 +-7.366 -14.437 -1.874 0 0 0 0 0 0 0 +-7.318 -14.455 -1.873 0 0 0 0 0 0 0 +-7.272 -14.476 -1.873 0 0 0 0 0 0 0 +-7.223 -14.493 -1.872 0 0 0 0 0 0 0 +-7.178 -14.516 -1.872 0 0 0 0 0 0 0 +-7.151 -14.518 -1.871 0 0 0 0 0 0 0 +-7.109 -14.55 -1.872 0 0 0 0 0 0 0 +-7.064 -14.572 -1.872 0 0 0 0 0 0 0 +-7.01 -14.578 -1.87 0 0 0 0 0 0 0 +-6.965 -14.602 -1.87 0 0 0 0 0 0 0 +-6.918 -14.622 -1.87 0 0 0 0 0 0 0 +-6.873 -14.645 -1.87 0 0 0 0 0 0 0 +-6.848 -14.652 -1.869 0 0 0 0 0 0 0 +-6.803 -14.676 -1.87 0 0 0 0 0 0 0 +-6.754 -14.69 -1.869 0 0 0 0 0 0 0 +-6.709 -14.715 -1.869 0 0 0 0 0 0 0 +-6.665 -14.741 -1.87 0 0 0 0 0 0 0 +-6.597 -14.713 -1.863 0 0 0 0 0 0 0 +-6.582 -14.802 -1.873 0 0 0 0 0 0 0 +-6.533 -14.819 -1.872 0 0 0 0 0 0 0 +-6.481 -14.764 -1.863 0 0 0 0 0 0 0 +-6.424 -14.759 -1.859 0 0 0 0 0 0 0 +-6.369 -14.761 -1.857 0 0 0 0 0 0 0 +-6.323 -14.781 -1.857 0 0 0 0 0 0 0 +-6.273 -14.793 -1.856 0 0 0 0 0 0 0 +-6.225 -14.808 -1.855 0 0 0 0 0 0 0 +-6.172 -14.812 -1.853 0 0 0 0 0 0 0 +-6.146 -14.817 -1.852 0 0 0 0 0 0 0 +-6.102 -14.841 -1.853 0 0 0 0 0 0 0 +-6.047 -14.84 -1.85 0 0 0 0 0 0 0 +-6.001 -14.859 -1.85 0 0 0 0 0 0 0 +-5.95 -14.869 -1.849 0 0 0 0 0 0 0 +-5.899 -14.876 -1.847 0 0 0 0 0 0 0 +-5.876 -14.887 -1.848 0 0 0 0 0 0 0 +-5.82 -14.882 -1.844 0 0 0 0 0 0 0 +-5.788 -14.939 -1.85 0 0 0 0 0 0 0 +-5.739 -14.951 -1.849 0 0 0 0 0 0 0 +-5.686 -14.953 -1.847 0 0 0 0 0 0 0 +-5.633 -14.954 -1.844 0 0 0 0 0 0 0 +-5.58 -14.957 -1.842 0 0 0 0 0 0 0 +-5.536 -14.981 -1.843 0 0 0 0 0 0 0 +-5.507 -14.977 -1.842 0 0 0 0 0 0 0 +-5.461 -14.996 -1.842 0 0 0 0 0 0 0 +-5.408 -14.996 -1.84 0 0 0 0 0 0 0 +-5.361 -15.015 -1.84 0 0 0 0 0 0 0 +-5.312 -15.026 -1.839 0 0 0 0 0 0 0 +-5.263 -15.037 -1.838 0 0 0 0 0 0 0 +-5.214 -15.05 -1.838 0 0 0 0 0 0 0 +-5.189 -15.053 -1.837 0 0 0 0 0 0 0 +-5.14 -15.065 -1.837 0 0 0 0 0 0 0 +-5.106 -15.119 -1.842 0 0 0 0 0 0 0 +-5.073 -15.178 -1.847 0 0 0 0 0 0 0 +-5.035 -15.224 -1.852 0 0 0 0 0 0 0 +-4.979 -15.215 -1.848 0 0 0 0 0 0 0 +-4.97 -15.35 -1.864 0 0 0 0 0 0 0 +-4.908 -15.24 -1.848 0 0 0 0 0 0 0 +-4.86 -15.256 -1.848 0 0 0 0 0 0 0 +-4.801 -15.235 -1.844 0 0 0 0 0 0 0 +-4.744 -15.224 -1.84 0 0 0 0 0 0 0 +-4.692 -15.225 -1.838 0 0 0 0 0 0 0 +-4.642 -15.23 -1.837 0 0 0 0 0 0 0 +-4.592 -15.239 -1.836 0 0 0 0 0 0 0 +-4.567 -15.243 -1.836 0 0 0 0 0 0 0 +-4.517 -15.249 -1.835 0 0 0 0 0 0 0 +-4.468 -15.261 -1.835 0 0 0 0 0 0 0 +-4.42 -15.275 -1.835 0 0 0 0 0 0 0 +-4.374 -15.295 -1.835 0 0 0 0 0 0 0 +-4.33 -15.322 -1.837 0 0 0 0 0 0 0 +-4.292 -15.372 -1.842 0 0 0 0 0 0 0 +-4.262 -15.359 -1.839 0 0 0 0 0 0 0 +-4.207 -15.348 -1.836 0 0 0 0 0 0 0 +-4.158 -15.357 -1.836 0 0 0 0 0 0 0 +-4.109 -15.368 -1.835 0 0 0 0 0 0 0 +-4.058 -15.371 -1.834 0 0 0 0 0 0 0 +-4.006 -15.369 -1.832 0 0 0 0 0 0 0 +-3.939 -15.31 -1.823 0 0 0 0 0 0 0 +-3.922 -15.341 -1.826 0 0 0 0 0 0 0 +-3.882 -15.388 -1.83 0 0 0 0 0 0 0 +-3.836 -15.41 -1.832 0 0 0 0 0 0 0 +-3.793 -15.445 -1.835 0 0 0 0 0 0 0 +-3.751 -15.482 -1.838 0 0 0 0 0 0 0 +-3.704 -15.499 -1.839 0 0 0 0 0 0 0 +-3.658 -15.523 -1.84 0 0 0 0 0 0 0 +-3.629 -15.509 -1.838 0 0 0 0 0 0 0 +-3.628 -15.725 -1.865 0 0 0 0 0 0 0 +-3.514 -15.454 -1.828 0 0 0 0 0 0 0 +-3.462 -15.453 -1.826 0 0 0 0 0 0 0 +-3.408 -15.437 -1.823 0 0 0 0 0 0 0 +-3.349 -15.399 -1.816 0 0 0 0 0 0 0 +-3.29 -15.361 -1.81 0 0 0 0 0 0 0 +-3.26 -15.339 -1.806 0 0 0 0 0 0 0 +-3.208 -15.33 -1.804 0 0 0 0 0 0 0 +-3.158 -15.332 -1.803 0 0 0 0 0 0 0 +-3.106 -15.323 -1.8 0 0 0 0 0 0 0 +-3.055 -15.321 -1.799 0 0 0 0 0 0 0 +-3.005 -15.32 -1.797 0 0 0 0 0 0 0 +-2.955 -15.322 -1.796 0 0 0 0 0 0 0 +-2.929 -15.313 -1.795 0 0 0 0 0 0 0 +-2.878 -15.307 -1.793 0 0 0 0 0 0 0 +-2.828 -15.308 -1.792 0 0 0 0 0 0 0 +-2.778 -15.307 -1.79 0 0 0 0 0 0 0 +-2.732 -15.323 -1.791 0 0 0 0 0 0 0 +-2.68 -15.31 -1.789 0 0 0 0 0 0 0 +-2.608 -15.329 -1.789 0 0 0 0 0 0 0 +-2.561 -15.343 -1.79 0 0 0 0 0 0 0 +-2.516 -15.366 -1.792 0 0 0 0 0 0 0 +-2.463 -15.351 -1.789 0 0 0 0 0 0 0 +-2.414 -15.35 -1.788 0 0 0 0 0 0 0 +-2.365 -15.35 -1.787 0 0 0 0 0 0 0 +-2.317 -15.361 -1.788 0 0 0 0 0 0 0 +-2.294 -15.375 -1.789 0 0 0 0 0 0 0 +-2.245 -15.378 -1.788 0 0 0 0 0 0 0 +-2.195 -15.369 -1.786 0 0 0 0 0 0 0 +-2.146 -15.376 -1.786 0 0 0 0 0 0 0 +-2.098 -15.385 -1.787 0 0 0 0 0 0 0 +-2.053 -15.413 -1.789 0 0 0 0 0 0 0 +-2.01 -15.457 -1.794 0 0 0 0 0 0 0 +-1.986 -15.464 -1.795 0 0 0 0 0 0 0 +-1.94 -15.491 -1.797 0 0 0 0 0 0 0 +-1.894 -15.521 -1.801 0 0 0 0 0 0 0 +-1.848 -15.547 -1.803 0 0 0 0 0 0 0 +-1.801 -15.574 -1.806 0 0 0 0 0 0 0 +-1.755 -15.603 -1.809 0 0 0 0 0 0 0 +-1.707 -15.617 -1.81 0 0 0 0 0 0 0 +-1.684 -15.631 -1.811 0 0 0 0 0 0 0 +-1.636 -15.644 -1.812 0 0 0 0 0 0 0 +-1.587 -15.651 -1.813 0 0 0 0 0 0 0 +-1.538 -15.666 -1.814 0 0 0 0 0 0 0 +-1.488 -15.659 -1.812 0 0 0 0 0 0 0 +-1.439 -15.667 -1.813 0 0 0 0 0 0 0 +-1.39 -15.672 -1.813 0 0 0 0 0 0 0 +-1.364 -15.664 -1.812 0 0 0 0 0 0 0 +-1.314 -15.657 -1.81 0 0 0 0 0 0 0 +-1.264 -15.645 -1.808 0 0 0 0 0 0 0 +-1.214 -15.641 -1.807 0 0 0 0 0 0 0 +-1.163 -15.625 -1.805 0 0 0 0 0 0 0 +-1.113 -15.609 -1.802 0 0 0 0 0 0 0 +-1.062 -15.59 -1.799 0 0 0 0 0 0 0 +-1.013 -15.586 -1.798 0 0 0 0 0 0 0 +-0.988 -15.579 -1.797 0 0 0 0 0 0 0 +-0.938 -15.564 -1.795 0 0 0 0 0 0 0 +-0.891 -15.599 -1.799 0 0 0 0 0 0 0 +-0.843 -15.625 -1.802 0 0 0 0 0 0 0 +-0.796 -15.672 -1.808 0 0 0 0 0 0 0 +-0.748 -15.7 -1.811 0 0 0 0 0 0 0 +-0.7 -15.718 -1.813 0 0 0 0 0 0 0 +-0.676 -15.739 -1.816 0 0 0 0 0 0 0 +-0.627 -15.751 -1.817 0 0 0 0 0 0 0 +-0.578 -15.774 -1.82 0 0 0 0 0 0 0 +-0.529 -15.798 -1.822 0 0 0 0 0 0 0 +-0.48 -15.806 -1.823 0 0 0 0 0 0 0 +-0.431 -15.821 -1.825 0 0 0 0 0 0 0 +-0.406 -15.847 -1.828 0 0 0 0 0 0 0 +-0.357 -15.862 -1.83 0 0 0 0 0 0 0 +-0.307 -15.877 -1.832 0 0 0 0 0 0 0 +-0.258 -15.894 -1.834 0 0 0 0 0 0 0 +-0.208 -15.901 -1.835 0 0 0 0 0 0 0 +-0.158 -15.903 -1.835 0 0 0 0 0 0 0 +-0.108 -15.922 -1.837 0 0 0 0 0 0 0 +-0.058 -15.928 -1.838 0 0 0 0 0 0 0 +-0.033 -15.944 -1.84 0 0 0 0 0 0 0 +0.017 -15.952 -1.841 0 0 0 0 0 0 0 +0.067 -15.961 -1.842 0 0 0 0 0 0 0 +0.117 -15.965 -1.843 0 0 0 0 0 0 0 +0.167 -15.959 -1.842 0 0 0 0 0 0 0 +0.218 -15.972 -1.844 0 0 0 0 0 0 0 +0.268 -15.995 -1.847 0 0 0 0 0 0 0 +0.293 -16.001 -1.847 0 0 0 0 0 0 0 +0.344 -16.033 -1.852 0 0 0 0 0 0 0 +0.395 -16.032 -1.852 0 0 0 0 0 0 0 +0.445 -16.039 -1.853 0 0 0 0 0 0 0 +0.496 -16.041 -1.853 0 0 0 0 0 0 0 +0.547 -16.065 -1.857 0 0 0 0 0 0 0 +0.598 -16.087 -1.86 0 0 0 0 0 0 0 +0.624 -16.09 -1.86 0 0 0 0 0 0 0 +0.675 -16.11 -1.863 0 0 0 0 0 0 0 +0.726 -16.118 -1.864 0 0 0 0 0 0 0 +0.779 -16.157 -1.87 0 0 0 0 0 0 0 +0.829 -16.143 -1.868 0 0 0 0 0 0 0 +0.933 -16.185 -1.874 0 0 0 0 0 0 0 +0.959 -16.195 -1.876 0 0 0 0 0 0 0 +1.004 -16.089 -1.862 0 0 0 0 0 0 0 +1.044 -15.921 -1.841 0 0 0 0 0 0 0 +1.083 -15.76 -1.821 0 0 0 0 0 0 0 +1.131 -15.738 -1.819 0 0 0 0 0 0 0 +1.169 -15.581 -1.799 0 0 0 0 0 0 0 +1.207 -15.43 -1.78 0 0 0 0 0 0 0 +1.219 -15.274 -1.76 0 0 0 0 0 0 0 +1.256 -15.136 -1.743 0 0 0 0 0 0 0 +1.296 -15.039 -1.731 0 0 0 0 0 0 0 +1.34 -14.995 -1.726 0 0 0 0 0 0 0 +1.385 -14.967 -1.723 0 0 0 0 0 0 0 +1.433 -14.971 -1.724 0 0 0 0 0 0 0 +1.481 -14.98 -1.726 0 0 0 0 0 0 0 +1.506 -14.989 -1.727 0 0 0 0 0 0 0 +1.553 -14.985 -1.727 0 0 0 0 0 0 0 +1.598 -14.966 -1.726 0 0 0 0 0 0 0 +1.646 -14.969 -1.727 0 0 0 0 0 0 0 +1.693 -14.96 -1.726 0 0 0 0 0 0 0 +1.738 -14.942 -1.725 0 0 0 0 0 0 0 +1.785 -14.935 -1.724 0 0 0 0 0 0 0 +1.808 -14.93 -1.724 0 0 0 0 0 0 0 +1.854 -14.914 -1.723 0 0 0 0 0 0 0 +1.9 -14.905 -1.722 0 0 0 0 0 0 0 +1.948 -14.904 -1.723 0 0 0 0 0 0 0 +1.993 -14.884 -1.721 0 0 0 0 0 0 0 +2.04 -14.884 -1.722 0 0 0 0 0 0 0 +2.086 -14.868 -1.721 0 0 0 0 0 0 0 +2.111 -14.878 -1.723 0 0 0 0 0 0 0 +2.155 -14.854 -1.72 0 0 0 0 0 0 0 +2.201 -14.841 -1.72 0 0 0 0 0 0 0 +2.243 -14.801 -1.715 0 0 0 0 0 0 0 +2.288 -14.788 -1.715 0 0 0 0 0 0 0 +2.333 -14.769 -1.713 0 0 0 0 0 0 0 +2.376 -14.738 -1.71 0 0 0 0 0 0 0 +2.397 -14.724 -1.709 0 0 0 0 0 0 0 +2.441 -14.701 -1.707 0 0 0 0 0 0 0 +2.483 -14.668 -1.703 0 0 0 0 0 0 0 +2.526 -14.644 -1.701 0 0 0 0 0 0 0 +2.57 -14.623 -1.7 0 0 0 0 0 0 0 +2.611 -14.587 -1.696 0 0 0 0 0 0 0 +2.653 -14.561 -1.694 0 0 0 0 0 0 0 +2.678 -14.565 -1.695 0 0 0 0 0 0 0 +2.719 -14.531 -1.691 0 0 0 0 0 0 0 +2.762 -14.509 -1.69 0 0 0 0 0 0 0 +2.804 -14.481 -1.687 0 0 0 0 0 0 0 +2.845 -14.452 -1.685 0 0 0 0 0 0 0 +1.312 -6.484 -0.647 0 0 0 0 0 0 0 +1.325 -6.443 -0.642 0 0 0 0 0 0 0 +1.315 -6.338 -0.629 0 0 0 0 0 0 0 +1.334 -6.332 -0.628 0 0 0 0 0 0 0 +1.354 -6.33 -0.629 0 0 0 0 0 0 0 +1.373 -6.321 -0.628 0 0 0 0 0 0 0 +1.395 -6.325 -0.629 0 0 0 0 0 0 0 +1.422 -6.351 -0.633 0 0 0 0 0 0 0 +1.439 -6.337 -0.632 0 0 0 0 0 0 0 +1.445 -6.318 -0.63 0 0 0 0 0 0 0 +1.472 -6.342 -0.634 0 0 0 0 0 0 0 +1.498 -6.362 -0.637 0 0 0 0 0 0 0 +1.52 -6.369 -0.638 0 0 0 0 0 0 0 +1.543 -6.378 -0.64 0 0 0 0 0 0 0 +1.565 -6.381 -0.641 0 0 0 0 0 0 0 +1.59 -6.395 -0.644 0 0 0 0 0 0 0 +1.602 -6.4 -0.645 0 0 0 0 0 0 0 +3.546 -14.106 -1.661 0 0 0 0 0 0 0 +3.597 -14.124 -1.665 0 0 0 0 0 0 0 +3.641 -14.109 -1.664 0 0 0 0 0 0 0 +3.682 -14.086 -1.663 0 0 0 0 0 0 0 +3.726 -14.074 -1.663 0 0 0 0 0 0 0 +3.767 -14.051 -1.661 0 0 0 0 0 0 0 +3.784 -14.026 -1.659 0 0 0 0 0 0 0 +3.828 -14.012 -1.658 0 0 0 0 0 0 0 +3.869 -13.988 -1.657 0 0 0 0 0 0 0 +3.909 -13.965 -1.655 0 0 0 0 0 0 0 +3.951 -13.945 -1.654 0 0 0 0 0 0 0 +3.993 -13.926 -1.654 0 0 0 0 0 0 0 +4.036 -13.91 -1.653 0 0 0 0 0 0 0 +4.056 -13.896 -1.652 0 0 0 0 0 0 0 +4.1 -13.885 -1.652 0 0 0 0 0 0 0 +4.14 -13.861 -1.651 0 0 0 0 0 0 0 +4.181 -13.838 -1.65 0 0 0 0 0 0 0 +4.226 -13.831 -1.65 0 0 0 0 0 0 0 +4.271 -13.823 -1.651 0 0 0 0 0 0 0 +4.313 -13.806 -1.651 0 0 0 0 0 0 0 +4.332 -13.789 -1.649 0 0 0 0 0 0 0 +4.376 -13.78 -1.65 0 0 0 0 0 0 0 +4.421 -13.77 -1.65 0 0 0 0 0 0 0 +4.462 -13.75 -1.65 0 0 0 0 0 0 0 +4.505 -13.734 -1.649 0 0 0 0 0 0 0 +4.547 -13.718 -1.649 0 0 0 0 0 0 0 +4.586 -13.69 -1.647 0 0 0 0 0 0 0 +4.606 -13.679 -1.647 0 0 0 0 0 0 0 +4.654 -13.678 -1.649 0 0 0 0 0 0 0 +4.694 -13.656 -1.648 0 0 0 0 0 0 0 +4.73 -13.62 -1.645 0 0 0 0 0 0 0 +3.686 -10.49 -1.223 0 0 0 0 0 0 0 +3.711 -10.454 -1.22 0 0 0 0 0 0 0 +3.74 -10.433 -1.218 0 0 0 0 0 0 0 +3.762 -10.444 -1.221 0 0 0 0 0 0 0 +3.8 -10.445 -1.222 0 0 0 0 0 0 0 +4.942 -13.475 -1.636 0 0 0 0 0 0 0 +4.987 -13.467 -1.637 0 0 0 0 0 0 0 +5.011 -13.403 -1.631 0 0 0 0 0 0 0 +5.052 -13.383 -1.63 0 0 0 0 0 0 0 +5.067 -13.297 -1.621 0 0 0 0 0 0 0 +5.076 -13.257 -1.616 0 0 0 0 0 0 0 +5.116 -13.238 -1.616 0 0 0 0 0 0 0 +5.154 -13.212 -1.615 0 0 0 0 0 0 0 +5.176 -13.146 -1.608 0 0 0 0 0 0 0 +5.218 -13.13 -1.608 0 0 0 0 0 0 0 +5.256 -13.106 -1.607 0 0 0 0 0 0 0 +5.282 -13.053 -1.602 0 0 0 0 0 0 0 +5.305 -13.05 -1.602 0 0 0 0 0 0 0 +5.34 -13.018 -1.6 0 0 0 0 0 0 0 +5.391 -13.027 -1.604 0 0 0 0 0 0 0 +5.403 -12.939 -1.594 0 0 0 0 0 0 0 +5.453 -12.945 -1.597 0 0 0 0 0 0 0 +5.481 -12.897 -1.593 0 0 0 0 0 0 0 +5.511 -12.856 -1.59 0 0 0 0 0 0 0 +5.524 -12.831 -1.587 0 0 0 0 0 0 0 +5.566 -12.817 -1.588 0 0 0 0 0 0 0 +5.592 -12.767 -1.583 0 0 0 0 0 0 0 +5.635 -12.757 -1.584 0 0 0 0 0 0 0 +5.666 -12.717 -1.581 0 0 0 0 0 0 0 +5.711 -12.71 -1.583 0 0 0 0 0 0 0 +5.681 -12.538 -1.561 0 0 0 0 0 0 0 +5.753 -12.645 -1.578 0 0 0 0 0 0 0 +5.783 -12.605 -1.575 0 0 0 0 0 0 0 +5.822 -12.585 -1.574 0 0 0 0 0 0 0 +5.79 -12.414 -1.553 0 0 0 0 0 0 0 +5.833 -12.403 -1.554 0 0 0 0 0 0 0 +5.85 -12.338 -1.547 0 0 0 0 0 0 0 +5.881 -12.305 -1.545 0 0 0 0 0 0 0 +5.92 -12.337 -1.551 0 0 0 0 0 0 0 +5.949 -12.297 -1.548 0 0 0 0 0 0 0 +5.962 -12.226 -1.541 0 0 0 0 0 0 0 +5.983 -12.172 -1.535 0 0 0 0 0 0 0 +6.019 -12.148 -1.535 0 0 0 0 0 0 0 +6.116 -12.248 -1.552 0 0 0 0 0 0 0 +6.156 -12.232 -1.552 0 0 0 0 0 0 0 +6.169 -12.21 -1.55 0 0 0 0 0 0 0 +6.203 -12.182 -1.549 0 0 0 0 0 0 0 +6.236 -12.152 -1.548 0 0 0 0 0 0 0 +6.263 -12.111 -1.545 0 0 0 0 0 0 0 +6.307 -12.102 -1.546 0 0 0 0 0 0 0 +6.268 -11.936 -1.525 0 0 0 0 0 0 0 +6.333 -11.967 -1.532 0 0 0 0 0 0 0 +6.366 -11.985 -1.536 0 0 0 0 0 0 0 +6.382 -11.923 -1.53 0 0 0 0 0 0 0 +6.441 -11.943 -1.536 0 0 0 0 0 0 0 +6.458 -11.886 -1.531 0 0 0 0 0 0 0 +6.503 -11.88 -1.533 0 0 0 0 0 0 0 +6.533 -11.845 -1.531 0 0 0 0 0 0 0 +6.57 -11.825 -1.531 0 0 0 0 0 0 0 +6.584 -11.763 -1.525 0 0 0 0 0 0 0 +6.585 -11.721 -1.52 0 0 0 0 0 0 0 +6.577 -11.621 -1.509 0 0 0 0 0 0 0 +6.601 -11.578 -1.505 0 0 0 0 0 0 0 +6.675 -11.624 -1.515 0 0 0 0 0 0 0 +6.727 -11.629 -1.519 0 0 0 0 0 0 0 +6.742 -11.571 -1.514 0 0 0 0 0 0 0 +6.753 -11.506 -1.507 0 0 0 0 0 0 0 +6.718 -11.404 -1.494 0 0 0 0 0 0 0 +6.73 -11.344 -1.488 0 0 0 0 0 0 0 +6.81 -11.398 -1.499 0 0 0 0 0 0 0 +6.894 -11.456 -1.511 0 0 0 0 0 0 0 +6.92 -11.418 -1.508 0 0 0 0 0 0 0 +6.945 -11.379 -1.506 0 0 0 0 0 0 0 +6.95 -11.346 -1.502 0 0 0 0 0 0 0 +6.994 -11.338 -1.504 0 0 0 0 0 0 0 +7.021 -11.302 -1.502 0 0 0 0 0 0 0 +7.049 -11.268 -1.501 0 0 0 0 0 0 0 +7.081 -11.241 -1.5 0 0 0 0 0 0 0 +7.124 -11.23 -1.502 0 0 0 0 0 0 0 +7.125 -11.154 -1.494 0 0 0 0 0 0 0 +7.092 -11.065 -1.482 0 0 0 0 0 0 0 +7.094 -10.99 -1.474 0 0 0 0 0 0 0 +7.201 -11.08 -1.491 0 0 0 0 0 0 0 +7.237 -11.059 -1.491 0 0 0 0 0 0 0 +7.241 -10.989 -1.484 0 0 0 0 0 0 0 +7.306 -11.013 -1.491 0 0 0 0 0 0 0 +7.337 -10.985 -1.49 0 0 0 0 0 0 0 +7.347 -10.962 -1.489 0 0 0 0 0 0 0 +7.379 -10.936 -1.488 0 0 0 0 0 0 0 +7.4 -10.893 -1.485 0 0 0 0 0 0 0 +7.425 -10.856 -1.483 0 0 0 0 0 0 0 +7.47 -10.849 -1.485 0 0 0 0 0 0 0 +7.494 -10.811 -1.483 0 0 0 0 0 0 0 +7.537 -10.8 -1.485 0 0 0 0 0 0 0 +7.557 -10.757 -1.482 0 0 0 0 0 0 0 +7.554 -10.716 -1.478 0 0 0 0 0 0 0 +7.591 -10.697 -1.478 0 0 0 0 0 0 0 +7.628 -10.678 -1.479 0 0 0 0 0 0 0 +7.655 -10.644 -1.478 0 0 0 0 0 0 0 +7.69 -10.623 -1.478 0 0 0 0 0 0 0 +7.718 -10.591 -1.477 0 0 0 0 0 0 0 +7.744 -10.557 -1.475 0 0 0 0 0 0 0 +7.757 -10.54 -1.475 0 0 0 0 0 0 0 +7.781 -10.503 -1.473 0 0 0 0 0 0 0 +7.82 -10.487 -1.474 0 0 0 0 0 0 0 +7.841 -10.446 -1.471 0 0 0 0 0 0 0 +7.881 -10.431 -1.473 0 0 0 0 0 0 0 +7.896 -10.384 -1.469 0 0 0 0 0 0 0 +7.937 -10.37 -1.471 0 0 0 0 0 0 0 +7.939 -10.339 -1.468 0 0 0 0 0 0 0 +7.977 -10.32 -1.469 0 0 0 0 0 0 0 +7.998 -10.281 -1.467 0 0 0 0 0 0 0 +8.036 -10.263 -1.468 0 0 0 0 0 0 0 +8.058 -10.224 -1.466 0 0 0 0 0 0 0 +8.077 -10.183 -1.463 0 0 0 0 0 0 0 +8.092 -10.169 -1.463 0 0 0 0 0 0 0 +8.084 -10.094 -1.455 0 0 0 0 0 0 0 +8.097 -10.045 -1.451 0 0 0 0 0 0 0 +8.179 -10.081 -1.461 0 0 0 0 0 0 0 +8.21 -10.056 -1.461 0 0 0 0 0 0 0 +8.26 -10.051 -1.465 0 0 0 0 0 0 0 +8.172 -9.817 -1.434 0 0 0 0 0 0 0 +8.303 -9.943 -1.458 0 0 0 0 0 0 0 +8.311 -9.89 -1.453 0 0 0 0 0 0 0 +8.36 -9.885 -1.457 0 0 0 0 0 0 0 +8.382 -9.848 -1.455 0 0 0 0 0 0 0 +8.427 -9.838 -1.458 0 0 0 0 0 0 0 +8.206 -9.518 -1.408 0 0 0 0 0 0 0 +8.249 -9.507 -1.411 0 0 0 0 0 0 0 +8.434 -9.691 -1.444 0 0 0 0 0 0 0 +8.526 -9.735 -1.456 0 0 0 0 0 0 0 +8.465 -9.603 -1.438 0 0 0 0 0 0 0 +8.459 -9.537 -1.431 0 0 0 0 0 0 0 +8.629 -9.606 -1.452 0 0 0 0 0 0 0 +8.666 -9.586 -1.453 0 0 0 0 0 0 0 +8.666 -9.556 -1.451 0 0 0 0 0 0 0 +8.705 -9.539 -1.452 0 0 0 0 0 0 0 +8.727 -9.503 -1.451 0 0 0 0 0 0 0 +8.752 -9.47 -1.45 0 0 0 0 0 0 0 +8.785 -9.447 -1.451 0 0 0 0 0 0 0 +8.816 -9.421 -1.451 0 0 0 0 0 0 0 +8.842 -9.388 -1.45 0 0 0 0 0 0 0 +8.844 -9.362 -1.448 0 0 0 0 0 0 0 +8.882 -9.342 -1.449 0 0 0 0 0 0 0 +8.908 -9.312 -1.449 0 0 0 0 0 0 0 +8.931 -9.276 -1.448 0 0 0 0 0 0 0 +8.961 -9.25 -1.448 0 0 0 0 0 0 0 +8.997 -9.229 -1.449 0 0 0 0 0 0 0 +9.009 -9.212 -1.449 0 0 0 0 0 0 0 +9.032 -9.178 -1.448 0 0 0 0 0 0 0 +9.065 -9.153 -1.448 0 0 0 0 0 0 0 +9.018 -9.049 -1.435 0 0 0 0 0 0 0 +8.992 -8.966 -1.425 0 0 0 0 0 0 0 +9.053 -8.97 -1.431 0 0 0 0 0 0 0 +9.16 -9.019 -1.445 0 0 0 0 0 0 0 +9.129 -8.932 -1.434 0 0 0 0 0 0 0 +9.175 -8.95 -1.44 0 0 0 0 0 0 0 +9.243 -8.959 -1.447 0 0 0 0 0 0 0 +9.241 -8.901 -1.442 0 0 0 0 0 0 0 +9.138 -8.746 -1.418 0 0 0 0 0 0 0 +9.115 -8.669 -1.41 0 0 0 0 0 0 0 +9.325 -8.814 -1.442 0 0 0 0 0 0 0 +9.375 -8.806 -1.446 0 0 0 0 0 0 0 +9.391 -8.793 -1.446 0 0 0 0 0 0 0 +9.398 -8.745 -1.443 0 0 0 0 0 0 0 +9.425 -8.715 -1.443 0 0 0 0 0 0 0 +9.457 -8.689 -1.443 0 0 0 0 0 0 0 +9.503 -8.677 -1.447 0 0 0 0 0 0 0 +9.532 -8.648 -1.447 0 0 0 0 0 0 0 +9.552 -8.612 -1.446 0 0 0 0 0 0 0 +9.56 -8.591 -1.445 0 0 0 0 0 0 0 +9.606 -8.579 -1.448 0 0 0 0 0 0 0 +9.622 -8.539 -1.446 0 0 0 0 0 0 0 +9.774 -8.619 -1.467 0 0 0 0 0 0 0 +9.436 -8.268 -1.405 0 0 0 0 0 0 0 +9.444 -8.222 -1.402 0 0 0 0 0 0 0 +9.477 -8.199 -1.404 0 0 0 0 0 0 0 +9.497 -8.191 -1.405 0 0 0 0 0 0 0 +9.531 -8.167 -1.406 0 0 0 0 0 0 0 +9.54 -8.123 -1.403 0 0 0 0 0 0 0 +9.543 -8.074 -1.399 0 0 0 0 0 0 0 +9.556 -8.033 -1.397 0 0 0 0 0 0 0 +9.918 -8.234 -1.449 0 0 0 0 0 0 0 +9.911 -8.202 -1.446 0 0 0 0 0 0 0 +9.913 -8.15 -1.442 0 0 0 0 0 0 0 +9.908 -8.094 -1.437 0 0 0 0 0 0 0 +9.967 -8.09 -1.443 0 0 0 0 0 0 0 +9.964 -8.036 -1.438 0 0 0 0 0 0 0 +10.002 -8.015 -1.44 0 0 0 0 0 0 0 +10.021 -7.979 -1.439 0 0 0 0 0 0 0 +10.052 -7.978 -1.442 0 0 0 0 0 0 0 +10.091 -7.957 -1.444 0 0 0 0 0 0 0 +10.097 -7.911 -1.441 0 0 0 0 0 0 0 +10.099 -7.861 -1.438 0 0 0 0 0 0 0 +10.139 -7.841 -1.44 0 0 0 0 0 0 0 +10.154 -7.802 -1.439 0 0 0 0 0 0 0 +10.202 -7.788 -1.442 0 0 0 0 0 0 0 +10.213 -7.771 -1.442 0 0 0 0 0 0 0 +10.218 -7.724 -1.439 0 0 0 0 0 0 0 +10.159 -7.629 -1.426 0 0 0 0 0 0 0 +9.774 -7.291 -1.36 0 0 0 0 0 0 0 +9.794 -7.258 -1.36 0 0 0 0 0 0 0 +9.802 -7.217 -1.358 0 0 0 0 0 0 0 +9.831 -7.191 -1.359 0 0 0 0 0 0 0 +9.864 -7.19 -1.362 0 0 0 0 0 0 0 +9.877 -7.152 -1.36 0 0 0 0 0 0 0 +9.909 -7.128 -1.362 0 0 0 0 0 0 0 +9.958 -7.117 -1.366 0 0 0 0 0 0 0 +9.974 -7.081 -1.365 0 0 0 0 0 0 0 +9.977 -7.036 -1.362 0 0 0 0 0 0 0 +10.017 -7.017 -1.365 0 0 0 0 0 0 0 +10.003 -6.984 -1.361 0 0 0 0 0 0 0 +10.029 -6.955 -1.362 0 0 0 0 0 0 0 +10.072 -6.938 -1.365 0 0 0 0 0 0 0 +10.105 -6.914 -1.367 0 0 0 0 0 0 0 +10.557 -7.177 -1.433 0 0 0 0 0 0 0 +10.606 -7.161 -1.438 0 0 0 0 0 0 0 +10.63 -7.129 -1.438 0 0 0 0 0 0 0 +10.627 -7.102 -1.435 0 0 0 0 0 0 0 +10.651 -7.07 -1.436 0 0 0 0 0 0 0 +10.668 -7.033 -1.435 0 0 0 0 0 0 0 +10.691 -7.001 -1.435 0 0 0 0 0 0 0 +10.712 -6.966 -1.435 0 0 0 0 0 0 0 +10.734 -6.932 -1.435 0 0 0 0 0 0 0 +10.759 -6.901 -1.435 0 0 0 0 0 0 0 +10.768 -6.883 -1.435 0 0 0 0 0 0 0 +10.801 -6.856 -1.437 0 0 0 0 0 0 0 +10.814 -6.817 -1.436 0 0 0 0 0 0 0 +10.861 -6.799 -1.44 0 0 0 0 0 0 0 +10.865 -6.754 -1.437 0 0 0 0 0 0 0 +10.883 -6.718 -1.436 0 0 0 0 0 0 0 +10.902 -6.683 -1.436 0 0 0 0 0 0 0 +10.94 -6.682 -1.44 0 0 0 0 0 0 0 +10.952 -6.643 -1.439 0 0 0 0 0 0 0 +10.954 -6.597 -1.436 0 0 0 0 0 0 0 +11.002 -6.579 -1.44 0 0 0 0 0 0 0 +11.059 -6.565 -1.446 0 0 0 0 0 0 0 +11.112 -6.55 -1.45 0 0 0 0 0 0 0 +11.153 -6.527 -1.453 0 0 0 0 0 0 0 +11.189 -6.525 -1.457 0 0 0 0 0 0 0 +11.238 -6.506 -1.462 0 0 0 0 0 0 0 +11.267 -6.476 -1.463 0 0 0 0 0 0 0 +11.301 -6.448 -1.465 0 0 0 0 0 0 0 +11.316 -6.41 -1.464 0 0 0 0 0 0 0 +11.35 -6.382 -1.466 0 0 0 0 0 0 0 +11.363 -6.343 -1.465 0 0 0 0 0 0 0 +11.38 -6.329 -1.466 0 0 0 0 0 0 0 +11.398 -6.292 -1.466 0 0 0 0 0 0 0 +11.42 -6.257 -1.466 0 0 0 0 0 0 0 +11.431 -6.216 -1.465 0 0 0 0 0 0 0 +11.468 -6.19 -1.467 0 0 0 0 0 0 0 +11.482 -6.151 -1.467 0 0 0 0 0 0 0 +11.539 -6.135 -1.472 0 0 0 0 0 0 0 +11.507 -6.095 -1.466 0 0 0 0 0 0 0 +11.54 -6.066 -1.468 0 0 0 0 0 0 0 +11.556 -6.028 -1.468 0 0 0 0 0 0 0 +8.748 -4.521 -1.06 0 0 0 0 0 0 0 +8.748 -4.487 -1.058 0 0 0 0 0 0 0 +8.76 -4.458 -1.058 0 0 0 0 0 0 0 +8.796 -4.441 -1.061 0 0 0 0 0 0 0 +11.643 -5.866 -1.468 0 0 0 0 0 0 0 +11.66 -5.828 -1.468 0 0 0 0 0 0 0 +11.683 -5.794 -1.469 0 0 0 0 0 0 0 +11.707 -5.76 -1.469 0 0 0 0 0 0 0 +11.721 -5.722 -1.469 0 0 0 0 0 0 0 +11.743 -5.687 -1.469 0 0 0 0 0 0 0 +11.77 -5.654 -1.471 0 0 0 0 0 0 0 +11.777 -5.635 -1.47 0 0 0 0 0 0 0 +11.819 -5.61 -1.474 0 0 0 0 0 0 0 +11.833 -5.571 -1.474 0 0 0 0 0 0 0 +11.869 -5.542 -1.476 0 0 0 0 0 0 0 +11.901 -5.511 -1.478 0 0 0 0 0 0 0 +11.921 -5.476 -1.479 0 0 0 0 0 0 0 +11.944 -5.441 -1.479 0 0 0 0 0 0 0 +11.967 -5.428 -1.481 0 0 0 0 0 0 0 +11.978 -5.388 -1.481 0 0 0 0 0 0 0 +12.004 -5.355 -1.482 0 0 0 0 0 0 0 +12.018 -5.315 -1.481 0 0 0 0 0 0 0 +12.031 -5.276 -1.481 0 0 0 0 0 0 0 +12.049 -5.239 -1.481 0 0 0 0 0 0 0 +12.071 -5.203 -1.482 0 0 0 0 0 0 0 +12.083 -5.186 -1.482 0 0 0 0 0 0 0 +12.117 -5.156 -1.485 0 0 0 0 0 0 0 +12.137 -5.119 -1.485 0 0 0 0 0 0 0 +12.162 -5.085 -1.487 0 0 0 0 0 0 0 +12.183 -5.049 -1.487 0 0 0 0 0 0 0 +12.207 -5.014 -1.489 0 0 0 0 0 0 0 +12.235 -4.981 -1.49 0 0 0 0 0 0 0 +12.247 -4.941 -1.49 0 0 0 0 0 0 0 +12.262 -4.924 -1.491 0 0 0 0 0 0 0 +12.274 -4.884 -1.49 0 0 0 0 0 0 0 +12.3 -4.85 -1.492 0 0 0 0 0 0 0 +12.319 -4.813 -1.492 0 0 0 0 0 0 0 +12.34 -4.776 -1.493 0 0 0 0 0 0 0 +12.355 -4.738 -1.493 0 0 0 0 0 0 0 +12.371 -4.7 -1.493 0 0 0 0 0 0 0 +12.377 -4.679 -1.493 0 0 0 0 0 0 0 +12.373 -4.633 -1.491 0 0 0 0 0 0 0 +12.391 -4.596 -1.491 0 0 0 0 0 0 0 +12.428 -4.565 -1.494 0 0 0 0 0 0 0 +12.438 -4.525 -1.494 0 0 0 0 0 0 0 +12.449 -4.484 -1.493 0 0 0 0 0 0 0 +12.456 -4.465 -1.493 0 0 0 0 0 0 0 +12.466 -4.424 -1.493 0 0 0 0 0 0 0 +12.48 -4.385 -1.493 0 0 0 0 0 0 0 +12.462 -4.335 -1.488 0 0 0 0 0 0 0 +12.49 -4.301 -1.49 0 0 0 0 0 0 0 +12.496 -4.259 -1.489 0 0 0 0 0 0 0 +12.526 -4.225 -1.492 0 0 0 0 0 0 0 +12.528 -4.182 -1.49 0 0 0 0 0 0 0 +12.516 -4.156 -1.487 0 0 0 0 0 0 0 +12.559 -4.127 -1.492 0 0 0 0 0 0 0 +12.57 -4.087 -1.491 0 0 0 0 0 0 0 +12.591 -4.05 -1.492 0 0 0 0 0 0 0 +12.599 -4.009 -1.492 0 0 0 0 0 0 0 +12.612 -3.969 -1.492 0 0 0 0 0 0 0 +12.623 -3.929 -1.492 0 0 0 0 0 0 0 +12.634 -3.911 -1.492 0 0 0 0 0 0 0 +12.647 -3.871 -1.492 0 0 0 0 0 0 0 +12.642 -3.826 -1.49 0 0 0 0 0 0 0 +12.671 -3.792 -1.492 0 0 0 0 0 0 0 +12.684 -3.753 -1.493 0 0 0 0 0 0 0 +12.7 -3.714 -1.493 0 0 0 0 0 0 0 +12.708 -3.673 -1.493 0 0 0 0 0 0 0 +12.668 -3.64 -1.486 0 0 0 0 0 0 0 +12.712 -3.609 -1.491 0 0 0 0 0 0 0 +12.732 -3.572 -1.492 0 0 0 0 0 0 0 +12.738 -3.53 -1.491 0 0 0 0 0 0 0 +12.745 -3.489 -1.491 0 0 0 0 0 0 0 +12.748 -3.447 -1.49 0 0 0 0 0 0 0 +12.753 -3.405 -1.489 0 0 0 0 0 0 0 +12.761 -3.386 -1.489 0 0 0 0 0 0 0 +12.756 -3.342 -1.487 0 0 0 0 0 0 0 +12.743 -3.296 -1.484 0 0 0 0 0 0 0 +12.752 -3.255 -1.484 0 0 0 0 0 0 0 +12.746 -3.211 -1.482 0 0 0 0 0 0 0 +7.274 -1.797 -0.759 0 0 0 0 0 0 0 +7.287 -1.776 -0.76 0 0 0 0 0 0 0 +7.267 -1.759 -0.757 0 0 0 0 0 0 0 +7.257 -1.732 -0.755 0 0 0 0 0 0 0 +7.228 -1.701 -0.751 0 0 0 0 0 0 0 +7.206 -1.672 -0.747 0 0 0 0 0 0 0 +7.209 -1.649 -0.747 0 0 0 0 0 0 0 +7.224 -1.628 -0.748 0 0 0 0 0 0 0 +7.19 -1.597 -0.743 0 0 0 0 0 0 0 +7.183 -1.583 -0.742 0 0 0 0 0 0 0 +7.171 -1.557 -0.739 0 0 0 0 0 0 0 +7.178 -1.535 -0.74 0 0 0 0 0 0 0 +7.163 -1.508 -0.737 0 0 0 0 0 0 0 +7.173 -1.487 -0.738 0 0 0 0 0 0 0 +7.163 -1.461 -0.736 0 0 0 0 0 0 0 +7.175 -1.44 -0.737 0 0 0 0 0 0 0 +7.169 -1.427 -0.736 0 0 0 0 0 0 0 +7.184 -1.407 -0.737 0 0 0 0 0 0 0 +7.184 -1.383 -0.737 0 0 0 0 0 0 0 +7.2 -1.363 -0.738 0 0 0 0 0 0 0 +7.202 -1.34 -0.738 0 0 0 0 0 0 0 +7.242 -1.324 -0.742 0 0 0 0 0 0 0 +7.238 -1.3 -0.741 0 0 0 0 0 0 0 +7.256 -1.291 -0.743 0 0 0 0 0 0 0 +7.299 -1.275 -0.748 0 0 0 0 0 0 0 +7.478 -1.283 -0.771 0 0 0 0 0 0 0 +7.508 -1.264 -0.775 0 0 0 0 0 0 0 +13.121 -2.144 -1.501 0 0 0 0 0 0 0 +13.046 -2.09 -1.491 0 0 0 0 0 0 0 +7.829 -1.231 -0.814 0 0 0 0 0 0 0 +7.833 -1.206 -0.814 0 0 0 0 0 0 0 +7.768 -1.171 -0.806 0 0 0 0 0 0 0 +7.773 -1.147 -0.806 0 0 0 0 0 0 0 +7.799 -1.126 -0.809 0 0 0 0 0 0 0 +13.241 -1.887 -1.511 0 0 0 0 0 0 0 +13.317 -1.856 -1.52 0 0 0 0 0 0 0 +13.33 -1.836 -1.522 0 0 0 0 0 0 0 +13.338 -1.794 -1.522 0 0 0 0 0 0 0 +13.373 -1.756 -1.526 0 0 0 0 0 0 0 +13.378 -1.714 -1.526 0 0 0 0 0 0 0 +7.928 -0.98 -0.823 0 0 0 0 0 0 0 +13.418 -1.634 -1.53 0 0 0 0 0 0 0 +13.423 -1.592 -1.53 0 0 0 0 0 0 0 +13.446 -1.573 -1.532 0 0 0 0 0 0 0 +13.45 -1.531 -1.532 0 0 0 0 0 0 0 +13.463 -1.489 -1.533 0 0 0 0 0 0 0 +13.474 -1.448 -1.534 0 0 0 0 0 0 0 +13.504 -1.408 -1.537 0 0 0 0 0 0 0 +13.488 -1.364 -1.535 0 0 0 0 0 0 0 +13.506 -1.323 -1.536 0 0 0 0 0 0 0 +11.066 -1.061 -1.223 0 0 0 0 0 0 0 +13.499 -1.258 -1.535 0 0 0 0 0 0 0 +13.528 -1.218 -1.538 0 0 0 0 0 0 0 +13.546 -1.176 -1.54 0 0 0 0 0 0 0 +13.557 -1.135 -1.541 0 0 0 0 0 0 0 +13.569 -1.093 -1.542 0 0 0 0 0 0 0 +13.574 -1.05 -1.542 0 0 0 0 0 0 0 +13.588 -1.03 -1.544 0 0 0 0 0 0 0 +13.591 -0.987 -1.544 0 0 0 0 0 0 0 +13.614 -0.946 -1.546 0 0 0 0 0 0 0 +13.648 -0.905 -1.55 0 0 0 0 0 0 0 +13.657 -0.863 -1.551 0 0 0 0 0 0 0 +13.675 -0.821 -1.553 0 0 0 0 0 0 0 +13.684 -0.778 -1.554 0 0 0 0 0 0 0 +13.701 -0.757 -1.556 0 0 0 0 0 0 0 +13.717 -0.715 -1.558 0 0 0 0 0 0 0 +13.682 -0.67 -1.553 0 0 0 0 0 0 0 +13.749 -0.63 -1.561 0 0 0 0 0 0 0 +13.735 -0.586 -1.559 0 0 0 0 0 0 0 +13.677 -0.541 -1.551 0 0 0 0 0 0 0 +13.568 -0.494 -1.537 0 0 0 0 0 0 0 +13.769 -0.48 -1.563 0 0 0 0 0 0 0 +13.725 -0.435 -1.557 0 0 0 0 0 0 0 +13.752 -0.392 -1.56 0 0 0 0 0 0 0 +13.791 -0.35 -1.565 0 0 0 0 0 0 0 +13.798 -0.307 -1.566 0 0 0 0 0 0 0 +13.735 -0.262 -1.558 0 0 0 0 0 0 0 +13.821 -0.221 -1.569 0 0 0 0 0 0 0 +13.828 -0.199 -1.569 0 0 0 0 0 0 0 +13.195 -0.147 -1.489 0 0 0 0 0 0 0 +13.414 -0.108 -1.516 0 0 0 0 0 0 0 +13.503 -0.067 -1.528 0 0 0 0 0 0 0 +13.71 -0.025 -1.554 0 0 0 0 0 0 0 +13.065 0.036 -1.563 0 0 0 0 0 0 0 +13.08 0.077 -1.565 0 0 0 0 0 0 0 +13.1 0.118 -1.568 0 0 0 0 0 0 0 +13.177 0.16 -1.578 0 0 0 0 0 0 0 +13.172 0.181 -1.578 0 0 0 0 0 0 0 +13.136 0.222 -1.573 0 0 0 0 0 0 0 +13.155 0.263 -1.575 0 0 0 0 0 0 0 +13.2 0.306 -1.582 0 0 0 0 0 0 0 +13.209 0.348 -1.583 0 0 0 0 0 0 0 +13.196 0.389 -1.581 0 0 0 0 0 0 0 +13.175 0.43 -1.579 0 0 0 0 0 0 0 +13.198 0.451 -1.582 0 0 0 0 0 0 0 +13.178 0.492 -1.579 0 0 0 0 0 0 0 +13.209 0.535 -1.584 0 0 0 0 0 0 0 +13.219 0.577 -1.585 0 0 0 0 0 0 0 +13.274 0.621 -1.593 0 0 0 0 0 0 0 +13.292 0.664 -1.596 0 0 0 0 0 0 0 +13.308 0.706 -1.598 0 0 0 0 0 0 0 +13.33 0.729 -1.601 0 0 0 0 0 0 0 +13.387 0.774 -1.609 0 0 0 0 0 0 0 +13.446 0.82 -1.618 0 0 0 0 0 0 0 +13.467 0.864 -1.621 0 0 0 0 0 0 0 +13.579 0.914 -1.636 0 0 0 0 0 0 0 +13.637 0.961 -1.645 0 0 0 0 0 0 0 +13.705 1.009 -1.654 0 0 0 0 0 0 0 +13.787 1.037 -1.665 0 0 0 0 0 0 0 +13.801 1.082 -1.668 0 0 0 0 0 0 0 +13.806 1.126 -1.669 0 0 0 0 0 0 0 +13.769 1.167 -1.664 0 0 0 0 0 0 0 +13.798 1.213 -1.669 0 0 0 0 0 0 0 +13.828 1.259 -1.673 0 0 0 0 0 0 0 +13.883 1.308 -1.681 0 0 0 0 0 0 0 +13.956 1.337 -1.692 0 0 0 0 0 0 0 +13.946 1.381 -1.691 0 0 0 0 0 0 0 +13.938 1.424 -1.69 0 0 0 0 0 0 0 +13.957 1.47 -1.694 0 0 0 0 0 0 0 +13.993 1.519 -1.699 0 0 0 0 0 0 0 +14.093 1.575 -1.713 0 0 0 0 0 0 0 +14.058 1.615 -1.709 0 0 0 0 0 0 0 +14.058 1.638 -1.71 0 0 0 0 0 0 0 +14.039 1.68 -1.708 0 0 0 0 0 0 0 +14.028 1.724 -1.707 0 0 0 0 0 0 0 +13.998 1.765 -1.704 0 0 0 0 0 0 0 +13.991 1.808 -1.703 0 0 0 0 0 0 0 +13.997 1.854 -1.705 0 0 0 0 0 0 0 +13.979 1.896 -1.703 0 0 0 0 0 0 0 +13.947 1.914 -1.699 0 0 0 0 0 0 0 +13.911 1.954 -1.695 0 0 0 0 0 0 0 +13.952 2.004 -1.702 0 0 0 0 0 0 0 +13.948 2.048 -1.702 0 0 0 0 0 0 0 +13.939 2.092 -1.702 0 0 0 0 0 0 0 +13.919 2.134 -1.7 0 0 0 0 0 0 0 +13.916 2.178 -1.7 0 0 0 0 0 0 0 +13.897 2.197 -1.698 0 0 0 0 0 0 0 +13.896 2.242 -1.699 0 0 0 0 0 0 0 +13.893 2.286 -1.7 0 0 0 0 0 0 0 +13.882 2.329 -1.699 0 0 0 0 0 0 0 +13.874 2.373 -1.699 0 0 0 0 0 0 0 +13.843 2.412 -1.696 0 0 0 0 0 0 0 +13.824 2.454 -1.694 0 0 0 0 0 0 0 +13.812 2.474 -1.693 0 0 0 0 0 0 0 +13.8 2.517 -1.693 0 0 0 0 0 0 0 +13.787 2.559 -1.692 0 0 0 0 0 0 0 +13.769 2.6 -1.691 0 0 0 0 0 0 0 +13.757 2.643 -1.69 0 0 0 0 0 0 0 +13.748 2.686 -1.69 0 0 0 0 0 0 0 +13.734 2.728 -1.689 0 0 0 0 0 0 0 +13.719 2.77 -1.688 0 0 0 0 0 0 0 +13.7 2.788 -1.686 0 0 0 0 0 0 0 +13.7 2.833 -1.688 0 0 0 0 0 0 0 +13.67 2.872 -1.685 0 0 0 0 0 0 0 +13.661 2.915 -1.685 0 0 0 0 0 0 0 +13.66 2.959 -1.686 0 0 0 0 0 0 0 +13.642 3 -1.685 0 0 0 0 0 0 0 +13.629 3.042 -1.684 0 0 0 0 0 0 0 +13.622 3.063 -1.684 0 0 0 0 0 0 0 +13.609 3.105 -1.683 0 0 0 0 0 0 0 +13.591 3.146 -1.682 0 0 0 0 0 0 0 +13.583 3.189 -1.683 0 0 0 0 0 0 0 +13.583 3.234 -1.684 0 0 0 0 0 0 0 +13.559 3.274 -1.682 0 0 0 0 0 0 0 +13.553 3.317 -1.683 0 0 0 0 0 0 0 +13.542 3.337 -1.682 0 0 0 0 0 0 0 +13.529 3.379 -1.681 0 0 0 0 0 0 0 +13.524 3.423 -1.682 0 0 0 0 0 0 0 +13.51 3.465 -1.682 0 0 0 0 0 0 0 +13.483 3.503 -1.68 0 0 0 0 0 0 0 +13.478 3.547 -1.68 0 0 0 0 0 0 0 +13.467 3.589 -1.68 0 0 0 0 0 0 0 +13.463 3.611 -1.681 0 0 0 0 0 0 0 +13.452 3.653 -1.681 0 0 0 0 0 0 0 +13.438 3.695 -1.68 0 0 0 0 0 0 0 +13.426 3.737 -1.68 0 0 0 0 0 0 0 +13.403 3.776 -1.679 0 0 0 0 0 0 0 +13.399 3.82 -1.68 0 0 0 0 0 0 0 +13.381 3.861 -1.679 0 0 0 0 0 0 0 +13.381 3.883 -1.68 0 0 0 0 0 0 0 +13.363 3.924 -1.679 0 0 0 0 0 0 0 +13.352 3.966 -1.679 0 0 0 0 0 0 0 +13.345 4.01 -1.68 0 0 0 0 0 0 0 +13.325 4.049 -1.679 0 0 0 0 0 0 0 +13.316 4.092 -1.68 0 0 0 0 0 0 0 +13.311 4.137 -1.681 0 0 0 0 0 0 0 +13.31 4.159 -1.681 0 0 0 0 0 0 0 +13.293 4.2 -1.681 0 0 0 0 0 0 0 +13.289 4.245 -1.682 0 0 0 0 0 0 0 +13.287 4.29 -1.684 0 0 0 0 0 0 0 +13.285 4.335 -1.685 0 0 0 0 0 0 0 +13.254 4.372 -1.683 0 0 0 0 0 0 0 +13.256 4.418 -1.685 0 0 0 0 0 0 0 +13.235 4.435 -1.683 0 0 0 0 0 0 0 +13.24 4.483 -1.686 0 0 0 0 0 0 0 +13.22 4.522 -1.685 0 0 0 0 0 0 0 +13.206 4.564 -1.685 0 0 0 0 0 0 0 +13.205 4.61 -1.687 0 0 0 0 0 0 0 +13.192 4.652 -1.687 0 0 0 0 0 0 0 +13.178 4.693 -1.687 0 0 0 0 0 0 0 +13.179 4.717 -1.689 0 0 0 0 0 0 0 +13.159 4.757 -1.688 0 0 0 0 0 0 0 +13.142 4.797 -1.688 0 0 0 0 0 0 0 +13.127 4.839 -1.688 0 0 0 0 0 0 0 +13.132 4.887 -1.691 0 0 0 0 0 0 0 +13.119 4.929 -1.691 0 0 0 0 0 0 0 +13.114 4.975 -1.692 0 0 0 0 0 0 0 +13.104 4.995 -1.692 0 0 0 0 0 0 0 +13.1 5.04 -1.694 0 0 0 0 0 0 0 +13.088 5.083 -1.694 0 0 0 0 0 0 0 +13.083 5.128 -1.696 0 0 0 0 0 0 0 +13.066 5.169 -1.696 0 0 0 0 0 0 0 +13.061 5.215 -1.698 0 0 0 0 0 0 0 +13.063 5.263 -1.7 0 0 0 0 0 0 0 +13.068 5.289 -1.702 0 0 0 0 0 0 0 +13.135 5.365 -1.714 0 0 0 0 0 0 0 +13.153 5.42 -1.719 0 0 0 0 0 0 0 +13.151 5.468 -1.722 0 0 0 0 0 0 0 +13.133 5.509 -1.722 0 0 0 0 0 0 0 +13.087 5.538 -1.717 0 0 0 0 0 0 0 +13.08 5.584 -1.719 0 0 0 0 0 0 0 +13.012 5.578 -1.71 0 0 0 0 0 0 0 +12.976 5.611 -1.707 0 0 0 0 0 0 0 +12.976 5.66 -1.71 0 0 0 0 0 0 0 +12.958 5.701 -1.71 0 0 0 0 0 0 0 +12.948 5.744 -1.711 0 0 0 0 0 0 0 +12.926 5.783 -1.711 0 0 0 0 0 0 0 +12.888 5.815 -1.708 0 0 0 0 0 0 0 +12.899 5.844 -1.711 0 0 0 0 0 0 0 +12.891 5.89 -1.712 0 0 0 0 0 0 0 +12.874 5.931 -1.712 0 0 0 0 0 0 0 +12.859 5.973 -1.713 0 0 0 0 0 0 0 +12.849 6.018 -1.714 0 0 0 0 0 0 0 +12.839 6.062 -1.716 0 0 0 0 0 0 0 +12.829 6.107 -1.717 0 0 0 0 0 0 0 +12.812 6.148 -1.717 0 0 0 0 0 0 0 +12.827 6.18 -1.721 0 0 0 0 0 0 0 +12.802 6.218 -1.72 0 0 0 0 0 0 0 +12.782 6.258 -1.72 0 0 0 0 0 0 0 +12.768 6.301 -1.721 0 0 0 0 0 0 0 +12.755 6.345 -1.722 0 0 0 0 0 0 0 +12.741 6.387 -1.723 0 0 0 0 0 0 0 +12.746 6.415 -1.725 0 0 0 0 0 0 0 +12.732 6.458 -1.726 0 0 0 0 0 0 0 +12.713 6.499 -1.726 0 0 0 0 0 0 0 +12.696 6.541 -1.727 0 0 0 0 0 0 0 +12.672 6.579 -1.726 0 0 0 0 0 0 0 +12.634 6.609 -1.724 0 0 0 0 0 0 0 +12.623 6.654 -1.725 0 0 0 0 0 0 0 +12.63 6.684 -1.728 0 0 0 0 0 0 0 +12.63 6.734 -1.731 0 0 0 0 0 0 0 +12.612 6.776 -1.732 0 0 0 0 0 0 0 +12.579 6.809 -1.73 0 0 0 0 0 0 0 +12.571 6.856 -1.732 0 0 0 0 0 0 0 +12.557 6.899 -1.733 0 0 0 0 0 0 0 +12.537 6.94 -1.733 0 0 0 0 0 0 0 +12.533 6.963 -1.734 0 0 0 0 0 0 0 +12.513 7.004 -1.735 0 0 0 0 0 0 0 +12.489 7.042 -1.734 0 0 0 0 0 0 0 +12.498 7.099 -1.739 0 0 0 0 0 0 0 +12.451 7.124 -1.735 0 0 0 0 0 0 0 +12.388 7.139 -1.729 0 0 0 0 0 0 0 +12.288 7.133 -1.717 0 0 0 0 0 0 0 +12.13 7.093 -1.696 0 0 0 0 0 0 0 +10.926 6.408 -1.509 0 0 0 0 0 0 0 +11.156 6.591 -1.548 0 0 0 0 0 0 0 +10.712 6.373 -1.482 0 0 0 0 0 0 0 +10.469 6.273 -1.447 0 0 0 0 0 0 0 +10.436 6.297 -1.445 0 0 0 0 0 0 0 +10.348 6.289 -1.434 0 0 0 0 0 0 0 +10.349 6.334 -1.437 0 0 0 0 0 0 0 +10.281 6.315 -1.428 0 0 0 0 0 0 0 +10.23 6.327 -1.423 0 0 0 0 0 0 0 +10.242 6.379 -1.428 0 0 0 0 0 0 0 +10.243 6.425 -1.432 0 0 0 0 0 0 0 +10.235 6.465 -1.433 0 0 0 0 0 0 0 +10.196 6.485 -1.431 0 0 0 0 0 0 0 +10.199 6.509 -1.433 0 0 0 0 0 0 0 +10.227 6.573 -1.44 0 0 0 0 0 0 0 +10.21 6.607 -1.441 0 0 0 0 0 0 0 +10.192 6.641 -1.442 0 0 0 0 0 0 0 +10.211 6.699 -1.448 0 0 0 0 0 0 0 +10.187 6.729 -1.447 0 0 0 0 0 0 0 +10.22 6.797 -1.456 0 0 0 0 0 0 0 +10.232 6.829 -1.46 0 0 0 0 0 0 0 +10.207 6.859 -1.459 0 0 0 0 0 0 0 +10.187 6.892 -1.46 0 0 0 0 0 0 0 +10.175 6.931 -1.461 0 0 0 0 0 0 0 +10.163 6.969 -1.463 0 0 0 0 0 0 0 +10.138 6.999 -1.462 0 0 0 0 0 0 0 +10.134 7.043 -1.465 0 0 0 0 0 0 0 +10.131 7.065 -1.467 0 0 0 0 0 0 0 +10.115 7.101 -1.468 0 0 0 0 0 0 0 +10.082 7.125 -1.466 0 0 0 0 0 0 0 +10.074 7.167 -1.468 0 0 0 0 0 0 0 +10.037 7.188 -1.466 0 0 0 0 0 0 0 +10.102 7.284 -1.481 0 0 0 0 0 0 0 +10.11 7.337 -1.486 0 0 0 0 0 0 0 +10.116 7.366 -1.489 0 0 0 0 0 0 0 +10.115 7.414 -1.492 0 0 0 0 0 0 0 +10.089 7.444 -1.492 0 0 0 0 0 0 0 +10.119 7.516 -1.501 0 0 0 0 0 0 0 +10.11 7.558 -1.503 0 0 0 0 0 0 0 +10.148 7.637 -1.514 0 0 0 0 0 0 0 +10.146 7.685 -1.517 0 0 0 0 0 0 0 +10.162 7.723 -1.522 0 0 0 0 0 0 0 +10.167 7.778 -1.527 0 0 0 0 0 0 0 +10.171 7.831 -1.532 0 0 0 0 0 0 0 +10.17 7.881 -1.536 0 0 0 0 0 0 0 +10.175 7.937 -1.541 0 0 0 0 0 0 0 +10.186 7.997 -1.547 0 0 0 0 0 0 0 +10.192 8.053 -1.553 0 0 0 0 0 0 0 +10.197 8.11 -1.558 0 0 0 0 0 0 0 +10.208 8.145 -1.562 0 0 0 0 0 0 0 +10.225 8.212 -1.57 0 0 0 0 0 0 0 +10.182 8.23 -1.567 0 0 0 0 0 0 0 +6.805 5.525 -0.983 0 0 0 0 0 0 0 +6.757 5.521 -0.978 0 0 0 0 0 0 0 +6.726 5.531 -0.975 0 0 0 0 0 0 0 +6.712 5.554 -0.976 0 0 0 0 0 0 0 +6.712 5.573 -0.978 0 0 0 0 0 0 0 +6.695 5.594 -0.978 0 0 0 0 0 0 0 +10.18 8.633 -1.601 0 0 0 0 0 0 0 +10.201 8.706 -1.61 0 0 0 0 0 0 0 +10.175 8.74 -1.61 0 0 0 0 0 0 0 +10.186 8.776 -1.614 0 0 0 0 0 0 0 +10.172 8.82 -1.617 0 0 0 0 0 0 0 +10.129 8.839 -1.614 0 0 0 0 0 0 0 +10.129 8.896 -1.619 0 0 0 0 0 0 0 +10.128 8.951 -1.624 0 0 0 0 0 0 0 +10.11 8.992 -1.626 0 0 0 0 0 0 0 +10.075 9.017 -1.624 0 0 0 0 0 0 0 +10.074 9.045 -1.627 0 0 0 0 0 0 0 +10.051 9.082 -1.628 0 0 0 0 0 0 0 +10.022 9.113 -1.628 0 0 0 0 0 0 0 +10.005 9.156 -1.63 0 0 0 0 0 0 0 +9.977 9.187 -1.63 0 0 0 0 0 0 0 +9.961 9.23 -1.632 0 0 0 0 0 0 0 +9.922 9.252 -1.63 0 0 0 0 0 0 0 +9.92 9.28 -1.633 0 0 0 0 0 0 0 +9.885 9.306 -1.632 0 0 0 0 0 0 0 +9.839 9.32 -1.629 0 0 0 0 0 0 0 +9.812 9.354 -1.629 0 0 0 0 0 0 0 +9.767 9.37 -1.626 0 0 0 0 0 0 0 +9.716 9.38 -1.622 0 0 0 0 0 0 0 +9.705 9.428 -1.626 0 0 0 0 0 0 0 +9.699 9.482 -1.63 0 0 0 0 0 0 0 +9.687 9.5 -1.631 0 0 0 0 0 0 0 +9.674 9.547 -1.634 0 0 0 0 0 0 0 +9.636 9.569 -1.632 0 0 0 0 0 0 0 +9.613 9.606 -1.634 0 0 0 0 0 0 0 +9.583 9.637 -1.634 0 0 0 0 0 0 0 +9.555 9.669 -1.634 0 0 0 0 0 0 0 +9.52 9.695 -1.633 0 0 0 0 0 0 0 +9.519 9.724 -1.636 0 0 0 0 0 0 0 +9.484 9.75 -1.635 0 0 0 0 0 0 0 +9.444 9.77 -1.633 0 0 0 0 0 0 0 +9.434 9.821 -1.637 0 0 0 0 0 0 0 +9.396 9.843 -1.636 0 0 0 0 0 0 0 +9.375 9.883 -1.638 0 0 0 0 0 0 0 +9.345 9.913 -1.638 0 0 0 0 0 0 0 +9.336 9.935 -1.64 0 0 0 0 0 0 0 +9.316 9.976 -1.642 0 0 0 0 0 0 0 +9.279 10 -1.641 0 0 0 0 0 0 0 +9.272 10.055 -1.645 0 0 0 0 0 0 0 +9.237 10.081 -1.645 0 0 0 0 0 0 0 +9.211 10.116 -1.646 0 0 0 0 0 0 0 +9.194 10.161 -1.649 0 0 0 0 0 0 0 +9.167 10.164 -1.647 0 0 0 0 0 0 0 +9.15 10.209 -1.65 0 0 0 0 0 0 0 +9.103 10.221 -1.647 0 0 0 0 0 0 0 +9.083 10.263 -1.649 0 0 0 0 0 0 0 +9.071 10.315 -1.653 0 0 0 0 0 0 0 +9.022 10.324 -1.65 0 0 0 0 0 0 0 +9.008 10.374 -1.654 0 0 0 0 0 0 0 +8.998 10.395 -1.655 0 0 0 0 0 0 0 +8.969 10.428 -1.656 0 0 0 0 0 0 0 +8.95 10.473 -1.659 0 0 0 0 0 0 0 +8.913 10.496 -1.658 0 0 0 0 0 0 0 +8.882 10.526 -1.658 0 0 0 0 0 0 0 +8.846 10.551 -1.658 0 0 0 0 0 0 0 +8.812 10.577 -1.657 0 0 0 0 0 0 0 +8.794 10.589 -1.657 0 0 0 0 0 0 0 +8.77 10.629 -1.659 0 0 0 0 0 0 0 +8.738 10.658 -1.66 0 0 0 0 0 0 0 +8.726 10.712 -1.664 0 0 0 0 0 0 0 +8.687 10.733 -1.663 0 0 0 0 0 0 0 +8.658 10.766 -1.664 0 0 0 0 0 0 0 +8.633 10.804 -1.666 0 0 0 0 0 0 0 +8.614 10.815 -1.665 0 0 0 0 0 0 0 +8.576 10.837 -1.665 0 0 0 0 0 0 0 +8.54 10.861 -1.664 0 0 0 0 0 0 0 +8.502 10.883 -1.663 0 0 0 0 0 0 0 +8.471 10.914 -1.664 0 0 0 0 0 0 0 +8.444 10.95 -1.666 0 0 0 0 0 0 0 +8.413 10.981 -1.667 0 0 0 0 0 0 0 +8.407 11.009 -1.669 0 0 0 0 0 0 0 +8.381 11.046 -1.671 0 0 0 0 0 0 0 +8.362 11.095 -1.675 0 0 0 0 0 0 0 +8.333 11.129 -1.676 0 0 0 0 0 0 0 +8.296 11.152 -1.675 0 0 0 0 0 0 0 +8.268 11.187 -1.677 0 0 0 0 0 0 0 +8.236 11.218 -1.678 0 0 0 0 0 0 0 +8.226 11.241 -1.679 0 0 0 0 0 0 0 +8.201 11.281 -1.682 0 0 0 0 0 0 0 +8.164 11.305 -1.681 0 0 0 0 0 0 0 +8.137 11.342 -1.683 0 0 0 0 0 0 0 +8.11 11.38 -1.685 0 0 0 0 0 0 0 +8.064 11.391 -1.683 0 0 0 0 0 0 0 +8.031 11.42 -1.684 0 0 0 0 0 0 0 +8.021 11.444 -1.685 0 0 0 0 0 0 0 +8 11.492 -1.689 0 0 0 0 0 0 0 +7.963 11.515 -1.689 0 0 0 0 0 0 0 +7.933 11.548 -1.69 0 0 0 0 0 0 0 +7.894 11.57 -1.69 0 0 0 0 0 0 0 +7.861 11.599 -1.691 0 0 0 0 0 0 0 +7.83 11.632 -1.692 0 0 0 0 0 0 0 +7.802 11.67 -1.694 0 0 0 0 0 0 0 +7.776 11.671 -1.692 0 0 0 0 0 0 0 +7.742 11.698 -1.693 0 0 0 0 0 0 0 +7.71 11.731 -1.694 0 0 0 0 0 0 0 +7.679 11.763 -1.695 0 0 0 0 0 0 0 +7.639 11.782 -1.695 0 0 0 0 0 0 0 +7.612 11.823 -1.697 0 0 0 0 0 0 0 +7.58 11.855 -1.699 0 0 0 0 0 0 0 +7.561 11.865 -1.698 0 0 0 0 0 0 0 +7.524 11.891 -1.699 0 0 0 0 0 0 0 +7.489 11.918 -1.699 0 0 0 0 0 0 0 +7.459 11.953 -1.701 0 0 0 0 0 0 0 +7.417 11.97 -1.7 0 0 0 0 0 0 0 +7.39 12.01 -1.703 0 0 0 0 0 0 0 +7.378 12.033 -1.704 0 0 0 0 0 0 0 +7.348 12.068 -1.706 0 0 0 0 0 0 0 +7.32 12.108 -1.709 0 0 0 0 0 0 0 +7.285 12.136 -1.71 0 0 0 0 0 0 0 +7.25 12.164 -1.711 0 0 0 0 0 0 0 +7.214 12.19 -1.711 0 0 0 0 0 0 0 +7.174 12.211 -1.711 0 0 0 0 0 0 0 +7.152 12.217 -1.71 0 0 0 0 0 0 0 +7.116 12.243 -1.711 0 0 0 0 0 0 0 +7.08 12.271 -1.711 0 0 0 0 0 0 0 +7.051 12.31 -1.714 0 0 0 0 0 0 0 +7.027 12.358 -1.718 0 0 0 0 0 0 0 +6.994 12.39 -1.72 0 0 0 0 0 0 0 +6.965 12.43 -1.722 0 0 0 0 0 0 0 +6.934 12.465 -1.725 0 0 0 0 0 0 0 +6.922 12.49 -1.727 0 0 0 0 0 0 0 +6.891 12.527 -1.729 0 0 0 0 0 0 0 +6.845 12.537 -1.727 0 0 0 0 0 0 0 +6.816 12.577 -1.73 0 0 0 0 0 0 0 +6.795 12.634 -1.735 0 0 0 0 0 0 0 +6.759 12.662 -1.737 0 0 0 0 0 0 0 +6.745 12.732 -1.744 0 0 0 0 0 0 0 +6.773 12.834 -1.758 0 0 0 0 0 0 0 +6.782 12.95 -1.772 0 0 0 0 0 0 0 +6.794 13.074 -1.788 0 0 0 0 0 0 0 +6.799 13.185 -1.801 0 0 0 0 0 0 0 +6.813 13.314 -1.818 0 0 0 0 0 0 0 +6.815 13.422 -1.831 0 0 0 0 0 0 0 +6.828 13.553 -1.847 0 0 0 0 0 0 0 +6.827 13.66 -1.86 0 0 0 0 0 0 0 +6.855 13.77 -1.875 0 0 0 0 0 0 0 +6.822 13.813 -1.878 0 0 0 0 0 0 0 +6.781 13.837 -1.879 0 0 0 0 0 0 0 +6.743 13.871 -1.881 0 0 0 0 0 0 0 +6.702 13.898 -1.882 0 0 0 0 0 0 0 +6.658 13.917 -1.881 0 0 0 0 0 0 0 +6.637 13.929 -1.882 0 0 0 0 0 0 0 +6.591 13.946 -1.881 0 0 0 0 0 0 0 +6.539 13.949 -1.878 0 0 0 0 0 0 0 +6.492 13.962 -1.877 0 0 0 0 0 0 0 +6.451 13.99 -1.878 0 0 0 0 0 0 0 +6.397 13.988 -1.875 0 0 0 0 0 0 0 +6.356 14.014 -1.876 0 0 0 0 0 0 0 +6.313 14.035 -1.876 0 0 0 0 0 0 0 +6.281 14.024 -1.873 0 0 0 0 0 0 0 +6.244 14.06 -1.875 0 0 0 0 0 0 0 +6.201 14.083 -1.876 0 0 0 0 0 0 0 +6.145 14.075 -1.872 0 0 0 0 0 0 0 +6.096 14.083 -1.87 0 0 0 0 0 0 0 +6.049 14.095 -1.869 0 0 0 0 0 0 0 +6.002 14.108 -1.869 0 0 0 0 0 0 0 +5.969 14.092 -1.865 0 0 0 0 0 0 0 +5.927 14.115 -1.865 0 0 0 0 0 0 0 +5.873 14.111 -1.862 0 0 0 0 0 0 0 +5.827 14.126 -1.862 0 0 0 0 0 0 0 +5.782 14.142 -1.861 0 0 0 0 0 0 0 +5.733 14.149 -1.86 0 0 0 0 0 0 0 +5.681 14.147 -1.857 0 0 0 0 0 0 0 +5.658 14.156 -1.857 0 0 0 0 0 0 0 +5.61 14.165 -1.855 0 0 0 0 0 0 0 +5.565 14.18 -1.855 0 0 0 0 0 0 0 +5.523 14.205 -1.856 0 0 0 0 0 0 0 +5.467 14.193 -1.852 0 0 0 0 0 0 0 +5.423 14.212 -1.852 0 0 0 0 0 0 0 +5.37 14.206 -1.849 0 0 0 0 0 0 0 +5.341 14.196 -1.846 0 0 0 0 0 0 0 +5.293 14.204 -1.845 0 0 0 0 0 0 0 +5.249 14.222 -1.845 0 0 0 0 0 0 0 +5.198 14.222 -1.843 0 0 0 0 0 0 0 +5.143 14.21 -1.839 0 0 0 0 0 0 0 +5.099 14.226 -1.839 0 0 0 0 0 0 0 +5.051 14.235 -1.838 0 0 0 0 0 0 0 +5.031 14.248 -1.839 0 0 0 0 0 0 0 +4.969 14.215 -1.832 0 0 0 0 0 0 0 +4.923 14.225 -1.831 0 0 0 0 0 0 0 +4.873 14.225 -1.829 0 0 0 0 0 0 0 +4.827 14.239 -1.828 0 0 0 0 0 0 0 +4.781 14.248 -1.828 0 0 0 0 0 0 0 +4.737 14.267 -1.828 0 0 0 0 0 0 0 +4.693 14.284 -1.828 0 0 0 0 0 0 0 +4.675 14.304 -1.83 0 0 0 0 0 0 0 +4.631 14.321 -1.831 0 0 0 0 0 0 0 +4.586 14.337 -1.831 0 0 0 0 0 0 0 +4.543 14.357 -1.832 0 0 0 0 0 0 0 +4.497 14.368 -1.831 0 0 0 0 0 0 0 +4.453 14.387 -1.832 0 0 0 0 0 0 0 +4.408 14.401 -1.832 0 0 0 0 0 0 0 +4.386 14.41 -1.832 0 0 0 0 0 0 0 +4.341 14.426 -1.832 0 0 0 0 0 0 0 +4.292 14.428 -1.831 0 0 0 0 0 0 0 +4.246 14.437 -1.83 0 0 0 0 0 0 0 +4.201 14.451 -1.83 0 0 0 0 0 0 0 +4.153 14.456 -1.829 0 0 0 0 0 0 0 +4.103 14.452 -1.827 0 0 0 0 0 0 0 +4.073 14.434 -1.823 0 0 0 0 0 0 0 +4.013 14.393 -1.816 0 0 0 0 0 0 0 +3.959 14.373 -1.811 0 0 0 0 0 0 0 +3.907 14.362 -1.808 0 0 0 0 0 0 0 +3.851 14.33 -1.802 0 0 0 0 0 0 0 +3.8 14.323 -1.799 0 0 0 0 0 0 0 +3.749 14.312 -1.796 0 0 0 0 0 0 0 +3.71 14.253 -1.787 0 0 0 0 0 0 0 +3.64 14.164 -1.773 0 0 0 0 0 0 0 +3.619 14.272 -1.787 0 0 0 0 0 0 0 +1.75 6.937 -0.766 0 0 0 0 0 0 0 +1.723 6.923 -0.763 0 0 0 0 0 0 0 +1.714 6.979 -0.77 0 0 0 0 0 0 0 +2.023 8.374 -0.963 0 0 0 0 0 0 0 +2.333 9.741 -1.152 0 0 0 0 0 0 0 +2.425 10.422 -1.244 0 0 0 0 0 0 0 +2.512 11.118 -1.338 0 0 0 0 0 0 0 +2.585 11.617 -1.406 0 0 0 0 0 0 0 +2.589 11.813 -1.432 0 0 0 0 0 0 0 +2.632 12.197 -1.484 0 0 0 0 0 0 0 +2.67 12.471 -1.521 0 0 0 0 0 0 0 +2.803 13.304 -1.634 0 0 0 0 0 0 0 +2.758 13.297 -1.632 0 0 0 0 0 0 0 +2.629 12.87 -1.572 0 0 0 0 0 0 0 +2.59 12.89 -1.574 0 0 0 0 0 0 0 +2.564 12.97 -1.584 0 0 0 0 0 0 0 +2.598 13.366 -1.637 0 0 0 0 0 0 0 +2.576 13.364 -1.636 0 0 0 0 0 0 0 +2.536 13.384 -1.638 0 0 0 0 0 0 0 +2.493 13.386 -1.637 0 0 0 0 0 0 0 +2.451 13.395 -1.637 0 0 0 0 0 0 0 +2.41 13.407 -1.638 0 0 0 0 0 0 0 +2.367 13.412 -1.638 0 0 0 0 0 0 0 +2.325 13.418 -1.637 0 0 0 0 0 0 0 +2.305 13.429 -1.638 0 0 0 0 0 0 0 +2.263 13.44 -1.639 0 0 0 0 0 0 0 +0.593 3.539 -0.285 0 0 0 0 0 0 0 +2.225 13.473 -1.642 0 0 0 0 0 0 0 +0.58 3.533 -0.284 0 0 0 0 0 0 0 +0.575 3.574 -0.289 0 0 0 0 0 0 0 +0.562 3.564 -0.288 0 0 0 0 0 0 0 +0.564 3.612 -0.294 0 0 0 0 0 0 0 +0.551 3.604 -0.293 0 0 0 0 0 0 0 +0.541 3.614 -0.294 0 0 0 0 0 0 0 +0.528 3.608 -0.293 0 0 0 0 0 0 0 +0.51 3.56 -0.286 0 0 0 0 0 0 0 +0.499 3.56 -0.286 0 0 0 0 0 0 0 +0.492 3.599 -0.291 0 0 0 0 0 0 0 +0.477 3.569 -0.287 0 0 0 0 0 0 0 +1.716 13.549 -1.643 0 0 0 0 0 0 0 +1.674 13.558 -1.643 0 0 0 0 0 0 0 +1.629 13.546 -1.641 0 0 0 0 0 0 0 +1.591 13.586 -1.646 0 0 0 0 0 0 0 +1.548 13.587 -1.645 0 0 0 0 0 0 0 +1.506 13.6 -1.646 0 0 0 0 0 0 0 +1.464 13.617 -1.648 0 0 0 0 0 0 0 +1.444 13.627 -1.649 0 0 0 0 0 0 0 +1.402 13.641 -1.65 0 0 0 0 0 0 0 +1.36 13.651 -1.651 0 0 0 0 0 0 0 +1.318 13.667 -1.653 0 0 0 0 0 0 0 +1.275 13.673 -1.653 0 0 0 0 0 0 0 +1.233 13.685 -1.654 0 0 0 0 0 0 0 +1.192 13.709 -1.657 0 0 0 0 0 0 0 +1.171 13.718 -1.658 0 0 0 0 0 0 0 +1.129 13.736 -1.66 0 0 0 0 0 0 0 +1.087 13.753 -1.661 0 0 0 0 0 0 0 +1.044 13.759 -1.662 0 0 0 0 0 0 0 +1.002 13.78 -1.664 0 0 0 0 0 0 0 +0.958 13.781 -1.664 0 0 0 0 0 0 0 +0.936 14.118 -1.709 0 0 0 0 0 0 0 +0.934 14.434 -1.752 0 0 0 0 0 0 0 +0.89 14.46 -1.755 0 0 0 0 0 0 0 +0.847 14.503 -1.76 0 0 0 0 0 0 0 +0.802 14.521 -1.762 0 0 0 0 0 0 0 +0.758 14.547 -1.765 0 0 0 0 0 0 0 +0.713 14.579 -1.769 0 0 0 0 0 0 0 +0.669 14.601 -1.772 0 0 0 0 0 0 0 +0.624 14.635 -1.776 0 0 0 0 0 0 0 +0.601 14.638 -1.777 0 0 0 0 0 0 0 +0.556 14.656 -1.779 0 0 0 0 0 0 0 +0.514 14.802 -1.798 0 0 0 0 0 0 0 +0.468 14.821 -1.801 0 0 0 0 0 0 0 +0.429 15.074 -1.835 0 0 0 0 0 0 0 +0.377 14.895 -1.81 0 0 0 0 0 0 0 +0.328 14.785 -1.795 0 0 0 0 0 0 0 +0.304 14.762 -1.792 0 0 0 0 0 0 0 +0.257 14.735 -1.788 0 0 0 0 0 0 0 +0.211 14.734 -1.788 0 0 0 0 0 0 0 +0.165 14.745 -1.789 0 0 0 0 0 0 0 +0.119 14.747 -1.79 0 0 0 0 0 0 0 +0.072 14.745 -1.789 0 0 0 0 0 0 0 +0.026 14.753 -1.791 0 0 0 0 0 0 0 +0.003 14.765 -1.792 0 0 0 0 0 0 0 +-0.044 14.759 -1.791 0 0 0 0 0 0 0 +-0.09 14.755 -1.791 0 0 0 0 0 0 0 +-0.137 14.773 -1.793 0 0 0 0 0 0 0 +-0.183 14.766 -1.792 0 0 0 0 0 0 0 +-0.229 14.775 -1.794 0 0 0 0 0 0 0 +-0.276 14.781 -1.795 0 0 0 0 0 0 0 +-0.299 14.782 -1.795 0 0 0 0 0 0 0 +-0.346 14.795 -1.797 0 0 0 0 0 0 0 +-0.392 14.786 -1.796 0 0 0 0 0 0 0 +-0.439 14.787 -1.796 0 0 0 0 0 0 0 +-0.486 14.799 -1.798 0 0 0 0 0 0 0 +-0.532 14.787 -1.796 0 0 0 0 0 0 0 +-0.579 14.794 -1.797 0 0 0 0 0 0 0 +-0.602 14.787 -1.797 0 0 0 0 0 0 0 +-0.648 14.787 -1.797 0 0 0 0 0 0 0 +-0.694 14.779 -1.796 0 0 0 0 0 0 0 +-0.742 14.794 -1.799 0 0 0 0 0 0 0 +-0.788 14.794 -1.799 0 0 0 0 0 0 0 +-0.834 14.779 -1.797 0 0 0 0 0 0 0 +-0.88 14.775 -1.797 0 0 0 0 0 0 0 +-0.926 14.758 -1.795 0 0 0 0 0 0 0 +-0.954 14.832 -1.805 0 0 0 0 0 0 0 +-1.008 14.932 -1.819 0 0 0 0 0 0 0 +-1.096 14.858 -1.81 0 0 0 0 0 0 0 +-1.14 14.817 -1.805 0 0 0 0 0 0 0 +-1.183 14.77 -1.799 0 0 0 0 0 0 0 +-1.228 14.748 -1.797 0 0 0 0 0 0 0 +-1.252 14.754 -1.798 0 0 0 0 0 0 0 +-1.298 14.742 -1.797 0 0 0 0 0 0 0 +-1.345 14.752 -1.799 0 0 0 0 0 0 0 +-1.39 14.73 -1.796 0 0 0 0 0 0 0 +-1.437 14.735 -1.797 0 0 0 0 0 0 0 +-1.485 14.744 -1.799 0 0 0 0 0 0 0 +-1.531 14.742 -1.8 0 0 0 0 0 0 0 +-1.554 14.735 -1.799 0 0 0 0 0 0 0 +-1.601 14.74 -1.8 0 0 0 0 0 0 0 +-1.648 14.743 -1.801 0 0 0 0 0 0 0 +-1.695 14.74 -1.802 0 0 0 0 0 0 0 +-1.742 14.742 -1.803 0 0 0 0 0 0 0 +-1.789 14.742 -1.804 0 0 0 0 0 0 0 +-1.836 14.741 -1.804 0 0 0 0 0 0 0 +-1.883 14.741 -1.805 0 0 0 0 0 0 0 +-1.907 14.742 -1.805 0 0 0 0 0 0 0 +-1.954 14.741 -1.806 0 0 0 0 0 0 0 +-2.001 14.741 -1.807 0 0 0 0 0 0 0 +-2.048 14.743 -1.808 0 0 0 0 0 0 0 +-2.094 14.732 -1.808 0 0 0 0 0 0 0 +-2.142 14.737 -1.809 0 0 0 0 0 0 0 +-2.19 14.74 -1.811 0 0 0 0 0 0 0 +-2.213 14.739 -1.811 0 0 0 0 0 0 0 +-2.259 14.728 -1.81 0 0 0 0 0 0 0 +-2.307 14.73 -1.812 0 0 0 0 0 0 0 +-2.356 14.739 -1.814 0 0 0 0 0 0 0 +-2.402 14.729 -1.814 0 0 0 0 0 0 0 +-2.45 14.732 -1.815 0 0 0 0 0 0 0 +-2.495 14.72 -1.814 0 0 0 0 0 0 0 +-2.519 14.72 -1.815 0 0 0 0 0 0 0 +-2.569 14.731 -1.818 0 0 0 0 0 0 0 +-2.61 14.696 -1.814 0 0 0 0 0 0 0 +-2.299 12.73 -1.545 0 0 0 0 0 0 0 +-2.316 12.604 -1.529 0 0 0 0 0 0 0 +-2.335 12.486 -1.514 0 0 0 0 0 0 0 +-2.353 12.365 -1.498 0 0 0 0 0 0 0 +-2.351 12.255 -1.484 0 0 0 0 0 0 0 +-2.365 12.123 -1.467 0 0 0 0 0 0 0 +-2.383 12.012 -1.452 0 0 0 0 0 0 0 +-2.399 11.9 -1.438 0 0 0 0 0 0 0 +-2.416 11.795 -1.425 0 0 0 0 0 0 0 +-2.432 11.685 -1.411 0 0 0 0 0 0 0 +-2.449 11.586 -1.398 0 0 0 0 0 0 0 +-2.443 11.47 -1.382 0 0 0 0 0 0 0 +-2.46 11.375 -1.37 0 0 0 0 0 0 0 +-2.474 11.27 -1.357 0 0 0 0 0 0 0 +-2.488 11.168 -1.344 0 0 0 0 0 0 0 +-2.502 11.067 -1.331 0 0 0 0 0 0 0 +-2.518 10.98 -1.32 0 0 0 0 0 0 0 +-2.532 10.881 -1.308 0 0 0 0 0 0 0 +-2.528 10.79 -1.296 0 0 0 0 0 0 0 +-2.542 10.698 -1.284 0 0 0 0 0 0 0 +-2.557 10.615 -1.273 0 0 0 0 0 0 0 +-2.568 10.516 -1.261 0 0 0 0 0 0 0 +-2.584 10.439 -1.251 0 0 0 0 0 0 0 +-2.591 10.329 -1.237 0 0 0 0 0 0 0 +-2.605 10.251 -1.227 0 0 0 0 0 0 0 +-2.621 10.18 -1.219 0 0 0 0 0 0 0 +-2.613 10.084 -1.206 0 0 0 0 0 0 0 +-2.624 9.997 -1.195 0 0 0 0 0 0 0 +-2.64 9.933 -1.187 0 0 0 0 0 0 0 +-2.645 9.829 -1.174 0 0 0 0 0 0 0 +-2.658 9.756 -1.165 0 0 0 0 0 0 0 +-2.677 9.705 -1.159 0 0 0 0 0 0 0 +-2.685 9.615 -1.147 0 0 0 0 0 0 0 +-2.677 9.531 -1.136 0 0 0 0 0 0 0 +-2.7 9.499 -1.133 0 0 0 0 0 0 0 +-2.727 9.368 -1.117 0 0 0 0 0 0 0 +-2.735 9.289 -1.107 0 0 0 0 0 0 0 +-2.752 9.241 -1.101 0 0 0 0 0 0 0 +-2.767 9.184 -1.095 0 0 0 0 0 0 0 +-2.779 9.172 -1.094 0 0 0 0 0 0 0 +-2.784 9.088 -1.083 0 0 0 0 0 0 0 +-2.805 9.055 -1.079 0 0 0 0 0 0 0 +-2.818 8.997 -1.072 0 0 0 0 0 0 0 +-2.848 8.991 -1.073 0 0 0 0 0 0 0 +-2.845 8.888 -1.06 0 0 0 0 0 0 0 +-2.86 8.838 -1.054 0 0 0 0 0 0 0 +-2.856 8.779 -1.046 0 0 0 0 0 0 0 +-2.851 8.674 -1.032 0 0 0 0 0 0 0 +-2.884 8.682 -1.035 0 0 0 0 0 0 0 +-2.896 8.627 -1.028 0 0 0 0 0 0 0 +-2.916 8.596 -1.025 0 0 0 0 0 0 0 +-2.934 8.56 -1.021 0 0 0 0 0 0 0 +-2.942 8.499 -1.014 0 0 0 0 0 0 0 +-2.958 8.46 -1.01 0 0 0 0 0 0 0 +-2.958 8.418 -1.004 0 0 0 0 0 0 0 +-2.975 8.38 -1 0 0 0 0 0 0 0 +-2.981 8.317 -0.993 0 0 0 0 0 0 0 +-3.009 8.311 -0.993 0 0 0 0 0 0 0 +-3.01 8.233 -0.983 0 0 0 0 0 0 0 +-3.024 8.192 -0.979 0 0 0 0 0 0 0 +-3.04 8.158 -0.975 0 0 0 0 0 0 0 +-3.042 8.124 -0.971 0 0 0 0 0 0 0 +-3.06 8.095 -0.968 0 0 0 0 0 0 0 +-3.077 8.062 -0.965 0 0 0 0 0 0 0 +-3.094 8.032 -0.962 0 0 0 0 0 0 0 +-3.108 7.994 -0.958 0 0 0 0 0 0 0 +-3.125 7.964 -0.955 0 0 0 0 0 0 0 +-3.14 7.929 -0.951 0 0 0 0 0 0 0 +-3.143 7.9 -0.948 0 0 0 0 0 0 0 +-3.159 7.868 -0.944 0 0 0 0 0 0 0 +-3.173 7.832 -0.941 0 0 0 0 0 0 0 +-3.186 7.795 -0.937 0 0 0 0 0 0 0 +-3.203 7.766 -0.934 0 0 0 0 0 0 0 +-3.215 7.727 -0.93 0 0 0 0 0 0 0 +-3.234 7.704 -0.928 0 0 0 0 0 0 0 +-3.24 7.684 -0.926 0 0 0 0 0 0 0 +-3.247 7.634 -0.92 0 0 0 0 0 0 0 +-3.268 7.617 -0.919 0 0 0 0 0 0 0 +-3.282 7.584 -0.916 0 0 0 0 0 0 0 +-3.292 7.541 -0.911 0 0 0 0 0 0 0 +-3.311 7.522 -0.909 0 0 0 0 0 0 0 +-3.328 7.497 -0.907 0 0 0 0 0 0 0 +-3.336 7.45 -0.902 0 0 0 0 0 0 0 +-3.337 7.424 -0.899 0 0 0 0 0 0 0 +-3.368 7.429 -0.901 0 0 0 0 0 0 0 +-3.378 7.39 -0.897 0 0 0 0 0 0 0 +-3.406 7.388 -0.898 0 0 0 0 0 0 0 +-3.417 7.352 -0.894 0 0 0 0 0 0 0 +-3.433 7.327 -0.892 0 0 0 0 0 0 0 +-3.445 7.293 -0.889 0 0 0 0 0 0 0 +-3.458 7.29 -0.889 0 0 0 0 0 0 0 +-3.468 7.252 -0.885 0 0 0 0 0 0 0 +-3.488 7.236 -0.884 0 0 0 0 0 0 0 +-3.505 7.214 -0.883 0 0 0 0 0 0 0 +-3.619 7.388 -0.911 0 0 0 0 0 0 0 +-3.602 7.295 -0.898 0 0 0 0 0 0 0 +-3.631 7.296 -0.9 0 0 0 0 0 0 0 +-3.656 7.317 -0.904 0 0 0 0 0 0 0 +-3.692 7.274 -0.901 0 0 0 0 0 0 0 +-3.725 7.284 -0.904 0 0 0 0 0 0 0 +-3.755 7.286 -0.906 0 0 0 0 0 0 0 +-3.786 7.288 -0.909 0 0 0 0 0 0 0 +-3.788 7.238 -0.903 0 0 0 0 0 0 0 +-3.815 7.261 -0.907 0 0 0 0 0 0 0 +-3.878 7.269 -0.912 0 0 0 0 0 0 0 +-3.89 7.237 -0.909 0 0 0 0 0 0 0 +-3.922 7.242 -0.912 0 0 0 0 0 0 0 +-3.93 7.202 -0.908 0 0 0 0 0 0 0 +-3.968 7.218 -0.912 0 0 0 0 0 0 0 +-3.977 7.181 -0.908 0 0 0 0 0 0 0 +-3.992 7.182 -0.909 0 0 0 0 0 0 0 +-4.009 7.159 -0.908 0 0 0 0 0 0 0 +-4.054 7.186 -0.914 0 0 0 0 0 0 0 +-4.069 7.159 -0.912 0 0 0 0 0 0 0 +-4.112 7.182 -0.917 0 0 0 0 0 0 0 +-4.13 7.163 -0.916 0 0 0 0 0 0 0 +-4.156 7.155 -0.917 0 0 0 0 0 0 0 +-4.177 7.165 -0.92 0 0 0 0 0 0 0 +-4.234 7.159 -0.923 0 0 0 0 0 0 0 +-4.27 7.168 -0.926 0 0 0 0 0 0 0 +-4.312 7.187 -0.931 0 0 0 0 0 0 0 +-4.341 7.183 -0.933 0 0 0 0 0 0 0 +-4.381 7.198 -0.937 0 0 0 0 0 0 0 +-4.444 7.276 -0.951 0 0 0 0 0 0 0 +-4.414 7.176 -0.937 0 0 0 0 0 0 0 +-4.462 7.204 -0.944 0 0 0 0 0 0 0 +-4.498 7.21 -0.947 0 0 0 0 0 0 0 +-4.538 7.225 -0.952 0 0 0 0 0 0 0 +-4.566 7.219 -0.953 0 0 0 0 0 0 0 +-4.633 7.273 -0.964 0 0 0 0 0 0 0 +-4.686 7.33 -0.974 0 0 0 0 0 0 0 +-4.75 7.379 -0.985 0 0 0 0 0 0 0 +-4.785 7.382 -0.987 0 0 0 0 0 0 0 +-4.827 7.395 -0.992 0 0 0 0 0 0 0 +-4.867 7.406 -0.996 0 0 0 0 0 0 0 +-4.918 7.432 -1.003 0 0 0 0 0 0 0 +-4.969 7.458 -1.01 0 0 0 0 0 0 0 +-5.04 7.513 -1.021 0 0 0 0 0 0 0 +-5.1 7.576 -1.033 0 0 0 0 0 0 0 +-5.117 7.55 -1.031 0 0 0 0 0 0 0 +-5.06 7.416 -1.012 0 0 0 0 0 0 0 +-5.053 7.356 -1.005 0 0 0 0 0 0 0 +-5.088 7.358 -1.008 0 0 0 0 0 0 0 +-7.338 10.521 -1.531 0 0 0 0 0 0 0 +-7.346 10.462 -1.525 0 0 0 0 0 0 0 +-7.342 10.421 -1.52 0 0 0 0 0 0 0 +-7.344 10.356 -1.513 0 0 0 0 0 0 0 +-7.361 10.311 -1.509 0 0 0 0 0 0 0 +-7.364 10.247 -1.503 0 0 0 0 0 0 0 +-7.361 10.176 -1.495 0 0 0 0 0 0 0 +-7.384 10.14 -1.493 0 0 0 0 0 0 0 +-7.397 10.091 -1.488 0 0 0 0 0 0 0 +-7.404 10.034 -1.483 0 0 0 0 0 0 0 +-7.393 9.988 -1.477 0 0 0 0 0 0 0 +-7.401 9.933 -1.471 0 0 0 0 0 0 0 +-7.42 9.894 -1.469 0 0 0 0 0 0 0 +-7.418 9.826 -1.461 0 0 0 0 0 0 0 +-7.435 9.785 -1.458 0 0 0 0 0 0 0 +-7.436 9.723 -1.452 0 0 0 0 0 0 0 +-7.447 9.674 -1.447 0 0 0 0 0 0 0 +-7.439 9.633 -1.442 0 0 0 0 0 0 0 +-7.442 9.575 -1.436 0 0 0 0 0 0 0 +-7.435 9.503 -1.428 0 0 0 0 0 0 0 +-7.456 9.469 -1.426 0 0 0 0 0 0 0 +-7.482 9.441 -1.425 0 0 0 0 0 0 0 +-7.485 9.385 -1.42 0 0 0 0 0 0 0 +-7.485 9.324 -1.413 0 0 0 0 0 0 0 +-7.477 9.285 -1.409 0 0 0 0 0 0 0 +-7.491 9.243 -1.405 0 0 0 0 0 0 0 +-7.498 9.191 -1.401 0 0 0 0 0 0 0 +-7.51 9.148 -1.397 0 0 0 0 0 0 0 +-7.512 9.092 -1.392 0 0 0 0 0 0 0 +-7.518 9.041 -1.387 0 0 0 0 0 0 0 +-7.53 8.998 -1.383 0 0 0 0 0 0 0 +-7.527 8.966 -1.38 0 0 0 0 0 0 0 +-7.528 8.911 -1.374 0 0 0 0 0 0 0 +-7.537 8.865 -1.37 0 0 0 0 0 0 0 +-7.525 8.794 -1.362 0 0 0 0 0 0 0 +-7.536 8.751 -1.358 0 0 0 0 0 0 0 +-7.558 8.721 -1.357 0 0 0 0 0 0 0 +-7.563 8.672 -1.353 0 0 0 0 0 0 0 +-7.576 8.632 -1.35 0 0 0 0 0 0 0 +-7.563 8.591 -1.344 0 0 0 0 0 0 0 +-7.57 8.545 -1.34 0 0 0 0 0 0 0 +-7.58 8.502 -1.337 0 0 0 0 0 0 0 +-7.584 8.453 -1.332 0 0 0 0 0 0 0 +-7.593 8.41 -1.329 0 0 0 0 0 0 0 +-7.597 8.361 -1.324 0 0 0 0 0 0 0 +-7.61 8.322 -1.322 0 0 0 0 0 0 0 +-7.603 8.289 -1.318 0 0 0 0 0 0 0 +-7.607 8.241 -1.313 0 0 0 0 0 0 0 +-7.614 8.197 -1.31 0 0 0 0 0 0 0 +-7.622 8.154 -1.306 0 0 0 0 0 0 0 +-7.618 8.099 -1.3 0 0 0 0 0 0 0 +-7.647 8.079 -1.301 0 0 0 0 0 0 0 +-11.279 11.824 -2.005 0 0 0 0 0 0 0 +-11.284 11.792 -2.002 0 0 0 0 0 0 0 +-11.294 11.728 -1.997 0 0 0 0 0 0 0 +-11.315 11.677 -1.994 0 0 0 0 0 0 0 +-11.323 11.611 -1.988 0 0 0 0 0 0 0 +-11.341 11.557 -1.985 0 0 0 0 0 0 0 +-11.362 11.506 -1.982 0 0 0 0 0 0 0 +-11.383 11.455 -1.979 0 0 0 0 0 0 0 +-11.41 11.447 -1.981 0 0 0 0 0 0 0 +-11.452 11.417 -1.982 0 0 0 0 0 0 0 +-11.489 11.382 -1.982 0 0 0 0 0 0 0 +-11.519 11.34 -1.981 0 0 0 0 0 0 0 +-11.558 11.307 -1.981 0 0 0 0 0 0 0 +-11.585 11.262 -1.98 0 0 0 0 0 0 0 +-11.626 11.231 -1.981 0 0 0 0 0 0 0 +-11.648 11.217 -1.982 0 0 0 0 0 0 0 +-11.677 11.175 -1.981 0 0 0 0 0 0 0 +-11.731 11.156 -1.984 0 0 0 0 0 0 0 +-11.771 11.125 -1.985 0 0 0 0 0 0 0 +-11.788 11.07 -1.982 0 0 0 0 0 0 0 +-11.828 11.038 -1.983 0 0 0 0 0 0 0 +-11.87 11.008 -1.984 0 0 0 0 0 0 0 +-11.91 10.976 -1.985 0 0 0 0 0 0 0 +-11.936 10.965 -1.987 0 0 0 0 0 0 0 +-11.968 10.925 -1.986 0 0 0 0 0 0 0 +-11.996 10.882 -1.985 0 0 0 0 0 0 0 +-12.029 10.843 -1.985 0 0 0 0 0 0 0 +-12.061 10.804 -1.985 0 0 0 0 0 0 0 +-12.1 10.77 -1.985 0 0 0 0 0 0 0 +-12.139 10.737 -1.986 0 0 0 0 0 0 0 +-12.162 10.723 -1.987 0 0 0 0 0 0 0 +-12.191 10.681 -1.987 0 0 0 0 0 0 0 +-12.216 10.635 -1.985 0 0 0 0 0 0 0 +-12.248 10.595 -1.985 0 0 0 0 0 0 0 +-12.284 10.559 -1.985 0 0 0 0 0 0 0 +-12.305 10.51 -1.983 0 0 0 0 0 0 0 +-12.335 10.469 -1.983 0 0 0 0 0 0 0 +-12.356 10.453 -1.983 0 0 0 0 0 0 0 +-12.387 10.413 -1.983 0 0 0 0 0 0 0 +-12.421 10.375 -1.983 0 0 0 0 0 0 0 +-12.46 10.341 -1.985 0 0 0 0 0 0 0 +-12.495 10.305 -1.985 0 0 0 0 0 0 0 +-12.52 10.259 -1.984 0 0 0 0 0 0 0 +-12.552 10.22 -1.984 0 0 0 0 0 0 0 +-12.554 10.189 -1.981 0 0 0 0 0 0 0 +-12.588 10.151 -1.982 0 0 0 0 0 0 0 +-12.62 10.111 -1.982 0 0 0 0 0 0 0 +-12.647 10.068 -1.981 0 0 0 0 0 0 0 +-12.675 10.025 -1.98 0 0 0 0 0 0 0 +-12.718 9.994 -1.982 0 0 0 0 0 0 0 +-12.746 9.952 -1.982 0 0 0 0 0 0 0 +-12.766 9.935 -1.982 0 0 0 0 0 0 0 +-12.802 9.899 -1.983 0 0 0 0 0 0 0 +-12.846 9.868 -1.985 0 0 0 0 0 0 0 +-12.881 9.831 -1.986 0 0 0 0 0 0 0 +-12.912 9.791 -1.986 0 0 0 0 0 0 0 +-12.948 9.754 -1.987 0 0 0 0 0 0 0 +-12.961 9.7 -1.984 0 0 0 0 0 0 0 +-12.994 9.661 -1.985 0 0 0 0 0 0 0 +-12.992 9.628 -1.982 0 0 0 0 0 0 0 +-13.02 9.586 -1.981 0 0 0 0 0 0 0 +-13.033 9.532 -1.978 0 0 0 0 0 0 0 +-13.069 9.496 -1.979 0 0 0 0 0 0 0 +-13.086 9.446 -1.977 0 0 0 0 0 0 0 +-13.116 9.404 -1.977 0 0 0 0 0 0 0 +-13.155 9.37 -1.979 0 0 0 0 0 0 0 +-13.168 9.348 -1.979 0 0 0 0 0 0 0 +-13.204 9.311 -1.98 0 0 0 0 0 0 0 +-13.248 9.28 -1.982 0 0 0 0 0 0 0 +-13.283 9.243 -1.983 0 0 0 0 0 0 0 +-13.309 9.199 -1.983 0 0 0 0 0 0 0 +-13.338 9.157 -1.983 0 0 0 0 0 0 0 +-13.368 9.116 -1.983 0 0 0 0 0 0 0 +-13.374 9.09 -1.982 0 0 0 0 0 0 0 +-13.406 9.05 -1.982 0 0 0 0 0 0 0 +-13.426 9.002 -1.981 0 0 0 0 0 0 0 +-13.395 8.92 -1.971 0 0 0 0 0 0 0 +-13.482 8.918 -1.981 0 0 0 0 0 0 0 +-6.781 4.47 -0.896 0 0 0 0 0 0 0 +-6.76 4.426 -0.891 0 0 0 0 0 0 0 +-6.767 4.415 -0.891 0 0 0 0 0 0 0 +-6.787 4.398 -0.892 0 0 0 0 0 0 0 +-6.803 4.378 -0.892 0 0 0 0 0 0 0 +-6.781 4.334 -0.886 0 0 0 0 0 0 0 +-13.697 8.663 -1.986 0 0 0 0 0 0 0 +-13.721 8.617 -1.986 0 0 0 0 0 0 0 +-13.744 8.572 -1.985 0 0 0 0 0 0 0 +-13.759 8.522 -1.983 0 0 0 0 0 0 0 +-13.776 8.502 -1.984 0 0 0 0 0 0 0 +-13.804 8.46 -1.984 0 0 0 0 0 0 0 +-13.829 8.415 -1.984 0 0 0 0 0 0 0 +-13.844 8.365 -1.982 0 0 0 0 0 0 0 +-13.863 8.317 -1.981 0 0 0 0 0 0 0 +-13.891 8.275 -1.981 0 0 0 0 0 0 0 +-13.919 8.232 -1.982 0 0 0 0 0 0 0 +-13.93 8.209 -1.981 0 0 0 0 0 0 0 +-13.959 8.167 -1.982 0 0 0 0 0 0 0 +-13.974 8.117 -1.98 0 0 0 0 0 0 0 +-14.008 8.078 -1.982 0 0 0 0 0 0 0 +-14.033 8.034 -1.982 0 0 0 0 0 0 0 +-14.069 7.996 -1.983 0 0 0 0 0 0 0 +-14.085 7.947 -1.982 0 0 0 0 0 0 0 +-14.105 7.929 -1.983 0 0 0 0 0 0 0 +-14.13 7.884 -1.983 0 0 0 0 0 0 0 +-14.156 7.841 -1.983 0 0 0 0 0 0 0 +-14.155 7.782 -1.979 0 0 0 0 0 0 0 +-12.608 6.884 -1.738 0 0 0 0 0 0 0 +-12.626 6.842 -1.738 0 0 0 0 0 0 0 +-12.653 6.805 -1.738 0 0 0 0 0 0 0 +-13.75 7.365 -1.904 0 0 0 0 0 0 0 +-13.964 7.423 -1.933 0 0 0 0 0 0 0 +-13.996 7.383 -1.935 0 0 0 0 0 0 0 +-14.024 7.342 -1.936 0 0 0 0 0 0 0 +-14.08 7.315 -1.941 0 0 0 0 0 0 0 +-7.157 3.676 -0.886 0 0 0 0 0 0 0 +-7.195 3.681 -0.891 0 0 0 0 0 0 0 +-7.265 3.688 -0.9 0 0 0 0 0 0 0 +-7.353 3.703 -0.911 0 0 0 0 0 0 0 +-7.419 3.707 -0.92 0 0 0 0 0 0 0 +-7.536 3.735 -0.935 0 0 0 0 0 0 0 +-7.565 3.72 -0.938 0 0 0 0 0 0 0 +-7.684 3.748 -0.954 0 0 0 0 0 0 0 +-14.605 7.07 -1.989 0 0 0 0 0 0 0 +-14.618 7.02 -1.988 0 0 0 0 0 0 0 +-14.627 6.968 -1.986 0 0 0 0 0 0 0 +-14.325 6.769 -1.937 0 0 0 0 0 0 0 +-14.649 6.866 -1.983 0 0 0 0 0 0 0 +-14.455 6.72 -1.951 0 0 0 0 0 0 0 +-14.707 6.78 -1.985 0 0 0 0 0 0 0 +-14.089 6.443 -1.89 0 0 0 0 0 0 0 +-14.814 6.745 -1.996 0 0 0 0 0 0 0 +-14.839 6.7 -1.997 0 0 0 0 0 0 0 +-14.864 6.655 -1.997 0 0 0 0 0 0 0 +-14.886 6.609 -1.997 0 0 0 0 0 0 0 +-14.925 6.571 -2 0 0 0 0 0 0 0 +-14.937 6.52 -1.999 0 0 0 0 0 0 0 +-14.962 6.475 -1.999 0 0 0 0 0 0 0 +-14.978 6.454 -2 0 0 0 0 0 0 0 +-15.015 6.414 -2.003 0 0 0 0 0 0 0 +-15.062 6.378 -2.007 0 0 0 0 0 0 0 +-15.159 6.363 -2.018 0 0 0 0 0 0 0 +-15.197 6.323 -2.021 0 0 0 0 0 0 0 +-15.233 6.282 -2.023 0 0 0 0 0 0 0 +-15.262 6.238 -2.024 0 0 0 0 0 0 0 +-15.268 6.212 -2.024 0 0 0 0 0 0 0 +-15.266 6.155 -2.021 0 0 0 0 0 0 0 +-15.296 6.112 -2.022 0 0 0 0 0 0 0 +-15.282 6.051 -2.017 0 0 0 0 0 0 0 +-15.277 5.993 -2.014 0 0 0 0 0 0 0 +-15.272 5.936 -2.01 0 0 0 0 0 0 0 +-15.281 5.884 -2.009 0 0 0 0 0 0 0 +-15.274 5.854 -2.007 0 0 0 0 0 0 0 +-15.284 5.803 -2.006 0 0 0 0 0 0 0 +-15.314 5.759 -2.007 0 0 0 0 0 0 0 +-15.313 5.704 -2.005 0 0 0 0 0 0 0 +-15.337 5.658 -2.005 0 0 0 0 0 0 0 +-15.343 5.606 -2.004 0 0 0 0 0 0 0 +-15.355 5.556 -2.003 0 0 0 0 0 0 0 +-15.349 5.526 -2.001 0 0 0 0 0 0 0 +-15.377 5.482 -2.002 0 0 0 0 0 0 0 +-15.372 5.426 -1.999 0 0 0 0 0 0 0 +-15.38 5.374 -1.998 0 0 0 0 0 0 0 +-15.4 5.327 -1.998 0 0 0 0 0 0 0 +-15.402 5.274 -1.996 0 0 0 0 0 0 0 +-15.398 5.218 -1.993 0 0 0 0 0 0 0 +-15.414 5.17 -1.993 0 0 0 0 0 0 0 +-15.4 5.138 -1.99 0 0 0 0 0 0 0 +-15.423 5.092 -1.991 0 0 0 0 0 0 0 +-15.416 5.036 -1.988 0 0 0 0 0 0 0 +-15.426 4.986 -1.987 0 0 0 0 0 0 0 +-15.421 4.931 -1.984 0 0 0 0 0 0 0 +-15.429 4.88 -1.983 0 0 0 0 0 0 0 +-15.437 4.829 -1.982 0 0 0 0 0 0 0 +-15.441 4.804 -1.982 0 0 0 0 0 0 0 +-15.429 4.747 -1.978 0 0 0 0 0 0 0 +-15.45 4.7 -1.979 0 0 0 0 0 0 0 +-15.443 4.646 -1.976 0 0 0 0 0 0 0 +-15.458 4.597 -1.976 0 0 0 0 0 0 0 +-15.449 4.542 -1.973 0 0 0 0 0 0 0 +-15.462 4.493 -1.972 0 0 0 0 0 0 0 +-15.461 4.466 -1.971 0 0 0 0 0 0 0 +-15.448 4.41 -1.967 0 0 0 0 0 0 0 +-15.457 4.36 -1.967 0 0 0 0 0 0 0 +-15.453 4.306 -1.964 0 0 0 0 0 0 0 +-9.987 2.759 -1.198 0 0 0 0 0 0 0 +-9.711 2.651 -1.158 0 0 0 0 0 0 0 +-9.349 2.521 -1.107 0 0 0 0 0 0 0 +-9.091 2.437 -1.07 0 0 0 0 0 0 0 +-8.818 2.335 -1.031 0 0 0 0 0 0 0 +-8.622 2.255 -1.003 0 0 0 0 0 0 0 +-8.48 2.19 -0.982 0 0 0 0 0 0 0 +-8.383 2.137 -0.968 0 0 0 0 0 0 0 +-8.066 1.99 -0.921 0 0 0 0 0 0 0 +-7.836 0.73 -0.862 0 0 0 0 0 0 0 +-7.862 0.707 -0.866 0 0 0 0 0 0 0 +-7.884 0.634 -0.868 0 0 0 0 0 0 0 +-7.919 0.612 -0.872 0 0 0 0 0 0 0 +-7.943 0.588 -0.875 0 0 0 0 0 0 0 +-7.95 0.576 -0.876 0 0 0 0 0 0 0 +-7.968 0.552 -0.878 0 0 0 0 0 0 0 +-7.999 0.529 -0.882 0 0 0 0 0 0 0 +-8.006 0.504 -0.883 0 0 0 0 0 0 0 +-8.01 0.479 -0.883 0 0 0 0 0 0 0 +-8.043 0.456 -0.888 0 0 0 0 0 0 0 +-8.074 0.432 -0.892 0 0 0 0 0 0 0 +-8.148 0.423 -0.901 0 0 0 0 0 0 0 +-16.411 0.671 -2.016 0 0 0 0 0 0 0 +-16.428 0.62 -2.018 0 0 0 0 0 0 0 +-16.44 0.568 -2.019 0 0 0 0 0 0 0 +-16.464 0.517 -2.022 0 0 0 0 0 0 0 +-16.467 0.492 -2.022 0 0 0 0 0 0 0 +-16.492 0.44 -2.026 0 0 0 0 0 0 0 +-16.519 0.389 -2.029 0 0 0 0 0 0 0 +-16.534 0.338 -2.031 0 0 0 0 0 0 0 +-16.571 0.286 -2.036 0 0 0 0 0 0 0 +-16.653 0.235 -2.047 0 0 0 0 0 0 0 +-16.683 0.183 -2.051 0 0 0 0 0 0 0 +-16.711 0.157 -2.055 0 0 0 0 0 0 0 +-16.65 0.104 -2.046 0 0 0 0 0 0 0 +-16.688 0.052 -2.051 0 0 0 0 0 0 0 +-16.698 -0 -2.053 0 0 0 0 0 0 0 +-16.63 -0.053 -2.044 0 0 0 0 0 0 0 +-16.555 -0.104 -2.033 0 0 0 0 0 0 0 +-16.529 -0.156 -2.03 0 0 0 0 0 0 0 +-16.484 -0.207 -2.024 0 0 0 0 0 0 0 +-16.456 -0.233 -2.02 0 0 0 0 0 0 0 +-16.438 -0.284 -2.018 0 0 0 0 0 0 0 +-16.431 -0.336 -2.017 0 0 0 0 0 0 0 +-16.44 -0.387 -2.018 0 0 0 0 0 0 0 +-16.436 -0.439 -2.018 0 0 0 0 0 0 0 +-16.415 -0.49 -2.016 0 0 0 0 0 0 0 +-16.4 -0.541 -2.014 0 0 0 0 0 0 0 +-16.371 -0.566 -2.01 0 0 0 0 0 0 0 +-16.343 -0.616 -2.006 0 0 0 0 0 0 0 +-16.314 -0.666 -2.003 0 0 0 0 0 0 0 +-16.278 -0.716 -1.998 0 0 0 0 0 0 0 +-16.275 -0.767 -1.998 0 0 0 0 0 0 0 +-16.249 -0.817 -1.995 0 0 0 0 0 0 0 +-16.233 -0.867 -1.993 0 0 0 0 0 0 0 +-16.229 -0.893 -1.993 0 0 0 0 0 0 0 +-16.201 -0.942 -1.989 0 0 0 0 0 0 0 +-16.198 -0.993 -1.989 0 0 0 0 0 0 0 +-16.175 -1.043 -1.987 0 0 0 0 0 0 0 +-16.161 -1.093 -1.985 0 0 0 0 0 0 0 +-16.14 -1.142 -1.983 0 0 0 0 0 0 0 +-16.107 -1.191 -1.979 0 0 0 0 0 0 0 +-16.097 -1.215 -1.978 0 0 0 0 0 0 0 +-16.081 -1.265 -1.976 0 0 0 0 0 0 0 +-16.069 -1.315 -1.975 0 0 0 0 0 0 0 +-17.171 -1.461 -2.125 0 0 0 0 0 0 0 +-16.187 -1.427 -1.992 0 0 0 0 0 0 0 +-16.173 -1.477 -1.991 0 0 0 0 0 0 0 +-16.196 -1.531 -1.995 0 0 0 0 0 0 0 +-17.096 -1.671 -2.117 0 0 0 0 0 0 0 +-17.11 -1.727 -2.12 0 0 0 0 0 0 0 +-17.092 -1.752 -2.118 0 0 0 0 0 0 0 +-17.088 -1.806 -2.118 0 0 0 0 0 0 0 +-17.061 -1.858 -2.115 0 0 0 0 0 0 0 +-17.033 -1.909 -2.112 0 0 0 0 0 0 0 +-17.037 -1.963 -2.114 0 0 0 0 0 0 0 +-17.017 -2.015 -2.112 0 0 0 0 0 0 0 +-16.999 -2.067 -2.11 0 0 0 0 0 0 0 +-16.988 -2.093 -2.109 0 0 0 0 0 0 0 +-16.973 -2.145 -2.108 0 0 0 0 0 0 0 +-16.953 -2.197 -2.106 0 0 0 0 0 0 0 +-16.942 -2.249 -2.106 0 0 0 0 0 0 0 +-16.929 -2.302 -2.105 0 0 0 0 0 0 0 +-16.898 -2.352 -2.102 0 0 0 0 0 0 0 +-16.884 -2.404 -2.101 0 0 0 0 0 0 0 +-16.871 -2.429 -2.099 0 0 0 0 0 0 0 +-16.859 -2.481 -2.099 0 0 0 0 0 0 0 +-16.873 -2.538 -2.102 0 0 0 0 0 0 0 +-16.841 -2.587 -2.099 0 0 0 0 0 0 0 +-16.819 -2.638 -2.097 0 0 0 0 0 0 0 +-16.795 -2.688 -2.095 0 0 0 0 0 0 0 +-16.775 -2.739 -2.093 0 0 0 0 0 0 0 +-16.757 -2.763 -2.091 0 0 0 0 0 0 0 +-16.723 -2.811 -2.088 0 0 0 0 0 0 0 +-16.706 -2.862 -2.087 0 0 0 0 0 0 0 +-16.666 -2.909 -2.082 0 0 0 0 0 0 0 +-16.649 -2.96 -2.081 0 0 0 0 0 0 0 +-16.616 -3.008 -2.078 0 0 0 0 0 0 0 +-16.605 -3.06 -2.078 0 0 0 0 0 0 0 +-16.569 -3.08 -2.074 0 0 0 0 0 0 0 +-16.567 -3.134 -2.075 0 0 0 0 0 0 0 +-16.535 -3.182 -2.072 0 0 0 0 0 0 0 +-16.49 -3.227 -2.067 0 0 0 0 0 0 0 +-16.486 -3.28 -2.068 0 0 0 0 0 0 0 +-16.46 -3.328 -2.066 0 0 0 0 0 0 0 +-16.428 -3.376 -2.063 0 0 0 0 0 0 0 +-16.4 -3.424 -2.06 0 0 0 0 0 0 0 +-16.375 -3.445 -2.057 0 0 0 0 0 0 0 +-16.343 -3.492 -2.055 0 0 0 0 0 0 0 +-16.336 -3.544 -2.055 0 0 0 0 0 0 0 +-16.303 -3.591 -2.052 0 0 0 0 0 0 0 +-16.29 -3.642 -2.052 0 0 0 0 0 0 0 +-16.28 -3.693 -2.052 0 0 0 0 0 0 0 +-16.269 -3.744 -2.052 0 0 0 0 0 0 0 +-16.243 -3.765 -2.049 0 0 0 0 0 0 0 +-16.243 -3.819 -2.051 0 0 0 0 0 0 0 +-16.204 -3.864 -2.047 0 0 0 0 0 0 0 +-16.18 -3.912 -2.046 0 0 0 0 0 0 0 +-16.162 -3.961 -2.045 0 0 0 0 0 0 0 +-16.136 -4.008 -2.043 0 0 0 0 0 0 0 +-16.123 -4.059 -2.043 0 0 0 0 0 0 0 +-16.086 -4.077 -2.039 0 0 0 0 0 0 0 +-16.083 -4.13 -2.04 0 0 0 0 0 0 0 +-16.051 -4.175 -2.037 0 0 0 0 0 0 0 +-16.043 -4.227 -2.038 0 0 0 0 0 0 0 +-16.007 -4.271 -2.035 0 0 0 0 0 0 0 +-15.953 -4.311 -2.029 0 0 0 0 0 0 0 +-15.919 -4.355 -2.026 0 0 0 0 0 0 0 +-15.906 -4.378 -2.026 0 0 0 0 0 0 0 +-15.866 -4.421 -2.022 0 0 0 0 0 0 0 +-15.84 -4.467 -2.02 0 0 0 0 0 0 0 +-15.813 -4.513 -2.018 0 0 0 0 0 0 0 +-15.762 -4.552 -2.013 0 0 0 0 0 0 0 +-15.754 -4.604 -2.014 0 0 0 0 0 0 0 +-15.712 -4.645 -2.01 0 0 0 0 0 0 0 +-15.684 -4.664 -2.008 0 0 0 0 0 0 0 +-15.666 -4.712 -2.007 0 0 0 0 0 0 0 +-15.634 -4.756 -2.005 0 0 0 0 0 0 0 +-15.607 -4.801 -2.003 0 0 0 0 0 0 0 +-15.59 -4.85 -2.003 0 0 0 0 0 0 0 +-15.575 -4.899 -2.003 0 0 0 0 0 0 0 +-15.537 -4.94 -1.999 0 0 0 0 0 0 0 +-15.535 -4.966 -2 0 0 0 0 0 0 0 +-15.513 -5.013 -1.999 0 0 0 0 0 0 0 +-15.494 -5.061 -1.999 0 0 0 0 0 0 0 +-15.472 -5.108 -1.998 0 0 0 0 0 0 0 +-15.456 -5.156 -1.998 0 0 0 0 0 0 0 +-15.427 -5.2 -1.996 0 0 0 0 0 0 0 +-15.399 -5.245 -1.995 0 0 0 0 0 0 0 +-15.378 -5.265 -1.993 0 0 0 0 0 0 0 +-15.361 -5.313 -1.993 0 0 0 0 0 0 0 +-15.346 -5.362 -1.993 0 0 0 0 0 0 0 +-15.322 -5.407 -1.992 0 0 0 0 0 0 0 +-15.307 -5.456 -1.992 0 0 0 0 0 0 0 +-15.289 -5.504 -1.992 0 0 0 0 0 0 0 +-15.266 -5.55 -1.991 0 0 0 0 0 0 0 +-15.243 -5.596 -1.991 0 0 0 0 0 0 0 +-15.244 -5.623 -1.992 0 0 0 0 0 0 0 +-15.232 -5.673 -1.993 0 0 0 0 0 0 0 +-15.204 -5.718 -1.991 0 0 0 0 0 0 0 +-15.194 -5.768 -1.993 0 0 0 0 0 0 0 +-15.189 -5.821 -1.994 0 0 0 0 0 0 0 +-15.167 -5.867 -1.994 0 0 0 0 0 0 0 +-15.155 -5.918 -1.995 0 0 0 0 0 0 0 +-15.144 -5.941 -1.995 0 0 0 0 0 0 0 +-15.131 -5.99 -1.995 0 0 0 0 0 0 0 +-15.116 -6.039 -1.996 0 0 0 0 0 0 0 +-15.097 -6.087 -1.996 0 0 0 0 0 0 0 +-15.09 -6.14 -1.998 0 0 0 0 0 0 0 +-15.069 -6.186 -1.998 0 0 0 0 0 0 0 +-15.052 -6.234 -1.998 0 0 0 0 0 0 0 +-15.053 -6.262 -1.999 0 0 0 0 0 0 0 +-15.04 -6.313 -2.001 0 0 0 0 0 0 0 +-15.029 -6.364 -2.002 0 0 0 0 0 0 0 +-15.017 -6.414 -2.003 0 0 0 0 0 0 0 +-14.993 -6.46 -2.002 0 0 0 0 0 0 0 +-14.972 -6.507 -2.002 0 0 0 0 0 0 0 +-14.959 -6.557 -2.004 0 0 0 0 0 0 0 +-14.951 -6.581 -2.004 0 0 0 0 0 0 0 +-14.937 -6.632 -2.005 0 0 0 0 0 0 0 +-14.927 -6.683 -2.006 0 0 0 0 0 0 0 +-14.913 -6.733 -2.008 0 0 0 0 0 0 0 +-14.885 -6.777 -2.006 0 0 0 0 0 0 0 +-14.869 -6.826 -2.007 0 0 0 0 0 0 0 +-14.86 -6.879 -2.009 0 0 0 0 0 0 0 +-14.865 -6.91 -2.012 0 0 0 0 0 0 0 +-14.84 -6.955 -2.011 0 0 0 0 0 0 0 +-14.832 -7.008 -2.013 0 0 0 0 0 0 0 +-14.792 -7.046 -2.01 0 0 0 0 0 0 0 +-14.781 -7.098 -2.012 0 0 0 0 0 0 0 +-14.76 -7.145 -2.012 0 0 0 0 0 0 0 +-14.734 -7.189 -2.012 0 0 0 0 0 0 0 +-14.719 -7.211 -2.011 0 0 0 0 0 0 0 +-14.704 -7.261 -2.012 0 0 0 0 0 0 0 +-14.686 -7.309 -2.013 0 0 0 0 0 0 0 +-14.668 -7.358 -2.014 0 0 0 0 0 0 0 +-14.633 -7.398 -2.012 0 0 0 0 0 0 0 +-14.574 -7.426 -2.007 0 0 0 0 0 0 0 +-14.537 -7.464 -2.005 0 0 0 0 0 0 0 +-14.609 -7.531 -2.017 0 0 0 0 0 0 0 +-14.6 -7.584 -2.02 0 0 0 0 0 0 0 +-14.59 -7.637 -2.022 0 0 0 0 0 0 0 +-14.578 -7.689 -2.024 0 0 0 0 0 0 0 +-14.571 -7.745 -2.026 0 0 0 0 0 0 0 +-14.561 -7.798 -2.028 0 0 0 0 0 0 0 +-14.536 -7.844 -2.028 0 0 0 0 0 0 0 +-14.538 -7.874 -2.03 0 0 0 0 0 0 0 +-14.538 -7.933 -2.034 0 0 0 0 0 0 0 +-14.509 -7.977 -2.034 0 0 0 0 0 0 0 +-14.5 -8.031 -2.036 0 0 0 0 0 0 0 +-14.464 -8.071 -2.035 0 0 0 0 0 0 0 +-14.431 -8.112 -2.033 0 0 0 0 0 0 0 +-14.423 -8.167 -2.036 0 0 0 0 0 0 0 +-14.417 -8.194 -2.037 0 0 0 0 0 0 0 +-14.407 -8.248 -2.04 0 0 0 0 0 0 0 +-14.376 -8.29 -2.039 0 0 0 0 0 0 0 +-14.362 -8.342 -2.041 0 0 0 0 0 0 0 +-14.347 -8.394 -2.043 0 0 0 0 0 0 0 +-14.324 -8.441 -2.043 0 0 0 0 0 0 0 +-14.298 -8.486 -2.043 0 0 0 0 0 0 0 +-14.273 -8.532 -2.043 0 0 0 0 0 0 0 +-14.252 -8.55 -2.042 0 0 0 0 0 0 0 +-14.227 -8.596 -2.043 0 0 0 0 0 0 0 +-14.209 -8.646 -2.044 0 0 0 0 0 0 0 +-14.188 -8.695 -2.045 0 0 0 0 0 0 0 +-14.166 -8.742 -2.046 0 0 0 0 0 0 0 +-14.145 -8.791 -2.047 0 0 0 0 0 0 0 +-14.131 -8.844 -2.049 0 0 0 0 0 0 0 +-14.123 -8.87 -2.05 0 0 0 0 0 0 0 +-14.091 -8.912 -2.049 0 0 0 0 0 0 0 +-14.064 -8.957 -2.049 0 0 0 0 0 0 0 +-14.046 -9.007 -2.051 0 0 0 0 0 0 0 +-14.034 -9.062 -2.054 0 0 0 0 0 0 0 +-14.012 -9.111 -2.055 0 0 0 0 0 0 0 +-13.982 -9.154 -2.055 0 0 0 0 0 0 0 +-13.949 -9.163 -2.052 0 0 0 0 0 0 0 +-13.939 -9.219 -2.055 0 0 0 0 0 0 0 +-13.938 -9.282 -2.059 0 0 0 0 0 0 0 +-13.917 -9.331 -2.06 0 0 0 0 0 0 0 +-13.889 -9.376 -2.061 0 0 0 0 0 0 0 +-13.897 -9.445 -2.067 0 0 0 0 0 0 0 +-10.686 -7.305 -1.547 0 0 0 0 0 0 0 +-10.871 -7.507 -1.583 0 0 0 0 0 0 0 +-10.839 -7.536 -1.581 0 0 0 0 0 0 0 +-10.636 -7.443 -1.552 0 0 0 0 0 0 0 +-10.567 -7.445 -1.544 0 0 0 0 0 0 0 +-10.51 -7.454 -1.539 0 0 0 0 0 0 0 +-10.481 -7.483 -1.538 0 0 0 0 0 0 0 +-10.463 -7.495 -1.537 0 0 0 0 0 0 0 +-10.43 -7.521 -1.535 0 0 0 0 0 0 0 +-10.403 -7.551 -1.535 0 0 0 0 0 0 0 +-10.413 -7.608 -1.54 0 0 0 0 0 0 0 +-10.492 -7.718 -1.557 0 0 0 0 0 0 0 +-10.444 -7.733 -1.553 0 0 0 0 0 0 0 +-13.584 -10.134 -2.086 0 0 0 0 0 0 0 +-13.557 -10.147 -2.084 0 0 0 0 0 0 0 +-13.52 -10.186 -2.084 0 0 0 0 0 0 0 +-13.479 -10.221 -2.082 0 0 0 0 0 0 0 +-13.444 -10.261 -2.082 0 0 0 0 0 0 0 +-13.399 -10.293 -2.079 0 0 0 0 0 0 0 +-13.359 -10.329 -2.078 0 0 0 0 0 0 0 +-13.334 -10.377 -2.079 0 0 0 0 0 0 0 +-13.31 -10.392 -2.078 0 0 0 0 0 0 0 +-13.294 -10.447 -2.081 0 0 0 0 0 0 0 +-13.23 -10.464 -2.076 0 0 0 0 0 0 0 +-13.205 -10.512 -2.077 0 0 0 0 0 0 0 +-13.178 -10.558 -2.078 0 0 0 0 0 0 0 +-13.179 -10.627 -2.084 0 0 0 0 0 0 0 +-13.168 -10.687 -2.088 0 0 0 0 0 0 0 +-13.155 -10.745 -2.091 0 0 0 0 0 0 0 +-13.182 -10.802 -2.099 0 0 0 0 0 0 0 +-13.153 -10.847 -2.1 0 0 0 0 0 0 0 +-13.167 -10.929 -2.109 0 0 0 0 0 0 0 +-13.166 -10.998 -2.114 0 0 0 0 0 0 0 +-13.17 -11.072 -2.121 0 0 0 0 0 0 0 +-13.147 -11.123 -2.123 0 0 0 0 0 0 0 +-13.122 -11.174 -2.125 0 0 0 0 0 0 0 +-13.127 -11.214 -2.129 0 0 0 0 0 0 0 +-13.07 -11.235 -2.125 0 0 0 0 0 0 0 +-13.018 -11.262 -2.122 0 0 0 0 0 0 0 +-12.975 -11.296 -2.121 0 0 0 0 0 0 0 +-12.911 -11.312 -2.116 0 0 0 0 0 0 0 +-12.847 -11.328 -2.111 0 0 0 0 0 0 0 +-12.785 -11.344 -2.106 0 0 0 0 0 0 0 +-12.742 -11.342 -2.101 0 0 0 0 0 0 0 +-12.693 -11.37 -2.099 0 0 0 0 0 0 0 +-12.64 -11.394 -2.096 0 0 0 0 0 0 0 +-12.583 -11.415 -2.092 0 0 0 0 0 0 0 +-12.531 -11.44 -2.089 0 0 0 0 0 0 0 +-12.488 -11.472 -2.088 0 0 0 0 0 0 0 +-12.433 -11.494 -2.084 0 0 0 0 0 0 0 +-12.403 -11.503 -2.082 0 0 0 0 0 0 0 +-12.341 -11.517 -2.077 0 0 0 0 0 0 0 +-12.293 -11.545 -2.075 0 0 0 0 0 0 0 +-12.24 -11.567 -2.072 0 0 0 0 0 0 0 +-12.193 -11.596 -2.07 0 0 0 0 0 0 0 +-12.132 -11.611 -2.066 0 0 0 0 0 0 0 +-12.087 -11.641 -2.064 0 0 0 0 0 0 0 +-12.056 -11.647 -2.061 0 0 0 0 0 0 0 +-11.992 -11.659 -2.056 0 0 0 0 0 0 0 +-11.932 -11.673 -2.052 0 0 0 0 0 0 0 +-11.882 -11.698 -2.049 0 0 0 0 0 0 0 +-11.812 -11.701 -2.043 0 0 0 0 0 0 0 +-11.758 -11.722 -2.04 0 0 0 0 0 0 0 +-11.725 -11.763 -2.041 0 0 0 0 0 0 0 +-11.68 -11.754 -2.036 0 0 0 0 0 0 0 +-11.627 -11.774 -2.032 0 0 0 0 0 0 0 +-11.58 -11.801 -2.03 0 0 0 0 0 0 0 +-11.528 -11.821 -2.028 0 0 0 0 0 0 0 +-11.477 -11.843 -2.025 0 0 0 0 0 0 0 +-11.431 -11.871 -2.023 0 0 0 0 0 0 0 +-11.375 -11.886 -2.02 0 0 0 0 0 0 0 +-11.347 -11.894 -2.018 0 0 0 0 0 0 0 +-11.298 -11.918 -2.016 0 0 0 0 0 0 0 +-11.243 -11.935 -2.012 0 0 0 0 0 0 0 +-11.197 -11.961 -2.01 0 0 0 0 0 0 0 +-11.148 -11.983 -2.008 0 0 0 0 0 0 0 +-11.084 -11.991 -2.003 0 0 0 0 0 0 0 +-11.04 -12.018 -2.002 0 0 0 0 0 0 0 +-11 -12.05 -2.001 0 0 0 0 0 0 0 +-10.957 -12.041 -1.996 0 0 0 0 0 0 0 +-10.907 -12.062 -1.994 0 0 0 0 0 0 0 +-10.869 -12.096 -1.994 0 0 0 0 0 0 0 +-10.808 -12.105 -1.989 0 0 0 0 0 0 0 +-10.764 -12.131 -1.988 0 0 0 0 0 0 0 +-10.718 -12.156 -1.986 0 0 0 0 0 0 0 +-10.67 -12.179 -1.985 0 0 0 0 0 0 0 +-10.637 -12.18 -1.982 0 0 0 0 0 0 0 +-10.602 -12.218 -1.982 0 0 0 0 0 0 0 +-10.542 -12.225 -1.978 0 0 0 0 0 0 0 +-10.506 -12.261 -1.978 0 0 0 0 0 0 0 +-10.443 -12.266 -1.973 0 0 0 0 0 0 0 +-10.393 -12.285 -1.971 0 0 0 0 0 0 0 +-10.348 -12.31 -1.97 0 0 0 0 0 0 0 +-10.321 -12.317 -1.968 0 0 0 0 0 0 0 +-10.272 -12.337 -1.966 0 0 0 0 0 0 0 +-10.221 -12.354 -1.963 0 0 0 0 0 0 0 +-10.166 -12.366 -1.96 0 0 0 0 0 0 0 +-10.127 -12.398 -1.96 0 0 0 0 0 0 0 +-10.063 -12.399 -1.954 0 0 0 0 0 0 0 +-10.023 -12.429 -1.954 0 0 0 0 0 0 0 +-9.978 -12.414 -1.949 0 0 0 0 0 0 0 +-9.933 -12.437 -1.947 0 0 0 0 0 0 0 +-9.882 -12.453 -1.945 0 0 0 0 0 0 0 +-9.83 -12.468 -1.942 0 0 0 0 0 0 0 +-9.779 -12.483 -1.939 0 0 0 0 0 0 0 +-9.733 -12.506 -1.938 0 0 0 0 0 0 0 +-9.692 -12.534 -1.937 0 0 0 0 0 0 0 +-9.671 -12.547 -1.937 0 0 0 0 0 0 0 +-9.616 -12.557 -1.934 0 0 0 0 0 0 0 +-9.576 -12.587 -1.934 0 0 0 0 0 0 0 +-9.519 -12.593 -1.93 0 0 0 0 0 0 0 +-9.484 -12.63 -1.931 0 0 0 0 0 0 0 +-9.428 -12.637 -1.927 0 0 0 0 0 0 0 +-9.387 -12.665 -1.927 0 0 0 0 0 0 0 +-9.357 -12.667 -1.925 0 0 0 0 0 0 0 +-9.311 -12.687 -1.923 0 0 0 0 0 0 0 +-9.273 -12.719 -1.924 0 0 0 0 0 0 0 +-9.225 -12.737 -1.922 0 0 0 0 0 0 0 +-9.18 -12.759 -1.921 0 0 0 0 0 0 0 +-9.131 -12.775 -1.919 0 0 0 0 0 0 0 +-9.094 -12.809 -1.919 0 0 0 0 0 0 0 +-9.061 -12.805 -1.916 0 0 0 0 0 0 0 +-9.022 -12.835 -1.917 0 0 0 0 0 0 0 +-8.981 -12.862 -1.916 0 0 0 0 0 0 0 +-8.932 -12.879 -1.915 0 0 0 0 0 0 0 +-8.886 -12.898 -1.913 0 0 0 0 0 0 0 +-8.838 -12.915 -1.911 0 0 0 0 0 0 0 +-8.795 -12.939 -1.911 0 0 0 0 0 0 0 +-8.784 -12.966 -1.913 0 0 0 0 0 0 0 +-8.745 -12.997 -1.913 0 0 0 0 0 0 0 +-8.703 -13.023 -1.913 0 0 0 0 0 0 0 +-8.654 -13.038 -1.911 0 0 0 0 0 0 0 +-8.616 -13.069 -1.912 0 0 0 0 0 0 0 +-8.568 -13.086 -1.91 0 0 0 0 0 0 0 +-8.528 -13.114 -1.911 0 0 0 0 0 0 0 +-8.511 -13.133 -1.911 0 0 0 0 0 0 0 +-8.467 -13.156 -1.911 0 0 0 0 0 0 0 +-8.432 -13.193 -1.912 0 0 0 0 0 0 0 +-8.384 -13.209 -1.911 0 0 0 0 0 0 0 +-8.349 -13.245 -1.912 0 0 0 0 0 0 0 +-8.296 -13.253 -1.909 0 0 0 0 0 0 0 +-8.253 -13.277 -1.909 0 0 0 0 0 0 0 +-8.23 -13.287 -1.909 0 0 0 0 0 0 0 +-8.186 -13.309 -1.908 0 0 0 0 0 0 0 +-8.139 -13.327 -1.907 0 0 0 0 0 0 0 +-8.095 -13.349 -1.906 0 0 0 0 0 0 0 +-8.054 -13.376 -1.906 0 0 0 0 0 0 0 +-8.013 -13.403 -1.907 0 0 0 0 0 0 0 +-7.982 -13.447 -1.91 0 0 0 0 0 0 0 +-7.978 -13.488 -1.914 0 0 0 0 0 0 0 +-7.906 -13.462 -1.906 0 0 0 0 0 0 0 +-7.862 -13.483 -1.906 0 0 0 0 0 0 0 +-7.836 -13.537 -1.91 0 0 0 0 0 0 0 +-7.737 -13.464 -1.895 0 0 0 0 0 0 0 +-7.695 -13.488 -1.895 0 0 0 0 0 0 0 +-7.643 -13.495 -1.892 0 0 0 0 0 0 0 +-7.606 -13.479 -1.888 0 0 0 0 0 0 0 +-7.561 -13.498 -1.887 0 0 0 0 0 0 0 +-7.512 -13.509 -1.885 0 0 0 0 0 0 0 +-7.467 -13.529 -1.885 0 0 0 0 0 0 0 +-7.423 -13.549 -1.884 0 0 0 0 0 0 0 +-7.378 -13.569 -1.884 0 0 0 0 0 0 0 +-7.333 -13.587 -1.883 0 0 0 0 0 0 0 +-7.286 -13.603 -1.882 0 0 0 0 0 0 0 +-7.271 -13.625 -1.884 0 0 0 0 0 0 0 +-7.226 -13.644 -1.883 0 0 0 0 0 0 0 +-7.187 -13.674 -1.884 0 0 0 0 0 0 0 +-7.139 -13.687 -1.883 0 0 0 0 0 0 0 +-7.098 -13.713 -1.883 0 0 0 0 0 0 0 +-7.054 -13.734 -1.883 0 0 0 0 0 0 0 +-7.006 -13.747 -1.882 0 0 0 0 0 0 0 +-6.985 -13.758 -1.882 0 0 0 0 0 0 0 +-6.939 -13.774 -1.881 0 0 0 0 0 0 0 +-6.902 -13.809 -1.883 0 0 0 0 0 0 0 +-6.851 -13.816 -1.881 0 0 0 0 0 0 0 +-6.811 -13.845 -1.882 0 0 0 0 0 0 0 +-6.764 -13.859 -1.881 0 0 0 0 0 0 0 +-6.731 -13.901 -1.884 0 0 0 0 0 0 0 +-6.701 -13.894 -1.881 0 0 0 0 0 0 0 +-6.652 -13.904 -1.88 0 0 0 0 0 0 0 +-6.616 -13.943 -1.882 0 0 0 0 0 0 0 +-6.581 -13.982 -1.885 0 0 0 0 0 0 0 +-6.527 -13.981 -1.882 0 0 0 0 0 0 0 +-6.516 -14.073 -1.892 0 0 0 0 0 0 0 +-6.459 -14.065 -1.888 0 0 0 0 0 0 0 +-6.404 -14.003 -1.877 0 0 0 0 0 0 0 +-6.344 -13.988 -1.872 0 0 0 0 0 0 0 +-6.296 -13.997 -1.871 0 0 0 0 0 0 0 +-6.254 -14.023 -1.871 0 0 0 0 0 0 0 +-6.212 -14.048 -1.872 0 0 0 0 0 0 0 +-6.161 -14.051 -1.87 0 0 0 0 0 0 0 +-6.114 -14.065 -1.869 0 0 0 0 0 0 0 +-6.099 -14.089 -1.871 0 0 0 0 0 0 0 +-6.044 -14.084 -1.868 0 0 0 0 0 0 0 +-5.995 -14.092 -1.866 0 0 0 0 0 0 0 +-5.949 -14.105 -1.865 0 0 0 0 0 0 0 +-5.897 -14.106 -1.863 0 0 0 0 0 0 0 +-5.849 -14.115 -1.861 0 0 0 0 0 0 0 +-5.8 -14.124 -1.86 0 0 0 0 0 0 0 +-5.771 -14.115 -1.857 0 0 0 0 0 0 0 +-5.732 -14.146 -1.859 0 0 0 0 0 0 0 +-5.695 -14.184 -1.862 0 0 0 0 0 0 0 +-5.646 -14.189 -1.86 0 0 0 0 0 0 0 +-5.632 -14.286 -1.872 0 0 0 0 0 0 0 +-5.548 -14.202 -1.857 0 0 0 0 0 0 0 +-5.496 -14.201 -1.854 0 0 0 0 0 0 0 +-5.48 -14.226 -1.857 0 0 0 0 0 0 0 +-5.429 -14.226 -1.854 0 0 0 0 0 0 0 +-5.4 -14.284 -1.86 0 0 0 0 0 0 0 +-5.356 -14.305 -1.861 0 0 0 0 0 0 0 +-5.298 -14.286 -1.856 0 0 0 0 0 0 0 +-5.246 -14.284 -1.853 0 0 0 0 0 0 0 +-5.199 -14.295 -1.852 0 0 0 0 0 0 0 +-5.176 -14.3 -1.852 0 0 0 0 0 0 0 +-5.13 -14.314 -1.851 0 0 0 0 0 0 0 +-5.082 -14.322 -1.85 0 0 0 0 0 0 0 +-5.047 -14.364 -1.854 0 0 0 0 0 0 0 +-5.014 -14.416 -1.859 0 0 0 0 0 0 0 +-4.973 -14.447 -1.861 0 0 0 0 0 0 0 +-4.943 -14.507 -1.868 0 0 0 0 0 0 0 +-4.912 -14.489 -1.864 0 0 0 0 0 0 0 +-4.887 -14.566 -1.873 0 0 0 0 0 0 0 +-4.809 -14.485 -1.859 0 0 0 0 0 0 0 +-4.768 -14.512 -1.861 0 0 0 0 0 0 0 +-4.712 -14.496 -1.857 0 0 0 0 0 0 0 +-4.661 -14.494 -1.854 0 0 0 0 0 0 0 +-4.608 -14.484 -1.851 0 0 0 0 0 0 0 +-4.584 -14.488 -1.85 0 0 0 0 0 0 0 +-4.538 -14.502 -1.85 0 0 0 0 0 0 0 +-4.49 -14.507 -1.849 0 0 0 0 0 0 0 +-4.444 -14.519 -1.849 0 0 0 0 0 0 0 +-4.397 -14.531 -1.848 0 0 0 0 0 0 0 +-4.348 -14.531 -1.846 0 0 0 0 0 0 0 +-4.304 -14.55 -1.847 0 0 0 0 0 0 0 +-4.279 -14.552 -1.846 0 0 0 0 0 0 0 +-4.232 -14.559 -1.846 0 0 0 0 0 0 0 +-4.189 -14.584 -1.847 0 0 0 0 0 0 0 +-4.138 -14.578 -1.844 0 0 0 0 0 0 0 +-4.095 -14.598 -1.846 0 0 0 0 0 0 0 +-4.043 -14.592 -1.843 0 0 0 0 0 0 0 +-4.001 -14.618 -1.845 0 0 0 0 0 0 0 +-3.975 -14.613 -1.843 0 0 0 0 0 0 0 +-3.931 -14.631 -1.844 0 0 0 0 0 0 0 +-3.885 -14.643 -1.844 0 0 0 0 0 0 0 +-3.839 -14.657 -1.844 0 0 0 0 0 0 0 +-3.793 -14.667 -1.844 0 0 0 0 0 0 0 +-3.748 -14.683 -1.844 0 0 0 0 0 0 0 +-3.704 -14.704 -1.846 0 0 0 0 0 0 0 +-3.658 -14.718 -1.846 0 0 0 0 0 0 0 +-3.636 -14.729 -1.847 0 0 0 0 0 0 0 +-3.599 -14.779 -1.852 0 0 0 0 0 0 0 +-3.558 -14.81 -1.855 0 0 0 0 0 0 0 +-3.515 -14.838 -1.857 0 0 0 0 0 0 0 +-3.349 -14.755 -1.841 0 0 0 0 0 0 0 +-3.323 -14.748 -1.84 0 0 0 0 0 0 0 +-3.26 -14.683 -1.829 0 0 0 0 0 0 0 +-3.21 -14.676 -1.827 0 0 0 0 0 0 0 +-3.157 -14.651 -1.822 0 0 0 0 0 0 0 +-3.107 -14.642 -1.819 0 0 0 0 0 0 0 +-3.05 -14.601 -1.812 0 0 0 0 0 0 0 +-3.022 -14.58 -1.809 0 0 0 0 0 0 0 +-2.973 -14.572 -1.807 0 0 0 0 0 0 0 +-2.921 -14.552 -1.803 0 0 0 0 0 0 0 +-2.874 -14.556 -1.802 0 0 0 0 0 0 0 +-2.831 -14.58 -1.804 0 0 0 0 0 0 0 +-2.786 -14.589 -1.804 0 0 0 0 0 0 0 +-2.74 -14.602 -1.804 0 0 0 0 0 0 0 +-2.693 -14.6 -1.803 0 0 0 0 0 0 0 +-2.67 -14.605 -1.803 0 0 0 0 0 0 0 +-2.623 -14.607 -1.802 0 0 0 0 0 0 0 +-2.573 -14.592 -1.799 0 0 0 0 0 0 0 +-2.483 -14.615 -1.8 0 0 0 0 0 0 0 +-2.434 -14.606 -1.798 0 0 0 0 0 0 0 +-2.39 -14.627 -1.8 0 0 0 0 0 0 0 +-2.37 -14.646 -1.802 0 0 0 0 0 0 0 +-2.32 -14.634 -1.799 0 0 0 0 0 0 0 +-2.275 -14.645 -1.8 0 0 0 0 0 0 0 +-2.228 -14.648 -1.799 0 0 0 0 0 0 0 +-2.184 -14.665 -1.8 0 0 0 0 0 0 0 +-2.137 -14.67 -1.8 0 0 0 0 0 0 0 +-2.092 -14.68 -1.801 0 0 0 0 0 0 0 +-2.068 -14.678 -1.8 0 0 0 0 0 0 0 +-2.021 -14.678 -1.799 0 0 0 0 0 0 0 +-1.977 -14.698 -1.801 0 0 0 0 0 0 0 +-1.933 -14.726 -1.804 0 0 0 0 0 0 0 +-1.887 -14.734 -1.804 0 0 0 0 0 0 0 +-1.845 -14.769 -1.808 0 0 0 0 0 0 0 +-1.801 -14.799 -1.811 0 0 0 0 0 0 0 +-1.78 -14.815 -1.813 0 0 0 0 0 0 0 +-1.735 -14.837 -1.815 0 0 0 0 0 0 0 +-1.69 -14.862 -1.818 0 0 0 0 0 0 0 +-1.644 -14.873 -1.819 0 0 0 0 0 0 0 +-1.598 -14.882 -1.819 0 0 0 0 0 0 0 +-1.553 -14.899 -1.821 0 0 0 0 0 0 0 +-1.507 -14.921 -1.823 0 0 0 0 0 0 0 +-1.486 -14.943 -1.826 0 0 0 0 0 0 0 +-1.44 -14.956 -1.827 0 0 0 0 0 0 0 +-1.394 -14.972 -1.829 0 0 0 0 0 0 0 +-1.346 -14.963 -1.827 0 0 0 0 0 0 0 +-1.3 -14.985 -1.829 0 0 0 0 0 0 0 +-1.252 -14.977 -1.828 0 0 0 0 0 0 0 +-1.203 -14.953 -1.824 0 0 0 0 0 0 0 +-1.179 -14.951 -1.823 0 0 0 0 0 0 0 +-1.131 -14.941 -1.822 0 0 0 0 0 0 0 +-1.082 -14.914 -1.818 0 0 0 0 0 0 0 +-1.035 -14.91 -1.816 0 0 0 0 0 0 0 +-0.988 -14.915 -1.817 0 0 0 0 0 0 0 +-0.939 -14.888 -1.813 0 0 0 0 0 0 0 +-0.892 -14.893 -1.813 0 0 0 0 0 0 0 +-0.869 -14.885 -1.812 0 0 0 0 0 0 0 +-0.821 -14.881 -1.811 0 0 0 0 0 0 0 +-0.776 -14.902 -1.813 0 0 0 0 0 0 0 +-0.729 -14.918 -1.815 0 0 0 0 0 0 0 +-0.683 -14.938 -1.818 0 0 0 0 0 0 0 +-0.638 -14.968 -1.821 0 0 0 0 0 0 0 +-0.592 -15.005 -1.826 0 0 0 0 0 0 0 +-0.569 -15.018 -1.828 0 0 0 0 0 0 0 +-0.522 -15.034 -1.83 0 0 0 0 0 0 0 +-0.476 -15.063 -1.833 0 0 0 0 0 0 0 +-0.429 -15.084 -1.836 0 0 0 0 0 0 0 +-0.382 -15.094 -1.837 0 0 0 0 0 0 0 +-0.335 -15.132 -1.842 0 0 0 0 0 0 0 +-0.287 -15.137 -1.843 0 0 0 0 0 0 0 +-0.264 -15.163 -1.846 0 0 0 0 0 0 0 +-0.217 -15.196 -1.85 0 0 0 0 0 0 0 +-0.169 -15.2 -1.851 0 0 0 0 0 0 0 +-0.121 -15.209 -1.852 0 0 0 0 0 0 0 +-0.074 -15.225 -1.854 0 0 0 0 0 0 0 +-0.026 -15.229 -1.855 0 0 0 0 0 0 0 +0.022 -15.253 -1.858 0 0 0 0 0 0 0 +0.046 -15.241 -1.856 0 0 0 0 0 0 0 +0.094 -15.28 -1.862 0 0 0 0 0 0 0 +0.142 -15.286 -1.862 0 0 0 0 0 0 0 +0.19 -15.287 -1.863 0 0 0 0 0 0 0 +0.238 -15.283 -1.862 0 0 0 0 0 0 0 +0.286 -15.28 -1.862 0 0 0 0 0 0 0 +0.334 -15.259 -1.859 0 0 0 0 0 0 0 +0.357 -15.243 -1.857 0 0 0 0 0 0 0 +0.405 -15.24 -1.857 0 0 0 0 0 0 0 +0.453 -15.234 -1.856 0 0 0 0 0 0 0 +0.5 -15.225 -1.855 0 0 0 0 0 0 0 +0.549 -15.255 -1.859 0 0 0 0 0 0 0 +0.599 -15.303 -1.866 0 0 0 0 0 0 0 +0.649 -15.326 -1.87 0 0 0 0 0 0 0 +0.674 -15.357 -1.874 0 0 0 0 0 0 0 +0.724 -15.379 -1.877 0 0 0 0 0 0 0 +0.771 -15.362 -1.875 0 0 0 0 0 0 0 +0.819 -15.356 -1.875 0 0 0 0 0 0 0 +0.868 -15.365 -1.876 0 0 0 0 0 0 0 +0.916 -15.36 -1.876 0 0 0 0 0 0 0 +0.968 -15.409 -1.883 0 0 0 0 0 0 0 +0.993 -15.425 -1.885 0 0 0 0 0 0 0 +1.042 -15.42 -1.885 0 0 0 0 0 0 0 +1.093 -15.464 -1.892 0 0 0 0 0 0 0 +1.141 -15.451 -1.89 0 0 0 0 0 0 0 +1.187 -15.415 -1.886 0 0 0 0 0 0 0 +1.227 -15.301 -1.871 0 0 0 0 0 0 0 +1.269 -15.226 -1.861 0 0 0 0 0 0 0 +1.278 -15.06 -1.839 0 0 0 0 0 0 0 +1.314 -14.928 -1.822 0 0 0 0 0 0 0 +1.351 -14.811 -1.807 0 0 0 0 0 0 0 +1.383 -14.661 -1.787 0 0 0 0 0 0 0 +1.42 -14.562 -1.774 0 0 0 0 0 0 0 +1.46 -14.506 -1.767 0 0 0 0 0 0 0 +1.506 -14.503 -1.767 0 0 0 0 0 0 0 +1.55 -14.488 -1.766 0 0 0 0 0 0 0 +1.573 -14.484 -1.766 0 0 0 0 0 0 0 +1.618 -14.473 -1.765 0 0 0 0 0 0 0 +1.663 -14.468 -1.765 0 0 0 0 0 0 0 +1.708 -14.459 -1.764 0 0 0 0 0 0 0 +1.755 -14.463 -1.766 0 0 0 0 0 0 0 +1.8 -14.452 -1.765 0 0 0 0 0 0 0 +1.846 -14.454 -1.766 0 0 0 0 0 0 0 +1.866 -14.429 -1.763 0 0 0 0 0 0 0 +1.913 -14.437 -1.765 0 0 0 0 0 0 0 +1.955 -14.403 -1.761 0 0 0 0 0 0 0 +2 -14.397 -1.761 0 0 0 0 0 0 0 +2.045 -14.391 -1.761 0 0 0 0 0 0 0 +2.09 -14.384 -1.761 0 0 0 0 0 0 0 +2.111 -14.371 -1.76 0 0 0 0 0 0 0 +2.156 -14.361 -1.759 0 0 0 0 0 0 0 +2.201 -14.354 -1.759 0 0 0 0 0 0 0 +2.245 -14.341 -1.758 0 0 0 0 0 0 0 +2.289 -14.326 -1.757 0 0 0 0 0 0 0 +2.331 -14.303 -1.755 0 0 0 0 0 0 0 +2.375 -14.286 -1.754 0 0 0 0 0 0 0 +2.419 -14.272 -1.753 0 0 0 0 0 0 0 +2.44 -14.265 -1.753 0 0 0 0 0 0 0 +2.483 -14.243 -1.751 0 0 0 0 0 0 0 +2.526 -14.23 -1.75 0 0 0 0 0 0 0 +2.567 -14.198 -1.747 0 0 0 0 0 0 0 +2.61 -14.182 -1.746 0 0 0 0 0 0 0 +2.651 -14.157 -1.743 0 0 0 0 0 0 0 +2.691 -14.127 -1.74 0 0 0 0 0 0 0 +2.712 -14.115 -1.739 0 0 0 0 0 0 0 +2.751 -14.081 -1.736 0 0 0 0 0 0 0 +2.794 -14.064 -1.735 0 0 0 0 0 0 0 +2.834 -14.032 -1.731 0 0 0 0 0 0 0 +1.348 -6.636 -0.714 0 0 0 0 0 0 0 +1.352 -6.554 -0.704 0 0 0 0 0 0 0 +1.349 -6.438 -0.688 0 0 0 0 0 0 0 +1.359 -6.434 -0.688 0 0 0 0 0 0 0 +1.376 -6.418 -0.686 0 0 0 0 0 0 0 +1.397 -6.417 -0.687 0 0 0 0 0 0 0 +1.418 -6.417 -0.687 0 0 0 0 0 0 0 +1.442 -6.43 -0.69 0 0 0 0 0 0 0 +1.467 -6.442 -0.692 0 0 0 0 0 0 0 +1.485 -6.43 -0.691 0 0 0 0 0 0 0 +1.495 -6.426 -0.691 0 0 0 0 0 0 0 +1.522 -6.45 -0.695 0 0 0 0 0 0 0 +1.546 -6.462 -0.697 0 0 0 0 0 0 0 +1.577 -6.498 -0.703 0 0 0 0 0 0 0 +1.601 -6.51 -0.705 0 0 0 0 0 0 0 +1.631 -6.544 -0.711 0 0 0 0 0 0 0 +1.649 -6.525 -0.709 0 0 0 0 0 0 0 +3.511 -13.688 -1.707 0 0 0 0 0 0 0 +3.55 -13.662 -1.704 0 0 0 0 0 0 0 +3.594 -13.654 -1.705 0 0 0 0 0 0 0 +3.631 -13.624 -1.702 0 0 0 0 0 0 0 +3.671 -13.601 -1.701 0 0 0 0 0 0 0 +3.714 -13.591 -1.701 0 0 0 0 0 0 0 +3.752 -13.56 -1.698 0 0 0 0 0 0 0 +3.772 -13.551 -1.698 0 0 0 0 0 0 0 +3.81 -13.523 -1.696 0 0 0 0 0 0 0 +3.848 -13.496 -1.694 0 0 0 0 0 0 0 +3.891 -13.486 -1.694 0 0 0 0 0 0 0 +3.93 -13.462 -1.692 0 0 0 0 0 0 0 +3.975 -13.459 -1.694 0 0 0 0 0 0 0 +4.01 -13.422 -1.69 0 0 0 0 0 0 0 +4.033 -13.423 -1.691 0 0 0 0 0 0 0 +4.071 -13.395 -1.689 0 0 0 0 0 0 0 +4.109 -13.371 -1.687 0 0 0 0 0 0 0 +4.153 -13.362 -1.688 0 0 0 0 0 0 0 +4.191 -13.337 -1.686 0 0 0 0 0 0 0 +4.228 -13.309 -1.684 0 0 0 0 0 0 0 +4.267 -13.288 -1.683 0 0 0 0 0 0 0 +4.285 -13.27 -1.681 0 0 0 0 0 0 0 +4.327 -13.26 -1.682 0 0 0 0 0 0 0 +4.368 -13.243 -1.681 0 0 0 0 0 0 0 +4.405 -13.216 -1.68 0 0 0 0 0 0 0 +4.449 -13.21 -1.681 0 0 0 0 0 0 0 +4.486 -13.183 -1.679 0 0 0 0 0 0 0 +4.524 -13.159 -1.677 0 0 0 0 0 0 0 +4.538 -13.133 -1.675 0 0 0 0 0 0 0 +4.585 -13.136 -1.677 0 0 0 0 0 0 0 +3.724 -10.575 -1.313 0 0 0 0 0 0 0 +3.754 -10.556 -1.312 0 0 0 0 0 0 0 +3.78 -10.524 -1.309 0 0 0 0 0 0 0 +3.805 -10.491 -1.306 0 0 0 0 0 0 0 +3.87 -10.565 -1.318 0 0 0 0 0 0 0 +4.797 -13.014 -1.671 0 0 0 0 0 0 0 +4.831 -12.982 -1.669 0 0 0 0 0 0 0 +4.865 -12.948 -1.666 0 0 0 0 0 0 0 +4.907 -12.936 -1.667 0 0 0 0 0 0 0 +4.938 -12.897 -1.663 0 0 0 0 0 0 0 +4.98 -12.885 -1.664 0 0 0 0 0 0 0 +5.017 -12.86 -1.663 0 0 0 0 0 0 0 +5.032 -12.837 -1.66 0 0 0 0 0 0 0 +5.071 -12.82 -1.66 0 0 0 0 0 0 0 +5.11 -12.8 -1.66 0 0 0 0 0 0 0 +5.146 -12.775 -1.658 0 0 0 0 0 0 0 +5.183 -12.751 -1.657 0 0 0 0 0 0 0 +5.223 -12.733 -1.657 0 0 0 0 0 0 0 +5.266 -12.724 -1.658 0 0 0 0 0 0 0 +5.278 -12.697 -1.655 0 0 0 0 0 0 0 +5.311 -12.664 -1.653 0 0 0 0 0 0 0 +5.343 -12.629 -1.65 0 0 0 0 0 0 0 +5.383 -12.612 -1.65 0 0 0 0 0 0 0 +5.418 -12.586 -1.649 0 0 0 0 0 0 0 +5.454 -12.56 -1.648 0 0 0 0 0 0 0 +5.488 -12.53 -1.646 0 0 0 0 0 0 0 +5.503 -12.511 -1.644 0 0 0 0 0 0 0 +5.545 -12.501 -1.645 0 0 0 0 0 0 0 +5.59 -12.496 -1.647 0 0 0 0 0 0 0 +5.624 -12.465 -1.645 0 0 0 0 0 0 0 +5.658 -12.437 -1.644 0 0 0 0 0 0 0 +5.68 -12.383 -1.638 0 0 0 0 0 0 0 +5.722 -12.371 -1.639 0 0 0 0 0 0 0 +5.727 -12.331 -1.634 0 0 0 0 0 0 0 +5.77 -12.324 -1.636 0 0 0 0 0 0 0 +5.802 -12.289 -1.634 0 0 0 0 0 0 0 +5.841 -12.273 -1.634 0 0 0 0 0 0 0 +5.867 -12.228 -1.63 0 0 0 0 0 0 0 +5.902 -12.202 -1.629 0 0 0 0 0 0 0 +5.945 -12.194 -1.63 0 0 0 0 0 0 0 +5.939 -12.133 -1.623 0 0 0 0 0 0 0 +5.965 -12.091 -1.619 0 0 0 0 0 0 0 +6.012 -12.09 -1.622 0 0 0 0 0 0 0 +6.04 -12.052 -1.619 0 0 0 0 0 0 0 +6.076 -12.028 -1.618 0 0 0 0 0 0 0 +6.105 -11.993 -1.616 0 0 0 0 0 0 0 +6.132 -11.952 -1.613 0 0 0 0 0 0 0 +6.143 -11.928 -1.61 0 0 0 0 0 0 0 +6.174 -11.895 -1.608 0 0 0 0 0 0 0 +6.188 -11.832 -1.602 0 0 0 0 0 0 0 +6.244 -11.847 -1.607 0 0 0 0 0 0 0 +6.251 -11.772 -1.598 0 0 0 0 0 0 0 +6.294 -11.764 -1.6 0 0 0 0 0 0 0 +6.321 -11.725 -1.597 0 0 0 0 0 0 0 +6.336 -11.71 -1.597 0 0 0 0 0 0 0 +6.385 -11.711 -1.6 0 0 0 0 0 0 0 +6.409 -11.668 -1.596 0 0 0 0 0 0 0 +6.444 -11.645 -1.596 0 0 0 0 0 0 0 +6.47 -11.605 -1.593 0 0 0 0 0 0 0 +6.482 -11.542 -1.586 0 0 0 0 0 0 0 +6.523 -11.53 -1.587 0 0 0 0 0 0 0 +6.53 -11.501 -1.584 0 0 0 0 0 0 0 +6.586 -11.514 -1.59 0 0 0 0 0 0 0 +6.615 -11.482 -1.588 0 0 0 0 0 0 0 +6.654 -11.466 -1.589 0 0 0 0 0 0 0 +6.692 -11.448 -1.589 0 0 0 0 0 0 0 +6.708 -11.393 -1.584 0 0 0 0 0 0 0 +6.743 -11.37 -1.584 0 0 0 0 0 0 0 +6.777 -11.387 -1.588 0 0 0 0 0 0 0 +6.806 -11.356 -1.586 0 0 0 0 0 0 0 +6.841 -11.332 -1.586 0 0 0 0 0 0 0 +6.855 -11.275 -1.58 0 0 0 0 0 0 0 +6.886 -11.247 -1.579 0 0 0 0 0 0 0 +6.916 -11.217 -1.578 0 0 0 0 0 0 0 +6.944 -11.183 -1.576 0 0 0 0 0 0 0 +6.975 -11.194 -1.58 0 0 0 0 0 0 0 +7.013 -11.176 -1.58 0 0 0 0 0 0 0 +7.051 -11.159 -1.581 0 0 0 0 0 0 0 +7.068 -11.108 -1.576 0 0 0 0 0 0 0 +7.107 -11.092 -1.578 0 0 0 0 0 0 0 +7.12 -11.037 -1.572 0 0 0 0 0 0 0 +7.153 -11.011 -1.572 0 0 0 0 0 0 0 +7.167 -10.995 -1.571 0 0 0 0 0 0 0 +7.2 -10.971 -1.571 0 0 0 0 0 0 0 +7.23 -10.941 -1.57 0 0 0 0 0 0 0 +7.276 -10.937 -1.572 0 0 0 0 0 0 0 +7.29 -10.882 -1.567 0 0 0 0 0 0 0 +7.295 -10.817 -1.56 0 0 0 0 0 0 0 +7.312 -10.769 -1.556 0 0 0 0 0 0 0 +7.31 -10.73 -1.552 0 0 0 0 0 0 0 +7.371 -10.746 -1.558 0 0 0 0 0 0 0 +7.399 -10.715 -1.557 0 0 0 0 0 0 0 +7.432 -10.691 -1.557 0 0 0 0 0 0 0 +7.451 -10.647 -1.553 0 0 0 0 0 0 0 +7.472 -10.606 -1.551 0 0 0 0 0 0 0 +7.497 -10.571 -1.549 0 0 0 0 0 0 0 +7.505 -10.546 -1.547 0 0 0 0 0 0 0 +7.579 -10.581 -1.556 0 0 0 0 0 0 0 +7.594 -10.531 -1.552 0 0 0 0 0 0 0 +7.636 -10.52 -1.554 0 0 0 0 0 0 0 +7.671 -10.497 -1.554 0 0 0 0 0 0 0 +7.691 -10.456 -1.551 0 0 0 0 0 0 0 +7.726 -10.435 -1.552 0 0 0 0 0 0 0 +7.748 -10.431 -1.553 0 0 0 0 0 0 0 +7.795 -10.425 -1.556 0 0 0 0 0 0 0 +7.831 -10.405 -1.557 0 0 0 0 0 0 0 +7.821 -10.324 -1.548 0 0 0 0 0 0 0 +7.893 -10.351 -1.556 0 0 0 0 0 0 0 +7.912 -10.309 -1.553 0 0 0 0 0 0 0 +7.938 -10.276 -1.552 0 0 0 0 0 0 0 +7.964 -10.276 -1.554 0 0 0 0 0 0 0 +7.987 -10.239 -1.552 0 0 0 0 0 0 0 +8.008 -10.2 -1.55 0 0 0 0 0 0 0 +8.037 -10.171 -1.549 0 0 0 0 0 0 0 +8.094 -10.177 -1.555 0 0 0 0 0 0 0 +8.122 -10.147 -1.554 0 0 0 0 0 0 0 +8.15 -10.117 -1.553 0 0 0 0 0 0 0 +8.18 -10.088 -1.552 0 0 0 0 0 0 0 +8.164 -10.037 -1.546 0 0 0 0 0 0 0 +8.168 -9.977 -1.54 0 0 0 0 0 0 0 +8.164 -9.909 -1.532 0 0 0 0 0 0 0 +8.239 -9.937 -1.542 0 0 0 0 0 0 0 +8.251 -9.888 -1.538 0 0 0 0 0 0 0 +8.305 -9.889 -1.543 0 0 0 0 0 0 0 +8.27 -9.784 -1.529 0 0 0 0 0 0 0 +8.271 -9.755 -1.526 0 0 0 0 0 0 0 +8.32 -9.75 -1.529 0 0 0 0 0 0 0 +8.337 -9.709 -1.527 0 0 0 0 0 0 0 +8.317 -9.624 -1.516 0 0 0 0 0 0 0 +8.309 -9.555 -1.509 0 0 0 0 0 0 0 +8.381 -9.576 -1.517 0 0 0 0 0 0 0 +8.44 -9.612 -1.526 0 0 0 0 0 0 0 +8.432 -9.542 -1.518 0 0 0 0 0 0 0 +8.459 -9.513 -1.518 0 0 0 0 0 0 0 +8.499 -9.498 -1.52 0 0 0 0 0 0 0 +8.521 -9.462 -1.518 0 0 0 0 0 0 0 +8.565 -9.452 -1.521 0 0 0 0 0 0 0 +8.599 -9.429 -1.522 0 0 0 0 0 0 0 +8.618 -9.42 -1.523 0 0 0 0 0 0 0 +8.63 -9.374 -1.519 0 0 0 0 0 0 0 +8.677 -9.366 -1.523 0 0 0 0 0 0 0 +8.729 -9.363 -1.527 0 0 0 0 0 0 0 +8.748 -9.324 -1.525 0 0 0 0 0 0 0 +8.757 -9.275 -1.521 0 0 0 0 0 0 0 +8.763 -9.223 -1.517 0 0 0 0 0 0 0 +8.743 -9.173 -1.51 0 0 0 0 0 0 0 +8.766 -9.14 -1.509 0 0 0 0 0 0 0 +8.839 -9.158 -1.517 0 0 0 0 0 0 0 +8.814 -9.075 -1.507 0 0 0 0 0 0 0 +8.882 -9.088 -1.515 0 0 0 0 0 0 0 +8.894 -9.043 -1.512 0 0 0 0 0 0 0 +8.934 -9.027 -1.514 0 0 0 0 0 0 0 +8.958 -8.994 -1.513 0 0 0 0 0 0 0 +8.973 -8.982 -1.513 0 0 0 0 0 0 0 +8.983 -8.935 -1.51 0 0 0 0 0 0 0 +9.006 -8.901 -1.509 0 0 0 0 0 0 0 +9.032 -8.872 -1.508 0 0 0 0 0 0 0 +9.054 -8.838 -1.507 0 0 0 0 0 0 0 +9.093 -8.82 -1.509 0 0 0 0 0 0 0 +9.094 -8.766 -1.504 0 0 0 0 0 0 0 +9.113 -8.757 -1.505 0 0 0 0 0 0 0 +9.158 -8.745 -1.509 0 0 0 0 0 0 0 +9.168 -8.699 -1.505 0 0 0 0 0 0 0 +9.194 -8.669 -1.505 0 0 0 0 0 0 0 +9.217 -8.636 -1.504 0 0 0 0 0 0 0 +9.245 -8.609 -1.505 0 0 0 0 0 0 0 +9.277 -8.584 -1.505 0 0 0 0 0 0 0 +9.289 -8.568 -1.505 0 0 0 0 0 0 0 +9.311 -8.534 -1.504 0 0 0 0 0 0 0 +9.351 -8.517 -1.507 0 0 0 0 0 0 0 +9.382 -8.492 -1.508 0 0 0 0 0 0 0 +9.391 -8.446 -1.504 0 0 0 0 0 0 0 +9.367 -8.372 -1.495 0 0 0 0 0 0 0 +9.415 -8.387 -1.501 0 0 0 0 0 0 0 +9.352 -8.279 -1.485 0 0 0 0 0 0 0 +9.41 -8.278 -1.491 0 0 0 0 0 0 0 +9.496 -8.301 -1.502 0 0 0 0 0 0 0 +9.522 -8.271 -1.502 0 0 0 0 0 0 0 +9.544 -8.237 -1.501 0 0 0 0 0 0 0 +9.533 -8.176 -1.495 0 0 0 0 0 0 0 +9.564 -8.15 -1.495 0 0 0 0 0 0 0 +9.566 -8.126 -1.494 0 0 0 0 0 0 0 +9.587 -8.092 -1.493 0 0 0 0 0 0 0 +9.642 -8.087 -1.498 0 0 0 0 0 0 0 +9.704 -8.088 -1.505 0 0 0 0 0 0 0 +9.661 -8 -1.493 0 0 0 0 0 0 0 +9.677 -7.962 -1.491 0 0 0 0 0 0 0 +9.72 -7.947 -1.494 0 0 0 0 0 0 0 +9.774 -7.965 -1.501 0 0 0 0 0 0 0 +9.822 -7.953 -1.505 0 0 0 0 0 0 0 +9.832 -7.91 -1.503 0 0 0 0 0 0 0 +9.868 -7.888 -1.505 0 0 0 0 0 0 0 +9.897 -7.86 -1.505 0 0 0 0 0 0 0 +9.911 -7.821 -1.504 0 0 0 0 0 0 0 +9.935 -7.789 -1.504 0 0 0 0 0 0 0 +9.949 -7.775 -1.504 0 0 0 0 0 0 0 +9.793 -7.555 -1.469 0 0 0 0 0 0 0 +9.986 -7.653 -1.498 0 0 0 0 0 0 0 +10.006 -7.619 -1.497 0 0 0 0 0 0 0 +10.064 -7.613 -1.503 0 0 0 0 0 0 0 +10.068 -7.567 -1.499 0 0 0 0 0 0 0 +10.083 -7.554 -1.5 0 0 0 0 0 0 0 +10.107 -7.522 -1.5 0 0 0 0 0 0 0 +10.124 -7.486 -1.499 0 0 0 0 0 0 0 +10.156 -7.46 -1.5 0 0 0 0 0 0 0 +10.15 -7.407 -1.495 0 0 0 0 0 0 0 +10.186 -7.384 -1.498 0 0 0 0 0 0 0 +10.19 -7.362 -1.496 0 0 0 0 0 0 0 +10.218 -7.334 -1.497 0 0 0 0 0 0 0 +10.238 -7.299 -1.497 0 0 0 0 0 0 0 +10.262 -7.268 -1.497 0 0 0 0 0 0 0 +10.228 -7.196 -1.487 0 0 0 0 0 0 0 +10.182 -7.116 -1.476 0 0 0 0 0 0 0 +10.183 -7.07 -1.473 0 0 0 0 0 0 0 +10.215 -7.044 -1.474 0 0 0 0 0 0 0 +10.225 -7.027 -1.474 0 0 0 0 0 0 0 +10.288 -7.023 -1.481 0 0 0 0 0 0 0 +10.412 -7.059 -1.497 0 0 0 0 0 0 0 +10.43 -7.024 -1.497 0 0 0 0 0 0 0 +10.452 -6.991 -1.497 0 0 0 0 0 0 0 +10.476 -6.96 -1.497 0 0 0 0 0 0 0 +10.503 -6.93 -1.498 0 0 0 0 0 0 0 +10.52 -6.918 -1.499 0 0 0 0 0 0 0 +10.544 -6.886 -1.499 0 0 0 0 0 0 0 +10.562 -6.851 -1.499 0 0 0 0 0 0 0 +10.582 -6.816 -1.498 0 0 0 0 0 0 0 +10.611 -6.788 -1.5 0 0 0 0 0 0 0 +10.629 -6.753 -1.499 0 0 0 0 0 0 0 +10.657 -6.724 -1.5 0 0 0 0 0 0 0 +10.674 -6.711 -1.501 0 0 0 0 0 0 0 +10.699 -6.68 -1.502 0 0 0 0 0 0 0 +10.716 -6.644 -1.501 0 0 0 0 0 0 0 +10.714 -6.596 -1.498 0 0 0 0 0 0 0 +10.753 -6.573 -1.501 0 0 0 0 0 0 0 +10.779 -6.543 -1.501 0 0 0 0 0 0 0 +10.811 -6.516 -1.503 0 0 0 0 0 0 0 +10.808 -6.491 -1.501 0 0 0 0 0 0 0 +10.828 -6.457 -1.501 0 0 0 0 0 0 0 +10.862 -6.431 -1.503 0 0 0 0 0 0 0 +10.887 -6.4 -1.504 0 0 0 0 0 0 0 +10.904 -6.363 -1.504 0 0 0 0 0 0 0 +10.932 -6.334 -1.505 0 0 0 0 0 0 0 +10.95 -6.299 -1.505 0 0 0 0 0 0 0 +10.969 -6.286 -1.506 0 0 0 0 0 0 0 +10.973 -6.243 -1.504 0 0 0 0 0 0 0 +11.001 -6.213 -1.505 0 0 0 0 0 0 0 +11.026 -6.182 -1.506 0 0 0 0 0 0 0 +11.049 -6.149 -1.506 0 0 0 0 0 0 0 +11.052 -6.106 -1.504 0 0 0 0 0 0 0 +11.082 -6.077 -1.505 0 0 0 0 0 0 0 +11.091 -6.059 -1.505 0 0 0 0 0 0 0 +11.114 -6.026 -1.506 0 0 0 0 0 0 0 +11.131 -5.99 -1.506 0 0 0 0 0 0 0 +11.16 -5.961 -1.507 0 0 0 0 0 0 0 +11.174 -5.923 -1.506 0 0 0 0 0 0 0 +11.192 -5.888 -1.506 0 0 0 0 0 0 0 +11.23 -5.863 -1.509 0 0 0 0 0 0 0 +11.227 -5.839 -1.508 0 0 0 0 0 0 0 +8.83 -4.563 -1.141 0 0 0 0 0 0 0 +8.835 -4.531 -1.14 0 0 0 0 0 0 0 +8.863 -4.51 -1.142 0 0 0 0 0 0 0 +8.876 -4.481 -1.142 0 0 0 0 0 0 0 +11.34 -5.673 -1.511 0 0 0 0 0 0 0 +11.36 -5.638 -1.511 0 0 0 0 0 0 0 +11.374 -5.623 -1.512 0 0 0 0 0 0 0 +11.395 -5.589 -1.513 0 0 0 0 0 0 0 +11.411 -5.552 -1.512 0 0 0 0 0 0 0 +11.435 -5.52 -1.513 0 0 0 0 0 0 0 +11.451 -5.483 -1.513 0 0 0 0 0 0 0 +11.47 -5.448 -1.513 0 0 0 0 0 0 0 +11.476 -5.407 -1.512 0 0 0 0 0 0 0 +11.497 -5.395 -1.514 0 0 0 0 0 0 0 +11.509 -5.356 -1.513 0 0 0 0 0 0 0 +11.52 -5.317 -1.512 0 0 0 0 0 0 0 +11.544 -5.284 -1.513 0 0 0 0 0 0 0 +11.555 -5.246 -1.512 0 0 0 0 0 0 0 +11.579 -5.213 -1.513 0 0 0 0 0 0 0 +11.593 -5.175 -1.513 0 0 0 0 0 0 0 +11.618 -5.164 -1.516 0 0 0 0 0 0 0 +11.632 -5.127 -1.515 0 0 0 0 0 0 0 +11.663 -5.097 -1.517 0 0 0 0 0 0 0 +11.675 -5.059 -1.517 0 0 0 0 0 0 0 +11.707 -5.029 -1.519 0 0 0 0 0 0 0 +11.721 -4.991 -1.519 0 0 0 0 0 0 0 +11.737 -4.955 -1.519 0 0 0 0 0 0 0 +11.752 -4.939 -1.52 0 0 0 0 0 0 0 +11.773 -4.904 -1.521 0 0 0 0 0 0 0 +11.783 -4.865 -1.52 0 0 0 0 0 0 0 +11.798 -4.828 -1.52 0 0 0 0 0 0 0 +11.819 -4.793 -1.521 0 0 0 0 0 0 0 +11.832 -4.755 -1.521 0 0 0 0 0 0 0 +11.861 -4.724 -1.523 0 0 0 0 0 0 0 +11.854 -4.7 -1.521 0 0 0 0 0 0 0 +11.885 -4.669 -1.523 0 0 0 0 0 0 0 +11.898 -4.631 -1.523 0 0 0 0 0 0 0 +11.92 -4.596 -1.524 0 0 0 0 0 0 0 +11.931 -4.557 -1.523 0 0 0 0 0 0 0 +11.941 -4.518 -1.523 0 0 0 0 0 0 0 +11.963 -4.484 -1.524 0 0 0 0 0 0 0 +11.953 -4.459 -1.521 0 0 0 0 0 0 0 +11.982 -4.427 -1.524 0 0 0 0 0 0 0 +11.994 -4.388 -1.523 0 0 0 0 0 0 0 +11.996 -4.346 -1.522 0 0 0 0 0 0 0 +12.017 -4.311 -1.523 0 0 0 0 0 0 0 +12.037 -4.276 -1.524 0 0 0 0 0 0 0 +12.044 -4.236 -1.523 0 0 0 0 0 0 0 +12.042 -4.214 -1.521 0 0 0 0 0 0 0 +12.045 -4.173 -1.52 0 0 0 0 0 0 0 +12.07 -4.139 -1.522 0 0 0 0 0 0 0 +12.069 -4.096 -1.52 0 0 0 0 0 0 0 +12.069 -4.054 -1.518 0 0 0 0 0 0 0 +12.097 -4.021 -1.52 0 0 0 0 0 0 0 +12.123 -3.987 -1.522 0 0 0 0 0 0 0 +12.118 -3.964 -1.52 0 0 0 0 0 0 0 +12.124 -3.925 -1.52 0 0 0 0 0 0 0 +12.133 -3.885 -1.519 0 0 0 0 0 0 0 +12.143 -3.846 -1.519 0 0 0 0 0 0 0 +12.147 -3.806 -1.518 0 0 0 0 0 0 0 +12.159 -3.768 -1.518 0 0 0 0 0 0 0 +12.167 -3.728 -1.517 0 0 0 0 0 0 0 +12.166 -3.707 -1.516 0 0 0 0 0 0 0 +12.172 -3.667 -1.515 0 0 0 0 0 0 0 +12.189 -3.631 -1.516 0 0 0 0 0 0 0 +12.175 -3.585 -1.513 0 0 0 0 0 0 0 +12.209 -3.553 -1.516 0 0 0 0 0 0 0 +12.228 -3.517 -1.517 0 0 0 0 0 0 0 +12.241 -3.479 -1.517 0 0 0 0 0 0 0 +12.243 -3.459 -1.517 0 0 0 0 0 0 0 +12.253 -3.42 -1.517 0 0 0 0 0 0 0 +12.249 -3.378 -1.514 0 0 0 0 0 0 0 +12.275 -3.343 -1.517 0 0 0 0 0 0 0 +12.26 -3.298 -1.513 0 0 0 0 0 0 0 +12.278 -3.262 -1.514 0 0 0 0 0 0 0 +12.309 -3.229 -1.517 0 0 0 0 0 0 0 +12.336 -3.215 -1.52 0 0 0 0 0 0 0 +12.332 -3.172 -1.518 0 0 0 0 0 0 0 +12.354 -3.137 -1.52 0 0 0 0 0 0 0 +12.362 -3.097 -1.52 0 0 0 0 0 0 0 +12.373 -3.059 -1.52 0 0 0 0 0 0 0 +7.383 -1.811 -0.826 0 0 0 0 0 0 0 +7.352 -1.78 -0.821 0 0 0 0 0 0 0 +7.343 -1.765 -0.82 0 0 0 0 0 0 0 +7.314 -1.734 -0.815 0 0 0 0 0 0 0 +7.31 -1.709 -0.813 0 0 0 0 0 0 0 +7.294 -1.681 -0.811 0 0 0 0 0 0 0 +7.313 -1.661 -0.812 0 0 0 0 0 0 0 +7.312 -1.637 -0.812 0 0 0 0 0 0 0 +7.28 -1.606 -0.807 0 0 0 0 0 0 0 +7.278 -1.581 -0.805 0 0 0 0 0 0 0 +7.267 -1.567 -0.804 0 0 0 0 0 0 0 +7.268 -1.543 -0.803 0 0 0 0 0 0 0 +7.253 -1.517 -0.8 0 0 0 0 0 0 0 +7.256 -1.493 -0.8 0 0 0 0 0 0 0 +7.249 -1.468 -0.799 0 0 0 0 0 0 0 +7.257 -1.446 -0.799 0 0 0 0 0 0 0 +7.256 -1.422 -0.798 0 0 0 0 0 0 0 +7.26 -1.411 -0.799 0 0 0 0 0 0 0 +7.266 -1.389 -0.799 0 0 0 0 0 0 0 +7.292 -1.37 -0.802 0 0 0 0 0 0 0 +7.3 -1.348 -0.802 0 0 0 0 0 0 0 +7.318 -1.327 -0.804 0 0 0 0 0 0 0 +7.326 -1.305 -0.805 0 0 0 0 0 0 0 +7.356 -1.298 -0.808 0 0 0 0 0 0 0 +7.366 -1.276 -0.809 0 0 0 0 0 0 0 +7.411 -1.26 -0.815 0 0 0 0 0 0 0 +7.516 -1.253 -0.829 0 0 0 0 0 0 0 +7.581 -1.239 -0.837 0 0 0 0 0 0 0 +12.756 -2.026 -1.543 0 0 0 0 0 0 0 +12.737 -1.982 -1.539 0 0 0 0 0 0 0 +12.753 -1.944 -1.541 0 0 0 0 0 0 0 +12.776 -1.926 -1.543 0 0 0 0 0 0 0 +12.766 -1.884 -1.541 0 0 0 0 0 0 0 +12.791 -1.847 -1.544 0 0 0 0 0 0 0 +7.93 -1.129 -0.881 0 0 0 0 0 0 0 +7.906 -1.101 -0.878 0 0 0 0 0 0 0 +12.851 -1.732 -1.55 0 0 0 0 0 0 0 +12.825 -1.687 -1.545 0 0 0 0 0 0 0 +12.822 -1.666 -1.545 0 0 0 0 0 0 0 +12.812 -1.624 -1.543 0 0 0 0 0 0 0 +7.994 -0.998 -0.888 0 0 0 0 0 0 0 +12.85 -1.506 -1.546 0 0 0 0 0 0 0 +12.843 -1.464 -1.544 0 0 0 0 0 0 0 +12.855 -1.425 -1.545 0 0 0 0 0 0 0 +12.875 -1.407 -1.548 0 0 0 0 0 0 0 +12.864 -1.364 -1.545 0 0 0 0 0 0 0 +12.862 -1.323 -1.545 0 0 0 0 0 0 0 +12.929 -1.289 -1.553 0 0 0 0 0 0 0 +11.155 -1.081 -1.312 0 0 0 0 0 0 0 +11.161 -1.046 -1.313 0 0 0 0 0 0 0 +12.842 -1.159 -1.54 0 0 0 0 0 0 0 +12.901 -1.143 -1.548 0 0 0 0 0 0 0 +12.851 -1.098 -1.54 0 0 0 0 0 0 0 +12.807 -1.054 -1.534 0 0 0 0 0 0 0 +12.85 -1.017 -1.539 0 0 0 0 0 0 0 +12.915 -0.981 -1.548 0 0 0 0 0 0 0 +12.933 -0.942 -1.55 0 0 0 0 0 0 0 +12.954 -0.902 -1.552 0 0 0 0 0 0 0 +12.946 -0.881 -1.551 0 0 0 0 0 0 0 +12.98 -0.843 -1.555 0 0 0 0 0 0 0 +12.984 -0.802 -1.555 0 0 0 0 0 0 0 +12.973 -0.76 -1.553 0 0 0 0 0 0 0 +12.983 -0.72 -1.555 0 0 0 0 0 0 0 +12.991 -0.679 -1.555 0 0 0 0 0 0 0 +12.958 -0.637 -1.551 0 0 0 0 0 0 0 +12.991 -0.618 -1.555 0 0 0 0 0 0 0 +12.979 -0.577 -1.553 0 0 0 0 0 0 0 +12.996 -0.537 -1.555 0 0 0 0 0 0 0 +12.996 -0.496 -1.555 0 0 0 0 0 0 0 +13.019 -0.456 -1.558 0 0 0 0 0 0 0 +13.011 -0.414 -1.556 0 0 0 0 0 0 0 +13.026 -0.374 -1.558 0 0 0 0 0 0 0 +13.036 -0.354 -1.56 0 0 0 0 0 0 0 +13.041 -0.313 -1.56 0 0 0 0 0 0 0 +13.084 -0.273 -1.566 0 0 0 0 0 0 0 +13.057 -0.231 -1.562 0 0 0 0 0 0 0 +13.079 -0.19 -1.565 0 0 0 0 0 0 0 +13.072 -0.149 -1.564 0 0 0 0 0 0 0 +13.068 -0.108 -1.563 0 0 0 0 0 0 0 +13.09 -0.088 -1.566 0 0 0 0 0 0 0 +13.065 -0.046 -1.563 0 0 0 0 0 0 0 +13.077 -0.005 -1.564 0 0 0 0 0 0 0 +12.522 0.027 -1.574 0 0 0 0 0 0 0 +12.526 0.067 -1.575 0 0 0 0 0 0 0 +12.571 0.106 -1.581 0 0 0 0 0 0 0 +12.614 0.146 -1.588 0 0 0 0 0 0 0 +12.634 0.186 -1.59 0 0 0 0 0 0 0 +12.623 0.226 -1.589 0 0 0 0 0 0 0 +12.627 0.246 -1.59 0 0 0 0 0 0 0 +12.64 0.286 -1.592 0 0 0 0 0 0 0 +12.655 0.326 -1.594 0 0 0 0 0 0 0 +12.685 0.366 -1.598 0 0 0 0 0 0 0 +12.733 0.408 -1.605 0 0 0 0 0 0 0 +12.803 0.45 -1.615 0 0 0 0 0 0 0 +12.855 0.492 -1.623 0 0 0 0 0 0 0 +12.926 0.515 -1.633 0 0 0 0 0 0 0 +13.001 0.559 -1.644 0 0 0 0 0 0 0 +13.053 0.602 -1.652 0 0 0 0 0 0 0 +13.098 0.645 -1.658 0 0 0 0 0 0 0 +13.102 0.687 -1.659 0 0 0 0 0 0 0 +13.136 0.73 -1.664 0 0 0 0 0 0 0 +13.171 0.773 -1.669 0 0 0 0 0 0 0 +13.201 0.796 -1.674 0 0 0 0 0 0 0 +13.248 0.84 -1.681 0 0 0 0 0 0 0 +13.222 0.88 -1.678 0 0 0 0 0 0 0 +13.3 0.927 -1.689 0 0 0 0 0 0 0 +13.263 0.967 -1.684 0 0 0 0 0 0 0 +13.311 1.012 -1.692 0 0 0 0 0 0 0 +13.35 1.057 -1.698 0 0 0 0 0 0 0 +13.382 1.081 -1.702 0 0 0 0 0 0 0 +13.42 1.126 -1.708 0 0 0 0 0 0 0 +13.412 1.168 -1.708 0 0 0 0 0 0 0 +13.387 1.208 -1.705 0 0 0 0 0 0 0 +13.395 1.251 -1.706 0 0 0 0 0 0 0 +13.385 1.293 -1.705 0 0 0 0 0 0 0 +13.377 1.335 -1.705 0 0 0 0 0 0 0 +13.357 1.354 -1.702 0 0 0 0 0 0 0 +13.343 1.395 -1.701 0 0 0 0 0 0 0 +13.348 1.438 -1.702 0 0 0 0 0 0 0 +13.33 1.478 -1.7 0 0 0 0 0 0 0 +13.325 1.52 -1.7 0 0 0 0 0 0 0 +13.31 1.561 -1.699 0 0 0 0 0 0 0 +13.305 1.603 -1.699 0 0 0 0 0 0 0 +13.293 1.622 -1.698 0 0 0 0 0 0 0 +13.282 1.663 -1.697 0 0 0 0 0 0 0 +13.243 1.701 -1.692 0 0 0 0 0 0 0 +13.259 1.745 -1.695 0 0 0 0 0 0 0 +13.236 1.785 -1.692 0 0 0 0 0 0 0 +13.238 1.827 -1.694 0 0 0 0 0 0 0 +13.217 1.867 -1.691 0 0 0 0 0 0 0 +13.155 1.879 -1.683 0 0 0 0 0 0 0 +13.216 1.93 -1.692 0 0 0 0 0 0 0 +13.202 1.97 -1.691 0 0 0 0 0 0 0 +13.199 2.012 -1.692 0 0 0 0 0 0 0 +13.181 2.052 -1.69 0 0 0 0 0 0 0 +13.153 2.09 -1.687 0 0 0 0 0 0 0 +13.158 2.133 -1.689 0 0 0 0 0 0 0 +13.146 2.174 -1.688 0 0 0 0 0 0 0 +13.138 2.194 -1.687 0 0 0 0 0 0 0 +13.131 2.235 -1.687 0 0 0 0 0 0 0 +13.118 2.275 -1.687 0 0 0 0 0 0 0 +13.117 2.317 -1.687 0 0 0 0 0 0 0 +13.098 2.356 -1.686 0 0 0 0 0 0 0 +13.083 2.396 -1.685 0 0 0 0 0 0 0 +13.079 2.438 -1.685 0 0 0 0 0 0 0 +13.064 2.456 -1.684 0 0 0 0 0 0 0 +13.06 2.498 -1.684 0 0 0 0 0 0 0 +13.042 2.537 -1.683 0 0 0 0 0 0 0 +13.034 2.578 -1.683 0 0 0 0 0 0 0 +13.03 2.62 -1.683 0 0 0 0 0 0 0 +13.021 2.661 -1.683 0 0 0 0 0 0 0 +13.009 2.701 -1.683 0 0 0 0 0 0 0 +12.991 2.719 -1.681 0 0 0 0 0 0 0 +12.989 2.761 -1.682 0 0 0 0 0 0 0 +12.972 2.8 -1.68 0 0 0 0 0 0 0 +12.952 2.838 -1.679 0 0 0 0 0 0 0 +12.941 2.878 -1.678 0 0 0 0 0 0 0 +12.935 2.92 -1.679 0 0 0 0 0 0 0 +12.926 2.96 -1.679 0 0 0 0 0 0 0 +12.912 2.978 -1.678 0 0 0 0 0 0 0 +12.91 3.021 -1.679 0 0 0 0 0 0 0 +12.895 3.06 -1.678 0 0 0 0 0 0 0 +12.877 3.099 -1.677 0 0 0 0 0 0 0 +12.883 3.143 -1.679 0 0 0 0 0 0 0 +12.854 3.178 -1.676 0 0 0 0 0 0 0 +12.848 3.22 -1.677 0 0 0 0 0 0 0 +12.829 3.237 -1.675 0 0 0 0 0 0 0 +12.838 3.282 -1.678 0 0 0 0 0 0 0 +12.809 3.317 -1.675 0 0 0 0 0 0 0 +12.815 3.362 -1.677 0 0 0 0 0 0 0 +12.786 3.397 -1.675 0 0 0 0 0 0 0 +12.784 3.44 -1.676 0 0 0 0 0 0 0 +12.77 3.479 -1.675 0 0 0 0 0 0 0 +12.77 3.5 -1.676 0 0 0 0 0 0 0 +12.755 3.54 -1.676 0 0 0 0 0 0 0 +12.742 3.579 -1.675 0 0 0 0 0 0 0 +12.744 3.623 -1.677 0 0 0 0 0 0 0 +12.725 3.661 -1.676 0 0 0 0 0 0 0 +12.719 3.702 -1.677 0 0 0 0 0 0 0 +12.705 3.742 -1.677 0 0 0 0 0 0 0 +12.709 3.764 -1.678 0 0 0 0 0 0 0 +12.699 3.805 -1.678 0 0 0 0 0 0 0 +12.678 3.842 -1.677 0 0 0 0 0 0 0 +12.673 3.884 -1.678 0 0 0 0 0 0 0 +12.663 3.924 -1.678 0 0 0 0 0 0 0 +12.652 3.965 -1.679 0 0 0 0 0 0 0 +12.651 4.008 -1.68 0 0 0 0 0 0 0 +12.648 4.029 -1.681 0 0 0 0 0 0 0 +12.626 4.066 -1.68 0 0 0 0 0 0 0 +12.612 4.105 -1.679 0 0 0 0 0 0 0 +12.602 4.146 -1.68 0 0 0 0 0 0 0 +12.599 4.188 -1.681 0 0 0 0 0 0 0 +12.582 4.227 -1.681 0 0 0 0 0 0 0 +12.578 4.269 -1.682 0 0 0 0 0 0 0 +12.567 4.288 -1.682 0 0 0 0 0 0 0 +12.563 4.33 -1.683 0 0 0 0 0 0 0 +12.551 4.371 -1.683 0 0 0 0 0 0 0 +12.539 4.411 -1.684 0 0 0 0 0 0 0 +12.525 4.45 -1.684 0 0 0 0 0 0 0 +12.53 4.496 -1.686 0 0 0 0 0 0 0 +12.512 4.534 -1.686 0 0 0 0 0 0 0 +12.507 4.554 -1.686 0 0 0 0 0 0 0 +12.494 4.594 -1.686 0 0 0 0 0 0 0 +12.485 4.636 -1.687 0 0 0 0 0 0 0 +12.469 4.674 -1.687 0 0 0 0 0 0 0 +12.476 4.722 -1.69 0 0 0 0 0 0 0 +12.449 4.756 -1.688 0 0 0 0 0 0 0 +12.445 4.799 -1.69 0 0 0 0 0 0 0 +12.441 4.82 -1.691 0 0 0 0 0 0 0 +12.442 4.866 -1.693 0 0 0 0 0 0 0 +12.431 4.906 -1.694 0 0 0 0 0 0 0 +12.423 4.948 -1.695 0 0 0 0 0 0 0 +12.412 4.989 -1.696 0 0 0 0 0 0 0 +12.387 5.025 -1.694 0 0 0 0 0 0 0 +12.375 5.065 -1.695 0 0 0 0 0 0 0 +12.384 5.091 -1.697 0 0 0 0 0 0 0 +12.377 5.134 -1.699 0 0 0 0 0 0 0 +12.368 5.176 -1.7 0 0 0 0 0 0 0 +12.348 5.213 -1.699 0 0 0 0 0 0 0 +12.343 5.256 -1.701 0 0 0 0 0 0 0 +12.321 5.293 -1.7 0 0 0 0 0 0 0 +12.313 5.335 -1.701 0 0 0 0 0 0 0 +12.309 5.38 -1.703 0 0 0 0 0 0 0 +12.3 5.399 -1.703 0 0 0 0 0 0 0 +12.287 5.439 -1.704 0 0 0 0 0 0 0 +12.273 5.479 -1.705 0 0 0 0 0 0 0 +12.265 5.522 -1.706 0 0 0 0 0 0 0 +12.257 5.564 -1.707 0 0 0 0 0 0 0 +12.248 5.607 -1.709 0 0 0 0 0 0 0 +12.254 5.633 -1.711 0 0 0 0 0 0 0 +12.24 5.673 -1.712 0 0 0 0 0 0 0 +12.222 5.711 -1.712 0 0 0 0 0 0 0 +12.202 5.749 -1.711 0 0 0 0 0 0 0 +12.186 5.788 -1.712 0 0 0 0 0 0 0 +12.175 5.83 -1.713 0 0 0 0 0 0 0 +12.172 5.876 -1.715 0 0 0 0 0 0 0 +12.174 5.9 -1.717 0 0 0 0 0 0 0 +12.152 5.936 -1.716 0 0 0 0 0 0 0 +12.136 5.976 -1.717 0 0 0 0 0 0 0 +12.119 6.015 -1.717 0 0 0 0 0 0 0 +12.095 6.051 -1.716 0 0 0 0 0 0 0 +12.085 6.093 -1.718 0 0 0 0 0 0 0 +12.064 6.13 -1.717 0 0 0 0 0 0 0 +12.061 6.153 -1.719 0 0 0 0 0 0 0 +12.049 6.194 -1.72 0 0 0 0 0 0 0 +12.028 6.231 -1.719 0 0 0 0 0 0 0 +12.031 6.281 -1.723 0 0 0 0 0 0 0 +12.015 6.32 -1.724 0 0 0 0 0 0 0 +12.004 6.363 -1.725 0 0 0 0 0 0 0 +11.985 6.401 -1.725 0 0 0 0 0 0 0 +11.969 6.441 -1.726 0 0 0 0 0 0 0 +11.958 6.46 -1.726 0 0 0 0 0 0 0 +11.935 6.495 -1.725 0 0 0 0 0 0 0 +11.938 6.546 -1.729 0 0 0 0 0 0 0 +11.913 6.581 -1.728 0 0 0 0 0 0 0 +11.894 6.619 -1.729 0 0 0 0 0 0 0 +11.878 6.659 -1.729 0 0 0 0 0 0 0 +11.857 6.696 -1.729 0 0 0 0 0 0 0 +11.85 6.717 -1.73 0 0 0 0 0 0 0 +11.705 6.684 -1.71 0 0 0 0 0 0 0 +11.931 6.862 -1.75 0 0 0 0 0 0 0 +11.114 6.44 -1.62 0 0 0 0 0 0 0 +10.982 6.411 -1.602 0 0 0 0 0 0 0 +10.882 6.398 -1.589 0 0 0 0 0 0 0 +10.73 6.332 -1.565 0 0 0 0 0 0 0 +10.064 5.984 -1.459 0 0 0 0 0 0 0 +10.011 5.995 -1.454 0 0 0 0 0 0 0 +9.999 6.03 -1.455 0 0 0 0 0 0 0 +9.968 6.055 -1.453 0 0 0 0 0 0 0 +9.951 6.087 -1.453 0 0 0 0 0 0 0 +9.935 6.12 -1.454 0 0 0 0 0 0 0 +9.949 6.15 -1.458 0 0 0 0 0 0 0 +9.961 6.201 -1.463 0 0 0 0 0 0 0 +9.945 6.235 -1.463 0 0 0 0 0 0 0 +9.949 6.281 -1.467 0 0 0 0 0 0 0 +9.944 6.321 -1.47 0 0 0 0 0 0 0 +9.965 6.378 -1.477 0 0 0 0 0 0 0 +9.964 6.422 -1.48 0 0 0 0 0 0 0 +9.966 6.445 -1.482 0 0 0 0 0 0 0 +9.976 6.496 -1.487 0 0 0 0 0 0 0 +9.977 6.541 -1.491 0 0 0 0 0 0 0 +9.999 6.601 -1.498 0 0 0 0 0 0 0 +9.987 6.638 -1.499 0 0 0 0 0 0 0 +9.966 6.669 -1.499 0 0 0 0 0 0 0 +9.966 6.715 -1.503 0 0 0 0 0 0 0 +10.008 6.766 -1.512 0 0 0 0 0 0 0 +10.007 6.811 -1.515 0 0 0 0 0 0 0 +10.013 6.861 -1.52 0 0 0 0 0 0 0 +10.017 6.91 -1.525 0 0 0 0 0 0 0 +10.031 6.967 -1.531 0 0 0 0 0 0 0 +10.027 7.01 -1.534 0 0 0 0 0 0 0 +10.052 7.075 -1.542 0 0 0 0 0 0 0 +10.057 7.102 -1.545 0 0 0 0 0 0 0 +10.05 7.144 -1.547 0 0 0 0 0 0 0 +10.059 7.198 -1.553 0 0 0 0 0 0 0 +10.072 7.255 -1.559 0 0 0 0 0 0 0 +10.078 7.308 -1.564 0 0 0 0 0 0 0 +10.078 7.356 -1.568 0 0 0 0 0 0 0 +10.086 7.411 -1.574 0 0 0 0 0 0 0 +10.082 7.457 -1.577 0 0 0 0 0 0 0 +10.08 7.479 -1.579 0 0 0 0 0 0 0 +10.053 7.509 -1.578 0 0 0 0 0 0 0 +10.107 7.598 -1.592 0 0 0 0 0 0 0 +10.109 7.649 -1.596 0 0 0 0 0 0 0 +10.096 7.689 -1.598 0 0 0 0 0 0 0 +10.079 7.727 -1.6 0 0 0 0 0 0 0 +10.057 7.76 -1.6 0 0 0 0 0 0 0 +10.054 7.783 -1.602 0 0 0 0 0 0 0 +10.056 7.835 -1.606 0 0 0 0 0 0 0 +10.045 7.878 -1.609 0 0 0 0 0 0 0 +10.027 7.914 -1.61 0 0 0 0 0 0 0 +10.008 7.95 -1.611 0 0 0 0 0 0 0 +10.002 7.997 -1.615 0 0 0 0 0 0 0 +10.006 8.026 -1.618 0 0 0 0 0 0 0 +9.939 8.024 -1.61 0 0 0 0 0 0 0 +6.724 5.474 -1.029 0 0 0 0 0 0 0 +6.722 5.508 -1.032 0 0 0 0 0 0 0 +6.671 5.501 -1.026 0 0 0 0 0 0 0 +6.66 5.527 -1.027 0 0 0 0 0 0 0 +6.646 5.551 -1.027 0 0 0 0 0 0 0 +9.834 8.276 -1.621 0 0 0 0 0 0 0 +9.829 8.325 -1.625 0 0 0 0 0 0 0 +9.798 8.352 -1.624 0 0 0 0 0 0 0 +9.784 8.393 -1.627 0 0 0 0 0 0 0 +9.759 8.425 -1.627 0 0 0 0 0 0 0 +9.74 8.462 -1.628 0 0 0 0 0 0 0 +9.725 8.476 -1.628 0 0 0 0 0 0 0 +9.712 8.518 -1.631 0 0 0 0 0 0 0 +9.682 8.546 -1.63 0 0 0 0 0 0 0 +9.669 8.588 -1.632 0 0 0 0 0 0 0 +9.646 8.622 -1.633 0 0 0 0 0 0 0 +9.615 8.649 -1.632 0 0 0 0 0 0 0 +9.602 8.692 -1.635 0 0 0 0 0 0 0 +9.573 8.721 -1.635 0 0 0 0 0 0 0 +9.574 8.749 -1.638 0 0 0 0 0 0 0 +9.526 8.76 -1.634 0 0 0 0 0 0 0 +9.515 8.805 -1.637 0 0 0 0 0 0 0 +9.465 8.815 -1.633 0 0 0 0 0 0 0 +9.469 8.874 -1.639 0 0 0 0 0 0 0 +9.433 8.896 -1.637 0 0 0 0 0 0 0 +9.419 8.939 -1.64 0 0 0 0 0 0 0 +9.417 8.965 -1.642 0 0 0 0 0 0 0 +9.387 8.993 -1.642 0 0 0 0 0 0 0 +9.372 9.035 -1.645 0 0 0 0 0 0 0 +9.357 9.078 -1.647 0 0 0 0 0 0 0 +9.313 9.092 -1.644 0 0 0 0 0 0 0 +9.302 9.138 -1.648 0 0 0 0 0 0 0 +9.274 9.168 -1.648 0 0 0 0 0 0 0 +9.253 9.176 -1.647 0 0 0 0 0 0 0 +9.235 9.216 -1.649 0 0 0 0 0 0 0 +9.205 9.244 -1.648 0 0 0 0 0 0 0 +9.183 9.28 -1.65 0 0 0 0 0 0 0 +9.144 9.298 -1.648 0 0 0 0 0 0 0 +9.131 9.344 -1.651 0 0 0 0 0 0 0 +9.106 9.377 -1.652 0 0 0 0 0 0 0 +9.085 9.386 -1.651 0 0 0 0 0 0 0 +9.066 9.424 -1.653 0 0 0 0 0 0 0 +9.026 9.443 -1.651 0 0 0 0 0 0 0 +9.001 9.475 -1.652 0 0 0 0 0 0 0 +8.978 9.511 -1.653 0 0 0 0 0 0 0 +8.927 9.517 -1.649 0 0 0 0 0 0 0 +8.926 9.575 -1.655 0 0 0 0 0 0 0 +8.914 9.592 -1.655 0 0 0 0 0 0 0 +8.891 9.629 -1.657 0 0 0 0 0 0 0 +8.865 9.661 -1.658 0 0 0 0 0 0 0 +8.831 9.685 -1.657 0 0 0 0 0 0 0 +8.81 9.723 -1.659 0 0 0 0 0 0 0 +8.787 9.759 -1.661 0 0 0 0 0 0 0 +8.77 9.801 -1.664 0 0 0 0 0 0 0 +8.715 9.771 -1.655 0 0 0 0 0 0 0 +8.711 9.829 -1.661 0 0 0 0 0 0 0 +8.695 9.873 -1.664 0 0 0 0 0 0 0 +8.681 9.92 -1.668 0 0 0 0 0 0 0 +8.654 9.951 -1.669 0 0 0 0 0 0 0 +8.622 9.978 -1.669 0 0 0 0 0 0 0 +8.596 10.011 -1.67 0 0 0 0 0 0 0 +8.583 10.028 -1.67 0 0 0 0 0 0 0 +8.559 10.064 -1.672 0 0 0 0 0 0 0 +8.52 10.082 -1.67 0 0 0 0 0 0 0 +8.493 10.114 -1.671 0 0 0 0 0 0 0 +8.465 10.146 -1.672 0 0 0 0 0 0 0 +8.442 10.183 -1.674 0 0 0 0 0 0 0 +8.413 10.212 -1.675 0 0 0 0 0 0 0 +8.397 10.226 -1.675 0 0 0 0 0 0 0 +8.362 10.249 -1.674 0 0 0 0 0 0 0 +8.335 10.281 -1.675 0 0 0 0 0 0 0 +8.295 10.298 -1.674 0 0 0 0 0 0 0 +8.272 10.336 -1.676 0 0 0 0 0 0 0 +8.23 10.35 -1.674 0 0 0 0 0 0 0 +8.195 10.373 -1.673 0 0 0 0 0 0 0 +8.182 10.39 -1.674 0 0 0 0 0 0 0 +8.164 10.434 -1.677 0 0 0 0 0 0 0 +8.124 10.451 -1.676 0 0 0 0 0 0 0 +8.097 10.484 -1.677 0 0 0 0 0 0 0 +8.067 10.513 -1.678 0 0 0 0 0 0 0 +8.039 10.544 -1.679 0 0 0 0 0 0 0 +8.009 10.574 -1.68 0 0 0 0 0 0 0 +8.003 10.601 -1.682 0 0 0 0 0 0 0 +7.971 10.628 -1.682 0 0 0 0 0 0 0 +7.941 10.657 -1.683 0 0 0 0 0 0 0 +7.908 10.682 -1.683 0 0 0 0 0 0 0 +7.88 10.715 -1.685 0 0 0 0 0 0 0 +7.848 10.743 -1.685 0 0 0 0 0 0 0 +7.825 10.782 -1.688 0 0 0 0 0 0 0 +7.804 10.824 -1.691 0 0 0 0 0 0 0 +7.78 10.827 -1.689 0 0 0 0 0 0 0 +7.747 10.853 -1.689 0 0 0 0 0 0 0 +7.72 10.887 -1.691 0 0 0 0 0 0 0 +7.682 10.906 -1.69 0 0 0 0 0 0 0 +7.661 10.948 -1.693 0 0 0 0 0 0 0 +7.622 10.965 -1.692 0 0 0 0 0 0 0 +7.595 11.001 -1.694 0 0 0 0 0 0 0 +7.584 11.022 -1.696 0 0 0 0 0 0 0 +7.542 11.035 -1.694 0 0 0 0 0 0 0 +7.509 11.062 -1.694 0 0 0 0 0 0 0 +7.48 11.093 -1.696 0 0 0 0 0 0 0 +7.441 11.11 -1.695 0 0 0 0 0 0 0 +7.405 11.132 -1.694 0 0 0 0 0 0 0 +7.382 11.135 -1.693 0 0 0 0 0 0 0 +7.361 11.18 -1.697 0 0 0 0 0 0 0 +7.322 11.196 -1.696 0 0 0 0 0 0 0 +7.301 11.242 -1.699 0 0 0 0 0 0 0 +7.261 11.257 -1.698 0 0 0 0 0 0 0 +7.237 11.298 -1.701 0 0 0 0 0 0 0 +7.21 11.334 -1.703 0 0 0 0 0 0 0 +7.185 11.334 -1.701 0 0 0 0 0 0 0 +7.151 11.36 -1.702 0 0 0 0 0 0 0 +7.119 11.387 -1.703 0 0 0 0 0 0 0 +7.08 11.404 -1.702 0 0 0 0 0 0 0 +7.051 11.438 -1.704 0 0 0 0 0 0 0 +7.011 11.454 -1.703 0 0 0 0 0 0 0 +6.978 11.481 -1.704 0 0 0 0 0 0 0 +6.935 11.491 -1.702 0 0 0 0 0 0 0 +6.926 11.517 -1.704 0 0 0 0 0 0 0 +6.894 11.545 -1.705 0 0 0 0 0 0 0 +6.87 11.587 -1.709 0 0 0 0 0 0 0 +6.836 11.614 -1.71 0 0 0 0 0 0 0 +6.807 11.647 -1.712 0 0 0 0 0 0 0 +6.776 11.679 -1.713 0 0 0 0 0 0 0 +6.745 11.71 -1.715 0 0 0 0 0 0 0 +6.723 11.714 -1.714 0 0 0 0 0 0 0 +6.701 11.761 -1.718 0 0 0 0 0 0 0 +6.657 11.77 -1.716 0 0 0 0 0 0 0 +6.643 11.83 -1.722 0 0 0 0 0 0 0 +6.634 11.903 -1.731 0 0 0 0 0 0 0 +6.639 12 -1.743 0 0 0 0 0 0 0 +6.641 12.092 -1.755 0 0 0 0 0 0 0 +6.659 12.215 -1.771 0 0 0 0 0 0 0 +6.688 12.314 -1.786 0 0 0 0 0 0 0 +6.691 12.412 -1.798 0 0 0 0 0 0 0 +6.703 12.529 -1.813 0 0 0 0 0 0 0 +6.712 12.641 -1.828 0 0 0 0 0 0 0 +6.706 12.725 -1.838 0 0 0 0 0 0 0 +6.72 12.849 -1.855 0 0 0 0 0 0 0 +6.74 12.935 -1.867 0 0 0 0 0 0 0 +6.704 12.965 -1.868 0 0 0 0 0 0 0 +6.665 12.991 -1.869 0 0 0 0 0 0 0 +6.623 13.009 -1.868 0 0 0 0 0 0 0 +6.591 13.047 -1.871 0 0 0 0 0 0 0 +6.559 13.085 -1.874 0 0 0 0 0 0 0 +6.51 13.09 -1.871 0 0 0 0 0 0 0 +6.476 13.125 -1.874 0 0 0 0 0 0 0 +6.456 13.136 -1.874 0 0 0 0 0 0 0 +6.411 13.15 -1.873 0 0 0 0 0 0 0 +6.374 13.179 -1.874 0 0 0 0 0 0 0 +6.326 13.184 -1.872 0 0 0 0 0 0 0 +6.279 13.193 -1.87 0 0 0 0 0 0 0 +6.233 13.202 -1.869 0 0 0 0 0 0 0 +6.194 13.229 -1.87 0 0 0 0 0 0 0 +6.174 13.24 -1.87 0 0 0 0 0 0 0 +6.135 13.265 -1.871 0 0 0 0 0 0 0 +6.09 13.277 -1.87 0 0 0 0 0 0 0 +6.045 13.289 -1.869 0 0 0 0 0 0 0 +5.992 13.283 -1.865 0 0 0 0 0 0 0 +5.941 13.282 -1.862 0 0 0 0 0 0 0 +5.896 13.293 -1.86 0 0 0 0 0 0 0 +5.872 13.295 -1.859 0 0 0 0 0 0 0 +5.827 13.304 -1.858 0 0 0 0 0 0 0 +5.783 13.319 -1.857 0 0 0 0 0 0 0 +5.737 13.326 -1.856 0 0 0 0 0 0 0 +5.692 13.339 -1.855 0 0 0 0 0 0 0 +5.642 13.336 -1.852 0 0 0 0 0 0 0 +5.604 13.363 -1.853 0 0 0 0 0 0 0 +5.576 13.356 -1.851 0 0 0 0 0 0 0 +5.53 13.364 -1.849 0 0 0 0 0 0 0 +5.487 13.377 -1.849 0 0 0 0 0 0 0 +5.441 13.385 -1.847 0 0 0 0 0 0 0 +5.388 13.375 -1.843 0 0 0 0 0 0 0 +5.345 13.39 -1.843 0 0 0 0 0 0 0 +5.297 13.392 -1.841 0 0 0 0 0 0 0 +5.273 13.393 -1.839 0 0 0 0 0 0 0 +5.227 13.4 -1.838 0 0 0 0 0 0 0 +5.184 13.415 -1.838 0 0 0 0 0 0 0 +5.139 13.424 -1.837 0 0 0 0 0 0 0 +5.088 13.416 -1.833 0 0 0 0 0 0 0 +5.041 13.419 -1.831 0 0 0 0 0 0 0 +4.997 13.431 -1.83 0 0 0 0 0 0 0 +4.955 13.446 -1.83 0 0 0 0 0 0 0 +4.93 13.445 -1.829 0 0 0 0 0 0 0 +4.881 13.44 -1.826 0 0 0 0 0 0 0 +4.834 13.444 -1.824 0 0 0 0 0 0 0 +4.785 13.438 -1.821 0 0 0 0 0 0 0 +4.741 13.448 -1.82 0 0 0 0 0 0 0 +4.692 13.444 -1.818 0 0 0 0 0 0 0 +4.653 13.47 -1.819 0 0 0 0 0 0 0 +4.63 13.471 -1.818 0 0 0 0 0 0 0 +4.589 13.49 -1.819 0 0 0 0 0 0 0 +4.55 13.513 -1.82 0 0 0 0 0 0 0 +4.506 13.522 -1.819 0 0 0 0 0 0 0 +4.473 13.564 -1.824 0 0 0 0 0 0 0 +4.426 13.567 -1.822 0 0 0 0 0 0 0 +4.389 13.598 -1.825 0 0 0 0 0 0 0 +4.365 13.595 -1.823 0 0 0 0 0 0 0 +4.319 13.601 -1.822 0 0 0 0 0 0 0 +4.276 13.613 -1.822 0 0 0 0 0 0 0 +4.236 13.636 -1.823 0 0 0 0 0 0 0 +4.188 13.632 -1.821 0 0 0 0 0 0 0 +4.145 13.643 -1.82 0 0 0 0 0 0 0 +4.098 13.643 -1.818 0 0 0 0 0 0 0 +4.077 13.651 -1.819 0 0 0 0 0 0 0 +4.026 13.635 -1.814 0 0 0 0 0 0 0 +3.981 13.642 -1.814 0 0 0 0 0 0 0 +3.929 13.624 -1.809 0 0 0 0 0 0 0 +3.875 13.597 -1.803 0 0 0 0 0 0 0 +3.828 13.593 -1.801 0 0 0 0 0 0 0 +3.775 13.569 -1.796 0 0 0 0 0 0 0 +3.756 13.583 -1.797 0 0 0 0 0 0 0 +3.709 13.577 -1.794 0 0 0 0 0 0 0 +3.664 13.581 -1.793 0 0 0 0 0 0 0 +3.613 13.562 -1.789 0 0 0 0 0 0 0 +3.571 13.577 -1.789 0 0 0 0 0 0 0 +3.517 13.544 -1.783 0 0 0 0 0 0 0 +1.75 6.879 -0.807 0 0 0 0 0 0 0 +1.731 6.896 -0.808 0 0 0 0 0 0 0 +1.721 6.899 -0.808 0 0 0 0 0 0 0 +1.862 7.555 -0.903 0 0 0 0 0 0 0 +2.005 8.24 -1.002 0 0 0 0 0 0 0 +2.31 9.605 -1.2 0 0 0 0 0 0 0 +2.423 10.353 -1.307 0 0 0 0 0 0 0 +2.426 10.511 -1.329 0 0 0 0 0 0 0 +2.515 10.972 -1.395 0 0 0 0 0 0 0 +2.499 11.059 -1.407 0 0 0 0 0 0 0 +2.554 11.465 -1.465 0 0 0 0 0 0 0 +2.689 12.433 -1.602 0 0 0 0 0 0 0 +2.642 12.402 -1.597 0 0 0 0 0 0 0 +2.619 12.486 -1.608 0 0 0 0 0 0 0 +2.618 12.579 -1.621 0 0 0 0 0 0 0 +2.581 12.599 -1.622 0 0 0 0 0 0 0 +2.542 12.611 -1.623 0 0 0 0 0 0 0 +2.505 12.633 -1.625 0 0 0 0 0 0 0 +2.466 12.64 -1.625 0 0 0 0 0 0 0 +2.43 12.668 -1.628 0 0 0 0 0 0 0 +2.389 12.671 -1.627 0 0 0 0 0 0 0 +2.367 12.663 -1.625 0 0 0 0 0 0 0 +2.328 12.675 -1.626 0 0 0 0 0 0 0 +2.29 12.692 -1.627 0 0 0 0 0 0 0 +2.244 12.667 -1.623 0 0 0 0 0 0 0 +0.589 3.496 -0.304 0 0 0 0 0 0 0 +0.583 3.528 -0.308 0 0 0 0 0 0 0 +0.57 3.518 -0.306 0 0 0 0 0 0 0 +0.556 3.502 -0.304 0 0 0 0 0 0 0 +0.548 3.485 -0.301 0 0 0 0 0 0 0 +0.537 3.487 -0.301 0 0 0 0 0 0 0 +0.527 3.496 -0.302 0 0 0 0 0 0 0 +0.521 3.531 -0.307 0 0 0 0 0 0 0 +0.51 3.533 -0.307 0 0 0 0 0 0 0 +0.514 3.634 -0.321 0 0 0 0 0 0 0 +0.48 3.485 -0.3 0 0 0 0 0 0 0 +0.455 3.345 -0.28 0 0 0 0 0 0 0 +0.449 3.377 -0.284 0 0 0 0 0 0 0 +1.688 12.777 -1.626 0 0 0 0 0 0 0 +0.425 3.285 -0.271 0 0 0 0 0 0 0 +1.649 12.787 -1.627 0 0 0 0 0 0 0 +1.608 12.788 -1.626 0 0 0 0 0 0 0 +1.568 12.797 -1.627 0 0 0 0 0 0 0 +1.547 12.787 -1.625 0 0 0 0 0 0 0 +1.507 12.794 -1.625 0 0 0 0 0 0 0 +1.467 12.797 -1.625 0 0 0 0 0 0 0 +1.427 12.803 -1.625 0 0 0 0 0 0 0 +1.386 12.806 -1.625 0 0 0 0 0 0 0 +1.347 12.824 -1.627 0 0 0 0 0 0 0 +1.307 12.83 -1.627 0 0 0 0 0 0 0 +1.288 12.844 -1.629 0 0 0 0 0 0 0 +1.248 12.85 -1.629 0 0 0 0 0 0 0 +1.208 12.86 -1.63 0 0 0 0 0 0 0 +1.169 12.873 -1.632 0 0 0 0 0 0 0 +1.129 12.885 -1.633 0 0 0 0 0 0 0 +1.091 12.912 -1.636 0 0 0 0 0 0 0 +1.052 12.943 -1.64 0 0 0 0 0 0 0 +1.014 12.976 -1.644 0 0 0 0 0 0 0 +0.997 13.017 -1.65 0 0 0 0 0 0 0 +0.955 13.004 -1.648 0 0 0 0 0 0 0 +0.915 13.021 -1.65 0 0 0 0 0 0 0 +0.873 13.01 -1.648 0 0 0 0 0 0 0 +0.848 13.25 -1.681 0 0 0 0 0 0 0 +0.835 13.709 -1.746 0 0 0 0 0 0 0 +0.794 13.755 -1.752 0 0 0 0 0 0 0 +0.773 13.764 -1.753 0 0 0 0 0 0 0 +0.732 13.796 -1.758 0 0 0 0 0 0 0 +0.688 13.798 -1.758 0 0 0 0 0 0 0 +0.646 13.82 -1.76 0 0 0 0 0 0 0 +0.603 13.834 -1.762 0 0 0 0 0 0 0 +0.561 13.865 -1.766 0 0 0 0 0 0 0 +0.518 13.889 -1.769 0 0 0 0 0 0 0 +0.496 13.898 -1.77 0 0 0 0 0 0 0 +0.454 13.925 -1.774 0 0 0 0 0 0 0 +0.409 13.91 -1.772 0 0 0 0 0 0 0 +0.332 14.32 -1.83 0 0 0 0 0 0 0 +0.282 14.072 -1.794 0 0 0 0 0 0 0 +0.236 14.005 -1.785 0 0 0 0 0 0 0 +0.214 13.974 -1.78 0 0 0 0 0 0 0 +0.17 13.979 -1.781 0 0 0 0 0 0 0 +0.126 13.973 -1.78 0 0 0 0 0 0 0 +0.082 13.973 -1.78 0 0 0 0 0 0 0 +0.038 13.982 -1.781 0 0 0 0 0 0 0 +-0.006 13.986 -1.782 0 0 0 0 0 0 0 +-0.05 13.98 -1.781 0 0 0 0 0 0 0 +-0.072 13.981 -1.781 0 0 0 0 0 0 0 +-0.115 13.977 -1.781 0 0 0 0 0 0 0 +-0.16 13.989 -1.782 0 0 0 0 0 0 0 +-0.204 13.996 -1.783 0 0 0 0 0 0 0 +-0.247 13.993 -1.783 0 0 0 0 0 0 0 +-0.291 13.985 -1.782 0 0 0 0 0 0 0 +-0.336 14.001 -1.784 0 0 0 0 0 0 0 +-0.379 13.994 -1.784 0 0 0 0 0 0 0 +-0.402 13.996 -1.784 0 0 0 0 0 0 0 +-0.446 14.014 -1.787 0 0 0 0 0 0 0 +-0.49 14.001 -1.785 0 0 0 0 0 0 0 +-0.534 14.007 -1.786 0 0 0 0 0 0 0 +-0.578 14.013 -1.787 0 0 0 0 0 0 0 +-0.622 14.005 -1.786 0 0 0 0 0 0 0 +-0.666 13.999 -1.786 0 0 0 0 0 0 0 +-0.689 14.016 -1.788 0 0 0 0 0 0 0 +-0.732 14.002 -1.787 0 0 0 0 0 0 0 +-0.777 14.01 -1.788 0 0 0 0 0 0 0 +-0.821 14.005 -1.788 0 0 0 0 0 0 0 +-0.865 14.002 -1.788 0 0 0 0 0 0 0 +-0.909 14.006 -1.789 0 0 0 0 0 0 0 +-0.952 13.993 -1.787 0 0 0 0 0 0 0 +-0.975 14.005 -1.789 0 0 0 0 0 0 0 +-1.019 13.996 -1.788 0 0 0 0 0 0 0 +-1.076 14.176 -1.814 0 0 0 0 0 0 0 +-1.111 14.051 -1.797 0 0 0 0 0 0 0 +-1.16 14.108 -1.806 0 0 0 0 0 0 0 +-1.2 14.051 -1.798 0 0 0 0 0 0 0 +-1.24 13.998 -1.791 0 0 0 0 0 0 0 +-1.283 13.978 -1.789 0 0 0 0 0 0 0 +-1.305 13.976 -1.789 0 0 0 0 0 0 0 +-1.347 13.96 -1.787 0 0 0 0 0 0 0 +-1.392 13.962 -1.788 0 0 0 0 0 0 0 +-1.436 13.961 -1.789 0 0 0 0 0 0 0 +-1.479 13.951 -1.788 0 0 0 0 0 0 0 +-1.525 13.962 -1.79 0 0 0 0 0 0 0 +-1.569 13.961 -1.791 0 0 0 0 0 0 0 +-1.591 13.957 -1.79 0 0 0 0 0 0 0 +-1.634 13.948 -1.79 0 0 0 0 0 0 0 +-1.679 13.948 -1.791 0 0 0 0 0 0 0 +-1.723 13.949 -1.791 0 0 0 0 0 0 0 +-1.769 13.957 -1.793 0 0 0 0 0 0 0 +-1.812 13.948 -1.793 0 0 0 0 0 0 0 +-1.856 13.944 -1.793 0 0 0 0 0 0 0 +-1.878 13.943 -1.793 0 0 0 0 0 0 0 +-1.924 13.949 -1.795 0 0 0 0 0 0 0 +-1.967 13.941 -1.795 0 0 0 0 0 0 0 +-2.011 13.934 -1.795 0 0 0 0 0 0 0 +-2.057 13.94 -1.796 0 0 0 0 0 0 0 +-2.102 13.945 -1.798 0 0 0 0 0 0 0 +-2.147 13.942 -1.799 0 0 0 0 0 0 0 +-2.167 13.933 -1.798 0 0 0 0 0 0 0 +-2.211 13.924 -1.798 0 0 0 0 0 0 0 +-2.257 13.931 -1.8 0 0 0 0 0 0 0 +-2.303 13.939 -1.802 0 0 0 0 0 0 0 +-2.346 13.928 -1.801 0 0 0 0 0 0 0 +-2.389 13.913 -1.8 0 0 0 0 0 0 0 +-2.434 13.915 -1.802 0 0 0 0 0 0 0 +-2.458 13.921 -1.803 0 0 0 0 0 0 0 +-2.501 13.909 -1.802 0 0 0 0 0 0 0 +-2.548 13.921 -1.805 0 0 0 0 0 0 0 +-2.591 13.911 -1.805 0 0 0 0 0 0 0 +-2.636 13.908 -1.806 0 0 0 0 0 0 0 +-2.685 13.925 -1.809 0 0 0 0 0 0 0 +-2.372 12.08 -1.544 0 0 0 0 0 0 0 +-2.367 11.953 -1.527 0 0 0 0 0 0 0 +-2.385 11.851 -1.513 0 0 0 0 0 0 0 +-2.402 11.74 -1.498 0 0 0 0 0 0 0 +-2.418 11.632 -1.484 0 0 0 0 0 0 0 +-2.435 11.531 -1.47 0 0 0 0 0 0 0 +-2.451 11.427 -1.456 0 0 0 0 0 0 0 +-2.463 11.309 -1.44 0 0 0 0 0 0 0 +-2.478 11.21 -1.427 0 0 0 0 0 0 0 +-2.472 11.1 -1.412 0 0 0 0 0 0 0 +-2.49 11.014 -1.4 0 0 0 0 0 0 0 +-2.507 10.929 -1.389 0 0 0 0 0 0 0 +-2.517 10.813 -1.373 0 0 0 0 0 0 0 +-2.53 10.719 -1.361 0 0 0 0 0 0 0 +-2.544 10.628 -1.349 0 0 0 0 0 0 0 +-2.558 10.537 -1.337 0 0 0 0 0 0 0 +-2.553 10.444 -1.324 0 0 0 0 0 0 0 +-2.568 10.365 -1.313 0 0 0 0 0 0 0 +-2.575 10.255 -1.299 0 0 0 0 0 0 0 +-2.589 10.172 -1.288 0 0 0 0 0 0 0 +-2.605 10.103 -1.279 0 0 0 0 0 0 0 +-2.612 9.998 -1.265 0 0 0 0 0 0 0 +-2.625 9.921 -1.255 0 0 0 0 0 0 0 +-2.623 9.85 -1.245 0 0 0 0 0 0 0 +-2.633 9.763 -1.233 0 0 0 0 0 0 0 +-2.648 9.696 -1.225 0 0 0 0 0 0 0 +-2.658 9.615 -1.214 0 0 0 0 0 0 0 +-2.667 9.528 -1.202 0 0 0 0 0 0 0 +-2.681 9.464 -1.194 0 0 0 0 0 0 0 +-2.693 9.391 -1.185 0 0 0 0 0 0 0 +-2.667 9.244 -1.164 0 0 0 0 0 0 0 +-2.701 9.145 -1.152 0 0 0 0 0 0 0 +-2.756 9.121 -1.151 0 0 0 0 0 0 0 +-2.777 9.087 -1.147 0 0 0 0 0 0 0 +-2.787 9.018 -1.138 0 0 0 0 0 0 0 +-2.801 8.962 -1.131 0 0 0 0 0 0 0 +-2.804 8.923 -1.126 0 0 0 0 0 0 0 +-2.828 8.804 -1.111 0 0 0 0 0 0 0 +-2.848 8.772 -1.107 0 0 0 0 0 0 0 +-2.859 8.712 -1.1 0 0 0 0 0 0 0 +-2.863 8.632 -1.089 0 0 0 0 0 0 0 +-2.887 8.612 -1.087 0 0 0 0 0 0 0 +-2.889 8.575 -1.083 0 0 0 0 0 0 0 +-2.901 8.519 -1.076 0 0 0 0 0 0 0 +-2.922 8.493 -1.073 0 0 0 0 0 0 0 +-2.929 8.43 -1.065 0 0 0 0 0 0 0 +-2.945 8.388 -1.06 0 0 0 0 0 0 0 +-2.959 8.346 -1.055 0 0 0 0 0 0 0 +-2.968 8.286 -1.048 0 0 0 0 0 0 0 +-2.97 8.251 -1.043 0 0 0 0 0 0 0 +-2.983 8.205 -1.038 0 0 0 0 0 0 0 +-2.994 8.156 -1.032 0 0 0 0 0 0 0 +-3.008 8.115 -1.027 0 0 0 0 0 0 0 +-3.025 8.083 -1.024 0 0 0 0 0 0 0 +-3.04 8.044 -1.019 0 0 0 0 0 0 0 +-3.058 8.016 -1.016 0 0 0 0 0 0 0 +-3.066 8 -1.015 0 0 0 0 0 0 0 +-3.079 7.959 -1.01 0 0 0 0 0 0 0 +-3.096 7.927 -1.006 0 0 0 0 0 0 0 +-3.112 7.895 -1.003 0 0 0 0 0 0 0 +-3.125 7.856 -0.999 0 0 0 0 0 0 0 +-3.143 7.83 -0.996 0 0 0 0 0 0 0 +-3.162 7.805 -0.994 0 0 0 0 0 0 0 +-3.175 7.767 -0.99 0 0 0 0 0 0 0 +-3.173 7.728 -0.984 0 0 0 0 0 0 0 +-3.192 7.705 -0.982 0 0 0 0 0 0 0 +-3.207 7.673 -0.979 0 0 0 0 0 0 0 +-3.218 7.632 -0.974 0 0 0 0 0 0 0 +-3.242 7.621 -0.974 0 0 0 0 0 0 0 +-3.252 7.578 -0.969 0 0 0 0 0 0 0 +-3.267 7.546 -0.966 0 0 0 0 0 0 0 +-3.269 7.519 -0.962 0 0 0 0 0 0 0 +-3.283 7.485 -0.959 0 0 0 0 0 0 0 +-3.297 7.455 -0.956 0 0 0 0 0 0 0 +-3.315 7.432 -0.954 0 0 0 0 0 0 0 +-3.321 7.382 -0.948 0 0 0 0 0 0 0 +-3.34 7.362 -0.946 0 0 0 0 0 0 0 +-3.366 7.359 -0.947 0 0 0 0 0 0 0 +-3.361 7.318 -0.942 0 0 0 0 0 0 0 +-3.377 7.291 -0.939 0 0 0 0 0 0 0 +-3.403 7.287 -0.94 0 0 0 0 0 0 0 +-3.421 7.266 -0.939 0 0 0 0 0 0 0 +-3.434 7.234 -0.935 0 0 0 0 0 0 0 +-3.456 7.221 -0.935 0 0 0 0 0 0 0 +-3.467 7.187 -0.931 0 0 0 0 0 0 0 +-3.469 7.162 -0.928 0 0 0 0 0 0 0 +-3.488 7.144 -0.927 0 0 0 0 0 0 0 +-3.573 7.261 -0.947 0 0 0 0 0 0 0 +-3.617 7.292 -0.954 0 0 0 0 0 0 0 +-3.649 7.3 -0.957 0 0 0 0 0 0 0 +-3.672 7.289 -0.957 0 0 0 0 0 0 0 +-3.681 7.249 -0.953 0 0 0 0 0 0 0 +-3.707 7.244 -0.954 0 0 0 0 0 0 0 +-3.731 7.263 -0.958 0 0 0 0 0 0 0 +-3.76 7.264 -0.96 0 0 0 0 0 0 0 +-3.792 7.27 -0.962 0 0 0 0 0 0 0 +-3.812 7.252 -0.962 0 0 0 0 0 0 0 +-3.86 7.232 -0.962 0 0 0 0 0 0 0 +-3.874 7.204 -0.96 0 0 0 0 0 0 0 +-3.881 7.191 -0.959 0 0 0 0 0 0 0 +-3.903 7.177 -0.958 0 0 0 0 0 0 0 +-3.925 7.163 -0.958 0 0 0 0 0 0 0 +-3.945 7.147 -0.957 0 0 0 0 0 0 0 +-3.971 7.14 -0.958 0 0 0 0 0 0 0 +-3.993 7.127 -0.958 0 0 0 0 0 0 0 +-4.024 7.13 -0.961 0 0 0 0 0 0 0 +-4.04 7.133 -0.962 0 0 0 0 0 0 0 +-4.072 7.137 -0.965 0 0 0 0 0 0 0 +-4.107 7.147 -0.969 0 0 0 0 0 0 0 +-4.133 7.139 -0.969 0 0 0 0 0 0 0 +-4.149 7.115 -0.968 0 0 0 0 0 0 0 +-4.193 7.138 -0.974 0 0 0 0 0 0 0 +-4.231 7.152 -0.978 0 0 0 0 0 0 0 +-4.251 7.161 -0.981 0 0 0 0 0 0 0 +-4.273 7.146 -0.98 0 0 0 0 0 0 0 +-4.312 7.162 -0.985 0 0 0 0 0 0 0 +-4.345 7.165 -0.988 0 0 0 0 0 0 0 +-4.373 7.16 -0.989 0 0 0 0 0 0 0 +-4.412 7.173 -0.994 0 0 0 0 0 0 0 +-4.45 7.184 -0.998 0 0 0 0 0 0 0 +-4.481 7.184 -1 0 0 0 0 0 0 0 +-4.501 7.192 -1.003 0 0 0 0 0 0 0 +-4.538 7.2 -1.006 0 0 0 0 0 0 0 +-4.567 7.195 -1.008 0 0 0 0 0 0 0 +-4.594 7.189 -1.01 0 0 0 0 0 0 0 +-4.635 7.203 -1.014 0 0 0 0 0 0 0 +-4.658 7.189 -1.014 0 0 0 0 0 0 0 +-4.695 7.197 -1.018 0 0 0 0 0 0 0 +-4.715 7.203 -1.02 0 0 0 0 0 0 0 +-4.751 7.208 -1.024 0 0 0 0 0 0 0 +-4.796 7.228 -1.03 0 0 0 0 0 0 0 +-4.833 7.234 -1.033 0 0 0 0 0 0 0 +-4.874 7.245 -1.038 0 0 0 0 0 0 0 +-4.909 7.248 -1.041 0 0 0 0 0 0 0 +-4.962 7.278 -1.049 0 0 0 0 0 0 0 +-5.005 7.292 -1.054 0 0 0 0 0 0 0 +-4.943 7.177 -1.035 0 0 0 0 0 0 0 +-5.064 7.305 -1.06 0 0 0 0 0 0 0 +-7.286 10.458 -1.606 0 0 0 0 0 0 0 +-7.303 10.413 -1.602 0 0 0 0 0 0 0 +-7.317 10.364 -1.598 0 0 0 0 0 0 0 +-7.326 10.307 -1.592 0 0 0 0 0 0 0 +-7.336 10.253 -1.587 0 0 0 0 0 0 0 +-7.333 10.214 -1.582 0 0 0 0 0 0 0 +-7.324 10.135 -1.572 0 0 0 0 0 0 0 +-7.347 10.099 -1.57 0 0 0 0 0 0 0 +-7.372 10.066 -1.568 0 0 0 0 0 0 0 +-7.366 9.992 -1.559 0 0 0 0 0 0 0 +-7.374 9.937 -1.553 0 0 0 0 0 0 0 +-7.378 9.877 -1.547 0 0 0 0 0 0 0 +-7.374 9.84 -1.542 0 0 0 0 0 0 0 +-7.384 9.788 -1.537 0 0 0 0 0 0 0 +-7.392 9.735 -1.532 0 0 0 0 0 0 0 +-7.396 9.677 -1.526 0 0 0 0 0 0 0 +-7.402 9.622 -1.52 0 0 0 0 0 0 0 +-7.426 9.591 -1.519 0 0 0 0 0 0 0 +-7.438 9.544 -1.515 0 0 0 0 0 0 0 +-7.389 9.45 -1.5 0 0 0 0 0 0 0 +-7.434 9.447 -1.504 0 0 0 0 0 0 0 +-7.449 9.405 -1.5 0 0 0 0 0 0 0 +-7.438 9.33 -1.491 0 0 0 0 0 0 0 +-7.444 9.277 -1.486 0 0 0 0 0 0 0 +-7.449 9.225 -1.48 0 0 0 0 0 0 0 +-7.457 9.175 -1.475 0 0 0 0 0 0 0 +-7.487 9.153 -1.476 0 0 0 0 0 0 0 +-7.481 9.117 -1.471 0 0 0 0 0 0 0 +-7.485 9.063 -1.466 0 0 0 0 0 0 0 +-7.494 9.016 -1.461 0 0 0 0 0 0 0 +-7.506 8.973 -1.458 0 0 0 0 0 0 0 +-7.513 8.923 -1.453 0 0 0 0 0 0 0 +-7.501 8.853 -1.444 0 0 0 0 0 0 0 +-7.528 8.828 -1.444 0 0 0 0 0 0 0 +-7.48 8.743 -1.431 0 0 0 0 0 0 0 +-7.506 8.718 -1.43 0 0 0 0 0 0 0 +-7.514 8.672 -1.426 0 0 0 0 0 0 0 +-7.519 8.623 -1.421 0 0 0 0 0 0 0 +-7.528 8.579 -1.417 0 0 0 0 0 0 0 +-7.534 8.531 -1.413 0 0 0 0 0 0 0 +-7.541 8.485 -1.409 0 0 0 0 0 0 0 +-7.533 8.45 -1.404 0 0 0 0 0 0 0 +-7.539 8.402 -1.4 0 0 0 0 0 0 0 +-7.549 8.361 -1.396 0 0 0 0 0 0 0 +-7.561 8.321 -1.393 0 0 0 0 0 0 0 +-7.568 8.277 -1.389 0 0 0 0 0 0 0 +-7.566 8.222 -1.384 0 0 0 0 0 0 0 +-7.576 8.181 -1.38 0 0 0 0 0 0 0 +-7.566 8.144 -1.375 0 0 0 0 0 0 0 +-7.57 8.097 -1.371 0 0 0 0 0 0 0 +-7.587 8.065 -1.369 0 0 0 0 0 0 0 +-10.547 11.155 -1.975 0 0 0 0 0 0 0 +-10.575 11.115 -1.974 0 0 0 0 0 0 0 +-10.611 11.083 -1.974 0 0 0 0 0 0 0 +-10.66 11.064 -1.977 0 0 0 0 0 0 0 +-10.683 11.053 -1.978 0 0 0 0 0 0 0 +-10.716 11.018 -1.978 0 0 0 0 0 0 0 +-10.77 11.004 -1.982 0 0 0 0 0 0 0 +-10.811 10.977 -1.983 0 0 0 0 0 0 0 +-10.842 10.939 -1.982 0 0 0 0 0 0 0 +-10.886 10.915 -1.984 0 0 0 0 0 0 0 +-10.931 10.892 -1.986 0 0 0 0 0 0 0 +-10.984 10.876 -1.99 0 0 0 0 0 0 0 +-11.012 10.869 -1.992 0 0 0 0 0 0 0 +-11.053 10.842 -1.994 0 0 0 0 0 0 0 +-11.1 10.819 -1.996 0 0 0 0 0 0 0 +-11.137 10.787 -1.997 0 0 0 0 0 0 0 +-11.188 10.769 -2 0 0 0 0 0 0 0 +-11.233 10.744 -2.002 0 0 0 0 0 0 0 +-11.275 10.717 -2.004 0 0 0 0 0 0 0 +-11.298 10.705 -2.005 0 0 0 0 0 0 0 +-11.341 10.679 -2.007 0 0 0 0 0 0 0 +-11.379 10.647 -2.008 0 0 0 0 0 0 0 +-11.405 10.605 -2.006 0 0 0 0 0 0 0 +-11.441 10.572 -2.007 0 0 0 0 0 0 0 +-11.475 10.536 -2.007 0 0 0 0 0 0 0 +-11.497 10.49 -2.005 0 0 0 0 0 0 0 +-11.518 10.476 -2.006 0 0 0 0 0 0 0 +-11.548 10.437 -2.005 0 0 0 0 0 0 0 +-11.572 10.393 -2.004 0 0 0 0 0 0 0 +-11.596 10.349 -2.002 0 0 0 0 0 0 0 +-11.619 10.304 -2 0 0 0 0 0 0 0 +-11.649 10.265 -2 0 0 0 0 0 0 0 +-11.684 10.231 -2 0 0 0 0 0 0 0 +-11.695 10.209 -1.999 0 0 0 0 0 0 0 +-11.724 10.169 -1.999 0 0 0 0 0 0 0 +-11.75 10.127 -1.998 0 0 0 0 0 0 0 +-11.784 10.092 -1.998 0 0 0 0 0 0 0 +-11.814 10.053 -1.998 0 0 0 0 0 0 0 +-11.842 10.014 -1.997 0 0 0 0 0 0 0 +-11.875 9.978 -1.998 0 0 0 0 0 0 0 +-11.882 9.951 -1.996 0 0 0 0 0 0 0 +-11.925 9.924 -1.998 0 0 0 0 0 0 0 +-11.965 9.894 -2 0 0 0 0 0 0 0 +-11.99 9.851 -1.999 0 0 0 0 0 0 0 +-12.021 9.814 -1.999 0 0 0 0 0 0 0 +-12.055 9.778 -1.999 0 0 0 0 0 0 0 +-12.087 9.742 -1.999 0 0 0 0 0 0 0 +-12.105 9.694 -1.997 0 0 0 0 0 0 0 +-12.125 9.678 -1.998 0 0 0 0 0 0 0 +-12.145 9.632 -1.996 0 0 0 0 0 0 0 +-12.175 9.593 -1.996 0 0 0 0 0 0 0 +-12.203 9.554 -1.996 0 0 0 0 0 0 0 +-12.229 9.512 -1.995 0 0 0 0 0 0 0 +-12.257 9.472 -1.995 0 0 0 0 0 0 0 +-12.288 9.435 -1.995 0 0 0 0 0 0 0 +-12.292 9.407 -1.993 0 0 0 0 0 0 0 +-12.311 9.36 -1.991 0 0 0 0 0 0 0 +-12.332 9.315 -1.99 0 0 0 0 0 0 0 +-12.363 9.278 -1.99 0 0 0 0 0 0 0 +-12.393 9.24 -1.99 0 0 0 0 0 0 0 +-12.414 9.195 -1.989 0 0 0 0 0 0 0 +-12.45 9.161 -1.99 0 0 0 0 0 0 0 +-12.462 9.14 -1.99 0 0 0 0 0 0 0 +-12.488 9.099 -1.989 0 0 0 0 0 0 0 +-12.528 9.067 -1.991 0 0 0 0 0 0 0 +-12.548 9.022 -1.99 0 0 0 0 0 0 0 +-12.584 8.989 -1.991 0 0 0 0 0 0 0 +-12.613 8.949 -1.991 0 0 0 0 0 0 0 +-12.642 8.91 -1.991 0 0 0 0 0 0 0 +-12.65 8.886 -1.99 0 0 0 0 0 0 0 +-12.679 8.847 -1.991 0 0 0 0 0 0 0 +-12.702 8.804 -1.99 0 0 0 0 0 0 0 +-12.735 8.768 -1.991 0 0 0 0 0 0 0 +-12.767 8.731 -1.991 0 0 0 0 0 0 0 +-12.791 8.688 -1.991 0 0 0 0 0 0 0 +-12.83 8.656 -1.993 0 0 0 0 0 0 0 +-12.86 8.618 -1.993 0 0 0 0 0 0 0 +-12.861 8.589 -1.991 0 0 0 0 0 0 0 +-6.714 4.439 -0.941 0 0 0 0 0 0 0 +-6.725 4.415 -0.941 0 0 0 0 0 0 0 +-6.727 4.387 -0.939 0 0 0 0 0 0 0 +-6.766 4.382 -0.943 0 0 0 0 0 0 0 +-6.761 4.349 -0.94 0 0 0 0 0 0 0 +-6.79 4.337 -0.942 0 0 0 0 0 0 0 +-13.099 8.309 -1.998 0 0 0 0 0 0 0 +-13.13 8.271 -1.999 0 0 0 0 0 0 0 +-13.163 8.234 -2 0 0 0 0 0 0 0 +-13.184 8.189 -1.999 0 0 0 0 0 0 0 +-13.226 8.158 -2.002 0 0 0 0 0 0 0 +-13.262 8.123 -2.003 0 0 0 0 0 0 0 +-13.27 8.099 -2.003 0 0 0 0 0 0 0 +-13.31 8.067 -2.005 0 0 0 0 0 0 0 +-13.325 8.019 -2.003 0 0 0 0 0 0 0 +-13.349 7.976 -2.003 0 0 0 0 0 0 0 +-13.389 7.943 -2.006 0 0 0 0 0 0 0 +-13.417 7.903 -2.006 0 0 0 0 0 0 0 +-13.432 7.854 -2.005 0 0 0 0 0 0 0 +-13.46 7.842 -2.007 0 0 0 0 0 0 0 +-13.481 7.798 -2.006 0 0 0 0 0 0 0 +-13.504 7.755 -2.006 0 0 0 0 0 0 0 +-13.53 7.713 -2.006 0 0 0 0 0 0 0 +-13.555 7.672 -2.007 0 0 0 0 0 0 0 +-13.578 7.628 -2.006 0 0 0 0 0 0 0 +-13.605 7.587 -2.007 0 0 0 0 0 0 0 +-13.596 7.554 -2.004 0 0 0 0 0 0 0 +-13.594 7.497 -1.999 0 0 0 0 0 0 0 +-12.571 6.879 -1.83 0 0 0 0 0 0 0 +-12.587 6.837 -1.83 0 0 0 0 0 0 0 +-12.607 6.796 -1.829 0 0 0 0 0 0 0 +-13.694 7.274 -1.997 0 0 0 0 0 0 0 +-13.697 7.248 -1.996 0 0 0 0 0 0 0 +-13.765 7.229 -2.003 0 0 0 0 0 0 0 +-7.116 3.666 -0.935 0 0 0 0 0 0 0 +-7.226 3.695 -0.951 0 0 0 0 0 0 0 +-7.27 3.688 -0.956 0 0 0 0 0 0 0 +-7.341 3.696 -0.965 0 0 0 0 0 0 0 +-7.425 3.709 -0.977 0 0 0 0 0 0 0 +-7.532 3.748 -0.993 0 0 0 0 0 0 0 +-7.758 3.831 -1.027 0 0 0 0 0 0 0 +-7.566 3.706 -0.994 0 0 0 0 0 0 0 +-14.035 6.845 -2.012 0 0 0 0 0 0 0 +-14.051 6.798 -2.012 0 0 0 0 0 0 0 +-14.083 6.759 -2.013 0 0 0 0 0 0 0 +-14.101 6.713 -2.013 0 0 0 0 0 0 0 +-14.113 6.692 -2.013 0 0 0 0 0 0 0 +-14.12 6.641 -2.011 0 0 0 0 0 0 0 +-14.13 6.591 -2.009 0 0 0 0 0 0 0 +-14.145 6.544 -2.008 0 0 0 0 0 0 0 +-14.157 6.496 -2.007 0 0 0 0 0 0 0 +-14.179 6.452 -2.007 0 0 0 0 0 0 0 +-14.203 6.409 -2.008 0 0 0 0 0 0 0 +-14.196 6.379 -2.005 0 0 0 0 0 0 0 +-14.198 6.327 -2.002 0 0 0 0 0 0 0 +-14.2 6.274 -1.999 0 0 0 0 0 0 0 +-14.2 6.221 -1.996 0 0 0 0 0 0 0 +-14.203 6.169 -1.994 0 0 0 0 0 0 0 +-14.213 6.12 -1.992 0 0 0 0 0 0 0 +-14.238 6.078 -1.993 0 0 0 0 0 0 0 +-14.231 6.048 -1.991 0 0 0 0 0 0 0 +-14.264 6.01 -1.993 0 0 0 0 0 0 0 +-14.281 5.964 -1.993 0 0 0 0 0 0 0 +-14.309 5.923 -1.994 0 0 0 0 0 0 0 +-14.339 5.883 -1.996 0 0 0 0 0 0 0 +-14.374 5.844 -1.998 0 0 0 0 0 0 0 +-14.396 5.801 -1.999 0 0 0 0 0 0 0 +-14.425 5.786 -2.002 0 0 0 0 0 0 0 +-14.505 5.766 -2.012 0 0 0 0 0 0 0 +-14.536 5.725 -2.013 0 0 0 0 0 0 0 +-14.538 5.673 -2.011 0 0 0 0 0 0 0 +-14.561 5.63 -2.012 0 0 0 0 0 0 0 +-14.564 5.578 -2.01 0 0 0 0 0 0 0 +-14.552 5.521 -2.005 0 0 0 0 0 0 0 +-14.532 5.461 -1.999 0 0 0 0 0 0 0 +-14.535 5.436 -1.999 0 0 0 0 0 0 0 +-14.557 5.393 -1.999 0 0 0 0 0 0 0 +-14.545 5.336 -1.995 0 0 0 0 0 0 0 +-14.563 5.291 -1.995 0 0 0 0 0 0 0 +-14.58 5.245 -1.995 0 0 0 0 0 0 0 +-14.596 5.199 -1.995 0 0 0 0 0 0 0 +-14.605 5.151 -1.994 0 0 0 0 0 0 0 +-14.602 5.124 -1.992 0 0 0 0 0 0 0 +-14.62 5.079 -1.993 0 0 0 0 0 0 0 +-14.622 5.028 -1.991 0 0 0 0 0 0 0 +-14.64 4.983 -1.991 0 0 0 0 0 0 0 +-14.648 4.934 -1.99 0 0 0 0 0 0 0 +-14.647 4.883 -1.987 0 0 0 0 0 0 0 +-14.662 4.837 -1.987 0 0 0 0 0 0 0 +-14.66 4.811 -1.986 0 0 0 0 0 0 0 +-14.669 4.763 -1.985 0 0 0 0 0 0 0 +-14.664 4.71 -1.982 0 0 0 0 0 0 0 +-14.678 4.664 -1.982 0 0 0 0 0 0 0 +-14.674 4.612 -1.979 0 0 0 0 0 0 0 +-14.696 4.568 -1.98 0 0 0 0 0 0 0 +-14.69 4.515 -1.977 0 0 0 0 0 0 0 +-14.678 4.486 -1.975 0 0 0 0 0 0 0 +-14.678 4.436 -1.973 0 0 0 0 0 0 0 +-14.687 4.388 -1.972 0 0 0 0 0 0 0 +-14.693 4.34 -1.971 0 0 0 0 0 0 0 +-14.702 4.293 -1.97 0 0 0 0 0 0 0 +-14.697 4.241 -1.967 0 0 0 0 0 0 0 +-14.701 4.192 -1.966 0 0 0 0 0 0 0 +-14.713 4.17 -1.967 0 0 0 0 0 0 0 +-14.686 4.113 -1.961 0 0 0 0 0 0 0 +-10.122 2.792 -1.288 0 0 0 0 0 0 0 +-15.398 0.601 -1.983 0 0 0 0 0 0 0 +-15.415 0.554 -1.985 0 0 0 0 0 0 0 +-15.417 0.505 -1.985 0 0 0 0 0 0 0 +-15.43 0.457 -1.987 0 0 0 0 0 0 0 +-15.451 0.409 -1.99 0 0 0 0 0 0 0 +-15.461 0.361 -1.991 0 0 0 0 0 0 0 +-15.461 0.337 -1.991 0 0 0 0 0 0 0 +-15.478 0.288 -1.993 0 0 0 0 0 0 0 +-15.485 0.24 -1.994 0 0 0 0 0 0 0 +-15.505 0.191 -1.997 0 0 0 0 0 0 0 +-15.518 0.143 -1.999 0 0 0 0 0 0 0 +-15.54 0.094 -2.002 0 0 0 0 0 0 0 +-15.544 0.045 -2.002 0 0 0 0 0 0 0 +-15.56 0.021 -2.005 0 0 0 0 0 0 0 +-15.566 -0.028 -2.005 0 0 0 0 0 0 0 +-15.572 -0.077 -2.006 0 0 0 0 0 0 0 +-15.583 -0.126 -2.008 0 0 0 0 0 0 0 +-15.597 -0.175 -2.01 0 0 0 0 0 0 0 +-15.618 -0.224 -2.013 0 0 0 0 0 0 0 +-15.664 -0.274 -2.02 0 0 0 0 0 0 0 +-15.682 -0.299 -2.022 0 0 0 0 0 0 0 +-15.701 -0.349 -2.025 0 0 0 0 0 0 0 +-15.739 -0.399 -2.031 0 0 0 0 0 0 0 +-15.753 -0.449 -2.033 0 0 0 0 0 0 0 +-15.744 -0.498 -2.032 0 0 0 0 0 0 0 +-15.75 -0.548 -2.033 0 0 0 0 0 0 0 +-15.724 -0.621 -2.029 0 0 0 0 0 0 0 +-15.773 -0.672 -2.037 0 0 0 0 0 0 0 +-15.696 -0.719 -2.026 0 0 0 0 0 0 0 +-16.58 -0.81 -2.152 0 0 0 0 0 0 0 +-16.569 -0.862 -2.151 0 0 0 0 0 0 0 +-16.551 -0.913 -2.148 0 0 0 0 0 0 0 +-16.54 -0.964 -2.147 0 0 0 0 0 0 0 +-16.525 -1.016 -2.146 0 0 0 0 0 0 0 +-16.502 -1.066 -2.143 0 0 0 0 0 0 0 +-16.48 -1.091 -2.14 0 0 0 0 0 0 0 +-16.467 -1.142 -2.139 0 0 0 0 0 0 0 +-16.461 -1.194 -2.138 0 0 0 0 0 0 0 +-16.432 -1.243 -2.135 0 0 0 0 0 0 0 +-16.41 -1.294 -2.132 0 0 0 0 0 0 0 +-16.376 -1.343 -2.128 0 0 0 0 0 0 0 +-16.386 -1.395 -2.13 0 0 0 0 0 0 0 +-16.149 -1.401 -2.096 0 0 0 0 0 0 0 +-16.13 -1.451 -2.095 0 0 0 0 0 0 0 +-16.134 -1.502 -2.096 0 0 0 0 0 0 0 +-16.194 -1.559 -2.105 0 0 0 0 0 0 0 +-16.244 -1.615 -2.113 0 0 0 0 0 0 0 +-16.267 -1.669 -2.117 0 0 0 0 0 0 0 +-16.259 -1.72 -2.116 0 0 0 0 0 0 0 +-16.249 -1.745 -2.115 0 0 0 0 0 0 0 +-16.235 -1.795 -2.114 0 0 0 0 0 0 0 +-16.228 -1.845 -2.114 0 0 0 0 0 0 0 +-16.212 -1.895 -2.112 0 0 0 0 0 0 0 +-16.186 -1.944 -2.11 0 0 0 0 0 0 0 +-16.194 -1.996 -2.112 0 0 0 0 0 0 0 +-16.176 -2.046 -2.11 0 0 0 0 0 0 0 +-16.166 -2.07 -2.109 0 0 0 0 0 0 0 +-16.156 -2.121 -2.109 0 0 0 0 0 0 0 +-16.147 -2.171 -2.108 0 0 0 0 0 0 0 +-16.113 -2.218 -2.104 0 0 0 0 0 0 0 +-16.122 -2.271 -2.107 0 0 0 0 0 0 0 +-16.11 -2.321 -2.106 0 0 0 0 0 0 0 +-16.093 -2.37 -2.105 0 0 0 0 0 0 0 +-16.089 -2.396 -2.105 0 0 0 0 0 0 0 +-16.09 -2.447 -2.106 0 0 0 0 0 0 0 +-16.064 -2.495 -2.103 0 0 0 0 0 0 0 +-16.06 -2.546 -2.104 0 0 0 0 0 0 0 +-16.042 -2.595 -2.102 0 0 0 0 0 0 0 +-16.009 -2.641 -2.099 0 0 0 0 0 0 0 +-15.983 -2.689 -2.096 0 0 0 0 0 0 0 +-15.982 -2.74 -2.097 0 0 0 0 0 0 0 +-15.96 -2.762 -2.095 0 0 0 0 0 0 0 +-15.963 -2.814 -2.096 0 0 0 0 0 0 0 +-15.937 -2.861 -2.094 0 0 0 0 0 0 0 +-15.91 -2.908 -2.091 0 0 0 0 0 0 0 +-15.895 -2.957 -2.091 0 0 0 0 0 0 0 +-15.878 -3.006 -2.089 0 0 0 0 0 0 0 +-15.847 -3.051 -2.086 0 0 0 0 0 0 0 +-15.852 -3.078 -2.088 0 0 0 0 0 0 0 +-15.834 -3.126 -2.087 0 0 0 0 0 0 0 +-15.807 -3.173 -2.084 0 0 0 0 0 0 0 +-15.799 -3.223 -2.084 0 0 0 0 0 0 0 +-15.771 -3.269 -2.082 0 0 0 0 0 0 0 +-15.747 -3.315 -2.08 0 0 0 0 0 0 0 +-15.735 -3.364 -2.08 0 0 0 0 0 0 0 +-15.733 -3.39 -2.08 0 0 0 0 0 0 0 +-15.707 -3.436 -2.078 0 0 0 0 0 0 0 +-15.7 -3.486 -2.079 0 0 0 0 0 0 0 +-15.654 -3.528 -2.073 0 0 0 0 0 0 0 +-15.637 -3.576 -2.073 0 0 0 0 0 0 0 +-15.603 -3.619 -2.069 0 0 0 0 0 0 0 +-15.594 -3.669 -2.07 0 0 0 0 0 0 0 +-15.58 -3.692 -2.068 0 0 0 0 0 0 0 +-15.549 -3.736 -2.066 0 0 0 0 0 0 0 +-15.53 -3.783 -2.065 0 0 0 0 0 0 0 +-15.516 -3.831 -2.064 0 0 0 0 0 0 0 +-15.411 -3.857 -2.051 0 0 0 0 0 0 0 +-15.443 -3.916 -2.057 0 0 0 0 0 0 0 +-15.427 -3.964 -2.057 0 0 0 0 0 0 0 +-15.402 -3.983 -2.054 0 0 0 0 0 0 0 +-15.378 -4.029 -2.052 0 0 0 0 0 0 0 +-15.336 -4.069 -2.048 0 0 0 0 0 0 0 +-15.325 -4.118 -2.048 0 0 0 0 0 0 0 +-15.314 -4.167 -2.049 0 0 0 0 0 0 0 +-15.282 -4.21 -2.046 0 0 0 0 0 0 0 +-15.259 -4.255 -2.044 0 0 0 0 0 0 0 +-15.248 -4.278 -2.044 0 0 0 0 0 0 0 +-15.218 -4.321 -2.041 0 0 0 0 0 0 0 +-15.198 -4.367 -2.04 0 0 0 0 0 0 0 +-15.187 -4.415 -2.041 0 0 0 0 0 0 0 +-15.165 -4.461 -2.04 0 0 0 0 0 0 0 +-15.139 -4.505 -2.038 0 0 0 0 0 0 0 +-15.135 -4.555 -2.039 0 0 0 0 0 0 0 +-15.116 -4.576 -2.038 0 0 0 0 0 0 0 +-15.096 -4.621 -2.037 0 0 0 0 0 0 0 +-15.078 -4.668 -2.036 0 0 0 0 0 0 0 +-15.063 -4.715 -2.036 0 0 0 0 0 0 0 +-15.046 -4.762 -2.036 0 0 0 0 0 0 0 +-15.035 -4.81 -2.036 0 0 0 0 0 0 0 +-15.012 -4.855 -2.035 0 0 0 0 0 0 0 +-15.006 -4.905 -2.037 0 0 0 0 0 0 0 +-14.974 -4.921 -2.033 0 0 0 0 0 0 0 +-14.966 -4.97 -2.034 0 0 0 0 0 0 0 +-14.95 -5.017 -2.034 0 0 0 0 0 0 0 +-14.936 -5.065 -2.035 0 0 0 0 0 0 0 +-14.909 -5.108 -2.033 0 0 0 0 0 0 0 +-14.884 -5.151 -2.031 0 0 0 0 0 0 0 +-14.871 -5.199 -2.032 0 0 0 0 0 0 0 +-14.872 -5.226 -2.033 0 0 0 0 0 0 0 +-14.848 -5.27 -2.032 0 0 0 0 0 0 0 +-14.806 -5.307 -2.028 0 0 0 0 0 0 0 +-14.806 -5.36 -2.031 0 0 0 0 0 0 0 +-14.796 -5.409 -2.032 0 0 0 0 0 0 0 +-14.781 -5.456 -2.032 0 0 0 0 0 0 0 +-14.753 -5.499 -2.031 0 0 0 0 0 0 0 +-14.748 -5.523 -2.031 0 0 0 0 0 0 0 +-14.732 -5.57 -2.031 0 0 0 0 0 0 0 +-14.715 -5.616 -2.031 0 0 0 0 0 0 0 +-14.697 -5.663 -2.031 0 0 0 0 0 0 0 +-14.686 -5.712 -2.033 0 0 0 0 0 0 0 +-14.683 -5.763 -2.035 0 0 0 0 0 0 0 +-14.658 -5.807 -2.034 0 0 0 0 0 0 0 +-14.643 -5.828 -2.033 0 0 0 0 0 0 0 +-14.647 -5.882 -2.036 0 0 0 0 0 0 0 +-14.634 -5.931 -2.037 0 0 0 0 0 0 0 +-14.62 -5.979 -2.038 0 0 0 0 0 0 0 +-14.609 -6.028 -2.039 0 0 0 0 0 0 0 +-14.59 -6.073 -2.039 0 0 0 0 0 0 0 +-14.571 -6.119 -2.039 0 0 0 0 0 0 0 +-14.561 -6.142 -2.039 0 0 0 0 0 0 0 +-14.543 -6.189 -2.039 0 0 0 0 0 0 0 +-14.52 -6.233 -2.039 0 0 0 0 0 0 0 +-14.497 -6.277 -2.038 0 0 0 0 0 0 0 +-14.474 -6.321 -2.038 0 0 0 0 0 0 0 +-14.461 -6.369 -2.039 0 0 0 0 0 0 0 +-14.437 -6.413 -2.038 0 0 0 0 0 0 0 +-14.409 -6.428 -2.035 0 0 0 0 0 0 0 +-14.398 -6.477 -2.037 0 0 0 0 0 0 0 +-14.37 -6.519 -2.036 0 0 0 0 0 0 0 +-14.333 -6.557 -2.033 0 0 0 0 0 0 0 +-14.322 -6.606 -2.035 0 0 0 0 0 0 0 +-14.299 -6.65 -2.034 0 0 0 0 0 0 0 +-14.289 -6.7 -2.036 0 0 0 0 0 0 0 +-14.271 -6.719 -2.035 0 0 0 0 0 0 0 +-14.27 -6.773 -2.038 0 0 0 0 0 0 0 +-14.247 -6.817 -2.038 0 0 0 0 0 0 0 +-14.227 -6.863 -2.038 0 0 0 0 0 0 0 +-14.203 -6.906 -2.038 0 0 0 0 0 0 0 +-14.192 -6.956 -2.039 0 0 0 0 0 0 0 +-14.16 -6.995 -2.038 0 0 0 0 0 0 0 +-14.158 -7.022 -2.039 0 0 0 0 0 0 0 +-14.148 -7.073 -2.041 0 0 0 0 0 0 0 +-14.104 -7.106 -2.038 0 0 0 0 0 0 0 +-14.107 -7.163 -2.042 0 0 0 0 0 0 0 +-14.091 -7.211 -2.043 0 0 0 0 0 0 0 +-14.06 -7.251 -2.041 0 0 0 0 0 0 0 +-14.058 -7.306 -2.045 0 0 0 0 0 0 0 +-14.053 -7.332 -2.046 0 0 0 0 0 0 0 +-14.029 -7.375 -2.045 0 0 0 0 0 0 0 +-14.007 -7.42 -2.046 0 0 0 0 0 0 0 +-13.987 -7.466 -2.046 0 0 0 0 0 0 0 +-13.967 -7.511 -2.047 0 0 0 0 0 0 0 +-13.945 -7.556 -2.047 0 0 0 0 0 0 0 +-13.935 -7.608 -2.049 0 0 0 0 0 0 0 +-13.913 -7.652 -2.05 0 0 0 0 0 0 0 +-13.91 -7.679 -2.051 0 0 0 0 0 0 0 +-13.898 -7.729 -2.053 0 0 0 0 0 0 0 +-13.872 -7.772 -2.053 0 0 0 0 0 0 0 +-13.859 -7.822 -2.055 0 0 0 0 0 0 0 +-13.845 -7.872 -2.056 0 0 0 0 0 0 0 +-13.827 -7.919 -2.058 0 0 0 0 0 0 0 +-13.807 -7.965 -2.058 0 0 0 0 0 0 0 +-13.802 -7.991 -2.059 0 0 0 0 0 0 0 +-13.778 -8.035 -2.06 0 0 0 0 0 0 0 +-13.758 -8.081 -2.061 0 0 0 0 0 0 0 +-13.739 -8.129 -2.062 0 0 0 0 0 0 0 +-13.729 -8.181 -2.064 0 0 0 0 0 0 0 +-13.693 -8.218 -2.063 0 0 0 0 0 0 0 +-13.679 -8.268 -2.065 0 0 0 0 0 0 0 +-13.675 -8.295 -2.066 0 0 0 0 0 0 0 +-13.647 -8.337 -2.066 0 0 0 0 0 0 0 +-13.636 -8.389 -2.068 0 0 0 0 0 0 0 +-13.613 -8.434 -2.069 0 0 0 0 0 0 0 +-13.588 -8.477 -2.069 0 0 0 0 0 0 0 +-13.569 -8.525 -2.07 0 0 0 0 0 0 0 +-13.543 -8.568 -2.07 0 0 0 0 0 0 0 +-13.536 -8.593 -2.072 0 0 0 0 0 0 0 +-13.517 -8.641 -2.073 0 0 0 0 0 0 0 +-13.502 -8.691 -2.075 0 0 0 0 0 0 0 +-13.477 -8.736 -2.075 0 0 0 0 0 0 0 +-13.458 -8.783 -2.077 0 0 0 0 0 0 0 +-13.449 -8.837 -2.08 0 0 0 0 0 0 0 +-13.424 -8.882 -2.08 0 0 0 0 0 0 0 +-13.429 -8.915 -2.084 0 0 0 0 0 0 0 +-13.407 -8.961 -2.085 0 0 0 0 0 0 0 +-13.38 -9.005 -2.085 0 0 0 0 0 0 0 +-13.365 -9.055 -2.087 0 0 0 0 0 0 0 +-10.635 -7.261 -1.625 0 0 0 0 0 0 0 +-10.844 -7.453 -1.664 0 0 0 0 0 0 0 +-10.784 -7.462 -1.658 0 0 0 0 0 0 0 +-10.792 -7.492 -1.662 0 0 0 0 0 0 0 +-10.775 -7.531 -1.663 0 0 0 0 0 0 0 +-10.498 -7.387 -1.619 0 0 0 0 0 0 0 +-10.473 -7.419 -1.619 0 0 0 0 0 0 0 +-10.458 -7.458 -1.62 0 0 0 0 0 0 0 +-10.398 -7.464 -1.614 0 0 0 0 0 0 0 +-10.344 -7.475 -1.608 0 0 0 0 0 0 0 +-10.3 -7.468 -1.603 0 0 0 0 0 0 0 +-10.315 -7.528 -1.61 0 0 0 0 0 0 0 +-10.323 -7.584 -1.615 0 0 0 0 0 0 0 +-10.377 -7.674 -1.629 0 0 0 0 0 0 0 +-13.097 -9.74 -2.112 0 0 0 0 0 0 0 +-13.094 -9.802 -2.117 0 0 0 0 0 0 0 +-13.088 -9.862 -2.122 0 0 0 0 0 0 0 +-13.079 -9.92 -2.126 0 0 0 0 0 0 0 +-13.048 -9.928 -2.123 0 0 0 0 0 0 0 +-13.012 -9.965 -2.122 0 0 0 0 0 0 0 +-12.963 -9.993 -2.119 0 0 0 0 0 0 0 +-12.911 -10.018 -2.115 0 0 0 0 0 0 0 +-12.897 -10.072 -2.118 0 0 0 0 0 0 0 +-12.847 -10.098 -2.115 0 0 0 0 0 0 0 +-12.785 -10.115 -2.11 0 0 0 0 0 0 0 +-12.76 -10.127 -2.108 0 0 0 0 0 0 0 +-12.696 -10.142 -2.102 0 0 0 0 0 0 0 +-12.636 -10.159 -2.097 0 0 0 0 0 0 0 +-12.584 -10.183 -2.093 0 0 0 0 0 0 0 +-12.529 -10.203 -2.089 0 0 0 0 0 0 0 +-12.487 -10.235 -2.088 0 0 0 0 0 0 0 +-12.415 -10.242 -2.08 0 0 0 0 0 0 0 +-12.366 -10.233 -2.074 0 0 0 0 0 0 0 +-12.324 -10.265 -2.072 0 0 0 0 0 0 0 +-12.281 -10.294 -2.07 0 0 0 0 0 0 0 +-12.237 -10.323 -2.068 0 0 0 0 0 0 0 +-12.203 -10.36 -2.068 0 0 0 0 0 0 0 +-12.158 -10.388 -2.066 0 0 0 0 0 0 0 +-12.123 -10.423 -2.065 0 0 0 0 0 0 0 +-12.103 -10.44 -2.065 0 0 0 0 0 0 0 +-12.06 -10.469 -2.063 0 0 0 0 0 0 0 +-12.022 -10.503 -2.062 0 0 0 0 0 0 0 +-11.945 -10.501 -2.053 0 0 0 0 0 0 0 +-11.909 -10.536 -2.053 0 0 0 0 0 0 0 +-11.852 -10.552 -2.048 0 0 0 0 0 0 0 +-11.799 -10.572 -2.045 0 0 0 0 0 0 0 +-11.772 -10.582 -2.043 0 0 0 0 0 0 0 +-11.707 -10.589 -2.036 0 0 0 0 0 0 0 +-11.66 -10.614 -2.034 0 0 0 0 0 0 0 +-11.622 -10.647 -2.033 0 0 0 0 0 0 0 +-11.571 -10.667 -2.03 0 0 0 0 0 0 0 +-11.516 -10.683 -2.026 0 0 0 0 0 0 0 +-11.469 -10.707 -2.023 0 0 0 0 0 0 0 +-11.447 -10.72 -2.022 0 0 0 0 0 0 0 +-11.403 -10.746 -2.02 0 0 0 0 0 0 0 +-11.365 -10.778 -2.019 0 0 0 0 0 0 0 +-11.312 -10.796 -2.015 0 0 0 0 0 0 0 +-11.253 -10.807 -2.01 0 0 0 0 0 0 0 +-11.204 -10.828 -2.008 0 0 0 0 0 0 0 +-11.146 -10.84 -2.003 0 0 0 0 0 0 0 +-11.119 -10.848 -2.001 0 0 0 0 0 0 0 +-11.078 -10.876 -1.999 0 0 0 0 0 0 0 +-11.031 -10.898 -1.997 0 0 0 0 0 0 0 +-10.99 -10.926 -1.996 0 0 0 0 0 0 0 +-10.952 -10.957 -1.995 0 0 0 0 0 0 0 +-10.904 -10.978 -1.992 0 0 0 0 0 0 0 +-10.837 -10.98 -1.986 0 0 0 0 0 0 0 +-10.808 -11.019 -1.987 0 0 0 0 0 0 0 +-10.769 -11.014 -1.982 0 0 0 0 0 0 0 +-10.726 -11.039 -1.981 0 0 0 0 0 0 0 +-10.686 -11.067 -1.98 0 0 0 0 0 0 0 +-10.641 -11.09 -1.978 0 0 0 0 0 0 0 +-10.598 -11.115 -1.976 0 0 0 0 0 0 0 +-10.566 -11.151 -1.976 0 0 0 0 0 0 0 +-10.508 -11.16 -1.972 0 0 0 0 0 0 0 +-10.481 -11.166 -1.97 0 0 0 0 0 0 0 +-10.437 -11.19 -1.968 0 0 0 0 0 0 0 +-10.387 -11.207 -1.965 0 0 0 0 0 0 0 +-10.351 -11.238 -1.965 0 0 0 0 0 0 0 +-10.295 -11.249 -1.961 0 0 0 0 0 0 0 +-10.251 -11.271 -1.959 0 0 0 0 0 0 0 +-10.203 -11.29 -1.956 0 0 0 0 0 0 0 +-10.176 -11.296 -1.954 0 0 0 0 0 0 0 +-10.13 -11.316 -1.952 0 0 0 0 0 0 0 +-10.085 -11.337 -1.95 0 0 0 0 0 0 0 +-10.027 -11.344 -1.945 0 0 0 0 0 0 0 +-9.98 -11.362 -1.943 0 0 0 0 0 0 0 +-9.935 -11.383 -1.941 0 0 0 0 0 0 0 +-9.882 -11.394 -1.937 0 0 0 0 0 0 0 +-9.856 -11.401 -1.935 0 0 0 0 0 0 0 +-9.817 -11.427 -1.934 0 0 0 0 0 0 0 +-9.772 -11.448 -1.932 0 0 0 0 0 0 0 +-9.716 -11.456 -1.928 0 0 0 0 0 0 0 +-9.678 -11.483 -1.928 0 0 0 0 0 0 0 +-9.634 -11.504 -1.926 0 0 0 0 0 0 0 +-9.588 -11.522 -1.924 0 0 0 0 0 0 0 +-9.573 -11.542 -1.925 0 0 0 0 0 0 0 +-9.524 -11.557 -1.922 0 0 0 0 0 0 0 +-9.482 -11.579 -1.92 0 0 0 0 0 0 0 +-9.432 -11.592 -1.917 0 0 0 0 0 0 0 +-9.38 -11.603 -1.914 0 0 0 0 0 0 0 +-9.341 -11.629 -1.913 0 0 0 0 0 0 0 +-9.3 -11.652 -1.912 0 0 0 0 0 0 0 +-9.273 -11.656 -1.91 0 0 0 0 0 0 0 +-9.229 -11.676 -1.909 0 0 0 0 0 0 0 +-9.18 -11.689 -1.906 0 0 0 0 0 0 0 +-9.138 -11.712 -1.905 0 0 0 0 0 0 0 +-9.099 -11.737 -1.904 0 0 0 0 0 0 0 +-9.061 -11.764 -1.904 0 0 0 0 0 0 0 +-9.026 -11.796 -1.904 0 0 0 0 0 0 0 +-8.989 -11.786 -1.9 0 0 0 0 0 0 0 +-8.956 -11.819 -1.901 0 0 0 0 0 0 0 +-8.918 -11.846 -1.901 0 0 0 0 0 0 0 +-8.872 -11.863 -1.899 0 0 0 0 0 0 0 +-8.831 -11.886 -1.898 0 0 0 0 0 0 0 +-8.789 -11.907 -1.897 0 0 0 0 0 0 0 +-8.746 -11.927 -1.895 0 0 0 0 0 0 0 +-8.722 -11.934 -1.894 0 0 0 0 0 0 0 +-8.667 -11.937 -1.89 0 0 0 0 0 0 0 +-8.625 -11.958 -1.889 0 0 0 0 0 0 0 +-8.596 -11.996 -1.891 0 0 0 0 0 0 0 +-8.565 -12.033 -1.893 0 0 0 0 0 0 0 +-8.533 -12.068 -1.894 0 0 0 0 0 0 0 +-8.49 -12.088 -1.893 0 0 0 0 0 0 0 +-8.465 -12.093 -1.892 0 0 0 0 0 0 0 +-8.43 -12.123 -1.892 0 0 0 0 0 0 0 +-8.397 -12.158 -1.893 0 0 0 0 0 0 0 +-8.352 -12.174 -1.892 0 0 0 0 0 0 0 +-8.324 -12.215 -1.894 0 0 0 0 0 0 0 +-8.286 -12.241 -1.894 0 0 0 0 0 0 0 +-8.251 -12.274 -1.895 0 0 0 0 0 0 0 +-8.235 -12.292 -1.896 0 0 0 0 0 0 0 +-8.19 -12.308 -1.895 0 0 0 0 0 0 0 +-8.146 -12.325 -1.893 0 0 0 0 0 0 0 +-8.1 -12.339 -1.891 0 0 0 0 0 0 0 +-8.073 -12.383 -1.894 0 0 0 0 0 0 0 +-8.03 -12.401 -1.893 0 0 0 0 0 0 0 +-7.994 -12.431 -1.894 0 0 0 0 0 0 0 +-7.972 -12.441 -1.893 0 0 0 0 0 0 0 +-7.933 -12.466 -1.893 0 0 0 0 0 0 0 +-7.89 -12.484 -1.892 0 0 0 0 0 0 0 +-7.877 -12.55 -1.899 0 0 0 0 0 0 0 +-7.834 -12.57 -1.899 0 0 0 0 0 0 0 +-7.793 -12.593 -1.898 0 0 0 0 0 0 0 +-7.729 -12.621 -1.897 0 0 0 0 0 0 0 +-7.685 -12.638 -1.896 0 0 0 0 0 0 0 +-7.619 -12.618 -1.888 0 0 0 0 0 0 0 +-7.573 -12.632 -1.887 0 0 0 0 0 0 0 +-7.53 -12.651 -1.886 0 0 0 0 0 0 0 +-7.489 -12.673 -1.886 0 0 0 0 0 0 0 +-7.442 -12.684 -1.884 0 0 0 0 0 0 0 +-7.393 -12.692 -1.881 0 0 0 0 0 0 0 +-7.378 -12.711 -1.882 0 0 0 0 0 0 0 +-7.329 -12.718 -1.88 0 0 0 0 0 0 0 +-7.287 -12.738 -1.879 0 0 0 0 0 0 0 +-7.246 -12.759 -1.879 0 0 0 0 0 0 0 +-7.202 -12.775 -1.878 0 0 0 0 0 0 0 +-7.161 -12.797 -1.878 0 0 0 0 0 0 0 +-7.119 -12.816 -1.877 0 0 0 0 0 0 0 +-7.096 -12.822 -1.876 0 0 0 0 0 0 0 +-7.061 -12.853 -1.878 0 0 0 0 0 0 0 +-7.015 -12.865 -1.876 0 0 0 0 0 0 0 +-6.973 -12.885 -1.876 0 0 0 0 0 0 0 +-6.931 -12.903 -1.875 0 0 0 0 0 0 0 +-6.886 -12.916 -1.874 0 0 0 0 0 0 0 +-6.848 -12.943 -1.875 0 0 0 0 0 0 0 +-6.826 -12.95 -1.874 0 0 0 0 0 0 0 +-6.779 -12.961 -1.872 0 0 0 0 0 0 0 +-6.741 -12.988 -1.873 0 0 0 0 0 0 0 +-6.699 -13.005 -1.873 0 0 0 0 0 0 0 +-6.654 -13.019 -1.872 0 0 0 0 0 0 0 +-6.624 -13.061 -1.875 0 0 0 0 0 0 0 +-6.578 -13.072 -1.873 0 0 0 0 0 0 0 +-6.557 -13.082 -1.873 0 0 0 0 0 0 0 +-6.522 -13.115 -1.875 0 0 0 0 0 0 0 +-6.473 -13.119 -1.873 0 0 0 0 0 0 0 +-6.434 -13.145 -1.874 0 0 0 0 0 0 0 +-6.391 -13.161 -1.873 0 0 0 0 0 0 0 +-6.388 -13.26 -1.885 0 0 0 0 0 0 0 +-6.28 -13.142 -1.864 0 0 0 0 0 0 0 +-6.277 -13.188 -1.869 0 0 0 0 0 0 0 +-6.216 -13.166 -1.863 0 0 0 0 0 0 0 +-6.171 -13.179 -1.862 0 0 0 0 0 0 0 +-6.129 -13.196 -1.862 0 0 0 0 0 0 0 +-6.086 -13.214 -1.861 0 0 0 0 0 0 0 +-6.038 -13.218 -1.859 0 0 0 0 0 0 0 +-6.001 -13.246 -1.86 0 0 0 0 0 0 0 +-5.97 -13.234 -1.857 0 0 0 0 0 0 0 +-5.928 -13.253 -1.857 0 0 0 0 0 0 0 +-5.892 -13.282 -1.859 0 0 0 0 0 0 0 +-5.841 -13.281 -1.856 0 0 0 0 0 0 0 +-5.796 -13.292 -1.855 0 0 0 0 0 0 0 +-5.757 -13.315 -1.855 0 0 0 0 0 0 0 +-5.712 -13.328 -1.855 0 0 0 0 0 0 0 +-5.686 -13.324 -1.853 0 0 0 0 0 0 0 +-5.635 -13.32 -1.849 0 0 0 0 0 0 0 +-5.605 -13.365 -1.853 0 0 0 0 0 0 0 +-5.555 -13.364 -1.851 0 0 0 0 0 0 0 +-5.589 -13.566 -1.879 0 0 0 0 0 0 0 +-5.466 -13.386 -1.849 0 0 0 0 0 0 0 +-5.423 -13.403 -1.849 0 0 0 0 0 0 0 +-5.4 -13.406 -1.848 0 0 0 0 0 0 0 +-5.35 -13.403 -1.845 0 0 0 0 0 0 0 +-5.308 -13.42 -1.845 0 0 0 0 0 0 0 +-5.264 -13.433 -1.844 0 0 0 0 0 0 0 +-5.222 -13.449 -1.844 0 0 0 0 0 0 0 +-5.177 -13.46 -1.843 0 0 0 0 0 0 0 +-5.137 -13.48 -1.844 0 0 0 0 0 0 0 +-5.111 -13.477 -1.842 0 0 0 0 0 0 0 +-5.069 -13.493 -1.842 0 0 0 0 0 0 0 +-5.031 -13.52 -1.844 0 0 0 0 0 0 0 +-4.983 -13.52 -1.842 0 0 0 0 0 0 0 +-4.941 -13.54 -1.842 0 0 0 0 0 0 0 +-4.91 -13.587 -1.847 0 0 0 0 0 0 0 +-4.878 -13.63 -1.851 0 0 0 0 0 0 0 +-4.857 -13.64 -1.851 0 0 0 0 0 0 0 +-4.813 -13.653 -1.851 0 0 0 0 0 0 0 +-4.769 -13.803 -1.869 0 0 0 0 0 0 0 +-4.683 -13.694 -1.851 0 0 0 0 0 0 0 +-4.63 -13.679 -1.846 0 0 0 0 0 0 0 +-4.574 -13.656 -1.841 0 0 0 0 0 0 0 +-4.548 -13.648 -1.838 0 0 0 0 0 0 0 +-4.502 -13.653 -1.837 0 0 0 0 0 0 0 +-4.456 -13.657 -1.835 0 0 0 0 0 0 0 +-4.417 -13.683 -1.837 0 0 0 0 0 0 0 +-4.373 -13.694 -1.837 0 0 0 0 0 0 0 +-4.332 -13.714 -1.838 0 0 0 0 0 0 0 +-4.28 -13.701 -1.834 0 0 0 0 0 0 0 +-4.252 -13.687 -1.831 0 0 0 0 0 0 0 +-4.217 -13.725 -1.834 0 0 0 0 0 0 0 +-4.174 -13.74 -1.835 0 0 0 0 0 0 0 +-4.133 -13.758 -1.835 0 0 0 0 0 0 0 +-4.084 -13.752 -1.833 0 0 0 0 0 0 0 +-4.042 -13.771 -1.834 0 0 0 0 0 0 0 +-3.998 -13.78 -1.833 0 0 0 0 0 0 0 +-3.953 -13.786 -1.832 0 0 0 0 0 0 0 +-3.931 -13.791 -1.832 0 0 0 0 0 0 0 +-3.889 -13.807 -1.832 0 0 0 0 0 0 0 +-3.844 -13.815 -1.832 0 0 0 0 0 0 0 +-3.801 -13.827 -1.832 0 0 0 0 0 0 0 +-3.754 -13.828 -1.83 0 0 0 0 0 0 0 +-3.714 -13.853 -1.832 0 0 0 0 0 0 0 +-3.671 -13.864 -1.832 0 0 0 0 0 0 0 +-3.649 -13.872 -1.832 0 0 0 0 0 0 0 +-3.608 -13.891 -1.834 0 0 0 0 0 0 0 +-3.566 -13.91 -1.835 0 0 0 0 0 0 0 +-3.521 -13.917 -1.834 0 0 0 0 0 0 0 +-3.478 -13.928 -1.834 0 0 0 0 0 0 0 +-3.434 -13.941 -1.834 0 0 0 0 0 0 0 +-3.432 -14.027 -1.846 0 0 0 0 0 0 0 +-3.408 -14.117 -1.858 0 0 0 0 0 0 0 +-3.319 -13.943 -1.831 0 0 0 0 0 0 0 +-3.278 -13.966 -1.833 0 0 0 0 0 0 0 +-3.224 -13.934 -1.826 0 0 0 0 0 0 0 +-3.171 -13.902 -1.82 0 0 0 0 0 0 0 +-3.12 -13.879 -1.816 0 0 0 0 0 0 0 +-3.07 -13.86 -1.811 0 0 0 0 0 0 0 +-3.042 -13.839 -1.808 0 0 0 0 0 0 0 +-2.996 -13.837 -1.806 0 0 0 0 0 0 0 +-2.945 -13.812 -1.801 0 0 0 0 0 0 0 +-2.9 -13.811 -1.8 0 0 0 0 0 0 0 +-2.854 -13.807 -1.798 0 0 0 0 0 0 0 +-2.807 -13.8 -1.795 0 0 0 0 0 0 0 +-2.764 -13.811 -1.796 0 0 0 0 0 0 0 +-2.738 -13.796 -1.793 0 0 0 0 0 0 0 +-2.695 -13.804 -1.793 0 0 0 0 0 0 0 +-2.649 -13.799 -1.791 0 0 0 0 0 0 0 +-2.605 -13.801 -1.79 0 0 0 0 0 0 0 +-2.561 -13.808 -1.79 0 0 0 0 0 0 0 +-2.516 -13.806 -1.788 0 0 0 0 0 0 0 +-2.478 -13.843 -1.793 0 0 0 0 0 0 0 +-2.406 -13.821 -1.788 0 0 0 0 0 0 0 +-2.364 -13.833 -1.788 0 0 0 0 0 0 0 +-2.316 -13.815 -1.785 0 0 0 0 0 0 0 +-2.297 -13.968 -1.806 0 0 0 0 0 0 0 +-2.233 -13.85 -1.788 0 0 0 0 0 0 0 +-2.189 -13.859 -1.788 0 0 0 0 0 0 0 +-2.168 -13.863 -1.788 0 0 0 0 0 0 0 +-2.123 -13.864 -1.787 0 0 0 0 0 0 0 +-2.079 -13.866 -1.787 0 0 0 0 0 0 0 +-2.035 -13.867 -1.786 0 0 0 0 0 0 0 +-1.993 -13.889 -1.788 0 0 0 0 0 0 0 +-1.952 -13.911 -1.79 0 0 0 0 0 0 0 +-1.911 -13.934 -1.793 0 0 0 0 0 0 0 +-1.889 -13.937 -1.793 0 0 0 0 0 0 0 +-1.846 -13.949 -1.794 0 0 0 0 0 0 0 +-1.803 -13.963 -1.795 0 0 0 0 0 0 0 +-1.758 -13.96 -1.794 0 0 0 0 0 0 0 +-1.717 -13.991 -1.797 0 0 0 0 0 0 0 +-1.675 -14.007 -1.799 0 0 0 0 0 0 0 +-1.632 -14.028 -1.801 0 0 0 0 0 0 0 +-1.611 -14.038 -1.802 0 0 0 0 0 0 0 +-1.568 -14.051 -1.803 0 0 0 0 0 0 0 +-1.524 -14.056 -1.803 0 0 0 0 0 0 0 +-1.48 -14.066 -1.804 0 0 0 0 0 0 0 +-1.44 -14.112 -1.81 0 0 0 0 0 0 0 +-1.394 -14.095 -1.807 0 0 0 0 0 0 0 +-1.354 -14.143 -1.813 0 0 0 0 0 0 0 +-1.331 -14.143 -1.813 0 0 0 0 0 0 0 +-1.284 -14.119 -1.809 0 0 0 0 0 0 0 +-1.241 -14.133 -1.81 0 0 0 0 0 0 0 +-1.198 -14.153 -1.812 0 0 0 0 0 0 0 +-1.154 -14.158 -1.813 0 0 0 0 0 0 0 +-1.108 -14.152 -1.811 0 0 0 0 0 0 0 +-1.064 -14.156 -1.811 0 0 0 0 0 0 0 +-1.041 -14.149 -1.81 0 0 0 0 0 0 0 +-0.996 -14.151 -1.81 0 0 0 0 0 0 0 +-0.951 -14.142 -1.808 0 0 0 0 0 0 0 +-0.906 -14.129 -1.806 0 0 0 0 0 0 0 +-0.861 -14.122 -1.805 0 0 0 0 0 0 0 +-0.816 -14.122 -1.804 0 0 0 0 0 0 0 +-0.771 -14.107 -1.802 0 0 0 0 0 0 0 +-0.749 -14.112 -1.802 0 0 0 0 0 0 0 +-0.706 -14.14 -1.806 0 0 0 0 0 0 0 +-0.662 -14.156 -1.808 0 0 0 0 0 0 0 +-0.619 -14.178 -1.811 0 0 0 0 0 0 0 +-0.575 -14.202 -1.814 0 0 0 0 0 0 0 +-0.53 -14.207 -1.814 0 0 0 0 0 0 0 +-0.486 -14.225 -1.817 0 0 0 0 0 0 0 +-0.464 -14.233 -1.818 0 0 0 0 0 0 0 +-0.421 -14.268 -1.823 0 0 0 0 0 0 0 +-0.376 -14.278 -1.824 0 0 0 0 0 0 0 +-0.332 -14.295 -1.826 0 0 0 0 0 0 0 +-0.287 -14.309 -1.828 0 0 0 0 0 0 0 +-0.243 -14.358 -1.835 0 0 0 0 0 0 0 +-0.198 -14.339 -1.832 0 0 0 0 0 0 0 +-0.175 -14.347 -1.833 0 0 0 0 0 0 0 +-0.13 -14.371 -1.836 0 0 0 0 0 0 0 +-0.085 -14.366 -1.835 0 0 0 0 0 0 0 +-0.04 -14.407 -1.841 0 0 0 0 0 0 0 +0.005 -14.411 -1.842 0 0 0 0 0 0 0 +0.05 -14.391 -1.839 0 0 0 0 0 0 0 +0.096 -14.409 -1.842 0 0 0 0 0 0 0 +0.118 -14.409 -1.842 0 0 0 0 0 0 0 +0.164 -14.414 -1.842 0 0 0 0 0 0 0 +0.209 -14.426 -1.844 0 0 0 0 0 0 0 +0.254 -14.423 -1.844 0 0 0 0 0 0 0 +0.3 -14.422 -1.844 0 0 0 0 0 0 0 +0.345 -14.429 -1.845 0 0 0 0 0 0 0 +0.391 -14.45 -1.848 0 0 0 0 0 0 0 +0.414 -14.443 -1.847 0 0 0 0 0 0 0 +0.46 -14.471 -1.851 0 0 0 0 0 0 0 +0.505 -14.474 -1.852 0 0 0 0 0 0 0 +0.552 -14.506 -1.857 0 0 0 0 0 0 0 +0.598 -14.502 -1.856 0 0 0 0 0 0 0 +0.643 -14.504 -1.857 0 0 0 0 0 0 0 +0.689 -14.51 -1.858 0 0 0 0 0 0 0 +0.712 -14.513 -1.859 0 0 0 0 0 0 0 +0.757 -14.5 -1.857 0 0 0 0 0 0 0 +0.803 -14.496 -1.857 0 0 0 0 0 0 0 +0.848 -14.493 -1.857 0 0 0 0 0 0 0 +0.893 -14.483 -1.856 0 0 0 0 0 0 0 +0.94 -14.496 -1.858 0 0 0 0 0 0 0 +0.986 -14.499 -1.859 0 0 0 0 0 0 0 +1.033 -14.517 -1.862 0 0 0 0 0 0 0 +1.056 -14.52 -1.863 0 0 0 0 0 0 0 +1.101 -14.512 -1.862 0 0 0 0 0 0 0 +1.146 -14.505 -1.862 0 0 0 0 0 0 0 +1.193 -14.517 -1.864 0 0 0 0 0 0 0 +1.246 -14.602 -1.876 0 0 0 0 0 0 0 +1.294 -14.616 -1.879 0 0 0 0 0 0 0 +1.339 -14.608 -1.878 0 0 0 0 0 0 0 +1.356 -14.542 -1.869 0 0 0 0 0 0 0 +1.392 -14.428 -1.854 0 0 0 0 0 0 0 +1.424 -14.295 -1.835 0 0 0 0 0 0 0 +1.46 -14.196 -1.822 0 0 0 0 0 0 0 +1.49 -14.053 -1.802 0 0 0 0 0 0 0 +1.527 -13.978 -1.792 0 0 0 0 0 0 0 +1.546 -13.954 -1.789 0 0 0 0 0 0 0 +1.591 -13.961 -1.791 0 0 0 0 0 0 0 +1.633 -13.94 -1.789 0 0 0 0 0 0 0 +1.678 -13.94 -1.789 0 0 0 0 0 0 0 +1.72 -13.925 -1.788 0 0 0 0 0 0 0 +1.762 -13.904 -1.786 0 0 0 0 0 0 0 +1.805 -13.893 -1.785 0 0 0 0 0 0 0 +1.849 -13.887 -1.785 0 0 0 0 0 0 0 +1.871 -13.886 -1.785 0 0 0 0 0 0 0 +1.913 -13.868 -1.784 0 0 0 0 0 0 0 +1.956 -13.858 -1.783 0 0 0 0 0 0 0 +1.997 -13.838 -1.781 0 0 0 0 0 0 0 +2.041 -13.83 -1.781 0 0 0 0 0 0 0 +2.082 -13.81 -1.779 0 0 0 0 0 0 0 +2.124 -13.795 -1.778 0 0 0 0 0 0 0 +2.144 -13.782 -1.776 0 0 0 0 0 0 0 +2.186 -13.764 -1.775 0 0 0 0 0 0 0 +2.228 -13.749 -1.774 0 0 0 0 0 0 0 +2.269 -13.732 -1.772 0 0 0 0 0 0 0 +2.311 -13.713 -1.77 0 0 0 0 0 0 0 +2.351 -13.692 -1.768 0 0 0 0 0 0 0 +2.393 -13.679 -1.768 0 0 0 0 0 0 0 +2.413 -13.667 -1.766 0 0 0 0 0 0 0 +2.456 -13.66 -1.766 0 0 0 0 0 0 0 +2.496 -13.634 -1.764 0 0 0 0 0 0 0 +2.536 -13.611 -1.762 0 0 0 0 0 0 0 +2.578 -13.601 -1.761 0 0 0 0 0 0 0 +2.619 -13.581 -1.76 0 0 0 0 0 0 0 +2.658 -13.557 -1.758 0 0 0 0 0 0 0 +2.679 -13.547 -1.757 0 0 0 0 0 0 0 +1.328 -6.539 -0.746 0 0 0 0 0 0 0 +1.317 -6.378 -0.724 0 0 0 0 0 0 0 +1.334 -6.358 -0.721 0 0 0 0 0 0 0 +1.354 -6.358 -0.722 0 0 0 0 0 0 0 +1.362 -6.295 -0.713 0 0 0 0 0 0 0 +1.396 -6.355 -0.723 0 0 0 0 0 0 0 +1.41 -6.372 -0.726 0 0 0 0 0 0 0 +1.441 -6.42 -0.733 0 0 0 0 0 0 0 +1.457 -6.398 -0.731 0 0 0 0 0 0 0 +1.473 -6.374 -0.728 0 0 0 0 0 0 0 +1.494 -6.373 -0.728 0 0 0 0 0 0 0 +1.527 -6.422 -0.736 0 0 0 0 0 0 0 +1.554 -6.448 -0.741 0 0 0 0 0 0 0 +1.567 -6.455 -0.742 0 0 0 0 0 0 0 +1.593 -6.475 -0.746 0 0 0 0 0 0 0 +1.645 -6.601 -0.765 0 0 0 0 0 0 0 +1.68 -6.654 -0.773 0 0 0 0 0 0 0 +3.338 -13.149 -1.722 0 0 0 0 0 0 0 +3.374 -13.117 -1.719 0 0 0 0 0 0 0 +3.415 -13.102 -1.719 0 0 0 0 0 0 0 +3.435 -13.097 -1.719 0 0 0 0 0 0 0 +3.471 -13.065 -1.715 0 0 0 0 0 0 0 +3.509 -13.043 -1.714 0 0 0 0 0 0 0 +3.546 -13.018 -1.712 0 0 0 0 0 0 0 +3.587 -13.009 -1.712 0 0 0 0 0 0 0 +3.621 -12.971 -1.708 0 0 0 0 0 0 0 +3.662 -12.959 -1.708 0 0 0 0 0 0 0 +3.681 -12.95 -1.708 0 0 0 0 0 0 0 +3.716 -12.919 -1.705 0 0 0 0 0 0 0 +3.754 -12.898 -1.703 0 0 0 0 0 0 0 +3.791 -12.873 -1.701 0 0 0 0 0 0 0 +3.829 -12.855 -1.701 0 0 0 0 0 0 0 +3.869 -12.839 -1.7 0 0 0 0 0 0 0 +3.908 -12.823 -1.699 0 0 0 0 0 0 0 +3.926 -12.809 -1.698 0 0 0 0 0 0 0 +3.965 -12.795 -1.698 0 0 0 0 0 0 0 +3.996 -12.752 -1.694 0 0 0 0 0 0 0 +4.036 -12.74 -1.694 0 0 0 0 0 0 0 +4.075 -12.725 -1.693 0 0 0 0 0 0 0 +4.107 -12.686 -1.689 0 0 0 0 0 0 0 +4.147 -12.673 -1.689 0 0 0 0 0 0 0 +4.169 -12.674 -1.691 0 0 0 0 0 0 0 +4.203 -12.642 -1.688 0 0 0 0 0 0 0 +4.242 -12.627 -1.687 0 0 0 0 0 0 0 +4.277 -12.6 -1.685 0 0 0 0 0 0 0 +4.315 -12.581 -1.685 0 0 0 0 0 0 0 +4.357 -12.575 -1.686 0 0 0 0 0 0 0 +4.39 -12.543 -1.683 0 0 0 0 0 0 0 +3.706 -10.522 -1.381 0 0 0 0 0 0 0 +3.733 -10.494 -1.378 0 0 0 0 0 0 0 +3.762 -10.471 -1.377 0 0 0 0 0 0 0 +3.795 -10.459 -1.377 0 0 0 0 0 0 0 +3.841 -10.484 -1.382 0 0 0 0 0 0 0 +4.594 -12.433 -1.678 0 0 0 0 0 0 0 +4.629 -12.408 -1.677 0 0 0 0 0 0 0 +4.646 -12.395 -1.676 0 0 0 0 0 0 0 +4.686 -12.382 -1.676 0 0 0 0 0 0 0 +4.715 -12.341 -1.672 0 0 0 0 0 0 0 +4.752 -12.323 -1.671 0 0 0 0 0 0 0 +4.794 -12.315 -1.673 0 0 0 0 0 0 0 +4.826 -12.283 -1.67 0 0 0 0 0 0 0 +4.863 -12.264 -1.669 0 0 0 0 0 0 0 +4.885 -12.264 -1.671 0 0 0 0 0 0 0 +4.916 -12.229 -1.668 0 0 0 0 0 0 0 +4.956 -12.217 -1.668 0 0 0 0 0 0 0 +4.99 -12.192 -1.667 0 0 0 0 0 0 0 +5.027 -12.173 -1.666 0 0 0 0 0 0 0 +5.062 -12.148 -1.665 0 0 0 0 0 0 0 +5.097 -12.124 -1.664 0 0 0 0 0 0 0 +5.113 -12.109 -1.662 0 0 0 0 0 0 0 +5.148 -12.087 -1.662 0 0 0 0 0 0 0 +5.181 -12.058 -1.66 0 0 0 0 0 0 0 +5.215 -12.033 -1.658 0 0 0 0 0 0 0 +5.252 -12.015 -1.658 0 0 0 0 0 0 0 +5.285 -11.989 -1.657 0 0 0 0 0 0 0 +5.328 -11.983 -1.658 0 0 0 0 0 0 0 +5.339 -11.959 -1.656 0 0 0 0 0 0 0 +5.368 -11.922 -1.653 0 0 0 0 0 0 0 +5.406 -11.905 -1.653 0 0 0 0 0 0 0 +5.44 -11.882 -1.652 0 0 0 0 0 0 0 +5.469 -11.847 -1.649 0 0 0 0 0 0 0 +5.512 -11.843 -1.651 0 0 0 0 0 0 0 +5.538 -11.8 -1.647 0 0 0 0 0 0 0 +5.554 -11.786 -1.646 0 0 0 0 0 0 0 +5.582 -11.751 -1.643 0 0 0 0 0 0 0 +5.619 -11.733 -1.643 0 0 0 0 0 0 0 +5.641 -11.683 -1.638 0 0 0 0 0 0 0 +5.68 -11.671 -1.639 0 0 0 0 0 0 0 +5.709 -11.637 -1.637 0 0 0 0 0 0 0 +5.745 -11.619 -1.637 0 0 0 0 0 0 0 +5.756 -11.594 -1.634 0 0 0 0 0 0 0 +5.786 -11.563 -1.632 0 0 0 0 0 0 0 +5.814 -11.529 -1.63 0 0 0 0 0 0 0 +5.85 -11.509 -1.629 0 0 0 0 0 0 0 +5.878 -11.475 -1.627 0 0 0 0 0 0 0 +5.915 -11.458 -1.627 0 0 0 0 0 0 0 +5.943 -11.425 -1.625 0 0 0 0 0 0 0 +5.955 -11.404 -1.623 0 0 0 0 0 0 0 +5.988 -11.38 -1.622 0 0 0 0 0 0 0 +6.022 -11.357 -1.622 0 0 0 0 0 0 0 +6.052 -11.328 -1.62 0 0 0 0 0 0 0 +6.083 -11.3 -1.618 0 0 0 0 0 0 0 +6.11 -11.265 -1.616 0 0 0 0 0 0 0 +6.14 -11.237 -1.615 0 0 0 0 0 0 0 +6.158 -11.228 -1.615 0 0 0 0 0 0 0 +6.192 -11.206 -1.614 0 0 0 0 0 0 0 +6.218 -11.17 -1.611 0 0 0 0 0 0 0 +6.253 -11.15 -1.611 0 0 0 0 0 0 0 +6.285 -11.125 -1.611 0 0 0 0 0 0 0 +6.313 -11.093 -1.609 0 0 0 0 0 0 0 +6.35 -11.077 -1.609 0 0 0 0 0 0 0 +6.362 -11.058 -1.608 0 0 0 0 0 0 0 +6.392 -11.03 -1.606 0 0 0 0 0 0 0 +6.425 -11.006 -1.606 0 0 0 0 0 0 0 +6.445 -10.962 -1.602 0 0 0 0 0 0 0 +6.484 -10.948 -1.603 0 0 0 0 0 0 0 +6.512 -10.918 -1.601 0 0 0 0 0 0 0 +6.554 -10.911 -1.604 0 0 0 0 0 0 0 +6.562 -10.885 -1.601 0 0 0 0 0 0 0 +6.593 -10.859 -1.6 0 0 0 0 0 0 0 +6.622 -10.83 -1.599 0 0 0 0 0 0 0 +6.653 -10.804 -1.598 0 0 0 0 0 0 0 +6.687 -10.783 -1.598 0 0 0 0 0 0 0 +6.715 -10.752 -1.596 0 0 0 0 0 0 0 +6.746 -10.728 -1.596 0 0 0 0 0 0 0 +6.766 -10.722 -1.597 0 0 0 0 0 0 0 +6.79 -10.686 -1.594 0 0 0 0 0 0 0 +6.82 -10.658 -1.593 0 0 0 0 0 0 0 +6.85 -10.631 -1.592 0 0 0 0 0 0 0 +6.877 -10.6 -1.59 0 0 0 0 0 0 0 +6.908 -10.575 -1.59 0 0 0 0 0 0 0 +6.94 -10.551 -1.59 0 0 0 0 0 0 0 +6.945 -10.522 -1.587 0 0 0 0 0 0 0 +6.979 -10.502 -1.587 0 0 0 0 0 0 0 +7.004 -10.468 -1.585 0 0 0 0 0 0 0 +7.037 -10.446 -1.585 0 0 0 0 0 0 0 +7.065 -10.418 -1.584 0 0 0 0 0 0 0 +7.097 -10.394 -1.583 0 0 0 0 0 0 0 +7.114 -10.349 -1.58 0 0 0 0 0 0 0 +7.13 -10.337 -1.58 0 0 0 0 0 0 0 +7.165 -10.318 -1.58 0 0 0 0 0 0 0 +7.186 -10.279 -1.577 0 0 0 0 0 0 0 +7.221 -10.262 -1.578 0 0 0 0 0 0 0 +7.246 -10.228 -1.576 0 0 0 0 0 0 0 +7.272 -10.197 -1.575 0 0 0 0 0 0 0 +7.296 -10.162 -1.573 0 0 0 0 0 0 0 +7.31 -10.148 -1.572 0 0 0 0 0 0 0 +7.337 -10.118 -1.571 0 0 0 0 0 0 0 +7.367 -10.094 -1.571 0 0 0 0 0 0 0 +7.403 -10.075 -1.572 0 0 0 0 0 0 0 +7.421 -10.034 -1.569 0 0 0 0 0 0 0 +7.447 -10.003 -1.567 0 0 0 0 0 0 0 +7.484 -9.988 -1.569 0 0 0 0 0 0 0 +7.505 -9.95 -1.566 0 0 0 0 0 0 0 +7.517 -9.933 -1.565 0 0 0 0 0 0 0 +7.542 -9.902 -1.564 0 0 0 0 0 0 0 +7.573 -9.878 -1.564 0 0 0 0 0 0 0 +7.605 -9.856 -1.564 0 0 0 0 0 0 0 +7.631 -9.825 -1.563 0 0 0 0 0 0 0 +7.663 -9.803 -1.563 0 0 0 0 0 0 0 +7.689 -9.773 -1.562 0 0 0 0 0 0 0 +7.699 -9.753 -1.561 0 0 0 0 0 0 0 +7.729 -9.728 -1.561 0 0 0 0 0 0 0 +7.76 -9.704 -1.561 0 0 0 0 0 0 0 +7.784 -9.672 -1.559 0 0 0 0 0 0 0 +7.813 -9.646 -1.559 0 0 0 0 0 0 0 +7.84 -9.617 -1.558 0 0 0 0 0 0 0 +7.846 -9.594 -1.556 0 0 0 0 0 0 0 +7.871 -9.563 -1.555 0 0 0 0 0 0 0 +7.902 -9.54 -1.555 0 0 0 0 0 0 0 +7.921 -9.501 -1.553 0 0 0 0 0 0 0 +7.948 -9.473 -1.552 0 0 0 0 0 0 0 +7.971 -9.44 -1.551 0 0 0 0 0 0 0 +7.997 -9.411 -1.55 0 0 0 0 0 0 0 +8.013 -9.4 -1.55 0 0 0 0 0 0 0 +8.027 -9.356 -1.547 0 0 0 0 0 0 0 +8.055 -9.33 -1.547 0 0 0 0 0 0 0 +8.082 -9.301 -1.546 0 0 0 0 0 0 0 +8.101 -9.264 -1.544 0 0 0 0 0 0 0 +8.121 -9.228 -1.542 0 0 0 0 0 0 0 +8.15 -9.203 -1.542 0 0 0 0 0 0 0 +8.163 -9.188 -1.542 0 0 0 0 0 0 0 +8.188 -9.158 -1.541 0 0 0 0 0 0 0 +8.213 -9.128 -1.54 0 0 0 0 0 0 0 +8.24 -9.101 -1.54 0 0 0 0 0 0 0 +8.259 -9.064 -1.538 0 0 0 0 0 0 0 +8.291 -9.043 -1.539 0 0 0 0 0 0 0 +8.313 -9.009 -1.537 0 0 0 0 0 0 0 +8.335 -8.976 -1.536 0 0 0 0 0 0 0 +8.347 -8.961 -1.535 0 0 0 0 0 0 0 +8.369 -8.928 -1.534 0 0 0 0 0 0 0 +8.4 -8.904 -1.535 0 0 0 0 0 0 0 +8.419 -8.869 -1.533 0 0 0 0 0 0 0 +8.44 -8.836 -1.532 0 0 0 0 0 0 0 +8.476 -8.818 -1.533 0 0 0 0 0 0 0 +8.497 -8.784 -1.532 0 0 0 0 0 0 0 +8.494 -8.754 -1.528 0 0 0 0 0 0 0 +8.529 -8.734 -1.53 0 0 0 0 0 0 0 +8.557 -8.708 -1.53 0 0 0 0 0 0 0 +8.556 -8.652 -1.524 0 0 0 0 0 0 0 +8.597 -8.639 -1.527 0 0 0 0 0 0 0 +8.608 -8.597 -1.524 0 0 0 0 0 0 0 +8.641 -8.575 -1.525 0 0 0 0 0 0 0 +8.663 -8.57 -1.527 0 0 0 0 0 0 0 +8.677 -8.53 -1.524 0 0 0 0 0 0 0 +8.705 -8.504 -1.525 0 0 0 0 0 0 0 +8.729 -8.474 -1.524 0 0 0 0 0 0 0 +8.751 -8.442 -1.523 0 0 0 0 0 0 0 +8.785 -8.422 -1.525 0 0 0 0 0 0 0 +8.782 -8.393 -1.521 0 0 0 0 0 0 0 +8.813 -8.369 -1.522 0 0 0 0 0 0 0 +8.831 -8.333 -1.521 0 0 0 0 0 0 0 +8.825 -8.276 -1.514 0 0 0 0 0 0 0 +8.864 -8.26 -1.517 0 0 0 0 0 0 0 +8.9 -8.242 -1.519 0 0 0 0 0 0 0 +8.914 -8.203 -1.517 0 0 0 0 0 0 0 +8.953 -8.187 -1.519 0 0 0 0 0 0 0 +8.962 -8.169 -1.518 0 0 0 0 0 0 0 +8.987 -8.141 -1.518 0 0 0 0 0 0 0 +9.016 -8.115 -1.519 0 0 0 0 0 0 0 +9.037 -8.083 -1.518 0 0 0 0 0 0 0 +9.059 -8.052 -1.518 0 0 0 0 0 0 0 +9.076 -8.015 -1.516 0 0 0 0 0 0 0 +9.102 -7.988 -1.516 0 0 0 0 0 0 0 +9.116 -7.975 -1.516 0 0 0 0 0 0 0 +9.153 -7.957 -1.519 0 0 0 0 0 0 0 +9.172 -7.923 -1.518 0 0 0 0 0 0 0 +9.191 -7.889 -1.516 0 0 0 0 0 0 0 +9.226 -7.869 -1.518 0 0 0 0 0 0 0 +9.246 -7.836 -1.518 0 0 0 0 0 0 0 +9.274 -7.809 -1.518 0 0 0 0 0 0 0 +9.295 -7.803 -1.52 0 0 0 0 0 0 0 +9.312 -7.767 -1.518 0 0 0 0 0 0 0 +9.338 -7.739 -1.519 0 0 0 0 0 0 0 +9.362 -7.71 -1.519 0 0 0 0 0 0 0 +9.396 -7.688 -1.52 0 0 0 0 0 0 0 +9.412 -7.652 -1.519 0 0 0 0 0 0 0 +9.45 -7.633 -1.521 0 0 0 0 0 0 0 +9.453 -7.611 -1.52 0 0 0 0 0 0 0 +9.484 -7.588 -1.521 0 0 0 0 0 0 0 +9.5 -7.552 -1.52 0 0 0 0 0 0 0 +9.533 -7.529 -1.521 0 0 0 0 0 0 0 +9.549 -7.493 -1.52 0 0 0 0 0 0 0 +9.577 -7.467 -1.521 0 0 0 0 0 0 0 +9.583 -7.447 -1.52 0 0 0 0 0 0 0 +9.619 -7.426 -1.522 0 0 0 0 0 0 0 +9.622 -7.38 -1.518 0 0 0 0 0 0 0 +9.656 -7.358 -1.52 0 0 0 0 0 0 0 +9.674 -7.324 -1.52 0 0 0 0 0 0 0 +9.697 -7.294 -1.52 0 0 0 0 0 0 0 +9.706 -7.253 -1.517 0 0 0 0 0 0 0 +9.736 -7.228 -1.518 0 0 0 0 0 0 0 +9.737 -7.205 -1.516 0 0 0 0 0 0 0 +9.773 -7.185 -1.519 0 0 0 0 0 0 0 +9.786 -7.147 -1.517 0 0 0 0 0 0 0 +9.812 -7.118 -1.518 0 0 0 0 0 0 0 +9.815 -7.074 -1.514 0 0 0 0 0 0 0 +9.84 -7.045 -1.515 0 0 0 0 0 0 0 +9.851 -7.006 -1.513 0 0 0 0 0 0 0 +9.867 -6.994 -1.514 0 0 0 0 0 0 0 +9.879 -6.956 -1.512 0 0 0 0 0 0 0 +9.904 -6.927 -1.513 0 0 0 0 0 0 0 +9.933 -6.901 -1.514 0 0 0 0 0 0 0 +9.954 -6.869 -1.514 0 0 0 0 0 0 0 +9.968 -6.833 -1.513 0 0 0 0 0 0 0 +9.991 -6.802 -1.513 0 0 0 0 0 0 0 +9.995 -6.782 -1.512 0 0 0 0 0 0 0 +10.018 -6.752 -1.512 0 0 0 0 0 0 0 +10.05 -6.728 -1.514 0 0 0 0 0 0 0 +10.063 -6.691 -1.513 0 0 0 0 0 0 0 +10.078 -6.655 -1.511 0 0 0 0 0 0 0 +10.107 -6.629 -1.513 0 0 0 0 0 0 0 +10.132 -6.6 -1.514 0 0 0 0 0 0 0 +10.146 -6.586 -1.514 0 0 0 0 0 0 0 +10.165 -6.553 -1.514 0 0 0 0 0 0 0 +10.182 -6.519 -1.513 0 0 0 0 0 0 0 +10.218 -6.497 -1.516 0 0 0 0 0 0 0 +10.25 -6.472 -1.518 0 0 0 0 0 0 0 +10.265 -6.437 -1.517 0 0 0 0 0 0 0 +10.292 -6.409 -1.518 0 0 0 0 0 0 0 +10.297 -6.389 -1.517 0 0 0 0 0 0 0 +10.324 -6.361 -1.518 0 0 0 0 0 0 0 +10.344 -6.329 -1.518 0 0 0 0 0 0 0 +10.37 -6.3 -1.52 0 0 0 0 0 0 0 +10.398 -6.273 -1.521 0 0 0 0 0 0 0 +10.403 -6.231 -1.518 0 0 0 0 0 0 0 +10.417 -6.195 -1.518 0 0 0 0 0 0 0 +10.425 -6.178 -1.517 0 0 0 0 0 0 0 +10.455 -6.151 -1.519 0 0 0 0 0 0 0 +10.474 -6.118 -1.519 0 0 0 0 0 0 0 +10.516 -6.098 -1.523 0 0 0 0 0 0 0 +10.512 -6.052 -1.519 0 0 0 0 0 0 0 +10.552 -6.031 -1.522 0 0 0 0 0 0 0 +10.555 -5.989 -1.52 0 0 0 0 0 0 0 +10.582 -5.982 -1.523 0 0 0 0 0 0 0 +10.601 -5.949 -1.523 0 0 0 0 0 0 0 +10.624 -5.919 -1.523 0 0 0 0 0 0 0 +10.638 -5.882 -1.523 0 0 0 0 0 0 0 +10.663 -5.853 -1.524 0 0 0 0 0 0 0 +10.673 -5.814 -1.522 0 0 0 0 0 0 0 +10.705 -5.788 -1.525 0 0 0 0 0 0 0 +10.711 -5.77 -1.524 0 0 0 0 0 0 0 +10.732 -5.738 -1.525 0 0 0 0 0 0 0 +10.754 -5.706 -1.525 0 0 0 0 0 0 0 +10.766 -5.669 -1.524 0 0 0 0 0 0 0 +10.796 -5.642 -1.526 0 0 0 0 0 0 0 +8.782 -4.549 -1.202 0 0 0 0 0 0 0 +8.793 -4.519 -1.201 0 0 0 0 0 0 0 +8.768 -4.489 -1.196 0 0 0 0 0 0 0 +8.797 -4.469 -1.199 0 0 0 0 0 0 0 +10.889 -5.453 -1.526 0 0 0 0 0 0 0 +10.904 -5.418 -1.525 0 0 0 0 0 0 0 +10.93 -5.388 -1.527 0 0 0 0 0 0 0 +10.947 -5.353 -1.527 0 0 0 0 0 0 0 +10.964 -5.341 -1.528 0 0 0 0 0 0 0 +10.986 -5.309 -1.529 0 0 0 0 0 0 0 +10.995 -5.271 -1.528 0 0 0 0 0 0 0 +11.017 -5.239 -1.529 0 0 0 0 0 0 0 +11.037 -5.206 -1.529 0 0 0 0 0 0 0 +11.061 -5.174 -1.53 0 0 0 0 0 0 0 +11.063 -5.133 -1.528 0 0 0 0 0 0 0 +11.074 -5.117 -1.529 0 0 0 0 0 0 0 +11.092 -5.083 -1.529 0 0 0 0 0 0 0 +11.09 -5.04 -1.526 0 0 0 0 0 0 0 +11.118 -5.011 -1.528 0 0 0 0 0 0 0 +11.125 -4.972 -1.527 0 0 0 0 0 0 0 +11.17 -4.95 -1.531 0 0 0 0 0 0 0 +11.172 -4.909 -1.529 0 0 0 0 0 0 0 +11.169 -4.887 -1.528 0 0 0 0 0 0 0 +11.112 -4.82 -1.516 0 0 0 0 0 0 0 +11.22 -4.825 -1.531 0 0 0 0 0 0 0 +11.226 -4.786 -1.529 0 0 0 0 0 0 0 +11.232 -4.747 -1.528 0 0 0 0 0 0 0 +11.27 -4.722 -1.532 0 0 0 0 0 0 0 +11.267 -4.679 -1.529 0 0 0 0 0 0 0 +11.281 -4.664 -1.53 0 0 0 0 0 0 0 +11.294 -4.628 -1.53 0 0 0 0 0 0 0 +11.321 -4.597 -1.532 0 0 0 0 0 0 0 +11.317 -4.554 -1.529 0 0 0 0 0 0 0 +11.341 -4.522 -1.53 0 0 0 0 0 0 0 +11.349 -4.485 -1.529 0 0 0 0 0 0 0 +11.36 -4.448 -1.529 0 0 0 0 0 0 0 +11.361 -4.427 -1.528 0 0 0 0 0 0 0 +11.377 -4.392 -1.528 0 0 0 0 0 0 0 +11.381 -4.353 -1.527 0 0 0 0 0 0 0 +11.395 -4.317 -1.527 0 0 0 0 0 0 0 +11.418 -4.285 -1.528 0 0 0 0 0 0 0 +11.435 -4.251 -1.529 0 0 0 0 0 0 0 +11.452 -4.216 -1.529 0 0 0 0 0 0 0 +11.451 -4.195 -1.528 0 0 0 0 0 0 0 +11.474 -4.163 -1.53 0 0 0 0 0 0 0 +11.47 -4.121 -1.527 0 0 0 0 0 0 0 +11.477 -4.082 -1.526 0 0 0 0 0 0 0 +11.509 -4.053 -1.529 0 0 0 0 0 0 0 +11.512 -4.014 -1.528 0 0 0 0 0 0 0 +11.538 -3.982 -1.53 0 0 0 0 0 0 0 +11.534 -3.961 -1.528 0 0 0 0 0 0 0 +11.551 -3.926 -1.529 0 0 0 0 0 0 0 +11.572 -3.892 -1.53 0 0 0 0 0 0 0 +11.571 -3.852 -1.528 0 0 0 0 0 0 0 +11.579 -3.814 -1.528 0 0 0 0 0 0 0 +11.597 -3.78 -1.528 0 0 0 0 0 0 0 +11.601 -3.741 -1.527 0 0 0 0 0 0 0 +11.611 -3.724 -1.528 0 0 0 0 0 0 0 +11.628 -3.689 -1.529 0 0 0 0 0 0 0 +11.619 -3.646 -1.526 0 0 0 0 0 0 0 +11.63 -3.609 -1.526 0 0 0 0 0 0 0 +11.638 -3.572 -1.525 0 0 0 0 0 0 0 +11.617 -3.525 -1.52 0 0 0 0 0 0 0 +11.651 -3.496 -1.524 0 0 0 0 0 0 0 +11.669 -3.481 -1.526 0 0 0 0 0 0 0 +11.677 -3.443 -1.525 0 0 0 0 0 0 0 +11.697 -3.409 -1.527 0 0 0 0 0 0 0 +11.698 -3.37 -1.525 0 0 0 0 0 0 0 +11.712 -3.334 -1.526 0 0 0 0 0 0 0 +11.728 -3.299 -1.527 0 0 0 0 0 0 0 +11.746 -3.264 -1.528 0 0 0 0 0 0 0 +11.748 -3.245 -1.527 0 0 0 0 0 0 0 +11.758 -3.208 -1.527 0 0 0 0 0 0 0 +11.785 -3.176 -1.53 0 0 0 0 0 0 0 +11.78 -3.135 -1.527 0 0 0 0 0 0 0 +11.789 -3.097 -1.527 0 0 0 0 0 0 0 +11.793 -3.059 -1.527 0 0 0 0 0 0 0 +11.814 -3.025 -1.528 0 0 0 0 0 0 0 +11.807 -2.983 -1.526 0 0 0 0 0 0 0 +11.825 -2.968 -1.528 0 0 0 0 0 0 0 +11.824 -2.929 -1.526 0 0 0 0 0 0 0 +7.298 -1.773 -0.865 0 0 0 0 0 0 0 +7.28 -1.744 -0.862 0 0 0 0 0 0 0 +7.251 -1.713 -0.856 0 0 0 0 0 0 0 +7.228 -1.684 -0.852 0 0 0 0 0 0 0 +7.246 -1.664 -0.854 0 0 0 0 0 0 0 +7.322 -1.67 -0.865 0 0 0 0 0 0 0 +7.314 -1.643 -0.863 0 0 0 0 0 0 0 +7.292 -1.614 -0.859 0 0 0 0 0 0 0 +7.23 -1.553 -0.849 0 0 0 0 0 0 0 +7.284 -1.541 -0.856 0 0 0 0 0 0 0 +7.209 -1.513 -0.844 0 0 0 0 0 0 0 +7.202 -1.488 -0.843 0 0 0 0 0 0 0 +7.204 -1.465 -0.842 0 0 0 0 0 0 0 +7.211 -1.442 -0.843 0 0 0 0 0 0 0 +7.212 -1.419 -0.842 0 0 0 0 0 0 0 +7.23 -1.399 -0.844 0 0 0 0 0 0 0 +7.23 -1.375 -0.844 0 0 0 0 0 0 0 +7.258 -1.357 -0.847 0 0 0 0 0 0 0 +7.275 -1.349 -0.849 0 0 0 0 0 0 0 +7.299 -1.329 -0.852 0 0 0 0 0 0 0 +7.336 -1.312 -0.857 0 0 0 0 0 0 0 +7.358 -1.293 -0.859 0 0 0 0 0 0 0 +7.379 -1.273 -0.862 0 0 0 0 0 0 0 +7.432 -1.258 -0.869 0 0 0 0 0 0 0 +7.463 -1.239 -0.873 0 0 0 0 0 0 0 +7.594 -1.249 -0.891 0 0 0 0 0 0 0 +12.254 -1.992 -1.559 0 0 0 0 0 0 0 +12.266 -1.954 -1.56 0 0 0 0 0 0 0 +12.259 -1.914 -1.558 0 0 0 0 0 0 0 +12.275 -1.877 -1.56 0 0 0 0 0 0 0 +12.488 -1.87 -1.589 0 0 0 0 0 0 0 +7.865 -1.13 -0.927 0 0 0 0 0 0 0 +7.867 -1.105 -0.926 0 0 0 0 0 0 0 +12.286 -1.662 -1.557 0 0 0 0 0 0 0 +12.287 -1.623 -1.556 0 0 0 0 0 0 0 +12.311 -1.587 -1.559 0 0 0 0 0 0 0 +12.307 -1.547 -1.558 0 0 0 0 0 0 0 +12.319 -1.529 -1.559 0 0 0 0 0 0 0 +12.316 -1.489 -1.558 0 0 0 0 0 0 0 +12.305 -1.448 -1.556 0 0 0 0 0 0 0 +12.337 -1.413 -1.56 0 0 0 0 0 0 0 +12.327 -1.372 -1.558 0 0 0 0 0 0 0 +12.32 -1.332 -1.556 0 0 0 0 0 0 0 +12.28 -1.289 -1.55 0 0 0 0 0 0 0 +12.292 -1.271 -1.551 0 0 0 0 0 0 0 +12.198 -1.222 -1.537 0 0 0 0 0 0 0 +11.094 -1.074 -1.38 0 0 0 0 0 0 0 +11.111 -1.04 -1.382 0 0 0 0 0 0 0 +12.323 -1.118 -1.553 0 0 0 0 0 0 0 +12.328 -1.079 -1.554 0 0 0 0 0 0 0 +12.344 -1.041 -1.555 0 0 0 0 0 0 0 +12.347 -1.022 -1.556 0 0 0 0 0 0 0 +12.331 -0.982 -1.553 0 0 0 0 0 0 0 +12.328 -0.943 -1.552 0 0 0 0 0 0 0 +12.321 -0.903 -1.551 0 0 0 0 0 0 0 +12.314 -0.864 -1.549 0 0 0 0 0 0 0 +12.332 -0.826 -1.551 0 0 0 0 0 0 0 +12.337 -0.788 -1.552 0 0 0 0 0 0 0 +12.346 -0.769 -1.553 0 0 0 0 0 0 0 +12.322 -0.728 -1.549 0 0 0 0 0 0 0 +12.319 -0.689 -1.548 0 0 0 0 0 0 0 +12.311 -0.65 -1.547 0 0 0 0 0 0 0 +12.271 -0.609 -1.541 0 0 0 0 0 0 0 +12.37 -0.575 -1.555 0 0 0 0 0 0 0 +12.34 -0.535 -1.55 0 0 0 0 0 0 0 +12.395 -0.518 -1.558 0 0 0 0 0 0 0 +12.42 -0.48 -1.561 0 0 0 0 0 0 0 +12.392 -0.44 -1.557 0 0 0 0 0 0 0 +12.349 -0.399 -1.551 0 0 0 0 0 0 0 +12.418 -0.363 -1.56 0 0 0 0 0 0 0 +12.466 -0.325 -1.567 0 0 0 0 0 0 0 +12.481 -0.286 -1.569 0 0 0 0 0 0 0 +12.503 -0.267 -1.572 0 0 0 0 0 0 0 +12.435 -0.226 -1.562 0 0 0 0 0 0 0 +12.499 -0.188 -1.571 0 0 0 0 0 0 0 +12.492 -0.149 -1.57 0 0 0 0 0 0 0 +12.504 -0.11 -1.572 0 0 0 0 0 0 0 +12.461 -0.07 -1.566 0 0 0 0 0 0 0 +12.477 -0.031 -1.568 0 0 0 0 0 0 0 +12.441 -0.012 -1.563 0 0 0 0 0 0 0 +12.242 0.003 -1.59 0 0 0 0 0 0 0 +12.238 0.042 -1.589 0 0 0 0 0 0 0 +12.243 0.08 -1.59 0 0 0 0 0 0 0 +12.271 0.119 -1.594 0 0 0 0 0 0 0 +12.326 0.158 -1.602 0 0 0 0 0 0 0 +12.392 0.198 -1.612 0 0 0 0 0 0 0 +12.455 0.239 -1.621 0 0 0 0 0 0 0 +12.512 0.26 -1.63 0 0 0 0 0 0 0 +12.564 0.3 -1.638 0 0 0 0 0 0 0 +12.617 0.341 -1.645 0 0 0 0 0 0 0 +12.687 0.383 -1.656 0 0 0 0 0 0 0 +12.747 0.425 -1.665 0 0 0 0 0 0 0 +12.811 0.468 -1.674 0 0 0 0 0 0 0 +12.859 0.51 -1.682 0 0 0 0 0 0 0 +12.882 0.531 -1.685 0 0 0 0 0 0 0 +12.856 0.571 -1.682 0 0 0 0 0 0 0 +12.862 0.611 -1.683 0 0 0 0 0 0 0 +12.884 0.653 -1.686 0 0 0 0 0 0 0 +12.915 0.695 -1.691 0 0 0 0 0 0 0 +12.99 0.741 -1.702 0 0 0 0 0 0 0 +13.004 0.782 -1.705 0 0 0 0 0 0 0 +13.036 0.805 -1.71 0 0 0 0 0 0 0 +13.031 0.846 -1.709 0 0 0 0 0 0 0 +13.031 0.887 -1.71 0 0 0 0 0 0 0 +13.018 0.927 -1.708 0 0 0 0 0 0 0 +13.019 0.968 -1.709 0 0 0 0 0 0 0 +13 1.008 -1.706 0 0 0 0 0 0 0 +12.92 1.042 -1.695 0 0 0 0 0 0 0 +13.001 1.07 -1.707 0 0 0 0 0 0 0 +12.986 1.109 -1.706 0 0 0 0 0 0 0 +13.002 1.152 -1.709 0 0 0 0 0 0 0 +12.967 1.19 -1.704 0 0 0 0 0 0 0 +12.957 1.23 -1.703 0 0 0 0 0 0 0 +12.961 1.272 -1.704 0 0 0 0 0 0 0 +12.961 1.313 -1.705 0 0 0 0 0 0 0 +12.961 1.333 -1.705 0 0 0 0 0 0 0 +12.939 1.372 -1.702 0 0 0 0 0 0 0 +12.919 1.411 -1.7 0 0 0 0 0 0 0 +12.936 1.454 -1.703 0 0 0 0 0 0 0 +12.912 1.492 -1.7 0 0 0 0 0 0 0 +12.917 1.534 -1.702 0 0 0 0 0 0 0 +12.908 1.574 -1.701 0 0 0 0 0 0 0 +12.883 1.612 -1.698 0 0 0 0 0 0 0 +12.883 1.633 -1.699 0 0 0 0 0 0 0 +12.868 1.672 -1.697 0 0 0 0 0 0 0 +12.866 1.713 -1.698 0 0 0 0 0 0 0 +12.88 1.756 -1.701 0 0 0 0 0 0 0 +12.861 1.794 -1.699 0 0 0 0 0 0 0 +12.846 1.833 -1.697 0 0 0 0 0 0 0 +12.822 1.871 -1.695 0 0 0 0 0 0 0 +12.825 1.892 -1.695 0 0 0 0 0 0 0 +12.807 1.931 -1.694 0 0 0 0 0 0 0 +12.787 1.969 -1.692 0 0 0 0 0 0 0 +12.775 2.008 -1.691 0 0 0 0 0 0 0 +12.775 2.049 -1.692 0 0 0 0 0 0 0 +12.755 2.087 -1.69 0 0 0 0 0 0 0 +12.758 2.129 -1.691 0 0 0 0 0 0 0 +12.747 2.147 -1.69 0 0 0 0 0 0 0 +12.75 2.189 -1.691 0 0 0 0 0 0 0 +12.727 2.226 -1.689 0 0 0 0 0 0 0 +12.704 2.263 -1.687 0 0 0 0 0 0 0 +12.715 2.307 -1.689 0 0 0 0 0 0 0 +12.702 2.345 -1.689 0 0 0 0 0 0 0 +12.679 2.382 -1.686 0 0 0 0 0 0 0 +12.683 2.404 -1.687 0 0 0 0 0 0 0 +12.675 2.444 -1.687 0 0 0 0 0 0 0 +12.652 2.48 -1.685 0 0 0 0 0 0 0 +12.654 2.522 -1.687 0 0 0 0 0 0 0 +12.64 2.561 -1.686 0 0 0 0 0 0 0 +12.632 2.6 -1.686 0 0 0 0 0 0 0 +12.622 2.64 -1.685 0 0 0 0 0 0 0 +12.615 2.659 -1.685 0 0 0 0 0 0 0 +12.58 2.693 -1.681 0 0 0 0 0 0 0 +12.6 2.739 -1.685 0 0 0 0 0 0 0 +12.576 2.775 -1.683 0 0 0 0 0 0 0 +12.558 2.812 -1.682 0 0 0 0 0 0 0 +12.562 2.855 -1.684 0 0 0 0 0 0 0 +12.563 2.896 -1.685 0 0 0 0 0 0 0 +12.53 2.909 -1.681 0 0 0 0 0 0 0 +12.54 2.953 -1.684 0 0 0 0 0 0 0 +12.517 2.989 -1.682 0 0 0 0 0 0 0 +12.504 3.028 -1.681 0 0 0 0 0 0 0 +12.511 3.071 -1.684 0 0 0 0 0 0 0 +12.486 3.107 -1.681 0 0 0 0 0 0 0 +12.486 3.148 -1.683 0 0 0 0 0 0 0 +12.464 3.163 -1.68 0 0 0 0 0 0 0 +12.465 3.206 -1.682 0 0 0 0 0 0 0 +12.457 3.245 -1.682 0 0 0 0 0 0 0 +12.435 3.281 -1.68 0 0 0 0 0 0 0 +12.438 3.324 -1.682 0 0 0 0 0 0 0 +12.434 3.365 -1.683 0 0 0 0 0 0 0 +12.406 3.399 -1.681 0 0 0 0 0 0 0 +12.397 3.417 -1.68 0 0 0 0 0 0 0 +12.411 3.463 -1.684 0 0 0 0 0 0 0 +12.388 3.499 -1.682 0 0 0 0 0 0 0 +12.373 3.537 -1.682 0 0 0 0 0 0 0 +12.358 3.574 -1.681 0 0 0 0 0 0 0 +12.349 3.614 -1.681 0 0 0 0 0 0 0 +12.322 3.648 -1.679 0 0 0 0 0 0 0 +12.351 3.678 -1.684 0 0 0 0 0 0 0 +12.326 3.712 -1.682 0 0 0 0 0 0 0 +12.312 3.751 -1.682 0 0 0 0 0 0 0 +12.321 3.796 -1.685 0 0 0 0 0 0 0 +12.294 3.83 -1.683 0 0 0 0 0 0 0 +12.299 3.874 -1.685 0 0 0 0 0 0 0 +12.287 3.912 -1.685 0 0 0 0 0 0 0 +12.283 3.932 -1.686 0 0 0 0 0 0 0 +12.278 3.973 -1.687 0 0 0 0 0 0 0 +12.254 4.008 -1.685 0 0 0 0 0 0 0 +12.252 4.05 -1.687 0 0 0 0 0 0 0 +12.249 4.092 -1.688 0 0 0 0 0 0 0 +12.23 4.128 -1.687 0 0 0 0 0 0 0 +12.227 4.17 -1.689 0 0 0 0 0 0 0 +12.237 4.195 -1.691 0 0 0 0 0 0 0 +12.211 4.229 -1.689 0 0 0 0 0 0 0 +12.214 4.273 -1.692 0 0 0 0 0 0 0 +12.193 4.309 -1.691 0 0 0 0 0 0 0 +12.18 4.347 -1.691 0 0 0 0 0 0 0 +12.175 4.389 -1.692 0 0 0 0 0 0 0 +12.163 4.428 -1.693 0 0 0 0 0 0 0 +12.162 4.449 -1.693 0 0 0 0 0 0 0 +12.152 4.488 -1.694 0 0 0 0 0 0 0 +12.139 4.527 -1.694 0 0 0 0 0 0 0 +12.121 4.564 -1.694 0 0 0 0 0 0 0 +12.12 4.607 -1.696 0 0 0 0 0 0 0 +12.109 4.646 -1.696 0 0 0 0 0 0 0 +12.089 4.682 -1.695 0 0 0 0 0 0 0 +12.094 4.728 -1.699 0 0 0 0 0 0 0 +12.079 4.744 -1.698 0 0 0 0 0 0 0 +12.068 4.784 -1.698 0 0 0 0 0 0 0 +12.059 4.824 -1.699 0 0 0 0 0 0 0 +12.056 4.867 -1.701 0 0 0 0 0 0 0 +12.041 4.905 -1.701 0 0 0 0 0 0 0 +12.025 4.943 -1.701 0 0 0 0 0 0 0 +12.016 4.961 -1.701 0 0 0 0 0 0 0 +12.02 5.007 -1.704 0 0 0 0 0 0 0 +12.003 5.044 -1.704 0 0 0 0 0 0 0 +12.005 5.089 -1.706 0 0 0 0 0 0 0 +11.983 5.125 -1.706 0 0 0 0 0 0 0 +11.975 5.165 -1.707 0 0 0 0 0 0 0 +11.949 5.199 -1.705 0 0 0 0 0 0 0 +11.955 5.224 -1.708 0 0 0 0 0 0 0 +11.948 5.266 -1.709 0 0 0 0 0 0 0 +11.908 5.293 -1.705 0 0 0 0 0 0 0 +11.924 5.345 -1.711 0 0 0 0 0 0 0 +11.898 5.378 -1.709 0 0 0 0 0 0 0 +11.881 5.415 -1.709 0 0 0 0 0 0 0 +11.875 5.458 -1.711 0 0 0 0 0 0 0 +11.871 5.479 -1.712 0 0 0 0 0 0 0 +11.86 5.519 -1.713 0 0 0 0 0 0 0 +11.862 5.565 -1.716 0 0 0 0 0 0 0 +11.841 5.601 -1.715 0 0 0 0 0 0 0 +11.827 5.639 -1.716 0 0 0 0 0 0 0 +11.82 5.682 -1.717 0 0 0 0 0 0 0 +11.807 5.721 -1.718 0 0 0 0 0 0 0 +11.784 5.756 -1.717 0 0 0 0 0 0 0 +11.783 5.779 -1.719 0 0 0 0 0 0 0 +11.762 5.814 -1.718 0 0 0 0 0 0 0 +11.747 5.853 -1.719 0 0 0 0 0 0 0 +11.727 5.889 -1.719 0 0 0 0 0 0 0 +11.715 5.929 -1.72 0 0 0 0 0 0 0 +11.714 5.975 -1.723 0 0 0 0 0 0 0 +11.69 6.009 -1.722 0 0 0 0 0 0 0 +11.684 6.029 -1.722 0 0 0 0 0 0 0 +11.667 6.067 -1.723 0 0 0 0 0 0 0 +11.66 6.11 -1.725 0 0 0 0 0 0 0 +11.656 6.155 -1.727 0 0 0 0 0 0 0 +11.644 6.195 -1.728 0 0 0 0 0 0 0 +11.626 6.233 -1.729 0 0 0 0 0 0 0 +11.611 6.248 -1.728 0 0 0 0 0 0 0 +11.59 6.283 -1.728 0 0 0 0 0 0 0 +11.582 6.327 -1.73 0 0 0 0 0 0 0 +11.566 6.365 -1.73 0 0 0 0 0 0 0 +11.544 6.4 -1.73 0 0 0 0 0 0 0 +11.517 6.432 -1.729 0 0 0 0 0 0 0 +11.507 6.474 -1.73 0 0 0 0 0 0 0 +11.483 6.485 -1.728 0 0 0 0 0 0 0 +11.451 6.514 -1.726 0 0 0 0 0 0 0 +11.413 6.54 -1.723 0 0 0 0 0 0 0 +10.716 6.184 -1.609 0 0 0 0 0 0 0 +10.676 6.205 -1.606 0 0 0 0 0 0 0 +10.653 6.237 -1.605 0 0 0 0 0 0 0 +10.63 6.268 -1.604 0 0 0 0 0 0 0 +10.117 5.986 -1.519 0 0 0 0 0 0 0 +10.043 5.985 -1.51 0 0 0 0 0 0 0 +10.014 6.01 -1.508 0 0 0 0 0 0 0 +9.989 6.037 -1.507 0 0 0 0 0 0 0 +9.973 6.071 -1.507 0 0 0 0 0 0 0 +9.949 6.099 -1.506 0 0 0 0 0 0 0 +9.943 6.139 -1.509 0 0 0 0 0 0 0 +9.957 6.169 -1.513 0 0 0 0 0 0 0 +9.953 6.21 -1.515 0 0 0 0 0 0 0 +9.968 6.263 -1.521 0 0 0 0 0 0 0 +9.965 6.305 -1.524 0 0 0 0 0 0 0 +9.962 6.347 -1.527 0 0 0 0 0 0 0 +9.962 6.391 -1.531 0 0 0 0 0 0 0 +9.968 6.44 -1.535 0 0 0 0 0 0 0 +9.983 6.471 -1.54 0 0 0 0 0 0 0 +9.978 6.512 -1.542 0 0 0 0 0 0 0 +9.979 6.558 -1.546 0 0 0 0 0 0 0 +9.989 6.61 -1.552 0 0 0 0 0 0 0 +10.001 6.663 -1.557 0 0 0 0 0 0 0 +9.997 6.706 -1.56 0 0 0 0 0 0 0 +9.99 6.747 -1.563 0 0 0 0 0 0 0 +10.004 6.802 -1.569 0 0 0 0 0 0 0 +10.021 6.837 -1.574 0 0 0 0 0 0 0 +10.025 6.886 -1.578 0 0 0 0 0 0 0 +10.021 6.93 -1.582 0 0 0 0 0 0 0 +10.035 6.987 -1.588 0 0 0 0 0 0 0 +10.044 7.04 -1.593 0 0 0 0 0 0 0 +10.043 7.086 -1.597 0 0 0 0 0 0 0 +10.045 7.135 -1.602 0 0 0 0 0 0 0 +10.029 7.147 -1.601 0 0 0 0 0 0 0 +10.004 7.177 -1.6 0 0 0 0 0 0 0 +9.99 7.215 -1.602 0 0 0 0 0 0 0 +9.972 7.249 -1.603 0 0 0 0 0 0 0 +9.957 7.287 -1.604 0 0 0 0 0 0 0 +9.958 7.336 -1.608 0 0 0 0 0 0 0 +9.953 7.356 -1.61 0 0 0 0 0 0 0 +9.931 7.388 -1.61 0 0 0 0 0 0 0 +9.922 7.43 -1.613 0 0 0 0 0 0 0 +9.908 7.468 -1.614 0 0 0 0 0 0 0 +9.897 7.509 -1.617 0 0 0 0 0 0 0 +9.889 7.552 -1.619 0 0 0 0 0 0 0 +9.866 7.583 -1.619 0 0 0 0 0 0 0 +9.869 7.611 -1.622 0 0 0 0 0 0 0 +9.853 7.648 -1.624 0 0 0 0 0 0 0 +9.837 7.685 -1.625 0 0 0 0 0 0 0 +9.831 7.731 -1.629 0 0 0 0 0 0 0 +9.812 7.765 -1.63 0 0 0 0 0 0 0 +9.783 7.792 -1.629 0 0 0 0 0 0 0 +9.758 7.823 -1.629 0 0 0 0 0 0 0 +9.758 7.848 -1.631 0 0 0 0 0 0 0 +9.703 7.854 -1.625 0 0 0 0 0 0 0 +6.755 5.493 -1.074 0 0 0 0 0 0 0 +6.717 5.497 -1.07 0 0 0 0 0 0 0 +6.701 5.519 -1.07 0 0 0 0 0 0 0 +6.699 5.553 -1.073 0 0 0 0 0 0 0 +6.681 5.574 -1.073 0 0 0 0 0 0 0 +9.593 8.095 -1.635 0 0 0 0 0 0 0 +9.566 8.124 -1.635 0 0 0 0 0 0 0 +9.553 8.164 -1.637 0 0 0 0 0 0 0 +9.557 8.22 -1.643 0 0 0 0 0 0 0 +9.538 8.257 -1.645 0 0 0 0 0 0 0 +9.504 8.279 -1.643 0 0 0 0 0 0 0 +9.483 8.314 -1.644 0 0 0 0 0 0 0 +9.476 8.334 -1.645 0 0 0 0 0 0 0 +9.45 8.364 -1.645 0 0 0 0 0 0 0 +9.422 8.392 -1.645 0 0 0 0 0 0 0 +9.396 8.421 -1.645 0 0 0 0 0 0 0 +9.362 8.444 -1.643 0 0 0 0 0 0 0 +9.352 8.488 -1.647 0 0 0 0 0 0 0 +9.325 8.518 -1.647 0 0 0 0 0 0 0 +9.306 8.527 -1.645 0 0 0 0 0 0 0 +9.292 8.568 -1.648 0 0 0 0 0 0 0 +9.276 8.608 -1.65 0 0 0 0 0 0 0 +9.242 8.63 -1.649 0 0 0 0 0 0 0 +9.221 8.665 -1.65 0 0 0 0 0 0 0 +9.205 8.705 -1.652 0 0 0 0 0 0 0 +9.173 8.729 -1.652 0 0 0 0 0 0 0 +9.165 8.749 -1.653 0 0 0 0 0 0 0 +9.153 8.793 -1.656 0 0 0 0 0 0 0 +9.104 8.801 -1.652 0 0 0 0 0 0 0 +9.082 8.835 -1.653 0 0 0 0 0 0 0 +9.062 8.871 -1.654 0 0 0 0 0 0 0 +9.048 8.913 -1.657 0 0 0 0 0 0 0 +9.032 8.954 -1.66 0 0 0 0 0 0 0 +9.009 8.958 -1.658 0 0 0 0 0 0 0 +8.986 8.992 -1.659 0 0 0 0 0 0 0 +8.974 9.037 -1.662 0 0 0 0 0 0 0 +8.949 9.068 -1.663 0 0 0 0 0 0 0 +8.905 9.081 -1.66 0 0 0 0 0 0 0 +8.879 9.112 -1.66 0 0 0 0 0 0 0 +8.828 9.117 -1.656 0 0 0 0 0 0 0 +8.862 9.18 -1.666 0 0 0 0 0 0 0 +8.84 9.215 -1.667 0 0 0 0 0 0 0 +8.817 9.249 -1.668 0 0 0 0 0 0 0 +8.789 9.278 -1.669 0 0 0 0 0 0 0 +8.77 9.317 -1.671 0 0 0 0 0 0 0 +8.734 9.337 -1.669 0 0 0 0 0 0 0 +8.709 9.369 -1.67 0 0 0 0 0 0 0 +8.692 9.38 -1.67 0 0 0 0 0 0 0 +8.659 9.404 -1.669 0 0 0 0 0 0 0 +8.615 9.415 -1.666 0 0 0 0 0 0 0 +8.586 9.442 -1.666 0 0 0 0 0 0 0 +8.58 9.496 -1.671 0 0 0 0 0 0 0 +8.566 9.54 -1.675 0 0 0 0 0 0 0 +8.559 9.594 -1.68 0 0 0 0 0 0 0 +8.544 9.607 -1.68 0 0 0 0 0 0 0 +8.518 9.638 -1.681 0 0 0 0 0 0 0 +8.482 9.659 -1.68 0 0 0 0 0 0 0 +8.461 9.696 -1.682 0 0 0 0 0 0 0 +8.424 9.715 -1.68 0 0 0 0 0 0 0 +8.414 9.766 -1.685 0 0 0 0 0 0 0 +8.39 9.8 -1.686 0 0 0 0 0 0 0 +8.381 9.82 -1.688 0 0 0 0 0 0 0 +8.356 9.854 -1.689 0 0 0 0 0 0 0 +8.316 9.87 -1.687 0 0 0 0 0 0 0 +8.285 9.896 -1.687 0 0 0 0 0 0 0 +8.276 9.948 -1.692 0 0 0 0 0 0 0 +8.246 9.975 -1.692 0 0 0 0 0 0 0 +8.206 9.99 -1.69 0 0 0 0 0 0 0 +8.199 10.014 -1.692 0 0 0 0 0 0 0 +8.171 10.044 -1.693 0 0 0 0 0 0 0 +8.144 10.076 -1.694 0 0 0 0 0 0 0 +8.114 10.103 -1.695 0 0 0 0 0 0 0 +8.089 10.138 -1.696 0 0 0 0 0 0 0 +8.054 10.159 -1.695 0 0 0 0 0 0 0 +8.016 10.176 -1.694 0 0 0 0 0 0 0 +7.992 10.212 -1.696 0 0 0 0 0 0 0 +7.97 10.217 -1.695 0 0 0 0 0 0 0 +7.948 10.254 -1.697 0 0 0 0 0 0 0 +7.907 10.268 -1.695 0 0 0 0 0 0 0 +7.876 10.295 -1.695 0 0 0 0 0 0 0 +7.846 10.323 -1.696 0 0 0 0 0 0 0 +7.818 10.353 -1.697 0 0 0 0 0 0 0 +7.783 10.375 -1.696 0 0 0 0 0 0 0 +7.774 10.397 -1.698 0 0 0 0 0 0 0 +7.741 10.421 -1.698 0 0 0 0 0 0 0 +7.719 10.46 -1.701 0 0 0 0 0 0 0 +7.686 10.484 -1.701 0 0 0 0 0 0 0 +7.649 10.501 -1.7 0 0 0 0 0 0 0 +7.609 10.516 -1.698 0 0 0 0 0 0 0 +7.608 10.55 -1.702 0 0 0 0 0 0 0 +7.574 10.572 -1.702 0 0 0 0 0 0 0 +7.548 10.606 -1.703 0 0 0 0 0 0 0 +7.512 10.626 -1.703 0 0 0 0 0 0 0 +7.486 10.661 -1.705 0 0 0 0 0 0 0 +7.451 10.681 -1.704 0 0 0 0 0 0 0 +7.418 10.706 -1.704 0 0 0 0 0 0 0 +7.409 10.729 -1.706 0 0 0 0 0 0 0 +7.372 10.748 -1.706 0 0 0 0 0 0 0 +7.339 10.773 -1.706 0 0 0 0 0 0 0 +7.305 10.796 -1.706 0 0 0 0 0 0 0 +7.267 10.812 -1.705 0 0 0 0 0 0 0 +7.241 10.846 -1.707 0 0 0 0 0 0 0 +7.202 10.862 -1.706 0 0 0 0 0 0 0 +7.174 10.893 -1.707 0 0 0 0 0 0 0 +7.147 10.889 -1.704 0 0 0 0 0 0 0 +7.108 10.905 -1.703 0 0 0 0 0 0 0 +7.076 10.931 -1.704 0 0 0 0 0 0 0 +7.037 10.946 -1.703 0 0 0 0 0 0 0 +7.003 10.968 -1.703 0 0 0 0 0 0 0 +6.973 10.997 -1.704 0 0 0 0 0 0 0 +6.941 11.024 -1.705 0 0 0 0 0 0 0 +6.913 11.018 -1.702 0 0 0 0 0 0 0 +6.889 11.056 -1.705 0 0 0 0 0 0 0 +6.858 11.083 -1.706 0 0 0 0 0 0 0 +6.82 11.1 -1.705 0 0 0 0 0 0 0 +6.796 11.14 -1.708 0 0 0 0 0 0 0 +6.761 11.161 -1.708 0 0 0 0 0 0 0 +6.729 11.187 -1.709 0 0 0 0 0 0 0 +6.702 11.222 -1.711 0 0 0 0 0 0 0 +6.692 11.246 -1.713 0 0 0 0 0 0 0 +6.664 11.279 -1.715 0 0 0 0 0 0 0 +6.63 11.303 -1.716 0 0 0 0 0 0 0 +6.598 11.329 -1.717 0 0 0 0 0 0 0 +6.583 11.386 -1.723 0 0 0 0 0 0 0 +6.585 11.472 -1.734 0 0 0 0 0 0 0 +6.605 11.549 -1.745 0 0 0 0 0 0 0 +6.614 11.651 -1.759 0 0 0 0 0 0 0 +6.623 11.753 -1.772 0 0 0 0 0 0 0 +6.63 11.853 -1.786 0 0 0 0 0 0 0 +6.634 11.948 -1.798 0 0 0 0 0 0 0 +6.641 12.05 -1.812 0 0 0 0 0 0 0 +6.646 12.149 -1.825 0 0 0 0 0 0 0 +6.649 12.247 -1.837 0 0 0 0 0 0 0 +6.684 12.357 -1.854 0 0 0 0 0 0 0 +6.682 12.447 -1.865 0 0 0 0 0 0 0 +6.648 12.477 -1.867 0 0 0 0 0 0 0 +6.614 12.508 -1.869 0 0 0 0 0 0 0 +6.583 12.545 -1.871 0 0 0 0 0 0 0 +6.545 12.569 -1.872 0 0 0 0 0 0 0 +6.5 12.579 -1.87 0 0 0 0 0 0 0 +6.485 12.598 -1.872 0 0 0 0 0 0 0 +6.447 12.622 -1.872 0 0 0 0 0 0 0 +6.412 12.651 -1.874 0 0 0 0 0 0 0 +6.37 12.667 -1.873 0 0 0 0 0 0 0 +6.33 12.686 -1.873 0 0 0 0 0 0 0 +6.289 12.704 -1.872 0 0 0 0 0 0 0 +6.244 12.713 -1.871 0 0 0 0 0 0 0 +6.221 12.717 -1.87 0 0 0 0 0 0 0 +6.185 12.744 -1.871 0 0 0 0 0 0 0 +6.142 12.758 -1.87 0 0 0 0 0 0 0 +6.104 12.781 -1.871 0 0 0 0 0 0 0 +6.058 12.789 -1.869 0 0 0 0 0 0 0 +6.006 12.781 -1.865 0 0 0 0 0 0 0 +5.962 12.793 -1.863 0 0 0 0 0 0 0 +5.939 12.797 -1.863 0 0 0 0 0 0 0 +5.893 12.803 -1.861 0 0 0 0 0 0 0 +5.85 12.814 -1.859 0 0 0 0 0 0 0 +5.809 12.83 -1.859 0 0 0 0 0 0 0 +5.764 12.838 -1.857 0 0 0 0 0 0 0 +5.726 12.861 -1.858 0 0 0 0 0 0 0 +5.677 12.861 -1.855 0 0 0 0 0 0 0 +5.657 12.87 -1.855 0 0 0 0 0 0 0 +5.613 12.88 -1.854 0 0 0 0 0 0 0 +5.576 12.905 -1.855 0 0 0 0 0 0 0 +5.534 12.919 -1.855 0 0 0 0 0 0 0 +5.488 12.923 -1.853 0 0 0 0 0 0 0 +5.443 12.93 -1.851 0 0 0 0 0 0 0 +5.393 12.925 -1.848 0 0 0 0 0 0 0 +5.352 12.942 -1.848 0 0 0 0 0 0 0 +5.326 12.935 -1.845 0 0 0 0 0 0 0 +5.279 12.937 -1.843 0 0 0 0 0 0 0 +5.237 12.95 -1.842 0 0 0 0 0 0 0 +5.196 12.965 -1.842 0 0 0 0 0 0 0 +5.153 12.976 -1.841 0 0 0 0 0 0 0 +5.105 12.973 -1.838 0 0 0 0 0 0 0 +5.06 12.978 -1.837 0 0 0 0 0 0 0 +5.029 12.958 -1.832 0 0 0 0 0 0 0 +4.994 12.989 -1.835 0 0 0 0 0 0 0 +4.945 12.984 -1.831 0 0 0 0 0 0 0 +4.902 12.992 -1.83 0 0 0 0 0 0 0 +4.862 13.011 -1.831 0 0 0 0 0 0 0 +4.811 12.999 -1.826 0 0 0 0 0 0 0 +4.764 12.997 -1.824 0 0 0 0 0 0 0 +4.748 13.016 -1.826 0 0 0 0 0 0 0 +4.695 12.997 -1.82 0 0 0 0 0 0 0 +4.654 13.013 -1.821 0 0 0 0 0 0 0 +4.621 13.049 -1.824 0 0 0 0 0 0 0 +4.576 13.054 -1.822 0 0 0 0 0 0 0 +4.538 13.075 -1.824 0 0 0 0 0 0 0 +4.501 13.101 -1.825 0 0 0 0 0 0 0 +4.479 13.104 -1.825 0 0 0 0 0 0 0 +4.442 13.131 -1.827 0 0 0 0 0 0 0 +4.406 13.16 -1.829 0 0 0 0 0 0 0 +4.355 13.146 -1.825 0 0 0 0 0 0 0 +4.316 13.167 -1.826 0 0 0 0 0 0 0 +4.277 13.188 -1.827 0 0 0 0 0 0 0 +4.23 13.183 -1.824 0 0 0 0 0 0 0 +4.204 13.174 -1.822 0 0 0 0 0 0 0 +4.167 13.2 -1.824 0 0 0 0 0 0 0 +4.121 13.198 -1.822 0 0 0 0 0 0 0 +4.077 13.204 -1.82 0 0 0 0 0 0 0 +4.034 13.211 -1.82 0 0 0 0 0 0 0 +3.992 13.221 -1.819 0 0 0 0 0 0 0 +3.944 13.213 -1.816 0 0 0 0 0 0 0 +3.9 13.216 -1.815 0 0 0 0 0 0 0 +3.867 13.182 -1.809 0 0 0 0 0 0 0 +3.822 13.181 -1.806 0 0 0 0 0 0 0 +3.779 13.187 -1.806 0 0 0 0 0 0 0 +3.734 13.186 -1.804 0 0 0 0 0 0 0 +3.688 13.18 -1.801 0 0 0 0 0 0 0 +3.649 13.201 -1.802 0 0 0 0 0 0 0 +3.599 13.18 -1.798 0 0 0 0 0 0 0 +3.575 13.174 -1.796 0 0 0 0 0 0 0 +3.535 13.193 -1.797 0 0 0 0 0 0 0 +3.488 13.183 -1.794 0 0 0 0 0 0 0 +3.448 13.2 -1.795 0 0 0 0 0 0 0 +3.408 13.212 -1.795 0 0 0 0 0 0 0 +3.101 12.175 -1.637 0 0 0 0 0 0 0 +1.755 6.935 -0.847 0 0 0 0 0 0 0 +1.749 6.957 -0.85 0 0 0 0 0 0 0 +1.722 6.943 -0.847 0 0 0 0 0 0 0 +1.96 8.026 -1.009 0 0 0 0 0 0 0 +2.268 9.434 -1.219 0 0 0 0 0 0 0 +2.426 10.389 -1.36 0 0 0 0 0 0 0 +2.522 11.045 -1.457 0 0 0 0 0 0 0 +2.506 11.136 -1.469 0 0 0 0 0 0 0 +2.699 12.184 -1.625 0 0 0 0 0 0 0 +2.652 12.149 -1.618 0 0 0 0 0 0 0 +2.627 12.22 -1.628 0 0 0 0 0 0 0 +2.585 12.212 -1.625 0 0 0 0 0 0 0 +2.546 12.217 -1.625 0 0 0 0 0 0 0 +2.509 12.232 -1.626 0 0 0 0 0 0 0 +2.489 12.232 -1.625 0 0 0 0 0 0 0 +2.451 12.244 -1.626 0 0 0 0 0 0 0 +2.412 12.246 -1.625 0 0 0 0 0 0 0 +2.374 12.257 -1.626 0 0 0 0 0 0 0 +2.336 12.268 -1.626 0 0 0 0 0 0 0 +2.296 12.266 -1.625 0 0 0 0 0 0 0 +2.259 12.281 -1.626 0 0 0 0 0 0 0 +2.24 12.284 -1.626 0 0 0 0 0 0 0 +2.201 12.291 -1.626 0 0 0 0 0 0 0 +2.164 12.308 -1.627 0 0 0 0 0 0 0 +2.123 12.301 -1.625 0 0 0 0 0 0 0 +0.577 3.356 -0.299 0 0 0 0 0 0 0 +2.085 12.314 -1.626 0 0 0 0 0 0 0 +0.577 3.422 -0.309 0 0 0 0 0 0 0 +0.583 3.5 -0.32 0 0 0 0 0 0 0 +0.573 3.505 -0.321 0 0 0 0 0 0 0 +0.551 3.433 -0.31 0 0 0 0 0 0 0 +0.539 3.429 -0.309 0 0 0 0 0 0 0 +0.528 3.43 -0.309 0 0 0 0 0 0 0 +0.517 3.43 -0.309 0 0 0 0 0 0 0 +0.507 3.435 -0.309 0 0 0 0 0 0 0 +0.502 3.44 -0.31 0 0 0 0 0 0 0 +0.491 3.44 -0.309 0 0 0 0 0 0 0 +0.491 3.522 -0.321 0 0 0 0 0 0 0 +0.468 3.431 -0.308 0 0 0 0 0 0 0 +1.581 12.392 -1.627 0 0 0 0 0 0 0 +1.544 12.411 -1.629 0 0 0 0 0 0 0 +1.506 12.426 -1.63 0 0 0 0 0 0 0 +1.467 12.426 -1.63 0 0 0 0 0 0 0 +1.446 12.419 -1.628 0 0 0 0 0 0 0 +1.408 12.431 -1.629 0 0 0 0 0 0 0 +1.371 12.451 -1.632 0 0 0 0 0 0 0 +1.332 12.459 -1.632 0 0 0 0 0 0 0 +1.292 12.46 -1.632 0 0 0 0 0 0 0 +1.254 12.472 -1.633 0 0 0 0 0 0 0 +1.215 12.477 -1.633 0 0 0 0 0 0 0 +1.195 12.477 -1.633 0 0 0 0 0 0 0 +1.156 12.485 -1.633 0 0 0 0 0 0 0 +1.117 12.485 -1.633 0 0 0 0 0 0 0 +1.077 12.484 -1.632 0 0 0 0 0 0 0 +1.04 12.507 -1.635 0 0 0 0 0 0 0 +1 12.512 -1.635 0 0 0 0 0 0 0 +0.962 12.533 -1.638 0 0 0 0 0 0 0 +0.945 12.566 -1.643 0 0 0 0 0 0 0 +0.905 12.561 -1.641 0 0 0 0 0 0 0 +0.867 12.58 -1.644 0 0 0 0 0 0 0 +0.827 12.577 -1.643 0 0 0 0 0 0 0 +0.789 12.615 -1.648 0 0 0 0 0 0 0 +0.788 13.281 -1.745 0 0 0 0 0 0 0 +0.747 13.305 -1.748 0 0 0 0 0 0 0 +0.727 13.326 -1.751 0 0 0 0 0 0 0 +0.687 13.352 -1.755 0 0 0 0 0 0 0 +0.646 13.384 -1.759 0 0 0 0 0 0 0 +0.604 13.392 -1.76 0 0 0 0 0 0 0 +0.564 13.431 -1.765 0 0 0 0 0 0 0 +0.522 13.45 -1.768 0 0 0 0 0 0 0 +0.481 13.48 -1.772 0 0 0 0 0 0 0 +0.461 13.51 -1.776 0 0 0 0 0 0 0 +0.418 13.504 -1.775 0 0 0 0 0 0 0 +0.378 13.618 -1.792 0 0 0 0 0 0 0 +0.336 13.623 -1.792 0 0 0 0 0 0 0 +0.252 13.757 -1.812 0 0 0 0 0 0 0 +0.207 13.617 -1.791 0 0 0 0 0 0 0 +0.164 13.602 -1.789 0 0 0 0 0 0 0 +0.143 13.569 -1.784 0 0 0 0 0 0 0 +0.1 13.563 -1.783 0 0 0 0 0 0 0 +0.057 13.553 -1.782 0 0 0 0 0 0 0 +0.015 13.56 -1.783 0 0 0 0 0 0 0 +-0.028 13.55 -1.781 0 0 0 0 0 0 0 +-0.07 13.544 -1.78 0 0 0 0 0 0 0 +-0.113 13.535 -1.779 0 0 0 0 0 0 0 +-0.134 13.555 -1.782 0 0 0 0 0 0 0 +-0.177 13.539 -1.78 0 0 0 0 0 0 0 +-0.219 13.552 -1.782 0 0 0 0 0 0 0 +-0.262 13.561 -1.783 0 0 0 0 0 0 0 +-0.305 13.558 -1.783 0 0 0 0 0 0 0 +-0.347 13.555 -1.783 0 0 0 0 0 0 0 +-0.39 13.564 -1.784 0 0 0 0 0 0 0 +-0.411 13.557 -1.783 0 0 0 0 0 0 0 +-0.454 13.56 -1.784 0 0 0 0 0 0 0 +-0.496 13.55 -1.783 0 0 0 0 0 0 0 +-0.54 13.575 -1.786 0 0 0 0 0 0 0 +-0.582 13.565 -1.785 0 0 0 0 0 0 0 +-0.626 13.577 -1.787 0 0 0 0 0 0 0 +-0.667 13.557 -1.785 0 0 0 0 0 0 0 +-0.71 13.563 -1.786 0 0 0 0 0 0 0 +-0.732 13.57 -1.787 0 0 0 0 0 0 0 +-0.774 13.561 -1.786 0 0 0 0 0 0 0 +-0.817 13.553 -1.785 0 0 0 0 0 0 0 +-0.86 13.564 -1.787 0 0 0 0 0 0 0 +-0.902 13.559 -1.787 0 0 0 0 0 0 0 +-0.945 13.552 -1.786 0 0 0 0 0 0 0 +-0.988 13.561 -1.788 0 0 0 0 0 0 0 +-1.009 13.556 -1.787 0 0 0 0 0 0 0 +-1.05 13.533 -1.785 0 0 0 0 0 0 0 +-1.092 13.521 -1.783 0 0 0 0 0 0 0 +-1.149 13.686 -1.808 0 0 0 0 0 0 0 +-1.232 13.645 -1.803 0 0 0 0 0 0 0 +-1.271 13.601 -1.797 0 0 0 0 0 0 0 +-1.288 13.554 -1.791 0 0 0 0 0 0 0 +-1.33 13.546 -1.79 0 0 0 0 0 0 0 +-1.372 13.536 -1.789 0 0 0 0 0 0 0 +-1.414 13.523 -1.788 0 0 0 0 0 0 0 +-1.458 13.533 -1.79 0 0 0 0 0 0 0 +-1.5 13.524 -1.789 0 0 0 0 0 0 0 +-1.541 13.511 -1.788 0 0 0 0 0 0 0 +-1.564 13.519 -1.79 0 0 0 0 0 0 0 +-1.607 13.52 -1.791 0 0 0 0 0 0 0 +-1.648 13.503 -1.789 0 0 0 0 0 0 0 +-1.692 13.511 -1.791 0 0 0 0 0 0 0 +-1.733 13.498 -1.79 0 0 0 0 0 0 0 +-1.776 13.497 -1.79 0 0 0 0 0 0 0 +-1.82 13.499 -1.791 0 0 0 0 0 0 0 +-1.841 13.498 -1.792 0 0 0 0 0 0 0 +-1.883 13.484 -1.791 0 0 0 0 0 0 0 +-1.929 13.504 -1.794 0 0 0 0 0 0 0 +-1.968 13.474 -1.791 0 0 0 0 0 0 0 +-2.01 13.468 -1.791 0 0 0 0 0 0 0 +-2.055 13.481 -1.794 0 0 0 0 0 0 0 +-2.099 13.484 -1.795 0 0 0 0 0 0 0 +-2.119 13.475 -1.794 0 0 0 0 0 0 0 +-2.164 13.484 -1.797 0 0 0 0 0 0 0 +-2.206 13.475 -1.796 0 0 0 0 0 0 0 +-2.249 13.468 -1.796 0 0 0 0 0 0 0 +-2.295 13.486 -1.8 0 0 0 0 0 0 0 +-2.334 13.46 -1.797 0 0 0 0 0 0 0 +-2.377 13.456 -1.798 0 0 0 0 0 0 0 +-2.425 13.48 -1.802 0 0 0 0 0 0 0 +-2.444 13.462 -1.8 0 0 0 0 0 0 0 +-2.487 13.462 -1.802 0 0 0 0 0 0 0 +-2.532 13.468 -1.804 0 0 0 0 0 0 0 +-2.574 13.454 -1.803 0 0 0 0 0 0 0 +-2.616 13.446 -1.803 0 0 0 0 0 0 0 +-2.66 13.447 -1.804 0 0 0 0 0 0 0 +-2.701 13.435 -1.804 0 0 0 0 0 0 0 +-2.727 13.454 -1.807 0 0 0 0 0 0 0 +-2.424 11.599 -1.533 0 0 0 0 0 0 0 +-2.438 11.489 -1.517 0 0 0 0 0 0 0 +-2.456 11.396 -1.505 0 0 0 0 0 0 0 +-2.467 11.28 -1.489 0 0 0 0 0 0 0 +-2.483 11.184 -1.475 0 0 0 0 0 0 0 +-2.481 11.093 -1.462 0 0 0 0 0 0 0 +-2.493 10.987 -1.447 0 0 0 0 0 0 0 +-2.508 10.896 -1.435 0 0 0 0 0 0 0 +-2.527 10.82 -1.425 0 0 0 0 0 0 0 +-2.536 10.709 -1.409 0 0 0 0 0 0 0 +-2.547 10.61 -1.396 0 0 0 0 0 0 0 +-2.564 10.535 -1.386 0 0 0 0 0 0 0 +-2.557 10.433 -1.371 0 0 0 0 0 0 0 +-2.571 10.352 -1.36 0 0 0 0 0 0 0 +-2.584 10.269 -1.349 0 0 0 0 0 0 0 +-2.594 10.173 -1.335 0 0 0 0 0 0 0 +-2.604 10.082 -1.323 0 0 0 0 0 0 0 +-2.618 10.007 -1.313 0 0 0 0 0 0 0 +-2.627 9.914 -1.3 0 0 0 0 0 0 0 +-2.643 9.849 -1.291 0 0 0 0 0 0 0 +-2.64 9.778 -1.281 0 0 0 0 0 0 0 +-2.65 9.695 -1.27 0 0 0 0 0 0 0 +-2.659 9.609 -1.258 0 0 0 0 0 0 0 +-2.673 9.545 -1.25 0 0 0 0 0 0 0 +-2.682 9.46 -1.238 0 0 0 0 0 0 0 +-2.694 9.391 -1.229 0 0 0 0 0 0 0 +-2.712 9.345 -1.223 0 0 0 0 0 0 0 +-2.711 9.287 -1.215 0 0 0 0 0 0 0 +-2.723 9.22 -1.206 0 0 0 0 0 0 0 +-2.742 9.179 -1.201 0 0 0 0 0 0 0 +-2.751 9.106 -1.191 0 0 0 0 0 0 0 +-2.773 9.075 -1.188 0 0 0 0 0 0 0 +-2.791 9.034 -1.183 0 0 0 0 0 0 0 +-2.802 8.968 -1.174 0 0 0 0 0 0 0 +-2.801 8.917 -1.167 0 0 0 0 0 0 0 +-2.819 8.878 -1.162 0 0 0 0 0 0 0 +-2.829 8.814 -1.154 0 0 0 0 0 0 0 +-2.845 8.77 -1.149 0 0 0 0 0 0 0 +-2.865 8.736 -1.145 0 0 0 0 0 0 0 +-2.872 8.667 -1.136 0 0 0 0 0 0 0 +-2.886 8.619 -1.129 0 0 0 0 0 0 0 +-2.888 8.58 -1.124 0 0 0 0 0 0 0 +-2.9 8.528 -1.118 0 0 0 0 0 0 0 +-2.911 8.472 -1.11 0 0 0 0 0 0 0 +-2.929 8.439 -1.107 0 0 0 0 0 0 0 +-2.937 8.377 -1.099 0 0 0 0 0 0 0 +-2.955 8.344 -1.095 0 0 0 0 0 0 0 +-2.967 8.295 -1.089 0 0 0 0 0 0 0 +-2.978 8.245 -1.082 0 0 0 0 0 0 0 +-2.981 8.214 -1.078 0 0 0 0 0 0 0 +-2.996 8.175 -1.074 0 0 0 0 0 0 0 +-3.005 8.121 -1.067 0 0 0 0 0 0 0 +-3.023 8.092 -1.064 0 0 0 0 0 0 0 +-3.042 8.065 -1.061 0 0 0 0 0 0 0 +-3.055 8.024 -1.056 0 0 0 0 0 0 0 +-3.071 7.991 -1.052 0 0 0 0 0 0 0 +-3.076 7.967 -1.049 0 0 0 0 0 0 0 +-3.091 7.93 -1.045 0 0 0 0 0 0 0 +-3.105 7.893 -1.041 0 0 0 0 0 0 0 +-3.126 7.874 -1.039 0 0 0 0 0 0 0 +-3.136 7.829 -1.034 0 0 0 0 0 0 0 +-3.151 7.795 -1.03 0 0 0 0 0 0 0 +-3.172 7.776 -1.029 0 0 0 0 0 0 0 +-3.174 7.746 -1.025 0 0 0 0 0 0 0 +-3.191 7.719 -1.022 0 0 0 0 0 0 0 +-3.204 7.684 -1.018 0 0 0 0 0 0 0 +-3.212 7.635 -1.012 0 0 0 0 0 0 0 +-3.227 7.603 -1.008 0 0 0 0 0 0 0 +-3.248 7.586 -1.007 0 0 0 0 0 0 0 +-3.257 7.543 -1.002 0 0 0 0 0 0 0 +-3.264 7.525 -1 0 0 0 0 0 0 0 +-3.278 7.495 -0.997 0 0 0 0 0 0 0 +-3.29 7.458 -0.992 0 0 0 0 0 0 0 +-3.308 7.436 -0.991 0 0 0 0 0 0 0 +-3.322 7.404 -0.987 0 0 0 0 0 0 0 +-3.335 7.372 -0.984 0 0 0 0 0 0 0 +-3.359 7.363 -0.984 0 0 0 0 0 0 0 +-3.372 7.331 -0.981 0 0 0 0 0 0 0 +-3.366 7.288 -0.975 0 0 0 0 0 0 0 +-3.383 7.265 -0.973 0 0 0 0 0 0 0 +-3.4 7.242 -0.97 0 0 0 0 0 0 0 +-3.414 7.212 -0.967 0 0 0 0 0 0 0 +-3.432 7.192 -0.966 0 0 0 0 0 0 0 +-3.459 7.19 -0.967 0 0 0 0 0 0 0 +-3.474 7.163 -0.965 0 0 0 0 0 0 0 +-3.487 7.161 -0.965 0 0 0 0 0 0 0 +-3.525 7.182 -0.97 0 0 0 0 0 0 0 +-3.591 7.258 -0.985 0 0 0 0 0 0 0 +-3.605 7.229 -0.982 0 0 0 0 0 0 0 +-3.627 7.217 -0.982 0 0 0 0 0 0 0 +-3.665 7.236 -0.987 0 0 0 0 0 0 0 +-3.686 7.221 -0.986 0 0 0 0 0 0 0 +-3.708 7.234 -0.989 0 0 0 0 0 0 0 +-3.739 7.24 -0.992 0 0 0 0 0 0 0 +-3.769 7.243 -0.994 0 0 0 0 0 0 0 +-3.788 7.224 -0.993 0 0 0 0 0 0 0 +-3.814 7.217 -0.994 0 0 0 0 0 0 0 +-3.85 7.229 -0.998 0 0 0 0 0 0 0 +-3.865 7.203 -0.996 0 0 0 0 0 0 0 +-3.869 7.183 -0.994 0 0 0 0 0 0 0 +-3.892 7.173 -0.994 0 0 0 0 0 0 0 +-3.906 7.145 -0.991 0 0 0 0 0 0 0 +-3.928 7.131 -0.991 0 0 0 0 0 0 0 +-3.959 7.134 -0.994 0 0 0 0 0 0 0 +-3.982 7.123 -0.994 0 0 0 0 0 0 0 +-4.014 7.128 -0.997 0 0 0 0 0 0 0 +-4.042 7.126 -0.999 0 0 0 0 0 0 0 +-4.058 7.128 -1 0 0 0 0 0 0 0 +-4.086 7.124 -1.001 0 0 0 0 0 0 0 +-4.118 7.128 -1.004 0 0 0 0 0 0 0 +-4.149 7.13 -1.007 0 0 0 0 0 0 0 +-4.17 7.114 -1.006 0 0 0 0 0 0 0 +-4.2 7.114 -1.009 0 0 0 0 0 0 0 +-4.222 7.099 -1.008 0 0 0 0 0 0 0 +-4.238 7.101 -1.01 0 0 0 0 0 0 0 +-4.274 7.112 -1.014 0 0 0 0 0 0 0 +-4.305 7.112 -1.016 0 0 0 0 0 0 0 +-4.337 7.113 -1.019 0 0 0 0 0 0 0 +-4.37 7.118 -1.022 0 0 0 0 0 0 0 +-4.403 7.121 -1.025 0 0 0 0 0 0 0 +-4.434 7.121 -1.027 0 0 0 0 0 0 0 +-4.466 7.122 -1.03 0 0 0 0 0 0 0 +-4.495 7.143 -1.035 0 0 0 0 0 0 0 +-4.524 7.139 -1.036 0 0 0 0 0 0 0 +-4.561 7.148 -1.04 0 0 0 0 0 0 0 +-4.594 7.15 -1.043 0 0 0 0 0 0 0 +-4.63 7.156 -1.047 0 0 0 0 0 0 0 +-4.672 7.171 -1.052 0 0 0 0 0 0 0 +-4.707 7.176 -1.055 0 0 0 0 0 0 0 +-4.737 7.197 -1.06 0 0 0 0 0 0 0 +-4.775 7.205 -1.064 0 0 0 0 0 0 0 +-4.812 7.211 -1.068 0 0 0 0 0 0 0 +-4.851 7.221 -1.073 0 0 0 0 0 0 0 +-4.893 7.233 -1.077 0 0 0 0 0 0 0 +-4.935 7.246 -1.082 0 0 0 0 0 0 0 +-4.978 7.259 -1.088 0 0 0 0 0 0 0 +-5.014 7.287 -1.094 0 0 0 0 0 0 0 +-5.059 7.304 -1.1 0 0 0 0 0 0 0 +-7.697 11.014 -1.765 0 0 0 0 0 0 0 +-7.826 11.124 -1.789 0 0 0 0 0 0 0 +-8.214 11.596 -1.878 0 0 0 0 0 0 0 +-8.289 11.623 -1.887 0 0 0 0 0 0 0 +-8.502 11.843 -1.931 0 0 0 0 0 0 0 +-8.333 11.57 -1.885 0 0 0 0 0 0 0 +-7.33 10.116 -1.627 0 0 0 0 0 0 0 +-7.339 10.061 -1.621 0 0 0 0 0 0 0 +-7.35 10.011 -1.616 0 0 0 0 0 0 0 +-7.363 9.962 -1.611 0 0 0 0 0 0 0 +-7.371 9.907 -1.606 0 0 0 0 0 0 0 +-7.385 9.862 -1.602 0 0 0 0 0 0 0 +-7.391 9.806 -1.595 0 0 0 0 0 0 0 +-7.381 9.761 -1.589 0 0 0 0 0 0 0 +-7.407 9.732 -1.588 0 0 0 0 0 0 0 +-7.407 9.669 -1.581 0 0 0 0 0 0 0 +-7.425 9.63 -1.578 0 0 0 0 0 0 0 +-7.433 9.577 -1.573 0 0 0 0 0 0 0 +-7.432 9.515 -1.565 0 0 0 0 0 0 0 +-7.434 9.456 -1.559 0 0 0 0 0 0 0 +-7.438 9.43 -1.556 0 0 0 0 0 0 0 +-7.454 9.389 -1.553 0 0 0 0 0 0 0 +-7.461 9.338 -1.548 0 0 0 0 0 0 0 +-7.47 9.29 -1.543 0 0 0 0 0 0 0 +-7.471 9.231 -1.537 0 0 0 0 0 0 0 +-7.481 9.185 -1.532 0 0 0 0 0 0 0 +-7.486 9.132 -1.527 0 0 0 0 0 0 0 +-7.477 9.093 -1.521 0 0 0 0 0 0 0 +-7.497 9.059 -1.519 0 0 0 0 0 0 0 +-7.506 9.012 -1.515 0 0 0 0 0 0 0 +-7.507 8.955 -1.509 0 0 0 0 0 0 0 +-7.51 8.903 -1.503 0 0 0 0 0 0 0 +-7.524 8.863 -1.5 0 0 0 0 0 0 0 +-7.503 8.782 -1.489 0 0 0 0 0 0 0 +-7.51 8.763 -1.488 0 0 0 0 0 0 0 +-7.53 8.73 -1.486 0 0 0 0 0 0 0 +-7.524 8.668 -1.478 0 0 0 0 0 0 0 +-7.538 8.629 -1.476 0 0 0 0 0 0 0 +-7.552 8.591 -1.473 0 0 0 0 0 0 0 +-7.556 8.542 -1.468 0 0 0 0 0 0 0 +-7.569 8.502 -1.465 0 0 0 0 0 0 0 +-7.553 8.458 -1.458 0 0 0 0 0 0 0 +-7.556 8.407 -1.453 0 0 0 0 0 0 0 +-7.579 8.381 -1.452 0 0 0 0 0 0 0 +-7.574 8.322 -1.445 0 0 0 0 0 0 0 +-7.585 8.282 -1.442 0 0 0 0 0 0 0 +-7.599 8.245 -1.44 0 0 0 0 0 0 0 +-7.604 8.199 -1.435 0 0 0 0 0 0 0 +-7.606 8.149 -1.43 0 0 0 0 0 0 0 +-7.585 8.101 -1.423 0 0 0 0 0 0 0 +-7.607 8.075 -1.422 0 0 0 0 0 0 0 +-10.154 10.697 -1.956 0 0 0 0 0 0 0 +-10.209 10.688 -1.961 0 0 0 0 0 0 0 +-10.252 10.666 -1.963 0 0 0 0 0 0 0 +-10.291 10.64 -1.964 0 0 0 0 0 0 0 +-10.338 10.621 -1.967 0 0 0 0 0 0 0 +-10.362 10.612 -1.968 0 0 0 0 0 0 0 +-10.397 10.581 -1.969 0 0 0 0 0 0 0 +-10.44 10.558 -1.971 0 0 0 0 0 0 0 +-10.47 10.522 -1.97 0 0 0 0 0 0 0 +-10.503 10.489 -1.97 0 0 0 0 0 0 0 +-10.544 10.465 -1.972 0 0 0 0 0 0 0 +-10.572 10.426 -1.971 0 0 0 0 0 0 0 +-10.592 10.414 -1.972 0 0 0 0 0 0 0 +-10.642 10.397 -1.975 0 0 0 0 0 0 0 +-10.682 10.37 -1.976 0 0 0 0 0 0 0 +-10.727 10.349 -1.979 0 0 0 0 0 0 0 +-10.775 10.33 -1.982 0 0 0 0 0 0 0 +-10.823 10.311 -1.985 0 0 0 0 0 0 0 +-10.859 10.28 -1.986 0 0 0 0 0 0 0 +-10.889 10.276 -1.989 0 0 0 0 0 0 0 +-10.926 10.246 -1.99 0 0 0 0 0 0 0 +-10.961 10.215 -1.99 0 0 0 0 0 0 0 +-10.996 10.183 -1.991 0 0 0 0 0 0 0 +-11.036 10.156 -1.993 0 0 0 0 0 0 0 +-11.078 10.131 -1.995 0 0 0 0 0 0 0 +-11.118 10.103 -1.996 0 0 0 0 0 0 0 +-11.147 10.097 -1.999 0 0 0 0 0 0 0 +-11.177 10.061 -1.998 0 0 0 0 0 0 0 +-11.226 10.041 -2.002 0 0 0 0 0 0 0 +-11.262 10.01 -2.003 0 0 0 0 0 0 0 +-11.295 9.976 -2.003 0 0 0 0 0 0 0 +-11.357 9.968 -2.009 0 0 0 0 0 0 0 +-11.378 9.923 -2.007 0 0 0 0 0 0 0 +-11.418 9.895 -2.009 0 0 0 0 0 0 0 +-11.438 9.881 -2.01 0 0 0 0 0 0 0 +-11.484 9.858 -2.013 0 0 0 0 0 0 0 +-11.518 9.824 -2.013 0 0 0 0 0 0 0 +-11.548 9.786 -2.013 0 0 0 0 0 0 0 +-11.577 9.749 -2.013 0 0 0 0 0 0 0 +-11.604 9.71 -2.012 0 0 0 0 0 0 0 +-11.63 9.67 -2.011 0 0 0 0 0 0 0 +-11.642 9.649 -2.011 0 0 0 0 0 0 0 +-11.671 9.611 -2.01 0 0 0 0 0 0 0 +-11.687 9.563 -2.008 0 0 0 0 0 0 0 +-11.7 9.513 -2.005 0 0 0 0 0 0 0 +-11.73 9.476 -2.005 0 0 0 0 0 0 0 +-11.766 9.444 -2.006 0 0 0 0 0 0 0 +-11.793 9.404 -2.005 0 0 0 0 0 0 0 +-11.806 9.385 -2.005 0 0 0 0 0 0 0 +-11.845 9.355 -2.007 0 0 0 0 0 0 0 +-11.88 9.322 -2.008 0 0 0 0 0 0 0 +-11.906 9.283 -2.007 0 0 0 0 0 0 0 +-11.932 9.243 -2.007 0 0 0 0 0 0 0 +-11.964 9.208 -2.007 0 0 0 0 0 0 0 +-11.981 9.16 -2.005 0 0 0 0 0 0 0 +-11.998 9.144 -2.005 0 0 0 0 0 0 0 +-12.027 9.106 -2.005 0 0 0 0 0 0 0 +-12.048 9.062 -2.004 0 0 0 0 0 0 0 +-12.071 9.021 -2.003 0 0 0 0 0 0 0 +-12.101 8.984 -2.003 0 0 0 0 0 0 0 +-12.136 8.951 -2.005 0 0 0 0 0 0 0 +-12.17 8.917 -2.006 0 0 0 0 0 0 0 +-12.201 8.881 -2.006 0 0 0 0 0 0 0 +-12.214 8.861 -2.006 0 0 0 0 0 0 0 +-12.228 8.813 -2.004 0 0 0 0 0 0 0 +-12.253 8.773 -2.003 0 0 0 0 0 0 0 +-12.272 8.728 -2.002 0 0 0 0 0 0 0 +-12.296 8.687 -2.001 0 0 0 0 0 0 0 +-12.306 8.636 -1.998 0 0 0 0 0 0 0 +-12.328 8.594 -1.997 0 0 0 0 0 0 0 +-12.333 8.569 -1.996 0 0 0 0 0 0 0 +-12.363 8.533 -1.996 0 0 0 0 0 0 0 +-12.382 8.488 -1.995 0 0 0 0 0 0 0 +-12.41 8.45 -1.995 0 0 0 0 0 0 0 +-12.43 8.407 -1.994 0 0 0 0 0 0 0 +-12.453 8.366 -1.993 0 0 0 0 0 0 0 +-12.475 8.323 -1.992 0 0 0 0 0 0 0 +-12.468 8.29 -1.989 0 0 0 0 0 0 0 +-6.745 4.469 -0.984 0 0 0 0 0 0 0 +-6.753 4.444 -0.983 0 0 0 0 0 0 0 +-6.748 4.411 -0.979 0 0 0 0 0 0 0 +-6.761 4.388 -0.979 0 0 0 0 0 0 0 +-6.778 4.369 -0.98 0 0 0 0 0 0 0 +-6.8 4.353 -0.981 0 0 0 0 0 0 0 +-6.823 4.353 -0.984 0 0 0 0 0 0 0 +-12.686 8.011 -1.994 0 0 0 0 0 0 0 +-12.725 7.98 -1.996 0 0 0 0 0 0 0 +-12.75 7.94 -1.996 0 0 0 0 0 0 0 +-12.787 7.907 -1.998 0 0 0 0 0 0 0 +-12.811 7.867 -1.998 0 0 0 0 0 0 0 +-12.841 7.83 -1.999 0 0 0 0 0 0 0 +-12.875 7.823 -2.002 0 0 0 0 0 0 0 +-12.902 7.783 -2.003 0 0 0 0 0 0 0 +-12.936 7.749 -2.005 0 0 0 0 0 0 0 +-12.974 7.716 -2.007 0 0 0 0 0 0 0 +-13.019 7.687 -2.01 0 0 0 0 0 0 0 +-13.053 7.652 -2.012 0 0 0 0 0 0 0 +-13.086 7.616 -2.013 0 0 0 0 0 0 0 +-13.108 7.602 -2.015 0 0 0 0 0 0 0 +-13.132 7.56 -2.015 0 0 0 0 0 0 0 +-13.161 7.522 -2.016 0 0 0 0 0 0 0 +-13.179 7.478 -2.015 0 0 0 0 0 0 0 +-13.213 7.442 -2.017 0 0 0 0 0 0 0 +-13.233 7.399 -2.016 0 0 0 0 0 0 0 +-13.256 7.357 -2.016 0 0 0 0 0 0 0 +-13.263 7.307 -2.014 0 0 0 0 0 0 0 +-12.559 6.895 -1.895 0 0 0 0 0 0 0 +-12.577 6.854 -1.894 0 0 0 0 0 0 0 +-12.618 6.824 -1.897 0 0 0 0 0 0 0 +-12.659 6.795 -1.9 0 0 0 0 0 0 0 +-13.384 7.129 -2.017 0 0 0 0 0 0 0 +-13.4 7.083 -2.016 0 0 0 0 0 0 0 +-13.413 7.036 -2.014 0 0 0 0 0 0 0 +-13.421 7.013 -2.014 0 0 0 0 0 0 0 +-13.432 6.966 -2.012 0 0 0 0 0 0 0 +-7.151 3.666 -0.976 0 0 0 0 0 0 0 +-7.126 3.624 -0.97 0 0 0 0 0 0 0 +-7.212 3.639 -0.982 0 0 0 0 0 0 0 +-7.301 3.655 -0.994 0 0 0 0 0 0 0 +-7.365 3.673 -1.004 0 0 0 0 0 0 0 +-7.705 3.811 -1.058 0 0 0 0 0 0 0 +-7.57 3.715 -1.034 0 0 0 0 0 0 0 +-13.633 6.614 -2.015 0 0 0 0 0 0 0 +-13.627 6.558 -2.011 0 0 0 0 0 0 0 +-13.688 6.535 -2.018 0 0 0 0 0 0 0 +-13.716 6.495 -2.019 0 0 0 0 0 0 0 +-13.726 6.474 -2.019 0 0 0 0 0 0 0 +-13.73 6.423 -2.016 0 0 0 0 0 0 0 +-13.754 6.382 -2.017 0 0 0 0 0 0 0 +-13.76 6.332 -2.014 0 0 0 0 0 0 0 +-13.753 6.276 -2.01 0 0 0 0 0 0 0 +-13.747 6.222 -2.006 0 0 0 0 0 0 0 +-13.775 6.183 -2.007 0 0 0 0 0 0 0 +-13.771 6.154 -2.005 0 0 0 0 0 0 0 +-13.768 6.102 -2.002 0 0 0 0 0 0 0 +-13.773 6.052 -1.999 0 0 0 0 0 0 0 +-13.774 6.001 -1.996 0 0 0 0 0 0 0 +-13.78 5.952 -1.994 0 0 0 0 0 0 0 +-13.767 5.896 -1.989 0 0 0 0 0 0 0 +-13.771 5.846 -1.987 0 0 0 0 0 0 0 +-13.78 5.799 -1.986 0 0 0 0 0 0 0 +-13.775 5.771 -1.983 0 0 0 0 0 0 0 +-13.784 5.724 -1.982 0 0 0 0 0 0 0 +-13.8 5.68 -1.982 0 0 0 0 0 0 0 +-13.838 5.645 -1.985 0 0 0 0 0 0 0 +-13.879 5.611 -1.989 0 0 0 0 0 0 0 +-13.928 5.58 -1.994 0 0 0 0 0 0 0 +-13.944 5.535 -1.993 0 0 0 0 0 0 0 +-13.962 5.517 -1.995 0 0 0 0 0 0 0 +-14.058 5.504 -2.007 0 0 0 0 0 0 0 +-14.085 5.463 -2.009 0 0 0 0 0 0 0 +-14.092 5.416 -2.007 0 0 0 0 0 0 0 +-14.093 5.365 -2.005 0 0 0 0 0 0 0 +-14.106 5.319 -2.004 0 0 0 0 0 0 0 +-14.111 5.271 -2.002 0 0 0 0 0 0 0 +-14.12 5.249 -2.002 0 0 0 0 0 0 0 +-14.119 5.198 -2 0 0 0 0 0 0 0 +-14.134 5.153 -1.999 0 0 0 0 0 0 0 +-14.142 5.106 -1.998 0 0 0 0 0 0 0 +-14.153 5.06 -1.997 0 0 0 0 0 0 0 +-14.148 5.008 -1.994 0 0 0 0 0 0 0 +-14.166 4.964 -1.994 0 0 0 0 0 0 0 +-14.162 4.938 -1.993 0 0 0 0 0 0 0 +-14.168 4.89 -1.991 0 0 0 0 0 0 0 +-14.2 4.851 -1.994 0 0 0 0 0 0 0 +-14.186 4.797 -1.989 0 0 0 0 0 0 0 +-14.189 4.748 -1.987 0 0 0 0 0 0 0 +-14.212 4.706 -1.989 0 0 0 0 0 0 0 +-14.221 4.66 -1.988 0 0 0 0 0 0 0 +-14.226 4.637 -1.987 0 0 0 0 0 0 0 +-14.237 4.591 -1.987 0 0 0 0 0 0 0 +-14.236 4.541 -1.985 0 0 0 0 0 0 0 +-14.247 4.495 -1.984 0 0 0 0 0 0 0 +-14.234 4.442 -1.98 0 0 0 0 0 0 0 +-14.257 4.4 -1.981 0 0 0 0 0 0 0 +-14.271 4.356 -1.981 0 0 0 0 0 0 0 +-14.263 4.329 -1.979 0 0 0 0 0 0 0 +-14.269 4.282 -1.978 0 0 0 0 0 0 0 +-14.267 4.232 -1.976 0 0 0 0 0 0 0 +-14.269 4.184 -1.974 0 0 0 0 0 0 0 +-14.259 4.133 -1.97 0 0 0 0 0 0 0 +-14.274 4.088 -1.971 0 0 0 0 0 0 0 +-14.287 4.043 -1.971 0 0 0 0 0 0 0 +-14.263 4.013 -1.966 0 0 0 0 0 0 0 +-14.271 3.967 -1.965 0 0 0 0 0 0 0 +-10.007 2.756 -1.318 0 0 0 0 0 0 0 +-9.566 2.603 -1.25 0 0 0 0 0 0 0 +-9.138 2.457 -1.184 0 0 0 0 0 0 0 +-8.83 2.346 -1.136 0 0 0 0 0 0 0 +-8.592 2.254 -1.099 0 0 0 0 0 0 0 +-8.381 2.185 -1.067 0 0 0 0 0 0 0 +-16.113 3.828 -2.221 0 0 0 0 0 0 0 +-14.912 0.459 -1.981 0 0 0 0 0 0 0 +-14.898 0.412 -1.979 0 0 0 0 0 0 0 +-14.895 0.365 -1.978 0 0 0 0 0 0 0 +-14.902 0.318 -1.979 0 0 0 0 0 0 0 +-14.926 0.295 -1.983 0 0 0 0 0 0 0 +-14.923 0.248 -1.982 0 0 0 0 0 0 0 +-14.938 0.201 -1.984 0 0 0 0 0 0 0 +-14.942 0.154 -1.985 0 0 0 0 0 0 0 +-14.968 0.108 -1.988 0 0 0 0 0 0 0 +-14.98 0.061 -1.99 0 0 0 0 0 0 0 +-14.978 0.014 -1.99 0 0 0 0 0 0 0 +-14.971 -0.01 -1.989 0 0 0 0 0 0 0 +-15 -0.057 -1.993 0 0 0 0 0 0 0 +-14.988 -0.104 -1.991 0 0 0 0 0 0 0 +-16.432 -0.168 -2.202 0 0 0 0 0 0 0 +-16.445 -0.22 -2.204 0 0 0 0 0 0 0 +-16.413 -0.271 -2.2 0 0 0 0 0 0 0 +-16.361 -0.322 -2.192 0 0 0 0 0 0 0 +-16.326 -0.372 -2.187 0 0 0 0 0 0 0 +-16.311 -0.423 -2.185 0 0 0 0 0 0 0 +-16.3 -0.449 -2.184 0 0 0 0 0 0 0 +-16.324 -0.501 -2.187 0 0 0 0 0 0 0 +-16.305 -0.551 -2.185 0 0 0 0 0 0 0 +-16.283 -0.602 -2.182 0 0 0 0 0 0 0 +-16.272 -0.652 -2.181 0 0 0 0 0 0 0 +-16.258 -0.703 -2.179 0 0 0 0 0 0 0 +-16.234 -0.753 -2.176 0 0 0 0 0 0 0 +-16.209 -0.777 -2.172 0 0 0 0 0 0 0 +-16.192 -0.828 -2.17 0 0 0 0 0 0 0 +-16.174 -0.878 -2.168 0 0 0 0 0 0 0 +-16.145 -0.927 -2.164 0 0 0 0 0 0 0 +-16.124 -0.976 -2.161 0 0 0 0 0 0 0 +-16.106 -1.026 -2.159 0 0 0 0 0 0 0 +-16.09 -1.076 -2.157 0 0 0 0 0 0 0 +-16.071 -1.1 -2.155 0 0 0 0 0 0 0 +-16.056 -1.149 -2.153 0 0 0 0 0 0 0 +-16.034 -1.199 -2.15 0 0 0 0 0 0 0 +-15.997 -1.246 -2.146 0 0 0 0 0 0 0 +-15.995 -1.297 -2.146 0 0 0 0 0 0 0 +-15.985 -1.346 -2.145 0 0 0 0 0 0 0 +-15.967 -1.395 -2.143 0 0 0 0 0 0 0 +-15.97 -1.421 -2.144 0 0 0 0 0 0 0 +-15.952 -1.47 -2.142 0 0 0 0 0 0 0 +-15.937 -1.519 -2.14 0 0 0 0 0 0 0 +-15.909 -1.567 -2.137 0 0 0 0 0 0 0 +-15.902 -1.616 -2.137 0 0 0 0 0 0 0 +-15.881 -1.665 -2.134 0 0 0 0 0 0 0 +-15.891 -1.716 -2.137 0 0 0 0 0 0 0 +-15.881 -1.74 -2.135 0 0 0 0 0 0 0 +-15.863 -1.789 -2.134 0 0 0 0 0 0 0 +-15.85 -1.838 -2.133 0 0 0 0 0 0 0 +-15.842 -1.887 -2.132 0 0 0 0 0 0 0 +-15.832 -1.937 -2.132 0 0 0 0 0 0 0 +-15.824 -1.986 -2.131 0 0 0 0 0 0 0 +-15.818 -2.036 -2.131 0 0 0 0 0 0 0 +-15.809 -2.085 -2.131 0 0 0 0 0 0 0 +-15.796 -2.109 -2.13 0 0 0 0 0 0 0 +-15.789 -2.158 -2.13 0 0 0 0 0 0 0 +-15.765 -2.206 -2.127 0 0 0 0 0 0 0 +-15.756 -2.255 -2.127 0 0 0 0 0 0 0 +-15.759 -2.306 -2.128 0 0 0 0 0 0 0 +-15.747 -2.355 -2.128 0 0 0 0 0 0 0 +-15.752 -2.406 -2.129 0 0 0 0 0 0 0 +-15.722 -2.427 -2.126 0 0 0 0 0 0 0 +-15.713 -2.476 -2.125 0 0 0 0 0 0 0 +-15.713 -2.526 -2.127 0 0 0 0 0 0 0 +-15.693 -2.574 -2.125 0 0 0 0 0 0 0 +-15.675 -2.621 -2.123 0 0 0 0 0 0 0 +-15.673 -2.672 -2.124 0 0 0 0 0 0 0 +-15.641 -2.717 -2.121 0 0 0 0 0 0 0 +-15.635 -2.741 -2.12 0 0 0 0 0 0 0 +-15.608 -2.787 -2.118 0 0 0 0 0 0 0 +-15.6 -2.836 -2.118 0 0 0 0 0 0 0 +-15.583 -2.883 -2.117 0 0 0 0 0 0 0 +-15.57 -2.932 -2.116 0 0 0 0 0 0 0 +-15.543 -2.977 -2.113 0 0 0 0 0 0 0 +-15.537 -3.027 -2.114 0 0 0 0 0 0 0 +-15.537 -3.052 -2.115 0 0 0 0 0 0 0 +-15.509 -3.097 -2.112 0 0 0 0 0 0 0 +-15.498 -3.146 -2.112 0 0 0 0 0 0 0 +-15.472 -3.191 -2.109 0 0 0 0 0 0 0 +-15.449 -3.237 -2.107 0 0 0 0 0 0 0 +-15.429 -3.283 -2.106 0 0 0 0 0 0 0 +-15.412 -3.33 -2.105 0 0 0 0 0 0 0 +-15.392 -3.351 -2.103 0 0 0 0 0 0 0 +-15.385 -3.4 -2.103 0 0 0 0 0 0 0 +-15.355 -3.444 -2.1 0 0 0 0 0 0 0 +-15.329 -3.489 -2.098 0 0 0 0 0 0 0 +-15.312 -3.536 -2.097 0 0 0 0 0 0 0 +-15.262 -3.575 -2.092 0 0 0 0 0 0 0 +-15.235 -3.619 -2.089 0 0 0 0 0 0 0 +-15.218 -3.64 -2.087 0 0 0 0 0 0 0 +-15.201 -3.687 -2.087 0 0 0 0 0 0 0 +-15.162 -3.728 -2.083 0 0 0 0 0 0 0 +-15.137 -3.772 -2.081 0 0 0 0 0 0 0 +-15.119 -3.818 -2.08 0 0 0 0 0 0 0 +-15.103 -3.864 -2.079 0 0 0 0 0 0 0 +-15.078 -3.908 -2.077 0 0 0 0 0 0 0 +-15.072 -3.932 -2.077 0 0 0 0 0 0 0 +-15.054 -3.978 -2.076 0 0 0 0 0 0 0 +-15.028 -4.021 -2.074 0 0 0 0 0 0 0 +-15.015 -4.069 -2.074 0 0 0 0 0 0 0 +-14.992 -4.113 -2.073 0 0 0 0 0 0 0 +-14.987 -4.162 -2.074 0 0 0 0 0 0 0 +-14.959 -4.205 -2.072 0 0 0 0 0 0 0 +-14.944 -4.252 -2.071 0 0 0 0 0 0 0 +-14.941 -4.276 -2.072 0 0 0 0 0 0 0 +-14.933 -4.325 -2.073 0 0 0 0 0 0 0 +-14.912 -4.369 -2.072 0 0 0 0 0 0 0 +-14.907 -4.419 -2.073 0 0 0 0 0 0 0 +-14.88 -4.462 -2.071 0 0 0 0 0 0 0 +-14.872 -4.51 -2.072 0 0 0 0 0 0 0 +-14.852 -4.555 -2.071 0 0 0 0 0 0 0 +-14.845 -4.579 -2.071 0 0 0 0 0 0 0 +-14.821 -4.622 -2.07 0 0 0 0 0 0 0 +-14.804 -4.668 -2.069 0 0 0 0 0 0 0 +-14.786 -4.713 -2.069 0 0 0 0 0 0 0 +-14.748 -4.753 -2.065 0 0 0 0 0 0 0 +-14.733 -4.799 -2.065 0 0 0 0 0 0 0 +-14.716 -4.845 -2.065 0 0 0 0 0 0 0 +-14.712 -4.869 -2.066 0 0 0 0 0 0 0 +-14.684 -4.911 -2.063 0 0 0 0 0 0 0 +-14.665 -4.955 -2.063 0 0 0 0 0 0 0 +-14.636 -4.997 -2.061 0 0 0 0 0 0 0 +-14.62 -5.043 -2.061 0 0 0 0 0 0 0 +-14.598 -5.087 -2.06 0 0 0 0 0 0 0 +-14.581 -5.132 -2.06 0 0 0 0 0 0 0 +-14.574 -5.156 -2.06 0 0 0 0 0 0 0 +-14.543 -5.196 -2.058 0 0 0 0 0 0 0 +-14.54 -5.246 -2.06 0 0 0 0 0 0 0 +-14.514 -5.289 -2.058 0 0 0 0 0 0 0 +-14.488 -5.331 -2.057 0 0 0 0 0 0 0 +-14.486 -5.382 -2.059 0 0 0 0 0 0 0 +-14.467 -5.427 -2.059 0 0 0 0 0 0 0 +-14.46 -5.45 -2.059 0 0 0 0 0 0 0 +-14.451 -5.498 -2.06 0 0 0 0 0 0 0 +-14.433 -5.544 -2.06 0 0 0 0 0 0 0 +-14.385 -5.577 -2.055 0 0 0 0 0 0 0 +-14.374 -5.625 -2.057 0 0 0 0 0 0 0 +-14.368 -5.674 -2.058 0 0 0 0 0 0 0 +-14.335 -5.714 -2.056 0 0 0 0 0 0 0 +-14.326 -5.736 -2.056 0 0 0 0 0 0 0 +-14.304 -5.78 -2.055 0 0 0 0 0 0 0 +-14.297 -5.829 -2.057 0 0 0 0 0 0 0 +-14.266 -5.869 -2.055 0 0 0 0 0 0 0 +-14.264 -5.92 -2.058 0 0 0 0 0 0 0 +-14.236 -5.961 -2.056 0 0 0 0 0 0 0 +-14.208 -6.002 -2.055 0 0 0 0 0 0 0 +-14.215 -6.031 -2.057 0 0 0 0 0 0 0 +-14.201 -6.078 -2.058 0 0 0 0 0 0 0 +-14.179 -6.121 -2.058 0 0 0 0 0 0 0 +-14.159 -6.166 -2.058 0 0 0 0 0 0 0 +-14.134 -6.208 -2.057 0 0 0 0 0 0 0 +-14.12 -6.255 -2.058 0 0 0 0 0 0 0 +-14.083 -6.291 -2.055 0 0 0 0 0 0 0 +-14.067 -6.311 -2.054 0 0 0 0 0 0 0 +-14.071 -6.365 -2.058 0 0 0 0 0 0 0 +-14.047 -6.408 -2.057 0 0 0 0 0 0 0 +-14.03 -6.454 -2.058 0 0 0 0 0 0 0 +-14.01 -6.498 -2.058 0 0 0 0 0 0 0 +-13.993 -6.543 -2.058 0 0 0 0 0 0 0 +-13.976 -6.589 -2.059 0 0 0 0 0 0 0 +-13.959 -6.607 -2.058 0 0 0 0 0 0 0 +-13.952 -6.658 -2.06 0 0 0 0 0 0 0 +-13.935 -6.704 -2.061 0 0 0 0 0 0 0 +-13.917 -6.749 -2.061 0 0 0 0 0 0 0 +-13.908 -6.799 -2.063 0 0 0 0 0 0 0 +-13.883 -6.841 -2.063 0 0 0 0 0 0 0 +-13.871 -6.889 -2.064 0 0 0 0 0 0 0 +-13.847 -6.932 -2.064 0 0 0 0 0 0 0 +-13.842 -6.956 -2.065 0 0 0 0 0 0 0 +-13.818 -6.998 -2.064 0 0 0 0 0 0 0 +-13.801 -7.045 -2.065 0 0 0 0 0 0 0 +-13.788 -7.092 -2.067 0 0 0 0 0 0 0 +-13.765 -7.136 -2.067 0 0 0 0 0 0 0 +-13.743 -7.179 -2.067 0 0 0 0 0 0 0 +-13.718 -7.221 -2.066 0 0 0 0 0 0 0 +-13.721 -7.25 -2.069 0 0 0 0 0 0 0 +-13.693 -7.29 -2.068 0 0 0 0 0 0 0 +-13.67 -7.333 -2.068 0 0 0 0 0 0 0 +-13.654 -7.38 -2.069 0 0 0 0 0 0 0 +-13.638 -7.427 -2.07 0 0 0 0 0 0 0 +-13.621 -7.473 -2.071 0 0 0 0 0 0 0 +-13.594 -7.514 -2.071 0 0 0 0 0 0 0 +-13.586 -7.537 -2.071 0 0 0 0 0 0 0 +-13.562 -7.58 -2.071 0 0 0 0 0 0 0 +-13.547 -7.627 -2.073 0 0 0 0 0 0 0 +-13.514 -7.665 -2.071 0 0 0 0 0 0 0 +-13.502 -7.714 -2.073 0 0 0 0 0 0 0 +-13.478 -7.757 -2.073 0 0 0 0 0 0 0 +-13.458 -7.802 -2.074 0 0 0 0 0 0 0 +-13.468 -7.836 -2.078 0 0 0 0 0 0 0 +-13.445 -7.879 -2.078 0 0 0 0 0 0 0 +-13.429 -7.927 -2.08 0 0 0 0 0 0 0 +-13.404 -7.969 -2.08 0 0 0 0 0 0 0 +-13.394 -8.02 -2.082 0 0 0 0 0 0 0 +-13.379 -8.068 -2.084 0 0 0 0 0 0 0 +-13.366 -8.118 -2.086 0 0 0 0 0 0 0 +-13.368 -8.148 -2.089 0 0 0 0 0 0 0 +-13.346 -8.192 -2.089 0 0 0 0 0 0 0 +-13.325 -8.237 -2.09 0 0 0 0 0 0 0 +-13.284 -8.269 -2.087 0 0 0 0 0 0 0 +-13.28 -8.325 -2.091 0 0 0 0 0 0 0 +-13.262 -8.372 -2.093 0 0 0 0 0 0 0 +-13.245 -8.42 -2.094 0 0 0 0 0 0 0 +-13.232 -8.44 -2.094 0 0 0 0 0 0 0 +-13.224 -8.494 -2.098 0 0 0 0 0 0 0 +-13.197 -8.535 -2.098 0 0 0 0 0 0 0 +-13.185 -8.586 -2.1 0 0 0 0 0 0 0 +-13.181 -8.643 -2.104 0 0 0 0 0 0 0 +-13.162 -8.69 -2.106 0 0 0 0 0 0 0 +-13.161 -8.749 -2.11 0 0 0 0 0 0 0 +-13.149 -8.77 -2.111 0 0 0 0 0 0 0 +-13.118 -8.81 -2.11 0 0 0 0 0 0 0 +-13.09 -8.851 -2.11 0 0 0 0 0 0 0 +-13.061 -8.891 -2.11 0 0 0 0 0 0 0 +-13.044 -8.939 -2.112 0 0 0 0 0 0 0 +-10.834 -7.47 -1.724 0 0 0 0 0 0 0 +-10.801 -7.497 -1.722 0 0 0 0 0 0 0 +-10.787 -7.538 -1.724 0 0 0 0 0 0 0 +-10.764 -7.547 -1.722 0 0 0 0 0 0 0 +-10.475 -7.393 -1.675 0 0 0 0 0 0 0 +-10.436 -7.414 -1.672 0 0 0 0 0 0 0 +-10.403 -7.44 -1.67 0 0 0 0 0 0 0 +-10.486 -7.549 -1.689 0 0 0 0 0 0 0 +-10.337 -7.491 -1.667 0 0 0 0 0 0 0 +-10.289 -7.506 -1.662 0 0 0 0 0 0 0 +-10.266 -7.514 -1.66 0 0 0 0 0 0 0 +-10.278 -7.572 -1.667 0 0 0 0 0 0 0 +-10.265 -7.613 -1.669 0 0 0 0 0 0 0 +-10.273 -7.669 -1.674 0 0 0 0 0 0 0 +-12.525 -9.419 -2.091 0 0 0 0 0 0 0 +-12.475 -9.442 -2.087 0 0 0 0 0 0 0 +-12.436 -9.474 -2.085 0 0 0 0 0 0 0 +-12.382 -9.464 -2.078 0 0 0 0 0 0 0 +-12.322 -9.48 -2.073 0 0 0 0 0 0 0 +-12.283 -9.511 -2.071 0 0 0 0 0 0 0 +-12.228 -9.53 -2.066 0 0 0 0 0 0 0 +-12.167 -9.544 -2.061 0 0 0 0 0 0 0 +-12.123 -9.571 -2.058 0 0 0 0 0 0 0 +-12.074 -9.594 -2.055 0 0 0 0 0 0 0 +-12.039 -9.597 -2.051 0 0 0 0 0 0 0 +-12.006 -9.632 -2.05 0 0 0 0 0 0 0 +-11.961 -9.659 -2.048 0 0 0 0 0 0 0 +-11.925 -9.691 -2.046 0 0 0 0 0 0 0 +-11.887 -9.722 -2.045 0 0 0 0 0 0 0 +-11.849 -9.753 -2.044 0 0 0 0 0 0 0 +-11.815 -9.788 -2.043 0 0 0 0 0 0 0 +-11.774 -9.785 -2.038 0 0 0 0 0 0 0 +-11.735 -9.816 -2.037 0 0 0 0 0 0 0 +-11.685 -9.836 -2.033 0 0 0 0 0 0 0 +-11.655 -9.874 -2.033 0 0 0 0 0 0 0 +-11.579 -9.872 -2.024 0 0 0 0 0 0 0 +-11.561 -9.92 -2.027 0 0 0 0 0 0 0 +-11.515 -9.943 -2.024 0 0 0 0 0 0 0 +-11.483 -9.947 -2.021 0 0 0 0 0 0 0 +-11.446 -9.978 -2.02 0 0 0 0 0 0 0 +-11.4 -10.001 -2.017 0 0 0 0 0 0 0 +-11.364 -10.032 -2.016 0 0 0 0 0 0 0 +-11.326 -10.063 -2.015 0 0 0 0 0 0 0 +-11.287 -10.092 -2.013 0 0 0 0 0 0 0 +-11.248 -10.12 -2.012 0 0 0 0 0 0 0 +-11.222 -10.129 -2.01 0 0 0 0 0 0 0 +-11.196 -10.169 -2.011 0 0 0 0 0 0 0 +-11.132 -10.175 -2.005 0 0 0 0 0 0 0 +-11.103 -10.213 -2.005 0 0 0 0 0 0 0 +-11.073 -10.25 -2.006 0 0 0 0 0 0 0 +-11.007 -10.252 -1.999 0 0 0 0 0 0 0 +-10.98 -10.292 -2 0 0 0 0 0 0 0 +-10.936 -10.316 -1.998 0 0 0 0 0 0 0 +-10.903 -10.317 -1.994 0 0 0 0 0 0 0 +-10.872 -10.352 -1.995 0 0 0 0 0 0 0 +-10.833 -10.381 -1.994 0 0 0 0 0 0 0 +-10.771 -10.386 -1.987 0 0 0 0 0 0 0 +-10.738 -10.42 -1.987 0 0 0 0 0 0 0 +-10.688 -10.437 -1.984 0 0 0 0 0 0 0 +-10.649 -10.463 -1.983 0 0 0 0 0 0 0 +-10.625 -10.473 -1.981 0 0 0 0 0 0 0 +-10.577 -10.491 -1.978 0 0 0 0 0 0 0 +-10.514 -10.495 -1.972 0 0 0 0 0 0 0 +-10.487 -10.534 -1.973 0 0 0 0 0 0 0 +-10.441 -10.554 -1.97 0 0 0 0 0 0 0 +-10.386 -10.564 -1.966 0 0 0 0 0 0 0 +-10.364 -10.608 -1.968 0 0 0 0 0 0 0 +-10.341 -10.618 -1.967 0 0 0 0 0 0 0 +-10.286 -10.628 -1.962 0 0 0 0 0 0 0 +-10.242 -10.649 -1.96 0 0 0 0 0 0 0 +-10.19 -10.662 -1.956 0 0 0 0 0 0 0 +-10.136 -10.673 -1.952 0 0 0 0 0 0 0 +-10.097 -10.699 -1.951 0 0 0 0 0 0 0 +-10.046 -10.712 -1.947 0 0 0 0 0 0 0 +-10.025 -10.723 -1.946 0 0 0 0 0 0 0 +-9.969 -10.73 -1.941 0 0 0 0 0 0 0 +-9.935 -10.761 -1.941 0 0 0 0 0 0 0 +-9.892 -10.782 -1.939 0 0 0 0 0 0 0 +-9.855 -10.81 -1.939 0 0 0 0 0 0 0 +-9.813 -10.832 -1.937 0 0 0 0 0 0 0 +-9.767 -10.85 -1.934 0 0 0 0 0 0 0 +-9.729 -10.841 -1.93 0 0 0 0 0 0 0 +-9.7 -10.878 -1.931 0 0 0 0 0 0 0 +-9.644 -10.883 -1.926 0 0 0 0 0 0 0 +-9.606 -10.909 -1.925 0 0 0 0 0 0 0 +-9.574 -10.942 -1.926 0 0 0 0 0 0 0 +-9.525 -10.956 -1.922 0 0 0 0 0 0 0 +-9.478 -10.97 -1.92 0 0 0 0 0 0 0 +-9.462 -10.987 -1.92 0 0 0 0 0 0 0 +-9.407 -10.992 -1.915 0 0 0 0 0 0 0 +-9.371 -11.02 -1.915 0 0 0 0 0 0 0 +-9.335 -11.048 -1.915 0 0 0 0 0 0 0 +-9.288 -11.062 -1.912 0 0 0 0 0 0 0 +-9.258 -11.098 -1.913 0 0 0 0 0 0 0 +-9.203 -11.102 -1.908 0 0 0 0 0 0 0 +-9.18 -11.11 -1.907 0 0 0 0 0 0 0 +-9.157 -11.153 -1.91 0 0 0 0 0 0 0 +-9.107 -11.163 -1.906 0 0 0 0 0 0 0 +-9.068 -11.187 -1.905 0 0 0 0 0 0 0 +-9.034 -11.217 -1.906 0 0 0 0 0 0 0 +-8.98 -11.222 -1.901 0 0 0 0 0 0 0 +-8.937 -11.241 -1.9 0 0 0 0 0 0 0 +-8.924 -11.261 -1.901 0 0 0 0 0 0 0 +-8.878 -11.275 -1.898 0 0 0 0 0 0 0 +-8.832 -11.289 -1.896 0 0 0 0 0 0 0 +-8.801 -11.323 -1.897 0 0 0 0 0 0 0 +-8.755 -11.337 -1.894 0 0 0 0 0 0 0 +-8.721 -11.367 -1.895 0 0 0 0 0 0 0 +-8.672 -11.377 -1.891 0 0 0 0 0 0 0 +-8.65 -11.385 -1.89 0 0 0 0 0 0 0 +-8.607 -11.402 -1.889 0 0 0 0 0 0 0 +-8.566 -11.423 -1.887 0 0 0 0 0 0 0 +-8.547 -11.472 -1.891 0 0 0 0 0 0 0 +-8.507 -11.494 -1.891 0 0 0 0 0 0 0 +-8.466 -11.514 -1.889 0 0 0 0 0 0 0 +-8.413 -11.517 -1.885 0 0 0 0 0 0 0 +-8.403 -11.541 -1.887 0 0 0 0 0 0 0 +-8.359 -11.558 -1.885 0 0 0 0 0 0 0 +-8.332 -11.597 -1.888 0 0 0 0 0 0 0 +-8.298 -11.626 -1.888 0 0 0 0 0 0 0 +-8.267 -11.66 -1.89 0 0 0 0 0 0 0 +-8.221 -11.673 -1.887 0 0 0 0 0 0 0 +-8.193 -11.71 -1.889 0 0 0 0 0 0 0 +-8.177 -11.727 -1.89 0 0 0 0 0 0 0 +-8.145 -11.76 -1.891 0 0 0 0 0 0 0 +-8.089 -11.758 -1.887 0 0 0 0 0 0 0 +-8.068 -11.806 -1.891 0 0 0 0 0 0 0 +-8.014 -11.807 -1.886 0 0 0 0 0 0 0 +-7.978 -11.834 -1.887 0 0 0 0 0 0 0 +-7.939 -11.856 -1.886 0 0 0 0 0 0 0 +-7.921 -11.87 -1.886 0 0 0 0 0 0 0 +-7.888 -11.901 -1.887 0 0 0 0 0 0 0 +-7.859 -11.939 -1.89 0 0 0 0 0 0 0 +-7.818 -11.957 -1.889 0 0 0 0 0 0 0 +-7.806 -12.021 -1.896 0 0 0 0 0 0 0 +-7.758 -12.031 -1.893 0 0 0 0 0 0 0 +-7.72 -12.055 -1.893 0 0 0 0 0 0 0 +-7.657 -12.039 -1.886 0 0 0 0 0 0 0 +-7.685 -12.125 -1.899 0 0 0 0 0 0 0 +-7.619 -12.105 -1.891 0 0 0 0 0 0 0 +-7.559 -12.094 -1.885 0 0 0 0 0 0 0 +-7.534 -12.138 -1.889 0 0 0 0 0 0 0 +-7.498 -12.165 -1.889 0 0 0 0 0 0 0 +-7.454 -12.18 -1.888 0 0 0 0 0 0 0 +-7.409 -12.191 -1.886 0 0 0 0 0 0 0 +-7.391 -12.205 -1.886 0 0 0 0 0 0 0 +-7.344 -12.214 -1.884 0 0 0 0 0 0 0 +-7.303 -12.232 -1.883 0 0 0 0 0 0 0 +-7.26 -12.248 -1.882 0 0 0 0 0 0 0 +-7.217 -12.263 -1.88 0 0 0 0 0 0 0 +-7.177 -12.283 -1.88 0 0 0 0 0 0 0 +-7.145 -12.318 -1.882 0 0 0 0 0 0 0 +-7.113 -12.307 -1.878 0 0 0 0 0 0 0 +-7.075 -12.331 -1.878 0 0 0 0 0 0 0 +-7.034 -12.348 -1.878 0 0 0 0 0 0 0 +-6.995 -12.37 -1.878 0 0 0 0 0 0 0 +-6.955 -12.39 -1.877 0 0 0 0 0 0 0 +-6.923 -12.424 -1.879 0 0 0 0 0 0 0 +-6.876 -12.432 -1.877 0 0 0 0 0 0 0 +-6.858 -12.444 -1.877 0 0 0 0 0 0 0 +-6.816 -12.461 -1.876 0 0 0 0 0 0 0 +-6.771 -12.471 -1.875 0 0 0 0 0 0 0 +-6.732 -12.493 -1.875 0 0 0 0 0 0 0 +-6.703 -12.535 -1.878 0 0 0 0 0 0 0 +-6.654 -12.536 -1.875 0 0 0 0 0 0 0 +-6.616 -12.561 -1.876 0 0 0 0 0 0 0 +-6.598 -12.575 -1.876 0 0 0 0 0 0 0 +-6.556 -12.59 -1.875 0 0 0 0 0 0 0 +-6.511 -12.6 -1.874 0 0 0 0 0 0 0 +-6.48 -12.638 -1.876 0 0 0 0 0 0 0 +-6.431 -12.639 -1.873 0 0 0 0 0 0 0 +-6.395 -12.666 -1.874 0 0 0 0 0 0 0 +-6.347 -12.67 -1.872 0 0 0 0 0 0 0 +-6.342 -12.71 -1.877 0 0 0 0 0 0 0 +-6.324 -12.775 -1.884 0 0 0 0 0 0 0 +-6.233 -12.691 -1.867 0 0 0 0 0 0 0 +-6.18 -12.684 -1.863 0 0 0 0 0 0 0 +-6.135 -12.691 -1.861 0 0 0 0 0 0 0 +-6.094 -12.708 -1.861 0 0 0 0 0 0 0 +-6.046 -12.711 -1.858 0 0 0 0 0 0 0 +-6.03 -12.73 -1.859 0 0 0 0 0 0 0 +-5.986 -12.74 -1.858 0 0 0 0 0 0 0 +-5.942 -12.749 -1.857 0 0 0 0 0 0 0 +-5.908 -12.781 -1.859 0 0 0 0 0 0 0 +-5.862 -12.787 -1.857 0 0 0 0 0 0 0 +-5.814 -12.789 -1.854 0 0 0 0 0 0 0 +-5.776 -12.812 -1.855 0 0 0 0 0 0 0 +-5.754 -12.816 -1.854 0 0 0 0 0 0 0 +-5.707 -12.819 -1.852 0 0 0 0 0 0 0 +-5.666 -12.836 -1.851 0 0 0 0 0 0 0 +-5.621 -12.842 -1.85 0 0 0 0 0 0 0 +-5.567 -12.827 -1.844 0 0 0 0 0 0 0 +-5.534 -12.863 -1.847 0 0 0 0 0 0 0 +-5.497 -12.889 -1.849 0 0 0 0 0 0 0 +-5.511 -12.978 -1.861 0 0 0 0 0 0 0 +-5.446 -12.937 -1.852 0 0 0 0 0 0 0 +-5.396 -12.932 -1.849 0 0 0 0 0 0 0 +-5.356 -12.951 -1.849 0 0 0 0 0 0 0 +-5.312 -12.958 -1.848 0 0 0 0 0 0 0 +-5.272 -12.977 -1.848 0 0 0 0 0 0 0 +-5.226 -12.981 -1.846 0 0 0 0 0 0 0 +-5.207 -12.992 -1.846 0 0 0 0 0 0 0 +-5.164 -13.003 -1.846 0 0 0 0 0 0 0 +-5.121 -13.014 -1.845 0 0 0 0 0 0 0 +-5.082 -13.035 -1.846 0 0 0 0 0 0 0 +-5.037 -13.042 -1.844 0 0 0 0 0 0 0 +-4.998 -13.061 -1.845 0 0 0 0 0 0 0 +-4.949 -13.057 -1.841 0 0 0 0 0 0 0 +-4.934 -13.077 -1.843 0 0 0 0 0 0 0 +-4.89 -13.087 -1.843 0 0 0 0 0 0 0 +-4.863 -13.14 -1.848 0 0 0 0 0 0 0 +-4.83 -13.177 -1.852 0 0 0 0 0 0 0 +-4.75 -13.086 -1.835 0 0 0 0 0 0 0 +-4.737 -13.181 -1.848 0 0 0 0 0 0 0 +-4.701 -13.276 -1.859 0 0 0 0 0 0 0 +-4.627 -13.199 -1.845 0 0 0 0 0 0 0 +-4.583 -13.205 -1.843 0 0 0 0 0 0 0 +-4.533 -13.195 -1.84 0 0 0 0 0 0 0 +-4.491 -13.209 -1.84 0 0 0 0 0 0 0 +-4.447 -13.213 -1.838 0 0 0 0 0 0 0 +-4.406 -13.229 -1.839 0 0 0 0 0 0 0 +-4.363 -13.239 -1.838 0 0 0 0 0 0 0 +-4.337 -13.231 -1.836 0 0 0 0 0 0 0 +-4.296 -13.246 -1.836 0 0 0 0 0 0 0 +-4.252 -13.25 -1.835 0 0 0 0 0 0 0 +-4.206 -13.25 -1.833 0 0 0 0 0 0 0 +-4.166 -13.271 -1.834 0 0 0 0 0 0 0 +-4.128 -13.296 -1.835 0 0 0 0 0 0 0 +-4.077 -13.276 -1.83 0 0 0 0 0 0 0 +-4.055 -13.281 -1.83 0 0 0 0 0 0 0 +-4.004 -13.263 -1.826 0 0 0 0 0 0 0 +-3.96 -13.268 -1.824 0 0 0 0 0 0 0 +-3.918 -13.279 -1.824 0 0 0 0 0 0 0 +-3.877 -13.293 -1.824 0 0 0 0 0 0 0 +-3.834 -13.299 -1.824 0 0 0 0 0 0 0 +-3.808 -13.288 -1.821 0 0 0 0 0 0 0 +-3.769 -13.311 -1.823 0 0 0 0 0 0 0 +-3.74 -13.367 -1.829 0 0 0 0 0 0 0 +-3.699 -13.384 -1.83 0 0 0 0 0 0 0 +-3.661 -13.409 -1.832 0 0 0 0 0 0 0 +-3.621 -13.428 -1.833 0 0 0 0 0 0 0 +-3.578 -13.44 -1.833 0 0 0 0 0 0 0 +-3.537 -13.455 -1.834 0 0 0 0 0 0 0 +-3.516 -13.46 -1.834 0 0 0 0 0 0 0 +-3.477 -13.485 -1.836 0 0 0 0 0 0 0 +-3.437 -13.505 -1.837 0 0 0 0 0 0 0 +-3.39 -13.498 -1.835 0 0 0 0 0 0 0 +-3.361 -13.563 -1.843 0 0 0 0 0 0 0 +-3.322 -13.587 -1.845 0 0 0 0 0 0 0 +-3.235 -13.508 -1.831 0 0 0 0 0 0 0 +-3.185 -13.483 -1.826 0 0 0 0 0 0 0 +-3.129 -13.435 -1.817 0 0 0 0 0 0 0 +-3.086 -13.443 -1.817 0 0 0 0 0 0 0 +-3.039 -13.428 -1.813 0 0 0 0 0 0 0 +-2.993 -13.422 -1.811 0 0 0 0 0 0 0 +-2.947 -13.412 -1.808 0 0 0 0 0 0 0 +-2.922 -13.399 -1.805 0 0 0 0 0 0 0 +-2.876 -13.391 -1.802 0 0 0 0 0 0 0 +-2.83 -13.38 -1.8 0 0 0 0 0 0 0 +-2.789 -13.397 -1.801 0 0 0 0 0 0 0 +-2.747 -13.406 -1.801 0 0 0 0 0 0 0 +-2.702 -13.401 -1.799 0 0 0 0 0 0 0 +-2.655 -13.382 -1.795 0 0 0 0 0 0 0 +-2.638 -13.405 -1.798 0 0 0 0 0 0 0 +-2.592 -13.396 -1.795 0 0 0 0 0 0 0 +-2.549 -13.396 -1.794 0 0 0 0 0 0 0 +-2.507 -13.404 -1.794 0 0 0 0 0 0 0 +-2.462 -13.399 -1.792 0 0 0 0 0 0 0 +-2.414 -13.373 -1.787 0 0 0 0 0 0 0 +-2.373 -13.386 -1.788 0 0 0 0 0 0 0 +-2.35 -13.377 -1.786 0 0 0 0 0 0 0 +-2.305 -13.368 -1.783 0 0 0 0 0 0 0 +-2.26 -13.356 -1.78 0 0 0 0 0 0 0 +-2.236 -13.474 -1.797 0 0 0 0 0 0 0 +-2.177 -13.382 -1.782 0 0 0 0 0 0 0 +-2.138 -13.406 -1.785 0 0 0 0 0 0 0 +-2.094 -13.397 -1.783 0 0 0 0 0 0 0 +-2.073 -13.404 -1.783 0 0 0 0 0 0 0 +-2.034 -13.428 -1.786 0 0 0 0 0 0 0 +-1.99 -13.425 -1.784 0 0 0 0 0 0 0 +-1.95 -13.445 -1.786 0 0 0 0 0 0 0 +-1.912 -13.484 -1.791 0 0 0 0 0 0 0 +-1.866 -13.461 -1.787 0 0 0 0 0 0 0 +-1.826 -13.484 -1.789 0 0 0 0 0 0 0 +-1.809 -13.516 -1.794 0 0 0 0 0 0 0 +-1.762 -13.492 -1.789 0 0 0 0 0 0 0 +-1.724 -13.527 -1.794 0 0 0 0 0 0 0 +-1.681 -13.535 -1.794 0 0 0 0 0 0 0 +-1.639 -13.538 -1.794 0 0 0 0 0 0 0 +-1.6 -13.578 -1.799 0 0 0 0 0 0 0 +-1.559 -13.595 -1.801 0 0 0 0 0 0 0 +-1.537 -13.596 -1.8 0 0 0 0 0 0 0 +-1.497 -13.618 -1.803 0 0 0 0 0 0 0 +-1.456 -13.644 -1.806 0 0 0 0 0 0 0 +-1.412 -13.641 -1.805 0 0 0 0 0 0 0 +-1.37 -13.649 -1.806 0 0 0 0 0 0 0 +-1.329 -13.677 -1.809 0 0 0 0 0 0 0 +-1.287 -13.693 -1.811 0 0 0 0 0 0 0 +-1.266 -13.697 -1.811 0 0 0 0 0 0 0 +-1.224 -13.715 -1.813 0 0 0 0 0 0 0 +-1.181 -13.717 -1.813 0 0 0 0 0 0 0 +-1.138 -13.718 -1.813 0 0 0 0 0 0 0 +-1.095 -13.728 -1.813 0 0 0 0 0 0 0 +-1.051 -13.725 -1.813 0 0 0 0 0 0 0 +-1.008 -13.722 -1.812 0 0 0 0 0 0 0 +-0.987 -13.736 -1.813 0 0 0 0 0 0 0 +-0.944 -13.735 -1.813 0 0 0 0 0 0 0 +-0.901 -13.74 -1.813 0 0 0 0 0 0 0 +-0.857 -13.733 -1.812 0 0 0 0 0 0 0 +-0.814 -13.741 -1.813 0 0 0 0 0 0 0 +-0.77 -13.72 -1.809 0 0 0 0 0 0 0 +-0.727 -13.736 -1.811 0 0 0 0 0 0 0 +-0.705 -13.731 -1.81 0 0 0 0 0 0 0 +-0.662 -13.724 -1.809 0 0 0 0 0 0 0 +-0.62 -13.751 -1.813 0 0 0 0 0 0 0 +-0.577 -13.769 -1.815 0 0 0 0 0 0 0 +-0.534 -13.773 -1.815 0 0 0 0 0 0 0 +-0.491 -13.778 -1.816 0 0 0 0 0 0 0 +-0.448 -13.808 -1.82 0 0 0 0 0 0 0 +-0.427 -13.828 -1.823 0 0 0 0 0 0 0 +-0.384 -13.835 -1.824 0 0 0 0 0 0 0 +-0.341 -13.848 -1.825 0 0 0 0 0 0 0 +-0.297 -13.855 -1.826 0 0 0 0 0 0 0 +-0.254 -13.87 -1.828 0 0 0 0 0 0 0 +-0.211 -13.89 -1.831 0 0 0 0 0 0 0 +-0.167 -13.905 -1.833 0 0 0 0 0 0 0 +-0.145 -13.901 -1.833 0 0 0 0 0 0 0 +-0.102 -13.917 -1.835 0 0 0 0 0 0 0 +-0.058 -13.928 -1.836 0 0 0 0 0 0 0 +-0.014 -13.94 -1.838 0 0 0 0 0 0 0 +0.029 -13.953 -1.84 0 0 0 0 0 0 0 +0.073 -13.965 -1.842 0 0 0 0 0 0 0 +0.117 -13.971 -1.843 0 0 0 0 0 0 0 +0.139 -13.98 -1.844 0 0 0 0 0 0 0 +0.184 -13.998 -1.847 0 0 0 0 0 0 0 +0.228 -14.001 -1.847 0 0 0 0 0 0 0 +0.272 -14.01 -1.849 0 0 0 0 0 0 0 +0.316 -14.013 -1.849 0 0 0 0 0 0 0 +0.36 -14.02 -1.85 0 0 0 0 0 0 0 +0.404 -14.015 -1.85 0 0 0 0 0 0 0 +0.448 -14.023 -1.851 0 0 0 0 0 0 0 +0.471 -14.035 -1.853 0 0 0 0 0 0 0 +0.515 -14.031 -1.853 0 0 0 0 0 0 0 +0.559 -14.027 -1.852 0 0 0 0 0 0 0 +0.603 -14.037 -1.854 0 0 0 0 0 0 0 +0.649 -14.061 -1.858 0 0 0 0 0 0 0 +0.693 -14.059 -1.858 0 0 0 0 0 0 0 +0.738 -14.067 -1.859 0 0 0 0 0 0 0 +0.76 -14.073 -1.861 0 0 0 0 0 0 0 +0.804 -14.069 -1.86 0 0 0 0 0 0 0 +0.849 -14.074 -1.861 0 0 0 0 0 0 0 +0.893 -14.075 -1.862 0 0 0 0 0 0 0 +0.938 -14.082 -1.863 0 0 0 0 0 0 0 +0.982 -14.074 -1.863 0 0 0 0 0 0 0 +1.005 -14.088 -1.865 0 0 0 0 0 0 0 +1.05 -14.09 -1.866 0 0 0 0 0 0 0 +1.095 -14.091 -1.866 0 0 0 0 0 0 0 +1.137 -14.07 -1.864 0 0 0 0 0 0 0 +1.183 -14.078 -1.865 0 0 0 0 0 0 0 +1.227 -14.076 -1.866 0 0 0 0 0 0 0 +1.273 -14.086 -1.868 0 0 0 0 0 0 0 +1.319 -14.11 -1.872 0 0 0 0 0 0 0 +1.345 -14.145 -1.877 0 0 0 0 0 0 0 +1.39 -14.146 -1.878 0 0 0 0 0 0 0 +1.437 -14.164 -1.881 0 0 0 0 0 0 0 +1.477 -14.12 -1.876 0 0 0 0 0 0 0 +1.509 -13.997 -1.858 0 0 0 0 0 0 0 +1.539 -13.874 -1.841 0 0 0 0 0 0 0 +1.571 -13.769 -1.826 0 0 0 0 0 0 0 +1.585 -13.698 -1.816 0 0 0 0 0 0 0 +1.625 -13.673 -1.813 0 0 0 0 0 0 0 +1.668 -13.662 -1.812 0 0 0 0 0 0 0 +1.711 -13.657 -1.812 0 0 0 0 0 0 0 +1.753 -13.645 -1.811 0 0 0 0 0 0 0 +1.794 -13.632 -1.81 0 0 0 0 0 0 0 +1.835 -13.609 -1.808 0 0 0 0 0 0 0 +1.856 -13.606 -1.808 0 0 0 0 0 0 0 +1.898 -13.596 -1.807 0 0 0 0 0 0 0 +1.939 -13.572 -1.804 0 0 0 0 0 0 0 +1.98 -13.56 -1.804 0 0 0 0 0 0 0 +2.025 -13.566 -1.805 0 0 0 0 0 0 0 +2.064 -13.536 -1.802 0 0 0 0 0 0 0 +2.105 -13.519 -1.8 0 0 0 0 0 0 0 +2.126 -13.514 -1.8 0 0 0 0 0 0 0 +2.167 -13.502 -1.799 0 0 0 0 0 0 0 +2.207 -13.481 -1.797 0 0 0 0 0 0 0 +2.249 -13.472 -1.797 0 0 0 0 0 0 0 +2.289 -13.449 -1.795 0 0 0 0 0 0 0 +2.33 -13.436 -1.794 0 0 0 0 0 0 0 +2.371 -13.421 -1.793 0 0 0 0 0 0 0 +2.388 -13.396 -1.789 0 0 0 0 0 0 0 +2.429 -13.384 -1.789 0 0 0 0 0 0 0 +2.473 -13.383 -1.79 0 0 0 0 0 0 0 +2.51 -13.351 -1.786 0 0 0 0 0 0 0 +2.555 -13.359 -1.789 0 0 0 0 0 0 0 +2.592 -13.326 -1.785 0 0 0 0 0 0 0 +2.631 -13.302 -1.783 0 0 0 0 0 0 0 +2.649 -13.286 -1.781 0 0 0 0 0 0 0 +2.689 -13.268 -1.779 0 0 0 0 0 0 0 +1.339 -6.567 -0.781 0 0 0 0 0 0 0 +1.325 -6.4 -0.757 0 0 0 0 0 0 0 +1.343 -6.384 -0.755 0 0 0 0 0 0 0 +1.359 -6.361 -0.752 0 0 0 0 0 0 0 +1.379 -6.357 -0.752 0 0 0 0 0 0 0 +1.397 -6.389 -0.757 0 0 0 0 0 0 0 +1.423 -6.412 -0.761 0 0 0 0 0 0 0 +1.454 -6.456 -0.768 0 0 0 0 0 0 0 +1.464 -6.409 -0.762 0 0 0 0 0 0 0 +1.482 -6.394 -0.761 0 0 0 0 0 0 0 +1.497 -6.368 -0.757 0 0 0 0 0 0 0 +1.523 -6.389 -0.761 0 0 0 0 0 0 0 +1.555 -6.477 -0.775 0 0 0 0 0 0 0 +1.578 -6.481 -0.776 0 0 0 0 0 0 0 +1.602 -6.49 -0.778 0 0 0 0 0 0 0 +1.634 -6.533 -0.785 0 0 0 0 0 0 0 +1.703 -6.713 -0.814 0 0 0 0 0 0 0 +3.328 -12.853 -1.741 0 0 0 0 0 0 0 +3.366 -12.837 -1.74 0 0 0 0 0 0 0 +3.384 -12.82 -1.739 0 0 0 0 0 0 0 +3.425 -12.813 -1.739 0 0 0 0 0 0 0 +3.457 -12.773 -1.735 0 0 0 0 0 0 0 +3.495 -12.755 -1.734 0 0 0 0 0 0 0 +3.533 -12.736 -1.732 0 0 0 0 0 0 0 +3.566 -12.7 -1.729 0 0 0 0 0 0 0 +3.606 -12.687 -1.728 0 0 0 0 0 0 0 +3.624 -12.676 -1.728 0 0 0 0 0 0 0 +3.658 -12.643 -1.724 0 0 0 0 0 0 0 +3.7 -12.641 -1.726 0 0 0 0 0 0 0 +3.737 -12.62 -1.724 0 0 0 0 0 0 0 +3.776 -12.606 -1.724 0 0 0 0 0 0 0 +3.807 -12.566 -1.72 0 0 0 0 0 0 0 +3.849 -12.564 -1.721 0 0 0 0 0 0 0 +3.859 -12.525 -1.716 0 0 0 0 0 0 0 +3.902 -12.525 -1.718 0 0 0 0 0 0 0 +3.943 -12.518 -1.719 0 0 0 0 0 0 0 +3.97 -12.468 -1.713 0 0 0 0 0 0 0 +4.007 -12.448 -1.712 0 0 0 0 0 0 0 +4.041 -12.42 -1.71 0 0 0 0 0 0 0 +4.075 -12.39 -1.707 0 0 0 0 0 0 0 +4.093 -12.382 -1.707 0 0 0 0 0 0 0 +4.127 -12.352 -1.704 0 0 0 0 0 0 0 +4.161 -12.326 -1.702 0 0 0 0 0 0 0 +4.197 -12.305 -1.701 0 0 0 0 0 0 0 +4.229 -12.272 -1.698 0 0 0 0 0 0 0 +4.274 -12.277 -1.701 0 0 0 0 0 0 0 +4.306 -12.247 -1.698 0 0 0 0 0 0 0 +3.718 -10.532 -1.433 0 0 0 0 0 0 0 +3.749 -10.515 -1.432 0 0 0 0 0 0 0 +3.781 -10.499 -1.432 0 0 0 0 0 0 0 +3.82 -10.504 -1.434 0 0 0 0 0 0 0 +4.478 -12.181 -1.698 0 0 0 0 0 0 0 +4.505 -12.139 -1.693 0 0 0 0 0 0 0 +4.546 -12.132 -1.694 0 0 0 0 0 0 0 +4.558 -12.106 -1.691 0 0 0 0 0 0 0 +4.593 -12.083 -1.69 0 0 0 0 0 0 0 +4.629 -12.063 -1.689 0 0 0 0 0 0 0 +4.661 -12.035 -1.687 0 0 0 0 0 0 0 +4.699 -12.021 -1.687 0 0 0 0 0 0 0 +4.738 -12.009 -1.688 0 0 0 0 0 0 0 +4.771 -11.982 -1.686 0 0 0 0 0 0 0 +4.788 -11.97 -1.685 0 0 0 0 0 0 0 +4.824 -11.95 -1.684 0 0 0 0 0 0 0 +4.865 -11.944 -1.686 0 0 0 0 0 0 0 +4.9 -11.923 -1.685 0 0 0 0 0 0 0 +4.932 -11.895 -1.683 0 0 0 0 0 0 0 +4.965 -11.868 -1.681 0 0 0 0 0 0 0 +5.007 -11.864 -1.683 0 0 0 0 0 0 0 +5.022 -11.848 -1.682 0 0 0 0 0 0 0 +5.057 -11.827 -1.681 0 0 0 0 0 0 0 +5.088 -11.797 -1.678 0 0 0 0 0 0 0 +5.119 -11.766 -1.676 0 0 0 0 0 0 0 +5.145 -11.725 -1.672 0 0 0 0 0 0 0 +5.178 -11.701 -1.671 0 0 0 0 0 0 0 +5.208 -11.67 -1.669 0 0 0 0 0 0 0 +5.236 -11.682 -1.672 0 0 0 0 0 0 0 +5.271 -11.662 -1.671 0 0 0 0 0 0 0 +5.302 -11.633 -1.669 0 0 0 0 0 0 0 +5.336 -11.611 -1.668 0 0 0 0 0 0 0 +5.363 -11.574 -1.665 0 0 0 0 0 0 0 +5.399 -11.557 -1.665 0 0 0 0 0 0 0 +5.424 -11.517 -1.661 0 0 0 0 0 0 0 +5.441 -11.505 -1.661 0 0 0 0 0 0 0 +5.472 -11.477 -1.659 0 0 0 0 0 0 0 +5.501 -11.445 -1.657 0 0 0 0 0 0 0 +5.533 -11.419 -1.655 0 0 0 0 0 0 0 +5.562 -11.389 -1.653 0 0 0 0 0 0 0 +5.592 -11.359 -1.651 0 0 0 0 0 0 0 +5.629 -11.345 -1.652 0 0 0 0 0 0 0 +5.642 -11.326 -1.65 0 0 0 0 0 0 0 +5.672 -11.297 -1.648 0 0 0 0 0 0 0 +5.707 -11.279 -1.648 0 0 0 0 0 0 0 +5.735 -11.246 -1.646 0 0 0 0 0 0 0 +5.767 -11.222 -1.645 0 0 0 0 0 0 0 +5.807 -11.213 -1.646 0 0 0 0 0 0 0 +5.841 -11.193 -1.646 0 0 0 0 0 0 0 +5.852 -11.17 -1.644 0 0 0 0 0 0 0 +5.885 -11.148 -1.643 0 0 0 0 0 0 0 +5.921 -11.131 -1.643 0 0 0 0 0 0 0 +5.944 -11.091 -1.64 0 0 0 0 0 0 0 +5.976 -11.067 -1.639 0 0 0 0 0 0 0 +6.018 -11.061 -1.641 0 0 0 0 0 0 0 +6.042 -11.023 -1.638 0 0 0 0 0 0 0 +6.052 -10.999 -1.636 0 0 0 0 0 0 0 +6.087 -10.982 -1.636 0 0 0 0 0 0 0 +6.114 -10.949 -1.634 0 0 0 0 0 0 0 +6.147 -10.928 -1.633 0 0 0 0 0 0 0 +6.182 -10.909 -1.633 0 0 0 0 0 0 0 +6.212 -10.882 -1.632 0 0 0 0 0 0 0 +6.235 -10.844 -1.629 0 0 0 0 0 0 0 +6.254 -10.838 -1.63 0 0 0 0 0 0 0 +6.282 -10.808 -1.628 0 0 0 0 0 0 0 +6.311 -10.779 -1.626 0 0 0 0 0 0 0 +6.342 -10.754 -1.626 0 0 0 0 0 0 0 +6.372 -10.728 -1.624 0 0 0 0 0 0 0 +6.398 -10.696 -1.622 0 0 0 0 0 0 0 +6.432 -10.675 -1.622 0 0 0 0 0 0 0 +6.437 -10.647 -1.619 0 0 0 0 0 0 0 +6.473 -10.63 -1.62 0 0 0 0 0 0 0 +6.502 -10.603 -1.619 0 0 0 0 0 0 0 +6.531 -10.575 -1.617 0 0 0 0 0 0 0 +6.56 -10.548 -1.616 0 0 0 0 0 0 0 +6.591 -10.524 -1.616 0 0 0 0 0 0 0 +6.617 -10.492 -1.614 0 0 0 0 0 0 0 +6.629 -10.475 -1.613 0 0 0 0 0 0 0 +6.662 -10.454 -1.613 0 0 0 0 0 0 0 +6.687 -10.421 -1.611 0 0 0 0 0 0 0 +6.719 -10.398 -1.61 0 0 0 0 0 0 0 +6.754 -10.382 -1.611 0 0 0 0 0 0 0 +6.772 -10.338 -1.607 0 0 0 0 0 0 0 +6.811 -10.326 -1.609 0 0 0 0 0 0 0 +6.813 -10.294 -1.605 0 0 0 0 0 0 0 +6.846 -10.274 -1.605 0 0 0 0 0 0 0 +6.878 -10.253 -1.605 0 0 0 0 0 0 0 +6.904 -10.221 -1.604 0 0 0 0 0 0 0 +6.929 -10.19 -1.602 0 0 0 0 0 0 0 +6.96 -10.166 -1.602 0 0 0 0 0 0 0 +6.989 -10.14 -1.601 0 0 0 0 0 0 0 +7.016 -10.111 -1.6 0 0 0 0 0 0 0 +7.027 -10.094 -1.598 0 0 0 0 0 0 0 +7.052 -10.062 -1.597 0 0 0 0 0 0 0 +7.078 -10.031 -1.595 0 0 0 0 0 0 0 +7.108 -10.008 -1.595 0 0 0 0 0 0 0 +7.135 -9.979 -1.594 0 0 0 0 0 0 0 +7.154 -9.939 -1.591 0 0 0 0 0 0 0 +7.185 -9.916 -1.591 0 0 0 0 0 0 0 +7.193 -9.895 -1.589 0 0 0 0 0 0 0 +7.217 -9.863 -1.587 0 0 0 0 0 0 0 +7.245 -9.836 -1.586 0 0 0 0 0 0 0 +7.273 -9.81 -1.586 0 0 0 0 0 0 0 +7.304 -9.787 -1.586 0 0 0 0 0 0 0 +7.331 -9.759 -1.585 0 0 0 0 0 0 0 +7.344 -9.744 -1.584 0 0 0 0 0 0 0 +7.369 -9.713 -1.583 0 0 0 0 0 0 0 +7.396 -9.685 -1.582 0 0 0 0 0 0 0 +7.425 -9.66 -1.582 0 0 0 0 0 0 0 +7.445 -9.625 -1.579 0 0 0 0 0 0 0 +7.485 -9.614 -1.582 0 0 0 0 0 0 0 +7.503 -9.575 -1.579 0 0 0 0 0 0 0 +7.522 -9.567 -1.58 0 0 0 0 0 0 0 +7.543 -9.533 -1.578 0 0 0 0 0 0 0 +7.57 -9.504 -1.577 0 0 0 0 0 0 0 +7.593 -9.473 -1.575 0 0 0 0 0 0 0 +7.617 -9.441 -1.574 0 0 0 0 0 0 0 +7.648 -9.419 -1.574 0 0 0 0 0 0 0 +7.676 -9.393 -1.574 0 0 0 0 0 0 0 +7.688 -9.378 -1.573 0 0 0 0 0 0 0 +7.707 -9.342 -1.571 0 0 0 0 0 0 0 +7.737 -9.318 -1.571 0 0 0 0 0 0 0 +7.76 -9.286 -1.569 0 0 0 0 0 0 0 +7.789 -9.261 -1.569 0 0 0 0 0 0 0 +7.814 -9.232 -1.569 0 0 0 0 0 0 0 +7.837 -9.2 -1.567 0 0 0 0 0 0 0 +7.859 -9.168 -1.566 0 0 0 0 0 0 0 +7.863 -9.144 -1.563 0 0 0 0 0 0 0 +7.881 -9.107 -1.561 0 0 0 0 0 0 0 +7.912 -9.085 -1.562 0 0 0 0 0 0 0 +7.944 -9.063 -1.562 0 0 0 0 0 0 0 +7.965 -9.031 -1.561 0 0 0 0 0 0 0 +7.991 -9.003 -1.56 0 0 0 0 0 0 0 +8.011 -8.969 -1.558 0 0 0 0 0 0 0 +8.023 -8.953 -1.558 0 0 0 0 0 0 0 +8.044 -8.921 -1.556 0 0 0 0 0 0 0 +8.063 -8.885 -1.554 0 0 0 0 0 0 0 +8.095 -8.864 -1.555 0 0 0 0 0 0 0 +8.116 -8.831 -1.554 0 0 0 0 0 0 0 +8.14 -8.801 -1.553 0 0 0 0 0 0 0 +8.158 -8.766 -1.551 0 0 0 0 0 0 0 +8.172 -8.753 -1.551 0 0 0 0 0 0 0 +8.195 -8.723 -1.55 0 0 0 0 0 0 0 +8.225 -8.7 -1.551 0 0 0 0 0 0 0 +8.251 -8.673 -1.55 0 0 0 0 0 0 0 +8.274 -8.642 -1.55 0 0 0 0 0 0 0 +8.294 -8.609 -1.548 0 0 0 0 0 0 0 +8.309 -8.598 -1.548 0 0 0 0 0 0 0 +8.336 -8.571 -1.548 0 0 0 0 0 0 0 +8.363 -8.545 -1.548 0 0 0 0 0 0 0 +8.379 -8.508 -1.546 0 0 0 0 0 0 0 +8.403 -8.478 -1.545 0 0 0 0 0 0 0 +8.421 -8.444 -1.544 0 0 0 0 0 0 0 +8.453 -8.423 -1.545 0 0 0 0 0 0 0 +8.467 -8.384 -1.542 0 0 0 0 0 0 0 +8.471 -8.362 -1.541 0 0 0 0 0 0 0 +8.513 -8.35 -1.544 0 0 0 0 0 0 0 +8.527 -8.311 -1.541 0 0 0 0 0 0 0 +8.553 -8.284 -1.541 0 0 0 0 0 0 0 +8.581 -8.26 -1.542 0 0 0 0 0 0 0 +8.604 -8.231 -1.541 0 0 0 0 0 0 0 +8.633 -8.206 -1.542 0 0 0 0 0 0 0 +8.64 -8.187 -1.541 0 0 0 0 0 0 0 +8.662 -8.156 -1.54 0 0 0 0 0 0 0 +8.679 -8.121 -1.538 0 0 0 0 0 0 0 +8.71 -8.099 -1.539 0 0 0 0 0 0 0 +8.731 -8.067 -1.538 0 0 0 0 0 0 0 +8.761 -8.044 -1.539 0 0 0 0 0 0 0 +8.777 -8.008 -1.537 0 0 0 0 0 0 0 +8.792 -7.997 -1.538 0 0 0 0 0 0 0 +8.818 -7.969 -1.538 0 0 0 0 0 0 0 +8.837 -7.936 -1.537 0 0 0 0 0 0 0 +8.866 -7.913 -1.538 0 0 0 0 0 0 0 +8.883 -7.878 -1.536 0 0 0 0 0 0 0 +8.914 -7.855 -1.537 0 0 0 0 0 0 0 +8.937 -7.826 -1.537 0 0 0 0 0 0 0 +8.945 -7.808 -1.536 0 0 0 0 0 0 0 +8.978 -7.788 -1.538 0 0 0 0 0 0 0 +9.001 -7.758 -1.538 0 0 0 0 0 0 0 +9.029 -7.732 -1.538 0 0 0 0 0 0 0 +9.044 -7.696 -1.537 0 0 0 0 0 0 0 +9.077 -7.676 -1.538 0 0 0 0 0 0 0 +9.097 -7.668 -1.54 0 0 0 0 0 0 0 +9.128 -7.645 -1.541 0 0 0 0 0 0 0 +9.137 -7.604 -1.538 0 0 0 0 0 0 0 +9.17 -7.583 -1.54 0 0 0 0 0 0 0 +9.182 -7.544 -1.538 0 0 0 0 0 0 0 +9.208 -7.518 -1.538 0 0 0 0 0 0 0 +9.237 -7.492 -1.539 0 0 0 0 0 0 0 +9.252 -7.457 -1.538 0 0 0 0 0 0 0 +9.267 -7.445 -1.538 0 0 0 0 0 0 0 +9.294 -7.418 -1.539 0 0 0 0 0 0 0 +9.323 -7.394 -1.54 0 0 0 0 0 0 0 +9.329 -7.351 -1.537 0 0 0 0 0 0 0 +9.358 -7.327 -1.538 0 0 0 0 0 0 0 +9.383 -7.299 -1.538 0 0 0 0 0 0 0 +9.406 -7.269 -1.538 0 0 0 0 0 0 0 +9.416 -7.253 -1.538 0 0 0 0 0 0 0 +9.426 -7.214 -1.536 0 0 0 0 0 0 0 +9.444 -7.181 -1.535 0 0 0 0 0 0 0 +9.471 -7.154 -1.536 0 0 0 0 0 0 0 +9.5 -7.129 -1.537 0 0 0 0 0 0 0 +9.522 -7.1 -1.537 0 0 0 0 0 0 0 +9.535 -7.063 -1.535 0 0 0 0 0 0 0 +9.536 -7.041 -1.533 0 0 0 0 0 0 0 +9.562 -7.013 -1.534 0 0 0 0 0 0 0 +9.583 -6.983 -1.534 0 0 0 0 0 0 0 +9.594 -6.945 -1.532 0 0 0 0 0 0 0 +9.622 -6.919 -1.533 0 0 0 0 0 0 0 +9.65 -6.893 -1.534 0 0 0 0 0 0 0 +9.664 -6.857 -1.533 0 0 0 0 0 0 0 +9.673 -6.841 -1.532 0 0 0 0 0 0 0 +9.691 -6.808 -1.532 0 0 0 0 0 0 0 +9.719 -6.782 -1.533 0 0 0 0 0 0 0 +9.745 -6.755 -1.534 0 0 0 0 0 0 0 +9.763 -6.722 -1.533 0 0 0 0 0 0 0 +9.786 -6.693 -1.534 0 0 0 0 0 0 0 +9.809 -6.663 -1.534 0 0 0 0 0 0 0 +9.808 -6.64 -1.532 0 0 0 0 0 0 0 +9.845 -6.62 -1.535 0 0 0 0 0 0 0 +9.867 -6.59 -1.535 0 0 0 0 0 0 0 +9.888 -6.559 -1.535 0 0 0 0 0 0 0 +9.912 -6.53 -1.536 0 0 0 0 0 0 0 +9.932 -6.499 -1.536 0 0 0 0 0 0 0 +9.943 -6.461 -1.534 0 0 0 0 0 0 0 +9.966 -6.454 -1.536 0 0 0 0 0 0 0 +9.991 -6.426 -1.537 0 0 0 0 0 0 0 +10.018 -6.399 -1.538 0 0 0 0 0 0 0 +10.036 -6.366 -1.538 0 0 0 0 0 0 0 +10.055 -6.334 -1.538 0 0 0 0 0 0 0 +10.085 -6.308 -1.539 0 0 0 0 0 0 0 +10.104 -6.277 -1.539 0 0 0 0 0 0 0 +10.121 -6.265 -1.541 0 0 0 0 0 0 0 +10.134 -6.229 -1.539 0 0 0 0 0 0 0 +10.15 -6.195 -1.539 0 0 0 0 0 0 0 +10.161 -6.158 -1.537 0 0 0 0 0 0 0 +10.185 -6.129 -1.538 0 0 0 0 0 0 0 +10.215 -6.103 -1.54 0 0 0 0 0 0 0 +10.232 -6.07 -1.54 0 0 0 0 0 0 0 +10.25 -6.059 -1.541 0 0 0 0 0 0 0 +10.254 -6.018 -1.539 0 0 0 0 0 0 0 +10.286 -5.993 -1.541 0 0 0 0 0 0 0 +10.298 -5.957 -1.54 0 0 0 0 0 0 0 +10.317 -5.925 -1.54 0 0 0 0 0 0 0 +10.348 -5.899 -1.542 0 0 0 0 0 0 0 +10.363 -5.865 -1.541 0 0 0 0 0 0 0 +10.382 -5.854 -1.543 0 0 0 0 0 0 0 +10.394 -5.818 -1.542 0 0 0 0 0 0 0 +10.415 -5.787 -1.542 0 0 0 0 0 0 0 +10.442 -5.759 -1.544 0 0 0 0 0 0 0 +10.457 -5.724 -1.543 0 0 0 0 0 0 0 +10.485 -5.697 -1.545 0 0 0 0 0 0 0 +10.491 -5.657 -1.543 0 0 0 0 0 0 0 +10.505 -5.644 -1.544 0 0 0 0 0 0 0 +10.528 -5.614 -1.545 0 0 0 0 0 0 0 +10.538 -5.577 -1.543 0 0 0 0 0 0 0 +10.554 -5.543 -1.543 0 0 0 0 0 0 0 +10.58 -5.514 -1.545 0 0 0 0 0 0 0 +8.808 -4.56 -1.251 0 0 0 0 0 0 0 +8.799 -4.521 -1.247 0 0 0 0 0 0 0 +8.813 -4.511 -1.248 0 0 0 0 0 0 0 +8.773 -4.455 -1.239 0 0 0 0 0 0 0 +10.677 -5.374 -1.548 0 0 0 0 0 0 0 +10.688 -5.338 -1.547 0 0 0 0 0 0 0 +10.703 -5.303 -1.547 0 0 0 0 0 0 0 +10.712 -5.266 -1.545 0 0 0 0 0 0 0 +10.741 -5.238 -1.547 0 0 0 0 0 0 0 +10.759 -5.226 -1.549 0 0 0 0 0 0 0 +10.757 -5.183 -1.546 0 0 0 0 0 0 0 +10.775 -5.15 -1.546 0 0 0 0 0 0 0 +10.789 -5.116 -1.546 0 0 0 0 0 0 0 +10.796 -5.078 -1.545 0 0 0 0 0 0 0 +10.812 -5.044 -1.545 0 0 0 0 0 0 0 +10.834 -5.012 -1.545 0 0 0 0 0 0 0 +10.84 -4.994 -1.545 0 0 0 0 0 0 0 +10.855 -4.96 -1.545 0 0 0 0 0 0 0 +10.86 -4.921 -1.543 0 0 0 0 0 0 0 +10.87 -4.885 -1.543 0 0 0 0 0 0 0 +10.887 -4.851 -1.543 0 0 0 0 0 0 0 +10.886 -4.81 -1.54 0 0 0 0 0 0 0 +10.914 -4.781 -1.542 0 0 0 0 0 0 0 +10.919 -4.763 -1.542 0 0 0 0 0 0 0 +10.92 -4.723 -1.54 0 0 0 0 0 0 0 +10.938 -4.69 -1.54 0 0 0 0 0 0 0 +10.964 -4.66 -1.542 0 0 0 0 0 0 0 +10.977 -4.625 -1.542 0 0 0 0 0 0 0 +10.989 -4.59 -1.541 0 0 0 0 0 0 0 +10.996 -4.552 -1.54 0 0 0 0 0 0 0 +11.013 -4.538 -1.542 0 0 0 0 0 0 0 +11.032 -4.506 -1.543 0 0 0 0 0 0 0 +11.039 -4.468 -1.541 0 0 0 0 0 0 0 +11.047 -4.432 -1.541 0 0 0 0 0 0 0 +11.072 -4.401 -1.542 0 0 0 0 0 0 0 +11.082 -4.365 -1.542 0 0 0 0 0 0 0 +11.091 -4.328 -1.541 0 0 0 0 0 0 0 +11.097 -4.311 -1.541 0 0 0 0 0 0 0 +11.12 -4.279 -1.542 0 0 0 0 0 0 0 +11.135 -4.245 -1.543 0 0 0 0 0 0 0 +11.141 -4.207 -1.541 0 0 0 0 0 0 0 +11.162 -4.175 -1.543 0 0 0 0 0 0 0 +11.18 -4.142 -1.543 0 0 0 0 0 0 0 +11.191 -4.106 -1.543 0 0 0 0 0 0 0 +11.211 -4.093 -1.545 0 0 0 0 0 0 0 +11.22 -4.057 -1.545 0 0 0 0 0 0 0 +11.223 -4.018 -1.543 0 0 0 0 0 0 0 +11.251 -3.988 -1.545 0 0 0 0 0 0 0 +11.261 -3.952 -1.545 0 0 0 0 0 0 0 +11.272 -3.916 -1.545 0 0 0 0 0 0 0 +11.31 -3.889 -1.549 0 0 0 0 0 0 0 +11.315 -3.871 -1.549 0 0 0 0 0 0 0 +11.314 -3.831 -1.547 0 0 0 0 0 0 0 +11.341 -3.8 -1.549 0 0 0 0 0 0 0 +11.349 -3.764 -1.548 0 0 0 0 0 0 0 +11.353 -3.725 -1.547 0 0 0 0 0 0 0 +11.37 -3.692 -1.548 0 0 0 0 0 0 0 +11.372 -3.653 -1.547 0 0 0 0 0 0 0 +11.374 -3.634 -1.546 0 0 0 0 0 0 0 +11.38 -3.596 -1.545 0 0 0 0 0 0 0 +11.386 -3.559 -1.544 0 0 0 0 0 0 0 +11.395 -3.522 -1.544 0 0 0 0 0 0 0 +11.395 -3.483 -1.542 0 0 0 0 0 0 0 +11.413 -3.45 -1.543 0 0 0 0 0 0 0 +11.41 -3.41 -1.541 0 0 0 0 0 0 0 +11.402 -3.368 -1.539 0 0 0 0 0 0 0 +11.415 -3.353 -1.54 0 0 0 0 0 0 0 +11.443 -3.322 -1.542 0 0 0 0 0 0 0 +11.453 -3.286 -1.542 0 0 0 0 0 0 0 +11.467 -3.251 -1.543 0 0 0 0 0 0 0 +11.439 -3.204 -1.537 0 0 0 0 0 0 0 +11.438 -3.165 -1.535 0 0 0 0 0 0 0 +11.495 -3.142 -1.543 0 0 0 0 0 0 0 +11.504 -3.125 -1.543 0 0 0 0 0 0 0 +11.51 -3.088 -1.543 0 0 0 0 0 0 0 +11.525 -3.053 -1.543 0 0 0 0 0 0 0 +11.533 -3.016 -1.543 0 0 0 0 0 0 0 +11.544 -2.981 -1.543 0 0 0 0 0 0 0 +11.559 -2.946 -1.544 0 0 0 0 0 0 0 +11.57 -2.929 -1.545 0 0 0 0 0 0 0 +11.569 -2.89 -1.544 0 0 0 0 0 0 0 +11.574 -2.853 -1.543 0 0 0 0 0 0 0 +11.606 -2.822 -1.547 0 0 0 0 0 0 0 +7.35 -1.773 -0.906 0 0 0 0 0 0 0 +7.337 -1.745 -0.903 0 0 0 0 0 0 0 +7.325 -1.718 -0.901 0 0 0 0 0 0 0 +7.309 -1.69 -0.898 0 0 0 0 0 0 0 +7.329 -1.683 -0.9 0 0 0 0 0 0 0 +7.359 -1.665 -0.904 0 0 0 0 0 0 0 +11.677 -2.588 -1.549 0 0 0 0 0 0 0 +7.424 -1.631 -0.912 0 0 0 0 0 0 0 +7.39 -1.599 -0.906 0 0 0 0 0 0 0 +7.395 -1.576 -0.906 0 0 0 0 0 0 0 +7.396 -1.552 -0.906 0 0 0 0 0 0 0 +7.444 -1.525 -0.912 0 0 0 0 0 0 0 +7.447 -1.501 -0.912 0 0 0 0 0 0 0 +7.271 -1.443 -0.885 0 0 0 0 0 0 0 +7.283 -1.421 -0.886 0 0 0 0 0 0 0 +7.286 -1.398 -0.886 0 0 0 0 0 0 0 +7.298 -1.377 -0.887 0 0 0 0 0 0 0 +7.306 -1.366 -0.888 0 0 0 0 0 0 0 +7.341 -1.349 -0.892 0 0 0 0 0 0 0 +7.353 -1.327 -0.893 0 0 0 0 0 0 0 +7.383 -1.309 -0.897 0 0 0 0 0 0 0 +7.401 -1.288 -0.899 0 0 0 0 0 0 0 +7.434 -1.269 -0.903 0 0 0 0 0 0 0 +7.453 -1.249 -0.906 0 0 0 0 0 0 0 +7.518 -1.247 -0.915 0 0 0 0 0 0 0 +7.567 -1.231 -0.922 0 0 0 0 0 0 0 +11.931 -1.887 -1.566 0 0 0 0 0 0 0 +11.927 -1.848 -1.565 0 0 0 0 0 0 0 +11.931 -1.81 -1.565 0 0 0 0 0 0 0 +11.927 -1.771 -1.563 0 0 0 0 0 0 0 +11.891 -1.728 -1.557 0 0 0 0 0 0 0 +11.949 -1.717 -1.565 0 0 0 0 0 0 0 +11.991 -1.646 -1.57 0 0 0 0 0 0 0 +11.984 -1.607 -1.568 0 0 0 0 0 0 0 +11.999 -1.57 -1.569 0 0 0 0 0 0 0 +7.97 -1.026 -0.976 0 0 0 0 0 0 0 +12.034 -1.498 -1.573 0 0 0 0 0 0 0 +12.034 -1.479 -1.573 0 0 0 0 0 0 0 +12.021 -1.439 -1.57 0 0 0 0 0 0 0 +12.03 -1.402 -1.571 0 0 0 0 0 0 0 +12.026 -1.363 -1.57 0 0 0 0 0 0 0 +12.034 -1.326 -1.57 0 0 0 0 0 0 0 +11.934 -1.277 -1.555 0 0 0 0 0 0 0 +11.944 -1.24 -1.556 0 0 0 0 0 0 0 +11.912 -1.218 -1.551 0 0 0 0 0 0 0 +11.928 -1.181 -1.553 0 0 0 0 0 0 0 +11.116 -1.068 -1.433 0 0 0 0 0 0 0 +11.133 -1.034 -1.435 0 0 0 0 0 0 0 +12.029 -1.077 -1.566 0 0 0 0 0 0 0 +12.027 -1.039 -1.565 0 0 0 0 0 0 0 +12.004 -0.999 -1.561 0 0 0 0 0 0 0 +12.006 -0.98 -1.561 0 0 0 0 0 0 0 +12.007 -0.942 -1.561 0 0 0 0 0 0 0 +12.004 -0.904 -1.56 0 0 0 0 0 0 0 +12.001 -0.866 -1.559 0 0 0 0 0 0 0 +12.029 -0.83 -1.563 0 0 0 0 0 0 0 +11.99 -0.789 -1.557 0 0 0 0 0 0 0 +11.941 -0.749 -1.55 0 0 0 0 0 0 0 +11.924 -0.729 -1.547 0 0 0 0 0 0 0 +11.927 -0.691 -1.547 0 0 0 0 0 0 0 +11.949 -0.655 -1.55 0 0 0 0 0 0 0 +11.974 -0.618 -1.553 0 0 0 0 0 0 0 +11.948 -0.58 -1.549 0 0 0 0 0 0 0 +11.978 -0.543 -1.553 0 0 0 0 0 0 0 +12.009 -0.507 -1.558 0 0 0 0 0 0 0 +12.034 -0.489 -1.561 0 0 0 0 0 0 0 +12.041 -0.451 -1.562 0 0 0 0 0 0 0 +12.054 -0.414 -1.564 0 0 0 0 0 0 0 +12.036 -0.375 -1.561 0 0 0 0 0 0 0 +12.086 -0.339 -1.568 0 0 0 0 0 0 0 +12.087 -0.301 -1.568 0 0 0 0 0 0 0 +12.098 -0.263 -1.569 0 0 0 0 0 0 0 +12.099 -0.244 -1.569 0 0 0 0 0 0 0 +12.21 -0.208 -1.586 0 0 0 0 0 0 0 +12.221 -0.169 -1.587 0 0 0 0 0 0 0 +12.219 -0.131 -1.587 0 0 0 0 0 0 0 +12.233 -0.093 -1.589 0 0 0 0 0 0 0 +12.237 -0.054 -1.589 0 0 0 0 0 0 0 +12.242 -0.016 -1.59 0 0 0 0 0 0 0 +12.068 0.015 -1.651 0 0 0 0 0 0 0 +12.112 0.053 -1.658 0 0 0 0 0 0 0 +12.195 0.072 -1.671 0 0 0 0 0 0 0 +12.189 0.11 -1.67 0 0 0 0 0 0 0 +12.21 0.149 -1.673 0 0 0 0 0 0 0 +12.302 0.188 -1.687 0 0 0 0 0 0 0 +12.313 0.227 -1.689 0 0 0 0 0 0 0 +12.328 0.266 -1.692 0 0 0 0 0 0 0 +12.276 0.304 -1.684 0 0 0 0 0 0 0 +12.335 0.325 -1.693 0 0 0 0 0 0 0 +12.383 0.365 -1.7 0 0 0 0 0 0 0 +12.471 0.406 -1.714 0 0 0 0 0 0 0 +12.555 0.448 -1.727 0 0 0 0 0 0 0 +12.539 0.487 -1.725 0 0 0 0 0 0 0 +12.514 0.526 -1.721 0 0 0 0 0 0 0 +12.518 0.565 -1.722 0 0 0 0 0 0 0 +12.523 0.585 -1.723 0 0 0 0 0 0 0 +12.494 0.623 -1.719 0 0 0 0 0 0 0 +12.474 0.662 -1.716 0 0 0 0 0 0 0 +12.442 0.699 -1.712 0 0 0 0 0 0 0 +12.468 0.74 -1.716 0 0 0 0 0 0 0 +12.481 0.78 -1.718 0 0 0 0 0 0 0 +12.48 0.819 -1.719 0 0 0 0 0 0 0 +12.469 0.838 -1.717 0 0 0 0 0 0 0 +12.459 0.877 -1.716 0 0 0 0 0 0 0 +12.45 0.916 -1.715 0 0 0 0 0 0 0 +12.443 0.954 -1.714 0 0 0 0 0 0 0 +12.434 0.993 -1.713 0 0 0 0 0 0 0 +12.429 1.032 -1.713 0 0 0 0 0 0 0 +12.412 1.07 -1.711 0 0 0 0 0 0 0 +12.408 1.109 -1.711 0 0 0 0 0 0 0 +12.401 1.128 -1.71 0 0 0 0 0 0 0 +12.395 1.166 -1.71 0 0 0 0 0 0 0 +12.397 1.206 -1.711 0 0 0 0 0 0 0 +12.386 1.244 -1.71 0 0 0 0 0 0 0 +12.37 1.282 -1.708 0 0 0 0 0 0 0 +12.366 1.321 -1.708 0 0 0 0 0 0 0 +12.346 1.358 -1.705 0 0 0 0 0 0 0 +12.359 1.379 -1.708 0 0 0 0 0 0 0 +12.363 1.419 -1.709 0 0 0 0 0 0 0 +12.347 1.456 -1.707 0 0 0 0 0 0 0 +12.332 1.494 -1.706 0 0 0 0 0 0 0 +12.327 1.532 -1.706 0 0 0 0 0 0 0 +12.328 1.572 -1.706 0 0 0 0 0 0 0 +12.323 1.611 -1.706 0 0 0 0 0 0 0 +12.311 1.629 -1.705 0 0 0 0 0 0 0 +12.314 1.668 -1.706 0 0 0 0 0 0 0 +12.293 1.705 -1.704 0 0 0 0 0 0 0 +12.272 1.741 -1.701 0 0 0 0 0 0 0 +12.286 1.783 -1.704 0 0 0 0 0 0 0 +12.27 1.82 -1.703 0 0 0 0 0 0 0 +12.255 1.857 -1.701 0 0 0 0 0 0 0 +12.254 1.877 -1.702 0 0 0 0 0 0 0 +12.246 1.915 -1.701 0 0 0 0 0 0 0 +12.238 1.953 -1.701 0 0 0 0 0 0 0 +12.224 1.99 -1.7 0 0 0 0 0 0 0 +12.221 2.029 -1.7 0 0 0 0 0 0 0 +12.211 2.067 -1.7 0 0 0 0 0 0 0 +12.195 2.104 -1.698 0 0 0 0 0 0 0 +12.191 2.123 -1.698 0 0 0 0 0 0 0 +12.171 2.159 -1.696 0 0 0 0 0 0 0 +12.16 2.196 -1.696 0 0 0 0 0 0 0 +12.155 2.235 -1.696 0 0 0 0 0 0 0 +12.15 2.273 -1.696 0 0 0 0 0 0 0 +12.139 2.311 -1.696 0 0 0 0 0 0 0 +12.134 2.349 -1.696 0 0 0 0 0 0 0 +12.116 2.366 -1.694 0 0 0 0 0 0 0 +12.111 2.404 -1.694 0 0 0 0 0 0 0 +12.096 2.44 -1.693 0 0 0 0 0 0 0 +12.086 2.478 -1.693 0 0 0 0 0 0 0 +12.084 2.517 -1.693 0 0 0 0 0 0 0 +12.066 2.553 -1.692 0 0 0 0 0 0 0 +12.058 2.591 -1.692 0 0 0 0 0 0 0 +12.06 2.611 -1.693 0 0 0 0 0 0 0 +12.048 2.648 -1.692 0 0 0 0 0 0 0 +12.034 2.685 -1.691 0 0 0 0 0 0 0 +12.017 2.721 -1.69 0 0 0 0 0 0 0 +12.009 2.759 -1.69 0 0 0 0 0 0 0 +11.998 2.796 -1.69 0 0 0 0 0 0 0 +11.98 2.831 -1.688 0 0 0 0 0 0 0 +12.004 2.857 -1.693 0 0 0 0 0 0 0 +11.983 2.892 -1.691 0 0 0 0 0 0 0 +11.976 2.93 -1.691 0 0 0 0 0 0 0 +11.977 2.97 -1.693 0 0 0 0 0 0 0 +11.95 3.003 -1.69 0 0 0 0 0 0 0 +11.933 3.039 -1.689 0 0 0 0 0 0 0 +11.933 3.079 -1.69 0 0 0 0 0 0 0 +11.922 3.096 -1.69 0 0 0 0 0 0 0 +11.907 3.132 -1.689 0 0 0 0 0 0 0 +11.897 3.169 -1.689 0 0 0 0 0 0 0 +11.887 3.207 -1.689 0 0 0 0 0 0 0 +11.886 3.247 -1.69 0 0 0 0 0 0 0 +11.87 3.282 -1.689 0 0 0 0 0 0 0 +11.871 3.323 -1.691 0 0 0 0 0 0 0 +11.883 3.346 -1.694 0 0 0 0 0 0 0 +11.867 3.382 -1.693 0 0 0 0 0 0 0 +11.854 3.419 -1.693 0 0 0 0 0 0 0 +11.826 3.451 -1.69 0 0 0 0 0 0 0 +11.81 3.486 -1.689 0 0 0 0 0 0 0 +11.81 3.527 -1.691 0 0 0 0 0 0 0 +11.793 3.562 -1.69 0 0 0 0 0 0 0 +11.799 3.584 -1.692 0 0 0 0 0 0 0 +11.776 3.618 -1.69 0 0 0 0 0 0 0 +11.774 3.658 -1.691 0 0 0 0 0 0 0 +11.751 3.691 -1.69 0 0 0 0 0 0 0 +11.764 3.736 -1.693 0 0 0 0 0 0 0 +11.747 3.771 -1.693 0 0 0 0 0 0 0 +11.741 3.81 -1.693 0 0 0 0 0 0 0 +11.738 3.829 -1.694 0 0 0 0 0 0 0 +11.715 3.862 -1.692 0 0 0 0 0 0 0 +11.703 3.899 -1.692 0 0 0 0 0 0 0 +11.722 3.947 -1.697 0 0 0 0 0 0 0 +11.706 3.982 -1.697 0 0 0 0 0 0 0 +11.692 4.018 -1.696 0 0 0 0 0 0 0 +11.687 4.058 -1.698 0 0 0 0 0 0 0 +11.681 4.097 -1.699 0 0 0 0 0 0 0 +11.669 4.113 -1.698 0 0 0 0 0 0 0 +11.671 4.155 -1.7 0 0 0 0 0 0 0 +11.656 4.191 -1.7 0 0 0 0 0 0 0 +11.641 4.227 -1.7 0 0 0 0 0 0 0 +11.633 4.266 -1.701 0 0 0 0 0 0 0 +11.637 4.308 -1.703 0 0 0 0 0 0 0 +11.609 4.319 -1.7 0 0 0 0 0 0 0 +11.618 4.364 -1.704 0 0 0 0 0 0 0 +11.593 4.396 -1.702 0 0 0 0 0 0 0 +11.592 4.437 -1.704 0 0 0 0 0 0 0 +11.569 4.47 -1.703 0 0 0 0 0 0 0 +11.575 4.514 -1.706 0 0 0 0 0 0 0 +11.553 4.548 -1.705 0 0 0 0 0 0 0 +11.554 4.569 -1.706 0 0 0 0 0 0 0 +11.552 4.61 -1.708 0 0 0 0 0 0 0 +11.523 4.641 -1.706 0 0 0 0 0 0 0 +11.538 4.689 -1.71 0 0 0 0 0 0 0 +11.499 4.715 -1.706 0 0 0 0 0 0 0 +11.506 4.76 -1.71 0 0 0 0 0 0 0 +11.489 4.796 -1.71 0 0 0 0 0 0 0 +11.489 4.817 -1.711 0 0 0 0 0 0 0 +11.479 4.855 -1.712 0 0 0 0 0 0 0 +11.473 4.895 -1.713 0 0 0 0 0 0 0 +11.45 4.928 -1.712 0 0 0 0 0 0 0 +11.435 4.964 -1.712 0 0 0 0 0 0 0 +11.421 5.001 -1.713 0 0 0 0 0 0 0 +11.42 5.043 -1.715 0 0 0 0 0 0 0 +11.415 5.083 -1.717 0 0 0 0 0 0 0 +11.408 5.102 -1.717 0 0 0 0 0 0 0 +11.389 5.136 -1.716 0 0 0 0 0 0 0 +11.389 5.179 -1.719 0 0 0 0 0 0 0 +11.374 5.216 -1.72 0 0 0 0 0 0 0 +11.363 5.254 -1.72 0 0 0 0 0 0 0 +11.354 5.293 -1.722 0 0 0 0 0 0 0 +11.334 5.327 -1.721 0 0 0 0 0 0 0 +11.322 5.343 -1.72 0 0 0 0 0 0 0 +11.315 5.384 -1.722 0 0 0 0 0 0 0 +11.307 5.424 -1.724 0 0 0 0 0 0 0 +11.285 5.457 -1.723 0 0 0 0 0 0 0 +11.264 5.49 -1.722 0 0 0 0 0 0 0 +11.256 5.53 -1.724 0 0 0 0 0 0 0 +11.238 5.543 -1.722 0 0 0 0 0 0 0 +11.228 5.582 -1.723 0 0 0 0 0 0 0 +11.214 5.619 -1.724 0 0 0 0 0 0 0 +11.208 5.661 -1.726 0 0 0 0 0 0 0 +11.196 5.698 -1.727 0 0 0 0 0 0 0 +11.176 5.733 -1.727 0 0 0 0 0 0 0 +11.163 5.77 -1.728 0 0 0 0 0 0 0 +11.163 5.793 -1.729 0 0 0 0 0 0 0 +11.154 5.832 -1.731 0 0 0 0 0 0 0 +11.14 5.87 -1.732 0 0 0 0 0 0 0 +11.129 5.909 -1.733 0 0 0 0 0 0 0 +11.112 5.944 -1.733 0 0 0 0 0 0 0 +11.097 5.981 -1.734 0 0 0 0 0 0 0 +11.087 6.021 -1.735 0 0 0 0 0 0 0 +11.081 6.04 -1.736 0 0 0 0 0 0 0 +11.07 6.08 -1.737 0 0 0 0 0 0 0 +11.062 6.12 -1.739 0 0 0 0 0 0 0 +11.07 6.17 -1.744 0 0 0 0 0 0 0 +11.061 6.211 -1.746 0 0 0 0 0 0 0 +10.997 6.22 -1.738 0 0 0 0 0 0 0 +10.948 6.238 -1.733 0 0 0 0 0 0 0 +10.237 5.856 -1.609 0 0 0 0 0 0 0 +10.2 5.878 -1.606 0 0 0 0 0 0 0 +10.176 5.907 -1.605 0 0 0 0 0 0 0 +10.147 5.933 -1.603 0 0 0 0 0 0 0 +10.108 5.952 -1.6 0 0 0 0 0 0 0 +10.03 5.949 -1.589 0 0 0 0 0 0 0 +9.999 5.973 -1.587 0 0 0 0 0 0 0 +9.976 5.981 -1.584 0 0 0 0 0 0 0 +9.955 6.011 -1.584 0 0 0 0 0 0 0 +9.935 6.042 -1.584 0 0 0 0 0 0 0 +9.926 6.079 -1.586 0 0 0 0 0 0 0 +9.922 6.119 -1.588 0 0 0 0 0 0 0 +9.93 6.167 -1.593 0 0 0 0 0 0 0 +9.922 6.206 -1.595 0 0 0 0 0 0 0 +9.934 6.257 -1.601 0 0 0 0 0 0 0 +9.951 6.289 -1.606 0 0 0 0 0 0 0 +9.945 6.329 -1.608 0 0 0 0 0 0 0 +9.943 6.372 -1.612 0 0 0 0 0 0 0 +9.948 6.419 -1.616 0 0 0 0 0 0 0 +9.953 6.466 -1.621 0 0 0 0 0 0 0 +9.947 6.507 -1.623 0 0 0 0 0 0 0 +9.918 6.533 -1.622 0 0 0 0 0 0 0 +9.925 6.559 -1.625 0 0 0 0 0 0 0 +9.909 6.594 -1.626 0 0 0 0 0 0 0 +9.859 6.605 -1.62 0 0 0 0 0 0 0 +9.857 6.649 -1.624 0 0 0 0 0 0 0 +9.855 6.693 -1.627 0 0 0 0 0 0 0 +9.833 6.723 -1.627 0 0 0 0 0 0 0 +9.823 6.739 -1.627 0 0 0 0 0 0 0 +9.818 6.781 -1.63 0 0 0 0 0 0 0 +9.795 6.811 -1.63 0 0 0 0 0 0 0 +9.764 6.835 -1.628 0 0 0 0 0 0 0 +9.755 6.874 -1.631 0 0 0 0 0 0 0 +9.727 6.9 -1.63 0 0 0 0 0 0 0 +9.717 6.939 -1.632 0 0 0 0 0 0 0 +9.712 6.959 -1.633 0 0 0 0 0 0 0 +9.674 6.978 -1.63 0 0 0 0 0 0 0 +9.664 7.016 -1.632 0 0 0 0 0 0 0 +9.646 7.05 -1.633 0 0 0 0 0 0 0 +9.626 7.081 -1.633 0 0 0 0 0 0 0 +9.606 7.114 -1.634 0 0 0 0 0 0 0 +9.584 7.144 -1.634 0 0 0 0 0 0 0 +9.571 7.158 -1.633 0 0 0 0 0 0 0 +9.565 7.2 -1.637 0 0 0 0 0 0 0 +9.543 7.231 -1.637 0 0 0 0 0 0 0 +9.522 7.262 -1.637 0 0 0 0 0 0 0 +9.514 7.303 -1.64 0 0 0 0 0 0 0 +9.505 7.344 -1.643 0 0 0 0 0 0 0 +9.48 7.372 -1.642 0 0 0 0 0 0 0 +9.474 7.415 -1.646 0 0 0 0 0 0 0 +9.476 7.441 -1.648 0 0 0 0 0 0 0 +9.465 7.481 -1.651 0 0 0 0 0 0 0 +9.436 7.505 -1.65 0 0 0 0 0 0 0 +9.43 7.55 -1.653 0 0 0 0 0 0 0 +9.424 7.593 -1.657 0 0 0 0 0 0 0 +6.751 5.484 -1.135 0 0 0 0 0 0 0 +6.718 5.493 -1.132 0 0 0 0 0 0 0 +6.713 5.506 -1.132 0 0 0 0 0 0 0 +6.68 5.514 -1.129 0 0 0 0 0 0 0 +6.692 5.559 -1.135 0 0 0 0 0 0 0 +6.691 5.594 -1.139 0 0 0 0 0 0 0 +9.291 7.804 -1.661 0 0 0 0 0 0 0 +9.277 7.842 -1.663 0 0 0 0 0 0 0 +9.272 7.888 -1.667 0 0 0 0 0 0 0 +9.25 7.895 -1.666 0 0 0 0 0 0 0 +9.232 7.929 -1.667 0 0 0 0 0 0 0 +9.21 7.96 -1.667 0 0 0 0 0 0 0 +9.182 7.987 -1.667 0 0 0 0 0 0 0 +9.161 8.019 -1.668 0 0 0 0 0 0 0 +9.148 8.059 -1.67 0 0 0 0 0 0 0 +9.122 8.087 -1.67 0 0 0 0 0 0 0 +9.112 8.104 -1.671 0 0 0 0 0 0 0 +9.09 8.136 -1.671 0 0 0 0 0 0 0 +9.055 8.156 -1.67 0 0 0 0 0 0 0 +9.031 8.186 -1.67 0 0 0 0 0 0 0 +9.014 8.222 -1.672 0 0 0 0 0 0 0 +8.997 8.258 -1.673 0 0 0 0 0 0 0 +8.984 8.299 -1.676 0 0 0 0 0 0 0 +8.968 8.31 -1.676 0 0 0 0 0 0 0 +8.931 8.327 -1.673 0 0 0 0 0 0 0 +8.923 8.373 -1.677 0 0 0 0 0 0 0 +8.9 8.404 -1.678 0 0 0 0 0 0 0 +8.869 8.428 -1.677 0 0 0 0 0 0 0 +8.852 8.465 -1.679 0 0 0 0 0 0 0 +8.824 8.491 -1.679 0 0 0 0 0 0 0 +8.805 8.5 -1.677 0 0 0 0 0 0 0 +8.794 8.542 -1.681 0 0 0 0 0 0 0 +8.78 8.582 -1.683 0 0 0 0 0 0 0 +8.742 8.599 -1.681 0 0 0 0 0 0 0 +8.734 8.646 -1.685 0 0 0 0 0 0 0 +8.703 8.669 -1.684 0 0 0 0 0 0 0 +8.679 8.699 -1.685 0 0 0 0 0 0 0 +8.672 8.72 -1.686 0 0 0 0 0 0 0 +8.649 8.751 -1.687 0 0 0 0 0 0 0 +8.627 8.784 -1.689 0 0 0 0 0 0 0 +8.605 8.817 -1.69 0 0 0 0 0 0 0 +8.582 8.849 -1.691 0 0 0 0 0 0 0 +8.556 8.878 -1.691 0 0 0 0 0 0 0 +8.527 8.903 -1.691 0 0 0 0 0 0 0 +8.521 8.925 -1.693 0 0 0 0 0 0 0 +8.491 8.95 -1.693 0 0 0 0 0 0 0 +8.469 8.983 -1.694 0 0 0 0 0 0 0 +8.44 9.009 -1.694 0 0 0 0 0 0 0 +8.416 9.04 -1.695 0 0 0 0 0 0 0 +8.394 9.074 -1.696 0 0 0 0 0 0 0 +8.371 9.106 -1.697 0 0 0 0 0 0 0 +8.355 9.117 -1.697 0 0 0 0 0 0 0 +8.325 9.142 -1.697 0 0 0 0 0 0 0 +8.307 9.18 -1.699 0 0 0 0 0 0 0 +8.274 9.202 -1.698 0 0 0 0 0 0 0 +8.255 9.238 -1.7 0 0 0 0 0 0 0 +8.239 9.279 -1.703 0 0 0 0 0 0 0 +8.199 9.293 -1.701 0 0 0 0 0 0 0 +8.187 9.308 -1.702 0 0 0 0 0 0 0 +8.166 9.343 -1.703 0 0 0 0 0 0 0 +8.148 9.382 -1.706 0 0 0 0 0 0 0 +8.122 9.412 -1.707 0 0 0 0 0 0 0 +8.095 9.44 -1.708 0 0 0 0 0 0 0 +8.07 9.47 -1.709 0 0 0 0 0 0 0 +8.049 9.506 -1.711 0 0 0 0 0 0 0 +8.012 9.524 -1.709 0 0 0 0 0 0 0 +8.006 9.547 -1.711 0 0 0 0 0 0 0 +7.984 9.581 -1.713 0 0 0 0 0 0 0 +7.949 9.6 -1.712 0 0 0 0 0 0 0 +7.927 9.636 -1.714 0 0 0 0 0 0 0 +7.891 9.653 -1.713 0 0 0 0 0 0 0 +7.862 9.679 -1.713 0 0 0 0 0 0 0 +7.836 9.71 -1.714 0 0 0 0 0 0 0 +7.831 9.735 -1.716 0 0 0 0 0 0 0 +7.799 9.758 -1.716 0 0 0 0 0 0 0 +7.767 9.781 -1.716 0 0 0 0 0 0 0 +7.745 9.816 -1.718 0 0 0 0 0 0 0 +7.716 9.843 -1.719 0 0 0 0 0 0 0 +7.678 9.858 -1.717 0 0 0 0 0 0 0 +7.671 9.881 -1.719 0 0 0 0 0 0 0 +7.64 9.905 -1.719 0 0 0 0 0 0 0 +7.603 9.921 -1.717 0 0 0 0 0 0 0 +7.579 9.954 -1.719 0 0 0 0 0 0 0 +7.546 9.977 -1.719 0 0 0 0 0 0 0 +7.521 10.008 -1.72 0 0 0 0 0 0 0 +7.48 10.019 -1.718 0 0 0 0 0 0 0 +7.474 10.043 -1.72 0 0 0 0 0 0 0 +7.442 10.067 -1.72 0 0 0 0 0 0 0 +7.416 10.098 -1.722 0 0 0 0 0 0 0 +7.381 10.117 -1.721 0 0 0 0 0 0 0 +7.353 10.145 -1.722 0 0 0 0 0 0 0 +7.324 10.172 -1.723 0 0 0 0 0 0 0 +7.292 10.195 -1.723 0 0 0 0 0 0 0 +7.261 10.22 -1.723 0 0 0 0 0 0 0 +7.253 10.243 -1.725 0 0 0 0 0 0 0 +7.214 10.256 -1.723 0 0 0 0 0 0 0 +7.182 10.278 -1.723 0 0 0 0 0 0 0 +7.155 10.309 -1.725 0 0 0 0 0 0 0 +7.11 10.312 -1.721 0 0 0 0 0 0 0 +7.086 10.347 -1.724 0 0 0 0 0 0 0 +7.048 10.361 -1.722 0 0 0 0 0 0 0 +7.033 10.374 -1.723 0 0 0 0 0 0 0 +6.995 10.388 -1.721 0 0 0 0 0 0 0 +6.972 10.424 -1.724 0 0 0 0 0 0 0 +6.928 10.43 -1.721 0 0 0 0 0 0 0 +6.904 10.465 -1.723 0 0 0 0 0 0 0 +6.867 10.48 -1.722 0 0 0 0 0 0 0 +6.827 10.491 -1.72 0 0 0 0 0 0 0 +6.79 10.506 -1.719 0 0 0 0 0 0 0 +6.77 10.512 -1.718 0 0 0 0 0 0 0 +6.739 10.536 -1.719 0 0 0 0 0 0 0 +6.703 10.552 -1.718 0 0 0 0 0 0 0 +6.673 10.578 -1.719 0 0 0 0 0 0 0 +6.639 10.598 -1.718 0 0 0 0 0 0 0 +6.604 10.617 -1.718 0 0 0 0 0 0 0 +6.589 10.629 -1.718 0 0 0 0 0 0 0 +6.559 10.656 -1.72 0 0 0 0 0 0 0 +6.527 10.678 -1.72 0 0 0 0 0 0 0 +6.513 10.731 -1.726 0 0 0 0 0 0 0 +6.505 10.794 -1.733 0 0 0 0 0 0 0 +6.504 10.87 -1.743 0 0 0 0 0 0 0 +6.515 10.965 -1.756 0 0 0 0 0 0 0 +6.526 11.062 -1.77 0 0 0 0 0 0 0 +6.548 11.139 -1.782 0 0 0 0 0 0 0 +6.553 11.227 -1.794 0 0 0 0 0 0 0 +6.562 11.325 -1.808 0 0 0 0 0 0 0 +6.562 11.407 -1.819 0 0 0 0 0 0 0 +6.574 11.511 -1.833 0 0 0 0 0 0 0 +6.58 11.606 -1.846 0 0 0 0 0 0 0 +6.588 11.704 -1.86 0 0 0 0 0 0 0 +6.607 11.782 -1.872 0 0 0 0 0 0 0 +6.567 11.797 -1.871 0 0 0 0 0 0 0 +6.535 11.826 -1.872 0 0 0 0 0 0 0 +6.503 11.857 -1.874 0 0 0 0 0 0 0 +6.462 11.871 -1.873 0 0 0 0 0 0 0 +6.429 11.898 -1.874 0 0 0 0 0 0 0 +6.392 11.92 -1.875 0 0 0 0 0 0 0 +6.372 11.928 -1.874 0 0 0 0 0 0 0 +6.334 11.946 -1.874 0 0 0 0 0 0 0 +6.302 11.976 -1.876 0 0 0 0 0 0 0 +6.261 11.989 -1.875 0 0 0 0 0 0 0 +6.226 12.014 -1.876 0 0 0 0 0 0 0 +6.19 12.037 -1.876 0 0 0 0 0 0 0 +6.147 12.048 -1.875 0 0 0 0 0 0 0 +6.127 12.054 -1.874 0 0 0 0 0 0 0 +6.085 12.066 -1.873 0 0 0 0 0 0 0 +6.046 12.081 -1.872 0 0 0 0 0 0 0 +6.005 12.095 -1.871 0 0 0 0 0 0 0 +5.97 12.121 -1.872 0 0 0 0 0 0 0 +5.921 12.117 -1.869 0 0 0 0 0 0 0 +5.876 12.121 -1.866 0 0 0 0 0 0 0 +5.856 12.128 -1.866 0 0 0 0 0 0 0 +5.819 12.148 -1.866 0 0 0 0 0 0 0 +5.772 12.149 -1.863 0 0 0 0 0 0 0 +5.736 12.172 -1.864 0 0 0 0 0 0 0 +5.701 12.196 -1.865 0 0 0 0 0 0 0 +5.655 12.197 -1.862 0 0 0 0 0 0 0 +5.608 12.197 -1.859 0 0 0 0 0 0 0 +5.58 12.238 -1.863 0 0 0 0 0 0 0 +5.553 12.229 -1.86 0 0 0 0 0 0 0 +5.517 12.252 -1.861 0 0 0 0 0 0 0 +5.475 12.262 -1.86 0 0 0 0 0 0 0 +5.431 12.266 -1.858 0 0 0 0 0 0 0 +5.391 12.279 -1.857 0 0 0 0 0 0 0 +5.35 12.291 -1.856 0 0 0 0 0 0 0 +5.306 12.295 -1.854 0 0 0 0 0 0 0 +5.279 12.287 -1.851 0 0 0 0 0 0 0 +5.242 12.305 -1.852 0 0 0 0 0 0 0 +5.2 12.314 -1.85 0 0 0 0 0 0 0 +5.153 12.313 -1.847 0 0 0 0 0 0 0 +5.115 12.33 -1.848 0 0 0 0 0 0 0 +5.067 12.323 -1.844 0 0 0 0 0 0 0 +5.03 12.344 -1.845 0 0 0 0 0 0 0 +5.015 12.361 -1.846 0 0 0 0 0 0 0 +4.964 12.347 -1.841 0 0 0 0 0 0 0 +4.921 12.352 -1.839 0 0 0 0 0 0 0 +4.885 12.375 -1.841 0 0 0 0 0 0 0 +4.839 12.372 -1.838 0 0 0 0 0 0 0 +4.798 12.381 -1.837 0 0 0 0 0 0 0 +4.765 12.411 -1.839 0 0 0 0 0 0 0 +4.728 12.374 -1.832 0 0 0 0 0 0 0 +4.688 12.387 -1.832 0 0 0 0 0 0 0 +4.635 12.363 -1.825 0 0 0 0 0 0 0 +4.601 12.39 -1.827 0 0 0 0 0 0 0 +4.559 12.397 -1.826 0 0 0 0 0 0 0 +4.52 12.412 -1.826 0 0 0 0 0 0 0 +4.484 12.435 -1.828 0 0 0 0 0 0 0 +4.46 12.427 -1.825 0 0 0 0 0 0 0 +4.425 12.454 -1.827 0 0 0 0 0 0 0 +4.39 12.479 -1.829 0 0 0 0 0 0 0 +4.353 12.5 -1.83 0 0 0 0 0 0 0 +4.317 12.522 -1.832 0 0 0 0 0 0 0 +4.28 12.542 -1.833 0 0 0 0 0 0 0 +4.239 12.55 -1.832 0 0 0 0 0 0 0 +4.204 12.579 -1.834 0 0 0 0 0 0 0 +4.178 12.566 -1.831 0 0 0 0 0 0 0 +4.14 12.585 -1.832 0 0 0 0 0 0 0 +4.101 12.598 -1.832 0 0 0 0 0 0 0 +4.056 12.596 -1.83 0 0 0 0 0 0 0 +4.014 12.599 -1.828 0 0 0 0 0 0 0 +3.979 12.627 -1.831 0 0 0 0 0 0 0 +3.93 12.609 -1.826 0 0 0 0 0 0 0 +3.909 12.611 -1.825 0 0 0 0 0 0 0 +3.872 12.631 -1.826 0 0 0 0 0 0 0 +3.822 12.611 -1.821 0 0 0 0 0 0 0 +3.779 12.612 -1.819 0 0 0 0 0 0 0 +3.737 12.616 -1.818 0 0 0 0 0 0 0 +3.685 12.584 -1.811 0 0 0 0 0 0 0 +3.644 12.594 -1.811 0 0 0 0 0 0 0 +3.624 12.595 -1.81 0 0 0 0 0 0 0 +3.581 12.595 -1.809 0 0 0 0 0 0 0 +3.543 12.612 -1.809 0 0 0 0 0 0 0 +3.497 12.602 -1.806 0 0 0 0 0 0 0 +3.453 12.596 -1.803 0 0 0 0 0 0 0 +3.412 12.603 -1.803 0 0 0 0 0 0 0 +3.377 12.629 -1.805 0 0 0 0 0 0 0 +3.349 12.606 -1.801 0 0 0 0 0 0 0 +3.049 11.63 -1.644 0 0 0 0 0 0 0 +3.009 11.626 -1.642 0 0 0 0 0 0 0 +1.751 6.897 -0.893 0 0 0 0 0 0 0 +1.712 6.836 -0.882 0 0 0 0 0 0 0 +1.822 7.363 -0.964 0 0 0 0 0 0 0 +2.017 8.249 -1.103 0 0 0 0 0 0 0 +2.235 9.254 -1.261 0 0 0 0 0 0 0 +2.381 9.92 -1.365 0 0 0 0 0 0 0 +2.439 10.301 -1.424 0 0 0 0 0 0 0 +2.427 10.393 -1.437 0 0 0 0 0 0 0 +2.457 10.672 -1.48 0 0 0 0 0 0 0 +2.506 11.036 -1.536 0 0 0 0 0 0 0 +2.603 11.628 -1.628 0 0 0 0 0 0 0 +2.57 11.652 -1.63 0 0 0 0 0 0 0 +2.553 11.662 -1.631 0 0 0 0 0 0 0 +2.515 11.664 -1.63 0 0 0 0 0 0 0 +2.48 11.678 -1.631 0 0 0 0 0 0 0 +2.445 11.693 -1.633 0 0 0 0 0 0 0 +2.406 11.693 -1.631 0 0 0 0 0 0 0 +2.37 11.704 -1.632 0 0 0 0 0 0 0 +2.33 11.692 -1.629 0 0 0 0 0 0 0 +2.312 11.7 -1.63 0 0 0 0 0 0 0 +2.278 11.723 -1.632 0 0 0 0 0 0 0 +2.239 11.714 -1.63 0 0 0 0 0 0 0 +2.201 11.717 -1.629 0 0 0 0 0 0 0 +2.164 11.722 -1.629 0 0 0 0 0 0 0 +2.129 11.741 -1.63 0 0 0 0 0 0 0 +2.09 11.737 -1.629 0 0 0 0 0 0 0 +0.6 3.507 -0.347 0 0 0 0 0 0 0 +0.593 3.528 -0.35 0 0 0 0 0 0 0 +0.583 3.536 -0.351 0 0 0 0 0 0 0 +0.564 3.493 -0.344 0 0 0 0 0 0 0 +0.553 3.493 -0.344 0 0 0 0 0 0 0 +0.542 3.496 -0.344 0 0 0 0 0 0 0 +0.531 3.5 -0.345 0 0 0 0 0 0 0 +0.521 3.503 -0.345 0 0 0 0 0 0 0 +0.523 3.555 -0.353 0 0 0 0 0 0 0 +0.507 3.525 -0.348 0 0 0 0 0 0 0 +0.498 3.543 -0.35 0 0 0 0 0 0 0 +1.646 11.806 -1.629 0 0 0 0 0 0 0 +0.47 3.429 -0.332 0 0 0 0 0 0 0 +1.608 11.803 -1.627 0 0 0 0 0 0 0 +1.57 11.798 -1.626 0 0 0 0 0 0 0 +1.551 11.803 -1.626 0 0 0 0 0 0 0 +1.515 11.81 -1.627 0 0 0 0 0 0 0 +1.478 11.822 -1.628 0 0 0 0 0 0 0 +1.441 11.823 -1.627 0 0 0 0 0 0 0 +1.404 11.833 -1.628 0 0 0 0 0 0 0 +1.365 11.818 -1.625 0 0 0 0 0 0 0 +1.327 11.818 -1.624 0 0 0 0 0 0 0 +1.309 11.824 -1.625 0 0 0 0 0 0 0 +1.272 11.826 -1.625 0 0 0 0 0 0 0 +1.234 11.82 -1.623 0 0 0 0 0 0 0 +1.196 11.82 -1.623 0 0 0 0 0 0 0 +1.161 11.84 -1.625 0 0 0 0 0 0 0 +1.124 11.855 -1.627 0 0 0 0 0 0 0 +1.087 11.855 -1.626 0 0 0 0 0 0 0 +1.07 11.87 -1.628 0 0 0 0 0 0 0 +1.033 11.883 -1.63 0 0 0 0 0 0 0 +0.997 11.904 -1.633 0 0 0 0 0 0 0 +0.961 11.923 -1.635 0 0 0 0 0 0 0 +0.925 11.94 -1.637 0 0 0 0 0 0 0 +0.889 11.958 -1.64 0 0 0 0 0 0 0 +0.855 12.016 -1.648 0 0 0 0 0 0 0 +0.837 12.031 -1.65 0 0 0 0 0 0 0 +0.799 12.024 -1.649 0 0 0 0 0 0 0 +0.762 12.048 -1.652 0 0 0 0 0 0 0 +0.73 12.143 -1.666 0 0 0 0 0 0 0 +0.723 12.671 -1.747 0 0 0 0 0 0 0 +0.685 12.71 -1.753 0 0 0 0 0 0 0 +0.646 12.724 -1.754 0 0 0 0 0 0 0 +0.606 12.734 -1.756 0 0 0 0 0 0 0 +0.588 12.767 -1.76 0 0 0 0 0 0 0 +0.548 12.77 -1.761 0 0 0 0 0 0 0 +0.508 12.788 -1.763 0 0 0 0 0 0 0 +0.469 12.815 -1.767 0 0 0 0 0 0 0 +0.43 12.848 -1.772 0 0 0 0 0 0 0 +0.39 12.859 -1.773 0 0 0 0 0 0 0 +0.35 12.874 -1.776 0 0 0 0 0 0 0 +0.331 12.916 -1.782 0 0 0 0 0 0 0 +0.3 13.314 -1.843 0 0 0 0 0 0 0 +0.215 13.243 -1.832 0 0 0 0 0 0 0 +0.17 13.022 -1.798 0 0 0 0 0 0 0 +0.129 12.981 -1.791 0 0 0 0 0 0 0 +0.088 12.966 -1.789 0 0 0 0 0 0 0 +0.067 12.92 -1.782 0 0 0 0 0 0 0 +0.027 12.913 -1.781 0 0 0 0 0 0 0 +-0.014 12.922 -1.782 0 0 0 0 0 0 0 +-0.055 12.918 -1.782 0 0 0 0 0 0 0 +-0.095 12.916 -1.781 0 0 0 0 0 0 0 +-0.136 12.918 -1.782 0 0 0 0 0 0 0 +-0.176 12.927 -1.783 0 0 0 0 0 0 0 +-0.217 12.923 -1.783 0 0 0 0 0 0 0 +-0.237 12.928 -1.783 0 0 0 0 0 0 0 +-0.278 12.931 -1.784 0 0 0 0 0 0 0 +-0.318 12.922 -1.783 0 0 0 0 0 0 0 +-0.359 12.933 -1.785 0 0 0 0 0 0 0 +-0.4 12.932 -1.785 0 0 0 0 0 0 0 +-0.441 12.935 -1.785 0 0 0 0 0 0 0 +-0.482 12.941 -1.786 0 0 0 0 0 0 0 +-0.502 12.94 -1.786 0 0 0 0 0 0 0 +-0.543 12.951 -1.788 0 0 0 0 0 0 0 +-0.584 12.945 -1.788 0 0 0 0 0 0 0 +-0.624 12.939 -1.787 0 0 0 0 0 0 0 +-0.665 12.937 -1.787 0 0 0 0 0 0 0 +-0.706 12.941 -1.788 0 0 0 0 0 0 0 +-0.746 12.929 -1.786 0 0 0 0 0 0 0 +-0.767 12.939 -1.788 0 0 0 0 0 0 0 +-0.808 12.945 -1.789 0 0 0 0 0 0 0 +-0.849 12.946 -1.79 0 0 0 0 0 0 0 +-0.888 12.926 -1.787 0 0 0 0 0 0 0 +-0.929 12.931 -1.789 0 0 0 0 0 0 0 +-0.97 12.932 -1.789 0 0 0 0 0 0 0 +-1.012 12.936 -1.79 0 0 0 0 0 0 0 +-1.032 12.937 -1.791 0 0 0 0 0 0 0 +-1.073 12.933 -1.791 0 0 0 0 0 0 0 +-1.114 12.934 -1.791 0 0 0 0 0 0 0 +-1.157 12.956 -1.795 0 0 0 0 0 0 0 +-1.209 13.078 -1.815 0 0 0 0 0 0 0 +-1.246 13.035 -1.809 0 0 0 0 0 0 0 +-1.305 13.005 -1.805 0 0 0 0 0 0 0 +-1.341 12.956 -1.798 0 0 0 0 0 0 0 +-1.379 12.926 -1.794 0 0 0 0 0 0 0 +-1.418 12.908 -1.792 0 0 0 0 0 0 0 +-1.459 12.902 -1.792 0 0 0 0 0 0 0 +-1.501 12.911 -1.794 0 0 0 0 0 0 0 +-1.541 12.904 -1.793 0 0 0 0 0 0 0 +-1.561 12.899 -1.793 0 0 0 0 0 0 0 +-1.603 12.9 -1.794 0 0 0 0 0 0 0 +-1.642 12.885 -1.793 0 0 0 0 0 0 0 +-1.682 12.878 -1.792 0 0 0 0 0 0 0 +-1.723 12.879 -1.793 0 0 0 0 0 0 0 +-1.763 12.869 -1.793 0 0 0 0 0 0 0 +-1.805 12.874 -1.794 0 0 0 0 0 0 0 +-1.846 12.876 -1.795 0 0 0 0 0 0 0 +-1.865 12.861 -1.793 0 0 0 0 0 0 0 +-1.907 12.865 -1.795 0 0 0 0 0 0 0 +-1.949 12.871 -1.797 0 0 0 0 0 0 0 +-1.988 12.857 -1.796 0 0 0 0 0 0 0 +-2.03 12.862 -1.797 0 0 0 0 0 0 0 +-2.072 12.863 -1.799 0 0 0 0 0 0 0 +-2.11 12.841 -1.796 0 0 0 0 0 0 0 +-2.131 12.844 -1.797 0 0 0 0 0 0 0 +-2.175 12.856 -1.8 0 0 0 0 0 0 0 +-2.214 12.842 -1.799 0 0 0 0 0 0 0 +-2.254 12.835 -1.799 0 0 0 0 0 0 0 +-2.299 12.855 -1.803 0 0 0 0 0 0 0 +-2.336 12.828 -1.8 0 0 0 0 0 0 0 +-2.38 12.838 -1.803 0 0 0 0 0 0 0 +-2.4 12.834 -1.803 0 0 0 0 0 0 0 +-2.441 12.833 -1.804 0 0 0 0 0 0 0 +-2.483 12.835 -1.805 0 0 0 0 0 0 0 +-2.525 12.837 -1.807 0 0 0 0 0 0 0 +-2.565 12.827 -1.806 0 0 0 0 0 0 0 +-2.607 12.824 -1.807 0 0 0 0 0 0 0 +-2.649 12.826 -1.809 0 0 0 0 0 0 0 +-2.668 12.818 -1.808 0 0 0 0 0 0 0 +-2.712 12.825 -1.811 0 0 0 0 0 0 0 +-2.75 12.806 -1.809 0 0 0 0 0 0 0 +-2.797 12.831 -1.814 0 0 0 0 0 0 0 +-2.487 11.055 -1.538 0 0 0 0 0 0 0 +-2.5 10.952 -1.524 0 0 0 0 0 0 0 +-2.513 10.852 -1.509 0 0 0 0 0 0 0 +-2.515 10.783 -1.499 0 0 0 0 0 0 0 +-2.524 10.665 -1.481 0 0 0 0 0 0 0 +-2.539 10.582 -1.47 0 0 0 0 0 0 0 +-2.555 10.501 -1.458 0 0 0 0 0 0 0 +-2.564 10.395 -1.443 0 0 0 0 0 0 0 +-2.578 10.312 -1.431 0 0 0 0 0 0 0 +-2.592 10.229 -1.419 0 0 0 0 0 0 0 +-2.585 10.135 -1.405 0 0 0 0 0 0 0 +-2.599 10.058 -1.394 0 0 0 0 0 0 0 +-2.609 9.965 -1.381 0 0 0 0 0 0 0 +-2.62 9.88 -1.368 0 0 0 0 0 0 0 +-2.633 9.805 -1.358 0 0 0 0 0 0 0 +-2.647 9.734 -1.348 0 0 0 0 0 0 0 +-2.657 9.649 -1.336 0 0 0 0 0 0 0 +-2.649 9.559 -1.322 0 0 0 0 0 0 0 +-2.666 9.505 -1.315 0 0 0 0 0 0 0 +-2.673 9.417 -1.302 0 0 0 0 0 0 0 +-2.69 9.363 -1.295 0 0 0 0 0 0 0 +-2.708 9.316 -1.289 0 0 0 0 0 0 0 +-2.719 9.243 -1.278 0 0 0 0 0 0 0 +-2.734 9.189 -1.271 0 0 0 0 0 0 0 +-2.738 9.149 -1.265 0 0 0 0 0 0 0 +-2.752 9.089 -1.257 0 0 0 0 0 0 0 +-2.769 9.044 -1.252 0 0 0 0 0 0 0 +-2.788 9.004 -1.246 0 0 0 0 0 0 0 +-2.795 8.927 -1.235 0 0 0 0 0 0 0 +-2.816 8.895 -1.232 0 0 0 0 0 0 0 +-2.829 8.839 -1.224 0 0 0 0 0 0 0 +-2.843 8.787 -1.217 0 0 0 0 0 0 0 +-2.843 8.741 -1.211 0 0 0 0 0 0 0 +-2.862 8.704 -1.206 0 0 0 0 0 0 0 +-2.873 8.648 -1.198 0 0 0 0 0 0 0 +-2.883 8.586 -1.19 0 0 0 0 0 0 0 +-2.908 8.57 -1.189 0 0 0 0 0 0 0 +-2.911 8.491 -1.178 0 0 0 0 0 0 0 +-2.932 8.465 -1.175 0 0 0 0 0 0 0 +-2.928 8.412 -1.167 0 0 0 0 0 0 0 +-2.945 8.375 -1.162 0 0 0 0 0 0 0 +-2.952 8.312 -1.154 0 0 0 0 0 0 0 +-2.973 8.287 -1.151 0 0 0 0 0 0 0 +-2.978 8.218 -1.142 0 0 0 0 0 0 0 +-2.999 8.196 -1.139 0 0 0 0 0 0 0 +-3.012 8.151 -1.134 0 0 0 0 0 0 0 +-3.014 8.119 -1.129 0 0 0 0 0 0 0 +-3.027 8.074 -1.123 0 0 0 0 0 0 0 +-3.046 8.05 -1.121 0 0 0 0 0 0 0 +-3.058 8.005 -1.115 0 0 0 0 0 0 0 +-3.079 7.984 -1.113 0 0 0 0 0 0 0 +-3.092 7.943 -1.108 0 0 0 0 0 0 0 +-3.109 7.911 -1.105 0 0 0 0 0 0 0 +-3.109 7.875 -1.099 0 0 0 0 0 0 0 +-3.13 7.856 -1.098 0 0 0 0 0 0 0 +-3.143 7.817 -1.093 0 0 0 0 0 0 0 +-3.164 7.798 -1.092 0 0 0 0 0 0 0 +-3.175 7.755 -1.086 0 0 0 0 0 0 0 +-3.193 7.73 -1.084 0 0 0 0 0 0 0 +-3.205 7.691 -1.079 0 0 0 0 0 0 0 +-3.223 7.666 -1.076 0 0 0 0 0 0 0 +-3.218 7.619 -1.069 0 0 0 0 0 0 0 +-3.242 7.609 -1.069 0 0 0 0 0 0 0 +-3.253 7.57 -1.065 0 0 0 0 0 0 0 +-3.265 7.53 -1.06 0 0 0 0 0 0 0 +-3.287 7.516 -1.059 0 0 0 0 0 0 0 +-3.294 7.47 -1.053 0 0 0 0 0 0 0 +-3.311 7.445 -1.051 0 0 0 0 0 0 0 +-3.315 7.422 -1.048 0 0 0 0 0 0 0 +-3.332 7.397 -1.045 0 0 0 0 0 0 0 +-3.346 7.366 -1.042 0 0 0 0 0 0 0 +-3.362 7.34 -1.039 0 0 0 0 0 0 0 +-3.373 7.302 -1.035 0 0 0 0 0 0 0 +-3.387 7.272 -1.031 0 0 0 0 0 0 0 +-3.404 7.25 -1.029 0 0 0 0 0 0 0 +-3.41 7.232 -1.027 0 0 0 0 0 0 0 +-3.422 7.198 -1.023 0 0 0 0 0 0 0 +-3.438 7.175 -1.021 0 0 0 0 0 0 0 +-3.454 7.15 -1.019 0 0 0 0 0 0 0 +-3.479 7.144 -1.02 0 0 0 0 0 0 0 +-3.499 7.128 -1.019 0 0 0 0 0 0 0 +-3.533 7.14 -1.023 0 0 0 0 0 0 0 +-3.541 7.129 -1.022 0 0 0 0 0 0 0 +-3.573 7.138 -1.025 0 0 0 0 0 0 0 +-3.592 7.119 -1.024 0 0 0 0 0 0 0 +-3.623 7.126 -1.027 0 0 0 0 0 0 0 +-3.645 7.112 -1.027 0 0 0 0 0 0 0 +-3.677 7.12 -1.03 0 0 0 0 0 0 0 +-3.698 7.107 -1.03 0 0 0 0 0 0 0 +-3.726 7.106 -1.032 0 0 0 0 0 0 0 +-3.737 7.098 -1.031 0 0 0 0 0 0 0 +-3.773 7.113 -1.036 0 0 0 0 0 0 0 +-3.794 7.099 -1.036 0 0 0 0 0 0 0 +-3.827 7.108 -1.039 0 0 0 0 0 0 0 +-3.849 7.094 -1.039 0 0 0 0 0 0 0 +-3.883 7.105 -1.043 0 0 0 0 0 0 0 +-3.904 7.089 -1.042 0 0 0 0 0 0 0 +-3.93 7.111 -1.047 0 0 0 0 0 0 0 +-3.952 7.098 -1.047 0 0 0 0 0 0 0 +-3.987 7.108 -1.051 0 0 0 0 0 0 0 +-4.008 7.092 -1.05 0 0 0 0 0 0 0 +-4.043 7.104 -1.055 0 0 0 0 0 0 0 +-4.07 7.098 -1.056 0 0 0 0 0 0 0 +-4.101 7.1 -1.059 0 0 0 0 0 0 0 +-4.129 7.098 -1.06 0 0 0 0 0 0 0 +-4.155 7.117 -1.065 0 0 0 0 0 0 0 +-4.174 7.099 -1.064 0 0 0 0 0 0 0 +-4.214 7.115 -1.069 0 0 0 0 0 0 0 +-4.236 7.101 -1.069 0 0 0 0 0 0 0 +-4.278 7.12 -1.075 0 0 0 0 0 0 0 +-4.299 7.105 -1.075 0 0 0 0 0 0 0 +-4.34 7.122 -1.08 0 0 0 0 0 0 0 +-4.355 7.122 -1.081 0 0 0 0 0 0 0 +-4.387 7.123 -1.084 0 0 0 0 0 0 0 +-4.418 7.125 -1.087 0 0 0 0 0 0 0 +-4.452 7.129 -1.09 0 0 0 0 0 0 0 +-4.494 7.147 -1.096 0 0 0 0 0 0 0 +-4.52 7.138 -1.097 0 0 0 0 0 0 0 +-4.563 7.157 -1.103 0 0 0 0 0 0 0 +-4.577 7.153 -1.103 0 0 0 0 0 0 0 +-4.622 7.174 -1.11 0 0 0 0 0 0 0 +-4.65 7.168 -1.111 0 0 0 0 0 0 0 +-4.694 7.186 -1.117 0 0 0 0 0 0 0 +-4.724 7.183 -1.119 0 0 0 0 0 0 0 +-4.769 7.203 -1.126 0 0 0 0 0 0 0 +-4.803 7.204 -1.129 0 0 0 0 0 0 0 +-4.835 7.228 -1.135 0 0 0 0 0 0 0 +-4.871 7.232 -1.138 0 0 0 0 0 0 0 +-4.914 7.248 -1.144 0 0 0 0 0 0 0 +-4.952 7.256 -1.148 0 0 0 0 0 0 0 +-5.005 7.284 -1.156 0 0 0 0 0 0 0 +-5.08 7.343 -1.17 0 0 0 0 0 0 0 +-7.207 10.367 -1.737 0 0 0 0 0 0 0 +-7.232 10.335 -1.735 0 0 0 0 0 0 0 +-7.254 10.332 -1.736 0 0 0 0 0 0 0 +-7.288 10.31 -1.737 0 0 0 0 0 0 0 +-7.313 10.278 -1.735 0 0 0 0 0 0 0 +-7.35 10.261 -1.736 0 0 0 0 0 0 0 +-7.401 10.264 -1.741 0 0 0 0 0 0 0 +-7.441 10.252 -1.743 0 0 0 0 0 0 0 +-7.484 10.242 -1.746 0 0 0 0 0 0 0 +-7.515 10.251 -1.75 0 0 0 0 0 0 0 +-7.551 10.233 -1.751 0 0 0 0 0 0 0 +-7.595 10.225 -1.754 0 0 0 0 0 0 0 +-7.642 10.221 -1.758 0 0 0 0 0 0 0 +-7.686 10.213 -1.761 0 0 0 0 0 0 0 +-7.732 10.208 -1.764 0 0 0 0 0 0 0 +-7.773 10.195 -1.766 0 0 0 0 0 0 0 +-7.822 10.226 -1.775 0 0 0 0 0 0 0 +-8.177 10.622 -1.856 0 0 0 0 0 0 0 +-8.366 10.798 -1.895 0 0 0 0 0 0 0 +-8.395 10.766 -1.894 0 0 0 0 0 0 0 +-7.43 9.462 -1.646 0 0 0 0 0 0 0 +-7.452 9.43 -1.644 0 0 0 0 0 0 0 +-7.423 9.332 -1.629 0 0 0 0 0 0 0 +-7.426 9.305 -1.626 0 0 0 0 0 0 0 +-7.428 9.247 -1.62 0 0 0 0 0 0 0 +-7.426 9.185 -1.612 0 0 0 0 0 0 0 +-7.452 9.159 -1.611 0 0 0 0 0 0 0 +-7.461 9.111 -1.607 0 0 0 0 0 0 0 +-7.468 9.061 -1.601 0 0 0 0 0 0 0 +-7.474 9.011 -1.596 0 0 0 0 0 0 0 +-7.475 8.984 -1.593 0 0 0 0 0 0 0 +-7.479 8.931 -1.587 0 0 0 0 0 0 0 +-7.504 8.903 -1.586 0 0 0 0 0 0 0 +-7.507 8.851 -1.58 0 0 0 0 0 0 0 +-7.48 8.762 -1.567 0 0 0 0 0 0 0 +-7.515 8.748 -1.569 0 0 0 0 0 0 0 +-7.527 8.706 -1.566 0 0 0 0 0 0 0 +-7.518 8.641 -1.557 0 0 0 0 0 0 0 +-7.534 8.632 -1.558 0 0 0 0 0 0 0 +-7.535 8.578 -1.552 0 0 0 0 0 0 0 +-7.544 8.534 -1.547 0 0 0 0 0 0 0 +-7.549 8.485 -1.542 0 0 0 0 0 0 0 +-7.548 8.43 -1.536 0 0 0 0 0 0 0 +-7.569 8.401 -1.535 0 0 0 0 0 0 0 +-7.573 8.352 -1.53 0 0 0 0 0 0 0 +-7.572 8.325 -1.527 0 0 0 0 0 0 0 +-7.569 8.269 -1.52 0 0 0 0 0 0 0 +-7.58 8.229 -1.517 0 0 0 0 0 0 0 +-7.596 8.194 -1.514 0 0 0 0 0 0 0 +-7.592 8.138 -1.507 0 0 0 0 0 0 0 +-7.585 8.08 -1.5 0 0 0 0 0 0 0 +-7.622 8.069 -1.503 0 0 0 0 0 0 0 +-9.565 10.103 -1.934 0 0 0 0 0 0 0 +-9.6 10.076 -1.935 0 0 0 0 0 0 0 +-9.635 10.05 -1.935 0 0 0 0 0 0 0 +-9.666 10.018 -1.935 0 0 0 0 0 0 0 +-9.708 9.999 -1.938 0 0 0 0 0 0 0 +-9.75 9.98 -1.94 0 0 0 0 0 0 0 +-9.786 9.954 -1.941 0 0 0 0 0 0 0 +-9.81 9.947 -1.943 0 0 0 0 0 0 0 +-9.858 9.933 -1.946 0 0 0 0 0 0 0 +-9.893 9.906 -1.947 0 0 0 0 0 0 0 +-9.937 9.887 -1.95 0 0 0 0 0 0 0 +-9.976 9.864 -1.952 0 0 0 0 0 0 0 +-10.008 9.834 -1.952 0 0 0 0 0 0 0 +-10.048 9.811 -1.954 0 0 0 0 0 0 0 +-10.079 9.811 -1.957 0 0 0 0 0 0 0 +-10.105 9.775 -1.956 0 0 0 0 0 0 0 +-10.159 9.765 -1.961 0 0 0 0 0 0 0 +-10.195 9.738 -1.962 0 0 0 0 0 0 0 +-10.224 9.705 -1.962 0 0 0 0 0 0 0 +-10.283 9.7 -1.968 0 0 0 0 0 0 0 +-10.309 9.664 -1.967 0 0 0 0 0 0 0 +-10.348 9.639 -1.969 0 0 0 0 0 0 0 +-10.388 9.646 -1.974 0 0 0 0 0 0 0 +-10.408 9.604 -1.972 0 0 0 0 0 0 0 +-10.438 9.571 -1.972 0 0 0 0 0 0 0 +-10.5 9.568 -1.979 0 0 0 0 0 0 0 +-10.523 9.528 -1.977 0 0 0 0 0 0 0 +-10.557 9.499 -1.978 0 0 0 0 0 0 0 +-10.592 9.469 -1.979 0 0 0 0 0 0 0 +-10.611 9.457 -1.98 0 0 0 0 0 0 0 +-10.646 9.429 -1.981 0 0 0 0 0 0 0 +-10.689 9.407 -1.984 0 0 0 0 0 0 0 +-10.716 9.371 -1.983 0 0 0 0 0 0 0 +-10.753 9.344 -1.985 0 0 0 0 0 0 0 +-10.795 9.321 -1.988 0 0 0 0 0 0 0 +-10.838 9.299 -1.99 0 0 0 0 0 0 0 +-10.862 9.29 -1.992 0 0 0 0 0 0 0 +-10.897 9.261 -1.993 0 0 0 0 0 0 0 +-10.939 9.238 -1.996 0 0 0 0 0 0 0 +-10.964 9.2 -1.995 0 0 0 0 0 0 0 +-10.997 9.169 -1.996 0 0 0 0 0 0 0 +-11.028 9.136 -1.996 0 0 0 0 0 0 0 +-11.056 9.101 -1.996 0 0 0 0 0 0 0 +-11.08 9.091 -1.998 0 0 0 0 0 0 0 +-11.128 9.073 -2.002 0 0 0 0 0 0 0 +-11.155 9.036 -2.002 0 0 0 0 0 0 0 +-11.194 9.01 -2.004 0 0 0 0 0 0 0 +-11.222 8.975 -2.004 0 0 0 0 0 0 0 +-11.275 8.959 -2.009 0 0 0 0 0 0 0 +-11.316 8.933 -2.011 0 0 0 0 0 0 0 +-11.356 8.908 -2.014 0 0 0 0 0 0 0 +-11.375 8.893 -2.015 0 0 0 0 0 0 0 +-11.403 8.858 -2.015 0 0 0 0 0 0 0 +-11.434 8.824 -2.015 0 0 0 0 0 0 0 +-11.471 8.795 -2.017 0 0 0 0 0 0 0 +-11.498 8.759 -2.017 0 0 0 0 0 0 0 +-11.527 8.724 -2.017 0 0 0 0 0 0 0 +-11.564 8.695 -2.019 0 0 0 0 0 0 0 +-11.587 8.684 -2.021 0 0 0 0 0 0 0 +-11.624 8.655 -2.023 0 0 0 0 0 0 0 +-11.653 8.62 -2.023 0 0 0 0 0 0 0 +-11.683 8.585 -2.024 0 0 0 0 0 0 0 +-11.708 8.547 -2.023 0 0 0 0 0 0 0 +-11.729 8.506 -2.022 0 0 0 0 0 0 0 +-11.76 8.472 -2.023 0 0 0 0 0 0 0 +-11.767 8.449 -2.022 0 0 0 0 0 0 0 +-11.79 8.41 -2.021 0 0 0 0 0 0 0 +-11.813 8.371 -2.021 0 0 0 0 0 0 0 +-11.841 8.335 -2.021 0 0 0 0 0 0 0 +-11.861 8.293 -2.02 0 0 0 0 0 0 0 +-11.892 8.259 -2.021 0 0 0 0 0 0 0 +-11.918 8.222 -2.021 0 0 0 0 0 0 0 +-11.926 8.199 -2.02 0 0 0 0 0 0 0 +-11.958 8.166 -2.021 0 0 0 0 0 0 0 +-11.992 8.134 -2.022 0 0 0 0 0 0 0 +-12.012 8.093 -2.022 0 0 0 0 0 0 0 +-12.033 8.052 -2.021 0 0 0 0 0 0 0 +-6.74 4.466 -1.041 0 0 0 0 0 0 0 +-6.732 4.43 -1.037 0 0 0 0 0 0 0 +-6.728 4.412 -1.035 0 0 0 0 0 0 0 +-6.743 4.392 -1.035 0 0 0 0 0 0 0 +-6.755 4.37 -1.035 0 0 0 0 0 0 0 +-6.802 4.37 -1.041 0 0 0 0 0 0 0 +-6.834 4.36 -1.044 0 0 0 0 0 0 0 +-12.197 7.753 -2.017 0 0 0 0 0 0 0 +-12.233 7.722 -2.019 0 0 0 0 0 0 0 +-12.229 7.692 -2.016 0 0 0 0 0 0 0 +-12.249 7.651 -2.015 0 0 0 0 0 0 0 +-12.28 7.617 -2.016 0 0 0 0 0 0 0 +-12.302 7.577 -2.016 0 0 0 0 0 0 0 +-12.318 7.534 -2.015 0 0 0 0 0 0 0 +-12.343 7.496 -2.015 0 0 0 0 0 0 0 +-12.363 7.455 -2.014 0 0 0 0 0 0 0 +-12.381 7.413 -2.013 0 0 0 0 0 0 0 +-12.396 7.396 -2.014 0 0 0 0 0 0 0 +-12.428 7.362 -2.015 0 0 0 0 0 0 0 +-12.463 7.33 -2.018 0 0 0 0 0 0 0 +-12.484 7.289 -2.017 0 0 0 0 0 0 0 +-12.517 7.256 -2.019 0 0 0 0 0 0 0 +-12.542 7.218 -2.019 0 0 0 0 0 0 0 +-12.557 7.174 -2.018 0 0 0 0 0 0 0 +-12.576 7.159 -2.019 0 0 0 0 0 0 0 +-12.614 7.128 -2.022 0 0 0 0 0 0 0 +-12.631 7.085 -2.021 0 0 0 0 0 0 0 +-12.665 7.052 -2.023 0 0 0 0 0 0 0 +-12.671 7.004 -2.021 0 0 0 0 0 0 0 +-12.567 6.894 -1.998 0 0 0 0 0 0 0 +-12.585 6.853 -1.998 0 0 0 0 0 0 0 +-12.591 6.83 -1.997 0 0 0 0 0 0 0 +-12.636 6.804 -2.001 0 0 0 0 0 0 0 +-12.827 6.855 -2.031 0 0 0 0 0 0 0 +-12.86 6.821 -2.033 0 0 0 0 0 0 0 +-12.884 6.782 -2.033 0 0 0 0 0 0 0 +-12.926 6.752 -2.037 0 0 0 0 0 0 0 +-12.928 6.701 -2.033 0 0 0 0 0 0 0 +-7.25 3.702 -1.049 0 0 0 0 0 0 0 +-7.267 3.682 -1.05 0 0 0 0 0 0 0 +-7.388 3.714 -1.069 0 0 0 0 0 0 0 +-7.634 3.809 -1.109 0 0 0 0 0 0 0 +-7.51 3.717 -1.086 0 0 0 0 0 0 0 +-13.009 6.41 -2.024 0 0 0 0 0 0 0 +-13.017 6.388 -2.024 0 0 0 0 0 0 0 +-13.037 6.347 -2.024 0 0 0 0 0 0 0 +-13.039 6.298 -2.021 0 0 0 0 0 0 0 +-13.057 6.256 -2.021 0 0 0 0 0 0 0 +-13.052 6.203 -2.016 0 0 0 0 0 0 0 +-13.062 6.158 -2.015 0 0 0 0 0 0 0 +-13.074 6.113 -2.014 0 0 0 0 0 0 0 +-13.072 6.062 -2.01 0 0 0 0 0 0 0 +-13.09 6.046 -2.012 0 0 0 0 0 0 0 +-13.093 5.997 -2.009 0 0 0 0 0 0 0 +-13.105 5.953 -2.008 0 0 0 0 0 0 0 +-13.118 5.909 -2.007 0 0 0 0 0 0 0 +-13.126 5.863 -2.005 0 0 0 0 0 0 0 +-13.138 5.819 -2.004 0 0 0 0 0 0 0 +-13.162 5.78 -2.005 0 0 0 0 0 0 0 +-13.171 5.76 -2.005 0 0 0 0 0 0 0 +-13.177 5.713 -2.003 0 0 0 0 0 0 0 +-13.207 5.677 -2.005 0 0 0 0 0 0 0 +-13.221 5.634 -2.004 0 0 0 0 0 0 0 +-13.217 5.583 -2.001 0 0 0 0 0 0 0 +-13.244 5.545 -2.002 0 0 0 0 0 0 0 +-13.256 5.501 -2.001 0 0 0 0 0 0 0 +-13.251 5.475 -1.999 0 0 0 0 0 0 0 +-13.268 5.434 -1.999 0 0 0 0 0 0 0 +-13.284 5.391 -1.999 0 0 0 0 0 0 0 +-13.306 5.352 -2 0 0 0 0 0 0 0 +-13.325 5.311 -2 0 0 0 0 0 0 0 +-13.363 5.277 -2.004 0 0 0 0 0 0 0 +-13.376 5.234 -2.003 0 0 0 0 0 0 0 +-13.395 5.217 -2.005 0 0 0 0 0 0 0 +-13.45 5.19 -2.011 0 0 0 0 0 0 0 +-13.491 5.157 -2.015 0 0 0 0 0 0 0 +-13.514 5.117 -2.016 0 0 0 0 0 0 0 +-13.508 5.067 -2.013 0 0 0 0 0 0 0 +-13.537 5.029 -2.015 0 0 0 0 0 0 0 +-13.536 4.98 -2.012 0 0 0 0 0 0 0 +-13.531 4.954 -2.01 0 0 0 0 0 0 0 +-13.531 4.906 -2.008 0 0 0 0 0 0 0 +-13.541 4.862 -2.007 0 0 0 0 0 0 0 +-13.564 4.822 -2.008 0 0 0 0 0 0 0 +-13.569 4.776 -2.006 0 0 0 0 0 0 0 +-13.581 4.732 -2.006 0 0 0 0 0 0 0 +-13.599 4.691 -2.006 0 0 0 0 0 0 0 +-13.592 4.664 -2.004 0 0 0 0 0 0 0 +-13.576 4.611 -1.999 0 0 0 0 0 0 0 +-13.606 4.573 -2.002 0 0 0 0 0 0 0 +-13.597 4.523 -1.998 0 0 0 0 0 0 0 +-13.612 4.48 -1.998 0 0 0 0 0 0 0 +-13.626 4.438 -1.998 0 0 0 0 0 0 0 +-13.615 4.387 -1.994 0 0 0 0 0 0 0 +-13.628 4.367 -1.995 0 0 0 0 0 0 0 +-13.615 4.316 -1.991 0 0 0 0 0 0 0 +-13.625 4.272 -1.99 0 0 0 0 0 0 0 +-13.642 4.23 -1.991 0 0 0 0 0 0 0 +-13.645 4.185 -1.989 0 0 0 0 0 0 0 +-13.651 4.139 -1.988 0 0 0 0 0 0 0 +-13.67 4.098 -1.989 0 0 0 0 0 0 0 +-13.644 4.067 -1.984 0 0 0 0 0 0 0 +-13.655 4.024 -1.983 0 0 0 0 0 0 0 +-13.658 3.978 -1.982 0 0 0 0 0 0 0 +-13.67 3.935 -1.982 0 0 0 0 0 0 0 +-13.663 3.887 -1.979 0 0 0 0 0 0 0 +-13.596 3.821 -1.966 0 0 0 0 0 0 0 +-13.69 3.801 -1.979 0 0 0 0 0 0 0 +-9.793 2.695 -1.358 0 0 0 0 0 0 0 +-9.521 2.587 -1.314 0 0 0 0 0 0 0 +-8.972 2.406 -1.225 0 0 0 0 0 0 0 +-8.634 2.285 -1.171 0 0 0 0 0 0 0 +-8.394 2.193 -1.132 0 0 0 0 0 0 0 +-8.172 2.107 -1.095 0 0 0 0 0 0 0 +-8.015 2.039 -1.069 0 0 0 0 0 0 0 +-7.872 1.976 -1.046 0 0 0 0 0 0 0 +-15.929 3.893 -2.315 0 0 0 0 0 0 0 +-7.293 1.515 -0.943 0 0 0 0 0 0 0 +-7.241 1.268 -0.929 0 0 0 0 0 0 0 +-7.123 0.846 -0.901 0 0 0 0 0 0 0 +-7.127 0.801 -0.901 0 0 0 0 0 0 0 +-7.192 0.786 -0.911 0 0 0 0 0 0 0 +-7.224 0.767 -0.915 0 0 0 0 0 0 0 +-15.371 0.399 -2.158 0 0 0 0 0 0 0 +-15.38 0.351 -2.159 0 0 0 0 0 0 0 +-15.385 0.303 -2.16 0 0 0 0 0 0 0 +-15.407 0.255 -2.163 0 0 0 0 0 0 0 +-15.424 0.206 -2.166 0 0 0 0 0 0 0 +-15.428 0.158 -2.166 0 0 0 0 0 0 0 +-15.444 0.134 -2.169 0 0 0 0 0 0 0 +-15.451 0.086 -2.17 0 0 0 0 0 0 0 +-15.467 0.037 -2.172 0 0 0 0 0 0 0 +-15.473 -0.012 -2.173 0 0 0 0 0 0 0 +-15.477 -0.06 -2.174 0 0 0 0 0 0 0 +-15.488 -0.109 -2.175 0 0 0 0 0 0 0 +-15.505 -0.158 -2.178 0 0 0 0 0 0 0 +-15.519 -0.182 -2.18 0 0 0 0 0 0 0 +-15.536 -0.231 -2.183 0 0 0 0 0 0 0 +-15.557 -0.28 -2.186 0 0 0 0 0 0 0 +-15.59 -0.33 -2.191 0 0 0 0 0 0 0 +-15.603 -0.379 -2.194 0 0 0 0 0 0 0 +-15.617 -0.429 -2.196 0 0 0 0 0 0 0 +-15.631 -0.478 -2.198 0 0 0 0 0 0 0 +-15.648 -0.503 -2.201 0 0 0 0 0 0 0 +-15.649 -0.552 -2.201 0 0 0 0 0 0 0 +-15.677 -0.603 -2.206 0 0 0 0 0 0 0 +-15.686 -0.652 -2.208 0 0 0 0 0 0 0 +-15.7 -0.702 -2.21 0 0 0 0 0 0 0 +-15.69 -0.751 -2.209 0 0 0 0 0 0 0 +-15.695 -0.801 -2.21 0 0 0 0 0 0 0 +-15.68 -0.825 -2.208 0 0 0 0 0 0 0 +-15.652 -0.873 -2.204 0 0 0 0 0 0 0 +-15.618 -0.92 -2.199 0 0 0 0 0 0 0 +-15.585 -0.967 -2.195 0 0 0 0 0 0 0 +-15.568 -1.015 -2.193 0 0 0 0 0 0 0 +-15.543 -1.063 -2.189 0 0 0 0 0 0 0 +-15.54 -1.112 -2.189 0 0 0 0 0 0 0 +-15.532 -1.136 -2.188 0 0 0 0 0 0 0 +-15.522 -1.184 -2.188 0 0 0 0 0 0 0 +-15.489 -1.231 -2.183 0 0 0 0 0 0 0 +-15.473 -1.278 -2.181 0 0 0 0 0 0 0 +-15.455 -1.326 -2.179 0 0 0 0 0 0 0 +-15.445 -1.374 -2.178 0 0 0 0 0 0 0 +-15.435 -1.422 -2.177 0 0 0 0 0 0 0 +-15.429 -1.47 -2.177 0 0 0 0 0 0 0 +-15.418 -1.493 -2.176 0 0 0 0 0 0 0 +-15.396 -1.54 -2.173 0 0 0 0 0 0 0 +-15.391 -1.589 -2.173 0 0 0 0 0 0 0 +-15.386 -1.637 -2.173 0 0 0 0 0 0 0 +-15.383 -1.685 -2.173 0 0 0 0 0 0 0 +-15.371 -1.733 -2.172 0 0 0 0 0 0 0 +-15.362 -1.781 -2.172 0 0 0 0 0 0 0 +-15.357 -1.805 -2.171 0 0 0 0 0 0 0 +-15.349 -1.853 -2.171 0 0 0 0 0 0 0 +-15.344 -1.901 -2.171 0 0 0 0 0 0 0 +-15.308 -1.946 -2.167 0 0 0 0 0 0 0 +-15.306 -1.994 -2.167 0 0 0 0 0 0 0 +-15.29 -2.041 -2.166 0 0 0 0 0 0 0 +-15.271 -2.087 -2.164 0 0 0 0 0 0 0 +-15.252 -2.109 -2.161 0 0 0 0 0 0 0 +-15.248 -2.157 -2.162 0 0 0 0 0 0 0 +-15.219 -2.202 -2.158 0 0 0 0 0 0 0 +-15.216 -2.251 -2.159 0 0 0 0 0 0 0 +-15.195 -2.296 -2.157 0 0 0 0 0 0 0 +-15.196 -2.345 -2.158 0 0 0 0 0 0 0 +-15.167 -2.39 -2.155 0 0 0 0 0 0 0 +-15.163 -2.413 -2.155 0 0 0 0 0 0 0 +-15.148 -2.46 -2.154 0 0 0 0 0 0 0 +-15.144 -2.508 -2.154 0 0 0 0 0 0 0 +-15.128 -2.554 -2.153 0 0 0 0 0 0 0 +-15.106 -2.599 -2.151 0 0 0 0 0 0 0 +-15.096 -2.647 -2.151 0 0 0 0 0 0 0 +-15.078 -2.692 -2.149 0 0 0 0 0 0 0 +-15.058 -2.713 -2.147 0 0 0 0 0 0 0 +-15.046 -2.76 -2.146 0 0 0 0 0 0 0 +-15.033 -2.806 -2.145 0 0 0 0 0 0 0 +-15.005 -2.85 -2.142 0 0 0 0 0 0 0 +-15.002 -2.898 -2.143 0 0 0 0 0 0 0 +-14.994 -2.946 -2.144 0 0 0 0 0 0 0 +-14.977 -2.991 -2.142 0 0 0 0 0 0 0 +-14.965 -3.013 -2.141 0 0 0 0 0 0 0 +-14.963 -3.062 -2.142 0 0 0 0 0 0 0 +-14.951 -3.108 -2.142 0 0 0 0 0 0 0 +-14.94 -3.155 -2.142 0 0 0 0 0 0 0 +-14.924 -3.2 -2.141 0 0 0 0 0 0 0 +-14.892 -3.243 -2.138 0 0 0 0 0 0 0 +-14.878 -3.289 -2.137 0 0 0 0 0 0 0 +-14.867 -3.311 -2.136 0 0 0 0 0 0 0 +-14.851 -3.356 -2.135 0 0 0 0 0 0 0 +-14.831 -3.401 -2.134 0 0 0 0 0 0 0 +-14.801 -3.443 -2.131 0 0 0 0 0 0 0 +-14.784 -3.488 -2.13 0 0 0 0 0 0 0 +-14.76 -3.531 -2.128 0 0 0 0 0 0 0 +-14.733 -3.574 -2.125 0 0 0 0 0 0 0 +-14.716 -3.619 -2.124 0 0 0 0 0 0 0 +-14.71 -3.642 -2.124 0 0 0 0 0 0 0 +-14.695 -3.687 -2.124 0 0 0 0 0 0 0 +-14.67 -3.73 -2.121 0 0 0 0 0 0 0 +-14.656 -3.775 -2.121 0 0 0 0 0 0 0 +-14.64 -3.82 -2.121 0 0 0 0 0 0 0 +-14.644 -3.87 -2.123 0 0 0 0 0 0 0 +-14.631 -3.916 -2.123 0 0 0 0 0 0 0 +-14.62 -3.938 -2.122 0 0 0 0 0 0 0 +-14.592 -3.98 -2.12 0 0 0 0 0 0 0 +-14.581 -4.026 -2.12 0 0 0 0 0 0 0 +-14.555 -4.068 -2.118 0 0 0 0 0 0 0 +-14.538 -4.113 -2.117 0 0 0 0 0 0 0 +-14.516 -4.156 -2.116 0 0 0 0 0 0 0 +-14.495 -4.199 -2.115 0 0 0 0 0 0 0 +-14.479 -4.219 -2.113 0 0 0 0 0 0 0 +-14.454 -4.261 -2.111 0 0 0 0 0 0 0 +-14.43 -4.303 -2.109 0 0 0 0 0 0 0 +-14.422 -4.35 -2.11 0 0 0 0 0 0 0 +-14.402 -4.394 -2.109 0 0 0 0 0 0 0 +-14.379 -4.436 -2.108 0 0 0 0 0 0 0 +-14.352 -4.477 -2.106 0 0 0 0 0 0 0 +-14.347 -4.5 -2.106 0 0 0 0 0 0 0 +-14.325 -4.543 -2.105 0 0 0 0 0 0 0 +-14.303 -4.585 -2.104 0 0 0 0 0 0 0 +-14.292 -4.632 -2.104 0 0 0 0 0 0 0 +-14.263 -4.672 -2.102 0 0 0 0 0 0 0 +-14.261 -4.721 -2.104 0 0 0 0 0 0 0 +-14.244 -4.765 -2.104 0 0 0 0 0 0 0 +-14.225 -4.783 -2.102 0 0 0 0 0 0 0 +-14.207 -4.827 -2.101 0 0 0 0 0 0 0 +-14.184 -4.869 -2.1 0 0 0 0 0 0 0 +-14.157 -4.91 -2.098 0 0 0 0 0 0 0 +-14.132 -4.951 -2.097 0 0 0 0 0 0 0 +-14.115 -4.994 -2.096 0 0 0 0 0 0 0 +-14.09 -5.035 -2.095 0 0 0 0 0 0 0 +-14.076 -5.056 -2.094 0 0 0 0 0 0 0 +-14.044 -5.094 -2.091 0 0 0 0 0 0 0 +-14.029 -5.139 -2.091 0 0 0 0 0 0 0 +-14.015 -5.183 -2.092 0 0 0 0 0 0 0 +-13.993 -5.225 -2.091 0 0 0 0 0 0 0 +-13.984 -5.272 -2.092 0 0 0 0 0 0 0 +-13.977 -5.319 -2.094 0 0 0 0 0 0 0 +-13.967 -5.341 -2.093 0 0 0 0 0 0 0 +-13.946 -5.383 -2.093 0 0 0 0 0 0 0 +-13.933 -5.428 -2.093 0 0 0 0 0 0 0 +-13.923 -5.475 -2.095 0 0 0 0 0 0 0 +-13.907 -5.519 -2.095 0 0 0 0 0 0 0 +-13.892 -5.564 -2.095 0 0 0 0 0 0 0 +-13.871 -5.606 -2.095 0 0 0 0 0 0 0 +-13.856 -5.625 -2.094 0 0 0 0 0 0 0 +-13.853 -5.675 -2.096 0 0 0 0 0 0 0 +-13.837 -5.719 -2.096 0 0 0 0 0 0 0 +-13.823 -5.764 -2.097 0 0 0 0 0 0 0 +-13.808 -5.809 -2.098 0 0 0 0 0 0 0 +-13.774 -5.845 -2.095 0 0 0 0 0 0 0 +-13.764 -5.893 -2.096 0 0 0 0 0 0 0 +-13.768 -5.92 -2.098 0 0 0 0 0 0 0 +-13.74 -5.959 -2.097 0 0 0 0 0 0 0 +-13.734 -6.008 -2.099 0 0 0 0 0 0 0 +-13.695 -6.042 -2.096 0 0 0 0 0 0 0 +-13.687 -6.09 -2.098 0 0 0 0 0 0 0 +-13.633 -6.117 -2.092 0 0 0 0 0 0 0 +-13.646 -6.175 -2.097 0 0 0 0 0 0 0 +-13.629 -6.218 -2.098 0 0 0 0 0 0 0 +-13.621 -6.241 -2.098 0 0 0 0 0 0 0 +-13.605 -6.285 -2.098 0 0 0 0 0 0 0 +-13.589 -6.329 -2.099 0 0 0 0 0 0 0 +-13.552 -6.365 -2.096 0 0 0 0 0 0 0 +-13.545 -6.413 -2.098 0 0 0 0 0 0 0 +-13.53 -6.458 -2.099 0 0 0 0 0 0 0 +-13.501 -6.496 -2.098 0 0 0 0 0 0 0 +-13.496 -6.52 -2.099 0 0 0 0 0 0 0 +-13.49 -6.569 -2.101 0 0 0 0 0 0 0 +-13.465 -6.61 -2.101 0 0 0 0 0 0 0 +-13.45 -6.655 -2.101 0 0 0 0 0 0 0 +-13.431 -6.698 -2.102 0 0 0 0 0 0 0 +-13.408 -6.739 -2.101 0 0 0 0 0 0 0 +-13.383 -6.78 -2.101 0 0 0 0 0 0 0 +-13.372 -6.801 -2.101 0 0 0 0 0 0 0 +-13.361 -6.848 -2.103 0 0 0 0 0 0 0 +-13.333 -6.886 -2.101 0 0 0 0 0 0 0 +-13.313 -6.929 -2.102 0 0 0 0 0 0 0 +-13.289 -6.97 -2.101 0 0 0 0 0 0 0 +-13.267 -7.012 -2.101 0 0 0 0 0 0 0 +-13.247 -7.054 -2.102 0 0 0 0 0 0 0 +-13.238 -7.076 -2.102 0 0 0 0 0 0 0 +-13.219 -7.119 -2.103 0 0 0 0 0 0 0 +-13.188 -7.156 -2.101 0 0 0 0 0 0 0 +-13.177 -7.204 -2.103 0 0 0 0 0 0 0 +-13.148 -7.242 -2.102 0 0 0 0 0 0 0 +-13.135 -7.289 -2.104 0 0 0 0 0 0 0 +-13.123 -7.336 -2.106 0 0 0 0 0 0 0 +-13.125 -7.364 -2.108 0 0 0 0 0 0 0 +-13.09 -7.398 -2.106 0 0 0 0 0 0 0 +-13.078 -7.446 -2.108 0 0 0 0 0 0 0 +-13.058 -7.489 -2.109 0 0 0 0 0 0 0 +-13.043 -7.535 -2.11 0 0 0 0 0 0 0 +-13.023 -7.578 -2.111 0 0 0 0 0 0 0 +-13.009 -7.625 -2.113 0 0 0 0 0 0 0 +-12.997 -7.645 -2.113 0 0 0 0 0 0 0 +-12.978 -7.689 -2.114 0 0 0 0 0 0 0 +-12.966 -7.737 -2.116 0 0 0 0 0 0 0 +-12.96 -7.789 -2.119 0 0 0 0 0 0 0 +-12.96 -7.844 -2.123 0 0 0 0 0 0 0 +-12.94 -7.888 -2.124 0 0 0 0 0 0 0 +-12.912 -7.926 -2.124 0 0 0 0 0 0 0 +-12.899 -7.946 -2.124 0 0 0 0 0 0 0 +-12.867 -7.983 -2.122 0 0 0 0 0 0 0 +-12.829 -8.015 -2.12 0 0 0 0 0 0 0 +-12.792 -8.048 -2.118 0 0 0 0 0 0 0 +-12.743 -8.073 -2.114 0 0 0 0 0 0 0 +-12.703 -8.104 -2.111 0 0 0 0 0 0 0 +-12.661 -8.133 -2.108 0 0 0 0 0 0 0 +-12.623 -8.165 -2.106 0 0 0 0 0 0 0 +-12.599 -8.177 -2.104 0 0 0 0 0 0 0 +-12.547 -8.2 -2.099 0 0 0 0 0 0 0 +-12.516 -8.236 -2.098 0 0 0 0 0 0 0 +-12.48 -8.268 -2.096 0 0 0 0 0 0 0 +-12.442 -8.3 -2.094 0 0 0 0 0 0 0 +-12.418 -8.34 -2.094 0 0 0 0 0 0 0 +-12.379 -8.37 -2.092 0 0 0 0 0 0 0 +-12.346 -8.376 -2.088 0 0 0 0 0 0 0 +-12.305 -8.405 -2.085 0 0 0 0 0 0 0 +-10.861 -7.473 -1.822 0 0 0 0 0 0 0 +-10.821 -7.496 -1.819 0 0 0 0 0 0 0 +-10.809 -7.537 -1.821 0 0 0 0 0 0 0 +-10.774 -7.563 -1.819 0 0 0 0 0 0 0 +-10.732 -7.585 -1.816 0 0 0 0 0 0 0 +-10.422 -7.391 -1.76 0 0 0 0 0 0 0 +-10.379 -7.41 -1.756 0 0 0 0 0 0 0 +-10.407 -7.479 -1.766 0 0 0 0 0 0 0 +-10.536 -7.621 -1.795 0 0 0 0 0 0 0 +-10.333 -7.524 -1.761 0 0 0 0 0 0 0 +-10.298 -7.549 -1.759 0 0 0 0 0 0 0 +-10.28 -7.586 -1.76 0 0 0 0 0 0 0 +-10.281 -7.611 -1.762 0 0 0 0 0 0 0 +-10.256 -7.642 -1.762 0 0 0 0 0 0 0 +-10.198 -7.65 -1.756 0 0 0 0 0 0 0 +-10.192 -7.695 -1.759 0 0 0 0 0 0 0 +-11.673 -8.866 -2.048 0 0 0 0 0 0 0 +-11.639 -8.898 -2.047 0 0 0 0 0 0 0 +-11.589 -8.918 -2.043 0 0 0 0 0 0 0 +-11.557 -8.922 -2.039 0 0 0 0 0 0 0 +-11.495 -8.932 -2.033 0 0 0 0 0 0 0 +-11.467 -8.968 -2.033 0 0 0 0 0 0 0 +-11.418 -8.988 -2.029 0 0 0 0 0 0 0 +-11.365 -9.005 -2.024 0 0 0 0 0 0 0 +-11.32 -9.027 -2.021 0 0 0 0 0 0 0 +-11.285 -9.057 -2.019 0 0 0 0 0 0 0 +-11.259 -9.065 -2.017 0 0 0 0 0 0 0 +-11.206 -9.081 -2.012 0 0 0 0 0 0 0 +-11.192 -9.128 -2.015 0 0 0 0 0 0 0 +-11.128 -9.134 -2.008 0 0 0 0 0 0 0 +-11.098 -9.168 -2.008 0 0 0 0 0 0 0 +-11.063 -9.198 -2.007 0 0 0 0 0 0 0 +-11.022 -9.222 -2.004 0 0 0 0 0 0 0 +-11.006 -9.239 -2.004 0 0 0 0 0 0 0 +-10.98 -9.276 -2.005 0 0 0 0 0 0 0 +-10.945 -9.305 -2.003 0 0 0 0 0 0 0 +-10.911 -9.335 -2.002 0 0 0 0 0 0 0 +-10.858 -9.349 -1.998 0 0 0 0 0 0 0 +-10.827 -9.382 -1.997 0 0 0 0 0 0 0 +-10.779 -9.4 -1.994 0 0 0 0 0 0 0 +-10.741 -9.426 -1.992 0 0 0 0 0 0 0 +-10.726 -9.443 -1.992 0 0 0 0 0 0 0 +-10.684 -9.466 -1.989 0 0 0 0 0 0 0 +-10.65 -9.496 -1.988 0 0 0 0 0 0 0 +-10.613 -9.523 -1.987 0 0 0 0 0 0 0 +-10.556 -9.532 -1.982 0 0 0 0 0 0 0 +-10.522 -9.561 -1.981 0 0 0 0 0 0 0 +-10.461 -9.566 -1.974 0 0 0 0 0 0 0 +-10.452 -9.588 -1.975 0 0 0 0 0 0 0 +-10.407 -9.608 -1.972 0 0 0 0 0 0 0 +-10.366 -9.629 -1.97 0 0 0 0 0 0 0 +-10.337 -9.663 -1.97 0 0 0 0 0 0 0 +-10.302 -9.692 -1.969 0 0 0 0 0 0 0 +-10.246 -9.7 -1.964 0 0 0 0 0 0 0 +-10.219 -9.736 -1.965 0 0 0 0 0 0 0 +-10.193 -9.741 -1.962 0 0 0 0 0 0 0 +-10.142 -9.754 -1.958 0 0 0 0 0 0 0 +-10.115 -9.79 -1.959 0 0 0 0 0 0 0 +-10.08 -9.817 -1.958 0 0 0 0 0 0 0 +-10.017 -9.817 -1.951 0 0 0 0 0 0 0 +-10.003 -9.865 -1.955 0 0 0 0 0 0 0 +-9.961 -9.885 -1.952 0 0 0 0 0 0 0 +-9.921 -9.877 -1.947 0 0 0 0 0 0 0 +-9.886 -9.904 -1.946 0 0 0 0 0 0 0 +-9.837 -9.917 -1.942 0 0 0 0 0 0 0 +-9.801 -9.944 -1.942 0 0 0 0 0 0 0 +-9.778 -9.983 -1.943 0 0 0 0 0 0 0 +-9.721 -9.987 -1.938 0 0 0 0 0 0 0 +-9.692 -10.02 -1.938 0 0 0 0 0 0 0 +-9.664 -10.023 -1.935 0 0 0 0 0 0 0 +-9.627 -10.047 -1.934 0 0 0 0 0 0 0 +-9.59 -10.072 -1.933 0 0 0 0 0 0 0 +-9.543 -10.086 -1.93 0 0 0 0 0 0 0 +-9.516 -10.12 -1.931 0 0 0 0 0 0 0 +-9.463 -10.128 -1.926 0 0 0 0 0 0 0 +-9.422 -10.148 -1.924 0 0 0 0 0 0 0 +-9.399 -10.156 -1.922 0 0 0 0 0 0 0 +-9.355 -10.172 -1.92 0 0 0 0 0 0 0 +-9.323 -10.201 -1.92 0 0 0 0 0 0 0 +-9.287 -10.226 -1.919 0 0 0 0 0 0 0 +-9.25 -10.249 -1.918 0 0 0 0 0 0 0 +-9.208 -10.268 -1.915 0 0 0 0 0 0 0 +-9.179 -10.3 -1.916 0 0 0 0 0 0 0 +-9.136 -10.285 -1.91 0 0 0 0 0 0 0 +-9.114 -10.325 -1.912 0 0 0 0 0 0 0 +-9.069 -10.339 -1.909 0 0 0 0 0 0 0 +-9.031 -10.362 -1.908 0 0 0 0 0 0 0 +-8.993 -10.384 -1.907 0 0 0 0 0 0 0 +-8.962 -10.414 -1.907 0 0 0 0 0 0 0 +-8.925 -10.437 -1.906 0 0 0 0 0 0 0 +-8.909 -10.451 -1.906 0 0 0 0 0 0 0 +-8.873 -10.476 -1.906 0 0 0 0 0 0 0 +-8.828 -10.489 -1.903 0 0 0 0 0 0 0 +-8.801 -10.524 -1.904 0 0 0 0 0 0 0 +-8.758 -10.54 -1.902 0 0 0 0 0 0 0 +-8.711 -10.55 -1.899 0 0 0 0 0 0 0 +-8.683 -10.584 -1.9 0 0 0 0 0 0 0 +-8.66 -10.59 -1.898 0 0 0 0 0 0 0 +-8.626 -10.617 -1.898 0 0 0 0 0 0 0 +-8.582 -10.63 -1.896 0 0 0 0 0 0 0 +-8.553 -10.663 -1.897 0 0 0 0 0 0 0 +-8.51 -10.678 -1.894 0 0 0 0 0 0 0 +-8.475 -10.703 -1.894 0 0 0 0 0 0 0 +-8.439 -10.726 -1.893 0 0 0 0 0 0 0 +-8.423 -10.741 -1.894 0 0 0 0 0 0 0 +-8.385 -10.761 -1.892 0 0 0 0 0 0 0 +-8.347 -10.783 -1.892 0 0 0 0 0 0 0 +-8.312 -10.807 -1.891 0 0 0 0 0 0 0 +-8.274 -10.829 -1.89 0 0 0 0 0 0 0 +-8.239 -10.853 -1.89 0 0 0 0 0 0 0 +-8.21 -10.885 -1.891 0 0 0 0 0 0 0 +-8.181 -10.882 -1.888 0 0 0 0 0 0 0 +-8.141 -10.9 -1.887 0 0 0 0 0 0 0 +-8.096 -10.911 -1.884 0 0 0 0 0 0 0 +-8.063 -10.938 -1.884 0 0 0 0 0 0 0 +-8.027 -10.962 -1.884 0 0 0 0 0 0 0 +-8.001 -10.998 -1.886 0 0 0 0 0 0 0 +-7.974 -11.035 -1.888 0 0 0 0 0 0 0 +-7.959 -11.05 -1.889 0 0 0 0 0 0 0 +-7.926 -11.077 -1.889 0 0 0 0 0 0 0 +-7.892 -11.103 -1.889 0 0 0 0 0 0 0 +-7.863 -11.136 -1.891 0 0 0 0 0 0 0 +-7.821 -11.151 -1.889 0 0 0 0 0 0 0 +-7.789 -11.18 -1.89 0 0 0 0 0 0 0 +-7.756 -11.208 -1.891 0 0 0 0 0 0 0 +-7.714 -11.223 -1.889 0 0 0 0 0 0 0 +-7.717 -11.264 -1.894 0 0 0 0 0 0 0 +-7.681 -11.288 -1.894 0 0 0 0 0 0 0 +-7.643 -11.307 -1.893 0 0 0 0 0 0 0 +-7.621 -11.353 -1.897 0 0 0 0 0 0 0 +-7.576 -11.362 -1.895 0 0 0 0 0 0 0 +-7.56 -11.415 -1.9 0 0 0 0 0 0 0 +-7.502 -11.406 -1.894 0 0 0 0 0 0 0 +-7.487 -11.423 -1.895 0 0 0 0 0 0 0 +-7.446 -11.438 -1.893 0 0 0 0 0 0 0 +-7.406 -11.455 -1.892 0 0 0 0 0 0 0 +-7.369 -11.476 -1.892 0 0 0 0 0 0 0 +-7.327 -11.491 -1.89 0 0 0 0 0 0 0 +-7.289 -11.51 -1.89 0 0 0 0 0 0 0 +-7.254 -11.535 -1.89 0 0 0 0 0 0 0 +-7.225 -11.53 -1.887 0 0 0 0 0 0 0 +-7.191 -11.556 -1.888 0 0 0 0 0 0 0 +-7.155 -11.578 -1.888 0 0 0 0 0 0 0 +-7.105 -11.579 -1.884 0 0 0 0 0 0 0 +-7.076 -11.613 -1.886 0 0 0 0 0 0 0 +-7.035 -11.628 -1.885 0 0 0 0 0 0 0 +-6.995 -11.645 -1.884 0 0 0 0 0 0 0 +-6.977 -11.656 -1.884 0 0 0 0 0 0 0 +-6.941 -11.68 -1.884 0 0 0 0 0 0 0 +-6.894 -11.683 -1.881 0 0 0 0 0 0 0 +-6.856 -11.703 -1.88 0 0 0 0 0 0 0 +-6.822 -11.729 -1.881 0 0 0 0 0 0 0 +-6.778 -11.739 -1.879 0 0 0 0 0 0 0 +-6.741 -11.76 -1.879 0 0 0 0 0 0 0 +-6.727 -11.777 -1.88 0 0 0 0 0 0 0 +-6.679 -11.779 -1.877 0 0 0 0 0 0 0 +-6.646 -11.807 -1.878 0 0 0 0 0 0 0 +-6.616 -11.84 -1.88 0 0 0 0 0 0 0 +-6.573 -11.851 -1.879 0 0 0 0 0 0 0 +-6.541 -11.881 -1.88 0 0 0 0 0 0 0 +-6.495 -11.886 -1.878 0 0 0 0 0 0 0 +-6.475 -11.893 -1.877 0 0 0 0 0 0 0 +-6.44 -11.919 -1.878 0 0 0 0 0 0 0 +-6.405 -11.944 -1.879 0 0 0 0 0 0 0 +-6.359 -11.948 -1.876 0 0 0 0 0 0 0 +-6.297 -11.921 -1.868 0 0 0 0 0 0 0 +-6.283 -11.986 -1.876 0 0 0 0 0 0 0 +-6.246 -12.006 -1.876 0 0 0 0 0 0 0 +-6.225 -12.012 -1.875 0 0 0 0 0 0 0 +-6.151 -12.055 -1.876 0 0 0 0 0 0 0 +-6.101 -12.051 -1.872 0 0 0 0 0 0 0 +-6.057 -12.058 -1.87 0 0 0 0 0 0 0 +-6.001 -12.04 -1.863 0 0 0 0 0 0 0 +-5.971 -12.074 -1.866 0 0 0 0 0 0 0 +-5.948 -12.075 -1.865 0 0 0 0 0 0 0 +-5.909 -12.092 -1.864 0 0 0 0 0 0 0 +-5.87 -12.108 -1.864 0 0 0 0 0 0 0 +-5.827 -12.116 -1.862 0 0 0 0 0 0 0 +-5.786 -12.129 -1.861 0 0 0 0 0 0 0 +-5.744 -12.138 -1.86 0 0 0 0 0 0 0 +-5.703 -12.151 -1.859 0 0 0 0 0 0 0 +-5.686 -12.165 -1.86 0 0 0 0 0 0 0 +-5.646 -12.178 -1.859 0 0 0 0 0 0 0 +-5.604 -12.188 -1.858 0 0 0 0 0 0 0 +-5.559 -12.191 -1.855 0 0 0 0 0 0 0 +-5.521 -12.209 -1.855 0 0 0 0 0 0 0 +-5.486 -12.235 -1.857 0 0 0 0 0 0 0 +-5.446 -12.249 -1.856 0 0 0 0 0 0 0 +-5.428 -12.259 -1.856 0 0 0 0 0 0 0 +-5.406 -12.314 -1.863 0 0 0 0 0 0 0 +-5.311 -12.308 -1.856 0 0 0 0 0 0 0 +-5.264 -12.304 -1.853 0 0 0 0 0 0 0 +-5.226 -12.323 -1.853 0 0 0 0 0 0 0 +-5.186 -12.335 -1.852 0 0 0 0 0 0 0 +-5.165 -12.34 -1.852 0 0 0 0 0 0 0 +-5.124 -12.351 -1.851 0 0 0 0 0 0 0 +-5.082 -12.359 -1.85 0 0 0 0 0 0 0 +-5.045 -12.379 -1.85 0 0 0 0 0 0 0 +-5.025 -12.442 -1.858 0 0 0 0 0 0 0 +-4.956 -12.385 -1.846 0 0 0 0 0 0 0 +-4.918 -12.402 -1.846 0 0 0 0 0 0 0 +-4.896 -12.402 -1.845 0 0 0 0 0 0 0 +-4.86 -12.425 -1.846 0 0 0 0 0 0 0 +-4.815 -12.425 -1.844 0 0 0 0 0 0 0 +-4.793 -12.485 -1.851 0 0 0 0 0 0 0 +-4.764 -12.527 -1.856 0 0 0 0 0 0 0 +-4.728 -12.55 -1.857 0 0 0 0 0 0 0 +-4.69 -12.57 -1.858 0 0 0 0 0 0 0 +-4.647 -12.576 -1.856 0 0 0 0 0 0 0 +-4.663 -12.679 -1.872 0 0 0 0 0 0 0 +-4.583 -12.582 -1.854 0 0 0 0 0 0 0 +-4.536 -12.576 -1.851 0 0 0 0 0 0 0 +-4.492 -12.579 -1.849 0 0 0 0 0 0 0 +-4.447 -12.577 -1.846 0 0 0 0 0 0 0 +-4.406 -12.589 -1.846 0 0 0 0 0 0 0 +-4.364 -12.595 -1.845 0 0 0 0 0 0 0 +-4.339 -12.587 -1.842 0 0 0 0 0 0 0 +-4.299 -12.599 -1.842 0 0 0 0 0 0 0 +-4.261 -12.616 -1.842 0 0 0 0 0 0 0 +-4.218 -12.62 -1.841 0 0 0 0 0 0 0 +-4.178 -12.633 -1.841 0 0 0 0 0 0 0 +-4.14 -12.652 -1.842 0 0 0 0 0 0 0 +-4.116 -12.645 -1.84 0 0 0 0 0 0 0 +-4.075 -12.654 -1.839 0 0 0 0 0 0 0 +-4.036 -12.667 -1.839 0 0 0 0 0 0 0 +-3.993 -12.67 -1.838 0 0 0 0 0 0 0 +-3.951 -12.677 -1.837 0 0 0 0 0 0 0 +-3.911 -12.687 -1.836 0 0 0 0 0 0 0 +-3.871 -12.701 -1.837 0 0 0 0 0 0 0 +-3.831 -12.712 -1.836 0 0 0 0 0 0 0 +-3.809 -12.71 -1.835 0 0 0 0 0 0 0 +-3.768 -12.718 -1.835 0 0 0 0 0 0 0 +-3.729 -12.734 -1.835 0 0 0 0 0 0 0 +-3.686 -12.738 -1.834 0 0 0 0 0 0 0 +-3.648 -12.755 -1.835 0 0 0 0 0 0 0 +-3.606 -12.761 -1.834 0 0 0 0 0 0 0 +-3.568 -12.778 -1.835 0 0 0 0 0 0 0 +-3.555 -12.808 -1.839 0 0 0 0 0 0 0 +-3.517 -12.827 -1.84 0 0 0 0 0 0 0 +-3.477 -12.842 -1.841 0 0 0 0 0 0 0 +-3.438 -12.856 -1.841 0 0 0 0 0 0 0 +-3.402 -12.884 -1.844 0 0 0 0 0 0 0 +-3.365 -12.906 -1.846 0 0 0 0 0 0 0 +-3.32 -12.9 -1.843 0 0 0 0 0 0 0 +-3.29 -12.868 -1.837 0 0 0 0 0 0 0 +-3.277 -12.988 -1.855 0 0 0 0 0 0 0 +-3.163 -12.876 -1.834 0 0 0 0 0 0 0 +-3.115 -12.857 -1.829 0 0 0 0 0 0 0 +-3.073 -12.859 -1.828 0 0 0 0 0 0 0 +-3.018 -12.805 -1.818 0 0 0 0 0 0 0 +-2.994 -12.794 -1.816 0 0 0 0 0 0 0 +-2.95 -12.79 -1.813 0 0 0 0 0 0 0 +-2.909 -12.796 -1.813 0 0 0 0 0 0 0 +-2.863 -12.778 -1.809 0 0 0 0 0 0 0 +-2.824 -12.79 -1.809 0 0 0 0 0 0 0 +-2.783 -12.795 -1.809 0 0 0 0 0 0 0 +-2.738 -12.785 -1.806 0 0 0 0 0 0 0 +-2.715 -12.775 -1.803 0 0 0 0 0 0 0 +-2.674 -12.778 -1.803 0 0 0 0 0 0 0 +-2.638 -12.808 -1.806 0 0 0 0 0 0 0 +-2.592 -12.789 -1.802 0 0 0 0 0 0 0 +-2.553 -12.803 -1.803 0 0 0 0 0 0 0 +-2.511 -12.801 -1.801 0 0 0 0 0 0 0 +-2.469 -12.797 -1.799 0 0 0 0 0 0 0 +-2.45 -12.807 -1.8 0 0 0 0 0 0 0 +-2.411 -12.824 -1.802 0 0 0 0 0 0 0 +-2.364 -12.793 -1.796 0 0 0 0 0 0 0 +-2.326 -12.812 -1.797 0 0 0 0 0 0 0 +-2.288 -12.831 -1.799 0 0 0 0 0 0 0 +-2.246 -12.83 -1.798 0 0 0 0 0 0 0 +-2.205 -12.833 -1.797 0 0 0 0 0 0 0 +-2.183 -12.825 -1.796 0 0 0 0 0 0 0 +-2.142 -12.83 -1.795 0 0 0 0 0 0 0 +-2.103 -12.846 -1.797 0 0 0 0 0 0 0 +-2.063 -12.855 -1.797 0 0 0 0 0 0 0 +-2.021 -12.848 -1.795 0 0 0 0 0 0 0 +-1.983 -12.869 -1.797 0 0 0 0 0 0 0 +-1.942 -12.87 -1.796 0 0 0 0 0 0 0 +-1.922 -12.875 -1.797 0 0 0 0 0 0 0 +-1.883 -12.894 -1.799 0 0 0 0 0 0 0 +-1.841 -12.887 -1.797 0 0 0 0 0 0 0 +-1.8 -12.89 -1.796 0 0 0 0 0 0 0 +-1.759 -12.896 -1.796 0 0 0 0 0 0 0 +-1.721 -12.917 -1.799 0 0 0 0 0 0 0 +-1.677 -12.899 -1.795 0 0 0 0 0 0 0 +-1.661 -12.929 -1.799 0 0 0 0 0 0 0 +-1.619 -12.922 -1.798 0 0 0 0 0 0 0 +-1.578 -12.929 -1.798 0 0 0 0 0 0 0 +-1.539 -12.944 -1.799 0 0 0 0 0 0 0 +-1.498 -12.949 -1.799 0 0 0 0 0 0 0 +-1.458 -12.961 -1.801 0 0 0 0 0 0 0 +-1.419 -12.982 -1.803 0 0 0 0 0 0 0 +-1.399 -12.984 -1.803 0 0 0 0 0 0 0 +-1.359 -12.992 -1.804 0 0 0 0 0 0 0 +-1.319 -13.012 -1.806 0 0 0 0 0 0 0 +-1.279 -13.02 -1.807 0 0 0 0 0 0 0 +-1.239 -13.036 -1.809 0 0 0 0 0 0 0 +-1.198 -13.041 -1.809 0 0 0 0 0 0 0 +-1.156 -13.035 -1.807 0 0 0 0 0 0 0 +-1.138 -13.057 -1.81 0 0 0 0 0 0 0 +-1.097 -13.06 -1.81 0 0 0 0 0 0 0 +-1.055 -13.06 -1.81 0 0 0 0 0 0 0 +-1.015 -13.067 -1.81 0 0 0 0 0 0 0 +-0.974 -13.076 -1.811 0 0 0 0 0 0 0 +-0.933 -13.085 -1.812 0 0 0 0 0 0 0 +-0.893 -13.094 -1.813 0 0 0 0 0 0 0 +-0.872 -13.095 -1.813 0 0 0 0 0 0 0 +-0.83 -13.078 -1.81 0 0 0 0 0 0 0 +-0.789 -13.09 -1.812 0 0 0 0 0 0 0 +-0.749 -13.105 -1.813 0 0 0 0 0 0 0 +-0.707 -13.101 -1.813 0 0 0 0 0 0 0 +-0.666 -13.101 -1.812 0 0 0 0 0 0 0 +-0.625 -13.101 -1.812 0 0 0 0 0 0 0 +-0.604 -13.108 -1.813 0 0 0 0 0 0 0 +-0.563 -13.114 -1.813 0 0 0 0 0 0 0 +-0.523 -13.128 -1.815 0 0 0 0 0 0 0 +-0.482 -13.141 -1.817 0 0 0 0 0 0 0 +-0.441 -13.148 -1.818 0 0 0 0 0 0 0 +-0.4 -13.165 -1.82 0 0 0 0 0 0 0 +-0.359 -13.163 -1.82 0 0 0 0 0 0 0 +-0.338 -13.165 -1.82 0 0 0 0 0 0 0 +-0.297 -13.172 -1.821 0 0 0 0 0 0 0 +-0.256 -13.189 -1.823 0 0 0 0 0 0 0 +-0.215 -13.207 -1.826 0 0 0 0 0 0 0 +-0.173 -13.206 -1.826 0 0 0 0 0 0 0 +-0.132 -13.218 -1.828 0 0 0 0 0 0 0 +-0.09 -13.233 -1.83 0 0 0 0 0 0 0 +-0.049 -13.233 -1.83 0 0 0 0 0 0 0 +-0.028 -13.26 -1.834 0 0 0 0 0 0 0 +0.014 -13.27 -1.836 0 0 0 0 0 0 0 +0.055 -13.278 -1.837 0 0 0 0 0 0 0 +0.097 -13.282 -1.837 0 0 0 0 0 0 0 +0.139 -13.285 -1.838 0 0 0 0 0 0 0 +0.181 -13.297 -1.84 0 0 0 0 0 0 0 +0.223 -13.306 -1.841 0 0 0 0 0 0 0 +0.244 -13.314 -1.842 0 0 0 0 0 0 0 +0.286 -13.335 -1.846 0 0 0 0 0 0 0 +0.328 -13.341 -1.847 0 0 0 0 0 0 0 +0.37 -13.354 -1.849 0 0 0 0 0 0 0 +0.412 -13.363 -1.851 0 0 0 0 0 0 0 +0.454 -13.358 -1.85 0 0 0 0 0 0 0 +0.476 -13.365 -1.851 0 0 0 0 0 0 0 +0.518 -13.375 -1.853 0 0 0 0 0 0 0 +0.56 -13.377 -1.854 0 0 0 0 0 0 0 +0.602 -13.372 -1.853 0 0 0 0 0 0 0 +0.644 -13.377 -1.854 0 0 0 0 0 0 0 +0.687 -13.379 -1.855 0 0 0 0 0 0 0 +0.729 -13.377 -1.855 0 0 0 0 0 0 0 +0.771 -13.387 -1.857 0 0 0 0 0 0 0 +0.793 -13.393 -1.858 0 0 0 0 0 0 0 +0.835 -13.391 -1.858 0 0 0 0 0 0 0 +0.878 -13.398 -1.859 0 0 0 0 0 0 0 +0.919 -13.389 -1.859 0 0 0 0 0 0 0 +0.963 -13.408 -1.862 0 0 0 0 0 0 0 +1.005 -13.411 -1.863 0 0 0 0 0 0 0 +1.048 -13.415 -1.864 0 0 0 0 0 0 0 +1.069 -13.416 -1.864 0 0 0 0 0 0 0 +1.112 -13.416 -1.865 0 0 0 0 0 0 0 +1.155 -13.428 -1.867 0 0 0 0 0 0 0 +1.198 -13.427 -1.868 0 0 0 0 0 0 0 +1.24 -13.421 -1.867 0 0 0 0 0 0 0 +1.282 -13.425 -1.869 0 0 0 0 0 0 0 +1.324 -13.413 -1.867 0 0 0 0 0 0 0 +1.346 -13.421 -1.869 0 0 0 0 0 0 0 +1.381 -13.349 -1.859 0 0 0 0 0 0 0 +1.433 -13.437 -1.873 0 0 0 0 0 0 0 +1.482 -13.5 -1.883 0 0 0 0 0 0 0 +1.522 -13.471 -1.879 0 0 0 0 0 0 0 +1.566 -13.482 -1.882 0 0 0 0 0 0 0 +1.606 -13.456 -1.879 0 0 0 0 0 0 0 +1.621 -13.402 -1.871 0 0 0 0 0 0 0 +1.649 -13.283 -1.853 0 0 0 0 0 0 0 +1.683 -13.215 -1.843 0 0 0 0 0 0 0 +1.723 -13.2 -1.842 0 0 0 0 0 0 0 +1.766 -13.202 -1.843 0 0 0 0 0 0 0 +1.806 -13.185 -1.841 0 0 0 0 0 0 0 +1.846 -13.173 -1.84 0 0 0 0 0 0 0 +1.864 -13.151 -1.837 0 0 0 0 0 0 0 +1.906 -13.147 -1.838 0 0 0 0 0 0 0 +1.948 -13.147 -1.839 0 0 0 0 0 0 0 +1.987 -13.123 -1.836 0 0 0 0 0 0 0 +2.029 -13.124 -1.837 0 0 0 0 0 0 0 +2.068 -13.102 -1.835 0 0 0 0 0 0 0 +2.106 -13.078 -1.832 0 0 0 0 0 0 0 +2.126 -13.073 -1.832 0 0 0 0 0 0 0 +2.169 -13.074 -1.833 0 0 0 0 0 0 0 +2.206 -13.044 -1.829 0 0 0 0 0 0 0 +2.247 -13.035 -1.829 0 0 0 0 0 0 0 +2.285 -13.014 -1.827 0 0 0 0 0 0 0 +2.325 -12.999 -1.826 0 0 0 0 0 0 0 +2.365 -12.99 -1.825 0 0 0 0 0 0 0 +2.382 -12.968 -1.822 0 0 0 0 0 0 0 +2.407 -12.873 -1.809 0 0 0 0 0 0 0 +2.497 -12.908 -1.817 0 0 0 0 0 0 0 +2.529 -12.852 -1.809 0 0 0 0 0 0 0 +1.314 -6.398 -0.803 0 0 0 0 0 0 0 +1.318 -6.368 -0.799 0 0 0 0 0 0 0 +1.338 -6.364 -0.799 0 0 0 0 0 0 0 +1.358 -6.358 -0.798 0 0 0 0 0 0 0 +1.379 -6.358 -0.799 0 0 0 0 0 0 0 +1.422 -6.461 -0.816 0 0 0 0 0 0 0 +1.441 -6.451 -0.815 0 0 0 0 0 0 0 +1.456 -6.423 -0.811 0 0 0 0 0 0 0 +1.461 -6.398 -0.808 0 0 0 0 0 0 0 +1.475 -6.364 -0.803 0 0 0 0 0 0 0 +1.495 -6.362 -0.803 0 0 0 0 0 0 0 +1.54 -6.463 -0.82 0 0 0 0 0 0 0 +1.566 -6.483 -0.824 0 0 0 0 0 0 0 +1.586 -6.476 -0.824 0 0 0 0 0 0 0 +1.616 -6.51 -0.83 0 0 0 0 0 0 0 +1.668 -6.68 -0.857 0 0 0 0 0 0 0 +1.694 -6.692 -0.86 0 0 0 0 0 0 0 +3.182 -12.498 -1.778 0 0 0 0 0 0 0 +3.22 -12.484 -1.778 0 0 0 0 0 0 0 +3.253 -12.449 -1.774 0 0 0 0 0 0 0 +3.286 -12.416 -1.77 0 0 0 0 0 0 0 +3.322 -12.396 -1.769 0 0 0 0 0 0 0 +3.337 -12.376 -1.766 0 0 0 0 0 0 0 +3.374 -12.355 -1.765 0 0 0 0 0 0 0 +3.409 -12.331 -1.763 0 0 0 0 0 0 0 +3.444 -12.307 -1.76 0 0 0 0 0 0 0 +3.48 -12.287 -1.759 0 0 0 0 0 0 0 +3.51 -12.246 -1.754 0 0 0 0 0 0 0 +3.543 -12.215 -1.751 0 0 0 0 0 0 0 +3.563 -12.214 -1.752 0 0 0 0 0 0 0 +3.598 -12.189 -1.749 0 0 0 0 0 0 0 +3.627 -12.149 -1.745 0 0 0 0 0 0 0 +3.666 -12.138 -1.745 0 0 0 0 0 0 0 +3.699 -12.111 -1.743 0 0 0 0 0 0 0 +3.737 -12.099 -1.743 0 0 0 0 0 0 0 +3.767 -12.063 -1.739 0 0 0 0 0 0 0 +3.785 -12.052 -1.738 0 0 0 0 0 0 0 +3.821 -12.034 -1.737 0 0 0 0 0 0 0 +3.857 -12.016 -1.736 0 0 0 0 0 0 0 +3.891 -11.993 -1.734 0 0 0 0 0 0 0 +3.922 -11.962 -1.731 0 0 0 0 0 0 0 +3.957 -11.942 -1.73 0 0 0 0 0 0 0 +3.996 -11.931 -1.73 0 0 0 0 0 0 0 +4.005 -11.897 -1.726 0 0 0 0 0 0 0 +4.044 -11.89 -1.726 0 0 0 0 0 0 0 +4.076 -11.86 -1.724 0 0 0 0 0 0 0 +4.099 -11.806 -1.717 0 0 0 0 0 0 0 +3.729 -10.518 -1.512 0 0 0 0 0 0 0 +3.756 -10.489 -1.509 0 0 0 0 0 0 0 +3.781 -10.509 -1.514 0 0 0 0 0 0 0 +3.814 -10.496 -1.513 0 0 0 0 0 0 0 +4.304 -11.739 -1.718 0 0 0 0 0 0 0 +4.34 -11.724 -1.718 0 0 0 0 0 0 0 +4.387 -11.736 -1.722 0 0 0 0 0 0 0 +4.417 -11.704 -1.719 0 0 0 0 0 0 0 +4.452 -11.686 -1.718 0 0 0 0 0 0 0 +4.466 -11.668 -1.716 0 0 0 0 0 0 0 +4.505 -11.659 -1.717 0 0 0 0 0 0 0 +4.54 -11.641 -1.717 0 0 0 0 0 0 0 +4.573 -11.618 -1.715 0 0 0 0 0 0 0 +4.599 -11.578 -1.711 0 0 0 0 0 0 0 +4.639 -11.572 -1.713 0 0 0 0 0 0 0 +4.672 -11.549 -1.711 0 0 0 0 0 0 0 +4.684 -11.527 -1.709 0 0 0 0 0 0 0 +4.714 -11.497 -1.706 0 0 0 0 0 0 0 +4.747 -11.473 -1.705 0 0 0 0 0 0 0 +4.782 -11.456 -1.704 0 0 0 0 0 0 0 +4.815 -11.434 -1.703 0 0 0 0 0 0 0 +4.85 -11.417 -1.703 0 0 0 0 0 0 0 +4.881 -11.391 -1.701 0 0 0 0 0 0 0 +4.891 -11.363 -1.698 0 0 0 0 0 0 0 +4.925 -11.344 -1.697 0 0 0 0 0 0 0 +4.953 -11.312 -1.694 0 0 0 0 0 0 0 +4.986 -11.289 -1.693 0 0 0 0 0 0 0 +5.018 -11.266 -1.692 0 0 0 0 0 0 0 +5.048 -11.24 -1.69 0 0 0 0 0 0 0 +5.079 -11.213 -1.688 0 0 0 0 0 0 0 +5.092 -11.194 -1.686 0 0 0 0 0 0 0 +5.123 -11.169 -1.685 0 0 0 0 0 0 0 +5.156 -11.149 -1.684 0 0 0 0 0 0 0 +5.181 -11.112 -1.681 0 0 0 0 0 0 0 +5.213 -11.09 -1.68 0 0 0 0 0 0 0 +5.238 -11.052 -1.676 0 0 0 0 0 0 0 +5.277 -11.045 -1.678 0 0 0 0 0 0 0 +5.291 -11.029 -1.676 0 0 0 0 0 0 0 +5.32 -11.002 -1.675 0 0 0 0 0 0 0 +5.356 -10.987 -1.675 0 0 0 0 0 0 0 +5.378 -10.945 -1.671 0 0 0 0 0 0 0 +5.411 -10.924 -1.67 0 0 0 0 0 0 0 +5.434 -10.886 -1.666 0 0 0 0 0 0 0 +5.463 -10.858 -1.665 0 0 0 0 0 0 0 +5.472 -10.834 -1.662 0 0 0 0 0 0 0 +5.513 -10.829 -1.664 0 0 0 0 0 0 0 +5.54 -10.799 -1.662 0 0 0 0 0 0 0 +5.574 -10.782 -1.662 0 0 0 0 0 0 0 +5.608 -10.764 -1.662 0 0 0 0 0 0 0 +5.63 -10.724 -1.658 0 0 0 0 0 0 0 +5.666 -10.71 -1.659 0 0 0 0 0 0 0 +5.682 -10.701 -1.659 0 0 0 0 0 0 0 +5.715 -10.681 -1.658 0 0 0 0 0 0 0 +5.749 -10.665 -1.659 0 0 0 0 0 0 0 +5.783 -10.647 -1.659 0 0 0 0 0 0 0 +5.807 -10.611 -1.656 0 0 0 0 0 0 0 +5.842 -10.596 -1.656 0 0 0 0 0 0 0 +5.876 -10.58 -1.657 0 0 0 0 0 0 0 +5.886 -10.558 -1.654 0 0 0 0 0 0 0 +5.919 -10.54 -1.654 0 0 0 0 0 0 0 +5.946 -10.509 -1.652 0 0 0 0 0 0 0 +5.964 -10.464 -1.648 0 0 0 0 0 0 0 +6.002 -10.454 -1.649 0 0 0 0 0 0 0 +6.031 -10.429 -1.648 0 0 0 0 0 0 0 +6.056 -10.398 -1.646 0 0 0 0 0 0 0 +6.075 -10.391 -1.647 0 0 0 0 0 0 0 +6.105 -10.369 -1.646 0 0 0 0 0 0 0 +6.133 -10.341 -1.644 0 0 0 0 0 0 0 +6.165 -10.322 -1.644 0 0 0 0 0 0 0 +6.192 -10.292 -1.643 0 0 0 0 0 0 0 +6.221 -10.268 -1.642 0 0 0 0 0 0 0 +6.262 -10.263 -1.644 0 0 0 0 0 0 0 +6.266 -10.233 -1.641 0 0 0 0 0 0 0 +6.293 -10.205 -1.639 0 0 0 0 0 0 0 +6.329 -10.192 -1.64 0 0 0 0 0 0 0 +6.357 -10.165 -1.639 0 0 0 0 0 0 0 +6.386 -10.14 -1.638 0 0 0 0 0 0 0 +6.419 -10.122 -1.639 0 0 0 0 0 0 0 +6.438 -10.082 -1.635 0 0 0 0 0 0 0 +6.464 -10.053 -1.633 0 0 0 0 0 0 0 +6.474 -10.034 -1.632 0 0 0 0 0 0 0 +6.506 -10.014 -1.632 0 0 0 0 0 0 0 +6.533 -9.987 -1.631 0 0 0 0 0 0 0 +6.563 -9.965 -1.63 0 0 0 0 0 0 0 +6.585 -9.929 -1.628 0 0 0 0 0 0 0 +6.611 -9.9 -1.626 0 0 0 0 0 0 0 +6.638 -9.874 -1.625 0 0 0 0 0 0 0 +6.652 -9.861 -1.625 0 0 0 0 0 0 0 +6.681 -9.838 -1.624 0 0 0 0 0 0 0 +6.703 -9.804 -1.622 0 0 0 0 0 0 0 +6.735 -9.785 -1.622 0 0 0 0 0 0 0 +6.77 -9.77 -1.623 0 0 0 0 0 0 0 +6.791 -9.734 -1.621 0 0 0 0 0 0 0 +6.805 -9.722 -1.62 0 0 0 0 0 0 0 +6.832 -9.695 -1.62 0 0 0 0 0 0 0 +6.865 -9.677 -1.62 0 0 0 0 0 0 0 +6.88 -9.635 -1.616 0 0 0 0 0 0 0 +6.912 -9.614 -1.617 0 0 0 0 0 0 0 +6.934 -9.581 -1.614 0 0 0 0 0 0 0 +6.964 -9.56 -1.614 0 0 0 0 0 0 0 +6.975 -9.544 -1.613 0 0 0 0 0 0 0 +7.001 -9.516 -1.612 0 0 0 0 0 0 0 +7.025 -9.486 -1.611 0 0 0 0 0 0 0 +7.049 -9.456 -1.609 0 0 0 0 0 0 0 +7.075 -9.429 -1.608 0 0 0 0 0 0 0 +7.102 -9.403 -1.608 0 0 0 0 0 0 0 +7.126 -9.373 -1.606 0 0 0 0 0 0 0 +7.141 -9.363 -1.607 0 0 0 0 0 0 0 +7.156 -9.322 -1.603 0 0 0 0 0 0 0 +7.181 -9.293 -1.602 0 0 0 0 0 0 0 +7.206 -9.266 -1.601 0 0 0 0 0 0 0 +7.233 -9.24 -1.6 0 0 0 0 0 0 0 +7.256 -9.209 -1.599 0 0 0 0 0 0 0 +7.281 -9.182 -1.598 0 0 0 0 0 0 0 +7.309 -9.158 -1.597 0 0 0 0 0 0 0 +7.313 -9.134 -1.595 0 0 0 0 0 0 0 +7.341 -9.109 -1.595 0 0 0 0 0 0 0 +7.365 -9.081 -1.594 0 0 0 0 0 0 0 +7.393 -9.057 -1.593 0 0 0 0 0 0 0 +7.422 -9.035 -1.594 0 0 0 0 0 0 0 +7.443 -9.002 -1.592 0 0 0 0 0 0 0 +7.464 -8.97 -1.59 0 0 0 0 0 0 0 +7.477 -8.957 -1.59 0 0 0 0 0 0 0 +7.502 -8.93 -1.589 0 0 0 0 0 0 0 +7.532 -8.908 -1.59 0 0 0 0 0 0 0 +7.551 -8.874 -1.587 0 0 0 0 0 0 0 +7.578 -8.85 -1.587 0 0 0 0 0 0 0 +7.597 -8.816 -1.585 0 0 0 0 0 0 0 +7.625 -8.792 -1.585 0 0 0 0 0 0 0 +7.633 -8.774 -1.584 0 0 0 0 0 0 0 +7.664 -8.753 -1.585 0 0 0 0 0 0 0 +7.682 -8.718 -1.583 0 0 0 0 0 0 0 +7.704 -8.688 -1.581 0 0 0 0 0 0 0 +7.723 -8.655 -1.58 0 0 0 0 0 0 0 +7.754 -8.635 -1.58 0 0 0 0 0 0 0 +7.765 -8.62 -1.58 0 0 0 0 0 0 0 +7.786 -8.588 -1.578 0 0 0 0 0 0 0 +7.81 -8.561 -1.578 0 0 0 0 0 0 0 +7.826 -8.524 -1.575 0 0 0 0 0 0 0 +7.849 -8.495 -1.574 0 0 0 0 0 0 0 +7.874 -8.469 -1.574 0 0 0 0 0 0 0 +7.887 -8.43 -1.571 0 0 0 0 0 0 0 +7.919 -8.411 -1.572 0 0 0 0 0 0 0 +7.924 -8.39 -1.57 0 0 0 0 0 0 0 +7.941 -8.355 -1.568 0 0 0 0 0 0 0 +7.973 -8.336 -1.57 0 0 0 0 0 0 0 +7.989 -8.301 -1.567 0 0 0 0 0 0 0 +8.011 -8.271 -1.567 0 0 0 0 0 0 0 +8.04 -8.249 -1.567 0 0 0 0 0 0 0 +8.07 -8.228 -1.568 0 0 0 0 0 0 0 +8.08 -8.212 -1.567 0 0 0 0 0 0 0 +8.099 -8.18 -1.566 0 0 0 0 0 0 0 +8.126 -8.156 -1.566 0 0 0 0 0 0 0 +8.147 -8.126 -1.565 0 0 0 0 0 0 0 +8.166 -8.093 -1.564 0 0 0 0 0 0 0 +8.201 -8.077 -1.566 0 0 0 0 0 0 0 +8.224 -8.049 -1.565 0 0 0 0 0 0 0 +8.222 -8.022 -1.562 0 0 0 0 0 0 0 +8.256 -8.004 -1.564 0 0 0 0 0 0 0 +8.287 -7.984 -1.565 0 0 0 0 0 0 0 +8.307 -7.954 -1.564 0 0 0 0 0 0 0 +8.331 -7.926 -1.564 0 0 0 0 0 0 0 +8.367 -7.911 -1.567 0 0 0 0 0 0 0 +8.383 -7.876 -1.565 0 0 0 0 0 0 0 +8.393 -7.861 -1.564 0 0 0 0 0 0 0 +8.42 -7.837 -1.565 0 0 0 0 0 0 0 +8.444 -7.809 -1.564 0 0 0 0 0 0 0 +8.471 -7.785 -1.565 0 0 0 0 0 0 0 +8.492 -7.756 -1.564 0 0 0 0 0 0 0 +8.526 -7.737 -1.566 0 0 0 0 0 0 0 +8.538 -7.724 -1.566 0 0 0 0 0 0 0 +8.555 -7.69 -1.565 0 0 0 0 0 0 0 +8.576 -7.661 -1.564 0 0 0 0 0 0 0 +8.612 -7.644 -1.567 0 0 0 0 0 0 0 +8.63 -7.612 -1.565 0 0 0 0 0 0 0 +8.649 -7.581 -1.564 0 0 0 0 0 0 0 +8.688 -7.567 -1.567 0 0 0 0 0 0 0 +8.71 -7.538 -1.567 0 0 0 0 0 0 0 +8.717 -7.52 -1.566 0 0 0 0 0 0 0 +8.745 -7.497 -1.567 0 0 0 0 0 0 0 +8.779 -7.478 -1.569 0 0 0 0 0 0 0 +8.791 -7.44 -1.567 0 0 0 0 0 0 0 +8.825 -7.422 -1.569 0 0 0 0 0 0 0 +8.843 -7.39 -1.568 0 0 0 0 0 0 0 +8.87 -7.365 -1.569 0 0 0 0 0 0 0 +8.869 -7.341 -1.566 0 0 0 0 0 0 0 +8.901 -7.32 -1.568 0 0 0 0 0 0 0 +8.92 -7.289 -1.567 0 0 0 0 0 0 0 +8.939 -7.258 -1.567 0 0 0 0 0 0 0 +8.931 -7.205 -1.56 0 0 0 0 0 0 0 +8.98 -7.198 -1.566 0 0 0 0 0 0 0 +9.018 -7.182 -1.569 0 0 0 0 0 0 0 +9.012 -7.154 -1.565 0 0 0 0 0 0 0 +9.049 -7.137 -1.568 0 0 0 0 0 0 0 +9.054 -7.095 -1.565 0 0 0 0 0 0 0 +9.079 -7.069 -1.565 0 0 0 0 0 0 0 +9.099 -7.038 -1.565 0 0 0 0 0 0 0 +9.128 -7.016 -1.566 0 0 0 0 0 0 0 +9.138 -6.977 -1.564 0 0 0 0 0 0 0 +9.155 -6.968 -1.565 0 0 0 0 0 0 0 +9.169 -6.933 -1.564 0 0 0 0 0 0 0 +9.191 -6.904 -1.564 0 0 0 0 0 0 0 +9.222 -6.882 -1.565 0 0 0 0 0 0 0 +9.234 -6.846 -1.564 0 0 0 0 0 0 0 +9.259 -6.82 -1.564 0 0 0 0 0 0 0 +9.272 -6.785 -1.563 0 0 0 0 0 0 0 +9.284 -6.771 -1.563 0 0 0 0 0 0 0 +9.314 -6.748 -1.564 0 0 0 0 0 0 0 +9.335 -6.719 -1.564 0 0 0 0 0 0 0 +9.348 -6.683 -1.563 0 0 0 0 0 0 0 +9.372 -6.656 -1.564 0 0 0 0 0 0 0 +9.404 -6.635 -1.566 0 0 0 0 0 0 0 +9.42 -6.602 -1.565 0 0 0 0 0 0 0 +9.43 -6.587 -1.565 0 0 0 0 0 0 0 +9.451 -6.557 -1.565 0 0 0 0 0 0 0 +9.481 -6.534 -1.567 0 0 0 0 0 0 0 +9.482 -6.491 -1.563 0 0 0 0 0 0 0 +9.512 -6.468 -1.565 0 0 0 0 0 0 0 +9.531 -6.437 -1.564 0 0 0 0 0 0 0 +9.553 -6.408 -1.565 0 0 0 0 0 0 0 +9.561 -6.392 -1.564 0 0 0 0 0 0 0 +9.588 -6.366 -1.566 0 0 0 0 0 0 0 +9.603 -6.333 -1.565 0 0 0 0 0 0 0 +9.623 -6.303 -1.565 0 0 0 0 0 0 0 +9.644 -6.273 -1.565 0 0 0 0 0 0 0 +9.662 -6.242 -1.565 0 0 0 0 0 0 0 +9.688 -6.216 -1.566 0 0 0 0 0 0 0 +9.695 -6.199 -1.565 0 0 0 0 0 0 0 +9.721 -6.172 -1.567 0 0 0 0 0 0 0 +9.735 -6.139 -1.566 0 0 0 0 0 0 0 +9.764 -6.114 -1.567 0 0 0 0 0 0 0 +9.787 -6.086 -1.568 0 0 0 0 0 0 0 +9.801 -6.052 -1.567 0 0 0 0 0 0 0 +9.818 -6.02 -1.567 0 0 0 0 0 0 0 +9.821 -6 -1.566 0 0 0 0 0 0 0 +9.845 -5.973 -1.567 0 0 0 0 0 0 0 +9.855 -5.937 -1.565 0 0 0 0 0 0 0 +9.886 -5.913 -1.567 0 0 0 0 0 0 0 +9.904 -5.882 -1.567 0 0 0 0 0 0 0 +9.911 -5.843 -1.565 0 0 0 0 0 0 0 +9.931 -5.813 -1.565 0 0 0 0 0 0 0 +9.936 -5.796 -1.565 0 0 0 0 0 0 0 +9.948 -5.76 -1.564 0 0 0 0 0 0 0 +9.964 -5.728 -1.563 0 0 0 0 0 0 0 +9.985 -5.699 -1.564 0 0 0 0 0 0 0 +10.001 -5.666 -1.564 0 0 0 0 0 0 0 +10.019 -5.635 -1.564 0 0 0 0 0 0 0 +10.052 -5.612 -1.566 0 0 0 0 0 0 0 +10.056 -5.593 -1.565 0 0 0 0 0 0 0 +10.079 -5.565 -1.566 0 0 0 0 0 0 0 +10.098 -5.534 -1.567 0 0 0 0 0 0 0 +10.122 -5.506 -1.568 0 0 0 0 0 0 0 +10.143 -5.476 -1.568 0 0 0 0 0 0 0 +10.155 -5.441 -1.567 0 0 0 0 0 0 0 +10.177 -5.412 -1.568 0 0 0 0 0 0 0 +10.191 -5.399 -1.569 0 0 0 0 0 0 0 +10.199 -5.362 -1.568 0 0 0 0 0 0 0 +10.211 -5.328 -1.567 0 0 0 0 0 0 0 +8.789 -4.547 -1.318 0 0 0 0 0 0 0 +8.798 -4.516 -1.318 0 0 0 0 0 0 0 +8.825 -4.495 -1.32 0 0 0 0 0 0 0 +8.846 -4.471 -1.321 0 0 0 0 0 0 0 +10.271 -5.176 -1.564 0 0 0 0 0 0 0 +10.289 -5.144 -1.565 0 0 0 0 0 0 0 +10.307 -5.113 -1.565 0 0 0 0 0 0 0 +10.314 -5.076 -1.564 0 0 0 0 0 0 0 +10.335 -5.046 -1.564 0 0 0 0 0 0 0 +10.358 -5.017 -1.566 0 0 0 0 0 0 0 +10.359 -4.978 -1.563 0 0 0 0 0 0 0 +10.364 -4.96 -1.563 0 0 0 0 0 0 0 +10.383 -4.929 -1.563 0 0 0 0 0 0 0 +10.4 -4.897 -1.564 0 0 0 0 0 0 0 +10.415 -4.864 -1.564 0 0 0 0 0 0 0 +10.436 -4.834 -1.564 0 0 0 0 0 0 0 +10.438 -4.795 -1.562 0 0 0 0 0 0 0 +10.457 -4.764 -1.563 0 0 0 0 0 0 0 +10.461 -4.746 -1.562 0 0 0 0 0 0 0 +10.478 -4.714 -1.563 0 0 0 0 0 0 0 +10.487 -4.679 -1.562 0 0 0 0 0 0 0 +10.487 -4.639 -1.559 0 0 0 0 0 0 0 +10.507 -4.609 -1.56 0 0 0 0 0 0 0 +10.521 -4.576 -1.56 0 0 0 0 0 0 0 +10.53 -4.54 -1.559 0 0 0 0 0 0 0 +10.545 -4.527 -1.56 0 0 0 0 0 0 0 +10.559 -4.494 -1.56 0 0 0 0 0 0 0 +10.586 -4.466 -1.563 0 0 0 0 0 0 0 +10.594 -4.43 -1.562 0 0 0 0 0 0 0 +10.595 -4.392 -1.56 0 0 0 0 0 0 0 +10.613 -4.36 -1.56 0 0 0 0 0 0 0 +10.623 -4.325 -1.56 0 0 0 0 0 0 0 +10.635 -4.311 -1.56 0 0 0 0 0 0 0 +10.636 -4.272 -1.558 0 0 0 0 0 0 0 +10.642 -4.236 -1.557 0 0 0 0 0 0 0 +10.67 -4.208 -1.56 0 0 0 0 0 0 0 +10.694 -4.179 -1.561 0 0 0 0 0 0 0 +10.688 -4.138 -1.558 0 0 0 0 0 0 0 +10.724 -4.113 -1.562 0 0 0 0 0 0 0 +10.726 -4.095 -1.561 0 0 0 0 0 0 0 +10.724 -4.055 -1.559 0 0 0 0 0 0 0 +10.752 -4.027 -1.561 0 0 0 0 0 0 0 +10.779 -3.999 -1.564 0 0 0 0 0 0 0 +10.779 -3.96 -1.562 0 0 0 0 0 0 0 +10.81 -3.933 -1.565 0 0 0 0 0 0 0 +10.824 -3.9 -1.565 0 0 0 0 0 0 0 +10.83 -3.883 -1.565 0 0 0 0 0 0 0 +10.855 -3.853 -1.567 0 0 0 0 0 0 0 +10.869 -3.82 -1.567 0 0 0 0 0 0 0 +10.883 -3.786 -1.568 0 0 0 0 0 0 0 +10.889 -3.75 -1.567 0 0 0 0 0 0 0 +10.91 -3.719 -1.568 0 0 0 0 0 0 0 +10.916 -3.683 -1.567 0 0 0 0 0 0 0 +10.931 -3.65 -1.568 0 0 0 0 0 0 0 +10.922 -3.628 -1.566 0 0 0 0 0 0 0 +10.943 -3.597 -1.567 0 0 0 0 0 0 0 +10.949 -3.56 -1.566 0 0 0 0 0 0 0 +10.958 -3.525 -1.566 0 0 0 0 0 0 0 +10.971 -3.492 -1.566 0 0 0 0 0 0 0 +10.982 -3.457 -1.566 0 0 0 0 0 0 0 +10.983 -3.42 -1.565 0 0 0 0 0 0 0 +10.988 -3.402 -1.565 0 0 0 0 0 0 0 +11.007 -3.37 -1.566 0 0 0 0 0 0 0 +11.011 -3.334 -1.565 0 0 0 0 0 0 0 +11.026 -3.3 -1.566 0 0 0 0 0 0 0 +11.038 -3.266 -1.566 0 0 0 0 0 0 0 +11.052 -3.233 -1.567 0 0 0 0 0 0 0 +11.057 -3.215 -1.567 0 0 0 0 0 0 0 +11.084 -3.185 -1.569 0 0 0 0 0 0 0 +11.088 -3.149 -1.568 0 0 0 0 0 0 0 +11.09 -3.112 -1.567 0 0 0 0 0 0 0 +11.115 -3.081 -1.57 0 0 0 0 0 0 0 +11.125 -3.046 -1.57 0 0 0 0 0 0 0 +11.136 -3.012 -1.57 0 0 0 0 0 0 0 +11.148 -2.978 -1.57 0 0 0 0 0 0 0 +11.149 -2.959 -1.57 0 0 0 0 0 0 0 +11.156 -2.923 -1.569 0 0 0 0 0 0 0 +11.167 -2.889 -1.57 0 0 0 0 0 0 0 +11.17 -2.852 -1.569 0 0 0 0 0 0 0 +11.187 -2.819 -1.57 0 0 0 0 0 0 0 +11.198 -2.784 -1.57 0 0 0 0 0 0 0 +11.199 -2.747 -1.569 0 0 0 0 0 0 0 +11.195 -2.728 -1.568 0 0 0 0 0 0 0 +11.21 -2.694 -1.569 0 0 0 0 0 0 0 +11.218 -2.659 -1.569 0 0 0 0 0 0 0 +11.224 -2.623 -1.568 0 0 0 0 0 0 0 +11.234 -2.588 -1.569 0 0 0 0 0 0 0 +11.239 -2.552 -1.568 0 0 0 0 0 0 0 +11.249 -2.517 -1.568 0 0 0 0 0 0 0 +11.239 -2.497 -1.566 0 0 0 0 0 0 0 +7.469 -1.626 -0.973 0 0 0 0 0 0 0 +7.459 -1.599 -0.971 0 0 0 0 0 0 0 +7.332 -1.547 -0.95 0 0 0 0 0 0 0 +7.322 -1.521 -0.948 0 0 0 0 0 0 0 +7.325 -1.497 -0.948 0 0 0 0 0 0 0 +7.546 -1.519 -0.982 0 0 0 0 0 0 0 +7.599 -1.517 -0.989 0 0 0 0 0 0 0 +7.501 -1.473 -0.973 0 0 0 0 0 0 0 +7.35 -1.419 -0.949 0 0 0 0 0 0 0 +7.351 -1.395 -0.949 0 0 0 0 0 0 0 +7.367 -1.374 -0.95 0 0 0 0 0 0 0 +7.379 -1.352 -0.952 0 0 0 0 0 0 0 +7.41 -1.334 -0.956 0 0 0 0 0 0 0 +7.422 -1.324 -0.957 0 0 0 0 0 0 0 +7.459 -1.307 -0.963 0 0 0 0 0 0 0 +7.475 -1.285 -0.964 0 0 0 0 0 0 0 +7.504 -1.266 -0.968 0 0 0 0 0 0 0 +7.553 -1.25 -0.975 0 0 0 0 0 0 0 +7.559 -1.227 -0.976 0 0 0 0 0 0 0 +7.606 -1.21 -0.982 0 0 0 0 0 0 0 +11.445 -1.816 -1.578 0 0 0 0 0 0 0 +11.454 -1.78 -1.578 0 0 0 0 0 0 0 +11.454 -1.744 -1.577 0 0 0 0 0 0 0 +11.465 -1.708 -1.578 0 0 0 0 0 0 0 +11.49 -1.675 -1.581 0 0 0 0 0 0 0 +11.478 -1.637 -1.579 0 0 0 0 0 0 0 +11.497 -1.602 -1.581 0 0 0 0 0 0 0 +11.511 -1.586 -1.583 0 0 0 0 0 0 0 +11.52 -1.55 -1.583 0 0 0 0 0 0 0 +11.525 -1.514 -1.583 0 0 0 0 0 0 0 +11.533 -1.479 -1.584 0 0 0 0 0 0 0 +11.534 -1.442 -1.583 0 0 0 0 0 0 0 +11.55 -1.407 -1.585 0 0 0 0 0 0 0 +11.517 -1.366 -1.579 0 0 0 0 0 0 0 +11.496 -1.345 -1.576 0 0 0 0 0 0 0 +11.415 -1.299 -1.563 0 0 0 0 0 0 0 +11.541 -1.277 -1.581 0 0 0 0 0 0 0 +11.563 -1.243 -1.584 0 0 0 0 0 0 0 +11.561 -1.206 -1.583 0 0 0 0 0 0 0 +11.47 -1.16 -1.569 0 0 0 0 0 0 0 +11.124 -1.089 -1.515 0 0 0 0 0 0 0 +11.104 -1.069 -1.511 0 0 0 0 0 0 0 +11.215 -1.045 -1.528 0 0 0 0 0 0 0 +11.549 -1.04 -1.579 0 0 0 0 0 0 0 +11.572 -1.005 -1.582 0 0 0 0 0 0 0 +11.479 -0.961 -1.567 0 0 0 0 0 0 0 +11.493 -0.926 -1.569 0 0 0 0 0 0 0 +11.522 -0.892 -1.573 0 0 0 0 0 0 0 +11.584 -0.878 -1.582 0 0 0 0 0 0 0 +11.595 -0.842 -1.583 0 0 0 0 0 0 0 +11.627 -0.808 -1.588 0 0 0 0 0 0 0 +11.61 -0.77 -1.585 0 0 0 0 0 0 0 +11.585 -0.732 -1.581 0 0 0 0 0 0 0 +11.585 -0.695 -1.58 0 0 0 0 0 0 0 +11.575 -0.658 -1.579 0 0 0 0 0 0 0 +11.628 -0.643 -1.587 0 0 0 0 0 0 0 +11.628 -0.606 -1.586 0 0 0 0 0 0 0 +11.671 -0.572 -1.593 0 0 0 0 0 0 0 +11.627 -0.533 -1.586 0 0 0 0 0 0 0 +11.647 -0.497 -1.588 0 0 0 0 0 0 0 +11.636 -0.46 -1.587 0 0 0 0 0 0 0 +11.659 -0.425 -1.59 0 0 0 0 0 0 0 +11.652 -0.406 -1.589 0 0 0 0 0 0 0 +11.677 -0.37 -1.592 0 0 0 0 0 0 0 +11.678 -0.334 -1.592 0 0 0 0 0 0 0 +11.689 -0.297 -1.594 0 0 0 0 0 0 0 +11.688 -0.26 -1.593 0 0 0 0 0 0 0 +11.691 -0.224 -1.594 0 0 0 0 0 0 0 +11.729 -0.188 -1.6 0 0 0 0 0 0 0 +11.775 -0.17 -1.607 0 0 0 0 0 0 0 +11.836 -0.134 -1.616 0 0 0 0 0 0 0 +11.898 -0.097 -1.625 0 0 0 0 0 0 0 +11.952 -0.06 -1.633 0 0 0 0 0 0 0 +12.007 -0.023 -1.642 0 0 0 0 0 0 0 +11.507 0.007 -1.702 0 0 0 0 0 0 0 +11.574 0.043 -1.713 0 0 0 0 0 0 0 +11.552 0.061 -1.709 0 0 0 0 0 0 0 +11.544 0.098 -1.708 0 0 0 0 0 0 0 +11.534 0.134 -1.706 0 0 0 0 0 0 0 +11.537 0.17 -1.707 0 0 0 0 0 0 0 +11.529 0.206 -1.706 0 0 0 0 0 0 0 +11.544 0.243 -1.708 0 0 0 0 0 0 0 +11.513 0.278 -1.704 0 0 0 0 0 0 0 +11.517 0.296 -1.704 0 0 0 0 0 0 0 +11.508 0.332 -1.703 0 0 0 0 0 0 0 +11.519 0.369 -1.705 0 0 0 0 0 0 0 +11.502 0.405 -1.702 0 0 0 0 0 0 0 +11.51 0.441 -1.704 0 0 0 0 0 0 0 +11.491 0.476 -1.701 0 0 0 0 0 0 0 +11.478 0.512 -1.699 0 0 0 0 0 0 0 +11.491 0.531 -1.701 0 0 0 0 0 0 0 +11.485 0.567 -1.701 0 0 0 0 0 0 0 +11.469 0.602 -1.699 0 0 0 0 0 0 0 +11.483 0.639 -1.701 0 0 0 0 0 0 0 +11.459 0.674 -1.698 0 0 0 0 0 0 0 +11.447 0.709 -1.696 0 0 0 0 0 0 0 +11.457 0.746 -1.698 0 0 0 0 0 0 0 +11.448 0.763 -1.697 0 0 0 0 0 0 0 +11.433 0.798 -1.695 0 0 0 0 0 0 0 +11.445 0.835 -1.697 0 0 0 0 0 0 0 +11.428 0.87 -1.695 0 0 0 0 0 0 0 +11.425 0.906 -1.695 0 0 0 0 0 0 0 +11.426 0.942 -1.695 0 0 0 0 0 0 0 +11.41 0.977 -1.693 0 0 0 0 0 0 0 +11.402 0.994 -1.692 0 0 0 0 0 0 0 +11.425 1.032 -1.696 0 0 0 0 0 0 0 +11.4 1.066 -1.693 0 0 0 0 0 0 0 +11.394 1.102 -1.693 0 0 0 0 0 0 0 +11.403 1.139 -1.694 0 0 0 0 0 0 0 +11.399 1.175 -1.694 0 0 0 0 0 0 0 +11.37 1.208 -1.69 0 0 0 0 0 0 0 +11.383 1.227 -1.693 0 0 0 0 0 0 0 +11.37 1.262 -1.691 0 0 0 0 0 0 0 +11.352 1.296 -1.689 0 0 0 0 0 0 0 +11.34 1.331 -1.688 0 0 0 0 0 0 0 +11.371 1.371 -1.694 0 0 0 0 0 0 0 +11.335 1.403 -1.689 0 0 0 0 0 0 0 +11.339 1.439 -1.69 0 0 0 0 0 0 0 +11.348 1.459 -1.692 0 0 0 0 0 0 0 +11.326 1.492 -1.689 0 0 0 0 0 0 0 +11.309 1.526 -1.687 0 0 0 0 0 0 0 +11.314 1.563 -1.689 0 0 0 0 0 0 0 +11.298 1.597 -1.687 0 0 0 0 0 0 0 +11.287 1.631 -1.686 0 0 0 0 0 0 0 +11.297 1.669 -1.688 0 0 0 0 0 0 0 +11.27 1.701 -1.685 0 0 0 0 0 0 0 +11.26 1.718 -1.683 0 0 0 0 0 0 0 +11.272 1.756 -1.686 0 0 0 0 0 0 0 +11.249 1.788 -1.683 0 0 0 0 0 0 0 +11.255 1.826 -1.685 0 0 0 0 0 0 0 +11.243 1.86 -1.684 0 0 0 0 0 0 0 +11.241 1.896 -1.685 0 0 0 0 0 0 0 +11.235 1.931 -1.685 0 0 0 0 0 0 0 +11.219 1.946 -1.683 0 0 0 0 0 0 0 +11.228 1.984 -1.685 0 0 0 0 0 0 0 +11.216 2.019 -1.684 0 0 0 0 0 0 0 +11.2 2.052 -1.683 0 0 0 0 0 0 0 +11.174 2.084 -1.68 0 0 0 0 0 0 0 +11.185 2.122 -1.683 0 0 0 0 0 0 0 +11.161 2.154 -1.68 0 0 0 0 0 0 0 +11.179 2.176 -1.683 0 0 0 0 0 0 0 +11.168 2.21 -1.683 0 0 0 0 0 0 0 +11.155 2.244 -1.682 0 0 0 0 0 0 0 +11.128 2.275 -1.678 0 0 0 0 0 0 0 +11.139 2.313 -1.681 0 0 0 0 0 0 0 +11.114 2.345 -1.678 0 0 0 0 0 0 0 +11.122 2.383 -1.681 0 0 0 0 0 0 0 +11.116 2.4 -1.681 0 0 0 0 0 0 0 +11.103 2.434 -1.68 0 0 0 0 0 0 0 +11.08 2.465 -1.677 0 0 0 0 0 0 0 +11.082 2.502 -1.679 0 0 0 0 0 0 0 +11.068 2.535 -1.678 0 0 0 0 0 0 0 +11.068 2.572 -1.679 0 0 0 0 0 0 0 +11.05 2.604 -1.678 0 0 0 0 0 0 0 +11.053 2.624 -1.679 0 0 0 0 0 0 0 +11.032 2.655 -1.677 0 0 0 0 0 0 0 +11.035 2.693 -1.678 0 0 0 0 0 0 0 +11.015 2.724 -1.677 0 0 0 0 0 0 0 +11.016 2.761 -1.678 0 0 0 0 0 0 0 +11.001 2.795 -1.677 0 0 0 0 0 0 0 +11.021 2.837 -1.682 0 0 0 0 0 0 0 +10.998 2.849 -1.679 0 0 0 0 0 0 0 +10.992 2.884 -1.679 0 0 0 0 0 0 0 +10.96 2.913 -1.676 0 0 0 0 0 0 0 +10.961 2.95 -1.677 0 0 0 0 0 0 0 +10.953 2.985 -1.678 0 0 0 0 0 0 0 +10.951 3.021 -1.679 0 0 0 0 0 0 0 +10.925 3.051 -1.676 0 0 0 0 0 0 0 +10.933 3.072 -1.678 0 0 0 0 0 0 0 +10.914 3.103 -1.677 0 0 0 0 0 0 0 +10.918 3.141 -1.679 0 0 0 0 0 0 0 +10.902 3.174 -1.678 0 0 0 0 0 0 0 +10.898 3.21 -1.679 0 0 0 0 0 0 0 +10.888 3.244 -1.679 0 0 0 0 0 0 0 +10.881 3.28 -1.679 0 0 0 0 0 0 0 +10.878 3.297 -1.68 0 0 0 0 0 0 0 +10.875 3.334 -1.681 0 0 0 0 0 0 0 +10.874 3.371 -1.683 0 0 0 0 0 0 0 +10.878 3.41 -1.685 0 0 0 0 0 0 0 +10.858 3.441 -1.683 0 0 0 0 0 0 0 +10.855 3.477 -1.685 0 0 0 0 0 0 0 +10.838 3.51 -1.684 0 0 0 0 0 0 0 +10.829 3.525 -1.683 0 0 0 0 0 0 0 +10.821 3.561 -1.684 0 0 0 0 0 0 0 +10.814 3.596 -1.684 0 0 0 0 0 0 0 +10.799 3.629 -1.684 0 0 0 0 0 0 0 +10.793 3.664 -1.685 0 0 0 0 0 0 0 +10.776 3.696 -1.684 0 0 0 0 0 0 0 +10.766 3.731 -1.684 0 0 0 0 0 0 0 +10.775 3.753 -1.687 0 0 0 0 0 0 0 +10.76 3.785 -1.686 0 0 0 0 0 0 0 +10.748 3.819 -1.686 0 0 0 0 0 0 0 +10.736 3.853 -1.686 0 0 0 0 0 0 0 +10.727 3.888 -1.687 0 0 0 0 0 0 0 +10.713 3.921 -1.686 0 0 0 0 0 0 0 +10.688 3.95 -1.684 0 0 0 0 0 0 0 +10.7 3.974 -1.687 0 0 0 0 0 0 0 +10.682 4.005 -1.686 0 0 0 0 0 0 0 +10.689 4.046 -1.69 0 0 0 0 0 0 0 +10.666 4.076 -1.688 0 0 0 0 0 0 0 +10.649 4.108 -1.687 0 0 0 0 0 0 0 +10.66 4.151 -1.691 0 0 0 0 0 0 0 +10.64 4.181 -1.69 0 0 0 0 0 0 0 +10.642 4.201 -1.692 0 0 0 0 0 0 0 +10.611 4.228 -1.689 0 0 0 0 0 0 0 +10.636 4.276 -1.695 0 0 0 0 0 0 0 +10.602 4.302 -1.692 0 0 0 0 0 0 0 +10.603 4.341 -1.694 0 0 0 0 0 0 0 +10.577 4.369 -1.692 0 0 0 0 0 0 0 +10.583 4.41 -1.695 0 0 0 0 0 0 0 +10.569 4.444 -1.695 0 0 0 0 0 0 0 +10.566 4.462 -1.696 0 0 0 0 0 0 0 +10.557 4.497 -1.697 0 0 0 0 0 0 0 +10.55 4.534 -1.698 0 0 0 0 0 0 0 +10.527 4.563 -1.697 0 0 0 0 0 0 0 +10.529 4.603 -1.699 0 0 0 0 0 0 0 +10.514 4.636 -1.699 0 0 0 0 0 0 0 +10.507 4.653 -1.699 0 0 0 0 0 0 0 +10.478 4.679 -1.697 0 0 0 0 0 0 0 +10.485 4.722 -1.701 0 0 0 0 0 0 0 +10.473 4.756 -1.701 0 0 0 0 0 0 0 +10.462 4.791 -1.702 0 0 0 0 0 0 0 +10.436 4.819 -1.7 0 0 0 0 0 0 0 +10.414 4.848 -1.699 0 0 0 0 0 0 0 +10.422 4.872 -1.702 0 0 0 0 0 0 0 +10.412 4.907 -1.703 0 0 0 0 0 0 0 +10.391 4.937 -1.702 0 0 0 0 0 0 0 +10.39 4.977 -1.704 0 0 0 0 0 0 0 +10.371 5.008 -1.704 0 0 0 0 0 0 0 +10.378 5.052 -1.708 0 0 0 0 0 0 0 +10.336 5.071 -1.703 0 0 0 0 0 0 0 +10.349 5.098 -1.707 0 0 0 0 0 0 0 +10.328 5.128 -1.706 0 0 0 0 0 0 0 +10.306 5.157 -1.705 0 0 0 0 0 0 0 +10.299 5.194 -1.706 0 0 0 0 0 0 0 +10.284 5.227 -1.707 0 0 0 0 0 0 0 +10.262 5.257 -1.706 0 0 0 0 0 0 0 +10.239 5.286 -1.705 0 0 0 0 0 0 0 +10.24 5.327 -1.708 0 0 0 0 0 0 0 +10.229 5.342 -1.707 0 0 0 0 0 0 0 +10.216 5.376 -1.708 0 0 0 0 0 0 0 +10.192 5.404 -1.707 0 0 0 0 0 0 0 +10.187 5.443 -1.709 0 0 0 0 0 0 0 +10.17 5.475 -1.709 0 0 0 0 0 0 0 +10.151 5.506 -1.709 0 0 0 0 0 0 0 +10.141 5.542 -1.71 0 0 0 0 0 0 0 +10.134 5.558 -1.71 0 0 0 0 0 0 0 +10.108 5.585 -1.709 0 0 0 0 0 0 0 +10.064 5.603 -1.704 0 0 0 0 0 0 0 +10.038 5.629 -1.702 0 0 0 0 0 0 0 +10.006 5.653 -1.7 0 0 0 0 0 0 0 +9.942 5.658 -1.691 0 0 0 0 0 0 0 +9.891 5.649 -1.683 0 0 0 0 0 0 0 +9.75 5.609 -1.661 0 0 0 0 0 0 0 +9.693 5.617 -1.654 0 0 0 0 0 0 0 +9.679 5.649 -1.654 0 0 0 0 0 0 0 +9.652 5.674 -1.653 0 0 0 0 0 0 0 +9.65 5.714 -1.656 0 0 0 0 0 0 0 +9.645 5.752 -1.658 0 0 0 0 0 0 0 +9.64 5.769 -1.659 0 0 0 0 0 0 0 +9.613 5.795 -1.657 0 0 0 0 0 0 0 +9.591 5.823 -1.657 0 0 0 0 0 0 0 +9.568 5.85 -1.656 0 0 0 0 0 0 0 +9.541 5.875 -1.654 0 0 0 0 0 0 0 +9.528 5.908 -1.655 0 0 0 0 0 0 0 +9.499 5.931 -1.653 0 0 0 0 0 0 0 +9.486 5.944 -1.652 0 0 0 0 0 0 0 +9.473 5.977 -1.653 0 0 0 0 0 0 0 +9.46 6.011 -1.655 0 0 0 0 0 0 0 +9.435 6.036 -1.653 0 0 0 0 0 0 0 +9.414 6.065 -1.653 0 0 0 0 0 0 0 +9.4 6.098 -1.654 0 0 0 0 0 0 0 +9.381 6.127 -1.654 0 0 0 0 0 0 0 +9.383 6.149 -1.656 0 0 0 0 0 0 0 +9.358 6.176 -1.655 0 0 0 0 0 0 0 +9.334 6.202 -1.654 0 0 0 0 0 0 0 +9.321 6.235 -1.656 0 0 0 0 0 0 0 +9.308 6.269 -1.657 0 0 0 0 0 0 0 +9.28 6.293 -1.655 0 0 0 0 0 0 0 +9.257 6.32 -1.655 0 0 0 0 0 0 0 +9.247 6.334 -1.655 0 0 0 0 0 0 0 +9.23 6.365 -1.655 0 0 0 0 0 0 0 +9.205 6.391 -1.654 0 0 0 0 0 0 0 +9.193 6.426 -1.656 0 0 0 0 0 0 0 +9.159 6.444 -1.653 0 0 0 0 0 0 0 +9.14 6.474 -1.653 0 0 0 0 0 0 0 +9.11 6.496 -1.651 0 0 0 0 0 0 0 +9.099 6.531 -1.653 0 0 0 0 0 0 0 +9.086 6.543 -1.653 0 0 0 0 0 0 0 +9.062 6.57 -1.652 0 0 0 0 0 0 0 +9.046 6.601 -1.653 0 0 0 0 0 0 0 +9.025 6.63 -1.653 0 0 0 0 0 0 0 +9 6.655 -1.652 0 0 0 0 0 0 0 +8.987 6.689 -1.654 0 0 0 0 0 0 0 +8.962 6.715 -1.653 0 0 0 0 0 0 0 +8.955 6.731 -1.654 0 0 0 0 0 0 0 +8.942 6.765 -1.655 0 0 0 0 0 0 0 +8.928 6.799 -1.657 0 0 0 0 0 0 0 +8.911 6.831 -1.658 0 0 0 0 0 0 0 +8.896 6.864 -1.659 0 0 0 0 0 0 0 +8.881 6.896 -1.66 0 0 0 0 0 0 0 +8.893 6.929 -1.665 0 0 0 0 0 0 0 +8.861 6.948 -1.663 0 0 0 0 0 0 0 +8.854 6.988 -1.666 0 0 0 0 0 0 0 +8.838 7.021 -1.667 0 0 0 0 0 0 0 +8.822 7.053 -1.668 0 0 0 0 0 0 0 +8.789 7.072 -1.666 0 0 0 0 0 0 0 +8.795 7.122 -1.672 0 0 0 0 0 0 0 +6.761 5.485 -1.257 0 0 0 0 0 0 0 +6.711 5.48 -1.251 0 0 0 0 0 0 0 +6.69 5.497 -1.25 0 0 0 0 0 0 0 +6.668 5.514 -1.249 0 0 0 0 0 0 0 +6.655 5.539 -1.25 0 0 0 0 0 0 0 +6.569 5.503 -1.235 0 0 0 0 0 0 0 +6.647 5.604 -1.255 0 0 0 0 0 0 0 +8.657 7.332 -1.676 0 0 0 0 0 0 0 +8.634 7.359 -1.676 0 0 0 0 0 0 0 +8.614 7.389 -1.677 0 0 0 0 0 0 0 +8.598 7.422 -1.678 0 0 0 0 0 0 0 +8.578 7.452 -1.679 0 0 0 0 0 0 0 +8.559 7.483 -1.68 0 0 0 0 0 0 0 +8.54 7.514 -1.681 0 0 0 0 0 0 0 +8.525 7.548 -1.683 0 0 0 0 0 0 0 +8.529 7.576 -1.686 0 0 0 0 0 0 0 +8.496 7.595 -1.684 0 0 0 0 0 0 0 +8.483 7.631 -1.687 0 0 0 0 0 0 0 +8.451 7.651 -1.685 0 0 0 0 0 0 0 +8.422 7.672 -1.684 0 0 0 0 0 0 0 +8.411 7.71 -1.687 0 0 0 0 0 0 0 +8.399 7.749 -1.689 0 0 0 0 0 0 0 +8.376 7.751 -1.687 0 0 0 0 0 0 0 +8.364 7.79 -1.69 0 0 0 0 0 0 0 +8.34 7.816 -1.69 0 0 0 0 0 0 0 +8.314 7.841 -1.689 0 0 0 0 0 0 0 +8.286 7.864 -1.689 0 0 0 0 0 0 0 +8.276 7.904 -1.692 0 0 0 0 0 0 0 +8.246 7.926 -1.691 0 0 0 0 0 0 0 +8.237 7.941 -1.692 0 0 0 0 0 0 0 +8.222 7.977 -1.694 0 0 0 0 0 0 0 +8.195 8.001 -1.694 0 0 0 0 0 0 0 +8.178 8.035 -1.695 0 0 0 0 0 0 0 +8.164 8.072 -1.698 0 0 0 0 0 0 0 +8.133 8.092 -1.697 0 0 0 0 0 0 0 +8.112 8.122 -1.698 0 0 0 0 0 0 0 +8.108 8.143 -1.699 0 0 0 0 0 0 0 +8.072 8.159 -1.697 0 0 0 0 0 0 0 +8.061 8.198 -1.7 0 0 0 0 0 0 0 +8.036 8.225 -1.701 0 0 0 0 0 0 0 +8.012 8.251 -1.701 0 0 0 0 0 0 0 +7.999 8.291 -1.704 0 0 0 0 0 0 0 +7.968 8.31 -1.703 0 0 0 0 0 0 0 +7.956 8.324 -1.703 0 0 0 0 0 0 0 +7.934 8.353 -1.704 0 0 0 0 0 0 0 +7.914 8.385 -1.706 0 0 0 0 0 0 0 +7.895 8.417 -1.707 0 0 0 0 0 0 0 +7.884 8.459 -1.711 0 0 0 0 0 0 0 +7.856 8.483 -1.711 0 0 0 0 0 0 0 +7.839 8.518 -1.713 0 0 0 0 0 0 0 +7.826 8.53 -1.713 0 0 0 0 0 0 0 +7.803 8.559 -1.714 0 0 0 0 0 0 0 +7.785 8.594 -1.716 0 0 0 0 0 0 0 +7.766 8.627 -1.718 0 0 0 0 0 0 0 +7.747 8.66 -1.72 0 0 0 0 0 0 0 +7.718 8.683 -1.72 0 0 0 0 0 0 0 +7.692 8.709 -1.72 0 0 0 0 0 0 0 +7.689 8.732 -1.722 0 0 0 0 0 0 0 +7.668 8.764 -1.724 0 0 0 0 0 0 0 +7.646 8.794 -1.725 0 0 0 0 0 0 0 +7.618 8.818 -1.725 0 0 0 0 0 0 0 +7.598 8.851 -1.727 0 0 0 0 0 0 0 +7.578 8.884 -1.729 0 0 0 0 0 0 0 +7.55 8.908 -1.729 0 0 0 0 0 0 0 +7.537 8.921 -1.729 0 0 0 0 0 0 0 +7.514 8.951 -1.731 0 0 0 0 0 0 0 +7.491 8.98 -1.732 0 0 0 0 0 0 0 +7.465 9.007 -1.732 0 0 0 0 0 0 0 +7.444 9.039 -1.734 0 0 0 0 0 0 0 +7.422 9.07 -1.736 0 0 0 0 0 0 0 +7.394 9.094 -1.736 0 0 0 0 0 0 0 +7.397 9.127 -1.74 0 0 0 0 0 0 0 +7.367 9.148 -1.74 0 0 0 0 0 0 0 +7.336 9.168 -1.739 0 0 0 0 0 0 0 +7.307 9.191 -1.739 0 0 0 0 0 0 0 +7.288 9.227 -1.742 0 0 0 0 0 0 0 +7.273 9.268 -1.746 0 0 0 0 0 0 0 +7.245 9.293 -1.746 0 0 0 0 0 0 0 +7.233 9.307 -1.747 0 0 0 0 0 0 0 +7.195 9.319 -1.744 0 0 0 0 0 0 0 +7.174 9.352 -1.747 0 0 0 0 0 0 0 +7.149 9.38 -1.748 0 0 0 0 0 0 0 +7.126 9.411 -1.749 0 0 0 0 0 0 0 +7.098 9.435 -1.75 0 0 0 0 0 0 0 +7.073 9.464 -1.751 0 0 0 0 0 0 0 +7.044 9.488 -1.751 0 0 0 0 0 0 0 +7.039 9.512 -1.754 0 0 0 0 0 0 0 +7.001 9.522 -1.752 0 0 0 0 0 0 0 +6.989 9.57 -1.757 0 0 0 0 0 0 0 +6.96 9.593 -1.757 0 0 0 0 0 0 0 +6.922 9.604 -1.755 0 0 0 0 0 0 0 +6.899 9.635 -1.757 0 0 0 0 0 0 0 +6.859 9.644 -1.754 0 0 0 0 0 0 0 +6.852 9.666 -1.756 0 0 0 0 0 0 0 +6.819 9.684 -1.756 0 0 0 0 0 0 0 +6.787 9.703 -1.755 0 0 0 0 0 0 0 +6.754 9.721 -1.754 0 0 0 0 0 0 0 +6.725 9.743 -1.755 0 0 0 0 0 0 0 +6.692 9.761 -1.754 0 0 0 0 0 0 0 +6.673 9.767 -1.753 0 0 0 0 0 0 0 +6.646 9.793 -1.754 0 0 0 0 0 0 0 +6.616 9.815 -1.754 0 0 0 0 0 0 0 +6.586 9.837 -1.755 0 0 0 0 0 0 0 +6.551 9.852 -1.753 0 0 0 0 0 0 0 +6.523 9.877 -1.754 0 0 0 0 0 0 0 +6.486 9.888 -1.753 0 0 0 0 0 0 0 +6.471 9.899 -1.753 0 0 0 0 0 0 0 +6.438 9.916 -1.752 0 0 0 0 0 0 0 +6.416 9.951 -1.755 0 0 0 0 0 0 0 +6.386 9.973 -1.755 0 0 0 0 0 0 0 +6.378 10.03 -1.762 0 0 0 0 0 0 0 +6.38 10.103 -1.772 0 0 0 0 0 0 0 +6.386 10.184 -1.784 0 0 0 0 0 0 0 +6.389 10.261 -1.794 0 0 0 0 0 0 0 +6.417 10.341 -1.807 0 0 0 0 0 0 0 +6.425 10.429 -1.82 0 0 0 0 0 0 0 +6.428 10.506 -1.831 0 0 0 0 0 0 0 +6.428 10.582 -1.841 0 0 0 0 0 0 0 +6.419 10.643 -1.849 0 0 0 0 0 0 0 +6.38 10.653 -1.847 0 0 0 0 0 0 0 +6.356 10.69 -1.85 0 0 0 0 0 0 0 +6.342 10.703 -1.85 0 0 0 0 0 0 0 +6.316 10.737 -1.853 0 0 0 0 0 0 0 +6.273 10.741 -1.85 0 0 0 0 0 0 0 +6.239 10.761 -1.85 0 0 0 0 0 0 0 +6.2 10.77 -1.848 0 0 0 0 0 0 0 +6.166 10.79 -1.848 0 0 0 0 0 0 0 +6.135 10.814 -1.849 0 0 0 0 0 0 0 +6.096 10.825 -1.848 0 0 0 0 0 0 0 +6.075 10.827 -1.846 0 0 0 0 0 0 0 +6.048 10.859 -1.849 0 0 0 0 0 0 0 +6.007 10.865 -1.846 0 0 0 0 0 0 0 +5.972 10.883 -1.846 0 0 0 0 0 0 0 +5.942 10.91 -1.848 0 0 0 0 0 0 0 +5.906 10.925 -1.847 0 0 0 0 0 0 0 +5.89 10.936 -1.847 0 0 0 0 0 0 0 +5.862 10.967 -1.849 0 0 0 0 0 0 0 +5.824 10.978 -1.848 0 0 0 0 0 0 0 +5.788 10.993 -1.848 0 0 0 0 0 0 0 +5.751 11.007 -1.847 0 0 0 0 0 0 0 +5.715 11.022 -1.846 0 0 0 0 0 0 0 +5.671 11.022 -1.843 0 0 0 0 0 0 0 +5.637 11.042 -1.844 0 0 0 0 0 0 0 +5.613 11.037 -1.841 0 0 0 0 0 0 0 +5.573 11.044 -1.839 0 0 0 0 0 0 0 +5.535 11.056 -1.838 0 0 0 0 0 0 0 +5.501 11.073 -1.838 0 0 0 0 0 0 0 +5.463 11.085 -1.837 0 0 0 0 0 0 0 +5.423 11.091 -1.835 0 0 0 0 0 0 0 +5.387 11.105 -1.835 0 0 0 0 0 0 0 +5.368 11.111 -1.834 0 0 0 0 0 0 0 +5.336 11.134 -1.835 0 0 0 0 0 0 0 +5.295 11.138 -1.833 0 0 0 0 0 0 0 +5.259 11.153 -1.833 0 0 0 0 0 0 0 +5.226 11.173 -1.833 0 0 0 0 0 0 0 +5.182 11.171 -1.83 0 0 0 0 0 0 0 +5.146 11.186 -1.83 0 0 0 0 0 0 0 +5.125 11.185 -1.828 0 0 0 0 0 0 0 +5.086 11.193 -1.827 0 0 0 0 0 0 0 +5.049 11.204 -1.826 0 0 0 0 0 0 0 +5.01 11.211 -1.825 0 0 0 0 0 0 0 +4.969 11.214 -1.822 0 0 0 0 0 0 0 +4.928 11.217 -1.82 0 0 0 0 0 0 0 +4.893 11.232 -1.82 0 0 0 0 0 0 0 +4.869 11.225 -1.818 0 0 0 0 0 0 0 +4.828 11.228 -1.816 0 0 0 0 0 0 0 +4.794 11.247 -1.816 0 0 0 0 0 0 0 +4.75 11.241 -1.813 0 0 0 0 0 0 0 +4.72 11.267 -1.815 0 0 0 0 0 0 0 +4.683 11.278 -1.814 0 0 0 0 0 0 0 +4.646 11.289 -1.813 0 0 0 0 0 0 0 +4.627 11.293 -1.813 0 0 0 0 0 0 0 +4.592 11.309 -1.813 0 0 0 0 0 0 0 +4.547 11.302 -1.809 0 0 0 0 0 0 0 +4.509 11.309 -1.808 0 0 0 0 0 0 0 +4.473 11.323 -1.808 0 0 0 0 0 0 0 +4.428 11.311 -1.804 0 0 0 0 0 0 0 +4.394 11.33 -1.805 0 0 0 0 0 0 0 +4.355 11.335 -1.803 0 0 0 0 0 0 0 +4.335 11.336 -1.802 0 0 0 0 0 0 0 +4.3 11.352 -1.802 0 0 0 0 0 0 0 +4.27 11.378 -1.805 0 0 0 0 0 0 0 +4.233 11.389 -1.804 0 0 0 0 0 0 0 +4.196 11.399 -1.804 0 0 0 0 0 0 0 +4.162 11.418 -1.805 0 0 0 0 0 0 0 +4.127 11.433 -1.805 0 0 0 0 0 0 0 +4.106 11.43 -1.803 0 0 0 0 0 0 0 +4.069 11.441 -1.803 0 0 0 0 0 0 0 +4.032 11.45 -1.802 0 0 0 0 0 0 0 +3.995 11.46 -1.802 0 0 0 0 0 0 0 +3.961 11.479 -1.803 0 0 0 0 0 0 0 +3.926 11.493 -1.803 0 0 0 0 0 0 0 +3.891 11.511 -1.804 0 0 0 0 0 0 0 +3.873 11.517 -1.804 0 0 0 0 0 0 0 +3.837 11.529 -1.804 0 0 0 0 0 0 0 +3.803 11.547 -1.805 0 0 0 0 0 0 0 +3.762 11.545 -1.803 0 0 0 0 0 0 0 +3.729 11.568 -1.805 0 0 0 0 0 0 0 +3.694 11.584 -1.806 0 0 0 0 0 0 0 +3.654 11.584 -1.804 0 0 0 0 0 0 0 +3.631 11.575 -1.801 0 0 0 0 0 0 0 +3.588 11.563 -1.797 0 0 0 0 0 0 0 +3.541 11.541 -1.792 0 0 0 0 0 0 0 +3.492 11.508 -1.785 0 0 0 0 0 0 0 +3.456 11.519 -1.785 0 0 0 0 0 0 0 +3.404 11.477 -1.776 0 0 0 0 0 0 0 +3.359 11.457 -1.771 0 0 0 0 0 0 0 +3.338 11.453 -1.769 0 0 0 0 0 0 0 +3.293 11.429 -1.764 0 0 0 0 0 0 0 +3.256 11.437 -1.763 0 0 0 0 0 0 0 +3.227 11.47 -1.767 0 0 0 0 0 0 0 +3.199 11.511 -1.772 0 0 0 0 0 0 0 +3.167 11.538 -1.775 0 0 0 0 0 0 0 +3.13 11.544 -1.774 0 0 0 0 0 0 0 +2.87 10.712 -1.636 0 0 0 0 0 0 0 +2.839 10.663 -1.627 0 0 0 0 0 0 0 +2.806 10.672 -1.627 0 0 0 0 0 0 0 +2.765 10.652 -1.622 0 0 0 0 0 0 0 +2.736 10.678 -1.625 0 0 0 0 0 0 0 +2.697 10.663 -1.621 0 0 0 0 0 0 0 +1.727 6.881 -1.001 0 0 0 0 0 0 0 +1.705 6.886 -1.001 0 0 0 0 0 0 0 +1.682 6.841 -0.993 0 0 0 0 0 0 0 +1.959 8.093 -1.197 0 0 0 0 0 0 0 +2.277 9.56 -1.435 0 0 0 0 0 0 0 +2.509 10.697 -1.619 0 0 0 0 0 0 0 +2.471 10.684 -1.616 0 0 0 0 0 0 0 +2.436 10.685 -1.615 0 0 0 0 0 0 0 +2.404 10.701 -1.616 0 0 0 0 0 0 0 +2.387 10.705 -1.616 0 0 0 0 0 0 0 +2.353 10.708 -1.616 0 0 0 0 0 0 0 +2.319 10.715 -1.616 0 0 0 0 0 0 0 +2.284 10.715 -1.614 0 0 0 0 0 0 0 +2.253 10.736 -1.617 0 0 0 0 0 0 0 +2.219 10.741 -1.616 0 0 0 0 0 0 0 +2.179 10.717 -1.611 0 0 0 0 0 0 0 +2.164 10.732 -1.613 0 0 0 0 0 0 0 +2.132 10.744 -1.614 0 0 0 0 0 0 0 +2.096 10.741 -1.613 0 0 0 0 0 0 0 +2.065 10.761 -1.615 0 0 0 0 0 0 0 +2.029 10.758 -1.613 0 0 0 0 0 0 0 +1.996 10.766 -1.614 0 0 0 0 0 0 0 +1.959 10.755 -1.611 0 0 0 0 0 0 0 +0.598 3.333 -0.412 0 0 0 0 0 0 0 +1.925 10.759 -1.61 0 0 0 0 0 0 0 +1.91 10.774 -1.612 0 0 0 0 0 0 0 +0.594 3.37 -0.418 0 0 0 0 0 0 0 +0.587 3.397 -0.422 0 0 0 0 0 0 0 +0.591 3.491 -0.437 0 0 0 0 0 0 0 +0.581 3.495 -0.437 0 0 0 0 0 0 0 +0.567 3.475 -0.433 0 0 0 0 0 0 0 +0.551 3.413 -0.423 0 0 0 0 0 0 0 +0.538 3.4 -0.421 0 0 0 0 0 0 0 +0.526 3.389 -0.419 0 0 0 0 0 0 0 +0.515 3.391 -0.419 0 0 0 0 0 0 0 +0.506 3.402 -0.421 0 0 0 0 0 0 0 +0.508 3.494 -0.435 0 0 0 0 0 0 0 +0.491 3.451 -0.428 0 0 0 0 0 0 0 +0.471 3.342 -0.41 0 0 0 0 0 0 0 +0.448 3.251 -0.395 0 0 0 0 0 0 0 +0.435 3.227 -0.391 0 0 0 0 0 0 0 +0.424 3.223 -0.39 0 0 0 0 0 0 0 +0.412 3.208 -0.388 0 0 0 0 0 0 0 +0.402 3.213 -0.389 0 0 0 0 0 0 0 +0.391 3.207 -0.387 0 0 0 0 0 0 0 +0.387 3.217 -0.389 0 0 0 0 0 0 0 +0.376 3.205 -0.387 0 0 0 0 0 0 0 +0.366 3.212 -0.388 0 0 0 0 0 0 0 +0.356 3.211 -0.387 0 0 0 0 0 0 0 +0.345 3.204 -0.386 0 0 0 0 0 0 0 +0.335 3.207 -0.386 0 0 0 0 0 0 0 +0.326 3.214 -0.387 0 0 0 0 0 0 0 +0.316 3.217 -0.388 0 0 0 0 0 0 0 +0.31 3.212 -0.387 0 0 0 0 0 0 0 +0.3 3.211 -0.386 0 0 0 0 0 0 0 +0.29 3.217 -0.387 0 0 0 0 0 0 0 +0.28 3.214 -0.387 0 0 0 0 0 0 0 +0.271 3.225 -0.388 0 0 0 0 0 0 0 +0.26 3.222 -0.388 0 0 0 0 0 0 0 +0.25 3.217 -0.387 0 0 0 0 0 0 0 +0.245 3.219 -0.387 0 0 0 0 0 0 0 +0.236 3.24 -0.39 0 0 0 0 0 0 0 +0.225 3.235 -0.389 0 0 0 0 0 0 0 +0.215 3.231 -0.389 0 0 0 0 0 0 0 +0.637 11.054 -1.633 0 0 0 0 0 0 0 +0.185 3.249 -0.391 0 0 0 0 0 0 0 +0.603 11.07 -1.635 0 0 0 0 0 0 0 +0.577 11.623 -1.723 0 0 0 0 0 0 0 +0.541 11.636 -1.725 0 0 0 0 0 0 0 +0.506 11.664 -1.729 0 0 0 0 0 0 0 +0.47 11.673 -1.73 0 0 0 0 0 0 0 +0.434 11.702 -1.734 0 0 0 0 0 0 0 +0.398 11.733 -1.739 0 0 0 0 0 0 0 +0.361 11.734 -1.739 0 0 0 0 0 0 0 +0.343 11.747 -1.741 0 0 0 0 0 0 0 +0.307 11.771 -1.745 0 0 0 0 0 0 0 +0.27 11.766 -1.744 0 0 0 0 0 0 0 +0.233 11.797 -1.748 0 0 0 0 0 0 0 +0.196 11.801 -1.749 0 0 0 0 0 0 0 +0.16 11.869 -1.76 0 0 0 0 0 0 0 +0.126 12.263 -1.822 0 0 0 0 0 0 0 +0.068 12.19 -1.811 0 0 0 0 0 0 0 +0.029 12.046 -1.788 0 0 0 0 0 0 0 +-0.008 11.935 -1.77 0 0 0 0 0 0 0 +-0.046 11.923 -1.768 0 0 0 0 0 0 0 +-0.083 11.902 -1.765 0 0 0 0 0 0 0 +-0.12 11.887 -1.763 0 0 0 0 0 0 0 +-0.158 11.901 -1.765 0 0 0 0 0 0 0 +-0.176 11.875 -1.761 0 0 0 0 0 0 0 +-0.213 11.886 -1.763 0 0 0 0 0 0 0 +-0.251 11.899 -1.765 0 0 0 0 0 0 0 +-0.288 11.879 -1.762 0 0 0 0 0 0 0 +-0.326 11.887 -1.763 0 0 0 0 0 0 0 +-0.363 11.902 -1.766 0 0 0 0 0 0 0 +-0.4 11.887 -1.764 0 0 0 0 0 0 0 +-0.419 11.892 -1.764 0 0 0 0 0 0 0 +-0.457 11.901 -1.766 0 0 0 0 0 0 0 +-0.494 11.888 -1.764 0 0 0 0 0 0 0 +-0.531 11.886 -1.764 0 0 0 0 0 0 0 +-0.569 11.898 -1.766 0 0 0 0 0 0 0 +-0.607 11.898 -1.767 0 0 0 0 0 0 0 +-0.645 11.908 -1.769 0 0 0 0 0 0 0 +-0.662 11.891 -1.766 0 0 0 0 0 0 0 +-0.7 11.899 -1.768 0 0 0 0 0 0 0 +-0.738 11.899 -1.768 0 0 0 0 0 0 0 +-0.775 11.898 -1.768 0 0 0 0 0 0 0 +-0.813 11.9 -1.769 0 0 0 0 0 0 0 +-0.85 11.891 -1.768 0 0 0 0 0 0 0 +-0.888 11.892 -1.769 0 0 0 0 0 0 0 +-0.926 11.895 -1.769 0 0 0 0 0 0 0 +-0.944 11.886 -1.768 0 0 0 0 0 0 0 +-0.981 11.889 -1.769 0 0 0 0 0 0 0 +-1.018 11.88 -1.768 0 0 0 0 0 0 0 +-1.058 11.898 -1.772 0 0 0 0 0 0 0 +-1.093 11.869 -1.768 0 0 0 0 0 0 0 +-1.131 11.88 -1.77 0 0 0 0 0 0 0 +-1.168 11.872 -1.769 0 0 0 0 0 0 0 +-1.186 11.866 -1.769 0 0 0 0 0 0 0 +-1.225 11.88 -1.771 0 0 0 0 0 0 0 +-1.263 11.882 -1.772 0 0 0 0 0 0 0 +-1.306 11.923 -1.78 0 0 0 0 0 0 0 +-1.353 12.004 -1.793 0 0 0 0 0 0 0 +-1.39 11.993 -1.792 0 0 0 0 0 0 0 +-1.426 11.973 -1.79 0 0 0 0 0 0 0 +-1.441 11.944 -1.785 0 0 0 0 0 0 0 +-1.476 11.915 -1.781 0 0 0 0 0 0 0 +-1.508 11.874 -1.775 0 0 0 0 0 0 0 +-1.544 11.857 -1.774 0 0 0 0 0 0 0 +-1.58 11.844 -1.772 0 0 0 0 0 0 0 +-1.616 11.828 -1.77 0 0 0 0 0 0 0 +-1.652 11.813 -1.769 0 0 0 0 0 0 0 +-1.67 11.812 -1.769 0 0 0 0 0 0 0 +-1.709 11.82 -1.771 0 0 0 0 0 0 0 +-1.744 11.795 -1.768 0 0 0 0 0 0 0 +-1.781 11.792 -1.769 0 0 0 0 0 0 0 +-1.82 11.8 -1.771 0 0 0 0 0 0 0 +-1.856 11.788 -1.77 0 0 0 0 0 0 0 +-1.894 11.784 -1.77 0 0 0 0 0 0 0 +-1.913 11.789 -1.771 0 0 0 0 0 0 0 +-1.95 11.781 -1.771 0 0 0 0 0 0 0 +-1.99 11.794 -1.774 0 0 0 0 0 0 0 +-2.023 11.761 -1.77 0 0 0 0 0 0 0 +-2.064 11.78 -1.774 0 0 0 0 0 0 0 +-2.1 11.769 -1.773 0 0 0 0 0 0 0 +-2.136 11.757 -1.772 0 0 0 0 0 0 0 +-2.158 11.769 -1.775 0 0 0 0 0 0 0 +-2.195 11.764 -1.775 0 0 0 0 0 0 0 +-2.232 11.759 -1.775 0 0 0 0 0 0 0 +-2.269 11.75 -1.775 0 0 0 0 0 0 0 +-2.307 11.747 -1.776 0 0 0 0 0 0 0 +-2.344 11.741 -1.776 0 0 0 0 0 0 0 +-2.386 11.759 -1.78 0 0 0 0 0 0 0 +-2.422 11.746 -1.779 0 0 0 0 0 0 0 +-2.443 11.753 -1.781 0 0 0 0 0 0 0 +-2.482 11.759 -1.783 0 0 0 0 0 0 0 +-2.513 11.722 -1.779 0 0 0 0 0 0 0 +-2.557 11.745 -1.784 0 0 0 0 0 0 0 +-2.595 11.745 -1.785 0 0 0 0 0 0 0 +-2.63 11.729 -1.784 0 0 0 0 0 0 0 +-2.665 11.709 -1.782 0 0 0 0 0 0 0 +-2.691 11.741 -1.788 0 0 0 0 0 0 0 +-2.727 11.727 -1.787 0 0 0 0 0 0 0 +-2.765 11.722 -1.787 0 0 0 0 0 0 0 +-2.805 11.729 -1.79 0 0 0 0 0 0 0 +-2.841 11.716 -1.789 0 0 0 0 0 0 0 +-2.879 11.711 -1.79 0 0 0 0 0 0 0 +-2.916 11.704 -1.79 0 0 0 0 0 0 0 +-2.943 11.734 -1.796 0 0 0 0 0 0 0 +-2.966 11.669 -1.787 0 0 0 0 0 0 0 +-2.732 10.618 -1.616 0 0 0 0 0 0 0 +-2.641 10.139 -1.539 0 0 0 0 0 0 0 +-2.632 9.974 -1.513 0 0 0 0 0 0 0 +-2.643 9.894 -1.501 0 0 0 0 0 0 0 +-2.653 9.807 -1.488 0 0 0 0 0 0 0 +-2.65 9.736 -1.477 0 0 0 0 0 0 0 +-2.663 9.665 -1.467 0 0 0 0 0 0 0 +-2.675 9.59 -1.456 0 0 0 0 0 0 0 +-2.684 9.508 -1.443 0 0 0 0 0 0 0 +-2.696 9.438 -1.433 0 0 0 0 0 0 0 +-2.704 9.356 -1.421 0 0 0 0 0 0 0 +-2.725 9.319 -1.416 0 0 0 0 0 0 0 +-2.739 9.259 -1.408 0 0 0 0 0 0 0 +-2.737 9.198 -1.399 0 0 0 0 0 0 0 +-2.753 9.15 -1.392 0 0 0 0 0 0 0 +-2.772 9.109 -1.387 0 0 0 0 0 0 0 +-2.782 9.04 -1.377 0 0 0 0 0 0 0 +-2.8 8.997 -1.371 0 0 0 0 0 0 0 +-2.816 8.949 -1.364 0 0 0 0 0 0 0 +-2.829 8.893 -1.357 0 0 0 0 0 0 0 +-2.828 8.843 -1.349 0 0 0 0 0 0 0 +-2.845 8.801 -1.343 0 0 0 0 0 0 0 +-2.858 8.747 -1.336 0 0 0 0 0 0 0 +-2.872 8.7 -1.33 0 0 0 0 0 0 0 +-2.887 8.654 -1.323 0 0 0 0 0 0 0 +-2.899 8.6 -1.316 0 0 0 0 0 0 0 +-2.918 8.566 -1.312 0 0 0 0 0 0 0 +-2.914 8.513 -1.304 0 0 0 0 0 0 0 +-2.928 8.467 -1.297 0 0 0 0 0 0 0 +-2.94 8.416 -1.29 0 0 0 0 0 0 0 +-2.957 8.381 -1.286 0 0 0 0 0 0 0 +-2.968 8.327 -1.278 0 0 0 0 0 0 0 +-2.982 8.284 -1.273 0 0 0 0 0 0 0 +-2.996 8.243 -1.267 0 0 0 0 0 0 0 +-2.993 8.196 -1.26 0 0 0 0 0 0 0 +-3.009 8.159 -1.256 0 0 0 0 0 0 0 +-3.024 8.122 -1.251 0 0 0 0 0 0 0 +-3.04 8.088 -1.247 0 0 0 0 0 0 0 +-3.053 8.045 -1.241 0 0 0 0 0 0 0 +-3.07 8.014 -1.237 0 0 0 0 0 0 0 +-3.081 7.967 -1.231 0 0 0 0 0 0 0 +-3.106 7.959 -1.231 0 0 0 0 0 0 0 +-3.107 7.925 -1.226 0 0 0 0 0 0 0 +-3.126 7.9 -1.224 0 0 0 0 0 0 0 +-3.138 7.858 -1.218 0 0 0 0 0 0 0 +-3.158 7.837 -1.216 0 0 0 0 0 0 0 +-3.167 7.788 -1.21 0 0 0 0 0 0 0 +-3.183 7.758 -1.206 0 0 0 0 0 0 0 +-3.205 7.743 -1.205 0 0 0 0 0 0 0 +-3.203 7.705 -1.2 0 0 0 0 0 0 0 +-3.216 7.668 -1.195 0 0 0 0 0 0 0 +-3.239 7.654 -1.194 0 0 0 0 0 0 0 +-3.252 7.618 -1.19 0 0 0 0 0 0 0 +-3.264 7.581 -1.185 0 0 0 0 0 0 0 +-3.283 7.56 -1.183 0 0 0 0 0 0 0 +-3.296 7.526 -1.179 0 0 0 0 0 0 0 +-3.302 7.506 -1.177 0 0 0 0 0 0 0 +-3.317 7.478 -1.174 0 0 0 0 0 0 0 +-3.328 7.438 -1.169 0 0 0 0 0 0 0 +-3.344 7.414 -1.166 0 0 0 0 0 0 0 +-3.364 7.394 -1.165 0 0 0 0 0 0 0 +-3.379 7.367 -1.162 0 0 0 0 0 0 0 +-3.384 7.317 -1.155 0 0 0 0 0 0 0 +-3.39 7.299 -1.153 0 0 0 0 0 0 0 +-3.406 7.275 -1.15 0 0 0 0 0 0 0 +-3.424 7.255 -1.149 0 0 0 0 0 0 0 +-3.439 7.226 -1.145 0 0 0 0 0 0 0 +-3.454 7.199 -1.143 0 0 0 0 0 0 0 +-3.468 7.171 -1.139 0 0 0 0 0 0 0 +-3.484 7.147 -1.137 0 0 0 0 0 0 0 +-3.495 7.113 -1.133 0 0 0 0 0 0 0 +-3.507 7.11 -1.133 0 0 0 0 0 0 0 +-3.533 7.106 -1.135 0 0 0 0 0 0 0 +-3.556 7.096 -1.135 0 0 0 0 0 0 0 +-3.58 7.089 -1.136 0 0 0 0 0 0 0 +-3.61 7.091 -1.138 0 0 0 0 0 0 0 +-3.633 7.082 -1.138 0 0 0 0 0 0 0 +-3.661 7.081 -1.14 0 0 0 0 0 0 0 +-3.678 7.087 -1.143 0 0 0 0 0 0 0 +-3.707 7.088 -1.145 0 0 0 0 0 0 0 +-3.726 7.071 -1.144 0 0 0 0 0 0 0 +-3.757 7.075 -1.147 0 0 0 0 0 0 0 +-3.786 7.075 -1.149 0 0 0 0 0 0 0 +-3.819 7.084 -1.153 0 0 0 0 0 0 0 +-3.838 7.067 -1.152 0 0 0 0 0 0 0 +-3.857 7.075 -1.154 0 0 0 0 0 0 0 +-3.883 7.07 -1.155 0 0 0 0 0 0 0 +-3.91 7.066 -1.157 0 0 0 0 0 0 0 +-3.94 7.067 -1.16 0 0 0 0 0 0 0 +-3.976 7.079 -1.164 0 0 0 0 0 0 0 +-3.996 7.063 -1.163 0 0 0 0 0 0 0 +-4.032 7.075 -1.168 0 0 0 0 0 0 0 +-4.043 7.068 -1.168 0 0 0 0 0 0 0 +-4.076 7.074 -1.171 0 0 0 0 0 0 0 +-4.106 7.073 -1.173 0 0 0 0 0 0 0 +-4.131 7.066 -1.174 0 0 0 0 0 0 0 +-4.164 7.071 -1.178 0 0 0 0 0 0 0 +-4.195 7.073 -1.181 0 0 0 0 0 0 0 +-4.227 7.075 -1.183 0 0 0 0 0 0 0 +-4.258 7.077 -1.186 0 0 0 0 0 0 0 +-4.27 7.072 -1.186 0 0 0 0 0 0 0 +-4.308 7.084 -1.191 0 0 0 0 0 0 0 +-4.337 7.082 -1.193 0 0 0 0 0 0 0 +-4.377 7.097 -1.199 0 0 0 0 0 0 0 +-4.403 7.088 -1.2 0 0 0 0 0 0 0 +-4.44 7.098 -1.204 0 0 0 0 0 0 0 +-4.466 7.091 -1.205 0 0 0 0 0 0 0 +-4.5 7.119 -1.212 0 0 0 0 0 0 0 +-4.525 7.109 -1.213 0 0 0 0 0 0 0 +-4.567 7.125 -1.218 0 0 0 0 0 0 0 +-4.596 7.121 -1.22 0 0 0 0 0 0 0 +-4.64 7.139 -1.227 0 0 0 0 0 0 0 +-4.67 7.136 -1.229 0 0 0 0 0 0 0 +-4.715 7.156 -1.235 0 0 0 0 0 0 0 +-4.751 7.161 -1.239 0 0 0 0 0 0 0 +-4.778 7.178 -1.244 0 0 0 0 0 0 0 +-4.814 7.183 -1.248 0 0 0 0 0 0 0 +-4.859 7.2 -1.254 0 0 0 0 0 0 0 +-4.898 7.209 -1.259 0 0 0 0 0 0 0 +-4.936 7.217 -1.263 0 0 0 0 0 0 0 +-4.989 7.245 -1.272 0 0 0 0 0 0 0 +-5.027 7.25 -1.276 0 0 0 0 0 0 0 +-5.053 7.263 -1.28 0 0 0 0 0 0 0 +-6.613 9.429 -1.704 0 0 0 0 0 0 0 +-6.653 9.422 -1.706 0 0 0 0 0 0 0 +-6.678 9.395 -1.705 0 0 0 0 0 0 0 +-6.713 9.382 -1.707 0 0 0 0 0 0 0 +-6.747 9.367 -1.708 0 0 0 0 0 0 0 +-6.774 9.343 -1.707 0 0 0 0 0 0 0 +-6.788 9.331 -1.707 0 0 0 0 0 0 0 +-6.821 9.314 -1.708 0 0 0 0 0 0 0 +-6.858 9.304 -1.71 0 0 0 0 0 0 0 +-6.874 9.265 -1.707 0 0 0 0 0 0 0 +-6.921 9.267 -1.711 0 0 0 0 0 0 0 +-6.933 9.223 -1.707 0 0 0 0 0 0 0 +-6.977 9.22 -1.711 0 0 0 0 0 0 0 +-6.989 9.206 -1.71 0 0 0 0 0 0 0 +-7.03 9.199 -1.713 0 0 0 0 0 0 0 +-7.06 9.179 -1.714 0 0 0 0 0 0 0 +-7.092 9.161 -1.715 0 0 0 0 0 0 0 +-7.127 9.147 -1.716 0 0 0 0 0 0 0 +-7.156 9.124 -1.716 0 0 0 0 0 0 0 +-7.181 9.097 -1.715 0 0 0 0 0 0 0 +-7.203 9.067 -1.714 0 0 0 0 0 0 0 +-7.231 9.072 -1.717 0 0 0 0 0 0 0 +-7.257 9.047 -1.716 0 0 0 0 0 0 0 +-7.289 9.028 -1.717 0 0 0 0 0 0 0 +-7.33 9.021 -1.721 0 0 0 0 0 0 0 +-7.349 8.987 -1.718 0 0 0 0 0 0 0 +-7.394 8.984 -1.722 0 0 0 0 0 0 0 +-7.417 8.954 -1.721 0 0 0 0 0 0 0 +-7.437 8.95 -1.723 0 0 0 0 0 0 0 +-7.481 8.945 -1.726 0 0 0 0 0 0 0 +-7.509 8.921 -1.726 0 0 0 0 0 0 0 +-7.528 8.887 -1.724 0 0 0 0 0 0 0 +-7.565 8.874 -1.726 0 0 0 0 0 0 0 +-7.6 8.859 -1.728 0 0 0 0 0 0 0 +-7.646 8.856 -1.733 0 0 0 0 0 0 0 +-7.671 8.856 -1.735 0 0 0 0 0 0 0 +-7.701 8.835 -1.736 0 0 0 0 0 0 0 +-7.747 8.831 -1.74 0 0 0 0 0 0 0 +-7.775 8.807 -1.74 0 0 0 0 0 0 0 +-7.811 8.793 -1.742 0 0 0 0 0 0 0 +-7.85 8.78 -1.745 0 0 0 0 0 0 0 +-7.884 8.763 -1.747 0 0 0 0 0 0 0 +-7.905 8.759 -1.748 0 0 0 0 0 0 0 +-7.94 8.742 -1.75 0 0 0 0 0 0 0 +-7.978 8.728 -1.753 0 0 0 0 0 0 0 +-8.041 8.742 -1.761 0 0 0 0 0 0 0 +-8.215 8.875 -1.795 0 0 0 0 0 0 0 +-8.59 9.219 -1.876 0 0 0 0 0 0 0 +-8.647 9.223 -1.882 0 0 0 0 0 0 0 +-7.575 8.059 -1.631 0 0 0 0 0 0 0 +-7.617 8.052 -1.635 0 0 0 0 0 0 0 +-8.741 9.177 -1.887 0 0 0 0 0 0 0 +-8.769 9.148 -1.887 0 0 0 0 0 0 0 +-8.817 9.141 -1.892 0 0 0 0 0 0 0 +-8.852 9.12 -1.893 0 0 0 0 0 0 0 +-8.879 9.091 -1.893 0 0 0 0 0 0 0 +-8.919 9.074 -1.895 0 0 0 0 0 0 0 +-8.932 9.059 -1.895 0 0 0 0 0 0 0 +-8.969 9.039 -1.897 0 0 0 0 0 0 0 +-8.997 9.011 -1.897 0 0 0 0 0 0 0 +-9.024 8.981 -1.897 0 0 0 0 0 0 0 +-9.052 8.953 -1.897 0 0 0 0 0 0 0 +-9.075 8.919 -1.895 0 0 0 0 0 0 0 +-9.104 8.891 -1.896 0 0 0 0 0 0 0 +-9.121 8.88 -1.896 0 0 0 0 0 0 0 +-9.151 8.854 -1.897 0 0 0 0 0 0 0 +-9.183 8.829 -1.898 0 0 0 0 0 0 0 +-9.205 8.795 -1.897 0 0 0 0 0 0 0 +-9.239 8.771 -1.898 0 0 0 0 0 0 0 +-9.271 8.746 -1.899 0 0 0 0 0 0 0 +-9.294 8.713 -1.898 0 0 0 0 0 0 0 +-9.325 8.715 -1.902 0 0 0 0 0 0 0 +-9.351 8.684 -1.901 0 0 0 0 0 0 0 +-9.388 8.664 -1.903 0 0 0 0 0 0 0 +-9.411 8.63 -1.903 0 0 0 0 0 0 0 +-9.455 8.617 -1.906 0 0 0 0 0 0 0 +-9.477 8.582 -1.905 0 0 0 0 0 0 0 +-9.521 8.568 -1.909 0 0 0 0 0 0 0 +-9.53 8.549 -1.908 0 0 0 0 0 0 0 +-9.569 8.529 -1.91 0 0 0 0 0 0 0 +-9.604 8.507 -1.912 0 0 0 0 0 0 0 +-9.633 8.478 -1.913 0 0 0 0 0 0 0 +-9.658 8.446 -1.912 0 0 0 0 0 0 0 +-9.698 8.428 -1.915 0 0 0 0 0 0 0 +-9.736 8.407 -1.918 0 0 0 0 0 0 0 +-9.727 8.373 -1.913 0 0 0 0 0 0 0 +-9.75 8.34 -1.912 0 0 0 0 0 0 0 +-9.776 8.309 -1.912 0 0 0 0 0 0 0 +-9.816 8.29 -1.915 0 0 0 0 0 0 0 +-9.849 8.265 -1.917 0 0 0 0 0 0 0 +-9.916 8.268 -1.925 0 0 0 0 0 0 0 +-9.925 8.223 -1.922 0 0 0 0 0 0 0 +-9.963 8.202 -1.924 0 0 0 0 0 0 0 +-9.976 8.186 -1.924 0 0 0 0 0 0 0 +-10.01 8.161 -1.926 0 0 0 0 0 0 0 +-10.034 8.129 -1.925 0 0 0 0 0 0 0 +-10.078 8.112 -1.929 0 0 0 0 0 0 0 +-10.103 8.08 -1.929 0 0 0 0 0 0 0 +-10.141 8.058 -1.932 0 0 0 0 0 0 0 +-10.172 8.031 -1.933 0 0 0 0 0 0 0 +-10.197 8.025 -1.935 0 0 0 0 0 0 0 +-10.226 7.995 -1.936 0 0 0 0 0 0 0 +-10.262 7.971 -1.938 0 0 0 0 0 0 0 +-10.296 7.946 -1.94 0 0 0 0 0 0 0 +-10.334 7.924 -1.943 0 0 0 0 0 0 0 +-10.363 7.895 -1.944 0 0 0 0 0 0 0 +-10.402 7.873 -1.946 0 0 0 0 0 0 0 +-10.419 7.86 -1.947 0 0 0 0 0 0 0 +-10.437 7.823 -1.946 0 0 0 0 0 0 0 +-10.483 7.805 -1.95 0 0 0 0 0 0 0 +-10.515 7.778 -1.952 0 0 0 0 0 0 0 +-10.538 7.744 -1.951 0 0 0 0 0 0 0 +-10.573 7.719 -1.954 0 0 0 0 0 0 0 +-10.605 7.691 -1.955 0 0 0 0 0 0 0 +-10.613 7.671 -1.954 0 0 0 0 0 0 0 +-10.648 7.646 -1.956 0 0 0 0 0 0 0 +-10.669 7.61 -1.956 0 0 0 0 0 0 0 +-10.702 7.583 -1.958 0 0 0 0 0 0 0 +-10.729 7.552 -1.958 0 0 0 0 0 0 0 +-10.772 7.532 -1.962 0 0 0 0 0 0 0 +-10.791 7.494 -1.961 0 0 0 0 0 0 0 +-10.839 7.477 -1.966 0 0 0 0 0 0 0 +-10.854 7.462 -1.967 0 0 0 0 0 0 0 +-10.889 7.436 -1.969 0 0 0 0 0 0 0 +-10.919 7.406 -1.97 0 0 0 0 0 0 0 +-10.953 7.38 -1.972 0 0 0 0 0 0 0 +-10.985 7.351 -1.974 0 0 0 0 0 0 0 +-11.008 7.316 -1.974 0 0 0 0 0 0 0 +-6.743 4.448 -1.157 0 0 0 0 0 0 0 +-6.737 4.414 -1.154 0 0 0 0 0 0 0 +-6.742 4.387 -1.152 0 0 0 0 0 0 0 +-6.753 4.364 -1.151 0 0 0 0 0 0 0 +-6.772 4.346 -1.152 0 0 0 0 0 0 0 +-6.815 4.344 -1.158 0 0 0 0 0 0 0 +-6.826 4.32 -1.157 0 0 0 0 0 0 0 +-11.227 7.061 -1.981 0 0 0 0 0 0 0 +-11.234 7.017 -1.978 0 0 0 0 0 0 0 +-11.261 6.984 -1.979 0 0 0 0 0 0 0 +-11.294 6.956 -1.981 0 0 0 0 0 0 0 +-11.367 6.951 -1.991 0 0 0 0 0 0 0 +-11.431 6.941 -1.999 0 0 0 0 0 0 0 +-11.458 6.908 -1.999 0 0 0 0 0 0 0 +-11.463 6.887 -1.999 0 0 0 0 0 0 0 +-11.492 6.855 -2 0 0 0 0 0 0 0 +-11.535 6.832 -2.004 0 0 0 0 0 0 0 +-11.562 6.799 -2.005 0 0 0 0 0 0 0 +-11.576 6.759 -2.004 0 0 0 0 0 0 0 +-11.603 6.725 -2.004 0 0 0 0 0 0 0 +-11.622 6.688 -2.004 0 0 0 0 0 0 0 +-11.658 6.684 -2.009 0 0 0 0 0 0 0 +-11.684 6.65 -2.01 0 0 0 0 0 0 0 +-11.709 6.616 -2.01 0 0 0 0 0 0 0 +-11.721 6.574 -2.009 0 0 0 0 0 0 0 +-11.698 6.513 -2.001 0 0 0 0 0 0 0 +-11.67 6.45 -1.992 0 0 0 0 0 0 0 +-11.692 6.414 -1.993 0 0 0 0 0 0 0 +-11.702 6.396 -1.993 0 0 0 0 0 0 0 +-11.76 6.379 -1.999 0 0 0 0 0 0 0 +-11.794 6.35 -2.002 0 0 0 0 0 0 0 +-11.823 6.317 -2.004 0 0 0 0 0 0 0 +-11.838 6.278 -2.003 0 0 0 0 0 0 0 +-11.855 6.239 -2.002 0 0 0 0 0 0 0 +-11.852 6.19 -1.998 0 0 0 0 0 0 0 +-11.879 6.157 -1.999 0 0 0 0 0 0 0 +-11.867 6.127 -1.996 0 0 0 0 0 0 0 +-11.895 6.094 -1.997 0 0 0 0 0 0 0 +-11.921 6.06 -1.999 0 0 0 0 0 0 0 +-7.33 3.68 -1.177 0 0 0 0 0 0 0 +-7.322 3.647 -1.174 0 0 0 0 0 0 0 +-11.977 5.901 -1.995 0 0 0 0 0 0 0 +-12.002 5.89 -1.998 0 0 0 0 0 0 0 +-11.999 5.842 -1.994 0 0 0 0 0 0 0 +-12.03 5.81 -1.996 0 0 0 0 0 0 0 +-12.047 5.771 -1.996 0 0 0 0 0 0 0 +-12.059 5.731 -1.995 0 0 0 0 0 0 0 +-12.07 5.689 -1.994 0 0 0 0 0 0 0 +-12.086 5.651 -1.993 0 0 0 0 0 0 0 +-12.097 5.632 -1.994 0 0 0 0 0 0 0 +-12.1 5.588 -1.991 0 0 0 0 0 0 0 +-12.13 5.556 -1.993 0 0 0 0 0 0 0 +-12.14 5.514 -1.992 0 0 0 0 0 0 0 +-12.136 5.466 -1.988 0 0 0 0 0 0 0 +-12.171 5.436 -1.992 0 0 0 0 0 0 0 +-12.168 5.389 -1.988 0 0 0 0 0 0 0 +-12.175 5.369 -1.988 0 0 0 0 0 0 0 +-12.197 5.333 -1.989 0 0 0 0 0 0 0 +-12.196 5.287 -1.986 0 0 0 0 0 0 0 +-12.198 5.243 -1.983 0 0 0 0 0 0 0 +-12.221 5.207 -1.984 0 0 0 0 0 0 0 +-12.227 5.164 -1.983 0 0 0 0 0 0 0 +-12.239 5.124 -1.982 0 0 0 0 0 0 0 +-12.258 5.11 -1.984 0 0 0 0 0 0 0 +-12.258 5.064 -1.981 0 0 0 0 0 0 0 +-12.272 5.025 -1.981 0 0 0 0 0 0 0 +-12.278 4.983 -1.979 0 0 0 0 0 0 0 +-12.301 4.947 -1.98 0 0 0 0 0 0 0 +-12.306 4.904 -1.978 0 0 0 0 0 0 0 +-12.314 4.863 -1.977 0 0 0 0 0 0 0 +-12.368 4.839 -1.984 0 0 0 0 0 0 0 +-12.366 4.816 -1.982 0 0 0 0 0 0 0 +-12.385 4.778 -1.983 0 0 0 0 0 0 0 +-12.411 4.744 -1.985 0 0 0 0 0 0 0 +-12.439 4.71 -1.987 0 0 0 0 0 0 0 +-12.503 4.689 -1.995 0 0 0 0 0 0 0 +-12.527 4.653 -1.997 0 0 0 0 0 0 0 +-12.516 4.604 -1.993 0 0 0 0 0 0 0 +-12.508 4.579 -1.99 0 0 0 0 0 0 0 +-12.515 4.537 -1.989 0 0 0 0 0 0 0 +-12.496 4.486 -1.983 0 0 0 0 0 0 0 +-12.506 4.445 -1.983 0 0 0 0 0 0 0 +-12.492 4.396 -1.978 0 0 0 0 0 0 0 +-12.504 4.356 -1.977 0 0 0 0 0 0 0 +-12.51 4.315 -1.976 0 0 0 0 0 0 0 +-12.519 4.296 -1.977 0 0 0 0 0 0 0 +-12.526 4.254 -1.976 0 0 0 0 0 0 0 +-12.534 4.213 -1.975 0 0 0 0 0 0 0 +-12.525 4.166 -1.971 0 0 0 0 0 0 0 +-12.534 4.126 -1.97 0 0 0 0 0 0 0 +-12.547 4.086 -1.97 0 0 0 0 0 0 0 +-12.543 4.041 -1.967 0 0 0 0 0 0 0 +-12.54 4.019 -1.966 0 0 0 0 0 0 0 +-12.554 3.98 -1.966 0 0 0 0 0 0 0 +-12.563 3.939 -1.966 0 0 0 0 0 0 0 +-12.56 3.895 -1.963 0 0 0 0 0 0 0 +-12.565 3.853 -1.962 0 0 0 0 0 0 0 +-12.579 3.814 -1.962 0 0 0 0 0 0 0 +-12.558 3.765 -1.957 0 0 0 0 0 0 0 +-12.578 3.749 -1.959 0 0 0 0 0 0 0 +-12.585 3.709 -1.958 0 0 0 0 0 0 0 +-12.586 3.666 -1.956 0 0 0 0 0 0 0 +-12.597 3.626 -1.956 0 0 0 0 0 0 0 +-12.599 3.584 -1.955 0 0 0 0 0 0 0 +-12.601 3.542 -1.953 0 0 0 0 0 0 0 +-12.623 3.505 -1.955 0 0 0 0 0 0 0 +-10.16 2.809 -1.549 0 0 0 0 0 0 0 +-10.043 2.743 -1.528 0 0 0 0 0 0 0 +-9.614 2.595 -1.456 0 0 0 0 0 0 0 +-9.315 2.484 -1.406 0 0 0 0 0 0 0 +-8.984 2.366 -1.35 0 0 0 0 0 0 0 +-8.638 2.247 -1.292 0 0 0 0 0 0 0 +-8.336 2.142 -1.241 0 0 0 0 0 0 0 +-8.077 2.063 -1.198 0 0 0 0 0 0 0 +-7.875 1.985 -1.164 0 0 0 0 0 0 0 +-7.639 1.901 -1.125 0 0 0 0 0 0 0 +-7.363 1.809 -1.079 0 0 0 0 0 0 0 +-7.257 1.759 -1.06 0 0 0 0 0 0 0 +-7.23 1.729 -1.055 0 0 0 0 0 0 0 +-7.18 1.693 -1.046 0 0 0 0 0 0 0 +-7.153 1.675 -1.041 0 0 0 0 0 0 0 +-7.132 1.599 -1.035 0 0 0 0 0 0 0 +-7.157 1.581 -1.038 0 0 0 0 0 0 0 +-7.115 1.549 -1.031 0 0 0 0 0 0 0 +-7.118 1.526 -1.031 0 0 0 0 0 0 0 +-7.091 1.509 -1.026 0 0 0 0 0 0 0 +-7.077 1.483 -1.023 0 0 0 0 0 0 0 +-7.064 1.457 -1.02 0 0 0 0 0 0 0 +-7.057 1.432 -1.018 0 0 0 0 0 0 0 +-7.054 1.409 -1.017 0 0 0 0 0 0 0 +-7.011 1.377 -1.009 0 0 0 0 0 0 0 +-6.996 1.352 -1.006 0 0 0 0 0 0 0 +-7.012 1.332 -1.008 0 0 0 0 0 0 0 +-7.001 1.318 -1.006 0 0 0 0 0 0 0 +-7.001 1.296 -1.005 0 0 0 0 0 0 0 +-6.976 1.268 -1 0 0 0 0 0 0 0 +-6.966 1.244 -0.998 0 0 0 0 0 0 0 +-6.958 1.22 -0.996 0 0 0 0 0 0 0 +-6.946 1.196 -0.994 0 0 0 0 0 0 0 +-6.96 1.176 -0.995 0 0 0 0 0 0 0 +-6.96 1.164 -0.995 0 0 0 0 0 0 0 +-6.963 1.142 -0.995 0 0 0 0 0 0 0 +-6.963 1.12 -0.994 0 0 0 0 0 0 0 +-6.967 1.098 -0.994 0 0 0 0 0 0 0 +-6.974 1.077 -0.995 0 0 0 0 0 0 0 +-6.977 1.055 -0.995 0 0 0 0 0 0 0 +-6.992 1.035 -0.997 0 0 0 0 0 0 0 +-6.999 1.013 -0.998 0 0 0 0 0 0 0 +-7.001 1.002 -0.998 0 0 0 0 0 0 0 +-6.977 0.976 -0.993 0 0 0 0 0 0 0 +-6.997 0.957 -0.996 0 0 0 0 0 0 0 +-6.992 0.934 -0.995 0 0 0 0 0 0 0 +-6.99 0.911 -0.994 0 0 0 0 0 0 0 +-7 0.89 -0.995 0 0 0 0 0 0 0 +-6.995 0.867 -0.994 0 0 0 0 0 0 0 +-7.002 0.857 -0.995 0 0 0 0 0 0 0 +-7.005 0.835 -0.995 0 0 0 0 0 0 0 +-7.002 0.812 -0.994 0 0 0 0 0 0 0 +-7.016 0.792 -0.996 0 0 0 0 0 0 0 +-7.029 0.748 -0.997 0 0 0 0 0 0 0 +-7.005 0.724 -0.993 0 0 0 0 0 0 0 +-7.036 0.716 -0.998 0 0 0 0 0 0 0 +-7.036 0.693 -0.997 0 0 0 0 0 0 0 +-7.048 0.672 -0.999 0 0 0 0 0 0 0 +-7.058 0.651 -1 0 0 0 0 0 0 0 +-7.058 0.628 -1 0 0 0 0 0 0 0 +-7.086 0.608 -1.004 0 0 0 0 0 0 0 +-7.086 0.586 -1.004 0 0 0 0 0 0 0 +-7.11 0.576 -1.007 0 0 0 0 0 0 0 +-7.118 0.555 -1.008 0 0 0 0 0 0 0 +-7.155 0.535 -1.014 0 0 0 0 0 0 0 +-7.171 0.513 -1.016 0 0 0 0 0 0 0 +-7.17 0.49 -1.016 0 0 0 0 0 0 0 +-7.168 0.468 -1.015 0 0 0 0 0 0 0 +-7.203 0.447 -1.021 0 0 0 0 0 0 0 +-7.192 0.435 -1.019 0 0 0 0 0 0 0 +-7.203 0.413 -1.02 0 0 0 0 0 0 0 +-7.23 0.392 -1.024 0 0 0 0 0 0 0 +-7.235 0.369 -1.025 0 0 0 0 0 0 0 +-7.24 0.347 -1.026 0 0 0 0 0 0 0 +-7.272 0.325 -1.031 0 0 0 0 0 0 0 +-7.323 0.304 -1.038 0 0 0 0 0 0 0 +-7.373 0.283 -1.046 0 0 0 0 0 0 0 +-7.431 0.273 -1.055 0 0 0 0 0 0 0 +-7.471 0.251 -1.062 0 0 0 0 0 0 0 +-7.503 0.229 -1.067 0 0 0 0 0 0 0 +-7.714 0.186 -1.1 0 0 0 0 0 0 0 +-7.521 0.158 -1.069 0 0 0 0 0 0 0 +-7.804 0.139 -1.114 0 0 0 0 0 0 0 +-7.583 0.123 -1.079 0 0 0 0 0 0 0 +-12.851 0.151 -1.916 0 0 0 0 0 0 0 +-12.847 0.11 -1.915 0 0 0 0 0 0 0 +-12.866 0.07 -1.918 0 0 0 0 0 0 0 +-12.844 0.03 -1.914 0 0 0 0 0 0 0 +-12.862 -0.011 -1.917 0 0 0 0 0 0 0 +-12.842 -0.051 -1.914 0 0 0 0 0 0 0 +-12.864 -0.071 -1.918 0 0 0 0 0 0 0 +-12.857 -0.112 -1.917 0 0 0 0 0 0 0 +-12.869 -0.152 -1.919 0 0 0 0 0 0 0 +-12.858 -0.193 -1.917 0 0 0 0 0 0 0 +-12.879 -0.233 -1.92 0 0 0 0 0 0 0 +-12.875 -0.274 -1.92 0 0 0 0 0 0 0 +-12.888 -0.315 -1.922 0 0 0 0 0 0 0 +-12.879 -0.335 -1.921 0 0 0 0 0 0 0 +-12.89 -0.375 -1.923 0 0 0 0 0 0 0 +-12.891 -0.416 -1.923 0 0 0 0 0 0 0 +-14.058 -0.5 -2.109 0 0 0 0 0 0 0 +-14.082 -0.545 -2.113 0 0 0 0 0 0 0 +-14.084 -0.59 -2.113 0 0 0 0 0 0 0 +-14.112 -0.635 -2.118 0 0 0 0 0 0 0 +-14.112 -0.68 -2.118 0 0 0 0 0 0 0 +-14.129 -0.725 -2.122 0 0 0 0 0 0 0 +-14.132 -0.748 -2.122 0 0 0 0 0 0 0 +-14.129 -0.792 -2.122 0 0 0 0 0 0 0 +-14.141 -0.837 -2.124 0 0 0 0 0 0 0 +-14.14 -0.882 -2.125 0 0 0 0 0 0 0 +-14.161 -0.928 -2.128 0 0 0 0 0 0 0 +-14.168 -0.973 -2.13 0 0 0 0 0 0 0 +-14.17 -1.018 -2.131 0 0 0 0 0 0 0 +-14.179 -1.041 -2.132 0 0 0 0 0 0 0 +-14.183 -1.086 -2.134 0 0 0 0 0 0 0 +-14.178 -1.131 -2.133 0 0 0 0 0 0 0 +-14.194 -1.177 -2.137 0 0 0 0 0 0 0 +-14.198 -1.222 -2.138 0 0 0 0 0 0 0 +-14.2 -1.267 -2.139 0 0 0 0 0 0 0 +-14.198 -1.312 -2.139 0 0 0 0 0 0 0 +-14.206 -1.335 -2.141 0 0 0 0 0 0 0 +-14.207 -1.38 -2.142 0 0 0 0 0 0 0 +-14.205 -1.425 -2.142 0 0 0 0 0 0 0 +-14.212 -1.471 -2.144 0 0 0 0 0 0 0 +-14.203 -1.515 -2.143 0 0 0 0 0 0 0 +-14.23 -1.563 -2.148 0 0 0 0 0 0 0 +-14.213 -1.607 -2.146 0 0 0 0 0 0 0 +-14.236 -1.632 -2.15 0 0 0 0 0 0 0 +-14.223 -1.676 -2.149 0 0 0 0 0 0 0 +-14.212 -1.72 -2.148 0 0 0 0 0 0 0 +-14.228 -1.767 -2.152 0 0 0 0 0 0 0 +-14.22 -1.812 -2.151 0 0 0 0 0 0 0 +-14.232 -1.859 -2.154 0 0 0 0 0 0 0 +-14.224 -1.903 -2.154 0 0 0 0 0 0 0 +-14.219 -1.925 -2.154 0 0 0 0 0 0 0 +-14.205 -1.969 -2.152 0 0 0 0 0 0 0 +-14.209 -2.015 -2.154 0 0 0 0 0 0 0 +-14.214 -2.061 -2.156 0 0 0 0 0 0 0 +-14.218 -2.107 -2.157 0 0 0 0 0 0 0 +-14.224 -2.154 -2.159 0 0 0 0 0 0 0 +-14.241 -2.202 -2.163 0 0 0 0 0 0 0 +-14.232 -2.247 -2.163 0 0 0 0 0 0 0 +-14.266 -2.275 -2.169 0 0 0 0 0 0 0 +-14.264 -2.321 -2.17 0 0 0 0 0 0 0 +-14.224 -2.36 -2.165 0 0 0 0 0 0 0 +-14.228 -2.407 -2.166 0 0 0 0 0 0 0 +-14.209 -2.449 -2.165 0 0 0 0 0 0 0 +-14.215 -2.496 -2.167 0 0 0 0 0 0 0 +-14.195 -2.539 -2.165 0 0 0 0 0 0 0 +-14.197 -2.562 -2.166 0 0 0 0 0 0 0 +-14.16 -2.601 -2.161 0 0 0 0 0 0 0 +-14.153 -2.646 -2.161 0 0 0 0 0 0 0 +-14.133 -2.688 -2.159 0 0 0 0 0 0 0 +-14.115 -2.731 -2.158 0 0 0 0 0 0 0 +-14.114 -2.777 -2.159 0 0 0 0 0 0 0 +-14.07 -2.814 -2.154 0 0 0 0 0 0 0 +-14.072 -2.837 -2.154 0 0 0 0 0 0 0 +-14.069 -2.883 -2.155 0 0 0 0 0 0 0 +-14.05 -2.925 -2.154 0 0 0 0 0 0 0 +-14.058 -2.973 -2.157 0 0 0 0 0 0 0 +-14.025 -3.012 -2.153 0 0 0 0 0 0 0 +-14.018 -3.056 -2.153 0 0 0 0 0 0 0 +-13.991 -3.097 -2.15 0 0 0 0 0 0 0 +-13.984 -3.118 -2.15 0 0 0 0 0 0 0 +-13.978 -3.163 -2.151 0 0 0 0 0 0 0 +-13.96 -3.205 -2.149 0 0 0 0 0 0 0 +-13.937 -3.246 -2.147 0 0 0 0 0 0 0 +-13.942 -3.293 -2.15 0 0 0 0 0 0 0 +-13.924 -3.335 -2.148 0 0 0 0 0 0 0 +-13.911 -3.378 -2.148 0 0 0 0 0 0 0 +-13.91 -3.401 -2.149 0 0 0 0 0 0 0 +-13.899 -3.445 -2.149 0 0 0 0 0 0 0 +-13.877 -3.485 -2.147 0 0 0 0 0 0 0 +-13.86 -3.528 -2.146 0 0 0 0 0 0 0 +-13.831 -3.567 -2.143 0 0 0 0 0 0 0 +-13.816 -3.609 -2.143 0 0 0 0 0 0 0 +-13.815 -3.655 -2.144 0 0 0 0 0 0 0 +-13.805 -3.676 -2.143 0 0 0 0 0 0 0 +-13.782 -3.716 -2.142 0 0 0 0 0 0 0 +-13.761 -3.757 -2.14 0 0 0 0 0 0 0 +-13.749 -3.8 -2.14 0 0 0 0 0 0 0 +-13.722 -3.839 -2.138 0 0 0 0 0 0 0 +-13.706 -3.881 -2.137 0 0 0 0 0 0 0 +-13.701 -3.926 -2.138 0 0 0 0 0 0 0 +-13.689 -3.946 -2.137 0 0 0 0 0 0 0 +-13.677 -3.989 -2.137 0 0 0 0 0 0 0 +-13.653 -4.028 -2.135 0 0 0 0 0 0 0 +-13.646 -4.073 -2.136 0 0 0 0 0 0 0 +-13.612 -4.109 -2.133 0 0 0 0 0 0 0 +-13.601 -4.153 -2.133 0 0 0 0 0 0 0 +-13.578 -4.193 -2.132 0 0 0 0 0 0 0 +-13.563 -4.235 -2.131 0 0 0 0 0 0 0 +-13.545 -4.252 -2.129 0 0 0 0 0 0 0 +-13.541 -4.298 -2.131 0 0 0 0 0 0 0 +-13.503 -4.333 -2.127 0 0 0 0 0 0 0 +-13.495 -4.377 -2.128 0 0 0 0 0 0 0 +-13.466 -4.414 -2.125 0 0 0 0 0 0 0 +-13.46 -4.459 -2.127 0 0 0 0 0 0 0 +-13.431 -4.496 -2.124 0 0 0 0 0 0 0 +-13.414 -4.514 -2.122 0 0 0 0 0 0 0 +-13.391 -4.553 -2.121 0 0 0 0 0 0 0 +-13.369 -4.592 -2.12 0 0 0 0 0 0 0 +-13.338 -4.629 -2.117 0 0 0 0 0 0 0 +-13.318 -4.669 -2.116 0 0 0 0 0 0 0 +-13.308 -4.712 -2.117 0 0 0 0 0 0 0 +-13.279 -4.749 -2.114 0 0 0 0 0 0 0 +-13.279 -4.772 -2.116 0 0 0 0 0 0 0 +-13.256 -4.811 -2.114 0 0 0 0 0 0 0 +-13.228 -4.848 -2.112 0 0 0 0 0 0 0 +-13.2 -4.885 -2.11 0 0 0 0 0 0 0 +-13.181 -4.925 -2.109 0 0 0 0 0 0 0 +-13.171 -4.968 -2.11 0 0 0 0 0 0 0 +-13.14 -5.004 -2.108 0 0 0 0 0 0 0 +-13.127 -5.023 -2.107 0 0 0 0 0 0 0 +-13.12 -5.067 -2.108 0 0 0 0 0 0 0 +-13.102 -5.108 -2.108 0 0 0 0 0 0 0 +-13.084 -5.148 -2.108 0 0 0 0 0 0 0 +-13.063 -5.187 -2.107 0 0 0 0 0 0 0 +-13.037 -5.224 -2.105 0 0 0 0 0 0 0 +-13.037 -5.272 -2.108 0 0 0 0 0 0 0 +-13.014 -5.287 -2.106 0 0 0 0 0 0 0 +-13.014 -5.334 -2.108 0 0 0 0 0 0 0 +-12.999 -5.376 -2.109 0 0 0 0 0 0 0 +-12.997 -5.423 -2.111 0 0 0 0 0 0 0 +-12.987 -5.467 -2.112 0 0 0 0 0 0 0 +-12.979 -5.511 -2.114 0 0 0 0 0 0 0 +-12.967 -5.554 -2.115 0 0 0 0 0 0 0 +-12.947 -5.57 -2.113 0 0 0 0 0 0 0 +-12.953 -5.621 -2.117 0 0 0 0 0 0 0 +-12.939 -5.663 -2.118 0 0 0 0 0 0 0 +-12.921 -5.704 -2.118 0 0 0 0 0 0 0 +-12.907 -5.746 -2.118 0 0 0 0 0 0 0 +-12.916 -5.799 -2.123 0 0 0 0 0 0 0 +-12.908 -5.844 -2.125 0 0 0 0 0 0 0 +-12.91 -5.869 -2.127 0 0 0 0 0 0 0 +-12.904 -5.916 -2.129 0 0 0 0 0 0 0 +-12.878 -5.953 -2.128 0 0 0 0 0 0 0 +-12.866 -5.997 -2.129 0 0 0 0 0 0 0 +-12.844 -6.035 -2.128 0 0 0 0 0 0 0 +-12.85 -6.088 -2.133 0 0 0 0 0 0 0 +-12.822 -6.124 -2.131 0 0 0 0 0 0 0 +-12.81 -6.143 -2.131 0 0 0 0 0 0 0 +-12.787 -6.181 -2.13 0 0 0 0 0 0 0 +-12.752 -6.214 -2.127 0 0 0 0 0 0 0 +-12.716 -6.246 -2.125 0 0 0 0 0 0 0 +-12.714 -6.295 -2.128 0 0 0 0 0 0 0 +-12.65 -6.312 -2.12 0 0 0 0 0 0 0 +-12.636 -6.355 -2.121 0 0 0 0 0 0 0 +-12.603 -6.363 -2.117 0 0 0 0 0 0 0 +-12.595 -6.409 -2.119 0 0 0 0 0 0 0 +-12.55 -6.436 -2.115 0 0 0 0 0 0 0 +-12.551 -6.486 -2.118 0 0 0 0 0 0 0 +-12.499 -6.509 -2.113 0 0 0 0 0 0 0 +-12.482 -6.55 -2.113 0 0 0 0 0 0 0 +-12.451 -6.584 -2.111 0 0 0 0 0 0 0 +-12.429 -6.622 -2.111 0 0 0 0 0 0 0 +-12.392 -6.627 -2.106 0 0 0 0 0 0 0 +-12.364 -6.662 -2.105 0 0 0 0 0 0 0 +-12.315 -6.686 -2.1 0 0 0 0 0 0 0 +-12.287 -6.721 -2.099 0 0 0 0 0 0 0 +-12.242 -6.746 -2.095 0 0 0 0 0 0 0 +-12.216 -6.782 -2.094 0 0 0 0 0 0 0 +-12.172 -6.807 -2.09 0 0 0 0 0 0 0 +-12.154 -6.823 -2.088 0 0 0 0 0 0 0 +-12.071 -6.826 -2.077 0 0 0 0 0 0 0 +-12.027 -6.851 -2.073 0 0 0 0 0 0 0 +-11.977 -6.872 -2.068 0 0 0 0 0 0 0 +-11.922 -6.891 -2.062 0 0 0 0 0 0 0 +-11.897 -6.926 -2.061 0 0 0 0 0 0 0 +-11.872 -6.961 -2.06 0 0 0 0 0 0 0 +-11.854 -6.976 -2.059 0 0 0 0 0 0 0 +-11.826 -7.009 -2.058 0 0 0 0 0 0 0 +-11.792 -7.039 -2.056 0 0 0 0 0 0 0 +-11.746 -7.062 -2.051 0 0 0 0 0 0 0 +-11.713 -7.093 -2.049 0 0 0 0 0 0 0 +-11.676 -7.12 -2.047 0 0 0 0 0 0 0 +-11.638 -7.147 -2.044 0 0 0 0 0 0 0 +-11.612 -7.156 -2.041 0 0 0 0 0 0 0 +-11.571 -7.181 -2.037 0 0 0 0 0 0 0 +-11.528 -7.205 -2.034 0 0 0 0 0 0 0 +-11.499 -7.237 -2.032 0 0 0 0 0 0 0 +-11.466 -7.267 -2.031 0 0 0 0 0 0 0 +-11.427 -7.292 -2.027 0 0 0 0 0 0 0 +-11.402 -7.327 -2.027 0 0 0 0 0 0 0 +-11.381 -7.338 -2.025 0 0 0 0 0 0 0 +-11.334 -7.359 -2.021 0 0 0 0 0 0 0 +-11.313 -7.395 -2.021 0 0 0 0 0 0 0 +-11.275 -7.421 -2.018 0 0 0 0 0 0 0 +-11.23 -7.442 -2.014 0 0 0 0 0 0 0 +-11.206 -7.478 -2.014 0 0 0 0 0 0 0 +-11.178 -7.509 -2.013 0 0 0 0 0 0 0 +-11.151 -7.517 -2.01 0 0 0 0 0 0 0 +-11.121 -7.548 -2.009 0 0 0 0 0 0 0 +-11.088 -7.576 -2.007 0 0 0 0 0 0 0 +-11.03 -7.587 -2.001 0 0 0 0 0 0 0 +-11.009 -7.624 -2.001 0 0 0 0 0 0 0 +-10.948 -7.632 -1.994 0 0 0 0 0 0 0 +-10.872 -7.63 -1.984 0 0 0 0 0 0 0 +-10.754 -7.572 -1.963 0 0 0 0 0 0 0 +-10.664 -7.559 -1.951 0 0 0 0 0 0 0 +-10.634 -7.588 -1.949 0 0 0 0 0 0 0 +-10.597 -7.612 -1.947 0 0 0 0 0 0 0 +-10.544 -7.624 -1.941 0 0 0 0 0 0 0 +-10.514 -7.653 -1.94 0 0 0 0 0 0 0 +-10.539 -7.722 -1.95 0 0 0 0 0 0 0 +-10.627 -7.838 -1.972 0 0 0 0 0 0 0 +-10.287 -7.611 -1.907 0 0 0 0 0 0 0 +-10.138 -7.55 -1.882 0 0 0 0 0 0 0 +-10.472 -7.852 -1.953 0 0 0 0 0 0 0 +-10.519 -7.938 -1.967 0 0 0 0 0 0 0 +-10.486 -7.965 -1.966 0 0 0 0 0 0 0 +-10.456 -7.994 -1.965 0 0 0 0 0 0 0 +-10.414 -8.014 -1.961 0 0 0 0 0 0 0 +-10.387 -8.019 -1.959 0 0 0 0 0 0 0 +-10.357 -8.048 -1.958 0 0 0 0 0 0 0 +-10.312 -8.065 -1.954 0 0 0 0 0 0 0 +-10.285 -8.096 -1.953 0 0 0 0 0 0 0 +-10.253 -8.123 -1.952 0 0 0 0 0 0 0 +-10.206 -8.138 -1.948 0 0 0 0 0 0 0 +-10.166 -8.159 -1.945 0 0 0 0 0 0 0 +-10.15 -8.173 -1.944 0 0 0 0 0 0 0 +-10.114 -8.196 -1.942 0 0 0 0 0 0 0 +-10.071 -8.214 -1.939 0 0 0 0 0 0 0 +-10.042 -8.243 -1.938 0 0 0 0 0 0 0 +-10.001 -8.262 -1.935 0 0 0 0 0 0 0 +-9.981 -8.298 -1.936 0 0 0 0 0 0 0 +-9.949 -8.324 -1.935 0 0 0 0 0 0 0 +-9.919 -8.326 -1.931 0 0 0 0 0 0 0 +-9.895 -8.358 -1.932 0 0 0 0 0 0 0 +-9.858 -8.381 -1.929 0 0 0 0 0 0 0 +-9.82 -8.401 -1.927 0 0 0 0 0 0 0 +-9.789 -8.428 -1.926 0 0 0 0 0 0 0 +-9.747 -8.446 -1.923 0 0 0 0 0 0 0 +-9.716 -8.473 -1.922 0 0 0 0 0 0 0 +-9.685 -8.472 -1.918 0 0 0 0 0 0 0 +-9.663 -8.506 -1.919 0 0 0 0 0 0 0 +-9.626 -8.528 -1.917 0 0 0 0 0 0 0 +-9.597 -8.556 -1.917 0 0 0 0 0 0 0 +-9.562 -8.579 -1.915 0 0 0 0 0 0 0 +-9.532 -8.606 -1.914 0 0 0 0 0 0 0 +-9.48 -8.613 -1.909 0 0 0 0 0 0 0 +-9.466 -8.628 -1.909 0 0 0 0 0 0 0 +-9.433 -8.652 -1.908 0 0 0 0 0 0 0 +-9.39 -8.667 -1.904 0 0 0 0 0 0 0 +-9.363 -8.697 -1.904 0 0 0 0 0 0 0 +-9.341 -8.732 -1.905 0 0 0 0 0 0 0 +-9.291 -8.739 -1.9 0 0 0 0 0 0 0 +-9.259 -8.764 -1.899 0 0 0 0 0 0 0 +-9.242 -8.776 -1.899 0 0 0 0 0 0 0 +-9.212 -8.802 -1.898 0 0 0 0 0 0 0 +-9.177 -8.824 -1.897 0 0 0 0 0 0 0 +-9.152 -8.856 -1.897 0 0 0 0 0 0 0 +-9.109 -8.869 -1.894 0 0 0 0 0 0 0 +-9.07 -8.887 -1.891 0 0 0 0 0 0 0 +-9.052 -8.925 -1.893 0 0 0 0 0 0 0 +-9.004 -8.934 -1.889 0 0 0 0 0 0 0 +-8.998 -8.956 -1.891 0 0 0 0 0 0 0 +-8.963 -8.978 -1.889 0 0 0 0 0 0 0 +-8.931 -9.002 -1.888 0 0 0 0 0 0 0 +-8.898 -9.025 -1.887 0 0 0 0 0 0 0 +-8.863 -9.046 -1.886 0 0 0 0 0 0 0 +-8.821 -9.06 -1.883 0 0 0 0 0 0 0 +-8.789 -9.085 -1.882 0 0 0 0 0 0 0 +-8.777 -9.1 -1.882 0 0 0 0 0 0 0 +-8.729 -9.107 -1.878 0 0 0 0 0 0 0 +-8.707 -9.142 -1.88 0 0 0 0 0 0 0 +-8.669 -9.159 -1.877 0 0 0 0 0 0 0 +-8.624 -9.169 -1.874 0 0 0 0 0 0 0 +-8.591 -9.192 -1.873 0 0 0 0 0 0 0 +-8.555 -9.211 -1.871 0 0 0 0 0 0 0 +-8.529 -9.212 -1.868 0 0 0 0 0 0 0 +-8.498 -9.237 -1.868 0 0 0 0 0 0 0 +-8.463 -9.256 -1.866 0 0 0 0 0 0 0 +-8.427 -9.276 -1.865 0 0 0 0 0 0 0 +-8.399 -9.304 -1.865 0 0 0 0 0 0 0 +-8.364 -9.324 -1.864 0 0 0 0 0 0 0 +-8.323 -9.337 -1.861 0 0 0 0 0 0 0 +-8.311 -9.353 -1.862 0 0 0 0 0 0 0 +-8.288 -9.386 -1.863 0 0 0 0 0 0 0 +-8.263 -9.417 -1.864 0 0 0 0 0 0 0 +-8.234 -9.444 -1.865 0 0 0 0 0 0 0 +-8.212 -9.479 -1.866 0 0 0 0 0 0 0 +-8.172 -9.493 -1.864 0 0 0 0 0 0 0 +-8.154 -9.532 -1.867 0 0 0 0 0 0 0 +-8.138 -9.543 -1.866 0 0 0 0 0 0 0 +-8.106 -9.567 -1.866 0 0 0 0 0 0 0 +-8.08 -9.597 -1.867 0 0 0 0 0 0 0 +-8.055 -9.629 -1.868 0 0 0 0 0 0 0 +-8.026 -9.655 -1.869 0 0 0 0 0 0 0 +-8.007 -9.694 -1.871 0 0 0 0 0 0 0 +-7.961 -9.701 -1.868 0 0 0 0 0 0 0 +-7.951 -9.72 -1.869 0 0 0 0 0 0 0 +-7.931 -9.757 -1.871 0 0 0 0 0 0 0 +-7.901 -9.783 -1.872 0 0 0 0 0 0 0 +-7.872 -9.81 -1.872 0 0 0 0 0 0 0 +-7.827 -9.817 -1.869 0 0 0 0 0 0 0 +-7.8 -9.846 -1.87 0 0 0 0 0 0 0 +-7.762 -9.862 -1.868 0 0 0 0 0 0 0 +-7.746 -9.874 -1.868 0 0 0 0 0 0 0 +-7.72 -9.904 -1.869 0 0 0 0 0 0 0 +-7.685 -9.924 -1.868 0 0 0 0 0 0 0 +-7.65 -9.943 -1.867 0 0 0 0 0 0 0 +-7.63 -9.981 -1.87 0 0 0 0 0 0 0 +-7.598 -10.005 -1.87 0 0 0 0 0 0 0 +-7.569 -10.032 -1.871 0 0 0 0 0 0 0 +-7.554 -10.044 -1.871 0 0 0 0 0 0 0 +-7.529 -10.077 -1.872 0 0 0 0 0 0 0 +-7.509 -10.117 -1.876 0 0 0 0 0 0 0 +-7.471 -10.132 -1.874 0 0 0 0 0 0 0 +-7.443 -10.161 -1.875 0 0 0 0 0 0 0 +-7.408 -10.179 -1.874 0 0 0 0 0 0 0 +-7.395 -10.23 -1.879 0 0 0 0 0 0 0 +-7.36 -10.214 -1.874 0 0 0 0 0 0 0 +-7.315 -10.219 -1.871 0 0 0 0 0 0 0 +-7.274 -10.229 -1.868 0 0 0 0 0 0 0 +-7.24 -10.251 -1.868 0 0 0 0 0 0 0 +-7.192 -10.251 -1.863 0 0 0 0 0 0 0 +-7.154 -10.265 -1.862 0 0 0 0 0 0 0 +-7.123 -10.289 -1.862 0 0 0 0 0 0 0 +-7.1 -10.29 -1.86 0 0 0 0 0 0 0 +-7.062 -10.305 -1.859 0 0 0 0 0 0 0 +-7.042 -10.345 -1.862 0 0 0 0 0 0 0 +-7.002 -10.355 -1.86 0 0 0 0 0 0 0 +-6.965 -10.371 -1.859 0 0 0 0 0 0 0 +-6.94 -10.404 -1.861 0 0 0 0 0 0 0 +-6.902 -10.417 -1.859 0 0 0 0 0 0 0 +-6.887 -10.43 -1.86 0 0 0 0 0 0 0 +-6.857 -10.457 -1.86 0 0 0 0 0 0 0 +-6.814 -10.463 -1.858 0 0 0 0 0 0 0 +-6.783 -10.486 -1.858 0 0 0 0 0 0 0 +-6.752 -10.511 -1.859 0 0 0 0 0 0 0 +-6.713 -10.523 -1.857 0 0 0 0 0 0 0 +-6.677 -10.54 -1.856 0 0 0 0 0 0 0 +-6.669 -10.563 -1.859 0 0 0 0 0 0 0 +-6.628 -10.573 -1.856 0 0 0 0 0 0 0 +-6.6 -10.602 -1.858 0 0 0 0 0 0 0 +-6.557 -10.606 -1.855 0 0 0 0 0 0 0 +-6.524 -10.628 -1.855 0 0 0 0 0 0 0 +-6.49 -10.647 -1.855 0 0 0 0 0 0 0 +-6.452 -10.66 -1.854 0 0 0 0 0 0 0 +-6.426 -10.692 -1.856 0 0 0 0 0 0 0 +-6.405 -10.696 -1.855 0 0 0 0 0 0 0 +-6.366 -10.707 -1.853 0 0 0 0 0 0 0 +-6.339 -10.737 -1.855 0 0 0 0 0 0 0 +-6.298 -10.745 -1.853 0 0 0 0 0 0 0 +-6.264 -10.765 -1.853 0 0 0 0 0 0 0 +-6.233 -10.79 -1.854 0 0 0 0 0 0 0 +-6.202 -10.814 -1.855 0 0 0 0 0 0 0 +-6.185 -10.824 -1.855 0 0 0 0 0 0 0 +-6.145 -10.831 -1.852 0 0 0 0 0 0 0 +-6.114 -10.858 -1.854 0 0 0 0 0 0 0 +-6.089 -10.892 -1.856 0 0 0 0 0 0 0 +-6.087 -10.97 -1.867 0 0 0 0 0 0 0 +-6.024 -10.937 -1.858 0 0 0 0 0 0 0 +-5.967 -10.914 -1.85 0 0 0 0 0 0 0 +-5.94 -10.905 -1.847 0 0 0 0 0 0 0 +-5.894 -10.902 -1.843 0 0 0 0 0 0 0 +-5.85 -10.902 -1.839 0 0 0 0 0 0 0 +-5.811 -10.911 -1.838 0 0 0 0 0 0 0 +-5.775 -10.928 -1.838 0 0 0 0 0 0 0 +-5.737 -10.939 -1.836 0 0 0 0 0 0 0 +-5.703 -10.957 -1.836 0 0 0 0 0 0 0 +-5.682 -10.959 -1.835 0 0 0 0 0 0 0 +-5.642 -10.966 -1.833 0 0 0 0 0 0 0 +-5.602 -10.971 -1.831 0 0 0 0 0 0 0 +-5.567 -10.989 -1.831 0 0 0 0 0 0 0 +-5.532 -11.006 -1.831 0 0 0 0 0 0 0 +-5.49 -11.008 -1.828 0 0 0 0 0 0 0 +-5.459 -11.032 -1.829 0 0 0 0 0 0 0 +-5.429 -11.016 -1.825 0 0 0 0 0 0 0 +-5.392 -11.027 -1.824 0 0 0 0 0 0 0 +-5.365 -11.06 -1.827 0 0 0 0 0 0 0 +-5.315 -11.045 -1.821 0 0 0 0 0 0 0 +-5.283 -11.067 -1.822 0 0 0 0 0 0 0 +-5.248 -11.084 -1.822 0 0 0 0 0 0 0 +-5.216 -11.105 -1.823 0 0 0 0 0 0 0 +-5.193 -11.103 -1.821 0 0 0 0 0 0 0 +-5.161 -11.124 -1.822 0 0 0 0 0 0 0 +-5.123 -11.135 -1.821 0 0 0 0 0 0 0 +-5.094 -11.164 -1.823 0 0 0 0 0 0 0 +-5.057 -11.174 -1.822 0 0 0 0 0 0 0 +-5.026 -11.201 -1.824 0 0 0 0 0 0 0 +-4.987 -11.208 -1.823 0 0 0 0 0 0 0 +-4.967 -11.21 -1.822 0 0 0 0 0 0 0 +-4.931 -11.224 -1.822 0 0 0 0 0 0 0 +-4.903 -11.256 -1.824 0 0 0 0 0 0 0 +-4.862 -11.258 -1.822 0 0 0 0 0 0 0 +-4.829 -11.279 -1.823 0 0 0 0 0 0 0 +-4.797 -11.303 -1.825 0 0 0 0 0 0 0 +-4.76 -11.315 -1.824 0 0 0 0 0 0 0 +-4.734 -11.302 -1.821 0 0 0 0 0 0 0 +-4.705 -11.333 -1.823 0 0 0 0 0 0 0 +-4.667 -11.341 -1.822 0 0 0 0 0 0 0 +-4.637 -11.37 -1.825 0 0 0 0 0 0 0 +-4.615 -11.419 -1.831 0 0 0 0 0 0 0 +-4.587 -11.454 -1.834 0 0 0 0 0 0 0 +-4.551 -11.468 -1.834 0 0 0 0 0 0 0 +-4.541 -11.494 -1.837 0 0 0 0 0 0 0 +-4.507 -11.513 -1.838 0 0 0 0 0 0 0 +-4.492 -11.585 -1.848 0 0 0 0 0 0 0 +-4.423 -11.512 -1.833 0 0 0 0 0 0 0 +-4.377 -11.5 -1.829 0 0 0 0 0 0 0 +-4.328 -11.479 -1.823 0 0 0 0 0 0 0 +-4.292 -11.492 -1.823 0 0 0 0 0 0 0 +-4.265 -11.477 -1.819 0 0 0 0 0 0 0 +-4.23 -11.492 -1.819 0 0 0 0 0 0 0 +-4.189 -11.492 -1.817 0 0 0 0 0 0 0 +-4.156 -11.514 -1.819 0 0 0 0 0 0 0 +-4.115 -11.512 -1.816 0 0 0 0 0 0 0 +-4.087 -11.55 -1.82 0 0 0 0 0 0 0 +-4.044 -11.542 -1.817 0 0 0 0 0 0 0 +-4.027 -11.552 -1.817 0 0 0 0 0 0 0 +-3.986 -11.551 -1.815 0 0 0 0 0 0 0 +-3.948 -11.56 -1.815 0 0 0 0 0 0 0 +-3.914 -11.578 -1.816 0 0 0 0 0 0 0 +-3.84 -11.478 -1.797 0 0 0 0 0 0 0 +-3.847 -11.619 -1.818 0 0 0 0 0 0 0 +-3.808 -11.626 -1.817 0 0 0 0 0 0 0 +-3.794 -11.643 -1.819 0 0 0 0 0 0 0 +-3.756 -11.651 -1.819 0 0 0 0 0 0 0 +-3.718 -11.659 -1.818 0 0 0 0 0 0 0 +-3.676 -11.654 -1.815 0 0 0 0 0 0 0 +-3.635 -11.652 -1.813 0 0 0 0 0 0 0 +-3.601 -11.669 -1.814 0 0 0 0 0 0 0 +-3.562 -11.673 -1.813 0 0 0 0 0 0 0 +-3.529 -11.697 -1.815 0 0 0 0 0 0 0 +-3.509 -11.697 -1.814 0 0 0 0 0 0 0 +-3.473 -11.71 -1.814 0 0 0 0 0 0 0 +-3.435 -11.719 -1.814 0 0 0 0 0 0 0 +-3.399 -11.731 -1.814 0 0 0 0 0 0 0 +-3.364 -11.75 -1.816 0 0 0 0 0 0 0 +-3.321 -11.739 -1.812 0 0 0 0 0 0 0 +-3.29 -11.769 -1.815 0 0 0 0 0 0 0 +-3.269 -11.764 -1.814 0 0 0 0 0 0 0 +-3.234 -11.782 -1.815 0 0 0 0 0 0 0 +-3.201 -11.807 -1.817 0 0 0 0 0 0 0 +-3.165 -11.821 -1.818 0 0 0 0 0 0 0 +-3.13 -11.839 -1.819 0 0 0 0 0 0 0 +-3.121 -11.958 -1.837 0 0 0 0 0 0 0 +-3.099 -11.951 -1.835 0 0 0 0 0 0 0 +-3.024 -11.815 -1.812 0 0 0 0 0 0 0 +-2.983 -11.809 -1.809 0 0 0 0 0 0 0 +-2.942 -11.801 -1.806 0 0 0 0 0 0 0 +-2.898 -11.784 -1.802 0 0 0 0 0 0 0 +-2.86 -11.785 -1.801 0 0 0 0 0 0 0 +-2.816 -11.767 -1.796 0 0 0 0 0 0 0 +-2.774 -11.755 -1.793 0 0 0 0 0 0 0 +-2.753 -11.747 -1.791 0 0 0 0 0 0 0 +-2.712 -11.739 -1.788 0 0 0 0 0 0 0 +-2.675 -11.745 -1.788 0 0 0 0 0 0 0 +-2.635 -11.738 -1.785 0 0 0 0 0 0 0 +-2.596 -11.739 -1.784 0 0 0 0 0 0 0 +-2.558 -11.741 -1.783 0 0 0 0 0 0 0 +-2.519 -11.739 -1.781 0 0 0 0 0 0 0 +-2.497 -11.726 -1.779 0 0 0 0 0 0 0 +-2.456 -11.714 -1.775 0 0 0 0 0 0 0 +-2.422 -11.735 -1.778 0 0 0 0 0 0 0 +-2.386 -11.747 -1.778 0 0 0 0 0 0 0 +-2.348 -11.749 -1.777 0 0 0 0 0 0 0 +-2.307 -11.736 -1.774 0 0 0 0 0 0 0 +-2.27 -11.742 -1.774 0 0 0 0 0 0 0 +-2.249 -11.736 -1.772 0 0 0 0 0 0 0 +-2.211 -11.733 -1.771 0 0 0 0 0 0 0 +-2.175 -11.744 -1.771 0 0 0 0 0 0 0 +-2.136 -11.739 -1.769 0 0 0 0 0 0 0 +-2.1 -11.755 -1.771 0 0 0 0 0 0 0 +-2.062 -11.752 -1.769 0 0 0 0 0 0 0 +-2.027 -11.772 -1.772 0 0 0 0 0 0 0 +-2.005 -11.756 -1.769 0 0 0 0 0 0 0 +-1.971 -11.776 -1.771 0 0 0 0 0 0 0 +-1.931 -11.762 -1.768 0 0 0 0 0 0 0 +-1.895 -11.778 -1.769 0 0 0 0 0 0 0 +-1.86 -11.796 -1.771 0 0 0 0 0 0 0 +-1.821 -11.788 -1.769 0 0 0 0 0 0 0 +-1.782 -11.784 -1.767 0 0 0 0 0 0 0 +-1.766 -11.802 -1.77 0 0 0 0 0 0 0 +-1.728 -11.804 -1.769 0 0 0 0 0 0 0 +-1.691 -11.803 -1.768 0 0 0 0 0 0 0 +-1.655 -11.822 -1.77 0 0 0 0 0 0 0 +-1.618 -11.823 -1.77 0 0 0 0 0 0 0 +-1.58 -11.826 -1.769 0 0 0 0 0 0 0 +-1.545 -11.849 -1.772 0 0 0 0 0 0 0 +-1.527 -11.855 -1.773 0 0 0 0 0 0 0 +-1.491 -11.87 -1.774 0 0 0 0 0 0 0 +-1.455 -11.88 -1.775 0 0 0 0 0 0 0 +-1.418 -11.895 -1.777 0 0 0 0 0 0 0 +-1.379 -11.877 -1.774 0 0 0 0 0 0 0 +-1.343 -11.893 -1.775 0 0 0 0 0 0 0 +-1.308 -11.921 -1.779 0 0 0 0 0 0 0 +-1.288 -11.909 -1.777 0 0 0 0 0 0 0 +-1.253 -11.941 -1.781 0 0 0 0 0 0 0 +-1.215 -11.939 -1.78 0 0 0 0 0 0 0 +-1.178 -11.954 -1.782 0 0 0 0 0 0 0 +-1.141 -11.962 -1.783 0 0 0 0 0 0 0 +-1.102 -11.944 -1.78 0 0 0 0 0 0 0 +-1.065 -11.959 -1.781 0 0 0 0 0 0 0 +-1.045 -11.941 -1.778 0 0 0 0 0 0 0 +-1.009 -11.96 -1.781 0 0 0 0 0 0 0 +-0.971 -11.969 -1.782 0 0 0 0 0 0 0 +-0.934 -11.97 -1.781 0 0 0 0 0 0 0 +-0.896 -11.977 -1.782 0 0 0 0 0 0 0 +-0.859 -11.986 -1.783 0 0 0 0 0 0 0 +-0.822 -11.998 -1.785 0 0 0 0 0 0 0 +-0.803 -11.999 -1.785 0 0 0 0 0 0 0 +-0.766 -12.01 -1.786 0 0 0 0 0 0 0 +-0.728 -12.008 -1.785 0 0 0 0 0 0 0 +-0.691 -12.014 -1.786 0 0 0 0 0 0 0 +-0.653 -12.028 -1.788 0 0 0 0 0 0 0 +-0.616 -12.038 -1.789 0 0 0 0 0 0 0 +-0.58 -12.076 -1.795 0 0 0 0 0 0 0 +-0.561 -12.076 -1.795 0 0 0 0 0 0 0 +-0.522 -12.066 -1.793 0 0 0 0 0 0 0 +-0.485 -12.082 -1.795 0 0 0 0 0 0 0 +-0.447 -12.091 -1.796 0 0 0 0 0 0 0 +-0.409 -12.077 -1.794 0 0 0 0 0 0 0 +-0.371 -12.078 -1.794 0 0 0 0 0 0 0 +-0.333 -12.087 -1.795 0 0 0 0 0 0 0 +-0.314 -12.093 -1.796 0 0 0 0 0 0 0 +-0.276 -12.078 -1.793 0 0 0 0 0 0 0 +-0.238 -12.087 -1.795 0 0 0 0 0 0 0 +-0.2 -12.1 -1.796 0 0 0 0 0 0 0 +-0.163 -12.104 -1.797 0 0 0 0 0 0 0 +-0.125 -12.114 -1.799 0 0 0 0 0 0 0 +-0.087 -12.139 -1.802 0 0 0 0 0 0 0 +-0.068 -12.125 -1.8 0 0 0 0 0 0 0 +-0.029 -12.145 -1.803 0 0 0 0 0 0 0 +0.009 -12.149 -1.804 0 0 0 0 0 0 0 +0.047 -12.176 -1.808 0 0 0 0 0 0 0 +0.085 -12.188 -1.81 0 0 0 0 0 0 0 +0.124 -12.213 -1.814 0 0 0 0 0 0 0 +0.162 -12.203 -1.813 0 0 0 0 0 0 0 +0.182 -12.215 -1.815 0 0 0 0 0 0 0 +0.221 -12.244 -1.819 0 0 0 0 0 0 0 +0.259 -12.221 -1.816 0 0 0 0 0 0 0 +0.297 -12.21 -1.814 0 0 0 0 0 0 0 +0.335 -12.203 -1.813 0 0 0 0 0 0 0 +0.374 -12.226 -1.817 0 0 0 0 0 0 0 +0.412 -12.225 -1.817 0 0 0 0 0 0 0 +0.432 -12.232 -1.818 0 0 0 0 0 0 0 +0.471 -12.238 -1.82 0 0 0 0 0 0 0 +0.51 -12.251 -1.822 0 0 0 0 0 0 0 +0.549 -12.273 -1.826 0 0 0 0 0 0 0 +0.588 -12.279 -1.827 0 0 0 0 0 0 0 +0.628 -12.291 -1.829 0 0 0 0 0 0 0 +0.666 -12.289 -1.829 0 0 0 0 0 0 0 +0.705 -12.285 -1.829 0 0 0 0 0 0 0 +0.724 -12.291 -1.83 0 0 0 0 0 0 0 +0.765 -12.319 -1.835 0 0 0 0 0 0 0 +0.803 -12.31 -1.834 0 0 0 0 0 0 0 +0.841 -12.302 -1.833 0 0 0 0 0 0 0 +0.88 -12.303 -1.833 0 0 0 0 0 0 0 +0.919 -12.3 -1.833 0 0 0 0 0 0 0 +0.958 -12.299 -1.834 0 0 0 0 0 0 0 +0.976 -12.288 -1.832 0 0 0 0 0 0 0 +1.014 -12.271 -1.83 0 0 0 0 0 0 0 +1.053 -12.274 -1.831 0 0 0 0 0 0 0 +1.092 -12.28 -1.833 0 0 0 0 0 0 0 +1.131 -12.276 -1.833 0 0 0 0 0 0 0 +1.169 -12.267 -1.832 0 0 0 0 0 0 0 +1.188 -12.265 -1.832 0 0 0 0 0 0 0 +1.227 -12.267 -1.833 0 0 0 0 0 0 0 +1.268 -12.281 -1.835 0 0 0 0 0 0 0 +1.306 -12.273 -1.835 0 0 0 0 0 0 0 +1.346 -12.281 -1.837 0 0 0 0 0 0 0 +1.386 -12.29 -1.839 0 0 0 0 0 0 0 +1.426 -12.299 -1.841 0 0 0 0 0 0 0 +1.466 -12.309 -1.843 0 0 0 0 0 0 0 +1.492 -12.361 -1.852 0 0 0 0 0 0 0 +1.532 -12.362 -1.853 0 0 0 0 0 0 0 +1.569 -12.346 -1.851 0 0 0 0 0 0 0 +1.61 -12.356 -1.854 0 0 0 0 0 0 0 +1.649 -12.351 -1.854 0 0 0 0 0 0 0 +1.689 -12.358 -1.855 0 0 0 0 0 0 0 +1.729 -12.36 -1.857 0 0 0 0 0 0 0 +1.752 -12.383 -1.861 0 0 0 0 0 0 0 +1.79 -12.366 -1.859 0 0 0 0 0 0 0 +1.829 -12.364 -1.86 0 0 0 0 0 0 0 +1.866 -12.344 -1.857 0 0 0 0 0 0 0 +1.897 -12.292 -1.85 0 0 0 0 0 0 0 +1.935 -12.282 -1.849 0 0 0 0 0 0 0 +1.97 -12.254 -1.846 0 0 0 0 0 0 0 +1.991 -12.259 -1.847 0 0 0 0 0 0 0 +2.025 -12.225 -1.843 0 0 0 0 0 0 0 +2.063 -12.221 -1.843 0 0 0 0 0 0 0 +2.098 -12.195 -1.84 0 0 0 0 0 0 0 +2.137 -12.19 -1.84 0 0 0 0 0 0 0 +2.176 -12.187 -1.841 0 0 0 0 0 0 0 +2.211 -12.165 -1.838 0 0 0 0 0 0 0 +2.227 -12.144 -1.835 0 0 0 0 0 0 0 +1.299 -6.9 -0.989 0 0 0 0 0 0 0 +1.319 -6.886 -0.988 0 0 0 0 0 0 0 +1.338 -6.87 -0.986 0 0 0 0 0 0 0 +1.362 -6.879 -0.988 0 0 0 0 0 0 0 +1.379 -6.85 -0.984 0 0 0 0 0 0 0 +1.325 -6.534 -0.933 0 0 0 0 0 0 0 +1.312 -6.372 -0.908 0 0 0 0 0 0 0 +1.328 -6.35 -0.905 0 0 0 0 0 0 0 +1.348 -6.344 -0.904 0 0 0 0 0 0 0 +1.372 -6.357 -0.907 0 0 0 0 0 0 0 +1.405 -6.413 -0.917 0 0 0 0 0 0 0 +1.436 -6.458 -0.925 0 0 0 0 0 0 0 +1.443 -6.443 -0.923 0 0 0 0 0 0 0 +1.461 -6.428 -0.921 0 0 0 0 0 0 0 +1.474 -6.391 -0.916 0 0 0 0 0 0 0 +1.488 -6.359 -0.912 0 0 0 0 0 0 0 +1.505 -6.343 -0.91 0 0 0 0 0 0 0 +1.525 -6.338 -0.91 0 0 0 0 0 0 0 +1.564 -6.412 -0.923 0 0 0 0 0 0 0 +1.586 -6.458 -0.93 0 0 0 0 0 0 0 +1.625 -6.527 -0.943 0 0 0 0 0 0 0 +1.692 -6.704 -0.973 0 0 0 0 0 0 0 +1.712 -6.691 -0.971 0 0 0 0 0 0 0 +1.732 -6.682 -0.971 0 0 0 0 0 0 0 +3.078 -11.65 -1.788 0 0 0 0 0 0 0 +3.117 -11.648 -1.79 0 0 0 0 0 0 0 +3.128 -11.618 -1.785 0 0 0 0 0 0 0 +3.168 -11.62 -1.787 0 0 0 0 0 0 0 +3.19 -11.557 -1.779 0 0 0 0 0 0 0 +3.232 -11.567 -1.782 0 0 0 0 0 0 0 +3.263 -11.54 -1.779 0 0 0 0 0 0 0 +3.295 -11.513 -1.776 0 0 0 0 0 0 0 +3.325 -11.481 -1.773 0 0 0 0 0 0 0 +3.345 -11.486 -1.774 0 0 0 0 0 0 0 +3.373 -11.445 -1.769 0 0 0 0 0 0 0 +3.408 -11.434 -1.769 0 0 0 0 0 0 0 +3.443 -11.42 -1.769 0 0 0 0 0 0 0 +3.472 -11.384 -1.765 0 0 0 0 0 0 0 +3.503 -11.36 -1.763 0 0 0 0 0 0 0 +3.539 -11.351 -1.763 0 0 0 0 0 0 0 +3.548 -11.317 -1.758 0 0 0 0 0 0 0 +3.58 -11.293 -1.756 0 0 0 0 0 0 0 +3.616 -11.285 -1.757 0 0 0 0 0 0 0 +3.65 -11.268 -1.756 0 0 0 0 0 0 0 +3.68 -11.24 -1.753 0 0 0 0 0 0 0 +3.714 -11.226 -1.753 0 0 0 0 0 0 0 +3.742 -11.192 -1.749 0 0 0 0 0 0 0 +3.756 -11.175 -1.747 0 0 0 0 0 0 0 +3.792 -11.165 -1.747 0 0 0 0 0 0 0 +3.823 -11.142 -1.745 0 0 0 0 0 0 0 +3.856 -11.126 -1.745 0 0 0 0 0 0 0 +3.883 -11.09 -1.741 0 0 0 0 0 0 0 +3.761 -10.638 -1.667 0 0 0 0 0 0 0 +3.746 -10.491 -1.644 0 0 0 0 0 0 0 +3.761 -10.481 -1.643 0 0 0 0 0 0 0 +3.791 -10.462 -1.642 0 0 0 0 0 0 0 +3.834 -10.476 -1.646 0 0 0 0 0 0 0 +4.023 -10.884 -1.717 0 0 0 0 0 0 0 +4.086 -10.947 -1.73 0 0 0 0 0 0 0 +4.118 -10.929 -1.729 0 0 0 0 0 0 0 +4.147 -10.903 -1.727 0 0 0 0 0 0 0 +4.171 -10.913 -1.73 0 0 0 0 0 0 0 +4.196 -10.877 -1.726 0 0 0 0 0 0 0 +4.225 -10.85 -1.724 0 0 0 0 0 0 0 +4.266 -10.855 -1.727 0 0 0 0 0 0 0 +4.288 -10.81 -1.721 0 0 0 0 0 0 0 +4.322 -10.798 -1.722 0 0 0 0 0 0 0 +4.358 -10.788 -1.722 0 0 0 0 0 0 0 +4.371 -10.772 -1.721 0 0 0 0 0 0 0 +4.403 -10.753 -1.72 0 0 0 0 0 0 0 +4.429 -10.721 -1.717 0 0 0 0 0 0 0 +4.457 -10.694 -1.715 0 0 0 0 0 0 0 +4.49 -10.678 -1.714 0 0 0 0 0 0 0 +4.516 -10.648 -1.711 0 0 0 0 0 0 0 +4.539 -10.608 -1.707 0 0 0 0 0 0 0 +4.555 -10.599 -1.707 0 0 0 0 0 0 0 +4.579 -10.565 -1.703 0 0 0 0 0 0 0 +4.615 -10.556 -1.704 0 0 0 0 0 0 0 +4.639 -10.521 -1.701 0 0 0 0 0 0 0 +4.671 -10.505 -1.7 0 0 0 0 0 0 0 +4.698 -10.476 -1.698 0 0 0 0 0 0 0 +4.723 -10.443 -1.695 0 0 0 0 0 0 0 +4.742 -10.443 -1.696 0 0 0 0 0 0 0 +4.764 -10.405 -1.692 0 0 0 0 0 0 0 +4.793 -10.381 -1.69 0 0 0 0 0 0 0 +4.833 -10.382 -1.693 0 0 0 0 0 0 0 +4.857 -10.348 -1.69 0 0 0 0 0 0 0 +4.88 -10.314 -1.687 0 0 0 0 0 0 0 +4.918 -10.309 -1.689 0 0 0 0 0 0 0 +4.925 -10.283 -1.685 0 0 0 0 0 0 0 +4.955 -10.262 -1.684 0 0 0 0 0 0 0 +4.987 -10.247 -1.684 0 0 0 0 0 0 0 +5.013 -10.219 -1.682 0 0 0 0 0 0 0 +5.038 -10.189 -1.68 0 0 0 0 0 0 0 +5.075 -10.182 -1.681 0 0 0 0 0 0 0 +5.098 -10.148 -1.678 0 0 0 0 0 0 0 +5.108 -10.128 -1.676 0 0 0 0 0 0 0 +5.145 -10.122 -1.678 0 0 0 0 0 0 0 +5.162 -10.078 -1.673 0 0 0 0 0 0 0 +5.191 -10.056 -1.672 0 0 0 0 0 0 0 +5.228 -10.051 -1.674 0 0 0 0 0 0 0 +5.252 -10.02 -1.671 0 0 0 0 0 0 0 +5.271 -9.979 -1.667 0 0 0 0 0 0 0 +5.291 -9.98 -1.668 0 0 0 0 0 0 0 +5.317 -9.952 -1.667 0 0 0 0 0 0 0 +5.333 -9.908 -1.662 0 0 0 0 0 0 0 +5.374 -9.91 -1.665 0 0 0 0 0 0 0 +5.409 -9.9 -1.666 0 0 0 0 0 0 0 +5.423 -9.852 -1.661 0 0 0 0 0 0 0 +5.461 -9.847 -1.663 0 0 0 0 0 0 0 +5.465 -9.818 -1.659 0 0 0 0 0 0 0 +5.489 -9.788 -1.657 0 0 0 0 0 0 0 +5.522 -9.776 -1.658 0 0 0 0 0 0 0 +5.545 -9.745 -1.655 0 0 0 0 0 0 0 +5.574 -9.724 -1.655 0 0 0 0 0 0 0 +5.609 -9.715 -1.656 0 0 0 0 0 0 0 +5.622 -9.667 -1.651 0 0 0 0 0 0 0 +5.643 -9.668 -1.652 0 0 0 0 0 0 0 +5.665 -9.637 -1.65 0 0 0 0 0 0 0 +5.689 -9.607 -1.648 0 0 0 0 0 0 0 +5.726 -9.601 -1.65 0 0 0 0 0 0 0 +5.748 -9.57 -1.647 0 0 0 0 0 0 0 +5.781 -9.557 -1.648 0 0 0 0 0 0 0 +5.8 -9.52 -1.645 0 0 0 0 0 0 0 +5.819 -9.517 -1.646 0 0 0 0 0 0 0 +5.844 -9.492 -1.645 0 0 0 0 0 0 0 +5.868 -9.464 -1.643 0 0 0 0 0 0 0 +5.898 -9.445 -1.643 0 0 0 0 0 0 0 +5.915 -9.407 -1.639 0 0 0 0 0 0 0 +5.948 -9.395 -1.641 0 0 0 0 0 0 0 +5.967 -9.359 -1.637 0 0 0 0 0 0 0 +5.989 -9.362 -1.64 0 0 0 0 0 0 0 +6.002 -9.316 -1.635 0 0 0 0 0 0 0 +6.033 -9.301 -1.635 0 0 0 0 0 0 0 +6.058 -9.275 -1.634 0 0 0 0 0 0 0 +6.075 -9.238 -1.63 0 0 0 0 0 0 0 +6.104 -9.219 -1.63 0 0 0 0 0 0 0 +6.136 -9.205 -1.631 0 0 0 0 0 0 0 +6.151 -9.195 -1.631 0 0 0 0 0 0 0 +6.168 -9.159 -1.628 0 0 0 0 0 0 0 +6.199 -9.143 -1.629 0 0 0 0 0 0 0 +6.226 -9.12 -1.628 0 0 0 0 0 0 0 +6.258 -9.105 -1.629 0 0 0 0 0 0 0 +6.286 -9.086 -1.629 0 0 0 0 0 0 0 +6.315 -9.066 -1.629 0 0 0 0 0 0 0 +6.336 -9.066 -1.631 0 0 0 0 0 0 0 +6.355 -9.033 -1.629 0 0 0 0 0 0 0 +6.376 -9.002 -1.626 0 0 0 0 0 0 0 +6.4 -8.977 -1.625 0 0 0 0 0 0 0 +6.426 -8.953 -1.625 0 0 0 0 0 0 0 +6.449 -8.925 -1.623 0 0 0 0 0 0 0 +6.465 -8.889 -1.62 0 0 0 0 0 0 0 +6.488 -8.862 -1.619 0 0 0 0 0 0 0 +6.497 -8.846 -1.618 0 0 0 0 0 0 0 +6.519 -8.817 -1.616 0 0 0 0 0 0 0 +6.547 -8.797 -1.616 0 0 0 0 0 0 0 +6.561 -8.759 -1.613 0 0 0 0 0 0 0 +6.588 -8.737 -1.612 0 0 0 0 0 0 0 +6.603 -8.7 -1.609 0 0 0 0 0 0 0 +6.634 -8.684 -1.61 0 0 0 0 0 0 0 +6.64 -8.664 -1.608 0 0 0 0 0 0 0 +6.66 -8.634 -1.606 0 0 0 0 0 0 0 +6.687 -8.613 -1.606 0 0 0 0 0 0 0 +6.712 -8.589 -1.606 0 0 0 0 0 0 0 +6.734 -8.561 -1.604 0 0 0 0 0 0 0 +6.762 -8.542 -1.605 0 0 0 0 0 0 0 +6.782 -8.539 -1.606 0 0 0 0 0 0 0 +6.799 -8.505 -1.604 0 0 0 0 0 0 0 +6.829 -8.488 -1.605 0 0 0 0 0 0 0 +6.854 -8.465 -1.604 0 0 0 0 0 0 0 +6.878 -8.441 -1.604 0 0 0 0 0 0 0 +6.901 -8.415 -1.603 0 0 0 0 0 0 0 +6.92 -8.384 -1.601 0 0 0 0 0 0 0 +6.928 -8.367 -1.6 0 0 0 0 0 0 0 +6.953 -8.343 -1.599 0 0 0 0 0 0 0 +6.977 -8.318 -1.599 0 0 0 0 0 0 0 +7.007 -8.301 -1.6 0 0 0 0 0 0 0 +7.028 -8.273 -1.598 0 0 0 0 0 0 0 +7.046 -8.242 -1.597 0 0 0 0 0 0 0 +7.073 -8.221 -1.597 0 0 0 0 0 0 0 +7.087 -8.212 -1.597 0 0 0 0 0 0 0 +7.11 -8.186 -1.597 0 0 0 0 0 0 0 +7.132 -8.159 -1.596 0 0 0 0 0 0 0 +7.16 -8.14 -1.596 0 0 0 0 0 0 0 +7.186 -8.117 -1.596 0 0 0 0 0 0 0 +7.198 -8.08 -1.593 0 0 0 0 0 0 0 +7.22 -8.053 -1.592 0 0 0 0 0 0 0 +7.25 -8.036 -1.593 0 0 0 0 0 0 0 +7.248 -8.009 -1.59 0 0 0 0 0 0 0 +7.269 -7.982 -1.589 0 0 0 0 0 0 0 +7.29 -7.954 -1.588 0 0 0 0 0 0 0 +7.313 -7.928 -1.587 0 0 0 0 0 0 0 +7.331 -7.898 -1.586 0 0 0 0 0 0 0 +7.361 -7.881 -1.587 0 0 0 0 0 0 0 +7.379 -7.851 -1.586 0 0 0 0 0 0 0 +7.398 -7.846 -1.587 0 0 0 0 0 0 0 +7.424 -7.824 -1.587 0 0 0 0 0 0 0 +7.453 -7.805 -1.588 0 0 0 0 0 0 0 +7.469 -7.773 -1.587 0 0 0 0 0 0 0 +7.488 -7.744 -1.585 0 0 0 0 0 0 0 +7.501 -7.709 -1.583 0 0 0 0 0 0 0 +7.521 -7.681 -1.582 0 0 0 0 0 0 0 +7.526 -7.663 -1.58 0 0 0 0 0 0 0 +7.545 -7.633 -1.579 0 0 0 0 0 0 0 +7.581 -7.622 -1.582 0 0 0 0 0 0 0 +7.59 -7.583 -1.578 0 0 0 0 0 0 0 +7.616 -7.562 -1.579 0 0 0 0 0 0 0 +7.637 -7.535 -1.578 0 0 0 0 0 0 0 +7.649 -7.523 -1.578 0 0 0 0 0 0 0 +7.672 -7.499 -1.578 0 0 0 0 0 0 0 +7.706 -7.484 -1.581 0 0 0 0 0 0 0 +7.727 -7.457 -1.58 0 0 0 0 0 0 0 +7.748 -7.432 -1.58 0 0 0 0 0 0 0 +7.778 -7.413 -1.581 0 0 0 0 0 0 0 +7.799 -7.387 -1.581 0 0 0 0 0 0 0 +7.823 -7.362 -1.581 0 0 0 0 0 0 0 +7.837 -7.353 -1.581 0 0 0 0 0 0 0 +7.86 -7.328 -1.581 0 0 0 0 0 0 0 +7.884 -7.305 -1.582 0 0 0 0 0 0 0 +7.907 -7.28 -1.582 0 0 0 0 0 0 0 +7.929 -7.254 -1.581 0 0 0 0 0 0 0 +7.966 -7.242 -1.584 0 0 0 0 0 0 0 +7.981 -7.21 -1.583 0 0 0 0 0 0 0 +7.991 -7.197 -1.582 0 0 0 0 0 0 0 +8.007 -7.165 -1.581 0 0 0 0 0 0 0 +8.036 -7.146 -1.582 0 0 0 0 0 0 0 +8.056 -7.118 -1.582 0 0 0 0 0 0 0 +8.095 -7.107 -1.585 0 0 0 0 0 0 0 +8.109 -7.075 -1.584 0 0 0 0 0 0 0 +8.136 -7.054 -1.585 0 0 0 0 0 0 0 +8.144 -7.038 -1.584 0 0 0 0 0 0 0 +8.165 -7.011 -1.584 0 0 0 0 0 0 0 +8.19 -6.988 -1.584 0 0 0 0 0 0 0 +8.212 -6.963 -1.584 0 0 0 0 0 0 0 +8.238 -6.941 -1.585 0 0 0 0 0 0 0 +8.257 -6.912 -1.585 0 0 0 0 0 0 0 +8.277 -6.885 -1.584 0 0 0 0 0 0 0 +8.295 -6.878 -1.586 0 0 0 0 0 0 0 +8.326 -6.86 -1.588 0 0 0 0 0 0 0 +8.341 -6.828 -1.587 0 0 0 0 0 0 0 +8.374 -6.811 -1.589 0 0 0 0 0 0 0 +8.401 -6.789 -1.59 0 0 0 0 0 0 0 +8.407 -6.751 -1.587 0 0 0 0 0 0 0 +8.425 -6.744 -1.588 0 0 0 0 0 0 0 +8.457 -6.726 -1.591 0 0 0 0 0 0 0 +8.485 -6.704 -1.592 0 0 0 0 0 0 0 +8.499 -6.672 -1.591 0 0 0 0 0 0 0 +8.519 -6.645 -1.59 0 0 0 0 0 0 0 +8.547 -6.624 -1.592 0 0 0 0 0 0 0 +8.554 -6.586 -1.589 0 0 0 0 0 0 0 +8.579 -6.563 -1.59 0 0 0 0 0 0 0 +8.599 -6.556 -1.592 0 0 0 0 0 0 0 +8.593 -6.509 -1.587 0 0 0 0 0 0 0 +8.604 -6.475 -1.585 0 0 0 0 0 0 0 +8.645 -6.463 -1.589 0 0 0 0 0 0 0 +8.668 -6.438 -1.589 0 0 0 0 0 0 0 +8.68 -6.405 -1.588 0 0 0 0 0 0 0 +8.705 -6.382 -1.589 0 0 0 0 0 0 0 +8.71 -6.364 -1.588 0 0 0 0 0 0 0 +8.727 -6.335 -1.587 0 0 0 0 0 0 0 +8.742 -6.304 -1.586 0 0 0 0 0 0 0 +8.764 -6.277 -1.587 0 0 0 0 0 0 0 +8.791 -6.256 -1.588 0 0 0 0 0 0 0 +8.796 -6.218 -1.585 0 0 0 0 0 0 0 +8.817 -6.191 -1.586 0 0 0 0 0 0 0 +8.834 -6.182 -1.587 0 0 0 0 0 0 0 +8.848 -6.151 -1.586 0 0 0 0 0 0 0 +8.85 -6.111 -1.582 0 0 0 0 0 0 0 +8.88 -6.09 -1.585 0 0 0 0 0 0 0 +8.904 -6.066 -1.586 0 0 0 0 0 0 0 +8.907 -6.027 -1.582 0 0 0 0 0 0 0 +8.924 -5.998 -1.582 0 0 0 0 0 0 0 +8.945 -5.991 -1.584 0 0 0 0 0 0 0 +8.964 -5.963 -1.584 0 0 0 0 0 0 0 +8.981 -5.934 -1.584 0 0 0 0 0 0 0 +9.019 -5.919 -1.588 0 0 0 0 0 0 0 +9.019 -5.878 -1.584 0 0 0 0 0 0 0 +9.045 -5.854 -1.586 0 0 0 0 0 0 0 +9.053 -5.82 -1.584 0 0 0 0 0 0 0 +9.064 -5.806 -1.584 0 0 0 0 0 0 0 +9.087 -5.781 -1.585 0 0 0 0 0 0 0 +9.098 -5.748 -1.584 0 0 0 0 0 0 0 +9.116 -5.72 -1.584 0 0 0 0 0 0 0 +9.138 -5.693 -1.584 0 0 0 0 0 0 0 +9.154 -5.663 -1.584 0 0 0 0 0 0 0 +9.16 -5.627 -1.582 0 0 0 0 0 0 0 +9.169 -5.613 -1.582 0 0 0 0 0 0 0 +9.179 -5.58 -1.581 0 0 0 0 0 0 0 +9.212 -5.56 -1.583 0 0 0 0 0 0 0 +9.231 -5.532 -1.584 0 0 0 0 0 0 0 +9.247 -5.502 -1.583 0 0 0 0 0 0 0 +9.268 -5.475 -1.584 0 0 0 0 0 0 0 +9.293 -5.451 -1.586 0 0 0 0 0 0 0 +9.31 -5.441 -1.587 0 0 0 0 0 0 0 +9.322 -5.409 -1.586 0 0 0 0 0 0 0 +9.334 -5.377 -1.585 0 0 0 0 0 0 0 +9.353 -5.349 -1.586 0 0 0 0 0 0 0 +9.373 -5.321 -1.586 0 0 0 0 0 0 0 +9.383 -5.288 -1.585 0 0 0 0 0 0 0 +9.403 -5.26 -1.586 0 0 0 0 0 0 0 +9.394 -5.236 -1.582 0 0 0 0 0 0 0 +9.415 -5.209 -1.583 0 0 0 0 0 0 0 +9.43 -5.179 -1.583 0 0 0 0 0 0 0 +9.436 -5.143 -1.581 0 0 0 0 0 0 0 +9.45 -5.113 -1.581 0 0 0 0 0 0 0 +9.448 -5.074 -1.578 0 0 0 0 0 0 0 +8.738 -4.659 -1.447 0 0 0 0 0 0 0 +9.242 -4.907 -1.536 0 0 0 0 0 0 0 +9.481 -4.996 -1.577 0 0 0 0 0 0 0 +8.771 -4.589 -1.447 0 0 0 0 0 0 0 +8.714 -4.524 -1.434 0 0 0 0 0 0 0 +8.677 -4.47 -1.425 0 0 0 0 0 0 0 +8.719 -4.458 -1.43 0 0 0 0 0 0 0 +8.812 -4.47 -1.444 0 0 0 0 0 0 0 +8.835 -4.464 -1.447 0 0 0 0 0 0 0 +9.512 -4.767 -1.564 0 0 0 0 0 0 0 +9.582 -4.764 -1.574 0 0 0 0 0 0 0 +9.602 -4.736 -1.575 0 0 0 0 0 0 0 +9.605 -4.7 -1.573 0 0 0 0 0 0 0 +9.616 -4.668 -1.572 0 0 0 0 0 0 0 +9.636 -4.641 -1.573 0 0 0 0 0 0 0 +9.636 -4.622 -1.572 0 0 0 0 0 0 0 +9.647 -4.59 -1.571 0 0 0 0 0 0 0 +9.656 -4.557 -1.57 0 0 0 0 0 0 0 +9.666 -4.525 -1.57 0 0 0 0 0 0 0 +9.682 -4.496 -1.57 0 0 0 0 0 0 0 +9.695 -4.464 -1.57 0 0 0 0 0 0 0 +9.707 -4.433 -1.569 0 0 0 0 0 0 0 +9.719 -4.42 -1.57 0 0 0 0 0 0 0 +9.729 -4.388 -1.57 0 0 0 0 0 0 0 +9.734 -4.353 -1.568 0 0 0 0 0 0 0 +9.755 -4.326 -1.569 0 0 0 0 0 0 0 +9.772 -4.297 -1.57 0 0 0 0 0 0 0 +9.78 -4.264 -1.569 0 0 0 0 0 0 0 +9.795 -4.234 -1.569 0 0 0 0 0 0 0 +9.793 -4.215 -1.568 0 0 0 0 0 0 0 +9.817 -4.188 -1.57 0 0 0 0 0 0 0 +9.836 -4.16 -1.571 0 0 0 0 0 0 0 +9.849 -4.129 -1.571 0 0 0 0 0 0 0 +9.86 -4.097 -1.57 0 0 0 0 0 0 0 +9.867 -4.064 -1.569 0 0 0 0 0 0 0 +9.894 -4.039 -1.572 0 0 0 0 0 0 0 +9.893 -4.02 -1.571 0 0 0 0 0 0 0 +9.895 -3.985 -1.569 0 0 0 0 0 0 0 +9.896 -3.949 -1.567 0 0 0 0 0 0 0 +9.918 -3.922 -1.568 0 0 0 0 0 0 0 +9.932 -3.892 -1.569 0 0 0 0 0 0 0 +9.963 -3.867 -1.572 0 0 0 0 0 0 0 +9.947 -3.826 -1.567 0 0 0 0 0 0 0 +9.931 -3.801 -1.563 0 0 0 0 0 0 0 +9.95 -3.773 -1.565 0 0 0 0 0 0 0 +9.982 -3.749 -1.568 0 0 0 0 0 0 0 +10.037 -3.734 -1.575 0 0 0 0 0 0 0 +10.048 -3.702 -1.575 0 0 0 0 0 0 0 +10.06 -3.671 -1.575 0 0 0 0 0 0 0 +10.086 -3.644 -1.578 0 0 0 0 0 0 0 +10.098 -3.63 -1.579 0 0 0 0 0 0 0 +10.107 -3.598 -1.578 0 0 0 0 0 0 0 +10.117 -3.566 -1.578 0 0 0 0 0 0 0 +10.137 -3.537 -1.58 0 0 0 0 0 0 0 +10.152 -3.506 -1.58 0 0 0 0 0 0 0 +10.176 -3.479 -1.582 0 0 0 0 0 0 0 +10.176 -3.443 -1.581 0 0 0 0 0 0 0 +10.164 -3.422 -1.578 0 0 0 0 0 0 0 +10.169 -3.388 -1.577 0 0 0 0 0 0 0 +10.223 -3.37 -1.584 0 0 0 0 0 0 0 +10.23 -3.337 -1.583 0 0 0 0 0 0 0 +10.229 -3.301 -1.582 0 0 0 0 0 0 0 +10.264 -3.276 -1.586 0 0 0 0 0 0 0 +10.283 -3.247 -1.587 0 0 0 0 0 0 0 +10.277 -3.227 -1.585 0 0 0 0 0 0 0 +10.293 -3.197 -1.586 0 0 0 0 0 0 0 +10.314 -3.168 -1.588 0 0 0 0 0 0 0 +10.326 -3.136 -1.588 0 0 0 0 0 0 0 +10.33 -3.102 -1.587 0 0 0 0 0 0 0 +10.344 -3.071 -1.588 0 0 0 0 0 0 0 +10.349 -3.037 -1.587 0 0 0 0 0 0 0 +10.352 -3.02 -1.587 0 0 0 0 0 0 0 +10.362 -2.988 -1.587 0 0 0 0 0 0 0 +10.373 -2.956 -1.587 0 0 0 0 0 0 0 +10.375 -2.921 -1.586 0 0 0 0 0 0 0 +10.389 -2.89 -1.587 0 0 0 0 0 0 0 +10.395 -2.856 -1.587 0 0 0 0 0 0 0 +10.39 -2.82 -1.584 0 0 0 0 0 0 0 +10.41 -2.79 -1.586 0 0 0 0 0 0 0 +10.421 -2.775 -1.587 0 0 0 0 0 0 0 +10.427 -2.742 -1.587 0 0 0 0 0 0 0 +10.442 -2.711 -1.588 0 0 0 0 0 0 0 +10.452 -2.679 -1.588 0 0 0 0 0 0 0 +10.46 -2.646 -1.588 0 0 0 0 0 0 0 +10.442 -2.606 -1.584 0 0 0 0 0 0 0 +10.44 -2.571 -1.582 0 0 0 0 0 0 0 +10.448 -2.556 -1.583 0 0 0 0 0 0 0 +10.397 -2.509 -1.573 0 0 0 0 0 0 0 +10.427 -2.481 -1.577 0 0 0 0 0 0 0 +10.508 -2.466 -1.589 0 0 0 0 0 0 0 +10.506 -2.43 -1.587 0 0 0 0 0 0 0 +10.522 -2.399 -1.588 0 0 0 0 0 0 0 +10.512 -2.379 -1.586 0 0 0 0 0 0 0 +10.525 -2.348 -1.587 0 0 0 0 0 0 0 +10.546 -2.318 -1.589 0 0 0 0 0 0 0 +7.639 -1.661 -1.116 0 0 0 0 0 0 0 +7.562 -1.595 -1.102 0 0 0 0 0 0 0 +7.478 -1.553 -1.087 0 0 0 0 0 0 0 +7.589 -1.551 -1.105 0 0 0 0 0 0 0 +7.607 -1.542 -1.107 0 0 0 0 0 0 0 +7.66 -1.527 -1.115 0 0 0 0 0 0 0 +7.681 -1.506 -1.117 0 0 0 0 0 0 0 +10.602 -2.035 -1.589 0 0 0 0 0 0 0 +10.603 -2 -1.588 0 0 0 0 0 0 0 +7.448 -1.365 -1.077 0 0 0 0 0 0 0 +7.448 -1.353 -1.077 0 0 0 0 0 0 0 +7.439 -1.327 -1.074 0 0 0 0 0 0 0 +7.445 -1.304 -1.075 0 0 0 0 0 0 0 +7.463 -1.283 -1.077 0 0 0 0 0 0 0 +7.484 -1.262 -1.08 0 0 0 0 0 0 0 +7.474 -1.236 -1.078 0 0 0 0 0 0 0 +7.714 -1.25 -1.116 0 0 0 0 0 0 0 +10.63 -1.696 -1.584 0 0 0 0 0 0 0 +7.96 -1.251 -1.154 0 0 0 0 0 0 0 +10.679 -1.635 -1.59 0 0 0 0 0 0 0 +10.68 -1.601 -1.59 0 0 0 0 0 0 0 +10.683 -1.567 -1.589 0 0 0 0 0 0 0 +10.676 -1.532 -1.587 0 0 0 0 0 0 0 +10.652 -1.494 -1.583 0 0 0 0 0 0 0 +10.558 -1.464 -1.567 0 0 0 0 0 0 0 +8.28 -1.127 -1.202 0 0 0 0 0 0 0 +10.728 -1.419 -1.593 0 0 0 0 0 0 0 +10.709 -1.382 -1.589 0 0 0 0 0 0 0 +10.711 -1.348 -1.589 0 0 0 0 0 0 0 +10.713 -1.314 -1.589 0 0 0 0 0 0 0 +10.717 -1.281 -1.589 0 0 0 0 0 0 0 +10.727 -1.265 -1.59 0 0 0 0 0 0 0 +10.729 -1.231 -1.59 0 0 0 0 0 0 0 +10.721 -1.196 -1.588 0 0 0 0 0 0 0 +10.713 -1.161 -1.586 0 0 0 0 0 0 0 +10.711 -1.127 -1.585 0 0 0 0 0 0 0 +10.724 -1.094 -1.587 0 0 0 0 0 0 0 +10.722 -1.06 -1.586 0 0 0 0 0 0 0 +10.727 -1.043 -1.586 0 0 0 0 0 0 0 +10.729 -1.009 -1.586 0 0 0 0 0 0 0 +10.724 -0.975 -1.585 0 0 0 0 0 0 0 +10.717 -0.94 -1.583 0 0 0 0 0 0 0 +10.72 -0.907 -1.583 0 0 0 0 0 0 0 +10.691 -0.871 -1.578 0 0 0 0 0 0 0 +10.741 -0.841 -1.586 0 0 0 0 0 0 0 +10.756 -0.825 -1.588 0 0 0 0 0 0 0 +10.761 -0.791 -1.588 0 0 0 0 0 0 0 +10.757 -0.757 -1.587 0 0 0 0 0 0 0 +10.758 -0.723 -1.587 0 0 0 0 0 0 0 +10.776 -0.69 -1.589 0 0 0 0 0 0 0 +10.813 -0.658 -1.595 0 0 0 0 0 0 0 +10.853 -0.626 -1.601 0 0 0 0 0 0 0 +10.905 -0.612 -1.609 0 0 0 0 0 0 0 +10.956 -0.58 -1.617 0 0 0 0 0 0 0 +11.005 -0.548 -1.625 0 0 0 0 0 0 0 +11.046 -0.515 -1.631 0 0 0 0 0 0 0 +11.107 -0.483 -1.64 0 0 0 0 0 0 0 +11.156 -0.45 -1.648 0 0 0 0 0 0 0 +11.219 -0.417 -1.657 0 0 0 0 0 0 0 +11.267 -0.401 -1.665 0 0 0 0 0 0 0 +11.327 -0.367 -1.674 0 0 0 0 0 0 0 +11.37 -0.333 -1.681 0 0 0 0 0 0 0 +11.374 -0.297 -1.682 0 0 0 0 0 0 0 +11.328 -0.261 -1.674 0 0 0 0 0 0 0 +11.384 -0.226 -1.683 0 0 0 0 0 0 0 +11.387 -0.19 -1.683 0 0 0 0 0 0 0 +11.466 -0.173 -1.696 0 0 0 0 0 0 0 +11.443 -0.137 -1.692 0 0 0 0 0 0 0 +11.439 -0.101 -1.691 0 0 0 0 0 0 0 +11.463 -0.065 -1.695 0 0 0 0 0 0 0 +11.501 -0.029 -1.701 0 0 0 0 0 0 0 +10.899 0.006 -1.713 0 0 0 0 0 0 0 +10.888 0.041 -1.711 0 0 0 0 0 0 0 +10.887 0.075 -1.711 0 0 0 0 0 0 0 +10.891 0.109 -1.712 0 0 0 0 0 0 0 +10.893 0.143 -1.712 0 0 0 0 0 0 0 +10.849 0.16 -1.705 0 0 0 0 0 0 0 +10.888 0.195 -1.711 0 0 0 0 0 0 0 +10.867 0.228 -1.708 0 0 0 0 0 0 0 +10.871 0.263 -1.709 0 0 0 0 0 0 0 +10.874 0.297 -1.709 0 0 0 0 0 0 0 +10.867 0.331 -1.708 0 0 0 0 0 0 0 +10.86 0.365 -1.707 0 0 0 0 0 0 0 +10.869 0.382 -1.709 0 0 0 0 0 0 0 +10.854 0.416 -1.707 0 0 0 0 0 0 0 +10.845 0.45 -1.705 0 0 0 0 0 0 0 +10.851 0.484 -1.707 0 0 0 0 0 0 0 +10.84 0.518 -1.705 0 0 0 0 0 0 0 +10.844 0.552 -1.706 0 0 0 0 0 0 0 +10.842 0.586 -1.706 0 0 0 0 0 0 0 +10.831 0.603 -1.704 0 0 0 0 0 0 0 +10.826 0.636 -1.704 0 0 0 0 0 0 0 +10.822 0.67 -1.703 0 0 0 0 0 0 0 +10.81 0.704 -1.702 0 0 0 0 0 0 0 +10.807 0.738 -1.702 0 0 0 0 0 0 0 +10.821 0.773 -1.704 0 0 0 0 0 0 0 +10.8 0.805 -1.701 0 0 0 0 0 0 0 +10.793 0.822 -1.7 0 0 0 0 0 0 0 +10.802 0.857 -1.702 0 0 0 0 0 0 0 +10.79 0.89 -1.701 0 0 0 0 0 0 0 +10.767 0.922 -1.697 0 0 0 0 0 0 0 +10.772 0.957 -1.699 0 0 0 0 0 0 0 +10.757 0.989 -1.697 0 0 0 0 0 0 0 +10.75 1.023 -1.696 0 0 0 0 0 0 0 +10.767 1.058 -1.699 0 0 0 0 0 0 0 +10.751 1.074 -1.697 0 0 0 0 0 0 0 +10.754 1.108 -1.698 0 0 0 0 0 0 0 +10.754 1.143 -1.699 0 0 0 0 0 0 0 +10.739 1.175 -1.697 0 0 0 0 0 0 0 +10.725 1.208 -1.695 0 0 0 0 0 0 0 +10.733 1.243 -1.697 0 0 0 0 0 0 0 +10.727 1.276 -1.697 0 0 0 0 0 0 0 +10.721 1.293 -1.696 0 0 0 0 0 0 0 +10.715 1.326 -1.696 0 0 0 0 0 0 0 +10.715 1.36 -1.696 0 0 0 0 0 0 0 +10.699 1.392 -1.694 0 0 0 0 0 0 0 +10.7 1.427 -1.695 0 0 0 0 0 0 0 +10.684 1.459 -1.693 0 0 0 0 0 0 0 +10.679 1.492 -1.693 0 0 0 0 0 0 0 +10.687 1.511 -1.695 0 0 0 0 0 0 0 +10.664 1.542 -1.692 0 0 0 0 0 0 0 +10.644 1.573 -1.689 0 0 0 0 0 0 0 +10.662 1.61 -1.693 0 0 0 0 0 0 0 +10.649 1.642 -1.692 0 0 0 0 0 0 0 +10.629 1.673 -1.689 0 0 0 0 0 0 0 +10.645 1.71 -1.693 0 0 0 0 0 0 0 +10.63 1.725 -1.691 0 0 0 0 0 0 0 +10.615 1.756 -1.689 0 0 0 0 0 0 0 +10.619 1.791 -1.691 0 0 0 0 0 0 0 +10.61 1.824 -1.69 0 0 0 0 0 0 0 +10.614 1.859 -1.692 0 0 0 0 0 0 0 +10.592 1.89 -1.689 0 0 0 0 0 0 0 +10.59 1.924 -1.69 0 0 0 0 0 0 0 +10.575 1.938 -1.688 0 0 0 0 0 0 0 +10.569 1.971 -1.688 0 0 0 0 0 0 0 +10.563 2.005 -1.688 0 0 0 0 0 0 0 +10.559 2.038 -1.688 0 0 0 0 0 0 0 +10.552 2.071 -1.688 0 0 0 0 0 0 0 +10.542 2.104 -1.688 0 0 0 0 0 0 0 +10.537 2.137 -1.688 0 0 0 0 0 0 0 +10.532 2.153 -1.688 0 0 0 0 0 0 0 +10.517 2.185 -1.686 0 0 0 0 0 0 0 +10.514 2.219 -1.687 0 0 0 0 0 0 0 +10.505 2.251 -1.687 0 0 0 0 0 0 0 +10.496 2.284 -1.686 0 0 0 0 0 0 0 +10.491 2.317 -1.687 0 0 0 0 0 0 0 +10.497 2.353 -1.689 0 0 0 0 0 0 0 +10.484 2.368 -1.687 0 0 0 0 0 0 0 +10.478 2.401 -1.688 0 0 0 0 0 0 0 +10.468 2.433 -1.687 0 0 0 0 0 0 0 +10.451 2.464 -1.686 0 0 0 0 0 0 0 +10.472 2.504 -1.691 0 0 0 0 0 0 0 +10.455 2.534 -1.689 0 0 0 0 0 0 0 +10.433 2.564 -1.687 0 0 0 0 0 0 0 +10.42 2.578 -1.685 0 0 0 0 0 0 0 +10.408 2.61 -1.684 0 0 0 0 0 0 0 +10.411 2.645 -1.686 0 0 0 0 0 0 0 +10.414 2.681 -1.688 0 0 0 0 0 0 0 +10.385 2.708 -1.685 0 0 0 0 0 0 0 +10.372 2.74 -1.684 0 0 0 0 0 0 0 +10.375 2.775 -1.686 0 0 0 0 0 0 0 +10.382 2.795 -1.688 0 0 0 0 0 0 0 +10.377 2.828 -1.689 0 0 0 0 0 0 0 +10.353 2.857 -1.686 0 0 0 0 0 0 0 +10.346 2.89 -1.686 0 0 0 0 0 0 0 +10.34 2.923 -1.687 0 0 0 0 0 0 0 +10.344 2.959 -1.689 0 0 0 0 0 0 0 +10.324 2.989 -1.687 0 0 0 0 0 0 0 +10.327 3.007 -1.689 0 0 0 0 0 0 0 +10.309 3.037 -1.687 0 0 0 0 0 0 0 +10.3 3.07 -1.687 0 0 0 0 0 0 0 +10.3 3.105 -1.689 0 0 0 0 0 0 0 +10.29 3.137 -1.689 0 0 0 0 0 0 0 +10.276 3.168 -1.688 0 0 0 0 0 0 0 +10.279 3.205 -1.691 0 0 0 0 0 0 0 +10.269 3.219 -1.69 0 0 0 0 0 0 0 +10.262 3.253 -1.69 0 0 0 0 0 0 0 +10.241 3.281 -1.688 0 0 0 0 0 0 0 +10.243 3.318 -1.691 0 0 0 0 0 0 0 +10.229 3.348 -1.69 0 0 0 0 0 0 0 +10.226 3.383 -1.691 0 0 0 0 0 0 0 +10.212 3.414 -1.691 0 0 0 0 0 0 0 +10.223 3.436 -1.694 0 0 0 0 0 0 0 +10.194 3.461 -1.69 0 0 0 0 0 0 0 +10.207 3.502 -1.695 0 0 0 0 0 0 0 +10.192 3.532 -1.694 0 0 0 0 0 0 0 +10.179 3.564 -1.694 0 0 0 0 0 0 0 +10.177 3.599 -1.695 0 0 0 0 0 0 0 +10.159 3.628 -1.694 0 0 0 0 0 0 0 +10.162 3.666 -1.697 0 0 0 0 0 0 0 +10.145 3.677 -1.695 0 0 0 0 0 0 0 +10.152 3.716 -1.698 0 0 0 0 0 0 0 +10.133 3.745 -1.697 0 0 0 0 0 0 0 +10.121 3.777 -1.697 0 0 0 0 0 0 0 +10.109 3.809 -1.697 0 0 0 0 0 0 0 +10.104 3.843 -1.698 0 0 0 0 0 0 0 +10.087 3.855 -1.696 0 0 0 0 0 0 0 +10.094 3.894 -1.699 0 0 0 0 0 0 0 +10.096 3.931 -1.702 0 0 0 0 0 0 0 +10.082 3.962 -1.702 0 0 0 0 0 0 0 +10.073 3.995 -1.702 0 0 0 0 0 0 0 +10.062 4.028 -1.703 0 0 0 0 0 0 0 +10.057 4.062 -1.704 0 0 0 0 0 0 0 +10.045 4.076 -1.703 0 0 0 0 0 0 0 +10.032 4.107 -1.703 0 0 0 0 0 0 0 +10.026 4.142 -1.704 0 0 0 0 0 0 0 +10.017 4.175 -1.705 0 0 0 0 0 0 0 +10.002 4.205 -1.705 0 0 0 0 0 0 0 +9.992 4.238 -1.705 0 0 0 0 0 0 0 +9.988 4.274 -1.707 0 0 0 0 0 0 0 +9.983 4.29 -1.707 0 0 0 0 0 0 0 +9.973 4.323 -1.708 0 0 0 0 0 0 0 +9.943 4.347 -1.705 0 0 0 0 0 0 0 +9.944 4.385 -1.708 0 0 0 0 0 0 0 +9.928 4.415 -1.707 0 0 0 0 0 0 0 +9.924 4.45 -1.709 0 0 0 0 0 0 0 +9.899 4.477 -1.707 0 0 0 0 0 0 0 +9.897 4.513 -1.709 0 0 0 0 0 0 0 +9.872 4.521 -1.706 0 0 0 0 0 0 0 +9.861 4.553 -1.707 0 0 0 0 0 0 0 +9.824 4.574 -1.702 0 0 0 0 0 0 0 +9.811 4.605 -1.703 0 0 0 0 0 0 0 +9.788 4.632 -1.701 0 0 0 0 0 0 0 +9.786 4.668 -1.703 0 0 0 0 0 0 0 +9.767 4.697 -1.703 0 0 0 0 0 0 0 +9.76 4.713 -1.703 0 0 0 0 0 0 0 +9.747 4.744 -1.703 0 0 0 0 0 0 0 +9.736 4.777 -1.704 0 0 0 0 0 0 0 +9.726 4.81 -1.705 0 0 0 0 0 0 0 +9.721 4.846 -1.707 0 0 0 0 0 0 0 +9.729 4.888 -1.711 0 0 0 0 0 0 0 +9.732 4.908 -1.713 0 0 0 0 0 0 0 +9.739 4.95 -1.717 0 0 0 0 0 0 0 +9.71 4.974 -1.715 0 0 0 0 0 0 0 +9.69 5.002 -1.714 0 0 0 0 0 0 0 +9.671 5.031 -1.713 0 0 0 0 0 0 0 +9.66 5.064 -1.714 0 0 0 0 0 0 0 +9.646 5.095 -1.715 0 0 0 0 0 0 0 +9.647 5.115 -1.716 0 0 0 0 0 0 0 +9.626 5.143 -1.715 0 0 0 0 0 0 0 +9.618 5.177 -1.717 0 0 0 0 0 0 0 +9.609 5.211 -1.718 0 0 0 0 0 0 0 +9.596 5.243 -1.719 0 0 0 0 0 0 0 +9.569 5.268 -1.717 0 0 0 0 0 0 0 +9.568 5.306 -1.72 0 0 0 0 0 0 0 +9.541 5.311 -1.716 0 0 0 0 0 0 0 +9.546 5.353 -1.721 0 0 0 0 0 0 0 +9.559 5.4 -1.726 0 0 0 0 0 0 0 +9.535 5.426 -1.725 0 0 0 0 0 0 0 +9.444 5.414 -1.711 0 0 0 0 0 0 0 +9.384 5.419 -1.702 0 0 0 0 0 0 0 +9.367 5.448 -1.702 0 0 0 0 0 0 0 +9.362 5.465 -1.703 0 0 0 0 0 0 0 +9.355 5.5 -1.705 0 0 0 0 0 0 0 +9.326 5.523 -1.703 0 0 0 0 0 0 0 +9.288 5.54 -1.699 0 0 0 0 0 0 0 +9.26 5.563 -1.697 0 0 0 0 0 0 0 +9.244 5.593 -1.697 0 0 0 0 0 0 0 +9.22 5.618 -1.696 0 0 0 0 0 0 0 +9.215 5.635 -1.696 0 0 0 0 0 0 0 +9.197 5.664 -1.696 0 0 0 0 0 0 0 +9.171 5.687 -1.695 0 0 0 0 0 0 0 +9.149 5.714 -1.694 0 0 0 0 0 0 0 +9.135 5.745 -1.695 0 0 0 0 0 0 0 +9.113 5.771 -1.694 0 0 0 0 0 0 0 +9.1 5.803 -1.695 0 0 0 0 0 0 0 +9.065 5.821 -1.692 0 0 0 0 0 0 0 +9.036 5.822 -1.688 0 0 0 0 0 0 0 +9.013 5.848 -1.687 0 0 0 0 0 0 0 +8.994 5.876 -1.687 0 0 0 0 0 0 0 +8.981 5.907 -1.688 0 0 0 0 0 0 0 +8.972 5.942 -1.69 0 0 0 0 0 0 0 +8.952 5.969 -1.689 0 0 0 0 0 0 0 +8.928 5.994 -1.688 0 0 0 0 0 0 0 +8.914 6.005 -1.687 0 0 0 0 0 0 0 +8.893 6.032 -1.687 0 0 0 0 0 0 0 +8.869 6.056 -1.686 0 0 0 0 0 0 0 +8.842 6.078 -1.684 0 0 0 0 0 0 0 +8.825 6.107 -1.685 0 0 0 0 0 0 0 +8.818 6.144 -1.687 0 0 0 0 0 0 0 +8.783 6.14 -1.682 0 0 0 0 0 0 0 +8.776 6.176 -1.685 0 0 0 0 0 0 0 +8.749 6.198 -1.683 0 0 0 0 0 0 0 +8.734 6.229 -1.684 0 0 0 0 0 0 0 +8.713 6.255 -1.684 0 0 0 0 0 0 0 +8.692 6.282 -1.683 0 0 0 0 0 0 0 +8.672 6.309 -1.683 0 0 0 0 0 0 0 +8.66 6.321 -1.683 0 0 0 0 0 0 0 +8.642 6.35 -1.683 0 0 0 0 0 0 0 +8.62 6.376 -1.683 0 0 0 0 0 0 0 +8.599 6.401 -1.683 0 0 0 0 0 0 0 +8.585 6.433 -1.684 0 0 0 0 0 0 0 +8.569 6.464 -1.685 0 0 0 0 0 0 0 +8.552 6.493 -1.686 0 0 0 0 0 0 0 +8.55 6.512 -1.687 0 0 0 0 0 0 0 +8.522 6.533 -1.686 0 0 0 0 0 0 0 +8.514 6.569 -1.688 0 0 0 0 0 0 0 +8.496 6.599 -1.689 0 0 0 0 0 0 0 +8.477 6.626 -1.689 0 0 0 0 0 0 0 +8.456 6.653 -1.689 0 0 0 0 0 0 0 +8.432 6.677 -1.689 0 0 0 0 0 0 0 +8.42 6.711 -1.691 0 0 0 0 0 0 0 +8.427 6.738 -1.694 0 0 0 0 0 0 0 +8.404 6.763 -1.694 0 0 0 0 0 0 0 +6.733 5.46 -1.337 0 0 0 0 0 0 0 +6.713 5.479 -1.336 0 0 0 0 0 0 0 +6.679 5.486 -1.332 0 0 0 0 0 0 0 +6.66 5.506 -1.332 0 0 0 0 0 0 0 +6.654 5.536 -1.334 0 0 0 0 0 0 0 +6.548 5.465 -1.313 0 0 0 0 0 0 0 +8.297 6.961 -1.701 0 0 0 0 0 0 0 +8.289 6.998 -1.704 0 0 0 0 0 0 0 +8.262 7.021 -1.703 0 0 0 0 0 0 0 +8.251 7.055 -1.706 0 0 0 0 0 0 0 +8.235 7.086 -1.707 0 0 0 0 0 0 0 +8.214 7.114 -1.707 0 0 0 0 0 0 0 +8.203 7.126 -1.707 0 0 0 0 0 0 0 +8.188 7.159 -1.709 0 0 0 0 0 0 0 +8.167 7.186 -1.709 0 0 0 0 0 0 0 +8.144 7.211 -1.709 0 0 0 0 0 0 0 +8.13 7.245 -1.711 0 0 0 0 0 0 0 +8.098 7.262 -1.709 0 0 0 0 0 0 0 +8.08 7.292 -1.71 0 0 0 0 0 0 0 +8.076 7.311 -1.712 0 0 0 0 0 0 0 +8.051 7.335 -1.712 0 0 0 0 0 0 0 +8.034 7.365 -1.713 0 0 0 0 0 0 0 +8.015 7.395 -1.714 0 0 0 0 0 0 0 +7.989 7.417 -1.713 0 0 0 0 0 0 0 +7.976 7.452 -1.716 0 0 0 0 0 0 0 +7.95 7.474 -1.715 0 0 0 0 0 0 0 +7.939 7.488 -1.715 0 0 0 0 0 0 0 +7.931 7.528 -1.719 0 0 0 0 0 0 0 +7.921 7.565 -1.722 0 0 0 0 0 0 0 +7.893 7.585 -1.721 0 0 0 0 0 0 0 +7.867 7.609 -1.721 0 0 0 0 0 0 0 +7.831 7.621 -1.718 0 0 0 0 0 0 0 +7.807 7.646 -1.718 0 0 0 0 0 0 0 +7.819 7.681 -1.723 0 0 0 0 0 0 0 +7.79 7.702 -1.722 0 0 0 0 0 0 0 +7.772 7.732 -1.724 0 0 0 0 0 0 0 +7.754 7.763 -1.725 0 0 0 0 0 0 0 +7.727 7.785 -1.725 0 0 0 0 0 0 0 +7.707 7.813 -1.726 0 0 0 0 0 0 0 +7.692 7.847 -1.728 0 0 0 0 0 0 0 +7.688 7.868 -1.73 0 0 0 0 0 0 0 +7.662 7.89 -1.73 0 0 0 0 0 0 0 +7.642 7.92 -1.731 0 0 0 0 0 0 0 +7.627 7.954 -1.733 0 0 0 0 0 0 0 +7.606 7.982 -1.734 0 0 0 0 0 0 0 +7.596 8.022 -1.738 0 0 0 0 0 0 0 +7.576 8.051 -1.739 0 0 0 0 0 0 0 +7.565 8.065 -1.74 0 0 0 0 0 0 0 +7.547 8.097 -1.742 0 0 0 0 0 0 0 +7.522 8.121 -1.742 0 0 0 0 0 0 0 +7.508 8.157 -1.745 0 0 0 0 0 0 0 +7.496 8.195 -1.748 0 0 0 0 0 0 0 +7.477 8.226 -1.749 0 0 0 0 0 0 0 +7.46 8.26 -1.752 0 0 0 0 0 0 0 +7.446 8.27 -1.751 0 0 0 0 0 0 0 +7.423 8.296 -1.752 0 0 0 0 0 0 0 +7.403 8.327 -1.754 0 0 0 0 0 0 0 +7.384 8.358 -1.755 0 0 0 0 0 0 0 +7.369 8.394 -1.758 0 0 0 0 0 0 0 +7.359 8.436 -1.763 0 0 0 0 0 0 0 +7.334 8.461 -1.763 0 0 0 0 0 0 0 +7.317 8.468 -1.762 0 0 0 0 0 0 0 +7.302 8.504 -1.765 0 0 0 0 0 0 0 +7.28 8.533 -1.766 0 0 0 0 0 0 0 +7.261 8.565 -1.768 0 0 0 0 0 0 0 +7.236 8.589 -1.769 0 0 0 0 0 0 0 +7.217 8.623 -1.771 0 0 0 0 0 0 0 +7.192 8.647 -1.771 0 0 0 0 0 0 0 +7.174 8.681 -1.774 0 0 0 0 0 0 0 +7.16 8.691 -1.774 0 0 0 0 0 0 0 +7.146 8.73 -1.777 0 0 0 0 0 0 0 +7.122 8.757 -1.778 0 0 0 0 0 0 0 +7.095 8.78 -1.778 0 0 0 0 0 0 0 +7.074 8.811 -1.78 0 0 0 0 0 0 0 +7.048 8.835 -1.781 0 0 0 0 0 0 0 +7.024 8.862 -1.782 0 0 0 0 0 0 0 +7.017 8.882 -1.784 0 0 0 0 0 0 0 +6.996 8.912 -1.785 0 0 0 0 0 0 0 +6.971 8.938 -1.786 0 0 0 0 0 0 0 +6.938 8.954 -1.785 0 0 0 0 0 0 0 +6.911 8.977 -1.785 0 0 0 0 0 0 0 +6.882 8.997 -1.785 0 0 0 0 0 0 0 +6.878 9.022 -1.788 0 0 0 0 0 0 0 +6.845 9.037 -1.787 0 0 0 0 0 0 0 +6.818 9.06 -1.787 0 0 0 0 0 0 0 +6.79 9.082 -1.787 0 0 0 0 0 0 0 +6.763 9.106 -1.788 0 0 0 0 0 0 0 +6.742 9.137 -1.79 0 0 0 0 0 0 0 +6.7 9.141 -1.786 0 0 0 0 0 0 0 +6.697 9.167 -1.789 0 0 0 0 0 0 0 +6.657 9.172 -1.786 0 0 0 0 0 0 0 +6.624 9.187 -1.785 0 0 0 0 0 0 0 +6.602 9.217 -1.787 0 0 0 0 0 0 0 +6.573 9.238 -1.787 0 0 0 0 0 0 0 +6.543 9.258 -1.787 0 0 0 0 0 0 0 +6.516 9.28 -1.787 0 0 0 0 0 0 0 +6.49 9.306 -1.788 0 0 0 0 0 0 0 +6.478 9.321 -1.789 0 0 0 0 0 0 0 +6.45 9.343 -1.789 0 0 0 0 0 0 0 +6.426 9.371 -1.791 0 0 0 0 0 0 0 +6.398 9.393 -1.791 0 0 0 0 0 0 0 +6.37 9.414 -1.792 0 0 0 0 0 0 0 +6.346 9.443 -1.793 0 0 0 0 0 0 0 +6.325 9.476 -1.796 0 0 0 0 0 0 0 +6.334 9.522 -1.803 0 0 0 0 0 0 0 +6.331 9.582 -1.812 0 0 0 0 0 0 0 +6.328 9.643 -1.82 0 0 0 0 0 0 0 +6.331 9.714 -1.83 0 0 0 0 0 0 0 +6.325 9.771 -1.838 0 0 0 0 0 0 0 +6.296 9.794 -1.838 0 0 0 0 0 0 0 +6.283 9.842 -1.844 0 0 0 0 0 0 0 +6.278 9.901 -1.852 0 0 0 0 0 0 0 +6.264 9.915 -1.853 0 0 0 0 0 0 0 +6.238 9.943 -1.854 0 0 0 0 0 0 0 +6.203 9.955 -1.853 0 0 0 0 0 0 0 +6.17 9.971 -1.852 0 0 0 0 0 0 0 +6.13 9.977 -1.85 0 0 0 0 0 0 0 +6.109 10.013 -1.853 0 0 0 0 0 0 0 +6.091 10.02 -1.852 0 0 0 0 0 0 0 +6.064 10.045 -1.854 0 0 0 0 0 0 0 +6.025 10.053 -1.851 0 0 0 0 0 0 0 +5.988 10.063 -1.85 0 0 0 0 0 0 0 +5.964 10.094 -1.852 0 0 0 0 0 0 0 +5.931 10.111 -1.852 0 0 0 0 0 0 0 +5.901 10.133 -1.852 0 0 0 0 0 0 0 +5.866 10.146 -1.851 0 0 0 0 0 0 0 +5.851 10.157 -1.852 0 0 0 0 0 0 0 +5.813 10.165 -1.85 0 0 0 0 0 0 0 +5.783 10.187 -1.85 0 0 0 0 0 0 0 +5.753 10.208 -1.851 0 0 0 0 0 0 0 +5.727 10.237 -1.853 0 0 0 0 0 0 0 +5.687 10.241 -1.85 0 0 0 0 0 0 0 +5.66 10.267 -1.852 0 0 0 0 0 0 0 +5.642 10.273 -1.851 0 0 0 0 0 0 0 +5.606 10.283 -1.85 0 0 0 0 0 0 0 +5.566 10.287 -1.847 0 0 0 0 0 0 0 +5.533 10.304 -1.847 0 0 0 0 0 0 0 +5.491 10.303 -1.844 0 0 0 0 0 0 0 +5.457 10.316 -1.843 0 0 0 0 0 0 0 +5.421 10.328 -1.842 0 0 0 0 0 0 0 +5.404 10.335 -1.842 0 0 0 0 0 0 0 +5.364 10.338 -1.839 0 0 0 0 0 0 0 +5.332 10.355 -1.839 0 0 0 0 0 0 0 +5.298 10.368 -1.838 0 0 0 0 0 0 0 +5.263 10.381 -1.838 0 0 0 0 0 0 0 +5.231 10.397 -1.838 0 0 0 0 0 0 0 +5.192 10.402 -1.835 0 0 0 0 0 0 0 +5.172 10.403 -1.834 0 0 0 0 0 0 0 +5.139 10.419 -1.834 0 0 0 0 0 0 0 +5.105 10.433 -1.834 0 0 0 0 0 0 0 +5.069 10.442 -1.832 0 0 0 0 0 0 0 +5.035 10.456 -1.832 0 0 0 0 0 0 0 +4.993 10.452 -1.828 0 0 0 0 0 0 0 +4.959 10.464 -1.828 0 0 0 0 0 0 0 +4.939 10.465 -1.826 0 0 0 0 0 0 0 +4.903 10.475 -1.825 0 0 0 0 0 0 0 +4.868 10.485 -1.824 0 0 0 0 0 0 0 +4.832 10.493 -1.823 0 0 0 0 0 0 0 +4.798 10.507 -1.823 0 0 0 0 0 0 0 +4.757 10.505 -1.82 0 0 0 0 0 0 0 +4.72 10.511 -1.818 0 0 0 0 0 0 0 +4.687 10.526 -1.818 0 0 0 0 0 0 0 +4.667 10.524 -1.816 0 0 0 0 0 0 0 +4.634 10.541 -1.817 0 0 0 0 0 0 0 +4.593 10.537 -1.813 0 0 0 0 0 0 0 +4.564 10.561 -1.815 0 0 0 0 0 0 0 +4.525 10.561 -1.812 0 0 0 0 0 0 0 +4.493 10.578 -1.813 0 0 0 0 0 0 0 +4.455 10.582 -1.811 0 0 0 0 0 0 0 +4.439 10.59 -1.811 0 0 0 0 0 0 0 +4.405 10.601 -1.811 0 0 0 0 0 0 0 +4.371 10.614 -1.811 0 0 0 0 0 0 0 +4.33 10.608 -1.807 0 0 0 0 0 0 0 +4.296 10.62 -1.807 0 0 0 0 0 0 0 +4.264 10.639 -1.808 0 0 0 0 0 0 0 +4.232 10.654 -1.808 0 0 0 0 0 0 0 +4.208 10.644 -1.805 0 0 0 0 0 0 0 +4.168 10.641 -1.802 0 0 0 0 0 0 0 +4.141 10.668 -1.805 0 0 0 0 0 0 0 +4.096 10.652 -1.799 0 0 0 0 0 0 0 +4.068 10.679 -1.802 0 0 0 0 0 0 0 +4.037 10.7 -1.803 0 0 0 0 0 0 0 +3.998 10.697 -1.801 0 0 0 0 0 0 0 +3.986 10.717 -1.803 0 0 0 0 0 0 0 +3.956 10.738 -1.805 0 0 0 0 0 0 0 +3.919 10.741 -1.803 0 0 0 0 0 0 0 +3.888 10.763 -1.805 0 0 0 0 0 0 0 +3.856 10.779 -1.805 0 0 0 0 0 0 0 +3.819 10.783 -1.804 0 0 0 0 0 0 0 +3.784 10.792 -1.803 0 0 0 0 0 0 0 +3.765 10.792 -1.802 0 0 0 0 0 0 0 +3.725 10.785 -1.799 0 0 0 0 0 0 0 +3.691 10.799 -1.799 0 0 0 0 0 0 0 +3.659 10.814 -1.8 0 0 0 0 0 0 0 +3.622 10.818 -1.799 0 0 0 0 0 0 0 +3.584 10.818 -1.797 0 0 0 0 0 0 0 +3.559 10.855 -1.801 0 0 0 0 0 0 0 +3.518 10.846 -1.798 0 0 0 0 0 0 0 +3.498 10.84 -1.796 0 0 0 0 0 0 0 +3.459 10.836 -1.793 0 0 0 0 0 0 0 +3.412 10.807 -1.786 0 0 0 0 0 0 0 +3.375 10.809 -1.784 0 0 0 0 0 0 0 +3.333 10.793 -1.78 0 0 0 0 0 0 0 +3.292 10.781 -1.776 0 0 0 0 0 0 0 +3.25 10.765 -1.771 0 0 0 0 0 0 0 +3.227 10.749 -1.767 0 0 0 0 0 0 0 +3.19 10.75 -1.766 0 0 0 0 0 0 0 +3.15 10.737 -1.762 0 0 0 0 0 0 0 +3.119 10.756 -1.763 0 0 0 0 0 0 0 +3.09 10.783 -1.766 0 0 0 0 0 0 0 +3.066 10.829 -1.773 0 0 0 0 0 0 0 +3.036 10.85 -1.775 0 0 0 0 0 0 0 +3.016 10.845 -1.773 0 0 0 0 0 0 0 +2.766 10.075 -1.637 0 0 0 0 0 0 0 +2.733 10.078 -1.636 0 0 0 0 0 0 0 +2.696 10.068 -1.632 0 0 0 0 0 0 0 +2.665 10.08 -1.633 0 0 0 0 0 0 0 +2.633 10.086 -1.633 0 0 0 0 0 0 0 +2.59 10.052 -1.625 0 0 0 0 0 0 0 +1.751 6.874 -1.071 0 0 0 0 0 0 0 +1.734 6.898 -1.074 0 0 0 0 0 0 0 +1.709 6.89 -1.072 0 0 0 0 0 0 0 +1.861 7.594 -1.193 0 0 0 0 0 0 0 +2.101 8.674 -1.38 0 0 0 0 0 0 0 +2.327 9.728 -1.562 0 0 0 0 0 0 0 +2.35 9.959 -1.6 0 0 0 0 0 0 0 +2.332 10.024 -1.61 0 0 0 0 0 0 0 +2.332 10.093 -1.622 0 0 0 0 0 0 0 +2.306 10.125 -1.626 0 0 0 0 0 0 0 +2.272 10.125 -1.625 0 0 0 0 0 0 0 +2.241 10.132 -1.625 0 0 0 0 0 0 0 +2.206 10.127 -1.623 0 0 0 0 0 0 0 +2.175 10.136 -1.623 0 0 0 0 0 0 0 +2.143 10.145 -1.623 0 0 0 0 0 0 0 +2.127 10.148 -1.623 0 0 0 0 0 0 0 +2.095 10.155 -1.623 0 0 0 0 0 0 0 +2.063 10.16 -1.623 0 0 0 0 0 0 0 +2.028 10.152 -1.621 0 0 0 0 0 0 0 +1.996 10.155 -1.62 0 0 0 0 0 0 0 +1.963 10.155 -1.619 0 0 0 0 0 0 0 +1.929 10.15 -1.617 0 0 0 0 0 0 0 +1.916 10.168 -1.62 0 0 0 0 0 0 0 +1.882 10.167 -1.618 0 0 0 0 0 0 0 +0.564 3.202 -0.423 0 0 0 0 0 0 0 +0.551 3.184 -0.42 0 0 0 0 0 0 0 +0.54 3.184 -0.419 0 0 0 0 0 0 0 +0.532 3.196 -0.421 0 0 0 0 0 0 0 +0.556 3.396 -0.455 0 0 0 0 0 0 0 +0.553 3.41 -0.457 0 0 0 0 0 0 0 +0.539 3.392 -0.454 0 0 0 0 0 0 0 +0.527 3.384 -0.452 0 0 0 0 0 0 0 +0.517 3.392 -0.453 0 0 0 0 0 0 0 +0.505 3.386 -0.452 0 0 0 0 0 0 0 +0.496 3.395 -0.453 0 0 0 0 0 0 0 +0.48 3.361 -0.447 0 0 0 0 0 0 0 +0.434 3.123 -0.406 0 0 0 0 0 0 0 +0.407 2.971 -0.38 0 0 0 0 0 0 0 +0.397 2.973 -0.38 0 0 0 0 0 0 0 +0.388 2.972 -0.38 0 0 0 0 0 0 0 +0.379 2.973 -0.38 0 0 0 0 0 0 0 +0.369 2.974 -0.38 0 0 0 0 0 0 0 +0.359 2.969 -0.379 0 0 0 0 0 0 0 +0.35 2.973 -0.379 0 0 0 0 0 0 0 +0.345 2.973 -0.379 0 0 0 0 0 0 0 +0.337 2.98 -0.38 0 0 0 0 0 0 0 +0.327 2.975 -0.379 0 0 0 0 0 0 0 +0.318 2.98 -0.38 0 0 0 0 0 0 0 +0.308 2.981 -0.38 0 0 0 0 0 0 0 +0.299 2.984 -0.38 0 0 0 0 0 0 0 +0.29 2.989 -0.381 0 0 0 0 0 0 0 +0.297 3.097 -0.399 0 0 0 0 0 0 0 +0.305 3.273 -0.429 0 0 0 0 0 0 0 +0.29 3.233 -0.422 0 0 0 0 0 0 0 +0.28 3.235 -0.422 0 0 0 0 0 0 0 +0.27 3.238 -0.423 0 0 0 0 0 0 0 +0.26 3.231 -0.421 0 0 0 0 0 0 0 +0.249 3.226 -0.42 0 0 0 0 0 0 0 +0.244 3.228 -0.421 0 0 0 0 0 0 0 +0.234 3.225 -0.42 0 0 0 0 0 0 0 +0.223 3.218 -0.419 0 0 0 0 0 0 0 +0.213 3.223 -0.419 0 0 0 0 0 0 0 +0.203 3.229 -0.42 0 0 0 0 0 0 0 +0.632 10.427 -1.636 0 0 0 0 0 0 0 +0.191 3.198 -0.415 0 0 0 0 0 0 0 +0.598 10.411 -1.633 0 0 0 0 0 0 0 +0.186 3.28 -0.429 0 0 0 0 0 0 0 +0.566 10.419 -1.634 0 0 0 0 0 0 0 +0.534 10.436 -1.637 0 0 0 0 0 0 0 +0.52 10.8 -1.698 0 0 0 0 0 0 0 +0.494 10.971 -1.727 0 0 0 0 0 0 0 +0.46 10.998 -1.731 0 0 0 0 0 0 0 +0.426 10.994 -1.73 0 0 0 0 0 0 0 +0.409 11.018 -1.734 0 0 0 0 0 0 0 +0.375 11.037 -1.737 0 0 0 0 0 0 0 +0.341 11.056 -1.74 0 0 0 0 0 0 0 +0.307 11.071 -1.743 0 0 0 0 0 0 0 +0.272 11.078 -1.744 0 0 0 0 0 0 0 +0.238 11.096 -1.746 0 0 0 0 0 0 0 +0.203 11.107 -1.748 0 0 0 0 0 0 0 +0.186 11.125 -1.751 0 0 0 0 0 0 0 +0.151 11.131 -1.752 0 0 0 0 0 0 0 +0.117 11.155 -1.756 0 0 0 0 0 0 0 +0.083 11.262 -1.774 0 0 0 0 0 0 0 +0.048 11.315 -1.783 0 0 0 0 0 0 0 +-0.023 11.483 -1.811 0 0 0 0 0 0 0 +-0.041 11.335 -1.786 0 0 0 0 0 0 0 +-0.112 11.254 -1.773 0 0 0 0 0 0 0 +-0.147 11.216 -1.766 0 0 0 0 0 0 0 +-0.182 11.215 -1.766 0 0 0 0 0 0 0 +-0.217 11.217 -1.767 0 0 0 0 0 0 0 +-0.253 11.222 -1.768 0 0 0 0 0 0 0 +-0.288 11.229 -1.769 0 0 0 0 0 0 0 +-0.306 11.223 -1.768 0 0 0 0 0 0 0 +-0.341 11.224 -1.768 0 0 0 0 0 0 0 +-0.376 11.217 -1.767 0 0 0 0 0 0 0 +-0.411 11.215 -1.767 0 0 0 0 0 0 0 +-0.446 11.206 -1.766 0 0 0 0 0 0 0 +-0.482 11.214 -1.768 0 0 0 0 0 0 0 +-0.517 11.207 -1.767 0 0 0 0 0 0 0 +-0.534 11.208 -1.767 0 0 0 0 0 0 0 +-0.57 11.214 -1.768 0 0 0 0 0 0 0 +-0.606 11.226 -1.771 0 0 0 0 0 0 0 +-0.642 11.23 -1.772 0 0 0 0 0 0 0 +-0.677 11.228 -1.772 0 0 0 0 0 0 0 +-0.712 11.224 -1.771 0 0 0 0 0 0 0 +-0.747 11.224 -1.772 0 0 0 0 0 0 0 +-0.766 11.232 -1.773 0 0 0 0 0 0 0 +-0.801 11.228 -1.773 0 0 0 0 0 0 0 +-0.836 11.223 -1.773 0 0 0 0 0 0 0 +-0.871 11.217 -1.772 0 0 0 0 0 0 0 +-0.906 11.212 -1.772 0 0 0 0 0 0 0 +-0.941 11.213 -1.772 0 0 0 0 0 0 0 +-0.977 11.208 -1.772 0 0 0 0 0 0 0 +-0.994 11.205 -1.772 0 0 0 0 0 0 0 +-1.028 11.192 -1.77 0 0 0 0 0 0 0 +-1.064 11.194 -1.771 0 0 0 0 0 0 0 +-1.1 11.195 -1.772 0 0 0 0 0 0 0 +-1.134 11.187 -1.771 0 0 0 0 0 0 0 +-1.17 11.188 -1.772 0 0 0 0 0 0 0 +-1.205 11.18 -1.771 0 0 0 0 0 0 0 +-1.222 11.174 -1.77 0 0 0 0 0 0 0 +-1.258 11.178 -1.772 0 0 0 0 0 0 0 +-1.291 11.162 -1.77 0 0 0 0 0 0 0 +-1.328 11.174 -1.772 0 0 0 0 0 0 0 +-1.37 11.222 -1.781 0 0 0 0 0 0 0 +-1.415 11.3 -1.795 0 0 0 0 0 0 0 +-1.451 11.3 -1.796 0 0 0 0 0 0 0 +-1.463 11.252 -1.788 0 0 0 0 0 0 0 +-1.502 11.275 -1.793 0 0 0 0 0 0 0 +-1.53 11.214 -1.783 0 0 0 0 0 0 0 +-1.562 11.189 -1.78 0 0 0 0 0 0 0 +-1.595 11.165 -1.777 0 0 0 0 0 0 0 +-1.628 11.146 -1.774 0 0 0 0 0 0 0 +-1.663 11.143 -1.775 0 0 0 0 0 0 0 +-1.694 11.108 -1.77 0 0 0 0 0 0 0 +-1.713 11.115 -1.771 0 0 0 0 0 0 0 +-1.75 11.124 -1.774 0 0 0 0 0 0 0 +-1.783 11.106 -1.772 0 0 0 0 0 0 0 +-1.819 11.107 -1.773 0 0 0 0 0 0 0 +-1.855 11.11 -1.774 0 0 0 0 0 0 0 +-1.887 11.089 -1.772 0 0 0 0 0 0 0 +-1.922 11.083 -1.772 0 0 0 0 0 0 0 +-1.941 11.09 -1.773 0 0 0 0 0 0 0 +-1.975 11.076 -1.772 0 0 0 0 0 0 0 +-2.011 11.079 -1.774 0 0 0 0 0 0 0 +-2.048 11.083 -1.775 0 0 0 0 0 0 0 +-2.08 11.063 -1.773 0 0 0 0 0 0 0 +-2.116 11.062 -1.774 0 0 0 0 0 0 0 +-2.153 11.065 -1.776 0 0 0 0 0 0 0 +-2.17 11.061 -1.776 0 0 0 0 0 0 0 +-2.207 11.066 -1.778 0 0 0 0 0 0 0 +-2.243 11.067 -1.779 0 0 0 0 0 0 0 +-2.277 11.056 -1.778 0 0 0 0 0 0 0 +-2.312 11.049 -1.778 0 0 0 0 0 0 0 +-2.349 11.053 -1.78 0 0 0 0 0 0 0 +-2.386 11.053 -1.782 0 0 0 0 0 0 0 +-2.4 11.034 -1.779 0 0 0 0 0 0 0 +-2.44 11.051 -1.783 0 0 0 0 0 0 0 +-2.472 11.032 -1.781 0 0 0 0 0 0 0 +-2.506 11.022 -1.781 0 0 0 0 0 0 0 +-2.542 11.022 -1.782 0 0 0 0 0 0 0 +-2.58 11.028 -1.785 0 0 0 0 0 0 0 +-2.614 11.016 -1.784 0 0 0 0 0 0 0 +-2.651 11.019 -1.786 0 0 0 0 0 0 0 +-2.67 11.022 -1.787 0 0 0 0 0 0 0 +-2.701 10.999 -1.785 0 0 0 0 0 0 0 +-2.74 11.009 -1.788 0 0 0 0 0 0 0 +-2.774 10.995 -1.787 0 0 0 0 0 0 0 +-2.807 10.982 -1.786 0 0 0 0 0 0 0 +-2.85 11.006 -1.792 0 0 0 0 0 0 0 +-2.881 10.983 -1.79 0 0 0 0 0 0 0 +-2.898 10.979 -1.79 0 0 0 0 0 0 0 +-2.939 10.994 -1.794 0 0 0 0 0 0 0 +-2.97 10.97 -1.791 0 0 0 0 0 0 0 +-3.015 10.999 -1.798 0 0 0 0 0 0 0 +-3.055 11.01 -1.802 0 0 0 0 0 0 0 +-3.037 10.812 -1.769 0 0 0 0 0 0 0 +-2.68 9.415 -1.526 0 0 0 0 0 0 0 +-2.679 9.356 -1.516 0 0 0 0 0 0 0 +-2.693 9.294 -1.507 0 0 0 0 0 0 0 +-2.709 9.238 -1.498 0 0 0 0 0 0 0 +-2.728 9.198 -1.493 0 0 0 0 0 0 0 +-2.741 9.134 -1.483 0 0 0 0 0 0 0 +-2.755 9.077 -1.474 0 0 0 0 0 0 0 +-2.773 9.034 -1.468 0 0 0 0 0 0 0 +-2.773 8.982 -1.46 0 0 0 0 0 0 0 +-2.788 8.932 -1.453 0 0 0 0 0 0 0 +-2.806 8.889 -1.447 0 0 0 0 0 0 0 +-2.818 8.832 -1.438 0 0 0 0 0 0 0 +-2.833 8.781 -1.431 0 0 0 0 0 0 0 +-2.851 8.743 -1.426 0 0 0 0 0 0 0 +-2.86 8.677 -1.416 0 0 0 0 0 0 0 +-2.876 8.636 -1.41 0 0 0 0 0 0 0 +-2.879 8.6 -1.404 0 0 0 0 0 0 0 +-2.89 8.54 -1.395 0 0 0 0 0 0 0 +-2.902 8.488 -1.388 0 0 0 0 0 0 0 +-2.919 8.451 -1.383 0 0 0 0 0 0 0 +-2.93 8.397 -1.375 0 0 0 0 0 0 0 +-2.941 8.345 -1.367 0 0 0 0 0 0 0 +-2.961 8.317 -1.364 0 0 0 0 0 0 0 +-2.956 8.261 -1.354 0 0 0 0 0 0 0 +-2.97 8.22 -1.349 0 0 0 0 0 0 0 +-2.985 8.179 -1.343 0 0 0 0 0 0 0 +-2.995 8.129 -1.336 0 0 0 0 0 0 0 +-3.009 8.086 -1.33 0 0 0 0 0 0 0 +-3.032 8.071 -1.329 0 0 0 0 0 0 0 +-3.042 8.021 -1.321 0 0 0 0 0 0 0 +-3.046 7.994 -1.317 0 0 0 0 0 0 0 +-3.065 7.968 -1.314 0 0 0 0 0 0 0 +-3.077 7.923 -1.308 0 0 0 0 0 0 0 +-3.095 7.897 -1.305 0 0 0 0 0 0 0 +-3.114 7.872 -1.302 0 0 0 0 0 0 0 +-3.124 7.824 -1.295 0 0 0 0 0 0 0 +-3.144 7.803 -1.293 0 0 0 0 0 0 0 +-3.144 7.767 -1.288 0 0 0 0 0 0 0 +-3.158 7.733 -1.283 0 0 0 0 0 0 0 +-3.177 7.709 -1.281 0 0 0 0 0 0 0 +-3.194 7.682 -1.278 0 0 0 0 0 0 0 +-3.204 7.638 -1.272 0 0 0 0 0 0 0 +-3.225 7.62 -1.27 0 0 0 0 0 0 0 +-3.236 7.581 -1.265 0 0 0 0 0 0 0 +-3.253 7.555 -1.262 0 0 0 0 0 0 0 +-3.254 7.524 -1.257 0 0 0 0 0 0 0 +-3.272 7.501 -1.255 0 0 0 0 0 0 0 +-3.286 7.467 -1.251 0 0 0 0 0 0 0 +-3.304 7.444 -1.248 0 0 0 0 0 0 0 +-3.316 7.409 -1.244 0 0 0 0 0 0 0 +-3.334 7.387 -1.242 0 0 0 0 0 0 0 +-3.351 7.362 -1.239 0 0 0 0 0 0 0 +-3.347 7.323 -1.233 0 0 0 0 0 0 0 +-3.366 7.304 -1.231 0 0 0 0 0 0 0 +-3.376 7.264 -1.226 0 0 0 0 0 0 0 +-3.4 7.257 -1.226 0 0 0 0 0 0 0 +-3.405 7.209 -1.219 0 0 0 0 0 0 0 +-3.425 7.193 -1.218 0 0 0 0 0 0 0 +-3.436 7.157 -1.214 0 0 0 0 0 0 0 +-3.445 7.146 -1.213 0 0 0 0 0 0 0 +-3.459 7.118 -1.209 0 0 0 0 0 0 0 +-3.48 7.105 -1.209 0 0 0 0 0 0 0 +-3.501 7.091 -1.208 0 0 0 0 0 0 0 +-3.525 7.083 -1.209 0 0 0 0 0 0 0 +-3.548 7.074 -1.209 0 0 0 0 0 0 0 +-3.578 7.078 -1.212 0 0 0 0 0 0 0 +-3.587 7.069 -1.212 0 0 0 0 0 0 0 +-3.617 7.074 -1.215 0 0 0 0 0 0 0 +-3.641 7.064 -1.215 0 0 0 0 0 0 0 +-3.672 7.07 -1.218 0 0 0 0 0 0 0 +-3.695 7.06 -1.219 0 0 0 0 0 0 0 +-3.728 7.07 -1.223 0 0 0 0 0 0 0 +-3.747 7.051 -1.221 0 0 0 0 0 0 0 +-3.778 7.057 -1.225 0 0 0 0 0 0 0 +-3.794 7.059 -1.226 0 0 0 0 0 0 0 +-3.824 7.063 -1.229 0 0 0 0 0 0 0 +-3.848 7.055 -1.23 0 0 0 0 0 0 0 +-3.879 7.058 -1.233 0 0 0 0 0 0 0 +-3.9 7.044 -1.233 0 0 0 0 0 0 0 +-3.935 7.054 -1.237 0 0 0 0 0 0 0 +-3.961 7.049 -1.238 0 0 0 0 0 0 0 +-3.98 7.058 -1.241 0 0 0 0 0 0 0 +-4.003 7.047 -1.242 0 0 0 0 0 0 0 +-4.043 7.065 -1.248 0 0 0 0 0 0 0 +-4.063 7.049 -1.247 0 0 0 0 0 0 0 +-4.098 7.059 -1.251 0 0 0 0 0 0 0 +-4.122 7.049 -1.252 0 0 0 0 0 0 0 +-4.16 7.063 -1.257 0 0 0 0 0 0 0 +-4.188 7.059 -1.259 0 0 0 0 0 0 0 +-4.21 7.071 -1.263 0 0 0 0 0 0 0 +-4.237 7.066 -1.264 0 0 0 0 0 0 0 +-4.264 7.061 -1.266 0 0 0 0 0 0 0 +-4.302 7.073 -1.271 0 0 0 0 0 0 0 +-4.334 7.076 -1.274 0 0 0 0 0 0 0 +-4.368 7.081 -1.278 0 0 0 0 0 0 0 +-4.398 7.081 -1.28 0 0 0 0 0 0 0 +-4.423 7.096 -1.285 0 0 0 0 0 0 0 +-4.451 7.092 -1.287 0 0 0 0 0 0 0 +-4.487 7.1 -1.291 0 0 0 0 0 0 0 +-4.519 7.1 -1.294 0 0 0 0 0 0 0 +-4.558 7.113 -1.299 0 0 0 0 0 0 0 +-4.603 7.133 -1.306 0 0 0 0 0 0 0 +-4.635 7.134 -1.309 0 0 0 0 0 0 0 +-4.648 7.13 -1.31 0 0 0 0 0 0 0 +-4.694 7.151 -1.317 0 0 0 0 0 0 0 +-4.738 7.17 -1.324 0 0 0 0 0 0 0 +-4.779 7.183 -1.33 0 0 0 0 0 0 0 +-4.814 7.186 -1.333 0 0 0 0 0 0 0 +-4.861 7.207 -1.341 0 0 0 0 0 0 0 +-4.891 7.203 -1.343 0 0 0 0 0 0 0 +-4.928 7.233 -1.351 0 0 0 0 0 0 0 +-4.974 7.251 -1.358 0 0 0 0 0 0 0 +-5.02 7.27 -1.365 0 0 0 0 0 0 0 +-5.079 7.306 -1.375 0 0 0 0 0 0 0 +-6.239 8.925 -1.711 0 0 0 0 0 0 0 +-6.269 8.909 -1.712 0 0 0 0 0 0 0 +-6.297 8.889 -1.712 0 0 0 0 0 0 0 +-6.328 8.874 -1.713 0 0 0 0 0 0 0 +-6.345 8.867 -1.714 0 0 0 0 0 0 0 +-6.371 8.846 -1.713 0 0 0 0 0 0 0 +-6.401 8.829 -1.714 0 0 0 0 0 0 0 +-6.428 8.807 -1.714 0 0 0 0 0 0 0 +-6.457 8.789 -1.714 0 0 0 0 0 0 0 +-6.489 8.775 -1.715 0 0 0 0 0 0 0 +-6.513 8.749 -1.714 0 0 0 0 0 0 0 +-6.528 8.741 -1.715 0 0 0 0 0 0 0 +-6.554 8.719 -1.714 0 0 0 0 0 0 0 +-6.574 8.688 -1.712 0 0 0 0 0 0 0 +-6.611 8.68 -1.715 0 0 0 0 0 0 0 +-6.631 8.65 -1.713 0 0 0 0 0 0 0 +-6.661 8.632 -1.714 0 0 0 0 0 0 0 +-6.697 8.624 -1.716 0 0 0 0 0 0 0 +-6.713 8.616 -1.717 0 0 0 0 0 0 0 +-6.738 8.592 -1.716 0 0 0 0 0 0 0 +-6.776 8.585 -1.719 0 0 0 0 0 0 0 +-6.791 8.548 -1.716 0 0 0 0 0 0 0 +-6.833 8.547 -1.72 0 0 0 0 0 0 0 +-6.853 8.516 -1.718 0 0 0 0 0 0 0 +-6.883 8.499 -1.719 0 0 0 0 0 0 0 +-6.902 8.494 -1.721 0 0 0 0 0 0 0 +-6.92 8.462 -1.718 0 0 0 0 0 0 0 +-6.955 8.451 -1.721 0 0 0 0 0 0 0 +-6.983 8.431 -1.721 0 0 0 0 0 0 0 +-7.005 8.404 -1.72 0 0 0 0 0 0 0 +-7.047 8.4 -1.724 0 0 0 0 0 0 0 +-7.074 8.379 -1.724 0 0 0 0 0 0 0 +-7.09 8.371 -1.725 0 0 0 0 0 0 0 +-7.13 8.366 -1.729 0 0 0 0 0 0 0 +-7.161 8.348 -1.73 0 0 0 0 0 0 0 +-7.197 8.337 -1.732 0 0 0 0 0 0 0 +-7.241 8.335 -1.737 0 0 0 0 0 0 0 +-7.265 8.31 -1.736 0 0 0 0 0 0 0 +-7.293 8.29 -1.737 0 0 0 0 0 0 0 +-7.325 8.273 -1.738 0 0 0 0 0 0 0 +-7.351 8.276 -1.742 0 0 0 0 0 0 0 +-7.386 8.263 -1.744 0 0 0 0 0 0 0 +-7.413 8.241 -1.744 0 0 0 0 0 0 0 +-7.45 8.23 -1.747 0 0 0 0 0 0 0 +-7.475 8.206 -1.747 0 0 0 0 0 0 0 +-7.508 8.19 -1.748 0 0 0 0 0 0 0 +-7.543 8.177 -1.751 0 0 0 0 0 0 0 +-7.572 8.182 -1.755 0 0 0 0 0 0 0 +-7.596 8.157 -1.754 0 0 0 0 0 0 0 +-7.601 8.111 -1.749 0 0 0 0 0 0 0 +-7.589 8.047 -1.74 0 0 0 0 0 0 0 +-7.649 8.061 -1.749 0 0 0 0 0 0 0 +-7.71 8.074 -1.757 0 0 0 0 0 0 0 +-7.789 8.105 -1.77 0 0 0 0 0 0 0 +-7.818 8.11 -1.774 0 0 0 0 0 0 0 +-7.86 8.102 -1.778 0 0 0 0 0 0 0 +-7.893 8.086 -1.78 0 0 0 0 0 0 0 +-7.941 8.084 -1.786 0 0 0 0 0 0 0 +-7.983 8.076 -1.79 0 0 0 0 0 0 0 +-8.033 8.076 -1.796 0 0 0 0 0 0 0 +-8.125 8.117 -1.812 0 0 0 0 0 0 0 +-8.253 8.22 -1.839 0 0 0 0 0 0 0 +-8.409 8.324 -1.87 0 0 0 0 0 0 0 +-8.442 8.304 -1.872 0 0 0 0 0 0 0 +-8.481 8.29 -1.875 0 0 0 0 0 0 0 +-8.509 8.265 -1.875 0 0 0 0 0 0 0 +-8.549 8.252 -1.879 0 0 0 0 0 0 0 +-8.573 8.223 -1.878 0 0 0 0 0 0 0 +-8.605 8.228 -1.883 0 0 0 0 0 0 0 +-8.637 8.208 -1.884 0 0 0 0 0 0 0 +-8.665 8.182 -1.885 0 0 0 0 0 0 0 +-8.69 8.154 -1.885 0 0 0 0 0 0 0 +-8.735 8.145 -1.889 0 0 0 0 0 0 0 +-8.764 8.121 -1.89 0 0 0 0 0 0 0 +-8.788 8.092 -1.89 0 0 0 0 0 0 0 +-8.821 8.071 -1.891 0 0 0 0 0 0 0 +-8.84 8.063 -1.893 0 0 0 0 0 0 0 +-8.868 8.038 -1.893 0 0 0 0 0 0 0 +-8.899 8.015 -1.895 0 0 0 0 0 0 0 +-8.925 7.988 -1.895 0 0 0 0 0 0 0 +-8.961 7.969 -1.897 0 0 0 0 0 0 0 +-8.999 7.953 -1.9 0 0 0 0 0 0 0 +-9.024 7.925 -1.9 0 0 0 0 0 0 0 +-9.025 7.9 -1.898 0 0 0 0 0 0 0 +-9.066 7.886 -1.901 0 0 0 0 0 0 0 +-9.082 7.85 -1.899 0 0 0 0 0 0 0 +-9.1 7.816 -1.898 0 0 0 0 0 0 0 +-9.125 7.787 -1.898 0 0 0 0 0 0 0 +-9.152 7.761 -1.899 0 0 0 0 0 0 0 +-9.17 7.727 -1.897 0 0 0 0 0 0 0 +-9.18 7.71 -1.897 0 0 0 0 0 0 0 +-9.22 7.695 -1.9 0 0 0 0 0 0 0 +-9.237 7.66 -1.899 0 0 0 0 0 0 0 +-9.261 7.631 -1.899 0 0 0 0 0 0 0 +-9.28 7.598 -1.898 0 0 0 0 0 0 0 +-9.301 7.566 -1.897 0 0 0 0 0 0 0 +-9.337 7.547 -1.9 0 0 0 0 0 0 0 +-9.357 7.539 -1.901 0 0 0 0 0 0 0 +-9.369 7.501 -1.899 0 0 0 0 0 0 0 +-9.411 7.486 -1.903 0 0 0 0 0 0 0 +-9.43 7.453 -1.902 0 0 0 0 0 0 0 +-9.463 7.43 -1.904 0 0 0 0 0 0 0 +-9.482 7.397 -1.903 0 0 0 0 0 0 0 +-9.522 7.38 -1.906 0 0 0 0 0 0 0 +-9.534 7.342 -1.904 0 0 0 0 0 0 0 +-9.553 7.333 -1.906 0 0 0 0 0 0 0 +-9.575 7.302 -1.905 0 0 0 0 0 0 0 +-9.606 7.278 -1.907 0 0 0 0 0 0 0 +-9.632 7.25 -1.908 0 0 0 0 0 0 0 +-9.654 7.219 -1.908 0 0 0 0 0 0 0 +-9.68 7.191 -1.908 0 0 0 0 0 0 0 +-9.712 7.168 -1.91 0 0 0 0 0 0 0 +-9.715 7.147 -1.909 0 0 0 0 0 0 0 +-9.754 7.128 -1.912 0 0 0 0 0 0 0 +-9.779 7.1 -1.913 0 0 0 0 0 0 0 +-9.811 7.076 -1.915 0 0 0 0 0 0 0 +-9.824 7.038 -1.913 0 0 0 0 0 0 0 +-9.857 7.015 -1.915 0 0 0 0 0 0 0 +-9.881 6.985 -1.915 0 0 0 0 0 0 0 +-9.9 6.976 -1.917 0 0 0 0 0 0 0 +-9.921 6.944 -1.917 0 0 0 0 0 0 0 +-9.946 6.916 -1.918 0 0 0 0 0 0 0 +-9.97 6.885 -1.918 0 0 0 0 0 0 0 +-9.991 6.854 -1.918 0 0 0 0 0 0 0 +-10.014 6.824 -1.918 0 0 0 0 0 0 0 +-10.054 6.804 -1.922 0 0 0 0 0 0 0 +-10.073 6.794 -1.924 0 0 0 0 0 0 0 +-10.097 6.765 -1.924 0 0 0 0 0 0 0 +-6.721 4.462 -1.235 0 0 0 0 0 0 0 +-6.722 4.432 -1.233 0 0 0 0 0 0 0 +-6.721 4.401 -1.23 0 0 0 0 0 0 0 +-6.733 4.379 -1.229 0 0 0 0 0 0 0 +-6.747 4.358 -1.229 0 0 0 0 0 0 0 +-6.769 4.357 -1.232 0 0 0 0 0 0 0 +-6.728 4.3 -1.221 0 0 0 0 0 0 0 +-6.804 4.319 -1.234 0 0 0 0 0 0 0 +-10.344 6.537 -1.938 0 0 0 0 0 0 0 +-10.371 6.509 -1.94 0 0 0 0 0 0 0 +-10.395 6.478 -1.94 0 0 0 0 0 0 0 +-10.435 6.458 -1.944 0 0 0 0 0 0 0 +-10.451 6.445 -1.945 0 0 0 0 0 0 0 +-10.472 6.413 -1.946 0 0 0 0 0 0 0 +-10.494 6.381 -1.946 0 0 0 0 0 0 0 +-10.524 6.354 -1.948 0 0 0 0 0 0 0 +-10.565 6.333 -1.952 0 0 0 0 0 0 0 +-10.586 6.301 -1.952 0 0 0 0 0 0 0 +-10.591 6.259 -1.949 0 0 0 0 0 0 0 +-10.612 6.226 -1.95 0 0 0 0 0 0 0 +-10.623 6.211 -1.95 0 0 0 0 0 0 0 +-10.639 6.175 -1.949 0 0 0 0 0 0 0 +-10.662 6.144 -1.95 0 0 0 0 0 0 0 +-10.686 6.113 -1.951 0 0 0 0 0 0 0 +-10.706 6.08 -1.951 0 0 0 0 0 0 0 +-10.742 6.056 -1.954 0 0 0 0 0 0 0 +-10.763 6.023 -1.955 0 0 0 0 0 0 0 +-10.777 6.009 -1.956 0 0 0 0 0 0 0 +-10.789 5.971 -1.954 0 0 0 0 0 0 0 +-10.803 5.934 -1.953 0 0 0 0 0 0 0 +-10.844 5.913 -1.958 0 0 0 0 0 0 0 +-10.86 5.878 -1.957 0 0 0 0 0 0 0 +-10.888 5.848 -1.959 0 0 0 0 0 0 0 +-10.913 5.818 -1.96 0 0 0 0 0 0 0 +-10.932 5.806 -1.962 0 0 0 0 0 0 0 +-10.945 5.769 -1.961 0 0 0 0 0 0 0 +-10.969 5.737 -1.962 0 0 0 0 0 0 0 +-10.995 5.707 -1.964 0 0 0 0 0 0 0 +-11.018 5.676 -1.965 0 0 0 0 0 0 0 +-11.026 5.636 -1.963 0 0 0 0 0 0 0 +-7.31 3.697 -1.256 0 0 0 0 0 0 0 +-7.488 3.773 -1.289 0 0 0 0 0 0 0 +-7.322 3.66 -1.255 0 0 0 0 0 0 0 +-11.119 5.53 -1.969 0 0 0 0 0 0 0 +-11.138 5.496 -1.969 0 0 0 0 0 0 0 +-11.144 5.455 -1.967 0 0 0 0 0 0 0 +-11.154 5.417 -1.966 0 0 0 0 0 0 0 +-11.195 5.393 -1.97 0 0 0 0 0 0 0 +-11.203 5.375 -1.97 0 0 0 0 0 0 0 +-11.218 5.339 -1.97 0 0 0 0 0 0 0 +-11.228 5.301 -1.969 0 0 0 0 0 0 0 +-11.248 5.267 -1.969 0 0 0 0 0 0 0 +-11.268 5.233 -1.97 0 0 0 0 0 0 0 +-11.286 5.199 -1.97 0 0 0 0 0 0 0 +-11.306 5.165 -1.971 0 0 0 0 0 0 0 +-11.315 5.126 -1.97 0 0 0 0 0 0 0 +-11.327 5.11 -1.97 0 0 0 0 0 0 0 +-11.36 5.083 -1.974 0 0 0 0 0 0 0 +-11.376 5.047 -1.974 0 0 0 0 0 0 0 +-11.416 5.021 -1.978 0 0 0 0 0 0 0 +-11.437 4.988 -1.979 0 0 0 0 0 0 0 +-11.432 4.943 -1.975 0 0 0 0 0 0 0 +-11.441 4.904 -1.974 0 0 0 0 0 0 0 +-11.423 4.875 -1.969 0 0 0 0 0 0 0 +-11.427 4.835 -1.967 0 0 0 0 0 0 0 +-11.459 4.806 -1.97 0 0 0 0 0 0 0 +-11.465 4.766 -1.969 0 0 0 0 0 0 0 +-11.498 4.738 -1.972 0 0 0 0 0 0 0 +-11.5 4.696 -1.97 0 0 0 0 0 0 0 +-11.518 4.661 -1.97 0 0 0 0 0 0 0 +-11.524 4.643 -1.97 0 0 0 0 0 0 0 +-11.533 4.604 -1.969 0 0 0 0 0 0 0 +-11.571 4.577 -1.973 0 0 0 0 0 0 0 +-11.582 4.54 -1.973 0 0 0 0 0 0 0 +-11.596 4.503 -1.973 0 0 0 0 0 0 0 +-11.61 4.467 -1.973 0 0 0 0 0 0 0 +-11.631 4.433 -1.974 0 0 0 0 0 0 0 +-11.622 4.408 -1.971 0 0 0 0 0 0 0 +-11.648 4.377 -1.973 0 0 0 0 0 0 0 +-11.649 4.335 -1.971 0 0 0 0 0 0 0 +-11.678 4.304 -1.974 0 0 0 0 0 0 0 +-11.663 4.257 -1.969 0 0 0 0 0 0 0 +-11.654 4.213 -1.965 0 0 0 0 0 0 0 +-11.645 4.168 -1.961 0 0 0 0 0 0 0 +-11.659 4.152 -1.962 0 0 0 0 0 0 0 +-11.656 4.11 -1.959 0 0 0 0 0 0 0 +-11.668 4.073 -1.959 0 0 0 0 0 0 0 +-11.646 4.024 -1.953 0 0 0 0 0 0 0 +-11.656 3.987 -1.952 0 0 0 0 0 0 0 +-11.645 3.942 -1.948 0 0 0 0 0 0 0 +-11.646 3.901 -1.946 0 0 0 0 0 0 0 +-11.631 3.876 -1.942 0 0 0 0 0 0 0 +-11.642 3.839 -1.942 0 0 0 0 0 0 0 +-11.646 3.8 -1.941 0 0 0 0 0 0 0 +-11.652 3.762 -1.94 0 0 0 0 0 0 0 +-11.651 3.721 -1.937 0 0 0 0 0 0 0 +-11.67 3.687 -1.939 0 0 0 0 0 0 0 +-11.661 3.643 -1.935 0 0 0 0 0 0 0 +-11.68 3.629 -1.937 0 0 0 0 0 0 0 +-11.684 3.59 -1.936 0 0 0 0 0 0 0 +-11.691 3.552 -1.935 0 0 0 0 0 0 0 +-11.706 3.517 -1.936 0 0 0 0 0 0 0 +-11.706 3.476 -1.934 0 0 0 0 0 0 0 +-11.701 3.435 -1.931 0 0 0 0 0 0 0 +-11.708 3.397 -1.931 0 0 0 0 0 0 0 +-11.706 3.377 -1.929 0 0 0 0 0 0 0 +-11.707 3.337 -1.928 0 0 0 0 0 0 0 +-11.721 3.301 -1.928 0 0 0 0 0 0 0 +-11.718 3.261 -1.926 0 0 0 0 0 0 0 +-10.043 2.757 -1.631 0 0 0 0 0 0 0 +-9.663 2.619 -1.563 0 0 0 0 0 0 0 +-9.437 2.525 -1.522 0 0 0 0 0 0 0 +-8.963 2.382 -1.439 0 0 0 0 0 0 0 +-8.683 2.277 -1.389 0 0 0 0 0 0 0 +-8.39 2.172 -1.336 0 0 0 0 0 0 0 +-8.04 2.053 -1.274 0 0 0 0 0 0 0 +-7.733 1.948 -1.22 0 0 0 0 0 0 0 +-7.613 1.892 -1.198 0 0 0 0 0 0 0 +-7.504 1.839 -1.178 0 0 0 0 0 0 0 +-7.158 1.729 -1.117 0 0 0 0 0 0 0 +-7.107 1.705 -1.107 0 0 0 0 0 0 0 +-7.087 1.676 -1.103 0 0 0 0 0 0 0 +-7.054 1.645 -1.096 0 0 0 0 0 0 0 +-7.132 1.593 -1.107 0 0 0 0 0 0 0 +-7.145 1.572 -1.109 0 0 0 0 0 0 0 +-7.155 1.563 -1.11 0 0 0 0 0 0 0 +-7.1 1.527 -1.1 0 0 0 0 0 0 0 +-7.074 1.498 -1.094 0 0 0 0 0 0 0 +-7.046 1.469 -1.089 0 0 0 0 0 0 0 +-7.053 1.447 -1.089 0 0 0 0 0 0 0 +-7.075 1.429 -1.092 0 0 0 0 0 0 0 +-7.064 1.403 -1.089 0 0 0 0 0 0 0 +-7.07 1.381 -1.09 0 0 0 0 0 0 0 +-7.059 1.368 -1.087 0 0 0 0 0 0 0 +-7.049 1.343 -1.085 0 0 0 0 0 0 0 +-7.129 1.335 -1.098 0 0 0 0 0 0 0 +-7.056 1.298 -1.085 0 0 0 0 0 0 0 +-6.947 1.255 -1.065 0 0 0 0 0 0 0 +-6.936 1.231 -1.063 0 0 0 0 0 0 0 +-6.914 1.204 -1.058 0 0 0 0 0 0 0 +-6.922 1.194 -1.059 0 0 0 0 0 0 0 +-6.931 1.174 -1.06 0 0 0 0 0 0 0 +-6.949 1.154 -1.063 0 0 0 0 0 0 0 +-6.954 1.133 -1.063 0 0 0 0 0 0 0 +-6.977 1.114 -1.066 0 0 0 0 0 0 0 +-6.998 1.095 -1.069 0 0 0 0 0 0 0 +-7.007 1.074 -1.07 0 0 0 0 0 0 0 +-7.031 1.066 -1.074 0 0 0 0 0 0 0 +-7.03 1.044 -1.073 0 0 0 0 0 0 0 +-7.027 1.021 -1.072 0 0 0 0 0 0 0 +-7.044 1 -1.075 0 0 0 0 0 0 0 +-7.026 0.975 -1.071 0 0 0 0 0 0 0 +-7.035 0.954 -1.072 0 0 0 0 0 0 0 +-7.059 0.935 -1.076 0 0 0 0 0 0 0 +-7.049 0.922 -1.074 0 0 0 0 0 0 0 +-7.063 0.902 -1.076 0 0 0 0 0 0 0 +-7.06 0.879 -1.075 0 0 0 0 0 0 0 +-7.061 0.856 -1.074 0 0 0 0 0 0 0 +-7.05 0.832 -1.072 0 0 0 0 0 0 0 +-7.063 0.811 -1.074 0 0 0 0 0 0 0 +-7.065 0.789 -1.074 0 0 0 0 0 0 0 +-7 0.77 -1.062 0 0 0 0 0 0 0 +-7.006 0.749 -1.063 0 0 0 0 0 0 0 +-7.059 0.732 -1.072 0 0 0 0 0 0 0 +-7.06 0.71 -1.071 0 0 0 0 0 0 0 +-7.048 0.686 -1.069 0 0 0 0 0 0 0 +-7.06 0.665 -1.071 0 0 0 0 0 0 0 +-7.066 0.643 -1.071 0 0 0 0 0 0 0 +-7.082 0.622 -1.074 0 0 0 0 0 0 0 +-7.09 0.612 -1.075 0 0 0 0 0 0 0 +-7.081 0.589 -1.073 0 0 0 0 0 0 0 +-7.096 0.568 -1.075 0 0 0 0 0 0 0 +-7.096 0.545 -1.075 0 0 0 0 0 0 0 +-7.125 0.525 -1.08 0 0 0 0 0 0 0 +-7.168 0.506 -1.087 0 0 0 0 0 0 0 +-7.154 0.482 -1.084 0 0 0 0 0 0 0 +-7.184 0.473 -1.089 0 0 0 0 0 0 0 +-7.191 0.451 -1.09 0 0 0 0 0 0 0 +-7.211 0.429 -1.093 0 0 0 0 0 0 0 +-7.186 0.405 -1.089 0 0 0 0 0 0 0 +-7.215 0.384 -1.093 0 0 0 0 0 0 0 +-7.193 0.36 -1.089 0 0 0 0 0 0 0 +-7.361 0.346 -1.118 0 0 0 0 0 0 0 +-7.425 0.337 -1.128 0 0 0 0 0 0 0 +-7.438 0.315 -1.13 0 0 0 0 0 0 0 +-7.446 0.292 -1.131 0 0 0 0 0 0 0 +-7.531 0.248 -1.145 0 0 0 0 0 0 0 +-7.524 0.224 -1.144 0 0 0 0 0 0 0 +-7.694 0.205 -1.173 0 0 0 0 0 0 0 +-7.493 0.188 -1.139 0 0 0 0 0 0 0 +-7.62 0.167 -1.16 0 0 0 0 0 0 0 +-7.614 0.143 -1.159 0 0 0 0 0 0 0 +-12.949 0.221 -2.059 0 0 0 0 0 0 0 +-12.939 0.18 -2.057 0 0 0 0 0 0 0 +-12.934 0.139 -2.056 0 0 0 0 0 0 0 +-12.934 0.099 -2.056 0 0 0 0 0 0 0 +-12.946 0.058 -2.058 0 0 0 0 0 0 0 +-12.943 0.018 -2.058 0 0 0 0 0 0 0 +-12.937 -0.003 -2.057 0 0 0 0 0 0 0 +-12.948 -0.043 -2.059 0 0 0 0 0 0 0 +-12.942 -0.084 -2.058 0 0 0 0 0 0 0 +-12.948 -0.125 -2.059 0 0 0 0 0 0 0 +-12.961 -0.166 -2.061 0 0 0 0 0 0 0 +-12.953 -0.206 -2.059 0 0 0 0 0 0 0 +-12.958 -0.247 -2.06 0 0 0 0 0 0 0 +-12.985 -0.268 -2.065 0 0 0 0 0 0 0 +-12.982 -0.309 -2.065 0 0 0 0 0 0 0 +-12.981 -0.349 -2.065 0 0 0 0 0 0 0 +-12.998 -0.391 -2.068 0 0 0 0 0 0 0 +-12.997 -0.432 -2.068 0 0 0 0 0 0 0 +-13.007 -0.473 -2.07 0 0 0 0 0 0 0 +-13.009 -0.514 -2.07 0 0 0 0 0 0 0 +-13.012 -0.534 -2.071 0 0 0 0 0 0 0 +-13.017 -0.575 -2.072 0 0 0 0 0 0 0 +-13.023 -0.617 -2.073 0 0 0 0 0 0 0 +-13.029 -0.658 -2.075 0 0 0 0 0 0 0 +-13.032 -0.699 -2.076 0 0 0 0 0 0 0 +-13.04 -0.741 -2.077 0 0 0 0 0 0 0 +-13.045 -0.782 -2.079 0 0 0 0 0 0 0 +-13.034 -0.802 -2.077 0 0 0 0 0 0 0 +-13.04 -0.843 -2.078 0 0 0 0 0 0 0 +-13.045 -0.885 -2.08 0 0 0 0 0 0 0 +-13.044 -0.926 -2.08 0 0 0 0 0 0 0 +-13.037 -0.967 -2.079 0 0 0 0 0 0 0 +-13.048 -1.009 -2.082 0 0 0 0 0 0 0 +-13.044 -1.05 -2.082 0 0 0 0 0 0 0 +-13.041 -1.07 -2.081 0 0 0 0 0 0 0 +-13.041 -1.111 -2.082 0 0 0 0 0 0 0 +-13.024 -1.151 -2.08 0 0 0 0 0 0 0 +-13.03 -1.193 -2.081 0 0 0 0 0 0 0 +-13.028 -1.234 -2.082 0 0 0 0 0 0 0 +-13.022 -1.275 -2.081 0 0 0 0 0 0 0 +-13.01 -1.315 -2.08 0 0 0 0 0 0 0 +-13.032 -1.358 -2.084 0 0 0 0 0 0 0 +-12.994 -1.375 -2.078 0 0 0 0 0 0 0 +-12.996 -1.417 -2.079 0 0 0 0 0 0 0 +-12.989 -1.457 -2.079 0 0 0 0 0 0 0 +-13 -1.5 -2.082 0 0 0 0 0 0 0 +-12.986 -1.54 -2.08 0 0 0 0 0 0 0 +-12.979 -1.58 -2.08 0 0 0 0 0 0 0 +-12.96 -1.619 -2.077 0 0 0 0 0 0 0 +-12.971 -1.641 -2.08 0 0 0 0 0 0 0 +-12.954 -1.68 -2.078 0 0 0 0 0 0 0 +-12.972 -1.724 -2.082 0 0 0 0 0 0 0 +-12.969 -1.765 -2.082 0 0 0 0 0 0 0 +-12.954 -1.805 -2.08 0 0 0 0 0 0 0 +-12.95 -1.846 -2.081 0 0 0 0 0 0 0 +-12.938 -1.885 -2.08 0 0 0 0 0 0 0 +-12.966 -1.91 -2.085 0 0 0 0 0 0 0 +-12.943 -1.948 -2.082 0 0 0 0 0 0 0 +-12.937 -1.989 -2.082 0 0 0 0 0 0 0 +-12.965 -2.035 -2.088 0 0 0 0 0 0 0 +-12.941 -2.073 -2.085 0 0 0 0 0 0 0 +-12.937 -2.114 -2.085 0 0 0 0 0 0 0 +-12.942 -2.157 -2.087 0 0 0 0 0 0 0 +-12.903 -2.171 -2.081 0 0 0 0 0 0 0 +-12.927 -2.217 -2.087 0 0 0 0 0 0 0 +-12.913 -2.256 -2.085 0 0 0 0 0 0 0 +-12.9 -2.296 -2.084 0 0 0 0 0 0 0 +-12.902 -2.338 -2.086 0 0 0 0 0 0 0 +-12.885 -2.377 -2.084 0 0 0 0 0 0 0 +-12.864 -2.415 -2.082 0 0 0 0 0 0 0 +-12.879 -2.438 -2.085 0 0 0 0 0 0 0 +-12.868 -2.478 -2.085 0 0 0 0 0 0 0 +-12.866 -2.52 -2.086 0 0 0 0 0 0 0 +-12.86 -2.56 -2.086 0 0 0 0 0 0 0 +-12.846 -2.6 -2.085 0 0 0 0 0 0 0 +-12.832 -2.639 -2.084 0 0 0 0 0 0 0 +-12.839 -2.682 -2.087 0 0 0 0 0 0 0 +-12.825 -2.701 -2.085 0 0 0 0 0 0 0 +-12.818 -2.741 -2.085 0 0 0 0 0 0 0 +-12.798 -2.779 -2.083 0 0 0 0 0 0 0 +-12.803 -2.822 -2.086 0 0 0 0 0 0 0 +-12.784 -2.86 -2.084 0 0 0 0 0 0 0 +-12.775 -2.9 -2.084 0 0 0 0 0 0 0 +-12.778 -2.943 -2.086 0 0 0 0 0 0 0 +-12.76 -2.96 -2.084 0 0 0 0 0 0 0 +-12.748 -3 -2.083 0 0 0 0 0 0 0 +-12.745 -3.041 -2.084 0 0 0 0 0 0 0 +-12.725 -3.079 -2.083 0 0 0 0 0 0 0 +-12.71 -3.117 -2.082 0 0 0 0 0 0 0 +-12.717 -3.162 -2.085 0 0 0 0 0 0 0 +-12.698 -3.199 -2.083 0 0 0 0 0 0 0 +-12.682 -3.237 -2.082 0 0 0 0 0 0 0 +-12.7 -3.263 -2.086 0 0 0 0 0 0 0 +-12.678 -3.3 -2.084 0 0 0 0 0 0 0 +-12.675 -3.342 -2.085 0 0 0 0 0 0 0 +-12.668 -3.383 -2.086 0 0 0 0 0 0 0 +-12.658 -3.423 -2.086 0 0 0 0 0 0 0 +-12.647 -3.462 -2.086 0 0 0 0 0 0 0 +-12.642 -3.504 -2.087 0 0 0 0 0 0 0 +-12.644 -3.526 -2.088 0 0 0 0 0 0 0 +-12.642 -3.568 -2.09 0 0 0 0 0 0 0 +-12.612 -3.602 -2.087 0 0 0 0 0 0 0 +-12.612 -3.645 -2.089 0 0 0 0 0 0 0 +-12.598 -3.684 -2.088 0 0 0 0 0 0 0 +-12.583 -3.723 -2.088 0 0 0 0 0 0 0 +-12.567 -3.761 -2.087 0 0 0 0 0 0 0 +-12.561 -3.781 -2.087 0 0 0 0 0 0 0 +-12.548 -3.82 -2.087 0 0 0 0 0 0 0 +-12.519 -3.854 -2.084 0 0 0 0 0 0 0 +-12.51 -3.894 -2.084 0 0 0 0 0 0 0 +-12.504 -3.935 -2.085 0 0 0 0 0 0 0 +-12.485 -3.973 -2.084 0 0 0 0 0 0 0 +-12.467 -4.01 -2.083 0 0 0 0 0 0 0 +-12.455 -4.028 -2.082 0 0 0 0 0 0 0 +-12.441 -4.066 -2.082 0 0 0 0 0 0 0 +-12.424 -4.104 -2.081 0 0 0 0 0 0 0 +-12.398 -4.139 -2.079 0 0 0 0 0 0 0 +-12.394 -4.181 -2.081 0 0 0 0 0 0 0 +-12.374 -4.217 -2.079 0 0 0 0 0 0 0 +-12.34 -4.249 -2.076 0 0 0 0 0 0 0 +-12.324 -4.265 -2.074 0 0 0 0 0 0 0 +-12.32 -4.307 -2.076 0 0 0 0 0 0 0 +-12.308 -4.347 -2.076 0 0 0 0 0 0 0 +-12.305 -4.389 -2.078 0 0 0 0 0 0 0 +-12.275 -4.422 -2.075 0 0 0 0 0 0 0 +-12.252 -4.457 -2.073 0 0 0 0 0 0 0 +-12.245 -4.498 -2.075 0 0 0 0 0 0 0 +-12.232 -4.516 -2.074 0 0 0 0 0 0 0 +-12.211 -4.551 -2.072 0 0 0 0 0 0 0 +-12.2 -4.591 -2.073 0 0 0 0 0 0 0 +-12.173 -4.624 -2.071 0 0 0 0 0 0 0 +-12.162 -4.664 -2.071 0 0 0 0 0 0 0 +-12.134 -4.697 -2.069 0 0 0 0 0 0 0 +-12.103 -4.729 -2.066 0 0 0 0 0 0 0 +-12.112 -4.754 -2.069 0 0 0 0 0 0 0 +-12.086 -4.788 -2.067 0 0 0 0 0 0 0 +-12.073 -4.827 -2.067 0 0 0 0 0 0 0 +-12.048 -4.861 -2.066 0 0 0 0 0 0 0 +-12.037 -4.9 -2.066 0 0 0 0 0 0 0 +-11.992 -4.926 -2.061 0 0 0 0 0 0 0 +-11.987 -4.968 -2.063 0 0 0 0 0 0 0 +-11.972 -4.984 -2.062 0 0 0 0 0 0 0 +-11.966 -5.025 -2.063 0 0 0 0 0 0 0 +-11.944 -5.061 -2.062 0 0 0 0 0 0 0 +-11.921 -5.095 -2.061 0 0 0 0 0 0 0 +-11.891 -5.126 -2.059 0 0 0 0 0 0 0 +-11.873 -5.163 -2.058 0 0 0 0 0 0 0 +-11.858 -5.201 -2.059 0 0 0 0 0 0 0 +-11.843 -5.216 -2.057 0 0 0 0 0 0 0 +-11.812 -5.247 -2.055 0 0 0 0 0 0 0 +-11.784 -5.279 -2.053 0 0 0 0 0 0 0 +-11.762 -5.314 -2.052 0 0 0 0 0 0 0 +-11.737 -5.347 -2.05 0 0 0 0 0 0 0 +-11.705 -5.377 -2.047 0 0 0 0 0 0 0 +-11.696 -5.417 -2.049 0 0 0 0 0 0 0 +-11.666 -5.448 -2.046 0 0 0 0 0 0 0 +-11.652 -5.464 -2.045 0 0 0 0 0 0 0 +-11.617 -5.492 -2.042 0 0 0 0 0 0 0 +-11.607 -5.532 -2.043 0 0 0 0 0 0 0 +-11.575 -5.562 -2.041 0 0 0 0 0 0 0 +-11.552 -5.595 -2.04 0 0 0 0 0 0 0 +-11.521 -5.625 -2.037 0 0 0 0 0 0 0 +-11.497 -5.658 -2.036 0 0 0 0 0 0 0 +-11.494 -5.679 -2.037 0 0 0 0 0 0 0 +-11.474 -5.714 -2.037 0 0 0 0 0 0 0 +-11.444 -5.744 -2.034 0 0 0 0 0 0 0 +-11.406 -5.77 -2.031 0 0 0 0 0 0 0 +-11.383 -5.803 -2.03 0 0 0 0 0 0 0 +-11.366 -5.84 -2.03 0 0 0 0 0 0 0 +-11.33 -5.867 -2.027 0 0 0 0 0 0 0 +-11.325 -5.886 -2.027 0 0 0 0 0 0 0 +-11.304 -5.921 -2.027 0 0 0 0 0 0 0 +-11.291 -5.959 -2.028 0 0 0 0 0 0 0 +-11.272 -5.995 -2.028 0 0 0 0 0 0 0 +-11.25 -6.028 -2.027 0 0 0 0 0 0 0 +-11.231 -6.063 -2.027 0 0 0 0 0 0 0 +-11.22 -6.103 -2.029 0 0 0 0 0 0 0 +-11.192 -6.111 -2.025 0 0 0 0 0 0 0 +-11.186 -6.153 -2.028 0 0 0 0 0 0 0 +-11.157 -6.183 -2.026 0 0 0 0 0 0 0 +-11.127 -6.212 -2.024 0 0 0 0 0 0 0 +-11.106 -6.246 -2.024 0 0 0 0 0 0 0 +-11.067 -6.27 -2.02 0 0 0 0 0 0 0 +-11.059 -6.312 -2.022 0 0 0 0 0 0 0 +-11.048 -6.328 -2.022 0 0 0 0 0 0 0 +-11.014 -6.355 -2.019 0 0 0 0 0 0 0 +-11.008 -6.397 -2.022 0 0 0 0 0 0 0 +-10.987 -6.432 -2.022 0 0 0 0 0 0 0 +-10.954 -6.458 -2.019 0 0 0 0 0 0 0 +-10.938 -6.496 -2.02 0 0 0 0 0 0 0 +-10.899 -6.519 -2.017 0 0 0 0 0 0 0 +-10.889 -6.536 -2.017 0 0 0 0 0 0 0 +-10.85 -6.559 -2.013 0 0 0 0 0 0 0 +-10.843 -6.601 -2.016 0 0 0 0 0 0 0 +-10.807 -6.626 -2.013 0 0 0 0 0 0 0 +-10.793 -6.664 -2.014 0 0 0 0 0 0 0 +-10.775 -6.7 -2.015 0 0 0 0 0 0 0 +-10.732 -6.72 -2.01 0 0 0 0 0 0 0 +-10.705 -6.727 -2.007 0 0 0 0 0 0 0 +-10.662 -6.747 -2.003 0 0 0 0 0 0 0 +-10.632 -6.775 -2.001 0 0 0 0 0 0 0 +-10.598 -6.8 -1.998 0 0 0 0 0 0 0 +-10.563 -6.824 -1.996 0 0 0 0 0 0 0 +-10.53 -6.85 -1.993 0 0 0 0 0 0 0 +-10.484 -6.867 -1.988 0 0 0 0 0 0 0 +-10.457 -6.897 -1.987 0 0 0 0 0 0 0 +-10.433 -6.904 -1.985 0 0 0 0 0 0 0 +-10.395 -6.926 -1.981 0 0 0 0 0 0 0 +-10.355 -6.947 -1.978 0 0 0 0 0 0 0 +-10.328 -6.976 -1.977 0 0 0 0 0 0 0 +-10.298 -7.003 -1.975 0 0 0 0 0 0 0 +-10.263 -7.026 -1.972 0 0 0 0 0 0 0 +-10.228 -7.05 -1.97 0 0 0 0 0 0 0 +-10.202 -7.056 -1.967 0 0 0 0 0 0 0 +-10.175 -7.084 -1.966 0 0 0 0 0 0 0 +-10.14 -7.107 -1.963 0 0 0 0 0 0 0 +-10.103 -7.129 -1.96 0 0 0 0 0 0 0 +-10.08 -7.16 -1.96 0 0 0 0 0 0 0 +-10.043 -7.182 -1.957 0 0 0 0 0 0 0 +-10.008 -7.204 -1.954 0 0 0 0 0 0 0 +-9.982 -7.209 -1.951 0 0 0 0 0 0 0 +-9.96 -7.241 -1.951 0 0 0 0 0 0 0 +-9.922 -7.262 -1.948 0 0 0 0 0 0 0 +-9.898 -7.292 -1.948 0 0 0 0 0 0 0 +-9.861 -7.312 -1.945 0 0 0 0 0 0 0 +-9.82 -7.33 -1.941 0 0 0 0 0 0 0 +-9.791 -7.356 -1.94 0 0 0 0 0 0 0 +-9.764 -7.36 -1.937 0 0 0 0 0 0 0 +-9.726 -7.38 -1.934 0 0 0 0 0 0 0 +-9.705 -7.411 -1.934 0 0 0 0 0 0 0 +-9.676 -7.438 -1.933 0 0 0 0 0 0 0 +-9.637 -7.457 -1.93 0 0 0 0 0 0 0 +-9.612 -7.486 -1.929 0 0 0 0 0 0 0 +-9.573 -7.504 -1.926 0 0 0 0 0 0 0 +-9.555 -7.514 -1.925 0 0 0 0 0 0 0 +-9.535 -7.546 -1.925 0 0 0 0 0 0 0 +-9.514 -7.579 -1.926 0 0 0 0 0 0 0 +-9.459 -7.584 -1.919 0 0 0 0 0 0 0 +-9.437 -7.615 -1.92 0 0 0 0 0 0 0 +-9.405 -7.638 -1.918 0 0 0 0 0 0 0 +-9.365 -7.654 -1.914 0 0 0 0 0 0 0 +-9.34 -7.659 -1.912 0 0 0 0 0 0 0 +-9.312 -7.684 -1.911 0 0 0 0 0 0 0 +-9.277 -7.705 -1.908 0 0 0 0 0 0 0 +-9.243 -7.726 -1.906 0 0 0 0 0 0 0 +-9.21 -7.748 -1.904 0 0 0 0 0 0 0 +-9.178 -7.77 -1.903 0 0 0 0 0 0 0 +-9.154 -7.799 -1.903 0 0 0 0 0 0 0 +-9.125 -7.799 -1.899 0 0 0 0 0 0 0 +-9.106 -7.833 -1.901 0 0 0 0 0 0 0 +-9.082 -7.862 -1.901 0 0 0 0 0 0 0 +-9.044 -7.878 -1.898 0 0 0 0 0 0 0 +-9.01 -7.899 -1.896 0 0 0 0 0 0 0 +-8.979 -7.922 -1.894 0 0 0 0 0 0 0 +-8.95 -7.946 -1.893 0 0 0 0 0 0 0 +-8.922 -7.972 -1.893 0 0 0 0 0 0 0 +-8.903 -7.981 -1.891 0 0 0 0 0 0 0 +-8.875 -8.006 -1.891 0 0 0 0 0 0 0 +-8.825 -8.011 -1.885 0 0 0 0 0 0 0 +-8.804 -8.043 -1.886 0 0 0 0 0 0 0 +-8.775 -8.066 -1.885 0 0 0 0 0 0 0 +-8.745 -8.09 -1.884 0 0 0 0 0 0 0 +-8.705 -8.104 -1.881 0 0 0 0 0 0 0 +-8.702 -8.127 -1.883 0 0 0 0 0 0 0 +-8.652 -8.131 -1.877 0 0 0 0 0 0 0 +-8.64 -8.171 -1.88 0 0 0 0 0 0 0 +-8.601 -8.186 -1.877 0 0 0 0 0 0 0 +-8.572 -8.21 -1.877 0 0 0 0 0 0 0 +-8.549 -8.24 -1.877 0 0 0 0 0 0 0 +-8.512 -8.255 -1.875 0 0 0 0 0 0 0 +-8.494 -8.263 -1.873 0 0 0 0 0 0 0 +-8.465 -8.287 -1.873 0 0 0 0 0 0 0 +-8.426 -8.301 -1.87 0 0 0 0 0 0 0 +-8.397 -8.325 -1.869 0 0 0 0 0 0 0 +-8.368 -8.349 -1.868 0 0 0 0 0 0 0 +-8.34 -8.373 -1.868 0 0 0 0 0 0 0 +-8.304 -8.39 -1.866 0 0 0 0 0 0 0 +-8.293 -8.404 -1.866 0 0 0 0 0 0 0 +-8.254 -8.418 -1.863 0 0 0 0 0 0 0 +-8.219 -8.435 -1.861 0 0 0 0 0 0 0 +-8.192 -8.461 -1.861 0 0 0 0 0 0 0 +-8.168 -8.489 -1.862 0 0 0 0 0 0 0 +-8.143 -8.516 -1.862 0 0 0 0 0 0 0 +-8.111 -8.536 -1.861 0 0 0 0 0 0 0 +-8.092 -8.543 -1.859 0 0 0 0 0 0 0 +-8.071 -8.574 -1.861 0 0 0 0 0 0 0 +-8.045 -8.601 -1.861 0 0 0 0 0 0 0 +-8.008 -8.616 -1.859 0 0 0 0 0 0 0 +-7.997 -8.659 -1.863 0 0 0 0 0 0 0 +-7.961 -8.674 -1.86 0 0 0 0 0 0 0 +-7.934 -8.699 -1.86 0 0 0 0 0 0 0 +-7.929 -8.721 -1.863 0 0 0 0 0 0 0 +-7.9 -8.745 -1.862 0 0 0 0 0 0 0 +-7.881 -8.778 -1.864 0 0 0 0 0 0 0 +-7.853 -8.803 -1.864 0 0 0 0 0 0 0 +-7.827 -8.829 -1.865 0 0 0 0 0 0 0 +-7.803 -8.858 -1.866 0 0 0 0 0 0 0 +-7.766 -8.872 -1.863 0 0 0 0 0 0 0 +-7.756 -8.889 -1.864 0 0 0 0 0 0 0 +-7.725 -8.91 -1.864 0 0 0 0 0 0 0 +-7.697 -8.934 -1.864 0 0 0 0 0 0 0 +-7.678 -8.969 -1.866 0 0 0 0 0 0 0 +-7.641 -8.982 -1.864 0 0 0 0 0 0 0 +-7.613 -9.006 -1.864 0 0 0 0 0 0 0 +-7.595 -9.042 -1.866 0 0 0 0 0 0 0 +-7.572 -9.044 -1.864 0 0 0 0 0 0 0 +-7.543 -9.067 -1.864 0 0 0 0 0 0 0 +-7.527 -9.106 -1.867 0 0 0 0 0 0 0 +-7.495 -9.125 -1.866 0 0 0 0 0 0 0 +-7.469 -9.152 -1.867 0 0 0 0 0 0 0 +-7.455 -9.194 -1.871 0 0 0 0 0 0 0 +-7.433 -9.226 -1.873 0 0 0 0 0 0 0 +-7.429 -9.25 -1.876 0 0 0 0 0 0 0 +-7.406 -9.281 -1.877 0 0 0 0 0 0 0 +-7.392 -9.324 -1.882 0 0 0 0 0 0 0 +-7.361 -9.345 -1.881 0 0 0 0 0 0 0 +-7.318 -9.351 -1.877 0 0 0 0 0 0 0 +-7.268 -9.347 -1.872 0 0 0 0 0 0 0 +-7.222 -9.348 -1.867 0 0 0 0 0 0 0 +-7.186 -9.333 -1.861 0 0 0 0 0 0 0 +-7.165 -9.366 -1.864 0 0 0 0 0 0 0 +-7.132 -9.384 -1.863 0 0 0 0 0 0 0 +-7.102 -9.405 -1.862 0 0 0 0 0 0 0 +-7.072 -9.427 -1.862 0 0 0 0 0 0 0 +-7.034 -9.438 -1.86 0 0 0 0 0 0 0 +-7.011 -9.47 -1.862 0 0 0 0 0 0 0 +-7.004 -9.49 -1.864 0 0 0 0 0 0 0 +-6.961 -9.495 -1.86 0 0 0 0 0 0 0 +-6.931 -9.517 -1.86 0 0 0 0 0 0 0 +-6.9 -9.537 -1.86 0 0 0 0 0 0 0 +-6.869 -9.557 -1.86 0 0 0 0 0 0 0 +-6.831 -9.567 -1.857 0 0 0 0 0 0 0 +-6.812 -9.605 -1.861 0 0 0 0 0 0 0 +-6.791 -9.607 -1.859 0 0 0 0 0 0 0 +-6.753 -9.617 -1.857 0 0 0 0 0 0 0 +-6.727 -9.645 -1.858 0 0 0 0 0 0 0 +-6.696 -9.664 -1.858 0 0 0 0 0 0 0 +-6.663 -9.682 -1.857 0 0 0 0 0 0 0 +-6.635 -9.706 -1.858 0 0 0 0 0 0 0 +-6.601 -9.722 -1.857 0 0 0 0 0 0 0 +-6.562 -9.73 -1.854 0 0 0 0 0 0 0 +-6.552 -9.748 -1.856 0 0 0 0 0 0 0 +-6.518 -9.764 -1.855 0 0 0 0 0 0 0 +-6.479 -9.771 -1.852 0 0 0 0 0 0 0 +-6.454 -9.801 -1.854 0 0 0 0 0 0 0 +-6.419 -9.815 -1.853 0 0 0 0 0 0 0 +-6.383 -9.827 -1.851 0 0 0 0 0 0 0 +-6.359 -9.857 -1.853 0 0 0 0 0 0 0 +-6.34 -9.862 -1.852 0 0 0 0 0 0 0 +-6.31 -9.883 -1.852 0 0 0 0 0 0 0 +-6.279 -9.903 -1.852 0 0 0 0 0 0 0 +-6.246 -9.919 -1.852 0 0 0 0 0 0 0 +-6.215 -9.941 -1.852 0 0 0 0 0 0 0 +-6.191 -9.972 -1.854 0 0 0 0 0 0 0 +-6.161 -9.993 -1.855 0 0 0 0 0 0 0 +-6.139 -9.992 -1.853 0 0 0 0 0 0 0 +-6.123 -10.037 -1.858 0 0 0 0 0 0 0 +-6.083 -10.043 -1.855 0 0 0 0 0 0 0 +-6.064 -10.082 -1.859 0 0 0 0 0 0 0 +-6.041 -10.115 -1.862 0 0 0 0 0 0 0 +-5.991 -10.103 -1.856 0 0 0 0 0 0 0 +-5.986 -10.168 -1.865 0 0 0 0 0 0 0 +-5.967 -10.172 -1.864 0 0 0 0 0 0 0 +-5.896 -10.124 -1.851 0 0 0 0 0 0 0 +-5.841 -10.103 -1.843 0 0 0 0 0 0 0 +-5.802 -10.108 -1.84 0 0 0 0 0 0 0 +-5.756 -10.102 -1.836 0 0 0 0 0 0 0 +-5.721 -10.113 -1.834 0 0 0 0 0 0 0 +-5.681 -10.118 -1.832 0 0 0 0 0 0 0 +-5.656 -10.109 -1.828 0 0 0 0 0 0 0 +-5.623 -10.125 -1.828 0 0 0 0 0 0 0 +-5.588 -10.138 -1.827 0 0 0 0 0 0 0 +-5.544 -10.133 -1.823 0 0 0 0 0 0 0 +-5.518 -10.161 -1.825 0 0 0 0 0 0 0 +-5.483 -10.173 -1.824 0 0 0 0 0 0 0 +-5.44 -10.169 -1.82 0 0 0 0 0 0 0 +-5.43 -10.19 -1.822 0 0 0 0 0 0 0 +-5.394 -10.198 -1.82 0 0 0 0 0 0 0 +-5.347 -10.187 -1.815 0 0 0 0 0 0 0 +-5.323 -10.219 -1.818 0 0 0 0 0 0 0 +-5.288 -10.231 -1.817 0 0 0 0 0 0 0 +-5.243 -10.223 -1.812 0 0 0 0 0 0 0 +-5.219 -10.255 -1.815 0 0 0 0 0 0 0 +-5.199 -10.255 -1.814 0 0 0 0 0 0 0 +-5.157 -10.251 -1.81 0 0 0 0 0 0 0 +-5.133 -10.285 -1.813 0 0 0 0 0 0 0 +-5.101 -10.301 -1.813 0 0 0 0 0 0 0 +-5.056 -10.293 -1.809 0 0 0 0 0 0 0 +-5.036 -10.333 -1.813 0 0 0 0 0 0 0 +-4.994 -10.329 -1.81 0 0 0 0 0 0 0 +-4.978 -10.337 -1.81 0 0 0 0 0 0 0 +-4.95 -10.362 -1.811 0 0 0 0 0 0 0 +-4.915 -10.372 -1.81 0 0 0 0 0 0 0 +-4.873 -10.368 -1.807 0 0 0 0 0 0 0 +-4.855 -10.415 -1.813 0 0 0 0 0 0 0 +-4.817 -10.419 -1.811 0 0 0 0 0 0 0 +-4.785 -10.436 -1.811 0 0 0 0 0 0 0 +-4.777 -10.462 -1.814 0 0 0 0 0 0 0 +-4.737 -10.461 -1.811 0 0 0 0 0 0 0 +-4.703 -10.472 -1.811 0 0 0 0 0 0 0 +-4.677 -10.503 -1.814 0 0 0 0 0 0 0 +-4.641 -10.51 -1.812 0 0 0 0 0 0 0 +-4.607 -10.523 -1.812 0 0 0 0 0 0 0 +-4.587 -10.568 -1.818 0 0 0 0 0 0 0 +-4.574 -10.582 -1.819 0 0 0 0 0 0 0 +-4.551 -10.62 -1.823 0 0 0 0 0 0 0 +-4.53 -10.665 -1.829 0 0 0 0 0 0 0 +-4.508 -10.705 -1.834 0 0 0 0 0 0 0 +-4.475 -10.723 -1.834 0 0 0 0 0 0 0 +-4.454 -10.766 -1.84 0 0 0 0 0 0 0 +-4.428 -10.798 -1.843 0 0 0 0 0 0 0 +-4.411 -10.807 -1.843 0 0 0 0 0 0 0 +-4.377 -10.819 -1.843 0 0 0 0 0 0 0 +-4.319 -10.774 -1.832 0 0 0 0 0 0 0 +-4.269 -10.747 -1.825 0 0 0 0 0 0 0 +-4.227 -10.739 -1.821 0 0 0 0 0 0 0 +-4.189 -10.743 -1.819 0 0 0 0 0 0 0 +-4.161 -10.77 -1.822 0 0 0 0 0 0 0 +-4.136 -10.755 -1.818 0 0 0 0 0 0 0 +-4.093 -10.746 -1.814 0 0 0 0 0 0 0 +-4.071 -10.788 -1.819 0 0 0 0 0 0 0 +-4.03 -10.782 -1.816 0 0 0 0 0 0 0 +-4 -10.806 -1.818 0 0 0 0 0 0 0 +-3.959 -10.798 -1.814 0 0 0 0 0 0 0 +-3.932 -10.831 -1.818 0 0 0 0 0 0 0 +-3.893 -10.83 -1.816 0 0 0 0 0 0 0 +-3.878 -10.84 -1.816 0 0 0 0 0 0 0 +-3.834 -10.826 -1.812 0 0 0 0 0 0 0 +-3.81 -10.864 -1.816 0 0 0 0 0 0 0 +-3.77 -10.859 -1.813 0 0 0 0 0 0 0 +-3.732 -10.86 -1.811 0 0 0 0 0 0 0 +-3.704 -10.89 -1.815 0 0 0 0 0 0 0 +-3.666 -10.893 -1.813 0 0 0 0 0 0 0 +-3.651 -10.902 -1.814 0 0 0 0 0 0 0 +-3.611 -10.898 -1.811 0 0 0 0 0 0 0 +-3.581 -10.923 -1.813 0 0 0 0 0 0 0 +-3.546 -10.93 -1.813 0 0 0 0 0 0 0 +-3.511 -10.94 -1.812 0 0 0 0 0 0 0 +-3.474 -10.943 -1.811 0 0 0 0 0 0 0 +-3.457 -10.948 -1.811 0 0 0 0 0 0 0 +-3.421 -10.955 -1.81 0 0 0 0 0 0 0 +-3.389 -10.974 -1.812 0 0 0 0 0 0 0 +-3.354 -10.981 -1.811 0 0 0 0 0 0 0 +-3.316 -10.982 -1.809 0 0 0 0 0 0 0 +-3.291 -11.022 -1.815 0 0 0 0 0 0 0 +-3.251 -11.015 -1.812 0 0 0 0 0 0 0 +-3.215 -11.02 -1.811 0 0 0 0 0 0 0 +-3.208 -11.061 -1.817 0 0 0 0 0 0 0 +-3.173 -11.071 -1.817 0 0 0 0 0 0 0 +-3.141 -11.088 -1.818 0 0 0 0 0 0 0 +-3.108 -11.106 -1.82 0 0 0 0 0 0 0 +-3.079 -11.136 -1.823 0 0 0 0 0 0 0 +-3.037 -11.123 -1.819 0 0 0 0 0 0 0 +-3.028 -11.226 -1.836 0 0 0 0 0 0 0 +-3.024 -11.28 -1.844 0 0 0 0 0 0 0 +-2.942 -11.116 -1.814 0 0 0 0 0 0 0 +-2.91 -11.137 -1.816 0 0 0 0 0 0 0 +-2.832 -11.122 -1.81 0 0 0 0 0 0 0 +-2.789 -11.103 -1.805 0 0 0 0 0 0 0 +-2.749 -11.09 -1.802 0 0 0 0 0 0 0 +-2.728 -11.079 -1.799 0 0 0 0 0 0 0 +-2.688 -11.069 -1.796 0 0 0 0 0 0 0 +-2.653 -11.075 -1.795 0 0 0 0 0 0 0 +-2.609 -11.045 -1.789 0 0 0 0 0 0 0 +-2.577 -11.063 -1.79 0 0 0 0 0 0 0 +-2.538 -11.054 -1.787 0 0 0 0 0 0 0 +-2.498 -11.04 -1.784 0 0 0 0 0 0 0 +-2.481 -11.044 -1.784 0 0 0 0 0 0 0 +-2.446 -11.05 -1.783 0 0 0 0 0 0 0 +-2.41 -11.052 -1.782 0 0 0 0 0 0 0 +-2.376 -11.061 -1.783 0 0 0 0 0 0 0 +-2.338 -11.057 -1.781 0 0 0 0 0 0 0 +-2.3 -11.045 -1.777 0 0 0 0 0 0 0 +-2.266 -11.056 -1.778 0 0 0 0 0 0 0 +-2.247 -11.052 -1.777 0 0 0 0 0 0 0 +-2.212 -11.057 -1.776 0 0 0 0 0 0 0 +-2.177 -11.066 -1.777 0 0 0 0 0 0 0 +-2.14 -11.059 -1.774 0 0 0 0 0 0 0 +-2.108 -11.079 -1.777 0 0 0 0 0 0 0 +-2.064 -11.039 -1.769 0 0 0 0 0 0 0 +-2.033 -11.065 -1.772 0 0 0 0 0 0 0 +-2.014 -11.063 -1.771 0 0 0 0 0 0 0 +-1.979 -11.063 -1.77 0 0 0 0 0 0 0 +-1.945 -11.077 -1.771 0 0 0 0 0 0 0 +-1.91 -11.081 -1.771 0 0 0 0 0 0 0 +-1.874 -11.079 -1.77 0 0 0 0 0 0 0 +-1.84 -11.089 -1.77 0 0 0 0 0 0 0 +-1.807 -11.106 -1.772 0 0 0 0 0 0 0 +-1.787 -11.096 -1.77 0 0 0 0 0 0 0 +-1.753 -11.103 -1.77 0 0 0 0 0 0 0 +-1.719 -11.116 -1.772 0 0 0 0 0 0 0 +-1.683 -11.118 -1.771 0 0 0 0 0 0 0 +-1.65 -11.133 -1.773 0 0 0 0 0 0 0 +-1.615 -11.136 -1.772 0 0 0 0 0 0 0 +-1.58 -11.143 -1.773 0 0 0 0 0 0 0 +-1.563 -11.151 -1.774 0 0 0 0 0 0 0 +-1.529 -11.158 -1.774 0 0 0 0 0 0 0 +-1.494 -11.167 -1.775 0 0 0 0 0 0 0 +-1.458 -11.166 -1.774 0 0 0 0 0 0 0 +-1.423 -11.166 -1.773 0 0 0 0 0 0 0 +-1.389 -11.186 -1.776 0 0 0 0 0 0 0 +-1.353 -11.177 -1.773 0 0 0 0 0 0 0 +-1.337 -11.197 -1.776 0 0 0 0 0 0 0 +-1.303 -11.207 -1.777 0 0 0 0 0 0 0 +-1.266 -11.199 -1.775 0 0 0 0 0 0 0 +-1.231 -11.201 -1.775 0 0 0 0 0 0 0 +-1.198 -11.222 -1.778 0 0 0 0 0 0 0 +-1.164 -11.242 -1.781 0 0 0 0 0 0 0 +-1.128 -11.237 -1.779 0 0 0 0 0 0 0 +-1.111 -11.243 -1.78 0 0 0 0 0 0 0 +-1.077 -11.262 -1.783 0 0 0 0 0 0 0 +-1.042 -11.277 -1.785 0 0 0 0 0 0 0 +-1.007 -11.284 -1.785 0 0 0 0 0 0 0 +-0.972 -11.286 -1.785 0 0 0 0 0 0 0 +-0.937 -11.302 -1.787 0 0 0 0 0 0 0 +-0.902 -11.309 -1.788 0 0 0 0 0 0 0 +-0.884 -11.309 -1.788 0 0 0 0 0 0 0 +-0.849 -11.319 -1.789 0 0 0 0 0 0 0 +-0.814 -11.318 -1.788 0 0 0 0 0 0 0 +-0.779 -11.332 -1.79 0 0 0 0 0 0 0 +-0.744 -11.339 -1.791 0 0 0 0 0 0 0 +-0.708 -11.337 -1.79 0 0 0 0 0 0 0 +-0.673 -11.355 -1.793 0 0 0 0 0 0 0 +-0.654 -11.342 -1.791 0 0 0 0 0 0 0 +-0.619 -11.346 -1.791 0 0 0 0 0 0 0 +-0.584 -11.362 -1.793 0 0 0 0 0 0 0 +-0.548 -11.362 -1.793 0 0 0 0 0 0 0 +-0.513 -11.377 -1.795 0 0 0 0 0 0 0 +-0.477 -11.365 -1.793 0 0 0 0 0 0 0 +-0.441 -11.366 -1.793 0 0 0 0 0 0 0 +-0.423 -11.371 -1.794 0 0 0 0 0 0 0 +-0.388 -11.37 -1.793 0 0 0 0 0 0 0 +-0.352 -11.385 -1.796 0 0 0 0 0 0 0 +-0.317 -11.396 -1.797 0 0 0 0 0 0 0 +-0.281 -11.395 -1.797 0 0 0 0 0 0 0 +-0.245 -11.402 -1.798 0 0 0 0 0 0 0 +-0.21 -11.406 -1.799 0 0 0 0 0 0 0 +-0.192 -11.416 -1.8 0 0 0 0 0 0 0 +-0.156 -11.433 -1.803 0 0 0 0 0 0 0 +-0.12 -11.423 -1.801 0 0 0 0 0 0 0 +-0.084 -11.441 -1.804 0 0 0 0 0 0 0 +-0.048 -11.442 -1.804 0 0 0 0 0 0 0 +-0.013 -11.483 -1.811 0 0 0 0 0 0 0 +0.023 -11.456 -1.807 0 0 0 0 0 0 0 +0.06 -11.489 -1.812 0 0 0 0 0 0 0 +0.077 -11.465 -1.808 0 0 0 0 0 0 0 +0.114 -11.494 -1.813 0 0 0 0 0 0 0 +0.15 -11.48 -1.811 0 0 0 0 0 0 0 +0.186 -11.497 -1.814 0 0 0 0 0 0 0 +0.222 -11.511 -1.816 0 0 0 0 0 0 0 +0.258 -11.486 -1.812 0 0 0 0 0 0 0 +0.295 -11.523 -1.819 0 0 0 0 0 0 0 +0.313 -11.536 -1.821 0 0 0 0 0 0 0 +0.349 -11.506 -1.816 0 0 0 0 0 0 0 +0.386 -11.53 -1.82 0 0 0 0 0 0 0 +0.421 -11.513 -1.818 0 0 0 0 0 0 0 +0.458 -11.529 -1.821 0 0 0 0 0 0 0 +0.495 -11.542 -1.823 0 0 0 0 0 0 0 +0.513 -11.545 -1.824 0 0 0 0 0 0 0 +0.55 -11.559 -1.826 0 0 0 0 0 0 0 +0.587 -11.559 -1.827 0 0 0 0 0 0 0 +0.623 -11.565 -1.828 0 0 0 0 0 0 0 +0.66 -11.561 -1.828 0 0 0 0 0 0 0 +0.696 -11.567 -1.829 0 0 0 0 0 0 0 +0.733 -11.576 -1.831 0 0 0 0 0 0 0 +0.769 -11.566 -1.83 0 0 0 0 0 0 0 +0.788 -11.573 -1.831 0 0 0 0 0 0 0 +0.825 -11.586 -1.834 0 0 0 0 0 0 0 +0.861 -11.575 -1.832 0 0 0 0 0 0 0 +0.897 -11.563 -1.831 0 0 0 0 0 0 0 +0.934 -11.568 -1.832 0 0 0 0 0 0 0 +0.97 -11.567 -1.832 0 0 0 0 0 0 0 +1.007 -11.568 -1.833 0 0 0 0 0 0 0 +1.025 -11.568 -1.833 0 0 0 0 0 0 0 +1.062 -11.573 -1.835 0 0 0 0 0 0 0 +1.099 -11.571 -1.835 0 0 0 0 0 0 0 +1.137 -11.581 -1.837 0 0 0 0 0 0 0 +1.173 -11.578 -1.837 0 0 0 0 0 0 0 +1.21 -11.58 -1.838 0 0 0 0 0 0 0 +1.247 -11.578 -1.839 0 0 0 0 0 0 0 +1.266 -11.588 -1.841 0 0 0 0 0 0 0 +1.302 -11.576 -1.839 0 0 0 0 0 0 0 +1.337 -11.566 -1.838 0 0 0 0 0 0 0 +1.376 -11.581 -1.842 0 0 0 0 0 0 0 +1.412 -11.577 -1.842 0 0 0 0 0 0 0 +1.45 -11.582 -1.843 0 0 0 0 0 0 0 +1.485 -11.572 -1.842 0 0 0 0 0 0 0 +1.507 -11.593 -1.846 0 0 0 0 0 0 0 +1.543 -11.588 -1.846 0 0 0 0 0 0 0 +1.583 -11.607 -1.85 0 0 0 0 0 0 0 +1.621 -11.615 -1.853 0 0 0 0 0 0 0 +1.657 -11.61 -1.853 0 0 0 0 0 0 0 +1.692 -11.593 -1.851 0 0 0 0 0 0 0 +1.732 -11.609 -1.854 0 0 0 0 0 0 0 +1.75 -11.61 -1.855 0 0 0 0 0 0 0 +1.788 -11.609 -1.856 0 0 0 0 0 0 0 +1.823 -11.599 -1.855 0 0 0 0 0 0 0 +1.859 -11.589 -1.854 0 0 0 0 0 0 0 +1.904 -11.638 -1.864 0 0 0 0 0 0 0 +1.936 -11.603 -1.859 0 0 0 0 0 0 0 +1.975 -11.61 -1.861 0 0 0 0 0 0 0 +1.993 -11.609 -1.861 0 0 0 0 0 0 0 +2.023 -11.56 -1.854 0 0 0 0 0 0 0 +1.242 -6.908 -1.058 0 0 0 0 0 0 0 +1.26 -6.888 -1.056 0 0 0 0 0 0 0 +1.295 -6.835 -1.048 0 0 0 0 0 0 0 +1.319 -6.845 -1.05 0 0 0 0 0 0 0 +1.333 -6.856 -1.053 0 0 0 0 0 0 0 +1.347 -6.815 -1.046 0 0 0 0 0 0 0 +1.283 -6.378 -0.972 0 0 0 0 0 0 0 +1.294 -6.327 -0.964 0 0 0 0 0 0 0 +1.314 -6.325 -0.964 0 0 0 0 0 0 0 +1.332 -6.313 -0.963 0 0 0 0 0 0 0 +1.358 -6.338 -0.968 0 0 0 0 0 0 0 +1.39 -6.436 -0.985 0 0 0 0 0 0 0 +1.411 -6.439 -0.986 0 0 0 0 0 0 0 +1.424 -6.398 -0.98 0 0 0 0 0 0 0 +1.44 -6.376 -0.977 0 0 0 0 0 0 0 +1.46 -6.372 -0.977 0 0 0 0 0 0 0 +1.472 -6.333 -0.971 0 0 0 0 0 0 0 +1.492 -6.326 -0.971 0 0 0 0 0 0 0 +1.503 -6.331 -0.972 0 0 0 0 0 0 0 +1.524 -6.332 -0.973 0 0 0 0 0 0 0 +1.616 -6.627 -1.025 0 0 0 0 0 0 0 +1.599 -6.466 -0.998 0 0 0 0 0 0 0 +2.802 -11.26 -1.832 0 0 0 0 0 0 0 +2.831 -11.226 -1.827 0 0 0 0 0 0 0 +2.858 -11.185 -1.822 0 0 0 0 0 0 0 +2.879 -11.192 -1.824 0 0 0 0 0 0 0 +2.911 -11.171 -1.822 0 0 0 0 0 0 0 +2.94 -11.139 -1.818 0 0 0 0 0 0 0 +2.971 -11.115 -1.815 0 0 0 0 0 0 0 +3 -11.084 -1.811 0 0 0 0 0 0 0 +3.027 -11.042 -1.806 0 0 0 0 0 0 0 +3.059 -11.023 -1.804 0 0 0 0 0 0 0 +3.069 -10.994 -1.8 0 0 0 0 0 0 0 +3.101 -10.975 -1.798 0 0 0 0 0 0 0 +3.135 -10.963 -1.798 0 0 0 0 0 0 0 +3.161 -10.923 -1.792 0 0 0 0 0 0 0 +3.189 -10.892 -1.789 0 0 0 0 0 0 0 +3.224 -10.884 -1.789 0 0 0 0 0 0 0 +3.254 -10.862 -1.787 0 0 0 0 0 0 0 +3.268 -10.846 -1.785 0 0 0 0 0 0 0 +3.3 -10.828 -1.784 0 0 0 0 0 0 0 +3.331 -10.808 -1.782 0 0 0 0 0 0 0 +3.354 -10.762 -1.776 0 0 0 0 0 0 0 +3.392 -10.766 -1.778 0 0 0 0 0 0 0 +3.42 -10.735 -1.775 0 0 0 0 0 0 0 +3.451 -10.718 -1.774 0 0 0 0 0 0 0 +3.466 -10.707 -1.773 0 0 0 0 0 0 0 +3.498 -10.689 -1.771 0 0 0 0 0 0 0 +3.524 -10.655 -1.767 0 0 0 0 0 0 0 +3.551 -10.625 -1.764 0 0 0 0 0 0 0 +3.591 -10.633 -1.767 0 0 0 0 0 0 0 +3.611 -10.584 -1.761 0 0 0 0 0 0 0 +3.647 -10.578 -1.762 0 0 0 0 0 0 0 +3.657 -10.556 -1.759 0 0 0 0 0 0 0 +3.689 -10.539 -1.758 0 0 0 0 0 0 0 +3.717 -10.512 -1.755 0 0 0 0 0 0 0 +3.738 -10.467 -1.749 0 0 0 0 0 0 0 +3.77 -10.453 -1.749 0 0 0 0 0 0 0 +3.797 -10.427 -1.746 0 0 0 0 0 0 0 +3.827 -10.407 -1.745 0 0 0 0 0 0 0 +3.836 -10.381 -1.741 0 0 0 0 0 0 0 +3.871 -10.374 -1.742 0 0 0 0 0 0 0 +3.9 -10.353 -1.741 0 0 0 0 0 0 0 +3.93 -10.333 -1.739 0 0 0 0 0 0 0 +3.964 -10.326 -1.74 0 0 0 0 0 0 0 +3.986 -10.286 -1.735 0 0 0 0 0 0 0 +4.023 -10.287 -1.738 0 0 0 0 0 0 0 +4.033 -10.264 -1.735 0 0 0 0 0 0 0 +4.066 -10.253 -1.735 0 0 0 0 0 0 0 +4.093 -10.227 -1.733 0 0 0 0 0 0 0 +4.127 -10.22 -1.734 0 0 0 0 0 0 0 +4.156 -10.198 -1.732 0 0 0 0 0 0 0 +4.186 -10.179 -1.731 0 0 0 0 0 0 0 +4.216 -10.162 -1.73 0 0 0 0 0 0 0 +4.23 -10.152 -1.73 0 0 0 0 0 0 0 +4.265 -10.144 -1.731 0 0 0 0 0 0 0 +4.294 -10.125 -1.73 0 0 0 0 0 0 0 +4.321 -10.101 -1.728 0 0 0 0 0 0 0 +4.348 -10.076 -1.726 0 0 0 0 0 0 0 +4.385 -10.073 -1.728 0 0 0 0 0 0 0 +4.403 -10.029 -1.722 0 0 0 0 0 0 0 +4.425 -10.036 -1.725 0 0 0 0 0 0 0 +4.445 -9.997 -1.72 0 0 0 0 0 0 0 +4.474 -9.978 -1.719 0 0 0 0 0 0 0 +4.502 -9.956 -1.718 0 0 0 0 0 0 0 +4.527 -9.928 -1.715 0 0 0 0 0 0 0 +4.555 -9.906 -1.714 0 0 0 0 0 0 0 +4.586 -9.892 -1.714 0 0 0 0 0 0 0 +4.593 -9.865 -1.71 0 0 0 0 0 0 0 +4.614 -9.831 -1.706 0 0 0 0 0 0 0 +4.649 -9.825 -1.708 0 0 0 0 0 0 0 +4.675 -9.8 -1.706 0 0 0 0 0 0 0 +4.703 -9.778 -1.705 0 0 0 0 0 0 0 +4.736 -9.769 -1.706 0 0 0 0 0 0 0 +4.756 -9.732 -1.702 0 0 0 0 0 0 0 +4.766 -9.714 -1.7 0 0 0 0 0 0 0 +4.799 -9.703 -1.7 0 0 0 0 0 0 0 +4.82 -9.67 -1.697 0 0 0 0 0 0 0 +4.856 -9.665 -1.699 0 0 0 0 0 0 0 +4.877 -9.632 -1.696 0 0 0 0 0 0 0 +4.911 -9.624 -1.697 0 0 0 0 0 0 0 +4.932 -9.591 -1.694 0 0 0 0 0 0 0 +4.939 -9.568 -1.691 0 0 0 0 0 0 0 +4.978 -9.569 -1.694 0 0 0 0 0 0 0 +5 -9.538 -1.691 0 0 0 0 0 0 0 +5.022 -9.507 -1.688 0 0 0 0 0 0 0 +5.054 -9.494 -1.689 0 0 0 0 0 0 0 +5.071 -9.456 -1.684 0 0 0 0 0 0 0 +5.095 -9.429 -1.682 0 0 0 0 0 0 0 +5.115 -9.43 -1.684 0 0 0 0 0 0 0 +5.139 -9.403 -1.682 0 0 0 0 0 0 0 +5.167 -9.384 -1.681 0 0 0 0 0 0 0 +5.175 -9.33 -1.674 0 0 0 0 0 0 0 +5.21 -9.324 -1.676 0 0 0 0 0 0 0 +5.239 -9.307 -1.676 0 0 0 0 0 0 0 +5.262 -9.279 -1.674 0 0 0 0 0 0 0 +5.279 -9.276 -1.675 0 0 0 0 0 0 0 +5.298 -9.24 -1.671 0 0 0 0 0 0 0 +5.326 -9.222 -1.671 0 0 0 0 0 0 0 +5.347 -9.191 -1.668 0 0 0 0 0 0 0 +5.371 -9.166 -1.666 0 0 0 0 0 0 0 +5.399 -9.149 -1.666 0 0 0 0 0 0 0 +5.426 -9.129 -1.666 0 0 0 0 0 0 0 +5.436 -9.113 -1.664 0 0 0 0 0 0 0 +5.466 -9.098 -1.665 0 0 0 0 0 0 0 +5.493 -9.079 -1.664 0 0 0 0 0 0 0 +5.51 -9.041 -1.66 0 0 0 0 0 0 0 +5.547 -9.039 -1.663 0 0 0 0 0 0 0 +5.573 -9.017 -1.662 0 0 0 0 0 0 0 +5.594 -8.987 -1.66 0 0 0 0 0 0 0 +5.61 -8.982 -1.661 0 0 0 0 0 0 0 +5.632 -8.954 -1.659 0 0 0 0 0 0 0 +5.661 -8.938 -1.659 0 0 0 0 0 0 0 +5.687 -8.917 -1.658 0 0 0 0 0 0 0 +5.707 -8.887 -1.656 0 0 0 0 0 0 0 +5.732 -8.864 -1.655 0 0 0 0 0 0 0 +5.76 -8.846 -1.655 0 0 0 0 0 0 0 +5.774 -8.807 -1.651 0 0 0 0 0 0 0 +5.792 -8.804 -1.652 0 0 0 0 0 0 0 +5.816 -8.781 -1.651 0 0 0 0 0 0 0 +5.839 -8.756 -1.65 0 0 0 0 0 0 0 +5.868 -8.739 -1.65 0 0 0 0 0 0 0 +5.888 -8.71 -1.648 0 0 0 0 0 0 0 +5.898 -8.667 -1.643 0 0 0 0 0 0 0 +5.932 -8.658 -1.645 0 0 0 0 0 0 0 +5.937 -8.635 -1.642 0 0 0 0 0 0 0 +5.954 -8.602 -1.639 0 0 0 0 0 0 0 +5.985 -8.59 -1.64 0 0 0 0 0 0 0 +6.005 -8.56 -1.638 0 0 0 0 0 0 0 +6.021 -8.526 -1.635 0 0 0 0 0 0 0 +6.053 -8.514 -1.636 0 0 0 0 0 0 0 +6.059 -8.495 -1.634 0 0 0 0 0 0 0 +6.083 -8.472 -1.634 0 0 0 0 0 0 0 +6.108 -8.45 -1.633 0 0 0 0 0 0 0 +6.125 -8.418 -1.63 0 0 0 0 0 0 0 +6.158 -8.408 -1.632 0 0 0 0 0 0 0 +6.178 -8.379 -1.63 0 0 0 0 0 0 0 +6.204 -8.36 -1.63 0 0 0 0 0 0 0 +6.221 -8.355 -1.631 0 0 0 0 0 0 0 +6.247 -8.335 -1.631 0 0 0 0 0 0 0 +6.268 -8.309 -1.63 0 0 0 0 0 0 0 +6.282 -8.274 -1.627 0 0 0 0 0 0 0 +6.312 -8.259 -1.628 0 0 0 0 0 0 0 +6.334 -8.234 -1.627 0 0 0 0 0 0 0 +6.359 -8.213 -1.626 0 0 0 0 0 0 0 +6.372 -8.203 -1.626 0 0 0 0 0 0 0 +6.39 -8.173 -1.624 0 0 0 0 0 0 0 +6.41 -8.145 -1.623 0 0 0 0 0 0 0 +6.434 -8.124 -1.622 0 0 0 0 0 0 0 +6.461 -8.105 -1.623 0 0 0 0 0 0 0 +6.488 -8.086 -1.623 0 0 0 0 0 0 0 +6.512 -8.064 -1.623 0 0 0 0 0 0 0 +6.531 -8.036 -1.621 0 0 0 0 0 0 0 +6.542 -8.024 -1.621 0 0 0 0 0 0 0 +6.56 -7.994 -1.619 0 0 0 0 0 0 0 +6.586 -7.975 -1.619 0 0 0 0 0 0 0 +6.604 -7.945 -1.617 0 0 0 0 0 0 0 +6.629 -7.925 -1.617 0 0 0 0 0 0 0 +6.65 -7.899 -1.616 0 0 0 0 0 0 0 +6.668 -7.871 -1.614 0 0 0 0 0 0 0 +6.686 -7.866 -1.616 0 0 0 0 0 0 0 +6.71 -7.845 -1.616 0 0 0 0 0 0 0 +6.739 -7.829 -1.617 0 0 0 0 0 0 0 +6.749 -7.791 -1.613 0 0 0 0 0 0 0 +6.766 -7.761 -1.611 0 0 0 0 0 0 0 +6.791 -7.741 -1.611 0 0 0 0 0 0 0 +6.812 -7.715 -1.61 0 0 0 0 0 0 0 +6.825 -7.706 -1.611 0 0 0 0 0 0 0 +6.849 -7.684 -1.611 0 0 0 0 0 0 0 +6.867 -7.656 -1.609 0 0 0 0 0 0 0 +6.886 -7.628 -1.608 0 0 0 0 0 0 0 +6.918 -7.615 -1.61 0 0 0 0 0 0 0 +6.942 -7.593 -1.61 0 0 0 0 0 0 0 +6.945 -7.574 -1.608 0 0 0 0 0 0 0 +6.972 -7.555 -1.608 0 0 0 0 0 0 0 +7.001 -7.539 -1.61 0 0 0 0 0 0 0 +7.014 -7.505 -1.607 0 0 0 0 0 0 0 +7.041 -7.487 -1.608 0 0 0 0 0 0 0 +7.066 -7.467 -1.608 0 0 0 0 0 0 0 +7.09 -7.444 -1.608 0 0 0 0 0 0 0 +7.106 -7.415 -1.607 0 0 0 0 0 0 0 +7.122 -7.408 -1.608 0 0 0 0 0 0 0 +7.133 -7.373 -1.605 0 0 0 0 0 0 0 +7.159 -7.353 -1.605 0 0 0 0 0 0 0 +7.187 -7.336 -1.607 0 0 0 0 0 0 0 +7.212 -7.315 -1.607 0 0 0 0 0 0 0 +7.232 -7.29 -1.606 0 0 0 0 0 0 0 +7.255 -7.267 -1.606 0 0 0 0 0 0 0 +7.265 -7.254 -1.606 0 0 0 0 0 0 0 +7.285 -7.228 -1.605 0 0 0 0 0 0 0 +7.303 -7.201 -1.604 0 0 0 0 0 0 0 +7.326 -7.178 -1.604 0 0 0 0 0 0 0 +7.348 -7.155 -1.604 0 0 0 0 0 0 0 +7.371 -7.132 -1.604 0 0 0 0 0 0 0 +7.4 -7.116 -1.606 0 0 0 0 0 0 0 +7.411 -7.104 -1.606 0 0 0 0 0 0 0 +7.435 -7.082 -1.606 0 0 0 0 0 0 0 +7.454 -7.056 -1.606 0 0 0 0 0 0 0 +7.469 -7.026 -1.604 0 0 0 0 0 0 0 +7.502 -7.012 -1.606 0 0 0 0 0 0 0 +7.519 -6.984 -1.605 0 0 0 0 0 0 0 +7.535 -6.955 -1.604 0 0 0 0 0 0 0 +7.548 -6.945 -1.604 0 0 0 0 0 0 0 +7.572 -6.924 -1.605 0 0 0 0 0 0 0 +7.593 -6.898 -1.605 0 0 0 0 0 0 0 +7.623 -6.883 -1.607 0 0 0 0 0 0 0 +7.64 -6.855 -1.606 0 0 0 0 0 0 0 +7.657 -6.827 -1.605 0 0 0 0 0 0 0 +7.672 -6.819 -1.606 0 0 0 0 0 0 0 +7.688 -6.789 -1.604 0 0 0 0 0 0 0 +7.724 -6.778 -1.608 0 0 0 0 0 0 0 +7.753 -6.76 -1.609 0 0 0 0 0 0 0 +7.756 -6.72 -1.605 0 0 0 0 0 0 0 +7.787 -6.705 -1.608 0 0 0 0 0 0 0 +7.809 -6.68 -1.608 0 0 0 0 0 0 0 +7.825 -6.652 -1.607 0 0 0 0 0 0 0 +7.837 -6.641 -1.607 0 0 0 0 0 0 0 +7.859 -6.618 -1.607 0 0 0 0 0 0 0 +7.885 -6.597 -1.608 0 0 0 0 0 0 0 +7.905 -6.572 -1.608 0 0 0 0 0 0 0 +7.935 -6.555 -1.61 0 0 0 0 0 0 0 +7.952 -6.527 -1.61 0 0 0 0 0 0 0 +7.974 -6.503 -1.61 0 0 0 0 0 0 0 +7.994 -6.498 -1.612 0 0 0 0 0 0 0 +8.008 -6.468 -1.611 0 0 0 0 0 0 0 +8.038 -6.45 -1.613 0 0 0 0 0 0 0 +8.05 -6.419 -1.611 0 0 0 0 0 0 0 +8.079 -6.401 -1.613 0 0 0 0 0 0 0 +8.092 -6.369 -1.611 0 0 0 0 0 0 0 +8.116 -6.348 -1.612 0 0 0 0 0 0 0 +8.12 -6.33 -1.611 0 0 0 0 0 0 0 +8.142 -6.306 -1.611 0 0 0 0 0 0 0 +8.158 -6.278 -1.611 0 0 0 0 0 0 0 +8.181 -6.254 -1.611 0 0 0 0 0 0 0 +8.208 -6.235 -1.613 0 0 0 0 0 0 0 +8.219 -6.202 -1.611 0 0 0 0 0 0 0 +8.236 -6.175 -1.611 0 0 0 0 0 0 0 +8.254 -6.168 -1.612 0 0 0 0 0 0 0 +8.27 -6.139 -1.612 0 0 0 0 0 0 0 +8.305 -6.125 -1.615 0 0 0 0 0 0 0 +8.315 -6.092 -1.613 0 0 0 0 0 0 0 +8.336 -6.067 -1.613 0 0 0 0 0 0 0 +8.351 -6.038 -1.613 0 0 0 0 0 0 0 +8.372 -6.013 -1.613 0 0 0 0 0 0 0 +8.389 -6.006 -1.615 0 0 0 0 0 0 0 +8.408 -5.98 -1.615 0 0 0 0 0 0 0 +8.417 -5.946 -1.613 0 0 0 0 0 0 0 +8.441 -5.923 -1.614 0 0 0 0 0 0 0 +8.456 -5.894 -1.613 0 0 0 0 0 0 0 +8.471 -5.866 -1.612 0 0 0 0 0 0 0 +8.483 -5.834 -1.611 0 0 0 0 0 0 0 +8.499 -5.826 -1.612 0 0 0 0 0 0 0 +8.509 -5.793 -1.611 0 0 0 0 0 0 0 +8.519 -5.761 -1.609 0 0 0 0 0 0 0 +8.54 -5.736 -1.61 0 0 0 0 0 0 0 +8.555 -5.707 -1.609 0 0 0 0 0 0 0 +8.586 -5.689 -1.612 0 0 0 0 0 0 0 +8.611 -5.666 -1.613 0 0 0 0 0 0 0 +8.618 -5.652 -1.613 0 0 0 0 0 0 0 +8.634 -5.624 -1.612 0 0 0 0 0 0 0 +8.648 -5.594 -1.612 0 0 0 0 0 0 0 +8.657 -5.562 -1.61 0 0 0 0 0 0 0 +8.677 -5.536 -1.61 0 0 0 0 0 0 0 +8.694 -5.508 -1.61 0 0 0 0 0 0 0 +8.709 -5.48 -1.61 0 0 0 0 0 0 0 +8.716 -5.465 -1.61 0 0 0 0 0 0 0 +8.73 -5.436 -1.609 0 0 0 0 0 0 0 +8.754 -5.412 -1.61 0 0 0 0 0 0 0 +8.768 -5.383 -1.61 0 0 0 0 0 0 0 +8.784 -5.355 -1.61 0 0 0 0 0 0 0 +8.805 -5.33 -1.61 0 0 0 0 0 0 0 +8.809 -5.295 -1.608 0 0 0 0 0 0 0 +8.821 -5.283 -1.609 0 0 0 0 0 0 0 +8.838 -5.255 -1.609 0 0 0 0 0 0 0 +8.858 -5.23 -1.609 0 0 0 0 0 0 0 +8.876 -5.203 -1.61 0 0 0 0 0 0 0 +8.887 -5.172 -1.609 0 0 0 0 0 0 0 +8.901 -5.143 -1.608 0 0 0 0 0 0 0 +8.928 -5.121 -1.61 0 0 0 0 0 0 0 +8.929 -5.103 -1.609 0 0 0 0 0 0 0 +8.948 -5.077 -1.61 0 0 0 0 0 0 0 +8.968 -5.051 -1.61 0 0 0 0 0 0 0 +8.982 -5.021 -1.61 0 0 0 0 0 0 0 +8.987 -4.987 -1.608 0 0 0 0 0 0 0 +9.008 -4.962 -1.609 0 0 0 0 0 0 0 +9.029 -4.936 -1.61 0 0 0 0 0 0 0 +9.036 -4.922 -1.61 0 0 0 0 0 0 0 +9.041 -4.888 -1.608 0 0 0 0 0 0 0 +8.789 -4.716 -1.557 0 0 0 0 0 0 0 +8.822 -4.697 -1.56 0 0 0 0 0 0 0 +8.727 -4.611 -1.539 0 0 0 0 0 0 0 +8.678 -4.551 -1.527 0 0 0 0 0 0 0 +8.659 -4.506 -1.521 0 0 0 0 0 0 0 +8.846 -4.586 -1.555 0 0 0 0 0 0 0 +8.775 -4.514 -1.539 0 0 0 0 0 0 0 +8.787 -4.486 -1.539 0 0 0 0 0 0 0 +8.808 -4.461 -1.54 0 0 0 0 0 0 0 +9.078 -4.527 -1.586 0 0 0 0 0 0 0 +9.156 -4.53 -1.597 0 0 0 0 0 0 0 +9.175 -4.522 -1.6 0 0 0 0 0 0 0 +9.205 -4.501 -1.603 0 0 0 0 0 0 0 +9.209 -4.467 -1.601 0 0 0 0 0 0 0 +9.224 -4.439 -1.601 0 0 0 0 0 0 0 +9.229 -4.406 -1.599 0 0 0 0 0 0 0 +9.254 -4.382 -1.601 0 0 0 0 0 0 0 +9.26 -4.349 -1.6 0 0 0 0 0 0 0 +9.264 -4.333 -1.599 0 0 0 0 0 0 0 +9.272 -4.301 -1.598 0 0 0 0 0 0 0 +9.291 -4.275 -1.599 0 0 0 0 0 0 0 +9.283 -4.236 -1.595 0 0 0 0 0 0 0 +9.301 -4.209 -1.596 0 0 0 0 0 0 0 +9.307 -4.176 -1.595 0 0 0 0 0 0 0 +9.317 -4.145 -1.594 0 0 0 0 0 0 0 +9.33 -4.134 -1.596 0 0 0 0 0 0 0 +9.351 -4.108 -1.597 0 0 0 0 0 0 0 +9.36 -4.077 -1.596 0 0 0 0 0 0 0 +9.38 -4.051 -1.598 0 0 0 0 0 0 0 +9.392 -4.021 -1.598 0 0 0 0 0 0 0 +9.403 -3.991 -1.597 0 0 0 0 0 0 0 +9.414 -3.961 -1.597 0 0 0 0 0 0 0 +9.435 -3.952 -1.6 0 0 0 0 0 0 0 +9.449 -3.923 -1.6 0 0 0 0 0 0 0 +9.457 -3.892 -1.599 0 0 0 0 0 0 0 +9.481 -3.867 -1.601 0 0 0 0 0 0 0 +9.489 -3.835 -1.601 0 0 0 0 0 0 0 +9.507 -3.808 -1.602 0 0 0 0 0 0 0 +9.524 -3.78 -1.603 0 0 0 0 0 0 0 +9.524 -3.763 -1.602 0 0 0 0 0 0 0 +9.531 -3.731 -1.601 0 0 0 0 0 0 0 +9.555 -3.706 -1.603 0 0 0 0 0 0 0 +9.574 -3.679 -1.604 0 0 0 0 0 0 0 +9.576 -3.645 -1.603 0 0 0 0 0 0 0 +9.606 -3.622 -1.606 0 0 0 0 0 0 0 +9.618 -3.592 -1.606 0 0 0 0 0 0 0 +9.618 -3.574 -1.605 0 0 0 0 0 0 0 +9.634 -3.546 -1.606 0 0 0 0 0 0 0 +9.638 -3.513 -1.605 0 0 0 0 0 0 0 +9.658 -3.486 -1.606 0 0 0 0 0 0 0 +9.686 -3.462 -1.609 0 0 0 0 0 0 0 +9.693 -3.43 -1.609 0 0 0 0 0 0 0 +9.708 -3.401 -1.609 0 0 0 0 0 0 0 +9.709 -3.385 -1.609 0 0 0 0 0 0 0 +9.722 -3.355 -1.609 0 0 0 0 0 0 0 +9.738 -3.326 -1.61 0 0 0 0 0 0 0 +9.75 -3.296 -1.61 0 0 0 0 0 0 0 +9.768 -3.268 -1.612 0 0 0 0 0 0 0 +9.774 -3.236 -1.611 0 0 0 0 0 0 0 +9.782 -3.205 -1.611 0 0 0 0 0 0 0 +9.789 -3.173 -1.61 0 0 0 0 0 0 0 +9.796 -3.158 -1.61 0 0 0 0 0 0 0 +9.802 -3.126 -1.61 0 0 0 0 0 0 0 +9.791 -3.088 -1.606 0 0 0 0 0 0 0 +9.776 -3.05 -1.602 0 0 0 0 0 0 0 +9.829 -3.033 -1.609 0 0 0 0 0 0 0 +9.852 -3.006 -1.612 0 0 0 0 0 0 0 +9.857 -2.974 -1.611 0 0 0 0 0 0 0 +9.864 -2.959 -1.611 0 0 0 0 0 0 0 +9.877 -2.929 -1.612 0 0 0 0 0 0 0 +9.882 -2.897 -1.611 0 0 0 0 0 0 0 +9.895 -2.867 -1.612 0 0 0 0 0 0 0 +9.902 -2.835 -1.612 0 0 0 0 0 0 0 +9.907 -2.803 -1.611 0 0 0 0 0 0 0 +9.911 -2.788 -1.611 0 0 0 0 0 0 0 +9.939 -2.762 -1.614 0 0 0 0 0 0 0 +9.948 -2.73 -1.614 0 0 0 0 0 0 0 +9.951 -2.698 -1.613 0 0 0 0 0 0 0 +9.955 -2.665 -1.613 0 0 0 0 0 0 0 +9.965 -2.635 -1.613 0 0 0 0 0 0 0 +9.977 -2.604 -1.614 0 0 0 0 0 0 0 +9.986 -2.573 -1.614 0 0 0 0 0 0 0 +9.992 -2.558 -1.614 0 0 0 0 0 0 0 +10.007 -2.528 -1.615 0 0 0 0 0 0 0 +10.013 -2.496 -1.615 0 0 0 0 0 0 0 +10.029 -2.467 -1.616 0 0 0 0 0 0 0 +10.032 -2.434 -1.616 0 0 0 0 0 0 0 +10.073 -2.411 -1.621 0 0 0 0 0 0 0 +7.053 -1.657 -1.097 0 0 0 0 0 0 0 +7.073 -1.65 -1.1 0 0 0 0 0 0 0 +7.105 -1.634 -1.104 0 0 0 0 0 0 0 +7.145 -1.619 -1.11 0 0 0 0 0 0 0 +7.198 -1.608 -1.119 0 0 0 0 0 0 0 +7.212 -1.587 -1.12 0 0 0 0 0 0 0 +7.219 -1.565 -1.12 0 0 0 0 0 0 0 +7.28 -1.554 -1.13 0 0 0 0 0 0 0 +7.579 -1.607 -1.181 0 0 0 0 0 0 0 +7.613 -1.589 -1.186 0 0 0 0 0 0 0 +7.635 -1.544 -1.188 0 0 0 0 0 0 0 +7.64 -1.52 -1.188 0 0 0 0 0 0 0 +7.366 -1.416 -1.14 0 0 0 0 0 0 0 +7.375 -1.406 -1.141 0 0 0 0 0 0 0 +7.367 -1.381 -1.139 0 0 0 0 0 0 0 +7.381 -1.359 -1.14 0 0 0 0 0 0 0 +7.382 -1.335 -1.14 0 0 0 0 0 0 0 +7.409 -1.316 -1.144 0 0 0 0 0 0 0 +7.425 -1.295 -1.146 0 0 0 0 0 0 0 +7.51 -1.286 -1.16 0 0 0 0 0 0 0 +9.78 -1.667 -1.548 0 0 0 0 0 0 0 +9.778 -1.635 -1.547 0 0 0 0 0 0 0 +10.143 -1.664 -1.608 0 0 0 0 0 0 0 +10.121 -1.628 -1.603 0 0 0 0 0 0 0 +10.171 -1.571 -1.61 0 0 0 0 0 0 0 +10.186 -1.54 -1.612 0 0 0 0 0 0 0 +10.179 -1.523 -1.61 0 0 0 0 0 0 0 +10.18 -1.49 -1.61 0 0 0 0 0 0 0 +10.169 -1.456 -1.607 0 0 0 0 0 0 0 +10.079 -1.411 -1.591 0 0 0 0 0 0 0 +10.203 -1.395 -1.611 0 0 0 0 0 0 0 +8.331 -1.108 -1.292 0 0 0 0 0 0 0 +10.196 -1.329 -1.609 0 0 0 0 0 0 0 +10.194 -1.313 -1.608 0 0 0 0 0 0 0 +10.196 -1.28 -1.608 0 0 0 0 0 0 0 +10.212 -1.25 -1.61 0 0 0 0 0 0 0 +10.224 -1.219 -1.611 0 0 0 0 0 0 0 +10.221 -1.186 -1.61 0 0 0 0 0 0 0 +10.219 -1.153 -1.609 0 0 0 0 0 0 0 +10.231 -1.122 -1.61 0 0 0 0 0 0 0 +10.254 -1.108 -1.614 0 0 0 0 0 0 0 +10.259 -1.076 -1.614 0 0 0 0 0 0 0 +10.255 -1.043 -1.613 0 0 0 0 0 0 0 +10.252 -1.01 -1.612 0 0 0 0 0 0 0 +10.253 -0.978 -1.612 0 0 0 0 0 0 0 +10.26 -0.946 -1.612 0 0 0 0 0 0 0 +10.303 -0.917 -1.619 0 0 0 0 0 0 0 +10.355 -0.906 -1.628 0 0 0 0 0 0 0 +10.405 -0.877 -1.636 0 0 0 0 0 0 0 +10.451 -0.848 -1.643 0 0 0 0 0 0 0 +10.501 -0.819 -1.651 0 0 0 0 0 0 0 +10.554 -0.79 -1.66 0 0 0 0 0 0 0 +10.594 -0.76 -1.666 0 0 0 0 0 0 0 +10.644 -0.73 -1.674 0 0 0 0 0 0 0 +10.668 -0.715 -1.678 0 0 0 0 0 0 0 +10.738 -0.686 -1.689 0 0 0 0 0 0 0 +10.718 -0.651 -1.686 0 0 0 0 0 0 0 +10.728 -0.617 -1.687 0 0 0 0 0 0 0 +10.74 -0.584 -1.689 0 0 0 0 0 0 0 +10.718 -0.549 -1.685 0 0 0 0 0 0 0 +10.723 -0.516 -1.685 0 0 0 0 0 0 0 +10.827 -0.504 -1.703 0 0 0 0 0 0 0 +10.846 -0.471 -1.706 0 0 0 0 0 0 0 +10.843 -0.437 -1.705 0 0 0 0 0 0 0 +10.91 -0.405 -1.716 0 0 0 0 0 0 0 +10.915 -0.371 -1.717 0 0 0 0 0 0 0 +10.92 -0.337 -1.717 0 0 0 0 0 0 0 +10.941 -0.303 -1.721 0 0 0 0 0 0 0 +10.925 -0.285 -1.718 0 0 0 0 0 0 0 +10.93 -0.251 -1.719 0 0 0 0 0 0 0 +10.931 -0.217 -1.719 0 0 0 0 0 0 0 +10.912 -0.182 -1.715 0 0 0 0 0 0 0 +10.914 -0.148 -1.716 0 0 0 0 0 0 0 +10.907 -0.114 -1.714 0 0 0 0 0 0 0 +10.907 -0.079 -1.714 0 0 0 0 0 0 0 +10.891 -0.062 -1.712 0 0 0 0 0 0 0 +10.905 -0.028 -1.714 0 0 0 0 0 0 0 +10.371 0.001 -1.715 0 0 0 0 0 0 0 +10.373 0.034 -1.716 0 0 0 0 0 0 0 +10.365 0.066 -1.714 0 0 0 0 0 0 0 +10.356 0.099 -1.713 0 0 0 0 0 0 0 +10.35 0.131 -1.712 0 0 0 0 0 0 0 +10.348 0.147 -1.711 0 0 0 0 0 0 0 +10.355 0.18 -1.713 0 0 0 0 0 0 0 +10.343 0.212 -1.711 0 0 0 0 0 0 0 +10.336 0.244 -1.71 0 0 0 0 0 0 0 +10.33 0.277 -1.709 0 0 0 0 0 0 0 +10.331 0.309 -1.709 0 0 0 0 0 0 0 +10.328 0.342 -1.709 0 0 0 0 0 0 0 +10.332 0.374 -1.71 0 0 0 0 0 0 0 +10.328 0.39 -1.709 0 0 0 0 0 0 0 +10.323 0.423 -1.708 0 0 0 0 0 0 0 +10.315 0.455 -1.707 0 0 0 0 0 0 0 +10.318 0.487 -1.708 0 0 0 0 0 0 0 +10.318 0.52 -1.708 0 0 0 0 0 0 0 +10.313 0.552 -1.708 0 0 0 0 0 0 0 +10.315 0.585 -1.708 0 0 0 0 0 0 0 +10.314 0.601 -1.708 0 0 0 0 0 0 0 +10.294 0.632 -1.705 0 0 0 0 0 0 0 +10.296 0.665 -1.706 0 0 0 0 0 0 0 +10.29 0.697 -1.705 0 0 0 0 0 0 0 +10.29 0.729 -1.705 0 0 0 0 0 0 0 +10.283 0.761 -1.705 0 0 0 0 0 0 0 +10.291 0.794 -1.707 0 0 0 0 0 0 0 +10.291 0.811 -1.707 0 0 0 0 0 0 0 +10.285 0.843 -1.706 0 0 0 0 0 0 0 +10.272 0.874 -1.704 0 0 0 0 0 0 0 +10.262 0.906 -1.703 0 0 0 0 0 0 0 +10.273 0.939 -1.705 0 0 0 0 0 0 0 +10.262 0.971 -1.704 0 0 0 0 0 0 0 +10.249 1.002 -1.702 0 0 0 0 0 0 0 +10.239 1.017 -1.701 0 0 0 0 0 0 0 +10.24 1.05 -1.702 0 0 0 0 0 0 0 +10.241 1.083 -1.702 0 0 0 0 0 0 0 +10.231 1.114 -1.701 0 0 0 0 0 0 0 +10.226 1.146 -1.701 0 0 0 0 0 0 0 +10.218 1.178 -1.7 0 0 0 0 0 0 0 +10.209 1.209 -1.699 0 0 0 0 0 0 0 +10.205 1.225 -1.699 0 0 0 0 0 0 0 +10.203 1.257 -1.699 0 0 0 0 0 0 0 +10.209 1.29 -1.701 0 0 0 0 0 0 0 +10.191 1.321 -1.698 0 0 0 0 0 0 0 +10.189 1.353 -1.699 0 0 0 0 0 0 0 +10.175 1.384 -1.697 0 0 0 0 0 0 0 +10.172 1.416 -1.697 0 0 0 0 0 0 0 +10.164 1.431 -1.696 0 0 0 0 0 0 0 +10.169 1.464 -1.698 0 0 0 0 0 0 0 +10.145 1.493 -1.695 0 0 0 0 0 0 0 +10.148 1.526 -1.696 0 0 0 0 0 0 0 +10.13 1.556 -1.694 0 0 0 0 0 0 0 +10.125 1.588 -1.694 0 0 0 0 0 0 0 +10.131 1.622 -1.696 0 0 0 0 0 0 0 +10.115 1.635 -1.693 0 0 0 0 0 0 0 +10.104 1.666 -1.692 0 0 0 0 0 0 0 +10.113 1.7 -1.695 0 0 0 0 0 0 0 +10.094 1.73 -1.692 0 0 0 0 0 0 0 +10.078 1.76 -1.69 0 0 0 0 0 0 0 +10.092 1.795 -1.694 0 0 0 0 0 0 0 +10.079 1.825 -1.693 0 0 0 0 0 0 0 +10.072 1.84 -1.692 0 0 0 0 0 0 0 +10.066 1.872 -1.692 0 0 0 0 0 0 0 +10.051 1.901 -1.69 0 0 0 0 0 0 0 +10.056 1.935 -1.692 0 0 0 0 0 0 0 +10.033 1.963 -1.689 0 0 0 0 0 0 0 +10.036 1.997 -1.691 0 0 0 0 0 0 0 +10.028 2.028 -1.69 0 0 0 0 0 0 0 +10.017 2.042 -1.689 0 0 0 0 0 0 0 +10.016 2.075 -1.69 0 0 0 0 0 0 0 +10 2.104 -1.688 0 0 0 0 0 0 0 +9.995 2.136 -1.689 0 0 0 0 0 0 0 +10 2.17 -1.691 0 0 0 0 0 0 0 +9.993 2.201 -1.691 0 0 0 0 0 0 0 +9.994 2.235 -1.692 0 0 0 0 0 0 0 +9.998 2.252 -1.694 0 0 0 0 0 0 0 +10.006 2.287 -1.696 0 0 0 0 0 0 0 +9.953 2.308 -1.688 0 0 0 0 0 0 0 +9.946 2.339 -1.688 0 0 0 0 0 0 0 +9.938 2.37 -1.688 0 0 0 0 0 0 0 +9.937 2.403 -1.689 0 0 0 0 0 0 0 +9.935 2.435 -1.69 0 0 0 0 0 0 0 +9.921 2.448 -1.688 0 0 0 0 0 0 0 +9.925 2.483 -1.69 0 0 0 0 0 0 0 +9.923 2.515 -1.691 0 0 0 0 0 0 0 +9.909 2.545 -1.69 0 0 0 0 0 0 0 +9.89 2.573 -1.688 0 0 0 0 0 0 0 +9.889 2.606 -1.69 0 0 0 0 0 0 0 +9.887 2.639 -1.691 0 0 0 0 0 0 0 +9.884 2.655 -1.691 0 0 0 0 0 0 0 +9.868 2.684 -1.69 0 0 0 0 0 0 0 +9.873 2.718 -1.692 0 0 0 0 0 0 0 +9.855 2.747 -1.69 0 0 0 0 0 0 0 +9.856 2.78 -1.692 0 0 0 0 0 0 0 +9.843 2.81 -1.691 0 0 0 0 0 0 0 +9.848 2.845 -1.694 0 0 0 0 0 0 0 +9.827 2.873 -1.692 0 0 0 0 0 0 0 +9.846 2.895 -1.696 0 0 0 0 0 0 0 +9.823 2.922 -1.694 0 0 0 0 0 0 0 +9.816 2.953 -1.694 0 0 0 0 0 0 0 +9.808 2.984 -1.694 0 0 0 0 0 0 0 +9.801 3.016 -1.695 0 0 0 0 0 0 0 +9.793 3.047 -1.695 0 0 0 0 0 0 0 +9.781 3.06 -1.694 0 0 0 0 0 0 0 +9.781 3.094 -1.695 0 0 0 0 0 0 0 +9.771 3.125 -1.695 0 0 0 0 0 0 0 +9.765 3.157 -1.696 0 0 0 0 0 0 0 +9.744 3.183 -1.694 0 0 0 0 0 0 0 +9.75 3.22 -1.697 0 0 0 0 0 0 0 +9.736 3.249 -1.696 0 0 0 0 0 0 0 +9.728 3.263 -1.696 0 0 0 0 0 0 0 +9.714 3.292 -1.695 0 0 0 0 0 0 0 +9.707 3.324 -1.696 0 0 0 0 0 0 0 +9.691 3.353 -1.695 0 0 0 0 0 0 0 +9.667 3.379 -1.692 0 0 0 0 0 0 0 +9.662 3.411 -1.693 0 0 0 0 0 0 0 +9.644 3.439 -1.692 0 0 0 0 0 0 0 +9.646 3.456 -1.693 0 0 0 0 0 0 0 +9.637 3.487 -1.694 0 0 0 0 0 0 0 +9.639 3.522 -1.696 0 0 0 0 0 0 0 +9.65 3.561 -1.7 0 0 0 0 0 0 0 +9.628 3.587 -1.698 0 0 0 0 0 0 0 +9.638 3.626 -1.702 0 0 0 0 0 0 0 +9.625 3.655 -1.702 0 0 0 0 0 0 0 +9.619 3.687 -1.703 0 0 0 0 0 0 0 +9.621 3.705 -1.704 0 0 0 0 0 0 0 +9.602 3.733 -1.703 0 0 0 0 0 0 0 +9.606 3.769 -1.706 0 0 0 0 0 0 0 +9.613 3.807 -1.71 0 0 0 0 0 0 0 +9.599 3.836 -1.709 0 0 0 0 0 0 0 +9.583 3.865 -1.709 0 0 0 0 0 0 0 +9.562 3.891 -1.707 0 0 0 0 0 0 0 +9.532 3.897 -1.702 0 0 0 0 0 0 0 +9.516 3.925 -1.702 0 0 0 0 0 0 0 +9.527 3.965 -1.706 0 0 0 0 0 0 0 +9.537 4.004 -1.71 0 0 0 0 0 0 0 +9.517 4.031 -1.709 0 0 0 0 0 0 0 +9.515 4.065 -1.711 0 0 0 0 0 0 0 +9.514 4.083 -1.712 0 0 0 0 0 0 0 +9.494 4.109 -1.711 0 0 0 0 0 0 0 +9.481 4.139 -1.711 0 0 0 0 0 0 0 +9.47 4.17 -1.711 0 0 0 0 0 0 0 +9.451 4.197 -1.71 0 0 0 0 0 0 0 +9.449 4.232 -1.712 0 0 0 0 0 0 0 +9.435 4.261 -1.712 0 0 0 0 0 0 0 +9.443 4.283 -1.715 0 0 0 0 0 0 0 +9.417 4.306 -1.712 0 0 0 0 0 0 0 +9.405 4.337 -1.713 0 0 0 0 0 0 0 +9.393 4.367 -1.713 0 0 0 0 0 0 0 +9.383 4.398 -1.714 0 0 0 0 0 0 0 +9.378 4.432 -1.716 0 0 0 0 0 0 0 +9.366 4.462 -1.716 0 0 0 0 0 0 0 +9.357 4.476 -1.716 0 0 0 0 0 0 0 +9.341 4.505 -1.715 0 0 0 0 0 0 0 +9.331 4.536 -1.716 0 0 0 0 0 0 0 +9.314 4.564 -1.716 0 0 0 0 0 0 0 +9.295 4.591 -1.715 0 0 0 0 0 0 0 +9.291 4.625 -1.717 0 0 0 0 0 0 0 +9.278 4.655 -1.717 0 0 0 0 0 0 0 +9.269 4.669 -1.717 0 0 0 0 0 0 0 +9.27 4.706 -1.72 0 0 0 0 0 0 0 +9.252 4.733 -1.719 0 0 0 0 0 0 0 +9.24 4.764 -1.72 0 0 0 0 0 0 0 +9.231 4.796 -1.721 0 0 0 0 0 0 0 +9.21 4.822 -1.72 0 0 0 0 0 0 0 +9.192 4.849 -1.719 0 0 0 0 0 0 0 +9.177 4.86 -1.718 0 0 0 0 0 0 0 +9.169 4.893 -1.719 0 0 0 0 0 0 0 +9.158 4.924 -1.72 0 0 0 0 0 0 0 +9.157 4.96 -1.723 0 0 0 0 0 0 0 +9.139 4.988 -1.723 0 0 0 0 0 0 0 +9.129 5.02 -1.724 0 0 0 0 0 0 0 +9.113 5.048 -1.724 0 0 0 0 0 0 0 +9.107 5.083 -1.726 0 0 0 0 0 0 0 +9.111 5.104 -1.728 0 0 0 0 0 0 0 +9.092 5.131 -1.727 0 0 0 0 0 0 0 +9.084 5.164 -1.729 0 0 0 0 0 0 0 +9.058 5.187 -1.727 0 0 0 0 0 0 0 +9.018 5.201 -1.722 0 0 0 0 0 0 0 +8.998 5.228 -1.722 0 0 0 0 0 0 0 +8.985 5.258 -1.722 0 0 0 0 0 0 0 +8.973 5.27 -1.722 0 0 0 0 0 0 0 +8.951 5.295 -1.72 0 0 0 0 0 0 0 +8.921 5.315 -1.718 0 0 0 0 0 0 0 +8.901 5.341 -1.717 0 0 0 0 0 0 0 +8.881 5.367 -1.716 0 0 0 0 0 0 0 +8.857 5.391 -1.715 0 0 0 0 0 0 0 +8.849 5.405 -1.715 0 0 0 0 0 0 0 +8.833 5.433 -1.715 0 0 0 0 0 0 0 +8.806 5.455 -1.713 0 0 0 0 0 0 0 +8.789 5.482 -1.713 0 0 0 0 0 0 0 +8.765 5.506 -1.712 0 0 0 0 0 0 0 +8.746 5.532 -1.711 0 0 0 0 0 0 0 +8.732 5.562 -1.712 0 0 0 0 0 0 0 +8.715 5.57 -1.71 0 0 0 0 0 0 0 +8.694 5.595 -1.71 0 0 0 0 0 0 0 +8.675 5.622 -1.709 0 0 0 0 0 0 0 +8.659 5.65 -1.71 0 0 0 0 0 0 0 +8.634 5.673 -1.708 0 0 0 0 0 0 0 +8.612 5.697 -1.707 0 0 0 0 0 0 0 +8.586 5.718 -1.705 0 0 0 0 0 0 0 +8.57 5.727 -1.704 0 0 0 0 0 0 0 +8.547 5.751 -1.703 0 0 0 0 0 0 0 +8.54 5.785 -1.705 0 0 0 0 0 0 0 +8.514 5.807 -1.704 0 0 0 0 0 0 0 +8.499 5.836 -1.704 0 0 0 0 0 0 0 +8.477 5.86 -1.704 0 0 0 0 0 0 0 +8.462 5.889 -1.704 0 0 0 0 0 0 0 +8.45 5.92 -1.706 0 0 0 0 0 0 0 +8.446 5.937 -1.707 0 0 0 0 0 0 0 +8.412 5.953 -1.704 0 0 0 0 0 0 0 +8.405 5.987 -1.706 0 0 0 0 0 0 0 +8.392 6.018 -1.708 0 0 0 0 0 0 0 +8.362 6.037 -1.705 0 0 0 0 0 0 0 +8.348 6.066 -1.706 0 0 0 0 0 0 0 +8.337 6.098 -1.708 0 0 0 0 0 0 0 +8.315 6.102 -1.705 0 0 0 0 0 0 0 +8.305 6.135 -1.707 0 0 0 0 0 0 0 +8.292 6.166 -1.709 0 0 0 0 0 0 0 +8.265 6.186 -1.707 0 0 0 0 0 0 0 +8.24 6.208 -1.706 0 0 0 0 0 0 0 +8.23 6.241 -1.708 0 0 0 0 0 0 0 +8.206 6.264 -1.707 0 0 0 0 0 0 0 +8.196 6.277 -1.707 0 0 0 0 0 0 0 +8.184 6.308 -1.709 0 0 0 0 0 0 0 +8.166 6.335 -1.709 0 0 0 0 0 0 0 +8.149 6.363 -1.71 0 0 0 0 0 0 0 +8.134 6.392 -1.711 0 0 0 0 0 0 0 +8.101 6.408 -1.708 0 0 0 0 0 0 0 +8.092 6.442 -1.71 0 0 0 0 0 0 0 +8.083 6.456 -1.711 0 0 0 0 0 0 0 +8.06 6.479 -1.71 0 0 0 0 0 0 0 +8.046 6.509 -1.711 0 0 0 0 0 0 0 +6.743 5.486 -1.418 0 0 0 0 0 0 0 +6.708 5.492 -1.413 0 0 0 0 0 0 0 +6.697 5.518 -1.415 0 0 0 0 0 0 0 +6.673 5.534 -1.413 0 0 0 0 0 0 0 +6.672 5.551 -1.415 0 0 0 0 0 0 0 +6.67 5.584 -1.419 0 0 0 0 0 0 0 +7.941 6.698 -1.718 0 0 0 0 0 0 0 +7.915 6.719 -1.717 0 0 0 0 0 0 0 +7.903 6.751 -1.719 0 0 0 0 0 0 0 +7.895 6.788 -1.723 0 0 0 0 0 0 0 +7.861 6.801 -1.719 0 0 0 0 0 0 0 +7.872 6.833 -1.725 0 0 0 0 0 0 0 +7.852 6.859 -1.725 0 0 0 0 0 0 0 +7.832 6.885 -1.725 0 0 0 0 0 0 0 +7.809 6.908 -1.725 0 0 0 0 0 0 0 +7.795 6.939 -1.727 0 0 0 0 0 0 0 +7.781 6.971 -1.729 0 0 0 0 0 0 0 +7.767 7.002 -1.731 0 0 0 0 0 0 0 +7.76 7.018 -1.732 0 0 0 0 0 0 0 +7.738 7.043 -1.732 0 0 0 0 0 0 0 +7.725 7.075 -1.734 0 0 0 0 0 0 0 +7.71 7.106 -1.736 0 0 0 0 0 0 0 +7.693 7.135 -1.737 0 0 0 0 0 0 0 +7.675 7.164 -1.738 0 0 0 0 0 0 0 +7.652 7.188 -1.738 0 0 0 0 0 0 0 +7.652 7.211 -1.741 0 0 0 0 0 0 0 +7.628 7.233 -1.74 0 0 0 0 0 0 0 +7.616 7.267 -1.743 0 0 0 0 0 0 0 +7.593 7.291 -1.743 0 0 0 0 0 0 0 +7.578 7.323 -1.745 0 0 0 0 0 0 0 +7.557 7.348 -1.745 0 0 0 0 0 0 0 +7.539 7.377 -1.747 0 0 0 0 0 0 0 +7.536 7.397 -1.749 0 0 0 0 0 0 0 +7.513 7.421 -1.749 0 0 0 0 0 0 0 +7.498 7.453 -1.751 0 0 0 0 0 0 0 +7.476 7.478 -1.751 0 0 0 0 0 0 0 +7.455 7.504 -1.752 0 0 0 0 0 0 0 +7.427 7.523 -1.751 0 0 0 0 0 0 0 +7.417 7.56 -1.754 0 0 0 0 0 0 0 +7.412 7.579 -1.756 0 0 0 0 0 0 0 +7.395 7.609 -1.758 0 0 0 0 0 0 0 +7.381 7.643 -1.76 0 0 0 0 0 0 0 +7.353 7.661 -1.759 0 0 0 0 0 0 0 +7.342 7.699 -1.763 0 0 0 0 0 0 0 +7.329 7.733 -1.766 0 0 0 0 0 0 0 +7.306 7.758 -1.766 0 0 0 0 0 0 0 +7.291 7.791 -1.768 0 0 0 0 0 0 0 +7.288 7.812 -1.771 0 0 0 0 0 0 0 +7.267 7.839 -1.772 0 0 0 0 0 0 0 +7.248 7.868 -1.773 0 0 0 0 0 0 0 +7.238 7.907 -1.777 0 0 0 0 0 0 0 +7.214 7.931 -1.777 0 0 0 0 0 0 0 +7.205 7.971 -1.782 0 0 0 0 0 0 0 +7.188 8.003 -1.784 0 0 0 0 0 0 0 +7.167 8.005 -1.782 0 0 0 0 0 0 0 +7.15 8.036 -1.784 0 0 0 0 0 0 0 +7.131 8.066 -1.785 0 0 0 0 0 0 0 +7.111 8.094 -1.787 0 0 0 0 0 0 0 +7.089 8.121 -1.788 0 0 0 0 0 0 0 +7.077 8.158 -1.791 0 0 0 0 0 0 0 +7.074 8.181 -1.794 0 0 0 0 0 0 0 +7.047 8.202 -1.794 0 0 0 0 0 0 0 +7.03 8.235 -1.796 0 0 0 0 0 0 0 +7.013 8.267 -1.799 0 0 0 0 0 0 0 +6.992 8.295 -1.8 0 0 0 0 0 0 0 +6.967 8.319 -1.801 0 0 0 0 0 0 0 +6.945 8.345 -1.802 0 0 0 0 0 0 0 +6.929 8.353 -1.801 0 0 0 0 0 0 0 +6.906 8.378 -1.802 0 0 0 0 0 0 0 +6.884 8.406 -1.803 0 0 0 0 0 0 0 +6.855 8.424 -1.802 0 0 0 0 0 0 0 +6.831 8.449 -1.803 0 0 0 0 0 0 0 +6.81 8.476 -1.804 0 0 0 0 0 0 0 +6.797 8.514 -1.808 0 0 0 0 0 0 0 +6.77 8.536 -1.808 0 0 0 0 0 0 0 +6.762 8.554 -1.81 0 0 0 0 0 0 0 +6.746 8.589 -1.813 0 0 0 0 0 0 0 +6.719 8.61 -1.813 0 0 0 0 0 0 0 +6.697 8.638 -1.814 0 0 0 0 0 0 0 +6.671 8.66 -1.815 0 0 0 0 0 0 0 +6.651 8.691 -1.817 0 0 0 0 0 0 0 +6.615 8.701 -1.814 0 0 0 0 0 0 0 +6.604 8.714 -1.815 0 0 0 0 0 0 0 +6.571 8.727 -1.813 0 0 0 0 0 0 0 +6.547 8.752 -1.814 0 0 0 0 0 0 0 +6.53 8.787 -1.818 0 0 0 0 0 0 0 +6.492 8.793 -1.814 0 0 0 0 0 0 0 +6.472 8.825 -1.817 0 0 0 0 0 0 0 +6.447 8.848 -1.818 0 0 0 0 0 0 0 +6.424 8.875 -1.819 0 0 0 0 0 0 0 +6.408 8.883 -1.819 0 0 0 0 0 0 0 +6.387 8.913 -1.821 0 0 0 0 0 0 0 +6.357 8.93 -1.82 0 0 0 0 0 0 0 +6.337 8.961 -1.823 0 0 0 0 0 0 0 +6.315 8.99 -1.825 0 0 0 0 0 0 0 +6.283 9.004 -1.823 0 0 0 0 0 0 0 +6.276 9.025 -1.826 0 0 0 0 0 0 0 +6.256 9.056 -1.828 0 0 0 0 0 0 0 +6.238 9.092 -1.832 0 0 0 0 0 0 0 +6.244 9.162 -1.842 0 0 0 0 0 0 0 +6.244 9.224 -1.852 0 0 0 0 0 0 0 +6.209 9.235 -1.85 0 0 0 0 0 0 0 +6.183 9.258 -1.85 0 0 0 0 0 0 0 +6.149 9.271 -1.849 0 0 0 0 0 0 0 +6.135 9.281 -1.849 0 0 0 0 0 0 0 +6.092 9.28 -1.845 0 0 0 0 0 0 0 +6.064 9.301 -1.845 0 0 0 0 0 0 0 +6.031 9.313 -1.844 0 0 0 0 0 0 0 +6.012 9.349 -1.847 0 0 0 0 0 0 0 +5.98 9.363 -1.846 0 0 0 0 0 0 0 +5.948 9.378 -1.846 0 0 0 0 0 0 0 +5.931 9.384 -1.845 0 0 0 0 0 0 0 +5.901 9.401 -1.845 0 0 0 0 0 0 0 +5.87 9.418 -1.844 0 0 0 0 0 0 0 +5.837 9.431 -1.843 0 0 0 0 0 0 0 +5.804 9.443 -1.842 0 0 0 0 0 0 0 +5.775 9.462 -1.842 0 0 0 0 0 0 0 +5.736 9.465 -1.839 0 0 0 0 0 0 0 +5.733 9.495 -1.843 0 0 0 0 0 0 0 +5.704 9.514 -1.843 0 0 0 0 0 0 0 +5.668 9.522 -1.841 0 0 0 0 0 0 0 +5.644 9.548 -1.843 0 0 0 0 0 0 0 +5.613 9.564 -1.843 0 0 0 0 0 0 0 +5.579 9.575 -1.841 0 0 0 0 0 0 0 +5.545 9.587 -1.84 0 0 0 0 0 0 0 +5.529 9.594 -1.84 0 0 0 0 0 0 0 +5.498 9.61 -1.84 0 0 0 0 0 0 0 +5.462 9.617 -1.838 0 0 0 0 0 0 0 +5.43 9.631 -1.837 0 0 0 0 0 0 0 +5.393 9.636 -1.834 0 0 0 0 0 0 0 +5.362 9.651 -1.834 0 0 0 0 0 0 0 +5.333 9.671 -1.835 0 0 0 0 0 0 0 +5.316 9.676 -1.834 0 0 0 0 0 0 0 +5.286 9.693 -1.834 0 0 0 0 0 0 0 +5.251 9.7 -1.832 0 0 0 0 0 0 0 +5.217 9.71 -1.831 0 0 0 0 0 0 0 +5.183 9.721 -1.83 0 0 0 0 0 0 0 +5.154 9.739 -1.83 0 0 0 0 0 0 0 +5.124 9.757 -1.831 0 0 0 0 0 0 0 +5.091 9.769 -1.83 0 0 0 0 0 0 0 +5.071 9.769 -1.828 0 0 0 0 0 0 0 +5.041 9.785 -1.828 0 0 0 0 0 0 0 +5.005 9.79 -1.826 0 0 0 0 0 0 0 +4.979 9.816 -1.828 0 0 0 0 0 0 0 +4.945 9.825 -1.827 0 0 0 0 0 0 0 +4.908 9.828 -1.824 0 0 0 0 0 0 0 +4.88 9.848 -1.825 0 0 0 0 0 0 0 +4.855 9.838 -1.822 0 0 0 0 0 0 0 +4.825 9.855 -1.822 0 0 0 0 0 0 0 +4.79 9.862 -1.82 0 0 0 0 0 0 0 +4.757 9.873 -1.82 0 0 0 0 0 0 0 +4.727 9.89 -1.82 0 0 0 0 0 0 0 +4.697 9.906 -1.82 0 0 0 0 0 0 0 +4.657 9.901 -1.817 0 0 0 0 0 0 0 +4.634 9.894 -1.814 0 0 0 0 0 0 0 +4.607 9.916 -1.815 0 0 0 0 0 0 0 +4.571 9.922 -1.813 0 0 0 0 0 0 0 +4.535 9.925 -1.811 0 0 0 0 0 0 0 +4.507 9.946 -1.813 0 0 0 0 0 0 0 +4.475 9.959 -1.812 0 0 0 0 0 0 0 +4.441 9.967 -1.811 0 0 0 0 0 0 0 +4.419 9.958 -1.808 0 0 0 0 0 0 0 +4.39 9.977 -1.809 0 0 0 0 0 0 0 +4.358 9.991 -1.809 0 0 0 0 0 0 0 +4.315 9.978 -1.804 0 0 0 0 0 0 0 +4.285 9.995 -1.805 0 0 0 0 0 0 0 +4.253 10.006 -1.804 0 0 0 0 0 0 0 +4.222 10.02 -1.804 0 0 0 0 0 0 0 +4.21 10.035 -1.806 0 0 0 0 0 0 0 +4.171 10.03 -1.803 0 0 0 0 0 0 0 +4.147 10.062 -1.806 0 0 0 0 0 0 0 +4.111 10.065 -1.804 0 0 0 0 0 0 0 +4.078 10.075 -1.804 0 0 0 0 0 0 0 +4.038 10.066 -1.799 0 0 0 0 0 0 0 +4.011 10.089 -1.802 0 0 0 0 0 0 0 +3.978 10.1 -1.801 0 0 0 0 0 0 0 +3.964 10.11 -1.802 0 0 0 0 0 0 0 +3.931 10.12 -1.802 0 0 0 0 0 0 0 +3.896 10.123 -1.8 0 0 0 0 0 0 0 +3.864 10.136 -1.8 0 0 0 0 0 0 0 +3.84 10.168 -1.804 0 0 0 0 0 0 0 +3.802 10.163 -1.801 0 0 0 0 0 0 0 +3.767 10.168 -1.799 0 0 0 0 0 0 0 +3.755 10.185 -1.801 0 0 0 0 0 0 0 +3.718 10.184 -1.799 0 0 0 0 0 0 0 +3.69 10.205 -1.801 0 0 0 0 0 0 0 +3.66 10.224 -1.802 0 0 0 0 0 0 0 +3.626 10.229 -1.801 0 0 0 0 0 0 0 +3.6 10.257 -1.804 0 0 0 0 0 0 0 +3.567 10.267 -1.804 0 0 0 0 0 0 0 +3.545 10.256 -1.801 0 0 0 0 0 0 0 +3.516 10.276 -1.802 0 0 0 0 0 0 0 +3.484 10.289 -1.803 0 0 0 0 0 0 0 +3.44 10.262 -1.796 0 0 0 0 0 0 0 +3.41 10.283 -1.797 0 0 0 0 0 0 0 +3.366 10.258 -1.791 0 0 0 0 0 0 0 +3.328 10.249 -1.787 0 0 0 0 0 0 0 +3.304 10.228 -1.782 0 0 0 0 0 0 0 +3.263 10.212 -1.777 0 0 0 0 0 0 0 +3.223 10.198 -1.773 0 0 0 0 0 0 0 +3.183 10.18 -1.768 0 0 0 0 0 0 0 +3.142 10.162 -1.762 0 0 0 0 0 0 0 +3.11 10.172 -1.762 0 0 0 0 0 0 0 +3.074 10.166 -1.76 0 0 0 0 0 0 0 +3.04 10.172 -1.759 0 0 0 0 0 0 0 +3.021 10.166 -1.757 0 0 0 0 0 0 0 +2.997 10.203 -1.762 0 0 0 0 0 0 0 +2.981 10.266 -1.772 0 0 0 0 0 0 0 +2.946 10.267 -1.77 0 0 0 0 0 0 0 +2.91 10.263 -1.768 0 0 0 0 0 0 0 +2.882 10.288 -1.771 0 0 0 0 0 0 0 +2.683 9.687 -1.659 0 0 0 0 0 0 0 +2.623 9.528 -1.629 0 0 0 0 0 0 0 +2.59 9.525 -1.626 0 0 0 0 0 0 0 +2.559 9.529 -1.626 0 0 0 0 0 0 0 +2.526 9.524 -1.623 0 0 0 0 0 0 0 +2.492 9.516 -1.621 0 0 0 0 0 0 0 +2.458 9.509 -1.618 0 0 0 0 0 0 0 +2.426 9.507 -1.616 0 0 0 0 0 0 0 +1.748 6.869 -1.133 0 0 0 0 0 0 0 +1.73 6.886 -1.135 0 0 0 0 0 0 0 +1.71 6.901 -1.137 0 0 0 0 0 0 0 +1.876 7.683 -1.278 0 0 0 0 0 0 0 +2.263 9.421 -1.594 0 0 0 0 0 0 0 +2.259 9.54 -1.615 0 0 0 0 0 0 0 +2.227 9.539 -1.613 0 0 0 0 0 0 0 +2.213 9.544 -1.614 0 0 0 0 0 0 0 +2.183 9.553 -1.614 0 0 0 0 0 0 0 +2.152 9.554 -1.613 0 0 0 0 0 0 0 +2.123 9.565 -1.614 0 0 0 0 0 0 0 +2.093 9.571 -1.614 0 0 0 0 0 0 0 +2.063 9.582 -1.614 0 0 0 0 0 0 0 +2.033 9.586 -1.614 0 0 0 0 0 0 0 +2 9.581 -1.612 0 0 0 0 0 0 0 +1.988 9.596 -1.614 0 0 0 0 0 0 0 +1.957 9.598 -1.613 0 0 0 0 0 0 0 +1.929 9.614 -1.615 0 0 0 0 0 0 0 +1.896 9.608 -1.613 0 0 0 0 0 0 0 +1.868 9.626 -1.615 0 0 0 0 0 0 0 +0.62 3.212 -0.455 0 0 0 0 0 0 0 +0.615 3.213 -0.455 0 0 0 0 0 0 0 +1.84 9.641 -1.617 0 0 0 0 0 0 0 +0.608 3.231 -0.458 0 0 0 0 0 0 0 +0.61 3.302 -0.471 0 0 0 0 0 0 0 +0.586 3.229 -0.457 0 0 0 0 0 0 0 +0.589 3.304 -0.471 0 0 0 0 0 0 0 +0.576 3.29 -0.468 0 0 0 0 0 0 0 +0.561 3.263 -0.462 0 0 0 0 0 0 0 +0.563 3.309 -0.471 0 0 0 0 0 0 0 +0.527 3.149 -0.442 0 0 0 0 0 0 0 +0.516 3.143 -0.44 0 0 0 0 0 0 0 +0.505 3.137 -0.439 0 0 0 0 0 0 0 +0.468 2.961 -0.407 0 0 0 0 0 0 0 +0.455 2.935 -0.402 0 0 0 0 0 0 0 +0.446 2.935 -0.402 0 0 0 0 0 0 0 +0.441 2.935 -0.402 0 0 0 0 0 0 0 +0.432 2.939 -0.402 0 0 0 0 0 0 0 +0.422 2.936 -0.401 0 0 0 0 0 0 0 +0.414 2.945 -0.403 0 0 0 0 0 0 0 +0.404 2.943 -0.402 0 0 0 0 0 0 0 +0.395 2.944 -0.402 0 0 0 0 0 0 0 +0.386 2.949 -0.403 0 0 0 0 0 0 0 +0.381 2.944 -0.402 0 0 0 0 0 0 0 +0.372 2.951 -0.403 0 0 0 0 0 0 0 +0.363 2.948 -0.402 0 0 0 0 0 0 0 +0.354 2.953 -0.403 0 0 0 0 0 0 0 +0.346 2.964 -0.404 0 0 0 0 0 0 0 +0.336 2.963 -0.404 0 0 0 0 0 0 0 +0.326 2.958 -0.403 0 0 0 0 0 0 0 +0.317 2.959 -0.403 0 0 0 0 0 0 0 +0.313 2.964 -0.404 0 0 0 0 0 0 0 +0.303 2.965 -0.404 0 0 0 0 0 0 0 +0.294 2.966 -0.404 0 0 0 0 0 0 0 +0.285 2.968 -0.404 0 0 0 0 0 0 0 +0.275 2.963 -0.403 0 0 0 0 0 0 0 +0.266 2.97 -0.404 0 0 0 0 0 0 0 +0.257 2.973 -0.404 0 0 0 0 0 0 0 +0.252 2.971 -0.404 0 0 0 0 0 0 0 +0.243 2.972 -0.404 0 0 0 0 0 0 0 +0.233 2.971 -0.404 0 0 0 0 0 0 0 +0.225 2.983 -0.406 0 0 0 0 0 0 0 +0.226 3.145 -0.435 0 0 0 0 0 0 0 +0.218 3.181 -0.441 0 0 0 0 0 0 0 +0.213 3.265 -0.455 0 0 0 0 0 0 0 +0.212 3.348 -0.47 0 0 0 0 0 0 0 +0.199 3.291 -0.46 0 0 0 0 0 0 0 +0.192 3.365 -0.473 0 0 0 0 0 0 0 +0.178 3.298 -0.461 0 0 0 0 0 0 0 +0.169 3.316 -0.464 0 0 0 0 0 0 0 +0.157 3.287 -0.459 0 0 0 0 0 0 0 +0.147 3.31 -0.463 0 0 0 0 0 0 0 +0.137 3.308 -0.462 0 0 0 0 0 0 0 +0.132 3.314 -0.464 0 0 0 0 0 0 0 +0.121 3.305 -0.462 0 0 0 0 0 0 0 +0.295 10.459 -1.732 0 0 0 0 0 0 0 +0.262 10.476 -1.734 0 0 0 0 0 0 0 +0.229 10.488 -1.737 0 0 0 0 0 0 0 +0.197 10.509 -1.74 0 0 0 0 0 0 0 +0.164 10.517 -1.741 0 0 0 0 0 0 0 +0.147 10.523 -1.742 0 0 0 0 0 0 0 +0.114 10.528 -1.743 0 0 0 0 0 0 0 +0.081 10.544 -1.746 0 0 0 0 0 0 0 +0.048 10.569 -1.751 0 0 0 0 0 0 0 +0.011 3.638 -0.52 0 0 0 0 0 0 0 +0.015 10.613 -1.758 0 0 0 0 0 0 0 +-0.052 10.701 -1.774 0 0 0 0 0 0 0 +-0.071 10.892 -1.808 0 0 0 0 0 0 0 +-0.104 10.849 -1.8 0 0 0 0 0 0 0 +-0.136 10.701 -1.774 0 0 0 0 0 0 0 +-0.169 10.661 -1.767 0 0 0 0 0 0 0 +-0.203 10.66 -1.767 0 0 0 0 0 0 0 +-0.236 10.636 -1.763 0 0 0 0 0 0 0 +-0.269 10.625 -1.761 0 0 0 0 0 0 0 +-0.285 10.617 -1.76 0 0 0 0 0 0 0 +-0.319 10.622 -1.761 0 0 0 0 0 0 0 +-0.352 10.625 -1.761 0 0 0 0 0 0 0 +-0.385 10.616 -1.76 0 0 0 0 0 0 0 +-0.419 10.62 -1.761 0 0 0 0 0 0 0 +-0.452 10.615 -1.76 0 0 0 0 0 0 0 +-0.486 10.621 -1.762 0 0 0 0 0 0 0 +-0.503 10.623 -1.762 0 0 0 0 0 0 0 +-0.536 10.621 -1.762 0 0 0 0 0 0 0 +-0.569 10.617 -1.762 0 0 0 0 0 0 0 +-0.603 10.621 -1.763 0 0 0 0 0 0 0 +-0.637 10.629 -1.765 0 0 0 0 0 0 0 +-0.669 10.611 -1.762 0 0 0 0 0 0 0 +-0.702 10.601 -1.76 0 0 0 0 0 0 0 +-0.72 10.616 -1.763 0 0 0 0 0 0 0 +-0.753 10.614 -1.763 0 0 0 0 0 0 0 +-0.786 10.609 -1.763 0 0 0 0 0 0 0 +-0.82 10.613 -1.764 0 0 0 0 0 0 0 +-0.854 10.614 -1.765 0 0 0 0 0 0 0 +-0.887 10.611 -1.765 0 0 0 0 0 0 0 +-0.921 10.614 -1.766 0 0 0 0 0 0 0 +-0.953 10.6 -1.763 0 0 0 0 0 0 0 +-0.97 10.602 -1.764 0 0 0 0 0 0 0 +-1.005 10.613 -1.767 0 0 0 0 0 0 0 +-1.037 10.596 -1.764 0 0 0 0 0 0 0 +-1.071 10.596 -1.765 0 0 0 0 0 0 0 +-1.104 10.599 -1.766 0 0 0 0 0 0 0 +-1.136 10.584 -1.764 0 0 0 0 0 0 0 +-1.169 10.578 -1.763 0 0 0 0 0 0 0 +-1.188 10.594 -1.767 0 0 0 0 0 0 0 +-1.219 10.572 -1.763 0 0 0 0 0 0 0 +-1.253 10.572 -1.764 0 0 0 0 0 0 0 +-1.286 10.564 -1.763 0 0 0 0 0 0 0 +-1.317 10.549 -1.761 0 0 0 0 0 0 0 +-1.352 10.552 -1.763 0 0 0 0 0 0 0 +-1.385 10.55 -1.763 0 0 0 0 0 0 0 +-1.402 10.548 -1.763 0 0 0 0 0 0 0 +-1.44 10.584 -1.77 0 0 0 0 0 0 0 +-1.492 10.712 -1.794 0 0 0 0 0 0 0 +-1.525 10.704 -1.794 0 0 0 0 0 0 0 +-1.549 10.633 -1.782 0 0 0 0 0 0 0 +-1.588 10.663 -1.788 0 0 0 0 0 0 0 +-1.62 10.646 -1.786 0 0 0 0 0 0 0 +-1.63 10.601 -1.778 0 0 0 0 0 0 0 +-1.658 10.564 -1.773 0 0 0 0 0 0 0 +-1.687 10.534 -1.768 0 0 0 0 0 0 0 +-1.72 10.526 -1.768 0 0 0 0 0 0 0 +-1.754 10.525 -1.768 0 0 0 0 0 0 0 +-1.785 10.51 -1.767 0 0 0 0 0 0 0 +-1.819 10.512 -1.768 0 0 0 0 0 0 0 +-1.852 10.506 -1.768 0 0 0 0 0 0 0 +-1.87 10.507 -1.769 0 0 0 0 0 0 0 +-1.903 10.501 -1.769 0 0 0 0 0 0 0 +-1.939 10.514 -1.772 0 0 0 0 0 0 0 +-1.969 10.491 -1.769 0 0 0 0 0 0 0 +-2.003 10.492 -1.77 0 0 0 0 0 0 0 +-2.038 10.494 -1.772 0 0 0 0 0 0 0 +-2.07 10.483 -1.771 0 0 0 0 0 0 0 +-2.086 10.48 -1.771 0 0 0 0 0 0 0 +-2.121 10.483 -1.773 0 0 0 0 0 0 0 +-2.155 10.48 -1.774 0 0 0 0 0 0 0 +-2.188 10.473 -1.774 0 0 0 0 0 0 0 +-2.224 10.48 -1.776 0 0 0 0 0 0 0 +-2.253 10.456 -1.773 0 0 0 0 0 0 0 +-2.288 10.46 -1.775 0 0 0 0 0 0 0 +-2.308 10.47 -1.777 0 0 0 0 0 0 0 +-2.338 10.453 -1.776 0 0 0 0 0 0 0 +-2.373 10.451 -1.777 0 0 0 0 0 0 0 +-2.409 10.459 -1.78 0 0 0 0 0 0 0 +-2.439 10.438 -1.777 0 0 0 0 0 0 0 +-2.474 10.44 -1.779 0 0 0 0 0 0 0 +-2.508 10.438 -1.78 0 0 0 0 0 0 0 +-2.526 10.44 -1.781 0 0 0 0 0 0 0 +-2.558 10.43 -1.781 0 0 0 0 0 0 0 +-2.594 10.435 -1.783 0 0 0 0 0 0 0 +-2.625 10.419 -1.782 0 0 0 0 0 0 0 +-2.66 10.419 -1.783 0 0 0 0 0 0 0 +-2.692 10.41 -1.783 0 0 0 0 0 0 0 +-2.721 10.386 -1.78 0 0 0 0 0 0 0 +-2.757 10.389 -1.782 0 0 0 0 0 0 0 +-2.775 10.392 -1.784 0 0 0 0 0 0 0 +-2.805 10.374 -1.782 0 0 0 0 0 0 0 +-2.838 10.365 -1.782 0 0 0 0 0 0 0 +-2.877 10.379 -1.786 0 0 0 0 0 0 0 +-2.909 10.37 -1.786 0 0 0 0 0 0 0 +-2.941 10.359 -1.786 0 0 0 0 0 0 0 +-2.976 10.357 -1.787 0 0 0 0 0 0 0 +-2.993 10.356 -1.788 0 0 0 0 0 0 0 +-3.022 10.336 -1.786 0 0 0 0 0 0 0 +-3.074 10.39 -1.798 0 0 0 0 0 0 0 +-3.112 10.399 -1.801 0 0 0 0 0 0 0 +-3.141 10.376 -1.799 0 0 0 0 0 0 0 +-3.167 10.344 -1.795 0 0 0 0 0 0 0 +-3.079 9.95 -1.723 0 0 0 0 0 0 0 +-3.031 9.743 -1.686 0 0 0 0 0 0 0 +-2.826 8.99 -1.547 0 0 0 0 0 0 0 +-2.82 8.876 -1.528 0 0 0 0 0 0 0 +-2.834 8.824 -1.52 0 0 0 0 0 0 0 +-2.851 8.781 -1.513 0 0 0 0 0 0 0 +-2.861 8.718 -1.503 0 0 0 0 0 0 0 +-2.877 8.675 -1.497 0 0 0 0 0 0 0 +-2.879 8.637 -1.491 0 0 0 0 0 0 0 +-2.891 8.583 -1.482 0 0 0 0 0 0 0 +-2.903 8.531 -1.474 0 0 0 0 0 0 0 +-2.918 8.489 -1.468 0 0 0 0 0 0 0 +-2.929 8.433 -1.459 0 0 0 0 0 0 0 +-2.947 8.402 -1.455 0 0 0 0 0 0 0 +-2.96 8.355 -1.448 0 0 0 0 0 0 0 +-2.968 8.294 -1.438 0 0 0 0 0 0 0 +-2.971 8.262 -1.433 0 0 0 0 0 0 0 +-2.986 8.223 -1.427 0 0 0 0 0 0 0 +-2.996 8.171 -1.419 0 0 0 0 0 0 0 +-3.01 8.13 -1.413 0 0 0 0 0 0 0 +-3.029 8.104 -1.41 0 0 0 0 0 0 0 +-3.045 8.068 -1.405 0 0 0 0 0 0 0 +-3.061 8.035 -1.401 0 0 0 0 0 0 0 +-3.065 8.008 -1.397 0 0 0 0 0 0 0 +-3.075 7.96 -1.389 0 0 0 0 0 0 0 +-3.097 7.943 -1.388 0 0 0 0 0 0 0 +-3.116 7.917 -1.385 0 0 0 0 0 0 0 +-3.127 7.872 -1.378 0 0 0 0 0 0 0 +-3.143 7.84 -1.374 0 0 0 0 0 0 0 +-3.159 7.81 -1.37 0 0 0 0 0 0 0 +-3.159 7.776 -1.364 0 0 0 0 0 0 0 +-3.182 7.761 -1.363 0 0 0 0 0 0 0 +-3.191 7.716 -1.357 0 0 0 0 0 0 0 +-3.21 7.692 -1.354 0 0 0 0 0 0 0 +-3.225 7.662 -1.35 0 0 0 0 0 0 0 +-3.234 7.615 -1.343 0 0 0 0 0 0 0 +-3.251 7.591 -1.34 0 0 0 0 0 0 0 +-3.256 7.567 -1.337 0 0 0 0 0 0 0 +-3.269 7.534 -1.332 0 0 0 0 0 0 0 +-3.286 7.507 -1.329 0 0 0 0 0 0 0 +-3.299 7.473 -1.325 0 0 0 0 0 0 0 +-3.313 7.441 -1.32 0 0 0 0 0 0 0 +-3.326 7.409 -1.316 0 0 0 0 0 0 0 +-3.342 7.383 -1.313 0 0 0 0 0 0 0 +-3.35 7.338 -1.306 0 0 0 0 0 0 0 +-3.355 7.321 -1.304 0 0 0 0 0 0 0 +-3.37 7.292 -1.3 0 0 0 0 0 0 0 +-3.388 7.271 -1.298 0 0 0 0 0 0 0 +-3.402 7.242 -1.295 0 0 0 0 0 0 0 +-3.414 7.208 -1.29 0 0 0 0 0 0 0 +-3.438 7.201 -1.291 0 0 0 0 0 0 0 +-3.457 7.182 -1.289 0 0 0 0 0 0 0 +-3.463 7.166 -1.287 0 0 0 0 0 0 0 +-3.482 7.148 -1.286 0 0 0 0 0 0 0 +-3.492 7.112 -1.281 0 0 0 0 0 0 0 +-3.516 7.104 -1.282 0 0 0 0 0 0 0 +-3.545 7.107 -1.284 0 0 0 0 0 0 0 +-3.568 7.096 -1.284 0 0 0 0 0 0 0 +-3.598 7.101 -1.288 0 0 0 0 0 0 0 +-3.621 7.091 -1.288 0 0 0 0 0 0 0 +-3.638 7.096 -1.29 0 0 0 0 0 0 0 +-3.663 7.09 -1.291 0 0 0 0 0 0 0 +-3.691 7.09 -1.293 0 0 0 0 0 0 0 +-3.715 7.08 -1.294 0 0 0 0 0 0 0 +-3.74 7.074 -1.295 0 0 0 0 0 0 0 +-3.766 7.069 -1.296 0 0 0 0 0 0 0 +-3.787 7.056 -1.296 0 0 0 0 0 0 0 +-3.804 7.062 -1.298 0 0 0 0 0 0 0 +-3.836 7.067 -1.302 0 0 0 0 0 0 0 +-3.866 7.069 -1.305 0 0 0 0 0 0 0 +-3.894 7.067 -1.307 0 0 0 0 0 0 0 +-3.924 7.068 -1.31 0 0 0 0 0 0 0 +-3.944 7.053 -1.309 0 0 0 0 0 0 0 +-3.972 7.05 -1.311 0 0 0 0 0 0 0 +-3.994 7.063 -1.315 0 0 0 0 0 0 0 +-4.022 7.061 -1.317 0 0 0 0 0 0 0 +-4.058 7.072 -1.322 0 0 0 0 0 0 0 +-4.083 7.064 -1.323 0 0 0 0 0 0 0 +-4.11 7.06 -1.325 0 0 0 0 0 0 0 +-4.139 7.059 -1.327 0 0 0 0 0 0 0 +-4.177 7.073 -1.333 0 0 0 0 0 0 0 +-4.208 7.098 -1.339 0 0 0 0 0 0 0 +-4.245 7.11 -1.344 0 0 0 0 0 0 0 +-4.277 7.112 -1.348 0 0 0 0 0 0 0 +-4.312 7.121 -1.352 0 0 0 0 0 0 0 +-4.346 7.125 -1.356 0 0 0 0 0 0 0 +-4.373 7.118 -1.357 0 0 0 0 0 0 0 +-4.394 7.103 -1.357 0 0 0 0 0 0 0 +-4.427 7.106 -1.361 0 0 0 0 0 0 0 +-4.446 7.112 -1.363 0 0 0 0 0 0 0 +-4.48 7.117 -1.367 0 0 0 0 0 0 0 +-4.52 7.131 -1.373 0 0 0 0 0 0 0 +-4.556 7.136 -1.377 0 0 0 0 0 0 0 +-4.583 7.13 -1.379 0 0 0 0 0 0 0 +-4.634 7.159 -1.388 0 0 0 0 0 0 0 +-4.663 7.154 -1.39 0 0 0 0 0 0 0 +-4.695 7.179 -1.397 0 0 0 0 0 0 0 +-4.731 7.184 -1.401 0 0 0 0 0 0 0 +-4.778 7.206 -1.409 0 0 0 0 0 0 0 +-4.813 7.21 -1.413 0 0 0 0 0 0 0 +-4.86 7.231 -1.421 0 0 0 0 0 0 0 +-4.903 7.245 -1.427 0 0 0 0 0 0 0 +-5.713 8.378 -1.674 0 0 0 0 0 0 0 +-5.76 8.417 -1.685 0 0 0 0 0 0 0 +-5.802 8.422 -1.69 0 0 0 0 0 0 0 +-5.838 8.418 -1.693 0 0 0 0 0 0 0 +-5.868 8.405 -1.694 0 0 0 0 0 0 0 +-5.904 8.399 -1.697 0 0 0 0 0 0 0 +-5.936 8.388 -1.698 0 0 0 0 0 0 0 +-5.969 8.379 -1.701 0 0 0 0 0 0 0 +-5.997 8.391 -1.705 0 0 0 0 0 0 0 +-6.03 8.381 -1.707 0 0 0 0 0 0 0 +-6.068 8.378 -1.711 0 0 0 0 0 0 0 +-6.108 8.378 -1.715 0 0 0 0 0 0 0 +-6.128 8.35 -1.713 0 0 0 0 0 0 0 +-6.162 8.341 -1.715 0 0 0 0 0 0 0 +-6.206 8.346 -1.72 0 0 0 0 0 0 0 +-6.216 8.331 -1.719 0 0 0 0 0 0 0 +-6.249 8.321 -1.722 0 0 0 0 0 0 0 +-6.283 8.312 -1.724 0 0 0 0 0 0 0 +-6.305 8.286 -1.723 0 0 0 0 0 0 0 +-6.34 8.279 -1.725 0 0 0 0 0 0 0 +-6.372 8.267 -1.727 0 0 0 0 0 0 0 +-6.384 8.228 -1.723 0 0 0 0 0 0 0 +-6.428 8.231 -1.728 0 0 0 0 0 0 0 +-6.443 8.224 -1.729 0 0 0 0 0 0 0 +-6.463 8.196 -1.727 0 0 0 0 0 0 0 +-6.496 8.185 -1.729 0 0 0 0 0 0 0 +-6.526 8.171 -1.731 0 0 0 0 0 0 0 +-6.553 8.152 -1.731 0 0 0 0 0 0 0 +-6.588 8.142 -1.733 0 0 0 0 0 0 0 +-6.613 8.121 -1.733 0 0 0 0 0 0 0 +-6.627 8.112 -1.734 0 0 0 0 0 0 0 +-6.659 8.099 -1.736 0 0 0 0 0 0 0 +-6.688 8.082 -1.737 0 0 0 0 0 0 0 +-6.718 8.067 -1.738 0 0 0 0 0 0 0 +-6.748 8.051 -1.739 0 0 0 0 0 0 0 +-6.779 8.037 -1.741 0 0 0 0 0 0 0 +-6.807 8.019 -1.741 0 0 0 0 0 0 0 +-6.822 8.011 -1.742 0 0 0 0 0 0 0 +-6.854 7.997 -1.744 0 0 0 0 0 0 0 +-6.885 7.983 -1.746 0 0 0 0 0 0 0 +-6.915 7.967 -1.747 0 0 0 0 0 0 0 +-6.939 7.944 -1.747 0 0 0 0 0 0 0 +-6.965 7.924 -1.747 0 0 0 0 0 0 0 +-7.006 7.919 -1.751 0 0 0 0 0 0 0 +-7.025 7.916 -1.753 0 0 0 0 0 0 0 +-7.048 7.892 -1.753 0 0 0 0 0 0 0 +-7.08 7.877 -1.754 0 0 0 0 0 0 0 +-7.118 7.869 -1.758 0 0 0 0 0 0 0 +-7.149 7.854 -1.76 0 0 0 0 0 0 0 +-7.172 7.83 -1.759 0 0 0 0 0 0 0 +-7.198 7.809 -1.76 0 0 0 0 0 0 0 +-7.227 7.815 -1.764 0 0 0 0 0 0 0 +-7.263 7.805 -1.767 0 0 0 0 0 0 0 +-7.289 7.784 -1.767 0 0 0 0 0 0 0 +-7.32 7.768 -1.769 0 0 0 0 0 0 0 +-7.35 7.751 -1.77 0 0 0 0 0 0 0 +-7.387 7.741 -1.774 0 0 0 0 0 0 0 +-7.416 7.723 -1.775 0 0 0 0 0 0 0 +-7.45 7.71 -1.777 0 0 0 0 0 0 0 +-7.475 7.711 -1.781 0 0 0 0 0 0 0 +-7.514 7.702 -1.784 0 0 0 0 0 0 0 +-7.546 7.687 -1.787 0 0 0 0 0 0 0 +-7.579 7.672 -1.789 0 0 0 0 0 0 0 +-7.616 7.661 -1.792 0 0 0 0 0 0 0 +-7.634 7.631 -1.79 0 0 0 0 0 0 0 +-7.683 7.632 -1.797 0 0 0 0 0 0 0 +-7.698 7.623 -1.797 0 0 0 0 0 0 0 +-7.733 7.609 -1.8 0 0 0 0 0 0 0 +-7.764 7.592 -1.802 0 0 0 0 0 0 0 +-7.793 7.573 -1.803 0 0 0 0 0 0 0 +-7.833 7.564 -1.807 0 0 0 0 0 0 0 +-7.862 7.544 -1.809 0 0 0 0 0 0 0 +-7.89 7.524 -1.81 0 0 0 0 0 0 0 +-7.919 7.527 -1.814 0 0 0 0 0 0 0 +-7.937 7.497 -1.812 0 0 0 0 0 0 0 +-7.972 7.483 -1.815 0 0 0 0 0 0 0 +-8.016 7.477 -1.82 0 0 0 0 0 0 0 +-8.035 7.447 -1.819 0 0 0 0 0 0 0 +-8.08 7.442 -1.824 0 0 0 0 0 0 0 +-8.146 7.455 -1.834 0 0 0 0 0 0 0 +-8.214 7.494 -1.848 0 0 0 0 0 0 0 +-8.267 7.495 -1.855 0 0 0 0 0 0 0 +-8.321 7.496 -1.862 0 0 0 0 0 0 0 +-8.352 7.476 -1.864 0 0 0 0 0 0 0 +-8.364 7.44 -1.861 0 0 0 0 0 0 0 +-8.383 7.41 -1.86 0 0 0 0 0 0 0 +-8.415 7.391 -1.862 0 0 0 0 0 0 0 +-8.433 7.361 -1.861 0 0 0 0 0 0 0 +-8.443 7.346 -1.861 0 0 0 0 0 0 0 +-8.481 7.332 -1.864 0 0 0 0 0 0 0 +-8.5 7.302 -1.863 0 0 0 0 0 0 0 +-8.527 7.279 -1.864 0 0 0 0 0 0 0 +-8.556 7.257 -1.866 0 0 0 0 0 0 0 +-8.583 7.234 -1.867 0 0 0 0 0 0 0 +-8.608 7.208 -1.867 0 0 0 0 0 0 0 +-8.63 7.204 -1.87 0 0 0 0 0 0 0 +-8.661 7.184 -1.872 0 0 0 0 0 0 0 +-8.682 7.155 -1.871 0 0 0 0 0 0 0 +-8.696 7.121 -1.869 0 0 0 0 0 0 0 +-8.745 7.116 -1.876 0 0 0 0 0 0 0 +-8.765 7.086 -1.875 0 0 0 0 0 0 0 +-8.801 7.069 -1.878 0 0 0 0 0 0 0 +-8.81 7.054 -1.878 0 0 0 0 0 0 0 +-8.839 7.031 -1.879 0 0 0 0 0 0 0 +-8.854 6.999 -1.878 0 0 0 0 0 0 0 +-8.887 6.979 -1.88 0 0 0 0 0 0 0 +-8.915 6.956 -1.882 0 0 0 0 0 0 0 +-8.932 6.924 -1.881 0 0 0 0 0 0 0 +-8.971 6.91 -1.884 0 0 0 0 0 0 0 +-8.976 6.891 -1.883 0 0 0 0 0 0 0 +-8.99 6.856 -1.881 0 0 0 0 0 0 0 +-9.025 6.839 -1.884 0 0 0 0 0 0 0 +-9.045 6.809 -1.884 0 0 0 0 0 0 0 +-9.068 6.782 -1.884 0 0 0 0 0 0 0 +-9.089 6.754 -1.884 0 0 0 0 0 0 0 +-9.107 6.723 -1.884 0 0 0 0 0 0 0 +-9.123 6.712 -1.885 0 0 0 0 0 0 0 +-9.142 6.682 -1.884 0 0 0 0 0 0 0 +-9.162 6.652 -1.884 0 0 0 0 0 0 0 +-9.186 6.625 -1.885 0 0 0 0 0 0 0 +-9.197 6.59 -1.883 0 0 0 0 0 0 0 +-9.219 6.562 -1.883 0 0 0 0 0 0 0 +-9.252 6.542 -1.886 0 0 0 0 0 0 0 +-9.251 6.52 -1.883 0 0 0 0 0 0 0 +-9.291 6.504 -1.888 0 0 0 0 0 0 0 +-9.307 6.471 -1.886 0 0 0 0 0 0 0 +-9.325 6.441 -1.886 0 0 0 0 0 0 0 +-9.346 6.412 -1.886 0 0 0 0 0 0 0 +-9.367 6.383 -1.886 0 0 0 0 0 0 0 +-9.4 6.363 -1.889 0 0 0 0 0 0 0 +-9.417 6.331 -1.889 0 0 0 0 0 0 0 +-9.432 6.319 -1.89 0 0 0 0 0 0 0 +-9.44 6.282 -1.887 0 0 0 0 0 0 0 +-6.747 4.468 -1.311 0 0 0 0 0 0 0 +-6.738 4.432 -1.306 0 0 0 0 0 0 0 +-6.753 4.412 -1.306 0 0 0 0 0 0 0 +-6.755 4.383 -1.304 0 0 0 0 0 0 0 +-6.768 4.361 -1.304 0 0 0 0 0 0 0 +-6.779 4.353 -1.305 0 0 0 0 0 0 0 +-6.823 4.351 -1.311 0 0 0 0 0 0 0 +-9.597 6.065 -1.89 0 0 0 0 0 0 0 +-9.62 6.037 -1.89 0 0 0 0 0 0 0 +-9.657 6.018 -1.894 0 0 0 0 0 0 0 +-9.667 5.983 -1.892 0 0 0 0 0 0 0 +-9.685 5.951 -1.892 0 0 0 0 0 0 0 +-9.707 5.944 -1.895 0 0 0 0 0 0 0 +-9.718 5.909 -1.893 0 0 0 0 0 0 0 +-9.738 5.879 -1.893 0 0 0 0 0 0 0 +-9.782 5.864 -1.899 0 0 0 0 0 0 0 +-9.78 5.821 -1.895 0 0 0 0 0 0 0 +-9.806 5.795 -1.896 0 0 0 0 0 0 0 +-9.841 5.774 -1.9 0 0 0 0 0 0 0 +-9.837 5.751 -1.897 0 0 0 0 0 0 0 +-9.848 5.716 -1.896 0 0 0 0 0 0 0 +-9.885 5.696 -1.899 0 0 0 0 0 0 0 +-9.901 5.664 -1.899 0 0 0 0 0 0 0 +-9.927 5.638 -1.901 0 0 0 0 0 0 0 +-9.953 5.611 -1.903 0 0 0 0 0 0 0 +-9.966 5.577 -1.901 0 0 0 0 0 0 0 +-9.987 5.568 -1.904 0 0 0 0 0 0 0 +-10.002 5.536 -1.904 0 0 0 0 0 0 0 +-10.013 5.5 -1.902 0 0 0 0 0 0 0 +-10.044 5.476 -1.905 0 0 0 0 0 0 0 +-10.066 5.448 -1.906 0 0 0 0 0 0 0 +-10.08 5.414 -1.905 0 0 0 0 0 0 0 +-10.1 5.384 -1.906 0 0 0 0 0 0 0 +-10.133 5.361 -1.909 0 0 0 0 0 0 0 +-10.145 5.347 -1.91 0 0 0 0 0 0 0 +-10.158 5.313 -1.909 0 0 0 0 0 0 0 +-10.178 5.283 -1.91 0 0 0 0 0 0 0 +-10.205 5.256 -1.912 0 0 0 0 0 0 0 +-10.223 5.225 -1.912 0 0 0 0 0 0 0 +-7.315 3.689 -1.329 0 0 0 0 0 0 0 +-7.143 3.589 -1.293 0 0 0 0 0 0 0 +-7.361 3.669 -1.334 0 0 0 0 0 0 0 +-10.312 5.088 -1.915 0 0 0 0 0 0 0 +-10.316 5.049 -1.913 0 0 0 0 0 0 0 +-10.307 5.005 -1.908 0 0 0 0 0 0 0 +-10.328 4.975 -1.909 0 0 0 0 0 0 0 +-10.356 4.949 -1.912 0 0 0 0 0 0 0 +-10.378 4.939 -1.914 0 0 0 0 0 0 0 +-10.399 4.909 -1.915 0 0 0 0 0 0 0 +-10.444 4.89 -1.921 0 0 0 0 0 0 0 +-10.456 4.856 -1.921 0 0 0 0 0 0 0 +-10.466 4.82 -1.92 0 0 0 0 0 0 0 +-10.485 4.789 -1.92 0 0 0 0 0 0 0 +-10.498 4.755 -1.92 0 0 0 0 0 0 0 +-10.511 4.741 -1.921 0 0 0 0 0 0 0 +-10.52 4.706 -1.92 0 0 0 0 0 0 0 +-10.56 4.684 -1.925 0 0 0 0 0 0 0 +-10.549 4.64 -1.92 0 0 0 0 0 0 0 +-10.557 4.603 -1.919 0 0 0 0 0 0 0 +-10.575 4.572 -1.919 0 0 0 0 0 0 0 +-10.587 4.538 -1.919 0 0 0 0 0 0 0 +-10.605 4.526 -1.921 0 0 0 0 0 0 0 +-10.618 4.492 -1.921 0 0 0 0 0 0 0 +-10.635 4.46 -1.921 0 0 0 0 0 0 0 +-10.647 4.426 -1.921 0 0 0 0 0 0 0 +-10.654 4.389 -1.92 0 0 0 0 0 0 0 +-10.659 4.352 -1.918 0 0 0 0 0 0 0 +-10.678 4.321 -1.919 0 0 0 0 0 0 0 +-10.683 4.303 -1.919 0 0 0 0 0 0 0 +-10.702 4.272 -1.92 0 0 0 0 0 0 0 +-10.708 4.235 -1.918 0 0 0 0 0 0 0 +-10.713 4.199 -1.917 0 0 0 0 0 0 0 +-10.721 4.163 -1.916 0 0 0 0 0 0 0 +-10.732 4.128 -1.915 0 0 0 0 0 0 0 +-10.729 4.088 -1.912 0 0 0 0 0 0 0 +-10.739 4.073 -1.913 0 0 0 0 0 0 0 +-10.744 4.037 -1.912 0 0 0 0 0 0 0 +-10.762 4.005 -1.913 0 0 0 0 0 0 0 +-10.769 3.969 -1.912 0 0 0 0 0 0 0 +-10.754 3.925 -1.906 0 0 0 0 0 0 0 +-10.77 3.893 -1.907 0 0 0 0 0 0 0 +-10.767 3.853 -1.904 0 0 0 0 0 0 0 +-10.771 3.836 -1.904 0 0 0 0 0 0 0 +-10.782 3.801 -1.904 0 0 0 0 0 0 0 +-10.79 3.766 -1.903 0 0 0 0 0 0 0 +-10.788 3.728 -1.9 0 0 0 0 0 0 0 +-10.796 3.693 -1.9 0 0 0 0 0 0 0 +-10.808 3.659 -1.9 0 0 0 0 0 0 0 +-10.812 3.622 -1.898 0 0 0 0 0 0 0 +-10.81 3.603 -1.897 0 0 0 0 0 0 0 +-10.831 3.572 -1.899 0 0 0 0 0 0 0 +-10.825 3.532 -1.896 0 0 0 0 0 0 0 +-10.847 3.502 -1.898 0 0 0 0 0 0 0 +-10.862 3.469 -1.898 0 0 0 0 0 0 0 +-10.843 3.425 -1.893 0 0 0 0 0 0 0 +-10.869 3.396 -1.896 0 0 0 0 0 0 0 +-10.877 3.361 -1.895 0 0 0 0 0 0 0 +-10.866 3.339 -1.892 0 0 0 0 0 0 0 +-10.878 3.305 -1.892 0 0 0 0 0 0 0 +-10.89 3.272 -1.893 0 0 0 0 0 0 0 +-10.895 3.236 -1.892 0 0 0 0 0 0 0 +-10.909 3.203 -1.892 0 0 0 0 0 0 0 +-10.911 3.166 -1.891 0 0 0 0 0 0 0 +-10.911 3.129 -1.889 0 0 0 0 0 0 0 +-10.918 3.113 -1.89 0 0 0 0 0 0 0 +-10.934 3.08 -1.891 0 0 0 0 0 0 0 +-9.988 2.748 -1.713 0 0 0 0 0 0 0 +-9.817 2.669 -1.68 0 0 0 0 0 0 0 +-9.704 2.606 -1.658 0 0 0 0 0 0 0 +-9.548 2.532 -1.628 0 0 0 0 0 0 0 +-8.982 2.353 -1.523 0 0 0 0 0 0 0 +-8.647 2.252 -1.46 0 0 0 0 0 0 0 +-8.409 2.163 -1.416 0 0 0 0 0 0 0 +-8.141 2.067 -1.365 0 0 0 0 0 0 0 +-7.821 1.961 -1.306 0 0 0 0 0 0 0 +-7.66 1.896 -1.275 0 0 0 0 0 0 0 +-7.268 1.776 -1.203 0 0 0 0 0 0 0 +-7.195 1.734 -1.188 0 0 0 0 0 0 0 +-9.112 2.174 -1.537 0 0 0 0 0 0 0 +-9.108 2.143 -1.535 0 0 0 0 0 0 0 +-7.024 1.636 -1.155 0 0 0 0 0 0 0 +-7.008 1.609 -1.151 0 0 0 0 0 0 0 +-6.986 1.581 -1.146 0 0 0 0 0 0 0 +-6.976 1.555 -1.143 0 0 0 0 0 0 0 +-7.075 1.542 -1.16 0 0 0 0 0 0 0 +-7.055 1.515 -1.155 0 0 0 0 0 0 0 +-7.083 1.497 -1.16 0 0 0 0 0 0 0 +-7.07 1.472 -1.156 0 0 0 0 0 0 0 +-7.096 1.454 -1.16 0 0 0 0 0 0 0 +-7.105 1.432 -1.161 0 0 0 0 0 0 0 +-7.095 1.407 -1.159 0 0 0 0 0 0 0 +-7.059 1.389 -1.152 0 0 0 0 0 0 0 +-7.085 1.37 -1.155 0 0 0 0 0 0 0 +-7.106 1.351 -1.159 0 0 0 0 0 0 0 +-7.089 1.325 -1.155 0 0 0 0 0 0 0 +-7.126 1.309 -1.161 0 0 0 0 0 0 0 +-7.097 1.281 -1.155 0 0 0 0 0 0 0 +-7.026 1.245 -1.141 0 0 0 0 0 0 0 +-6.981 1.226 -1.133 0 0 0 0 0 0 0 +-6.934 1.173 -1.123 0 0 0 0 0 0 0 +-6.926 1.15 -1.121 0 0 0 0 0 0 0 +-6.761 1.101 -1.09 0 0 0 0 0 0 0 +-6.966 1.111 -1.127 0 0 0 0 0 0 0 +-6.972 1.09 -1.127 0 0 0 0 0 0 0 +-7.016 1.074 -1.134 0 0 0 0 0 0 0 +-7.014 1.062 -1.134 0 0 0 0 0 0 0 +-7.041 1.043 -1.138 0 0 0 0 0 0 0 +-7.024 1.019 -1.134 0 0 0 0 0 0 0 +-7.033 0.997 -1.136 0 0 0 0 0 0 0 +-7.009 0.972 -1.131 0 0 0 0 0 0 0 +-6.966 0.921 -1.122 0 0 0 0 0 0 0 +-7.009 0.915 -1.129 0 0 0 0 0 0 0 +-7.01 0.893 -1.129 0 0 0 0 0 0 0 +-7.001 0.87 -1.127 0 0 0 0 0 0 0 +-6.997 0.847 -1.126 0 0 0 0 0 0 0 +-6.99 0.824 -1.124 0 0 0 0 0 0 0 +-7.003 0.803 -1.126 0 0 0 0 0 0 0 +-6.995 0.78 -1.124 0 0 0 0 0 0 0 +-6.977 0.767 -1.12 0 0 0 0 0 0 0 +-6.823 0.729 -1.093 0 0 0 0 0 0 0 +-7.05 0.73 -1.133 0 0 0 0 0 0 0 +-7.094 0.712 -1.14 0 0 0 0 0 0 0 +-7.084 0.688 -1.138 0 0 0 0 0 0 0 +-7.127 0.67 -1.145 0 0 0 0 0 0 0 +-7.139 0.648 -1.147 0 0 0 0 0 0 0 +-7.189 0.641 -1.156 0 0 0 0 0 0 0 +-7.183 0.618 -1.154 0 0 0 0 0 0 0 +-7.154 0.593 -1.149 0 0 0 0 0 0 0 +-7.221 0.575 -1.16 0 0 0 0 0 0 0 +-7.207 0.552 -1.158 0 0 0 0 0 0 0 +-7.216 0.53 -1.159 0 0 0 0 0 0 0 +-7.206 0.506 -1.157 0 0 0 0 0 0 0 +-7.217 0.484 -1.159 0 0 0 0 0 0 0 +-7.215 0.461 -1.158 0 0 0 0 0 0 0 +-7.229 0.451 -1.16 0 0 0 0 0 0 0 +-7.247 0.429 -1.163 0 0 0 0 0 0 0 +-7.25 0.406 -1.163 0 0 0 0 0 0 0 +-7.312 0.386 -1.174 0 0 0 0 0 0 0 +-7.396 0.367 -1.189 0 0 0 0 0 0 0 +-7.507 0.349 -1.209 0 0 0 0 0 0 0 +-7.51 0.325 -1.209 0 0 0 0 0 0 0 +-7.575 0.292 -1.22 0 0 0 0 0 0 0 +-7.605 0.269 -1.225 0 0 0 0 0 0 0 +-7.604 0.245 -1.225 0 0 0 0 0 0 0 +-7.792 0.226 -1.258 0 0 0 0 0 0 0 +-7.589 0.197 -1.222 0 0 0 0 0 0 0 +-7.677 0.175 -1.238 0 0 0 0 0 0 0 +-7.685 0.163 -1.239 0 0 0 0 0 0 0 +-7.626 0.138 -1.228 0 0 0 0 0 0 0 +-11.967 0.127 -1.999 0 0 0 0 0 0 0 +-11.961 0.089 -1.998 0 0 0 0 0 0 0 +-11.972 0.051 -1.999 0 0 0 0 0 0 0 +-11.968 0.014 -1.999 0 0 0 0 0 0 0 +-11.97 -0.005 -1.999 0 0 0 0 0 0 0 +-11.974 -0.043 -2 0 0 0 0 0 0 0 +-11.979 -0.08 -2.001 0 0 0 0 0 0 0 +-11.979 -0.118 -2.001 0 0 0 0 0 0 0 +-11.982 -0.156 -2.001 0 0 0 0 0 0 0 +-11.974 -0.193 -2 0 0 0 0 0 0 0 +-11.979 -0.231 -2.001 0 0 0 0 0 0 0 +-11.989 -0.25 -2.003 0 0 0 0 0 0 0 +-11.984 -0.288 -2.002 0 0 0 0 0 0 0 +-11.985 -0.325 -2.002 0 0 0 0 0 0 0 +-11.988 -0.363 -2.003 0 0 0 0 0 0 0 +-11.991 -0.401 -2.004 0 0 0 0 0 0 0 +-11.979 -0.438 -2.002 0 0 0 0 0 0 0 +-11.984 -0.476 -2.003 0 0 0 0 0 0 0 +-11.986 -0.514 -2.004 0 0 0 0 0 0 0 +-11.983 -0.533 -2.004 0 0 0 0 0 0 0 +-12.003 -0.571 -2.007 0 0 0 0 0 0 0 +-11.982 -0.608 -2.004 0 0 0 0 0 0 0 +-11.994 -0.646 -2.006 0 0 0 0 0 0 0 +-11.99 -0.684 -2.006 0 0 0 0 0 0 0 +-12.001 -0.722 -2.008 0 0 0 0 0 0 0 +-12.003 -0.76 -2.009 0 0 0 0 0 0 0 +-12.005 -0.78 -2.01 0 0 0 0 0 0 0 +-12.003 -0.817 -2.01 0 0 0 0 0 0 0 +-12.008 -0.856 -2.011 0 0 0 0 0 0 0 +-12.001 -0.893 -2.011 0 0 0 0 0 0 0 +-12.003 -0.931 -2.011 0 0 0 0 0 0 0 +-12 -0.969 -2.011 0 0 0 0 0 0 0 +-12.01 -1.008 -2.014 0 0 0 0 0 0 0 +-12.02 -1.027 -2.016 0 0 0 0 0 0 0 +-12.009 -1.064 -2.014 0 0 0 0 0 0 0 +-12 -1.102 -2.013 0 0 0 0 0 0 0 +-12.012 -1.141 -2.016 0 0 0 0 0 0 0 +-11.991 -1.177 -2.013 0 0 0 0 0 0 0 +-12.011 -1.217 -2.017 0 0 0 0 0 0 0 +-12.005 -1.254 -2.017 0 0 0 0 0 0 0 +-12.007 -1.274 -2.018 0 0 0 0 0 0 0 +-12.001 -1.311 -2.017 0 0 0 0 0 0 0 +-12.012 -1.351 -2.02 0 0 0 0 0 0 0 +-12 -1.387 -2.019 0 0 0 0 0 0 0 +-12.005 -1.426 -2.02 0 0 0 0 0 0 0 +-12.001 -1.464 -2.02 0 0 0 0 0 0 0 +-11.992 -1.501 -2.02 0 0 0 0 0 0 0 +-12.005 -1.522 -2.022 0 0 0 0 0 0 0 +-11.999 -1.56 -2.022 0 0 0 0 0 0 0 +-11.98 -1.595 -2.02 0 0 0 0 0 0 0 +-11.996 -1.636 -2.023 0 0 0 0 0 0 0 +-11.981 -1.672 -2.022 0 0 0 0 0 0 0 +-11.976 -1.71 -2.022 0 0 0 0 0 0 0 +-11.971 -1.748 -2.022 0 0 0 0 0 0 0 +-11.966 -1.766 -2.021 0 0 0 0 0 0 0 +-11.955 -1.803 -2.02 0 0 0 0 0 0 0 +-11.962 -1.842 -2.023 0 0 0 0 0 0 0 +-11.949 -1.879 -2.021 0 0 0 0 0 0 0 +-11.953 -1.918 -2.023 0 0 0 0 0 0 0 +-11.952 -1.956 -2.024 0 0 0 0 0 0 0 +-11.942 -1.993 -2.023 0 0 0 0 0 0 0 +-11.937 -2.012 -2.023 0 0 0 0 0 0 0 +-11.935 -2.05 -2.024 0 0 0 0 0 0 0 +-11.93 -2.088 -2.024 0 0 0 0 0 0 0 +-11.935 -2.127 -2.026 0 0 0 0 0 0 0 +-11.925 -2.164 -2.026 0 0 0 0 0 0 0 +-11.929 -2.204 -2.028 0 0 0 0 0 0 0 +-11.905 -2.238 -2.024 0 0 0 0 0 0 0 +-11.927 -2.281 -2.03 0 0 0 0 0 0 0 +-11.914 -2.298 -2.028 0 0 0 0 0 0 0 +-11.914 -2.337 -2.029 0 0 0 0 0 0 0 +-11.903 -2.373 -2.029 0 0 0 0 0 0 0 +-11.905 -2.413 -2.03 0 0 0 0 0 0 0 +-11.893 -2.449 -2.03 0 0 0 0 0 0 0 +-11.897 -2.489 -2.032 0 0 0 0 0 0 0 +-11.893 -2.527 -2.033 0 0 0 0 0 0 0 +-11.891 -2.546 -2.033 0 0 0 0 0 0 0 +-11.885 -2.584 -2.033 0 0 0 0 0 0 0 +-11.886 -2.623 -2.035 0 0 0 0 0 0 0 +-11.878 -2.661 -2.035 0 0 0 0 0 0 0 +-11.868 -2.698 -2.035 0 0 0 0 0 0 0 +-11.85 -2.733 -2.033 0 0 0 0 0 0 0 +-11.852 -2.773 -2.035 0 0 0 0 0 0 0 +-11.846 -2.791 -2.035 0 0 0 0 0 0 0 +-11.837 -2.828 -2.035 0 0 0 0 0 0 0 +-11.851 -2.871 -2.039 0 0 0 0 0 0 0 +-11.829 -2.905 -2.036 0 0 0 0 0 0 0 +-11.824 -2.943 -2.037 0 0 0 0 0 0 0 +-11.818 -2.981 -2.038 0 0 0 0 0 0 0 +-11.814 -3.02 -2.039 0 0 0 0 0 0 0 +-11.791 -3.033 -2.035 0 0 0 0 0 0 0 +-11.775 -3.069 -2.034 0 0 0 0 0 0 0 +-11.785 -3.111 -2.038 0 0 0 0 0 0 0 +-11.763 -3.145 -2.036 0 0 0 0 0 0 0 +-11.761 -3.184 -2.037 0 0 0 0 0 0 0 +-11.741 -3.218 -2.035 0 0 0 0 0 0 0 +-11.741 -3.257 -2.037 0 0 0 0 0 0 0 +-11.726 -3.273 -2.035 0 0 0 0 0 0 0 +-11.733 -3.315 -2.038 0 0 0 0 0 0 0 +-11.709 -3.348 -2.036 0 0 0 0 0 0 0 +-11.708 -3.387 -2.038 0 0 0 0 0 0 0 +-11.686 -3.421 -2.036 0 0 0 0 0 0 0 +-11.685 -3.46 -2.037 0 0 0 0 0 0 0 +-11.679 -3.499 -2.038 0 0 0 0 0 0 0 +-11.672 -3.517 -2.038 0 0 0 0 0 0 0 +-11.651 -3.55 -2.036 0 0 0 0 0 0 0 +-11.644 -3.588 -2.037 0 0 0 0 0 0 0 +-11.616 -3.619 -2.034 0 0 0 0 0 0 0 +-11.616 -3.659 -2.036 0 0 0 0 0 0 0 +-11.608 -3.697 -2.037 0 0 0 0 0 0 0 +-11.589 -3.731 -2.035 0 0 0 0 0 0 0 +-11.564 -3.743 -2.032 0 0 0 0 0 0 0 +-11.56 -3.782 -2.033 0 0 0 0 0 0 0 +-11.55 -3.819 -2.034 0 0 0 0 0 0 0 +-11.534 -3.854 -2.033 0 0 0 0 0 0 0 +-11.51 -3.886 -2.031 0 0 0 0 0 0 0 +-11.509 -3.926 -2.033 0 0 0 0 0 0 0 +-11.48 -3.957 -2.03 0 0 0 0 0 0 0 +-11.483 -3.978 -2.031 0 0 0 0 0 0 0 +-11.465 -4.012 -2.03 0 0 0 0 0 0 0 +-11.447 -4.046 -2.029 0 0 0 0 0 0 0 +-11.427 -4.079 -2.028 0 0 0 0 0 0 0 +-11.423 -4.118 -2.03 0 0 0 0 0 0 0 +-11.399 -4.15 -2.028 0 0 0 0 0 0 0 +-11.39 -4.187 -2.028 0 0 0 0 0 0 0 +-11.374 -4.202 -2.027 0 0 0 0 0 0 0 +-11.366 -4.24 -2.028 0 0 0 0 0 0 0 +-11.349 -4.274 -2.027 0 0 0 0 0 0 0 +-11.319 -4.303 -2.024 0 0 0 0 0 0 0 +-11.298 -4.336 -2.022 0 0 0 0 0 0 0 +-11.283 -4.371 -2.022 0 0 0 0 0 0 0 +-11.276 -4.409 -2.023 0 0 0 0 0 0 0 +-11.242 -4.436 -2.02 0 0 0 0 0 0 0 +-11.23 -4.452 -2.019 0 0 0 0 0 0 0 +-11.197 -4.48 -2.015 0 0 0 0 0 0 0 +-11.18 -4.513 -2.014 0 0 0 0 0 0 0 +-11.167 -4.549 -2.015 0 0 0 0 0 0 0 +-11.156 -4.586 -2.015 0 0 0 0 0 0 0 +-11.124 -4.613 -2.012 0 0 0 0 0 0 0 +-11.102 -4.645 -2.011 0 0 0 0 0 0 0 +-11.102 -4.666 -2.012 0 0 0 0 0 0 0 +-11.078 -4.697 -2.01 0 0 0 0 0 0 0 +-11.047 -4.724 -2.007 0 0 0 0 0 0 0 +-11.02 -4.754 -2.005 0 0 0 0 0 0 0 +-11.001 -4.787 -2.004 0 0 0 0 0 0 0 +-10.993 -4.824 -2.005 0 0 0 0 0 0 0 +-10.974 -4.857 -2.005 0 0 0 0 0 0 0 +-10.945 -4.865 -2 0 0 0 0 0 0 0 +-10.926 -4.898 -2 0 0 0 0 0 0 0 +-10.912 -4.933 -2 0 0 0 0 0 0 0 +-10.892 -4.965 -1.999 0 0 0 0 0 0 0 +-10.879 -5 -2 0 0 0 0 0 0 0 +-10.84 -5.024 -1.995 0 0 0 0 0 0 0 +-10.834 -5.062 -1.997 0 0 0 0 0 0 0 +-10.817 -5.075 -1.995 0 0 0 0 0 0 0 +-10.79 -5.104 -1.993 0 0 0 0 0 0 0 +-10.765 -5.133 -1.991 0 0 0 0 0 0 0 +-10.758 -5.171 -1.993 0 0 0 0 0 0 0 +-10.738 -5.203 -1.992 0 0 0 0 0 0 0 +-10.707 -5.23 -1.99 0 0 0 0 0 0 0 +-10.673 -5.255 -1.986 0 0 0 0 0 0 0 +-10.665 -5.272 -1.986 0 0 0 0 0 0 0 +-10.652 -5.307 -1.987 0 0 0 0 0 0 0 +-10.63 -5.338 -1.986 0 0 0 0 0 0 0 +-10.631 -5.38 -1.989 0 0 0 0 0 0 0 +-10.6 -5.406 -1.986 0 0 0 0 0 0 0 +-10.574 -5.435 -1.985 0 0 0 0 0 0 0 +-10.558 -5.469 -1.985 0 0 0 0 0 0 0 +-10.546 -5.484 -1.984 0 0 0 0 0 0 0 +-10.529 -5.517 -1.984 0 0 0 0 0 0 0 +-10.527 -5.558 -1.987 0 0 0 0 0 0 0 +-10.482 -5.577 -1.982 0 0 0 0 0 0 0 +-10.461 -5.608 -1.981 0 0 0 0 0 0 0 +-10.44 -5.639 -1.98 0 0 0 0 0 0 0 +-10.413 -5.667 -1.979 0 0 0 0 0 0 0 +-10.387 -5.673 -1.975 0 0 0 0 0 0 0 +-10.368 -5.705 -1.975 0 0 0 0 0 0 0 +-10.343 -5.734 -1.973 0 0 0 0 0 0 0 +-10.327 -5.767 -1.974 0 0 0 0 0 0 0 +-10.296 -5.793 -1.971 0 0 0 0 0 0 0 +-10.278 -5.825 -1.971 0 0 0 0 0 0 0 +-10.253 -5.854 -1.97 0 0 0 0 0 0 0 +-10.234 -5.886 -1.97 0 0 0 0 0 0 0 +-10.222 -5.9 -1.969 0 0 0 0 0 0 0 +-10.205 -5.933 -1.97 0 0 0 0 0 0 0 +-10.173 -5.957 -1.967 0 0 0 0 0 0 0 +-10.151 -5.987 -1.966 0 0 0 0 0 0 0 +-10.118 -6.011 -1.963 0 0 0 0 0 0 0 +-10.104 -6.045 -1.964 0 0 0 0 0 0 0 +-10.067 -6.066 -1.961 0 0 0 0 0 0 0 +-10.066 -6.087 -1.962 0 0 0 0 0 0 0 +-10.035 -6.111 -1.96 0 0 0 0 0 0 0 +-10.019 -6.145 -1.961 0 0 0 0 0 0 0 +-9.988 -6.169 -1.958 0 0 0 0 0 0 0 +-9.972 -6.202 -1.959 0 0 0 0 0 0 0 +-9.947 -6.231 -1.958 0 0 0 0 0 0 0 +-9.921 -6.258 -1.956 0 0 0 0 0 0 0 +-9.899 -6.266 -1.954 0 0 0 0 0 0 0 +-9.885 -6.3 -1.955 0 0 0 0 0 0 0 +-9.855 -6.325 -1.953 0 0 0 0 0 0 0 +-9.83 -6.352 -1.952 0 0 0 0 0 0 0 +-9.803 -6.379 -1.95 0 0 0 0 0 0 0 +-9.78 -6.407 -1.95 0 0 0 0 0 0 0 +-9.76 -6.438 -1.95 0 0 0 0 0 0 0 +-9.735 -6.444 -1.947 0 0 0 0 0 0 0 +-9.7 -6.464 -1.943 0 0 0 0 0 0 0 +-9.673 -6.49 -1.942 0 0 0 0 0 0 0 +-9.639 -6.512 -1.939 0 0 0 0 0 0 0 +-9.608 -6.534 -1.937 0 0 0 0 0 0 0 +-9.569 -6.552 -1.933 0 0 0 0 0 0 0 +-9.555 -6.587 -1.934 0 0 0 0 0 0 0 +-9.553 -6.607 -1.936 0 0 0 0 0 0 0 +-9.524 -6.632 -1.934 0 0 0 0 0 0 0 +-9.506 -6.664 -1.935 0 0 0 0 0 0 0 +-9.468 -6.681 -1.931 0 0 0 0 0 0 0 +-9.435 -6.703 -1.929 0 0 0 0 0 0 0 +-9.409 -6.729 -1.928 0 0 0 0 0 0 0 +-9.371 -6.746 -1.924 0 0 0 0 0 0 0 +-9.349 -6.752 -1.921 0 0 0 0 0 0 0 +-9.315 -6.773 -1.919 0 0 0 0 0 0 0 +-9.279 -6.791 -1.915 0 0 0 0 0 0 0 +-9.242 -6.809 -1.912 0 0 0 0 0 0 0 +-9.229 -6.844 -1.914 0 0 0 0 0 0 0 +-9.19 -6.86 -1.91 0 0 0 0 0 0 0 +-9.152 -6.876 -1.906 0 0 0 0 0 0 0 +-9.138 -6.888 -1.906 0 0 0 0 0 0 0 +-9.114 -6.915 -1.905 0 0 0 0 0 0 0 +-9.087 -6.94 -1.904 0 0 0 0 0 0 0 +-9.065 -6.968 -1.904 0 0 0 0 0 0 0 +-9.028 -6.985 -1.9 0 0 0 0 0 0 0 +-8.99 -7.001 -1.897 0 0 0 0 0 0 0 +-8.965 -7.027 -1.896 0 0 0 0 0 0 0 +-8.943 -7.055 -1.896 0 0 0 0 0 0 0 +-8.918 -7.058 -1.893 0 0 0 0 0 0 0 +-8.908 -7.096 -1.896 0 0 0 0 0 0 0 +-8.851 -7.095 -1.888 0 0 0 0 0 0 0 +-8.847 -7.138 -1.892 0 0 0 0 0 0 0 +-8.82 -7.162 -1.891 0 0 0 0 0 0 0 +-8.77 -7.167 -1.885 0 0 0 0 0 0 0 +-8.749 -7.196 -1.885 0 0 0 0 0 0 0 +-8.736 -7.208 -1.885 0 0 0 0 0 0 0 +-8.704 -7.228 -1.883 0 0 0 0 0 0 0 +-8.681 -7.255 -1.883 0 0 0 0 0 0 0 +-8.646 -7.272 -1.88 0 0 0 0 0 0 0 +-8.61 -7.288 -1.877 0 0 0 0 0 0 0 +-8.589 -7.316 -1.877 0 0 0 0 0 0 0 +-8.548 -7.328 -1.873 0 0 0 0 0 0 0 +-8.526 -7.332 -1.87 0 0 0 0 0 0 0 +-8.501 -7.358 -1.87 0 0 0 0 0 0 0 +-8.466 -7.374 -1.867 0 0 0 0 0 0 0 +-8.431 -7.39 -1.864 0 0 0 0 0 0 0 +-8.405 -7.414 -1.864 0 0 0 0 0 0 0 +-8.37 -7.43 -1.861 0 0 0 0 0 0 0 +-8.351 -7.46 -1.862 0 0 0 0 0 0 0 +-8.332 -7.467 -1.86 0 0 0 0 0 0 0 +-8.291 -7.477 -1.856 0 0 0 0 0 0 0 +-8.279 -7.514 -1.859 0 0 0 0 0 0 0 +-8.245 -7.53 -1.856 0 0 0 0 0 0 0 +-8.226 -7.56 -1.857 0 0 0 0 0 0 0 +-8.187 -7.572 -1.854 0 0 0 0 0 0 0 +-8.169 -7.604 -1.855 0 0 0 0 0 0 0 +-8.15 -7.61 -1.854 0 0 0 0 0 0 0 +-8.135 -7.643 -1.856 0 0 0 0 0 0 0 +-8.087 -7.646 -1.85 0 0 0 0 0 0 0 +-8.077 -7.685 -1.853 0 0 0 0 0 0 0 +-8.048 -7.706 -1.852 0 0 0 0 0 0 0 +-8.033 -7.739 -1.854 0 0 0 0 0 0 0 +-8.007 -7.763 -1.854 0 0 0 0 0 0 0 +-7.986 -7.768 -1.852 0 0 0 0 0 0 0 +-7.964 -7.795 -1.853 0 0 0 0 0 0 0 +-7.943 -7.823 -1.853 0 0 0 0 0 0 0 +-7.913 -7.842 -1.852 0 0 0 0 0 0 0 +-7.896 -7.876 -1.854 0 0 0 0 0 0 0 +-7.874 -7.903 -1.855 0 0 0 0 0 0 0 +-7.849 -7.928 -1.855 0 0 0 0 0 0 0 +-7.834 -7.937 -1.854 0 0 0 0 0 0 0 +-7.811 -7.963 -1.854 0 0 0 0 0 0 0 +-7.783 -7.985 -1.854 0 0 0 0 0 0 0 +-7.762 -8.014 -1.855 0 0 0 0 0 0 0 +-7.734 -8.035 -1.854 0 0 0 0 0 0 0 +-7.715 -8.067 -1.856 0 0 0 0 0 0 0 +-7.693 -8.094 -1.856 0 0 0 0 0 0 0 +-7.674 -8.1 -1.855 0 0 0 0 0 0 0 +-7.652 -8.127 -1.856 0 0 0 0 0 0 0 +-7.631 -8.157 -1.857 0 0 0 0 0 0 0 +-7.596 -8.171 -1.855 0 0 0 0 0 0 0 +-7.577 -8.202 -1.856 0 0 0 0 0 0 0 +-7.557 -8.231 -1.858 0 0 0 0 0 0 0 +-7.536 -8.261 -1.859 0 0 0 0 0 0 0 +-7.518 -8.267 -1.858 0 0 0 0 0 0 0 +-7.501 -8.301 -1.86 0 0 0 0 0 0 0 +-7.473 -8.321 -1.86 0 0 0 0 0 0 0 +-7.45 -8.349 -1.861 0 0 0 0 0 0 0 +-7.421 -8.369 -1.86 0 0 0 0 0 0 0 +-7.396 -8.394 -1.86 0 0 0 0 0 0 0 +-7.373 -8.42 -1.861 0 0 0 0 0 0 0 +-7.358 -8.43 -1.861 0 0 0 0 0 0 0 +-7.335 -8.458 -1.862 0 0 0 0 0 0 0 +-7.323 -8.497 -1.865 0 0 0 0 0 0 0 +-7.314 -8.541 -1.87 0 0 0 0 0 0 0 +-7.282 -8.558 -1.869 0 0 0 0 0 0 0 +-7.24 -8.563 -1.865 0 0 0 0 0 0 0 +-7.213 -8.586 -1.865 0 0 0 0 0 0 0 +-7.193 -8.589 -1.863 0 0 0 0 0 0 0 +-7.155 -8.598 -1.86 0 0 0 0 0 0 0 +-7.11 -8.6 -1.855 0 0 0 0 0 0 0 +-7.084 -8.623 -1.855 0 0 0 0 0 0 0 +-7.061 -8.65 -1.856 0 0 0 0 0 0 0 +-7.03 -8.668 -1.855 0 0 0 0 0 0 0 +-7.002 -8.688 -1.855 0 0 0 0 0 0 0 +-6.972 -8.679 -1.85 0 0 0 0 0 0 0 +-6.948 -8.706 -1.852 0 0 0 0 0 0 0 +-6.908 -8.71 -1.848 0 0 0 0 0 0 0 +-6.89 -8.745 -1.85 0 0 0 0 0 0 0 +-6.844 -8.743 -1.845 0 0 0 0 0 0 0 +-6.817 -8.764 -1.845 0 0 0 0 0 0 0 +-6.798 -8.797 -1.848 0 0 0 0 0 0 0 +-6.769 -8.816 -1.847 0 0 0 0 0 0 0 +-6.757 -8.83 -1.848 0 0 0 0 0 0 0 +-6.725 -8.845 -1.847 0 0 0 0 0 0 0 +-6.696 -8.864 -1.846 0 0 0 0 0 0 0 +-6.665 -8.882 -1.846 0 0 0 0 0 0 0 +-6.638 -8.903 -1.846 0 0 0 0 0 0 0 +-6.606 -8.919 -1.845 0 0 0 0 0 0 0 +-6.578 -8.94 -1.845 0 0 0 0 0 0 0 +-6.564 -8.95 -1.845 0 0 0 0 0 0 0 +-6.535 -8.969 -1.844 0 0 0 0 0 0 0 +-6.504 -8.987 -1.843 0 0 0 0 0 0 0 +-6.48 -9.013 -1.845 0 0 0 0 0 0 0 +-6.45 -9.03 -1.844 0 0 0 0 0 0 0 +-6.419 -9.047 -1.843 0 0 0 0 0 0 0 +-6.393 -9.071 -1.844 0 0 0 0 0 0 0 +-6.378 -9.079 -1.844 0 0 0 0 0 0 0 +-6.352 -9.104 -1.845 0 0 0 0 0 0 0 +-6.317 -9.114 -1.843 0 0 0 0 0 0 0 +-6.289 -9.136 -1.843 0 0 0 0 0 0 0 +-6.27 -9.168 -1.846 0 0 0 0 0 0 0 +-6.23 -9.172 -1.842 0 0 0 0 0 0 0 +-6.209 -9.203 -1.845 0 0 0 0 0 0 0 +-6.191 -9.208 -1.844 0 0 0 0 0 0 0 +-6.156 -9.219 -1.842 0 0 0 0 0 0 0 +-6.134 -9.248 -1.844 0 0 0 0 0 0 0 +-6.107 -9.27 -1.845 0 0 0 0 0 0 0 +-6.072 -9.281 -1.843 0 0 0 0 0 0 0 +-6.04 -9.295 -1.842 0 0 0 0 0 0 0 +-6.018 -9.326 -1.845 0 0 0 0 0 0 0 +-5.999 -9.329 -1.843 0 0 0 0 0 0 0 +-5.986 -9.372 -1.848 0 0 0 0 0 0 0 +-5.967 -9.408 -1.852 0 0 0 0 0 0 0 +-5.929 -9.413 -1.849 0 0 0 0 0 0 0 +-5.903 -9.437 -1.85 0 0 0 0 0 0 0 +-5.899 -9.497 -1.859 0 0 0 0 0 0 0 +-5.846 -9.479 -1.851 0 0 0 0 0 0 0 +-5.804 -9.443 -1.842 0 0 0 0 0 0 0 +-5.746 -9.415 -1.832 0 0 0 0 0 0 0 +-5.699 -9.405 -1.826 0 0 0 0 0 0 0 +-5.665 -9.414 -1.825 0 0 0 0 0 0 0 +-5.631 -9.425 -1.823 0 0 0 0 0 0 0 +-5.597 -9.436 -1.822 0 0 0 0 0 0 0 +-5.573 -9.462 -1.824 0 0 0 0 0 0 0 +-5.558 -9.471 -1.824 0 0 0 0 0 0 0 +-5.522 -9.478 -1.821 0 0 0 0 0 0 0 +-5.496 -9.502 -1.823 0 0 0 0 0 0 0 +-5.46 -9.507 -1.82 0 0 0 0 0 0 0 +-5.428 -9.521 -1.82 0 0 0 0 0 0 0 +-5.393 -9.529 -1.818 0 0 0 0 0 0 0 +-5.354 -9.531 -1.815 0 0 0 0 0 0 0 +-5.331 -9.524 -1.812 0 0 0 0 0 0 0 +-5.299 -9.537 -1.811 0 0 0 0 0 0 0 +-5.274 -9.562 -1.813 0 0 0 0 0 0 0 +-5.227 -9.548 -1.806 0 0 0 0 0 0 0 +-5.211 -9.59 -1.812 0 0 0 0 0 0 0 +-5.178 -9.601 -1.811 0 0 0 0 0 0 0 +-5.145 -9.612 -1.81 0 0 0 0 0 0 0 +-5.144 -9.648 -1.815 0 0 0 0 0 0 0 +-5.11 -9.657 -1.814 0 0 0 0 0 0 0 +-5.072 -9.657 -1.811 0 0 0 0 0 0 0 +-5.048 -9.686 -1.813 0 0 0 0 0 0 0 +-5.023 -9.712 -1.815 0 0 0 0 0 0 0 +-4.991 -9.726 -1.815 0 0 0 0 0 0 0 +-4.96 -9.74 -1.814 0 0 0 0 0 0 0 +-4.936 -9.73 -1.811 0 0 0 0 0 0 0 +-4.901 -9.737 -1.809 0 0 0 0 0 0 0 +-4.868 -9.748 -1.809 0 0 0 0 0 0 0 +-4.836 -9.76 -1.808 0 0 0 0 0 0 0 +-4.806 -9.777 -1.808 0 0 0 0 0 0 0 +-4.769 -9.778 -1.805 0 0 0 0 0 0 0 +-4.742 -9.802 -1.807 0 0 0 0 0 0 0 +-4.726 -9.807 -1.807 0 0 0 0 0 0 0 +-4.692 -9.817 -1.806 0 0 0 0 0 0 0 +-4.663 -9.835 -1.806 0 0 0 0 0 0 0 +-4.63 -9.844 -1.805 0 0 0 0 0 0 0 +-4.596 -9.852 -1.804 0 0 0 0 0 0 0 +-4.57 -9.879 -1.806 0 0 0 0 0 0 0 +-4.54 -9.895 -1.807 0 0 0 0 0 0 0 +-4.529 -9.913 -1.809 0 0 0 0 0 0 0 +-4.498 -9.927 -1.809 0 0 0 0 0 0 0 +-4.476 -9.961 -1.813 0 0 0 0 0 0 0 +-4.455 -9.998 -1.817 0 0 0 0 0 0 0 +-4.435 -10.039 -1.823 0 0 0 0 0 0 0 +-4.414 -10.076 -1.827 0 0 0 0 0 0 0 +-4.388 -10.103 -1.83 0 0 0 0 0 0 0 +-4.368 -10.144 -1.835 0 0 0 0 0 0 0 +-4.348 -10.142 -1.833 0 0 0 0 0 0 0 +-4.317 -10.157 -1.833 0 0 0 0 0 0 0 +-4.302 -10.21 -1.841 0 0 0 0 0 0 0 +-4.242 -10.158 -1.828 0 0 0 0 0 0 0 +-4.193 -10.13 -1.82 0 0 0 0 0 0 0 +-4.158 -10.134 -1.819 0 0 0 0 0 0 0 +-4.125 -10.145 -1.818 0 0 0 0 0 0 0 +-4.107 -10.146 -1.817 0 0 0 0 0 0 0 +-4.073 -10.153 -1.816 0 0 0 0 0 0 0 +-4.037 -10.155 -1.814 0 0 0 0 0 0 0 +-4.003 -10.164 -1.813 0 0 0 0 0 0 0 +-3.971 -10.175 -1.813 0 0 0 0 0 0 0 +-3.939 -10.189 -1.813 0 0 0 0 0 0 0 +-3.925 -10.201 -1.814 0 0 0 0 0 0 0 +-3.894 -10.215 -1.815 0 0 0 0 0 0 0 +-3.858 -10.218 -1.813 0 0 0 0 0 0 0 +-3.826 -10.228 -1.813 0 0 0 0 0 0 0 +-3.787 -10.223 -1.81 0 0 0 0 0 0 0 +-3.757 -10.239 -1.81 0 0 0 0 0 0 0 +-3.724 -10.249 -1.81 0 0 0 0 0 0 0 +-3.688 -10.249 -1.808 0 0 0 0 0 0 0 +-3.672 -10.257 -1.808 0 0 0 0 0 0 0 +-3.644 -10.28 -1.81 0 0 0 0 0 0 0 +-3.606 -10.274 -1.807 0 0 0 0 0 0 0 +-3.574 -10.287 -1.807 0 0 0 0 0 0 0 +-3.543 -10.302 -1.808 0 0 0 0 0 0 0 +-3.507 -10.304 -1.806 0 0 0 0 0 0 0 +-3.474 -10.311 -1.806 0 0 0 0 0 0 0 +-3.458 -10.317 -1.806 0 0 0 0 0 0 0 +-3.424 -10.324 -1.805 0 0 0 0 0 0 0 +-3.391 -10.334 -1.805 0 0 0 0 0 0 0 +-3.36 -10.347 -1.805 0 0 0 0 0 0 0 +-3.328 -10.359 -1.806 0 0 0 0 0 0 0 +-3.292 -10.358 -1.804 0 0 0 0 0 0 0 +-3.261 -10.374 -1.805 0 0 0 0 0 0 0 +-3.244 -10.378 -1.804 0 0 0 0 0 0 0 +-3.212 -10.392 -1.805 0 0 0 0 0 0 0 +-3.18 -10.403 -1.805 0 0 0 0 0 0 0 +-3.146 -10.41 -1.805 0 0 0 0 0 0 0 +-3.113 -10.418 -1.804 0 0 0 0 0 0 0 +-3.08 -10.427 -1.804 0 0 0 0 0 0 0 +-3.053 -10.454 -1.807 0 0 0 0 0 0 0 +-3.042 -10.478 -1.811 0 0 0 0 0 0 0 +-3.01 -10.491 -1.812 0 0 0 0 0 0 0 +-2.976 -10.498 -1.811 0 0 0 0 0 0 0 +-2.959 -10.563 -1.821 0 0 0 0 0 0 0 +-2.901 -10.485 -1.805 0 0 0 0 0 0 0 +-2.909 -10.644 -1.833 0 0 0 0 0 0 0 +-2.839 -10.518 -1.808 0 0 0 0 0 0 0 +-2.828 -10.541 -1.812 0 0 0 0 0 0 0 +-2.784 -10.508 -1.804 0 0 0 0 0 0 0 +-2.739 -10.469 -1.795 0 0 0 0 0 0 0 +-2.703 -10.466 -1.793 0 0 0 0 0 0 0 +-2.668 -10.469 -1.792 0 0 0 0 0 0 0 +-2.632 -10.464 -1.79 0 0 0 0 0 0 0 +-2.602 -10.484 -1.792 0 0 0 0 0 0 0 +-2.585 -10.484 -1.791 0 0 0 0 0 0 0 +-2.542 -10.452 -1.784 0 0 0 0 0 0 0 +-2.511 -10.468 -1.785 0 0 0 0 0 0 0 +-2.479 -10.481 -1.786 0 0 0 0 0 0 0 +-2.442 -10.47 -1.783 0 0 0 0 0 0 0 +-2.409 -10.475 -1.782 0 0 0 0 0 0 0 +-2.375 -10.479 -1.782 0 0 0 0 0 0 0 +-2.355 -10.465 -1.778 0 0 0 0 0 0 0 +-2.323 -10.479 -1.78 0 0 0 0 0 0 0 +-2.288 -10.476 -1.778 0 0 0 0 0 0 0 +-2.254 -10.479 -1.777 0 0 0 0 0 0 0 +-2.222 -10.49 -1.778 0 0 0 0 0 0 0 +-2.187 -10.488 -1.776 0 0 0 0 0 0 0 +-2.152 -10.485 -1.774 0 0 0 0 0 0 0 +-2.135 -10.482 -1.773 0 0 0 0 0 0 0 +-2.099 -10.474 -1.77 0 0 0 0 0 0 0 +-2.065 -10.476 -1.77 0 0 0 0 0 0 0 +-2.032 -10.481 -1.769 0 0 0 0 0 0 0 +-1.997 -10.479 -1.768 0 0 0 0 0 0 0 +-1.963 -10.476 -1.766 0 0 0 0 0 0 0 +-1.93 -10.482 -1.766 0 0 0 0 0 0 0 +-1.912 -10.481 -1.766 0 0 0 0 0 0 0 +-1.88 -10.491 -1.766 0 0 0 0 0 0 0 +-1.847 -10.497 -1.766 0 0 0 0 0 0 0 +-1.815 -10.505 -1.767 0 0 0 0 0 0 0 +-1.78 -10.499 -1.765 0 0 0 0 0 0 0 +-1.747 -10.508 -1.765 0 0 0 0 0 0 0 +-1.715 -10.515 -1.766 0 0 0 0 0 0 0 +-1.699 -10.524 -1.767 0 0 0 0 0 0 0 +-1.667 -10.533 -1.767 0 0 0 0 0 0 0 +-1.635 -10.546 -1.769 0 0 0 0 0 0 0 +-1.6 -10.541 -1.767 0 0 0 0 0 0 0 +-1.567 -10.544 -1.767 0 0 0 0 0 0 0 +-1.536 -10.565 -1.769 0 0 0 0 0 0 0 +-1.503 -10.57 -1.769 0 0 0 0 0 0 0 +-1.486 -10.576 -1.77 0 0 0 0 0 0 0 +-1.452 -10.569 -1.768 0 0 0 0 0 0 0 +-1.421 -10.593 -1.771 0 0 0 0 0 0 0 +-1.387 -10.595 -1.771 0 0 0 0 0 0 0 +-1.353 -10.594 -1.77 0 0 0 0 0 0 0 +-1.322 -10.612 -1.773 0 0 0 0 0 0 0 +-1.287 -10.606 -1.771 0 0 0 0 0 0 0 +-1.27 -10.604 -1.77 0 0 0 0 0 0 0 +-1.239 -10.626 -1.773 0 0 0 0 0 0 0 +-1.204 -10.62 -1.771 0 0 0 0 0 0 0 +-1.173 -10.637 -1.774 0 0 0 0 0 0 0 +-1.139 -10.637 -1.773 0 0 0 0 0 0 0 +-1.107 -10.654 -1.776 0 0 0 0 0 0 0 +-1.073 -10.652 -1.775 0 0 0 0 0 0 0 +-1.056 -10.659 -1.776 0 0 0 0 0 0 0 +-1.024 -10.668 -1.777 0 0 0 0 0 0 0 +-0.99 -10.673 -1.777 0 0 0 0 0 0 0 +-0.957 -10.68 -1.778 0 0 0 0 0 0 0 +-0.924 -10.695 -1.78 0 0 0 0 0 0 0 +-0.891 -10.696 -1.78 0 0 0 0 0 0 0 +-0.858 -10.709 -1.781 0 0 0 0 0 0 0 +-0.841 -10.714 -1.782 0 0 0 0 0 0 0 +-0.809 -10.734 -1.785 0 0 0 0 0 0 0 +-0.775 -10.729 -1.784 0 0 0 0 0 0 0 +-0.742 -10.743 -1.786 0 0 0 0 0 0 0 +-0.708 -10.739 -1.785 0 0 0 0 0 0 0 +-0.675 -10.757 -1.788 0 0 0 0 0 0 0 +-0.641 -10.765 -1.789 0 0 0 0 0 0 0 +-0.608 -10.771 -1.789 0 0 0 0 0 0 0 +-0.591 -10.768 -1.789 0 0 0 0 0 0 0 +-0.557 -10.768 -1.788 0 0 0 0 0 0 0 +-0.523 -10.783 -1.791 0 0 0 0 0 0 0 +-0.489 -10.775 -1.789 0 0 0 0 0 0 0 +-0.456 -10.788 -1.791 0 0 0 0 0 0 0 +-0.421 -10.778 -1.789 0 0 0 0 0 0 0 +-0.388 -10.785 -1.79 0 0 0 0 0 0 0 +-0.371 -10.792 -1.791 0 0 0 0 0 0 0 +-0.337 -10.785 -1.79 0 0 0 0 0 0 0 +-0.303 -10.78 -1.789 0 0 0 0 0 0 0 +-0.269 -10.795 -1.791 0 0 0 0 0 0 0 +-0.235 -10.793 -1.791 0 0 0 0 0 0 0 +-0.201 -10.79 -1.79 0 0 0 0 0 0 0 +-0.185 -10.804 -1.792 0 0 0 0 0 0 0 +-0.151 -10.803 -1.792 0 0 0 0 0 0 0 +-0.117 -10.827 -1.796 0 0 0 0 0 0 0 +-0.083 -10.825 -1.796 0 0 0 0 0 0 0 +-0.049 -10.839 -1.798 0 0 0 0 0 0 0 +-0.015 -10.849 -1.8 0 0 0 0 0 0 0 +0.019 -10.851 -1.801 0 0 0 0 0 0 0 +0.053 -10.863 -1.803 0 0 0 0 0 0 0 +0.07 -10.863 -1.803 0 0 0 0 0 0 0 +0.105 -10.86 -1.802 0 0 0 0 0 0 0 +0.139 -10.868 -1.804 0 0 0 0 0 0 0 +0.173 -10.869 -1.804 0 0 0 0 0 0 0 +0.207 -10.879 -1.806 0 0 0 0 0 0 0 +0.241 -10.874 -1.805 0 0 0 0 0 0 0 +0.276 -10.889 -1.808 0 0 0 0 0 0 0 +0.293 -10.887 -1.807 0 0 0 0 0 0 0 +0.327 -10.89 -1.808 0 0 0 0 0 0 0 +0.362 -10.894 -1.809 0 0 0 0 0 0 0 +0.396 -10.895 -1.81 0 0 0 0 0 0 0 +0.431 -10.902 -1.811 0 0 0 0 0 0 0 +0.465 -10.9 -1.811 0 0 0 0 0 0 0 +0.499 -10.905 -1.812 0 0 0 0 0 0 0 +0.517 -10.912 -1.813 0 0 0 0 0 0 0 +0.552 -10.92 -1.815 0 0 0 0 0 0 0 +0.586 -10.912 -1.814 0 0 0 0 0 0 0 +0.621 -10.926 -1.817 0 0 0 0 0 0 0 +0.656 -10.936 -1.819 0 0 0 0 0 0 0 +0.69 -10.934 -1.819 0 0 0 0 0 0 0 +0.725 -10.931 -1.819 0 0 0 0 0 0 0 +0.743 -10.944 -1.821 0 0 0 0 0 0 0 +0.778 -10.957 -1.824 0 0 0 0 0 0 0 +0.813 -10.963 -1.826 0 0 0 0 0 0 0 +0.848 -10.958 -1.825 0 0 0 0 0 0 0 +0.883 -10.961 -1.826 0 0 0 0 0 0 0 +0.918 -10.968 -1.828 0 0 0 0 0 0 0 +0.952 -10.965 -1.828 0 0 0 0 0 0 0 +0.971 -10.978 -1.831 0 0 0 0 0 0 0 +1.006 -10.982 -1.832 0 0 0 0 0 0 0 +1.039 -10.963 -1.829 0 0 0 0 0 0 0 +1.074 -10.966 -1.83 0 0 0 0 0 0 0 +1.11 -10.976 -1.833 0 0 0 0 0 0 0 +1.143 -10.957 -1.83 0 0 0 0 0 0 0 +1.179 -10.969 -1.833 0 0 0 0 0 0 0 +1.196 -10.963 -1.832 0 0 0 0 0 0 0 +1.229 -10.954 -1.831 0 0 0 0 0 0 0 +1.264 -10.956 -1.832 0 0 0 0 0 0 0 +1.301 -10.971 -1.835 0 0 0 0 0 0 0 +1.334 -10.949 -1.832 0 0 0 0 0 0 0 +1.37 -10.963 -1.835 0 0 0 0 0 0 0 +1.405 -10.958 -1.835 0 0 0 0 0 0 0 +1.421 -10.952 -1.835 0 0 0 0 0 0 0 +1.458 -10.965 -1.838 0 0 0 0 0 0 0 +1.493 -10.967 -1.839 0 0 0 0 0 0 0 +1.527 -10.958 -1.838 0 0 0 0 0 0 0 +1.564 -10.971 -1.841 0 0 0 0 0 0 0 +1.6 -10.973 -1.843 0 0 0 0 0 0 0 +1.632 -10.957 -1.841 0 0 0 0 0 0 0 +1.652 -10.972 -1.844 0 0 0 0 0 0 0 +1.69 -10.986 -1.847 0 0 0 0 0 0 0 +1.722 -10.967 -1.845 0 0 0 0 0 0 0 +1.761 -10.991 -1.85 0 0 0 0 0 0 0 +1.798 -10.999 -1.853 0 0 0 0 0 0 0 +1.831 -10.985 -1.851 0 0 0 0 0 0 0 +1.868 -10.989 -1.853 0 0 0 0 0 0 0 +1.887 -11 -1.855 0 0 0 0 0 0 0 +1.92 -10.982 -1.853 0 0 0 0 0 0 0 +1.961 -11.017 -1.861 0 0 0 0 0 0 0 +1.239 -6.887 -1.117 0 0 0 0 0 0 0 +1.261 -6.887 -1.117 0 0 0 0 0 0 0 +1.287 -6.904 -1.121 0 0 0 0 0 0 0 +1.304 -6.879 -1.117 0 0 0 0 0 0 0 +1.308 -6.842 -1.111 0 0 0 0 0 0 0 +1.257 -6.366 -1.026 0 0 0 0 0 0 0 +1.276 -6.357 -1.025 0 0 0 0 0 0 0 +1.296 -6.353 -1.025 0 0 0 0 0 0 0 +1.315 -6.347 -1.025 0 0 0 0 0 0 0 +1.335 -6.34 -1.025 0 0 0 0 0 0 0 +1.345 -6.338 -1.025 0 0 0 0 0 0 0 +1.385 -6.428 -1.042 0 0 0 0 0 0 0 +1.41 -6.445 -1.046 0 0 0 0 0 0 0 +1.431 -6.444 -1.046 0 0 0 0 0 0 0 +1.448 -6.423 -1.043 0 0 0 0 0 0 0 +1.462 -6.393 -1.039 0 0 0 0 0 0 0 +1.483 -6.392 -1.039 0 0 0 0 0 0 0 +1.487 -6.363 -1.035 0 0 0 0 0 0 0 +1.504 -6.349 -1.033 0 0 0 0 0 0 0 +1.524 -6.342 -1.032 0 0 0 0 0 0 0 +1.567 -6.429 -1.049 0 0 0 0 0 0 0 +1.592 -6.447 -1.053 0 0 0 0 0 0 0 +1.622 -6.478 -1.06 0 0 0 0 0 0 0 +2.728 -10.684 -1.832 0 0 0 0 0 0 0 +2.743 -10.672 -1.83 0 0 0 0 0 0 0 +2.772 -10.646 -1.827 0 0 0 0 0 0 0 +2.801 -10.622 -1.824 0 0 0 0 0 0 0 +2.829 -10.592 -1.82 0 0 0 0 0 0 0 +2.858 -10.57 -1.818 0 0 0 0 0 0 0 +2.886 -10.54 -1.814 0 0 0 0 0 0 0 +2.916 -10.519 -1.812 0 0 0 0 0 0 0 +2.931 -10.511 -1.811 0 0 0 0 0 0 0 +2.962 -10.492 -1.81 0 0 0 0 0 0 0 +2.995 -10.483 -1.81 0 0 0 0 0 0 0 +3.022 -10.457 -1.806 0 0 0 0 0 0 0 +3.051 -10.434 -1.804 0 0 0 0 0 0 0 +3.079 -10.405 -1.801 0 0 0 0 0 0 0 +3.111 -10.394 -1.8 0 0 0 0 0 0 0 +3.128 -10.391 -1.801 0 0 0 0 0 0 0 +3.158 -10.373 -1.799 0 0 0 0 0 0 0 +3.187 -10.354 -1.797 0 0 0 0 0 0 0 +3.217 -10.334 -1.796 0 0 0 0 0 0 0 +3.247 -10.317 -1.794 0 0 0 0 0 0 0 +3.275 -10.293 -1.792 0 0 0 0 0 0 0 +3.308 -10.283 -1.792 0 0 0 0 0 0 0 +3.32 -10.267 -1.79 0 0 0 0 0 0 0 +3.348 -10.243 -1.787 0 0 0 0 0 0 0 +3.379 -10.229 -1.787 0 0 0 0 0 0 0 +3.404 -10.197 -1.783 0 0 0 0 0 0 0 +3.439 -10.196 -1.784 0 0 0 0 0 0 0 +3.468 -10.174 -1.782 0 0 0 0 0 0 0 +3.499 -10.163 -1.782 0 0 0 0 0 0 0 +3.512 -10.146 -1.78 0 0 0 0 0 0 0 +3.538 -10.12 -1.777 0 0 0 0 0 0 0 +3.569 -10.106 -1.777 0 0 0 0 0 0 0 +3.603 -10.102 -1.778 0 0 0 0 0 0 0 +3.635 -10.09 -1.778 0 0 0 0 0 0 0 +3.662 -10.066 -1.776 0 0 0 0 0 0 0 +3.695 -10.058 -1.776 0 0 0 0 0 0 0 +3.708 -10.045 -1.775 0 0 0 0 0 0 0 +3.734 -10.02 -1.773 0 0 0 0 0 0 0 +3.766 -10.009 -1.773 0 0 0 0 0 0 0 +3.795 -9.991 -1.771 0 0 0 0 0 0 0 +3.824 -9.974 -1.77 0 0 0 0 0 0 0 +3.852 -9.952 -1.769 0 0 0 0 0 0 0 +3.873 -9.915 -1.764 0 0 0 0 0 0 0 +3.887 -9.905 -1.763 0 0 0 0 0 0 0 +3.916 -9.887 -1.762 0 0 0 0 0 0 0 +3.944 -9.867 -1.761 0 0 0 0 0 0 0 +3.969 -9.839 -1.758 0 0 0 0 0 0 0 +4.001 -9.83 -1.758 0 0 0 0 0 0 0 +4.028 -9.808 -1.756 0 0 0 0 0 0 0 +4.054 -9.784 -1.754 0 0 0 0 0 0 0 +4.067 -9.771 -1.753 0 0 0 0 0 0 0 +4.097 -9.756 -1.753 0 0 0 0 0 0 0 +4.125 -9.738 -1.752 0 0 0 0 0 0 0 +4.15 -9.712 -1.749 0 0 0 0 0 0 0 +4.181 -9.699 -1.749 0 0 0 0 0 0 0 +4.203 -9.668 -1.746 0 0 0 0 0 0 0 +4.228 -9.642 -1.743 0 0 0 0 0 0 0 +4.246 -9.642 -1.745 0 0 0 0 0 0 0 +4.266 -9.606 -1.74 0 0 0 0 0 0 0 +4.292 -9.583 -1.738 0 0 0 0 0 0 0 +4.321 -9.568 -1.738 0 0 0 0 0 0 0 +4.343 -9.536 -1.734 0 0 0 0 0 0 0 +4.375 -9.526 -1.735 0 0 0 0 0 0 0 +4.4 -9.502 -1.733 0 0 0 0 0 0 0 +4.41 -9.484 -1.731 0 0 0 0 0 0 0 +4.437 -9.465 -1.73 0 0 0 0 0 0 0 +4.46 -9.437 -1.727 0 0 0 0 0 0 0 +4.486 -9.416 -1.726 0 0 0 0 0 0 0 +4.516 -9.401 -1.726 0 0 0 0 0 0 0 +4.544 -9.384 -1.725 0 0 0 0 0 0 0 +4.563 -9.348 -1.721 0 0 0 0 0 0 0 +4.582 -9.352 -1.723 0 0 0 0 0 0 0 +4.602 -9.318 -1.719 0 0 0 0 0 0 0 +4.621 -9.282 -1.715 0 0 0 0 0 0 0 +4.654 -9.275 -1.716 0 0 0 0 0 0 0 +4.684 -9.262 -1.717 0 0 0 0 0 0 0 +4.705 -9.231 -1.713 0 0 0 0 0 0 0 +4.727 -9.204 -1.711 0 0 0 0 0 0 0 +4.742 -9.197 -1.711 0 0 0 0 0 0 0 +4.762 -9.166 -1.708 0 0 0 0 0 0 0 +4.792 -9.153 -1.708 0 0 0 0 0 0 0 +4.818 -9.132 -1.707 0 0 0 0 0 0 0 +4.838 -9.102 -1.704 0 0 0 0 0 0 0 +4.865 -9.083 -1.703 0 0 0 0 0 0 0 +4.892 -9.066 -1.703 0 0 0 0 0 0 0 +4.895 -9.037 -1.699 0 0 0 0 0 0 0 +4.928 -9.029 -1.7 0 0 0 0 0 0 0 +4.954 -9.01 -1.7 0 0 0 0 0 0 0 +4.976 -8.982 -1.697 0 0 0 0 0 0 0 +4.998 -8.956 -1.695 0 0 0 0 0 0 0 +5.019 -8.928 -1.693 0 0 0 0 0 0 0 +5.043 -8.906 -1.691 0 0 0 0 0 0 0 +5.069 -8.887 -1.69 0 0 0 0 0 0 0 +5.081 -8.875 -1.69 0 0 0 0 0 0 0 +5.109 -8.859 -1.69 0 0 0 0 0 0 0 +5.135 -8.84 -1.689 0 0 0 0 0 0 0 +5.15 -8.801 -1.684 0 0 0 0 0 0 0 +5.175 -8.782 -1.684 0 0 0 0 0 0 0 +5.199 -8.759 -1.682 0 0 0 0 0 0 0 +5.224 -8.739 -1.682 0 0 0 0 0 0 0 +5.232 -8.721 -1.68 0 0 0 0 0 0 0 +5.252 -8.692 -1.677 0 0 0 0 0 0 0 +5.275 -8.669 -1.676 0 0 0 0 0 0 0 +5.305 -8.656 -1.676 0 0 0 0 0 0 0 +5.331 -8.637 -1.676 0 0 0 0 0 0 0 +5.351 -8.609 -1.674 0 0 0 0 0 0 0 +5.361 -8.596 -1.673 0 0 0 0 0 0 0 +5.38 -8.565 -1.67 0 0 0 0 0 0 0 +5.411 -8.555 -1.671 0 0 0 0 0 0 0 +5.429 -8.525 -1.668 0 0 0 0 0 0 0 +5.459 -8.513 -1.669 0 0 0 0 0 0 0 +5.484 -8.492 -1.669 0 0 0 0 0 0 0 +5.499 -8.458 -1.665 0 0 0 0 0 0 0 +5.513 -8.45 -1.665 0 0 0 0 0 0 0 +5.532 -8.421 -1.663 0 0 0 0 0 0 0 +5.562 -8.41 -1.664 0 0 0 0 0 0 0 +5.583 -8.384 -1.662 0 0 0 0 0 0 0 +5.609 -8.365 -1.662 0 0 0 0 0 0 0 +5.643 -8.359 -1.665 0 0 0 0 0 0 0 +5.668 -8.339 -1.664 0 0 0 0 0 0 0 +5.669 -8.313 -1.66 0 0 0 0 0 0 0 +5.697 -8.298 -1.661 0 0 0 0 0 0 0 +5.725 -8.283 -1.662 0 0 0 0 0 0 0 +5.743 -8.254 -1.659 0 0 0 0 0 0 0 +5.759 -8.221 -1.656 0 0 0 0 0 0 0 +5.782 -8.2 -1.655 0 0 0 0 0 0 0 +5.805 -8.177 -1.654 0 0 0 0 0 0 0 +5.832 -8.16 -1.655 0 0 0 0 0 0 0 +5.848 -8.156 -1.656 0 0 0 0 0 0 0 +5.867 -8.128 -1.654 0 0 0 0 0 0 0 +5.89 -8.106 -1.653 0 0 0 0 0 0 0 +5.909 -8.08 -1.651 0 0 0 0 0 0 0 +5.936 -8.063 -1.652 0 0 0 0 0 0 0 +5.959 -8.041 -1.651 0 0 0 0 0 0 0 +5.98 -8.018 -1.65 0 0 0 0 0 0 0 +5.989 -8.003 -1.649 0 0 0 0 0 0 0 +6.018 -7.989 -1.65 0 0 0 0 0 0 0 +6.042 -7.969 -1.65 0 0 0 0 0 0 0 +6.063 -7.945 -1.648 0 0 0 0 0 0 0 +6.085 -7.921 -1.647 0 0 0 0 0 0 0 +6.11 -7.902 -1.647 0 0 0 0 0 0 0 +6.132 -7.88 -1.647 0 0 0 0 0 0 0 +6.143 -7.869 -1.646 0 0 0 0 0 0 0 +6.17 -7.852 -1.647 0 0 0 0 0 0 0 +6.192 -7.83 -1.646 0 0 0 0 0 0 0 +6.213 -7.806 -1.645 0 0 0 0 0 0 0 +6.24 -7.789 -1.646 0 0 0 0 0 0 0 +6.26 -7.764 -1.645 0 0 0 0 0 0 0 +6.272 -7.754 -1.645 0 0 0 0 0 0 0 +6.288 -7.723 -1.642 0 0 0 0 0 0 0 +6.309 -7.7 -1.642 0 0 0 0 0 0 0 +6.33 -7.676 -1.64 0 0 0 0 0 0 0 +6.356 -7.659 -1.641 0 0 0 0 0 0 0 +6.379 -7.638 -1.641 0 0 0 0 0 0 0 +6.392 -7.604 -1.638 0 0 0 0 0 0 0 +6.408 -7.575 -1.636 0 0 0 0 0 0 0 +6.429 -7.575 -1.638 0 0 0 0 0 0 0 +6.45 -7.552 -1.637 0 0 0 0 0 0 0 +6.465 -7.521 -1.635 0 0 0 0 0 0 0 +6.491 -7.504 -1.636 0 0 0 0 0 0 0 +6.509 -7.478 -1.634 0 0 0 0 0 0 0 +6.536 -7.462 -1.635 0 0 0 0 0 0 0 +6.555 -7.435 -1.634 0 0 0 0 0 0 0 +6.569 -7.428 -1.635 0 0 0 0 0 0 0 +6.58 -7.394 -1.631 0 0 0 0 0 0 0 +6.6 -7.369 -1.63 0 0 0 0 0 0 0 +6.623 -7.348 -1.63 0 0 0 0 0 0 0 +6.647 -7.329 -1.631 0 0 0 0 0 0 0 +6.67 -7.308 -1.631 0 0 0 0 0 0 0 +6.69 -7.284 -1.63 0 0 0 0 0 0 0 +6.704 -7.276 -1.631 0 0 0 0 0 0 0 +6.73 -7.258 -1.631 0 0 0 0 0 0 0 +6.749 -7.232 -1.63 0 0 0 0 0 0 0 +6.763 -7.203 -1.628 0 0 0 0 0 0 0 +6.789 -7.184 -1.629 0 0 0 0 0 0 0 +6.812 -7.164 -1.629 0 0 0 0 0 0 0 +6.829 -7.137 -1.628 0 0 0 0 0 0 0 +6.839 -7.125 -1.628 0 0 0 0 0 0 0 +6.859 -7.101 -1.627 0 0 0 0 0 0 0 +6.867 -7.065 -1.623 0 0 0 0 0 0 0 +6.897 -7.05 -1.625 0 0 0 0 0 0 0 +6.923 -7.033 -1.626 0 0 0 0 0 0 0 +6.95 -7.017 -1.628 0 0 0 0 0 0 0 +6.963 -7.007 -1.628 0 0 0 0 0 0 0 +6.971 -6.971 -1.624 0 0 0 0 0 0 0 +7.002 -6.959 -1.627 0 0 0 0 0 0 0 +7.024 -6.937 -1.627 0 0 0 0 0 0 0 +7.028 -6.897 -1.622 0 0 0 0 0 0 0 +7.058 -6.883 -1.624 0 0 0 0 0 0 0 +7.082 -6.864 -1.625 0 0 0 0 0 0 0 +7.102 -6.84 -1.625 0 0 0 0 0 0 0 +7.12 -6.836 -1.626 0 0 0 0 0 0 0 +7.14 -6.812 -1.626 0 0 0 0 0 0 0 +7.156 -6.784 -1.625 0 0 0 0 0 0 0 +7.181 -6.766 -1.626 0 0 0 0 0 0 0 +7.2 -6.74 -1.625 0 0 0 0 0 0 0 +7.225 -6.722 -1.626 0 0 0 0 0 0 0 +7.243 -6.696 -1.625 0 0 0 0 0 0 0 +7.258 -6.689 -1.626 0 0 0 0 0 0 0 +7.284 -6.67 -1.628 0 0 0 0 0 0 0 +7.3 -6.643 -1.626 0 0 0 0 0 0 0 +7.328 -6.627 -1.628 0 0 0 0 0 0 0 +7.351 -6.605 -1.629 0 0 0 0 0 0 0 +7.365 -6.577 -1.627 0 0 0 0 0 0 0 +7.386 -6.554 -1.627 0 0 0 0 0 0 0 +7.401 -6.546 -1.628 0 0 0 0 0 0 0 +7.418 -6.52 -1.628 0 0 0 0 0 0 0 +7.445 -6.502 -1.629 0 0 0 0 0 0 0 +7.468 -6.481 -1.63 0 0 0 0 0 0 0 +7.497 -6.465 -1.632 0 0 0 0 0 0 0 +7.513 -6.438 -1.631 0 0 0 0 0 0 0 +7.532 -6.413 -1.63 0 0 0 0 0 0 0 +7.545 -6.404 -1.631 0 0 0 0 0 0 0 +7.556 -6.372 -1.629 0 0 0 0 0 0 0 +7.579 -6.351 -1.63 0 0 0 0 0 0 0 +7.608 -6.335 -1.632 0 0 0 0 0 0 0 +7.619 -6.303 -1.63 0 0 0 0 0 0 0 +7.643 -6.283 -1.631 0 0 0 0 0 0 0 +7.661 -6.258 -1.63 0 0 0 0 0 0 0 +7.663 -6.239 -1.629 0 0 0 0 0 0 0 +7.681 -6.214 -1.628 0 0 0 0 0 0 0 +7.707 -6.195 -1.63 0 0 0 0 0 0 0 +7.728 -6.172 -1.63 0 0 0 0 0 0 0 +7.741 -6.143 -1.629 0 0 0 0 0 0 0 +7.768 -6.124 -1.63 0 0 0 0 0 0 0 +7.781 -6.095 -1.629 0 0 0 0 0 0 0 +7.789 -6.082 -1.629 0 0 0 0 0 0 0 +7.813 -6.061 -1.63 0 0 0 0 0 0 0 +7.834 -6.037 -1.63 0 0 0 0 0 0 0 +7.863 -6.021 -1.632 0 0 0 0 0 0 0 +7.876 -5.992 -1.631 0 0 0 0 0 0 0 +7.892 -5.964 -1.63 0 0 0 0 0 0 0 +7.915 -5.943 -1.631 0 0 0 0 0 0 0 +7.931 -5.935 -1.633 0 0 0 0 0 0 0 +7.946 -5.908 -1.632 0 0 0 0 0 0 0 +7.968 -5.886 -1.633 0 0 0 0 0 0 0 +7.978 -5.855 -1.631 0 0 0 0 0 0 0 +7.995 -5.828 -1.631 0 0 0 0 0 0 0 +8.009 -5.8 -1.63 0 0 0 0 0 0 0 +8.035 -5.78 -1.631 0 0 0 0 0 0 0 +8.034 -5.761 -1.629 0 0 0 0 0 0 0 +8.057 -5.739 -1.63 0 0 0 0 0 0 0 +8.082 -5.718 -1.632 0 0 0 0 0 0 0 +8.098 -5.692 -1.631 0 0 0 0 0 0 0 +8.124 -5.672 -1.633 0 0 0 0 0 0 0 +8.138 -5.644 -1.632 0 0 0 0 0 0 0 +8.163 -5.623 -1.634 0 0 0 0 0 0 0 +8.166 -5.607 -1.633 0 0 0 0 0 0 0 +8.179 -5.578 -1.632 0 0 0 0 0 0 0 +8.192 -5.549 -1.631 0 0 0 0 0 0 0 +8.209 -5.523 -1.631 0 0 0 0 0 0 0 +8.228 -5.498 -1.631 0 0 0 0 0 0 0 +8.232 -5.464 -1.628 0 0 0 0 0 0 0 +8.258 -5.443 -1.63 0 0 0 0 0 0 0 +8.264 -5.429 -1.63 0 0 0 0 0 0 0 +8.273 -5.398 -1.628 0 0 0 0 0 0 0 +8.293 -5.374 -1.629 0 0 0 0 0 0 0 +8.314 -5.35 -1.629 0 0 0 0 0 0 0 +8.329 -5.323 -1.629 0 0 0 0 0 0 0 +8.342 -5.294 -1.628 0 0 0 0 0 0 0 +8.355 -5.266 -1.628 0 0 0 0 0 0 0 +8.365 -5.254 -1.628 0 0 0 0 0 0 0 +8.375 -5.224 -1.626 0 0 0 0 0 0 0 +8.401 -5.203 -1.629 0 0 0 0 0 0 0 +8.411 -5.173 -1.627 0 0 0 0 0 0 0 +8.42 -5.142 -1.626 0 0 0 0 0 0 0 +8.435 -5.115 -1.625 0 0 0 0 0 0 0 +8.442 -5.083 -1.624 0 0 0 0 0 0 0 +8.457 -5.074 -1.625 0 0 0 0 0 0 0 +8.463 -5.041 -1.623 0 0 0 0 0 0 0 +8.484 -5.018 -1.624 0 0 0 0 0 0 0 +8.505 -4.994 -1.625 0 0 0 0 0 0 0 +8.517 -4.965 -1.624 0 0 0 0 0 0 0 +8.529 -4.937 -1.624 0 0 0 0 0 0 0 +8.55 -4.913 -1.625 0 0 0 0 0 0 0 +8.556 -4.898 -1.624 0 0 0 0 0 0 0 +8.573 -4.872 -1.625 0 0 0 0 0 0 0 +8.588 -4.845 -1.625 0 0 0 0 0 0 0 +8.613 -4.824 -1.627 0 0 0 0 0 0 0 +8.634 -4.8 -1.628 0 0 0 0 0 0 0 +8.645 -4.771 -1.627 0 0 0 0 0 0 0 +8.66 -4.744 -1.627 0 0 0 0 0 0 0 +8.633 -4.711 -1.62 0 0 0 0 0 0 0 +8.603 -4.66 -1.611 0 0 0 0 0 0 0 +8.598 -4.623 -1.607 0 0 0 0 0 0 0 +8.628 -4.604 -1.61 0 0 0 0 0 0 0 +8.707 -4.611 -1.623 0 0 0 0 0 0 0 +8.701 -4.572 -1.619 0 0 0 0 0 0 0 +8.701 -4.538 -1.616 0 0 0 0 0 0 0 +8.682 -4.511 -1.611 0 0 0 0 0 0 0 +8.703 -4.487 -1.613 0 0 0 0 0 0 0 +8.726 -4.464 -1.614 0 0 0 0 0 0 0 +8.703 -4.418 -1.607 0 0 0 0 0 0 0 +8.763 -4.413 -1.616 0 0 0 0 0 0 0 +8.801 -4.398 -1.621 0 0 0 0 0 0 0 +8.841 -4.384 -1.626 0 0 0 0 0 0 0 +8.847 -4.369 -1.626 0 0 0 0 0 0 0 +8.867 -4.344 -1.627 0 0 0 0 0 0 0 +8.884 -4.318 -1.628 0 0 0 0 0 0 0 +8.9 -4.291 -1.628 0 0 0 0 0 0 0 +8.904 -4.259 -1.626 0 0 0 0 0 0 0 +8.927 -4.235 -1.628 0 0 0 0 0 0 0 +8.936 -4.205 -1.628 0 0 0 0 0 0 0 +8.945 -4.192 -1.628 0 0 0 0 0 0 0 +8.952 -4.162 -1.627 0 0 0 0 0 0 0 +8.969 -4.135 -1.628 0 0 0 0 0 0 0 +8.982 -4.107 -1.628 0 0 0 0 0 0 0 +8.991 -4.077 -1.627 0 0 0 0 0 0 0 +9.011 -4.052 -1.628 0 0 0 0 0 0 0 +9.017 -4.021 -1.627 0 0 0 0 0 0 0 +9.021 -4.006 -1.626 0 0 0 0 0 0 0 +9.045 -3.982 -1.629 0 0 0 0 0 0 0 +9.059 -3.954 -1.629 0 0 0 0 0 0 0 +9.071 -3.926 -1.629 0 0 0 0 0 0 0 +9.08 -3.896 -1.628 0 0 0 0 0 0 0 +9.092 -3.867 -1.628 0 0 0 0 0 0 0 +9.097 -3.836 -1.627 0 0 0 0 0 0 0 +9.112 -3.825 -1.629 0 0 0 0 0 0 0 +9.124 -3.796 -1.629 0 0 0 0 0 0 0 +9.129 -3.765 -1.627 0 0 0 0 0 0 0 +9.142 -3.737 -1.628 0 0 0 0 0 0 0 +9.161 -3.711 -1.629 0 0 0 0 0 0 0 +9.164 -3.679 -1.627 0 0 0 0 0 0 0 +9.177 -3.65 -1.628 0 0 0 0 0 0 0 +9.192 -3.623 -1.628 0 0 0 0 0 0 0 +9.209 -3.613 -1.63 0 0 0 0 0 0 0 +9.224 -3.585 -1.631 0 0 0 0 0 0 0 +9.235 -3.556 -1.631 0 0 0 0 0 0 0 +9.253 -3.53 -1.632 0 0 0 0 0 0 0 +9.27 -3.503 -1.633 0 0 0 0 0 0 0 +9.283 -3.475 -1.634 0 0 0 0 0 0 0 +9.283 -3.441 -1.632 0 0 0 0 0 0 0 +9.299 -3.431 -1.634 0 0 0 0 0 0 0 +9.31 -3.402 -1.634 0 0 0 0 0 0 0 +9.322 -3.373 -1.634 0 0 0 0 0 0 0 +9.338 -3.346 -1.635 0 0 0 0 0 0 0 +9.345 -3.315 -1.635 0 0 0 0 0 0 0 +9.35 -3.284 -1.633 0 0 0 0 0 0 0 +9.363 -3.272 -1.635 0 0 0 0 0 0 0 +9.373 -3.242 -1.635 0 0 0 0 0 0 0 +9.377 -3.211 -1.634 0 0 0 0 0 0 0 +9.395 -3.184 -1.635 0 0 0 0 0 0 0 +9.414 -3.157 -1.637 0 0 0 0 0 0 0 +9.42 -3.127 -1.636 0 0 0 0 0 0 0 +9.419 -3.093 -1.634 0 0 0 0 0 0 0 +9.432 -3.065 -1.635 0 0 0 0 0 0 0 +9.446 -3.053 -1.637 0 0 0 0 0 0 0 +9.456 -3.023 -1.637 0 0 0 0 0 0 0 +9.475 -2.997 -1.638 0 0 0 0 0 0 0 +9.479 -2.965 -1.637 0 0 0 0 0 0 0 +9.488 -2.935 -1.637 0 0 0 0 0 0 0 +9.503 -2.907 -1.638 0 0 0 0 0 0 0 +9.504 -2.875 -1.637 0 0 0 0 0 0 0 +9.526 -2.865 -1.64 0 0 0 0 0 0 0 +9.521 -2.831 -1.638 0 0 0 0 0 0 0 +9.525 -2.8 -1.637 0 0 0 0 0 0 0 +9.539 -2.772 -1.638 0 0 0 0 0 0 0 +9.548 -2.742 -1.638 0 0 0 0 0 0 0 +9.562 -2.713 -1.639 0 0 0 0 0 0 0 +9.582 -2.686 -1.641 0 0 0 0 0 0 0 +9.578 -2.669 -1.639 0 0 0 0 0 0 0 +9.583 -2.638 -1.639 0 0 0 0 0 0 0 +9.595 -2.609 -1.639 0 0 0 0 0 0 0 +9.607 -2.58 -1.64 0 0 0 0 0 0 0 +9.626 -2.553 -1.642 0 0 0 0 0 0 0 +9.629 -2.521 -1.641 0 0 0 0 0 0 0 +9.638 -2.491 -1.642 0 0 0 0 0 0 0 +9.644 -2.476 -1.642 0 0 0 0 0 0 0 +9.662 -2.448 -1.644 0 0 0 0 0 0 0 +9.671 -2.419 -1.644 0 0 0 0 0 0 0 +9.696 -2.392 -1.647 0 0 0 0 0 0 0 +6.983 -1.707 -1.151 0 0 0 0 0 0 0 +7.005 -1.689 -1.154 0 0 0 0 0 0 0 +9.703 -2.297 -1.644 0 0 0 0 0 0 0 +9.71 -2.283 -1.645 0 0 0 0 0 0 0 +9.713 -2.252 -1.644 0 0 0 0 0 0 0 +9.724 -2.222 -1.645 0 0 0 0 0 0 0 +7.276 -1.645 -1.199 0 0 0 0 0 0 0 +7.28 -1.622 -1.198 0 0 0 0 0 0 0 +7.602 -1.668 -1.256 0 0 0 0 0 0 0 +7.613 -1.645 -1.257 0 0 0 0 0 0 0 +7.516 -1.612 -1.239 0 0 0 0 0 0 0 +7.417 -1.567 -1.22 0 0 0 0 0 0 0 +7.593 -1.578 -1.251 0 0 0 0 0 0 0 +7.451 -1.525 -1.225 0 0 0 0 0 0 0 +7.331 -1.453 -1.201 0 0 0 0 0 0 0 +7.334 -1.43 -1.201 0 0 0 0 0 0 0 +7.346 -1.42 -1.203 0 0 0 0 0 0 0 +7.348 -1.396 -1.202 0 0 0 0 0 0 0 +7.366 -1.376 -1.205 0 0 0 0 0 0 0 +7.392 -1.357 -1.209 0 0 0 0 0 0 0 +7.429 -1.339 -1.214 0 0 0 0 0 0 0 +7.431 -1.315 -1.214 0 0 0 0 0 0 0 +9.74 -1.684 -1.629 0 0 0 0 0 0 0 +9.764 -1.673 -1.633 0 0 0 0 0 0 0 +9.747 -1.638 -1.629 0 0 0 0 0 0 0 +9.755 -1.608 -1.629 0 0 0 0 0 0 0 +9.783 -1.581 -1.633 0 0 0 0 0 0 0 +10.01 -1.585 -1.673 0 0 0 0 0 0 0 +9.833 -1.526 -1.641 0 0 0 0 0 0 0 +9.846 -1.496 -1.642 0 0 0 0 0 0 0 +9.841 -1.48 -1.641 0 0 0 0 0 0 0 +9.843 -1.448 -1.64 0 0 0 0 0 0 0 +9.844 -1.417 -1.64 0 0 0 0 0 0 0 +9.858 -1.387 -1.642 0 0 0 0 0 0 0 +9.884 -1.359 -1.645 0 0 0 0 0 0 0 +8.385 -1.13 -1.376 0 0 0 0 0 0 0 +9.888 -1.281 -1.644 0 0 0 0 0 0 0 +9.898 -1.251 -1.645 0 0 0 0 0 0 0 +9.902 -1.219 -1.645 0 0 0 0 0 0 0 +9.902 -1.188 -1.645 0 0 0 0 0 0 0 +9.894 -1.155 -1.643 0 0 0 0 0 0 0 +9.893 -1.124 -1.642 0 0 0 0 0 0 0 +9.913 -1.094 -1.645 0 0 0 0 0 0 0 +9.961 -1.084 -1.653 0 0 0 0 0 0 0 +10.012 -1.057 -1.661 0 0 0 0 0 0 0 +10.064 -1.031 -1.67 0 0 0 0 0 0 0 +10.11 -1.003 -1.678 0 0 0 0 0 0 0 +10.158 -0.976 -1.686 0 0 0 0 0 0 0 +10.22 -0.949 -1.696 0 0 0 0 0 0 0 +10.231 -0.918 -1.698 0 0 0 0 0 0 0 +10.24 -0.902 -1.699 0 0 0 0 0 0 0 +10.227 -0.869 -1.696 0 0 0 0 0 0 0 +10.271 -0.84 -1.704 0 0 0 0 0 0 0 +10.315 -0.811 -1.711 0 0 0 0 0 0 0 +10.339 -0.78 -1.715 0 0 0 0 0 0 0 +10.369 -0.75 -1.72 0 0 0 0 0 0 0 +10.397 -0.719 -1.724 0 0 0 0 0 0 0 +10.363 -0.7 -1.718 0 0 0 0 0 0 0 +10.373 -0.668 -1.719 0 0 0 0 0 0 0 +10.406 -0.637 -1.725 0 0 0 0 0 0 0 +10.396 -0.604 -1.723 0 0 0 0 0 0 0 +10.392 -0.571 -1.722 0 0 0 0 0 0 0 +10.4 -0.539 -1.723 0 0 0 0 0 0 0 +10.398 -0.506 -1.722 0 0 0 0 0 0 0 +10.393 -0.489 -1.721 0 0 0 0 0 0 0 +10.392 -0.456 -1.721 0 0 0 0 0 0 0 +10.388 -0.423 -1.72 0 0 0 0 0 0 0 +10.393 -0.391 -1.72 0 0 0 0 0 0 0 +10.39 -0.358 -1.72 0 0 0 0 0 0 0 +10.385 -0.325 -1.719 0 0 0 0 0 0 0 +10.38 -0.293 -1.718 0 0 0 0 0 0 0 +10.379 -0.276 -1.717 0 0 0 0 0 0 0 +10.382 -0.244 -1.718 0 0 0 0 0 0 0 +10.374 -0.211 -1.716 0 0 0 0 0 0 0 +10.377 -0.178 -1.717 0 0 0 0 0 0 0 +10.37 -0.146 -1.715 0 0 0 0 0 0 0 +10.39 -0.113 -1.719 0 0 0 0 0 0 0 +10.378 -0.081 -1.717 0 0 0 0 0 0 0 +10.382 -0.064 -1.717 0 0 0 0 0 0 0 +10.384 -0.032 -1.718 0 0 0 0 0 0 0 +10.002 0 -1.724 0 0 0 0 0 0 0 +9.998 0.032 -1.723 0 0 0 0 0 0 0 +9.981 0.047 -1.72 0 0 0 0 0 0 0 +9.976 0.079 -1.719 0 0 0 0 0 0 0 +9.976 0.11 -1.719 0 0 0 0 0 0 0 +9.958 0.141 -1.716 0 0 0 0 0 0 0 +9.979 0.173 -1.72 0 0 0 0 0 0 0 +9.943 0.203 -1.713 0 0 0 0 0 0 0 +9.978 0.235 -1.72 0 0 0 0 0 0 0 +9.948 0.25 -1.714 0 0 0 0 0 0 0 +9.969 0.282 -1.718 0 0 0 0 0 0 0 +9.952 0.313 -1.715 0 0 0 0 0 0 0 +9.965 0.345 -1.718 0 0 0 0 0 0 0 +9.934 0.375 -1.713 0 0 0 0 0 0 0 +9.951 0.407 -1.716 0 0 0 0 0 0 0 +9.936 0.438 -1.713 0 0 0 0 0 0 0 +9.957 0.454 -1.717 0 0 0 0 0 0 0 +9.945 0.485 -1.715 0 0 0 0 0 0 0 +9.924 0.515 -1.712 0 0 0 0 0 0 0 +9.94 0.547 -1.715 0 0 0 0 0 0 0 +9.917 0.577 -1.711 0 0 0 0 0 0 0 +9.925 0.609 -1.713 0 0 0 0 0 0 0 +9.909 0.639 -1.71 0 0 0 0 0 0 0 +9.93 0.656 -1.714 0 0 0 0 0 0 0 +9.906 0.686 -1.71 0 0 0 0 0 0 0 +9.919 0.718 -1.713 0 0 0 0 0 0 0 +9.893 0.748 -1.709 0 0 0 0 0 0 0 +9.905 0.78 -1.711 0 0 0 0 0 0 0 +9.898 0.811 -1.711 0 0 0 0 0 0 0 +9.88 0.841 -1.708 0 0 0 0 0 0 0 +9.9 0.858 -1.712 0 0 0 0 0 0 0 +9.878 0.887 -1.708 0 0 0 0 0 0 0 +9.887 0.919 -1.71 0 0 0 0 0 0 0 +9.859 0.948 -1.706 0 0 0 0 0 0 0 +9.871 0.981 -1.709 0 0 0 0 0 0 0 +9.872 1.012 -1.709 0 0 0 0 0 0 0 +9.875 1.044 -1.71 0 0 0 0 0 0 0 +9.873 1.059 -1.71 0 0 0 0 0 0 0 +9.854 1.088 -1.707 0 0 0 0 0 0 0 +9.837 1.118 -1.705 0 0 0 0 0 0 0 +9.839 1.149 -1.706 0 0 0 0 0 0 0 +9.816 1.178 -1.702 0 0 0 0 0 0 0 +9.839 1.212 -1.707 0 0 0 0 0 0 0 +9.832 1.243 -1.707 0 0 0 0 0 0 0 +9.826 1.257 -1.706 0 0 0 0 0 0 0 +9.82 1.288 -1.706 0 0 0 0 0 0 0 +9.802 1.317 -1.703 0 0 0 0 0 0 0 +9.79 1.347 -1.702 0 0 0 0 0 0 0 +9.805 1.38 -1.705 0 0 0 0 0 0 0 +9.799 1.411 -1.705 0 0 0 0 0 0 0 +9.785 1.44 -1.703 0 0 0 0 0 0 0 +9.781 1.455 -1.703 0 0 0 0 0 0 0 +9.766 1.485 -1.701 0 0 0 0 0 0 0 +9.771 1.517 -1.703 0 0 0 0 0 0 0 +9.768 1.548 -1.703 0 0 0 0 0 0 0 +9.76 1.578 -1.702 0 0 0 0 0 0 0 +9.749 1.607 -1.701 0 0 0 0 0 0 0 +9.734 1.636 -1.699 0 0 0 0 0 0 0 +9.737 1.653 -1.701 0 0 0 0 0 0 0 +9.722 1.682 -1.699 0 0 0 0 0 0 0 +9.729 1.714 -1.701 0 0 0 0 0 0 0 +9.713 1.743 -1.699 0 0 0 0 0 0 0 +9.718 1.775 -1.701 0 0 0 0 0 0 0 +9.706 1.805 -1.7 0 0 0 0 0 0 0 +9.681 1.832 -1.696 0 0 0 0 0 0 0 +9.69 1.849 -1.698 0 0 0 0 0 0 0 +9.696 1.882 -1.701 0 0 0 0 0 0 0 +9.68 1.91 -1.699 0 0 0 0 0 0 0 +9.67 1.94 -1.698 0 0 0 0 0 0 0 +9.672 1.972 -1.699 0 0 0 0 0 0 0 +9.66 2.001 -1.698 0 0 0 0 0 0 0 +9.659 2.033 -1.699 0 0 0 0 0 0 0 +9.656 2.048 -1.699 0 0 0 0 0 0 0 +9.647 2.078 -1.699 0 0 0 0 0 0 0 +9.652 2.11 -1.701 0 0 0 0 0 0 0 +9.634 2.138 -1.699 0 0 0 0 0 0 0 +9.616 2.166 -1.697 0 0 0 0 0 0 0 +9.615 2.197 -1.698 0 0 0 0 0 0 0 +9.608 2.228 -1.698 0 0 0 0 0 0 0 +9.593 2.256 -1.697 0 0 0 0 0 0 0 +9.586 2.27 -1.696 0 0 0 0 0 0 0 +9.579 2.3 -1.696 0 0 0 0 0 0 0 +9.56 2.328 -1.694 0 0 0 0 0 0 0 +9.537 2.354 -1.691 0 0 0 0 0 0 0 +9.518 2.381 -1.689 0 0 0 0 0 0 0 +9.518 2.413 -1.69 0 0 0 0 0 0 0 +9.522 2.43 -1.691 0 0 0 0 0 0 0 +9.509 2.458 -1.69 0 0 0 0 0 0 0 +9.501 2.488 -1.69 0 0 0 0 0 0 0 +9.501 2.52 -1.692 0 0 0 0 0 0 0 +9.497 2.551 -1.693 0 0 0 0 0 0 0 +9.511 2.587 -1.697 0 0 0 0 0 0 0 +9.497 2.615 -1.696 0 0 0 0 0 0 0 +9.493 2.63 -1.696 0 0 0 0 0 0 0 +9.474 2.656 -1.694 0 0 0 0 0 0 0 +9.496 2.695 -1.699 0 0 0 0 0 0 0 +9.476 2.721 -1.697 0 0 0 0 0 0 0 +9.497 2.76 -1.703 0 0 0 0 0 0 0 +9.483 2.788 -1.702 0 0 0 0 0 0 0 +9.474 2.818 -1.702 0 0 0 0 0 0 0 +9.492 2.839 -1.706 0 0 0 0 0 0 0 +9.47 2.865 -1.704 0 0 0 0 0 0 0 +9.463 2.896 -1.704 0 0 0 0 0 0 0 +9.456 2.926 -1.705 0 0 0 0 0 0 0 +9.445 2.955 -1.704 0 0 0 0 0 0 0 +9.45 2.989 -1.707 0 0 0 0 0 0 0 +9.426 3.014 -1.704 0 0 0 0 0 0 0 +9.42 3.045 -1.705 0 0 0 0 0 0 0 +9.434 3.066 -1.709 0 0 0 0 0 0 0 +9.432 3.098 -1.71 0 0 0 0 0 0 0 +9.415 3.125 -1.709 0 0 0 0 0 0 0 +9.409 3.156 -1.709 0 0 0 0 0 0 0 +9.4 3.186 -1.71 0 0 0 0 0 0 0 +9.387 3.214 -1.709 0 0 0 0 0 0 0 +9.375 3.243 -1.709 0 0 0 0 0 0 0 +9.366 3.257 -1.708 0 0 0 0 0 0 0 +9.369 3.29 -1.71 0 0 0 0 0 0 0 +9.354 3.319 -1.71 0 0 0 0 0 0 0 +9.342 3.347 -1.709 0 0 0 0 0 0 0 +9.332 3.377 -1.709 0 0 0 0 0 0 0 +9.332 3.41 -1.711 0 0 0 0 0 0 0 +9.325 3.424 -1.711 0 0 0 0 0 0 0 +9.316 3.454 -1.711 0 0 0 0 0 0 0 +9.309 3.484 -1.712 0 0 0 0 0 0 0 +9.298 3.514 -1.712 0 0 0 0 0 0 0 +9.285 3.542 -1.712 0 0 0 0 0 0 0 +9.285 3.576 -1.714 0 0 0 0 0 0 0 +9.277 3.606 -1.715 0 0 0 0 0 0 0 +9.266 3.619 -1.714 0 0 0 0 0 0 0 +9.262 3.651 -1.715 0 0 0 0 0 0 0 +9.259 3.683 -1.717 0 0 0 0 0 0 0 +9.251 3.714 -1.718 0 0 0 0 0 0 0 +9.234 3.741 -1.717 0 0 0 0 0 0 0 +9.233 3.774 -1.719 0 0 0 0 0 0 0 +9.221 3.803 -1.719 0 0 0 0 0 0 0 +9.212 3.816 -1.718 0 0 0 0 0 0 0 +9.205 3.847 -1.719 0 0 0 0 0 0 0 +9.189 3.875 -1.718 0 0 0 0 0 0 0 +9.184 3.906 -1.72 0 0 0 0 0 0 0 +9.167 3.933 -1.719 0 0 0 0 0 0 0 +9.163 3.966 -1.721 0 0 0 0 0 0 0 +9.142 3.991 -1.719 0 0 0 0 0 0 0 +9.148 4.01 -1.721 0 0 0 0 0 0 0 +9.135 4.039 -1.721 0 0 0 0 0 0 0 +9.13 4.071 -1.723 0 0 0 0 0 0 0 +9.117 4.1 -1.723 0 0 0 0 0 0 0 +9.104 4.128 -1.723 0 0 0 0 0 0 0 +9.097 4.159 -1.724 0 0 0 0 0 0 0 +9.076 4.185 -1.722 0 0 0 0 0 0 0 +9.075 4.201 -1.723 0 0 0 0 0 0 0 +9.065 4.231 -1.724 0 0 0 0 0 0 0 +9.052 4.26 -1.724 0 0 0 0 0 0 0 +9.039 4.288 -1.724 0 0 0 0 0 0 0 +9.002 4.306 -1.719 0 0 0 0 0 0 0 +9.015 4.347 -1.725 0 0 0 0 0 0 0 +9 4.374 -1.725 0 0 0 0 0 0 0 +8.97 4.395 -1.721 0 0 0 0 0 0 0 +8.982 4.418 -1.725 0 0 0 0 0 0 0 +8.956 4.44 -1.723 0 0 0 0 0 0 0 +8.953 4.474 -1.725 0 0 0 0 0 0 0 +8.925 4.495 -1.722 0 0 0 0 0 0 0 +8.928 4.532 -1.726 0 0 0 0 0 0 0 +8.928 4.567 -1.729 0 0 0 0 0 0 0 +8.899 4.588 -1.726 0 0 0 0 0 0 0 +8.903 4.607 -1.728 0 0 0 0 0 0 0 +8.869 4.625 -1.724 0 0 0 0 0 0 0 +8.868 4.66 -1.727 0 0 0 0 0 0 0 +8.845 4.683 -1.725 0 0 0 0 0 0 0 +8.853 4.723 -1.73 0 0 0 0 0 0 0 +8.826 4.744 -1.727 0 0 0 0 0 0 0 +8.827 4.763 -1.729 0 0 0 0 0 0 0 +8.808 4.789 -1.728 0 0 0 0 0 0 0 +8.783 4.811 -1.726 0 0 0 0 0 0 0 +8.78 4.845 -1.729 0 0 0 0 0 0 0 +8.749 4.864 -1.725 0 0 0 0 0 0 0 +8.756 4.904 -1.73 0 0 0 0 0 0 0 +8.742 4.932 -1.73 0 0 0 0 0 0 0 +8.771 4.966 -1.738 0 0 0 0 0 0 0 +8.733 4.981 -1.733 0 0 0 0 0 0 0 +8.691 4.994 -1.728 0 0 0 0 0 0 0 +8.65 5.007 -1.722 0 0 0 0 0 0 0 +8.651 5.044 -1.726 0 0 0 0 0 0 0 +8.625 5.065 -1.724 0 0 0 0 0 0 0 +8.621 5.099 -1.726 0 0 0 0 0 0 0 +8.617 5.114 -1.727 0 0 0 0 0 0 0 +8.587 5.133 -1.724 0 0 0 0 0 0 0 +8.559 5.153 -1.722 0 0 0 0 0 0 0 +8.561 5.191 -1.726 0 0 0 0 0 0 0 +8.542 5.216 -1.725 0 0 0 0 0 0 0 +8.515 5.237 -1.723 0 0 0 0 0 0 0 +8.499 5.263 -1.723 0 0 0 0 0 0 0 +8.469 5.282 -1.72 0 0 0 0 0 0 0 +8.487 5.312 -1.726 0 0 0 0 0 0 0 +8.432 5.314 -1.717 0 0 0 0 0 0 0 +8.445 5.36 -1.724 0 0 0 0 0 0 0 +8.427 5.385 -1.723 0 0 0 0 0 0 0 +8.401 5.406 -1.722 0 0 0 0 0 0 0 +8.364 5.42 -1.717 0 0 0 0 0 0 0 +8.374 5.463 -1.723 0 0 0 0 0 0 0 +8.334 5.456 -1.716 0 0 0 0 0 0 0 +8.333 5.493 -1.72 0 0 0 0 0 0 0 +8.322 5.523 -1.721 0 0 0 0 0 0 0 +8.292 5.541 -1.718 0 0 0 0 0 0 0 +8.271 5.565 -1.718 0 0 0 0 0 0 0 +8.255 5.592 -1.718 0 0 0 0 0 0 0 +8.243 5.621 -1.719 0 0 0 0 0 0 0 +8.216 5.622 -1.715 0 0 0 0 0 0 0 +8.218 5.661 -1.719 0 0 0 0 0 0 0 +8.172 5.668 -1.713 0 0 0 0 0 0 0 +8.167 5.702 -1.716 0 0 0 0 0 0 0 +8.14 5.721 -1.714 0 0 0 0 0 0 0 +8.133 5.755 -1.717 0 0 0 0 0 0 0 +8.104 5.772 -1.714 0 0 0 0 0 0 0 +8.112 5.797 -1.718 0 0 0 0 0 0 0 +8.073 5.808 -1.713 0 0 0 0 0 0 0 +8.074 5.847 -1.718 0 0 0 0 0 0 0 +8.06 5.876 -1.719 0 0 0 0 0 0 0 +8.026 5.89 -1.715 0 0 0 0 0 0 0 +8.026 5.929 -1.719 0 0 0 0 0 0 0 +7.994 5.943 -1.716 0 0 0 0 0 0 0 +7.994 5.963 -1.718 0 0 0 0 0 0 0 +7.965 5.981 -1.716 0 0 0 0 0 0 0 +7.966 6.02 -1.721 0 0 0 0 0 0 0 +7.94 6.041 -1.719 0 0 0 0 0 0 0 +7.931 6.073 -1.721 0 0 0 0 0 0 0 +7.912 6.097 -1.721 0 0 0 0 0 0 0 +7.88 6.113 -1.718 0 0 0 0 0 0 0 +7.889 6.139 -1.723 0 0 0 0 0 0 0 +7.87 6.164 -1.723 0 0 0 0 0 0 0 +7.846 6.185 -1.722 0 0 0 0 0 0 0 +7.834 6.216 -1.723 0 0 0 0 0 0 0 +7.814 6.241 -1.723 0 0 0 0 0 0 0 +7.805 6.274 -1.726 0 0 0 0 0 0 0 +7.747 6.267 -1.717 0 0 0 0 0 0 0 +6.744 5.478 -1.481 0 0 0 0 0 0 0 +6.71 5.485 -1.477 0 0 0 0 0 0 0 +6.696 5.509 -1.478 0 0 0 0 0 0 0 +6.68 5.531 -1.478 0 0 0 0 0 0 0 +6.678 5.565 -1.482 0 0 0 0 0 0 0 +6.677 5.599 -1.486 0 0 0 0 0 0 0 +7.676 6.474 -1.731 0 0 0 0 0 0 0 +7.689 6.505 -1.737 0 0 0 0 0 0 0 +7.673 6.533 -1.738 0 0 0 0 0 0 0 +7.646 6.552 -1.736 0 0 0 0 0 0 0 +7.638 6.586 -1.739 0 0 0 0 0 0 0 +7.621 6.614 -1.74 0 0 0 0 0 0 0 +7.596 6.634 -1.739 0 0 0 0 0 0 0 +7.584 6.665 -1.741 0 0 0 0 0 0 0 +7.577 6.68 -1.742 0 0 0 0 0 0 0 +7.563 6.71 -1.744 0 0 0 0 0 0 0 +7.532 6.725 -1.741 0 0 0 0 0 0 0 +7.488 6.729 -1.736 0 0 0 0 0 0 0 +7.466 6.751 -1.735 0 0 0 0 0 0 0 +7.466 6.794 -1.741 0 0 0 0 0 0 0 +7.481 6.85 -1.75 0 0 0 0 0 0 0 +7.463 6.856 -1.748 0 0 0 0 0 0 0 +7.461 6.896 -1.753 0 0 0 0 0 0 0 +7.426 6.908 -1.75 0 0 0 0 0 0 0 +7.423 6.948 -1.754 0 0 0 0 0 0 0 +7.391 6.962 -1.752 0 0 0 0 0 0 0 +7.393 7.008 -1.758 0 0 0 0 0 0 0 +7.363 7.023 -1.756 0 0 0 0 0 0 0 +7.361 7.066 -1.761 0 0 0 0 0 0 0 +7.342 7.07 -1.759 0 0 0 0 0 0 0 +7.334 7.107 -1.763 0 0 0 0 0 0 0 +7.322 7.14 -1.765 0 0 0 0 0 0 0 +7.292 7.156 -1.763 0 0 0 0 0 0 0 +7.291 7.199 -1.769 0 0 0 0 0 0 0 +7.258 7.212 -1.766 0 0 0 0 0 0 0 +7.261 7.26 -1.773 0 0 0 0 0 0 0 +7.24 7.262 -1.77 0 0 0 0 0 0 0 +7.233 7.301 -1.775 0 0 0 0 0 0 0 +7.202 7.316 -1.772 0 0 0 0 0 0 0 +7.197 7.356 -1.777 0 0 0 0 0 0 0 +7.17 7.375 -1.776 0 0 0 0 0 0 0 +7.171 7.423 -1.783 0 0 0 0 0 0 0 +7.147 7.421 -1.779 0 0 0 0 0 0 0 +7.154 7.475 -1.787 0 0 0 0 0 0 0 +7.129 7.496 -1.787 0 0 0 0 0 0 0 +7.115 7.528 -1.79 0 0 0 0 0 0 0 +7.091 7.55 -1.79 0 0 0 0 0 0 0 +7.08 7.586 -1.793 0 0 0 0 0 0 0 +7.073 7.626 -1.798 0 0 0 0 0 0 0 +7.064 7.64 -1.798 0 0 0 0 0 0 0 +7.041 7.664 -1.799 0 0 0 0 0 0 0 +7.018 7.688 -1.799 0 0 0 0 0 0 0 +7.01 7.727 -1.803 0 0 0 0 0 0 0 +6.987 7.75 -1.804 0 0 0 0 0 0 0 +6.969 7.78 -1.806 0 0 0 0 0 0 0 +6.95 7.807 -1.807 0 0 0 0 0 0 0 +6.933 7.838 -1.809 0 0 0 0 0 0 0 +6.913 7.84 -1.807 0 0 0 0 0 0 0 +6.903 7.878 -1.811 0 0 0 0 0 0 0 +6.868 7.888 -1.808 0 0 0 0 0 0 0 +6.866 7.936 -1.815 0 0 0 0 0 0 0 +6.841 7.958 -1.815 0 0 0 0 0 0 0 +6.82 7.984 -1.816 0 0 0 0 0 0 0 +6.79 7.999 -1.814 0 0 0 0 0 0 0 +6.78 8.013 -1.815 0 0 0 0 0 0 0 +6.761 8.041 -1.817 0 0 0 0 0 0 0 +6.732 8.058 -1.816 0 0 0 0 0 0 0 +6.718 8.093 -1.819 0 0 0 0 0 0 0 +6.692 8.114 -1.819 0 0 0 0 0 0 0 +6.668 8.136 -1.819 0 0 0 0 0 0 0 +6.65 8.166 -1.822 0 0 0 0 0 0 0 +6.617 8.178 -1.819 0 0 0 0 0 0 0 +6.613 8.199 -1.822 0 0 0 0 0 0 0 +6.573 8.203 -1.818 0 0 0 0 0 0 0 +6.567 8.248 -1.824 0 0 0 0 0 0 0 +6.531 8.256 -1.821 0 0 0 0 0 0 0 +6.511 8.285 -1.823 0 0 0 0 0 0 0 +6.481 8.299 -1.821 0 0 0 0 0 0 0 +6.477 8.321 -1.824 0 0 0 0 0 0 0 +6.441 8.329 -1.821 0 0 0 0 0 0 0 +6.431 8.37 -1.826 0 0 0 0 0 0 0 +6.403 8.388 -1.826 0 0 0 0 0 0 0 +6.395 8.432 -1.831 0 0 0 0 0 0 0 +6.366 8.449 -1.83 0 0 0 0 0 0 0 +6.353 8.488 -1.835 0 0 0 0 0 0 0 +6.333 8.515 -1.836 0 0 0 0 0 0 0 +6.317 8.522 -1.836 0 0 0 0 0 0 0 +6.307 8.564 -1.841 0 0 0 0 0 0 0 +6.285 8.592 -1.843 0 0 0 0 0 0 0 +6.254 8.605 -1.841 0 0 0 0 0 0 0 +6.226 8.623 -1.841 0 0 0 0 0 0 0 +6.21 8.659 -1.844 0 0 0 0 0 0 0 +6.193 8.693 -1.848 0 0 0 0 0 0 0 +6.208 8.742 -1.857 0 0 0 0 0 0 0 +6.184 8.767 -1.858 0 0 0 0 0 0 0 +6.164 8.797 -1.86 0 0 0 0 0 0 0 +6.12 8.792 -1.855 0 0 0 0 0 0 0 +6.098 8.82 -1.857 0 0 0 0 0 0 0 +6.066 8.834 -1.856 0 0 0 0 0 0 0 +6.029 8.838 -1.852 0 0 0 0 0 0 0 +6.018 8.853 -1.854 0 0 0 0 0 0 0 +5.978 8.854 -1.85 0 0 0 0 0 0 0 +5.961 8.889 -1.853 0 0 0 0 0 0 0 +5.916 8.881 -1.847 0 0 0 0 0 0 0 +5.9 8.918 -1.851 0 0 0 0 0 0 0 +5.862 8.921 -1.848 0 0 0 0 0 0 0 +5.84 8.95 -1.85 0 0 0 0 0 0 0 +5.817 8.944 -1.847 0 0 0 0 0 0 0 +5.802 8.984 -1.852 0 0 0 0 0 0 0 +5.77 8.995 -1.85 0 0 0 0 0 0 0 +5.736 9.005 -1.848 0 0 0 0 0 0 0 +5.709 9.025 -1.849 0 0 0 0 0 0 0 +5.684 9.048 -1.85 0 0 0 0 0 0 0 +5.651 9.059 -1.848 0 0 0 0 0 0 0 +5.636 9.066 -1.848 0 0 0 0 0 0 0 +5.604 9.079 -1.847 0 0 0 0 0 0 0 +5.581 9.104 -1.849 0 0 0 0 0 0 0 +5.55 9.119 -1.848 0 0 0 0 0 0 0 +5.515 9.126 -1.846 0 0 0 0 0 0 0 +5.485 9.14 -1.845 0 0 0 0 0 0 0 +5.452 9.15 -1.844 0 0 0 0 0 0 0 +5.426 9.172 -1.845 0 0 0 0 0 0 0 +5.407 9.172 -1.843 0 0 0 0 0 0 0 +5.374 9.183 -1.842 0 0 0 0 0 0 0 +5.343 9.196 -1.841 0 0 0 0 0 0 0 +5.31 9.206 -1.839 0 0 0 0 0 0 0 +5.278 9.218 -1.838 0 0 0 0 0 0 0 +5.247 9.231 -1.838 0 0 0 0 0 0 0 +5.229 9.266 -1.842 0 0 0 0 0 0 0 +5.213 9.271 -1.841 0 0 0 0 0 0 0 +5.168 9.26 -1.835 0 0 0 0 0 0 0 +5.152 9.3 -1.84 0 0 0 0 0 0 0 +5.122 9.314 -1.84 0 0 0 0 0 0 0 +5.091 9.327 -1.839 0 0 0 0 0 0 0 +5.061 9.341 -1.839 0 0 0 0 0 0 0 +5.019 9.334 -1.834 0 0 0 0 0 0 0 +5.011 9.354 -1.836 0 0 0 0 0 0 0 +4.979 9.365 -1.835 0 0 0 0 0 0 0 +4.937 9.358 -1.831 0 0 0 0 0 0 0 +4.893 9.346 -1.825 0 0 0 0 0 0 0 +4.867 9.366 -1.826 0 0 0 0 0 0 0 +4.84 9.387 -1.827 0 0 0 0 0 0 0 +4.809 9.4 -1.827 0 0 0 0 0 0 0 +4.789 9.397 -1.824 0 0 0 0 0 0 0 +4.762 9.417 -1.826 0 0 0 0 0 0 0 +4.727 9.42 -1.823 0 0 0 0 0 0 0 +4.688 9.417 -1.819 0 0 0 0 0 0 0 +4.665 9.444 -1.822 0 0 0 0 0 0 0 +4.627 9.443 -1.819 0 0 0 0 0 0 0 +4.598 9.459 -1.819 0 0 0 0 0 0 0 +4.587 9.473 -1.82 0 0 0 0 0 0 0 +4.546 9.465 -1.816 0 0 0 0 0 0 0 +4.519 9.484 -1.817 0 0 0 0 0 0 0 +4.486 9.493 -1.816 0 0 0 0 0 0 0 +4.455 9.504 -1.815 0 0 0 0 0 0 0 +4.423 9.514 -1.814 0 0 0 0 0 0 0 +4.398 9.537 -1.816 0 0 0 0 0 0 0 +4.358 9.529 -1.812 0 0 0 0 0 0 0 +4.334 9.516 -1.808 0 0 0 0 0 0 0 +4.314 9.553 -1.812 0 0 0 0 0 0 0 +4.274 9.543 -1.808 0 0 0 0 0 0 0 +4.248 9.566 -1.81 0 0 0 0 0 0 0 +4.219 9.581 -1.81 0 0 0 0 0 0 0 +4.182 9.58 -1.807 0 0 0 0 0 0 0 +4.153 9.594 -1.807 0 0 0 0 0 0 0 +4.143 9.612 -1.81 0 0 0 0 0 0 0 +4.107 9.612 -1.807 0 0 0 0 0 0 0 +4.077 9.625 -1.807 0 0 0 0 0 0 0 +4.047 9.64 -1.807 0 0 0 0 0 0 0 +4.013 9.643 -1.806 0 0 0 0 0 0 0 +3.98 9.648 -1.804 0 0 0 0 0 0 0 +3.966 9.701 -1.812 0 0 0 0 0 0 0 +3.935 9.669 -1.804 0 0 0 0 0 0 0 +3.917 9.712 -1.811 0 0 0 0 0 0 0 +3.889 9.73 -1.812 0 0 0 0 0 0 0 +3.841 9.7 -1.803 0 0 0 0 0 0 0 +3.817 9.727 -1.806 0 0 0 0 0 0 0 +3.795 9.761 -1.811 0 0 0 0 0 0 0 +3.761 9.763 -1.809 0 0 0 0 0 0 0 +3.747 9.773 -1.81 0 0 0 0 0 0 0 +3.716 9.785 -1.81 0 0 0 0 0 0 0 +3.681 9.785 -1.807 0 0 0 0 0 0 0 +3.652 9.802 -1.808 0 0 0 0 0 0 0 +3.621 9.812 -1.808 0 0 0 0 0 0 0 +3.594 9.834 -1.81 0 0 0 0 0 0 0 +3.564 9.847 -1.811 0 0 0 0 0 0 0 +3.53 9.851 -1.809 0 0 0 0 0 0 0 +3.514 9.855 -1.809 0 0 0 0 0 0 0 +3.471 9.832 -1.802 0 0 0 0 0 0 0 +3.44 9.843 -1.802 0 0 0 0 0 0 0 +3.403 9.837 -1.799 0 0 0 0 0 0 0 +3.371 9.844 -1.798 0 0 0 0 0 0 0 +3.336 9.842 -1.796 0 0 0 0 0 0 0 +3.3 9.837 -1.793 0 0 0 0 0 0 0 +3.278 9.822 -1.789 0 0 0 0 0 0 0 +3.24 9.814 -1.785 0 0 0 0 0 0 0 +3.203 9.803 -1.781 0 0 0 0 0 0 0 +3.167 9.796 -1.778 0 0 0 0 0 0 0 +3.127 9.78 -1.773 0 0 0 0 0 0 0 +3.086 9.756 -1.766 0 0 0 0 0 0 0 +3.059 9.779 -1.769 0 0 0 0 0 0 0 +3.042 9.776 -1.767 0 0 0 0 0 0 0 +2.998 9.744 -1.759 0 0 0 0 0 0 0 +2.978 9.789 -1.766 0 0 0 0 0 0 0 +2.947 9.797 -1.766 0 0 0 0 0 0 0 +2.92 9.819 -1.769 0 0 0 0 0 0 0 +2.887 9.819 -1.767 0 0 0 0 0 0 0 +2.864 9.858 -1.772 0 0 0 0 0 0 0 +2.84 9.832 -1.767 0 0 0 0 0 0 0 +2.817 9.868 -1.772 0 0 0 0 0 0 0 +2.741 9.72 -1.742 0 0 0 0 0 0 0 +2.543 9.134 -1.627 0 0 0 0 0 0 0 +2.519 9.157 -1.63 0 0 0 0 0 0 0 +2.48 9.129 -1.623 0 0 0 0 0 0 0 +2.451 9.136 -1.623 0 0 0 0 0 0 0 +2.425 9.152 -1.625 0 0 0 0 0 0 0 +2.397 9.106 -1.615 0 0 0 0 0 0 0 +2.37 9.117 -1.616 0 0 0 0 0 0 0 +1.757 6.873 -1.186 0 0 0 0 0 0 0 +1.735 6.88 -1.187 0 0 0 0 0 0 0 +1.721 6.912 -1.192 0 0 0 0 0 0 0 +1.8 7.324 -1.269 0 0 0 0 0 0 0 +1.989 8.189 -1.433 0 0 0 0 0 0 0 +2.197 9.098 -1.605 0 0 0 0 0 0 0 +2.178 9.145 -1.613 0 0 0 0 0 0 0 +2.147 9.142 -1.611 0 0 0 0 0 0 0 +2.123 9.168 -1.614 0 0 0 0 0 0 0 +2.089 9.151 -1.61 0 0 0 0 0 0 0 +2.067 9.189 -1.616 0 0 0 0 0 0 0 +2.037 9.187 -1.614 0 0 0 0 0 0 0 +2.019 9.177 -1.612 0 0 0 0 0 0 0 +1.997 9.212 -1.617 0 0 0 0 0 0 0 +1.966 9.211 -1.616 0 0 0 0 0 0 0 +1.939 9.225 -1.617 0 0 0 0 0 0 0 +1.906 9.213 -1.614 0 0 0 0 0 0 0 +0.63 3.179 -0.474 0 0 0 0 0 0 0 +0.624 3.2 -0.478 0 0 0 0 0 0 0 +0.617 3.192 -0.476 0 0 0 0 0 0 0 +0.606 3.192 -0.476 0 0 0 0 0 0 0 +0.592 3.172 -0.472 0 0 0 0 0 0 0 +0.584 3.182 -0.473 0 0 0 0 0 0 0 +0.579 3.211 -0.478 0 0 0 0 0 0 0 +0.576 3.253 -0.486 0 0 0 0 0 0 0 +0.54 3.11 -0.459 0 0 0 0 0 0 0 +0.533 3.101 -0.457 0 0 0 0 0 0 0 +0.522 3.095 -0.455 0 0 0 0 0 0 0 +0.513 3.098 -0.456 0 0 0 0 0 0 0 +0.503 3.1 -0.456 0 0 0 0 0 0 0 +0.493 3.102 -0.456 0 0 0 0 0 0 0 +0.483 3.101 -0.455 0 0 0 0 0 0 0 +0.472 3.093 -0.453 0 0 0 0 0 0 0 +0.462 3.094 -0.453 0 0 0 0 0 0 0 +0.459 3.105 -0.455 0 0 0 0 0 0 0 +0.449 3.104 -0.455 0 0 0 0 0 0 0 +0.437 3.096 -0.453 0 0 0 0 0 0 0 +0.429 3.107 -0.455 0 0 0 0 0 0 0 +0.418 3.103 -0.454 0 0 0 0 0 0 0 +0.409 3.106 -0.454 0 0 0 0 0 0 0 +0.4 3.113 -0.455 0 0 0 0 0 0 0 +0.394 3.108 -0.454 0 0 0 0 0 0 0 +0.385 3.115 -0.455 0 0 0 0 0 0 0 +0.375 3.11 -0.454 0 0 0 0 0 0 0 +0.365 3.113 -0.455 0 0 0 0 0 0 0 +0.356 3.118 -0.455 0 0 0 0 0 0 0 +0.346 3.119 -0.455 0 0 0 0 0 0 0 +0.337 3.122 -0.456 0 0 0 0 0 0 0 +0.332 3.123 -0.456 0 0 0 0 0 0 0 +0.323 3.138 -0.458 0 0 0 0 0 0 0 +0.311 3.119 -0.455 0 0 0 0 0 0 0 +0.302 3.126 -0.456 0 0 0 0 0 0 0 +0.293 3.129 -0.456 0 0 0 0 0 0 0 +0.283 3.128 -0.456 0 0 0 0 0 0 0 +0.274 3.138 -0.457 0 0 0 0 0 0 0 +0.264 3.141 -0.458 0 0 0 0 0 0 0 +0.259 3.142 -0.458 0 0 0 0 0 0 0 +0.248 3.133 -0.456 0 0 0 0 0 0 0 +0.239 3.141 -0.457 0 0 0 0 0 0 0 +0.229 3.144 -0.458 0 0 0 0 0 0 0 +0.22 3.149 -0.459 0 0 0 0 0 0 0 +0.211 3.165 -0.461 0 0 0 0 0 0 0 +0.202 3.173 -0.463 0 0 0 0 0 0 0 +0.204 3.282 -0.483 0 0 0 0 0 0 0 +0.194 3.278 -0.482 0 0 0 0 0 0 0 +0.183 3.277 -0.482 0 0 0 0 0 0 0 +0.173 3.276 -0.481 0 0 0 0 0 0 0 +0.162 3.264 -0.479 0 0 0 0 0 0 0 +0.151 3.257 -0.478 0 0 0 0 0 0 0 +0.141 3.254 -0.477 0 0 0 0 0 0 0 +0.135 3.238 -0.474 0 0 0 0 0 0 0 +0.403 9.886 -1.704 0 0 0 0 0 0 0 +0.127 3.286 -0.483 0 0 0 0 0 0 0 +0.376 9.976 -1.72 0 0 0 0 0 0 0 +0.345 10 -1.725 0 0 0 0 0 0 0 +0.314 9.997 -1.724 0 0 0 0 0 0 0 +0.284 10.036 -1.731 0 0 0 0 0 0 0 +0.268 10.022 -1.728 0 0 0 0 0 0 0 +0.237 10.072 -1.737 0 0 0 0 0 0 0 +0.206 10.073 -1.737 0 0 0 0 0 0 0 +0.174 10.097 -1.742 0 0 0 0 0 0 0 +0.142 10.08 -1.738 0 0 0 0 0 0 0 +0.111 10.122 -1.746 0 0 0 0 0 0 0 +0.079 10.11 -1.744 0 0 0 0 0 0 0 +0.064 10.146 -1.75 0 0 0 0 0 0 0 +0.032 10.162 -1.753 0 0 0 0 0 0 0 +0 10.187 -1.758 0 0 0 0 0 0 0 +-0.032 10.25 -1.77 0 0 0 0 0 0 0 +-0.064 10.321 -1.783 0 0 0 0 0 0 0 +-0.097 10.332 -1.785 0 0 0 0 0 0 0 +-0.131 10.489 -1.814 0 0 0 0 0 0 0 +-0.147 10.428 -1.803 0 0 0 0 0 0 0 +-0.178 10.312 -1.781 0 0 0 0 0 0 0 +-0.209 10.272 -1.774 0 0 0 0 0 0 0 +-0.241 10.259 -1.772 0 0 0 0 0 0 0 +-0.273 10.223 -1.765 0 0 0 0 0 0 0 +-0.304 10.194 -1.76 0 0 0 0 0 0 0 +-0.337 10.227 -1.766 0 0 0 0 0 0 0 +-0.368 10.177 -1.757 0 0 0 0 0 0 0 +-0.385 10.219 -1.765 0 0 0 0 0 0 0 +-0.417 10.2 -1.762 0 0 0 0 0 0 0 +-0.449 10.211 -1.764 0 0 0 0 0 0 0 +-0.481 10.217 -1.766 0 0 0 0 0 0 0 +-0.513 10.204 -1.763 0 0 0 0 0 0 0 +-0.546 10.212 -1.765 0 0 0 0 0 0 0 +-0.576 10.189 -1.761 0 0 0 0 0 0 0 +-0.595 10.229 -1.769 0 0 0 0 0 0 0 +-0.625 10.2 -1.764 0 0 0 0 0 0 0 +-0.658 10.207 -1.766 0 0 0 0 0 0 0 +-0.69 10.201 -1.765 0 0 0 0 0 0 0 +-0.722 10.209 -1.767 0 0 0 0 0 0 0 +-0.753 10.185 -1.763 0 0 0 0 0 0 0 +-0.788 10.218 -1.769 0 0 0 0 0 0 0 +-0.802 10.197 -1.766 0 0 0 0 0 0 0 +-0.835 10.202 -1.767 0 0 0 0 0 0 0 +-0.865 10.18 -1.763 0 0 0 0 0 0 0 +-0.899 10.203 -1.768 0 0 0 0 0 0 0 +-0.929 10.176 -1.764 0 0 0 0 0 0 0 +-0.965 10.218 -1.772 0 0 0 0 0 0 0 +-0.993 10.17 -1.764 0 0 0 0 0 0 0 +-1.012 10.2 -1.77 0 0 0 0 0 0 0 +-1.044 10.189 -1.768 0 0 0 0 0 0 0 +-1.076 10.188 -1.769 0 0 0 0 0 0 0 +-1.106 10.167 -1.765 0 0 0 0 0 0 0 +-1.142 10.198 -1.772 0 0 0 0 0 0 0 +-1.17 10.159 -1.765 0 0 0 0 0 0 0 +-1.204 10.173 -1.769 0 0 0 0 0 0 0 +-1.235 10.164 -1.767 0 0 0 0 0 0 0 +-1.253 10.177 -1.77 0 0 0 0 0 0 0 +-1.28 10.136 -1.763 0 0 0 0 0 0 0 +-1.318 10.179 -1.772 0 0 0 0 0 0 0 +-1.344 10.128 -1.763 0 0 0 0 0 0 0 +-1.379 10.147 -1.768 0 0 0 0 0 0 0 +-1.41 10.139 -1.767 0 0 0 0 0 0 0 +-1.444 10.146 -1.769 0 0 0 0 0 0 0 +-1.461 10.153 -1.771 0 0 0 0 0 0 0 +-1.501 10.205 -1.782 0 0 0 0 0 0 0 +-1.551 10.325 -1.805 0 0 0 0 0 0 0 +-1.575 10.26 -1.794 0 0 0 0 0 0 0 +-1.641 10.263 -1.796 0 0 0 0 0 0 0 +-1.666 10.21 -1.787 0 0 0 0 0 0 0 +-1.68 10.197 -1.785 0 0 0 0 0 0 0 +-1.702 10.13 -1.774 0 0 0 0 0 0 0 +-1.734 10.126 -1.774 0 0 0 0 0 0 0 +-1.763 10.105 -1.771 0 0 0 0 0 0 0 +-1.796 10.106 -1.772 0 0 0 0 0 0 0 +-1.826 10.088 -1.77 0 0 0 0 0 0 0 +-1.862 10.106 -1.774 0 0 0 0 0 0 0 +-1.873 10.078 -1.77 0 0 0 0 0 0 0 +-1.909 10.095 -1.774 0 0 0 0 0 0 0 +-1.938 10.073 -1.771 0 0 0 0 0 0 0 +-1.971 10.077 -1.773 0 0 0 0 0 0 0 +-2 10.055 -1.77 0 0 0 0 0 0 0 +-2.04 10.091 -1.778 0 0 0 0 0 0 0 +-2.06 10.029 -1.767 0 0 0 0 0 0 0 +-2.099 10.057 -1.774 0 0 0 0 0 0 0 +-2.112 10.042 -1.772 0 0 0 0 0 0 0 +-2.146 10.047 -1.774 0 0 0 0 0 0 0 +-2.175 10.029 -1.772 0 0 0 0 0 0 0 +-2.215 10.058 -1.779 0 0 0 0 0 0 0 +-2.237 10.009 -1.771 0 0 0 0 0 0 0 +-2.277 10.04 -1.778 0 0 0 0 0 0 0 +-2.307 10.026 -1.776 0 0 0 0 0 0 0 +-2.325 10.032 -1.778 0 0 0 0 0 0 0 +-2.353 10.013 -1.776 0 0 0 0 0 0 0 +-2.394 10.044 -1.783 0 0 0 0 0 0 0 +-2.416 9.996 -1.776 0 0 0 0 0 0 0 +-2.452 10.009 -1.78 0 0 0 0 0 0 0 +-2.481 9.992 -1.778 0 0 0 0 0 0 0 +-2.52 10.011 -1.783 0 0 0 0 0 0 0 +-2.528 9.978 -1.778 0 0 0 0 0 0 0 +-2.569 10.008 -1.785 0 0 0 0 0 0 0 +-2.594 9.973 -1.78 0 0 0 0 0 0 0 +-2.631 9.99 -1.784 0 0 0 0 0 0 0 +-2.657 9.961 -1.78 0 0 0 0 0 0 0 +-2.694 9.973 -1.784 0 0 0 0 0 0 0 +-2.723 9.955 -1.783 0 0 0 0 0 0 0 +-2.747 9.981 -1.788 0 0 0 0 0 0 0 +-2.776 9.963 -1.787 0 0 0 0 0 0 0 +-2.808 9.958 -1.787 0 0 0 0 0 0 0 +-2.841 9.957 -1.789 0 0 0 0 0 0 0 +-2.863 9.916 -1.783 0 0 0 0 0 0 0 +-2.903 9.937 -1.788 0 0 0 0 0 0 0 +-2.933 9.922 -1.787 0 0 0 0 0 0 0 +-2.968 9.926 -1.79 0 0 0 0 0 0 0 +-2.99 9.942 -1.794 0 0 0 0 0 0 0 +-3.022 9.936 -1.795 0 0 0 0 0 0 0 +-3.054 9.929 -1.795 0 0 0 0 0 0 0 +-3.101 9.97 -1.805 0 0 0 0 0 0 0 +-3.161 10.054 -1.823 0 0 0 0 0 0 0 +-3.157 9.93 -1.801 0 0 0 0 0 0 0 +-3.175 9.88 -1.793 0 0 0 0 0 0 0 +-3.186 9.86 -1.79 0 0 0 0 0 0 0 +-3.195 9.783 -1.777 0 0 0 0 0 0 0 +-3.214 9.737 -1.77 0 0 0 0 0 0 0 +-3.26 9.772 -1.779 0 0 0 0 0 0 0 +-3.328 9.874 -1.801 0 0 0 0 0 0 0 +-3.315 9.735 -1.776 0 0 0 0 0 0 0 +-2.923 8.486 -1.534 0 0 0 0 0 0 0 +-2.921 8.437 -1.525 0 0 0 0 0 0 0 +-2.934 8.387 -1.517 0 0 0 0 0 0 0 +-2.943 8.329 -1.508 0 0 0 0 0 0 0 +-2.958 8.287 -1.501 0 0 0 0 0 0 0 +-2.97 8.24 -1.494 0 0 0 0 0 0 0 +-2.981 8.188 -1.486 0 0 0 0 0 0 0 +-2.995 8.146 -1.479 0 0 0 0 0 0 0 +-2.996 8.112 -1.473 0 0 0 0 0 0 0 +-3.018 8.091 -1.471 0 0 0 0 0 0 0 +-3.031 8.048 -1.465 0 0 0 0 0 0 0 +-3.047 8.015 -1.46 0 0 0 0 0 0 0 +-3.065 7.985 -1.456 0 0 0 0 0 0 0 +-3.076 7.939 -1.449 0 0 0 0 0 0 0 +-3.096 7.916 -1.446 0 0 0 0 0 0 0 +-3.113 7.886 -1.442 0 0 0 0 0 0 0 +-3.115 7.856 -1.437 0 0 0 0 0 0 0 +-3.129 7.82 -1.432 0 0 0 0 0 0 0 +-3.144 7.785 -1.427 0 0 0 0 0 0 0 +-3.16 7.755 -1.423 0 0 0 0 0 0 0 +-3.178 7.728 -1.42 0 0 0 0 0 0 0 +-3.193 7.697 -1.415 0 0 0 0 0 0 0 +-3.207 7.661 -1.41 0 0 0 0 0 0 0 +-3.21 7.636 -1.406 0 0 0 0 0 0 0 +-3.219 7.59 -1.399 0 0 0 0 0 0 0 +-3.235 7.561 -1.395 0 0 0 0 0 0 0 +-3.253 7.539 -1.393 0 0 0 0 0 0 0 +-3.265 7.499 -1.387 0 0 0 0 0 0 0 +-3.28 7.471 -1.383 0 0 0 0 0 0 0 +-3.295 7.441 -1.379 0 0 0 0 0 0 0 +-3.311 7.413 -1.376 0 0 0 0 0 0 0 +-3.315 7.391 -1.372 0 0 0 0 0 0 0 +-3.332 7.366 -1.369 0 0 0 0 0 0 0 +-3.355 7.356 -1.369 0 0 0 0 0 0 0 +-3.365 7.317 -1.364 0 0 0 0 0 0 0 +-3.372 7.272 -1.357 0 0 0 0 0 0 0 +-3.391 7.253 -1.355 0 0 0 0 0 0 0 +-3.402 7.217 -1.35 0 0 0 0 0 0 0 +-3.413 7.21 -1.349 0 0 0 0 0 0 0 +-3.426 7.179 -1.345 0 0 0 0 0 0 0 +-3.436 7.142 -1.34 0 0 0 0 0 0 0 +-3.447 7.108 -1.335 0 0 0 0 0 0 0 +-3.469 7.097 -1.335 0 0 0 0 0 0 0 +-3.491 7.085 -1.335 0 0 0 0 0 0 0 +-3.516 7.079 -1.336 0 0 0 0 0 0 0 +-3.529 7.077 -1.337 0 0 0 0 0 0 0 +-3.56 7.083 -1.34 0 0 0 0 0 0 0 +-3.584 7.076 -1.341 0 0 0 0 0 0 0 +-3.606 7.064 -1.341 0 0 0 0 0 0 0 +-3.631 7.058 -1.342 0 0 0 0 0 0 0 +-3.667 7.075 -1.348 0 0 0 0 0 0 0 +-3.695 7.074 -1.35 0 0 0 0 0 0 0 +-3.708 7.071 -1.351 0 0 0 0 0 0 0 +-3.738 7.075 -1.354 0 0 0 0 0 0 0 +-3.762 7.067 -1.355 0 0 0 0 0 0 0 +-3.788 7.062 -1.356 0 0 0 0 0 0 0 +-3.819 7.066 -1.36 0 0 0 0 0 0 0 +-3.85 7.071 -1.363 0 0 0 0 0 0 0 +-3.873 7.061 -1.364 0 0 0 0 0 0 0 +-3.903 7.062 -1.367 0 0 0 0 0 0 0 +-3.922 7.07 -1.369 0 0 0 0 0 0 0 +-3.95 7.068 -1.372 0 0 0 0 0 0 0 +-3.978 7.066 -1.374 0 0 0 0 0 0 0 +-4.01 7.072 -1.378 0 0 0 0 0 0 0 +-4.036 7.066 -1.379 0 0 0 0 0 0 0 +-4.067 7.069 -1.382 0 0 0 0 0 0 0 +-4.099 7.073 -1.386 0 0 0 0 0 0 0 +-4.111 7.068 -1.386 0 0 0 0 0 0 0 +-4.15 7.084 -1.393 0 0 0 0 0 0 0 +-4.198 7.114 -1.402 0 0 0 0 0 0 0 +-4.235 7.126 -1.407 0 0 0 0 0 0 0 +-4.284 7.158 -1.417 0 0 0 0 0 0 0 +-4.314 7.157 -1.42 0 0 0 0 0 0 0 +-4.332 7.136 -1.418 0 0 0 0 0 0 0 +-4.349 7.138 -1.42 0 0 0 0 0 0 0 +-4.369 7.121 -1.419 0 0 0 0 0 0 0 +-4.41 7.137 -1.426 0 0 0 0 0 0 0 +-4.425 7.112 -1.423 0 0 0 0 0 0 0 +-4.468 7.131 -1.43 0 0 0 0 0 0 0 +-5.431 8.619 -1.758 0 0 0 0 0 0 0 +-5.446 8.582 -1.754 0 0 0 0 0 0 0 +-5.449 8.556 -1.75 0 0 0 0 0 0 0 +-5.446 8.493 -1.74 0 0 0 0 0 0 0 +-5.46 8.456 -1.735 0 0 0 0 0 0 0 +-5.479 8.427 -1.733 0 0 0 0 0 0 0 +-5.473 8.36 -1.722 0 0 0 0 0 0 0 +-5.494 8.335 -1.72 0 0 0 0 0 0 0 +-5.499 8.285 -1.713 0 0 0 0 0 0 0 +-5.501 8.26 -1.709 0 0 0 0 0 0 0 +-5.511 8.219 -1.704 0 0 0 0 0 0 0 +-5.527 8.187 -1.701 0 0 0 0 0 0 0 +-5.546 8.16 -1.699 0 0 0 0 0 0 0 +-5.574 8.146 -1.699 0 0 0 0 0 0 0 +-5.603 8.133 -1.701 0 0 0 0 0 0 0 +-5.609 8.086 -1.694 0 0 0 0 0 0 0 +-5.651 8.093 -1.699 0 0 0 0 0 0 0 +-5.666 8.087 -1.7 0 0 0 0 0 0 0 +-5.702 8.086 -1.704 0 0 0 0 0 0 0 +-5.732 8.074 -1.705 0 0 0 0 0 0 0 +-5.777 8.083 -1.711 0 0 0 0 0 0 0 +-5.805 8.068 -1.712 0 0 0 0 0 0 0 +-5.826 8.045 -1.711 0 0 0 0 0 0 0 +-5.874 8.057 -1.718 0 0 0 0 0 0 0 +-5.87 8.026 -1.713 0 0 0 0 0 0 0 +-5.919 8.039 -1.72 0 0 0 0 0 0 0 +-5.941 8.017 -1.719 0 0 0 0 0 0 0 +-5.988 8.027 -1.726 0 0 0 0 0 0 0 +-6.007 8 -1.724 0 0 0 0 0 0 0 +-6.05 8.005 -1.73 0 0 0 0 0 0 0 +-6.081 7.994 -1.731 0 0 0 0 0 0 0 +-6.089 7.978 -1.73 0 0 0 0 0 0 0 +-6.139 7.991 -1.738 0 0 0 0 0 0 0 +-6.153 7.958 -1.734 0 0 0 0 0 0 0 +-6.205 7.973 -1.742 0 0 0 0 0 0 0 +-6.237 7.963 -1.745 0 0 0 0 0 0 0 +-6.258 7.938 -1.743 0 0 0 0 0 0 0 +-6.298 7.937 -1.748 0 0 0 0 0 0 0 +-6.308 7.924 -1.747 0 0 0 0 0 0 0 +-6.346 7.921 -1.751 0 0 0 0 0 0 0 +-6.356 7.883 -1.747 0 0 0 0 0 0 0 +-6.399 7.886 -1.752 0 0 0 0 0 0 0 +-6.42 7.861 -1.751 0 0 0 0 0 0 0 +-6.434 7.827 -1.748 0 0 0 0 0 0 0 +-6.473 7.825 -1.752 0 0 0 0 0 0 0 +-6.494 7.826 -1.755 0 0 0 0 0 0 0 +-6.513 7.798 -1.753 0 0 0 0 0 0 0 +-6.543 7.785 -1.755 0 0 0 0 0 0 0 +-6.554 7.748 -1.751 0 0 0 0 0 0 0 +-6.599 7.751 -1.757 0 0 0 0 0 0 0 +-6.624 7.732 -1.757 0 0 0 0 0 0 0 +-6.642 7.703 -1.755 0 0 0 0 0 0 0 +-6.678 7.696 -1.758 0 0 0 0 0 0 0 +-6.687 7.682 -1.758 0 0 0 0 0 0 0 +-6.727 7.679 -1.762 0 0 0 0 0 0 0 +-6.754 7.661 -1.763 0 0 0 0 0 0 0 +-6.783 7.646 -1.764 0 0 0 0 0 0 0 +-6.815 7.633 -1.766 0 0 0 0 0 0 0 +-6.845 7.619 -1.768 0 0 0 0 0 0 0 +-6.864 7.592 -1.767 0 0 0 0 0 0 0 +-6.884 7.589 -1.769 0 0 0 0 0 0 0 +-6.903 7.563 -1.768 0 0 0 0 0 0 0 +-6.956 7.574 -1.776 0 0 0 0 0 0 0 +-6.992 7.565 -1.779 0 0 0 0 0 0 0 +-7.015 7.541 -1.779 0 0 0 0 0 0 0 +-7.052 7.534 -1.782 0 0 0 0 0 0 0 +-7.063 7.499 -1.779 0 0 0 0 0 0 0 +-7.09 7.503 -1.783 0 0 0 0 0 0 0 +-7.112 7.479 -1.783 0 0 0 0 0 0 0 +-7.154 7.477 -1.788 0 0 0 0 0 0 0 +-7.176 7.453 -1.787 0 0 0 0 0 0 0 +-7.213 7.445 -1.791 0 0 0 0 0 0 0 +-7.223 7.408 -1.787 0 0 0 0 0 0 0 +-7.266 7.405 -1.792 0 0 0 0 0 0 0 +-7.27 7.386 -1.791 0 0 0 0 0 0 0 +-7.314 7.385 -1.796 0 0 0 0 0 0 0 +-7.332 7.356 -1.795 0 0 0 0 0 0 0 +-7.367 7.345 -1.798 0 0 0 0 0 0 0 +-7.371 7.303 -1.793 0 0 0 0 0 0 0 +-7.412 7.298 -1.798 0 0 0 0 0 0 0 +-7.439 7.278 -1.799 0 0 0 0 0 0 0 +-7.455 7.248 -1.797 0 0 0 0 0 0 0 +-7.479 7.249 -1.8 0 0 0 0 0 0 0 +-7.496 7.22 -1.799 0 0 0 0 0 0 0 +-7.529 7.206 -1.801 0 0 0 0 0 0 0 +-7.538 7.17 -1.798 0 0 0 0 0 0 0 +-7.569 7.154 -1.8 0 0 0 0 0 0 0 +-7.583 7.122 -1.798 0 0 0 0 0 0 0 +-7.629 7.12 -1.804 0 0 0 0 0 0 0 +-7.624 7.093 -1.8 0 0 0 0 0 0 0 +-7.664 7.085 -1.804 0 0 0 0 0 0 0 +-7.676 7.052 -1.802 0 0 0 0 0 0 0 +-7.714 7.042 -1.806 0 0 0 0 0 0 0 +-7.724 7.007 -1.803 0 0 0 0 0 0 0 +-7.761 6.996 -1.806 0 0 0 0 0 0 0 +-7.775 6.965 -1.804 0 0 0 0 0 0 0 +-7.798 6.964 -1.807 0 0 0 0 0 0 0 +-7.818 6.938 -1.807 0 0 0 0 0 0 0 +-7.859 6.93 -1.812 0 0 0 0 0 0 0 +-7.865 6.891 -1.808 0 0 0 0 0 0 0 +-7.917 6.894 -1.815 0 0 0 0 0 0 0 +-7.927 6.858 -1.812 0 0 0 0 0 0 0 +-7.975 6.857 -1.819 0 0 0 0 0 0 0 +-7.992 6.849 -1.82 0 0 0 0 0 0 0 +-8.018 6.828 -1.822 0 0 0 0 0 0 0 +-8.047 6.809 -1.823 0 0 0 0 0 0 0 +-8.085 6.798 -1.827 0 0 0 0 0 0 0 +-8.12 6.784 -1.831 0 0 0 0 0 0 0 +-8.147 6.763 -1.832 0 0 0 0 0 0 0 +-8.193 6.758 -1.838 0 0 0 0 0 0 0 +-8.223 6.761 -1.843 0 0 0 0 0 0 0 +-8.273 6.759 -1.85 0 0 0 0 0 0 0 +-8.309 6.745 -1.853 0 0 0 0 0 0 0 +-8.341 6.728 -1.856 0 0 0 0 0 0 0 +-8.361 6.7 -1.855 0 0 0 0 0 0 0 +-8.403 6.691 -1.86 0 0 0 0 0 0 0 +-8.407 6.651 -1.856 0 0 0 0 0 0 0 +-8.438 6.654 -1.861 0 0 0 0 0 0 0 +-8.451 6.621 -1.859 0 0 0 0 0 0 0 +-8.496 6.614 -1.865 0 0 0 0 0 0 0 +-8.513 6.584 -1.864 0 0 0 0 0 0 0 +-8.538 6.561 -1.865 0 0 0 0 0 0 0 +-8.563 6.537 -1.866 0 0 0 0 0 0 0 +-8.593 6.518 -1.868 0 0 0 0 0 0 0 +-8.62 6.495 -1.87 0 0 0 0 0 0 0 +-8.635 6.485 -1.871 0 0 0 0 0 0 0 +-8.664 6.465 -1.873 0 0 0 0 0 0 0 +-8.672 6.429 -1.87 0 0 0 0 0 0 0 +-8.706 6.412 -1.874 0 0 0 0 0 0 0 +-8.73 6.387 -1.874 0 0 0 0 0 0 0 +-8.756 6.364 -1.876 0 0 0 0 0 0 0 +-8.786 6.343 -1.878 0 0 0 0 0 0 0 +-8.789 6.325 -1.876 0 0 0 0 0 0 0 +-8.815 6.302 -1.878 0 0 0 0 0 0 0 +-8.829 6.27 -1.876 0 0 0 0 0 0 0 +-8.86 6.25 -1.879 0 0 0 0 0 0 0 +-8.886 6.226 -1.88 0 0 0 0 0 0 0 +-8.912 6.203 -1.882 0 0 0 0 0 0 0 +-8.933 6.176 -1.882 0 0 0 0 0 0 0 +-8.944 6.163 -1.883 0 0 0 0 0 0 0 +-8.965 6.136 -1.883 0 0 0 0 0 0 0 +-8.979 6.105 -1.882 0 0 0 0 0 0 0 +-9.008 6.083 -1.884 0 0 0 0 0 0 0 +-9.027 6.055 -1.884 0 0 0 0 0 0 0 +-9.059 6.035 -1.887 0 0 0 0 0 0 0 +-6.749 4.458 -1.37 0 0 0 0 0 0 0 +-6.74 4.436 -1.367 0 0 0 0 0 0 0 +-6.726 4.397 -1.36 0 0 0 0 0 0 0 +-6.763 4.391 -1.365 0 0 0 0 0 0 0 +-6.785 4.375 -1.367 0 0 0 0 0 0 0 +-6.792 4.349 -1.366 0 0 0 0 0 0 0 +-6.822 4.338 -1.369 0 0 0 0 0 0 0 +-9.164 5.798 -1.879 0 0 0 0 0 0 0 +-9.196 5.798 -1.884 0 0 0 0 0 0 0 +-9.221 5.773 -1.886 0 0 0 0 0 0 0 +-9.238 5.743 -1.886 0 0 0 0 0 0 0 +-9.256 5.714 -1.886 0 0 0 0 0 0 0 +-9.26 5.677 -1.883 0 0 0 0 0 0 0 +-9.28 5.649 -1.883 0 0 0 0 0 0 0 +-9.304 5.624 -1.884 0 0 0 0 0 0 0 +-9.322 5.594 -1.884 0 0 0 0 0 0 0 +-9.322 5.575 -1.883 0 0 0 0 0 0 0 +-9.356 5.556 -1.886 0 0 0 0 0 0 0 +-9.362 5.519 -1.884 0 0 0 0 0 0 0 +-9.383 5.492 -1.884 0 0 0 0 0 0 0 +-9.405 5.465 -1.886 0 0 0 0 0 0 0 +-9.425 5.438 -1.886 0 0 0 0 0 0 0 +-9.436 5.404 -1.885 0 0 0 0 0 0 0 +-9.463 5.4 -1.889 0 0 0 0 0 0 0 +-9.473 5.366 -1.887 0 0 0 0 0 0 0 +-9.485 5.334 -1.886 0 0 0 0 0 0 0 +-9.503 5.305 -1.887 0 0 0 0 0 0 0 +-9.518 5.274 -1.886 0 0 0 0 0 0 0 +-9.548 5.252 -1.889 0 0 0 0 0 0 0 +-9.561 5.22 -1.888 0 0 0 0 0 0 0 +-9.552 5.195 -1.885 0 0 0 0 0 0 0 +-9.582 5.173 -1.888 0 0 0 0 0 0 0 +-9.595 5.141 -1.887 0 0 0 0 0 0 0 +-9.616 5.113 -1.888 0 0 0 0 0 0 0 +-9.631 5.082 -1.888 0 0 0 0 0 0 0 +-9.645 5.051 -1.887 0 0 0 0 0 0 0 +-9.655 5.018 -1.886 0 0 0 0 0 0 0 +-9.642 4.992 -1.882 0 0 0 0 0 0 0 +-9.653 4.959 -1.881 0 0 0 0 0 0 0 +-7.321 3.696 -1.391 0 0 0 0 0 0 0 +-7.345 3.679 -1.393 0 0 0 0 0 0 0 +-9.677 4.819 -1.873 0 0 0 0 0 0 0 +-9.754 4.819 -1.886 0 0 0 0 0 0 0 +-9.788 4.817 -1.891 0 0 0 0 0 0 0 +-9.824 4.796 -1.896 0 0 0 0 0 0 0 +-9.802 4.747 -1.888 0 0 0 0 0 0 0 +-9.826 4.721 -1.89 0 0 0 0 0 0 0 +-9.839 4.689 -1.89 0 0 0 0 0 0 0 +-9.847 4.655 -1.888 0 0 0 0 0 0 0 +-9.863 4.624 -1.888 0 0 0 0 0 0 0 +-9.865 4.606 -1.887 0 0 0 0 0 0 0 +-9.883 4.577 -1.888 0 0 0 0 0 0 0 +-9.899 4.547 -1.888 0 0 0 0 0 0 0 +-9.91 4.514 -1.888 0 0 0 0 0 0 0 +-9.915 4.479 -1.886 0 0 0 0 0 0 0 +-9.932 4.449 -1.887 0 0 0 0 0 0 0 +-9.952 4.421 -1.888 0 0 0 0 0 0 0 +-9.959 4.405 -1.888 0 0 0 0 0 0 0 +-9.971 4.373 -1.887 0 0 0 0 0 0 0 +-9.979 4.339 -1.886 0 0 0 0 0 0 0 +-10 4.311 -1.888 0 0 0 0 0 0 0 +-9.997 4.272 -1.884 0 0 0 0 0 0 0 +-10.023 4.246 -1.887 0 0 0 0 0 0 0 +-10.024 4.21 -1.884 0 0 0 0 0 0 0 +-10.025 4.191 -1.883 0 0 0 0 0 0 0 +-10.04 4.161 -1.884 0 0 0 0 0 0 0 +-10.053 4.129 -1.884 0 0 0 0 0 0 0 +-10.055 4.093 -1.882 0 0 0 0 0 0 0 +-10.069 4.062 -1.882 0 0 0 0 0 0 0 +-10.091 4.034 -1.884 0 0 0 0 0 0 0 +-10.082 3.994 -1.879 0 0 0 0 0 0 0 +-10.095 3.981 -1.881 0 0 0 0 0 0 0 +-10.115 3.952 -1.882 0 0 0 0 0 0 0 +-10.118 3.917 -1.88 0 0 0 0 0 0 0 +-10.103 3.874 -1.875 0 0 0 0 0 0 0 +-10.119 3.844 -1.876 0 0 0 0 0 0 0 +-10.105 3.802 -1.871 0 0 0 0 0 0 0 +-10.123 3.773 -1.872 0 0 0 0 0 0 0 +-10.134 3.741 -1.872 0 0 0 0 0 0 0 +-10.129 3.721 -1.87 0 0 0 0 0 0 0 +-10.146 3.691 -1.871 0 0 0 0 0 0 0 +-10.173 3.664 -1.874 0 0 0 0 0 0 0 +-10.181 3.631 -1.873 0 0 0 0 0 0 0 +-10.192 3.599 -1.873 0 0 0 0 0 0 0 +-10.214 3.571 -1.875 0 0 0 0 0 0 0 +-10.216 3.536 -1.873 0 0 0 0 0 0 0 +-10.218 3.518 -1.872 0 0 0 0 0 0 0 +-10.274 3.501 -1.881 0 0 0 0 0 0 0 +-10.266 3.463 -1.878 0 0 0 0 0 0 0 +-10.294 3.436 -1.881 0 0 0 0 0 0 0 +-10.315 3.408 -1.883 0 0 0 0 0 0 0 +-10.287 3.362 -1.875 0 0 0 0 0 0 0 +-10.339 3.343 -1.883 0 0 0 0 0 0 0 +-10.355 3.313 -1.884 0 0 0 0 0 0 0 +-10.326 3.286 -1.878 0 0 0 0 0 0 0 +-10.348 3.257 -1.88 0 0 0 0 0 0 0 +-10.371 3.228 -1.883 0 0 0 0 0 0 0 +-10.375 3.194 -1.882 0 0 0 0 0 0 0 +-10.391 3.163 -1.883 0 0 0 0 0 0 0 +-10.412 3.134 -1.885 0 0 0 0 0 0 0 +-10.409 3.097 -1.882 0 0 0 0 0 0 0 +-10.433 3.086 -1.886 0 0 0 0 0 0 0 +-10.44 3.053 -1.886 0 0 0 0 0 0 0 +-10.448 3.02 -1.885 0 0 0 0 0 0 0 +-10.465 2.989 -1.887 0 0 0 0 0 0 0 +-10.465 2.953 -1.885 0 0 0 0 0 0 0 +-10.472 2.92 -1.884 0 0 0 0 0 0 0 +-10.241 2.82 -1.838 0 0 0 0 0 0 0 +-9.813 2.685 -1.755 0 0 0 0 0 0 0 +-9.751 2.635 -1.742 0 0 0 0 0 0 0 +-9.746 2.6 -1.739 0 0 0 0 0 0 0 +-9.746 2.568 -1.738 0 0 0 0 0 0 0 +-8.756 2.275 -1.547 0 0 0 0 0 0 0 +-8.356 2.141 -1.469 0 0 0 0 0 0 0 +-8.111 2.051 -1.421 0 0 0 0 0 0 0 +-7.763 1.949 -1.355 0 0 0 0 0 0 0 +-7.365 1.823 -1.277 0 0 0 0 0 0 0 +-7.197 1.757 -1.244 0 0 0 0 0 0 0 +-7.143 1.72 -1.233 0 0 0 0 0 0 0 +-9.026 2.15 -1.59 0 0 0 0 0 0 0 +-9.029 2.121 -1.589 0 0 0 0 0 0 0 +-6.926 1.54 -1.187 0 0 0 0 0 0 0 +-6.908 1.513 -1.182 0 0 0 0 0 0 0 +-6.938 1.497 -1.187 0 0 0 0 0 0 0 +-6.939 1.475 -1.186 0 0 0 0 0 0 0 +-6.976 1.46 -1.192 0 0 0 0 0 0 0 +-7 1.442 -1.196 0 0 0 0 0 0 0 +-6.992 1.429 -1.194 0 0 0 0 0 0 0 +-7.039 1.416 -1.202 0 0 0 0 0 0 0 +-6.986 1.382 -1.191 0 0 0 0 0 0 0 +-7 1.362 -1.193 0 0 0 0 0 0 0 +-7.066 1.329 -1.204 0 0 0 0 0 0 0 +-6.981 1.29 -1.187 0 0 0 0 0 0 0 +-7.105 1.279 -1.209 0 0 0 0 0 0 0 +-7.074 1.25 -1.203 0 0 0 0 0 0 0 +-6.867 1.19 -1.163 0 0 0 0 0 0 0 +-6.913 1.154 -1.171 0 0 0 0 0 0 0 +-6.927 1.134 -1.172 0 0 0 0 0 0 0 +-6.95 1.126 -1.176 0 0 0 0 0 0 0 +-6.938 1.102 -1.174 0 0 0 0 0 0 0 +-6.912 1.076 -1.168 0 0 0 0 0 0 0 +-6.923 1.055 -1.17 0 0 0 0 0 0 0 +-6.942 1.036 -1.172 0 0 0 0 0 0 0 +-6.982 1.019 -1.179 0 0 0 0 0 0 0 +-7.052 1.007 -1.192 0 0 0 0 0 0 0 +-7.047 0.995 -1.191 0 0 0 0 0 0 0 +-7.083 0.978 -1.197 0 0 0 0 0 0 0 +-7.049 0.95 -1.19 0 0 0 0 0 0 0 +-7.043 0.927 -1.188 0 0 0 0 0 0 0 +-7.087 0.91 -1.196 0 0 0 0 0 0 0 +-7.091 0.888 -1.196 0 0 0 0 0 0 0 +-7.106 0.867 -1.198 0 0 0 0 0 0 0 +-7.128 0.847 -1.202 0 0 0 0 0 0 0 +-7.15 0.827 -1.205 0 0 0 0 0 0 0 +-7.043 0.781 -1.185 0 0 0 0 0 0 0 +-7.143 0.77 -1.203 0 0 0 0 0 0 0 +-7.176 0.751 -1.209 0 0 0 0 0 0 0 +-7.167 0.727 -1.207 0 0 0 0 0 0 0 +-7.169 0.704 -1.207 0 0 0 0 0 0 0 +-7.158 0.68 -1.204 0 0 0 0 0 0 0 +-7.192 0.672 -1.21 0 0 0 0 0 0 0 +-7.196 0.65 -1.211 0 0 0 0 0 0 0 +-7.196 0.627 -1.21 0 0 0 0 0 0 0 +-7.208 0.605 -1.212 0 0 0 0 0 0 0 +-7.22 0.584 -1.214 0 0 0 0 0 0 0 +-7.2 0.559 -1.21 0 0 0 0 0 0 0 +-7.227 0.539 -1.215 0 0 0 0 0 0 0 +-7.24 0.528 -1.217 0 0 0 0 0 0 0 +-7.257 0.507 -1.22 0 0 0 0 0 0 0 +-7.235 0.482 -1.215 0 0 0 0 0 0 0 +-7.24 0.46 -1.216 0 0 0 0 0 0 0 +-7.236 0.436 -1.215 0 0 0 0 0 0 0 +-7.239 0.414 -1.215 0 0 0 0 0 0 0 +-7.502 0.394 -1.264 0 0 0 0 0 0 0 +-7.44 0.367 -1.252 0 0 0 0 0 0 0 +-7.518 0.348 -1.266 0 0 0 0 0 0 0 +-7.494 0.323 -1.261 0 0 0 0 0 0 0 +-7.548 0.302 -1.271 0 0 0 0 0 0 0 +-7.533 0.278 -1.268 0 0 0 0 0 0 0 +-7.526 0.254 -1.267 0 0 0 0 0 0 0 +-7.552 0.243 -1.272 0 0 0 0 0 0 0 +-7.584 0.22 -1.277 0 0 0 0 0 0 0 +-7.636 0.198 -1.287 0 0 0 0 0 0 0 +-7.617 0.173 -1.283 0 0 0 0 0 0 0 +-7.572 0.148 -1.275 0 0 0 0 0 0 0 +-11.406 0.129 -1.983 0 0 0 0 0 0 0 +-11.449 0.111 -1.991 0 0 0 0 0 0 0 +-11.457 0.075 -1.993 0 0 0 0 0 0 0 +-11.458 0.039 -1.993 0 0 0 0 0 0 0 +-11.45 0.003 -1.991 0 0 0 0 0 0 0 +-11.454 -0.033 -1.992 0 0 0 0 0 0 0 +-11.459 -0.069 -1.993 0 0 0 0 0 0 0 +-11.463 -0.105 -1.994 0 0 0 0 0 0 0 +-11.459 -0.123 -1.993 0 0 0 0 0 0 0 +-11.466 -0.159 -1.995 0 0 0 0 0 0 0 +-11.456 -0.194 -1.993 0 0 0 0 0 0 0 +-11.465 -0.231 -1.995 0 0 0 0 0 0 0 +-11.459 -0.267 -1.993 0 0 0 0 0 0 0 +-11.477 -0.303 -1.997 0 0 0 0 0 0 0 +-11.464 -0.339 -1.995 0 0 0 0 0 0 0 +-11.476 -0.357 -1.997 0 0 0 0 0 0 0 +-11.467 -0.393 -1.996 0 0 0 0 0 0 0 +-11.461 -0.429 -1.995 0 0 0 0 0 0 0 +-11.476 -0.465 -1.998 0 0 0 0 0 0 0 +-11.462 -0.501 -1.996 0 0 0 0 0 0 0 +-11.465 -0.537 -1.996 0 0 0 0 0 0 0 +-11.475 -0.574 -1.999 0 0 0 0 0 0 0 +-11.46 -0.591 -1.996 0 0 0 0 0 0 0 +-11.462 -0.627 -1.997 0 0 0 0 0 0 0 +-11.46 -0.663 -1.997 0 0 0 0 0 0 0 +-11.466 -0.7 -1.998 0 0 0 0 0 0 0 +-11.469 -0.736 -1.999 0 0 0 0 0 0 0 +-11.479 -0.773 -2.001 0 0 0 0 0 0 0 +-11.449 -0.807 -1.996 0 0 0 0 0 0 0 +-11.469 -0.827 -2 0 0 0 0 0 0 0 +-11.457 -0.862 -1.999 0 0 0 0 0 0 0 +-11.456 -0.898 -1.999 0 0 0 0 0 0 0 +-11.459 -0.934 -2 0 0 0 0 0 0 0 +-11.458 -0.971 -2 0 0 0 0 0 0 0 +-11.447 -1.006 -1.999 0 0 0 0 0 0 0 +-11.45 -1.042 -2 0 0 0 0 0 0 0 +-11.446 -1.06 -2 0 0 0 0 0 0 0 +-11.454 -1.097 -2.002 0 0 0 0 0 0 0 +-11.439 -1.132 -2 0 0 0 0 0 0 0 +-11.457 -1.17 -2.004 0 0 0 0 0 0 0 +-11.447 -1.206 -2.003 0 0 0 0 0 0 0 +-11.448 -1.242 -2.003 0 0 0 0 0 0 0 +-11.434 -1.277 -2.001 0 0 0 0 0 0 0 +-11.444 -1.296 -2.004 0 0 0 0 0 0 0 +-11.434 -1.331 -2.003 0 0 0 0 0 0 0 +-11.445 -1.369 -2.005 0 0 0 0 0 0 0 +-11.427 -1.403 -2.003 0 0 0 0 0 0 0 +-11.44 -1.441 -2.006 0 0 0 0 0 0 0 +-11.428 -1.476 -2.005 0 0 0 0 0 0 0 +-11.431 -1.513 -2.006 0 0 0 0 0 0 0 +-11.428 -1.55 -2.007 0 0 0 0 0 0 0 +-11.437 -1.569 -2.009 0 0 0 0 0 0 0 +-11.432 -1.605 -2.009 0 0 0 0 0 0 0 +-11.437 -1.642 -2.011 0 0 0 0 0 0 0 +-11.418 -1.676 -2.008 0 0 0 0 0 0 0 +-11.418 -1.713 -2.009 0 0 0 0 0 0 0 +-11.413 -1.749 -2.009 0 0 0 0 0 0 0 +-11.409 -1.785 -2.009 0 0 0 0 0 0 0 +-11.407 -1.803 -2.009 0 0 0 0 0 0 0 +-11.418 -1.841 -2.013 0 0 0 0 0 0 0 +-11.409 -1.877 -2.012 0 0 0 0 0 0 0 +-11.408 -1.913 -2.013 0 0 0 0 0 0 0 +-11.397 -1.948 -2.012 0 0 0 0 0 0 0 +-11.388 -1.984 -2.012 0 0 0 0 0 0 0 +-11.382 -2.02 -2.012 0 0 0 0 0 0 0 +-11.375 -2.037 -2.011 0 0 0 0 0 0 0 +-11.38 -2.075 -2.013 0 0 0 0 0 0 0 +-11.376 -2.111 -2.013 0 0 0 0 0 0 0 +-11.365 -2.146 -2.013 0 0 0 0 0 0 0 +-11.37 -2.184 -2.015 0 0 0 0 0 0 0 +-11.359 -2.219 -2.014 0 0 0 0 0 0 0 +-11.358 -2.255 -2.015 0 0 0 0 0 0 0 +-11.345 -2.271 -2.013 0 0 0 0 0 0 0 +-11.336 -2.307 -2.013 0 0 0 0 0 0 0 +-11.328 -2.342 -2.013 0 0 0 0 0 0 0 +-11.317 -2.377 -2.012 0 0 0 0 0 0 0 +-11.319 -2.414 -2.014 0 0 0 0 0 0 0 +-11.304 -2.448 -2.013 0 0 0 0 0 0 0 +-11.296 -2.484 -2.013 0 0 0 0 0 0 0 +-11.296 -2.502 -2.013 0 0 0 0 0 0 0 +-11.282 -2.537 -2.012 0 0 0 0 0 0 0 +-11.278 -2.573 -2.013 0 0 0 0 0 0 0 +-11.27 -2.608 -2.013 0 0 0 0 0 0 0 +-11.25 -2.641 -2.011 0 0 0 0 0 0 0 +-11.257 -2.68 -2.014 0 0 0 0 0 0 0 +-11.245 -2.714 -2.013 0 0 0 0 0 0 0 +-11.248 -2.734 -2.015 0 0 0 0 0 0 0 +-11.236 -2.768 -2.014 0 0 0 0 0 0 0 +-11.225 -2.803 -2.013 0 0 0 0 0 0 0 +-11.218 -2.839 -2.014 0 0 0 0 0 0 0 +-11.215 -2.876 -2.015 0 0 0 0 0 0 0 +-11.196 -2.908 -2.013 0 0 0 0 0 0 0 +-11.233 -2.955 -2.022 0 0 0 0 0 0 0 +-11.196 -2.965 -2.016 0 0 0 0 0 0 0 +-11.181 -2.998 -2.015 0 0 0 0 0 0 0 +-11.177 -3.035 -2.016 0 0 0 0 0 0 0 +-11.188 -3.076 -2.02 0 0 0 0 0 0 0 +-11.156 -3.104 -2.015 0 0 0 0 0 0 0 +-11.144 -3.139 -2.015 0 0 0 0 0 0 0 +-11.128 -3.172 -2.014 0 0 0 0 0 0 0 +-11.122 -3.189 -2.013 0 0 0 0 0 0 0 +-11.108 -3.223 -2.013 0 0 0 0 0 0 0 +-11.101 -3.259 -2.013 0 0 0 0 0 0 0 +-11.115 -3.301 -2.018 0 0 0 0 0 0 0 +-11.082 -3.329 -2.014 0 0 0 0 0 0 0 +-11.095 -3.371 -2.018 0 0 0 0 0 0 0 +-11.048 -3.395 -2.011 0 0 0 0 0 0 0 +-11.039 -3.411 -2.011 0 0 0 0 0 0 0 +-11.019 -3.443 -2.009 0 0 0 0 0 0 0 +-11.012 -3.479 -2.009 0 0 0 0 0 0 0 +-11.003 -3.514 -2.01 0 0 0 0 0 0 0 +-11.02 -3.557 -2.015 0 0 0 0 0 0 0 +-10.977 -3.582 -2.009 0 0 0 0 0 0 0 +-11.001 -3.628 -2.016 0 0 0 0 0 0 0 +-10.954 -3.651 -2.009 0 0 0 0 0 0 0 +-10.937 -3.664 -2.007 0 0 0 0 0 0 0 +-10.929 -3.7 -2.008 0 0 0 0 0 0 0 +-10.938 -3.741 -2.012 0 0 0 0 0 0 0 +-10.9 -3.766 -2.007 0 0 0 0 0 0 0 +-10.92 -3.812 -2.013 0 0 0 0 0 0 0 +-10.906 -3.845 -2.012 0 0 0 0 0 0 0 +-10.883 -3.875 -2.01 0 0 0 0 0 0 0 +-10.875 -3.892 -2.01 0 0 0 0 0 0 0 +-10.868 -3.928 -2.011 0 0 0 0 0 0 0 +-10.82 -3.949 -2.004 0 0 0 0 0 0 0 +-10.806 -3.983 -2.004 0 0 0 0 0 0 0 +-10.825 -4.028 -2.01 0 0 0 0 0 0 0 +-10.799 -4.057 -2.007 0 0 0 0 0 0 0 +-10.79 -4.093 -2.008 0 0 0 0 0 0 0 +-10.786 -4.11 -2.008 0 0 0 0 0 0 0 +-10.729 -4.127 -2 0 0 0 0 0 0 0 +-10.747 -4.173 -2.006 0 0 0 0 0 0 0 +-10.741 -4.21 -2.007 0 0 0 0 0 0 0 +-10.685 -4.227 -1.999 0 0 0 0 0 0 0 +-10.689 -4.267 -2.002 0 0 0 0 0 0 0 +-10.644 -4.288 -1.996 0 0 0 0 0 0 0 +-10.634 -4.303 -1.995 0 0 0 0 0 0 0 +-10.649 -4.349 -2.001 0 0 0 0 0 0 0 +-10.601 -4.368 -1.994 0 0 0 0 0 0 0 +-10.585 -4.4 -1.994 0 0 0 0 0 0 0 +-10.59 -4.441 -1.997 0 0 0 0 0 0 0 +-10.538 -4.458 -1.99 0 0 0 0 0 0 0 +-10.533 -4.495 -1.992 0 0 0 0 0 0 0 +-10.518 -4.509 -1.99 0 0 0 0 0 0 0 +-10.502 -4.541 -1.99 0 0 0 0 0 0 0 +-10.492 -4.576 -1.991 0 0 0 0 0 0 0 +-10.459 -4.601 -1.987 0 0 0 0 0 0 0 +-10.427 -4.625 -1.983 0 0 0 0 0 0 0 +-10.398 -4.652 -1.98 0 0 0 0 0 0 0 +-10.378 -4.682 -1.979 0 0 0 0 0 0 0 +-10.358 -4.693 -1.977 0 0 0 0 0 0 0 +-10.343 -4.725 -1.977 0 0 0 0 0 0 0 +-10.317 -4.753 -1.975 0 0 0 0 0 0 0 +-10.297 -4.783 -1.973 0 0 0 0 0 0 0 +-10.271 -4.81 -1.971 0 0 0 0 0 0 0 +-10.251 -4.84 -1.97 0 0 0 0 0 0 0 +-10.23 -4.869 -1.969 0 0 0 0 0 0 0 +-10.219 -4.884 -1.968 0 0 0 0 0 0 0 +-10.214 -4.921 -1.971 0 0 0 0 0 0 0 +-10.184 -4.946 -1.968 0 0 0 0 0 0 0 +-10.167 -4.977 -1.967 0 0 0 0 0 0 0 +-10.141 -5.004 -1.965 0 0 0 0 0 0 0 +-10.123 -5.035 -1.965 0 0 0 0 0 0 0 +-10.106 -5.066 -1.964 0 0 0 0 0 0 0 +-10.09 -5.098 -1.964 0 0 0 0 0 0 0 +-10.071 -5.108 -1.962 0 0 0 0 0 0 0 +-10.059 -5.142 -1.963 0 0 0 0 0 0 0 +-10.041 -5.172 -1.963 0 0 0 0 0 0 0 +-10.03 -5.206 -1.964 0 0 0 0 0 0 0 +-9.997 -5.23 -1.96 0 0 0 0 0 0 0 +-9.984 -5.263 -1.961 0 0 0 0 0 0 0 +-9.97 -5.295 -1.962 0 0 0 0 0 0 0 +-9.963 -5.312 -1.962 0 0 0 0 0 0 0 +-9.95 -5.345 -1.963 0 0 0 0 0 0 0 +-9.936 -5.378 -1.963 0 0 0 0 0 0 0 +-9.911 -5.405 -1.962 0 0 0 0 0 0 0 +-9.885 -5.431 -1.96 0 0 0 0 0 0 0 +-9.859 -5.457 -1.958 0 0 0 0 0 0 0 +-9.856 -5.496 -1.961 0 0 0 0 0 0 0 +-9.821 -5.497 -1.955 0 0 0 0 0 0 0 +-9.808 -5.53 -1.956 0 0 0 0 0 0 0 +-9.783 -5.557 -1.955 0 0 0 0 0 0 0 +-9.768 -5.588 -1.955 0 0 0 0 0 0 0 +-9.745 -5.616 -1.954 0 0 0 0 0 0 0 +-9.727 -5.647 -1.954 0 0 0 0 0 0 0 +-9.711 -5.678 -1.954 0 0 0 0 0 0 0 +-9.694 -5.688 -1.952 0 0 0 0 0 0 0 +-9.676 -5.719 -1.952 0 0 0 0 0 0 0 +-9.644 -5.741 -1.95 0 0 0 0 0 0 0 +-9.618 -5.766 -1.948 0 0 0 0 0 0 0 +-9.596 -5.795 -1.947 0 0 0 0 0 0 0 +-9.566 -5.818 -1.944 0 0 0 0 0 0 0 +-9.549 -5.849 -1.945 0 0 0 0 0 0 0 +-9.523 -5.853 -1.941 0 0 0 0 0 0 0 +-9.49 -5.874 -1.938 0 0 0 0 0 0 0 +-9.5 -5.921 -1.944 0 0 0 0 0 0 0 +-9.433 -5.921 -1.934 0 0 0 0 0 0 0 +-9.434 -5.963 -1.938 0 0 0 0 0 0 0 +-9.404 -5.985 -1.935 0 0 0 0 0 0 0 +-9.343 -5.988 -1.926 0 0 0 0 0 0 0 +-9.362 -6.021 -1.932 0 0 0 0 0 0 0 +-9.338 -6.047 -1.931 0 0 0 0 0 0 0 +-9.306 -6.068 -1.928 0 0 0 0 0 0 0 +-9.265 -6.083 -1.924 0 0 0 0 0 0 0 +-9.25 -6.114 -1.924 0 0 0 0 0 0 0 +-9.219 -6.136 -1.922 0 0 0 0 0 0 0 +-9.196 -6.163 -1.921 0 0 0 0 0 0 0 +-9.185 -6.176 -1.921 0 0 0 0 0 0 0 +-9.144 -6.191 -1.916 0 0 0 0 0 0 0 +-9.123 -6.218 -1.916 0 0 0 0 0 0 0 +-9.1 -6.245 -1.915 0 0 0 0 0 0 0 +-9.071 -6.266 -1.913 0 0 0 0 0 0 0 +-9.051 -6.295 -1.913 0 0 0 0 0 0 0 +-9.044 -6.332 -1.916 0 0 0 0 0 0 0 +-9.02 -6.357 -1.915 0 0 0 0 0 0 0 +-9.014 -6.375 -1.916 0 0 0 0 0 0 0 +-9.006 -6.411 -1.918 0 0 0 0 0 0 0 +-8.969 -6.428 -1.915 0 0 0 0 0 0 0 +-8.944 -6.453 -1.914 0 0 0 0 0 0 0 +-8.921 -6.478 -1.913 0 0 0 0 0 0 0 +-8.881 -6.493 -1.908 0 0 0 0 0 0 0 +-8.861 -6.52 -1.908 0 0 0 0 0 0 0 +-8.843 -6.528 -1.907 0 0 0 0 0 0 0 +-8.8 -6.54 -1.902 0 0 0 0 0 0 0 +-8.776 -6.565 -1.901 0 0 0 0 0 0 0 +-8.734 -6.576 -1.896 0 0 0 0 0 0 0 +-8.686 -6.583 -1.89 0 0 0 0 0 0 0 +-8.645 -6.595 -1.885 0 0 0 0 0 0 0 +-8.631 -6.627 -1.886 0 0 0 0 0 0 0 +-8.595 -6.622 -1.88 0 0 0 0 0 0 0 +-8.582 -6.655 -1.882 0 0 0 0 0 0 0 +-8.55 -6.673 -1.88 0 0 0 0 0 0 0 +-8.517 -6.69 -1.877 0 0 0 0 0 0 0 +-8.499 -6.719 -1.878 0 0 0 0 0 0 0 +-8.47 -6.74 -1.876 0 0 0 0 0 0 0 +-8.435 -6.755 -1.872 0 0 0 0 0 0 0 +-8.429 -6.772 -1.874 0 0 0 0 0 0 0 +-8.371 -6.769 -1.865 0 0 0 0 0 0 0 +-8.35 -6.795 -1.865 0 0 0 0 0 0 0 +-8.328 -6.822 -1.865 0 0 0 0 0 0 0 +-8.308 -6.849 -1.865 0 0 0 0 0 0 0 +-8.276 -6.866 -1.863 0 0 0 0 0 0 0 +-8.261 -6.897 -1.864 0 0 0 0 0 0 0 +-8.26 -6.919 -1.867 0 0 0 0 0 0 0 +-8.219 -6.929 -1.862 0 0 0 0 0 0 0 +-8.194 -6.952 -1.861 0 0 0 0 0 0 0 +-8.169 -6.975 -1.86 0 0 0 0 0 0 0 +-8.149 -7.002 -1.861 0 0 0 0 0 0 0 +-8.121 -7.022 -1.859 0 0 0 0 0 0 0 +-8.079 -7.031 -1.855 0 0 0 0 0 0 0 +-8.082 -7.055 -1.858 0 0 0 0 0 0 0 +-8.048 -7.07 -1.855 0 0 0 0 0 0 0 +-8.034 -7.103 -1.857 0 0 0 0 0 0 0 +-7.991 -7.11 -1.852 0 0 0 0 0 0 0 +-7.989 -7.154 -1.857 0 0 0 0 0 0 0 +-7.946 -7.16 -1.852 0 0 0 0 0 0 0 +-7.938 -7.199 -1.856 0 0 0 0 0 0 0 +-7.917 -7.202 -1.853 0 0 0 0 0 0 0 +-7.907 -7.239 -1.856 0 0 0 0 0 0 0 +-7.869 -7.249 -1.852 0 0 0 0 0 0 0 +-7.863 -7.289 -1.857 0 0 0 0 0 0 0 +-7.826 -7.301 -1.853 0 0 0 0 0 0 0 +-7.819 -7.34 -1.857 0 0 0 0 0 0 0 +-7.778 -7.348 -1.853 0 0 0 0 0 0 0 +-7.787 -7.379 -1.858 0 0 0 0 0 0 0 +-7.751 -7.392 -1.855 0 0 0 0 0 0 0 +-7.745 -7.432 -1.859 0 0 0 0 0 0 0 +-7.707 -7.443 -1.855 0 0 0 0 0 0 0 +-7.696 -7.479 -1.859 0 0 0 0 0 0 0 +-7.667 -7.498 -1.857 0 0 0 0 0 0 0 +-7.66 -7.539 -1.862 0 0 0 0 0 0 0 +-7.635 -7.537 -1.858 0 0 0 0 0 0 0 +-7.626 -7.576 -1.862 0 0 0 0 0 0 0 +-7.595 -7.593 -1.86 0 0 0 0 0 0 0 +-7.577 -7.622 -1.862 0 0 0 0 0 0 0 +-7.546 -7.639 -1.86 0 0 0 0 0 0 0 +-7.539 -7.68 -1.864 0 0 0 0 0 0 0 +-7.502 -7.691 -1.861 0 0 0 0 0 0 0 +-7.507 -7.719 -1.865 0 0 0 0 0 0 0 +-7.484 -7.744 -1.866 0 0 0 0 0 0 0 +-7.44 -7.748 -1.86 0 0 0 0 0 0 0 +-7.439 -7.795 -1.867 0 0 0 0 0 0 0 +-7.405 -7.809 -1.864 0 0 0 0 0 0 0 +-7.388 -7.841 -1.866 0 0 0 0 0 0 0 +-7.354 -7.854 -1.864 0 0 0 0 0 0 0 +-7.361 -7.885 -1.869 0 0 0 0 0 0 0 +-7.329 -7.901 -1.867 0 0 0 0 0 0 0 +-7.315 -7.936 -1.87 0 0 0 0 0 0 0 +-7.302 -7.972 -1.873 0 0 0 0 0 0 0 +-7.3 -8.019 -1.879 0 0 0 0 0 0 0 +-7.27 -8.038 -1.878 0 0 0 0 0 0 0 +-7.249 -8.065 -1.879 0 0 0 0 0 0 0 +-7.247 -8.088 -1.882 0 0 0 0 0 0 0 +-7.214 -8.102 -1.88 0 0 0 0 0 0 0 +-7.174 -8.108 -1.876 0 0 0 0 0 0 0 +-7.137 -8.118 -1.873 0 0 0 0 0 0 0 +-7.084 -8.109 -1.865 0 0 0 0 0 0 0 +-7.063 -8.137 -1.867 0 0 0 0 0 0 0 +-7.057 -8.182 -1.872 0 0 0 0 0 0 0 +-7.021 -8.192 -1.869 0 0 0 0 0 0 0 +-7.016 -8.212 -1.871 0 0 0 0 0 0 0 +-6.98 -8.222 -1.868 0 0 0 0 0 0 0 +-6.95 -8.239 -1.867 0 0 0 0 0 0 0 +-6.92 -8.257 -1.866 0 0 0 0 0 0 0 +-6.882 -8.263 -1.863 0 0 0 0 0 0 0 +-6.862 -8.292 -1.864 0 0 0 0 0 0 0 +-6.822 -8.297 -1.86 0 0 0 0 0 0 0 +-6.822 -8.323 -1.864 0 0 0 0 0 0 0 +-6.777 -8.322 -1.859 0 0 0 0 0 0 0 +-6.769 -8.366 -1.864 0 0 0 0 0 0 0 +-6.725 -8.364 -1.859 0 0 0 0 0 0 0 +-6.707 -8.396 -1.861 0 0 0 0 0 0 0 +-6.668 -8.401 -1.858 0 0 0 0 0 0 0 +-6.644 -8.425 -1.858 0 0 0 0 0 0 0 +-6.626 -8.43 -1.857 0 0 0 0 0 0 0 +-6.613 -8.468 -1.861 0 0 0 0 0 0 0 +-6.571 -8.468 -1.856 0 0 0 0 0 0 0 +-6.551 -8.498 -1.858 0 0 0 0 0 0 0 +-6.512 -8.503 -1.855 0 0 0 0 0 0 0 +-6.483 -8.52 -1.854 0 0 0 0 0 0 0 +-6.454 -8.537 -1.853 0 0 0 0 0 0 0 +-6.45 -8.56 -1.856 0 0 0 0 0 0 0 +-6.401 -8.55 -1.849 0 0 0 0 0 0 0 +-6.382 -8.582 -1.852 0 0 0 0 0 0 0 +-6.35 -8.595 -1.85 0 0 0 0 0 0 0 +-6.327 -8.62 -1.851 0 0 0 0 0 0 0 +-6.288 -8.624 -1.848 0 0 0 0 0 0 0 +-6.275 -8.663 -1.852 0 0 0 0 0 0 0 +-6.242 -8.645 -1.846 0 0 0 0 0 0 0 +-6.223 -8.676 -1.848 0 0 0 0 0 0 0 +-6.19 -8.688 -1.847 0 0 0 0 0 0 0 +-6.163 -8.709 -1.847 0 0 0 0 0 0 0 +-6.131 -8.722 -1.846 0 0 0 0 0 0 0 +-6.114 -8.755 -1.849 0 0 0 0 0 0 0 +-6.069 -8.749 -1.843 0 0 0 0 0 0 0 +-6.068 -8.778 -1.847 0 0 0 0 0 0 0 +-6.046 -8.805 -1.849 0 0 0 0 0 0 0 +-6.01 -8.811 -1.846 0 0 0 0 0 0 0 +-5.974 -8.818 -1.844 0 0 0 0 0 0 0 +-5.967 -8.868 -1.851 0 0 0 0 0 0 0 +-5.93 -8.872 -1.847 0 0 0 0 0 0 0 +-5.932 -8.936 -1.858 0 0 0 0 0 0 0 +-5.929 -8.962 -1.861 0 0 0 0 0 0 0 +-5.89 -8.964 -1.858 0 0 0 0 0 0 0 +-5.859 -8.978 -1.856 0 0 0 0 0 0 0 +-5.846 -9.019 -1.862 0 0 0 0 0 0 0 +-5.798 -9.008 -1.855 0 0 0 0 0 0 0 +-5.748 -8.993 -1.848 0 0 0 0 0 0 0 +-5.703 -8.984 -1.842 0 0 0 0 0 0 0 +-5.667 -8.958 -1.834 0 0 0 0 0 0 0 +-5.635 -8.969 -1.833 0 0 0 0 0 0 0 +-5.6 -8.977 -1.831 0 0 0 0 0 0 0 +-5.566 -8.985 -1.828 0 0 0 0 0 0 0 +-5.543 -9.01 -1.83 0 0 0 0 0 0 0 +-5.511 -9.023 -1.829 0 0 0 0 0 0 0 +-5.476 -9.028 -1.827 0 0 0 0 0 0 0 +-5.46 -9.035 -1.826 0 0 0 0 0 0 0 +-5.43 -9.049 -1.826 0 0 0 0 0 0 0 +-5.391 -9.049 -1.822 0 0 0 0 0 0 0 +-5.35 -9.044 -1.817 0 0 0 0 0 0 0 +-5.349 -9.108 -1.827 0 0 0 0 0 0 0 +-5.313 -9.111 -1.824 0 0 0 0 0 0 0 +-5.293 -9.143 -1.828 0 0 0 0 0 0 0 +-5.27 -9.136 -1.824 0 0 0 0 0 0 0 +-5.233 -9.139 -1.822 0 0 0 0 0 0 0 +-5.209 -9.164 -1.823 0 0 0 0 0 0 0 +-5.18 -9.179 -1.823 0 0 0 0 0 0 0 +-5.147 -9.188 -1.822 0 0 0 0 0 0 0 +-5.114 -9.197 -1.82 0 0 0 0 0 0 0 +-5.078 -9.201 -1.818 0 0 0 0 0 0 0 +-5.07 -9.22 -1.82 0 0 0 0 0 0 0 +-5.043 -9.239 -1.82 0 0 0 0 0 0 0 +-5.007 -9.243 -1.818 0 0 0 0 0 0 0 +-4.982 -9.265 -1.819 0 0 0 0 0 0 0 +-4.95 -9.276 -1.818 0 0 0 0 0 0 0 +-4.917 -9.284 -1.817 0 0 0 0 0 0 0 +-4.883 -9.291 -1.815 0 0 0 0 0 0 0 +-4.871 -9.304 -1.816 0 0 0 0 0 0 0 +-4.837 -9.309 -1.814 0 0 0 0 0 0 0 +-4.808 -9.325 -1.814 0 0 0 0 0 0 0 +-4.774 -9.332 -1.812 0 0 0 0 0 0 0 +-4.736 -9.329 -1.809 0 0 0 0 0 0 0 +-4.708 -9.346 -1.809 0 0 0 0 0 0 0 +-4.68 -9.364 -1.81 0 0 0 0 0 0 0 +-4.648 -9.373 -1.809 0 0 0 0 0 0 0 +-4.642 -9.398 -1.812 0 0 0 0 0 0 0 +-4.61 -9.408 -1.811 0 0 0 0 0 0 0 +-4.582 -9.426 -1.812 0 0 0 0 0 0 0 +-4.549 -9.433 -1.811 0 0 0 0 0 0 0 +-4.518 -9.445 -1.81 0 0 0 0 0 0 0 +-4.491 -9.465 -1.811 0 0 0 0 0 0 0 +-4.47 -9.497 -1.815 0 0 0 0 0 0 0 +-4.456 -9.505 -1.815 0 0 0 0 0 0 0 +-4.427 -9.521 -1.816 0 0 0 0 0 0 0 +-4.406 -9.555 -1.82 0 0 0 0 0 0 0 +-4.401 -9.622 -1.831 0 0 0 0 0 0 0 +-4.379 -9.655 -1.835 0 0 0 0 0 0 0 +-4.346 -9.662 -1.833 0 0 0 0 0 0 0 +-4.339 -9.687 -1.837 0 0 0 0 0 0 0 +-4.322 -9.731 -1.843 0 0 0 0 0 0 0 +-4.304 -9.773 -1.849 0 0 0 0 0 0 0 +-4.275 -9.79 -1.85 0 0 0 0 0 0 0 +-4.229 -9.769 -1.843 0 0 0 0 0 0 0 +-4.173 -9.723 -1.831 0 0 0 0 0 0 0 +-4.131 -9.711 -1.826 0 0 0 0 0 0 0 +-4.101 -9.725 -1.826 0 0 0 0 0 0 0 +-4.082 -9.723 -1.824 0 0 0 0 0 0 0 +-4.058 -9.75 -1.827 0 0 0 0 0 0 0 +-4.015 -9.734 -1.821 0 0 0 0 0 0 0 +-3.992 -9.765 -1.825 0 0 0 0 0 0 0 +-3.953 -9.757 -1.821 0 0 0 0 0 0 0 +-3.929 -9.786 -1.824 0 0 0 0 0 0 0 +-3.889 -9.774 -1.819 0 0 0 0 0 0 0 +-3.88 -9.797 -1.823 0 0 0 0 0 0 0 +-3.847 -9.804 -1.822 0 0 0 0 0 0 0 +-3.816 -9.814 -1.821 0 0 0 0 0 0 0 +-3.78 -9.813 -1.819 0 0 0 0 0 0 0 +-3.755 -9.841 -1.822 0 0 0 0 0 0 0 +-3.722 -9.847 -1.821 0 0 0 0 0 0 0 +-3.686 -9.846 -1.818 0 0 0 0 0 0 0 +-3.675 -9.863 -1.82 0 0 0 0 0 0 0 +-3.639 -9.862 -1.818 0 0 0 0 0 0 0 +-3.609 -9.875 -1.818 0 0 0 0 0 0 0 +-3.578 -9.886 -1.818 0 0 0 0 0 0 0 +-3.549 -9.903 -1.819 0 0 0 0 0 0 0 +-3.512 -9.899 -1.816 0 0 0 0 0 0 0 +-3.488 -9.929 -1.82 0 0 0 0 0 0 0 +-3.462 -9.906 -1.815 0 0 0 0 0 0 0 +-3.434 -9.925 -1.816 0 0 0 0 0 0 0 +-3.4 -9.926 -1.814 0 0 0 0 0 0 0 +-3.373 -9.952 -1.817 0 0 0 0 0 0 0 +-3.34 -9.957 -1.816 0 0 0 0 0 0 0 +-3.305 -9.954 -1.814 0 0 0 0 0 0 0 +-3.278 -9.979 -1.816 0 0 0 0 0 0 0 +-3.254 -9.958 -1.811 0 0 0 0 0 0 0 +-3.23 -9.991 -1.816 0 0 0 0 0 0 0 +-3.189 -9.973 -1.81 0 0 0 0 0 0 0 +-3.162 -9.996 -1.813 0 0 0 0 0 0 0 +-3.134 -10.015 -1.815 0 0 0 0 0 0 0 +-3.1 -10.017 -1.813 0 0 0 0 0 0 0 +-3.063 -10.01 -1.81 0 0 0 0 0 0 0 +-3.057 -10.047 -1.816 0 0 0 0 0 0 0 +-3.02 -10.038 -1.812 0 0 0 0 0 0 0 +-2.998 -10.077 -1.818 0 0 0 0 0 0 0 +-2.976 -10.121 -1.825 0 0 0 0 0 0 0 +-2.944 -10.128 -1.824 0 0 0 0 0 0 0 +-2.912 -10.139 -1.825 0 0 0 0 0 0 0 +-2.898 -10.211 -1.837 0 0 0 0 0 0 0 +-2.897 -10.266 -1.847 0 0 0 0 0 0 0 +-2.846 -10.211 -1.834 0 0 0 0 0 0 0 +-2.786 -10.117 -1.815 0 0 0 0 0 0 0 +-2.753 -10.122 -1.814 0 0 0 0 0 0 0 +-2.706 -10.074 -1.803 0 0 0 0 0 0 0 +-2.667 -10.054 -1.798 0 0 0 0 0 0 0 +-2.626 -10.028 -1.791 0 0 0 0 0 0 0 +-2.616 -10.053 -1.795 0 0 0 0 0 0 0 +-2.576 -10.031 -1.789 0 0 0 0 0 0 0 +-2.549 -10.054 -1.792 0 0 0 0 0 0 0 +-2.509 -10.03 -1.786 0 0 0 0 0 0 0 +-2.482 -10.058 -1.79 0 0 0 0 0 0 0 +-2.445 -10.043 -1.786 0 0 0 0 0 0 0 +-2.414 -10.053 -1.786 0 0 0 0 0 0 0 +-2.394 -10.039 -1.783 0 0 0 0 0 0 0 +-2.367 -10.066 -1.786 0 0 0 0 0 0 0 +-2.336 -10.077 -1.787 0 0 0 0 0 0 0 +-2.296 -10.048 -1.78 0 0 0 0 0 0 0 +-2.27 -10.078 -1.784 0 0 0 0 0 0 0 +-2.236 -10.076 -1.783 0 0 0 0 0 0 0 +-2.2 -10.064 -1.779 0 0 0 0 0 0 0 +-2.188 -10.082 -1.782 0 0 0 0 0 0 0 +-2.156 -10.087 -1.782 0 0 0 0 0 0 0 +-2.12 -10.073 -1.778 0 0 0 0 0 0 0 +-2.09 -10.089 -1.779 0 0 0 0 0 0 0 +-2.053 -10.069 -1.774 0 0 0 0 0 0 0 +-2.026 -10.098 -1.779 0 0 0 0 0 0 0 +-1.994 -10.106 -1.779 0 0 0 0 0 0 0 +-1.973 -10.082 -1.774 0 0 0 0 0 0 0 +-1.944 -10.104 -1.777 0 0 0 0 0 0 0 +-1.908 -10.085 -1.772 0 0 0 0 0 0 0 +-1.879 -10.105 -1.775 0 0 0 0 0 0 0 +-1.847 -10.112 -1.775 0 0 0 0 0 0 0 +-1.812 -10.099 -1.771 0 0 0 0 0 0 0 +-1.783 -10.118 -1.774 0 0 0 0 0 0 0 +-1.763 -10.099 -1.77 0 0 0 0 0 0 0 +-1.736 -10.13 -1.775 0 0 0 0 0 0 0 +-1.7 -10.11 -1.77 0 0 0 0 0 0 0 +-1.666 -10.104 -1.768 0 0 0 0 0 0 0 +-1.639 -10.136 -1.773 0 0 0 0 0 0 0 +-1.609 -10.153 -1.775 0 0 0 0 0 0 0 +-1.577 -10.16 -1.775 0 0 0 0 0 0 0 +-1.56 -10.159 -1.775 0 0 0 0 0 0 0 +-1.528 -10.159 -1.774 0 0 0 0 0 0 0 +-1.497 -10.174 -1.776 0 0 0 0 0 0 0 +-1.465 -10.175 -1.775 0 0 0 0 0 0 0 +-1.433 -10.177 -1.775 0 0 0 0 0 0 0 +-1.403 -10.199 -1.778 0 0 0 0 0 0 0 +-1.37 -10.2 -1.777 0 0 0 0 0 0 0 +-1.356 -10.21 -1.779 0 0 0 0 0 0 0 +-1.323 -10.212 -1.778 0 0 0 0 0 0 0 +-1.291 -10.212 -1.778 0 0 0 0 0 0 0 +-1.259 -10.224 -1.779 0 0 0 0 0 0 0 +-1.228 -10.23 -1.779 0 0 0 0 0 0 0 +-1.195 -10.232 -1.779 0 0 0 0 0 0 0 +-1.164 -10.241 -1.78 0 0 0 0 0 0 0 +-1.132 -10.249 -1.781 0 0 0 0 0 0 0 +-1.115 -10.243 -1.779 0 0 0 0 0 0 0 +-1.084 -10.254 -1.781 0 0 0 0 0 0 0 +-1.051 -10.255 -1.78 0 0 0 0 0 0 0 +-1.02 -10.266 -1.782 0 0 0 0 0 0 0 +-0.989 -10.279 -1.784 0 0 0 0 0 0 0 +-0.956 -10.275 -1.782 0 0 0 0 0 0 0 +-0.923 -10.274 -1.782 0 0 0 0 0 0 0 +-0.908 -10.287 -1.784 0 0 0 0 0 0 0 +-0.876 -10.296 -1.785 0 0 0 0 0 0 0 +-0.844 -10.298 -1.785 0 0 0 0 0 0 0 +-0.814 -10.34 -1.792 0 0 0 0 0 0 0 +-0.782 -10.346 -1.793 0 0 0 0 0 0 0 +-0.747 -10.316 -1.787 0 0 0 0 0 0 0 +-0.734 -10.35 -1.793 0 0 0 0 0 0 0 +-0.702 -10.366 -1.795 0 0 0 0 0 0 0 +-0.669 -10.368 -1.795 0 0 0 0 0 0 0 +-0.638 -10.386 -1.798 0 0 0 0 0 0 0 +-0.606 -10.396 -1.8 0 0 0 0 0 0 0 +-0.573 -10.396 -1.799 0 0 0 0 0 0 0 +-0.54 -10.401 -1.8 0 0 0 0 0 0 0 +-0.508 -10.403 -1.8 0 0 0 0 0 0 0 +-0.492 -10.41 -1.801 0 0 0 0 0 0 0 +-0.46 -10.423 -1.803 0 0 0 0 0 0 0 +-0.427 -10.42 -1.803 0 0 0 0 0 0 0 +-0.394 -10.422 -1.803 0 0 0 0 0 0 0 +-0.361 -10.429 -1.804 0 0 0 0 0 0 0 +-0.329 -10.428 -1.803 0 0 0 0 0 0 0 +-0.296 -10.429 -1.803 0 0 0 0 0 0 0 +-0.278 -10.396 -1.797 0 0 0 0 0 0 0 +-0.247 -10.442 -1.806 0 0 0 0 0 0 0 +-0.213 -10.397 -1.797 0 0 0 0 0 0 0 +-0.181 -10.433 -1.804 0 0 0 0 0 0 0 +-0.148 -10.408 -1.799 0 0 0 0 0 0 0 +-0.115 -10.411 -1.799 0 0 0 0 0 0 0 +-0.083 -10.409 -1.799 0 0 0 0 0 0 0 +-0.067 -10.449 -1.806 0 0 0 0 0 0 0 +-0.033 -10.405 -1.798 0 0 0 0 0 0 0 +-0.001 -10.413 -1.8 0 0 0 0 0 0 0 +0.032 -10.427 -1.802 0 0 0 0 0 0 0 +0.065 -10.468 -1.81 0 0 0 0 0 0 0 +0.098 -10.454 -1.807 0 0 0 0 0 0 0 +0.13 -10.45 -1.807 0 0 0 0 0 0 0 +0.147 -10.462 -1.809 0 0 0 0 0 0 0 +0.18 -10.447 -1.806 0 0 0 0 0 0 0 +0.213 -10.468 -1.81 0 0 0 0 0 0 0 +0.246 -10.464 -1.81 0 0 0 0 0 0 0 +0.279 -10.477 -1.812 0 0 0 0 0 0 0 +0.312 -10.478 -1.812 0 0 0 0 0 0 0 +0.345 -10.477 -1.812 0 0 0 0 0 0 0 +0.362 -10.488 -1.815 0 0 0 0 0 0 0 +0.395 -10.489 -1.815 0 0 0 0 0 0 0 +0.428 -10.489 -1.815 0 0 0 0 0 0 0 +0.461 -10.49 -1.816 0 0 0 0 0 0 0 +0.494 -10.508 -1.819 0 0 0 0 0 0 0 +0.527 -10.502 -1.819 0 0 0 0 0 0 0 +0.56 -10.501 -1.819 0 0 0 0 0 0 0 +0.577 -10.506 -1.82 0 0 0 0 0 0 0 +0.61 -10.504 -1.82 0 0 0 0 0 0 0 +0.643 -10.506 -1.82 0 0 0 0 0 0 0 +0.678 -10.529 -1.825 0 0 0 0 0 0 0 +0.71 -10.511 -1.822 0 0 0 0 0 0 0 +0.743 -10.515 -1.823 0 0 0 0 0 0 0 +0.777 -10.518 -1.824 0 0 0 0 0 0 0 +0.796 -10.554 -1.831 0 0 0 0 0 0 0 +0.83 -10.562 -1.833 0 0 0 0 0 0 0 +0.864 -10.573 -1.836 0 0 0 0 0 0 0 +0.898 -10.574 -1.836 0 0 0 0 0 0 0 +0.931 -10.575 -1.837 0 0 0 0 0 0 0 +0.965 -10.578 -1.838 0 0 0 0 0 0 0 +0.995 -10.54 -1.832 0 0 0 0 0 0 0 +1.015 -10.577 -1.839 0 0 0 0 0 0 0 +1.05 -10.588 -1.842 0 0 0 0 0 0 0 +1.083 -10.584 -1.842 0 0 0 0 0 0 0 +1.113 -10.55 -1.836 0 0 0 0 0 0 0 +1.147 -10.556 -1.838 0 0 0 0 0 0 0 +1.181 -10.556 -1.838 0 0 0 0 0 0 0 +1.215 -10.558 -1.839 0 0 0 0 0 0 0 +1.232 -10.562 -1.84 0 0 0 0 0 0 0 +1.265 -10.556 -1.84 0 0 0 0 0 0 0 +1.297 -10.542 -1.838 0 0 0 0 0 0 0 +1.331 -10.548 -1.84 0 0 0 0 0 0 0 +1.363 -10.536 -1.839 0 0 0 0 0 0 0 +1.396 -10.532 -1.839 0 0 0 0 0 0 0 +1.432 -10.545 -1.842 0 0 0 0 0 0 0 +1.448 -10.541 -1.842 0 0 0 0 0 0 0 +1.483 -10.55 -1.844 0 0 0 0 0 0 0 +1.518 -10.56 -1.847 0 0 0 0 0 0 0 +1.551 -10.55 -1.846 0 0 0 0 0 0 0 +1.586 -10.562 -1.849 0 0 0 0 0 0 0 +1.619 -10.555 -1.849 0 0 0 0 0 0 0 +1.652 -10.548 -1.848 0 0 0 0 0 0 0 +1.67 -10.553 -1.85 0 0 0 0 0 0 0 +1.705 -10.562 -1.852 0 0 0 0 0 0 0 +1.738 -10.552 -1.852 0 0 0 0 0 0 0 +1.774 -10.562 -1.855 0 0 0 0 0 0 0 +1.809 -10.57 -1.857 0 0 0 0 0 0 0 +1.843 -10.571 -1.858 0 0 0 0 0 0 0 +1.879 -10.578 -1.861 0 0 0 0 0 0 0 +1.268 -6.901 -1.172 0 0 0 0 0 0 0 +1.289 -6.893 -1.171 0 0 0 0 0 0 0 +1.27 -6.338 -1.07 0 0 0 0 0 0 0 +1.278 -6.323 -1.067 0 0 0 0 0 0 0 +1.298 -6.321 -1.068 0 0 0 0 0 0 0 +1.319 -6.324 -1.069 0 0 0 0 0 0 0 +1.363 -6.434 -1.091 0 0 0 0 0 0 0 +1.391 -6.468 -1.098 0 0 0 0 0 0 0 +1.412 -6.467 -1.099 0 0 0 0 0 0 0 +1.431 -6.455 -1.097 0 0 0 0 0 0 0 +1.436 -6.43 -1.093 0 0 0 0 0 0 0 +1.449 -6.393 -1.087 0 0 0 0 0 0 0 +1.464 -6.367 -1.083 0 0 0 0 0 0 0 +1.482 -6.355 -1.081 0 0 0 0 0 0 0 +1.5 -6.338 -1.079 0 0 0 0 0 0 0 +1.519 -6.33 -1.078 0 0 0 0 0 0 0 +1.558 -6.407 -1.094 0 0 0 0 0 0 0 +1.576 -6.437 -1.1 0 0 0 0 0 0 0 +1.598 -6.438 -1.101 0 0 0 0 0 0 0 +1.624 -6.458 -1.106 0 0 0 0 0 0 0 +2.621 -10.35 -1.848 0 0 0 0 0 0 0 +2.653 -10.34 -1.848 0 0 0 0 0 0 0 +2.683 -10.32 -1.846 0 0 0 0 0 0 0 +2.718 -10.321 -1.848 0 0 0 0 0 0 0 +2.73 -10.302 -1.845 0 0 0 0 0 0 0 +2.753 -10.257 -1.838 0 0 0 0 0 0 0 +2.788 -10.26 -1.84 0 0 0 0 0 0 0 +2.817 -10.239 -1.838 0 0 0 0 0 0 0 +2.847 -10.221 -1.836 0 0 0 0 0 0 0 +2.872 -10.189 -1.832 0 0 0 0 0 0 0 +2.904 -10.18 -1.832 0 0 0 0 0 0 0 +2.918 -10.168 -1.83 0 0 0 0 0 0 0 +2.94 -10.123 -1.823 0 0 0 0 0 0 0 +2.977 -10.133 -1.827 0 0 0 0 0 0 0 +3.005 -10.11 -1.824 0 0 0 0 0 0 0 +3.034 -10.091 -1.823 0 0 0 0 0 0 0 +3.058 -10.057 -1.818 0 0 0 0 0 0 0 +3.092 -10.055 -1.819 0 0 0 0 0 0 0 +3.103 -10.033 -1.816 0 0 0 0 0 0 0 +3.137 -10.033 -1.818 0 0 0 0 0 0 0 +3.166 -10.015 -1.816 0 0 0 0 0 0 0 +3.19 -9.981 -1.812 0 0 0 0 0 0 0 +3.223 -9.975 -1.812 0 0 0 0 0 0 0 +3.255 -9.968 -1.813 0 0 0 0 0 0 0 +3.283 -9.947 -1.811 0 0 0 0 0 0 0 +3.301 -9.949 -1.812 0 0 0 0 0 0 0 +3.331 -9.935 -1.812 0 0 0 0 0 0 0 +3.354 -9.902 -1.807 0 0 0 0 0 0 0 +3.387 -9.897 -1.808 0 0 0 0 0 0 0 +3.416 -9.879 -1.807 0 0 0 0 0 0 0 +3.443 -9.855 -1.804 0 0 0 0 0 0 0 +3.475 -9.848 -1.805 0 0 0 0 0 0 0 +3.49 -9.84 -1.805 0 0 0 0 0 0 0 +3.517 -9.818 -1.803 0 0 0 0 0 0 0 +3.541 -9.791 -1.799 0 0 0 0 0 0 0 +3.567 -9.765 -1.796 0 0 0 0 0 0 0 +3.599 -9.757 -1.797 0 0 0 0 0 0 0 +3.618 -9.716 -1.791 0 0 0 0 0 0 0 +3.654 -9.72 -1.794 0 0 0 0 0 0 0 +3.659 -9.686 -1.789 0 0 0 0 0 0 0 +3.69 -9.675 -1.789 0 0 0 0 0 0 0 +3.713 -9.645 -1.785 0 0 0 0 0 0 0 +3.75 -9.649 -1.788 0 0 0 0 0 0 0 +3.768 -9.606 -1.782 0 0 0 0 0 0 0 +3.803 -9.607 -1.785 0 0 0 0 0 0 0 +3.828 -9.583 -1.782 0 0 0 0 0 0 0 +3.827 -9.536 -1.774 0 0 0 0 0 0 0 +3.865 -9.543 -1.778 0 0 0 0 0 0 0 +3.894 -9.529 -1.778 0 0 0 0 0 0 0 +3.924 -9.518 -1.778 0 0 0 0 0 0 0 +3.95 -9.495 -1.776 0 0 0 0 0 0 0 +3.98 -9.484 -1.776 0 0 0 0 0 0 0 +3.998 -9.443 -1.77 0 0 0 0 0 0 0 +4.011 -9.433 -1.77 0 0 0 0 0 0 0 +4.033 -9.402 -1.766 0 0 0 0 0 0 0 +4.058 -9.378 -1.764 0 0 0 0 0 0 0 +4.08 -9.348 -1.76 0 0 0 0 0 0 0 +4.115 -9.347 -1.763 0 0 0 0 0 0 0 +4.137 -9.318 -1.759 0 0 0 0 0 0 0 +4.151 -9.271 -1.753 0 0 0 0 0 0 0 +4.172 -9.279 -1.755 0 0 0 0 0 0 0 +4.192 -9.246 -1.751 0 0 0 0 0 0 0 +4.224 -9.24 -1.753 0 0 0 0 0 0 0 +4.239 -9.194 -1.746 0 0 0 0 0 0 0 +4.268 -9.183 -1.747 0 0 0 0 0 0 0 +4.285 -9.144 -1.742 0 0 0 0 0 0 0 +4.318 -9.138 -1.743 0 0 0 0 0 0 0 +4.317 -9.099 -1.737 0 0 0 0 0 0 0 +4.359 -9.114 -1.742 0 0 0 0 0 0 0 +4.37 -9.065 -1.735 0 0 0 0 0 0 0 +4.403 -9.06 -1.737 0 0 0 0 0 0 0 +4.416 -9.014 -1.73 0 0 0 0 0 0 0 +4.455 -9.021 -1.735 0 0 0 0 0 0 0 +4.477 -8.995 -1.732 0 0 0 0 0 0 0 +4.501 -8.972 -1.73 0 0 0 0 0 0 0 +4.506 -8.947 -1.727 0 0 0 0 0 0 0 +4.54 -8.944 -1.729 0 0 0 0 0 0 0 +4.553 -8.9 -1.723 0 0 0 0 0 0 0 +4.584 -8.892 -1.724 0 0 0 0 0 0 0 +4.589 -8.834 -1.715 0 0 0 0 0 0 0 +4.63 -8.844 -1.72 0 0 0 0 0 0 0 +4.648 -8.81 -1.716 0 0 0 0 0 0 0 +4.661 -8.803 -1.716 0 0 0 0 0 0 0 +4.682 -8.774 -1.713 0 0 0 0 0 0 0 +4.705 -8.753 -1.712 0 0 0 0 0 0 0 +4.722 -8.717 -1.707 0 0 0 0 0 0 0 +4.756 -8.714 -1.71 0 0 0 0 0 0 0 +4.773 -8.68 -1.706 0 0 0 0 0 0 0 +4.787 -8.675 -1.706 0 0 0 0 0 0 0 +4.803 -8.639 -1.702 0 0 0 0 0 0 0 +4.836 -8.634 -1.704 0 0 0 0 0 0 0 +4.846 -8.588 -1.698 0 0 0 0 0 0 0 +4.884 -8.593 -1.702 0 0 0 0 0 0 0 +4.91 -8.576 -1.702 0 0 0 0 0 0 0 +4.927 -8.544 -1.698 0 0 0 0 0 0 0 +4.939 -8.532 -1.697 0 0 0 0 0 0 0 +4.957 -8.502 -1.694 0 0 0 0 0 0 0 +4.992 -8.501 -1.697 0 0 0 0 0 0 0 +5.007 -8.465 -1.693 0 0 0 0 0 0 0 +5.045 -8.468 -1.697 0 0 0 0 0 0 0 +5.061 -8.435 -1.693 0 0 0 0 0 0 0 +5.089 -8.421 -1.694 0 0 0 0 0 0 0 +5.107 -8.421 -1.695 0 0 0 0 0 0 0 +5.127 -8.395 -1.693 0 0 0 0 0 0 0 +5.154 -8.379 -1.693 0 0 0 0 0 0 0 +5.178 -8.36 -1.693 0 0 0 0 0 0 0 +5.197 -8.332 -1.69 0 0 0 0 0 0 0 +5.219 -8.308 -1.689 0 0 0 0 0 0 0 +5.246 -8.294 -1.689 0 0 0 0 0 0 0 +5.268 -8.271 -1.687 0 0 0 0 0 0 0 +5.278 -8.257 -1.686 0 0 0 0 0 0 0 +5.287 -8.214 -1.681 0 0 0 0 0 0 0 +5.327 -8.221 -1.686 0 0 0 0 0 0 0 +5.344 -8.191 -1.683 0 0 0 0 0 0 0 +5.358 -8.156 -1.679 0 0 0 0 0 0 0 +5.389 -8.147 -1.681 0 0 0 0 0 0 0 +5.405 -8.115 -1.677 0 0 0 0 0 0 0 +5.422 -8.113 -1.679 0 0 0 0 0 0 0 +5.436 -8.078 -1.675 0 0 0 0 0 0 0 +5.468 -8.071 -1.677 0 0 0 0 0 0 0 +5.485 -8.042 -1.674 0 0 0 0 0 0 0 +5.514 -8.03 -1.675 0 0 0 0 0 0 0 +5.52 -7.985 -1.669 0 0 0 0 0 0 0 +5.557 -7.985 -1.673 0 0 0 0 0 0 0 +5.565 -7.97 -1.672 0 0 0 0 0 0 0 +5.59 -7.953 -1.672 0 0 0 0 0 0 0 +5.617 -7.937 -1.672 0 0 0 0 0 0 0 +5.643 -7.921 -1.673 0 0 0 0 0 0 0 +5.661 -7.893 -1.67 0 0 0 0 0 0 0 +5.685 -7.875 -1.67 0 0 0 0 0 0 0 +5.694 -7.862 -1.669 0 0 0 0 0 0 0 +5.713 -7.836 -1.667 0 0 0 0 0 0 0 +5.751 -7.835 -1.671 0 0 0 0 0 0 0 +5.76 -7.797 -1.667 0 0 0 0 0 0 0 +5.788 -7.783 -1.668 0 0 0 0 0 0 0 +5.808 -7.759 -1.666 0 0 0 0 0 0 0 +5.834 -7.744 -1.667 0 0 0 0 0 0 0 +5.854 -7.719 -1.666 0 0 0 0 0 0 0 +5.857 -7.697 -1.663 0 0 0 0 0 0 0 +5.893 -7.694 -1.666 0 0 0 0 0 0 0 +5.906 -7.662 -1.663 0 0 0 0 0 0 0 +5.936 -7.651 -1.665 0 0 0 0 0 0 0 +5.941 -7.607 -1.659 0 0 0 0 0 0 0 +5.985 -7.615 -1.665 0 0 0 0 0 0 0 +5.993 -7.576 -1.661 0 0 0 0 0 0 0 +6.013 -7.576 -1.663 0 0 0 0 0 0 0 +6.033 -7.552 -1.662 0 0 0 0 0 0 0 +6.05 -7.526 -1.66 0 0 0 0 0 0 0 +6.064 -7.494 -1.657 0 0 0 0 0 0 0 +6.102 -7.494 -1.661 0 0 0 0 0 0 0 +6.121 -7.468 -1.66 0 0 0 0 0 0 0 +6.137 -7.44 -1.658 0 0 0 0 0 0 0 +6.152 -7.435 -1.659 0 0 0 0 0 0 0 +6.173 -7.413 -1.658 0 0 0 0 0 0 0 +6.198 -7.395 -1.658 0 0 0 0 0 0 0 +6.214 -7.368 -1.657 0 0 0 0 0 0 0 +6.222 -7.33 -1.652 0 0 0 0 0 0 0 +6.256 -7.322 -1.655 0 0 0 0 0 0 0 +6.272 -7.295 -1.653 0 0 0 0 0 0 0 +6.291 -7.294 -1.655 0 0 0 0 0 0 0 +6.308 -7.267 -1.654 0 0 0 0 0 0 0 +6.332 -7.249 -1.654 0 0 0 0 0 0 0 +6.361 -7.236 -1.656 0 0 0 0 0 0 0 +6.373 -7.204 -1.653 0 0 0 0 0 0 0 +6.38 -7.167 -1.649 0 0 0 0 0 0 0 +6.402 -7.168 -1.651 0 0 0 0 0 0 0 +6.414 -7.136 -1.649 0 0 0 0 0 0 0 +6.443 -7.124 -1.65 0 0 0 0 0 0 0 +6.444 -7.08 -1.645 0 0 0 0 0 0 0 +6.481 -7.076 -1.649 0 0 0 0 0 0 0 +6.5 -7.052 -1.648 0 0 0 0 0 0 0 +6.529 -7.039 -1.65 0 0 0 0 0 0 0 +6.53 -6.996 -1.644 0 0 0 0 0 0 0 +6.562 -7.008 -1.65 0 0 0 0 0 0 0 +6.57 -6.972 -1.646 0 0 0 0 0 0 0 +6.602 -6.963 -1.649 0 0 0 0 0 0 0 +6.621 -6.939 -1.648 0 0 0 0 0 0 0 +6.643 -6.918 -1.648 0 0 0 0 0 0 0 +6.655 -6.887 -1.645 0 0 0 0 0 0 0 +6.686 -6.876 -1.648 0 0 0 0 0 0 0 +6.69 -6.859 -1.646 0 0 0 0 0 0 0 +6.715 -6.841 -1.647 0 0 0 0 0 0 0 +6.735 -6.818 -1.646 0 0 0 0 0 0 0 +6.759 -6.8 -1.647 0 0 0 0 0 0 0 +6.764 -6.762 -1.643 0 0 0 0 0 0 0 +6.801 -6.757 -1.647 0 0 0 0 0 0 0 +6.821 -6.734 -1.647 0 0 0 0 0 0 0 +6.837 -6.729 -1.648 0 0 0 0 0 0 0 +6.864 -6.713 -1.65 0 0 0 0 0 0 0 +6.878 -6.685 -1.648 0 0 0 0 0 0 0 +6.892 -6.656 -1.646 0 0 0 0 0 0 0 +6.926 -6.647 -1.649 0 0 0 0 0 0 0 +6.928 -6.607 -1.645 0 0 0 0 0 0 0 +6.963 -6.599 -1.648 0 0 0 0 0 0 0 +6.958 -6.573 -1.644 0 0 0 0 0 0 0 +6.991 -6.563 -1.647 0 0 0 0 0 0 0 +6.983 -6.514 -1.64 0 0 0 0 0 0 0 +7.031 -6.518 -1.647 0 0 0 0 0 0 0 +7.035 -6.481 -1.643 0 0 0 0 0 0 0 +7.075 -6.476 -1.648 0 0 0 0 0 0 0 +7.075 -6.436 -1.643 0 0 0 0 0 0 0 +7.104 -6.442 -1.647 0 0 0 0 0 0 0 +7.115 -6.411 -1.645 0 0 0 0 0 0 0 +7.137 -6.39 -1.646 0 0 0 0 0 0 0 +7.146 -6.359 -1.643 0 0 0 0 0 0 0 +7.182 -6.351 -1.647 0 0 0 0 0 0 0 +7.192 -6.319 -1.645 0 0 0 0 0 0 0 +7.219 -6.303 -1.646 0 0 0 0 0 0 0 +7.214 -6.278 -1.643 0 0 0 0 0 0 0 +7.252 -6.271 -1.647 0 0 0 0 0 0 0 +7.261 -6.239 -1.645 0 0 0 0 0 0 0 +7.291 -6.225 -1.647 0 0 0 0 0 0 0 +7.306 -6.199 -1.646 0 0 0 0 0 0 0 +7.333 -6.182 -1.648 0 0 0 0 0 0 0 +7.333 -6.143 -1.643 0 0 0 0 0 0 0 +7.361 -6.146 -1.647 0 0 0 0 0 0 0 +7.366 -6.112 -1.644 0 0 0 0 0 0 0 +7.404 -6.104 -1.649 0 0 0 0 0 0 0 +7.399 -6.06 -1.643 0 0 0 0 0 0 0 +7.404 -6.026 -1.639 0 0 0 0 0 0 0 +7.43 -6.009 -1.641 0 0 0 0 0 0 0 +7.458 -5.993 -1.643 0 0 0 0 0 0 0 +7.488 -5.997 -1.648 0 0 0 0 0 0 0 +7.491 -5.961 -1.645 0 0 0 0 0 0 0 +7.511 -5.939 -1.645 0 0 0 0 0 0 0 +7.536 -5.92 -1.646 0 0 0 0 0 0 0 +7.556 -5.898 -1.647 0 0 0 0 0 0 0 +7.572 -5.871 -1.646 0 0 0 0 0 0 0 +7.595 -5.851 -1.647 0 0 0 0 0 0 0 +7.595 -5.832 -1.645 0 0 0 0 0 0 0 +7.622 -5.815 -1.647 0 0 0 0 0 0 0 +7.619 -5.775 -1.642 0 0 0 0 0 0 0 +7.662 -5.77 -1.648 0 0 0 0 0 0 0 +7.666 -5.735 -1.645 0 0 0 0 0 0 0 +7.699 -5.723 -1.648 0 0 0 0 0 0 0 +7.703 -5.688 -1.645 0 0 0 0 0 0 0 +7.728 -5.688 -1.649 0 0 0 0 0 0 0 +7.739 -5.659 -1.647 0 0 0 0 0 0 0 +7.773 -5.646 -1.651 0 0 0 0 0 0 0 +7.772 -5.608 -1.646 0 0 0 0 0 0 0 +7.802 -5.592 -1.649 0 0 0 0 0 0 0 +7.797 -5.552 -1.644 0 0 0 0 0 0 0 +7.81 -5.524 -1.643 0 0 0 0 0 0 0 +7.841 -5.527 -1.648 0 0 0 0 0 0 0 +7.855 -5.501 -1.647 0 0 0 0 0 0 0 +7.882 -5.483 -1.65 0 0 0 0 0 0 0 +7.889 -5.451 -1.647 0 0 0 0 0 0 0 +7.913 -5.431 -1.649 0 0 0 0 0 0 0 +7.936 -5.41 -1.65 0 0 0 0 0 0 0 +7.95 -5.383 -1.65 0 0 0 0 0 0 0 +7.939 -5.357 -1.645 0 0 0 0 0 0 0 +7.962 -5.337 -1.647 0 0 0 0 0 0 0 +7.987 -5.317 -1.649 0 0 0 0 0 0 0 +7.974 -5.272 -1.642 0 0 0 0 0 0 0 +7.988 -5.245 -1.641 0 0 0 0 0 0 0 +8.032 -5.238 -1.647 0 0 0 0 0 0 0 +8.034 -5.204 -1.644 0 0 0 0 0 0 0 +8.034 -5.186 -1.642 0 0 0 0 0 0 0 +8.071 -5.174 -1.647 0 0 0 0 0 0 0 +8.073 -5.139 -1.644 0 0 0 0 0 0 0 +8.072 -5.103 -1.64 0 0 0 0 0 0 0 +8.11 -5.092 -1.645 0 0 0 0 0 0 0 +8.121 -5.063 -1.644 0 0 0 0 0 0 0 +8.13 -5.033 -1.642 0 0 0 0 0 0 0 +8.158 -5.033 -1.647 0 0 0 0 0 0 0 +8.153 -4.995 -1.642 0 0 0 0 0 0 0 +8.167 -4.968 -1.642 0 0 0 0 0 0 0 +8.2 -4.953 -1.646 0 0 0 0 0 0 0 +8.195 -4.915 -1.641 0 0 0 0 0 0 0 +8.216 -4.892 -1.642 0 0 0 0 0 0 0 +8.243 -4.873 -1.645 0 0 0 0 0 0 0 +8.237 -4.852 -1.642 0 0 0 0 0 0 0 +8.247 -4.823 -1.641 0 0 0 0 0 0 0 +8.288 -4.812 -1.646 0 0 0 0 0 0 0 +8.272 -4.768 -1.64 0 0 0 0 0 0 0 +8.287 -4.742 -1.64 0 0 0 0 0 0 0 +8.336 -4.736 -1.647 0 0 0 0 0 0 0 +8.325 -4.695 -1.642 0 0 0 0 0 0 0 +8.329 -4.68 -1.641 0 0 0 0 0 0 0 +8.376 -4.672 -1.648 0 0 0 0 0 0 0 +8.377 -4.638 -1.645 0 0 0 0 0 0 0 +8.385 -4.608 -1.643 0 0 0 0 0 0 0 +8.418 -4.592 -1.647 0 0 0 0 0 0 0 +8.422 -4.56 -1.645 0 0 0 0 0 0 0 +8.428 -4.529 -1.643 0 0 0 0 0 0 0 +8.452 -4.525 -1.647 0 0 0 0 0 0 0 +8.444 -4.486 -1.642 0 0 0 0 0 0 0 +8.484 -4.474 -1.648 0 0 0 0 0 0 0 +8.503 -4.45 -1.649 0 0 0 0 0 0 0 +8.491 -4.409 -1.643 0 0 0 0 0 0 0 +8.521 -4.391 -1.647 0 0 0 0 0 0 0 +8.548 -4.371 -1.65 0 0 0 0 0 0 0 +8.534 -4.347 -1.645 0 0 0 0 0 0 0 +8.579 -4.336 -1.652 0 0 0 0 0 0 0 +8.579 -4.302 -1.649 0 0 0 0 0 0 0 +8.599 -4.279 -1.65 0 0 0 0 0 0 0 +8.595 -4.243 -1.647 0 0 0 0 0 0 0 +8.612 -4.218 -1.647 0 0 0 0 0 0 0 +8.586 -4.171 -1.639 0 0 0 0 0 0 0 +8.637 -4.179 -1.649 0 0 0 0 0 0 0 +8.645 -4.15 -1.647 0 0 0 0 0 0 0 +8.683 -4.134 -1.653 0 0 0 0 0 0 0 +8.687 -4.103 -1.651 0 0 0 0 0 0 0 +8.716 -4.083 -1.654 0 0 0 0 0 0 0 +8.709 -4.047 -1.65 0 0 0 0 0 0 0 +8.732 -4.024 -1.652 0 0 0 0 0 0 0 +8.741 -3.995 -1.651 0 0 0 0 0 0 0 +8.749 -3.982 -1.652 0 0 0 0 0 0 0 +8.738 -3.944 -1.647 0 0 0 0 0 0 0 +8.765 -3.923 -1.65 0 0 0 0 0 0 0 +8.794 -3.903 -1.653 0 0 0 0 0 0 0 +8.779 -3.863 -1.648 0 0 0 0 0 0 0 +8.805 -3.842 -1.651 0 0 0 0 0 0 0 +8.826 -3.818 -1.653 0 0 0 0 0 0 0 +8.827 -3.802 -1.651 0 0 0 0 0 0 0 +8.843 -3.776 -1.652 0 0 0 0 0 0 0 +8.842 -3.743 -1.65 0 0 0 0 0 0 0 +8.87 -3.722 -1.653 0 0 0 0 0 0 0 +8.854 -3.682 -1.647 0 0 0 0 0 0 0 +8.871 -3.657 -1.649 0 0 0 0 0 0 0 +8.891 -3.649 -1.651 0 0 0 0 0 0 0 +8.899 -3.619 -1.651 0 0 0 0 0 0 0 +8.923 -3.597 -1.653 0 0 0 0 0 0 0 +8.925 -3.565 -1.651 0 0 0 0 0 0 0 +8.944 -3.54 -1.653 0 0 0 0 0 0 0 +8.957 -3.512 -1.653 0 0 0 0 0 0 0 +8.962 -3.482 -1.652 0 0 0 0 0 0 0 +8.969 -3.452 -1.651 0 0 0 0 0 0 0 +8.968 -3.436 -1.65 0 0 0 0 0 0 0 +8.998 -3.415 -1.654 0 0 0 0 0 0 0 +8.998 -3.383 -1.652 0 0 0 0 0 0 0 +9.014 -3.356 -1.653 0 0 0 0 0 0 0 +9.038 -3.333 -1.655 0 0 0 0 0 0 0 +9.037 -3.3 -1.653 0 0 0 0 0 0 0 +9.049 -3.273 -1.654 0 0 0 0 0 0 0 +9.06 -3.26 -1.655 0 0 0 0 0 0 0 +9.09 -3.239 -1.659 0 0 0 0 0 0 0 +9.082 -3.204 -1.655 0 0 0 0 0 0 0 +9.085 -3.173 -1.654 0 0 0 0 0 0 0 +9.111 -3.15 -1.657 0 0 0 0 0 0 0 +9.101 -3.115 -1.653 0 0 0 0 0 0 0 +9.125 -3.091 -1.656 0 0 0 0 0 0 0 +9.134 -3.078 -1.657 0 0 0 0 0 0 0 +9.147 -3.05 -1.657 0 0 0 0 0 0 0 +9.166 -3.025 -1.659 0 0 0 0 0 0 0 +9.164 -2.992 -1.657 0 0 0 0 0 0 0 +9.183 -2.967 -1.659 0 0 0 0 0 0 0 +9.187 -2.936 -1.658 0 0 0 0 0 0 0 +9.22 -2.915 -1.662 0 0 0 0 0 0 0 +9.2 -2.893 -1.658 0 0 0 0 0 0 0 +9.23 -2.87 -1.662 0 0 0 0 0 0 0 +9.222 -2.836 -1.658 0 0 0 0 0 0 0 +9.218 -2.803 -1.656 0 0 0 0 0 0 0 +9.255 -2.782 -1.661 0 0 0 0 0 0 0 +9.26 -2.752 -1.661 0 0 0 0 0 0 0 +9.278 -2.726 -1.662 0 0 0 0 0 0 0 +9.276 -2.71 -1.661 0 0 0 0 0 0 0 +9.296 -2.684 -1.663 0 0 0 0 0 0 0 +9.297 -2.652 -1.662 0 0 0 0 0 0 0 +9.29 -2.619 -1.659 0 0 0 0 0 0 0 +9.325 -2.597 -1.664 0 0 0 0 0 0 0 +9.318 -2.564 -1.661 0 0 0 0 0 0 0 +9.333 -2.536 -1.663 0 0 0 0 0 0 0 +9.358 -2.527 -1.667 0 0 0 0 0 0 0 +9.355 -2.495 -1.665 0 0 0 0 0 0 0 +9.383 -2.471 -1.669 0 0 0 0 0 0 0 +9.365 -2.435 -1.663 0 0 0 0 0 0 0 +9.395 -2.411 -1.668 0 0 0 0 0 0 0 +9.444 -2.392 -1.676 0 0 0 0 0 0 0 +6.941 -1.728 -1.197 0 0 0 0 0 0 0 +9.374 -2.327 -1.66 0 0 0 0 0 0 0 +9.434 -2.311 -1.67 0 0 0 0 0 0 0 +9.436 -2.28 -1.669 0 0 0 0 0 0 0 +9.451 -2.252 -1.671 0 0 0 0 0 0 0 +9.435 -2.217 -1.666 0 0 0 0 0 0 0 +7.24 -1.671 -1.248 0 0 0 0 0 0 0 +7.243 -1.648 -1.248 0 0 0 0 0 0 0 +7.569 -1.686 -1.308 0 0 0 0 0 0 0 +7.547 -1.656 -1.303 0 0 0 0 0 0 0 +7.572 -1.636 -1.307 0 0 0 0 0 0 0 +7.596 -1.617 -1.311 0 0 0 0 0 0 0 +7.516 -1.575 -1.295 0 0 0 0 0 0 0 +7.25 -1.494 -1.243 0 0 0 0 0 0 0 +7.237 -1.48 -1.24 0 0 0 0 0 0 0 +7.242 -1.457 -1.24 0 0 0 0 0 0 0 +7.271 -1.439 -1.245 0 0 0 0 0 0 0 +7.306 -1.423 -1.251 0 0 0 0 0 0 0 +7.326 -1.403 -1.254 0 0 0 0 0 0 0 +7.358 -1.385 -1.259 0 0 0 0 0 0 0 +7.378 -1.365 -1.262 0 0 0 0 0 0 0 +7.413 -1.359 -1.268 0 0 0 0 0 0 0 +7.504 -1.352 -1.284 0 0 0 0 0 0 0 +9.521 -1.691 -1.662 0 0 0 0 0 0 0 +9.573 -1.67 -1.671 0 0 0 0 0 0 0 +9.582 -1.64 -1.672 0 0 0 0 0 0 0 +9.579 -1.609 -1.67 0 0 0 0 0 0 0 +9.592 -1.58 -1.672 0 0 0 0 0 0 0 +8.108 -1.318 -1.393 0 0 0 0 0 0 0 +8.122 -1.295 -1.395 0 0 0 0 0 0 0 +9.629 -1.509 -1.677 0 0 0 0 0 0 0 +9.605 -1.443 -1.67 0 0 0 0 0 0 0 +9.608 -1.413 -1.67 0 0 0 0 0 0 0 +9.622 -1.384 -1.672 0 0 0 0 0 0 0 +9.634 -1.37 -1.674 0 0 0 0 0 0 0 +9.642 -1.34 -1.674 0 0 0 0 0 0 0 +8.374 -1.134 -1.437 0 0 0 0 0 0 0 +9.633 -1.277 -1.671 0 0 0 0 0 0 0 +9.633 -1.247 -1.67 0 0 0 0 0 0 0 +9.67 -1.221 -1.677 0 0 0 0 0 0 0 +9.709 -1.195 -1.683 0 0 0 0 0 0 0 +9.738 -1.183 -1.688 0 0 0 0 0 0 0 +9.771 -1.156 -1.694 0 0 0 0 0 0 0 +9.806 -1.129 -1.699 0 0 0 0 0 0 0 +9.817 -1.099 -1.701 0 0 0 0 0 0 0 +9.83 -1.069 -1.703 0 0 0 0 0 0 0 +9.851 -1.04 -1.706 0 0 0 0 0 0 0 +9.858 -1.01 -1.707 0 0 0 0 0 0 0 +9.893 -0.998 -1.713 0 0 0 0 0 0 0 +9.928 -0.97 -1.719 0 0 0 0 0 0 0 +9.934 -0.939 -1.719 0 0 0 0 0 0 0 +9.935 -0.907 -1.719 0 0 0 0 0 0 0 +9.94 -0.876 -1.719 0 0 0 0 0 0 0 +9.955 -0.846 -1.722 0 0 0 0 0 0 0 +10.034 -0.821 -1.736 0 0 0 0 0 0 0 +10.008 -0.803 -1.731 0 0 0 0 0 0 0 +10.034 -0.774 -1.735 0 0 0 0 0 0 0 +10.01 -0.74 -1.73 0 0 0 0 0 0 0 +10.028 -0.71 -1.733 0 0 0 0 0 0 0 +9.997 -0.676 -1.727 0 0 0 0 0 0 0 +10.025 -0.646 -1.732 0 0 0 0 0 0 0 +10.005 -0.613 -1.728 0 0 0 0 0 0 0 +10.022 -0.599 -1.731 0 0 0 0 0 0 0 +10.018 -0.567 -1.73 0 0 0 0 0 0 0 +10.023 -0.536 -1.73 0 0 0 0 0 0 0 +10.011 -0.503 -1.728 0 0 0 0 0 0 0 +10.032 -0.473 -1.731 0 0 0 0 0 0 0 +10.026 -0.441 -1.73 0 0 0 0 0 0 0 +10.029 -0.41 -1.73 0 0 0 0 0 0 0 +10.001 -0.393 -1.725 0 0 0 0 0 0 0 +10.008 -0.361 -1.726 0 0 0 0 0 0 0 +9.999 -0.33 -1.724 0 0 0 0 0 0 0 +10.014 -0.299 -1.727 0 0 0 0 0 0 0 +9.975 -0.266 -1.719 0 0 0 0 0 0 0 +9.998 -0.235 -1.723 0 0 0 0 0 0 0 +10.01 -0.204 -1.726 0 0 0 0 0 0 0 +10.015 -0.173 -1.726 0 0 0 0 0 0 0 +9.991 -0.157 -1.722 0 0 0 0 0 0 0 +9.996 -0.125 -1.723 0 0 0 0 0 0 0 +9.98 -0.094 -1.72 0 0 0 0 0 0 0 +10 -0.063 -1.723 0 0 0 0 0 0 0 +9.965 -0.031 -1.717 0 0 0 0 0 0 0 +9.551 0.01 -1.725 0 0 0 0 0 0 0 +9.545 0.04 -1.723 0 0 0 0 0 0 0 +9.554 0.07 -1.725 0 0 0 0 0 0 0 +9.532 0.1 -1.721 0 0 0 0 0 0 0 +9.542 0.13 -1.723 0 0 0 0 0 0 0 +9.535 0.16 -1.722 0 0 0 0 0 0 0 +9.541 0.175 -1.723 0 0 0 0 0 0 0 +9.544 0.205 -1.724 0 0 0 0 0 0 0 +9.536 0.235 -1.722 0 0 0 0 0 0 0 +9.527 0.265 -1.721 0 0 0 0 0 0 0 +9.52 0.294 -1.72 0 0 0 0 0 0 0 +9.519 0.324 -1.72 0 0 0 0 0 0 0 +9.52 0.354 -1.72 0 0 0 0 0 0 0 +9.526 0.37 -1.721 0 0 0 0 0 0 0 +9.519 0.399 -1.72 0 0 0 0 0 0 0 +9.507 0.429 -1.718 0 0 0 0 0 0 0 +9.51 0.459 -1.719 0 0 0 0 0 0 0 +9.51 0.489 -1.719 0 0 0 0 0 0 0 +9.501 0.518 -1.718 0 0 0 0 0 0 0 +9.499 0.548 -1.718 0 0 0 0 0 0 0 +9.504 0.563 -1.719 0 0 0 0 0 0 0 +9.487 0.592 -1.716 0 0 0 0 0 0 0 +9.489 0.622 -1.717 0 0 0 0 0 0 0 +9.481 0.652 -1.715 0 0 0 0 0 0 0 +9.477 0.681 -1.715 0 0 0 0 0 0 0 +9.477 0.711 -1.715 0 0 0 0 0 0 0 +9.478 0.741 -1.716 0 0 0 0 0 0 0 +9.456 0.754 -1.712 0 0 0 0 0 0 0 +9.467 0.785 -1.715 0 0 0 0 0 0 0 +9.455 0.814 -1.713 0 0 0 0 0 0 0 +9.446 0.843 -1.712 0 0 0 0 0 0 0 +9.453 0.874 -1.714 0 0 0 0 0 0 0 +9.452 0.904 -1.714 0 0 0 0 0 0 0 +9.442 0.933 -1.712 0 0 0 0 0 0 0 +9.434 0.947 -1.711 0 0 0 0 0 0 0 +9.4 0.973 -1.705 0 0 0 0 0 0 0 +9.407 1.004 -1.707 0 0 0 0 0 0 0 +9.4 1.033 -1.706 0 0 0 0 0 0 0 +9.377 1.06 -1.703 0 0 0 0 0 0 0 +9.379 1.09 -1.704 0 0 0 0 0 0 0 +9.362 1.118 -1.701 0 0 0 0 0 0 0 +9.376 1.135 -1.704 0 0 0 0 0 0 0 +9.365 1.163 -1.703 0 0 0 0 0 0 0 +9.367 1.193 -1.704 0 0 0 0 0 0 0 +9.349 1.221 -1.701 0 0 0 0 0 0 0 +9.353 1.251 -1.703 0 0 0 0 0 0 0 +9.349 1.281 -1.703 0 0 0 0 0 0 0 +9.33 1.308 -1.7 0 0 0 0 0 0 0 +9.37 1.329 -1.708 0 0 0 0 0 0 0 +9.351 1.356 -1.705 0 0 0 0 0 0 0 +9.352 1.386 -1.706 0 0 0 0 0 0 0 +9.324 1.412 -1.701 0 0 0 0 0 0 0 +9.335 1.444 -1.704 0 0 0 0 0 0 0 +9.321 1.471 -1.703 0 0 0 0 0 0 0 +9.322 1.502 -1.704 0 0 0 0 0 0 0 +9.316 1.516 -1.703 0 0 0 0 0 0 0 +9.309 1.545 -1.703 0 0 0 0 0 0 0 +9.297 1.572 -1.701 0 0 0 0 0 0 0 +9.305 1.604 -1.704 0 0 0 0 0 0 0 +9.306 1.634 -1.705 0 0 0 0 0 0 0 +9.303 1.664 -1.705 0 0 0 0 0 0 0 +9.309 1.695 -1.707 0 0 0 0 0 0 0 +9.287 1.706 -1.704 0 0 0 0 0 0 0 +9.262 1.732 -1.7 0 0 0 0 0 0 0 +9.272 1.764 -1.703 0 0 0 0 0 0 0 +9.269 1.793 -1.703 0 0 0 0 0 0 0 +9.253 1.82 -1.701 0 0 0 0 0 0 0 +9.257 1.851 -1.703 0 0 0 0 0 0 0 +9.274 1.885 -1.708 0 0 0 0 0 0 0 +9.266 1.899 -1.707 0 0 0 0 0 0 0 +9.231 1.922 -1.701 0 0 0 0 0 0 0 +9.227 1.951 -1.701 0 0 0 0 0 0 0 +9.236 1.983 -1.704 0 0 0 0 0 0 0 +9.226 2.012 -1.704 0 0 0 0 0 0 0 +9.189 2.034 -1.698 0 0 0 0 0 0 0 +9.207 2.068 -1.703 0 0 0 0 0 0 0 +9.202 2.082 -1.702 0 0 0 0 0 0 0 +9.209 2.114 -1.705 0 0 0 0 0 0 0 +9.198 2.142 -1.704 0 0 0 0 0 0 0 +9.193 2.172 -1.704 0 0 0 0 0 0 0 +9.179 2.199 -1.703 0 0 0 0 0 0 0 +9.176 2.228 -1.704 0 0 0 0 0 0 0 +9.176 2.259 -1.705 0 0 0 0 0 0 0 +9.164 2.286 -1.704 0 0 0 0 0 0 0 +9.166 2.302 -1.705 0 0 0 0 0 0 0 +9.156 2.331 -1.705 0 0 0 0 0 0 0 +9.149 2.359 -1.705 0 0 0 0 0 0 0 +9.147 2.39 -1.706 0 0 0 0 0 0 0 +9.113 2.411 -1.701 0 0 0 0 0 0 0 +9.147 2.451 -1.709 0 0 0 0 0 0 0 +9.132 2.478 -1.707 0 0 0 0 0 0 0 +9.1 2.484 -1.702 0 0 0 0 0 0 0 +9.124 2.522 -1.708 0 0 0 0 0 0 0 +9.084 2.541 -1.702 0 0 0 0 0 0 0 +9.108 2.579 -1.708 0 0 0 0 0 0 0 +9.079 2.602 -1.704 0 0 0 0 0 0 0 +9.071 2.63 -1.704 0 0 0 0 0 0 0 +9.064 2.659 -1.704 0 0 0 0 0 0 0 +9.077 2.679 -1.708 0 0 0 0 0 0 0 +9.048 2.701 -1.704 0 0 0 0 0 0 0 +9.068 2.738 -1.709 0 0 0 0 0 0 0 +9.029 2.757 -1.703 0 0 0 0 0 0 0 +9.043 2.792 -1.708 0 0 0 0 0 0 0 +9.026 2.818 -1.706 0 0 0 0 0 0 0 +9.033 2.852 -1.709 0 0 0 0 0 0 0 +9.004 2.858 -1.704 0 0 0 0 0 0 0 +9 2.888 -1.706 0 0 0 0 0 0 0 +9.019 2.925 -1.711 0 0 0 0 0 0 0 +8.978 2.943 -1.705 0 0 0 0 0 0 0 +9.012 2.986 -1.714 0 0 0 0 0 0 0 +8.973 3.004 -1.707 0 0 0 0 0 0 0 +8.993 3.042 -1.714 0 0 0 0 0 0 0 +8.958 3.046 -1.707 0 0 0 0 0 0 0 +8.962 3.079 -1.71 0 0 0 0 0 0 0 +8.954 3.108 -1.711 0 0 0 0 0 0 0 +8.942 3.135 -1.71 0 0 0 0 0 0 0 +8.947 3.169 -1.713 0 0 0 0 0 0 0 +8.93 3.194 -1.712 0 0 0 0 0 0 0 +8.916 3.221 -1.711 0 0 0 0 0 0 0 +8.92 3.238 -1.713 0 0 0 0 0 0 0 +8.901 3.263 -1.711 0 0 0 0 0 0 0 +8.9 3.294 -1.713 0 0 0 0 0 0 0 +8.893 3.323 -1.714 0 0 0 0 0 0 0 +8.871 3.347 -1.711 0 0 0 0 0 0 0 +8.864 3.376 -1.712 0 0 0 0 0 0 0 +8.861 3.407 -1.714 0 0 0 0 0 0 0 +8.867 3.425 -1.716 0 0 0 0 0 0 0 +8.86 3.454 -1.717 0 0 0 0 0 0 0 +8.854 3.484 -1.718 0 0 0 0 0 0 0 +8.843 3.512 -1.718 0 0 0 0 0 0 0 +8.838 3.542 -1.719 0 0 0 0 0 0 0 +8.821 3.568 -1.718 0 0 0 0 0 0 0 +8.813 3.597 -1.719 0 0 0 0 0 0 0 +8.81 3.612 -1.719 0 0 0 0 0 0 0 +8.794 3.638 -1.718 0 0 0 0 0 0 0 +8.787 3.667 -1.719 0 0 0 0 0 0 0 +8.777 3.695 -1.719 0 0 0 0 0 0 0 +8.769 3.724 -1.72 0 0 0 0 0 0 0 +8.755 3.751 -1.72 0 0 0 0 0 0 0 +8.76 3.786 -1.723 0 0 0 0 0 0 0 +8.75 3.798 -1.722 0 0 0 0 0 0 0 +8.731 3.822 -1.721 0 0 0 0 0 0 0 +8.728 3.853 -1.723 0 0 0 0 0 0 0 +8.718 3.882 -1.723 0 0 0 0 0 0 0 +8.7 3.907 -1.722 0 0 0 0 0 0 0 +8.704 3.941 -1.725 0 0 0 0 0 0 0 +8.697 3.971 -1.726 0 0 0 0 0 0 0 +8.681 3.981 -1.725 0 0 0 0 0 0 0 +8.669 4.008 -1.725 0 0 0 0 0 0 0 +8.662 4.038 -1.726 0 0 0 0 0 0 0 +8.651 4.066 -1.726 0 0 0 0 0 0 0 +8.64 4.094 -1.726 0 0 0 0 0 0 0 +8.643 4.128 -1.73 0 0 0 0 0 0 0 +8.626 4.154 -1.729 0 0 0 0 0 0 0 +8.611 4.163 -1.727 0 0 0 0 0 0 0 +8.598 4.19 -1.727 0 0 0 0 0 0 0 +8.59 4.22 -1.728 0 0 0 0 0 0 0 +8.559 4.238 -1.725 0 0 0 0 0 0 0 +8.559 4.272 -1.728 0 0 0 0 0 0 0 +8.55 4.3 -1.728 0 0 0 0 0 0 0 +8.524 4.321 -1.726 0 0 0 0 0 0 0 +8.541 4.347 -1.731 0 0 0 0 0 0 0 +8.522 4.371 -1.73 0 0 0 0 0 0 0 +8.505 4.396 -1.729 0 0 0 0 0 0 0 +8.509 4.432 -1.733 0 0 0 0 0 0 0 +8.479 4.45 -1.73 0 0 0 0 0 0 0 +8.465 4.477 -1.73 0 0 0 0 0 0 0 +8.465 4.511 -1.733 0 0 0 0 0 0 0 +8.442 4.533 -1.731 0 0 0 0 0 0 0 +8.426 4.541 -1.729 0 0 0 0 0 0 0 +8.417 4.571 -1.73 0 0 0 0 0 0 0 +8.416 4.605 -1.733 0 0 0 0 0 0 0 +8.387 4.622 -1.73 0 0 0 0 0 0 0 +8.387 4.657 -1.733 0 0 0 0 0 0 0 +8.364 4.679 -1.731 0 0 0 0 0 0 0 +8.376 4.703 -1.735 0 0 0 0 0 0 0 +8.362 4.73 -1.736 0 0 0 0 0 0 0 +8.377 4.773 -1.742 0 0 0 0 0 0 0 +8.331 4.781 -1.735 0 0 0 0 0 0 0 +8.299 4.798 -1.731 0 0 0 0 0 0 0 +8.28 4.822 -1.731 0 0 0 0 0 0 0 +8.267 4.849 -1.731 0 0 0 0 0 0 0 +8.263 4.864 -1.732 0 0 0 0 0 0 0 +8.241 4.886 -1.73 0 0 0 0 0 0 0 +8.22 4.908 -1.729 0 0 0 0 0 0 0 +8.215 4.94 -1.731 0 0 0 0 0 0 0 +8.191 4.961 -1.73 0 0 0 0 0 0 0 +8.184 4.992 -1.731 0 0 0 0 0 0 0 +8.166 5.016 -1.731 0 0 0 0 0 0 0 +8.15 5.024 -1.729 0 0 0 0 0 0 0 +8.142 5.055 -1.731 0 0 0 0 0 0 0 +8.131 5.084 -1.732 0 0 0 0 0 0 0 +8.112 5.107 -1.731 0 0 0 0 0 0 0 +8.088 5.127 -1.73 0 0 0 0 0 0 0 +8.08 5.158 -1.731 0 0 0 0 0 0 0 +8.055 5.178 -1.73 0 0 0 0 0 0 0 +8.033 5.199 -1.728 0 0 0 0 0 0 0 +8.029 5.215 -1.729 0 0 0 0 0 0 0 +8.021 5.245 -1.731 0 0 0 0 0 0 0 +7.987 5.259 -1.727 0 0 0 0 0 0 0 +7.973 5.286 -1.728 0 0 0 0 0 0 0 +7.958 5.312 -1.728 0 0 0 0 0 0 0 +7.938 5.335 -1.727 0 0 0 0 0 0 0 +7.918 5.357 -1.726 0 0 0 0 0 0 0 +7.908 5.369 -1.726 0 0 0 0 0 0 0 +7.898 5.398 -1.728 0 0 0 0 0 0 0 +7.892 5.431 -1.73 0 0 0 0 0 0 0 +7.854 5.441 -1.725 0 0 0 0 0 0 0 +7.843 5.47 -1.727 0 0 0 0 0 0 0 +7.831 5.498 -1.728 0 0 0 0 0 0 0 +7.821 5.509 -1.728 0 0 0 0 0 0 0 +7.81 5.538 -1.729 0 0 0 0 0 0 0 +7.792 5.563 -1.729 0 0 0 0 0 0 0 +7.776 5.588 -1.73 0 0 0 0 0 0 0 +7.749 5.606 -1.727 0 0 0 0 0 0 0 +7.739 5.636 -1.729 0 0 0 0 0 0 0 +7.714 5.654 -1.727 0 0 0 0 0 0 0 +7.71 5.67 -1.728 0 0 0 0 0 0 0 +7.693 5.695 -1.729 0 0 0 0 0 0 0 +7.679 5.722 -1.73 0 0 0 0 0 0 0 +7.672 5.754 -1.732 0 0 0 0 0 0 0 +7.649 5.775 -1.731 0 0 0 0 0 0 0 +7.635 5.802 -1.732 0 0 0 0 0 0 0 +7.623 5.831 -1.734 0 0 0 0 0 0 0 +7.625 5.851 -1.736 0 0 0 0 0 0 0 +7.603 5.873 -1.736 0 0 0 0 0 0 0 +7.586 5.898 -1.736 0 0 0 0 0 0 0 +7.571 5.924 -1.737 0 0 0 0 0 0 0 +7.555 5.95 -1.738 0 0 0 0 0 0 0 +7.538 5.975 -1.738 0 0 0 0 0 0 0 +7.527 6.005 -1.74 0 0 0 0 0 0 0 +7.521 6.019 -1.741 0 0 0 0 0 0 0 +7.485 6.029 -1.736 0 0 0 0 0 0 0 +6.833 5.537 -1.578 0 0 0 0 0 0 0 +6.73 5.489 -1.557 0 0 0 0 0 0 0 +6.701 5.5 -1.554 0 0 0 0 0 0 0 +6.694 5.529 -1.557 0 0 0 0 0 0 0 +6.674 5.548 -1.556 0 0 0 0 0 0 0 +6.677 5.568 -1.559 0 0 0 0 0 0 0 +7.122 5.98 -1.676 0 0 0 0 0 0 0 +7.396 6.251 -1.75 0 0 0 0 0 0 0 +7.381 6.278 -1.752 0 0 0 0 0 0 0 +7.369 6.308 -1.753 0 0 0 0 0 0 0 +7.344 6.327 -1.752 0 0 0 0 0 0 0 +7.33 6.355 -1.754 0 0 0 0 0 0 0 +7.318 6.385 -1.756 0 0 0 0 0 0 0 +7.308 6.396 -1.756 0 0 0 0 0 0 0 +7.292 6.423 -1.757 0 0 0 0 0 0 0 +7.27 6.445 -1.757 0 0 0 0 0 0 0 +7.251 6.469 -1.757 0 0 0 0 0 0 0 +7.234 6.494 -1.758 0 0 0 0 0 0 0 +7.211 6.514 -1.757 0 0 0 0 0 0 0 +7.184 6.531 -1.755 0 0 0 0 0 0 0 +7.187 6.555 -1.759 0 0 0 0 0 0 0 +7.171 6.581 -1.76 0 0 0 0 0 0 0 +7.147 6.601 -1.759 0 0 0 0 0 0 0 +7.132 6.629 -1.761 0 0 0 0 0 0 0 +7.121 6.661 -1.763 0 0 0 0 0 0 0 +7.102 6.684 -1.764 0 0 0 0 0 0 0 +7.096 6.7 -1.765 0 0 0 0 0 0 0 +7.076 6.723 -1.765 0 0 0 0 0 0 0 +7.065 6.755 -1.768 0 0 0 0 0 0 0 +7.048 6.781 -1.769 0 0 0 0 0 0 0 +7.035 6.811 -1.771 0 0 0 0 0 0 0 +7.008 6.828 -1.77 0 0 0 0 0 0 0 +7 6.864 -1.774 0 0 0 0 0 0 0 +6.988 6.873 -1.773 0 0 0 0 0 0 0 +6.979 6.908 -1.777 0 0 0 0 0 0 0 +6.959 6.931 -1.777 0 0 0 0 0 0 0 +6.934 6.95 -1.776 0 0 0 0 0 0 0 +6.933 6.993 -1.782 0 0 0 0 0 0 0 +6.916 7.02 -1.784 0 0 0 0 0 0 0 +6.909 7.057 -1.788 0 0 0 0 0 0 0 +6.902 7.072 -1.789 0 0 0 0 0 0 0 +6.887 7.101 -1.791 0 0 0 0 0 0 0 +6.877 7.135 -1.794 0 0 0 0 0 0 0 +6.86 7.163 -1.796 0 0 0 0 0 0 0 +6.847 7.194 -1.798 0 0 0 0 0 0 0 +6.828 7.22 -1.799 0 0 0 0 0 0 0 +6.815 7.251 -1.802 0 0 0 0 0 0 0 +6.776 7.256 -1.798 0 0 0 0 0 0 0 +6.772 7.275 -1.8 0 0 0 0 0 0 0 +6.768 7.316 -1.805 0 0 0 0 0 0 0 +6.752 7.345 -1.807 0 0 0 0 0 0 0 +6.739 7.378 -1.81 0 0 0 0 0 0 0 +6.723 7.406 -1.812 0 0 0 0 0 0 0 +6.701 7.429 -1.812 0 0 0 0 0 0 0 +6.673 7.445 -1.811 0 0 0 0 0 0 0 +6.673 7.469 -1.815 0 0 0 0 0 0 0 +6.65 7.49 -1.815 0 0 0 0 0 0 0 +6.633 7.518 -1.817 0 0 0 0 0 0 0 +6.618 7.549 -1.819 0 0 0 0 0 0 0 +6.58 7.554 -1.815 0 0 0 0 0 0 0 +6.558 7.576 -1.815 0 0 0 0 0 0 0 +6.542 7.605 -1.818 0 0 0 0 0 0 0 +6.517 7.601 -1.814 0 0 0 0 0 0 0 +6.497 7.625 -1.815 0 0 0 0 0 0 0 +6.479 7.653 -1.817 0 0 0 0 0 0 0 +6.445 7.662 -1.814 0 0 0 0 0 0 0 +6.428 7.691 -1.816 0 0 0 0 0 0 0 +6.411 7.719 -1.818 0 0 0 0 0 0 0 +6.38 7.731 -1.816 0 0 0 0 0 0 0 +6.375 7.75 -1.818 0 0 0 0 0 0 0 +6.36 7.781 -1.821 0 0 0 0 0 0 0 +6.333 7.798 -1.82 0 0 0 0 0 0 0 +6.317 7.828 -1.823 0 0 0 0 0 0 0 +6.301 7.859 -1.826 0 0 0 0 0 0 0 +6.274 7.876 -1.825 0 0 0 0 0 0 0 +6.261 7.911 -1.829 0 0 0 0 0 0 0 +6.259 7.934 -1.832 0 0 0 0 0 0 0 +6.226 7.943 -1.83 0 0 0 0 0 0 0 +6.217 7.983 -1.834 0 0 0 0 0 0 0 +6.193 8.004 -1.835 0 0 0 0 0 0 0 +6.171 8.028 -1.836 0 0 0 0 0 0 0 +6.166 8.074 -1.842 0 0 0 0 0 0 0 +6.147 8.101 -1.844 0 0 0 0 0 0 0 +6.141 8.12 -1.847 0 0 0 0 0 0 0 +6.127 8.155 -1.85 0 0 0 0 0 0 0 +6.121 8.201 -1.857 0 0 0 0 0 0 0 +6.096 8.22 -1.857 0 0 0 0 0 0 0 +6.058 8.224 -1.853 0 0 0 0 0 0 0 +6.041 8.255 -1.856 0 0 0 0 0 0 0 +6.004 8.258 -1.852 0 0 0 0 0 0 0 +5.996 8.274 -1.854 0 0 0 0 0 0 0 +5.998 8.333 -1.863 0 0 0 0 0 0 0 +5.972 8.352 -1.863 0 0 0 0 0 0 0 +5.936 8.356 -1.86 0 0 0 0 0 0 0 +5.918 8.387 -1.863 0 0 0 0 0 0 0 +5.872 8.377 -1.856 0 0 0 0 0 0 0 +5.864 8.423 -1.863 0 0 0 0 0 0 0 +5.828 8.398 -1.855 0 0 0 0 0 0 0 +5.82 8.444 -1.861 0 0 0 0 0 0 0 +5.776 8.436 -1.855 0 0 0 0 0 0 0 +5.752 8.458 -1.856 0 0 0 0 0 0 0 +5.719 8.467 -1.854 0 0 0 0 0 0 0 +5.682 8.469 -1.85 0 0 0 0 0 0 0 +5.653 8.484 -1.849 0 0 0 0 0 0 0 +5.639 8.491 -1.849 0 0 0 0 0 0 0 +5.61 8.505 -1.848 0 0 0 0 0 0 0 +5.575 8.51 -1.845 0 0 0 0 0 0 0 +5.549 8.529 -1.845 0 0 0 0 0 0 0 +5.516 8.536 -1.843 0 0 0 0 0 0 0 +5.482 8.544 -1.841 0 0 0 0 0 0 0 +5.473 8.589 -1.847 0 0 0 0 0 0 0 +5.443 8.571 -1.841 0 0 0 0 0 0 0 +5.416 8.588 -1.841 0 0 0 0 0 0 0 +5.385 8.598 -1.84 0 0 0 0 0 0 0 +5.356 8.612 -1.839 0 0 0 0 0 0 0 +5.322 8.617 -1.836 0 0 0 0 0 0 0 +5.297 8.637 -1.837 0 0 0 0 0 0 0 +5.266 8.649 -1.836 0 0 0 0 0 0 0 +5.239 8.665 -1.836 0 0 0 0 0 0 0 +5.222 8.666 -1.834 0 0 0 0 0 0 0 +5.195 8.685 -1.835 0 0 0 0 0 0 0 +5.162 8.691 -1.833 0 0 0 0 0 0 0 +5.14 8.715 -1.834 0 0 0 0 0 0 0 +5.113 8.733 -1.835 0 0 0 0 0 0 0 +5.084 8.746 -1.834 0 0 0 0 0 0 0 +5.059 8.767 -1.835 0 0 0 0 0 0 0 +5.04 8.764 -1.833 0 0 0 0 0 0 0 +5.009 8.775 -1.832 0 0 0 0 0 0 0 +4.976 8.781 -1.83 0 0 0 0 0 0 0 +4.945 8.791 -1.828 0 0 0 0 0 0 0 +4.921 8.812 -1.83 0 0 0 0 0 0 0 +4.894 8.829 -1.83 0 0 0 0 0 0 0 +4.874 8.826 -1.828 0 0 0 0 0 0 0 +4.846 8.84 -1.827 0 0 0 0 0 0 0 +4.822 8.864 -1.829 0 0 0 0 0 0 0 +4.794 8.877 -1.829 0 0 0 0 0 0 0 +4.766 8.892 -1.829 0 0 0 0 0 0 0 +4.725 8.883 -1.823 0 0 0 0 0 0 0 +4.706 8.915 -1.827 0 0 0 0 0 0 0 +4.689 8.917 -1.826 0 0 0 0 0 0 0 +4.66 8.928 -1.825 0 0 0 0 0 0 0 +4.625 8.93 -1.823 0 0 0 0 0 0 0 +4.593 8.936 -1.821 0 0 0 0 0 0 0 +4.562 8.945 -1.82 0 0 0 0 0 0 0 +4.524 8.94 -1.815 0 0 0 0 0 0 0 +4.488 8.939 -1.812 0 0 0 0 0 0 0 +4.462 8.956 -1.813 0 0 0 0 0 0 0 +4.462 8.993 -1.819 0 0 0 0 0 0 0 +4.417 8.972 -1.812 0 0 0 0 0 0 0 +4.387 8.982 -1.811 0 0 0 0 0 0 0 +4.355 8.989 -1.809 0 0 0 0 0 0 0 +4.325 8.999 -1.809 0 0 0 0 0 0 0 +4.295 9.007 -1.807 0 0 0 0 0 0 0 +4.266 9.021 -1.807 0 0 0 0 0 0 0 +4.248 9.018 -1.806 0 0 0 0 0 0 0 +4.22 9.032 -1.806 0 0 0 0 0 0 0 +4.189 9.04 -1.804 0 0 0 0 0 0 0 +4.161 9.054 -1.805 0 0 0 0 0 0 0 +4.141 9.087 -1.809 0 0 0 0 0 0 0 +4.099 9.07 -1.803 0 0 0 0 0 0 0 +4.082 9.108 -1.808 0 0 0 0 0 0 0 +4.039 9.088 -1.801 0 0 0 0 0 0 0 +4.022 9.089 -1.8 0 0 0 0 0 0 0 +3.995 9.105 -1.801 0 0 0 0 0 0 0 +3.968 9.12 -1.801 0 0 0 0 0 0 0 +3.939 9.132 -1.801 0 0 0 0 0 0 0 +3.906 9.133 -1.799 0 0 0 0 0 0 0 +3.878 9.149 -1.799 0 0 0 0 0 0 0 +3.87 9.17 -1.803 0 0 0 0 0 0 0 +3.842 9.184 -1.803 0 0 0 0 0 0 0 +3.811 9.19 -1.802 0 0 0 0 0 0 0 +3.783 9.206 -1.803 0 0 0 0 0 0 0 +3.757 9.223 -1.804 0 0 0 0 0 0 0 +3.732 9.246 -1.806 0 0 0 0 0 0 0 +3.702 9.254 -1.805 0 0 0 0 0 0 0 +3.667 9.251 -1.802 0 0 0 0 0 0 0 +3.654 9.262 -1.803 0 0 0 0 0 0 0 +3.621 9.263 -1.801 0 0 0 0 0 0 0 +3.593 9.276 -1.801 0 0 0 0 0 0 0 +3.564 9.289 -1.802 0 0 0 0 0 0 0 +3.529 9.283 -1.798 0 0 0 0 0 0 0 +3.514 9.333 -1.806 0 0 0 0 0 0 0 +3.483 9.34 -1.806 0 0 0 0 0 0 0 +3.471 9.353 -1.807 0 0 0 0 0 0 0 +3.442 9.364 -1.807 0 0 0 0 0 0 0 +3.411 9.371 -1.806 0 0 0 0 0 0 0 +3.376 9.367 -1.803 0 0 0 0 0 0 0 +3.344 9.37 -1.802 0 0 0 0 0 0 0 +3.312 9.371 -1.8 0 0 0 0 0 0 0 +3.281 9.378 -1.799 0 0 0 0 0 0 0 +3.248 9.331 -1.788 0 0 0 0 0 0 0 +3.213 9.325 -1.785 0 0 0 0 0 0 0 +3.18 9.324 -1.783 0 0 0 0 0 0 0 +3.145 9.317 -1.779 0 0 0 0 0 0 0 +3.112 9.315 -1.777 0 0 0 0 0 0 0 +3.08 9.318 -1.776 0 0 0 0 0 0 0 +3.049 9.32 -1.774 0 0 0 0 0 0 0 +3.029 9.308 -1.771 0 0 0 0 0 0 0 +2.997 9.31 -1.769 0 0 0 0 0 0 0 +2.967 9.317 -1.769 0 0 0 0 0 0 0 +2.934 9.313 -1.766 0 0 0 0 0 0 0 +2.903 9.317 -1.765 0 0 0 0 0 0 0 +2.879 9.343 -1.768 0 0 0 0 0 0 0 +2.85 9.354 -1.769 0 0 0 0 0 0 0 +2.835 9.356 -1.768 0 0 0 0 0 0 0 +2.803 9.36 -1.767 0 0 0 0 0 0 0 +2.776 9.376 -1.769 0 0 0 0 0 0 0 +2.747 9.385 -1.769 0 0 0 0 0 0 0 +2.718 9.395 -1.769 0 0 0 0 0 0 0 +2.684 9.388 -1.766 0 0 0 0 0 0 0 +2.568 9.087 -1.704 0 0 0 0 0 0 0 +2.443 8.745 -1.633 0 0 0 0 0 0 0 +2.426 8.739 -1.631 0 0 0 0 0 0 0 +2.399 8.748 -1.632 0 0 0 0 0 0 0 +2.367 8.739 -1.628 0 0 0 0 0 0 0 +2.339 8.744 -1.628 0 0 0 0 0 0 0 +2.302 8.716 -1.621 0 0 0 0 0 0 0 +2.272 8.713 -1.619 0 0 0 0 0 0 0 +2.243 8.711 -1.617 0 0 0 0 0 0 0 +2.225 8.697 -1.614 0 0 0 0 0 0 0 +1.751 6.913 -1.256 0 0 0 0 0 0 0 +1.726 6.905 -1.254 0 0 0 0 0 0 0 +0.787 3.177 -0.509 0 0 0 0 0 0 0 +1.72 6.977 -1.267 0 0 0 0 0 0 0 +2.083 8.712 -1.61 0 0 0 0 0 0 0 +2.06 8.736 -1.613 0 0 0 0 0 0 0 +2.046 8.739 -1.613 0 0 0 0 0 0 0 +2.018 8.743 -1.613 0 0 0 0 0 0 0 +1.989 8.742 -1.611 0 0 0 0 0 0 0 +0.719 3.177 -0.506 0 0 0 0 0 0 0 +1.965 8.763 -1.614 0 0 0 0 0 0 0 +0.712 3.195 -0.509 0 0 0 0 0 0 0 +0.704 3.205 -0.511 0 0 0 0 0 0 0 +0.695 3.19 -0.508 0 0 0 0 0 0 0 +0.688 3.204 -0.51 0 0 0 0 0 0 0 +0.682 3.229 -0.515 0 0 0 0 0 0 0 +0.667 3.206 -0.51 0 0 0 0 0 0 0 +0.654 3.191 -0.506 0 0 0 0 0 0 0 +0.645 3.201 -0.508 0 0 0 0 0 0 0 +0.635 3.201 -0.507 0 0 0 0 0 0 0 +0.631 3.206 -0.508 0 0 0 0 0 0 0 +0.623 3.223 -0.511 0 0 0 0 0 0 0 +0.61 3.208 -0.508 0 0 0 0 0 0 0 +0.603 3.225 -0.511 0 0 0 0 0 0 0 +0.595 3.242 -0.514 0 0 0 0 0 0 0 +0.585 3.242 -0.513 0 0 0 0 0 0 0 +0.56 3.157 -0.496 0 0 0 0 0 0 0 +0.548 3.149 -0.494 0 0 0 0 0 0 0 +0.542 3.14 -0.493 0 0 0 0 0 0 0 +0.531 3.136 -0.491 0 0 0 0 0 0 0 +0.522 3.146 -0.493 0 0 0 0 0 0 0 +0.511 3.139 -0.491 0 0 0 0 0 0 0 +0.501 3.141 -0.491 0 0 0 0 0 0 0 +0.493 3.152 -0.493 0 0 0 0 0 0 0 +0.483 3.15 -0.493 0 0 0 0 0 0 0 +0.477 3.147 -0.492 0 0 0 0 0 0 0 +0.467 3.15 -0.492 0 0 0 0 0 0 0 +0.457 3.146 -0.491 0 0 0 0 0 0 0 +0.448 3.155 -0.493 0 0 0 0 0 0 0 +0.438 3.158 -0.493 0 0 0 0 0 0 0 +0.428 3.156 -0.492 0 0 0 0 0 0 0 +0.418 3.159 -0.493 0 0 0 0 0 0 0 +0.414 3.164 -0.493 0 0 0 0 0 0 0 +0.404 3.165 -0.493 0 0 0 0 0 0 0 +0.393 3.162 -0.493 0 0 0 0 0 0 0 +0.384 3.167 -0.493 0 0 0 0 0 0 0 +0.374 3.167 -0.493 0 0 0 0 0 0 0 +0.363 3.166 -0.493 0 0 0 0 0 0 0 +0.354 3.169 -0.493 0 0 0 0 0 0 0 +0.349 3.171 -0.493 0 0 0 0 0 0 0 +0.339 3.173 -0.493 0 0 0 0 0 0 0 +0.329 3.174 -0.493 0 0 0 0 0 0 0 +0.319 3.177 -0.494 0 0 0 0 0 0 0 +0.309 3.176 -0.493 0 0 0 0 0 0 0 +0.299 3.171 -0.492 0 0 0 0 0 0 0 +0.289 3.176 -0.493 0 0 0 0 0 0 0 +0.279 3.18 -0.494 0 0 0 0 0 0 0 +0.274 3.181 -0.494 0 0 0 0 0 0 0 +0.264 3.182 -0.494 0 0 0 0 0 0 0 +0.254 3.182 -0.494 0 0 0 0 0 0 0 +0.244 3.181 -0.493 0 0 0 0 0 0 0 +0.234 3.186 -0.494 0 0 0 0 0 0 0 +0.224 3.185 -0.494 0 0 0 0 0 0 0 +0.214 3.187 -0.494 0 0 0 0 0 0 0 +0.21 3.19 -0.494 0 0 0 0 0 0 0 +0.2 3.194 -0.495 0 0 0 0 0 0 0 +0.189 3.189 -0.494 0 0 0 0 0 0 0 +0.179 3.189 -0.494 0 0 0 0 0 0 0 +0.17 3.196 -0.495 0 0 0 0 0 0 0 +0.16 3.206 -0.497 0 0 0 0 0 0 0 +0.15 3.203 -0.496 0 0 0 0 0 0 0 +0.145 3.205 -0.497 0 0 0 0 0 0 0 +0.137 3.276 -0.51 0 0 0 0 0 0 0 +0.127 3.284 -0.512 0 0 0 0 0 0 0 +0.116 3.273 -0.51 0 0 0 0 0 0 0 +0.106 3.269 -0.509 0 0 0 0 0 0 0 +0.096 3.278 -0.51 0 0 0 0 0 0 0 +0.086 3.282 -0.511 0 0 0 0 0 0 0 +0.08 3.266 -0.508 0 0 0 0 0 0 0 +0.07 3.286 -0.512 0 0 0 0 0 0 0 +0.06 3.271 -0.509 0 0 0 0 0 0 0 +0.049 3.263 -0.507 0 0 0 0 0 0 0 +0.065 9.66 -1.746 0 0 0 0 0 0 0 +0.035 9.688 -1.751 0 0 0 0 0 0 0 +0.004 9.708 -1.755 0 0 0 0 0 0 0 +-0.026 9.713 -1.756 0 0 0 0 0 0 0 +-0.042 9.727 -1.759 0 0 0 0 0 0 0 +-0.072 9.745 -1.762 0 0 0 0 0 0 0 +-0.104 9.848 -1.782 0 0 0 0 0 0 0 +-0.135 9.817 -1.776 0 0 0 0 0 0 0 +-0.168 9.95 -1.802 0 0 0 0 0 0 0 +-0.201 10.008 -1.814 0 0 0 0 0 0 0 +-0.23 9.935 -1.799 0 0 0 0 0 0 0 +-0.243 9.832 -1.78 0 0 0 0 0 0 0 +-0.273 9.814 -1.776 0 0 0 0 0 0 0 +-0.304 9.793 -1.772 0 0 0 0 0 0 0 +-0.334 9.782 -1.771 0 0 0 0 0 0 0 +-0.364 9.766 -1.768 0 0 0 0 0 0 0 +-0.395 9.77 -1.769 0 0 0 0 0 0 0 +-0.425 9.761 -1.767 0 0 0 0 0 0 0 +-0.441 9.766 -1.768 0 0 0 0 0 0 0 +-0.471 9.749 -1.765 0 0 0 0 0 0 0 +-0.501 9.74 -1.764 0 0 0 0 0 0 0 +-0.532 9.736 -1.763 0 0 0 0 0 0 0 +-0.562 9.735 -1.763 0 0 0 0 0 0 0 +-0.594 9.746 -1.766 0 0 0 0 0 0 0 +-0.624 9.747 -1.766 0 0 0 0 0 0 0 +-0.639 9.736 -1.765 0 0 0 0 0 0 0 +-0.671 9.759 -1.769 0 0 0 0 0 0 0 +-0.701 9.745 -1.767 0 0 0 0 0 0 0 +-0.733 9.757 -1.77 0 0 0 0 0 0 0 +-0.763 9.75 -1.769 0 0 0 0 0 0 0 +-0.795 9.756 -1.771 0 0 0 0 0 0 0 +-0.824 9.742 -1.768 0 0 0 0 0 0 0 +-0.84 9.748 -1.77 0 0 0 0 0 0 0 +-0.87 9.736 -1.768 0 0 0 0 0 0 0 +-0.902 9.75 -1.771 0 0 0 0 0 0 0 +-0.932 9.744 -1.771 0 0 0 0 0 0 0 +-0.963 9.743 -1.771 0 0 0 0 0 0 0 +-0.994 9.743 -1.772 0 0 0 0 0 0 0 +-1.022 9.717 -1.767 0 0 0 0 0 0 0 +-1.055 9.731 -1.771 0 0 0 0 0 0 0 +-1.069 9.72 -1.769 0 0 0 0 0 0 0 +-1.102 9.74 -1.773 0 0 0 0 0 0 0 +-1.132 9.728 -1.772 0 0 0 0 0 0 0 +-1.163 9.727 -1.772 0 0 0 0 0 0 0 +-1.192 9.713 -1.77 0 0 0 0 0 0 0 +-1.223 9.713 -1.771 0 0 0 0 0 0 0 +-1.253 9.706 -1.77 0 0 0 0 0 0 0 +-1.27 9.715 -1.772 0 0 0 0 0 0 0 +-1.299 9.702 -1.771 0 0 0 0 0 0 0 +-1.332 9.715 -1.774 0 0 0 0 0 0 0 +-1.361 9.703 -1.772 0 0 0 0 0 0 0 +-1.393 9.706 -1.774 0 0 0 0 0 0 0 +-1.423 9.702 -1.774 0 0 0 0 0 0 0 +-1.453 9.694 -1.773 0 0 0 0 0 0 0 +-1.468 9.689 -1.773 0 0 0 0 0 0 0 +-1.499 9.689 -1.774 0 0 0 0 0 0 0 +-1.528 9.676 -1.772 0 0 0 0 0 0 0 +-1.565 9.712 -1.78 0 0 0 0 0 0 0 +-1.604 9.755 -1.79 0 0 0 0 0 0 0 +-1.64 9.781 -1.796 0 0 0 0 0 0 0 +-1.671 9.776 -1.796 0 0 0 0 0 0 0 +-1.704 9.786 -1.799 0 0 0 0 0 0 0 +-1.716 9.762 -1.795 0 0 0 0 0 0 0 +-1.74 9.72 -1.787 0 0 0 0 0 0 0 +-1.762 9.67 -1.779 0 0 0 0 0 0 0 +-1.789 9.645 -1.775 0 0 0 0 0 0 0 +-1.816 9.624 -1.772 0 0 0 0 0 0 0 +-1.847 9.622 -1.772 0 0 0 0 0 0 0 +-1.878 9.618 -1.773 0 0 0 0 0 0 0 +-1.891 9.608 -1.771 0 0 0 0 0 0 0 +-1.921 9.6 -1.771 0 0 0 0 0 0 0 +-1.954 9.605 -1.773 0 0 0 0 0 0 0 +-1.98 9.58 -1.769 0 0 0 0 0 0 0 +-2.016 9.604 -1.776 0 0 0 0 0 0 0 +-2.046 9.594 -1.775 0 0 0 0 0 0 0 +-2.076 9.589 -1.775 0 0 0 0 0 0 0 +-2.09 9.58 -1.774 0 0 0 0 0 0 0 +-2.124 9.591 -1.777 0 0 0 0 0 0 0 +-2.154 9.584 -1.777 0 0 0 0 0 0 0 +-2.185 9.581 -1.778 0 0 0 0 0 0 0 +-2.216 9.578 -1.779 0 0 0 0 0 0 0 +-2.245 9.567 -1.778 0 0 0 0 0 0 0 +-2.277 9.566 -1.779 0 0 0 0 0 0 0 +-2.293 9.566 -1.78 0 0 0 0 0 0 0 +-2.321 9.553 -1.779 0 0 0 0 0 0 0 +-2.354 9.559 -1.782 0 0 0 0 0 0 0 +-2.385 9.554 -1.782 0 0 0 0 0 0 0 +-2.415 9.548 -1.782 0 0 0 0 0 0 0 +-2.446 9.542 -1.783 0 0 0 0 0 0 0 +-2.477 9.54 -1.784 0 0 0 0 0 0 0 +-2.491 9.531 -1.783 0 0 0 0 0 0 0 +-2.522 9.527 -1.784 0 0 0 0 0 0 0 +-2.552 9.519 -1.784 0 0 0 0 0 0 0 +-2.58 9.505 -1.782 0 0 0 0 0 0 0 +-2.613 9.508 -1.785 0 0 0 0 0 0 0 +-2.646 9.509 -1.787 0 0 0 0 0 0 0 +-2.672 9.49 -1.784 0 0 0 0 0 0 0 +-2.69 9.497 -1.787 0 0 0 0 0 0 0 +-2.721 9.49 -1.787 0 0 0 0 0 0 0 +-2.751 9.484 -1.787 0 0 0 0 0 0 0 +-2.781 9.477 -1.788 0 0 0 0 0 0 0 +-2.813 9.474 -1.789 0 0 0 0 0 0 0 +-2.842 9.463 -1.788 0 0 0 0 0 0 0 +-2.871 9.452 -1.788 0 0 0 0 0 0 0 +-2.906 9.458 -1.791 0 0 0 0 0 0 0 +-2.917 9.444 -1.789 0 0 0 0 0 0 0 +-2.952 9.45 -1.792 0 0 0 0 0 0 0 +-2.979 9.431 -1.79 0 0 0 0 0 0 0 +-3.011 9.429 -1.792 0 0 0 0 0 0 0 +-3.042 9.425 -1.793 0 0 0 0 0 0 0 +-3.075 9.425 -1.795 0 0 0 0 0 0 0 +-3.109 9.428 -1.798 0 0 0 0 0 0 0 +-3.147 9.494 -1.812 0 0 0 0 0 0 0 +-3.183 9.503 -1.816 0 0 0 0 0 0 0 +-3.209 9.482 -1.814 0 0 0 0 0 0 0 +-3.254 9.514 -1.822 0 0 0 0 0 0 0 +-3.3 9.55 -1.832 0 0 0 0 0 0 0 +-3.326 9.531 -1.83 0 0 0 0 0 0 0 +-3.35 9.503 -1.826 0 0 0 0 0 0 0 +-3.359 9.482 -1.823 0 0 0 0 0 0 0 +-3.38 9.445 -1.818 0 0 0 0 0 0 0 +-3.403 9.418 -1.814 0 0 0 0 0 0 0 +-3.422 9.378 -1.808 0 0 0 0 0 0 0 +-3.441 9.337 -1.802 0 0 0 0 0 0 0 +-3.456 9.29 -1.795 0 0 0 0 0 0 0 +-3.483 9.271 -1.793 0 0 0 0 0 0 0 +-3.485 9.235 -1.787 0 0 0 0 0 0 0 +-3.513 9.22 -1.786 0 0 0 0 0 0 0 +-3.54 9.204 -1.785 0 0 0 0 0 0 0 +-3.562 9.176 -1.781 0 0 0 0 0 0 0 +-3.585 9.15 -1.778 0 0 0 0 0 0 0 +-3.166 8.015 -1.544 0 0 0 0 0 0 0 +-3.15 7.901 -1.522 0 0 0 0 0 0 0 +-3.166 7.87 -1.518 0 0 0 0 0 0 0 +-3.175 7.857 -1.516 0 0 0 0 0 0 0 +-3.178 7.795 -1.505 0 0 0 0 0 0 0 +-3.199 7.776 -1.503 0 0 0 0 0 0 0 +-3.217 7.751 -1.5 0 0 0 0 0 0 0 +-3.221 7.692 -1.49 0 0 0 0 0 0 0 +-3.24 7.671 -1.488 0 0 0 0 0 0 0 +-3.252 7.632 -1.482 0 0 0 0 0 0 0 +-3.254 7.603 -1.477 0 0 0 0 0 0 0 +-3.271 7.579 -1.474 0 0 0 0 0 0 0 +-3.294 7.567 -1.473 0 0 0 0 0 0 0 +-3.298 7.511 -1.464 0 0 0 0 0 0 0 +-3.316 7.488 -1.461 0 0 0 0 0 0 0 +-3.325 7.446 -1.454 0 0 0 0 0 0 0 +-3.345 7.428 -1.453 0 0 0 0 0 0 0 +-3.352 7.412 -1.451 0 0 0 0 0 0 0 +-3.363 7.375 -1.445 0 0 0 0 0 0 0 +-3.371 7.33 -1.438 0 0 0 0 0 0 0 +-3.381 7.293 -1.432 0 0 0 0 0 0 0 +-3.399 7.272 -1.43 0 0 0 0 0 0 0 +-3.41 7.236 -1.424 0 0 0 0 0 0 0 +-3.428 7.215 -1.422 0 0 0 0 0 0 0 +-3.438 7.208 -1.422 0 0 0 0 0 0 0 +-3.446 7.167 -1.415 0 0 0 0 0 0 0 +-3.464 7.147 -1.413 0 0 0 0 0 0 0 +-3.488 7.14 -1.414 0 0 0 0 0 0 0 +-3.501 7.109 -1.41 0 0 0 0 0 0 0 +-3.532 7.114 -1.413 0 0 0 0 0 0 0 +-3.566 7.127 -1.419 0 0 0 0 0 0 0 +-3.584 7.107 -1.417 0 0 0 0 0 0 0 +-3.602 7.114 -1.419 0 0 0 0 0 0 0 +-3.633 7.12 -1.423 0 0 0 0 0 0 0 +-3.671 7.138 -1.43 0 0 0 0 0 0 0 +-3.706 7.151 -1.435 0 0 0 0 0 0 0 +-3.745 7.171 -1.442 0 0 0 0 0 0 0 +-3.757 7.14 -1.438 0 0 0 0 0 0 0 +-3.795 7.157 -1.444 0 0 0 0 0 0 0 +-3.818 7.174 -1.449 0 0 0 0 0 0 0 +-3.854 7.186 -1.454 0 0 0 0 0 0 0 +-3.951 7.31 -1.484 0 0 0 0 0 0 0 +-4.02 7.382 -1.503 0 0 0 0 0 0 0 +-4.072 7.421 -1.514 0 0 0 0 0 0 0 +-4.148 7.503 -1.535 0 0 0 0 0 0 0 +-4.188 7.52 -1.542 0 0 0 0 0 0 0 +-4.182 7.481 -1.535 0 0 0 0 0 0 0 +-4.213 7.482 -1.538 0 0 0 0 0 0 0 +-4.247 7.487 -1.542 0 0 0 0 0 0 0 +-4.96 8.672 -1.81 0 0 0 0 0 0 0 +-4.981 8.644 -1.807 0 0 0 0 0 0 0 +-5.007 8.627 -1.807 0 0 0 0 0 0 0 +-5.02 8.588 -1.801 0 0 0 0 0 0 0 +-5.031 8.576 -1.801 0 0 0 0 0 0 0 +-5.062 8.567 -1.802 0 0 0 0 0 0 0 +-5.081 8.538 -1.799 0 0 0 0 0 0 0 +-5.102 8.512 -1.797 0 0 0 0 0 0 0 +-5.134 8.504 -1.799 0 0 0 0 0 0 0 +-5.154 8.478 -1.796 0 0 0 0 0 0 0 +-5.184 8.467 -1.798 0 0 0 0 0 0 0 +-5.211 8.452 -1.798 0 0 0 0 0 0 0 +-5.21 8.42 -1.793 0 0 0 0 0 0 0 +-5.244 8.416 -1.795 0 0 0 0 0 0 0 +-5.268 8.396 -1.795 0 0 0 0 0 0 0 +-5.292 8.376 -1.794 0 0 0 0 0 0 0 +-5.317 8.356 -1.793 0 0 0 0 0 0 0 +-5.35 8.351 -1.796 0 0 0 0 0 0 0 +-5.369 8.322 -1.793 0 0 0 0 0 0 0 +-5.385 8.319 -1.794 0 0 0 0 0 0 0 +-5.394 8.276 -1.788 0 0 0 0 0 0 0 +-5.422 8.262 -1.789 0 0 0 0 0 0 0 +-5.457 8.258 -1.792 0 0 0 0 0 0 0 +-5.479 8.234 -1.79 0 0 0 0 0 0 0 +-5.49 8.196 -1.785 0 0 0 0 0 0 0 +-5.511 8.172 -1.784 0 0 0 0 0 0 0 +-5.51 8.142 -1.779 0 0 0 0 0 0 0 +-5.514 8.094 -1.772 0 0 0 0 0 0 0 +-5.533 8.067 -1.769 0 0 0 0 0 0 0 +-5.539 8.022 -1.763 0 0 0 0 0 0 0 +-5.547 7.979 -1.757 0 0 0 0 0 0 0 +-5.559 7.944 -1.753 0 0 0 0 0 0 0 +-5.564 7.898 -1.746 0 0 0 0 0 0 0 +-5.559 7.865 -1.74 0 0 0 0 0 0 0 +-5.576 7.836 -1.738 0 0 0 0 0 0 0 +-5.594 7.811 -1.736 0 0 0 0 0 0 0 +-5.611 7.782 -1.733 0 0 0 0 0 0 0 +-5.632 7.759 -1.732 0 0 0 0 0 0 0 +-5.649 7.732 -1.73 0 0 0 0 0 0 0 +-5.685 7.73 -1.733 0 0 0 0 0 0 0 +-5.712 7.715 -1.734 0 0 0 0 0 0 0 +-5.722 7.703 -1.733 0 0 0 0 0 0 0 +-5.753 7.695 -1.736 0 0 0 0 0 0 0 +-5.788 7.691 -1.739 0 0 0 0 0 0 0 +-5.808 7.668 -1.738 0 0 0 0 0 0 0 +-5.842 7.662 -1.741 0 0 0 0 0 0 0 +-5.878 7.659 -1.745 0 0 0 0 0 0 0 +-5.905 7.645 -1.746 0 0 0 0 0 0 0 +-5.926 7.647 -1.749 0 0 0 0 0 0 0 +-5.957 7.637 -1.751 0 0 0 0 0 0 0 +-5.984 7.622 -1.752 0 0 0 0 0 0 0 +-6.018 7.617 -1.755 0 0 0 0 0 0 0 +-6.042 7.598 -1.755 0 0 0 0 0 0 0 +-6.07 7.583 -1.756 0 0 0 0 0 0 0 +-6.099 7.57 -1.758 0 0 0 0 0 0 0 +-6.126 7.556 -1.759 0 0 0 0 0 0 0 +-6.139 7.548 -1.759 0 0 0 0 0 0 0 +-6.164 7.53 -1.76 0 0 0 0 0 0 0 +-6.195 7.519 -1.762 0 0 0 0 0 0 0 +-6.223 7.505 -1.763 0 0 0 0 0 0 0 +-6.256 7.497 -1.766 0 0 0 0 0 0 0 +-6.29 7.489 -1.769 0 0 0 0 0 0 0 +-6.302 7.456 -1.766 0 0 0 0 0 0 0 +-6.32 7.454 -1.768 0 0 0 0 0 0 0 +-6.346 7.437 -1.768 0 0 0 0 0 0 0 +-6.373 7.421 -1.769 0 0 0 0 0 0 0 +-6.403 7.409 -1.771 0 0 0 0 0 0 0 +-6.434 7.397 -1.774 0 0 0 0 0 0 0 +-6.449 7.368 -1.771 0 0 0 0 0 0 0 +-6.472 7.348 -1.771 0 0 0 0 0 0 0 +-6.494 7.349 -1.774 0 0 0 0 0 0 0 +-6.518 7.329 -1.774 0 0 0 0 0 0 0 +-6.544 7.313 -1.776 0 0 0 0 0 0 0 +-6.569 7.294 -1.776 0 0 0 0 0 0 0 +-6.59 7.272 -1.776 0 0 0 0 0 0 0 +-6.617 7.255 -1.777 0 0 0 0 0 0 0 +-6.644 7.239 -1.778 0 0 0 0 0 0 0 +-6.65 7.222 -1.776 0 0 0 0 0 0 0 +-6.667 7.196 -1.775 0 0 0 0 0 0 0 +-6.707 7.193 -1.78 0 0 0 0 0 0 0 +-6.734 7.177 -1.781 0 0 0 0 0 0 0 +-6.747 7.145 -1.778 0 0 0 0 0 0 0 +-6.781 7.137 -1.782 0 0 0 0 0 0 0 +-6.809 7.121 -1.783 0 0 0 0 0 0 0 +-6.829 7.097 -1.782 0 0 0 0 0 0 0 +-6.846 7.092 -1.784 0 0 0 0 0 0 0 +-6.866 7.069 -1.784 0 0 0 0 0 0 0 +-6.891 7.05 -1.784 0 0 0 0 0 0 0 +-6.913 7.029 -1.784 0 0 0 0 0 0 0 +-6.947 7.018 -1.787 0 0 0 0 0 0 0 +-6.963 6.991 -1.786 0 0 0 0 0 0 0 +-6.993 6.977 -1.788 0 0 0 0 0 0 0 +-6.997 6.959 -1.786 0 0 0 0 0 0 0 +-7.022 6.94 -1.787 0 0 0 0 0 0 0 +-7.046 6.92 -1.788 0 0 0 0 0 0 0 +-7.079 6.909 -1.791 0 0 0 0 0 0 0 +-7.1 6.886 -1.79 0 0 0 0 0 0 0 +-7.126 6.867 -1.792 0 0 0 0 0 0 0 +-7.157 6.854 -1.794 0 0 0 0 0 0 0 +-7.159 6.835 -1.792 0 0 0 0 0 0 0 +-7.185 6.816 -1.793 0 0 0 0 0 0 0 +-7.214 6.801 -1.795 0 0 0 0 0 0 0 +-7.231 6.774 -1.794 0 0 0 0 0 0 0 +-7.25 6.75 -1.793 0 0 0 0 0 0 0 +-7.28 6.735 -1.796 0 0 0 0 0 0 0 +-7.291 6.703 -1.793 0 0 0 0 0 0 0 +-7.299 6.689 -1.792 0 0 0 0 0 0 0 +-7.334 6.679 -1.796 0 0 0 0 0 0 0 +-7.346 6.648 -1.794 0 0 0 0 0 0 0 +-7.364 6.622 -1.793 0 0 0 0 0 0 0 +-7.406 6.617 -1.798 0 0 0 0 0 0 0 +-7.407 6.577 -1.793 0 0 0 0 0 0 0 +-7.437 6.562 -1.796 0 0 0 0 0 0 0 +-7.457 6.559 -1.798 0 0 0 0 0 0 0 +-7.474 6.532 -1.797 0 0 0 0 0 0 0 +-7.509 6.521 -1.801 0 0 0 0 0 0 0 +-7.525 6.493 -1.8 0 0 0 0 0 0 0 +-7.536 6.462 -1.798 0 0 0 0 0 0 0 +-7.57 6.45 -1.801 0 0 0 0 0 0 0 +-7.59 6.426 -1.801 0 0 0 0 0 0 0 +-7.609 6.401 -1.801 0 0 0 0 0 0 0 +-7.633 6.4 -1.804 0 0 0 0 0 0 0 +-7.66 6.383 -1.806 0 0 0 0 0 0 0 +-7.674 6.353 -1.804 0 0 0 0 0 0 0 +-7.714 6.345 -1.809 0 0 0 0 0 0 0 +-7.734 6.321 -1.809 0 0 0 0 0 0 0 +-7.743 6.288 -1.807 0 0 0 0 0 0 0 +-7.773 6.272 -1.809 0 0 0 0 0 0 0 +-7.777 6.255 -1.808 0 0 0 0 0 0 0 +-7.79 6.226 -1.806 0 0 0 0 0 0 0 +-7.807 6.199 -1.806 0 0 0 0 0 0 0 +-7.831 6.178 -1.807 0 0 0 0 0 0 0 +-7.844 6.149 -1.805 0 0 0 0 0 0 0 +-7.87 6.129 -1.807 0 0 0 0 0 0 0 +-7.887 6.103 -1.806 0 0 0 0 0 0 0 +-7.892 6.087 -1.805 0 0 0 0 0 0 0 +-7.916 6.066 -1.806 0 0 0 0 0 0 0 +-7.938 6.043 -1.807 0 0 0 0 0 0 0 +-7.966 6.025 -1.809 0 0 0 0 0 0 0 +-7.993 6.006 -1.811 0 0 0 0 0 0 0 +-8.009 5.979 -1.811 0 0 0 0 0 0 0 +-8.028 5.953 -1.811 0 0 0 0 0 0 0 +-8.05 5.95 -1.814 0 0 0 0 0 0 0 +-8.062 5.92 -1.812 0 0 0 0 0 0 0 +-8.092 5.903 -1.815 0 0 0 0 0 0 0 +-8.12 5.884 -1.817 0 0 0 0 0 0 0 +-8.132 5.854 -1.815 0 0 0 0 0 0 0 +-8.158 5.834 -1.817 0 0 0 0 0 0 0 +-8.183 5.813 -1.819 0 0 0 0 0 0 0 +-8.203 5.808 -1.822 0 0 0 0 0 0 0 +-8.226 5.786 -1.823 0 0 0 0 0 0 0 +-8.251 5.764 -1.824 0 0 0 0 0 0 0 +-8.264 5.735 -1.823 0 0 0 0 0 0 0 +-8.29 5.715 -1.825 0 0 0 0 0 0 0 +-8.31 5.69 -1.825 0 0 0 0 0 0 0 +-8.352 5.68 -1.831 0 0 0 0 0 0 0 +-8.368 5.653 -1.831 0 0 0 0 0 0 0 +-8.39 5.648 -1.834 0 0 0 0 0 0 0 +-8.442 5.645 -1.842 0 0 0 0 0 0 0 +-8.406 5.582 -1.829 0 0 0 0 0 0 0 +-6.76 4.465 -1.444 0 0 0 0 0 0 0 +-6.761 4.435 -1.441 0 0 0 0 0 0 0 +-6.77 4.411 -1.44 0 0 0 0 0 0 0 +-6.788 4.393 -1.441 0 0 0 0 0 0 0 +-6.794 4.381 -1.441 0 0 0 0 0 0 0 +-6.812 4.363 -1.442 0 0 0 0 0 0 0 +-6.846 4.354 -1.446 0 0 0 0 0 0 0 +-8.656 5.459 -1.857 0 0 0 0 0 0 0 +-8.672 5.431 -1.857 0 0 0 0 0 0 0 +-8.71 5.417 -1.861 0 0 0 0 0 0 0 +-8.742 5.399 -1.865 0 0 0 0 0 0 0 +-8.743 5.38 -1.863 0 0 0 0 0 0 0 +-8.758 5.351 -1.863 0 0 0 0 0 0 0 +-8.778 5.326 -1.863 0 0 0 0 0 0 0 +-8.815 5.31 -1.868 0 0 0 0 0 0 0 +-8.814 5.273 -1.864 0 0 0 0 0 0 0 +-8.838 5.249 -1.866 0 0 0 0 0 0 0 +-8.873 5.232 -1.87 0 0 0 0 0 0 0 +-8.854 5.202 -1.864 0 0 0 0 0 0 0 +-8.908 5.196 -1.872 0 0 0 0 0 0 0 +-8.892 5.149 -1.865 0 0 0 0 0 0 0 +-8.933 5.136 -1.871 0 0 0 0 0 0 0 +-8.958 5.113 -1.872 0 0 0 0 0 0 0 +-8.952 5.072 -1.868 0 0 0 0 0 0 0 +-8.993 5.058 -1.873 0 0 0 0 0 0 0 +-8.999 5.024 -1.871 0 0 0 0 0 0 0 +-8.993 5.003 -1.868 0 0 0 0 0 0 0 +-9.033 4.988 -1.873 0 0 0 0 0 0 0 +-9.014 4.94 -1.866 0 0 0 0 0 0 0 +-9.016 4.905 -1.863 0 0 0 0 0 0 0 +-9.026 4.873 -1.861 0 0 0 0 0 0 0 +-9.017 4.832 -1.856 0 0 0 0 0 0 0 +-9.025 4.8 -1.855 0 0 0 0 0 0 0 +-9.078 4.81 -1.864 0 0 0 0 0 0 0 +-9.086 4.778 -1.863 0 0 0 0 0 0 0 +-9.13 4.764 -1.869 0 0 0 0 0 0 0 +-9.15 4.738 -1.871 0 0 0 0 0 0 0 +-9.16 4.707 -1.869 0 0 0 0 0 0 0 +-9.138 4.66 -1.861 0 0 0 0 0 0 0 +-7.343 3.706 -1.468 0 0 0 0 0 0 0 +-7.375 3.694 -1.473 0 0 0 0 0 0 0 +-9.217 4.573 -1.868 0 0 0 0 0 0 0 +-9.231 4.544 -1.868 0 0 0 0 0 0 0 +-9.238 4.511 -1.866 0 0 0 0 0 0 0 +-9.26 4.486 -1.868 0 0 0 0 0 0 0 +-9.263 4.451 -1.865 0 0 0 0 0 0 0 +-9.268 4.436 -1.865 0 0 0 0 0 0 0 +-9.273 4.403 -1.863 0 0 0 0 0 0 0 +-9.292 4.376 -1.864 0 0 0 0 0 0 0 +-9.302 4.345 -1.863 0 0 0 0 0 0 0 +-9.305 4.311 -1.861 0 0 0 0 0 0 0 +-9.315 4.28 -1.86 0 0 0 0 0 0 0 +-9.322 4.248 -1.859 0 0 0 0 0 0 0 +-9.342 4.239 -1.862 0 0 0 0 0 0 0 +-9.343 4.204 -1.859 0 0 0 0 0 0 0 +-9.349 4.172 -1.858 0 0 0 0 0 0 0 +-9.355 4.139 -1.856 0 0 0 0 0 0 0 +-9.37 4.111 -1.857 0 0 0 0 0 0 0 +-9.388 4.084 -1.858 0 0 0 0 0 0 0 +-9.392 4.05 -1.856 0 0 0 0 0 0 0 +-9.386 4.03 -1.853 0 0 0 0 0 0 0 +-9.4 4.001 -1.853 0 0 0 0 0 0 0 +-9.403 3.968 -1.852 0 0 0 0 0 0 0 +-9.41 3.936 -1.85 0 0 0 0 0 0 0 +-9.385 3.891 -1.842 0 0 0 0 0 0 0 +-9.426 3.873 -1.849 0 0 0 0 0 0 0 +-9.403 3.83 -1.841 0 0 0 0 0 0 0 +-9.441 3.81 -1.847 0 0 0 0 0 0 0 +-9.42 3.784 -1.841 0 0 0 0 0 0 0 +-9.455 3.764 -1.846 0 0 0 0 0 0 0 +-9.441 3.725 -1.841 0 0 0 0 0 0 0 +-9.444 3.691 -1.839 0 0 0 0 0 0 0 +-9.454 3.661 -1.838 0 0 0 0 0 0 0 +-9.465 3.631 -1.838 0 0 0 0 0 0 0 +-9.498 3.61 -1.843 0 0 0 0 0 0 0 +-9.465 3.58 -1.835 0 0 0 0 0 0 0 +-9.513 3.564 -1.842 0 0 0 0 0 0 0 +-9.493 3.523 -1.836 0 0 0 0 0 0 0 +-9.519 3.498 -1.839 0 0 0 0 0 0 0 +-9.502 3.458 -1.833 0 0 0 0 0 0 0 +-9.517 3.43 -1.834 0 0 0 0 0 0 0 +-9.522 3.398 -1.833 0 0 0 0 0 0 0 +-9.525 3.382 -1.833 0 0 0 0 0 0 0 +-9.556 3.36 -1.837 0 0 0 0 0 0 0 +-9.535 3.319 -1.83 0 0 0 0 0 0 0 +-9.544 3.288 -1.83 0 0 0 0 0 0 0 +-9.558 3.259 -1.831 0 0 0 0 0 0 0 +-9.559 3.226 -1.829 0 0 0 0 0 0 0 +-9.574 3.198 -1.83 0 0 0 0 0 0 0 +-9.572 3.18 -1.828 0 0 0 0 0 0 0 +-9.582 3.15 -1.828 0 0 0 0 0 0 0 +-9.596 3.121 -1.829 0 0 0 0 0 0 0 +-9.605 3.091 -1.829 0 0 0 0 0 0 0 +-9.624 3.064 -1.831 0 0 0 0 0 0 0 +-9.66 3.042 -1.836 0 0 0 0 0 0 0 +-9.643 3.003 -1.831 0 0 0 0 0 0 0 +-9.642 2.987 -1.83 0 0 0 0 0 0 0 +-9.663 2.96 -1.832 0 0 0 0 0 0 0 +-9.67 2.929 -1.832 0 0 0 0 0 0 0 +-9.689 2.901 -1.834 0 0 0 0 0 0 0 +-9.698 2.871 -1.834 0 0 0 0 0 0 0 +-9.703 2.839 -1.833 0 0 0 0 0 0 0 +-9.72 2.811 -1.834 0 0 0 0 0 0 0 +-9.744 2.785 -1.837 0 0 0 0 0 0 0 +-9.754 2.771 -1.839 0 0 0 0 0 0 0 +-9.766 2.741 -1.839 0 0 0 0 0 0 0 +-9.778 2.712 -1.84 0 0 0 0 0 0 0 +-9.783 2.68 -1.839 0 0 0 0 0 0 0 +-9.797 2.651 -1.841 0 0 0 0 0 0 0 +-9.804 2.619 -1.84 0 0 0 0 0 0 0 +-9.817 2.59 -1.841 0 0 0 0 0 0 0 +-9.81 2.572 -1.839 0 0 0 0 0 0 0 +-9.812 2.539 -1.838 0 0 0 0 0 0 0 +-8.269 2.116 -1.528 0 0 0 0 0 0 0 +-8.049 2.034 -1.483 0 0 0 0 0 0 0 +-7.773 1.939 -1.427 0 0 0 0 0 0 0 +-7.298 1.798 -1.331 0 0 0 0 0 0 0 +-7.13 1.733 -1.296 0 0 0 0 0 0 0 +-7.135 1.723 -1.297 0 0 0 0 0 0 0 +-6.901 1.519 -1.244 0 0 0 0 0 0 0 +-6.889 1.494 -1.24 0 0 0 0 0 0 0 +-6.88 1.469 -1.238 0 0 0 0 0 0 0 +-6.871 1.445 -1.235 0 0 0 0 0 0 0 +-6.883 1.425 -1.236 0 0 0 0 0 0 0 +-6.886 1.403 -1.236 0 0 0 0 0 0 0 +-6.898 1.383 -1.238 0 0 0 0 0 0 0 +-6.881 1.368 -1.234 0 0 0 0 0 0 0 +-6.874 1.344 -1.232 0 0 0 0 0 0 0 +-6.88 1.323 -1.232 0 0 0 0 0 0 0 +-6.894 1.303 -1.234 0 0 0 0 0 0 0 +-6.874 1.277 -1.229 0 0 0 0 0 0 0 +-6.876 1.255 -1.229 0 0 0 0 0 0 0 +-6.888 1.235 -1.23 0 0 0 0 0 0 0 +-6.89 1.224 -1.23 0 0 0 0 0 0 0 +-6.869 1.198 -1.225 0 0 0 0 0 0 0 +-6.886 1.179 -1.228 0 0 0 0 0 0 0 +-6.88 1.156 -1.226 0 0 0 0 0 0 0 +-6.895 1.136 -1.229 0 0 0 0 0 0 0 +-6.893 1.113 -1.227 0 0 0 0 0 0 0 +-6.933 1.097 -1.235 0 0 0 0 0 0 0 +-6.908 1.082 -1.229 0 0 0 0 0 0 0 +-6.915 1.061 -1.23 0 0 0 0 0 0 0 +-6.922 1.04 -1.231 0 0 0 0 0 0 0 +-6.916 1.017 -1.229 0 0 0 0 0 0 0 +-6.938 0.998 -1.233 0 0 0 0 0 0 0 +-6.922 0.973 -1.229 0 0 0 0 0 0 0 +-6.935 0.953 -1.231 0 0 0 0 0 0 0 +-6.932 0.942 -1.23 0 0 0 0 0 0 0 +-6.961 0.923 -1.235 0 0 0 0 0 0 0 +-6.952 0.9 -1.233 0 0 0 0 0 0 0 +-6.962 0.879 -1.234 0 0 0 0 0 0 0 +-6.949 0.855 -1.231 0 0 0 0 0 0 0 +-6.954 0.833 -1.232 0 0 0 0 0 0 0 +-6.959 0.812 -1.232 0 0 0 0 0 0 0 +-6.944 0.799 -1.229 0 0 0 0 0 0 0 +-6.964 0.779 -1.232 0 0 0 0 0 0 0 +-6.969 0.758 -1.233 0 0 0 0 0 0 0 +-6.973 0.736 -1.233 0 0 0 0 0 0 0 +-6.989 0.715 -1.236 0 0 0 0 0 0 0 +-6.999 0.694 -1.237 0 0 0 0 0 0 0 +-6.997 0.672 -1.236 0 0 0 0 0 0 0 +-7.019 0.652 -1.24 0 0 0 0 0 0 0 +-7.016 0.64 -1.24 0 0 0 0 0 0 0 +-7.024 0.619 -1.241 0 0 0 0 0 0 0 +-7.037 0.597 -1.243 0 0 0 0 0 0 0 +-7.043 0.576 -1.244 0 0 0 0 0 0 0 +-7.059 0.555 -1.246 0 0 0 0 0 0 0 +-7.049 0.532 -1.244 0 0 0 0 0 0 0 +-7.066 0.51 -1.247 0 0 0 0 0 0 0 +-7.061 0.499 -1.246 0 0 0 0 0 0 0 +-7.084 0.478 -1.25 0 0 0 0 0 0 0 +-7.093 0.456 -1.252 0 0 0 0 0 0 0 +-7.104 0.435 -1.254 0 0 0 0 0 0 0 +-7.114 0.413 -1.255 0 0 0 0 0 0 0 +-7.129 0.391 -1.258 0 0 0 0 0 0 0 +-7.128 0.369 -1.257 0 0 0 0 0 0 0 +-7.15 0.347 -1.262 0 0 0 0 0 0 0 +-7.171 0.337 -1.265 0 0 0 0 0 0 0 +-7.18 0.315 -1.267 0 0 0 0 0 0 0 +-7.179 0.292 -1.267 0 0 0 0 0 0 0 +-7.211 0.271 -1.273 0 0 0 0 0 0 0 +-7.221 0.248 -1.275 0 0 0 0 0 0 0 +-7.226 0.226 -1.275 0 0 0 0 0 0 0 +-7.25 0.203 -1.28 0 0 0 0 0 0 0 +-7.258 0.192 -1.281 0 0 0 0 0 0 0 +-7.292 0.17 -1.288 0 0 0 0 0 0 0 +-7.297 0.147 -1.289 0 0 0 0 0 0 0 +-10.206 0.051 -1.852 0 0 0 0 0 0 0 +-10.204 0.019 -1.851 0 0 0 0 0 0 0 +-10.189 -0.013 -1.848 0 0 0 0 0 0 0 +-10.21 -0.045 -1.852 0 0 0 0 0 0 0 +-10.204 -0.077 -1.851 0 0 0 0 0 0 0 +-10.216 -0.109 -1.853 0 0 0 0 0 0 0 +-10.219 -0.141 -1.854 0 0 0 0 0 0 0 +-10.238 -0.158 -1.858 0 0 0 0 0 0 0 +-10.232 -0.19 -1.857 0 0 0 0 0 0 0 +-10.237 -0.222 -1.858 0 0 0 0 0 0 0 +-10.235 -0.254 -1.858 0 0 0 0 0 0 0 +-10.236 -0.286 -1.858 0 0 0 0 0 0 0 +-10.239 -0.319 -1.859 0 0 0 0 0 0 0 +-10.244 -0.351 -1.86 0 0 0 0 0 0 0 +-10.239 -0.367 -1.859 0 0 0 0 0 0 0 +-10.248 -0.4 -1.861 0 0 0 0 0 0 0 +-10.242 -0.432 -1.86 0 0 0 0 0 0 0 +-10.251 -0.464 -1.862 0 0 0 0 0 0 0 +-10.243 -0.496 -1.861 0 0 0 0 0 0 0 +-10.23 -0.528 -1.859 0 0 0 0 0 0 0 +-10.246 -0.561 -1.862 0 0 0 0 0 0 0 +-10.238 -0.593 -1.861 0 0 0 0 0 0 0 +-10.237 -0.609 -1.861 0 0 0 0 0 0 0 +-10.239 -0.641 -1.862 0 0 0 0 0 0 0 +-10.241 -0.674 -1.863 0 0 0 0 0 0 0 +-10.233 -0.705 -1.861 0 0 0 0 0 0 0 +-10.227 -0.737 -1.861 0 0 0 0 0 0 0 +-10.221 -0.769 -1.86 0 0 0 0 0 0 0 +-10.216 -0.801 -1.86 0 0 0 0 0 0 0 +-10.231 -0.818 -1.863 0 0 0 0 0 0 0 +-10.23 -0.851 -1.863 0 0 0 0 0 0 0 +-10.21 -0.881 -1.86 0 0 0 0 0 0 0 +-10.217 -0.914 -1.861 0 0 0 0 0 0 0 +-10.214 -0.946 -1.861 0 0 0 0 0 0 0 +-10.213 -0.978 -1.862 0 0 0 0 0 0 0 +-10.206 -1.01 -1.861 0 0 0 0 0 0 0 +-10.21 -1.027 -1.862 0 0 0 0 0 0 0 +-10.207 -1.059 -1.862 0 0 0 0 0 0 0 +-10.191 -1.09 -1.86 0 0 0 0 0 0 0 +-10.198 -1.123 -1.862 0 0 0 0 0 0 0 +-10.192 -1.155 -1.861 0 0 0 0 0 0 0 +-10.192 -1.187 -1.862 0 0 0 0 0 0 0 +-10.181 -1.218 -1.861 0 0 0 0 0 0 0 +-10.181 -1.234 -1.861 0 0 0 0 0 0 0 +-10.177 -1.266 -1.861 0 0 0 0 0 0 0 +-10.175 -1.299 -1.861 0 0 0 0 0 0 0 +-10.866 -1.423 -1.997 0 0 0 0 0 0 0 +-10.863 -1.458 -1.998 0 0 0 0 0 0 0 +-10.86 -1.492 -1.998 0 0 0 0 0 0 0 +-10.844 -1.524 -1.996 0 0 0 0 0 0 0 +-10.853 -1.56 -1.998 0 0 0 0 0 0 0 +-10.834 -1.592 -1.996 0 0 0 0 0 0 0 +-10.835 -1.61 -1.996 0 0 0 0 0 0 0 +-10.828 -1.644 -1.996 0 0 0 0 0 0 0 +-10.829 -1.679 -1.997 0 0 0 0 0 0 0 +-10.822 -1.712 -1.997 0 0 0 0 0 0 0 +-10.816 -1.746 -1.997 0 0 0 0 0 0 0 +-10.817 -1.781 -1.998 0 0 0 0 0 0 0 +-10.809 -1.815 -1.998 0 0 0 0 0 0 0 +-10.81 -1.833 -1.998 0 0 0 0 0 0 0 +-10.796 -1.865 -1.997 0 0 0 0 0 0 0 +-10.785 -1.898 -1.996 0 0 0 0 0 0 0 +-10.786 -1.933 -1.997 0 0 0 0 0 0 0 +-10.786 -1.968 -1.998 0 0 0 0 0 0 0 +-10.782 -2.003 -1.999 0 0 0 0 0 0 0 +-10.76 -2.034 -1.996 0 0 0 0 0 0 0 +-10.763 -2.052 -1.997 0 0 0 0 0 0 0 +-10.746 -2.083 -1.995 0 0 0 0 0 0 0 +-10.757 -2.121 -1.998 0 0 0 0 0 0 0 +-10.752 -2.155 -1.999 0 0 0 0 0 0 0 +-10.736 -2.187 -1.997 0 0 0 0 0 0 0 +-10.741 -2.223 -1.999 0 0 0 0 0 0 0 +-10.718 -2.253 -1.996 0 0 0 0 0 0 0 +-10.722 -2.272 -1.998 0 0 0 0 0 0 0 +-10.707 -2.304 -1.996 0 0 0 0 0 0 0 +-10.708 -2.339 -1.998 0 0 0 0 0 0 0 +-10.699 -2.372 -1.997 0 0 0 0 0 0 0 +-10.683 -2.404 -1.996 0 0 0 0 0 0 0 +-10.685 -2.44 -1.998 0 0 0 0 0 0 0 +-10.67 -2.472 -1.996 0 0 0 0 0 0 0 +-10.67 -2.489 -1.997 0 0 0 0 0 0 0 +-10.652 -2.52 -1.995 0 0 0 0 0 0 0 +-10.646 -2.554 -1.995 0 0 0 0 0 0 0 +-10.663 -2.594 -2 0 0 0 0 0 0 0 +-10.666 -2.63 -2.002 0 0 0 0 0 0 0 +-10.635 -2.658 -1.998 0 0 0 0 0 0 0 +-10.631 -2.692 -1.999 0 0 0 0 0 0 0 +-10.624 -2.726 -1.999 0 0 0 0 0 0 0 +-10.606 -2.739 -1.996 0 0 0 0 0 0 0 +-10.611 -2.776 -1.999 0 0 0 0 0 0 0 +-10.598 -2.809 -1.998 0 0 0 0 0 0 0 +-10.586 -2.841 -1.998 0 0 0 0 0 0 0 +-10.575 -2.874 -1.997 0 0 0 0 0 0 0 +-10.568 -2.907 -1.998 0 0 0 0 0 0 0 +-10.559 -2.94 -1.998 0 0 0 0 0 0 0 +-10.544 -2.954 -1.996 0 0 0 0 0 0 0 +-10.528 -2.985 -1.994 0 0 0 0 0 0 0 +-10.526 -3.021 -1.996 0 0 0 0 0 0 0 +-10.501 -3.049 -1.993 0 0 0 0 0 0 0 +-10.495 -3.083 -1.993 0 0 0 0 0 0 0 +-10.476 -3.113 -1.991 0 0 0 0 0 0 0 +-10.461 -3.145 -1.99 0 0 0 0 0 0 0 +-10.469 -3.165 -1.993 0 0 0 0 0 0 0 +-10.461 -3.199 -1.993 0 0 0 0 0 0 0 +-10.443 -3.229 -1.992 0 0 0 0 0 0 0 +-10.422 -3.258 -1.99 0 0 0 0 0 0 0 +-10.421 -3.294 -1.991 0 0 0 0 0 0 0 +-10.388 -3.319 -1.987 0 0 0 0 0 0 0 +-10.349 -3.343 -1.981 0 0 0 0 0 0 0 +-10.38 -3.371 -1.988 0 0 0 0 0 0 0 +-10.352 -3.398 -1.985 0 0 0 0 0 0 0 +-10.325 -3.425 -1.982 0 0 0 0 0 0 0 +-10.344 -3.467 -1.988 0 0 0 0 0 0 0 +-10.294 -3.486 -1.98 0 0 0 0 0 0 0 +-10.331 -3.535 -1.99 0 0 0 0 0 0 0 +-10.275 -3.552 -1.98 0 0 0 0 0 0 0 +-10.294 -3.577 -1.985 0 0 0 0 0 0 0 +-10.257 -3.6 -1.98 0 0 0 0 0 0 0 +-10.238 -3.63 -1.979 0 0 0 0 0 0 0 +-10.249 -3.67 -1.983 0 0 0 0 0 0 0 +-10.211 -3.693 -1.978 0 0 0 0 0 0 0 +-10.222 -3.733 -1.982 0 0 0 0 0 0 0 +-10.177 -3.752 -1.975 0 0 0 0 0 0 0 +-10.176 -3.771 -1.977 0 0 0 0 0 0 0 +-10.168 -3.804 -1.977 0 0 0 0 0 0 0 +-10.138 -3.829 -1.974 0 0 0 0 0 0 0 +-10.131 -3.863 -1.975 0 0 0 0 0 0 0 +-10.148 -3.906 -1.981 0 0 0 0 0 0 0 +-10.096 -3.922 -1.972 0 0 0 0 0 0 0 +-10.089 -3.956 -1.974 0 0 0 0 0 0 0 +-10.099 -3.978 -1.977 0 0 0 0 0 0 0 +-10.054 -3.997 -1.97 0 0 0 0 0 0 0 +-10.07 -4.04 -1.976 0 0 0 0 0 0 0 +-10.025 -4.058 -1.969 0 0 0 0 0 0 0 +-10.005 -4.087 -1.968 0 0 0 0 0 0 0 +-10.019 -4.13 -1.974 0 0 0 0 0 0 0 +-9.968 -4.145 -1.966 0 0 0 0 0 0 0 +-9.98 -4.187 -1.971 0 0 0 0 0 0 0 +-9.974 -4.203 -1.971 0 0 0 0 0 0 0 +-9.957 -4.233 -1.97 0 0 0 0 0 0 0 +-9.913 -4.251 -1.964 0 0 0 0 0 0 0 +-9.923 -4.292 -1.969 0 0 0 0 0 0 0 +-9.898 -4.318 -1.966 0 0 0 0 0 0 0 +-9.872 -4.344 -1.964 0 0 0 0 0 0 0 +-9.846 -4.369 -1.961 0 0 0 0 0 0 0 +-9.841 -4.385 -1.961 0 0 0 0 0 0 0 +-9.823 -4.415 -1.961 0 0 0 0 0 0 0 +-9.799 -4.441 -1.958 0 0 0 0 0 0 0 +-9.788 -4.473 -1.959 0 0 0 0 0 0 0 +-9.769 -4.501 -1.958 0 0 0 0 0 0 0 +-9.751 -4.53 -1.957 0 0 0 0 0 0 0 +-9.733 -4.559 -1.956 0 0 0 0 0 0 0 +-9.721 -4.572 -1.955 0 0 0 0 0 0 0 +-9.705 -4.602 -1.955 0 0 0 0 0 0 0 +-9.687 -4.631 -1.954 0 0 0 0 0 0 0 +-9.676 -4.663 -1.955 0 0 0 0 0 0 0 +-9.649 -4.687 -1.952 0 0 0 0 0 0 0 +-9.632 -4.716 -1.952 0 0 0 0 0 0 0 +-9.61 -4.743 -1.95 0 0 0 0 0 0 0 +-9.597 -4.756 -1.949 0 0 0 0 0 0 0 +-9.572 -4.78 -1.947 0 0 0 0 0 0 0 +-9.566 -4.815 -1.949 0 0 0 0 0 0 0 +-9.536 -4.838 -1.946 0 0 0 0 0 0 0 +-9.518 -4.866 -1.945 0 0 0 0 0 0 0 +-9.497 -4.893 -1.944 0 0 0 0 0 0 0 +-9.462 -4.913 -1.94 0 0 0 0 0 0 0 +-9.45 -4.925 -1.939 0 0 0 0 0 0 0 +-9.439 -4.957 -1.94 0 0 0 0 0 0 0 +-9.411 -4.981 -1.937 0 0 0 0 0 0 0 +-9.378 -5.001 -1.933 0 0 0 0 0 0 0 +-9.361 -5.029 -1.933 0 0 0 0 0 0 0 +-9.342 -5.057 -1.932 0 0 0 0 0 0 0 +-9.329 -5.088 -1.933 0 0 0 0 0 0 0 +-9.304 -5.093 -1.929 0 0 0 0 0 0 0 +-9.295 -5.126 -1.931 0 0 0 0 0 0 0 +-9.274 -5.153 -1.929 0 0 0 0 0 0 0 +-9.245 -5.175 -1.927 0 0 0 0 0 0 0 +-9.234 -5.207 -1.928 0 0 0 0 0 0 0 +-9.211 -5.232 -1.926 0 0 0 0 0 0 0 +-9.2 -5.264 -1.928 0 0 0 0 0 0 0 +-9.186 -5.275 -1.926 0 0 0 0 0 0 0 +-9.147 -5.291 -1.922 0 0 0 0 0 0 0 +-9.148 -5.33 -1.925 0 0 0 0 0 0 0 +-9.102 -5.342 -1.919 0 0 0 0 0 0 0 +-9.104 -5.381 -1.923 0 0 0 0 0 0 0 +-9.072 -5.401 -1.92 0 0 0 0 0 0 0 +-9.072 -5.439 -1.923 0 0 0 0 0 0 0 +-9.031 -5.434 -1.916 0 0 0 0 0 0 0 +-9.026 -5.47 -1.919 0 0 0 0 0 0 0 +-9.004 -5.495 -1.918 0 0 0 0 0 0 0 +-9.001 -5.533 -1.921 0 0 0 0 0 0 0 +-8.959 -5.545 -1.915 0 0 0 0 0 0 0 +-8.936 -5.57 -1.914 0 0 0 0 0 0 0 +-8.901 -5.587 -1.91 0 0 0 0 0 0 0 +-8.895 -5.603 -1.911 0 0 0 0 0 0 0 +-8.871 -5.627 -1.909 0 0 0 0 0 0 0 +-8.875 -5.668 -1.914 0 0 0 0 0 0 0 +-8.82 -5.673 -1.906 0 0 0 0 0 0 0 +-8.831 -5.719 -1.912 0 0 0 0 0 0 0 +-8.775 -5.721 -1.904 0 0 0 0 0 0 0 +-8.768 -5.757 -1.906 0 0 0 0 0 0 0 +-8.735 -5.774 -1.903 0 0 0 0 0 0 0 +-8.731 -5.791 -1.904 0 0 0 0 0 0 0 +-8.68 -5.797 -1.896 0 0 0 0 0 0 0 +-8.688 -5.842 -1.903 0 0 0 0 0 0 0 +-8.631 -5.842 -1.893 0 0 0 0 0 0 0 +-8.609 -5.867 -1.893 0 0 0 0 0 0 0 +-8.587 -5.892 -1.892 0 0 0 0 0 0 0 +-8.553 -5.908 -1.888 0 0 0 0 0 0 0 +-8.55 -5.926 -1.89 0 0 0 0 0 0 0 +-8.522 -5.946 -1.887 0 0 0 0 0 0 0 +-8.498 -5.969 -1.886 0 0 0 0 0 0 0 +-8.473 -5.991 -1.885 0 0 0 0 0 0 0 +-8.457 -6.02 -1.885 0 0 0 0 0 0 0 +-8.421 -6.034 -1.881 0 0 0 0 0 0 0 +-8.411 -6.067 -1.883 0 0 0 0 0 0 0 +-8.386 -6.069 -1.88 0 0 0 0 0 0 0 +-8.354 -6.086 -1.877 0 0 0 0 0 0 0 +-8.325 -6.105 -1.874 0 0 0 0 0 0 0 +-8.313 -6.136 -1.876 0 0 0 0 0 0 0 +-8.289 -6.159 -1.875 0 0 0 0 0 0 0 +-8.271 -6.186 -1.875 0 0 0 0 0 0 0 +-8.242 -6.205 -1.873 0 0 0 0 0 0 0 +-8.232 -6.218 -1.873 0 0 0 0 0 0 0 +-8.202 -6.235 -1.87 0 0 0 0 0 0 0 +-8.185 -6.263 -1.871 0 0 0 0 0 0 0 +-8.153 -6.279 -1.868 0 0 0 0 0 0 0 +-8.136 -6.307 -1.869 0 0 0 0 0 0 0 +-8.123 -6.338 -1.87 0 0 0 0 0 0 0 +-8.087 -6.351 -1.866 0 0 0 0 0 0 0 +-8.083 -6.369 -1.868 0 0 0 0 0 0 0 +-8.06 -6.392 -1.867 0 0 0 0 0 0 0 +-8.036 -6.413 -1.866 0 0 0 0 0 0 0 +-8.018 -6.441 -1.867 0 0 0 0 0 0 0 +-7.989 -6.459 -1.864 0 0 0 0 0 0 0 +-7.969 -6.484 -1.864 0 0 0 0 0 0 0 +-7.945 -6.506 -1.864 0 0 0 0 0 0 0 +-7.923 -6.509 -1.861 0 0 0 0 0 0 0 +-7.904 -6.535 -1.861 0 0 0 0 0 0 0 +-7.879 -6.556 -1.86 0 0 0 0 0 0 0 +-7.869 -6.589 -1.863 0 0 0 0 0 0 0 +-7.83 -6.599 -1.858 0 0 0 0 0 0 0 +-7.817 -6.63 -1.86 0 0 0 0 0 0 0 +-7.79 -6.649 -1.858 0 0 0 0 0 0 0 +-7.782 -6.664 -1.859 0 0 0 0 0 0 0 +-7.761 -6.688 -1.859 0 0 0 0 0 0 0 +-7.743 -6.715 -1.86 0 0 0 0 0 0 0 +-7.718 -6.736 -1.859 0 0 0 0 0 0 0 +-7.692 -6.756 -1.858 0 0 0 0 0 0 0 +-7.678 -6.787 -1.86 0 0 0 0 0 0 0 +-7.628 -6.784 -1.852 0 0 0 0 0 0 0 +-7.633 -6.832 -1.859 0 0 0 0 0 0 0 +-7.61 -6.834 -1.856 0 0 0 0 0 0 0 +-7.592 -6.86 -1.857 0 0 0 0 0 0 0 +-7.561 -6.876 -1.854 0 0 0 0 0 0 0 +-7.561 -6.92 -1.86 0 0 0 0 0 0 0 +-7.532 -6.937 -1.858 0 0 0 0 0 0 0 +-7.522 -6.971 -1.861 0 0 0 0 0 0 0 +-7.507 -7.001 -1.863 0 0 0 0 0 0 0 +-7.498 -7.014 -1.863 0 0 0 0 0 0 0 +-7.473 -7.035 -1.863 0 0 0 0 0 0 0 +-7.47 -7.078 -1.868 0 0 0 0 0 0 0 +-7.441 -7.094 -1.866 0 0 0 0 0 0 0 +-7.419 -7.118 -1.866 0 0 0 0 0 0 0 +-7.398 -7.142 -1.866 0 0 0 0 0 0 0 +-7.371 -7.161 -1.865 0 0 0 0 0 0 0 +-7.371 -7.184 -1.868 0 0 0 0 0 0 0 +-7.34 -7.199 -1.866 0 0 0 0 0 0 0 +-7.327 -7.231 -1.869 0 0 0 0 0 0 0 +-7.302 -7.252 -1.868 0 0 0 0 0 0 0 +-7.283 -7.279 -1.869 0 0 0 0 0 0 0 +-7.264 -7.306 -1.87 0 0 0 0 0 0 0 +-7.248 -7.336 -1.872 0 0 0 0 0 0 0 +-7.261 -7.372 -1.879 0 0 0 0 0 0 0 +-7.226 -7.382 -1.876 0 0 0 0 0 0 0 +-7.216 -7.419 -1.879 0 0 0 0 0 0 0 +-7.196 -7.445 -1.88 0 0 0 0 0 0 0 +-7.161 -7.456 -1.877 0 0 0 0 0 0 0 +-7.118 -7.457 -1.871 0 0 0 0 0 0 0 +-7.078 -7.486 -1.87 0 0 0 0 0 0 0 +-7.039 -7.491 -1.866 0 0 0 0 0 0 0 +-7.016 -7.514 -1.866 0 0 0 0 0 0 0 +-7.017 -7.562 -1.873 0 0 0 0 0 0 0 +-6.954 -7.543 -1.862 0 0 0 0 0 0 0 +-6.941 -7.576 -1.865 0 0 0 0 0 0 0 +-6.929 -7.611 -1.868 0 0 0 0 0 0 0 +-6.911 -7.614 -1.866 0 0 0 0 0 0 0 +-6.887 -7.636 -1.866 0 0 0 0 0 0 0 +-6.862 -7.656 -1.866 0 0 0 0 0 0 0 +-6.827 -7.666 -1.863 0 0 0 0 0 0 0 +-6.807 -7.692 -1.864 0 0 0 0 0 0 0 +-6.797 -7.729 -1.868 0 0 0 0 0 0 0 +-6.76 -7.736 -1.864 0 0 0 0 0 0 0 +-6.746 -7.745 -1.864 0 0 0 0 0 0 0 +-6.719 -7.763 -1.863 0 0 0 0 0 0 0 +-6.685 -7.772 -1.86 0 0 0 0 0 0 0 +-6.661 -7.795 -1.861 0 0 0 0 0 0 0 +-6.642 -7.822 -1.862 0 0 0 0 0 0 0 +-6.615 -7.839 -1.861 0 0 0 0 0 0 0 +-6.585 -7.854 -1.86 0 0 0 0 0 0 0 +-6.572 -7.888 -1.863 0 0 0 0 0 0 0 +-6.538 -7.873 -1.857 0 0 0 0 0 0 0 +-6.515 -7.895 -1.857 0 0 0 0 0 0 0 +-6.508 -7.938 -1.863 0 0 0 0 0 0 0 +-6.473 -7.947 -1.86 0 0 0 0 0 0 0 +-6.444 -7.961 -1.858 0 0 0 0 0 0 0 +-6.428 -7.993 -1.861 0 0 0 0 0 0 0 +-6.393 -8.001 -1.858 0 0 0 0 0 0 0 +-6.372 -8 -1.856 0 0 0 0 0 0 0 +-6.356 -8.031 -1.858 0 0 0 0 0 0 0 +-6.321 -8.039 -1.855 0 0 0 0 0 0 0 +-6.309 -8.075 -1.86 0 0 0 0 0 0 0 +-6.282 -8.094 -1.859 0 0 0 0 0 0 0 +-6.246 -8.099 -1.856 0 0 0 0 0 0 0 +-6.22 -8.119 -1.856 0 0 0 0 0 0 0 +-6.219 -8.144 -1.86 0 0 0 0 0 0 0 +-6.176 -8.14 -1.854 0 0 0 0 0 0 0 +-6.167 -8.182 -1.859 0 0 0 0 0 0 0 +-6.134 -8.192 -1.857 0 0 0 0 0 0 0 +-6.107 -8.209 -1.857 0 0 0 0 0 0 0 +-6.085 -8.233 -1.858 0 0 0 0 0 0 0 +-6.06 -8.254 -1.858 0 0 0 0 0 0 0 +-6.05 -8.266 -1.859 0 0 0 0 0 0 0 +-6.021 -8.282 -1.858 0 0 0 0 0 0 0 +-5.998 -8.304 -1.859 0 0 0 0 0 0 0 +-5.973 -8.325 -1.859 0 0 0 0 0 0 0 +-5.951 -8.35 -1.861 0 0 0 0 0 0 0 +-5.92 -8.362 -1.859 0 0 0 0 0 0 0 +-5.898 -8.387 -1.861 0 0 0 0 0 0 0 +-5.88 -8.388 -1.859 0 0 0 0 0 0 0 +-5.856 -8.412 -1.86 0 0 0 0 0 0 0 +-5.812 -8.404 -1.854 0 0 0 0 0 0 0 +-5.796 -8.437 -1.857 0 0 0 0 0 0 0 +-5.796 -8.494 -1.866 0 0 0 0 0 0 0 +-5.738 -8.467 -1.856 0 0 0 0 0 0 0 +-5.7 -8.467 -1.852 0 0 0 0 0 0 0 +-5.682 -8.469 -1.85 0 0 0 0 0 0 0 +-5.641 -8.466 -1.845 0 0 0 0 0 0 0 +-5.609 -8.475 -1.843 0 0 0 0 0 0 0 +-5.585 -8.496 -1.844 0 0 0 0 0 0 0 +-5.549 -8.5 -1.841 0 0 0 0 0 0 0 +-5.519 -8.513 -1.84 0 0 0 0 0 0 0 +-5.486 -8.52 -1.837 0 0 0 0 0 0 0 +-5.471 -8.525 -1.837 0 0 0 0 0 0 0 +-5.437 -8.531 -1.834 0 0 0 0 0 0 0 +-5.405 -8.54 -1.832 0 0 0 0 0 0 0 +-5.371 -8.545 -1.83 0 0 0 0 0 0 0 +-5.337 -8.552 -1.827 0 0 0 0 0 0 0 +-5.299 -8.55 -1.823 0 0 0 0 0 0 0 +-5.275 -8.572 -1.824 0 0 0 0 0 0 0 +-5.259 -8.575 -1.823 0 0 0 0 0 0 0 +-5.227 -8.583 -1.821 0 0 0 0 0 0 0 +-5.2 -8.599 -1.821 0 0 0 0 0 0 0 +-5.169 -8.609 -1.82 0 0 0 0 0 0 0 +-5.143 -8.627 -1.82 0 0 0 0 0 0 0 +-5.117 -8.645 -1.82 0 0 0 0 0 0 0 +-5.082 -8.649 -1.818 0 0 0 0 0 0 0 +-5.067 -8.653 -1.817 0 0 0 0 0 0 0 +-5.043 -8.674 -1.818 0 0 0 0 0 0 0 +-5.008 -8.678 -1.815 0 0 0 0 0 0 0 +-4.98 -8.692 -1.815 0 0 0 0 0 0 0 +-4.957 -8.715 -1.817 0 0 0 0 0 0 0 +-4.926 -8.723 -1.815 0 0 0 0 0 0 0 +-4.895 -8.734 -1.814 0 0 0 0 0 0 0 +-4.881 -8.74 -1.814 0 0 0 0 0 0 0 +-4.856 -8.76 -1.815 0 0 0 0 0 0 0 +-4.824 -8.767 -1.813 0 0 0 0 0 0 0 +-4.797 -8.783 -1.813 0 0 0 0 0 0 0 +-4.773 -8.805 -1.815 0 0 0 0 0 0 0 +-4.742 -8.813 -1.813 0 0 0 0 0 0 0 +-4.713 -8.827 -1.813 0 0 0 0 0 0 0 +-4.699 -8.834 -1.813 0 0 0 0 0 0 0 +-4.667 -8.84 -1.811 0 0 0 0 0 0 0 +-4.641 -8.858 -1.812 0 0 0 0 0 0 0 +-4.612 -8.871 -1.811 0 0 0 0 0 0 0 +-4.581 -8.878 -1.81 0 0 0 0 0 0 0 +-4.556 -8.9 -1.811 0 0 0 0 0 0 0 +-4.532 -8.921 -1.813 0 0 0 0 0 0 0 +-4.514 -8.921 -1.811 0 0 0 0 0 0 0 +-4.492 -8.946 -1.814 0 0 0 0 0 0 0 +-4.463 -8.958 -1.813 0 0 0 0 0 0 0 +-4.437 -8.977 -1.814 0 0 0 0 0 0 0 +-4.414 -9.002 -1.817 0 0 0 0 0 0 0 +-4.391 -9.026 -1.819 0 0 0 0 0 0 0 +-4.371 -9.058 -1.823 0 0 0 0 0 0 0 +-4.363 -9.114 -1.832 0 0 0 0 0 0 0 +-4.349 -9.123 -1.832 0 0 0 0 0 0 0 +-4.328 -9.152 -1.836 0 0 0 0 0 0 0 +-4.301 -9.169 -1.836 0 0 0 0 0 0 0 +-4.285 -9.211 -1.842 0 0 0 0 0 0 0 +-4.252 -9.216 -1.841 0 0 0 0 0 0 0 +-4.189 -9.27 -1.845 0 0 0 0 0 0 0 +-4.143 -9.244 -1.837 0 0 0 0 0 0 0 +-4.106 -9.239 -1.833 0 0 0 0 0 0 0 +-4.082 -9.264 -1.836 0 0 0 0 0 0 0 +-4.044 -9.256 -1.831 0 0 0 0 0 0 0 +-4.014 -9.266 -1.831 0 0 0 0 0 0 0 +-3.984 -9.277 -1.83 0 0 0 0 0 0 0 +-3.964 -9.271 -1.828 0 0 0 0 0 0 0 +-3.932 -9.278 -1.826 0 0 0 0 0 0 0 +-3.909 -9.303 -1.829 0 0 0 0 0 0 0 +-3.877 -9.31 -1.828 0 0 0 0 0 0 0 +-3.849 -9.325 -1.829 0 0 0 0 0 0 0 +-3.821 -9.339 -1.829 0 0 0 0 0 0 0 +-3.785 -9.335 -1.826 0 0 0 0 0 0 0 +-3.772 -9.344 -1.826 0 0 0 0 0 0 0 +-3.741 -9.354 -1.826 0 0 0 0 0 0 0 +-3.711 -9.362 -1.825 0 0 0 0 0 0 0 +-3.68 -9.37 -1.825 0 0 0 0 0 0 0 +-3.651 -9.384 -1.825 0 0 0 0 0 0 0 +-3.613 -9.373 -1.82 0 0 0 0 0 0 0 +-3.587 -9.394 -1.822 0 0 0 0 0 0 0 +-3.576 -9.408 -1.824 0 0 0 0 0 0 0 +-3.545 -9.416 -1.823 0 0 0 0 0 0 0 +-3.51 -9.412 -1.82 0 0 0 0 0 0 0 +-3.481 -9.425 -1.821 0 0 0 0 0 0 0 +-3.447 -9.425 -1.818 0 0 0 0 0 0 0 +-3.421 -9.445 -1.82 0 0 0 0 0 0 0 +-3.391 -9.456 -1.82 0 0 0 0 0 0 0 +-3.37 -9.444 -1.817 0 0 0 0 0 0 0 +-3.347 -9.471 -1.82 0 0 0 0 0 0 0 +-3.318 -9.484 -1.821 0 0 0 0 0 0 0 +-3.283 -9.479 -1.818 0 0 0 0 0 0 0 +-3.253 -9.49 -1.818 0 0 0 0 0 0 0 +-3.228 -9.515 -1.821 0 0 0 0 0 0 0 +-3.192 -9.508 -1.817 0 0 0 0 0 0 0 +-3.178 -9.513 -1.817 0 0 0 0 0 0 0 +-3.151 -9.532 -1.819 0 0 0 0 0 0 0 +-3.116 -9.527 -1.816 0 0 0 0 0 0 0 +-3.087 -9.541 -1.817 0 0 0 0 0 0 0 +-3.057 -9.548 -1.817 0 0 0 0 0 0 0 +-3.026 -9.556 -1.816 0 0 0 0 0 0 0 +-2.996 -9.566 -1.816 0 0 0 0 0 0 0 +-2.984 -9.581 -1.818 0 0 0 0 0 0 0 +-2.958 -9.602 -1.821 0 0 0 0 0 0 0 +-2.925 -9.604 -1.819 0 0 0 0 0 0 0 +-2.897 -9.619 -1.82 0 0 0 0 0 0 0 +-2.871 -9.643 -1.823 0 0 0 0 0 0 0 +-2.865 -9.735 -1.84 0 0 0 0 0 0 0 +-2.841 -9.766 -1.845 0 0 0 0 0 0 0 +-2.804 -9.697 -1.83 0 0 0 0 0 0 0 +-2.754 -9.636 -1.816 0 0 0 0 0 0 0 +-2.727 -9.656 -1.818 0 0 0 0 0 0 0 +-2.681 -9.609 -1.807 0 0 0 0 0 0 0 +-2.646 -9.597 -1.803 0 0 0 0 0 0 0 +-2.611 -9.59 -1.8 0 0 0 0 0 0 0 +-2.579 -9.591 -1.798 0 0 0 0 0 0 0 +-2.563 -9.591 -1.798 0 0 0 0 0 0 0 +-2.528 -9.582 -1.794 0 0 0 0 0 0 0 +-2.499 -9.592 -1.795 0 0 0 0 0 0 0 +-2.469 -9.599 -1.795 0 0 0 0 0 0 0 +-2.435 -9.594 -1.792 0 0 0 0 0 0 0 +-2.403 -9.594 -1.79 0 0 0 0 0 0 0 +-2.372 -9.597 -1.79 0 0 0 0 0 0 0 +-2.352 -9.582 -1.786 0 0 0 0 0 0 0 +-2.324 -9.597 -1.787 0 0 0 0 0 0 0 +-2.291 -9.591 -1.785 0 0 0 0 0 0 0 +-2.261 -9.6 -1.785 0 0 0 0 0 0 0 +-2.23 -9.603 -1.784 0 0 0 0 0 0 0 +-2.2 -9.61 -1.784 0 0 0 0 0 0 0 +-2.17 -9.619 -1.785 0 0 0 0 0 0 0 +-2.152 -9.607 -1.782 0 0 0 0 0 0 0 +-2.119 -9.604 -1.78 0 0 0 0 0 0 0 +-2.088 -9.605 -1.779 0 0 0 0 0 0 0 +-2.059 -9.617 -1.78 0 0 0 0 0 0 0 +-2.027 -9.614 -1.778 0 0 0 0 0 0 0 +-1.996 -9.619 -1.777 0 0 0 0 0 0 0 +-1.964 -9.617 -1.776 0 0 0 0 0 0 0 +-1.935 -9.629 -1.777 0 0 0 0 0 0 0 +-1.917 -9.617 -1.774 0 0 0 0 0 0 0 +-1.888 -9.63 -1.776 0 0 0 0 0 0 0 +-1.858 -9.636 -1.776 0 0 0 0 0 0 0 +-1.826 -9.632 -1.774 0 0 0 0 0 0 0 +-1.796 -9.642 -1.774 0 0 0 0 0 0 0 +-1.766 -9.645 -1.774 0 0 0 0 0 0 0 +-1.735 -9.651 -1.774 0 0 0 0 0 0 0 +-1.721 -9.659 -1.775 0 0 0 0 0 0 0 +-1.69 -9.657 -1.774 0 0 0 0 0 0 0 +-1.66 -9.664 -1.774 0 0 0 0 0 0 0 +-1.629 -9.669 -1.774 0 0 0 0 0 0 0 +-1.599 -9.675 -1.774 0 0 0 0 0 0 0 +-1.569 -9.683 -1.775 0 0 0 0 0 0 0 +-1.552 -9.676 -1.773 0 0 0 0 0 0 0 +-1.524 -9.693 -1.775 0 0 0 0 0 0 0 +-1.494 -9.699 -1.776 0 0 0 0 0 0 0 +-1.464 -9.708 -1.776 0 0 0 0 0 0 0 +-1.433 -9.712 -1.776 0 0 0 0 0 0 0 +-1.401 -9.707 -1.774 0 0 0 0 0 0 0 +-1.372 -9.717 -1.776 0 0 0 0 0 0 0 +-1.341 -9.724 -1.776 0 0 0 0 0 0 0 +-1.326 -9.724 -1.776 0 0 0 0 0 0 0 +-1.296 -9.734 -1.777 0 0 0 0 0 0 0 +-1.267 -9.751 -1.779 0 0 0 0 0 0 0 +-1.235 -9.745 -1.777 0 0 0 0 0 0 0 +-1.205 -9.749 -1.777 0 0 0 0 0 0 0 +-1.174 -9.755 -1.778 0 0 0 0 0 0 0 +-1.144 -9.759 -1.778 0 0 0 0 0 0 0 +-1.13 -9.772 -1.78 0 0 0 0 0 0 0 +-1.099 -9.776 -1.78 0 0 0 0 0 0 0 +-1.068 -9.777 -1.78 0 0 0 0 0 0 0 +-1.037 -9.778 -1.779 0 0 0 0 0 0 0 +-1.006 -9.784 -1.78 0 0 0 0 0 0 0 +-0.976 -9.791 -1.78 0 0 0 0 0 0 0 +-0.945 -9.792 -1.78 0 0 0 0 0 0 0 +-0.93 -9.799 -1.781 0 0 0 0 0 0 0 +-0.9 -9.812 -1.783 0 0 0 0 0 0 0 +-0.871 -9.834 -1.787 0 0 0 0 0 0 0 +-0.839 -9.819 -1.784 0 0 0 0 0 0 0 +-0.808 -9.828 -1.785 0 0 0 0 0 0 0 +-0.778 -9.83 -1.785 0 0 0 0 0 0 0 +-0.747 -9.838 -1.786 0 0 0 0 0 0 0 +-0.733 -9.857 -1.789 0 0 0 0 0 0 0 +-0.701 -9.852 -1.788 0 0 0 0 0 0 0 +-0.671 -9.862 -1.789 0 0 0 0 0 0 0 +-0.64 -9.866 -1.79 0 0 0 0 0 0 0 +-0.609 -9.871 -1.79 0 0 0 0 0 0 0 +-0.579 -9.889 -1.793 0 0 0 0 0 0 0 +-0.549 -9.901 -1.795 0 0 0 0 0 0 0 +-0.533 -9.897 -1.795 0 0 0 0 0 0 0 +-0.502 -9.903 -1.795 0 0 0 0 0 0 0 +-0.472 -9.92 -1.798 0 0 0 0 0 0 0 +-0.44 -9.918 -1.798 0 0 0 0 0 0 0 +-0.409 -9.909 -1.796 0 0 0 0 0 0 0 +-0.379 -9.938 -1.801 0 0 0 0 0 0 0 +-0.347 -9.935 -1.8 0 0 0 0 0 0 0 +-0.331 -9.924 -1.798 0 0 0 0 0 0 0 +-0.3 -9.935 -1.8 0 0 0 0 0 0 0 +-0.269 -9.924 -1.798 0 0 0 0 0 0 0 +-0.238 -9.934 -1.799 0 0 0 0 0 0 0 +-0.207 -9.947 -1.802 0 0 0 0 0 0 0 +-0.175 -9.93 -1.798 0 0 0 0 0 0 0 +-0.144 -9.938 -1.8 0 0 0 0 0 0 0 +-0.129 -9.948 -1.802 0 0 0 0 0 0 0 +-0.097 -9.925 -1.797 0 0 0 0 0 0 0 +-0.066 -9.943 -1.801 0 0 0 0 0 0 0 +-0.035 -9.947 -1.801 0 0 0 0 0 0 0 +-0.004 -9.933 -1.799 0 0 0 0 0 0 0 +0.027 -9.943 -1.801 0 0 0 0 0 0 0 +0.059 -9.957 -1.803 0 0 0 0 0 0 0 +0.074 -9.945 -1.801 0 0 0 0 0 0 0 +0.106 -9.954 -1.803 0 0 0 0 0 0 0 +0.137 -9.954 -1.803 0 0 0 0 0 0 0 +0.168 -9.959 -1.804 0 0 0 0 0 0 0 +0.2 -9.977 -1.807 0 0 0 0 0 0 0 +0.231 -9.978 -1.808 0 0 0 0 0 0 0 +0.262 -9.965 -1.806 0 0 0 0 0 0 0 +0.279 -9.983 -1.809 0 0 0 0 0 0 0 +0.31 -9.982 -1.809 0 0 0 0 0 0 0 +0.342 -9.988 -1.811 0 0 0 0 0 0 0 +0.373 -9.993 -1.812 0 0 0 0 0 0 0 +0.404 -9.984 -1.81 0 0 0 0 0 0 0 +0.436 -9.995 -1.812 0 0 0 0 0 0 0 +0.467 -9.981 -1.81 0 0 0 0 0 0 0 +0.484 -10.004 -1.815 0 0 0 0 0 0 0 +0.515 -10.001 -1.814 0 0 0 0 0 0 0 +0.547 -10.011 -1.817 0 0 0 0 0 0 0 +0.579 -10.017 -1.818 0 0 0 0 0 0 0 +0.611 -10.023 -1.82 0 0 0 0 0 0 0 +0.642 -10.015 -1.818 0 0 0 0 0 0 0 +0.673 -10.005 -1.817 0 0 0 0 0 0 0 +0.69 -10.018 -1.82 0 0 0 0 0 0 0 +0.721 -10.015 -1.82 0 0 0 0 0 0 0 +0.753 -10.017 -1.82 0 0 0 0 0 0 0 +0.785 -10.017 -1.821 0 0 0 0 0 0 0 +0.816 -10.01 -1.82 0 0 0 0 0 0 0 +0.848 -10.015 -1.822 0 0 0 0 0 0 0 +0.881 -10.026 -1.824 0 0 0 0 0 0 0 +0.897 -10.029 -1.825 0 0 0 0 0 0 0 +0.929 -10.03 -1.826 0 0 0 0 0 0 0 +0.963 -10.05 -1.83 0 0 0 0 0 0 0 +0.994 -10.045 -1.83 0 0 0 0 0 0 0 +1.025 -10.038 -1.829 0 0 0 0 0 0 0 +1.057 -10.043 -1.831 0 0 0 0 0 0 0 +1.089 -10.041 -1.831 0 0 0 0 0 0 0 +1.106 -10.046 -1.832 0 0 0 0 0 0 0 +1.139 -10.056 -1.835 0 0 0 0 0 0 0 +1.171 -10.06 -1.836 0 0 0 0 0 0 0 +1.206 -10.083 -1.842 0 0 0 0 0 0 0 +1.239 -10.087 -1.843 0 0 0 0 0 0 0 +1.271 -10.085 -1.844 0 0 0 0 0 0 0 +1.304 -10.097 -1.847 0 0 0 0 0 0 0 +1.32 -10.095 -1.847 0 0 0 0 0 0 0 +1.353 -10.095 -1.847 0 0 0 0 0 0 0 +1.384 -10.09 -1.847 0 0 0 0 0 0 0 +1.418 -10.097 -1.85 0 0 0 0 0 0 0 +1.449 -10.091 -1.849 0 0 0 0 0 0 0 +1.48 -10.081 -1.848 0 0 0 0 0 0 0 +1.513 -10.088 -1.85 0 0 0 0 0 0 0 +1.547 -10.098 -1.853 0 0 0 0 0 0 0 +1.56 -10.073 -1.849 0 0 0 0 0 0 0 +1.591 -10.068 -1.849 0 0 0 0 0 0 0 +1.624 -10.068 -1.85 0 0 0 0 0 0 0 +1.655 -10.063 -1.85 0 0 0 0 0 0 0 +1.69 -10.075 -1.853 0 0 0 0 0 0 0 +1.723 -10.076 -1.855 0 0 0 0 0 0 0 +1.755 -10.074 -1.855 0 0 0 0 0 0 0 +1.769 -10.06 -1.853 0 0 0 0 0 0 0 +1.803 -10.07 -1.856 0 0 0 0 0 0 0 +1.837 -10.074 -1.858 0 0 0 0 0 0 0 +1.868 -10.068 -1.858 0 0 0 0 0 0 0 +1.9 -10.064 -1.858 0 0 0 0 0 0 0 +1.932 -10.06 -1.859 0 0 0 0 0 0 0 +1.948 -10.059 -1.859 0 0 0 0 0 0 0 +1.978 -10.045 -1.858 0 0 0 0 0 0 0 +2.011 -10.042 -1.858 0 0 0 0 0 0 0 +1.281 -6.342 -1.128 0 0 0 0 0 0 0 +1.302 -6.343 -1.129 0 0 0 0 0 0 0 +1.329 -6.374 -1.136 0 0 0 0 0 0 0 +1.418 -6.686 -1.199 0 0 0 0 0 0 0 +1.433 -6.655 -1.194 0 0 0 0 0 0 0 +1.436 -6.622 -1.187 0 0 0 0 0 0 0 +1.436 -6.524 -1.169 0 0 0 0 0 0 0 +1.449 -6.487 -1.162 0 0 0 0 0 0 0 +1.464 -6.457 -1.157 0 0 0 0 0 0 0 +1.485 -6.454 -1.158 0 0 0 0 0 0 0 +1.503 -6.44 -1.156 0 0 0 0 0 0 0 +1.521 -6.428 -1.154 0 0 0 0 0 0 0 +1.523 -6.393 -1.148 0 0 0 0 0 0 0 +1.557 -6.443 -1.159 0 0 0 0 0 0 0 +1.58 -6.452 -1.162 0 0 0 0 0 0 0 +1.6 -6.445 -1.161 0 0 0 0 0 0 0 +1.604 -6.375 -1.148 0 0 0 0 0 0 0 +2.559 -9.978 -1.87 0 0 0 0 0 0 0 +2.588 -9.96 -1.868 0 0 0 0 0 0 0 +2.595 -9.926 -1.862 0 0 0 0 0 0 0 +2.631 -9.935 -1.865 0 0 0 0 0 0 0 +2.664 -9.932 -1.866 0 0 0 0 0 0 0 +2.692 -9.912 -1.864 0 0 0 0 0 0 0 +2.721 -9.896 -1.863 0 0 0 0 0 0 0 +2.749 -9.878 -1.861 0 0 0 0 0 0 0 +2.778 -9.862 -1.859 0 0 0 0 0 0 0 +2.791 -9.85 -1.858 0 0 0 0 0 0 0 +2.822 -9.839 -1.857 0 0 0 0 0 0 0 +2.85 -9.821 -1.855 0 0 0 0 0 0 0 +2.877 -9.801 -1.853 0 0 0 0 0 0 0 +2.907 -9.786 -1.852 0 0 0 0 0 0 0 +2.939 -9.782 -1.853 0 0 0 0 0 0 0 +2.968 -9.767 -1.852 0 0 0 0 0 0 0 +2.978 -9.746 -1.849 0 0 0 0 0 0 0 +3.009 -9.738 -1.849 0 0 0 0 0 0 0 +3.039 -9.727 -1.849 0 0 0 0 0 0 0 +3.067 -9.71 -1.847 0 0 0 0 0 0 0 +3.094 -9.687 -1.844 0 0 0 0 0 0 0 +3.123 -9.675 -1.844 0 0 0 0 0 0 0 +3.149 -9.651 -1.841 0 0 0 0 0 0 0 +3.162 -9.64 -1.84 0 0 0 0 0 0 0 +3.191 -9.626 -1.839 0 0 0 0 0 0 0 +3.216 -9.601 -1.836 0 0 0 0 0 0 0 +3.245 -9.586 -1.835 0 0 0 0 0 0 0 +3.277 -9.583 -1.836 0 0 0 0 0 0 0 +3.296 -9.539 -1.83 0 0 0 0 0 0 0 +3.324 -9.525 -1.829 0 0 0 0 0 0 0 +3.334 -9.505 -1.826 0 0 0 0 0 0 0 +3.363 -9.493 -1.825 0 0 0 0 0 0 0 +3.393 -9.482 -1.825 0 0 0 0 0 0 0 +3.42 -9.462 -1.823 0 0 0 0 0 0 0 +3.446 -9.442 -1.822 0 0 0 0 0 0 0 +3.469 -9.415 -1.818 0 0 0 0 0 0 0 +3.499 -9.404 -1.818 0 0 0 0 0 0 0 +3.505 -9.376 -1.814 0 0 0 0 0 0 0 +3.533 -9.361 -1.813 0 0 0 0 0 0 0 +3.562 -9.348 -1.812 0 0 0 0 0 0 0 +3.587 -9.326 -1.81 0 0 0 0 0 0 0 +3.609 -9.295 -1.806 0 0 0 0 0 0 0 +3.639 -9.285 -1.806 0 0 0 0 0 0 0 +3.666 -9.27 -1.806 0 0 0 0 0 0 0 +3.678 -9.257 -1.804 0 0 0 0 0 0 0 +3.711 -9.255 -1.806 0 0 0 0 0 0 0 +3.734 -9.228 -1.803 0 0 0 0 0 0 0 +3.76 -9.209 -1.801 0 0 0 0 0 0 0 +3.789 -9.197 -1.801 0 0 0 0 0 0 0 +3.808 -9.164 -1.797 0 0 0 0 0 0 0 +3.836 -9.15 -1.796 0 0 0 0 0 0 0 +3.848 -9.137 -1.795 0 0 0 0 0 0 0 +3.869 -9.108 -1.792 0 0 0 0 0 0 0 +3.899 -9.098 -1.792 0 0 0 0 0 0 0 +3.92 -9.068 -1.788 0 0 0 0 0 0 0 +3.938 -9.032 -1.783 0 0 0 0 0 0 0 +3.969 -9.025 -1.784 0 0 0 0 0 0 0 +3.992 -9.001 -1.782 0 0 0 0 0 0 0 +4.005 -8.993 -1.782 0 0 0 0 0 0 0 +4.031 -8.975 -1.78 0 0 0 0 0 0 0 +4.049 -8.939 -1.776 0 0 0 0 0 0 0 +4.072 -8.916 -1.773 0 0 0 0 0 0 0 +4.093 -8.889 -1.77 0 0 0 0 0 0 0 +4.119 -8.871 -1.769 0 0 0 0 0 0 0 +4.141 -8.845 -1.766 0 0 0 0 0 0 0 +4.149 -8.826 -1.764 0 0 0 0 0 0 0 +4.174 -8.808 -1.763 0 0 0 0 0 0 0 +4.195 -8.781 -1.76 0 0 0 0 0 0 0 +4.223 -8.769 -1.76 0 0 0 0 0 0 0 +4.239 -8.731 -1.755 0 0 0 0 0 0 0 +4.266 -8.718 -1.755 0 0 0 0 0 0 0 +4.28 -8.678 -1.749 0 0 0 0 0 0 0 +4.293 -8.67 -1.749 0 0 0 0 0 0 0 +4.313 -8.642 -1.746 0 0 0 0 0 0 0 +4.338 -8.623 -1.744 0 0 0 0 0 0 0 +4.358 -8.597 -1.742 0 0 0 0 0 0 0 +4.385 -8.583 -1.742 0 0 0 0 0 0 0 +4.41 -8.564 -1.741 0 0 0 0 0 0 0 +4.436 -8.549 -1.74 0 0 0 0 0 0 0 +4.442 -8.528 -1.737 0 0 0 0 0 0 0 +4.458 -8.495 -1.733 0 0 0 0 0 0 0 +4.491 -8.491 -1.735 0 0 0 0 0 0 0 +4.505 -8.454 -1.73 0 0 0 0 0 0 0 +4.532 -8.44 -1.73 0 0 0 0 0 0 0 +4.547 -8.405 -1.726 0 0 0 0 0 0 0 +4.579 -8.401 -1.728 0 0 0 0 0 0 0 +4.585 -8.38 -1.725 0 0 0 0 0 0 0 +4.617 -8.376 -1.727 0 0 0 0 0 0 0 +4.632 -8.343 -1.723 0 0 0 0 0 0 0 +4.663 -8.337 -1.725 0 0 0 0 0 0 0 +4.688 -8.319 -1.724 0 0 0 0 0 0 0 +4.708 -8.294 -1.722 0 0 0 0 0 0 0 +4.741 -8.291 -1.725 0 0 0 0 0 0 0 +4.747 -8.271 -1.722 0 0 0 0 0 0 0 +4.772 -8.255 -1.722 0 0 0 0 0 0 0 +4.789 -8.224 -1.718 0 0 0 0 0 0 0 +4.816 -8.211 -1.719 0 0 0 0 0 0 0 +4.836 -8.186 -1.716 0 0 0 0 0 0 0 +4.858 -8.165 -1.715 0 0 0 0 0 0 0 +4.882 -8.147 -1.714 0 0 0 0 0 0 0 +4.893 -8.136 -1.714 0 0 0 0 0 0 0 +4.921 -8.125 -1.715 0 0 0 0 0 0 0 +4.939 -8.098 -1.712 0 0 0 0 0 0 0 +4.956 -8.068 -1.709 0 0 0 0 0 0 0 +4.983 -8.055 -1.709 0 0 0 0 0 0 0 +5.006 -8.036 -1.709 0 0 0 0 0 0 0 +5.031 -8.021 -1.709 0 0 0 0 0 0 0 +5.042 -8.009 -1.708 0 0 0 0 0 0 0 +5.061 -7.983 -1.706 0 0 0 0 0 0 0 +5.084 -7.964 -1.705 0 0 0 0 0 0 0 +5.114 -7.956 -1.707 0 0 0 0 0 0 0 +5.132 -7.93 -1.704 0 0 0 0 0 0 0 +5.156 -7.913 -1.704 0 0 0 0 0 0 0 +5.174 -7.885 -1.701 0 0 0 0 0 0 0 +5.188 -7.88 -1.702 0 0 0 0 0 0 0 +5.212 -7.862 -1.702 0 0 0 0 0 0 0 +5.236 -7.846 -1.702 0 0 0 0 0 0 0 +5.258 -7.824 -1.701 0 0 0 0 0 0 0 +5.277 -7.8 -1.699 0 0 0 0 0 0 0 +5.295 -7.773 -1.696 0 0 0 0 0 0 0 +5.317 -7.753 -1.696 0 0 0 0 0 0 0 +5.329 -7.745 -1.696 0 0 0 0 0 0 0 +5.347 -7.719 -1.693 0 0 0 0 0 0 0 +5.382 -7.718 -1.697 0 0 0 0 0 0 0 +5.397 -7.688 -1.694 0 0 0 0 0 0 0 +5.425 -7.676 -1.695 0 0 0 0 0 0 0 +5.44 -7.646 -1.692 0 0 0 0 0 0 0 +5.464 -7.629 -1.692 0 0 0 0 0 0 0 +5.471 -7.614 -1.691 0 0 0 0 0 0 0 +5.494 -7.595 -1.69 0 0 0 0 0 0 0 +5.512 -7.57 -1.688 0 0 0 0 0 0 0 +5.537 -7.554 -1.689 0 0 0 0 0 0 0 +5.564 -7.541 -1.69 0 0 0 0 0 0 0 +5.582 -7.516 -1.688 0 0 0 0 0 0 0 +5.602 -7.494 -1.687 0 0 0 0 0 0 0 +5.618 -7.491 -1.688 0 0 0 0 0 0 0 +5.631 -7.46 -1.685 0 0 0 0 0 0 0 +5.657 -7.445 -1.686 0 0 0 0 0 0 0 +5.685 -7.433 -1.687 0 0 0 0 0 0 0 +5.704 -7.409 -1.686 0 0 0 0 0 0 0 +5.733 -7.399 -1.688 0 0 0 0 0 0 0 +5.754 -7.378 -1.687 0 0 0 0 0 0 0 +5.753 -7.353 -1.683 0 0 0 0 0 0 0 +5.772 -7.331 -1.682 0 0 0 0 0 0 0 +5.806 -7.326 -1.685 0 0 0 0 0 0 0 +5.815 -7.29 -1.681 0 0 0 0 0 0 0 +5.843 -7.277 -1.682 0 0 0 0 0 0 0 +5.868 -7.262 -1.683 0 0 0 0 0 0 0 +5.879 -7.23 -1.68 0 0 0 0 0 0 0 +5.898 -7.23 -1.682 0 0 0 0 0 0 0 +5.917 -7.207 -1.681 0 0 0 0 0 0 0 +5.927 -7.173 -1.677 0 0 0 0 0 0 0 +5.957 -7.163 -1.679 0 0 0 0 0 0 0 +5.979 -7.143 -1.679 0 0 0 0 0 0 0 +5.992 -7.114 -1.676 0 0 0 0 0 0 0 +6.03 -7.113 -1.681 0 0 0 0 0 0 0 +6.031 -7.091 -1.678 0 0 0 0 0 0 0 +6.045 -7.064 -1.676 0 0 0 0 0 0 0 +6.074 -7.052 -1.677 0 0 0 0 0 0 0 +6.095 -7.031 -1.677 0 0 0 0 0 0 0 +6.101 -6.994 -1.673 0 0 0 0 0 0 0 +6.13 -6.983 -1.674 0 0 0 0 0 0 0 +6.154 -6.966 -1.675 0 0 0 0 0 0 0 +6.171 -6.941 -1.674 0 0 0 0 0 0 0 +6.179 -6.928 -1.673 0 0 0 0 0 0 0 +6.203 -6.912 -1.674 0 0 0 0 0 0 0 +6.224 -6.891 -1.673 0 0 0 0 0 0 0 +6.237 -6.863 -1.671 0 0 0 0 0 0 0 +6.263 -6.847 -1.672 0 0 0 0 0 0 0 +6.274 -6.816 -1.669 0 0 0 0 0 0 0 +6.294 -6.795 -1.669 0 0 0 0 0 0 0 +6.31 -6.791 -1.67 0 0 0 0 0 0 0 +6.327 -6.767 -1.669 0 0 0 0 0 0 0 +6.35 -6.748 -1.669 0 0 0 0 0 0 0 +6.361 -6.718 -1.667 0 0 0 0 0 0 0 +6.399 -6.715 -1.671 0 0 0 0 0 0 0 +6.418 -6.694 -1.671 0 0 0 0 0 0 0 +6.426 -6.681 -1.67 0 0 0 0 0 0 0 +6.443 -6.656 -1.669 0 0 0 0 0 0 0 +6.465 -6.637 -1.669 0 0 0 0 0 0 0 +6.482 -6.613 -1.668 0 0 0 0 0 0 0 +6.505 -6.595 -1.669 0 0 0 0 0 0 0 +6.525 -6.573 -1.669 0 0 0 0 0 0 0 +6.547 -6.554 -1.669 0 0 0 0 0 0 0 +6.556 -6.543 -1.669 0 0 0 0 0 0 0 +6.582 -6.527 -1.67 0 0 0 0 0 0 0 +6.601 -6.505 -1.67 0 0 0 0 0 0 0 +6.62 -6.483 -1.669 0 0 0 0 0 0 0 +6.644 -6.467 -1.671 0 0 0 0 0 0 0 +6.663 -6.444 -1.67 0 0 0 0 0 0 0 +6.678 -6.418 -1.669 0 0 0 0 0 0 0 +6.682 -6.402 -1.667 0 0 0 0 0 0 0 +6.701 -6.38 -1.667 0 0 0 0 0 0 0 +6.719 -6.357 -1.666 0 0 0 0 0 0 0 +6.735 -6.332 -1.665 0 0 0 0 0 0 0 +6.756 -6.312 -1.666 0 0 0 0 0 0 0 +6.782 -6.296 -1.667 0 0 0 0 0 0 0 +6.803 -6.276 -1.668 0 0 0 0 0 0 0 +6.816 -6.248 -1.666 0 0 0 0 0 0 0 +6.827 -6.239 -1.666 0 0 0 0 0 0 0 +6.849 -6.22 -1.667 0 0 0 0 0 0 0 +6.859 -6.189 -1.664 0 0 0 0 0 0 0 +6.882 -6.172 -1.665 0 0 0 0 0 0 0 +6.902 -6.15 -1.665 0 0 0 0 0 0 0 +6.908 -6.117 -1.662 0 0 0 0 0 0 0 +6.942 -6.108 -1.666 0 0 0 0 0 0 0 +6.966 -6.11 -1.669 0 0 0 0 0 0 0 +6.973 -6.077 -1.666 0 0 0 0 0 0 0 +6.986 -6.05 -1.665 0 0 0 0 0 0 0 +7.014 -6.036 -1.667 0 0 0 0 0 0 0 +7.027 -6.009 -1.666 0 0 0 0 0 0 0 +7.049 -5.989 -1.666 0 0 0 0 0 0 0 +7.073 -5.971 -1.668 0 0 0 0 0 0 0 +7.082 -5.96 -1.668 0 0 0 0 0 0 0 +7.095 -5.933 -1.666 0 0 0 0 0 0 0 +7.116 -5.913 -1.667 0 0 0 0 0 0 0 +7.13 -5.887 -1.666 0 0 0 0 0 0 0 +7.149 -5.864 -1.666 0 0 0 0 0 0 0 +7.173 -5.847 -1.667 0 0 0 0 0 0 0 +7.185 -5.838 -1.668 0 0 0 0 0 0 0 +7.19 -5.804 -1.665 0 0 0 0 0 0 0 +7.22 -5.791 -1.668 0 0 0 0 0 0 0 +7.232 -5.764 -1.666 0 0 0 0 0 0 0 +7.244 -5.736 -1.665 0 0 0 0 0 0 0 +7.275 -5.723 -1.668 0 0 0 0 0 0 0 +7.285 -5.694 -1.666 0 0 0 0 0 0 0 +7.304 -5.672 -1.666 0 0 0 0 0 0 0 +7.316 -5.663 -1.667 0 0 0 0 0 0 0 +7.328 -5.636 -1.665 0 0 0 0 0 0 0 +7.336 -5.605 -1.663 0 0 0 0 0 0 0 +7.363 -5.589 -1.665 0 0 0 0 0 0 0 +7.374 -5.562 -1.664 0 0 0 0 0 0 0 +7.392 -5.538 -1.664 0 0 0 0 0 0 0 +7.407 -5.514 -1.663 0 0 0 0 0 0 0 +7.432 -5.514 -1.667 0 0 0 0 0 0 0 +7.451 -5.492 -1.668 0 0 0 0 0 0 0 +7.466 -5.467 -1.667 0 0 0 0 0 0 0 +7.476 -5.438 -1.665 0 0 0 0 0 0 0 +7.477 -5.403 -1.661 0 0 0 0 0 0 0 +7.502 -5.385 -1.663 0 0 0 0 0 0 0 +7.525 -5.366 -1.665 0 0 0 0 0 0 0 +7.525 -5.349 -1.663 0 0 0 0 0 0 0 +7.534 -5.319 -1.661 0 0 0 0 0 0 0 +7.562 -5.303 -1.664 0 0 0 0 0 0 0 +7.566 -5.271 -1.661 0 0 0 0 0 0 0 +7.603 -5.261 -1.666 0 0 0 0 0 0 0 +7.62 -5.237 -1.666 0 0 0 0 0 0 0 +7.631 -5.21 -1.665 0 0 0 0 0 0 0 +7.646 -5.203 -1.666 0 0 0 0 0 0 0 +7.656 -5.174 -1.665 0 0 0 0 0 0 0 +7.68 -5.156 -1.666 0 0 0 0 0 0 0 +7.683 -5.123 -1.663 0 0 0 0 0 0 0 +7.693 -5.094 -1.662 0 0 0 0 0 0 0 +7.712 -5.072 -1.663 0 0 0 0 0 0 0 +7.748 -5.078 -1.669 0 0 0 0 0 0 0 +7.765 -5.055 -1.669 0 0 0 0 0 0 0 +7.761 -5.018 -1.665 0 0 0 0 0 0 0 +7.802 -5.009 -1.671 0 0 0 0 0 0 0 +7.809 -4.98 -1.669 0 0 0 0 0 0 0 +7.81 -4.946 -1.665 0 0 0 0 0 0 0 +7.846 -4.933 -1.67 0 0 0 0 0 0 0 +7.846 -4.899 -1.666 0 0 0 0 0 0 0 +7.862 -4.892 -1.668 0 0 0 0 0 0 0 +7.884 -4.872 -1.67 0 0 0 0 0 0 0 +7.889 -4.841 -1.668 0 0 0 0 0 0 0 +7.908 -4.818 -1.668 0 0 0 0 0 0 0 +7.931 -4.798 -1.67 0 0 0 0 0 0 0 +7.931 -4.764 -1.667 0 0 0 0 0 0 0 +7.941 -4.736 -1.666 0 0 0 0 0 0 0 +7.954 -4.727 -1.667 0 0 0 0 0 0 0 +7.977 -4.707 -1.669 0 0 0 0 0 0 0 +7.986 -4.679 -1.668 0 0 0 0 0 0 0 +8.016 -4.662 -1.671 0 0 0 0 0 0 0 +8 -4.62 -1.664 0 0 0 0 0 0 0 +8.013 -4.593 -1.664 0 0 0 0 0 0 0 +8.057 -4.585 -1.67 0 0 0 0 0 0 0 +8.06 -4.57 -1.669 0 0 0 0 0 0 0 +8.076 -4.546 -1.67 0 0 0 0 0 0 0 +8.089 -4.519 -1.669 0 0 0 0 0 0 0 +8.106 -4.496 -1.67 0 0 0 0 0 0 0 +8.121 -4.47 -1.67 0 0 0 0 0 0 0 +8.145 -4.45 -1.673 0 0 0 0 0 0 0 +8.15 -4.42 -1.671 0 0 0 0 0 0 0 +8.154 -4.406 -1.67 0 0 0 0 0 0 0 +8.178 -4.385 -1.672 0 0 0 0 0 0 0 +8.192 -4.36 -1.672 0 0 0 0 0 0 0 +8.202 -4.332 -1.671 0 0 0 0 0 0 0 +8.208 -4.303 -1.67 0 0 0 0 0 0 0 +8.22 -4.276 -1.669 0 0 0 0 0 0 0 +8.239 -4.253 -1.671 0 0 0 0 0 0 0 +8.252 -4.243 -1.672 0 0 0 0 0 0 0 +8.264 -4.217 -1.672 0 0 0 0 0 0 0 +8.274 -4.189 -1.671 0 0 0 0 0 0 0 +8.28 -4.159 -1.669 0 0 0 0 0 0 0 +8.303 -4.139 -1.672 0 0 0 0 0 0 0 +8.3 -4.105 -1.668 0 0 0 0 0 0 0 +8.326 -4.085 -1.671 0 0 0 0 0 0 0 +8.321 -4.066 -1.669 0 0 0 0 0 0 0 +8.345 -4.045 -1.671 0 0 0 0 0 0 0 +8.354 -4.017 -1.67 0 0 0 0 0 0 0 +8.37 -3.993 -1.671 0 0 0 0 0 0 0 +8.384 -3.967 -1.671 0 0 0 0 0 0 0 +8.399 -3.942 -1.672 0 0 0 0 0 0 0 +8.406 -3.913 -1.671 0 0 0 0 0 0 0 +8.406 -3.897 -1.669 0 0 0 0 0 0 0 +8.435 -3.878 -1.673 0 0 0 0 0 0 0 +8.449 -3.852 -1.673 0 0 0 0 0 0 0 +8.461 -3.826 -1.673 0 0 0 0 0 0 0 +8.464 -3.795 -1.671 0 0 0 0 0 0 0 +8.467 -3.765 -1.669 0 0 0 0 0 0 0 +8.491 -3.744 -1.672 0 0 0 0 0 0 0 +8.5 -3.732 -1.673 0 0 0 0 0 0 0 +8.494 -3.697 -1.669 0 0 0 0 0 0 0 +8.504 -3.67 -1.669 0 0 0 0 0 0 0 +8.524 -3.647 -1.671 0 0 0 0 0 0 0 +8.543 -3.623 -1.672 0 0 0 0 0 0 0 +8.549 -3.594 -1.671 0 0 0 0 0 0 0 +8.567 -3.57 -1.673 0 0 0 0 0 0 0 +8.555 -3.549 -1.669 0 0 0 0 0 0 0 +8.56 -3.52 -1.668 0 0 0 0 0 0 0 +8.586 -3.499 -1.671 0 0 0 0 0 0 0 +8.602 -3.474 -1.672 0 0 0 0 0 0 0 +8.619 -3.449 -1.673 0 0 0 0 0 0 0 +8.622 -3.419 -1.671 0 0 0 0 0 0 0 +8.651 -3.4 -1.675 0 0 0 0 0 0 0 +8.651 -3.384 -1.674 0 0 0 0 0 0 0 +8.643 -3.35 -1.67 0 0 0 0 0 0 0 +8.652 -3.322 -1.67 0 0 0 0 0 0 0 +8.684 -3.303 -1.674 0 0 0 0 0 0 0 +8.704 -3.279 -1.676 0 0 0 0 0 0 0 +8.714 -3.252 -1.676 0 0 0 0 0 0 0 +8.726 -3.225 -1.677 0 0 0 0 0 0 0 +8.726 -3.209 -1.676 0 0 0 0 0 0 0 +8.762 -3.191 -1.681 0 0 0 0 0 0 0 +8.757 -3.158 -1.678 0 0 0 0 0 0 0 +8.778 -3.135 -1.68 0 0 0 0 0 0 0 +8.773 -3.102 -1.677 0 0 0 0 0 0 0 +8.775 -3.072 -1.676 0 0 0 0 0 0 0 +8.796 -3.048 -1.678 0 0 0 0 0 0 0 +8.797 -3.033 -1.677 0 0 0 0 0 0 0 +8.812 -3.007 -1.678 0 0 0 0 0 0 0 +8.836 -2.984 -1.681 0 0 0 0 0 0 0 +8.849 -2.958 -1.682 0 0 0 0 0 0 0 +8.853 -2.928 -1.681 0 0 0 0 0 0 0 +8.862 -2.9 -1.681 0 0 0 0 0 0 0 +8.881 -2.875 -1.683 0 0 0 0 0 0 0 +8.893 -2.864 -1.684 0 0 0 0 0 0 0 +8.885 -2.831 -1.681 0 0 0 0 0 0 0 +8.89 -2.802 -1.68 0 0 0 0 0 0 0 +8.899 -2.774 -1.68 0 0 0 0 0 0 0 +8.913 -2.747 -1.681 0 0 0 0 0 0 0 +8.929 -2.722 -1.683 0 0 0 0 0 0 0 +8.939 -2.694 -1.683 0 0 0 0 0 0 0 +8.961 -2.685 -1.687 0 0 0 0 0 0 0 +8.971 -2.657 -1.687 0 0 0 0 0 0 0 +8.973 -2.628 -1.686 0 0 0 0 0 0 0 +8.984 -2.6 -1.686 0 0 0 0 0 0 0 +8.988 -2.571 -1.685 0 0 0 0 0 0 0 +9.017 -2.548 -1.69 0 0 0 0 0 0 0 +9.019 -2.518 -1.688 0 0 0 0 0 0 0 +9.023 -2.504 -1.688 0 0 0 0 0 0 0 +9.029 -2.475 -1.688 0 0 0 0 0 0 0 +9.027 -2.444 -1.686 0 0 0 0 0 0 0 +9.05 -2.42 -1.689 0 0 0 0 0 0 0 +9.048 -2.389 -1.687 0 0 0 0 0 0 0 +9.074 -2.366 -1.691 0 0 0 0 0 0 0 +9.082 -2.337 -1.691 0 0 0 0 0 0 0 +6.896 -1.77 -1.254 0 0 0 0 0 0 0 +6.923 -1.753 -1.258 0 0 0 0 0 0 0 +9.108 -2.268 -1.693 0 0 0 0 0 0 0 +9.12 -2.24 -1.694 0 0 0 0 0 0 0 +9.124 -2.211 -1.693 0 0 0 0 0 0 0 +9.129 -2.182 -1.693 0 0 0 0 0 0 0 +7.172 -1.684 -1.302 0 0 0 0 0 0 0 +7.231 -1.674 -1.313 0 0 0 0 0 0 0 +9.137 -2.078 -1.69 0 0 0 0 0 0 0 +7.634 -1.715 -1.39 0 0 0 0 0 0 0 +7.597 -1.682 -1.382 0 0 0 0 0 0 0 +7.545 -1.646 -1.371 0 0 0 0 0 0 0 +7.608 -1.634 -1.382 0 0 0 0 0 0 0 +7.597 -1.619 -1.379 0 0 0 0 0 0 0 +7.471 -1.569 -1.354 0 0 0 0 0 0 0 +7.449 -1.54 -1.348 0 0 0 0 0 0 0 +7.352 -1.496 -1.328 0 0 0 0 0 0 0 +7.295 -1.461 -1.316 0 0 0 0 0 0 0 +7.278 -1.434 -1.312 0 0 0 0 0 0 0 +7.317 -1.417 -1.319 0 0 0 0 0 0 0 +7.331 -1.408 -1.321 0 0 0 0 0 0 0 +7.384 -1.394 -1.33 0 0 0 0 0 0 0 +7.433 -1.379 -1.339 0 0 0 0 0 0 0 +7.804 -1.421 -1.411 0 0 0 0 0 0 0 +9.317 -1.631 -1.707 0 0 0 0 0 0 0 +9.316 -1.601 -1.706 0 0 0 0 0 0 0 +9.313 -1.57 -1.704 0 0 0 0 0 0 0 +9.321 -1.556 -1.705 0 0 0 0 0 0 0 +9.334 -1.528 -1.707 0 0 0 0 0 0 0 +9.341 -1.499 -1.707 0 0 0 0 0 0 0 +9.345 -1.47 -1.707 0 0 0 0 0 0 0 +9.253 -1.426 -1.688 0 0 0 0 0 0 0 +9.366 -1.413 -1.709 0 0 0 0 0 0 0 +9.372 -1.384 -1.71 0 0 0 0 0 0 0 +9.374 -1.369 -1.71 0 0 0 0 0 0 0 +9.392 -1.342 -1.712 0 0 0 0 0 0 0 +9.309 -1.3 -1.695 0 0 0 0 0 0 0 +8.392 -1.148 -1.516 0 0 0 0 0 0 0 +9.44 -1.258 -1.719 0 0 0 0 0 0 0 +9.471 -1.231 -1.725 0 0 0 0 0 0 0 +9.479 -1.217 -1.726 0 0 0 0 0 0 0 +9.521 -1.192 -1.733 0 0 0 0 0 0 0 +9.517 -1.161 -1.732 0 0 0 0 0 0 0 +9.573 -1.138 -1.742 0 0 0 0 0 0 0 +9.589 -1.109 -1.744 0 0 0 0 0 0 0 +9.577 -1.077 -1.741 0 0 0 0 0 0 0 +9.545 -1.043 -1.734 0 0 0 0 0 0 0 +9.562 -1.015 -1.737 0 0 0 0 0 0 0 +9.553 -0.999 -1.735 0 0 0 0 0 0 0 +9.558 -0.969 -1.736 0 0 0 0 0 0 0 +9.573 -0.94 -1.738 0 0 0 0 0 0 0 +9.566 -0.909 -1.736 0 0 0 0 0 0 0 +9.575 -0.879 -1.737 0 0 0 0 0 0 0 +9.58 -0.849 -1.738 0 0 0 0 0 0 0 +9.574 -0.819 -1.736 0 0 0 0 0 0 0 +9.58 -0.804 -1.737 0 0 0 0 0 0 0 +9.588 -0.774 -1.738 0 0 0 0 0 0 0 +9.585 -0.744 -1.737 0 0 0 0 0 0 0 +9.579 -0.713 -1.735 0 0 0 0 0 0 0 +9.593 -0.684 -1.738 0 0 0 0 0 0 0 +9.581 -0.653 -1.735 0 0 0 0 0 0 0 +9.595 -0.623 -1.737 0 0 0 0 0 0 0 +9.582 -0.607 -1.734 0 0 0 0 0 0 0 +9.584 -0.577 -1.734 0 0 0 0 0 0 0 +9.58 -0.547 -1.733 0 0 0 0 0 0 0 +9.578 -0.517 -1.733 0 0 0 0 0 0 0 +9.585 -0.487 -1.734 0 0 0 0 0 0 0 +9.581 -0.456 -1.733 0 0 0 0 0 0 0 +9.592 -0.427 -1.734 0 0 0 0 0 0 0 +9.571 -0.411 -1.73 0 0 0 0 0 0 0 +9.561 -0.38 -1.728 0 0 0 0 0 0 0 +9.576 -0.351 -1.731 0 0 0 0 0 0 0 +9.565 -0.32 -1.728 0 0 0 0 0 0 0 +9.579 -0.291 -1.731 0 0 0 0 0 0 0 +9.576 -0.26 -1.73 0 0 0 0 0 0 0 +9.579 -0.23 -1.731 0 0 0 0 0 0 0 +9.568 -0.215 -1.728 0 0 0 0 0 0 0 +9.576 -0.185 -1.73 0 0 0 0 0 0 0 +9.567 -0.155 -1.728 0 0 0 0 0 0 0 +9.569 -0.125 -1.728 0 0 0 0 0 0 0 +9.564 -0.095 -1.727 0 0 0 0 0 0 0 +9.556 -0.065 -1.726 0 0 0 0 0 0 0 +9.552 -0.035 -1.725 0 0 0 0 0 0 0 +9.554 -0.02 -1.725 0 0 0 0 0 0 0 +8.952 0.003 -1.714 0 0 0 0 0 0 0 +8.952 0.031 -1.714 0 0 0 0 0 0 0 +8.948 0.059 -1.713 0 0 0 0 0 0 0 +8.944 0.073 -1.712 0 0 0 0 0 0 0 +8.942 0.101 -1.712 0 0 0 0 0 0 0 +8.942 0.129 -1.712 0 0 0 0 0 0 0 +8.943 0.157 -1.712 0 0 0 0 0 0 0 +8.952 0.185 -1.714 0 0 0 0 0 0 0 +8.921 0.213 -1.708 0 0 0 0 0 0 0 +8.939 0.241 -1.712 0 0 0 0 0 0 0 +8.931 0.255 -1.71 0 0 0 0 0 0 0 +8.921 0.283 -1.708 0 0 0 0 0 0 0 +8.912 0.311 -1.706 0 0 0 0 0 0 0 +8.909 0.339 -1.706 0 0 0 0 0 0 0 +8.908 0.367 -1.706 0 0 0 0 0 0 0 +8.895 0.394 -1.704 0 0 0 0 0 0 0 +8.893 0.422 -1.704 0 0 0 0 0 0 0 +8.895 0.436 -1.704 0 0 0 0 0 0 0 +8.901 0.465 -1.706 0 0 0 0 0 0 0 +8.884 0.492 -1.702 0 0 0 0 0 0 0 +8.898 0.521 -1.706 0 0 0 0 0 0 0 +8.892 0.548 -1.705 0 0 0 0 0 0 0 +8.887 0.576 -1.704 0 0 0 0 0 0 0 +8.899 0.605 -1.707 0 0 0 0 0 0 0 +8.892 0.618 -1.706 0 0 0 0 0 0 0 +8.876 0.645 -1.703 0 0 0 0 0 0 0 +8.888 0.674 -1.706 0 0 0 0 0 0 0 +8.868 0.701 -1.702 0 0 0 0 0 0 0 +8.87 0.729 -1.703 0 0 0 0 0 0 0 +8.863 0.756 -1.702 0 0 0 0 0 0 0 +8.859 0.784 -1.702 0 0 0 0 0 0 0 +8.891 0.801 -1.708 0 0 0 0 0 0 0 +8.863 0.827 -1.703 0 0 0 0 0 0 0 +8.847 0.853 -1.7 0 0 0 0 0 0 0 +8.846 0.881 -1.701 0 0 0 0 0 0 0 +8.831 0.908 -1.698 0 0 0 0 0 0 0 +8.831 0.936 -1.699 0 0 0 0 0 0 0 +8.829 0.964 -1.699 0 0 0 0 0 0 0 +8.822 0.977 -1.698 0 0 0 0 0 0 0 +8.803 1.003 -1.695 0 0 0 0 0 0 0 +8.8 1.03 -1.695 0 0 0 0 0 0 0 +8.797 1.058 -1.695 0 0 0 0 0 0 0 +8.796 1.086 -1.695 0 0 0 0 0 0 0 +8.784 1.113 -1.693 0 0 0 0 0 0 0 +8.796 1.142 -1.697 0 0 0 0 0 0 0 +8.761 1.152 -1.69 0 0 0 0 0 0 0 +8.769 1.181 -1.692 0 0 0 0 0 0 0 +8.762 1.208 -1.691 0 0 0 0 0 0 0 +8.741 1.233 -1.688 0 0 0 0 0 0 0 +8.752 1.263 -1.691 0 0 0 0 0 0 0 +8.742 1.289 -1.69 0 0 0 0 0 0 0 +8.727 1.315 -1.687 0 0 0 0 0 0 0 +8.738 1.331 -1.69 0 0 0 0 0 0 0 +8.722 1.356 -1.688 0 0 0 0 0 0 0 +8.712 1.383 -1.687 0 0 0 0 0 0 0 +8.723 1.413 -1.69 0 0 0 0 0 0 0 +8.703 1.438 -1.687 0 0 0 0 0 0 0 +8.695 1.464 -1.686 0 0 0 0 0 0 0 +8.694 1.492 -1.687 0 0 0 0 0 0 0 +8.686 1.505 -1.685 0 0 0 0 0 0 0 +8.679 1.532 -1.685 0 0 0 0 0 0 0 +8.694 1.563 -1.689 0 0 0 0 0 0 0 +8.666 1.586 -1.684 0 0 0 0 0 0 0 +8.68 1.616 -1.688 0 0 0 0 0 0 0 +8.673 1.643 -1.688 0 0 0 0 0 0 0 +8.669 1.671 -1.688 0 0 0 0 0 0 0 +8.651 1.696 -1.685 0 0 0 0 0 0 0 +8.642 1.708 -1.684 0 0 0 0 0 0 0 +8.635 1.735 -1.684 0 0 0 0 0 0 0 +8.628 1.762 -1.683 0 0 0 0 0 0 0 +8.626 1.789 -1.684 0 0 0 0 0 0 0 +8.624 1.817 -1.685 0 0 0 0 0 0 0 +8.611 1.843 -1.683 0 0 0 0 0 0 0 +8.601 1.869 -1.683 0 0 0 0 0 0 0 +8.611 1.885 -1.685 0 0 0 0 0 0 0 +8.59 1.909 -1.682 0 0 0 0 0 0 0 +8.592 1.938 -1.684 0 0 0 0 0 0 0 +8.591 1.966 -1.685 0 0 0 0 0 0 0 +8.581 1.992 -1.684 0 0 0 0 0 0 0 +8.59 2.023 -1.687 0 0 0 0 0 0 0 +8.58 2.049 -1.687 0 0 0 0 0 0 0 +8.571 2.061 -1.685 0 0 0 0 0 0 0 +8.574 2.09 -1.687 0 0 0 0 0 0 0 +8.566 2.116 -1.687 0 0 0 0 0 0 0 +8.565 2.145 -1.688 0 0 0 0 0 0 0 +8.562 2.173 -1.689 0 0 0 0 0 0 0 +8.547 2.198 -1.687 0 0 0 0 0 0 0 +8.553 2.228 -1.69 0 0 0 0 0 0 0 +8.537 2.238 -1.687 0 0 0 0 0 0 0 +8.539 2.267 -1.689 0 0 0 0 0 0 0 +8.534 2.294 -1.69 0 0 0 0 0 0 0 +8.54 2.325 -1.693 0 0 0 0 0 0 0 +8.527 2.35 -1.691 0 0 0 0 0 0 0 +8.527 2.379 -1.693 0 0 0 0 0 0 0 +8.51 2.403 -1.691 0 0 0 0 0 0 0 +8.517 2.42 -1.693 0 0 0 0 0 0 0 +8.499 2.443 -1.691 0 0 0 0 0 0 0 +8.495 2.471 -1.692 0 0 0 0 0 0 0 +8.496 2.5 -1.694 0 0 0 0 0 0 0 +8.481 2.525 -1.692 0 0 0 0 0 0 0 +8.471 2.551 -1.692 0 0 0 0 0 0 0 +8.474 2.581 -1.694 0 0 0 0 0 0 0 +8.464 2.593 -1.693 0 0 0 0 0 0 0 +8.456 2.619 -1.693 0 0 0 0 0 0 0 +8.45 2.646 -1.693 0 0 0 0 0 0 0 +8.447 2.675 -1.695 0 0 0 0 0 0 0 +8.437 2.7 -1.694 0 0 0 0 0 0 0 +8.436 2.729 -1.696 0 0 0 0 0 0 0 +8.418 2.753 -1.694 0 0 0 0 0 0 0 +8.43 2.771 -1.697 0 0 0 0 0 0 0 +8.416 2.796 -1.696 0 0 0 0 0 0 0 +8.403 2.821 -1.695 0 0 0 0 0 0 0 +8.391 2.846 -1.695 0 0 0 0 0 0 0 +8.389 2.875 -1.696 0 0 0 0 0 0 0 +8.4 2.909 -1.701 0 0 0 0 0 0 0 +8.369 2.927 -1.696 0 0 0 0 0 0 0 +8.385 2.948 -1.7 0 0 0 0 0 0 0 +8.379 2.975 -1.701 0 0 0 0 0 0 0 +8.374 3.003 -1.702 0 0 0 0 0 0 0 +8.353 3.025 -1.7 0 0 0 0 0 0 0 +8.353 3.055 -1.702 0 0 0 0 0 0 0 +8.345 3.082 -1.702 0 0 0 0 0 0 0 +8.33 3.106 -1.701 0 0 0 0 0 0 0 +8.345 3.126 -1.705 0 0 0 0 0 0 0 +8.322 3.148 -1.702 0 0 0 0 0 0 0 +8.318 3.176 -1.704 0 0 0 0 0 0 0 +8.317 3.206 -1.706 0 0 0 0 0 0 0 +8.303 3.23 -1.705 0 0 0 0 0 0 0 +8.286 3.253 -1.703 0 0 0 0 0 0 0 +8.281 3.282 -1.704 0 0 0 0 0 0 0 +8.278 3.295 -1.705 0 0 0 0 0 0 0 +8.274 3.324 -1.706 0 0 0 0 0 0 0 +8.268 3.352 -1.707 0 0 0 0 0 0 0 +8.255 3.377 -1.707 0 0 0 0 0 0 0 +8.25 3.405 -1.708 0 0 0 0 0 0 0 +8.237 3.43 -1.708 0 0 0 0 0 0 0 +8.228 3.457 -1.708 0 0 0 0 0 0 0 +8.225 3.47 -1.708 0 0 0 0 0 0 0 +8.216 3.497 -1.709 0 0 0 0 0 0 0 +8.203 3.522 -1.708 0 0 0 0 0 0 0 +8.201 3.552 -1.71 0 0 0 0 0 0 0 +8.184 3.575 -1.709 0 0 0 0 0 0 0 +8.176 3.602 -1.71 0 0 0 0 0 0 0 +8.153 3.623 -1.707 0 0 0 0 0 0 0 +8.159 3.641 -1.71 0 0 0 0 0 0 0 +8.143 3.664 -1.709 0 0 0 0 0 0 0 +8.14 3.694 -1.711 0 0 0 0 0 0 0 +8.128 3.719 -1.711 0 0 0 0 0 0 0 +8.115 3.744 -1.71 0 0 0 0 0 0 0 +8.101 3.769 -1.71 0 0 0 0 0 0 0 +8.096 3.797 -1.712 0 0 0 0 0 0 0 +8.09 3.825 -1.713 0 0 0 0 0 0 0 +8.087 3.84 -1.714 0 0 0 0 0 0 0 +8.061 3.858 -1.71 0 0 0 0 0 0 0 +8.063 3.89 -1.714 0 0 0 0 0 0 0 +8.049 3.915 -1.713 0 0 0 0 0 0 0 +8.035 3.939 -1.713 0 0 0 0 0 0 0 +8.033 3.97 -1.715 0 0 0 0 0 0 0 +8.02 3.979 -1.714 0 0 0 0 0 0 0 +8 4 -1.712 0 0 0 0 0 0 0 +7.988 4.026 -1.712 0 0 0 0 0 0 0 +7.977 4.052 -1.712 0 0 0 0 0 0 0 +7.976 4.083 -1.715 0 0 0 0 0 0 0 +7.961 4.107 -1.715 0 0 0 0 0 0 0 +7.957 4.136 -1.717 0 0 0 0 0 0 0 +7.939 4.143 -1.714 0 0 0 0 0 0 0 +7.943 4.177 -1.718 0 0 0 0 0 0 0 +7.93 4.202 -1.718 0 0 0 0 0 0 0 +7.901 4.218 -1.714 0 0 0 0 0 0 0 +7.888 4.243 -1.714 0 0 0 0 0 0 0 +7.86 4.26 -1.711 0 0 0 0 0 0 0 +7.809 4.264 -1.702 0 0 0 0 0 0 0 +7.851 4.303 -1.714 0 0 0 0 0 0 0 +7.832 4.325 -1.712 0 0 0 0 0 0 0 +7.83 4.356 -1.715 0 0 0 0 0 0 0 +7.825 4.385 -1.717 0 0 0 0 0 0 0 +7.828 4.419 -1.721 0 0 0 0 0 0 0 +7.818 4.446 -1.722 0 0 0 0 0 0 0 +7.811 4.474 -1.724 0 0 0 0 0 0 0 +7.803 4.503 -1.725 0 0 0 0 0 0 0 +7.769 4.499 -1.719 0 0 0 0 0 0 0 +7.75 4.521 -1.718 0 0 0 0 0 0 0 +7.719 4.535 -1.714 0 0 0 0 0 0 0 +7.711 4.563 -1.715 0 0 0 0 0 0 0 +7.693 4.586 -1.714 0 0 0 0 0 0 0 +7.676 4.608 -1.714 0 0 0 0 0 0 0 +7.651 4.626 -1.711 0 0 0 0 0 0 0 +7.647 4.64 -1.712 0 0 0 0 0 0 0 +7.637 4.667 -1.713 0 0 0 0 0 0 0 +7.623 4.691 -1.713 0 0 0 0 0 0 0 +7.603 4.712 -1.712 0 0 0 0 0 0 0 +7.6 4.743 -1.715 0 0 0 0 0 0 0 +7.582 4.765 -1.714 0 0 0 0 0 0 0 +7.574 4.776 -1.714 0 0 0 0 0 0 0 +7.566 4.804 -1.716 0 0 0 0 0 0 0 +7.549 4.827 -1.715 0 0 0 0 0 0 0 +7.534 4.851 -1.715 0 0 0 0 0 0 0 +7.513 4.871 -1.714 0 0 0 0 0 0 0 +7.498 4.895 -1.714 0 0 0 0 0 0 0 +7.494 4.926 -1.717 0 0 0 0 0 0 0 +7.48 4.933 -1.715 0 0 0 0 0 0 0 +7.463 4.956 -1.715 0 0 0 0 0 0 0 +7.452 4.982 -1.716 0 0 0 0 0 0 0 +7.438 5.007 -1.716 0 0 0 0 0 0 0 +7.434 5.038 -1.719 0 0 0 0 0 0 0 +7.418 5.061 -1.719 0 0 0 0 0 0 0 +7.39 5.077 -1.716 0 0 0 0 0 0 0 +7.389 5.093 -1.718 0 0 0 0 0 0 0 +7.363 5.109 -1.716 0 0 0 0 0 0 0 +7.349 5.134 -1.716 0 0 0 0 0 0 0 +7.353 5.171 -1.721 0 0 0 0 0 0 0 +7.331 5.19 -1.72 0 0 0 0 0 0 0 +7.327 5.222 -1.723 0 0 0 0 0 0 0 +7.304 5.24 -1.721 0 0 0 0 0 0 0 +7.302 5.256 -1.723 0 0 0 0 0 0 0 +7.289 5.282 -1.724 0 0 0 0 0 0 0 +7.271 5.303 -1.723 0 0 0 0 0 0 0 +7.254 5.326 -1.723 0 0 0 0 0 0 0 +7.252 5.359 -1.727 0 0 0 0 0 0 0 +7.233 5.381 -1.726 0 0 0 0 0 0 0 +7.216 5.404 -1.726 0 0 0 0 0 0 0 +7.209 5.416 -1.727 0 0 0 0 0 0 0 +7.199 5.443 -1.728 0 0 0 0 0 0 0 +7.183 5.467 -1.729 0 0 0 0 0 0 0 +7.167 5.491 -1.729 0 0 0 0 0 0 0 +7.148 5.512 -1.729 0 0 0 0 0 0 0 +7.137 5.539 -1.73 0 0 0 0 0 0 0 +7.126 5.567 -1.732 0 0 0 0 0 0 0 +7.11 5.59 -1.732 0 0 0 0 0 0 0 +7.097 5.598 -1.731 0 0 0 0 0 0 0 +7.078 5.619 -1.731 0 0 0 0 0 0 0 +7.057 5.639 -1.73 0 0 0 0 0 0 0 +7.037 5.659 -1.73 0 0 0 0 0 0 0 +6.76 5.473 -1.661 0 0 0 0 0 0 0 +6.688 5.45 -1.647 0 0 0 0 0 0 0 +6.66 5.462 -1.644 0 0 0 0 0 0 0 +6.655 5.475 -1.645 0 0 0 0 0 0 0 +6.641 5.498 -1.646 0 0 0 0 0 0 0 +6.62 5.517 -1.645 0 0 0 0 0 0 0 +6.708 5.625 -1.673 0 0 0 0 0 0 0 +6.928 5.845 -1.737 0 0 0 0 0 0 0 +6.917 5.873 -1.739 0 0 0 0 0 0 0 +6.915 5.89 -1.741 0 0 0 0 0 0 0 +6.905 5.92 -1.743 0 0 0 0 0 0 0 +6.894 5.948 -1.745 0 0 0 0 0 0 0 +6.871 5.965 -1.744 0 0 0 0 0 0 0 +6.86 5.993 -1.746 0 0 0 0 0 0 0 +6.851 6.024 -1.749 0 0 0 0 0 0 0 +6.829 6.043 -1.748 0 0 0 0 0 0 0 +6.826 6.059 -1.749 0 0 0 0 0 0 0 +6.82 6.092 -1.753 0 0 0 0 0 0 0 +6.804 6.116 -1.754 0 0 0 0 0 0 0 +6.786 6.139 -1.754 0 0 0 0 0 0 0 +6.775 6.168 -1.757 0 0 0 0 0 0 0 +6.756 6.189 -1.757 0 0 0 0 0 0 0 +6.742 6.215 -1.758 0 0 0 0 0 0 0 +6.735 6.229 -1.759 0 0 0 0 0 0 0 +6.713 6.247 -1.758 0 0 0 0 0 0 0 +6.702 6.276 -1.761 0 0 0 0 0 0 0 +6.683 6.299 -1.761 0 0 0 0 0 0 0 +6.672 6.328 -1.763 0 0 0 0 0 0 0 +6.655 6.351 -1.764 0 0 0 0 0 0 0 +6.643 6.38 -1.767 0 0 0 0 0 0 0 +6.619 6.397 -1.765 0 0 0 0 0 0 0 +6.606 6.405 -1.765 0 0 0 0 0 0 0 +6.606 6.445 -1.77 0 0 0 0 0 0 0 +6.577 6.457 -1.768 0 0 0 0 0 0 0 +6.571 6.491 -1.772 0 0 0 0 0 0 0 +6.57 6.531 -1.778 0 0 0 0 0 0 0 +6.547 6.549 -1.777 0 0 0 0 0 0 0 +6.536 6.579 -1.78 0 0 0 0 0 0 0 +6.535 6.599 -1.782 0 0 0 0 0 0 0 +6.505 6.61 -1.78 0 0 0 0 0 0 0 +6.491 6.637 -1.782 0 0 0 0 0 0 0 +6.483 6.672 -1.786 0 0 0 0 0 0 0 +6.46 6.689 -1.785 0 0 0 0 0 0 0 +6.444 6.715 -1.786 0 0 0 0 0 0 0 +6.434 6.747 -1.79 0 0 0 0 0 0 0 +6.407 6.74 -1.785 0 0 0 0 0 0 0 +6.397 6.771 -1.788 0 0 0 0 0 0 0 +6.381 6.797 -1.79 0 0 0 0 0 0 0 +6.351 6.809 -1.787 0 0 0 0 0 0 0 +6.334 6.833 -1.788 0 0 0 0 0 0 0 +6.316 6.857 -1.79 0 0 0 0 0 0 0 +6.291 6.872 -1.788 0 0 0 0 0 0 0 +6.277 6.879 -1.788 0 0 0 0 0 0 0 +6.27 6.915 -1.792 0 0 0 0 0 0 0 +6.238 6.923 -1.789 0 0 0 0 0 0 0 +6.208 6.934 -1.786 0 0 0 0 0 0 0 +6.203 6.972 -1.792 0 0 0 0 0 0 0 +6.179 6.989 -1.791 0 0 0 0 0 0 0 +6.172 7.026 -1.796 0 0 0 0 0 0 0 +6.167 7.041 -1.797 0 0 0 0 0 0 0 +6.139 7.055 -1.796 0 0 0 0 0 0 0 +6.13 7.089 -1.8 0 0 0 0 0 0 0 +6.108 7.108 -1.8 0 0 0 0 0 0 0 +6.084 7.126 -1.799 0 0 0 0 0 0 0 +6.079 7.166 -1.805 0 0 0 0 0 0 0 +6.063 7.192 -1.807 0 0 0 0 0 0 0 +6.061 7.212 -1.81 0 0 0 0 0 0 0 +6.047 7.242 -1.813 0 0 0 0 0 0 0 +6.03 7.268 -1.815 0 0 0 0 0 0 0 +6.01 7.29 -1.815 0 0 0 0 0 0 0 +5.988 7.311 -1.816 0 0 0 0 0 0 0 +5.964 7.328 -1.815 0 0 0 0 0 0 0 +5.943 7.35 -1.816 0 0 0 0 0 0 0 +5.939 7.368 -1.819 0 0 0 0 0 0 0 +5.905 7.373 -1.815 0 0 0 0 0 0 0 +5.865 7.37 -1.809 0 0 0 0 0 0 0 +5.839 7.385 -1.808 0 0 0 0 0 0 0 +5.829 7.421 -1.813 0 0 0 0 0 0 0 +5.799 7.43 -1.81 0 0 0 0 0 0 0 +5.779 7.452 -1.812 0 0 0 0 0 0 0 +5.758 7.449 -1.808 0 0 0 0 0 0 0 +5.746 7.483 -1.813 0 0 0 0 0 0 0 +5.721 7.499 -1.812 0 0 0 0 0 0 0 +5.703 7.523 -1.814 0 0 0 0 0 0 0 +5.669 7.529 -1.81 0 0 0 0 0 0 0 +5.654 7.557 -1.813 0 0 0 0 0 0 0 +5.626 7.569 -1.812 0 0 0 0 0 0 0 +5.612 7.576 -1.811 0 0 0 0 0 0 0 +5.573 7.573 -1.806 0 0 0 0 0 0 0 +5.532 7.567 -1.8 0 0 0 0 0 0 0 +5.534 7.619 -1.809 0 0 0 0 0 0 0 +5.505 7.63 -1.807 0 0 0 0 0 0 0 +5.487 7.655 -1.809 0 0 0 0 0 0 0 +5.455 7.661 -1.806 0 0 0 0 0 0 0 +5.454 7.686 -1.81 0 0 0 0 0 0 0 +5.421 7.69 -1.807 0 0 0 0 0 0 0 +5.405 7.718 -1.81 0 0 0 0 0 0 0 +5.377 7.731 -1.809 0 0 0 0 0 0 0 +5.356 7.752 -1.81 0 0 0 0 0 0 0 +5.332 7.769 -1.81 0 0 0 0 0 0 0 +5.308 7.787 -1.81 0 0 0 0 0 0 0 +5.285 7.806 -1.811 0 0 0 0 0 0 0 +5.273 7.814 -1.811 0 0 0 0 0 0 0 +5.244 7.824 -1.809 0 0 0 0 0 0 0 +5.211 7.827 -1.806 0 0 0 0 0 0 0 +5.182 7.837 -1.804 0 0 0 0 0 0 0 +5.161 7.86 -1.806 0 0 0 0 0 0 0 +5.131 7.868 -1.804 0 0 0 0 0 0 0 +5.109 7.887 -1.805 0 0 0 0 0 0 0 +5.092 7.889 -1.803 0 0 0 0 0 0 0 +5.07 7.91 -1.804 0 0 0 0 0 0 0 +5.041 7.919 -1.803 0 0 0 0 0 0 0 +5.018 7.938 -1.804 0 0 0 0 0 0 0 +4.993 7.954 -1.804 0 0 0 0 0 0 0 +4.969 7.971 -1.804 0 0 0 0 0 0 0 +4.958 7.981 -1.804 0 0 0 0 0 0 0 +4.93 7.991 -1.803 0 0 0 0 0 0 0 +4.909 8.013 -1.805 0 0 0 0 0 0 0 +4.88 8.024 -1.804 0 0 0 0 0 0 0 +4.856 8.041 -1.804 0 0 0 0 0 0 0 +4.834 8.061 -1.805 0 0 0 0 0 0 0 +4.815 8.086 -1.808 0 0 0 0 0 0 0 +4.794 8.08 -1.804 0 0 0 0 0 0 0 +4.763 8.085 -1.802 0 0 0 0 0 0 0 +4.743 8.11 -1.804 0 0 0 0 0 0 0 +4.718 8.125 -1.804 0 0 0 0 0 0 0 +4.686 8.13 -1.802 0 0 0 0 0 0 0 +4.666 8.154 -1.804 0 0 0 0 0 0 0 +4.633 8.155 -1.801 0 0 0 0 0 0 0 +4.61 8.175 -1.802 0 0 0 0 0 0 0 +4.591 8.17 -1.8 0 0 0 0 0 0 0 +4.567 8.188 -1.8 0 0 0 0 0 0 0 +4.535 8.192 -1.798 0 0 0 0 0 0 0 +4.507 8.201 -1.797 0 0 0 0 0 0 0 +4.477 8.208 -1.795 0 0 0 0 0 0 0 +4.451 8.223 -1.795 0 0 0 0 0 0 0 +4.425 8.235 -1.795 0 0 0 0 0 0 0 +4.405 8.23 -1.792 0 0 0 0 0 0 0 +4.379 8.243 -1.792 0 0 0 0 0 0 0 +4.351 8.252 -1.791 0 0 0 0 0 0 0 +4.327 8.271 -1.792 0 0 0 0 0 0 0 +4.295 8.272 -1.789 0 0 0 0 0 0 0 +4.268 8.284 -1.789 0 0 0 0 0 0 0 +4.246 8.304 -1.79 0 0 0 0 0 0 0 +4.213 8.304 -1.787 0 0 0 0 0 0 0 +4.202 8.315 -1.788 0 0 0 0 0 0 0 +4.169 8.315 -1.785 0 0 0 0 0 0 0 +4.145 8.333 -1.786 0 0 0 0 0 0 0 +4.117 8.341 -1.785 0 0 0 0 0 0 0 +4.091 8.355 -1.786 0 0 0 0 0 0 0 +4.065 8.368 -1.786 0 0 0 0 0 0 0 +4.051 8.373 -1.785 0 0 0 0 0 0 0 +4.019 8.373 -1.782 0 0 0 0 0 0 0 +3.99 8.38 -1.781 0 0 0 0 0 0 0 +3.961 8.387 -1.78 0 0 0 0 0 0 0 +3.936 8.403 -1.781 0 0 0 0 0 0 0 +3.91 8.416 -1.781 0 0 0 0 0 0 0 +3.888 8.439 -1.783 0 0 0 0 0 0 0 +3.856 8.438 -1.78 0 0 0 0 0 0 0 +3.838 8.434 -1.778 0 0 0 0 0 0 0 +3.816 8.456 -1.78 0 0 0 0 0 0 0 +3.787 8.463 -1.779 0 0 0 0 0 0 0 +3.765 8.486 -1.782 0 0 0 0 0 0 0 +3.737 8.494 -1.781 0 0 0 0 0 0 0 +3.712 8.509 -1.782 0 0 0 0 0 0 0 +3.687 8.524 -1.782 0 0 0 0 0 0 0 +3.672 8.527 -1.782 0 0 0 0 0 0 0 +3.646 8.54 -1.782 0 0 0 0 0 0 0 +3.625 8.566 -1.785 0 0 0 0 0 0 0 +3.603 8.588 -1.788 0 0 0 0 0 0 0 +3.563 8.568 -1.781 0 0 0 0 0 0 0 +3.538 8.583 -1.782 0 0 0 0 0 0 0 +3.51 8.592 -1.781 0 0 0 0 0 0 0 +3.496 8.596 -1.781 0 0 0 0 0 0 0 +3.469 8.609 -1.781 0 0 0 0 0 0 0 +3.442 8.62 -1.781 0 0 0 0 0 0 0 +3.412 8.623 -1.78 0 0 0 0 0 0 0 +3.389 8.645 -1.782 0 0 0 0 0 0 0 +3.362 8.655 -1.782 0 0 0 0 0 0 0 +3.334 8.662 -1.781 0 0 0 0 0 0 0 +3.322 8.673 -1.782 0 0 0 0 0 0 0 +3.293 8.678 -1.781 0 0 0 0 0 0 0 +3.266 8.69 -1.782 0 0 0 0 0 0 0 +3.235 8.691 -1.78 0 0 0 0 0 0 0 +3.203 8.688 -1.777 0 0 0 0 0 0 0 +3.174 8.693 -1.776 0 0 0 0 0 0 0 +3.142 8.69 -1.773 0 0 0 0 0 0 0 +3.124 8.682 -1.77 0 0 0 0 0 0 0 +3.093 8.682 -1.768 0 0 0 0 0 0 0 +3.062 8.683 -1.766 0 0 0 0 0 0 0 +3.031 8.68 -1.763 0 0 0 0 0 0 0 +3.001 8.682 -1.761 0 0 0 0 0 0 0 +2.971 8.684 -1.76 0 0 0 0 0 0 0 +2.944 8.695 -1.76 0 0 0 0 0 0 0 +2.918 8.708 -1.761 0 0 0 0 0 0 0 +2.903 8.709 -1.76 0 0 0 0 0 0 0 +2.878 8.723 -1.761 0 0 0 0 0 0 0 +2.851 8.734 -1.762 0 0 0 0 0 0 0 +2.822 8.737 -1.761 0 0 0 0 0 0 0 +2.794 8.746 -1.761 0 0 0 0 0 0 0 +2.762 8.74 -1.757 0 0 0 0 0 0 0 +2.732 8.741 -1.756 0 0 0 0 0 0 0 +2.718 8.744 -1.755 0 0 0 0 0 0 0 +2.69 8.75 -1.755 0 0 0 0 0 0 0 +2.658 8.745 -1.752 0 0 0 0 0 0 0 +2.632 8.759 -1.753 0 0 0 0 0 0 0 +2.609 8.781 -1.756 0 0 0 0 0 0 0 +2.573 8.761 -1.75 0 0 0 0 0 0 0 +2.546 8.771 -1.751 0 0 0 0 0 0 0 +2.393 8.299 -1.649 0 0 0 0 0 0 0 +2.332 8.186 -1.623 0 0 0 0 0 0 0 +2.306 8.191 -1.623 0 0 0 0 0 0 0 +2.284 8.21 -1.625 0 0 0 0 0 0 0 +2.253 8.198 -1.621 0 0 0 0 0 0 0 +2.226 8.201 -1.62 0 0 0 0 0 0 0 +2.192 8.18 -1.614 0 0 0 0 0 0 0 +2.177 8.174 -1.612 0 0 0 0 0 0 0 +2.145 8.158 -1.607 0 0 0 0 0 0 0 +2.122 8.172 -1.609 0 0 0 0 0 0 0 +2.066 8.065 -1.585 0 0 0 0 0 0 0 +1.729 6.853 -1.327 0 0 0 0 0 0 0 +1.707 6.858 -1.327 0 0 0 0 0 0 0 +1.791 7.286 -1.416 0 0 0 0 0 0 0 +2 8.179 -1.604 0 0 0 0 0 0 0 +1.974 8.185 -1.604 0 0 0 0 0 0 0 +1.95 8.197 -1.605 0 0 0 0 0 0 0 +1.924 8.203 -1.605 0 0 0 0 0 0 0 +1.899 8.209 -1.605 0 0 0 0 0 0 0 +1.869 8.197 -1.602 0 0 0 0 0 0 0 +1.845 8.211 -1.603 0 0 0 0 0 0 0 +1.822 8.232 -1.607 0 0 0 0 0 0 0 +1.804 8.21 -1.601 0 0 0 0 0 0 0 +0.662 3.137 -0.534 0 0 0 0 0 0 0 +0.652 3.135 -0.533 0 0 0 0 0 0 0 +0.642 3.135 -0.533 0 0 0 0 0 0 0 +0.634 3.147 -0.535 0 0 0 0 0 0 0 +0.63 3.178 -0.541 0 0 0 0 0 0 0 +0.619 3.178 -0.541 0 0 0 0 0 0 0 +0.6 3.108 -0.526 0 0 0 0 0 0 0 +0.559 2.952 -0.493 0 0 0 0 0 0 0 +0.547 2.94 -0.49 0 0 0 0 0 0 0 +0.54 2.954 -0.492 0 0 0 0 0 0 0 +0.535 2.976 -0.497 0 0 0 0 0 0 0 +0.519 2.945 -0.49 0 0 0 0 0 0 0 +0.508 2.933 -0.487 0 0 0 0 0 0 0 +0.511 2.98 -0.497 0 0 0 0 0 0 0 +0.501 2.974 -0.495 0 0 0 0 0 0 0 +0.487 2.951 -0.49 0 0 0 0 0 0 0 +0.482 2.976 -0.495 0 0 0 0 0 0 0 +0.471 2.971 -0.494 0 0 0 0 0 0 0 +0.453 2.92 -0.483 0 0 0 0 0 0 0 +0.451 2.964 -0.492 0 0 0 0 0 0 0 +0.446 2.961 -0.491 0 0 0 0 0 0 0 +0.44 2.984 -0.495 0 0 0 0 0 0 0 +0.432 2.993 -0.497 0 0 0 0 0 0 0 +0.413 2.934 -0.484 0 0 0 0 0 0 0 +0.407 2.953 -0.488 0 0 0 0 0 0 0 +0.4 2.97 -0.491 0 0 0 0 0 0 0 +0.392 2.985 -0.494 0 0 0 0 0 0 0 +0.382 2.982 -0.493 0 0 0 0 0 0 0 +0.379 2.994 -0.496 0 0 0 0 0 0 0 +0.368 2.98 -0.492 0 0 0 0 0 0 0 +0.356 2.964 -0.489 0 0 0 0 0 0 0 +0.351 2.998 -0.496 0 0 0 0 0 0 0 +0.34 2.987 -0.493 0 0 0 0 0 0 0 +0.331 2.988 -0.493 0 0 0 0 0 0 0 +0.321 2.991 -0.494 0 0 0 0 0 0 0 +0.318 3.003 -0.496 0 0 0 0 0 0 0 +0.307 2.987 -0.492 0 0 0 0 0 0 0 +0.299 3.005 -0.496 0 0 0 0 0 0 0 +0.291 3.014 -0.498 0 0 0 0 0 0 0 +0.28 3.003 -0.495 0 0 0 0 0 0 0 +0.271 3.012 -0.497 0 0 0 0 0 0 0 +0.263 3.022 -0.499 0 0 0 0 0 0 0 +0.257 3.015 -0.497 0 0 0 0 0 0 0 +0.249 3.026 -0.499 0 0 0 0 0 0 0 +0.238 3.015 -0.497 0 0 0 0 0 0 0 +0.227 2.992 -0.492 0 0 0 0 0 0 0 +0.221 3.036 -0.501 0 0 0 0 0 0 0 +0.21 3.027 -0.499 0 0 0 0 0 0 0 +0.201 3.027 -0.499 0 0 0 0 0 0 0 +0.197 3.041 -0.502 0 0 0 0 0 0 0 +0.188 3.05 -0.503 0 0 0 0 0 0 0 +0.178 3.036 -0.5 0 0 0 0 0 0 0 +0.169 3.049 -0.503 0 0 0 0 0 0 0 +0.159 3.043 -0.502 0 0 0 0 0 0 0 +0.149 3.044 -0.502 0 0 0 0 0 0 0 +0.139 3.033 -0.499 0 0 0 0 0 0 0 +0.13 3.045 -0.502 0 0 0 0 0 0 0 +0.137 3.272 -0.548 0 0 0 0 0 0 0 +0.126 3.265 -0.547 0 0 0 0 0 0 0 +0.115 3.245 -0.543 0 0 0 0 0 0 0 +0.105 3.259 -0.545 0 0 0 0 0 0 0 +0.093 3.205 -0.534 0 0 0 0 0 0 0 +0.091 3.428 -0.58 0 0 0 0 0 0 0 +0.236 8.936 -1.711 0 0 0 0 0 0 0 +0.208 8.927 -1.709 0 0 0 0 0 0 0 +0.073 3.205 -0.534 0 0 0 0 0 0 0 +0.18 8.945 -1.712 0 0 0 0 0 0 0 +0.152 8.951 -1.714 0 0 0 0 0 0 0 +0.124 8.971 -1.718 0 0 0 0 0 0 0 +0.096 8.985 -1.72 0 0 0 0 0 0 0 +0.068 8.997 -1.723 0 0 0 0 0 0 0 +0.054 8.997 -1.723 0 0 0 0 0 0 0 +0.026 9.013 -1.726 0 0 0 0 0 0 0 +-0.002 9.027 -1.729 0 0 0 0 0 0 0 +-0.031 9.05 -1.734 0 0 0 0 0 0 0 +-0.059 9.062 -1.736 0 0 0 0 0 0 0 +-0.088 9.073 -1.739 0 0 0 0 0 0 0 +-0.116 9.052 -1.734 0 0 0 0 0 0 0 +-0.131 9.089 -1.742 0 0 0 0 0 0 0 +-0.16 9.159 -1.756 0 0 0 0 0 0 0 +-0.188 9.074 -1.739 0 0 0 0 0 0 0 +-0.219 9.185 -1.762 0 0 0 0 0 0 0 +-0.251 9.321 -1.79 0 0 0 0 0 0 0 +-0.28 9.328 -1.792 0 0 0 0 0 0 0 +-0.305 9.194 -1.764 0 0 0 0 0 0 0 +-0.318 9.147 -1.755 0 0 0 0 0 0 0 +-0.347 9.15 -1.755 0 0 0 0 0 0 0 +-0.375 9.135 -1.753 0 0 0 0 0 0 0 +-0.404 9.124 -1.751 0 0 0 0 0 0 0 +-0.432 9.12 -1.75 0 0 0 0 0 0 0 +-0.461 9.117 -1.75 0 0 0 0 0 0 0 +-0.49 9.12 -1.751 0 0 0 0 0 0 0 +-0.517 9.096 -1.746 0 0 0 0 0 0 0 +-0.532 9.101 -1.747 0 0 0 0 0 0 0 +-0.561 9.108 -1.749 0 0 0 0 0 0 0 +-0.589 9.102 -1.748 0 0 0 0 0 0 0 +-0.618 9.1 -1.748 0 0 0 0 0 0 0 +-0.646 9.088 -1.746 0 0 0 0 0 0 0 +-0.675 9.096 -1.748 0 0 0 0 0 0 0 +-0.703 9.088 -1.747 0 0 0 0 0 0 0 +-0.719 9.104 -1.751 0 0 0 0 0 0 0 +-0.746 9.088 -1.748 0 0 0 0 0 0 0 +-0.776 9.098 -1.75 0 0 0 0 0 0 0 +-0.804 9.091 -1.749 0 0 0 0 0 0 0 +-0.833 9.089 -1.749 0 0 0 0 0 0 0 +-0.861 9.088 -1.75 0 0 0 0 0 0 0 +-0.889 9.079 -1.749 0 0 0 0 0 0 0 +-0.904 9.088 -1.751 0 0 0 0 0 0 0 +-0.934 9.091 -1.752 0 0 0 0 0 0 0 +-0.963 9.096 -1.753 0 0 0 0 0 0 0 +-0.99 9.081 -1.751 0 0 0 0 0 0 0 +-1.02 9.085 -1.753 0 0 0 0 0 0 0 +-1.048 9.082 -1.753 0 0 0 0 0 0 0 +-1.076 9.073 -1.751 0 0 0 0 0 0 0 +-1.107 9.087 -1.755 0 0 0 0 0 0 0 +-1.12 9.08 -1.754 0 0 0 0 0 0 0 +-1.147 9.062 -1.751 0 0 0 0 0 0 0 +-1.176 9.063 -1.752 0 0 0 0 0 0 0 +-1.205 9.065 -1.753 0 0 0 0 0 0 0 +-1.233 9.059 -1.753 0 0 0 0 0 0 0 +-1.263 9.067 -1.755 0 0 0 0 0 0 0 +-1.291 9.053 -1.753 0 0 0 0 0 0 0 +-1.304 9.045 -1.752 0 0 0 0 0 0 0 +-1.334 9.049 -1.753 0 0 0 0 0 0 0 +-1.363 9.048 -1.754 0 0 0 0 0 0 0 +-1.388 9.027 -1.751 0 0 0 0 0 0 0 +-1.419 9.036 -1.753 0 0 0 0 0 0 0 +-1.448 9.035 -1.754 0 0 0 0 0 0 0 +-1.475 9.027 -1.753 0 0 0 0 0 0 0 +-1.491 9.03 -1.755 0 0 0 0 0 0 0 +-1.519 9.025 -1.755 0 0 0 0 0 0 0 +-1.548 9.024 -1.755 0 0 0 0 0 0 0 +-1.577 9.021 -1.756 0 0 0 0 0 0 0 +-1.611 9.049 -1.763 0 0 0 0 0 0 0 +-1.645 9.079 -1.77 0 0 0 0 0 0 0 +-1.691 9.168 -1.79 0 0 0 0 0 0 0 +-1.691 9.088 -1.773 0 0 0 0 0 0 0 +-1.715 9.056 -1.768 0 0 0 0 0 0 0 +-1.75 9.087 -1.776 0 0 0 0 0 0 0 +-1.775 9.06 -1.771 0 0 0 0 0 0 0 +-1.802 9.047 -1.769 0 0 0 0 0 0 0 +-1.823 9.007 -1.762 0 0 0 0 0 0 0 +-1.851 8.997 -1.761 0 0 0 0 0 0 0 +-1.86 8.969 -1.756 0 0 0 0 0 0 0 +-1.885 8.952 -1.754 0 0 0 0 0 0 0 +-1.916 8.958 -1.756 0 0 0 0 0 0 0 +-1.944 8.953 -1.757 0 0 0 0 0 0 0 +-1.971 8.94 -1.755 0 0 0 0 0 0 0 +-2.003 8.952 -1.759 0 0 0 0 0 0 0 +-2.027 8.925 -1.755 0 0 0 0 0 0 0 +-2.043 8.933 -1.757 0 0 0 0 0 0 0 +-2.071 8.925 -1.757 0 0 0 0 0 0 0 +-2.095 8.903 -1.753 0 0 0 0 0 0 0 +-2.125 8.904 -1.755 0 0 0 0 0 0 0 +-2.157 8.913 -1.758 0 0 0 0 0 0 0 +-2.182 8.896 -1.756 0 0 0 0 0 0 0 +-2.21 8.889 -1.756 0 0 0 0 0 0 0 +-2.239 8.886 -1.757 0 0 0 0 0 0 0 +-2.252 8.879 -1.756 0 0 0 0 0 0 0 +-2.279 8.868 -1.755 0 0 0 0 0 0 0 +-2.312 8.882 -1.76 0 0 0 0 0 0 0 +-2.338 8.865 -1.758 0 0 0 0 0 0 0 +-2.366 8.857 -1.758 0 0 0 0 0 0 0 +-2.397 8.865 -1.761 0 0 0 0 0 0 0 +-2.422 8.846 -1.759 0 0 0 0 0 0 0 +-2.437 8.846 -1.759 0 0 0 0 0 0 0 +-2.472 8.863 -1.765 0 0 0 0 0 0 0 +-2.492 8.829 -1.759 0 0 0 0 0 0 0 +-2.52 8.823 -1.759 0 0 0 0 0 0 0 +-2.558 8.849 -1.767 0 0 0 0 0 0 0 +-2.582 8.829 -1.764 0 0 0 0 0 0 0 +-2.613 8.831 -1.766 0 0 0 0 0 0 0 +-2.628 8.832 -1.767 0 0 0 0 0 0 0 +-2.652 8.809 -1.764 0 0 0 0 0 0 0 +-2.681 8.806 -1.765 0 0 0 0 0 0 0 +-2.711 8.805 -1.767 0 0 0 0 0 0 0 +-2.739 8.797 -1.767 0 0 0 0 0 0 0 +-2.766 8.788 -1.767 0 0 0 0 0 0 0 +-2.794 8.781 -1.767 0 0 0 0 0 0 0 +-2.807 8.773 -1.767 0 0 0 0 0 0 0 +-2.839 8.777 -1.769 0 0 0 0 0 0 0 +-2.869 8.777 -1.771 0 0 0 0 0 0 0 +-2.894 8.759 -1.769 0 0 0 0 0 0 0 +-2.923 8.754 -1.77 0 0 0 0 0 0 0 +-2.952 8.752 -1.772 0 0 0 0 0 0 0 +-2.979 8.741 -1.771 0 0 0 0 0 0 0 +-3.012 8.746 -1.775 0 0 0 0 0 0 0 +-3.026 8.741 -1.775 0 0 0 0 0 0 0 +-3.052 8.73 -1.774 0 0 0 0 0 0 0 +-3.089 8.746 -1.78 0 0 0 0 0 0 0 +-3.124 8.759 -1.785 0 0 0 0 0 0 0 +-3.158 8.767 -1.789 0 0 0 0 0 0 0 +-3.196 8.787 -1.795 0 0 0 0 0 0 0 +-3.245 8.834 -1.808 0 0 0 0 0 0 0 +-3.265 8.845 -1.811 0 0 0 0 0 0 0 +-3.28 8.8 -1.804 0 0 0 0 0 0 0 +-3.302 8.777 -1.801 0 0 0 0 0 0 0 +-3.353 8.829 -1.815 0 0 0 0 0 0 0 +-3.382 8.82 -1.815 0 0 0 0 0 0 0 +-3.396 8.773 -1.807 0 0 0 0 0 0 0 +-3.422 8.758 -1.806 0 0 0 0 0 0 0 +-3.439 8.762 -1.808 0 0 0 0 0 0 0 +-3.459 8.731 -1.804 0 0 0 0 0 0 0 +-3.474 8.689 -1.797 0 0 0 0 0 0 0 +-3.481 8.627 -1.786 0 0 0 0 0 0 0 +-3.506 8.613 -1.785 0 0 0 0 0 0 0 +-3.526 8.584 -1.781 0 0 0 0 0 0 0 +-3.551 8.567 -1.78 0 0 0 0 0 0 0 +-3.563 8.558 -1.779 0 0 0 0 0 0 0 +-3.586 8.539 -1.777 0 0 0 0 0 0 0 +-3.611 8.523 -1.776 0 0 0 0 0 0 0 +-3.643 8.524 -1.779 0 0 0 0 0 0 0 +-3.656 8.48 -1.771 0 0 0 0 0 0 0 +-3.696 8.499 -1.778 0 0 0 0 0 0 0 +-3.725 8.493 -1.78 0 0 0 0 0 0 0 +-3.747 8.47 -1.777 0 0 0 0 0 0 0 +-3.756 8.455 -1.775 0 0 0 0 0 0 0 +-3.788 8.456 -1.778 0 0 0 0 0 0 0 +-3.816 8.446 -1.778 0 0 0 0 0 0 0 +-3.839 8.427 -1.777 0 0 0 0 0 0 0 +-3.843 8.367 -1.766 0 0 0 0 0 0 0 +-3.498 7.546 -1.583 0 0 0 0 0 0 0 +-3.522 7.535 -1.583 0 0 0 0 0 0 0 +-3.911 8.341 -1.767 0 0 0 0 0 0 0 +-3.962 8.381 -1.779 0 0 0 0 0 0 0 +-3.99 8.372 -1.78 0 0 0 0 0 0 0 +-4.023 8.373 -1.783 0 0 0 0 0 0 0 +-4.046 8.353 -1.781 0 0 0 0 0 0 0 +-4.066 8.328 -1.778 0 0 0 0 0 0 0 +-4.098 8.328 -1.781 0 0 0 0 0 0 0 +-4.106 8.311 -1.779 0 0 0 0 0 0 0 +-4.136 8.305 -1.78 0 0 0 0 0 0 0 +-4.161 8.29 -1.78 0 0 0 0 0 0 0 +-4.188 8.281 -1.781 0 0 0 0 0 0 0 +-4.214 8.266 -1.78 0 0 0 0 0 0 0 +-4.247 8.266 -1.784 0 0 0 0 0 0 0 +-4.266 8.241 -1.781 0 0 0 0 0 0 0 +-4.283 8.241 -1.782 0 0 0 0 0 0 0 +-4.317 8.243 -1.786 0 0 0 0 0 0 0 +-4.335 8.216 -1.783 0 0 0 0 0 0 0 +-4.353 8.186 -1.779 0 0 0 0 0 0 0 +-4.384 8.183 -1.782 0 0 0 0 0 0 0 +-4.401 8.152 -1.778 0 0 0 0 0 0 0 +-4.4 8.09 -1.766 0 0 0 0 0 0 0 +-4.235 7.725 -1.684 0 0 0 0 0 0 0 +-4.251 7.727 -1.686 0 0 0 0 0 0 0 +-4.502 8.125 -1.783 0 0 0 0 0 0 0 +-4.527 8.11 -1.782 0 0 0 0 0 0 0 +-4.537 8.068 -1.776 0 0 0 0 0 0 0 +-4.245 7.49 -1.643 0 0 0 0 0 0 0 +-4.612 8.082 -1.786 0 0 0 0 0 0 0 +-4.639 8.071 -1.787 0 0 0 0 0 0 0 +-4.655 8.069 -1.788 0 0 0 0 0 0 0 +-4.69 8.071 -1.792 0 0 0 0 0 0 0 +-4.719 8.063 -1.794 0 0 0 0 0 0 0 +-4.769 8.09 -1.804 0 0 0 0 0 0 0 +-4.799 8.082 -1.805 0 0 0 0 0 0 0 +-4.832 8.08 -1.808 0 0 0 0 0 0 0 +-4.86 8.07 -1.81 0 0 0 0 0 0 0 +-4.863 8.046 -1.806 0 0 0 0 0 0 0 +-4.896 8.044 -1.809 0 0 0 0 0 0 0 +-4.92 8.027 -1.808 0 0 0 0 0 0 0 +-4.952 8.021 -1.811 0 0 0 0 0 0 0 +-4.965 7.986 -1.806 0 0 0 0 0 0 0 +-4.98 7.955 -1.802 0 0 0 0 0 0 0 +-5.003 7.936 -1.802 0 0 0 0 0 0 0 +-5.004 7.91 -1.797 0 0 0 0 0 0 0 +-5.021 7.881 -1.794 0 0 0 0 0 0 0 +-5.032 7.844 -1.789 0 0 0 0 0 0 0 +-5.055 7.826 -1.788 0 0 0 0 0 0 0 +-5.07 7.795 -1.785 0 0 0 0 0 0 0 +-5.092 7.774 -1.784 0 0 0 0 0 0 0 +-5.111 7.75 -1.782 0 0 0 0 0 0 0 +-5.144 7.747 -1.785 0 0 0 0 0 0 0 +-5.15 7.731 -1.783 0 0 0 0 0 0 0 +-5.171 7.71 -1.782 0 0 0 0 0 0 0 +-5.199 7.698 -1.783 0 0 0 0 0 0 0 +-5.221 7.679 -1.782 0 0 0 0 0 0 0 +-5.245 7.662 -1.782 0 0 0 0 0 0 0 +-5.262 7.636 -1.78 0 0 0 0 0 0 0 +-5.286 7.62 -1.78 0 0 0 0 0 0 0 +-5.291 7.602 -1.777 0 0 0 0 0 0 0 +-5.319 7.59 -1.778 0 0 0 0 0 0 0 +-5.34 7.57 -1.778 0 0 0 0 0 0 0 +-5.361 7.548 -1.776 0 0 0 0 0 0 0 +-5.384 7.531 -1.776 0 0 0 0 0 0 0 +-5.41 7.518 -1.777 0 0 0 0 0 0 0 +-5.423 7.486 -1.773 0 0 0 0 0 0 0 +-5.447 7.469 -1.773 0 0 0 0 0 0 0 +-5.455 7.456 -1.772 0 0 0 0 0 0 0 +-5.476 7.436 -1.771 0 0 0 0 0 0 0 +-5.502 7.421 -1.772 0 0 0 0 0 0 0 +-5.524 7.403 -1.772 0 0 0 0 0 0 0 +-5.534 7.368 -1.767 0 0 0 0 0 0 0 +-5.552 7.343 -1.765 0 0 0 0 0 0 0 +-5.57 7.319 -1.764 0 0 0 0 0 0 0 +-5.574 7.301 -1.761 0 0 0 0 0 0 0 +-5.585 7.268 -1.757 0 0 0 0 0 0 0 +-5.596 7.235 -1.753 0 0 0 0 0 0 0 +-5.6 7.192 -1.747 0 0 0 0 0 0 0 +-5.62 7.171 -1.746 0 0 0 0 0 0 0 +-5.634 7.143 -1.743 0 0 0 0 0 0 0 +-5.656 7.125 -1.743 0 0 0 0 0 0 0 +-5.665 7.113 -1.743 0 0 0 0 0 0 0 +-5.68 7.086 -1.74 0 0 0 0 0 0 0 +-5.7 7.065 -1.739 0 0 0 0 0 0 0 +-5.723 7.049 -1.74 0 0 0 0 0 0 0 +-5.74 7.025 -1.738 0 0 0 0 0 0 0 +-5.755 6.998 -1.736 0 0 0 0 0 0 0 +-5.781 6.984 -1.737 0 0 0 0 0 0 0 +-5.804 6.99 -1.741 0 0 0 0 0 0 0 +-5.81 6.952 -1.736 0 0 0 0 0 0 0 +-5.83 6.932 -1.735 0 0 0 0 0 0 0 +-5.865 6.929 -1.739 0 0 0 0 0 0 0 +-5.881 6.905 -1.738 0 0 0 0 0 0 0 +-5.906 6.889 -1.739 0 0 0 0 0 0 0 +-5.939 6.884 -1.742 0 0 0 0 0 0 0 +-5.945 6.847 -1.737 0 0 0 0 0 0 0 +-5.954 6.837 -1.737 0 0 0 0 0 0 0 +-5.982 6.825 -1.739 0 0 0 0 0 0 0 +-6.001 6.803 -1.738 0 0 0 0 0 0 0 +-6.035 6.799 -1.742 0 0 0 0 0 0 0 +-6.041 6.763 -1.737 0 0 0 0 0 0 0 +-6.079 6.763 -1.743 0 0 0 0 0 0 0 +-6.09 6.732 -1.739 0 0 0 0 0 0 0 +-6.106 6.728 -1.741 0 0 0 0 0 0 0 +-6.13 6.712 -1.742 0 0 0 0 0 0 0 +-6.159 6.701 -1.744 0 0 0 0 0 0 0 +-6.172 6.673 -1.742 0 0 0 0 0 0 0 +-6.201 6.662 -1.744 0 0 0 0 0 0 0 +-6.219 6.64 -1.743 0 0 0 0 0 0 0 +-6.248 6.629 -1.746 0 0 0 0 0 0 0 +-6.258 6.619 -1.746 0 0 0 0 0 0 0 +-6.275 6.595 -1.745 0 0 0 0 0 0 0 +-6.309 6.59 -1.749 0 0 0 0 0 0 0 +-6.33 6.57 -1.749 0 0 0 0 0 0 0 +-6.349 6.548 -1.748 0 0 0 0 0 0 0 +-6.376 6.535 -1.75 0 0 0 0 0 0 0 +-6.389 6.507 -1.748 0 0 0 0 0 0 0 +-6.399 6.497 -1.748 0 0 0 0 0 0 0 +-6.441 6.499 -1.754 0 0 0 0 0 0 0 +-6.445 6.462 -1.749 0 0 0 0 0 0 0 +-6.481 6.457 -1.754 0 0 0 0 0 0 0 +-6.504 6.44 -1.755 0 0 0 0 0 0 0 +-6.515 6.411 -1.752 0 0 0 0 0 0 0 +-6.53 6.385 -1.751 0 0 0 0 0 0 0 +-6.554 6.388 -1.755 0 0 0 0 0 0 0 +-6.557 6.351 -1.75 0 0 0 0 0 0 0 +-6.593 6.346 -1.754 0 0 0 0 0 0 0 +-6.624 6.336 -1.757 0 0 0 0 0 0 0 +-6.624 6.296 -1.752 0 0 0 0 0 0 0 +-6.655 6.286 -1.755 0 0 0 0 0 0 0 +-6.68 6.27 -1.757 0 0 0 0 0 0 0 +-6.7 6.249 -1.757 0 0 0 0 0 0 0 +-6.705 6.235 -1.755 0 0 0 0 0 0 0 +-6.738 6.226 -1.759 0 0 0 0 0 0 0 +-6.747 6.195 -1.756 0 0 0 0 0 0 0 +-6.784 6.19 -1.761 0 0 0 0 0 0 0 +-6.799 6.165 -1.76 0 0 0 0 0 0 0 +-6.813 6.138 -1.758 0 0 0 0 0 0 0 +-6.838 6.122 -1.76 0 0 0 0 0 0 0 +-6.85 6.114 -1.761 0 0 0 0 0 0 0 +-6.87 6.092 -1.761 0 0 0 0 0 0 0 +-6.893 6.074 -1.762 0 0 0 0 0 0 0 +-6.914 6.054 -1.762 0 0 0 0 0 0 0 +-6.934 6.033 -1.763 0 0 0 0 0 0 0 +-6.962 6.019 -1.765 0 0 0 0 0 0 0 +-6.987 6.003 -1.767 0 0 0 0 0 0 0 +-7 5.995 -1.768 0 0 0 0 0 0 0 +-7.015 5.97 -1.767 0 0 0 0 0 0 0 +-7.047 5.959 -1.77 0 0 0 0 0 0 0 +-7.063 5.934 -1.769 0 0 0 0 0 0 0 +-7.077 5.908 -1.768 0 0 0 0 0 0 0 +-7.104 5.894 -1.771 0 0 0 0 0 0 0 +-7.117 5.866 -1.769 0 0 0 0 0 0 0 +-7.135 5.862 -1.771 0 0 0 0 0 0 0 +-7.143 5.831 -1.769 0 0 0 0 0 0 0 +-7.163 5.81 -1.769 0 0 0 0 0 0 0 +-7.185 5.791 -1.77 0 0 0 0 0 0 0 +-7.205 5.77 -1.771 0 0 0 0 0 0 0 +-7.222 5.746 -1.77 0 0 0 0 0 0 0 +-7.246 5.728 -1.772 0 0 0 0 0 0 0 +-7.255 5.717 -1.772 0 0 0 0 0 0 0 +-7.27 5.692 -1.771 0 0 0 0 0 0 0 +-7.292 5.672 -1.772 0 0 0 0 0 0 0 +-7.305 5.646 -1.771 0 0 0 0 0 0 0 +-7.328 5.626 -1.772 0 0 0 0 0 0 0 +-7.334 5.595 -1.769 0 0 0 0 0 0 0 +-7.357 5.575 -1.771 0 0 0 0 0 0 0 +-7.366 5.546 -1.769 0 0 0 0 0 0 0 +-7.38 5.538 -1.77 0 0 0 0 0 0 0 +-7.395 5.514 -1.769 0 0 0 0 0 0 0 +-7.408 5.487 -1.768 0 0 0 0 0 0 0 +-7.436 5.472 -1.771 0 0 0 0 0 0 0 +-7.439 5.438 -1.767 0 0 0 0 0 0 0 +-7.474 5.428 -1.772 0 0 0 0 0 0 0 +-7.475 5.393 -1.768 0 0 0 0 0 0 0 +-7.486 5.383 -1.769 0 0 0 0 0 0 0 +-7.497 5.355 -1.767 0 0 0 0 0 0 0 +-7.507 5.327 -1.765 0 0 0 0 0 0 0 +-7.518 5.299 -1.764 0 0 0 0 0 0 0 +-7.533 5.274 -1.763 0 0 0 0 0 0 0 +-7.549 5.25 -1.763 0 0 0 0 0 0 0 +-7.561 5.223 -1.762 0 0 0 0 0 0 0 +-7.572 5.213 -1.763 0 0 0 0 0 0 0 +-7.592 5.192 -1.764 0 0 0 0 0 0 0 +-7.608 5.168 -1.764 0 0 0 0 0 0 0 +-7.619 5.141 -1.763 0 0 0 0 0 0 0 +-7.629 5.112 -1.761 0 0 0 0 0 0 0 +-7.642 5.086 -1.76 0 0 0 0 0 0 0 +-6.712 4.433 -1.527 0 0 0 0 0 0 0 +-6.696 4.407 -1.521 0 0 0 0 0 0 0 +-6.705 4.383 -1.52 0 0 0 0 0 0 0 +-6.713 4.359 -1.519 0 0 0 0 0 0 0 +-6.74 4.346 -1.522 0 0 0 0 0 0 0 +-6.751 4.323 -1.521 0 0 0 0 0 0 0 +-6.815 4.334 -1.534 0 0 0 0 0 0 0 +-7.753 4.901 -1.759 0 0 0 0 0 0 0 +-7.75 4.865 -1.754 0 0 0 0 0 0 0 +-7.759 4.854 -1.755 0 0 0 0 0 0 0 +-7.789 4.839 -1.758 0 0 0 0 0 0 0 +-7.796 4.809 -1.756 0 0 0 0 0 0 0 +-7.816 4.787 -1.757 0 0 0 0 0 0 0 +-7.828 4.761 -1.757 0 0 0 0 0 0 0 +-7.838 4.733 -1.755 0 0 0 0 0 0 0 +-7.861 4.714 -1.757 0 0 0 0 0 0 0 +-7.865 4.699 -1.757 0 0 0 0 0 0 0 +-7.882 4.675 -1.757 0 0 0 0 0 0 0 +-7.888 4.646 -1.755 0 0 0 0 0 0 0 +-7.907 4.624 -1.756 0 0 0 0 0 0 0 +-7.912 4.593 -1.754 0 0 0 0 0 0 0 +-7.919 4.564 -1.752 0 0 0 0 0 0 0 +-7.939 4.542 -1.753 0 0 0 0 0 0 0 +-7.956 4.536 -1.756 0 0 0 0 0 0 0 +-7.965 4.508 -1.755 0 0 0 0 0 0 0 +-7.981 4.484 -1.755 0 0 0 0 0 0 0 +-7.99 4.456 -1.754 0 0 0 0 0 0 0 +-7.997 4.427 -1.752 0 0 0 0 0 0 0 +-8.013 4.403 -1.753 0 0 0 0 0 0 0 +-8.025 4.376 -1.752 0 0 0 0 0 0 0 +-8.037 4.367 -1.753 0 0 0 0 0 0 0 +-8.054 4.343 -1.754 0 0 0 0 0 0 0 +-8.064 4.316 -1.753 0 0 0 0 0 0 0 +-8.071 4.287 -1.752 0 0 0 0 0 0 0 +-8.082 4.261 -1.751 0 0 0 0 0 0 0 +-8.103 4.239 -1.753 0 0 0 0 0 0 0 +-8.112 4.212 -1.752 0 0 0 0 0 0 0 +-8.128 4.203 -1.754 0 0 0 0 0 0 0 +-8.13 4.172 -1.752 0 0 0 0 0 0 0 +-7.267 3.697 -1.55 0 0 0 0 0 0 0 +-7.146 3.607 -1.519 0 0 0 0 0 0 0 +-7.316 3.665 -1.556 0 0 0 0 0 0 0 +-8.203 4.08 -1.757 0 0 0 0 0 0 0 +-8.223 4.058 -1.758 0 0 0 0 0 0 0 +-8.249 4.055 -1.763 0 0 0 0 0 0 0 +-8.26 4.028 -1.762 0 0 0 0 0 0 0 +-8.272 4.002 -1.762 0 0 0 0 0 0 0 +-8.285 3.976 -1.762 0 0 0 0 0 0 0 +-8.292 3.947 -1.761 0 0 0 0 0 0 0 +-8.318 3.928 -1.764 0 0 0 0 0 0 0 +-8.34 3.906 -1.766 0 0 0 0 0 0 0 +-8.347 3.877 -1.765 0 0 0 0 0 0 0 +-8.42 3.896 -1.78 0 0 0 0 0 0 0 +-8.521 3.91 -1.8 0 0 0 0 0 0 0 +-8.562 3.897 -1.807 0 0 0 0 0 0 0 +-8.578 3.871 -1.808 0 0 0 0 0 0 0 +-8.602 3.85 -1.81 0 0 0 0 0 0 0 +-8.589 3.812 -1.805 0 0 0 0 0 0 0 +-8.592 3.781 -1.803 0 0 0 0 0 0 0 +-8.605 3.77 -1.804 0 0 0 0 0 0 0 +-8.599 3.736 -1.8 0 0 0 0 0 0 0 +-8.606 3.706 -1.799 0 0 0 0 0 0 0 +-8.621 3.681 -1.8 0 0 0 0 0 0 0 +-8.609 3.644 -1.795 0 0 0 0 0 0 0 +-8.622 3.617 -1.795 0 0 0 0 0 0 0 +-8.624 3.586 -1.793 0 0 0 0 0 0 0 +-8.625 3.571 -1.792 0 0 0 0 0 0 0 +-8.647 3.548 -1.794 0 0 0 0 0 0 0 +-8.632 3.51 -1.789 0 0 0 0 0 0 0 +-8.631 3.478 -1.786 0 0 0 0 0 0 0 +-8.629 3.446 -1.783 0 0 0 0 0 0 0 +-8.65 3.423 -1.786 0 0 0 0 0 0 0 +-8.661 3.396 -1.786 0 0 0 0 0 0 0 +-8.657 3.379 -1.784 0 0 0 0 0 0 0 +-8.684 3.358 -1.787 0 0 0 0 0 0 0 +-8.693 3.33 -1.787 0 0 0 0 0 0 0 +-8.703 3.303 -1.787 0 0 0 0 0 0 0 +-8.738 3.284 -1.792 0 0 0 0 0 0 0 +-8.742 3.255 -1.791 0 0 0 0 0 0 0 +-8.743 3.224 -1.789 0 0 0 0 0 0 0 +-8.745 3.209 -1.788 0 0 0 0 0 0 0 +-8.77 3.187 -1.791 0 0 0 0 0 0 0 +-8.77 3.156 -1.789 0 0 0 0 0 0 0 +-8.795 3.133 -1.792 0 0 0 0 0 0 0 +-8.801 3.104 -1.792 0 0 0 0 0 0 0 +-8.82 3.08 -1.794 0 0 0 0 0 0 0 +-8.837 3.055 -1.795 0 0 0 0 0 0 0 +-8.852 3.029 -1.796 0 0 0 0 0 0 0 +-8.872 3.02 -1.8 0 0 0 0 0 0 0 +-8.876 2.99 -1.798 0 0 0 0 0 0 0 +-8.894 2.966 -1.8 0 0 0 0 0 0 0 +-8.916 2.942 -1.803 0 0 0 0 0 0 0 +-8.926 2.914 -1.803 0 0 0 0 0 0 0 +-8.937 2.887 -1.804 0 0 0 0 0 0 0 +-8.953 2.861 -1.805 0 0 0 0 0 0 0 +-8.961 2.848 -1.806 0 0 0 0 0 0 0 +-8.981 2.823 -1.808 0 0 0 0 0 0 0 +-8.979 2.792 -1.806 0 0 0 0 0 0 0 +-9.001 2.768 -1.809 0 0 0 0 0 0 0 +-9.008 2.739 -1.808 0 0 0 0 0 0 0 +-9.018 2.711 -1.809 0 0 0 0 0 0 0 +-9.042 2.687 -1.812 0 0 0 0 0 0 0 +-9.035 2.67 -1.81 0 0 0 0 0 0 0 +-9.049 2.643 -1.811 0 0 0 0 0 0 0 +-9.057 2.614 -1.811 0 0 0 0 0 0 0 +-9.074 2.589 -1.813 0 0 0 0 0 0 0 +-9.073 2.557 -1.811 0 0 0 0 0 0 0 +-9.094 2.533 -1.814 0 0 0 0 0 0 0 +-9.104 2.505 -1.814 0 0 0 0 0 0 0 +-9.106 2.49 -1.814 0 0 0 0 0 0 0 +-9.114 2.461 -1.814 0 0 0 0 0 0 0 +-9.123 2.433 -1.814 0 0 0 0 0 0 0 +-9.144 2.408 -1.817 0 0 0 0 0 0 0 +-9.152 2.379 -1.817 0 0 0 0 0 0 0 +-9.154 2.349 -1.816 0 0 0 0 0 0 0 +-9.155 2.319 -1.815 0 0 0 0 0 0 0 +-9.195 2.313 -1.822 0 0 0 0 0 0 0 +-7.051 1.744 -1.367 0 0 0 0 0 0 0 +-7.049 1.72 -1.365 0 0 0 0 0 0 0 +-7.054 1.698 -1.365 0 0 0 0 0 0 0 +-7.035 1.67 -1.36 0 0 0 0 0 0 0 +-6.843 1.544 -1.316 0 0 0 0 0 0 0 +-6.828 1.518 -1.312 0 0 0 0 0 0 0 +-6.806 1.491 -1.306 0 0 0 0 0 0 0 +-6.807 1.469 -1.305 0 0 0 0 0 0 0 +-6.81 1.447 -1.305 0 0 0 0 0 0 0 +-6.801 1.423 -1.302 0 0 0 0 0 0 0 +-6.807 1.413 -1.303 0 0 0 0 0 0 0 +-6.804 1.39 -1.301 0 0 0 0 0 0 0 +-6.804 1.368 -1.301 0 0 0 0 0 0 0 +-6.805 1.345 -1.3 0 0 0 0 0 0 0 +-6.799 1.322 -1.298 0 0 0 0 0 0 0 +-6.803 1.301 -1.298 0 0 0 0 0 0 0 +-6.794 1.277 -1.295 0 0 0 0 0 0 0 +-6.804 1.268 -1.297 0 0 0 0 0 0 0 +-6.813 1.247 -1.298 0 0 0 0 0 0 0 +-6.802 1.223 -1.295 0 0 0 0 0 0 0 +-6.827 1.206 -1.299 0 0 0 0 0 0 0 +-6.819 1.182 -1.297 0 0 0 0 0 0 0 +-6.819 1.16 -1.296 0 0 0 0 0 0 0 +-6.83 1.14 -1.297 0 0 0 0 0 0 0 +-6.828 1.128 -1.297 0 0 0 0 0 0 0 +-6.849 1.11 -1.3 0 0 0 0 0 0 0 +-6.864 1.09 -1.303 0 0 0 0 0 0 0 +-6.831 1.063 -1.295 0 0 0 0 0 0 0 +-6.832 1.041 -1.295 0 0 0 0 0 0 0 +-6.837 1.02 -1.295 0 0 0 0 0 0 0 +-6.864 1.002 -1.3 0 0 0 0 0 0 0 +-6.842 0.977 -1.295 0 0 0 0 0 0 0 +-6.855 0.968 -1.297 0 0 0 0 0 0 0 +-6.8 0.938 -1.285 0 0 0 0 0 0 0 +-6.845 0.922 -1.294 0 0 0 0 0 0 0 +-6.817 0.897 -1.287 0 0 0 0 0 0 0 +-6.841 0.878 -1.292 0 0 0 0 0 0 0 +-6.813 0.852 -1.285 0 0 0 0 0 0 0 +-6.841 0.834 -1.291 0 0 0 0 0 0 0 +-6.815 0.82 -1.285 0 0 0 0 0 0 0 +-6.907 0.81 -1.303 0 0 0 0 0 0 0 +-6.849 0.781 -1.291 0 0 0 0 0 0 0 +-6.828 0.757 -1.286 0 0 0 0 0 0 0 +-6.854 0.738 -1.291 0 0 0 0 0 0 0 +-6.885 0.719 -1.297 0 0 0 0 0 0 0 +-6.925 0.702 -1.305 0 0 0 0 0 0 0 +-6.95 0.682 -1.309 0 0 0 0 0 0 0 +-6.943 0.671 -1.308 0 0 0 0 0 0 0 +-6.924 0.647 -1.303 0 0 0 0 0 0 0 +-6.973 0.629 -1.313 0 0 0 0 0 0 0 +-6.961 0.606 -1.31 0 0 0 0 0 0 0 +-6.963 0.584 -1.31 0 0 0 0 0 0 0 +-6.969 0.563 -1.311 0 0 0 0 0 0 0 +-6.978 0.541 -1.313 0 0 0 0 0 0 0 +-6.975 0.53 -1.312 0 0 0 0 0 0 0 +-6.84 0.498 -1.284 0 0 0 0 0 0 0 +-6.992 0.487 -1.315 0 0 0 0 0 0 0 +-6.982 0.465 -1.312 0 0 0 0 0 0 0 +-7.024 0.445 -1.321 0 0 0 0 0 0 0 +-7.053 0.425 -1.326 0 0 0 0 0 0 0 +-7.068 0.404 -1.329 0 0 0 0 0 0 0 +-7.096 0.394 -1.335 0 0 0 0 0 0 0 +-7.119 0.373 -1.339 0 0 0 0 0 0 0 +-7.141 0.352 -1.344 0 0 0 0 0 0 0 +-7.115 0.328 -1.338 0 0 0 0 0 0 0 +-7.122 0.306 -1.339 0 0 0 0 0 0 0 +-7.125 0.284 -1.34 0 0 0 0 0 0 0 +-7.198 0.264 -1.354 0 0 0 0 0 0 0 +-7.255 0.255 -1.366 0 0 0 0 0 0 0 +-7.234 0.232 -1.362 0 0 0 0 0 0 0 +-7.274 0.21 -1.37 0 0 0 0 0 0 0 +-7.361 0.19 -1.387 0 0 0 0 0 0 0 +-7.305 0.165 -1.376 0 0 0 0 0 0 0 +-7.315 0.142 -1.378 0 0 0 0 0 0 0 +-7.363 0.12 -1.387 0 0 0 0 0 0 0 +-7.371 0.109 -1.389 0 0 0 0 0 0 0 +-7.392 0.086 -1.393 0 0 0 0 0 0 0 +-9.436 0.088 -1.813 0 0 0 0 0 0 0 +-9.436 0.058 -1.813 0 0 0 0 0 0 0 +-9.43 0.028 -1.812 0 0 0 0 0 0 0 +-9.429 -0.001 -1.811 0 0 0 0 0 0 0 +-9.438 -0.031 -1.813 0 0 0 0 0 0 0 +-9.432 -0.061 -1.812 0 0 0 0 0 0 0 +-9.446 -0.076 -1.815 0 0 0 0 0 0 0 +-9.44 -0.105 -1.814 0 0 0 0 0 0 0 +-9.43 -0.135 -1.812 0 0 0 0 0 0 0 +-9.425 -0.164 -1.811 0 0 0 0 0 0 0 +-9.427 -0.194 -1.811 0 0 0 0 0 0 0 +-9.434 -0.224 -1.813 0 0 0 0 0 0 0 +-9.441 -0.254 -1.815 0 0 0 0 0 0 0 +-9.427 -0.268 -1.812 0 0 0 0 0 0 0 +-9.424 -0.298 -1.811 0 0 0 0 0 0 0 +-9.444 -0.328 -1.816 0 0 0 0 0 0 0 +-9.416 -0.357 -1.81 0 0 0 0 0 0 0 +-9.425 -0.387 -1.812 0 0 0 0 0 0 0 +-9.427 -0.416 -1.813 0 0 0 0 0 0 0 +-9.432 -0.446 -1.814 0 0 0 0 0 0 0 +-9.427 -0.461 -1.813 0 0 0 0 0 0 0 +-9.42 -0.49 -1.812 0 0 0 0 0 0 0 +-9.42 -0.52 -1.813 0 0 0 0 0 0 0 +-9.424 -0.55 -1.814 0 0 0 0 0 0 0 +-9.422 -0.579 -1.814 0 0 0 0 0 0 0 +-9.426 -0.609 -1.815 0 0 0 0 0 0 0 +-9.432 -0.639 -1.817 0 0 0 0 0 0 0 +-9.408 -0.653 -1.812 0 0 0 0 0 0 0 +-9.416 -0.683 -1.814 0 0 0 0 0 0 0 +-9.425 -0.713 -1.816 0 0 0 0 0 0 0 +-10.026 -0.789 -1.94 0 0 0 0 0 0 0 +-10.022 -0.82 -1.94 0 0 0 0 0 0 0 +-10.015 -0.851 -1.939 0 0 0 0 0 0 0 +-10.017 -0.883 -1.94 0 0 0 0 0 0 0 +-10.025 -0.916 -1.942 0 0 0 0 0 0 0 +-10.013 -0.946 -1.94 0 0 0 0 0 0 0 +-10.015 -0.962 -1.941 0 0 0 0 0 0 0 +-10.014 -0.994 -1.942 0 0 0 0 0 0 0 +-10.001 -1.024 -1.94 0 0 0 0 0 0 0 +-10.006 -1.057 -1.941 0 0 0 0 0 0 0 +-9.987 -1.086 -1.938 0 0 0 0 0 0 0 +-9.995 -1.119 -1.94 0 0 0 0 0 0 0 +-9.993 -1.151 -1.941 0 0 0 0 0 0 0 +-9.993 -1.167 -1.941 0 0 0 0 0 0 0 +-9.99 -1.198 -1.941 0 0 0 0 0 0 0 +-9.992 -1.23 -1.942 0 0 0 0 0 0 0 +-9.99 -1.262 -1.943 0 0 0 0 0 0 0 +-9.988 -1.293 -1.943 0 0 0 0 0 0 0 +-9.972 -1.323 -1.941 0 0 0 0 0 0 0 +-9.964 -1.354 -1.94 0 0 0 0 0 0 0 +-9.96 -1.369 -1.94 0 0 0 0 0 0 0 +-9.961 -1.402 -1.941 0 0 0 0 0 0 0 +-9.953 -1.432 -1.94 0 0 0 0 0 0 0 +-9.952 -1.464 -1.941 0 0 0 0 0 0 0 +-9.944 -1.495 -1.94 0 0 0 0 0 0 0 +-9.923 -1.524 -1.937 0 0 0 0 0 0 0 +-9.928 -1.556 -1.939 0 0 0 0 0 0 0 +-9.928 -1.572 -1.939 0 0 0 0 0 0 0 +-9.927 -1.604 -1.94 0 0 0 0 0 0 0 +-9.927 -1.636 -1.941 0 0 0 0 0 0 0 +-9.911 -1.665 -1.939 0 0 0 0 0 0 0 +-9.901 -1.696 -1.938 0 0 0 0 0 0 0 +-9.902 -1.728 -1.939 0 0 0 0 0 0 0 +-9.883 -1.757 -1.936 0 0 0 0 0 0 0 +-9.884 -1.773 -1.937 0 0 0 0 0 0 0 +-9.888 -1.806 -1.939 0 0 0 0 0 0 0 +-9.869 -1.834 -1.936 0 0 0 0 0 0 0 +-9.871 -1.867 -1.938 0 0 0 0 0 0 0 +-9.871 -1.899 -1.939 0 0 0 0 0 0 0 +-9.861 -1.929 -1.938 0 0 0 0 0 0 0 +-9.853 -1.96 -1.938 0 0 0 0 0 0 0 +-9.854 -1.992 -1.94 0 0 0 0 0 0 0 +-9.838 -2.005 -1.937 0 0 0 0 0 0 0 +-9.833 -2.036 -1.937 0 0 0 0 0 0 0 +-9.827 -2.067 -1.937 0 0 0 0 0 0 0 +-9.822 -2.098 -1.938 0 0 0 0 0 0 0 +-9.817 -2.13 -1.938 0 0 0 0 0 0 0 +-9.811 -2.16 -1.938 0 0 0 0 0 0 0 +-9.804 -2.191 -1.938 0 0 0 0 0 0 0 +-9.789 -2.204 -1.936 0 0 0 0 0 0 0 +-9.791 -2.237 -1.938 0 0 0 0 0 0 0 +-9.782 -2.267 -1.937 0 0 0 0 0 0 0 +-9.762 -2.295 -1.934 0 0 0 0 0 0 0 +-9.768 -2.329 -1.937 0 0 0 0 0 0 0 +-9.751 -2.357 -1.935 0 0 0 0 0 0 0 +-9.728 -2.384 -1.932 0 0 0 0 0 0 0 +-9.738 -2.403 -1.935 0 0 0 0 0 0 0 +-9.732 -2.434 -1.935 0 0 0 0 0 0 0 +-9.704 -2.459 -1.931 0 0 0 0 0 0 0 +-9.715 -2.494 -1.935 0 0 0 0 0 0 0 +-9.705 -2.524 -1.934 0 0 0 0 0 0 0 +-9.697 -2.555 -1.934 0 0 0 0 0 0 0 +-9.691 -2.586 -1.935 0 0 0 0 0 0 0 +-9.696 -2.603 -1.937 0 0 0 0 0 0 0 +-9.675 -2.63 -1.934 0 0 0 0 0 0 0 +-9.659 -2.659 -1.932 0 0 0 0 0 0 0 +-9.662 -2.692 -1.935 0 0 0 0 0 0 0 +-9.65 -2.721 -1.934 0 0 0 0 0 0 0 +-9.651 -2.754 -1.936 0 0 0 0 0 0 0 +-9.642 -2.785 -1.936 0 0 0 0 0 0 0 +-9.609 -2.792 -1.93 0 0 0 0 0 0 0 +-9.627 -2.829 -1.936 0 0 0 0 0 0 0 +-9.62 -2.86 -1.936 0 0 0 0 0 0 0 +-9.599 -2.887 -1.934 0 0 0 0 0 0 0 +-9.601 -2.921 -1.936 0 0 0 0 0 0 0 +-9.583 -2.948 -1.934 0 0 0 0 0 0 0 +-9.564 -2.975 -1.932 0 0 0 0 0 0 0 +-9.576 -2.995 -1.936 0 0 0 0 0 0 0 +-9.574 -3.028 -1.937 0 0 0 0 0 0 0 +-9.552 -3.054 -1.934 0 0 0 0 0 0 0 +-9.54 -3.083 -1.934 0 0 0 0 0 0 0 +-9.54 -3.116 -1.936 0 0 0 0 0 0 0 +-9.519 -3.142 -1.934 0 0 0 0 0 0 0 +-9.522 -3.177 -1.936 0 0 0 0 0 0 0 +-9.495 -3.184 -1.932 0 0 0 0 0 0 0 +-9.492 -3.216 -1.933 0 0 0 0 0 0 0 +-9.474 -3.244 -1.932 0 0 0 0 0 0 0 +-9.46 -3.272 -1.931 0 0 0 0 0 0 0 +-9.448 -3.301 -1.93 0 0 0 0 0 0 0 +-9.421 -3.325 -1.927 0 0 0 0 0 0 0 +-9.4 -3.351 -1.924 0 0 0 0 0 0 0 +-9.374 -3.375 -1.921 0 0 0 0 0 0 0 +-9.369 -3.39 -1.921 0 0 0 0 0 0 0 +-9.345 -3.414 -1.918 0 0 0 0 0 0 0 +-9.333 -3.443 -1.918 0 0 0 0 0 0 0 +-9.322 -3.472 -1.918 0 0 0 0 0 0 0 +-9.307 -3.5 -1.917 0 0 0 0 0 0 0 +-9.278 -3.523 -1.913 0 0 0 0 0 0 0 +-9.261 -3.55 -1.912 0 0 0 0 0 0 0 +-9.254 -3.564 -1.911 0 0 0 0 0 0 0 +-9.25 -3.595 -1.913 0 0 0 0 0 0 0 +-9.226 -3.619 -1.91 0 0 0 0 0 0 0 +-9.229 -3.654 -1.913 0 0 0 0 0 0 0 +-9.201 -3.677 -1.91 0 0 0 0 0 0 0 +-9.18 -3.702 -1.908 0 0 0 0 0 0 0 +-9.165 -3.729 -1.907 0 0 0 0 0 0 0 +-9.156 -3.742 -1.906 0 0 0 0 0 0 0 +-9.149 -3.773 -1.907 0 0 0 0 0 0 0 +-9.127 -3.797 -1.905 0 0 0 0 0 0 0 +-9.109 -3.824 -1.904 0 0 0 0 0 0 0 +-9.074 -3.843 -1.899 0 0 0 0 0 0 0 +-9.067 -3.873 -1.9 0 0 0 0 0 0 0 +-9.038 -3.895 -1.896 0 0 0 0 0 0 0 +-9.036 -3.911 -1.897 0 0 0 0 0 0 0 +-9.007 -3.932 -1.893 0 0 0 0 0 0 0 +-9.009 -3.966 -1.897 0 0 0 0 0 0 0 +-8.974 -3.984 -1.891 0 0 0 0 0 0 0 +-8.968 -4.016 -1.893 0 0 0 0 0 0 0 +-8.943 -4.038 -1.89 0 0 0 0 0 0 0 +-8.925 -4.064 -1.889 0 0 0 0 0 0 0 +-8.917 -4.077 -1.889 0 0 0 0 0 0 0 +-8.9 -4.104 -1.888 0 0 0 0 0 0 0 +-8.886 -4.131 -1.887 0 0 0 0 0 0 0 +-8.862 -4.154 -1.885 0 0 0 0 0 0 0 +-8.854 -4.184 -1.886 0 0 0 0 0 0 0 +-8.821 -4.203 -1.882 0 0 0 0 0 0 0 +-8.805 -4.229 -1.881 0 0 0 0 0 0 0 +-8.791 -4.239 -1.879 0 0 0 0 0 0 0 +-8.771 -4.263 -1.878 0 0 0 0 0 0 0 +-8.761 -4.292 -1.878 0 0 0 0 0 0 0 +-8.737 -4.315 -1.876 0 0 0 0 0 0 0 +-8.714 -4.338 -1.874 0 0 0 0 0 0 0 +-8.692 -4.361 -1.872 0 0 0 0 0 0 0 +-8.685 -4.392 -1.874 0 0 0 0 0 0 0 +-8.666 -4.399 -1.871 0 0 0 0 0 0 0 +-8.645 -4.423 -1.869 0 0 0 0 0 0 0 +-8.64 -4.454 -1.871 0 0 0 0 0 0 0 +-8.605 -4.471 -1.866 0 0 0 0 0 0 0 +-8.592 -4.499 -1.867 0 0 0 0 0 0 0 +-8.577 -4.525 -1.866 0 0 0 0 0 0 0 +-8.566 -4.553 -1.867 0 0 0 0 0 0 0 +-8.567 -4.571 -1.869 0 0 0 0 0 0 0 +-8.536 -4.589 -1.865 0 0 0 0 0 0 0 +-8.513 -4.611 -1.863 0 0 0 0 0 0 0 +-8.515 -4.647 -1.867 0 0 0 0 0 0 0 +-8.492 -4.669 -1.865 0 0 0 0 0 0 0 +-8.47 -4.692 -1.864 0 0 0 0 0 0 0 +-8.457 -4.72 -1.864 0 0 0 0 0 0 0 +-8.441 -4.728 -1.862 0 0 0 0 0 0 0 +-8.428 -4.756 -1.862 0 0 0 0 0 0 0 +-8.418 -4.785 -1.864 0 0 0 0 0 0 0 +-8.384 -4.801 -1.859 0 0 0 0 0 0 0 +-8.369 -4.827 -1.859 0 0 0 0 0 0 0 +-8.358 -4.855 -1.86 0 0 0 0 0 0 0 +-8.347 -4.885 -1.861 0 0 0 0 0 0 0 +-8.329 -4.909 -1.86 0 0 0 0 0 0 0 +-8.314 -4.918 -1.859 0 0 0 0 0 0 0 +-8.302 -4.946 -1.86 0 0 0 0 0 0 0 +-8.285 -4.971 -1.859 0 0 0 0 0 0 0 +-8.266 -4.995 -1.858 0 0 0 0 0 0 0 +-8.25 -5.021 -1.858 0 0 0 0 0 0 0 +-8.227 -5.043 -1.857 0 0 0 0 0 0 0 +-8.212 -5.069 -1.857 0 0 0 0 0 0 0 +-8.204 -5.081 -1.857 0 0 0 0 0 0 0 +-8.183 -5.104 -1.856 0 0 0 0 0 0 0 +-8.157 -5.124 -1.853 0 0 0 0 0 0 0 +-8.142 -5.15 -1.854 0 0 0 0 0 0 0 +-8.126 -5.176 -1.854 0 0 0 0 0 0 0 +-8.106 -5.199 -1.853 0 0 0 0 0 0 0 +-8.082 -5.219 -1.851 0 0 0 0 0 0 0 +-8.07 -5.23 -1.85 0 0 0 0 0 0 0 +-8.05 -5.253 -1.849 0 0 0 0 0 0 0 +-8.029 -5.275 -1.848 0 0 0 0 0 0 0 +-8.016 -5.303 -1.849 0 0 0 0 0 0 0 +-7.996 -5.325 -1.848 0 0 0 0 0 0 0 +-7.974 -5.347 -1.847 0 0 0 0 0 0 0 +-7.951 -5.368 -1.845 0 0 0 0 0 0 0 +-7.945 -5.383 -1.846 0 0 0 0 0 0 0 +-7.928 -5.408 -1.846 0 0 0 0 0 0 0 +-7.907 -5.429 -1.845 0 0 0 0 0 0 0 +-7.883 -5.45 -1.843 0 0 0 0 0 0 0 +-7.864 -5.473 -1.843 0 0 0 0 0 0 0 +-7.855 -5.503 -1.845 0 0 0 0 0 0 0 +-7.838 -5.528 -1.845 0 0 0 0 0 0 0 +-7.811 -5.528 -1.84 0 0 0 0 0 0 0 +-7.792 -5.551 -1.84 0 0 0 0 0 0 0 +-7.769 -5.571 -1.838 0 0 0 0 0 0 0 +-7.767 -5.607 -1.842 0 0 0 0 0 0 0 +-7.746 -5.629 -1.841 0 0 0 0 0 0 0 +-7.727 -5.652 -1.841 0 0 0 0 0 0 0 +-7.703 -5.672 -1.839 0 0 0 0 0 0 0 +-7.689 -5.681 -1.838 0 0 0 0 0 0 0 +-7.682 -5.713 -1.841 0 0 0 0 0 0 0 +-7.661 -5.735 -1.84 0 0 0 0 0 0 0 +-7.638 -5.755 -1.839 0 0 0 0 0 0 0 +-7.623 -5.781 -1.84 0 0 0 0 0 0 0 +-7.61 -5.809 -1.841 0 0 0 0 0 0 0 +-7.59 -5.832 -1.841 0 0 0 0 0 0 0 +-7.584 -5.846 -1.841 0 0 0 0 0 0 0 +-7.569 -5.872 -1.842 0 0 0 0 0 0 0 +-7.547 -5.893 -1.841 0 0 0 0 0 0 0 +-7.532 -5.92 -1.842 0 0 0 0 0 0 0 +-7.516 -5.946 -1.843 0 0 0 0 0 0 0 +-7.494 -5.967 -1.842 0 0 0 0 0 0 0 +-7.469 -5.985 -1.841 0 0 0 0 0 0 0 +-7.461 -6.017 -1.843 0 0 0 0 0 0 0 +-7.447 -6.025 -1.842 0 0 0 0 0 0 0 +-7.43 -6.05 -1.843 0 0 0 0 0 0 0 +-7.414 -6.076 -1.843 0 0 0 0 0 0 0 +-7.39 -6.095 -1.842 0 0 0 0 0 0 0 +-7.362 -6.111 -1.84 0 0 0 0 0 0 0 +-7.342 -6.134 -1.84 0 0 0 0 0 0 0 +-7.329 -6.162 -1.841 0 0 0 0 0 0 0 +-7.327 -6.18 -1.843 0 0 0 0 0 0 0 +-7.297 -6.194 -1.841 0 0 0 0 0 0 0 +-7.288 -6.226 -1.843 0 0 0 0 0 0 0 +-7.274 -6.254 -1.845 0 0 0 0 0 0 0 +-7.25 -6.273 -1.844 0 0 0 0 0 0 0 +-7.229 -6.294 -1.843 0 0 0 0 0 0 0 +-7.211 -6.318 -1.844 0 0 0 0 0 0 0 +-7.207 -6.335 -1.845 0 0 0 0 0 0 0 +-7.184 -6.355 -1.845 0 0 0 0 0 0 0 +-7.173 -6.385 -1.847 0 0 0 0 0 0 0 +-7.141 -6.397 -1.844 0 0 0 0 0 0 0 +-7.129 -6.427 -1.846 0 0 0 0 0 0 0 +-7.112 -6.452 -1.847 0 0 0 0 0 0 0 +-7.102 -6.484 -1.85 0 0 0 0 0 0 0 +-7.079 -6.483 -1.846 0 0 0 0 0 0 0 +-7.067 -6.513 -1.849 0 0 0 0 0 0 0 +-7.055 -6.544 -1.851 0 0 0 0 0 0 0 +-7.047 -6.578 -1.855 0 0 0 0 0 0 0 +-7.011 -6.585 -1.85 0 0 0 0 0 0 0 +-7.002 -6.618 -1.854 0 0 0 0 0 0 0 +-6.955 -6.615 -1.846 0 0 0 0 0 0 0 +-6.952 -6.633 -1.848 0 0 0 0 0 0 0 +-6.955 -6.678 -1.855 0 0 0 0 0 0 0 +-6.913 -6.679 -1.849 0 0 0 0 0 0 0 +-6.898 -6.707 -1.851 0 0 0 0 0 0 0 +-6.874 -6.725 -1.85 0 0 0 0 0 0 0 +-6.829 -6.724 -1.843 0 0 0 0 0 0 0 +-6.83 -6.767 -1.849 0 0 0 0 0 0 0 +-6.803 -6.761 -1.845 0 0 0 0 0 0 0 +-6.774 -6.776 -1.843 0 0 0 0 0 0 0 +-6.747 -6.791 -1.841 0 0 0 0 0 0 0 +-6.718 -6.804 -1.839 0 0 0 0 0 0 0 +-6.698 -6.827 -1.839 0 0 0 0 0 0 0 +-6.675 -6.846 -1.839 0 0 0 0 0 0 0 +-6.653 -6.867 -1.839 0 0 0 0 0 0 0 +-6.632 -6.866 -1.835 0 0 0 0 0 0 0 +-6.614 -6.892 -1.837 0 0 0 0 0 0 0 +-6.583 -6.902 -1.834 0 0 0 0 0 0 0 +-6.571 -6.933 -1.837 0 0 0 0 0 0 0 +-6.541 -6.945 -1.834 0 0 0 0 0 0 0 +-6.519 -6.966 -1.834 0 0 0 0 0 0 0 +-6.494 -6.983 -1.833 0 0 0 0 0 0 0 +-6.471 -7.002 -1.833 0 0 0 0 0 0 0 +-6.461 -7.014 -1.833 0 0 0 0 0 0 0 +-6.441 -7.035 -1.834 0 0 0 0 0 0 0 +-6.43 -7.069 -1.837 0 0 0 0 0 0 0 +-6.399 -7.079 -1.835 0 0 0 0 0 0 0 +-6.378 -7.1 -1.835 0 0 0 0 0 0 0 +-6.354 -7.119 -1.835 0 0 0 0 0 0 0 +-6.327 -7.133 -1.833 0 0 0 0 0 0 0 +-6.309 -7.135 -1.831 0 0 0 0 0 0 0 +-6.297 -7.167 -1.834 0 0 0 0 0 0 0 +-6.26 -7.17 -1.83 0 0 0 0 0 0 0 +-6.254 -7.209 -1.835 0 0 0 0 0 0 0 +-6.214 -7.208 -1.829 0 0 0 0 0 0 0 +-6.188 -7.225 -1.829 0 0 0 0 0 0 0 +-6.17 -7.249 -1.83 0 0 0 0 0 0 0 +-6.17 -7.272 -1.833 0 0 0 0 0 0 0 +-6.14 -7.283 -1.831 0 0 0 0 0 0 0 +-6.114 -7.298 -1.83 0 0 0 0 0 0 0 +-6.096 -7.323 -1.832 0 0 0 0 0 0 0 +-6.065 -7.333 -1.829 0 0 0 0 0 0 0 +-6.052 -7.365 -1.833 0 0 0 0 0 0 0 +-6.025 -7.379 -1.831 0 0 0 0 0 0 0 +-6.017 -7.393 -1.833 0 0 0 0 0 0 0 +-5.995 -7.413 -1.833 0 0 0 0 0 0 0 +-5.972 -7.432 -1.833 0 0 0 0 0 0 0 +-5.943 -7.443 -1.831 0 0 0 0 0 0 0 +-5.915 -7.457 -1.83 0 0 0 0 0 0 0 +-5.89 -7.473 -1.829 0 0 0 0 0 0 0 +-5.872 -7.499 -1.831 0 0 0 0 0 0 0 +-5.862 -7.51 -1.831 0 0 0 0 0 0 0 +-5.84 -7.531 -1.832 0 0 0 0 0 0 0 +-5.808 -7.539 -1.829 0 0 0 0 0 0 0 +-5.786 -7.558 -1.83 0 0 0 0 0 0 0 +-5.767 -7.583 -1.831 0 0 0 0 0 0 0 +-5.748 -7.607 -1.833 0 0 0 0 0 0 0 +-5.728 -7.631 -1.835 0 0 0 0 0 0 0 +-5.715 -7.639 -1.834 0 0 0 0 0 0 0 +-5.683 -7.646 -1.831 0 0 0 0 0 0 0 +-5.676 -7.687 -1.837 0 0 0 0 0 0 0 +-5.674 -7.735 -1.845 0 0 0 0 0 0 0 +-5.565 -7.686 -1.824 0 0 0 0 0 0 0 +-5.542 -7.705 -1.824 0 0 0 0 0 0 0 +-5.513 -7.692 -1.819 0 0 0 0 0 0 0 +-5.474 -7.689 -1.813 0 0 0 0 0 0 0 +-5.443 -7.696 -1.811 0 0 0 0 0 0 0 +-5.42 -7.715 -1.811 0 0 0 0 0 0 0 +-5.388 -7.721 -1.808 0 0 0 0 0 0 0 +-5.363 -7.736 -1.808 0 0 0 0 0 0 0 +-5.338 -7.753 -1.808 0 0 0 0 0 0 0 +-5.33 -7.766 -1.809 0 0 0 0 0 0 0 +-5.301 -7.776 -1.808 0 0 0 0 0 0 0 +-5.273 -7.788 -1.806 0 0 0 0 0 0 0 +-5.245 -7.799 -1.805 0 0 0 0 0 0 0 +-5.229 -7.829 -1.808 0 0 0 0 0 0 0 +-5.204 -7.844 -1.808 0 0 0 0 0 0 0 +-5.169 -7.845 -1.804 0 0 0 0 0 0 0 +-5.162 -7.862 -1.806 0 0 0 0 0 0 0 +-5.128 -7.863 -1.803 0 0 0 0 0 0 0 +-5.105 -7.882 -1.804 0 0 0 0 0 0 0 +-5.082 -7.9 -1.804 0 0 0 0 0 0 0 +-5.056 -7.914 -1.804 0 0 0 0 0 0 0 +-5.03 -7.928 -1.803 0 0 0 0 0 0 0 +-5.005 -7.944 -1.803 0 0 0 0 0 0 0 +-4.985 -7.941 -1.8 0 0 0 0 0 0 0 +-4.957 -7.951 -1.799 0 0 0 0 0 0 0 +-4.931 -7.965 -1.799 0 0 0 0 0 0 0 +-4.907 -7.982 -1.799 0 0 0 0 0 0 0 +-4.878 -7.991 -1.798 0 0 0 0 0 0 0 +-4.853 -8.006 -1.798 0 0 0 0 0 0 0 +-4.824 -8.016 -1.796 0 0 0 0 0 0 0 +-4.808 -8.017 -1.795 0 0 0 0 0 0 0 +-4.78 -8.029 -1.794 0 0 0 0 0 0 0 +-4.757 -8.047 -1.795 0 0 0 0 0 0 0 +-4.731 -8.06 -1.794 0 0 0 0 0 0 0 +-4.711 -8.084 -1.796 0 0 0 0 0 0 0 +-4.684 -8.097 -1.796 0 0 0 0 0 0 0 +-4.658 -8.11 -1.796 0 0 0 0 0 0 0 +-4.644 -8.115 -1.795 0 0 0 0 0 0 0 +-4.613 -8.12 -1.793 0 0 0 0 0 0 0 +-4.593 -8.144 -1.795 0 0 0 0 0 0 0 +-4.569 -8.162 -1.796 0 0 0 0 0 0 0 +-4.535 -8.161 -1.792 0 0 0 0 0 0 0 +-4.511 -8.179 -1.793 0 0 0 0 0 0 0 +-4.49 -8.201 -1.795 0 0 0 0 0 0 0 +-4.453 -8.195 -1.79 0 0 0 0 0 0 0 +-4.443 -8.207 -1.792 0 0 0 0 0 0 0 +-4.418 -8.223 -1.792 0 0 0 0 0 0 0 +-4.39 -8.231 -1.791 0 0 0 0 0 0 0 +-4.366 -8.25 -1.792 0 0 0 0 0 0 0 +-4.341 -8.266 -1.792 0 0 0 0 0 0 0 +-4.316 -8.281 -1.793 0 0 0 0 0 0 0 +-4.29 -8.295 -1.793 0 0 0 0 0 0 0 +-4.283 -8.312 -1.795 0 0 0 0 0 0 0 +-4.264 -8.339 -1.798 0 0 0 0 0 0 0 +-4.246 -8.37 -1.802 0 0 0 0 0 0 0 +-4.242 -8.427 -1.813 0 0 0 0 0 0 0 +-4.221 -8.451 -1.815 0 0 0 0 0 0 0 +-4.204 -8.483 -1.819 0 0 0 0 0 0 0 +-4.175 -8.491 -1.818 0 0 0 0 0 0 0 +-4.167 -8.51 -1.821 0 0 0 0 0 0 0 +-4.143 -8.528 -1.822 0 0 0 0 0 0 0 +-4.111 -8.531 -1.82 0 0 0 0 0 0 0 +-4.113 -8.602 -1.833 0 0 0 0 0 0 0 +-4.057 -8.554 -1.819 0 0 0 0 0 0 0 +-4.027 -8.56 -1.818 0 0 0 0 0 0 0 +-3.985 -8.541 -1.81 0 0 0 0 0 0 0 +-3.964 -8.531 -1.807 0 0 0 0 0 0 0 +-3.938 -8.545 -1.807 0 0 0 0 0 0 0 +-3.915 -8.566 -1.809 0 0 0 0 0 0 0 +-3.878 -8.556 -1.804 0 0 0 0 0 0 0 +-3.855 -8.577 -1.806 0 0 0 0 0 0 0 +-3.82 -8.571 -1.802 0 0 0 0 0 0 0 +-3.798 -8.594 -1.804 0 0 0 0 0 0 0 +-3.783 -8.598 -1.804 0 0 0 0 0 0 0 +-3.753 -8.602 -1.802 0 0 0 0 0 0 0 +-3.726 -8.614 -1.802 0 0 0 0 0 0 0 +-3.703 -8.635 -1.804 0 0 0 0 0 0 0 +-3.672 -8.637 -1.802 0 0 0 0 0 0 0 +-3.642 -8.642 -1.801 0 0 0 0 0 0 0 +-3.618 -8.662 -1.803 0 0 0 0 0 0 0 +-3.604 -8.666 -1.802 0 0 0 0 0 0 0 +-3.577 -8.677 -1.802 0 0 0 0 0 0 0 +-3.551 -8.692 -1.803 0 0 0 0 0 0 0 +-3.517 -8.687 -1.8 0 0 0 0 0 0 0 +-3.489 -8.696 -1.799 0 0 0 0 0 0 0 +-3.468 -8.723 -1.803 0 0 0 0 0 0 0 +-3.431 -8.71 -1.798 0 0 0 0 0 0 0 +-3.42 -8.723 -1.799 0 0 0 0 0 0 0 +-3.394 -8.737 -1.8 0 0 0 0 0 0 0 +-3.365 -8.743 -1.799 0 0 0 0 0 0 0 +-3.337 -8.753 -1.799 0 0 0 0 0 0 0 +-3.31 -8.764 -1.799 0 0 0 0 0 0 0 +-3.284 -8.778 -1.8 0 0 0 0 0 0 0 +-3.257 -8.79 -1.8 0 0 0 0 0 0 0 +-3.246 -8.802 -1.802 0 0 0 0 0 0 0 +-3.211 -8.792 -1.797 0 0 0 0 0 0 0 +-3.186 -8.811 -1.799 0 0 0 0 0 0 0 +-3.16 -8.825 -1.8 0 0 0 0 0 0 0 +-3.131 -8.833 -1.8 0 0 0 0 0 0 0 +-3.109 -8.858 -1.803 0 0 0 0 0 0 0 +-3.075 -8.851 -1.799 0 0 0 0 0 0 0 +-3.063 -8.861 -1.8 0 0 0 0 0 0 0 +-3.032 -8.861 -1.798 0 0 0 0 0 0 0 +-3.007 -8.878 -1.8 0 0 0 0 0 0 0 +-2.978 -8.884 -1.799 0 0 0 0 0 0 0 +-2.952 -8.901 -1.801 0 0 0 0 0 0 0 +-2.921 -8.901 -1.799 0 0 0 0 0 0 0 +-2.896 -8.919 -1.801 0 0 0 0 0 0 0 +-2.881 -8.918 -1.8 0 0 0 0 0 0 0 +-2.854 -8.933 -1.801 0 0 0 0 0 0 0 +-2.836 -8.971 -1.807 0 0 0 0 0 0 0 +-2.803 -8.967 -1.804 0 0 0 0 0 0 0 +-2.778 -8.985 -1.806 0 0 0 0 0 0 0 +-2.767 -9.048 -1.818 0 0 0 0 0 0 0 +-2.747 -9.085 -1.824 0 0 0 0 0 0 0 +-2.669 -8.982 -1.799 0 0 0 0 0 0 0 +-2.635 -8.971 -1.795 0 0 0 0 0 0 0 +-2.602 -8.962 -1.792 0 0 0 0 0 0 0 +-2.568 -8.95 -1.787 0 0 0 0 0 0 0 +-2.534 -8.939 -1.783 0 0 0 0 0 0 0 +-2.505 -8.941 -1.782 0 0 0 0 0 0 0 +-2.487 -8.932 -1.779 0 0 0 0 0 0 0 +-2.459 -8.94 -1.779 0 0 0 0 0 0 0 +-2.428 -8.936 -1.777 0 0 0 0 0 0 0 +-2.399 -8.942 -1.776 0 0 0 0 0 0 0 +-2.369 -8.944 -1.775 0 0 0 0 0 0 0 +-2.339 -8.942 -1.773 0 0 0 0 0 0 0 +-2.309 -8.943 -1.772 0 0 0 0 0 0 0 +-2.278 -8.939 -1.769 0 0 0 0 0 0 0 +-2.264 -8.941 -1.769 0 0 0 0 0 0 0 +-2.236 -8.948 -1.769 0 0 0 0 0 0 0 +-2.206 -8.949 -1.768 0 0 0 0 0 0 0 +-2.178 -8.958 -1.768 0 0 0 0 0 0 0 +-2.149 -8.959 -1.767 0 0 0 0 0 0 0 +-2.119 -8.96 -1.766 0 0 0 0 0 0 0 +-2.093 -8.976 -1.768 0 0 0 0 0 0 0 +-2.075 -8.96 -1.764 0 0 0 0 0 0 0 +-2.045 -8.961 -1.763 0 0 0 0 0 0 0 +-2.016 -8.962 -1.761 0 0 0 0 0 0 0 +-1.988 -8.97 -1.762 0 0 0 0 0 0 0 +-1.959 -8.97 -1.761 0 0 0 0 0 0 0 +-1.932 -8.984 -1.762 0 0 0 0 0 0 0 +-1.915 -8.972 -1.759 0 0 0 0 0 0 0 +-1.886 -8.974 -1.758 0 0 0 0 0 0 0 +-1.858 -8.982 -1.759 0 0 0 0 0 0 0 +-1.828 -8.982 -1.757 0 0 0 0 0 0 0 +-1.801 -8.989 -1.758 0 0 0 0 0 0 0 +-1.77 -8.985 -1.756 0 0 0 0 0 0 0 +-1.742 -8.991 -1.756 0 0 0 0 0 0 0 +-1.712 -8.985 -1.753 0 0 0 0 0 0 0 +-1.699 -8.993 -1.755 0 0 0 0 0 0 0 +-1.672 -9.004 -1.756 0 0 0 0 0 0 0 +-1.644 -9.013 -1.757 0 0 0 0 0 0 0 +-1.615 -9.013 -1.755 0 0 0 0 0 0 0 +-1.588 -9.025 -1.757 0 0 0 0 0 0 0 +-1.561 -9.038 -1.759 0 0 0 0 0 0 0 +-1.532 -9.043 -1.759 0 0 0 0 0 0 0 +-1.516 -9.036 -1.757 0 0 0 0 0 0 0 +-1.486 -9.029 -1.754 0 0 0 0 0 0 0 +-1.461 -9.051 -1.758 0 0 0 0 0 0 0 +-1.432 -9.055 -1.758 0 0 0 0 0 0 0 +-1.402 -9.052 -1.756 0 0 0 0 0 0 0 +-1.373 -9.053 -1.755 0 0 0 0 0 0 0 +-1.345 -9.059 -1.756 0 0 0 0 0 0 0 +-1.331 -9.063 -1.756 0 0 0 0 0 0 0 +-1.303 -9.067 -1.756 0 0 0 0 0 0 0 +-1.273 -9.063 -1.755 0 0 0 0 0 0 0 +-1.245 -9.067 -1.755 0 0 0 0 0 0 0 +-1.218 -9.085 -1.757 0 0 0 0 0 0 0 +-1.188 -9.079 -1.755 0 0 0 0 0 0 0 +-1.16 -9.082 -1.755 0 0 0 0 0 0 0 +-1.146 -9.086 -1.756 0 0 0 0 0 0 0 +-1.118 -9.099 -1.758 0 0 0 0 0 0 0 +-1.089 -9.093 -1.756 0 0 0 0 0 0 0 +-1.06 -9.099 -1.756 0 0 0 0 0 0 0 +-1.031 -9.098 -1.755 0 0 0 0 0 0 0 +-1.005 -9.121 -1.759 0 0 0 0 0 0 0 +-0.976 -9.126 -1.76 0 0 0 0 0 0 0 +-0.962 -9.129 -1.76 0 0 0 0 0 0 0 +-0.932 -9.118 -1.757 0 0 0 0 0 0 0 +-0.904 -9.129 -1.759 0 0 0 0 0 0 0 +-0.876 -9.14 -1.761 0 0 0 0 0 0 0 +-0.847 -9.141 -1.76 0 0 0 0 0 0 0 +-0.82 -9.153 -1.762 0 0 0 0 0 0 0 +-0.792 -9.163 -1.764 0 0 0 0 0 0 0 +-0.777 -9.164 -1.764 0 0 0 0 0 0 0 +-0.749 -9.177 -1.766 0 0 0 0 0 0 0 +-0.72 -9.175 -1.765 0 0 0 0 0 0 0 +-0.691 -9.169 -1.763 0 0 0 0 0 0 0 +-0.665 -9.211 -1.771 0 0 0 0 0 0 0 +-0.635 -9.195 -1.768 0 0 0 0 0 0 0 +-0.606 -9.205 -1.769 0 0 0 0 0 0 0 +-0.592 -9.216 -1.771 0 0 0 0 0 0 0 +-0.563 -9.213 -1.771 0 0 0 0 0 0 0 +-0.535 -9.229 -1.773 0 0 0 0 0 0 0 +-0.506 -9.234 -1.774 0 0 0 0 0 0 0 +-0.478 -9.244 -1.776 0 0 0 0 0 0 0 +-0.449 -9.251 -1.777 0 0 0 0 0 0 0 +-0.42 -9.258 -1.778 0 0 0 0 0 0 0 +-0.406 -9.257 -1.778 0 0 0 0 0 0 0 +-0.377 -9.262 -1.779 0 0 0 0 0 0 0 +-0.348 -9.269 -1.78 0 0 0 0 0 0 0 +-0.319 -9.274 -1.781 0 0 0 0 0 0 0 +-0.29 -9.285 -1.783 0 0 0 0 0 0 0 +-0.261 -9.29 -1.784 0 0 0 0 0 0 0 +-0.231 -9.275 -1.78 0 0 0 0 0 0 0 +-0.217 -9.297 -1.785 0 0 0 0 0 0 0 +-0.188 -9.295 -1.784 0 0 0 0 0 0 0 +-0.159 -9.288 -1.783 0 0 0 0 0 0 0 +-0.129 -9.283 -1.782 0 0 0 0 0 0 0 +-0.101 -9.303 -1.786 0 0 0 0 0 0 0 +-0.071 -9.285 -1.782 0 0 0 0 0 0 0 +-0.042 -9.289 -1.783 0 0 0 0 0 0 0 +-0.027 -9.289 -1.783 0 0 0 0 0 0 0 +0.002 -9.291 -1.783 0 0 0 0 0 0 0 +0.031 -9.301 -1.785 0 0 0 0 0 0 0 +0.06 -9.293 -1.784 0 0 0 0 0 0 0 +0.089 -9.297 -1.784 0 0 0 0 0 0 0 +0.119 -9.291 -1.783 0 0 0 0 0 0 0 +0.148 -9.296 -1.784 0 0 0 0 0 0 0 +0.163 -9.312 -1.788 0 0 0 0 0 0 0 +0.192 -9.303 -1.786 0 0 0 0 0 0 0 +0.221 -9.314 -1.788 0 0 0 0 0 0 0 +0.251 -9.321 -1.79 0 0 0 0 0 0 0 +0.28 -9.315 -1.789 0 0 0 0 0 0 0 +0.31 -9.331 -1.792 0 0 0 0 0 0 0 +0.339 -9.34 -1.794 0 0 0 0 0 0 0 +0.353 -9.328 -1.792 0 0 0 0 0 0 0 +0.383 -9.333 -1.793 0 0 0 0 0 0 0 +0.412 -9.327 -1.792 0 0 0 0 0 0 0 +0.441 -9.322 -1.792 0 0 0 0 0 0 0 +0.472 -9.34 -1.796 0 0 0 0 0 0 0 +0.501 -9.333 -1.794 0 0 0 0 0 0 0 +0.53 -9.337 -1.796 0 0 0 0 0 0 0 +0.546 -9.352 -1.799 0 0 0 0 0 0 0 +0.576 -9.36 -1.801 0 0 0 0 0 0 0 +0.605 -9.35 -1.799 0 0 0 0 0 0 0 +0.635 -9.36 -1.802 0 0 0 0 0 0 0 +0.664 -9.354 -1.801 0 0 0 0 0 0 0 +0.693 -9.352 -1.801 0 0 0 0 0 0 0 +0.723 -9.354 -1.802 0 0 0 0 0 0 0 +0.738 -9.36 -1.803 0 0 0 0 0 0 0 +0.768 -9.358 -1.803 0 0 0 0 0 0 0 +0.797 -9.35 -1.802 0 0 0 0 0 0 0 +0.828 -9.367 -1.806 0 0 0 0 0 0 0 +0.857 -9.36 -1.805 0 0 0 0 0 0 0 +0.887 -9.369 -1.808 0 0 0 0 0 0 0 +0.916 -9.364 -1.807 0 0 0 0 0 0 0 +0.946 -9.363 -1.808 0 0 0 0 0 0 0 +0.959 -9.35 -1.805 0 0 0 0 0 0 0 +0.991 -9.368 -1.81 0 0 0 0 0 0 0 +1.021 -9.371 -1.811 0 0 0 0 0 0 0 +1.05 -9.366 -1.81 0 0 0 0 0 0 0 +1.082 -9.38 -1.814 0 0 0 0 0 0 0 +1.112 -9.381 -1.815 0 0 0 0 0 0 0 +1.142 -9.389 -1.817 0 0 0 0 0 0 0 +1.156 -9.377 -1.815 0 0 0 0 0 0 0 +1.187 -9.383 -1.817 0 0 0 0 0 0 0 +1.216 -9.377 -1.817 0 0 0 0 0 0 0 +1.245 -9.37 -1.816 0 0 0 0 0 0 0 +1.277 -9.387 -1.821 0 0 0 0 0 0 0 +1.307 -9.385 -1.821 0 0 0 0 0 0 0 +1.321 -9.381 -1.821 0 0 0 0 0 0 0 +1.352 -9.383 -1.822 0 0 0 0 0 0 0 +1.382 -9.384 -1.823 0 0 0 0 0 0 0 +1.411 -9.376 -1.822 0 0 0 0 0 0 0 +1.442 -9.381 -1.824 0 0 0 0 0 0 0 +1.47 -9.371 -1.823 0 0 0 0 0 0 0 +1.502 -9.378 -1.825 0 0 0 0 0 0 0 +1.533 -9.383 -1.827 0 0 0 0 0 0 0 +1.55 -9.396 -1.831 0 0 0 0 0 0 0 +1.579 -9.391 -1.831 0 0 0 0 0 0 0 +1.61 -9.39 -1.831 0 0 0 0 0 0 0 +1.639 -9.386 -1.832 0 0 0 0 0 0 0 +1.67 -9.389 -1.833 0 0 0 0 0 0 0 +1.702 -9.395 -1.836 0 0 0 0 0 0 0 +1.733 -9.399 -1.838 0 0 0 0 0 0 0 +1.748 -9.399 -1.838 0 0 0 0 0 0 0 +1.778 -9.397 -1.839 0 0 0 0 0 0 0 +1.81 -9.405 -1.842 0 0 0 0 0 0 0 +1.837 -9.382 -1.838 0 0 0 0 0 0 0 +1.868 -9.387 -1.841 0 0 0 0 0 0 0 +1.899 -9.387 -1.842 0 0 0 0 0 0 0 +1.934 -9.408 -1.847 0 0 0 0 0 0 0 +1.947 -9.397 -1.846 0 0 0 0 0 0 0 +1.417 -6.694 -1.28 0 0 0 0 0 0 0 +1.432 -6.663 -1.275 0 0 0 0 0 0 0 +1.449 -6.641 -1.271 0 0 0 0 0 0 0 +1.47 -6.637 -1.271 0 0 0 0 0 0 0 +1.482 -6.592 -1.263 0 0 0 0 0 0 0 +1.48 -6.488 -1.242 0 0 0 0 0 0 0 +1.487 -6.468 -1.238 0 0 0 0 0 0 0 +1.507 -6.463 -1.238 0 0 0 0 0 0 0 +1.523 -6.439 -1.234 0 0 0 0 0 0 0 +1.549 -6.458 -1.239 0 0 0 0 0 0 0 +1.564 -6.434 -1.235 0 0 0 0 0 0 0 +1.591 -6.455 -1.241 0 0 0 0 0 0 0 +1.604 -6.422 -1.235 0 0 0 0 0 0 0 +1.679 -6.682 -1.29 0 0 0 0 0 0 0 +2.384 -9.405 -1.868 0 0 0 0 0 0 0 +2.419 -9.419 -1.872 0 0 0 0 0 0 0 +2.441 -9.381 -1.866 0 0 0 0 0 0 0 +2.466 -9.358 -1.862 0 0 0 0 0 0 0 +2.497 -9.356 -1.864 0 0 0 0 0 0 0 +2.52 -9.323 -1.858 0 0 0 0 0 0 0 +2.532 -9.308 -1.856 0 0 0 0 0 0 0 +2.565 -9.317 -1.86 0 0 0 0 0 0 0 +2.597 -9.316 -1.861 0 0 0 0 0 0 0 +2.624 -9.301 -1.86 0 0 0 0 0 0 0 +2.657 -9.305 -1.862 0 0 0 0 0 0 0 +2.68 -9.274 -1.858 0 0 0 0 0 0 0 +2.705 -9.255 -1.855 0 0 0 0 0 0 0 +2.725 -9.269 -1.859 0 0 0 0 0 0 0 +2.751 -9.248 -1.856 0 0 0 0 0 0 0 +2.781 -9.243 -1.857 0 0 0 0 0 0 0 +2.809 -9.232 -1.857 0 0 0 0 0 0 0 +2.834 -9.21 -1.854 0 0 0 0 0 0 0 +2.865 -9.207 -1.855 0 0 0 0 0 0 0 +2.897 -9.209 -1.858 0 0 0 0 0 0 0 +2.906 -9.186 -1.854 0 0 0 0 0 0 0 +2.939 -9.189 -1.856 0 0 0 0 0 0 0 +2.966 -9.175 -1.855 0 0 0 0 0 0 0 +2.993 -9.16 -1.854 0 0 0 0 0 0 0 +3.021 -9.146 -1.853 0 0 0 0 0 0 0 +3.05 -9.139 -1.854 0 0 0 0 0 0 0 +3.074 -9.114 -1.85 0 0 0 0 0 0 0 +3.086 -9.104 -1.849 0 0 0 0 0 0 0 +3.117 -9.102 -1.851 0 0 0 0 0 0 0 +3.139 -9.071 -1.846 0 0 0 0 0 0 0 +3.165 -9.056 -1.845 0 0 0 0 0 0 0 +3.195 -9.05 -1.846 0 0 0 0 0 0 0 +3.218 -9.025 -1.843 0 0 0 0 0 0 0 +3.24 -8.996 -1.839 0 0 0 0 0 0 0 +3.257 -8.998 -1.84 0 0 0 0 0 0 0 +3.277 -8.966 -1.835 0 0 0 0 0 0 0 +3.303 -8.95 -1.834 0 0 0 0 0 0 0 +3.333 -8.943 -1.835 0 0 0 0 0 0 0 +3.352 -8.911 -1.83 0 0 0 0 0 0 0 +3.38 -8.898 -1.83 0 0 0 0 0 0 0 +3.406 -8.884 -1.829 0 0 0 0 0 0 0 +3.414 -8.862 -1.825 0 0 0 0 0 0 0 +3.442 -8.853 -1.826 0 0 0 0 0 0 0 +3.466 -8.832 -1.823 0 0 0 0 0 0 0 +3.486 -8.801 -1.819 0 0 0 0 0 0 0 +3.517 -8.799 -1.821 0 0 0 0 0 0 0 +3.537 -8.768 -1.817 0 0 0 0 0 0 0 +3.563 -8.755 -1.816 0 0 0 0 0 0 0 +3.571 -8.733 -1.813 0 0 0 0 0 0 0 +3.599 -8.723 -1.813 0 0 0 0 0 0 0 +3.615 -8.685 -1.807 0 0 0 0 0 0 0 +3.644 -8.677 -1.808 0 0 0 0 0 0 0 +3.671 -8.665 -1.808 0 0 0 0 0 0 0 +3.69 -8.634 -1.803 0 0 0 0 0 0 0 +3.711 -8.608 -1.8 0 0 0 0 0 0 0 +3.723 -8.599 -1.799 0 0 0 0 0 0 0 +3.746 -8.578 -1.797 0 0 0 0 0 0 0 +3.772 -8.564 -1.797 0 0 0 0 0 0 0 +3.802 -8.559 -1.798 0 0 0 0 0 0 0 +3.817 -8.521 -1.792 0 0 0 0 0 0 0 +3.843 -8.507 -1.792 0 0 0 0 0 0 0 +3.865 -8.484 -1.79 0 0 0 0 0 0 0 +3.88 -8.481 -1.79 0 0 0 0 0 0 0 +3.902 -8.46 -1.788 0 0 0 0 0 0 0 +3.921 -8.432 -1.785 0 0 0 0 0 0 0 +3.949 -8.421 -1.785 0 0 0 0 0 0 0 +3.968 -8.393 -1.782 0 0 0 0 0 0 0 +3.994 -8.381 -1.782 0 0 0 0 0 0 0 +4.018 -8.363 -1.78 0 0 0 0 0 0 0 +4.025 -8.344 -1.778 0 0 0 0 0 0 0 +4.047 -8.322 -1.776 0 0 0 0 0 0 0 +4.064 -8.292 -1.771 0 0 0 0 0 0 0 +4.091 -8.281 -1.772 0 0 0 0 0 0 0 +4.112 -8.258 -1.769 0 0 0 0 0 0 0 +4.135 -8.239 -1.768 0 0 0 0 0 0 0 +4.159 -8.223 -1.767 0 0 0 0 0 0 0 +4.166 -8.204 -1.765 0 0 0 0 0 0 0 +4.184 -8.175 -1.761 0 0 0 0 0 0 0 +4.209 -8.16 -1.761 0 0 0 0 0 0 0 +4.231 -8.14 -1.759 0 0 0 0 0 0 0 +4.251 -8.116 -1.757 0 0 0 0 0 0 0 +4.276 -8.103 -1.757 0 0 0 0 0 0 0 +4.299 -8.084 -1.755 0 0 0 0 0 0 0 +4.301 -8.057 -1.751 0 0 0 0 0 0 0 +4.324 -8.04 -1.75 0 0 0 0 0 0 0 +4.347 -8.021 -1.749 0 0 0 0 0 0 0 +4.366 -7.997 -1.746 0 0 0 0 0 0 0 +4.389 -7.98 -1.745 0 0 0 0 0 0 0 +4.408 -7.954 -1.743 0 0 0 0 0 0 0 +4.436 -7.945 -1.744 0 0 0 0 0 0 0 +4.442 -7.928 -1.741 0 0 0 0 0 0 0 +4.465 -7.91 -1.741 0 0 0 0 0 0 0 +4.485 -7.888 -1.739 0 0 0 0 0 0 0 +4.508 -7.87 -1.738 0 0 0 0 0 0 0 +4.533 -7.856 -1.738 0 0 0 0 0 0 0 +4.557 -7.84 -1.737 0 0 0 0 0 0 0 +4.576 -7.817 -1.735 0 0 0 0 0 0 0 +4.588 -7.808 -1.735 0 0 0 0 0 0 0 +4.61 -7.791 -1.734 0 0 0 0 0 0 0 +4.635 -7.776 -1.734 0 0 0 0 0 0 0 +4.661 -7.765 -1.735 0 0 0 0 0 0 0 +4.673 -7.73 -1.73 0 0 0 0 0 0 0 +4.696 -7.714 -1.73 0 0 0 0 0 0 0 +4.725 -7.705 -1.731 0 0 0 0 0 0 0 +4.727 -7.681 -1.727 0 0 0 0 0 0 0 +4.753 -7.67 -1.728 0 0 0 0 0 0 0 +4.776 -7.653 -1.728 0 0 0 0 0 0 0 +4.791 -7.623 -1.724 0 0 0 0 0 0 0 +4.813 -7.606 -1.724 0 0 0 0 0 0 0 +4.839 -7.595 -1.724 0 0 0 0 0 0 0 +4.856 -7.568 -1.722 0 0 0 0 0 0 0 +4.876 -7.573 -1.725 0 0 0 0 0 0 0 +4.891 -7.545 -1.722 0 0 0 0 0 0 0 +4.912 -7.524 -1.72 0 0 0 0 0 0 0 +4.93 -7.501 -1.718 0 0 0 0 0 0 0 +4.959 -7.493 -1.72 0 0 0 0 0 0 0 +4.983 -7.478 -1.72 0 0 0 0 0 0 0 +5.005 -7.46 -1.72 0 0 0 0 0 0 0 +5.013 -7.448 -1.719 0 0 0 0 0 0 0 +5.029 -7.421 -1.716 0 0 0 0 0 0 0 +5.051 -7.403 -1.716 0 0 0 0 0 0 0 +5.081 -7.397 -1.718 0 0 0 0 0 0 0 +5.098 -7.371 -1.716 0 0 0 0 0 0 0 +5.116 -7.349 -1.714 0 0 0 0 0 0 0 +5.15 -7.347 -1.718 0 0 0 0 0 0 0 +5.151 -7.325 -1.714 0 0 0 0 0 0 0 +5.175 -7.31 -1.714 0 0 0 0 0 0 0 +5.196 -7.29 -1.714 0 0 0 0 0 0 0 +5.212 -7.264 -1.711 0 0 0 0 0 0 0 +5.24 -7.256 -1.713 0 0 0 0 0 0 0 +5.268 -7.246 -1.715 0 0 0 0 0 0 0 +5.274 -7.207 -1.709 0 0 0 0 0 0 0 +5.287 -7.2 -1.71 0 0 0 0 0 0 0 +5.308 -7.182 -1.709 0 0 0 0 0 0 0 +5.323 -7.154 -1.706 0 0 0 0 0 0 0 +5.347 -7.141 -1.707 0 0 0 0 0 0 0 +5.367 -7.121 -1.706 0 0 0 0 0 0 0 +5.377 -7.087 -1.702 0 0 0 0 0 0 0 +5.406 -7.079 -1.704 0 0 0 0 0 0 0 +5.422 -7.077 -1.706 0 0 0 0 0 0 0 +5.432 -7.044 -1.702 0 0 0 0 0 0 0 +5.45 -7.021 -1.7 0 0 0 0 0 0 0 +5.47 -7.002 -1.7 0 0 0 0 0 0 0 +5.494 -6.987 -1.7 0 0 0 0 0 0 0 +5.52 -6.975 -1.702 0 0 0 0 0 0 0 +5.54 -6.955 -1.701 0 0 0 0 0 0 0 +5.556 -6.93 -1.699 0 0 0 0 0 0 0 +5.571 -6.927 -1.701 0 0 0 0 0 0 0 +5.587 -6.902 -1.699 0 0 0 0 0 0 0 +5.609 -6.885 -1.699 0 0 0 0 0 0 0 +5.624 -6.859 -1.697 0 0 0 0 0 0 0 +5.648 -6.845 -1.697 0 0 0 0 0 0 0 +5.666 -6.822 -1.696 0 0 0 0 0 0 0 +5.697 -6.817 -1.7 0 0 0 0 0 0 0 +5.703 -6.802 -1.698 0 0 0 0 0 0 0 +5.722 -6.781 -1.697 0 0 0 0 0 0 0 +5.739 -6.758 -1.696 0 0 0 0 0 0 0 +5.763 -6.743 -1.697 0 0 0 0 0 0 0 +5.776 -6.716 -1.694 0 0 0 0 0 0 0 +5.805 -6.707 -1.697 0 0 0 0 0 0 0 +5.805 -6.686 -1.693 0 0 0 0 0 0 0 +5.83 -6.672 -1.695 0 0 0 0 0 0 0 +5.847 -6.649 -1.693 0 0 0 0 0 0 0 +5.86 -6.622 -1.691 0 0 0 0 0 0 0 +5.892 -6.615 -1.694 0 0 0 0 0 0 0 +5.906 -6.589 -1.692 0 0 0 0 0 0 0 +5.92 -6.563 -1.69 0 0 0 0 0 0 0 +5.934 -6.559 -1.691 0 0 0 0 0 0 0 +5.952 -6.537 -1.691 0 0 0 0 0 0 0 +5.973 -6.518 -1.691 0 0 0 0 0 0 0 +5.989 -6.495 -1.689 0 0 0 0 0 0 0 +6.004 -6.47 -1.688 0 0 0 0 0 0 0 +6.03 -6.457 -1.689 0 0 0 0 0 0 0 +6.047 -6.435 -1.689 0 0 0 0 0 0 0 +6.053 -6.422 -1.687 0 0 0 0 0 0 0 +6.07 -6.398 -1.686 0 0 0 0 0 0 0 +6.086 -6.375 -1.685 0 0 0 0 0 0 0 +6.11 -6.36 -1.686 0 0 0 0 0 0 0 +6.128 -6.339 -1.686 0 0 0 0 0 0 0 +6.144 -6.316 -1.685 0 0 0 0 0 0 0 +6.16 -6.292 -1.683 0 0 0 0 0 0 0 +6.174 -6.267 -1.682 0 0 0 0 0 0 0 +6.198 -6.272 -1.686 0 0 0 0 0 0 0 +6.212 -6.247 -1.684 0 0 0 0 0 0 0 +6.227 -6.223 -1.683 0 0 0 0 0 0 0 +6.252 -6.209 -1.685 0 0 0 0 0 0 0 +6.268 -6.185 -1.683 0 0 0 0 0 0 0 +6.29 -6.168 -1.684 0 0 0 0 0 0 0 +6.309 -6.148 -1.684 0 0 0 0 0 0 0 +6.313 -6.133 -1.683 0 0 0 0 0 0 0 +6.332 -6.113 -1.683 0 0 0 0 0 0 0 +6.349 -6.09 -1.682 0 0 0 0 0 0 0 +6.372 -6.074 -1.683 0 0 0 0 0 0 0 +6.388 -6.052 -1.682 0 0 0 0 0 0 0 +6.402 -6.026 -1.681 0 0 0 0 0 0 0 +6.428 -6.013 -1.683 0 0 0 0 0 0 0 +6.436 -6.001 -1.682 0 0 0 0 0 0 0 +6.447 -5.974 -1.68 0 0 0 0 0 0 0 +6.472 -5.959 -1.682 0 0 0 0 0 0 0 +6.496 -5.944 -1.683 0 0 0 0 0 0 0 +6.516 -5.925 -1.684 0 0 0 0 0 0 0 +6.532 -5.902 -1.683 0 0 0 0 0 0 0 +6.538 -5.889 -1.682 0 0 0 0 0 0 0 +6.552 -5.865 -1.681 0 0 0 0 0 0 0 +6.571 -5.844 -1.681 0 0 0 0 0 0 0 +6.597 -5.83 -1.683 0 0 0 0 0 0 0 +6.618 -5.812 -1.684 0 0 0 0 0 0 0 +6.632 -5.787 -1.683 0 0 0 0 0 0 0 +6.645 -5.762 -1.681 0 0 0 0 0 0 0 +6.663 -5.741 -1.681 0 0 0 0 0 0 0 +6.669 -5.728 -1.681 0 0 0 0 0 0 0 +6.683 -5.704 -1.679 0 0 0 0 0 0 0 +6.705 -5.686 -1.681 0 0 0 0 0 0 0 +6.723 -5.665 -1.681 0 0 0 0 0 0 0 +6.739 -5.643 -1.68 0 0 0 0 0 0 0 +6.75 -5.615 -1.678 0 0 0 0 0 0 0 +6.769 -5.595 -1.679 0 0 0 0 0 0 0 +6.782 -5.589 -1.68 0 0 0 0 0 0 0 +6.796 -5.565 -1.679 0 0 0 0 0 0 0 +6.817 -5.546 -1.68 0 0 0 0 0 0 0 +6.837 -5.527 -1.681 0 0 0 0 0 0 0 +6.852 -5.503 -1.68 0 0 0 0 0 0 0 +6.86 -5.474 -1.677 0 0 0 0 0 0 0 +6.886 -5.46 -1.68 0 0 0 0 0 0 0 +6.895 -5.449 -1.68 0 0 0 0 0 0 0 +6.912 -5.427 -1.68 0 0 0 0 0 0 0 +6.933 -5.409 -1.681 0 0 0 0 0 0 0 +6.935 -5.375 -1.677 0 0 0 0 0 0 0 +6.955 -5.356 -1.678 0 0 0 0 0 0 0 +6.981 -5.341 -1.68 0 0 0 0 0 0 0 +6.988 -5.312 -1.678 0 0 0 0 0 0 0 +7.008 -5.309 -1.681 0 0 0 0 0 0 0 +7.024 -5.287 -1.681 0 0 0 0 0 0 0 +7.031 -5.258 -1.678 0 0 0 0 0 0 0 +7.056 -5.242 -1.68 0 0 0 0 0 0 0 +7.058 -5.209 -1.677 0 0 0 0 0 0 0 +7.089 -5.197 -1.68 0 0 0 0 0 0 0 +7.09 -5.182 -1.679 0 0 0 0 0 0 0 +7.11 -5.162 -1.679 0 0 0 0 0 0 0 +7.12 -5.135 -1.678 0 0 0 0 0 0 0 +7.142 -5.117 -1.679 0 0 0 0 0 0 0 +7.16 -5.096 -1.68 0 0 0 0 0 0 0 +7.166 -5.066 -1.677 0 0 0 0 0 0 0 +7.203 -5.058 -1.683 0 0 0 0 0 0 0 +7.215 -5.034 -1.682 0 0 0 0 0 0 0 +7.21 -5.013 -1.679 0 0 0 0 0 0 0 +7.236 -4.997 -1.681 0 0 0 0 0 0 0 +7.255 -4.977 -1.682 0 0 0 0 0 0 0 +7.274 -4.956 -1.683 0 0 0 0 0 0 0 +7.296 -4.938 -1.684 0 0 0 0 0 0 0 +7.319 -4.92 -1.686 0 0 0 0 0 0 0 +7.315 -4.884 -1.681 0 0 0 0 0 0 0 +7.333 -4.879 -1.684 0 0 0 0 0 0 0 +7.348 -4.856 -1.684 0 0 0 0 0 0 0 +7.376 -4.842 -1.687 0 0 0 0 0 0 0 +7.391 -4.818 -1.687 0 0 0 0 0 0 0 +7.4 -4.791 -1.685 0 0 0 0 0 0 0 +7.413 -4.767 -1.685 0 0 0 0 0 0 0 +7.422 -4.739 -1.683 0 0 0 0 0 0 0 +7.422 -4.723 -1.682 0 0 0 0 0 0 0 +7.462 -4.716 -1.688 0 0 0 0 0 0 0 +7.472 -4.689 -1.687 0 0 0 0 0 0 0 +7.483 -4.663 -1.686 0 0 0 0 0 0 0 +7.503 -4.643 -1.687 0 0 0 0 0 0 0 +7.517 -4.619 -1.687 0 0 0 0 0 0 0 +7.533 -4.597 -1.687 0 0 0 0 0 0 0 +7.539 -4.584 -1.687 0 0 0 0 0 0 0 +7.55 -4.558 -1.686 0 0 0 0 0 0 0 +7.558 -4.53 -1.685 0 0 0 0 0 0 0 +7.572 -4.507 -1.685 0 0 0 0 0 0 0 +7.583 -4.481 -1.684 0 0 0 0 0 0 0 +7.603 -4.461 -1.685 0 0 0 0 0 0 0 +7.607 -4.431 -1.683 0 0 0 0 0 0 0 +7.623 -4.424 -1.685 0 0 0 0 0 0 0 +7.631 -4.397 -1.684 0 0 0 0 0 0 0 +7.645 -4.373 -1.684 0 0 0 0 0 0 0 +7.655 -4.347 -1.683 0 0 0 0 0 0 0 +7.666 -4.321 -1.682 0 0 0 0 0 0 0 +7.676 -4.295 -1.681 0 0 0 0 0 0 0 +7.686 -4.269 -1.681 0 0 0 0 0 0 0 +7.692 -4.257 -1.681 0 0 0 0 0 0 0 +7.714 -4.238 -1.683 0 0 0 0 0 0 0 +7.721 -4.209 -1.681 0 0 0 0 0 0 0 +7.743 -4.19 -1.683 0 0 0 0 0 0 0 +7.744 -4.159 -1.68 0 0 0 0 0 0 0 +7.764 -4.138 -1.682 0 0 0 0 0 0 0 +7.775 -4.113 -1.681 0 0 0 0 0 0 0 +7.785 -4.103 -1.682 0 0 0 0 0 0 0 +7.808 -4.084 -1.685 0 0 0 0 0 0 0 +7.81 -4.054 -1.682 0 0 0 0 0 0 0 +7.823 -4.029 -1.682 0 0 0 0 0 0 0 +7.846 -4.01 -1.685 0 0 0 0 0 0 0 +7.862 -3.987 -1.685 0 0 0 0 0 0 0 +7.869 -3.96 -1.684 0 0 0 0 0 0 0 +7.876 -3.947 -1.684 0 0 0 0 0 0 0 +7.891 -3.924 -1.685 0 0 0 0 0 0 0 +7.9 -3.898 -1.684 0 0 0 0 0 0 0 +7.918 -3.875 -1.685 0 0 0 0 0 0 0 +7.933 -3.852 -1.686 0 0 0 0 0 0 0 +7.94 -3.825 -1.685 0 0 0 0 0 0 0 +7.947 -3.797 -1.684 0 0 0 0 0 0 0 +7.97 -3.793 -1.688 0 0 0 0 0 0 0 +7.966 -3.761 -1.684 0 0 0 0 0 0 0 +7.983 -3.738 -1.685 0 0 0 0 0 0 0 +7.992 -3.711 -1.685 0 0 0 0 0 0 0 +8.012 -3.69 -1.687 0 0 0 0 0 0 0 +8.029 -3.668 -1.688 0 0 0 0 0 0 0 +8.037 -3.641 -1.687 0 0 0 0 0 0 0 +8.046 -3.63 -1.688 0 0 0 0 0 0 0 +8.05 -3.601 -1.686 0 0 0 0 0 0 0 +8.056 -3.574 -1.685 0 0 0 0 0 0 0 +8.069 -3.549 -1.685 0 0 0 0 0 0 0 +8.091 -3.528 -1.688 0 0 0 0 0 0 0 +8.091 -3.498 -1.685 0 0 0 0 0 0 0 +8.099 -3.471 -1.685 0 0 0 0 0 0 0 +8.108 -3.46 -1.685 0 0 0 0 0 0 0 +8.121 -3.435 -1.686 0 0 0 0 0 0 0 +8.128 -3.408 -1.685 0 0 0 0 0 0 0 +8.144 -3.385 -1.686 0 0 0 0 0 0 0 +8.154 -3.359 -1.686 0 0 0 0 0 0 0 +8.168 -3.335 -1.687 0 0 0 0 0 0 0 +8.177 -3.309 -1.687 0 0 0 0 0 0 0 +8.18 -3.295 -1.686 0 0 0 0 0 0 0 +8.191 -3.27 -1.686 0 0 0 0 0 0 0 +8.206 -3.246 -1.687 0 0 0 0 0 0 0 +8.217 -3.22 -1.687 0 0 0 0 0 0 0 +8.223 -3.193 -1.687 0 0 0 0 0 0 0 +8.229 -3.166 -1.686 0 0 0 0 0 0 0 +8.239 -3.14 -1.686 0 0 0 0 0 0 0 +8.255 -3.131 -1.688 0 0 0 0 0 0 0 +8.263 -3.104 -1.688 0 0 0 0 0 0 0 +8.271 -3.078 -1.687 0 0 0 0 0 0 0 +8.271 -3.048 -1.685 0 0 0 0 0 0 0 +8.294 -3.027 -1.688 0 0 0 0 0 0 0 +8.298 -2.999 -1.687 0 0 0 0 0 0 0 +8.311 -2.974 -1.688 0 0 0 0 0 0 0 +8.321 -2.963 -1.689 0 0 0 0 0 0 0 +8.332 -2.938 -1.689 0 0 0 0 0 0 0 +8.341 -2.911 -1.689 0 0 0 0 0 0 0 +8.351 -2.885 -1.689 0 0 0 0 0 0 0 +8.384 -2.867 -1.695 0 0 0 0 0 0 0 +8.378 -2.836 -1.691 0 0 0 0 0 0 0 +8.387 -2.81 -1.691 0 0 0 0 0 0 0 +8.402 -2.8 -1.694 0 0 0 0 0 0 0 +8.407 -2.772 -1.693 0 0 0 0 0 0 0 +8.421 -2.748 -1.694 0 0 0 0 0 0 0 +8.445 -2.726 -1.697 0 0 0 0 0 0 0 +8.44 -2.696 -1.695 0 0 0 0 0 0 0 +8.445 -2.668 -1.694 0 0 0 0 0 0 0 +8.463 -2.644 -1.696 0 0 0 0 0 0 0 +8.458 -2.628 -1.694 0 0 0 0 0 0 0 +8.486 -2.608 -1.698 0 0 0 0 0 0 0 +8.48 -2.576 -1.695 0 0 0 0 0 0 0 +8.495 -2.552 -1.697 0 0 0 0 0 0 0 +8.507 -2.527 -1.697 0 0 0 0 0 0 0 +8.518 -2.501 -1.698 0 0 0 0 0 0 0 +8.523 -2.473 -1.697 0 0 0 0 0 0 0 +8.515 -2.456 -1.695 0 0 0 0 0 0 0 +8.519 -2.429 -1.694 0 0 0 0 0 0 0 +8.547 -2.408 -1.699 0 0 0 0 0 0 0 +8.57 -2.385 -1.702 0 0 0 0 0 0 0 +8.574 -2.357 -1.701 0 0 0 0 0 0 0 +8.568 -2.326 -1.698 0 0 0 0 0 0 0 +8.592 -2.304 -1.702 0 0 0 0 0 0 0 +8.52 -2.27 -1.686 0 0 0 0 0 0 0 +6.823 -1.79 -1.324 0 0 0 0 0 0 0 +6.846 -1.773 -1.328 0 0 0 0 0 0 0 +8.628 -2.212 -1.704 0 0 0 0 0 0 0 +8.614 -2.18 -1.7 0 0 0 0 0 0 0 +8.629 -2.155 -1.702 0 0 0 0 0 0 0 +8.654 -2.132 -1.706 0 0 0 0 0 0 0 +8.639 -2.114 -1.702 0 0 0 0 0 0 0 +7.104 -1.71 -1.376 0 0 0 0 0 0 0 +7.132 -1.693 -1.381 0 0 0 0 0 0 0 +7.135 -1.67 -1.38 0 0 0 0 0 0 0 +7.165 -1.654 -1.385 0 0 0 0 0 0 0 +7.157 -1.628 -1.383 0 0 0 0 0 0 0 +7.538 -1.667 -1.461 0 0 0 0 0 0 0 +7.55 -1.657 -1.463 0 0 0 0 0 0 0 +7.567 -1.636 -1.465 0 0 0 0 0 0 0 +7.511 -1.599 -1.452 0 0 0 0 0 0 0 +7.412 -1.553 -1.43 0 0 0 0 0 0 0 +7.478 -1.542 -1.443 0 0 0 0 0 0 0 +7.493 -1.521 -1.445 0 0 0 0 0 0 0 +7.405 -1.479 -1.426 0 0 0 0 0 0 0 +8.813 -1.722 -1.719 0 0 0 0 0 0 0 +8.832 -1.697 -1.722 0 0 0 0 0 0 0 +8.839 -1.669 -1.722 0 0 0 0 0 0 0 +8.754 -1.624 -1.704 0 0 0 0 0 0 0 +7.788 -1.417 -1.501 0 0 0 0 0 0 0 +8.856 -1.6 -1.723 0 0 0 0 0 0 0 +8.896 -1.579 -1.73 0 0 0 0 0 0 0 +8.903 -1.551 -1.731 0 0 0 0 0 0 0 +8.898 -1.522 -1.729 0 0 0 0 0 0 0 +8.91 -1.495 -1.73 0 0 0 0 0 0 0 +8.946 -1.472 -1.737 0 0 0 0 0 0 0 +8.946 -1.443 -1.736 0 0 0 0 0 0 0 +8.982 -1.42 -1.743 0 0 0 0 0 0 0 +8.965 -1.403 -1.739 0 0 0 0 0 0 0 +8.988 -1.378 -1.743 0 0 0 0 0 0 0 +8.977 -1.347 -1.739 0 0 0 0 0 0 0 +8.931 -1.312 -1.729 0 0 0 0 0 0 0 +8.297 -1.19 -1.597 0 0 0 0 0 0 0 +8.881 -1.247 -1.717 0 0 0 0 0 0 0 +8.959 -1.229 -1.732 0 0 0 0 0 0 0 +8.974 -1.217 -1.735 0 0 0 0 0 0 0 +8.96 -1.187 -1.731 0 0 0 0 0 0 0 +8.987 -1.162 -1.736 0 0 0 0 0 0 0 +8.95 -1.128 -1.728 0 0 0 0 0 0 0 +8.944 -1.099 -1.726 0 0 0 0 0 0 0 +8.953 -1.071 -1.727 0 0 0 0 0 0 0 +8.945 -1.042 -1.724 0 0 0 0 0 0 0 +8.948 -1.028 -1.725 0 0 0 0 0 0 0 +8.95 -1 -1.724 0 0 0 0 0 0 0 +8.949 -0.971 -1.724 0 0 0 0 0 0 0 +8.948 -0.943 -1.723 0 0 0 0 0 0 0 +8.968 -0.916 -1.726 0 0 0 0 0 0 0 +8.958 -0.887 -1.724 0 0 0 0 0 0 0 +8.947 -0.857 -1.721 0 0 0 0 0 0 0 +8.948 -0.843 -1.721 0 0 0 0 0 0 0 +8.962 -0.816 -1.723 0 0 0 0 0 0 0 +8.963 -0.788 -1.723 0 0 0 0 0 0 0 +8.954 -0.759 -1.72 0 0 0 0 0 0 0 +8.962 -0.731 -1.722 0 0 0 0 0 0 0 +8.96 -0.703 -1.721 0 0 0 0 0 0 0 +8.966 -0.675 -1.722 0 0 0 0 0 0 0 +8.967 -0.661 -1.722 0 0 0 0 0 0 0 +8.983 -0.633 -1.724 0 0 0 0 0 0 0 +8.975 -0.605 -1.722 0 0 0 0 0 0 0 +8.977 -0.576 -1.722 0 0 0 0 0 0 0 +8.975 -0.548 -1.722 0 0 0 0 0 0 0 +8.971 -0.519 -1.72 0 0 0 0 0 0 0 +8.972 -0.491 -1.72 0 0 0 0 0 0 0 +8.973 -0.477 -1.72 0 0 0 0 0 0 0 +8.973 -0.449 -1.72 0 0 0 0 0 0 0 +8.972 -0.421 -1.72 0 0 0 0 0 0 0 +8.965 -0.392 -1.718 0 0 0 0 0 0 0 +8.967 -0.364 -1.718 0 0 0 0 0 0 0 +8.966 -0.336 -1.718 0 0 0 0 0 0 0 +8.967 -0.307 -1.718 0 0 0 0 0 0 0 +8.981 -0.294 -1.72 0 0 0 0 0 0 0 +8.974 -0.265 -1.719 0 0 0 0 0 0 0 +8.963 -0.237 -1.716 0 0 0 0 0 0 0 +8.958 -0.208 -1.715 0 0 0 0 0 0 0 +8.962 -0.18 -1.716 0 0 0 0 0 0 0 +8.965 -0.152 -1.716 0 0 0 0 0 0 0 +8.954 -0.124 -1.714 0 0 0 0 0 0 0 +8.967 -0.11 -1.717 0 0 0 0 0 0 0 +8.964 -0.082 -1.716 0 0 0 0 0 0 0 +8.956 -0.054 -1.714 0 0 0 0 0 0 0 +8.952 -0.025 -1.714 0 0 0 0 0 0 0 +8.654 0.008 -1.734 0 0 0 0 0 0 0 +8.652 0.035 -1.734 0 0 0 0 0 0 0 +8.657 0.049 -1.735 0 0 0 0 0 0 0 +8.645 0.076 -1.732 0 0 0 0 0 0 0 +8.639 0.103 -1.731 0 0 0 0 0 0 0 +8.637 0.13 -1.731 0 0 0 0 0 0 0 +8.638 0.157 -1.731 0 0 0 0 0 0 0 +8.638 0.184 -1.731 0 0 0 0 0 0 0 +8.628 0.211 -1.729 0 0 0 0 0 0 0 +8.623 0.224 -1.728 0 0 0 0 0 0 0 +8.623 0.252 -1.728 0 0 0 0 0 0 0 +8.61 0.278 -1.726 0 0 0 0 0 0 0 +8.629 0.306 -1.73 0 0 0 0 0 0 0 +8.614 0.333 -1.727 0 0 0 0 0 0 0 +8.621 0.36 -1.729 0 0 0 0 0 0 0 +8.61 0.387 -1.726 0 0 0 0 0 0 0 +8.601 0.4 -1.725 0 0 0 0 0 0 0 +8.6 0.427 -1.725 0 0 0 0 0 0 0 +8.604 0.454 -1.726 0 0 0 0 0 0 0 +8.595 0.481 -1.724 0 0 0 0 0 0 0 +8.599 0.508 -1.726 0 0 0 0 0 0 0 +8.594 0.535 -1.725 0 0 0 0 0 0 0 +8.584 0.561 -1.723 0 0 0 0 0 0 0 +8.591 0.575 -1.725 0 0 0 0 0 0 0 +8.589 0.602 -1.725 0 0 0 0 0 0 0 +8.588 0.629 -1.725 0 0 0 0 0 0 0 +8.584 0.656 -1.724 0 0 0 0 0 0 0 +8.57 0.682 -1.722 0 0 0 0 0 0 0 +8.571 0.709 -1.723 0 0 0 0 0 0 0 +8.567 0.736 -1.722 0 0 0 0 0 0 0 +8.562 0.749 -1.721 0 0 0 0 0 0 0 +8.554 0.775 -1.72 0 0 0 0 0 0 0 +8.548 0.802 -1.719 0 0 0 0 0 0 0 +8.545 0.829 -1.719 0 0 0 0 0 0 0 +8.554 0.857 -1.722 0 0 0 0 0 0 0 +8.532 0.882 -1.718 0 0 0 0 0 0 0 +8.549 0.911 -1.722 0 0 0 0 0 0 0 +8.545 0.924 -1.721 0 0 0 0 0 0 0 +8.527 0.949 -1.718 0 0 0 0 0 0 0 +8.531 0.977 -1.72 0 0 0 0 0 0 0 +8.519 1.002 -1.718 0 0 0 0 0 0 0 +8.521 1.03 -1.719 0 0 0 0 0 0 0 +8.495 1.053 -1.714 0 0 0 0 0 0 0 +8.517 1.083 -1.719 0 0 0 0 0 0 0 +8.509 1.11 -1.718 0 0 0 0 0 0 0 +8.494 1.121 -1.716 0 0 0 0 0 0 0 +8.486 1.147 -1.715 0 0 0 0 0 0 0 +8.492 1.175 -1.717 0 0 0 0 0 0 0 +8.491 1.202 -1.717 0 0 0 0 0 0 0 +8.485 1.229 -1.717 0 0 0 0 0 0 0 +8.481 1.255 -1.717 0 0 0 0 0 0 0 +8.462 1.28 -1.713 0 0 0 0 0 0 0 +8.461 1.293 -1.714 0 0 0 0 0 0 0 +8.446 1.318 -1.711 0 0 0 0 0 0 0 +8.451 1.346 -1.713 0 0 0 0 0 0 0 +8.451 1.373 -1.714 0 0 0 0 0 0 0 +8.437 1.398 -1.712 0 0 0 0 0 0 0 +8.438 1.426 -1.713 0 0 0 0 0 0 0 +8.434 1.452 -1.713 0 0 0 0 0 0 0 +8.418 1.463 -1.71 0 0 0 0 0 0 0 +8.419 1.49 -1.712 0 0 0 0 0 0 0 +8.445 1.523 -1.718 0 0 0 0 0 0 0 +8.417 1.545 -1.713 0 0 0 0 0 0 0 +8.399 1.569 -1.71 0 0 0 0 0 0 0 +8.39 1.594 -1.71 0 0 0 0 0 0 0 +8.377 1.619 -1.708 0 0 0 0 0 0 0 +8.369 1.631 -1.707 0 0 0 0 0 0 0 +8.383 1.661 -1.711 0 0 0 0 0 0 0 +8.37 1.686 -1.709 0 0 0 0 0 0 0 +8.351 1.71 -1.706 0 0 0 0 0 0 0 +8.356 1.738 -1.708 0 0 0 0 0 0 0 +8.358 1.766 -1.71 0 0 0 0 0 0 0 +8.339 1.789 -1.707 0 0 0 0 0 0 0 +8.338 1.803 -1.708 0 0 0 0 0 0 0 +8.334 1.829 -1.708 0 0 0 0 0 0 0 +8.33 1.856 -1.708 0 0 0 0 0 0 0 +8.328 1.883 -1.709 0 0 0 0 0 0 0 +8.318 1.908 -1.708 0 0 0 0 0 0 0 +8.314 1.935 -1.709 0 0 0 0 0 0 0 +8.316 1.963 -1.71 0 0 0 0 0 0 0 +8.301 1.973 -1.708 0 0 0 0 0 0 0 +8.301 2 -1.709 0 0 0 0 0 0 0 +8.304 2.029 -1.711 0 0 0 0 0 0 0 +8.286 2.052 -1.709 0 0 0 0 0 0 0 +8.289 2.08 -1.711 0 0 0 0 0 0 0 +8.288 2.108 -1.712 0 0 0 0 0 0 0 +8.281 2.134 -1.712 0 0 0 0 0 0 0 +8.278 2.147 -1.712 0 0 0 0 0 0 0 +8.264 2.171 -1.71 0 0 0 0 0 0 0 +8.262 2.198 -1.712 0 0 0 0 0 0 0 +8.256 2.224 -1.712 0 0 0 0 0 0 0 +8.254 2.252 -1.713 0 0 0 0 0 0 0 +8.249 2.278 -1.713 0 0 0 0 0 0 0 +8.244 2.305 -1.714 0 0 0 0 0 0 0 +8.229 2.314 -1.711 0 0 0 0 0 0 0 +8.236 2.345 -1.715 0 0 0 0 0 0 0 +8.235 2.372 -1.716 0 0 0 0 0 0 0 +8.214 2.394 -1.713 0 0 0 0 0 0 0 +8.214 2.422 -1.715 0 0 0 0 0 0 0 +8.216 2.451 -1.717 0 0 0 0 0 0 0 +8.189 2.471 -1.713 0 0 0 0 0 0 0 +8.197 2.487 -1.715 0 0 0 0 0 0 0 +8.198 2.516 -1.717 0 0 0 0 0 0 0 +8.196 2.543 -1.718 0 0 0 0 0 0 0 +8.182 2.567 -1.717 0 0 0 0 0 0 0 +8.17 2.592 -1.716 0 0 0 0 0 0 0 +8.173 2.621 -1.719 0 0 0 0 0 0 0 +8.154 2.643 -1.716 0 0 0 0 0 0 0 +8.164 2.661 -1.72 0 0 0 0 0 0 0 +8.154 2.686 -1.719 0 0 0 0 0 0 0 +8.14 2.709 -1.718 0 0 0 0 0 0 0 +8.145 2.739 -1.721 0 0 0 0 0 0 0 +8.127 2.762 -1.719 0 0 0 0 0 0 0 +8.12 2.788 -1.719 0 0 0 0 0 0 0 +8.117 2.815 -1.721 0 0 0 0 0 0 0 +8.108 2.827 -1.72 0 0 0 0 0 0 0 +8.105 2.854 -1.721 0 0 0 0 0 0 0 +8.111 2.885 -1.724 0 0 0 0 0 0 0 +8.098 2.909 -1.723 0 0 0 0 0 0 0 +8.083 2.933 -1.722 0 0 0 0 0 0 0 +8.085 2.962 -1.725 0 0 0 0 0 0 0 +8.079 2.989 -1.726 0 0 0 0 0 0 0 +8.084 3.005 -1.728 0 0 0 0 0 0 0 +8.056 3.023 -1.723 0 0 0 0 0 0 0 +8.063 3.055 -1.727 0 0 0 0 0 0 0 +8.046 3.077 -1.726 0 0 0 0 0 0 0 +8.04 3.104 -1.726 0 0 0 0 0 0 0 +8.039 3.133 -1.729 0 0 0 0 0 0 0 +8.026 3.157 -1.728 0 0 0 0 0 0 0 +8.016 3.182 -1.728 0 0 0 0 0 0 0 +8.011 3.195 -1.728 0 0 0 0 0 0 0 +7.995 3.217 -1.726 0 0 0 0 0 0 0 +8.005 3.251 -1.731 0 0 0 0 0 0 0 +7.991 3.274 -1.73 0 0 0 0 0 0 0 +7.988 3.302 -1.732 0 0 0 0 0 0 0 +7.979 3.328 -1.732 0 0 0 0 0 0 0 +7.967 3.338 -1.731 0 0 0 0 0 0 0 +7.953 3.361 -1.73 0 0 0 0 0 0 0 +7.944 3.387 -1.73 0 0 0 0 0 0 0 +7.933 3.412 -1.73 0 0 0 0 0 0 0 +7.93 3.44 -1.732 0 0 0 0 0 0 0 +7.91 3.461 -1.73 0 0 0 0 0 0 0 +7.91 3.491 -1.732 0 0 0 0 0 0 0 +7.906 3.504 -1.733 0 0 0 0 0 0 0 +7.888 3.525 -1.731 0 0 0 0 0 0 0 +7.88 3.552 -1.732 0 0 0 0 0 0 0 +7.876 3.58 -1.734 0 0 0 0 0 0 0 +7.869 3.606 -1.734 0 0 0 0 0 0 0 +7.852 3.628 -1.733 0 0 0 0 0 0 0 +7.842 3.654 -1.734 0 0 0 0 0 0 0 +7.84 3.668 -1.734 0 0 0 0 0 0 0 +7.841 3.698 -1.737 0 0 0 0 0 0 0 +7.808 3.713 -1.732 0 0 0 0 0 0 0 +7.803 3.741 -1.734 0 0 0 0 0 0 0 +7.788 3.763 -1.733 0 0 0 0 0 0 0 +7.787 3.793 -1.736 0 0 0 0 0 0 0 +7.771 3.816 -1.735 0 0 0 0 0 0 0 +7.763 3.842 -1.736 0 0 0 0 0 0 0 +7.76 3.856 -1.736 0 0 0 0 0 0 0 +7.753 3.883 -1.738 0 0 0 0 0 0 0 +7.734 3.904 -1.736 0 0 0 0 0 0 0 +7.725 3.93 -1.737 0 0 0 0 0 0 0 +7.711 3.953 -1.736 0 0 0 0 0 0 0 +7.687 3.971 -1.734 0 0 0 0 0 0 0 +7.686 4.001 -1.736 0 0 0 0 0 0 0 +7.68 4.013 -1.736 0 0 0 0 0 0 0 +7.671 4.039 -1.737 0 0 0 0 0 0 0 +7.658 4.064 -1.737 0 0 0 0 0 0 0 +7.624 4.076 -1.732 0 0 0 0 0 0 0 +7.624 4.107 -1.735 0 0 0 0 0 0 0 +7.612 4.132 -1.736 0 0 0 0 0 0 0 +7.604 4.143 -1.735 0 0 0 0 0 0 0 +7.581 4.161 -1.733 0 0 0 0 0 0 0 +7.576 4.19 -1.735 0 0 0 0 0 0 0 +7.553 4.208 -1.732 0 0 0 0 0 0 0 +7.55 4.237 -1.735 0 0 0 0 0 0 0 +7.54 4.263 -1.736 0 0 0 0 0 0 0 +7.535 4.291 -1.738 0 0 0 0 0 0 0 +7.537 4.308 -1.74 0 0 0 0 0 0 0 +7.535 4.338 -1.743 0 0 0 0 0 0 0 +7.531 4.368 -1.745 0 0 0 0 0 0 0 +7.502 4.383 -1.742 0 0 0 0 0 0 0 +7.463 4.391 -1.735 0 0 0 0 0 0 0 +7.453 4.417 -1.736 0 0 0 0 0 0 0 +7.431 4.435 -1.734 0 0 0 0 0 0 0 +7.417 4.443 -1.732 0 0 0 0 0 0 0 +7.398 4.463 -1.731 0 0 0 0 0 0 0 +7.387 4.488 -1.732 0 0 0 0 0 0 0 +7.371 4.51 -1.731 0 0 0 0 0 0 0 +7.366 4.539 -1.734 0 0 0 0 0 0 0 +7.345 4.558 -1.732 0 0 0 0 0 0 0 +7.342 4.588 -1.735 0 0 0 0 0 0 0 +7.336 4.601 -1.735 0 0 0 0 0 0 0 +7.323 4.625 -1.736 0 0 0 0 0 0 0 +7.32 4.655 -1.739 0 0 0 0 0 0 0 +7.302 4.676 -1.738 0 0 0 0 0 0 0 +7.284 4.697 -1.737 0 0 0 0 0 0 0 +7.276 4.724 -1.739 0 0 0 0 0 0 0 +7.256 4.743 -1.737 0 0 0 0 0 0 0 +7.26 4.762 -1.74 0 0 0 0 0 0 0 +7.234 4.778 -1.737 0 0 0 0 0 0 0 +7.225 4.805 -1.739 0 0 0 0 0 0 0 +7.199 4.82 -1.736 0 0 0 0 0 0 0 +7.189 4.845 -1.737 0 0 0 0 0 0 0 +7.17 4.866 -1.736 0 0 0 0 0 0 0 +7.147 4.883 -1.734 0 0 0 0 0 0 0 +7.139 4.911 -1.736 0 0 0 0 0 0 0 +7.14 4.928 -1.739 0 0 0 0 0 0 0 +7.132 4.956 -1.741 0 0 0 0 0 0 0 +7.117 4.978 -1.741 0 0 0 0 0 0 0 +7.09 4.992 -1.738 0 0 0 0 0 0 0 +7.073 5.014 -1.737 0 0 0 0 0 0 0 +7.057 5.036 -1.737 0 0 0 0 0 0 0 +7.055 5.068 -1.741 0 0 0 0 0 0 0 +7.046 5.078 -1.741 0 0 0 0 0 0 0 +7.036 5.105 -1.742 0 0 0 0 0 0 0 +7.017 5.125 -1.742 0 0 0 0 0 0 0 +7.004 5.149 -1.742 0 0 0 0 0 0 0 +6.989 5.172 -1.743 0 0 0 0 0 0 0 +6.992 5.208 -1.748 0 0 0 0 0 0 0 +6.974 5.212 -1.745 0 0 0 0 0 0 0 +6.954 5.232 -1.744 0 0 0 0 0 0 0 +6.957 5.268 -1.75 0 0 0 0 0 0 0 +6.929 5.281 -1.747 0 0 0 0 0 0 0 +6.913 5.303 -1.747 0 0 0 0 0 0 0 +6.904 5.33 -1.749 0 0 0 0 0 0 0 +6.895 5.358 -1.751 0 0 0 0 0 0 0 +6.883 5.367 -1.75 0 0 0 0 0 0 0 +6.869 5.391 -1.751 0 0 0 0 0 0 0 +6.852 5.412 -1.751 0 0 0 0 0 0 0 +6.835 5.434 -1.751 0 0 0 0 0 0 0 +6.81 5.449 -1.749 0 0 0 0 0 0 0 +6.804 5.479 -1.752 0 0 0 0 0 0 0 +6.8 5.511 -1.755 0 0 0 0 0 0 0 +6.761 5.497 -1.747 0 0 0 0 0 0 0 +6.718 5.497 -1.74 0 0 0 0 0 0 0 +6.695 5.514 -1.738 0 0 0 0 0 0 0 +6.678 5.535 -1.738 0 0 0 0 0 0 0 +6.675 5.568 -1.742 0 0 0 0 0 0 0 +6.673 5.602 -1.747 0 0 0 0 0 0 0 +6.682 5.645 -1.754 0 0 0 0 0 0 0 +6.66 5.662 -1.753 0 0 0 0 0 0 0 +6.67 5.689 -1.758 0 0 0 0 0 0 0 +6.634 5.695 -1.753 0 0 0 0 0 0 0 +6.637 5.734 -1.759 0 0 0 0 0 0 0 +6.632 5.766 -1.763 0 0 0 0 0 0 0 +6.611 5.784 -1.762 0 0 0 0 0 0 0 +6.595 5.807 -1.763 0 0 0 0 0 0 0 +6.598 5.847 -1.769 0 0 0 0 0 0 0 +6.577 5.847 -1.765 0 0 0 0 0 0 0 +6.573 5.88 -1.77 0 0 0 0 0 0 0 +6.569 5.914 -1.774 0 0 0 0 0 0 0 +6.548 5.932 -1.773 0 0 0 0 0 0 0 +6.536 5.959 -1.775 0 0 0 0 0 0 0 +6.538 5.998 -1.781 0 0 0 0 0 0 0 +6.505 6.006 -1.777 0 0 0 0 0 0 0 +6.504 6.024 -1.779 0 0 0 0 0 0 0 +6.501 6.059 -1.784 0 0 0 0 0 0 0 +6.47 6.068 -1.781 0 0 0 0 0 0 0 +6.458 6.096 -1.783 0 0 0 0 0 0 0 +6.449 6.125 -1.786 0 0 0 0 0 0 0 +6.427 6.143 -1.785 0 0 0 0 0 0 0 +6.414 6.17 -1.787 0 0 0 0 0 0 0 +6.407 6.183 -1.788 0 0 0 0 0 0 0 +6.384 6.199 -1.786 0 0 0 0 0 0 0 +6.381 6.235 -1.791 0 0 0 0 0 0 0 +6.361 6.255 -1.791 0 0 0 0 0 0 0 +6.333 6.267 -1.789 0 0 0 0 0 0 0 +6.334 6.307 -1.795 0 0 0 0 0 0 0 +6.301 6.313 -1.791 0 0 0 0 0 0 0 +6.29 6.322 -1.791 0 0 0 0 0 0 0 +6.287 6.36 -1.796 0 0 0 0 0 0 0 +6.255 6.367 -1.792 0 0 0 0 0 0 0 +6.235 6.386 -1.792 0 0 0 0 0 0 0 +6.22 6.412 -1.794 0 0 0 0 0 0 0 +6.214 6.445 -1.798 0 0 0 0 0 0 0 +6.185 6.456 -1.796 0 0 0 0 0 0 0 +6.181 6.472 -1.797 0 0 0 0 0 0 0 +6.16 6.491 -1.797 0 0 0 0 0 0 0 +6.147 6.517 -1.799 0 0 0 0 0 0 0 +6.125 6.535 -1.799 0 0 0 0 0 0 0 +6.107 6.557 -1.8 0 0 0 0 0 0 0 +6.084 6.574 -1.799 0 0 0 0 0 0 0 +6.071 6.601 -1.802 0 0 0 0 0 0 0 +6.063 6.614 -1.802 0 0 0 0 0 0 0 +6.046 6.637 -1.804 0 0 0 0 0 0 0 +6.031 6.662 -1.805 0 0 0 0 0 0 0 +6.017 6.69 -1.808 0 0 0 0 0 0 0 +6.003 6.716 -1.81 0 0 0 0 0 0 0 +5.98 6.733 -1.81 0 0 0 0 0 0 0 +5.981 6.777 -1.817 0 0 0 0 0 0 0 +5.985 6.802 -1.821 0 0 0 0 0 0 0 +5.972 6.832 -1.824 0 0 0 0 0 0 0 +5.952 6.852 -1.825 0 0 0 0 0 0 0 +5.929 6.869 -1.824 0 0 0 0 0 0 0 +5.901 6.88 -1.822 0 0 0 0 0 0 0 +5.882 6.902 -1.823 0 0 0 0 0 0 0 +5.852 6.91 -1.82 0 0 0 0 0 0 0 +5.847 6.926 -1.822 0 0 0 0 0 0 0 +5.81 6.927 -1.817 0 0 0 0 0 0 0 +5.795 6.952 -1.819 0 0 0 0 0 0 0 +5.773 6.97 -1.819 0 0 0 0 0 0 0 +5.748 6.986 -1.818 0 0 0 0 0 0 0 +5.725 7.002 -1.818 0 0 0 0 0 0 0 +5.697 7.012 -1.816 0 0 0 0 0 0 0 +5.687 7.023 -1.816 0 0 0 0 0 0 0 +5.663 7.038 -1.815 0 0 0 0 0 0 0 +5.641 7.055 -1.815 0 0 0 0 0 0 0 +5.623 7.079 -1.817 0 0 0 0 0 0 0 +5.596 7.091 -1.815 0 0 0 0 0 0 0 +5.582 7.119 -1.818 0 0 0 0 0 0 0 +5.56 7.137 -1.818 0 0 0 0 0 0 0 +5.533 7.148 -1.817 0 0 0 0 0 0 0 +5.513 7.146 -1.814 0 0 0 0 0 0 0 +5.488 7.16 -1.813 0 0 0 0 0 0 0 +5.465 7.175 -1.812 0 0 0 0 0 0 0 +5.445 7.197 -1.814 0 0 0 0 0 0 0 +5.42 7.211 -1.813 0 0 0 0 0 0 0 +5.397 7.227 -1.812 0 0 0 0 0 0 0 +5.375 7.245 -1.813 0 0 0 0 0 0 0 +5.358 7.246 -1.811 0 0 0 0 0 0 0 +5.337 7.266 -1.812 0 0 0 0 0 0 0 +5.316 7.284 -1.812 0 0 0 0 0 0 0 +5.297 7.307 -1.814 0 0 0 0 0 0 0 +5.28 7.331 -1.816 0 0 0 0 0 0 0 +5.255 7.345 -1.815 0 0 0 0 0 0 0 +5.241 7.35 -1.814 0 0 0 0 0 0 0 +5.208 7.352 -1.81 0 0 0 0 0 0 0 +5.185 7.368 -1.81 0 0 0 0 0 0 0 +5.167 7.393 -1.812 0 0 0 0 0 0 0 +5.139 7.402 -1.811 0 0 0 0 0 0 0 +5.112 7.412 -1.809 0 0 0 0 0 0 0 +5.087 7.426 -1.809 0 0 0 0 0 0 0 +5.074 7.433 -1.808 0 0 0 0 0 0 0 +5.063 7.466 -1.813 0 0 0 0 0 0 0 +5.048 7.495 -1.816 0 0 0 0 0 0 0 +5.023 7.508 -1.815 0 0 0 0 0 0 0 +4.991 7.512 -1.812 0 0 0 0 0 0 0 +4.971 7.533 -1.814 0 0 0 0 0 0 0 +4.945 7.545 -1.813 0 0 0 0 0 0 0 +4.926 7.567 -1.815 0 0 0 0 0 0 0 +4.916 7.578 -1.815 0 0 0 0 0 0 0 +4.891 7.592 -1.815 0 0 0 0 0 0 0 +4.865 7.604 -1.814 0 0 0 0 0 0 0 +4.841 7.619 -1.814 0 0 0 0 0 0 0 +4.818 7.636 -1.815 0 0 0 0 0 0 0 +4.796 7.654 -1.815 0 0 0 0 0 0 0 +4.77 7.666 -1.815 0 0 0 0 0 0 0 +4.762 7.68 -1.816 0 0 0 0 0 0 0 +4.74 7.699 -1.817 0 0 0 0 0 0 0 +4.714 7.71 -1.816 0 0 0 0 0 0 0 +4.69 7.725 -1.816 0 0 0 0 0 0 0 +4.664 7.738 -1.816 0 0 0 0 0 0 0 +4.642 7.756 -1.817 0 0 0 0 0 0 0 +4.612 7.76 -1.814 0 0 0 0 0 0 0 +4.583 7.768 -1.812 0 0 0 0 0 0 0 +4.577 7.785 -1.815 0 0 0 0 0 0 0 +4.551 7.796 -1.814 0 0 0 0 0 0 0 +4.512 7.787 -1.808 0 0 0 0 0 0 0 +4.505 7.831 -1.816 0 0 0 0 0 0 0 +4.469 7.825 -1.811 0 0 0 0 0 0 0 +4.448 7.846 -1.812 0 0 0 0 0 0 0 +4.429 7.841 -1.81 0 0 0 0 0 0 0 +4.403 7.851 -1.809 0 0 0 0 0 0 0 +4.376 7.862 -1.808 0 0 0 0 0 0 0 +4.347 7.867 -1.806 0 0 0 0 0 0 0 +4.319 7.875 -1.804 0 0 0 0 0 0 0 +4.294 7.889 -1.804 0 0 0 0 0 0 0 +4.265 7.894 -1.802 0 0 0 0 0 0 0 +4.239 7.905 -1.802 0 0 0 0 0 0 0 +4.228 7.914 -1.802 0 0 0 0 0 0 0 +4.2 7.922 -1.801 0 0 0 0 0 0 0 +4.178 7.94 -1.802 0 0 0 0 0 0 0 +4.152 7.952 -1.802 0 0 0 0 0 0 0 +4.119 7.949 -1.798 0 0 0 0 0 0 0 +4.092 7.958 -1.797 0 0 0 0 0 0 0 +4.066 7.969 -1.797 0 0 0 0 0 0 0 +4.053 7.974 -1.797 0 0 0 0 0 0 0 +4.024 7.978 -1.794 0 0 0 0 0 0 0 +3.998 7.991 -1.794 0 0 0 0 0 0 0 +3.974 8.005 -1.795 0 0 0 0 0 0 0 +3.95 8.019 -1.795 0 0 0 0 0 0 0 +3.927 8.037 -1.797 0 0 0 0 0 0 0 +3.9 8.046 -1.796 0 0 0 0 0 0 0 +3.883 8.041 -1.793 0 0 0 0 0 0 0 +3.865 8.069 -1.797 0 0 0 0 0 0 0 +3.834 8.071 -1.794 0 0 0 0 0 0 0 +3.81 8.084 -1.795 0 0 0 0 0 0 0 +3.784 8.095 -1.794 0 0 0 0 0 0 0 +3.761 8.112 -1.796 0 0 0 0 0 0 0 +3.738 8.129 -1.797 0 0 0 0 0 0 0 +3.722 8.129 -1.796 0 0 0 0 0 0 0 +3.693 8.132 -1.794 0 0 0 0 0 0 0 +3.667 8.144 -1.794 0 0 0 0 0 0 0 +3.644 8.16 -1.795 0 0 0 0 0 0 0 +3.619 8.174 -1.795 0 0 0 0 0 0 0 +3.597 8.194 -1.797 0 0 0 0 0 0 0 +3.571 8.203 -1.797 0 0 0 0 0 0 0 +3.56 8.214 -1.798 0 0 0 0 0 0 0 +3.531 8.218 -1.797 0 0 0 0 0 0 0 +3.508 8.235 -1.798 0 0 0 0 0 0 0 +3.48 8.24 -1.797 0 0 0 0 0 0 0 +3.455 8.253 -1.797 0 0 0 0 0 0 0 +3.42 8.242 -1.792 0 0 0 0 0 0 0 +3.404 8.278 -1.798 0 0 0 0 0 0 0 +3.371 8.273 -1.794 0 0 0 0 0 0 0 +3.361 8.283 -1.795 0 0 0 0 0 0 0 +3.333 8.29 -1.794 0 0 0 0 0 0 0 +3.309 8.304 -1.795 0 0 0 0 0 0 0 +3.282 8.313 -1.795 0 0 0 0 0 0 0 +3.254 8.319 -1.794 0 0 0 0 0 0 0 +3.225 8.322 -1.792 0 0 0 0 0 0 0 +3.201 8.338 -1.794 0 0 0 0 0 0 0 +3.183 8.33 -1.791 0 0 0 0 0 0 0 +3.161 8.351 -1.793 0 0 0 0 0 0 0 +3.136 8.365 -1.794 0 0 0 0 0 0 0 +3.096 8.338 -1.786 0 0 0 0 0 0 0 +3.068 8.34 -1.784 0 0 0 0 0 0 0 +3.041 8.35 -1.784 0 0 0 0 0 0 0 +3.017 8.365 -1.785 0 0 0 0 0 0 0 +2.999 8.357 -1.782 0 0 0 0 0 0 0 +2.966 8.346 -1.778 0 0 0 0 0 0 0 +2.943 8.364 -1.78 0 0 0 0 0 0 0 +2.91 8.353 -1.775 0 0 0 0 0 0 0 +2.878 8.347 -1.772 0 0 0 0 0 0 0 +2.858 8.375 -1.776 0 0 0 0 0 0 0 +2.829 8.374 -1.774 0 0 0 0 0 0 0 +2.816 8.379 -1.774 0 0 0 0 0 0 0 +2.793 8.399 -1.776 0 0 0 0 0 0 0 +2.764 8.4 -1.775 0 0 0 0 0 0 0 +2.736 8.403 -1.773 0 0 0 0 0 0 0 +2.711 8.415 -1.774 0 0 0 0 0 0 0 +2.678 8.403 -1.77 0 0 0 0 0 0 0 +2.652 8.414 -1.77 0 0 0 0 0 0 0 +2.64 8.422 -1.771 0 0 0 0 0 0 0 +2.608 8.411 -1.767 0 0 0 0 0 0 0 +2.576 8.401 -1.763 0 0 0 0 0 0 0 +2.554 8.425 -1.766 0 0 0 0 0 0 0 +2.523 8.418 -1.763 0 0 0 0 0 0 0 +2.499 8.432 -1.764 0 0 0 0 0 0 0 +2.473 8.444 -1.765 0 0 0 0 0 0 0 +2.447 8.451 -1.765 0 0 0 0 0 0 0 +2.287 7.942 -1.65 0 0 0 0 0 0 0 +2.252 7.913 -1.642 0 0 0 0 0 0 0 +2.225 7.911 -1.64 0 0 0 0 0 0 0 +2.198 7.912 -1.639 0 0 0 0 0 0 0 +2.173 7.919 -1.639 0 0 0 0 0 0 0 +2.142 7.903 -1.634 0 0 0 0 0 0 0 +2.115 7.9 -1.632 0 0 0 0 0 0 0 +2.105 7.913 -1.634 0 0 0 0 0 0 0 +2.075 7.899 -1.629 0 0 0 0 0 0 0 +2.049 7.901 -1.629 0 0 0 0 0 0 0 +2.032 7.938 -1.635 0 0 0 0 0 0 0 +1.987 7.863 -1.617 0 0 0 0 0 0 0 +1.732 6.935 -1.411 0 0 0 0 0 0 0 +1.715 6.959 -1.415 0 0 0 0 0 0 0 +1.722 7.034 -1.431 0 0 0 0 0 0 0 +1.909 7.922 -1.626 0 0 0 0 0 0 0 +1.886 7.938 -1.628 0 0 0 0 0 0 0 +1.858 7.93 -1.625 0 0 0 0 0 0 0 +1.837 7.953 -1.629 0 0 0 0 0 0 0 +1.809 7.946 -1.626 0 0 0 0 0 0 0 +1.784 7.951 -1.626 0 0 0 0 0 0 0 +1.772 7.954 -1.626 0 0 0 0 0 0 0 +1.747 7.96 -1.626 0 0 0 0 0 0 0 +1.72 7.957 -1.624 0 0 0 0 0 0 0 +0.681 3.174 -0.573 0 0 0 0 0 0 0 +1.696 7.967 -1.625 0 0 0 0 0 0 0 +0.677 3.205 -0.58 0 0 0 0 0 0 0 +0.67 3.219 -0.582 0 0 0 0 0 0 0 +0.66 3.223 -0.583 0 0 0 0 0 0 0 +0.655 3.228 -0.583 0 0 0 0 0 0 0 +0.649 3.247 -0.587 0 0 0 0 0 0 0 +0.64 3.255 -0.588 0 0 0 0 0 0 0 +0.612 3.165 -0.568 0 0 0 0 0 0 0 +0.571 2.995 -0.531 0 0 0 0 0 0 0 +0.562 2.997 -0.531 0 0 0 0 0 0 0 +0.552 2.997 -0.531 0 0 0 0 0 0 0 +0.547 2.996 -0.53 0 0 0 0 0 0 0 +0.538 2.999 -0.531 0 0 0 0 0 0 0 +0.528 3.001 -0.531 0 0 0 0 0 0 0 +0.519 3.005 -0.531 0 0 0 0 0 0 0 +0.51 3.006 -0.531 0 0 0 0 0 0 0 +0.5 3.008 -0.531 0 0 0 0 0 0 0 +0.491 3.008 -0.531 0 0 0 0 0 0 0 +0.487 3.018 -0.533 0 0 0 0 0 0 0 +0.48 3.031 -0.535 0 0 0 0 0 0 0 +0.469 3.025 -0.533 0 0 0 0 0 0 0 +0.458 3.015 -0.531 0 0 0 0 0 0 0 +0.448 3.016 -0.531 0 0 0 0 0 0 0 +0.439 3.018 -0.531 0 0 0 0 0 0 0 +0.429 3.015 -0.53 0 0 0 0 0 0 0 +0.428 3.045 -0.536 0 0 0 0 0 0 0 +0.417 3.032 -0.533 0 0 0 0 0 0 0 +0.409 3.049 -0.537 0 0 0 0 0 0 0 +0.396 3.021 -0.531 0 0 0 0 0 0 0 +0.387 3.025 -0.531 0 0 0 0 0 0 0 +0.377 3.024 -0.531 0 0 0 0 0 0 0 +0.367 3.025 -0.531 0 0 0 0 0 0 0 +0.358 3.028 -0.531 0 0 0 0 0 0 0 +0.354 3.031 -0.531 0 0 0 0 0 0 0 +0.344 3.03 -0.531 0 0 0 0 0 0 0 +0.334 3.031 -0.531 0 0 0 0 0 0 0 +0.326 3.044 -0.533 0 0 0 0 0 0 0 +0.318 3.06 -0.537 0 0 0 0 0 0 0 +0.307 3.051 -0.535 0 0 0 0 0 0 0 +0.297 3.048 -0.534 0 0 0 0 0 0 0 +0.292 3.043 -0.533 0 0 0 0 0 0 0 +0.285 3.071 -0.539 0 0 0 0 0 0 0 +0.273 3.043 -0.532 0 0 0 0 0 0 0 +0.267 3.087 -0.541 0 0 0 0 0 0 0 +0.256 3.07 -0.538 0 0 0 0 0 0 0 +0.244 3.047 -0.533 0 0 0 0 0 0 0 +0.234 3.036 -0.53 0 0 0 0 0 0 0 +0.23 3.046 -0.532 0 0 0 0 0 0 0 +0.22 3.049 -0.533 0 0 0 0 0 0 0 +0.211 3.052 -0.533 0 0 0 0 0 0 0 +0.202 3.062 -0.535 0 0 0 0 0 0 0 +0.194 3.096 -0.542 0 0 0 0 0 0 0 +0.185 3.106 -0.544 0 0 0 0 0 0 0 +0.175 3.095 -0.542 0 0 0 0 0 0 0 +0.17 3.093 -0.541 0 0 0 0 0 0 0 +0.16 3.1 -0.543 0 0 0 0 0 0 0 +0.15 3.102 -0.543 0 0 0 0 0 0 0 +0.141 3.101 -0.543 0 0 0 0 0 0 0 +0.131 3.109 -0.544 0 0 0 0 0 0 0 +0.122 3.115 -0.546 0 0 0 0 0 0 0 +0.112 3.11 -0.544 0 0 0 0 0 0 0 +0.11 3.243 -0.573 0 0 0 0 0 0 0 +0.101 3.284 -0.582 0 0 0 0 0 0 0 +0.091 3.287 -0.582 0 0 0 0 0 0 0 +0.081 3.301 -0.585 0 0 0 0 0 0 0 +0.07 3.287 -0.582 0 0 0 0 0 0 0 +0.06 3.287 -0.582 0 0 0 0 0 0 0 +0.049 3.291 -0.583 0 0 0 0 0 0 0 +0.06 8.622 -1.727 0 0 0 0 0 0 0 +0.047 8.632 -1.729 0 0 0 0 0 0 0 +0.019 8.648 -1.733 0 0 0 0 0 0 0 +-0.008 8.654 -1.734 0 0 0 0 0 0 0 +-0.035 8.652 -1.734 0 0 0 0 0 0 0 +-0.062 8.675 -1.739 0 0 0 0 0 0 0 +-0.09 8.679 -1.739 0 0 0 0 0 0 0 +-0.117 8.7 -1.744 0 0 0 0 0 0 0 +-0.131 8.721 -1.749 0 0 0 0 0 0 0 +-0.158 8.705 -1.745 0 0 0 0 0 0 0 +-0.186 8.722 -1.749 0 0 0 0 0 0 0 +-0.214 8.743 -1.754 0 0 0 0 0 0 0 +-0.244 8.832 -1.773 0 0 0 0 0 0 0 +-0.27 8.769 -1.76 0 0 0 0 0 0 0 +-0.32 8.982 -1.806 0 0 0 0 0 0 0 +-0.347 8.966 -1.802 0 0 0 0 0 0 0 +-0.371 8.873 -1.783 0 0 0 0 0 0 0 +-0.398 8.84 -1.776 0 0 0 0 0 0 0 +-0.424 8.814 -1.77 0 0 0 0 0 0 0 +-0.45 8.789 -1.765 0 0 0 0 0 0 0 +-0.477 8.77 -1.762 0 0 0 0 0 0 0 +-0.505 8.778 -1.764 0 0 0 0 0 0 0 +-0.518 8.763 -1.761 0 0 0 0 0 0 0 +-0.545 8.756 -1.76 0 0 0 0 0 0 0 +-0.573 8.758 -1.76 0 0 0 0 0 0 0 +-0.6 8.752 -1.76 0 0 0 0 0 0 0 +-0.629 8.76 -1.762 0 0 0 0 0 0 0 +-0.656 8.756 -1.761 0 0 0 0 0 0 0 +-0.683 8.754 -1.761 0 0 0 0 0 0 0 +-0.697 8.753 -1.761 0 0 0 0 0 0 0 +-0.725 8.757 -1.763 0 0 0 0 0 0 0 +-0.752 8.746 -1.761 0 0 0 0 0 0 0 +-0.779 8.744 -1.761 0 0 0 0 0 0 0 +-0.807 8.747 -1.762 0 0 0 0 0 0 0 +-0.833 8.729 -1.759 0 0 0 0 0 0 0 +-0.861 8.732 -1.76 0 0 0 0 0 0 0 +-0.876 8.739 -1.762 0 0 0 0 0 0 0 +-0.903 8.732 -1.761 0 0 0 0 0 0 0 +-0.931 8.739 -1.763 0 0 0 0 0 0 0 +-0.959 8.736 -1.763 0 0 0 0 0 0 0 +-0.985 8.725 -1.761 0 0 0 0 0 0 0 +-1.012 8.718 -1.76 0 0 0 0 0 0 0 +-1.041 8.727 -1.763 0 0 0 0 0 0 0 +-1.054 8.721 -1.762 0 0 0 0 0 0 0 +-1.083 8.727 -1.764 0 0 0 0 0 0 0 +-1.11 8.718 -1.763 0 0 0 0 0 0 0 +-1.139 8.728 -1.766 0 0 0 0 0 0 0 +-1.164 8.711 -1.763 0 0 0 0 0 0 0 +-1.193 8.713 -1.764 0 0 0 0 0 0 0 +-1.22 8.707 -1.764 0 0 0 0 0 0 0 +-1.234 8.707 -1.764 0 0 0 0 0 0 0 +-1.262 8.711 -1.766 0 0 0 0 0 0 0 +-1.289 8.703 -1.765 0 0 0 0 0 0 0 +-1.317 8.701 -1.765 0 0 0 0 0 0 0 +-1.343 8.689 -1.764 0 0 0 0 0 0 0 +-1.37 8.683 -1.763 0 0 0 0 0 0 0 +-1.398 8.685 -1.765 0 0 0 0 0 0 0 +-1.411 8.68 -1.764 0 0 0 0 0 0 0 +-1.439 8.678 -1.765 0 0 0 0 0 0 0 +-1.466 8.671 -1.764 0 0 0 0 0 0 0 +-1.491 8.655 -1.762 0 0 0 0 0 0 0 +-1.517 8.647 -1.761 0 0 0 0 0 0 0 +-1.549 8.667 -1.766 0 0 0 0 0 0 0 +-1.577 8.664 -1.767 0 0 0 0 0 0 0 +-1.601 8.645 -1.764 0 0 0 0 0 0 0 +-1.617 8.652 -1.766 0 0 0 0 0 0 0 +-1.646 8.657 -1.768 0 0 0 0 0 0 0 +-1.674 8.656 -1.769 0 0 0 0 0 0 0 +-1.707 8.679 -1.775 0 0 0 0 0 0 0 +-1.753 8.766 -1.795 0 0 0 0 0 0 0 +-1.787 8.795 -1.803 0 0 0 0 0 0 0 +-1.804 8.735 -1.791 0 0 0 0 0 0 0 +-1.838 8.696 -1.784 0 0 0 0 0 0 0 +-1.863 8.677 -1.781 0 0 0 0 0 0 0 +-1.892 8.682 -1.784 0 0 0 0 0 0 0 +-1.91 8.634 -1.775 0 0 0 0 0 0 0 +-1.931 8.602 -1.769 0 0 0 0 0 0 0 +-1.961 8.607 -1.771 0 0 0 0 0 0 0 +-1.97 8.583 -1.767 0 0 0 0 0 0 0 +-1.998 8.582 -1.768 0 0 0 0 0 0 0 +-2.027 8.586 -1.77 0 0 0 0 0 0 0 +-2.053 8.574 -1.769 0 0 0 0 0 0 0 +-2.08 8.567 -1.769 0 0 0 0 0 0 0 +-2.109 8.572 -1.771 0 0 0 0 0 0 0 +-2.135 8.56 -1.77 0 0 0 0 0 0 0 +-2.149 8.56 -1.771 0 0 0 0 0 0 0 +-2.179 8.565 -1.773 0 0 0 0 0 0 0 +-2.203 8.544 -1.77 0 0 0 0 0 0 0 +-2.23 8.539 -1.771 0 0 0 0 0 0 0 +-2.262 8.553 -1.776 0 0 0 0 0 0 0 +-2.283 8.525 -1.771 0 0 0 0 0 0 0 +-2.311 8.52 -1.771 0 0 0 0 0 0 0 +-2.34 8.522 -1.773 0 0 0 0 0 0 0 +-2.351 8.511 -1.772 0 0 0 0 0 0 0 +-2.38 8.509 -1.773 0 0 0 0 0 0 0 +-2.41 8.513 -1.776 0 0 0 0 0 0 0 +-2.431 8.486 -1.771 0 0 0 0 0 0 0 +-2.46 8.488 -1.773 0 0 0 0 0 0 0 +-2.491 8.495 -1.777 0 0 0 0 0 0 0 +-2.517 8.484 -1.776 0 0 0 0 0 0 0 +-2.526 8.465 -1.773 0 0 0 0 0 0 0 +-2.56 8.483 -1.778 0 0 0 0 0 0 0 +-2.584 8.464 -1.776 0 0 0 0 0 0 0 +-2.611 8.457 -1.776 0 0 0 0 0 0 0 +-2.641 8.462 -1.779 0 0 0 0 0 0 0 +-2.666 8.446 -1.778 0 0 0 0 0 0 0 +-2.692 8.436 -1.777 0 0 0 0 0 0 0 +-2.708 8.443 -1.78 0 0 0 0 0 0 0 +-2.73 8.42 -1.776 0 0 0 0 0 0 0 +-2.761 8.424 -1.779 0 0 0 0 0 0 0 +-2.792 8.428 -1.782 0 0 0 0 0 0 0 +-2.815 8.41 -1.78 0 0 0 0 0 0 0 +-2.844 8.41 -1.782 0 0 0 0 0 0 0 +-2.877 8.418 -1.786 0 0 0 0 0 0 0 +-2.882 8.391 -1.781 0 0 0 0 0 0 0 +-2.912 8.393 -1.784 0 0 0 0 0 0 0 +-2.94 8.388 -1.784 0 0 0 0 0 0 0 +-2.966 8.379 -1.784 0 0 0 0 0 0 0 +-2.993 8.371 -1.785 0 0 0 0 0 0 0 +-3.024 8.373 -1.787 0 0 0 0 0 0 0 +-3.047 8.354 -1.785 0 0 0 0 0 0 0 +-3.074 8.348 -1.786 0 0 0 0 0 0 0 +-3.093 8.358 -1.789 0 0 0 0 0 0 0 +-3.115 8.337 -1.787 0 0 0 0 0 0 0 +-3.147 8.342 -1.79 0 0 0 0 0 0 0 +-3.184 8.361 -1.797 0 0 0 0 0 0 0 +-3.205 8.337 -1.794 0 0 0 0 0 0 0 +-3.232 8.33 -1.794 0 0 0 0 0 0 0 +-3.271 8.353 -1.802 0 0 0 0 0 0 0 +-3.284 8.346 -1.802 0 0 0 0 0 0 0 +-3.324 8.372 -1.81 0 0 0 0 0 0 0 +-3.372 8.414 -1.822 0 0 0 0 0 0 0 +-3.392 8.387 -1.818 0 0 0 0 0 0 0 +-3.428 8.401 -1.824 0 0 0 0 0 0 0 +-3.474 8.438 -1.835 0 0 0 0 0 0 0 +-3.492 8.405 -1.83 0 0 0 0 0 0 0 +-3.5 8.387 -1.827 0 0 0 0 0 0 0 +-3.516 8.352 -1.822 0 0 0 0 0 0 0 +-3.53 8.313 -1.815 0 0 0 0 0 0 0 +-3.551 8.289 -1.812 0 0 0 0 0 0 0 +-3.574 8.272 -1.811 0 0 0 0 0 0 0 +-3.582 8.22 -1.801 0 0 0 0 0 0 0 +-3.604 8.2 -1.799 0 0 0 0 0 0 0 +-3.611 8.181 -1.796 0 0 0 0 0 0 0 +-3.631 8.158 -1.793 0 0 0 0 0 0 0 +-3.662 8.157 -1.796 0 0 0 0 0 0 0 +-3.687 8.145 -1.796 0 0 0 0 0 0 0 +-3.713 8.134 -1.796 0 0 0 0 0 0 0 +-3.742 8.129 -1.797 0 0 0 0 0 0 0 +-3.768 8.119 -1.798 0 0 0 0 0 0 0 +-3.788 8.095 -1.795 0 0 0 0 0 0 0 +-3.799 8.085 -1.794 0 0 0 0 0 0 0 +-3.823 8.071 -1.794 0 0 0 0 0 0 0 +-3.845 8.052 -1.792 0 0 0 0 0 0 0 +-3.876 8.051 -1.794 0 0 0 0 0 0 0 +-3.899 8.035 -1.794 0 0 0 0 0 0 0 +-3.923 8.019 -1.793 0 0 0 0 0 0 0 +-3.951 8.012 -1.794 0 0 0 0 0 0 0 +-3.964 8.008 -1.794 0 0 0 0 0 0 0 +-3.991 7.999 -1.795 0 0 0 0 0 0 0 +-4.015 7.984 -1.795 0 0 0 0 0 0 0 +-4.039 7.97 -1.794 0 0 0 0 0 0 0 +-4.062 7.952 -1.793 0 0 0 0 0 0 0 +-4.088 7.943 -1.794 0 0 0 0 0 0 0 +-4.112 7.928 -1.794 0 0 0 0 0 0 0 +-4.13 7.932 -1.796 0 0 0 0 0 0 0 +-4.153 7.914 -1.795 0 0 0 0 0 0 0 +-4.179 7.904 -1.796 0 0 0 0 0 0 0 +-4.198 7.879 -1.793 0 0 0 0 0 0 0 +-4.227 7.874 -1.795 0 0 0 0 0 0 0 +-4.254 7.864 -1.796 0 0 0 0 0 0 0 +-4.282 7.858 -1.797 0 0 0 0 0 0 0 +-4.291 7.844 -1.796 0 0 0 0 0 0 0 +-4.316 7.833 -1.796 0 0 0 0 0 0 0 +-4.34 7.817 -1.796 0 0 0 0 0 0 0 +-4.363 7.802 -1.795 0 0 0 0 0 0 0 +-4.389 7.79 -1.796 0 0 0 0 0 0 0 +-4.415 7.779 -1.797 0 0 0 0 0 0 0 +-4.439 7.764 -1.796 0 0 0 0 0 0 0 +-4.465 7.753 -1.797 0 0 0 0 0 0 0 +-4.471 7.736 -1.794 0 0 0 0 0 0 0 +-4.502 7.734 -1.797 0 0 0 0 0 0 0 +-4.522 7.711 -1.795 0 0 0 0 0 0 0 +-4.548 7.7 -1.796 0 0 0 0 0 0 0 +-4.572 7.686 -1.796 0 0 0 0 0 0 0 +-4.599 7.677 -1.797 0 0 0 0 0 0 0 +-4.621 7.659 -1.797 0 0 0 0 0 0 0 +-4.634 7.653 -1.797 0 0 0 0 0 0 0 +-4.653 7.63 -1.795 0 0 0 0 0 0 0 +-4.685 7.629 -1.798 0 0 0 0 0 0 0 +-4.709 7.614 -1.798 0 0 0 0 0 0 0 +-4.728 7.591 -1.796 0 0 0 0 0 0 0 +-4.756 7.583 -1.798 0 0 0 0 0 0 0 +-4.78 7.568 -1.798 0 0 0 0 0 0 0 +-4.8 7.548 -1.797 0 0 0 0 0 0 0 +-4.827 7.563 -1.802 0 0 0 0 0 0 0 +-4.849 7.545 -1.802 0 0 0 0 0 0 0 +-4.884 7.547 -1.806 0 0 0 0 0 0 0 +-4.931 7.568 -1.815 0 0 0 0 0 0 0 +-4.985 7.598 -1.827 0 0 0 0 0 0 0 +-5.02 7.599 -1.831 0 0 0 0 0 0 0 +-5.025 7.555 -1.824 0 0 0 0 0 0 0 +-5.04 7.552 -1.825 0 0 0 0 0 0 0 +-5.062 7.533 -1.825 0 0 0 0 0 0 0 +-5.069 7.493 -1.818 0 0 0 0 0 0 0 +-5.1 7.488 -1.821 0 0 0 0 0 0 0 +-5.105 7.445 -1.814 0 0 0 0 0 0 0 +-5.116 7.411 -1.81 0 0 0 0 0 0 0 +-5.139 7.395 -1.81 0 0 0 0 0 0 0 +-5.139 7.369 -1.805 0 0 0 0 0 0 0 +-5.158 7.348 -1.804 0 0 0 0 0 0 0 +-5.186 7.339 -1.805 0 0 0 0 0 0 0 +-5.201 7.311 -1.802 0 0 0 0 0 0 0 +-5.229 7.301 -1.804 0 0 0 0 0 0 0 +-5.25 7.283 -1.804 0 0 0 0 0 0 0 +-5.266 7.257 -1.801 0 0 0 0 0 0 0 +-5.27 7.238 -1.798 0 0 0 0 0 0 0 +-5.293 7.223 -1.799 0 0 0 0 0 0 0 +-5.308 7.195 -1.796 0 0 0 0 0 0 0 +-5.338 7.188 -1.798 0 0 0 0 0 0 0 +-5.355 7.165 -1.797 0 0 0 0 0 0 0 +-5.379 7.149 -1.797 0 0 0 0 0 0 0 +-5.405 7.137 -1.798 0 0 0 0 0 0 0 +-5.424 7.115 -1.797 0 0 0 0 0 0 0 +-5.428 7.098 -1.794 0 0 0 0 0 0 0 +-5.448 7.077 -1.794 0 0 0 0 0 0 0 +-5.47 7.06 -1.794 0 0 0 0 0 0 0 +-5.487 7.037 -1.792 0 0 0 0 0 0 0 +-5.513 7.024 -1.793 0 0 0 0 0 0 0 +-5.531 7.002 -1.792 0 0 0 0 0 0 0 +-5.548 6.979 -1.79 0 0 0 0 0 0 0 +-5.551 6.959 -1.787 0 0 0 0 0 0 0 +-5.576 6.946 -1.789 0 0 0 0 0 0 0 +-5.59 6.918 -1.786 0 0 0 0 0 0 0 +-5.609 6.898 -1.785 0 0 0 0 0 0 0 +-5.625 6.874 -1.783 0 0 0 0 0 0 0 +-5.638 6.846 -1.78 0 0 0 0 0 0 0 +-5.653 6.82 -1.778 0 0 0 0 0 0 0 +-5.667 6.815 -1.779 0 0 0 0 0 0 0 +-5.681 6.788 -1.776 0 0 0 0 0 0 0 +-5.693 6.759 -1.773 0 0 0 0 0 0 0 +-5.707 6.733 -1.771 0 0 0 0 0 0 0 +-5.718 6.703 -1.768 0 0 0 0 0 0 0 +-5.724 6.668 -1.763 0 0 0 0 0 0 0 +-5.736 6.64 -1.76 0 0 0 0 0 0 0 +-5.746 6.63 -1.76 0 0 0 0 0 0 0 +-5.753 6.597 -1.755 0 0 0 0 0 0 0 +-5.777 6.582 -1.756 0 0 0 0 0 0 0 +-5.79 6.555 -1.754 0 0 0 0 0 0 0 +-5.797 6.522 -1.75 0 0 0 0 0 0 0 +-5.822 6.508 -1.751 0 0 0 0 0 0 0 +-5.843 6.491 -1.751 0 0 0 0 0 0 0 +-5.847 6.475 -1.749 0 0 0 0 0 0 0 +-5.868 6.458 -1.75 0 0 0 0 0 0 0 +-5.89 6.441 -1.75 0 0 0 0 0 0 0 +-5.889 6.399 -1.743 0 0 0 0 0 0 0 +-5.922 6.395 -1.747 0 0 0 0 0 0 0 +-5.941 6.375 -1.747 0 0 0 0 0 0 0 +-5.956 6.351 -1.745 0 0 0 0 0 0 0 +-5.984 6.34 -1.748 0 0 0 0 0 0 0 +-5.987 6.324 -1.746 0 0 0 0 0 0 0 +-6.019 6.318 -1.75 0 0 0 0 0 0 0 +-6.033 6.293 -1.748 0 0 0 0 0 0 0 +-6.046 6.267 -1.746 0 0 0 0 0 0 0 +-6.076 6.258 -1.749 0 0 0 0 0 0 0 +-6.094 6.237 -1.748 0 0 0 0 0 0 0 +-6.109 6.214 -1.747 0 0 0 0 0 0 0 +-6.131 6.217 -1.751 0 0 0 0 0 0 0 +-6.154 6.2 -1.752 0 0 0 0 0 0 0 +-6.173 6.181 -1.752 0 0 0 0 0 0 0 +-6.195 6.164 -1.752 0 0 0 0 0 0 0 +-6.209 6.139 -1.751 0 0 0 0 0 0 0 +-6.225 6.117 -1.75 0 0 0 0 0 0 0 +-6.25 6.103 -1.752 0 0 0 0 0 0 0 +-6.256 6.089 -1.75 0 0 0 0 0 0 0 +-6.282 6.076 -1.752 0 0 0 0 0 0 0 +-6.298 6.054 -1.752 0 0 0 0 0 0 0 +-6.327 6.043 -1.755 0 0 0 0 0 0 0 +-6.346 6.023 -1.755 0 0 0 0 0 0 0 +-6.356 5.995 -1.752 0 0 0 0 0 0 0 +-6.386 5.986 -1.755 0 0 0 0 0 0 0 +-6.392 5.972 -1.754 0 0 0 0 0 0 0 +-6.416 5.957 -1.756 0 0 0 0 0 0 0 +-6.436 5.938 -1.756 0 0 0 0 0 0 0 +-6.453 5.917 -1.756 0 0 0 0 0 0 0 +-6.476 5.9 -1.757 0 0 0 0 0 0 0 +-6.508 5.892 -1.761 0 0 0 0 0 0 0 +-6.512 5.858 -1.757 0 0 0 0 0 0 0 +-6.533 5.859 -1.76 0 0 0 0 0 0 0 +-6.551 5.838 -1.76 0 0 0 0 0 0 0 +-6.574 5.821 -1.761 0 0 0 0 0 0 0 +-6.592 5.801 -1.761 0 0 0 0 0 0 0 +-6.612 5.781 -1.762 0 0 0 0 0 0 0 +-6.636 5.765 -1.763 0 0 0 0 0 0 0 +-6.66 5.75 -1.765 0 0 0 0 0 0 0 +-6.673 5.725 -1.764 0 0 0 0 0 0 0 +-6.691 5.722 -1.766 0 0 0 0 0 0 0 +-6.694 5.688 -1.762 0 0 0 0 0 0 0 +-6.727 5.68 -1.766 0 0 0 0 0 0 0 +-6.746 5.66 -1.767 0 0 0 0 0 0 0 +-6.754 5.63 -1.764 0 0 0 0 0 0 0 +-6.794 5.627 -1.77 0 0 0 0 0 0 0 +-6.807 5.602 -1.769 0 0 0 0 0 0 0 +-6.801 5.579 -1.765 0 0 0 0 0 0 0 +-6.83 5.568 -1.768 0 0 0 0 0 0 0 +-6.848 5.546 -1.768 0 0 0 0 0 0 0 +-6.868 5.527 -1.769 0 0 0 0 0 0 0 +-6.887 5.507 -1.769 0 0 0 0 0 0 0 +-6.9 5.481 -1.768 0 0 0 0 0 0 0 +-6.921 5.463 -1.769 0 0 0 0 0 0 0 +-6.928 5.451 -1.769 0 0 0 0 0 0 0 +-6.944 5.428 -1.768 0 0 0 0 0 0 0 +-6.967 5.411 -1.77 0 0 0 0 0 0 0 +-6.983 5.388 -1.77 0 0 0 0 0 0 0 +-7.004 5.37 -1.771 0 0 0 0 0 0 0 +-7.021 5.348 -1.771 0 0 0 0 0 0 0 +-7.042 5.329 -1.772 0 0 0 0 0 0 0 +-7.046 5.315 -1.771 0 0 0 0 0 0 0 +-7.06 5.29 -1.77 0 0 0 0 0 0 0 +-7.081 5.271 -1.771 0 0 0 0 0 0 0 +-7.101 5.251 -1.772 0 0 0 0 0 0 0 +-7.103 5.219 -1.768 0 0 0 0 0 0 0 +-7.126 5.201 -1.77 0 0 0 0 0 0 0 +-7.139 5.176 -1.769 0 0 0 0 0 0 0 +-7.161 5.158 -1.771 0 0 0 0 0 0 0 +-7.173 5.149 -1.772 0 0 0 0 0 0 0 +-7.179 5.12 -1.769 0 0 0 0 0 0 0 +-7.206 5.105 -1.772 0 0 0 0 0 0 0 +-7.211 5.075 -1.769 0 0 0 0 0 0 0 +-7.242 5.062 -1.773 0 0 0 0 0 0 0 +-7.248 5.033 -1.77 0 0 0 0 0 0 0 +-7.27 5.014 -1.772 0 0 0 0 0 0 0 +-7.279 5.004 -1.773 0 0 0 0 0 0 0 +-7.303 4.987 -1.775 0 0 0 0 0 0 0 +-7.311 4.958 -1.773 0 0 0 0 0 0 0 +-7.323 4.933 -1.772 0 0 0 0 0 0 0 +-7.339 4.91 -1.772 0 0 0 0 0 0 0 +-7.359 4.89 -1.773 0 0 0 0 0 0 0 +-7.175 4.736 -1.722 0 0 0 0 0 0 0 +-6.766 4.453 -1.615 0 0 0 0 0 0 0 +-6.757 4.417 -1.609 0 0 0 0 0 0 0 +-6.773 4.397 -1.61 0 0 0 0 0 0 0 +-6.782 4.372 -1.608 0 0 0 0 0 0 0 +-6.804 4.356 -1.611 0 0 0 0 0 0 0 +-6.835 4.346 -1.615 0 0 0 0 0 0 0 +-6.985 4.41 -1.65 0 0 0 0 0 0 0 +-7.445 4.682 -1.764 0 0 0 0 0 0 0 +-7.456 4.656 -1.763 0 0 0 0 0 0 0 +-7.467 4.631 -1.763 0 0 0 0 0 0 0 +-7.497 4.617 -1.766 0 0 0 0 0 0 0 +-7.498 4.585 -1.763 0 0 0 0 0 0 0 +-7.512 4.561 -1.763 0 0 0 0 0 0 0 +-7.513 4.53 -1.76 0 0 0 0 0 0 0 +-7.532 4.525 -1.763 0 0 0 0 0 0 0 +-7.536 4.495 -1.76 0 0 0 0 0 0 0 +-7.547 4.47 -1.759 0 0 0 0 0 0 0 +-7.566 4.449 -1.76 0 0 0 0 0 0 0 +-7.575 4.422 -1.759 0 0 0 0 0 0 0 +-7.587 4.397 -1.759 0 0 0 0 0 0 0 +-7.59 4.368 -1.756 0 0 0 0 0 0 0 +-7.599 4.357 -1.757 0 0 0 0 0 0 0 +-7.614 4.334 -1.757 0 0 0 0 0 0 0 +-7.621 4.306 -1.755 0 0 0 0 0 0 0 +-7.633 4.281 -1.755 0 0 0 0 0 0 0 +-7.646 4.257 -1.755 0 0 0 0 0 0 0 +-7.649 4.227 -1.752 0 0 0 0 0 0 0 +-7.661 4.202 -1.752 0 0 0 0 0 0 0 +-7.674 4.178 -1.752 0 0 0 0 0 0 0 +-7.674 4.162 -1.75 0 0 0 0 0 0 0 +-7.676 4.133 -1.748 0 0 0 0 0 0 0 +-7.691 4.11 -1.748 0 0 0 0 0 0 0 +-7.7 4.084 -1.747 0 0 0 0 0 0 0 +-7.71 4.058 -1.747 0 0 0 0 0 0 0 +-7.721 4.032 -1.746 0 0 0 0 0 0 0 +-7.744 4.013 -1.749 0 0 0 0 0 0 0 +-7.733 3.992 -1.744 0 0 0 0 0 0 0 +-7.752 3.972 -1.746 0 0 0 0 0 0 0 +-7.742 3.936 -1.741 0 0 0 0 0 0 0 +-7.333 3.7 -1.64 0 0 0 0 0 0 0 +-7.367 3.689 -1.645 0 0 0 0 0 0 0 +-7.684 3.816 -1.718 0 0 0 0 0 0 0 +-7.812 3.849 -1.746 0 0 0 0 0 0 0 +-7.813 3.834 -1.744 0 0 0 0 0 0 0 +-7.818 3.806 -1.743 0 0 0 0 0 0 0 +-7.838 3.785 -1.745 0 0 0 0 0 0 0 +-7.847 3.759 -1.744 0 0 0 0 0 0 0 +-7.867 3.739 -1.746 0 0 0 0 0 0 0 +-7.884 3.716 -1.747 0 0 0 0 0 0 0 +-7.898 3.692 -1.748 0 0 0 0 0 0 0 +-7.925 3.69 -1.753 0 0 0 0 0 0 0 +-7.934 3.664 -1.752 0 0 0 0 0 0 0 +-7.957 3.644 -1.755 0 0 0 0 0 0 0 +-7.972 3.621 -1.756 0 0 0 0 0 0 0 +-7.976 3.592 -1.754 0 0 0 0 0 0 0 +-7.983 3.566 -1.753 0 0 0 0 0 0 0 +-7.998 3.542 -1.754 0 0 0 0 0 0 0 +-8.013 3.533 -1.756 0 0 0 0 0 0 0 +-8.038 3.514 -1.76 0 0 0 0 0 0 0 +-8.04 3.485 -1.757 0 0 0 0 0 0 0 +-8.046 3.458 -1.756 0 0 0 0 0 0 0 +-8.076 3.441 -1.761 0 0 0 0 0 0 0 +-8.109 3.425 -1.766 0 0 0 0 0 0 0 +-8.127 3.402 -1.768 0 0 0 0 0 0 0 +-8.155 3.384 -1.772 0 0 0 0 0 0 0 +-8.141 3.363 -1.767 0 0 0 0 0 0 0 +-8.207 3.36 -1.78 0 0 0 0 0 0 0 +-8.236 3.342 -1.784 0 0 0 0 0 0 0 +-8.238 3.312 -1.782 0 0 0 0 0 0 0 +-8.248 3.286 -1.782 0 0 0 0 0 0 0 +-8.273 3.266 -1.786 0 0 0 0 0 0 0 +-8.257 3.23 -1.78 0 0 0 0 0 0 0 +-8.266 3.219 -1.781 0 0 0 0 0 0 0 +-8.28 3.194 -1.781 0 0 0 0 0 0 0 +-8.292 3.169 -1.782 0 0 0 0 0 0 0 +-8.302 3.143 -1.782 0 0 0 0 0 0 0 +-8.313 3.117 -1.782 0 0 0 0 0 0 0 +-8.321 3.09 -1.782 0 0 0 0 0 0 0 +-8.327 3.063 -1.781 0 0 0 0 0 0 0 +-8.339 3.052 -1.783 0 0 0 0 0 0 0 +-8.353 3.028 -1.784 0 0 0 0 0 0 0 +-8.368 3.003 -1.785 0 0 0 0 0 0 0 +-8.392 2.982 -1.788 0 0 0 0 0 0 0 +-8.399 2.955 -1.788 0 0 0 0 0 0 0 +-8.399 2.926 -1.786 0 0 0 0 0 0 0 +-8.416 2.902 -1.787 0 0 0 0 0 0 0 +-8.426 2.89 -1.789 0 0 0 0 0 0 0 +-8.44 2.866 -1.79 0 0 0 0 0 0 0 +-8.446 2.838 -1.789 0 0 0 0 0 0 0 +-8.453 2.811 -1.789 0 0 0 0 0 0 0 +-8.482 2.791 -1.793 0 0 0 0 0 0 0 +-8.483 2.762 -1.791 0 0 0 0 0 0 0 +-8.488 2.734 -1.791 0 0 0 0 0 0 0 +-8.492 2.721 -1.791 0 0 0 0 0 0 0 +-8.507 2.696 -1.792 0 0 0 0 0 0 0 +-8.519 2.67 -1.793 0 0 0 0 0 0 0 +-8.535 2.646 -1.794 0 0 0 0 0 0 0 +-8.537 2.617 -1.793 0 0 0 0 0 0 0 +-8.551 2.592 -1.794 0 0 0 0 0 0 0 +-8.568 2.568 -1.797 0 0 0 0 0 0 0 +-8.584 2.558 -1.799 0 0 0 0 0 0 0 +-8.592 2.531 -1.799 0 0 0 0 0 0 0 +-8.6 2.504 -1.799 0 0 0 0 0 0 0 +-8.604 2.476 -1.798 0 0 0 0 0 0 0 +-8.613 2.449 -1.799 0 0 0 0 0 0 0 +-8.625 2.423 -1.799 0 0 0 0 0 0 0 +-8.662 2.404 -1.806 0 0 0 0 0 0 0 +-8.653 2.387 -1.803 0 0 0 0 0 0 0 +-8.657 2.359 -1.802 0 0 0 0 0 0 0 +-8.674 2.334 -1.804 0 0 0 0 0 0 0 +-8.683 2.307 -1.805 0 0 0 0 0 0 0 +-8.692 2.281 -1.805 0 0 0 0 0 0 0 +-8.705 2.255 -1.807 0 0 0 0 0 0 0 +-8.719 2.229 -1.808 0 0 0 0 0 0 0 +-8.719 2.215 -1.807 0 0 0 0 0 0 0 +-8.713 2.184 -1.804 0 0 0 0 0 0 0 +-8.729 2.159 -1.807 0 0 0 0 0 0 0 +-7.158 1.751 -1.458 0 0 0 0 0 0 0 +-7.121 1.719 -1.449 0 0 0 0 0 0 0 +-7.123 1.696 -1.448 0 0 0 0 0 0 0 +-7.147 1.678 -1.452 0 0 0 0 0 0 0 +-7.093 1.653 -1.44 0 0 0 0 0 0 0 +-7.001 1.609 -1.418 0 0 0 0 0 0 0 +-6.981 1.581 -1.413 0 0 0 0 0 0 0 +-6.965 1.555 -1.408 0 0 0 0 0 0 0 +-6.971 1.533 -1.409 0 0 0 0 0 0 0 +-6.969 1.51 -1.407 0 0 0 0 0 0 0 +-6.945 1.482 -1.401 0 0 0 0 0 0 0 +-6.99 1.457 -1.409 0 0 0 0 0 0 0 +-7.004 1.437 -1.411 0 0 0 0 0 0 0 +-6.983 1.41 -1.406 0 0 0 0 0 0 0 +-6.925 1.376 -1.392 0 0 0 0 0 0 0 +-6.946 1.357 -1.396 0 0 0 0 0 0 0 +-6.929 1.332 -1.391 0 0 0 0 0 0 0 +-6.941 1.311 -1.393 0 0 0 0 0 0 0 +-6.932 1.298 -1.39 0 0 0 0 0 0 0 +-6.918 1.273 -1.386 0 0 0 0 0 0 0 +-6.907 1.249 -1.383 0 0 0 0 0 0 0 +-6.876 1.221 -1.376 0 0 0 0 0 0 0 +-6.92 1.206 -1.384 0 0 0 0 0 0 0 +-6.92 1.184 -1.383 0 0 0 0 0 0 0 +-6.937 1.164 -1.386 0 0 0 0 0 0 0 +-6.937 1.142 -1.386 0 0 0 0 0 0 0 +-6.935 1.13 -1.385 0 0 0 0 0 0 0 +-6.954 1.111 -1.388 0 0 0 0 0 0 0 +-6.946 1.087 -1.386 0 0 0 0 0 0 0 +-6.949 1.066 -1.386 0 0 0 0 0 0 0 +-6.955 1.044 -1.386 0 0 0 0 0 0 0 +-6.964 1.023 -1.387 0 0 0 0 0 0 0 +-6.924 0.995 -1.378 0 0 0 0 0 0 0 +-6.906 0.959 -1.373 0 0 0 0 0 0 0 +-6.912 0.938 -1.374 0 0 0 0 0 0 0 +-6.935 0.919 -1.378 0 0 0 0 0 0 0 +-6.934 0.897 -1.377 0 0 0 0 0 0 0 +-6.933 0.875 -1.376 0 0 0 0 0 0 0 +-6.939 0.853 -1.377 0 0 0 0 0 0 0 +-6.939 0.842 -1.377 0 0 0 0 0 0 0 +-6.939 0.82 -1.376 0 0 0 0 0 0 0 +-6.938 0.798 -1.376 0 0 0 0 0 0 0 +-6.95 0.777 -1.378 0 0 0 0 0 0 0 +-6.953 0.755 -1.378 0 0 0 0 0 0 0 +-6.959 0.734 -1.378 0 0 0 0 0 0 0 +-6.959 0.712 -1.378 0 0 0 0 0 0 0 +-6.962 0.701 -1.378 0 0 0 0 0 0 0 +-6.978 0.68 -1.381 0 0 0 0 0 0 0 +-6.994 0.66 -1.384 0 0 0 0 0 0 0 +-7.031 0.641 -1.392 0 0 0 0 0 0 0 +-7.052 0.62 -1.396 0 0 0 0 0 0 0 +-7.064 0.599 -1.398 0 0 0 0 0 0 0 +-7.099 0.579 -1.405 0 0 0 0 0 0 0 +-7.125 0.57 -1.411 0 0 0 0 0 0 0 +-7.142 0.549 -1.414 0 0 0 0 0 0 0 +-7.162 0.528 -1.418 0 0 0 0 0 0 0 +-7.165 0.505 -1.418 0 0 0 0 0 0 0 +-7.163 0.483 -1.417 0 0 0 0 0 0 0 +-7.153 0.459 -1.415 0 0 0 0 0 0 0 +-7.172 0.438 -1.419 0 0 0 0 0 0 0 +-7.179 0.416 -1.42 0 0 0 0 0 0 0 +-7.187 0.405 -1.422 0 0 0 0 0 0 0 +-7.198 0.383 -1.424 0 0 0 0 0 0 0 +-7.233 0.362 -1.431 0 0 0 0 0 0 0 +-7.226 0.339 -1.429 0 0 0 0 0 0 0 +-7.229 0.316 -1.43 0 0 0 0 0 0 0 +-7.24 0.294 -1.432 0 0 0 0 0 0 0 +-7.274 0.272 -1.439 0 0 0 0 0 0 0 +-7.302 0.261 -1.445 0 0 0 0 0 0 0 +-7.316 0.239 -1.448 0 0 0 0 0 0 0 +-7.327 0.216 -1.45 0 0 0 0 0 0 0 +-7.357 0.194 -1.456 0 0 0 0 0 0 0 +-7.402 0.172 -1.466 0 0 0 0 0 0 0 +-7.381 0.148 -1.461 0 0 0 0 0 0 0 +-7.381 0.125 -1.461 0 0 0 0 0 0 0 +-7.388 0.113 -1.462 0 0 0 0 0 0 0 +-7.419 0.09 -1.469 0 0 0 0 0 0 0 +-9.113 0.076 -1.833 0 0 0 0 0 0 0 +-9.127 0.048 -1.836 0 0 0 0 0 0 0 +-9.125 0.019 -1.835 0 0 0 0 0 0 0 +-9.109 -0.01 -1.832 0 0 0 0 0 0 0 +-9.113 -0.038 -1.833 0 0 0 0 0 0 0 +-9.117 -0.053 -1.833 0 0 0 0 0 0 0 +-9.121 -0.081 -1.834 0 0 0 0 0 0 0 +-9.109 -0.11 -1.832 0 0 0 0 0 0 0 +-9.638 -0.148 -1.946 0 0 0 0 0 0 0 +-9.641 -0.178 -1.946 0 0 0 0 0 0 0 +-9.641 -0.209 -1.946 0 0 0 0 0 0 0 +-9.644 -0.239 -1.947 0 0 0 0 0 0 0 +-9.643 -0.269 -1.947 0 0 0 0 0 0 0 +-9.64 -0.299 -1.947 0 0 0 0 0 0 0 +-9.648 -0.315 -1.948 0 0 0 0 0 0 0 +-9.643 -0.345 -1.948 0 0 0 0 0 0 0 +-9.642 -0.375 -1.948 0 0 0 0 0 0 0 +-9.636 -0.405 -1.947 0 0 0 0 0 0 0 +-9.629 -0.435 -1.946 0 0 0 0 0 0 0 +-9.632 -0.466 -1.946 0 0 0 0 0 0 0 +-9.644 -0.497 -1.949 0 0 0 0 0 0 0 +-9.643 -0.512 -1.949 0 0 0 0 0 0 0 +-9.641 -0.542 -1.949 0 0 0 0 0 0 0 +-9.642 -0.573 -1.95 0 0 0 0 0 0 0 +-9.624 -0.602 -1.946 0 0 0 0 0 0 0 +-9.63 -0.633 -1.948 0 0 0 0 0 0 0 +-9.632 -0.663 -1.949 0 0 0 0 0 0 0 +-9.632 -0.694 -1.949 0 0 0 0 0 0 0 +-9.621 -0.708 -1.947 0 0 0 0 0 0 0 +-9.636 -0.74 -1.951 0 0 0 0 0 0 0 +-9.632 -0.77 -1.951 0 0 0 0 0 0 0 +-9.624 -0.8 -1.949 0 0 0 0 0 0 0 +-9.619 -0.83 -1.949 0 0 0 0 0 0 0 +-9.63 -0.861 -1.952 0 0 0 0 0 0 0 +-9.627 -0.891 -1.952 0 0 0 0 0 0 0 +-9.616 -0.906 -1.95 0 0 0 0 0 0 0 +-9.627 -0.937 -1.953 0 0 0 0 0 0 0 +-9.614 -0.966 -1.951 0 0 0 0 0 0 0 +-9.605 -0.996 -1.949 0 0 0 0 0 0 0 +-9.598 -1.026 -1.948 0 0 0 0 0 0 0 +-9.597 -1.056 -1.949 0 0 0 0 0 0 0 +-9.588 -1.085 -1.948 0 0 0 0 0 0 0 +-9.607 -1.103 -1.952 0 0 0 0 0 0 0 +-9.586 -1.131 -1.948 0 0 0 0 0 0 0 +-9.592 -1.162 -1.951 0 0 0 0 0 0 0 +-9.595 -1.193 -1.952 0 0 0 0 0 0 0 +-9.587 -1.223 -1.951 0 0 0 0 0 0 0 +-9.583 -1.253 -1.951 0 0 0 0 0 0 0 +-9.587 -1.284 -1.953 0 0 0 0 0 0 0 +-9.579 -1.314 -1.952 0 0 0 0 0 0 0 +-9.581 -1.329 -1.953 0 0 0 0 0 0 0 +-9.576 -1.359 -1.953 0 0 0 0 0 0 0 +-9.568 -1.389 -1.952 0 0 0 0 0 0 0 +-9.568 -1.42 -1.953 0 0 0 0 0 0 0 +-9.563 -1.45 -1.953 0 0 0 0 0 0 0 +-9.553 -1.479 -1.951 0 0 0 0 0 0 0 +-9.552 -1.509 -1.952 0 0 0 0 0 0 0 +-9.544 -1.523 -1.951 0 0 0 0 0 0 0 +-9.539 -1.553 -1.951 0 0 0 0 0 0 0 +-9.54 -1.584 -1.952 0 0 0 0 0 0 0 +-9.531 -1.614 -1.951 0 0 0 0 0 0 0 +-9.533 -1.645 -1.953 0 0 0 0 0 0 0 +-9.528 -1.675 -1.953 0 0 0 0 0 0 0 +-9.506 -1.702 -1.949 0 0 0 0 0 0 0 +-9.522 -1.72 -1.954 0 0 0 0 0 0 0 +-9.498 -1.746 -1.949 0 0 0 0 0 0 0 +-9.498 -1.777 -1.951 0 0 0 0 0 0 0 +-9.504 -1.809 -1.953 0 0 0 0 0 0 0 +-9.486 -1.837 -1.951 0 0 0 0 0 0 0 +-9.49 -1.869 -1.953 0 0 0 0 0 0 0 +-9.486 -1.899 -1.953 0 0 0 0 0 0 0 +-9.477 -1.913 -1.952 0 0 0 0 0 0 0 +-9.46 -1.94 -1.949 0 0 0 0 0 0 0 +-9.454 -1.97 -1.949 0 0 0 0 0 0 0 +-9.451 -2 -1.95 0 0 0 0 0 0 0 +-9.453 -2.032 -1.952 0 0 0 0 0 0 0 +-9.437 -2.059 -1.95 0 0 0 0 0 0 0 +-9.422 -2.087 -1.948 0 0 0 0 0 0 0 +-9.417 -2.101 -1.948 0 0 0 0 0 0 0 +-9.393 -2.127 -1.944 0 0 0 0 0 0 0 +-9.394 -2.158 -1.946 0 0 0 0 0 0 0 +-9.378 -2.186 -1.943 0 0 0 0 0 0 0 +-9.375 -2.216 -1.944 0 0 0 0 0 0 0 +-9.37 -2.246 -1.945 0 0 0 0 0 0 0 +-9.353 -2.273 -1.943 0 0 0 0 0 0 0 +-9.346 -2.287 -1.942 0 0 0 0 0 0 0 +-9.335 -2.315 -1.941 0 0 0 0 0 0 0 +-9.324 -2.343 -1.94 0 0 0 0 0 0 0 +-9.324 -2.375 -1.942 0 0 0 0 0 0 0 +-9.309 -2.402 -1.94 0 0 0 0 0 0 0 +-9.292 -2.429 -1.938 0 0 0 0 0 0 0 +-9.294 -2.46 -1.94 0 0 0 0 0 0 0 +-9.278 -2.472 -1.938 0 0 0 0 0 0 0 +-9.274 -2.502 -1.938 0 0 0 0 0 0 0 +-9.27 -2.532 -1.939 0 0 0 0 0 0 0 +-9.249 -2.558 -1.936 0 0 0 0 0 0 0 +-9.248 -2.589 -1.938 0 0 0 0 0 0 0 +-9.229 -2.615 -1.935 0 0 0 0 0 0 0 +-9.221 -2.644 -1.935 0 0 0 0 0 0 0 +-9.209 -2.672 -1.935 0 0 0 0 0 0 0 +-9.212 -2.688 -1.936 0 0 0 0 0 0 0 +-9.203 -2.717 -1.936 0 0 0 0 0 0 0 +-9.189 -2.744 -1.935 0 0 0 0 0 0 0 +-9.164 -2.768 -1.931 0 0 0 0 0 0 0 +-9.157 -2.797 -1.932 0 0 0 0 0 0 0 +-9.144 -2.825 -1.931 0 0 0 0 0 0 0 +-9.133 -2.853 -1.93 0 0 0 0 0 0 0 +-9.12 -2.865 -1.928 0 0 0 0 0 0 0 +-9.124 -2.897 -1.931 0 0 0 0 0 0 0 +-9.105 -2.923 -1.929 0 0 0 0 0 0 0 +-9.096 -2.952 -1.929 0 0 0 0 0 0 0 +-9.063 -2.972 -1.924 0 0 0 0 0 0 0 +-9.04 -2.996 -1.921 0 0 0 0 0 0 0 +-9.036 -3.027 -1.922 0 0 0 0 0 0 0 +-9.026 -3.039 -1.921 0 0 0 0 0 0 0 +-9.016 -3.067 -1.921 0 0 0 0 0 0 0 +-8.997 -3.092 -1.919 0 0 0 0 0 0 0 +-8.991 -3.122 -1.92 0 0 0 0 0 0 0 +-8.97 -3.146 -1.917 0 0 0 0 0 0 0 +-8.944 -3.168 -1.913 0 0 0 0 0 0 0 +-8.93 -3.195 -1.912 0 0 0 0 0 0 0 +-8.936 -3.213 -1.915 0 0 0 0 0 0 0 +-8.921 -3.239 -1.914 0 0 0 0 0 0 0 +-8.899 -3.263 -1.911 0 0 0 0 0 0 0 +-8.88 -3.288 -1.909 0 0 0 0 0 0 0 +-8.855 -3.31 -1.906 0 0 0 0 0 0 0 +-8.854 -3.341 -1.908 0 0 0 0 0 0 0 +-8.818 -3.359 -1.902 0 0 0 0 0 0 0 +-8.812 -3.373 -1.902 0 0 0 0 0 0 0 +-8.802 -3.401 -1.902 0 0 0 0 0 0 0 +-8.771 -3.421 -1.897 0 0 0 0 0 0 0 +-8.769 -3.452 -1.899 0 0 0 0 0 0 0 +-8.749 -3.476 -1.897 0 0 0 0 0 0 0 +-8.736 -3.502 -1.897 0 0 0 0 0 0 0 +-8.711 -3.524 -1.893 0 0 0 0 0 0 0 +-8.707 -3.538 -1.894 0 0 0 0 0 0 0 +-8.674 -3.557 -1.889 0 0 0 0 0 0 0 +-8.661 -3.583 -1.888 0 0 0 0 0 0 0 +-8.648 -3.61 -1.888 0 0 0 0 0 0 0 +-8.631 -3.634 -1.887 0 0 0 0 0 0 0 +-8.611 -3.658 -1.885 0 0 0 0 0 0 0 +-8.603 -3.686 -1.886 0 0 0 0 0 0 0 +-8.588 -3.696 -1.883 0 0 0 0 0 0 0 +-8.564 -3.717 -1.88 0 0 0 0 0 0 0 +-8.552 -3.744 -1.88 0 0 0 0 0 0 0 +-8.535 -3.769 -1.879 0 0 0 0 0 0 0 +-8.536 -3.801 -1.882 0 0 0 0 0 0 0 +-8.504 -3.819 -1.878 0 0 0 0 0 0 0 +-8.501 -3.85 -1.88 0 0 0 0 0 0 0 +-8.486 -3.859 -1.878 0 0 0 0 0 0 0 +-8.469 -3.883 -1.876 0 0 0 0 0 0 0 +-8.449 -3.907 -1.875 0 0 0 0 0 0 0 +-8.432 -3.931 -1.873 0 0 0 0 0 0 0 +-8.433 -3.964 -1.877 0 0 0 0 0 0 0 +-8.4 -3.98 -1.872 0 0 0 0 0 0 0 +-8.385 -4.006 -1.871 0 0 0 0 0 0 0 +-8.381 -4.02 -1.872 0 0 0 0 0 0 0 +-8.37 -4.047 -1.872 0 0 0 0 0 0 0 +-8.348 -4.069 -1.87 0 0 0 0 0 0 0 +-8.332 -4.093 -1.869 0 0 0 0 0 0 0 +-8.328 -4.124 -1.871 0 0 0 0 0 0 0 +-8.299 -4.142 -1.867 0 0 0 0 0 0 0 +-8.291 -4.171 -1.869 0 0 0 0 0 0 0 +-8.273 -4.194 -1.867 0 0 0 0 0 0 0 +-8.258 -4.203 -1.865 0 0 0 0 0 0 0 +-8.251 -4.232 -1.867 0 0 0 0 0 0 0 +-8.243 -4.261 -1.868 0 0 0 0 0 0 0 +-8.216 -4.279 -1.865 0 0 0 0 0 0 0 +-8.209 -4.309 -1.867 0 0 0 0 0 0 0 +-8.194 -4.334 -1.866 0 0 0 0 0 0 0 +-8.172 -4.355 -1.864 0 0 0 0 0 0 0 +-8.163 -4.367 -1.864 0 0 0 0 0 0 0 +-8.151 -4.393 -1.864 0 0 0 0 0 0 0 +-8.132 -4.416 -1.863 0 0 0 0 0 0 0 +-8.106 -4.435 -1.86 0 0 0 0 0 0 0 +-8.094 -4.461 -1.86 0 0 0 0 0 0 0 +-8.072 -4.482 -1.858 0 0 0 0 0 0 0 +-8.066 -4.512 -1.86 0 0 0 0 0 0 0 +-8.052 -4.521 -1.859 0 0 0 0 0 0 0 +-8.039 -4.547 -1.859 0 0 0 0 0 0 0 +-8.025 -4.572 -1.859 0 0 0 0 0 0 0 +-8.006 -4.595 -1.858 0 0 0 0 0 0 0 +-7.988 -4.618 -1.857 0 0 0 0 0 0 0 +-7.977 -4.645 -1.858 0 0 0 0 0 0 0 +-7.954 -4.665 -1.856 0 0 0 0 0 0 0 +-7.94 -4.673 -1.854 0 0 0 0 0 0 0 +-7.92 -4.695 -1.853 0 0 0 0 0 0 0 +-7.907 -4.721 -1.853 0 0 0 0 0 0 0 +-7.893 -4.747 -1.854 0 0 0 0 0 0 0 +-7.88 -4.773 -1.854 0 0 0 0 0 0 0 +-7.853 -4.79 -1.851 0 0 0 0 0 0 0 +-7.828 -4.809 -1.849 0 0 0 0 0 0 0 +-7.832 -4.828 -1.852 0 0 0 0 0 0 0 +-7.817 -4.853 -1.852 0 0 0 0 0 0 0 +-7.799 -4.875 -1.851 0 0 0 0 0 0 0 +-7.783 -4.9 -1.851 0 0 0 0 0 0 0 +-7.763 -4.921 -1.849 0 0 0 0 0 0 0 +-7.747 -4.945 -1.849 0 0 0 0 0 0 0 +-7.732 -4.97 -1.849 0 0 0 0 0 0 0 +-7.721 -4.98 -1.849 0 0 0 0 0 0 0 +-7.712 -5.008 -1.85 0 0 0 0 0 0 0 +-7.694 -5.031 -1.85 0 0 0 0 0 0 0 +-7.68 -5.057 -1.85 0 0 0 0 0 0 0 +-7.667 -5.083 -1.851 0 0 0 0 0 0 0 +-7.648 -5.105 -1.85 0 0 0 0 0 0 0 +-7.637 -5.132 -1.852 0 0 0 0 0 0 0 +-7.635 -5.148 -1.853 0 0 0 0 0 0 0 +-7.616 -5.17 -1.852 0 0 0 0 0 0 0 +-7.592 -5.189 -1.85 0 0 0 0 0 0 0 +-7.572 -5.21 -1.849 0 0 0 0 0 0 0 +-7.552 -5.232 -1.849 0 0 0 0 0 0 0 +-7.536 -5.255 -1.849 0 0 0 0 0 0 0 +-7.526 -5.284 -1.85 0 0 0 0 0 0 0 +-7.514 -5.311 -1.852 0 0 0 0 0 0 0 +-7.51 -5.326 -1.853 0 0 0 0 0 0 0 +-7.484 -5.343 -1.85 0 0 0 0 0 0 0 +-7.467 -5.366 -1.85 0 0 0 0 0 0 0 +-7.453 -5.392 -1.851 0 0 0 0 0 0 0 +-7.441 -5.419 -1.852 0 0 0 0 0 0 0 +-7.429 -5.445 -1.854 0 0 0 0 0 0 0 +-7.412 -5.469 -1.854 0 0 0 0 0 0 0 +-7.405 -5.482 -1.854 0 0 0 0 0 0 0 +-7.378 -5.498 -1.852 0 0 0 0 0 0 0 +-7.37 -5.528 -1.854 0 0 0 0 0 0 0 +-7.353 -5.551 -1.854 0 0 0 0 0 0 0 +-7.341 -5.579 -1.856 0 0 0 0 0 0 0 +-7.319 -5.598 -1.854 0 0 0 0 0 0 0 +-7.303 -5.623 -1.855 0 0 0 0 0 0 0 +-7.294 -5.634 -1.855 0 0 0 0 0 0 0 +-7.281 -5.661 -1.856 0 0 0 0 0 0 0 +-7.259 -5.68 -1.855 0 0 0 0 0 0 0 +-7.25 -5.71 -1.857 0 0 0 0 0 0 0 +-7.231 -5.731 -1.857 0 0 0 0 0 0 0 +-7.216 -5.756 -1.858 0 0 0 0 0 0 0 +-7.194 -5.777 -1.857 0 0 0 0 0 0 0 +-7.188 -5.79 -1.858 0 0 0 0 0 0 0 +-7.164 -5.808 -1.856 0 0 0 0 0 0 0 +-7.155 -5.838 -1.859 0 0 0 0 0 0 0 +-7.136 -5.86 -1.859 0 0 0 0 0 0 0 +-7.114 -5.879 -1.857 0 0 0 0 0 0 0 +-7.1 -5.905 -1.859 0 0 0 0 0 0 0 +-7.088 -5.934 -1.861 0 0 0 0 0 0 0 +-7.067 -5.935 -1.857 0 0 0 0 0 0 0 +-7.06 -5.967 -1.861 0 0 0 0 0 0 0 +-7.048 -5.994 -1.862 0 0 0 0 0 0 0 +-7.052 -6.037 -1.869 0 0 0 0 0 0 0 +-7.025 -6.051 -1.867 0 0 0 0 0 0 0 +-7.007 -6.075 -1.867 0 0 0 0 0 0 0 +-6.983 -6.093 -1.866 0 0 0 0 0 0 0 +-6.989 -6.117 -1.87 0 0 0 0 0 0 0 +-6.958 -6.128 -1.867 0 0 0 0 0 0 0 +-6.957 -6.167 -1.872 0 0 0 0 0 0 0 +-6.947 -6.196 -1.875 0 0 0 0 0 0 0 +-6.929 -6.22 -1.875 0 0 0 0 0 0 0 +-6.874 -6.21 -1.865 0 0 0 0 0 0 0 +-6.84 -6.218 -1.861 0 0 0 0 0 0 0 +-6.826 -6.225 -1.859 0 0 0 0 0 0 0 +-6.784 -6.225 -1.853 0 0 0 0 0 0 0 +-6.765 -6.248 -1.853 0 0 0 0 0 0 0 +-6.746 -6.269 -1.853 0 0 0 0 0 0 0 +-6.72 -6.285 -1.852 0 0 0 0 0 0 0 +-6.688 -6.294 -1.848 0 0 0 0 0 0 0 +-6.669 -6.316 -1.848 0 0 0 0 0 0 0 +-6.648 -6.336 -1.848 0 0 0 0 0 0 0 +-6.631 -6.339 -1.846 0 0 0 0 0 0 0 +-6.621 -6.37 -1.849 0 0 0 0 0 0 0 +-6.594 -6.384 -1.846 0 0 0 0 0 0 0 +-6.571 -6.401 -1.846 0 0 0 0 0 0 0 +-6.555 -6.426 -1.847 0 0 0 0 0 0 0 +-6.532 -6.444 -1.846 0 0 0 0 0 0 0 +-6.499 -6.452 -1.842 0 0 0 0 0 0 0 +-6.499 -6.472 -1.845 0 0 0 0 0 0 0 +-6.474 -6.488 -1.844 0 0 0 0 0 0 0 +-6.458 -6.513 -1.845 0 0 0 0 0 0 0 +-6.433 -6.529 -1.844 0 0 0 0 0 0 0 +-6.407 -6.543 -1.842 0 0 0 0 0 0 0 +-6.398 -6.575 -1.846 0 0 0 0 0 0 0 +-6.378 -6.596 -1.846 0 0 0 0 0 0 0 +-6.359 -6.596 -1.843 0 0 0 0 0 0 0 +-6.346 -6.625 -1.846 0 0 0 0 0 0 0 +-6.317 -6.636 -1.843 0 0 0 0 0 0 0 +-6.296 -6.656 -1.843 0 0 0 0 0 0 0 +-6.266 -6.666 -1.84 0 0 0 0 0 0 0 +-6.257 -6.698 -1.844 0 0 0 0 0 0 0 +-6.227 -6.708 -1.841 0 0 0 0 0 0 0 +-6.227 -6.729 -1.844 0 0 0 0 0 0 0 +-6.196 -6.738 -1.841 0 0 0 0 0 0 0 +-6.175 -6.758 -1.841 0 0 0 0 0 0 0 +-6.154 -6.777 -1.841 0 0 0 0 0 0 0 +-6.139 -6.804 -1.844 0 0 0 0 0 0 0 +-6.114 -6.819 -1.842 0 0 0 0 0 0 0 +-6.09 -6.835 -1.841 0 0 0 0 0 0 0 +-6.085 -6.852 -1.844 0 0 0 0 0 0 0 +-6.059 -6.865 -1.842 0 0 0 0 0 0 0 +-6.045 -6.893 -1.844 0 0 0 0 0 0 0 +-6.01 -6.897 -1.84 0 0 0 0 0 0 0 +-5.992 -6.92 -1.841 0 0 0 0 0 0 0 +-5.968 -6.936 -1.841 0 0 0 0 0 0 0 +-5.947 -6.956 -1.841 0 0 0 0 0 0 0 +-5.938 -6.967 -1.841 0 0 0 0 0 0 0 +-5.913 -6.983 -1.841 0 0 0 0 0 0 0 +-5.896 -7.007 -1.842 0 0 0 0 0 0 0 +-5.867 -7.017 -1.84 0 0 0 0 0 0 0 +-5.842 -7.032 -1.839 0 0 0 0 0 0 0 +-5.819 -7.049 -1.838 0 0 0 0 0 0 0 +-5.796 -7.066 -1.838 0 0 0 0 0 0 0 +-5.787 -7.078 -1.839 0 0 0 0 0 0 0 +-5.762 -7.093 -1.838 0 0 0 0 0 0 0 +-5.74 -7.111 -1.838 0 0 0 0 0 0 0 +-5.721 -7.134 -1.839 0 0 0 0 0 0 0 +-5.714 -7.172 -1.845 0 0 0 0 0 0 0 +-5.691 -7.188 -1.844 0 0 0 0 0 0 0 +-5.678 -7.218 -1.848 0 0 0 0 0 0 0 +-5.668 -7.229 -1.848 0 0 0 0 0 0 0 +-5.634 -7.232 -1.844 0 0 0 0 0 0 0 +-5.645 -7.293 -1.856 0 0 0 0 0 0 0 +-5.637 -7.331 -1.862 0 0 0 0 0 0 0 +-5.573 -7.294 -1.847 0 0 0 0 0 0 0 +-5.549 -7.31 -1.846 0 0 0 0 0 0 0 +-5.5 -7.293 -1.837 0 0 0 0 0 0 0 +-5.459 -7.263 -1.827 0 0 0 0 0 0 0 +-5.43 -7.272 -1.825 0 0 0 0 0 0 0 +-5.404 -7.284 -1.823 0 0 0 0 0 0 0 +-5.387 -7.309 -1.825 0 0 0 0 0 0 0 +-5.354 -7.312 -1.822 0 0 0 0 0 0 0 +-5.331 -7.329 -1.822 0 0 0 0 0 0 0 +-5.309 -7.347 -1.822 0 0 0 0 0 0 0 +-5.289 -7.344 -1.819 0 0 0 0 0 0 0 +-5.266 -7.361 -1.819 0 0 0 0 0 0 0 +-5.243 -7.377 -1.819 0 0 0 0 0 0 0 +-5.211 -7.381 -1.816 0 0 0 0 0 0 0 +-5.193 -7.405 -1.818 0 0 0 0 0 0 0 +-5.164 -7.413 -1.816 0 0 0 0 0 0 0 +-5.144 -7.435 -1.817 0 0 0 0 0 0 0 +-5.128 -7.436 -1.815 0 0 0 0 0 0 0 +-5.105 -7.452 -1.815 0 0 0 0 0 0 0 +-5.084 -7.471 -1.816 0 0 0 0 0 0 0 +-5.051 -7.474 -1.813 0 0 0 0 0 0 0 +-5.029 -7.492 -1.813 0 0 0 0 0 0 0 +-5.005 -7.508 -1.813 0 0 0 0 0 0 0 +-4.975 -7.513 -1.811 0 0 0 0 0 0 0 +-4.972 -7.534 -1.814 0 0 0 0 0 0 0 +-4.941 -7.538 -1.811 0 0 0 0 0 0 0 +-4.921 -7.561 -1.813 0 0 0 0 0 0 0 +-4.889 -7.563 -1.81 0 0 0 0 0 0 0 +-4.868 -7.581 -1.81 0 0 0 0 0 0 0 +-4.839 -7.59 -1.809 0 0 0 0 0 0 0 +-4.821 -7.614 -1.811 0 0 0 0 0 0 0 +-4.794 -7.624 -1.81 0 0 0 0 0 0 0 +-4.787 -7.639 -1.812 0 0 0 0 0 0 0 +-4.753 -7.638 -1.807 0 0 0 0 0 0 0 +-4.735 -7.663 -1.81 0 0 0 0 0 0 0 +-4.704 -7.666 -1.807 0 0 0 0 0 0 0 +-4.681 -7.684 -1.808 0 0 0 0 0 0 0 +-4.655 -7.695 -1.807 0 0 0 0 0 0 0 +-4.628 -7.705 -1.806 0 0 0 0 0 0 0 +-4.621 -7.72 -1.808 0 0 0 0 0 0 0 +-4.595 -7.732 -1.807 0 0 0 0 0 0 0 +-4.572 -7.749 -1.808 0 0 0 0 0 0 0 +-4.539 -7.748 -1.804 0 0 0 0 0 0 0 +-4.522 -7.775 -1.807 0 0 0 0 0 0 0 +-4.495 -7.785 -1.806 0 0 0 0 0 0 0 +-4.471 -7.799 -1.806 0 0 0 0 0 0 0 +-4.46 -7.81 -1.807 0 0 0 0 0 0 0 +-4.44 -7.831 -1.809 0 0 0 0 0 0 0 +-4.408 -7.833 -1.806 0 0 0 0 0 0 0 +-4.389 -7.855 -1.808 0 0 0 0 0 0 0 +-4.358 -7.858 -1.805 0 0 0 0 0 0 0 +-4.332 -7.869 -1.804 0 0 0 0 0 0 0 +-4.314 -7.896 -1.808 0 0 0 0 0 0 0 +-4.303 -7.904 -1.808 0 0 0 0 0 0 0 +-4.282 -7.925 -1.81 0 0 0 0 0 0 0 +-4.253 -7.931 -1.808 0 0 0 0 0 0 0 +-4.243 -7.972 -1.815 0 0 0 0 0 0 0 +-4.21 -7.972 -1.812 0 0 0 0 0 0 0 +-4.2 -8.013 -1.818 0 0 0 0 0 0 0 +-4.197 -8.069 -1.829 0 0 0 0 0 0 0 +-4.183 -8.072 -1.828 0 0 0 0 0 0 0 +-4.169 -8.108 -1.833 0 0 0 0 0 0 0 +-4.159 -8.153 -1.841 0 0 0 0 0 0 0 +-4.135 -8.169 -1.842 0 0 0 0 0 0 0 +-4.113 -8.189 -1.844 0 0 0 0 0 0 0 +-4.074 -8.176 -1.837 0 0 0 0 0 0 0 +-4.068 -8.227 -1.846 0 0 0 0 0 0 0 +-4.065 -8.254 -1.852 0 0 0 0 0 0 0 +-4.013 -8.213 -1.838 0 0 0 0 0 0 0 +-3.964 -8.178 -1.827 0 0 0 0 0 0 0 +-3.936 -8.185 -1.826 0 0 0 0 0 0 0 +-3.907 -8.192 -1.825 0 0 0 0 0 0 0 +-3.876 -8.192 -1.822 0 0 0 0 0 0 0 +-3.853 -8.209 -1.823 0 0 0 0 0 0 0 +-3.835 -8.204 -1.82 0 0 0 0 0 0 0 +-3.807 -8.213 -1.82 0 0 0 0 0 0 0 +-3.782 -8.227 -1.82 0 0 0 0 0 0 0 +-3.757 -8.24 -1.82 0 0 0 0 0 0 0 +-3.726 -8.241 -1.818 0 0 0 0 0 0 0 +-3.709 -8.271 -1.822 0 0 0 0 0 0 0 +-3.677 -8.27 -1.819 0 0 0 0 0 0 0 +-3.662 -8.272 -1.818 0 0 0 0 0 0 0 +-3.634 -8.278 -1.817 0 0 0 0 0 0 0 +-3.614 -8.304 -1.82 0 0 0 0 0 0 0 +-3.582 -8.301 -1.817 0 0 0 0 0 0 0 +-3.557 -8.316 -1.818 0 0 0 0 0 0 0 +-3.53 -8.323 -1.817 0 0 0 0 0 0 0 +-3.5 -8.325 -1.815 0 0 0 0 0 0 0 +-3.491 -8.34 -1.817 0 0 0 0 0 0 0 +-3.462 -8.345 -1.816 0 0 0 0 0 0 0 +-3.434 -8.352 -1.815 0 0 0 0 0 0 0 +-3.413 -8.376 -1.818 0 0 0 0 0 0 0 +-3.386 -8.385 -1.818 0 0 0 0 0 0 0 +-3.356 -8.386 -1.815 0 0 0 0 0 0 0 +-3.33 -8.397 -1.815 0 0 0 0 0 0 0 +-3.317 -8.404 -1.816 0 0 0 0 0 0 0 +-3.294 -8.423 -1.818 0 0 0 0 0 0 0 +-3.266 -8.428 -1.817 0 0 0 0 0 0 0 +-3.237 -8.431 -1.815 0 0 0 0 0 0 0 +-3.212 -8.447 -1.816 0 0 0 0 0 0 0 +-3.183 -8.449 -1.815 0 0 0 0 0 0 0 +-3.158 -8.463 -1.815 0 0 0 0 0 0 0 +-3.147 -8.475 -1.817 0 0 0 0 0 0 0 +-3.122 -8.489 -1.818 0 0 0 0 0 0 0 +-3.097 -8.504 -1.819 0 0 0 0 0 0 0 +-3.068 -8.508 -1.818 0 0 0 0 0 0 0 +-3.037 -8.505 -1.815 0 0 0 0 0 0 0 +-3.012 -8.518 -1.816 0 0 0 0 0 0 0 +-2.985 -8.528 -1.816 0 0 0 0 0 0 0 +-2.968 -8.523 -1.814 0 0 0 0 0 0 0 +-2.942 -8.534 -1.814 0 0 0 0 0 0 0 +-2.914 -8.54 -1.813 0 0 0 0 0 0 0 +-2.888 -8.552 -1.814 0 0 0 0 0 0 0 +-2.862 -8.562 -1.814 0 0 0 0 0 0 0 +-2.836 -8.576 -1.815 0 0 0 0 0 0 0 +-2.809 -8.583 -1.815 0 0 0 0 0 0 0 +-2.788 -8.61 -1.819 0 0 0 0 0 0 0 +-2.781 -8.635 -1.824 0 0 0 0 0 0 0 +-2.748 -8.625 -1.82 0 0 0 0 0 0 0 +-2.707 -8.589 -1.81 0 0 0 0 0 0 0 +-2.711 -8.699 -1.832 0 0 0 0 0 0 0 +-2.704 -8.772 -1.847 0 0 0 0 0 0 0 +-2.6 -8.628 -1.811 0 0 0 0 0 0 0 +-2.597 -8.666 -1.818 0 0 0 0 0 0 0 +-2.56 -8.64 -1.811 0 0 0 0 0 0 0 +-2.525 -8.624 -1.805 0 0 0 0 0 0 0 +-2.493 -8.613 -1.801 0 0 0 0 0 0 0 +-2.46 -8.6 -1.797 0 0 0 0 0 0 0 +-2.433 -8.61 -1.797 0 0 0 0 0 0 0 +-2.416 -8.6 -1.794 0 0 0 0 0 0 0 +-2.386 -8.596 -1.791 0 0 0 0 0 0 0 +-2.356 -8.591 -1.789 0 0 0 0 0 0 0 +-2.331 -8.606 -1.79 0 0 0 0 0 0 0 +-2.299 -8.594 -1.786 0 0 0 0 0 0 0 +-2.272 -8.603 -1.786 0 0 0 0 0 0 0 +-2.245 -8.608 -1.786 0 0 0 0 0 0 0 +-2.216 -8.61 -1.785 0 0 0 0 0 0 0 +-2.201 -8.605 -1.783 0 0 0 0 0 0 0 +-2.171 -8.603 -1.781 0 0 0 0 0 0 0 +-2.144 -8.608 -1.781 0 0 0 0 0 0 0 +-2.117 -8.616 -1.781 0 0 0 0 0 0 0 +-2.088 -8.615 -1.779 0 0 0 0 0 0 0 +-2.06 -8.616 -1.778 0 0 0 0 0 0 0 +-2.034 -8.626 -1.779 0 0 0 0 0 0 0 +-2.018 -8.622 -1.777 0 0 0 0 0 0 0 +-1.989 -8.617 -1.775 0 0 0 0 0 0 0 +-1.961 -8.623 -1.775 0 0 0 0 0 0 0 +-1.934 -8.627 -1.774 0 0 0 0 0 0 0 +-1.906 -8.628 -1.773 0 0 0 0 0 0 0 +-1.878 -8.632 -1.773 0 0 0 0 0 0 0 +-1.852 -8.643 -1.774 0 0 0 0 0 0 0 +-1.839 -8.646 -1.774 0 0 0 0 0 0 0 +-1.81 -8.644 -1.772 0 0 0 0 0 0 0 +-1.781 -8.64 -1.77 0 0 0 0 0 0 0 +-1.752 -8.638 -1.768 0 0 0 0 0 0 0 +-1.724 -8.642 -1.768 0 0 0 0 0 0 0 +-1.695 -8.637 -1.766 0 0 0 0 0 0 0 +-1.668 -8.643 -1.766 0 0 0 0 0 0 0 +-1.656 -8.651 -1.767 0 0 0 0 0 0 0 +-1.628 -8.654 -1.767 0 0 0 0 0 0 0 +-1.601 -8.661 -1.767 0 0 0 0 0 0 0 +-1.575 -8.672 -1.768 0 0 0 0 0 0 0 +-1.55 -8.69 -1.771 0 0 0 0 0 0 0 +-1.521 -8.686 -1.769 0 0 0 0 0 0 0 +-1.495 -8.698 -1.771 0 0 0 0 0 0 0 +-1.48 -8.691 -1.769 0 0 0 0 0 0 0 +-1.456 -8.713 -1.773 0 0 0 0 0 0 0 +-1.425 -8.696 -1.768 0 0 0 0 0 0 0 +-1.398 -8.706 -1.769 0 0 0 0 0 0 0 +-1.373 -8.726 -1.773 0 0 0 0 0 0 0 +-1.343 -8.713 -1.769 0 0 0 0 0 0 0 +-1.316 -8.715 -1.768 0 0 0 0 0 0 0 +-1.305 -8.737 -1.773 0 0 0 0 0 0 0 +-1.276 -8.727 -1.77 0 0 0 0 0 0 0 +-1.25 -8.743 -1.772 0 0 0 0 0 0 0 +-1.223 -8.752 -1.773 0 0 0 0 0 0 0 +-1.194 -8.743 -1.77 0 0 0 0 0 0 0 +-1.168 -8.758 -1.773 0 0 0 0 0 0 0 +-1.14 -8.756 -1.772 0 0 0 0 0 0 0 +-1.125 -8.75 -1.77 0 0 0 0 0 0 0 +-1.099 -8.771 -1.774 0 0 0 0 0 0 0 +-1.071 -8.77 -1.773 0 0 0 0 0 0 0 +-1.043 -8.768 -1.772 0 0 0 0 0 0 0 +-1.016 -8.775 -1.773 0 0 0 0 0 0 0 +-0.989 -8.782 -1.773 0 0 0 0 0 0 0 +-0.961 -8.783 -1.773 0 0 0 0 0 0 0 +-0.948 -8.792 -1.775 0 0 0 0 0 0 0 +-0.921 -8.799 -1.776 0 0 0 0 0 0 0 +-0.893 -8.804 -1.776 0 0 0 0 0 0 0 +-0.866 -8.811 -1.777 0 0 0 0 0 0 0 +-0.838 -8.807 -1.776 0 0 0 0 0 0 0 +-0.811 -8.816 -1.777 0 0 0 0 0 0 0 +-0.784 -8.824 -1.778 0 0 0 0 0 0 0 +-0.77 -8.825 -1.778 0 0 0 0 0 0 0 +-0.742 -8.834 -1.779 0 0 0 0 0 0 0 +-0.715 -8.836 -1.779 0 0 0 0 0 0 0 +-0.687 -8.844 -1.781 0 0 0 0 0 0 0 +-0.66 -8.852 -1.782 0 0 0 0 0 0 0 +-0.632 -8.856 -1.782 0 0 0 0 0 0 0 +-0.605 -8.866 -1.784 0 0 0 0 0 0 0 +-0.591 -8.869 -1.784 0 0 0 0 0 0 0 +-0.565 -8.89 -1.789 0 0 0 0 0 0 0 +-0.537 -8.899 -1.79 0 0 0 0 0 0 0 +-0.509 -8.893 -1.789 0 0 0 0 0 0 0 +-0.481 -8.905 -1.791 0 0 0 0 0 0 0 +-0.453 -8.91 -1.791 0 0 0 0 0 0 0 +-0.426 -8.925 -1.794 0 0 0 0 0 0 0 +-0.412 -8.926 -1.794 0 0 0 0 0 0 0 +-0.384 -8.937 -1.797 0 0 0 0 0 0 0 +-0.356 -8.93 -1.795 0 0 0 0 0 0 0 +-0.328 -8.937 -1.796 0 0 0 0 0 0 0 +-0.3 -8.936 -1.796 0 0 0 0 0 0 0 +-0.272 -8.951 -1.799 0 0 0 0 0 0 0 +-0.244 -8.949 -1.798 0 0 0 0 0 0 0 +-0.23 -8.952 -1.799 0 0 0 0 0 0 0 +-0.202 -8.96 -1.8 0 0 0 0 0 0 0 +-0.174 -8.963 -1.801 0 0 0 0 0 0 0 +-0.146 -8.955 -1.799 0 0 0 0 0 0 0 +-0.118 -8.956 -1.799 0 0 0 0 0 0 0 +-0.09 -8.964 -1.801 0 0 0 0 0 0 0 +-0.061 -8.96 -1.8 0 0 0 0 0 0 0 +-0.047 -8.976 -1.803 0 0 0 0 0 0 0 +-0.019 -8.974 -1.803 0 0 0 0 0 0 0 +0.009 -8.98 -1.804 0 0 0 0 0 0 0 +0.037 -8.97 -1.802 0 0 0 0 0 0 0 +0.065 -8.976 -1.803 0 0 0 0 0 0 0 +0.094 -8.976 -1.803 0 0 0 0 0 0 0 +0.122 -8.973 -1.803 0 0 0 0 0 0 0 +0.136 -8.956 -1.799 0 0 0 0 0 0 0 +0.164 -8.945 -1.797 0 0 0 0 0 0 0 +0.192 -8.962 -1.801 0 0 0 0 0 0 0 +0.22 -8.958 -1.8 0 0 0 0 0 0 0 +0.248 -8.961 -1.801 0 0 0 0 0 0 0 +0.277 -8.962 -1.801 0 0 0 0 0 0 0 +0.305 -8.963 -1.802 0 0 0 0 0 0 0 +0.333 -8.974 -1.804 0 0 0 0 0 0 0 +0.347 -8.97 -1.803 0 0 0 0 0 0 0 +0.376 -8.988 -1.807 0 0 0 0 0 0 0 +0.404 -8.977 -1.805 0 0 0 0 0 0 0 +0.433 -8.993 -1.809 0 0 0 0 0 0 0 +0.462 -9.002 -1.811 0 0 0 0 0 0 0 +0.489 -8.984 -1.808 0 0 0 0 0 0 0 +0.518 -8.983 -1.808 0 0 0 0 0 0 0 +0.533 -9 -1.812 0 0 0 0 0 0 0 +0.561 -9.002 -1.812 0 0 0 0 0 0 0 +0.588 -8.975 -1.807 0 0 0 0 0 0 0 +0.619 -9.016 -1.816 0 0 0 0 0 0 0 +0.646 -8.996 -1.812 0 0 0 0 0 0 0 +0.677 -9.025 -1.819 0 0 0 0 0 0 0 +0.69 -9.014 -1.817 0 0 0 0 0 0 0 +0.719 -9.02 -1.819 0 0 0 0 0 0 0 +0.75 -9.041 -1.824 0 0 0 0 0 0 0 +0.777 -9.023 -1.82 0 0 0 0 0 0 0 +0.807 -9.04 -1.825 0 0 0 0 0 0 0 +0.833 -9.018 -1.82 0 0 0 0 0 0 0 +0.864 -9.045 -1.827 0 0 0 0 0 0 0 +0.892 -9.036 -1.825 0 0 0 0 0 0 0 +0.907 -9.042 -1.827 0 0 0 0 0 0 0 +0.935 -9.037 -1.827 0 0 0 0 0 0 0 +0.966 -9.058 -1.832 0 0 0 0 0 0 0 +0.993 -9.035 -1.828 0 0 0 0 0 0 0 +1.022 -9.04 -1.829 0 0 0 0 0 0 0 +1.047 -9.006 -1.823 0 0 0 0 0 0 0 +1.081 -9.053 -1.833 0 0 0 0 0 0 0 +1.094 -9.041 -1.831 0 0 0 0 0 0 0 +1.123 -9.04 -1.832 0 0 0 0 0 0 0 +1.149 -9.019 -1.828 0 0 0 0 0 0 0 +1.181 -9.046 -1.835 0 0 0 0 0 0 0 +1.209 -9.037 -1.833 0 0 0 0 0 0 0 +1.24 -9.052 -1.838 0 0 0 0 0 0 0 +1.267 -9.038 -1.836 0 0 0 0 0 0 0 +1.283 -9.048 -1.838 0 0 0 0 0 0 0 +1.312 -9.048 -1.839 0 0 0 0 0 0 0 +1.342 -9.051 -1.841 0 0 0 0 0 0 0 +1.369 -9.037 -1.838 0 0 0 0 0 0 0 +1.398 -9.037 -1.839 0 0 0 0 0 0 0 +1.429 -9.054 -1.844 0 0 0 0 0 0 0 +1.456 -9.036 -1.841 0 0 0 0 0 0 0 +1.469 -9.03 -1.84 0 0 0 0 0 0 0 +1.5 -9.04 -1.844 0 0 0 0 0 0 0 +1.53 -9.047 -1.846 0 0 0 0 0 0 0 +1.558 -9.04 -1.846 0 0 0 0 0 0 0 +1.59 -9.055 -1.85 0 0 0 0 0 0 0 +1.618 -9.048 -1.849 0 0 0 0 0 0 0 +1.646 -9.037 -1.848 0 0 0 0 0 0 0 +1.662 -9.048 -1.851 0 0 0 0 0 0 0 +1.692 -9.05 -1.853 0 0 0 0 0 0 0 +1.721 -9.047 -1.853 0 0 0 0 0 0 0 +1.75 -9.043 -1.854 0 0 0 0 0 0 0 +1.778 -9.038 -1.854 0 0 0 0 0 0 0 +1.805 -9.024 -1.852 0 0 0 0 0 0 0 +1.835 -9.026 -1.854 0 0 0 0 0 0 0 +1.85 -9.029 -1.855 0 0 0 0 0 0 0 +1.413 -6.817 -1.371 0 0 0 0 0 0 0 +1.432 -6.801 -1.368 0 0 0 0 0 0 0 +1.448 -6.772 -1.363 0 0 0 0 0 0 0 +1.459 -6.722 -1.353 0 0 0 0 0 0 0 +1.477 -6.702 -1.349 0 0 0 0 0 0 0 +1.498 -6.697 -1.349 0 0 0 0 0 0 0 +1.504 -6.676 -1.345 0 0 0 0 0 0 0 +1.527 -6.68 -1.347 0 0 0 0 0 0 0 +1.553 -6.696 -1.352 0 0 0 0 0 0 0 +1.545 -6.572 -1.326 0 0 0 0 0 0 0 +1.556 -6.525 -1.316 0 0 0 0 0 0 0 +1.579 -6.53 -1.318 0 0 0 0 0 0 0 +1.594 -6.502 -1.313 0 0 0 0 0 0 0 +1.605 -6.503 -1.314 0 0 0 0 0 0 0 +1.63 -6.519 -1.319 0 0 0 0 0 0 0 +1.649 -6.506 -1.317 0 0 0 0 0 0 0 +1.675 -6.524 -1.322 0 0 0 0 0 0 0 +2.361 -9.037 -1.881 0 0 0 0 0 0 0 +2.39 -9.029 -1.881 0 0 0 0 0 0 0 +2.438 -9.097 -1.898 0 0 0 0 0 0 0 +2.452 -9.091 -1.898 0 0 0 0 0 0 0 +2.478 -9.072 -1.895 0 0 0 0 0 0 0 +2.515 -9.096 -1.902 0 0 0 0 0 0 0 +2.538 -9.068 -1.898 0 0 0 0 0 0 0 +2.559 -9.035 -1.892 0 0 0 0 0 0 0 +2.59 -9.037 -1.894 0 0 0 0 0 0 0 +2.612 -9.004 -1.889 0 0 0 0 0 0 0 +2.619 -8.976 -1.883 0 0 0 0 0 0 0 +2.648 -8.973 -1.885 0 0 0 0 0 0 0 +2.675 -8.959 -1.883 0 0 0 0 0 0 0 +2.701 -8.943 -1.882 0 0 0 0 0 0 0 +2.732 -8.944 -1.884 0 0 0 0 0 0 0 +2.757 -8.926 -1.882 0 0 0 0 0 0 0 +2.778 -8.897 -1.877 0 0 0 0 0 0 0 +2.791 -8.887 -1.876 0 0 0 0 0 0 0 +2.816 -8.87 -1.874 0 0 0 0 0 0 0 +2.843 -8.86 -1.874 0 0 0 0 0 0 0 +2.872 -8.853 -1.874 0 0 0 0 0 0 0 +2.898 -8.838 -1.873 0 0 0 0 0 0 0 +2.921 -8.816 -1.87 0 0 0 0 0 0 0 +2.949 -8.807 -1.87 0 0 0 0 0 0 0 +2.958 -8.787 -1.867 0 0 0 0 0 0 0 +2.987 -8.783 -1.868 0 0 0 0 0 0 0 +3.013 -8.768 -1.867 0 0 0 0 0 0 0 +3.034 -8.74 -1.862 0 0 0 0 0 0 0 +3.057 -8.718 -1.859 0 0 0 0 0 0 0 +3.083 -8.705 -1.859 0 0 0 0 0 0 0 +3.108 -8.689 -1.857 0 0 0 0 0 0 0 +3.124 -8.692 -1.859 0 0 0 0 0 0 0 +3.148 -8.671 -1.857 0 0 0 0 0 0 0 +3.173 -8.655 -1.855 0 0 0 0 0 0 0 +3.198 -8.64 -1.854 0 0 0 0 0 0 0 +3.218 -8.61 -1.849 0 0 0 0 0 0 0 +3.245 -8.6 -1.849 0 0 0 0 0 0 0 +3.269 -8.582 -1.848 0 0 0 0 0 0 0 +3.281 -8.573 -1.847 0 0 0 0 0 0 0 +3.309 -8.565 -1.847 0 0 0 0 0 0 0 +3.333 -8.549 -1.846 0 0 0 0 0 0 0 +3.357 -8.531 -1.844 0 0 0 0 0 0 0 +3.38 -8.511 -1.842 0 0 0 0 0 0 0 +3.41 -8.508 -1.844 0 0 0 0 0 0 0 +3.432 -8.485 -1.841 0 0 0 0 0 0 0 +3.442 -8.472 -1.839 0 0 0 0 0 0 0 +3.473 -8.472 -1.842 0 0 0 0 0 0 0 +3.497 -8.454 -1.84 0 0 0 0 0 0 0 +3.526 -8.45 -1.842 0 0 0 0 0 0 0 +3.55 -8.433 -1.841 0 0 0 0 0 0 0 +3.577 -8.422 -1.841 0 0 0 0 0 0 0 +3.599 -8.402 -1.838 0 0 0 0 0 0 0 +3.61 -8.389 -1.837 0 0 0 0 0 0 0 +3.632 -8.369 -1.835 0 0 0 0 0 0 0 +3.653 -8.345 -1.832 0 0 0 0 0 0 0 +3.684 -8.344 -1.834 0 0 0 0 0 0 0 +3.703 -8.318 -1.831 0 0 0 0 0 0 0 +3.724 -8.294 -1.828 0 0 0 0 0 0 0 +3.748 -8.277 -1.827 0 0 0 0 0 0 0 +3.756 -8.26 -1.824 0 0 0 0 0 0 0 +3.773 -8.229 -1.82 0 0 0 0 0 0 0 +3.798 -8.217 -1.82 0 0 0 0 0 0 0 +3.821 -8.198 -1.818 0 0 0 0 0 0 0 +3.842 -8.177 -1.816 0 0 0 0 0 0 0 +3.866 -8.161 -1.815 0 0 0 0 0 0 0 +3.889 -8.144 -1.814 0 0 0 0 0 0 0 +3.901 -8.134 -1.813 0 0 0 0 0 0 0 +3.918 -8.104 -1.809 0 0 0 0 0 0 0 +3.946 -8.097 -1.81 0 0 0 0 0 0 0 +3.964 -8.071 -1.807 0 0 0 0 0 0 0 +3.988 -8.055 -1.806 0 0 0 0 0 0 0 +4.01 -8.037 -1.804 0 0 0 0 0 0 0 +4.033 -8.019 -1.803 0 0 0 0 0 0 0 +4.049 -8.02 -1.805 0 0 0 0 0 0 0 +4.068 -7.995 -1.802 0 0 0 0 0 0 0 +4.083 -7.963 -1.797 0 0 0 0 0 0 0 +4.105 -7.945 -1.796 0 0 0 0 0 0 0 +4.129 -7.929 -1.795 0 0 0 0 0 0 0 +4.152 -7.912 -1.794 0 0 0 0 0 0 0 +4.175 -7.896 -1.794 0 0 0 0 0 0 0 +4.183 -7.882 -1.792 0 0 0 0 0 0 0 +4.2 -7.853 -1.788 0 0 0 0 0 0 0 +4.225 -7.842 -1.789 0 0 0 0 0 0 0 +4.244 -7.818 -1.786 0 0 0 0 0 0 0 +4.266 -7.8 -1.785 0 0 0 0 0 0 0 +4.286 -7.778 -1.783 0 0 0 0 0 0 0 +4.309 -7.763 -1.782 0 0 0 0 0 0 0 +4.315 -7.744 -1.779 0 0 0 0 0 0 0 +4.337 -7.727 -1.778 0 0 0 0 0 0 0 +4.366 -7.722 -1.781 0 0 0 0 0 0 0 +4.385 -7.698 -1.778 0 0 0 0 0 0 0 +4.405 -7.677 -1.776 0 0 0 0 0 0 0 +4.429 -7.663 -1.776 0 0 0 0 0 0 0 +4.451 -7.646 -1.776 0 0 0 0 0 0 0 +4.458 -7.631 -1.773 0 0 0 0 0 0 0 +4.487 -7.625 -1.776 0 0 0 0 0 0 0 +4.51 -7.609 -1.775 0 0 0 0 0 0 0 +4.53 -7.588 -1.773 0 0 0 0 0 0 0 +4.553 -7.572 -1.773 0 0 0 0 0 0 0 +4.572 -7.551 -1.771 0 0 0 0 0 0 0 +4.59 -7.527 -1.769 0 0 0 0 0 0 0 +4.602 -7.52 -1.769 0 0 0 0 0 0 0 +4.629 -7.512 -1.77 0 0 0 0 0 0 0 +4.647 -7.487 -1.768 0 0 0 0 0 0 0 +4.674 -7.479 -1.77 0 0 0 0 0 0 0 +4.698 -7.465 -1.77 0 0 0 0 0 0 0 +4.707 -7.427 -1.764 0 0 0 0 0 0 0 +4.735 -7.42 -1.766 0 0 0 0 0 0 0 +4.74 -7.403 -1.763 0 0 0 0 0 0 0 +4.759 -7.381 -1.762 0 0 0 0 0 0 0 +4.787 -7.373 -1.763 0 0 0 0 0 0 0 +4.804 -7.348 -1.761 0 0 0 0 0 0 0 +4.823 -7.328 -1.76 0 0 0 0 0 0 0 +4.849 -7.316 -1.76 0 0 0 0 0 0 0 +4.87 -7.299 -1.76 0 0 0 0 0 0 0 +4.881 -7.29 -1.76 0 0 0 0 0 0 0 +4.9 -7.27 -1.758 0 0 0 0 0 0 0 +4.927 -7.259 -1.76 0 0 0 0 0 0 0 +4.944 -7.235 -1.757 0 0 0 0 0 0 0 +4.968 -7.221 -1.758 0 0 0 0 0 0 0 +4.985 -7.198 -1.756 0 0 0 0 0 0 0 +5.011 -7.187 -1.757 0 0 0 0 0 0 0 +5.032 -7.17 -1.757 0 0 0 0 0 0 0 +5.034 -7.149 -1.753 0 0 0 0 0 0 0 +5.054 -7.13 -1.752 0 0 0 0 0 0 0 +5.077 -7.114 -1.752 0 0 0 0 0 0 0 +5.095 -7.092 -1.751 0 0 0 0 0 0 0 +5.119 -7.079 -1.752 0 0 0 0 0 0 0 +5.141 -7.063 -1.752 0 0 0 0 0 0 0 +5.156 -7.037 -1.749 0 0 0 0 0 0 0 +5.162 -7.021 -1.747 0 0 0 0 0 0 0 +5.181 -7.002 -1.746 0 0 0 0 0 0 0 +5.202 -6.984 -1.746 0 0 0 0 0 0 0 +5.218 -6.96 -1.744 0 0 0 0 0 0 0 +5.241 -6.945 -1.744 0 0 0 0 0 0 0 +5.261 -6.925 -1.743 0 0 0 0 0 0 0 +5.268 -6.912 -1.742 0 0 0 0 0 0 0 +5.298 -6.906 -1.745 0 0 0 0 0 0 0 +5.315 -6.884 -1.743 0 0 0 0 0 0 0 +5.335 -6.865 -1.743 0 0 0 0 0 0 0 +5.354 -6.845 -1.742 0 0 0 0 0 0 0 +5.369 -6.819 -1.739 0 0 0 0 0 0 0 +5.391 -6.804 -1.74 0 0 0 0 0 0 0 +5.395 -6.786 -1.737 0 0 0 0 0 0 0 +5.423 -6.778 -1.74 0 0 0 0 0 0 0 +5.443 -6.76 -1.739 0 0 0 0 0 0 0 +5.462 -6.74 -1.739 0 0 0 0 0 0 0 +5.486 -6.726 -1.739 0 0 0 0 0 0 0 +5.507 -6.708 -1.739 0 0 0 0 0 0 0 +5.527 -6.689 -1.739 0 0 0 0 0 0 0 +5.535 -6.678 -1.738 0 0 0 0 0 0 0 +5.557 -6.662 -1.739 0 0 0 0 0 0 0 +5.571 -6.637 -1.736 0 0 0 0 0 0 0 +5.598 -6.627 -1.739 0 0 0 0 0 0 0 +5.612 -6.6 -1.736 0 0 0 0 0 0 0 +5.632 -6.583 -1.736 0 0 0 0 0 0 0 +5.656 -6.568 -1.737 0 0 0 0 0 0 0 +5.676 -6.55 -1.737 0 0 0 0 0 0 0 +5.68 -6.534 -1.735 0 0 0 0 0 0 0 +5.695 -6.51 -1.733 0 0 0 0 0 0 0 +5.72 -6.496 -1.734 0 0 0 0 0 0 0 +5.74 -6.478 -1.734 0 0 0 0 0 0 0 +5.758 -6.457 -1.734 0 0 0 0 0 0 0 +5.783 -6.445 -1.735 0 0 0 0 0 0 0 +5.797 -6.42 -1.733 0 0 0 0 0 0 0 +5.8 -6.403 -1.731 0 0 0 0 0 0 0 +5.815 -6.379 -1.729 0 0 0 0 0 0 0 +5.847 -6.374 -1.733 0 0 0 0 0 0 0 +5.856 -6.344 -1.73 0 0 0 0 0 0 0 +5.883 -6.333 -1.732 0 0 0 0 0 0 0 +5.899 -6.31 -1.731 0 0 0 0 0 0 0 +5.915 -6.287 -1.729 0 0 0 0 0 0 0 +5.925 -6.278 -1.729 0 0 0 0 0 0 0 +5.939 -6.254 -1.728 0 0 0 0 0 0 0 +5.958 -6.235 -1.728 0 0 0 0 0 0 0 +5.983 -6.222 -1.729 0 0 0 0 0 0 0 +5.998 -6.197 -1.728 0 0 0 0 0 0 0 +6.016 -6.177 -1.727 0 0 0 0 0 0 0 +6.023 -6.165 -1.726 0 0 0 0 0 0 0 +6.043 -6.147 -1.727 0 0 0 0 0 0 0 +6.064 -6.13 -1.727 0 0 0 0 0 0 0 +6.079 -6.106 -1.726 0 0 0 0 0 0 0 +6.097 -6.086 -1.726 0 0 0 0 0 0 0 +6.113 -6.064 -1.725 0 0 0 0 0 0 0 +6.138 -6.05 -1.726 0 0 0 0 0 0 0 +6.154 -6.028 -1.726 0 0 0 0 0 0 0 +6.16 -6.016 -1.725 0 0 0 0 0 0 0 +6.179 -5.996 -1.725 0 0 0 0 0 0 0 +6.2 -5.978 -1.725 0 0 0 0 0 0 0 +6.215 -5.956 -1.724 0 0 0 0 0 0 0 +6.228 -5.931 -1.723 0 0 0 0 0 0 0 +6.254 -5.918 -1.725 0 0 0 0 0 0 0 +6.271 -5.897 -1.724 0 0 0 0 0 0 0 +6.281 -5.887 -1.724 0 0 0 0 0 0 0 +6.295 -5.864 -1.723 0 0 0 0 0 0 0 +6.312 -5.843 -1.723 0 0 0 0 0 0 0 +6.323 -5.816 -1.721 0 0 0 0 0 0 0 +6.343 -5.798 -1.721 0 0 0 0 0 0 0 +6.362 -5.779 -1.721 0 0 0 0 0 0 0 +6.377 -5.756 -1.721 0 0 0 0 0 0 0 +6.385 -5.745 -1.72 0 0 0 0 0 0 0 +6.404 -5.726 -1.721 0 0 0 0 0 0 0 +6.418 -5.702 -1.719 0 0 0 0 0 0 0 +6.433 -5.679 -1.718 0 0 0 0 0 0 0 +6.446 -5.655 -1.717 0 0 0 0 0 0 0 +6.471 -5.641 -1.719 0 0 0 0 0 0 0 +6.488 -5.62 -1.719 0 0 0 0 0 0 0 +6.492 -5.606 -1.718 0 0 0 0 0 0 0 +6.505 -5.582 -1.716 0 0 0 0 0 0 0 +6.533 -5.57 -1.719 0 0 0 0 0 0 0 +6.545 -5.544 -1.718 0 0 0 0 0 0 0 +6.562 -5.524 -1.718 0 0 0 0 0 0 0 +6.584 -5.507 -1.719 0 0 0 0 0 0 0 +6.592 -5.496 -1.719 0 0 0 0 0 0 0 +6.599 -5.467 -1.716 0 0 0 0 0 0 0 +6.628 -5.456 -1.719 0 0 0 0 0 0 0 +6.641 -5.432 -1.718 0 0 0 0 0 0 0 +6.664 -5.416 -1.72 0 0 0 0 0 0 0 +6.667 -5.384 -1.716 0 0 0 0 0 0 0 +6.686 -5.364 -1.716 0 0 0 0 0 0 0 +6.701 -5.342 -1.716 0 0 0 0 0 0 0 +6.711 -5.332 -1.716 0 0 0 0 0 0 0 +6.731 -5.314 -1.717 0 0 0 0 0 0 0 +6.755 -5.299 -1.719 0 0 0 0 0 0 0 +6.767 -5.274 -1.718 0 0 0 0 0 0 0 +6.777 -5.248 -1.716 0 0 0 0 0 0 0 +6.8 -5.231 -1.718 0 0 0 0 0 0 0 +6.807 -5.203 -1.716 0 0 0 0 0 0 0 +6.826 -5.2 -1.718 0 0 0 0 0 0 0 +6.828 -5.168 -1.715 0 0 0 0 0 0 0 +6.846 -5.148 -1.715 0 0 0 0 0 0 0 +6.861 -5.125 -1.715 0 0 0 0 0 0 0 +6.88 -5.106 -1.716 0 0 0 0 0 0 0 +6.891 -5.081 -1.714 0 0 0 0 0 0 0 +6.913 -5.064 -1.716 0 0 0 0 0 0 0 +6.925 -5.055 -1.717 0 0 0 0 0 0 0 +6.944 -5.036 -1.718 0 0 0 0 0 0 0 +6.951 -5.008 -1.716 0 0 0 0 0 0 0 +6.97 -4.988 -1.716 0 0 0 0 0 0 0 +6.988 -4.968 -1.717 0 0 0 0 0 0 0 +7.011 -4.951 -1.719 0 0 0 0 0 0 0 +7.036 -4.936 -1.721 0 0 0 0 0 0 0 +7.039 -4.922 -1.72 0 0 0 0 0 0 0 +7.048 -4.895 -1.718 0 0 0 0 0 0 0 +7.062 -4.872 -1.718 0 0 0 0 0 0 0 +7.082 -4.853 -1.719 0 0 0 0 0 0 0 +7.1 -4.833 -1.72 0 0 0 0 0 0 0 +7.119 -4.813 -1.721 0 0 0 0 0 0 0 +7.127 -4.786 -1.719 0 0 0 0 0 0 0 +7.141 -4.779 -1.721 0 0 0 0 0 0 0 +7.156 -4.756 -1.721 0 0 0 0 0 0 0 +7.166 -4.731 -1.72 0 0 0 0 0 0 0 +7.188 -4.712 -1.721 0 0 0 0 0 0 0 +7.198 -4.687 -1.72 0 0 0 0 0 0 0 +7.212 -4.664 -1.72 0 0 0 0 0 0 0 +7.219 -4.636 -1.718 0 0 0 0 0 0 0 +7.231 -4.628 -1.719 0 0 0 0 0 0 0 +7.255 -4.611 -1.722 0 0 0 0 0 0 0 +7.273 -4.591 -1.723 0 0 0 0 0 0 0 +7.278 -4.562 -1.72 0 0 0 0 0 0 0 +7.292 -4.539 -1.72 0 0 0 0 0 0 0 +7.308 -4.517 -1.721 0 0 0 0 0 0 0 +7.322 -4.494 -1.721 0 0 0 0 0 0 0 +7.332 -4.484 -1.721 0 0 0 0 0 0 0 +7.338 -4.456 -1.719 0 0 0 0 0 0 0 +7.349 -4.431 -1.718 0 0 0 0 0 0 0 +7.352 -4.402 -1.716 0 0 0 0 0 0 0 +7.38 -4.387 -1.719 0 0 0 0 0 0 0 +7.377 -4.354 -1.715 0 0 0 0 0 0 0 +7.402 -4.338 -1.718 0 0 0 0 0 0 0 +7.397 -4.319 -1.715 0 0 0 0 0 0 0 +7.419 -4.301 -1.717 0 0 0 0 0 0 0 +7.432 -4.277 -1.717 0 0 0 0 0 0 0 +7.448 -4.255 -1.718 0 0 0 0 0 0 0 +7.457 -4.23 -1.717 0 0 0 0 0 0 0 +7.472 -4.207 -1.717 0 0 0 0 0 0 0 +7.486 -4.184 -1.717 0 0 0 0 0 0 0 +7.477 -4.163 -1.713 0 0 0 0 0 0 0 +7.504 -4.147 -1.717 0 0 0 0 0 0 0 +7.517 -4.124 -1.717 0 0 0 0 0 0 0 +7.524 -4.097 -1.716 0 0 0 0 0 0 0 +7.544 -4.077 -1.717 0 0 0 0 0 0 0 +7.555 -4.053 -1.717 0 0 0 0 0 0 0 +7.561 -4.025 -1.715 0 0 0 0 0 0 0 +7.574 -4.017 -1.717 0 0 0 0 0 0 0 +7.59 -3.995 -1.718 0 0 0 0 0 0 0 +7.603 -3.971 -1.718 0 0 0 0 0 0 0 +7.613 -3.946 -1.717 0 0 0 0 0 0 0 +7.633 -3.926 -1.719 0 0 0 0 0 0 0 +7.645 -3.902 -1.719 0 0 0 0 0 0 0 +7.654 -3.876 -1.718 0 0 0 0 0 0 0 +7.669 -3.869 -1.72 0 0 0 0 0 0 0 +7.67 -3.839 -1.718 0 0 0 0 0 0 0 +7.691 -3.819 -1.72 0 0 0 0 0 0 0 +7.696 -3.792 -1.718 0 0 0 0 0 0 0 +7.715 -3.771 -1.72 0 0 0 0 0 0 0 +7.712 -3.74 -1.716 0 0 0 0 0 0 0 +7.74 -3.723 -1.72 0 0 0 0 0 0 0 +7.746 -3.711 -1.72 0 0 0 0 0 0 0 +7.761 -3.689 -1.721 0 0 0 0 0 0 0 +7.766 -3.661 -1.719 0 0 0 0 0 0 0 +7.763 -3.63 -1.716 0 0 0 0 0 0 0 +7.788 -3.612 -1.719 0 0 0 0 0 0 0 +7.793 -3.584 -1.718 0 0 0 0 0 0 0 +7.814 -3.565 -1.72 0 0 0 0 0 0 0 +7.827 -3.555 -1.722 0 0 0 0 0 0 0 +7.833 -3.528 -1.721 0 0 0 0 0 0 0 +7.835 -3.5 -1.718 0 0 0 0 0 0 0 +7.842 -3.474 -1.718 0 0 0 0 0 0 0 +7.859 -3.451 -1.719 0 0 0 0 0 0 0 +7.873 -3.428 -1.72 0 0 0 0 0 0 0 +7.887 -3.405 -1.721 0 0 0 0 0 0 0 +7.896 -3.394 -1.721 0 0 0 0 0 0 0 +7.903 -3.368 -1.721 0 0 0 0 0 0 0 +7.91 -3.341 -1.72 0 0 0 0 0 0 0 +7.928 -3.32 -1.721 0 0 0 0 0 0 0 +7.931 -3.292 -1.72 0 0 0 0 0 0 0 +7.958 -3.273 -1.723 0 0 0 0 0 0 0 +7.966 -3.248 -1.723 0 0 0 0 0 0 0 +7.968 -3.234 -1.722 0 0 0 0 0 0 0 +7.976 -3.208 -1.722 0 0 0 0 0 0 0 +7.991 -3.185 -1.723 0 0 0 0 0 0 0 +7.994 -3.157 -1.721 0 0 0 0 0 0 0 +7.999 -3.13 -1.72 0 0 0 0 0 0 0 +8.014 -3.107 -1.721 0 0 0 0 0 0 0 +8.02 -3.08 -1.721 0 0 0 0 0 0 0 +8.03 -3.07 -1.722 0 0 0 0 0 0 0 +8.032 -3.042 -1.72 0 0 0 0 0 0 0 +8.055 -3.021 -1.723 0 0 0 0 0 0 0 +8.072 -2.998 -1.725 0 0 0 0 0 0 0 +8.081 -2.973 -1.725 0 0 0 0 0 0 0 +8.087 -2.946 -1.724 0 0 0 0 0 0 0 +8.1 -2.922 -1.725 0 0 0 0 0 0 0 +8.111 -2.912 -1.726 0 0 0 0 0 0 0 +8.113 -2.884 -1.725 0 0 0 0 0 0 0 +8.139 -2.864 -1.729 0 0 0 0 0 0 0 +8.148 -2.839 -1.729 0 0 0 0 0 0 0 +8.153 -2.812 -1.728 0 0 0 0 0 0 0 +8.165 -2.788 -1.729 0 0 0 0 0 0 0 +8.169 -2.76 -1.727 0 0 0 0 0 0 0 +8.179 -2.749 -1.729 0 0 0 0 0 0 0 +8.189 -2.724 -1.729 0 0 0 0 0 0 0 +8.188 -2.695 -1.727 0 0 0 0 0 0 0 +8.193 -2.668 -1.726 0 0 0 0 0 0 0 +8.209 -2.645 -1.728 0 0 0 0 0 0 0 +8.228 -2.623 -1.73 0 0 0 0 0 0 0 +8.242 -2.598 -1.731 0 0 0 0 0 0 0 +8.237 -2.583 -1.729 0 0 0 0 0 0 0 +8.248 -2.558 -1.73 0 0 0 0 0 0 0 +8.245 -2.529 -1.728 0 0 0 0 0 0 0 +8.253 -2.503 -1.728 0 0 0 0 0 0 0 +8.27 -2.479 -1.73 0 0 0 0 0 0 0 +8.276 -2.453 -1.729 0 0 0 0 0 0 0 +8.295 -2.43 -1.732 0 0 0 0 0 0 0 +8.31 -2.406 -1.734 0 0 0 0 0 0 0 +8.303 -2.39 -1.731 0 0 0 0 0 0 0 +8.32 -2.367 -1.733 0 0 0 0 0 0 0 +8.331 -2.341 -1.734 0 0 0 0 0 0 0 +8.338 -2.315 -1.734 0 0 0 0 0 0 0 +8.347 -2.29 -1.734 0 0 0 0 0 0 0 +8.364 -2.266 -1.736 0 0 0 0 0 0 0 +8.36 -2.237 -1.734 0 0 0 0 0 0 0 +8.371 -2.225 -1.736 0 0 0 0 0 0 0 +8.408 -2.207 -1.742 0 0 0 0 0 0 0 +6.924 -1.799 -1.412 0 0 0 0 0 0 0 +8.418 -2.153 -1.742 0 0 0 0 0 0 0 +8.424 -2.127 -1.742 0 0 0 0 0 0 0 +8.418 -2.097 -1.739 0 0 0 0 0 0 0 +7.207 -1.763 -1.469 0 0 0 0 0 0 0 +7.228 -1.744 -1.472 0 0 0 0 0 0 0 +8.395 -1.994 -1.729 0 0 0 0 0 0 0 +7.29 -1.711 -1.484 0 0 0 0 0 0 0 +8.367 -1.932 -1.72 0 0 0 0 0 0 0 +7.215 -1.645 -1.465 0 0 0 0 0 0 0 +8.469 -1.899 -1.739 0 0 0 0 0 0 0 +7.583 -1.666 -1.543 0 0 0 0 0 0 0 +7.6 -1.644 -1.546 0 0 0 0 0 0 0 +7.593 -1.618 -1.543 0 0 0 0 0 0 0 +7.514 -1.577 -1.525 0 0 0 0 0 0 0 +7.498 -1.549 -1.52 0 0 0 0 0 0 0 +7.66 -1.557 -1.554 0 0 0 0 0 0 0 +7.634 -1.539 -1.548 0 0 0 0 0 0 0 +7.721 -1.531 -1.566 0 0 0 0 0 0 0 +8.598 -1.674 -1.757 0 0 0 0 0 0 0 +8.626 -1.651 -1.762 0 0 0 0 0 0 0 +8.639 -1.625 -1.763 0 0 0 0 0 0 0 +8.644 -1.598 -1.763 0 0 0 0 0 0 0 +8.61 -1.564 -1.755 0 0 0 0 0 0 0 +8.478 -1.527 -1.726 0 0 0 0 0 0 0 +7.922 -1.403 -1.603 0 0 0 0 0 0 0 +8.653 -1.502 -1.762 0 0 0 0 0 0 0 +8.604 -1.466 -1.75 0 0 0 0 0 0 0 +8.639 -1.444 -1.757 0 0 0 0 0 0 0 +8.325 -1.365 -1.687 0 0 0 0 0 0 0 +8.413 -1.352 -1.705 0 0 0 0 0 0 0 +8.594 -1.367 -1.744 0 0 0 0 0 0 0 +8.647 -1.347 -1.755 0 0 0 0 0 0 0 +8.659 -1.321 -1.757 0 0 0 0 0 0 0 +8.487 -1.268 -1.718 0 0 0 0 0 0 0 +8.33 -1.219 -1.684 0 0 0 0 0 0 0 +8.609 -1.231 -1.743 0 0 0 0 0 0 0 +8.652 -1.209 -1.752 0 0 0 0 0 0 0 +8.657 -1.196 -1.752 0 0 0 0 0 0 0 +8.661 -1.169 -1.752 0 0 0 0 0 0 0 +8.659 -1.141 -1.751 0 0 0 0 0 0 0 +8.647 -1.112 -1.748 0 0 0 0 0 0 0 +8.652 -1.085 -1.748 0 0 0 0 0 0 0 +8.665 -1.059 -1.75 0 0 0 0 0 0 0 +8.663 -1.031 -1.749 0 0 0 0 0 0 0 +8.657 -1.017 -1.747 0 0 0 0 0 0 0 +8.656 -0.989 -1.747 0 0 0 0 0 0 0 +8.671 -0.963 -1.749 0 0 0 0 0 0 0 +8.664 -0.935 -1.747 0 0 0 0 0 0 0 +8.673 -0.908 -1.748 0 0 0 0 0 0 0 +8.664 -0.88 -1.746 0 0 0 0 0 0 0 +8.672 -0.853 -1.747 0 0 0 0 0 0 0 +8.672 -0.839 -1.747 0 0 0 0 0 0 0 +8.678 -0.812 -1.747 0 0 0 0 0 0 0 +8.663 -0.783 -1.744 0 0 0 0 0 0 0 +8.679 -0.757 -1.747 0 0 0 0 0 0 0 +8.67 -0.729 -1.744 0 0 0 0 0 0 0 +8.672 -0.702 -1.744 0 0 0 0 0 0 0 +8.674 -0.675 -1.744 0 0 0 0 0 0 0 +8.671 -0.661 -1.743 0 0 0 0 0 0 0 +8.689 -0.635 -1.747 0 0 0 0 0 0 0 +8.67 -0.606 -1.742 0 0 0 0 0 0 0 +8.666 -0.578 -1.741 0 0 0 0 0 0 0 +8.689 -0.552 -1.745 0 0 0 0 0 0 0 +8.681 -0.525 -1.743 0 0 0 0 0 0 0 +8.671 -0.497 -1.741 0 0 0 0 0 0 0 +8.671 -0.483 -1.741 0 0 0 0 0 0 0 +8.671 -0.456 -1.74 0 0 0 0 0 0 0 +8.672 -0.428 -1.74 0 0 0 0 0 0 0 +8.672 -0.401 -1.74 0 0 0 0 0 0 0 +8.667 -0.374 -1.739 0 0 0 0 0 0 0 +8.662 -0.346 -1.737 0 0 0 0 0 0 0 +8.667 -0.319 -1.738 0 0 0 0 0 0 0 +8.672 -0.306 -1.739 0 0 0 0 0 0 0 +8.68 -0.279 -1.741 0 0 0 0 0 0 0 +8.671 -0.251 -1.739 0 0 0 0 0 0 0 +8.668 -0.224 -1.738 0 0 0 0 0 0 0 +8.663 -0.196 -1.736 0 0 0 0 0 0 0 +8.662 -0.169 -1.736 0 0 0 0 0 0 0 +8.666 -0.142 -1.737 0 0 0 0 0 0 0 +8.66 -0.128 -1.736 0 0 0 0 0 0 0 +8.655 -0.101 -1.734 0 0 0 0 0 0 0 +8.657 -0.074 -1.735 0 0 0 0 0 0 0 +8.659 -0.047 -1.735 0 0 0 0 0 0 0 +8.64 -0.019 -1.731 0 0 0 0 0 0 0 +8.33 0.023 -1.733 0 0 0 0 0 0 0 +8.33 0.049 -1.733 0 0 0 0 0 0 0 +8.322 0.075 -1.731 0 0 0 0 0 0 0 +8.316 0.101 -1.73 0 0 0 0 0 0 0 +8.308 0.114 -1.728 0 0 0 0 0 0 0 +8.311 0.141 -1.729 0 0 0 0 0 0 0 +8.313 0.167 -1.729 0 0 0 0 0 0 0 +8.304 0.193 -1.728 0 0 0 0 0 0 0 +8.302 0.219 -1.727 0 0 0 0 0 0 0 +8.307 0.245 -1.729 0 0 0 0 0 0 0 +8.314 0.271 -1.73 0 0 0 0 0 0 0 +8.296 0.284 -1.726 0 0 0 0 0 0 0 +8.293 0.31 -1.726 0 0 0 0 0 0 0 +8.296 0.336 -1.727 0 0 0 0 0 0 0 +8.299 0.362 -1.728 0 0 0 0 0 0 0 +8.3 0.388 -1.728 0 0 0 0 0 0 0 +8.281 0.414 -1.724 0 0 0 0 0 0 0 +8.287 0.44 -1.726 0 0 0 0 0 0 0 +8.288 0.453 -1.726 0 0 0 0 0 0 0 +8.271 0.478 -1.723 0 0 0 0 0 0 0 +8.266 0.504 -1.722 0 0 0 0 0 0 0 +8.266 0.53 -1.723 0 0 0 0 0 0 0 +8.259 0.556 -1.721 0 0 0 0 0 0 0 +8.257 0.582 -1.721 0 0 0 0 0 0 0 +8.249 0.607 -1.72 0 0 0 0 0 0 0 +8.249 0.633 -1.72 0 0 0 0 0 0 0 +8.248 0.646 -1.72 0 0 0 0 0 0 0 +8.242 0.672 -1.719 0 0 0 0 0 0 0 +8.252 0.699 -1.722 0 0 0 0 0 0 0 +8.238 0.724 -1.719 0 0 0 0 0 0 0 +8.239 0.75 -1.72 0 0 0 0 0 0 0 +8.235 0.776 -1.72 0 0 0 0 0 0 0 +8.221 0.8 -1.717 0 0 0 0 0 0 0 +8.243 0.815 -1.723 0 0 0 0 0 0 0 +8.24 0.841 -1.723 0 0 0 0 0 0 0 +8.224 0.866 -1.719 0 0 0 0 0 0 0 +8.218 0.891 -1.719 0 0 0 0 0 0 0 +8.211 0.917 -1.718 0 0 0 0 0 0 0 +8.2 0.942 -1.716 0 0 0 0 0 0 0 +8.211 0.969 -1.719 0 0 0 0 0 0 0 +8.201 0.981 -1.717 0 0 0 0 0 0 0 +8.191 1.006 -1.716 0 0 0 0 0 0 0 +8.189 1.032 -1.716 0 0 0 0 0 0 0 +8.196 1.059 -1.718 0 0 0 0 0 0 0 +8.171 1.082 -1.713 0 0 0 0 0 0 0 +8.171 1.108 -1.714 0 0 0 0 0 0 0 +8.168 1.133 -1.714 0 0 0 0 0 0 0 +8.17 1.147 -1.715 0 0 0 0 0 0 0 +8.17 1.173 -1.716 0 0 0 0 0 0 0 +8.172 1.2 -1.717 0 0 0 0 0 0 0 +8.143 1.222 -1.712 0 0 0 0 0 0 0 +8.14 1.247 -1.712 0 0 0 0 0 0 0 +8.149 1.275 -1.715 0 0 0 0 0 0 0 +8.124 1.297 -1.71 0 0 0 0 0 0 0 +8.141 1.313 -1.714 0 0 0 0 0 0 0 +8.106 1.333 -1.707 0 0 0 0 0 0 0 +8.138 1.365 -1.716 0 0 0 0 0 0 0 +8.123 1.389 -1.713 0 0 0 0 0 0 0 +8.107 1.412 -1.71 0 0 0 0 0 0 0 +8.1 1.437 -1.71 0 0 0 0 0 0 0 +8.084 1.461 -1.707 0 0 0 0 0 0 0 +8.095 1.476 -1.71 0 0 0 0 0 0 0 +8.085 1.5 -1.709 0 0 0 0 0 0 0 +8.074 1.524 -1.708 0 0 0 0 0 0 0 +8.066 1.549 -1.707 0 0 0 0 0 0 0 +8.063 1.575 -1.707 0 0 0 0 0 0 0 +8.048 1.598 -1.705 0 0 0 0 0 0 0 +8.053 1.625 -1.707 0 0 0 0 0 0 0 +8.058 1.64 -1.709 0 0 0 0 0 0 0 +8.047 1.664 -1.708 0 0 0 0 0 0 0 +8.041 1.689 -1.708 0 0 0 0 0 0 0 +8.046 1.716 -1.71 0 0 0 0 0 0 0 +8.044 1.742 -1.711 0 0 0 0 0 0 0 +8.033 1.766 -1.709 0 0 0 0 0 0 0 +8.033 1.793 -1.711 0 0 0 0 0 0 0 +8.026 1.805 -1.71 0 0 0 0 0 0 0 +8.019 1.829 -1.709 0 0 0 0 0 0 0 +8.021 1.856 -1.711 0 0 0 0 0 0 0 +8.017 1.882 -1.712 0 0 0 0 0 0 0 +8.003 1.905 -1.71 0 0 0 0 0 0 0 +8.006 1.933 -1.712 0 0 0 0 0 0 0 +7.997 1.957 -1.711 0 0 0 0 0 0 0 +7.992 1.969 -1.711 0 0 0 0 0 0 0 +7.993 1.996 -1.713 0 0 0 0 0 0 0 +7.983 2.02 -1.712 0 0 0 0 0 0 0 +7.984 2.047 -1.713 0 0 0 0 0 0 0 +7.97 2.07 -1.712 0 0 0 0 0 0 0 +7.96 2.094 -1.711 0 0 0 0 0 0 0 +7.963 2.122 -1.713 0 0 0 0 0 0 0 +7.965 2.136 -1.714 0 0 0 0 0 0 0 +7.949 2.158 -1.712 0 0 0 0 0 0 0 +7.951 2.186 -1.714 0 0 0 0 0 0 0 +7.948 2.212 -1.715 0 0 0 0 0 0 0 +7.937 2.236 -1.714 0 0 0 0 0 0 0 +7.915 2.256 -1.711 0 0 0 0 0 0 0 +7.925 2.286 -1.715 0 0 0 0 0 0 0 +7.931 2.301 -1.717 0 0 0 0 0 0 0 +7.907 2.321 -1.713 0 0 0 0 0 0 0 +7.907 2.348 -1.715 0 0 0 0 0 0 0 +7.896 2.372 -1.714 0 0 0 0 0 0 0 +7.894 2.398 -1.715 0 0 0 0 0 0 0 +7.892 2.425 -1.716 0 0 0 0 0 0 0 +7.882 2.449 -1.716 0 0 0 0 0 0 0 +7.888 2.464 -1.718 0 0 0 0 0 0 0 +7.869 2.486 -1.716 0 0 0 0 0 0 0 +7.867 2.512 -1.717 0 0 0 0 0 0 0 +7.868 2.54 -1.719 0 0 0 0 0 0 0 +7.856 2.563 -1.718 0 0 0 0 0 0 0 +7.841 2.586 -1.716 0 0 0 0 0 0 0 +7.851 2.616 -1.721 0 0 0 0 0 0 0 +7.834 2.638 -1.719 0 0 0 0 0 0 0 +7.831 2.651 -1.719 0 0 0 0 0 0 0 +7.828 2.677 -1.72 0 0 0 0 0 0 0 +7.824 2.703 -1.721 0 0 0 0 0 0 0 +7.806 2.724 -1.719 0 0 0 0 0 0 0 +7.808 2.753 -1.722 0 0 0 0 0 0 0 +7.805 2.779 -1.723 0 0 0 0 0 0 0 +7.803 2.792 -1.723 0 0 0 0 0 0 0 +7.794 2.817 -1.723 0 0 0 0 0 0 0 +7.783 2.84 -1.723 0 0 0 0 0 0 0 +7.774 2.865 -1.723 0 0 0 0 0 0 0 +7.771 2.891 -1.724 0 0 0 0 0 0 0 +7.749 2.911 -1.721 0 0 0 0 0 0 0 +7.743 2.937 -1.722 0 0 0 0 0 0 0 +7.735 2.947 -1.721 0 0 0 0 0 0 0 +7.742 2.978 -1.725 0 0 0 0 0 0 0 +7.733 3.002 -1.725 0 0 0 0 0 0 0 +7.727 3.028 -1.726 0 0 0 0 0 0 0 +7.721 3.054 -1.727 0 0 0 0 0 0 0 +7.704 3.075 -1.725 0 0 0 0 0 0 0 +7.702 3.102 -1.727 0 0 0 0 0 0 0 +7.686 3.11 -1.724 0 0 0 0 0 0 0 +7.68 3.135 -1.725 0 0 0 0 0 0 0 +7.677 3.163 -1.727 0 0 0 0 0 0 0 +7.665 3.186 -1.726 0 0 0 0 0 0 0 +7.653 3.209 -1.726 0 0 0 0 0 0 0 +7.658 3.239 -1.729 0 0 0 0 0 0 0 +7.635 3.258 -1.726 0 0 0 0 0 0 0 +7.617 3.279 -1.725 0 0 0 0 0 0 0 +7.621 3.295 -1.727 0 0 0 0 0 0 0 +7.605 3.316 -1.726 0 0 0 0 0 0 0 +7.606 3.345 -1.728 0 0 0 0 0 0 0 +7.597 3.37 -1.729 0 0 0 0 0 0 0 +7.581 3.391 -1.727 0 0 0 0 0 0 0 +7.584 3.421 -1.731 0 0 0 0 0 0 0 +7.575 3.446 -1.731 0 0 0 0 0 0 0 +7.575 3.46 -1.733 0 0 0 0 0 0 0 +7.543 3.474 -1.727 0 0 0 0 0 0 0 +7.536 3.499 -1.728 0 0 0 0 0 0 0 +7.544 3.532 -1.733 0 0 0 0 0 0 0 +7.528 3.553 -1.732 0 0 0 0 0 0 0 +7.518 3.578 -1.732 0 0 0 0 0 0 0 +7.516 3.591 -1.733 0 0 0 0 0 0 0 +7.5 3.612 -1.732 0 0 0 0 0 0 0 +7.471 3.627 -1.727 0 0 0 0 0 0 0 +7.438 3.641 -1.722 0 0 0 0 0 0 0 +7.472 3.686 -1.733 0 0 0 0 0 0 0 +7.461 3.71 -1.733 0 0 0 0 0 0 0 +7.454 3.736 -1.735 0 0 0 0 0 0 0 +7.436 3.741 -1.732 0 0 0 0 0 0 0 +7.433 3.769 -1.734 0 0 0 0 0 0 0 +7.425 3.794 -1.735 0 0 0 0 0 0 0 +7.404 3.813 -1.733 0 0 0 0 0 0 0 +7.394 3.837 -1.733 0 0 0 0 0 0 0 +7.394 3.867 -1.736 0 0 0 0 0 0 0 +7.369 3.884 -1.733 0 0 0 0 0 0 0 +7.362 3.894 -1.733 0 0 0 0 0 0 0 +7.351 3.918 -1.733 0 0 0 0 0 0 0 +7.335 3.94 -1.732 0 0 0 0 0 0 0 +7.326 3.964 -1.733 0 0 0 0 0 0 0 +7.319 3.99 -1.734 0 0 0 0 0 0 0 +7.306 4.013 -1.734 0 0 0 0 0 0 0 +7.29 4.034 -1.733 0 0 0 0 0 0 0 +7.279 4.043 -1.732 0 0 0 0 0 0 0 +7.283 4.075 -1.736 0 0 0 0 0 0 0 +7.253 4.088 -1.732 0 0 0 0 0 0 0 +7.259 4.122 -1.737 0 0 0 0 0 0 0 +7.246 4.145 -1.737 0 0 0 0 0 0 0 +7.236 4.169 -1.738 0 0 0 0 0 0 0 +7.235 4.199 -1.741 0 0 0 0 0 0 0 +7.23 4.211 -1.741 0 0 0 0 0 0 0 +7.219 4.235 -1.742 0 0 0 0 0 0 0 +7.204 4.256 -1.741 0 0 0 0 0 0 0 +7.179 4.272 -1.738 0 0 0 0 0 0 0 +7.165 4.295 -1.738 0 0 0 0 0 0 0 +7.15 4.316 -1.738 0 0 0 0 0 0 0 +7.128 4.334 -1.736 0 0 0 0 0 0 0 +7.121 4.36 -1.737 0 0 0 0 0 0 0 +7.107 4.367 -1.736 0 0 0 0 0 0 0 +7.089 4.386 -1.734 0 0 0 0 0 0 0 +7.075 4.409 -1.734 0 0 0 0 0 0 0 +7.046 4.422 -1.73 0 0 0 0 0 0 0 +7.047 4.453 -1.734 0 0 0 0 0 0 0 +7.031 4.474 -1.734 0 0 0 0 0 0 0 +7.017 4.496 -1.734 0 0 0 0 0 0 0 +7.012 4.508 -1.734 0 0 0 0 0 0 0 +7.001 4.532 -1.735 0 0 0 0 0 0 0 +6.99 4.556 -1.736 0 0 0 0 0 0 0 +6.971 4.575 -1.735 0 0 0 0 0 0 0 +6.958 4.598 -1.735 0 0 0 0 0 0 0 +6.937 4.616 -1.733 0 0 0 0 0 0 0 +6.934 4.63 -1.735 0 0 0 0 0 0 0 +6.923 4.654 -1.736 0 0 0 0 0 0 0 +6.907 4.674 -1.735 0 0 0 0 0 0 0 +6.887 4.693 -1.734 0 0 0 0 0 0 0 +6.876 4.716 -1.735 0 0 0 0 0 0 0 +6.863 4.739 -1.735 0 0 0 0 0 0 0 +6.857 4.767 -1.738 0 0 0 0 0 0 0 +6.842 4.773 -1.736 0 0 0 0 0 0 0 +6.828 4.795 -1.736 0 0 0 0 0 0 0 +6.818 4.82 -1.737 0 0 0 0 0 0 0 +6.803 4.841 -1.737 0 0 0 0 0 0 0 +6.796 4.868 -1.739 0 0 0 0 0 0 0 +6.78 4.89 -1.739 0 0 0 0 0 0 0 +6.762 4.909 -1.739 0 0 0 0 0 0 0 +6.76 4.924 -1.74 0 0 0 0 0 0 0 +6.746 4.946 -1.741 0 0 0 0 0 0 0 +6.732 4.969 -1.741 0 0 0 0 0 0 0 +6.721 4.993 -1.743 0 0 0 0 0 0 0 +6.707 5.015 -1.743 0 0 0 0 0 0 0 +6.709 5.049 -1.748 0 0 0 0 0 0 0 +6.688 5.067 -1.746 0 0 0 0 0 0 0 +6.664 5.082 -1.744 0 0 0 0 0 0 0 +6.678 5.109 -1.75 0 0 0 0 0 0 0 +6.654 5.124 -1.748 0 0 0 0 0 0 0 +6.644 5.15 -1.75 0 0 0 0 0 0 0 +6.639 5.179 -1.753 0 0 0 0 0 0 0 +6.613 5.192 -1.75 0 0 0 0 0 0 0 +6.608 5.222 -1.753 0 0 0 0 0 0 0 +6.605 5.253 -1.757 0 0 0 0 0 0 0 +6.585 5.254 -1.754 0 0 0 0 0 0 0 +6.577 5.282 -1.756 0 0 0 0 0 0 0 +6.577 5.316 -1.761 0 0 0 0 0 0 0 +6.548 5.327 -1.758 0 0 0 0 0 0 0 +6.53 5.346 -1.757 0 0 0 0 0 0 0 +6.524 5.375 -1.76 0 0 0 0 0 0 0 +6.506 5.394 -1.76 0 0 0 0 0 0 0 +6.512 5.417 -1.764 0 0 0 0 0 0 0 +6.494 5.436 -1.764 0 0 0 0 0 0 0 +6.472 5.453 -1.763 0 0 0 0 0 0 0 +6.456 5.475 -1.763 0 0 0 0 0 0 0 +6.457 5.51 -1.768 0 0 0 0 0 0 0 +6.432 5.524 -1.766 0 0 0 0 0 0 0 +6.415 5.544 -1.766 0 0 0 0 0 0 0 +6.406 5.554 -1.766 0 0 0 0 0 0 0 +6.397 5.582 -1.769 0 0 0 0 0 0 0 +6.39 5.611 -1.772 0 0 0 0 0 0 0 +6.381 5.639 -1.774 0 0 0 0 0 0 0 +6.355 5.651 -1.772 0 0 0 0 0 0 0 +6.354 5.686 -1.777 0 0 0 0 0 0 0 +6.334 5.704 -1.776 0 0 0 0 0 0 0 +6.293 5.685 -1.766 0 0 0 0 0 0 0 +6.292 5.72 -1.772 0 0 0 0 0 0 0 +6.261 5.728 -1.768 0 0 0 0 0 0 0 +6.258 5.761 -1.772 0 0 0 0 0 0 0 +6.264 5.803 -1.78 0 0 0 0 0 0 0 +6.254 5.831 -1.782 0 0 0 0 0 0 0 +6.234 5.849 -1.782 0 0 0 0 0 0 0 +6.23 5.863 -1.783 0 0 0 0 0 0 0 +6.215 5.887 -1.784 0 0 0 0 0 0 0 +6.204 5.913 -1.786 0 0 0 0 0 0 0 +6.188 5.935 -1.787 0 0 0 0 0 0 0 +6.165 5.95 -1.786 0 0 0 0 0 0 0 +6.142 5.966 -1.785 0 0 0 0 0 0 0 +6.135 5.996 -1.788 0 0 0 0 0 0 0 +6.121 6.001 -1.787 0 0 0 0 0 0 0 +6.101 6.019 -1.786 0 0 0 0 0 0 0 +6.086 6.042 -1.788 0 0 0 0 0 0 0 +6.07 6.064 -1.789 0 0 0 0 0 0 0 +6.056 6.089 -1.79 0 0 0 0 0 0 0 +6.037 6.108 -1.79 0 0 0 0 0 0 0 +6.029 6.138 -1.794 0 0 0 0 0 0 0 +6.015 6.143 -1.793 0 0 0 0 0 0 0 +5.997 6.163 -1.793 0 0 0 0 0 0 0 +5.993 6.198 -1.798 0 0 0 0 0 0 0 +5.969 6.212 -1.796 0 0 0 0 0 0 0 +5.952 6.234 -1.797 0 0 0 0 0 0 0 +5.949 6.269 -1.803 0 0 0 0 0 0 0 +5.933 6.292 -1.804 0 0 0 0 0 0 0 +5.935 6.314 -1.808 0 0 0 0 0 0 0 +5.936 6.354 -1.814 0 0 0 0 0 0 0 +5.924 6.381 -1.817 0 0 0 0 0 0 0 +5.894 6.39 -1.814 0 0 0 0 0 0 0 +5.883 6.418 -1.817 0 0 0 0 0 0 0 +5.857 6.43 -1.815 0 0 0 0 0 0 0 +5.846 6.458 -1.818 0 0 0 0 0 0 0 +5.825 6.456 -1.814 0 0 0 0 0 0 0 +5.797 6.465 -1.812 0 0 0 0 0 0 0 +5.765 6.47 -1.808 0 0 0 0 0 0 0 +5.739 6.483 -1.806 0 0 0 0 0 0 0 +5.725 6.508 -1.808 0 0 0 0 0 0 0 +5.696 6.516 -1.805 0 0 0 0 0 0 0 +5.674 6.532 -1.805 0 0 0 0 0 0 0 +5.651 6.547 -1.804 0 0 0 0 0 0 0 +5.652 6.569 -1.808 0 0 0 0 0 0 0 +5.624 6.578 -1.805 0 0 0 0 0 0 0 +5.611 6.605 -1.808 0 0 0 0 0 0 0 +5.577 6.607 -1.803 0 0 0 0 0 0 0 +5.559 6.628 -1.804 0 0 0 0 0 0 0 +5.543 6.651 -1.806 0 0 0 0 0 0 0 +5.511 6.655 -1.802 0 0 0 0 0 0 0 +5.498 6.661 -1.801 0 0 0 0 0 0 0 +5.486 6.688 -1.804 0 0 0 0 0 0 0 +5.458 6.698 -1.802 0 0 0 0 0 0 0 +5.435 6.712 -1.801 0 0 0 0 0 0 0 +5.413 6.728 -1.801 0 0 0 0 0 0 0 +5.383 6.734 -1.798 0 0 0 0 0 0 0 +5.374 6.744 -1.798 0 0 0 0 0 0 0 +5.351 6.759 -1.798 0 0 0 0 0 0 0 +5.331 6.778 -1.798 0 0 0 0 0 0 0 +5.304 6.787 -1.796 0 0 0 0 0 0 0 +5.288 6.811 -1.798 0 0 0 0 0 0 0 +5.266 6.826 -1.798 0 0 0 0 0 0 0 +5.242 6.839 -1.797 0 0 0 0 0 0 0 +5.239 6.858 -1.8 0 0 0 0 0 0 0 +5.215 6.872 -1.799 0 0 0 0 0 0 0 +5.199 6.894 -1.801 0 0 0 0 0 0 0 +5.168 6.898 -1.797 0 0 0 0 0 0 0 +5.156 6.928 -1.801 0 0 0 0 0 0 0 +5.13 6.938 -1.8 0 0 0 0 0 0 0 +5.112 6.959 -1.801 0 0 0 0 0 0 0 +5.085 6.969 -1.799 0 0 0 0 0 0 0 +5.073 6.975 -1.799 0 0 0 0 0 0 0 +5.048 6.986 -1.797 0 0 0 0 0 0 0 +5.027 7.004 -1.798 0 0 0 0 0 0 0 +5.007 7.023 -1.799 0 0 0 0 0 0 0 +4.983 7.035 -1.798 0 0 0 0 0 0 0 +4.96 7.051 -1.798 0 0 0 0 0 0 0 +4.941 7.07 -1.799 0 0 0 0 0 0 0 +4.927 7.074 -1.798 0 0 0 0 0 0 0 +4.908 7.094 -1.799 0 0 0 0 0 0 0 +4.888 7.113 -1.8 0 0 0 0 0 0 0 +4.879 7.148 -1.805 0 0 0 0 0 0 0 +4.859 7.166 -1.806 0 0 0 0 0 0 0 +4.822 7.16 -1.8 0 0 0 0 0 0 0 +4.803 7.18 -1.802 0 0 0 0 0 0 0 +4.776 7.189 -1.8 0 0 0 0 0 0 0 +4.77 7.205 -1.802 0 0 0 0 0 0 0 +4.748 7.221 -1.803 0 0 0 0 0 0 0 +4.723 7.231 -1.801 0 0 0 0 0 0 0 +4.722 7.28 -1.81 0 0 0 0 0 0 0 +4.68 7.266 -1.803 0 0 0 0 0 0 0 +4.668 7.297 -1.807 0 0 0 0 0 0 0 +4.65 7.294 -1.804 0 0 0 0 0 0 0 +4.625 7.305 -1.803 0 0 0 0 0 0 0 +4.609 7.331 -1.806 0 0 0 0 0 0 0 +4.584 7.343 -1.806 0 0 0 0 0 0 0 +4.545 7.33 -1.799 0 0 0 0 0 0 0 +4.537 7.37 -1.805 0 0 0 0 0 0 0 +4.51 7.377 -1.803 0 0 0 0 0 0 0 +4.479 7.38 -1.8 0 0 0 0 0 0 0 +4.476 7.4 -1.804 0 0 0 0 0 0 0 +4.445 7.401 -1.8 0 0 0 0 0 0 0 +4.418 7.41 -1.799 0 0 0 0 0 0 0 +4.398 7.428 -1.8 0 0 0 0 0 0 0 +4.373 7.439 -1.8 0 0 0 0 0 0 0 +4.345 7.446 -1.798 0 0 0 0 0 0 0 +4.323 7.461 -1.798 0 0 0 0 0 0 0 +4.306 7.459 -1.796 0 0 0 0 0 0 0 +4.284 7.475 -1.796 0 0 0 0 0 0 0 +4.257 7.483 -1.795 0 0 0 0 0 0 0 +4.234 7.496 -1.795 0 0 0 0 0 0 0 +4.21 7.51 -1.795 0 0 0 0 0 0 0 +4.182 7.514 -1.793 0 0 0 0 0 0 0 +4.157 7.526 -1.793 0 0 0 0 0 0 0 +4.146 7.534 -1.793 0 0 0 0 0 0 0 +4.122 7.545 -1.793 0 0 0 0 0 0 0 +4.096 7.555 -1.792 0 0 0 0 0 0 0 +4.071 7.564 -1.791 0 0 0 0 0 0 0 +4.04 7.565 -1.788 0 0 0 0 0 0 0 +4.018 7.581 -1.789 0 0 0 0 0 0 0 +3.995 7.595 -1.789 0 0 0 0 0 0 0 +3.98 7.595 -1.787 0 0 0 0 0 0 0 +3.956 7.607 -1.787 0 0 0 0 0 0 0 +3.93 7.616 -1.786 0 0 0 0 0 0 0 +3.913 7.642 -1.79 0 0 0 0 0 0 0 +3.881 7.637 -1.786 0 0 0 0 0 0 0 +3.859 7.654 -1.787 0 0 0 0 0 0 0 +3.832 7.661 -1.786 0 0 0 0 0 0 0 +3.819 7.664 -1.785 0 0 0 0 0 0 0 +3.792 7.67 -1.783 0 0 0 0 0 0 0 +3.771 7.689 -1.785 0 0 0 0 0 0 0 +3.746 7.699 -1.785 0 0 0 0 0 0 0 +3.726 7.718 -1.786 0 0 0 0 0 0 0 +3.7 7.728 -1.786 0 0 0 0 0 0 0 +3.667 7.72 -1.781 0 0 0 0 0 0 0 +3.647 7.741 -1.783 0 0 0 0 0 0 0 +3.632 7.741 -1.782 0 0 0 0 0 0 0 +3.613 7.763 -1.785 0 0 0 0 0 0 0 +3.593 7.785 -1.787 0 0 0 0 0 0 0 +3.57 7.798 -1.788 0 0 0 0 0 0 0 +3.543 7.804 -1.786 0 0 0 0 0 0 0 +3.525 7.829 -1.79 0 0 0 0 0 0 0 +3.491 7.821 -1.785 0 0 0 0 0 0 0 +3.494 7.86 -1.793 0 0 0 0 0 0 0 +3.465 7.862 -1.791 0 0 0 0 0 0 0 +3.439 7.869 -1.79 0 0 0 0 0 0 0 +3.413 7.876 -1.79 0 0 0 0 0 0 0 +3.389 7.889 -1.79 0 0 0 0 0 0 0 +3.372 7.919 -1.795 0 0 0 0 0 0 0 +3.344 7.923 -1.793 0 0 0 0 0 0 0 +3.325 7.912 -1.789 0 0 0 0 0 0 0 +3.303 7.927 -1.79 0 0 0 0 0 0 0 +3.282 7.949 -1.793 0 0 0 0 0 0 0 +3.239 7.916 -1.783 0 0 0 0 0 0 0 +3.228 7.958 -1.79 0 0 0 0 0 0 0 +3.2 7.963 -1.789 0 0 0 0 0 0 0 +3.171 7.962 -1.786 0 0 0 0 0 0 0 +3.162 7.976 -1.789 0 0 0 0 0 0 0 +3.141 7.995 -1.791 0 0 0 0 0 0 0 +3.106 7.979 -1.785 0 0 0 0 0 0 0 +3.08 7.987 -1.784 0 0 0 0 0 0 0 +3.055 7.999 -1.785 0 0 0 0 0 0 0 +3.022 7.986 -1.78 0 0 0 0 0 0 0 +2.993 7.985 -1.777 0 0 0 0 0 0 0 +2.979 7.988 -1.776 0 0 0 0 0 0 0 +2.945 7.973 -1.771 0 0 0 0 0 0 0 +2.914 7.966 -1.767 0 0 0 0 0 0 0 +2.899 8.003 -1.773 0 0 0 0 0 0 0 +2.866 7.988 -1.768 0 0 0 0 0 0 0 +2.842 8.001 -1.769 0 0 0 0 0 0 0 +2.821 8.02 -1.771 0 0 0 0 0 0 0 +2.792 8.02 -1.769 0 0 0 0 0 0 0 +2.779 8.024 -1.769 0 0 0 0 0 0 0 +2.756 8.037 -1.77 0 0 0 0 0 0 0 +2.729 8.042 -1.769 0 0 0 0 0 0 0 +2.702 8.045 -1.768 0 0 0 0 0 0 0 +2.678 8.059 -1.769 0 0 0 0 0 0 0 +2.644 8.041 -1.763 0 0 0 0 0 0 0 +2.622 8.059 -1.765 0 0 0 0 0 0 0 +2.608 8.057 -1.764 0 0 0 0 0 0 0 +2.578 8.051 -1.76 0 0 0 0 0 0 0 +2.541 8.023 -1.752 0 0 0 0 0 0 0 +2.52 8.044 -1.755 0 0 0 0 0 0 0 +2.493 8.047 -1.754 0 0 0 0 0 0 0 +2.469 8.06 -1.755 0 0 0 0 0 0 0 +2.451 8.092 -1.761 0 0 0 0 0 0 0 +2.436 8.086 -1.759 0 0 0 0 0 0 0 +2.417 8.116 -1.764 0 0 0 0 0 0 0 +2.358 8.01 -1.737 0 0 0 0 0 0 0 +2.212 7.607 -1.642 0 0 0 0 0 0 0 +2.189 7.618 -1.643 0 0 0 0 0 0 0 +2.164 7.621 -1.642 0 0 0 0 0 0 0 +2.136 7.613 -1.639 0 0 0 0 0 0 0 +2.123 7.614 -1.638 0 0 0 0 0 0 0 +2.094 7.6 -1.633 0 0 0 0 0 0 0 +2.066 7.593 -1.63 0 0 0 0 0 0 0 +2.042 7.598 -1.63 0 0 0 0 0 0 0 +2.018 7.606 -1.63 0 0 0 0 0 0 0 +1.991 7.599 -1.627 0 0 0 0 0 0 0 +1.974 7.632 -1.633 0 0 0 0 0 0 0 +1.939 7.597 -1.624 0 0 0 0 0 0 0 +1.756 6.934 -1.471 0 0 0 0 0 0 0 +1.725 6.902 -1.462 0 0 0 0 0 0 0 +1.779 7.21 -1.532 0 0 0 0 0 0 0 +1.858 7.629 -1.626 0 0 0 0 0 0 0 +1.836 7.642 -1.628 0 0 0 0 0 0 0 +1.811 7.644 -1.627 0 0 0 0 0 0 0 +1.784 7.636 -1.624 0 0 0 0 0 0 0 +1.774 7.647 -1.626 0 0 0 0 0 0 0 +0.802 3.568 -0.692 0 0 0 0 0 0 0 +0.709 3.214 -0.61 0 0 0 0 0 0 0 +0.699 3.217 -0.61 0 0 0 0 0 0 0 +0.687 3.211 -0.609 0 0 0 0 0 0 0 +0.678 3.217 -0.609 0 0 0 0 0 0 0 +0.655 3.184 -0.601 0 0 0 0 0 0 0 +0.638 3.156 -0.594 0 0 0 0 0 0 0 +0.626 3.144 -0.591 0 0 0 0 0 0 0 +0.616 3.146 -0.591 0 0 0 0 0 0 0 +0.606 3.148 -0.591 0 0 0 0 0 0 0 +0.596 3.15 -0.591 0 0 0 0 0 0 0 +0.587 3.156 -0.592 0 0 0 0 0 0 0 +0.582 3.157 -0.592 0 0 0 0 0 0 0 +0.571 3.155 -0.591 0 0 0 0 0 0 0 +0.56 3.151 -0.59 0 0 0 0 0 0 0 +0.55 3.152 -0.59 0 0 0 0 0 0 0 +0.541 3.158 -0.591 0 0 0 0 0 0 0 +0.531 3.16 -0.591 0 0 0 0 0 0 0 +0.521 3.159 -0.59 0 0 0 0 0 0 0 +0.511 3.161 -0.59 0 0 0 0 0 0 0 +0.506 3.162 -0.59 0 0 0 0 0 0 0 +0.497 3.167 -0.591 0 0 0 0 0 0 0 +0.486 3.163 -0.59 0 0 0 0 0 0 0 +0.477 3.168 -0.591 0 0 0 0 0 0 0 +0.467 3.17 -0.591 0 0 0 0 0 0 0 +0.457 3.171 -0.591 0 0 0 0 0 0 0 +0.447 3.176 -0.592 0 0 0 0 0 0 0 +0.442 3.175 -0.591 0 0 0 0 0 0 0 +0.432 3.179 -0.592 0 0 0 0 0 0 0 +0.422 3.18 -0.592 0 0 0 0 0 0 0 +0.412 3.179 -0.591 0 0 0 0 0 0 0 +0.403 3.184 -0.592 0 0 0 0 0 0 0 +0.392 3.184 -0.592 0 0 0 0 0 0 0 +0.382 3.181 -0.591 0 0 0 0 0 0 0 +0.376 3.178 -0.59 0 0 0 0 0 0 0 +0.367 3.187 -0.592 0 0 0 0 0 0 0 +0.357 3.186 -0.591 0 0 0 0 0 0 0 +0.348 3.193 -0.592 0 0 0 0 0 0 0 +0.337 3.184 -0.59 0 0 0 0 0 0 0 +0.327 3.189 -0.591 0 0 0 0 0 0 0 +0.318 3.198 -0.593 0 0 0 0 0 0 0 +0.313 3.196 -0.592 0 0 0 0 0 0 0 +0.303 3.201 -0.593 0 0 0 0 0 0 0 +0.293 3.2 -0.593 0 0 0 0 0 0 0 +0.283 3.199 -0.592 0 0 0 0 0 0 0 +0.272 3.198 -0.592 0 0 0 0 0 0 0 +0.262 3.195 -0.591 0 0 0 0 0 0 0 +0.252 3.2 -0.592 0 0 0 0 0 0 0 +0.247 3.202 -0.592 0 0 0 0 0 0 0 +0.238 3.207 -0.593 0 0 0 0 0 0 0 +0.227 3.208 -0.593 0 0 0 0 0 0 0 +0.217 3.206 -0.593 0 0 0 0 0 0 0 +0.207 3.211 -0.594 0 0 0 0 0 0 0 +0.197 3.211 -0.594 0 0 0 0 0 0 0 +0.187 3.214 -0.594 0 0 0 0 0 0 0 +0.177 3.213 -0.594 0 0 0 0 0 0 0 +0.172 3.215 -0.594 0 0 0 0 0 0 0 +0.162 3.213 -0.594 0 0 0 0 0 0 0 +0.152 3.218 -0.595 0 0 0 0 0 0 0 +0.142 3.216 -0.594 0 0 0 0 0 0 0 +0.132 3.219 -0.595 0 0 0 0 0 0 0 +0.122 3.223 -0.595 0 0 0 0 0 0 0 +0.112 3.227 -0.596 0 0 0 0 0 0 0 +0.11 3.294 -0.611 0 0 0 0 0 0 0 +0.1 3.312 -0.615 0 0 0 0 0 0 0 +0.09 3.308 -0.614 0 0 0 0 0 0 0 +0.079 3.293 -0.611 0 0 0 0 0 0 0 +0.07 3.336 -0.62 0 0 0 0 0 0 0 +0.158 8.249 -1.715 0 0 0 0 0 0 0 +0.146 8.27 -1.72 0 0 0 0 0 0 0 +0.057 3.272 -0.606 0 0 0 0 0 0 0 +0.12 8.275 -1.721 0 0 0 0 0 0 0 +0.094 8.287 -1.723 0 0 0 0 0 0 0 +0.068 8.299 -1.726 0 0 0 0 0 0 0 +0.042 8.305 -1.727 0 0 0 0 0 0 0 +0.016 8.316 -1.73 0 0 0 0 0 0 0 +-0.01 8.324 -1.732 0 0 0 0 0 0 0 +-0.036 8.326 -1.732 0 0 0 0 0 0 0 +-0.049 8.34 -1.735 0 0 0 0 0 0 0 +-0.076 8.351 -1.738 0 0 0 0 0 0 0 +-0.102 8.353 -1.738 0 0 0 0 0 0 0 +-0.128 8.36 -1.74 0 0 0 0 0 0 0 +-0.155 8.383 -1.745 0 0 0 0 0 0 0 +-0.181 8.377 -1.744 0 0 0 0 0 0 0 +-0.208 8.39 -1.747 0 0 0 0 0 0 0 +-0.221 8.405 -1.75 0 0 0 0 0 0 0 +-0.249 8.463 -1.763 0 0 0 0 0 0 0 +-0.277 8.501 -1.772 0 0 0 0 0 0 0 +-0.304 8.522 -1.777 0 0 0 0 0 0 0 +-0.362 8.637 -1.803 0 0 0 0 0 0 0 +-0.388 8.612 -1.798 0 0 0 0 0 0 0 +-0.398 8.52 -1.777 0 0 0 0 0 0 0 +-0.424 8.493 -1.772 0 0 0 0 0 0 0 +-0.449 8.463 -1.765 0 0 0 0 0 0 0 +-0.475 8.45 -1.763 0 0 0 0 0 0 0 +-0.5 8.427 -1.758 0 0 0 0 0 0 0 +-0.526 8.423 -1.757 0 0 0 0 0 0 0 +-0.553 8.415 -1.756 0 0 0 0 0 0 0 +-0.566 8.415 -1.756 0 0 0 0 0 0 0 +-0.592 8.415 -1.756 0 0 0 0 0 0 0 +-0.619 8.415 -1.757 0 0 0 0 0 0 0 +-0.645 8.409 -1.756 0 0 0 0 0 0 0 +-0.672 8.409 -1.756 0 0 0 0 0 0 0 +-0.698 8.405 -1.756 0 0 0 0 0 0 0 +-0.724 8.397 -1.755 0 0 0 0 0 0 0 +-0.738 8.403 -1.756 0 0 0 0 0 0 0 +-0.764 8.397 -1.756 0 0 0 0 0 0 0 +-0.79 8.397 -1.756 0 0 0 0 0 0 0 +-0.816 8.388 -1.755 0 0 0 0 0 0 0 +-0.843 8.389 -1.756 0 0 0 0 0 0 0 +-0.87 8.391 -1.756 0 0 0 0 0 0 0 +-0.896 8.388 -1.756 0 0 0 0 0 0 0 +-0.909 8.385 -1.756 0 0 0 0 0 0 0 +-0.936 8.393 -1.759 0 0 0 0 0 0 0 +-0.963 8.388 -1.758 0 0 0 0 0 0 0 +-0.989 8.389 -1.759 0 0 0 0 0 0 0 +-1.015 8.376 -1.757 0 0 0 0 0 0 0 +-1.04 8.367 -1.756 0 0 0 0 0 0 0 +-1.068 8.379 -1.759 0 0 0 0 0 0 0 +-1.094 8.37 -1.758 0 0 0 0 0 0 0 +-1.108 8.378 -1.76 0 0 0 0 0 0 0 +-1.134 8.367 -1.758 0 0 0 0 0 0 0 +-1.16 8.365 -1.759 0 0 0 0 0 0 0 +-1.185 8.35 -1.756 0 0 0 0 0 0 0 +-1.216 8.381 -1.764 0 0 0 0 0 0 0 +-1.239 8.356 -1.759 0 0 0 0 0 0 0 +-1.265 8.346 -1.758 0 0 0 0 0 0 0 +-1.282 8.371 -1.764 0 0 0 0 0 0 0 +-1.304 8.34 -1.758 0 0 0 0 0 0 0 +-1.331 8.344 -1.76 0 0 0 0 0 0 0 +-1.36 8.353 -1.763 0 0 0 0 0 0 0 +-1.384 8.337 -1.76 0 0 0 0 0 0 0 +-1.41 8.331 -1.76 0 0 0 0 0 0 0 +-1.438 8.34 -1.763 0 0 0 0 0 0 0 +-1.448 8.316 -1.758 0 0 0 0 0 0 0 +-1.476 8.325 -1.761 0 0 0 0 0 0 0 +-1.503 8.321 -1.761 0 0 0 0 0 0 0 +-1.529 8.318 -1.761 0 0 0 0 0 0 0 +-1.555 8.311 -1.761 0 0 0 0 0 0 0 +-1.583 8.316 -1.763 0 0 0 0 0 0 0 +-1.608 8.305 -1.762 0 0 0 0 0 0 0 +-1.622 8.308 -1.763 0 0 0 0 0 0 0 +-1.651 8.318 -1.766 0 0 0 0 0 0 0 +-1.676 8.307 -1.765 0 0 0 0 0 0 0 +-1.708 8.333 -1.772 0 0 0 0 0 0 0 +-1.735 8.329 -1.773 0 0 0 0 0 0 0 +-1.775 8.39 -1.788 0 0 0 0 0 0 0 +-1.791 8.335 -1.776 0 0 0 0 0 0 0 +-1.828 8.381 -1.788 0 0 0 0 0 0 0 +-1.832 8.336 -1.779 0 0 0 0 0 0 0 +-1.859 8.336 -1.78 0 0 0 0 0 0 0 +-1.886 8.332 -1.78 0 0 0 0 0 0 0 +-1.907 8.303 -1.775 0 0 0 0 0 0 0 +-1.927 8.271 -1.769 0 0 0 0 0 0 0 +-1.948 8.244 -1.764 0 0 0 0 0 0 0 +-1.98 8.264 -1.77 0 0 0 0 0 0 0 +-1.991 8.251 -1.768 0 0 0 0 0 0 0 +-2.018 8.251 -1.77 0 0 0 0 0 0 0 +-2.04 8.227 -1.766 0 0 0 0 0 0 0 +-2.066 8.221 -1.766 0 0 0 0 0 0 0 +-2.094 8.224 -1.768 0 0 0 0 0 0 0 +-2.118 8.21 -1.766 0 0 0 0 0 0 0 +-2.144 8.205 -1.766 0 0 0 0 0 0 0 +-2.161 8.217 -1.77 0 0 0 0 0 0 0 +-2.181 8.189 -1.765 0 0 0 0 0 0 0 +-2.208 8.186 -1.766 0 0 0 0 0 0 0 +-2.238 8.196 -1.77 0 0 0 0 0 0 0 +-2.262 8.181 -1.768 0 0 0 0 0 0 0 +-2.287 8.17 -1.767 0 0 0 0 0 0 0 +-2.314 8.171 -1.769 0 0 0 0 0 0 0 +-2.326 8.163 -1.768 0 0 0 0 0 0 0 +-2.35 8.148 -1.766 0 0 0 0 0 0 0 +-2.38 8.156 -1.77 0 0 0 0 0 0 0 +-2.402 8.137 -1.767 0 0 0 0 0 0 0 +-2.431 8.143 -1.77 0 0 0 0 0 0 0 +-2.46 8.144 -1.773 0 0 0 0 0 0 0 +-2.484 8.131 -1.771 0 0 0 0 0 0 0 +-2.506 8.112 -1.769 0 0 0 0 0 0 0 +-2.525 8.13 -1.774 0 0 0 0 0 0 0 +-2.544 8.1 -1.769 0 0 0 0 0 0 0 +-2.573 8.103 -1.771 0 0 0 0 0 0 0 +-2.602 8.106 -1.774 0 0 0 0 0 0 0 +-2.623 8.085 -1.771 0 0 0 0 0 0 0 +-2.65 8.081 -1.772 0 0 0 0 0 0 0 +-2.677 8.078 -1.773 0 0 0 0 0 0 0 +-2.69 8.074 -1.773 0 0 0 0 0 0 0 +-2.719 8.076 -1.776 0 0 0 0 0 0 0 +-2.744 8.068 -1.776 0 0 0 0 0 0 0 +-2.769 8.059 -1.776 0 0 0 0 0 0 0 +-2.793 8.045 -1.774 0 0 0 0 0 0 0 +-2.827 8.062 -1.78 0 0 0 0 0 0 0 +-2.848 8.042 -1.778 0 0 0 0 0 0 0 +-2.863 8.043 -1.779 0 0 0 0 0 0 0 +-2.889 8.036 -1.78 0 0 0 0 0 0 0 +-2.913 8.023 -1.779 0 0 0 0 0 0 0 +-2.939 8.015 -1.779 0 0 0 0 0 0 0 +-2.97 8.023 -1.783 0 0 0 0 0 0 0 +-2.992 8.004 -1.781 0 0 0 0 0 0 0 +-3.02 8.004 -1.783 0 0 0 0 0 0 0 +-3.032 7.997 -1.783 0 0 0 0 0 0 0 +-3.059 7.991 -1.783 0 0 0 0 0 0 0 +-3.084 7.983 -1.784 0 0 0 0 0 0 0 +-3.115 7.988 -1.787 0 0 0 0 0 0 0 +-3.137 7.971 -1.786 0 0 0 0 0 0 0 +-3.169 7.978 -1.79 0 0 0 0 0 0 0 +-3.197 7.977 -1.792 0 0 0 0 0 0 0 +-3.226 7.976 -1.794 0 0 0 0 0 0 0 +-3.231 7.951 -1.789 0 0 0 0 0 0 0 +-3.289 8.024 -1.809 0 0 0 0 0 0 0 +-3.325 8.039 -1.815 0 0 0 0 0 0 0 +-3.374 8.086 -1.829 0 0 0 0 0 0 0 +-3.413 8.108 -1.837 0 0 0 0 0 0 0 +-3.42 8.052 -1.826 0 0 0 0 0 0 0 +-3.43 8.005 -1.817 0 0 0 0 0 0 0 +-3.456 8.032 -1.825 0 0 0 0 0 0 0 +-3.501 8.068 -1.836 0 0 0 0 0 0 0 +-3.516 8.033 -1.831 0 0 0 0 0 0 0 +-3.529 7.994 -1.824 0 0 0 0 0 0 0 +-3.557 7.988 -1.825 0 0 0 0 0 0 0 +-3.583 7.98 -1.826 0 0 0 0 0 0 0 +-3.593 7.935 -1.818 0 0 0 0 0 0 0 +-3.589 7.892 -1.809 0 0 0 0 0 0 0 +-3.6 7.851 -1.801 0 0 0 0 0 0 0 +-3.621 7.832 -1.8 0 0 0 0 0 0 0 +-3.642 7.812 -1.797 0 0 0 0 0 0 0 +-3.658 7.783 -1.793 0 0 0 0 0 0 0 +-3.681 7.768 -1.792 0 0 0 0 0 0 0 +-3.71 7.767 -1.795 0 0 0 0 0 0 0 +-3.712 7.74 -1.79 0 0 0 0 0 0 0 +-3.742 7.739 -1.792 0 0 0 0 0 0 0 +-3.758 7.711 -1.788 0 0 0 0 0 0 0 +-3.788 7.711 -1.791 0 0 0 0 0 0 0 +-3.814 7.703 -1.792 0 0 0 0 0 0 0 +-3.837 7.687 -1.791 0 0 0 0 0 0 0 +-3.859 7.672 -1.79 0 0 0 0 0 0 0 +-3.884 7.661 -1.791 0 0 0 0 0 0 0 +-3.899 7.661 -1.792 0 0 0 0 0 0 0 +-3.917 7.638 -1.79 0 0 0 0 0 0 0 +-3.945 7.632 -1.791 0 0 0 0 0 0 0 +-3.973 7.627 -1.793 0 0 0 0 0 0 0 +-3.991 7.604 -1.79 0 0 0 0 0 0 0 +-4.015 7.592 -1.79 0 0 0 0 0 0 0 +-4.044 7.589 -1.793 0 0 0 0 0 0 0 +-4.047 7.566 -1.789 0 0 0 0 0 0 0 +-4.081 7.572 -1.793 0 0 0 0 0 0 0 +-4.102 7.554 -1.792 0 0 0 0 0 0 0 +-4.124 7.537 -1.791 0 0 0 0 0 0 0 +-4.149 7.528 -1.792 0 0 0 0 0 0 0 +-4.169 7.508 -1.79 0 0 0 0 0 0 0 +-4.199 7.507 -1.793 0 0 0 0 0 0 0 +-4.217 7.483 -1.791 0 0 0 0 0 0 0 +-4.236 7.489 -1.794 0 0 0 0 0 0 0 +-4.253 7.465 -1.791 0 0 0 0 0 0 0 +-4.28 7.457 -1.793 0 0 0 0 0 0 0 +-4.3 7.438 -1.791 0 0 0 0 0 0 0 +-4.325 7.428 -1.792 0 0 0 0 0 0 0 +-4.351 7.418 -1.793 0 0 0 0 0 0 0 +-4.369 7.396 -1.791 0 0 0 0 0 0 0 +-4.388 7.401 -1.794 0 0 0 0 0 0 0 +-4.408 7.382 -1.793 0 0 0 0 0 0 0 +-4.436 7.376 -1.795 0 0 0 0 0 0 0 +-4.451 7.349 -1.791 0 0 0 0 0 0 0 +-4.48 7.345 -1.794 0 0 0 0 0 0 0 +-4.503 7.331 -1.794 0 0 0 0 0 0 0 +-4.522 7.31 -1.792 0 0 0 0 0 0 0 +-4.54 7.313 -1.795 0 0 0 0 0 0 0 +-4.558 7.29 -1.793 0 0 0 0 0 0 0 +-4.58 7.274 -1.792 0 0 0 0 0 0 0 +-4.6 7.256 -1.791 0 0 0 0 0 0 0 +-4.628 7.25 -1.793 0 0 0 0 0 0 0 +-4.652 7.237 -1.794 0 0 0 0 0 0 0 +-4.675 7.223 -1.794 0 0 0 0 0 0 0 +-4.686 7.215 -1.794 0 0 0 0 0 0 0 +-4.711 7.204 -1.795 0 0 0 0 0 0 0 +-4.735 7.191 -1.795 0 0 0 0 0 0 0 +-4.759 7.179 -1.796 0 0 0 0 0 0 0 +-4.794 7.182 -1.801 0 0 0 0 0 0 0 +-4.812 7.16 -1.799 0 0 0 0 0 0 0 +-4.843 7.158 -1.803 0 0 0 0 0 0 0 +-4.872 7.152 -1.805 0 0 0 0 0 0 0 +-4.876 7.133 -1.802 0 0 0 0 0 0 0 +-4.915 7.142 -1.809 0 0 0 0 0 0 0 +-4.941 7.133 -1.81 0 0 0 0 0 0 0 +-4.992 7.158 -1.821 0 0 0 0 0 0 0 +-5.015 7.144 -1.822 0 0 0 0 0 0 0 +-4.977 7.042 -1.798 0 0 0 0 0 0 0 +-5.043 7.088 -1.815 0 0 0 0 0 0 0 +-5.065 7.096 -1.82 0 0 0 0 0 0 0 +-5.104 7.102 -1.826 0 0 0 0 0 0 0 +-5.112 7.067 -1.82 0 0 0 0 0 0 0 +-5.128 7.042 -1.818 0 0 0 0 0 0 0 +-5.147 7.022 -1.817 0 0 0 0 0 0 0 +-5.165 7 -1.815 0 0 0 0 0 0 0 +-5.175 6.968 -1.811 0 0 0 0 0 0 0 +-5.174 6.944 -1.806 0 0 0 0 0 0 0 +-5.192 6.922 -1.805 0 0 0 0 0 0 0 +-5.2 6.888 -1.8 0 0 0 0 0 0 0 +-5.222 6.872 -1.8 0 0 0 0 0 0 0 +-5.242 6.854 -1.8 0 0 0 0 0 0 0 +-5.253 6.823 -1.796 0 0 0 0 0 0 0 +-5.27 6.801 -1.794 0 0 0 0 0 0 0 +-5.281 6.792 -1.794 0 0 0 0 0 0 0 +-5.298 6.771 -1.793 0 0 0 0 0 0 0 +-5.315 6.748 -1.791 0 0 0 0 0 0 0 +-5.333 6.728 -1.79 0 0 0 0 0 0 0 +-5.357 6.715 -1.791 0 0 0 0 0 0 0 +-5.379 6.699 -1.791 0 0 0 0 0 0 0 +-5.394 6.675 -1.789 0 0 0 0 0 0 0 +-5.402 6.663 -1.788 0 0 0 0 0 0 0 +-5.419 6.642 -1.787 0 0 0 0 0 0 0 +-5.442 6.626 -1.787 0 0 0 0 0 0 0 +-5.454 6.598 -1.784 0 0 0 0 0 0 0 +-5.478 6.586 -1.786 0 0 0 0 0 0 0 +-5.503 6.573 -1.787 0 0 0 0 0 0 0 +-5.516 6.547 -1.784 0 0 0 0 0 0 0 +-5.525 6.516 -1.78 0 0 0 0 0 0 0 +-5.535 6.507 -1.78 0 0 0 0 0 0 0 +-5.554 6.488 -1.78 0 0 0 0 0 0 0 +-5.576 6.472 -1.78 0 0 0 0 0 0 0 +-5.594 6.452 -1.78 0 0 0 0 0 0 0 +-5.609 6.428 -1.778 0 0 0 0 0 0 0 +-5.624 6.405 -1.776 0 0 0 0 0 0 0 +-5.639 6.381 -1.774 0 0 0 0 0 0 0 +-5.646 6.369 -1.773 0 0 0 0 0 0 0 +-5.666 6.352 -1.773 0 0 0 0 0 0 0 +-5.685 6.332 -1.773 0 0 0 0 0 0 0 +-5.701 6.31 -1.772 0 0 0 0 0 0 0 +-5.709 6.279 -1.768 0 0 0 0 0 0 0 +-5.727 6.26 -1.767 0 0 0 0 0 0 0 +-5.74 6.235 -1.765 0 0 0 0 0 0 0 +-5.738 6.213 -1.761 0 0 0 0 0 0 0 +-5.75 6.186 -1.759 0 0 0 0 0 0 0 +-5.756 6.154 -1.754 0 0 0 0 0 0 0 +-5.77 6.13 -1.753 0 0 0 0 0 0 0 +-5.782 6.104 -1.75 0 0 0 0 0 0 0 +-5.793 6.078 -1.748 0 0 0 0 0 0 0 +-5.807 6.054 -1.746 0 0 0 0 0 0 0 +-5.818 6.046 -1.746 0 0 0 0 0 0 0 +-5.838 6.029 -1.747 0 0 0 0 0 0 0 +-5.846 6 -1.743 0 0 0 0 0 0 0 +-5.86 5.976 -1.742 0 0 0 0 0 0 0 +-5.885 5.964 -1.744 0 0 0 0 0 0 0 +-5.894 5.936 -1.741 0 0 0 0 0 0 0 +-5.927 5.931 -1.745 0 0 0 0 0 0 0 +-5.928 5.914 -1.743 0 0 0 0 0 0 0 +-5.945 5.894 -1.742 0 0 0 0 0 0 0 +-5.974 5.886 -1.746 0 0 0 0 0 0 0 +-5.991 5.866 -1.745 0 0 0 0 0 0 0 +-6.004 5.841 -1.743 0 0 0 0 0 0 0 +-6.024 5.824 -1.744 0 0 0 0 0 0 0 +-6.049 5.812 -1.746 0 0 0 0 0 0 0 +-6.073 5.798 -1.748 0 0 0 0 0 0 0 +-6.077 5.783 -1.746 0 0 0 0 0 0 0 +-6.102 5.771 -1.748 0 0 0 0 0 0 0 +-6.127 5.758 -1.75 0 0 0 0 0 0 0 +-6.147 5.74 -1.751 0 0 0 0 0 0 0 +-6.167 5.724 -1.752 0 0 0 0 0 0 0 +-6.187 5.706 -1.752 0 0 0 0 0 0 0 +-6.203 5.685 -1.752 0 0 0 0 0 0 0 +-6.212 5.675 -1.752 0 0 0 0 0 0 0 +-6.23 5.656 -1.752 0 0 0 0 0 0 0 +-6.248 5.636 -1.752 0 0 0 0 0 0 0 +-6.268 5.619 -1.753 0 0 0 0 0 0 0 +-6.283 5.597 -1.752 0 0 0 0 0 0 0 +-6.305 5.581 -1.753 0 0 0 0 0 0 0 +-6.314 5.553 -1.75 0 0 0 0 0 0 0 +-6.33 5.55 -1.753 0 0 0 0 0 0 0 +-6.351 5.534 -1.754 0 0 0 0 0 0 0 +-6.37 5.515 -1.754 0 0 0 0 0 0 0 +-6.389 5.496 -1.755 0 0 0 0 0 0 0 +-6.399 5.47 -1.753 0 0 0 0 0 0 0 +-6.419 5.452 -1.753 0 0 0 0 0 0 0 +-6.433 5.429 -1.753 0 0 0 0 0 0 0 +-6.439 5.417 -1.752 0 0 0 0 0 0 0 +-6.463 5.403 -1.754 0 0 0 0 0 0 0 +-6.477 5.38 -1.753 0 0 0 0 0 0 0 +-6.492 5.358 -1.753 0 0 0 0 0 0 0 +-6.509 5.338 -1.753 0 0 0 0 0 0 0 +-6.527 5.319 -1.753 0 0 0 0 0 0 0 +-6.552 5.304 -1.755 0 0 0 0 0 0 0 +-6.571 5.286 -1.756 0 0 0 0 0 0 0 +-6.578 5.275 -1.756 0 0 0 0 0 0 0 +-6.592 5.251 -1.755 0 0 0 0 0 0 0 +-6.611 5.233 -1.756 0 0 0 0 0 0 0 +-6.638 5.221 -1.759 0 0 0 0 0 0 0 +-6.656 5.201 -1.759 0 0 0 0 0 0 0 +-6.66 5.171 -1.756 0 0 0 0 0 0 0 +-6.683 5.154 -1.757 0 0 0 0 0 0 0 +-6.689 5.143 -1.757 0 0 0 0 0 0 0 +-6.705 5.122 -1.757 0 0 0 0 0 0 0 +-6.724 5.103 -1.758 0 0 0 0 0 0 0 +-6.739 5.081 -1.757 0 0 0 0 0 0 0 +-6.759 5.063 -1.759 0 0 0 0 0 0 0 +-6.769 5.037 -1.757 0 0 0 0 0 0 0 +-6.786 5.017 -1.757 0 0 0 0 0 0 0 +-6.793 5.005 -1.757 0 0 0 0 0 0 0 +-6.807 4.983 -1.756 0 0 0 0 0 0 0 +-6.818 4.958 -1.755 0 0 0 0 0 0 0 +-6.84 4.941 -1.757 0 0 0 0 0 0 0 +-6.842 4.91 -1.753 0 0 0 0 0 0 0 +-6.863 4.892 -1.755 0 0 0 0 0 0 0 +-6.876 4.869 -1.754 0 0 0 0 0 0 0 +-6.886 4.86 -1.755 0 0 0 0 0 0 0 +-6.896 4.835 -1.753 0 0 0 0 0 0 0 +-6.922 4.821 -1.756 0 0 0 0 0 0 0 +-6.928 4.792 -1.754 0 0 0 0 0 0 0 +-6.948 4.774 -1.755 0 0 0 0 0 0 0 +-6.961 4.751 -1.755 0 0 0 0 0 0 0 +-6.978 4.73 -1.755 0 0 0 0 0 0 0 +-6.961 4.703 -1.749 0 0 0 0 0 0 0 +-6.99 4.691 -1.753 0 0 0 0 0 0 0 +-6.998 4.664 -1.751 0 0 0 0 0 0 0 +-6.755 4.47 -1.682 0 0 0 0 0 0 0 +-6.743 4.432 -1.675 0 0 0 0 0 0 0 +-6.745 4.403 -1.672 0 0 0 0 0 0 0 +-6.757 4.381 -1.671 0 0 0 0 0 0 0 +-6.764 4.37 -1.671 0 0 0 0 0 0 0 +-6.793 4.358 -1.675 0 0 0 0 0 0 0 +-6.826 4.35 -1.68 0 0 0 0 0 0 0 +-7.009 4.436 -1.725 0 0 0 0 0 0 0 +-6.978 4.386 -1.713 0 0 0 0 0 0 0 +-6.996 4.366 -1.714 0 0 0 0 0 0 0 +-7.155 4.435 -1.753 0 0 0 0 0 0 0 +-7.157 4.405 -1.749 0 0 0 0 0 0 0 +-7.169 4.397 -1.751 0 0 0 0 0 0 0 +-7.183 4.375 -1.751 0 0 0 0 0 0 0 +-7.203 4.356 -1.753 0 0 0 0 0 0 0 +-7.217 4.333 -1.753 0 0 0 0 0 0 0 +-7.229 4.31 -1.752 0 0 0 0 0 0 0 +-7.241 4.286 -1.752 0 0 0 0 0 0 0 +-7.252 4.262 -1.751 0 0 0 0 0 0 0 +-7.247 4.244 -1.748 0 0 0 0 0 0 0 +-7.267 4.225 -1.75 0 0 0 0 0 0 0 +-7.281 4.202 -1.75 0 0 0 0 0 0 0 +-7.294 4.179 -1.75 0 0 0 0 0 0 0 +-7.298 4.152 -1.748 0 0 0 0 0 0 0 +-7.306 4.126 -1.746 0 0 0 0 0 0 0 +-7.318 4.102 -1.746 0 0 0 0 0 0 0 +-7.312 4.084 -1.743 0 0 0 0 0 0 0 +-7.318 4.057 -1.741 0 0 0 0 0 0 0 +-7.332 4.035 -1.742 0 0 0 0 0 0 0 +-7.338 4.008 -1.74 0 0 0 0 0 0 0 +-7.347 3.983 -1.739 0 0 0 0 0 0 0 +-7.344 3.951 -1.735 0 0 0 0 0 0 0 +-7.358 3.929 -1.736 0 0 0 0 0 0 0 +-7.359 3.915 -1.734 0 0 0 0 0 0 0 +-7.372 3.892 -1.734 0 0 0 0 0 0 0 +-7.382 3.868 -1.734 0 0 0 0 0 0 0 +-7.387 3.841 -1.732 0 0 0 0 0 0 0 +-7.408 3.822 -1.734 0 0 0 0 0 0 0 +-7.403 3.79 -1.73 0 0 0 0 0 0 0 +-7.342 3.729 -1.712 0 0 0 0 0 0 0 +-7.321 3.704 -1.705 0 0 0 0 0 0 0 +-7.335 3.682 -1.706 0 0 0 0 0 0 0 +-7.456 3.714 -1.733 0 0 0 0 0 0 0 +-7.438 3.676 -1.726 0 0 0 0 0 0 0 +-7.465 3.661 -1.729 0 0 0 0 0 0 0 +-7.458 3.628 -1.725 0 0 0 0 0 0 0 +-7.493 3.616 -1.731 0 0 0 0 0 0 0 +-7.503 3.592 -1.73 0 0 0 0 0 0 0 +-7.505 3.578 -1.729 0 0 0 0 0 0 0 +-7.511 3.552 -1.728 0 0 0 0 0 0 0 +-7.536 3.535 -1.732 0 0 0 0 0 0 0 +-7.544 3.51 -1.731 0 0 0 0 0 0 0 +-7.565 3.491 -1.733 0 0 0 0 0 0 0 +-7.583 3.471 -1.735 0 0 0 0 0 0 0 +-7.594 3.447 -1.735 0 0 0 0 0 0 0 +-7.605 3.437 -1.736 0 0 0 0 0 0 0 +-7.61 3.411 -1.735 0 0 0 0 0 0 0 +-7.621 3.387 -1.735 0 0 0 0 0 0 0 +-7.646 3.369 -1.739 0 0 0 0 0 0 0 +-7.666 3.349 -1.741 0 0 0 0 0 0 0 +-7.671 3.323 -1.739 0 0 0 0 0 0 0 +-7.676 3.296 -1.738 0 0 0 0 0 0 0 +-7.695 3.291 -1.742 0 0 0 0 0 0 0 +-7.709 3.268 -1.743 0 0 0 0 0 0 0 +-7.737 3.251 -1.747 0 0 0 0 0 0 0 +-7.744 3.225 -1.746 0 0 0 0 0 0 0 +-7.734 3.193 -1.741 0 0 0 0 0 0 0 +-7.757 3.174 -1.744 0 0 0 0 0 0 0 +-7.776 3.153 -1.746 0 0 0 0 0 0 0 +-7.77 3.136 -1.744 0 0 0 0 0 0 0 +-7.798 3.119 -1.748 0 0 0 0 0 0 0 +-7.813 3.097 -1.749 0 0 0 0 0 0 0 +-7.863 3.088 -1.759 0 0 0 0 0 0 0 +-7.889 3.07 -1.763 0 0 0 0 0 0 0 +-7.907 3.049 -1.765 0 0 0 0 0 0 0 +-7.9 3.017 -1.761 0 0 0 0 0 0 0 +-7.932 3.016 -1.768 0 0 0 0 0 0 0 +-7.925 2.984 -1.764 0 0 0 0 0 0 0 +-7.957 2.968 -1.769 0 0 0 0 0 0 0 +-7.95 2.937 -1.765 0 0 0 0 0 0 0 +-7.979 2.919 -1.77 0 0 0 0 0 0 0 +-7.994 2.896 -1.771 0 0 0 0 0 0 0 +-8.006 2.872 -1.772 0 0 0 0 0 0 0 +-8.011 2.86 -1.772 0 0 0 0 0 0 0 +-8.029 2.838 -1.774 0 0 0 0 0 0 0 +-8.036 2.812 -1.774 0 0 0 0 0 0 0 +-8.052 2.789 -1.776 0 0 0 0 0 0 0 +-8.048 2.759 -1.773 0 0 0 0 0 0 0 +-8.077 2.741 -1.777 0 0 0 0 0 0 0 +-8.087 2.716 -1.778 0 0 0 0 0 0 0 +-8.093 2.704 -1.778 0 0 0 0 0 0 0 +-8.1 2.678 -1.778 0 0 0 0 0 0 0 +-8.116 2.655 -1.78 0 0 0 0 0 0 0 +-8.124 2.63 -1.78 0 0 0 0 0 0 0 +-8.14 2.606 -1.781 0 0 0 0 0 0 0 +-8.146 2.58 -1.781 0 0 0 0 0 0 0 +-8.162 2.557 -1.783 0 0 0 0 0 0 0 +-8.158 2.542 -1.781 0 0 0 0 0 0 0 +-8.175 2.519 -1.783 0 0 0 0 0 0 0 +-8.189 2.495 -1.784 0 0 0 0 0 0 0 +-8.189 2.467 -1.783 0 0 0 0 0 0 0 +-8.21 2.445 -1.786 0 0 0 0 0 0 0 +-8.216 2.419 -1.785 0 0 0 0 0 0 0 +-8.238 2.398 -1.789 0 0 0 0 0 0 0 +-8.242 2.385 -1.789 0 0 0 0 0 0 0 +-8.234 2.354 -1.785 0 0 0 0 0 0 0 +-8.253 2.332 -1.788 0 0 0 0 0 0 0 +-8.258 2.305 -1.787 0 0 0 0 0 0 0 +-8.283 2.284 -1.791 0 0 0 0 0 0 0 +-8.28 2.255 -1.789 0 0 0 0 0 0 0 +-8.289 2.23 -1.79 0 0 0 0 0 0 0 +-8.304 2.206 -1.791 0 0 0 0 0 0 0 +-8.311 2.194 -1.792 0 0 0 0 0 0 0 +-8.314 2.167 -1.791 0 0 0 0 0 0 0 +-8.325 2.142 -1.792 0 0 0 0 0 0 0 +-8.307 2.109 -1.786 0 0 0 0 0 0 0 +-8.258 2.069 -1.774 0 0 0 0 0 0 0 +-7.256 1.79 -1.542 0 0 0 0 0 0 0 +-7.094 1.726 -1.504 0 0 0 0 0 0 0 +-7.105 1.717 -1.505 0 0 0 0 0 0 0 +-7.112 1.695 -1.506 0 0 0 0 0 0 0 +-7.106 1.67 -1.503 0 0 0 0 0 0 0 +-7.06 1.636 -1.492 0 0 0 0 0 0 0 +-6.974 1.592 -1.471 0 0 0 0 0 0 0 +-6.933 1.56 -1.46 0 0 0 0 0 0 0 +-6.905 1.531 -1.453 0 0 0 0 0 0 0 +-6.912 1.51 -1.453 0 0 0 0 0 0 0 +-6.89 1.493 -1.448 0 0 0 0 0 0 0 +-6.877 1.468 -1.444 0 0 0 0 0 0 0 +-6.884 1.447 -1.444 0 0 0 0 0 0 0 +-6.894 1.426 -1.445 0 0 0 0 0 0 0 +-6.894 1.404 -1.445 0 0 0 0 0 0 0 +-6.929 1.388 -1.452 0 0 0 0 0 0 0 +-6.92 1.364 -1.448 0 0 0 0 0 0 0 +-6.903 1.349 -1.444 0 0 0 0 0 0 0 +-6.927 1.331 -1.448 0 0 0 0 0 0 0 +-6.91 1.305 -1.444 0 0 0 0 0 0 0 +-6.91 1.283 -1.443 0 0 0 0 0 0 0 +-6.902 1.259 -1.44 0 0 0 0 0 0 0 +-6.901 1.236 -1.439 0 0 0 0 0 0 0 +-6.889 1.212 -1.435 0 0 0 0 0 0 0 +-6.891 1.201 -1.435 0 0 0 0 0 0 0 +-6.906 1.181 -1.438 0 0 0 0 0 0 0 +-6.91 1.16 -1.438 0 0 0 0 0 0 0 +-6.916 1.138 -1.438 0 0 0 0 0 0 0 +-6.911 1.115 -1.437 0 0 0 0 0 0 0 +-6.911 1.093 -1.436 0 0 0 0 0 0 0 +-6.934 1.074 -1.44 0 0 0 0 0 0 0 +-6.924 1.062 -1.438 0 0 0 0 0 0 0 +-6.935 1.041 -1.439 0 0 0 0 0 0 0 +-6.975 1.025 -1.448 0 0 0 0 0 0 0 +-6.972 1.002 -1.446 0 0 0 0 0 0 0 +-6.993 0.983 -1.45 0 0 0 0 0 0 0 +-6.988 0.96 -1.448 0 0 0 0 0 0 0 +-7.024 0.942 -1.456 0 0 0 0 0 0 0 +-7.025 0.931 -1.456 0 0 0 0 0 0 0 +-7.007 0.906 -1.451 0 0 0 0 0 0 0 +-7.048 0.889 -1.46 0 0 0 0 0 0 0 +-7.032 0.865 -1.455 0 0 0 0 0 0 0 +-7.052 0.845 -1.459 0 0 0 0 0 0 0 +-7.056 0.823 -1.46 0 0 0 0 0 0 0 +-7.042 0.799 -1.456 0 0 0 0 0 0 0 +-7.077 0.78 -1.463 0 0 0 0 0 0 0 +-7.059 0.767 -1.459 0 0 0 0 0 0 0 +-7.096 0.749 -1.467 0 0 0 0 0 0 0 +-7.083 0.725 -1.463 0 0 0 0 0 0 0 +-7.066 0.7 -1.459 0 0 0 0 0 0 0 +-7.043 0.676 -1.453 0 0 0 0 0 0 0 +-7.049 0.654 -1.454 0 0 0 0 0 0 0 +-7.047 0.631 -1.453 0 0 0 0 0 0 0 +-7.069 0.622 -1.458 0 0 0 0 0 0 0 +-7.133 0.606 -1.472 0 0 0 0 0 0 0 +-7.141 0.584 -1.473 0 0 0 0 0 0 0 +-7.086 0.557 -1.461 0 0 0 0 0 0 0 +-7.094 0.535 -1.462 0 0 0 0 0 0 0 +-7.127 0.515 -1.469 0 0 0 0 0 0 0 +-7.122 0.492 -1.468 0 0 0 0 0 0 0 +-7.137 0.482 -1.471 0 0 0 0 0 0 0 +-7.134 0.459 -1.47 0 0 0 0 0 0 0 +-7.142 0.437 -1.471 0 0 0 0 0 0 0 +-7.139 0.414 -1.47 0 0 0 0 0 0 0 +-7.144 0.392 -1.471 0 0 0 0 0 0 0 +-7.153 0.37 -1.473 0 0 0 0 0 0 0 +-7.162 0.348 -1.475 0 0 0 0 0 0 0 +-7.169 0.337 -1.476 0 0 0 0 0 0 0 +-7.197 0.316 -1.482 0 0 0 0 0 0 0 +-7.194 0.293 -1.481 0 0 0 0 0 0 0 +-7.329 0.276 -1.511 0 0 0 0 0 0 0 +-7.344 0.254 -1.514 0 0 0 0 0 0 0 +-7.364 0.231 -1.519 0 0 0 0 0 0 0 +-7.419 0.21 -1.531 0 0 0 0 0 0 0 +-7.399 0.186 -1.526 0 0 0 0 0 0 0 +-7.417 0.163 -1.53 0 0 0 0 0 0 0 +-7.425 0.152 -1.532 0 0 0 0 0 0 0 +-7.468 0.129 -1.541 0 0 0 0 0 0 0 +-9.22 0.108 -1.931 0 0 0 0 0 0 0 +-9.212 0.079 -1.93 0 0 0 0 0 0 0 +-9.203 0.05 -1.927 0 0 0 0 0 0 0 +-9.226 0.021 -1.933 0 0 0 0 0 0 0 +-9.207 0.006 -1.928 0 0 0 0 0 0 0 +-9.197 -0.023 -1.926 0 0 0 0 0 0 0 +-9.216 -0.052 -1.93 0 0 0 0 0 0 0 +-9.198 -0.081 -1.927 0 0 0 0 0 0 0 +-9.192 -0.109 -1.925 0 0 0 0 0 0 0 +-9.21 -0.139 -1.929 0 0 0 0 0 0 0 +-9.184 -0.167 -1.923 0 0 0 0 0 0 0 +-9.193 -0.182 -1.926 0 0 0 0 0 0 0 +-9.167 -0.21 -1.92 0 0 0 0 0 0 0 +-9.196 -0.239 -1.927 0 0 0 0 0 0 0 +-9.172 -0.268 -1.921 0 0 0 0 0 0 0 +-9.178 -0.297 -1.923 0 0 0 0 0 0 0 +-9.185 -0.326 -1.925 0 0 0 0 0 0 0 +-9.169 -0.354 -1.921 0 0 0 0 0 0 0 +-9.199 -0.37 -1.928 0 0 0 0 0 0 0 +-9.177 -0.398 -1.923 0 0 0 0 0 0 0 +-9.189 -0.427 -1.927 0 0 0 0 0 0 0 +-9.164 -0.455 -1.921 0 0 0 0 0 0 0 +-9.19 -0.485 -1.927 0 0 0 0 0 0 0 +-9.184 -0.514 -1.927 0 0 0 0 0 0 0 +-9.175 -0.542 -1.925 0 0 0 0 0 0 0 +-9.176 -0.557 -1.925 0 0 0 0 0 0 0 +-9.182 -0.586 -1.927 0 0 0 0 0 0 0 +-9.17 -0.614 -1.925 0 0 0 0 0 0 0 +-9.161 -0.643 -1.923 0 0 0 0 0 0 0 +-9.163 -0.672 -1.924 0 0 0 0 0 0 0 +-9.162 -0.7 -1.924 0 0 0 0 0 0 0 +-9.17 -0.73 -1.927 0 0 0 0 0 0 0 +-9.164 -0.759 -1.926 0 0 0 0 0 0 0 +-9.168 -0.773 -1.927 0 0 0 0 0 0 0 +-9.166 -0.802 -1.927 0 0 0 0 0 0 0 +-9.159 -0.831 -1.926 0 0 0 0 0 0 0 +-9.159 -0.86 -1.927 0 0 0 0 0 0 0 +-9.154 -0.888 -1.926 0 0 0 0 0 0 0 +-9.153 -0.917 -1.927 0 0 0 0 0 0 0 +-9.15 -0.946 -1.927 0 0 0 0 0 0 0 +-9.149 -0.96 -1.927 0 0 0 0 0 0 0 +-9.138 -0.988 -1.925 0 0 0 0 0 0 0 +-9.146 -1.018 -1.927 0 0 0 0 0 0 0 +-9.131 -1.046 -1.925 0 0 0 0 0 0 0 +-9.142 -1.076 -1.928 0 0 0 0 0 0 0 +-9.138 -1.104 -1.928 0 0 0 0 0 0 0 +-9.135 -1.133 -1.928 0 0 0 0 0 0 0 +-9.145 -1.149 -1.93 0 0 0 0 0 0 0 +-9.133 -1.177 -1.929 0 0 0 0 0 0 0 +-9.127 -1.205 -1.928 0 0 0 0 0 0 0 +-9.135 -1.235 -1.931 0 0 0 0 0 0 0 +-9.11 -1.261 -1.926 0 0 0 0 0 0 0 +-9.121 -1.292 -1.93 0 0 0 0 0 0 0 +-9.121 -1.321 -1.93 0 0 0 0 0 0 0 +-9.102 -1.333 -1.927 0 0 0 0 0 0 0 +-9.119 -1.365 -1.931 0 0 0 0 0 0 0 +-9.101 -1.391 -1.928 0 0 0 0 0 0 0 +-9.089 -1.419 -1.927 0 0 0 0 0 0 0 +-9.094 -1.449 -1.929 0 0 0 0 0 0 0 +-9.093 -1.478 -1.93 0 0 0 0 0 0 0 +-9.069 -1.503 -1.925 0 0 0 0 0 0 0 +-9.086 -1.521 -1.93 0 0 0 0 0 0 0 +-9.076 -1.548 -1.928 0 0 0 0 0 0 0 +-9.067 -1.576 -1.927 0 0 0 0 0 0 0 +-9.071 -1.606 -1.93 0 0 0 0 0 0 0 +-9.061 -1.634 -1.928 0 0 0 0 0 0 0 +-9.046 -1.661 -1.926 0 0 0 0 0 0 0 +-9.035 -1.688 -1.925 0 0 0 0 0 0 0 +-9.042 -1.704 -1.927 0 0 0 0 0 0 0 +-9.027 -1.73 -1.925 0 0 0 0 0 0 0 +-9.025 -1.759 -1.926 0 0 0 0 0 0 0 +-9.027 -1.789 -1.927 0 0 0 0 0 0 0 +-9.008 -1.815 -1.924 0 0 0 0 0 0 0 +-8.998 -1.843 -1.923 0 0 0 0 0 0 0 +-8.989 -1.87 -1.923 0 0 0 0 0 0 0 +-8.992 -1.885 -1.924 0 0 0 0 0 0 0 +-8.976 -1.912 -1.922 0 0 0 0 0 0 0 +-8.972 -1.94 -1.922 0 0 0 0 0 0 0 +-8.956 -1.966 -1.92 0 0 0 0 0 0 0 +-8.95 -1.994 -1.92 0 0 0 0 0 0 0 +-8.934 -2.02 -1.918 0 0 0 0 0 0 0 +-8.932 -2.049 -1.919 0 0 0 0 0 0 0 +-8.91 -2.074 -1.915 0 0 0 0 0 0 0 +-8.922 -2.091 -1.919 0 0 0 0 0 0 0 +-8.906 -2.117 -1.917 0 0 0 0 0 0 0 +-8.884 -2.142 -1.913 0 0 0 0 0 0 0 +-8.881 -2.17 -1.914 0 0 0 0 0 0 0 +-8.865 -2.196 -1.912 0 0 0 0 0 0 0 +-8.863 -2.225 -1.913 0 0 0 0 0 0 0 +-8.845 -2.25 -1.91 0 0 0 0 0 0 0 +-8.832 -2.262 -1.908 0 0 0 0 0 0 0 +-8.827 -2.29 -1.909 0 0 0 0 0 0 0 +-8.823 -2.319 -1.91 0 0 0 0 0 0 0 +-8.818 -2.347 -1.91 0 0 0 0 0 0 0 +-8.793 -2.37 -1.906 0 0 0 0 0 0 0 +-8.784 -2.397 -1.906 0 0 0 0 0 0 0 +-8.778 -2.425 -1.906 0 0 0 0 0 0 0 +-8.78 -2.44 -1.907 0 0 0 0 0 0 0 +-8.765 -2.466 -1.906 0 0 0 0 0 0 0 +-8.748 -2.491 -1.903 0 0 0 0 0 0 0 +-8.734 -2.517 -1.902 0 0 0 0 0 0 0 +-8.724 -2.544 -1.902 0 0 0 0 0 0 0 +-8.722 -2.573 -1.903 0 0 0 0 0 0 0 +-8.697 -2.595 -1.899 0 0 0 0 0 0 0 +-8.7 -2.611 -1.901 0 0 0 0 0 0 0 +-8.677 -2.634 -1.897 0 0 0 0 0 0 0 +-8.667 -2.66 -1.897 0 0 0 0 0 0 0 +-8.655 -2.686 -1.896 0 0 0 0 0 0 0 +-8.645 -2.713 -1.896 0 0 0 0 0 0 0 +-8.636 -2.74 -1.896 0 0 0 0 0 0 0 +-8.614 -2.763 -1.893 0 0 0 0 0 0 0 +-8.604 -2.775 -1.891 0 0 0 0 0 0 0 +-8.59 -2.8 -1.89 0 0 0 0 0 0 0 +-8.579 -2.827 -1.89 0 0 0 0 0 0 0 +-8.561 -2.85 -1.887 0 0 0 0 0 0 0 +-8.548 -2.876 -1.887 0 0 0 0 0 0 0 +-8.532 -2.9 -1.885 0 0 0 0 0 0 0 +-8.523 -2.927 -1.885 0 0 0 0 0 0 0 +-8.513 -2.939 -1.883 0 0 0 0 0 0 0 +-8.496 -2.963 -1.882 0 0 0 0 0 0 0 +-8.485 -2.989 -1.881 0 0 0 0 0 0 0 +-8.464 -3.012 -1.879 0 0 0 0 0 0 0 +-8.46 -3.04 -1.88 0 0 0 0 0 0 0 +-8.451 -3.067 -1.88 0 0 0 0 0 0 0 +-8.423 -3.087 -1.876 0 0 0 0 0 0 0 +-8.411 -3.097 -1.874 0 0 0 0 0 0 0 +-8.406 -3.126 -1.875 0 0 0 0 0 0 0 +-8.385 -3.148 -1.873 0 0 0 0 0 0 0 +-8.381 -3.176 -1.874 0 0 0 0 0 0 0 +-8.369 -3.202 -1.873 0 0 0 0 0 0 0 +-8.354 -3.226 -1.872 0 0 0 0 0 0 0 +-8.338 -3.25 -1.871 0 0 0 0 0 0 0 +-8.315 -3.256 -1.867 0 0 0 0 0 0 0 +-8.317 -3.287 -1.87 0 0 0 0 0 0 0 +-8.303 -3.312 -1.869 0 0 0 0 0 0 0 +-8.28 -3.333 -1.866 0 0 0 0 0 0 0 +-8.273 -3.36 -1.867 0 0 0 0 0 0 0 +-8.262 -3.386 -1.867 0 0 0 0 0 0 0 +-8.239 -3.407 -1.863 0 0 0 0 0 0 0 +-8.239 -3.422 -1.865 0 0 0 0 0 0 0 +-8.225 -3.447 -1.864 0 0 0 0 0 0 0 +-8.219 -3.475 -1.865 0 0 0 0 0 0 0 +-8.205 -3.499 -1.864 0 0 0 0 0 0 0 +-8.185 -3.521 -1.862 0 0 0 0 0 0 0 +-8.175 -3.547 -1.863 0 0 0 0 0 0 0 +-8.159 -3.571 -1.861 0 0 0 0 0 0 0 +-8.148 -3.596 -1.861 0 0 0 0 0 0 0 +-8.142 -3.609 -1.861 0 0 0 0 0 0 0 +-8.127 -3.633 -1.86 0 0 0 0 0 0 0 +-8.107 -3.655 -1.858 0 0 0 0 0 0 0 +-8.104 -3.684 -1.86 0 0 0 0 0 0 0 +-8.089 -3.708 -1.86 0 0 0 0 0 0 0 +-8.068 -3.729 -1.857 0 0 0 0 0 0 0 +-8.074 -3.763 -1.862 0 0 0 0 0 0 0 +-8.054 -3.769 -1.858 0 0 0 0 0 0 0 +-8.044 -3.795 -1.859 0 0 0 0 0 0 0 +-8.021 -3.815 -1.856 0 0 0 0 0 0 0 +-8.02 -3.846 -1.859 0 0 0 0 0 0 0 +-8.006 -3.87 -1.858 0 0 0 0 0 0 0 +-7.992 -3.894 -1.858 0 0 0 0 0 0 0 +-7.975 -3.917 -1.857 0 0 0 0 0 0 0 +-7.975 -3.933 -1.858 0 0 0 0 0 0 0 +-7.965 -3.959 -1.859 0 0 0 0 0 0 0 +-7.945 -3.98 -1.857 0 0 0 0 0 0 0 +-7.931 -4.004 -1.857 0 0 0 0 0 0 0 +-7.913 -4.026 -1.855 0 0 0 0 0 0 0 +-7.906 -4.054 -1.857 0 0 0 0 0 0 0 +-7.891 -4.078 -1.856 0 0 0 0 0 0 0 +-7.873 -4.084 -1.853 0 0 0 0 0 0 0 +-7.862 -4.11 -1.853 0 0 0 0 0 0 0 +-7.845 -4.132 -1.853 0 0 0 0 0 0 0 +-7.836 -4.159 -1.853 0 0 0 0 0 0 0 +-7.816 -4.18 -1.852 0 0 0 0 0 0 0 +-7.802 -4.204 -1.852 0 0 0 0 0 0 0 +-7.786 -4.227 -1.851 0 0 0 0 0 0 0 +-7.779 -4.239 -1.851 0 0 0 0 0 0 0 +-7.762 -4.262 -1.85 0 0 0 0 0 0 0 +-7.749 -4.286 -1.85 0 0 0 0 0 0 0 +-7.737 -4.311 -1.85 0 0 0 0 0 0 0 +-7.715 -4.331 -1.848 0 0 0 0 0 0 0 +-7.698 -4.353 -1.847 0 0 0 0 0 0 0 +-7.688 -4.379 -1.848 0 0 0 0 0 0 0 +-7.676 -4.388 -1.847 0 0 0 0 0 0 0 +-7.665 -4.415 -1.848 0 0 0 0 0 0 0 +-7.643 -4.434 -1.846 0 0 0 0 0 0 0 +-7.636 -4.462 -1.847 0 0 0 0 0 0 0 +-7.618 -4.484 -1.847 0 0 0 0 0 0 0 +-7.609 -4.51 -1.848 0 0 0 0 0 0 0 +-7.592 -4.532 -1.847 0 0 0 0 0 0 0 +-7.584 -4.544 -1.847 0 0 0 0 0 0 0 +-7.565 -4.565 -1.846 0 0 0 0 0 0 0 +-7.547 -4.587 -1.845 0 0 0 0 0 0 0 +-7.536 -4.613 -1.846 0 0 0 0 0 0 0 +-7.523 -4.637 -1.846 0 0 0 0 0 0 0 +-7.514 -4.664 -1.847 0 0 0 0 0 0 0 +-7.499 -4.687 -1.847 0 0 0 0 0 0 0 +-7.483 -4.71 -1.847 0 0 0 0 0 0 0 +-7.48 -4.725 -1.848 0 0 0 0 0 0 0 +-7.465 -4.748 -1.848 0 0 0 0 0 0 0 +-7.442 -4.766 -1.846 0 0 0 0 0 0 0 +-7.435 -4.795 -1.848 0 0 0 0 0 0 0 +-7.417 -4.816 -1.847 0 0 0 0 0 0 0 +-7.402 -4.84 -1.847 0 0 0 0 0 0 0 +-7.4 -4.871 -1.851 0 0 0 0 0 0 0 +-7.376 -4.872 -1.847 0 0 0 0 0 0 0 +-7.365 -4.899 -1.848 0 0 0 0 0 0 0 +-7.35 -4.922 -1.848 0 0 0 0 0 0 0 +-7.339 -4.948 -1.849 0 0 0 0 0 0 0 +-7.324 -4.971 -1.849 0 0 0 0 0 0 0 +-7.303 -4.991 -1.848 0 0 0 0 0 0 0 +-7.286 -5.013 -1.847 0 0 0 0 0 0 0 +-7.286 -5.03 -1.85 0 0 0 0 0 0 0 +-7.262 -5.047 -1.847 0 0 0 0 0 0 0 +-7.256 -5.076 -1.85 0 0 0 0 0 0 0 +-7.235 -5.096 -1.849 0 0 0 0 0 0 0 +-7.227 -5.124 -1.851 0 0 0 0 0 0 0 +-7.206 -5.143 -1.85 0 0 0 0 0 0 0 +-7.206 -5.177 -1.854 0 0 0 0 0 0 0 +-7.18 -5.176 -1.849 0 0 0 0 0 0 0 +-7.167 -5.201 -1.85 0 0 0 0 0 0 0 +-7.151 -5.223 -1.85 0 0 0 0 0 0 0 +-7.142 -5.252 -1.852 0 0 0 0 0 0 0 +-7.118 -5.268 -1.85 0 0 0 0 0 0 0 +-7.11 -5.298 -1.853 0 0 0 0 0 0 0 +-7.092 -5.319 -1.852 0 0 0 0 0 0 0 +-7.076 -5.324 -1.85 0 0 0 0 0 0 0 +-7.075 -5.358 -1.854 0 0 0 0 0 0 0 +-7.066 -5.386 -1.857 0 0 0 0 0 0 0 +-7.036 -5.399 -1.853 0 0 0 0 0 0 0 +-7.023 -5.423 -1.854 0 0 0 0 0 0 0 +-7.013 -5.451 -1.856 0 0 0 0 0 0 0 +-6.988 -5.467 -1.854 0 0 0 0 0 0 0 +-6.978 -5.477 -1.853 0 0 0 0 0 0 0 +-6.985 -5.518 -1.86 0 0 0 0 0 0 0 +-6.956 -5.53 -1.857 0 0 0 0 0 0 0 +-6.955 -5.566 -1.862 0 0 0 0 0 0 0 +-6.933 -5.584 -1.86 0 0 0 0 0 0 0 +-6.944 -5.629 -1.869 0 0 0 0 0 0 0 +-6.904 -5.632 -1.862 0 0 0 0 0 0 0 +-6.883 -5.633 -1.859 0 0 0 0 0 0 0 +-6.874 -5.662 -1.861 0 0 0 0 0 0 0 +-6.86 -5.686 -1.862 0 0 0 0 0 0 0 +-6.845 -5.71 -1.863 0 0 0 0 0 0 0 +-6.806 -5.714 -1.857 0 0 0 0 0 0 0 +-6.785 -5.733 -1.856 0 0 0 0 0 0 0 +-6.765 -5.753 -1.856 0 0 0 0 0 0 0 +-6.732 -5.762 -1.851 0 0 0 0 0 0 0 +-6.717 -5.767 -1.85 0 0 0 0 0 0 0 +-6.705 -5.793 -1.851 0 0 0 0 0 0 0 +-6.671 -5.8 -1.847 0 0 0 0 0 0 0 +-6.651 -5.82 -1.846 0 0 0 0 0 0 0 +-6.635 -5.843 -1.847 0 0 0 0 0 0 0 +-6.611 -5.859 -1.845 0 0 0 0 0 0 0 +-6.59 -5.877 -1.844 0 0 0 0 0 0 0 +-6.583 -5.89 -1.845 0 0 0 0 0 0 0 +-6.559 -5.906 -1.843 0 0 0 0 0 0 0 +-6.548 -5.933 -1.846 0 0 0 0 0 0 0 +-6.519 -5.944 -1.843 0 0 0 0 0 0 0 +-6.499 -5.963 -1.842 0 0 0 0 0 0 0 +-6.482 -5.985 -1.843 0 0 0 0 0 0 0 +-6.454 -5.997 -1.84 0 0 0 0 0 0 0 +-6.442 -6.005 -1.839 0 0 0 0 0 0 0 +-6.426 -6.028 -1.84 0 0 0 0 0 0 0 +-6.412 -6.053 -1.842 0 0 0 0 0 0 0 +-6.385 -6.065 -1.839 0 0 0 0 0 0 0 +-6.373 -6.092 -1.841 0 0 0 0 0 0 0 +-6.348 -6.107 -1.84 0 0 0 0 0 0 0 +-6.332 -6.129 -1.84 0 0 0 0 0 0 0 +-6.322 -6.139 -1.84 0 0 0 0 0 0 0 +-6.294 -6.151 -1.838 0 0 0 0 0 0 0 +-6.279 -6.175 -1.839 0 0 0 0 0 0 0 +-6.26 -6.194 -1.839 0 0 0 0 0 0 0 +-6.236 -6.21 -1.838 0 0 0 0 0 0 0 +-6.217 -6.229 -1.838 0 0 0 0 0 0 0 +-6.2 -6.252 -1.839 0 0 0 0 0 0 0 +-6.186 -6.257 -1.837 0 0 0 0 0 0 0 +-6.165 -6.275 -1.837 0 0 0 0 0 0 0 +-6.137 -6.286 -1.834 0 0 0 0 0 0 0 +-6.127 -6.315 -1.837 0 0 0 0 0 0 0 +-6.097 -6.325 -1.834 0 0 0 0 0 0 0 +-6.073 -6.34 -1.833 0 0 0 0 0 0 0 +-6.063 -6.368 -1.836 0 0 0 0 0 0 0 +-6.047 -6.372 -1.834 0 0 0 0 0 0 0 +-6.031 -6.396 -1.836 0 0 0 0 0 0 0 +-6.007 -6.41 -1.834 0 0 0 0 0 0 0 +-5.988 -6.43 -1.835 0 0 0 0 0 0 0 +-5.972 -6.454 -1.836 0 0 0 0 0 0 0 +-5.946 -6.467 -1.834 0 0 0 0 0 0 0 +-5.926 -6.485 -1.834 0 0 0 0 0 0 0 +-5.912 -6.49 -1.833 0 0 0 0 0 0 0 +-5.888 -6.504 -1.832 0 0 0 0 0 0 0 +-5.878 -6.534 -1.835 0 0 0 0 0 0 0 +-5.852 -6.547 -1.833 0 0 0 0 0 0 0 +-5.834 -6.568 -1.834 0 0 0 0 0 0 0 +-5.812 -6.585 -1.834 0 0 0 0 0 0 0 +-5.791 -6.603 -1.834 0 0 0 0 0 0 0 +-5.779 -6.611 -1.833 0 0 0 0 0 0 0 +-5.759 -6.629 -1.833 0 0 0 0 0 0 0 +-5.739 -6.649 -1.834 0 0 0 0 0 0 0 +-5.723 -6.673 -1.836 0 0 0 0 0 0 0 +-5.7 -6.688 -1.835 0 0 0 0 0 0 0 +-5.679 -6.705 -1.835 0 0 0 0 0 0 0 +-5.666 -6.734 -1.838 0 0 0 0 0 0 0 +-5.662 -6.75 -1.84 0 0 0 0 0 0 0 +-5.642 -6.769 -1.84 0 0 0 0 0 0 0 +-5.623 -6.79 -1.841 0 0 0 0 0 0 0 +-5.596 -6.8 -1.839 0 0 0 0 0 0 0 +-5.586 -6.831 -1.843 0 0 0 0 0 0 0 +-5.583 -6.871 -1.85 0 0 0 0 0 0 0 +-5.575 -6.906 -1.854 0 0 0 0 0 0 0 +-5.518 -6.858 -1.838 0 0 0 0 0 0 0 +-5.493 -6.871 -1.837 0 0 0 0 0 0 0 +-5.465 -6.88 -1.835 0 0 0 0 0 0 0 +-5.418 -6.866 -1.826 0 0 0 0 0 0 0 +-5.393 -6.878 -1.824 0 0 0 0 0 0 0 +-5.364 -6.886 -1.822 0 0 0 0 0 0 0 +-5.335 -6.893 -1.819 0 0 0 0 0 0 0 +-5.324 -6.902 -1.819 0 0 0 0 0 0 0 +-5.299 -6.914 -1.818 0 0 0 0 0 0 0 +-5.283 -6.938 -1.82 0 0 0 0 0 0 0 +-5.256 -6.947 -1.818 0 0 0 0 0 0 0 +-5.233 -6.962 -1.817 0 0 0 0 0 0 0 +-5.208 -6.975 -1.816 0 0 0 0 0 0 0 +-5.186 -6.991 -1.816 0 0 0 0 0 0 0 +-5.172 -6.995 -1.815 0 0 0 0 0 0 0 +-5.143 -7.002 -1.813 0 0 0 0 0 0 0 +-5.127 -7.026 -1.815 0 0 0 0 0 0 0 +-5.099 -7.034 -1.813 0 0 0 0 0 0 0 +-5.079 -7.053 -1.813 0 0 0 0 0 0 0 +-5.054 -7.066 -1.813 0 0 0 0 0 0 0 +-5.03 -7.078 -1.812 0 0 0 0 0 0 0 +-5.003 -7.088 -1.81 0 0 0 0 0 0 0 +-4.993 -7.097 -1.81 0 0 0 0 0 0 0 +-4.969 -7.11 -1.81 0 0 0 0 0 0 0 +-4.946 -7.125 -1.81 0 0 0 0 0 0 0 +-4.923 -7.139 -1.809 0 0 0 0 0 0 0 +-4.901 -7.156 -1.81 0 0 0 0 0 0 0 +-4.882 -7.176 -1.811 0 0 0 0 0 0 0 +-4.856 -7.187 -1.81 0 0 0 0 0 0 0 +-4.836 -7.181 -1.806 0 0 0 0 0 0 0 +-4.818 -7.203 -1.808 0 0 0 0 0 0 0 +-4.794 -7.217 -1.807 0 0 0 0 0 0 0 +-4.769 -7.228 -1.806 0 0 0 0 0 0 0 +-4.748 -7.245 -1.807 0 0 0 0 0 0 0 +-4.722 -7.255 -1.806 0 0 0 0 0 0 0 +-4.693 -7.26 -1.803 0 0 0 0 0 0 0 +-4.681 -7.267 -1.803 0 0 0 0 0 0 0 +-4.666 -7.293 -1.806 0 0 0 0 0 0 0 +-4.635 -7.296 -1.803 0 0 0 0 0 0 0 +-4.609 -7.306 -1.802 0 0 0 0 0 0 0 +-4.59 -7.325 -1.803 0 0 0 0 0 0 0 +-4.557 -7.325 -1.799 0 0 0 0 0 0 0 +-4.536 -7.343 -1.8 0 0 0 0 0 0 0 +-4.531 -7.36 -1.803 0 0 0 0 0 0 0 +-4.504 -7.367 -1.801 0 0 0 0 0 0 0 +-4.481 -7.383 -1.801 0 0 0 0 0 0 0 +-4.464 -7.407 -1.804 0 0 0 0 0 0 0 +-4.435 -7.411 -1.801 0 0 0 0 0 0 0 +-4.412 -7.425 -1.801 0 0 0 0 0 0 0 +-4.398 -7.455 -1.806 0 0 0 0 0 0 0 +-4.378 -7.447 -1.802 0 0 0 0 0 0 0 +-4.354 -7.461 -1.802 0 0 0 0 0 0 0 +-4.339 -7.488 -1.805 0 0 0 0 0 0 0 +-4.308 -7.49 -1.802 0 0 0 0 0 0 0 +-4.284 -7.502 -1.802 0 0 0 0 0 0 0 +-4.268 -7.529 -1.805 0 0 0 0 0 0 0 +-4.239 -7.534 -1.803 0 0 0 0 0 0 0 +-4.232 -7.549 -1.805 0 0 0 0 0 0 0 +-4.212 -7.569 -1.807 0 0 0 0 0 0 0 +-4.19 -7.584 -1.807 0 0 0 0 0 0 0 +-4.168 -7.6 -1.808 0 0 0 0 0 0 0 +-4.158 -7.639 -1.815 0 0 0 0 0 0 0 +-4.151 -7.685 -1.823 0 0 0 0 0 0 0 +-4.132 -7.706 -1.825 0 0 0 0 0 0 0 +-4.13 -7.732 -1.83 0 0 0 0 0 0 0 +-4.1 -7.734 -1.827 0 0 0 0 0 0 0 +-4.027 -7.654 -1.804 0 0 0 0 0 0 0 +-4.073 -7.801 -1.838 0 0 0 0 0 0 0 +-4.038 -7.793 -1.833 0 0 0 0 0 0 0 +-4.025 -7.828 -1.838 0 0 0 0 0 0 0 +-4.015 -7.869 -1.845 0 0 0 0 0 0 0 +-3.96 -7.792 -1.824 0 0 0 0 0 0 0 +-3.925 -7.783 -1.819 0 0 0 0 0 0 0 +-3.893 -7.782 -1.816 0 0 0 0 0 0 0 +-3.863 -7.781 -1.813 0 0 0 0 0 0 0 +-3.842 -7.801 -1.814 0 0 0 0 0 0 0 +-3.813 -7.804 -1.812 0 0 0 0 0 0 0 +-3.786 -7.812 -1.811 0 0 0 0 0 0 0 +-3.772 -7.815 -1.81 0 0 0 0 0 0 0 +-3.75 -7.83 -1.811 0 0 0 0 0 0 0 +-3.724 -7.84 -1.811 0 0 0 0 0 0 0 +-3.7 -7.853 -1.811 0 0 0 0 0 0 0 +-3.674 -7.861 -1.81 0 0 0 0 0 0 0 +-3.648 -7.871 -1.81 0 0 0 0 0 0 0 +-3.622 -7.879 -1.809 0 0 0 0 0 0 0 +-3.613 -7.892 -1.811 0 0 0 0 0 0 0 +-3.583 -7.893 -1.808 0 0 0 0 0 0 0 +-3.564 -7.916 -1.811 0 0 0 0 0 0 0 +-3.538 -7.924 -1.81 0 0 0 0 0 0 0 +-3.512 -7.933 -1.81 0 0 0 0 0 0 0 +-3.485 -7.941 -1.809 0 0 0 0 0 0 0 +-3.459 -7.948 -1.808 0 0 0 0 0 0 0 +-3.451 -7.964 -1.811 0 0 0 0 0 0 0 +-3.421 -7.964 -1.808 0 0 0 0 0 0 0 +-3.398 -7.978 -1.809 0 0 0 0 0 0 0 +-3.37 -7.982 -1.807 0 0 0 0 0 0 0 +-3.346 -7.996 -1.808 0 0 0 0 0 0 0 +-3.319 -8.003 -1.807 0 0 0 0 0 0 0 +-3.297 -8.019 -1.809 0 0 0 0 0 0 0 +-3.287 -8.031 -1.81 0 0 0 0 0 0 0 +-3.258 -8.032 -1.808 0 0 0 0 0 0 0 +-3.236 -8.05 -1.81 0 0 0 0 0 0 0 +-3.207 -8.053 -1.808 0 0 0 0 0 0 0 +-3.183 -8.064 -1.809 0 0 0 0 0 0 0 +-3.155 -8.069 -1.807 0 0 0 0 0 0 0 +-3.13 -8.079 -1.807 0 0 0 0 0 0 0 +-3.105 -8.089 -1.807 0 0 0 0 0 0 0 +-3.091 -8.09 -1.806 0 0 0 0 0 0 0 +-3.066 -8.103 -1.807 0 0 0 0 0 0 0 +-3.043 -8.118 -1.809 0 0 0 0 0 0 0 +-3.01 -8.108 -1.804 0 0 0 0 0 0 0 +-2.99 -8.132 -1.807 0 0 0 0 0 0 0 +-2.961 -8.132 -1.805 0 0 0 0 0 0 0 +-2.936 -8.143 -1.806 0 0 0 0 0 0 0 +-2.925 -8.151 -1.806 0 0 0 0 0 0 0 +-2.897 -8.155 -1.805 0 0 0 0 0 0 0 +-2.872 -8.166 -1.806 0 0 0 0 0 0 0 +-2.845 -8.171 -1.805 0 0 0 0 0 0 0 +-2.823 -8.189 -1.807 0 0 0 0 0 0 0 +-2.798 -8.202 -1.808 0 0 0 0 0 0 0 +-2.789 -8.217 -1.81 0 0 0 0 0 0 0 +-2.766 -8.233 -1.812 0 0 0 0 0 0 0 +-2.732 -8.22 -1.807 0 0 0 0 0 0 0 +-2.727 -8.289 -1.821 0 0 0 0 0 0 0 +-2.701 -8.298 -1.821 0 0 0 0 0 0 0 +-2.67 -8.292 -1.818 0 0 0 0 0 0 0 +-2.644 -8.3 -1.818 0 0 0 0 0 0 0 +-2.639 -8.373 -1.833 0 0 0 0 0 0 0 +-2.566 -8.279 -1.808 0 0 0 0 0 0 0 +-2.543 -8.299 -1.811 0 0 0 0 0 0 0 +-2.509 -8.28 -1.805 0 0 0 0 0 0 0 +-2.468 -8.24 -1.793 0 0 0 0 0 0 0 +-2.441 -8.244 -1.793 0 0 0 0 0 0 0 +-2.411 -8.236 -1.789 0 0 0 0 0 0 0 +-2.396 -8.234 -1.788 0 0 0 0 0 0 0 +-2.369 -8.236 -1.786 0 0 0 0 0 0 0 +-2.341 -8.236 -1.785 0 0 0 0 0 0 0 +-2.315 -8.244 -1.785 0 0 0 0 0 0 0 +-2.289 -8.249 -1.784 0 0 0 0 0 0 0 +-2.261 -8.249 -1.783 0 0 0 0 0 0 0 +-2.232 -8.244 -1.78 0 0 0 0 0 0 0 +-2.217 -8.242 -1.779 0 0 0 0 0 0 0 +-2.19 -8.245 -1.778 0 0 0 0 0 0 0 +-2.163 -8.248 -1.777 0 0 0 0 0 0 0 +-2.137 -8.255 -1.777 0 0 0 0 0 0 0 +-2.11 -8.256 -1.776 0 0 0 0 0 0 0 +-2.083 -8.259 -1.775 0 0 0 0 0 0 0 +-2.057 -8.264 -1.774 0 0 0 0 0 0 0 +-2.042 -8.261 -1.773 0 0 0 0 0 0 0 +-2.014 -8.26 -1.771 0 0 0 0 0 0 0 +-1.99 -8.274 -1.773 0 0 0 0 0 0 0 +-1.96 -8.263 -1.769 0 0 0 0 0 0 0 +-1.936 -8.278 -1.771 0 0 0 0 0 0 0 +-1.907 -8.269 -1.768 0 0 0 0 0 0 0 +-1.88 -8.273 -1.767 0 0 0 0 0 0 0 +-1.865 -8.267 -1.765 0 0 0 0 0 0 0 +-1.843 -8.288 -1.769 0 0 0 0 0 0 0 +-1.812 -8.275 -1.764 0 0 0 0 0 0 0 +-1.787 -8.284 -1.765 0 0 0 0 0 0 0 +-1.762 -8.293 -1.766 0 0 0 0 0 0 0 +-1.734 -8.289 -1.764 0 0 0 0 0 0 0 +-1.706 -8.285 -1.762 0 0 0 0 0 0 0 +-1.693 -8.29 -1.762 0 0 0 0 0 0 0 +-1.666 -8.289 -1.761 0 0 0 0 0 0 0 +-1.638 -8.287 -1.759 0 0 0 0 0 0 0 +-1.617 -8.313 -1.764 0 0 0 0 0 0 0 +-1.586 -8.297 -1.759 0 0 0 0 0 0 0 +-1.564 -8.321 -1.763 0 0 0 0 0 0 0 +-1.538 -8.33 -1.764 0 0 0 0 0 0 0 +-1.524 -8.323 -1.762 0 0 0 0 0 0 0 +-1.5 -8.343 -1.766 0 0 0 0 0 0 0 +-1.472 -8.338 -1.763 0 0 0 0 0 0 0 +-1.446 -8.344 -1.764 0 0 0 0 0 0 0 +-1.42 -8.347 -1.763 0 0 0 0 0 0 0 +-1.394 -8.355 -1.764 0 0 0 0 0 0 0 +-1.368 -8.36 -1.764 0 0 0 0 0 0 0 +-1.355 -8.362 -1.764 0 0 0 0 0 0 0 +-1.329 -8.368 -1.765 0 0 0 0 0 0 0 +-1.303 -8.372 -1.765 0 0 0 0 0 0 0 +-1.275 -8.366 -1.763 0 0 0 0 0 0 0 +-1.249 -8.374 -1.763 0 0 0 0 0 0 0 +-1.224 -8.384 -1.765 0 0 0 0 0 0 0 +-1.197 -8.384 -1.764 0 0 0 0 0 0 0 +-1.184 -8.391 -1.765 0 0 0 0 0 0 0 +-1.159 -8.401 -1.766 0 0 0 0 0 0 0 +-1.133 -8.406 -1.767 0 0 0 0 0 0 0 +-1.108 -8.42 -1.769 0 0 0 0 0 0 0 +-1.079 -8.404 -1.765 0 0 0 0 0 0 0 +-1.053 -8.413 -1.766 0 0 0 0 0 0 0 +-1.026 -8.414 -1.766 0 0 0 0 0 0 0 +-1.015 -8.433 -1.77 0 0 0 0 0 0 0 +-0.988 -8.433 -1.769 0 0 0 0 0 0 0 +-0.961 -8.428 -1.767 0 0 0 0 0 0 0 +-0.936 -8.44 -1.769 0 0 0 0 0 0 0 +-0.91 -8.449 -1.77 0 0 0 0 0 0 0 +-0.881 -8.433 -1.766 0 0 0 0 0 0 0 +-0.858 -8.464 -1.773 0 0 0 0 0 0 0 +-0.844 -8.462 -1.772 0 0 0 0 0 0 0 +-0.817 -8.459 -1.77 0 0 0 0 0 0 0 +-0.791 -8.469 -1.772 0 0 0 0 0 0 0 +-0.764 -8.469 -1.772 0 0 0 0 0 0 0 +-0.738 -8.476 -1.773 0 0 0 0 0 0 0 +-0.712 -8.484 -1.774 0 0 0 0 0 0 0 +-0.685 -8.48 -1.773 0 0 0 0 0 0 0 +-0.672 -8.495 -1.776 0 0 0 0 0 0 0 +-0.645 -8.489 -1.774 0 0 0 0 0 0 0 +-0.62 -8.507 -1.777 0 0 0 0 0 0 0 +-0.593 -8.513 -1.778 0 0 0 0 0 0 0 +-0.566 -8.509 -1.777 0 0 0 0 0 0 0 +-0.54 -8.518 -1.779 0 0 0 0 0 0 0 +-0.513 -8.527 -1.78 0 0 0 0 0 0 0 +-0.5 -8.524 -1.78 0 0 0 0 0 0 0 +-0.474 -8.538 -1.782 0 0 0 0 0 0 0 +-0.446 -8.531 -1.78 0 0 0 0 0 0 0 +-0.42 -8.542 -1.783 0 0 0 0 0 0 0 +-0.393 -8.546 -1.783 0 0 0 0 0 0 0 +-0.367 -8.547 -1.783 0 0 0 0 0 0 0 +-0.34 -8.55 -1.783 0 0 0 0 0 0 0 +-0.327 -8.558 -1.785 0 0 0 0 0 0 0 +-0.3 -8.559 -1.785 0 0 0 0 0 0 0 +-0.273 -8.568 -1.787 0 0 0 0 0 0 0 +-0.247 -8.578 -1.789 0 0 0 0 0 0 0 +-0.219 -8.567 -1.786 0 0 0 0 0 0 0 +-0.193 -8.595 -1.793 0 0 0 0 0 0 0 +-0.166 -8.58 -1.789 0 0 0 0 0 0 0 +-0.139 -8.598 -1.793 0 0 0 0 0 0 0 +-0.125 -8.577 -1.788 0 0 0 0 0 0 0 +-0.099 -8.603 -1.794 0 0 0 0 0 0 0 +-0.072 -8.605 -1.794 0 0 0 0 0 0 0 +-0.044 -8.586 -1.79 0 0 0 0 0 0 0 +-0.018 -8.609 -1.795 0 0 0 0 0 0 0 +0.009 -8.603 -1.794 0 0 0 0 0 0 0 +0.036 -8.603 -1.794 0 0 0 0 0 0 0 +0.05 -8.595 -1.792 0 0 0 0 0 0 0 +0.077 -8.601 -1.793 0 0 0 0 0 0 0 +0.104 -8.601 -1.793 0 0 0 0 0 0 0 +0.131 -8.606 -1.795 0 0 0 0 0 0 0 +0.158 -8.598 -1.793 0 0 0 0 0 0 0 +0.185 -8.609 -1.796 0 0 0 0 0 0 0 +0.199 -8.603 -1.794 0 0 0 0 0 0 0 +0.226 -8.602 -1.794 0 0 0 0 0 0 0 +0.253 -8.598 -1.793 0 0 0 0 0 0 0 +0.28 -8.615 -1.797 0 0 0 0 0 0 0 +0.307 -8.606 -1.796 0 0 0 0 0 0 0 +0.334 -8.591 -1.793 0 0 0 0 0 0 0 +0.361 -8.596 -1.794 0 0 0 0 0 0 0 +0.388 -8.606 -1.796 0 0 0 0 0 0 0 +0.402 -8.602 -1.796 0 0 0 0 0 0 0 +0.429 -8.614 -1.799 0 0 0 0 0 0 0 +0.457 -8.619 -1.8 0 0 0 0 0 0 0 +0.483 -8.609 -1.798 0 0 0 0 0 0 0 +0.511 -8.618 -1.8 0 0 0 0 0 0 0 +0.538 -8.62 -1.801 0 0 0 0 0 0 0 +0.565 -8.622 -1.802 0 0 0 0 0 0 0 +0.58 -8.641 -1.806 0 0 0 0 0 0 0 +0.606 -8.617 -1.802 0 0 0 0 0 0 0 +0.634 -8.631 -1.805 0 0 0 0 0 0 0 +0.661 -8.629 -1.805 0 0 0 0 0 0 0 +0.689 -8.633 -1.806 0 0 0 0 0 0 0 +0.717 -8.646 -1.81 0 0 0 0 0 0 0 +0.745 -8.651 -1.812 0 0 0 0 0 0 0 +0.759 -8.658 -1.813 0 0 0 0 0 0 0 +0.787 -8.66 -1.814 0 0 0 0 0 0 0 +0.814 -8.661 -1.815 0 0 0 0 0 0 0 +0.842 -8.66 -1.816 0 0 0 0 0 0 0 +0.871 -8.675 -1.82 0 0 0 0 0 0 0 +0.897 -8.668 -1.819 0 0 0 0 0 0 0 +0.926 -8.675 -1.821 0 0 0 0 0 0 0 +0.94 -8.678 -1.822 0 0 0 0 0 0 0 +0.968 -8.688 -1.825 0 0 0 0 0 0 0 +0.996 -8.687 -1.825 0 0 0 0 0 0 0 +1.024 -8.692 -1.827 0 0 0 0 0 0 0 +1.05 -8.679 -1.825 0 0 0 0 0 0 0 +1.078 -8.677 -1.825 0 0 0 0 0 0 0 +1.107 -8.689 -1.829 0 0 0 0 0 0 0 +1.12 -8.682 -1.827 0 0 0 0 0 0 0 +1.148 -8.688 -1.83 0 0 0 0 0 0 0 +1.176 -8.686 -1.83 0 0 0 0 0 0 0 +1.203 -8.683 -1.83 0 0 0 0 0 0 0 +1.234 -8.704 -1.836 0 0 0 0 0 0 0 +1.257 -8.667 -1.828 0 0 0 0 0 0 0 +1.287 -8.682 -1.833 0 0 0 0 0 0 0 +1.302 -8.692 -1.835 0 0 0 0 0 0 0 +1.327 -8.67 -1.831 0 0 0 0 0 0 0 +1.357 -8.689 -1.836 0 0 0 0 0 0 0 +1.386 -8.693 -1.838 0 0 0 0 0 0 0 +1.411 -8.671 -1.834 0 0 0 0 0 0 0 +1.44 -8.678 -1.837 0 0 0 0 0 0 0 +1.469 -8.687 -1.84 0 0 0 0 0 0 0 +1.481 -8.673 -1.837 0 0 0 0 0 0 0 +1.509 -8.676 -1.839 0 0 0 0 0 0 0 +1.54 -8.693 -1.844 0 0 0 0 0 0 0 +1.565 -8.672 -1.84 0 0 0 0 0 0 0 +1.594 -8.677 -1.843 0 0 0 0 0 0 0 +1.621 -8.67 -1.842 0 0 0 0 0 0 0 +1.311 -6.807 -1.422 0 0 0 0 0 0 0 +1.333 -6.805 -1.422 0 0 0 0 0 0 0 +1.351 -6.782 -1.418 0 0 0 0 0 0 0 +1.371 -6.77 -1.416 0 0 0 0 0 0 0 +1.39 -6.756 -1.414 0 0 0 0 0 0 0 +1.409 -6.74 -1.411 0 0 0 0 0 0 0 +1.431 -6.741 -1.412 0 0 0 0 0 0 0 +1.44 -6.731 -1.411 0 0 0 0 0 0 0 +1.456 -6.702 -1.405 0 0 0 0 0 0 0 +1.479 -6.707 -1.407 0 0 0 0 0 0 0 +1.504 -6.719 -1.411 0 0 0 0 0 0 0 +1.54 -6.779 -1.426 0 0 0 0 0 0 0 +1.983 -8.64 -1.852 0 0 0 0 0 0 0 +1.534 -6.56 -1.378 0 0 0 0 0 0 0 +1.542 -6.548 -1.376 0 0 0 0 0 0 0 +1.558 -6.524 -1.371 0 0 0 0 0 0 0 +1.579 -6.52 -1.371 0 0 0 0 0 0 0 +1.598 -6.511 -1.371 0 0 0 0 0 0 0 +1.622 -6.521 -1.374 0 0 0 0 0 0 0 +1.646 -6.529 -1.377 0 0 0 0 0 0 0 +1.685 -6.598 -1.394 0 0 0 0 0 0 0 +2.229 -8.703 -1.879 0 0 0 0 0 0 0 +2.26 -8.709 -1.882 0 0 0 0 0 0 0 +2.285 -8.695 -1.88 0 0 0 0 0 0 0 +2.319 -8.714 -1.886 0 0 0 0 0 0 0 +2.349 -8.716 -1.888 0 0 0 0 0 0 0 +2.368 -8.677 -1.881 0 0 0 0 0 0 0 +2.391 -8.654 -1.877 0 0 0 0 0 0 0 +2.407 -8.66 -1.88 0 0 0 0 0 0 0 +2.436 -8.656 -1.88 0 0 0 0 0 0 0 +2.442 -8.573 -1.863 0 0 0 0 0 0 0 +2.508 -8.702 -1.895 0 0 0 0 0 0 0 +2.531 -8.679 -1.891 0 0 0 0 0 0 0 +2.556 -8.666 -1.89 0 0 0 0 0 0 0 +2.587 -8.671 -1.893 0 0 0 0 0 0 0 +2.606 -8.685 -1.897 0 0 0 0 0 0 0 +2.628 -8.657 -1.893 0 0 0 0 0 0 0 +2.644 -8.613 -1.884 0 0 0 0 0 0 0 +2.67 -8.603 -1.884 0 0 0 0 0 0 0 +2.692 -8.577 -1.88 0 0 0 0 0 0 0 +2.715 -8.556 -1.877 0 0 0 0 0 0 0 +2.747 -8.564 -1.881 0 0 0 0 0 0 0 +2.754 -8.537 -1.876 0 0 0 0 0 0 0 +2.774 -8.508 -1.871 0 0 0 0 0 0 0 +2.803 -8.507 -1.873 0 0 0 0 0 0 0 +2.825 -8.485 -1.87 0 0 0 0 0 0 0 +2.854 -8.484 -1.871 0 0 0 0 0 0 0 +2.877 -8.463 -1.869 0 0 0 0 0 0 0 +2.902 -8.449 -1.867 0 0 0 0 0 0 0 +2.911 -8.433 -1.865 0 0 0 0 0 0 0 +2.939 -8.426 -1.865 0 0 0 0 0 0 0 +2.966 -8.418 -1.866 0 0 0 0 0 0 0 +2.989 -8.4 -1.863 0 0 0 0 0 0 0 +3.014 -8.387 -1.863 0 0 0 0 0 0 0 +3.04 -8.375 -1.862 0 0 0 0 0 0 0 +3.06 -8.349 -1.858 0 0 0 0 0 0 0 +3.073 -8.344 -1.858 0 0 0 0 0 0 0 +3.099 -8.333 -1.858 0 0 0 0 0 0 0 +3.119 -8.309 -1.854 0 0 0 0 0 0 0 +3.147 -8.304 -1.856 0 0 0 0 0 0 0 +3.171 -8.287 -1.854 0 0 0 0 0 0 0 +3.193 -8.268 -1.852 0 0 0 0 0 0 0 +3.219 -8.256 -1.851 0 0 0 0 0 0 0 +3.23 -8.247 -1.85 0 0 0 0 0 0 0 +3.253 -8.23 -1.849 0 0 0 0 0 0 0 +3.282 -8.227 -1.85 0 0 0 0 0 0 0 +3.311 -8.226 -1.853 0 0 0 0 0 0 0 +3.331 -8.199 -1.849 0 0 0 0 0 0 0 +3.358 -8.192 -1.85 0 0 0 0 0 0 0 +3.38 -8.172 -1.847 0 0 0 0 0 0 0 +3.395 -8.172 -1.849 0 0 0 0 0 0 0 +3.416 -8.151 -1.846 0 0 0 0 0 0 0 +3.442 -8.142 -1.847 0 0 0 0 0 0 0 +3.466 -8.126 -1.845 0 0 0 0 0 0 0 +3.494 -8.122 -1.847 0 0 0 0 0 0 0 +3.517 -8.104 -1.845 0 0 0 0 0 0 0 +3.537 -8.082 -1.843 0 0 0 0 0 0 0 +3.548 -8.071 -1.841 0 0 0 0 0 0 0 +3.57 -8.053 -1.84 0 0 0 0 0 0 0 +3.594 -8.04 -1.839 0 0 0 0 0 0 0 +3.623 -8.035 -1.841 0 0 0 0 0 0 0 +3.644 -8.015 -1.839 0 0 0 0 0 0 0 +3.666 -7.996 -1.837 0 0 0 0 0 0 0 +3.69 -7.983 -1.836 0 0 0 0 0 0 0 +3.69 -7.949 -1.83 0 0 0 0 0 0 0 +3.716 -7.941 -1.83 0 0 0 0 0 0 0 +3.74 -7.926 -1.83 0 0 0 0 0 0 0 +3.764 -7.912 -1.829 0 0 0 0 0 0 0 +3.78 -7.883 -1.825 0 0 0 0 0 0 0 +3.804 -7.869 -1.824 0 0 0 0 0 0 0 +3.819 -7.838 -1.82 0 0 0 0 0 0 0 +3.833 -7.833 -1.82 0 0 0 0 0 0 0 +3.851 -7.809 -1.817 0 0 0 0 0 0 0 +3.875 -7.795 -1.816 0 0 0 0 0 0 0 +3.895 -7.774 -1.814 0 0 0 0 0 0 0 +3.92 -7.764 -1.815 0 0 0 0 0 0 0 +3.937 -7.736 -1.811 0 0 0 0 0 0 0 +3.964 -7.73 -1.813 0 0 0 0 0 0 0 +3.972 -7.715 -1.81 0 0 0 0 0 0 0 +3.996 -7.703 -1.81 0 0 0 0 0 0 0 +4.02 -7.688 -1.81 0 0 0 0 0 0 0 +4.034 -7.657 -1.805 0 0 0 0 0 0 0 +4.058 -7.644 -1.805 0 0 0 0 0 0 0 +4.087 -7.641 -1.808 0 0 0 0 0 0 0 +4.102 -7.611 -1.803 0 0 0 0 0 0 0 +4.108 -7.593 -1.8 0 0 0 0 0 0 0 +4.139 -7.594 -1.804 0 0 0 0 0 0 0 +4.151 -7.56 -1.799 0 0 0 0 0 0 0 +4.179 -7.554 -1.8 0 0 0 0 0 0 0 +4.202 -7.539 -1.8 0 0 0 0 0 0 0 +4.216 -7.509 -1.796 0 0 0 0 0 0 0 +4.244 -7.504 -1.798 0 0 0 0 0 0 0 +4.254 -7.494 -1.797 0 0 0 0 0 0 0 +4.273 -7.472 -1.795 0 0 0 0 0 0 0 +4.3 -7.465 -1.796 0 0 0 0 0 0 0 +4.316 -7.438 -1.793 0 0 0 0 0 0 0 +4.337 -7.421 -1.792 0 0 0 0 0 0 0 +4.359 -7.406 -1.792 0 0 0 0 0 0 0 +4.389 -7.402 -1.794 0 0 0 0 0 0 0 +4.39 -7.379 -1.79 0 0 0 0 0 0 0 +4.412 -7.363 -1.79 0 0 0 0 0 0 0 +4.436 -7.349 -1.79 0 0 0 0 0 0 0 +4.456 -7.33 -1.788 0 0 0 0 0 0 0 +4.474 -7.308 -1.786 0 0 0 0 0 0 0 +4.493 -7.289 -1.785 0 0 0 0 0 0 0 +4.518 -7.278 -1.786 0 0 0 0 0 0 0 +4.534 -7.252 -1.783 0 0 0 0 0 0 0 +4.546 -7.247 -1.783 0 0 0 0 0 0 0 +4.563 -7.222 -1.78 0 0 0 0 0 0 0 +4.584 -7.205 -1.78 0 0 0 0 0 0 0 +4.602 -7.184 -1.778 0 0 0 0 0 0 0 +4.627 -7.172 -1.779 0 0 0 0 0 0 0 +4.642 -7.146 -1.776 0 0 0 0 0 0 0 +4.665 -7.133 -1.776 0 0 0 0 0 0 0 +4.673 -7.121 -1.775 0 0 0 0 0 0 0 +4.694 -7.105 -1.774 0 0 0 0 0 0 0 +4.717 -7.09 -1.774 0 0 0 0 0 0 0 +4.734 -7.067 -1.772 0 0 0 0 0 0 0 +4.759 -7.057 -1.773 0 0 0 0 0 0 0 +4.774 -7.031 -1.77 0 0 0 0 0 0 0 +4.788 -7.028 -1.772 0 0 0 0 0 0 0 +4.798 -6.995 -1.767 0 0 0 0 0 0 0 +4.826 -6.99 -1.77 0 0 0 0 0 0 0 +4.848 -6.975 -1.77 0 0 0 0 0 0 0 +4.869 -6.958 -1.769 0 0 0 0 0 0 0 +4.884 -6.933 -1.766 0 0 0 0 0 0 0 +4.91 -6.924 -1.768 0 0 0 0 0 0 0 +4.912 -6.903 -1.765 0 0 0 0 0 0 0 +4.935 -6.889 -1.765 0 0 0 0 0 0 0 +4.957 -6.874 -1.765 0 0 0 0 0 0 0 +4.975 -6.853 -1.764 0 0 0 0 0 0 0 +4.995 -6.836 -1.763 0 0 0 0 0 0 0 +5.013 -6.816 -1.762 0 0 0 0 0 0 0 +5.038 -6.805 -1.763 0 0 0 0 0 0 0 +5.04 -6.784 -1.76 0 0 0 0 0 0 0 +5.065 -6.775 -1.762 0 0 0 0 0 0 0 +5.087 -6.759 -1.762 0 0 0 0 0 0 0 +5.093 -6.722 -1.756 0 0 0 0 0 0 0 +5.128 -6.725 -1.761 0 0 0 0 0 0 0 +5.147 -6.706 -1.76 0 0 0 0 0 0 0 +5.17 -6.693 -1.761 0 0 0 0 0 0 0 +5.182 -6.664 -1.758 0 0 0 0 0 0 0 +5.192 -6.656 -1.758 0 0 0 0 0 0 0 +5.215 -6.643 -1.759 0 0 0 0 0 0 0 +5.231 -6.62 -1.757 0 0 0 0 0 0 0 +5.251 -6.602 -1.756 0 0 0 0 0 0 0 +5.273 -6.587 -1.757 0 0 0 0 0 0 0 +5.295 -6.572 -1.757 0 0 0 0 0 0 0 +5.305 -6.543 -1.754 0 0 0 0 0 0 0 +5.315 -6.533 -1.753 0 0 0 0 0 0 0 +5.335 -6.517 -1.753 0 0 0 0 0 0 0 +5.355 -6.5 -1.753 0 0 0 0 0 0 0 +5.381 -6.489 -1.755 0 0 0 0 0 0 0 +5.395 -6.465 -1.753 0 0 0 0 0 0 0 +5.414 -6.446 -1.753 0 0 0 0 0 0 0 +5.432 -6.426 -1.752 0 0 0 0 0 0 0 +5.446 -6.422 -1.753 0 0 0 0 0 0 0 +5.463 -6.402 -1.752 0 0 0 0 0 0 0 +5.485 -6.386 -1.753 0 0 0 0 0 0 0 +5.496 -6.358 -1.749 0 0 0 0 0 0 0 +5.514 -6.34 -1.749 0 0 0 0 0 0 0 +5.534 -6.322 -1.749 0 0 0 0 0 0 0 +5.545 -6.315 -1.749 0 0 0 0 0 0 0 +5.563 -6.295 -1.749 0 0 0 0 0 0 0 +5.591 -6.287 -1.752 0 0 0 0 0 0 0 +5.603 -6.261 -1.749 0 0 0 0 0 0 0 +5.619 -6.239 -1.748 0 0 0 0 0 0 0 +5.637 -6.22 -1.747 0 0 0 0 0 0 0 +5.661 -6.207 -1.749 0 0 0 0 0 0 0 +5.675 -6.183 -1.747 0 0 0 0 0 0 0 +5.693 -6.183 -1.749 0 0 0 0 0 0 0 +5.704 -6.156 -1.747 0 0 0 0 0 0 0 +5.723 -6.138 -1.747 0 0 0 0 0 0 0 +5.744 -6.122 -1.747 0 0 0 0 0 0 0 +5.759 -6.099 -1.746 0 0 0 0 0 0 0 +5.784 -6.087 -1.748 0 0 0 0 0 0 0 +5.804 -6.07 -1.748 0 0 0 0 0 0 0 +5.814 -6.061 -1.748 0 0 0 0 0 0 0 +5.822 -6.031 -1.745 0 0 0 0 0 0 0 +5.85 -6.023 -1.748 0 0 0 0 0 0 0 +5.861 -5.996 -1.745 0 0 0 0 0 0 0 +5.877 -5.975 -1.744 0 0 0 0 0 0 0 +5.9 -5.961 -1.746 0 0 0 0 0 0 0 +5.923 -5.946 -1.747 0 0 0 0 0 0 0 +5.918 -5.923 -1.743 0 0 0 0 0 0 0 +5.937 -5.904 -1.743 0 0 0 0 0 0 0 +5.958 -5.888 -1.743 0 0 0 0 0 0 0 +5.977 -5.87 -1.743 0 0 0 0 0 0 0 +5.991 -5.847 -1.742 0 0 0 0 0 0 0 +6.011 -5.829 -1.743 0 0 0 0 0 0 0 +6.025 -5.806 -1.741 0 0 0 0 0 0 0 +6.034 -5.797 -1.741 0 0 0 0 0 0 0 +6.045 -5.771 -1.739 0 0 0 0 0 0 0 +6.065 -5.753 -1.739 0 0 0 0 0 0 0 +6.081 -5.733 -1.739 0 0 0 0 0 0 0 +6.099 -5.714 -1.739 0 0 0 0 0 0 0 +6.113 -5.691 -1.738 0 0 0 0 0 0 0 +6.12 -5.68 -1.737 0 0 0 0 0 0 0 +6.135 -5.658 -1.736 0 0 0 0 0 0 0 +6.159 -5.644 -1.738 0 0 0 0 0 0 0 +6.174 -5.622 -1.737 0 0 0 0 0 0 0 +6.177 -5.589 -1.733 0 0 0 0 0 0 0 +6.206 -5.58 -1.736 0 0 0 0 0 0 0 +6.215 -5.553 -1.734 0 0 0 0 0 0 0 +6.239 -5.54 -1.736 0 0 0 0 0 0 0 +6.241 -5.524 -1.734 0 0 0 0 0 0 0 +6.257 -5.503 -1.733 0 0 0 0 0 0 0 +6.28 -5.488 -1.735 0 0 0 0 0 0 0 +6.282 -5.456 -1.731 0 0 0 0 0 0 0 +6.304 -5.44 -1.732 0 0 0 0 0 0 0 +6.327 -5.425 -1.734 0 0 0 0 0 0 0 +6.342 -5.404 -1.733 0 0 0 0 0 0 0 +6.345 -5.389 -1.732 0 0 0 0 0 0 0 +6.366 -5.372 -1.733 0 0 0 0 0 0 0 +6.383 -5.352 -1.733 0 0 0 0 0 0 0 +6.394 -5.327 -1.731 0 0 0 0 0 0 0 +6.418 -5.313 -1.733 0 0 0 0 0 0 0 +6.432 -5.291 -1.733 0 0 0 0 0 0 0 +6.447 -5.269 -1.732 0 0 0 0 0 0 0 +6.455 -5.259 -1.732 0 0 0 0 0 0 0 +6.468 -5.236 -1.731 0 0 0 0 0 0 0 +6.489 -5.22 -1.733 0 0 0 0 0 0 0 +6.507 -5.201 -1.733 0 0 0 0 0 0 0 +6.513 -5.172 -1.73 0 0 0 0 0 0 0 +6.535 -5.156 -1.732 0 0 0 0 0 0 0 +6.555 -5.138 -1.733 0 0 0 0 0 0 0 +6.552 -5.119 -1.729 0 0 0 0 0 0 0 +6.579 -5.107 -1.733 0 0 0 0 0 0 0 +6.589 -5.081 -1.731 0 0 0 0 0 0 0 +6.612 -5.067 -1.733 0 0 0 0 0 0 0 +6.625 -5.043 -1.732 0 0 0 0 0 0 0 +6.642 -5.024 -1.733 0 0 0 0 0 0 0 +6.653 -4.999 -1.731 0 0 0 0 0 0 0 +6.658 -4.987 -1.73 0 0 0 0 0 0 0 +6.675 -4.967 -1.731 0 0 0 0 0 0 0 +6.696 -4.949 -1.732 0 0 0 0 0 0 0 +6.711 -4.928 -1.732 0 0 0 0 0 0 0 +6.723 -4.905 -1.731 0 0 0 0 0 0 0 +6.736 -4.881 -1.73 0 0 0 0 0 0 0 +6.757 -4.865 -1.732 0 0 0 0 0 0 0 +6.766 -4.855 -1.733 0 0 0 0 0 0 0 +6.775 -4.829 -1.731 0 0 0 0 0 0 0 +6.784 -4.804 -1.729 0 0 0 0 0 0 0 +6.796 -4.78 -1.728 0 0 0 0 0 0 0 +6.824 -4.768 -1.732 0 0 0 0 0 0 0 +6.839 -4.746 -1.732 0 0 0 0 0 0 0 +6.847 -4.72 -1.73 0 0 0 0 0 0 0 +6.866 -4.717 -1.733 0 0 0 0 0 0 0 +6.873 -4.69 -1.731 0 0 0 0 0 0 0 +6.889 -4.67 -1.731 0 0 0 0 0 0 0 +6.905 -4.649 -1.732 0 0 0 0 0 0 0 +6.929 -4.634 -1.734 0 0 0 0 0 0 0 +6.936 -4.607 -1.732 0 0 0 0 0 0 0 +6.96 -4.591 -1.735 0 0 0 0 0 0 0 +6.961 -4.576 -1.733 0 0 0 0 0 0 0 +6.972 -4.552 -1.732 0 0 0 0 0 0 0 +6.994 -4.535 -1.734 0 0 0 0 0 0 0 +6.999 -4.507 -1.732 0 0 0 0 0 0 0 +7.021 -4.49 -1.734 0 0 0 0 0 0 0 +7.037 -4.469 -1.734 0 0 0 0 0 0 0 +7.044 -4.443 -1.733 0 0 0 0 0 0 0 +7.051 -4.432 -1.733 0 0 0 0 0 0 0 +7.07 -4.413 -1.734 0 0 0 0 0 0 0 +7.08 -4.389 -1.733 0 0 0 0 0 0 0 +7.089 -4.363 -1.732 0 0 0 0 0 0 0 +7.103 -4.341 -1.732 0 0 0 0 0 0 0 +7.118 -4.32 -1.732 0 0 0 0 0 0 0 +7.13 -4.296 -1.732 0 0 0 0 0 0 0 +7.135 -4.284 -1.731 0 0 0 0 0 0 0 +7.152 -4.264 -1.732 0 0 0 0 0 0 0 +7.16 -4.238 -1.731 0 0 0 0 0 0 0 +7.173 -4.216 -1.731 0 0 0 0 0 0 0 +7.19 -4.195 -1.732 0 0 0 0 0 0 0 +7.19 -4.164 -1.728 0 0 0 0 0 0 0 +7.215 -4.149 -1.731 0 0 0 0 0 0 0 +7.216 -4.134 -1.73 0 0 0 0 0 0 0 +7.231 -4.113 -1.73 0 0 0 0 0 0 0 +7.243 -4.09 -1.73 0 0 0 0 0 0 0 +7.268 -4.074 -1.733 0 0 0 0 0 0 0 +7.259 -4.039 -1.728 0 0 0 0 0 0 0 +7.28 -4.021 -1.73 0 0 0 0 0 0 0 +7.296 -4 -1.731 0 0 0 0 0 0 0 +7.302 -3.988 -1.731 0 0 0 0 0 0 0 +7.332 -3.975 -1.735 0 0 0 0 0 0 0 +7.338 -3.948 -1.733 0 0 0 0 0 0 0 +7.352 -3.926 -1.734 0 0 0 0 0 0 0 +7.359 -3.9 -1.733 0 0 0 0 0 0 0 +7.371 -3.877 -1.733 0 0 0 0 0 0 0 +7.402 -3.863 -1.737 0 0 0 0 0 0 0 +7.386 -3.84 -1.732 0 0 0 0 0 0 0 +7.418 -3.828 -1.737 0 0 0 0 0 0 0 +7.417 -3.797 -1.733 0 0 0 0 0 0 0 +7.43 -3.775 -1.734 0 0 0 0 0 0 0 +7.451 -3.756 -1.736 0 0 0 0 0 0 0 +7.45 -3.726 -1.733 0 0 0 0 0 0 0 +7.46 -3.702 -1.733 0 0 0 0 0 0 0 +7.475 -3.695 -1.735 0 0 0 0 0 0 0 +7.479 -3.668 -1.733 0 0 0 0 0 0 0 +7.496 -3.647 -1.734 0 0 0 0 0 0 0 +7.506 -3.622 -1.734 0 0 0 0 0 0 0 +7.524 -3.602 -1.736 0 0 0 0 0 0 0 +7.521 -3.572 -1.732 0 0 0 0 0 0 0 +7.536 -3.55 -1.733 0 0 0 0 0 0 0 +7.545 -3.539 -1.734 0 0 0 0 0 0 0 +7.549 -3.512 -1.732 0 0 0 0 0 0 0 +7.564 -3.49 -1.733 0 0 0 0 0 0 0 +7.575 -3.467 -1.733 0 0 0 0 0 0 0 +7.585 -3.443 -1.733 0 0 0 0 0 0 0 +7.587 -3.415 -1.731 0 0 0 0 0 0 0 +7.603 -3.393 -1.732 0 0 0 0 0 0 0 +7.603 -3.379 -1.731 0 0 0 0 0 0 0 +7.623 -3.359 -1.733 0 0 0 0 0 0 0 +7.626 -3.332 -1.731 0 0 0 0 0 0 0 +7.626 -3.303 -1.729 0 0 0 0 0 0 0 +7.647 -3.284 -1.731 0 0 0 0 0 0 0 +7.657 -3.26 -1.731 0 0 0 0 0 0 0 +7.678 -3.24 -1.734 0 0 0 0 0 0 0 +7.673 -3.224 -1.731 0 0 0 0 0 0 0 +7.688 -3.202 -1.733 0 0 0 0 0 0 0 +7.7 -3.179 -1.733 0 0 0 0 0 0 0 +7.71 -3.154 -1.733 0 0 0 0 0 0 0 +7.707 -3.125 -1.73 0 0 0 0 0 0 0 +7.735 -3.108 -1.734 0 0 0 0 0 0 0 +7.741 -3.082 -1.733 0 0 0 0 0 0 0 +7.749 -3.072 -1.734 0 0 0 0 0 0 0 +7.759 -3.047 -1.734 0 0 0 0 0 0 0 +7.76 -3.019 -1.732 0 0 0 0 0 0 0 +7.782 -3 -1.735 0 0 0 0 0 0 0 +7.778 -2.97 -1.732 0 0 0 0 0 0 0 +7.789 -2.947 -1.733 0 0 0 0 0 0 0 +7.817 -2.929 -1.737 0 0 0 0 0 0 0 +7.811 -2.913 -1.734 0 0 0 0 0 0 0 +7.827 -2.891 -1.736 0 0 0 0 0 0 0 +7.836 -2.866 -1.736 0 0 0 0 0 0 0 +7.852 -2.844 -1.738 0 0 0 0 0 0 0 +7.861 -2.82 -1.738 0 0 0 0 0 0 0 +7.866 -2.794 -1.737 0 0 0 0 0 0 0 +7.89 -2.774 -1.74 0 0 0 0 0 0 0 +7.889 -2.746 -1.738 0 0 0 0 0 0 0 +7.894 -2.734 -1.738 0 0 0 0 0 0 0 +7.904 -2.71 -1.739 0 0 0 0 0 0 0 +7.912 -2.685 -1.739 0 0 0 0 0 0 0 +7.919 -2.659 -1.738 0 0 0 0 0 0 0 +7.922 -2.632 -1.737 0 0 0 0 0 0 0 +7.943 -2.612 -1.74 0 0 0 0 0 0 0 +7.946 -2.585 -1.739 0 0 0 0 0 0 0 +7.953 -2.574 -1.739 0 0 0 0 0 0 0 +7.961 -2.549 -1.739 0 0 0 0 0 0 0 +7.971 -2.524 -1.74 0 0 0 0 0 0 0 +7.983 -2.5 -1.741 0 0 0 0 0 0 0 +7.983 -2.473 -1.739 0 0 0 0 0 0 0 +7.989 -2.447 -1.739 0 0 0 0 0 0 0 +8.006 -2.439 -1.742 0 0 0 0 0 0 0 +8.012 -2.413 -1.741 0 0 0 0 0 0 0 +8.029 -2.391 -1.743 0 0 0 0 0 0 0 +8.032 -2.364 -1.743 0 0 0 0 0 0 0 +8.036 -2.338 -1.742 0 0 0 0 0 0 0 +8.056 -2.317 -1.745 0 0 0 0 0 0 0 +8.062 -2.291 -1.744 0 0 0 0 0 0 0 +8.063 -2.264 -1.743 0 0 0 0 0 0 0 +8.072 -2.253 -1.744 0 0 0 0 0 0 0 +8.068 -2.224 -1.742 0 0 0 0 0 0 0 +8.088 -2.202 -1.745 0 0 0 0 0 0 0 +8.086 -2.174 -1.743 0 0 0 0 0 0 0 +8.338 -2.215 -1.799 0 0 0 0 0 0 0 +6.922 -1.811 -1.471 0 0 0 0 0 0 0 +8.098 -2.096 -1.741 0 0 0 0 0 0 0 +8.141 -2.094 -1.75 0 0 0 0 0 0 0 +8.138 -2.066 -1.748 0 0 0 0 0 0 0 +8.145 -2.04 -1.748 0 0 0 0 0 0 0 +8.182 -2.022 -1.755 0 0 0 0 0 0 0 +7.254 -1.766 -1.54 0 0 0 0 0 0 0 +7.166 -1.72 -1.519 0 0 0 0 0 0 0 +8.174 -1.939 -1.749 0 0 0 0 0 0 0 +7.478 -1.759 -1.589 0 0 0 0 0 0 0 +8.088 -1.878 -1.727 0 0 0 0 0 0 0 +7.46 -1.705 -1.582 0 0 0 0 0 0 0 +7.886 -1.778 -1.678 0 0 0 0 0 0 0 +8.233 -1.83 -1.756 0 0 0 0 0 0 0 +8.259 -1.809 -1.761 0 0 0 0 0 0 0 +8.246 -1.779 -1.756 0 0 0 0 0 0 0 +7.461 -1.595 -1.577 0 0 0 0 0 0 0 +8.264 -1.742 -1.759 0 0 0 0 0 0 0 +8.302 -1.723 -1.766 0 0 0 0 0 0 0 +8.288 -1.693 -1.762 0 0 0 0 0 0 0 +8.287 -1.666 -1.76 0 0 0 0 0 0 0 +8.285 -1.638 -1.759 0 0 0 0 0 0 0 +8.292 -1.612 -1.759 0 0 0 0 0 0 0 +8.298 -1.6 -1.76 0 0 0 0 0 0 0 +8.305 -1.574 -1.76 0 0 0 0 0 0 0 +8.31 -1.548 -1.76 0 0 0 0 0 0 0 +8.292 -1.518 -1.755 0 0 0 0 0 0 0 +8.324 -1.497 -1.761 0 0 0 0 0 0 0 +8.132 -1.435 -1.717 0 0 0 0 0 0 0 +8.002 -1.386 -1.686 0 0 0 0 0 0 0 +8.07 -1.385 -1.701 0 0 0 0 0 0 0 +8.266 -1.393 -1.745 0 0 0 0 0 0 0 +8.265 -1.366 -1.743 0 0 0 0 0 0 0 +8.225 -1.332 -1.733 0 0 0 0 0 0 0 +8.206 -1.303 -1.728 0 0 0 0 0 0 0 +8.225 -1.279 -1.732 0 0 0 0 0 0 0 +8.297 -1.264 -1.747 0 0 0 0 0 0 0 +8.307 -1.252 -1.749 0 0 0 0 0 0 0 +8.305 -1.225 -1.747 0 0 0 0 0 0 0 +8.312 -1.2 -1.748 0 0 0 0 0 0 0 +8.322 -1.174 -1.749 0 0 0 0 0 0 0 +8.314 -1.147 -1.747 0 0 0 0 0 0 0 +8.325 -1.122 -1.749 0 0 0 0 0 0 0 +8.317 -1.094 -1.746 0 0 0 0 0 0 0 +8.325 -1.082 -1.747 0 0 0 0 0 0 0 +8.33 -1.056 -1.748 0 0 0 0 0 0 0 +8.337 -1.03 -1.749 0 0 0 0 0 0 0 +8.331 -1.003 -1.746 0 0 0 0 0 0 0 +8.336 -0.977 -1.747 0 0 0 0 0 0 0 +8.333 -0.95 -1.746 0 0 0 0 0 0 0 +8.334 -0.923 -1.745 0 0 0 0 0 0 0 +8.339 -0.911 -1.746 0 0 0 0 0 0 0 +8.334 -0.884 -1.744 0 0 0 0 0 0 0 +8.337 -0.857 -1.744 0 0 0 0 0 0 0 +8.343 -0.832 -1.745 0 0 0 0 0 0 0 +8.329 -0.804 -1.741 0 0 0 0 0 0 0 +8.339 -0.778 -1.743 0 0 0 0 0 0 0 +8.341 -0.752 -1.743 0 0 0 0 0 0 0 +8.342 -0.739 -1.743 0 0 0 0 0 0 0 +8.345 -0.713 -1.743 0 0 0 0 0 0 0 +8.333 -0.685 -1.74 0 0 0 0 0 0 0 +8.337 -0.659 -1.74 0 0 0 0 0 0 0 +8.33 -0.632 -1.738 0 0 0 0 0 0 0 +8.345 -0.607 -1.741 0 0 0 0 0 0 0 +8.347 -0.581 -1.741 0 0 0 0 0 0 0 +8.342 -0.568 -1.74 0 0 0 0 0 0 0 +8.346 -0.541 -1.74 0 0 0 0 0 0 0 +8.346 -0.515 -1.74 0 0 0 0 0 0 0 +8.333 -0.488 -1.737 0 0 0 0 0 0 0 +8.347 -0.463 -1.739 0 0 0 0 0 0 0 +8.346 -0.436 -1.739 0 0 0 0 0 0 0 +8.34 -0.41 -1.737 0 0 0 0 0 0 0 +8.348 -0.397 -1.739 0 0 0 0 0 0 0 +8.343 -0.37 -1.738 0 0 0 0 0 0 0 +8.341 -0.344 -1.737 0 0 0 0 0 0 0 +8.346 -0.318 -1.738 0 0 0 0 0 0 0 +8.341 -0.292 -1.736 0 0 0 0 0 0 0 +8.33 -0.265 -1.734 0 0 0 0 0 0 0 +8.34 -0.239 -1.736 0 0 0 0 0 0 0 +8.339 -0.226 -1.736 0 0 0 0 0 0 0 +8.332 -0.199 -1.734 0 0 0 0 0 0 0 +8.332 -0.173 -1.734 0 0 0 0 0 0 0 +8.331 -0.147 -1.733 0 0 0 0 0 0 0 +8.325 -0.121 -1.732 0 0 0 0 0 0 0 +8.345 -0.095 -1.736 0 0 0 0 0 0 0 +8.326 -0.068 -1.732 0 0 0 0 0 0 0 +8.334 -0.055 -1.734 0 0 0 0 0 0 0 +8.322 -0.029 -1.731 0 0 0 0 0 0 0 +8.334 -0.003 -1.734 0 0 0 0 0 0 0 +8.011 0.014 -1.733 0 0 0 0 0 0 0 +8.003 0.039 -1.731 0 0 0 0 0 0 0 +7.999 0.064 -1.73 0 0 0 0 0 0 0 +8.001 0.089 -1.73 0 0 0 0 0 0 0 +8.001 0.114 -1.73 0 0 0 0 0 0 0 +7.995 0.127 -1.729 0 0 0 0 0 0 0 +7.992 0.152 -1.729 0 0 0 0 0 0 0 +7.99 0.177 -1.728 0 0 0 0 0 0 0 +7.995 0.202 -1.729 0 0 0 0 0 0 0 +7.99 0.227 -1.729 0 0 0 0 0 0 0 +7.997 0.253 -1.73 0 0 0 0 0 0 0 +7.993 0.278 -1.729 0 0 0 0 0 0 0 +7.994 0.29 -1.73 0 0 0 0 0 0 0 +7.997 0.316 -1.731 0 0 0 0 0 0 0 +7.988 0.34 -1.729 0 0 0 0 0 0 0 +7.983 0.365 -1.728 0 0 0 0 0 0 0 +7.988 0.391 -1.729 0 0 0 0 0 0 0 +7.971 0.415 -1.726 0 0 0 0 0 0 0 +7.972 0.44 -1.726 0 0 0 0 0 0 0 +7.965 0.452 -1.725 0 0 0 0 0 0 0 +7.95 0.476 -1.722 0 0 0 0 0 0 0 +7.96 0.502 -1.725 0 0 0 0 0 0 0 +7.949 0.526 -1.722 0 0 0 0 0 0 0 +7.945 0.551 -1.722 0 0 0 0 0 0 0 +7.94 0.576 -1.721 0 0 0 0 0 0 0 +7.959 0.603 -1.726 0 0 0 0 0 0 0 +7.937 0.613 -1.721 0 0 0 0 0 0 0 +7.937 0.638 -1.721 0 0 0 0 0 0 0 +7.939 0.664 -1.722 0 0 0 0 0 0 0 +7.937 0.689 -1.722 0 0 0 0 0 0 0 +7.927 0.713 -1.72 0 0 0 0 0 0 0 +7.918 0.737 -1.719 0 0 0 0 0 0 0 +7.916 0.762 -1.719 0 0 0 0 0 0 0 +7.905 0.773 -1.717 0 0 0 0 0 0 0 +7.901 0.798 -1.716 0 0 0 0 0 0 0 +7.902 0.823 -1.717 0 0 0 0 0 0 0 +7.896 0.848 -1.716 0 0 0 0 0 0 0 +7.899 0.873 -1.718 0 0 0 0 0 0 0 +7.886 0.897 -1.715 0 0 0 0 0 0 0 +7.874 0.92 -1.713 0 0 0 0 0 0 0 +7.878 0.934 -1.715 0 0 0 0 0 0 0 +7.883 0.959 -1.716 0 0 0 0 0 0 0 +7.874 0.983 -1.715 0 0 0 0 0 0 0 +7.859 1.006 -1.712 0 0 0 0 0 0 0 +7.858 1.031 -1.713 0 0 0 0 0 0 0 +7.851 1.056 -1.712 0 0 0 0 0 0 0 +7.848 1.08 -1.712 0 0 0 0 0 0 0 +7.85 1.093 -1.713 0 0 0 0 0 0 0 +7.842 1.117 -1.712 0 0 0 0 0 0 0 +7.843 1.142 -1.713 0 0 0 0 0 0 0 +7.833 1.166 -1.711 0 0 0 0 0 0 0 +7.845 1.193 -1.715 0 0 0 0 0 0 0 +7.83 1.216 -1.712 0 0 0 0 0 0 0 +7.832 1.241 -1.714 0 0 0 0 0 0 0 +7.843 1.256 -1.717 0 0 0 0 0 0 0 +7.816 1.277 -1.711 0 0 0 0 0 0 0 +7.789 1.297 -1.706 0 0 0 0 0 0 0 +7.794 1.324 -1.708 0 0 0 0 0 0 0 +7.781 1.346 -1.706 0 0 0 0 0 0 0 +7.772 1.37 -1.705 0 0 0 0 0 0 0 +7.78 1.397 -1.708 0 0 0 0 0 0 0 +7.783 1.41 -1.709 0 0 0 0 0 0 0 +7.763 1.431 -1.706 0 0 0 0 0 0 0 +7.765 1.457 -1.707 0 0 0 0 0 0 0 +7.747 1.479 -1.704 0 0 0 0 0 0 0 +7.75 1.505 -1.706 0 0 0 0 0 0 0 +7.741 1.528 -1.705 0 0 0 0 0 0 0 +7.748 1.555 -1.707 0 0 0 0 0 0 0 +7.728 1.563 -1.703 0 0 0 0 0 0 0 +7.74 1.591 -1.707 0 0 0 0 0 0 0 +7.72 1.612 -1.704 0 0 0 0 0 0 0 +7.734 1.641 -1.708 0 0 0 0 0 0 0 +7.717 1.662 -1.706 0 0 0 0 0 0 0 +7.725 1.69 -1.709 0 0 0 0 0 0 0 +7.71 1.712 -1.706 0 0 0 0 0 0 0 +7.715 1.726 -1.708 0 0 0 0 0 0 0 +7.717 1.752 -1.71 0 0 0 0 0 0 0 +7.702 1.774 -1.708 0 0 0 0 0 0 0 +7.704 1.8 -1.71 0 0 0 0 0 0 0 +7.687 1.821 -1.707 0 0 0 0 0 0 0 +7.682 1.845 -1.707 0 0 0 0 0 0 0 +7.691 1.873 -1.711 0 0 0 0 0 0 0 +7.677 1.882 -1.708 0 0 0 0 0 0 0 +7.673 1.907 -1.708 0 0 0 0 0 0 0 +7.674 1.933 -1.71 0 0 0 0 0 0 0 +7.674 1.958 -1.711 0 0 0 0 0 0 0 +7.666 1.982 -1.711 0 0 0 0 0 0 0 +7.671 2.009 -1.714 0 0 0 0 0 0 0 +7.649 2.029 -1.71 0 0 0 0 0 0 0 +7.652 2.056 -1.712 0 0 0 0 0 0 0 +7.668 2.073 -1.717 0 0 0 0 0 0 0 +7.648 2.093 -1.714 0 0 0 0 0 0 0 +7.632 2.115 -1.711 0 0 0 0 0 0 0 +7.627 2.139 -1.712 0 0 0 0 0 0 0 +7.624 2.164 -1.713 0 0 0 0 0 0 0 +7.625 2.19 -1.715 0 0 0 0 0 0 0 +7.625 2.203 -1.715 0 0 0 0 0 0 0 +7.618 2.227 -1.715 0 0 0 0 0 0 0 +7.613 2.252 -1.716 0 0 0 0 0 0 0 +7.602 2.275 -1.715 0 0 0 0 0 0 0 +7.589 2.297 -1.714 0 0 0 0 0 0 0 +7.59 2.323 -1.715 0 0 0 0 0 0 0 +7.588 2.349 -1.717 0 0 0 0 0 0 0 +7.586 2.361 -1.717 0 0 0 0 0 0 0 +7.579 2.385 -1.717 0 0 0 0 0 0 0 +7.571 2.409 -1.717 0 0 0 0 0 0 0 +7.567 2.434 -1.718 0 0 0 0 0 0 0 +7.565 2.459 -1.72 0 0 0 0 0 0 0 +7.552 2.481 -1.718 0 0 0 0 0 0 0 +7.549 2.507 -1.72 0 0 0 0 0 0 0 +7.538 2.516 -1.718 0 0 0 0 0 0 0 +7.536 2.542 -1.719 0 0 0 0 0 0 0 +7.528 2.565 -1.719 0 0 0 0 0 0 0 +7.523 2.59 -1.72 0 0 0 0 0 0 0 +7.517 2.614 -1.72 0 0 0 0 0 0 0 +7.527 2.645 -1.725 0 0 0 0 0 0 0 +7.5 2.662 -1.72 0 0 0 0 0 0 0 +7.488 2.684 -1.72 0 0 0 0 0 0 0 +7.493 2.699 -1.722 0 0 0 0 0 0 0 +7.485 2.723 -1.722 0 0 0 0 0 0 0 +7.482 2.748 -1.723 0 0 0 0 0 0 0 +7.487 2.777 -1.727 0 0 0 0 0 0 0 +7.462 2.794 -1.723 0 0 0 0 0 0 0 +7.47 2.824 -1.727 0 0 0 0 0 0 0 +7.454 2.845 -1.725 0 0 0 0 0 0 0 +7.451 2.857 -1.725 0 0 0 0 0 0 0 +7.44 2.88 -1.725 0 0 0 0 0 0 0 +7.446 2.909 -1.729 0 0 0 0 0 0 0 +7.422 2.926 -1.725 0 0 0 0 0 0 0 +7.413 2.95 -1.725 0 0 0 0 0 0 0 +7.403 2.973 -1.725 0 0 0 0 0 0 0 +7.392 2.982 -1.723 0 0 0 0 0 0 0 +7.397 3.011 -1.727 0 0 0 0 0 0 0 +7.391 3.036 -1.728 0 0 0 0 0 0 0 +7.374 3.056 -1.726 0 0 0 0 0 0 0 +7.362 3.078 -1.725 0 0 0 0 0 0 0 +7.356 3.103 -1.726 0 0 0 0 0 0 0 +7.352 3.128 -1.728 0 0 0 0 0 0 0 +7.351 3.141 -1.729 0 0 0 0 0 0 0 +7.344 3.166 -1.729 0 0 0 0 0 0 0 +7.324 3.184 -1.727 0 0 0 0 0 0 0 +7.315 3.208 -1.727 0 0 0 0 0 0 0 +7.291 3.225 -1.724 0 0 0 0 0 0 0 +7.297 3.255 -1.728 0 0 0 0 0 0 0 +7.278 3.274 -1.725 0 0 0 0 0 0 0 +7.287 3.291 -1.729 0 0 0 0 0 0 0 +7.269 3.311 -1.727 0 0 0 0 0 0 0 +7.269 3.339 -1.73 0 0 0 0 0 0 0 +7.264 3.364 -1.731 0 0 0 0 0 0 0 +7.254 3.387 -1.731 0 0 0 0 0 0 0 +7.238 3.407 -1.73 0 0 0 0 0 0 0 +7.218 3.426 -1.728 0 0 0 0 0 0 0 +7.22 3.44 -1.729 0 0 0 0 0 0 0 +7.212 3.465 -1.73 0 0 0 0 0 0 0 +7.201 3.487 -1.73 0 0 0 0 0 0 0 +7.182 3.506 -1.728 0 0 0 0 0 0 0 +7.179 3.533 -1.73 0 0 0 0 0 0 0 +7.166 3.554 -1.73 0 0 0 0 0 0 0 +7.167 3.583 -1.733 0 0 0 0 0 0 0 +7.157 3.592 -1.732 0 0 0 0 0 0 0 +7.144 3.613 -1.731 0 0 0 0 0 0 0 +7.125 3.632 -1.729 0 0 0 0 0 0 0 +7.136 3.666 -1.735 0 0 0 0 0 0 0 +7.107 3.679 -1.731 0 0 0 0 0 0 0 +7.108 3.708 -1.734 0 0 0 0 0 0 0 +7.098 3.731 -1.734 0 0 0 0 0 0 0 +7.079 3.75 -1.733 0 0 0 0 0 0 0 +7.073 3.761 -1.733 0 0 0 0 0 0 0 +7.063 3.784 -1.733 0 0 0 0 0 0 0 +7.057 3.809 -1.734 0 0 0 0 0 0 0 +7.039 3.828 -1.733 0 0 0 0 0 0 0 +7.029 3.851 -1.734 0 0 0 0 0 0 0 +7.017 3.874 -1.734 0 0 0 0 0 0 0 +6.998 3.892 -1.732 0 0 0 0 0 0 0 +6.997 3.906 -1.733 0 0 0 0 0 0 0 +6.985 3.928 -1.733 0 0 0 0 0 0 0 +6.972 3.949 -1.733 0 0 0 0 0 0 0 +6.977 3.981 -1.738 0 0 0 0 0 0 0 +6.956 3.998 -1.735 0 0 0 0 0 0 0 +6.955 4.027 -1.738 0 0 0 0 0 0 0 +6.955 4.042 -1.74 0 0 0 0 0 0 0 +6.937 4.061 -1.739 0 0 0 0 0 0 0 +6.952 4.098 -1.746 0 0 0 0 0 0 0 +6.932 4.116 -1.744 0 0 0 0 0 0 0 +6.914 4.135 -1.743 0 0 0 0 0 0 0 +6.879 4.143 -1.737 0 0 0 0 0 0 0 +6.868 4.166 -1.738 0 0 0 0 0 0 0 +6.856 4.174 -1.736 0 0 0 0 0 0 0 +6.842 4.194 -1.736 0 0 0 0 0 0 0 +6.842 4.224 -1.739 0 0 0 0 0 0 0 +6.81 4.234 -1.734 0 0 0 0 0 0 0 +6.797 4.255 -1.734 0 0 0 0 0 0 0 +6.767 4.266 -1.73 0 0 0 0 0 0 0 +6.768 4.297 -1.734 0 0 0 0 0 0 0 +6.747 4.298 -1.73 0 0 0 0 0 0 0 +6.735 4.32 -1.73 0 0 0 0 0 0 0 +6.729 4.347 -1.733 0 0 0 0 0 0 0 +6.706 4.361 -1.73 0 0 0 0 0 0 0 +6.692 4.382 -1.73 0 0 0 0 0 0 0 +6.674 4.4 -1.729 0 0 0 0 0 0 0 +6.66 4.421 -1.729 0 0 0 0 0 0 0 +6.642 4.44 -1.728 0 0 0 0 0 0 0 +6.658 4.466 -1.734 0 0 0 0 0 0 0 +6.623 4.472 -1.728 0 0 0 0 0 0 0 +6.607 4.492 -1.728 0 0 0 0 0 0 0 +6.619 4.53 -1.735 0 0 0 0 0 0 0 +6.589 4.54 -1.73 0 0 0 0 0 0 0 +6.576 4.562 -1.731 0 0 0 0 0 0 0 +6.582 4.597 -1.737 0 0 0 0 0 0 0 +6.562 4.598 -1.733 0 0 0 0 0 0 0 +6.565 4.631 -1.738 0 0 0 0 0 0 0 +6.552 4.653 -1.738 0 0 0 0 0 0 0 +6.527 4.666 -1.735 0 0 0 0 0 0 0 +6.521 4.693 -1.738 0 0 0 0 0 0 0 +6.515 4.719 -1.74 0 0 0 0 0 0 0 +6.498 4.739 -1.74 0 0 0 0 0 0 0 +6.489 4.748 -1.739 0 0 0 0 0 0 0 +6.491 4.781 -1.744 0 0 0 0 0 0 0 +6.472 4.798 -1.743 0 0 0 0 0 0 0 +6.466 4.825 -1.746 0 0 0 0 0 0 0 +6.463 4.855 -1.749 0 0 0 0 0 0 0 +6.44 4.869 -1.747 0 0 0 0 0 0 0 +6.423 4.888 -1.747 0 0 0 0 0 0 0 +6.425 4.905 -1.749 0 0 0 0 0 0 0 +6.408 4.924 -1.749 0 0 0 0 0 0 0 +6.401 4.952 -1.752 0 0 0 0 0 0 0 +6.392 4.976 -1.753 0 0 0 0 0 0 0 +6.366 4.988 -1.75 0 0 0 0 0 0 0 +6.368 5.023 -1.756 0 0 0 0 0 0 0 +6.348 5.039 -1.754 0 0 0 0 0 0 0 +6.345 5.052 -1.756 0 0 0 0 0 0 0 +6.341 5.082 -1.759 0 0 0 0 0 0 0 +6.328 5.105 -1.76 0 0 0 0 0 0 0 +6.304 5.118 -1.758 0 0 0 0 0 0 0 +6.297 5.145 -1.761 0 0 0 0 0 0 0 +6.275 5.16 -1.759 0 0 0 0 0 0 0 +6.262 5.182 -1.76 0 0 0 0 0 0 0 +6.262 5.2 -1.762 0 0 0 0 0 0 0 +6.239 5.213 -1.76 0 0 0 0 0 0 0 +6.225 5.235 -1.761 0 0 0 0 0 0 0 +6.213 5.259 -1.762 0 0 0 0 0 0 0 +6.201 5.282 -1.764 0 0 0 0 0 0 0 +6.179 5.296 -1.762 0 0 0 0 0 0 0 +6.171 5.323 -1.765 0 0 0 0 0 0 0 +6.159 5.33 -1.764 0 0 0 0 0 0 0 +6.143 5.35 -1.764 0 0 0 0 0 0 0 +6.133 5.375 -1.766 0 0 0 0 0 0 0 +6.118 5.396 -1.766 0 0 0 0 0 0 0 +6.096 5.411 -1.765 0 0 0 0 0 0 0 +6.091 5.441 -1.769 0 0 0 0 0 0 0 +6.08 5.465 -1.771 0 0 0 0 0 0 0 +6.067 5.471 -1.769 0 0 0 0 0 0 0 +6.048 5.488 -1.769 0 0 0 0 0 0 0 +6.031 5.507 -1.769 0 0 0 0 0 0 0 +6.031 5.542 -1.774 0 0 0 0 0 0 0 +6.016 5.564 -1.775 0 0 0 0 0 0 0 +5.99 5.575 -1.772 0 0 0 0 0 0 0 +5.979 5.6 -1.775 0 0 0 0 0 0 0 +5.972 5.611 -1.775 0 0 0 0 0 0 0 +5.954 5.63 -1.775 0 0 0 0 0 0 0 +5.948 5.659 -1.779 0 0 0 0 0 0 0 +5.93 5.678 -1.779 0 0 0 0 0 0 0 +5.915 5.699 -1.78 0 0 0 0 0 0 0 +5.907 5.727 -1.783 0 0 0 0 0 0 0 +5.887 5.744 -1.782 0 0 0 0 0 0 0 +5.887 5.762 -1.785 0 0 0 0 0 0 0 +5.873 5.784 -1.786 0 0 0 0 0 0 0 +5.878 5.826 -1.794 0 0 0 0 0 0 0 +5.875 5.86 -1.799 0 0 0 0 0 0 0 +5.866 5.888 -1.802 0 0 0 0 0 0 0 +5.865 5.924 -1.808 0 0 0 0 0 0 0 +5.851 5.947 -1.809 0 0 0 0 0 0 0 +5.825 5.958 -1.807 0 0 0 0 0 0 0 +5.817 5.969 -1.808 0 0 0 0 0 0 0 +5.802 5.991 -1.809 0 0 0 0 0 0 0 +5.776 6.001 -1.806 0 0 0 0 0 0 0 +5.762 6.025 -1.808 0 0 0 0 0 0 0 +5.742 6.041 -1.808 0 0 0 0 0 0 0 +5.705 6.041 -1.802 0 0 0 0 0 0 0 +5.678 6.05 -1.799 0 0 0 0 0 0 0 +5.66 6.049 -1.796 0 0 0 0 0 0 0 +5.634 6.06 -1.794 0 0 0 0 0 0 0 +5.62 6.083 -1.795 0 0 0 0 0 0 0 +5.593 6.092 -1.793 0 0 0 0 0 0 0 +5.565 6.1 -1.789 0 0 0 0 0 0 0 +5.552 6.124 -1.792 0 0 0 0 0 0 0 +5.532 6.121 -1.788 0 0 0 0 0 0 0 +5.518 6.145 -1.79 0 0 0 0 0 0 0 +5.496 6.159 -1.789 0 0 0 0 0 0 0 +5.466 6.165 -1.785 0 0 0 0 0 0 0 +5.45 6.185 -1.786 0 0 0 0 0 0 0 +5.43 6.202 -1.786 0 0 0 0 0 0 0 +5.417 6.226 -1.789 0 0 0 0 0 0 0 +5.401 6.227 -1.786 0 0 0 0 0 0 0 +5.37 6.231 -1.782 0 0 0 0 0 0 0 +5.357 6.255 -1.785 0 0 0 0 0 0 0 +5.331 6.264 -1.782 0 0 0 0 0 0 0 +5.308 6.278 -1.781 0 0 0 0 0 0 0 +5.294 6.301 -1.783 0 0 0 0 0 0 0 +5.27 6.313 -1.782 0 0 0 0 0 0 0 +5.248 6.326 -1.781 0 0 0 0 0 0 0 +5.237 6.333 -1.78 0 0 0 0 0 0 0 +5.215 6.348 -1.78 0 0 0 0 0 0 0 +5.198 6.367 -1.781 0 0 0 0 0 0 0 +5.179 6.385 -1.781 0 0 0 0 0 0 0 +5.158 6.4 -1.781 0 0 0 0 0 0 0 +5.135 6.413 -1.78 0 0 0 0 0 0 0 +5.117 6.432 -1.781 0 0 0 0 0 0 0 +5.106 6.439 -1.78 0 0 0 0 0 0 0 +5.093 6.464 -1.783 0 0 0 0 0 0 0 +5.081 6.491 -1.786 0 0 0 0 0 0 0 +5.051 6.494 -1.783 0 0 0 0 0 0 0 +5.026 6.504 -1.781 0 0 0 0 0 0 0 +5.007 6.521 -1.781 0 0 0 0 0 0 0 +4.984 6.534 -1.78 0 0 0 0 0 0 0 +4.968 6.556 -1.782 0 0 0 0 0 0 0 +4.957 6.562 -1.782 0 0 0 0 0 0 0 +4.938 6.581 -1.783 0 0 0 0 0 0 0 +4.914 6.591 -1.781 0 0 0 0 0 0 0 +4.891 6.604 -1.78 0 0 0 0 0 0 0 +4.874 6.624 -1.782 0 0 0 0 0 0 0 +4.86 6.648 -1.785 0 0 0 0 0 0 0 +4.852 6.659 -1.785 0 0 0 0 0 0 0 +4.828 6.671 -1.785 0 0 0 0 0 0 0 +4.81 6.69 -1.785 0 0 0 0 0 0 0 +4.793 6.711 -1.787 0 0 0 0 0 0 0 +4.765 6.716 -1.785 0 0 0 0 0 0 0 +4.746 6.735 -1.785 0 0 0 0 0 0 0 +4.734 6.762 -1.789 0 0 0 0 0 0 0 +4.707 6.769 -1.787 0 0 0 0 0 0 0 +4.694 6.773 -1.786 0 0 0 0 0 0 0 +4.676 6.793 -1.787 0 0 0 0 0 0 0 +4.652 6.803 -1.786 0 0 0 0 0 0 0 +4.634 6.822 -1.787 0 0 0 0 0 0 0 +4.609 6.832 -1.786 0 0 0 0 0 0 0 +4.591 6.851 -1.787 0 0 0 0 0 0 0 +4.57 6.867 -1.788 0 0 0 0 0 0 0 +4.561 6.876 -1.788 0 0 0 0 0 0 0 +4.542 6.895 -1.789 0 0 0 0 0 0 0 +4.517 6.904 -1.788 0 0 0 0 0 0 0 +4.504 6.932 -1.792 0 0 0 0 0 0 0 +4.472 6.929 -1.787 0 0 0 0 0 0 0 +4.453 6.948 -1.789 0 0 0 0 0 0 0 +4.432 6.964 -1.789 0 0 0 0 0 0 0 +4.413 6.958 -1.785 0 0 0 0 0 0 0 +4.409 7 -1.793 0 0 0 0 0 0 0 +4.373 6.992 -1.787 0 0 0 0 0 0 0 +4.344 6.994 -1.784 0 0 0 0 0 0 0 +4.313 6.993 -1.78 0 0 0 0 0 0 0 +4.288 7.001 -1.779 0 0 0 0 0 0 0 +4.263 7.01 -1.777 0 0 0 0 0 0 0 +4.254 7.02 -1.778 0 0 0 0 0 0 0 +4.228 7.026 -1.776 0 0 0 0 0 0 0 +4.201 7.031 -1.774 0 0 0 0 0 0 0 +4.173 7.034 -1.771 0 0 0 0 0 0 0 +4.153 7.051 -1.772 0 0 0 0 0 0 0 +4.135 7.072 -1.775 0 0 0 0 0 0 0 +4.124 7.104 -1.78 0 0 0 0 0 0 0 +4.107 7.1 -1.777 0 0 0 0 0 0 0 +4.088 7.12 -1.779 0 0 0 0 0 0 0 +4.069 7.137 -1.78 0 0 0 0 0 0 0 +4.044 7.147 -1.779 0 0 0 0 0 0 0 +4.018 7.153 -1.777 0 0 0 0 0 0 0 +3.993 7.16 -1.776 0 0 0 0 0 0 0 +3.971 7.174 -1.776 0 0 0 0 0 0 0 +3.948 7.185 -1.776 0 0 0 0 0 0 0 +3.938 7.195 -1.777 0 0 0 0 0 0 0 +3.908 7.193 -1.773 0 0 0 0 0 0 0 +3.882 7.199 -1.771 0 0 0 0 0 0 0 +3.862 7.216 -1.773 0 0 0 0 0 0 0 +3.834 7.218 -1.77 0 0 0 0 0 0 0 +3.813 7.233 -1.771 0 0 0 0 0 0 0 +3.794 7.252 -1.773 0 0 0 0 0 0 0 +3.781 7.255 -1.772 0 0 0 0 0 0 0 +3.753 7.256 -1.769 0 0 0 0 0 0 0 +3.728 7.264 -1.768 0 0 0 0 0 0 0 +3.706 7.278 -1.769 0 0 0 0 0 0 0 +3.681 7.286 -1.768 0 0 0 0 0 0 0 +3.668 7.317 -1.773 0 0 0 0 0 0 0 +3.646 7.33 -1.773 0 0 0 0 0 0 0 +3.625 7.316 -1.768 0 0 0 0 0 0 0 +3.605 7.335 -1.77 0 0 0 0 0 0 0 +3.589 7.36 -1.774 0 0 0 0 0 0 0 +3.561 7.361 -1.771 0 0 0 0 0 0 0 +3.539 7.375 -1.772 0 0 0 0 0 0 0 +3.53 7.415 -1.779 0 0 0 0 0 0 0 +3.495 7.401 -1.773 0 0 0 0 0 0 0 +3.484 7.408 -1.773 0 0 0 0 0 0 0 +3.473 7.446 -1.78 0 0 0 0 0 0 0 +3.441 7.437 -1.775 0 0 0 0 0 0 0 +3.42 7.453 -1.776 0 0 0 0 0 0 0 +3.4 7.473 -1.779 0 0 0 0 0 0 0 +3.37 7.469 -1.775 0 0 0 0 0 0 0 +3.349 7.485 -1.776 0 0 0 0 0 0 0 +3.34 7.496 -1.778 0 0 0 0 0 0 0 +3.311 7.494 -1.775 0 0 0 0 0 0 0 +3.289 7.508 -1.776 0 0 0 0 0 0 0 +3.272 7.534 -1.78 0 0 0 0 0 0 0 +3.241 7.526 -1.775 0 0 0 0 0 0 0 +3.218 7.538 -1.776 0 0 0 0 0 0 0 +3.196 7.554 -1.777 0 0 0 0 0 0 0 +3.17 7.556 -1.775 0 0 0 0 0 0 0 +3.157 7.56 -1.775 0 0 0 0 0 0 0 +3.138 7.582 -1.778 0 0 0 0 0 0 0 +3.104 7.567 -1.771 0 0 0 0 0 0 0 +3.078 7.571 -1.77 0 0 0 0 0 0 0 +3.06 7.593 -1.773 0 0 0 0 0 0 0 +3.028 7.583 -1.768 0 0 0 0 0 0 0 +3.006 7.598 -1.77 0 0 0 0 0 0 0 +2.996 7.606 -1.771 0 0 0 0 0 0 0 +2.963 7.594 -1.765 0 0 0 0 0 0 0 +2.937 7.596 -1.763 0 0 0 0 0 0 0 +2.918 7.62 -1.767 0 0 0 0 0 0 0 +2.892 7.621 -1.765 0 0 0 0 0 0 0 +2.864 7.619 -1.762 0 0 0 0 0 0 0 +2.845 7.643 -1.766 0 0 0 0 0 0 0 +2.823 7.62 -1.759 0 0 0 0 0 0 0 +2.798 7.627 -1.759 0 0 0 0 0 0 0 +2.775 7.638 -1.759 0 0 0 0 0 0 0 +2.75 7.643 -1.758 0 0 0 0 0 0 0 +2.726 7.653 -1.759 0 0 0 0 0 0 0 +2.702 7.66 -1.758 0 0 0 0 0 0 0 +2.673 7.655 -1.755 0 0 0 0 0 0 0 +2.663 7.665 -1.757 0 0 0 0 0 0 0 +2.641 7.681 -1.758 0 0 0 0 0 0 0 +2.608 7.663 -1.752 0 0 0 0 0 0 0 +2.591 7.692 -1.757 0 0 0 0 0 0 0 +2.565 7.692 -1.755 0 0 0 0 0 0 0 +2.537 7.689 -1.752 0 0 0 0 0 0 0 +2.511 7.693 -1.752 0 0 0 0 0 0 0 +2.485 7.696 -1.75 0 0 0 0 0 0 0 +2.478 7.715 -1.754 0 0 0 0 0 0 0 +2.453 7.719 -1.753 0 0 0 0 0 0 0 +2.424 7.713 -1.75 0 0 0 0 0 0 0 +2.4 7.719 -1.749 0 0 0 0 0 0 0 +2.378 7.734 -1.751 0 0 0 0 0 0 0 +2.351 7.734 -1.749 0 0 0 0 0 0 0 +2.326 7.739 -1.749 0 0 0 0 0 0 0 +2.317 7.754 -1.752 0 0 0 0 0 0 0 +2.197 7.432 -1.672 0 0 0 0 0 0 0 +2.14 7.323 -1.644 0 0 0 0 0 0 0 +2.116 7.326 -1.643 0 0 0 0 0 0 0 +2.09 7.321 -1.641 0 0 0 0 0 0 0 +2.067 7.33 -1.641 0 0 0 0 0 0 0 +2.045 7.338 -1.641 0 0 0 0 0 0 0 +2.03 7.328 -1.638 0 0 0 0 0 0 0 +2.003 7.321 -1.635 0 0 0 0 0 0 0 +1.978 7.32 -1.633 0 0 0 0 0 0 0 +1.944 7.283 -1.623 0 0 0 0 0 0 0 +1.902 7.215 -1.605 0 0 0 0 0 0 0 +1.888 7.257 -1.614 0 0 0 0 0 0 0 +1.882 7.329 -1.63 0 0 0 0 0 0 0 +1.818 7.122 -1.58 0 0 0 0 0 0 0 +1.738 6.895 -1.524 0 0 0 0 0 0 0 +1.718 6.908 -1.526 0 0 0 0 0 0 0 +1.759 7.175 -1.588 0 0 0 0 0 0 0 +1.767 7.308 -1.618 0 0 0 0 0 0 0 +1.715 7.19 -1.589 0 0 0 0 0 0 0 +1.718 7.307 -1.616 0 0 0 0 0 0 0 +1.702 7.343 -1.623 0 0 0 0 0 0 0 +0.729 3.144 -0.625 0 0 0 0 0 0 0 +1.695 7.367 -1.628 0 0 0 0 0 0 0 +0.717 3.139 -0.623 0 0 0 0 0 0 0 +0.708 3.147 -0.624 0 0 0 0 0 0 0 +0.701 3.161 -0.627 0 0 0 0 0 0 0 +0.694 3.176 -0.63 0 0 0 0 0 0 0 +0.683 3.175 -0.629 0 0 0 0 0 0 0 +0.684 3.202 -0.636 0 0 0 0 0 0 0 +0.68 3.237 -0.643 0 0 0 0 0 0 0 +0.654 3.157 -0.624 0 0 0 0 0 0 0 +0.632 3.098 -0.609 0 0 0 0 0 0 0 +0.601 2.993 -0.584 0 0 0 0 0 0 0 +0.593 2.998 -0.585 0 0 0 0 0 0 0 +0.584 3.004 -0.586 0 0 0 0 0 0 0 +0.58 3.011 -0.587 0 0 0 0 0 0 0 +0.569 3.005 -0.585 0 0 0 0 0 0 0 +0.559 3.003 -0.585 0 0 0 0 0 0 0 +0.551 3.008 -0.585 0 0 0 0 0 0 0 +0.54 3.006 -0.585 0 0 0 0 0 0 0 +0.533 3.017 -0.587 0 0 0 0 0 0 0 +0.522 3.01 -0.585 0 0 0 0 0 0 0 +0.518 3.016 -0.586 0 0 0 0 0 0 0 +0.507 3.01 -0.584 0 0 0 0 0 0 0 +0.498 3.014 -0.585 0 0 0 0 0 0 0 +0.49 3.025 -0.587 0 0 0 0 0 0 0 +0.48 3.024 -0.586 0 0 0 0 0 0 0 +0.47 3.022 -0.585 0 0 0 0 0 0 0 +0.461 3.023 -0.585 0 0 0 0 0 0 0 +0.455 3.02 -0.585 0 0 0 0 0 0 0 +0.446 3.022 -0.585 0 0 0 0 0 0 0 +0.436 3.019 -0.584 0 0 0 0 0 0 0 +0.427 3.024 -0.585 0 0 0 0 0 0 0 +0.419 3.039 -0.588 0 0 0 0 0 0 0 +0.408 3.033 -0.586 0 0 0 0 0 0 0 +0.399 3.036 -0.586 0 0 0 0 0 0 0 +0.389 3.033 -0.585 0 0 0 0 0 0 0 +0.384 3.032 -0.585 0 0 0 0 0 0 0 +0.375 3.035 -0.585 0 0 0 0 0 0 0 +0.366 3.042 -0.587 0 0 0 0 0 0 0 +0.357 3.045 -0.587 0 0 0 0 0 0 0 +0.346 3.033 -0.584 0 0 0 0 0 0 0 +0.337 3.042 -0.586 0 0 0 0 0 0 0 +0.327 3.041 -0.585 0 0 0 0 0 0 0 +0.323 3.043 -0.586 0 0 0 0 0 0 0 +0.313 3.044 -0.586 0 0 0 0 0 0 0 +0.304 3.051 -0.587 0 0 0 0 0 0 0 +0.294 3.046 -0.586 0 0 0 0 0 0 0 +0.284 3.039 -0.584 0 0 0 0 0 0 0 +0.275 3.05 -0.586 0 0 0 0 0 0 0 +0.265 3.051 -0.586 0 0 0 0 0 0 0 +0.261 3.051 -0.586 0 0 0 0 0 0 0 +0.251 3.058 -0.588 0 0 0 0 0 0 0 +0.241 3.055 -0.587 0 0 0 0 0 0 0 +0.232 3.055 -0.587 0 0 0 0 0 0 0 +0.223 3.06 -0.588 0 0 0 0 0 0 0 +0.213 3.059 -0.587 0 0 0 0 0 0 0 +0.203 3.061 -0.588 0 0 0 0 0 0 0 +0.194 3.07 -0.589 0 0 0 0 0 0 0 +0.189 3.07 -0.589 0 0 0 0 0 0 0 +0.18 3.073 -0.59 0 0 0 0 0 0 0 +0.17 3.071 -0.589 0 0 0 0 0 0 0 +0.16 3.07 -0.589 0 0 0 0 0 0 0 +0.151 3.072 -0.589 0 0 0 0 0 0 0 +0.141 3.076 -0.59 0 0 0 0 0 0 0 +0.132 3.079 -0.591 0 0 0 0 0 0 0 +0.127 3.081 -0.591 0 0 0 0 0 0 0 +0.117 3.081 -0.591 0 0 0 0 0 0 0 +0.107 3.08 -0.591 0 0 0 0 0 0 0 +0.098 3.08 -0.591 0 0 0 0 0 0 0 +0.091 3.203 -0.619 0 0 0 0 0 0 0 +0.082 3.274 -0.636 0 0 0 0 0 0 0 +0.071 3.28 -0.637 0 0 0 0 0 0 0 +0.066 3.274 -0.636 0 0 0 0 0 0 0 +0.056 3.255 -0.631 0 0 0 0 0 0 0 +0.046 3.263 -0.633 0 0 0 0 0 0 0 +0.035 3.257 -0.631 0 0 0 0 0 0 0 +0.024 7.964 -1.722 0 0 0 0 0 0 0 +-0.001 7.976 -1.725 0 0 0 0 0 0 0 +-0.026 7.996 -1.729 0 0 0 0 0 0 0 +-0.039 7.995 -1.729 0 0 0 0 0 0 0 +-0.064 8.003 -1.731 0 0 0 0 0 0 0 +-0.09 8.026 -1.736 0 0 0 0 0 0 0 +-0.115 8.022 -1.735 0 0 0 0 0 0 0 +-0.14 8.041 -1.74 0 0 0 0 0 0 0 +-0.166 8.05 -1.742 0 0 0 0 0 0 0 +-0.191 8.06 -1.744 0 0 0 0 0 0 0 +-0.204 8.071 -1.747 0 0 0 0 0 0 0 +-0.23 8.062 -1.745 0 0 0 0 0 0 0 +-0.255 8.064 -1.746 0 0 0 0 0 0 0 +-0.281 8.08 -1.75 0 0 0 0 0 0 0 +-0.126 3.436 -0.673 0 0 0 0 0 0 0 +-0.309 8.14 -1.764 0 0 0 0 0 0 0 +-0.36 8.136 -1.763 0 0 0 0 0 0 0 +-0.406 8.29 -1.799 0 0 0 0 0 0 0 +-0.429 8.224 -1.785 0 0 0 0 0 0 0 +-0.451 8.16 -1.77 0 0 0 0 0 0 0 +-0.475 8.13 -1.763 0 0 0 0 0 0 0 +-0.5 8.119 -1.761 0 0 0 0 0 0 0 +-0.525 8.119 -1.762 0 0 0 0 0 0 0 +-0.549 8.084 -1.754 0 0 0 0 0 0 0 +-0.561 8.085 -1.754 0 0 0 0 0 0 0 +-0.586 8.078 -1.753 0 0 0 0 0 0 0 +-0.611 8.064 -1.75 0 0 0 0 0 0 0 +-0.637 8.07 -1.752 0 0 0 0 0 0 0 +-0.663 8.079 -1.755 0 0 0 0 0 0 0 +-0.687 8.06 -1.751 0 0 0 0 0 0 0 +-0.712 8.052 -1.749 0 0 0 0 0 0 0 +-0.727 8.076 -1.755 0 0 0 0 0 0 0 +-0.75 8.056 -1.751 0 0 0 0 0 0 0 +-0.776 8.062 -1.753 0 0 0 0 0 0 0 +-0.803 8.071 -1.756 0 0 0 0 0 0 0 +-0.825 8.039 -1.749 0 0 0 0 0 0 0 +-0.851 8.04 -1.75 0 0 0 0 0 0 0 +-0.879 8.059 -1.755 0 0 0 0 0 0 0 +-0.889 8.04 -1.751 0 0 0 0 0 0 0 +-0.915 8.041 -1.752 0 0 0 0 0 0 0 +-0.943 8.058 -1.756 0 0 0 0 0 0 0 +-0.965 8.033 -1.751 0 0 0 0 0 0 0 +-0.991 8.032 -1.752 0 0 0 0 0 0 0 +-1.019 8.05 -1.757 0 0 0 0 0 0 0 +-1.043 8.039 -1.755 0 0 0 0 0 0 0 +-1.054 8.024 -1.752 0 0 0 0 0 0 0 +-1.081 8.038 -1.756 0 0 0 0 0 0 0 +-1.104 8.019 -1.752 0 0 0 0 0 0 0 +-1.129 8.014 -1.752 0 0 0 0 0 0 0 +-1.157 8.024 -1.755 0 0 0 0 0 0 0 +-1.18 8.008 -1.752 0 0 0 0 0 0 0 +-1.206 8.009 -1.753 0 0 0 0 0 0 0 +-1.233 8.02 -1.757 0 0 0 0 0 0 0 +-1.244 8.007 -1.754 0 0 0 0 0 0 0 +-1.271 8.014 -1.757 0 0 0 0 0 0 0 +-1.297 8.016 -1.758 0 0 0 0 0 0 0 +-1.319 7.995 -1.754 0 0 0 0 0 0 0 +-1.346 8 -1.756 0 0 0 0 0 0 0 +-1.373 8.005 -1.758 0 0 0 0 0 0 0 +-1.396 7.988 -1.755 0 0 0 0 0 0 0 +-1.408 7.982 -1.754 0 0 0 0 0 0 0 +-1.435 7.989 -1.757 0 0 0 0 0 0 0 +-1.46 7.986 -1.757 0 0 0 0 0 0 0 +-1.484 7.972 -1.755 0 0 0 0 0 0 0 +-1.511 7.978 -1.758 0 0 0 0 0 0 0 +-1.532 7.953 -1.753 0 0 0 0 0 0 0 +-1.557 7.95 -1.753 0 0 0 0 0 0 0 +-1.574 7.968 -1.758 0 0 0 0 0 0 0 +-1.596 7.95 -1.755 0 0 0 0 0 0 0 +-1.62 7.941 -1.754 0 0 0 0 0 0 0 +-1.647 7.945 -1.757 0 0 0 0 0 0 0 +-1.669 7.925 -1.753 0 0 0 0 0 0 0 +-1.695 7.927 -1.755 0 0 0 0 0 0 0 +-1.725 7.943 -1.76 0 0 0 0 0 0 0 +-1.731 7.912 -1.753 0 0 0 0 0 0 0 +-1.763 7.939 -1.761 0 0 0 0 0 0 0 +-1.809 8.024 -1.782 0 0 0 0 0 0 0 +-1.839 8.041 -1.788 0 0 0 0 0 0 0 +-1.856 7.997 -1.779 0 0 0 0 0 0 0 +-1.877 7.974 -1.775 0 0 0 0 0 0 0 +-1.906 7.986 -1.779 0 0 0 0 0 0 0 +-1.931 7.98 -1.779 0 0 0 0 0 0 0 +-1.944 7.978 -1.779 0 0 0 0 0 0 0 +-1.954 7.91 -1.764 0 0 0 0 0 0 0 +-1.974 7.887 -1.76 0 0 0 0 0 0 0 +-2.001 7.888 -1.762 0 0 0 0 0 0 0 +-2.02 7.859 -1.757 0 0 0 0 0 0 0 +-2.046 7.86 -1.758 0 0 0 0 0 0 0 +-2.076 7.873 -1.763 0 0 0 0 0 0 0 +-2.082 7.845 -1.757 0 0 0 0 0 0 0 +-2.107 7.84 -1.757 0 0 0 0 0 0 0 +-2.137 7.854 -1.762 0 0 0 0 0 0 0 +-2.159 7.838 -1.76 0 0 0 0 0 0 0 +-2.183 7.829 -1.76 0 0 0 0 0 0 0 +-2.212 7.836 -1.763 0 0 0 0 0 0 0 +-2.233 7.815 -1.76 0 0 0 0 0 0 0 +-2.242 7.803 -1.757 0 0 0 0 0 0 0 +-2.274 7.82 -1.763 0 0 0 0 0 0 0 +-2.295 7.801 -1.761 0 0 0 0 0 0 0 +-2.323 7.805 -1.763 0 0 0 0 0 0 0 +-2.35 7.805 -1.765 0 0 0 0 0 0 0 +-2.37 7.783 -1.762 0 0 0 0 0 0 0 +-2.396 7.781 -1.763 0 0 0 0 0 0 0 +-2.411 7.787 -1.765 0 0 0 0 0 0 0 +-2.431 7.766 -1.762 0 0 0 0 0 0 0 +-2.461 7.775 -1.766 0 0 0 0 0 0 0 +-2.484 7.764 -1.765 0 0 0 0 0 0 0 +-2.505 7.747 -1.763 0 0 0 0 0 0 0 +-2.535 7.753 -1.766 0 0 0 0 0 0 0 +-2.557 7.74 -1.765 0 0 0 0 0 0 0 +-2.581 7.73 -1.765 0 0 0 0 0 0 0 +-2.596 7.735 -1.767 0 0 0 0 0 0 0 +-2.623 7.734 -1.769 0 0 0 0 0 0 0 +-2.645 7.719 -1.767 0 0 0 0 0 0 0 +-2.673 7.721 -1.77 0 0 0 0 0 0 0 +-2.698 7.715 -1.77 0 0 0 0 0 0 0 +-2.724 7.712 -1.771 0 0 0 0 0 0 0 +-2.749 7.705 -1.772 0 0 0 0 0 0 0 +-2.763 7.708 -1.774 0 0 0 0 0 0 0 +-2.782 7.685 -1.77 0 0 0 0 0 0 0 +-2.812 7.691 -1.774 0 0 0 0 0 0 0 +-2.835 7.678 -1.773 0 0 0 0 0 0 0 +-2.857 7.665 -1.772 0 0 0 0 0 0 0 +-2.887 7.671 -1.776 0 0 0 0 0 0 0 +-2.91 7.658 -1.775 0 0 0 0 0 0 0 +-2.922 7.654 -1.775 0 0 0 0 0 0 0 +-2.946 7.644 -1.775 0 0 0 0 0 0 0 +-2.975 7.648 -1.778 0 0 0 0 0 0 0 +-3.005 7.655 -1.782 0 0 0 0 0 0 0 +-3.023 7.629 -1.778 0 0 0 0 0 0 0 +-3.048 7.623 -1.779 0 0 0 0 0 0 0 +-3.068 7.604 -1.776 0 0 0 0 0 0 0 +-3.089 7.621 -1.782 0 0 0 0 0 0 0 +-3.108 7.599 -1.779 0 0 0 0 0 0 0 +-3.136 7.6 -1.781 0 0 0 0 0 0 0 +-3.156 7.581 -1.779 0 0 0 0 0 0 0 +-3.181 7.573 -1.78 0 0 0 0 0 0 0 +-3.209 7.574 -1.782 0 0 0 0 0 0 0 +-3.235 7.569 -1.784 0 0 0 0 0 0 0 +-3.265 7.573 -1.787 0 0 0 0 0 0 0 +-3.28 7.573 -1.789 0 0 0 0 0 0 0 +-3.309 7.575 -1.792 0 0 0 0 0 0 0 +-3.341 7.584 -1.797 0 0 0 0 0 0 0 +-3.373 7.592 -1.801 0 0 0 0 0 0 0 +-3.431 7.657 -1.821 0 0 0 0 0 0 0 +-3.455 7.647 -1.821 0 0 0 0 0 0 0 +-3.462 7.597 -1.811 0 0 0 0 0 0 0 +-3.466 7.575 -1.807 0 0 0 0 0 0 0 +-3.522 7.633 -1.824 0 0 0 0 0 0 0 +-3.549 7.629 -1.826 0 0 0 0 0 0 0 +-3.557 7.585 -1.817 0 0 0 0 0 0 0 +-3.574 7.558 -1.813 0 0 0 0 0 0 0 +-3.588 7.527 -1.808 0 0 0 0 0 0 0 +-3.613 7.517 -1.809 0 0 0 0 0 0 0 +-3.629 7.492 -1.805 0 0 0 0 0 0 0 +-3.635 7.474 -1.802 0 0 0 0 0 0 0 +-3.646 7.438 -1.796 0 0 0 0 0 0 0 +-3.657 7.401 -1.789 0 0 0 0 0 0 0 +-3.678 7.386 -1.788 0 0 0 0 0 0 0 +-3.702 7.376 -1.789 0 0 0 0 0 0 0 +-3.724 7.361 -1.788 0 0 0 0 0 0 0 +-3.74 7.335 -1.784 0 0 0 0 0 0 0 +-3.752 7.331 -1.785 0 0 0 0 0 0 0 +-3.774 7.317 -1.784 0 0 0 0 0 0 0 +-3.798 7.307 -1.785 0 0 0 0 0 0 0 +-3.824 7.3 -1.786 0 0 0 0 0 0 0 +-3.841 7.278 -1.783 0 0 0 0 0 0 0 +-3.865 7.268 -1.784 0 0 0 0 0 0 0 +-3.889 7.257 -1.784 0 0 0 0 0 0 0 +-3.898 7.248 -1.783 0 0 0 0 0 0 0 +-3.916 7.227 -1.781 0 0 0 0 0 0 0 +-3.947 7.23 -1.785 0 0 0 0 0 0 0 +-3.972 7.221 -1.786 0 0 0 0 0 0 0 +-3.992 7.203 -1.785 0 0 0 0 0 0 0 +-4.01 7.182 -1.782 0 0 0 0 0 0 0 +-4.036 7.176 -1.784 0 0 0 0 0 0 0 +-4.046 7.168 -1.784 0 0 0 0 0 0 0 +-4.068 7.154 -1.783 0 0 0 0 0 0 0 +-4.089 7.139 -1.783 0 0 0 0 0 0 0 +-4.11 7.123 -1.782 0 0 0 0 0 0 0 +-4.131 7.108 -1.781 0 0 0 0 0 0 0 +-4.157 7.1 -1.783 0 0 0 0 0 0 0 +-4.178 7.086 -1.782 0 0 0 0 0 0 0 +-4.2 7.072 -1.782 0 0 0 0 0 0 0 +-4.217 7.076 -1.785 0 0 0 0 0 0 0 +-4.231 7.049 -1.781 0 0 0 0 0 0 0 +-4.254 7.037 -1.782 0 0 0 0 0 0 0 +-4.282 7.032 -1.784 0 0 0 0 0 0 0 +-4.302 7.016 -1.783 0 0 0 0 0 0 0 +-4.327 7.007 -1.785 0 0 0 0 0 0 0 +-4.351 6.997 -1.785 0 0 0 0 0 0 0 +-4.359 6.985 -1.784 0 0 0 0 0 0 0 +-4.383 6.974 -1.785 0 0 0 0 0 0 0 +-4.412 6.972 -1.788 0 0 0 0 0 0 0 +-4.433 6.957 -1.788 0 0 0 0 0 0 0 +-4.455 6.943 -1.788 0 0 0 0 0 0 0 +-4.48 6.934 -1.789 0 0 0 0 0 0 0 +-4.497 6.913 -1.787 0 0 0 0 0 0 0 +-4.515 6.917 -1.79 0 0 0 0 0 0 0 +-4.53 6.892 -1.787 0 0 0 0 0 0 0 +-4.556 6.884 -1.789 0 0 0 0 0 0 0 +-4.58 6.874 -1.79 0 0 0 0 0 0 0 +-4.606 6.866 -1.792 0 0 0 0 0 0 0 +-4.618 6.837 -1.788 0 0 0 0 0 0 0 +-4.646 6.833 -1.791 0 0 0 0 0 0 0 +-4.661 6.832 -1.793 0 0 0 0 0 0 0 +-4.674 6.804 -1.789 0 0 0 0 0 0 0 +-4.695 6.789 -1.789 0 0 0 0 0 0 0 +-4.726 6.789 -1.793 0 0 0 0 0 0 0 +-4.728 6.745 -1.785 0 0 0 0 0 0 0 +-4.744 6.724 -1.783 0 0 0 0 0 0 0 +-4.773 6.72 -1.786 0 0 0 0 0 0 0 +-4.779 6.707 -1.785 0 0 0 0 0 0 0 +-4.813 6.709 -1.789 0 0 0 0 0 0 0 +-4.832 6.691 -1.789 0 0 0 0 0 0 0 +-4.848 6.669 -1.787 0 0 0 0 0 0 0 +-4.878 6.666 -1.79 0 0 0 0 0 0 0 +-4.898 6.649 -1.79 0 0 0 0 0 0 0 +-4.919 6.634 -1.79 0 0 0 0 0 0 0 +-4.943 6.623 -1.791 0 0 0 0 0 0 0 +-4.961 6.625 -1.794 0 0 0 0 0 0 0 +-5.02 6.66 -1.809 0 0 0 0 0 0 0 +-5.048 6.654 -1.812 0 0 0 0 0 0 0 +-5.064 6.632 -1.81 0 0 0 0 0 0 0 +-5.074 6.602 -1.806 0 0 0 0 0 0 0 +-5.101 6.594 -1.808 0 0 0 0 0 0 0 +-5.133 6.591 -1.812 0 0 0 0 0 0 0 +-5.137 6.576 -1.81 0 0 0 0 0 0 0 +-5.148 6.547 -1.806 0 0 0 0 0 0 0 +-5.159 6.519 -1.803 0 0 0 0 0 0 0 +-5.179 6.503 -1.803 0 0 0 0 0 0 0 +-5.202 6.489 -1.803 0 0 0 0 0 0 0 +-5.219 6.468 -1.802 0 0 0 0 0 0 0 +-5.228 6.438 -1.798 0 0 0 0 0 0 0 +-5.238 6.43 -1.798 0 0 0 0 0 0 0 +-5.256 6.411 -1.797 0 0 0 0 0 0 0 +-5.268 6.385 -1.794 0 0 0 0 0 0 0 +-5.286 6.366 -1.794 0 0 0 0 0 0 0 +-5.298 6.34 -1.791 0 0 0 0 0 0 0 +-5.326 6.332 -1.794 0 0 0 0 0 0 0 +-5.333 6.301 -1.789 0 0 0 0 0 0 0 +-5.323 6.269 -1.782 0 0 0 0 0 0 0 +-5.345 6.255 -1.783 0 0 0 0 0 0 0 +-5.365 6.238 -1.783 0 0 0 0 0 0 0 +-5.383 6.22 -1.782 0 0 0 0 0 0 0 +-5.402 6.203 -1.782 0 0 0 0 0 0 0 +-5.427 6.192 -1.784 0 0 0 0 0 0 0 +-5.448 6.176 -1.785 0 0 0 0 0 0 0 +-5.444 6.153 -1.78 0 0 0 0 0 0 0 +-5.464 6.136 -1.78 0 0 0 0 0 0 0 +-5.492 6.129 -1.783 0 0 0 0 0 0 0 +-5.502 6.101 -1.78 0 0 0 0 0 0 0 +-5.525 6.088 -1.781 0 0 0 0 0 0 0 +-5.544 6.071 -1.781 0 0 0 0 0 0 0 +-5.566 6.056 -1.782 0 0 0 0 0 0 0 +-5.584 6.037 -1.782 0 0 0 0 0 0 0 +-5.585 6.02 -1.779 0 0 0 0 0 0 0 +-5.601 6 -1.778 0 0 0 0 0 0 0 +-5.619 5.981 -1.778 0 0 0 0 0 0 0 +-5.639 5.964 -1.778 0 0 0 0 0 0 0 +-5.654 5.942 -1.777 0 0 0 0 0 0 0 +-5.674 5.926 -1.777 0 0 0 0 0 0 0 +-5.69 5.905 -1.776 0 0 0 0 0 0 0 +-5.696 5.894 -1.776 0 0 0 0 0 0 0 +-5.706 5.867 -1.773 0 0 0 0 0 0 0 +-5.723 5.848 -1.772 0 0 0 0 0 0 0 +-5.734 5.822 -1.77 0 0 0 0 0 0 0 +-5.749 5.801 -1.769 0 0 0 0 0 0 0 +-5.771 5.787 -1.77 0 0 0 0 0 0 0 +-5.781 5.76 -1.767 0 0 0 0 0 0 0 +-5.776 5.738 -1.763 0 0 0 0 0 0 0 +-5.783 5.709 -1.759 0 0 0 0 0 0 0 +-5.801 5.69 -1.759 0 0 0 0 0 0 0 +-5.813 5.667 -1.757 0 0 0 0 0 0 0 +-5.81 5.628 -1.751 0 0 0 0 0 0 0 +-5.822 5.604 -1.749 0 0 0 0 0 0 0 +-5.837 5.583 -1.748 0 0 0 0 0 0 0 +-5.839 5.568 -1.746 0 0 0 0 0 0 0 +-5.852 5.545 -1.744 0 0 0 0 0 0 0 +-5.864 5.521 -1.743 0 0 0 0 0 0 0 +-5.888 5.51 -1.745 0 0 0 0 0 0 0 +-5.9 5.486 -1.743 0 0 0 0 0 0 0 +-5.915 5.466 -1.743 0 0 0 0 0 0 0 +-5.932 5.447 -1.743 0 0 0 0 0 0 0 +-5.948 5.427 -1.742 0 0 0 0 0 0 0 +-5.952 5.414 -1.741 0 0 0 0 0 0 0 +-5.969 5.395 -1.741 0 0 0 0 0 0 0 +-5.982 5.373 -1.739 0 0 0 0 0 0 0 +-5.999 5.354 -1.739 0 0 0 0 0 0 0 +-6.007 5.327 -1.737 0 0 0 0 0 0 0 +-6.017 5.303 -1.735 0 0 0 0 0 0 0 +-6.047 5.296 -1.739 0 0 0 0 0 0 0 +-6.05 5.281 -1.737 0 0 0 0 0 0 0 +-6.075 5.27 -1.74 0 0 0 0 0 0 0 +-6.09 5.249 -1.739 0 0 0 0 0 0 0 +-6.113 5.235 -1.741 0 0 0 0 0 0 0 +-6.123 5.211 -1.739 0 0 0 0 0 0 0 +-6.145 5.197 -1.741 0 0 0 0 0 0 0 +-6.159 5.175 -1.74 0 0 0 0 0 0 0 +-6.171 5.169 -1.742 0 0 0 0 0 0 0 +-6.194 5.155 -1.743 0 0 0 0 0 0 0 +-6.211 5.136 -1.744 0 0 0 0 0 0 0 +-6.232 5.121 -1.745 0 0 0 0 0 0 0 +-6.243 5.097 -1.744 0 0 0 0 0 0 0 +-6.258 5.076 -1.743 0 0 0 0 0 0 0 +-6.284 5.065 -1.747 0 0 0 0 0 0 0 +-6.292 5.055 -1.747 0 0 0 0 0 0 0 +-6.32 5.045 -1.75 0 0 0 0 0 0 0 +-6.316 5.01 -1.744 0 0 0 0 0 0 0 +-6.338 4.995 -1.746 0 0 0 0 0 0 0 +-6.348 4.97 -1.744 0 0 0 0 0 0 0 +-6.368 4.954 -1.746 0 0 0 0 0 0 0 +-6.383 4.933 -1.746 0 0 0 0 0 0 0 +-6.399 4.929 -1.748 0 0 0 0 0 0 0 +-6.414 4.909 -1.748 0 0 0 0 0 0 0 +-6.438 4.895 -1.75 0 0 0 0 0 0 0 +-6.451 4.874 -1.75 0 0 0 0 0 0 0 +-6.467 4.853 -1.75 0 0 0 0 0 0 0 +-6.477 4.829 -1.748 0 0 0 0 0 0 0 +-6.495 4.811 -1.749 0 0 0 0 0 0 0 +-6.505 4.802 -1.75 0 0 0 0 0 0 0 +-6.523 4.784 -1.751 0 0 0 0 0 0 0 +-6.53 4.758 -1.748 0 0 0 0 0 0 0 +-6.546 4.738 -1.749 0 0 0 0 0 0 0 +-6.558 4.716 -1.748 0 0 0 0 0 0 0 +-6.563 4.688 -1.745 0 0 0 0 0 0 0 +-6.586 4.673 -1.748 0 0 0 0 0 0 0 +-6.597 4.65 -1.747 0 0 0 0 0 0 0 +-6.605 4.64 -1.747 0 0 0 0 0 0 0 +-6.594 4.601 -1.739 0 0 0 0 0 0 0 +-6.619 4.588 -1.743 0 0 0 0 0 0 0 +-6.635 4.569 -1.743 0 0 0 0 0 0 0 +-6.648 4.547 -1.743 0 0 0 0 0 0 0 +-6.664 4.527 -1.743 0 0 0 0 0 0 0 +-6.667 4.498 -1.74 0 0 0 0 0 0 0 +-6.67 4.486 -1.739 0 0 0 0 0 0 0 +-6.688 4.467 -1.74 0 0 0 0 0 0 0 +-6.689 4.437 -1.736 0 0 0 0 0 0 0 +-6.711 4.422 -1.738 0 0 0 0 0 0 0 +-6.717 4.395 -1.736 0 0 0 0 0 0 0 +-6.735 4.377 -1.738 0 0 0 0 0 0 0 +-6.751 4.357 -1.738 0 0 0 0 0 0 0 +-6.759 4.347 -1.738 0 0 0 0 0 0 0 +-6.774 4.327 -1.739 0 0 0 0 0 0 0 +-6.783 4.303 -1.738 0 0 0 0 0 0 0 +-6.815 4.293 -1.743 0 0 0 0 0 0 0 +-6.825 4.269 -1.742 0 0 0 0 0 0 0 +-6.83 4.243 -1.739 0 0 0 0 0 0 0 +-6.835 4.216 -1.737 0 0 0 0 0 0 0 +-6.845 4.208 -1.738 0 0 0 0 0 0 0 +-6.858 4.186 -1.738 0 0 0 0 0 0 0 +-6.863 4.159 -1.736 0 0 0 0 0 0 0 +-6.891 4.147 -1.74 0 0 0 0 0 0 0 +-6.89 4.117 -1.736 0 0 0 0 0 0 0 +-6.92 4.105 -1.741 0 0 0 0 0 0 0 +-6.913 4.072 -1.735 0 0 0 0 0 0 0 +-6.879 4.037 -1.725 0 0 0 0 0 0 0 +-6.88 4.009 -1.721 0 0 0 0 0 0 0 +-6.924 4.006 -1.73 0 0 0 0 0 0 0 +-6.944 3.988 -1.732 0 0 0 0 0 0 0 +-6.965 3.971 -1.734 0 0 0 0 0 0 0 +-6.991 3.957 -1.738 0 0 0 0 0 0 0 +-6.983 3.923 -1.732 0 0 0 0 0 0 0 +-6.995 3.901 -1.732 0 0 0 0 0 0 0 +-7.006 3.893 -1.734 0 0 0 0 0 0 0 +-6.994 3.858 -1.727 0 0 0 0 0 0 0 +-7 3.832 -1.725 0 0 0 0 0 0 0 +-7 3.804 -1.722 0 0 0 0 0 0 0 +-7.008 3.78 -1.721 0 0 0 0 0 0 0 +-7.023 3.76 -1.722 0 0 0 0 0 0 0 +-7.042 3.741 -1.724 0 0 0 0 0 0 0 +-7.043 3.728 -1.723 0 0 0 0 0 0 0 +-7.07 3.713 -1.727 0 0 0 0 0 0 0 +-7.076 3.689 -1.725 0 0 0 0 0 0 0 +-7.105 3.675 -1.73 0 0 0 0 0 0 0 +-7.091 3.64 -1.723 0 0 0 0 0 0 0 +-7.128 3.631 -1.73 0 0 0 0 0 0 0 +-7.141 3.609 -1.73 0 0 0 0 0 0 0 +-7.138 3.593 -1.728 0 0 0 0 0 0 0 +-7.144 3.568 -1.727 0 0 0 0 0 0 0 +-7.159 3.548 -1.728 0 0 0 0 0 0 0 +-7.158 3.519 -1.725 0 0 0 0 0 0 0 +-7.172 3.498 -1.725 0 0 0 0 0 0 0 +-7.18 3.474 -1.725 0 0 0 0 0 0 0 +-7.198 3.455 -1.726 0 0 0 0 0 0 0 +-7.198 3.441 -1.725 0 0 0 0 0 0 0 +-7.203 3.416 -1.724 0 0 0 0 0 0 0 +-7.223 3.397 -1.726 0 0 0 0 0 0 0 +-7.232 3.374 -1.725 0 0 0 0 0 0 0 +-7.239 3.35 -1.725 0 0 0 0 0 0 0 +-7.242 3.324 -1.723 0 0 0 0 0 0 0 +-7.268 3.308 -1.727 0 0 0 0 0 0 0 +-7.265 3.293 -1.725 0 0 0 0 0 0 0 +-7.272 3.268 -1.724 0 0 0 0 0 0 0 +-7.289 3.248 -1.725 0 0 0 0 0 0 0 +-7.269 3.212 -1.718 0 0 0 0 0 0 0 +-7.297 3.197 -1.722 0 0 0 0 0 0 0 +-7.305 3.173 -1.722 0 0 0 0 0 0 0 +-7.349 3.165 -1.73 0 0 0 0 0 0 0 +-7.377 3.163 -1.736 0 0 0 0 0 0 0 +-7.396 3.144 -1.738 0 0 0 0 0 0 0 +-7.422 3.127 -1.743 0 0 0 0 0 0 0 +-7.441 3.108 -1.745 0 0 0 0 0 0 0 +-7.463 3.09 -1.748 0 0 0 0 0 0 0 +-7.494 3.075 -1.753 0 0 0 0 0 0 0 +-7.531 3.062 -1.76 0 0 0 0 0 0 0 +-7.554 3.058 -1.765 0 0 0 0 0 0 0 +-7.575 3.038 -1.767 0 0 0 0 0 0 0 +-7.586 3.015 -1.768 0 0 0 0 0 0 0 +-7.603 2.994 -1.77 0 0 0 0 0 0 0 +-7.601 2.966 -1.767 0 0 0 0 0 0 0 +-7.61 2.942 -1.767 0 0 0 0 0 0 0 +-7.598 2.91 -1.762 0 0 0 0 0 0 0 +-7.608 2.9 -1.763 0 0 0 0 0 0 0 +-7.589 2.866 -1.756 0 0 0 0 0 0 0 +-7.613 2.848 -1.76 0 0 0 0 0 0 0 +-7.622 2.824 -1.76 0 0 0 0 0 0 0 +-7.631 2.8 -1.76 0 0 0 0 0 0 0 +-7.641 2.776 -1.76 0 0 0 0 0 0 0 +-7.654 2.754 -1.761 0 0 0 0 0 0 0 +-7.652 2.74 -1.76 0 0 0 0 0 0 0 +-7.672 2.719 -1.762 0 0 0 0 0 0 0 +-7.69 2.699 -1.765 0 0 0 0 0 0 0 +-7.687 2.671 -1.762 0 0 0 0 0 0 0 +-7.705 2.65 -1.764 0 0 0 0 0 0 0 +-7.717 2.627 -1.765 0 0 0 0 0 0 0 +-7.729 2.604 -1.766 0 0 0 0 0 0 0 +-7.752 2.584 -1.77 0 0 0 0 0 0 0 +-7.748 2.569 -1.768 0 0 0 0 0 0 0 +-7.756 2.545 -1.768 0 0 0 0 0 0 0 +-7.772 2.523 -1.77 0 0 0 0 0 0 0 +-7.768 2.495 -1.767 0 0 0 0 0 0 0 +-7.787 2.474 -1.77 0 0 0 0 0 0 0 +-7.799 2.451 -1.771 0 0 0 0 0 0 0 +-7.806 2.426 -1.771 0 0 0 0 0 0 0 +-7.803 2.412 -1.769 0 0 0 0 0 0 0 +-7.818 2.39 -1.771 0 0 0 0 0 0 0 +-7.827 2.366 -1.771 0 0 0 0 0 0 0 +-7.827 2.339 -1.769 0 0 0 0 0 0 0 +-7.859 2.321 -1.775 0 0 0 0 0 0 0 +-7.843 2.29 -1.77 0 0 0 0 0 0 0 +-7.869 2.271 -1.774 0 0 0 0 0 0 0 +-7.873 2.245 -1.773 0 0 0 0 0 0 0 +-7.865 2.229 -1.771 0 0 0 0 0 0 0 +-7.883 2.208 -1.773 0 0 0 0 0 0 0 +-7.907 2.188 -1.777 0 0 0 0 0 0 0 +-7.891 2.157 -1.772 0 0 0 0 0 0 0 +-7.906 2.134 -1.774 0 0 0 0 0 0 0 +-7.925 2.113 -1.777 0 0 0 0 0 0 0 +-7.915 2.083 -1.773 0 0 0 0 0 0 0 +-7.931 2.074 -1.776 0 0 0 0 0 0 0 +-7.945 2.051 -1.778 0 0 0 0 0 0 0 +-7.929 2.021 -1.772 0 0 0 0 0 0 0 +-7.953 2 -1.776 0 0 0 0 0 0 0 +-7.947 1.972 -1.774 0 0 0 0 0 0 0 +-7.584 1.858 -1.686 0 0 0 0 0 0 0 +-7.112 1.72 -1.572 0 0 0 0 0 0 0 +-7.109 1.708 -1.571 0 0 0 0 0 0 0 +-7.105 1.683 -1.568 0 0 0 0 0 0 0 +-7.114 1.662 -1.569 0 0 0 0 0 0 0 +-7.114 1.638 -1.568 0 0 0 0 0 0 0 +-7.121 1.616 -1.568 0 0 0 0 0 0 0 +-6.914 1.513 -1.516 0 0 0 0 0 0 0 +-6.892 1.486 -1.51 0 0 0 0 0 0 0 +-6.884 1.461 -1.507 0 0 0 0 0 0 0 +-6.858 1.433 -1.5 0 0 0 0 0 0 0 +-6.854 1.41 -1.498 0 0 0 0 0 0 0 +-6.842 1.385 -1.494 0 0 0 0 0 0 0 +-6.852 1.365 -1.495 0 0 0 0 0 0 0 +-6.84 1.352 -1.492 0 0 0 0 0 0 0 +-6.845 1.33 -1.492 0 0 0 0 0 0 0 +-6.841 1.307 -1.49 0 0 0 0 0 0 0 +-6.843 1.285 -1.49 0 0 0 0 0 0 0 +-6.84 1.263 -1.488 0 0 0 0 0 0 0 +-6.842 1.241 -1.488 0 0 0 0 0 0 0 +-6.857 1.221 -1.49 0 0 0 0 0 0 0 +-6.838 1.196 -1.485 0 0 0 0 0 0 0 +-6.843 1.186 -1.486 0 0 0 0 0 0 0 +-6.83 1.161 -1.482 0 0 0 0 0 0 0 +-6.849 1.142 -1.485 0 0 0 0 0 0 0 +-6.849 1.12 -1.484 0 0 0 0 0 0 0 +-6.848 1.098 -1.484 0 0 0 0 0 0 0 +-6.848 1.076 -1.483 0 0 0 0 0 0 0 +-6.874 1.058 -1.488 0 0 0 0 0 0 0 +-6.88 1.048 -1.489 0 0 0 0 0 0 0 +-6.887 1.027 -1.49 0 0 0 0 0 0 0 +-6.869 1.002 -1.485 0 0 0 0 0 0 0 +-6.88 0.981 -1.487 0 0 0 0 0 0 0 +-6.869 0.958 -1.484 0 0 0 0 0 0 0 +-6.878 0.937 -1.485 0 0 0 0 0 0 0 +-6.892 0.917 -1.488 0 0 0 0 0 0 0 +-6.89 0.906 -1.487 0 0 0 0 0 0 0 +-6.91 0.886 -1.491 0 0 0 0 0 0 0 +-6.89 0.862 -1.485 0 0 0 0 0 0 0 +-6.914 0.843 -1.49 0 0 0 0 0 0 0 +-6.912 0.82 -1.489 0 0 0 0 0 0 0 +-6.903 0.797 -1.487 0 0 0 0 0 0 0 +-6.921 0.777 -1.49 0 0 0 0 0 0 0 +-6.934 0.768 -1.493 0 0 0 0 0 0 0 +-6.927 0.745 -1.491 0 0 0 0 0 0 0 +-6.939 0.724 -1.493 0 0 0 0 0 0 0 +-7.09 0.717 -1.528 0 0 0 0 0 0 0 +-7.118 0.697 -1.534 0 0 0 0 0 0 0 +-7.116 0.674 -1.533 0 0 0 0 0 0 0 +-7.12 0.652 -1.533 0 0 0 0 0 0 0 +-7.144 0.632 -1.538 0 0 0 0 0 0 0 +-7.112 0.606 -1.53 0 0 0 0 0 0 0 +-7.121 0.596 -1.532 0 0 0 0 0 0 0 +-7.098 0.572 -1.526 0 0 0 0 0 0 0 +-7.101 0.549 -1.527 0 0 0 0 0 0 0 +-7.123 0.528 -1.531 0 0 0 0 0 0 0 +-7.13 0.506 -1.533 0 0 0 0 0 0 0 +-7.143 0.485 -1.535 0 0 0 0 0 0 0 +-7.141 0.462 -1.535 0 0 0 0 0 0 0 +-7.159 0.452 -1.539 0 0 0 0 0 0 0 +-7.174 0.43 -1.542 0 0 0 0 0 0 0 +-7.177 0.408 -1.542 0 0 0 0 0 0 0 +-7.188 0.386 -1.544 0 0 0 0 0 0 0 +-7.197 0.363 -1.546 0 0 0 0 0 0 0 +-7.195 0.341 -1.545 0 0 0 0 0 0 0 +-7.219 0.319 -1.551 0 0 0 0 0 0 0 +-7.214 0.307 -1.549 0 0 0 0 0 0 0 +-7.224 0.285 -1.552 0 0 0 0 0 0 0 +-7.256 0.263 -1.559 0 0 0 0 0 0 0 +-7.263 0.241 -1.56 0 0 0 0 0 0 0 +-7.279 0.218 -1.564 0 0 0 0 0 0 0 +-7.303 0.196 -1.569 0 0 0 0 0 0 0 +-7.317 0.173 -1.572 0 0 0 0 0 0 0 +-7.37 0.163 -1.585 0 0 0 0 0 0 0 +-8.657 0.132 -1.882 0 0 0 0 0 0 0 +-8.689 0.106 -1.89 0 0 0 0 0 0 0 +-8.675 0.078 -1.887 0 0 0 0 0 0 0 +-8.685 0.051 -1.889 0 0 0 0 0 0 0 +-8.677 0.024 -1.887 0 0 0 0 0 0 0 +-8.685 0.01 -1.889 0 0 0 0 0 0 0 +-8.691 -0.017 -1.89 0 0 0 0 0 0 0 +-8.687 -0.045 -1.889 0 0 0 0 0 0 0 +-8.697 -0.072 -1.891 0 0 0 0 0 0 0 +-8.691 -0.099 -1.89 0 0 0 0 0 0 0 +-8.704 -0.127 -1.893 0 0 0 0 0 0 0 +-8.701 -0.154 -1.893 0 0 0 0 0 0 0 +-8.703 -0.181 -1.893 0 0 0 0 0 0 0 +-8.703 -0.195 -1.893 0 0 0 0 0 0 0 +-8.698 -0.222 -1.892 0 0 0 0 0 0 0 +-8.701 -0.25 -1.893 0 0 0 0 0 0 0 +-8.706 -0.277 -1.895 0 0 0 0 0 0 0 +-8.709 -0.305 -1.896 0 0 0 0 0 0 0 +-8.697 -0.332 -1.893 0 0 0 0 0 0 0 +-8.692 -0.359 -1.892 0 0 0 0 0 0 0 +-8.691 -0.373 -1.892 0 0 0 0 0 0 0 +-8.698 -0.4 -1.894 0 0 0 0 0 0 0 +-8.683 -0.427 -1.891 0 0 0 0 0 0 0 +-8.695 -0.455 -1.894 0 0 0 0 0 0 0 +-8.672 -0.481 -1.889 0 0 0 0 0 0 0 +-8.694 -0.51 -1.894 0 0 0 0 0 0 0 +-8.675 -0.536 -1.89 0 0 0 0 0 0 0 +-8.695 -0.551 -1.895 0 0 0 0 0 0 0 +-8.68 -0.577 -1.892 0 0 0 0 0 0 0 +-8.682 -0.605 -1.893 0 0 0 0 0 0 0 +-8.697 -0.633 -1.897 0 0 0 0 0 0 0 +-8.666 -0.658 -1.89 0 0 0 0 0 0 0 +-8.662 -0.685 -1.89 0 0 0 0 0 0 0 +-8.67 -0.713 -1.892 0 0 0 0 0 0 0 +-8.651 -0.726 -1.888 0 0 0 0 0 0 0 +-8.666 -0.754 -1.892 0 0 0 0 0 0 0 +-8.67 -0.782 -1.893 0 0 0 0 0 0 0 +-8.648 -0.807 -1.889 0 0 0 0 0 0 0 +-8.659 -0.836 -1.892 0 0 0 0 0 0 0 +-8.658 -0.863 -1.892 0 0 0 0 0 0 0 +-8.649 -0.89 -1.891 0 0 0 0 0 0 0 +-8.652 -0.904 -1.892 0 0 0 0 0 0 0 +-8.655 -0.932 -1.893 0 0 0 0 0 0 0 +-8.644 -0.958 -1.891 0 0 0 0 0 0 0 +-8.649 -0.986 -1.893 0 0 0 0 0 0 0 +-8.628 -1.011 -1.889 0 0 0 0 0 0 0 +-8.639 -1.04 -1.892 0 0 0 0 0 0 0 +-8.635 -1.067 -1.892 0 0 0 0 0 0 0 +-8.626 -1.08 -1.891 0 0 0 0 0 0 0 +-8.632 -1.108 -1.893 0 0 0 0 0 0 0 +-8.621 -1.134 -1.891 0 0 0 0 0 0 0 +-8.613 -1.161 -1.89 0 0 0 0 0 0 0 +-8.612 -1.188 -1.891 0 0 0 0 0 0 0 +-8.612 -1.216 -1.891 0 0 0 0 0 0 0 +-8.604 -1.242 -1.891 0 0 0 0 0 0 0 +-8.614 -1.257 -1.893 0 0 0 0 0 0 0 +-8.59 -1.281 -1.889 0 0 0 0 0 0 0 +-8.59 -1.309 -1.89 0 0 0 0 0 0 0 +-8.582 -1.335 -1.889 0 0 0 0 0 0 0 +-8.57 -1.361 -1.887 0 0 0 0 0 0 0 +-8.564 -1.388 -1.887 0 0 0 0 0 0 0 +-8.571 -1.416 -1.889 0 0 0 0 0 0 0 +-8.565 -1.443 -1.889 0 0 0 0 0 0 0 +-8.562 -1.457 -1.889 0 0 0 0 0 0 0 +-8.558 -1.483 -1.889 0 0 0 0 0 0 0 +-8.543 -1.509 -1.887 0 0 0 0 0 0 0 +-8.544 -1.536 -1.888 0 0 0 0 0 0 0 +-8.543 -1.564 -1.889 0 0 0 0 0 0 0 +-8.538 -1.591 -1.889 0 0 0 0 0 0 0 +-8.541 -1.619 -1.891 0 0 0 0 0 0 0 +-8.508 -1.627 -1.883 0 0 0 0 0 0 0 +-8.52 -1.657 -1.887 0 0 0 0 0 0 0 +-8.507 -1.682 -1.886 0 0 0 0 0 0 0 +-8.525 -1.713 -1.891 0 0 0 0 0 0 0 +-8.502 -1.737 -1.887 0 0 0 0 0 0 0 +-8.506 -1.765 -1.889 0 0 0 0 0 0 0 +-8.483 -1.788 -1.885 0 0 0 0 0 0 0 +-8.484 -1.802 -1.886 0 0 0 0 0 0 0 +-8.471 -1.827 -1.884 0 0 0 0 0 0 0 +-8.478 -1.857 -1.887 0 0 0 0 0 0 0 +-8.471 -1.883 -1.887 0 0 0 0 0 0 0 +-8.444 -1.905 -1.882 0 0 0 0 0 0 0 +-8.442 -1.932 -1.883 0 0 0 0 0 0 0 +-8.434 -1.958 -1.882 0 0 0 0 0 0 0 +-8.423 -1.97 -1.881 0 0 0 0 0 0 0 +-8.419 -1.997 -1.881 0 0 0 0 0 0 0 +-8.41 -2.023 -1.881 0 0 0 0 0 0 0 +-8.413 -2.052 -1.883 0 0 0 0 0 0 0 +-8.409 -2.078 -1.883 0 0 0 0 0 0 0 +-8.391 -2.102 -1.881 0 0 0 0 0 0 0 +-8.379 -2.127 -1.879 0 0 0 0 0 0 0 +-8.385 -2.142 -1.882 0 0 0 0 0 0 0 +-8.374 -2.168 -1.881 0 0 0 0 0 0 0 +-8.365 -2.194 -1.88 0 0 0 0 0 0 0 +-8.353 -2.218 -1.879 0 0 0 0 0 0 0 +-8.357 -2.248 -1.882 0 0 0 0 0 0 0 +-8.344 -2.272 -1.88 0 0 0 0 0 0 0 +-8.343 -2.3 -1.882 0 0 0 0 0 0 0 +-8.322 -2.309 -1.877 0 0 0 0 0 0 0 +-8.332 -2.339 -1.882 0 0 0 0 0 0 0 +-8.31 -2.361 -1.878 0 0 0 0 0 0 0 +-8.296 -2.386 -1.877 0 0 0 0 0 0 0 +-8.296 -2.414 -1.878 0 0 0 0 0 0 0 +-8.279 -2.437 -1.876 0 0 0 0 0 0 0 +-8.264 -2.461 -1.874 0 0 0 0 0 0 0 +-8.255 -2.472 -1.873 0 0 0 0 0 0 0 +-8.24 -2.496 -1.871 0 0 0 0 0 0 0 +-8.241 -2.525 -1.873 0 0 0 0 0 0 0 +-8.218 -2.546 -1.87 0 0 0 0 0 0 0 +-8.208 -2.571 -1.869 0 0 0 0 0 0 0 +-8.208 -2.599 -1.871 0 0 0 0 0 0 0 +-8.19 -2.622 -1.869 0 0 0 0 0 0 0 +-8.188 -2.636 -1.869 0 0 0 0 0 0 0 +-8.183 -2.662 -1.87 0 0 0 0 0 0 0 +-8.166 -2.685 -1.868 0 0 0 0 0 0 0 +-8.15 -2.708 -1.866 0 0 0 0 0 0 0 +-8.147 -2.736 -1.868 0 0 0 0 0 0 0 +-8.134 -2.76 -1.867 0 0 0 0 0 0 0 +-8.126 -2.786 -1.867 0 0 0 0 0 0 0 +-8.123 -2.799 -1.867 0 0 0 0 0 0 0 +-8.107 -2.822 -1.865 0 0 0 0 0 0 0 +-8.092 -2.845 -1.864 0 0 0 0 0 0 0 +-8.074 -2.868 -1.862 0 0 0 0 0 0 0 +-8.074 -2.896 -1.864 0 0 0 0 0 0 0 +-8.056 -2.918 -1.862 0 0 0 0 0 0 0 +-8.052 -2.946 -1.863 0 0 0 0 0 0 0 +-8.043 -2.971 -1.863 0 0 0 0 0 0 0 +-8.028 -2.979 -1.86 0 0 0 0 0 0 0 +-8.022 -3.006 -1.861 0 0 0 0 0 0 0 +-8.005 -3.028 -1.859 0 0 0 0 0 0 0 +-7.986 -3.05 -1.857 0 0 0 0 0 0 0 +-7.986 -3.079 -1.859 0 0 0 0 0 0 0 +-7.967 -3.1 -1.857 0 0 0 0 0 0 0 +-7.952 -3.123 -1.856 0 0 0 0 0 0 0 +-7.949 -3.136 -1.856 0 0 0 0 0 0 0 +-7.932 -3.158 -1.854 0 0 0 0 0 0 0 +-7.909 -3.178 -1.851 0 0 0 0 0 0 0 +-7.913 -3.209 -1.855 0 0 0 0 0 0 0 +-7.887 -3.227 -1.851 0 0 0 0 0 0 0 +-7.884 -3.255 -1.853 0 0 0 0 0 0 0 +-7.883 -3.283 -1.855 0 0 0 0 0 0 0 +-7.863 -3.289 -1.851 0 0 0 0 0 0 0 +-7.839 -3.308 -1.848 0 0 0 0 0 0 0 +-7.839 -3.337 -1.85 0 0 0 0 0 0 0 +-7.821 -3.359 -1.849 0 0 0 0 0 0 0 +-7.814 -3.385 -1.85 0 0 0 0 0 0 0 +-7.798 -3.407 -1.848 0 0 0 0 0 0 0 +-7.798 -3.436 -1.851 0 0 0 0 0 0 0 +-7.775 -3.441 -1.846 0 0 0 0 0 0 0 +-7.762 -3.464 -1.846 0 0 0 0 0 0 0 +-7.748 -3.487 -1.845 0 0 0 0 0 0 0 +-7.737 -3.511 -1.845 0 0 0 0 0 0 0 +-7.72 -3.533 -1.844 0 0 0 0 0 0 0 +-7.711 -3.558 -1.844 0 0 0 0 0 0 0 +-7.705 -3.585 -1.845 0 0 0 0 0 0 0 +-7.692 -3.594 -1.844 0 0 0 0 0 0 0 +-7.674 -3.614 -1.842 0 0 0 0 0 0 0 +-7.657 -3.636 -1.84 0 0 0 0 0 0 0 +-7.649 -3.662 -1.841 0 0 0 0 0 0 0 +-7.645 -3.689 -1.843 0 0 0 0 0 0 0 +-7.628 -3.711 -1.842 0 0 0 0 0 0 0 +-7.622 -3.737 -1.843 0 0 0 0 0 0 0 +-7.619 -3.751 -1.844 0 0 0 0 0 0 0 +-7.599 -3.77 -1.842 0 0 0 0 0 0 0 +-7.597 -3.8 -1.845 0 0 0 0 0 0 0 +-7.585 -3.823 -1.845 0 0 0 0 0 0 0 +-7.563 -3.842 -1.842 0 0 0 0 0 0 0 +-7.554 -3.867 -1.843 0 0 0 0 0 0 0 +-7.549 -3.895 -1.845 0 0 0 0 0 0 0 +-7.545 -3.907 -1.845 0 0 0 0 0 0 0 +-7.529 -3.929 -1.844 0 0 0 0 0 0 0 +-7.523 -3.957 -1.846 0 0 0 0 0 0 0 +-7.509 -3.979 -1.845 0 0 0 0 0 0 0 +-7.505 -4.007 -1.848 0 0 0 0 0 0 0 +-7.492 -4.031 -1.848 0 0 0 0 0 0 0 +-7.478 -4.054 -1.847 0 0 0 0 0 0 0 +-7.46 -4.074 -1.846 0 0 0 0 0 0 0 +-7.444 -4.08 -1.843 0 0 0 0 0 0 0 +-7.437 -4.107 -1.845 0 0 0 0 0 0 0 +-7.425 -4.131 -1.845 0 0 0 0 0 0 0 +-7.415 -4.156 -1.846 0 0 0 0 0 0 0 +-7.395 -4.175 -1.844 0 0 0 0 0 0 0 +-7.387 -4.202 -1.845 0 0 0 0 0 0 0 +-7.377 -4.227 -1.846 0 0 0 0 0 0 0 +-7.365 -4.235 -1.845 0 0 0 0 0 0 0 +-7.35 -4.257 -1.845 0 0 0 0 0 0 0 +-7.345 -4.286 -1.847 0 0 0 0 0 0 0 +-7.329 -4.307 -1.846 0 0 0 0 0 0 0 +-7.318 -4.332 -1.847 0 0 0 0 0 0 0 +-7.296 -4.35 -1.845 0 0 0 0 0 0 0 +-7.274 -4.367 -1.842 0 0 0 0 0 0 0 +-7.261 -4.375 -1.84 0 0 0 0 0 0 0 +-7.264 -4.408 -1.845 0 0 0 0 0 0 0 +-7.256 -4.435 -1.847 0 0 0 0 0 0 0 +-7.236 -4.453 -1.845 0 0 0 0 0 0 0 +-7.232 -4.482 -1.848 0 0 0 0 0 0 0 +-7.211 -4.501 -1.846 0 0 0 0 0 0 0 +-7.2 -4.525 -1.847 0 0 0 0 0 0 0 +-7.201 -4.542 -1.849 0 0 0 0 0 0 0 +-7.182 -4.561 -1.848 0 0 0 0 0 0 0 +-7.161 -4.58 -1.846 0 0 0 0 0 0 0 +-7.155 -4.608 -1.848 0 0 0 0 0 0 0 +-7.126 -4.62 -1.844 0 0 0 0 0 0 0 +-7.118 -4.647 -1.846 0 0 0 0 0 0 0 +-7.095 -4.664 -1.844 0 0 0 0 0 0 0 +-7.092 -4.678 -1.845 0 0 0 0 0 0 0 +-7.084 -4.705 -1.847 0 0 0 0 0 0 0 +-7.087 -4.739 -1.852 0 0 0 0 0 0 0 +-7.051 -4.747 -1.846 0 0 0 0 0 0 0 +-7.043 -4.774 -1.848 0 0 0 0 0 0 0 +-7.042 -4.806 -1.852 0 0 0 0 0 0 0 +-7.006 -4.813 -1.846 0 0 0 0 0 0 0 +-7.011 -4.833 -1.85 0 0 0 0 0 0 0 +-7.004 -4.861 -1.852 0 0 0 0 0 0 0 +-6.968 -4.868 -1.846 0 0 0 0 0 0 0 +-6.965 -4.899 -1.85 0 0 0 0 0 0 0 +-6.958 -4.927 -1.852 0 0 0 0 0 0 0 +-6.939 -4.946 -1.851 0 0 0 0 0 0 0 +-6.916 -4.962 -1.849 0 0 0 0 0 0 0 +-6.927 -4.987 -1.854 0 0 0 0 0 0 0 +-6.905 -5.004 -1.852 0 0 0 0 0 0 0 +-6.897 -5.031 -1.854 0 0 0 0 0 0 0 +-6.895 -5.064 -1.859 0 0 0 0 0 0 0 +-6.853 -5.065 -1.851 0 0 0 0 0 0 0 +-6.838 -5.088 -1.851 0 0 0 0 0 0 0 +-6.844 -5.126 -1.858 0 0 0 0 0 0 0 +-6.822 -5.143 -1.856 0 0 0 0 0 0 0 +-6.806 -5.148 -1.854 0 0 0 0 0 0 0 +-6.777 -5.159 -1.85 0 0 0 0 0 0 0 +-6.761 -5.181 -1.85 0 0 0 0 0 0 0 +-6.742 -5.199 -1.849 0 0 0 0 0 0 0 +-6.73 -5.224 -1.85 0 0 0 0 0 0 0 +-6.701 -5.236 -1.847 0 0 0 0 0 0 0 +-6.683 -5.256 -1.846 0 0 0 0 0 0 0 +-6.667 -5.26 -1.844 0 0 0 0 0 0 0 +-6.636 -5.269 -1.84 0 0 0 0 0 0 0 +-6.631 -5.299 -1.843 0 0 0 0 0 0 0 +-6.611 -5.318 -1.842 0 0 0 0 0 0 0 +-6.58 -5.326 -1.838 0 0 0 0 0 0 0 +-6.576 -5.358 -1.842 0 0 0 0 0 0 0 +-6.546 -5.367 -1.838 0 0 0 0 0 0 0 +-6.53 -5.371 -1.836 0 0 0 0 0 0 0 +-6.522 -5.399 -1.838 0 0 0 0 0 0 0 +-6.51 -5.424 -1.84 0 0 0 0 0 0 0 +-6.476 -5.43 -1.835 0 0 0 0 0 0 0 +-6.472 -5.462 -1.839 0 0 0 0 0 0 0 +-6.448 -5.476 -1.836 0 0 0 0 0 0 0 +-6.432 -5.497 -1.837 0 0 0 0 0 0 0 +-6.415 -5.5 -1.834 0 0 0 0 0 0 0 +-6.396 -5.519 -1.834 0 0 0 0 0 0 0 +-6.377 -5.537 -1.833 0 0 0 0 0 0 0 +-6.365 -5.563 -1.835 0 0 0 0 0 0 0 +-6.339 -5.575 -1.832 0 0 0 0 0 0 0 +-6.32 -5.593 -1.832 0 0 0 0 0 0 0 +-6.303 -5.613 -1.832 0 0 0 0 0 0 0 +-6.297 -5.626 -1.833 0 0 0 0 0 0 0 +-6.275 -5.642 -1.831 0 0 0 0 0 0 0 +-6.263 -5.666 -1.833 0 0 0 0 0 0 0 +-6.233 -5.676 -1.83 0 0 0 0 0 0 0 +-6.225 -5.704 -1.833 0 0 0 0 0 0 0 +-6.206 -5.723 -1.832 0 0 0 0 0 0 0 +-6.185 -5.739 -1.831 0 0 0 0 0 0 0 +-6.173 -5.746 -1.831 0 0 0 0 0 0 0 +-6.158 -5.769 -1.831 0 0 0 0 0 0 0 +-6.136 -5.784 -1.83 0 0 0 0 0 0 0 +-6.123 -5.808 -1.832 0 0 0 0 0 0 0 +-6.099 -5.822 -1.83 0 0 0 0 0 0 0 +-6.081 -5.841 -1.83 0 0 0 0 0 0 0 +-6.064 -5.862 -1.831 0 0 0 0 0 0 0 +-6.052 -5.869 -1.83 0 0 0 0 0 0 0 +-6.039 -5.893 -1.831 0 0 0 0 0 0 0 +-6.027 -5.919 -1.834 0 0 0 0 0 0 0 +-5.989 -5.919 -1.827 0 0 0 0 0 0 0 +-5.978 -5.944 -1.83 0 0 0 0 0 0 0 +-5.956 -5.96 -1.829 0 0 0 0 0 0 0 +-5.937 -5.979 -1.829 0 0 0 0 0 0 0 +-5.927 -5.987 -1.828 0 0 0 0 0 0 0 +-5.909 -6.007 -1.829 0 0 0 0 0 0 0 +-5.889 -6.024 -1.828 0 0 0 0 0 0 0 +-5.869 -6.041 -1.828 0 0 0 0 0 0 0 +-5.85 -6.059 -1.828 0 0 0 0 0 0 0 +-5.832 -6.079 -1.828 0 0 0 0 0 0 0 +-5.821 -6.106 -1.831 0 0 0 0 0 0 0 +-5.801 -6.104 -1.827 0 0 0 0 0 0 0 +-5.793 -6.135 -1.831 0 0 0 0 0 0 0 +-5.77 -6.149 -1.83 0 0 0 0 0 0 0 +-5.747 -6.162 -1.829 0 0 0 0 0 0 0 +-5.725 -6.178 -1.828 0 0 0 0 0 0 0 +-5.707 -6.197 -1.828 0 0 0 0 0 0 0 +-5.688 -6.216 -1.829 0 0 0 0 0 0 0 +-5.679 -6.225 -1.829 0 0 0 0 0 0 0 +-5.664 -6.249 -1.831 0 0 0 0 0 0 0 +-5.636 -6.256 -1.827 0 0 0 0 0 0 0 +-5.62 -6.278 -1.829 0 0 0 0 0 0 0 +-5.597 -6.293 -1.828 0 0 0 0 0 0 0 +-5.585 -6.32 -1.831 0 0 0 0 0 0 0 +-5.567 -6.338 -1.831 0 0 0 0 0 0 0 +-5.561 -6.352 -1.832 0 0 0 0 0 0 0 +-5.536 -6.363 -1.831 0 0 0 0 0 0 0 +-5.519 -6.385 -1.832 0 0 0 0 0 0 0 +-5.506 -6.41 -1.834 0 0 0 0 0 0 0 +-5.509 -6.455 -1.843 0 0 0 0 0 0 0 +-5.51 -6.498 -1.85 0 0 0 0 0 0 0 +-5.421 -6.433 -1.826 0 0 0 0 0 0 0 +-5.409 -6.438 -1.825 0 0 0 0 0 0 0 +-5.385 -6.451 -1.823 0 0 0 0 0 0 0 +-5.342 -6.441 -1.815 0 0 0 0 0 0 0 +-5.311 -6.444 -1.811 0 0 0 0 0 0 0 +-5.289 -6.459 -1.811 0 0 0 0 0 0 0 +-5.27 -6.477 -1.811 0 0 0 0 0 0 0 +-5.242 -6.485 -1.808 0 0 0 0 0 0 0 +-5.224 -6.504 -1.809 0 0 0 0 0 0 0 +-5.21 -6.508 -1.808 0 0 0 0 0 0 0 +-5.191 -6.526 -1.808 0 0 0 0 0 0 0 +-5.16 -6.528 -1.804 0 0 0 0 0 0 0 +-5.152 -6.561 -1.809 0 0 0 0 0 0 0 +-5.126 -6.57 -1.807 0 0 0 0 0 0 0 +-5.103 -6.583 -1.806 0 0 0 0 0 0 0 +-5.093 -6.612 -1.81 0 0 0 0 0 0 0 +-5.069 -6.603 -1.805 0 0 0 0 0 0 0 +-5.045 -6.615 -1.804 0 0 0 0 0 0 0 +-5.03 -6.638 -1.806 0 0 0 0 0 0 0 +-5.005 -6.648 -1.804 0 0 0 0 0 0 0 +-4.989 -6.671 -1.807 0 0 0 0 0 0 0 +-4.962 -6.677 -1.804 0 0 0 0 0 0 0 +-4.938 -6.69 -1.803 0 0 0 0 0 0 0 +-4.927 -6.696 -1.803 0 0 0 0 0 0 0 +-4.917 -6.727 -1.807 0 0 0 0 0 0 0 +-4.883 -6.725 -1.802 0 0 0 0 0 0 0 +-4.86 -6.737 -1.801 0 0 0 0 0 0 0 +-4.851 -6.77 -1.806 0 0 0 0 0 0 0 +-4.819 -6.769 -1.802 0 0 0 0 0 0 0 +-4.798 -6.786 -1.802 0 0 0 0 0 0 0 +-4.796 -6.805 -1.805 0 0 0 0 0 0 0 +-4.759 -6.797 -1.799 0 0 0 0 0 0 0 +-4.738 -6.814 -1.799 0 0 0 0 0 0 0 +-4.722 -6.837 -1.802 0 0 0 0 0 0 0 +-4.702 -6.853 -1.802 0 0 0 0 0 0 0 +-4.668 -6.85 -1.797 0 0 0 0 0 0 0 +-4.657 -6.879 -1.801 0 0 0 0 0 0 0 +-4.639 -6.877 -1.799 0 0 0 0 0 0 0 +-4.611 -6.882 -1.796 0 0 0 0 0 0 0 +-4.601 -6.914 -1.801 0 0 0 0 0 0 0 +-4.574 -6.92 -1.799 0 0 0 0 0 0 0 +-4.547 -6.927 -1.796 0 0 0 0 0 0 0 +-4.53 -6.947 -1.798 0 0 0 0 0 0 0 +-4.503 -6.953 -1.796 0 0 0 0 0 0 0 +-4.495 -6.965 -1.797 0 0 0 0 0 0 0 +-4.476 -6.984 -1.799 0 0 0 0 0 0 0 +-4.447 -6.987 -1.795 0 0 0 0 0 0 0 +-4.428 -7.006 -1.797 0 0 0 0 0 0 0 +-4.409 -7.025 -1.798 0 0 0 0 0 0 0 +-4.369 -7.01 -1.79 0 0 0 0 0 0 0 +-4.365 -7.052 -1.798 0 0 0 0 0 0 0 +-4.349 -7.051 -1.796 0 0 0 0 0 0 0 +-4.318 -7.051 -1.792 0 0 0 0 0 0 0 +-4.308 -7.085 -1.798 0 0 0 0 0 0 0 +-4.281 -7.09 -1.795 0 0 0 0 0 0 0 +-4.249 -7.086 -1.791 0 0 0 0 0 0 0 +-4.241 -7.125 -1.798 0 0 0 0 0 0 0 +-4.21 -7.123 -1.794 0 0 0 0 0 0 0 +-4.203 -7.136 -1.795 0 0 0 0 0 0 0 +-4.181 -7.151 -1.796 0 0 0 0 0 0 0 +-4.165 -7.175 -1.799 0 0 0 0 0 0 0 +-4.136 -7.177 -1.796 0 0 0 0 0 0 0 +-4.126 -7.212 -1.802 0 0 0 0 0 0 0 +-4.113 -7.242 -1.806 0 0 0 0 0 0 0 +-4.102 -7.276 -1.812 0 0 0 0 0 0 0 +-4.104 -7.306 -1.818 0 0 0 0 0 0 0 +-4.092 -7.339 -1.823 0 0 0 0 0 0 0 +-4.069 -7.352 -1.823 0 0 0 0 0 0 0 +-4.044 -7.361 -1.822 0 0 0 0 0 0 0 +-4.023 -7.379 -1.824 0 0 0 0 0 0 0 +-4.003 -7.397 -1.825 0 0 0 0 0 0 0 +-3.965 -7.382 -1.818 0 0 0 0 0 0 0 +-3.962 -7.404 -1.822 0 0 0 0 0 0 0 +-3.967 -7.469 -1.836 0 0 0 0 0 0 0 +-3.932 -7.461 -1.831 0 0 0 0 0 0 0 +-3.886 -7.429 -1.819 0 0 0 0 0 0 0 +-3.851 -7.418 -1.813 0 0 0 0 0 0 0 +-3.819 -7.415 -1.809 0 0 0 0 0 0 0 +-3.792 -7.42 -1.807 0 0 0 0 0 0 0 +-3.772 -7.408 -1.803 0 0 0 0 0 0 0 +-3.743 -7.41 -1.8 0 0 0 0 0 0 0 +-3.719 -7.42 -1.799 0 0 0 0 0 0 0 +-3.697 -7.433 -1.8 0 0 0 0 0 0 0 +-3.668 -7.434 -1.797 0 0 0 0 0 0 0 +-3.647 -7.449 -1.798 0 0 0 0 0 0 0 +-3.624 -7.462 -1.799 0 0 0 0 0 0 0 +-3.609 -7.461 -1.797 0 0 0 0 0 0 0 +-3.585 -7.47 -1.796 0 0 0 0 0 0 0 +-3.569 -7.499 -1.801 0 0 0 0 0 0 0 +-3.538 -7.494 -1.797 0 0 0 0 0 0 0 +-3.517 -7.511 -1.798 0 0 0 0 0 0 0 +-3.494 -7.522 -1.798 0 0 0 0 0 0 0 +-3.468 -7.528 -1.797 0 0 0 0 0 0 0 +-3.444 -7.538 -1.797 0 0 0 0 0 0 0 +-3.433 -7.546 -1.797 0 0 0 0 0 0 0 +-3.409 -7.556 -1.797 0 0 0 0 0 0 0 +-3.385 -7.567 -1.797 0 0 0 0 0 0 0 +-3.364 -7.583 -1.799 0 0 0 0 0 0 0 +-3.341 -7.595 -1.799 0 0 0 0 0 0 0 +-3.316 -7.602 -1.798 0 0 0 0 0 0 0 +-3.291 -7.611 -1.798 0 0 0 0 0 0 0 +-3.277 -7.612 -1.797 0 0 0 0 0 0 0 +-3.253 -7.621 -1.796 0 0 0 0 0 0 0 +-3.231 -7.636 -1.798 0 0 0 0 0 0 0 +-3.206 -7.643 -1.797 0 0 0 0 0 0 0 +-3.179 -7.646 -1.795 0 0 0 0 0 0 0 +-3.158 -7.665 -1.797 0 0 0 0 0 0 0 +-3.143 -7.662 -1.795 0 0 0 0 0 0 0 +-3.123 -7.681 -1.798 0 0 0 0 0 0 0 +-3.096 -7.684 -1.796 0 0 0 0 0 0 0 +-3.072 -7.693 -1.796 0 0 0 0 0 0 0 +-3.054 -7.721 -1.8 0 0 0 0 0 0 0 +-3.025 -7.716 -1.797 0 0 0 0 0 0 0 +-2.998 -7.718 -1.795 0 0 0 0 0 0 0 +-2.975 -7.731 -1.796 0 0 0 0 0 0 0 +-2.962 -7.734 -1.795 0 0 0 0 0 0 0 +-2.937 -7.744 -1.795 0 0 0 0 0 0 0 +-2.918 -7.766 -1.799 0 0 0 0 0 0 0 +-2.89 -7.766 -1.796 0 0 0 0 0 0 0 +-2.866 -7.775 -1.796 0 0 0 0 0 0 0 +-2.841 -7.784 -1.796 0 0 0 0 0 0 0 +-2.817 -7.792 -1.796 0 0 0 0 0 0 0 +-2.805 -7.797 -1.796 0 0 0 0 0 0 0 +-2.783 -7.813 -1.798 0 0 0 0 0 0 0 +-2.757 -7.818 -1.797 0 0 0 0 0 0 0 +-2.737 -7.839 -1.8 0 0 0 0 0 0 0 +-2.712 -7.848 -1.8 0 0 0 0 0 0 0 +-2.684 -7.847 -1.798 0 0 0 0 0 0 0 +-2.665 -7.87 -1.802 0 0 0 0 0 0 0 +-2.651 -7.871 -1.801 0 0 0 0 0 0 0 +-2.635 -7.907 -1.808 0 0 0 0 0 0 0 +-2.622 -7.95 -1.816 0 0 0 0 0 0 0 +-2.625 -8.044 -1.837 0 0 0 0 0 0 0 +-2.592 -8.028 -1.831 0 0 0 0 0 0 0 +-2.503 -7.923 -1.802 0 0 0 0 0 0 0 +-2.492 -7.931 -1.803 0 0 0 0 0 0 0 +-2.46 -7.916 -1.797 0 0 0 0 0 0 0 +-2.428 -7.9 -1.791 0 0 0 0 0 0 0 +-2.394 -7.877 -1.784 0 0 0 0 0 0 0 +-2.369 -7.883 -1.784 0 0 0 0 0 0 0 +-2.343 -7.887 -1.783 0 0 0 0 0 0 0 +-2.315 -7.883 -1.78 0 0 0 0 0 0 0 +-2.304 -7.892 -1.781 0 0 0 0 0 0 0 +-2.284 -7.916 -1.785 0 0 0 0 0 0 0 +-2.252 -7.897 -1.779 0 0 0 0 0 0 0 +-2.225 -7.897 -1.777 0 0 0 0 0 0 0 +-2.205 -7.92 -1.781 0 0 0 0 0 0 0 +-2.173 -7.903 -1.776 0 0 0 0 0 0 0 +-2.149 -7.912 -1.776 0 0 0 0 0 0 0 +-2.135 -7.911 -1.775 0 0 0 0 0 0 0 +-2.107 -7.903 -1.771 0 0 0 0 0 0 0 +-2.084 -7.917 -1.773 0 0 0 0 0 0 0 +-2.059 -7.925 -1.774 0 0 0 0 0 0 0 +-2.032 -7.922 -1.771 0 0 0 0 0 0 0 +-2.006 -7.925 -1.771 0 0 0 0 0 0 0 +-1.984 -7.941 -1.773 0 0 0 0 0 0 0 +-1.967 -7.927 -1.769 0 0 0 0 0 0 0 +-1.944 -7.94 -1.771 0 0 0 0 0 0 0 +-1.916 -7.933 -1.767 0 0 0 0 0 0 0 +-1.89 -7.935 -1.766 0 0 0 0 0 0 0 +-1.865 -7.939 -1.766 0 0 0 0 0 0 0 +-1.839 -7.941 -1.765 0 0 0 0 0 0 0 +-1.813 -7.945 -1.765 0 0 0 0 0 0 0 +-1.802 -7.952 -1.766 0 0 0 0 0 0 0 +-1.776 -7.952 -1.764 0 0 0 0 0 0 0 +-1.748 -7.944 -1.761 0 0 0 0 0 0 0 +-1.724 -7.955 -1.762 0 0 0 0 0 0 0 +-1.7 -7.966 -1.764 0 0 0 0 0 0 0 +-1.673 -7.96 -1.761 0 0 0 0 0 0 0 +-1.648 -7.969 -1.762 0 0 0 0 0 0 0 +-1.635 -7.966 -1.761 0 0 0 0 0 0 0 +-1.609 -7.965 -1.759 0 0 0 0 0 0 0 +-1.583 -7.966 -1.758 0 0 0 0 0 0 0 +-1.557 -7.97 -1.758 0 0 0 0 0 0 0 +-1.533 -7.98 -1.759 0 0 0 0 0 0 0 +-1.508 -7.981 -1.758 0 0 0 0 0 0 0 +-1.483 -7.986 -1.758 0 0 0 0 0 0 0 +-1.47 -7.99 -1.759 0 0 0 0 0 0 0 +-1.443 -7.981 -1.756 0 0 0 0 0 0 0 +-1.42 -7.999 -1.759 0 0 0 0 0 0 0 +-1.394 -7.998 -1.757 0 0 0 0 0 0 0 +-1.37 -8.006 -1.758 0 0 0 0 0 0 0 +-1.346 -8.02 -1.761 0 0 0 0 0 0 0 +-1.32 -8.018 -1.759 0 0 0 0 0 0 0 +-1.306 -8.011 -1.757 0 0 0 0 0 0 0 +-1.281 -8.015 -1.757 0 0 0 0 0 0 0 +-1.255 -8.015 -1.756 0 0 0 0 0 0 0 +-1.231 -8.026 -1.758 0 0 0 0 0 0 0 +-1.206 -8.036 -1.759 0 0 0 0 0 0 0 +-1.18 -8.034 -1.758 0 0 0 0 0 0 0 +-1.155 -8.038 -1.758 0 0 0 0 0 0 0 +-1.144 -8.049 -1.76 0 0 0 0 0 0 0 +-1.118 -8.047 -1.759 0 0 0 0 0 0 0 +-1.093 -8.058 -1.761 0 0 0 0 0 0 0 +-1.069 -8.065 -1.762 0 0 0 0 0 0 0 +-1.043 -8.063 -1.76 0 0 0 0 0 0 0 +-1.018 -8.074 -1.762 0 0 0 0 0 0 0 +-0.993 -8.077 -1.762 0 0 0 0 0 0 0 +-0.98 -8.079 -1.762 0 0 0 0 0 0 0 +-0.955 -8.085 -1.763 0 0 0 0 0 0 0 +-0.93 -8.088 -1.763 0 0 0 0 0 0 0 +-0.905 -8.093 -1.763 0 0 0 0 0 0 0 +-0.878 -8.088 -1.762 0 0 0 0 0 0 0 +-0.853 -8.093 -1.762 0 0 0 0 0 0 0 +-0.828 -8.101 -1.763 0 0 0 0 0 0 0 +-0.816 -8.107 -1.764 0 0 0 0 0 0 0 +-0.791 -8.113 -1.765 0 0 0 0 0 0 0 +-0.766 -8.123 -1.767 0 0 0 0 0 0 0 +-0.739 -8.114 -1.764 0 0 0 0 0 0 0 +-0.715 -8.126 -1.766 0 0 0 0 0 0 0 +-0.688 -8.118 -1.764 0 0 0 0 0 0 0 +-0.664 -8.136 -1.768 0 0 0 0 0 0 0 +-0.638 -8.134 -1.767 0 0 0 0 0 0 0 +-0.625 -8.127 -1.765 0 0 0 0 0 0 0 +-0.6 -8.141 -1.768 0 0 0 0 0 0 0 +-0.574 -8.135 -1.766 0 0 0 0 0 0 0 +-0.549 -8.141 -1.767 0 0 0 0 0 0 0 +-0.523 -8.142 -1.767 0 0 0 0 0 0 0 +-0.498 -8.15 -1.768 0 0 0 0 0 0 0 +-0.473 -8.155 -1.769 0 0 0 0 0 0 0 +-0.46 -8.166 -1.771 0 0 0 0 0 0 0 +-0.434 -8.157 -1.769 0 0 0 0 0 0 0 +-0.409 -8.172 -1.772 0 0 0 0 0 0 0 +-0.384 -8.174 -1.772 0 0 0 0 0 0 0 +-0.358 -8.175 -1.772 0 0 0 0 0 0 0 +-0.332 -8.182 -1.774 0 0 0 0 0 0 0 +-0.32 -8.184 -1.774 0 0 0 0 0 0 0 +-0.294 -8.189 -1.775 0 0 0 0 0 0 0 +-0.268 -8.188 -1.775 0 0 0 0 0 0 0 +-0.243 -8.204 -1.778 0 0 0 0 0 0 0 +-0.217 -8.219 -1.781 0 0 0 0 0 0 0 +-0.192 -8.217 -1.781 0 0 0 0 0 0 0 +-0.166 -8.214 -1.78 0 0 0 0 0 0 0 +-0.14 -8.217 -1.78 0 0 0 0 0 0 0 +-0.127 -8.226 -1.783 0 0 0 0 0 0 0 +-0.101 -8.235 -1.785 0 0 0 0 0 0 0 +-0.075 -8.229 -1.783 0 0 0 0 0 0 0 +-0.05 -8.227 -1.783 0 0 0 0 0 0 0 +-0.024 -8.227 -1.783 0 0 0 0 0 0 0 +0.002 -8.229 -1.783 0 0 0 0 0 0 0 +0.028 -8.233 -1.784 0 0 0 0 0 0 0 +0.041 -8.239 -1.785 0 0 0 0 0 0 0 +0.067 -8.243 -1.786 0 0 0 0 0 0 0 +0.093 -8.244 -1.787 0 0 0 0 0 0 0 +0.119 -8.246 -1.787 0 0 0 0 0 0 0 +0.145 -8.246 -1.787 0 0 0 0 0 0 0 +0.171 -8.243 -1.787 0 0 0 0 0 0 0 +0.196 -8.227 -1.783 0 0 0 0 0 0 0 +0.209 -8.244 -1.787 0 0 0 0 0 0 0 +0.236 -8.249 -1.789 0 0 0 0 0 0 0 +0.261 -8.247 -1.788 0 0 0 0 0 0 0 +0.287 -8.242 -1.787 0 0 0 0 0 0 0 +0.313 -8.233 -1.785 0 0 0 0 0 0 0 +0.339 -8.238 -1.787 0 0 0 0 0 0 0 +0.365 -8.249 -1.789 0 0 0 0 0 0 0 +0.378 -8.244 -1.789 0 0 0 0 0 0 0 +0.404 -8.245 -1.789 0 0 0 0 0 0 0 +0.43 -8.251 -1.791 0 0 0 0 0 0 0 +0.455 -8.229 -1.786 0 0 0 0 0 0 0 +0.482 -8.246 -1.79 0 0 0 0 0 0 0 +0.507 -8.235 -1.788 0 0 0 0 0 0 0 +0.534 -8.241 -1.79 0 0 0 0 0 0 0 +0.548 -8.262 -1.795 0 0 0 0 0 0 0 +0.576 -8.281 -1.8 0 0 0 0 0 0 0 +0.6 -8.258 -1.795 0 0 0 0 0 0 0 +0.626 -8.262 -1.796 0 0 0 0 0 0 0 +0.653 -8.268 -1.798 0 0 0 0 0 0 0 +0.679 -8.26 -1.797 0 0 0 0 0 0 0 +0.705 -8.262 -1.798 0 0 0 0 0 0 0 +0.719 -8.272 -1.8 0 0 0 0 0 0 0 +0.746 -8.278 -1.802 0 0 0 0 0 0 0 +0.771 -8.268 -1.8 0 0 0 0 0 0 0 +0.797 -8.269 -1.801 0 0 0 0 0 0 0 +0.823 -8.266 -1.801 0 0 0 0 0 0 0 +0.848 -8.256 -1.799 0 0 0 0 0 0 0 +0.877 -8.282 -1.806 0 0 0 0 0 0 0 +0.887 -8.254 -1.8 0 0 0 0 0 0 0 +0.917 -8.282 -1.807 0 0 0 0 0 0 0 +0.942 -8.273 -1.806 0 0 0 0 0 0 0 +0.967 -8.265 -1.804 0 0 0 0 0 0 0 +0.995 -8.275 -1.808 0 0 0 0 0 0 0 +1.022 -8.278 -1.809 0 0 0 0 0 0 0 +1.047 -8.269 -1.808 0 0 0 0 0 0 0 +1.061 -8.271 -1.808 0 0 0 0 0 0 0 +1.089 -8.283 -1.812 0 0 0 0 0 0 0 +1.114 -8.272 -1.81 0 0 0 0 0 0 0 +1.141 -8.28 -1.813 0 0 0 0 0 0 0 +1.17 -8.293 -1.817 0 0 0 0 0 0 0 +1.196 -8.292 -1.817 0 0 0 0 0 0 0 +1.221 -8.282 -1.816 0 0 0 0 0 0 0 +1.236 -8.292 -1.819 0 0 0 0 0 0 0 +1.264 -8.299 -1.822 0 0 0 0 0 0 0 +1.291 -8.301 -1.823 0 0 0 0 0 0 0 +1.319 -8.31 -1.826 0 0 0 0 0 0 0 +1.343 -8.291 -1.822 0 0 0 0 0 0 0 +1.371 -8.298 -1.825 0 0 0 0 0 0 0 +1.396 -8.288 -1.824 0 0 0 0 0 0 0 +1.409 -8.29 -1.825 0 0 0 0 0 0 0 +1.439 -8.304 -1.829 0 0 0 0 0 0 0 +1.467 -8.309 -1.831 0 0 0 0 0 0 0 +1.216 -6.791 -1.475 0 0 0 0 0 0 0 +1.237 -6.787 -1.475 0 0 0 0 0 0 0 +1.258 -6.779 -1.474 0 0 0 0 0 0 0 +1.276 -6.76 -1.47 0 0 0 0 0 0 0 +1.286 -6.754 -1.47 0 0 0 0 0 0 0 +1.305 -6.738 -1.467 0 0 0 0 0 0 0 +1.323 -6.719 -1.463 0 0 0 0 0 0 0 +1.345 -6.719 -1.464 0 0 0 0 0 0 0 +1.364 -6.707 -1.462 0 0 0 0 0 0 0 +1.385 -6.699 -1.461 0 0 0 0 0 0 0 +1.407 -6.7 -1.463 0 0 0 0 0 0 0 +1.416 -6.694 -1.462 0 0 0 0 0 0 0 +1.443 -6.712 -1.467 0 0 0 0 0 0 0 +1.813 -8.283 -1.841 0 0 0 0 0 0 0 +1.839 -8.275 -1.84 0 0 0 0 0 0 0 +1.869 -8.286 -1.845 0 0 0 0 0 0 0 +1.896 -8.286 -1.846 0 0 0 0 0 0 0 +1.921 -8.274 -1.845 0 0 0 0 0 0 0 +1.523 -6.538 -1.432 0 0 0 0 0 0 0 +1.539 -6.513 -1.427 0 0 0 0 0 0 0 +1.555 -6.489 -1.423 0 0 0 0 0 0 0 +1.574 -6.482 -1.422 0 0 0 0 0 0 0 +1.595 -6.479 -1.423 0 0 0 0 0 0 0 +1.618 -6.482 -1.424 0 0 0 0 0 0 0 +1.637 -6.475 -1.424 0 0 0 0 0 0 0 +1.703 -6.687 -1.475 0 0 0 0 0 0 0 +2.162 -8.353 -1.876 0 0 0 0 0 0 0 +2.188 -8.343 -1.875 0 0 0 0 0 0 0 +2.211 -8.327 -1.873 0 0 0 0 0 0 0 +2.239 -8.327 -1.874 0 0 0 0 0 0 0 +2.27 -8.337 -1.878 0 0 0 0 0 0 0 +2.298 -8.335 -1.88 0 0 0 0 0 0 0 +2.313 -8.339 -1.882 0 0 0 0 0 0 0 +2.343 -8.345 -1.885 0 0 0 0 0 0 0 +2.373 -8.351 -1.888 0 0 0 0 0 0 0 +2.398 -8.34 -1.887 0 0 0 0 0 0 0 +2.424 -8.33 -1.887 0 0 0 0 0 0 0 +2.45 -8.321 -1.886 0 0 0 0 0 0 0 +2.479 -8.324 -1.889 0 0 0 0 0 0 0 +2.495 -8.331 -1.891 0 0 0 0 0 0 0 +2.528 -8.344 -1.896 0 0 0 0 0 0 0 +2.551 -8.325 -1.894 0 0 0 0 0 0 0 +2.57 -8.296 -1.889 0 0 0 0 0 0 0 +2.596 -8.288 -1.889 0 0 0 0 0 0 0 +2.623 -8.282 -1.889 0 0 0 0 0 0 0 +2.654 -8.288 -1.893 0 0 0 0 0 0 0 +2.672 -8.301 -1.897 0 0 0 0 0 0 0 +2.695 -8.281 -1.894 0 0 0 0 0 0 0 +2.708 -8.236 -1.885 0 0 0 0 0 0 0 +2.728 -8.209 -1.881 0 0 0 0 0 0 0 +2.746 -8.178 -1.875 0 0 0 0 0 0 0 +2.767 -8.155 -1.872 0 0 0 0 0 0 0 +2.793 -8.146 -1.872 0 0 0 0 0 0 0 +2.801 -8.129 -1.868 0 0 0 0 0 0 0 +2.823 -8.111 -1.866 0 0 0 0 0 0 0 +2.845 -8.091 -1.864 0 0 0 0 0 0 0 +2.871 -8.084 -1.864 0 0 0 0 0 0 0 +2.89 -8.058 -1.86 0 0 0 0 0 0 0 +2.918 -8.054 -1.861 0 0 0 0 0 0 0 +2.942 -8.043 -1.861 0 0 0 0 0 0 0 +2.957 -8.046 -1.863 0 0 0 0 0 0 0 +2.978 -8.024 -1.859 0 0 0 0 0 0 0 +3.008 -8.027 -1.863 0 0 0 0 0 0 0 +3.031 -8.012 -1.861 0 0 0 0 0 0 0 +3.05 -7.986 -1.857 0 0 0 0 0 0 0 +3.076 -7.979 -1.858 0 0 0 0 0 0 0 +3.094 -7.953 -1.854 0 0 0 0 0 0 0 +3.113 -7.964 -1.858 0 0 0 0 0 0 0 +3.133 -7.941 -1.854 0 0 0 0 0 0 0 +3.156 -7.926 -1.853 0 0 0 0 0 0 0 +3.179 -7.913 -1.852 0 0 0 0 0 0 0 +3.209 -7.915 -1.855 0 0 0 0 0 0 0 +3.224 -7.88 -1.849 0 0 0 0 0 0 0 +3.253 -7.881 -1.852 0 0 0 0 0 0 0 +3.272 -7.892 -1.856 0 0 0 0 0 0 0 +3.293 -7.872 -1.854 0 0 0 0 0 0 0 +3.318 -7.862 -1.854 0 0 0 0 0 0 0 +3.343 -7.851 -1.854 0 0 0 0 0 0 0 +3.364 -7.834 -1.852 0 0 0 0 0 0 0 +3.389 -7.823 -1.852 0 0 0 0 0 0 0 +3.411 -7.807 -1.85 0 0 0 0 0 0 0 +3.42 -7.795 -1.849 0 0 0 0 0 0 0 +3.443 -7.78 -1.848 0 0 0 0 0 0 0 +3.474 -7.784 -1.851 0 0 0 0 0 0 0 +3.493 -7.76 -1.848 0 0 0 0 0 0 0 +3.519 -7.753 -1.849 0 0 0 0 0 0 0 +3.545 -7.747 -1.85 0 0 0 0 0 0 0 +3.561 -7.716 -1.845 0 0 0 0 0 0 0 +3.569 -7.702 -1.843 0 0 0 0 0 0 0 +3.594 -7.694 -1.844 0 0 0 0 0 0 0 +3.603 -7.649 -1.836 0 0 0 0 0 0 0 +3.632 -7.649 -1.838 0 0 0 0 0 0 0 +3.658 -7.641 -1.839 0 0 0 0 0 0 0 +3.675 -7.615 -1.836 0 0 0 0 0 0 0 +3.696 -7.598 -1.834 0 0 0 0 0 0 0 +3.711 -7.6 -1.836 0 0 0 0 0 0 0 +3.727 -7.572 -1.832 0 0 0 0 0 0 0 +3.749 -7.555 -1.831 0 0 0 0 0 0 0 +3.769 -7.536 -1.829 0 0 0 0 0 0 0 +3.791 -7.521 -1.828 0 0 0 0 0 0 0 +3.81 -7.5 -1.826 0 0 0 0 0 0 0 +3.828 -7.478 -1.823 0 0 0 0 0 0 0 +3.842 -7.475 -1.824 0 0 0 0 0 0 0 +3.863 -7.46 -1.823 0 0 0 0 0 0 0 +3.88 -7.436 -1.82 0 0 0 0 0 0 0 +3.914 -7.442 -1.825 0 0 0 0 0 0 0 +3.928 -7.413 -1.82 0 0 0 0 0 0 0 +3.947 -7.392 -1.818 0 0 0 0 0 0 0 +3.971 -7.381 -1.818 0 0 0 0 0 0 0 +3.989 -7.36 -1.816 0 0 0 0 0 0 0 +4.001 -7.354 -1.816 0 0 0 0 0 0 0 +4.029 -7.35 -1.818 0 0 0 0 0 0 0 +4.039 -7.315 -1.813 0 0 0 0 0 0 0 +4.068 -7.312 -1.815 0 0 0 0 0 0 0 +4.079 -7.279 -1.81 0 0 0 0 0 0 0 +4.107 -7.275 -1.812 0 0 0 0 0 0 0 +4.126 -7.255 -1.81 0 0 0 0 0 0 0 +4.137 -7.249 -1.81 0 0 0 0 0 0 0 +4.16 -7.236 -1.81 0 0 0 0 0 0 0 +4.184 -7.224 -1.811 0 0 0 0 0 0 0 +4.195 -7.191 -1.805 0 0 0 0 0 0 0 +4.224 -7.189 -1.808 0 0 0 0 0 0 0 +4.243 -7.169 -1.807 0 0 0 0 0 0 0 +4.254 -7.163 -1.807 0 0 0 0 0 0 0 +4.27 -7.139 -1.804 0 0 0 0 0 0 0 +4.288 -7.117 -1.802 0 0 0 0 0 0 0 +4.308 -7.101 -1.801 0 0 0 0 0 0 0 +4.336 -7.095 -1.803 0 0 0 0 0 0 0 +4.348 -7.065 -1.799 0 0 0 0 0 0 0 +4.375 -7.06 -1.801 0 0 0 0 0 0 0 +4.379 -7.041 -1.798 0 0 0 0 0 0 0 +4.408 -7.039 -1.801 0 0 0 0 0 0 0 +4.419 -7.007 -1.796 0 0 0 0 0 0 0 +4.447 -7.003 -1.799 0 0 0 0 0 0 0 +4.463 -6.979 -1.796 0 0 0 0 0 0 0 +4.48 -6.959 -1.794 0 0 0 0 0 0 0 +4.507 -6.953 -1.796 0 0 0 0 0 0 0 +4.505 -6.924 -1.79 0 0 0 0 0 0 0 +4.529 -6.915 -1.792 0 0 0 0 0 0 0 +4.548 -6.896 -1.79 0 0 0 0 0 0 0 +4.564 -6.873 -1.788 0 0 0 0 0 0 0 +4.589 -6.864 -1.789 0 0 0 0 0 0 0 +4.604 -6.84 -1.787 0 0 0 0 0 0 0 +4.633 -6.837 -1.79 0 0 0 0 0 0 0 +4.646 -6.809 -1.786 0 0 0 0 0 0 0 +4.655 -6.8 -1.786 0 0 0 0 0 0 0 +4.683 -6.795 -1.789 0 0 0 0 0 0 0 +4.694 -6.764 -1.784 0 0 0 0 0 0 0 +4.709 -6.742 -1.782 0 0 0 0 0 0 0 +4.731 -6.728 -1.782 0 0 0 0 0 0 0 +4.74 -6.696 -1.777 0 0 0 0 0 0 0 +4.759 -6.678 -1.776 0 0 0 0 0 0 0 +4.781 -6.686 -1.781 0 0 0 0 0 0 0 +4.801 -6.67 -1.78 0 0 0 0 0 0 0 +4.815 -6.645 -1.778 0 0 0 0 0 0 0 +4.839 -6.635 -1.779 0 0 0 0 0 0 0 +4.855 -6.613 -1.777 0 0 0 0 0 0 0 +4.884 -6.609 -1.78 0 0 0 0 0 0 0 +4.892 -6.576 -1.776 0 0 0 0 0 0 0 +4.907 -6.575 -1.777 0 0 0 0 0 0 0 +4.925 -6.556 -1.776 0 0 0 0 0 0 0 +4.942 -6.536 -1.775 0 0 0 0 0 0 0 +4.96 -6.518 -1.774 0 0 0 0 0 0 0 +4.983 -6.505 -1.775 0 0 0 0 0 0 0 +5 -6.485 -1.774 0 0 0 0 0 0 0 +5.007 -6.472 -1.772 0 0 0 0 0 0 0 +5.023 -6.452 -1.771 0 0 0 0 0 0 0 +5.051 -6.445 -1.774 0 0 0 0 0 0 0 +5.06 -6.416 -1.77 0 0 0 0 0 0 0 +5.08 -6.4 -1.77 0 0 0 0 0 0 0 +5.103 -6.387 -1.771 0 0 0 0 0 0 0 +5.12 -6.368 -1.77 0 0 0 0 0 0 0 +5.139 -6.35 -1.769 0 0 0 0 0 0 0 +5.144 -6.336 -1.767 0 0 0 0 0 0 0 +5.159 -6.314 -1.766 0 0 0 0 0 0 0 +5.186 -6.306 -1.768 0 0 0 0 0 0 0 +5.2 -6.283 -1.766 0 0 0 0 0 0 0 +5.215 -6.26 -1.764 0 0 0 0 0 0 0 +5.239 -6.25 -1.766 0 0 0 0 0 0 0 +5.254 -6.227 -1.764 0 0 0 0 0 0 0 +5.264 -6.219 -1.764 0 0 0 0 0 0 0 +5.281 -6.2 -1.763 0 0 0 0 0 0 0 +5.303 -6.186 -1.764 0 0 0 0 0 0 0 +5.319 -6.166 -1.763 0 0 0 0 0 0 0 +5.348 -6.16 -1.766 0 0 0 0 0 0 0 +5.341 -6.114 -1.757 0 0 0 0 0 0 0 +5.375 -6.113 -1.762 0 0 0 0 0 0 0 +5.378 -6.097 -1.76 0 0 0 0 0 0 0 +5.392 -6.075 -1.758 0 0 0 0 0 0 0 +5.43 -6.079 -1.765 0 0 0 0 0 0 0 +5.438 -6.049 -1.761 0 0 0 0 0 0 0 +5.457 -6.032 -1.761 0 0 0 0 0 0 0 +5.466 -6.005 -1.758 0 0 0 0 0 0 0 +5.485 -5.988 -1.758 0 0 0 0 0 0 0 +5.503 -5.988 -1.761 0 0 0 0 0 0 0 +5.523 -5.972 -1.761 0 0 0 0 0 0 0 +5.521 -5.933 -1.754 0 0 0 0 0 0 0 +5.553 -5.93 -1.759 0 0 0 0 0 0 0 +5.565 -5.905 -1.757 0 0 0 0 0 0 0 +5.584 -5.888 -1.757 0 0 0 0 0 0 0 +5.577 -5.862 -1.751 0 0 0 0 0 0 0 +5.605 -5.854 -1.754 0 0 0 0 0 0 0 +5.628 -5.842 -1.756 0 0 0 0 0 0 0 +5.648 -5.826 -1.757 0 0 0 0 0 0 0 +5.664 -5.805 -1.756 0 0 0 0 0 0 0 +5.67 -5.775 -1.752 0 0 0 0 0 0 0 +5.701 -5.771 -1.756 0 0 0 0 0 0 0 +5.718 -5.752 -1.756 0 0 0 0 0 0 0 +5.726 -5.741 -1.755 0 0 0 0 0 0 0 +5.738 -5.718 -1.753 0 0 0 0 0 0 0 +5.741 -5.685 -1.748 0 0 0 0 0 0 0 +5.778 -5.686 -1.755 0 0 0 0 0 0 0 +5.792 -5.664 -1.753 0 0 0 0 0 0 0 +5.814 -5.649 -1.755 0 0 0 0 0 0 0 +5.819 -5.619 -1.751 0 0 0 0 0 0 0 +5.839 -5.621 -1.754 0 0 0 0 0 0 0 +5.848 -5.594 -1.752 0 0 0 0 0 0 0 +5.869 -5.578 -1.752 0 0 0 0 0 0 0 +5.89 -5.564 -1.754 0 0 0 0 0 0 0 +5.904 -5.541 -1.752 0 0 0 0 0 0 0 +5.911 -5.514 -1.749 0 0 0 0 0 0 0 +5.928 -5.495 -1.749 0 0 0 0 0 0 0 +5.934 -5.483 -1.748 0 0 0 0 0 0 0 +5.963 -5.475 -1.752 0 0 0 0 0 0 0 +5.957 -5.435 -1.745 0 0 0 0 0 0 0 +5.982 -5.424 -1.748 0 0 0 0 0 0 0 +5.999 -5.406 -1.748 0 0 0 0 0 0 0 +6.015 -5.385 -1.747 0 0 0 0 0 0 0 +6.033 -5.368 -1.748 0 0 0 0 0 0 0 +6.042 -5.358 -1.748 0 0 0 0 0 0 0 +6.072 -5.351 -1.752 0 0 0 0 0 0 0 +6.065 -5.311 -1.744 0 0 0 0 0 0 0 +6.104 -5.311 -1.751 0 0 0 0 0 0 0 +6.113 -5.286 -1.749 0 0 0 0 0 0 0 +6.121 -5.259 -1.746 0 0 0 0 0 0 0 +6.146 -5.247 -1.749 0 0 0 0 0 0 0 +6.154 -5.238 -1.749 0 0 0 0 0 0 0 +6.168 -5.216 -1.748 0 0 0 0 0 0 0 +6.177 -5.19 -1.746 0 0 0 0 0 0 0 +6.206 -5.182 -1.75 0 0 0 0 0 0 0 +6.203 -5.146 -1.744 0 0 0 0 0 0 0 +6.228 -5.134 -1.747 0 0 0 0 0 0 0 +6.252 -5.121 -1.749 0 0 0 0 0 0 0 +6.254 -5.106 -1.747 0 0 0 0 0 0 0 +6.256 -5.075 -1.743 0 0 0 0 0 0 0 +6.283 -5.064 -1.746 0 0 0 0 0 0 0 +6.285 -5.033 -1.742 0 0 0 0 0 0 0 +6.304 -5.016 -1.743 0 0 0 0 0 0 0 +6.329 -5.003 -1.746 0 0 0 0 0 0 0 +6.334 -4.975 -1.743 0 0 0 0 0 0 0 +6.345 -4.968 -1.743 0 0 0 0 0 0 0 +6.356 -4.944 -1.742 0 0 0 0 0 0 0 +6.373 -4.925 -1.743 0 0 0 0 0 0 0 +6.39 -4.906 -1.743 0 0 0 0 0 0 0 +6.414 -4.893 -1.746 0 0 0 0 0 0 0 +6.423 -4.868 -1.744 0 0 0 0 0 0 0 +6.434 -4.845 -1.743 0 0 0 0 0 0 0 +6.445 -4.837 -1.743 0 0 0 0 0 0 0 +6.455 -4.813 -1.742 0 0 0 0 0 0 0 +6.469 -4.792 -1.742 0 0 0 0 0 0 0 +6.484 -4.771 -1.742 0 0 0 0 0 0 0 +6.499 -4.751 -1.742 0 0 0 0 0 0 0 +6.51 -4.728 -1.741 0 0 0 0 0 0 0 +6.522 -4.706 -1.74 0 0 0 0 0 0 0 +6.529 -4.695 -1.74 0 0 0 0 0 0 0 +6.546 -4.676 -1.74 0 0 0 0 0 0 0 +6.557 -4.653 -1.739 0 0 0 0 0 0 0 +6.572 -4.632 -1.739 0 0 0 0 0 0 0 +6.586 -4.612 -1.739 0 0 0 0 0 0 0 +6.601 -4.591 -1.739 0 0 0 0 0 0 0 +6.596 -4.557 -1.734 0 0 0 0 0 0 0 +6.624 -4.561 -1.74 0 0 0 0 0 0 0 +6.629 -4.534 -1.737 0 0 0 0 0 0 0 +6.648 -4.516 -1.738 0 0 0 0 0 0 0 +6.655 -4.491 -1.737 0 0 0 0 0 0 0 +6.676 -4.474 -1.738 0 0 0 0 0 0 0 +6.692 -4.454 -1.739 0 0 0 0 0 0 0 +6.714 -4.439 -1.741 0 0 0 0 0 0 0 +6.701 -4.415 -1.736 0 0 0 0 0 0 0 +6.733 -4.406 -1.741 0 0 0 0 0 0 0 +6.75 -4.387 -1.742 0 0 0 0 0 0 0 +6.76 -4.363 -1.741 0 0 0 0 0 0 0 +6.777 -4.344 -1.742 0 0 0 0 0 0 0 +6.784 -4.319 -1.74 0 0 0 0 0 0 0 +6.795 -4.295 -1.739 0 0 0 0 0 0 0 +6.816 -4.294 -1.743 0 0 0 0 0 0 0 +6.815 -4.263 -1.739 0 0 0 0 0 0 0 +6.845 -4.252 -1.743 0 0 0 0 0 0 0 +6.85 -4.225 -1.741 0 0 0 0 0 0 0 +6.863 -4.204 -1.741 0 0 0 0 0 0 0 +6.874 -4.181 -1.741 0 0 0 0 0 0 0 +6.886 -4.159 -1.74 0 0 0 0 0 0 0 +6.892 -4.148 -1.74 0 0 0 0 0 0 0 +6.907 -4.127 -1.741 0 0 0 0 0 0 0 +6.91 -4.1 -1.738 0 0 0 0 0 0 0 +6.928 -4.081 -1.739 0 0 0 0 0 0 0 +6.942 -4.06 -1.74 0 0 0 0 0 0 0 +6.948 -4.034 -1.738 0 0 0 0 0 0 0 +6.973 -4.019 -1.741 0 0 0 0 0 0 0 +6.981 -4.009 -1.742 0 0 0 0 0 0 0 +6.993 -3.987 -1.742 0 0 0 0 0 0 0 +7.021 -3.974 -1.746 0 0 0 0 0 0 0 +7.013 -3.94 -1.74 0 0 0 0 0 0 0 +7.039 -3.926 -1.744 0 0 0 0 0 0 0 +7.058 -3.907 -1.746 0 0 0 0 0 0 0 +7.06 -3.88 -1.743 0 0 0 0 0 0 0 +7.071 -3.871 -1.744 0 0 0 0 0 0 0 +7.094 -3.855 -1.747 0 0 0 0 0 0 0 +7.109 -3.834 -1.748 0 0 0 0 0 0 0 +7.109 -3.805 -1.745 0 0 0 0 0 0 0 +7.133 -3.789 -1.748 0 0 0 0 0 0 0 +7.149 -3.769 -1.749 0 0 0 0 0 0 0 +7.166 -3.749 -1.75 0 0 0 0 0 0 0 +7.17 -3.737 -1.75 0 0 0 0 0 0 0 +7.182 -3.714 -1.75 0 0 0 0 0 0 0 +7.198 -3.694 -1.751 0 0 0 0 0 0 0 +7.201 -3.667 -1.749 0 0 0 0 0 0 0 +7.199 -3.638 -1.745 0 0 0 0 0 0 0 +7.226 -3.623 -1.749 0 0 0 0 0 0 0 +7.225 -3.594 -1.746 0 0 0 0 0 0 0 +7.229 -3.582 -1.746 0 0 0 0 0 0 0 +7.238 -3.558 -1.745 0 0 0 0 0 0 0 +7.262 -3.542 -1.748 0 0 0 0 0 0 0 +7.269 -3.517 -1.748 0 0 0 0 0 0 0 +7.277 -3.493 -1.747 0 0 0 0 0 0 0 +7.295 -3.473 -1.748 0 0 0 0 0 0 0 +7.293 -3.444 -1.745 0 0 0 0 0 0 0 +7.299 -3.433 -1.745 0 0 0 0 0 0 0 +7.308 -3.409 -1.745 0 0 0 0 0 0 0 +7.304 -3.38 -1.741 0 0 0 0 0 0 0 +7.327 -3.362 -1.744 0 0 0 0 0 0 0 +7.34 -3.34 -1.745 0 0 0 0 0 0 0 +7.345 -3.315 -1.743 0 0 0 0 0 0 0 +7.359 -3.293 -1.744 0 0 0 0 0 0 0 +7.348 -3.274 -1.74 0 0 0 0 0 0 0 +7.37 -3.257 -1.743 0 0 0 0 0 0 0 +7.384 -3.235 -1.744 0 0 0 0 0 0 0 +7.391 -3.21 -1.743 0 0 0 0 0 0 0 +7.401 -3.187 -1.743 0 0 0 0 0 0 0 +7.391 -3.156 -1.738 0 0 0 0 0 0 0 +7.414 -3.138 -1.742 0 0 0 0 0 0 0 +7.418 -3.112 -1.74 0 0 0 0 0 0 0 +7.419 -3.099 -1.739 0 0 0 0 0 0 0 +7.438 -3.079 -1.742 0 0 0 0 0 0 0 +7.44 -3.053 -1.74 0 0 0 0 0 0 0 +7.461 -3.034 -1.743 0 0 0 0 0 0 0 +7.481 -3.015 -1.745 0 0 0 0 0 0 0 +7.478 -2.986 -1.742 0 0 0 0 0 0 0 +7.493 -2.965 -1.743 0 0 0 0 0 0 0 +7.492 -2.951 -1.742 0 0 0 0 0 0 0 +7.497 -2.926 -1.741 0 0 0 0 0 0 0 +7.514 -2.905 -1.743 0 0 0 0 0 0 0 +7.517 -2.88 -1.742 0 0 0 0 0 0 0 +7.537 -2.86 -1.744 0 0 0 0 0 0 0 +7.545 -2.836 -1.744 0 0 0 0 0 0 0 +7.544 -2.822 -1.743 0 0 0 0 0 0 0 +7.563 -2.802 -1.745 0 0 0 0 0 0 0 +7.572 -2.778 -1.745 0 0 0 0 0 0 0 +7.588 -2.757 -1.747 0 0 0 0 0 0 0 +7.582 -2.728 -1.743 0 0 0 0 0 0 0 +7.598 -2.707 -1.745 0 0 0 0 0 0 0 +7.61 -2.684 -1.746 0 0 0 0 0 0 0 +7.628 -2.664 -1.748 0 0 0 0 0 0 0 +7.599 -2.64 -1.74 0 0 0 0 0 0 0 +7.633 -2.625 -1.747 0 0 0 0 0 0 0 +7.637 -2.6 -1.746 0 0 0 0 0 0 0 +7.647 -2.576 -1.746 0 0 0 0 0 0 0 +7.653 -2.552 -1.746 0 0 0 0 0 0 0 +7.66 -2.527 -1.745 0 0 0 0 0 0 0 +7.679 -2.507 -1.748 0 0 0 0 0 0 0 +7.664 -2.489 -1.743 0 0 0 0 0 0 0 +7.689 -2.47 -1.748 0 0 0 0 0 0 0 +7.702 -2.447 -1.749 0 0 0 0 0 0 0 +7.695 -2.419 -1.745 0 0 0 0 0 0 0 +7.713 -2.398 -1.748 0 0 0 0 0 0 0 +7.715 -2.372 -1.747 0 0 0 0 0 0 0 +7.728 -2.349 -1.748 0 0 0 0 0 0 0 +7.736 -2.338 -1.749 0 0 0 0 0 0 0 +7.735 -2.312 -1.747 0 0 0 0 0 0 0 +7.754 -2.291 -1.75 0 0 0 0 0 0 0 +7.757 -2.265 -1.749 0 0 0 0 0 0 0 +7.768 -2.242 -1.75 0 0 0 0 0 0 0 +7.773 -2.217 -1.749 0 0 0 0 0 0 0 +7.803 -2.199 -1.755 0 0 0 0 0 0 0 +7.812 -2.188 -1.756 0 0 0 0 0 0 0 +7.826 -2.166 -1.758 0 0 0 0 0 0 0 +7.829 -2.14 -1.757 0 0 0 0 0 0 0 +7.845 -2.118 -1.759 0 0 0 0 0 0 0 +7.858 -2.095 -1.761 0 0 0 0 0 0 0 +7.845 -2.065 -1.756 0 0 0 0 0 0 0 +6.899 -1.796 -1.528 0 0 0 0 0 0 0 +7.84 -2.024 -1.752 0 0 0 0 0 0 0 +7.871 -2.006 -1.758 0 0 0 0 0 0 0 +7.884 -1.983 -1.76 0 0 0 0 0 0 0 +7.881 -1.956 -1.758 0 0 0 0 0 0 0 +7.92 -1.939 -1.766 0 0 0 0 0 0 0 +7.908 -1.91 -1.762 0 0 0 0 0 0 0 +7.918 -1.886 -1.762 0 0 0 0 0 0 0 +7.76 -1.836 -1.724 0 0 0 0 0 0 0 +7.889 -1.84 -1.753 0 0 0 0 0 0 0 +7.933 -1.824 -1.762 0 0 0 0 0 0 0 +7.899 -1.79 -1.753 0 0 0 0 0 0 0 +7.933 -1.771 -1.76 0 0 0 0 0 0 0 +7.948 -1.748 -1.762 0 0 0 0 0 0 0 +7.439 -1.614 -1.64 0 0 0 0 0 0 0 +7.773 -1.672 -1.719 0 0 0 0 0 0 0 +7.957 -1.685 -1.761 0 0 0 0 0 0 0 +7.966 -1.661 -1.762 0 0 0 0 0 0 0 +7.951 -1.632 -1.757 0 0 0 0 0 0 0 +7.944 -1.604 -1.754 0 0 0 0 0 0 0 +7.966 -1.583 -1.758 0 0 0 0 0 0 0 +7.962 -1.556 -1.756 0 0 0 0 0 0 0 +7.959 -1.542 -1.755 0 0 0 0 0 0 0 +7.944 -1.514 -1.75 0 0 0 0 0 0 0 +7.96 -1.491 -1.753 0 0 0 0 0 0 0 +7.952 -1.463 -1.75 0 0 0 0 0 0 0 +7.949 -1.437 -1.748 0 0 0 0 0 0 0 +7.955 -1.413 -1.748 0 0 0 0 0 0 0 +7.957 -1.387 -1.748 0 0 0 0 0 0 0 +7.971 -1.377 -1.751 0 0 0 0 0 0 0 +7.966 -1.35 -1.748 0 0 0 0 0 0 0 +7.958 -1.323 -1.746 0 0 0 0 0 0 0 +7.97 -1.299 -1.748 0 0 0 0 0 0 0 +7.972 -1.274 -1.747 0 0 0 0 0 0 0 +7.976 -1.249 -1.747 0 0 0 0 0 0 0 +7.98 -1.224 -1.747 0 0 0 0 0 0 0 +7.978 -1.211 -1.746 0 0 0 0 0 0 0 +7.972 -1.184 -1.744 0 0 0 0 0 0 0 +7.986 -1.161 -1.746 0 0 0 0 0 0 0 +7.989 -1.135 -1.746 0 0 0 0 0 0 0 +7.997 -1.111 -1.747 0 0 0 0 0 0 0 +7.987 -1.084 -1.744 0 0 0 0 0 0 0 +7.998 -1.06 -1.746 0 0 0 0 0 0 0 +7.986 -1.046 -1.743 0 0 0 0 0 0 0 +8.008 -1.023 -1.747 0 0 0 0 0 0 0 +7.986 -0.995 -1.741 0 0 0 0 0 0 0 +7.999 -0.971 -1.743 0 0 0 0 0 0 0 +8.002 -0.946 -1.743 0 0 0 0 0 0 0 +8.005 -0.92 -1.743 0 0 0 0 0 0 0 +7.981 -0.892 -1.737 0 0 0 0 0 0 0 +8.007 -0.883 -1.743 0 0 0 0 0 0 0 +8.002 -0.857 -1.741 0 0 0 0 0 0 0 +8.003 -0.831 -1.741 0 0 0 0 0 0 0 +8.012 -0.807 -1.742 0 0 0 0 0 0 0 +8.004 -0.781 -1.74 0 0 0 0 0 0 0 +8.003 -0.755 -1.739 0 0 0 0 0 0 0 +8.007 -0.73 -1.739 0 0 0 0 0 0 0 +8.01 -0.718 -1.74 0 0 0 0 0 0 0 +8.022 -0.693 -1.742 0 0 0 0 0 0 0 +8.02 -0.668 -1.741 0 0 0 0 0 0 0 +8.013 -0.642 -1.739 0 0 0 0 0 0 0 +8.015 -0.617 -1.739 0 0 0 0 0 0 0 +8.009 -0.591 -1.737 0 0 0 0 0 0 0 +8.028 -0.567 -1.741 0 0 0 0 0 0 0 +8.021 -0.554 -1.739 0 0 0 0 0 0 0 +8.027 -0.529 -1.74 0 0 0 0 0 0 0 +8.017 -0.503 -1.738 0 0 0 0 0 0 0 +8.013 -0.477 -1.736 0 0 0 0 0 0 0 +8.028 -0.453 -1.739 0 0 0 0 0 0 0 +8.023 -0.427 -1.738 0 0 0 0 0 0 0 +8.019 -0.402 -1.737 0 0 0 0 0 0 0 +8.019 -0.389 -1.737 0 0 0 0 0 0 0 +8.011 -0.364 -1.734 0 0 0 0 0 0 0 +8.016 -0.339 -1.735 0 0 0 0 0 0 0 +8.023 -0.314 -1.737 0 0 0 0 0 0 0 +8.018 -0.288 -1.735 0 0 0 0 0 0 0 +8.017 -0.263 -1.735 0 0 0 0 0 0 0 +8.019 -0.238 -1.735 0 0 0 0 0 0 0 +8.012 -0.225 -1.734 0 0 0 0 0 0 0 +8.013 -0.2 -1.734 0 0 0 0 0 0 0 +8.029 -0.175 -1.737 0 0 0 0 0 0 0 +8.021 -0.15 -1.735 0 0 0 0 0 0 0 +8.008 -0.124 -1.732 0 0 0 0 0 0 0 +8.016 -0.099 -1.734 0 0 0 0 0 0 0 +8.019 -0.074 -1.734 0 0 0 0 0 0 0 +8.019 -0.062 -1.734 0 0 0 0 0 0 0 +8.007 -0.036 -1.732 0 0 0 0 0 0 0 +8.013 -0.011 -1.733 0 0 0 0 0 0 0 +7.778 0.015 -1.742 0 0 0 0 0 0 0 +7.762 0.027 -1.739 0 0 0 0 0 0 0 +7.766 0.052 -1.74 0 0 0 0 0 0 0 +7.764 0.076 -1.739 0 0 0 0 0 0 0 +7.783 0.1 -1.744 0 0 0 0 0 0 0 +7.783 0.125 -1.744 0 0 0 0 0 0 0 +7.767 0.149 -1.74 0 0 0 0 0 0 0 +7.778 0.174 -1.743 0 0 0 0 0 0 0 +7.783 0.186 -1.744 0 0 0 0 0 0 0 +7.783 0.211 -1.744 0 0 0 0 0 0 0 +7.768 0.235 -1.741 0 0 0 0 0 0 0 +7.756 0.259 -1.738 0 0 0 0 0 0 0 +7.749 0.283 -1.737 0 0 0 0 0 0 0 +7.744 0.307 -1.736 0 0 0 0 0 0 0 +7.745 0.331 -1.736 0 0 0 0 0 0 0 +7.729 0.343 -1.733 0 0 0 0 0 0 0 +7.717 0.367 -1.73 0 0 0 0 0 0 0 +7.725 0.391 -1.732 0 0 0 0 0 0 0 +7.737 0.416 -1.735 0 0 0 0 0 0 0 +7.715 0.44 -1.73 0 0 0 0 0 0 0 +7.713 0.464 -1.73 0 0 0 0 0 0 0 +7.712 0.488 -1.73 0 0 0 0 0 0 0 +7.707 0.5 -1.729 0 0 0 0 0 0 0 +7.709 0.524 -1.73 0 0 0 0 0 0 0 +7.7 0.548 -1.728 0 0 0 0 0 0 0 +7.687 0.571 -1.726 0 0 0 0 0 0 0 +7.694 0.596 -1.728 0 0 0 0 0 0 0 +7.681 0.62 -1.725 0 0 0 0 0 0 0 +7.658 0.642 -1.72 0 0 0 0 0 0 0 +7.658 0.654 -1.721 0 0 0 0 0 0 0 +7.674 0.68 -1.725 0 0 0 0 0 0 0 +7.677 0.704 -1.726 0 0 0 0 0 0 0 +7.648 0.726 -1.72 0 0 0 0 0 0 0 +7.669 0.752 -1.725 0 0 0 0 0 0 0 +7.655 0.775 -1.722 0 0 0 0 0 0 0 +7.653 0.799 -1.722 0 0 0 0 0 0 0 +7.649 0.811 -1.722 0 0 0 0 0 0 0 +7.662 0.837 -1.726 0 0 0 0 0 0 0 +7.65 0.86 -1.723 0 0 0 0 0 0 0 +7.657 0.885 -1.726 0 0 0 0 0 0 0 +7.642 0.908 -1.723 0 0 0 0 0 0 0 +7.639 0.932 -1.723 0 0 0 0 0 0 0 +7.635 0.955 -1.722 0 0 0 0 0 0 0 +7.62 0.966 -1.719 0 0 0 0 0 0 0 +7.617 0.99 -1.719 0 0 0 0 0 0 0 +7.627 1.015 -1.722 0 0 0 0 0 0 0 +7.62 1.039 -1.721 0 0 0 0 0 0 0 +7.601 1.06 -1.718 0 0 0 0 0 0 0 +7.607 1.086 -1.72 0 0 0 0 0 0 0 +7.598 1.109 -1.719 0 0 0 0 0 0 0 +7.616 1.123 -1.723 0 0 0 0 0 0 0 +7.589 1.144 -1.718 0 0 0 0 0 0 0 +7.616 1.172 -1.725 0 0 0 0 0 0 0 +7.585 1.192 -1.719 0 0 0 0 0 0 0 +7.582 1.216 -1.719 0 0 0 0 0 0 0 +7.585 1.241 -1.721 0 0 0 0 0 0 0 +7.568 1.263 -1.717 0 0 0 0 0 0 0 +7.562 1.274 -1.716 0 0 0 0 0 0 0 +7.556 1.297 -1.716 0 0 0 0 0 0 0 +7.556 1.322 -1.717 0 0 0 0 0 0 0 +7.558 1.347 -1.718 0 0 0 0 0 0 0 +7.561 1.372 -1.72 0 0 0 0 0 0 0 +7.534 1.391 -1.714 0 0 0 0 0 0 0 +7.55 1.419 -1.72 0 0 0 0 0 0 0 +7.54 1.429 -1.718 0 0 0 0 0 0 0 +7.526 1.451 -1.715 0 0 0 0 0 0 0 +7.527 1.476 -1.717 0 0 0 0 0 0 0 +7.523 1.499 -1.717 0 0 0 0 0 0 0 +7.505 1.52 -1.714 0 0 0 0 0 0 0 +7.506 1.545 -1.715 0 0 0 0 0 0 0 +7.499 1.568 -1.714 0 0 0 0 0 0 0 +7.501 1.593 -1.716 0 0 0 0 0 0 0 +7.491 1.604 -1.714 0 0 0 0 0 0 0 +7.511 1.632 -1.721 0 0 0 0 0 0 0 +7.493 1.653 -1.717 0 0 0 0 0 0 0 +7.493 1.678 -1.719 0 0 0 0 0 0 0 +7.484 1.701 -1.718 0 0 0 0 0 0 0 +7.496 1.728 -1.722 0 0 0 0 0 0 0 +7.478 1.736 -1.718 0 0 0 0 0 0 0 +7.487 1.763 -1.722 0 0 0 0 0 0 0 +7.467 1.783 -1.718 0 0 0 0 0 0 0 +7.465 1.808 -1.719 0 0 0 0 0 0 0 +7.463 1.832 -1.72 0 0 0 0 0 0 0 +7.451 1.854 -1.719 0 0 0 0 0 0 0 +7.447 1.878 -1.719 0 0 0 0 0 0 0 +7.456 1.892 -1.722 0 0 0 0 0 0 0 +7.44 1.913 -1.72 0 0 0 0 0 0 0 +7.438 1.938 -1.721 0 0 0 0 0 0 0 +7.438 1.963 -1.722 0 0 0 0 0 0 0 +7.42 1.983 -1.719 0 0 0 0 0 0 0 +7.419 2.008 -1.721 0 0 0 0 0 0 0 +7.415 2.032 -1.721 0 0 0 0 0 0 0 +7.404 2.041 -1.719 0 0 0 0 0 0 0 +7.405 2.067 -1.721 0 0 0 0 0 0 0 +7.404 2.091 -1.722 0 0 0 0 0 0 0 +7.392 2.113 -1.721 0 0 0 0 0 0 0 +7.374 2.133 -1.718 0 0 0 0 0 0 0 +7.388 2.162 -1.723 0 0 0 0 0 0 0 +7.372 2.183 -1.721 0 0 0 0 0 0 0 +7.36 2.204 -1.72 0 0 0 0 0 0 0 +7.375 2.221 -1.724 0 0 0 0 0 0 0 +7.362 2.243 -1.723 0 0 0 0 0 0 0 +7.351 2.265 -1.722 0 0 0 0 0 0 0 +7.366 2.295 -1.728 0 0 0 0 0 0 0 +7.339 2.311 -1.722 0 0 0 0 0 0 0 +7.33 2.334 -1.722 0 0 0 0 0 0 0 +7.33 2.359 -1.724 0 0 0 0 0 0 0 +7.331 2.372 -1.725 0 0 0 0 0 0 0 +7.322 2.395 -1.725 0 0 0 0 0 0 0 +7.331 2.423 -1.729 0 0 0 0 0 0 0 +7.312 2.443 -1.726 0 0 0 0 0 0 0 +7.299 2.464 -1.725 0 0 0 0 0 0 0 +7.308 2.492 -1.729 0 0 0 0 0 0 0 +7.297 2.501 -1.727 0 0 0 0 0 0 0 +7.287 2.524 -1.727 0 0 0 0 0 0 0 +7.283 2.548 -1.728 0 0 0 0 0 0 0 +7.286 2.574 -1.73 0 0 0 0 0 0 0 +7.27 2.595 -1.728 0 0 0 0 0 0 0 +7.268 2.62 -1.73 0 0 0 0 0 0 0 +7.268 2.646 -1.732 0 0 0 0 0 0 0 +7.259 2.655 -1.731 0 0 0 0 0 0 0 +7.249 2.677 -1.73 0 0 0 0 0 0 0 +7.233 2.697 -1.728 0 0 0 0 0 0 0 +7.241 2.726 -1.733 0 0 0 0 0 0 0 +7.225 2.746 -1.731 0 0 0 0 0 0 0 +7.209 2.766 -1.729 0 0 0 0 0 0 0 +7.226 2.798 -1.735 0 0 0 0 0 0 0 +7.212 2.806 -1.733 0 0 0 0 0 0 0 +7.192 2.825 -1.73 0 0 0 0 0 0 0 +7.209 2.857 -1.737 0 0 0 0 0 0 0 +7.182 2.873 -1.732 0 0 0 0 0 0 0 +7.162 2.891 -1.729 0 0 0 0 0 0 0 +7.171 2.921 -1.734 0 0 0 0 0 0 0 +7.165 2.945 -1.735 0 0 0 0 0 0 0 +7.157 2.954 -1.734 0 0 0 0 0 0 0 +7.157 2.981 -1.736 0 0 0 0 0 0 0 +7.14 3 -1.735 0 0 0 0 0 0 0 +7.125 3.02 -1.733 0 0 0 0 0 0 0 +7.132 3.049 -1.737 0 0 0 0 0 0 0 +7.115 3.069 -1.735 0 0 0 0 0 0 0 +7.095 3.086 -1.733 0 0 0 0 0 0 0 +7.111 3.107 -1.738 0 0 0 0 0 0 0 +7.091 3.125 -1.735 0 0 0 0 0 0 0 +7.074 3.144 -1.734 0 0 0 0 0 0 0 +7.069 3.168 -1.735 0 0 0 0 0 0 0 +7.057 3.19 -1.735 0 0 0 0 0 0 0 +7.042 3.209 -1.733 0 0 0 0 0 0 0 +7.055 3.242 -1.739 0 0 0 0 0 0 0 +7.031 3.258 -1.735 0 0 0 0 0 0 0 +7.015 3.264 -1.733 0 0 0 0 0 0 0 +7.019 3.292 -1.736 0 0 0 0 0 0 0 +7.003 3.312 -1.735 0 0 0 0 0 0 0 +6.987 3.331 -1.734 0 0 0 0 0 0 0 +6.998 3.363 -1.739 0 0 0 0 0 0 0 +6.97 3.377 -1.735 0 0 0 0 0 0 0 +6.95 3.395 -1.732 0 0 0 0 0 0 0 +6.975 3.42 -1.74 0 0 0 0 0 0 0 +6.948 3.434 -1.736 0 0 0 0 0 0 0 +6.936 3.455 -1.735 0 0 0 0 0 0 0 +6.94 3.485 -1.74 0 0 0 0 0 0 0 +6.931 3.507 -1.74 0 0 0 0 0 0 0 +6.911 3.525 -1.738 0 0 0 0 0 0 0 +6.908 3.536 -1.738 0 0 0 0 0 0 0 +6.891 3.555 -1.737 0 0 0 0 0 0 0 +6.882 3.578 -1.737 0 0 0 0 0 0 0 +6.867 3.598 -1.736 0 0 0 0 0 0 0 +6.852 3.618 -1.735 0 0 0 0 0 0 0 +6.836 3.636 -1.734 0 0 0 0 0 0 0 +6.823 3.657 -1.734 0 0 0 0 0 0 0 +6.827 3.673 -1.736 0 0 0 0 0 0 0 +6.822 3.698 -1.738 0 0 0 0 0 0 0 +6.804 3.716 -1.736 0 0 0 0 0 0 0 +6.796 3.739 -1.737 0 0 0 0 0 0 0 +6.791 3.764 -1.739 0 0 0 0 0 0 0 +6.774 3.783 -1.738 0 0 0 0 0 0 0 +6.77 3.809 -1.74 0 0 0 0 0 0 0 +6.771 3.823 -1.742 0 0 0 0 0 0 0 +6.757 3.843 -1.742 0 0 0 0 0 0 0 +6.747 3.866 -1.742 0 0 0 0 0 0 0 +6.735 3.887 -1.742 0 0 0 0 0 0 0 +6.724 3.909 -1.742 0 0 0 0 0 0 0 +6.72 3.935 -1.745 0 0 0 0 0 0 0 +6.718 3.962 -1.748 0 0 0 0 0 0 0 +6.704 3.982 -1.747 0 0 0 0 0 0 0 +6.721 4.006 -1.754 0 0 0 0 0 0 0 +6.688 4.015 -1.748 0 0 0 0 0 0 0 +6.691 4.045 -1.752 0 0 0 0 0 0 0 +6.675 4.064 -1.751 0 0 0 0 0 0 0 +6.644 4.074 -1.746 0 0 0 0 0 0 0 +6.636 4.098 -1.748 0 0 0 0 0 0 0 +6.638 4.128 -1.752 0 0 0 0 0 0 0 +6.62 4.131 -1.749 0 0 0 0 0 0 0 +6.598 4.147 -1.746 0 0 0 0 0 0 0 +6.574 4.161 -1.743 0 0 0 0 0 0 0 +6.547 4.173 -1.739 0 0 0 0 0 0 0 +6.531 4.191 -1.738 0 0 0 0 0 0 0 +6.534 4.222 -1.743 0 0 0 0 0 0 0 +6.505 4.232 -1.738 0 0 0 0 0 0 0 +6.493 4.239 -1.737 0 0 0 0 0 0 0 +6.498 4.271 -1.742 0 0 0 0 0 0 0 +6.463 4.278 -1.736 0 0 0 0 0 0 0 +6.454 4.301 -1.737 0 0 0 0 0 0 0 +6.455 4.331 -1.742 0 0 0 0 0 0 0 +6.419 4.336 -1.735 0 0 0 0 0 0 0 +6.423 4.369 -1.74 0 0 0 0 0 0 0 +6.424 4.384 -1.742 0 0 0 0 0 0 0 +6.396 4.394 -1.738 0 0 0 0 0 0 0 +6.398 4.425 -1.743 0 0 0 0 0 0 0 +6.381 4.443 -1.742 0 0 0 0 0 0 0 +6.37 4.466 -1.743 0 0 0 0 0 0 0 +6.358 4.487 -1.743 0 0 0 0 0 0 0 +6.358 4.517 -1.748 0 0 0 0 0 0 0 +6.343 4.521 -1.745 0 0 0 0 0 0 0 +6.343 4.551 -1.749 0 0 0 0 0 0 0 +6.332 4.573 -1.75 0 0 0 0 0 0 0 +6.307 4.585 -1.747 0 0 0 0 0 0 0 +6.302 4.612 -1.75 0 0 0 0 0 0 0 +6.29 4.634 -1.751 0 0 0 0 0 0 0 +6.282 4.658 -1.753 0 0 0 0 0 0 0 +6.284 4.675 -1.756 0 0 0 0 0 0 0 +6.271 4.696 -1.756 0 0 0 0 0 0 0 +6.256 4.716 -1.756 0 0 0 0 0 0 0 +6.246 4.739 -1.757 0 0 0 0 0 0 0 +6.226 4.755 -1.756 0 0 0 0 0 0 0 +6.216 4.778 -1.757 0 0 0 0 0 0 0 +6.202 4.799 -1.758 0 0 0 0 0 0 0 +6.195 4.808 -1.758 0 0 0 0 0 0 0 +6.183 4.83 -1.759 0 0 0 0 0 0 0 +6.171 4.852 -1.76 0 0 0 0 0 0 0 +6.166 4.88 -1.763 0 0 0 0 0 0 0 +6.145 4.894 -1.761 0 0 0 0 0 0 0 +6.134 4.917 -1.763 0 0 0 0 0 0 0 +6.127 4.944 -1.765 0 0 0 0 0 0 0 +6.107 4.944 -1.762 0 0 0 0 0 0 0 +6.106 4.974 -1.766 0 0 0 0 0 0 0 +6.088 4.992 -1.765 0 0 0 0 0 0 0 +6.076 5.013 -1.766 0 0 0 0 0 0 0 +6.054 5.027 -1.764 0 0 0 0 0 0 0 +6.038 5.046 -1.764 0 0 0 0 0 0 0 +6.028 5.07 -1.766 0 0 0 0 0 0 0 +6.02 5.08 -1.766 0 0 0 0 0 0 0 +6.006 5.1 -1.767 0 0 0 0 0 0 0 +5.997 5.125 -1.769 0 0 0 0 0 0 0 +5.975 5.139 -1.767 0 0 0 0 0 0 0 +5.968 5.165 -1.77 0 0 0 0 0 0 0 +5.957 5.189 -1.772 0 0 0 0 0 0 0 +5.938 5.205 -1.771 0 0 0 0 0 0 0 +5.93 5.214 -1.771 0 0 0 0 0 0 0 +5.925 5.243 -1.775 0 0 0 0 0 0 0 +5.917 5.27 -1.777 0 0 0 0 0 0 0 +5.898 5.286 -1.777 0 0 0 0 0 0 0 +5.886 5.308 -1.778 0 0 0 0 0 0 0 +5.872 5.329 -1.779 0 0 0 0 0 0 0 +5.858 5.35 -1.78 0 0 0 0 0 0 0 +5.848 5.375 -1.782 0 0 0 0 0 0 0 +5.841 5.386 -1.783 0 0 0 0 0 0 0 +5.837 5.416 -1.787 0 0 0 0 0 0 0 +5.831 5.445 -1.791 0 0 0 0 0 0 0 +5.829 5.476 -1.795 0 0 0 0 0 0 0 +5.831 5.513 -1.802 0 0 0 0 0 0 0 +5.815 5.533 -1.802 0 0 0 0 0 0 0 +5.809 5.562 -1.806 0 0 0 0 0 0 0 +5.792 5.563 -1.803 0 0 0 0 0 0 0 +5.78 5.586 -1.805 0 0 0 0 0 0 0 +5.765 5.607 -1.806 0 0 0 0 0 0 0 +5.743 5.621 -1.804 0 0 0 0 0 0 0 +5.744 5.657 -1.811 0 0 0 0 0 0 0 +5.72 5.669 -1.809 0 0 0 0 0 0 0 +5.709 5.676 -1.808 0 0 0 0 0 0 0 +5.681 5.684 -1.804 0 0 0 0 0 0 0 +5.648 5.687 -1.799 0 0 0 0 0 0 0 +5.629 5.703 -1.799 0 0 0 0 0 0 0 +5.61 5.719 -1.798 0 0 0 0 0 0 0 +5.586 5.731 -1.797 0 0 0 0 0 0 0 +5.556 5.736 -1.792 0 0 0 0 0 0 0 +5.546 5.744 -1.792 0 0 0 0 0 0 0 +5.529 5.762 -1.792 0 0 0 0 0 0 0 +5.509 5.778 -1.792 0 0 0 0 0 0 0 +5.494 5.798 -1.793 0 0 0 0 0 0 0 +5.458 5.797 -1.787 0 0 0 0 0 0 0 +5.444 5.819 -1.788 0 0 0 0 0 0 0 +5.422 5.832 -1.787 0 0 0 0 0 0 0 +5.403 5.849 -1.787 0 0 0 0 0 0 0 +5.389 5.851 -1.785 0 0 0 0 0 0 0 +5.367 5.864 -1.784 0 0 0 0 0 0 0 +5.352 5.885 -1.785 0 0 0 0 0 0 0 +5.328 5.896 -1.783 0 0 0 0 0 0 0 +5.308 5.911 -1.783 0 0 0 0 0 0 0 +5.281 5.918 -1.779 0 0 0 0 0 0 0 +5.25 5.921 -1.775 0 0 0 0 0 0 0 +5.248 5.937 -1.777 0 0 0 0 0 0 0 +5.238 5.964 -1.781 0 0 0 0 0 0 0 +5.201 5.959 -1.774 0 0 0 0 0 0 0 +5.198 5.993 -1.78 0 0 0 0 0 0 0 +5.164 5.992 -1.774 0 0 0 0 0 0 0 +5.149 6.013 -1.776 0 0 0 0 0 0 0 +5.144 6.045 -1.781 0 0 0 0 0 0 0 +5.121 6.057 -1.779 0 0 0 0 0 0 0 +5.105 6.057 -1.777 0 0 0 0 0 0 0 +5.102 6.093 -1.783 0 0 0 0 0 0 0 +5.069 6.092 -1.778 0 0 0 0 0 0 0 +5.056 6.116 -1.78 0 0 0 0 0 0 0 +5.045 6.141 -1.783 0 0 0 0 0 0 0 +5.012 6.14 -1.778 0 0 0 0 0 0 0 +5.022 6.172 -1.785 0 0 0 0 0 0 0 +4.985 6.166 -1.779 0 0 0 0 0 0 0 +4.969 6.187 -1.78 0 0 0 0 0 0 0 +4.946 6.198 -1.779 0 0 0 0 0 0 0 +4.933 6.221 -1.781 0 0 0 0 0 0 0 +4.907 6.229 -1.779 0 0 0 0 0 0 0 +4.9 6.259 -1.784 0 0 0 0 0 0 0 +4.874 6.267 -1.781 0 0 0 0 0 0 0 +4.869 6.281 -1.783 0 0 0 0 0 0 0 +4.836 6.279 -1.778 0 0 0 0 0 0 0 +4.829 6.311 -1.783 0 0 0 0 0 0 0 +4.797 6.309 -1.778 0 0 0 0 0 0 0 +4.787 6.338 -1.782 0 0 0 0 0 0 0 +4.751 6.332 -1.776 0 0 0 0 0 0 0 +4.744 6.364 -1.781 0 0 0 0 0 0 0 +4.732 6.368 -1.78 0 0 0 0 0 0 0 +4.717 6.391 -1.782 0 0 0 0 0 0 0 +4.69 6.396 -1.779 0 0 0 0 0 0 0 +4.682 6.426 -1.784 0 0 0 0 0 0 0 +4.651 6.427 -1.78 0 0 0 0 0 0 0 +4.634 6.446 -1.781 0 0 0 0 0 0 0 +4.613 6.459 -1.781 0 0 0 0 0 0 0 +4.616 6.485 -1.786 0 0 0 0 0 0 0 +4.597 6.501 -1.787 0 0 0 0 0 0 0 +4.571 6.508 -1.784 0 0 0 0 0 0 0 +4.544 6.513 -1.782 0 0 0 0 0 0 0 +4.525 6.528 -1.782 0 0 0 0 0 0 0 +4.513 6.555 -1.786 0 0 0 0 0 0 0 +4.489 6.565 -1.784 0 0 0 0 0 0 0 +4.469 6.557 -1.78 0 0 0 0 0 0 0 +4.454 6.579 -1.783 0 0 0 0 0 0 0 +4.427 6.585 -1.78 0 0 0 0 0 0 0 +4.413 6.609 -1.783 0 0 0 0 0 0 0 +4.386 6.613 -1.78 0 0 0 0 0 0 0 +4.368 6.632 -1.782 0 0 0 0 0 0 0 +4.353 6.653 -1.784 0 0 0 0 0 0 0 +4.342 6.66 -1.784 0 0 0 0 0 0 0 +4.312 6.659 -1.78 0 0 0 0 0 0 0 +4.296 6.681 -1.782 0 0 0 0 0 0 0 +4.262 6.673 -1.776 0 0 0 0 0 0 0 +4.252 6.704 -1.781 0 0 0 0 0 0 0 +4.219 6.698 -1.776 0 0 0 0 0 0 0 +4.209 6.729 -1.781 0 0 0 0 0 0 0 +4.182 6.733 -1.778 0 0 0 0 0 0 0 +4.177 6.749 -1.781 0 0 0 0 0 0 0 +4.145 6.744 -1.776 0 0 0 0 0 0 0 +4.12 6.752 -1.774 0 0 0 0 0 0 0 +4.109 6.782 -1.779 0 0 0 0 0 0 0 +4.081 6.783 -1.776 0 0 0 0 0 0 0 +4.07 6.812 -1.78 0 0 0 0 0 0 0 +4.03 6.795 -1.772 0 0 0 0 0 0 0 +4.037 6.831 -1.78 0 0 0 0 0 0 0 +4.004 6.824 -1.775 0 0 0 0 0 0 0 +3.984 6.838 -1.775 0 0 0 0 0 0 0 +3.97 6.864 -1.779 0 0 0 0 0 0 0 +3.931 6.846 -1.77 0 0 0 0 0 0 0 +3.902 6.845 -1.767 0 0 0 0 0 0 0 +3.881 6.859 -1.767 0 0 0 0 0 0 0 +3.865 6.857 -1.765 0 0 0 0 0 0 0 +3.848 6.875 -1.767 0 0 0 0 0 0 0 +3.834 6.901 -1.77 0 0 0 0 0 0 0 +3.806 6.903 -1.768 0 0 0 0 0 0 0 +3.78 6.906 -1.765 0 0 0 0 0 0 0 +3.781 6.959 -1.777 0 0 0 0 0 0 0 +3.747 6.949 -1.77 0 0 0 0 0 0 0 +3.736 6.955 -1.77 0 0 0 0 0 0 0 +3.723 6.983 -1.775 0 0 0 0 0 0 0 +3.687 6.969 -1.768 0 0 0 0 0 0 0 +3.676 7.002 -1.774 0 0 0 0 0 0 0 +3.655 7.015 -1.774 0 0 0 0 0 0 0 +3.632 7.025 -1.774 0 0 0 0 0 0 0 +3.6 7.017 -1.769 0 0 0 0 0 0 0 +3.602 7.047 -1.775 0 0 0 0 0 0 0 +3.566 7.032 -1.768 0 0 0 0 0 0 0 +3.552 7.059 -1.772 0 0 0 0 0 0 0 +3.533 7.075 -1.774 0 0 0 0 0 0 0 +3.508 7.081 -1.772 0 0 0 0 0 0 0 +3.483 7.087 -1.771 0 0 0 0 0 0 0 +3.474 7.126 -1.778 0 0 0 0 0 0 0 +3.443 7.119 -1.774 0 0 0 0 0 0 0 +3.438 7.137 -1.777 0 0 0 0 0 0 0 +3.418 7.153 -1.778 0 0 0 0 0 0 0 +3.384 7.139 -1.772 0 0 0 0 0 0 0 +3.372 7.172 -1.778 0 0 0 0 0 0 0 +3.357 7.197 -1.782 0 0 0 0 0 0 0 +3.325 7.188 -1.777 0 0 0 0 0 0 0 +3.308 7.211 -1.78 0 0 0 0 0 0 0 +3.303 7.23 -1.784 0 0 0 0 0 0 0 +3.265 7.207 -1.775 0 0 0 0 0 0 0 +3.254 7.242 -1.781 0 0 0 0 0 0 0 +3.236 7.263 -1.784 0 0 0 0 0 0 0 +3.195 7.234 -1.774 0 0 0 0 0 0 0 +3.181 7.263 -1.779 0 0 0 0 0 0 0 +3.165 7.287 -1.783 0 0 0 0 0 0 0 +3.138 7.257 -1.773 0 0 0 0 0 0 0 +3.118 7.274 -1.775 0 0 0 0 0 0 0 +3.102 7.3 -1.779 0 0 0 0 0 0 0 +3.069 7.286 -1.773 0 0 0 0 0 0 0 +3.055 7.315 -1.778 0 0 0 0 0 0 0 +3.029 7.32 -1.777 0 0 0 0 0 0 0 +2.995 7.302 -1.77 0 0 0 0 0 0 0 +2.997 7.339 -1.778 0 0 0 0 0 0 0 +2.964 7.323 -1.772 0 0 0 0 0 0 0 +2.944 7.342 -1.774 0 0 0 0 0 0 0 +2.917 7.34 -1.771 0 0 0 0 0 0 0 +2.889 7.336 -1.768 0 0 0 0 0 0 0 +2.872 7.362 -1.772 0 0 0 0 0 0 0 +2.842 7.353 -1.768 0 0 0 0 0 0 0 +2.822 7.369 -1.77 0 0 0 0 0 0 0 +2.807 7.364 -1.767 0 0 0 0 0 0 0 +2.786 7.38 -1.769 0 0 0 0 0 0 0 +2.76 7.38 -1.767 0 0 0 0 0 0 0 +2.736 7.387 -1.766 0 0 0 0 0 0 0 +2.709 7.386 -1.764 0 0 0 0 0 0 0 +2.691 7.409 -1.768 0 0 0 0 0 0 0 +2.666 7.412 -1.766 0 0 0 0 0 0 0 +2.652 7.411 -1.765 0 0 0 0 0 0 0 +2.63 7.421 -1.765 0 0 0 0 0 0 0 +2.603 7.42 -1.763 0 0 0 0 0 0 0 +2.58 7.43 -1.763 0 0 0 0 0 0 0 +2.556 7.434 -1.763 0 0 0 0 0 0 0 +2.532 7.44 -1.762 0 0 0 0 0 0 0 +2.508 7.447 -1.762 0 0 0 0 0 0 0 +2.49 7.432 -1.757 0 0 0 0 0 0 0 +2.462 7.425 -1.753 0 0 0 0 0 0 0 +2.431 7.411 -1.748 0 0 0 0 0 0 0 +2.408 7.418 -1.748 0 0 0 0 0 0 0 +2.384 7.426 -1.748 0 0 0 0 0 0 0 +2.358 7.424 -1.745 0 0 0 0 0 0 0 +2.341 7.452 -1.75 0 0 0 0 0 0 0 +2.333 7.467 -1.753 0 0 0 0 0 0 0 +2.311 7.479 -1.755 0 0 0 0 0 0 0 +2.283 7.472 -1.751 0 0 0 0 0 0 0 +2.264 7.492 -1.754 0 0 0 0 0 0 0 +2.189 7.33 -1.712 0 0 0 0 0 0 0 +2.108 7.144 -1.664 0 0 0 0 0 0 0 +2.081 7.134 -1.659 0 0 0 0 0 0 0 +2.057 7.137 -1.659 0 0 0 0 0 0 0 +2.045 7.135 -1.657 0 0 0 0 0 0 0 +2.02 7.134 -1.655 0 0 0 0 0 0 0 +1.996 7.134 -1.654 0 0 0 0 0 0 0 +1.971 7.131 -1.652 0 0 0 0 0 0 0 +1.948 7.134 -1.651 0 0 0 0 0 0 0 +1.925 7.138 -1.65 0 0 0 0 0 0 0 +1.898 7.129 -1.646 0 0 0 0 0 0 0 +1.872 7.077 -1.633 0 0 0 0 0 0 0 +1.814 6.946 -1.599 0 0 0 0 0 0 0 +1.786 6.929 -1.593 0 0 0 0 0 0 0 +1.767 6.946 -1.596 0 0 0 0 0 0 0 +1.739 6.929 -1.59 0 0 0 0 0 0 0 +1.713 6.915 -1.586 0 0 0 0 0 0 0 +1.699 6.953 -1.594 0 0 0 0 0 0 0 +1.689 6.957 -1.594 0 0 0 0 0 0 0 +1.673 6.987 -1.6 0 0 0 0 0 0 0 +1.655 7.109 -1.628 0 0 0 0 0 0 0 +0.835 3.59 -0.761 0 0 0 0 0 0 0 +0.726 3.228 -0.671 0 0 0 0 0 0 0 +0.715 3.224 -0.669 0 0 0 0 0 0 0 +0.703 3.217 -0.667 0 0 0 0 0 0 0 +0.698 3.222 -0.668 0 0 0 0 0 0 0 +0.693 3.245 -0.673 0 0 0 0 0 0 0 +0.666 3.171 -0.654 0 0 0 0 0 0 0 +0.654 3.162 -0.652 0 0 0 0 0 0 0 +0.643 3.162 -0.651 0 0 0 0 0 0 0 +0.634 3.166 -0.652 0 0 0 0 0 0 0 +0.624 3.17 -0.652 0 0 0 0 0 0 0 +0.618 3.167 -0.651 0 0 0 0 0 0 0 +0.608 3.167 -0.651 0 0 0 0 0 0 0 +0.599 3.173 -0.652 0 0 0 0 0 0 0 +0.588 3.169 -0.65 0 0 0 0 0 0 0 +0.578 3.173 -0.651 0 0 0 0 0 0 0 +0.568 3.174 -0.651 0 0 0 0 0 0 0 +0.558 3.174 -0.65 0 0 0 0 0 0 0 +0.549 3.18 -0.651 0 0 0 0 0 0 0 +0.544 3.181 -0.651 0 0 0 0 0 0 0 +0.533 3.18 -0.651 0 0 0 0 0 0 0 +0.523 3.182 -0.651 0 0 0 0 0 0 0 +0.514 3.186 -0.651 0 0 0 0 0 0 0 +0.502 3.18 -0.649 0 0 0 0 0 0 0 +0.493 3.183 -0.65 0 0 0 0 0 0 0 +0.483 3.188 -0.651 0 0 0 0 0 0 0 +0.477 3.183 -0.649 0 0 0 0 0 0 0 +0.468 3.189 -0.65 0 0 0 0 0 0 0 +0.458 3.19 -0.65 0 0 0 0 0 0 0 +0.448 3.192 -0.65 0 0 0 0 0 0 0 +0.437 3.189 -0.649 0 0 0 0 0 0 0 +0.428 3.194 -0.65 0 0 0 0 0 0 0 +0.417 3.192 -0.649 0 0 0 0 0 0 0 +0.412 3.192 -0.649 0 0 0 0 0 0 0 +0.404 3.203 -0.652 0 0 0 0 0 0 0 +0.393 3.199 -0.65 0 0 0 0 0 0 0 +0.383 3.2 -0.65 0 0 0 0 0 0 0 +0.373 3.205 -0.651 0 0 0 0 0 0 0 +0.362 3.201 -0.65 0 0 0 0 0 0 0 +0.353 3.205 -0.651 0 0 0 0 0 0 0 +0.343 3.209 -0.651 0 0 0 0 0 0 0 +0.338 3.207 -0.651 0 0 0 0 0 0 0 +0.328 3.21 -0.651 0 0 0 0 0 0 0 +0.317 3.209 -0.651 0 0 0 0 0 0 0 +0.307 3.21 -0.651 0 0 0 0 0 0 0 +0.297 3.207 -0.65 0 0 0 0 0 0 0 +0.287 3.212 -0.651 0 0 0 0 0 0 0 +0.277 3.213 -0.651 0 0 0 0 0 0 0 +0.272 3.215 -0.651 0 0 0 0 0 0 0 +0.262 3.218 -0.652 0 0 0 0 0 0 0 +0.252 3.217 -0.651 0 0 0 0 0 0 0 +0.242 3.218 -0.651 0 0 0 0 0 0 0 +0.232 3.22 -0.652 0 0 0 0 0 0 0 +0.222 3.225 -0.653 0 0 0 0 0 0 0 +0.212 3.231 -0.654 0 0 0 0 0 0 0 +0.207 3.228 -0.653 0 0 0 0 0 0 0 +0.197 3.225 -0.652 0 0 0 0 0 0 0 +0.186 3.223 -0.652 0 0 0 0 0 0 0 +0.177 3.23 -0.653 0 0 0 0 0 0 0 +0.166 3.228 -0.653 0 0 0 0 0 0 0 +0.156 3.229 -0.653 0 0 0 0 0 0 0 +0.146 3.233 -0.653 0 0 0 0 0 0 0 +0.141 3.228 -0.652 0 0 0 0 0 0 0 +0.131 3.232 -0.653 0 0 0 0 0 0 0 +0.121 3.234 -0.653 0 0 0 0 0 0 0 +0.111 3.231 -0.653 0 0 0 0 0 0 0 +0.101 3.235 -0.653 0 0 0 0 0 0 0 +0.095 3.362 -0.684 0 0 0 0 0 0 0 +0.083 3.323 -0.674 0 0 0 0 0 0 0 +0.077 3.294 -0.667 0 0 0 0 0 0 0 +0.067 3.29 -0.667 0 0 0 0 0 0 0 +0.057 3.306 -0.67 0 0 0 0 0 0 0 +0.118 7.691 -1.722 0 0 0 0 0 0 0 +0.046 3.289 -0.666 0 0 0 0 0 0 0 +0.094 7.688 -1.721 0 0 0 0 0 0 0 +0.07 7.705 -1.725 0 0 0 0 0 0 0 +0.058 7.713 -1.727 0 0 0 0 0 0 0 +0.034 7.721 -1.729 0 0 0 0 0 0 0 +0.009 7.723 -1.729 0 0 0 0 0 0 0 +-0.015 7.721 -1.729 0 0 0 0 0 0 0 +-0.039 7.741 -1.734 0 0 0 0 0 0 0 +-0.064 7.741 -1.734 0 0 0 0 0 0 0 +-0.088 7.758 -1.738 0 0 0 0 0 0 0 +-0.112 7.746 -1.735 0 0 0 0 0 0 0 +-0.125 7.757 -1.738 0 0 0 0 0 0 0 +-0.149 7.782 -1.744 0 0 0 0 0 0 0 +-0.173 7.76 -1.739 0 0 0 0 0 0 0 +-0.198 7.775 -1.742 0 0 0 0 0 0 0 +-0.223 7.798 -1.748 0 0 0 0 0 0 0 +-0.247 7.776 -1.743 0 0 0 0 0 0 0 +-0.272 7.792 -1.747 0 0 0 0 0 0 0 +-0.286 7.831 -1.756 0 0 0 0 0 0 0 +-0.31 7.826 -1.756 0 0 0 0 0 0 0 +-0.337 7.883 -1.77 0 0 0 0 0 0 0 +-0.36 7.832 -1.757 0 0 0 0 0 0 0 +-0.387 7.902 -1.775 0 0 0 0 0 0 0 +-0.444 8.032 -1.806 0 0 0 0 0 0 0 +-0.454 7.977 -1.793 0 0 0 0 0 0 0 +-0.474 7.898 -1.775 0 0 0 0 0 0 0 +-0.499 7.9 -1.776 0 0 0 0 0 0 0 +-0.521 7.854 -1.765 0 0 0 0 0 0 0 +-0.547 7.86 -1.767 0 0 0 0 0 0 0 +-0.569 7.833 -1.761 0 0 0 0 0 0 0 +-0.593 7.821 -1.758 0 0 0 0 0 0 0 +-0.605 7.815 -1.757 0 0 0 0 0 0 0 +-0.631 7.832 -1.762 0 0 0 0 0 0 0 +-0.653 7.799 -1.754 0 0 0 0 0 0 0 +-0.679 7.816 -1.759 0 0 0 0 0 0 0 +-0.706 7.832 -1.763 0 0 0 0 0 0 0 +-0.728 7.808 -1.758 0 0 0 0 0 0 0 +-0.753 7.804 -1.757 0 0 0 0 0 0 0 +-0.778 7.809 -1.759 0 0 0 0 0 0 0 +-0.789 7.794 -1.756 0 0 0 0 0 0 0 +-0.814 7.796 -1.757 0 0 0 0 0 0 0 +-0.84 7.811 -1.761 0 0 0 0 0 0 0 +-0.863 7.792 -1.757 0 0 0 0 0 0 0 +-0.888 7.793 -1.758 0 0 0 0 0 0 0 +-0.913 7.796 -1.76 0 0 0 0 0 0 0 +-0.935 7.776 -1.756 0 0 0 0 0 0 0 +-0.948 7.779 -1.756 0 0 0 0 0 0 0 +-0.975 7.793 -1.761 0 0 0 0 0 0 0 +-0.997 7.776 -1.757 0 0 0 0 0 0 0 +-1.022 7.775 -1.758 0 0 0 0 0 0 0 +-1.048 7.785 -1.761 0 0 0 0 0 0 0 +-1.071 7.768 -1.758 0 0 0 0 0 0 0 +-1.096 7.773 -1.76 0 0 0 0 0 0 0 +-1.109 7.775 -1.761 0 0 0 0 0 0 0 +-1.132 7.762 -1.758 0 0 0 0 0 0 0 +-1.159 7.774 -1.762 0 0 0 0 0 0 0 +-1.182 7.764 -1.761 0 0 0 0 0 0 0 +-1.206 7.755 -1.759 0 0 0 0 0 0 0 +-1.23 7.753 -1.76 0 0 0 0 0 0 0 +-1.257 7.764 -1.763 0 0 0 0 0 0 0 +-1.267 7.749 -1.76 0 0 0 0 0 0 0 +-1.293 7.75 -1.762 0 0 0 0 0 0 0 +-1.317 7.748 -1.762 0 0 0 0 0 0 0 +-1.34 7.735 -1.76 0 0 0 0 0 0 0 +-1.366 7.738 -1.762 0 0 0 0 0 0 0 +-1.391 7.739 -1.763 0 0 0 0 0 0 0 +-1.415 7.735 -1.763 0 0 0 0 0 0 0 +-1.438 7.725 -1.762 0 0 0 0 0 0 0 +-1.452 7.732 -1.764 0 0 0 0 0 0 0 +-1.474 7.716 -1.761 0 0 0 0 0 0 0 +-1.498 7.706 -1.76 0 0 0 0 0 0 0 +-1.526 7.724 -1.765 0 0 0 0 0 0 0 +-1.549 7.713 -1.764 0 0 0 0 0 0 0 +-1.571 7.697 -1.761 0 0 0 0 0 0 0 +-1.597 7.698 -1.763 0 0 0 0 0 0 0 +-1.609 7.697 -1.763 0 0 0 0 0 0 0 +-1.633 7.692 -1.763 0 0 0 0 0 0 0 +-1.66 7.7 -1.766 0 0 0 0 0 0 0 +-1.681 7.68 -1.763 0 0 0 0 0 0 0 +-1.705 7.674 -1.763 0 0 0 0 0 0 0 +-1.733 7.686 -1.767 0 0 0 0 0 0 0 +-1.753 7.66 -1.762 0 0 0 0 0 0 0 +-1.765 7.661 -1.763 0 0 0 0 0 0 0 +-1.795 7.678 -1.768 0 0 0 0 0 0 0 +-1.82 7.676 -1.769 0 0 0 0 0 0 0 +-1.873 7.791 -1.799 0 0 0 0 0 0 0 +-1.892 7.763 -1.793 0 0 0 0 0 0 0 +-1.901 7.696 -1.778 0 0 0 0 0 0 0 +-1.938 7.691 -1.779 0 0 0 0 0 0 0 +-1.964 7.689 -1.78 0 0 0 0 0 0 0 +-1.982 7.66 -1.775 0 0 0 0 0 0 0 +-2.004 7.646 -1.773 0 0 0 0 0 0 0 +-2.02 7.608 -1.765 0 0 0 0 0 0 0 +-2.046 7.609 -1.767 0 0 0 0 0 0 0 +-2.069 7.6 -1.766 0 0 0 0 0 0 0 +-2.09 7.583 -1.763 0 0 0 0 0 0 0 +-2.104 7.589 -1.766 0 0 0 0 0 0 0 +-2.127 7.58 -1.765 0 0 0 0 0 0 0 +-2.151 7.573 -1.765 0 0 0 0 0 0 0 +-2.179 7.58 -1.769 0 0 0 0 0 0 0 +-2.201 7.567 -1.767 0 0 0 0 0 0 0 +-2.224 7.557 -1.766 0 0 0 0 0 0 0 +-2.249 7.555 -1.768 0 0 0 0 0 0 0 +-2.26 7.548 -1.767 0 0 0 0 0 0 0 +-2.285 7.546 -1.768 0 0 0 0 0 0 0 +-2.309 7.539 -1.768 0 0 0 0 0 0 0 +-2.334 7.537 -1.77 0 0 0 0 0 0 0 +-2.357 7.526 -1.769 0 0 0 0 0 0 0 +-2.383 7.526 -1.77 0 0 0 0 0 0 0 +-2.403 7.508 -1.768 0 0 0 0 0 0 0 +-2.42 7.521 -1.772 0 0 0 0 0 0 0 +-2.44 7.502 -1.769 0 0 0 0 0 0 0 +-2.467 7.503 -1.771 0 0 0 0 0 0 0 +-2.489 7.494 -1.771 0 0 0 0 0 0 0 +-2.512 7.482 -1.77 0 0 0 0 0 0 0 +-2.537 7.48 -1.771 0 0 0 0 0 0 0 +-2.561 7.474 -1.772 0 0 0 0 0 0 0 +-2.575 7.475 -1.773 0 0 0 0 0 0 0 +-2.597 7.463 -1.772 0 0 0 0 0 0 0 +-2.622 7.461 -1.774 0 0 0 0 0 0 0 +-2.644 7.447 -1.772 0 0 0 0 0 0 0 +-2.668 7.44 -1.773 0 0 0 0 0 0 0 +-2.691 7.43 -1.772 0 0 0 0 0 0 0 +-2.719 7.436 -1.776 0 0 0 0 0 0 0 +-2.741 7.424 -1.775 0 0 0 0 0 0 0 +-2.753 7.42 -1.775 0 0 0 0 0 0 0 +-2.777 7.413 -1.776 0 0 0 0 0 0 0 +-2.8 7.404 -1.776 0 0 0 0 0 0 0 +-2.825 7.399 -1.777 0 0 0 0 0 0 0 +-2.849 7.394 -1.777 0 0 0 0 0 0 0 +-2.873 7.385 -1.777 0 0 0 0 0 0 0 +-2.904 7.395 -1.783 0 0 0 0 0 0 0 +-2.913 7.385 -1.781 0 0 0 0 0 0 0 +-2.936 7.374 -1.781 0 0 0 0 0 0 0 +-2.964 7.38 -1.784 0 0 0 0 0 0 0 +-2.985 7.365 -1.783 0 0 0 0 0 0 0 +-3.013 7.366 -1.786 0 0 0 0 0 0 0 +-3.035 7.355 -1.785 0 0 0 0 0 0 0 +-3.058 7.344 -1.785 0 0 0 0 0 0 0 +-3.078 7.327 -1.783 0 0 0 0 0 0 0 +-3.091 7.326 -1.784 0 0 0 0 0 0 0 +-3.113 7.314 -1.784 0 0 0 0 0 0 0 +-3.14 7.313 -1.786 0 0 0 0 0 0 0 +-3.164 7.305 -1.786 0 0 0 0 0 0 0 +-3.186 7.295 -1.786 0 0 0 0 0 0 0 +-3.203 7.271 -1.783 0 0 0 0 0 0 0 +-3.231 7.273 -1.786 0 0 0 0 0 0 0 +-3.235 7.25 -1.781 0 0 0 0 0 0 0 +-3.266 7.258 -1.786 0 0 0 0 0 0 0 +-3.289 7.249 -1.786 0 0 0 0 0 0 0 +-3.314 7.242 -1.787 0 0 0 0 0 0 0 +-3.351 7.264 -1.796 0 0 0 0 0 0 0 +-3.379 7.266 -1.799 0 0 0 0 0 0 0 +-3.413 7.278 -1.805 0 0 0 0 0 0 0 +-3.46 7.348 -1.825 0 0 0 0 0 0 0 +-3.489 7.351 -1.829 0 0 0 0 0 0 0 +-3.499 7.312 -1.821 0 0 0 0 0 0 0 +-3.51 7.277 -1.815 0 0 0 0 0 0 0 +-3.535 7.269 -1.816 0 0 0 0 0 0 0 +-3.59 7.325 -1.833 0 0 0 0 0 0 0 +-3.602 7.291 -1.827 0 0 0 0 0 0 0 +-3.606 7.269 -1.823 0 0 0 0 0 0 0 +-3.617 7.235 -1.817 0 0 0 0 0 0 0 +-3.636 7.217 -1.815 0 0 0 0 0 0 0 +-3.655 7.197 -1.813 0 0 0 0 0 0 0 +-3.674 7.178 -1.811 0 0 0 0 0 0 0 +-3.69 7.154 -1.808 0 0 0 0 0 0 0 +-3.706 7.131 -1.804 0 0 0 0 0 0 0 +-3.732 7.126 -1.806 0 0 0 0 0 0 0 +-3.74 7.113 -1.804 0 0 0 0 0 0 0 +-3.756 7.089 -1.801 0 0 0 0 0 0 0 +-3.777 7.076 -1.801 0 0 0 0 0 0 0 +-3.793 7.052 -1.797 0 0 0 0 0 0 0 +-3.807 7.025 -1.793 0 0 0 0 0 0 0 +-3.829 7.013 -1.793 0 0 0 0 0 0 0 +-3.855 7.007 -1.795 0 0 0 0 0 0 0 +-3.861 6.993 -1.793 0 0 0 0 0 0 0 +-3.882 6.979 -1.792 0 0 0 0 0 0 0 +-3.9 6.96 -1.791 0 0 0 0 0 0 0 +-3.921 6.946 -1.79 0 0 0 0 0 0 0 +-3.943 6.933 -1.79 0 0 0 0 0 0 0 +-3.97 6.931 -1.793 0 0 0 0 0 0 0 +-3.98 6.898 -1.787 0 0 0 0 0 0 0 +-3.997 6.902 -1.79 0 0 0 0 0 0 0 +-4.018 6.888 -1.79 0 0 0 0 0 0 0 +-4.037 6.87 -1.788 0 0 0 0 0 0 0 +-4.06 6.861 -1.789 0 0 0 0 0 0 0 +-4.089 6.862 -1.793 0 0 0 0 0 0 0 +-4.103 6.835 -1.789 0 0 0 0 0 0 0 +-4.138 6.844 -1.795 0 0 0 0 0 0 0 +-4.151 6.843 -1.797 0 0 0 0 0 0 0 +-4.165 6.816 -1.793 0 0 0 0 0 0 0 +-4.186 6.803 -1.793 0 0 0 0 0 0 0 +-4.207 6.79 -1.793 0 0 0 0 0 0 0 +-4.223 6.767 -1.79 0 0 0 0 0 0 0 +-4.242 6.75 -1.789 0 0 0 0 0 0 0 +-4.253 6.72 -1.784 0 0 0 0 0 0 0 +-4.26 6.709 -1.783 0 0 0 0 0 0 0 +-4.287 6.705 -1.786 0 0 0 0 0 0 0 +-4.322 6.713 -1.792 0 0 0 0 0 0 0 +-4.333 6.683 -1.787 0 0 0 0 0 0 0 +-4.366 6.689 -1.793 0 0 0 0 0 0 0 +-4.386 6.673 -1.792 0 0 0 0 0 0 0 +-4.409 6.663 -1.793 0 0 0 0 0 0 0 +-4.429 6.647 -1.793 0 0 0 0 0 0 0 +-4.443 6.645 -1.794 0 0 0 0 0 0 0 +-4.455 6.618 -1.791 0 0 0 0 0 0 0 +-4.484 6.617 -1.794 0 0 0 0 0 0 0 +-4.501 6.597 -1.792 0 0 0 0 0 0 0 +-4.522 6.583 -1.792 0 0 0 0 0 0 0 +-4.543 6.57 -1.793 0 0 0 0 0 0 0 +-4.566 6.559 -1.794 0 0 0 0 0 0 0 +-4.575 6.55 -1.793 0 0 0 0 0 0 0 +-4.596 6.536 -1.793 0 0 0 0 0 0 0 +-4.616 6.521 -1.793 0 0 0 0 0 0 0 +-4.637 6.507 -1.793 0 0 0 0 0 0 0 +-4.661 6.497 -1.795 0 0 0 0 0 0 0 +-4.671 6.468 -1.791 0 0 0 0 0 0 0 +-4.698 6.463 -1.793 0 0 0 0 0 0 0 +-4.708 6.455 -1.793 0 0 0 0 0 0 0 +-4.731 6.444 -1.794 0 0 0 0 0 0 0 +-4.747 6.424 -1.793 0 0 0 0 0 0 0 +-4.772 6.415 -1.795 0 0 0 0 0 0 0 +-4.797 6.406 -1.797 0 0 0 0 0 0 0 +-4.816 6.39 -1.796 0 0 0 0 0 0 0 +-4.829 6.365 -1.793 0 0 0 0 0 0 0 +-4.846 6.367 -1.796 0 0 0 0 0 0 0 +-4.866 6.352 -1.796 0 0 0 0 0 0 0 +-4.882 6.332 -1.795 0 0 0 0 0 0 0 +-4.91 6.327 -1.798 0 0 0 0 0 0 0 +-4.933 6.315 -1.799 0 0 0 0 0 0 0 +-4.955 6.302 -1.8 0 0 0 0 0 0 0 +-4.972 6.284 -1.799 0 0 0 0 0 0 0 +-4.987 6.282 -1.801 0 0 0 0 0 0 0 +-4.997 6.254 -1.797 0 0 0 0 0 0 0 +-5.023 6.246 -1.799 0 0 0 0 0 0 0 +-5.081 6.279 -1.814 0 0 0 0 0 0 0 +-5.114 6.279 -1.819 0 0 0 0 0 0 0 +-5.133 6.262 -1.819 0 0 0 0 0 0 0 +-5.127 6.214 -1.809 0 0 0 0 0 0 0 +-5.131 6.18 -1.804 0 0 0 0 0 0 0 +-5.153 6.187 -1.808 0 0 0 0 0 0 0 +-5.195 6.197 -1.817 0 0 0 0 0 0 0 +-5.206 6.171 -1.813 0 0 0 0 0 0 0 +-5.214 6.141 -1.809 0 0 0 0 0 0 0 +-5.233 6.125 -1.809 0 0 0 0 0 0 0 +-5.253 6.108 -1.809 0 0 0 0 0 0 0 +-5.259 6.077 -1.804 0 0 0 0 0 0 0 +-5.261 6.06 -1.802 0 0 0 0 0 0 0 +-5.28 6.043 -1.802 0 0 0 0 0 0 0 +-5.29 6.016 -1.798 0 0 0 0 0 0 0 +-5.31 6.001 -1.799 0 0 0 0 0 0 0 +-5.324 5.979 -1.797 0 0 0 0 0 0 0 +-5.34 5.959 -1.796 0 0 0 0 0 0 0 +-5.36 5.943 -1.797 0 0 0 0 0 0 0 +-5.359 5.923 -1.793 0 0 0 0 0 0 0 +-5.383 5.912 -1.795 0 0 0 0 0 0 0 +-5.393 5.887 -1.792 0 0 0 0 0 0 0 +-5.409 5.867 -1.791 0 0 0 0 0 0 0 +-5.422 5.844 -1.789 0 0 0 0 0 0 0 +-5.437 5.823 -1.788 0 0 0 0 0 0 0 +-5.452 5.803 -1.787 0 0 0 0 0 0 0 +-5.463 5.796 -1.787 0 0 0 0 0 0 0 +-5.477 5.774 -1.786 0 0 0 0 0 0 0 +-5.491 5.753 -1.784 0 0 0 0 0 0 0 +-5.51 5.737 -1.785 0 0 0 0 0 0 0 +-5.528 5.72 -1.785 0 0 0 0 0 0 0 +-5.545 5.701 -1.784 0 0 0 0 0 0 0 +-5.557 5.678 -1.783 0 0 0 0 0 0 0 +-5.575 5.66 -1.783 0 0 0 0 0 0 0 +-5.586 5.653 -1.783 0 0 0 0 0 0 0 +-5.606 5.638 -1.784 0 0 0 0 0 0 0 +-5.611 5.608 -1.78 0 0 0 0 0 0 0 +-5.632 5.593 -1.781 0 0 0 0 0 0 0 +-5.645 5.571 -1.779 0 0 0 0 0 0 0 +-5.661 5.552 -1.779 0 0 0 0 0 0 0 +-5.68 5.536 -1.779 0 0 0 0 0 0 0 +-5.678 5.516 -1.776 0 0 0 0 0 0 0 +-5.707 5.51 -1.78 0 0 0 0 0 0 0 +-5.719 5.487 -1.778 0 0 0 0 0 0 0 +-5.736 5.469 -1.778 0 0 0 0 0 0 0 +-5.741 5.439 -1.774 0 0 0 0 0 0 0 +-5.747 5.41 -1.77 0 0 0 0 0 0 0 +-5.778 5.405 -1.775 0 0 0 0 0 0 0 +-5.782 5.392 -1.773 0 0 0 0 0 0 0 +-5.792 5.367 -1.771 0 0 0 0 0 0 0 +-5.791 5.333 -1.765 0 0 0 0 0 0 0 +-5.825 5.331 -1.771 0 0 0 0 0 0 0 +-5.826 5.298 -1.766 0 0 0 0 0 0 0 +-5.841 5.279 -1.765 0 0 0 0 0 0 0 +-5.857 5.259 -1.765 0 0 0 0 0 0 0 +-5.85 5.237 -1.76 0 0 0 0 0 0 0 +-5.848 5.201 -1.754 0 0 0 0 0 0 0 +-5.86 5.179 -1.753 0 0 0 0 0 0 0 +-5.866 5.152 -1.749 0 0 0 0 0 0 0 +-5.885 5.136 -1.75 0 0 0 0 0 0 0 +-5.897 5.113 -1.749 0 0 0 0 0 0 0 +-5.911 5.094 -1.749 0 0 0 0 0 0 0 +-5.91 5.077 -1.746 0 0 0 0 0 0 0 +-5.92 5.053 -1.744 0 0 0 0 0 0 0 +-5.942 5.039 -1.746 0 0 0 0 0 0 0 +-5.949 5.013 -1.743 0 0 0 0 0 0 0 +-5.972 5.001 -1.745 0 0 0 0 0 0 0 +-5.991 4.984 -1.746 0 0 0 0 0 0 0 +-5.999 4.959 -1.744 0 0 0 0 0 0 0 +-6.014 4.956 -1.746 0 0 0 0 0 0 0 +-6.025 4.934 -1.745 0 0 0 0 0 0 0 +-6.047 4.92 -1.747 0 0 0 0 0 0 0 +-6.073 4.909 -1.75 0 0 0 0 0 0 0 +-6.082 4.885 -1.748 0 0 0 0 0 0 0 +-6.102 4.87 -1.749 0 0 0 0 0 0 0 +-6.116 4.849 -1.749 0 0 0 0 0 0 0 +-6.133 4.831 -1.749 0 0 0 0 0 0 0 +-6.142 4.823 -1.75 0 0 0 0 0 0 0 +-6.163 4.808 -1.752 0 0 0 0 0 0 0 +-6.178 4.789 -1.752 0 0 0 0 0 0 0 +-6.188 4.766 -1.75 0 0 0 0 0 0 0 +-6.199 4.743 -1.749 0 0 0 0 0 0 0 +-6.214 4.723 -1.749 0 0 0 0 0 0 0 +-6.233 4.707 -1.75 0 0 0 0 0 0 0 +-6.234 4.693 -1.749 0 0 0 0 0 0 0 +-6.255 4.678 -1.75 0 0 0 0 0 0 0 +-6.262 4.652 -1.748 0 0 0 0 0 0 0 +-6.28 4.635 -1.749 0 0 0 0 0 0 0 +-6.296 4.616 -1.749 0 0 0 0 0 0 0 +-6.309 4.595 -1.749 0 0 0 0 0 0 0 +-6.325 4.577 -1.749 0 0 0 0 0 0 0 +-6.332 4.567 -1.749 0 0 0 0 0 0 0 +-6.327 4.533 -1.744 0 0 0 0 0 0 0 +-6.353 4.521 -1.747 0 0 0 0 0 0 0 +-6.333 4.478 -1.737 0 0 0 0 0 0 0 +-6.343 4.454 -1.736 0 0 0 0 0 0 0 +-6.373 4.446 -1.741 0 0 0 0 0 0 0 +-6.371 4.414 -1.736 0 0 0 0 0 0 0 +-6.374 4.402 -1.735 0 0 0 0 0 0 0 +-6.399 4.39 -1.738 0 0 0 0 0 0 0 +-6.402 4.362 -1.735 0 0 0 0 0 0 0 +-6.416 4.342 -1.735 0 0 0 0 0 0 0 +-6.452 4.337 -1.742 0 0 0 0 0 0 0 +-6.456 4.31 -1.739 0 0 0 0 0 0 0 +-6.48 4.297 -1.742 0 0 0 0 0 0 0 +-6.456 4.267 -1.733 0 0 0 0 0 0 0 +-6.46 4.24 -1.73 0 0 0 0 0 0 0 +-6.472 4.219 -1.73 0 0 0 0 0 0 0 +-6.503 4.21 -1.735 0 0 0 0 0 0 0 +-6.527 4.197 -1.738 0 0 0 0 0 0 0 +-6.536 4.173 -1.737 0 0 0 0 0 0 0 +-6.552 4.155 -1.738 0 0 0 0 0 0 0 +-6.555 4.128 -1.735 0 0 0 0 0 0 0 +-6.576 4.127 -1.739 0 0 0 0 0 0 0 +-6.588 4.105 -1.739 0 0 0 0 0 0 0 +-6.607 4.089 -1.741 0 0 0 0 0 0 0 +-6.617 4.066 -1.74 0 0 0 0 0 0 0 +-6.626 4.043 -1.739 0 0 0 0 0 0 0 +-6.634 4.019 -1.737 0 0 0 0 0 0 0 +-6.641 3.995 -1.736 0 0 0 0 0 0 0 +-6.654 3.989 -1.738 0 0 0 0 0 0 0 +-6.655 3.961 -1.735 0 0 0 0 0 0 0 +-6.673 3.943 -1.736 0 0 0 0 0 0 0 +-6.682 3.92 -1.735 0 0 0 0 0 0 0 +-6.697 3.901 -1.736 0 0 0 0 0 0 0 +-6.715 3.883 -1.737 0 0 0 0 0 0 0 +-6.723 3.86 -1.736 0 0 0 0 0 0 0 +-6.731 3.85 -1.737 0 0 0 0 0 0 0 +-6.735 3.824 -1.735 0 0 0 0 0 0 0 +-6.759 3.81 -1.738 0 0 0 0 0 0 0 +-6.757 3.781 -1.734 0 0 0 0 0 0 0 +-6.759 3.754 -1.731 0 0 0 0 0 0 0 +-6.787 3.742 -1.736 0 0 0 0 0 0 0 +-6.779 3.709 -1.73 0 0 0 0 0 0 0 +-6.79 3.702 -1.732 0 0 0 0 0 0 0 +-6.796 3.677 -1.73 0 0 0 0 0 0 0 +-6.811 3.658 -1.731 0 0 0 0 0 0 0 +-6.826 3.638 -1.732 0 0 0 0 0 0 0 +-6.829 3.612 -1.73 0 0 0 0 0 0 0 +-6.849 3.595 -1.732 0 0 0 0 0 0 0 +-6.862 3.575 -1.733 0 0 0 0 0 0 0 +-6.862 3.561 -1.731 0 0 0 0 0 0 0 +-6.873 3.54 -1.731 0 0 0 0 0 0 0 +-6.888 3.52 -1.732 0 0 0 0 0 0 0 +-6.904 3.501 -1.734 0 0 0 0 0 0 0 +-6.917 3.48 -1.734 0 0 0 0 0 0 0 +-6.933 3.461 -1.735 0 0 0 0 0 0 0 +-6.93 3.432 -1.732 0 0 0 0 0 0 0 +-6.923 3.415 -1.728 0 0 0 0 0 0 0 +-6.946 3.4 -1.732 0 0 0 0 0 0 0 +-6.951 3.375 -1.73 0 0 0 0 0 0 0 +-6.962 3.353 -1.73 0 0 0 0 0 0 0 +-6.967 3.329 -1.729 0 0 0 0 0 0 0 +-6.983 3.309 -1.73 0 0 0 0 0 0 0 +-6.984 3.283 -1.728 0 0 0 0 0 0 0 +-6.995 3.275 -1.729 0 0 0 0 0 0 0 +-7.007 3.254 -1.73 0 0 0 0 0 0 0 +-7.029 3.237 -1.733 0 0 0 0 0 0 0 +-7.045 3.218 -1.735 0 0 0 0 0 0 0 +-7.064 3.2 -1.737 0 0 0 0 0 0 0 +-7.075 3.178 -1.737 0 0 0 0 0 0 0 +-7.099 3.162 -1.741 0 0 0 0 0 0 0 +-7.103 3.15 -1.741 0 0 0 0 0 0 0 +-7.13 3.136 -1.745 0 0 0 0 0 0 0 +-7.156 3.121 -1.749 0 0 0 0 0 0 0 +-7.152 3.092 -1.746 0 0 0 0 0 0 0 +-7.177 3.076 -1.75 0 0 0 0 0 0 0 +-7.205 3.061 -1.755 0 0 0 0 0 0 0 +-7.236 3.048 -1.76 0 0 0 0 0 0 0 +-7.239 3.036 -1.76 0 0 0 0 0 0 0 +-7.259 3.018 -1.763 0 0 0 0 0 0 0 +-7.287 3.002 -1.767 0 0 0 0 0 0 0 +-7.296 2.979 -1.767 0 0 0 0 0 0 0 +-7.3 2.954 -1.766 0 0 0 0 0 0 0 +-7.304 2.929 -1.764 0 0 0 0 0 0 0 +-7.304 2.902 -1.762 0 0 0 0 0 0 0 +-7.322 2.883 -1.764 0 0 0 0 0 0 0 +-7.341 2.877 -1.768 0 0 0 0 0 0 0 +-7.336 2.849 -1.764 0 0 0 0 0 0 0 +-7.337 2.823 -1.763 0 0 0 0 0 0 0 +-7.335 2.795 -1.76 0 0 0 0 0 0 0 +-7.367 2.781 -1.766 0 0 0 0 0 0 0 +-7.402 2.768 -1.772 0 0 0 0 0 0 0 +-7.359 2.725 -1.759 0 0 0 0 0 0 0 +-7.378 2.719 -1.763 0 0 0 0 0 0 0 +-7.392 2.698 -1.764 0 0 0 0 0 0 0 +-7.415 2.68 -1.768 0 0 0 0 0 0 0 +-7.405 2.65 -1.763 0 0 0 0 0 0 0 +-7.434 2.634 -1.769 0 0 0 0 0 0 0 +-7.416 2.602 -1.762 0 0 0 0 0 0 0 +-7.424 2.578 -1.762 0 0 0 0 0 0 0 +-7.453 2.562 -1.767 0 0 0 0 0 0 0 +-7.44 2.545 -1.763 0 0 0 0 0 0 0 +-7.459 2.525 -1.766 0 0 0 0 0 0 0 +-7.467 2.502 -1.766 0 0 0 0 0 0 0 +-7.468 2.476 -1.764 0 0 0 0 0 0 0 +-7.462 2.448 -1.761 0 0 0 0 0 0 0 +-7.481 2.428 -1.763 0 0 0 0 0 0 0 +-7.491 2.405 -1.764 0 0 0 0 0 0 0 +-7.496 2.394 -1.764 0 0 0 0 0 0 0 +-7.493 2.367 -1.762 0 0 0 0 0 0 0 +-7.518 2.349 -1.766 0 0 0 0 0 0 0 +-7.524 2.325 -1.766 0 0 0 0 0 0 0 +-7.527 2.3 -1.765 0 0 0 0 0 0 0 +-7.55 2.281 -1.769 0 0 0 0 0 0 0 +-7.56 2.259 -1.77 0 0 0 0 0 0 0 +-7.558 2.245 -1.768 0 0 0 0 0 0 0 +-7.571 2.223 -1.77 0 0 0 0 0 0 0 +-7.567 2.196 -1.767 0 0 0 0 0 0 0 +-7.564 2.169 -1.764 0 0 0 0 0 0 0 +-7.601 2.154 -1.772 0 0 0 0 0 0 0 +-7.602 2.129 -1.77 0 0 0 0 0 0 0 +-7.607 2.104 -1.77 0 0 0 0 0 0 0 +-7.621 2.095 -1.773 0 0 0 0 0 0 0 +-7.62 2.069 -1.771 0 0 0 0 0 0 0 +-7.623 2.044 -1.77 0 0 0 0 0 0 0 +-7.633 2.021 -1.771 0 0 0 0 0 0 0 +-7.632 1.996 -1.769 0 0 0 0 0 0 0 +-7.635 1.971 -1.768 0 0 0 0 0 0 0 +-7.656 1.95 -1.772 0 0 0 0 0 0 0 +-7.642 1.934 -1.768 0 0 0 0 0 0 0 +-7.661 1.913 -1.771 0 0 0 0 0 0 0 +-7.493 1.846 -1.728 0 0 0 0 0 0 0 +-7.171 1.741 -1.647 0 0 0 0 0 0 0 +-7.15 1.712 -1.64 0 0 0 0 0 0 0 +-7.14 1.686 -1.637 0 0 0 0 0 0 0 +-7.136 1.662 -1.634 0 0 0 0 0 0 0 +-7.15 1.641 -1.637 0 0 0 0 0 0 0 +-7.162 1.632 -1.639 0 0 0 0 0 0 0 +-7.167 1.61 -1.639 0 0 0 0 0 0 0 +-7.127 1.577 -1.628 0 0 0 0 0 0 0 +-7.069 1.541 -1.612 0 0 0 0 0 0 0 +-7.146 1.534 -1.63 0 0 0 0 0 0 0 +-7.202 1.523 -1.643 0 0 0 0 0 0 0 +-7.276 1.515 -1.659 0 0 0 0 0 0 0 +-7.312 1.511 -1.668 0 0 0 0 0 0 0 +-7.363 1.497 -1.679 0 0 0 0 0 0 0 +-7.403 1.481 -1.688 0 0 0 0 0 0 0 +-7.629 1.502 -1.742 0 0 0 0 0 0 0 +-7.703 1.492 -1.759 0 0 0 0 0 0 0 +-7.755 1.477 -1.77 0 0 0 0 0 0 0 +-7.767 1.454 -1.772 0 0 0 0 0 0 0 +-7.758 1.44 -1.77 0 0 0 0 0 0 0 +-7.766 1.416 -1.77 0 0 0 0 0 0 0 +-7.771 1.392 -1.77 0 0 0 0 0 0 0 +-7.76 1.364 -1.767 0 0 0 0 0 0 0 +-7.781 1.343 -1.771 0 0 0 0 0 0 0 +-7.799 1.321 -1.774 0 0 0 0 0 0 0 +-7.799 1.296 -1.773 0 0 0 0 0 0 0 +-7.811 1.285 -1.776 0 0 0 0 0 0 0 +-7.807 1.259 -1.774 0 0 0 0 0 0 0 +-7.821 1.236 -1.776 0 0 0 0 0 0 0 +-6.933 1.071 -1.56 0 0 0 0 0 0 0 +-6.927 1.047 -1.557 0 0 0 0 0 0 0 +-6.924 1.025 -1.556 0 0 0 0 0 0 0 +-6.964 1.008 -1.565 0 0 0 0 0 0 0 +-6.942 0.983 -1.559 0 0 0 0 0 0 0 +-6.938 0.96 -1.557 0 0 0 0 0 0 0 +-6.953 0.951 -1.56 0 0 0 0 0 0 0 +-6.956 0.929 -1.56 0 0 0 0 0 0 0 +-6.964 0.908 -1.562 0 0 0 0 0 0 0 +-6.971 0.887 -1.562 0 0 0 0 0 0 0 +-6.983 0.866 -1.565 0 0 0 0 0 0 0 +-6.992 0.845 -1.566 0 0 0 0 0 0 0 +-6.985 0.822 -1.564 0 0 0 0 0 0 0 +-6.996 0.812 -1.566 0 0 0 0 0 0 0 +-6.992 0.789 -1.565 0 0 0 0 0 0 0 +-7.001 0.768 -1.566 0 0 0 0 0 0 0 +-7.001 0.746 -1.566 0 0 0 0 0 0 0 +-7.017 0.725 -1.569 0 0 0 0 0 0 0 +-7.029 0.704 -1.571 0 0 0 0 0 0 0 +-7.023 0.681 -1.569 0 0 0 0 0 0 0 +-7.03 0.671 -1.571 0 0 0 0 0 0 0 +-7.03 0.649 -1.57 0 0 0 0 0 0 0 +-7.052 0.628 -1.575 0 0 0 0 0 0 0 +-7.044 0.605 -1.573 0 0 0 0 0 0 0 +-7.077 0.586 -1.58 0 0 0 0 0 0 0 +-7.063 0.562 -1.576 0 0 0 0 0 0 0 +-7.094 0.542 -1.583 0 0 0 0 0 0 0 +-7.062 0.529 -1.576 0 0 0 0 0 0 0 +-7.085 0.508 -1.581 0 0 0 0 0 0 0 +-7.125 0.489 -1.59 0 0 0 0 0 0 0 +-7.109 0.465 -1.586 0 0 0 0 0 0 0 +-7.147 0.445 -1.595 0 0 0 0 0 0 0 +-7.151 0.423 -1.595 0 0 0 0 0 0 0 +-7.179 0.402 -1.602 0 0 0 0 0 0 0 +-7.164 0.39 -1.598 0 0 0 0 0 0 0 +-7.189 0.369 -1.603 0 0 0 0 0 0 0 +-7.209 0.347 -1.608 0 0 0 0 0 0 0 +-7.239 0.326 -1.615 0 0 0 0 0 0 0 +-7.268 0.304 -1.622 0 0 0 0 0 0 0 +-7.272 0.282 -1.623 0 0 0 0 0 0 0 +-7.299 0.26 -1.629 0 0 0 0 0 0 0 +-7.346 0.238 -1.64 0 0 0 0 0 0 0 +-7.442 0.23 -1.663 0 0 0 0 0 0 0 +-7.51 0.209 -1.679 0 0 0 0 0 0 0 +-7.618 0.188 -1.705 0 0 0 0 0 0 0 +-7.681 0.166 -1.72 0 0 0 0 0 0 0 +-8.019 0.149 -1.801 0 0 0 0 0 0 0 +-8.356 0.13 -1.881 0 0 0 0 0 0 0 +-8.366 0.104 -1.884 0 0 0 0 0 0 0 +-8.372 0.091 -1.885 0 0 0 0 0 0 0 +-8.371 0.065 -1.885 0 0 0 0 0 0 0 +-8.379 0.039 -1.887 0 0 0 0 0 0 0 +-8.388 0.012 -1.889 0 0 0 0 0 0 0 +-8.379 -0.014 -1.887 0 0 0 0 0 0 0 +-8.375 -0.04 -1.886 0 0 0 0 0 0 0 +-8.38 -0.067 -1.887 0 0 0 0 0 0 0 +-8.388 -0.08 -1.889 0 0 0 0 0 0 0 +-8.386 -0.106 -1.888 0 0 0 0 0 0 0 +-8.374 -0.132 -1.886 0 0 0 0 0 0 0 +-8.397 -0.159 -1.891 0 0 0 0 0 0 0 +-8.369 -0.185 -1.885 0 0 0 0 0 0 0 +-8.38 -0.212 -1.888 0 0 0 0 0 0 0 +-8.387 -0.238 -1.889 0 0 0 0 0 0 0 +-8.383 -0.251 -1.888 0 0 0 0 0 0 0 +-8.372 -0.277 -1.886 0 0 0 0 0 0 0 +-8.344 -0.303 -1.88 0 0 0 0 0 0 0 +-8.345 -0.329 -1.88 0 0 0 0 0 0 0 +-8.359 -0.356 -1.884 0 0 0 0 0 0 0 +-8.368 -0.382 -1.886 0 0 0 0 0 0 0 +-8.355 -0.408 -1.883 0 0 0 0 0 0 0 +-8.38 -0.422 -1.889 0 0 0 0 0 0 0 +-8.367 -0.448 -1.887 0 0 0 0 0 0 0 +-8.348 -0.474 -1.882 0 0 0 0 0 0 0 +-8.348 -0.5 -1.883 0 0 0 0 0 0 0 +-8.36 -0.527 -1.886 0 0 0 0 0 0 0 +-8.343 -0.552 -1.882 0 0 0 0 0 0 0 +-8.335 -0.578 -1.881 0 0 0 0 0 0 0 +-8.354 -0.592 -1.886 0 0 0 0 0 0 0 +-8.35 -0.619 -1.885 0 0 0 0 0 0 0 +-8.327 -0.643 -1.88 0 0 0 0 0 0 0 +-8.358 -0.672 -1.888 0 0 0 0 0 0 0 +-8.336 -0.697 -1.883 0 0 0 0 0 0 0 +-8.328 -0.722 -1.882 0 0 0 0 0 0 0 +-8.353 -0.751 -1.888 0 0 0 0 0 0 0 +-8.33 -0.762 -1.883 0 0 0 0 0 0 0 +-8.322 -0.788 -1.882 0 0 0 0 0 0 0 +-8.322 -0.814 -1.882 0 0 0 0 0 0 0 +-8.321 -0.84 -1.883 0 0 0 0 0 0 0 +-8.324 -0.867 -1.884 0 0 0 0 0 0 0 +-8.315 -0.893 -1.883 0 0 0 0 0 0 0 +-8.322 -0.92 -1.885 0 0 0 0 0 0 0 +-8.308 -0.945 -1.882 0 0 0 0 0 0 0 +-8.304 -0.957 -1.882 0 0 0 0 0 0 0 +-8.297 -0.983 -1.881 0 0 0 0 0 0 0 +-8.298 -1.01 -1.882 0 0 0 0 0 0 0 +-8.303 -1.037 -1.884 0 0 0 0 0 0 0 +-8.297 -1.062 -1.883 0 0 0 0 0 0 0 +-8.29 -1.088 -1.882 0 0 0 0 0 0 0 +-8.281 -1.113 -1.881 0 0 0 0 0 0 0 +-8.277 -1.126 -1.881 0 0 0 0 0 0 0 +-8.285 -1.154 -1.883 0 0 0 0 0 0 0 +-8.276 -1.179 -1.882 0 0 0 0 0 0 0 +-8.278 -1.206 -1.883 0 0 0 0 0 0 0 +-8.266 -1.23 -1.881 0 0 0 0 0 0 0 +-8.249 -1.254 -1.878 0 0 0 0 0 0 0 +-8.26 -1.283 -1.882 0 0 0 0 0 0 0 +-8.266 -1.297 -1.884 0 0 0 0 0 0 0 +-8.241 -1.319 -1.879 0 0 0 0 0 0 0 +-8.231 -1.344 -1.877 0 0 0 0 0 0 0 +-8.236 -1.372 -1.88 0 0 0 0 0 0 0 +-8.226 -1.397 -1.878 0 0 0 0 0 0 0 +-8.225 -1.423 -1.879 0 0 0 0 0 0 0 +-8.227 -1.45 -1.881 0 0 0 0 0 0 0 +-8.224 -1.463 -1.881 0 0 0 0 0 0 0 +-8.218 -1.489 -1.88 0 0 0 0 0 0 0 +-8.207 -1.513 -1.879 0 0 0 0 0 0 0 +-8.206 -1.54 -1.88 0 0 0 0 0 0 0 +-8.205 -1.566 -1.881 0 0 0 0 0 0 0 +-8.204 -1.593 -1.881 0 0 0 0 0 0 0 +-8.201 -1.619 -1.882 0 0 0 0 0 0 0 +-8.202 -1.633 -1.883 0 0 0 0 0 0 0 +-8.184 -1.656 -1.88 0 0 0 0 0 0 0 +-8.192 -1.684 -1.883 0 0 0 0 0 0 0 +-8.181 -1.709 -1.881 0 0 0 0 0 0 0 +-8.172 -1.733 -1.881 0 0 0 0 0 0 0 +-8.162 -1.758 -1.88 0 0 0 0 0 0 0 +-8.159 -1.784 -1.88 0 0 0 0 0 0 0 +-8.16 -1.798 -1.881 0 0 0 0 0 0 0 +-8.141 -1.821 -1.878 0 0 0 0 0 0 0 +-8.142 -1.848 -1.88 0 0 0 0 0 0 0 +-8.135 -1.873 -1.879 0 0 0 0 0 0 0 +-8.125 -1.898 -1.878 0 0 0 0 0 0 0 +-8.117 -1.923 -1.878 0 0 0 0 0 0 0 +-8.105 -1.947 -1.876 0 0 0 0 0 0 0 +-8.112 -1.962 -1.879 0 0 0 0 0 0 0 +-8.106 -1.987 -1.879 0 0 0 0 0 0 0 +-8.084 -2.009 -1.875 0 0 0 0 0 0 0 +-8.083 -2.036 -1.876 0 0 0 0 0 0 0 +-8.068 -2.059 -1.874 0 0 0 0 0 0 0 +-8.059 -2.084 -1.874 0 0 0 0 0 0 0 +-8.058 -2.111 -1.875 0 0 0 0 0 0 0 +-8.049 -2.122 -1.874 0 0 0 0 0 0 0 +-8.046 -2.148 -1.874 0 0 0 0 0 0 0 +-8.045 -2.175 -1.876 0 0 0 0 0 0 0 +-8.033 -2.199 -1.874 0 0 0 0 0 0 0 +-8.018 -2.222 -1.873 0 0 0 0 0 0 0 +-8.017 -2.249 -1.874 0 0 0 0 0 0 0 +-8.015 -2.275 -1.875 0 0 0 0 0 0 0 +-7.989 -2.282 -1.87 0 0 0 0 0 0 0 +-8.005 -2.313 -1.875 0 0 0 0 0 0 0 +-7.988 -2.335 -1.873 0 0 0 0 0 0 0 +-7.979 -2.36 -1.873 0 0 0 0 0 0 0 +-7.966 -2.383 -1.871 0 0 0 0 0 0 0 +-7.962 -2.41 -1.872 0 0 0 0 0 0 0 +-7.952 -2.434 -1.872 0 0 0 0 0 0 0 +-7.93 -2.454 -1.868 0 0 0 0 0 0 0 +-7.917 -2.464 -1.866 0 0 0 0 0 0 0 +-7.926 -2.494 -1.87 0 0 0 0 0 0 0 +-7.914 -2.518 -1.869 0 0 0 0 0 0 0 +-7.893 -2.538 -1.866 0 0 0 0 0 0 0 +-7.909 -2.571 -1.872 0 0 0 0 0 0 0 +-7.884 -2.59 -1.867 0 0 0 0 0 0 0 +-7.88 -2.616 -1.868 0 0 0 0 0 0 0 +-7.883 -2.631 -1.87 0 0 0 0 0 0 0 +-7.845 -2.646 -1.863 0 0 0 0 0 0 0 +-7.841 -2.672 -1.864 0 0 0 0 0 0 0 +-7.841 -2.7 -1.866 0 0 0 0 0 0 0 +-7.824 -2.721 -1.864 0 0 0 0 0 0 0 +-7.813 -2.745 -1.863 0 0 0 0 0 0 0 +-7.805 -2.77 -1.863 0 0 0 0 0 0 0 +-7.809 -2.785 -1.866 0 0 0 0 0 0 0 +-7.777 -2.801 -1.86 0 0 0 0 0 0 0 +-7.784 -2.832 -1.864 0 0 0 0 0 0 0 +-7.774 -2.855 -1.863 0 0 0 0 0 0 0 +-7.754 -2.876 -1.86 0 0 0 0 0 0 0 +-7.748 -2.901 -1.861 0 0 0 0 0 0 0 +-7.77 -2.937 -1.869 0 0 0 0 0 0 0 +-7.751 -2.944 -1.866 0 0 0 0 0 0 0 +-7.707 -2.955 -1.857 0 0 0 0 0 0 0 +-7.701 -2.981 -1.858 0 0 0 0 0 0 0 +-7.697 -3.007 -1.859 0 0 0 0 0 0 0 +-7.69 -3.032 -1.86 0 0 0 0 0 0 0 +-7.677 -3.055 -1.859 0 0 0 0 0 0 0 +-7.665 -3.078 -1.858 0 0 0 0 0 0 0 +-7.651 -3.086 -1.856 0 0 0 0 0 0 0 +-7.634 -3.108 -1.854 0 0 0 0 0 0 0 +-7.616 -3.128 -1.852 0 0 0 0 0 0 0 +-7.615 -3.156 -1.854 0 0 0 0 0 0 0 +-7.59 -3.173 -1.85 0 0 0 0 0 0 0 +-7.573 -3.194 -1.848 0 0 0 0 0 0 0 +-7.565 -3.219 -1.849 0 0 0 0 0 0 0 +-7.558 -3.23 -1.848 0 0 0 0 0 0 0 +-7.557 -3.257 -1.851 0 0 0 0 0 0 0 +-7.543 -3.28 -1.85 0 0 0 0 0 0 0 +-7.525 -3.3 -1.848 0 0 0 0 0 0 0 +-7.511 -3.322 -1.847 0 0 0 0 0 0 0 +-7.505 -3.347 -1.848 0 0 0 0 0 0 0 +-7.499 -3.373 -1.849 0 0 0 0 0 0 0 +-7.49 -3.384 -1.848 0 0 0 0 0 0 0 +-7.474 -3.405 -1.847 0 0 0 0 0 0 0 +-7.469 -3.431 -1.848 0 0 0 0 0 0 0 +-7.469 -3.459 -1.851 0 0 0 0 0 0 0 +-7.451 -3.479 -1.849 0 0 0 0 0 0 0 +-7.433 -3.499 -1.847 0 0 0 0 0 0 0 +-7.427 -3.525 -1.849 0 0 0 0 0 0 0 +-7.411 -3.546 -1.847 0 0 0 0 0 0 0 +-7.407 -3.558 -1.848 0 0 0 0 0 0 0 +-7.394 -3.581 -1.847 0 0 0 0 0 0 0 +-7.395 -3.61 -1.851 0 0 0 0 0 0 0 +-7.366 -3.625 -1.846 0 0 0 0 0 0 0 +-7.355 -3.648 -1.846 0 0 0 0 0 0 0 +-7.354 -3.676 -1.849 0 0 0 0 0 0 0 +-7.342 -3.699 -1.849 0 0 0 0 0 0 0 +-7.341 -3.713 -1.85 0 0 0 0 0 0 0 +-7.323 -3.733 -1.848 0 0 0 0 0 0 0 +-7.314 -3.757 -1.849 0 0 0 0 0 0 0 +-7.299 -3.779 -1.848 0 0 0 0 0 0 0 +-7.286 -3.801 -1.848 0 0 0 0 0 0 0 +-7.28 -3.827 -1.85 0 0 0 0 0 0 0 +-7.268 -3.85 -1.85 0 0 0 0 0 0 0 +-7.264 -3.862 -1.85 0 0 0 0 0 0 0 +-7.243 -3.881 -1.848 0 0 0 0 0 0 0 +-7.241 -3.909 -1.851 0 0 0 0 0 0 0 +-7.226 -3.93 -1.85 0 0 0 0 0 0 0 +-7.215 -3.953 -1.85 0 0 0 0 0 0 0 +-7.199 -3.974 -1.849 0 0 0 0 0 0 0 +-7.197 -4.002 -1.852 0 0 0 0 0 0 0 +-7.185 -4.011 -1.851 0 0 0 0 0 0 0 +-7.173 -4.033 -1.851 0 0 0 0 0 0 0 +-7.16 -4.056 -1.851 0 0 0 0 0 0 0 +-7.161 -4.086 -1.854 0 0 0 0 0 0 0 +-7.143 -4.106 -1.853 0 0 0 0 0 0 0 +-7.132 -4.129 -1.853 0 0 0 0 0 0 0 +-7.119 -4.151 -1.853 0 0 0 0 0 0 0 +-7.109 -4.161 -1.853 0 0 0 0 0 0 0 +-7.097 -4.184 -1.853 0 0 0 0 0 0 0 +-7.094 -4.212 -1.856 0 0 0 0 0 0 0 +-7.066 -4.225 -1.852 0 0 0 0 0 0 0 +-7.051 -4.247 -1.851 0 0 0 0 0 0 0 +-7.051 -4.277 -1.855 0 0 0 0 0 0 0 +-7.031 -4.295 -1.853 0 0 0 0 0 0 0 +-7.027 -4.308 -1.854 0 0 0 0 0 0 0 +-7.022 -4.335 -1.856 0 0 0 0 0 0 0 +-7.007 -4.356 -1.856 0 0 0 0 0 0 0 +-6.986 -4.374 -1.854 0 0 0 0 0 0 0 +-6.989 -4.406 -1.859 0 0 0 0 0 0 0 +-6.965 -4.422 -1.856 0 0 0 0 0 0 0 +-6.948 -4.442 -1.855 0 0 0 0 0 0 0 +-6.939 -4.451 -1.854 0 0 0 0 0 0 0 +-6.925 -4.473 -1.854 0 0 0 0 0 0 0 +-6.915 -4.497 -1.855 0 0 0 0 0 0 0 +-6.897 -4.517 -1.854 0 0 0 0 0 0 0 +-6.868 -4.529 -1.85 0 0 0 0 0 0 0 +-6.874 -4.563 -1.856 0 0 0 0 0 0 0 +-6.864 -4.588 -1.857 0 0 0 0 0 0 0 +-6.846 -4.607 -1.856 0 0 0 0 0 0 0 +-6.834 -4.615 -1.855 0 0 0 0 0 0 0 +-6.852 -4.658 -1.864 0 0 0 0 0 0 0 +-6.81 -4.661 -1.856 0 0 0 0 0 0 0 +-6.803 -4.688 -1.859 0 0 0 0 0 0 0 +-6.782 -4.705 -1.857 0 0 0 0 0 0 0 +-6.769 -4.727 -1.857 0 0 0 0 0 0 0 +-6.76 -4.753 -1.859 0 0 0 0 0 0 0 +-6.759 -4.768 -1.861 0 0 0 0 0 0 0 +-6.722 -4.773 -1.854 0 0 0 0 0 0 0 +-6.739 -4.817 -1.864 0 0 0 0 0 0 0 +-6.7 -4.821 -1.857 0 0 0 0 0 0 0 +-6.672 -4.833 -1.853 0 0 0 0 0 0 0 +-6.655 -4.853 -1.853 0 0 0 0 0 0 0 +-6.635 -4.87 -1.851 0 0 0 0 0 0 0 +-6.604 -4.864 -1.844 0 0 0 0 0 0 0 +-6.6 -4.892 -1.847 0 0 0 0 0 0 0 +-6.591 -4.918 -1.849 0 0 0 0 0 0 0 +-6.56 -4.927 -1.845 0 0 0 0 0 0 0 +-6.558 -4.958 -1.849 0 0 0 0 0 0 0 +-6.528 -4.968 -1.845 0 0 0 0 0 0 0 +-6.51 -4.986 -1.844 0 0 0 0 0 0 0 +-6.511 -5.003 -1.846 0 0 0 0 0 0 0 +-6.495 -5.024 -1.846 0 0 0 0 0 0 0 +-6.481 -5.045 -1.847 0 0 0 0 0 0 0 +-6.459 -5.061 -1.845 0 0 0 0 0 0 0 +-6.451 -5.087 -1.847 0 0 0 0 0 0 0 +-6.427 -5.101 -1.845 0 0 0 0 0 0 0 +-6.413 -5.123 -1.846 0 0 0 0 0 0 0 +-6.409 -5.136 -1.847 0 0 0 0 0 0 0 +-6.388 -5.153 -1.846 0 0 0 0 0 0 0 +-6.377 -5.177 -1.847 0 0 0 0 0 0 0 +-6.356 -5.193 -1.846 0 0 0 0 0 0 0 +-6.326 -5.202 -1.841 0 0 0 0 0 0 0 +-6.31 -5.222 -1.841 0 0 0 0 0 0 0 +-6.298 -5.245 -1.843 0 0 0 0 0 0 0 +-6.289 -5.255 -1.843 0 0 0 0 0 0 0 +-6.27 -5.272 -1.842 0 0 0 0 0 0 0 +-6.25 -5.289 -1.841 0 0 0 0 0 0 0 +-6.237 -5.312 -1.842 0 0 0 0 0 0 0 +-6.211 -5.324 -1.839 0 0 0 0 0 0 0 +-6.193 -5.342 -1.839 0 0 0 0 0 0 0 +-6.172 -5.357 -1.837 0 0 0 0 0 0 0 +-6.171 -5.374 -1.839 0 0 0 0 0 0 0 +-6.154 -5.393 -1.839 0 0 0 0 0 0 0 +-6.142 -5.417 -1.841 0 0 0 0 0 0 0 +-6.108 -5.421 -1.836 0 0 0 0 0 0 0 +-6.098 -5.447 -1.838 0 0 0 0 0 0 0 +-6.08 -5.465 -1.838 0 0 0 0 0 0 0 +-6.061 -5.482 -1.837 0 0 0 0 0 0 0 +-6.051 -5.491 -1.837 0 0 0 0 0 0 0 +-6.032 -5.508 -1.836 0 0 0 0 0 0 0 +-6.019 -5.531 -1.838 0 0 0 0 0 0 0 +-5.995 -5.543 -1.835 0 0 0 0 0 0 0 +-5.981 -5.566 -1.837 0 0 0 0 0 0 0 +-5.964 -5.585 -1.837 0 0 0 0 0 0 0 +-5.948 -5.605 -1.837 0 0 0 0 0 0 0 +-5.939 -5.614 -1.837 0 0 0 0 0 0 0 +-5.913 -5.625 -1.834 0 0 0 0 0 0 0 +-5.889 -5.638 -1.832 0 0 0 0 0 0 0 +-5.877 -5.662 -1.834 0 0 0 0 0 0 0 +-5.858 -5.679 -1.834 0 0 0 0 0 0 0 +-5.843 -5.7 -1.835 0 0 0 0 0 0 0 +-5.822 -5.716 -1.834 0 0 0 0 0 0 0 +-5.815 -5.726 -1.834 0 0 0 0 0 0 0 +-5.783 -5.731 -1.83 0 0 0 0 0 0 0 +-5.77 -5.754 -1.832 0 0 0 0 0 0 0 +-5.756 -5.777 -1.833 0 0 0 0 0 0 0 +-5.737 -5.793 -1.832 0 0 0 0 0 0 0 +-5.719 -5.811 -1.832 0 0 0 0 0 0 0 +-5.7 -5.829 -1.832 0 0 0 0 0 0 0 +-5.69 -5.837 -1.832 0 0 0 0 0 0 0 +-5.681 -5.864 -1.835 0 0 0 0 0 0 0 +-5.66 -5.879 -1.834 0 0 0 0 0 0 0 +-5.645 -5.901 -1.836 0 0 0 0 0 0 0 +-5.624 -5.916 -1.835 0 0 0 0 0 0 0 +-5.597 -5.925 -1.832 0 0 0 0 0 0 0 +-5.588 -5.953 -1.835 0 0 0 0 0 0 0 +-5.571 -5.953 -1.832 0 0 0 0 0 0 0 +-5.556 -5.975 -1.834 0 0 0 0 0 0 0 +-5.552 -6.008 -1.839 0 0 0 0 0 0 0 +-5.533 -6.025 -1.839 0 0 0 0 0 0 0 +-5.507 -6.036 -1.837 0 0 0 0 0 0 0 +-5.495 -6.06 -1.839 0 0 0 0 0 0 0 +-5.474 -6.076 -1.839 0 0 0 0 0 0 0 +-5.472 -6.112 -1.845 0 0 0 0 0 0 0 +-5.463 -6.12 -1.845 0 0 0 0 0 0 0 +-5.445 -6.139 -1.845 0 0 0 0 0 0 0 +-5.389 -6.115 -1.832 0 0 0 0 0 0 0 +-5.36 -6.121 -1.828 0 0 0 0 0 0 0 +-5.333 -6.129 -1.825 0 0 0 0 0 0 0 +-5.322 -6.156 -1.829 0 0 0 0 0 0 0 +-5.276 -6.141 -1.819 0 0 0 0 0 0 0 +-5.273 -6.157 -1.821 0 0 0 0 0 0 0 +-5.247 -6.166 -1.819 0 0 0 0 0 0 0 +-5.231 -6.186 -1.82 0 0 0 0 0 0 0 +-5.204 -6.193 -1.817 0 0 0 0 0 0 0 +-5.187 -6.212 -1.818 0 0 0 0 0 0 0 +-5.173 -6.236 -1.82 0 0 0 0 0 0 0 +-5.144 -6.24 -1.817 0 0 0 0 0 0 0 +-5.13 -6.244 -1.815 0 0 0 0 0 0 0 +-5.127 -6.28 -1.821 0 0 0 0 0 0 0 +-5.093 -6.279 -1.816 0 0 0 0 0 0 0 +-5.074 -6.295 -1.816 0 0 0 0 0 0 0 +-5.061 -6.32 -1.819 0 0 0 0 0 0 0 +-5.031 -6.324 -1.815 0 0 0 0 0 0 0 +-5.002 -6.327 -1.811 0 0 0 0 0 0 0 +-4.997 -6.341 -1.813 0 0 0 0 0 0 0 +-4.973 -6.352 -1.812 0 0 0 0 0 0 0 +-4.958 -6.374 -1.814 0 0 0 0 0 0 0 +-4.942 -6.394 -1.815 0 0 0 0 0 0 0 +-4.905 -6.388 -1.809 0 0 0 0 0 0 0 +-4.885 -6.404 -1.809 0 0 0 0 0 0 0 +-4.878 -6.436 -1.814 0 0 0 0 0 0 0 +-4.851 -6.422 -1.807 0 0 0 0 0 0 0 +-4.831 -6.437 -1.807 0 0 0 0 0 0 0 +-4.824 -6.471 -1.813 0 0 0 0 0 0 0 +-4.788 -6.464 -1.806 0 0 0 0 0 0 0 +-4.77 -6.482 -1.807 0 0 0 0 0 0 0 +-4.761 -6.513 -1.812 0 0 0 0 0 0 0 +-4.726 -6.507 -1.806 0 0 0 0 0 0 0 +-4.718 -6.518 -1.807 0 0 0 0 0 0 0 +-4.703 -6.541 -1.809 0 0 0 0 0 0 0 +-4.675 -6.546 -1.806 0 0 0 0 0 0 0 +-4.655 -6.561 -1.806 0 0 0 0 0 0 0 +-4.638 -6.58 -1.808 0 0 0 0 0 0 0 +-4.614 -6.59 -1.806 0 0 0 0 0 0 0 +-4.591 -6.601 -1.805 0 0 0 0 0 0 0 +-4.585 -6.615 -1.807 0 0 0 0 0 0 0 +-4.553 -6.613 -1.803 0 0 0 0 0 0 0 +-4.54 -6.638 -1.806 0 0 0 0 0 0 0 +-4.519 -6.653 -1.806 0 0 0 0 0 0 0 +-4.489 -6.654 -1.802 0 0 0 0 0 0 0 +-4.476 -6.679 -1.805 0 0 0 0 0 0 0 +-4.454 -6.692 -1.805 0 0 0 0 0 0 0 +-4.434 -6.684 -1.801 0 0 0 0 0 0 0 +-4.417 -6.705 -1.803 0 0 0 0 0 0 0 +-4.4 -6.725 -1.804 0 0 0 0 0 0 0 +-4.374 -6.731 -1.802 0 0 0 0 0 0 0 +-4.36 -6.756 -1.805 0 0 0 0 0 0 0 +-4.332 -6.76 -1.803 0 0 0 0 0 0 0 +-4.308 -6.768 -1.801 0 0 0 0 0 0 0 +-4.299 -6.778 -1.802 0 0 0 0 0 0 0 +-4.275 -6.787 -1.801 0 0 0 0 0 0 0 +-4.252 -6.799 -1.8 0 0 0 0 0 0 0 +-4.23 -6.81 -1.8 0 0 0 0 0 0 0 +-4.212 -6.828 -1.801 0 0 0 0 0 0 0 +-4.188 -6.838 -1.8 0 0 0 0 0 0 0 +-4.165 -6.848 -1.799 0 0 0 0 0 0 0 +-4.154 -6.855 -1.799 0 0 0 0 0 0 0 +-4.135 -6.873 -1.801 0 0 0 0 0 0 0 +-4.115 -6.887 -1.801 0 0 0 0 0 0 0 +-4.098 -6.909 -1.804 0 0 0 0 0 0 0 +-4.082 -6.931 -1.806 0 0 0 0 0 0 0 +-4.064 -6.951 -1.808 0 0 0 0 0 0 0 +-4.053 -6.982 -1.813 0 0 0 0 0 0 0 +-4.048 -6.999 -1.816 0 0 0 0 0 0 0 +-4.036 -7.028 -1.821 0 0 0 0 0 0 0 +-4.019 -7.049 -1.823 0 0 0 0 0 0 0 +-3.998 -7.063 -1.824 0 0 0 0 0 0 0 +-3.997 -7.115 -1.834 0 0 0 0 0 0 0 +-3.974 -7.126 -1.834 0 0 0 0 0 0 0 +-3.939 -7.116 -1.828 0 0 0 0 0 0 0 +-3.934 -7.132 -1.831 0 0 0 0 0 0 0 +-3.914 -7.15 -1.832 0 0 0 0 0 0 0 +-3.884 -7.148 -1.828 0 0 0 0 0 0 0 +-3.842 -7.125 -1.818 0 0 0 0 0 0 0 +-3.801 -7.103 -1.809 0 0 0 0 0 0 0 +-3.785 -7.125 -1.812 0 0 0 0 0 0 0 +-3.759 -7.131 -1.811 0 0 0 0 0 0 0 +-3.74 -7.148 -1.812 0 0 0 0 0 0 0 +-3.723 -7.144 -1.809 0 0 0 0 0 0 0 +-3.702 -7.157 -1.81 0 0 0 0 0 0 0 +-3.681 -7.172 -1.811 0 0 0 0 0 0 0 +-3.653 -7.174 -1.808 0 0 0 0 0 0 0 +-3.63 -7.183 -1.807 0 0 0 0 0 0 0 +-3.605 -7.191 -1.806 0 0 0 0 0 0 0 +-3.578 -7.194 -1.804 0 0 0 0 0 0 0 +-3.575 -7.215 -1.808 0 0 0 0 0 0 0 +-3.547 -7.216 -1.805 0 0 0 0 0 0 0 +-3.533 -7.244 -1.81 0 0 0 0 0 0 0 +-3.501 -7.238 -1.805 0 0 0 0 0 0 0 +-3.48 -7.251 -1.806 0 0 0 0 0 0 0 +-3.458 -7.263 -1.806 0 0 0 0 0 0 0 +-3.439 -7.253 -1.802 0 0 0 0 0 0 0 +-3.421 -7.274 -1.805 0 0 0 0 0 0 0 +-3.399 -7.287 -1.805 0 0 0 0 0 0 0 +-3.376 -7.297 -1.805 0 0 0 0 0 0 0 +-3.361 -7.325 -1.81 0 0 0 0 0 0 0 +-3.332 -7.324 -1.807 0 0 0 0 0 0 0 +-3.304 -7.322 -1.804 0 0 0 0 0 0 0 +-3.279 -7.328 -1.803 0 0 0 0 0 0 0 +-3.273 -7.346 -1.806 0 0 0 0 0 0 0 +-3.243 -7.34 -1.802 0 0 0 0 0 0 0 +-3.226 -7.365 -1.805 0 0 0 0 0 0 0 +-3.199 -7.366 -1.803 0 0 0 0 0 0 0 +-3.178 -7.379 -1.804 0 0 0 0 0 0 0 +-3.157 -7.395 -1.805 0 0 0 0 0 0 0 +-3.127 -7.39 -1.802 0 0 0 0 0 0 0 +-3.121 -7.408 -1.805 0 0 0 0 0 0 0 +-3.097 -7.416 -1.804 0 0 0 0 0 0 0 +-3.068 -7.411 -1.801 0 0 0 0 0 0 0 +-3.047 -7.426 -1.802 0 0 0 0 0 0 0 +-3.019 -7.425 -1.799 0 0 0 0 0 0 0 +-2.993 -7.429 -1.798 0 0 0 0 0 0 0 +-2.968 -7.435 -1.797 0 0 0 0 0 0 0 +-2.957 -7.439 -1.797 0 0 0 0 0 0 0 +-2.936 -7.454 -1.798 0 0 0 0 0 0 0 +-2.909 -7.456 -1.797 0 0 0 0 0 0 0 +-2.887 -7.467 -1.797 0 0 0 0 0 0 0 +-2.864 -7.479 -1.798 0 0 0 0 0 0 0 +-2.839 -7.483 -1.797 0 0 0 0 0 0 0 +-2.815 -7.49 -1.796 0 0 0 0 0 0 0 +-2.807 -7.505 -1.799 0 0 0 0 0 0 0 +-2.784 -7.516 -1.799 0 0 0 0 0 0 0 +-2.758 -7.517 -1.797 0 0 0 0 0 0 0 +-2.737 -7.535 -1.8 0 0 0 0 0 0 0 +-2.714 -7.546 -1.8 0 0 0 0 0 0 0 +-2.693 -7.561 -1.802 0 0 0 0 0 0 0 +-2.677 -7.59 -1.807 0 0 0 0 0 0 0 +-2.674 -7.62 -1.814 0 0 0 0 0 0 0 +-2.654 -7.639 -1.817 0 0 0 0 0 0 0 +-2.622 -7.625 -1.811 0 0 0 0 0 0 0 +-2.594 -7.623 -1.808 0 0 0 0 0 0 0 +-2.586 -7.677 -1.82 0 0 0 0 0 0 0 +-2.578 -7.731 -1.832 0 0 0 0 0 0 0 +-2.559 -7.756 -1.836 0 0 0 0 0 0 0 +-2.529 -7.708 -1.823 0 0 0 0 0 0 0 +-2.482 -7.644 -1.804 0 0 0 0 0 0 0 +-2.467 -7.679 -1.811 0 0 0 0 0 0 0 +-2.445 -7.694 -1.813 0 0 0 0 0 0 0 +-2.405 -7.652 -1.801 0 0 0 0 0 0 0 +-2.377 -7.648 -1.798 0 0 0 0 0 0 0 +-2.355 -7.661 -1.799 0 0 0 0 0 0 0 +-2.335 -7.641 -1.793 0 0 0 0 0 0 0 +-2.312 -7.65 -1.794 0 0 0 0 0 0 0 +-2.286 -7.652 -1.792 0 0 0 0 0 0 0 +-2.255 -7.636 -1.787 0 0 0 0 0 0 0 +-2.232 -7.645 -1.787 0 0 0 0 0 0 0 +-2.205 -7.641 -1.784 0 0 0 0 0 0 0 +-2.182 -7.654 -1.786 0 0 0 0 0 0 0 +-2.169 -7.653 -1.785 0 0 0 0 0 0 0 +-2.145 -7.658 -1.784 0 0 0 0 0 0 0 +-2.117 -7.654 -1.782 0 0 0 0 0 0 0 +-2.092 -7.655 -1.78 0 0 0 0 0 0 0 +-2.071 -7.672 -1.783 0 0 0 0 0 0 0 +-2.044 -7.67 -1.781 0 0 0 0 0 0 0 +-2.015 -7.657 -1.776 0 0 0 0 0 0 0 +-1.996 -7.632 -1.769 0 0 0 0 0 0 0 +-1.973 -7.642 -1.77 0 0 0 0 0 0 0 +-1.947 -7.643 -1.769 0 0 0 0 0 0 0 +-1.923 -7.647 -1.768 0 0 0 0 0 0 0 +-1.898 -7.649 -1.767 0 0 0 0 0 0 0 +-1.872 -7.647 -1.765 0 0 0 0 0 0 0 +-1.849 -7.661 -1.767 0 0 0 0 0 0 0 +-1.832 -7.643 -1.762 0 0 0 0 0 0 0 +-1.808 -7.649 -1.762 0 0 0 0 0 0 0 +-1.785 -7.656 -1.763 0 0 0 0 0 0 0 +-1.763 -7.673 -1.765 0 0 0 0 0 0 0 +-1.737 -7.671 -1.763 0 0 0 0 0 0 0 +-1.713 -7.673 -1.763 0 0 0 0 0 0 0 +-1.69 -7.684 -1.764 0 0 0 0 0 0 0 +-1.678 -7.688 -1.764 0 0 0 0 0 0 0 +-1.652 -7.686 -1.763 0 0 0 0 0 0 0 +-1.628 -7.691 -1.763 0 0 0 0 0 0 0 +-1.602 -7.688 -1.761 0 0 0 0 0 0 0 +-1.577 -7.69 -1.76 0 0 0 0 0 0 0 +-1.551 -7.683 -1.757 0 0 0 0 0 0 0 +-1.527 -7.69 -1.757 0 0 0 0 0 0 0 +-1.515 -7.694 -1.758 0 0 0 0 0 0 0 +-1.496 -7.726 -1.764 0 0 0 0 0 0 0 +-1.472 -7.728 -1.764 0 0 0 0 0 0 0 +-1.446 -7.727 -1.763 0 0 0 0 0 0 0 +-1.421 -7.724 -1.761 0 0 0 0 0 0 0 +-1.398 -7.736 -1.763 0 0 0 0 0 0 0 +-1.374 -7.744 -1.763 0 0 0 0 0 0 0 +-1.36 -7.737 -1.761 0 0 0 0 0 0 0 +-1.337 -7.747 -1.763 0 0 0 0 0 0 0 +-1.311 -7.741 -1.76 0 0 0 0 0 0 0 +-1.283 -7.726 -1.756 0 0 0 0 0 0 0 +-1.258 -7.723 -1.754 0 0 0 0 0 0 0 +-1.234 -7.73 -1.755 0 0 0 0 0 0 0 +-1.211 -7.738 -1.756 0 0 0 0 0 0 0 +-1.199 -7.742 -1.756 0 0 0 0 0 0 0 +-1.173 -7.736 -1.754 0 0 0 0 0 0 0 +-1.149 -7.745 -1.755 0 0 0 0 0 0 0 +-1.126 -7.753 -1.756 0 0 0 0 0 0 0 +-1.102 -7.762 -1.757 0 0 0 0 0 0 0 +-1.078 -7.767 -1.758 0 0 0 0 0 0 0 +-1.053 -7.767 -1.757 0 0 0 0 0 0 0 +-1.029 -7.776 -1.758 0 0 0 0 0 0 0 +-1.017 -7.776 -1.758 0 0 0 0 0 0 0 +-0.992 -7.777 -1.757 0 0 0 0 0 0 0 +-0.969 -7.786 -1.759 0 0 0 0 0 0 0 +-0.944 -7.791 -1.759 0 0 0 0 0 0 0 +-0.92 -7.794 -1.759 0 0 0 0 0 0 0 +-0.897 -7.806 -1.762 0 0 0 0 0 0 0 +-0.873 -7.817 -1.763 0 0 0 0 0 0 0 +-0.86 -7.808 -1.761 0 0 0 0 0 0 0 +-0.835 -7.811 -1.761 0 0 0 0 0 0 0 +-0.812 -7.823 -1.763 0 0 0 0 0 0 0 +-0.787 -7.822 -1.763 0 0 0 0 0 0 0 +-0.764 -7.842 -1.767 0 0 0 0 0 0 0 +-0.739 -7.844 -1.767 0 0 0 0 0 0 0 +-0.727 -7.845 -1.767 0 0 0 0 0 0 0 +-0.701 -7.84 -1.765 0 0 0 0 0 0 0 +-0.677 -7.846 -1.766 0 0 0 0 0 0 0 +-0.653 -7.854 -1.767 0 0 0 0 0 0 0 +-0.63 -7.871 -1.771 0 0 0 0 0 0 0 +-0.602 -7.838 -1.763 0 0 0 0 0 0 0 +-0.578 -7.854 -1.766 0 0 0 0 0 0 0 +-0.554 -7.856 -1.766 0 0 0 0 0 0 0 +-0.541 -7.847 -1.763 0 0 0 0 0 0 0 +-0.517 -7.86 -1.766 0 0 0 0 0 0 0 +-0.492 -7.865 -1.767 0 0 0 0 0 0 0 +-0.468 -7.871 -1.768 0 0 0 0 0 0 0 +-0.444 -7.88 -1.77 0 0 0 0 0 0 0 +-0.419 -7.881 -1.77 0 0 0 0 0 0 0 +-0.394 -7.883 -1.77 0 0 0 0 0 0 0 +-0.382 -7.883 -1.77 0 0 0 0 0 0 0 +-0.358 -7.9 -1.774 0 0 0 0 0 0 0 +-0.333 -7.903 -1.774 0 0 0 0 0 0 0 +-0.308 -7.904 -1.774 0 0 0 0 0 0 0 +-0.283 -7.903 -1.774 0 0 0 0 0 0 0 +-0.259 -7.91 -1.775 0 0 0 0 0 0 0 +-0.234 -7.922 -1.778 0 0 0 0 0 0 0 +-0.222 -7.919 -1.777 0 0 0 0 0 0 0 +-0.197 -7.935 -1.781 0 0 0 0 0 0 0 +-0.172 -7.933 -1.78 0 0 0 0 0 0 0 +-0.147 -7.94 -1.782 0 0 0 0 0 0 0 +-0.123 -7.942 -1.782 0 0 0 0 0 0 0 +-0.098 -7.96 -1.786 0 0 0 0 0 0 0 +-0.073 -7.96 -1.786 0 0 0 0 0 0 0 +-0.06 -7.964 -1.787 0 0 0 0 0 0 0 +-0.035 -7.945 -1.783 0 0 0 0 0 0 0 +-0.01 -7.968 -1.788 0 0 0 0 0 0 0 +0.015 -7.984 -1.792 0 0 0 0 0 0 0 +0.04 -7.978 -1.791 0 0 0 0 0 0 0 +0.065 -7.974 -1.79 0 0 0 0 0 0 0 +0.09 -7.956 -1.785 0 0 0 0 0 0 0 +0.102 -7.96 -1.786 0 0 0 0 0 0 0 +0.127 -7.983 -1.792 0 0 0 0 0 0 0 +0.152 -7.957 -1.786 0 0 0 0 0 0 0 +0.177 -7.957 -1.786 0 0 0 0 0 0 0 +0.203 -7.974 -1.79 0 0 0 0 0 0 0 +0.227 -7.959 -1.787 0 0 0 0 0 0 0 +0.252 -7.957 -1.786 0 0 0 0 0 0 0 +0.265 -7.97 -1.79 0 0 0 0 0 0 0 +0.29 -7.959 -1.787 0 0 0 0 0 0 0 +0.315 -7.956 -1.787 0 0 0 0 0 0 0 +0.34 -7.967 -1.79 0 0 0 0 0 0 0 +0.365 -7.962 -1.789 0 0 0 0 0 0 0 +0.39 -7.961 -1.789 0 0 0 0 0 0 0 +0.416 -7.983 -1.794 0 0 0 0 0 0 0 +0.428 -7.957 -1.788 0 0 0 0 0 0 0 +0.453 -7.959 -1.789 0 0 0 0 0 0 0 +0.479 -7.977 -1.794 0 0 0 0 0 0 0 +0.503 -7.96 -1.79 0 0 0 0 0 0 0 +0.529 -7.97 -1.793 0 0 0 0 0 0 0 +0.554 -7.978 -1.795 0 0 0 0 0 0 0 +0.58 -7.978 -1.796 0 0 0 0 0 0 0 +0.592 -7.981 -1.797 0 0 0 0 0 0 0 +0.62 -8.012 -1.804 0 0 0 0 0 0 0 +0.645 -8.007 -1.804 0 0 0 0 0 0 0 +0.669 -7.999 -1.802 0 0 0 0 0 0 0 +0.696 -8.008 -1.805 0 0 0 0 0 0 0 +0.721 -8.006 -1.805 0 0 0 0 0 0 0 +0.746 -8.004 -1.805 0 0 0 0 0 0 0 +0.76 -8.022 -1.81 0 0 0 0 0 0 0 +0.783 -7.998 -1.804 0 0 0 0 0 0 0 +0.81 -8.007 -1.807 0 0 0 0 0 0 0 +0.834 -7.997 -1.805 0 0 0 0 0 0 0 +0.861 -8.008 -1.809 0 0 0 0 0 0 0 +0.886 -8.005 -1.809 0 0 0 0 0 0 0 +0.914 -8.029 -1.815 0 0 0 0 0 0 0 +0.924 -8.009 -1.811 0 0 0 0 0 0 0 +0.952 -8.029 -1.816 0 0 0 0 0 0 0 +0.975 -8.006 -1.811 0 0 0 0 0 0 0 +1.002 -8.019 -1.815 0 0 0 0 0 0 0 +1.028 -8.023 -1.817 0 0 0 0 0 0 0 +1.053 -8.02 -1.817 0 0 0 0 0 0 0 +1.077 -8.007 -1.815 0 0 0 0 0 0 0 +1.092 -8.023 -1.819 0 0 0 0 0 0 0 +1.117 -8.013 -1.818 0 0 0 0 0 0 0 +1.143 -8.018 -1.819 0 0 0 0 0 0 0 +1.167 -8.008 -1.818 0 0 0 0 0 0 0 +1.194 -8.016 -1.821 0 0 0 0 0 0 0 +1.219 -8.014 -1.821 0 0 0 0 0 0 0 +1.245 -8.012 -1.822 0 0 0 0 0 0 0 +1.259 -8.022 -1.825 0 0 0 0 0 0 0 +1.121 -6.838 -1.539 0 0 0 0 0 0 0 +1.144 -6.841 -1.541 0 0 0 0 0 0 0 +1.165 -6.837 -1.541 0 0 0 0 0 0 0 +1.188 -6.837 -1.541 0 0 0 0 0 0 0 +1.203 -6.799 -1.533 0 0 0 0 0 0 0 +1.215 -6.805 -1.535 0 0 0 0 0 0 0 +1.235 -6.791 -1.533 0 0 0 0 0 0 0 +1.257 -6.793 -1.534 0 0 0 0 0 0 0 +1.276 -6.774 -1.53 0 0 0 0 0 0 0 +1.3 -6.789 -1.535 0 0 0 0 0 0 0 +1.317 -6.76 -1.529 0 0 0 0 0 0 0 +1.341 -6.769 -1.532 0 0 0 0 0 0 0 +1.348 -6.748 -1.527 0 0 0 0 0 0 0 +1.372 -6.757 -1.531 0 0 0 0 0 0 0 +1.408 -6.827 -1.549 0 0 0 0 0 0 0 +1.668 -7.985 -1.833 0 0 0 0 0 0 0 +1.694 -7.981 -1.834 0 0 0 0 0 0 0 +1.722 -7.993 -1.838 0 0 0 0 0 0 0 +1.748 -7.991 -1.839 0 0 0 0 0 0 0 +1.763 -8 -1.842 0 0 0 0 0 0 0 +1.789 -7.996 -1.842 0 0 0 0 0 0 0 +1.814 -7.989 -1.842 0 0 0 0 0 0 0 +1.538 -6.563 -1.494 0 0 0 0 0 0 0 +1.552 -6.528 -1.486 0 0 0 0 0 0 0 +1.575 -6.535 -1.489 0 0 0 0 0 0 0 +1.581 -6.515 -1.485 0 0 0 0 0 0 0 +1.603 -6.516 -1.486 0 0 0 0 0 0 0 +1.622 -6.505 -1.485 0 0 0 0 0 0 0 +1.643 -6.504 -1.486 0 0 0 0 0 0 0 +1.704 -6.659 -1.526 0 0 0 0 0 0 0 +2.073 -8.016 -1.863 0 0 0 0 0 0 0 +2.1 -8.019 -1.865 0 0 0 0 0 0 0 +2.109 -7.998 -1.861 0 0 0 0 0 0 0 +2.135 -7.996 -1.862 0 0 0 0 0 0 0 +2.167 -8.015 -1.868 0 0 0 0 0 0 0 +2.188 -7.993 -1.865 0 0 0 0 0 0 0 +2.215 -7.992 -1.866 0 0 0 0 0 0 0 +2.247 -8.013 -1.873 0 0 0 0 0 0 0 +2.271 -8 -1.872 0 0 0 0 0 0 0 +2.276 -7.971 -1.865 0 0 0 0 0 0 0 +2.312 -8.001 -1.874 0 0 0 0 0 0 0 +2.337 -7.992 -1.874 0 0 0 0 0 0 0 +2.363 -7.988 -1.875 0 0 0 0 0 0 0 +2.388 -7.981 -1.875 0 0 0 0 0 0 0 +2.413 -7.973 -1.875 0 0 0 0 0 0 0 +2.441 -7.975 -1.877 0 0 0 0 0 0 0 +2.45 -7.96 -1.874 0 0 0 0 0 0 0 +2.479 -7.965 -1.878 0 0 0 0 0 0 0 +2.507 -7.966 -1.88 0 0 0 0 0 0 0 +2.532 -7.959 -1.88 0 0 0 0 0 0 0 +2.556 -7.947 -1.879 0 0 0 0 0 0 0 +2.576 -7.924 -1.875 0 0 0 0 0 0 0 +2.604 -7.925 -1.878 0 0 0 0 0 0 0 +2.618 -7.928 -1.88 0 0 0 0 0 0 0 +2.653 -7.948 -1.887 0 0 0 0 0 0 0 +2.676 -7.934 -1.885 0 0 0 0 0 0 0 +2.694 -7.907 -1.881 0 0 0 0 0 0 0 +2.726 -7.919 -1.886 0 0 0 0 0 0 0 +2.748 -7.903 -1.884 0 0 0 0 0 0 0 +2.769 -7.883 -1.881 0 0 0 0 0 0 0 +2.781 -7.877 -1.881 0 0 0 0 0 0 0 +2.799 -7.85 -1.876 0 0 0 0 0 0 0 +2.821 -7.834 -1.874 0 0 0 0 0 0 0 +2.841 -7.812 -1.871 0 0 0 0 0 0 0 +2.863 -7.796 -1.869 0 0 0 0 0 0 0 +2.893 -7.801 -1.873 0 0 0 0 0 0 0 +2.916 -7.787 -1.871 0 0 0 0 0 0 0 +2.926 -7.777 -1.87 0 0 0 0 0 0 0 +2.946 -7.756 -1.867 0 0 0 0 0 0 0 +2.975 -7.758 -1.87 0 0 0 0 0 0 0 +2.991 -7.727 -1.864 0 0 0 0 0 0 0 +3.018 -7.725 -1.866 0 0 0 0 0 0 0 +3.045 -7.724 -1.868 0 0 0 0 0 0 0 +3.06 -7.689 -1.862 0 0 0 0 0 0 0 +3.068 -7.675 -1.86 0 0 0 0 0 0 0 +3.097 -7.678 -1.863 0 0 0 0 0 0 0 +3.113 -7.649 -1.858 0 0 0 0 0 0 0 +3.139 -7.643 -1.859 0 0 0 0 0 0 0 +3.17 -7.649 -1.863 0 0 0 0 0 0 0 +3.188 -7.624 -1.859 0 0 0 0 0 0 0 +3.211 -7.613 -1.859 0 0 0 0 0 0 0 +3.217 -7.595 -1.855 0 0 0 0 0 0 0 +3.239 -7.579 -1.854 0 0 0 0 0 0 0 +3.267 -7.578 -1.856 0 0 0 0 0 0 0 +3.294 -7.575 -1.858 0 0 0 0 0 0 0 +3.314 -7.558 -1.856 0 0 0 0 0 0 0 +3.343 -7.56 -1.86 0 0 0 0 0 0 0 +3.364 -7.542 -1.858 0 0 0 0 0 0 0 +3.378 -7.542 -1.859 0 0 0 0 0 0 0 +3.405 -7.538 -1.861 0 0 0 0 0 0 0 +3.422 -7.513 -1.857 0 0 0 0 0 0 0 +3.447 -7.504 -1.858 0 0 0 0 0 0 0 +3.473 -7.499 -1.859 0 0 0 0 0 0 0 +3.492 -7.479 -1.857 0 0 0 0 0 0 0 +3.517 -7.472 -1.858 0 0 0 0 0 0 0 +3.538 -7.455 -1.856 0 0 0 0 0 0 0 +3.551 -7.451 -1.857 0 0 0 0 0 0 0 +3.568 -7.426 -1.853 0 0 0 0 0 0 0 +3.59 -7.413 -1.853 0 0 0 0 0 0 0 +3.609 -7.393 -1.85 0 0 0 0 0 0 0 +3.638 -7.394 -1.853 0 0 0 0 0 0 0 +3.66 -7.379 -1.853 0 0 0 0 0 0 0 +3.677 -7.355 -1.849 0 0 0 0 0 0 0 +3.687 -7.346 -1.848 0 0 0 0 0 0 0 +3.704 -7.322 -1.845 0 0 0 0 0 0 0 +3.723 -7.304 -1.843 0 0 0 0 0 0 0 +3.75 -7.299 -1.845 0 0 0 0 0 0 0 +3.772 -7.287 -1.845 0 0 0 0 0 0 0 +3.794 -7.273 -1.845 0 0 0 0 0 0 0 +3.803 -7.262 -1.843 0 0 0 0 0 0 0 +3.821 -7.242 -1.841 0 0 0 0 0 0 0 +3.85 -7.24 -1.844 0 0 0 0 0 0 0 +3.871 -7.226 -1.843 0 0 0 0 0 0 0 +3.89 -7.207 -1.841 0 0 0 0 0 0 0 +3.906 -7.181 -1.838 0 0 0 0 0 0 0 +3.937 -7.184 -1.842 0 0 0 0 0 0 0 +3.941 -7.166 -1.839 0 0 0 0 0 0 0 +3.966 -7.157 -1.839 0 0 0 0 0 0 0 +3.984 -7.138 -1.838 0 0 0 0 0 0 0 +4.006 -7.124 -1.837 0 0 0 0 0 0 0 +4.026 -7.107 -1.836 0 0 0 0 0 0 0 +4.05 -7.098 -1.837 0 0 0 0 0 0 0 +4.071 -7.082 -1.836 0 0 0 0 0 0 0 +4.073 -7.06 -1.832 0 0 0 0 0 0 0 +4.098 -7.053 -1.833 0 0 0 0 0 0 0 +4.116 -7.031 -1.831 0 0 0 0 0 0 0 +4.142 -7.025 -1.833 0 0 0 0 0 0 0 +4.165 -7.014 -1.833 0 0 0 0 0 0 0 +4.181 -6.991 -1.831 0 0 0 0 0 0 0 +4.206 -6.982 -1.832 0 0 0 0 0 0 0 +4.224 -6.963 -1.83 0 0 0 0 0 0 0 +4.235 -6.958 -1.831 0 0 0 0 0 0 0 +4.254 -6.939 -1.829 0 0 0 0 0 0 0 +4.274 -6.923 -1.828 0 0 0 0 0 0 0 +4.294 -6.906 -1.827 0 0 0 0 0 0 0 +4.314 -6.891 -1.827 0 0 0 0 0 0 0 +4.335 -6.875 -1.826 0 0 0 0 0 0 0 +4.357 -6.862 -1.826 0 0 0 0 0 0 0 +4.366 -6.853 -1.826 0 0 0 0 0 0 0 +4.384 -6.833 -1.824 0 0 0 0 0 0 0 +4.405 -6.819 -1.824 0 0 0 0 0 0 0 +4.421 -6.797 -1.822 0 0 0 0 0 0 0 +4.441 -6.781 -1.821 0 0 0 0 0 0 0 +4.464 -6.769 -1.822 0 0 0 0 0 0 0 +4.483 -6.752 -1.821 0 0 0 0 0 0 0 +4.485 -6.732 -1.817 0 0 0 0 0 0 0 +4.503 -6.713 -1.816 0 0 0 0 0 0 0 +4.525 -6.7 -1.816 0 0 0 0 0 0 0 +4.546 -6.686 -1.816 0 0 0 0 0 0 0 +4.563 -6.665 -1.814 0 0 0 0 0 0 0 +4.586 -6.654 -1.815 0 0 0 0 0 0 0 +4.592 -6.64 -1.813 0 0 0 0 0 0 0 +4.61 -6.623 -1.812 0 0 0 0 0 0 0 +4.626 -6.6 -1.81 0 0 0 0 0 0 0 +4.652 -6.594 -1.812 0 0 0 0 0 0 0 +4.666 -6.57 -1.81 0 0 0 0 0 0 0 +4.686 -6.555 -1.81 0 0 0 0 0 0 0 +4.697 -6.526 -1.805 0 0 0 0 0 0 0 +4.717 -6.511 -1.805 0 0 0 0 0 0 0 +4.729 -6.505 -1.806 0 0 0 0 0 0 0 +4.745 -6.484 -1.804 0 0 0 0 0 0 0 +4.767 -6.472 -1.805 0 0 0 0 0 0 0 +4.778 -6.445 -1.801 0 0 0 0 0 0 0 +4.8 -6.431 -1.802 0 0 0 0 0 0 0 +4.819 -6.415 -1.801 0 0 0 0 0 0 0 +4.845 -6.407 -1.804 0 0 0 0 0 0 0 +4.85 -6.393 -1.802 0 0 0 0 0 0 0 +4.87 -6.378 -1.802 0 0 0 0 0 0 0 +4.881 -6.35 -1.798 0 0 0 0 0 0 0 +4.904 -6.34 -1.799 0 0 0 0 0 0 0 +4.911 -6.307 -1.794 0 0 0 0 0 0 0 +4.93 -6.29 -1.794 0 0 0 0 0 0 0 +4.953 -6.279 -1.795 0 0 0 0 0 0 0 +4.959 -6.267 -1.794 0 0 0 0 0 0 0 +4.982 -6.256 -1.795 0 0 0 0 0 0 0 +5.003 -6.242 -1.796 0 0 0 0 0 0 0 +5.013 -6.214 -1.792 0 0 0 0 0 0 0 +5.029 -6.194 -1.791 0 0 0 0 0 0 0 +5.047 -6.176 -1.79 0 0 0 0 0 0 0 +5.066 -6.16 -1.79 0 0 0 0 0 0 0 +5.077 -6.154 -1.791 0 0 0 0 0 0 0 +5.089 -6.129 -1.788 0 0 0 0 0 0 0 +5.101 -6.104 -1.785 0 0 0 0 0 0 0 +5.124 -6.092 -1.786 0 0 0 0 0 0 0 +5.143 -6.076 -1.786 0 0 0 0 0 0 0 +5.167 -6.066 -1.788 0 0 0 0 0 0 0 +5.172 -6.052 -1.786 0 0 0 0 0 0 0 +5.189 -6.034 -1.786 0 0 0 0 0 0 0 +5.208 -6.018 -1.786 0 0 0 0 0 0 0 +5.227 -6.001 -1.786 0 0 0 0 0 0 0 +5.238 -5.976 -1.783 0 0 0 0 0 0 0 +5.265 -5.968 -1.786 0 0 0 0 0 0 0 +5.283 -5.952 -1.786 0 0 0 0 0 0 0 +5.294 -5.927 -1.783 0 0 0 0 0 0 0 +5.288 -5.901 -1.777 0 0 0 0 0 0 0 +5.303 -5.88 -1.776 0 0 0 0 0 0 0 +5.329 -5.872 -1.779 0 0 0 0 0 0 0 +5.355 -5.864 -1.782 0 0 0 0 0 0 0 +5.37 -5.842 -1.78 0 0 0 0 0 0 0 +5.391 -5.828 -1.781 0 0 0 0 0 0 0 +5.4 -5.801 -1.778 0 0 0 0 0 0 0 +5.417 -5.802 -1.781 0 0 0 0 0 0 0 +5.434 -5.783 -1.78 0 0 0 0 0 0 0 +5.452 -5.766 -1.78 0 0 0 0 0 0 0 +5.467 -5.746 -1.779 0 0 0 0 0 0 0 +5.479 -5.722 -1.777 0 0 0 0 0 0 0 +5.499 -5.707 -1.778 0 0 0 0 0 0 0 +5.52 -5.693 -1.779 0 0 0 0 0 0 0 +5.531 -5.687 -1.78 0 0 0 0 0 0 0 +5.544 -5.664 -1.778 0 0 0 0 0 0 0 +5.56 -5.645 -1.777 0 0 0 0 0 0 0 +5.573 -5.622 -1.776 0 0 0 0 0 0 0 +5.589 -5.603 -1.775 0 0 0 0 0 0 0 +5.616 -5.595 -1.778 0 0 0 0 0 0 0 +5.631 -5.575 -1.777 0 0 0 0 0 0 0 +5.645 -5.571 -1.779 0 0 0 0 0 0 0 +5.658 -5.55 -1.778 0 0 0 0 0 0 0 +5.672 -5.528 -1.777 0 0 0 0 0 0 0 +5.676 -5.498 -1.772 0 0 0 0 0 0 0 +5.703 -5.489 -1.776 0 0 0 0 0 0 0 +5.719 -5.47 -1.775 0 0 0 0 0 0 0 +5.742 -5.457 -1.777 0 0 0 0 0 0 0 +5.742 -5.44 -1.774 0 0 0 0 0 0 0 +5.759 -5.422 -1.774 0 0 0 0 0 0 0 +5.778 -5.405 -1.775 0 0 0 0 0 0 0 +5.793 -5.386 -1.774 0 0 0 0 0 0 0 +5.813 -5.37 -1.775 0 0 0 0 0 0 0 +5.825 -5.348 -1.774 0 0 0 0 0 0 0 +5.842 -5.33 -1.774 0 0 0 0 0 0 0 +5.852 -5.322 -1.774 0 0 0 0 0 0 0 +5.862 -5.297 -1.772 0 0 0 0 0 0 0 +5.882 -5.282 -1.773 0 0 0 0 0 0 0 +5.901 -5.265 -1.774 0 0 0 0 0 0 0 +5.913 -5.243 -1.772 0 0 0 0 0 0 0 +5.933 -5.228 -1.774 0 0 0 0 0 0 0 +5.947 -5.207 -1.773 0 0 0 0 0 0 0 +5.952 -5.195 -1.772 0 0 0 0 0 0 0 +5.973 -5.18 -1.773 0 0 0 0 0 0 0 +5.988 -5.16 -1.773 0 0 0 0 0 0 0 +6.004 -5.141 -1.773 0 0 0 0 0 0 0 +6.013 -5.116 -1.77 0 0 0 0 0 0 0 +6.029 -5.097 -1.77 0 0 0 0 0 0 0 +6.048 -5.08 -1.771 0 0 0 0 0 0 0 +6.05 -5.066 -1.77 0 0 0 0 0 0 0 +6.067 -5.048 -1.77 0 0 0 0 0 0 0 +6.084 -5.03 -1.77 0 0 0 0 0 0 0 +6.096 -5.007 -1.769 0 0 0 0 0 0 0 +6.113 -4.99 -1.77 0 0 0 0 0 0 0 +6.119 -4.963 -1.767 0 0 0 0 0 0 0 +6.132 -4.941 -1.766 0 0 0 0 0 0 0 +6.146 -4.936 -1.768 0 0 0 0 0 0 0 +6.166 -4.921 -1.769 0 0 0 0 0 0 0 +6.174 -4.895 -1.767 0 0 0 0 0 0 0 +6.189 -4.876 -1.767 0 0 0 0 0 0 0 +6.198 -4.852 -1.765 0 0 0 0 0 0 0 +6.21 -4.83 -1.764 0 0 0 0 0 0 0 +6.235 -4.817 -1.767 0 0 0 0 0 0 0 +6.239 -4.805 -1.766 0 0 0 0 0 0 0 +6.242 -4.776 -1.762 0 0 0 0 0 0 0 +6.266 -4.763 -1.765 0 0 0 0 0 0 0 +6.281 -4.744 -1.765 0 0 0 0 0 0 0 +6.294 -4.723 -1.764 0 0 0 0 0 0 0 +6.308 -4.702 -1.764 0 0 0 0 0 0 0 +6.316 -4.677 -1.762 0 0 0 0 0 0 0 +6.331 -4.673 -1.764 0 0 0 0 0 0 0 +6.34 -4.649 -1.763 0 0 0 0 0 0 0 +6.339 -4.617 -1.758 0 0 0 0 0 0 0 +6.342 -4.589 -1.755 0 0 0 0 0 0 0 +6.342 -4.559 -1.75 0 0 0 0 0 0 0 +6.356 -4.539 -1.75 0 0 0 0 0 0 0 +6.394 -4.536 -1.757 0 0 0 0 0 0 0 +6.4 -4.525 -1.757 0 0 0 0 0 0 0 +6.425 -4.513 -1.76 0 0 0 0 0 0 0 +6.446 -4.497 -1.762 0 0 0 0 0 0 0 +6.45 -4.47 -1.759 0 0 0 0 0 0 0 +6.458 -4.445 -1.757 0 0 0 0 0 0 0 +6.469 -4.423 -1.756 0 0 0 0 0 0 0 +6.486 -4.405 -1.757 0 0 0 0 0 0 0 +6.493 -4.394 -1.757 0 0 0 0 0 0 0 +6.506 -4.374 -1.757 0 0 0 0 0 0 0 +6.514 -4.349 -1.756 0 0 0 0 0 0 0 +6.524 -4.327 -1.755 0 0 0 0 0 0 0 +6.539 -4.307 -1.755 0 0 0 0 0 0 0 +6.553 -4.287 -1.755 0 0 0 0 0 0 0 +6.565 -4.265 -1.755 0 0 0 0 0 0 0 +6.566 -4.251 -1.753 0 0 0 0 0 0 0 +6.585 -4.234 -1.755 0 0 0 0 0 0 0 +6.598 -4.213 -1.755 0 0 0 0 0 0 0 +6.611 -4.192 -1.755 0 0 0 0 0 0 0 +6.627 -4.174 -1.756 0 0 0 0 0 0 0 +6.642 -4.154 -1.756 0 0 0 0 0 0 0 +6.657 -4.134 -1.756 0 0 0 0 0 0 0 +6.668 -4.127 -1.758 0 0 0 0 0 0 0 +6.686 -4.109 -1.759 0 0 0 0 0 0 0 +6.686 -4.08 -1.756 0 0 0 0 0 0 0 +6.709 -4.065 -1.758 0 0 0 0 0 0 0 +6.718 -4.042 -1.757 0 0 0 0 0 0 0 +6.741 -4.026 -1.76 0 0 0 0 0 0 0 +6.757 -4.007 -1.761 0 0 0 0 0 0 0 +6.763 -3.997 -1.761 0 0 0 0 0 0 0 +6.772 -3.973 -1.76 0 0 0 0 0 0 0 +6.784 -3.952 -1.76 0 0 0 0 0 0 0 +6.794 -3.929 -1.759 0 0 0 0 0 0 0 +6.818 -3.914 -1.763 0 0 0 0 0 0 0 +6.826 -3.891 -1.762 0 0 0 0 0 0 0 +6.842 -3.871 -1.763 0 0 0 0 0 0 0 +6.843 -3.858 -1.761 0 0 0 0 0 0 0 +6.855 -3.836 -1.761 0 0 0 0 0 0 0 +6.886 -3.825 -1.766 0 0 0 0 0 0 0 +6.896 -3.803 -1.766 0 0 0 0 0 0 0 +6.915 -3.785 -1.768 0 0 0 0 0 0 0 +6.934 -3.767 -1.77 0 0 0 0 0 0 0 +6.928 -3.736 -1.765 0 0 0 0 0 0 0 +6.939 -3.727 -1.766 0 0 0 0 0 0 0 +6.956 -3.708 -1.768 0 0 0 0 0 0 0 +6.968 -3.686 -1.768 0 0 0 0 0 0 0 +6.967 -3.658 -1.764 0 0 0 0 0 0 0 +6.982 -3.638 -1.765 0 0 0 0 0 0 0 +6.999 -3.619 -1.767 0 0 0 0 0 0 0 +7.012 -3.598 -1.767 0 0 0 0 0 0 0 +7.017 -3.587 -1.767 0 0 0 0 0 0 0 +7.03 -3.566 -1.768 0 0 0 0 0 0 0 +7.028 -3.536 -1.764 0 0 0 0 0 0 0 +7.049 -3.52 -1.767 0 0 0 0 0 0 0 +7.044 -3.49 -1.763 0 0 0 0 0 0 0 +7.054 -3.467 -1.762 0 0 0 0 0 0 0 +7.073 -3.449 -1.764 0 0 0 0 0 0 0 +7.084 -3.426 -1.764 0 0 0 0 0 0 0 +7.089 -3.415 -1.764 0 0 0 0 0 0 0 +7.097 -3.391 -1.763 0 0 0 0 0 0 0 +7.1 -3.366 -1.762 0 0 0 0 0 0 0 +7.1 -3.338 -1.759 0 0 0 0 0 0 0 +7.125 -3.323 -1.763 0 0 0 0 0 0 0 +7.135 -3.3 -1.763 0 0 0 0 0 0 0 +7.149 -3.279 -1.763 0 0 0 0 0 0 0 +7.151 -3.267 -1.763 0 0 0 0 0 0 0 +7.15 -3.239 -1.76 0 0 0 0 0 0 0 +7.16 -3.217 -1.76 0 0 0 0 0 0 0 +7.176 -3.197 -1.761 0 0 0 0 0 0 0 +7.188 -3.175 -1.762 0 0 0 0 0 0 0 +7.194 -3.151 -1.761 0 0 0 0 0 0 0 +7.194 -3.137 -1.759 0 0 0 0 0 0 0 +7.21 -3.118 -1.761 0 0 0 0 0 0 0 +7.213 -3.092 -1.759 0 0 0 0 0 0 0 +7.221 -3.068 -1.759 0 0 0 0 0 0 0 +7.247 -3.052 -1.763 0 0 0 0 0 0 0 +7.251 -3.027 -1.762 0 0 0 0 0 0 0 +7.25 -3 -1.759 0 0 0 0 0 0 0 +7.264 -2.98 -1.76 0 0 0 0 0 0 0 +7.265 -2.967 -1.759 0 0 0 0 0 0 0 +7.268 -2.941 -1.757 0 0 0 0 0 0 0 +7.286 -2.922 -1.76 0 0 0 0 0 0 0 +7.293 -2.898 -1.759 0 0 0 0 0 0 0 +7.306 -2.877 -1.76 0 0 0 0 0 0 0 +7.311 -2.852 -1.759 0 0 0 0 0 0 0 +7.315 -2.827 -1.758 0 0 0 0 0 0 0 +7.321 -2.816 -1.758 0 0 0 0 0 0 0 +7.335 -2.795 -1.76 0 0 0 0 0 0 0 +7.347 -2.774 -1.761 0 0 0 0 0 0 0 +7.358 -2.751 -1.761 0 0 0 0 0 0 0 +7.357 -2.725 -1.759 0 0 0 0 0 0 0 +7.373 -2.704 -1.761 0 0 0 0 0 0 0 +7.376 -2.679 -1.759 0 0 0 0 0 0 0 +7.382 -2.668 -1.76 0 0 0 0 0 0 0 +7.394 -2.646 -1.761 0 0 0 0 0 0 0 +7.392 -2.619 -1.758 0 0 0 0 0 0 0 +7.409 -2.599 -1.76 0 0 0 0 0 0 0 +7.421 -2.577 -1.761 0 0 0 0 0 0 0 +7.421 -2.551 -1.759 0 0 0 0 0 0 0 +7.442 -2.532 -1.763 0 0 0 0 0 0 0 +7.45 -2.522 -1.763 0 0 0 0 0 0 0 +7.452 -2.497 -1.762 0 0 0 0 0 0 0 +7.464 -2.475 -1.763 0 0 0 0 0 0 0 +7.47 -2.45 -1.763 0 0 0 0 0 0 0 +7.481 -2.428 -1.763 0 0 0 0 0 0 0 +7.494 -2.406 -1.765 0 0 0 0 0 0 0 +7.496 -2.381 -1.763 0 0 0 0 0 0 0 +7.513 -2.373 -1.767 0 0 0 0 0 0 0 +7.52 -2.35 -1.767 0 0 0 0 0 0 0 +7.524 -2.325 -1.766 0 0 0 0 0 0 0 +7.552 -2.308 -1.771 0 0 0 0 0 0 0 +7.553 -2.282 -1.77 0 0 0 0 0 0 0 +7.549 -2.255 -1.767 0 0 0 0 0 0 0 +7.566 -2.234 -1.769 0 0 0 0 0 0 0 +7.573 -2.223 -1.77 0 0 0 0 0 0 0 +7.587 -2.202 -1.772 0 0 0 0 0 0 0 +7.594 -2.178 -1.772 0 0 0 0 0 0 0 +7.593 -2.152 -1.77 0 0 0 0 0 0 0 +7.611 -2.131 -1.773 0 0 0 0 0 0 0 +7.612 -2.106 -1.771 0 0 0 0 0 0 0 +7.632 -2.086 -1.775 0 0 0 0 0 0 0 +7.656 -2.079 -1.78 0 0 0 0 0 0 0 +7.64 -2.049 -1.774 0 0 0 0 0 0 0 +7.661 -2.029 -1.778 0 0 0 0 0 0 0 +7.416 -1.938 -1.715 0 0 0 0 0 0 0 +7.16 -1.846 -1.651 0 0 0 0 0 0 0 +7.641 -1.947 -1.768 0 0 0 0 0 0 0 +7.634 -1.919 -1.765 0 0 0 0 0 0 0 +7.591 -1.896 -1.754 0 0 0 0 0 0 0 +7.652 -1.886 -1.767 0 0 0 0 0 0 0 +7.58 -1.842 -1.748 0 0 0 0 0 0 0 +7.584 -1.818 -1.748 0 0 0 0 0 0 0 +7.645 -1.807 -1.761 0 0 0 0 0 0 0 +7.65 -1.783 -1.761 0 0 0 0 0 0 0 +7.673 -1.763 -1.765 0 0 0 0 0 0 0 +7.623 -1.739 -1.752 0 0 0 0 0 0 0 +7.501 -1.686 -1.721 0 0 0 0 0 0 0 +7.522 -1.666 -1.725 0 0 0 0 0 0 0 +7.652 -1.67 -1.756 0 0 0 0 0 0 0 +7.682 -1.651 -1.762 0 0 0 0 0 0 0 +7.689 -1.628 -1.762 0 0 0 0 0 0 0 +7.706 -1.606 -1.765 0 0 0 0 0 0 0 +7.691 -1.59 -1.761 0 0 0 0 0 0 0 +7.688 -1.564 -1.759 0 0 0 0 0 0 0 +7.708 -1.543 -1.763 0 0 0 0 0 0 0 +7.696 -1.516 -1.758 0 0 0 0 0 0 0 +7.707 -1.493 -1.76 0 0 0 0 0 0 0 +7.698 -1.466 -1.756 0 0 0 0 0 0 0 +7.699 -1.441 -1.756 0 0 0 0 0 0 0 +7.703 -1.429 -1.756 0 0 0 0 0 0 0 +7.705 -1.405 -1.756 0 0 0 0 0 0 0 +7.715 -1.381 -1.757 0 0 0 0 0 0 0 +7.718 -1.357 -1.756 0 0 0 0 0 0 0 +7.726 -1.333 -1.757 0 0 0 0 0 0 0 +7.722 -1.308 -1.756 0 0 0 0 0 0 0 +7.723 -1.283 -1.755 0 0 0 0 0 0 0 +7.73 -1.272 -1.756 0 0 0 0 0 0 0 +7.723 -1.245 -1.753 0 0 0 0 0 0 0 +7.744 -1.224 -1.757 0 0 0 0 0 0 0 +7.736 -1.198 -1.755 0 0 0 0 0 0 0 +7.736 -1.173 -1.754 0 0 0 0 0 0 0 +7.74 -1.149 -1.754 0 0 0 0 0 0 0 +7.761 -1.127 -1.758 0 0 0 0 0 0 0 +7.76 -1.114 -1.757 0 0 0 0 0 0 0 +7.764 -1.09 -1.757 0 0 0 0 0 0 0 +7.75 -1.063 -1.753 0 0 0 0 0 0 0 +7.742 -1.037 -1.75 0 0 0 0 0 0 0 +7.764 -1.015 -1.755 0 0 0 0 0 0 0 +7.763 -0.991 -1.754 0 0 0 0 0 0 0 +7.751 -0.964 -1.75 0 0 0 0 0 0 0 +7.762 -0.953 -1.753 0 0 0 0 0 0 0 +7.759 -0.928 -1.751 0 0 0 0 0 0 0 +7.76 -0.904 -1.751 0 0 0 0 0 0 0 +7.767 -0.88 -1.752 0 0 0 0 0 0 0 +7.76 -0.854 -1.749 0 0 0 0 0 0 0 +7.77 -0.831 -1.751 0 0 0 0 0 0 0 +7.775 -0.806 -1.752 0 0 0 0 0 0 0 +7.765 -0.793 -1.749 0 0 0 0 0 0 0 +7.773 -0.769 -1.75 0 0 0 0 0 0 0 +7.768 -0.744 -1.749 0 0 0 0 0 0 0 +7.772 -0.72 -1.749 0 0 0 0 0 0 0 +7.778 -0.696 -1.75 0 0 0 0 0 0 0 +7.788 -0.672 -1.752 0 0 0 0 0 0 0 +7.782 -0.647 -1.75 0 0 0 0 0 0 0 +7.779 -0.634 -1.749 0 0 0 0 0 0 0 +7.775 -0.609 -1.748 0 0 0 0 0 0 0 +7.777 -0.585 -1.748 0 0 0 0 0 0 0 +7.785 -0.561 -1.749 0 0 0 0 0 0 0 +7.785 -0.536 -1.749 0 0 0 0 0 0 0 +7.769 -0.511 -1.744 0 0 0 0 0 0 0 +7.772 -0.486 -1.745 0 0 0 0 0 0 0 +7.779 -0.474 -1.746 0 0 0 0 0 0 0 +7.782 -0.45 -1.747 0 0 0 0 0 0 0 +7.776 -0.425 -1.745 0 0 0 0 0 0 0 +7.781 -0.401 -1.746 0 0 0 0 0 0 0 +7.786 -0.377 -1.747 0 0 0 0 0 0 0 +7.785 -0.352 -1.746 0 0 0 0 0 0 0 +7.786 -0.328 -1.746 0 0 0 0 0 0 0 +7.787 -0.303 -1.746 0 0 0 0 0 0 0 +7.784 -0.291 -1.745 0 0 0 0 0 0 0 +7.779 -0.266 -1.744 0 0 0 0 0 0 0 +7.78 -0.242 -1.744 0 0 0 0 0 0 0 +7.783 -0.217 -1.744 0 0 0 0 0 0 0 +7.787 -0.193 -1.745 0 0 0 0 0 0 0 +7.772 -0.168 -1.742 0 0 0 0 0 0 0 +7.774 -0.144 -1.742 0 0 0 0 0 0 0 +7.771 -0.132 -1.741 0 0 0 0 0 0 0 +7.765 -0.107 -1.74 0 0 0 0 0 0 0 +7.775 -0.083 -1.742 0 0 0 0 0 0 0 +7.77 -0.058 -1.741 0 0 0 0 0 0 0 +7.768 -0.034 -1.74 0 0 0 0 0 0 0 +7.78 -0.01 -1.743 0 0 0 0 0 0 0 +7.389 0 -1.727 0 0 0 0 0 0 0 +7.396 0.023 -1.728 0 0 0 0 0 0 0 +7.383 0.046 -1.725 0 0 0 0 0 0 0 +7.41 0.07 -1.732 0 0 0 0 0 0 0 +7.376 0.093 -1.724 0 0 0 0 0 0 0 +7.397 0.116 -1.729 0 0 0 0 0 0 0 +7.385 0.139 -1.726 0 0 0 0 0 0 0 +7.383 0.151 -1.726 0 0 0 0 0 0 0 +7.361 0.173 -1.72 0 0 0 0 0 0 0 +7.367 0.197 -1.722 0 0 0 0 0 0 0 +7.364 0.22 -1.721 0 0 0 0 0 0 0 +7.346 0.242 -1.717 0 0 0 0 0 0 0 +7.359 0.266 -1.72 0 0 0 0 0 0 0 +7.342 0.288 -1.716 0 0 0 0 0 0 0 +7.346 0.3 -1.717 0 0 0 0 0 0 0 +7.331 0.323 -1.714 0 0 0 0 0 0 0 +7.328 0.345 -1.713 0 0 0 0 0 0 0 +7.34 0.369 -1.717 0 0 0 0 0 0 0 +7.333 0.392 -1.715 0 0 0 0 0 0 0 +7.328 0.415 -1.714 0 0 0 0 0 0 0 +7.327 0.438 -1.714 0 0 0 0 0 0 0 +7.324 0.449 -1.714 0 0 0 0 0 0 0 +7.313 0.471 -1.711 0 0 0 0 0 0 0 +7.31 0.494 -1.711 0 0 0 0 0 0 0 +7.3 0.517 -1.709 0 0 0 0 0 0 0 +7.314 0.541 -1.713 0 0 0 0 0 0 0 +7.291 0.562 -1.708 0 0 0 0 0 0 0 +7.293 0.585 -1.709 0 0 0 0 0 0 0 +7.298 0.597 -1.71 0 0 0 0 0 0 0 +7.287 0.619 -1.708 0 0 0 0 0 0 0 +7.296 0.643 -1.711 0 0 0 0 0 0 0 +7.279 0.665 -1.707 0 0 0 0 0 0 0 +7.275 0.687 -1.706 0 0 0 0 0 0 0 +7.276 0.711 -1.707 0 0 0 0 0 0 0 +7.27 0.733 -1.706 0 0 0 0 0 0 0 +7.265 0.744 -1.705 0 0 0 0 0 0 0 +7.263 0.767 -1.705 0 0 0 0 0 0 0 +7.262 0.79 -1.706 0 0 0 0 0 0 0 +7.244 0.811 -1.702 0 0 0 0 0 0 0 +7.253 0.835 -1.705 0 0 0 0 0 0 0 +7.241 0.857 -1.702 0 0 0 0 0 0 0 +7.252 0.881 -1.706 0 0 0 0 0 0 0 +7.235 0.891 -1.702 0 0 0 0 0 0 0 +7.246 0.915 -1.705 0 0 0 0 0 0 0 +7.227 0.936 -1.701 0 0 0 0 0 0 0 +7.238 0.96 -1.705 0 0 0 0 0 0 0 +7.223 0.981 -1.702 0 0 0 0 0 0 0 +7.249 1.008 -1.709 0 0 0 0 0 0 0 +7.234 1.029 -1.706 0 0 0 0 0 0 0 +7.238 1.042 -1.708 0 0 0 0 0 0 0 +7.2 1.059 -1.699 0 0 0 0 0 0 0 +7.22 1.085 -1.705 0 0 0 0 0 0 0 +7.199 1.105 -1.7 0 0 0 0 0 0 0 +7.2 1.128 -1.701 0 0 0 0 0 0 0 +7.187 1.149 -1.699 0 0 0 0 0 0 0 +7.2 1.175 -1.703 0 0 0 0 0 0 0 +7.173 1.182 -1.697 0 0 0 0 0 0 0 +7.181 1.207 -1.7 0 0 0 0 0 0 0 +7.16 1.226 -1.695 0 0 0 0 0 0 0 +7.168 1.251 -1.698 0 0 0 0 0 0 0 +7.162 1.273 -1.698 0 0 0 0 0 0 0 +7.148 1.294 -1.695 0 0 0 0 0 0 0 +7.152 1.317 -1.697 0 0 0 0 0 0 0 +7.144 1.328 -1.696 0 0 0 0 0 0 0 +7.149 1.352 -1.698 0 0 0 0 0 0 0 +7.147 1.375 -1.699 0 0 0 0 0 0 0 +7.129 1.394 -1.695 0 0 0 0 0 0 0 +7.127 1.417 -1.696 0 0 0 0 0 0 0 +7.124 1.44 -1.696 0 0 0 0 0 0 0 +7.137 1.466 -1.701 0 0 0 0 0 0 0 +7.127 1.476 -1.699 0 0 0 0 0 0 0 +7.111 1.496 -1.696 0 0 0 0 0 0 0 +7.114 1.519 -1.698 0 0 0 0 0 0 0 +7.12 1.544 -1.701 0 0 0 0 0 0 0 +7.102 1.564 -1.697 0 0 0 0 0 0 0 +7.11 1.589 -1.701 0 0 0 0 0 0 0 +7.103 1.611 -1.7 0 0 0 0 0 0 0 +7.095 1.621 -1.699 0 0 0 0 0 0 0 +7.1 1.645 -1.701 0 0 0 0 0 0 0 +7.102 1.669 -1.703 0 0 0 0 0 0 0 +7.066 1.684 -1.695 0 0 0 0 0 0 0 +7.099 1.716 -1.705 0 0 0 0 0 0 0 +7.091 1.738 -1.705 0 0 0 0 0 0 0 +7.08 1.758 -1.703 0 0 0 0 0 0 0 +7.074 1.769 -1.702 0 0 0 0 0 0 0 +7.072 1.792 -1.703 0 0 0 0 0 0 0 +7.051 1.81 -1.699 0 0 0 0 0 0 0 +7.055 1.835 -1.702 0 0 0 0 0 0 0 +7.049 1.857 -1.702 0 0 0 0 0 0 0 +7.053 1.882 -1.704 0 0 0 0 0 0 0 +7.03 1.899 -1.7 0 0 0 0 0 0 0 +7.043 1.926 -1.705 0 0 0 0 0 0 0 +7.036 1.936 -1.704 0 0 0 0 0 0 0 +7.022 1.956 -1.702 0 0 0 0 0 0 0 +7.029 1.982 -1.705 0 0 0 0 0 0 0 +7.012 2.001 -1.702 0 0 0 0 0 0 0 +7.009 2.024 -1.703 0 0 0 0 0 0 0 +6.999 2.045 -1.702 0 0 0 0 0 0 0 +6.992 2.067 -1.702 0 0 0 0 0 0 0 +7.002 2.082 -1.706 0 0 0 0 0 0 0 +6.979 2.099 -1.701 0 0 0 0 0 0 0 +6.993 2.127 -1.707 0 0 0 0 0 0 0 +6.986 2.149 -1.707 0 0 0 0 0 0 0 +6.977 2.17 -1.706 0 0 0 0 0 0 0 +6.967 2.191 -1.705 0 0 0 0 0 0 0 +6.969 2.216 -1.708 0 0 0 0 0 0 0 +6.964 2.226 -1.707 0 0 0 0 0 0 0 +6.955 2.247 -1.707 0 0 0 0 0 0 0 +6.94 2.267 -1.705 0 0 0 0 0 0 0 +6.926 2.286 -1.703 0 0 0 0 0 0 0 +6.917 2.307 -1.702 0 0 0 0 0 0 0 +6.913 2.33 -1.703 0 0 0 0 0 0 0 +6.933 2.362 -1.711 0 0 0 0 0 0 0 +6.921 2.369 -1.708 0 0 0 0 0 0 0 +6.9 2.386 -1.705 0 0 0 0 0 0 0 +6.909 2.414 -1.709 0 0 0 0 0 0 0 +6.9 2.435 -1.709 0 0 0 0 0 0 0 +6.885 2.454 -1.707 0 0 0 0 0 0 0 +6.893 2.482 -1.711 0 0 0 0 0 0 0 +6.878 2.501 -1.709 0 0 0 0 0 0 0 +6.885 2.515 -1.712 0 0 0 0 0 0 0 +6.857 2.53 -1.707 0 0 0 0 0 0 0 +6.862 2.556 -1.71 0 0 0 0 0 0 0 +6.852 2.577 -1.71 0 0 0 0 0 0 0 +6.835 2.595 -1.707 0 0 0 0 0 0 0 +6.856 2.627 -1.715 0 0 0 0 0 0 0 +6.84 2.646 -1.713 0 0 0 0 0 0 0 +6.829 2.654 -1.711 0 0 0 0 0 0 0 +6.81 2.671 -1.708 0 0 0 0 0 0 0 +6.828 2.703 -1.715 0 0 0 0 0 0 0 +6.796 2.715 -1.709 0 0 0 0 0 0 0 +6.808 2.745 -1.714 0 0 0 0 0 0 0 +6.797 2.765 -1.714 0 0 0 0 0 0 0 +6.797 2.79 -1.716 0 0 0 0 0 0 0 +6.773 2.793 -1.711 0 0 0 0 0 0 0 +6.768 2.816 -1.712 0 0 0 0 0 0 0 +6.763 2.838 -1.713 0 0 0 0 0 0 0 +6.757 2.861 -1.714 0 0 0 0 0 0 0 +6.743 2.88 -1.712 0 0 0 0 0 0 0 +6.734 2.901 -1.712 0 0 0 0 0 0 0 +6.725 2.922 -1.712 0 0 0 0 0 0 0 +6.724 2.935 -1.713 0 0 0 0 0 0 0 +6.709 2.953 -1.712 0 0 0 0 0 0 0 +6.707 2.978 -1.714 0 0 0 0 0 0 0 +6.697 2.999 -1.714 0 0 0 0 0 0 0 +6.677 3.015 -1.711 0 0 0 0 0 0 0 +6.666 3.035 -1.711 0 0 0 0 0 0 0 +6.678 3.066 -1.716 0 0 0 0 0 0 0 +6.662 3.071 -1.713 0 0 0 0 0 0 0 +6.663 3.097 -1.716 0 0 0 0 0 0 0 +6.65 3.116 -1.715 0 0 0 0 0 0 0 +6.642 3.138 -1.716 0 0 0 0 0 0 0 +6.627 3.156 -1.714 0 0 0 0 0 0 0 +6.622 3.18 -1.716 0 0 0 0 0 0 0 +6.61 3.2 -1.715 0 0 0 0 0 0 0 +6.6 3.207 -1.714 0 0 0 0 0 0 0 +6.599 3.233 -1.716 0 0 0 0 0 0 0 +6.585 3.252 -1.715 0 0 0 0 0 0 0 +6.573 3.271 -1.715 0 0 0 0 0 0 0 +6.564 3.293 -1.715 0 0 0 0 0 0 0 +6.556 3.314 -1.716 0 0 0 0 0 0 0 +6.54 3.332 -1.714 0 0 0 0 0 0 0 +6.533 3.342 -1.714 0 0 0 0 0 0 0 +6.531 3.367 -1.716 0 0 0 0 0 0 0 +6.51 3.382 -1.713 0 0 0 0 0 0 0 +6.496 3.4 -1.712 0 0 0 0 0 0 0 +6.508 3.433 -1.719 0 0 0 0 0 0 0 +6.466 3.436 -1.71 0 0 0 0 0 0 0 +6.483 3.472 -1.718 0 0 0 0 0 0 0 +6.47 3.478 -1.716 0 0 0 0 0 0 0 +6.447 3.492 -1.712 0 0 0 0 0 0 0 +6.469 3.53 -1.722 0 0 0 0 0 0 0 +6.437 3.539 -1.716 0 0 0 0 0 0 0 +6.414 3.552 -1.712 0 0 0 0 0 0 0 +6.418 3.581 -1.717 0 0 0 0 0 0 0 +6.404 3.599 -1.716 0 0 0 0 0 0 0 +6.392 3.619 -1.716 0 0 0 0 0 0 0 +6.371 3.621 -1.711 0 0 0 0 0 0 0 +6.379 3.651 -1.717 0 0 0 0 0 0 0 +6.37 3.673 -1.718 0 0 0 0 0 0 0 +6.359 3.693 -1.718 0 0 0 0 0 0 0 +6.332 3.705 -1.713 0 0 0 0 0 0 0 +6.327 3.728 -1.715 0 0 0 0 0 0 0 +6.323 3.739 -1.716 0 0 0 0 0 0 0 +6.331 3.771 -1.722 0 0 0 0 0 0 0 +6.324 3.794 -1.723 0 0 0 0 0 0 0 +6.314 3.815 -1.724 0 0 0 0 0 0 0 +6.32 3.846 -1.729 0 0 0 0 0 0 0 +6.306 3.865 -1.728 0 0 0 0 0 0 0 +6.322 3.902 -1.737 0 0 0 0 0 0 0 +6.29 3.895 -1.729 0 0 0 0 0 0 0 +6.276 3.914 -1.728 0 0 0 0 0 0 0 +6.239 3.918 -1.721 0 0 0 0 0 0 0 +6.241 3.947 -1.726 0 0 0 0 0 0 0 +6.219 3.96 -1.723 0 0 0 0 0 0 0 +6.22 3.988 -1.727 0 0 0 0 0 0 0 +6.205 4.007 -1.726 0 0 0 0 0 0 0 +6.186 4.008 -1.722 0 0 0 0 0 0 0 +6.173 4.028 -1.722 0 0 0 0 0 0 0 +6.162 4.048 -1.723 0 0 0 0 0 0 0 +6.146 4.065 -1.722 0 0 0 0 0 0 0 +6.142 4.09 -1.724 0 0 0 0 0 0 0 +6.118 4.102 -1.721 0 0 0 0 0 0 0 +6.111 4.125 -1.723 0 0 0 0 0 0 0 +6.095 4.142 -1.722 0 0 0 0 0 0 0 +6.09 4.153 -1.722 0 0 0 0 0 0 0 +6.08 4.174 -1.723 0 0 0 0 0 0 0 +6.059 4.188 -1.721 0 0 0 0 0 0 0 +6.051 4.21 -1.722 0 0 0 0 0 0 0 +6.042 4.232 -1.724 0 0 0 0 0 0 0 +6.033 4.255 -1.725 0 0 0 0 0 0 0 +6.012 4.268 -1.723 0 0 0 0 0 0 0 +6.009 4.28 -1.724 0 0 0 0 0 0 0 +5.992 4.296 -1.723 0 0 0 0 0 0 0 +5.999 4.33 -1.729 0 0 0 0 0 0 0 +5.965 4.334 -1.723 0 0 0 0 0 0 0 +5.965 4.363 -1.727 0 0 0 0 0 0 0 +5.938 4.371 -1.723 0 0 0 0 0 0 0 +5.943 4.39 -1.727 0 0 0 0 0 0 0 +5.934 4.412 -1.728 0 0 0 0 0 0 0 +5.925 4.434 -1.729 0 0 0 0 0 0 0 +5.915 4.456 -1.731 0 0 0 0 0 0 0 +5.901 4.475 -1.731 0 0 0 0 0 0 0 +5.889 4.494 -1.731 0 0 0 0 0 0 0 +5.865 4.506 -1.728 0 0 0 0 0 0 0 +5.872 4.526 -1.733 0 0 0 0 0 0 0 +5.866 4.55 -1.735 0 0 0 0 0 0 0 +5.838 4.558 -1.731 0 0 0 0 0 0 0 +5.844 4.593 -1.738 0 0 0 0 0 0 0 +5.813 4.598 -1.732 0 0 0 0 0 0 0 +5.812 4.627 -1.737 0 0 0 0 0 0 0 +5.786 4.636 -1.733 0 0 0 0 0 0 0 +5.792 4.656 -1.737 0 0 0 0 0 0 0 +5.768 4.666 -1.734 0 0 0 0 0 0 0 +5.767 4.696 -1.739 0 0 0 0 0 0 0 +5.763 4.722 -1.742 0 0 0 0 0 0 0 +5.739 4.733 -1.739 0 0 0 0 0 0 0 +5.733 4.758 -1.742 0 0 0 0 0 0 0 +5.714 4.773 -1.741 0 0 0 0 0 0 0 +5.715 4.789 -1.744 0 0 0 0 0 0 0 +5.71 4.816 -1.747 0 0 0 0 0 0 0 +5.694 4.833 -1.746 0 0 0 0 0 0 0 +5.705 4.873 -1.755 0 0 0 0 0 0 0 +5.693 4.894 -1.756 0 0 0 0 0 0 0 +5.699 4.931 -1.763 0 0 0 0 0 0 0 +5.681 4.946 -1.762 0 0 0 0 0 0 0 +5.695 4.974 -1.77 0 0 0 0 0 0 0 +5.673 4.987 -1.768 0 0 0 0 0 0 0 +5.662 5.008 -1.769 0 0 0 0 0 0 0 +5.652 5.031 -1.771 0 0 0 0 0 0 0 +5.649 5.061 -1.776 0 0 0 0 0 0 0 +5.62 5.067 -1.771 0 0 0 0 0 0 0 +5.607 5.087 -1.772 0 0 0 0 0 0 0 +5.604 5.116 -1.777 0 0 0 0 0 0 0 +5.593 5.123 -1.776 0 0 0 0 0 0 0 +5.569 5.132 -1.773 0 0 0 0 0 0 0 +5.561 5.158 -1.776 0 0 0 0 0 0 0 +5.532 5.163 -1.771 0 0 0 0 0 0 0 +5.507 5.173 -1.768 0 0 0 0 0 0 0 +5.497 5.195 -1.77 0 0 0 0 0 0 0 +5.463 5.196 -1.764 0 0 0 0 0 0 0 +5.455 5.205 -1.764 0 0 0 0 0 0 0 +5.429 5.213 -1.761 0 0 0 0 0 0 0 +5.415 5.232 -1.762 0 0 0 0 0 0 0 +5.378 5.229 -1.755 0 0 0 0 0 0 0 +5.369 5.253 -1.757 0 0 0 0 0 0 0 +5.345 5.263 -1.755 0 0 0 0 0 0 0 +5.348 5.282 -1.759 0 0 0 0 0 0 0 +5.322 5.289 -1.755 0 0 0 0 0 0 0 +5.305 5.306 -1.755 0 0 0 0 0 0 0 +5.284 5.318 -1.754 0 0 0 0 0 0 0 +5.266 5.333 -1.753 0 0 0 0 0 0 0 +5.251 5.351 -1.754 0 0 0 0 0 0 0 +5.237 5.371 -1.755 0 0 0 0 0 0 0 +5.215 5.365 -1.75 0 0 0 0 0 0 0 +5.188 5.371 -1.746 0 0 0 0 0 0 0 +5.166 5.382 -1.744 0 0 0 0 0 0 0 +5.145 5.394 -1.743 0 0 0 0 0 0 0 +5.12 5.402 -1.74 0 0 0 0 0 0 0 +5.103 5.418 -1.74 0 0 0 0 0 0 0 +5.088 5.435 -1.741 0 0 0 0 0 0 0 +5.076 5.44 -1.74 0 0 0 0 0 0 0 +5.061 5.458 -1.74 0 0 0 0 0 0 0 +5.05 5.481 -1.743 0 0 0 0 0 0 0 +5.03 5.494 -1.742 0 0 0 0 0 0 0 +5.001 5.497 -1.737 0 0 0 0 0 0 0 +4.999 5.53 -1.743 0 0 0 0 0 0 0 +4.985 5.548 -1.744 0 0 0 0 0 0 0 +4.967 5.564 -1.744 0 0 0 0 0 0 0 +4.969 5.583 -1.748 0 0 0 0 0 0 0 +4.945 5.591 -1.745 0 0 0 0 0 0 0 +4.945 5.627 -1.752 0 0 0 0 0 0 0 +4.93 5.646 -1.753 0 0 0 0 0 0 0 +4.902 5.65 -1.749 0 0 0 0 0 0 0 +4.882 5.662 -1.748 0 0 0 0 0 0 0 +4.883 5.699 -1.756 0 0 0 0 0 0 0 +4.859 5.689 -1.75 0 0 0 0 0 0 0 +4.848 5.714 -1.753 0 0 0 0 0 0 0 +4.829 5.727 -1.752 0 0 0 0 0 0 0 +4.801 5.73 -1.748 0 0 0 0 0 0 0 +4.784 5.747 -1.749 0 0 0 0 0 0 0 +4.777 5.775 -1.753 0 0 0 0 0 0 0 +4.743 5.771 -1.747 0 0 0 0 0 0 0 +4.737 5.781 -1.748 0 0 0 0 0 0 0 +4.715 5.792 -1.746 0 0 0 0 0 0 0 +4.697 5.806 -1.746 0 0 0 0 0 0 0 +4.675 5.817 -1.745 0 0 0 0 0 0 0 +4.685 5.868 -1.757 0 0 0 0 0 0 0 +4.639 5.847 -1.745 0 0 0 0 0 0 0 +4.634 5.879 -1.751 0 0 0 0 0 0 0 +4.619 5.878 -1.748 0 0 0 0 0 0 0 +4.601 5.894 -1.749 0 0 0 0 0 0 0 +4.572 5.895 -1.744 0 0 0 0 0 0 0 +4.581 5.945 -1.756 0 0 0 0 0 0 0 +4.532 5.919 -1.743 0 0 0 0 0 0 0 +4.541 5.97 -1.755 0 0 0 0 0 0 0 +4.515 5.975 -1.752 0 0 0 0 0 0 0 +4.487 5.958 -1.744 0 0 0 0 0 0 0 +4.493 6.004 -1.754 0 0 0 0 0 0 0 +4.464 6.004 -1.75 0 0 0 0 0 0 0 +4.447 6.021 -1.751 0 0 0 0 0 0 0 +4.421 6.026 -1.748 0 0 0 0 0 0 0 +4.415 6.057 -1.753 0 0 0 0 0 0 0 +4.391 6.065 -1.751 0 0 0 0 0 0 0 +4.383 6.073 -1.752 0 0 0 0 0 0 0 +4.366 6.09 -1.753 0 0 0 0 0 0 0 +4.327 6.075 -1.744 0 0 0 0 0 0 0 +4.325 6.114 -1.752 0 0 0 0 0 0 0 +4.305 6.126 -1.751 0 0 0 0 0 0 0 +4.276 6.125 -1.747 0 0 0 0 0 0 0 +4.273 6.163 -1.754 0 0 0 0 0 0 0 +4.239 6.134 -1.744 0 0 0 0 0 0 0 +4.236 6.171 -1.751 0 0 0 0 0 0 0 +4.213 6.178 -1.749 0 0 0 0 0 0 0 +4.186 6.18 -1.745 0 0 0 0 0 0 0 +4.16 6.184 -1.743 0 0 0 0 0 0 0 +4.143 6.202 -1.744 0 0 0 0 0 0 0 +4.124 6.215 -1.744 0 0 0 0 0 0 0 +4.107 6.21 -1.741 0 0 0 0 0 0 0 +4.097 6.237 -1.745 0 0 0 0 0 0 0 +4.065 6.232 -1.74 0 0 0 0 0 0 0 +4.041 6.237 -1.737 0 0 0 0 0 0 0 +4.038 6.276 -1.745 0 0 0 0 0 0 0 +4.008 6.272 -1.74 0 0 0 0 0 0 0 +3.992 6.291 -1.742 0 0 0 0 0 0 0 +3.979 6.292 -1.741 0 0 0 0 0 0 0 +3.966 6.316 -1.744 0 0 0 0 0 0 0 +3.936 6.312 -1.739 0 0 0 0 0 0 0 +3.921 6.331 -1.741 0 0 0 0 0 0 0 +3.901 6.343 -1.741 0 0 0 0 0 0 0 +3.884 6.361 -1.743 0 0 0 0 0 0 0 +3.863 6.371 -1.742 0 0 0 0 0 0 0 +3.852 6.376 -1.742 0 0 0 0 0 0 0 +3.829 6.383 -1.74 0 0 0 0 0 0 0 +3.81 6.396 -1.741 0 0 0 0 0 0 0 +3.793 6.415 -1.743 0 0 0 0 0 0 0 +3.763 6.41 -1.738 0 0 0 0 0 0 0 +3.747 6.429 -1.74 0 0 0 0 0 0 0 +3.724 6.435 -1.738 0 0 0 0 0 0 0 +3.704 6.447 -1.738 0 0 0 0 0 0 0 +3.688 6.443 -1.735 0 0 0 0 0 0 0 +3.674 6.466 -1.739 0 0 0 0 0 0 0 +3.65 6.471 -1.737 0 0 0 0 0 0 0 +3.638 6.497 -1.741 0 0 0 0 0 0 0 +3.602 6.48 -1.733 0 0 0 0 0 0 0 +3.587 6.501 -1.736 0 0 0 0 0 0 0 +3.563 6.506 -1.734 0 0 0 0 0 0 0 +3.558 6.52 -1.736 0 0 0 0 0 0 0 +3.535 6.528 -1.735 0 0 0 0 0 0 0 +3.527 6.561 -1.742 0 0 0 0 0 0 0 +3.509 6.577 -1.743 0 0 0 0 0 0 0 +3.486 6.585 -1.742 0 0 0 0 0 0 0 +3.477 6.618 -1.748 0 0 0 0 0 0 0 +3.47 6.63 -1.75 0 0 0 0 0 0 0 +3.432 6.607 -1.741 0 0 0 0 0 0 0 +3.41 6.616 -1.74 0 0 0 0 0 0 0 +3.389 6.626 -1.74 0 0 0 0 0 0 0 +3.374 6.649 -1.744 0 0 0 0 0 0 0 +3.341 6.635 -1.737 0 0 0 0 0 0 0 +3.339 6.684 -1.747 0 0 0 0 0 0 0 +3.315 6.662 -1.74 0 0 0 0 0 0 0 +3.309 6.702 -1.748 0 0 0 0 0 0 0 +3.276 6.688 -1.741 0 0 0 0 0 0 0 +3.251 6.691 -1.739 0 0 0 0 0 0 0 +3.246 6.734 -1.748 0 0 0 0 0 0 0 +3.216 6.725 -1.743 0 0 0 0 0 0 0 +3.212 6.772 -1.753 0 0 0 0 0 0 0 +3.179 6.756 -1.746 0 0 0 0 0 0 0 +3.181 6.789 -1.754 0 0 0 0 0 0 0 +3.146 6.769 -1.745 0 0 0 0 0 0 0 +3.134 6.8 -1.751 0 0 0 0 0 0 0 +3.108 6.799 -1.748 0 0 0 0 0 0 0 +3.093 6.823 -1.752 0 0 0 0 0 0 0 +3.065 6.818 -1.748 0 0 0 0 0 0 0 +3.052 6.846 -1.753 0 0 0 0 0 0 0 +3.027 6.819 -1.744 0 0 0 0 0 0 0 +3.013 6.846 -1.749 0 0 0 0 0 0 0 +2.985 6.839 -1.745 0 0 0 0 0 0 0 +2.972 6.87 -1.751 0 0 0 0 0 0 0 +2.934 6.84 -1.74 0 0 0 0 0 0 0 +2.919 6.864 -1.744 0 0 0 0 0 0 0 +2.892 6.86 -1.741 0 0 0 0 0 0 0 +2.866 6.858 -1.738 0 0 0 0 0 0 0 +2.865 6.886 -1.744 0 0 0 0 0 0 0 +2.834 6.872 -1.738 0 0 0 0 0 0 0 +2.812 6.881 -1.738 0 0 0 0 0 0 0 +2.79 6.89 -1.738 0 0 0 0 0 0 0 +2.769 6.898 -1.738 0 0 0 0 0 0 0 +2.743 6.898 -1.735 0 0 0 0 0 0 0 +2.741 6.924 -1.741 0 0 0 0 0 0 0 +2.712 6.914 -1.736 0 0 0 0 0 0 0 +2.693 6.928 -1.738 0 0 0 0 0 0 0 +2.669 6.931 -1.736 0 0 0 0 0 0 0 +2.642 6.927 -1.733 0 0 0 0 0 0 0 +2.623 6.942 -1.735 0 0 0 0 0 0 0 +2.597 6.938 -1.731 0 0 0 0 0 0 0 +2.576 6.95 -1.732 0 0 0 0 0 0 0 +2.571 6.968 -1.736 0 0 0 0 0 0 0 +2.547 6.971 -1.735 0 0 0 0 0 0 0 +2.521 6.968 -1.732 0 0 0 0 0 0 0 +2.5 6.978 -1.732 0 0 0 0 0 0 0 +2.481 6.996 -1.735 0 0 0 0 0 0 0 +2.455 6.991 -1.732 0 0 0 0 0 0 0 +2.432 6.997 -1.731 0 0 0 0 0 0 0 +2.431 7.029 -1.739 0 0 0 0 0 0 0 +2.399 7.007 -1.731 0 0 0 0 0 0 0 +2.373 7.003 -1.728 0 0 0 0 0 0 0 +2.347 7 -1.725 0 0 0 0 0 0 0 +2.329 7.018 -1.728 0 0 0 0 0 0 0 +2.299 7.001 -1.722 0 0 0 0 0 0 0 +2.288 7.042 -1.73 0 0 0 0 0 0 0 +2.266 7.012 -1.722 0 0 0 0 0 0 0 +2.248 7.032 -1.725 0 0 0 0 0 0 0 +2.224 7.032 -1.723 0 0 0 0 0 0 0 +2.209 7.063 -1.729 0 0 0 0 0 0 0 +2.189 7.077 -1.731 0 0 0 0 0 0 0 +2.164 7.073 -1.728 0 0 0 0 0 0 0 +2.131 7.044 -1.719 0 0 0 0 0 0 0 +2.052 6.821 -1.66 0 0 0 0 0 0 0 +2.028 6.816 -1.657 0 0 0 0 0 0 0 +1.996 6.787 -1.648 0 0 0 0 0 0 0 +1.981 6.815 -1.654 0 0 0 0 0 0 0 +1.953 6.797 -1.647 0 0 0 0 0 0 0 +1.931 6.802 -1.647 0 0 0 0 0 0 0 +0.865 3.05 -0.671 0 0 0 0 0 0 0 +1.906 6.795 -1.644 0 0 0 0 0 0 0 +0.855 3.051 -0.671 0 0 0 0 0 0 0 +0.845 3.052 -0.67 0 0 0 0 0 0 0 +0.836 3.056 -0.671 0 0 0 0 0 0 0 +0.825 3.055 -0.67 0 0 0 0 0 0 0 +0.817 3.062 -0.671 0 0 0 0 0 0 0 +0.806 3.06 -0.67 0 0 0 0 0 0 0 +0.797 3.065 -0.67 0 0 0 0 0 0 0 +0.792 3.066 -0.67 0 0 0 0 0 0 0 +0.784 3.076 -0.672 0 0 0 0 0 0 0 +0.774 3.075 -0.671 0 0 0 0 0 0 0 +0.766 3.085 -0.673 0 0 0 0 0 0 0 +0.755 3.083 -0.672 0 0 0 0 0 0 0 +0.747 3.091 -0.674 0 0 0 0 0 0 0 +0.738 3.097 -0.674 0 0 0 0 0 0 0 +0.736 3.108 -0.677 0 0 0 0 0 0 0 +0.722 3.095 -0.673 0 0 0 0 0 0 0 +0.716 3.111 -0.676 0 0 0 0 0 0 0 +0.705 3.109 -0.675 0 0 0 0 0 0 0 +0.698 3.127 -0.679 0 0 0 0 0 0 0 +0.692 3.144 -0.683 0 0 0 0 0 0 0 +0.685 3.161 -0.687 0 0 0 0 0 0 0 +0.675 3.138 -0.681 0 0 0 0 0 0 0 +0.668 3.153 -0.684 0 0 0 0 0 0 0 +0.662 3.176 -0.69 0 0 0 0 0 0 0 +0.647 3.15 -0.682 0 0 0 0 0 0 0 +0.63 3.119 -0.674 0 0 0 0 0 0 0 +0.622 3.131 -0.676 0 0 0 0 0 0 0 +0.605 3.093 -0.666 0 0 0 0 0 0 0 +0.601 3.097 -0.667 0 0 0 0 0 0 0 +0.594 3.116 -0.672 0 0 0 0 0 0 0 +0.578 3.08 -0.662 0 0 0 0 0 0 0 +0.568 3.084 -0.662 0 0 0 0 0 0 0 +0.565 3.124 -0.672 0 0 0 0 0 0 0 +0.549 3.089 -0.663 0 0 0 0 0 0 0 +0.54 3.093 -0.663 0 0 0 0 0 0 0 +0.538 3.113 -0.668 0 0 0 0 0 0 0 +0.521 3.07 -0.657 0 0 0 0 0 0 0 +0.517 3.103 -0.665 0 0 0 0 0 0 0 +0.509 3.122 -0.669 0 0 0 0 0 0 0 +0.497 3.106 -0.665 0 0 0 0 0 0 0 +0.484 3.086 -0.659 0 0 0 0 0 0 0 +0.478 3.113 -0.666 0 0 0 0 0 0 0 +0.463 3.08 -0.657 0 0 0 0 0 0 0 +0.458 3.078 -0.657 0 0 0 0 0 0 0 +0.454 3.122 -0.667 0 0 0 0 0 0 0 +0.441 3.099 -0.661 0 0 0 0 0 0 0 +0.43 3.088 -0.658 0 0 0 0 0 0 0 +0.425 3.124 -0.667 0 0 0 0 0 0 0 +0.41 3.089 -0.658 0 0 0 0 0 0 0 +0.401 3.092 -0.658 0 0 0 0 0 0 0 +0.401 3.133 -0.668 0 0 0 0 0 0 0 +0.388 3.108 -0.661 0 0 0 0 0 0 0 +0.378 3.113 -0.662 0 0 0 0 0 0 0 +0.37 3.122 -0.664 0 0 0 0 0 0 0 +0.357 3.098 -0.658 0 0 0 0 0 0 0 +0.347 3.099 -0.658 0 0 0 0 0 0 0 +0.341 3.131 -0.666 0 0 0 0 0 0 0 +0.334 3.108 -0.66 0 0 0 0 0 0 0 +0.323 3.101 -0.658 0 0 0 0 0 0 0 +0.316 3.128 -0.664 0 0 0 0 0 0 0 +0.304 3.103 -0.658 0 0 0 0 0 0 0 +0.297 3.137 -0.666 0 0 0 0 0 0 0 +0.286 3.128 -0.664 0 0 0 0 0 0 0 +0.275 3.118 -0.661 0 0 0 0 0 0 0 +0.272 3.139 -0.666 0 0 0 0 0 0 0 +0.262 3.134 -0.665 0 0 0 0 0 0 0 +0.251 3.124 -0.662 0 0 0 0 0 0 0 +0.244 3.167 -0.673 0 0 0 0 0 0 0 +0.234 3.162 -0.671 0 0 0 0 0 0 0 +0.224 3.161 -0.671 0 0 0 0 0 0 0 +0.214 3.161 -0.671 0 0 0 0 0 0 0 +0.204 3.158 -0.67 0 0 0 0 0 0 0 +0.198 3.141 -0.665 0 0 0 0 0 0 0 +0.188 3.149 -0.667 0 0 0 0 0 0 0 +0.179 3.171 -0.673 0 0 0 0 0 0 0 +0.17 3.178 -0.674 0 0 0 0 0 0 0 +0.159 3.167 -0.671 0 0 0 0 0 0 0 +0.15 3.181 -0.674 0 0 0 0 0 0 0 +0.139 3.166 -0.671 0 0 0 0 0 0 0 +0.134 3.174 -0.673 0 0 0 0 0 0 0 +0.125 3.195 -0.678 0 0 0 0 0 0 0 +0.115 3.198 -0.678 0 0 0 0 0 0 0 +0.105 3.19 -0.676 0 0 0 0 0 0 0 +0.095 3.192 -0.677 0 0 0 0 0 0 0 +0.085 3.193 -0.677 0 0 0 0 0 0 0 +0.075 3.216 -0.683 0 0 0 0 0 0 0 +0.07 3.213 -0.682 0 0 0 0 0 0 0 +0.06 3.232 -0.687 0 0 0 0 0 0 0 +0.05 3.228 -0.686 0 0 0 0 0 0 0 +0.04 3.23 -0.686 0 0 0 0 0 0 0 +0.03 3.217 -0.683 0 0 0 0 0 0 0 +0.02 3.221 -0.684 0 0 0 0 0 0 0 +0.01 3.223 -0.684 0 0 0 0 0 0 0 +0.004 3.227 -0.685 0 0 0 0 0 0 0 +-0.006 3.233 -0.687 0 0 0 0 0 0 0 +-0.016 3.213 -0.682 0 0 0 0 0 0 0 +-0.026 3.235 -0.687 0 0 0 0 0 0 0 +-0.115 7.327 -1.711 0 0 0 0 0 0 0 +-0.139 7.37 -1.722 0 0 0 0 0 0 0 +-0.162 7.356 -1.719 0 0 0 0 0 0 0 +-0.186 7.392 -1.728 0 0 0 0 0 0 0 +-0.196 7.357 -1.719 0 0 0 0 0 0 0 +-0.22 7.358 -1.72 0 0 0 0 0 0 0 +-0.244 7.381 -1.726 0 0 0 0 0 0 0 +-0.267 7.382 -1.726 0 0 0 0 0 0 0 +-0.29 7.381 -1.726 0 0 0 0 0 0 0 +-0.313 7.374 -1.725 0 0 0 0 0 0 0 +-0.337 7.389 -1.728 0 0 0 0 0 0 0 +-0.35 7.413 -1.735 0 0 0 0 0 0 0 +-0.376 7.472 -1.75 0 0 0 0 0 0 0 +-0.401 7.488 -1.754 0 0 0 0 0 0 0 +-0.423 7.472 -1.75 0 0 0 0 0 0 0 +-0.45 7.524 -1.764 0 0 0 0 0 0 0 +-0.481 7.624 -1.789 0 0 0 0 0 0 0 +-0.503 7.607 -1.785 0 0 0 0 0 0 0 +-0.511 7.54 -1.769 0 0 0 0 0 0 0 +-0.529 7.469 -1.751 0 0 0 0 0 0 0 +-0.551 7.452 -1.747 0 0 0 0 0 0 0 +-0.575 7.454 -1.748 0 0 0 0 0 0 0 +-0.6 7.465 -1.752 0 0 0 0 0 0 0 +-0.618 7.402 -1.736 0 0 0 0 0 0 0 +-0.642 7.405 -1.738 0 0 0 0 0 0 0 +-0.654 7.418 -1.741 0 0 0 0 0 0 0 +-0.676 7.4 -1.737 0 0 0 0 0 0 0 +-0.7 7.402 -1.738 0 0 0 0 0 0 0 +-0.721 7.382 -1.734 0 0 0 0 0 0 0 +-0.747 7.401 -1.739 0 0 0 0 0 0 0 +-0.77 7.395 -1.738 0 0 0 0 0 0 0 +-0.794 7.398 -1.74 0 0 0 0 0 0 0 +-0.806 7.403 -1.741 0 0 0 0 0 0 0 +-0.827 7.385 -1.737 0 0 0 0 0 0 0 +-0.851 7.39 -1.739 0 0 0 0 0 0 0 +-0.875 7.389 -1.74 0 0 0 0 0 0 0 +-0.901 7.41 -1.745 0 0 0 0 0 0 0 +-0.92 7.37 -1.736 0 0 0 0 0 0 0 +-0.944 7.379 -1.739 0 0 0 0 0 0 0 +-0.967 7.376 -1.739 0 0 0 0 0 0 0 +-0.98 7.384 -1.742 0 0 0 0 0 0 0 +-1.004 7.387 -1.743 0 0 0 0 0 0 0 +-1.029 7.393 -1.745 0 0 0 0 0 0 0 +-1.051 7.38 -1.743 0 0 0 0 0 0 0 +-1.073 7.373 -1.742 0 0 0 0 0 0 0 +-1.096 7.364 -1.741 0 0 0 0 0 0 0 +-1.121 7.378 -1.745 0 0 0 0 0 0 0 +-1.132 7.372 -1.744 0 0 0 0 0 0 0 +-1.153 7.355 -1.741 0 0 0 0 0 0 0 +-1.179 7.369 -1.745 0 0 0 0 0 0 0 +-1.204 7.376 -1.748 0 0 0 0 0 0 0 +-1.223 7.348 -1.742 0 0 0 0 0 0 0 +-1.25 7.367 -1.747 0 0 0 0 0 0 0 +-1.27 7.344 -1.743 0 0 0 0 0 0 0 +-1.284 7.353 -1.745 0 0 0 0 0 0 0 +-1.309 7.36 -1.748 0 0 0 0 0 0 0 +-1.331 7.352 -1.747 0 0 0 0 0 0 0 +-1.354 7.344 -1.746 0 0 0 0 0 0 0 +-1.38 7.355 -1.75 0 0 0 0 0 0 0 +-1.402 7.347 -1.749 0 0 0 0 0 0 0 +-1.424 7.335 -1.747 0 0 0 0 0 0 0 +-1.446 7.327 -1.746 0 0 0 0 0 0 0 +-1.459 7.332 -1.748 0 0 0 0 0 0 0 +-1.482 7.328 -1.748 0 0 0 0 0 0 0 +-1.505 7.323 -1.748 0 0 0 0 0 0 0 +-1.528 7.32 -1.749 0 0 0 0 0 0 0 +-1.551 7.313 -1.748 0 0 0 0 0 0 0 +-1.576 7.32 -1.751 0 0 0 0 0 0 0 +-1.597 7.305 -1.749 0 0 0 0 0 0 0 +-1.609 7.305 -1.749 0 0 0 0 0 0 0 +-1.637 7.32 -1.755 0 0 0 0 0 0 0 +-1.651 7.279 -1.745 0 0 0 0 0 0 0 +-1.676 7.28 -1.747 0 0 0 0 0 0 0 +-1.703 7.293 -1.752 0 0 0 0 0 0 0 +-1.722 7.273 -1.748 0 0 0 0 0 0 0 +-1.749 7.282 -1.752 0 0 0 0 0 0 0 +-1.757 7.268 -1.749 0 0 0 0 0 0 0 +-1.786 7.287 -1.755 0 0 0 0 0 0 0 +-1.799 7.242 -1.745 0 0 0 0 0 0 0 +-1.828 7.261 -1.751 0 0 0 0 0 0 0 +-1.862 7.298 -1.762 0 0 0 0 0 0 0 +-1.89 7.311 -1.767 0 0 0 0 0 0 0 +-1.917 7.32 -1.771 0 0 0 0 0 0 0 +-1.923 7.295 -1.765 0 0 0 0 0 0 0 +-1.945 7.287 -1.765 0 0 0 0 0 0 0 +-1.972 7.296 -1.769 0 0 0 0 0 0 0 +-2.001 7.312 -1.775 0 0 0 0 0 0 0 +-2.006 7.242 -1.758 0 0 0 0 0 0 0 +-2.032 7.245 -1.761 0 0 0 0 0 0 0 +-2.04 7.188 -1.747 0 0 0 0 0 0 0 +-2.052 7.187 -1.748 0 0 0 0 0 0 0 +-2.083 7.212 -1.756 0 0 0 0 0 0 0 +-2.103 7.194 -1.753 0 0 0 0 0 0 0 +-2.119 7.165 -1.747 0 0 0 0 0 0 0 +-2.144 7.166 -1.749 0 0 0 0 0 0 0 +-2.167 7.161 -1.75 0 0 0 0 0 0 0 +-2.189 7.154 -1.75 0 0 0 0 0 0 0 +-2.208 7.177 -1.757 0 0 0 0 0 0 0 +-2.222 7.142 -1.749 0 0 0 0 0 0 0 +-2.246 7.141 -1.751 0 0 0 0 0 0 0 +-2.269 7.135 -1.751 0 0 0 0 0 0 0 +-2.301 7.156 -1.759 0 0 0 0 0 0 0 +-2.311 7.112 -1.749 0 0 0 0 0 0 0 +-2.346 7.141 -1.759 0 0 0 0 0 0 0 +-2.36 7.11 -1.752 0 0 0 0 0 0 0 +-2.371 7.104 -1.752 0 0 0 0 0 0 0 +-2.404 7.128 -1.76 0 0 0 0 0 0 0 +-2.415 7.087 -1.751 0 0 0 0 0 0 0 +-2.441 7.093 -1.755 0 0 0 0 0 0 0 +-2.47 7.103 -1.76 0 0 0 0 0 0 0 +-2.489 7.086 -1.757 0 0 0 0 0 0 0 +-2.51 7.075 -1.756 0 0 0 0 0 0 0 +-2.525 7.082 -1.759 0 0 0 0 0 0 0 +-2.544 7.065 -1.757 0 0 0 0 0 0 0 +-2.566 7.055 -1.756 0 0 0 0 0 0 0 +-2.59 7.054 -1.758 0 0 0 0 0 0 0 +-2.617 7.057 -1.761 0 0 0 0 0 0 0 +-2.628 7.02 -1.753 0 0 0 0 0 0 0 +-2.657 7.029 -1.758 0 0 0 0 0 0 0 +-2.667 7.023 -1.758 0 0 0 0 0 0 0 +-2.691 7.02 -1.759 0 0 0 0 0 0 0 +-2.711 7.006 -1.758 0 0 0 0 0 0 0 +-2.73 6.989 -1.755 0 0 0 0 0 0 0 +-2.757 6.995 -1.759 0 0 0 0 0 0 0 +-2.779 6.986 -1.759 0 0 0 0 0 0 0 +-2.798 6.97 -1.757 0 0 0 0 0 0 0 +-2.814 6.978 -1.761 0 0 0 0 0 0 0 +-2.834 6.964 -1.759 0 0 0 0 0 0 0 +-2.855 6.953 -1.759 0 0 0 0 0 0 0 +-2.881 6.955 -1.761 0 0 0 0 0 0 0 +-2.907 6.955 -1.764 0 0 0 0 0 0 0 +-2.919 6.922 -1.758 0 0 0 0 0 0 0 +-2.948 6.929 -1.762 0 0 0 0 0 0 0 +-2.976 6.936 -1.766 0 0 0 0 0 0 0 +-2.982 6.919 -1.763 0 0 0 0 0 0 0 +-3 6.901 -1.761 0 0 0 0 0 0 0 +-3.029 6.909 -1.765 0 0 0 0 0 0 0 +-3.048 6.892 -1.763 0 0 0 0 0 0 0 +-3.082 6.911 -1.771 0 0 0 0 0 0 0 +-3.097 6.885 -1.767 0 0 0 0 0 0 0 +-3.12 6.879 -1.768 0 0 0 0 0 0 0 +-3.124 6.86 -1.764 0 0 0 0 0 0 0 +-3.155 6.87 -1.769 0 0 0 0 0 0 0 +-3.171 6.849 -1.766 0 0 0 0 0 0 0 +-3.194 6.843 -1.767 0 0 0 0 0 0 0 +-3.229 6.861 -1.775 0 0 0 0 0 0 0 +-3.242 6.831 -1.77 0 0 0 0 0 0 0 +-3.264 6.823 -1.77 0 0 0 0 0 0 0 +-3.275 6.818 -1.77 0 0 0 0 0 0 0 +-3.3 6.816 -1.773 0 0 0 0 0 0 0 +-3.322 6.806 -1.773 0 0 0 0 0 0 0 +-3.358 6.825 -1.781 0 0 0 0 0 0 0 +-3.371 6.798 -1.777 0 0 0 0 0 0 0 +-3.404 6.81 -1.783 0 0 0 0 0 0 0 +-3.423 6.794 -1.781 0 0 0 0 0 0 0 +-3.44 6.803 -1.785 0 0 0 0 0 0 0 +-3.469 6.806 -1.789 0 0 0 0 0 0 0 +-3.499 6.812 -1.794 0 0 0 0 0 0 0 +-3.521 6.803 -1.794 0 0 0 0 0 0 0 +-3.551 6.807 -1.799 0 0 0 0 0 0 0 +-3.614 6.875 -1.821 0 0 0 0 0 0 0 +-3.618 6.831 -1.812 0 0 0 0 0 0 0 +-3.628 6.797 -1.806 0 0 0 0 0 0 0 +-3.634 6.783 -1.803 0 0 0 0 0 0 0 +-3.645 6.753 -1.798 0 0 0 0 0 0 0 +-3.663 6.736 -1.796 0 0 0 0 0 0 0 +-3.684 6.725 -1.796 0 0 0 0 0 0 0 +-3.697 6.698 -1.792 0 0 0 0 0 0 0 +-3.711 6.674 -1.789 0 0 0 0 0 0 0 +-3.735 6.668 -1.79 0 0 0 0 0 0 0 +-3.727 6.628 -1.78 0 0 0 0 0 0 0 +-3.743 6.608 -1.778 0 0 0 0 0 0 0 +-3.762 6.594 -1.778 0 0 0 0 0 0 0 +-3.786 6.588 -1.779 0 0 0 0 0 0 0 +-3.81 6.581 -1.78 0 0 0 0 0 0 0 +-3.825 6.56 -1.778 0 0 0 0 0 0 0 +-3.843 6.543 -1.777 0 0 0 0 0 0 0 +-3.851 6.534 -1.776 0 0 0 0 0 0 0 +-3.88 6.535 -1.779 0 0 0 0 0 0 0 +-3.881 6.491 -1.77 0 0 0 0 0 0 0 +-3.915 6.501 -1.777 0 0 0 0 0 0 0 +-3.954 6.52 -1.786 0 0 0 0 0 0 0 +-3.953 6.473 -1.776 0 0 0 0 0 0 0 +-3.977 6.465 -1.777 0 0 0 0 0 0 0 +-3.99 6.464 -1.778 0 0 0 0 0 0 0 +-4.005 6.443 -1.776 0 0 0 0 0 0 0 +-4.022 6.426 -1.775 0 0 0 0 0 0 0 +-4.049 6.423 -1.778 0 0 0 0 0 0 0 +-4.071 6.413 -1.778 0 0 0 0 0 0 0 +-4.088 6.395 -1.777 0 0 0 0 0 0 0 +-4.107 6.381 -1.777 0 0 0 0 0 0 0 +-4.118 6.355 -1.773 0 0 0 0 0 0 0 +-4.135 6.358 -1.776 0 0 0 0 0 0 0 +-4.162 6.357 -1.779 0 0 0 0 0 0 0 +-4.165 6.318 -1.771 0 0 0 0 0 0 0 +-4.196 6.321 -1.776 0 0 0 0 0 0 0 +-4.221 6.316 -1.778 0 0 0 0 0 0 0 +-4.232 6.289 -1.775 0 0 0 0 0 0 0 +-4.253 6.278 -1.775 0 0 0 0 0 0 0 +-4.279 6.295 -1.782 0 0 0 0 0 0 0 +-4.274 6.245 -1.771 0 0 0 0 0 0 0 +-4.312 6.258 -1.779 0 0 0 0 0 0 0 +-4.329 6.242 -1.778 0 0 0 0 0 0 0 +-4.34 6.215 -1.775 0 0 0 0 0 0 0 +-4.366 6.211 -1.778 0 0 0 0 0 0 0 +-4.385 6.196 -1.777 0 0 0 0 0 0 0 +-4.394 6.189 -1.777 0 0 0 0 0 0 0 +-4.415 6.177 -1.778 0 0 0 0 0 0 0 +-4.433 6.161 -1.777 0 0 0 0 0 0 0 +-4.457 6.154 -1.779 0 0 0 0 0 0 0 +-4.474 6.136 -1.778 0 0 0 0 0 0 0 +-4.505 6.138 -1.783 0 0 0 0 0 0 0 +-4.518 6.116 -1.78 0 0 0 0 0 0 0 +-4.519 6.096 -1.777 0 0 0 0 0 0 0 +-4.534 6.077 -1.775 0 0 0 0 0 0 0 +-4.556 6.066 -1.776 0 0 0 0 0 0 0 +-4.572 6.049 -1.775 0 0 0 0 0 0 0 +-4.597 6.042 -1.778 0 0 0 0 0 0 0 +-4.622 6.035 -1.78 0 0 0 0 0 0 0 +-4.637 6.016 -1.778 0 0 0 0 0 0 0 +-4.655 6 -1.778 0 0 0 0 0 0 0 +-4.66 5.987 -1.776 0 0 0 0 0 0 0 +-4.677 5.97 -1.776 0 0 0 0 0 0 0 +-4.707 5.969 -1.78 0 0 0 0 0 0 0 +-4.729 5.959 -1.781 0 0 0 0 0 0 0 +-4.74 5.934 -1.778 0 0 0 0 0 0 0 +-4.759 5.92 -1.778 0 0 0 0 0 0 0 +-4.773 5.899 -1.777 0 0 0 0 0 0 0 +-4.796 5.908 -1.782 0 0 0 0 0 0 0 +-4.804 5.881 -1.778 0 0 0 0 0 0 0 +-4.835 5.881 -1.783 0 0 0 0 0 0 0 +-4.839 5.848 -1.777 0 0 0 0 0 0 0 +-4.858 5.834 -1.778 0 0 0 0 0 0 0 +-4.874 5.816 -1.777 0 0 0 0 0 0 0 +-4.903 5.812 -1.78 0 0 0 0 0 0 0 +-4.923 5.8 -1.781 0 0 0 0 0 0 0 +-4.915 5.772 -1.775 0 0 0 0 0 0 0 +-4.934 5.758 -1.775 0 0 0 0 0 0 0 +-4.947 5.736 -1.773 0 0 0 0 0 0 0 +-4.971 5.728 -1.776 0 0 0 0 0 0 0 +-4.991 5.714 -1.776 0 0 0 0 0 0 0 +-5.012 5.702 -1.778 0 0 0 0 0 0 0 +-5.054 5.713 -1.786 0 0 0 0 0 0 0 +-5.07 5.713 -1.789 0 0 0 0 0 0 0 +-5.135 5.749 -1.807 0 0 0 0 0 0 0 +-5.137 5.716 -1.801 0 0 0 0 0 0 0 +-5.133 5.675 -1.793 0 0 0 0 0 0 0 +-5.148 5.656 -1.792 0 0 0 0 0 0 0 +-5.159 5.633 -1.789 0 0 0 0 0 0 0 +-5.178 5.618 -1.79 0 0 0 0 0 0 0 +-5.191 5.614 -1.791 0 0 0 0 0 0 0 +-5.226 5.616 -1.797 0 0 0 0 0 0 0 +-5.224 5.579 -1.79 0 0 0 0 0 0 0 +-5.261 5.584 -1.797 0 0 0 0 0 0 0 +-5.255 5.542 -1.789 0 0 0 0 0 0 0 +-5.283 5.536 -1.793 0 0 0 0 0 0 0 +-5.283 5.502 -1.786 0 0 0 0 0 0 0 +-5.298 5.5 -1.789 0 0 0 0 0 0 0 +-5.3 5.468 -1.783 0 0 0 0 0 0 0 +-5.312 5.446 -1.781 0 0 0 0 0 0 0 +-5.343 5.443 -1.786 0 0 0 0 0 0 0 +-5.354 5.421 -1.784 0 0 0 0 0 0 0 +-5.385 5.418 -1.789 0 0 0 0 0 0 0 +-5.373 5.372 -1.779 0 0 0 0 0 0 0 +-5.403 5.367 -1.783 0 0 0 0 0 0 0 +-5.401 5.349 -1.78 0 0 0 0 0 0 0 +-5.412 5.327 -1.778 0 0 0 0 0 0 0 +-5.425 5.306 -1.777 0 0 0 0 0 0 0 +-5.428 5.275 -1.772 0 0 0 0 0 0 0 +-5.458 5.272 -1.777 0 0 0 0 0 0 0 +-5.448 5.229 -1.767 0 0 0 0 0 0 0 +-5.477 5.224 -1.772 0 0 0 0 0 0 0 +-5.48 5.21 -1.77 0 0 0 0 0 0 0 +-5.51 5.206 -1.775 0 0 0 0 0 0 0 +-5.535 5.197 -1.778 0 0 0 0 0 0 0 +-5.513 5.144 -1.764 0 0 0 0 0 0 0 +-5.556 5.151 -1.774 0 0 0 0 0 0 0 +-5.565 5.127 -1.771 0 0 0 0 0 0 0 +-5.557 5.088 -1.763 0 0 0 0 0 0 0 +-5.585 5.097 -1.77 0 0 0 0 0 0 0 +-5.574 5.055 -1.761 0 0 0 0 0 0 0 +-5.589 5.037 -1.761 0 0 0 0 0 0 0 +-5.612 5.026 -1.763 0 0 0 0 0 0 0 +-5.627 5.007 -1.762 0 0 0 0 0 0 0 +-5.635 4.983 -1.76 0 0 0 0 0 0 0 +-5.648 4.963 -1.759 0 0 0 0 0 0 0 +-5.689 4.983 -1.77 0 0 0 0 0 0 0 +-5.668 4.934 -1.758 0 0 0 0 0 0 0 +-5.682 4.915 -1.758 0 0 0 0 0 0 0 +-5.718 4.914 -1.764 0 0 0 0 0 0 0 +-5.716 4.881 -1.759 0 0 0 0 0 0 0 +-5.745 4.875 -1.763 0 0 0 0 0 0 0 +-5.763 4.859 -1.764 0 0 0 0 0 0 0 +-5.744 4.827 -1.755 0 0 0 0 0 0 0 +-5.762 4.812 -1.756 0 0 0 0 0 0 0 +-5.79 4.805 -1.761 0 0 0 0 0 0 0 +-5.786 4.771 -1.754 0 0 0 0 0 0 0 +-5.801 4.752 -1.754 0 0 0 0 0 0 0 +-5.814 4.733 -1.754 0 0 0 0 0 0 0 +-5.82 4.707 -1.751 0 0 0 0 0 0 0 +-5.832 4.687 -1.75 0 0 0 0 0 0 0 +-5.833 4.673 -1.748 0 0 0 0 0 0 0 +-5.848 4.654 -1.748 0 0 0 0 0 0 0 +-5.852 4.628 -1.744 0 0 0 0 0 0 0 +-5.88 4.62 -1.749 0 0 0 0 0 0 0 +-5.855 4.571 -1.736 0 0 0 0 0 0 0 +-5.898 4.575 -1.745 0 0 0 0 0 0 0 +-5.892 4.541 -1.739 0 0 0 0 0 0 0 +-5.904 4.535 -1.741 0 0 0 0 0 0 0 +-5.908 4.508 -1.737 0 0 0 0 0 0 0 +-5.931 4.497 -1.74 0 0 0 0 0 0 0 +-5.919 4.458 -1.732 0 0 0 0 0 0 0 +-5.925 4.434 -1.729 0 0 0 0 0 0 0 +-5.945 4.42 -1.731 0 0 0 0 0 0 0 +-5.964 4.405 -1.733 0 0 0 0 0 0 0 +-5.959 4.387 -1.729 0 0 0 0 0 0 0 +-5.986 4.378 -1.733 0 0 0 0 0 0 0 +-5.987 4.35 -1.729 0 0 0 0 0 0 0 +-6.019 4.344 -1.735 0 0 0 0 0 0 0 +-6.011 4.31 -1.728 0 0 0 0 0 0 0 +-6.034 4.297 -1.731 0 0 0 0 0 0 0 +-6.035 4.27 -1.728 0 0 0 0 0 0 0 +-6.04 4.259 -1.727 0 0 0 0 0 0 0 +-6.048 4.237 -1.726 0 0 0 0 0 0 0 +-6.062 4.218 -1.726 0 0 0 0 0 0 0 +-6.077 4.2 -1.726 0 0 0 0 0 0 0 +-6.083 4.176 -1.724 0 0 0 0 0 0 0 +-6.1 4.159 -1.725 0 0 0 0 0 0 0 +-6.093 4.127 -1.719 0 0 0 0 0 0 0 +-6.1 4.118 -1.719 0 0 0 0 0 0 0 +-6.119 4.103 -1.721 0 0 0 0 0 0 0 +-6.132 4.083 -1.721 0 0 0 0 0 0 0 +-6.151 4.068 -1.723 0 0 0 0 0 0 0 +-6.166 4.05 -1.724 0 0 0 0 0 0 0 +-6.169 4.024 -1.721 0 0 0 0 0 0 0 +-6.194 4.013 -1.725 0 0 0 0 0 0 0 +-6.194 3.986 -1.721 0 0 0 0 0 0 0 +-6.2 3.976 -1.721 0 0 0 0 0 0 0 +-6.234 3.97 -1.727 0 0 0 0 0 0 0 +-6.225 3.937 -1.721 0 0 0 0 0 0 0 +-6.249 3.924 -1.724 0 0 0 0 0 0 0 +-6.258 3.903 -1.723 0 0 0 0 0 0 0 +-6.26 3.877 -1.72 0 0 0 0 0 0 0 +-6.285 3.865 -1.724 0 0 0 0 0 0 0 +-6.278 3.847 -1.72 0 0 0 0 0 0 0 +-6.304 3.836 -1.724 0 0 0 0 0 0 0 +-6.309 3.812 -1.722 0 0 0 0 0 0 0 +-6.328 3.796 -1.724 0 0 0 0 0 0 0 +-6.349 3.782 -1.727 0 0 0 0 0 0 0 +-6.338 3.748 -1.72 0 0 0 0 0 0 0 +-6.36 3.734 -1.723 0 0 0 0 0 0 0 +-6.359 3.72 -1.721 0 0 0 0 0 0 0 +-6.376 3.703 -1.723 0 0 0 0 0 0 0 +-6.394 3.687 -1.725 0 0 0 0 0 0 0 +-6.411 3.67 -1.726 0 0 0 0 0 0 0 +-6.412 3.644 -1.723 0 0 0 0 0 0 0 +-6.466 3.647 -1.735 0 0 0 0 0 0 0 +-6.433 3.603 -1.723 0 0 0 0 0 0 0 +-6.44 3.593 -1.723 0 0 0 0 0 0 0 +-6.457 3.576 -1.725 0 0 0 0 0 0 0 +-6.441 3.541 -1.717 0 0 0 0 0 0 0 +-6.476 3.534 -1.724 0 0 0 0 0 0 0 +-6.466 3.502 -1.718 0 0 0 0 0 0 0 +-6.499 3.494 -1.724 0 0 0 0 0 0 0 +-6.498 3.467 -1.721 0 0 0 0 0 0 0 +-6.525 3.455 -1.725 0 0 0 0 0 0 0 +-6.516 3.437 -1.721 0 0 0 0 0 0 0 +-6.522 3.414 -1.72 0 0 0 0 0 0 0 +-6.524 3.389 -1.717 0 0 0 0 0 0 0 +-6.571 3.387 -1.728 0 0 0 0 0 0 0 +-6.557 3.354 -1.721 0 0 0 0 0 0 0 +-6.559 3.329 -1.718 0 0 0 0 0 0 0 +-6.564 3.306 -1.717 0 0 0 0 0 0 0 +-6.569 3.296 -1.717 0 0 0 0 0 0 0 +-6.585 3.277 -1.718 0 0 0 0 0 0 0 +-6.604 3.261 -1.721 0 0 0 0 0 0 0 +-6.619 3.243 -1.722 0 0 0 0 0 0 0 +-6.638 3.226 -1.725 0 0 0 0 0 0 0 +-6.657 3.21 -1.727 0 0 0 0 0 0 0 +-6.655 3.183 -1.724 0 0 0 0 0 0 0 +-6.667 3.176 -1.726 0 0 0 0 0 0 0 +-6.702 3.166 -1.732 0 0 0 0 0 0 0 +-6.706 3.143 -1.731 0 0 0 0 0 0 0 +-6.727 3.126 -1.734 0 0 0 0 0 0 0 +-6.736 3.105 -1.734 0 0 0 0 0 0 0 +-6.769 3.095 -1.74 0 0 0 0 0 0 0 +-6.786 3.076 -1.742 0 0 0 0 0 0 0 +-6.792 3.067 -1.743 0 0 0 0 0 0 0 +-6.802 3.045 -1.743 0 0 0 0 0 0 0 +-6.831 3.032 -1.748 0 0 0 0 0 0 0 +-6.823 3.003 -1.743 0 0 0 0 0 0 0 +-6.838 2.984 -1.744 0 0 0 0 0 0 0 +-6.82 2.951 -1.737 0 0 0 0 0 0 0 +-6.838 2.933 -1.74 0 0 0 0 0 0 0 +-6.846 2.924 -1.741 0 0 0 0 0 0 0 +-6.856 2.903 -1.741 0 0 0 0 0 0 0 +-6.89 2.892 -1.747 0 0 0 0 0 0 0 +-6.87 2.858 -1.74 0 0 0 0 0 0 0 +-7.251 1.837 -1.749 0 0 0 0 0 0 0 +-7.266 1.817 -1.752 0 0 0 0 0 0 0 +-7.27 1.793 -1.751 0 0 0 0 0 0 0 +-7.249 1.764 -1.744 0 0 0 0 0 0 0 +-7.218 1.733 -1.735 0 0 0 0 0 0 0 +-7.195 1.715 -1.728 0 0 0 0 0 0 0 +-7.192 1.691 -1.727 0 0 0 0 0 0 0 +-7.22 1.673 -1.732 0 0 0 0 0 0 0 +-7.205 1.646 -1.727 0 0 0 0 0 0 0 +-7.235 1.629 -1.733 0 0 0 0 0 0 0 +-7.234 1.605 -1.732 0 0 0 0 0 0 0 +-7.277 1.59 -1.742 0 0 0 0 0 0 0 +-7.306 1.585 -1.748 0 0 0 0 0 0 0 +-7.319 1.563 -1.75 0 0 0 0 0 0 0 +-7.316 1.539 -1.748 0 0 0 0 0 0 0 +-7.323 1.516 -1.749 0 0 0 0 0 0 0 +-7.337 1.495 -1.751 0 0 0 0 0 0 0 +-7.334 1.47 -1.749 0 0 0 0 0 0 0 +-7.342 1.448 -1.75 0 0 0 0 0 0 0 +-7.354 1.438 -1.753 0 0 0 0 0 0 0 +-7.345 1.413 -1.749 0 0 0 0 0 0 0 +-7.361 1.392 -1.752 0 0 0 0 0 0 0 +-7.361 1.368 -1.751 0 0 0 0 0 0 0 +-7.358 1.343 -1.749 0 0 0 0 0 0 0 +-7.37 1.322 -1.751 0 0 0 0 0 0 0 +-7.37 1.298 -1.75 0 0 0 0 0 0 0 +-7.368 1.286 -1.749 0 0 0 0 0 0 0 +-7.392 1.266 -1.754 0 0 0 0 0 0 0 +-7.363 1.237 -1.746 0 0 0 0 0 0 0 +-7.376 1.215 -1.748 0 0 0 0 0 0 0 +-7.399 1.195 -1.753 0 0 0 0 0 0 0 +-7.392 1.17 -1.75 0 0 0 0 0 0 0 +-7.401 1.148 -1.752 0 0 0 0 0 0 0 +-7.401 1.136 -1.751 0 0 0 0 0 0 0 +-7.406 1.113 -1.752 0 0 0 0 0 0 0 +-7.398 1.088 -1.749 0 0 0 0 0 0 0 +-7.425 1.068 -1.755 0 0 0 0 0 0 0 +-7.416 1.043 -1.752 0 0 0 0 0 0 0 +-7.422 1.02 -1.752 0 0 0 0 0 0 0 +-7.419 0.996 -1.751 0 0 0 0 0 0 0 +-7.442 0.987 -1.756 0 0 0 0 0 0 0 +-7.431 0.962 -1.753 0 0 0 0 0 0 0 +-7.452 0.941 -1.757 0 0 0 0 0 0 0 +-7.443 0.916 -1.754 0 0 0 0 0 0 0 +-7.45 0.893 -1.755 0 0 0 0 0 0 0 +-7.468 0.871 -1.759 0 0 0 0 0 0 0 +-7.469 0.848 -1.759 0 0 0 0 0 0 0 +-7.458 0.835 -1.756 0 0 0 0 0 0 0 +-7.463 0.812 -1.756 0 0 0 0 0 0 0 +-7.475 0.789 -1.759 0 0 0 0 0 0 0 +-7.472 0.765 -1.757 0 0 0 0 0 0 0 +-7.478 0.742 -1.758 0 0 0 0 0 0 0 +-7.494 0.72 -1.761 0 0 0 0 0 0 0 +-7.481 0.695 -1.758 0 0 0 0 0 0 0 +-7.484 0.683 -1.758 0 0 0 0 0 0 0 +-7.509 0.662 -1.764 0 0 0 0 0 0 0 +-7.513 0.638 -1.764 0 0 0 0 0 0 0 +-7.495 0.613 -1.76 0 0 0 0 0 0 0 +-7.511 0.591 -1.763 0 0 0 0 0 0 0 +-7.522 0.568 -1.765 0 0 0 0 0 0 0 +-7.497 0.542 -1.759 0 0 0 0 0 0 0 +-7.524 0.52 -1.765 0 0 0 0 0 0 0 +-7.507 0.507 -1.761 0 0 0 0 0 0 0 +-7.52 0.484 -1.763 0 0 0 0 0 0 0 +-7.514 0.46 -1.761 0 0 0 0 0 0 0 +-7.525 0.437 -1.764 0 0 0 0 0 0 0 +-7.515 0.413 -1.761 0 0 0 0 0 0 0 +-7.516 0.389 -1.761 0 0 0 0 0 0 0 +-7.5 0.365 -1.757 0 0 0 0 0 0 0 +-7.518 0.354 -1.761 0 0 0 0 0 0 0 +-7.527 0.331 -1.763 0 0 0 0 0 0 0 +-7.506 0.306 -1.758 0 0 0 0 0 0 0 +-7.511 0.283 -1.759 0 0 0 0 0 0 0 +-7.522 0.259 -1.761 0 0 0 0 0 0 0 +-7.501 0.235 -1.756 0 0 0 0 0 0 0 +-7.523 0.212 -1.761 0 0 0 0 0 0 0 +-7.528 0.189 -1.762 0 0 0 0 0 0 0 +-7.507 0.176 -1.757 0 0 0 0 0 0 0 +-7.503 0.153 -1.756 0 0 0 0 0 0 0 +-7.519 0.129 -1.76 0 0 0 0 0 0 0 +-7.495 0.106 -1.753 0 0 0 0 0 0 0 +-7.518 0.082 -1.759 0 0 0 0 0 0 0 +-7.52 0.059 -1.76 0 0 0 0 0 0 0 +-7.517 0.035 -1.759 0 0 0 0 0 0 0 +-7.524 0.023 -1.761 0 0 0 0 0 0 0 +-7.526 -0.001 -1.761 0 0 0 0 0 0 0 +-7.518 -0.024 -1.759 0 0 0 0 0 0 0 +-7.528 -0.048 -1.761 0 0 0 0 0 0 0 +-7.526 -0.071 -1.761 0 0 0 0 0 0 0 +-7.52 -0.095 -1.76 0 0 0 0 0 0 0 +-7.535 -0.119 -1.763 0 0 0 0 0 0 0 +-7.533 -0.131 -1.763 0 0 0 0 0 0 0 +-7.521 -0.154 -1.76 0 0 0 0 0 0 0 +-7.534 -0.178 -1.763 0 0 0 0 0 0 0 +-7.529 -0.202 -1.762 0 0 0 0 0 0 0 +-7.519 -0.225 -1.76 0 0 0 0 0 0 0 +-7.528 -0.249 -1.762 0 0 0 0 0 0 0 +-7.533 -0.273 -1.764 0 0 0 0 0 0 0 +-7.523 -0.284 -1.761 0 0 0 0 0 0 0 +-7.532 -0.308 -1.764 0 0 0 0 0 0 0 +-7.509 -0.331 -1.759 0 0 0 0 0 0 0 +-7.518 -0.355 -1.761 0 0 0 0 0 0 0 +-7.519 -0.379 -1.761 0 0 0 0 0 0 0 +-7.506 -0.402 -1.759 0 0 0 0 0 0 0 +-7.503 -0.425 -1.758 0 0 0 0 0 0 0 +-7.519 -0.438 -1.762 0 0 0 0 0 0 0 +-7.493 -0.46 -1.756 0 0 0 0 0 0 0 +-7.515 -0.485 -1.762 0 0 0 0 0 0 0 +-7.496 -0.508 -1.758 0 0 0 0 0 0 0 +-7.488 -0.531 -1.756 0 0 0 0 0 0 0 +-7.508 -0.556 -1.761 0 0 0 0 0 0 0 +-7.483 -0.578 -1.756 0 0 0 0 0 0 0 +-7.504 -0.603 -1.761 0 0 0 0 0 0 0 +-7.474 -0.612 -1.754 0 0 0 0 0 0 0 +-7.49 -0.637 -1.759 0 0 0 0 0 0 0 +-7.48 -0.66 -1.757 0 0 0 0 0 0 0 +-7.478 -0.684 -1.757 0 0 0 0 0 0 0 +-7.495 -0.709 -1.761 0 0 0 0 0 0 0 +-7.487 -0.732 -1.76 0 0 0 0 0 0 0 +-7.479 -0.755 -1.759 0 0 0 0 0 0 0 +-7.474 -0.766 -1.758 0 0 0 0 0 0 0 +-7.469 -0.789 -1.757 0 0 0 0 0 0 0 +-7.471 -0.813 -1.758 0 0 0 0 0 0 0 +-7.474 -0.838 -1.76 0 0 0 0 0 0 0 +-7.471 -0.861 -1.76 0 0 0 0 0 0 0 +-7.468 -0.884 -1.76 0 0 0 0 0 0 0 +-7.46 -0.907 -1.758 0 0 0 0 0 0 0 +-7.47 -0.92 -1.761 0 0 0 0 0 0 0 +-7.451 -0.942 -1.757 0 0 0 0 0 0 0 +-7.447 -0.965 -1.757 0 0 0 0 0 0 0 +-7.459 -0.99 -1.761 0 0 0 0 0 0 0 +-7.44 -1.012 -1.757 0 0 0 0 0 0 0 +-7.443 -1.036 -1.758 0 0 0 0 0 0 0 +-7.436 -1.059 -1.757 0 0 0 0 0 0 0 +-7.434 -1.07 -1.757 0 0 0 0 0 0 0 +-7.427 -1.093 -1.756 0 0 0 0 0 0 0 +-7.423 -1.117 -1.756 0 0 0 0 0 0 0 +-7.826 -1.204 -1.859 0 0 0 0 0 0 0 +-7.805 -1.226 -1.855 0 0 0 0 0 0 0 +-7.811 -1.252 -1.857 0 0 0 0 0 0 0 +-7.788 -1.273 -1.852 0 0 0 0 0 0 0 +-7.805 -1.301 -1.858 0 0 0 0 0 0 0 +-7.781 -1.322 -1.853 0 0 0 0 0 0 0 +-7.793 -1.337 -1.856 0 0 0 0 0 0 0 +-7.771 -1.358 -1.852 0 0 0 0 0 0 0 +-7.778 -1.385 -1.855 0 0 0 0 0 0 0 +-7.766 -1.408 -1.853 0 0 0 0 0 0 0 +-7.779 -1.435 -1.857 0 0 0 0 0 0 0 +-7.761 -1.457 -1.854 0 0 0 0 0 0 0 +-7.776 -1.485 -1.859 0 0 0 0 0 0 0 +-7.752 -1.493 -1.853 0 0 0 0 0 0 0 +-7.757 -1.52 -1.856 0 0 0 0 0 0 0 +-7.743 -1.542 -1.853 0 0 0 0 0 0 0 +-7.746 -1.568 -1.855 0 0 0 0 0 0 0 +-7.725 -1.589 -1.851 0 0 0 0 0 0 0 +-7.743 -1.618 -1.857 0 0 0 0 0 0 0 +-7.751 -1.645 -1.861 0 0 0 0 0 0 0 +-7.735 -1.655 -1.857 0 0 0 0 0 0 0 +-7.743 -1.682 -1.861 0 0 0 0 0 0 0 +-7.731 -1.704 -1.859 0 0 0 0 0 0 0 +-7.75 -1.734 -1.865 0 0 0 0 0 0 0 +-7.724 -1.754 -1.86 0 0 0 0 0 0 0 +-7.727 -1.78 -1.862 0 0 0 0 0 0 0 +-7.707 -1.801 -1.858 0 0 0 0 0 0 0 +-7.693 -1.81 -1.855 0 0 0 0 0 0 0 +-7.696 -1.837 -1.858 0 0 0 0 0 0 0 +-7.689 -1.861 -1.857 0 0 0 0 0 0 0 +-7.679 -1.884 -1.856 0 0 0 0 0 0 0 +-7.667 -1.906 -1.855 0 0 0 0 0 0 0 +-7.656 -1.929 -1.853 0 0 0 0 0 0 0 +-7.629 -1.948 -1.848 0 0 0 0 0 0 0 +-7.643 -1.964 -1.852 0 0 0 0 0 0 0 +-7.638 -1.989 -1.853 0 0 0 0 0 0 0 +-7.64 -2.015 -1.855 0 0 0 0 0 0 0 +-7.601 -2.03 -1.846 0 0 0 0 0 0 0 +-7.606 -2.057 -1.849 0 0 0 0 0 0 0 +-7.607 -2.083 -1.851 0 0 0 0 0 0 0 +-7.604 -2.108 -1.852 0 0 0 0 0 0 0 +-7.572 -2.124 -1.845 0 0 0 0 0 0 0 +-7.577 -2.139 -1.848 0 0 0 0 0 0 0 +-7.586 -2.167 -1.852 0 0 0 0 0 0 0 +-7.573 -2.189 -1.85 0 0 0 0 0 0 0 +-7.544 -2.206 -1.845 0 0 0 0 0 0 0 +-7.546 -2.233 -1.847 0 0 0 0 0 0 0 +-7.543 -2.258 -1.848 0 0 0 0 0 0 0 +-7.551 -2.286 -1.852 0 0 0 0 0 0 0 +-7.523 -2.29 -1.845 0 0 0 0 0 0 0 +-7.521 -2.316 -1.847 0 0 0 0 0 0 0 +-7.51 -2.338 -1.846 0 0 0 0 0 0 0 +-7.52 -2.367 -1.85 0 0 0 0 0 0 0 +-7.503 -2.388 -1.848 0 0 0 0 0 0 0 +-7.492 -2.41 -1.847 0 0 0 0 0 0 0 +-7.469 -2.429 -1.843 0 0 0 0 0 0 0 +-7.495 -2.45 -1.851 0 0 0 0 0 0 0 +-7.469 -2.468 -1.846 0 0 0 0 0 0 0 +-7.031 -3.557 -1.849 0 0 0 0 0 0 0 +-6.997 -3.567 -1.843 0 0 0 0 0 0 0 +-6.979 -3.586 -1.841 0 0 0 0 0 0 0 +-6.966 -3.607 -1.841 0 0 0 0 0 0 0 +-6.95 -3.626 -1.839 0 0 0 0 0 0 0 +-6.953 -3.641 -1.842 0 0 0 0 0 0 0 +-6.929 -3.657 -1.838 0 0 0 0 0 0 0 +-6.936 -3.689 -1.844 0 0 0 0 0 0 0 +-6.909 -3.702 -1.839 0 0 0 0 0 0 0 +-6.894 -3.722 -1.838 0 0 0 0 0 0 0 +-6.895 -3.75 -1.842 0 0 0 0 0 0 0 +-6.895 -3.778 -1.845 0 0 0 0 0 0 0 +-6.87 -3.779 -1.84 0 0 0 0 0 0 0 +-6.867 -3.805 -1.842 0 0 0 0 0 0 0 +-6.851 -3.825 -1.841 0 0 0 0 0 0 0 +-6.849 -3.852 -1.844 0 0 0 0 0 0 0 +-6.837 -3.873 -1.844 0 0 0 0 0 0 0 +-6.818 -3.891 -1.842 0 0 0 0 0 0 0 +-6.824 -3.923 -1.847 0 0 0 0 0 0 0 +-6.79 -3.917 -1.839 0 0 0 0 0 0 0 +-6.789 -3.945 -1.843 0 0 0 0 0 0 0 +-6.768 -3.962 -1.84 0 0 0 0 0 0 0 +-6.759 -3.985 -1.841 0 0 0 0 0 0 0 +-6.753 -4.01 -1.843 0 0 0 0 0 0 0 +-6.734 -4.027 -1.841 0 0 0 0 0 0 0 +-6.723 -4.05 -1.842 0 0 0 0 0 0 0 +-6.745 -4.077 -1.85 0 0 0 0 0 0 0 +-6.727 -4.095 -1.848 0 0 0 0 0 0 0 +-6.703 -4.109 -1.845 0 0 0 0 0 0 0 +-6.683 -4.126 -1.843 0 0 0 0 0 0 0 +-6.685 -4.157 -1.847 0 0 0 0 0 0 0 +-6.665 -4.173 -1.845 0 0 0 0 0 0 0 +-6.629 -4.18 -1.839 0 0 0 0 0 0 0 +-6.624 -4.191 -1.839 0 0 0 0 0 0 0 +-6.611 -4.212 -1.839 0 0 0 0 0 0 0 +-6.603 -4.236 -1.841 0 0 0 0 0 0 0 +-6.596 -4.261 -1.843 0 0 0 0 0 0 0 +-6.571 -4.274 -1.839 0 0 0 0 0 0 0 +-6.54 -4.283 -1.834 0 0 0 0 0 0 0 +-6.515 -4.296 -1.83 0 0 0 0 0 0 0 +-6.521 -4.315 -1.834 0 0 0 0 0 0 0 +-6.485 -4.32 -1.828 0 0 0 0 0 0 0 +-6.486 -4.35 -1.832 0 0 0 0 0 0 0 +-6.47 -4.37 -1.831 0 0 0 0 0 0 0 +-6.452 -4.387 -1.83 0 0 0 0 0 0 0 +-6.451 -4.416 -1.834 0 0 0 0 0 0 0 +-6.405 -4.414 -1.824 0 0 0 0 0 0 0 +-6.407 -4.445 -1.829 0 0 0 0 0 0 0 +-6.381 -4.442 -1.823 0 0 0 0 0 0 0 +-6.386 -4.475 -1.829 0 0 0 0 0 0 0 +-6.355 -4.483 -1.824 0 0 0 0 0 0 0 +-6.35 -4.509 -1.827 0 0 0 0 0 0 0 +-6.35 -4.54 -1.831 0 0 0 0 0 0 0 +-6.307 -4.539 -1.822 0 0 0 0 0 0 0 +-6.309 -4.57 -1.827 0 0 0 0 0 0 0 +-6.305 -4.582 -1.828 0 0 0 0 0 0 0 +-6.293 -4.605 -1.829 0 0 0 0 0 0 0 +-6.285 -4.629 -1.831 0 0 0 0 0 0 0 +-6.249 -4.632 -1.824 0 0 0 0 0 0 0 +-6.242 -4.658 -1.827 0 0 0 0 0 0 0 +-6.227 -4.677 -1.827 0 0 0 0 0 0 0 +-6.211 -4.696 -1.826 0 0 0 0 0 0 0 +-6.199 -4.702 -1.825 0 0 0 0 0 0 0 +-6.189 -4.725 -1.826 0 0 0 0 0 0 0 +-6.171 -4.742 -1.825 0 0 0 0 0 0 0 +-6.148 -4.755 -1.823 0 0 0 0 0 0 0 +-6.133 -4.775 -1.823 0 0 0 0 0 0 0 +-6.12 -4.795 -1.823 0 0 0 0 0 0 0 +-6.124 -4.83 -1.829 0 0 0 0 0 0 0 +-6.088 -4.817 -1.82 0 0 0 0 0 0 0 +-6.082 -4.843 -1.823 0 0 0 0 0 0 0 +-6.067 -4.862 -1.823 0 0 0 0 0 0 0 +-6.051 -4.881 -1.823 0 0 0 0 0 0 0 +-6.044 -4.906 -1.826 0 0 0 0 0 0 0 +-6.006 -4.907 -1.818 0 0 0 0 0 0 0 +-6.001 -4.934 -1.822 0 0 0 0 0 0 0 +-5.991 -4.942 -1.821 0 0 0 0 0 0 0 +-5.973 -4.959 -1.82 0 0 0 0 0 0 0 +-5.971 -4.989 -1.825 0 0 0 0 0 0 0 +-5.933 -4.989 -1.817 0 0 0 0 0 0 0 +-5.936 -5.024 -1.824 0 0 0 0 0 0 0 +-5.914 -5.037 -1.822 0 0 0 0 0 0 0 +-5.907 -5.063 -1.825 0 0 0 0 0 0 0 +-5.883 -5.059 -1.819 0 0 0 0 0 0 0 +-5.873 -5.082 -1.821 0 0 0 0 0 0 0 +-5.862 -5.105 -1.823 0 0 0 0 0 0 0 +-5.846 -5.123 -1.823 0 0 0 0 0 0 0 +-5.831 -5.143 -1.823 0 0 0 0 0 0 0 +-5.797 -5.145 -1.817 0 0 0 0 0 0 0 +-5.794 -5.175 -1.822 0 0 0 0 0 0 0 +-5.785 -5.183 -1.821 0 0 0 0 0 0 0 +-5.765 -5.199 -1.82 0 0 0 0 0 0 0 +-5.758 -5.224 -1.823 0 0 0 0 0 0 0 +-5.731 -5.233 -1.82 0 0 0 0 0 0 0 +-5.716 -5.253 -1.82 0 0 0 0 0 0 0 +-5.705 -5.276 -1.822 0 0 0 0 0 0 0 +-5.684 -5.29 -1.821 0 0 0 0 0 0 0 +-5.671 -5.31 -1.822 0 0 0 0 0 0 0 +-5.644 -5.302 -1.815 0 0 0 0 0 0 0 +-5.636 -5.328 -1.818 0 0 0 0 0 0 0 +-5.615 -5.341 -1.817 0 0 0 0 0 0 0 +-5.605 -5.366 -1.819 0 0 0 0 0 0 0 +-5.582 -5.378 -1.817 0 0 0 0 0 0 0 +-5.571 -5.401 -1.819 0 0 0 0 0 0 0 +-5.549 -5.413 -1.817 0 0 0 0 0 0 0 +-5.536 -5.417 -1.816 0 0 0 0 0 0 0 +-5.517 -5.433 -1.815 0 0 0 0 0 0 0 +-5.498 -5.448 -1.814 0 0 0 0 0 0 0 +-5.497 -5.482 -1.82 0 0 0 0 0 0 0 +-5.48 -5.499 -1.82 0 0 0 0 0 0 0 +-5.458 -5.512 -1.819 0 0 0 0 0 0 0 +-5.453 -5.542 -1.823 0 0 0 0 0 0 0 +-5.442 -5.547 -1.822 0 0 0 0 0 0 0 +-5.409 -5.549 -1.817 0 0 0 0 0 0 0 +-5.4 -5.574 -1.82 0 0 0 0 0 0 0 +-5.392 -5.601 -1.823 0 0 0 0 0 0 0 +-5.392 -5.636 -1.829 0 0 0 0 0 0 0 +-5.386 -5.666 -1.834 0 0 0 0 0 0 0 +-5.365 -5.68 -1.833 0 0 0 0 0 0 0 +-5.323 -5.653 -1.821 0 0 0 0 0 0 0 +-5.286 -5.648 -1.813 0 0 0 0 0 0 0 +-5.277 -5.675 -1.817 0 0 0 0 0 0 0 +-5.233 -5.663 -1.807 0 0 0 0 0 0 0 +-5.218 -5.682 -1.808 0 0 0 0 0 0 0 +-5.187 -5.684 -1.803 0 0 0 0 0 0 0 +-5.168 -5.699 -1.803 0 0 0 0 0 0 0 +-5.155 -5.703 -1.801 0 0 0 0 0 0 0 +-5.141 -5.723 -1.803 0 0 0 0 0 0 0 +-5.134 -5.752 -1.807 0 0 0 0 0 0 0 +-5.104 -5.754 -1.802 0 0 0 0 0 0 0 +-5.093 -5.779 -1.805 0 0 0 0 0 0 0 +-5.062 -5.78 -1.8 0 0 0 0 0 0 0 +-5.043 -5.795 -1.8 0 0 0 0 0 0 0 +-5.041 -5.811 -1.803 0 0 0 0 0 0 0 +-5.025 -5.83 -1.804 0 0 0 0 0 0 0 +-5.008 -5.847 -1.804 0 0 0 0 0 0 0 +-4.967 -5.836 -1.795 0 0 0 0 0 0 0 +-4.967 -5.873 -1.802 0 0 0 0 0 0 0 +-4.928 -5.864 -1.794 0 0 0 0 0 0 0 +-4.916 -5.887 -1.797 0 0 0 0 0 0 0 +-4.908 -5.897 -1.797 0 0 0 0 0 0 0 +-4.888 -5.91 -1.797 0 0 0 0 0 0 0 +-4.861 -5.915 -1.794 0 0 0 0 0 0 0 +-4.856 -5.947 -1.799 0 0 0 0 0 0 0 +-4.822 -5.944 -1.793 0 0 0 0 0 0 0 +-4.809 -5.965 -1.795 0 0 0 0 0 0 0 +-4.813 -6.009 -1.804 0 0 0 0 0 0 0 +-4.767 -5.991 -1.794 0 0 0 0 0 0 0 +-4.759 -6 -1.794 0 0 0 0 0 0 0 +-4.745 -6.021 -1.796 0 0 0 0 0 0 0 +-4.715 -6.022 -1.792 0 0 0 0 0 0 0 +-4.702 -6.044 -1.794 0 0 0 0 0 0 0 +-4.682 -6.058 -1.794 0 0 0 0 0 0 0 +-4.666 -6.075 -1.794 0 0 0 0 0 0 0 +-4.646 -6.09 -1.794 0 0 0 0 0 0 0 +-4.635 -6.094 -1.794 0 0 0 0 0 0 0 +-4.607 -6.098 -1.79 0 0 0 0 0 0 0 +-4.592 -6.117 -1.792 0 0 0 0 0 0 0 +-4.582 -6.144 -1.795 0 0 0 0 0 0 0 +-4.537 -6.124 -1.785 0 0 0 0 0 0 0 +-4.535 -6.162 -1.792 0 0 0 0 0 0 0 +-4.506 -6.163 -1.788 0 0 0 0 0 0 0 +-4.498 -6.172 -1.789 0 0 0 0 0 0 0 +-4.474 -6.18 -1.787 0 0 0 0 0 0 0 +-4.472 -6.219 -1.794 0 0 0 0 0 0 0 +-4.426 -6.195 -1.783 0 0 0 0 0 0 0 +-4.422 -6.231 -1.79 0 0 0 0 0 0 0 +-4.394 -6.232 -1.786 0 0 0 0 0 0 0 +-4.373 -6.244 -1.785 0 0 0 0 0 0 0 +-4.355 -6.24 -1.782 0 0 0 0 0 0 0 +-4.347 -6.27 -1.787 0 0 0 0 0 0 0 +-4.318 -6.271 -1.783 0 0 0 0 0 0 0 +-4.308 -6.299 -1.787 0 0 0 0 0 0 0 +-4.28 -6.299 -1.783 0 0 0 0 0 0 0 +-4.267 -6.322 -1.786 0 0 0 0 0 0 0 +-4.243 -6.331 -1.785 0 0 0 0 0 0 0 +-4.232 -6.336 -1.784 0 0 0 0 0 0 0 +-4.209 -6.344 -1.783 0 0 0 0 0 0 0 +-4.197 -6.369 -1.786 0 0 0 0 0 0 0 +-4.17 -6.372 -1.783 0 0 0 0 0 0 0 +-4.16 -6.4 -1.788 0 0 0 0 0 0 0 +-4.132 -6.402 -1.784 0 0 0 0 0 0 0 +-4.113 -6.416 -1.785 0 0 0 0 0 0 0 +-4.101 -6.419 -1.784 0 0 0 0 0 0 0 +-4.086 -6.44 -1.786 0 0 0 0 0 0 0 +-4.063 -6.448 -1.785 0 0 0 0 0 0 0 +-4.056 -6.482 -1.791 0 0 0 0 0 0 0 +-4.026 -6.48 -1.787 0 0 0 0 0 0 0 +-4.016 -6.509 -1.792 0 0 0 0 0 0 0 +-4 -6.529 -1.794 0 0 0 0 0 0 0 +-3.994 -6.543 -1.796 0 0 0 0 0 0 0 +-3.979 -6.564 -1.798 0 0 0 0 0 0 0 +-3.963 -6.585 -1.801 0 0 0 0 0 0 0 +-3.945 -6.602 -1.802 0 0 0 0 0 0 0 +-3.946 -6.651 -1.813 0 0 0 0 0 0 0 +-3.909 -6.635 -1.805 0 0 0 0 0 0 0 +-3.896 -6.661 -1.809 0 0 0 0 0 0 0 +-3.873 -6.647 -1.803 0 0 0 0 0 0 0 +-3.877 -6.701 -1.815 0 0 0 0 0 0 0 +-3.866 -6.732 -1.82 0 0 0 0 0 0 0 +-3.834 -6.724 -1.814 0 0 0 0 0 0 0 +-3.78 -6.678 -1.798 0 0 0 0 0 0 0 +-3.746 -6.666 -1.791 0 0 0 0 0 0 0 +-3.734 -6.695 -1.796 0 0 0 0 0 0 0 +-3.715 -6.685 -1.792 0 0 0 0 0 0 0 +-3.702 -6.711 -1.795 0 0 0 0 0 0 0 +-3.67 -6.702 -1.79 0 0 0 0 0 0 0 +-3.649 -6.715 -1.79 0 0 0 0 0 0 0 +-3.63 -6.73 -1.791 0 0 0 0 0 0 0 +-3.607 -6.738 -1.79 0 0 0 0 0 0 0 +-3.585 -6.747 -1.79 0 0 0 0 0 0 0 +-3.572 -6.748 -1.788 0 0 0 0 0 0 0 +-3.557 -6.771 -1.792 0 0 0 0 0 0 0 +-3.528 -6.767 -1.787 0 0 0 0 0 0 0 +-3.511 -6.786 -1.79 0 0 0 0 0 0 0 +-3.486 -6.791 -1.788 0 0 0 0 0 0 0 +-3.468 -6.808 -1.79 0 0 0 0 0 0 0 +-3.438 -6.802 -1.785 0 0 0 0 0 0 0 +-3.429 -6.811 -1.786 0 0 0 0 0 0 0 +-3.415 -6.837 -1.79 0 0 0 0 0 0 0 +-3.396 -6.853 -1.792 0 0 0 0 0 0 0 +-3.359 -6.832 -1.783 0 0 0 0 0 0 0 +-3.341 -6.848 -1.784 0 0 0 0 0 0 0 +-3.325 -6.871 -1.788 0 0 0 0 0 0 0 +-3.304 -6.883 -1.788 0 0 0 0 0 0 0 +-3.3 -6.902 -1.792 0 0 0 0 0 0 0 +-3.265 -6.884 -1.784 0 0 0 0 0 0 0 +-3.249 -6.907 -1.788 0 0 0 0 0 0 0 +-3.218 -6.896 -1.782 0 0 0 0 0 0 0 +-3.202 -6.92 -1.786 0 0 0 0 0 0 0 +-3.175 -6.918 -1.782 0 0 0 0 0 0 0 +-3.159 -6.94 -1.786 0 0 0 0 0 0 0 +-3.134 -6.943 -1.784 0 0 0 0 0 0 0 +-3.125 -6.951 -1.785 0 0 0 0 0 0 0 +-3.097 -6.949 -1.781 0 0 0 0 0 0 0 +-3.082 -6.973 -1.785 0 0 0 0 0 0 0 +-3.057 -6.977 -1.784 0 0 0 0 0 0 0 +-3.039 -6.994 -1.786 0 0 0 0 0 0 0 +-3.01 -6.989 -1.782 0 0 0 0 0 0 0 +-3 -7.025 -1.789 0 0 0 0 0 0 0 +-2.982 -7.014 -1.785 0 0 0 0 0 0 0 +-2.961 -7.025 -1.785 0 0 0 0 0 0 0 +-2.947 -7.054 -1.791 0 0 0 0 0 0 0 +-2.911 -7.031 -1.782 0 0 0 0 0 0 0 +-2.897 -7.06 -1.787 0 0 0 0 0 0 0 +-2.872 -7.062 -1.785 0 0 0 0 0 0 0 +-2.851 -7.074 -1.786 0 0 0 0 0 0 0 +-2.843 -7.086 -1.788 0 0 0 0 0 0 0 +-2.824 -7.104 -1.791 0 0 0 0 0 0 0 +-2.801 -7.111 -1.79 0 0 0 0 0 0 0 +-2.767 -7.089 -1.782 0 0 0 0 0 0 0 +-2.755 -7.125 -1.789 0 0 0 0 0 0 0 +-2.728 -7.121 -1.786 0 0 0 0 0 0 0 +-2.708 -7.135 -1.787 0 0 0 0 0 0 0 +-2.709 -7.173 -1.796 0 0 0 0 0 0 0 +-2.669 -7.133 -1.783 0 0 0 0 0 0 0 +-2.654 -7.163 -1.789 0 0 0 0 0 0 0 +-2.636 -7.182 -1.792 0 0 0 0 0 0 0 +-2.613 -7.19 -1.792 0 0 0 0 0 0 0 +-2.595 -7.211 -1.795 0 0 0 0 0 0 0 +-2.58 -7.241 -1.801 0 0 0 0 0 0 0 +-2.557 -7.211 -1.792 0 0 0 0 0 0 0 +-2.543 -7.244 -1.799 0 0 0 0 0 0 0 +-2.538 -7.305 -1.813 0 0 0 0 0 0 0 +-2.519 -7.324 -1.816 0 0 0 0 0 0 0 +-2.481 -7.286 -1.804 0 0 0 0 0 0 0 +-2.433 -7.22 -1.784 0 0 0 0 0 0 0 +-2.41 -7.226 -1.784 0 0 0 0 0 0 0 +-2.411 -7.269 -1.794 0 0 0 0 0 0 0 +-2.376 -7.237 -1.784 0 0 0 0 0 0 0 +-2.342 -7.212 -1.775 0 0 0 0 0 0 0 +-2.323 -7.228 -1.778 0 0 0 0 0 0 0 +-2.294 -7.215 -1.772 0 0 0 0 0 0 0 +-2.27 -7.219 -1.771 0 0 0 0 0 0 0 +-2.242 -7.209 -1.767 0 0 0 0 0 0 0 +-2.234 -7.224 -1.77 0 0 0 0 0 0 0 +-2.209 -7.223 -1.768 0 0 0 0 0 0 0 +-2.185 -7.225 -1.766 0 0 0 0 0 0 0 +-2.166 -7.246 -1.77 0 0 0 0 0 0 0 +-2.135 -7.223 -1.762 0 0 0 0 0 0 0 +-2.115 -7.239 -1.765 0 0 0 0 0 0 0 +-2.093 -7.248 -1.765 0 0 0 0 0 0 0 +-2.07 -7.212 -1.755 0 0 0 0 0 0 0 +-2.054 -7.243 -1.761 0 0 0 0 0 0 0 +-2.035 -7.26 -1.764 0 0 0 0 0 0 0 +-2.003 -7.233 -1.756 0 0 0 0 0 0 0 +-1.984 -7.256 -1.76 0 0 0 0 0 0 0 +-1.956 -7.24 -1.754 0 0 0 0 0 0 0 +-1.934 -7.251 -1.756 0 0 0 0 0 0 0 +-1.921 -7.245 -1.753 0 0 0 0 0 0 0 +-1.901 -7.264 -1.757 0 0 0 0 0 0 0 +-1.877 -7.264 -1.755 0 0 0 0 0 0 0 +-1.857 -7.284 -1.759 0 0 0 0 0 0 0 +-1.825 -7.25 -1.748 0 0 0 0 0 0 0 +-1.806 -7.271 -1.752 0 0 0 0 0 0 0 +-1.785 -7.284 -1.754 0 0 0 0 0 0 0 +-1.771 -7.277 -1.752 0 0 0 0 0 0 0 +-1.749 -7.288 -1.753 0 0 0 0 0 0 0 +-1.726 -7.29 -1.752 0 0 0 0 0 0 0 +-1.7 -7.284 -1.749 0 0 0 0 0 0 0 +-1.677 -7.289 -1.749 0 0 0 0 0 0 0 +-1.659 -7.315 -1.755 0 0 0 0 0 0 0 +-1.628 -7.286 -1.746 0 0 0 0 0 0 0 +-1.618 -7.293 -1.747 0 0 0 0 0 0 0 +-1.598 -7.313 -1.751 0 0 0 0 0 0 0 +-1.574 -7.312 -1.749 0 0 0 0 0 0 0 +-1.545 -7.287 -1.742 0 0 0 0 0 0 0 +-1.524 -7.305 -1.745 0 0 0 0 0 0 0 +-1.503 -7.317 -1.747 0 0 0 0 0 0 0 +-1.475 -7.299 -1.741 0 0 0 0 0 0 0 +-1.468 -7.324 -1.747 0 0 0 0 0 0 0 +-1.443 -7.314 -1.743 0 0 0 0 0 0 0 +-1.42 -7.318 -1.743 0 0 0 0 0 0 0 +-1.394 -7.307 -1.739 0 0 0 0 0 0 0 +-1.37 -7.31 -1.739 0 0 0 0 0 0 0 +-1.353 -7.346 -1.747 0 0 0 0 0 0 0 +-1.323 -7.312 -1.737 0 0 0 0 0 0 0 +-1.304 -7.339 -1.743 0 0 0 0 0 0 0 +-1.29 -7.324 -1.739 0 0 0 0 0 0 0 +-1.269 -7.34 -1.742 0 0 0 0 0 0 0 +-1.246 -7.348 -1.743 0 0 0 0 0 0 0 +-1.221 -7.336 -1.739 0 0 0 0 0 0 0 +-1.199 -7.35 -1.741 0 0 0 0 0 0 0 +-1.175 -7.346 -1.739 0 0 0 0 0 0 0 +-1.153 -7.357 -1.741 0 0 0 0 0 0 0 +-1.142 -7.359 -1.741 0 0 0 0 0 0 0 +-1.119 -7.366 -1.742 0 0 0 0 0 0 0 +-1.095 -7.362 -1.74 0 0 0 0 0 0 0 +-1.074 -7.385 -1.745 0 0 0 0 0 0 0 +-1.048 -7.369 -1.74 0 0 0 0 0 0 0 +-1.03 -7.405 -1.748 0 0 0 0 0 0 0 +-1.014 -7.374 -1.74 0 0 0 0 0 0 0 +-0.991 -7.382 -1.742 0 0 0 0 0 0 0 +-0.968 -7.384 -1.741 0 0 0 0 0 0 0 +-0.948 -7.414 -1.748 0 0 0 0 0 0 0 +-0.921 -7.39 -1.741 0 0 0 0 0 0 0 +-0.901 -7.417 -1.747 0 0 0 0 0 0 0 +-0.877 -7.413 -1.745 0 0 0 0 0 0 0 +-0.855 -7.427 -1.748 0 0 0 0 0 0 0 +-0.843 -7.428 -1.748 0 0 0 0 0 0 0 +-0.819 -7.425 -1.747 0 0 0 0 0 0 0 +-0.796 -7.426 -1.746 0 0 0 0 0 0 0 +-0.773 -7.428 -1.746 0 0 0 0 0 0 0 +-0.75 -7.444 -1.75 0 0 0 0 0 0 0 +-0.726 -7.439 -1.748 0 0 0 0 0 0 0 +-0.702 -7.425 -1.744 0 0 0 0 0 0 0 +-0.691 -7.442 -1.748 0 0 0 0 0 0 0 +-0.667 -7.434 -1.745 0 0 0 0 0 0 0 +-0.645 -7.456 -1.75 0 0 0 0 0 0 0 +-0.623 -7.471 -1.754 0 0 0 0 0 0 0 +-0.598 -7.46 -1.75 0 0 0 0 0 0 0 +-0.575 -7.458 -1.749 0 0 0 0 0 0 0 +-0.551 -7.454 -1.748 0 0 0 0 0 0 0 +-0.54 -7.47 -1.752 0 0 0 0 0 0 0 +-0.516 -7.466 -1.75 0 0 0 0 0 0 0 +-0.493 -7.465 -1.75 0 0 0 0 0 0 0 +-0.469 -7.465 -1.749 0 0 0 0 0 0 0 +-0.446 -7.472 -1.751 0 0 0 0 0 0 0 +-0.422 -7.462 -1.748 0 0 0 0 0 0 0 +-0.4 -7.487 -1.754 0 0 0 0 0 0 0 +-0.387 -7.47 -1.749 0 0 0 0 0 0 0 +-0.364 -7.481 -1.752 0 0 0 0 0 0 0 +-0.341 -7.48 -1.751 0 0 0 0 0 0 0 +-0.317 -7.489 -1.753 0 0 0 0 0 0 0 +-0.294 -7.489 -1.753 0 0 0 0 0 0 0 +-0.27 -7.492 -1.754 0 0 0 0 0 0 0 +-0.247 -7.485 -1.752 0 0 0 0 0 0 0 +-0.235 -7.507 -1.757 0 0 0 0 0 0 0 +-0.212 -7.523 -1.761 0 0 0 0 0 0 0 +-0.188 -7.493 -1.753 0 0 0 0 0 0 0 +-0.165 -7.515 -1.759 0 0 0 0 0 0 0 +-0.141 -7.521 -1.76 0 0 0 0 0 0 0 +-0.118 -7.549 -1.767 0 0 0 0 0 0 0 +-0.094 -7.524 -1.761 0 0 0 0 0 0 0 +-0.082 -7.537 -1.764 0 0 0 0 0 0 0 +-0.059 -7.518 -1.759 0 0 0 0 0 0 0 +-0.035 -7.553 -1.768 0 0 0 0 0 0 0 +-0.011 -7.542 -1.765 0 0 0 0 0 0 0 +0.012 -7.524 -1.761 0 0 0 0 0 0 0 +0.036 -7.53 -1.762 0 0 0 0 0 0 0 +0.06 -7.542 -1.765 0 0 0 0 0 0 0 +0.072 -7.528 -1.761 0 0 0 0 0 0 0 +0.095 -7.547 -1.766 0 0 0 0 0 0 0 +0.12 -7.566 -1.771 0 0 0 0 0 0 0 +0.143 -7.533 -1.763 0 0 0 0 0 0 0 +0.167 -7.544 -1.766 0 0 0 0 0 0 0 +0.191 -7.559 -1.77 0 0 0 0 0 0 0 +0.215 -7.564 -1.771 0 0 0 0 0 0 0 +0.226 -7.562 -1.771 0 0 0 0 0 0 0 +0.251 -7.576 -1.775 0 0 0 0 0 0 0 +0.274 -7.554 -1.769 0 0 0 0 0 0 0 +0.298 -7.573 -1.774 0 0 0 0 0 0 0 +0.321 -7.549 -1.768 0 0 0 0 0 0 0 +0.346 -7.571 -1.774 0 0 0 0 0 0 0 +0.369 -7.55 -1.769 0 0 0 0 0 0 0 +0.381 -7.565 -1.773 0 0 0 0 0 0 0 +0.404 -7.548 -1.769 0 0 0 0 0 0 0 +0.428 -7.555 -1.771 0 0 0 0 0 0 0 +0.452 -7.552 -1.771 0 0 0 0 0 0 0 +0.475 -7.544 -1.769 0 0 0 0 0 0 0 +0.501 -7.574 -1.777 0 0 0 0 0 0 0 +0.524 -7.561 -1.774 0 0 0 0 0 0 0 +0.535 -7.548 -1.771 0 0 0 0 0 0 0 +0.559 -7.546 -1.771 0 0 0 0 0 0 0 +0.583 -7.548 -1.772 0 0 0 0 0 0 0 +0.608 -7.56 -1.776 0 0 0 0 0 0 0 +0.633 -7.576 -1.78 0 0 0 0 0 0 0 +0.657 -7.574 -1.78 0 0 0 0 0 0 0 +0.68 -7.568 -1.779 0 0 0 0 0 0 0 +0.691 -7.559 -1.777 0 0 0 0 0 0 0 +0.715 -7.56 -1.778 0 0 0 0 0 0 0 +0.742 -7.587 -1.785 0 0 0 0 0 0 0 +0.764 -7.562 -1.779 0 0 0 0 0 0 0 +0.788 -7.563 -1.78 0 0 0 0 0 0 0 +0.811 -7.555 -1.779 0 0 0 0 0 0 0 +0.835 -7.556 -1.78 0 0 0 0 0 0 0 +0.848 -7.566 -1.783 0 0 0 0 0 0 0 +0.87 -7.548 -1.779 0 0 0 0 0 0 0 +0.896 -7.559 -1.782 0 0 0 0 0 0 0 +0.919 -7.554 -1.782 0 0 0 0 0 0 0 +0.942 -7.549 -1.781 0 0 0 0 0 0 0 +0.968 -7.563 -1.786 0 0 0 0 0 0 0 +0.992 -7.56 -1.786 0 0 0 0 0 0 0 +1.006 -7.574 -1.79 0 0 0 0 0 0 0 +1.028 -7.554 -1.785 0 0 0 0 0 0 0 +1.055 -7.574 -1.791 0 0 0 0 0 0 0 +1.079 -7.574 -1.792 0 0 0 0 0 0 0 +1.1 -7.555 -1.788 0 0 0 0 0 0 0 +1.126 -7.561 -1.791 0 0 0 0 0 0 0 +1.148 -7.546 -1.788 0 0 0 0 0 0 0 +1.161 -7.556 -1.791 0 0 0 0 0 0 0 +1.189 -7.575 -1.796 0 0 0 0 0 0 0 +1.184 -7.395 -1.752 0 0 0 0 0 0 0 +1.104 -6.777 -1.596 0 0 0 0 0 0 0 +1.123 -6.758 -1.592 0 0 0 0 0 0 0 +1.141 -6.734 -1.587 0 0 0 0 0 0 0 +1.161 -6.724 -1.585 0 0 0 0 0 0 0 +1.184 -6.73 -1.588 0 0 0 0 0 0 0 +1.196 -6.736 -1.59 0 0 0 0 0 0 0 +1.216 -6.729 -1.589 0 0 0 0 0 0 0 +1.236 -6.721 -1.588 0 0 0 0 0 0 0 +1.254 -6.7 -1.583 0 0 0 0 0 0 0 +1.296 -6.801 -1.61 0 0 0 0 0 0 0 +1.456 -7.501 -1.79 0 0 0 0 0 0 0 +1.492 -7.559 -1.806 0 0 0 0 0 0 0 +1.504 -7.557 -1.806 0 0 0 0 0 0 0 +1.533 -7.576 -1.812 0 0 0 0 0 0 0 +1.552 -7.549 -1.806 0 0 0 0 0 0 0 +1.577 -7.548 -1.807 0 0 0 0 0 0 0 +1.6 -7.541 -1.807 0 0 0 0 0 0 0 +1.624 -7.54 -1.808 0 0 0 0 0 0 0 +1.642 -7.563 -1.814 0 0 0 0 0 0 0 +1.664 -7.549 -1.812 0 0 0 0 0 0 0 +1.688 -7.545 -1.812 0 0 0 0 0 0 0 +1.709 -7.529 -1.81 0 0 0 0 0 0 0 +1.523 -6.536 -1.557 0 0 0 0 0 0 0 +1.531 -6.479 -1.544 0 0 0 0 0 0 0 +1.547 -6.457 -1.539 0 0 0 0 0 0 0 +1.556 -6.449 -1.538 0 0 0 0 0 0 0 +1.578 -6.451 -1.54 0 0 0 0 0 0 0 +1.597 -6.441 -1.538 0 0 0 0 0 0 0 +1.686 -6.703 -1.607 0 0 0 0 0 0 0 +1.675 -6.575 -1.576 0 0 0 0 0 0 0 +1.945 -7.519 -1.821 0 0 0 0 0 0 0 +1.969 -7.515 -1.822 0 0 0 0 0 0 0 +1.984 -7.525 -1.825 0 0 0 0 0 0 0 +2.008 -7.519 -1.825 0 0 0 0 0 0 0 +2.033 -7.52 -1.827 0 0 0 0 0 0 0 +2.057 -7.512 -1.827 0 0 0 0 0 0 0 +2.08 -7.503 -1.826 0 0 0 0 0 0 0 +2.109 -7.517 -1.831 0 0 0 0 0 0 0 +2.129 -7.5 -1.828 0 0 0 0 0 0 0 +2.144 -7.507 -1.831 0 0 0 0 0 0 0 +2.169 -7.504 -1.832 0 0 0 0 0 0 0 +2.195 -7.505 -1.834 0 0 0 0 0 0 0 +2.218 -7.498 -1.834 0 0 0 0 0 0 0 +2.242 -7.491 -1.834 0 0 0 0 0 0 0 +2.264 -7.478 -1.833 0 0 0 0 0 0 0 +2.294 -7.493 -1.839 0 0 0 0 0 0 0 +2.305 -7.486 -1.838 0 0 0 0 0 0 0 +2.326 -7.473 -1.836 0 0 0 0 0 0 0 +2.356 -7.484 -1.841 0 0 0 0 0 0 0 +2.379 -7.477 -1.841 0 0 0 0 0 0 0 +2.408 -7.486 -1.845 0 0 0 0 0 0 0 +2.429 -7.471 -1.844 0 0 0 0 0 0 0 +2.457 -7.476 -1.847 0 0 0 0 0 0 0 +2.476 -7.493 -1.852 0 0 0 0 0 0 0 +2.499 -7.485 -1.852 0 0 0 0 0 0 0 +2.526 -7.486 -1.855 0 0 0 0 0 0 0 +2.549 -7.476 -1.854 0 0 0 0 0 0 0 +2.58 -7.492 -1.861 0 0 0 0 0 0 0 +2.597 -7.464 -1.855 0 0 0 0 0 0 0 +2.625 -7.468 -1.859 0 0 0 0 0 0 0 +2.64 -7.473 -1.861 0 0 0 0 0 0 0 +2.664 -7.467 -1.861 0 0 0 0 0 0 0 +2.684 -7.449 -1.859 0 0 0 0 0 0 0 +2.716 -7.465 -1.865 0 0 0 0 0 0 0 +2.725 -7.416 -1.855 0 0 0 0 0 0 0 +2.752 -7.418 -1.858 0 0 0 0 0 0 0 +2.78 -7.422 -1.861 0 0 0 0 0 0 0 +2.792 -7.418 -1.861 0 0 0 0 0 0 0 +2.812 -7.402 -1.859 0 0 0 0 0 0 0 +2.84 -7.404 -1.862 0 0 0 0 0 0 0 +2.852 -7.366 -1.854 0 0 0 0 0 0 0 +2.871 -7.348 -1.852 0 0 0 0 0 0 0 +2.893 -7.335 -1.851 0 0 0 0 0 0 0 +2.914 -7.321 -1.849 0 0 0 0 0 0 0 +2.929 -7.325 -1.852 0 0 0 0 0 0 0 +2.953 -7.32 -1.853 0 0 0 0 0 0 0 +2.972 -7.3 -1.85 0 0 0 0 0 0 0 +2.993 -7.287 -1.849 0 0 0 0 0 0 0 +3.019 -7.284 -1.851 0 0 0 0 0 0 0 +3.035 -7.259 -1.846 0 0 0 0 0 0 0 +3.057 -7.246 -1.845 0 0 0 0 0 0 0 +3.07 -7.246 -1.847 0 0 0 0 0 0 0 +3.088 -7.224 -1.844 0 0 0 0 0 0 0 +3.115 -7.225 -1.846 0 0 0 0 0 0 0 +3.139 -7.219 -1.847 0 0 0 0 0 0 0 +3.159 -7.202 -1.845 0 0 0 0 0 0 0 +3.182 -7.193 -1.846 0 0 0 0 0 0 0 +3.198 -7.167 -1.842 0 0 0 0 0 0 0 +3.21 -7.166 -1.843 0 0 0 0 0 0 0 +3.231 -7.152 -1.842 0 0 0 0 0 0 0 +3.263 -7.162 -1.847 0 0 0 0 0 0 0 +3.284 -7.149 -1.846 0 0 0 0 0 0 0 +3.303 -7.13 -1.844 0 0 0 0 0 0 0 +3.33 -7.13 -1.847 0 0 0 0 0 0 0 +3.352 -7.118 -1.846 0 0 0 0 0 0 0 +3.374 -7.137 -1.853 0 0 0 0 0 0 0 +3.385 -7.102 -1.846 0 0 0 0 0 0 0 +3.404 -7.085 -1.845 0 0 0 0 0 0 0 +3.423 -7.067 -1.843 0 0 0 0 0 0 0 +3.452 -7.07 -1.846 0 0 0 0 0 0 0 +3.47 -7.051 -1.844 0 0 0 0 0 0 0 +3.495 -7.047 -1.846 0 0 0 0 0 0 0 +3.502 -7.032 -1.844 0 0 0 0 0 0 0 +3.521 -7.014 -1.842 0 0 0 0 0 0 0 +3.543 -7.005 -1.842 0 0 0 0 0 0 0 +3.577 -7.016 -1.848 0 0 0 0 0 0 0 +3.581 -6.971 -1.839 0 0 0 0 0 0 0 +3.608 -6.97 -1.842 0 0 0 0 0 0 0 +3.629 -6.955 -1.841 0 0 0 0 0 0 0 +3.636 -6.942 -1.839 0 0 0 0 0 0 0 +3.656 -6.927 -1.838 0 0 0 0 0 0 0 +3.689 -6.938 -1.844 0 0 0 0 0 0 0 +3.701 -6.908 -1.839 0 0 0 0 0 0 0 +3.718 -6.888 -1.836 0 0 0 0 0 0 0 +3.749 -6.893 -1.841 0 0 0 0 0 0 0 +3.75 -6.844 -1.83 0 0 0 0 0 0 0 +3.767 -6.85 -1.834 0 0 0 0 0 0 0 +3.784 -6.829 -1.831 0 0 0 0 0 0 0 +3.808 -6.821 -1.832 0 0 0 0 0 0 0 +3.838 -6.826 -1.837 0 0 0 0 0 0 0 +3.844 -6.785 -1.829 0 0 0 0 0 0 0 +3.872 -6.785 -1.832 0 0 0 0 0 0 0 +3.89 -6.767 -1.831 0 0 0 0 0 0 0 +3.901 -6.761 -1.831 0 0 0 0 0 0 0 +3.931 -6.764 -1.835 0 0 0 0 0 0 0 +3.94 -6.732 -1.829 0 0 0 0 0 0 0 +3.966 -6.727 -1.832 0 0 0 0 0 0 0 +3.98 -6.703 -1.828 0 0 0 0 0 0 0 +4 -6.689 -1.828 0 0 0 0 0 0 0 +4.026 -6.685 -1.83 0 0 0 0 0 0 0 +4.031 -6.669 -1.828 0 0 0 0 0 0 0 +4.048 -6.649 -1.826 0 0 0 0 0 0 0 +4.078 -6.651 -1.83 0 0 0 0 0 0 0 +4.085 -6.617 -1.824 0 0 0 0 0 0 0 +4.104 -6.601 -1.823 0 0 0 0 0 0 0 +4.132 -6.599 -1.826 0 0 0 0 0 0 0 +4.152 -6.585 -1.826 0 0 0 0 0 0 0 +4.168 -6.588 -1.828 0 0 0 0 0 0 0 +4.177 -6.557 -1.823 0 0 0 0 0 0 0 +4.194 -6.537 -1.821 0 0 0 0 0 0 0 +4.211 -6.519 -1.82 0 0 0 0 0 0 0 +4.233 -6.508 -1.82 0 0 0 0 0 0 0 +4.25 -6.489 -1.819 0 0 0 0 0 0 0 +4.28 -6.491 -1.823 0 0 0 0 0 0 0 +4.277 -6.464 -1.817 0 0 0 0 0 0 0 +4.294 -6.446 -1.816 0 0 0 0 0 0 0 +4.324 -6.447 -1.82 0 0 0 0 0 0 0 +4.324 -6.403 -1.811 0 0 0 0 0 0 0 +4.351 -6.401 -1.814 0 0 0 0 0 0 0 +4.375 -6.392 -1.816 0 0 0 0 0 0 0 +4.39 -6.372 -1.814 0 0 0 0 0 0 0 +4.396 -6.358 -1.812 0 0 0 0 0 0 0 +4.406 -6.33 -1.808 0 0 0 0 0 0 0 +4.434 -6.327 -1.811 0 0 0 0 0 0 0 +4.445 -6.301 -1.807 0 0 0 0 0 0 0 +4.467 -6.29 -1.808 0 0 0 0 0 0 0 +4.486 -6.276 -1.808 0 0 0 0 0 0 0 +4.488 -6.237 -1.8 0 0 0 0 0 0 0 +4.506 -6.241 -1.804 0 0 0 0 0 0 0 +4.517 -6.215 -1.8 0 0 0 0 0 0 0 +4.53 -6.192 -1.797 0 0 0 0 0 0 0 +4.549 -6.178 -1.797 0 0 0 0 0 0 0 +4.571 -6.166 -1.798 0 0 0 0 0 0 0 +4.577 -6.135 -1.793 0 0 0 0 0 0 0 +4.608 -6.136 -1.798 0 0 0 0 0 0 0 +4.611 -6.119 -1.795 0 0 0 0 0 0 0 +4.625 -6.099 -1.793 0 0 0 0 0 0 0 +4.647 -6.087 -1.794 0 0 0 0 0 0 0 +4.664 -6.07 -1.793 0 0 0 0 0 0 0 +4.683 -6.055 -1.793 0 0 0 0 0 0 0 +4.696 -6.032 -1.791 0 0 0 0 0 0 0 +4.717 -6.021 -1.792 0 0 0 0 0 0 0 +4.713 -5.997 -1.786 0 0 0 0 0 0 0 +4.748 -6.001 -1.793 0 0 0 0 0 0 0 +4.77 -5.991 -1.794 0 0 0 0 0 0 0 +4.762 -5.943 -1.783 0 0 0 0 0 0 0 +4.796 -5.946 -1.789 0 0 0 0 0 0 0 +4.808 -5.923 -1.787 0 0 0 0 0 0 0 +4.829 -5.911 -1.788 0 0 0 0 0 0 0 +4.836 -5.901 -1.787 0 0 0 0 0 0 0 +4.861 -5.893 -1.789 0 0 0 0 0 0 0 +4.88 -5.879 -1.79 0 0 0 0 0 0 0 +4.881 -5.843 -1.783 0 0 0 0 0 0 0 +4.907 -5.836 -1.786 0 0 0 0 0 0 0 +4.922 -5.817 -1.784 0 0 0 0 0 0 0 +4.945 -5.807 -1.786 0 0 0 0 0 0 0 +4.942 -5.784 -1.781 0 0 0 0 0 0 0 +4.957 -5.766 -1.78 0 0 0 0 0 0 0 +4.982 -5.758 -1.783 0 0 0 0 0 0 0 +5.002 -5.745 -1.784 0 0 0 0 0 0 0 +5.02 -5.729 -1.784 0 0 0 0 0 0 0 +5.029 -5.703 -1.78 0 0 0 0 0 0 0 +5.052 -5.693 -1.782 0 0 0 0 0 0 0 +5.053 -5.677 -1.779 0 0 0 0 0 0 0 +5.074 -5.664 -1.78 0 0 0 0 0 0 0 +5.102 -5.659 -1.784 0 0 0 0 0 0 0 +5.095 -5.616 -1.775 0 0 0 0 0 0 0 +5.128 -5.617 -1.781 0 0 0 0 0 0 0 +5.134 -5.588 -1.777 0 0 0 0 0 0 0 +5.157 -5.577 -1.778 0 0 0 0 0 0 0 +5.165 -5.551 -1.775 0 0 0 0 0 0 0 +5.184 -5.555 -1.779 0 0 0 0 0 0 0 +5.202 -5.538 -1.779 0 0 0 0 0 0 0 +5.211 -5.513 -1.776 0 0 0 0 0 0 0 +5.233 -5.501 -1.778 0 0 0 0 0 0 0 +5.248 -5.483 -1.777 0 0 0 0 0 0 0 +5.27 -5.471 -1.778 0 0 0 0 0 0 0 +5.288 -5.456 -1.779 0 0 0 0 0 0 0 +5.291 -5.442 -1.777 0 0 0 0 0 0 0 +5.307 -5.424 -1.777 0 0 0 0 0 0 0 +5.336 -5.42 -1.781 0 0 0 0 0 0 0 +5.34 -5.389 -1.776 0 0 0 0 0 0 0 +5.357 -5.372 -1.776 0 0 0 0 0 0 0 +5.371 -5.353 -1.775 0 0 0 0 0 0 0 +5.379 -5.344 -1.775 0 0 0 0 0 0 0 +5.397 -5.329 -1.776 0 0 0 0 0 0 0 +5.404 -5.302 -1.772 0 0 0 0 0 0 0 +5.432 -5.296 -1.776 0 0 0 0 0 0 0 +5.437 -5.268 -1.772 0 0 0 0 0 0 0 +5.448 -5.246 -1.77 0 0 0 0 0 0 0 +5.476 -5.239 -1.774 0 0 0 0 0 0 0 +5.488 -5.235 -1.776 0 0 0 0 0 0 0 +5.503 -5.216 -1.775 0 0 0 0 0 0 0 +5.503 -5.183 -1.769 0 0 0 0 0 0 0 +5.529 -5.175 -1.773 0 0 0 0 0 0 0 +5.552 -5.164 -1.775 0 0 0 0 0 0 0 +5.561 -5.14 -1.773 0 0 0 0 0 0 0 +5.588 -5.132 -1.776 0 0 0 0 0 0 0 +5.578 -5.107 -1.77 0 0 0 0 0 0 0 +5.603 -5.097 -1.773 0 0 0 0 0 0 0 +5.612 -5.073 -1.771 0 0 0 0 0 0 0 +5.625 -5.053 -1.77 0 0 0 0 0 0 0 +5.654 -5.047 -1.774 0 0 0 0 0 0 0 +5.662 -5.023 -1.772 0 0 0 0 0 0 0 +5.684 -5.01 -1.774 0 0 0 0 0 0 0 +5.701 -4.993 -1.774 0 0 0 0 0 0 0 +5.691 -4.969 -1.768 0 0 0 0 0 0 0 +5.708 -4.953 -1.769 0 0 0 0 0 0 0 +5.73 -4.94 -1.771 0 0 0 0 0 0 0 +5.728 -4.907 -1.765 0 0 0 0 0 0 0 +5.753 -4.897 -1.768 0 0 0 0 0 0 0 +5.764 -4.875 -1.767 0 0 0 0 0 0 0 +5.765 -4.845 -1.762 0 0 0 0 0 0 0 +5.783 -4.845 -1.765 0 0 0 0 0 0 0 +5.81 -4.836 -1.769 0 0 0 0 0 0 0 +5.81 -4.806 -1.764 0 0 0 0 0 0 0 +5.825 -4.787 -1.764 0 0 0 0 0 0 0 +5.836 -4.765 -1.763 0 0 0 0 0 0 0 +5.844 -4.742 -1.761 0 0 0 0 0 0 0 +5.864 -4.727 -1.762 0 0 0 0 0 0 0 +5.858 -4.707 -1.758 0 0 0 0 0 0 0 +5.889 -4.702 -1.763 0 0 0 0 0 0 0 +5.893 -4.675 -1.76 0 0 0 0 0 0 0 +5.917 -4.664 -1.763 0 0 0 0 0 0 0 +5.936 -4.649 -1.764 0 0 0 0 0 0 0 +5.923 -4.609 -1.756 0 0 0 0 0 0 0 +5.946 -4.611 -1.761 0 0 0 0 0 0 0 +5.957 -4.59 -1.76 0 0 0 0 0 0 0 +5.972 -4.572 -1.76 0 0 0 0 0 0 0 +5.992 -4.557 -1.761 0 0 0 0 0 0 0 +5.988 -4.525 -1.756 0 0 0 0 0 0 0 +6.008 -4.51 -1.758 0 0 0 0 0 0 0 +6.025 -4.494 -1.759 0 0 0 0 0 0 0 +6.035 -4.471 -1.757 0 0 0 0 0 0 0 +6.05 -4.468 -1.76 0 0 0 0 0 0 0 +6.045 -4.435 -1.754 0 0 0 0 0 0 0 +6.06 -4.417 -1.754 0 0 0 0 0 0 0 +6.069 -4.395 -1.753 0 0 0 0 0 0 0 +6.08 -4.373 -1.752 0 0 0 0 0 0 0 +6.098 -4.357 -1.753 0 0 0 0 0 0 0 +6.112 -4.338 -1.753 0 0 0 0 0 0 0 +6.105 -4.319 -1.749 0 0 0 0 0 0 0 +6.144 -4.317 -1.757 0 0 0 0 0 0 0 +6.12 -4.272 -1.745 0 0 0 0 0 0 0 +6.14 -4.258 -1.747 0 0 0 0 0 0 0 +6.158 -4.242 -1.749 0 0 0 0 0 0 0 +6.164 -4.217 -1.746 0 0 0 0 0 0 0 +6.188 -4.205 -1.75 0 0 0 0 0 0 0 +6.166 -4.176 -1.741 0 0 0 0 0 0 0 +6.187 -4.162 -1.744 0 0 0 0 0 0 0 +6.202 -4.143 -1.744 0 0 0 0 0 0 0 +6.221 -4.128 -1.746 0 0 0 0 0 0 0 +6.245 -4.116 -1.749 0 0 0 0 0 0 0 +6.227 -4.076 -1.74 0 0 0 0 0 0 0 +6.247 -4.061 -1.742 0 0 0 0 0 0 0 +6.246 -4.047 -1.74 0 0 0 0 0 0 0 +6.264 -4.03 -1.742 0 0 0 0 0 0 0 +6.282 -4.014 -1.743 0 0 0 0 0 0 0 +6.301 -3.998 -1.745 0 0 0 0 0 0 0 +6.328 -3.988 -1.749 0 0 0 0 0 0 0 +6.311 -3.949 -1.741 0 0 0 0 0 0 0 +6.33 -3.948 -1.744 0 0 0 0 0 0 0 +6.331 -3.921 -1.741 0 0 0 0 0 0 0 +6.368 -3.916 -1.748 0 0 0 0 0 0 0 +6.377 -3.894 -1.747 0 0 0 0 0 0 0 +6.384 -3.871 -1.746 0 0 0 0 0 0 0 +6.415 -3.862 -1.751 0 0 0 0 0 0 0 +6.4 -3.826 -1.744 0 0 0 0 0 0 0 +6.407 -3.803 -1.742 0 0 0 0 0 0 0 +6.443 -3.81 -1.751 0 0 0 0 0 0 0 +6.439 -3.78 -1.746 0 0 0 0 0 0 0 +6.469 -3.771 -1.751 0 0 0 0 0 0 0 +6.467 -3.742 -1.747 0 0 0 0 0 0 0 +6.472 -3.718 -1.745 0 0 0 0 0 0 0 +6.487 -3.7 -1.746 0 0 0 0 0 0 0 +6.485 -3.672 -1.743 0 0 0 0 0 0 0 +6.499 -3.666 -1.745 0 0 0 0 0 0 0 +6.492 -3.636 -1.74 0 0 0 0 0 0 0 +6.526 -3.627 -1.746 0 0 0 0 0 0 0 +6.522 -3.598 -1.742 0 0 0 0 0 0 0 +6.55 -3.587 -1.746 0 0 0 0 0 0 0 +6.546 -3.558 -1.742 0 0 0 0 0 0 0 +6.576 -3.548 -1.747 0 0 0 0 0 0 0 +6.578 -3.536 -1.746 0 0 0 0 0 0 0 +6.581 -3.51 -1.744 0 0 0 0 0 0 0 +6.602 -3.495 -1.747 0 0 0 0 0 0 0 +6.601 -3.468 -1.744 0 0 0 0 0 0 0 +6.634 -3.459 -1.75 0 0 0 0 0 0 0 +6.612 -3.421 -1.741 0 0 0 0 0 0 0 +6.638 -3.408 -1.745 0 0 0 0 0 0 0 +6.625 -3.388 -1.74 0 0 0 0 0 0 0 +6.647 -3.374 -1.743 0 0 0 0 0 0 0 +6.644 -3.346 -1.739 0 0 0 0 0 0 0 +6.684 -3.339 -1.747 0 0 0 0 0 0 0 +6.67 -3.306 -1.741 0 0 0 0 0 0 0 +6.691 -3.291 -1.744 0 0 0 0 0 0 0 +6.686 -3.262 -1.739 0 0 0 0 0 0 0 +6.701 -3.257 -1.742 0 0 0 0 0 0 0 +6.704 -3.232 -1.74 0 0 0 0 0 0 0 +6.723 -3.215 -1.743 0 0 0 0 0 0 0 +6.723 -3.189 -1.74 0 0 0 0 0 0 0 +6.735 -3.169 -1.74 0 0 0 0 0 0 0 +6.748 -3.149 -1.741 0 0 0 0 0 0 0 +6.76 -3.129 -1.742 0 0 0 0 0 0 0 +6.759 -3.116 -1.74 0 0 0 0 0 0 0 +6.781 -3.1 -1.744 0 0 0 0 0 0 0 +6.788 -3.077 -1.743 0 0 0 0 0 0 0 +6.797 -3.056 -1.743 0 0 0 0 0 0 0 +6.816 -3.038 -1.745 0 0 0 0 0 0 0 +6.815 -3.012 -1.742 0 0 0 0 0 0 0 +6.835 -2.996 -1.745 0 0 0 0 0 0 0 +6.834 -2.983 -1.744 0 0 0 0 0 0 0 +6.842 -2.96 -1.743 0 0 0 0 0 0 0 +6.838 -2.933 -1.74 0 0 0 0 0 0 0 +6.855 -2.915 -1.742 0 0 0 0 0 0 0 +6.867 -2.895 -1.743 0 0 0 0 0 0 0 +6.88 -2.875 -1.744 0 0 0 0 0 0 0 +6.905 -2.86 -1.748 0 0 0 0 0 0 0 +6.892 -2.842 -1.743 0 0 0 0 0 0 0 +6.904 -2.821 -1.744 0 0 0 0 0 0 0 +6.911 -2.799 -1.744 0 0 0 0 0 0 0 +6.915 -2.775 -1.742 0 0 0 0 0 0 0 +6.918 -2.751 -1.741 0 0 0 0 0 0 0 +6.941 -2.735 -1.744 0 0 0 0 0 0 0 +6.942 -2.711 -1.743 0 0 0 0 0 0 0 +6.97 -2.709 -1.749 0 0 0 0 0 0 0 +6.966 -2.682 -1.745 0 0 0 0 0 0 0 +6.967 -2.657 -1.744 0 0 0 0 0 0 0 +6.992 -2.641 -1.748 0 0 0 0 0 0 0 +6.98 -2.612 -1.743 0 0 0 0 0 0 0 +7.013 -2.6 -1.749 0 0 0 0 0 0 0 +7.002 -2.57 -1.744 0 0 0 0 0 0 0 +7.027 -2.567 -1.75 0 0 0 0 0 0 0 +7.023 -2.54 -1.746 0 0 0 0 0 0 0 +7.031 -2.518 -1.746 0 0 0 0 0 0 0 +7.066 -2.506 -1.754 0 0 0 0 0 0 0 +7.052 -2.476 -1.748 0 0 0 0 0 0 0 +7.071 -2.458 -1.751 0 0 0 0 0 0 0 +7.095 -2.441 -1.755 0 0 0 0 0 0 0 +7.078 -2.423 -1.75 0 0 0 0 0 0 0 +7.093 -2.403 -1.752 0 0 0 0 0 0 0 +7.103 -2.382 -1.752 0 0 0 0 0 0 0 +7.114 -2.36 -1.753 0 0 0 0 0 0 0 +7.119 -2.338 -1.753 0 0 0 0 0 0 0 +7.141 -2.32 -1.757 0 0 0 0 0 0 0 +7.156 -2.3 -1.759 0 0 0 0 0 0 0 +7.158 -2.288 -1.758 0 0 0 0 0 0 0 +7.184 -2.271 -1.763 0 0 0 0 0 0 0 +7.189 -2.248 -1.762 0 0 0 0 0 0 0 +7.205 -2.228 -1.765 0 0 0 0 0 0 0 +7.205 -2.203 -1.763 0 0 0 0 0 0 0 +7.223 -2.184 -1.766 0 0 0 0 0 0 0 +7.189 -2.149 -1.755 0 0 0 0 0 0 0 +7.17 -2.131 -1.749 0 0 0 0 0 0 0 +7.21 -2.119 -1.758 0 0 0 0 0 0 0 +7.215 -2.095 -1.758 0 0 0 0 0 0 0 +7.236 -2.077 -1.761 0 0 0 0 0 0 0 +7.237 -2.053 -1.76 0 0 0 0 0 0 0 +7.23 -2.026 -1.757 0 0 0 0 0 0 0 +7.225 -2.001 -1.754 0 0 0 0 0 0 0 +7.234 -1.991 -1.755 0 0 0 0 0 0 0 +7.223 -1.963 -1.751 0 0 0 0 0 0 0 +7.231 -1.941 -1.751 0 0 0 0 0 0 0 +7.223 -1.915 -1.747 0 0 0 0 0 0 0 +7.24 -1.895 -1.75 0 0 0 0 0 0 0 +7.227 -1.867 -1.745 0 0 0 0 0 0 0 +7.167 -1.828 -1.728 0 0 0 0 0 0 0 +7.032 -1.782 -1.693 0 0 0 0 0 0 0 +7.019 -1.756 -1.688 0 0 0 0 0 0 0 +7.104 -1.753 -1.709 0 0 0 0 0 0 0 +7.149 -1.74 -1.719 0 0 0 0 0 0 0 +7.15 -1.717 -1.718 0 0 0 0 0 0 0 +7.152 -1.693 -1.717 0 0 0 0 0 0 0 +7.171 -1.674 -1.72 0 0 0 0 0 0 0 +7.215 -1.672 -1.731 0 0 0 0 0 0 0 +7.246 -1.655 -1.738 0 0 0 0 0 0 0 +7.272 -1.637 -1.743 0 0 0 0 0 0 0 +7.253 -1.609 -1.737 0 0 0 0 0 0 0 +7.277 -1.59 -1.742 0 0 0 0 0 0 0 +7.269 -1.565 -1.738 0 0 0 0 0 0 0 +7.294 -1.546 -1.744 0 0 0 0 0 0 0 +7.282 -1.532 -1.74 0 0 0 0 0 0 0 +7.275 -1.506 -1.737 0 0 0 0 0 0 0 +7.285 -1.485 -1.738 0 0 0 0 0 0 0 +7.29 -1.462 -1.738 0 0 0 0 0 0 0 +7.274 -1.435 -1.733 0 0 0 0 0 0 0 +7.307 -1.417 -1.74 0 0 0 0 0 0 0 +7.29 -1.39 -1.735 0 0 0 0 0 0 0 +7.304 -1.381 -1.738 0 0 0 0 0 0 0 +7.298 -1.356 -1.735 0 0 0 0 0 0 0 +7.329 -1.338 -1.742 0 0 0 0 0 0 0 +7.307 -1.311 -1.735 0 0 0 0 0 0 0 +7.321 -1.289 -1.738 0 0 0 0 0 0 0 +7.313 -1.264 -1.735 0 0 0 0 0 0 0 +7.319 -1.242 -1.735 0 0 0 0 0 0 0 +7.346 -1.234 -1.742 0 0 0 0 0 0 0 +7.321 -1.207 -1.734 0 0 0 0 0 0 0 +7.321 -1.183 -1.733 0 0 0 0 0 0 0 +7.321 -1.159 -1.732 0 0 0 0 0 0 0 +7.355 -1.141 -1.74 0 0 0 0 0 0 0 +7.326 -1.113 -1.732 0 0 0 0 0 0 0 +7.339 -1.091 -1.734 0 0 0 0 0 0 0 +7.335 -1.067 -1.732 0 0 0 0 0 0 0 +7.338 -1.056 -1.733 0 0 0 0 0 0 0 +7.347 -1.034 -1.734 0 0 0 0 0 0 0 +7.345 -1.01 -1.733 0 0 0 0 0 0 0 +7.34 -0.986 -1.731 0 0 0 0 0 0 0 +7.376 -0.967 -1.739 0 0 0 0 0 0 0 +7.337 -0.938 -1.728 0 0 0 0 0 0 0 +7.363 -0.918 -1.734 0 0 0 0 0 0 0 +7.341 -0.904 -1.728 0 0 0 0 0 0 0 +7.367 -0.883 -1.734 0 0 0 0 0 0 0 +7.344 -0.857 -1.728 0 0 0 0 0 0 0 +7.366 -0.837 -1.733 0 0 0 0 0 0 0 +7.354 -0.812 -1.729 0 0 0 0 0 0 0 +7.358 -0.789 -1.729 0 0 0 0 0 0 0 +7.353 -0.777 -1.728 0 0 0 0 0 0 0 +7.364 -0.754 -1.73 0 0 0 0 0 0 0 +7.364 -0.731 -1.729 0 0 0 0 0 0 0 +7.349 -0.706 -1.725 0 0 0 0 0 0 0 +7.365 -0.684 -1.728 0 0 0 0 0 0 0 +7.369 -0.661 -1.729 0 0 0 0 0 0 0 +7.363 -0.638 -1.727 0 0 0 0 0 0 0 +7.353 -0.614 -1.724 0 0 0 0 0 0 0 +7.364 -0.603 -1.727 0 0 0 0 0 0 0 +7.352 -0.579 -1.723 0 0 0 0 0 0 0 +7.362 -0.556 -1.725 0 0 0 0 0 0 0 +7.362 -0.533 -1.725 0 0 0 0 0 0 0 +7.381 -0.511 -1.729 0 0 0 0 0 0 0 +7.371 -0.487 -1.726 0 0 0 0 0 0 0 +7.374 -0.464 -1.727 0 0 0 0 0 0 0 +7.375 -0.452 -1.727 0 0 0 0 0 0 0 +7.378 -0.429 -1.727 0 0 0 0 0 0 0 +7.368 -0.405 -1.724 0 0 0 0 0 0 0 +7.384 -0.383 -1.728 0 0 0 0 0 0 0 +7.378 -0.359 -1.726 0 0 0 0 0 0 0 +7.389 -0.337 -1.728 0 0 0 0 0 0 0 +7.372 -0.313 -1.724 0 0 0 0 0 0 0 +7.384 -0.302 -1.727 0 0 0 0 0 0 0 +7.364 -0.278 -1.722 0 0 0 0 0 0 0 +7.378 -0.255 -1.725 0 0 0 0 0 0 0 +7.371 -0.232 -1.723 0 0 0 0 0 0 0 +7.362 -0.208 -1.721 0 0 0 0 0 0 0 +7.361 -0.185 -1.72 0 0 0 0 0 0 0 +7.369 -0.162 -1.722 0 0 0 0 0 0 0 +7.368 -0.15 -1.722 0 0 0 0 0 0 0 +7.376 -0.127 -1.724 0 0 0 0 0 0 0 +7.372 -0.104 -1.723 0 0 0 0 0 0 0 +7.396 -0.081 -1.728 0 0 0 0 0 0 0 +7.388 -0.058 -1.727 0 0 0 0 0 0 0 +7.383 -0.035 -1.725 0 0 0 0 0 0 0 +7.39 -0.012 -1.727 0 0 0 0 0 0 0 +7.082 0.01 -1.722 0 0 0 0 0 0 0 +7.082 0.032 -1.722 0 0 0 0 0 0 0 +7.07 0.054 -1.719 0 0 0 0 0 0 0 +7.068 0.066 -1.719 0 0 0 0 0 0 0 +7.079 0.088 -1.722 0 0 0 0 0 0 0 +7.056 0.11 -1.716 0 0 0 0 0 0 0 +7.055 0.132 -1.716 0 0 0 0 0 0 0 +7.051 0.154 -1.715 0 0 0 0 0 0 0 +7.056 0.176 -1.716 0 0 0 0 0 0 0 +7.046 0.198 -1.714 0 0 0 0 0 0 0 +7.04 0.209 -1.712 0 0 0 0 0 0 0 +7.051 0.232 -1.715 0 0 0 0 0 0 0 +7.044 0.254 -1.714 0 0 0 0 0 0 0 +7.047 0.276 -1.715 0 0 0 0 0 0 0 +7.035 0.298 -1.712 0 0 0 0 0 0 0 +7.049 0.32 -1.716 0 0 0 0 0 0 0 +7.031 0.342 -1.711 0 0 0 0 0 0 0 +7.048 0.354 -1.716 0 0 0 0 0 0 0 +7.029 0.375 -1.711 0 0 0 0 0 0 0 +7.026 0.397 -1.711 0 0 0 0 0 0 0 +7.017 0.418 -1.709 0 0 0 0 0 0 0 +7.027 0.441 -1.712 0 0 0 0 0 0 0 +7.016 0.463 -1.709 0 0 0 0 0 0 0 +7.011 0.484 -1.708 0 0 0 0 0 0 0 +7.006 0.495 -1.707 0 0 0 0 0 0 0 +7.008 0.517 -1.708 0 0 0 0 0 0 0 +7.013 0.54 -1.71 0 0 0 0 0 0 0 +7.007 0.562 -1.709 0 0 0 0 0 0 0 +6.994 0.583 -1.706 0 0 0 0 0 0 0 +7.009 0.606 -1.71 0 0 0 0 0 0 0 +6.998 0.627 -1.708 0 0 0 0 0 0 0 +7.008 0.639 -1.711 0 0 0 0 0 0 0 +6.993 0.66 -1.707 0 0 0 0 0 0 0 +6.989 0.682 -1.707 0 0 0 0 0 0 0 +6.998 0.705 -1.71 0 0 0 0 0 0 0 +6.984 0.726 -1.707 0 0 0 0 0 0 0 +6.972 0.747 -1.704 0 0 0 0 0 0 0 +6.993 0.771 -1.71 0 0 0 0 0 0 0 +6.972 0.78 -1.705 0 0 0 0 0 0 0 +6.972 0.802 -1.706 0 0 0 0 0 0 0 +6.981 0.825 -1.709 0 0 0 0 0 0 0 +6.972 0.847 -1.707 0 0 0 0 0 0 0 +6.952 0.866 -1.703 0 0 0 0 0 0 0 +6.95 0.888 -1.703 0 0 0 0 0 0 0 +6.951 0.911 -1.704 0 0 0 0 0 0 0 +6.951 0.922 -1.704 0 0 0 0 0 0 0 +6.952 0.944 -1.705 0 0 0 0 0 0 0 +6.949 0.966 -1.705 0 0 0 0 0 0 0 +6.935 0.986 -1.702 0 0 0 0 0 0 0 +6.939 1.009 -1.704 0 0 0 0 0 0 0 +6.924 1.029 -1.701 0 0 0 0 0 0 0 +6.927 1.052 -1.703 0 0 0 0 0 0 0 +6.919 1.062 -1.701 0 0 0 0 0 0 0 +6.918 1.084 -1.702 0 0 0 0 0 0 0 +6.913 1.105 -1.701 0 0 0 0 0 0 0 +6.898 1.125 -1.698 0 0 0 0 0 0 0 +6.904 1.148 -1.701 0 0 0 0 0 0 0 +6.896 1.169 -1.7 0 0 0 0 0 0 0 +6.915 1.195 -1.706 0 0 0 0 0 0 0 +6.898 1.203 -1.702 0 0 0 0 0 0 0 +6.881 1.222 -1.698 0 0 0 0 0 0 0 +6.896 1.247 -1.703 0 0 0 0 0 0 0 +6.883 1.267 -1.701 0 0 0 0 0 0 0 +6.884 1.29 -1.702 0 0 0 0 0 0 0 +6.882 1.312 -1.703 0 0 0 0 0 0 0 +6.88 1.334 -1.703 0 0 0 0 0 0 0 +6.876 1.344 -1.703 0 0 0 0 0 0 0 +6.879 1.368 -1.705 0 0 0 0 0 0 0 +6.869 1.388 -1.703 0 0 0 0 0 0 0 +6.871 1.411 -1.705 0 0 0 0 0 0 0 +6.851 1.429 -1.701 0 0 0 0 0 0 0 +6.864 1.454 -1.705 0 0 0 0 0 0 0 +6.846 1.473 -1.702 0 0 0 0 0 0 0 +6.837 1.494 -1.701 0 0 0 0 0 0 0 +6.837 1.505 -1.701 0 0 0 0 0 0 0 +6.83 1.526 -1.701 0 0 0 0 0 0 0 +6.835 1.549 -1.703 0 0 0 0 0 0 0 +6.811 1.567 -1.698 0 0 0 0 0 0 0 +6.823 1.592 -1.703 0 0 0 0 0 0 0 +6.809 1.611 -1.7 0 0 0 0 0 0 0 +6.803 1.633 -1.7 0 0 0 0 0 0 0 +6.818 1.647 -1.705 0 0 0 0 0 0 0 +6.799 1.666 -1.701 0 0 0 0 0 0 0 +6.805 1.69 -1.704 0 0 0 0 0 0 0 +6.772 1.704 -1.697 0 0 0 0 0 0 0 +6.797 1.733 -1.705 0 0 0 0 0 0 0 +6.784 1.752 -1.703 0 0 0 0 0 0 0 +6.791 1.777 -1.706 0 0 0 0 0 0 0 +6.779 1.785 -1.704 0 0 0 0 0 0 0 +6.762 1.804 -1.701 0 0 0 0 0 0 0 +6.779 1.831 -1.707 0 0 0 0 0 0 0 +6.751 1.846 -1.701 0 0 0 0 0 0 0 +6.756 1.87 -1.704 0 0 0 0 0 0 0 +6.746 1.89 -1.703 0 0 0 0 0 0 0 +6.742 1.912 -1.703 0 0 0 0 0 0 0 +6.739 1.923 -1.703 0 0 0 0 0 0 0 +6.743 1.947 -1.706 0 0 0 0 0 0 0 +6.742 1.969 -1.707 0 0 0 0 0 0 0 +6.708 1.982 -1.7 0 0 0 0 0 0 0 +6.72 2.009 -1.705 0 0 0 0 0 0 0 +6.723 2.033 -1.707 0 0 0 0 0 0 0 +6.706 2.051 -1.704 0 0 0 0 0 0 0 +6.699 2.06 -1.703 0 0 0 0 0 0 0 +6.701 2.084 -1.706 0 0 0 0 0 0 0 +6.686 2.102 -1.703 0 0 0 0 0 0 0 +6.681 2.124 -1.704 0 0 0 0 0 0 0 +6.681 2.147 -1.706 0 0 0 0 0 0 0 +6.678 2.169 -1.707 0 0 0 0 0 0 0 +6.671 2.19 -1.707 0 0 0 0 0 0 0 +6.685 2.206 -1.711 0 0 0 0 0 0 0 +6.667 2.223 -1.708 0 0 0 0 0 0 0 +6.656 2.243 -1.707 0 0 0 0 0 0 0 +6.66 2.268 -1.71 0 0 0 0 0 0 0 +6.647 2.287 -1.709 0 0 0 0 0 0 0 +6.636 2.306 -1.708 0 0 0 0 0 0 0 +6.638 2.33 -1.71 0 0 0 0 0 0 0 +6.625 2.337 -1.708 0 0 0 0 0 0 0 +6.625 2.361 -1.71 0 0 0 0 0 0 0 +6.618 2.382 -1.71 0 0 0 0 0 0 0 +6.614 2.404 -1.711 0 0 0 0 0 0 0 +6.605 2.424 -1.71 0 0 0 0 0 0 0 +6.591 2.443 -1.709 0 0 0 0 0 0 0 +6.596 2.468 -1.712 0 0 0 0 0 0 0 +6.582 2.474 -1.709 0 0 0 0 0 0 0 +6.572 2.494 -1.709 0 0 0 0 0 0 0 +6.566 2.516 -1.709 0 0 0 0 0 0 0 +6.564 2.538 -1.711 0 0 0 0 0 0 0 +6.565 2.562 -1.713 0 0 0 0 0 0 0 +6.555 2.582 -1.713 0 0 0 0 0 0 0 +6.541 2.601 -1.711 0 0 0 0 0 0 0 +6.542 2.613 -1.713 0 0 0 0 0 0 0 +6.54 2.636 -1.714 0 0 0 0 0 0 0 +6.519 2.651 -1.711 0 0 0 0 0 0 0 +6.512 2.672 -1.711 0 0 0 0 0 0 0 +6.511 2.696 -1.713 0 0 0 0 0 0 0 +6.495 2.713 -1.711 0 0 0 0 0 0 0 +6.479 2.731 -1.709 0 0 0 0 0 0 0 +6.481 2.743 -1.711 0 0 0 0 0 0 0 +6.486 2.77 -1.715 0 0 0 0 0 0 0 +6.474 2.788 -1.714 0 0 0 0 0 0 0 +6.465 2.809 -1.714 0 0 0 0 0 0 0 +6.458 2.83 -1.714 0 0 0 0 0 0 0 +6.449 2.85 -1.714 0 0 0 0 0 0 0 +6.451 2.875 -1.717 0 0 0 0 0 0 0 +6.432 2.879 -1.713 0 0 0 0 0 0 0 +6.423 2.899 -1.713 0 0 0 0 0 0 0 +6.407 2.916 -1.711 0 0 0 0 0 0 0 +6.394 2.935 -1.71 0 0 0 0 0 0 0 +6.387 2.955 -1.711 0 0 0 0 0 0 0 +6.381 2.977 -1.712 0 0 0 0 0 0 0 +6.384 3.003 -1.715 0 0 0 0 0 0 0 +6.374 3.01 -1.714 0 0 0 0 0 0 0 +6.359 3.028 -1.712 0 0 0 0 0 0 0 +6.365 3.055 -1.717 0 0 0 0 0 0 0 +6.359 3.077 -1.718 0 0 0 0 0 0 0 +6.33 3.088 -1.712 0 0 0 0 0 0 0 +6.329 3.112 -1.715 0 0 0 0 0 0 0 +6.312 3.128 -1.713 0 0 0 0 0 0 0 +6.287 3.14 -1.708 0 0 0 0 0 0 0 +6.296 3.157 -1.712 0 0 0 0 0 0 0 +6.282 3.175 -1.711 0 0 0 0 0 0 0 +6.274 3.196 -1.712 0 0 0 0 0 0 0 +6.261 3.214 -1.711 0 0 0 0 0 0 0 +6.25 3.233 -1.711 0 0 0 0 0 0 0 +6.235 3.25 -1.709 0 0 0 0 0 0 0 +6.235 3.263 -1.711 0 0 0 0 0 0 0 +6.223 3.281 -1.71 0 0 0 0 0 0 0 +6.221 3.305 -1.713 0 0 0 0 0 0 0 +6.218 3.329 -1.715 0 0 0 0 0 0 0 +6.199 3.344 -1.712 0 0 0 0 0 0 0 +6.188 3.363 -1.712 0 0 0 0 0 0 0 +6.179 3.383 -1.713 0 0 0 0 0 0 0 +6.188 3.401 -1.717 0 0 0 0 0 0 0 +6.167 3.414 -1.714 0 0 0 0 0 0 0 +6.161 3.437 -1.715 0 0 0 0 0 0 0 +6.154 3.458 -1.716 0 0 0 0 0 0 0 +6.134 3.472 -1.714 0 0 0 0 0 0 0 +6.12 3.49 -1.713 0 0 0 0 0 0 0 +6.116 3.513 -1.715 0 0 0 0 0 0 0 +6.105 3.519 -1.713 0 0 0 0 0 0 0 +6.087 3.535 -1.711 0 0 0 0 0 0 0 +6.083 3.558 -1.713 0 0 0 0 0 0 0 +6.078 3.581 -1.715 0 0 0 0 0 0 0 +6.069 3.601 -1.716 0 0 0 0 0 0 0 +6.062 3.623 -1.717 0 0 0 0 0 0 0 +6.058 3.646 -1.719 0 0 0 0 0 0 0 +6.049 3.667 -1.72 0 0 0 0 0 0 0 +6.055 3.683 -1.724 0 0 0 0 0 0 0 +6.047 3.704 -1.725 0 0 0 0 0 0 0 +6.039 3.725 -1.726 0 0 0 0 0 0 0 +6.032 3.747 -1.728 0 0 0 0 0 0 0 +6.02 3.766 -1.728 0 0 0 0 0 0 0 +6.003 3.782 -1.726 0 0 0 0 0 0 0 +5.99 3.8 -1.726 0 0 0 0 0 0 0 +5.985 3.81 -1.726 0 0 0 0 0 0 0 +5.968 3.826 -1.725 0 0 0 0 0 0 0 +5.947 3.838 -1.721 0 0 0 0 0 0 0 +5.92 3.848 -1.717 0 0 0 0 0 0 0 +5.908 3.866 -1.717 0 0 0 0 0 0 0 +5.9 3.888 -1.718 0 0 0 0 0 0 0 +5.89 3.894 -1.717 0 0 0 0 0 0 0 +5.876 3.911 -1.716 0 0 0 0 0 0 0 +5.868 3.933 -1.718 0 0 0 0 0 0 0 +5.849 3.947 -1.716 0 0 0 0 0 0 0 +5.83 3.961 -1.714 0 0 0 0 0 0 0 +5.805 3.971 -1.71 0 0 0 0 0 0 0 +5.791 3.988 -1.709 0 0 0 0 0 0 0 +5.79 4 -1.711 0 0 0 0 0 0 0 +5.774 4.016 -1.71 0 0 0 0 0 0 0 +5.764 4.037 -1.711 0 0 0 0 0 0 0 +5.753 4.056 -1.711 0 0 0 0 0 0 0 +5.744 4.076 -1.712 0 0 0 0 0 0 0 +5.739 4.1 -1.715 0 0 0 0 0 0 0 +5.724 4.117 -1.714 0 0 0 0 0 0 0 +5.718 4.126 -1.714 0 0 0 0 0 0 0 +5.706 4.145 -1.715 0 0 0 0 0 0 0 +5.695 4.164 -1.715 0 0 0 0 0 0 0 +5.688 4.186 -1.717 0 0 0 0 0 0 0 +5.678 4.206 -1.718 0 0 0 0 0 0 0 +5.662 4.222 -1.717 0 0 0 0 0 0 0 +5.653 4.243 -1.719 0 0 0 0 0 0 0 +5.645 4.251 -1.718 0 0 0 0 0 0 0 +5.641 4.275 -1.721 0 0 0 0 0 0 0 +5.629 4.294 -1.722 0 0 0 0 0 0 0 +5.635 4.327 -1.729 0 0 0 0 0 0 0 +5.62 4.344 -1.728 0 0 0 0 0 0 0 +5.617 4.37 -1.732 0 0 0 0 0 0 0 +5.619 4.399 -1.737 0 0 0 0 0 0 0 +5.615 4.41 -1.738 0 0 0 0 0 0 0 +5.612 4.436 -1.741 0 0 0 0 0 0 0 +5.588 4.447 -1.738 0 0 0 0 0 0 0 +5.577 4.467 -1.739 0 0 0 0 0 0 0 +5.563 4.484 -1.739 0 0 0 0 0 0 0 +5.555 4.507 -1.741 0 0 0 0 0 0 0 +5.553 4.534 -1.745 0 0 0 0 0 0 0 +5.534 4.547 -1.744 0 0 0 0 0 0 0 +5.529 4.557 -1.744 0 0 0 0 0 0 0 +5.51 4.571 -1.743 0 0 0 0 0 0 0 +5.487 4.581 -1.74 0 0 0 0 0 0 0 +5.469 4.596 -1.739 0 0 0 0 0 0 0 +5.464 4.62 -1.742 0 0 0 0 0 0 0 +5.446 4.635 -1.741 0 0 0 0 0 0 0 +5.43 4.651 -1.74 0 0 0 0 0 0 0 +5.423 4.659 -1.74 0 0 0 0 0 0 0 +5.408 4.676 -1.74 0 0 0 0 0 0 0 +5.393 4.693 -1.74 0 0 0 0 0 0 0 +5.382 4.713 -1.741 0 0 0 0 0 0 0 +5.362 4.726 -1.74 0 0 0 0 0 0 0 +5.347 4.743 -1.74 0 0 0 0 0 0 0 +5.34 4.751 -1.74 0 0 0 0 0 0 0 +5.321 4.764 -1.738 0 0 0 0 0 0 0 +5.309 4.783 -1.739 0 0 0 0 0 0 0 +5.292 4.799 -1.739 0 0 0 0 0 0 0 +5.268 4.807 -1.736 0 0 0 0 0 0 0 +5.253 4.824 -1.736 0 0 0 0 0 0 0 +5.238 4.84 -1.736 0 0 0 0 0 0 0 +5.233 4.851 -1.737 0 0 0 0 0 0 0 +5.205 4.856 -1.732 0 0 0 0 0 0 0 +5.19 4.872 -1.732 0 0 0 0 0 0 0 +5.175 4.888 -1.732 0 0 0 0 0 0 0 +5.151 4.897 -1.729 0 0 0 0 0 0 0 +5.141 4.918 -1.731 0 0 0 0 0 0 0 +5.105 4.914 -1.724 0 0 0 0 0 0 0 +5.093 4.918 -1.722 0 0 0 0 0 0 0 +5.066 4.923 -1.718 0 0 0 0 0 0 0 +5.046 4.935 -1.716 0 0 0 0 0 0 0 +5.032 4.952 -1.717 0 0 0 0 0 0 0 +5.021 4.972 -1.718 0 0 0 0 0 0 0 +5.004 4.987 -1.718 0 0 0 0 0 0 0 +4.991 5.005 -1.719 0 0 0 0 0 0 0 +4.974 5.019 -1.718 0 0 0 0 0 0 0 +4.985 5.046 -1.726 0 0 0 0 0 0 0 +4.953 5.046 -1.719 0 0 0 0 0 0 0 +4.945 5.069 -1.722 0 0 0 0 0 0 0 +4.948 5.104 -1.73 0 0 0 0 0 0 0 +4.924 5.111 -1.727 0 0 0 0 0 0 0 +4.92 5.139 -1.731 0 0 0 0 0 0 0 +4.91 5.162 -1.734 0 0 0 0 0 0 0 +4.897 5.164 -1.732 0 0 0 0 0 0 0 +4.889 5.188 -1.735 0 0 0 0 0 0 0 +4.887 5.219 -1.74 0 0 0 0 0 0 0 +4.861 5.224 -1.737 0 0 0 0 0 0 0 +4.855 5.251 -1.741 0 0 0 0 0 0 0 +4.84 5.267 -1.741 0 0 0 0 0 0 0 +4.821 5.28 -1.74 0 0 0 0 0 0 0 +4.822 5.297 -1.744 0 0 0 0 0 0 0 +4.804 5.311 -1.743 0 0 0 0 0 0 0 +4.788 5.327 -1.744 0 0 0 0 0 0 0 +4.773 5.344 -1.744 0 0 0 0 0 0 0 +4.773 5.377 -1.751 0 0 0 0 0 0 0 +4.733 5.366 -1.742 0 0 0 0 0 0 0 +4.729 5.396 -1.747 0 0 0 0 0 0 0 +4.709 5.39 -1.742 0 0 0 0 0 0 0 +4.702 5.416 -1.746 0 0 0 0 0 0 0 +4.669 5.412 -1.74 0 0 0 0 0 0 0 +4.674 5.453 -1.749 0 0 0 0 0 0 0 +4.633 5.44 -1.739 0 0 0 0 0 0 0 +4.621 5.46 -1.741 0 0 0 0 0 0 0 +4.601 5.472 -1.74 0 0 0 0 0 0 0 +4.592 5.478 -1.74 0 0 0 0 0 0 0 +4.581 5.499 -1.742 0 0 0 0 0 0 0 +4.562 5.512 -1.742 0 0 0 0 0 0 0 +4.532 5.512 -1.737 0 0 0 0 0 0 0 +4.527 5.541 -1.742 0 0 0 0 0 0 0 +4.51 5.555 -1.742 0 0 0 0 0 0 0 +4.48 5.554 -1.737 0 0 0 0 0 0 0 +4.479 5.57 -1.74 0 0 0 0 0 0 0 +4.461 5.584 -1.74 0 0 0 0 0 0 0 +4.446 5.601 -1.741 0 0 0 0 0 0 0 +4.426 5.612 -1.74 0 0 0 0 0 0 0 +4.408 5.626 -1.74 0 0 0 0 0 0 0 +4.385 5.632 -1.737 0 0 0 0 0 0 0 +4.373 5.654 -1.74 0 0 0 0 0 0 0 +4.372 5.671 -1.743 0 0 0 0 0 0 0 +4.35 5.679 -1.741 0 0 0 0 0 0 0 +4.319 5.676 -1.736 0 0 0 0 0 0 0 +4.309 5.7 -1.739 0 0 0 0 0 0 0 +4.294 5.717 -1.74 0 0 0 0 0 0 0 +4.275 5.728 -1.74 0 0 0 0 0 0 0 +4.257 5.742 -1.74 0 0 0 0 0 0 0 +4.245 5.745 -1.739 0 0 0 0 0 0 0 +4.223 5.753 -1.737 0 0 0 0 0 0 0 +4.206 5.767 -1.737 0 0 0 0 0 0 0 +4.188 5.78 -1.737 0 0 0 0 0 0 0 +4.174 5.8 -1.739 0 0 0 0 0 0 0 +4.156 5.813 -1.739 0 0 0 0 0 0 0 +4.133 5.82 -1.737 0 0 0 0 0 0 0 +4.115 5.814 -1.733 0 0 0 0 0 0 0 +4.1 5.831 -1.735 0 0 0 0 0 0 0 +4.079 5.841 -1.734 0 0 0 0 0 0 0 +4.061 5.854 -1.734 0 0 0 0 0 0 0 +4.045 5.87 -1.735 0 0 0 0 0 0 0 +4.028 5.885 -1.736 0 0 0 0 0 0 0 +4.002 5.887 -1.732 0 0 0 0 0 0 0 +4.002 5.906 -1.736 0 0 0 0 0 0 0 +3.978 5.91 -1.734 0 0 0 0 0 0 0 +3.959 5.923 -1.734 0 0 0 0 0 0 0 +3.943 5.939 -1.735 0 0 0 0 0 0 0 +3.921 5.946 -1.733 0 0 0 0 0 0 0 +3.901 5.957 -1.733 0 0 0 0 0 0 0 +3.878 5.963 -1.731 0 0 0 0 0 0 0 +3.86 5.976 -1.731 0 0 0 0 0 0 0 +3.855 5.989 -1.733 0 0 0 0 0 0 0 +3.833 5.996 -1.732 0 0 0 0 0 0 0 +3.815 6.01 -1.732 0 0 0 0 0 0 0 +3.792 6.015 -1.73 0 0 0 0 0 0 0 +3.774 6.029 -1.731 0 0 0 0 0 0 0 +3.754 6.039 -1.73 0 0 0 0 0 0 0 +3.742 6.06 -1.733 0 0 0 0 0 0 0 +3.73 6.063 -1.732 0 0 0 0 0 0 0 +3.71 6.073 -1.732 0 0 0 0 0 0 0 +3.692 6.086 -1.732 0 0 0 0 0 0 0 +3.667 6.088 -1.729 0 0 0 0 0 0 0 +3.646 6.096 -1.728 0 0 0 0 0 0 0 +3.636 6.124 -1.733 0 0 0 0 0 0 0 +3.619 6.117 -1.729 0 0 0 0 0 0 0 +3.601 6.131 -1.73 0 0 0 0 0 0 0 +3.578 6.136 -1.728 0 0 0 0 0 0 0 +3.563 6.154 -1.73 0 0 0 0 0 0 0 +3.536 6.152 -1.726 0 0 0 0 0 0 0 +3.516 6.163 -1.726 0 0 0 0 0 0 0 +3.504 6.185 -1.73 0 0 0 0 0 0 0 +3.494 6.191 -1.73 0 0 0 0 0 0 0 +3.474 6.2 -1.729 0 0 0 0 0 0 0 +3.453 6.209 -1.729 0 0 0 0 0 0 0 +3.436 6.224 -1.73 0 0 0 0 0 0 0 +3.412 6.228 -1.728 0 0 0 0 0 0 0 +3.4 6.252 -1.732 0 0 0 0 0 0 0 +3.378 6.257 -1.73 0 0 0 0 0 0 0 +3.365 6.282 -1.734 0 0 0 0 0 0 0 +3.351 6.278 -1.732 0 0 0 0 0 0 0 +3.328 6.284 -1.73 0 0 0 0 0 0 0 +3.314 6.304 -1.733 0 0 0 0 0 0 0 +3.299 6.323 -1.736 0 0 0 0 0 0 0 +3.279 6.334 -1.736 0 0 0 0 0 0 0 +3.256 6.339 -1.734 0 0 0 0 0 0 0 +3.238 6.352 -1.735 0 0 0 0 0 0 0 +3.228 6.357 -1.735 0 0 0 0 0 0 0 +3.215 6.381 -1.739 0 0 0 0 0 0 0 +3.194 6.39 -1.739 0 0 0 0 0 0 0 +3.176 6.403 -1.74 0 0 0 0 0 0 0 +3.16 6.422 -1.742 0 0 0 0 0 0 0 +3.136 6.425 -1.74 0 0 0 0 0 0 0 +3.121 6.445 -1.743 0 0 0 0 0 0 0 +3.094 6.441 -1.739 0 0 0 0 0 0 0 +3.088 6.453 -1.741 0 0 0 0 0 0 0 +3.066 6.461 -1.741 0 0 0 0 0 0 0 +3.046 6.47 -1.741 0 0 0 0 0 0 0 +3.027 6.483 -1.742 0 0 0 0 0 0 0 +3.007 6.493 -1.742 0 0 0 0 0 0 0 +2.984 6.497 -1.74 0 0 0 0 0 0 0 +2.969 6.491 -1.737 0 0 0 0 0 0 0 +2.952 6.507 -1.739 0 0 0 0 0 0 0 +2.931 6.517 -1.739 0 0 0 0 0 0 0 +2.901 6.503 -1.733 0 0 0 0 0 0 0 +2.889 6.531 -1.738 0 0 0 0 0 0 0 +2.869 6.542 -1.739 0 0 0 0 0 0 0 +2.848 6.549 -1.738 0 0 0 0 0 0 0 +2.829 6.562 -1.739 0 0 0 0 0 0 0 +2.818 6.565 -1.739 0 0 0 0 0 0 0 +2.793 6.564 -1.736 0 0 0 0 0 0 0 +2.769 6.564 -1.734 0 0 0 0 0 0 0 +2.749 6.575 -1.734 0 0 0 0 0 0 0 +2.729 6.585 -1.735 0 0 0 0 0 0 0 +2.705 6.586 -1.733 0 0 0 0 0 0 0 +2.689 6.606 -1.736 0 0 0 0 0 0 0 +2.676 6.603 -1.734 0 0 0 0 0 0 0 +2.648 6.595 -1.729 0 0 0 0 0 0 0 +2.636 6.623 -1.735 0 0 0 0 0 0 0 +2.609 6.617 -1.731 0 0 0 0 0 0 0 +2.588 6.625 -1.731 0 0 0 0 0 0 0 +2.565 6.628 -1.729 0 0 0 0 0 0 0 +2.548 6.645 -1.732 0 0 0 0 0 0 0 +2.536 6.645 -1.731 0 0 0 0 0 0 0 +2.517 6.657 -1.732 0 0 0 0 0 0 0 +2.494 6.661 -1.731 0 0 0 0 0 0 0 +2.479 6.683 -1.735 0 0 0 0 0 0 0 +2.452 6.677 -1.731 0 0 0 0 0 0 0 +2.427 6.673 -1.728 0 0 0 0 0 0 0 +2.406 6.679 -1.727 0 0 0 0 0 0 0 +2.391 6.672 -1.724 0 0 0 0 0 0 0 +2.374 6.69 -1.727 0 0 0 0 0 0 0 +2.354 6.7 -1.728 0 0 0 0 0 0 0 +2.334 6.709 -1.728 0 0 0 0 0 0 0 +2.307 6.7 -1.724 0 0 0 0 0 0 0 +2.282 6.698 -1.721 0 0 0 0 0 0 0 +2.259 6.697 -1.719 0 0 0 0 0 0 0 +2.245 6.692 -1.716 0 0 0 0 0 0 0 +2.223 6.695 -1.715 0 0 0 0 0 0 0 +2.204 6.708 -1.717 0 0 0 0 0 0 0 +2.188 6.729 -1.721 0 0 0 0 0 0 0 +2.167 6.738 -1.721 0 0 0 0 0 0 0 +2.146 6.745 -1.721 0 0 0 0 0 0 0 +2.129 6.766 -1.726 0 0 0 0 0 0 0 +2.107 6.769 -1.725 0 0 0 0 0 0 0 +2.104 6.798 -1.732 0 0 0 0 0 0 0 +2.046 6.687 -1.699 0 0 0 0 0 0 0 +1.996 6.599 -1.674 0 0 0 0 0 0 0 +1.974 6.599 -1.672 0 0 0 0 0 0 0 +1.953 6.605 -1.672 0 0 0 0 0 0 0 +1.929 6.6 -1.669 0 0 0 0 0 0 0 +1.909 6.608 -1.67 0 0 0 0 0 0 0 +1.901 6.621 -1.672 0 0 0 0 0 0 0 +1.871 6.593 -1.663 0 0 0 0 0 0 0 +1.852 6.606 -1.665 0 0 0 0 0 0 0 +1.829 6.605 -1.663 0 0 0 0 0 0 0 +1.808 6.607 -1.662 0 0 0 0 0 0 0 +1.786 6.61 -1.662 0 0 0 0 0 0 0 +1.768 6.625 -1.664 0 0 0 0 0 0 0 +1.75 6.6 -1.656 0 0 0 0 0 0 0 +1.731 6.613 -1.658 0 0 0 0 0 0 0 +1.708 6.607 -1.655 0 0 0 0 0 0 0 +1.687 6.613 -1.655 0 0 0 0 0 0 0 +1.665 6.612 -1.654 0 0 0 0 0 0 0 +1.644 6.619 -1.654 0 0 0 0 0 0 0 +1.623 6.623 -1.654 0 0 0 0 0 0 0 +1.611 6.618 -1.652 0 0 0 0 0 0 0 +1.593 6.634 -1.655 0 0 0 0 0 0 0 +1.569 6.628 -1.652 0 0 0 0 0 0 0 +1.547 6.627 -1.65 0 0 0 0 0 0 0 +1.531 6.654 -1.656 0 0 0 0 0 0 0 +0.705 3.17 -0.724 0 0 0 0 0 0 0 +0.689 3.146 -0.717 0 0 0 0 0 0 0 +0.687 3.16 -0.72 0 0 0 0 0 0 0 +0.678 3.164 -0.721 0 0 0 0 0 0 0 +0.674 3.195 -0.728 0 0 0 0 0 0 0 +0.643 3.098 -0.702 0 0 0 0 0 0 0 +0.609 2.987 -0.672 0 0 0 0 0 0 0 +0.6 2.991 -0.673 0 0 0 0 0 0 0 +0.591 2.996 -0.674 0 0 0 0 0 0 0 +0.579 2.987 -0.67 0 0 0 0 0 0 0 +0.574 2.984 -0.669 0 0 0 0 0 0 0 +0.567 2.997 -0.673 0 0 0 0 0 0 0 +0.556 2.991 -0.67 0 0 0 0 0 0 0 +0.544 2.982 -0.667 0 0 0 0 0 0 0 +0.538 2.998 -0.672 0 0 0 0 0 0 0 +0.525 2.983 -0.667 0 0 0 0 0 0 0 +0.518 2.998 -0.67 0 0 0 0 0 0 0 +0.514 3.001 -0.671 0 0 0 0 0 0 0 +0.502 2.989 -0.667 0 0 0 0 0 0 0 +0.492 2.985 -0.666 0 0 0 0 0 0 0 +0.482 2.984 -0.665 0 0 0 0 0 0 0 +0.47 2.971 -0.661 0 0 0 0 0 0 0 +0.46 2.964 -0.659 0 0 0 0 0 0 0 +0.453 2.981 -0.663 0 0 0 0 0 0 0 +0.447 2.972 -0.661 0 0 0 0 0 0 0 +0.435 2.958 -0.657 0 0 0 0 0 0 0 +0.432 3 -0.667 0 0 0 0 0 0 0 +0.42 2.984 -0.663 0 0 0 0 0 0 0 +0.413 3.006 -0.668 0 0 0 0 0 0 0 +0.404 3.006 -0.668 0 0 0 0 0 0 0 +0.392 2.992 -0.664 0 0 0 0 0 0 0 +0.388 3 -0.666 0 0 0 0 0 0 0 +0.377 2.986 -0.662 0 0 0 0 0 0 0 +0.365 2.97 -0.657 0 0 0 0 0 0 0 +0.36 3.004 -0.666 0 0 0 0 0 0 0 +0.35 3.001 -0.665 0 0 0 0 0 0 0 +0.338 2.977 -0.658 0 0 0 0 0 0 0 +0.331 3.001 -0.664 0 0 0 0 0 0 0 +0.32 2.987 -0.66 0 0 0 0 0 0 0 +0.317 2.999 -0.663 0 0 0 0 0 0 0 +0.309 3.015 -0.667 0 0 0 0 0 0 0 +0.3 3.024 -0.669 0 0 0 0 0 0 0 +0.291 3.025 -0.669 0 0 0 0 0 0 0 +0.28 3.018 -0.667 0 0 0 0 0 0 0 +0.271 3.023 -0.668 0 0 0 0 0 0 0 +0.262 3.023 -0.668 0 0 0 0 0 0 0 +0.257 3.026 -0.669 0 0 0 0 0 0 0 +0.248 3.034 -0.671 0 0 0 0 0 0 0 +0.238 3.027 -0.669 0 0 0 0 0 0 0 +0.229 3.03 -0.669 0 0 0 0 0 0 0 +0.219 3.029 -0.669 0 0 0 0 0 0 0 +0.21 3.035 -0.67 0 0 0 0 0 0 0 +0.201 3.042 -0.672 0 0 0 0 0 0 0 +0.196 3.044 -0.673 0 0 0 0 0 0 0 +0.187 3.045 -0.673 0 0 0 0 0 0 0 +0.177 3.041 -0.672 0 0 0 0 0 0 0 +0.167 3.038 -0.67 0 0 0 0 0 0 0 +0.158 3.046 -0.673 0 0 0 0 0 0 0 +0.149 3.052 -0.674 0 0 0 0 0 0 0 +0.139 3.047 -0.673 0 0 0 0 0 0 0 +0.134 3.045 -0.672 0 0 0 0 0 0 0 +0.125 3.052 -0.674 0 0 0 0 0 0 0 +0.115 3.054 -0.674 0 0 0 0 0 0 0 +0.106 3.056 -0.675 0 0 0 0 0 0 0 +0.1 3.153 -0.7 0 0 0 0 0 0 0 +0.09 3.155 -0.7 0 0 0 0 0 0 0 +0.077 3.061 -0.676 0 0 0 0 0 0 0 +0.073 3.243 -0.723 0 0 0 0 0 0 0 +0.068 3.247 -0.724 0 0 0 0 0 0 0 +0.058 3.249 -0.724 0 0 0 0 0 0 0 +0.047 3.222 -0.717 0 0 0 0 0 0 0 +0.035 3.124 -0.692 0 0 0 0 0 0 0 +0.066 6.952 -1.689 0 0 0 0 0 0 0 +0.027 3.232 -0.72 0 0 0 0 0 0 0 +0.045 7.066 -1.718 0 0 0 0 0 0 0 +0.034 7.058 -1.716 0 0 0 0 0 0 0 +0.012 7.059 -1.716 0 0 0 0 0 0 0 +-0.01 7.076 -1.721 0 0 0 0 0 0 0 +-0.032 7.072 -1.72 0 0 0 0 0 0 0 +-0.054 7.07 -1.719 0 0 0 0 0 0 0 +-0.077 7.087 -1.724 0 0 0 0 0 0 0 +-0.099 7.098 -1.727 0 0 0 0 0 0 0 +-0.11 7.091 -1.725 0 0 0 0 0 0 0 +-0.133 7.102 -1.728 0 0 0 0 0 0 0 +-0.155 7.109 -1.73 0 0 0 0 0 0 0 +-0.177 7.087 -1.725 0 0 0 0 0 0 0 +-0.2 7.104 -1.729 0 0 0 0 0 0 0 +-0.222 7.09 -1.726 0 0 0 0 0 0 0 +-0.244 7.095 -1.727 0 0 0 0 0 0 0 +-0.255 7.089 -1.726 0 0 0 0 0 0 0 +-0.279 7.121 -1.734 0 0 0 0 0 0 0 +-0.323 7.115 -1.733 0 0 0 0 0 0 0 +-0.345 7.114 -1.733 0 0 0 0 0 0 0 +-0.368 7.119 -1.735 0 0 0 0 0 0 0 +-0.391 7.123 -1.736 0 0 0 0 0 0 0 +-0.404 7.161 -1.746 0 0 0 0 0 0 0 +-0.427 7.172 -1.749 0 0 0 0 0 0 0 +-0.442 7.033 -1.713 0 0 0 0 0 0 0 +-0.472 7.171 -1.75 0 0 0 0 0 0 0 +-0.526 7.295 -1.783 0 0 0 0 0 0 0 +-0.547 7.266 -1.776 0 0 0 0 0 0 0 +-0.564 7.189 -1.756 0 0 0 0 0 0 0 +-0.573 7.15 -1.746 0 0 0 0 0 0 0 +-0.594 7.131 -1.742 0 0 0 0 0 0 0 +-0.618 7.152 -1.748 0 0 0 0 0 0 0 +-0.639 7.134 -1.744 0 0 0 0 0 0 0 +-0.66 7.117 -1.74 0 0 0 0 0 0 0 +-0.682 7.113 -1.739 0 0 0 0 0 0 0 +-0.705 7.113 -1.74 0 0 0 0 0 0 0 +-0.716 7.108 -1.739 0 0 0 0 0 0 0 +-0.738 7.107 -1.739 0 0 0 0 0 0 0 +-0.761 7.107 -1.74 0 0 0 0 0 0 0 +-0.783 7.103 -1.739 0 0 0 0 0 0 0 +-0.805 7.098 -1.739 0 0 0 0 0 0 0 +-0.828 7.103 -1.741 0 0 0 0 0 0 0 +-0.852 7.112 -1.744 0 0 0 0 0 0 0 +-0.862 7.101 -1.741 0 0 0 0 0 0 0 +-0.886 7.112 -1.745 0 0 0 0 0 0 0 +-0.906 7.096 -1.741 0 0 0 0 0 0 0 +-0.928 7.085 -1.739 0 0 0 0 0 0 0 +-0.952 7.098 -1.743 0 0 0 0 0 0 0 +-0.974 7.093 -1.743 0 0 0 0 0 0 0 +-0.997 7.095 -1.744 0 0 0 0 0 0 0 +-1.019 7.092 -1.744 0 0 0 0 0 0 0 +-1.03 7.087 -1.743 0 0 0 0 0 0 0 +-1.052 7.085 -1.744 0 0 0 0 0 0 0 +-1.076 7.093 -1.747 0 0 0 0 0 0 0 +-1.096 7.075 -1.743 0 0 0 0 0 0 0 +-1.12 7.081 -1.745 0 0 0 0 0 0 0 +-1.143 7.083 -1.747 0 0 0 0 0 0 0 +-1.164 7.072 -1.745 0 0 0 0 0 0 0 +-1.176 7.076 -1.746 0 0 0 0 0 0 0 +-1.199 7.074 -1.747 0 0 0 0 0 0 0 +-1.22 7.066 -1.746 0 0 0 0 0 0 0 +-1.244 7.07 -1.748 0 0 0 0 0 0 0 +-1.265 7.06 -1.746 0 0 0 0 0 0 0 +-1.287 7.052 -1.745 0 0 0 0 0 0 0 +-1.31 7.056 -1.747 0 0 0 0 0 0 0 +-1.323 7.065 -1.75 0 0 0 0 0 0 0 +-1.345 7.061 -1.75 0 0 0 0 0 0 0 +-1.367 7.055 -1.75 0 0 0 0 0 0 0 +-1.39 7.053 -1.75 0 0 0 0 0 0 0 +-1.411 7.044 -1.749 0 0 0 0 0 0 0 +-1.434 7.042 -1.75 0 0 0 0 0 0 0 +-1.457 7.041 -1.751 0 0 0 0 0 0 0 +-1.467 7.037 -1.75 0 0 0 0 0 0 0 +-1.489 7.03 -1.75 0 0 0 0 0 0 0 +-1.511 7.027 -1.75 0 0 0 0 0 0 0 +-1.531 7.011 -1.747 0 0 0 0 0 0 0 +-1.555 7.016 -1.75 0 0 0 0 0 0 0 +-1.578 7.013 -1.75 0 0 0 0 0 0 0 +-1.601 7.015 -1.752 0 0 0 0 0 0 0 +-1.613 7.017 -1.753 0 0 0 0 0 0 0 +-1.635 7.012 -1.753 0 0 0 0 0 0 0 +-1.655 6.995 -1.75 0 0 0 0 0 0 0 +-1.679 7.001 -1.753 0 0 0 0 0 0 0 +-1.703 7.002 -1.755 0 0 0 0 0 0 0 +-1.721 6.983 -1.751 0 0 0 0 0 0 0 +-1.745 6.983 -1.753 0 0 0 0 0 0 0 +-1.755 6.977 -1.752 0 0 0 0 0 0 0 +-1.778 6.975 -1.753 0 0 0 0 0 0 0 +-1.797 6.958 -1.75 0 0 0 0 0 0 0 +-1.821 6.964 -1.753 0 0 0 0 0 0 0 +-1.841 6.95 -1.751 0 0 0 0 0 0 0 +-1.864 6.946 -1.751 0 0 0 0 0 0 0 +-1.889 6.955 -1.755 0 0 0 0 0 0 0 +-1.914 6.959 -1.758 0 0 0 0 0 0 0 +-1.944 7.025 -1.776 0 0 0 0 0 0 0 +-1.955 6.98 -1.766 0 0 0 0 0 0 0 +-1.968 6.942 -1.757 0 0 0 0 0 0 0 +-1.991 6.941 -1.759 0 0 0 0 0 0 0 +-2.027 6.985 -1.772 0 0 0 0 0 0 0 +-2.038 6.938 -1.761 0 0 0 0 0 0 0 +-2.06 6.935 -1.762 0 0 0 0 0 0 0 +-2.069 6.924 -1.76 0 0 0 0 0 0 0 +-2.073 6.857 -1.744 0 0 0 0 0 0 0 +-2.097 6.861 -1.747 0 0 0 0 0 0 0 +-2.13 6.892 -1.757 0 0 0 0 0 0 0 +-2.145 6.863 -1.751 0 0 0 0 0 0 0 +-2.165 6.85 -1.749 0 0 0 0 0 0 0 +-2.191 6.858 -1.753 0 0 0 0 0 0 0 +-2.199 6.846 -1.751 0 0 0 0 0 0 0 +-2.22 6.839 -1.751 0 0 0 0 0 0 0 +-2.246 6.843 -1.754 0 0 0 0 0 0 0 +-2.265 6.83 -1.752 0 0 0 0 0 0 0 +-2.288 6.828 -1.754 0 0 0 0 0 0 0 +-2.312 6.829 -1.756 0 0 0 0 0 0 0 +-2.33 6.81 -1.753 0 0 0 0 0 0 0 +-2.343 6.814 -1.755 0 0 0 0 0 0 0 +-2.364 6.805 -1.754 0 0 0 0 0 0 0 +-2.381 6.784 -1.751 0 0 0 0 0 0 0 +-2.403 6.779 -1.751 0 0 0 0 0 0 0 +-2.427 6.778 -1.753 0 0 0 0 0 0 0 +-2.445 6.764 -1.751 0 0 0 0 0 0 0 +-2.469 6.761 -1.753 0 0 0 0 0 0 0 +-2.493 6.763 -1.755 0 0 0 0 0 0 0 +-2.5 6.748 -1.752 0 0 0 0 0 0 0 +-2.523 6.745 -1.754 0 0 0 0 0 0 0 +-2.548 6.748 -1.757 0 0 0 0 0 0 0 +-2.566 6.731 -1.754 0 0 0 0 0 0 0 +-2.592 6.736 -1.758 0 0 0 0 0 0 0 +-2.614 6.729 -1.758 0 0 0 0 0 0 0 +-2.63 6.708 -1.755 0 0 0 0 0 0 0 +-2.646 6.717 -1.758 0 0 0 0 0 0 0 +-2.663 6.7 -1.756 0 0 0 0 0 0 0 +-2.686 6.697 -1.757 0 0 0 0 0 0 0 +-2.708 6.69 -1.758 0 0 0 0 0 0 0 +-2.733 6.69 -1.76 0 0 0 0 0 0 0 +-2.748 6.669 -1.757 0 0 0 0 0 0 0 +-2.767 6.655 -1.755 0 0 0 0 0 0 0 +-2.786 6.67 -1.761 0 0 0 0 0 0 0 +-2.802 6.651 -1.758 0 0 0 0 0 0 0 +-2.824 6.644 -1.758 0 0 0 0 0 0 0 +-2.848 6.642 -1.76 0 0 0 0 0 0 0 +-2.869 6.635 -1.761 0 0 0 0 0 0 0 +-2.89 6.626 -1.761 0 0 0 0 0 0 0 +-2.912 6.619 -1.761 0 0 0 0 0 0 0 +-2.919 6.607 -1.759 0 0 0 0 0 0 0 +-2.945 6.608 -1.762 0 0 0 0 0 0 0 +-2.969 6.608 -1.765 0 0 0 0 0 0 0 +-2.992 6.602 -1.766 0 0 0 0 0 0 0 +-3.01 6.587 -1.764 0 0 0 0 0 0 0 +-3.039 6.595 -1.769 0 0 0 0 0 0 0 +-3.055 6.577 -1.767 0 0 0 0 0 0 0 +-3.079 6.574 -1.769 0 0 0 0 0 0 0 +-3.096 6.584 -1.773 0 0 0 0 0 0 0 +-3.108 6.556 -1.768 0 0 0 0 0 0 0 +-3.131 6.55 -1.769 0 0 0 0 0 0 0 +-3.155 6.547 -1.771 0 0 0 0 0 0 0 +-3.168 6.523 -1.767 0 0 0 0 0 0 0 +-3.186 6.508 -1.765 0 0 0 0 0 0 0 +-3.214 6.514 -1.77 0 0 0 0 0 0 0 +-3.22 6.5 -1.767 0 0 0 0 0 0 0 +-3.242 6.492 -1.768 0 0 0 0 0 0 0 +-3.263 6.483 -1.768 0 0 0 0 0 0 0 +-3.277 6.461 -1.765 0 0 0 0 0 0 0 +-3.299 6.454 -1.766 0 0 0 0 0 0 0 +-3.321 6.447 -1.767 0 0 0 0 0 0 0 +-3.341 6.435 -1.766 0 0 0 0 0 0 0 +-3.353 6.435 -1.768 0 0 0 0 0 0 0 +-3.378 6.433 -1.77 0 0 0 0 0 0 0 +-3.396 6.417 -1.769 0 0 0 0 0 0 0 +-3.424 6.421 -1.773 0 0 0 0 0 0 0 +-3.45 6.423 -1.777 0 0 0 0 0 0 0 +-3.47 6.412 -1.777 0 0 0 0 0 0 0 +-3.498 6.414 -1.781 0 0 0 0 0 0 0 +-3.53 6.45 -1.793 0 0 0 0 0 0 0 +-3.555 6.447 -1.796 0 0 0 0 0 0 0 +-3.575 6.436 -1.796 0 0 0 0 0 0 0 +-3.581 6.398 -1.788 0 0 0 0 0 0 0 +-3.607 6.398 -1.791 0 0 0 0 0 0 0 +-3.666 6.456 -1.812 0 0 0 0 0 0 0 +-3.677 6.428 -1.807 0 0 0 0 0 0 0 +-3.679 6.384 -1.797 0 0 0 0 0 0 0 +-3.689 6.378 -1.797 0 0 0 0 0 0 0 +-3.704 6.358 -1.795 0 0 0 0 0 0 0 +-3.715 6.332 -1.79 0 0 0 0 0 0 0 +-3.745 6.337 -1.795 0 0 0 0 0 0 0 +-3.756 6.31 -1.791 0 0 0 0 0 0 0 +-3.763 6.276 -1.784 0 0 0 0 0 0 0 +-3.778 6.256 -1.781 0 0 0 0 0 0 0 +-3.785 6.247 -1.78 0 0 0 0 0 0 0 +-3.798 6.223 -1.777 0 0 0 0 0 0 0 +-3.821 6.216 -1.778 0 0 0 0 0 0 0 +-3.842 6.208 -1.779 0 0 0 0 0 0 0 +-3.861 6.194 -1.779 0 0 0 0 0 0 0 +-3.885 6.19 -1.781 0 0 0 0 0 0 0 +-3.901 6.173 -1.78 0 0 0 0 0 0 0 +-3.908 6.162 -1.778 0 0 0 0 0 0 0 +-3.922 6.141 -1.776 0 0 0 0 0 0 0 +-3.94 6.127 -1.775 0 0 0 0 0 0 0 +-3.951 6.102 -1.771 0 0 0 0 0 0 0 +-3.968 6.086 -1.77 0 0 0 0 0 0 0 +-3.986 6.072 -1.77 0 0 0 0 0 0 0 +-4.007 6.061 -1.77 0 0 0 0 0 0 0 +-4.016 6.055 -1.77 0 0 0 0 0 0 0 +-4.036 6.044 -1.771 0 0 0 0 0 0 0 +-4.05 6.023 -1.768 0 0 0 0 0 0 0 +-4.073 6.017 -1.77 0 0 0 0 0 0 0 +-4.095 6.009 -1.772 0 0 0 0 0 0 0 +-4.113 5.994 -1.771 0 0 0 0 0 0 0 +-4.132 5.981 -1.771 0 0 0 0 0 0 0 +-4.154 5.973 -1.773 0 0 0 0 0 0 0 +-4.164 5.968 -1.773 0 0 0 0 0 0 0 +-4.183 5.955 -1.773 0 0 0 0 0 0 0 +-4.198 5.937 -1.772 0 0 0 0 0 0 0 +-4.22 5.929 -1.773 0 0 0 0 0 0 0 +-4.239 5.915 -1.773 0 0 0 0 0 0 0 +-4.255 5.899 -1.772 0 0 0 0 0 0 0 +-4.277 5.89 -1.774 0 0 0 0 0 0 0 +-4.289 5.886 -1.775 0 0 0 0 0 0 0 +-4.306 5.871 -1.774 0 0 0 0 0 0 0 +-4.324 5.858 -1.774 0 0 0 0 0 0 0 +-4.339 5.84 -1.773 0 0 0 0 0 0 0 +-4.362 5.832 -1.775 0 0 0 0 0 0 0 +-4.376 5.812 -1.773 0 0 0 0 0 0 0 +-4.395 5.8 -1.773 0 0 0 0 0 0 0 +-4.416 5.789 -1.774 0 0 0 0 0 0 0 +-4.424 5.781 -1.774 0 0 0 0 0 0 0 +-4.44 5.764 -1.773 0 0 0 0 0 0 0 +-4.459 5.751 -1.773 0 0 0 0 0 0 0 +-4.471 5.73 -1.771 0 0 0 0 0 0 0 +-4.492 5.72 -1.772 0 0 0 0 0 0 0 +-4.51 5.706 -1.772 0 0 0 0 0 0 0 +-4.526 5.689 -1.771 0 0 0 0 0 0 0 +-4.541 5.689 -1.774 0 0 0 0 0 0 0 +-4.55 5.664 -1.77 0 0 0 0 0 0 0 +-4.567 5.648 -1.77 0 0 0 0 0 0 0 +-4.599 5.652 -1.776 0 0 0 0 0 0 0 +-4.61 5.629 -1.773 0 0 0 0 0 0 0 +-4.624 5.61 -1.771 0 0 0 0 0 0 0 +-4.641 5.595 -1.771 0 0 0 0 0 0 0 +-4.652 5.591 -1.772 0 0 0 0 0 0 0 +-4.666 5.572 -1.771 0 0 0 0 0 0 0 +-4.676 5.548 -1.768 0 0 0 0 0 0 0 +-4.689 5.527 -1.766 0 0 0 0 0 0 0 +-4.71 5.517 -1.767 0 0 0 0 0 0 0 +-4.727 5.502 -1.767 0 0 0 0 0 0 0 +-4.746 5.489 -1.768 0 0 0 0 0 0 0 +-4.749 5.476 -1.766 0 0 0 0 0 0 0 +-4.787 5.484 -1.774 0 0 0 0 0 0 0 +-4.795 5.459 -1.77 0 0 0 0 0 0 0 +-4.811 5.442 -1.77 0 0 0 0 0 0 0 +-4.828 5.427 -1.77 0 0 0 0 0 0 0 +-4.847 5.415 -1.771 0 0 0 0 0 0 0 +-4.857 5.391 -1.768 0 0 0 0 0 0 0 +-4.883 5.386 -1.771 0 0 0 0 0 0 0 +-4.9 5.388 -1.775 0 0 0 0 0 0 0 +-4.914 5.37 -1.774 0 0 0 0 0 0 0 +-4.938 5.361 -1.776 0 0 0 0 0 0 0 +-4.956 5.347 -1.777 0 0 0 0 0 0 0 +-4.975 5.335 -1.778 0 0 0 0 0 0 0 +-4.983 5.309 -1.774 0 0 0 0 0 0 0 +-5.013 5.307 -1.779 0 0 0 0 0 0 0 +-5.022 5.301 -1.78 0 0 0 0 0 0 0 +-5.044 5.291 -1.782 0 0 0 0 0 0 0 +-5.069 5.283 -1.785 0 0 0 0 0 0 0 +-5.092 5.274 -1.788 0 0 0 0 0 0 0 +-5.107 5.257 -1.787 0 0 0 0 0 0 0 +-5.141 5.259 -1.794 0 0 0 0 0 0 0 +-5.144 5.229 -1.789 0 0 0 0 0 0 0 +-5.189 5.258 -1.802 0 0 0 0 0 0 0 +-5.192 5.228 -1.797 0 0 0 0 0 0 0 +-5.203 5.206 -1.795 0 0 0 0 0 0 0 +-5.196 5.166 -1.787 0 0 0 0 0 0 0 +-5.217 5.154 -1.788 0 0 0 0 0 0 0 +-5.223 5.128 -1.784 0 0 0 0 0 0 0 +-5.258 5.131 -1.792 0 0 0 0 0 0 0 +-5.265 5.121 -1.791 0 0 0 0 0 0 0 +-5.283 5.106 -1.792 0 0 0 0 0 0 0 +-5.308 5.099 -1.795 0 0 0 0 0 0 0 +-5.323 5.081 -1.795 0 0 0 0 0 0 0 +-5.325 5.051 -1.79 0 0 0 0 0 0 0 +-5.328 5.022 -1.785 0 0 0 0 0 0 0 +-5.345 5.006 -1.786 0 0 0 0 0 0 0 +-5.339 4.985 -1.78 0 0 0 0 0 0 0 +-5.372 4.984 -1.787 0 0 0 0 0 0 0 +-5.383 4.963 -1.785 0 0 0 0 0 0 0 +-5.374 4.924 -1.776 0 0 0 0 0 0 0 +-5.39 4.907 -1.776 0 0 0 0 0 0 0 +-5.411 4.895 -1.778 0 0 0 0 0 0 0 +-5.419 4.872 -1.776 0 0 0 0 0 0 0 +-5.444 4.864 -1.779 0 0 0 0 0 0 0 +-5.451 4.854 -1.779 0 0 0 0 0 0 0 +-5.456 4.828 -1.775 0 0 0 0 0 0 0 +-5.482 4.821 -1.779 0 0 0 0 0 0 0 +-5.489 4.796 -1.776 0 0 0 0 0 0 0 +-5.486 4.763 -1.77 0 0 0 0 0 0 0 +-5.513 4.756 -1.774 0 0 0 0 0 0 0 +-5.529 4.74 -1.775 0 0 0 0 0 0 0 +-5.534 4.729 -1.774 0 0 0 0 0 0 0 +-5.55 4.713 -1.774 0 0 0 0 0 0 0 +-5.561 4.691 -1.773 0 0 0 0 0 0 0 +-5.566 4.666 -1.77 0 0 0 0 0 0 0 +-5.585 4.653 -1.771 0 0 0 0 0 0 0 +-5.602 4.636 -1.772 0 0 0 0 0 0 0 +-5.618 4.62 -1.772 0 0 0 0 0 0 0 +-5.622 4.609 -1.771 0 0 0 0 0 0 0 +-5.636 4.591 -1.771 0 0 0 0 0 0 0 +-5.643 4.567 -1.769 0 0 0 0 0 0 0 +-5.658 4.549 -1.769 0 0 0 0 0 0 0 +-5.672 4.532 -1.769 0 0 0 0 0 0 0 +-5.686 4.514 -1.769 0 0 0 0 0 0 0 +-5.699 4.495 -1.768 0 0 0 0 0 0 0 +-5.701 4.482 -1.767 0 0 0 0 0 0 0 +-5.72 4.468 -1.768 0 0 0 0 0 0 0 +-5.725 4.443 -1.765 0 0 0 0 0 0 0 +-5.728 4.416 -1.762 0 0 0 0 0 0 0 +-5.751 4.405 -1.765 0 0 0 0 0 0 0 +-5.759 4.383 -1.763 0 0 0 0 0 0 0 +-5.783 4.373 -1.766 0 0 0 0 0 0 0 +-5.782 4.358 -1.764 0 0 0 0 0 0 0 +-5.799 4.342 -1.765 0 0 0 0 0 0 0 +-5.794 4.31 -1.759 0 0 0 0 0 0 0 +-5.814 4.296 -1.761 0 0 0 0 0 0 0 +-5.833 4.282 -1.763 0 0 0 0 0 0 0 +-5.837 4.257 -1.76 0 0 0 0 0 0 0 +-5.837 4.229 -1.755 0 0 0 0 0 0 0 +-5.861 4.218 -1.759 0 0 0 0 0 0 0 +-5.852 4.198 -1.754 0 0 0 0 0 0 0 +-5.87 4.183 -1.755 0 0 0 0 0 0 0 +-5.883 4.164 -1.755 0 0 0 0 0 0 0 +-5.888 4.14 -1.753 0 0 0 0 0 0 0 +-5.887 4.112 -1.748 0 0 0 0 0 0 0 +-5.89 4.086 -1.745 0 0 0 0 0 0 0 +-5.909 4.072 -1.747 0 0 0 0 0 0 0 +-5.938 4.078 -1.754 0 0 0 0 0 0 0 +-5.924 4.041 -1.746 0 0 0 0 0 0 0 +-5.938 4.024 -1.746 0 0 0 0 0 0 0 +-5.957 4.009 -1.748 0 0 0 0 0 0 0 +-5.966 3.988 -1.747 0 0 0 0 0 0 0 +-5.968 3.962 -1.744 0 0 0 0 0 0 0 +-5.974 3.939 -1.742 0 0 0 0 0 0 0 +-5.986 3.934 -1.744 0 0 0 0 0 0 0 +-5.994 3.912 -1.742 0 0 0 0 0 0 0 +-6.001 3.89 -1.741 0 0 0 0 0 0 0 +-6.012 3.87 -1.74 0 0 0 0 0 0 0 +-6.019 3.848 -1.739 0 0 0 0 0 0 0 +-6.028 3.827 -1.738 0 0 0 0 0 0 0 +-6.043 3.81 -1.739 0 0 0 0 0 0 0 +-6.044 3.797 -1.737 0 0 0 0 0 0 0 +-6.058 3.779 -1.738 0 0 0 0 0 0 0 +-6.061 3.755 -1.735 0 0 0 0 0 0 0 +-6.075 3.737 -1.736 0 0 0 0 0 0 0 +-6.086 3.718 -1.736 0 0 0 0 0 0 0 +-6.1 3.7 -1.736 0 0 0 0 0 0 0 +-6.111 3.681 -1.736 0 0 0 0 0 0 0 +-6.123 3.661 -1.736 0 0 0 0 0 0 0 +-6.122 3.648 -1.734 0 0 0 0 0 0 0 +-6.132 3.628 -1.734 0 0 0 0 0 0 0 +-6.148 3.611 -1.735 0 0 0 0 0 0 0 +-6.149 3.586 -1.732 0 0 0 0 0 0 0 +-6.162 3.568 -1.733 0 0 0 0 0 0 0 +-6.173 3.548 -1.733 0 0 0 0 0 0 0 +-6.178 3.525 -1.731 0 0 0 0 0 0 0 +-6.182 3.514 -1.73 0 0 0 0 0 0 0 +-6.193 3.495 -1.73 0 0 0 0 0 0 0 +-6.209 3.478 -1.732 0 0 0 0 0 0 0 +-6.223 3.461 -1.733 0 0 0 0 0 0 0 +-6.232 3.44 -1.732 0 0 0 0 0 0 0 +-6.243 3.421 -1.732 0 0 0 0 0 0 0 +-6.255 3.402 -1.733 0 0 0 0 0 0 0 +-6.264 3.394 -1.734 0 0 0 0 0 0 0 +-6.275 3.374 -1.734 0 0 0 0 0 0 0 +-6.29 3.357 -1.735 0 0 0 0 0 0 0 +-6.296 3.335 -1.734 0 0 0 0 0 0 0 +-6.31 3.317 -1.735 0 0 0 0 0 0 0 +-6.328 3.301 -1.737 0 0 0 0 0 0 0 +-6.335 3.28 -1.736 0 0 0 0 0 0 0 +-6.356 3.278 -1.741 0 0 0 0 0 0 0 +-6.37 3.26 -1.742 0 0 0 0 0 0 0 +-6.397 3.248 -1.747 0 0 0 0 0 0 0 +-6.392 3.22 -1.742 0 0 0 0 0 0 0 +-6.398 3.199 -1.741 0 0 0 0 0 0 0 +-6.414 3.181 -1.743 0 0 0 0 0 0 0 +-6.432 3.165 -1.745 0 0 0 0 0 0 0 +-6.442 3.158 -1.747 0 0 0 0 0 0 0 +-6.459 3.141 -1.749 0 0 0 0 0 0 0 +-6.471 3.121 -1.749 0 0 0 0 0 0 0 +-6.488 3.104 -1.751 0 0 0 0 0 0 0 +-6.889 2.038 -1.749 0 0 0 0 0 0 0 +-6.881 2.024 -1.746 0 0 0 0 0 0 0 +-6.895 2.005 -1.748 0 0 0 0 0 0 0 +-6.903 1.984 -1.749 0 0 0 0 0 0 0 +-6.915 1.963 -1.75 0 0 0 0 0 0 0 +-6.91 1.939 -1.747 0 0 0 0 0 0 0 +-6.914 1.916 -1.747 0 0 0 0 0 0 0 +-6.914 1.893 -1.745 0 0 0 0 0 0 0 +-6.929 1.885 -1.748 0 0 0 0 0 0 0 +-6.923 1.86 -1.745 0 0 0 0 0 0 0 +-6.942 1.842 -1.749 0 0 0 0 0 0 0 +-6.933 1.816 -1.745 0 0 0 0 0 0 0 +-6.95 1.798 -1.748 0 0 0 0 0 0 0 +-6.948 1.774 -1.746 0 0 0 0 0 0 0 +-6.963 1.754 -1.748 0 0 0 0 0 0 0 +-6.969 1.744 -1.749 0 0 0 0 0 0 0 +-6.977 1.723 -1.75 0 0 0 0 0 0 0 +-6.969 1.698 -1.746 0 0 0 0 0 0 0 +-6.974 1.676 -1.746 0 0 0 0 0 0 0 +-6.989 1.656 -1.749 0 0 0 0 0 0 0 +-7.003 1.636 -1.751 0 0 0 0 0 0 0 +-7.01 1.615 -1.752 0 0 0 0 0 0 0 +-6.992 1.599 -1.746 0 0 0 0 0 0 0 +-7.009 1.58 -1.749 0 0 0 0 0 0 0 +-7.004 1.555 -1.747 0 0 0 0 0 0 0 +-7.016 1.535 -1.749 0 0 0 0 0 0 0 +-7.023 1.514 -1.749 0 0 0 0 0 0 0 +-7.028 1.491 -1.749 0 0 0 0 0 0 0 +-7.032 1.469 -1.749 0 0 0 0 0 0 0 +-7.039 1.459 -1.75 0 0 0 0 0 0 0 +-7.032 1.435 -1.747 0 0 0 0 0 0 0 +-7.034 1.412 -1.747 0 0 0 0 0 0 0 +-7.048 1.392 -1.749 0 0 0 0 0 0 0 +-7.053 1.37 -1.749 0 0 0 0 0 0 0 +-7.057 1.348 -1.749 0 0 0 0 0 0 0 +-7.063 1.326 -1.75 0 0 0 0 0 0 0 +-7.069 1.315 -1.751 0 0 0 0 0 0 0 +-7.063 1.291 -1.748 0 0 0 0 0 0 0 +-7.077 1.271 -1.751 0 0 0 0 0 0 0 +-7.081 1.249 -1.751 0 0 0 0 0 0 0 +-7.073 1.225 -1.748 0 0 0 0 0 0 0 +-7.089 1.204 -1.751 0 0 0 0 0 0 0 +-7.079 1.18 -1.747 0 0 0 0 0 0 0 +-7.071 1.167 -1.745 0 0 0 0 0 0 0 +-7.104 1.15 -1.752 0 0 0 0 0 0 0 +-7.098 1.126 -1.75 0 0 0 0 0 0 0 +-7.103 1.104 -1.75 0 0 0 0 0 0 0 +-7.11 1.082 -1.751 0 0 0 0 0 0 0 +-7.115 1.06 -1.752 0 0 0 0 0 0 0 +-7.113 1.037 -1.75 0 0 0 0 0 0 0 +-7.132 1.028 -1.755 0 0 0 0 0 0 0 +-7.124 1.004 -1.752 0 0 0 0 0 0 0 +-7.131 0.982 -1.753 0 0 0 0 0 0 0 +-7.13 0.959 -1.752 0 0 0 0 0 0 0 +-7.146 0.939 -1.755 0 0 0 0 0 0 0 +-7.134 0.914 -1.751 0 0 0 0 0 0 0 +-7.142 0.892 -1.753 0 0 0 0 0 0 0 +-7.139 0.869 -1.751 0 0 0 0 0 0 0 +-7.143 0.858 -1.752 0 0 0 0 0 0 0 +-7.145 0.836 -1.752 0 0 0 0 0 0 0 +-7.159 0.815 -1.755 0 0 0 0 0 0 0 +-7.16 0.792 -1.754 0 0 0 0 0 0 0 +-7.168 0.77 -1.756 0 0 0 0 0 0 0 +-7.165 0.747 -1.754 0 0 0 0 0 0 0 +-7.163 0.724 -1.753 0 0 0 0 0 0 0 +-7.162 0.713 -1.753 0 0 0 0 0 0 0 +-7.17 0.691 -1.754 0 0 0 0 0 0 0 +-7.169 0.668 -1.753 0 0 0 0 0 0 0 +-7.165 0.645 -1.752 0 0 0 0 0 0 0 +-7.171 0.623 -1.753 0 0 0 0 0 0 0 +-7.175 0.6 -1.753 0 0 0 0 0 0 0 +-7.194 0.579 -1.758 0 0 0 0 0 0 0 +-7.19 0.556 -1.756 0 0 0 0 0 0 0 +-7.183 0.544 -1.754 0 0 0 0 0 0 0 +-7.191 0.522 -1.756 0 0 0 0 0 0 0 +-7.206 0.5 -1.759 0 0 0 0 0 0 0 +-7.201 0.477 -1.758 0 0 0 0 0 0 0 +-7.199 0.455 -1.757 0 0 0 0 0 0 0 +-7.216 0.433 -1.761 0 0 0 0 0 0 0 +-7.198 0.409 -1.756 0 0 0 0 0 0 0 +-7.204 0.398 -1.757 0 0 0 0 0 0 0 +-7.219 0.376 -1.761 0 0 0 0 0 0 0 +-7.203 0.353 -1.756 0 0 0 0 0 0 0 +-7.21 0.33 -1.758 0 0 0 0 0 0 0 +-7.218 0.308 -1.76 0 0 0 0 0 0 0 +-7.19 0.284 -1.752 0 0 0 0 0 0 0 +-7.22 0.263 -1.76 0 0 0 0 0 0 0 +-7.211 0.251 -1.757 0 0 0 0 0 0 0 +-7.2 0.228 -1.754 0 0 0 0 0 0 0 +-7.226 0.206 -1.761 0 0 0 0 0 0 0 +-7.221 0.183 -1.759 0 0 0 0 0 0 0 +-7.214 0.16 -1.757 0 0 0 0 0 0 0 +-7.218 0.138 -1.758 0 0 0 0 0 0 0 +-7.222 0.115 -1.759 0 0 0 0 0 0 0 +-7.218 0.104 -1.758 0 0 0 0 0 0 0 +-7.246 0.081 -1.765 0 0 0 0 0 0 0 +-7.217 0.058 -1.758 0 0 0 0 0 0 0 +-7.211 0.036 -1.756 0 0 0 0 0 0 0 +-7.231 0.013 -1.761 0 0 0 0 0 0 0 +-7.231 -0.01 -1.761 0 0 0 0 0 0 0 +-7.246 -0.032 -1.765 0 0 0 0 0 0 0 +-7.229 -0.044 -1.761 0 0 0 0 0 0 0 +-7.236 -0.067 -1.763 0 0 0 0 0 0 0 +-7.217 -0.089 -1.758 0 0 0 0 0 0 0 +-7.216 -0.112 -1.758 0 0 0 0 0 0 0 +-7.218 -0.134 -1.758 0 0 0 0 0 0 0 +-7.227 -0.157 -1.761 0 0 0 0 0 0 0 +-7.225 -0.18 -1.76 0 0 0 0 0 0 0 +-7.232 -0.203 -1.762 0 0 0 0 0 0 0 +-7.214 -0.214 -1.758 0 0 0 0 0 0 0 +-7.219 -0.237 -1.759 0 0 0 0 0 0 0 +-7.224 -0.259 -1.761 0 0 0 0 0 0 0 +-7.227 -0.282 -1.762 0 0 0 0 0 0 0 +-7.209 -0.304 -1.757 0 0 0 0 0 0 0 +-7.221 -0.328 -1.761 0 0 0 0 0 0 0 +-7.213 -0.35 -1.759 0 0 0 0 0 0 0 +-7.214 -0.361 -1.759 0 0 0 0 0 0 0 +-7.203 -0.383 -1.757 0 0 0 0 0 0 0 +-7.208 -0.406 -1.758 0 0 0 0 0 0 0 +-7.201 -0.429 -1.757 0 0 0 0 0 0 0 +-7.197 -0.451 -1.756 0 0 0 0 0 0 0 +-7.196 -0.474 -1.756 0 0 0 0 0 0 0 +-7.194 -0.496 -1.756 0 0 0 0 0 0 0 +-7.203 -0.508 -1.759 0 0 0 0 0 0 0 +-7.203 -0.531 -1.759 0 0 0 0 0 0 0 +-7.196 -0.553 -1.758 0 0 0 0 0 0 0 +-7.19 -0.576 -1.757 0 0 0 0 0 0 0 +-7.177 -0.597 -1.754 0 0 0 0 0 0 0 +-7.185 -0.621 -1.756 0 0 0 0 0 0 0 +-7.187 -0.644 -1.757 0 0 0 0 0 0 0 +-7.182 -0.655 -1.756 0 0 0 0 0 0 0 +-7.18 -0.677 -1.756 0 0 0 0 0 0 0 +-7.174 -0.699 -1.755 0 0 0 0 0 0 0 +-7.526 -0.756 -1.848 0 0 0 0 0 0 0 +-7.525 -0.78 -1.849 0 0 0 0 0 0 0 +-7.517 -0.803 -1.847 0 0 0 0 0 0 0 +-7.511 -0.826 -1.846 0 0 0 0 0 0 0 +-7.521 -0.851 -1.85 0 0 0 0 0 0 0 +-7.528 -0.876 -1.852 0 0 0 0 0 0 0 +-7.533 -0.889 -1.854 0 0 0 0 0 0 0 +-7.516 -0.911 -1.85 0 0 0 0 0 0 0 +-7.502 -0.933 -1.847 0 0 0 0 0 0 0 +-7.503 -0.957 -1.848 0 0 0 0 0 0 0 +-7.5 -0.98 -1.848 0 0 0 0 0 0 0 +-7.508 -1.005 -1.851 0 0 0 0 0 0 0 +-7.515 -1.03 -1.854 0 0 0 0 0 0 0 +-7.505 -1.041 -1.852 0 0 0 0 0 0 0 +-7.5 -1.064 -1.851 0 0 0 0 0 0 0 +-7.493 -1.087 -1.85 0 0 0 0 0 0 0 +-7.495 -1.112 -1.852 0 0 0 0 0 0 0 +-7.488 -1.135 -1.851 0 0 0 0 0 0 0 +-7.484 -1.158 -1.851 0 0 0 0 0 0 0 +-7.469 -1.18 -1.848 0 0 0 0 0 0 0 +-7.477 -1.193 -1.85 0 0 0 0 0 0 0 +-7.475 -1.217 -1.851 0 0 0 0 0 0 0 +-7.469 -1.24 -1.85 0 0 0 0 0 0 0 +-7.471 -1.265 -1.852 0 0 0 0 0 0 0 +-7.457 -1.286 -1.849 0 0 0 0 0 0 0 +-7.457 -1.311 -1.85 0 0 0 0 0 0 0 +-7.461 -1.335 -1.852 0 0 0 0 0 0 0 +-7.453 -1.346 -1.851 0 0 0 0 0 0 0 +-7.437 -1.367 -1.848 0 0 0 0 0 0 0 +-7.438 -1.392 -1.849 0 0 0 0 0 0 0 +-7.432 -1.415 -1.849 0 0 0 0 0 0 0 +-7.433 -1.439 -1.85 0 0 0 0 0 0 0 +-7.429 -1.463 -1.85 0 0 0 0 0 0 0 +-7.418 -1.485 -1.849 0 0 0 0 0 0 0 +-7.42 -1.497 -1.85 0 0 0 0 0 0 0 +-7.409 -1.519 -1.848 0 0 0 0 0 0 0 +-7.41 -1.544 -1.85 0 0 0 0 0 0 0 +-7.404 -1.567 -1.849 0 0 0 0 0 0 0 +-7.399 -1.59 -1.849 0 0 0 0 0 0 0 +-7.394 -1.613 -1.849 0 0 0 0 0 0 0 +-7.396 -1.638 -1.851 0 0 0 0 0 0 0 +-7.383 -1.66 -1.849 0 0 0 0 0 0 0 +-7.386 -1.672 -1.851 0 0 0 0 0 0 0 +-7.383 -1.696 -1.851 0 0 0 0 0 0 0 +-7.374 -1.718 -1.85 0 0 0 0 0 0 0 +-7.365 -1.741 -1.849 0 0 0 0 0 0 0 +-7.367 -1.766 -1.851 0 0 0 0 0 0 0 +-7.354 -1.787 -1.849 0 0 0 0 0 0 0 +-7.346 -1.809 -1.849 0 0 0 0 0 0 0 +-7.332 -1.818 -1.845 0 0 0 0 0 0 0 +-7.337 -1.844 -1.849 0 0 0 0 0 0 0 +-7.333 -1.868 -1.849 0 0 0 0 0 0 0 +-7.331 -1.892 -1.85 0 0 0 0 0 0 0 +-7.322 -1.914 -1.849 0 0 0 0 0 0 0 +-7.316 -1.937 -1.849 0 0 0 0 0 0 0 +-7.293 -1.955 -1.844 0 0 0 0 0 0 0 +-7.301 -1.97 -1.848 0 0 0 0 0 0 0 +-7.304 -1.995 -1.85 0 0 0 0 0 0 0 +-6.869 -3.111 -1.842 0 0 0 0 0 0 0 +-6.859 -3.133 -1.842 0 0 0 0 0 0 0 +-6.85 -3.142 -1.841 0 0 0 0 0 0 0 +-6.84 -3.163 -1.841 0 0 0 0 0 0 0 +-6.822 -3.181 -1.838 0 0 0 0 0 0 0 +-6.812 -3.202 -1.838 0 0 0 0 0 0 0 +-6.807 -3.226 -1.84 0 0 0 0 0 0 0 +-6.788 -3.243 -1.837 0 0 0 0 0 0 0 +-6.773 -3.262 -1.836 0 0 0 0 0 0 0 +-6.773 -3.275 -1.837 0 0 0 0 0 0 0 +-6.759 -3.295 -1.836 0 0 0 0 0 0 0 +-6.752 -3.318 -1.837 0 0 0 0 0 0 0 +-6.754 -3.345 -1.841 0 0 0 0 0 0 0 +-6.74 -3.364 -1.84 0 0 0 0 0 0 0 +-6.72 -3.381 -1.837 0 0 0 0 0 0 0 +-6.715 -3.405 -1.839 0 0 0 0 0 0 0 +-6.706 -3.414 -1.838 0 0 0 0 0 0 0 +-6.706 -3.44 -1.841 0 0 0 0 0 0 0 +-6.695 -3.461 -1.841 0 0 0 0 0 0 0 +-6.674 -3.477 -1.838 0 0 0 0 0 0 0 +-6.675 -3.504 -1.841 0 0 0 0 0 0 0 +-6.669 -3.528 -1.843 0 0 0 0 0 0 0 +-6.654 -3.547 -1.842 0 0 0 0 0 0 0 +-6.637 -3.551 -1.838 0 0 0 0 0 0 0 +-6.634 -3.576 -1.841 0 0 0 0 0 0 0 +-6.623 -3.597 -1.841 0 0 0 0 0 0 0 +-6.622 -3.623 -1.844 0 0 0 0 0 0 0 +-6.578 -3.627 -1.834 0 0 0 0 0 0 0 +-6.568 -3.648 -1.835 0 0 0 0 0 0 0 +-6.558 -3.67 -1.835 0 0 0 0 0 0 0 +-6.551 -3.679 -1.835 0 0 0 0 0 0 0 +-6.582 -3.723 -1.848 0 0 0 0 0 0 0 +-6.55 -3.733 -1.841 0 0 0 0 0 0 0 +-6.528 -3.747 -1.838 0 0 0 0 0 0 0 +-6.508 -3.763 -1.836 0 0 0 0 0 0 0 +-6.494 -3.783 -1.835 0 0 0 0 0 0 0 +-6.467 -3.794 -1.831 0 0 0 0 0 0 0 +-6.458 -3.802 -1.83 0 0 0 0 0 0 0 +-6.444 -3.822 -1.829 0 0 0 0 0 0 0 +-6.445 -3.85 -1.833 0 0 0 0 0 0 0 +-6.422 -3.863 -1.83 0 0 0 0 0 0 0 +-6.408 -3.882 -1.829 0 0 0 0 0 0 0 +-6.394 -3.901 -1.829 0 0 0 0 0 0 0 +-6.38 -3.92 -1.828 0 0 0 0 0 0 0 +-6.366 -3.939 -1.828 0 0 0 0 0 0 0 +-6.36 -3.949 -1.828 0 0 0 0 0 0 0 +-6.346 -3.968 -1.827 0 0 0 0 0 0 0 +-6.327 -3.984 -1.825 0 0 0 0 0 0 0 +-6.322 -4.009 -1.828 0 0 0 0 0 0 0 +-6.305 -4.026 -1.826 0 0 0 0 0 0 0 +-6.289 -4.044 -1.825 0 0 0 0 0 0 0 +-6.279 -4.065 -1.826 0 0 0 0 0 0 0 +-6.275 -4.076 -1.827 0 0 0 0 0 0 0 +-6.26 -4.095 -1.826 0 0 0 0 0 0 0 +-6.241 -4.11 -1.824 0 0 0 0 0 0 0 +-6.226 -4.129 -1.824 0 0 0 0 0 0 0 +-6.21 -4.146 -1.823 0 0 0 0 0 0 0 +-6.198 -4.167 -1.823 0 0 0 0 0 0 0 +-6.192 -4.191 -1.825 0 0 0 0 0 0 0 +-6.185 -4.2 -1.825 0 0 0 0 0 0 0 +-6.167 -4.216 -1.824 0 0 0 0 0 0 0 +-6.151 -4.234 -1.823 0 0 0 0 0 0 0 +-6.136 -4.252 -1.822 0 0 0 0 0 0 0 +-6.124 -4.272 -1.823 0 0 0 0 0 0 0 +-6.118 -4.297 -1.825 0 0 0 0 0 0 0 +-6.099 -4.312 -1.823 0 0 0 0 0 0 0 +-6.085 -4.317 -1.821 0 0 0 0 0 0 0 +-6.077 -4.339 -1.823 0 0 0 0 0 0 0 +-6.057 -4.354 -1.821 0 0 0 0 0 0 0 +-6.048 -4.376 -1.822 0 0 0 0 0 0 0 +-6.034 -4.395 -1.822 0 0 0 0 0 0 0 +-6.018 -4.413 -1.822 0 0 0 0 0 0 0 +-5.998 -4.427 -1.82 0 0 0 0 0 0 0 +-5.994 -4.439 -1.821 0 0 0 0 0 0 0 +-5.977 -4.456 -1.82 0 0 0 0 0 0 0 +-5.965 -4.475 -1.82 0 0 0 0 0 0 0 +-5.949 -4.493 -1.82 0 0 0 0 0 0 0 +-5.932 -4.509 -1.819 0 0 0 0 0 0 0 +-5.921 -4.53 -1.82 0 0 0 0 0 0 0 +-5.904 -4.547 -1.819 0 0 0 0 0 0 0 +-5.9 -4.558 -1.82 0 0 0 0 0 0 0 +-5.879 -4.572 -1.818 0 0 0 0 0 0 0 +-5.869 -4.594 -1.819 0 0 0 0 0 0 0 +-5.856 -4.614 -1.82 0 0 0 0 0 0 0 +-5.842 -4.632 -1.82 0 0 0 0 0 0 0 +-5.829 -4.651 -1.82 0 0 0 0 0 0 0 +-5.814 -4.67 -1.82 0 0 0 0 0 0 0 +-5.801 -4.674 -1.818 0 0 0 0 0 0 0 +-5.783 -4.69 -1.817 0 0 0 0 0 0 0 +-5.767 -4.707 -1.817 0 0 0 0 0 0 0 +-5.753 -4.726 -1.817 0 0 0 0 0 0 0 +-5.742 -4.747 -1.818 0 0 0 0 0 0 0 +-5.728 -4.766 -1.819 0 0 0 0 0 0 0 +-5.709 -4.78 -1.817 0 0 0 0 0 0 0 +-5.695 -4.799 -1.818 0 0 0 0 0 0 0 +-5.676 -4.798 -1.814 0 0 0 0 0 0 0 +-5.666 -4.821 -1.816 0 0 0 0 0 0 0 +-5.653 -4.84 -1.816 0 0 0 0 0 0 0 +-5.642 -4.862 -1.818 0 0 0 0 0 0 0 +-5.615 -4.869 -1.814 0 0 0 0 0 0 0 +-5.608 -4.894 -1.817 0 0 0 0 0 0 0 +-5.584 -4.904 -1.814 0 0 0 0 0 0 0 +-5.579 -4.916 -1.815 0 0 0 0 0 0 0 +-5.568 -4.937 -1.816 0 0 0 0 0 0 0 +-5.553 -4.954 -1.816 0 0 0 0 0 0 0 +-5.54 -4.974 -1.817 0 0 0 0 0 0 0 +-5.523 -4.991 -1.817 0 0 0 0 0 0 0 +-5.506 -5.007 -1.816 0 0 0 0 0 0 0 +-5.49 -5.024 -1.816 0 0 0 0 0 0 0 +-5.485 -5.035 -1.817 0 0 0 0 0 0 0 +-5.471 -5.054 -1.818 0 0 0 0 0 0 0 +-5.453 -5.069 -1.817 0 0 0 0 0 0 0 +-5.44 -5.089 -1.818 0 0 0 0 0 0 0 +-5.421 -5.104 -1.817 0 0 0 0 0 0 0 +-5.411 -5.126 -1.819 0 0 0 0 0 0 0 +-5.388 -5.136 -1.817 0 0 0 0 0 0 0 +-5.385 -5.15 -1.819 0 0 0 0 0 0 0 +-5.365 -5.163 -1.817 0 0 0 0 0 0 0 +-5.36 -5.19 -1.821 0 0 0 0 0 0 0 +-5.355 -5.218 -1.825 0 0 0 0 0 0 0 +-5.334 -5.231 -1.824 0 0 0 0 0 0 0 +-5.33 -5.26 -1.828 0 0 0 0 0 0 0 +-5.269 -5.233 -1.812 0 0 0 0 0 0 0 +-5.249 -5.229 -1.808 0 0 0 0 0 0 0 +-5.258 -5.271 -1.817 0 0 0 0 0 0 0 +-5.232 -5.278 -1.814 0 0 0 0 0 0 0 +-5.195 -5.274 -1.806 0 0 0 0 0 0 0 +-5.185 -5.297 -1.809 0 0 0 0 0 0 0 +-5.17 -5.315 -1.809 0 0 0 0 0 0 0 +-5.144 -5.321 -1.806 0 0 0 0 0 0 0 +-5.134 -5.328 -1.805 0 0 0 0 0 0 0 +-5.12 -5.347 -1.806 0 0 0 0 0 0 0 +-5.098 -5.357 -1.804 0 0 0 0 0 0 0 +-5.085 -5.378 -1.806 0 0 0 0 0 0 0 +-5.073 -5.399 -1.808 0 0 0 0 0 0 0 +-5.039 -5.397 -1.801 0 0 0 0 0 0 0 +-5.018 -5.408 -1.8 0 0 0 0 0 0 0 +-5.02 -5.428 -1.804 0 0 0 0 0 0 0 +-4.994 -5.433 -1.8 0 0 0 0 0 0 0 +-4.981 -5.453 -1.802 0 0 0 0 0 0 0 +-4.965 -5.47 -1.802 0 0 0 0 0 0 0 +-4.941 -5.479 -1.8 0 0 0 0 0 0 0 +-4.923 -5.493 -1.799 0 0 0 0 0 0 0 +-4.912 -5.515 -1.802 0 0 0 0 0 0 0 +-4.883 -5.518 -1.797 0 0 0 0 0 0 0 +-4.874 -5.526 -1.797 0 0 0 0 0 0 0 +-4.859 -5.544 -1.798 0 0 0 0 0 0 0 +-4.837 -5.553 -1.796 0 0 0 0 0 0 0 +-4.819 -5.568 -1.796 0 0 0 0 0 0 0 +-4.806 -5.588 -1.798 0 0 0 0 0 0 0 +-4.77 -5.582 -1.791 0 0 0 0 0 0 0 +-4.766 -5.612 -1.796 0 0 0 0 0 0 0 +-4.754 -5.617 -1.795 0 0 0 0 0 0 0 +-4.721 -5.614 -1.789 0 0 0 0 0 0 0 +-4.711 -5.637 -1.792 0 0 0 0 0 0 0 +-4.696 -5.655 -1.793 0 0 0 0 0 0 0 +-4.666 -5.655 -1.788 0 0 0 0 0 0 0 +-4.664 -5.689 -1.794 0 0 0 0 0 0 0 +-4.638 -5.693 -1.791 0 0 0 0 0 0 0 +-4.62 -5.69 -1.787 0 0 0 0 0 0 0 +-4.61 -5.713 -1.79 0 0 0 0 0 0 0 +-4.583 -5.717 -1.787 0 0 0 0 0 0 0 +-4.565 -5.732 -1.787 0 0 0 0 0 0 0 +-4.555 -5.757 -1.79 0 0 0 0 0 0 0 +-4.534 -5.766 -1.789 0 0 0 0 0 0 0 +-4.512 -5.776 -1.787 0 0 0 0 0 0 0 +-4.501 -5.78 -1.786 0 0 0 0 0 0 0 +-4.481 -5.793 -1.786 0 0 0 0 0 0 0 +-4.463 -5.807 -1.786 0 0 0 0 0 0 0 +-4.448 -5.825 -1.787 0 0 0 0 0 0 0 +-4.425 -5.833 -1.785 0 0 0 0 0 0 0 +-4.403 -5.842 -1.783 0 0 0 0 0 0 0 +-4.392 -5.865 -1.787 0 0 0 0 0 0 0 +-4.378 -5.866 -1.784 0 0 0 0 0 0 0 +-4.362 -5.883 -1.786 0 0 0 0 0 0 0 +-4.342 -5.895 -1.785 0 0 0 0 0 0 0 +-4.32 -5.904 -1.783 0 0 0 0 0 0 0 +-4.301 -5.916 -1.783 0 0 0 0 0 0 0 +-4.293 -5.945 -1.788 0 0 0 0 0 0 0 +-4.263 -5.943 -1.783 0 0 0 0 0 0 0 +-4.26 -5.957 -1.786 0 0 0 0 0 0 0 +-4.24 -5.969 -1.785 0 0 0 0 0 0 0 +-4.222 -5.984 -1.786 0 0 0 0 0 0 0 +-4.204 -5.999 -1.786 0 0 0 0 0 0 0 +-4.186 -6.012 -1.786 0 0 0 0 0 0 0 +-4.169 -6.028 -1.787 0 0 0 0 0 0 0 +-4.146 -6.035 -1.785 0 0 0 0 0 0 0 +-4.137 -6.043 -1.786 0 0 0 0 0 0 0 +-4.113 -6.048 -1.783 0 0 0 0 0 0 0 +-4.1 -6.071 -1.786 0 0 0 0 0 0 0 +-4.083 -6.087 -1.787 0 0 0 0 0 0 0 +-4.066 -6.103 -1.788 0 0 0 0 0 0 0 +-4.046 -6.114 -1.788 0 0 0 0 0 0 0 +-4.023 -6.12 -1.786 0 0 0 0 0 0 0 +-4.017 -6.133 -1.788 0 0 0 0 0 0 0 +-4.004 -6.155 -1.791 0 0 0 0 0 0 0 +-3.989 -6.174 -1.793 0 0 0 0 0 0 0 +-3.967 -6.182 -1.791 0 0 0 0 0 0 0 +-3.953 -6.204 -1.794 0 0 0 0 0 0 0 +-3.937 -6.221 -1.796 0 0 0 0 0 0 0 +-3.928 -6.25 -1.801 0 0 0 0 0 0 0 +-3.917 -6.255 -1.8 0 0 0 0 0 0 0 +-3.905 -6.28 -1.804 0 0 0 0 0 0 0 +-3.889 -6.297 -1.806 0 0 0 0 0 0 0 +-3.866 -6.304 -1.804 0 0 0 0 0 0 0 +-3.84 -6.307 -1.801 0 0 0 0 0 0 0 +-3.827 -6.33 -1.805 0 0 0 0 0 0 0 +-3.817 -6.359 -1.81 0 0 0 0 0 0 0 +-3.825 -6.395 -1.819 0 0 0 0 0 0 0 +-3.789 -6.38 -1.811 0 0 0 0 0 0 0 +-3.753 -6.364 -1.802 0 0 0 0 0 0 0 +-3.727 -6.365 -1.799 0 0 0 0 0 0 0 +-3.713 -6.389 -1.803 0 0 0 0 0 0 0 +-3.686 -6.387 -1.799 0 0 0 0 0 0 0 +-3.664 -6.395 -1.798 0 0 0 0 0 0 0 +-3.651 -6.396 -1.796 0 0 0 0 0 0 0 +-3.624 -6.395 -1.793 0 0 0 0 0 0 0 +-3.597 -6.395 -1.789 0 0 0 0 0 0 0 +-3.575 -6.403 -1.788 0 0 0 0 0 0 0 +-3.559 -6.421 -1.79 0 0 0 0 0 0 0 +-3.535 -6.425 -1.788 0 0 0 0 0 0 0 +-3.514 -6.436 -1.788 0 0 0 0 0 0 0 +-3.503 -6.44 -1.788 0 0 0 0 0 0 0 +-3.482 -6.449 -1.787 0 0 0 0 0 0 0 +-3.462 -6.46 -1.787 0 0 0 0 0 0 0 +-3.436 -6.461 -1.784 0 0 0 0 0 0 0 +-3.419 -6.479 -1.786 0 0 0 0 0 0 0 +-3.399 -6.489 -1.786 0 0 0 0 0 0 0 +-3.381 -6.505 -1.788 0 0 0 0 0 0 0 +-3.356 -6.507 -1.785 0 0 0 0 0 0 0 +-3.344 -6.507 -1.783 0 0 0 0 0 0 0 +-3.326 -6.523 -1.785 0 0 0 0 0 0 0 +-3.307 -6.537 -1.786 0 0 0 0 0 0 0 +-3.283 -6.54 -1.784 0 0 0 0 0 0 0 +-3.264 -6.554 -1.785 0 0 0 0 0 0 0 +-3.241 -6.559 -1.783 0 0 0 0 0 0 0 +-3.224 -6.576 -1.786 0 0 0 0 0 0 0 +-3.214 -6.583 -1.786 0 0 0 0 0 0 0 +-3.186 -6.577 -1.781 0 0 0 0 0 0 0 +-3.173 -6.603 -1.786 0 0 0 0 0 0 0 +-3.148 -6.604 -1.783 0 0 0 0 0 0 0 +-3.128 -6.616 -1.784 0 0 0 0 0 0 0 +-3.106 -6.622 -1.783 0 0 0 0 0 0 0 +-3.086 -6.633 -1.783 0 0 0 0 0 0 0 +-3.073 -6.635 -1.782 0 0 0 0 0 0 0 +-3.057 -6.655 -1.786 0 0 0 0 0 0 0 +-3.031 -6.652 -1.782 0 0 0 0 0 0 0 +-3.007 -6.655 -1.78 0 0 0 0 0 0 0 +-2.994 -6.682 -1.785 0 0 0 0 0 0 0 +-2.966 -6.677 -1.781 0 0 0 0 0 0 0 +-2.948 -6.692 -1.782 0 0 0 0 0 0 0 +-2.941 -6.705 -1.785 0 0 0 0 0 0 0 +-2.915 -6.702 -1.781 0 0 0 0 0 0 0 +-2.892 -6.707 -1.78 0 0 0 0 0 0 0 +-2.875 -6.725 -1.783 0 0 0 0 0 0 0 +-2.853 -6.733 -1.782 0 0 0 0 0 0 0 +-2.829 -6.734 -1.78 0 0 0 0 0 0 0 +-2.812 -6.754 -1.783 0 0 0 0 0 0 0 +-2.793 -6.739 -1.778 0 0 0 0 0 0 0 +-2.772 -6.747 -1.778 0 0 0 0 0 0 0 +-2.759 -6.776 -1.783 0 0 0 0 0 0 0 +-2.737 -6.783 -1.783 0 0 0 0 0 0 0 +-2.712 -6.782 -1.78 0 0 0 0 0 0 0 +-2.698 -6.809 -1.786 0 0 0 0 0 0 0 +-2.673 -6.808 -1.783 0 0 0 0 0 0 0 +-2.661 -6.809 -1.782 0 0 0 0 0 0 0 +-2.644 -6.83 -1.786 0 0 0 0 0 0 0 +-2.619 -6.829 -1.783 0 0 0 0 0 0 0 +-2.601 -6.846 -1.786 0 0 0 0 0 0 0 +-2.582 -6.86 -1.787 0 0 0 0 0 0 0 +-2.555 -6.853 -1.783 0 0 0 0 0 0 0 +-2.534 -6.863 -1.783 0 0 0 0 0 0 0 +-2.531 -6.887 -1.789 0 0 0 0 0 0 0 +-2.506 -6.886 -1.787 0 0 0 0 0 0 0 +-2.498 -6.932 -1.797 0 0 0 0 0 0 0 +-2.499 -7.003 -1.815 0 0 0 0 0 0 0 +-2.472 -6.997 -1.811 0 0 0 0 0 0 0 +-2.416 -6.909 -1.784 0 0 0 0 0 0 0 +-2.393 -6.913 -1.783 0 0 0 0 0 0 0 +-2.384 -6.923 -1.785 0 0 0 0 0 0 0 +-2.357 -6.914 -1.78 0 0 0 0 0 0 0 +-2.334 -6.917 -1.779 0 0 0 0 0 0 0 +-2.306 -6.906 -1.774 0 0 0 0 0 0 0 +-2.283 -6.91 -1.773 0 0 0 0 0 0 0 +-2.26 -6.911 -1.772 0 0 0 0 0 0 0 +-2.234 -6.906 -1.768 0 0 0 0 0 0 0 +-2.226 -6.92 -1.771 0 0 0 0 0 0 0 +-2.2 -6.912 -1.767 0 0 0 0 0 0 0 +-2.179 -6.921 -1.768 0 0 0 0 0 0 0 +-2.152 -6.913 -1.764 0 0 0 0 0 0 0 +-2.131 -6.92 -1.764 0 0 0 0 0 0 0 +-2.108 -6.925 -1.763 0 0 0 0 0 0 0 +-2.085 -6.926 -1.762 0 0 0 0 0 0 0 +-2.076 -6.935 -1.763 0 0 0 0 0 0 0 +-2.047 -6.917 -1.757 0 0 0 0 0 0 0 +-2.028 -6.934 -1.76 0 0 0 0 0 0 0 +-2.004 -6.932 -1.757 0 0 0 0 0 0 0 +-1.98 -6.932 -1.756 0 0 0 0 0 0 0 +-1.958 -6.937 -1.755 0 0 0 0 0 0 0 +-1.936 -6.941 -1.755 0 0 0 0 0 0 0 +-1.924 -6.94 -1.754 0 0 0 0 0 0 0 +-1.9 -6.939 -1.752 0 0 0 0 0 0 0 +-1.876 -6.939 -1.75 0 0 0 0 0 0 0 +-1.855 -6.945 -1.75 0 0 0 0 0 0 0 +-1.833 -6.952 -1.751 0 0 0 0 0 0 0 +-1.81 -6.953 -1.749 0 0 0 0 0 0 0 +-1.788 -6.958 -1.749 0 0 0 0 0 0 0 +-1.778 -6.963 -1.75 0 0 0 0 0 0 0 +-1.754 -6.961 -1.748 0 0 0 0 0 0 0 +-1.733 -6.97 -1.749 0 0 0 0 0 0 0 +-1.711 -6.974 -1.748 0 0 0 0 0 0 0 +-1.688 -6.975 -1.747 0 0 0 0 0 0 0 +-1.666 -6.981 -1.747 0 0 0 0 0 0 0 +-1.642 -6.978 -1.745 0 0 0 0 0 0 0 +-1.621 -6.985 -1.746 0 0 0 0 0 0 0 +-1.609 -6.986 -1.745 0 0 0 0 0 0 0 +-1.585 -6.98 -1.742 0 0 0 0 0 0 0 +-1.564 -6.992 -1.744 0 0 0 0 0 0 0 +-1.541 -6.989 -1.742 0 0 0 0 0 0 0 +-1.519 -6.994 -1.742 0 0 0 0 0 0 0 +-1.496 -6.995 -1.741 0 0 0 0 0 0 0 +-1.474 -6.998 -1.741 0 0 0 0 0 0 0 +-1.463 -7 -1.741 0 0 0 0 0 0 0 +-1.438 -6.993 -1.738 0 0 0 0 0 0 0 +-1.415 -6.992 -1.736 0 0 0 0 0 0 0 +-1.392 -6.991 -1.735 0 0 0 0 0 0 0 +-1.37 -6.997 -1.735 0 0 0 0 0 0 0 +-1.347 -6.994 -1.733 0 0 0 0 0 0 0 +-1.335 -6.992 -1.732 0 0 0 0 0 0 0 +-1.314 -7 -1.733 0 0 0 0 0 0 0 +-1.292 -7.004 -1.733 0 0 0 0 0 0 0 +-1.272 -7.022 -1.737 0 0 0 0 0 0 0 +-1.252 -7.033 -1.739 0 0 0 0 0 0 0 +-1.229 -7.033 -1.738 0 0 0 0 0 0 0 +-1.208 -7.047 -1.74 0 0 0 0 0 0 0 +-1.186 -7.048 -1.74 0 0 0 0 0 0 0 +-1.175 -7.048 -1.739 0 0 0 0 0 0 0 +-1.153 -7.054 -1.74 0 0 0 0 0 0 0 +-1.131 -7.063 -1.741 0 0 0 0 0 0 0 +-1.109 -7.065 -1.741 0 0 0 0 0 0 0 +-1.087 -7.072 -1.742 0 0 0 0 0 0 0 +-1.064 -7.066 -1.739 0 0 0 0 0 0 0 +-1.041 -7.065 -1.738 0 0 0 0 0 0 0 +-1.031 -7.075 -1.74 0 0 0 0 0 0 0 +-1.009 -7.082 -1.741 0 0 0 0 0 0 0 +-0.988 -7.089 -1.742 0 0 0 0 0 0 0 +-0.966 -7.099 -1.744 0 0 0 0 0 0 0 +-0.944 -7.099 -1.743 0 0 0 0 0 0 0 +-0.921 -7.102 -1.743 0 0 0 0 0 0 0 +-0.899 -7.104 -1.743 0 0 0 0 0 0 0 +-0.887 -7.102 -1.742 0 0 0 0 0 0 0 +-0.865 -7.109 -1.743 0 0 0 0 0 0 0 +-0.844 -7.117 -1.745 0 0 0 0 0 0 0 +-0.822 -7.125 -1.746 0 0 0 0 0 0 0 +-0.799 -7.118 -1.744 0 0 0 0 0 0 0 +-0.777 -7.125 -1.745 0 0 0 0 0 0 0 +-0.754 -7.121 -1.743 0 0 0 0 0 0 0 +-0.743 -7.128 -1.745 0 0 0 0 0 0 0 +-0.721 -7.132 -1.745 0 0 0 0 0 0 0 +-0.699 -7.139 -1.746 0 0 0 0 0 0 0 +-0.675 -7.127 -1.743 0 0 0 0 0 0 0 +-0.652 -7.118 -1.74 0 0 0 0 0 0 0 +-0.63 -7.124 -1.741 0 0 0 0 0 0 0 +-0.608 -7.131 -1.742 0 0 0 0 0 0 0 +-0.597 -7.136 -1.743 0 0 0 0 0 0 0 +-0.576 -7.155 -1.748 0 0 0 0 0 0 0 +-0.552 -7.138 -1.743 0 0 0 0 0 0 0 +-0.529 -7.14 -1.743 0 0 0 0 0 0 0 +-0.507 -7.139 -1.742 0 0 0 0 0 0 0 +-0.485 -7.149 -1.744 0 0 0 0 0 0 0 +-0.463 -7.15 -1.744 0 0 0 0 0 0 0 +-0.452 -7.162 -1.747 0 0 0 0 0 0 0 +-0.429 -7.156 -1.745 0 0 0 0 0 0 0 +-0.408 -7.173 -1.749 0 0 0 0 0 0 0 +-0.385 -7.17 -1.748 0 0 0 0 0 0 0 +-0.362 -7.16 -1.745 0 0 0 0 0 0 0 +-0.34 -7.178 -1.75 0 0 0 0 0 0 0 +-0.318 -7.191 -1.753 0 0 0 0 0 0 0 +-0.306 -7.174 -1.748 0 0 0 0 0 0 0 +-0.284 -7.192 -1.753 0 0 0 0 0 0 0 +-0.261 -7.191 -1.752 0 0 0 0 0 0 0 +-0.239 -7.188 -1.751 0 0 0 0 0 0 0 +-0.216 -7.198 -1.754 0 0 0 0 0 0 0 +-0.194 -7.218 -1.759 0 0 0 0 0 0 0 +-0.171 -7.196 -1.753 0 0 0 0 0 0 0 +-0.16 -7.204 -1.755 0 0 0 0 0 0 0 +-0.137 -7.2 -1.754 0 0 0 0 0 0 0 +-0.115 -7.21 -1.756 0 0 0 0 0 0 0 +-0.092 -7.213 -1.757 0 0 0 0 0 0 0 +-0.07 -7.215 -1.757 0 0 0 0 0 0 0 +-0.047 -7.223 -1.759 0 0 0 0 0 0 0 +-0.024 -7.231 -1.761 0 0 0 0 0 0 0 +-0.013 -7.219 -1.758 0 0 0 0 0 0 0 +0.01 -7.229 -1.761 0 0 0 0 0 0 0 +0.032 -7.229 -1.761 0 0 0 0 0 0 0 +0.055 -7.225 -1.76 0 0 0 0 0 0 0 +0.078 -7.219 -1.758 0 0 0 0 0 0 0 +0.101 -7.236 -1.763 0 0 0 0 0 0 0 +0.123 -7.224 -1.76 0 0 0 0 0 0 0 +0.135 -7.231 -1.762 0 0 0 0 0 0 0 +0.157 -7.229 -1.761 0 0 0 0 0 0 0 +0.18 -7.238 -1.764 0 0 0 0 0 0 0 +0.203 -7.226 -1.761 0 0 0 0 0 0 0 +0.226 -7.233 -1.763 0 0 0 0 0 0 0 +0.249 -7.248 -1.767 0 0 0 0 0 0 0 +0.271 -7.233 -1.763 0 0 0 0 0 0 0 +0.283 -7.235 -1.764 0 0 0 0 0 0 0 +0.305 -7.23 -1.763 0 0 0 0 0 0 0 +0.328 -7.235 -1.764 0 0 0 0 0 0 0 +0.351 -7.234 -1.764 0 0 0 0 0 0 0 +0.374 -7.233 -1.764 0 0 0 0 0 0 0 +0.397 -7.245 -1.768 0 0 0 0 0 0 0 +0.419 -7.234 -1.765 0 0 0 0 0 0 0 +0.431 -7.237 -1.766 0 0 0 0 0 0 0 +0.453 -7.234 -1.766 0 0 0 0 0 0 0 +0.476 -7.236 -1.767 0 0 0 0 0 0 0 +0.499 -7.233 -1.766 0 0 0 0 0 0 0 +0.523 -7.256 -1.773 0 0 0 0 0 0 0 +0.545 -7.237 -1.768 0 0 0 0 0 0 0 +0.568 -7.236 -1.768 0 0 0 0 0 0 0 +0.579 -7.231 -1.767 0 0 0 0 0 0 0 +0.603 -7.246 -1.772 0 0 0 0 0 0 0 +0.625 -7.237 -1.77 0 0 0 0 0 0 0 +0.649 -7.246 -1.773 0 0 0 0 0 0 0 +0.672 -7.246 -1.773 0 0 0 0 0 0 0 +0.695 -7.246 -1.774 0 0 0 0 0 0 0 +0.717 -7.238 -1.772 0 0 0 0 0 0 0 +0.73 -7.258 -1.778 0 0 0 0 0 0 0 +0.753 -7.252 -1.777 0 0 0 0 0 0 0 +0.776 -7.257 -1.779 0 0 0 0 0 0 0 +0.799 -7.255 -1.779 0 0 0 0 0 0 0 +0.821 -7.248 -1.778 0 0 0 0 0 0 0 +0.843 -7.238 -1.776 0 0 0 0 0 0 0 +0.866 -7.239 -1.777 0 0 0 0 0 0 0 +0.89 -7.244 -1.779 0 0 0 0 0 0 0 +0.902 -7.246 -1.78 0 0 0 0 0 0 0 +0.925 -7.247 -1.781 0 0 0 0 0 0 0 +0.948 -7.248 -1.782 0 0 0 0 0 0 0 +0.971 -7.243 -1.781 0 0 0 0 0 0 0 +0.993 -7.233 -1.779 0 0 0 0 0 0 0 +1.018 -7.247 -1.784 0 0 0 0 0 0 0 +1.039 -7.23 -1.78 0 0 0 0 0 0 0 +1.052 -7.24 -1.783 0 0 0 0 0 0 0 +1.074 -7.231 -1.782 0 0 0 0 0 0 0 +1.096 -7.227 -1.782 0 0 0 0 0 0 0 +1.121 -7.235 -1.785 0 0 0 0 0 0 0 +1.145 -7.24 -1.787 0 0 0 0 0 0 0 +1.107 -6.785 -1.669 0 0 0 0 0 0 0 +1.126 -6.768 -1.665 0 0 0 0 0 0 0 +1.15 -6.78 -1.669 0 0 0 0 0 0 0 +1.169 -6.763 -1.666 0 0 0 0 0 0 0 +1.197 -6.795 -1.675 0 0 0 0 0 0 0 +1.291 -7.209 -1.786 0 0 0 0 0 0 0 +1.318 -7.226 -1.791 0 0 0 0 0 0 0 +1.343 -7.239 -1.796 0 0 0 0 0 0 0 +1.352 -7.223 -1.792 0 0 0 0 0 0 0 +1.376 -7.223 -1.793 0 0 0 0 0 0 0 +1.398 -7.219 -1.793 0 0 0 0 0 0 0 +1.424 -7.229 -1.797 0 0 0 0 0 0 0 +1.449 -7.234 -1.8 0 0 0 0 0 0 0 +1.469 -7.216 -1.796 0 0 0 0 0 0 0 +1.496 -7.235 -1.802 0 0 0 0 0 0 0 +1.505 -7.223 -1.8 0 0 0 0 0 0 0 +1.528 -7.22 -1.8 0 0 0 0 0 0 0 +1.55 -7.209 -1.799 0 0 0 0 0 0 0 +1.575 -7.214 -1.801 0 0 0 0 0 0 0 +1.597 -7.207 -1.801 0 0 0 0 0 0 0 +1.619 -7.202 -1.801 0 0 0 0 0 0 0 +1.643 -7.202 -1.802 0 0 0 0 0 0 0 +1.531 -6.654 -1.656 0 0 0 0 0 0 0 +1.524 -6.527 -1.624 0 0 0 0 0 0 0 +1.541 -6.505 -1.619 0 0 0 0 0 0 0 +1.555 -6.474 -1.612 0 0 0 0 0 0 0 +1.572 -6.456 -1.609 0 0 0 0 0 0 0 +1.589 -6.439 -1.606 0 0 0 0 0 0 0 +1.616 -6.461 -1.613 0 0 0 0 0 0 0 +1.64 -6.515 -1.628 0 0 0 0 0 0 0 +1.811 -7.108 -1.789 0 0 0 0 0 0 0 +1.856 -7.191 -1.812 0 0 0 0 0 0 0 +1.876 -7.177 -1.81 0 0 0 0 0 0 0 +1.901 -7.181 -1.813 0 0 0 0 0 0 0 +1.923 -7.169 -1.811 0 0 0 0 0 0 0 +1.949 -7.176 -1.815 0 0 0 0 0 0 0 +1.953 -7.147 -1.808 0 0 0 0 0 0 0 +1.985 -7.176 -1.817 0 0 0 0 0 0 0 +2.005 -7.161 -1.815 0 0 0 0 0 0 0 +2.03 -7.165 -1.818 0 0 0 0 0 0 0 +2.053 -7.161 -1.818 0 0 0 0 0 0 0 +2.078 -7.162 -1.82 0 0 0 0 0 0 0 +2.096 -7.14 -1.816 0 0 0 0 0 0 0 +2.115 -7.163 -1.823 0 0 0 0 0 0 0 +2.135 -7.147 -1.821 0 0 0 0 0 0 0 +2.155 -7.133 -1.819 0 0 0 0 0 0 0 +2.182 -7.141 -1.823 0 0 0 0 0 0 0 +2.202 -7.127 -1.821 0 0 0 0 0 0 0 +2.228 -7.133 -1.824 0 0 0 0 0 0 0 +2.253 -7.133 -1.826 0 0 0 0 0 0 0 +2.259 -7.113 -1.822 0 0 0 0 0 0 0 +2.283 -7.109 -1.823 0 0 0 0 0 0 0 +2.31 -7.119 -1.827 0 0 0 0 0 0 0 +2.327 -7.095 -1.823 0 0 0 0 0 0 0 +2.354 -7.102 -1.827 0 0 0 0 0 0 0 +2.38 -7.106 -1.83 0 0 0 0 0 0 0 +2.396 -7.08 -1.825 0 0 0 0 0 0 0 +2.411 -7.085 -1.827 0 0 0 0 0 0 0 +2.442 -7.103 -1.834 0 0 0 0 0 0 0 +2.462 -7.09 -1.833 0 0 0 0 0 0 0 +2.483 -7.079 -1.832 0 0 0 0 0 0 0 +2.511 -7.087 -1.836 0 0 0 0 0 0 0 +2.531 -7.074 -1.835 0 0 0 0 0 0 0 +2.559 -7.082 -1.839 0 0 0 0 0 0 0 +2.582 -7.111 -1.849 0 0 0 0 0 0 0 +2.598 -7.085 -1.843 0 0 0 0 0 0 0 +2.626 -7.093 -1.848 0 0 0 0 0 0 0 +2.651 -7.09 -1.85 0 0 0 0 0 0 0 +2.672 -7.08 -1.849 0 0 0 0 0 0 0 +2.7 -7.086 -1.853 0 0 0 0 0 0 0 +2.727 -7.09 -1.857 0 0 0 0 0 0 0 +2.735 -7.079 -1.855 0 0 0 0 0 0 0 +2.76 -7.076 -1.856 0 0 0 0 0 0 0 +2.78 -7.061 -1.855 0 0 0 0 0 0 0 +2.8 -7.049 -1.854 0 0 0 0 0 0 0 +2.827 -7.051 -1.857 0 0 0 0 0 0 0 +2.849 -7.042 -1.857 0 0 0 0 0 0 0 +2.867 -7.022 -1.854 0 0 0 0 0 0 0 +2.88 -7.023 -1.855 0 0 0 0 0 0 0 +2.903 -7.016 -1.856 0 0 0 0 0 0 0 +2.923 -7.001 -1.854 0 0 0 0 0 0 0 +2.933 -6.965 -1.846 0 0 0 0 0 0 0 +2.949 -6.942 -1.842 0 0 0 0 0 0 0 +2.97 -6.931 -1.842 0 0 0 0 0 0 0 +2.998 -6.936 -1.846 0 0 0 0 0 0 0 +3.006 -6.924 -1.844 0 0 0 0 0 0 0 +3.029 -6.918 -1.845 0 0 0 0 0 0 0 +3.052 -6.91 -1.845 0 0 0 0 0 0 0 +3.065 -6.881 -1.84 0 0 0 0 0 0 0 +3.093 -6.885 -1.844 0 0 0 0 0 0 0 +3.111 -6.869 -1.842 0 0 0 0 0 0 0 +3.139 -6.873 -1.846 0 0 0 0 0 0 0 +3.15 -6.868 -1.846 0 0 0 0 0 0 0 +3.163 -6.839 -1.84 0 0 0 0 0 0 0 +3.185 -6.831 -1.841 0 0 0 0 0 0 0 +3.207 -6.822 -1.841 0 0 0 0 0 0 0 +3.235 -6.826 -1.845 0 0 0 0 0 0 0 +3.254 -6.811 -1.844 0 0 0 0 0 0 0 +3.277 -6.804 -1.845 0 0 0 0 0 0 0 +3.288 -6.799 -1.845 0 0 0 0 0 0 0 +3.307 -6.783 -1.843 0 0 0 0 0 0 0 +3.323 -6.762 -1.84 0 0 0 0 0 0 0 +3.342 -6.747 -1.839 0 0 0 0 0 0 0 +3.363 -6.736 -1.839 0 0 0 0 0 0 0 +3.38 -6.719 -1.837 0 0 0 0 0 0 0 +3.4 -6.704 -1.836 0 0 0 0 0 0 0 +3.408 -6.694 -1.834 0 0 0 0 0 0 0 +3.428 -6.681 -1.834 0 0 0 0 0 0 0 +3.451 -6.676 -1.835 0 0 0 0 0 0 0 +3.468 -6.656 -1.833 0 0 0 0 0 0 0 +3.492 -6.651 -1.834 0 0 0 0 0 0 0 +3.509 -6.633 -1.832 0 0 0 0 0 0 0 +3.527 -6.617 -1.831 0 0 0 0 0 0 0 +3.54 -6.616 -1.832 0 0 0 0 0 0 0 +3.557 -6.598 -1.83 0 0 0 0 0 0 0 +3.579 -6.589 -1.831 0 0 0 0 0 0 0 +3.592 -6.564 -1.827 0 0 0 0 0 0 0 +3.615 -6.556 -1.828 0 0 0 0 0 0 0 +3.637 -6.548 -1.829 0 0 0 0 0 0 0 +3.658 -6.538 -1.829 0 0 0 0 0 0 0 +3.672 -6.539 -1.831 0 0 0 0 0 0 0 +3.695 -6.531 -1.832 0 0 0 0 0 0 0 +3.712 -6.513 -1.83 0 0 0 0 0 0 0 +3.73 -6.497 -1.829 0 0 0 0 0 0 0 +3.75 -6.484 -1.829 0 0 0 0 0 0 0 +3.77 -6.472 -1.829 0 0 0 0 0 0 0 +3.795 -6.469 -1.831 0 0 0 0 0 0 0 +3.797 -6.449 -1.827 0 0 0 0 0 0 0 +3.82 -6.441 -1.828 0 0 0 0 0 0 0 +3.84 -6.429 -1.828 0 0 0 0 0 0 0 +3.863 -6.422 -1.83 0 0 0 0 0 0 0 +3.878 -6.401 -1.827 0 0 0 0 0 0 0 +3.901 -6.394 -1.829 0 0 0 0 0 0 0 +3.919 -6.378 -1.828 0 0 0 0 0 0 0 +3.923 -6.362 -1.825 0 0 0 0 0 0 0 +3.945 -6.353 -1.826 0 0 0 0 0 0 0 +3.967 -6.344 -1.827 0 0 0 0 0 0 0 +3.986 -6.33 -1.826 0 0 0 0 0 0 0 +4.006 -6.317 -1.826 0 0 0 0 0 0 0 +4.029 -6.31 -1.828 0 0 0 0 0 0 0 +4.045 -6.29 -1.826 0 0 0 0 0 0 0 +4.052 -6.281 -1.825 0 0 0 0 0 0 0 +4.072 -6.268 -1.825 0 0 0 0 0 0 0 +4.096 -6.262 -1.827 0 0 0 0 0 0 0 +4.115 -6.247 -1.826 0 0 0 0 0 0 0 +4.133 -6.233 -1.826 0 0 0 0 0 0 0 +4.147 -6.212 -1.823 0 0 0 0 0 0 0 +4.169 -6.202 -1.824 0 0 0 0 0 0 0 +4.18 -6.197 -1.825 0 0 0 0 0 0 0 +4.196 -6.179 -1.823 0 0 0 0 0 0 0 +4.214 -6.164 -1.823 0 0 0 0 0 0 0 +4.24 -6.16 -1.826 0 0 0 0 0 0 0 +4.245 -6.126 -1.819 0 0 0 0 0 0 0 +4.261 -6.108 -1.818 0 0 0 0 0 0 0 +4.276 -6.088 -1.816 0 0 0 0 0 0 0 +4.287 -6.083 -1.816 0 0 0 0 0 0 0 +4.308 -6.073 -1.817 0 0 0 0 0 0 0 +4.33 -6.064 -1.819 0 0 0 0 0 0 0 +4.336 -6.031 -1.813 0 0 0 0 0 0 0 +4.36 -6.026 -1.815 0 0 0 0 0 0 0 +4.384 -6.018 -1.817 0 0 0 0 0 0 0 +4.395 -5.993 -1.814 0 0 0 0 0 0 0 +4.402 -5.983 -1.813 0 0 0 0 0 0 0 +4.426 -5.977 -1.815 0 0 0 0 0 0 0 +4.433 -5.946 -1.81 0 0 0 0 0 0 0 +4.451 -5.932 -1.81 0 0 0 0 0 0 0 +4.47 -5.918 -1.81 0 0 0 0 0 0 0 +4.48 -5.893 -1.806 0 0 0 0 0 0 0 +4.509 -5.893 -1.811 0 0 0 0 0 0 0 +4.514 -5.88 -1.809 0 0 0 0 0 0 0 +4.523 -5.853 -1.805 0 0 0 0 0 0 0 +4.547 -5.847 -1.807 0 0 0 0 0 0 0 +4.561 -5.826 -1.805 0 0 0 0 0 0 0 +4.574 -5.806 -1.803 0 0 0 0 0 0 0 +4.597 -5.798 -1.805 0 0 0 0 0 0 0 +4.619 -5.788 -1.807 0 0 0 0 0 0 0 +4.615 -5.764 -1.801 0 0 0 0 0 0 0 +4.64 -5.758 -1.804 0 0 0 0 0 0 0 +4.651 -5.735 -1.801 0 0 0 0 0 0 0 +4.663 -5.713 -1.799 0 0 0 0 0 0 0 +4.689 -5.708 -1.802 0 0 0 0 0 0 0 +4.705 -5.691 -1.801 0 0 0 0 0 0 0 +4.716 -5.668 -1.799 0 0 0 0 0 0 0 +4.739 -5.659 -1.801 0 0 0 0 0 0 0 +4.744 -5.648 -1.799 0 0 0 0 0 0 0 +4.756 -5.625 -1.797 0 0 0 0 0 0 0 +4.779 -5.616 -1.799 0 0 0 0 0 0 0 +4.794 -5.598 -1.798 0 0 0 0 0 0 0 +4.805 -5.576 -1.795 0 0 0 0 0 0 0 +4.825 -5.564 -1.796 0 0 0 0 0 0 0 +4.842 -5.548 -1.796 0 0 0 0 0 0 0 +4.851 -5.541 -1.796 0 0 0 0 0 0 0 +4.87 -5.527 -1.797 0 0 0 0 0 0 0 +4.885 -5.509 -1.796 0 0 0 0 0 0 0 +4.899 -5.49 -1.795 0 0 0 0 0 0 0 +4.92 -5.479 -1.796 0 0 0 0 0 0 0 +4.934 -5.46 -1.795 0 0 0 0 0 0 0 +4.946 -5.456 -1.796 0 0 0 0 0 0 0 +4.954 -5.43 -1.793 0 0 0 0 0 0 0 +4.971 -5.415 -1.793 0 0 0 0 0 0 0 +4.995 -5.406 -1.795 0 0 0 0 0 0 0 +5.009 -5.388 -1.794 0 0 0 0 0 0 0 +5.029 -5.375 -1.795 0 0 0 0 0 0 0 +5.039 -5.352 -1.793 0 0 0 0 0 0 0 +5.042 -5.338 -1.791 0 0 0 0 0 0 0 +5.053 -5.317 -1.789 0 0 0 0 0 0 0 +5.075 -5.307 -1.791 0 0 0 0 0 0 0 +5.093 -5.292 -1.791 0 0 0 0 0 0 0 +5.105 -5.27 -1.789 0 0 0 0 0 0 0 +5.112 -5.245 -1.786 0 0 0 0 0 0 0 +5.138 -5.238 -1.789 0 0 0 0 0 0 0 +5.151 -5.236 -1.791 0 0 0 0 0 0 0 +5.168 -5.22 -1.791 0 0 0 0 0 0 0 +5.176 -5.195 -1.788 0 0 0 0 0 0 0 +5.195 -5.181 -1.789 0 0 0 0 0 0 0 +5.217 -5.171 -1.791 0 0 0 0 0 0 0 +5.227 -5.149 -1.789 0 0 0 0 0 0 0 +5.246 -5.135 -1.79 0 0 0 0 0 0 0 +5.254 -5.11 -1.787 0 0 0 0 0 0 0 +5.263 -5.103 -1.788 0 0 0 0 0 0 0 +5.275 -5.083 -1.786 0 0 0 0 0 0 0 +5.288 -5.064 -1.785 0 0 0 0 0 0 0 +5.314 -5.056 -1.789 0 0 0 0 0 0 0 +5.322 -5.032 -1.786 0 0 0 0 0 0 0 +5.34 -5.018 -1.787 0 0 0 0 0 0 0 +5.359 -5.003 -1.788 0 0 0 0 0 0 0 +5.357 -4.986 -1.784 0 0 0 0 0 0 0 +5.379 -4.975 -1.787 0 0 0 0 0 0 0 +5.389 -4.953 -1.784 0 0 0 0 0 0 0 +5.405 -4.936 -1.784 0 0 0 0 0 0 0 +5.419 -4.918 -1.784 0 0 0 0 0 0 0 +5.426 -4.893 -1.781 0 0 0 0 0 0 0 +5.448 -4.883 -1.783 0 0 0 0 0 0 0 +5.456 -4.874 -1.783 0 0 0 0 0 0 0 +5.473 -4.858 -1.784 0 0 0 0 0 0 0 +5.484 -4.837 -1.782 0 0 0 0 0 0 0 +5.5 -4.821 -1.783 0 0 0 0 0 0 0 +5.509 -4.799 -1.781 0 0 0 0 0 0 0 +5.526 -4.783 -1.781 0 0 0 0 0 0 0 +5.531 -4.771 -1.78 0 0 0 0 0 0 0 +5.548 -4.756 -1.781 0 0 0 0 0 0 0 +5.559 -4.735 -1.78 0 0 0 0 0 0 0 +5.566 -4.711 -1.777 0 0 0 0 0 0 0 +5.578 -4.691 -1.776 0 0 0 0 0 0 0 +5.586 -4.668 -1.774 0 0 0 0 0 0 0 +5.611 -4.659 -1.777 0 0 0 0 0 0 0 +5.622 -4.639 -1.776 0 0 0 0 0 0 0 +5.622 -4.624 -1.774 0 0 0 0 0 0 0 +5.638 -4.607 -1.774 0 0 0 0 0 0 0 +5.65 -4.587 -1.773 0 0 0 0 0 0 0 +5.664 -4.569 -1.773 0 0 0 0 0 0 0 +5.683 -4.555 -1.775 0 0 0 0 0 0 0 +5.692 -4.534 -1.773 0 0 0 0 0 0 0 +5.704 -4.513 -1.772 0 0 0 0 0 0 0 +5.709 -4.503 -1.772 0 0 0 0 0 0 0 +5.719 -4.482 -1.77 0 0 0 0 0 0 0 +5.73 -4.461 -1.769 0 0 0 0 0 0 0 +5.744 -4.443 -1.769 0 0 0 0 0 0 0 +5.759 -4.426 -1.77 0 0 0 0 0 0 0 +5.764 -4.401 -1.767 0 0 0 0 0 0 0 +5.785 -4.389 -1.769 0 0 0 0 0 0 0 +5.782 -4.372 -1.766 0 0 0 0 0 0 0 +5.8 -4.357 -1.767 0 0 0 0 0 0 0 +5.812 -4.337 -1.767 0 0 0 0 0 0 0 +5.83 -4.323 -1.768 0 0 0 0 0 0 0 +5.838 -4.3 -1.766 0 0 0 0 0 0 0 +5.839 -4.272 -1.762 0 0 0 0 0 0 0 +5.855 -4.256 -1.763 0 0 0 0 0 0 0 +5.86 -4.246 -1.763 0 0 0 0 0 0 0 +5.867 -4.223 -1.761 0 0 0 0 0 0 0 +5.898 -4.217 -1.766 0 0 0 0 0 0 0 +5.895 -4.187 -1.761 0 0 0 0 0 0 0 +5.9 -4.163 -1.759 0 0 0 0 0 0 0 +5.921 -4.15 -1.761 0 0 0 0 0 0 0 +5.928 -4.14 -1.761 0 0 0 0 0 0 0 +5.933 -4.116 -1.759 0 0 0 0 0 0 0 +5.951 -4.101 -1.76 0 0 0 0 0 0 0 +5.957 -4.078 -1.758 0 0 0 0 0 0 0 +5.967 -4.057 -1.757 0 0 0 0 0 0 0 +5.984 -4.041 -1.759 0 0 0 0 0 0 0 +5.994 -4.02 -1.758 0 0 0 0 0 0 0 +5.992 -3.992 -1.753 0 0 0 0 0 0 0 +6.014 -3.993 -1.758 0 0 0 0 0 0 0 +6.017 -3.968 -1.755 0 0 0 0 0 0 0 +6.025 -3.946 -1.754 0 0 0 0 0 0 0 +6.042 -3.93 -1.755 0 0 0 0 0 0 0 +6.051 -3.909 -1.754 0 0 0 0 0 0 0 +6.053 -3.884 -1.751 0 0 0 0 0 0 0 +6.077 -3.872 -1.755 0 0 0 0 0 0 0 +6.081 -3.861 -1.754 0 0 0 0 0 0 0 +6.087 -3.838 -1.752 0 0 0 0 0 0 0 +6.102 -3.821 -1.753 0 0 0 0 0 0 0 +6.113 -3.801 -1.753 0 0 0 0 0 0 0 +6.129 -3.785 -1.754 0 0 0 0 0 0 0 +6.133 -3.76 -1.752 0 0 0 0 0 0 0 +6.143 -3.74 -1.751 0 0 0 0 0 0 0 +6.147 -3.729 -1.751 0 0 0 0 0 0 0 +6.157 -3.709 -1.75 0 0 0 0 0 0 0 +6.166 -3.687 -1.749 0 0 0 0 0 0 0 +6.179 -3.669 -1.75 0 0 0 0 0 0 0 +6.189 -3.649 -1.749 0 0 0 0 0 0 0 +6.194 -3.625 -1.747 0 0 0 0 0 0 0 +6.207 -3.607 -1.748 0 0 0 0 0 0 0 +6.214 -3.598 -1.748 0 0 0 0 0 0 0 +6.227 -3.579 -1.749 0 0 0 0 0 0 0 +6.238 -3.56 -1.749 0 0 0 0 0 0 0 +6.244 -3.537 -1.747 0 0 0 0 0 0 0 +6.255 -3.518 -1.747 0 0 0 0 0 0 0 +6.27 -3.5 -1.748 0 0 0 0 0 0 0 +6.276 -3.477 -1.747 0 0 0 0 0 0 0 +6.274 -3.464 -1.745 0 0 0 0 0 0 0 +6.292 -3.448 -1.747 0 0 0 0 0 0 0 +6.296 -3.424 -1.745 0 0 0 0 0 0 0 +6.313 -3.408 -1.747 0 0 0 0 0 0 0 +6.322 -3.387 -1.746 0 0 0 0 0 0 0 +6.326 -3.364 -1.744 0 0 0 0 0 0 0 +6.342 -3.347 -1.746 0 0 0 0 0 0 0 +6.352 -3.339 -1.747 0 0 0 0 0 0 0 +6.358 -3.317 -1.746 0 0 0 0 0 0 0 +6.366 -3.296 -1.745 0 0 0 0 0 0 0 +6.383 -3.279 -1.747 0 0 0 0 0 0 0 +6.387 -3.256 -1.745 0 0 0 0 0 0 0 +6.406 -3.24 -1.748 0 0 0 0 0 0 0 +6.411 -3.217 -1.746 0 0 0 0 0 0 0 +6.421 -3.21 -1.748 0 0 0 0 0 0 0 +6.431 -3.19 -1.748 0 0 0 0 0 0 0 +6.43 -3.164 -1.745 0 0 0 0 0 0 0 +6.44 -3.144 -1.745 0 0 0 0 0 0 0 +6.462 -3.13 -1.748 0 0 0 0 0 0 0 +6.465 -3.106 -1.746 0 0 0 0 0 0 0 +6.482 -3.089 -1.748 0 0 0 0 0 0 0 +6.485 -3.078 -1.748 0 0 0 0 0 0 0 +6.498 -3.059 -1.749 0 0 0 0 0 0 0 +6.513 -3.041 -1.75 0 0 0 0 0 0 0 +6.523 -3.021 -1.75 0 0 0 0 0 0 0 +6.528 -2.999 -1.749 0 0 0 0 0 0 0 +6.545 -2.982 -1.751 0 0 0 0 0 0 0 +6.547 -2.958 -1.749 0 0 0 0 0 0 0 +6.554 -2.948 -1.75 0 0 0 0 0 0 0 +6.565 -2.928 -1.75 0 0 0 0 0 0 0 +6.576 -2.909 -1.751 0 0 0 0 0 0 0 +6.586 -2.889 -1.751 0 0 0 0 0 0 0 +6.592 -2.866 -1.75 0 0 0 0 0 0 0 +6.606 -2.848 -1.752 0 0 0 0 0 0 0 +6.615 -2.827 -1.752 0 0 0 0 0 0 0 +6.623 -2.818 -1.753 0 0 0 0 0 0 0 +6.625 -2.795 -1.751 0 0 0 0 0 0 0 +6.641 -2.777 -1.753 0 0 0 0 0 0 0 +6.651 -2.757 -1.753 0 0 0 0 0 0 0 +6.656 -2.734 -1.752 0 0 0 0 0 0 0 +6.667 -2.714 -1.753 0 0 0 0 0 0 0 +6.686 -2.698 -1.756 0 0 0 0 0 0 0 +6.677 -2.682 -1.752 0 0 0 0 0 0 0 +6.691 -2.663 -1.754 0 0 0 0 0 0 0 +6.701 -2.643 -1.754 0 0 0 0 0 0 0 +6.708 -2.621 -1.754 0 0 0 0 0 0 0 +6.714 -2.599 -1.753 0 0 0 0 0 0 0 +6.73 -2.581 -1.755 0 0 0 0 0 0 0 +6.727 -2.556 -1.752 0 0 0 0 0 0 0 +6.736 -2.547 -1.754 0 0 0 0 0 0 0 +6.744 -2.526 -1.754 0 0 0 0 0 0 0 +6.763 -2.509 -1.757 0 0 0 0 0 0 0 +6.776 -2.49 -1.758 0 0 0 0 0 0 0 +6.786 -2.469 -1.759 0 0 0 0 0 0 0 +6.801 -2.45 -1.761 0 0 0 0 0 0 0 +6.829 -2.436 -1.766 0 0 0 0 0 0 0 +6.832 -2.425 -1.766 0 0 0 0 0 0 0 +6.838 -2.403 -1.766 0 0 0 0 0 0 0 +6.835 -2.378 -1.763 0 0 0 0 0 0 0 +6.849 -2.359 -1.765 0 0 0 0 0 0 0 +6.861 -2.339 -1.766 0 0 0 0 0 0 0 +6.866 -2.316 -1.765 0 0 0 0 0 0 0 +6.873 -2.295 -1.765 0 0 0 0 0 0 0 +6.868 -2.281 -1.763 0 0 0 0 0 0 0 +6.867 -2.257 -1.761 0 0 0 0 0 0 0 +6.886 -2.239 -1.764 0 0 0 0 0 0 0 +6.893 -2.217 -1.764 0 0 0 0 0 0 0 +6.894 -2.194 -1.762 0 0 0 0 0 0 0 +6.882 -2.166 -1.757 0 0 0 0 0 0 0 +6.889 -2.145 -1.757 0 0 0 0 0 0 0 +6.883 -2.131 -1.755 0 0 0 0 0 0 0 +6.888 -2.109 -1.754 0 0 0 0 0 0 0 +6.884 -2.084 -1.751 0 0 0 0 0 0 0 +6.896 -2.064 -1.753 0 0 0 0 0 0 0 +6.889 -2.038 -1.749 0 0 0 0 0 0 0 +6.895 -2.017 -1.749 0 0 0 0 0 0 0 +6.9 -1.994 -1.749 0 0 0 0 0 0 0 +6.905 -1.984 -1.749 0 0 0 0 0 0 0 +6.913 -1.963 -1.75 0 0 0 0 0 0 0 +6.91 -1.939 -1.747 0 0 0 0 0 0 0 +6.914 -1.916 -1.747 0 0 0 0 0 0 0 +6.922 -1.895 -1.747 0 0 0 0 0 0 0 +6.913 -1.869 -1.743 0 0 0 0 0 0 0 +6.911 -1.845 -1.741 0 0 0 0 0 0 0 +6.933 -1.84 -1.746 0 0 0 0 0 0 0 +6.912 -1.811 -1.739 0 0 0 0 0 0 0 +6.925 -1.791 -1.741 0 0 0 0 0 0 0 +6.929 -1.769 -1.741 0 0 0 0 0 0 0 +6.922 -1.744 -1.737 0 0 0 0 0 0 0 +6.938 -1.725 -1.74 0 0 0 0 0 0 0 +6.946 -1.704 -1.741 0 0 0 0 0 0 0 +6.931 -1.688 -1.736 0 0 0 0 0 0 0 +6.952 -1.67 -1.74 0 0 0 0 0 0 0 +6.947 -1.646 -1.738 0 0 0 0 0 0 0 +6.947 -1.623 -1.736 0 0 0 0 0 0 0 +6.956 -1.602 -1.737 0 0 0 0 0 0 0 +6.963 -1.581 -1.738 0 0 0 0 0 0 0 +6.956 -1.556 -1.735 0 0 0 0 0 0 0 +6.976 -1.549 -1.739 0 0 0 0 0 0 0 +6.982 -1.528 -1.74 0 0 0 0 0 0 0 +6.976 -1.503 -1.737 0 0 0 0 0 0 0 +6.988 -1.483 -1.739 0 0 0 0 0 0 0 +6.996 -1.462 -1.74 0 0 0 0 0 0 0 +6.988 -1.437 -1.736 0 0 0 0 0 0 0 +7 -1.417 -1.738 0 0 0 0 0 0 0 +7.002 -1.394 -1.738 0 0 0 0 0 0 0 +6.993 -1.381 -1.735 0 0 0 0 0 0 0 +7.001 -1.36 -1.736 0 0 0 0 0 0 0 +7.009 -1.338 -1.737 0 0 0 0 0 0 0 +7.017 -1.317 -1.738 0 0 0 0 0 0 0 +7.021 -1.295 -1.738 0 0 0 0 0 0 0 +7.014 -1.271 -1.735 0 0 0 0 0 0 0 +7.022 -1.25 -1.736 0 0 0 0 0 0 0 +7.026 -1.239 -1.736 0 0 0 0 0 0 0 +7.024 -1.216 -1.735 0 0 0 0 0 0 0 +7.018 -1.192 -1.732 0 0 0 0 0 0 0 +7.018 -1.169 -1.731 0 0 0 0 0 0 0 +7.02 -1.147 -1.731 0 0 0 0 0 0 0 +7.04 -1.128 -1.735 0 0 0 0 0 0 0 +7.04 -1.116 -1.735 0 0 0 0 0 0 0 +7.04 -1.094 -1.734 0 0 0 0 0 0 0 +7.034 -1.07 -1.731 0 0 0 0 0 0 0 +7.027 -1.046 -1.729 0 0 0 0 0 0 0 +7.033 -1.025 -1.729 0 0 0 0 0 0 0 +7.026 -1.001 -1.727 0 0 0 0 0 0 0 +7.031 -0.979 -1.727 0 0 0 0 0 0 0 +7.046 -0.959 -1.73 0 0 0 0 0 0 0 +7.032 -0.946 -1.726 0 0 0 0 0 0 0 +7.033 -0.923 -1.726 0 0 0 0 0 0 0 +7.038 -0.901 -1.726 0 0 0 0 0 0 0 +7.043 -0.88 -1.727 0 0 0 0 0 0 0 +7.039 -0.857 -1.725 0 0 0 0 0 0 0 +7.038 -0.834 -1.724 0 0 0 0 0 0 0 +7.041 -0.812 -1.724 0 0 0 0 0 0 0 +7.054 -0.802 -1.727 0 0 0 0 0 0 0 +7.043 -0.779 -1.724 0 0 0 0 0 0 0 +7.061 -0.758 -1.728 0 0 0 0 0 0 0 +7.049 -0.735 -1.724 0 0 0 0 0 0 0 +7.059 -0.713 -1.726 0 0 0 0 0 0 0 +7.052 -0.69 -1.724 0 0 0 0 0 0 0 +7.052 -0.668 -1.723 0 0 0 0 0 0 0 +7.059 -0.657 -1.725 0 0 0 0 0 0 0 +7.055 -0.634 -1.723 0 0 0 0 0 0 0 +7.061 -0.613 -1.724 0 0 0 0 0 0 0 +7.076 -0.592 -1.728 0 0 0 0 0 0 0 +7.069 -0.569 -1.725 0 0 0 0 0 0 0 +7.078 -0.547 -1.727 0 0 0 0 0 0 0 +7.066 -0.524 -1.724 0 0 0 0 0 0 0 +7.069 -0.513 -1.724 0 0 0 0 0 0 0 +7.072 -0.491 -1.725 0 0 0 0 0 0 0 +7.062 -0.468 -1.721 0 0 0 0 0 0 0 +7.064 -0.445 -1.721 0 0 0 0 0 0 0 +7.067 -0.423 -1.722 0 0 0 0 0 0 0 +7.068 -0.401 -1.722 0 0 0 0 0 0 0 +7.072 -0.379 -1.722 0 0 0 0 0 0 0 +7.068 -0.368 -1.721 0 0 0 0 0 0 0 +7.069 -0.346 -1.721 0 0 0 0 0 0 0 +7.072 -0.323 -1.722 0 0 0 0 0 0 0 +7.064 -0.301 -1.719 0 0 0 0 0 0 0 +7.08 -0.279 -1.724 0 0 0 0 0 0 0 +7.091 -0.257 -1.726 0 0 0 0 0 0 0 +7.089 -0.235 -1.726 0 0 0 0 0 0 0 +7.078 -0.224 -1.722 0 0 0 0 0 0 0 +7.087 -0.202 -1.725 0 0 0 0 0 0 0 +7.087 -0.179 -1.725 0 0 0 0 0 0 0 +7.105 -0.157 -1.729 0 0 0 0 0 0 0 +7.094 -0.135 -1.726 0 0 0 0 0 0 0 +7.087 -0.112 -1.724 0 0 0 0 0 0 0 +7.093 -0.09 -1.726 0 0 0 0 0 0 0 +7.091 -0.079 -1.725 0 0 0 0 0 0 0 +7.087 -0.057 -1.724 0 0 0 0 0 0 0 +7.087 -0.035 -1.724 0 0 0 0 0 0 0 +7.08 -0.012 -1.722 0 0 0 0 0 0 0 +6.821 0.008 -1.73 0 0 0 0 0 0 0 +6.823 0.03 -1.731 0 0 0 0 0 0 0 +6.823 0.04 -1.731 0 0 0 0 0 0 0 +6.827 0.062 -1.732 0 0 0 0 0 0 0 +6.819 0.083 -1.73 0 0 0 0 0 0 0 +6.813 0.105 -1.728 0 0 0 0 0 0 0 +6.822 0.126 -1.731 0 0 0 0 0 0 0 +6.819 0.148 -1.73 0 0 0 0 0 0 0 +6.819 0.169 -1.73 0 0 0 0 0 0 0 +6.826 0.18 -1.732 0 0 0 0 0 0 0 +6.828 0.201 -1.733 0 0 0 0 0 0 0 +6.825 0.223 -1.732 0 0 0 0 0 0 0 +6.803 0.243 -1.727 0 0 0 0 0 0 0 +6.81 0.265 -1.729 0 0 0 0 0 0 0 +6.807 0.286 -1.728 0 0 0 0 0 0 0 +6.812 0.308 -1.73 0 0 0 0 0 0 0 +6.814 0.319 -1.73 0 0 0 0 0 0 0 +6.805 0.34 -1.728 0 0 0 0 0 0 0 +6.804 0.361 -1.728 0 0 0 0 0 0 0 +6.797 0.382 -1.727 0 0 0 0 0 0 0 +6.796 0.404 -1.727 0 0 0 0 0 0 0 +6.794 0.425 -1.727 0 0 0 0 0 0 0 +6.797 0.447 -1.728 0 0 0 0 0 0 0 +6.792 0.457 -1.727 0 0 0 0 0 0 0 +6.783 0.478 -1.725 0 0 0 0 0 0 0 +6.791 0.5 -1.727 0 0 0 0 0 0 0 +6.776 0.52 -1.723 0 0 0 0 0 0 0 +6.78 0.542 -1.725 0 0 0 0 0 0 0 +6.782 0.563 -1.726 0 0 0 0 0 0 0 +6.782 0.585 -1.727 0 0 0 0 0 0 0 +6.776 0.595 -1.725 0 0 0 0 0 0 0 +6.772 0.616 -1.725 0 0 0 0 0 0 0 +6.76 0.636 -1.722 0 0 0 0 0 0 0 +6.77 0.659 -1.725 0 0 0 0 0 0 0 +6.764 0.68 -1.724 0 0 0 0 0 0 0 +6.76 0.701 -1.723 0 0 0 0 0 0 0 +6.74 0.72 -1.719 0 0 0 0 0 0 0 +6.766 0.734 -1.726 0 0 0 0 0 0 0 +6.758 0.754 -1.725 0 0 0 0 0 0 0 +6.738 0.773 -1.72 0 0 0 0 0 0 0 +6.753 0.797 -1.725 0 0 0 0 0 0 0 +6.758 0.819 -1.727 0 0 0 0 0 0 0 +6.738 0.838 -1.722 0 0 0 0 0 0 0 +6.757 0.862 -1.728 0 0 0 0 0 0 0 +6.736 0.87 -1.722 0 0 0 0 0 0 0 +6.735 0.891 -1.723 0 0 0 0 0 0 0 +6.729 0.912 -1.722 0 0 0 0 0 0 0 +6.709 0.931 -1.717 0 0 0 0 0 0 0 +6.711 0.953 -1.719 0 0 0 0 0 0 0 +6.712 0.974 -1.72 0 0 0 0 0 0 0 +6.707 0.995 -1.719 0 0 0 0 0 0 0 +6.71 1.017 -1.721 0 0 0 0 0 0 0 +6.697 1.026 -1.718 0 0 0 0 0 0 0 +6.697 1.047 -1.719 0 0 0 0 0 0 0 +6.698 1.069 -1.72 0 0 0 0 0 0 0 +6.687 1.089 -1.718 0 0 0 0 0 0 0 +6.678 1.109 -1.716 0 0 0 0 0 0 0 +6.685 1.132 -1.719 0 0 0 0 0 0 0 +6.68 1.152 -1.719 0 0 0 0 0 0 0 +6.674 1.162 -1.718 0 0 0 0 0 0 0 +6.673 1.184 -1.718 0 0 0 0 0 0 0 +6.671 1.205 -1.719 0 0 0 0 0 0 0 +6.652 1.223 -1.715 0 0 0 0 0 0 0 +6.671 1.248 -1.721 0 0 0 0 0 0 0 +6.668 1.269 -1.721 0 0 0 0 0 0 0 +6.64 1.286 -1.715 0 0 0 0 0 0 0 +6.655 1.299 -1.719 0 0 0 0 0 0 0 +6.655 1.321 -1.72 0 0 0 0 0 0 0 +6.641 1.34 -1.718 0 0 0 0 0 0 0 +6.652 1.364 -1.722 0 0 0 0 0 0 0 +6.636 1.383 -1.719 0 0 0 0 0 0 0 +6.636 1.404 -1.72 0 0 0 0 0 0 0 +6.627 1.424 -1.719 0 0 0 0 0 0 0 +6.634 1.437 -1.721 0 0 0 0 0 0 0 +6.624 1.456 -1.72 0 0 0 0 0 0 0 +6.627 1.479 -1.722 0 0 0 0 0 0 0 +6.615 1.498 -1.72 0 0 0 0 0 0 0 +6.614 1.519 -1.721 0 0 0 0 0 0 0 +6.596 1.537 -1.717 0 0 0 0 0 0 0 +6.608 1.562 -1.722 0 0 0 0 0 0 0 +6.606 1.572 -1.722 0 0 0 0 0 0 0 +6.591 1.591 -1.719 0 0 0 0 0 0 0 +6.605 1.616 -1.725 0 0 0 0 0 0 0 +6.591 1.634 -1.722 0 0 0 0 0 0 0 +6.576 1.653 -1.719 0 0 0 0 0 0 0 +6.575 1.674 -1.72 0 0 0 0 0 0 0 +6.575 1.697 -1.722 0 0 0 0 0 0 0 +6.565 1.705 -1.72 0 0 0 0 0 0 0 +6.576 1.73 -1.725 0 0 0 0 0 0 0 +6.558 1.747 -1.721 0 0 0 0 0 0 0 +6.545 1.766 -1.719 0 0 0 0 0 0 0 +6.548 1.789 -1.721 0 0 0 0 0 0 0 +6.541 1.809 -1.721 0 0 0 0 0 0 0 +6.537 1.83 -1.721 0 0 0 0 0 0 0 +6.542 1.842 -1.723 0 0 0 0 0 0 0 +6.525 1.86 -1.72 0 0 0 0 0 0 0 +6.526 1.882 -1.722 0 0 0 0 0 0 0 +6.526 1.904 -1.724 0 0 0 0 0 0 0 +6.52 1.925 -1.724 0 0 0 0 0 0 0 +6.506 1.943 -1.722 0 0 0 0 0 0 0 +6.507 1.966 -1.724 0 0 0 0 0 0 0 +6.503 1.975 -1.723 0 0 0 0 0 0 0 +6.489 1.994 -1.721 0 0 0 0 0 0 0 +6.486 2.015 -1.722 0 0 0 0 0 0 0 +6.487 2.038 -1.725 0 0 0 0 0 0 0 +6.483 2.059 -1.725 0 0 0 0 0 0 0 +6.465 2.076 -1.722 0 0 0 0 0 0 0 +6.464 2.098 -1.723 0 0 0 0 0 0 0 +6.459 2.107 -1.723 0 0 0 0 0 0 0 +6.465 2.132 -1.727 0 0 0 0 0 0 0 +6.442 2.147 -1.722 0 0 0 0 0 0 0 +6.45 2.172 -1.726 0 0 0 0 0 0 0 +6.439 2.191 -1.725 0 0 0 0 0 0 0 +6.421 2.207 -1.722 0 0 0 0 0 0 0 +6.433 2.234 -1.727 0 0 0 0 0 0 0 +6.42 2.241 -1.725 0 0 0 0 0 0 0 +6.417 2.262 -1.726 0 0 0 0 0 0 0 +6.415 2.284 -1.727 0 0 0 0 0 0 0 +6.402 2.302 -1.726 0 0 0 0 0 0 0 +6.39 2.32 -1.724 0 0 0 0 0 0 0 +6.397 2.346 -1.728 0 0 0 0 0 0 0 +6.379 2.362 -1.725 0 0 0 0 0 0 0 +6.386 2.376 -1.728 0 0 0 0 0 0 0 +6.375 2.395 -1.727 0 0 0 0 0 0 0 +6.358 2.411 -1.725 0 0 0 0 0 0 0 +6.343 2.428 -1.722 0 0 0 0 0 0 0 +6.353 2.455 -1.728 0 0 0 0 0 0 0 +6.339 2.472 -1.726 0 0 0 0 0 0 0 +6.322 2.489 -1.723 0 0 0 0 0 0 0 +6.343 2.509 -1.73 0 0 0 0 0 0 0 +6.324 2.524 -1.727 0 0 0 0 0 0 0 +6.3 2.538 -1.722 0 0 0 0 0 0 0 +6.317 2.568 -1.73 0 0 0 0 0 0 0 +6.304 2.585 -1.728 0 0 0 0 0 0 0 +6.301 2.607 -1.73 0 0 0 0 0 0 0 +6.295 2.628 -1.73 0 0 0 0 0 0 0 +6.277 2.644 -1.728 0 0 0 0 0 0 0 +6.282 2.657 -1.73 0 0 0 0 0 0 0 +6.274 2.677 -1.73 0 0 0 0 0 0 0 +6.251 2.691 -1.726 0 0 0 0 0 0 0 +6.262 2.719 -1.732 0 0 0 0 0 0 0 +6.243 2.734 -1.729 0 0 0 0 0 0 0 +6.245 2.758 -1.732 0 0 0 0 0 0 0 +6.218 2.758 -1.725 0 0 0 0 0 0 0 +6.239 2.791 -1.734 0 0 0 0 0 0 0 +6.214 2.803 -1.729 0 0 0 0 0 0 0 +6.202 2.821 -1.728 0 0 0 0 0 0 0 +6.205 2.846 -1.732 0 0 0 0 0 0 0 +6.195 2.865 -1.731 0 0 0 0 0 0 0 +6.184 2.883 -1.731 0 0 0 0 0 0 0 +6.19 2.898 -1.734 0 0 0 0 0 0 0 +6.147 2.902 -1.724 0 0 0 0 0 0 0 +6.166 2.934 -1.732 0 0 0 0 0 0 0 +6.148 2.95 -1.73 0 0 0 0 0 0 0 +6.141 2.97 -1.73 0 0 0 0 0 0 0 +6.133 2.99 -1.731 0 0 0 0 0 0 0 +6.125 3.01 -1.731 0 0 0 0 0 0 0 +6.103 3.011 -1.726 0 0 0 0 0 0 0 +6.101 3.034 -1.728 0 0 0 0 0 0 0 +6.089 3.052 -1.728 0 0 0 0 0 0 0 +6.102 3.082 -1.734 0 0 0 0 0 0 0 +6.056 3.083 -1.723 0 0 0 0 0 0 0 +6.064 3.111 -1.729 0 0 0 0 0 0 0 +6.047 3.126 -1.727 0 0 0 0 0 0 0 +6.046 3.15 -1.729 0 0 0 0 0 0 0 +6.036 3.157 -1.728 0 0 0 0 0 0 0 +6.026 3.176 -1.728 0 0 0 0 0 0 0 +6.026 3.2 -1.731 0 0 0 0 0 0 0 +6.011 3.216 -1.729 0 0 0 0 0 0 0 +5.996 3.232 -1.728 0 0 0 0 0 0 0 +5.997 3.258 -1.731 0 0 0 0 0 0 0 +5.985 3.275 -1.731 0 0 0 0 0 0 0 +5.973 3.281 -1.729 0 0 0 0 0 0 0 +5.961 3.299 -1.728 0 0 0 0 0 0 0 +5.958 3.321 -1.73 0 0 0 0 0 0 0 +5.949 3.341 -1.731 0 0 0 0 0 0 0 +5.933 3.357 -1.729 0 0 0 0 0 0 0 +5.92 3.374 -1.728 0 0 0 0 0 0 0 +5.928 3.391 -1.732 0 0 0 0 0 0 0 +5.909 3.404 -1.73 0 0 0 0 0 0 0 +5.899 3.424 -1.73 0 0 0 0 0 0 0 +5.885 3.44 -1.729 0 0 0 0 0 0 0 +5.883 3.464 -1.732 0 0 0 0 0 0 0 +5.862 3.476 -1.729 0 0 0 0 0 0 0 +5.863 3.502 -1.732 0 0 0 0 0 0 0 +5.839 3.5 -1.727 0 0 0 0 0 0 0 +5.833 3.521 -1.728 0 0 0 0 0 0 0 +5.817 3.537 -1.727 0 0 0 0 0 0 0 +5.809 3.557 -1.728 0 0 0 0 0 0 0 +5.806 3.58 -1.73 0 0 0 0 0 0 0 +5.791 3.596 -1.729 0 0 0 0 0 0 0 +5.772 3.609 -1.727 0 0 0 0 0 0 0 +5.778 3.626 -1.73 0 0 0 0 0 0 0 +5.761 3.641 -1.729 0 0 0 0 0 0 0 +5.748 3.658 -1.728 0 0 0 0 0 0 0 +5.742 3.679 -1.73 0 0 0 0 0 0 0 +5.72 3.691 -1.727 0 0 0 0 0 0 0 +5.717 3.714 -1.729 0 0 0 0 0 0 0 +5.705 3.732 -1.729 0 0 0 0 0 0 0 +5.686 3.732 -1.725 0 0 0 0 0 0 0 +5.716 3.778 -1.739 0 0 0 0 0 0 0 +5.687 3.784 -1.733 0 0 0 0 0 0 0 +5.665 3.795 -1.73 0 0 0 0 0 0 0 +5.626 3.795 -1.721 0 0 0 0 0 0 0 +5.627 3.821 -1.725 0 0 0 0 0 0 0 +5.61 3.835 -1.723 0 0 0 0 0 0 0 +5.599 3.841 -1.722 0 0 0 0 0 0 0 +5.59 3.861 -1.723 0 0 0 0 0 0 0 +5.588 3.885 -1.726 0 0 0 0 0 0 0 +5.587 3.91 -1.73 0 0 0 0 0 0 0 +5.587 3.937 -1.734 0 0 0 0 0 0 0 +5.565 3.948 -1.731 0 0 0 0 0 0 0 +5.554 3.966 -1.731 0 0 0 0 0 0 0 +5.545 3.986 -1.732 0 0 0 0 0 0 0 +5.532 3.99 -1.73 0 0 0 0 0 0 0 +5.523 4.01 -1.731 0 0 0 0 0 0 0 +5.516 4.032 -1.733 0 0 0 0 0 0 0 +5.508 4.052 -1.735 0 0 0 0 0 0 0 +5.491 4.066 -1.733 0 0 0 0 0 0 0 +5.477 4.082 -1.733 0 0 0 0 0 0 0 +5.464 4.099 -1.733 0 0 0 0 0 0 0 +5.464 4.113 -1.735 0 0 0 0 0 0 0 +5.429 4.113 -1.728 0 0 0 0 0 0 0 +5.433 4.143 -1.733 0 0 0 0 0 0 0 +5.411 4.153 -1.73 0 0 0 0 0 0 0 +5.402 4.174 -1.732 0 0 0 0 0 0 0 +5.391 4.192 -1.732 0 0 0 0 0 0 0 +5.377 4.194 -1.73 0 0 0 0 0 0 0 +5.372 4.219 -1.733 0 0 0 0 0 0 0 +5.368 4.243 -1.736 0 0 0 0 0 0 0 +5.353 4.258 -1.736 0 0 0 0 0 0 0 +5.332 4.269 -1.733 0 0 0 0 0 0 0 +5.334 4.298 -1.738 0 0 0 0 0 0 0 +5.301 4.299 -1.731 0 0 0 0 0 0 0 +5.297 4.31 -1.732 0 0 0 0 0 0 0 +5.294 4.335 -1.736 0 0 0 0 0 0 0 +5.276 4.348 -1.734 0 0 0 0 0 0 0 +5.268 4.369 -1.737 0 0 0 0 0 0 0 +5.252 4.383 -1.736 0 0 0 0 0 0 0 +5.229 4.392 -1.732 0 0 0 0 0 0 0 +5.227 4.419 -1.737 0 0 0 0 0 0 0 +5.217 4.424 -1.736 0 0 0 0 0 0 0 +5.204 4.442 -1.736 0 0 0 0 0 0 0 +5.186 4.454 -1.734 0 0 0 0 0 0 0 +5.163 4.463 -1.731 0 0 0 0 0 0 0 +5.141 4.472 -1.728 0 0 0 0 0 0 0 +5.129 4.49 -1.729 0 0 0 0 0 0 0 +5.11 4.501 -1.727 0 0 0 0 0 0 0 +5.087 4.51 -1.724 0 0 0 0 0 0 0 +5.078 4.516 -1.723 0 0 0 0 0 0 0 +5.055 4.525 -1.72 0 0 0 0 0 0 0 +5.04 4.539 -1.72 0 0 0 0 0 0 0 +5.034 4.563 -1.723 0 0 0 0 0 0 0 +5.017 4.576 -1.722 0 0 0 0 0 0 0 +5.004 4.593 -1.722 0 0 0 0 0 0 0 +4.979 4.599 -1.719 0 0 0 0 0 0 0 +4.983 4.618 -1.723 0 0 0 0 0 0 0 +4.968 4.632 -1.722 0 0 0 0 0 0 0 +4.95 4.645 -1.721 0 0 0 0 0 0 0 +4.943 4.667 -1.724 0 0 0 0 0 0 0 +4.933 4.688 -1.726 0 0 0 0 0 0 0 +4.928 4.713 -1.73 0 0 0 0 0 0 0 +4.914 4.728 -1.73 0 0 0 0 0 0 0 +4.91 4.74 -1.731 0 0 0 0 0 0 0 +4.909 4.769 -1.737 0 0 0 0 0 0 0 +4.897 4.787 -1.738 0 0 0 0 0 0 0 +4.885 4.805 -1.739 0 0 0 0 0 0 0 +4.871 4.822 -1.739 0 0 0 0 0 0 0 +4.867 4.848 -1.743 0 0 0 0 0 0 0 +4.847 4.859 -1.742 0 0 0 0 0 0 0 +4.853 4.881 -1.747 0 0 0 0 0 0 0 +4.818 4.875 -1.739 0 0 0 0 0 0 0 +4.826 4.915 -1.749 0 0 0 0 0 0 0 +4.816 4.936 -1.751 0 0 0 0 0 0 0 +4.801 4.951 -1.751 0 0 0 0 0 0 0 +4.783 4.963 -1.75 0 0 0 0 0 0 0 +4.772 4.984 -1.752 0 0 0 0 0 0 0 +4.758 4.984 -1.749 0 0 0 0 0 0 0 +4.754 5.012 -1.754 0 0 0 0 0 0 0 +4.733 5.021 -1.752 0 0 0 0 0 0 0 +4.724 5.043 -1.754 0 0 0 0 0 0 0 +4.699 5.048 -1.751 0 0 0 0 0 0 0 +4.688 5.068 -1.753 0 0 0 0 0 0 0 +4.657 5.066 -1.747 0 0 0 0 0 0 0 +4.664 5.09 -1.753 0 0 0 0 0 0 0 +4.64 5.096 -1.75 0 0 0 0 0 0 0 +4.623 5.11 -1.749 0 0 0 0 0 0 0 +4.603 5.12 -1.748 0 0 0 0 0 0 0 +4.597 5.146 -1.752 0 0 0 0 0 0 0 +4.572 5.15 -1.748 0 0 0 0 0 0 0 +4.561 5.17 -1.75 0 0 0 0 0 0 0 +4.536 5.158 -1.743 0 0 0 0 0 0 0 +4.532 5.186 -1.748 0 0 0 0 0 0 0 +4.504 5.187 -1.743 0 0 0 0 0 0 0 +4.498 5.213 -1.748 0 0 0 0 0 0 0 +4.479 5.224 -1.747 0 0 0 0 0 0 0 +4.46 5.235 -1.745 0 0 0 0 0 0 0 +4.436 5.24 -1.742 0 0 0 0 0 0 0 +4.441 5.263 -1.748 0 0 0 0 0 0 0 +4.42 5.271 -1.746 0 0 0 0 0 0 0 +4.396 5.276 -1.743 0 0 0 0 0 0 0 +4.382 5.293 -1.744 0 0 0 0 0 0 0 +4.374 5.317 -1.748 0 0 0 0 0 0 0 +4.347 5.319 -1.743 0 0 0 0 0 0 0 +4.342 5.348 -1.749 0 0 0 0 0 0 0 +4.323 5.341 -1.744 0 0 0 0 0 0 0 +4.316 5.366 -1.748 0 0 0 0 0 0 0 +4.297 5.377 -1.747 0 0 0 0 0 0 0 +4.277 5.387 -1.746 0 0 0 0 0 0 0 +4.256 5.395 -1.744 0 0 0 0 0 0 0 +4.239 5.408 -1.744 0 0 0 0 0 0 0 +4.219 5.418 -1.743 0 0 0 0 0 0 0 +4.218 5.434 -1.746 0 0 0 0 0 0 0 +4.197 5.443 -1.744 0 0 0 0 0 0 0 +4.184 5.46 -1.746 0 0 0 0 0 0 0 +4.164 5.471 -1.745 0 0 0 0 0 0 0 +4.149 5.487 -1.746 0 0 0 0 0 0 0 +4.123 5.487 -1.742 0 0 0 0 0 0 0 +4.112 5.51 -1.745 0 0 0 0 0 0 0 +4.091 5.516 -1.743 0 0 0 0 0 0 0 +4.082 5.523 -1.743 0 0 0 0 0 0 0 +4.068 5.54 -1.744 0 0 0 0 0 0 0 +4.051 5.553 -1.744 0 0 0 0 0 0 0 +4.026 5.556 -1.741 0 0 0 0 0 0 0 +4.01 5.57 -1.742 0 0 0 0 0 0 0 +3.986 5.573 -1.739 0 0 0 0 0 0 0 +3.966 5.583 -1.738 0 0 0 0 0 0 0 +3.965 5.6 -1.741 0 0 0 0 0 0 0 +3.945 5.609 -1.74 0 0 0 0 0 0 0 +3.913 5.601 -1.733 0 0 0 0 0 0 0 +3.91 5.634 -1.74 0 0 0 0 0 0 0 +3.888 5.64 -1.738 0 0 0 0 0 0 0 +3.868 5.649 -1.737 0 0 0 0 0 0 0 +3.863 5.661 -1.739 0 0 0 0 0 0 0 +3.841 5.667 -1.737 0 0 0 0 0 0 0 +3.822 5.677 -1.737 0 0 0 0 0 0 0 +3.812 5.701 -1.74 0 0 0 0 0 0 0 +3.789 5.705 -1.738 0 0 0 0 0 0 0 +3.779 5.729 -1.742 0 0 0 0 0 0 0 +3.755 5.732 -1.739 0 0 0 0 0 0 0 +3.744 5.734 -1.738 0 0 0 0 0 0 0 +3.73 5.752 -1.74 0 0 0 0 0 0 0 +3.711 5.762 -1.739 0 0 0 0 0 0 0 +3.695 5.777 -1.74 0 0 0 0 0 0 0 +3.674 5.786 -1.739 0 0 0 0 0 0 0 +3.654 5.794 -1.738 0 0 0 0 0 0 0 +3.627 5.791 -1.733 0 0 0 0 0 0 0 +3.617 5.815 -1.738 0 0 0 0 0 0 0 +3.608 5.821 -1.738 0 0 0 0 0 0 0 +3.59 5.834 -1.738 0 0 0 0 0 0 0 +3.576 5.852 -1.74 0 0 0 0 0 0 0 +3.541 5.835 -1.731 0 0 0 0 0 0 0 +3.536 5.869 -1.739 0 0 0 0 0 0 0 +3.512 5.87 -1.736 0 0 0 0 0 0 0 +3.49 5.876 -1.734 0 0 0 0 0 0 0 +3.486 5.89 -1.737 0 0 0 0 0 0 0 +3.464 5.894 -1.734 0 0 0 0 0 0 0 +3.444 5.903 -1.734 0 0 0 0 0 0 0 +3.428 5.919 -1.736 0 0 0 0 0 0 0 +3.412 5.933 -1.737 0 0 0 0 0 0 0 +3.393 5.944 -1.737 0 0 0 0 0 0 0 +3.379 5.963 -1.739 0 0 0 0 0 0 0 +3.36 5.974 -1.739 0 0 0 0 0 0 0 +3.352 5.981 -1.74 0 0 0 0 0 0 0 +3.331 5.988 -1.739 0 0 0 0 0 0 0 +3.307 5.988 -1.736 0 0 0 0 0 0 0 +3.299 6.019 -1.742 0 0 0 0 0 0 0 +3.281 6.031 -1.742 0 0 0 0 0 0 0 +3.268 6.053 -1.746 0 0 0 0 0 0 0 +3.259 6.058 -1.746 0 0 0 0 0 0 0 +3.234 6.056 -1.742 0 0 0 0 0 0 0 +3.217 6.072 -1.744 0 0 0 0 0 0 0 +3.198 6.082 -1.744 0 0 0 0 0 0 0 +3.183 6.098 -1.746 0 0 0 0 0 0 0 +3.173 6.127 -1.752 0 0 0 0 0 0 0 +3.143 6.117 -1.745 0 0 0 0 0 0 0 +3.128 6.135 -1.748 0 0 0 0 0 0 0 +3.117 6.137 -1.747 0 0 0 0 0 0 0 +3.095 6.141 -1.745 0 0 0 0 0 0 0 +3.078 6.156 -1.747 0 0 0 0 0 0 0 +3.066 6.18 -1.751 0 0 0 0 0 0 0 +3.041 6.179 -1.748 0 0 0 0 0 0 0 +3.025 6.195 -1.75 0 0 0 0 0 0 0 +3.003 6.198 -1.748 0 0 0 0 0 0 0 +2.994 6.206 -1.749 0 0 0 0 0 0 0 +2.976 6.217 -1.75 0 0 0 0 0 0 0 +2.96 6.233 -1.752 0 0 0 0 0 0 0 +2.937 6.236 -1.75 0 0 0 0 0 0 0 +2.911 6.231 -1.745 0 0 0 0 0 0 0 +2.896 6.25 -1.749 0 0 0 0 0 0 0 +2.877 6.261 -1.749 0 0 0 0 0 0 0 +2.866 6.262 -1.748 0 0 0 0 0 0 0 +2.842 6.262 -1.745 0 0 0 0 0 0 0 +2.826 6.28 -1.748 0 0 0 0 0 0 0 +2.807 6.291 -1.749 0 0 0 0 0 0 0 +2.785 6.294 -1.747 0 0 0 0 0 0 0 +2.765 6.301 -1.747 0 0 0 0 0 0 0 +2.738 6.294 -1.742 0 0 0 0 0 0 0 +2.738 6.321 -1.749 0 0 0 0 0 0 0 +2.709 6.308 -1.742 0 0 0 0 0 0 0 +2.693 6.326 -1.745 0 0 0 0 0 0 0 +2.669 6.325 -1.742 0 0 0 0 0 0 0 +2.657 6.353 -1.748 0 0 0 0 0 0 0 +2.618 6.315 -1.734 0 0 0 0 0 0 0 +2.599 6.325 -1.735 0 0 0 0 0 0 0 +2.589 6.329 -1.735 0 0 0 0 0 0 0 +2.572 6.345 -1.737 0 0 0 0 0 0 0 +2.552 6.351 -1.737 0 0 0 0 0 0 0 +2.531 6.357 -1.736 0 0 0 0 0 0 0 +2.509 6.359 -1.734 0 0 0 0 0 0 0 +2.492 6.376 -1.737 0 0 0 0 0 0 0 +2.477 6.397 -1.741 0 0 0 0 0 0 0 +2.456 6.403 -1.74 0 0 0 0 0 0 0 +2.45 6.416 -1.743 0 0 0 0 0 0 0 +2.426 6.412 -1.74 0 0 0 0 0 0 0 +2.404 6.416 -1.739 0 0 0 0 0 0 0 +2.388 6.435 -1.742 0 0 0 0 0 0 0 +2.368 6.444 -1.742 0 0 0 0 0 0 0 +2.353 6.464 -1.746 0 0 0 0 0 0 0 +2.321 6.441 -1.737 0 0 0 0 0 0 0 +2.313 6.45 -1.739 0 0 0 0 0 0 0 +2.292 6.453 -1.738 0 0 0 0 0 0 0 +2.27 6.457 -1.737 0 0 0 0 0 0 0 +2.251 6.468 -1.738 0 0 0 0 0 0 0 +2.231 6.476 -1.738 0 0 0 0 0 0 0 +2.207 6.471 -1.734 0 0 0 0 0 0 0 +2.186 6.476 -1.734 0 0 0 0 0 0 0 +2.174 6.475 -1.733 0 0 0 0 0 0 0 +2.151 6.475 -1.731 0 0 0 0 0 0 0 +2.141 6.511 -1.739 0 0 0 0 0 0 0 +2.112 6.494 -1.732 0 0 0 0 0 0 0 +2.094 6.508 -1.734 0 0 0 0 0 0 0 +2.065 6.487 -1.727 0 0 0 0 0 0 0 +2.033 6.456 -1.716 0 0 0 0 0 0 0 +2.019 6.447 -1.712 0 0 0 0 0 0 0 +2 6.455 -1.713 0 0 0 0 0 0 0 +1.968 6.424 -1.703 0 0 0 0 0 0 0 +1.946 6.423 -1.7 0 0 0 0 0 0 0 +1.926 6.429 -1.7 0 0 0 0 0 0 0 +1.901 6.42 -1.696 0 0 0 0 0 0 0 +1.882 6.43 -1.697 0 0 0 0 0 0 0 +1.874 6.442 -1.7 0 0 0 0 0 0 0 +1.857 6.457 -1.703 0 0 0 0 0 0 0 +1.828 6.433 -1.694 0 0 0 0 0 0 0 +1.81 6.446 -1.696 0 0 0 0 0 0 0 +1.787 6.441 -1.693 0 0 0 0 0 0 0 +1.765 6.439 -1.691 0 0 0 0 0 0 0 +1.745 6.448 -1.692 0 0 0 0 0 0 0 +1.722 6.441 -1.688 0 0 0 0 0 0 0 +1.711 6.443 -1.688 0 0 0 0 0 0 0 +1.693 6.456 -1.69 0 0 0 0 0 0 0 +1.667 6.439 -1.684 0 0 0 0 0 0 0 +1.647 6.446 -1.685 0 0 0 0 0 0 0 +1.63 6.462 -1.688 0 0 0 0 0 0 0 +1.609 6.466 -1.687 0 0 0 0 0 0 0 +1.585 6.456 -1.683 0 0 0 0 0 0 0 +1.579 6.475 -1.688 0 0 0 0 0 0 0 +1.556 6.467 -1.684 0 0 0 0 0 0 0 +1.535 6.472 -1.684 0 0 0 0 0 0 0 +1.516 6.482 -1.686 0 0 0 0 0 0 0 +0.73 3.151 -0.757 0 0 0 0 0 0 0 +1.495 6.485 -1.685 0 0 0 0 0 0 0 +0.724 3.173 -0.762 0 0 0 0 0 0 0 +0.715 3.153 -0.756 0 0 0 0 0 0 0 +0.707 3.165 -0.759 0 0 0 0 0 0 0 +0.703 3.197 -0.767 0 0 0 0 0 0 0 +0.692 3.194 -0.766 0 0 0 0 0 0 0 +0.679 3.182 -0.762 0 0 0 0 0 0 0 +0.675 3.213 -0.77 0 0 0 0 0 0 0 +0.658 3.181 -0.76 0 0 0 0 0 0 0 +0.639 3.108 -0.74 0 0 0 0 0 0 0 +0.629 3.11 -0.74 0 0 0 0 0 0 0 +0.619 3.114 -0.74 0 0 0 0 0 0 0 +0.609 3.114 -0.74 0 0 0 0 0 0 0 +0.599 3.114 -0.739 0 0 0 0 0 0 0 +0.589 3.116 -0.739 0 0 0 0 0 0 0 +0.58 3.12 -0.74 0 0 0 0 0 0 0 +0.57 3.12 -0.739 0 0 0 0 0 0 0 +0.566 3.124 -0.74 0 0 0 0 0 0 0 +0.555 3.12 -0.739 0 0 0 0 0 0 0 +0.545 3.122 -0.739 0 0 0 0 0 0 0 +0.535 3.126 -0.739 0 0 0 0 0 0 0 +0.526 3.129 -0.74 0 0 0 0 0 0 0 +0.516 3.131 -0.74 0 0 0 0 0 0 0 +0.506 3.129 -0.739 0 0 0 0 0 0 0 +0.5 3.124 -0.737 0 0 0 0 0 0 0 +0.49 3.127 -0.738 0 0 0 0 0 0 0 +0.481 3.131 -0.738 0 0 0 0 0 0 0 +0.471 3.132 -0.738 0 0 0 0 0 0 0 +0.461 3.135 -0.739 0 0 0 0 0 0 0 +0.452 3.137 -0.739 0 0 0 0 0 0 0 +0.442 3.138 -0.739 0 0 0 0 0 0 0 +0.437 3.137 -0.738 0 0 0 0 0 0 0 +0.427 3.138 -0.738 0 0 0 0 0 0 0 +0.417 3.142 -0.739 0 0 0 0 0 0 0 +0.407 3.145 -0.739 0 0 0 0 0 0 0 +0.397 3.144 -0.739 0 0 0 0 0 0 0 +0.387 3.142 -0.738 0 0 0 0 0 0 0 +0.377 3.143 -0.738 0 0 0 0 0 0 0 +0.372 3.145 -0.738 0 0 0 0 0 0 0 +0.363 3.148 -0.739 0 0 0 0 0 0 0 +0.353 3.151 -0.739 0 0 0 0 0 0 0 +0.343 3.151 -0.739 0 0 0 0 0 0 0 +0.333 3.148 -0.738 0 0 0 0 0 0 0 +0.323 3.153 -0.739 0 0 0 0 0 0 0 +0.313 3.152 -0.738 0 0 0 0 0 0 0 +0.303 3.155 -0.739 0 0 0 0 0 0 0 +0.299 3.157 -0.739 0 0 0 0 0 0 0 +0.289 3.158 -0.739 0 0 0 0 0 0 0 +0.279 3.157 -0.739 0 0 0 0 0 0 0 +0.269 3.16 -0.739 0 0 0 0 0 0 0 +0.259 3.161 -0.739 0 0 0 0 0 0 0 +0.249 3.161 -0.739 0 0 0 0 0 0 0 +0.239 3.164 -0.74 0 0 0 0 0 0 0 +0.234 3.163 -0.739 0 0 0 0 0 0 0 +0.224 3.163 -0.739 0 0 0 0 0 0 0 +0.214 3.164 -0.739 0 0 0 0 0 0 0 +0.204 3.165 -0.739 0 0 0 0 0 0 0 +0.194 3.167 -0.74 0 0 0 0 0 0 0 +0.184 3.17 -0.74 0 0 0 0 0 0 0 +0.174 3.166 -0.739 0 0 0 0 0 0 0 +0.169 3.165 -0.739 0 0 0 0 0 0 0 +0.16 3.169 -0.74 0 0 0 0 0 0 0 +0.15 3.17 -0.74 0 0 0 0 0 0 0 +0.14 3.168 -0.739 0 0 0 0 0 0 0 +0.13 3.17 -0.74 0 0 0 0 0 0 0 +0.12 3.171 -0.74 0 0 0 0 0 0 0 +0.11 3.169 -0.739 0 0 0 0 0 0 0 +0.105 3.171 -0.74 0 0 0 0 0 0 0 +0.095 3.172 -0.74 0 0 0 0 0 0 0 +0.085 3.172 -0.74 0 0 0 0 0 0 0 +0.076 3.255 -0.762 0 0 0 0 0 0 0 +0.066 3.286 -0.771 0 0 0 0 0 0 0 +0.056 3.292 -0.772 0 0 0 0 0 0 0 +0.046 3.287 -0.771 0 0 0 0 0 0 0 +0.04 3.281 -0.769 0 0 0 0 0 0 0 +0.03 3.285 -0.77 0 0 0 0 0 0 0 +0.02 3.306 -0.776 0 0 0 0 0 0 0 +0.009 3.299 -0.774 0 0 0 0 0 0 0 +-0.001 3.32 -0.78 0 0 0 0 0 0 0 +-0.051 6.834 -1.734 0 0 0 0 0 0 0 +-0.073 6.825 -1.731 0 0 0 0 0 0 0 +-0.094 6.815 -1.729 0 0 0 0 0 0 0 +-0.105 6.814 -1.729 0 0 0 0 0 0 0 +-0.127 6.851 -1.739 0 0 0 0 0 0 0 +-0.147 6.81 -1.728 0 0 0 0 0 0 0 +-0.169 6.819 -1.73 0 0 0 0 0 0 0 +-0.191 6.828 -1.733 0 0 0 0 0 0 0 +-0.212 6.827 -1.733 0 0 0 0 0 0 0 +-0.234 6.84 -1.737 0 0 0 0 0 0 0 +-0.245 6.832 -1.734 0 0 0 0 0 0 0 +-0.265 6.808 -1.728 0 0 0 0 0 0 0 +-0.288 6.848 -1.739 0 0 0 0 0 0 0 +-0.31 6.849 -1.74 0 0 0 0 0 0 0 +-0.332 6.861 -1.743 0 0 0 0 0 0 0 +-0.354 6.874 -1.747 0 0 0 0 0 0 0 +-0.376 6.867 -1.745 0 0 0 0 0 0 0 +-0.387 6.884 -1.75 0 0 0 0 0 0 0 +-0.41 6.89 -1.752 0 0 0 0 0 0 0 +-0.433 6.91 -1.758 0 0 0 0 0 0 0 +-0.454 6.905 -1.757 0 0 0 0 0 0 0 +-0.479 6.944 -1.768 0 0 0 0 0 0 0 +-0.501 6.95 -1.77 0 0 0 0 0 0 0 +-0.521 6.921 -1.763 0 0 0 0 0 0 0 +-0.563 7.038 -1.795 0 0 0 0 0 0 0 +-0.581 6.988 -1.782 0 0 0 0 0 0 0 +-0.598 6.93 -1.767 0 0 0 0 0 0 0 +-0.618 6.907 -1.761 0 0 0 0 0 0 0 +-0.637 6.878 -1.754 0 0 0 0 0 0 0 +-0.661 6.903 -1.761 0 0 0 0 0 0 0 +-0.682 6.886 -1.757 0 0 0 0 0 0 0 +-0.691 6.871 -1.753 0 0 0 0 0 0 0 +-0.713 6.877 -1.755 0 0 0 0 0 0 0 +-0.734 6.869 -1.754 0 0 0 0 0 0 0 +-0.757 6.876 -1.756 0 0 0 0 0 0 0 +-0.779 6.879 -1.758 0 0 0 0 0 0 0 +-0.799 6.862 -1.754 0 0 0 0 0 0 0 +-0.821 6.865 -1.755 0 0 0 0 0 0 0 +-0.832 6.863 -1.755 0 0 0 0 0 0 0 +-0.853 6.855 -1.754 0 0 0 0 0 0 0 +-0.875 6.854 -1.754 0 0 0 0 0 0 0 +-0.898 6.863 -1.758 0 0 0 0 0 0 0 +-0.919 6.86 -1.758 0 0 0 0 0 0 0 +-0.941 6.861 -1.759 0 0 0 0 0 0 0 +-0.963 6.86 -1.759 0 0 0 0 0 0 0 +-0.974 6.86 -1.76 0 0 0 0 0 0 0 +-0.995 6.85 -1.758 0 0 0 0 0 0 0 +-1.019 6.862 -1.762 0 0 0 0 0 0 0 +-1.037 6.841 -1.757 0 0 0 0 0 0 0 +-1.061 6.849 -1.76 0 0 0 0 0 0 0 +-1.084 6.858 -1.763 0 0 0 0 0 0 0 +-1.105 6.848 -1.762 0 0 0 0 0 0 0 +-1.114 6.835 -1.759 0 0 0 0 0 0 0 +-1.138 6.847 -1.763 0 0 0 0 0 0 0 +-1.157 6.832 -1.76 0 0 0 0 0 0 0 +-1.179 6.832 -1.761 0 0 0 0 0 0 0 +-1.202 6.838 -1.763 0 0 0 0 0 0 0 +-1.222 6.823 -1.76 0 0 0 0 0 0 0 +-1.244 6.822 -1.761 0 0 0 0 0 0 0 +-1.257 6.836 -1.765 0 0 0 0 0 0 0 +-1.277 6.82 -1.762 0 0 0 0 0 0 0 +-1.299 6.818 -1.763 0 0 0 0 0 0 0 +-1.321 6.822 -1.765 0 0 0 0 0 0 0 +-1.344 6.823 -1.766 0 0 0 0 0 0 0 +-1.362 6.804 -1.762 0 0 0 0 0 0 0 +-1.387 6.815 -1.766 0 0 0 0 0 0 0 +-1.406 6.797 -1.763 0 0 0 0 0 0 0 +-1.419 6.806 -1.766 0 0 0 0 0 0 0 +-1.441 6.807 -1.767 0 0 0 0 0 0 0 +-1.463 6.806 -1.769 0 0 0 0 0 0 0 +-1.48 6.781 -1.763 0 0 0 0 0 0 0 +-1.504 6.79 -1.766 0 0 0 0 0 0 0 +-1.525 6.781 -1.765 0 0 0 0 0 0 0 +-1.547 6.778 -1.766 0 0 0 0 0 0 0 +-1.559 6.783 -1.768 0 0 0 0 0 0 0 +-1.582 6.784 -1.77 0 0 0 0 0 0 0 +-1.598 6.758 -1.764 0 0 0 0 0 0 0 +-1.621 6.759 -1.765 0 0 0 0 0 0 0 +-1.643 6.757 -1.766 0 0 0 0 0 0 0 +-1.665 6.756 -1.767 0 0 0 0 0 0 0 +-1.686 6.749 -1.767 0 0 0 0 0 0 0 +-1.698 6.752 -1.769 0 0 0 0 0 0 0 +-1.719 6.746 -1.769 0 0 0 0 0 0 0 +-1.741 6.745 -1.77 0 0 0 0 0 0 0 +-1.762 6.737 -1.769 0 0 0 0 0 0 0 +-1.782 6.728 -1.768 0 0 0 0 0 0 0 +-1.805 6.728 -1.77 0 0 0 0 0 0 0 +-1.823 6.713 -1.767 0 0 0 0 0 0 0 +-1.832 6.705 -1.765 0 0 0 0 0 0 0 +-1.856 6.708 -1.768 0 0 0 0 0 0 0 +-1.873 6.689 -1.764 0 0 0 0 0 0 0 +-1.894 6.681 -1.764 0 0 0 0 0 0 0 +-1.913 6.67 -1.762 0 0 0 0 0 0 0 +-1.935 6.668 -1.763 0 0 0 0 0 0 0 +-1.972 6.717 -1.779 0 0 0 0 0 0 0 +-2.01 6.764 -1.794 0 0 0 0 0 0 0 +-2.006 6.713 -1.781 0 0 0 0 0 0 0 +-2.018 6.679 -1.773 0 0 0 0 0 0 0 +-2.04 6.675 -1.773 0 0 0 0 0 0 0 +-2.081 6.658 -1.772 0 0 0 0 0 0 0 +-2.102 6.653 -1.773 0 0 0 0 0 0 0 +-2.113 6.615 -1.764 0 0 0 0 0 0 0 +-2.126 6.619 -1.766 0 0 0 0 0 0 0 +-2.145 6.609 -1.765 0 0 0 0 0 0 0 +-2.164 6.597 -1.763 0 0 0 0 0 0 0 +-2.184 6.588 -1.763 0 0 0 0 0 0 0 +-2.209 6.594 -1.766 0 0 0 0 0 0 0 +-2.228 6.582 -1.765 0 0 0 0 0 0 0 +-2.249 6.576 -1.765 0 0 0 0 0 0 0 +-2.261 6.576 -1.766 0 0 0 0 0 0 0 +-2.28 6.564 -1.765 0 0 0 0 0 0 0 +-2.304 6.566 -1.767 0 0 0 0 0 0 0 +-2.326 6.564 -1.769 0 0 0 0 0 0 0 +-2.344 6.549 -1.767 0 0 0 0 0 0 0 +-2.366 6.546 -1.768 0 0 0 0 0 0 0 +-2.389 6.545 -1.77 0 0 0 0 0 0 0 +-2.402 6.547 -1.772 0 0 0 0 0 0 0 +-2.417 6.527 -1.768 0 0 0 0 0 0 0 +-2.439 6.523 -1.769 0 0 0 0 0 0 0 +-2.467 6.533 -1.774 0 0 0 0 0 0 0 +-2.486 6.523 -1.774 0 0 0 0 0 0 0 +-2.508 6.519 -1.775 0 0 0 0 0 0 0 +-2.527 6.506 -1.773 0 0 0 0 0 0 0 +-2.546 6.494 -1.772 0 0 0 0 0 0 0 +-2.56 6.501 -1.775 0 0 0 0 0 0 0 +-2.578 6.488 -1.774 0 0 0 0 0 0 0 +-2.597 6.476 -1.773 0 0 0 0 0 0 0 +-2.621 6.475 -1.775 0 0 0 0 0 0 0 +-2.634 6.449 -1.77 0 0 0 0 0 0 0 +-2.66 6.455 -1.774 0 0 0 0 0 0 0 +-2.68 6.446 -1.774 0 0 0 0 0 0 0 +-2.686 6.431 -1.771 0 0 0 0 0 0 0 +-2.705 6.421 -1.77 0 0 0 0 0 0 0 +-2.728 6.42 -1.772 0 0 0 0 0 0 0 +-2.747 6.408 -1.771 0 0 0 0 0 0 0 +-2.761 6.385 -1.767 0 0 0 0 0 0 0 +-2.785 6.385 -1.77 0 0 0 0 0 0 0 +-2.804 6.374 -1.769 0 0 0 0 0 0 0 +-2.816 6.374 -1.77 0 0 0 0 0 0 0 +-2.84 6.373 -1.773 0 0 0 0 0 0 0 +-2.86 6.365 -1.773 0 0 0 0 0 0 0 +-2.88 6.355 -1.773 0 0 0 0 0 0 0 +-2.898 6.343 -1.772 0 0 0 0 0 0 0 +-2.919 6.336 -1.772 0 0 0 0 0 0 0 +-2.939 6.326 -1.772 0 0 0 0 0 0 0 +-2.949 6.323 -1.773 0 0 0 0 0 0 0 +-2.972 6.321 -1.775 0 0 0 0 0 0 0 +-2.995 6.317 -1.776 0 0 0 0 0 0 0 +-3.012 6.302 -1.775 0 0 0 0 0 0 0 +-3.028 6.286 -1.773 0 0 0 0 0 0 0 +-3.053 6.287 -1.776 0 0 0 0 0 0 0 +-3.077 6.286 -1.778 0 0 0 0 0 0 0 +-3.088 6.257 -1.773 0 0 0 0 0 0 0 +-3.103 6.263 -1.776 0 0 0 0 0 0 0 +-3.127 6.263 -1.779 0 0 0 0 0 0 0 +-3.144 6.246 -1.777 0 0 0 0 0 0 0 +-3.166 6.242 -1.778 0 0 0 0 0 0 0 +-3.193 6.245 -1.783 0 0 0 0 0 0 0 +-3.207 6.225 -1.78 0 0 0 0 0 0 0 +-3.232 6.225 -1.783 0 0 0 0 0 0 0 +-3.242 6.222 -1.783 0 0 0 0 0 0 0 +-3.255 6.198 -1.779 0 0 0 0 0 0 0 +-3.284 6.206 -1.785 0 0 0 0 0 0 0 +-3.301 6.191 -1.783 0 0 0 0 0 0 0 +-3.327 6.192 -1.787 0 0 0 0 0 0 0 +-3.338 6.167 -1.782 0 0 0 0 0 0 0 +-3.349 6.141 -1.777 0 0 0 0 0 0 0 +-3.366 6.149 -1.782 0 0 0 0 0 0 0 +-3.392 6.15 -1.785 0 0 0 0 0 0 0 +-3.419 6.153 -1.789 0 0 0 0 0 0 0 +-3.44 6.146 -1.791 0 0 0 0 0 0 0 +-3.461 6.138 -1.792 0 0 0 0 0 0 0 +-3.484 6.134 -1.794 0 0 0 0 0 0 0 +-3.514 6.142 -1.799 0 0 0 0 0 0 0 +-3.529 6.144 -1.802 0 0 0 0 0 0 0 +-3.56 6.155 -1.809 0 0 0 0 0 0 0 +-3.583 6.149 -1.81 0 0 0 0 0 0 0 +-3.599 6.132 -1.809 0 0 0 0 0 0 0 +-3.628 6.138 -1.814 0 0 0 0 0 0 0 +-3.639 6.111 -1.809 0 0 0 0 0 0 0 +-3.649 6.085 -1.805 0 0 0 0 0 0 0 +-3.686 6.103 -1.814 0 0 0 0 0 0 0 +-3.717 6.132 -1.825 0 0 0 0 0 0 0 +-3.742 6.13 -1.828 0 0 0 0 0 0 0 +-3.741 6.086 -1.818 0 0 0 0 0 0 0 +-3.752 6.061 -1.814 0 0 0 0 0 0 0 +-3.767 6.042 -1.811 0 0 0 0 0 0 0 +-3.78 6.022 -1.809 0 0 0 0 0 0 0 +-3.798 6.009 -1.808 0 0 0 0 0 0 0 +-3.797 5.987 -1.803 0 0 0 0 0 0 0 +-3.816 5.975 -1.803 0 0 0 0 0 0 0 +-3.823 5.945 -1.797 0 0 0 0 0 0 0 +-3.836 5.923 -1.794 0 0 0 0 0 0 0 +-3.844 5.895 -1.789 0 0 0 0 0 0 0 +-3.863 5.884 -1.789 0 0 0 0 0 0 0 +-3.88 5.869 -1.788 0 0 0 0 0 0 0 +-3.898 5.857 -1.788 0 0 0 0 0 0 0 +-3.907 5.851 -1.788 0 0 0 0 0 0 0 +-3.919 5.829 -1.785 0 0 0 0 0 0 0 +-3.945 5.828 -1.789 0 0 0 0 0 0 0 +-3.96 5.81 -1.787 0 0 0 0 0 0 0 +-3.978 5.798 -1.787 0 0 0 0 0 0 0 +-3.988 5.773 -1.783 0 0 0 0 0 0 0 +-4.02 5.781 -1.79 0 0 0 0 0 0 0 +-4.028 5.773 -1.789 0 0 0 0 0 0 0 +-4.039 5.751 -1.786 0 0 0 0 0 0 0 +-4.054 5.733 -1.785 0 0 0 0 0 0 0 +-4.071 5.719 -1.784 0 0 0 0 0 0 0 +-4.088 5.704 -1.784 0 0 0 0 0 0 0 +-4.1 5.684 -1.781 0 0 0 0 0 0 0 +-4.124 5.679 -1.784 0 0 0 0 0 0 0 +-4.131 5.671 -1.783 0 0 0 0 0 0 0 +-4.157 5.668 -1.787 0 0 0 0 0 0 0 +-4.169 5.648 -1.784 0 0 0 0 0 0 0 +-4.19 5.639 -1.786 0 0 0 0 0 0 0 +-4.201 5.617 -1.783 0 0 0 0 0 0 0 +-4.219 5.603 -1.783 0 0 0 0 0 0 0 +-4.24 5.595 -1.784 0 0 0 0 0 0 0 +-4.247 5.587 -1.784 0 0 0 0 0 0 0 +-4.264 5.572 -1.783 0 0 0 0 0 0 0 +-4.288 5.567 -1.786 0 0 0 0 0 0 0 +-4.295 5.54 -1.782 0 0 0 0 0 0 0 +-4.319 5.534 -1.784 0 0 0 0 0 0 0 +-4.34 5.525 -1.786 0 0 0 0 0 0 0 +-4.353 5.507 -1.784 0 0 0 0 0 0 0 +-4.369 5.492 -1.784 0 0 0 0 0 0 0 +-4.378 5.485 -1.784 0 0 0 0 0 0 0 +-4.398 5.474 -1.785 0 0 0 0 0 0 0 +-4.414 5.459 -1.784 0 0 0 0 0 0 0 +-4.433 5.448 -1.785 0 0 0 0 0 0 0 +-4.45 5.434 -1.785 0 0 0 0 0 0 0 +-4.461 5.413 -1.783 0 0 0 0 0 0 0 +-4.492 5.415 -1.788 0 0 0 0 0 0 0 +-4.489 5.394 -1.784 0 0 0 0 0 0 0 +-4.513 5.389 -1.787 0 0 0 0 0 0 0 +-4.539 5.385 -1.791 0 0 0 0 0 0 0 +-4.548 5.362 -1.787 0 0 0 0 0 0 0 +-4.549 5.329 -1.781 0 0 0 0 0 0 0 +-4.58 5.331 -1.786 0 0 0 0 0 0 0 +-4.586 5.305 -1.782 0 0 0 0 0 0 0 +-4.616 5.322 -1.791 0 0 0 0 0 0 0 +-4.621 5.294 -1.786 0 0 0 0 0 0 0 +-4.649 5.293 -1.791 0 0 0 0 0 0 0 +-4.669 5.281 -1.792 0 0 0 0 0 0 0 +-4.683 5.264 -1.791 0 0 0 0 0 0 0 +-4.693 5.242 -1.788 0 0 0 0 0 0 0 +-4.716 5.234 -1.791 0 0 0 0 0 0 0 +-4.717 5.22 -1.788 0 0 0 0 0 0 0 +-4.738 5.209 -1.79 0 0 0 0 0 0 0 +-4.741 5.18 -1.785 0 0 0 0 0 0 0 +-4.773 5.182 -1.791 0 0 0 0 0 0 0 +-4.777 5.154 -1.786 0 0 0 0 0 0 0 +-4.797 5.143 -1.788 0 0 0 0 0 0 0 +-4.813 5.128 -1.788 0 0 0 0 0 0 0 +-4.81 5.108 -1.783 0 0 0 0 0 0 0 +-4.828 5.096 -1.784 0 0 0 0 0 0 0 +-4.863 5.1 -1.792 0 0 0 0 0 0 0 +-4.859 5.064 -1.784 0 0 0 0 0 0 0 +-4.892 5.067 -1.791 0 0 0 0 0 0 0 +-4.905 5.048 -1.789 0 0 0 0 0 0 0 +-4.925 5.037 -1.791 0 0 0 0 0 0 0 +-4.941 5.022 -1.791 0 0 0 0 0 0 0 +-4.946 5.011 -1.79 0 0 0 0 0 0 0 +-4.958 4.992 -1.788 0 0 0 0 0 0 0 +-4.972 4.975 -1.788 0 0 0 0 0 0 0 +-5.003 4.974 -1.794 0 0 0 0 0 0 0 +-5.009 4.949 -1.79 0 0 0 0 0 0 0 +-5.001 4.91 -1.781 0 0 0 0 0 0 0 +-5.037 4.914 -1.789 0 0 0 0 0 0 0 +-5.036 4.898 -1.786 0 0 0 0 0 0 0 +-5.055 4.885 -1.787 0 0 0 0 0 0 0 +-5.091 4.889 -1.795 0 0 0 0 0 0 0 +-5.098 4.865 -1.792 0 0 0 0 0 0 0 +-5.121 4.857 -1.795 0 0 0 0 0 0 0 +-5.149 4.853 -1.799 0 0 0 0 0 0 0 +-5.17 4.842 -1.802 0 0 0 0 0 0 0 +-5.172 4.829 -1.799 0 0 0 0 0 0 0 +-5.189 4.814 -1.8 0 0 0 0 0 0 0 +-5.217 4.809 -1.805 0 0 0 0 0 0 0 +-5.222 4.784 -1.801 0 0 0 0 0 0 0 +-5.263 4.79 -1.81 0 0 0 0 0 0 0 +-5.292 4.787 -1.816 0 0 0 0 0 0 0 +-5.303 4.766 -1.814 0 0 0 0 0 0 0 +-5.301 4.75 -1.811 0 0 0 0 0 0 0 +-5.299 4.718 -1.805 0 0 0 0 0 0 0 +-5.314 4.702 -1.805 0 0 0 0 0 0 0 +-5.329 4.685 -1.805 0 0 0 0 0 0 0 +-5.342 4.667 -1.804 0 0 0 0 0 0 0 +-5.378 4.669 -1.812 0 0 0 0 0 0 0 +-5.396 4.655 -1.813 0 0 0 0 0 0 0 +-5.386 4.631 -1.807 0 0 0 0 0 0 0 +-5.402 4.615 -1.807 0 0 0 0 0 0 0 +-5.415 4.597 -1.807 0 0 0 0 0 0 0 +-5.428 4.579 -1.806 0 0 0 0 0 0 0 +-5.443 4.563 -1.807 0 0 0 0 0 0 0 +-5.459 4.547 -1.807 0 0 0 0 0 0 0 +-5.463 4.521 -1.804 0 0 0 0 0 0 0 +-5.462 4.492 -1.798 0 0 0 0 0 0 0 +-5.472 4.486 -1.799 0 0 0 0 0 0 0 +-5.483 4.466 -1.798 0 0 0 0 0 0 0 +-5.481 4.436 -1.793 0 0 0 0 0 0 0 +-5.483 4.409 -1.788 0 0 0 0 0 0 0 +-5.502 4.396 -1.791 0 0 0 0 0 0 0 +-5.516 4.379 -1.791 0 0 0 0 0 0 0 +-5.538 4.368 -1.793 0 0 0 0 0 0 0 +-5.532 4.349 -1.789 0 0 0 0 0 0 0 +-5.546 4.332 -1.789 0 0 0 0 0 0 0 +-5.549 4.306 -1.785 0 0 0 0 0 0 0 +-5.573 4.297 -1.789 0 0 0 0 0 0 0 +-5.58 4.275 -1.787 0 0 0 0 0 0 0 +-5.597 4.26 -1.788 0 0 0 0 0 0 0 +-5.601 4.235 -1.785 0 0 0 0 0 0 0 +-5.614 4.231 -1.787 0 0 0 0 0 0 0 +-5.625 4.212 -1.786 0 0 0 0 0 0 0 +-5.659 4.209 -1.793 0 0 0 0 0 0 0 +-5.641 4.169 -1.783 0 0 0 0 0 0 0 +-5.638 4.14 -1.777 0 0 0 0 0 0 0 +-5.648 4.12 -1.776 0 0 0 0 0 0 0 +-5.678 4.114 -1.782 0 0 0 0 0 0 0 +-5.674 4.097 -1.778 0 0 0 0 0 0 0 +-5.706 4.093 -1.785 0 0 0 0 0 0 0 +-5.693 4.057 -1.776 0 0 0 0 0 0 0 +-5.711 4.043 -1.778 0 0 0 0 0 0 0 +-5.72 4.022 -1.777 0 0 0 0 0 0 0 +-5.744 4.012 -1.781 0 0 0 0 0 0 0 +-5.745 3.986 -1.777 0 0 0 0 0 0 0 +-5.753 3.965 -1.775 0 0 0 0 0 0 0 +-5.748 3.948 -1.772 0 0 0 0 0 0 0 +-5.775 3.94 -1.776 0 0 0 0 0 0 0 +-5.771 3.911 -1.771 0 0 0 0 0 0 0 +-5.796 3.902 -1.775 0 0 0 0 0 0 0 +-5.788 3.869 -1.769 0 0 0 0 0 0 0 +-5.824 3.867 -1.776 0 0 0 0 0 0 0 +-5.818 3.837 -1.771 0 0 0 0 0 0 0 +-5.821 3.826 -1.77 0 0 0 0 0 0 0 +-5.843 3.814 -1.773 0 0 0 0 0 0 0 +-5.838 3.785 -1.767 0 0 0 0 0 0 0 +-5.855 3.77 -1.769 0 0 0 0 0 0 0 +-5.864 3.749 -1.768 0 0 0 0 0 0 0 +-5.872 3.729 -1.767 0 0 0 0 0 0 0 +-5.882 3.709 -1.766 0 0 0 0 0 0 0 +-5.914 3.717 -1.775 0 0 0 0 0 0 0 +-5.987 3.736 -1.794 0 0 0 0 0 0 0 +-5.906 3.66 -1.765 0 0 0 0 0 0 0 +-5.913 3.639 -1.763 0 0 0 0 0 0 0 +-5.924 3.62 -1.763 0 0 0 0 0 0 0 +-5.937 3.602 -1.764 0 0 0 0 0 0 0 +-5.952 3.586 -1.765 0 0 0 0 0 0 0 +-5.954 3.574 -1.764 0 0 0 0 0 0 0 +-5.965 3.556 -1.764 0 0 0 0 0 0 0 +-5.968 3.532 -1.761 0 0 0 0 0 0 0 +-5.988 3.518 -1.764 0 0 0 0 0 0 0 +-6 3.5 -1.764 0 0 0 0 0 0 0 +-6.008 3.479 -1.763 0 0 0 0 0 0 0 +-6.02 3.461 -1.764 0 0 0 0 0 0 0 +-6.024 3.451 -1.763 0 0 0 0 0 0 0 +-6.038 3.434 -1.764 0 0 0 0 0 0 0 +-6.036 3.407 -1.76 0 0 0 0 0 0 0 +-6.051 3.391 -1.762 0 0 0 0 0 0 0 +-6.065 3.374 -1.763 0 0 0 0 0 0 0 +-6.071 3.352 -1.761 0 0 0 0 0 0 0 +-6.075 3.329 -1.759 0 0 0 0 0 0 0 +-6.087 3.324 -1.761 0 0 0 0 0 0 0 +-6.092 3.302 -1.76 0 0 0 0 0 0 0 +-6.111 3.287 -1.762 0 0 0 0 0 0 0 +-6.114 3.264 -1.76 0 0 0 0 0 0 0 +-6.124 3.245 -1.76 0 0 0 0 0 0 0 +-6.131 3.224 -1.759 0 0 0 0 0 0 0 +-6.143 3.206 -1.76 0 0 0 0 0 0 0 +-6.146 3.183 -1.758 0 0 0 0 0 0 0 +-6.162 3.178 -1.761 0 0 0 0 0 0 0 +-6.173 3.16 -1.761 0 0 0 0 0 0 0 +-6.18 3.139 -1.76 0 0 0 0 0 0 0 +-6.184 3.117 -1.759 0 0 0 0 0 0 0 +-6.192 3.096 -1.758 0 0 0 0 0 0 0 +-6.209 3.08 -1.76 0 0 0 0 0 0 0 +-6.217 3.06 -1.76 0 0 0 0 0 0 0 +-6.229 3.054 -1.762 0 0 0 0 0 0 0 +-6.233 3.032 -1.76 0 0 0 0 0 0 0 +-6.246 3.014 -1.761 0 0 0 0 0 0 0 +-6.259 2.996 -1.762 0 0 0 0 0 0 0 +-6.258 2.971 -1.759 0 0 0 0 0 0 0 +-6.274 2.955 -1.761 0 0 0 0 0 0 0 +-6.287 2.936 -1.762 0 0 0 0 0 0 0 +-6.281 2.922 -1.759 0 0 0 0 0 0 0 +-6.287 2.9 -1.758 0 0 0 0 0 0 0 +-6.304 2.885 -1.761 0 0 0 0 0 0 0 +-6.306 2.862 -1.759 0 0 0 0 0 0 0 +-6.314 2.841 -1.758 0 0 0 0 0 0 0 +-6.326 2.823 -1.759 0 0 0 0 0 0 0 +-6.321 2.797 -1.755 0 0 0 0 0 0 0 +-6.327 2.788 -1.755 0 0 0 0 0 0 0 +-6.327 2.764 -1.753 0 0 0 0 0 0 0 +-6.774 1.673 -1.773 0 0 0 0 0 0 0 +-6.758 1.647 -1.767 0 0 0 0 0 0 0 +-6.775 1.628 -1.77 0 0 0 0 0 0 0 +-6.752 1.601 -1.762 0 0 0 0 0 0 0 +-6.768 1.582 -1.765 0 0 0 0 0 0 0 +-6.765 1.57 -1.764 0 0 0 0 0 0 0 +-6.753 1.545 -1.759 0 0 0 0 0 0 0 +-6.786 1.53 -1.767 0 0 0 0 0 0 0 +-6.785 1.507 -1.765 0 0 0 0 0 0 0 +-6.78 1.484 -1.763 0 0 0 0 0 0 0 +-6.789 1.464 -1.764 0 0 0 0 0 0 0 +-6.778 1.439 -1.76 0 0 0 0 0 0 0 +-6.797 1.432 -1.764 0 0 0 0 0 0 0 +-6.798 1.41 -1.763 0 0 0 0 0 0 0 +-6.797 1.387 -1.762 0 0 0 0 0 0 0 +-6.795 1.365 -1.76 0 0 0 0 0 0 0 +-6.822 1.348 -1.766 0 0 0 0 0 0 0 +-6.815 1.324 -1.763 0 0 0 0 0 0 0 +-6.816 1.302 -1.762 0 0 0 0 0 0 0 +-6.835 1.284 -1.766 0 0 0 0 0 0 0 +-6.827 1.271 -1.764 0 0 0 0 0 0 0 +-6.82 1.248 -1.761 0 0 0 0 0 0 0 +-6.845 1.23 -1.766 0 0 0 0 0 0 0 +-6.839 1.207 -1.764 0 0 0 0 0 0 0 +-6.837 1.184 -1.762 0 0 0 0 0 0 0 +-6.867 1.167 -1.77 0 0 0 0 0 0 0 +-6.854 1.143 -1.765 0 0 0 0 0 0 0 +-6.85 1.131 -1.763 0 0 0 0 0 0 0 +-6.857 1.11 -1.764 0 0 0 0 0 0 0 +-6.844 1.086 -1.76 0 0 0 0 0 0 0 +-6.866 1.067 -1.765 0 0 0 0 0 0 0 +-6.867 1.046 -1.764 0 0 0 0 0 0 0 +-6.867 1.023 -1.763 0 0 0 0 0 0 0 +-6.849 0.999 -1.758 0 0 0 0 0 0 0 +-6.875 0.98 -1.764 0 0 0 0 0 0 0 +-6.863 0.968 -1.76 0 0 0 0 0 0 0 +-6.88 0.948 -1.764 0 0 0 0 0 0 0 +-6.865 0.924 -1.759 0 0 0 0 0 0 0 +-6.883 0.905 -1.763 0 0 0 0 0 0 0 +-6.884 0.883 -1.763 0 0 0 0 0 0 0 +-6.893 0.862 -1.764 0 0 0 0 0 0 0 +-6.874 0.838 -1.759 0 0 0 0 0 0 0 +-6.914 0.831 -1.769 0 0 0 0 0 0 0 +-6.911 0.809 -1.767 0 0 0 0 0 0 0 +-6.885 0.784 -1.76 0 0 0 0 0 0 0 +-6.914 0.765 -1.767 0 0 0 0 0 0 0 +-6.924 0.744 -1.769 0 0 0 0 0 0 0 +-6.884 0.718 -1.758 0 0 0 0 0 0 0 +-6.93 0.701 -1.77 0 0 0 0 0 0 0 +-6.933 0.69 -1.77 0 0 0 0 0 0 0 +-6.914 0.667 -1.764 0 0 0 0 0 0 0 +-6.926 0.646 -1.767 0 0 0 0 0 0 0 +-6.926 0.624 -1.766 0 0 0 0 0 0 0 +-6.93 0.602 -1.767 0 0 0 0 0 0 0 +-6.961 0.583 -1.775 0 0 0 0 0 0 0 +-6.941 0.559 -1.769 0 0 0 0 0 0 0 +-6.95 0.549 -1.771 0 0 0 0 0 0 0 +-6.952 0.527 -1.771 0 0 0 0 0 0 0 +-6.955 0.505 -1.772 0 0 0 0 0 0 0 +-6.951 0.483 -1.77 0 0 0 0 0 0 0 +-6.935 0.46 -1.765 0 0 0 0 0 0 0 +-6.958 0.44 -1.771 0 0 0 0 0 0 0 +-6.948 0.417 -1.768 0 0 0 0 0 0 0 +-6.944 0.406 -1.767 0 0 0 0 0 0 0 +-6.957 0.385 -1.77 0 0 0 0 0 0 0 +-6.953 0.363 -1.769 0 0 0 0 0 0 0 +-6.973 0.342 -1.774 0 0 0 0 0 0 0 +-6.968 0.32 -1.772 0 0 0 0 0 0 0 +-6.956 0.297 -1.769 0 0 0 0 0 0 0 +-6.958 0.275 -1.769 0 0 0 0 0 0 0 +-6.963 0.254 -1.77 0 0 0 0 0 0 0 +-6.964 0.243 -1.77 0 0 0 0 0 0 0 +-6.949 0.22 -1.766 0 0 0 0 0 0 0 +-6.967 0.199 -1.771 0 0 0 0 0 0 0 +-6.967 0.177 -1.771 0 0 0 0 0 0 0 +-6.958 0.155 -1.768 0 0 0 0 0 0 0 +-6.966 0.133 -1.77 0 0 0 0 0 0 0 +-6.975 0.111 -1.772 0 0 0 0 0 0 0 +-6.973 0.1 -1.772 0 0 0 0 0 0 0 +-6.979 0.079 -1.773 0 0 0 0 0 0 0 +-6.977 0.057 -1.773 0 0 0 0 0 0 0 +-6.958 0.035 -1.767 0 0 0 0 0 0 0 +-6.985 0.013 -1.775 0 0 0 0 0 0 0 +-6.974 -0.009 -1.772 0 0 0 0 0 0 0 +-6.964 -0.031 -1.769 0 0 0 0 0 0 0 +-6.987 -0.042 -1.775 0 0 0 0 0 0 0 +-6.969 -0.064 -1.771 0 0 0 0 0 0 0 +-6.981 -0.086 -1.774 0 0 0 0 0 0 0 +-6.988 -0.108 -1.776 0 0 0 0 0 0 0 +-6.984 -0.13 -1.775 0 0 0 0 0 0 0 +-6.978 -0.152 -1.773 0 0 0 0 0 0 0 +-6.977 -0.174 -1.773 0 0 0 0 0 0 0 +-6.961 -0.184 -1.769 0 0 0 0 0 0 0 +-6.972 -0.206 -1.772 0 0 0 0 0 0 0 +-6.952 -0.227 -1.767 0 0 0 0 0 0 0 +-7.31 -0.264 -1.864 0 0 0 0 0 0 0 +-7.31 -0.286 -1.864 0 0 0 0 0 0 0 +-7.309 -0.309 -1.864 0 0 0 0 0 0 0 +-7.308 -0.332 -1.864 0 0 0 0 0 0 0 +-7.301 -0.355 -1.863 0 0 0 0 0 0 0 +-7.3 -0.378 -1.863 0 0 0 0 0 0 0 +-7.307 -0.39 -1.865 0 0 0 0 0 0 0 +-7.298 -0.412 -1.863 0 0 0 0 0 0 0 +-7.294 -0.435 -1.862 0 0 0 0 0 0 0 +-7.301 -0.459 -1.864 0 0 0 0 0 0 0 +-7.301 -0.482 -1.865 0 0 0 0 0 0 0 +-7.296 -0.504 -1.864 0 0 0 0 0 0 0 +-7.288 -0.527 -1.862 0 0 0 0 0 0 0 +-7.282 -0.538 -1.861 0 0 0 0 0 0 0 +-7.284 -0.561 -1.862 0 0 0 0 0 0 0 +-7.288 -0.584 -1.863 0 0 0 0 0 0 0 +-7.284 -0.607 -1.863 0 0 0 0 0 0 0 +-7.28 -0.63 -1.862 0 0 0 0 0 0 0 +-7.271 -0.652 -1.86 0 0 0 0 0 0 0 +-7.267 -0.675 -1.86 0 0 0 0 0 0 0 +-7.285 -0.688 -1.865 0 0 0 0 0 0 0 +-7.275 -0.71 -1.863 0 0 0 0 0 0 0 +-7.273 -0.733 -1.863 0 0 0 0 0 0 0 +-7.276 -0.756 -1.864 0 0 0 0 0 0 0 +-7.266 -0.778 -1.862 0 0 0 0 0 0 0 +-7.265 -0.801 -1.863 0 0 0 0 0 0 0 +-7.259 -0.824 -1.862 0 0 0 0 0 0 0 +-7.261 -0.836 -1.863 0 0 0 0 0 0 0 +-7.255 -0.858 -1.862 0 0 0 0 0 0 0 +-7.264 -0.882 -1.865 0 0 0 0 0 0 0 +-7.251 -0.904 -1.862 0 0 0 0 0 0 0 +-7.254 -0.927 -1.864 0 0 0 0 0 0 0 +-7.261 -0.951 -1.867 0 0 0 0 0 0 0 +-7.258 -0.974 -1.867 0 0 0 0 0 0 0 +-7.249 -0.984 -1.864 0 0 0 0 0 0 0 +-7.255 -1.009 -1.867 0 0 0 0 0 0 0 +-7.256 -1.032 -1.868 0 0 0 0 0 0 0 +-7.256 -1.055 -1.869 0 0 0 0 0 0 0 +-7.241 -1.076 -1.866 0 0 0 0 0 0 0 +-7.242 -1.1 -1.867 0 0 0 0 0 0 0 +-7.246 -1.124 -1.869 0 0 0 0 0 0 0 +-7.227 -1.144 -1.865 0 0 0 0 0 0 0 +-7.229 -1.156 -1.866 0 0 0 0 0 0 0 +-7.216 -1.177 -1.863 0 0 0 0 0 0 0 +-7.231 -1.203 -1.869 0 0 0 0 0 0 0 +-7.226 -1.225 -1.868 0 0 0 0 0 0 0 +-7.227 -1.249 -1.87 0 0 0 0 0 0 0 +-7.208 -1.269 -1.865 0 0 0 0 0 0 0 +-7.206 -1.292 -1.866 0 0 0 0 0 0 0 +-7.196 -1.302 -1.864 0 0 0 0 0 0 0 +-7.207 -1.327 -1.868 0 0 0 0 0 0 0 +-7.194 -1.348 -1.865 0 0 0 0 0 0 0 +-7.186 -1.37 -1.864 0 0 0 0 0 0 0 +-7.181 -1.393 -1.864 0 0 0 0 0 0 0 +-7.179 -1.416 -1.865 0 0 0 0 0 0 0 +-7.169 -1.437 -1.863 0 0 0 0 0 0 0 +-7.168 -1.449 -1.864 0 0 0 0 0 0 0 +-7.16 -1.47 -1.863 0 0 0 0 0 0 0 +-7.155 -1.493 -1.863 0 0 0 0 0 0 0 +-7.149 -1.515 -1.862 0 0 0 0 0 0 0 +-7.142 -1.537 -1.862 0 0 0 0 0 0 0 +-7.126 -1.557 -1.859 0 0 0 0 0 0 0 +-7.134 -1.582 -1.862 0 0 0 0 0 0 0 +-7.12 -1.591 -1.859 0 0 0 0 0 0 0 +-7.119 -1.614 -1.86 0 0 0 0 0 0 0 +-7.118 -1.637 -1.861 0 0 0 0 0 0 0 +-7.103 -1.657 -1.859 0 0 0 0 0 0 0 +-7.094 -1.679 -1.858 0 0 0 0 0 0 0 +-7.106 -1.705 -1.862 0 0 0 0 0 0 0 +-7.093 -1.726 -1.86 0 0 0 0 0 0 0 +-7.101 -1.74 -1.863 0 0 0 0 0 0 0 +-7.09 -1.76 -1.862 0 0 0 0 0 0 0 +-7.081 -1.782 -1.861 0 0 0 0 0 0 0 +-7.085 -1.806 -1.863 0 0 0 0 0 0 0 +-7.085 -1.83 -1.865 0 0 0 0 0 0 0 +-7.071 -1.85 -1.863 0 0 0 0 0 0 0 +-7.071 -1.874 -1.864 0 0 0 0 0 0 0 +-7.064 -1.884 -1.863 0 0 0 0 0 0 0 +-7.044 -1.902 -1.859 0 0 0 0 0 0 0 +-7.047 -1.927 -1.862 0 0 0 0 0 0 0 +-7.044 -1.95 -1.863 0 0 0 0 0 0 0 +-7.033 -1.971 -1.861 0 0 0 0 0 0 0 +-7.045 -1.998 -1.867 0 0 0 0 0 0 0 +-7.039 -2.02 -1.867 0 0 0 0 0 0 0 +-7.008 -2.023 -1.859 0 0 0 0 0 0 0 +-7.018 -2.05 -1.863 0 0 0 0 0 0 0 +-7.006 -2.07 -1.862 0 0 0 0 0 0 0 +-6.996 -2.091 -1.861 0 0 0 0 0 0 0 +-6.997 -2.116 -1.863 0 0 0 0 0 0 0 +-6.97 -2.131 -1.857 0 0 0 0 0 0 0 +-6.974 -2.157 -1.86 0 0 0 0 0 0 0 +-6.969 -2.179 -1.861 0 0 0 0 0 0 0 +-6.499 -3.336 -1.862 0 0 0 0 0 0 0 +-6.46 -3.342 -1.853 0 0 0 0 0 0 0 +-6.444 -3.359 -1.851 0 0 0 0 0 0 0 +-6.428 -3.377 -1.85 0 0 0 0 0 0 0 +-6.414 -3.395 -1.849 0 0 0 0 0 0 0 +-6.403 -3.415 -1.849 0 0 0 0 0 0 0 +-6.388 -3.42 -1.846 0 0 0 0 0 0 0 +-6.384 -3.444 -1.848 0 0 0 0 0 0 0 +-6.366 -3.46 -1.846 0 0 0 0 0 0 0 +-6.349 -3.476 -1.843 0 0 0 0 0 0 0 +-6.343 -3.499 -1.845 0 0 0 0 0 0 0 +-6.32 -3.512 -1.841 0 0 0 0 0 0 0 +-6.314 -3.535 -1.843 0 0 0 0 0 0 0 +-6.298 -3.539 -1.84 0 0 0 0 0 0 0 +-6.285 -3.558 -1.839 0 0 0 0 0 0 0 +-6.263 -3.571 -1.836 0 0 0 0 0 0 0 +-6.26 -3.595 -1.838 0 0 0 0 0 0 0 +-6.25 -3.616 -1.839 0 0 0 0 0 0 0 +-6.237 -3.635 -1.838 0 0 0 0 0 0 0 +-6.215 -3.648 -1.835 0 0 0 0 0 0 0 +-6.215 -3.661 -1.837 0 0 0 0 0 0 0 +-6.197 -3.677 -1.835 0 0 0 0 0 0 0 +-6.198 -3.704 -1.839 0 0 0 0 0 0 0 +-6.182 -3.72 -1.837 0 0 0 0 0 0 0 +-6.162 -3.735 -1.835 0 0 0 0 0 0 0 +-6.153 -3.756 -1.836 0 0 0 0 0 0 0 +-6.146 -3.778 -1.837 0 0 0 0 0 0 0 +-6.145 -3.791 -1.839 0 0 0 0 0 0 0 +-6.132 -3.809 -1.838 0 0 0 0 0 0 0 +-6.11 -3.823 -1.835 0 0 0 0 0 0 0 +-6.09 -3.837 -1.832 0 0 0 0 0 0 0 +-6.092 -3.865 -1.837 0 0 0 0 0 0 0 +-6.075 -3.881 -1.836 0 0 0 0 0 0 0 +-6.069 -3.904 -1.838 0 0 0 0 0 0 0 +-6.062 -3.913 -1.837 0 0 0 0 0 0 0 +-6.038 -3.924 -1.834 0 0 0 0 0 0 0 +-6.045 -3.956 -1.84 0 0 0 0 0 0 0 +-6.007 -3.958 -1.831 0 0 0 0 0 0 0 +-6.007 -3.985 -1.836 0 0 0 0 0 0 0 +-5.99 -4.001 -1.834 0 0 0 0 0 0 0 +-5.98 -4.022 -1.835 0 0 0 0 0 0 0 +-5.976 -4.032 -1.836 0 0 0 0 0 0 0 +-5.963 -4.051 -1.836 0 0 0 0 0 0 0 +-5.941 -4.063 -1.832 0 0 0 0 0 0 0 +-5.939 -4.09 -1.836 0 0 0 0 0 0 0 +-5.925 -4.107 -1.836 0 0 0 0 0 0 0 +-5.909 -4.124 -1.835 0 0 0 0 0 0 0 +-5.897 -4.143 -1.835 0 0 0 0 0 0 0 +-5.887 -4.15 -1.834 0 0 0 0 0 0 0 +-5.874 -4.169 -1.834 0 0 0 0 0 0 0 +-5.868 -4.192 -1.836 0 0 0 0 0 0 0 +-5.857 -4.212 -1.837 0 0 0 0 0 0 0 +-5.843 -4.23 -1.837 0 0 0 0 0 0 0 +-5.823 -4.243 -1.835 0 0 0 0 0 0 0 +-5.802 -4.256 -1.832 0 0 0 0 0 0 0 +-5.801 -4.283 -1.836 0 0 0 0 0 0 0 +-5.786 -4.287 -1.834 0 0 0 0 0 0 0 +-5.773 -4.305 -1.834 0 0 0 0 0 0 0 +-5.766 -4.328 -1.836 0 0 0 0 0 0 0 +-5.744 -4.34 -1.833 0 0 0 0 0 0 0 +-5.743 -4.367 -1.837 0 0 0 0 0 0 0 +-5.715 -4.375 -1.832 0 0 0 0 0 0 0 +-5.708 -4.397 -1.835 0 0 0 0 0 0 0 +-5.708 -4.412 -1.837 0 0 0 0 0 0 0 +-5.691 -4.428 -1.836 0 0 0 0 0 0 0 +-5.671 -4.441 -1.834 0 0 0 0 0 0 0 +-5.659 -4.46 -1.835 0 0 0 0 0 0 0 +-5.634 -4.469 -1.831 0 0 0 0 0 0 0 +-5.629 -4.494 -1.834 0 0 0 0 0 0 0 +-5.62 -4.515 -1.836 0 0 0 0 0 0 0 +-5.61 -4.522 -1.835 0 0 0 0 0 0 0 +-5.594 -4.538 -1.834 0 0 0 0 0 0 0 +-5.566 -4.545 -1.829 0 0 0 0 0 0 0 +-5.559 -4.568 -1.832 0 0 0 0 0 0 0 +-5.554 -4.593 -1.835 0 0 0 0 0 0 0 +-5.535 -4.607 -1.834 0 0 0 0 0 0 0 +-5.522 -4.625 -1.834 0 0 0 0 0 0 0 +-5.516 -4.635 -1.835 0 0 0 0 0 0 0 +-5.499 -4.65 -1.834 0 0 0 0 0 0 0 +-5.49 -4.672 -1.836 0 0 0 0 0 0 0 +-5.48 -4.693 -1.837 0 0 0 0 0 0 0 +-5.456 -4.703 -1.834 0 0 0 0 0 0 0 +-5.448 -4.727 -1.837 0 0 0 0 0 0 0 +-5.429 -4.74 -1.835 0 0 0 0 0 0 0 +-5.426 -4.752 -1.837 0 0 0 0 0 0 0 +-5.405 -4.764 -1.835 0 0 0 0 0 0 0 +-5.399 -4.789 -1.838 0 0 0 0 0 0 0 +-5.383 -4.804 -1.837 0 0 0 0 0 0 0 +-5.359 -4.813 -1.834 0 0 0 0 0 0 0 +-5.352 -4.838 -1.837 0 0 0 0 0 0 0 +-5.334 -4.852 -1.836 0 0 0 0 0 0 0 +-5.328 -4.862 -1.837 0 0 0 0 0 0 0 +-5.331 -4.896 -1.843 0 0 0 0 0 0 0 +-5.324 -4.92 -1.847 0 0 0 0 0 0 0 +-5.29 -4.92 -1.84 0 0 0 0 0 0 0 +-5.245 -4.909 -1.829 0 0 0 0 0 0 0 +-5.233 -4.928 -1.83 0 0 0 0 0 0 0 +-5.216 -4.943 -1.829 0 0 0 0 0 0 0 +-5.208 -4.951 -1.829 0 0 0 0 0 0 0 +-5.179 -4.954 -1.824 0 0 0 0 0 0 0 +-5.155 -4.962 -1.821 0 0 0 0 0 0 0 +-5.145 -4.984 -1.823 0 0 0 0 0 0 0 +-5.123 -4.994 -1.821 0 0 0 0 0 0 0 +-5.11 -5.013 -1.822 0 0 0 0 0 0 0 +-5.095 -5.029 -1.822 0 0 0 0 0 0 0 +-5.071 -5.037 -1.819 0 0 0 0 0 0 0 +-5.061 -5.044 -1.818 0 0 0 0 0 0 0 +-5.051 -5.065 -1.82 0 0 0 0 0 0 0 +-5.035 -5.081 -1.82 0 0 0 0 0 0 0 +-5.008 -5.086 -1.816 0 0 0 0 0 0 0 +-5 -5.11 -1.819 0 0 0 0 0 0 0 +-4.977 -5.118 -1.817 0 0 0 0 0 0 0 +-4.961 -5.134 -1.817 0 0 0 0 0 0 0 +-4.949 -5.138 -1.815 0 0 0 0 0 0 0 +-4.934 -5.154 -1.816 0 0 0 0 0 0 0 +-4.916 -5.167 -1.815 0 0 0 0 0 0 0 +-4.907 -5.191 -1.818 0 0 0 0 0 0 0 +-4.874 -5.188 -1.811 0 0 0 0 0 0 0 +-4.868 -5.215 -1.815 0 0 0 0 0 0 0 +-4.848 -5.226 -1.814 0 0 0 0 0 0 0 +-4.846 -5.24 -1.816 0 0 0 0 0 0 0 +-4.819 -5.244 -1.812 0 0 0 0 0 0 0 +-4.809 -5.266 -1.815 0 0 0 0 0 0 0 +-4.787 -5.276 -1.813 0 0 0 0 0 0 0 +-4.769 -5.289 -1.812 0 0 0 0 0 0 0 +-4.744 -5.294 -1.808 0 0 0 0 0 0 0 +-4.722 -5.303 -1.806 0 0 0 0 0 0 0 +-4.716 -5.314 -1.807 0 0 0 0 0 0 0 +-4.702 -5.331 -1.808 0 0 0 0 0 0 0 +-4.678 -5.337 -1.805 0 0 0 0 0 0 0 +-4.662 -5.353 -1.806 0 0 0 0 0 0 0 +-4.643 -5.365 -1.805 0 0 0 0 0 0 0 +-4.633 -5.389 -1.808 0 0 0 0 0 0 0 +-4.61 -5.396 -1.805 0 0 0 0 0 0 0 +-4.606 -5.407 -1.807 0 0 0 0 0 0 0 +-4.587 -5.42 -1.806 0 0 0 0 0 0 0 +-4.567 -5.43 -1.805 0 0 0 0 0 0 0 +-4.548 -5.443 -1.804 0 0 0 0 0 0 0 +-4.531 -5.457 -1.804 0 0 0 0 0 0 0 +-4.514 -5.472 -1.804 0 0 0 0 0 0 0 +-4.499 -5.489 -1.805 0 0 0 0 0 0 0 +-4.486 -5.49 -1.803 0 0 0 0 0 0 0 +-4.464 -5.498 -1.801 0 0 0 0 0 0 0 +-4.454 -5.521 -1.804 0 0 0 0 0 0 0 +-4.424 -5.52 -1.799 0 0 0 0 0 0 0 +-4.406 -5.532 -1.798 0 0 0 0 0 0 0 +-4.398 -5.558 -1.803 0 0 0 0 0 0 0 +-4.375 -5.566 -1.8 0 0 0 0 0 0 0 +-4.37 -5.577 -1.802 0 0 0 0 0 0 0 +-4.349 -5.586 -1.8 0 0 0 0 0 0 0 +-4.323 -5.589 -1.797 0 0 0 0 0 0 0 +-4.305 -5.601 -1.796 0 0 0 0 0 0 0 +-4.292 -5.621 -1.798 0 0 0 0 0 0 0 +-4.281 -5.644 -1.802 0 0 0 0 0 0 0 +-4.266 -5.66 -1.803 0 0 0 0 0 0 0 +-4.252 -5.661 -1.8 0 0 0 0 0 0 0 +-4.234 -5.674 -1.8 0 0 0 0 0 0 0 +-4.215 -5.686 -1.8 0 0 0 0 0 0 0 +-4.195 -5.696 -1.799 0 0 0 0 0 0 0 +-4.175 -5.706 -1.798 0 0 0 0 0 0 0 +-4.158 -5.72 -1.798 0 0 0 0 0 0 0 +-4.145 -5.74 -1.8 0 0 0 0 0 0 0 +-4.138 -5.749 -1.802 0 0 0 0 0 0 0 +-4.11 -5.748 -1.797 0 0 0 0 0 0 0 +-4.097 -5.769 -1.799 0 0 0 0 0 0 0 +-4.079 -5.782 -1.799 0 0 0 0 0 0 0 +-4.056 -5.788 -1.797 0 0 0 0 0 0 0 +-4.043 -5.807 -1.799 0 0 0 0 0 0 0 +-4.028 -5.825 -1.801 0 0 0 0 0 0 0 +-4.013 -5.823 -1.798 0 0 0 0 0 0 0 +-3.997 -5.839 -1.799 0 0 0 0 0 0 0 +-3.981 -5.855 -1.8 0 0 0 0 0 0 0 +-3.965 -5.872 -1.802 0 0 0 0 0 0 0 +-3.951 -5.891 -1.804 0 0 0 0 0 0 0 +-3.928 -5.897 -1.802 0 0 0 0 0 0 0 +-3.91 -5.909 -1.802 0 0 0 0 0 0 0 +-3.92 -5.944 -1.811 0 0 0 0 0 0 0 +-3.902 -5.958 -1.812 0 0 0 0 0 0 0 +-3.891 -5.982 -1.816 0 0 0 0 0 0 0 +-3.876 -6 -1.818 0 0 0 0 0 0 0 +-3.856 -6.011 -1.817 0 0 0 0 0 0 0 +-3.841 -6.03 -1.819 0 0 0 0 0 0 0 +-3.814 -6.028 -1.815 0 0 0 0 0 0 0 +-3.814 -6.049 -1.82 0 0 0 0 0 0 0 +-3.804 -6.076 -1.825 0 0 0 0 0 0 0 +-3.804 -6.119 -1.835 0 0 0 0 0 0 0 +-3.781 -6.124 -1.832 0 0 0 0 0 0 0 +-3.721 -6.069 -1.811 0 0 0 0 0 0 0 +-3.704 -6.085 -1.813 0 0 0 0 0 0 0 +-3.678 -6.085 -1.809 0 0 0 0 0 0 0 +-3.659 -6.097 -1.809 0 0 0 0 0 0 0 +-3.646 -6.096 -1.807 0 0 0 0 0 0 0 +-3.625 -6.104 -1.806 0 0 0 0 0 0 0 +-3.6 -6.107 -1.803 0 0 0 0 0 0 0 +-3.587 -6.128 -1.806 0 0 0 0 0 0 0 +-3.559 -6.124 -1.802 0 0 0 0 0 0 0 +-3.544 -6.142 -1.804 0 0 0 0 0 0 0 +-3.52 -6.145 -1.801 0 0 0 0 0 0 0 +-3.506 -6.144 -1.799 0 0 0 0 0 0 0 +-3.49 -6.16 -1.8 0 0 0 0 0 0 0 +-3.468 -6.167 -1.799 0 0 0 0 0 0 0 +-3.447 -6.175 -1.798 0 0 0 0 0 0 0 +-3.435 -6.199 -1.803 0 0 0 0 0 0 0 +-3.417 -6.212 -1.803 0 0 0 0 0 0 0 +-3.393 -6.214 -1.8 0 0 0 0 0 0 0 +-3.378 -6.211 -1.798 0 0 0 0 0 0 0 +-3.364 -6.232 -1.801 0 0 0 0 0 0 0 +-3.339 -6.232 -1.798 0 0 0 0 0 0 0 +-3.32 -6.244 -1.798 0 0 0 0 0 0 0 +-3.303 -6.26 -1.8 0 0 0 0 0 0 0 +-3.283 -6.268 -1.799 0 0 0 0 0 0 0 +-3.256 -6.265 -1.795 0 0 0 0 0 0 0 +-3.252 -6.282 -1.799 0 0 0 0 0 0 0 +-3.227 -6.282 -1.796 0 0 0 0 0 0 0 +-3.212 -6.3 -1.798 0 0 0 0 0 0 0 +-3.194 -6.314 -1.799 0 0 0 0 0 0 0 +-3.17 -6.315 -1.797 0 0 0 0 0 0 0 +-3.152 -6.329 -1.798 0 0 0 0 0 0 0 +-3.137 -6.349 -1.801 0 0 0 0 0 0 0 +-3.12 -6.34 -1.797 0 0 0 0 0 0 0 +-3.105 -6.36 -1.8 0 0 0 0 0 0 0 +-3.083 -6.365 -1.798 0 0 0 0 0 0 0 +-3.061 -6.371 -1.797 0 0 0 0 0 0 0 +-3.038 -6.374 -1.795 0 0 0 0 0 0 0 +-3.025 -6.399 -1.8 0 0 0 0 0 0 0 +-2.998 -6.394 -1.796 0 0 0 0 0 0 0 +-2.991 -6.404 -1.797 0 0 0 0 0 0 0 +-2.973 -6.419 -1.799 0 0 0 0 0 0 0 +-2.952 -6.426 -1.798 0 0 0 0 0 0 0 +-2.933 -6.437 -1.799 0 0 0 0 0 0 0 +-2.911 -6.443 -1.798 0 0 0 0 0 0 0 +-2.891 -6.452 -1.798 0 0 0 0 0 0 0 +-2.868 -6.456 -1.796 0 0 0 0 0 0 0 +-2.866 -6.48 -1.802 0 0 0 0 0 0 0 +-2.841 -6.478 -1.799 0 0 0 0 0 0 0 +-2.816 -6.476 -1.796 0 0 0 0 0 0 0 +-2.8 -6.494 -1.798 0 0 0 0 0 0 0 +-2.779 -6.503 -1.798 0 0 0 0 0 0 0 +-2.759 -6.512 -1.798 0 0 0 0 0 0 0 +-2.741 -6.526 -1.8 0 0 0 0 0 0 0 +-2.727 -6.521 -1.797 0 0 0 0 0 0 0 +-2.706 -6.528 -1.797 0 0 0 0 0 0 0 +-2.687 -6.542 -1.798 0 0 0 0 0 0 0 +-2.67 -6.559 -1.801 0 0 0 0 0 0 0 +-2.643 -6.551 -1.796 0 0 0 0 0 0 0 +-2.629 -6.576 -1.801 0 0 0 0 0 0 0 +-2.612 -6.593 -1.804 0 0 0 0 0 0 0 +-2.594 -6.579 -1.798 0 0 0 0 0 0 0 +-2.582 -6.609 -1.805 0 0 0 0 0 0 0 +-2.562 -6.618 -1.805 0 0 0 0 0 0 0 +-2.541 -6.625 -1.805 0 0 0 0 0 0 0 +-2.52 -6.633 -1.805 0 0 0 0 0 0 0 +-2.497 -6.635 -1.803 0 0 0 0 0 0 0 +-2.477 -6.647 -1.804 0 0 0 0 0 0 0 +-2.468 -6.652 -1.805 0 0 0 0 0 0 0 +-2.466 -6.714 -1.82 0 0 0 0 0 0 0 +-2.418 -6.646 -1.798 0 0 0 0 0 0 0 +-2.403 -6.672 -1.804 0 0 0 0 0 0 0 +-2.353 -6.663 -1.797 0 0 0 0 0 0 0 +-2.331 -6.667 -1.796 0 0 0 0 0 0 0 +-2.317 -6.659 -1.793 0 0 0 0 0 0 0 +-2.298 -6.672 -1.794 0 0 0 0 0 0 0 +-2.267 -6.65 -1.786 0 0 0 0 0 0 0 +-2.242 -6.646 -1.783 0 0 0 0 0 0 0 +-2.221 -6.653 -1.783 0 0 0 0 0 0 0 +-2.2 -6.658 -1.782 0 0 0 0 0 0 0 +-2.176 -6.656 -1.78 0 0 0 0 0 0 0 +-2.163 -6.652 -1.777 0 0 0 0 0 0 0 +-2.142 -6.659 -1.777 0 0 0 0 0 0 0 +-2.119 -6.658 -1.775 0 0 0 0 0 0 0 +-2.096 -6.659 -1.774 0 0 0 0 0 0 0 +-2.073 -6.656 -1.771 0 0 0 0 0 0 0 +-2.053 -6.668 -1.773 0 0 0 0 0 0 0 +-2.029 -6.664 -1.77 0 0 0 0 0 0 0 +-2.008 -6.67 -1.77 0 0 0 0 0 0 0 +-1.997 -6.67 -1.769 0 0 0 0 0 0 0 +-1.971 -6.661 -1.764 0 0 0 0 0 0 0 +-1.951 -6.671 -1.765 0 0 0 0 0 0 0 +-1.928 -6.668 -1.763 0 0 0 0 0 0 0 +-1.909 -6.681 -1.765 0 0 0 0 0 0 0 +-1.886 -6.68 -1.763 0 0 0 0 0 0 0 +-1.868 -6.695 -1.765 0 0 0 0 0 0 0 +-1.854 -6.688 -1.763 0 0 0 0 0 0 0 +-1.835 -6.702 -1.765 0 0 0 0 0 0 0 +-1.813 -6.704 -1.764 0 0 0 0 0 0 0 +-1.791 -6.706 -1.763 0 0 0 0 0 0 0 +-1.767 -6.7 -1.76 0 0 0 0 0 0 0 +-1.747 -6.709 -1.761 0 0 0 0 0 0 0 +-1.738 -6.718 -1.762 0 0 0 0 0 0 0 +-1.716 -6.717 -1.761 0 0 0 0 0 0 0 +-1.692 -6.713 -1.758 0 0 0 0 0 0 0 +-1.669 -6.709 -1.755 0 0 0 0 0 0 0 +-1.649 -6.72 -1.757 0 0 0 0 0 0 0 +-1.629 -6.729 -1.758 0 0 0 0 0 0 0 +-1.604 -6.717 -1.753 0 0 0 0 0 0 0 +-1.585 -6.733 -1.756 0 0 0 0 0 0 0 +-1.574 -6.734 -1.756 0 0 0 0 0 0 0 +-1.553 -6.739 -1.756 0 0 0 0 0 0 0 +-1.531 -6.738 -1.754 0 0 0 0 0 0 0 +-1.51 -6.747 -1.755 0 0 0 0 0 0 0 +-1.486 -6.738 -1.752 0 0 0 0 0 0 0 +-1.466 -6.749 -1.753 0 0 0 0 0 0 0 +-1.443 -6.746 -1.751 0 0 0 0 0 0 0 +-1.435 -6.759 -1.754 0 0 0 0 0 0 0 +-1.41 -6.747 -1.75 0 0 0 0 0 0 0 +-1.388 -6.743 -1.748 0 0 0 0 0 0 0 +-1.366 -6.744 -1.747 0 0 0 0 0 0 0 +-1.341 -6.731 -1.742 0 0 0 0 0 0 0 +-1.319 -6.732 -1.741 0 0 0 0 0 0 0 +-1.3 -6.745 -1.743 0 0 0 0 0 0 0 +-1.289 -6.743 -1.742 0 0 0 0 0 0 0 +-1.266 -6.74 -1.74 0 0 0 0 0 0 0 +-1.245 -6.746 -1.741 0 0 0 0 0 0 0 +-1.226 -6.759 -1.743 0 0 0 0 0 0 0 +-1.208 -6.786 -1.75 0 0 0 0 0 0 0 +-1.187 -6.786 -1.749 0 0 0 0 0 0 0 +-1.166 -6.797 -1.751 0 0 0 0 0 0 0 +-1.155 -6.793 -1.749 0 0 0 0 0 0 0 +-1.133 -6.797 -1.749 0 0 0 0 0 0 0 +-1.114 -6.812 -1.752 0 0 0 0 0 0 0 +-1.09 -6.8 -1.748 0 0 0 0 0 0 0 +-1.069 -6.807 -1.749 0 0 0 0 0 0 0 +-1.049 -6.814 -1.75 0 0 0 0 0 0 0 +-1.027 -6.814 -1.749 0 0 0 0 0 0 0 +-1.017 -6.823 -1.751 0 0 0 0 0 0 0 +-0.997 -6.834 -1.753 0 0 0 0 0 0 0 +-0.975 -6.839 -1.754 0 0 0 0 0 0 0 +-0.954 -6.842 -1.754 0 0 0 0 0 0 0 +-0.934 -6.856 -1.757 0 0 0 0 0 0 0 +-0.911 -6.846 -1.753 0 0 0 0 0 0 0 +-0.889 -6.845 -1.752 0 0 0 0 0 0 0 +-0.879 -6.856 -1.755 0 0 0 0 0 0 0 +-0.857 -6.855 -1.754 0 0 0 0 0 0 0 +-0.836 -6.857 -1.754 0 0 0 0 0 0 0 +-0.815 -6.869 -1.756 0 0 0 0 0 0 0 +-0.793 -6.862 -1.754 0 0 0 0 0 0 0 +-0.77 -6.857 -1.752 0 0 0 0 0 0 0 +-0.751 -6.881 -1.758 0 0 0 0 0 0 0 +-0.739 -6.868 -1.754 0 0 0 0 0 0 0 +-0.719 -6.886 -1.758 0 0 0 0 0 0 0 +-0.697 -6.886 -1.758 0 0 0 0 0 0 0 +-0.674 -6.877 -1.754 0 0 0 0 0 0 0 +-0.652 -6.871 -1.752 0 0 0 0 0 0 0 +-0.631 -6.889 -1.756 0 0 0 0 0 0 0 +-0.609 -6.881 -1.754 0 0 0 0 0 0 0 +-0.599 -6.897 -1.758 0 0 0 0 0 0 0 +-0.577 -6.893 -1.756 0 0 0 0 0 0 0 +-0.555 -6.891 -1.755 0 0 0 0 0 0 0 +-0.534 -6.897 -1.756 0 0 0 0 0 0 0 +-0.512 -6.899 -1.756 0 0 0 0 0 0 0 +-0.491 -6.898 -1.756 0 0 0 0 0 0 0 +-0.469 -6.906 -1.758 0 0 0 0 0 0 0 +-0.458 -6.902 -1.756 0 0 0 0 0 0 0 +-0.436 -6.902 -1.756 0 0 0 0 0 0 0 +-0.415 -6.905 -1.756 0 0 0 0 0 0 0 +-0.393 -6.91 -1.758 0 0 0 0 0 0 0 +-0.371 -6.91 -1.757 0 0 0 0 0 0 0 +-0.35 -6.922 -1.76 0 0 0 0 0 0 0 +-0.329 -6.923 -1.76 0 0 0 0 0 0 0 +-0.318 -6.928 -1.761 0 0 0 0 0 0 0 +-0.296 -6.921 -1.759 0 0 0 0 0 0 0 +-0.275 -6.937 -1.763 0 0 0 0 0 0 0 +-0.253 -6.936 -1.763 0 0 0 0 0 0 0 +-0.231 -6.929 -1.761 0 0 0 0 0 0 0 +-0.209 -6.924 -1.759 0 0 0 0 0 0 0 +-0.187 -6.934 -1.762 0 0 0 0 0 0 0 +-0.176 -6.933 -1.761 0 0 0 0 0 0 0 +-0.155 -6.951 -1.766 0 0 0 0 0 0 0 +-0.133 -6.945 -1.764 0 0 0 0 0 0 0 +-0.111 -6.955 -1.767 0 0 0 0 0 0 0 +-0.089 -6.946 -1.764 0 0 0 0 0 0 0 +-0.068 -6.962 -1.769 0 0 0 0 0 0 0 +-0.046 -6.958 -1.767 0 0 0 0 0 0 0 +-0.035 -6.972 -1.771 0 0 0 0 0 0 0 +-0.013 -6.97 -1.771 0 0 0 0 0 0 0 +0.009 -6.97 -1.771 0 0 0 0 0 0 0 +0.031 -6.966 -1.77 0 0 0 0 0 0 0 +0.053 -6.983 -1.774 0 0 0 0 0 0 0 +0.075 -6.963 -1.769 0 0 0 0 0 0 0 +0.097 -6.986 -1.775 0 0 0 0 0 0 0 +0.108 -6.994 -1.777 0 0 0 0 0 0 0 +0.13 -6.988 -1.776 0 0 0 0 0 0 0 +0.152 -6.987 -1.776 0 0 0 0 0 0 0 +0.174 -6.981 -1.774 0 0 0 0 0 0 0 +0.195 -6.975 -1.773 0 0 0 0 0 0 0 +0.218 -6.986 -1.776 0 0 0 0 0 0 0 +0.239 -6.966 -1.771 0 0 0 0 0 0 0 +0.251 -6.994 -1.778 0 0 0 0 0 0 0 +0.272 -6.974 -1.773 0 0 0 0 0 0 0 +0.295 -6.989 -1.777 0 0 0 0 0 0 0 +0.316 -6.978 -1.775 0 0 0 0 0 0 0 +0.339 -6.989 -1.778 0 0 0 0 0 0 0 +0.36 -6.972 -1.774 0 0 0 0 0 0 0 +0.383 -6.996 -1.781 0 0 0 0 0 0 0 +0.405 -6.989 -1.779 0 0 0 0 0 0 0 +0.416 -6.998 -1.782 0 0 0 0 0 0 0 +0.437 -6.971 -1.775 0 0 0 0 0 0 0 +0.46 -6.991 -1.781 0 0 0 0 0 0 0 +0.482 -6.99 -1.781 0 0 0 0 0 0 0 +0.504 -6.988 -1.781 0 0 0 0 0 0 0 +0.524 -6.967 -1.775 0 0 0 0 0 0 0 +0.548 -6.983 -1.78 0 0 0 0 0 0 0 +0.558 -6.969 -1.776 0 0 0 0 0 0 0 +0.581 -6.98 -1.78 0 0 0 0 0 0 0 +0.601 -6.963 -1.776 0 0 0 0 0 0 0 +0.625 -6.984 -1.782 0 0 0 0 0 0 0 +0.645 -6.963 -1.777 0 0 0 0 0 0 0 +0.669 -6.974 -1.781 0 0 0 0 0 0 0 +0.678 -6.954 -1.775 0 0 0 0 0 0 0 +0.702 -6.979 -1.783 0 0 0 0 0 0 0 +0.725 -6.98 -1.784 0 0 0 0 0 0 0 +0.749 -6.997 -1.789 0 0 0 0 0 0 0 +0.77 -6.987 -1.787 0 0 0 0 0 0 0 +0.792 -6.989 -1.788 0 0 0 0 0 0 0 +0.814 -6.982 -1.787 0 0 0 0 0 0 0 +0.837 -6.995 -1.791 0 0 0 0 0 0 0 +0.847 -6.982 -1.788 0 0 0 0 0 0 0 +0.871 -6.997 -1.793 0 0 0 0 0 0 0 +0.893 -6.996 -1.793 0 0 0 0 0 0 0 +0.917 -7.003 -1.796 0 0 0 0 0 0 0 +0.936 -6.984 -1.792 0 0 0 0 0 0 0 +0.959 -6.983 -1.792 0 0 0 0 0 0 0 +0.981 -6.984 -1.793 0 0 0 0 0 0 0 +0.994 -6.996 -1.797 0 0 0 0 0 0 0 +1.015 -6.985 -1.795 0 0 0 0 0 0 0 +1.041 -7.011 -1.803 0 0 0 0 0 0 0 +1.058 -6.973 -1.793 0 0 0 0 0 0 0 +1.082 -6.985 -1.797 0 0 0 0 0 0 0 +1.104 -6.979 -1.797 0 0 0 0 0 0 0 +1.129 -6.993 -1.802 0 0 0 0 0 0 0 +1.136 -6.972 -1.796 0 0 0 0 0 0 0 +1.153 -6.805 -1.752 0 0 0 0 0 0 0 +1.182 -6.849 -1.765 0 0 0 0 0 0 0 +1.228 -6.982 -1.803 0 0 0 0 0 0 0 +1.251 -6.984 -1.805 0 0 0 0 0 0 0 +1.273 -6.98 -1.805 0 0 0 0 0 0 0 +1.284 -6.976 -1.804 0 0 0 0 0 0 0 +1.306 -6.976 -1.805 0 0 0 0 0 0 0 +1.331 -6.985 -1.809 0 0 0 0 0 0 0 +1.35 -6.964 -1.804 0 0 0 0 0 0 0 +1.373 -6.965 -1.806 0 0 0 0 0 0 0 +1.395 -6.964 -1.807 0 0 0 0 0 0 0 +1.422 -6.985 -1.814 0 0 0 0 0 0 0 +1.43 -6.969 -1.81 0 0 0 0 0 0 0 +1.453 -6.967 -1.81 0 0 0 0 0 0 0 +1.475 -6.962 -1.81 0 0 0 0 0 0 0 +1.498 -6.963 -1.812 0 0 0 0 0 0 0 +1.522 -6.969 -1.815 0 0 0 0 0 0 0 +1.543 -6.963 -1.815 0 0 0 0 0 0 0 +1.564 -6.95 -1.813 0 0 0 0 0 0 0 +1.576 -6.954 -1.814 0 0 0 0 0 0 0 +1.595 -6.939 -1.811 0 0 0 0 0 0 0 +1.553 -6.571 -1.711 0 0 0 0 0 0 0 +1.569 -6.549 -1.707 0 0 0 0 0 0 0 +1.585 -6.525 -1.701 0 0 0 0 0 0 0 +1.604 -6.514 -1.7 0 0 0 0 0 0 0 +1.608 -6.486 -1.693 0 0 0 0 0 0 0 +1.632 -6.494 -1.696 0 0 0 0 0 0 0 +1.663 -6.53 -1.708 0 0 0 0 0 0 0 +1.72 -6.664 -1.747 0 0 0 0 0 0 0 +1.807 -6.907 -1.817 0 0 0 0 0 0 0 +1.834 -6.922 -1.823 0 0 0 0 0 0 0 +1.845 -6.875 -1.811 0 0 0 0 0 0 0 +1.864 -6.902 -1.819 0 0 0 0 0 0 0 +1.887 -6.902 -1.821 0 0 0 0 0 0 0 +1.913 -6.912 -1.826 0 0 0 0 0 0 0 +1.929 -6.886 -1.82 0 0 0 0 0 0 0 +1.957 -6.902 -1.826 0 0 0 0 0 0 0 +1.974 -6.881 -1.822 0 0 0 0 0 0 0 +1.995 -6.873 -1.821 0 0 0 0 0 0 0 +2.012 -6.89 -1.827 0 0 0 0 0 0 0 +2.033 -6.88 -1.826 0 0 0 0 0 0 0 +2.053 -6.87 -1.825 0 0 0 0 0 0 0 +2.078 -6.875 -1.828 0 0 0 0 0 0 0 +2.099 -6.864 -1.827 0 0 0 0 0 0 0 +2.121 -6.862 -1.828 0 0 0 0 0 0 0 +2.148 -6.87 -1.832 0 0 0 0 0 0 0 +2.155 -6.855 -1.829 0 0 0 0 0 0 0 +2.179 -6.856 -1.831 0 0 0 0 0 0 0 +2.204 -6.86 -1.835 0 0 0 0 0 0 0 +2.225 -6.851 -1.834 0 0 0 0 0 0 0 +2.249 -6.851 -1.836 0 0 0 0 0 0 0 +2.268 -6.837 -1.834 0 0 0 0 0 0 0 +2.291 -6.833 -1.835 0 0 0 0 0 0 0 +2.303 -6.833 -1.836 0 0 0 0 0 0 0 +2.322 -6.821 -1.835 0 0 0 0 0 0 0 +2.345 -6.819 -1.836 0 0 0 0 0 0 0 +2.373 -6.83 -1.841 0 0 0 0 0 0 0 +2.399 -6.833 -1.845 0 0 0 0 0 0 0 +2.417 -6.818 -1.842 0 0 0 0 0 0 0 +2.443 -6.822 -1.846 0 0 0 0 0 0 0 +2.448 -6.803 -1.841 0 0 0 0 0 0 0 +2.472 -6.801 -1.843 0 0 0 0 0 0 0 +2.499 -6.809 -1.848 0 0 0 0 0 0 0 +2.518 -6.796 -1.846 0 0 0 0 0 0 0 +2.544 -6.801 -1.85 0 0 0 0 0 0 0 +2.561 -6.78 -1.846 0 0 0 0 0 0 0 +2.586 -6.783 -1.849 0 0 0 0 0 0 0 +2.596 -6.777 -1.849 0 0 0 0 0 0 0 +2.62 -6.776 -1.851 0 0 0 0 0 0 0 +2.647 -6.78 -1.854 0 0 0 0 0 0 0 +2.667 -6.768 -1.853 0 0 0 0 0 0 0 +2.696 -6.781 -1.86 0 0 0 0 0 0 0 +2.724 -6.789 -1.864 0 0 0 0 0 0 0 +2.749 -6.789 -1.867 0 0 0 0 0 0 0 +2.772 -6.814 -1.875 0 0 0 0 0 0 0 +2.799 -6.819 -1.88 0 0 0 0 0 0 0 +2.822 -6.814 -1.881 0 0 0 0 0 0 0 +2.845 -6.808 -1.882 0 0 0 0 0 0 0 +2.859 -6.782 -1.876 0 0 0 0 0 0 0 +2.873 -6.757 -1.872 0 0 0 0 0 0 0 +2.898 -6.757 -1.874 0 0 0 0 0 0 0 +2.909 -6.752 -1.874 0 0 0 0 0 0 0 +2.933 -6.75 -1.876 0 0 0 0 0 0 0 +2.95 -6.732 -1.874 0 0 0 0 0 0 0 +2.972 -6.724 -1.874 0 0 0 0 0 0 0 +2.997 -6.724 -1.877 0 0 0 0 0 0 0 +3.019 -6.716 -1.878 0 0 0 0 0 0 0 +3.035 -6.696 -1.874 0 0 0 0 0 0 0 +3.043 -6.686 -1.873 0 0 0 0 0 0 0 +3.055 -6.655 -1.867 0 0 0 0 0 0 0 +3.072 -6.637 -1.864 0 0 0 0 0 0 0 +3.087 -6.615 -1.86 0 0 0 0 0 0 0 +3.11 -6.611 -1.862 0 0 0 0 0 0 0 +3.127 -6.594 -1.86 0 0 0 0 0 0 0 +3.145 -6.577 -1.858 0 0 0 0 0 0 0 +3.153 -6.569 -1.857 0 0 0 0 0 0 0 +3.174 -6.559 -1.857 0 0 0 0 0 0 0 +3.193 -6.545 -1.856 0 0 0 0 0 0 0 +3.212 -6.532 -1.854 0 0 0 0 0 0 0 +3.232 -6.522 -1.854 0 0 0 0 0 0 0 +3.25 -6.506 -1.853 0 0 0 0 0 0 0 +3.274 -6.503 -1.855 0 0 0 0 0 0 0 +3.286 -6.501 -1.856 0 0 0 0 0 0 0 +3.304 -6.486 -1.854 0 0 0 0 0 0 0 +3.326 -6.479 -1.856 0 0 0 0 0 0 0 +3.343 -6.461 -1.853 0 0 0 0 0 0 0 +3.365 -6.456 -1.855 0 0 0 0 0 0 0 +3.382 -6.438 -1.853 0 0 0 0 0 0 0 +3.402 -6.428 -1.853 0 0 0 0 0 0 0 +3.412 -6.421 -1.852 0 0 0 0 0 0 0 +3.431 -6.408 -1.852 0 0 0 0 0 0 0 +3.455 -6.404 -1.854 0 0 0 0 0 0 0 +3.47 -6.385 -1.851 0 0 0 0 0 0 0 +3.485 -6.366 -1.849 0 0 0 0 0 0 0 +3.51 -6.363 -1.851 0 0 0 0 0 0 0 +3.533 -6.357 -1.853 0 0 0 0 0 0 0 +3.534 -6.336 -1.848 0 0 0 0 0 0 0 +3.562 -6.339 -1.852 0 0 0 0 0 0 0 +3.576 -6.317 -1.849 0 0 0 0 0 0 0 +3.603 -6.318 -1.853 0 0 0 0 0 0 0 +3.62 -6.301 -1.851 0 0 0 0 0 0 0 +3.635 -6.283 -1.849 0 0 0 0 0 0 0 +3.657 -6.275 -1.85 0 0 0 0 0 0 0 +3.668 -6.271 -1.851 0 0 0 0 0 0 0 +3.68 -6.246 -1.847 0 0 0 0 0 0 0 +3.696 -6.23 -1.845 0 0 0 0 0 0 0 +3.723 -6.23 -1.849 0 0 0 0 0 0 0 +3.739 -6.213 -1.847 0 0 0 0 0 0 0 +3.76 -6.203 -1.848 0 0 0 0 0 0 0 +3.775 -6.184 -1.846 0 0 0 0 0 0 0 +3.789 -6.185 -1.848 0 0 0 0 0 0 0 +3.797 -6.155 -1.842 0 0 0 0 0 0 0 +3.82 -6.148 -1.843 0 0 0 0 0 0 0 +3.838 -6.134 -1.843 0 0 0 0 0 0 0 +3.859 -6.126 -1.844 0 0 0 0 0 0 0 +3.881 -6.117 -1.845 0 0 0 0 0 0 0 +3.896 -6.098 -1.843 0 0 0 0 0 0 0 +3.897 -6.079 -1.839 0 0 0 0 0 0 0 +3.92 -6.073 -1.841 0 0 0 0 0 0 0 +3.935 -6.054 -1.839 0 0 0 0 0 0 0 +3.956 -6.045 -1.84 0 0 0 0 0 0 0 +3.984 -6.045 -1.844 0 0 0 0 0 0 0 +3.995 -6.022 -1.84 0 0 0 0 0 0 0 +4.011 -6.004 -1.839 0 0 0 0 0 0 0 +4.019 -5.996 -1.838 0 0 0 0 0 0 0 +4.039 -5.985 -1.839 0 0 0 0 0 0 0 +4.064 -5.982 -1.842 0 0 0 0 0 0 0 +4.079 -5.963 -1.84 0 0 0 0 0 0 0 +4.089 -5.937 -1.836 0 0 0 0 0 0 0 +4.115 -5.936 -1.839 0 0 0 0 0 0 0 +4.132 -5.921 -1.839 0 0 0 0 0 0 0 +4.136 -5.907 -1.836 0 0 0 0 0 0 0 +4.168 -5.913 -1.842 0 0 0 0 0 0 0 +4.182 -5.893 -1.84 0 0 0 0 0 0 0 +4.2 -5.878 -1.84 0 0 0 0 0 0 0 +4.213 -5.859 -1.838 0 0 0 0 0 0 0 +4.228 -5.841 -1.836 0 0 0 0 0 0 0 +4.248 -5.829 -1.837 0 0 0 0 0 0 0 +4.266 -5.816 -1.837 0 0 0 0 0 0 0 +4.274 -5.808 -1.836 0 0 0 0 0 0 0 +4.296 -5.799 -1.838 0 0 0 0 0 0 0 +4.312 -5.782 -1.837 0 0 0 0 0 0 0 +4.325 -5.763 -1.835 0 0 0 0 0 0 0 +4.342 -5.747 -1.834 0 0 0 0 0 0 0 +4.364 -5.738 -1.836 0 0 0 0 0 0 0 +4.379 -5.722 -1.835 0 0 0 0 0 0 0 +4.38 -5.704 -1.831 0 0 0 0 0 0 0 +4.398 -5.69 -1.831 0 0 0 0 0 0 0 +4.424 -5.687 -1.835 0 0 0 0 0 0 0 +4.444 -5.676 -1.836 0 0 0 0 0 0 0 +4.463 -5.664 -1.836 0 0 0 0 0 0 0 +4.472 -5.637 -1.832 0 0 0 0 0 0 0 +4.479 -5.629 -1.831 0 0 0 0 0 0 0 +4.492 -5.609 -1.829 0 0 0 0 0 0 0 +4.521 -5.608 -1.834 0 0 0 0 0 0 0 +4.53 -5.583 -1.83 0 0 0 0 0 0 0 +4.557 -5.581 -1.835 0 0 0 0 0 0 0 +4.571 -5.562 -1.833 0 0 0 0 0 0 0 +4.591 -5.551 -1.834 0 0 0 0 0 0 0 +4.587 -5.529 -1.829 0 0 0 0 0 0 0 +4.604 -5.514 -1.829 0 0 0 0 0 0 0 +4.625 -5.504 -1.83 0 0 0 0 0 0 0 +4.64 -5.487 -1.829 0 0 0 0 0 0 0 +4.654 -5.468 -1.828 0 0 0 0 0 0 0 +4.68 -5.463 -1.831 0 0 0 0 0 0 0 +4.684 -5.434 -1.826 0 0 0 0 0 0 0 +4.698 -5.433 -1.828 0 0 0 0 0 0 0 +4.706 -5.408 -1.825 0 0 0 0 0 0 0 +4.728 -5.399 -1.827 0 0 0 0 0 0 0 +4.74 -5.378 -1.825 0 0 0 0 0 0 0 +4.758 -5.365 -1.825 0 0 0 0 0 0 0 +4.77 -5.344 -1.823 0 0 0 0 0 0 0 +4.793 -5.336 -1.826 0 0 0 0 0 0 0 +4.804 -5.315 -1.824 0 0 0 0 0 0 0 +4.811 -5.306 -1.823 0 0 0 0 0 0 0 +4.82 -5.282 -1.82 0 0 0 0 0 0 0 +4.835 -5.266 -1.819 0 0 0 0 0 0 0 +4.848 -5.246 -1.818 0 0 0 0 0 0 0 +4.88 -5.248 -1.824 0 0 0 0 0 0 0 +4.885 -5.22 -1.819 0 0 0 0 0 0 0 +4.903 -5.206 -1.82 0 0 0 0 0 0 0 +4.904 -5.191 -1.817 0 0 0 0 0 0 0 +4.93 -5.186 -1.821 0 0 0 0 0 0 0 +4.937 -5.161 -1.817 0 0 0 0 0 0 0 +4.943 -5.135 -1.814 0 0 0 0 0 0 0 +4.972 -5.132 -1.818 0 0 0 0 0 0 0 +4.99 -5.119 -1.819 0 0 0 0 0 0 0 +4.99 -5.087 -1.813 0 0 0 0 0 0 0 +5.004 -5.085 -1.815 0 0 0 0 0 0 0 +5.024 -5.073 -1.817 0 0 0 0 0 0 0 +5.035 -5.053 -1.815 0 0 0 0 0 0 0 +5.047 -5.033 -1.814 0 0 0 0 0 0 0 +5.066 -5.02 -1.815 0 0 0 0 0 0 0 +5.083 -5.006 -1.815 0 0 0 0 0 0 0 +5.087 -4.993 -1.814 0 0 0 0 0 0 0 +5.093 -4.968 -1.81 0 0 0 0 0 0 0 +5.121 -4.964 -1.815 0 0 0 0 0 0 0 +5.135 -4.947 -1.814 0 0 0 0 0 0 0 +5.147 -4.928 -1.813 0 0 0 0 0 0 0 +5.156 -4.905 -1.81 0 0 0 0 0 0 0 +5.166 -4.884 -1.808 0 0 0 0 0 0 0 +5.189 -4.875 -1.811 0 0 0 0 0 0 0 +5.191 -4.862 -1.809 0 0 0 0 0 0 0 +5.204 -4.843 -1.808 0 0 0 0 0 0 0 +5.228 -4.834 -1.811 0 0 0 0 0 0 0 +5.244 -4.819 -1.812 0 0 0 0 0 0 0 +5.251 -4.795 -1.809 0 0 0 0 0 0 0 +5.259 -4.772 -1.806 0 0 0 0 0 0 0 +5.274 -4.755 -1.806 0 0 0 0 0 0 0 +5.284 -4.75 -1.807 0 0 0 0 0 0 0 +5.306 -4.739 -1.81 0 0 0 0 0 0 0 +5.306 -4.71 -1.805 0 0 0 0 0 0 0 +5.327 -4.698 -1.807 0 0 0 0 0 0 0 +5.326 -4.668 -1.801 0 0 0 0 0 0 0 +5.346 -4.656 -1.803 0 0 0 0 0 0 0 +5.359 -4.638 -1.803 0 0 0 0 0 0 0 +5.364 -4.627 -1.802 0 0 0 0 0 0 0 +5.377 -4.609 -1.801 0 0 0 0 0 0 0 +5.385 -4.587 -1.799 0 0 0 0 0 0 0 +5.398 -4.569 -1.798 0 0 0 0 0 0 0 +5.423 -4.56 -1.802 0 0 0 0 0 0 0 +5.437 -4.543 -1.802 0 0 0 0 0 0 0 +5.448 -4.524 -1.801 0 0 0 0 0 0 0 +5.447 -4.508 -1.798 0 0 0 0 0 0 0 +5.452 -4.483 -1.795 0 0 0 0 0 0 0 +5.463 -4.464 -1.794 0 0 0 0 0 0 0 +5.487 -4.455 -1.797 0 0 0 0 0 0 0 +5.486 -4.426 -1.792 0 0 0 0 0 0 0 +5.509 -4.416 -1.795 0 0 0 0 0 0 0 +5.525 -4.414 -1.798 0 0 0 0 0 0 0 +5.522 -4.384 -1.793 0 0 0 0 0 0 0 +5.524 -4.357 -1.788 0 0 0 0 0 0 0 +5.547 -4.347 -1.792 0 0 0 0 0 0 0 +5.56 -4.329 -1.792 0 0 0 0 0 0 0 +5.58 -4.316 -1.794 0 0 0 0 0 0 0 +5.577 -4.286 -1.788 0 0 0 0 0 0 0 +5.598 -4.274 -1.791 0 0 0 0 0 0 0 +5.609 -4.269 -1.792 0 0 0 0 0 0 0 +5.621 -4.25 -1.792 0 0 0 0 0 0 0 +5.619 -4.221 -1.786 0 0 0 0 0 0 0 +5.646 -4.214 -1.791 0 0 0 0 0 0 0 +5.658 -4.195 -1.791 0 0 0 0 0 0 0 +5.663 -4.171 -1.788 0 0 0 0 0 0 0 +5.671 -4.15 -1.786 0 0 0 0 0 0 0 +5.679 -4.142 -1.787 0 0 0 0 0 0 0 +5.692 -4.124 -1.787 0 0 0 0 0 0 0 +5.709 -4.109 -1.788 0 0 0 0 0 0 0 +5.721 -4.091 -1.788 0 0 0 0 0 0 0 +5.722 -4.064 -1.784 0 0 0 0 0 0 0 +5.726 -4.04 -1.781 0 0 0 0 0 0 0 +5.741 -4.023 -1.782 0 0 0 0 0 0 0 +5.75 -4.017 -1.783 0 0 0 0 0 0 0 +5.768 -4.002 -1.784 0 0 0 0 0 0 0 +5.775 -3.98 -1.783 0 0 0 0 0 0 0 +5.783 -3.959 -1.781 0 0 0 0 0 0 0 +5.797 -3.942 -1.782 0 0 0 0 0 0 0 +5.803 -3.919 -1.78 0 0 0 0 0 0 0 +5.822 -3.905 -1.782 0 0 0 0 0 0 0 +5.823 -3.893 -1.78 0 0 0 0 0 0 0 +5.825 -3.868 -1.777 0 0 0 0 0 0 0 +5.852 -3.859 -1.782 0 0 0 0 0 0 0 +5.832 -3.82 -1.771 0 0 0 0 0 0 0 +5.858 -3.811 -1.776 0 0 0 0 0 0 0 +5.872 -3.794 -1.776 0 0 0 0 0 0 0 +5.881 -3.773 -1.775 0 0 0 0 0 0 0 +5.895 -3.769 -1.778 0 0 0 0 0 0 0 +5.892 -3.741 -1.773 0 0 0 0 0 0 0 +5.899 -3.72 -1.772 0 0 0 0 0 0 0 +5.912 -3.702 -1.772 0 0 0 0 0 0 0 +5.932 -3.689 -1.775 0 0 0 0 0 0 0 +5.948 -3.673 -1.776 0 0 0 0 0 0 0 +5.948 -3.647 -1.773 0 0 0 0 0 0 0 +5.952 -3.637 -1.772 0 0 0 0 0 0 0 +5.946 -3.607 -1.766 0 0 0 0 0 0 0 +5.957 -3.589 -1.766 0 0 0 0 0 0 0 +5.98 -3.577 -1.77 0 0 0 0 0 0 0 +6.008 -3.568 -1.775 0 0 0 0 0 0 0 +6.01 -3.544 -1.773 0 0 0 0 0 0 0 +6.023 -3.526 -1.773 0 0 0 0 0 0 0 +6.017 -3.51 -1.77 0 0 0 0 0 0 0 +6.031 -3.493 -1.771 0 0 0 0 0 0 0 +6.047 -3.477 -1.772 0 0 0 0 0 0 0 +6.055 -3.456 -1.771 0 0 0 0 0 0 0 +6.064 -3.436 -1.771 0 0 0 0 0 0 0 +6.085 -3.422 -1.774 0 0 0 0 0 0 0 +6.092 -3.401 -1.773 0 0 0 0 0 0 0 +6.098 -3.392 -1.773 0 0 0 0 0 0 0 +6.101 -3.369 -1.771 0 0 0 0 0 0 0 +6.11 -3.349 -1.77 0 0 0 0 0 0 0 +6.126 -3.332 -1.772 0 0 0 0 0 0 0 +6.136 -3.313 -1.772 0 0 0 0 0 0 0 +6.145 -3.293 -1.771 0 0 0 0 0 0 0 +6.15 -3.271 -1.77 0 0 0 0 0 0 0 +6.171 -3.269 -1.774 0 0 0 0 0 0 0 +6.179 -3.249 -1.774 0 0 0 0 0 0 0 +6.179 -3.224 -1.771 0 0 0 0 0 0 0 +6.186 -3.203 -1.77 0 0 0 0 0 0 0 +6.199 -3.185 -1.771 0 0 0 0 0 0 0 +6.216 -3.169 -1.773 0 0 0 0 0 0 0 +6.229 -3.152 -1.774 0 0 0 0 0 0 0 +6.229 -3.139 -1.772 0 0 0 0 0 0 0 +6.232 -3.116 -1.77 0 0 0 0 0 0 0 +6.252 -3.102 -1.773 0 0 0 0 0 0 0 +6.255 -3.079 -1.771 0 0 0 0 0 0 0 +6.268 -3.061 -1.772 0 0 0 0 0 0 0 +6.285 -3.044 -1.774 0 0 0 0 0 0 0 +6.294 -3.025 -1.774 0 0 0 0 0 0 0 +6.301 -3.015 -1.775 0 0 0 0 0 0 0 +6.314 -2.997 -1.776 0 0 0 0 0 0 0 +6.32 -2.976 -1.775 0 0 0 0 0 0 0 +6.334 -2.958 -1.776 0 0 0 0 0 0 0 +6.345 -2.939 -1.777 0 0 0 0 0 0 0 +6.346 -2.915 -1.774 0 0 0 0 0 0 0 +6.348 -2.892 -1.772 0 0 0 0 0 0 0 +6.349 -2.881 -1.771 0 0 0 0 0 0 0 +6.352 -2.858 -1.77 0 0 0 0 0 0 0 +6.361 -2.838 -1.77 0 0 0 0 0 0 0 +6.379 -2.822 -1.772 0 0 0 0 0 0 0 +6.388 -2.802 -1.772 0 0 0 0 0 0 0 +6.4 -2.784 -1.773 0 0 0 0 0 0 0 +6.402 -2.76 -1.771 0 0 0 0 0 0 0 +6.411 -2.753 -1.773 0 0 0 0 0 0 0 +6.424 -2.734 -1.774 0 0 0 0 0 0 0 +6.425 -2.711 -1.772 0 0 0 0 0 0 0 +6.432 -2.69 -1.771 0 0 0 0 0 0 0 +6.444 -2.671 -1.772 0 0 0 0 0 0 0 +6.472 -2.659 -1.778 0 0 0 0 0 0 0 +6.484 -2.64 -1.779 0 0 0 0 0 0 0 +6.495 -2.633 -1.781 0 0 0 0 0 0 0 +6.516 -2.617 -1.785 0 0 0 0 0 0 0 +6.52 -2.595 -1.784 0 0 0 0 0 0 0 +6.523 -2.573 -1.782 0 0 0 0 0 0 0 +6.544 -2.557 -1.786 0 0 0 0 0 0 0 +6.53 -2.528 -1.78 0 0 0 0 0 0 0 +6.531 -2.505 -1.777 0 0 0 0 0 0 0 +6.538 -2.496 -1.778 0 0 0 0 0 0 0 +6.543 -2.474 -1.777 0 0 0 0 0 0 0 +6.552 -2.454 -1.778 0 0 0 0 0 0 0 +6.567 -2.436 -1.78 0 0 0 0 0 0 0 +6.56 -2.41 -1.776 0 0 0 0 0 0 0 +6.58 -2.394 -1.78 0 0 0 0 0 0 0 +6.577 -2.37 -1.776 0 0 0 0 0 0 0 +6.566 -2.354 -1.772 0 0 0 0 0 0 0 +6.577 -2.335 -1.773 0 0 0 0 0 0 0 +6.566 -2.308 -1.768 0 0 0 0 0 0 0 +6.579 -2.289 -1.77 0 0 0 0 0 0 0 +6.604 -2.275 -1.775 0 0 0 0 0 0 0 +6.595 -2.248 -1.77 0 0 0 0 0 0 0 +6.589 -2.223 -1.766 0 0 0 0 0 0 0 +6.602 -2.216 -1.769 0 0 0 0 0 0 0 +6.607 -2.195 -1.769 0 0 0 0 0 0 0 +6.608 -2.172 -1.767 0 0 0 0 0 0 0 +6.617 -2.152 -1.767 0 0 0 0 0 0 0 +6.611 -2.127 -1.764 0 0 0 0 0 0 0 +6.625 -2.109 -1.766 0 0 0 0 0 0 0 +6.63 -2.087 -1.765 0 0 0 0 0 0 0 +6.62 -2.073 -1.762 0 0 0 0 0 0 0 +6.63 -2.053 -1.763 0 0 0 0 0 0 0 +6.644 -2.035 -1.765 0 0 0 0 0 0 0 +6.635 -2.009 -1.761 0 0 0 0 0 0 0 +6.632 -1.986 -1.758 0 0 0 0 0 0 0 +6.65 -1.968 -1.761 0 0 0 0 0 0 0 +6.645 -1.944 -1.758 0 0 0 0 0 0 0 +6.652 -1.935 -1.759 0 0 0 0 0 0 0 +6.665 -1.916 -1.761 0 0 0 0 0 0 0 +6.662 -1.892 -1.759 0 0 0 0 0 0 0 +6.681 -1.875 -1.762 0 0 0 0 0 0 0 +6.681 -1.852 -1.761 0 0 0 0 0 0 0 +6.676 -1.828 -1.758 0 0 0 0 0 0 0 +6.681 -1.807 -1.758 0 0 0 0 0 0 0 +6.687 -1.786 -1.758 0 0 0 0 0 0 0 +6.699 -1.778 -1.76 0 0 0 0 0 0 0 +6.701 -1.756 -1.759 0 0 0 0 0 0 0 +6.699 -1.733 -1.757 0 0 0 0 0 0 0 +6.701 -1.711 -1.756 0 0 0 0 0 0 0 +6.706 -1.69 -1.756 0 0 0 0 0 0 0 +6.717 -1.671 -1.758 0 0 0 0 0 0 0 +6.716 -1.648 -1.756 0 0 0 0 0 0 0 +6.723 -1.638 -1.757 0 0 0 0 0 0 0 +6.718 -1.615 -1.754 0 0 0 0 0 0 0 +6.731 -1.596 -1.756 0 0 0 0 0 0 0 +6.719 -1.571 -1.752 0 0 0 0 0 0 0 +6.733 -1.552 -1.754 0 0 0 0 0 0 0 +6.729 -1.528 -1.752 0 0 0 0 0 0 0 +6.737 -1.519 -1.753 0 0 0 0 0 0 0 +6.743 -1.498 -1.754 0 0 0 0 0 0 0 +6.739 -1.475 -1.751 0 0 0 0 0 0 0 +6.753 -1.456 -1.754 0 0 0 0 0 0 0 +6.759 -1.435 -1.754 0 0 0 0 0 0 0 +6.745 -1.41 -1.749 0 0 0 0 0 0 0 +6.755 -1.39 -1.751 0 0 0 0 0 0 0 +6.75 -1.367 -1.748 0 0 0 0 0 0 0 +6.763 -1.359 -1.751 0 0 0 0 0 0 0 +6.767 -1.337 -1.751 0 0 0 0 0 0 0 +6.768 -1.315 -1.75 0 0 0 0 0 0 0 +6.781 -1.296 -1.753 0 0 0 0 0 0 0 +6.763 -1.27 -1.747 0 0 0 0 0 0 0 +6.767 -1.249 -1.747 0 0 0 0 0 0 0 +6.784 -1.23 -1.75 0 0 0 0 0 0 0 +6.774 -1.217 -1.747 0 0 0 0 0 0 0 +6.784 -1.197 -1.749 0 0 0 0 0 0 0 +6.789 -1.176 -1.749 0 0 0 0 0 0 0 +6.799 -1.156 -1.751 0 0 0 0 0 0 0 +6.797 -1.133 -1.749 0 0 0 0 0 0 0 +6.804 -1.113 -1.75 0 0 0 0 0 0 0 +6.806 -1.091 -1.75 0 0 0 0 0 0 0 +6.809 -1.081 -1.75 0 0 0 0 0 0 0 +6.807 -1.058 -1.749 0 0 0 0 0 0 0 +6.801 -1.036 -1.746 0 0 0 0 0 0 0 +6.8 -1.014 -1.745 0 0 0 0 0 0 0 +6.794 -0.991 -1.742 0 0 0 0 0 0 0 +6.808 -0.971 -1.745 0 0 0 0 0 0 0 +6.813 -0.95 -1.746 0 0 0 0 0 0 0 +6.824 -0.941 -1.749 0 0 0 0 0 0 0 +6.823 -0.919 -1.748 0 0 0 0 0 0 0 +6.78 -0.891 -1.735 0 0 0 0 0 0 0 +6.812 -0.874 -1.743 0 0 0 0 0 0 0 +6.801 -0.851 -1.739 0 0 0 0 0 0 0 +6.815 -0.831 -1.742 0 0 0 0 0 0 0 +6.818 -0.809 -1.742 0 0 0 0 0 0 0 +6.819 -0.799 -1.742 0 0 0 0 0 0 0 +6.825 -0.777 -1.743 0 0 0 0 0 0 0 +6.828 -0.756 -1.743 0 0 0 0 0 0 0 +6.832 -0.735 -1.744 0 0 0 0 0 0 0 +6.836 -0.714 -1.744 0 0 0 0 0 0 0 +6.838 -0.692 -1.744 0 0 0 0 0 0 0 +6.833 -0.67 -1.742 0 0 0 0 0 0 0 +6.855 -0.661 -1.748 0 0 0 0 0 0 0 +6.872 -0.641 -1.752 0 0 0 0 0 0 0 +6.832 -0.616 -1.741 0 0 0 0 0 0 0 +6.845 -0.595 -1.744 0 0 0 0 0 0 0 +6.847 -0.574 -1.744 0 0 0 0 0 0 0 +6.851 -0.552 -1.744 0 0 0 0 0 0 0 +6.855 -0.531 -1.745 0 0 0 0 0 0 0 +6.844 -0.519 -1.742 0 0 0 0 0 0 0 +6.844 -0.498 -1.741 0 0 0 0 0 0 0 +6.847 -0.476 -1.742 0 0 0 0 0 0 0 +6.852 -0.455 -1.743 0 0 0 0 0 0 0 +6.852 -0.433 -1.742 0 0 0 0 0 0 0 +6.847 -0.412 -1.741 0 0 0 0 0 0 0 +6.852 -0.39 -1.742 0 0 0 0 0 0 0 +6.849 -0.379 -1.741 0 0 0 0 0 0 0 +6.843 -0.357 -1.739 0 0 0 0 0 0 0 +6.846 -0.336 -1.739 0 0 0 0 0 0 0 +6.837 -0.314 -1.737 0 0 0 0 0 0 0 +6.844 -0.293 -1.738 0 0 0 0 0 0 0 +6.847 -0.271 -1.739 0 0 0 0 0 0 0 +6.836 -0.249 -1.736 0 0 0 0 0 0 0 +6.819 -0.238 -1.731 0 0 0 0 0 0 0 +6.82 -0.217 -1.731 0 0 0 0 0 0 0 +6.834 -0.196 -1.734 0 0 0 0 0 0 0 +6.848 -0.174 -1.738 0 0 0 0 0 0 0 +6.848 -0.153 -1.738 0 0 0 0 0 0 0 +6.837 -0.131 -1.735 0 0 0 0 0 0 0 +6.839 -0.11 -1.736 0 0 0 0 0 0 0 +6.847 -0.099 -1.738 0 0 0 0 0 0 0 +6.832 -0.078 -1.733 0 0 0 0 0 0 0 +6.815 -0.056 -1.729 0 0 0 0 0 0 0 +6.829 -0.035 -1.732 0 0 0 0 0 0 0 +6.819 -0.013 -1.73 0 0 0 0 0 0 0 +6.561 0.008 -1.718 0 0 0 0 0 0 0 +6.569 0.029 -1.72 0 0 0 0 0 0 0 +6.554 0.049 -1.716 0 0 0 0 0 0 0 +6.567 0.07 -1.719 0 0 0 0 0 0 0 +6.565 0.091 -1.719 0 0 0 0 0 0 0 +6.553 0.101 -1.716 0 0 0 0 0 0 0 +6.551 0.121 -1.715 0 0 0 0 0 0 0 +6.552 0.142 -1.716 0 0 0 0 0 0 0 +6.561 0.163 -1.718 0 0 0 0 0 0 0 +6.534 0.183 -1.711 0 0 0 0 0 0 0 +6.541 0.203 -1.713 0 0 0 0 0 0 0 +6.548 0.224 -1.715 0 0 0 0 0 0 0 +6.544 0.234 -1.714 0 0 0 0 0 0 0 +6.547 0.255 -1.715 0 0 0 0 0 0 0 +6.546 0.276 -1.715 0 0 0 0 0 0 0 +6.553 0.296 -1.717 0 0 0 0 0 0 0 +6.54 0.317 -1.714 0 0 0 0 0 0 0 +6.543 0.337 -1.715 0 0 0 0 0 0 0 +6.536 0.357 -1.713 0 0 0 0 0 0 0 +6.54 0.368 -1.715 0 0 0 0 0 0 0 +6.531 0.388 -1.712 0 0 0 0 0 0 0 +6.547 0.41 -1.717 0 0 0 0 0 0 0 +6.528 0.429 -1.712 0 0 0 0 0 0 0 +6.534 0.45 -1.715 0 0 0 0 0 0 0 +6.518 0.47 -1.71 0 0 0 0 0 0 0 +6.514 0.49 -1.71 0 0 0 0 0 0 0 +6.519 0.501 -1.711 0 0 0 0 0 0 0 +6.521 0.521 -1.712 0 0 0 0 0 0 0 +6.518 0.542 -1.712 0 0 0 0 0 0 0 +6.503 0.561 -1.708 0 0 0 0 0 0 0 +6.503 0.582 -1.709 0 0 0 0 0 0 0 +6.509 0.603 -1.711 0 0 0 0 0 0 0 +6.518 0.624 -1.714 0 0 0 0 0 0 0 +6.503 0.643 -1.71 0 0 0 0 0 0 0 +6.498 0.653 -1.709 0 0 0 0 0 0 0 +6.498 0.674 -1.71 0 0 0 0 0 0 0 +6.494 0.694 -1.709 0 0 0 0 0 0 0 +6.491 0.715 -1.709 0 0 0 0 0 0 0 +6.512 0.737 -1.716 0 0 0 0 0 0 0 +6.514 0.758 -1.717 0 0 0 0 0 0 0 +6.505 0.778 -1.715 0 0 0 0 0 0 0 +6.483 0.786 -1.709 0 0 0 0 0 0 0 +6.483 0.806 -1.71 0 0 0 0 0 0 0 +6.474 0.826 -1.708 0 0 0 0 0 0 0 +6.472 0.846 -1.708 0 0 0 0 0 0 0 +6.465 0.866 -1.707 0 0 0 0 0 0 0 +6.46 0.886 -1.706 0 0 0 0 0 0 0 +6.458 0.907 -1.706 0 0 0 0 0 0 0 +6.458 0.917 -1.707 0 0 0 0 0 0 0 +6.453 0.937 -1.706 0 0 0 0 0 0 0 +6.454 0.958 -1.708 0 0 0 0 0 0 0 +6.451 0.978 -1.708 0 0 0 0 0 0 0 +6.437 0.997 -1.704 0 0 0 0 0 0 0 +6.437 1.017 -1.705 0 0 0 0 0 0 0 +6.426 1.036 -1.703 0 0 0 0 0 0 0 +6.438 1.049 -1.707 0 0 0 0 0 0 0 +6.429 1.068 -1.705 0 0 0 0 0 0 0 +6.437 1.09 -1.709 0 0 0 0 0 0 0 +6.424 1.109 -1.706 0 0 0 0 0 0 0 +6.421 1.129 -1.706 0 0 0 0 0 0 0 +6.421 1.15 -1.707 0 0 0 0 0 0 0 +6.413 1.169 -1.706 0 0 0 0 0 0 0 +6.402 1.178 -1.703 0 0 0 0 0 0 0 +6.4 1.198 -1.704 0 0 0 0 0 0 0 +6.4 1.219 -1.705 0 0 0 0 0 0 0 +6.389 1.237 -1.703 0 0 0 0 0 0 0 +6.404 1.261 -1.708 0 0 0 0 0 0 0 +6.394 1.28 -1.706 0 0 0 0 0 0 0 +6.396 1.301 -1.708 0 0 0 0 0 0 0 +6.388 1.31 -1.706 0 0 0 0 0 0 0 +6.384 1.33 -1.706 0 0 0 0 0 0 0 +6.383 1.351 -1.708 0 0 0 0 0 0 0 +6.368 1.369 -1.704 0 0 0 0 0 0 0 +6.379 1.392 -1.709 0 0 0 0 0 0 0 +6.367 1.41 -1.706 0 0 0 0 0 0 0 +6.362 1.43 -1.706 0 0 0 0 0 0 0 +6.351 1.438 -1.704 0 0 0 0 0 0 0 +6.353 1.46 -1.706 0 0 0 0 0 0 0 +6.347 1.48 -1.705 0 0 0 0 0 0 0 +6.354 1.502 -1.709 0 0 0 0 0 0 0 +6.351 1.522 -1.709 0 0 0 0 0 0 0 +6.336 1.54 -1.706 0 0 0 0 0 0 0 +6.345 1.563 -1.71 0 0 0 0 0 0 0 +6.333 1.571 -1.708 0 0 0 0 0 0 0 +6.334 1.592 -1.709 0 0 0 0 0 0 0 +6.319 1.61 -1.706 0 0 0 0 0 0 0 +6.316 1.63 -1.707 0 0 0 0 0 0 0 +6.315 1.651 -1.708 0 0 0 0 0 0 0 +6.335 1.677 -1.716 0 0 0 0 0 0 0 +6.298 1.689 -1.706 0 0 0 0 0 0 0 +6.307 1.702 -1.71 0 0 0 0 0 0 0 +6.313 1.725 -1.713 0 0 0 0 0 0 0 +6.285 1.738 -1.706 0 0 0 0 0 0 0 +6.287 1.76 -1.709 0 0 0 0 0 0 0 +6.276 1.778 -1.707 0 0 0 0 0 0 0 +6.279 1.801 -1.71 0 0 0 0 0 0 0 +6.266 1.818 -1.708 0 0 0 0 0 0 0 +6.258 1.827 -1.706 0 0 0 0 0 0 0 +6.261 1.849 -1.709 0 0 0 0 0 0 0 +6.267 1.872 -1.712 0 0 0 0 0 0 0 +6.25 1.888 -1.709 0 0 0 0 0 0 0 +6.242 1.907 -1.708 0 0 0 0 0 0 0 +6.245 1.93 -1.711 0 0 0 0 0 0 0 +6.23 1.946 -1.708 0 0 0 0 0 0 0 +6.229 1.957 -1.709 0 0 0 0 0 0 0 +6.224 1.977 -1.709 0 0 0 0 0 0 0 +6.227 1.999 -1.712 0 0 0 0 0 0 0 +6.224 2.02 -1.713 0 0 0 0 0 0 0 +6.213 2.038 -1.711 0 0 0 0 0 0 0 +6.192 2.053 -1.707 0 0 0 0 0 0 0 +6.194 2.075 -1.71 0 0 0 0 0 0 0 +6.193 2.085 -1.71 0 0 0 0 0 0 0 +6.19 2.106 -1.711 0 0 0 0 0 0 0 +6.19 2.128 -1.713 0 0 0 0 0 0 0 +6.175 2.144 -1.711 0 0 0 0 0 0 0 +6.173 2.166 -1.712 0 0 0 0 0 0 0 +6.183 2.191 -1.717 0 0 0 0 0 0 0 +6.165 2.206 -1.714 0 0 0 0 0 0 0 +6.151 2.223 -1.712 0 0 0 0 0 0 0 +6.158 2.237 -1.715 0 0 0 0 0 0 0 +6.144 2.253 -1.713 0 0 0 0 0 0 0 +6.13 2.27 -1.711 0 0 0 0 0 0 0 +6.139 2.295 -1.716 0 0 0 0 0 0 0 +6.122 2.311 -1.713 0 0 0 0 0 0 0 +6.115 2.33 -1.713 0 0 0 0 0 0 0 +6.135 2.349 -1.72 0 0 0 0 0 0 0 +6.109 2.361 -1.715 0 0 0 0 0 0 0 +6.1 2.38 -1.714 0 0 0 0 0 0 0 +6.091 2.398 -1.713 0 0 0 0 0 0 0 +6.11 2.428 -1.722 0 0 0 0 0 0 0 +6.078 2.437 -1.714 0 0 0 0 0 0 0 +6.077 2.459 -1.716 0 0 0 0 0 0 0 +6.07 2.467 -1.715 0 0 0 0 0 0 0 +6.056 2.484 -1.713 0 0 0 0 0 0 0 +6.057 2.507 -1.716 0 0 0 0 0 0 0 +6.057 2.529 -1.718 0 0 0 0 0 0 0 +6.036 2.542 -1.715 0 0 0 0 0 0 0 +6.035 2.564 -1.717 0 0 0 0 0 0 0 +6.027 2.583 -1.717 0 0 0 0 0 0 0 +6.023 2.593 -1.717 0 0 0 0 0 0 0 +6.013 2.611 -1.716 0 0 0 0 0 0 0 +6.023 2.637 -1.722 0 0 0 0 0 0 0 +6.002 2.651 -1.718 0 0 0 0 0 0 0 +6.006 2.675 -1.722 0 0 0 0 0 0 0 +5.989 2.69 -1.719 0 0 0 0 0 0 0 +5.975 2.707 -1.717 0 0 0 0 0 0 0 +5.967 2.725 -1.717 0 0 0 0 0 0 0 +5.967 2.737 -1.719 0 0 0 0 0 0 0 +5.969 2.761 -1.722 0 0 0 0 0 0 0 +5.952 2.775 -1.719 0 0 0 0 0 0 0 +5.934 2.79 -1.717 0 0 0 0 0 0 0 +5.933 2.812 -1.719 0 0 0 0 0 0 0 +5.929 2.833 -1.72 0 0 0 0 0 0 0 +5.906 2.845 -1.716 0 0 0 0 0 0 0 +5.909 2.858 -1.718 0 0 0 0 0 0 0 +5.901 2.877 -1.719 0 0 0 0 0 0 0 +5.884 2.891 -1.716 0 0 0 0 0 0 0 +5.874 2.91 -1.716 0 0 0 0 0 0 0 +5.867 2.929 -1.717 0 0 0 0 0 0 0 +5.863 2.95 -1.718 0 0 0 0 0 0 0 +5.855 2.958 -1.717 0 0 0 0 0 0 0 +5.847 2.977 -1.718 0 0 0 0 0 0 0 +5.828 2.99 -1.715 0 0 0 0 0 0 0 +5.825 3.012 -1.717 0 0 0 0 0 0 0 +5.812 3.028 -1.716 0 0 0 0 0 0 0 +5.801 3.046 -1.715 0 0 0 0 0 0 0 +5.795 3.066 -1.716 0 0 0 0 0 0 0 +5.79 3.075 -1.716 0 0 0 0 0 0 0 +5.777 3.091 -1.715 0 0 0 0 0 0 0 +5.767 3.109 -1.715 0 0 0 0 0 0 0 +5.756 3.126 -1.715 0 0 0 0 0 0 0 +5.759 3.152 -1.719 0 0 0 0 0 0 0 +5.749 3.17 -1.719 0 0 0 0 0 0 0 +5.741 3.189 -1.719 0 0 0 0 0 0 0 +5.731 3.195 -1.718 0 0 0 0 0 0 0 +5.719 3.212 -1.717 0 0 0 0 0 0 0 +5.711 3.231 -1.718 0 0 0 0 0 0 0 +5.687 3.241 -1.713 0 0 0 0 0 0 0 +5.692 3.268 -1.718 0 0 0 0 0 0 0 +5.678 3.284 -1.717 0 0 0 0 0 0 0 +5.671 3.303 -1.718 0 0 0 0 0 0 0 +5.661 3.309 -1.717 0 0 0 0 0 0 0 +5.652 3.328 -1.717 0 0 0 0 0 0 0 +5.639 3.344 -1.716 0 0 0 0 0 0 0 +5.628 3.362 -1.716 0 0 0 0 0 0 0 +5.614 3.377 -1.715 0 0 0 0 0 0 0 +5.602 3.394 -1.715 0 0 0 0 0 0 0 +5.593 3.413 -1.715 0 0 0 0 0 0 0 +5.579 3.416 -1.712 0 0 0 0 0 0 0 +5.573 3.437 -1.714 0 0 0 0 0 0 0 +5.569 3.458 -1.716 0 0 0 0 0 0 0 +5.552 3.472 -1.714 0 0 0 0 0 0 0 +5.541 3.489 -1.714 0 0 0 0 0 0 0 +5.527 3.505 -1.713 0 0 0 0 0 0 0 +5.506 3.516 -1.71 0 0 0 0 0 0 0 +5.506 3.54 -1.713 0 0 0 0 0 0 0 +5.496 3.546 -1.712 0 0 0 0 0 0 0 +5.493 3.568 -1.715 0 0 0 0 0 0 0 +5.47 3.578 -1.711 0 0 0 0 0 0 0 +5.478 3.608 -1.717 0 0 0 0 0 0 0 +5.457 3.619 -1.714 0 0 0 0 0 0 0 +5.438 3.631 -1.711 0 0 0 0 0 0 0 +5.429 3.65 -1.712 0 0 0 0 0 0 0 +5.424 3.658 -1.712 0 0 0 0 0 0 0 +5.409 3.673 -1.711 0 0 0 0 0 0 0 +5.397 3.69 -1.711 0 0 0 0 0 0 0 +5.384 3.706 -1.711 0 0 0 0 0 0 0 +5.371 3.722 -1.71 0 0 0 0 0 0 0 +5.359 3.739 -1.71 0 0 0 0 0 0 0 +5.349 3.744 -1.709 0 0 0 0 0 0 0 +5.335 3.76 -1.708 0 0 0 0 0 0 0 +5.331 3.782 -1.711 0 0 0 0 0 0 0 +5.319 3.799 -1.711 0 0 0 0 0 0 0 +5.304 3.813 -1.71 0 0 0 0 0 0 0 +5.298 3.834 -1.712 0 0 0 0 0 0 0 +5.291 3.854 -1.713 0 0 0 0 0 0 0 +5.282 3.86 -1.712 0 0 0 0 0 0 0 +5.25 3.888 -1.71 0 0 0 0 0 0 0 +5.248 3.912 -1.713 0 0 0 0 0 0 0 +5.225 3.921 -1.71 0 0 0 0 0 0 0 +5.231 3.951 -1.716 0 0 0 0 0 0 0 +5.205 3.957 -1.711 0 0 0 0 0 0 0 +5.21 3.973 -1.715 0 0 0 0 0 0 0 +5.18 3.977 -1.709 0 0 0 0 0 0 0 +5.168 3.993 -1.709 0 0 0 0 0 0 0 +5.178 4.027 -1.717 0 0 0 0 0 0 0 +5.162 4.041 -1.716 0 0 0 0 0 0 0 +5.144 4.052 -1.714 0 0 0 0 0 0 0 +5.135 4.072 -1.716 0 0 0 0 0 0 0 +5.121 4.087 -1.715 0 0 0 0 0 0 0 +5.113 4.094 -1.715 0 0 0 0 0 0 0 +5.1 4.11 -1.715 0 0 0 0 0 0 0 +5.081 4.121 -1.712 0 0 0 0 0 0 0 +5.074 4.142 -1.715 0 0 0 0 0 0 0 +5.054 4.151 -1.712 0 0 0 0 0 0 0 +5.038 4.165 -1.711 0 0 0 0 0 0 0 +5.007 4.166 -1.704 0 0 0 0 0 0 0 +4.984 4.16 -1.698 0 0 0 0 0 0 0 +4.974 4.178 -1.699 0 0 0 0 0 0 0 +4.949 4.184 -1.695 0 0 0 0 0 0 0 +4.931 4.196 -1.693 0 0 0 0 0 0 0 +4.917 4.21 -1.693 0 0 0 0 0 0 0 +4.917 4.237 -1.698 0 0 0 0 0 0 0 +4.894 4.245 -1.695 0 0 0 0 0 0 0 +4.898 4.261 -1.698 0 0 0 0 0 0 0 +4.89 4.282 -1.7 0 0 0 0 0 0 0 +4.89 4.308 -1.705 0 0 0 0 0 0 0 +4.869 4.317 -1.703 0 0 0 0 0 0 0 +4.856 4.333 -1.703 0 0 0 0 0 0 0 +4.855 4.359 -1.708 0 0 0 0 0 0 0 +4.841 4.375 -1.708 0 0 0 0 0 0 0 +4.846 4.392 -1.712 0 0 0 0 0 0 0 +4.832 4.408 -1.712 0 0 0 0 0 0 0 +4.838 4.441 -1.719 0 0 0 0 0 0 0 +4.82 4.452 -1.718 0 0 0 0 0 0 0 +4.823 4.483 -1.724 0 0 0 0 0 0 0 +4.806 4.496 -1.723 0 0 0 0 0 0 0 +4.8 4.518 -1.726 0 0 0 0 0 0 0 +4.787 4.521 -1.724 0 0 0 0 0 0 0 +4.787 4.549 -1.73 0 0 0 0 0 0 0 +4.781 4.572 -1.733 0 0 0 0 0 0 0 +4.767 4.587 -1.733 0 0 0 0 0 0 0 +4.754 4.603 -1.733 0 0 0 0 0 0 0 +4.742 4.621 -1.734 0 0 0 0 0 0 0 +4.719 4.628 -1.731 0 0 0 0 0 0 0 +4.712 4.635 -1.731 0 0 0 0 0 0 0 +4.707 4.659 -1.735 0 0 0 0 0 0 0 +4.681 4.663 -1.731 0 0 0 0 0 0 0 +4.684 4.696 -1.738 0 0 0 0 0 0 0 +4.66 4.701 -1.734 0 0 0 0 0 0 0 +4.645 4.715 -1.734 0 0 0 0 0 0 0 +4.622 4.722 -1.731 0 0 0 0 0 0 0 +4.616 4.73 -1.731 0 0 0 0 0 0 0 +4.597 4.741 -1.73 0 0 0 0 0 0 0 +4.583 4.755 -1.73 0 0 0 0 0 0 0 +4.566 4.768 -1.729 0 0 0 0 0 0 0 +4.551 4.782 -1.729 0 0 0 0 0 0 0 +4.539 4.799 -1.73 0 0 0 0 0 0 0 +4.536 4.826 -1.735 0 0 0 0 0 0 0 +4.514 4.818 -1.729 0 0 0 0 0 0 0 +4.513 4.848 -1.735 0 0 0 0 0 0 0 +4.487 4.85 -1.731 0 0 0 0 0 0 0 +4.468 4.86 -1.729 0 0 0 0 0 0 0 +4.45 4.871 -1.728 0 0 0 0 0 0 0 +4.433 4.884 -1.727 0 0 0 0 0 0 0 +4.435 4.916 -1.734 0 0 0 0 0 0 0 +4.417 4.912 -1.73 0 0 0 0 0 0 0 +4.399 4.923 -1.729 0 0 0 0 0 0 0 +4.385 4.938 -1.73 0 0 0 0 0 0 0 +4.365 4.948 -1.728 0 0 0 0 0 0 0 +4.346 4.957 -1.726 0 0 0 0 0 0 0 +4.343 4.985 -1.732 0 0 0 0 0 0 0 +4.318 4.989 -1.728 0 0 0 0 0 0 0 +4.323 5.01 -1.733 0 0 0 0 0 0 0 +4.291 5.004 -1.726 0 0 0 0 0 0 0 +4.287 5.031 -1.731 0 0 0 0 0 0 0 +4.262 5.034 -1.727 0 0 0 0 0 0 0 +4.245 5.046 -1.727 0 0 0 0 0 0 0 +4.239 5.071 -1.731 0 0 0 0 0 0 0 +4.213 5.073 -1.727 0 0 0 0 0 0 0 +4.202 5.092 -1.729 0 0 0 0 0 0 0 +4.193 5.097 -1.729 0 0 0 0 0 0 0 +4.177 5.11 -1.729 0 0 0 0 0 0 0 +4.162 5.125 -1.729 0 0 0 0 0 0 0 +4.151 5.144 -1.731 0 0 0 0 0 0 0 +4.119 5.137 -1.724 0 0 0 0 0 0 0 +4.116 5.167 -1.73 0 0 0 0 0 0 0 +4.088 5.165 -1.725 0 0 0 0 0 0 0 +4.091 5.186 -1.73 0 0 0 0 0 0 0 +4.073 5.196 -1.729 0 0 0 0 0 0 0 +4.056 5.209 -1.729 0 0 0 0 0 0 0 +4.026 5.203 -1.723 0 0 0 0 0 0 0 +4.019 5.228 -1.727 0 0 0 0 0 0 0 +3.995 5.231 -1.724 0 0 0 0 0 0 0 +3.987 5.238 -1.724 0 0 0 0 0 0 0 +3.973 5.253 -1.725 0 0 0 0 0 0 0 +3.957 5.266 -1.725 0 0 0 0 0 0 0 +3.946 5.286 -1.727 0 0 0 0 0 0 0 +3.921 5.287 -1.724 0 0 0 0 0 0 0 +3.912 5.31 -1.727 0 0 0 0 0 0 0 +3.882 5.304 -1.721 0 0 0 0 0 0 0 +3.878 5.316 -1.723 0 0 0 0 0 0 0 +3.866 5.335 -1.725 0 0 0 0 0 0 0 +3.84 5.334 -1.721 0 0 0 0 0 0 0 +3.826 5.35 -1.722 0 0 0 0 0 0 0 +3.816 5.371 -1.725 0 0 0 0 0 0 0 +3.79 5.37 -1.721 0 0 0 0 0 0 0 +3.772 5.381 -1.72 0 0 0 0 0 0 0 +3.758 5.397 -1.722 0 0 0 0 0 0 0 +3.751 5.405 -1.723 0 0 0 0 0 0 0 +3.729 5.41 -1.72 0 0 0 0 0 0 0 +3.715 5.425 -1.722 0 0 0 0 0 0 0 +3.699 5.438 -1.722 0 0 0 0 0 0 0 +3.679 5.447 -1.721 0 0 0 0 0 0 0 +3.663 5.46 -1.722 0 0 0 0 0 0 0 +3.65 5.478 -1.724 0 0 0 0 0 0 0 +3.637 5.475 -1.721 0 0 0 0 0 0 0 +3.618 5.485 -1.72 0 0 0 0 0 0 0 +3.598 5.492 -1.719 0 0 0 0 0 0 0 +3.579 5.501 -1.718 0 0 0 0 0 0 0 +3.564 5.516 -1.719 0 0 0 0 0 0 0 +3.548 5.529 -1.72 0 0 0 0 0 0 0 +3.531 5.54 -1.72 0 0 0 0 0 0 0 +3.515 5.554 -1.721 0 0 0 0 0 0 0 +3.511 5.566 -1.723 0 0 0 0 0 0 0 +3.489 5.571 -1.721 0 0 0 0 0 0 0 +3.468 5.577 -1.719 0 0 0 0 0 0 0 +3.453 5.591 -1.72 0 0 0 0 0 0 0 +3.442 5.613 -1.724 0 0 0 0 0 0 0 +3.416 5.609 -1.719 0 0 0 0 0 0 0 +3.409 5.618 -1.72 0 0 0 0 0 0 0 +3.391 5.628 -1.72 0 0 0 0 0 0 0 +3.372 5.636 -1.719 0 0 0 0 0 0 0 +3.361 5.658 -1.723 0 0 0 0 0 0 0 +3.34 5.663 -1.722 0 0 0 0 0 0 0 +3.331 5.689 -1.726 0 0 0 0 0 0 0 +3.301 5.679 -1.72 0 0 0 0 0 0 0 +3.288 5.698 -1.723 0 0 0 0 0 0 0 +3.276 5.696 -1.72 0 0 0 0 0 0 0 +3.266 5.722 -1.725 0 0 0 0 0 0 0 +3.245 5.725 -1.723 0 0 0 0 0 0 0 +3.231 5.744 -1.726 0 0 0 0 0 0 0 +3.209 5.746 -1.723 0 0 0 0 0 0 0 +3.195 5.764 -1.726 0 0 0 0 0 0 0 +3.177 5.774 -1.726 0 0 0 0 0 0 0 +3.172 5.786 -1.728 0 0 0 0 0 0 0 +3.153 5.796 -1.728 0 0 0 0 0 0 0 +3.138 5.811 -1.73 0 0 0 0 0 0 0 +3.119 5.819 -1.729 0 0 0 0 0 0 0 +3.105 5.837 -1.732 0 0 0 0 0 0 0 +3.086 5.845 -1.731 0 0 0 0 0 0 0 +3.067 5.853 -1.731 0 0 0 0 0 0 0 +3.06 5.863 -1.732 0 0 0 0 0 0 0 +3.045 5.879 -1.734 0 0 0 0 0 0 0 +3.021 5.879 -1.731 0 0 0 0 0 0 0 +3 5.883 -1.73 0 0 0 0 0 0 0 +2.983 5.894 -1.73 0 0 0 0 0 0 0 +2.96 5.895 -1.727 0 0 0 0 0 0 0 +2.948 5.918 -1.732 0 0 0 0 0 0 0 +2.938 5.921 -1.731 0 0 0 0 0 0 0 +2.919 5.928 -1.731 0 0 0 0 0 0 0 +2.902 5.941 -1.732 0 0 0 0 0 0 0 +2.882 5.948 -1.731 0 0 0 0 0 0 0 +2.861 5.952 -1.73 0 0 0 0 0 0 0 +2.844 5.964 -1.731 0 0 0 0 0 0 0 +2.823 5.97 -1.73 0 0 0 0 0 0 0 +2.816 5.979 -1.731 0 0 0 0 0 0 0 +2.805 6.004 -1.736 0 0 0 0 0 0 0 +2.775 5.988 -1.729 0 0 0 0 0 0 0 +2.76 6.006 -1.731 0 0 0 0 0 0 0 +2.74 6.013 -1.731 0 0 0 0 0 0 0 +2.727 6.033 -1.734 0 0 0 0 0 0 0 +2.702 6.028 -1.73 0 0 0 0 0 0 0 +2.678 6.026 -1.727 0 0 0 0 0 0 0 +2.672 6.039 -1.73 0 0 0 0 0 0 0 +2.648 6.035 -1.726 0 0 0 0 0 0 0 +2.631 6.047 -1.727 0 0 0 0 0 0 0 +2.609 6.05 -1.725 0 0 0 0 0 0 0 +2.593 6.063 -1.727 0 0 0 0 0 0 0 +2.567 6.057 -1.723 0 0 0 0 0 0 0 +2.558 6.088 -1.73 0 0 0 0 0 0 0 +2.543 6.08 -1.726 0 0 0 0 0 0 0 +2.523 6.086 -1.725 0 0 0 0 0 0 0 +2.507 6.099 -1.727 0 0 0 0 0 0 0 +2.484 6.098 -1.724 0 0 0 0 0 0 0 +2.466 6.109 -1.725 0 0 0 0 0 0 0 +2.45 6.126 -1.728 0 0 0 0 0 0 0 +2.433 6.137 -1.729 0 0 0 0 0 0 0 +2.417 6.125 -1.724 0 0 0 0 0 0 0 +2.4 6.14 -1.726 0 0 0 0 0 0 0 +2.38 6.146 -1.726 0 0 0 0 0 0 0 +2.361 6.153 -1.726 0 0 0 0 0 0 0 +2.335 6.144 -1.721 0 0 0 0 0 0 0 +2.322 6.168 -1.726 0 0 0 0 0 0 0 +2.298 6.162 -1.722 0 0 0 0 0 0 0 +2.294 6.18 -1.726 0 0 0 0 0 0 0 +2.27 6.177 -1.723 0 0 0 0 0 0 0 +2.248 6.177 -1.721 0 0 0 0 0 0 0 +2.229 6.184 -1.721 0 0 0 0 0 0 0 +2.211 6.194 -1.722 0 0 0 0 0 0 0 +2.186 6.187 -1.718 0 0 0 0 0 0 0 +2.165 6.19 -1.717 0 0 0 0 0 0 0 +2.161 6.21 -1.722 0 0 0 0 0 0 0 +2.147 6.233 -1.726 0 0 0 0 0 0 0 +2.124 6.228 -1.723 0 0 0 0 0 0 0 +2.108 6.244 -1.726 0 0 0 0 0 0 0 +2.087 6.249 -1.725 0 0 0 0 0 0 0 +2.068 6.256 -1.725 0 0 0 0 0 0 0 +2.05 6.267 -1.727 0 0 0 0 0 0 0 +2.027 6.265 -1.724 0 0 0 0 0 0 0 +2.016 6.262 -1.723 0 0 0 0 0 0 0 +1.987 6.241 -1.715 0 0 0 0 0 0 0 +1.964 6.238 -1.712 0 0 0 0 0 0 0 +1.933 6.206 -1.7 0 0 0 0 0 0 0 +1.913 6.212 -1.7 0 0 0 0 0 0 0 +1.893 6.216 -1.7 0 0 0 0 0 0 0 +1.872 6.216 -1.698 0 0 0 0 0 0 0 +1.86 6.214 -1.697 0 0 0 0 0 0 0 +1.84 6.218 -1.696 0 0 0 0 0 0 0 +1.821 6.225 -1.697 0 0 0 0 0 0 0 +1.804 6.238 -1.699 0 0 0 0 0 0 0 +1.782 6.235 -1.696 0 0 0 0 0 0 0 +1.754 6.213 -1.688 0 0 0 0 0 0 0 +1.742 6.244 -1.696 0 0 0 0 0 0 0 +1.726 6.226 -1.69 0 0 0 0 0 0 0 +1.705 6.226 -1.688 0 0 0 0 0 0 0 +1.688 6.239 -1.69 0 0 0 0 0 0 0 +1.664 6.228 -1.685 0 0 0 0 0 0 0 +1.639 6.214 -1.68 0 0 0 0 0 0 0 +1.619 6.217 -1.679 0 0 0 0 0 0 0 +1.599 6.222 -1.679 0 0 0 0 0 0 0 +1.589 6.223 -1.679 0 0 0 0 0 0 0 +1.571 6.232 -1.68 0 0 0 0 0 0 0 +1.55 6.231 -1.678 0 0 0 0 0 0 0 +1.529 6.232 -1.677 0 0 0 0 0 0 0 +1.509 6.233 -1.676 0 0 0 0 0 0 0 +1.489 6.24 -1.677 0 0 0 0 0 0 0 +1.47 6.246 -1.677 0 0 0 0 0 0 0 +1.448 6.24 -1.674 0 0 0 0 0 0 0 +1.434 6.225 -1.669 0 0 0 0 0 0 0 +0.701 3.147 -0.782 0 0 0 0 0 0 0 +0.69 3.143 -0.781 0 0 0 0 0 0 0 +0.682 3.153 -0.783 0 0 0 0 0 0 0 +0.663 3.163 -0.785 0 0 0 0 0 0 0 +0.641 3.105 -0.767 0 0 0 0 0 0 0 +0.609 2.981 -0.732 0 0 0 0 0 0 0 +0.619 3.074 -0.758 0 0 0 0 0 0 0 +0.607 3.066 -0.755 0 0 0 0 0 0 0 +0.599 3.076 -0.757 0 0 0 0 0 0 0 +0.59 3.081 -0.758 0 0 0 0 0 0 0 +0.58 3.083 -0.758 0 0 0 0 0 0 0 +0.567 3.068 -0.753 0 0 0 0 0 0 0 +0.565 3.082 -0.757 0 0 0 0 0 0 0 +0.555 3.08 -0.756 0 0 0 0 0 0 0 +0.546 3.086 -0.757 0 0 0 0 0 0 0 +0.536 3.085 -0.756 0 0 0 0 0 0 0 +0.525 3.08 -0.754 0 0 0 0 0 0 0 +0.516 3.085 -0.755 0 0 0 0 0 0 0 +0.49 2.994 -0.729 0 0 0 0 0 0 0 +0.485 2.994 -0.729 0 0 0 0 0 0 0 +0.476 2.996 -0.729 0 0 0 0 0 0 0 +0.466 2.995 -0.728 0 0 0 0 0 0 0 +0.455 2.984 -0.725 0 0 0 0 0 0 0 +0.445 2.981 -0.724 0 0 0 0 0 0 0 +0.436 2.984 -0.724 0 0 0 0 0 0 0 +0.428 2.997 -0.727 0 0 0 0 0 0 0 +0.417 2.987 -0.724 0 0 0 0 0 0 0 +0.413 2.995 -0.726 0 0 0 0 0 0 0 +0.404 2.999 -0.727 0 0 0 0 0 0 0 +0.394 2.996 -0.726 0 0 0 0 0 0 0 +0.384 2.99 -0.724 0 0 0 0 0 0 0 +0.376 3.002 -0.727 0 0 0 0 0 0 0 +0.368 3.013 -0.729 0 0 0 0 0 0 0 +0.358 3.012 -0.729 0 0 0 0 0 0 0 +0.354 3.017 -0.73 0 0 0 0 0 0 0 +0.344 3.018 -0.73 0 0 0 0 0 0 0 +0.334 3.009 -0.727 0 0 0 0 0 0 0 +0.335 3.106 -0.754 0 0 0 0 0 0 0 +0.316 3.023 -0.731 0 0 0 0 0 0 0 +0.306 3.02 -0.729 0 0 0 0 0 0 0 +0.296 3.015 -0.728 0 0 0 0 0 0 0 +0.291 3.016 -0.728 0 0 0 0 0 0 0 +0.282 3.022 -0.729 0 0 0 0 0 0 0 +0.273 3.023 -0.729 0 0 0 0 0 0 0 +0.263 3.026 -0.73 0 0 0 0 0 0 0 +0.254 3.029 -0.731 0 0 0 0 0 0 0 +0.244 3.025 -0.729 0 0 0 0 0 0 0 +0.235 3.028 -0.73 0 0 0 0 0 0 0 +0.23 3.028 -0.73 0 0 0 0 0 0 0 +0.221 3.029 -0.73 0 0 0 0 0 0 0 +0.219 3.132 -0.759 0 0 0 0 0 0 0 +0.209 3.127 -0.757 0 0 0 0 0 0 0 +0.199 3.133 -0.759 0 0 0 0 0 0 0 +0.183 3.043 -0.733 0 0 0 0 0 0 0 +0.174 3.04 -0.732 0 0 0 0 0 0 0 +0.169 3.042 -0.733 0 0 0 0 0 0 0 +0.16 3.058 -0.737 0 0 0 0 0 0 0 +0.15 3.049 -0.734 0 0 0 0 0 0 0 +0.146 3.151 -0.763 0 0 0 0 0 0 0 +0.136 3.144 -0.761 0 0 0 0 0 0 0 +0.122 3.054 -0.735 0 0 0 0 0 0 0 +0.112 3.058 -0.736 0 0 0 0 0 0 0 +0.107 3.155 -0.763 0 0 0 0 0 0 0 +0.102 3.157 -0.764 0 0 0 0 0 0 0 +0.093 3.188 -0.773 0 0 0 0 0 0 0 +0.084 3.231 -0.785 0 0 0 0 0 0 0 +0.074 3.237 -0.786 0 0 0 0 0 0 0 +0.064 3.212 -0.779 0 0 0 0 0 0 0 +0.05 3.087 -0.744 0 0 0 0 0 0 0 +0.102 6.397 -1.672 0 0 0 0 0 0 0 +0.044 3.237 -0.786 0 0 0 0 0 0 0 +0.082 6.413 -1.676 0 0 0 0 0 0 0 +0.062 6.405 -1.674 0 0 0 0 0 0 0 +0.042 6.411 -1.676 0 0 0 0 0 0 0 +0.022 6.452 -1.687 0 0 0 0 0 0 0 +0.002 6.517 -1.705 0 0 0 0 0 0 0 +-0.018 6.534 -1.71 0 0 0 0 0 0 0 +-0.029 6.544 -1.713 0 0 0 0 0 0 0 +-0.049 6.546 -1.713 0 0 0 0 0 0 0 +-0.07 6.553 -1.716 0 0 0 0 0 0 0 +-0.09 6.553 -1.716 0 0 0 0 0 0 0 +-0.111 6.564 -1.719 0 0 0 0 0 0 0 +-0.132 6.574 -1.722 0 0 0 0 0 0 0 +-0.152 6.569 -1.72 0 0 0 0 0 0 0 +-0.174 6.59 -1.726 0 0 0 0 0 0 0 +-0.184 6.584 -1.725 0 0 0 0 0 0 0 +-0.205 6.585 -1.725 0 0 0 0 0 0 0 +-0.225 6.588 -1.726 0 0 0 0 0 0 0 +-0.246 6.59 -1.727 0 0 0 0 0 0 0 +-0.267 6.598 -1.73 0 0 0 0 0 0 0 +-0.289 6.613 -1.734 0 0 0 0 0 0 0 +-0.309 6.61 -1.733 0 0 0 0 0 0 0 +-0.32 6.61 -1.733 0 0 0 0 0 0 0 +-0.341 6.614 -1.735 0 0 0 0 0 0 0 +-0.362 6.627 -1.739 0 0 0 0 0 0 0 +-0.383 6.624 -1.738 0 0 0 0 0 0 0 +-0.402 6.599 -1.732 0 0 0 0 0 0 0 +-0.424 6.619 -1.738 0 0 0 0 0 0 0 +-0.447 6.645 -1.745 0 0 0 0 0 0 0 +-0.457 6.648 -1.746 0 0 0 0 0 0 0 +-0.48 6.667 -1.752 0 0 0 0 0 0 0 +-0.489 6.497 -1.705 0 0 0 0 0 0 0 +-0.52 6.641 -1.746 0 0 0 0 0 0 0 +-0.571 6.757 -1.779 0 0 0 0 0 0 0 +-0.592 6.749 -1.778 0 0 0 0 0 0 0 +-0.597 6.685 -1.76 0 0 0 0 0 0 0 +-0.615 6.645 -1.749 0 0 0 0 0 0 0 +-0.634 6.622 -1.743 0 0 0 0 0 0 0 +-0.658 6.654 -1.753 0 0 0 0 0 0 0 +-0.678 6.641 -1.75 0 0 0 0 0 0 0 +-0.697 6.625 -1.746 0 0 0 0 0 0 0 +-0.719 6.629 -1.747 0 0 0 0 0 0 0 +-0.728 6.62 -1.745 0 0 0 0 0 0 0 +-0.749 6.619 -1.746 0 0 0 0 0 0 0 +-0.771 6.626 -1.749 0 0 0 0 0 0 0 +-0.791 6.618 -1.747 0 0 0 0 0 0 0 +-0.812 6.618 -1.747 0 0 0 0 0 0 0 +-0.834 6.621 -1.749 0 0 0 0 0 0 0 +-0.854 6.612 -1.747 0 0 0 0 0 0 0 +-0.865 6.617 -1.749 0 0 0 0 0 0 0 +-0.885 6.608 -1.747 0 0 0 0 0 0 0 +-0.907 6.613 -1.75 0 0 0 0 0 0 0 +-0.927 6.606 -1.749 0 0 0 0 0 0 0 +-0.95 6.623 -1.754 0 0 0 0 0 0 0 +-0.969 6.602 -1.749 0 0 0 0 0 0 0 +-0.99 6.601 -1.75 0 0 0 0 0 0 0 +-1.011 6.602 -1.751 0 0 0 0 0 0 0 +-1.021 6.6 -1.751 0 0 0 0 0 0 0 +-1.043 6.605 -1.753 0 0 0 0 0 0 0 +-1.064 6.603 -1.753 0 0 0 0 0 0 0 +-1.084 6.596 -1.752 0 0 0 0 0 0 0 +-1.105 6.595 -1.753 0 0 0 0 0 0 0 +-1.127 6.599 -1.755 0 0 0 0 0 0 0 +-1.147 6.591 -1.754 0 0 0 0 0 0 0 +-1.158 6.588 -1.753 0 0 0 0 0 0 0 +-1.179 6.588 -1.754 0 0 0 0 0 0 0 +-1.201 6.592 -1.757 0 0 0 0 0 0 0 +-1.221 6.582 -1.755 0 0 0 0 0 0 0 +-1.24 6.571 -1.753 0 0 0 0 0 0 0 +-1.261 6.571 -1.754 0 0 0 0 0 0 0 +-1.283 6.574 -1.756 0 0 0 0 0 0 0 +-1.294 6.572 -1.756 0 0 0 0 0 0 0 +-1.314 6.568 -1.756 0 0 0 0 0 0 0 +-1.334 6.56 -1.755 0 0 0 0 0 0 0 +-1.357 6.567 -1.758 0 0 0 0 0 0 0 +-1.376 6.555 -1.756 0 0 0 0 0 0 0 +-1.397 6.555 -1.757 0 0 0 0 0 0 0 +-1.417 6.547 -1.756 0 0 0 0 0 0 0 +-1.429 6.552 -1.758 0 0 0 0 0 0 0 +-1.45 6.549 -1.759 0 0 0 0 0 0 0 +-1.469 6.537 -1.757 0 0 0 0 0 0 0 +-1.493 6.547 -1.761 0 0 0 0 0 0 0 +-1.511 6.533 -1.758 0 0 0 0 0 0 0 +-1.531 6.527 -1.758 0 0 0 0 0 0 0 +-1.552 6.52 -1.757 0 0 0 0 0 0 0 +-1.573 6.519 -1.758 0 0 0 0 0 0 0 +-1.583 6.514 -1.758 0 0 0 0 0 0 0 +-1.604 6.511 -1.758 0 0 0 0 0 0 0 +-1.626 6.514 -1.76 0 0 0 0 0 0 0 +-1.645 6.503 -1.759 0 0 0 0 0 0 0 +-1.663 6.49 -1.757 0 0 0 0 0 0 0 +-1.687 6.496 -1.76 0 0 0 0 0 0 0 +-1.708 6.495 -1.761 0 0 0 0 0 0 0 +-1.716 6.484 -1.759 0 0 0 0 0 0 0 +-1.74 6.492 -1.763 0 0 0 0 0 0 0 +-1.759 6.479 -1.76 0 0 0 0 0 0 0 +-1.777 6.468 -1.759 0 0 0 0 0 0 0 +-1.798 6.464 -1.759 0 0 0 0 0 0 0 +-1.818 6.457 -1.759 0 0 0 0 0 0 0 +-1.838 6.451 -1.759 0 0 0 0 0 0 0 +-1.846 6.439 -1.756 0 0 0 0 0 0 0 +-1.862 6.42 -1.752 0 0 0 0 0 0 0 +-1.882 6.414 -1.752 0 0 0 0 0 0 0 +-1.905 6.416 -1.754 0 0 0 0 0 0 0 +-1.916 6.38 -1.746 0 0 0 0 0 0 0 +-1.945 6.404 -1.754 0 0 0 0 0 0 0 +-1.974 6.427 -1.763 0 0 0 0 0 0 0 +-1.999 6.472 -1.777 0 0 0 0 0 0 0 +-2.005 6.419 -1.764 0 0 0 0 0 0 0 +-2.017 6.387 -1.756 0 0 0 0 0 0 0 +-2.036 6.377 -1.755 0 0 0 0 0 0 0 +-2.085 6.392 -1.763 0 0 0 0 0 0 0 +-2.102 6.378 -1.761 0 0 0 0 0 0 0 +-2.118 6.357 -1.757 0 0 0 0 0 0 0 +-2.12 6.331 -1.75 0 0 0 0 0 0 0 +-2.134 6.305 -1.744 0 0 0 0 0 0 0 +-2.157 6.309 -1.747 0 0 0 0 0 0 0 +-2.179 6.307 -1.749 0 0 0 0 0 0 0 +-2.2 6.306 -1.751 0 0 0 0 0 0 0 +-2.223 6.308 -1.753 0 0 0 0 0 0 0 +-2.243 6.299 -1.753 0 0 0 0 0 0 0 +-2.252 6.294 -1.752 0 0 0 0 0 0 0 +-2.273 6.291 -1.753 0 0 0 0 0 0 0 +-2.294 6.287 -1.754 0 0 0 0 0 0 0 +-2.31 6.271 -1.752 0 0 0 0 0 0 0 +-2.333 6.272 -1.754 0 0 0 0 0 0 0 +-2.353 6.265 -1.754 0 0 0 0 0 0 0 +-2.371 6.254 -1.753 0 0 0 0 0 0 0 +-2.381 6.25 -1.753 0 0 0 0 0 0 0 +-2.406 6.255 -1.757 0 0 0 0 0 0 0 +-2.423 6.242 -1.756 0 0 0 0 0 0 0 +-2.439 6.226 -1.753 0 0 0 0 0 0 0 +-2.462 6.225 -1.755 0 0 0 0 0 0 0 +-2.481 6.216 -1.754 0 0 0 0 0 0 0 +-2.499 6.204 -1.753 0 0 0 0 0 0 0 +-2.513 6.213 -1.757 0 0 0 0 0 0 0 +-2.529 6.196 -1.754 0 0 0 0 0 0 0 +-2.549 6.19 -1.755 0 0 0 0 0 0 0 +-2.57 6.185 -1.756 0 0 0 0 0 0 0 +-2.588 6.174 -1.755 0 0 0 0 0 0 0 +-2.608 6.167 -1.756 0 0 0 0 0 0 0 +-2.633 6.172 -1.759 0 0 0 0 0 0 0 +-2.646 6.149 -1.755 0 0 0 0 0 0 0 +-2.66 6.154 -1.758 0 0 0 0 0 0 0 +-2.681 6.151 -1.759 0 0 0 0 0 0 0 +-2.695 6.13 -1.756 0 0 0 0 0 0 0 +-2.721 6.135 -1.76 0 0 0 0 0 0 0 +-2.741 6.129 -1.76 0 0 0 0 0 0 0 +-2.754 6.106 -1.756 0 0 0 0 0 0 0 +-2.778 6.108 -1.759 0 0 0 0 0 0 0 +-2.79 6.109 -1.761 0 0 0 0 0 0 0 +-2.806 6.095 -1.759 0 0 0 0 0 0 0 +-2.827 6.089 -1.76 0 0 0 0 0 0 0 +-2.847 6.082 -1.761 0 0 0 0 0 0 0 +-2.862 6.064 -1.758 0 0 0 0 0 0 0 +-2.883 6.059 -1.759 0 0 0 0 0 0 0 +-2.903 6.052 -1.76 0 0 0 0 0 0 0 +-2.915 6.052 -1.761 0 0 0 0 0 0 0 +-2.937 6.05 -1.764 0 0 0 0 0 0 0 +-2.953 6.034 -1.761 0 0 0 0 0 0 0 +-2.969 6.019 -1.76 0 0 0 0 0 0 0 +-2.993 6.02 -1.763 0 0 0 0 0 0 0 +-3.012 6.011 -1.763 0 0 0 0 0 0 0 +-3.03 6 -1.763 0 0 0 0 0 0 0 +-3.04 5.997 -1.763 0 0 0 0 0 0 0 +-3.061 5.99 -1.764 0 0 0 0 0 0 0 +-3.08 5.981 -1.764 0 0 0 0 0 0 0 +-3.098 5.971 -1.764 0 0 0 0 0 0 0 +-3.118 5.963 -1.765 0 0 0 0 0 0 0 +-3.137 5.953 -1.765 0 0 0 0 0 0 0 +-3.158 5.948 -1.766 0 0 0 0 0 0 0 +-3.175 5.935 -1.765 0 0 0 0 0 0 0 +-3.188 5.937 -1.767 0 0 0 0 0 0 0 +-3.207 5.927 -1.767 0 0 0 0 0 0 0 +-3.225 5.917 -1.767 0 0 0 0 0 0 0 +-3.246 5.91 -1.768 0 0 0 0 0 0 0 +-3.264 5.9 -1.768 0 0 0 0 0 0 0 +-3.285 5.894 -1.77 0 0 0 0 0 0 0 +-3.308 5.891 -1.772 0 0 0 0 0 0 0 +-3.316 5.884 -1.772 0 0 0 0 0 0 0 +-3.331 5.867 -1.77 0 0 0 0 0 0 0 +-3.344 5.848 -1.767 0 0 0 0 0 0 0 +-3.371 5.852 -1.772 0 0 0 0 0 0 0 +-3.392 5.847 -1.773 0 0 0 0 0 0 0 +-3.411 5.836 -1.773 0 0 0 0 0 0 0 +-3.432 5.83 -1.775 0 0 0 0 0 0 0 +-3.452 5.823 -1.776 0 0 0 0 0 0 0 +-3.463 5.821 -1.777 0 0 0 0 0 0 0 +-3.486 5.817 -1.779 0 0 0 0 0 0 0 +-3.503 5.804 -1.779 0 0 0 0 0 0 0 +-3.523 5.796 -1.78 0 0 0 0 0 0 0 +-3.554 5.806 -1.787 0 0 0 0 0 0 0 +-3.572 5.794 -1.786 0 0 0 0 0 0 0 +-3.591 5.784 -1.787 0 0 0 0 0 0 0 +-3.603 5.783 -1.788 0 0 0 0 0 0 0 +-3.629 5.785 -1.793 0 0 0 0 0 0 0 +-3.637 5.757 -1.787 0 0 0 0 0 0 0 +-3.654 5.744 -1.787 0 0 0 0 0 0 0 +-3.691 5.762 -1.797 0 0 0 0 0 0 0 +-3.737 5.794 -1.811 0 0 0 0 0 0 0 +-3.739 5.758 -1.803 0 0 0 0 0 0 0 +-3.74 5.739 -1.799 0 0 0 0 0 0 0 +-3.758 5.727 -1.799 0 0 0 0 0 0 0 +-3.763 5.696 -1.792 0 0 0 0 0 0 0 +-3.772 5.67 -1.787 0 0 0 0 0 0 0 +-3.787 5.655 -1.786 0 0 0 0 0 0 0 +-3.813 5.654 -1.79 0 0 0 0 0 0 0 +-3.816 5.621 -1.783 0 0 0 0 0 0 0 +-3.824 5.614 -1.783 0 0 0 0 0 0 0 +-3.84 5.599 -1.781 0 0 0 0 0 0 0 +-3.842 5.564 -1.774 0 0 0 0 0 0 0 +-3.846 5.533 -1.767 0 0 0 0 0 0 0 +-3.864 5.521 -1.767 0 0 0 0 0 0 0 +-3.89 5.521 -1.772 0 0 0 0 0 0 0 +-3.902 5.501 -1.769 0 0 0 0 0 0 0 +-3.921 5.492 -1.77 0 0 0 0 0 0 0 +-3.923 5.477 -1.767 0 0 0 0 0 0 0 +-3.946 5.472 -1.77 0 0 0 0 0 0 0 +-3.966 5.464 -1.771 0 0 0 0 0 0 0 +-3.979 5.446 -1.769 0 0 0 0 0 0 0 +-3.999 5.438 -1.771 0 0 0 0 0 0 0 +-4.014 5.422 -1.77 0 0 0 0 0 0 0 +-4.028 5.405 -1.768 0 0 0 0 0 0 0 +-4.041 5.405 -1.77 0 0 0 0 0 0 0 +-4.059 5.393 -1.771 0 0 0 0 0 0 0 +-4.076 5.381 -1.771 0 0 0 0 0 0 0 +-4.093 5.368 -1.771 0 0 0 0 0 0 0 +-4.111 5.357 -1.771 0 0 0 0 0 0 0 +-4.128 5.344 -1.771 0 0 0 0 0 0 0 +-4.141 5.326 -1.77 0 0 0 0 0 0 0 +-4.157 5.33 -1.773 0 0 0 0 0 0 0 +-4.167 5.308 -1.77 0 0 0 0 0 0 0 +-4.185 5.296 -1.771 0 0 0 0 0 0 0 +-4.203 5.285 -1.771 0 0 0 0 0 0 0 +-4.225 5.279 -1.774 0 0 0 0 0 0 0 +-4.239 5.263 -1.773 0 0 0 0 0 0 0 +-4.255 5.248 -1.772 0 0 0 0 0 0 0 +-4.265 5.244 -1.773 0 0 0 0 0 0 0 +-4.284 5.234 -1.774 0 0 0 0 0 0 0 +-4.306 5.226 -1.777 0 0 0 0 0 0 0 +-4.317 5.207 -1.774 0 0 0 0 0 0 0 +-4.33 5.189 -1.773 0 0 0 0 0 0 0 +-4.341 5.169 -1.771 0 0 0 0 0 0 0 +-4.371 5.172 -1.777 0 0 0 0 0 0 0 +-4.37 5.154 -1.773 0 0 0 0 0 0 0 +-4.388 5.142 -1.773 0 0 0 0 0 0 0 +-4.408 5.133 -1.775 0 0 0 0 0 0 0 +-4.419 5.113 -1.773 0 0 0 0 0 0 0 +-4.44 5.105 -1.775 0 0 0 0 0 0 0 +-4.451 5.085 -1.773 0 0 0 0 0 0 0 +-4.467 5.071 -1.773 0 0 0 0 0 0 0 +-4.492 5.067 -1.777 0 0 0 0 0 0 0 +-4.492 5.052 -1.773 0 0 0 0 0 0 0 +-4.505 5.035 -1.772 0 0 0 0 0 0 0 +-4.531 5.032 -1.777 0 0 0 0 0 0 0 +-4.542 5.012 -1.774 0 0 0 0 0 0 0 +-4.559 4.999 -1.775 0 0 0 0 0 0 0 +-4.58 4.99 -1.777 0 0 0 0 0 0 0 +-4.582 4.962 -1.772 0 0 0 0 0 0 0 +-4.595 4.96 -1.774 0 0 0 0 0 0 0 +-4.608 4.943 -1.773 0 0 0 0 0 0 0 +-4.629 4.934 -1.775 0 0 0 0 0 0 0 +-4.643 4.918 -1.774 0 0 0 0 0 0 0 +-4.664 4.909 -1.777 0 0 0 0 0 0 0 +-4.677 4.892 -1.776 0 0 0 0 0 0 0 +-4.685 4.87 -1.773 0 0 0 0 0 0 0 +-4.693 4.863 -1.773 0 0 0 0 0 0 0 +-4.703 4.842 -1.771 0 0 0 0 0 0 0 +-4.737 4.847 -1.778 0 0 0 0 0 0 0 +-4.737 4.817 -1.772 0 0 0 0 0 0 0 +-4.766 4.816 -1.778 0 0 0 0 0 0 0 +-4.766 4.785 -1.772 0 0 0 0 0 0 0 +-4.791 4.78 -1.776 0 0 0 0 0 0 0 +-4.786 4.76 -1.771 0 0 0 0 0 0 0 +-4.808 4.752 -1.773 0 0 0 0 0 0 0 +-4.824 4.738 -1.774 0 0 0 0 0 0 0 +-4.852 4.737 -1.779 0 0 0 0 0 0 0 +-4.852 4.706 -1.773 0 0 0 0 0 0 0 +-4.881 4.705 -1.779 0 0 0 0 0 0 0 +-4.884 4.679 -1.774 0 0 0 0 0 0 0 +-4.89 4.67 -1.774 0 0 0 0 0 0 0 +-4.916 4.665 -1.778 0 0 0 0 0 0 0 +-4.92 4.639 -1.774 0 0 0 0 0 0 0 +-4.937 4.626 -1.775 0 0 0 0 0 0 0 +-4.943 4.602 -1.772 0 0 0 0 0 0 0 +-4.969 4.597 -1.776 0 0 0 0 0 0 0 +-4.982 4.58 -1.776 0 0 0 0 0 0 0 +-4.989 4.558 -1.773 0 0 0 0 0 0 0 +-4.996 4.55 -1.773 0 0 0 0 0 0 0 +-5.025 4.548 -1.778 0 0 0 0 0 0 0 +-5.049 4.541 -1.782 0 0 0 0 0 0 0 +-5.07 4.531 -1.785 0 0 0 0 0 0 0 +-5.086 4.517 -1.785 0 0 0 0 0 0 0 +-5.113 4.512 -1.79 0 0 0 0 0 0 0 +-5.124 4.494 -1.789 0 0 0 0 0 0 0 +-5.131 4.486 -1.789 0 0 0 0 0 0 0 +-5.154 4.477 -1.792 0 0 0 0 0 0 0 +-5.158 4.452 -1.788 0 0 0 0 0 0 0 +-5.175 4.438 -1.79 0 0 0 0 0 0 0 +-5.195 4.427 -1.792 0 0 0 0 0 0 0 +-5.213 4.415 -1.793 0 0 0 0 0 0 0 +-5.234 4.404 -1.796 0 0 0 0 0 0 0 +-5.232 4.389 -1.793 0 0 0 0 0 0 0 +-5.256 4.381 -1.797 0 0 0 0 0 0 0 +-5.273 4.367 -1.798 0 0 0 0 0 0 0 +-5.297 4.359 -1.801 0 0 0 0 0 0 0 +-5.305 4.337 -1.799 0 0 0 0 0 0 0 +-5.317 4.319 -1.799 0 0 0 0 0 0 0 +-5.326 4.299 -1.797 0 0 0 0 0 0 0 +-5.312 4.274 -1.79 0 0 0 0 0 0 0 +-5.315 4.248 -1.786 0 0 0 0 0 0 0 +-5.322 4.227 -1.784 0 0 0 0 0 0 0 +-5.364 4.233 -1.794 0 0 0 0 0 0 0 +-5.383 4.221 -1.796 0 0 0 0 0 0 0 +-5.377 4.188 -1.789 0 0 0 0 0 0 0 +-5.396 4.176 -1.791 0 0 0 0 0 0 0 +-5.42 4.168 -1.795 0 0 0 0 0 0 0 +-5.413 4.148 -1.79 0 0 0 0 0 0 0 +-5.43 4.135 -1.792 0 0 0 0 0 0 0 +-5.44 4.116 -1.791 0 0 0 0 0 0 0 +-5.447 4.094 -1.788 0 0 0 0 0 0 0 +-5.455 4.073 -1.787 0 0 0 0 0 0 0 +-5.477 4.063 -1.79 0 0 0 0 0 0 0 +-5.493 4.048 -1.791 0 0 0 0 0 0 0 +-5.482 4.027 -1.785 0 0 0 0 0 0 0 +-5.49 4.006 -1.784 0 0 0 0 0 0 0 +-5.504 3.99 -1.784 0 0 0 0 0 0 0 +-5.498 3.959 -1.778 0 0 0 0 0 0 0 +-5.509 3.941 -1.777 0 0 0 0 0 0 0 +-5.537 3.935 -1.783 0 0 0 0 0 0 0 +-5.54 3.91 -1.779 0 0 0 0 0 0 0 +-5.552 3.906 -1.781 0 0 0 0 0 0 0 +-5.539 3.871 -1.773 0 0 0 0 0 0 0 +-5.548 3.851 -1.772 0 0 0 0 0 0 0 +-5.573 3.843 -1.776 0 0 0 0 0 0 0 +-5.568 3.813 -1.77 0 0 0 0 0 0 0 +-5.581 3.797 -1.771 0 0 0 0 0 0 0 +-5.598 3.782 -1.772 0 0 0 0 0 0 0 +-5.591 3.765 -1.768 0 0 0 0 0 0 0 +-5.612 3.754 -1.771 0 0 0 0 0 0 0 +-5.626 3.737 -1.772 0 0 0 0 0 0 0 +-5.639 3.721 -1.772 0 0 0 0 0 0 0 +-5.648 3.701 -1.771 0 0 0 0 0 0 0 +-5.654 3.68 -1.77 0 0 0 0 0 0 0 +-5.667 3.663 -1.77 0 0 0 0 0 0 0 +-5.668 3.651 -1.768 0 0 0 0 0 0 0 +-5.683 3.635 -1.77 0 0 0 0 0 0 0 +-5.688 3.613 -1.767 0 0 0 0 0 0 0 +-5.706 3.6 -1.77 0 0 0 0 0 0 0 +-5.712 3.579 -1.768 0 0 0 0 0 0 0 +-5.722 3.56 -1.767 0 0 0 0 0 0 0 +-5.73 3.539 -1.766 0 0 0 0 0 0 0 +-5.737 3.532 -1.767 0 0 0 0 0 0 0 +-5.75 3.514 -1.767 0 0 0 0 0 0 0 +-5.757 3.494 -1.766 0 0 0 0 0 0 0 +-5.762 3.472 -1.764 0 0 0 0 0 0 0 +-5.769 3.452 -1.763 0 0 0 0 0 0 0 +-5.783 3.436 -1.764 0 0 0 0 0 0 0 +-5.796 3.419 -1.765 0 0 0 0 0 0 0 +-5.81 3.403 -1.766 0 0 0 0 0 0 0 +-5.808 3.39 -1.764 0 0 0 0 0 0 0 +-5.817 3.37 -1.763 0 0 0 0 0 0 0 +-5.826 3.351 -1.763 0 0 0 0 0 0 0 +-5.825 3.326 -1.759 0 0 0 0 0 0 0 +-5.849 3.315 -1.763 0 0 0 0 0 0 0 +-5.863 3.299 -1.764 0 0 0 0 0 0 0 +-5.863 3.275 -1.761 0 0 0 0 0 0 0 +-5.863 3.263 -1.759 0 0 0 0 0 0 0 +-5.873 3.244 -1.759 0 0 0 0 0 0 0 +-5.883 3.226 -1.759 0 0 0 0 0 0 0 +-5.892 3.206 -1.759 0 0 0 0 0 0 0 +-5.907 3.191 -1.76 0 0 0 0 0 0 0 +-5.915 3.171 -1.76 0 0 0 0 0 0 0 +-5.925 3.152 -1.76 0 0 0 0 0 0 0 +-5.93 3.143 -1.76 0 0 0 0 0 0 0 +-5.943 3.126 -1.761 0 0 0 0 0 0 0 +-5.95 3.106 -1.76 0 0 0 0 0 0 0 +-5.956 3.085 -1.759 0 0 0 0 0 0 0 +-5.971 3.069 -1.76 0 0 0 0 0 0 0 +-5.974 3.047 -1.758 0 0 0 0 0 0 0 +-5.983 3.028 -1.758 0 0 0 0 0 0 0 +-5.995 3.022 -1.76 0 0 0 0 0 0 0 +-5.987 2.995 -1.755 0 0 0 0 0 0 0 +-6.005 2.98 -1.758 0 0 0 0 0 0 0 +-6.028 2.968 -1.762 0 0 0 0 0 0 0 +-6.012 2.936 -1.754 0 0 0 0 0 0 0 +-6.017 2.916 -1.753 0 0 0 0 0 0 0 +-6.385 1.912 -1.747 0 0 0 0 0 0 0 +-6.4 1.895 -1.75 0 0 0 0 0 0 0 +-6.401 1.873 -1.748 0 0 0 0 0 0 0 +-6.42 1.857 -1.752 0 0 0 0 0 0 0 +-6.428 1.849 -1.753 0 0 0 0 0 0 0 +-6.445 1.832 -1.757 0 0 0 0 0 0 0 +-6.434 1.807 -1.752 0 0 0 0 0 0 0 +-6.449 1.789 -1.754 0 0 0 0 0 0 0 +-6.44 1.765 -1.75 0 0 0 0 0 0 0 +-6.473 1.752 -1.758 0 0 0 0 0 0 0 +-6.462 1.727 -1.753 0 0 0 0 0 0 0 +-6.47 1.718 -1.755 0 0 0 0 0 0 0 +-6.47 1.697 -1.753 0 0 0 0 0 0 0 +-6.484 1.679 -1.756 0 0 0 0 0 0 0 +-6.478 1.655 -1.753 0 0 0 0 0 0 0 +-6.489 1.637 -1.754 0 0 0 0 0 0 0 +-6.498 1.617 -1.756 0 0 0 0 0 0 0 +-6.496 1.595 -1.753 0 0 0 0 0 0 0 +-6.517 1.579 -1.758 0 0 0 0 0 0 0 +-6.503 1.564 -1.753 0 0 0 0 0 0 0 +-6.502 1.542 -1.752 0 0 0 0 0 0 0 +-6.52 1.525 -1.756 0 0 0 0 0 0 0 +-6.519 1.503 -1.754 0 0 0 0 0 0 0 +-6.532 1.484 -1.756 0 0 0 0 0 0 0 +-6.531 1.463 -1.754 0 0 0 0 0 0 0 +-6.528 1.44 -1.752 0 0 0 0 0 0 0 +-6.537 1.432 -1.754 0 0 0 0 0 0 0 +-6.549 1.413 -1.757 0 0 0 0 0 0 0 +-6.539 1.389 -1.752 0 0 0 0 0 0 0 +-6.545 1.369 -1.753 0 0 0 0 0 0 0 +-6.564 1.352 -1.757 0 0 0 0 0 0 0 +-6.552 1.327 -1.752 0 0 0 0 0 0 0 +-6.561 1.308 -1.754 0 0 0 0 0 0 0 +-6.573 1.289 -1.756 0 0 0 0 0 0 0 +-6.562 1.276 -1.752 0 0 0 0 0 0 0 +-6.587 1.259 -1.758 0 0 0 0 0 0 0 +-6.572 1.235 -1.753 0 0 0 0 0 0 0 +-6.575 1.214 -1.753 0 0 0 0 0 0 0 +-6.583 1.194 -1.754 0 0 0 0 0 0 0 +-6.598 1.176 -1.757 0 0 0 0 0 0 0 +-6.587 1.152 -1.753 0 0 0 0 0 0 0 +-6.588 1.142 -1.753 0 0 0 0 0 0 0 +-6.603 1.123 -1.756 0 0 0 0 0 0 0 +-6.586 1.099 -1.75 0 0 0 0 0 0 0 +-6.595 1.079 -1.752 0 0 0 0 0 0 0 +-6.604 1.059 -1.753 0 0 0 0 0 0 0 +-6.598 1.037 -1.751 0 0 0 0 0 0 0 +-6.611 1.018 -1.753 0 0 0 0 0 0 0 +-6.618 1.008 -1.755 0 0 0 0 0 0 0 +-6.602 0.985 -1.75 0 0 0 0 0 0 0 +-6.613 0.965 -1.752 0 0 0 0 0 0 0 +-6.621 0.945 -1.753 0 0 0 0 0 0 0 +-6.617 0.923 -1.751 0 0 0 0 0 0 0 +-6.623 0.903 -1.752 0 0 0 0 0 0 0 +-6.622 0.882 -1.751 0 0 0 0 0 0 0 +-6.622 0.871 -1.751 0 0 0 0 0 0 0 +-6.628 0.851 -1.752 0 0 0 0 0 0 0 +-6.631 0.83 -1.752 0 0 0 0 0 0 0 +-6.634 0.809 -1.752 0 0 0 0 0 0 0 +-6.648 0.79 -1.755 0 0 0 0 0 0 0 +-6.64 0.768 -1.752 0 0 0 0 0 0 0 +-6.635 0.746 -1.75 0 0 0 0 0 0 0 +-6.644 0.736 -1.752 0 0 0 0 0 0 0 +-6.644 0.715 -1.752 0 0 0 0 0 0 0 +-6.648 0.695 -1.752 0 0 0 0 0 0 0 +-6.654 0.674 -1.753 0 0 0 0 0 0 0 +-6.647 0.652 -1.751 0 0 0 0 0 0 0 +-6.66 0.632 -1.754 0 0 0 0 0 0 0 +-6.666 0.612 -1.755 0 0 0 0 0 0 0 +-6.659 0.59 -1.752 0 0 0 0 0 0 0 +-6.663 0.58 -1.753 0 0 0 0 0 0 0 +-6.667 0.559 -1.754 0 0 0 0 0 0 0 +-6.676 0.539 -1.756 0 0 0 0 0 0 0 +-6.67 0.517 -1.754 0 0 0 0 0 0 0 +-6.682 0.497 -1.757 0 0 0 0 0 0 0 +-6.681 0.476 -1.756 0 0 0 0 0 0 0 +-6.677 0.455 -1.754 0 0 0 0 0 0 0 +-6.685 0.445 -1.757 0 0 0 0 0 0 0 +-6.687 0.424 -1.757 0 0 0 0 0 0 0 +-6.686 0.402 -1.756 0 0 0 0 0 0 0 +-6.691 0.382 -1.757 0 0 0 0 0 0 0 +-6.681 0.36 -1.754 0 0 0 0 0 0 0 +-6.699 0.34 -1.759 0 0 0 0 0 0 0 +-6.689 0.318 -1.756 0 0 0 0 0 0 0 +-6.697 0.308 -1.758 0 0 0 0 0 0 0 +-6.69 0.287 -1.756 0 0 0 0 0 0 0 +-6.699 0.266 -1.758 0 0 0 0 0 0 0 +-6.692 0.245 -1.756 0 0 0 0 0 0 0 +-6.704 0.224 -1.759 0 0 0 0 0 0 0 +-6.707 0.203 -1.759 0 0 0 0 0 0 0 +-6.694 0.182 -1.756 0 0 0 0 0 0 0 +-6.7 0.171 -1.757 0 0 0 0 0 0 0 +-6.7 0.15 -1.757 0 0 0 0 0 0 0 +-6.714 0.13 -1.761 0 0 0 0 0 0 0 +-7.009 0.114 -1.844 0 0 0 0 0 0 0 +-7.017 0.092 -1.846 0 0 0 0 0 0 0 +-7.017 0.07 -1.846 0 0 0 0 0 0 0 +-7.016 0.048 -1.845 0 0 0 0 0 0 0 +-7.018 0.026 -1.846 0 0 0 0 0 0 0 +-7.014 0.004 -1.845 0 0 0 0 0 0 0 +-7.02 -0.007 -1.846 0 0 0 0 0 0 0 +-7.033 -0.029 -1.85 0 0 0 0 0 0 0 +-7.023 -0.051 -1.847 0 0 0 0 0 0 0 +-7.019 -0.073 -1.846 0 0 0 0 0 0 0 +-7.017 -0.095 -1.846 0 0 0 0 0 0 0 +-7.019 -0.117 -1.846 0 0 0 0 0 0 0 +-7.024 -0.139 -1.848 0 0 0 0 0 0 0 +-7.014 -0.15 -1.845 0 0 0 0 0 0 0 +-7.025 -0.172 -1.848 0 0 0 0 0 0 0 +-7.023 -0.194 -1.848 0 0 0 0 0 0 0 +-7.018 -0.216 -1.847 0 0 0 0 0 0 0 +-7.012 -0.238 -1.845 0 0 0 0 0 0 0 +-7.023 -0.261 -1.848 0 0 0 0 0 0 0 +-7.01 -0.282 -1.845 0 0 0 0 0 0 0 +-7.025 -0.294 -1.849 0 0 0 0 0 0 0 +-7.02 -0.316 -1.848 0 0 0 0 0 0 0 +-7.014 -0.338 -1.847 0 0 0 0 0 0 0 +-7.016 -0.36 -1.848 0 0 0 0 0 0 0 +-7.013 -0.382 -1.847 0 0 0 0 0 0 0 +-7.01 -0.404 -1.847 0 0 0 0 0 0 0 +-7.015 -0.426 -1.848 0 0 0 0 0 0 0 +-7.004 -0.436 -1.846 0 0 0 0 0 0 0 +-7.001 -0.458 -1.845 0 0 0 0 0 0 0 +-7.003 -0.481 -1.846 0 0 0 0 0 0 0 +-7.006 -0.503 -1.847 0 0 0 0 0 0 0 +-6.994 -0.524 -1.845 0 0 0 0 0 0 0 +-6.997 -0.546 -1.846 0 0 0 0 0 0 0 +-6.999 -0.569 -1.847 0 0 0 0 0 0 0 +-6.992 -0.579 -1.845 0 0 0 0 0 0 0 +-6.998 -0.602 -1.847 0 0 0 0 0 0 0 +-6.982 -0.623 -1.844 0 0 0 0 0 0 0 +-6.992 -0.646 -1.847 0 0 0 0 0 0 0 +-6.982 -0.667 -1.845 0 0 0 0 0 0 0 +-6.976 -0.688 -1.844 0 0 0 0 0 0 0 +-6.964 -0.709 -1.841 0 0 0 0 0 0 0 +-6.97 -0.732 -1.843 0 0 0 0 0 0 0 +-6.963 -0.742 -1.841 0 0 0 0 0 0 0 +-6.97 -0.765 -1.844 0 0 0 0 0 0 0 +-6.952 -0.785 -1.84 0 0 0 0 0 0 0 +-6.944 -0.807 -1.838 0 0 0 0 0 0 0 +-6.942 -0.828 -1.838 0 0 0 0 0 0 0 +-6.935 -0.85 -1.837 0 0 0 0 0 0 0 +-6.938 -0.872 -1.839 0 0 0 0 0 0 0 +-6.937 -0.883 -1.839 0 0 0 0 0 0 0 +-6.944 -0.906 -1.841 0 0 0 0 0 0 0 +-6.922 -0.926 -1.836 0 0 0 0 0 0 0 +-6.922 -0.948 -1.837 0 0 0 0 0 0 0 +-6.918 -0.969 -1.837 0 0 0 0 0 0 0 +-6.926 -0.993 -1.84 0 0 0 0 0 0 0 +-6.913 -1.013 -1.837 0 0 0 0 0 0 0 +-6.915 -1.024 -1.838 0 0 0 0 0 0 0 +-6.912 -1.046 -1.838 0 0 0 0 0 0 0 +-6.901 -1.067 -1.836 0 0 0 0 0 0 0 +-6.909 -1.09 -1.839 0 0 0 0 0 0 0 +-6.912 -1.113 -1.841 0 0 0 0 0 0 0 +-6.9 -1.133 -1.839 0 0 0 0 0 0 0 +-6.901 -1.156 -1.84 0 0 0 0 0 0 0 +-6.893 -1.165 -1.838 0 0 0 0 0 0 0 +-6.874 -1.184 -1.834 0 0 0 0 0 0 0 +-6.882 -1.208 -1.837 0 0 0 0 0 0 0 +-6.865 -1.227 -1.833 0 0 0 0 0 0 0 +-6.878 -1.252 -1.838 0 0 0 0 0 0 0 +-6.885 -1.276 -1.841 0 0 0 0 0 0 0 +-6.864 -1.294 -1.837 0 0 0 0 0 0 0 +-6.87 -1.306 -1.839 0 0 0 0 0 0 0 +-6.862 -1.327 -1.838 0 0 0 0 0 0 0 +-6.852 -1.348 -1.836 0 0 0 0 0 0 0 +-6.857 -1.371 -1.839 0 0 0 0 0 0 0 +-6.855 -1.393 -1.839 0 0 0 0 0 0 0 +-6.846 -1.414 -1.838 0 0 0 0 0 0 0 +-6.844 -1.436 -1.839 0 0 0 0 0 0 0 +-6.836 -1.445 -1.837 0 0 0 0 0 0 0 +-6.826 -1.465 -1.835 0 0 0 0 0 0 0 +-6.825 -1.488 -1.837 0 0 0 0 0 0 0 +-6.824 -1.51 -1.838 0 0 0 0 0 0 0 +-6.804 -1.528 -1.833 0 0 0 0 0 0 0 +-6.814 -1.553 -1.838 0 0 0 0 0 0 0 +-6.806 -1.573 -1.837 0 0 0 0 0 0 0 +-6.801 -1.584 -1.836 0 0 0 0 0 0 0 +-6.794 -1.604 -1.835 0 0 0 0 0 0 0 +-6.801 -1.628 -1.839 0 0 0 0 0 0 0 +-6.795 -1.65 -1.839 0 0 0 0 0 0 0 +-6.796 -1.672 -1.84 0 0 0 0 0 0 0 +-6.791 -1.694 -1.84 0 0 0 0 0 0 0 +-6.77 -1.711 -1.836 0 0 0 0 0 0 0 +-6.774 -1.735 -1.839 0 0 0 0 0 0 0 +-6.771 -1.746 -1.839 0 0 0 0 0 0 0 +-6.796 -1.775 -1.847 0 0 0 0 0 0 0 +-6.762 -1.789 -1.839 0 0 0 0 0 0 0 +-6.76 -1.811 -1.84 0 0 0 0 0 0 0 +-6.755 -1.832 -1.84 0 0 0 0 0 0 0 +-6.343 -2.847 -1.827 0 0 0 0 0 0 0 +-6.346 -2.873 -1.831 0 0 0 0 0 0 0 +-6.317 -2.884 -1.825 0 0 0 0 0 0 0 +-6.326 -2.912 -1.831 0 0 0 0 0 0 0 +-6.311 -2.929 -1.829 0 0 0 0 0 0 0 +-6.301 -2.948 -1.828 0 0 0 0 0 0 0 +-6.303 -2.961 -1.831 0 0 0 0 0 0 0 +-6.285 -2.977 -1.828 0 0 0 0 0 0 0 +-6.277 -2.998 -1.828 0 0 0 0 0 0 0 +-6.261 -3.014 -1.826 0 0 0 0 0 0 0 +-6.251 -3.034 -1.826 0 0 0 0 0 0 0 +-6.238 -3.052 -1.825 0 0 0 0 0 0 0 +-6.218 -3.066 -1.822 0 0 0 0 0 0 0 +-6.217 -3.078 -1.823 0 0 0 0 0 0 0 +-6.207 -3.097 -1.823 0 0 0 0 0 0 0 +-6.199 -3.118 -1.824 0 0 0 0 0 0 0 +-6.186 -3.135 -1.822 0 0 0 0 0 0 0 +-6.176 -3.155 -1.822 0 0 0 0 0 0 0 +-6.161 -3.171 -1.821 0 0 0 0 0 0 0 +-6.144 -3.187 -1.819 0 0 0 0 0 0 0 +-6.151 -3.203 -1.822 0 0 0 0 0 0 0 +-6.139 -3.222 -1.822 0 0 0 0 0 0 0 +-6.134 -3.243 -1.824 0 0 0 0 0 0 0 +-6.11 -3.256 -1.819 0 0 0 0 0 0 0 +-6.1 -3.275 -1.819 0 0 0 0 0 0 0 +-6.09 -3.294 -1.819 0 0 0 0 0 0 0 +-6.081 -3.314 -1.82 0 0 0 0 0 0 0 +-6.071 -3.321 -1.818 0 0 0 0 0 0 0 +-6.064 -3.342 -1.819 0 0 0 0 0 0 0 +-6.062 -3.365 -1.822 0 0 0 0 0 0 0 +-6.039 -3.378 -1.818 0 0 0 0 0 0 0 +-6.027 -3.396 -1.818 0 0 0 0 0 0 0 +-6.016 -3.415 -1.818 0 0 0 0 0 0 0 +-6.005 -3.434 -1.818 0 0 0 0 0 0 0 +-5.993 -3.439 -1.815 0 0 0 0 0 0 0 +-5.996 -3.466 -1.82 0 0 0 0 0 0 0 +-5.985 -3.484 -1.82 0 0 0 0 0 0 0 +-5.962 -3.496 -1.816 0 0 0 0 0 0 0 +-5.951 -3.515 -1.816 0 0 0 0 0 0 0 +-5.934 -3.53 -1.814 0 0 0 0 0 0 0 +-5.924 -3.55 -1.814 0 0 0 0 0 0 0 +-5.914 -3.556 -1.813 0 0 0 0 0 0 0 +-5.907 -3.577 -1.814 0 0 0 0 0 0 0 +-5.903 -3.6 -1.817 0 0 0 0 0 0 0 +-5.888 -3.616 -1.815 0 0 0 0 0 0 0 +-5.875 -3.634 -1.815 0 0 0 0 0 0 0 +-5.857 -3.648 -1.813 0 0 0 0 0 0 0 +-5.846 -3.667 -1.813 0 0 0 0 0 0 0 +-5.84 -3.676 -1.813 0 0 0 0 0 0 0 +-5.827 -3.693 -1.812 0 0 0 0 0 0 0 +-5.817 -3.713 -1.813 0 0 0 0 0 0 0 +-5.803 -3.73 -1.812 0 0 0 0 0 0 0 +-5.793 -3.749 -1.813 0 0 0 0 0 0 0 +-5.785 -3.769 -1.814 0 0 0 0 0 0 0 +-5.773 -3.787 -1.814 0 0 0 0 0 0 0 +-5.762 -3.807 -1.814 0 0 0 0 0 0 0 +-5.758 -3.817 -1.815 0 0 0 0 0 0 0 +-5.746 -3.835 -1.815 0 0 0 0 0 0 0 +-5.726 -3.847 -1.812 0 0 0 0 0 0 0 +-5.714 -3.865 -1.812 0 0 0 0 0 0 0 +-5.706 -3.887 -1.814 0 0 0 0 0 0 0 +-5.696 -3.906 -1.814 0 0 0 0 0 0 0 +-5.682 -3.922 -1.814 0 0 0 0 0 0 0 +-5.674 -3.93 -1.813 0 0 0 0 0 0 0 +-5.662 -3.948 -1.813 0 0 0 0 0 0 0 +-5.657 -3.971 -1.816 0 0 0 0 0 0 0 +-5.64 -3.986 -1.814 0 0 0 0 0 0 0 +-5.626 -4.002 -1.814 0 0 0 0 0 0 0 +-5.607 -4.016 -1.812 0 0 0 0 0 0 0 +-5.605 -4.041 -1.815 0 0 0 0 0 0 0 +-5.593 -4.045 -1.813 0 0 0 0 0 0 0 +-5.586 -4.067 -1.815 0 0 0 0 0 0 0 +-5.57 -4.083 -1.814 0 0 0 0 0 0 0 +-5.556 -4.099 -1.814 0 0 0 0 0 0 0 +-5.546 -4.119 -1.815 0 0 0 0 0 0 0 +-5.536 -4.138 -1.816 0 0 0 0 0 0 0 +-5.509 -4.145 -1.811 0 0 0 0 0 0 0 +-5.52 -4.167 -1.817 0 0 0 0 0 0 0 +-5.491 -4.172 -1.812 0 0 0 0 0 0 0 +-5.48 -4.191 -1.812 0 0 0 0 0 0 0 +-5.472 -4.213 -1.814 0 0 0 0 0 0 0 +-5.455 -4.226 -1.813 0 0 0 0 0 0 0 +-5.446 -4.247 -1.814 0 0 0 0 0 0 0 +-5.43 -4.262 -1.813 0 0 0 0 0 0 0 +-5.427 -4.274 -1.815 0 0 0 0 0 0 0 +-5.412 -4.29 -1.814 0 0 0 0 0 0 0 +-5.409 -4.315 -1.818 0 0 0 0 0 0 0 +-5.388 -4.326 -1.815 0 0 0 0 0 0 0 +-5.375 -4.343 -1.815 0 0 0 0 0 0 0 +-5.375 -4.371 -1.82 0 0 0 0 0 0 0 +-5.355 -4.383 -1.818 0 0 0 0 0 0 0 +-5.342 -4.386 -1.816 0 0 0 0 0 0 0 +-5.327 -4.402 -1.815 0 0 0 0 0 0 0 +-5.313 -4.418 -1.815 0 0 0 0 0 0 0 +-5.297 -4.434 -1.815 0 0 0 0 0 0 0 +-5.279 -4.447 -1.813 0 0 0 0 0 0 0 +-5.272 -4.47 -1.816 0 0 0 0 0 0 0 +-5.255 -4.484 -1.815 0 0 0 0 0 0 0 +-5.259 -4.501 -1.819 0 0 0 0 0 0 0 +-5.24 -4.513 -1.817 0 0 0 0 0 0 0 +-5.243 -4.545 -1.824 0 0 0 0 0 0 0 +-5.235 -4.566 -1.826 0 0 0 0 0 0 0 +-5.17 -4.538 -1.807 0 0 0 0 0 0 0 +-5.154 -4.553 -1.806 0 0 0 0 0 0 0 +-5.151 -4.58 -1.811 0 0 0 0 0 0 0 +-5.135 -4.595 -1.81 0 0 0 0 0 0 0 +-5.124 -4.599 -1.808 0 0 0 0 0 0 0 +-5.098 -4.605 -1.804 0 0 0 0 0 0 0 +-5.088 -4.624 -1.806 0 0 0 0 0 0 0 +-5.077 -4.644 -1.807 0 0 0 0 0 0 0 +-5.058 -4.656 -1.806 0 0 0 0 0 0 0 +-5.035 -4.664 -1.802 0 0 0 0 0 0 0 +-5.019 -4.679 -1.802 0 0 0 0 0 0 0 +-5.013 -4.688 -1.802 0 0 0 0 0 0 0 +-5.004 -4.709 -1.805 0 0 0 0 0 0 0 +-4.985 -4.721 -1.803 0 0 0 0 0 0 0 +-4.976 -4.742 -1.805 0 0 0 0 0 0 0 +-4.95 -4.747 -1.801 0 0 0 0 0 0 0 +-4.932 -4.76 -1.8 0 0 0 0 0 0 0 +-4.921 -4.779 -1.801 0 0 0 0 0 0 0 +-4.907 -4.78 -1.799 0 0 0 0 0 0 0 +-4.897 -4.801 -1.801 0 0 0 0 0 0 0 +-4.878 -4.812 -1.799 0 0 0 0 0 0 0 +-4.862 -4.826 -1.799 0 0 0 0 0 0 0 +-4.848 -4.843 -1.799 0 0 0 0 0 0 0 +-4.831 -4.857 -1.799 0 0 0 0 0 0 0 +-4.81 -4.866 -1.797 0 0 0 0 0 0 0 +-4.803 -4.874 -1.797 0 0 0 0 0 0 0 +-4.793 -4.894 -1.799 0 0 0 0 0 0 0 +-4.769 -4.901 -1.795 0 0 0 0 0 0 0 +-4.759 -4.922 -1.798 0 0 0 0 0 0 0 +-4.736 -4.928 -1.794 0 0 0 0 0 0 0 +-4.723 -4.946 -1.795 0 0 0 0 0 0 0 +-4.702 -4.955 -1.793 0 0 0 0 0 0 0 +-4.698 -4.967 -1.795 0 0 0 0 0 0 0 +-4.681 -4.98 -1.794 0 0 0 0 0 0 0 +-4.666 -4.995 -1.794 0 0 0 0 0 0 0 +-4.651 -5.011 -1.795 0 0 0 0 0 0 0 +-4.629 -5.018 -1.792 0 0 0 0 0 0 0 +-4.617 -5.037 -1.794 0 0 0 0 0 0 0 +-4.603 -5.053 -1.794 0 0 0 0 0 0 0 +-4.588 -5.053 -1.792 0 0 0 0 0 0 0 +-4.575 -5.07 -1.793 0 0 0 0 0 0 0 +-4.551 -5.076 -1.79 0 0 0 0 0 0 0 +-4.536 -5.092 -1.79 0 0 0 0 0 0 0 +-4.52 -5.106 -1.79 0 0 0 0 0 0 0 +-4.504 -5.12 -1.79 0 0 0 0 0 0 0 +-4.492 -5.139 -1.792 0 0 0 0 0 0 0 +-4.478 -5.138 -1.789 0 0 0 0 0 0 0 +-4.459 -5.15 -1.788 0 0 0 0 0 0 0 +-4.448 -5.169 -1.79 0 0 0 0 0 0 0 +-4.428 -5.179 -1.788 0 0 0 0 0 0 0 +-4.411 -5.193 -1.788 0 0 0 0 0 0 0 +-4.394 -5.205 -1.788 0 0 0 0 0 0 0 +-4.381 -5.223 -1.79 0 0 0 0 0 0 0 +-4.364 -5.22 -1.786 0 0 0 0 0 0 0 +-4.349 -5.235 -1.786 0 0 0 0 0 0 0 +-4.331 -5.247 -1.786 0 0 0 0 0 0 0 +-4.314 -5.259 -1.785 0 0 0 0 0 0 0 +-4.302 -5.279 -1.787 0 0 0 0 0 0 0 +-4.281 -5.286 -1.785 0 0 0 0 0 0 0 +-4.266 -5.303 -1.786 0 0 0 0 0 0 0 +-4.257 -5.308 -1.786 0 0 0 0 0 0 0 +-4.238 -5.318 -1.785 0 0 0 0 0 0 0 +-4.223 -5.335 -1.786 0 0 0 0 0 0 0 +-4.203 -5.343 -1.784 0 0 0 0 0 0 0 +-4.191 -5.363 -1.786 0 0 0 0 0 0 0 +-4.175 -5.377 -1.787 0 0 0 0 0 0 0 +-4.154 -5.384 -1.785 0 0 0 0 0 0 0 +-4.144 -5.389 -1.784 0 0 0 0 0 0 0 +-4.126 -5.401 -1.784 0 0 0 0 0 0 0 +-4.114 -5.42 -1.786 0 0 0 0 0 0 0 +-4.091 -5.425 -1.783 0 0 0 0 0 0 0 +-4.083 -5.45 -1.787 0 0 0 0 0 0 0 +-4.061 -5.457 -1.785 0 0 0 0 0 0 0 +-4.041 -5.465 -1.784 0 0 0 0 0 0 0 +-4.035 -5.476 -1.785 0 0 0 0 0 0 0 +-4.023 -5.495 -1.787 0 0 0 0 0 0 0 +-4.004 -5.506 -1.787 0 0 0 0 0 0 0 +-3.99 -5.523 -1.788 0 0 0 0 0 0 0 +-3.967 -5.528 -1.786 0 0 0 0 0 0 0 +-3.949 -5.539 -1.785 0 0 0 0 0 0 0 +-3.937 -5.559 -1.788 0 0 0 0 0 0 0 +-3.931 -5.568 -1.789 0 0 0 0 0 0 0 +-3.914 -5.582 -1.79 0 0 0 0 0 0 0 +-3.9 -5.599 -1.791 0 0 0 0 0 0 0 +-3.878 -5.605 -1.789 0 0 0 0 0 0 0 +-3.86 -5.617 -1.789 0 0 0 0 0 0 0 +-3.855 -5.647 -1.795 0 0 0 0 0 0 0 +-3.834 -5.654 -1.793 0 0 0 0 0 0 0 +-3.82 -5.672 -1.795 0 0 0 0 0 0 0 +-3.817 -5.686 -1.798 0 0 0 0 0 0 0 +-3.812 -5.717 -1.805 0 0 0 0 0 0 0 +-3.787 -5.72 -1.801 0 0 0 0 0 0 0 +-3.752 -5.706 -1.793 0 0 0 0 0 0 0 +-3.73 -5.711 -1.791 0 0 0 0 0 0 0 +-3.734 -5.757 -1.802 0 0 0 0 0 0 0 +-3.741 -5.807 -1.815 0 0 0 0 0 0 0 +-3.728 -5.807 -1.813 0 0 0 0 0 0 0 +-3.678 -5.77 -1.797 0 0 0 0 0 0 0 +-3.658 -5.778 -1.795 0 0 0 0 0 0 0 +-3.636 -5.783 -1.793 0 0 0 0 0 0 0 +-3.612 -5.785 -1.79 0 0 0 0 0 0 0 +-3.591 -5.793 -1.789 0 0 0 0 0 0 0 +-3.572 -5.802 -1.788 0 0 0 0 0 0 0 +-3.563 -5.808 -1.788 0 0 0 0 0 0 0 +-3.545 -5.819 -1.788 0 0 0 0 0 0 0 +-3.525 -5.829 -1.788 0 0 0 0 0 0 0 +-3.504 -5.835 -1.786 0 0 0 0 0 0 0 +-3.484 -5.842 -1.785 0 0 0 0 0 0 0 +-3.464 -5.852 -1.785 0 0 0 0 0 0 0 +-3.445 -5.861 -1.784 0 0 0 0 0 0 0 +-3.439 -5.871 -1.786 0 0 0 0 0 0 0 +-3.421 -5.884 -1.786 0 0 0 0 0 0 0 +-3.401 -5.891 -1.785 0 0 0 0 0 0 0 +-3.383 -5.903 -1.786 0 0 0 0 0 0 0 +-3.363 -5.911 -1.785 0 0 0 0 0 0 0 +-3.347 -5.926 -1.786 0 0 0 0 0 0 0 +-3.327 -5.933 -1.785 0 0 0 0 0 0 0 +-3.315 -5.935 -1.784 0 0 0 0 0 0 0 +-3.298 -5.947 -1.785 0 0 0 0 0 0 0 +-3.28 -5.959 -1.785 0 0 0 0 0 0 0 +-3.256 -5.959 -1.782 0 0 0 0 0 0 0 +-3.239 -5.973 -1.783 0 0 0 0 0 0 0 +-3.219 -5.981 -1.783 0 0 0 0 0 0 0 +-3.197 -5.986 -1.781 0 0 0 0 0 0 0 +-3.192 -5.998 -1.783 0 0 0 0 0 0 0 +-3.174 -6.01 -1.784 0 0 0 0 0 0 0 +-3.148 -6.006 -1.779 0 0 0 0 0 0 0 +-3.133 -6.025 -1.782 0 0 0 0 0 0 0 +-3.116 -6.038 -1.783 0 0 0 0 0 0 0 +-3.099 -6.051 -1.784 0 0 0 0 0 0 0 +-3.08 -6.061 -1.784 0 0 0 0 0 0 0 +-3.073 -6.071 -1.786 0 0 0 0 0 0 0 +-3.047 -6.067 -1.781 0 0 0 0 0 0 0 +-3.03 -6.081 -1.783 0 0 0 0 0 0 0 +-3.009 -6.086 -1.781 0 0 0 0 0 0 0 +-2.987 -6.09 -1.78 0 0 0 0 0 0 0 +-2.974 -6.111 -1.784 0 0 0 0 0 0 0 +-2.955 -6.122 -1.784 0 0 0 0 0 0 0 +-2.937 -6.11 -1.779 0 0 0 0 0 0 0 +-2.923 -6.129 -1.782 0 0 0 0 0 0 0 +-2.902 -6.135 -1.781 0 0 0 0 0 0 0 +-2.884 -6.146 -1.781 0 0 0 0 0 0 0 +-2.868 -6.162 -1.784 0 0 0 0 0 0 0 +-2.848 -6.169 -1.783 0 0 0 0 0 0 0 +-2.822 -6.166 -1.779 0 0 0 0 0 0 0 +-2.817 -6.179 -1.782 0 0 0 0 0 0 0 +-2.797 -6.188 -1.782 0 0 0 0 0 0 0 +-2.776 -6.193 -1.781 0 0 0 0 0 0 0 +-2.758 -6.205 -1.782 0 0 0 0 0 0 0 +-2.741 -6.217 -1.783 0 0 0 0 0 0 0 +-2.717 -6.217 -1.78 0 0 0 0 0 0 0 +-2.7 -6.231 -1.782 0 0 0 0 0 0 0 +-2.69 -6.235 -1.782 0 0 0 0 0 0 0 +-2.668 -6.238 -1.78 0 0 0 0 0 0 0 +-2.654 -6.259 -1.784 0 0 0 0 0 0 0 +-2.632 -6.262 -1.783 0 0 0 0 0 0 0 +-2.611 -6.267 -1.781 0 0 0 0 0 0 0 +-2.591 -6.275 -1.781 0 0 0 0 0 0 0 +-2.576 -6.295 -1.785 0 0 0 0 0 0 0 +-2.564 -6.292 -1.783 0 0 0 0 0 0 0 +-2.544 -6.3 -1.783 0 0 0 0 0 0 0 +-2.525 -6.31 -1.784 0 0 0 0 0 0 0 +-2.507 -6.323 -1.785 0 0 0 0 0 0 0 +-2.484 -6.324 -1.783 0 0 0 0 0 0 0 +-2.465 -6.334 -1.784 0 0 0 0 0 0 0 +-2.45 -6.352 -1.787 0 0 0 0 0 0 0 +-2.438 -6.352 -1.786 0 0 0 0 0 0 0 +-2.426 -6.381 -1.792 0 0 0 0 0 0 0 +-2.427 -6.443 -1.808 0 0 0 0 0 0 0 +-2.374 -6.364 -1.783 0 0 0 0 0 0 0 +-2.358 -6.382 -1.786 0 0 0 0 0 0 0 +-2.313 -6.383 -1.781 0 0 0 0 0 0 0 +-2.285 -6.368 -1.775 0 0 0 0 0 0 0 +-2.275 -6.374 -1.776 0 0 0 0 0 0 0 +-2.257 -6.384 -1.777 0 0 0 0 0 0 0 +-2.226 -6.362 -1.768 0 0 0 0 0 0 0 +-2.206 -6.367 -1.767 0 0 0 0 0 0 0 +-2.181 -6.362 -1.764 0 0 0 0 0 0 0 +-2.161 -6.368 -1.764 0 0 0 0 0 0 0 +-2.141 -6.375 -1.764 0 0 0 0 0 0 0 +-2.129 -6.371 -1.761 0 0 0 0 0 0 0 +-2.107 -6.372 -1.76 0 0 0 0 0 0 0 +-2.086 -6.375 -1.759 0 0 0 0 0 0 0 +-2.064 -6.378 -1.758 0 0 0 0 0 0 0 +-2.043 -6.381 -1.757 0 0 0 0 0 0 0 +-2.022 -6.386 -1.756 0 0 0 0 0 0 0 +-2.012 -6.387 -1.756 0 0 0 0 0 0 0 +-1.991 -6.391 -1.755 0 0 0 0 0 0 0 +-1.967 -6.385 -1.751 0 0 0 0 0 0 0 +-1.949 -6.396 -1.753 0 0 0 0 0 0 0 +-1.927 -6.397 -1.751 0 0 0 0 0 0 0 +-1.906 -6.399 -1.75 0 0 0 0 0 0 0 +-1.889 -6.416 -1.753 0 0 0 0 0 0 0 +-1.867 -6.415 -1.751 0 0 0 0 0 0 0 +-1.855 -6.412 -1.75 0 0 0 0 0 0 0 +-1.834 -6.414 -1.749 0 0 0 0 0 0 0 +-1.812 -6.416 -1.747 0 0 0 0 0 0 0 +-1.792 -6.42 -1.747 0 0 0 0 0 0 0 +-1.77 -6.42 -1.745 0 0 0 0 0 0 0 +-1.752 -6.433 -1.747 0 0 0 0 0 0 0 +-1.73 -6.433 -1.746 0 0 0 0 0 0 0 +-1.719 -6.432 -1.745 0 0 0 0 0 0 0 +-1.698 -6.435 -1.744 0 0 0 0 0 0 0 +-1.677 -6.435 -1.743 0 0 0 0 0 0 0 +-1.655 -6.435 -1.741 0 0 0 0 0 0 0 +-1.636 -6.444 -1.742 0 0 0 0 0 0 0 +-1.617 -6.454 -1.744 0 0 0 0 0 0 0 +-1.594 -6.45 -1.741 0 0 0 0 0 0 0 +-1.585 -6.456 -1.742 0 0 0 0 0 0 0 +-1.565 -6.461 -1.742 0 0 0 0 0 0 0 +-1.543 -6.459 -1.74 0 0 0 0 0 0 0 +-1.524 -6.469 -1.742 0 0 0 0 0 0 0 +-1.502 -6.466 -1.739 0 0 0 0 0 0 0 +-1.482 -6.475 -1.74 0 0 0 0 0 0 0 +-1.462 -6.481 -1.741 0 0 0 0 0 0 0 +-1.449 -6.469 -1.737 0 0 0 0 0 0 0 +-1.431 -6.486 -1.74 0 0 0 0 0 0 0 +-1.41 -6.485 -1.739 0 0 0 0 0 0 0 +-1.389 -6.488 -1.738 0 0 0 0 0 0 0 +-1.368 -6.492 -1.738 0 0 0 0 0 0 0 +-1.347 -6.491 -1.737 0 0 0 0 0 0 0 +-1.326 -6.495 -1.737 0 0 0 0 0 0 0 +-1.318 -6.504 -1.739 0 0 0 0 0 0 0 +-1.296 -6.503 -1.737 0 0 0 0 0 0 0 +-1.273 -6.496 -1.734 0 0 0 0 0 0 0 +-1.252 -6.496 -1.733 0 0 0 0 0 0 0 +-1.232 -6.502 -1.733 0 0 0 0 0 0 0 +-1.211 -6.503 -1.733 0 0 0 0 0 0 0 +-1.19 -6.502 -1.731 0 0 0 0 0 0 0 +-1.181 -6.513 -1.734 0 0 0 0 0 0 0 +-1.16 -6.511 -1.732 0 0 0 0 0 0 0 +-1.141 -6.524 -1.735 0 0 0 0 0 0 0 +-1.122 -6.537 -1.738 0 0 0 0 0 0 0 +-1.102 -6.541 -1.738 0 0 0 0 0 0 0 +-1.081 -6.542 -1.737 0 0 0 0 0 0 0 +-1.061 -6.549 -1.738 0 0 0 0 0 0 0 +-1.05 -6.545 -1.737 0 0 0 0 0 0 0 +-1.03 -6.554 -1.738 0 0 0 0 0 0 0 +-1.01 -6.557 -1.738 0 0 0 0 0 0 0 +-0.989 -6.56 -1.738 0 0 0 0 0 0 0 +-0.968 -6.564 -1.738 0 0 0 0 0 0 0 +-0.947 -6.565 -1.738 0 0 0 0 0 0 0 +-0.926 -6.56 -1.736 0 0 0 0 0 0 0 +-0.918 -6.579 -1.74 0 0 0 0 0 0 0 +-0.897 -6.578 -1.739 0 0 0 0 0 0 0 +-0.875 -6.577 -1.738 0 0 0 0 0 0 0 +-0.856 -6.585 -1.74 0 0 0 0 0 0 0 +-0.835 -6.586 -1.739 0 0 0 0 0 0 0 +-0.813 -6.585 -1.738 0 0 0 0 0 0 0 +-0.794 -6.595 -1.74 0 0 0 0 0 0 0 +-0.783 -6.592 -1.739 0 0 0 0 0 0 0 +-0.763 -6.6 -1.741 0 0 0 0 0 0 0 +-0.741 -6.597 -1.739 0 0 0 0 0 0 0 +-0.721 -6.601 -1.74 0 0 0 0 0 0 0 +-0.7 -6.6 -1.739 0 0 0 0 0 0 0 +-0.68 -6.609 -1.741 0 0 0 0 0 0 0 +-0.659 -6.608 -1.74 0 0 0 0 0 0 0 +-0.649 -6.612 -1.741 0 0 0 0 0 0 0 +-0.628 -6.616 -1.742 0 0 0 0 0 0 0 +-0.607 -6.611 -1.739 0 0 0 0 0 0 0 +-0.586 -6.618 -1.741 0 0 0 0 0 0 0 +-0.566 -6.628 -1.743 0 0 0 0 0 0 0 +-0.545 -6.626 -1.742 0 0 0 0 0 0 0 +-0.523 -6.618 -1.739 0 0 0 0 0 0 0 +-0.514 -6.63 -1.743 0 0 0 0 0 0 0 +-0.492 -6.622 -1.74 0 0 0 0 0 0 0 +-0.473 -6.637 -1.744 0 0 0 0 0 0 0 +-0.451 -6.625 -1.74 0 0 0 0 0 0 0 +-0.43 -6.628 -1.74 0 0 0 0 0 0 0 +-0.411 -6.653 -1.747 0 0 0 0 0 0 0 +-0.389 -6.641 -1.743 0 0 0 0 0 0 0 +-0.378 -6.637 -1.742 0 0 0 0 0 0 0 +-0.358 -6.646 -1.744 0 0 0 0 0 0 0 +-0.337 -6.649 -1.745 0 0 0 0 0 0 0 +-0.316 -6.65 -1.745 0 0 0 0 0 0 0 +-0.295 -6.649 -1.744 0 0 0 0 0 0 0 +-0.275 -6.66 -1.747 0 0 0 0 0 0 0 +-0.254 -6.672 -1.75 0 0 0 0 0 0 0 +-0.244 -6.667 -1.749 0 0 0 0 0 0 0 +-0.223 -6.664 -1.747 0 0 0 0 0 0 0 +-0.202 -6.668 -1.749 0 0 0 0 0 0 0 +-0.181 -6.68 -1.752 0 0 0 0 0 0 0 +-0.16 -6.671 -1.749 0 0 0 0 0 0 0 +-0.139 -6.676 -1.75 0 0 0 0 0 0 0 +-0.118 -6.689 -1.754 0 0 0 0 0 0 0 +-0.108 -6.678 -1.751 0 0 0 0 0 0 0 +-0.087 -6.68 -1.751 0 0 0 0 0 0 0 +-0.066 -6.692 -1.754 0 0 0 0 0 0 0 +-0.045 -6.679 -1.751 0 0 0 0 0 0 0 +-0.024 -6.692 -1.754 0 0 0 0 0 0 0 +-0.003 -6.7 -1.757 0 0 0 0 0 0 0 +0.018 -6.692 -1.754 0 0 0 0 0 0 0 +0.039 -6.713 -1.76 0 0 0 0 0 0 0 +0.05 -6.694 -1.755 0 0 0 0 0 0 0 +0.071 -6.694 -1.755 0 0 0 0 0 0 0 +0.092 -6.699 -1.757 0 0 0 0 0 0 0 +0.113 -6.728 -1.765 0 0 0 0 0 0 0 +0.134 -6.697 -1.756 0 0 0 0 0 0 0 +0.155 -6.712 -1.76 0 0 0 0 0 0 0 +0.176 -6.694 -1.756 0 0 0 0 0 0 0 +0.187 -6.711 -1.76 0 0 0 0 0 0 0 +0.208 -6.708 -1.76 0 0 0 0 0 0 0 +0.229 -6.723 -1.764 0 0 0 0 0 0 0 +0.25 -6.705 -1.759 0 0 0 0 0 0 0 +0.272 -6.722 -1.764 0 0 0 0 0 0 0 +0.292 -6.705 -1.76 0 0 0 0 0 0 0 +0.303 -6.72 -1.764 0 0 0 0 0 0 0 +0.324 -6.712 -1.762 0 0 0 0 0 0 0 +0.346 -6.724 -1.766 0 0 0 0 0 0 0 +0.366 -6.711 -1.763 0 0 0 0 0 0 0 +0.388 -6.718 -1.765 0 0 0 0 0 0 0 +0.408 -6.705 -1.761 0 0 0 0 0 0 0 +0.43 -6.709 -1.763 0 0 0 0 0 0 0 +0.45 -6.702 -1.761 0 0 0 0 0 0 0 +0.461 -6.7 -1.761 0 0 0 0 0 0 0 +0.482 -6.702 -1.762 0 0 0 0 0 0 0 +0.504 -6.706 -1.764 0 0 0 0 0 0 0 +0.524 -6.691 -1.76 0 0 0 0 0 0 0 +0.546 -6.705 -1.764 0 0 0 0 0 0 0 +0.566 -6.69 -1.76 0 0 0 0 0 0 0 +0.588 -6.697 -1.763 0 0 0 0 0 0 0 +0.598 -6.693 -1.762 0 0 0 0 0 0 0 +0.62 -6.7 -1.765 0 0 0 0 0 0 0 +0.64 -6.689 -1.762 0 0 0 0 0 0 0 +0.662 -6.696 -1.765 0 0 0 0 0 0 0 +0.682 -6.685 -1.762 0 0 0 0 0 0 0 +0.704 -6.694 -1.765 0 0 0 0 0 0 0 +0.724 -6.684 -1.763 0 0 0 0 0 0 0 +0.736 -6.696 -1.767 0 0 0 0 0 0 0 +0.757 -6.688 -1.765 0 0 0 0 0 0 0 +0.778 -6.692 -1.767 0 0 0 0 0 0 0 +0.8 -6.691 -1.767 0 0 0 0 0 0 0 +0.821 -6.69 -1.768 0 0 0 0 0 0 0 +0.842 -6.692 -1.769 0 0 0 0 0 0 0 +0.865 -6.7 -1.772 0 0 0 0 0 0 0 +0.875 -6.693 -1.771 0 0 0 0 0 0 0 +0.898 -6.708 -1.776 0 0 0 0 0 0 0 +0.917 -6.688 -1.771 0 0 0 0 0 0 0 +0.938 -6.689 -1.772 0 0 0 0 0 0 0 +0.962 -6.705 -1.777 0 0 0 0 0 0 0 +0.979 -6.673 -1.769 0 0 0 0 0 0 0 +1.004 -6.698 -1.777 0 0 0 0 0 0 0 +1.012 -6.678 -1.772 0 0 0 0 0 0 0 +1.034 -6.684 -1.774 0 0 0 0 0 0 0 +1.056 -6.685 -1.776 0 0 0 0 0 0 0 +1.077 -6.687 -1.777 0 0 0 0 0 0 0 +1.099 -6.689 -1.779 0 0 0 0 0 0 0 +1.119 -6.68 -1.777 0 0 0 0 0 0 0 +1.142 -6.688 -1.78 0 0 0 0 0 0 0 +1.153 -6.688 -1.781 0 0 0 0 0 0 0 +1.174 -6.686 -1.781 0 0 0 0 0 0 0 +1.193 -6.671 -1.778 0 0 0 0 0 0 0 +1.217 -6.683 -1.783 0 0 0 0 0 0 0 +1.237 -6.671 -1.78 0 0 0 0 0 0 0 +1.259 -6.677 -1.783 0 0 0 0 0 0 0 +1.279 -6.667 -1.781 0 0 0 0 0 0 0 +1.294 -6.686 -1.787 0 0 0 0 0 0 0 +1.313 -6.67 -1.784 0 0 0 0 0 0 0 +1.336 -6.679 -1.788 0 0 0 0 0 0 0 +1.356 -6.67 -1.786 0 0 0 0 0 0 0 +1.378 -6.669 -1.787 0 0 0 0 0 0 0 +1.399 -6.668 -1.788 0 0 0 0 0 0 0 +1.419 -6.658 -1.787 0 0 0 0 0 0 0 +1.43 -6.656 -1.787 0 0 0 0 0 0 0 +1.451 -6.652 -1.787 0 0 0 0 0 0 0 +1.474 -6.66 -1.791 0 0 0 0 0 0 0 +1.494 -6.65 -1.789 0 0 0 0 0 0 0 +1.518 -6.658 -1.793 0 0 0 0 0 0 0 +1.536 -6.64 -1.789 0 0 0 0 0 0 0 +1.534 -6.538 -1.761 0 0 0 0 0 0 0 +1.537 -6.505 -1.752 0 0 0 0 0 0 0 +1.552 -6.478 -1.746 0 0 0 0 0 0 0 +1.567 -6.451 -1.739 0 0 0 0 0 0 0 +1.592 -6.465 -1.745 0 0 0 0 0 0 0 +1.611 -6.452 -1.743 0 0 0 0 0 0 0 +1.635 -6.462 -1.747 0 0 0 0 0 0 0 +1.653 -6.449 -1.745 0 0 0 0 0 0 0 +1.661 -6.439 -1.743 0 0 0 0 0 0 0 +1.683 -6.439 -1.744 0 0 0 0 0 0 0 +1.671 -6.309 -1.708 0 0 0 0 0 0 0 +1.762 -6.576 -1.787 0 0 0 0 0 0 0 +1.792 -6.606 -1.797 0 0 0 0 0 0 0 +1.814 -6.602 -1.798 0 0 0 0 0 0 0 +1.837 -6.605 -1.8 0 0 0 0 0 0 0 +1.846 -6.599 -1.799 0 0 0 0 0 0 0 +1.87 -6.602 -1.802 0 0 0 0 0 0 0 +1.888 -6.587 -1.799 0 0 0 0 0 0 0 +1.912 -6.594 -1.803 0 0 0 0 0 0 0 +1.936 -6.599 -1.806 0 0 0 0 0 0 0 +1.951 -6.573 -1.8 0 0 0 0 0 0 0 +1.974 -6.574 -1.802 0 0 0 0 0 0 0 +1.985 -6.575 -1.804 0 0 0 0 0 0 0 +2.007 -6.572 -1.805 0 0 0 0 0 0 0 +2.026 -6.562 -1.804 0 0 0 0 0 0 0 +2.05 -6.567 -1.807 0 0 0 0 0 0 0 +2.071 -6.562 -1.807 0 0 0 0 0 0 0 +2.092 -6.555 -1.807 0 0 0 0 0 0 0 +2.112 -6.547 -1.807 0 0 0 0 0 0 0 +2.124 -6.549 -1.808 0 0 0 0 0 0 0 +2.146 -6.546 -1.81 0 0 0 0 0 0 0 +2.17 -6.55 -1.813 0 0 0 0 0 0 0 +2.192 -6.547 -1.814 0 0 0 0 0 0 0 +2.213 -6.542 -1.814 0 0 0 0 0 0 0 +2.229 -6.522 -1.811 0 0 0 0 0 0 0 +2.255 -6.532 -1.815 0 0 0 0 0 0 0 +2.269 -6.537 -1.818 0 0 0 0 0 0 0 +2.288 -6.526 -1.817 0 0 0 0 0 0 0 +2.31 -6.523 -1.818 0 0 0 0 0 0 0 +2.331 -6.519 -1.819 0 0 0 0 0 0 0 +2.354 -6.519 -1.821 0 0 0 0 0 0 0 +2.374 -6.508 -1.82 0 0 0 0 0 0 0 +2.392 -6.495 -1.819 0 0 0 0 0 0 0 +2.407 -6.504 -1.822 0 0 0 0 0 0 0 +2.427 -6.496 -1.822 0 0 0 0 0 0 0 +2.448 -6.491 -1.823 0 0 0 0 0 0 0 +2.472 -6.492 -1.826 0 0 0 0 0 0 0 +2.49 -6.479 -1.824 0 0 0 0 0 0 0 +2.525 -6.507 -1.835 0 0 0 0 0 0 0 +2.533 -6.468 -1.826 0 0 0 0 0 0 0 +2.545 -6.47 -1.827 0 0 0 0 0 0 0 +2.567 -6.465 -1.828 0 0 0 0 0 0 0 +2.59 -6.462 -1.83 0 0 0 0 0 0 0 +2.611 -6.458 -1.831 0 0 0 0 0 0 0 +2.635 -6.459 -1.834 0 0 0 0 0 0 0 +2.66 -6.461 -1.837 0 0 0 0 0 0 0 +2.685 -6.463 -1.84 0 0 0 0 0 0 0 +2.801 -6.483 -1.858 0 0 0 0 0 0 0 +2.814 -6.458 -1.853 0 0 0 0 0 0 0 +2.835 -6.451 -1.854 0 0 0 0 0 0 0 +2.842 -6.44 -1.852 0 0 0 0 0 0 0 +2.866 -6.44 -1.854 0 0 0 0 0 0 0 +2.887 -6.432 -1.855 0 0 0 0 0 0 0 +2.908 -6.423 -1.855 0 0 0 0 0 0 0 +2.922 -6.402 -1.851 0 0 0 0 0 0 0 +2.945 -6.4 -1.853 0 0 0 0 0 0 0 +2.965 -6.388 -1.853 0 0 0 0 0 0 0 +2.969 -6.372 -1.849 0 0 0 0 0 0 0 +2.992 -6.367 -1.851 0 0 0 0 0 0 0 +3.012 -6.358 -1.851 0 0 0 0 0 0 0 +3.029 -6.343 -1.849 0 0 0 0 0 0 0 +3.051 -6.337 -1.85 0 0 0 0 0 0 0 +3.07 -6.326 -1.849 0 0 0 0 0 0 0 +3.092 -6.321 -1.851 0 0 0 0 0 0 0 +3.094 -6.301 -1.846 0 0 0 0 0 0 0 +3.116 -6.295 -1.847 0 0 0 0 0 0 0 +3.13 -6.273 -1.844 0 0 0 0 0 0 0 +3.148 -6.259 -1.842 0 0 0 0 0 0 0 +3.16 -6.236 -1.838 0 0 0 0 0 0 0 +3.18 -6.226 -1.838 0 0 0 0 0 0 0 +3.203 -6.223 -1.84 0 0 0 0 0 0 0 +3.211 -6.214 -1.839 0 0 0 0 0 0 0 +3.228 -6.199 -1.838 0 0 0 0 0 0 0 +3.245 -6.185 -1.837 0 0 0 0 0 0 0 +3.262 -6.17 -1.835 0 0 0 0 0 0 0 +3.285 -6.167 -1.837 0 0 0 0 0 0 0 +3.303 -6.153 -1.836 0 0 0 0 0 0 0 +3.319 -6.137 -1.834 0 0 0 0 0 0 0 +3.328 -6.13 -1.834 0 0 0 0 0 0 0 +3.351 -6.127 -1.836 0 0 0 0 0 0 0 +3.371 -6.118 -1.837 0 0 0 0 0 0 0 +3.388 -6.102 -1.835 0 0 0 0 0 0 0 +3.405 -6.088 -1.834 0 0 0 0 0 0 0 +3.425 -6.079 -1.834 0 0 0 0 0 0 0 +3.443 -6.067 -1.834 0 0 0 0 0 0 0 +3.447 -6.051 -1.831 0 0 0 0 0 0 0 +3.471 -6.049 -1.833 0 0 0 0 0 0 0 +3.477 -6.016 -1.826 0 0 0 0 0 0 0 +3.502 -6.015 -1.829 0 0 0 0 0 0 0 +3.524 -6.009 -1.831 0 0 0 0 0 0 0 +3.537 -5.988 -1.828 0 0 0 0 0 0 0 +3.559 -5.983 -1.83 0 0 0 0 0 0 0 +3.566 -5.973 -1.828 0 0 0 0 0 0 0 +3.578 -5.95 -1.825 0 0 0 0 0 0 0 +3.602 -5.949 -1.828 0 0 0 0 0 0 0 +3.622 -5.939 -1.828 0 0 0 0 0 0 0 +3.635 -5.918 -1.825 0 0 0 0 0 0 0 +3.656 -5.911 -1.827 0 0 0 0 0 0 0 +3.671 -5.893 -1.825 0 0 0 0 0 0 0 +3.679 -5.886 -1.824 0 0 0 0 0 0 0 +3.703 -5.884 -1.827 0 0 0 0 0 0 0 +3.718 -5.866 -1.825 0 0 0 0 0 0 0 +3.74 -5.86 -1.827 0 0 0 0 0 0 0 +3.749 -5.834 -1.822 0 0 0 0 0 0 0 +3.772 -5.829 -1.825 0 0 0 0 0 0 0 +3.785 -5.809 -1.822 0 0 0 0 0 0 0 +3.811 -5.808 -1.826 0 0 0 0 0 0 0 +3.818 -5.799 -1.825 0 0 0 0 0 0 0 +3.835 -5.785 -1.824 0 0 0 0 0 0 0 +3.85 -5.768 -1.822 0 0 0 0 0 0 0 +3.867 -5.755 -1.822 0 0 0 0 0 0 0 +3.887 -5.746 -1.823 0 0 0 0 0 0 0 +3.904 -5.732 -1.822 0 0 0 0 0 0 0 +3.918 -5.713 -1.82 0 0 0 0 0 0 0 +3.924 -5.704 -1.819 0 0 0 0 0 0 0 +3.947 -5.698 -1.821 0 0 0 0 0 0 0 +3.968 -5.69 -1.823 0 0 0 0 0 0 0 +3.99 -5.684 -1.825 0 0 0 0 0 0 0 +4.001 -5.662 -1.822 0 0 0 0 0 0 0 +4.02 -5.651 -1.822 0 0 0 0 0 0 0 +4.027 -5.642 -1.821 0 0 0 0 0 0 0 +4.05 -5.637 -1.824 0 0 0 0 0 0 0 +4.068 -5.624 -1.824 0 0 0 0 0 0 0 +4.079 -5.602 -1.821 0 0 0 0 0 0 0 +4.095 -5.587 -1.82 0 0 0 0 0 0 0 +4.109 -5.57 -1.819 0 0 0 0 0 0 0 +4.122 -5.551 -1.817 0 0 0 0 0 0 0 +4.141 -5.558 -1.821 0 0 0 0 0 0 0 +4.16 -5.547 -1.822 0 0 0 0 0 0 0 +4.184 -5.543 -1.825 0 0 0 0 0 0 0 +4.196 -5.522 -1.822 0 0 0 0 0 0 0 +4.211 -5.506 -1.821 0 0 0 0 0 0 0 +4.231 -5.497 -1.823 0 0 0 0 0 0 0 +4.243 -5.476 -1.82 0 0 0 0 0 0 0 +4.251 -5.469 -1.82 0 0 0 0 0 0 0 +4.272 -5.461 -1.822 0 0 0 0 0 0 0 +4.288 -5.446 -1.821 0 0 0 0 0 0 0 +4.309 -5.437 -1.823 0 0 0 0 0 0 0 +4.325 -5.422 -1.822 0 0 0 0 0 0 0 +4.339 -5.405 -1.821 0 0 0 0 0 0 0 +4.357 -5.393 -1.822 0 0 0 0 0 0 0 +4.371 -5.375 -1.82 0 0 0 0 0 0 0 +4.386 -5.377 -1.824 0 0 0 0 0 0 0 +4.393 -5.351 -1.819 0 0 0 0 0 0 0 +4.413 -5.34 -1.82 0 0 0 0 0 0 0 +4.431 -5.328 -1.821 0 0 0 0 0 0 0 +4.446 -5.312 -1.82 0 0 0 0 0 0 0 +4.462 -5.297 -1.82 0 0 0 0 0 0 0 +4.472 -5.275 -1.817 0 0 0 0 0 0 0 +4.479 -5.267 -1.817 0 0 0 0 0 0 0 +4.478 -5.232 -1.809 0 0 0 0 0 0 0 +4.496 -5.22 -1.81 0 0 0 0 0 0 0 +4.513 -5.207 -1.81 0 0 0 0 0 0 0 +4.539 -5.203 -1.814 0 0 0 0 0 0 0 +4.562 -5.197 -1.817 0 0 0 0 0 0 0 +4.569 -5.171 -1.813 0 0 0 0 0 0 0 +4.575 -5.163 -1.812 0 0 0 0 0 0 0 +4.588 -5.144 -1.811 0 0 0 0 0 0 0 +4.604 -5.13 -1.811 0 0 0 0 0 0 0 +4.616 -5.111 -1.809 0 0 0 0 0 0 0 +4.641 -5.106 -1.813 0 0 0 0 0 0 0 +4.647 -5.08 -1.808 0 0 0 0 0 0 0 +4.663 -5.081 -1.812 0 0 0 0 0 0 0 +4.673 -5.061 -1.81 0 0 0 0 0 0 0 +4.68 -5.036 -1.806 0 0 0 0 0 0 0 +4.701 -5.027 -1.808 0 0 0 0 0 0 0 +4.708 -5.003 -1.804 0 0 0 0 0 0 0 +4.725 -4.989 -1.805 0 0 0 0 0 0 0 +4.746 -4.98 -1.807 0 0 0 0 0 0 0 +4.767 -4.971 -1.809 0 0 0 0 0 0 0 +4.77 -4.959 -1.807 0 0 0 0 0 0 0 +4.782 -4.94 -1.806 0 0 0 0 0 0 0 +4.802 -4.929 -1.807 0 0 0 0 0 0 0 +4.81 -4.907 -1.805 0 0 0 0 0 0 0 +4.83 -4.896 -1.806 0 0 0 0 0 0 0 +4.842 -4.878 -1.805 0 0 0 0 0 0 0 +4.859 -4.864 -1.806 0 0 0 0 0 0 0 +4.867 -4.857 -1.806 0 0 0 0 0 0 0 +4.875 -4.834 -1.803 0 0 0 0 0 0 0 +4.892 -4.82 -1.804 0 0 0 0 0 0 0 +4.914 -4.812 -1.806 0 0 0 0 0 0 0 +4.915 -4.783 -1.801 0 0 0 0 0 0 0 +4.931 -4.769 -1.801 0 0 0 0 0 0 0 +4.949 -4.756 -1.802 0 0 0 0 0 0 0 +4.956 -4.748 -1.802 0 0 0 0 0 0 0 +4.969 -4.73 -1.801 0 0 0 0 0 0 0 +4.968 -4.7 -1.795 0 0 0 0 0 0 0 +4.994 -4.695 -1.8 0 0 0 0 0 0 0 +5.003 -4.674 -1.798 0 0 0 0 0 0 0 +5.014 -4.654 -1.796 0 0 0 0 0 0 0 +5.042 -4.651 -1.801 0 0 0 0 0 0 0 +5.035 -4.63 -1.796 0 0 0 0 0 0 0 +5.047 -4.612 -1.795 0 0 0 0 0 0 0 +5.064 -4.598 -1.796 0 0 0 0 0 0 0 +5.082 -4.585 -1.797 0 0 0 0 0 0 0 +5.09 -4.564 -1.795 0 0 0 0 0 0 0 +5.099 -4.543 -1.793 0 0 0 0 0 0 0 +5.108 -4.536 -1.793 0 0 0 0 0 0 0 +5.109 -4.509 -1.788 0 0 0 0 0 0 0 +5.127 -4.496 -1.79 0 0 0 0 0 0 0 +5.143 -4.481 -1.791 0 0 0 0 0 0 0 +5.15 -4.459 -1.788 0 0 0 0 0 0 0 +5.168 -4.446 -1.79 0 0 0 0 0 0 0 +5.185 -4.433 -1.791 0 0 0 0 0 0 0 +5.187 -4.406 -1.786 0 0 0 0 0 0 0 +5.203 -4.406 -1.79 0 0 0 0 0 0 0 +5.219 -4.392 -1.791 0 0 0 0 0 0 0 +5.226 -4.369 -1.788 0 0 0 0 0 0 0 +5.243 -4.355 -1.789 0 0 0 0 0 0 0 +5.249 -4.333 -1.786 0 0 0 0 0 0 0 +5.253 -4.309 -1.783 0 0 0 0 0 0 0 +5.268 -4.293 -1.784 0 0 0 0 0 0 0 +5.281 -4.29 -1.786 0 0 0 0 0 0 0 +5.299 -4.277 -1.787 0 0 0 0 0 0 0 +5.314 -4.262 -1.788 0 0 0 0 0 0 0 +5.323 -4.241 -1.786 0 0 0 0 0 0 0 +5.336 -4.225 -1.786 0 0 0 0 0 0 0 +5.34 -4.201 -1.783 0 0 0 0 0 0 0 +5.355 -4.185 -1.784 0 0 0 0 0 0 0 +5.366 -4.18 -1.785 0 0 0 0 0 0 0 +5.378 -4.162 -1.785 0 0 0 0 0 0 0 +5.385 -4.14 -1.783 0 0 0 0 0 0 0 +5.39 -4.118 -1.78 0 0 0 0 0 0 0 +5.409 -4.105 -1.782 0 0 0 0 0 0 0 +5.411 -4.08 -1.778 0 0 0 0 0 0 0 +5.438 -4.074 -1.783 0 0 0 0 0 0 0 +5.435 -4.058 -1.78 0 0 0 0 0 0 0 +5.446 -4.04 -1.779 0 0 0 0 0 0 0 +5.459 -4.023 -1.779 0 0 0 0 0 0 0 +5.464 -4 -1.777 0 0 0 0 0 0 0 +5.481 -3.986 -1.778 0 0 0 0 0 0 0 +5.493 -3.969 -1.778 0 0 0 0 0 0 0 +5.503 -3.949 -1.777 0 0 0 0 0 0 0 +5.503 -3.936 -1.775 0 0 0 0 0 0 0 +5.521 -3.923 -1.777 0 0 0 0 0 0 0 +5.526 -3.9 -1.774 0 0 0 0 0 0 0 +5.538 -3.883 -1.774 0 0 0 0 0 0 0 +5.545 -3.862 -1.773 0 0 0 0 0 0 0 +5.559 -3.846 -1.773 0 0 0 0 0 0 0 +5.576 -3.832 -1.775 0 0 0 0 0 0 0 +5.58 -3.822 -1.774 0 0 0 0 0 0 0 +5.586 -3.8 -1.772 0 0 0 0 0 0 0 +5.603 -3.786 -1.774 0 0 0 0 0 0 0 +5.608 -3.764 -1.772 0 0 0 0 0 0 0 +5.614 -3.742 -1.77 0 0 0 0 0 0 0 +5.627 -3.725 -1.77 0 0 0 0 0 0 0 +5.629 -3.701 -1.767 0 0 0 0 0 0 0 +5.64 -3.695 -1.768 0 0 0 0 0 0 0 +5.653 -3.679 -1.769 0 0 0 0 0 0 0 +5.664 -3.661 -1.769 0 0 0 0 0 0 0 +5.669 -3.639 -1.767 0 0 0 0 0 0 0 +5.679 -3.62 -1.766 0 0 0 0 0 0 0 +5.702 -3.61 -1.77 0 0 0 0 0 0 0 +5.702 -3.584 -1.766 0 0 0 0 0 0 0 +5.711 -3.577 -1.767 0 0 0 0 0 0 0 +5.72 -3.558 -1.767 0 0 0 0 0 0 0 +5.728 -3.538 -1.766 0 0 0 0 0 0 0 +5.742 -3.522 -1.767 0 0 0 0 0 0 0 +5.752 -3.503 -1.766 0 0 0 0 0 0 0 +5.766 -3.487 -1.767 0 0 0 0 0 0 0 +5.784 -3.473 -1.77 0 0 0 0 0 0 0 +5.784 -3.461 -1.768 0 0 0 0 0 0 0 +5.787 -3.438 -1.765 0 0 0 0 0 0 0 +5.792 -3.417 -1.764 0 0 0 0 0 0 0 +5.806 -3.401 -1.765 0 0 0 0 0 0 0 +5.825 -3.387 -1.767 0 0 0 0 0 0 0 +5.838 -3.37 -1.768 0 0 0 0 0 0 0 +5.838 -3.346 -1.765 0 0 0 0 0 0 0 +5.847 -3.338 -1.766 0 0 0 0 0 0 0 +5.859 -3.321 -1.766 0 0 0 0 0 0 0 +5.869 -3.303 -1.766 0 0 0 0 0 0 0 +5.883 -3.286 -1.767 0 0 0 0 0 0 0 +5.892 -3.267 -1.767 0 0 0 0 0 0 0 +5.907 -3.251 -1.768 0 0 0 0 0 0 0 +5.907 -3.227 -1.765 0 0 0 0 0 0 0 +5.921 -3.222 -1.768 0 0 0 0 0 0 0 +5.929 -3.203 -1.767 0 0 0 0 0 0 0 +5.937 -3.183 -1.767 0 0 0 0 0 0 0 +5.952 -3.167 -1.768 0 0 0 0 0 0 0 +5.955 -3.145 -1.766 0 0 0 0 0 0 0 +5.965 -3.126 -1.766 0 0 0 0 0 0 0 +5.973 -3.106 -1.766 0 0 0 0 0 0 0 +5.977 -3.096 -1.765 0 0 0 0 0 0 0 +5.985 -3.076 -1.765 0 0 0 0 0 0 0 +5.986 -3.053 -1.762 0 0 0 0 0 0 0 +5.992 -3.033 -1.761 0 0 0 0 0 0 0 +6.001 -3.014 -1.761 0 0 0 0 0 0 0 +6.016 -2.997 -1.763 0 0 0 0 0 0 0 +6.024 -2.978 -1.762 0 0 0 0 0 0 0 +6.025 -2.967 -1.761 0 0 0 0 0 0 0 +6.043 -2.952 -1.764 0 0 0 0 0 0 0 +6.045 -2.929 -1.761 0 0 0 0 0 0 0 +6.054 -2.91 -1.761 0 0 0 0 0 0 0 +6.065 -2.892 -1.762 0 0 0 0 0 0 0 +6.078 -2.875 -1.763 0 0 0 0 0 0 0 +6.088 -2.857 -1.764 0 0 0 0 0 0 0 +6.091 -2.846 -1.763 0 0 0 0 0 0 0 +6.096 -2.825 -1.762 0 0 0 0 0 0 0 +6.114 -2.81 -1.765 0 0 0 0 0 0 0 +6.123 -2.791 -1.765 0 0 0 0 0 0 0 +6.158 -2.784 -1.773 0 0 0 0 0 0 0 +6.167 -2.764 -1.773 0 0 0 0 0 0 0 +6.179 -2.747 -1.774 0 0 0 0 0 0 0 +6.176 -2.734 -1.772 0 0 0 0 0 0 0 +6.185 -2.714 -1.772 0 0 0 0 0 0 0 +6.182 -2.69 -1.768 0 0 0 0 0 0 0 +6.196 -2.673 -1.77 0 0 0 0 0 0 0 +6.213 -2.657 -1.773 0 0 0 0 0 0 0 +6.225 -2.639 -1.774 0 0 0 0 0 0 0 +6.226 -2.617 -1.772 0 0 0 0 0 0 0 +6.232 -2.608 -1.772 0 0 0 0 0 0 0 +6.237 -2.587 -1.771 0 0 0 0 0 0 0 +6.241 -2.566 -1.77 0 0 0 0 0 0 0 +6.249 -2.546 -1.77 0 0 0 0 0 0 0 +6.263 -2.529 -1.772 0 0 0 0 0 0 0 +6.265 -2.507 -1.77 0 0 0 0 0 0 0 +6.27 -2.486 -1.769 0 0 0 0 0 0 0 +6.265 -2.472 -1.766 0 0 0 0 0 0 0 +6.249 -2.443 -1.759 0 0 0 0 0 0 0 +6.266 -2.427 -1.762 0 0 0 0 0 0 0 +6.275 -2.408 -1.763 0 0 0 0 0 0 0 +6.281 -2.388 -1.762 0 0 0 0 0 0 0 +6.279 -2.365 -1.759 0 0 0 0 0 0 0 +6.283 -2.343 -1.758 0 0 0 0 0 0 0 +6.276 -2.33 -1.755 0 0 0 0 0 0 0 +6.294 -2.314 -1.758 0 0 0 0 0 0 0 +6.292 -2.291 -1.756 0 0 0 0 0 0 0 +6.287 -2.266 -1.752 0 0 0 0 0 0 0 +6.306 -2.251 -1.756 0 0 0 0 0 0 0 +6.304 -2.228 -1.753 0 0 0 0 0 0 0 +6.311 -2.208 -1.753 0 0 0 0 0 0 0 +6.319 -2.2 -1.754 0 0 0 0 0 0 0 +6.324 -2.179 -1.753 0 0 0 0 0 0 0 +6.327 -2.158 -1.752 0 0 0 0 0 0 0 +6.332 -2.138 -1.752 0 0 0 0 0 0 0 +6.32 -2.111 -1.746 0 0 0 0 0 0 0 +6.318 -2.088 -1.744 0 0 0 0 0 0 0 +6.342 -2.075 -1.749 0 0 0 0 0 0 0 +6.347 -2.054 -1.749 0 0 0 0 0 0 0 +6.345 -2.042 -1.747 0 0 0 0 0 0 0 +6.351 -2.022 -1.747 0 0 0 0 0 0 0 +6.345 -1.998 -1.743 0 0 0 0 0 0 0 +6.362 -1.982 -1.746 0 0 0 0 0 0 0 +6.368 -1.962 -1.746 0 0 0 0 0 0 0 +6.378 -1.943 -1.747 0 0 0 0 0 0 0 +6.377 -1.921 -1.745 0 0 0 0 0 0 0 +6.38 -1.911 -1.745 0 0 0 0 0 0 0 +6.378 -1.888 -1.743 0 0 0 0 0 0 0 +6.393 -1.871 -1.746 0 0 0 0 0 0 0 +6.381 -1.846 -1.74 0 0 0 0 0 0 0 +6.396 -1.828 -1.743 0 0 0 0 0 0 0 +6.4 -1.808 -1.743 0 0 0 0 0 0 0 +6.391 -1.794 -1.739 0 0 0 0 0 0 0 +6.408 -1.777 -1.743 0 0 0 0 0 0 0 +6.417 -1.758 -1.744 0 0 0 0 0 0 0 +6.423 -1.738 -1.744 0 0 0 0 0 0 0 +6.428 -1.718 -1.744 0 0 0 0 0 0 0 +6.426 -1.696 -1.742 0 0 0 0 0 0 0 +6.433 -1.676 -1.742 0 0 0 0 0 0 0 +6.435 -1.655 -1.741 0 0 0 0 0 0 0 +6.449 -1.648 -1.744 0 0 0 0 0 0 0 +6.444 -1.625 -1.742 0 0 0 0 0 0 0 +6.451 -1.605 -1.742 0 0 0 0 0 0 0 +6.449 -1.583 -1.74 0 0 0 0 0 0 0 +6.452 -1.562 -1.739 0 0 0 0 0 0 0 +6.446 -1.539 -1.736 0 0 0 0 0 0 0 +6.452 -1.52 -1.737 0 0 0 0 0 0 0 +6.449 -1.508 -1.735 0 0 0 0 0 0 0 +6.474 -1.493 -1.741 0 0 0 0 0 0 0 +6.472 -1.471 -1.739 0 0 0 0 0 0 0 +6.463 -1.447 -1.735 0 0 0 0 0 0 0 +6.469 -1.427 -1.736 0 0 0 0 0 0 0 +6.481 -1.409 -1.738 0 0 0 0 0 0 0 +6.478 -1.387 -1.736 0 0 0 0 0 0 0 +6.475 -1.375 -1.734 0 0 0 0 0 0 0 +6.479 -1.355 -1.734 0 0 0 0 0 0 0 +6.479 -1.334 -1.733 0 0 0 0 0 0 0 +6.491 -1.315 -1.735 0 0 0 0 0 0 0 +6.499 -1.295 -1.736 0 0 0 0 0 0 0 +6.501 -1.275 -1.736 0 0 0 0 0 0 0 +6.492 -1.252 -1.732 0 0 0 0 0 0 0 +6.509 -1.244 -1.736 0 0 0 0 0 0 0 +6.511 -1.223 -1.736 0 0 0 0 0 0 0 +6.519 -1.204 -1.737 0 0 0 0 0 0 0 +6.52 -1.183 -1.736 0 0 0 0 0 0 0 +6.528 -1.163 -1.737 0 0 0 0 0 0 0 +6.53 -1.142 -1.737 0 0 0 0 0 0 0 +6.52 -1.119 -1.733 0 0 0 0 0 0 0 +6.51 -1.107 -1.73 0 0 0 0 0 0 0 +6.519 -1.088 -1.731 0 0 0 0 0 0 0 +6.532 -1.069 -1.734 0 0 0 0 0 0 0 +6.515 -1.045 -1.728 0 0 0 0 0 0 0 +6.524 -1.025 -1.73 0 0 0 0 0 0 0 +6.527 -1.005 -1.73 0 0 0 0 0 0 0 +6.528 -0.984 -1.729 0 0 0 0 0 0 0 +6.541 -0.975 -1.732 0 0 0 0 0 0 0 +6.533 -0.953 -1.729 0 0 0 0 0 0 0 +6.528 -0.932 -1.727 0 0 0 0 0 0 0 +6.531 -0.911 -1.727 0 0 0 0 0 0 0 +6.532 -0.89 -1.726 0 0 0 0 0 0 0 +6.537 -0.87 -1.727 0 0 0 0 0 0 0 +6.539 -0.849 -1.727 0 0 0 0 0 0 0 +6.552 -0.841 -1.73 0 0 0 0 0 0 0 +6.557 -0.82 -1.731 0 0 0 0 0 0 0 +6.553 -0.799 -1.729 0 0 0 0 0 0 0 +6.563 -0.779 -1.731 0 0 0 0 0 0 0 +6.564 -0.758 -1.731 0 0 0 0 0 0 0 +6.591 -0.741 -1.738 0 0 0 0 0 0 0 +6.569 -0.717 -1.731 0 0 0 0 0 0 0 +6.572 -0.707 -1.731 0 0 0 0 0 0 0 +6.572 -0.686 -1.731 0 0 0 0 0 0 0 +6.578 -0.666 -1.732 0 0 0 0 0 0 0 +6.568 -0.644 -1.729 0 0 0 0 0 0 0 +6.58 -0.624 -1.731 0 0 0 0 0 0 0 +6.588 -0.604 -1.733 0 0 0 0 0 0 0 +6.565 -0.581 -1.726 0 0 0 0 0 0 0 +6.564 -0.571 -1.725 0 0 0 0 0 0 0 +6.573 -0.551 -1.727 0 0 0 0 0 0 0 +6.557 -0.529 -1.723 0 0 0 0 0 0 0 +6.565 -0.509 -1.724 0 0 0 0 0 0 0 +6.572 -0.488 -1.726 0 0 0 0 0 0 0 +6.568 -0.467 -1.724 0 0 0 0 0 0 0 +6.566 -0.447 -1.723 0 0 0 0 0 0 0 +6.582 -0.437 -1.727 0 0 0 0 0 0 0 +6.593 -0.417 -1.73 0 0 0 0 0 0 0 +6.592 -0.396 -1.73 0 0 0 0 0 0 0 +6.587 -0.375 -1.728 0 0 0 0 0 0 0 +6.587 -0.355 -1.727 0 0 0 0 0 0 0 +6.578 -0.333 -1.725 0 0 0 0 0 0 0 +6.569 -0.312 -1.722 0 0 0 0 0 0 0 +6.574 -0.302 -1.723 0 0 0 0 0 0 0 +6.58 -0.282 -1.725 0 0 0 0 0 0 0 +6.57 -0.26 -1.722 0 0 0 0 0 0 0 +6.563 -0.24 -1.719 0 0 0 0 0 0 0 +6.565 -0.219 -1.72 0 0 0 0 0 0 0 +6.566 -0.198 -1.72 0 0 0 0 0 0 0 +6.586 -0.178 -1.725 0 0 0 0 0 0 0 +6.575 -0.168 -1.722 0 0 0 0 0 0 0 +6.573 -0.147 -1.722 0 0 0 0 0 0 0 +6.564 -0.126 -1.719 0 0 0 0 0 0 0 +6.561 -0.105 -1.718 0 0 0 0 0 0 0 +6.565 -0.085 -1.719 0 0 0 0 0 0 0 +6.567 -0.064 -1.719 0 0 0 0 0 0 0 +6.569 -0.044 -1.72 0 0 0 0 0 0 0 +6.573 -0.033 -1.721 0 0 0 0 0 0 0 +6.563 -0.013 -1.718 0 0 0 0 0 0 0 +6.359 0.002 -1.724 0 0 0 0 0 0 0 +6.335 0.022 -1.717 0 0 0 0 0 0 0 +6.351 0.042 -1.721 0 0 0 0 0 0 0 +6.341 0.062 -1.719 0 0 0 0 0 0 0 +6.345 0.072 -1.72 0 0 0 0 0 0 0 +6.335 0.091 -1.717 0 0 0 0 0 0 0 +6.35 0.112 -1.721 0 0 0 0 0 0 0 +6.334 0.131 -1.717 0 0 0 0 0 0 0 +6.338 0.151 -1.718 0 0 0 0 0 0 0 +6.329 0.171 -1.716 0 0 0 0 0 0 0 +6.338 0.191 -1.719 0 0 0 0 0 0 0 +6.33 0.211 -1.716 0 0 0 0 0 0 0 +6.341 0.221 -1.72 0 0 0 0 0 0 0 +6.337 0.241 -1.719 0 0 0 0 0 0 0 +6.326 0.26 -1.716 0 0 0 0 0 0 0 +6.329 0.28 -1.717 0 0 0 0 0 0 0 +6.323 0.3 -1.715 0 0 0 0 0 0 0 +6.314 0.319 -1.713 0 0 0 0 0 0 0 +6.326 0.34 -1.717 0 0 0 0 0 0 0 +6.333 0.35 -1.719 0 0 0 0 0 0 0 +6.332 0.37 -1.719 0 0 0 0 0 0 0 +6.316 0.389 -1.715 0 0 0 0 0 0 0 +6.315 0.409 -1.715 0 0 0 0 0 0 0 +6.311 0.429 -1.714 0 0 0 0 0 0 0 +6.318 0.449 -1.716 0 0 0 0 0 0 0 +6.328 0.47 -1.72 0 0 0 0 0 0 0 +6.304 0.478 -1.713 0 0 0 0 0 0 0 +6.308 0.498 -1.715 0 0 0 0 0 0 0 +6.301 0.518 -1.713 0 0 0 0 0 0 0 +6.297 0.537 -1.712 0 0 0 0 0 0 0 +6.303 0.558 -1.715 0 0 0 0 0 0 0 +6.29 0.576 -1.711 0 0 0 0 0 0 0 +6.29 0.596 -1.712 0 0 0 0 0 0 0 +6.299 0.607 -1.715 0 0 0 0 0 0 0 +6.293 0.627 -1.714 0 0 0 0 0 0 0 +6.293 0.646 -1.714 0 0 0 0 0 0 0 +6.3 0.667 -1.717 0 0 0 0 0 0 0 +6.287 0.686 -1.714 0 0 0 0 0 0 0 +6.307 0.708 -1.72 0 0 0 0 0 0 0 +6.284 0.726 -1.714 0 0 0 0 0 0 0 +6.283 0.735 -1.714 0 0 0 0 0 0 0 +6.271 0.754 -1.711 0 0 0 0 0 0 0 +6.278 0.775 -1.714 0 0 0 0 0 0 0 +6.261 0.793 -1.71 0 0 0 0 0 0 0 +6.266 0.813 -1.712 0 0 0 0 0 0 0 +6.261 0.833 -1.711 0 0 0 0 0 0 0 +6.257 0.852 -1.711 0 0 0 0 0 0 0 +6.246 0.861 -1.708 0 0 0 0 0 0 0 +6.251 0.881 -1.71 0 0 0 0 0 0 0 +6.24 0.9 -1.708 0 0 0 0 0 0 0 +6.251 0.921 -1.712 0 0 0 0 0 0 0 +6.244 0.94 -1.711 0 0 0 0 0 0 0 +6.239 0.96 -1.71 0 0 0 0 0 0 0 +6.228 0.978 -1.708 0 0 0 0 0 0 0 +6.225 0.988 -1.707 0 0 0 0 0 0 0 +6.222 1.007 -1.707 0 0 0 0 0 0 0 +6.238 1.03 -1.713 0 0 0 0 0 0 0 +6.229 1.049 -1.711 0 0 0 0 0 0 0 +6.212 1.066 -1.707 0 0 0 0 0 0 0 +6.209 1.085 -1.707 0 0 0 0 0 0 0 +6.205 1.105 -1.707 0 0 0 0 0 0 0 +6.211 1.116 -1.71 0 0 0 0 0 0 0 +6.206 1.135 -1.709 0 0 0 0 0 0 0 +6.198 1.154 -1.708 0 0 0 0 0 0 0 +6.204 1.175 -1.711 0 0 0 0 0 0 0 +6.185 1.192 -1.706 0 0 0 0 0 0 0 +6.208 1.216 -1.714 0 0 0 0 0 0 0 +6.185 1.232 -1.709 0 0 0 0 0 0 0 +6.179 1.241 -1.707 0 0 0 0 0 0 0 +6.179 1.261 -1.709 0 0 0 0 0 0 0 +6.192 1.284 -1.714 0 0 0 0 0 0 0 +6.181 1.302 -1.711 0 0 0 0 0 0 0 +6.165 1.319 -1.708 0 0 0 0 0 0 0 +6.167 1.34 -1.71 0 0 0 0 0 0 0 +6.161 1.358 -1.709 0 0 0 0 0 0 0 +6.158 1.368 -1.709 0 0 0 0 0 0 0 +6.16 1.389 -1.711 0 0 0 0 0 0 0 +6.148 1.406 -1.709 0 0 0 0 0 0 0 +6.143 1.426 -1.709 0 0 0 0 0 0 0 +6.144 1.446 -1.71 0 0 0 0 0 0 0 +6.144 1.467 -1.711 0 0 0 0 0 0 0 +6.143 1.487 -1.712 0 0 0 0 0 0 0 +6.137 1.495 -1.711 0 0 0 0 0 0 0 +6.128 1.514 -1.71 0 0 0 0 0 0 0 +6.125 1.533 -1.711 0 0 0 0 0 0 0 +6.113 1.551 -1.709 0 0 0 0 0 0 0 +6.116 1.572 -1.711 0 0 0 0 0 0 0 +6.103 1.589 -1.709 0 0 0 0 0 0 0 +6.109 1.611 -1.712 0 0 0 0 0 0 0 +6.103 1.62 -1.711 0 0 0 0 0 0 0 +6.115 1.644 -1.716 0 0 0 0 0 0 0 +6.087 1.657 -1.709 0 0 0 0 0 0 0 +6.099 1.68 -1.714 0 0 0 0 0 0 0 +6.09 1.699 -1.713 0 0 0 0 0 0 0 +6.079 1.716 -1.711 0 0 0 0 0 0 0 +6.075 1.736 -1.712 0 0 0 0 0 0 0 +6.068 1.754 -1.711 0 0 0 0 0 0 0 +6.061 1.763 -1.71 0 0 0 0 0 0 0 +6.065 1.785 -1.713 0 0 0 0 0 0 0 +6.065 1.805 -1.715 0 0 0 0 0 0 0 +6.048 1.821 -1.711 0 0 0 0 0 0 0 +6.042 1.84 -1.711 0 0 0 0 0 0 0 +6.046 1.862 -1.714 0 0 0 0 0 0 0 +6.035 1.869 -1.712 0 0 0 0 0 0 0 +6.037 1.89 -1.714 0 0 0 0 0 0 0 +6.035 1.91 -1.715 0 0 0 0 0 0 0 +6.025 1.928 -1.714 0 0 0 0 0 0 0 +6.017 1.946 -1.714 0 0 0 0 0 0 0 +6.011 1.965 -1.714 0 0 0 0 0 0 0 +6.01 1.986 -1.715 0 0 0 0 0 0 0 +6.007 1.995 -1.715 0 0 0 0 0 0 0 +5.999 2.014 -1.715 0 0 0 0 0 0 0 +5.992 2.033 -1.715 0 0 0 0 0 0 0 +5.988 2.052 -1.715 0 0 0 0 0 0 0 +5.98 2.07 -1.715 0 0 0 0 0 0 0 +5.971 2.088 -1.714 0 0 0 0 0 0 0 +5.97 2.109 -1.716 0 0 0 0 0 0 0 +5.981 2.124 -1.72 0 0 0 0 0 0 0 +5.958 2.136 -1.715 0 0 0 0 0 0 0 +5.953 2.156 -1.716 0 0 0 0 0 0 0 +5.95 2.176 -1.717 0 0 0 0 0 0 0 +5.938 2.192 -1.715 0 0 0 0 0 0 0 +5.942 2.215 -1.719 0 0 0 0 0 0 0 +5.919 2.228 -1.714 0 0 0 0 0 0 0 +5.917 2.248 -1.715 0 0 0 0 0 0 0 +5.917 2.259 -1.716 0 0 0 0 0 0 0 +5.904 2.275 -1.715 0 0 0 0 0 0 0 +5.901 2.295 -1.716 0 0 0 0 0 0 0 +5.903 2.318 -1.719 0 0 0 0 0 0 0 +5.897 2.337 -1.719 0 0 0 0 0 0 0 +5.883 2.352 -1.717 0 0 0 0 0 0 0 +5.877 2.372 -1.717 0 0 0 0 0 0 0 +5.871 2.38 -1.717 0 0 0 0 0 0 0 +5.857 2.396 -1.715 0 0 0 0 0 0 0 +5.869 2.422 -1.721 0 0 0 0 0 0 0 +5.847 2.435 -1.716 0 0 0 0 0 0 0 +5.848 2.457 -1.719 0 0 0 0 0 0 0 +5.839 2.474 -1.719 0 0 0 0 0 0 0 +5.845 2.488 -1.722 0 0 0 0 0 0 0 +5.83 2.503 -1.72 0 0 0 0 0 0 0 +5.817 2.519 -1.718 0 0 0 0 0 0 0 +5.816 2.541 -1.72 0 0 0 0 0 0 0 +5.812 2.56 -1.721 0 0 0 0 0 0 0 +5.8 2.577 -1.72 0 0 0 0 0 0 0 +5.79 2.595 -1.72 0 0 0 0 0 0 0 +5.785 2.603 -1.719 0 0 0 0 0 0 0 +5.778 2.622 -1.72 0 0 0 0 0 0 0 +5.768 2.639 -1.719 0 0 0 0 0 0 0 +5.775 2.665 -1.724 0 0 0 0 0 0 0 +5.739 2.67 -1.715 0 0 0 0 0 0 0 +5.736 2.69 -1.717 0 0 0 0 0 0 0 +5.752 2.72 -1.725 0 0 0 0 0 0 0 +5.728 2.72 -1.719 0 0 0 0 0 0 0 +5.723 2.739 -1.72 0 0 0 0 0 0 0 +5.71 2.755 -1.718 0 0 0 0 0 0 0 +5.704 2.774 -1.719 0 0 0 0 0 0 0 +5.689 2.789 -1.717 0 0 0 0 0 0 0 +5.685 2.809 -1.719 0 0 0 0 0 0 0 +5.676 2.827 -1.719 0 0 0 0 0 0 0 +5.663 2.832 -1.716 0 0 0 0 0 0 0 +5.658 2.851 -1.717 0 0 0 0 0 0 0 +5.647 2.868 -1.716 0 0 0 0 0 0 0 +5.64 2.887 -1.717 0 0 0 0 0 0 0 +5.625 2.902 -1.715 0 0 0 0 0 0 0 +5.62 2.921 -1.716 0 0 0 0 0 0 0 +5.61 2.939 -1.716 0 0 0 0 0 0 0 +5.606 2.948 -1.716 0 0 0 0 0 0 0 +5.612 2.973 -1.721 0 0 0 0 0 0 0 +5.596 2.987 -1.719 0 0 0 0 0 0 0 +5.578 3 -1.716 0 0 0 0 0 0 0 +5.575 3.022 -1.719 0 0 0 0 0 0 0 +5.55 3.031 -1.714 0 0 0 0 0 0 0 +5.551 3.054 -1.717 0 0 0 0 0 0 0 +5.543 3.072 -1.717 0 0 0 0 0 0 0 +5.543 3.084 -1.719 0 0 0 0 0 0 0 +5.525 3.096 -1.716 0 0 0 0 0 0 0 +5.514 3.113 -1.716 0 0 0 0 0 0 0 +5.514 3.136 -1.719 0 0 0 0 0 0 0 +5.497 3.149 -1.717 0 0 0 0 0 0 0 +5.494 3.17 -1.719 0 0 0 0 0 0 0 +5.477 3.184 -1.717 0 0 0 0 0 0 0 +5.472 3.192 -1.717 0 0 0 0 0 0 0 +5.454 3.205 -1.714 0 0 0 0 0 0 0 +5.456 3.229 -1.718 0 0 0 0 0 0 0 +5.445 3.246 -1.718 0 0 0 0 0 0 0 +5.434 3.262 -1.717 0 0 0 0 0 0 0 +5.427 3.281 -1.719 0 0 0 0 0 0 0 +5.402 3.277 -1.712 0 0 0 0 0 0 0 +5.398 3.298 -1.714 0 0 0 0 0 0 0 +5.384 3.313 -1.713 0 0 0 0 0 0 0 +5.376 3.331 -1.714 0 0 0 0 0 0 0 +5.368 3.35 -1.715 0 0 0 0 0 0 0 +5.363 3.37 -1.716 0 0 0 0 0 0 0 +5.342 3.381 -1.713 0 0 0 0 0 0 0 +5.33 3.385 -1.711 0 0 0 0 0 0 0 +5.318 3.401 -1.71 0 0 0 0 0 0 0 +5.307 3.417 -1.71 0 0 0 0 0 0 0 +5.305 3.439 -1.713 0 0 0 0 0 0 0 +5.292 3.455 -1.712 0 0 0 0 0 0 0 +5.278 3.469 -1.711 0 0 0 0 0 0 0 +5.269 3.487 -1.712 0 0 0 0 0 0 0 +5.262 3.494 -1.711 0 0 0 0 0 0 0 +5.243 3.505 -1.709 0 0 0 0 0 0 0 +5.237 3.525 -1.71 0 0 0 0 0 0 0 +5.218 3.536 -1.707 0 0 0 0 0 0 0 +5.216 3.559 -1.711 0 0 0 0 0 0 0 +5.2 3.572 -1.709 0 0 0 0 0 0 0 +5.187 3.587 -1.709 0 0 0 0 0 0 0 +5.182 3.608 -1.711 0 0 0 0 0 0 0 +5.178 3.617 -1.711 0 0 0 0 0 0 0 +5.182 3.644 -1.717 0 0 0 0 0 0 0 +5.147 3.644 -1.709 0 0 0 0 0 0 0 +5.141 3.663 -1.71 0 0 0 0 0 0 0 +5.134 3.683 -1.712 0 0 0 0 0 0 0 +5.116 3.695 -1.71 0 0 0 0 0 0 0 +5.106 3.712 -1.71 0 0 0 0 0 0 0 +5.111 3.728 -1.714 0 0 0 0 0 0 0 +5.085 3.733 -1.709 0 0 0 0 0 0 0 +5.069 3.746 -1.707 0 0 0 0 0 0 0 +5.077 3.777 -1.715 0 0 0 0 0 0 0 +5.05 3.781 -1.709 0 0 0 0 0 0 0 +5.046 3.803 -1.712 0 0 0 0 0 0 0 +5.029 3.815 -1.71 0 0 0 0 0 0 0 +5.008 3.811 -1.705 0 0 0 0 0 0 0 +5.002 3.832 -1.707 0 0 0 0 0 0 0 +5.011 3.864 -1.715 0 0 0 0 0 0 0 +4.982 3.867 -1.709 0 0 0 0 0 0 0 +4.95 3.867 -1.701 0 0 0 0 0 0 0 +4.953 3.894 -1.707 0 0 0 0 0 0 0 +4.911 3.886 -1.696 0 0 0 0 0 0 0 +4.909 3.897 -1.697 0 0 0 0 0 0 0 +4.896 3.911 -1.697 0 0 0 0 0 0 0 +4.87 3.916 -1.692 0 0 0 0 0 0 0 +4.862 3.935 -1.694 0 0 0 0 0 0 0 +4.862 3.96 -1.698 0 0 0 0 0 0 0 +4.831 3.96 -1.691 0 0 0 0 0 0 0 +4.838 3.992 -1.699 0 0 0 0 0 0 0 +4.826 3.994 -1.696 0 0 0 0 0 0 0 +4.813 4.009 -1.696 0 0 0 0 0 0 0 +4.824 4.044 -1.705 0 0 0 0 0 0 0 +4.808 4.057 -1.704 0 0 0 0 0 0 0 +4.8 4.076 -1.706 0 0 0 0 0 0 0 +4.781 4.086 -1.704 0 0 0 0 0 0 0 +4.776 4.107 -1.706 0 0 0 0 0 0 0 +4.772 4.117 -1.707 0 0 0 0 0 0 0 +4.764 4.136 -1.709 0 0 0 0 0 0 0 +4.764 4.162 -1.714 0 0 0 0 0 0 0 +4.745 4.172 -1.712 0 0 0 0 0 0 0 +4.747 4.201 -1.718 0 0 0 0 0 0 0 +4.733 4.215 -1.717 0 0 0 0 0 0 0 +4.727 4.236 -1.72 0 0 0 0 0 0 0 +4.728 4.251 -1.724 0 0 0 0 0 0 0 +4.705 4.257 -1.72 0 0 0 0 0 0 0 +4.702 4.281 -1.724 0 0 0 0 0 0 0 +4.697 4.303 -1.727 0 0 0 0 0 0 0 +4.685 4.319 -1.727 0 0 0 0 0 0 0 +4.672 4.335 -1.728 0 0 0 0 0 0 0 +4.662 4.353 -1.729 0 0 0 0 0 0 0 +4.669 4.373 -1.735 0 0 0 0 0 0 0 +4.651 4.384 -1.733 0 0 0 0 0 0 0 +4.638 4.4 -1.734 0 0 0 0 0 0 0 +4.618 4.408 -1.731 0 0 0 0 0 0 0 +4.598 4.417 -1.729 0 0 0 0 0 0 0 +4.586 4.433 -1.729 0 0 0 0 0 0 0 +4.577 4.452 -1.731 0 0 0 0 0 0 0 +4.556 4.446 -1.726 0 0 0 0 0 0 0 +4.541 4.459 -1.725 0 0 0 0 0 0 0 +4.52 4.466 -1.722 0 0 0 0 0 0 0 +4.508 4.482 -1.723 0 0 0 0 0 0 0 +4.495 4.497 -1.724 0 0 0 0 0 0 0 +4.487 4.518 -1.726 0 0 0 0 0 0 0 +4.458 4.517 -1.72 0 0 0 0 0 0 0 +4.462 4.535 -1.725 0 0 0 0 0 0 0 +4.442 4.544 -1.722 0 0 0 0 0 0 0 +4.432 4.562 -1.724 0 0 0 0 0 0 0 +4.414 4.572 -1.722 0 0 0 0 0 0 0 +4.406 4.592 -1.725 0 0 0 0 0 0 0 +4.385 4.599 -1.722 0 0 0 0 0 0 0 +4.386 4.63 -1.729 0 0 0 0 0 0 0 +4.363 4.634 -1.725 0 0 0 0 0 0 0 +4.36 4.646 -1.727 0 0 0 0 0 0 0 +4.339 4.653 -1.725 0 0 0 0 0 0 0 +4.327 4.669 -1.726 0 0 0 0 0 0 0 +4.307 4.677 -1.724 0 0 0 0 0 0 0 +4.297 4.695 -1.725 0 0 0 0 0 0 0 +4.282 4.709 -1.725 0 0 0 0 0 0 0 +4.263 4.718 -1.724 0 0 0 0 0 0 0 +4.261 4.73 -1.726 0 0 0 0 0 0 0 +4.247 4.745 -1.726 0 0 0 0 0 0 0 +4.226 4.751 -1.724 0 0 0 0 0 0 0 +4.209 4.761 -1.722 0 0 0 0 0 0 0 +4.196 4.777 -1.724 0 0 0 0 0 0 0 +4.184 4.793 -1.725 0 0 0 0 0 0 0 +4.173 4.797 -1.724 0 0 0 0 0 0 0 +4.161 4.813 -1.725 0 0 0 0 0 0 0 +4.141 4.82 -1.722 0 0 0 0 0 0 0 +4.124 4.832 -1.722 0 0 0 0 0 0 0 +4.11 4.846 -1.722 0 0 0 0 0 0 0 +4.105 4.871 -1.727 0 0 0 0 0 0 0 +4.087 4.881 -1.726 0 0 0 0 0 0 0 +4.076 4.883 -1.724 0 0 0 0 0 0 0 +4.061 4.896 -1.724 0 0 0 0 0 0 0 +4.038 4.899 -1.721 0 0 0 0 0 0 0 +4.025 4.915 -1.722 0 0 0 0 0 0 0 +4.011 4.929 -1.722 0 0 0 0 0 0 0 +3.993 4.939 -1.721 0 0 0 0 0 0 0 +3.982 4.957 -1.724 0 0 0 0 0 0 0 +3.958 4.959 -1.72 0 0 0 0 0 0 0 +3.956 4.973 -1.722 0 0 0 0 0 0 0 +3.933 4.976 -1.719 0 0 0 0 0 0 0 +3.918 4.989 -1.719 0 0 0 0 0 0 0 +3.907 5.007 -1.721 0 0 0 0 0 0 0 +3.893 5.022 -1.722 0 0 0 0 0 0 0 +3.882 5.041 -1.725 0 0 0 0 0 0 0 +3.852 5.034 -1.718 0 0 0 0 0 0 0 +3.846 5.042 -1.719 0 0 0 0 0 0 0 +3.831 5.056 -1.719 0 0 0 0 0 0 0 +3.814 5.066 -1.719 0 0 0 0 0 0 0 +3.796 5.075 -1.717 0 0 0 0 0 0 0 +3.781 5.088 -1.718 0 0 0 0 0 0 0 +3.765 5.1 -1.718 0 0 0 0 0 0 0 +3.744 5.106 -1.716 0 0 0 0 0 0 0 +3.733 5.124 -1.718 0 0 0 0 0 0 0 +3.72 5.123 -1.716 0 0 0 0 0 0 0 +3.704 5.135 -1.716 0 0 0 0 0 0 0 +3.691 5.151 -1.717 0 0 0 0 0 0 0 +3.673 5.16 -1.716 0 0 0 0 0 0 0 +3.654 5.168 -1.715 0 0 0 0 0 0 0 +3.638 5.18 -1.715 0 0 0 0 0 0 0 +3.631 5.187 -1.716 0 0 0 0 0 0 0 +3.621 5.208 -1.719 0 0 0 0 0 0 0 +3.602 5.214 -1.717 0 0 0 0 0 0 0 +3.584 5.224 -1.717 0 0 0 0 0 0 0 +3.575 5.246 -1.721 0 0 0 0 0 0 0 +3.547 5.24 -1.715 0 0 0 0 0 0 0 +3.537 5.261 -1.718 0 0 0 0 0 0 0 +3.52 5.272 -1.718 0 0 0 0 0 0 0 +3.509 5.273 -1.716 0 0 0 0 0 0 0 +3.496 5.288 -1.718 0 0 0 0 0 0 0 +3.473 5.29 -1.715 0 0 0 0 0 0 0 +3.455 5.299 -1.714 0 0 0 0 0 0 0 +3.453 5.332 -1.722 0 0 0 0 0 0 0 +3.431 5.335 -1.719 0 0 0 0 0 0 0 +3.414 5.346 -1.719 0 0 0 0 0 0 0 +3.398 5.338 -1.715 0 0 0 0 0 0 0 +3.386 5.357 -1.717 0 0 0 0 0 0 0 +3.37 5.369 -1.718 0 0 0 0 0 0 0 +3.352 5.378 -1.717 0 0 0 0 0 0 0 +3.332 5.384 -1.716 0 0 0 0 0 0 0 +3.319 5.401 -1.718 0 0 0 0 0 0 0 +3.303 5.413 -1.719 0 0 0 0 0 0 0 +3.293 5.415 -1.717 0 0 0 0 0 0 0 +3.277 5.427 -1.718 0 0 0 0 0 0 0 +3.261 5.439 -1.719 0 0 0 0 0 0 0 +3.248 5.457 -1.721 0 0 0 0 0 0 0 +3.234 5.472 -1.723 0 0 0 0 0 0 0 +3.216 5.481 -1.722 0 0 0 0 0 0 0 +3.2 5.493 -1.723 0 0 0 0 0 0 0 +3.187 5.491 -1.721 0 0 0 0 0 0 0 +3.175 5.509 -1.724 0 0 0 0 0 0 0 +3.159 5.523 -1.725 0 0 0 0 0 0 0 +3.133 5.517 -1.72 0 0 0 0 0 0 0 +3.125 5.544 -1.725 0 0 0 0 0 0 0 +3.101 5.54 -1.721 0 0 0 0 0 0 0 +3.092 5.565 -1.726 0 0 0 0 0 0 0 +3.079 5.563 -1.724 0 0 0 0 0 0 0 +3.067 5.583 -1.727 0 0 0 0 0 0 0 +3.056 5.604 -1.731 0 0 0 0 0 0 0 +3.039 5.616 -1.731 0 0 0 0 0 0 0 +3.022 5.627 -1.732 0 0 0 0 0 0 0 +2.998 5.623 -1.727 0 0 0 0 0 0 0 +2.992 5.656 -1.735 0 0 0 0 0 0 0 +2.968 5.653 -1.731 0 0 0 0 0 0 0 +2.959 5.656 -1.731 0 0 0 0 0 0 0 +2.942 5.667 -1.731 0 0 0 0 0 0 0 +2.92 5.67 -1.729 0 0 0 0 0 0 0 +2.908 5.689 -1.733 0 0 0 0 0 0 0 +2.89 5.698 -1.733 0 0 0 0 0 0 0 +2.87 5.704 -1.731 0 0 0 0 0 0 0 +2.852 5.711 -1.731 0 0 0 0 0 0 0 +2.843 5.716 -1.731 0 0 0 0 0 0 0 +2.825 5.726 -1.731 0 0 0 0 0 0 0 +2.802 5.725 -1.728 0 0 0 0 0 0 0 +2.786 5.737 -1.729 0 0 0 0 0 0 0 +2.771 5.753 -1.731 0 0 0 0 0 0 0 +2.746 5.746 -1.726 0 0 0 0 0 0 0 +2.733 5.765 -1.73 0 0 0 0 0 0 0 +2.722 5.766 -1.729 0 0 0 0 0 0 0 +2.701 5.769 -1.727 0 0 0 0 0 0 0 +2.682 5.776 -1.726 0 0 0 0 0 0 0 +2.671 5.798 -1.731 0 0 0 0 0 0 0 +2.643 5.785 -1.724 0 0 0 0 0 0 0 +2.629 5.802 -1.727 0 0 0 0 0 0 0 +2.617 5.826 -1.732 0 0 0 0 0 0 0 +2.598 5.808 -1.725 0 0 0 0 0 0 0 +2.584 5.825 -1.727 0 0 0 0 0 0 0 +2.561 5.822 -1.724 0 0 0 0 0 0 0 +2.542 5.828 -1.724 0 0 0 0 0 0 0 +2.525 5.84 -1.725 0 0 0 0 0 0 0 +2.513 5.862 -1.729 0 0 0 0 0 0 0 +2.483 5.843 -1.721 0 0 0 0 0 0 0 +2.478 5.858 -1.724 0 0 0 0 0 0 0 +2.468 5.885 -1.73 0 0 0 0 0 0 0 +2.442 5.875 -1.725 0 0 0 0 0 0 0 +2.427 5.891 -1.727 0 0 0 0 0 0 0 +2.412 5.908 -1.73 0 0 0 0 0 0 0 +2.39 5.905 -1.727 0 0 0 0 0 0 0 +2.369 5.907 -1.725 0 0 0 0 0 0 0 +2.359 5.936 -1.732 0 0 0 0 0 0 0 +2.344 5.925 -1.727 0 0 0 0 0 0 0 +2.324 5.929 -1.726 0 0 0 0 0 0 0 +2.303 5.931 -1.725 0 0 0 0 0 0 0 +2.287 5.943 -1.726 0 0 0 0 0 0 0 +2.264 5.942 -1.724 0 0 0 0 0 0 0 +2.251 5.963 -1.728 0 0 0 0 0 0 0 +2.223 5.945 -1.72 0 0 0 0 0 0 0 +2.219 5.963 -1.725 0 0 0 0 0 0 0 +2.204 5.979 -1.727 0 0 0 0 0 0 0 +2.177 5.964 -1.721 0 0 0 0 0 0 0 +2.16 5.976 -1.722 0 0 0 0 0 0 0 +2.146 5.996 -1.726 0 0 0 0 0 0 0 +2.12 5.982 -1.72 0 0 0 0 0 0 0 +2.106 6.002 -1.724 0 0 0 0 0 0 0 +2.099 6.012 -1.726 0 0 0 0 0 0 0 +2.072 5.997 -1.72 0 0 0 0 0 0 0 +2.057 6.013 -1.722 0 0 0 0 0 0 0 +2.04 6.025 -1.724 0 0 0 0 0 0 0 +2.016 6.016 -1.72 0 0 0 0 0 0 0 +2.003 6.041 -1.725 0 0 0 0 0 0 0 +1.984 6.047 -1.725 0 0 0 0 0 0 0 +1.97 6.036 -1.721 0 0 0 0 0 0 0 +1.952 6.047 -1.722 0 0 0 0 0 0 0 +1.94 6.074 -1.729 0 0 0 0 0 0 0 +1.911 6.048 -1.719 0 0 0 0 0 0 0 +1.888 6.042 -1.715 0 0 0 0 0 0 0 +1.865 6.035 -1.711 0 0 0 0 0 0 0 +1.847 6.042 -1.712 0 0 0 0 0 0 0 +1.825 6.041 -1.71 0 0 0 0 0 0 0 +1.816 6.044 -1.71 0 0 0 0 0 0 0 +1.793 6.036 -1.706 0 0 0 0 0 0 0 +1.778 6.055 -1.71 0 0 0 0 0 0 0 +1.754 6.042 -1.704 0 0 0 0 0 0 0 +1.731 6.033 -1.7 0 0 0 0 0 0 0 +1.713 6.042 -1.701 0 0 0 0 0 0 0 +1.694 6.047 -1.701 0 0 0 0 0 0 0 +1.678 6.027 -1.694 0 0 0 0 0 0 0 +1.665 6.055 -1.701 0 0 0 0 0 0 0 +1.643 6.049 -1.697 0 0 0 0 0 0 0 +1.623 6.049 -1.696 0 0 0 0 0 0 0 +1.605 6.059 -1.697 0 0 0 0 0 0 0 +1.586 6.062 -1.697 0 0 0 0 0 0 0 +1.567 6.071 -1.698 0 0 0 0 0 0 0 +1.557 6.07 -1.697 0 0 0 0 0 0 0 +1.538 6.075 -1.697 0 0 0 0 0 0 0 +1.516 6.07 -1.694 0 0 0 0 0 0 0 +1.497 6.073 -1.694 0 0 0 0 0 0 0 +1.48 6.085 -1.696 0 0 0 0 0 0 0 +1.463 6.099 -1.699 0 0 0 0 0 0 0 +1.44 6.089 -1.694 0 0 0 0 0 0 0 +1.43 6.087 -1.693 0 0 0 0 0 0 0 +0.721 3.101 -0.803 0 0 0 0 0 0 0 +1.409 6.084 -1.691 0 0 0 0 0 0 0 +0.713 3.11 -0.805 0 0 0 0 0 0 0 +0.699 3.094 -0.799 0 0 0 0 0 0 0 +0.693 3.113 -0.804 0 0 0 0 0 0 0 +0.686 3.128 -0.808 0 0 0 0 0 0 0 +0.677 3.136 -0.81 0 0 0 0 0 0 0 +0.672 3.137 -0.81 0 0 0 0 0 0 0 +0.668 3.166 -0.818 0 0 0 0 0 0 0 +0.66 3.179 -0.821 0 0 0 0 0 0 0 +0.634 3.1 -0.797 0 0 0 0 0 0 0 +0.597 2.959 -0.755 0 0 0 0 0 0 0 +0.587 2.961 -0.755 0 0 0 0 0 0 0 +0.578 2.96 -0.754 0 0 0 0 0 0 0 +0.573 2.959 -0.754 0 0 0 0 0 0 0 +0.562 2.952 -0.751 0 0 0 0 0 0 0 +0.555 2.967 -0.755 0 0 0 0 0 0 0 +0.545 2.967 -0.754 0 0 0 0 0 0 0 +0.536 2.97 -0.755 0 0 0 0 0 0 0 +0.527 2.97 -0.754 0 0 0 0 0 0 0 +0.518 2.977 -0.756 0 0 0 0 0 0 0 +0.51 2.959 -0.75 0 0 0 0 0 0 0 +0.503 2.972 -0.754 0 0 0 0 0 0 0 +0.492 2.964 -0.751 0 0 0 0 0 0 0 +0.484 2.975 -0.754 0 0 0 0 0 0 0 +0.473 2.963 -0.75 0 0 0 0 0 0 0 +0.464 2.967 -0.75 0 0 0 0 0 0 0 +0.453 2.957 -0.747 0 0 0 0 0 0 0 +0.45 2.973 -0.751 0 0 0 0 0 0 0 +0.439 2.959 -0.747 0 0 0 0 0 0 0 +0.431 2.972 -0.75 0 0 0 0 0 0 0 +0.422 2.975 -0.751 0 0 0 0 0 0 0 +0.412 2.972 -0.75 0 0 0 0 0 0 0 +0.402 2.966 -0.747 0 0 0 0 0 0 0 +0.394 2.981 -0.751 0 0 0 0 0 0 0 +0.39 2.981 -0.751 0 0 0 0 0 0 0 +0.38 2.981 -0.751 0 0 0 0 0 0 0 +0.371 2.982 -0.751 0 0 0 0 0 0 0 +0.361 2.983 -0.751 0 0 0 0 0 0 0 +0.353 2.996 -0.754 0 0 0 0 0 0 0 +0.343 2.991 -0.752 0 0 0 0 0 0 0 +0.334 2.992 -0.752 0 0 0 0 0 0 0 +0.324 2.993 -0.752 0 0 0 0 0 0 0 +0.319 2.99 -0.751 0 0 0 0 0 0 0 +0.311 2.998 -0.754 0 0 0 0 0 0 0 +0.3 2.99 -0.751 0 0 0 0 0 0 0 +0.292 3.006 -0.755 0 0 0 0 0 0 0 +0.282 3.001 -0.754 0 0 0 0 0 0 0 +0.273 3.006 -0.755 0 0 0 0 0 0 0 +0.263 2.997 -0.752 0 0 0 0 0 0 0 +0.258 2.994 -0.751 0 0 0 0 0 0 0 +0.249 2.996 -0.751 0 0 0 0 0 0 0 +0.24 3.005 -0.754 0 0 0 0 0 0 0 +0.23 3.006 -0.754 0 0 0 0 0 0 0 +0.221 3.01 -0.755 0 0 0 0 0 0 0 +0.212 3.011 -0.755 0 0 0 0 0 0 0 +0.202 3.008 -0.754 0 0 0 0 0 0 0 +0.197 3.004 -0.752 0 0 0 0 0 0 0 +0.188 3.01 -0.754 0 0 0 0 0 0 0 +0.178 3.011 -0.754 0 0 0 0 0 0 0 +0.169 3.017 -0.756 0 0 0 0 0 0 0 +0.16 3.02 -0.756 0 0 0 0 0 0 0 +0.15 3.018 -0.756 0 0 0 0 0 0 0 +0.141 3.013 -0.754 0 0 0 0 0 0 0 +0.131 3.019 -0.756 0 0 0 0 0 0 0 +0.127 3.021 -0.756 0 0 0 0 0 0 0 +0.117 3.026 -0.757 0 0 0 0 0 0 0 +0.108 3.028 -0.758 0 0 0 0 0 0 0 +0.101 3.128 -0.787 0 0 0 0 0 0 0 +0.092 3.199 -0.808 0 0 0 0 0 0 0 +0.083 3.209 -0.81 0 0 0 0 0 0 0 +0.073 3.229 -0.816 0 0 0 0 0 0 0 +0.067 3.208 -0.81 0 0 0 0 0 0 0 +0.057 3.206 -0.809 0 0 0 0 0 0 0 +0.047 3.216 -0.812 0 0 0 0 0 0 0 +0.048 6.199 -1.677 0 0 0 0 0 0 0 +0.028 6.212 -1.681 0 0 0 0 0 0 0 +0.009 6.214 -1.682 0 0 0 0 0 0 0 +-0.011 6.261 -1.695 0 0 0 0 0 0 0 +-0.021 6.28 -1.701 0 0 0 0 0 0 0 +-0.041 6.28 -1.701 0 0 0 0 0 0 0 +-0.061 6.293 -1.705 0 0 0 0 0 0 0 +-0.081 6.295 -1.705 0 0 0 0 0 0 0 +-0.101 6.306 -1.709 0 0 0 0 0 0 0 +-0.121 6.309 -1.71 0 0 0 0 0 0 0 +-0.141 6.313 -1.711 0 0 0 0 0 0 0 +-0.151 6.326 -1.715 0 0 0 0 0 0 0 +-0.171 6.324 -1.714 0 0 0 0 0 0 0 +-0.191 6.336 -1.718 0 0 0 0 0 0 0 +-0.211 6.328 -1.716 0 0 0 0 0 0 0 +-0.231 6.341 -1.72 0 0 0 0 0 0 0 +-0.251 6.35 -1.722 0 0 0 0 0 0 0 +-0.272 6.368 -1.728 0 0 0 0 0 0 0 +-0.282 6.37 -1.729 0 0 0 0 0 0 0 +-0.303 6.374 -1.73 0 0 0 0 0 0 0 +-0.323 6.379 -1.732 0 0 0 0 0 0 0 +-0.343 6.37 -1.73 0 0 0 0 0 0 0 +-0.363 6.379 -1.733 0 0 0 0 0 0 0 +-0.383 6.382 -1.734 0 0 0 0 0 0 0 +-0.404 6.392 -1.737 0 0 0 0 0 0 0 +-0.415 6.399 -1.739 0 0 0 0 0 0 0 +-0.435 6.401 -1.74 0 0 0 0 0 0 0 +-0.455 6.398 -1.74 0 0 0 0 0 0 0 +-0.475 6.395 -1.739 0 0 0 0 0 0 0 +-0.498 6.43 -1.75 0 0 0 0 0 0 0 +-0.519 6.437 -1.753 0 0 0 0 0 0 0 +-0.527 6.29 -1.71 0 0 0 0 0 0 0 +-0.555 6.379 -1.736 0 0 0 0 0 0 0 +-0.599 6.527 -1.78 0 0 0 0 0 0 0 +-0.621 6.535 -1.783 0 0 0 0 0 0 0 +-0.632 6.445 -1.758 0 0 0 0 0 0 0 +-0.649 6.41 -1.748 0 0 0 0 0 0 0 +-0.667 6.391 -1.743 0 0 0 0 0 0 0 +-0.685 6.372 -1.738 0 0 0 0 0 0 0 +-0.698 6.397 -1.746 0 0 0 0 0 0 0 +-0.72 6.41 -1.75 0 0 0 0 0 0 0 +-0.741 6.41 -1.751 0 0 0 0 0 0 0 +-0.758 6.389 -1.745 0 0 0 0 0 0 0 +-0.78 6.399 -1.749 0 0 0 0 0 0 0 +-0.798 6.384 -1.745 0 0 0 0 0 0 0 +-0.819 6.381 -1.745 0 0 0 0 0 0 0 +-0.831 6.399 -1.751 0 0 0 0 0 0 0 +-0.849 6.381 -1.746 0 0 0 0 0 0 0 +-0.87 6.386 -1.749 0 0 0 0 0 0 0 +-0.891 6.387 -1.75 0 0 0 0 0 0 0 +-0.909 6.371 -1.746 0 0 0 0 0 0 0 +-0.93 6.376 -1.748 0 0 0 0 0 0 0 +-0.954 6.395 -1.755 0 0 0 0 0 0 0 +-0.96 6.373 -1.749 0 0 0 0 0 0 0 +-0.981 6.376 -1.75 0 0 0 0 0 0 0 +-1.001 6.373 -1.75 0 0 0 0 0 0 0 +-1.02 6.358 -1.747 0 0 0 0 0 0 0 +-1.039 6.355 -1.747 0 0 0 0 0 0 0 +-1.064 6.376 -1.754 0 0 0 0 0 0 0 +-1.081 6.356 -1.749 0 0 0 0 0 0 0 +-1.101 6.356 -1.75 0 0 0 0 0 0 0 +-1.112 6.356 -1.751 0 0 0 0 0 0 0 +-1.13 6.345 -1.749 0 0 0 0 0 0 0 +-1.152 6.351 -1.751 0 0 0 0 0 0 0 +-1.175 6.364 -1.756 0 0 0 0 0 0 0 +-1.192 6.345 -1.752 0 0 0 0 0 0 0 +-1.211 6.336 -1.75 0 0 0 0 0 0 0 +-1.232 6.338 -1.752 0 0 0 0 0 0 0 +-1.239 6.323 -1.748 0 0 0 0 0 0 0 +-1.258 6.315 -1.747 0 0 0 0 0 0 0 +-1.283 6.335 -1.754 0 0 0 0 0 0 0 +-1.298 6.305 -1.746 0 0 0 0 0 0 0 +-1.319 6.307 -1.748 0 0 0 0 0 0 0 +-1.34 6.308 -1.75 0 0 0 0 0 0 0 +-1.36 6.304 -1.75 0 0 0 0 0 0 0 +-1.37 6.304 -1.75 0 0 0 0 0 0 0 +-1.391 6.305 -1.752 0 0 0 0 0 0 0 +-1.41 6.297 -1.751 0 0 0 0 0 0 0 +-1.431 6.298 -1.753 0 0 0 0 0 0 0 +-1.45 6.29 -1.751 0 0 0 0 0 0 0 +-1.47 6.285 -1.751 0 0 0 0 0 0 0 +-1.489 6.279 -1.751 0 0 0 0 0 0 0 +-1.5 6.28 -1.752 0 0 0 0 0 0 0 +-1.52 6.279 -1.753 0 0 0 0 0 0 0 +-1.537 6.263 -1.75 0 0 0 0 0 0 0 +-1.559 6.267 -1.753 0 0 0 0 0 0 0 +-1.574 6.244 -1.747 0 0 0 0 0 0 0 +-1.596 6.246 -1.749 0 0 0 0 0 0 0 +-1.62 6.258 -1.754 0 0 0 0 0 0 0 +-1.636 6.24 -1.75 0 0 0 0 0 0 0 +-1.646 6.237 -1.75 0 0 0 0 0 0 0 +-1.667 6.238 -1.752 0 0 0 0 0 0 0 +-1.684 6.223 -1.749 0 0 0 0 0 0 0 +-1.704 6.22 -1.75 0 0 0 0 0 0 0 +-1.728 6.231 -1.755 0 0 0 0 0 0 0 +-1.741 6.203 -1.748 0 0 0 0 0 0 0 +-1.764 6.209 -1.751 0 0 0 0 0 0 0 +-1.774 6.206 -1.751 0 0 0 0 0 0 0 +-1.788 6.184 -1.746 0 0 0 0 0 0 0 +-1.811 6.187 -1.749 0 0 0 0 0 0 0 +-1.833 6.191 -1.752 0 0 0 0 0 0 0 +-1.847 6.167 -1.746 0 0 0 0 0 0 0 +-1.873 6.183 -1.753 0 0 0 0 0 0 0 +-1.888 6.164 -1.749 0 0 0 0 0 0 0 +-1.896 6.156 -1.748 0 0 0 0 0 0 0 +-1.913 6.141 -1.745 0 0 0 0 0 0 0 +-1.936 6.147 -1.749 0 0 0 0 0 0 0 +-1.95 6.127 -1.744 0 0 0 0 0 0 0 +-1.974 6.133 -1.748 0 0 0 0 0 0 0 +-2.009 6.174 -1.763 0 0 0 0 0 0 0 +-2.037 6.195 -1.771 0 0 0 0 0 0 0 +-2.034 6.154 -1.759 0 0 0 0 0 0 0 +-2.039 6.104 -1.746 0 0 0 0 0 0 0 +-2.058 6.097 -1.746 0 0 0 0 0 0 0 +-2.08 6.1 -1.749 0 0 0 0 0 0 0 +-2.112 6.13 -1.76 0 0 0 0 0 0 0 +-2.126 6.109 -1.755 0 0 0 0 0 0 0 +-2.142 6.093 -1.753 0 0 0 0 0 0 0 +-2.161 6.084 -1.752 0 0 0 0 0 0 0 +-2.159 6.05 -1.743 0 0 0 0 0 0 0 +-2.192 6.081 -1.754 0 0 0 0 0 0 0 +-2.209 6.069 -1.753 0 0 0 0 0 0 0 +-2.223 6.048 -1.748 0 0 0 0 0 0 0 +-2.241 6.039 -1.748 0 0 0 0 0 0 0 +-2.265 6.046 -1.752 0 0 0 0 0 0 0 +-2.28 6.026 -1.748 0 0 0 0 0 0 0 +-2.29 6.025 -1.749 0 0 0 0 0 0 0 +-2.309 6.017 -1.749 0 0 0 0 0 0 0 +-2.327 6.008 -1.748 0 0 0 0 0 0 0 +-2.345 5.999 -1.748 0 0 0 0 0 0 0 +-2.372 6.013 -1.754 0 0 0 0 0 0 0 +-2.386 5.993 -1.75 0 0 0 0 0 0 0 +-2.406 5.989 -1.751 0 0 0 0 0 0 0 +-2.414 5.98 -1.75 0 0 0 0 0 0 0 +-2.433 5.974 -1.75 0 0 0 0 0 0 0 +-2.45 5.961 -1.749 0 0 0 0 0 0 0 +-2.472 5.962 -1.751 0 0 0 0 0 0 0 +-2.492 5.956 -1.752 0 0 0 0 0 0 0 +-2.509 5.945 -1.751 0 0 0 0 0 0 0 +-2.527 5.935 -1.75 0 0 0 0 0 0 0 +-2.537 5.933 -1.751 0 0 0 0 0 0 0 +-2.554 5.922 -1.75 0 0 0 0 0 0 0 +-2.569 5.905 -1.747 0 0 0 0 0 0 0 +-2.586 5.893 -1.746 0 0 0 0 0 0 0 +-2.605 5.887 -1.746 0 0 0 0 0 0 0 +-2.623 5.878 -1.746 0 0 0 0 0 0 0 +-2.643 5.874 -1.748 0 0 0 0 0 0 0 +-2.662 5.865 -1.748 0 0 0 0 0 0 0 +-2.679 5.879 -1.753 0 0 0 0 0 0 0 +-2.694 5.863 -1.751 0 0 0 0 0 0 0 +-2.718 5.865 -1.754 0 0 0 0 0 0 0 +-2.731 5.846 -1.751 0 0 0 0 0 0 0 +-2.754 5.846 -1.754 0 0 0 0 0 0 0 +-2.774 5.841 -1.755 0 0 0 0 0 0 0 +-2.794 5.837 -1.756 0 0 0 0 0 0 0 +-2.798 5.821 -1.753 0 0 0 0 0 0 0 +-2.821 5.822 -1.756 0 0 0 0 0 0 0 +-2.841 5.817 -1.757 0 0 0 0 0 0 0 +-2.858 5.805 -1.756 0 0 0 0 0 0 0 +-2.872 5.789 -1.754 0 0 0 0 0 0 0 +-2.898 5.795 -1.759 0 0 0 0 0 0 0 +-2.911 5.776 -1.755 0 0 0 0 0 0 0 +-2.935 5.777 -1.759 0 0 0 0 0 0 0 +-2.94 5.765 -1.756 0 0 0 0 0 0 0 +-2.959 5.758 -1.757 0 0 0 0 0 0 0 +-2.976 5.745 -1.756 0 0 0 0 0 0 0 +-2.997 5.743 -1.758 0 0 0 0 0 0 0 +-3.014 5.731 -1.758 0 0 0 0 0 0 0 +-3.03 5.717 -1.756 0 0 0 0 0 0 0 +-3.052 5.716 -1.759 0 0 0 0 0 0 0 +-3.059 5.708 -1.758 0 0 0 0 0 0 0 +-3.076 5.696 -1.757 0 0 0 0 0 0 0 +-3.096 5.69 -1.758 0 0 0 0 0 0 0 +-3.119 5.69 -1.761 0 0 0 0 0 0 0 +-3.138 5.682 -1.762 0 0 0 0 0 0 0 +-3.151 5.664 -1.759 0 0 0 0 0 0 0 +-3.174 5.662 -1.762 0 0 0 0 0 0 0 +-3.18 5.652 -1.76 0 0 0 0 0 0 0 +-3.201 5.649 -1.763 0 0 0 0 0 0 0 +-3.219 5.639 -1.763 0 0 0 0 0 0 0 +-3.238 5.63 -1.763 0 0 0 0 0 0 0 +-3.251 5.612 -1.76 0 0 0 0 0 0 0 +-3.273 5.61 -1.763 0 0 0 0 0 0 0 +-3.288 5.595 -1.761 0 0 0 0 0 0 0 +-3.296 5.588 -1.761 0 0 0 0 0 0 0 +-3.315 5.581 -1.762 0 0 0 0 0 0 0 +-3.33 5.565 -1.76 0 0 0 0 0 0 0 +-3.35 5.56 -1.762 0 0 0 0 0 0 0 +-3.363 5.541 -1.759 0 0 0 0 0 0 0 +-3.386 5.54 -1.763 0 0 0 0 0 0 0 +-3.39 5.508 -1.755 0 0 0 0 0 0 0 +-3.411 5.503 -1.757 0 0 0 0 0 0 0 +-3.428 5.512 -1.762 0 0 0 0 0 0 0 +-3.445 5.499 -1.761 0 0 0 0 0 0 0 +-3.467 5.497 -1.764 0 0 0 0 0 0 0 +-3.485 5.487 -1.765 0 0 0 0 0 0 0 +-3.51 5.488 -1.769 0 0 0 0 0 0 0 +-3.529 5.48 -1.77 0 0 0 0 0 0 0 +-3.555 5.482 -1.774 0 0 0 0 0 0 0 +-3.565 5.479 -1.775 0 0 0 0 0 0 0 +-3.593 5.484 -1.781 0 0 0 0 0 0 0 +-3.608 5.469 -1.78 0 0 0 0 0 0 0 +-3.636 5.474 -1.785 0 0 0 0 0 0 0 +-3.657 5.467 -1.787 0 0 0 0 0 0 0 +-3.665 5.443 -1.783 0 0 0 0 0 0 0 +-3.674 5.419 -1.778 0 0 0 0 0 0 0 +-3.686 5.42 -1.78 0 0 0 0 0 0 0 +-3.742 5.463 -1.8 0 0 0 0 0 0 0 +-3.775 5.475 -1.808 0 0 0 0 0 0 0 +-3.764 5.422 -1.794 0 0 0 0 0 0 0 +-3.777 5.406 -1.792 0 0 0 0 0 0 0 +-3.787 5.383 -1.788 0 0 0 0 0 0 0 +-3.798 5.363 -1.785 0 0 0 0 0 0 0 +-3.795 5.342 -1.78 0 0 0 0 0 0 0 +-3.818 5.337 -1.783 0 0 0 0 0 0 0 +-3.82 5.305 -1.775 0 0 0 0 0 0 0 +-3.856 5.319 -1.785 0 0 0 0 0 0 0 +-3.867 5.3 -1.782 0 0 0 0 0 0 0 +-3.88 5.283 -1.78 0 0 0 0 0 0 0 +-3.899 5.274 -1.782 0 0 0 0 0 0 0 +-3.901 5.26 -1.779 0 0 0 0 0 0 0 +-3.91 5.237 -1.775 0 0 0 0 0 0 0 +-3.936 5.238 -1.78 0 0 0 0 0 0 0 +-3.941 5.211 -1.774 0 0 0 0 0 0 0 +-3.954 5.194 -1.773 0 0 0 0 0 0 0 +-3.966 5.175 -1.77 0 0 0 0 0 0 0 +-3.981 5.161 -1.77 0 0 0 0 0 0 0 +-3.995 5.146 -1.769 0 0 0 0 0 0 0 +-3.998 5.133 -1.766 0 0 0 0 0 0 0 +-4.018 5.125 -1.768 0 0 0 0 0 0 0 +-4.032 5.111 -1.768 0 0 0 0 0 0 0 +-4.046 5.095 -1.766 0 0 0 0 0 0 0 +-4.066 5.087 -1.768 0 0 0 0 0 0 0 +-4.073 5.064 -1.764 0 0 0 0 0 0 0 +-4.089 5.051 -1.764 0 0 0 0 0 0 0 +-4.104 5.054 -1.768 0 0 0 0 0 0 0 +-4.115 5.035 -1.765 0 0 0 0 0 0 0 +-4.13 5.02 -1.765 0 0 0 0 0 0 0 +-4.146 5.007 -1.765 0 0 0 0 0 0 0 +-4.159 4.991 -1.764 0 0 0 0 0 0 0 +-4.175 4.978 -1.764 0 0 0 0 0 0 0 +-4.194 4.969 -1.765 0 0 0 0 0 0 0 +-4.199 4.96 -1.764 0 0 0 0 0 0 0 +-4.211 4.942 -1.763 0 0 0 0 0 0 0 +-4.233 4.936 -1.765 0 0 0 0 0 0 0 +-4.243 4.917 -1.763 0 0 0 0 0 0 0 +-4.261 4.907 -1.764 0 0 0 0 0 0 0 +-4.277 4.893 -1.764 0 0 0 0 0 0 0 +-4.294 4.883 -1.765 0 0 0 0 0 0 0 +-4.307 4.882 -1.768 0 0 0 0 0 0 0 +-4.323 4.868 -1.768 0 0 0 0 0 0 0 +-4.338 4.855 -1.768 0 0 0 0 0 0 0 +-4.358 4.847 -1.77 0 0 0 0 0 0 0 +-4.37 4.829 -1.768 0 0 0 0 0 0 0 +-4.383 4.813 -1.768 0 0 0 0 0 0 0 +-4.405 4.807 -1.77 0 0 0 0 0 0 0 +-4.414 4.801 -1.771 0 0 0 0 0 0 0 +-4.425 4.783 -1.769 0 0 0 0 0 0 0 +-4.436 4.765 -1.768 0 0 0 0 0 0 0 +-4.446 4.745 -1.765 0 0 0 0 0 0 0 +-4.465 4.736 -1.767 0 0 0 0 0 0 0 +-4.479 4.722 -1.767 0 0 0 0 0 0 0 +-4.497 4.71 -1.768 0 0 0 0 0 0 0 +-4.506 4.691 -1.766 0 0 0 0 0 0 0 +-4.514 4.683 -1.766 0 0 0 0 0 0 0 +-4.532 4.673 -1.768 0 0 0 0 0 0 0 +-4.547 4.659 -1.768 0 0 0 0 0 0 0 +-4.564 4.648 -1.769 0 0 0 0 0 0 0 +-4.567 4.621 -1.764 0 0 0 0 0 0 0 +-4.58 4.605 -1.763 0 0 0 0 0 0 0 +-4.597 4.594 -1.764 0 0 0 0 0 0 0 +-4.603 4.585 -1.764 0 0 0 0 0 0 0 +-4.621 4.575 -1.765 0 0 0 0 0 0 0 +-4.628 4.552 -1.762 0 0 0 0 0 0 0 +-4.651 4.547 -1.766 0 0 0 0 0 0 0 +-4.659 4.525 -1.763 0 0 0 0 0 0 0 +-4.676 4.513 -1.764 0 0 0 0 0 0 0 +-4.694 4.503 -1.766 0 0 0 0 0 0 0 +-4.7 4.494 -1.765 0 0 0 0 0 0 0 +-4.721 4.486 -1.768 0 0 0 0 0 0 0 +-4.735 4.471 -1.768 0 0 0 0 0 0 0 +-4.745 4.452 -1.766 0 0 0 0 0 0 0 +-4.766 4.444 -1.769 0 0 0 0 0 0 0 +-4.775 4.425 -1.768 0 0 0 0 0 0 0 +-4.792 4.412 -1.769 0 0 0 0 0 0 0 +-4.796 4.402 -1.768 0 0 0 0 0 0 0 +-4.821 4.397 -1.772 0 0 0 0 0 0 0 +-4.819 4.368 -1.766 0 0 0 0 0 0 0 +-4.837 4.357 -1.768 0 0 0 0 0 0 0 +-4.861 4.351 -1.772 0 0 0 0 0 0 0 +-4.881 4.34 -1.774 0 0 0 0 0 0 0 +-4.89 4.321 -1.772 0 0 0 0 0 0 0 +-4.885 4.289 -1.765 0 0 0 0 0 0 0 +-4.9 4.289 -1.768 0 0 0 0 0 0 0 +-4.905 4.266 -1.765 0 0 0 0 0 0 0 +-4.915 4.248 -1.764 0 0 0 0 0 0 0 +-4.923 4.228 -1.761 0 0 0 0 0 0 0 +-4.937 4.214 -1.762 0 0 0 0 0 0 0 +-4.952 4.199 -1.763 0 0 0 0 0 0 0 +-4.967 4.185 -1.763 0 0 0 0 0 0 0 +-4.975 4.179 -1.764 0 0 0 0 0 0 0 +-4.982 4.158 -1.761 0 0 0 0 0 0 0 +-4.999 4.146 -1.763 0 0 0 0 0 0 0 +-5.026 4.141 -1.768 0 0 0 0 0 0 0 +-5.046 4.131 -1.771 0 0 0 0 0 0 0 +-5.05 4.108 -1.768 0 0 0 0 0 0 0 +-5.065 4.094 -1.768 0 0 0 0 0 0 0 +-5.065 4.081 -1.766 0 0 0 0 0 0 0 +-5.094 4.078 -1.772 0 0 0 0 0 0 0 +-5.106 4.061 -1.772 0 0 0 0 0 0 0 +-5.126 4.051 -1.774 0 0 0 0 0 0 0 +-5.143 4.038 -1.776 0 0 0 0 0 0 0 +-5.147 4.015 -1.773 0 0 0 0 0 0 0 +-5.165 4.003 -1.775 0 0 0 0 0 0 0 +-5.17 3.994 -1.774 0 0 0 0 0 0 0 +-5.197 3.988 -1.779 0 0 0 0 0 0 0 +-5.203 3.967 -1.777 0 0 0 0 0 0 0 +-5.226 3.959 -1.781 0 0 0 0 0 0 0 +-5.229 3.936 -1.778 0 0 0 0 0 0 0 +-5.245 3.922 -1.779 0 0 0 0 0 0 0 +-5.26 3.907 -1.78 0 0 0 0 0 0 0 +-5.291 3.917 -1.789 0 0 0 0 0 0 0 +-5.306 3.903 -1.79 0 0 0 0 0 0 0 +-5.317 3.885 -1.789 0 0 0 0 0 0 0 +-5.325 3.865 -1.788 0 0 0 0 0 0 0 +-5.334 3.846 -1.787 0 0 0 0 0 0 0 +-5.333 3.82 -1.782 0 0 0 0 0 0 0 +-5.337 3.798 -1.779 0 0 0 0 0 0 0 +-5.334 3.783 -1.776 0 0 0 0 0 0 0 +-5.338 3.761 -1.773 0 0 0 0 0 0 0 +-5.351 3.745 -1.774 0 0 0 0 0 0 0 +-5.399 3.753 -1.787 0 0 0 0 0 0 0 +-5.4 3.729 -1.783 0 0 0 0 0 0 0 +-5.421 3.718 -1.786 0 0 0 0 0 0 0 +-5.452 3.714 -1.793 0 0 0 0 0 0 0 +-5.436 3.679 -1.783 0 0 0 0 0 0 0 +-5.433 3.664 -1.78 0 0 0 0 0 0 0 +-5.452 3.652 -1.783 0 0 0 0 0 0 0 +-5.47 3.639 -1.785 0 0 0 0 0 0 0 +-5.48 3.621 -1.784 0 0 0 0 0 0 0 +-5.48 3.596 -1.78 0 0 0 0 0 0 0 +-5.486 3.576 -1.779 0 0 0 0 0 0 0 +-5.502 3.562 -1.78 0 0 0 0 0 0 0 +-5.493 3.544 -1.775 0 0 0 0 0 0 0 +-5.503 3.525 -1.775 0 0 0 0 0 0 0 +-5.514 3.508 -1.775 0 0 0 0 0 0 0 +-5.522 3.489 -1.774 0 0 0 0 0 0 0 +-5.531 3.47 -1.773 0 0 0 0 0 0 0 +-5.535 3.449 -1.771 0 0 0 0 0 0 0 +-5.539 3.428 -1.769 0 0 0 0 0 0 0 +-5.543 3.418 -1.768 0 0 0 0 0 0 0 +-5.551 3.398 -1.767 0 0 0 0 0 0 0 +-5.574 3.389 -1.772 0 0 0 0 0 0 0 +-5.569 3.362 -1.766 0 0 0 0 0 0 0 +-5.574 3.341 -1.764 0 0 0 0 0 0 0 +-5.583 3.323 -1.764 0 0 0 0 0 0 0 +-5.592 3.304 -1.763 0 0 0 0 0 0 0 +-5.604 3.299 -1.765 0 0 0 0 0 0 0 +-5.607 3.278 -1.763 0 0 0 0 0 0 0 +-5.616 3.259 -1.763 0 0 0 0 0 0 0 +-5.624 3.24 -1.762 0 0 0 0 0 0 0 +-5.633 3.222 -1.761 0 0 0 0 0 0 0 +-5.641 3.203 -1.761 0 0 0 0 0 0 0 +-5.65 3.184 -1.76 0 0 0 0 0 0 0 +-5.655 3.176 -1.76 0 0 0 0 0 0 0 +-5.663 3.157 -1.76 0 0 0 0 0 0 0 +-5.669 3.137 -1.759 0 0 0 0 0 0 0 +-5.689 3.125 -1.762 0 0 0 0 0 0 0 +-5.687 3.101 -1.758 0 0 0 0 0 0 0 +-5.702 3.085 -1.76 0 0 0 0 0 0 0 +-5.72 3.072 -1.763 0 0 0 0 0 0 0 +-5.723 3.05 -1.76 0 0 0 0 0 0 0 +-5.719 3.037 -1.758 0 0 0 0 0 0 0 +-5.727 3.018 -1.757 0 0 0 0 0 0 0 +-5.737 3 -1.757 0 0 0 0 0 0 0 +-5.743 2.98 -1.756 0 0 0 0 0 0 0 +-5.766 2.969 -1.76 0 0 0 0 0 0 0 +-5.771 2.949 -1.759 0 0 0 0 0 0 0 +-5.777 2.93 -1.758 0 0 0 0 0 0 0 +-5.777 2.918 -1.756 0 0 0 0 0 0 0 +-5.784 2.899 -1.756 0 0 0 0 0 0 0 +-5.795 2.882 -1.756 0 0 0 0 0 0 0 +-5.807 2.865 -1.758 0 0 0 0 0 0 0 +-5.806 2.842 -1.754 0 0 0 0 0 0 0 +-5.813 2.823 -1.754 0 0 0 0 0 0 0 +-5.832 2.809 -1.757 0 0 0 0 0 0 0 +-5.833 2.799 -1.756 0 0 0 0 0 0 0 +-5.835 2.777 -1.754 0 0 0 0 0 0 0 +-5.846 2.759 -1.754 0 0 0 0 0 0 0 +-5.851 2.739 -1.753 0 0 0 0 0 0 0 +-5.858 2.72 -1.753 0 0 0 0 0 0 0 +-5.856 2.697 -1.749 0 0 0 0 0 0 0 +-5.869 2.681 -1.751 0 0 0 0 0 0 0 +-5.875 2.673 -1.751 0 0 0 0 0 0 0 +-5.894 2.659 -1.755 0 0 0 0 0 0 0 +-5.892 2.636 -1.751 0 0 0 0 0 0 0 +-5.905 2.619 -1.753 0 0 0 0 0 0 0 +-5.893 2.592 -1.746 0 0 0 0 0 0 0 +-5.906 2.575 -1.748 0 0 0 0 0 0 0 +-5.903 2.552 -1.745 0 0 0 0 0 0 0 +-5.909 2.544 -1.745 0 0 0 0 0 0 0 +-5.921 2.527 -1.746 0 0 0 0 0 0 0 +-5.907 2.499 -1.74 0 0 0 0 0 0 0 +-5.892 2.471 -1.733 0 0 0 0 0 0 0 +-5.91 2.457 -1.736 0 0 0 0 0 0 0 +-6.162 1.652 -1.73 0 0 0 0 0 0 0 +-6.199 1.641 -1.739 0 0 0 0 0 0 0 +-6.225 1.638 -1.746 0 0 0 0 0 0 0 +-6.236 1.62 -1.748 0 0 0 0 0 0 0 +-6.249 1.602 -1.75 0 0 0 0 0 0 0 +-6.259 1.584 -1.752 0 0 0 0 0 0 0 +-6.26 1.563 -1.751 0 0 0 0 0 0 0 +-6.269 1.544 -1.752 0 0 0 0 0 0 0 +-6.276 1.525 -1.753 0 0 0 0 0 0 0 +-6.269 1.513 -1.75 0 0 0 0 0 0 0 +-6.285 1.496 -1.753 0 0 0 0 0 0 0 +-6.299 1.478 -1.756 0 0 0 0 0 0 0 +-6.285 1.454 -1.75 0 0 0 0 0 0 0 +-6.3 1.437 -1.754 0 0 0 0 0 0 0 +-6.301 1.416 -1.753 0 0 0 0 0 0 0 +-6.298 1.395 -1.75 0 0 0 0 0 0 0 +-6.3 1.385 -1.75 0 0 0 0 0 0 0 +-6.318 1.368 -1.754 0 0 0 0 0 0 0 +-6.318 1.348 -1.753 0 0 0 0 0 0 0 +-6.319 1.327 -1.752 0 0 0 0 0 0 0 +-6.317 1.306 -1.75 0 0 0 0 0 0 0 +-6.316 1.285 -1.749 0 0 0 0 0 0 0 +-6.321 1.265 -1.749 0 0 0 0 0 0 0 +-6.327 1.256 -1.75 0 0 0 0 0 0 0 +-6.333 1.237 -1.751 0 0 0 0 0 0 0 +-6.333 1.216 -1.75 0 0 0 0 0 0 0 +-6.324 1.194 -1.746 0 0 0 0 0 0 0 +-6.331 1.175 -1.747 0 0 0 0 0 0 0 +-6.342 1.156 -1.749 0 0 0 0 0 0 0 +-6.355 1.138 -1.752 0 0 0 0 0 0 0 +-6.346 1.126 -1.749 0 0 0 0 0 0 0 +-6.349 1.106 -1.749 0 0 0 0 0 0 0 +-6.357 1.087 -1.75 0 0 0 0 0 0 0 +-6.352 1.065 -1.748 0 0 0 0 0 0 0 +-6.36 1.046 -1.749 0 0 0 0 0 0 0 +-6.368 1.027 -1.75 0 0 0 0 0 0 0 +-6.358 1.005 -1.746 0 0 0 0 0 0 0 +-6.373 0.987 -1.75 0 0 0 0 0 0 0 +-6.369 0.976 -1.748 0 0 0 0 0 0 0 +-6.37 0.955 -1.748 0 0 0 0 0 0 0 +-6.371 0.935 -1.747 0 0 0 0 0 0 0 +-6.385 0.917 -1.75 0 0 0 0 0 0 0 +-6.386 0.896 -1.75 0 0 0 0 0 0 0 +-6.374 0.874 -1.745 0 0 0 0 0 0 0 +-6.378 0.854 -1.746 0 0 0 0 0 0 0 +-6.389 0.846 -1.749 0 0 0 0 0 0 0 +-6.38 0.824 -1.745 0 0 0 0 0 0 0 +-6.398 0.806 -1.75 0 0 0 0 0 0 0 +-6.391 0.785 -1.747 0 0 0 0 0 0 0 +-6.394 0.765 -1.747 0 0 0 0 0 0 0 +-6.392 0.744 -1.746 0 0 0 0 0 0 0 +-6.398 0.724 -1.747 0 0 0 0 0 0 0 +-6.392 0.714 -1.745 0 0 0 0 0 0 0 +-6.411 0.695 -1.75 0 0 0 0 0 0 0 +-6.411 0.675 -1.749 0 0 0 0 0 0 0 +-6.408 0.654 -1.748 0 0 0 0 0 0 0 +-6.402 0.633 -1.745 0 0 0 0 0 0 0 +-6.418 0.615 -1.749 0 0 0 0 0 0 0 +-6.418 0.594 -1.749 0 0 0 0 0 0 0 +-6.418 0.584 -1.749 0 0 0 0 0 0 0 +-6.428 0.565 -1.751 0 0 0 0 0 0 0 +-6.428 0.544 -1.75 0 0 0 0 0 0 0 +-6.719 0.546 -1.834 0 0 0 0 0 0 0 +-6.703 0.524 -1.829 0 0 0 0 0 0 0 +-6.705 0.503 -1.829 0 0 0 0 0 0 0 +-6.712 0.482 -1.831 0 0 0 0 0 0 0 +-6.706 0.461 -1.829 0 0 0 0 0 0 0 +-6.707 0.44 -1.829 0 0 0 0 0 0 0 +-6.729 0.43 -1.835 0 0 0 0 0 0 0 +-6.726 0.409 -1.834 0 0 0 0 0 0 0 +-6.718 0.387 -1.831 0 0 0 0 0 0 0 +-6.714 0.366 -1.829 0 0 0 0 0 0 0 +-6.726 0.345 -1.833 0 0 0 0 0 0 0 +-6.729 0.324 -1.833 0 0 0 0 0 0 0 +-6.724 0.303 -1.832 0 0 0 0 0 0 0 +-6.731 0.293 -1.833 0 0 0 0 0 0 0 +-6.716 0.271 -1.829 0 0 0 0 0 0 0 +-6.723 0.25 -1.831 0 0 0 0 0 0 0 +-6.725 0.229 -1.831 0 0 0 0 0 0 0 +-6.73 0.208 -1.832 0 0 0 0 0 0 0 +-6.744 0.187 -1.836 0 0 0 0 0 0 0 +-6.721 0.165 -1.829 0 0 0 0 0 0 0 +-6.733 0.155 -1.833 0 0 0 0 0 0 0 +-6.728 0.134 -1.831 0 0 0 0 0 0 0 +-6.728 0.113 -1.831 0 0 0 0 0 0 0 +-6.719 0.092 -1.828 0 0 0 0 0 0 0 +-6.737 0.071 -1.833 0 0 0 0 0 0 0 +-6.733 0.049 -1.832 0 0 0 0 0 0 0 +-6.743 0.028 -1.835 0 0 0 0 0 0 0 +-6.739 0.018 -1.834 0 0 0 0 0 0 0 +-6.733 -0.004 -1.832 0 0 0 0 0 0 0 +-6.725 -0.025 -1.83 0 0 0 0 0 0 0 +-6.719 -0.046 -1.828 0 0 0 0 0 0 0 +-6.739 -0.067 -1.834 0 0 0 0 0 0 0 +-6.738 -0.088 -1.834 0 0 0 0 0 0 0 +-6.732 -0.109 -1.832 0 0 0 0 0 0 0 +-6.736 -0.12 -1.833 0 0 0 0 0 0 0 +-6.726 -0.141 -1.831 0 0 0 0 0 0 0 +-6.729 -0.162 -1.832 0 0 0 0 0 0 0 +-6.731 -0.183 -1.832 0 0 0 0 0 0 0 +-6.74 -0.205 -1.835 0 0 0 0 0 0 0 +-6.739 -0.226 -1.835 0 0 0 0 0 0 0 +-6.734 -0.247 -1.834 0 0 0 0 0 0 0 +-6.726 -0.268 -1.832 0 0 0 0 0 0 0 +-6.731 -0.279 -1.833 0 0 0 0 0 0 0 +-6.723 -0.299 -1.831 0 0 0 0 0 0 0 +-6.729 -0.321 -1.833 0 0 0 0 0 0 0 +-6.721 -0.342 -1.831 0 0 0 0 0 0 0 +-6.735 -0.364 -1.836 0 0 0 0 0 0 0 +-6.722 -0.384 -1.832 0 0 0 0 0 0 0 +-6.721 -0.405 -1.832 0 0 0 0 0 0 0 +-6.718 -0.416 -1.832 0 0 0 0 0 0 0 +-6.717 -0.437 -1.832 0 0 0 0 0 0 0 +-6.716 -0.458 -1.832 0 0 0 0 0 0 0 +-6.706 -0.478 -1.829 0 0 0 0 0 0 0 +-6.703 -0.499 -1.829 0 0 0 0 0 0 0 +-6.703 -0.52 -1.829 0 0 0 0 0 0 0 +-6.707 -0.542 -1.831 0 0 0 0 0 0 0 +-6.703 -0.552 -1.83 0 0 0 0 0 0 0 +-6.714 -0.574 -1.834 0 0 0 0 0 0 0 +-6.695 -0.594 -1.829 0 0 0 0 0 0 0 +-6.707 -0.616 -1.833 0 0 0 0 0 0 0 +-6.709 -0.638 -1.834 0 0 0 0 0 0 0 +-6.684 -0.656 -1.827 0 0 0 0 0 0 0 +-6.695 -0.679 -1.831 0 0 0 0 0 0 0 +-6.688 -0.689 -1.829 0 0 0 0 0 0 0 +-6.684 -0.71 -1.829 0 0 0 0 0 0 0 +-6.689 -0.731 -1.831 0 0 0 0 0 0 0 +-6.698 -0.754 -1.834 0 0 0 0 0 0 0 +-6.669 -0.772 -1.827 0 0 0 0 0 0 0 +-6.673 -0.793 -1.828 0 0 0 0 0 0 0 +-6.676 -0.815 -1.83 0 0 0 0 0 0 0 +-6.671 -0.825 -1.829 0 0 0 0 0 0 0 +-6.664 -0.845 -1.828 0 0 0 0 0 0 0 +-6.677 -0.868 -1.832 0 0 0 0 0 0 0 +-6.67 -0.889 -1.831 0 0 0 0 0 0 0 +-6.664 -0.909 -1.83 0 0 0 0 0 0 0 +-6.657 -0.93 -1.829 0 0 0 0 0 0 0 +-6.65 -0.95 -1.828 0 0 0 0 0 0 0 +-6.643 -0.96 -1.826 0 0 0 0 0 0 0 +-6.655 -0.983 -1.831 0 0 0 0 0 0 0 +-6.65 -1.003 -1.83 0 0 0 0 0 0 0 +-6.653 -1.025 -1.832 0 0 0 0 0 0 0 +-6.63 -1.043 -1.826 0 0 0 0 0 0 0 +-6.635 -1.065 -1.828 0 0 0 0 0 0 0 +-6.639 -1.087 -1.831 0 0 0 0 0 0 0 +-6.643 -1.099 -1.832 0 0 0 0 0 0 0 +-6.626 -1.117 -1.828 0 0 0 0 0 0 0 +-6.623 -1.138 -1.828 0 0 0 0 0 0 0 +-6.617 -1.158 -1.828 0 0 0 0 0 0 0 +-6.617 -1.18 -1.829 0 0 0 0 0 0 0 +-6.61 -1.2 -1.828 0 0 0 0 0 0 0 +-6.613 -1.222 -1.83 0 0 0 0 0 0 0 +-6.604 -1.242 -1.828 0 0 0 0 0 0 0 +-6.615 -1.255 -1.832 0 0 0 0 0 0 0 +-6.607 -1.275 -1.831 0 0 0 0 0 0 0 +-6.601 -1.295 -1.831 0 0 0 0 0 0 0 +-6.601 -1.317 -1.832 0 0 0 0 0 0 0 +-6.601 -1.338 -1.833 0 0 0 0 0 0 0 +-6.593 -1.358 -1.832 0 0 0 0 0 0 0 +-6.592 -1.38 -1.833 0 0 0 0 0 0 0 +-6.586 -1.389 -1.832 0 0 0 0 0 0 0 +-6.589 -1.411 -1.834 0 0 0 0 0 0 0 +-6.574 -1.43 -1.831 0 0 0 0 0 0 0 +-6.573 -1.451 -1.832 0 0 0 0 0 0 0 +-6.57 -1.472 -1.832 0 0 0 0 0 0 0 +-6.564 -1.492 -1.832 0 0 0 0 0 0 0 +-6.572 -1.516 -1.836 0 0 0 0 0 0 0 +-6.568 -1.526 -1.835 0 0 0 0 0 0 0 +-6.554 -1.544 -1.832 0 0 0 0 0 0 0 +-6.552 -1.566 -1.833 0 0 0 0 0 0 0 +-6.551 -1.587 -1.834 0 0 0 0 0 0 0 +-6.544 -1.607 -1.834 0 0 0 0 0 0 0 +-6.549 -1.63 -1.837 0 0 0 0 0 0 0 +-6.538 -1.65 -1.835 0 0 0 0 0 0 0 +-6.539 -1.661 -1.836 0 0 0 0 0 0 0 +-6.532 -1.681 -1.836 0 0 0 0 0 0 0 +-6.525 -1.701 -1.835 0 0 0 0 0 0 0 +-6.527 -1.723 -1.837 0 0 0 0 0 0 0 +-6.525 -1.745 -1.838 0 0 0 0 0 0 0 +-6.523 -1.766 -1.839 0 0 0 0 0 0 0 +-6.529 -1.79 -1.843 0 0 0 0 0 0 0 +-6.522 -1.799 -1.842 0 0 0 0 0 0 0 +-6.515 -1.819 -1.841 0 0 0 0 0 0 0 +-6.513 -1.841 -1.842 0 0 0 0 0 0 0 +-6.501 -1.859 -1.841 0 0 0 0 0 0 0 +-6.505 -1.883 -1.843 0 0 0 0 0 0 0 +-6.506 -1.905 -1.846 0 0 0 0 0 0 0 +-6.491 -1.923 -1.843 0 0 0 0 0 0 0 +-6.486 -1.932 -1.842 0 0 0 0 0 0 0 +-6.483 -1.954 -1.843 0 0 0 0 0 0 0 +-6.483 -1.976 -1.845 0 0 0 0 0 0 0 +-6.475 -1.996 -1.845 0 0 0 0 0 0 0 +-6.472 -2.017 -1.846 0 0 0 0 0 0 0 +-6.464 -2.037 -1.845 0 0 0 0 0 0 0 +-6.445 -2.053 -1.841 0 0 0 0 0 0 0 +-6.449 -2.066 -1.843 0 0 0 0 0 0 0 +-6.431 -2.082 -1.84 0 0 0 0 0 0 0 +-5.981 -2.899 -1.807 0 0 0 0 0 0 0 +-5.979 -2.921 -1.809 0 0 0 0 0 0 0 +-6.009 -2.947 -1.821 0 0 0 0 0 0 0 +-5.981 -2.957 -1.814 0 0 0 0 0 0 0 +-5.985 -2.983 -1.819 0 0 0 0 0 0 0 +-5.982 -3.005 -1.821 0 0 0 0 0 0 0 +-5.97 -3.022 -1.82 0 0 0 0 0 0 0 +-5.955 -3.038 -1.818 0 0 0 0 0 0 0 +-5.949 -3.058 -1.819 0 0 0 0 0 0 0 +-5.939 -3.065 -1.818 0 0 0 0 0 0 0 +-5.933 -3.085 -1.819 0 0 0 0 0 0 0 +-5.918 -3.101 -1.817 0 0 0 0 0 0 0 +-5.91 -3.121 -1.818 0 0 0 0 0 0 0 +-5.905 -3.142 -1.819 0 0 0 0 0 0 0 +-5.893 -3.16 -1.819 0 0 0 0 0 0 0 +-5.882 -3.177 -1.818 0 0 0 0 0 0 0 +-5.882 -3.189 -1.82 0 0 0 0 0 0 0 +-5.865 -3.204 -1.818 0 0 0 0 0 0 0 +-5.846 -3.218 -1.815 0 0 0 0 0 0 0 +-5.841 -3.239 -1.817 0 0 0 0 0 0 0 +-5.829 -3.256 -1.816 0 0 0 0 0 0 0 +-5.823 -3.277 -1.817 0 0 0 0 0 0 0 +-5.809 -3.293 -1.816 0 0 0 0 0 0 0 +-5.795 -3.309 -1.815 0 0 0 0 0 0 0 +-5.802 -3.325 -1.819 0 0 0 0 0 0 0 +-5.786 -3.34 -1.817 0 0 0 0 0 0 0 +-5.779 -3.361 -1.818 0 0 0 0 0 0 0 +-5.757 -3.372 -1.814 0 0 0 0 0 0 0 +-5.754 -3.395 -1.817 0 0 0 0 0 0 0 +-5.739 -3.41 -1.816 0 0 0 0 0 0 0 +-5.728 -3.428 -1.816 0 0 0 0 0 0 0 +-5.718 -3.434 -1.814 0 0 0 0 0 0 0 +-5.71 -3.454 -1.815 0 0 0 0 0 0 0 +-5.703 -3.474 -1.816 0 0 0 0 0 0 0 +-5.697 -3.495 -1.818 0 0 0 0 0 0 0 +-5.668 -3.501 -1.812 0 0 0 0 0 0 0 +-5.675 -3.53 -1.818 0 0 0 0 0 0 0 +-5.655 -3.543 -1.815 0 0 0 0 0 0 0 +-5.655 -3.555 -1.817 0 0 0 0 0 0 0 +-5.637 -3.569 -1.814 0 0 0 0 0 0 0 +-5.627 -3.587 -1.815 0 0 0 0 0 0 0 +-5.614 -3.604 -1.814 0 0 0 0 0 0 0 +-5.601 -3.621 -1.814 0 0 0 0 0 0 0 +-5.592 -3.639 -1.814 0 0 0 0 0 0 0 +-5.58 -3.657 -1.814 0 0 0 0 0 0 0 +-5.568 -3.661 -1.812 0 0 0 0 0 0 0 +-5.55 -3.675 -1.81 0 0 0 0 0 0 0 +-5.551 -3.701 -1.814 0 0 0 0 0 0 0 +-5.527 -3.709 -1.81 0 0 0 0 0 0 0 +-5.523 -3.732 -1.813 0 0 0 0 0 0 0 +-5.511 -3.749 -1.813 0 0 0 0 0 0 0 +-5.492 -3.761 -1.81 0 0 0 0 0 0 0 +-5.508 -3.785 -1.818 0 0 0 0 0 0 0 +-5.486 -3.796 -1.814 0 0 0 0 0 0 0 +-5.47 -3.81 -1.813 0 0 0 0 0 0 0 +-5.463 -3.83 -1.814 0 0 0 0 0 0 0 +-5.447 -3.845 -1.813 0 0 0 0 0 0 0 +-5.435 -3.862 -1.813 0 0 0 0 0 0 0 +-5.429 -3.884 -1.816 0 0 0 0 0 0 0 +-5.408 -3.881 -1.81 0 0 0 0 0 0 0 +-5.408 -3.907 -1.814 0 0 0 0 0 0 0 +-5.4 -3.928 -1.816 0 0 0 0 0 0 0 +-5.386 -3.943 -1.816 0 0 0 0 0 0 0 +-5.362 -3.951 -1.811 0 0 0 0 0 0 0 +-5.363 -3.978 -1.816 0 0 0 0 0 0 0 +-5.34 -3.987 -1.812 0 0 0 0 0 0 0 +-5.343 -4.002 -1.816 0 0 0 0 0 0 0 +-5.335 -4.023 -1.817 0 0 0 0 0 0 0 +-5.314 -4.033 -1.814 0 0 0 0 0 0 0 +-5.305 -4.052 -1.816 0 0 0 0 0 0 0 +-5.299 -4.075 -1.818 0 0 0 0 0 0 0 +-5.285 -4.09 -1.818 0 0 0 0 0 0 0 +-5.266 -4.102 -1.816 0 0 0 0 0 0 0 +-5.268 -4.131 -1.821 0 0 0 0 0 0 0 +-5.254 -4.133 -1.818 0 0 0 0 0 0 0 +-5.229 -4.14 -1.814 0 0 0 0 0 0 0 +-5.225 -4.164 -1.817 0 0 0 0 0 0 0 +-5.19 -4.162 -1.809 0 0 0 0 0 0 0 +-5.209 -4.205 -1.821 0 0 0 0 0 0 0 +-5.208 -4.231 -1.826 0 0 0 0 0 0 0 +-5.202 -4.253 -1.828 0 0 0 0 0 0 0 +-5.201 -4.266 -1.831 0 0 0 0 0 0 0 +-5.176 -4.273 -1.826 0 0 0 0 0 0 0 +-5.117 -4.251 -1.809 0 0 0 0 0 0 0 +-5.113 -4.274 -1.812 0 0 0 0 0 0 0 +-5.096 -4.288 -1.811 0 0 0 0 0 0 0 +-5.08 -4.301 -1.81 0 0 0 0 0 0 0 +-5.071 -4.321 -1.812 0 0 0 0 0 0 0 +-5.061 -4.327 -1.811 0 0 0 0 0 0 0 +-5.034 -4.331 -1.806 0 0 0 0 0 0 0 +-5.029 -4.354 -1.809 0 0 0 0 0 0 0 +-5.015 -4.37 -1.809 0 0 0 0 0 0 0 +-4.995 -4.38 -1.806 0 0 0 0 0 0 0 +-4.984 -4.398 -1.807 0 0 0 0 0 0 0 +-4.966 -4.41 -1.806 0 0 0 0 0 0 0 +-4.961 -4.42 -1.807 0 0 0 0 0 0 0 +-4.942 -4.43 -1.804 0 0 0 0 0 0 0 +-4.928 -4.446 -1.804 0 0 0 0 0 0 0 +-4.915 -4.463 -1.805 0 0 0 0 0 0 0 +-4.897 -4.474 -1.803 0 0 0 0 0 0 0 +-4.884 -4.491 -1.804 0 0 0 0 0 0 0 +-4.862 -4.498 -1.8 0 0 0 0 0 0 0 +-4.86 -4.511 -1.803 0 0 0 0 0 0 0 +-4.843 -4.524 -1.802 0 0 0 0 0 0 0 +-4.828 -4.538 -1.801 0 0 0 0 0 0 0 +-4.822 -4.561 -1.804 0 0 0 0 0 0 0 +-4.805 -4.573 -1.803 0 0 0 0 0 0 0 +-4.783 -4.582 -1.8 0 0 0 0 0 0 0 +-4.768 -4.595 -1.8 0 0 0 0 0 0 0 +-4.753 -4.596 -1.797 0 0 0 0 0 0 0 +-4.742 -4.614 -1.798 0 0 0 0 0 0 0 +-4.73 -4.631 -1.799 0 0 0 0 0 0 0 +-4.711 -4.642 -1.798 0 0 0 0 0 0 0 +-4.686 -4.646 -1.793 0 0 0 0 0 0 0 +-4.682 -4.672 -1.798 0 0 0 0 0 0 0 +-4.662 -4.681 -1.795 0 0 0 0 0 0 0 +-4.651 -4.684 -1.794 0 0 0 0 0 0 0 +-4.641 -4.704 -1.796 0 0 0 0 0 0 0 +-4.617 -4.709 -1.792 0 0 0 0 0 0 0 +-4.605 -4.726 -1.793 0 0 0 0 0 0 0 +-4.597 -4.748 -1.796 0 0 0 0 0 0 0 +-4.579 -4.759 -1.795 0 0 0 0 0 0 0 +-4.557 -4.767 -1.792 0 0 0 0 0 0 0 +-4.545 -4.768 -1.79 0 0 0 0 0 0 0 +-4.548 -4.802 -1.798 0 0 0 0 0 0 0 +-4.526 -4.809 -1.795 0 0 0 0 0 0 0 +-4.501 -4.812 -1.79 0 0 0 0 0 0 0 +-4.488 -4.829 -1.792 0 0 0 0 0 0 0 +-4.474 -4.845 -1.792 0 0 0 0 0 0 0 +-4.455 -4.854 -1.79 0 0 0 0 0 0 0 +-4.457 -4.871 -1.794 0 0 0 0 0 0 0 +-4.435 -4.878 -1.792 0 0 0 0 0 0 0 +-4.42 -4.892 -1.792 0 0 0 0 0 0 0 +-4.399 -4.9 -1.789 0 0 0 0 0 0 0 +-4.384 -4.914 -1.789 0 0 0 0 0 0 0 +-4.371 -4.931 -1.79 0 0 0 0 0 0 0 +-4.353 -4.942 -1.789 0 0 0 0 0 0 0 +-4.347 -4.951 -1.79 0 0 0 0 0 0 0 +-4.328 -4.961 -1.789 0 0 0 0 0 0 0 +-4.318 -4.98 -1.791 0 0 0 0 0 0 0 +-4.302 -4.993 -1.791 0 0 0 0 0 0 0 +-4.275 -4.994 -1.786 0 0 0 0 0 0 0 +-4.264 -5.013 -1.788 0 0 0 0 0 0 0 +-4.247 -5.025 -1.788 0 0 0 0 0 0 0 +-4.239 -5.032 -1.788 0 0 0 0 0 0 0 +-4.222 -5.043 -1.787 0 0 0 0 0 0 0 +-4.21 -5.061 -1.789 0 0 0 0 0 0 0 +-4.197 -5.077 -1.79 0 0 0 0 0 0 0 +-4.183 -5.093 -1.791 0 0 0 0 0 0 0 +-4.159 -5.096 -1.787 0 0 0 0 0 0 0 +-4.145 -5.112 -1.788 0 0 0 0 0 0 0 +-4.13 -5.11 -1.785 0 0 0 0 0 0 0 +-4.116 -5.126 -1.786 0 0 0 0 0 0 0 +-4.101 -5.14 -1.787 0 0 0 0 0 0 0 +-4.092 -5.162 -1.79 0 0 0 0 0 0 0 +-4.065 -5.161 -1.785 0 0 0 0 0 0 0 +-4.056 -5.183 -1.788 0 0 0 0 0 0 0 +-4.031 -5.185 -1.784 0 0 0 0 0 0 0 +-4.017 -5.201 -1.785 0 0 0 0 0 0 0 +-4.005 -5.201 -1.783 0 0 0 0 0 0 0 +-3.996 -5.224 -1.787 0 0 0 0 0 0 0 +-3.972 -5.226 -1.783 0 0 0 0 0 0 0 +-3.958 -5.242 -1.784 0 0 0 0 0 0 0 +-3.942 -5.255 -1.785 0 0 0 0 0 0 0 +-3.927 -5.269 -1.785 0 0 0 0 0 0 0 +-3.91 -5.282 -1.785 0 0 0 0 0 0 0 +-3.904 -5.291 -1.787 0 0 0 0 0 0 0 +-3.886 -5.3 -1.785 0 0 0 0 0 0 0 +-3.876 -5.322 -1.789 0 0 0 0 0 0 0 +-3.858 -5.332 -1.788 0 0 0 0 0 0 0 +-3.848 -5.354 -1.792 0 0 0 0 0 0 0 +-3.842 -5.381 -1.797 0 0 0 0 0 0 0 +-3.828 -5.398 -1.799 0 0 0 0 0 0 0 +-3.818 -5.401 -1.798 0 0 0 0 0 0 0 +-3.806 -5.421 -1.8 0 0 0 0 0 0 0 +-3.788 -5.431 -1.8 0 0 0 0 0 0 0 +-3.77 -5.441 -1.799 0 0 0 0 0 0 0 +-3.764 -5.469 -1.805 0 0 0 0 0 0 0 +-3.743 -5.476 -1.803 0 0 0 0 0 0 0 +-3.701 -5.451 -1.79 0 0 0 0 0 0 0 +-3.698 -5.465 -1.793 0 0 0 0 0 0 0 +-3.703 -5.51 -1.805 0 0 0 0 0 0 0 +-3.702 -5.546 -1.813 0 0 0 0 0 0 0 +-3.691 -5.567 -1.817 0 0 0 0 0 0 0 +-3.647 -5.538 -1.803 0 0 0 0 0 0 0 +-3.621 -5.537 -1.798 0 0 0 0 0 0 0 +-3.609 -5.556 -1.801 0 0 0 0 0 0 0 +-3.601 -5.564 -1.802 0 0 0 0 0 0 0 +-3.567 -5.549 -1.793 0 0 0 0 0 0 0 +-3.552 -5.563 -1.794 0 0 0 0 0 0 0 +-3.537 -5.579 -1.795 0 0 0 0 0 0 0 +-3.51 -5.574 -1.79 0 0 0 0 0 0 0 +-3.491 -5.584 -1.789 0 0 0 0 0 0 0 +-3.476 -5.598 -1.79 0 0 0 0 0 0 0 +-3.454 -5.582 -1.783 0 0 0 0 0 0 0 +-3.441 -5.601 -1.786 0 0 0 0 0 0 0 +-3.43 -5.623 -1.79 0 0 0 0 0 0 0 +-3.399 -5.611 -1.782 0 0 0 0 0 0 0 +-3.383 -5.625 -1.783 0 0 0 0 0 0 0 +-3.373 -5.649 -1.788 0 0 0 0 0 0 0 +-3.349 -5.648 -1.784 0 0 0 0 0 0 0 +-3.34 -5.653 -1.784 0 0 0 0 0 0 0 +-3.326 -5.67 -1.786 0 0 0 0 0 0 0 +-3.302 -5.671 -1.783 0 0 0 0 0 0 0 +-3.287 -5.684 -1.784 0 0 0 0 0 0 0 +-3.271 -5.7 -1.785 0 0 0 0 0 0 0 +-3.243 -5.691 -1.779 0 0 0 0 0 0 0 +-3.23 -5.71 -1.782 0 0 0 0 0 0 0 +-3.229 -5.73 -1.787 0 0 0 0 0 0 0 +-3.205 -5.728 -1.783 0 0 0 0 0 0 0 +-3.189 -5.742 -1.784 0 0 0 0 0 0 0 +-3.168 -5.747 -1.783 0 0 0 0 0 0 0 +-3.148 -5.753 -1.782 0 0 0 0 0 0 0 +-3.129 -5.762 -1.781 0 0 0 0 0 0 0 +-3.115 -5.778 -1.783 0 0 0 0 0 0 0 +-3.103 -5.778 -1.782 0 0 0 0 0 0 0 +-3.088 -5.794 -1.784 0 0 0 0 0 0 0 +-3.064 -5.792 -1.78 0 0 0 0 0 0 0 +-3.051 -5.812 -1.783 0 0 0 0 0 0 0 +-3.028 -5.813 -1.78 0 0 0 0 0 0 0 +-3.016 -5.834 -1.784 0 0 0 0 0 0 0 +-2.997 -5.842 -1.784 0 0 0 0 0 0 0 +-2.986 -5.843 -1.783 0 0 0 0 0 0 0 +-2.963 -5.844 -1.78 0 0 0 0 0 0 0 +-2.947 -5.857 -1.781 0 0 0 0 0 0 0 +-2.926 -5.863 -1.78 0 0 0 0 0 0 0 +-2.91 -5.875 -1.781 0 0 0 0 0 0 0 +-2.894 -5.89 -1.783 0 0 0 0 0 0 0 +-2.874 -5.895 -1.782 0 0 0 0 0 0 0 +-2.861 -5.893 -1.779 0 0 0 0 0 0 0 +-2.843 -5.904 -1.78 0 0 0 0 0 0 0 +-2.823 -5.909 -1.779 0 0 0 0 0 0 0 +-2.809 -5.926 -1.782 0 0 0 0 0 0 0 +-2.785 -5.925 -1.778 0 0 0 0 0 0 0 +-2.769 -5.939 -1.78 0 0 0 0 0 0 0 +-2.754 -5.956 -1.783 0 0 0 0 0 0 0 +-2.745 -5.961 -1.783 0 0 0 0 0 0 0 +-2.72 -5.957 -1.779 0 0 0 0 0 0 0 +-2.701 -5.964 -1.778 0 0 0 0 0 0 0 +-2.68 -5.967 -1.777 0 0 0 0 0 0 0 +-2.667 -5.989 -1.781 0 0 0 0 0 0 0 +-2.648 -5.996 -1.78 0 0 0 0 0 0 0 +-2.626 -5.997 -1.778 0 0 0 0 0 0 0 +-2.608 -6.007 -1.779 0 0 0 0 0 0 0 +-2.599 -6.013 -1.779 0 0 0 0 0 0 0 +-2.581 -6.023 -1.78 0 0 0 0 0 0 0 +-2.56 -6.026 -1.778 0 0 0 0 0 0 0 +-2.542 -6.035 -1.779 0 0 0 0 0 0 0 +-2.526 -6.052 -1.782 0 0 0 0 0 0 0 +-2.504 -6.053 -1.779 0 0 0 0 0 0 0 +-2.491 -6.075 -1.784 0 0 0 0 0 0 0 +-2.48 -6.075 -1.783 0 0 0 0 0 0 0 +-2.456 -6.071 -1.779 0 0 0 0 0 0 0 +-2.436 -6.077 -1.778 0 0 0 0 0 0 0 +-2.419 -6.09 -1.78 0 0 0 0 0 0 0 +-2.404 -6.106 -1.783 0 0 0 0 0 0 0 +-2.386 -6.119 -1.784 0 0 0 0 0 0 0 +-2.38 -6.132 -1.787 0 0 0 0 0 0 0 +-2.384 -6.2 -1.806 0 0 0 0 0 0 0 +-2.323 -6.098 -1.772 0 0 0 0 0 0 0 +-2.323 -6.156 -1.788 0 0 0 0 0 0 0 +-2.272 -6.136 -1.777 0 0 0 0 0 0 0 +-2.256 -6.154 -1.78 0 0 0 0 0 0 0 +-2.232 -6.148 -1.777 0 0 0 0 0 0 0 +-2.223 -6.152 -1.777 0 0 0 0 0 0 0 +-2.195 -6.133 -1.769 0 0 0 0 0 0 0 +-2.171 -6.127 -1.765 0 0 0 0 0 0 0 +-2.153 -6.14 -1.766 0 0 0 0 0 0 0 +-2.135 -6.148 -1.767 0 0 0 0 0 0 0 +-2.112 -6.144 -1.764 0 0 0 0 0 0 0 +-2.091 -6.145 -1.762 0 0 0 0 0 0 0 +-2.076 -6.134 -1.758 0 0 0 0 0 0 0 +-2.057 -6.142 -1.758 0 0 0 0 0 0 0 +-2.038 -6.149 -1.758 0 0 0 0 0 0 0 +-2.018 -6.153 -1.758 0 0 0 0 0 0 0 +-1.999 -6.161 -1.758 0 0 0 0 0 0 0 +-1.975 -6.151 -1.753 0 0 0 0 0 0 0 +-1.955 -6.157 -1.753 0 0 0 0 0 0 0 +-1.944 -6.155 -1.751 0 0 0 0 0 0 0 +-1.923 -6.155 -1.75 0 0 0 0 0 0 0 +-1.903 -6.16 -1.749 0 0 0 0 0 0 0 +-1.885 -6.171 -1.751 0 0 0 0 0 0 0 +-1.864 -6.17 -1.749 0 0 0 0 0 0 0 +-1.843 -6.172 -1.748 0 0 0 0 0 0 0 +-1.823 -6.174 -1.746 0 0 0 0 0 0 0 +-1.814 -6.178 -1.747 0 0 0 0 0 0 0 +-1.794 -6.182 -1.746 0 0 0 0 0 0 0 +-1.773 -6.182 -1.745 0 0 0 0 0 0 0 +-1.753 -6.186 -1.744 0 0 0 0 0 0 0 +-1.733 -6.19 -1.744 0 0 0 0 0 0 0 +-1.713 -6.195 -1.744 0 0 0 0 0 0 0 +-1.696 -6.208 -1.746 0 0 0 0 0 0 0 +-1.683 -6.199 -1.743 0 0 0 0 0 0 0 +-1.662 -6.199 -1.741 0 0 0 0 0 0 0 +-1.645 -6.214 -1.744 0 0 0 0 0 0 0 +-1.621 -6.202 -1.739 0 0 0 0 0 0 0 +-1.601 -6.203 -1.738 0 0 0 0 0 0 0 +-1.584 -6.219 -1.741 0 0 0 0 0 0 0 +-1.56 -6.206 -1.735 0 0 0 0 0 0 0 +-1.552 -6.216 -1.738 0 0 0 0 0 0 0 +-1.534 -6.226 -1.739 0 0 0 0 0 0 0 +-1.511 -6.216 -1.735 0 0 0 0 0 0 0 +-1.49 -6.215 -1.733 0 0 0 0 0 0 0 +-1.472 -6.227 -1.735 0 0 0 0 0 0 0 +-1.45 -6.221 -1.732 0 0 0 0 0 0 0 +-1.434 -6.242 -1.737 0 0 0 0 0 0 0 +-1.423 -6.239 -1.735 0 0 0 0 0 0 0 +-1.401 -6.232 -1.732 0 0 0 0 0 0 0 +-1.383 -6.244 -1.734 0 0 0 0 0 0 0 +-1.362 -6.239 -1.731 0 0 0 0 0 0 0 +-1.34 -6.235 -1.729 0 0 0 0 0 0 0 +-1.323 -6.249 -1.732 0 0 0 0 0 0 0 +-1.304 -6.257 -1.733 0 0 0 0 0 0 0 +-1.294 -6.259 -1.733 0 0 0 0 0 0 0 +-1.274 -6.263 -1.733 0 0 0 0 0 0 0 +-1.258 -6.284 -1.738 0 0 0 0 0 0 0 +-1.235 -6.269 -1.733 0 0 0 0 0 0 0 +-1.215 -6.273 -1.733 0 0 0 0 0 0 0 +-1.193 -6.267 -1.73 0 0 0 0 0 0 0 +-1.174 -6.275 -1.731 0 0 0 0 0 0 0 +-1.164 -6.273 -1.73 0 0 0 0 0 0 0 +-1.146 -6.284 -1.732 0 0 0 0 0 0 0 +-1.125 -6.285 -1.731 0 0 0 0 0 0 0 +-1.105 -6.283 -1.73 0 0 0 0 0 0 0 +-1.086 -6.294 -1.732 0 0 0 0 0 0 0 +-1.067 -6.303 -1.734 0 0 0 0 0 0 0 +-1.048 -6.307 -1.734 0 0 0 0 0 0 0 +-1.039 -6.316 -1.736 0 0 0 0 0 0 0 +-1.018 -6.312 -1.734 0 0 0 0 0 0 0 +-0.999 -6.318 -1.735 0 0 0 0 0 0 0 +-0.978 -6.316 -1.733 0 0 0 0 0 0 0 +-0.958 -6.321 -1.734 0 0 0 0 0 0 0 +-0.94 -6.335 -1.737 0 0 0 0 0 0 0 +-0.919 -6.329 -1.734 0 0 0 0 0 0 0 +-0.91 -6.334 -1.735 0 0 0 0 0 0 0 +-0.889 -6.333 -1.734 0 0 0 0 0 0 0 +-0.869 -6.332 -1.733 0 0 0 0 0 0 0 +-0.851 -6.348 -1.737 0 0 0 0 0 0 0 +-0.83 -6.343 -1.735 0 0 0 0 0 0 0 +-0.812 -6.363 -1.74 0 0 0 0 0 0 0 +-0.79 -6.352 -1.736 0 0 0 0 0 0 0 +-0.78 -6.355 -1.736 0 0 0 0 0 0 0 +-0.76 -6.35 -1.734 0 0 0 0 0 0 0 +-0.741 -6.36 -1.736 0 0 0 0 0 0 0 +-0.721 -6.362 -1.736 0 0 0 0 0 0 0 +-0.702 -6.376 -1.74 0 0 0 0 0 0 0 +-0.682 -6.376 -1.739 0 0 0 0 0 0 0 +-0.661 -6.369 -1.736 0 0 0 0 0 0 0 +-0.651 -6.375 -1.738 0 0 0 0 0 0 0 +-0.631 -6.379 -1.739 0 0 0 0 0 0 0 +-0.611 -6.381 -1.739 0 0 0 0 0 0 0 +-0.592 -6.389 -1.74 0 0 0 0 0 0 0 +-0.571 -6.379 -1.737 0 0 0 0 0 0 0 +-0.551 -6.387 -1.739 0 0 0 0 0 0 0 +-0.531 -6.39 -1.739 0 0 0 0 0 0 0 +-0.521 -6.391 -1.739 0 0 0 0 0 0 0 +-0.501 -6.395 -1.74 0 0 0 0 0 0 0 +-0.482 -6.408 -1.743 0 0 0 0 0 0 0 +-0.461 -6.401 -1.741 0 0 0 0 0 0 0 +-0.441 -6.397 -1.739 0 0 0 0 0 0 0 +-0.421 -6.402 -1.74 0 0 0 0 0 0 0 +-0.401 -6.4 -1.739 0 0 0 0 0 0 0 +-0.381 -6.411 -1.742 0 0 0 0 0 0 0 +-0.371 -6.409 -1.741 0 0 0 0 0 0 0 +-0.351 -6.418 -1.744 0 0 0 0 0 0 0 +-0.33 -6.41 -1.741 0 0 0 0 0 0 0 +-0.31 -6.409 -1.74 0 0 0 0 0 0 0 +-0.29 -6.413 -1.741 0 0 0 0 0 0 0 +-0.27 -6.416 -1.742 0 0 0 0 0 0 0 +-0.25 -6.43 -1.746 0 0 0 0 0 0 0 +-0.24 -6.431 -1.746 0 0 0 0 0 0 0 +-0.22 -6.435 -1.747 0 0 0 0 0 0 0 +-0.2 -6.426 -1.744 0 0 0 0 0 0 0 +-0.18 -6.427 -1.744 0 0 0 0 0 0 0 +-0.159 -6.428 -1.744 0 0 0 0 0 0 0 +-0.139 -6.443 -1.749 0 0 0 0 0 0 0 +-0.129 -6.434 -1.746 0 0 0 0 0 0 0 +-0.109 -6.436 -1.746 0 0 0 0 0 0 0 +-0.089 -6.446 -1.749 0 0 0 0 0 0 0 +-0.069 -6.437 -1.746 0 0 0 0 0 0 0 +-0.048 -6.443 -1.748 0 0 0 0 0 0 0 +-0.028 -6.458 -1.753 0 0 0 0 0 0 0 +-0.008 -6.445 -1.749 0 0 0 0 0 0 0 +0.013 -6.468 -1.755 0 0 0 0 0 0 0 +0.023 -6.455 -1.751 0 0 0 0 0 0 0 +0.043 -6.452 -1.751 0 0 0 0 0 0 0 +0.063 -6.46 -1.753 0 0 0 0 0 0 0 +0.084 -6.473 -1.757 0 0 0 0 0 0 0 +0.104 -6.461 -1.754 0 0 0 0 0 0 0 +0.124 -6.471 -1.756 0 0 0 0 0 0 0 +0.144 -6.463 -1.754 0 0 0 0 0 0 0 +0.155 -6.468 -1.756 0 0 0 0 0 0 0 +0.175 -6.469 -1.756 0 0 0 0 0 0 0 +0.196 -6.473 -1.758 0 0 0 0 0 0 0 +0.216 -6.476 -1.759 0 0 0 0 0 0 0 +0.237 -6.477 -1.759 0 0 0 0 0 0 0 +0.257 -6.469 -1.757 0 0 0 0 0 0 0 +0.277 -6.479 -1.76 0 0 0 0 0 0 0 +0.288 -6.489 -1.763 0 0 0 0 0 0 0 +0.308 -6.484 -1.762 0 0 0 0 0 0 0 +0.328 -6.473 -1.759 0 0 0 0 0 0 0 +0.349 -6.484 -1.763 0 0 0 0 0 0 0 +0.369 -6.473 -1.76 0 0 0 0 0 0 0 +0.389 -6.474 -1.76 0 0 0 0 0 0 0 +0.41 -6.478 -1.762 0 0 0 0 0 0 0 +0.421 -6.491 -1.766 0 0 0 0 0 0 0 +0.44 -6.47 -1.76 0 0 0 0 0 0 0 +0.462 -6.484 -1.765 0 0 0 0 0 0 0 +0.48 -6.462 -1.759 0 0 0 0 0 0 0 +0.502 -6.479 -1.764 0 0 0 0 0 0 0 +0.521 -6.464 -1.76 0 0 0 0 0 0 0 +0.544 -6.489 -1.768 0 0 0 0 0 0 0 +0.551 -6.456 -1.759 0 0 0 0 0 0 0 +0.572 -6.462 -1.761 0 0 0 0 0 0 0 +0.594 -6.472 -1.764 0 0 0 0 0 0 0 +0.612 -6.452 -1.759 0 0 0 0 0 0 0 +0.633 -6.454 -1.76 0 0 0 0 0 0 0 +0.656 -6.475 -1.767 0 0 0 0 0 0 0 +0.675 -6.46 -1.763 0 0 0 0 0 0 0 +0.685 -6.457 -1.763 0 0 0 0 0 0 0 +0.705 -6.453 -1.762 0 0 0 0 0 0 0 +0.724 -6.447 -1.761 0 0 0 0 0 0 0 +0.745 -6.446 -1.761 0 0 0 0 0 0 0 +0.766 -6.45 -1.763 0 0 0 0 0 0 0 +0.785 -6.441 -1.761 0 0 0 0 0 0 0 +0.807 -6.45 -1.765 0 0 0 0 0 0 0 +0.819 -6.461 -1.768 0 0 0 0 0 0 0 +0.837 -6.445 -1.764 0 0 0 0 0 0 0 +0.858 -6.448 -1.766 0 0 0 0 0 0 0 +0.879 -6.447 -1.766 0 0 0 0 0 0 0 +0.9 -6.452 -1.769 0 0 0 0 0 0 0 +0.92 -6.443 -1.767 0 0 0 0 0 0 0 +0.942 -6.455 -1.772 0 0 0 0 0 0 0 +0.952 -6.456 -1.772 0 0 0 0 0 0 0 +0.971 -6.441 -1.769 0 0 0 0 0 0 0 +0.993 -6.448 -1.772 0 0 0 0 0 0 0 +1.012 -6.437 -1.769 0 0 0 0 0 0 0 +1.032 -6.434 -1.769 0 0 0 0 0 0 0 +1.055 -6.446 -1.774 0 0 0 0 0 0 0 +1.072 -6.427 -1.769 0 0 0 0 0 0 0 +1.085 -6.439 -1.773 0 0 0 0 0 0 0 +1.106 -6.439 -1.774 0 0 0 0 0 0 0 +1.126 -6.436 -1.774 0 0 0 0 0 0 0 +1.146 -6.434 -1.775 0 0 0 0 0 0 0 +1.167 -6.434 -1.776 0 0 0 0 0 0 0 +1.185 -6.417 -1.772 0 0 0 0 0 0 0 +1.208 -6.428 -1.777 0 0 0 0 0 0 0 +1.22 -6.434 -1.779 0 0 0 0 0 0 0 +1.238 -6.423 -1.777 0 0 0 0 0 0 0 +1.261 -6.432 -1.78 0 0 0 0 0 0 0 +1.279 -6.417 -1.777 0 0 0 0 0 0 0 +1.3 -6.416 -1.778 0 0 0 0 0 0 0 +1.321 -6.418 -1.78 0 0 0 0 0 0 0 +1.342 -6.416 -1.78 0 0 0 0 0 0 0 +1.352 -6.415 -1.781 0 0 0 0 0 0 0 +1.373 -6.413 -1.782 0 0 0 0 0 0 0 +1.391 -6.399 -1.779 0 0 0 0 0 0 0 +1.416 -6.417 -1.785 0 0 0 0 0 0 0 +1.435 -6.407 -1.784 0 0 0 0 0 0 0 +1.457 -6.41 -1.786 0 0 0 0 0 0 0 +1.478 -6.411 -1.788 0 0 0 0 0 0 0 +1.486 -6.398 -1.784 0 0 0 0 0 0 0 +1.509 -6.406 -1.788 0 0 0 0 0 0 0 +1.527 -6.394 -1.786 0 0 0 0 0 0 0 +1.55 -6.398 -1.789 0 0 0 0 0 0 0 +1.57 -6.395 -1.789 0 0 0 0 0 0 0 +1.59 -6.388 -1.789 0 0 0 0 0 0 0 +1.613 -6.396 -1.793 0 0 0 0 0 0 0 +1.621 -6.385 -1.79 0 0 0 0 0 0 0 +1.643 -6.387 -1.792 0 0 0 0 0 0 0 +1.664 -6.385 -1.793 0 0 0 0 0 0 0 +1.682 -6.375 -1.792 0 0 0 0 0 0 0 +1.705 -6.377 -1.794 0 0 0 0 0 0 0 +1.726 -6.377 -1.795 0 0 0 0 0 0 0 +1.744 -6.362 -1.793 0 0 0 0 0 0 0 +1.757 -6.37 -1.796 0 0 0 0 0 0 0 +1.777 -6.367 -1.797 0 0 0 0 0 0 0 +1.794 -6.352 -1.794 0 0 0 0 0 0 0 +1.815 -6.348 -1.794 0 0 0 0 0 0 0 +1.837 -6.35 -1.797 0 0 0 0 0 0 0 +1.858 -6.346 -1.797 0 0 0 0 0 0 0 +1.879 -6.344 -1.798 0 0 0 0 0 0 0 +1.889 -6.342 -1.799 0 0 0 0 0 0 0 +1.912 -6.348 -1.802 0 0 0 0 0 0 0 +1.929 -6.332 -1.799 0 0 0 0 0 0 0 +1.952 -6.334 -1.802 0 0 0 0 0 0 0 +1.971 -6.326 -1.801 0 0 0 0 0 0 0 +1.99 -6.318 -1.8 0 0 0 0 0 0 0 +2.012 -6.317 -1.802 0 0 0 0 0 0 0 +2.025 -6.324 -1.806 0 0 0 0 0 0 0 +2.043 -6.313 -1.804 0 0 0 0 0 0 0 +2.066 -6.313 -1.806 0 0 0 0 0 0 0 +2.085 -6.307 -1.806 0 0 0 0 0 0 0 +2.106 -6.304 -1.807 0 0 0 0 0 0 0 +2.126 -6.296 -1.807 0 0 0 0 0 0 0 +2.145 -6.289 -1.807 0 0 0 0 0 0 0 +2.156 -6.287 -1.807 0 0 0 0 0 0 0 +2.177 -6.284 -1.808 0 0 0 0 0 0 0 +2.199 -6.284 -1.811 0 0 0 0 0 0 0 +2.22 -6.279 -1.811 0 0 0 0 0 0 0 +2.237 -6.267 -1.809 0 0 0 0 0 0 0 +2.258 -6.262 -1.81 0 0 0 0 0 0 0 +2.282 -6.267 -1.814 0 0 0 0 0 0 0 +2.291 -6.262 -1.813 0 0 0 0 0 0 0 +2.314 -6.264 -1.816 0 0 0 0 0 0 0 +2.334 -6.256 -1.816 0 0 0 0 0 0 0 +2.353 -6.247 -1.816 0 0 0 0 0 0 0 +2.381 -6.263 -1.823 0 0 0 0 0 0 0 +2.397 -6.245 -1.819 0 0 0 0 0 0 0 +2.421 -6.25 -1.823 0 0 0 0 0 0 0 +2.427 -6.235 -1.82 0 0 0 0 0 0 0 +2.452 -6.242 -1.824 0 0 0 0 0 0 0 +2.468 -6.223 -1.821 0 0 0 0 0 0 0 +2.492 -6.228 -1.825 0 0 0 0 0 0 0 +2.505 -6.204 -1.82 0 0 0 0 0 0 0 +2.54 -6.234 -1.832 0 0 0 0 0 0 0 +2.557 -6.22 -1.83 0 0 0 0 0 0 0 +2.569 -6.22 -1.831 0 0 0 0 0 0 0 +2.578 -6.189 -1.824 0 0 0 0 0 0 0 +2.596 -6.175 -1.822 0 0 0 0 0 0 0 +2.617 -6.17 -1.823 0 0 0 0 0 0 0 +2.64 -6.171 -1.826 0 0 0 0 0 0 0 +2.658 -6.159 -1.825 0 0 0 0 0 0 0 +2.675 -6.147 -1.824 0 0 0 0 0 0 0 +2.685 -6.143 -1.824 0 0 0 0 0 0 0 +2.707 -6.14 -1.826 0 0 0 0 0 0 0 +2.725 -6.13 -1.825 0 0 0 0 0 0 0 +2.747 -6.126 -1.827 0 0 0 0 0 0 0 +2.767 -6.119 -1.827 0 0 0 0 0 0 0 +2.785 -6.109 -1.827 0 0 0 0 0 0 0 +2.802 -6.095 -1.825 0 0 0 0 0 0 0 +2.825 -6.12 -1.834 0 0 0 0 0 0 0 +2.837 -6.096 -1.829 0 0 0 0 0 0 0 +2.865 -6.106 -1.836 0 0 0 0 0 0 0 +2.895 -6.119 -1.843 0 0 0 0 0 0 0 +2.928 -6.138 -1.852 0 0 0 0 0 0 0 +2.946 -6.127 -1.851 0 0 0 0 0 0 0 +2.978 -6.143 -1.86 0 0 0 0 0 0 0 +2.994 -6.151 -1.863 0 0 0 0 0 0 0 +3.01 -6.136 -1.862 0 0 0 0 0 0 0 +3.342 -5.894 -1.845 0 0 0 0 0 0 0 +3.343 -5.875 -1.84 0 0 0 0 0 0 0 +3.381 -5.898 -1.851 0 0 0 0 0 0 0 +3.377 -5.849 -1.838 0 0 0 0 0 0 0 +3.396 -5.839 -1.838 0 0 0 0 0 0 0 +3.402 -5.808 -1.832 0 0 0 0 0 0 0 +3.426 -5.807 -1.835 0 0 0 0 0 0 0 +3.44 -5.788 -1.832 0 0 0 0 0 0 0 +3.447 -5.78 -1.831 0 0 0 0 0 0 0 +3.46 -5.76 -1.828 0 0 0 0 0 0 0 +3.481 -5.754 -1.83 0 0 0 0 0 0 0 +3.504 -5.752 -1.833 0 0 0 0 0 0 0 +3.516 -5.731 -1.829 0 0 0 0 0 0 0 +3.538 -5.726 -1.832 0 0 0 0 0 0 0 +3.542 -5.713 -1.829 0 0 0 0 0 0 0 +3.562 -5.705 -1.83 0 0 0 0 0 0 0 +3.583 -5.698 -1.832 0 0 0 0 0 0 0 +3.599 -5.684 -1.831 0 0 0 0 0 0 0 +3.619 -5.676 -1.832 0 0 0 0 0 0 0 +3.631 -5.656 -1.829 0 0 0 0 0 0 0 +3.65 -5.646 -1.829 0 0 0 0 0 0 0 +3.657 -5.637 -1.828 0 0 0 0 0 0 0 +3.68 -5.634 -1.831 0 0 0 0 0 0 0 +3.696 -5.621 -1.831 0 0 0 0 0 0 0 +3.704 -5.595 -1.826 0 0 0 0 0 0 0 +3.726 -5.59 -1.828 0 0 0 0 0 0 0 +3.749 -5.586 -1.831 0 0 0 0 0 0 0 +3.768 -5.576 -1.831 0 0 0 0 0 0 0 +3.771 -5.562 -1.828 0 0 0 0 0 0 0 +3.793 -5.556 -1.831 0 0 0 0 0 0 0 +3.807 -5.539 -1.829 0 0 0 0 0 0 0 +3.823 -5.526 -1.828 0 0 0 0 0 0 0 +3.842 -5.515 -1.829 0 0 0 0 0 0 0 +3.86 -5.505 -1.829 0 0 0 0 0 0 0 +3.879 -5.494 -1.83 0 0 0 0 0 0 0 +3.888 -5.471 -1.826 0 0 0 0 0 0 0 +3.902 -5.473 -1.829 0 0 0 0 0 0 0 +3.923 -5.465 -1.831 0 0 0 0 0 0 0 +3.944 -5.459 -1.833 0 0 0 0 0 0 0 +3.95 -5.431 -1.827 0 0 0 0 0 0 0 +3.976 -5.431 -1.832 0 0 0 0 0 0 0 +3.987 -5.409 -1.828 0 0 0 0 0 0 0 +4.01 -5.406 -1.832 0 0 0 0 0 0 0 +4.014 -5.394 -1.829 0 0 0 0 0 0 0 +4.041 -5.393 -1.834 0 0 0 0 0 0 0 +4.047 -5.367 -1.829 0 0 0 0 0 0 0 +4.07 -5.362 -1.832 0 0 0 0 0 0 0 +4.081 -5.341 -1.829 0 0 0 0 0 0 0 +4.094 -5.324 -1.827 0 0 0 0 0 0 0 +4.115 -5.317 -1.829 0 0 0 0 0 0 0 +4.135 -5.326 -1.835 0 0 0 0 0 0 0 +4.141 -5.299 -1.83 0 0 0 0 0 0 0 +4.156 -5.283 -1.829 0 0 0 0 0 0 0 +4.172 -5.27 -1.829 0 0 0 0 0 0 0 +4.188 -5.255 -1.828 0 0 0 0 0 0 0 +4.211 -5.251 -1.832 0 0 0 0 0 0 0 +4.21 -5.232 -1.827 0 0 0 0 0 0 0 +4.229 -5.222 -1.828 0 0 0 0 0 0 0 +4.246 -5.21 -1.829 0 0 0 0 0 0 0 +4.263 -5.197 -1.829 0 0 0 0 0 0 0 +4.278 -5.182 -1.828 0 0 0 0 0 0 0 +4.294 -5.169 -1.828 0 0 0 0 0 0 0 +4.31 -5.155 -1.828 0 0 0 0 0 0 0 +4.326 -5.142 -1.828 0 0 0 0 0 0 0 +4.336 -5.136 -1.829 0 0 0 0 0 0 0 +4.347 -5.117 -1.827 0 0 0 0 0 0 0 +4.359 -5.099 -1.825 0 0 0 0 0 0 0 +4.365 -5.073 -1.821 0 0 0 0 0 0 0 +4.396 -5.077 -1.827 0 0 0 0 0 0 0 +4.406 -5.056 -1.824 0 0 0 0 0 0 0 +4.428 -5.049 -1.827 0 0 0 0 0 0 0 +4.435 -5.041 -1.827 0 0 0 0 0 0 0 +4.445 -5.021 -1.824 0 0 0 0 0 0 0 +4.461 -5.007 -1.824 0 0 0 0 0 0 0 +4.483 -5 -1.827 0 0 0 0 0 0 0 +4.489 -4.975 -1.823 0 0 0 0 0 0 0 +4.507 -4.963 -1.824 0 0 0 0 0 0 0 +4.518 -4.945 -1.822 0 0 0 0 0 0 0 +4.522 -4.934 -1.821 0 0 0 0 0 0 0 +4.54 -4.922 -1.822 0 0 0 0 0 0 0 +4.552 -4.904 -1.82 0 0 0 0 0 0 0 +4.563 -4.885 -1.818 0 0 0 0 0 0 0 +4.576 -4.868 -1.817 0 0 0 0 0 0 0 +4.593 -4.855 -1.818 0 0 0 0 0 0 0 +4.614 -4.848 -1.821 0 0 0 0 0 0 0 +4.621 -4.839 -1.82 0 0 0 0 0 0 0 +4.631 -4.819 -1.818 0 0 0 0 0 0 0 +4.644 -4.803 -1.817 0 0 0 0 0 0 0 +4.662 -4.791 -1.818 0 0 0 0 0 0 0 +4.668 -4.767 -1.814 0 0 0 0 0 0 0 +4.687 -4.756 -1.816 0 0 0 0 0 0 0 +4.693 -4.748 -1.816 0 0 0 0 0 0 0 +4.71 -4.735 -1.817 0 0 0 0 0 0 0 +4.714 -4.71 -1.812 0 0 0 0 0 0 0 +4.733 -4.699 -1.814 0 0 0 0 0 0 0 +4.751 -4.687 -1.815 0 0 0 0 0 0 0 +4.76 -4.667 -1.813 0 0 0 0 0 0 0 +4.775 -4.652 -1.813 0 0 0 0 0 0 0 +4.791 -4.638 -1.813 0 0 0 0 0 0 0 +4.79 -4.622 -1.81 0 0 0 0 0 0 0 +4.801 -4.605 -1.809 0 0 0 0 0 0 0 +4.818 -4.592 -1.81 0 0 0 0 0 0 0 +4.829 -4.573 -1.808 0 0 0 0 0 0 0 +4.836 -4.551 -1.806 0 0 0 0 0 0 0 +4.857 -4.543 -1.808 0 0 0 0 0 0 0 +4.862 -4.518 -1.804 0 0 0 0 0 0 0 +4.87 -4.512 -1.805 0 0 0 0 0 0 0 +4.891 -4.503 -1.808 0 0 0 0 0 0 0 +4.898 -4.481 -1.805 0 0 0 0 0 0 0 +4.918 -4.471 -1.807 0 0 0 0 0 0 0 +4.926 -4.45 -1.805 0 0 0 0 0 0 0 +4.94 -4.435 -1.805 0 0 0 0 0 0 0 +4.956 -4.421 -1.806 0 0 0 0 0 0 0 +4.956 -4.406 -1.803 0 0 0 0 0 0 0 +4.962 -4.385 -1.8 0 0 0 0 0 0 0 +4.983 -4.375 -1.803 0 0 0 0 0 0 0 +5.008 -4.37 -1.807 0 0 0 0 0 0 0 +5.009 -4.343 -1.802 0 0 0 0 0 0 0 +5.017 -4.322 -1.8 0 0 0 0 0 0 0 +5.039 -4.313 -1.803 0 0 0 0 0 0 0 +5.033 -4.294 -1.798 0 0 0 0 0 0 0 +5.055 -4.286 -1.802 0 0 0 0 0 0 0 +5.07 -4.271 -1.802 0 0 0 0 0 0 0 +5.071 -4.246 -1.798 0 0 0 0 0 0 0 +5.08 -4.226 -1.796 0 0 0 0 0 0 0 +5.101 -4.216 -1.799 0 0 0 0 0 0 0 +5.111 -4.198 -1.798 0 0 0 0 0 0 0 +5.118 -4.19 -1.798 0 0 0 0 0 0 0 +5.127 -4.17 -1.796 0 0 0 0 0 0 0 +5.149 -4.161 -1.799 0 0 0 0 0 0 0 +5.156 -4.14 -1.797 0 0 0 0 0 0 0 +5.173 -4.127 -1.799 0 0 0 0 0 0 0 +5.175 -4.103 -1.795 0 0 0 0 0 0 0 +5.2 -4.096 -1.799 0 0 0 0 0 0 0 +5.21 -4.09 -1.8 0 0 0 0 0 0 0 +5.205 -4.06 -1.794 0 0 0 0 0 0 0 +5.222 -4.047 -1.795 0 0 0 0 0 0 0 +5.224 -4.022 -1.792 0 0 0 0 0 0 0 +5.239 -4.008 -1.793 0 0 0 0 0 0 0 +5.255 -3.994 -1.794 0 0 0 0 0 0 0 +5.271 -3.98 -1.795 0 0 0 0 0 0 0 +5.269 -3.966 -1.792 0 0 0 0 0 0 0 +5.279 -3.947 -1.791 0 0 0 0 0 0 0 +5.285 -3.926 -1.789 0 0 0 0 0 0 0 +5.3 -3.911 -1.79 0 0 0 0 0 0 0 +5.311 -3.893 -1.789 0 0 0 0 0 0 0 +5.322 -3.876 -1.789 0 0 0 0 0 0 0 +5.321 -3.85 -1.784 0 0 0 0 0 0 0 +5.343 -3.853 -1.79 0 0 0 0 0 0 0 +5.344 -3.828 -1.786 0 0 0 0 0 0 0 +5.354 -3.81 -1.785 0 0 0 0 0 0 0 +5.355 -3.786 -1.782 0 0 0 0 0 0 0 +5.383 -3.78 -1.787 0 0 0 0 0 0 0 +5.384 -3.755 -1.783 0 0 0 0 0 0 0 +5.394 -3.737 -1.783 0 0 0 0 0 0 0 +5.401 -3.73 -1.783 0 0 0 0 0 0 0 +5.405 -3.707 -1.78 0 0 0 0 0 0 0 +5.43 -3.699 -1.785 0 0 0 0 0 0 0 +5.441 -3.682 -1.785 0 0 0 0 0 0 0 +5.438 -3.655 -1.78 0 0 0 0 0 0 0 +5.453 -3.64 -1.781 0 0 0 0 0 0 0 +5.464 -3.623 -1.781 0 0 0 0 0 0 0 +5.468 -3.613 -1.78 0 0 0 0 0 0 0 +5.488 -3.601 -1.783 0 0 0 0 0 0 0 +5.501 -3.585 -1.784 0 0 0 0 0 0 0 +5.509 -3.566 -1.783 0 0 0 0 0 0 0 +5.509 -3.541 -1.779 0 0 0 0 0 0 0 +5.516 -3.522 -1.778 0 0 0 0 0 0 0 +5.521 -3.501 -1.775 0 0 0 0 0 0 0 +5.538 -3.499 -1.779 0 0 0 0 0 0 0 +5.555 -3.486 -1.782 0 0 0 0 0 0 0 +5.563 -3.466 -1.78 0 0 0 0 0 0 0 +5.566 -3.444 -1.778 0 0 0 0 0 0 0 +5.575 -3.425 -1.777 0 0 0 0 0 0 0 +5.592 -3.412 -1.779 0 0 0 0 0 0 0 +5.599 -3.392 -1.778 0 0 0 0 0 0 0 +5.602 -3.381 -1.777 0 0 0 0 0 0 0 +5.606 -3.36 -1.775 0 0 0 0 0 0 0 +5.619 -3.344 -1.776 0 0 0 0 0 0 0 +5.633 -3.328 -1.777 0 0 0 0 0 0 0 +5.634 -3.305 -1.774 0 0 0 0 0 0 0 +5.652 -3.292 -1.777 0 0 0 0 0 0 0 +5.663 -3.274 -1.777 0 0 0 0 0 0 0 +5.648 -3.254 -1.77 0 0 0 0 0 0 0 +5.665 -3.24 -1.772 0 0 0 0 0 0 0 +5.671 -3.22 -1.771 0 0 0 0 0 0 0 +5.68 -3.201 -1.77 0 0 0 0 0 0 0 +5.695 -3.186 -1.772 0 0 0 0 0 0 0 +5.717 -3.175 -1.776 0 0 0 0 0 0 0 +5.727 -3.157 -1.776 0 0 0 0 0 0 0 +5.716 -3.14 -1.771 0 0 0 0 0 0 0 +5.73 -3.123 -1.772 0 0 0 0 0 0 0 +5.741 -3.106 -1.773 0 0 0 0 0 0 0 +5.747 -3.087 -1.772 0 0 0 0 0 0 0 +5.759 -3.069 -1.772 0 0 0 0 0 0 0 +5.773 -3.054 -1.774 0 0 0 0 0 0 0 +5.778 -3.033 -1.772 0 0 0 0 0 0 0 +5.778 -3.021 -1.77 0 0 0 0 0 0 0 +5.796 -3.008 -1.773 0 0 0 0 0 0 0 +5.812 -2.993 -1.775 0 0 0 0 0 0 0 +5.835 -2.982 -1.78 0 0 0 0 0 0 0 +5.839 -2.961 -1.778 0 0 0 0 0 0 0 +5.85 -2.943 -1.779 0 0 0 0 0 0 0 +5.866 -2.928 -1.781 0 0 0 0 0 0 0 +5.869 -2.918 -1.78 0 0 0 0 0 0 0 +5.875 -2.898 -1.779 0 0 0 0 0 0 0 +5.891 -2.883 -1.782 0 0 0 0 0 0 0 +5.886 -2.858 -1.777 0 0 0 0 0 0 0 +5.904 -2.843 -1.78 0 0 0 0 0 0 0 +5.902 -2.82 -1.777 0 0 0 0 0 0 0 +5.902 -2.797 -1.774 0 0 0 0 0 0 0 +5.87 -2.771 -1.762 0 0 0 0 0 0 0 +5.894 -2.76 -1.767 0 0 0 0 0 0 0 +5.924 -2.751 -1.774 0 0 0 0 0 0 0 +5.926 -2.729 -1.772 0 0 0 0 0 0 0 +5.953 -2.719 -1.778 0 0 0 0 0 0 0 +5.939 -2.69 -1.77 0 0 0 0 0 0 0 +5.977 -2.685 -1.78 0 0 0 0 0 0 0 +5.999 -2.683 -1.785 0 0 0 0 0 0 0 +6.002 -2.662 -1.784 0 0 0 0 0 0 0 +5.993 -2.635 -1.778 0 0 0 0 0 0 0 +5.999 -2.616 -1.778 0 0 0 0 0 0 0 +6.008 -2.597 -1.778 0 0 0 0 0 0 0 +6.014 -2.577 -1.777 0 0 0 0 0 0 0 +6.027 -2.56 -1.779 0 0 0 0 0 0 0 +6.007 -2.541 -1.771 0 0 0 0 0 0 0 +6.015 -2.522 -1.771 0 0 0 0 0 0 0 +6.022 -2.503 -1.771 0 0 0 0 0 0 0 +6.016 -2.478 -1.766 0 0 0 0 0 0 0 +6.026 -2.46 -1.767 0 0 0 0 0 0 0 +6.046 -2.446 -1.771 0 0 0 0 0 0 0 +6.023 -2.415 -1.761 0 0 0 0 0 0 0 +6.036 -2.398 -1.763 0 0 0 0 0 0 0 +6.047 -2.391 -1.765 0 0 0 0 0 0 0 +6.049 -2.37 -1.764 0 0 0 0 0 0 0 +6.055 -2.351 -1.763 0 0 0 0 0 0 0 +6.067 -2.334 -1.765 0 0 0 0 0 0 0 +6.076 -2.315 -1.765 0 0 0 0 0 0 0 +6.073 -2.292 -1.762 0 0 0 0 0 0 0 +6.075 -2.271 -1.76 0 0 0 0 0 0 0 +6.082 -2.263 -1.761 0 0 0 0 0 0 0 +6.085 -2.242 -1.76 0 0 0 0 0 0 0 +6.089 -2.222 -1.759 0 0 0 0 0 0 0 +6.094 -2.202 -1.759 0 0 0 0 0 0 0 +6.095 -2.181 -1.757 0 0 0 0 0 0 0 +6.098 -2.161 -1.756 0 0 0 0 0 0 0 +6.102 -2.151 -1.756 0 0 0 0 0 0 0 +6.107 -2.131 -1.755 0 0 0 0 0 0 0 +6.106 -2.11 -1.753 0 0 0 0 0 0 0 +6.107 -2.089 -1.751 0 0 0 0 0 0 0 +6.108 -2.068 -1.75 0 0 0 0 0 0 0 +6.12 -2.05 -1.751 0 0 0 0 0 0 0 +6.127 -2.031 -1.751 0 0 0 0 0 0 0 +6.133 -2.012 -1.751 0 0 0 0 0 0 0 +6.145 -2.005 -1.754 0 0 0 0 0 0 0 +6.139 -1.982 -1.75 0 0 0 0 0 0 0 +6.152 -1.965 -1.753 0 0 0 0 0 0 0 +6.151 -1.943 -1.75 0 0 0 0 0 0 0 +6.144 -1.92 -1.746 0 0 0 0 0 0 0 +6.147 -1.899 -1.745 0 0 0 0 0 0 0 +6.158 -1.882 -1.747 0 0 0 0 0 0 0 +6.152 -1.869 -1.744 0 0 0 0 0 0 0 +6.154 -1.849 -1.743 0 0 0 0 0 0 0 +6.164 -1.83 -1.744 0 0 0 0 0 0 0 +6.175 -1.813 -1.746 0 0 0 0 0 0 0 +6.171 -1.791 -1.743 0 0 0 0 0 0 0 +6.182 -1.773 -1.745 0 0 0 0 0 0 0 +6.197 -1.756 -1.748 0 0 0 0 0 0 0 +6.185 -1.742 -1.743 0 0 0 0 0 0 0 +6.196 -1.724 -1.745 0 0 0 0 0 0 0 +6.198 -1.704 -1.744 0 0 0 0 0 0 0 +6.203 -1.684 -1.744 0 0 0 0 0 0 0 +6.216 -1.667 -1.746 0 0 0 0 0 0 0 +6.201 -1.642 -1.74 0 0 0 0 0 0 0 +6.215 -1.625 -1.743 0 0 0 0 0 0 0 +6.218 -1.615 -1.743 0 0 0 0 0 0 0 +6.215 -1.594 -1.74 0 0 0 0 0 0 0 +6.224 -1.575 -1.741 0 0 0 0 0 0 0 +6.238 -1.558 -1.744 0 0 0 0 0 0 0 +6.222 -1.533 -1.738 0 0 0 0 0 0 0 +6.225 -1.513 -1.738 0 0 0 0 0 0 0 +6.237 -1.495 -1.74 0 0 0 0 0 0 0 +6.236 -1.485 -1.739 0 0 0 0 0 0 0 +6.228 -1.462 -1.735 0 0 0 0 0 0 0 +6.255 -1.448 -1.741 0 0 0 0 0 0 0 +6.25 -1.426 -1.739 0 0 0 0 0 0 0 +6.26 -1.407 -1.74 0 0 0 0 0 0 0 +6.247 -1.384 -1.735 0 0 0 0 0 0 0 +6.252 -1.364 -1.735 0 0 0 0 0 0 0 +6.252 -1.354 -1.735 0 0 0 0 0 0 0 +6.258 -1.335 -1.735 0 0 0 0 0 0 0 +6.258 -1.314 -1.734 0 0 0 0 0 0 0 +6.261 -1.294 -1.734 0 0 0 0 0 0 0 +6.252 -1.272 -1.73 0 0 0 0 0 0 0 +6.263 -1.254 -1.732 0 0 0 0 0 0 0 +6.278 -1.236 -1.735 0 0 0 0 0 0 0 +6.273 -1.225 -1.733 0 0 0 0 0 0 0 +6.271 -1.204 -1.731 0 0 0 0 0 0 0 +6.278 -1.185 -1.733 0 0 0 0 0 0 0 +6.282 -1.166 -1.733 0 0 0 0 0 0 0 +6.282 -1.145 -1.731 0 0 0 0 0 0 0 +6.282 -1.125 -1.73 0 0 0 0 0 0 0 +6.306 -1.109 -1.736 0 0 0 0 0 0 0 +6.281 -1.094 -1.729 0 0 0 0 0 0 0 +6.3 -1.077 -1.733 0 0 0 0 0 0 0 +6.294 -1.056 -1.73 0 0 0 0 0 0 0 +6.291 -1.035 -1.729 0 0 0 0 0 0 0 +6.3 -1.016 -1.73 0 0 0 0 0 0 0 +6.3 -0.996 -1.729 0 0 0 0 0 0 0 +6.32 -0.979 -1.734 0 0 0 0 0 0 0 +6.298 -0.965 -1.727 0 0 0 0 0 0 0 +6.305 -0.946 -1.729 0 0 0 0 0 0 0 +6.318 -0.928 -1.731 0 0 0 0 0 0 0 +6.315 -0.907 -1.73 0 0 0 0 0 0 0 +6.342 -0.89 -1.737 0 0 0 0 0 0 0 +6.326 -0.868 -1.731 0 0 0 0 0 0 0 +6.336 -0.849 -1.734 0 0 0 0 0 0 0 +6.34 -0.839 -1.734 0 0 0 0 0 0 0 +6.338 -0.819 -1.733 0 0 0 0 0 0 0 +6.328 -0.797 -1.729 0 0 0 0 0 0 0 +6.344 -0.779 -1.733 0 0 0 0 0 0 0 +6.333 -0.758 -1.729 0 0 0 0 0 0 0 +6.341 -0.738 -1.731 0 0 0 0 0 0 0 +6.339 -0.718 -1.73 0 0 0 0 0 0 0 +6.342 -0.708 -1.73 0 0 0 0 0 0 0 +6.341 -0.688 -1.729 0 0 0 0 0 0 0 +6.343 -0.668 -1.729 0 0 0 0 0 0 0 +6.337 -0.647 -1.727 0 0 0 0 0 0 0 +6.341 -0.628 -1.727 0 0 0 0 0 0 0 +6.343 -0.608 -1.727 0 0 0 0 0 0 0 +6.328 -0.586 -1.722 0 0 0 0 0 0 0 +6.328 -0.576 -1.722 0 0 0 0 0 0 0 +6.338 -0.557 -1.725 0 0 0 0 0 0 0 +6.342 -0.537 -1.725 0 0 0 0 0 0 0 +6.349 -0.518 -1.727 0 0 0 0 0 0 0 +6.339 -0.497 -1.724 0 0 0 0 0 0 0 +6.341 -0.477 -1.724 0 0 0 0 0 0 0 +6.344 -0.457 -1.724 0 0 0 0 0 0 0 +6.347 -0.447 -1.725 0 0 0 0 0 0 0 +6.323 -0.426 -1.717 0 0 0 0 0 0 0 +6.334 -0.407 -1.72 0 0 0 0 0 0 0 +6.352 -0.388 -1.725 0 0 0 0 0 0 0 +6.342 -0.367 -1.722 0 0 0 0 0 0 0 +6.355 -0.348 -1.725 0 0 0 0 0 0 0 +6.364 -0.328 -1.727 0 0 0 0 0 0 0 +6.354 -0.318 -1.725 0 0 0 0 0 0 0 +6.342 -0.297 -1.721 0 0 0 0 0 0 0 +6.347 -0.277 -1.722 0 0 0 0 0 0 0 +6.351 -0.258 -1.723 0 0 0 0 0 0 0 +6.333 -0.237 -1.717 0 0 0 0 0 0 0 +6.338 -0.217 -1.719 0 0 0 0 0 0 0 +6.352 -0.198 -1.722 0 0 0 0 0 0 0 +6.348 -0.188 -1.721 0 0 0 0 0 0 0 +6.343 -0.168 -1.72 0 0 0 0 0 0 0 +6.34 -0.148 -1.719 0 0 0 0 0 0 0 +6.328 -0.127 -1.715 0 0 0 0 0 0 0 +6.354 -0.108 -1.722 0 0 0 0 0 0 0 +6.343 -0.088 -1.719 0 0 0 0 0 0 0 +6.358 -0.068 -1.724 0 0 0 0 0 0 0 +6.364 -0.058 -1.725 0 0 0 0 0 0 0 +6.345 -0.038 -1.72 0 0 0 0 0 0 0 +6.332 -0.018 -1.716 0 0 0 0 0 0 0 +6.171 0.013 -1.713 0 0 0 0 0 0 0 +6.186 0.023 -1.718 0 0 0 0 0 0 0 +6.188 0.042 -1.719 0 0 0 0 0 0 0 +6.176 0.061 -1.715 0 0 0 0 0 0 0 +6.178 0.081 -1.716 0 0 0 0 0 0 0 +6.181 0.1 -1.717 0 0 0 0 0 0 0 +6.173 0.12 -1.715 0 0 0 0 0 0 0 +6.169 0.139 -1.713 0 0 0 0 0 0 0 +6.173 0.149 -1.715 0 0 0 0 0 0 0 +6.168 0.168 -1.713 0 0 0 0 0 0 0 +6.172 0.188 -1.715 0 0 0 0 0 0 0 +6.156 0.206 -1.71 0 0 0 0 0 0 0 +6.176 0.227 -1.716 0 0 0 0 0 0 0 +6.166 0.246 -1.713 0 0 0 0 0 0 0 +6.155 0.265 -1.711 0 0 0 0 0 0 0 +6.161 0.274 -1.712 0 0 0 0 0 0 0 +6.162 0.294 -1.713 0 0 0 0 0 0 0 +6.161 0.313 -1.713 0 0 0 0 0 0 0 +6.148 0.332 -1.71 0 0 0 0 0 0 0 +6.151 0.352 -1.711 0 0 0 0 0 0 0 +6.16 0.371 -1.713 0 0 0 0 0 0 0 +6.154 0.391 -1.712 0 0 0 0 0 0 0 +6.142 0.4 -1.709 0 0 0 0 0 0 0 +6.143 0.419 -1.71 0 0 0 0 0 0 0 +6.153 0.439 -1.713 0 0 0 0 0 0 0 +6.148 0.458 -1.712 0 0 0 0 0 0 0 +6.145 0.477 -1.711 0 0 0 0 0 0 0 +6.143 0.497 -1.711 0 0 0 0 0 0 0 +6.141 0.516 -1.711 0 0 0 0 0 0 0 +6.127 0.524 -1.707 0 0 0 0 0 0 0 +6.148 0.546 -1.714 0 0 0 0 0 0 0 +6.143 0.565 -1.713 0 0 0 0 0 0 0 +6.13 0.583 -1.71 0 0 0 0 0 0 0 +6.147 0.604 -1.715 0 0 0 0 0 0 0 +6.164 0.625 -1.721 0 0 0 0 0 0 0 +6.147 0.643 -1.716 0 0 0 0 0 0 0 +6.155 0.653 -1.719 0 0 0 0 0 0 0 +6.134 0.671 -1.713 0 0 0 0 0 0 0 +6.117 0.688 -1.709 0 0 0 0 0 0 0 +6.124 0.709 -1.712 0 0 0 0 0 0 0 +6.11 0.727 -1.708 0 0 0 0 0 0 0 +6.104 0.745 -1.707 0 0 0 0 0 0 0 +6.108 0.765 -1.709 0 0 0 0 0 0 0 +6.105 0.775 -1.708 0 0 0 0 0 0 0 +6.1 0.794 -1.708 0 0 0 0 0 0 0 +6.088 0.811 -1.705 0 0 0 0 0 0 0 +6.091 0.831 -1.707 0 0 0 0 0 0 0 +6.09 0.851 -1.707 0 0 0 0 0 0 0 +6.101 0.872 -1.711 0 0 0 0 0 0 0 +6.083 0.889 -1.707 0 0 0 0 0 0 0 +6.082 0.898 -1.707 0 0 0 0 0 0 0 +6.077 0.917 -1.706 0 0 0 0 0 0 0 +6.082 0.937 -1.708 0 0 0 0 0 0 0 +6.073 0.956 -1.707 0 0 0 0 0 0 0 +6.066 0.974 -1.706 0 0 0 0 0 0 0 +6.065 0.993 -1.706 0 0 0 0 0 0 0 +6.062 1.012 -1.706 0 0 0 0 0 0 0 +6.056 1.021 -1.705 0 0 0 0 0 0 0 +6.057 1.041 -1.706 0 0 0 0 0 0 0 +6.046 1.059 -1.704 0 0 0 0 0 0 0 +6.054 1.08 -1.707 0 0 0 0 0 0 0 +6.043 1.097 -1.705 0 0 0 0 0 0 0 +6.045 1.117 -1.707 0 0 0 0 0 0 0 +6.047 1.137 -1.708 0 0 0 0 0 0 0 +6.048 1.147 -1.709 0 0 0 0 0 0 0 +6.042 1.166 -1.708 0 0 0 0 0 0 0 +6.04 1.185 -1.709 0 0 0 0 0 0 0 +6.023 1.202 -1.705 0 0 0 0 0 0 0 +6.019 1.22 -1.705 0 0 0 0 0 0 0 +6.017 1.24 -1.706 0 0 0 0 0 0 0 +6.015 1.259 -1.706 0 0 0 0 0 0 0 +6.025 1.271 -1.71 0 0 0 0 0 0 0 +6.021 1.29 -1.71 0 0 0 0 0 0 0 +6.002 1.305 -1.705 0 0 0 0 0 0 0 +6.02 1.329 -1.712 0 0 0 0 0 0 0 +6.014 1.348 -1.711 0 0 0 0 0 0 0 +6.025 1.37 -1.716 0 0 0 0 0 0 0 +5.994 1.383 -1.708 0 0 0 0 0 0 0 +6.003 1.405 -1.712 0 0 0 0 0 0 0 +5.987 1.411 -1.708 0 0 0 0 0 0 0 +5.994 1.433 -1.711 0 0 0 0 0 0 0 +5.986 1.45 -1.71 0 0 0 0 0 0 0 +5.976 1.468 -1.708 0 0 0 0 0 0 0 +5.979 1.489 -1.711 0 0 0 0 0 0 0 +5.97 1.506 -1.71 0 0 0 0 0 0 0 +5.977 1.518 -1.712 0 0 0 0 0 0 0 +5.972 1.537 -1.712 0 0 0 0 0 0 0 +5.962 1.554 -1.711 0 0 0 0 0 0 0 +5.974 1.577 -1.716 0 0 0 0 0 0 0 +5.95 1.591 -1.71 0 0 0 0 0 0 0 +5.956 1.613 -1.713 0 0 0 0 0 0 0 +5.947 1.63 -1.712 0 0 0 0 0 0 0 +5.949 1.641 -1.713 0 0 0 0 0 0 0 +5.936 1.657 -1.711 0 0 0 0 0 0 0 +5.936 1.678 -1.713 0 0 0 0 0 0 0 +5.916 1.692 -1.708 0 0 0 0 0 0 0 +5.92 1.713 -1.711 0 0 0 0 0 0 0 +5.915 1.732 -1.711 0 0 0 0 0 0 0 +5.904 1.749 -1.71 0 0 0 0 0 0 0 +5.914 1.762 -1.713 0 0 0 0 0 0 0 +5.912 1.782 -1.715 0 0 0 0 0 0 0 +5.895 1.797 -1.711 0 0 0 0 0 0 0 +5.899 1.818 -1.714 0 0 0 0 0 0 0 +5.889 1.836 -1.713 0 0 0 0 0 0 0 +5.889 1.856 -1.715 0 0 0 0 0 0 0 +5.883 1.874 -1.715 0 0 0 0 0 0 0 +5.875 1.892 -1.714 0 0 0 0 0 0 0 +5.867 1.9 -1.712 0 0 0 0 0 0 0 +5.87 1.921 -1.715 0 0 0 0 0 0 0 +5.851 1.935 -1.711 0 0 0 0 0 0 0 +5.845 1.954 -1.711 0 0 0 0 0 0 0 +5.835 1.971 -1.71 0 0 0 0 0 0 0 +5.844 1.994 -1.715 0 0 0 0 0 0 0 +5.834 2.011 -1.713 0 0 0 0 0 0 0 +5.823 2.018 -1.711 0 0 0 0 0 0 0 +5.813 2.035 -1.71 0 0 0 0 0 0 0 +5.816 2.056 -1.713 0 0 0 0 0 0 0 +5.82 2.078 -1.716 0 0 0 0 0 0 0 +5.812 2.096 -1.716 0 0 0 0 0 0 0 +5.804 2.114 -1.715 0 0 0 0 0 0 0 +5.795 2.121 -1.713 0 0 0 0 0 0 0 +5.801 2.143 -1.717 0 0 0 0 0 0 0 +5.78 2.156 -1.713 0 0 0 0 0 0 0 +5.776 2.176 -1.714 0 0 0 0 0 0 0 +5.764 2.192 -1.712 0 0 0 0 0 0 0 +5.761 2.211 -1.713 0 0 0 0 0 0 0 +5.759 2.232 -1.715 0 0 0 0 0 0 0 +5.757 2.241 -1.716 0 0 0 0 0 0 0 +5.752 2.26 -1.716 0 0 0 0 0 0 0 +5.752 2.281 -1.719 0 0 0 0 0 0 0 +5.734 2.295 -1.715 0 0 0 0 0 0 0 +5.722 2.311 -1.713 0 0 0 0 0 0 0 +5.72 2.331 -1.715 0 0 0 0 0 0 0 +5.709 2.347 -1.714 0 0 0 0 0 0 0 +5.703 2.356 -1.713 0 0 0 0 0 0 0 +5.707 2.378 -1.717 0 0 0 0 0 0 0 +5.696 2.394 -1.716 0 0 0 0 0 0 0 +5.711 2.422 -1.723 0 0 0 0 0 0 0 +5.68 2.43 -1.716 0 0 0 0 0 0 0 +5.685 2.453 -1.72 0 0 0 0 0 0 0 +5.665 2.466 -1.716 0 0 0 0 0 0 0 +5.661 2.475 -1.716 0 0 0 0 0 0 0 +5.655 2.493 -1.716 0 0 0 0 0 0 0 +5.661 2.517 -1.721 0 0 0 0 0 0 0 +5.645 2.531 -1.718 0 0 0 0 0 0 0 +5.637 2.549 -1.718 0 0 0 0 0 0 0 +5.636 2.569 -1.72 0 0 0 0 0 0 0 +5.626 2.586 -1.72 0 0 0 0 0 0 0 +5.611 2.59 -1.716 0 0 0 0 0 0 0 +5.613 2.613 -1.72 0 0 0 0 0 0 0 +5.591 2.624 -1.715 0 0 0 0 0 0 0 +5.581 2.641 -1.715 0 0 0 0 0 0 0 +5.576 2.66 -1.716 0 0 0 0 0 0 0 +5.57 2.678 -1.716 0 0 0 0 0 0 0 +5.563 2.697 -1.717 0 0 0 0 0 0 0 +5.56 2.717 -1.719 0 0 0 0 0 0 0 +5.549 2.722 -1.716 0 0 0 0 0 0 0 +5.53 2.734 -1.713 0 0 0 0 0 0 0 +5.519 2.751 -1.712 0 0 0 0 0 0 0 +5.518 2.772 -1.715 0 0 0 0 0 0 0 +5.509 2.789 -1.715 0 0 0 0 0 0 0 +5.502 2.807 -1.715 0 0 0 0 0 0 0 +5.484 2.82 -1.712 0 0 0 0 0 0 0 +5.478 2.828 -1.712 0 0 0 0 0 0 0 +5.474 2.847 -1.713 0 0 0 0 0 0 0 +5.455 2.859 -1.71 0 0 0 0 0 0 0 +5.451 2.879 -1.712 0 0 0 0 0 0 0 +5.449 2.9 -1.714 0 0 0 0 0 0 0 +5.443 2.919 -1.715 0 0 0 0 0 0 0 +5.43 2.923 -1.712 0 0 0 0 0 0 0 +5.416 2.937 -1.711 0 0 0 0 0 0 0 +5.402 2.951 -1.709 0 0 0 0 0 0 0 +5.399 2.972 -1.711 0 0 0 0 0 0 0 +5.391 2.99 -1.712 0 0 0 0 0 0 0 +5.377 3.004 -1.71 0 0 0 0 0 0 0 +5.373 3.024 -1.712 0 0 0 0 0 0 0 +5.374 3.036 -1.714 0 0 0 0 0 0 0 +5.342 3.04 -1.706 0 0 0 0 0 0 0 +5.337 3.059 -1.708 0 0 0 0 0 0 0 +5.336 3.081 -1.711 0 0 0 0 0 0 0 +5.323 3.095 -1.71 0 0 0 0 0 0 0 +5.324 3.119 -1.713 0 0 0 0 0 0 0 +5.316 3.137 -1.714 0 0 0 0 0 0 0 +5.305 3.141 -1.712 0 0 0 0 0 0 0 +5.293 3.157 -1.711 0 0 0 0 0 0 0 +5.275 3.168 -1.708 0 0 0 0 0 0 0 +5.27 3.188 -1.71 0 0 0 0 0 0 0 +5.255 3.202 -1.708 0 0 0 0 0 0 0 +5.238 3.214 -1.706 0 0 0 0 0 0 0 +5.238 3.237 -1.71 0 0 0 0 0 0 0 +5.21 3.242 -1.703 0 0 0 0 0 0 0 +5.21 3.253 -1.705 0 0 0 0 0 0 0 +5.211 3.277 -1.709 0 0 0 0 0 0 0 +5.173 3.276 -1.699 0 0 0 0 0 0 0 +5.184 3.305 -1.707 0 0 0 0 0 0 0 +5.173 3.321 -1.707 0 0 0 0 0 0 0 +5.156 3.333 -1.704 0 0 0 0 0 0 0 +5.138 3.344 -1.702 0 0 0 0 0 0 0 +5.15 3.364 -1.708 0 0 0 0 0 0 0 +5.125 3.371 -1.703 0 0 0 0 0 0 0 +5.123 3.392 -1.706 0 0 0 0 0 0 0 +5.115 3.41 -1.707 0 0 0 0 0 0 0 +5.098 3.422 -1.704 0 0 0 0 0 0 0 +5.087 3.438 -1.704 0 0 0 0 0 0 0 +5.08 3.456 -1.706 0 0 0 0 0 0 0 +5.066 3.459 -1.703 0 0 0 0 0 0 0 +5.057 3.476 -1.703 0 0 0 0 0 0 0 +5.052 3.496 -1.706 0 0 0 0 0 0 0 +5.029 3.503 -1.701 0 0 0 0 0 0 0 +5.027 3.525 -1.704 0 0 0 0 0 0 0 +5.013 3.539 -1.703 0 0 0 0 0 0 0 +5.005 3.557 -1.704 0 0 0 0 0 0 0 +5.002 3.567 -1.706 0 0 0 0 0 0 0 +4.983 3.577 -1.703 0 0 0 0 0 0 0 +4.977 3.596 -1.704 0 0 0 0 0 0 0 +4.964 3.611 -1.704 0 0 0 0 0 0 0 +4.951 3.625 -1.703 0 0 0 0 0 0 0 +4.932 3.635 -1.7 0 0 0 0 0 0 0 +4.923 3.653 -1.702 0 0 0 0 0 0 0 +4.921 3.663 -1.703 0 0 0 0 0 0 0 +4.9 3.671 -1.699 0 0 0 0 0 0 0 +4.891 3.689 -1.7 0 0 0 0 0 0 0 +4.878 3.703 -1.7 0 0 0 0 0 0 0 +4.847 3.703 -1.692 0 0 0 0 0 0 0 +4.84 3.722 -1.694 0 0 0 0 0 0 0 +4.822 3.733 -1.692 0 0 0 0 0 0 0 +4.811 3.737 -1.69 0 0 0 0 0 0 0 +4.809 3.759 -1.694 0 0 0 0 0 0 0 +4.8 3.776 -1.695 0 0 0 0 0 0 0 +4.79 3.793 -1.695 0 0 0 0 0 0 0 +4.775 3.805 -1.694 0 0 0 0 0 0 0 +4.77 3.826 -1.697 0 0 0 0 0 0 0 +4.754 3.838 -1.695 0 0 0 0 0 0 0 +4.754 3.85 -1.698 0 0 0 0 0 0 0 +4.753 3.874 -1.702 0 0 0 0 0 0 0 +4.755 3.9 -1.707 0 0 0 0 0 0 0 +4.738 3.911 -1.706 0 0 0 0 0 0 0 +4.726 3.926 -1.706 0 0 0 0 0 0 0 +4.718 3.945 -1.707 0 0 0 0 0 0 0 +4.72 3.972 -1.713 0 0 0 0 0 0 0 +4.709 3.976 -1.711 0 0 0 0 0 0 0 +4.701 3.994 -1.713 0 0 0 0 0 0 0 +4.686 4.006 -1.712 0 0 0 0 0 0 0 +4.683 4.03 -1.716 0 0 0 0 0 0 0 +4.672 4.046 -1.716 0 0 0 0 0 0 0 +4.665 4.065 -1.719 0 0 0 0 0 0 0 +4.657 4.084 -1.72 0 0 0 0 0 0 0 +4.657 4.097 -1.723 0 0 0 0 0 0 0 +4.642 4.109 -1.722 0 0 0 0 0 0 0 +4.635 4.129 -1.724 0 0 0 0 0 0 0 +4.626 4.147 -1.726 0 0 0 0 0 0 0 +4.611 4.161 -1.725 0 0 0 0 0 0 0 +4.604 4.18 -1.728 0 0 0 0 0 0 0 +4.584 4.188 -1.725 0 0 0 0 0 0 0 +4.587 4.205 -1.729 0 0 0 0 0 0 0 +4.565 4.211 -1.725 0 0 0 0 0 0 0 +4.555 4.228 -1.727 0 0 0 0 0 0 0 +4.535 4.236 -1.724 0 0 0 0 0 0 0 +4.53 4.258 -1.727 0 0 0 0 0 0 0 +4.499 4.256 -1.72 0 0 0 0 0 0 0 +4.482 4.267 -1.719 0 0 0 0 0 0 0 +4.47 4.282 -1.719 0 0 0 0 0 0 0 +4.46 4.286 -1.718 0 0 0 0 0 0 0 +4.457 4.31 -1.722 0 0 0 0 0 0 0 +4.426 4.308 -1.715 0 0 0 0 0 0 0 +4.411 4.32 -1.715 0 0 0 0 0 0 0 +4.399 4.335 -1.715 0 0 0 0 0 0 0 +4.391 4.354 -1.717 0 0 0 0 0 0 0 +4.39 4.38 -1.723 0 0 0 0 0 0 0 +4.366 4.371 -1.716 0 0 0 0 0 0 0 +4.357 4.389 -1.717 0 0 0 0 0 0 0 +4.346 4.405 -1.719 0 0 0 0 0 0 0 +4.329 4.416 -1.717 0 0 0 0 0 0 0 +4.325 4.439 -1.721 0 0 0 0 0 0 0 +4.295 4.436 -1.715 0 0 0 0 0 0 0 +4.293 4.449 -1.717 0 0 0 0 0 0 0 +4.276 4.459 -1.716 0 0 0 0 0 0 0 +4.272 4.482 -1.72 0 0 0 0 0 0 0 +4.265 4.504 -1.723 0 0 0 0 0 0 0 +4.237 4.502 -1.717 0 0 0 0 0 0 0 +4.229 4.522 -1.72 0 0 0 0 0 0 0 +4.215 4.536 -1.72 0 0 0 0 0 0 0 +4.206 4.541 -1.719 0 0 0 0 0 0 0 +4.195 4.557 -1.72 0 0 0 0 0 0 0 +4.184 4.574 -1.722 0 0 0 0 0 0 0 +4.156 4.572 -1.716 0 0 0 0 0 0 0 +4.146 4.591 -1.718 0 0 0 0 0 0 0 +4.127 4.598 -1.716 0 0 0 0 0 0 0 +4.118 4.617 -1.718 0 0 0 0 0 0 0 +4.1 4.627 -1.717 0 0 0 0 0 0 0 +4.105 4.646 -1.722 0 0 0 0 0 0 0 +4.088 4.656 -1.721 0 0 0 0 0 0 0 +4.07 4.666 -1.72 0 0 0 0 0 0 0 +4.053 4.676 -1.719 0 0 0 0 0 0 0 +4.042 4.693 -1.72 0 0 0 0 0 0 0 +4.025 4.703 -1.719 0 0 0 0 0 0 0 +4.001 4.705 -1.715 0 0 0 0 0 0 0 +3.999 4.717 -1.717 0 0 0 0 0 0 0 +3.977 4.721 -1.714 0 0 0 0 0 0 0 +3.969 4.742 -1.717 0 0 0 0 0 0 0 +3.957 4.758 -1.719 0 0 0 0 0 0 0 +3.932 4.758 -1.714 0 0 0 0 0 0 0 +3.92 4.773 -1.715 0 0 0 0 0 0 0 +3.9 4.78 -1.713 0 0 0 0 0 0 0 +3.889 4.798 -1.715 0 0 0 0 0 0 0 +3.887 4.81 -1.717 0 0 0 0 0 0 0 +3.868 4.818 -1.716 0 0 0 0 0 0 0 +3.85 4.827 -1.715 0 0 0 0 0 0 0 +3.835 4.839 -1.715 0 0 0 0 0 0 0 +3.813 4.842 -1.711 0 0 0 0 0 0 0 +3.805 4.863 -1.715 0 0 0 0 0 0 0 +3.799 4.872 -1.716 0 0 0 0 0 0 0 +3.783 4.882 -1.715 0 0 0 0 0 0 0 +3.77 4.897 -1.716 0 0 0 0 0 0 0 +3.748 4.9 -1.713 0 0 0 0 0 0 0 +3.73 4.909 -1.712 0 0 0 0 0 0 0 +3.716 4.922 -1.712 0 0 0 0 0 0 0 +3.698 4.93 -1.711 0 0 0 0 0 0 0 +3.689 4.951 -1.715 0 0 0 0 0 0 0 +3.681 4.957 -1.715 0 0 0 0 0 0 0 +3.669 4.973 -1.716 0 0 0 0 0 0 0 +3.646 4.974 -1.712 0 0 0 0 0 0 0 +3.632 4.988 -1.713 0 0 0 0 0 0 0 +3.617 5 -1.713 0 0 0 0 0 0 0 +3.599 5.008 -1.712 0 0 0 0 0 0 0 +3.586 5.024 -1.714 0 0 0 0 0 0 0 +3.575 5.025 -1.712 0 0 0 0 0 0 0 +3.56 5.038 -1.713 0 0 0 0 0 0 0 +3.54 5.043 -1.711 0 0 0 0 0 0 0 +3.531 5.063 -1.714 0 0 0 0 0 0 0 +3.51 5.068 -1.712 0 0 0 0 0 0 0 +3.497 5.082 -1.713 0 0 0 0 0 0 0 +3.483 5.096 -1.714 0 0 0 0 0 0 0 +3.47 5.095 -1.712 0 0 0 0 0 0 0 +3.454 5.106 -1.712 0 0 0 0 0 0 0 +3.439 5.119 -1.712 0 0 0 0 0 0 0 +3.426 5.133 -1.713 0 0 0 0 0 0 0 +3.404 5.135 -1.711 0 0 0 0 0 0 0 +3.391 5.151 -1.712 0 0 0 0 0 0 0 +3.377 5.165 -1.713 0 0 0 0 0 0 0 +3.371 5.173 -1.715 0 0 0 0 0 0 0 +3.352 5.179 -1.713 0 0 0 0 0 0 0 +3.339 5.196 -1.715 0 0 0 0 0 0 0 +3.321 5.203 -1.714 0 0 0 0 0 0 0 +3.302 5.209 -1.712 0 0 0 0 0 0 0 +3.288 5.224 -1.714 0 0 0 0 0 0 0 +3.272 5.234 -1.714 0 0 0 0 0 0 0 +3.263 5.238 -1.713 0 0 0 0 0 0 0 +3.249 5.253 -1.715 0 0 0 0 0 0 0 +3.235 5.266 -1.716 0 0 0 0 0 0 0 +3.219 5.278 -1.717 0 0 0 0 0 0 0 +3.202 5.286 -1.716 0 0 0 0 0 0 0 +3.183 5.293 -1.715 0 0 0 0 0 0 0 +3.161 5.295 -1.712 0 0 0 0 0 0 0 +3.148 5.31 -1.714 0 0 0 0 0 0 0 +3.146 5.326 -1.718 0 0 0 0 0 0 0 +3.13 5.338 -1.719 0 0 0 0 0 0 0 +3.115 5.349 -1.719 0 0 0 0 0 0 0 +3.093 5.351 -1.716 0 0 0 0 0 0 0 +3.077 5.362 -1.717 0 0 0 0 0 0 0 +3.066 5.382 -1.72 0 0 0 0 0 0 0 +3.05 5.393 -1.721 0 0 0 0 0 0 0 +3.041 5.398 -1.721 0 0 0 0 0 0 0 +3.019 5.397 -1.717 0 0 0 0 0 0 0 +3.009 5.42 -1.722 0 0 0 0 0 0 0 +2.99 5.424 -1.72 0 0 0 0 0 0 0 +2.976 5.441 -1.723 0 0 0 0 0 0 0 +2.959 5.45 -1.723 0 0 0 0 0 0 0 +2.948 5.471 -1.727 0 0 0 0 0 0 0 +2.94 5.476 -1.727 0 0 0 0 0 0 0 +2.921 5.481 -1.725 0 0 0 0 0 0 0 +2.902 5.487 -1.724 0 0 0 0 0 0 0 +2.895 5.517 -1.731 0 0 0 0 0 0 0 +2.865 5.502 -1.723 0 0 0 0 0 0 0 +2.854 5.523 -1.727 0 0 0 0 0 0 0 +2.837 5.532 -1.727 0 0 0 0 0 0 0 +2.827 5.534 -1.727 0 0 0 0 0 0 0 +2.806 5.535 -1.724 0 0 0 0 0 0 0 +2.797 5.561 -1.729 0 0 0 0 0 0 0 +2.77 5.551 -1.723 0 0 0 0 0 0 0 +2.758 5.57 -1.727 0 0 0 0 0 0 0 +2.731 5.559 -1.72 0 0 0 0 0 0 0 +2.715 5.571 -1.721 0 0 0 0 0 0 0 +2.708 5.579 -1.723 0 0 0 0 0 0 0 +2.699 5.605 -1.728 0 0 0 0 0 0 0 +2.674 5.599 -1.724 0 0 0 0 0 0 0 +2.656 5.606 -1.723 0 0 0 0 0 0 0 +2.645 5.628 -1.728 0 0 0 0 0 0 0 +2.615 5.61 -1.719 0 0 0 0 0 0 0 +2.6 5.624 -1.721 0 0 0 0 0 0 0 +2.588 5.644 -1.725 0 0 0 0 0 0 0 +2.573 5.636 -1.721 0 0 0 0 0 0 0 +2.555 5.642 -1.72 0 0 0 0 0 0 0 +2.54 5.657 -1.723 0 0 0 0 0 0 0 +2.518 5.655 -1.719 0 0 0 0 0 0 0 +2.502 5.668 -1.721 0 0 0 0 0 0 0 +2.487 5.681 -1.723 0 0 0 0 0 0 0 +2.463 5.676 -1.719 0 0 0 0 0 0 0 +2.451 5.673 -1.716 0 0 0 0 0 0 0 +2.444 5.704 -1.724 0 0 0 0 0 0 0 +2.417 5.692 -1.717 0 0 0 0 0 0 0 +2.401 5.703 -1.719 0 0 0 0 0 0 0 +2.387 5.72 -1.721 0 0 0 0 0 0 0 +2.364 5.715 -1.717 0 0 0 0 0 0 0 +2.342 5.713 -1.715 0 0 0 0 0 0 0 +2.341 5.736 -1.721 0 0 0 0 0 0 0 +2.319 5.733 -1.717 0 0 0 0 0 0 0 +2.303 5.747 -1.72 0 0 0 0 0 0 0 +2.287 5.758 -1.721 0 0 0 0 0 0 0 +2.265 5.756 -1.718 0 0 0 0 0 0 0 +2.251 5.774 -1.721 0 0 0 0 0 0 0 +2.23 5.774 -1.719 0 0 0 0 0 0 0 +2.217 5.767 -1.716 0 0 0 0 0 0 0 +2.206 5.792 -1.721 0 0 0 0 0 0 0 +2.185 5.791 -1.719 0 0 0 0 0 0 0 +2.169 5.804 -1.721 0 0 0 0 0 0 0 +2.152 5.814 -1.722 0 0 0 0 0 0 0 +2.133 5.819 -1.721 0 0 0 0 0 0 0 +2.114 5.824 -1.721 0 0 0 0 0 0 0 +2.092 5.821 -1.718 0 0 0 0 0 0 0 +2.087 5.836 -1.721 0 0 0 0 0 0 0 +2.071 5.847 -1.723 0 0 0 0 0 0 0 +2.054 5.858 -1.724 0 0 0 0 0 0 0 +2.032 5.855 -1.721 0 0 0 0 0 0 0 +2.015 5.865 -1.723 0 0 0 0 0 0 0 +1.995 5.868 -1.721 0 0 0 0 0 0 0 +1.979 5.881 -1.724 0 0 0 0 0 0 0 +1.969 5.881 -1.723 0 0 0 0 0 0 0 +1.953 5.894 -1.725 0 0 0 0 0 0 0 +1.931 5.891 -1.722 0 0 0 0 0 0 0 +1.915 5.904 -1.724 0 0 0 0 0 0 0 +1.891 5.894 -1.719 0 0 0 0 0 0 0 +1.865 5.876 -1.712 0 0 0 0 0 0 0 +1.844 5.873 -1.709 0 0 0 0 0 0 0 +1.833 5.872 -1.708 0 0 0 0 0 0 0 +1.814 5.876 -1.707 0 0 0 0 0 0 0 +1.79 5.861 -1.701 0 0 0 0 0 0 0 +1.774 5.876 -1.704 0 0 0 0 0 0 0 +1.755 5.882 -1.704 0 0 0 0 0 0 0 +1.741 5.9 -1.708 0 0 0 0 0 0 0 +1.712 5.871 -1.697 0 0 0 0 0 0 0 +1.706 5.886 -1.701 0 0 0 0 0 0 0 +1.687 5.888 -1.7 0 0 0 0 0 0 0 +1.665 5.882 -1.696 0 0 0 0 0 0 0 +1.645 5.88 -1.694 0 0 0 0 0 0 0 +1.631 5.903 -1.7 0 0 0 0 0 0 0 +1.611 5.901 -1.698 0 0 0 0 0 0 0 +1.589 5.895 -1.694 0 0 0 0 0 0 0 +1.569 5.894 -1.692 0 0 0 0 0 0 0 +1.562 5.904 -1.695 0 0 0 0 0 0 0 +1.543 5.909 -1.695 0 0 0 0 0 0 0 +1.524 5.912 -1.694 0 0 0 0 0 0 0 +1.51 5.934 -1.699 0 0 0 0 0 0 0 +1.485 5.914 -1.692 0 0 0 0 0 0 0 +1.466 5.915 -1.691 0 0 0 0 0 0 0 +1.447 5.92 -1.691 0 0 0 0 0 0 0 +1.439 5.926 -1.692 0 0 0 0 0 0 0 +1.42 5.932 -1.692 0 0 0 0 0 0 0 +1.404 5.944 -1.695 0 0 0 0 0 0 0 +1.381 5.933 -1.69 0 0 0 0 0 0 0 +1.363 5.94 -1.691 0 0 0 0 0 0 0 +1.343 5.938 -1.689 0 0 0 0 0 0 0 +0.686 3.133 -0.833 0 0 0 0 0 0 0 +0.682 3.139 -0.834 0 0 0 0 0 0 0 +0.671 3.136 -0.833 0 0 0 0 0 0 0 +0.67 3.179 -0.845 0 0 0 0 0 0 0 +0.659 3.176 -0.843 0 0 0 0 0 0 0 +0.635 3.112 -0.823 0 0 0 0 0 0 0 +0.622 3.101 -0.819 0 0 0 0 0 0 0 +0.612 3.099 -0.818 0 0 0 0 0 0 0 +0.608 3.104 -0.819 0 0 0 0 0 0 0 +0.598 3.104 -0.819 0 0 0 0 0 0 0 +0.588 3.106 -0.819 0 0 0 0 0 0 0 +0.578 3.106 -0.818 0 0 0 0 0 0 0 +0.567 3.104 -0.817 0 0 0 0 0 0 0 +0.558 3.107 -0.818 0 0 0 0 0 0 0 +0.548 3.109 -0.818 0 0 0 0 0 0 0 +0.544 3.112 -0.818 0 0 0 0 0 0 0 +0.533 3.11 -0.817 0 0 0 0 0 0 0 +0.522 3.104 -0.815 0 0 0 0 0 0 0 +0.512 3.104 -0.814 0 0 0 0 0 0 0 +0.503 3.111 -0.816 0 0 0 0 0 0 0 +0.493 3.111 -0.815 0 0 0 0 0 0 0 +0.484 3.116 -0.817 0 0 0 0 0 0 0 +0.474 3.114 -0.815 0 0 0 0 0 0 0 +0.468 3.112 -0.815 0 0 0 0 0 0 0 +0.459 3.114 -0.815 0 0 0 0 0 0 0 +0.448 3.113 -0.814 0 0 0 0 0 0 0 +0.439 3.119 -0.815 0 0 0 0 0 0 0 +0.43 3.122 -0.816 0 0 0 0 0 0 0 +0.419 3.116 -0.814 0 0 0 0 0 0 0 +0.41 3.121 -0.815 0 0 0 0 0 0 0 +0.404 3.119 -0.814 0 0 0 0 0 0 0 +0.394 3.119 -0.814 0 0 0 0 0 0 0 +0.385 3.122 -0.814 0 0 0 0 0 0 0 +0.375 3.127 -0.815 0 0 0 0 0 0 0 +0.365 3.122 -0.814 0 0 0 0 0 0 0 +0.354 3.118 -0.812 0 0 0 0 0 0 0 +0.345 3.125 -0.814 0 0 0 0 0 0 0 +0.34 3.121 -0.813 0 0 0 0 0 0 0 +0.331 3.126 -0.814 0 0 0 0 0 0 0 +0.321 3.133 -0.815 0 0 0 0 0 0 0 +0.312 3.138 -0.817 0 0 0 0 0 0 0 +0.302 3.133 -0.815 0 0 0 0 0 0 0 +0.292 3.136 -0.815 0 0 0 0 0 0 0 +0.282 3.137 -0.815 0 0 0 0 0 0 0 +0.273 3.141 -0.817 0 0 0 0 0 0 0 +0.268 3.144 -0.817 0 0 0 0 0 0 0 +0.258 3.145 -0.817 0 0 0 0 0 0 0 +0.248 3.149 -0.818 0 0 0 0 0 0 0 +0.238 3.146 -0.817 0 0 0 0 0 0 0 +0.228 3.143 -0.816 0 0 0 0 0 0 0 +0.218 3.144 -0.816 0 0 0 0 0 0 0 +0.209 3.152 -0.818 0 0 0 0 0 0 0 +0.204 3.149 -0.817 0 0 0 0 0 0 0 +0.194 3.153 -0.818 0 0 0 0 0 0 0 +0.184 3.154 -0.818 0 0 0 0 0 0 0 +0.174 3.156 -0.819 0 0 0 0 0 0 0 +0.164 3.153 -0.818 0 0 0 0 0 0 0 +0.154 3.155 -0.818 0 0 0 0 0 0 0 +0.145 3.161 -0.82 0 0 0 0 0 0 0 +0.14 3.16 -0.819 0 0 0 0 0 0 0 +0.13 3.164 -0.821 0 0 0 0 0 0 0 +0.12 3.166 -0.821 0 0 0 0 0 0 0 +0.112 3.216 -0.836 0 0 0 0 0 0 0 +0.103 3.244 -0.844 0 0 0 0 0 0 0 +0.092 3.217 -0.836 0 0 0 0 0 0 0 +0.081 3.206 -0.833 0 0 0 0 0 0 0 +0.076 3.206 -0.833 0 0 0 0 0 0 0 +0.129 6.02 -1.669 0 0 0 0 0 0 0 +0.066 3.191 -0.828 0 0 0 0 0 0 0 +0.11 6.034 -1.673 0 0 0 0 0 0 0 +0.091 6.043 -1.676 0 0 0 0 0 0 0 +0.072 6.046 -1.676 0 0 0 0 0 0 0 +0.053 6.059 -1.68 0 0 0 0 0 0 0 +0.044 6.061 -1.681 0 0 0 0 0 0 0 +0.025 6.067 -1.683 0 0 0 0 0 0 0 +0.006 6.071 -1.684 0 0 0 0 0 0 0 +-0.013 6.104 -1.694 0 0 0 0 0 0 0 +-0.032 6.119 -1.698 0 0 0 0 0 0 0 +-0.052 6.126 -1.7 0 0 0 0 0 0 0 +-0.071 6.136 -1.703 0 0 0 0 0 0 0 +-0.081 6.139 -1.704 0 0 0 0 0 0 0 +-0.1 6.145 -1.706 0 0 0 0 0 0 0 +-0.119 6.148 -1.707 0 0 0 0 0 0 0 +-0.139 6.165 -1.712 0 0 0 0 0 0 0 +-0.159 6.178 -1.716 0 0 0 0 0 0 0 +-0.177 6.157 -1.71 0 0 0 0 0 0 0 +-0.197 6.162 -1.712 0 0 0 0 0 0 0 +-0.217 6.186 -1.719 0 0 0 0 0 0 0 +-0.226 6.168 -1.714 0 0 0 0 0 0 0 +-0.246 6.183 -1.719 0 0 0 0 0 0 0 +-0.266 6.201 -1.724 0 0 0 0 0 0 0 +-0.286 6.201 -1.724 0 0 0 0 0 0 0 +-0.305 6.203 -1.725 0 0 0 0 0 0 0 +-0.325 6.204 -1.726 0 0 0 0 0 0 0 +-0.345 6.205 -1.727 0 0 0 0 0 0 0 +-0.355 6.216 -1.73 0 0 0 0 0 0 0 +-0.375 6.23 -1.735 0 0 0 0 0 0 0 +-0.394 6.21 -1.729 0 0 0 0 0 0 0 +-0.414 6.216 -1.731 0 0 0 0 0 0 0 +-0.434 6.232 -1.736 0 0 0 0 0 0 0 +-0.454 6.227 -1.735 0 0 0 0 0 0 0 +-0.474 6.231 -1.737 0 0 0 0 0 0 0 +-0.484 6.234 -1.738 0 0 0 0 0 0 0 +-0.504 6.24 -1.74 0 0 0 0 0 0 0 +-0.525 6.26 -1.747 0 0 0 0 0 0 0 +-0.544 6.241 -1.741 0 0 0 0 0 0 0 +-0.562 6.226 -1.737 0 0 0 0 0 0 0 +-0.583 6.243 -1.743 0 0 0 0 0 0 0 +-0.616 6.381 -1.785 0 0 0 0 0 0 0 +-0.622 6.345 -1.774 0 0 0 0 0 0 0 +-0.637 6.292 -1.759 0 0 0 0 0 0 0 +-0.655 6.273 -1.754 0 0 0 0 0 0 0 +-0.67 6.223 -1.74 0 0 0 0 0 0 0 +-0.688 6.207 -1.736 0 0 0 0 0 0 0 +-0.71 6.22 -1.74 0 0 0 0 0 0 0 +-0.728 6.211 -1.738 0 0 0 0 0 0 0 +-0.749 6.216 -1.74 0 0 0 0 0 0 0 +-0.759 6.217 -1.741 0 0 0 0 0 0 0 +-0.777 6.201 -1.737 0 0 0 0 0 0 0 +-0.796 6.2 -1.737 0 0 0 0 0 0 0 +-0.817 6.211 -1.741 0 0 0 0 0 0 0 +-0.836 6.199 -1.739 0 0 0 0 0 0 0 +-0.856 6.2 -1.74 0 0 0 0 0 0 0 +-0.876 6.203 -1.741 0 0 0 0 0 0 0 +-0.884 6.187 -1.737 0 0 0 0 0 0 0 +-0.906 6.207 -1.744 0 0 0 0 0 0 0 +-0.925 6.202 -1.743 0 0 0 0 0 0 0 +-0.944 6.191 -1.741 0 0 0 0 0 0 0 +-0.962 6.181 -1.739 0 0 0 0 0 0 0 +-0.984 6.191 -1.743 0 0 0 0 0 0 0 +-1 6.167 -1.736 0 0 0 0 0 0 0 +-1.011 6.177 -1.74 0 0 0 0 0 0 0 +-1.03 6.172 -1.739 0 0 0 0 0 0 0 +-1.05 6.168 -1.739 0 0 0 0 0 0 0 +-1.069 6.167 -1.74 0 0 0 0 0 0 0 +-1.091 6.177 -1.744 0 0 0 0 0 0 0 +-1.11 6.171 -1.743 0 0 0 0 0 0 0 +-1.128 6.162 -1.741 0 0 0 0 0 0 0 +-1.14 6.17 -1.744 0 0 0 0 0 0 0 +-1.157 6.157 -1.741 0 0 0 0 0 0 0 +-1.178 6.161 -1.744 0 0 0 0 0 0 0 +-1.2 6.168 -1.747 0 0 0 0 0 0 0 +-1.214 6.136 -1.739 0 0 0 0 0 0 0 +-1.233 6.13 -1.738 0 0 0 0 0 0 0 +-1.255 6.143 -1.743 0 0 0 0 0 0 0 +-1.273 6.13 -1.74 0 0 0 0 0 0 0 +-1.282 6.128 -1.74 0 0 0 0 0 0 0 +-1.307 6.15 -1.748 0 0 0 0 0 0 0 +-1.321 6.124 -1.741 0 0 0 0 0 0 0 +-1.339 6.112 -1.739 0 0 0 0 0 0 0 +-1.36 6.117 -1.742 0 0 0 0 0 0 0 +-1.381 6.12 -1.744 0 0 0 0 0 0 0 +-1.4 6.116 -1.744 0 0 0 0 0 0 0 +-1.412 6.121 -1.747 0 0 0 0 0 0 0 +-1.429 6.109 -1.744 0 0 0 0 0 0 0 +-1.449 6.108 -1.745 0 0 0 0 0 0 0 +-1.471 6.113 -1.748 0 0 0 0 0 0 0 +-1.486 6.092 -1.743 0 0 0 0 0 0 0 +-1.507 6.096 -1.746 0 0 0 0 0 0 0 +-1.529 6.101 -1.749 0 0 0 0 0 0 0 +-1.536 6.089 -1.746 0 0 0 0 0 0 0 +-1.555 6.083 -1.745 0 0 0 0 0 0 0 +-1.578 6.096 -1.751 0 0 0 0 0 0 0 +-1.59 6.063 -1.743 0 0 0 0 0 0 0 +-1.611 6.066 -1.745 0 0 0 0 0 0 0 +-1.63 6.061 -1.745 0 0 0 0 0 0 0 +-1.649 6.056 -1.745 0 0 0 0 0 0 0 +-1.659 6.053 -1.745 0 0 0 0 0 0 0 +-1.681 6.061 -1.749 0 0 0 0 0 0 0 +-1.699 6.05 -1.747 0 0 0 0 0 0 0 +-1.72 6.052 -1.749 0 0 0 0 0 0 0 +-1.737 6.039 -1.747 0 0 0 0 0 0 0 +-1.752 6.021 -1.743 0 0 0 0 0 0 0 +-1.775 6.028 -1.747 0 0 0 0 0 0 0 +-1.793 6.019 -1.746 0 0 0 0 0 0 0 +-1.803 6.018 -1.747 0 0 0 0 0 0 0 +-1.82 6.006 -1.745 0 0 0 0 0 0 0 +-1.837 5.993 -1.743 0 0 0 0 0 0 0 +-1.855 5.988 -1.743 0 0 0 0 0 0 0 +-1.876 5.987 -1.744 0 0 0 0 0 0 0 +-1.895 5.983 -1.745 0 0 0 0 0 0 0 +-1.911 5.966 -1.741 0 0 0 0 0 0 0 +-1.923 5.972 -1.744 0 0 0 0 0 0 0 +-1.941 5.964 -1.744 0 0 0 0 0 0 0 +-1.959 5.956 -1.743 0 0 0 0 0 0 0 +-1.977 5.948 -1.743 0 0 0 0 0 0 0 +-2.003 5.962 -1.749 0 0 0 0 0 0 0 +-2.041 6.014 -1.767 0 0 0 0 0 0 0 +-2.05 5.979 -1.758 0 0 0 0 0 0 0 +-2.051 5.952 -1.751 0 0 0 0 0 0 0 +-2.067 5.936 -1.748 0 0 0 0 0 0 0 +-2.085 5.928 -1.747 0 0 0 0 0 0 0 +-2.103 5.921 -1.747 0 0 0 0 0 0 0 +-2.124 5.92 -1.749 0 0 0 0 0 0 0 +-2.144 5.919 -1.751 0 0 0 0 0 0 0 +-2.155 5.89 -1.744 0 0 0 0 0 0 0 +-2.162 5.88 -1.741 0 0 0 0 0 0 0 +-2.179 5.869 -1.74 0 0 0 0 0 0 0 +-2.201 5.872 -1.743 0 0 0 0 0 0 0 +-2.22 5.866 -1.744 0 0 0 0 0 0 0 +-2.24 5.863 -1.745 0 0 0 0 0 0 0 +-2.253 5.843 -1.741 0 0 0 0 0 0 0 +-2.27 5.833 -1.74 0 0 0 0 0 0 0 +-2.289 5.827 -1.74 0 0 0 0 0 0 0 +-2.3 5.829 -1.742 0 0 0 0 0 0 0 +-2.319 5.822 -1.742 0 0 0 0 0 0 0 +-2.34 5.822 -1.744 0 0 0 0 0 0 0 +-2.356 5.809 -1.743 0 0 0 0 0 0 0 +-2.372 5.796 -1.741 0 0 0 0 0 0 0 +-2.39 5.789 -1.741 0 0 0 0 0 0 0 +-2.412 5.79 -1.744 0 0 0 0 0 0 0 +-2.419 5.781 -1.742 0 0 0 0 0 0 0 +-2.439 5.779 -1.744 0 0 0 0 0 0 0 +-2.454 5.762 -1.741 0 0 0 0 0 0 0 +-2.473 5.756 -1.741 0 0 0 0 0 0 0 +-2.497 5.762 -1.746 0 0 0 0 0 0 0 +-2.519 5.763 -1.749 0 0 0 0 0 0 0 +-2.54 5.762 -1.751 0 0 0 0 0 0 0 +-2.554 5.746 -1.748 0 0 0 0 0 0 0 +-2.565 5.747 -1.75 0 0 0 0 0 0 0 +-2.579 5.728 -1.747 0 0 0 0 0 0 0 +-2.597 5.72 -1.747 0 0 0 0 0 0 0 +-2.616 5.715 -1.748 0 0 0 0 0 0 0 +-2.633 5.705 -1.747 0 0 0 0 0 0 0 +-2.655 5.706 -1.75 0 0 0 0 0 0 0 +-2.667 5.684 -1.745 0 0 0 0 0 0 0 +-2.678 5.685 -1.747 0 0 0 0 0 0 0 +-2.7 5.685 -1.75 0 0 0 0 0 0 0 +-2.718 5.676 -1.75 0 0 0 0 0 0 0 +-2.739 5.675 -1.752 0 0 0 0 0 0 0 +-2.758 5.668 -1.753 0 0 0 0 0 0 0 +-2.775 5.659 -1.753 0 0 0 0 0 0 0 +-2.792 5.649 -1.752 0 0 0 0 0 0 0 +-2.798 5.637 -1.75 0 0 0 0 0 0 0 +-2.811 5.62 -1.747 0 0 0 0 0 0 0 +-2.826 5.604 -1.745 0 0 0 0 0 0 0 +-2.853 5.614 -1.751 0 0 0 0 0 0 0 +-2.867 5.598 -1.749 0 0 0 0 0 0 0 +-2.881 5.582 -1.747 0 0 0 0 0 0 0 +-2.897 5.57 -1.745 0 0 0 0 0 0 0 +-2.908 5.57 -1.747 0 0 0 0 0 0 0 +-2.93 5.57 -1.75 0 0 0 0 0 0 0 +-2.95 5.566 -1.752 0 0 0 0 0 0 0 +-2.971 5.563 -1.754 0 0 0 0 0 0 0 +-2.988 5.552 -1.753 0 0 0 0 0 0 0 +-3 5.533 -1.75 0 0 0 0 0 0 0 +-3.018 5.525 -1.751 0 0 0 0 0 0 0 +-3.036 5.517 -1.751 0 0 0 0 0 0 0 +-3.049 5.519 -1.753 0 0 0 0 0 0 0 +-3.067 5.511 -1.754 0 0 0 0 0 0 0 +-3.079 5.491 -1.751 0 0 0 0 0 0 0 +-3.099 5.487 -1.752 0 0 0 0 0 0 0 +-3.112 5.47 -1.75 0 0 0 0 0 0 0 +-3.124 5.452 -1.747 0 0 0 0 0 0 0 +-3.147 5.452 -1.751 0 0 0 0 0 0 0 +-3.163 5.459 -1.755 0 0 0 0 0 0 0 +-3.183 5.455 -1.757 0 0 0 0 0 0 0 +-3.196 5.437 -1.754 0 0 0 0 0 0 0 +-3.205 5.414 -1.749 0 0 0 0 0 0 0 +-3.227 5.412 -1.752 0 0 0 0 0 0 0 +-3.244 5.402 -1.752 0 0 0 0 0 0 0 +-3.262 5.393 -1.753 0 0 0 0 0 0 0 +-3.275 5.396 -1.756 0 0 0 0 0 0 0 +-3.285 5.375 -1.752 0 0 0 0 0 0 0 +-3.306 5.371 -1.754 0 0 0 0 0 0 0 +-3.314 5.346 -1.749 0 0 0 0 0 0 0 +-3.341 5.352 -1.755 0 0 0 0 0 0 0 +-3.366 5.354 -1.759 0 0 0 0 0 0 0 +-3.369 5.322 -1.752 0 0 0 0 0 0 0 +-3.38 5.32 -1.753 0 0 0 0 0 0 0 +-3.399 5.314 -1.755 0 0 0 0 0 0 0 +-3.416 5.304 -1.755 0 0 0 0 0 0 0 +-3.433 5.293 -1.755 0 0 0 0 0 0 0 +-3.453 5.287 -1.756 0 0 0 0 0 0 0 +-3.471 5.279 -1.757 0 0 0 0 0 0 0 +-3.489 5.27 -1.758 0 0 0 0 0 0 0 +-3.504 5.276 -1.762 0 0 0 0 0 0 0 +-3.522 5.266 -1.762 0 0 0 0 0 0 0 +-3.545 5.265 -1.766 0 0 0 0 0 0 0 +-3.569 5.265 -1.77 0 0 0 0 0 0 0 +-3.589 5.258 -1.772 0 0 0 0 0 0 0 +-3.602 5.242 -1.77 0 0 0 0 0 0 0 +-3.628 5.245 -1.775 0 0 0 0 0 0 0 +-3.646 5.235 -1.776 0 0 0 0 0 0 0 +-3.67 5.253 -1.784 0 0 0 0 0 0 0 +-3.687 5.242 -1.784 0 0 0 0 0 0 0 +-3.68 5.197 -1.772 0 0 0 0 0 0 0 +-3.701 5.192 -1.774 0 0 0 0 0 0 0 +-3.776 5.228 -1.796 0 0 0 0 0 0 0 +-3.783 5.203 -1.792 0 0 0 0 0 0 0 +-3.785 5.188 -1.788 0 0 0 0 0 0 0 +-3.793 5.165 -1.784 0 0 0 0 0 0 0 +-3.797 5.136 -1.778 0 0 0 0 0 0 0 +-3.805 5.114 -1.774 0 0 0 0 0 0 0 +-3.813 5.091 -1.77 0 0 0 0 0 0 0 +-3.836 5.088 -1.773 0 0 0 0 0 0 0 +-3.843 5.064 -1.769 0 0 0 0 0 0 0 +-3.851 5.058 -1.769 0 0 0 0 0 0 0 +-3.861 5.038 -1.766 0 0 0 0 0 0 0 +-3.873 5.021 -1.764 0 0 0 0 0 0 0 +-3.877 4.994 -1.759 0 0 0 0 0 0 0 +-3.896 4.986 -1.76 0 0 0 0 0 0 0 +-3.906 4.966 -1.757 0 0 0 0 0 0 0 +-3.922 4.954 -1.757 0 0 0 0 0 0 0 +-3.929 4.948 -1.757 0 0 0 0 0 0 0 +-3.94 4.929 -1.755 0 0 0 0 0 0 0 +-3.954 4.916 -1.755 0 0 0 0 0 0 0 +-3.982 4.918 -1.76 0 0 0 0 0 0 0 +-3.985 4.891 -1.755 0 0 0 0 0 0 0 +-4.003 4.881 -1.756 0 0 0 0 0 0 0 +-4.018 4.868 -1.756 0 0 0 0 0 0 0 +-4.028 4.865 -1.757 0 0 0 0 0 0 0 +-4.047 4.857 -1.759 0 0 0 0 0 0 0 +-4.06 4.841 -1.757 0 0 0 0 0 0 0 +-4.079 4.833 -1.759 0 0 0 0 0 0 0 +-4.09 4.816 -1.757 0 0 0 0 0 0 0 +-4.106 4.803 -1.757 0 0 0 0 0 0 0 +-4.121 4.79 -1.757 0 0 0 0 0 0 0 +-4.138 4.78 -1.759 0 0 0 0 0 0 0 +-4.149 4.778 -1.76 0 0 0 0 0 0 0 +-4.167 4.767 -1.761 0 0 0 0 0 0 0 +-4.181 4.753 -1.761 0 0 0 0 0 0 0 +-4.192 4.735 -1.759 0 0 0 0 0 0 0 +-4.207 4.722 -1.759 0 0 0 0 0 0 0 +-4.216 4.703 -1.757 0 0 0 0 0 0 0 +-4.245 4.706 -1.763 0 0 0 0 0 0 0 +-4.256 4.703 -1.765 0 0 0 0 0 0 0 +-4.27 4.688 -1.764 0 0 0 0 0 0 0 +-4.283 4.674 -1.764 0 0 0 0 0 0 0 +-4.297 4.659 -1.763 0 0 0 0 0 0 0 +-4.31 4.644 -1.762 0 0 0 0 0 0 0 +-4.323 4.629 -1.762 0 0 0 0 0 0 0 +-4.338 4.615 -1.762 0 0 0 0 0 0 0 +-4.348 4.611 -1.763 0 0 0 0 0 0 0 +-4.361 4.596 -1.762 0 0 0 0 0 0 0 +-4.375 4.582 -1.762 0 0 0 0 0 0 0 +-4.391 4.57 -1.763 0 0 0 0 0 0 0 +-4.406 4.558 -1.764 0 0 0 0 0 0 0 +-4.413 4.535 -1.76 0 0 0 0 0 0 0 +-4.435 4.53 -1.764 0 0 0 0 0 0 0 +-4.446 4.527 -1.765 0 0 0 0 0 0 0 +-4.458 4.51 -1.764 0 0 0 0 0 0 0 +-4.469 4.493 -1.763 0 0 0 0 0 0 0 +-4.482 4.478 -1.762 0 0 0 0 0 0 0 +-4.499 4.467 -1.764 0 0 0 0 0 0 0 +-4.514 4.454 -1.764 0 0 0 0 0 0 0 +-4.527 4.438 -1.764 0 0 0 0 0 0 0 +-4.546 4.429 -1.766 0 0 0 0 0 0 0 +-4.546 4.416 -1.763 0 0 0 0 0 0 0 +-4.563 4.404 -1.764 0 0 0 0 0 0 0 +-4.574 4.387 -1.763 0 0 0 0 0 0 0 +-4.592 4.376 -1.765 0 0 0 0 0 0 0 +-4.601 4.358 -1.763 0 0 0 0 0 0 0 +-4.615 4.344 -1.763 0 0 0 0 0 0 0 +-4.628 4.329 -1.763 0 0 0 0 0 0 0 +-4.634 4.32 -1.762 0 0 0 0 0 0 0 +-4.652 4.31 -1.764 0 0 0 0 0 0 0 +-4.671 4.3 -1.766 0 0 0 0 0 0 0 +-4.691 4.292 -1.769 0 0 0 0 0 0 0 +-4.703 4.276 -1.769 0 0 0 0 0 0 0 +-4.697 4.243 -1.761 0 0 0 0 0 0 0 +-4.71 4.229 -1.761 0 0 0 0 0 0 0 +-4.72 4.224 -1.762 0 0 0 0 0 0 0 +-4.739 4.214 -1.764 0 0 0 0 0 0 0 +-4.739 4.188 -1.759 0 0 0 0 0 0 0 +-4.744 4.165 -1.756 0 0 0 0 0 0 0 +-4.761 4.154 -1.757 0 0 0 0 0 0 0 +-4.765 4.131 -1.754 0 0 0 0 0 0 0 +-4.785 4.123 -1.757 0 0 0 0 0 0 0 +-4.79 4.114 -1.756 0 0 0 0 0 0 0 +-4.799 4.095 -1.755 0 0 0 0 0 0 0 +-4.818 4.085 -1.757 0 0 0 0 0 0 0 +-4.83 4.07 -1.757 0 0 0 0 0 0 0 +-4.843 4.055 -1.757 0 0 0 0 0 0 0 +-4.862 4.044 -1.759 0 0 0 0 0 0 0 +-4.866 4.022 -1.756 0 0 0 0 0 0 0 +-4.872 4.014 -1.756 0 0 0 0 0 0 0 +-4.885 3.999 -1.756 0 0 0 0 0 0 0 +-4.899 3.985 -1.756 0 0 0 0 0 0 0 +-4.916 3.973 -1.758 0 0 0 0 0 0 0 +-4.925 3.955 -1.757 0 0 0 0 0 0 0 +-4.942 3.943 -1.759 0 0 0 0 0 0 0 +-4.954 3.927 -1.759 0 0 0 0 0 0 0 +-4.954 3.915 -1.756 0 0 0 0 0 0 0 +-4.976 3.906 -1.76 0 0 0 0 0 0 0 +-4.985 3.888 -1.759 0 0 0 0 0 0 0 +-4.993 3.869 -1.757 0 0 0 0 0 0 0 +-5.008 3.856 -1.758 0 0 0 0 0 0 0 +-5.024 3.844 -1.76 0 0 0 0 0 0 0 +-5.036 3.828 -1.76 0 0 0 0 0 0 0 +-5.052 3.814 -1.761 0 0 0 0 0 0 0 +-5.067 3.813 -1.764 0 0 0 0 0 0 0 +-5.071 3.792 -1.761 0 0 0 0 0 0 0 +-5.087 3.779 -1.763 0 0 0 0 0 0 0 +-5.102 3.765 -1.764 0 0 0 0 0 0 0 +-5.117 3.752 -1.765 0 0 0 0 0 0 0 +-5.134 3.739 -1.767 0 0 0 0 0 0 0 +-5.152 3.727 -1.769 0 0 0 0 0 0 0 +-5.143 3.709 -1.764 0 0 0 0 0 0 0 +-5.164 3.7 -1.768 0 0 0 0 0 0 0 +-5.176 3.683 -1.768 0 0 0 0 0 0 0 +-5.192 3.67 -1.769 0 0 0 0 0 0 0 +-5.194 3.647 -1.766 0 0 0 0 0 0 0 +-5.221 3.642 -1.772 0 0 0 0 0 0 0 +-5.238 3.629 -1.773 0 0 0 0 0 0 0 +-5.243 3.621 -1.773 0 0 0 0 0 0 0 +-5.25 3.601 -1.772 0 0 0 0 0 0 0 +-5.275 3.594 -1.777 0 0 0 0 0 0 0 +-5.274 3.569 -1.772 0 0 0 0 0 0 0 +-5.298 3.561 -1.777 0 0 0 0 0 0 0 +-5.323 3.554 -1.782 0 0 0 0 0 0 0 +-5.35 3.548 -1.788 0 0 0 0 0 0 0 +-5.356 3.54 -1.788 0 0 0 0 0 0 0 +-5.351 3.512 -1.782 0 0 0 0 0 0 0 +-5.353 3.489 -1.778 0 0 0 0 0 0 0 +-5.349 3.463 -1.773 0 0 0 0 0 0 0 +-5.355 3.443 -1.772 0 0 0 0 0 0 0 +-5.363 3.424 -1.77 0 0 0 0 0 0 0 +-5.372 3.406 -1.77 0 0 0 0 0 0 0 +-5.375 3.396 -1.769 0 0 0 0 0 0 0 +-5.384 3.379 -1.769 0 0 0 0 0 0 0 +-5.398 3.364 -1.77 0 0 0 0 0 0 0 +-5.422 3.355 -1.774 0 0 0 0 0 0 0 +-5.431 3.337 -1.774 0 0 0 0 0 0 0 +-5.456 3.329 -1.779 0 0 0 0 0 0 0 +-5.452 3.303 -1.774 0 0 0 0 0 0 0 +-5.46 3.284 -1.773 0 0 0 0 0 0 0 +-5.47 3.279 -1.775 0 0 0 0 0 0 0 +-5.481 3.262 -1.775 0 0 0 0 0 0 0 +-5.483 3.239 -1.772 0 0 0 0 0 0 0 +-5.494 3.223 -1.773 0 0 0 0 0 0 0 +-5.508 3.208 -1.774 0 0 0 0 0 0 0 +-5.518 3.191 -1.774 0 0 0 0 0 0 0 +-5.508 3.162 -1.767 0 0 0 0 0 0 0 +-5.511 3.152 -1.766 0 0 0 0 0 0 0 +-5.515 3.131 -1.764 0 0 0 0 0 0 0 +-5.528 3.115 -1.765 0 0 0 0 0 0 0 +-5.532 3.095 -1.764 0 0 0 0 0 0 0 +-5.535 3.074 -1.761 0 0 0 0 0 0 0 +-5.542 3.055 -1.76 0 0 0 0 0 0 0 +-5.548 3.036 -1.759 0 0 0 0 0 0 0 +-5.564 3.033 -1.763 0 0 0 0 0 0 0 +-5.564 3.01 -1.76 0 0 0 0 0 0 0 +-5.573 2.993 -1.76 0 0 0 0 0 0 0 +-5.583 2.975 -1.76 0 0 0 0 0 0 0 +-5.587 2.955 -1.758 0 0 0 0 0 0 0 +-5.591 2.935 -1.756 0 0 0 0 0 0 0 +-5.609 2.922 -1.759 0 0 0 0 0 0 0 +-5.617 2.915 -1.76 0 0 0 0 0 0 0 +-5.609 2.888 -1.755 0 0 0 0 0 0 0 +-5.628 2.876 -1.758 0 0 0 0 0 0 0 +-5.629 2.854 -1.755 0 0 0 0 0 0 0 +-5.643 2.839 -1.757 0 0 0 0 0 0 0 +-5.648 2.819 -1.756 0 0 0 0 0 0 0 +-5.659 2.802 -1.756 0 0 0 0 0 0 0 +-5.672 2.798 -1.759 0 0 0 0 0 0 0 +-5.677 2.778 -1.758 0 0 0 0 0 0 0 +-5.687 2.761 -1.759 0 0 0 0 0 0 0 +-5.679 2.735 -1.753 0 0 0 0 0 0 0 +-5.699 2.723 -1.757 0 0 0 0 0 0 0 +-5.687 2.695 -1.75 0 0 0 0 0 0 0 +-5.73 2.693 -1.761 0 0 0 0 0 0 0 +-5.709 2.672 -1.753 0 0 0 0 0 0 0 +-5.939 1.968 -1.739 0 0 0 0 0 0 0 +-5.944 1.949 -1.739 0 0 0 0 0 0 0 +-5.961 1.934 -1.742 0 0 0 0 0 0 0 +-5.952 1.91 -1.737 0 0 0 0 0 0 0 +-5.979 1.909 -1.745 0 0 0 0 0 0 0 +-5.963 1.883 -1.738 0 0 0 0 0 0 0 +-5.985 1.869 -1.743 0 0 0 0 0 0 0 +-5.995 1.851 -1.744 0 0 0 0 0 0 0 +-5.995 1.831 -1.743 0 0 0 0 0 0 0 +-6.006 1.814 -1.744 0 0 0 0 0 0 0 +-6.012 1.795 -1.744 0 0 0 0 0 0 0 +-6.006 1.783 -1.741 0 0 0 0 0 0 0 +-6.026 1.768 -1.746 0 0 0 0 0 0 0 +-6.024 1.747 -1.744 0 0 0 0 0 0 0 +-6.03 1.728 -1.744 0 0 0 0 0 0 0 +-6.033 1.709 -1.743 0 0 0 0 0 0 0 +-6.059 1.695 -1.749 0 0 0 0 0 0 0 +-6.049 1.672 -1.745 0 0 0 0 0 0 0 +-6.054 1.663 -1.745 0 0 0 0 0 0 0 +-6.066 1.646 -1.748 0 0 0 0 0 0 0 +-6.066 1.626 -1.746 0 0 0 0 0 0 0 +-6.056 1.603 -1.741 0 0 0 0 0 0 0 +-6.067 1.585 -1.743 0 0 0 0 0 0 0 +-6.083 1.569 -1.747 0 0 0 0 0 0 0 +-6.088 1.55 -1.747 0 0 0 0 0 0 0 +-6.096 1.542 -1.748 0 0 0 0 0 0 0 +-6.099 1.522 -1.748 0 0 0 0 0 0 0 +-6.094 1.501 -1.745 0 0 0 0 0 0 0 +-6.104 1.483 -1.747 0 0 0 0 0 0 0 +-6.096 1.46 -1.743 0 0 0 0 0 0 0 +-6.115 1.445 -1.747 0 0 0 0 0 0 0 +-6.118 1.425 -1.747 0 0 0 0 0 0 0 +-6.126 1.417 -1.748 0 0 0 0 0 0 0 +-6.125 1.396 -1.747 0 0 0 0 0 0 0 +-6.133 1.378 -1.748 0 0 0 0 0 0 0 +-6.135 1.358 -1.747 0 0 0 0 0 0 0 +-6.138 1.339 -1.747 0 0 0 0 0 0 0 +-6.132 1.317 -1.744 0 0 0 0 0 0 0 +-6.142 1.299 -1.745 0 0 0 0 0 0 0 +-6.152 1.281 -1.747 0 0 0 0 0 0 0 +-6.158 1.272 -1.748 0 0 0 0 0 0 0 +-6.15 1.251 -1.745 0 0 0 0 0 0 0 +-6.167 1.234 -1.749 0 0 0 0 0 0 0 +-6.16 1.212 -1.745 0 0 0 0 0 0 0 +-6.166 1.193 -1.746 0 0 0 0 0 0 0 +-6.167 1.174 -1.745 0 0 0 0 0 0 0 +-6.169 1.154 -1.745 0 0 0 0 0 0 0 +-6.169 1.144 -1.744 0 0 0 0 0 0 0 +-6.178 1.125 -1.746 0 0 0 0 0 0 0 +-6.187 1.107 -1.748 0 0 0 0 0 0 0 +-6.172 1.084 -1.742 0 0 0 0 0 0 0 +-6.194 1.068 -1.748 0 0 0 0 0 0 0 +-6.184 1.046 -1.744 0 0 0 0 0 0 0 +-6.195 1.028 -1.746 0 0 0 0 0 0 0 +-6.187 1.017 -1.743 0 0 0 0 0 0 0 +-6.2 0.999 -1.746 0 0 0 0 0 0 0 +-6.196 0.978 -1.744 0 0 0 0 0 0 0 +-6.193 0.958 -1.742 0 0 0 0 0 0 0 +-6.196 0.938 -1.742 0 0 0 0 0 0 0 +-6.21 0.921 -1.745 0 0 0 0 0 0 0 +-6.205 0.9 -1.743 0 0 0 0 0 0 0 +-6.211 0.891 -1.744 0 0 0 0 0 0 0 +-6.215 0.872 -1.745 0 0 0 0 0 0 0 +-6.224 0.853 -1.747 0 0 0 0 0 0 0 +-6.494 0.87 -1.827 0 0 0 0 0 0 0 +-6.485 0.848 -1.823 0 0 0 0 0 0 0 +-6.48 0.827 -1.821 0 0 0 0 0 0 0 +-6.496 0.808 -1.825 0 0 0 0 0 0 0 +-6.489 0.787 -1.822 0 0 0 0 0 0 0 +-6.507 0.768 -1.827 0 0 0 0 0 0 0 +-6.501 0.757 -1.825 0 0 0 0 0 0 0 +-6.499 0.736 -1.823 0 0 0 0 0 0 0 +-6.494 0.715 -1.821 0 0 0 0 0 0 0 +-6.502 0.695 -1.823 0 0 0 0 0 0 0 +-6.512 0.676 -1.825 0 0 0 0 0 0 0 +-6.51 0.655 -1.824 0 0 0 0 0 0 0 +-6.504 0.633 -1.822 0 0 0 0 0 0 0 +-6.509 0.624 -1.823 0 0 0 0 0 0 0 +-6.517 0.604 -1.825 0 0 0 0 0 0 0 +-6.517 0.583 -1.824 0 0 0 0 0 0 0 +-6.515 0.562 -1.823 0 0 0 0 0 0 0 +-6.53 0.543 -1.827 0 0 0 0 0 0 0 +-6.518 0.521 -1.823 0 0 0 0 0 0 0 +-6.521 0.501 -1.823 0 0 0 0 0 0 0 +-6.524 0.491 -1.824 0 0 0 0 0 0 0 +-6.52 0.47 -1.822 0 0 0 0 0 0 0 +-6.529 0.45 -1.825 0 0 0 0 0 0 0 +-6.525 0.429 -1.823 0 0 0 0 0 0 0 +-6.522 0.408 -1.822 0 0 0 0 0 0 0 +-6.533 0.388 -1.825 0 0 0 0 0 0 0 +-6.53 0.368 -1.823 0 0 0 0 0 0 0 +-6.537 0.358 -1.825 0 0 0 0 0 0 0 +-6.526 0.337 -1.822 0 0 0 0 0 0 0 +-6.529 0.316 -1.822 0 0 0 0 0 0 0 +-6.544 0.296 -1.826 0 0 0 0 0 0 0 +-6.539 0.276 -1.825 0 0 0 0 0 0 0 +-6.549 0.255 -1.827 0 0 0 0 0 0 0 +-6.55 0.235 -1.827 0 0 0 0 0 0 0 +-6.535 0.224 -1.823 0 0 0 0 0 0 0 +-6.541 0.204 -1.825 0 0 0 0 0 0 0 +-6.546 0.183 -1.826 0 0 0 0 0 0 0 +-6.541 0.162 -1.824 0 0 0 0 0 0 0 +-6.545 0.142 -1.825 0 0 0 0 0 0 0 +-6.541 0.121 -1.824 0 0 0 0 0 0 0 +-6.54 0.101 -1.823 0 0 0 0 0 0 0 +-6.544 0.08 -1.825 0 0 0 0 0 0 0 +-6.546 0.07 -1.825 0 0 0 0 0 0 0 +-6.539 0.049 -1.823 0 0 0 0 0 0 0 +-6.541 0.029 -1.823 0 0 0 0 0 0 0 +-6.545 0.008 -1.825 0 0 0 0 0 0 0 +-6.543 -0.012 -1.824 0 0 0 0 0 0 0 +-6.55 -0.033 -1.826 0 0 0 0 0 0 0 +-6.546 -0.053 -1.825 0 0 0 0 0 0 0 +-6.546 -0.064 -1.825 0 0 0 0 0 0 0 +-6.546 -0.084 -1.825 0 0 0 0 0 0 0 +-6.544 -0.105 -1.825 0 0 0 0 0 0 0 +-6.545 -0.125 -1.825 0 0 0 0 0 0 0 +-6.549 -0.146 -1.826 0 0 0 0 0 0 0 +-6.542 -0.166 -1.825 0 0 0 0 0 0 0 +-6.548 -0.187 -1.826 0 0 0 0 0 0 0 +-6.553 -0.198 -1.828 0 0 0 0 0 0 0 +-6.549 -0.218 -1.827 0 0 0 0 0 0 0 +-6.552 -0.239 -1.828 0 0 0 0 0 0 0 +-6.547 -0.259 -1.827 0 0 0 0 0 0 0 +-6.554 -0.28 -1.829 0 0 0 0 0 0 0 +-6.532 -0.3 -1.823 0 0 0 0 0 0 0 +-6.537 -0.32 -1.825 0 0 0 0 0 0 0 +-6.532 -0.331 -1.823 0 0 0 0 0 0 0 +-6.537 -0.351 -1.825 0 0 0 0 0 0 0 +-6.547 -0.373 -1.829 0 0 0 0 0 0 0 +-6.54 -0.393 -1.827 0 0 0 0 0 0 0 +-6.528 -0.413 -1.823 0 0 0 0 0 0 0 +-6.54 -0.434 -1.827 0 0 0 0 0 0 0 +-6.533 -0.454 -1.826 0 0 0 0 0 0 0 +-6.524 -0.464 -1.823 0 0 0 0 0 0 0 +-6.536 -0.485 -1.827 0 0 0 0 0 0 0 +-6.529 -0.505 -1.826 0 0 0 0 0 0 0 +-6.541 -0.527 -1.83 0 0 0 0 0 0 0 +-6.516 -0.546 -1.823 0 0 0 0 0 0 0 +-6.526 -0.567 -1.826 0 0 0 0 0 0 0 +-6.528 -0.588 -1.827 0 0 0 0 0 0 0 +-6.523 -0.598 -1.826 0 0 0 0 0 0 0 +-6.525 -0.619 -1.827 0 0 0 0 0 0 0 +-6.529 -0.64 -1.829 0 0 0 0 0 0 0 +-6.517 -0.659 -1.826 0 0 0 0 0 0 0 +-6.528 -0.681 -1.83 0 0 0 0 0 0 0 +-6.513 -0.7 -1.826 0 0 0 0 0 0 0 +-6.507 -0.72 -1.825 0 0 0 0 0 0 0 +-6.509 -0.731 -1.826 0 0 0 0 0 0 0 +-6.507 -0.751 -1.826 0 0 0 0 0 0 0 +-6.503 -0.772 -1.826 0 0 0 0 0 0 0 +-6.516 -0.794 -1.83 0 0 0 0 0 0 0 +-6.494 -0.812 -1.825 0 0 0 0 0 0 0 +-6.495 -0.833 -1.826 0 0 0 0 0 0 0 +-6.493 -0.853 -1.826 0 0 0 0 0 0 0 +-6.492 -0.874 -1.826 0 0 0 0 0 0 0 +-6.49 -0.884 -1.826 0 0 0 0 0 0 0 +-6.486 -0.904 -1.826 0 0 0 0 0 0 0 +-6.471 -0.923 -1.822 0 0 0 0 0 0 0 +-6.472 -0.944 -1.823 0 0 0 0 0 0 0 +-6.462 -0.963 -1.821 0 0 0 0 0 0 0 +-6.464 -0.984 -1.823 0 0 0 0 0 0 0 +-6.467 -1.005 -1.825 0 0 0 0 0 0 0 +-6.467 -1.016 -1.825 0 0 0 0 0 0 0 +-6.462 -1.036 -1.825 0 0 0 0 0 0 0 +-6.463 -1.057 -1.826 0 0 0 0 0 0 0 +-6.455 -1.076 -1.825 0 0 0 0 0 0 0 +-6.463 -1.099 -1.828 0 0 0 0 0 0 0 +-6.454 -1.118 -1.826 0 0 0 0 0 0 0 +-6.447 -1.138 -1.825 0 0 0 0 0 0 0 +-6.445 -1.148 -1.825 0 0 0 0 0 0 0 +-6.445 -1.169 -1.826 0 0 0 0 0 0 0 +-6.442 -1.189 -1.826 0 0 0 0 0 0 0 +-6.434 -1.208 -1.825 0 0 0 0 0 0 0 +-6.445 -1.231 -1.83 0 0 0 0 0 0 0 +-6.436 -1.251 -1.828 0 0 0 0 0 0 0 +-6.426 -1.27 -1.826 0 0 0 0 0 0 0 +-6.432 -1.281 -1.829 0 0 0 0 0 0 0 +-6.42 -1.3 -1.826 0 0 0 0 0 0 0 +-6.42 -1.321 -1.827 0 0 0 0 0 0 0 +-6.427 -1.343 -1.831 0 0 0 0 0 0 0 +-6.411 -1.361 -1.827 0 0 0 0 0 0 0 +-6.411 -1.382 -1.829 0 0 0 0 0 0 0 +-6.418 -1.405 -1.832 0 0 0 0 0 0 0 +-6.408 -1.413 -1.83 0 0 0 0 0 0 0 +-6.409 -1.434 -1.831 0 0 0 0 0 0 0 +-6.399 -1.453 -1.83 0 0 0 0 0 0 0 +-6.398 -1.474 -1.831 0 0 0 0 0 0 0 +-6.399 -1.496 -1.833 0 0 0 0 0 0 0 +-6.398 -1.517 -1.834 0 0 0 0 0 0 0 +-6.391 -1.536 -1.833 0 0 0 0 0 0 0 +-6.398 -1.549 -1.836 0 0 0 0 0 0 0 +-6.375 -1.564 -1.83 0 0 0 0 0 0 0 +-6.392 -1.59 -1.837 0 0 0 0 0 0 0 +-6.385 -1.609 -1.837 0 0 0 0 0 0 0 +-6.38 -1.629 -1.837 0 0 0 0 0 0 0 +-6.382 -1.651 -1.839 0 0 0 0 0 0 0 +-6.381 -1.672 -1.84 0 0 0 0 0 0 0 +-6.376 -1.682 -1.839 0 0 0 0 0 0 0 +-6.382 -1.705 -1.843 0 0 0 0 0 0 0 +-6.392 -1.729 -1.847 0 0 0 0 0 0 0 +-6.349 -1.739 -1.836 0 0 0 0 0 0 0 +-6.338 -1.757 -1.834 0 0 0 0 0 0 0 +-6.316 -1.773 -1.829 0 0 0 0 0 0 0 +-6.005 -2.49 -1.812 0 0 0 0 0 0 0 +-6.032 -2.523 -1.823 0 0 0 0 0 0 0 +-6.01 -2.536 -1.818 0 0 0 0 0 0 0 +-5.995 -2.552 -1.816 0 0 0 0 0 0 0 +-5.991 -2.561 -1.816 0 0 0 0 0 0 0 +-5.976 -2.577 -1.814 0 0 0 0 0 0 0 +-5.973 -2.598 -1.815 0 0 0 0 0 0 0 +-5.953 -2.612 -1.812 0 0 0 0 0 0 0 +-5.948 -2.632 -1.813 0 0 0 0 0 0 0 +-5.94 -2.651 -1.813 0 0 0 0 0 0 0 +-5.928 -2.668 -1.812 0 0 0 0 0 0 0 +-5.917 -2.674 -1.809 0 0 0 0 0 0 0 +-5.915 -2.696 -1.812 0 0 0 0 0 0 0 +-5.917 -2.719 -1.815 0 0 0 0 0 0 0 +-5.902 -2.734 -1.813 0 0 0 0 0 0 0 +-5.898 -2.755 -1.814 0 0 0 0 0 0 0 +-5.891 -2.775 -1.815 0 0 0 0 0 0 0 +-5.869 -2.786 -1.81 0 0 0 0 0 0 0 +-5.856 -2.792 -1.808 0 0 0 0 0 0 0 +-5.857 -2.815 -1.811 0 0 0 0 0 0 0 +-5.847 -2.832 -1.81 0 0 0 0 0 0 0 +-5.85 -2.857 -1.814 0 0 0 0 0 0 0 +-5.83 -2.87 -1.811 0 0 0 0 0 0 0 +-5.827 -2.891 -1.813 0 0 0 0 0 0 0 +-5.829 -2.915 -1.817 0 0 0 0 0 0 0 +-5.795 -2.921 -1.808 0 0 0 0 0 0 0 +-5.8 -2.935 -1.812 0 0 0 0 0 0 0 +-5.781 -2.948 -1.808 0 0 0 0 0 0 0 +-5.783 -2.972 -1.812 0 0 0 0 0 0 0 +-5.771 -2.988 -1.811 0 0 0 0 0 0 0 +-5.759 -3.006 -1.81 0 0 0 0 0 0 0 +-5.745 -3.021 -1.809 0 0 0 0 0 0 0 +-5.735 -3.039 -1.809 0 0 0 0 0 0 0 +-5.731 -3.048 -1.809 0 0 0 0 0 0 0 +-5.721 -3.066 -1.809 0 0 0 0 0 0 0 +-5.713 -3.085 -1.809 0 0 0 0 0 0 0 +-5.707 -3.105 -1.81 0 0 0 0 0 0 0 +-5.702 -3.125 -1.812 0 0 0 0 0 0 0 +-5.677 -3.135 -1.807 0 0 0 0 0 0 0 +-5.676 -3.157 -1.81 0 0 0 0 0 0 0 +-5.659 -3.16 -1.806 0 0 0 0 0 0 0 +-5.657 -3.182 -1.809 0 0 0 0 0 0 0 +-5.644 -3.198 -1.808 0 0 0 0 0 0 0 +-5.634 -3.216 -1.808 0 0 0 0 0 0 0 +-5.622 -3.233 -1.807 0 0 0 0 0 0 0 +-5.617 -3.253 -1.809 0 0 0 0 0 0 0 +-5.602 -3.268 -1.807 0 0 0 0 0 0 0 +-5.595 -3.276 -1.806 0 0 0 0 0 0 0 +-5.591 -3.297 -1.809 0 0 0 0 0 0 0 +-5.587 -3.319 -1.811 0 0 0 0 0 0 0 +-5.565 -3.329 -1.807 0 0 0 0 0 0 0 +-5.566 -3.354 -1.811 0 0 0 0 0 0 0 +-5.561 -3.374 -1.813 0 0 0 0 0 0 0 +-5.548 -3.391 -1.812 0 0 0 0 0 0 0 +-5.551 -3.404 -1.815 0 0 0 0 0 0 0 +-5.519 -3.409 -1.808 0 0 0 0 0 0 0 +-5.51 -3.427 -1.808 0 0 0 0 0 0 0 +-5.512 -3.452 -1.813 0 0 0 0 0 0 0 +-5.487 -3.461 -1.808 0 0 0 0 0 0 0 +-5.484 -3.483 -1.81 0 0 0 0 0 0 0 +-5.473 -3.5 -1.81 0 0 0 0 0 0 0 +-5.464 -3.507 -1.809 0 0 0 0 0 0 0 +-5.46 -3.528 -1.812 0 0 0 0 0 0 0 +-5.449 -3.545 -1.812 0 0 0 0 0 0 0 +-5.433 -3.559 -1.81 0 0 0 0 0 0 0 +-5.404 -3.564 -1.804 0 0 0 0 0 0 0 +-5.409 -3.592 -1.809 0 0 0 0 0 0 0 +-5.385 -3.6 -1.805 0 0 0 0 0 0 0 +-5.381 -3.61 -1.805 0 0 0 0 0 0 0 +-5.379 -3.633 -1.809 0 0 0 0 0 0 0 +-5.358 -3.644 -1.805 0 0 0 0 0 0 0 +-5.345 -3.659 -1.805 0 0 0 0 0 0 0 +-5.339 -3.681 -1.807 0 0 0 0 0 0 0 +-5.325 -3.695 -1.806 0 0 0 0 0 0 0 +-5.316 -3.714 -1.807 0 0 0 0 0 0 0 +-5.303 -3.73 -1.806 0 0 0 0 0 0 0 +-5.299 -3.739 -1.807 0 0 0 0 0 0 0 +-5.285 -3.755 -1.806 0 0 0 0 0 0 0 +-5.278 -3.774 -1.808 0 0 0 0 0 0 0 +-5.257 -3.784 -1.805 0 0 0 0 0 0 0 +-5.258 -3.81 -1.809 0 0 0 0 0 0 0 +-5.239 -3.822 -1.807 0 0 0 0 0 0 0 +-5.237 -3.845 -1.81 0 0 0 0 0 0 0 +-5.24 -3.86 -1.814 0 0 0 0 0 0 0 +-5.208 -3.862 -1.806 0 0 0 0 0 0 0 +-5.2 -3.881 -1.808 0 0 0 0 0 0 0 +-5.205 -3.91 -1.814 0 0 0 0 0 0 0 +-5.185 -3.921 -1.812 0 0 0 0 0 0 0 +-5.172 -3.937 -1.812 0 0 0 0 0 0 0 +-5.168 -3.959 -1.814 0 0 0 0 0 0 0 +-5.169 -3.973 -1.817 0 0 0 0 0 0 0 +-5.161 -3.993 -1.819 0 0 0 0 0 0 0 +-5.171 -4.027 -1.827 0 0 0 0 0 0 0 +-5.147 -4.034 -1.823 0 0 0 0 0 0 0 +-5.107 -4.028 -1.813 0 0 0 0 0 0 0 +-5.073 -4.028 -1.805 0 0 0 0 0 0 0 +-5.056 -4.04 -1.803 0 0 0 0 0 0 0 +-5.06 -4.056 -1.807 0 0 0 0 0 0 0 +-5.032 -4.06 -1.801 0 0 0 0 0 0 0 +-5.024 -4.08 -1.803 0 0 0 0 0 0 0 +-5.011 -4.095 -1.803 0 0 0 0 0 0 0 +-5 -4.112 -1.804 0 0 0 0 0 0 0 +-4.982 -4.124 -1.802 0 0 0 0 0 0 0 +-4.96 -4.133 -1.798 0 0 0 0 0 0 0 +-4.954 -4.141 -1.798 0 0 0 0 0 0 0 +-4.945 -4.16 -1.8 0 0 0 0 0 0 0 +-4.937 -4.179 -1.802 0 0 0 0 0 0 0 +-4.903 -4.177 -1.794 0 0 0 0 0 0 0 +-4.901 -4.202 -1.798 0 0 0 0 0 0 0 +-4.882 -4.213 -1.796 0 0 0 0 0 0 0 +-4.868 -4.227 -1.796 0 0 0 0 0 0 0 +-4.867 -4.24 -1.798 0 0 0 0 0 0 0 +-4.856 -4.257 -1.799 0 0 0 0 0 0 0 +-4.834 -4.265 -1.796 0 0 0 0 0 0 0 +-4.825 -4.284 -1.797 0 0 0 0 0 0 0 +-4.803 -4.292 -1.794 0 0 0 0 0 0 0 +-4.791 -4.308 -1.794 0 0 0 0 0 0 0 +-4.777 -4.323 -1.794 0 0 0 0 0 0 0 +-4.764 -4.324 -1.792 0 0 0 0 0 0 0 +-4.754 -4.343 -1.793 0 0 0 0 0 0 0 +-4.743 -4.36 -1.794 0 0 0 0 0 0 0 +-4.725 -4.371 -1.793 0 0 0 0 0 0 0 +-4.707 -4.382 -1.791 0 0 0 0 0 0 0 +-4.692 -4.396 -1.79 0 0 0 0 0 0 0 +-4.68 -4.412 -1.791 0 0 0 0 0 0 0 +-4.667 -4.414 -1.789 0 0 0 0 0 0 0 +-4.666 -4.44 -1.794 0 0 0 0 0 0 0 +-4.642 -4.446 -1.79 0 0 0 0 0 0 0 +-4.627 -4.459 -1.789 0 0 0 0 0 0 0 +-4.613 -4.473 -1.789 0 0 0 0 0 0 0 +-4.597 -4.487 -1.789 0 0 0 0 0 0 0 +-4.582 -4.5 -1.788 0 0 0 0 0 0 0 +-4.572 -4.504 -1.787 0 0 0 0 0 0 0 +-4.562 -4.523 -1.789 0 0 0 0 0 0 0 +-4.55 -4.54 -1.79 0 0 0 0 0 0 0 +-4.535 -4.552 -1.789 0 0 0 0 0 0 0 +-4.515 -4.561 -1.787 0 0 0 0 0 0 0 +-4.499 -4.574 -1.786 0 0 0 0 0 0 0 +-4.488 -4.591 -1.788 0 0 0 0 0 0 0 +-4.478 -4.595 -1.786 0 0 0 0 0 0 0 +-4.457 -4.602 -1.784 0 0 0 0 0 0 0 +-4.449 -4.623 -1.786 0 0 0 0 0 0 0 +-4.432 -4.634 -1.785 0 0 0 0 0 0 0 +-4.416 -4.647 -1.785 0 0 0 0 0 0 0 +-4.401 -4.661 -1.785 0 0 0 0 0 0 0 +-4.393 -4.682 -1.788 0 0 0 0 0 0 0 +-4.383 -4.686 -1.786 0 0 0 0 0 0 0 +-4.367 -4.698 -1.786 0 0 0 0 0 0 0 +-4.346 -4.705 -1.783 0 0 0 0 0 0 0 +-4.333 -4.721 -1.784 0 0 0 0 0 0 0 +-4.32 -4.736 -1.785 0 0 0 0 0 0 0 +-4.308 -4.753 -1.786 0 0 0 0 0 0 0 +-4.287 -4.76 -1.784 0 0 0 0 0 0 0 +-4.284 -4.771 -1.785 0 0 0 0 0 0 0 +-4.261 -4.776 -1.782 0 0 0 0 0 0 0 +-4.25 -4.794 -1.784 0 0 0 0 0 0 0 +-4.228 -4.8 -1.781 0 0 0 0 0 0 0 +-4.216 -4.816 -1.782 0 0 0 0 0 0 0 +-4.2 -4.828 -1.781 0 0 0 0 0 0 0 +-4.187 -4.844 -1.782 0 0 0 0 0 0 0 +-4.17 -4.856 -1.782 0 0 0 0 0 0 0 +-4.159 -4.858 -1.78 0 0 0 0 0 0 0 +-4.149 -4.877 -1.782 0 0 0 0 0 0 0 +-4.127 -4.882 -1.78 0 0 0 0 0 0 0 +-4.111 -4.894 -1.779 0 0 0 0 0 0 0 +-4.099 -4.911 -1.781 0 0 0 0 0 0 0 +-4.081 -4.921 -1.78 0 0 0 0 0 0 0 +-4.07 -4.94 -1.782 0 0 0 0 0 0 0 +-4.059 -4.942 -1.78 0 0 0 0 0 0 0 +-4.036 -4.946 -1.777 0 0 0 0 0 0 0 +-4.029 -4.969 -1.781 0 0 0 0 0 0 0 +-4.01 -4.977 -1.779 0 0 0 0 0 0 0 +-3.994 -4.989 -1.779 0 0 0 0 0 0 0 +-3.98 -5.003 -1.78 0 0 0 0 0 0 0 +-3.973 -5.028 -1.784 0 0 0 0 0 0 0 +-3.952 -5.018 -1.778 0 0 0 0 0 0 0 +-3.935 -5.029 -1.777 0 0 0 0 0 0 0 +-3.928 -5.051 -1.781 0 0 0 0 0 0 0 +-3.904 -5.053 -1.777 0 0 0 0 0 0 0 +-3.89 -5.068 -1.778 0 0 0 0 0 0 0 +-3.88 -5.088 -1.781 0 0 0 0 0 0 0 +-3.856 -5.09 -1.777 0 0 0 0 0 0 0 +-3.85 -5.099 -1.778 0 0 0 0 0 0 0 +-3.842 -5.122 -1.782 0 0 0 0 0 0 0 +-3.823 -5.129 -1.781 0 0 0 0 0 0 0 +-3.811 -5.147 -1.783 0 0 0 0 0 0 0 +-3.808 -5.176 -1.789 0 0 0 0 0 0 0 +-3.79 -5.186 -1.789 0 0 0 0 0 0 0 +-3.772 -5.195 -1.788 0 0 0 0 0 0 0 +-3.775 -5.217 -1.793 0 0 0 0 0 0 0 +-3.755 -5.224 -1.792 0 0 0 0 0 0 0 +-3.743 -5.242 -1.794 0 0 0 0 0 0 0 +-3.742 -5.275 -1.802 0 0 0 0 0 0 0 +-3.702 -5.254 -1.79 0 0 0 0 0 0 0 +-3.697 -5.282 -1.796 0 0 0 0 0 0 0 +-3.678 -5.29 -1.794 0 0 0 0 0 0 0 +-3.68 -5.31 -1.8 0 0 0 0 0 0 0 +-3.672 -5.334 -1.804 0 0 0 0 0 0 0 +-3.668 -5.364 -1.811 0 0 0 0 0 0 0 +-3.631 -5.348 -1.801 0 0 0 0 0 0 0 +-3.601 -5.338 -1.793 0 0 0 0 0 0 0 +-3.578 -5.342 -1.79 0 0 0 0 0 0 0 +-3.555 -5.343 -1.787 0 0 0 0 0 0 0 +-3.547 -5.349 -1.787 0 0 0 0 0 0 0 +-3.533 -5.365 -1.789 0 0 0 0 0 0 0 +-3.509 -5.365 -1.785 0 0 0 0 0 0 0 +-3.495 -5.38 -1.786 0 0 0 0 0 0 0 +-3.476 -5.388 -1.785 0 0 0 0 0 0 0 +-3.442 -5.372 -1.776 0 0 0 0 0 0 0 +-3.431 -5.392 -1.779 0 0 0 0 0 0 0 +-3.419 -5.393 -1.777 0 0 0 0 0 0 0 +-3.415 -5.423 -1.784 0 0 0 0 0 0 0 +-3.393 -5.425 -1.781 0 0 0 0 0 0 0 +-3.374 -5.434 -1.781 0 0 0 0 0 0 0 +-3.352 -5.437 -1.778 0 0 0 0 0 0 0 +-3.342 -5.459 -1.782 0 0 0 0 0 0 0 +-3.324 -5.468 -1.781 0 0 0 0 0 0 0 +-3.312 -5.466 -1.779 0 0 0 0 0 0 0 +-3.3 -5.487 -1.782 0 0 0 0 0 0 0 +-3.281 -5.494 -1.781 0 0 0 0 0 0 0 +-3.263 -5.502 -1.781 0 0 0 0 0 0 0 +-3.245 -5.511 -1.78 0 0 0 0 0 0 0 +-3.224 -5.516 -1.778 0 0 0 0 0 0 0 +-3.209 -5.529 -1.78 0 0 0 0 0 0 0 +-3.2 -5.534 -1.78 0 0 0 0 0 0 0 +-3.181 -5.541 -1.778 0 0 0 0 0 0 0 +-3.161 -5.546 -1.777 0 0 0 0 0 0 0 +-3.148 -5.564 -1.78 0 0 0 0 0 0 0 +-3.128 -5.569 -1.778 0 0 0 0 0 0 0 +-3.113 -5.584 -1.78 0 0 0 0 0 0 0 +-3.087 -5.579 -1.774 0 0 0 0 0 0 0 +-3.082 -5.59 -1.777 0 0 0 0 0 0 0 +-3.062 -5.597 -1.776 0 0 0 0 0 0 0 +-3.042 -5.601 -1.774 0 0 0 0 0 0 0 +-3.026 -5.614 -1.775 0 0 0 0 0 0 0 +-3.007 -5.62 -1.774 0 0 0 0 0 0 0 +-2.989 -5.63 -1.774 0 0 0 0 0 0 0 +-2.979 -5.652 -1.778 0 0 0 0 0 0 0 +-2.97 -5.657 -1.778 0 0 0 0 0 0 0 +-2.946 -5.655 -1.774 0 0 0 0 0 0 0 +-2.934 -5.676 -1.778 0 0 0 0 0 0 0 +-2.919 -5.69 -1.78 0 0 0 0 0 0 0 +-2.894 -5.685 -1.776 0 0 0 0 0 0 0 +-2.878 -5.698 -1.777 0 0 0 0 0 0 0 +-2.857 -5.7 -1.774 0 0 0 0 0 0 0 +-2.844 -5.719 -1.778 0 0 0 0 0 0 0 +-2.837 -5.727 -1.779 0 0 0 0 0 0 0 +-2.817 -5.733 -1.778 0 0 0 0 0 0 0 +-2.792 -5.728 -1.773 0 0 0 0 0 0 0 +-2.777 -5.742 -1.775 0 0 0 0 0 0 0 +-2.757 -5.747 -1.774 0 0 0 0 0 0 0 +-2.74 -5.757 -1.774 0 0 0 0 0 0 0 +-2.724 -5.771 -1.776 0 0 0 0 0 0 0 +-2.714 -5.774 -1.776 0 0 0 0 0 0 0 +-2.697 -5.784 -1.776 0 0 0 0 0 0 0 +-2.673 -5.78 -1.772 0 0 0 0 0 0 0 +-2.656 -5.792 -1.773 0 0 0 0 0 0 0 +-2.637 -5.799 -1.773 0 0 0 0 0 0 0 +-2.619 -5.807 -1.773 0 0 0 0 0 0 0 +-2.611 -5.813 -1.773 0 0 0 0 0 0 0 +-2.592 -5.819 -1.773 0 0 0 0 0 0 0 +-2.57 -5.82 -1.77 0 0 0 0 0 0 0 +-2.557 -5.839 -1.774 0 0 0 0 0 0 0 +-2.541 -5.854 -1.776 0 0 0 0 0 0 0 +-2.516 -5.846 -1.771 0 0 0 0 0 0 0 +-2.498 -5.856 -1.772 0 0 0 0 0 0 0 +-2.483 -5.87 -1.774 0 0 0 0 0 0 0 +-2.48 -5.888 -1.778 0 0 0 0 0 0 0 +-2.454 -5.878 -1.773 0 0 0 0 0 0 0 +-2.441 -5.9 -1.777 0 0 0 0 0 0 0 +-2.423 -5.908 -1.777 0 0 0 0 0 0 0 +-2.399 -5.903 -1.773 0 0 0 0 0 0 0 +-2.38 -5.909 -1.773 0 0 0 0 0 0 0 +-2.363 -5.922 -1.774 0 0 0 0 0 0 0 +-2.361 -5.943 -1.78 0 0 0 0 0 0 0 +-2.356 -5.984 -1.791 0 0 0 0 0 0 0 +-2.36 -6.049 -1.809 0 0 0 0 0 0 0 +-2.332 -6.033 -1.802 0 0 0 0 0 0 0 +-2.306 -6.024 -1.797 0 0 0 0 0 0 0 +-2.265 -5.974 -1.778 0 0 0 0 0 0 0 +-2.243 -5.972 -1.776 0 0 0 0 0 0 0 +-2.226 -5.954 -1.769 0 0 0 0 0 0 0 +-2.217 -5.988 -1.777 0 0 0 0 0 0 0 +-2.187 -5.965 -1.768 0 0 0 0 0 0 0 +-2.161 -5.952 -1.761 0 0 0 0 0 0 0 +-2.139 -5.949 -1.759 0 0 0 0 0 0 0 +-2.12 -5.954 -1.758 0 0 0 0 0 0 0 +-2.1 -5.959 -1.757 0 0 0 0 0 0 0 +-2.088 -5.955 -1.755 0 0 0 0 0 0 0 +-2.071 -5.965 -1.756 0 0 0 0 0 0 0 +-2.049 -5.963 -1.753 0 0 0 0 0 0 0 +-2.031 -5.971 -1.754 0 0 0 0 0 0 0 +-2.009 -5.968 -1.751 0 0 0 0 0 0 0 +-1.99 -5.974 -1.751 0 0 0 0 0 0 0 +-1.973 -5.986 -1.753 0 0 0 0 0 0 0 +-1.959 -5.975 -1.748 0 0 0 0 0 0 0 +-1.94 -5.979 -1.748 0 0 0 0 0 0 0 +-1.921 -5.987 -1.748 0 0 0 0 0 0 0 +-1.9 -5.986 -1.746 0 0 0 0 0 0 0 +-1.881 -5.99 -1.745 0 0 0 0 0 0 0 +-1.864 -6.001 -1.747 0 0 0 0 0 0 0 +-1.843 -6.001 -1.745 0 0 0 0 0 0 0 +-1.833 -6.001 -1.744 0 0 0 0 0 0 0 +-1.817 -6.015 -1.747 0 0 0 0 0 0 0 +-1.793 -6.005 -1.742 0 0 0 0 0 0 0 +-1.774 -6.012 -1.743 0 0 0 0 0 0 0 +-1.755 -6.016 -1.742 0 0 0 0 0 0 0 +-1.734 -6.016 -1.74 0 0 0 0 0 0 0 +-1.713 -6.014 -1.738 0 0 0 0 0 0 0 +-1.704 -6.018 -1.739 0 0 0 0 0 0 0 +-1.68 -6.003 -1.732 0 0 0 0 0 0 0 +-1.666 -6.025 -1.737 0 0 0 0 0 0 0 +-1.643 -6.018 -1.733 0 0 0 0 0 0 0 +-1.624 -6.021 -1.733 0 0 0 0 0 0 0 +-1.604 -6.022 -1.732 0 0 0 0 0 0 0 +-1.586 -6.033 -1.733 0 0 0 0 0 0 0 +-1.578 -6.039 -1.735 0 0 0 0 0 0 0 +-1.557 -6.038 -1.733 0 0 0 0 0 0 0 +-1.537 -6.039 -1.732 0 0 0 0 0 0 0 +-1.517 -6.039 -1.73 0 0 0 0 0 0 0 +-1.501 -6.055 -1.733 0 0 0 0 0 0 0 +-1.481 -6.056 -1.732 0 0 0 0 0 0 0 +-1.462 -6.062 -1.733 0 0 0 0 0 0 0 +-1.45 -6.051 -1.729 0 0 0 0 0 0 0 +-1.426 -6.037 -1.723 0 0 0 0 0 0 0 +-1.409 -6.051 -1.726 0 0 0 0 0 0 0 +-1.391 -6.059 -1.727 0 0 0 0 0 0 0 +-1.373 -6.065 -1.728 0 0 0 0 0 0 0 +-1.354 -6.073 -1.729 0 0 0 0 0 0 0 +-1.334 -6.072 -1.727 0 0 0 0 0 0 0 +-1.324 -6.074 -1.727 0 0 0 0 0 0 0 +-1.305 -6.076 -1.727 0 0 0 0 0 0 0 +-1.285 -6.075 -1.725 0 0 0 0 0 0 0 +-1.268 -6.092 -1.729 0 0 0 0 0 0 0 +-1.252 -6.109 -1.733 0 0 0 0 0 0 0 +-1.233 -6.115 -1.733 0 0 0 0 0 0 0 +-1.211 -6.105 -1.729 0 0 0 0 0 0 0 +-1.201 -6.104 -1.728 0 0 0 0 0 0 0 +-1.178 -6.09 -1.723 0 0 0 0 0 0 0 +-1.16 -6.096 -1.724 0 0 0 0 0 0 0 +-1.142 -6.105 -1.725 0 0 0 0 0 0 0 +-1.123 -6.111 -1.726 0 0 0 0 0 0 0 +-1.103 -6.11 -1.725 0 0 0 0 0 0 0 +-1.084 -6.114 -1.725 0 0 0 0 0 0 0 +-1.074 -6.117 -1.725 0 0 0 0 0 0 0 +-1.058 -6.138 -1.731 0 0 0 0 0 0 0 +-1.04 -6.149 -1.733 0 0 0 0 0 0 0 +-1.021 -6.15 -1.732 0 0 0 0 0 0 0 +-1 -6.145 -1.73 0 0 0 0 0 0 0 +-0.981 -6.15 -1.731 0 0 0 0 0 0 0 +-0.962 -6.157 -1.732 0 0 0 0 0 0 0 +-0.953 -6.163 -1.733 0 0 0 0 0 0 0 +-0.932 -6.154 -1.729 0 0 0 0 0 0 0 +-0.914 -6.167 -1.732 0 0 0 0 0 0 0 +-0.894 -6.168 -1.732 0 0 0 0 0 0 0 +-0.874 -6.165 -1.73 0 0 0 0 0 0 0 +-0.857 -6.183 -1.735 0 0 0 0 0 0 0 +-0.836 -6.172 -1.731 0 0 0 0 0 0 0 +-0.825 -6.166 -1.728 0 0 0 0 0 0 0 +-0.806 -6.17 -1.729 0 0 0 0 0 0 0 +-0.786 -6.171 -1.728 0 0 0 0 0 0 0 +-0.768 -6.185 -1.732 0 0 0 0 0 0 0 +-0.749 -6.187 -1.732 0 0 0 0 0 0 0 +-0.728 -6.18 -1.729 0 0 0 0 0 0 0 +-0.711 -6.197 -1.733 0 0 0 0 0 0 0 +-0.691 -6.199 -1.733 0 0 0 0 0 0 0 +-0.681 -6.2 -1.733 0 0 0 0 0 0 0 +-0.662 -6.199 -1.732 0 0 0 0 0 0 0 +-0.642 -6.201 -1.732 0 0 0 0 0 0 0 +-0.622 -6.199 -1.731 0 0 0 0 0 0 0 +-0.602 -6.197 -1.73 0 0 0 0 0 0 0 +-0.584 -6.207 -1.732 0 0 0 0 0 0 0 +-0.564 -6.21 -1.733 0 0 0 0 0 0 0 +-0.554 -6.202 -1.73 0 0 0 0 0 0 0 +-0.534 -6.205 -1.731 0 0 0 0 0 0 0 +-0.516 -6.218 -1.734 0 0 0 0 0 0 0 +-0.495 -6.207 -1.73 0 0 0 0 0 0 0 +-0.476 -6.21 -1.731 0 0 0 0 0 0 0 +-0.456 -6.211 -1.731 0 0 0 0 0 0 0 +-0.446 -6.21 -1.73 0 0 0 0 0 0 0 +-0.427 -6.217 -1.732 0 0 0 0 0 0 0 +-0.408 -6.221 -1.732 0 0 0 0 0 0 0 +-0.388 -6.214 -1.73 0 0 0 0 0 0 0 +-0.369 -6.229 -1.734 0 0 0 0 0 0 0 +-0.35 -6.23 -1.734 0 0 0 0 0 0 0 +-0.33 -6.229 -1.733 0 0 0 0 0 0 0 +-0.311 -6.238 -1.736 0 0 0 0 0 0 0 +-0.301 -6.238 -1.736 0 0 0 0 0 0 0 +-0.281 -6.237 -1.735 0 0 0 0 0 0 0 +-0.262 -6.236 -1.735 0 0 0 0 0 0 0 +-0.242 -6.245 -1.737 0 0 0 0 0 0 0 +-0.223 -6.245 -1.737 0 0 0 0 0 0 0 +-0.203 -6.25 -1.738 0 0 0 0 0 0 0 +-0.184 -6.254 -1.739 0 0 0 0 0 0 0 +-0.174 -6.256 -1.74 0 0 0 0 0 0 0 +-0.154 -6.257 -1.74 0 0 0 0 0 0 0 +-0.135 -6.259 -1.74 0 0 0 0 0 0 0 +-0.115 -6.273 -1.744 0 0 0 0 0 0 0 +-0.096 -6.275 -1.745 0 0 0 0 0 0 0 +-0.076 -6.26 -1.74 0 0 0 0 0 0 0 +-0.056 -6.262 -1.741 0 0 0 0 0 0 0 +-0.046 -6.282 -1.747 0 0 0 0 0 0 0 +-0.027 -6.276 -1.745 0 0 0 0 0 0 0 +-0.007 -6.286 -1.748 0 0 0 0 0 0 0 +0.013 -6.274 -1.744 0 0 0 0 0 0 0 +0.032 -6.276 -1.745 0 0 0 0 0 0 0 +0.052 -6.28 -1.746 0 0 0 0 0 0 0 +0.072 -6.268 -1.743 0 0 0 0 0 0 0 +0.082 -6.281 -1.747 0 0 0 0 0 0 0 +0.102 -6.285 -1.748 0 0 0 0 0 0 0 +0.122 -6.296 -1.751 0 0 0 0 0 0 0 +0.141 -6.288 -1.749 0 0 0 0 0 0 0 +0.161 -6.293 -1.751 0 0 0 0 0 0 0 +0.181 -6.298 -1.752 0 0 0 0 0 0 0 +0.201 -6.302 -1.753 0 0 0 0 0 0 0 +0.211 -6.299 -1.753 0 0 0 0 0 0 0 +0.231 -6.322 -1.76 0 0 0 0 0 0 0 +0.25 -6.302 -1.754 0 0 0 0 0 0 0 +0.27 -6.303 -1.755 0 0 0 0 0 0 0 +0.29 -6.296 -1.753 0 0 0 0 0 0 0 +0.31 -6.305 -1.756 0 0 0 0 0 0 0 +0.329 -6.296 -1.753 0 0 0 0 0 0 0 +0.339 -6.296 -1.753 0 0 0 0 0 0 0 +0.36 -6.308 -1.757 0 0 0 0 0 0 0 +0.379 -6.295 -1.754 0 0 0 0 0 0 0 +0.399 -6.294 -1.754 0 0 0 0 0 0 0 +0.42 -6.31 -1.759 0 0 0 0 0 0 0 +0.439 -6.295 -1.755 0 0 0 0 0 0 0 +0.46 -6.313 -1.761 0 0 0 0 0 0 0 +0.467 -6.28 -1.751 0 0 0 0 0 0 0 +0.488 -6.288 -1.754 0 0 0 0 0 0 0 +0.507 -6.286 -1.754 0 0 0 0 0 0 0 +0.528 -6.296 -1.757 0 0 0 0 0 0 0 +0.548 -6.291 -1.756 0 0 0 0 0 0 0 +0.567 -6.285 -1.755 0 0 0 0 0 0 0 +0.588 -6.293 -1.758 0 0 0 0 0 0 0 +0.597 -6.29 -1.757 0 0 0 0 0 0 0 +0.615 -6.271 -1.752 0 0 0 0 0 0 0 +0.637 -6.284 -1.757 0 0 0 0 0 0 0 +0.655 -6.269 -1.753 0 0 0 0 0 0 0 +0.677 -6.284 -1.758 0 0 0 0 0 0 0 +0.695 -6.267 -1.753 0 0 0 0 0 0 0 +0.715 -6.27 -1.755 0 0 0 0 0 0 0 +0.725 -6.273 -1.756 0 0 0 0 0 0 0 +0.746 -6.278 -1.759 0 0 0 0 0 0 0 +0.766 -6.276 -1.759 0 0 0 0 0 0 0 +0.785 -6.273 -1.759 0 0 0 0 0 0 0 +0.805 -6.269 -1.758 0 0 0 0 0 0 0 +0.823 -6.259 -1.756 0 0 0 0 0 0 0 +0.845 -6.269 -1.76 0 0 0 0 0 0 0 +0.855 -6.268 -1.76 0 0 0 0 0 0 0 +0.875 -6.273 -1.762 0 0 0 0 0 0 0 +0.897 -6.287 -1.767 0 0 0 0 0 0 0 +0.917 -6.282 -1.766 0 0 0 0 0 0 0 +0.935 -6.268 -1.763 0 0 0 0 0 0 0 +0.954 -6.259 -1.761 0 0 0 0 0 0 0 +0.975 -6.264 -1.764 0 0 0 0 0 0 0 +0.985 -6.266 -1.765 0 0 0 0 0 0 0 +1.01 -6.293 -1.774 0 0 0 0 0 0 0 +1.025 -6.266 -1.766 0 0 0 0 0 0 0 +1.044 -6.255 -1.764 0 0 0 0 0 0 0 +1.064 -6.253 -1.765 0 0 0 0 0 0 0 +1.084 -6.256 -1.766 0 0 0 0 0 0 0 +1.103 -6.248 -1.765 0 0 0 0 0 0 0 +1.116 -6.262 -1.77 0 0 0 0 0 0 0 +1.135 -6.258 -1.77 0 0 0 0 0 0 0 +1.154 -6.249 -1.768 0 0 0 0 0 0 0 +1.174 -6.249 -1.769 0 0 0 0 0 0 0 +1.196 -6.257 -1.773 0 0 0 0 0 0 0 +1.215 -6.251 -1.772 0 0 0 0 0 0 0 +1.238 -6.26 -1.776 0 0 0 0 0 0 0 +1.244 -6.242 -1.771 0 0 0 0 0 0 0 +1.265 -6.241 -1.772 0 0 0 0 0 0 0 +1.286 -6.249 -1.776 0 0 0 0 0 0 0 +1.305 -6.241 -1.774 0 0 0 0 0 0 0 +1.327 -6.246 -1.777 0 0 0 0 0 0 0 +1.348 -6.249 -1.78 0 0 0 0 0 0 0 +1.366 -6.236 -1.777 0 0 0 0 0 0 0 +1.376 -6.235 -1.777 0 0 0 0 0 0 0 +1.392 -6.216 -1.773 0 0 0 0 0 0 0 +1.415 -6.229 -1.778 0 0 0 0 0 0 0 +1.439 -6.243 -1.784 0 0 0 0 0 0 0 +1.458 -6.234 -1.782 0 0 0 0 0 0 0 +1.476 -6.224 -1.781 0 0 0 0 0 0 0 +1.494 -6.21 -1.778 0 0 0 0 0 0 0 +1.506 -6.221 -1.782 0 0 0 0 0 0 0 +1.527 -6.22 -1.783 0 0 0 0 0 0 0 +1.547 -6.219 -1.784 0 0 0 0 0 0 0 +1.565 -6.206 -1.782 0 0 0 0 0 0 0 +1.589 -6.218 -1.787 0 0 0 0 0 0 0 +1.607 -6.208 -1.785 0 0 0 0 0 0 0 +1.629 -6.214 -1.789 0 0 0 0 0 0 0 +1.639 -6.213 -1.789 0 0 0 0 0 0 0 +2.774 -5.866 -1.808 0 0 0 0 0 0 0 +2.796 -5.864 -1.81 0 0 0 0 0 0 0 +2.826 -5.881 -1.819 0 0 0 0 0 0 0 +2.845 -5.873 -1.819 0 0 0 0 0 0 0 +2.859 -5.855 -1.816 0 0 0 0 0 0 0 +2.878 -5.848 -1.817 0 0 0 0 0 0 0 +2.895 -5.835 -1.815 0 0 0 0 0 0 0 +2.918 -5.836 -1.819 0 0 0 0 0 0 0 +2.928 -5.832 -1.819 0 0 0 0 0 0 0 +2.943 -5.816 -1.817 0 0 0 0 0 0 0 +2.957 -5.8 -1.814 0 0 0 0 0 0 0 +2.98 -5.799 -1.817 0 0 0 0 0 0 0 +3.003 -5.8 -1.821 0 0 0 0 0 0 0 +3.022 -5.792 -1.821 0 0 0 0 0 0 0 +3.043 -5.787 -1.823 0 0 0 0 0 0 0 +3.069 -5.815 -1.834 0 0 0 0 0 0 0 +3.104 -5.837 -1.845 0 0 0 0 0 0 0 +3.125 -5.831 -1.846 0 0 0 0 0 0 0 +3.142 -5.82 -1.845 0 0 0 0 0 0 0 +3.157 -5.805 -1.843 0 0 0 0 0 0 0 +3.172 -5.788 -1.841 0 0 0 0 0 0 0 +3.185 -5.79 -1.843 0 0 0 0 0 0 0 +3.2 -5.775 -1.842 0 0 0 0 0 0 0 +3.219 -5.766 -1.842 0 0 0 0 0 0 0 +3.234 -5.749 -1.84 0 0 0 0 0 0 0 +3.25 -5.736 -1.839 0 0 0 0 0 0 0 +3.264 -5.719 -1.837 0 0 0 0 0 0 0 +3.29 -5.722 -1.841 0 0 0 0 0 0 0 +3.292 -5.705 -1.837 0 0 0 0 0 0 0 +3.313 -5.7 -1.839 0 0 0 0 0 0 0 +3.325 -5.679 -1.835 0 0 0 0 0 0 0 +3.35 -5.682 -1.84 0 0 0 0 0 0 0 +3.37 -5.675 -1.841 0 0 0 0 0 0 0 +3.383 -5.656 -1.838 0 0 0 0 0 0 0 +3.399 -5.642 -1.837 0 0 0 0 0 0 0 +3.41 -5.64 -1.838 0 0 0 0 0 0 0 +3.425 -5.626 -1.837 0 0 0 0 0 0 0 +3.434 -5.6 -1.832 0 0 0 0 0 0 0 +3.452 -5.59 -1.832 0 0 0 0 0 0 0 +3.464 -5.571 -1.829 0 0 0 0 0 0 0 +3.477 -5.552 -1.826 0 0 0 0 0 0 0 +3.493 -5.539 -1.826 0 0 0 0 0 0 0 +3.508 -5.525 -1.825 0 0 0 0 0 0 0 +3.515 -5.516 -1.823 0 0 0 0 0 0 0 +3.532 -5.505 -1.823 0 0 0 0 0 0 0 +3.553 -5.499 -1.825 0 0 0 0 0 0 0 +3.573 -5.492 -1.827 0 0 0 0 0 0 0 +3.594 -5.487 -1.829 0 0 0 0 0 0 0 +3.605 -5.466 -1.826 0 0 0 0 0 0 0 +3.627 -5.462 -1.828 0 0 0 0 0 0 0 +3.636 -5.457 -1.829 0 0 0 0 0 0 0 +3.65 -5.441 -1.827 0 0 0 0 0 0 0 +3.668 -5.431 -1.827 0 0 0 0 0 0 0 +3.686 -5.42 -1.827 0 0 0 0 0 0 0 +3.693 -5.394 -1.822 0 0 0 0 0 0 0 +3.703 -5.373 -1.819 0 0 0 0 0 0 0 +3.727 -5.371 -1.822 0 0 0 0 0 0 0 +3.737 -5.368 -1.823 0 0 0 0 0 0 0 +3.76 -5.364 -1.826 0 0 0 0 0 0 0 +3.77 -5.343 -1.823 0 0 0 0 0 0 0 +3.795 -5.343 -1.827 0 0 0 0 0 0 0 +3.806 -5.322 -1.824 0 0 0 0 0 0 0 +3.827 -5.316 -1.826 0 0 0 0 0 0 0 +3.836 -5.312 -1.827 0 0 0 0 0 0 0 +3.848 -5.294 -1.825 0 0 0 0 0 0 0 +3.864 -5.28 -1.824 0 0 0 0 0 0 0 +3.886 -5.275 -1.827 0 0 0 0 0 0 0 +3.9 -5.26 -1.826 0 0 0 0 0 0 0 +3.916 -5.246 -1.825 0 0 0 0 0 0 0 +3.937 -5.24 -1.827 0 0 0 0 0 0 0 +3.96 -5.237 -1.831 0 0 0 0 0 0 0 +3.961 -5.221 -1.827 0 0 0 0 0 0 0 +3.975 -5.206 -1.826 0 0 0 0 0 0 0 +3.993 -5.195 -1.827 0 0 0 0 0 0 0 +4.01 -5.184 -1.827 0 0 0 0 0 0 0 +4.028 -5.173 -1.828 0 0 0 0 0 0 0 +4.045 -5.162 -1.829 0 0 0 0 0 0 0 +4.07 -5.159 -1.833 0 0 0 0 0 0 0 +4.07 -5.143 -1.829 0 0 0 0 0 0 0 +4.09 -5.136 -1.831 0 0 0 0 0 0 0 +4.108 -5.124 -1.831 0 0 0 0 0 0 0 +4.123 -5.11 -1.831 0 0 0 0 0 0 0 +4.14 -5.098 -1.831 0 0 0 0 0 0 0 +4.156 -5.085 -1.831 0 0 0 0 0 0 0 +4.165 -5.063 -1.828 0 0 0 0 0 0 0 +4.175 -5.06 -1.829 0 0 0 0 0 0 0 +4.192 -5.048 -1.83 0 0 0 0 0 0 0 +4.201 -5.026 -1.826 0 0 0 0 0 0 0 +4.222 -5.02 -1.829 0 0 0 0 0 0 0 +4.244 -5.014 -1.832 0 0 0 0 0 0 0 +4.254 -4.994 -1.829 0 0 0 0 0 0 0 +4.272 -4.983 -1.83 0 0 0 0 0 0 0 +4.279 -4.975 -1.83 0 0 0 0 0 0 0 +4.295 -4.963 -1.83 0 0 0 0 0 0 0 +4.309 -4.947 -1.829 0 0 0 0 0 0 0 +4.324 -4.933 -1.829 0 0 0 0 0 0 0 +4.336 -4.915 -1.827 0 0 0 0 0 0 0 +4.34 -4.888 -1.822 0 0 0 0 0 0 0 +4.359 -4.895 -1.827 0 0 0 0 0 0 0 +4.367 -4.872 -1.824 0 0 0 0 0 0 0 +4.381 -4.857 -1.823 0 0 0 0 0 0 0 +4.398 -4.846 -1.825 0 0 0 0 0 0 0 +4.415 -4.834 -1.825 0 0 0 0 0 0 0 +4.43 -4.82 -1.825 0 0 0 0 0 0 0 +4.435 -4.795 -1.821 0 0 0 0 0 0 0 +4.454 -4.785 -1.822 0 0 0 0 0 0 0 +4.455 -4.771 -1.819 0 0 0 0 0 0 0 +4.474 -4.761 -1.821 0 0 0 0 0 0 0 +4.489 -4.747 -1.821 0 0 0 0 0 0 0 +4.502 -4.731 -1.821 0 0 0 0 0 0 0 +4.52 -4.72 -1.822 0 0 0 0 0 0 0 +4.53 -4.702 -1.82 0 0 0 0 0 0 0 +4.547 -4.689 -1.821 0 0 0 0 0 0 0 +4.549 -4.676 -1.818 0 0 0 0 0 0 0 +4.566 -4.665 -1.819 0 0 0 0 0 0 0 +4.579 -4.649 -1.819 0 0 0 0 0 0 0 +4.582 -4.622 -1.814 0 0 0 0 0 0 0 +4.593 -4.605 -1.813 0 0 0 0 0 0 0 +4.613 -4.596 -1.815 0 0 0 0 0 0 0 +4.62 -4.573 -1.812 0 0 0 0 0 0 0 +4.62 -4.559 -1.809 0 0 0 0 0 0 0 +4.633 -4.543 -1.808 0 0 0 0 0 0 0 +4.655 -4.537 -1.812 0 0 0 0 0 0 0 +4.67 -4.522 -1.812 0 0 0 0 0 0 0 +4.695 -4.518 -1.816 0 0 0 0 0 0 0 +4.698 -4.493 -1.812 0 0 0 0 0 0 0 +4.713 -4.479 -1.812 0 0 0 0 0 0 0 +4.715 -4.467 -1.81 0 0 0 0 0 0 0 +4.737 -4.46 -1.813 0 0 0 0 0 0 0 +4.746 -4.44 -1.811 0 0 0 0 0 0 0 +4.76 -4.425 -1.811 0 0 0 0 0 0 0 +4.764 -4.401 -1.807 0 0 0 0 0 0 0 +4.777 -4.386 -1.807 0 0 0 0 0 0 0 +4.795 -4.374 -1.809 0 0 0 0 0 0 0 +4.801 -4.366 -1.808 0 0 0 0 0 0 0 +4.819 -4.354 -1.81 0 0 0 0 0 0 0 +4.821 -4.329 -1.805 0 0 0 0 0 0 0 +4.84 -4.319 -1.808 0 0 0 0 0 0 0 +4.854 -4.304 -1.808 0 0 0 0 0 0 0 +4.859 -4.281 -1.804 0 0 0 0 0 0 0 +4.869 -4.263 -1.803 0 0 0 0 0 0 0 +4.879 -4.258 -1.804 0 0 0 0 0 0 0 +4.887 -4.237 -1.802 0 0 0 0 0 0 0 +4.903 -4.224 -1.803 0 0 0 0 0 0 0 +4.909 -4.203 -1.8 0 0 0 0 0 0 0 +4.919 -4.185 -1.799 0 0 0 0 0 0 0 +4.932 -4.169 -1.799 0 0 0 0 0 0 0 +4.958 -4.165 -1.804 0 0 0 0 0 0 0 +4.955 -4.149 -1.8 0 0 0 0 0 0 0 +4.975 -4.139 -1.803 0 0 0 0 0 0 0 +4.989 -4.125 -1.804 0 0 0 0 0 0 0 +4.998 -4.105 -1.802 0 0 0 0 0 0 0 +5.009 -4.088 -1.801 0 0 0 0 0 0 0 +5.013 -4.065 -1.798 0 0 0 0 0 0 0 +5.027 -4.051 -1.798 0 0 0 0 0 0 0 +5.025 -4.036 -1.795 0 0 0 0 0 0 0 +5.036 -4.019 -1.794 0 0 0 0 0 0 0 +5.053 -4.006 -1.796 0 0 0 0 0 0 0 +5.066 -3.991 -1.796 0 0 0 0 0 0 0 +5.069 -3.967 -1.793 0 0 0 0 0 0 0 +5.085 -3.954 -1.794 0 0 0 0 0 0 0 +5.089 -3.932 -1.791 0 0 0 0 0 0 0 +5.093 -3.922 -1.79 0 0 0 0 0 0 0 +5.119 -3.916 -1.795 0 0 0 0 0 0 0 +5.123 -3.894 -1.792 0 0 0 0 0 0 0 +5.126 -3.871 -1.789 0 0 0 0 0 0 0 +5.14 -3.856 -1.789 0 0 0 0 0 0 0 +5.15 -3.839 -1.789 0 0 0 0 0 0 0 +5.161 -3.822 -1.788 0 0 0 0 0 0 0 +5.162 -3.81 -1.786 0 0 0 0 0 0 0 +5.171 -3.791 -1.785 0 0 0 0 0 0 0 +5.186 -3.777 -1.786 0 0 0 0 0 0 0 +5.197 -3.76 -1.786 0 0 0 0 0 0 0 +5.208 -3.744 -1.786 0 0 0 0 0 0 0 +5.225 -3.731 -1.788 0 0 0 0 0 0 0 +5.235 -3.713 -1.787 0 0 0 0 0 0 0 +5.245 -3.708 -1.789 0 0 0 0 0 0 0 +5.243 -3.682 -1.784 0 0 0 0 0 0 0 +5.251 -3.663 -1.782 0 0 0 0 0 0 0 +5.258 -3.643 -1.781 0 0 0 0 0 0 0 +5.268 -3.626 -1.78 0 0 0 0 0 0 0 +5.286 -3.613 -1.782 0 0 0 0 0 0 0 +5.283 -3.587 -1.777 0 0 0 0 0 0 0 +5.293 -3.582 -1.779 0 0 0 0 0 0 0 +5.303 -3.564 -1.778 0 0 0 0 0 0 0 +5.306 -3.542 -1.776 0 0 0 0 0 0 0 +5.325 -3.531 -1.778 0 0 0 0 0 0 0 +5.333 -3.512 -1.777 0 0 0 0 0 0 0 +5.342 -3.494 -1.777 0 0 0 0 0 0 0 +5.345 -3.472 -1.774 0 0 0 0 0 0 0 +5.362 -3.471 -1.778 0 0 0 0 0 0 0 +5.366 -3.45 -1.776 0 0 0 0 0 0 0 +5.376 -3.432 -1.775 0 0 0 0 0 0 0 +5.381 -3.412 -1.773 0 0 0 0 0 0 0 +5.386 -3.391 -1.771 0 0 0 0 0 0 0 +5.401 -3.377 -1.773 0 0 0 0 0 0 0 +5.408 -3.358 -1.772 0 0 0 0 0 0 0 +5.41 -3.348 -1.77 0 0 0 0 0 0 0 +5.421 -3.331 -1.77 0 0 0 0 0 0 0 +5.43 -3.313 -1.77 0 0 0 0 0 0 0 +5.435 -3.293 -1.768 0 0 0 0 0 0 0 +5.446 -3.275 -1.768 0 0 0 0 0 0 0 +5.464 -3.263 -1.771 0 0 0 0 0 0 0 +5.471 -3.244 -1.77 0 0 0 0 0 0 0 +5.473 -3.234 -1.769 0 0 0 0 0 0 0 +5.506 -3.23 -1.777 0 0 0 0 0 0 0 +5.506 -3.207 -1.773 0 0 0 0 0 0 0 +5.516 -3.19 -1.773 0 0 0 0 0 0 0 +5.533 -3.176 -1.776 0 0 0 0 0 0 0 +5.528 -3.15 -1.77 0 0 0 0 0 0 0 +5.549 -3.139 -1.774 0 0 0 0 0 0 0 +5.559 -3.133 -1.776 0 0 0 0 0 0 0 +5.574 -3.119 -1.778 0 0 0 0 0 0 0 +5.596 -3.108 -1.782 0 0 0 0 0 0 0 +5.607 -3.091 -1.782 0 0 0 0 0 0 0 +5.618 -3.074 -1.783 0 0 0 0 0 0 0 +5.616 -3.05 -1.779 0 0 0 0 0 0 0 +5.626 -3.033 -1.779 0 0 0 0 0 0 0 +5.632 -3.025 -1.78 0 0 0 0 0 0 0 +5.637 -3.004 -1.778 0 0 0 0 0 0 0 +5.639 -2.983 -1.776 0 0 0 0 0 0 0 +5.664 -2.973 -1.781 0 0 0 0 0 0 0 +5.668 -2.953 -1.779 0 0 0 0 0 0 0 +5.681 -2.937 -1.78 0 0 0 0 0 0 0 +5.697 -2.922 -1.782 0 0 0 0 0 0 0 +5.712 -2.919 -1.786 0 0 0 0 0 0 0 +5.71 -2.896 -1.782 0 0 0 0 0 0 0 +5.721 -2.879 -1.783 0 0 0 0 0 0 0 +5.735 -2.863 -1.785 0 0 0 0 0 0 0 +5.736 -2.841 -1.782 0 0 0 0 0 0 0 +5.741 -2.821 -1.781 0 0 0 0 0 0 0 +5.771 -2.813 -1.788 0 0 0 0 0 0 0 +5.748 -2.791 -1.778 0 0 0 0 0 0 0 +5.753 -2.771 -1.777 0 0 0 0 0 0 0 +5.743 -2.744 -1.771 0 0 0 0 0 0 0 +5.77 -2.735 -1.777 0 0 0 0 0 0 0 +5.767 -2.711 -1.773 0 0 0 0 0 0 0 +5.77 -2.69 -1.772 0 0 0 0 0 0 0 +5.77 -2.668 -1.769 0 0 0 0 0 0 0 +5.785 -2.653 -1.771 0 0 0 0 0 0 0 +5.767 -2.634 -1.764 0 0 0 0 0 0 0 +5.782 -2.619 -1.766 0 0 0 0 0 0 0 +5.781 -2.596 -1.763 0 0 0 0 0 0 0 +5.786 -2.577 -1.762 0 0 0 0 0 0 0 +5.785 -2.555 -1.759 0 0 0 0 0 0 0 +5.793 -2.536 -1.759 0 0 0 0 0 0 0 +5.803 -2.519 -1.76 0 0 0 0 0 0 0 +5.803 -2.508 -1.759 0 0 0 0 0 0 0 +5.808 -2.489 -1.757 0 0 0 0 0 0 0 +5.815 -2.47 -1.757 0 0 0 0 0 0 0 +5.813 -2.447 -1.754 0 0 0 0 0 0 0 +5.833 -2.434 -1.758 0 0 0 0 0 0 0 +5.835 -2.414 -1.756 0 0 0 0 0 0 0 +5.856 -2.412 -1.762 0 0 0 0 0 0 0 +5.848 -2.387 -1.757 0 0 0 0 0 0 0 +5.864 -2.372 -1.76 0 0 0 0 0 0 0 +5.863 -2.35 -1.757 0 0 0 0 0 0 0 +5.865 -2.33 -1.755 0 0 0 0 0 0 0 +5.883 -2.316 -1.759 0 0 0 0 0 0 0 +5.879 -2.293 -1.755 0 0 0 0 0 0 0 +5.894 -2.277 -1.757 0 0 0 0 0 0 0 +5.888 -2.264 -1.755 0 0 0 0 0 0 0 +5.885 -2.242 -1.751 0 0 0 0 0 0 0 +5.902 -2.227 -1.755 0 0 0 0 0 0 0 +5.897 -2.204 -1.751 0 0 0 0 0 0 0 +5.911 -2.188 -1.753 0 0 0 0 0 0 0 +5.896 -2.162 -1.746 0 0 0 0 0 0 0 +5.91 -2.146 -1.748 0 0 0 0 0 0 0 +5.912 -2.136 -1.748 0 0 0 0 0 0 0 +5.918 -2.117 -1.748 0 0 0 0 0 0 0 +5.93 -2.101 -1.749 0 0 0 0 0 0 0 +5.937 -2.082 -1.749 0 0 0 0 0 0 0 +5.935 -2.06 -1.747 0 0 0 0 0 0 0 +5.95 -2.045 -1.749 0 0 0 0 0 0 0 +5.947 -2.023 -1.747 0 0 0 0 0 0 0 +5.958 -2.016 -1.749 0 0 0 0 0 0 0 +5.959 -1.995 -1.747 0 0 0 0 0 0 0 +5.961 -1.975 -1.746 0 0 0 0 0 0 0 +5.96 -1.954 -1.744 0 0 0 0 0 0 0 +5.968 -1.936 -1.744 0 0 0 0 0 0 0 +5.976 -1.918 -1.745 0 0 0 0 0 0 0 +5.98 -1.899 -1.744 0 0 0 0 0 0 0 +5.978 -1.887 -1.743 0 0 0 0 0 0 0 +5.985 -1.869 -1.743 0 0 0 0 0 0 0 +5.989 -1.85 -1.743 0 0 0 0 0 0 0 +5.997 -1.832 -1.743 0 0 0 0 0 0 0 +5.994 -1.81 -1.74 0 0 0 0 0 0 0 +5.995 -1.79 -1.739 0 0 0 0 0 0 0 +6.007 -1.773 -1.741 0 0 0 0 0 0 0 +6.009 -1.763 -1.741 0 0 0 0 0 0 0 +6.011 -1.743 -1.74 0 0 0 0 0 0 0 +6.02 -1.725 -1.741 0 0 0 0 0 0 0 +6.02 -1.705 -1.739 0 0 0 0 0 0 0 +6.018 -1.684 -1.737 0 0 0 0 0 0 0 +6.02 -1.664 -1.736 0 0 0 0 0 0 0 +6.019 -1.644 -1.734 0 0 0 0 0 0 0 +6.026 -1.635 -1.735 0 0 0 0 0 0 0 +6.034 -1.617 -1.736 0 0 0 0 0 0 0 +6.034 -1.597 -1.735 0 0 0 0 0 0 0 +6.041 -1.578 -1.735 0 0 0 0 0 0 0 +6.048 -1.56 -1.736 0 0 0 0 0 0 0 +6.047 -1.539 -1.734 0 0 0 0 0 0 0 +6.046 -1.519 -1.732 0 0 0 0 0 0 0 +6.045 -1.508 -1.731 0 0 0 0 0 0 0 +6.051 -1.49 -1.732 0 0 0 0 0 0 0 +6.054 -1.47 -1.731 0 0 0 0 0 0 0 +6.072 -1.455 -1.735 0 0 0 0 0 0 0 +6.067 -1.433 -1.732 0 0 0 0 0 0 0 +6.066 -1.413 -1.731 0 0 0 0 0 0 0 +6.076 -1.395 -1.732 0 0 0 0 0 0 0 +6.076 -1.385 -1.732 0 0 0 0 0 0 0 +6.08 -1.366 -1.732 0 0 0 0 0 0 0 +6.079 -1.346 -1.73 0 0 0 0 0 0 0 +6.083 -1.327 -1.73 0 0 0 0 0 0 0 +6.095 -1.309 -1.732 0 0 0 0 0 0 0 +6.088 -1.287 -1.729 0 0 0 0 0 0 0 +6.09 -1.268 -1.728 0 0 0 0 0 0 0 +6.101 -1.26 -1.731 0 0 0 0 0 0 0 +6.103 -1.241 -1.731 0 0 0 0 0 0 0 +6.103 -1.221 -1.729 0 0 0 0 0 0 0 +6.104 -1.201 -1.728 0 0 0 0 0 0 0 +6.113 -1.183 -1.73 0 0 0 0 0 0 0 +6.111 -1.163 -1.728 0 0 0 0 0 0 0 +6.116 -1.144 -1.729 0 0 0 0 0 0 0 +6.113 -1.133 -1.727 0 0 0 0 0 0 0 +6.105 -1.112 -1.724 0 0 0 0 0 0 0 +6.114 -1.094 -1.725 0 0 0 0 0 0 0 +6.119 -1.075 -1.726 0 0 0 0 0 0 0 +6.117 -1.054 -1.724 0 0 0 0 0 0 0 +6.132 -1.037 -1.728 0 0 0 0 0 0 0 +6.137 -1.018 -1.728 0 0 0 0 0 0 0 +6.125 -1.006 -1.724 0 0 0 0 0 0 0 +6.13 -0.987 -1.725 0 0 0 0 0 0 0 +6.127 -0.967 -1.723 0 0 0 0 0 0 0 +6.144 -0.95 -1.727 0 0 0 0 0 0 0 +6.16 -0.933 -1.731 0 0 0 0 0 0 0 +6.151 -0.912 -1.728 0 0 0 0 0 0 0 +6.147 -0.891 -1.725 0 0 0 0 0 0 0 +6.144 -0.881 -1.724 0 0 0 0 0 0 0 +6.139 -0.861 -1.722 0 0 0 0 0 0 0 +6.152 -0.843 -1.725 0 0 0 0 0 0 0 +6.154 -0.823 -1.725 0 0 0 0 0 0 0 +6.162 -0.805 -1.727 0 0 0 0 0 0 0 +6.15 -0.783 -1.722 0 0 0 0 0 0 0 +6.15 -0.764 -1.721 0 0 0 0 0 0 0 +6.153 -0.754 -1.722 0 0 0 0 0 0 0 +6.154 -0.735 -1.721 0 0 0 0 0 0 0 +6.152 -0.715 -1.72 0 0 0 0 0 0 0 +6.154 -0.696 -1.72 0 0 0 0 0 0 0 +6.166 -0.678 -1.723 0 0 0 0 0 0 0 +6.161 -0.657 -1.721 0 0 0 0 0 0 0 +6.161 -0.638 -1.72 0 0 0 0 0 0 0 +6.164 -0.628 -1.721 0 0 0 0 0 0 0 +6.169 -0.609 -1.722 0 0 0 0 0 0 0 +6.171 -0.59 -1.722 0 0 0 0 0 0 0 +6.156 -0.569 -1.717 0 0 0 0 0 0 0 +6.165 -0.55 -1.719 0 0 0 0 0 0 0 +6.167 -0.531 -1.719 0 0 0 0 0 0 0 +6.165 -0.511 -1.718 0 0 0 0 0 0 0 +6.169 -0.502 -1.719 0 0 0 0 0 0 0 +6.171 -0.482 -1.719 0 0 0 0 0 0 0 +6.169 -0.463 -1.718 0 0 0 0 0 0 0 +6.166 -0.443 -1.717 0 0 0 0 0 0 0 +6.179 -0.425 -1.72 0 0 0 0 0 0 0 +6.177 -0.405 -1.719 0 0 0 0 0 0 0 +6.168 -0.385 -1.716 0 0 0 0 0 0 0 +6.173 -0.375 -1.717 0 0 0 0 0 0 0 +6.178 -0.356 -1.719 0 0 0 0 0 0 0 +6.181 -0.337 -1.719 0 0 0 0 0 0 0 +6.161 -0.316 -1.713 0 0 0 0 0 0 0 +6.16 -0.297 -1.712 0 0 0 0 0 0 0 +6.164 -0.278 -1.713 0 0 0 0 0 0 0 +6.165 -0.258 -1.713 0 0 0 0 0 0 0 +6.183 -0.249 -1.719 0 0 0 0 0 0 0 +6.182 -0.23 -1.718 0 0 0 0 0 0 0 +6.171 -0.21 -1.715 0 0 0 0 0 0 0 +6.177 -0.191 -1.716 0 0 0 0 0 0 0 +6.176 -0.171 -1.716 0 0 0 0 0 0 0 +6.167 -0.152 -1.713 0 0 0 0 0 0 0 +6.171 -0.132 -1.714 0 0 0 0 0 0 0 +6.168 -0.113 -1.713 0 0 0 0 0 0 0 +6.174 -0.103 -1.715 0 0 0 0 0 0 0 +6.185 -0.084 -1.718 0 0 0 0 0 0 0 +6.176 -0.065 -1.715 0 0 0 0 0 0 0 +6.172 -0.045 -1.714 0 0 0 0 0 0 0 +6.159 -0.026 -1.71 0 0 0 0 0 0 0 +6.15 -0.006 -1.707 0 0 0 0 0 0 0 +5.966 0.005 -1.725 0 0 0 0 0 0 0 +5.97 0.024 -1.726 0 0 0 0 0 0 0 +5.964 0.043 -1.724 0 0 0 0 0 0 0 +5.962 0.061 -1.724 0 0 0 0 0 0 0 +5.958 0.08 -1.723 0 0 0 0 0 0 0 +5.975 0.099 -1.728 0 0 0 0 0 0 0 +5.957 0.117 -1.723 0 0 0 0 0 0 0 +5.961 0.127 -1.724 0 0 0 0 0 0 0 +5.964 0.146 -1.725 0 0 0 0 0 0 0 +5.952 0.164 -1.721 0 0 0 0 0 0 0 +5.984 0.184 -1.731 0 0 0 0 0 0 0 +5.957 0.202 -1.723 0 0 0 0 0 0 0 +5.958 0.22 -1.724 0 0 0 0 0 0 0 +5.959 0.239 -1.724 0 0 0 0 0 0 0 +5.945 0.248 -1.72 0 0 0 0 0 0 0 +5.954 0.267 -1.723 0 0 0 0 0 0 0 +5.967 0.286 -1.727 0 0 0 0 0 0 0 +5.947 0.304 -1.721 0 0 0 0 0 0 0 +5.955 0.323 -1.724 0 0 0 0 0 0 0 +5.95 0.342 -1.723 0 0 0 0 0 0 0 +5.938 0.36 -1.72 0 0 0 0 0 0 0 +5.943 0.37 -1.721 0 0 0 0 0 0 0 +5.957 0.389 -1.726 0 0 0 0 0 0 0 +5.942 0.407 -1.722 0 0 0 0 0 0 0 +5.953 0.427 -1.726 0 0 0 0 0 0 0 +5.936 0.444 -1.721 0 0 0 0 0 0 0 +5.965 0.465 -1.73 0 0 0 0 0 0 0 +5.937 0.482 -1.722 0 0 0 0 0 0 0 +5.951 0.492 -1.727 0 0 0 0 0 0 0 +5.942 0.51 -1.724 0 0 0 0 0 0 0 +5.952 0.53 -1.728 0 0 0 0 0 0 0 +5.939 0.548 -1.724 0 0 0 0 0 0 0 +5.95 0.568 -1.729 0 0 0 0 0 0 0 +5.916 0.583 -1.718 0 0 0 0 0 0 0 +5.941 0.604 -1.727 0 0 0 0 0 0 0 +5.936 0.613 -1.726 0 0 0 0 0 0 0 +5.94 0.633 -1.727 0 0 0 0 0 0 0 +5.913 0.648 -1.72 0 0 0 0 0 0 0 +5.913 0.667 -1.72 0 0 0 0 0 0 0 +5.92 0.687 -1.723 0 0 0 0 0 0 0 +5.916 0.705 -1.723 0 0 0 0 0 0 0 +5.926 0.725 -1.726 0 0 0 0 0 0 0 +5.915 0.733 -1.723 0 0 0 0 0 0 0 +5.905 0.751 -1.721 0 0 0 0 0 0 0 +5.929 0.773 -1.729 0 0 0 0 0 0 0 +5.887 0.786 -1.717 0 0 0 0 0 0 0 +5.901 0.807 -1.722 0 0 0 0 0 0 0 +5.888 0.824 -1.718 0 0 0 0 0 0 0 +5.891 0.843 -1.72 0 0 0 0 0 0 0 +5.908 0.855 -1.726 0 0 0 0 0 0 0 +5.881 0.87 -1.718 0 0 0 0 0 0 0 +5.884 0.89 -1.72 0 0 0 0 0 0 0 +5.894 0.91 -1.724 0 0 0 0 0 0 0 +5.876 0.926 -1.72 0 0 0 0 0 0 0 +5.875 0.945 -1.72 0 0 0 0 0 0 0 +5.883 0.965 -1.724 0 0 0 0 0 0 0 +5.869 0.972 -1.72 0 0 0 0 0 0 0 +5.868 0.991 -1.72 0 0 0 0 0 0 0 +5.868 1.01 -1.721 0 0 0 0 0 0 0 +5.856 1.027 -1.718 0 0 0 0 0 0 0 +5.871 1.049 -1.724 0 0 0 0 0 0 0 +5.841 1.062 -1.716 0 0 0 0 0 0 0 +5.861 1.085 -1.723 0 0 0 0 0 0 0 +5.851 1.093 -1.721 0 0 0 0 0 0 0 +5.839 1.109 -1.718 0 0 0 0 0 0 0 +5.867 1.134 -1.728 0 0 0 0 0 0 0 +5.835 1.147 -1.719 0 0 0 0 0 0 0 +5.828 1.164 -1.718 0 0 0 0 0 0 0 +5.832 1.184 -1.72 0 0 0 0 0 0 0 +5.826 1.202 -1.72 0 0 0 0 0 0 0 +5.837 1.214 -1.724 0 0 0 0 0 0 0 +5.822 1.23 -1.72 0 0 0 0 0 0 0 +5.816 1.248 -1.72 0 0 0 0 0 0 0 +5.812 1.266 -1.72 0 0 0 0 0 0 0 +5.82 1.287 -1.723 0 0 0 0 0 0 0 +5.797 1.301 -1.717 0 0 0 0 0 0 0 +5.821 1.326 -1.726 0 0 0 0 0 0 0 +5.807 1.332 -1.723 0 0 0 0 0 0 0 +5.796 1.349 -1.72 0 0 0 0 0 0 0 +5.806 1.37 -1.725 0 0 0 0 0 0 0 +5.782 1.384 -1.718 0 0 0 0 0 0 0 +5.798 1.407 -1.725 0 0 0 0 0 0 0 +5.782 1.422 -1.721 0 0 0 0 0 0 0 +5.783 1.442 -1.723 0 0 0 0 0 0 0 +5.773 1.458 -1.721 0 0 0 0 0 0 0 +5.776 1.469 -1.723 0 0 0 0 0 0 0 +5.768 1.486 -1.722 0 0 0 0 0 0 0 +5.763 1.504 -1.722 0 0 0 0 0 0 0 +5.786 1.53 -1.731 0 0 0 0 0 0 0 +5.765 1.543 -1.726 0 0 0 0 0 0 0 +5.745 1.557 -1.721 0 0 0 0 0 0 0 +5.761 1.581 -1.727 0 0 0 0 0 0 0 +5.745 1.587 -1.723 0 0 0 0 0 0 0 +5.74 1.605 -1.723 0 0 0 0 0 0 0 +5.763 1.631 -1.732 0 0 0 0 0 0 0 +5.73 1.641 -1.723 0 0 0 0 0 0 0 +5.719 1.657 -1.721 0 0 0 0 0 0 0 +5.732 1.68 -1.727 0 0 0 0 0 0 0 +5.716 1.695 -1.724 0 0 0 0 0 0 0 +5.73 1.709 -1.729 0 0 0 0 0 0 0 +5.713 1.724 -1.726 0 0 0 0 0 0 0 +5.708 1.742 -1.726 0 0 0 0 0 0 0 +5.719 1.765 -1.731 0 0 0 0 0 0 0 +5.69 1.775 -1.723 0 0 0 0 0 0 0 +5.7 1.798 -1.729 0 0 0 0 0 0 0 +5.675 1.81 -1.722 0 0 0 0 0 0 0 +5.692 1.825 -1.729 0 0 0 0 0 0 0 +5.679 1.841 -1.726 0 0 0 0 0 0 0 +5.671 1.858 -1.726 0 0 0 0 0 0 0 +5.66 1.874 -1.724 0 0 0 0 0 0 0 +5.676 1.899 -1.731 0 0 0 0 0 0 0 +5.646 1.909 -1.723 0 0 0 0 0 0 0 +5.662 1.934 -1.73 0 0 0 0 0 0 0 +5.65 1.94 -1.727 0 0 0 0 0 0 0 +5.64 1.956 -1.726 0 0 0 0 0 0 0 +5.641 1.977 -1.729 0 0 0 0 0 0 0 +5.619 1.988 -1.723 0 0 0 0 0 0 0 +5.623 2.01 -1.727 0 0 0 0 0 0 0 +5.612 2.026 -1.725 0 0 0 0 0 0 0 +5.61 2.045 -1.727 0 0 0 0 0 0 0 +5.609 2.055 -1.727 0 0 0 0 0 0 0 +5.624 2.08 -1.734 0 0 0 0 0 0 0 +5.589 2.087 -1.725 0 0 0 0 0 0 0 +5.586 2.106 -1.726 0 0 0 0 0 0 0 +5.577 2.123 -1.726 0 0 0 0 0 0 0 +5.583 2.145 -1.73 0 0 0 0 0 0 0 +5.571 2.161 -1.728 0 0 0 0 0 0 0 +5.566 2.169 -1.727 0 0 0 0 0 0 0 +5.552 2.183 -1.725 0 0 0 0 0 0 0 +5.559 2.207 -1.73 0 0 0 0 0 0 0 +5.545 2.221 -1.727 0 0 0 0 0 0 0 +5.54 2.239 -1.728 0 0 0 0 0 0 0 +5.533 2.257 -1.728 0 0 0 0 0 0 0 +5.524 2.273 -1.727 0 0 0 0 0 0 0 +5.517 2.281 -1.726 0 0 0 0 0 0 0 +5.536 2.309 -1.735 0 0 0 0 0 0 0 +5.504 2.316 -1.727 0 0 0 0 0 0 0 +5.513 2.34 -1.732 0 0 0 0 0 0 0 +5.5 2.355 -1.73 0 0 0 0 0 0 0 +5.473 2.364 -1.724 0 0 0 0 0 0 0 +5.475 2.385 -1.727 0 0 0 0 0 0 0 +5.48 2.397 -1.73 0 0 0 0 0 0 0 +5.453 2.406 -1.723 0 0 0 0 0 0 0 +5.465 2.432 -1.73 0 0 0 0 0 0 0 +5.438 2.44 -1.723 0 0 0 0 0 0 0 +5.453 2.468 -1.731 0 0 0 0 0 0 0 +5.434 2.48 -1.727 0 0 0 0 0 0 0 +5.423 2.495 -1.726 0 0 0 0 0 0 0 +5.435 2.511 -1.731 0 0 0 0 0 0 0 +5.406 2.518 -1.724 0 0 0 0 0 0 0 +5.422 2.547 -1.733 0 0 0 0 0 0 0 +5.399 2.557 -1.727 0 0 0 0 0 0 0 +5.389 2.573 -1.727 0 0 0 0 0 0 0 +5.395 2.596 -1.731 0 0 0 0 0 0 0 +5.366 2.603 -1.724 0 0 0 0 0 0 0 +5.376 2.618 -1.729 0 0 0 0 0 0 0 +5.374 2.639 -1.731 0 0 0 0 0 0 0 +5.362 2.654 -1.73 0 0 0 0 0 0 0 +5.354 2.671 -1.73 0 0 0 0 0 0 0 +5.344 2.686 -1.73 0 0 0 0 0 0 0 +5.337 2.704 -1.73 0 0 0 0 0 0 0 +5.33 2.722 -1.731 0 0 0 0 0 0 0 +5.336 2.735 -1.734 0 0 0 0 0 0 0 +5.306 2.741 -1.727 0 0 0 0 0 0 0 +5.307 2.763 -1.73 0 0 0 0 0 0 0 +5.29 2.775 -1.727 0 0 0 0 0 0 0 +5.271 2.786 -1.724 0 0 0 0 0 0 0 +5.276 2.81 -1.729 0 0 0 0 0 0 0 +5.264 2.825 -1.727 0 0 0 0 0 0 0 +5.258 2.843 -1.729 0 0 0 0 0 0 0 +5.25 2.849 -1.727 0 0 0 0 0 0 0 +5.243 2.867 -1.728 0 0 0 0 0 0 0 +5.227 2.879 -1.726 0 0 0 0 0 0 0 +5.23 2.902 -1.73 0 0 0 0 0 0 0 +5.202 2.908 -1.723 0 0 0 0 0 0 0 +5.2 2.929 -1.726 0 0 0 0 0 0 0 +5.199 2.939 -1.727 0 0 0 0 0 0 0 +5.173 2.945 -1.721 0 0 0 0 0 0 0 +5.183 2.973 -1.728 0 0 0 0 0 0 0 +5.156 2.979 -1.721 0 0 0 0 0 0 0 +5.156 3.001 -1.725 0 0 0 0 0 0 0 +5.127 3.005 -1.718 0 0 0 0 0 0 0 +5.142 3.036 -1.727 0 0 0 0 0 0 0 +5.119 3.033 -1.72 0 0 0 0 0 0 0 +5.113 3.051 -1.721 0 0 0 0 0 0 0 +5.104 3.068 -1.721 0 0 0 0 0 0 0 +5.091 3.082 -1.72 0 0 0 0 0 0 0 +5.083 3.099 -1.721 0 0 0 0 0 0 0 +5.068 3.111 -1.719 0 0 0 0 0 0 0 +5.05 3.122 -1.716 0 0 0 0 0 0 0 +5.053 3.135 -1.719 0 0 0 0 0 0 0 +5.043 3.151 -1.719 0 0 0 0 0 0 0 +5.025 3.162 -1.716 0 0 0 0 0 0 0 +5.025 3.184 -1.72 0 0 0 0 0 0 0 +5.012 3.197 -1.718 0 0 0 0 0 0 0 +4.987 3.204 -1.713 0 0 0 0 0 0 0 +4.982 3.223 -1.715 0 0 0 0 0 0 0 +4.989 3.25 -1.721 0 0 0 0 0 0 0 +4.964 3.244 -1.714 0 0 0 0 0 0 0 +4.957 3.262 -1.715 0 0 0 0 0 0 0 +4.949 3.279 -1.716 0 0 0 0 0 0 0 +4.928 3.287 -1.712 0 0 0 0 0 0 0 +4.93 3.311 -1.717 0 0 0 0 0 0 0 +4.921 3.328 -1.717 0 0 0 0 0 0 0 +4.9 3.336 -1.713 0 0 0 0 0 0 0 +4.896 3.345 -1.714 0 0 0 0 0 0 0 +4.887 3.361 -1.714 0 0 0 0 0 0 0 +4.875 3.375 -1.714 0 0 0 0 0 0 0 +4.872 3.396 -1.717 0 0 0 0 0 0 0 +4.849 3.403 -1.712 0 0 0 0 0 0 0 +4.843 3.421 -1.714 0 0 0 0 0 0 0 +4.846 3.434 -1.717 0 0 0 0 0 0 0 +4.829 3.445 -1.714 0 0 0 0 0 0 0 +4.805 3.451 -1.71 0 0 0 0 0 0 0 +4.799 3.47 -1.711 0 0 0 0 0 0 0 +4.788 3.485 -1.711 0 0 0 0 0 0 0 +4.78 3.502 -1.713 0 0 0 0 0 0 0 +4.771 3.518 -1.713 0 0 0 0 0 0 0 +4.767 3.527 -1.714 0 0 0 0 0 0 0 +4.754 3.541 -1.713 0 0 0 0 0 0 0 +4.737 3.551 -1.711 0 0 0 0 0 0 0 +4.745 3.581 -1.718 0 0 0 0 0 0 0 +4.718 3.583 -1.712 0 0 0 0 0 0 0 +4.726 3.613 -1.72 0 0 0 0 0 0 0 +4.692 3.61 -1.711 0 0 0 0 0 0 0 +4.697 3.626 -1.715 0 0 0 0 0 0 0 +4.684 3.639 -1.714 0 0 0 0 0 0 0 +4.69 3.668 -1.721 0 0 0 0 0 0 0 +4.665 3.672 -1.716 0 0 0 0 0 0 0 +4.657 3.689 -1.717 0 0 0 0 0 0 0 +4.651 3.709 -1.72 0 0 0 0 0 0 0 +4.65 3.732 -1.724 0 0 0 0 0 0 0 +4.635 3.732 -1.72 0 0 0 0 0 0 0 +4.631 3.752 -1.723 0 0 0 0 0 0 0 +4.62 3.768 -1.724 0 0 0 0 0 0 0 +4.617 3.79 -1.727 0 0 0 0 0 0 0 +4.597 3.797 -1.724 0 0 0 0 0 0 0 +4.589 3.815 -1.726 0 0 0 0 0 0 0 +4.567 3.821 -1.721 0 0 0 0 0 0 0 +4.581 3.845 -1.73 0 0 0 0 0 0 0 +4.553 3.846 -1.723 0 0 0 0 0 0 0 +4.547 3.865 -1.726 0 0 0 0 0 0 0 +4.542 3.886 -1.729 0 0 0 0 0 0 0 +4.531 3.901 -1.729 0 0 0 0 0 0 0 +4.516 3.913 -1.728 0 0 0 0 0 0 0 +4.508 3.931 -1.73 0 0 0 0 0 0 0 +4.49 3.94 -1.727 0 0 0 0 0 0 0 +4.482 3.946 -1.727 0 0 0 0 0 0 0 +4.468 3.959 -1.726 0 0 0 0 0 0 0 +4.452 3.969 -1.724 0 0 0 0 0 0 0 +4.448 3.991 -1.728 0 0 0 0 0 0 0 +4.427 3.997 -1.724 0 0 0 0 0 0 0 +4.424 4.02 -1.729 0 0 0 0 0 0 0 +4.403 4.026 -1.725 0 0 0 0 0 0 0 +4.404 4.039 -1.728 0 0 0 0 0 0 0 +4.388 4.05 -1.727 0 0 0 0 0 0 0 +4.379 4.068 -1.729 0 0 0 0 0 0 0 +4.353 4.069 -1.723 0 0 0 0 0 0 0 +4.364 4.105 -1.733 0 0 0 0 0 0 0 +4.333 4.101 -1.725 0 0 0 0 0 0 0 +4.326 4.108 -1.725 0 0 0 0 0 0 0 +4.313 4.122 -1.725 0 0 0 0 0 0 0 +4.288 4.123 -1.72 0 0 0 0 0 0 0 +4.287 4.149 -1.725 0 0 0 0 0 0 0 +4.273 4.161 -1.724 0 0 0 0 0 0 0 +4.261 4.176 -1.725 0 0 0 0 0 0 0 +4.248 4.189 -1.725 0 0 0 0 0 0 0 +4.244 4.198 -1.726 0 0 0 0 0 0 0 +4.223 4.203 -1.723 0 0 0 0 0 0 0 +4.214 4.221 -1.724 0 0 0 0 0 0 0 +4.196 4.23 -1.723 0 0 0 0 0 0 0 +4.186 4.246 -1.724 0 0 0 0 0 0 0 +4.171 4.258 -1.723 0 0 0 0 0 0 0 +4.152 4.265 -1.721 0 0 0 0 0 0 0 +4.152 4.279 -1.724 0 0 0 0 0 0 0 +4.141 4.294 -1.725 0 0 0 0 0 0 0 +4.127 4.306 -1.724 0 0 0 0 0 0 0 +4.108 4.313 -1.722 0 0 0 0 0 0 0 +4.102 4.335 -1.726 0 0 0 0 0 0 0 +4.092 4.352 -1.727 0 0 0 0 0 0 0 +4.068 4.353 -1.723 0 0 0 0 0 0 0 +4.06 4.372 -1.725 0 0 0 0 0 0 0 +4.066 4.392 -1.731 0 0 0 0 0 0 0 +4.035 4.386 -1.723 0 0 0 0 0 0 0 +4.02 4.398 -1.723 0 0 0 0 0 0 0 +4.015 4.42 -1.727 0 0 0 0 0 0 0 +3.994 4.424 -1.723 0 0 0 0 0 0 0 +3.972 4.428 -1.72 0 0 0 0 0 0 0 +3.975 4.459 -1.727 0 0 0 0 0 0 0 +3.958 4.454 -1.723 0 0 0 0 0 0 0 +3.946 4.469 -1.724 0 0 0 0 0 0 0 +3.936 4.486 -1.726 0 0 0 0 0 0 0 +3.908 4.483 -1.719 0 0 0 0 0 0 0 +3.894 4.495 -1.719 0 0 0 0 0 0 0 +3.9 4.53 -1.729 0 0 0 0 0 0 0 +3.863 4.516 -1.718 0 0 0 0 0 0 0 +3.858 4.525 -1.719 0 0 0 0 0 0 0 +3.85 4.545 -1.722 0 0 0 0 0 0 0 +3.83 4.549 -1.719 0 0 0 0 0 0 0 +3.817 4.563 -1.72 0 0 0 0 0 0 0 +3.807 4.581 -1.722 0 0 0 0 0 0 0 +3.784 4.582 -1.718 0 0 0 0 0 0 0 +3.766 4.59 -1.716 0 0 0 0 0 0 0 +3.776 4.616 -1.724 0 0 0 0 0 0 0 +3.751 4.615 -1.719 0 0 0 0 0 0 0 +3.736 4.627 -1.719 0 0 0 0 0 0 0 +3.729 4.647 -1.723 0 0 0 0 0 0 0 +3.708 4.652 -1.72 0 0 0 0 0 0 0 +3.698 4.669 -1.722 0 0 0 0 0 0 0 +3.675 4.67 -1.718 0 0 0 0 0 0 0 +3.674 4.684 -1.721 0 0 0 0 0 0 0 +3.659 4.695 -1.721 0 0 0 0 0 0 0 +3.642 4.703 -1.72 0 0 0 0 0 0 0 +3.625 4.712 -1.718 0 0 0 0 0 0 0 +3.617 4.732 -1.722 0 0 0 0 0 0 0 +3.601 4.742 -1.721 0 0 0 0 0 0 0 +3.577 4.741 -1.717 0 0 0 0 0 0 0 +3.579 4.759 -1.721 0 0 0 0 0 0 0 +3.556 4.76 -1.717 0 0 0 0 0 0 0 +3.55 4.783 -1.722 0 0 0 0 0 0 0 +3.529 4.786 -1.719 0 0 0 0 0 0 0 +3.514 4.797 -1.719 0 0 0 0 0 0 0 +3.493 4.801 -1.716 0 0 0 0 0 0 0 +3.496 4.837 -1.726 0 0 0 0 0 0 0 +3.475 4.823 -1.718 0 0 0 0 0 0 0 +3.466 4.842 -1.721 0 0 0 0 0 0 0 +3.45 4.853 -1.721 0 0 0 0 0 0 0 +3.449 4.884 -1.729 0 0 0 0 0 0 0 +3.416 4.87 -1.72 0 0 0 0 0 0 0 +3.404 4.885 -1.721 0 0 0 0 0 0 0 +3.389 4.896 -1.721 0 0 0 0 0 0 0 +3.389 4.912 -1.726 0 0 0 0 0 0 0 +3.362 4.906 -1.719 0 0 0 0 0 0 0 +3.357 4.932 -1.725 0 0 0 0 0 0 0 +3.329 4.923 -1.718 0 0 0 0 0 0 0 +3.326 4.953 -1.725 0 0 0 0 0 0 0 +3.299 4.946 -1.718 0 0 0 0 0 0 0 +3.298 4.978 -1.727 0 0 0 0 0 0 0 +3.283 4.972 -1.723 0 0 0 0 0 0 0 +3.264 4.978 -1.721 0 0 0 0 0 0 0 +3.26 5.006 -1.727 0 0 0 0 0 0 0 +3.233 4.998 -1.721 0 0 0 0 0 0 0 +3.218 5.01 -1.721 0 0 0 0 0 0 0 +3.218 5.046 -1.731 0 0 0 0 0 0 0 +3.183 5.025 -1.72 0 0 0 0 0 0 0 +3.186 5.047 -1.726 0 0 0 0 0 0 0 +3.16 5.04 -1.72 0 0 0 0 0 0 0 +3.153 5.065 -1.725 0 0 0 0 0 0 0 +3.129 5.062 -1.72 0 0 0 0 0 0 0 +3.126 5.093 -1.728 0 0 0 0 0 0 0 +3.104 5.093 -1.724 0 0 0 0 0 0 0 +3.094 5.112 -1.728 0 0 0 0 0 0 0 +3.072 5.112 -1.724 0 0 0 0 0 0 0 +3.065 5.119 -1.725 0 0 0 0 0 0 0 +3.043 5.118 -1.721 0 0 0 0 0 0 0 +3.035 5.143 -1.727 0 0 0 0 0 0 0 +3.015 5.146 -1.724 0 0 0 0 0 0 0 +2.997 5.152 -1.723 0 0 0 0 0 0 0 +2.984 5.166 -1.725 0 0 0 0 0 0 0 +2.968 5.175 -1.725 0 0 0 0 0 0 0 +2.96 5.18 -1.725 0 0 0 0 0 0 0 +2.952 5.204 -1.73 0 0 0 0 0 0 0 +2.935 5.214 -1.73 0 0 0 0 0 0 0 +2.916 5.218 -1.729 0 0 0 0 0 0 0 +2.901 5.229 -1.729 0 0 0 0 0 0 0 +2.883 5.236 -1.729 0 0 0 0 0 0 0 +2.875 5.24 -1.729 0 0 0 0 0 0 0 +2.859 5.25 -1.729 0 0 0 0 0 0 0 +2.845 5.264 -1.73 0 0 0 0 0 0 0 +2.827 5.271 -1.73 0 0 0 0 0 0 0 +2.812 5.281 -1.73 0 0 0 0 0 0 0 +2.793 5.287 -1.729 0 0 0 0 0 0 0 +2.778 5.297 -1.73 0 0 0 0 0 0 0 +2.758 5.279 -1.722 0 0 0 0 0 0 0 +2.756 5.317 -1.732 0 0 0 0 0 0 0 +2.736 5.319 -1.73 0 0 0 0 0 0 0 +2.721 5.331 -1.731 0 0 0 0 0 0 0 +2.701 5.332 -1.729 0 0 0 0 0 0 0 +2.686 5.344 -1.73 0 0 0 0 0 0 0 +2.669 5.353 -1.73 0 0 0 0 0 0 0 +2.651 5.359 -1.729 0 0 0 0 0 0 0 +2.641 5.36 -1.728 0 0 0 0 0 0 0 +2.625 5.37 -1.729 0 0 0 0 0 0 0 +2.604 5.37 -1.726 0 0 0 0 0 0 0 +2.59 5.385 -1.728 0 0 0 0 0 0 0 +2.574 5.393 -1.728 0 0 0 0 0 0 0 +2.554 5.396 -1.726 0 0 0 0 0 0 0 +2.548 5.426 -1.734 0 0 0 0 0 0 0 +2.525 5.401 -1.724 0 0 0 0 0 0 0 +2.516 5.426 -1.73 0 0 0 0 0 0 0 +2.496 5.427 -1.727 0 0 0 0 0 0 0 +2.482 5.442 -1.73 0 0 0 0 0 0 0 +2.465 5.45 -1.73 0 0 0 0 0 0 0 +2.442 5.443 -1.725 0 0 0 0 0 0 0 +2.432 5.468 -1.731 0 0 0 0 0 0 0 +2.408 5.46 -1.726 0 0 0 0 0 0 0 +2.399 5.462 -1.725 0 0 0 0 0 0 0 +2.381 5.468 -1.724 0 0 0 0 0 0 0 +2.374 5.498 -1.732 0 0 0 0 0 0 0 +2.347 5.485 -1.725 0 0 0 0 0 0 0 +2.335 5.503 -1.729 0 0 0 0 0 0 0 +2.312 5.498 -1.724 0 0 0 0 0 0 0 +2.313 5.524 -1.732 0 0 0 0 0 0 0 +2.285 5.505 -1.723 0 0 0 0 0 0 0 +2.27 5.519 -1.726 0 0 0 0 0 0 0 +2.256 5.533 -1.728 0 0 0 0 0 0 0 +2.236 5.535 -1.726 0 0 0 0 0 0 0 +2.224 5.554 -1.73 0 0 0 0 0 0 0 +2.203 5.553 -1.727 0 0 0 0 0 0 0 +2.186 5.561 -1.728 0 0 0 0 0 0 0 +2.18 5.572 -1.73 0 0 0 0 0 0 0 +2.161 5.575 -1.729 0 0 0 0 0 0 0 +2.144 5.582 -1.729 0 0 0 0 0 0 0 +2.125 5.585 -1.728 0 0 0 0 0 0 0 +2.106 5.588 -1.727 0 0 0 0 0 0 0 +2.093 5.607 -1.731 0 0 0 0 0 0 0 +2.074 5.61 -1.73 0 0 0 0 0 0 0 +2.058 5.594 -1.723 0 0 0 0 0 0 0 +2.043 5.607 -1.726 0 0 0 0 0 0 0 +2.031 5.63 -1.731 0 0 0 0 0 0 0 +2.008 5.62 -1.726 0 0 0 0 0 0 0 +1.992 5.63 -1.727 0 0 0 0 0 0 0 +1.976 5.641 -1.729 0 0 0 0 0 0 0 +1.959 5.651 -1.73 0 0 0 0 0 0 0 +1.952 5.658 -1.731 0 0 0 0 0 0 0 +1.931 5.657 -1.729 0 0 0 0 0 0 0 +1.914 5.665 -1.729 0 0 0 0 0 0 0 +1.892 5.658 -1.725 0 0 0 0 0 0 0 +1.878 5.675 -1.729 0 0 0 0 0 0 0 +1.864 5.693 -1.733 0 0 0 0 0 0 0 +1.847 5.703 -1.734 0 0 0 0 0 0 0 +1.832 5.686 -1.727 0 0 0 0 0 0 0 +1.8 5.646 -1.713 0 0 0 0 0 0 0 +1.786 5.664 -1.717 0 0 0 0 0 0 0 +1.771 5.677 -1.719 0 0 0 0 0 0 0 +1.749 5.67 -1.715 0 0 0 0 0 0 0 +1.731 5.673 -1.714 0 0 0 0 0 0 0 +1.713 5.681 -1.715 0 0 0 0 0 0 0 +1.702 5.676 -1.713 0 0 0 0 0 0 0 +1.684 5.681 -1.713 0 0 0 0 0 0 0 +1.668 5.69 -1.714 0 0 0 0 0 0 0 +1.644 5.675 -1.707 0 0 0 0 0 0 0 +1.629 5.691 -1.711 0 0 0 0 0 0 0 +1.609 5.687 -1.708 0 0 0 0 0 0 0 +1.591 5.692 -1.708 0 0 0 0 0 0 0 +1.57 5.688 -1.705 0 0 0 0 0 0 0 +1.562 5.694 -1.706 0 0 0 0 0 0 0 +1.549 5.714 -1.711 0 0 0 0 0 0 0 +1.527 5.706 -1.707 0 0 0 0 0 0 0 +1.511 5.716 -1.708 0 0 0 0 0 0 0 +1.491 5.715 -1.707 0 0 0 0 0 0 0 +1.473 5.718 -1.706 0 0 0 0 0 0 0 +1.453 5.713 -1.703 0 0 0 0 0 0 0 +1.447 5.729 -1.707 0 0 0 0 0 0 0 +1.425 5.718 -1.703 0 0 0 0 0 0 0 +1.407 5.723 -1.703 0 0 0 0 0 0 0 +0.752 3.094 -0.864 0 0 0 0 0 0 0 +1.392 5.738 -1.706 0 0 0 0 0 0 0 +0.735 3.108 -0.867 0 0 0 0 0 0 0 +1.353 5.734 -1.702 0 0 0 0 0 0 0 +0.73 3.107 -0.867 0 0 0 0 0 0 0 +0.718 3.1 -0.864 0 0 0 0 0 0 0 +0.712 3.119 -0.869 0 0 0 0 0 0 0 +0.698 3.103 -0.863 0 0 0 0 0 0 0 +0.69 3.112 -0.866 0 0 0 0 0 0 0 +0.684 3.131 -0.871 0 0 0 0 0 0 0 +0.672 3.124 -0.868 0 0 0 0 0 0 0 +0.669 3.133 -0.87 0 0 0 0 0 0 0 +0.664 3.159 -0.878 0 0 0 0 0 0 0 +0.653 3.155 -0.876 0 0 0 0 0 0 0 +0.643 3.161 -0.877 0 0 0 0 0 0 0 +0.637 3.182 -0.883 0 0 0 0 0 0 0 +0.625 3.175 -0.88 0 0 0 0 0 0 0 +0.619 3.195 -0.886 0 0 0 0 0 0 0 +0.607 3.159 -0.875 0 0 0 0 0 0 0 +0.592 3.132 -0.866 0 0 0 0 0 0 0 +0.58 3.125 -0.863 0 0 0 0 0 0 0 +0.573 3.14 -0.867 0 0 0 0 0 0 0 +0.56 3.127 -0.862 0 0 0 0 0 0 0 +0.551 3.132 -0.863 0 0 0 0 0 0 0 +0.543 3.147 -0.867 0 0 0 0 0 0 0 +0.531 3.13 -0.862 0 0 0 0 0 0 0 +0.524 3.123 -0.859 0 0 0 0 0 0 0 +0.517 3.14 -0.864 0 0 0 0 0 0 0 +0.507 3.139 -0.863 0 0 0 0 0 0 0 +0.496 3.137 -0.862 0 0 0 0 0 0 0 +0.49 3.16 -0.869 0 0 0 0 0 0 0 +0.476 3.137 -0.861 0 0 0 0 0 0 0 +0.466 3.138 -0.861 0 0 0 0 0 0 0 +0.464 3.156 -0.866 0 0 0 0 0 0 0 +0.452 3.142 -0.862 0 0 0 0 0 0 0 +0.442 3.145 -0.862 0 0 0 0 0 0 0 +0.434 3.162 -0.867 0 0 0 0 0 0 0 +0.421 3.137 -0.859 0 0 0 0 0 0 0 +0.411 3.14 -0.859 0 0 0 0 0 0 0 +0.404 3.166 -0.867 0 0 0 0 0 0 0 +0.398 3.159 -0.864 0 0 0 0 0 0 0 +0.388 3.158 -0.864 0 0 0 0 0 0 0 +0.379 3.167 -0.866 0 0 0 0 0 0 0 +0.367 3.145 -0.859 0 0 0 0 0 0 0 +0.358 3.154 -0.862 0 0 0 0 0 0 0 +0.349 3.165 -0.864 0 0 0 0 0 0 0 +0.337 3.147 -0.859 0 0 0 0 0 0 0 +0.334 3.172 -0.866 0 0 0 0 0 0 0 +0.324 3.166 -0.864 0 0 0 0 0 0 0 +0.312 3.148 -0.858 0 0 0 0 0 0 0 +0.304 3.171 -0.865 0 0 0 0 0 0 0 +0.294 3.172 -0.865 0 0 0 0 0 0 0 +0.284 3.173 -0.865 0 0 0 0 0 0 0 +0.275 3.178 -0.866 0 0 0 0 0 0 0 +0.264 3.175 -0.865 0 0 0 0 0 0 0 +0.259 3.171 -0.864 0 0 0 0 0 0 0 +0.249 3.174 -0.864 0 0 0 0 0 0 0 +0.24 3.179 -0.866 0 0 0 0 0 0 0 +0.23 3.191 -0.869 0 0 0 0 0 0 0 +0.22 3.188 -0.868 0 0 0 0 0 0 0 +0.21 3.185 -0.867 0 0 0 0 0 0 0 +0.2 3.185 -0.867 0 0 0 0 0 0 0 +0.195 3.191 -0.869 0 0 0 0 0 0 0 +0.185 3.196 -0.87 0 0 0 0 0 0 0 +0.175 3.191 -0.868 0 0 0 0 0 0 0 +0.165 3.199 -0.87 0 0 0 0 0 0 0 +0.155 3.199 -0.87 0 0 0 0 0 0 0 +0.145 3.192 -0.868 0 0 0 0 0 0 0 +0.135 3.196 -0.869 0 0 0 0 0 0 0 +0.13 3.197 -0.869 0 0 0 0 0 0 0 +0.12 3.21 -0.873 0 0 0 0 0 0 0 +0.11 3.188 -0.866 0 0 0 0 0 0 0 +0.102 3.287 -0.897 0 0 0 0 0 0 0 +0.091 3.269 -0.891 0 0 0 0 0 0 0 +0.081 3.257 -0.888 0 0 0 0 0 0 0 +0.071 3.265 -0.89 0 0 0 0 0 0 0 +0.065 3.25 -0.885 0 0 0 0 0 0 0 +0.055 3.245 -0.883 0 0 0 0 0 0 0 +0.045 3.247 -0.884 0 0 0 0 0 0 0 +0.035 3.356 -0.918 0 0 0 0 0 0 0 +0.024 3.396 -0.93 0 0 0 0 0 0 0 +0.014 3.216 -0.875 0 0 0 0 0 0 0 +-0.014 5.901 -1.705 0 0 0 0 0 0 0 +-0.033 5.899 -1.704 0 0 0 0 0 0 0 +-0.042 5.893 -1.703 0 0 0 0 0 0 0 +-0.061 5.933 -1.715 0 0 0 0 0 0 0 +-0.079 5.929 -1.714 0 0 0 0 0 0 0 +-0.098 5.935 -1.716 0 0 0 0 0 0 0 +-0.117 5.942 -1.718 0 0 0 0 0 0 0 +-0.136 5.945 -1.719 0 0 0 0 0 0 0 +-0.155 5.966 -1.726 0 0 0 0 0 0 0 +-0.164 5.95 -1.721 0 0 0 0 0 0 0 +-0.183 5.954 -1.722 0 0 0 0 0 0 0 +-0.202 5.955 -1.723 0 0 0 0 0 0 0 +-0.22 5.95 -1.721 0 0 0 0 0 0 0 +-0.239 5.959 -1.724 0 0 0 0 0 0 0 +-0.259 5.976 -1.73 0 0 0 0 0 0 0 +-0.277 5.96 -1.725 0 0 0 0 0 0 0 +-0.287 5.972 -1.729 0 0 0 0 0 0 0 +-0.306 5.981 -1.732 0 0 0 0 0 0 0 +-0.326 5.999 -1.738 0 0 0 0 0 0 0 +-0.344 5.989 -1.735 0 0 0 0 0 0 0 +-0.363 5.987 -1.735 0 0 0 0 0 0 0 +-0.382 5.982 -1.734 0 0 0 0 0 0 0 +-0.401 5.987 -1.736 0 0 0 0 0 0 0 +-0.41 5.986 -1.736 0 0 0 0 0 0 0 +-0.43 5.996 -1.739 0 0 0 0 0 0 0 +-0.45 6.012 -1.744 0 0 0 0 0 0 0 +-0.469 6.013 -1.745 0 0 0 0 0 0 0 +-0.487 6.002 -1.742 0 0 0 0 0 0 0 +-0.507 6.011 -1.746 0 0 0 0 0 0 0 +-0.526 6.016 -1.747 0 0 0 0 0 0 0 +-0.535 6.001 -1.743 0 0 0 0 0 0 0 +-0.558 6.043 -1.757 0 0 0 0 0 0 0 +-0.578 6.051 -1.76 0 0 0 0 0 0 0 +-0.594 6.023 -1.752 0 0 0 0 0 0 0 +-0.611 6.004 -1.746 0 0 0 0 0 0 0 +-0.634 6.042 -1.759 0 0 0 0 0 0 0 +-0.664 6.135 -1.788 0 0 0 0 0 0 0 +-0.684 6.138 -1.79 0 0 0 0 0 0 0 +-0.688 6.09 -1.775 0 0 0 0 0 0 0 +-0.701 6.034 -1.759 0 0 0 0 0 0 0 +-0.717 6.009 -1.752 0 0 0 0 0 0 0 +-0.733 5.986 -1.745 0 0 0 0 0 0 0 +-0.752 5.986 -1.746 0 0 0 0 0 0 0 +-0.773 6.002 -1.752 0 0 0 0 0 0 0 +-0.792 5.996 -1.75 0 0 0 0 0 0 0 +-0.801 5.995 -1.75 0 0 0 0 0 0 0 +-0.82 5.99 -1.75 0 0 0 0 0 0 0 +-0.839 5.988 -1.75 0 0 0 0 0 0 0 +-0.858 5.989 -1.751 0 0 0 0 0 0 0 +-0.877 5.988 -1.752 0 0 0 0 0 0 0 +-0.898 5.997 -1.755 0 0 0 0 0 0 0 +-0.914 5.981 -1.751 0 0 0 0 0 0 0 +-0.925 5.989 -1.754 0 0 0 0 0 0 0 +-0.946 5.995 -1.757 0 0 0 0 0 0 0 +-0.962 5.981 -1.753 0 0 0 0 0 0 0 +-0.98 5.972 -1.752 0 0 0 0 0 0 0 +-1.003 5.991 -1.759 0 0 0 0 0 0 0 +-1.019 5.975 -1.755 0 0 0 0 0 0 0 +-1.037 5.966 -1.753 0 0 0 0 0 0 0 +-1.058 5.976 -1.757 0 0 0 0 0 0 0 +-1.063 5.948 -1.749 0 0 0 0 0 0 0 +-1.084 5.956 -1.752 0 0 0 0 0 0 0 +-1.104 5.962 -1.755 0 0 0 0 0 0 0 +-1.123 5.958 -1.755 0 0 0 0 0 0 0 +-1.139 5.942 -1.751 0 0 0 0 0 0 0 +-1.16 5.949 -1.755 0 0 0 0 0 0 0 +-1.177 5.936 -1.752 0 0 0 0 0 0 0 +-1.186 5.935 -1.752 0 0 0 0 0 0 0 +-1.208 5.948 -1.757 0 0 0 0 0 0 0 +-1.227 5.946 -1.757 0 0 0 0 0 0 0 +-1.243 5.929 -1.753 0 0 0 0 0 0 0 +-1.263 5.93 -1.755 0 0 0 0 0 0 0 +-1.282 5.93 -1.756 0 0 0 0 0 0 0 +-1.301 5.924 -1.756 0 0 0 0 0 0 0 +-1.31 5.924 -1.756 0 0 0 0 0 0 0 +-1.328 5.916 -1.755 0 0 0 0 0 0 0 +-1.348 5.916 -1.756 0 0 0 0 0 0 0 +-1.369 5.923 -1.76 0 0 0 0 0 0 0 +-1.382 5.898 -1.753 0 0 0 0 0 0 0 +-1.402 5.899 -1.755 0 0 0 0 0 0 0 +-1.425 5.911 -1.76 0 0 0 0 0 0 0 +-1.428 5.883 -1.752 0 0 0 0 0 0 0 +-1.45 5.893 -1.757 0 0 0 0 0 0 0 +-1.471 5.9 -1.76 0 0 0 0 0 0 0 +-1.49 5.895 -1.76 0 0 0 0 0 0 0 +-1.508 5.889 -1.76 0 0 0 0 0 0 0 +-1.527 5.886 -1.76 0 0 0 0 0 0 0 +-1.544 5.875 -1.759 0 0 0 0 0 0 0 +-1.556 5.882 -1.762 0 0 0 0 0 0 0 +-1.578 5.89 -1.766 0 0 0 0 0 0 0 +-1.589 5.861 -1.758 0 0 0 0 0 0 0 +-1.611 5.867 -1.762 0 0 0 0 0 0 0 +-1.628 5.858 -1.76 0 0 0 0 0 0 0 +-1.645 5.846 -1.758 0 0 0 0 0 0 0 +-1.662 5.837 -1.757 0 0 0 0 0 0 0 +-1.678 5.857 -1.764 0 0 0 0 0 0 0 +-1.696 5.853 -1.765 0 0 0 0 0 0 0 +-1.71 5.833 -1.76 0 0 0 0 0 0 0 +-1.729 5.828 -1.76 0 0 0 0 0 0 0 +-1.748 5.824 -1.76 0 0 0 0 0 0 0 +-1.766 5.818 -1.76 0 0 0 0 0 0 0 +-1.789 5.828 -1.765 0 0 0 0 0 0 0 +-1.801 5.804 -1.759 0 0 0 0 0 0 0 +-1.813 5.808 -1.762 0 0 0 0 0 0 0 +-1.838 5.824 -1.769 0 0 0 0 0 0 0 +-1.846 5.787 -1.759 0 0 0 0 0 0 0 +-1.866 5.785 -1.76 0 0 0 0 0 0 0 +-1.887 5.788 -1.763 0 0 0 0 0 0 0 +-1.898 5.763 -1.756 0 0 0 0 0 0 0 +-1.921 5.769 -1.76 0 0 0 0 0 0 0 +-1.935 5.783 -1.766 0 0 0 0 0 0 0 +-1.945 5.751 -1.757 0 0 0 0 0 0 0 +-1.965 5.752 -1.76 0 0 0 0 0 0 0 +-1.988 5.759 -1.764 0 0 0 0 0 0 0 +-1.998 5.731 -1.757 0 0 0 0 0 0 0 +-2.012 5.712 -1.753 0 0 0 0 0 0 0 +-2.032 5.713 -1.755 0 0 0 0 0 0 0 +-2.038 5.7 -1.752 0 0 0 0 0 0 0 +-2.075 5.746 -1.769 0 0 0 0 0 0 0 +-2.108 5.779 -1.782 0 0 0 0 0 0 0 +-2.111 5.733 -1.769 0 0 0 0 0 0 0 +-2.118 5.698 -1.76 0 0 0 0 0 0 0 +-2.123 5.657 -1.749 0 0 0 0 0 0 0 +-2.15 5.674 -1.756 0 0 0 0 0 0 0 +-2.191 5.701 -1.769 0 0 0 0 0 0 0 +-2.206 5.685 -1.766 0 0 0 0 0 0 0 +-2.218 5.664 -1.761 0 0 0 0 0 0 0 +-2.237 5.66 -1.762 0 0 0 0 0 0 0 +-2.248 5.636 -1.756 0 0 0 0 0 0 0 +-2.272 5.646 -1.762 0 0 0 0 0 0 0 +-2.287 5.632 -1.76 0 0 0 0 0 0 0 +-2.291 5.616 -1.756 0 0 0 0 0 0 0 +-2.315 5.623 -1.76 0 0 0 0 0 0 0 +-2.337 5.626 -1.764 0 0 0 0 0 0 0 +-2.351 5.612 -1.762 0 0 0 0 0 0 0 +-2.366 5.597 -1.759 0 0 0 0 0 0 0 +-2.389 5.602 -1.763 0 0 0 0 0 0 0 +-2.403 5.586 -1.76 0 0 0 0 0 0 0 +-2.411 5.58 -1.76 0 0 0 0 0 0 0 +-2.429 5.574 -1.76 0 0 0 0 0 0 0 +-2.442 5.558 -1.757 0 0 0 0 0 0 0 +-2.461 5.554 -1.759 0 0 0 0 0 0 0 +-2.483 5.555 -1.762 0 0 0 0 0 0 0 +-2.497 5.54 -1.759 0 0 0 0 0 0 0 +-2.515 5.532 -1.759 0 0 0 0 0 0 0 +-2.526 5.533 -1.761 0 0 0 0 0 0 0 +-2.54 5.518 -1.759 0 0 0 0 0 0 0 +-2.564 5.526 -1.764 0 0 0 0 0 0 0 +-2.576 5.506 -1.76 0 0 0 0 0 0 0 +-2.591 5.493 -1.758 0 0 0 0 0 0 0 +-2.608 5.484 -1.758 0 0 0 0 0 0 0 +-2.63 5.486 -1.762 0 0 0 0 0 0 0 +-2.633 5.47 -1.757 0 0 0 0 0 0 0 +-2.652 5.465 -1.759 0 0 0 0 0 0 0 +-2.673 5.466 -1.762 0 0 0 0 0 0 0 +-2.684 5.445 -1.757 0 0 0 0 0 0 0 +-2.705 5.444 -1.76 0 0 0 0 0 0 0 +-2.726 5.444 -1.763 0 0 0 0 0 0 0 +-2.736 5.42 -1.757 0 0 0 0 0 0 0 +-2.757 5.42 -1.76 0 0 0 0 0 0 0 +-2.766 5.417 -1.761 0 0 0 0 0 0 0 +-2.777 5.396 -1.757 0 0 0 0 0 0 0 +-2.8 5.399 -1.761 0 0 0 0 0 0 0 +-2.829 5.413 -1.769 0 0 0 0 0 0 0 +-2.831 5.375 -1.759 0 0 0 0 0 0 0 +-2.85 5.371 -1.76 0 0 0 0 0 0 0 +-2.874 5.376 -1.765 0 0 0 0 0 0 0 +-2.88 5.366 -1.763 0 0 0 0 0 0 0 +-2.895 5.354 -1.762 0 0 0 0 0 0 0 +-2.917 5.353 -1.765 0 0 0 0 0 0 0 +-2.931 5.34 -1.764 0 0 0 0 0 0 0 +-2.944 5.323 -1.761 0 0 0 0 0 0 0 +-2.972 5.335 -1.769 0 0 0 0 0 0 0 +-2.984 5.316 -1.765 0 0 0 0 0 0 0 +-2.994 5.314 -1.766 0 0 0 0 0 0 0 +-3.016 5.315 -1.77 0 0 0 0 0 0 0 +-3.023 5.289 -1.764 0 0 0 0 0 0 0 +-3.041 5.281 -1.765 0 0 0 0 0 0 0 +-3.062 5.28 -1.768 0 0 0 0 0 0 0 +-3.069 5.254 -1.762 0 0 0 0 0 0 0 +-3.094 5.259 -1.767 0 0 0 0 0 0 0 +-3.1 5.249 -1.765 0 0 0 0 0 0 0 +-3.113 5.234 -1.763 0 0 0 0 0 0 0 +-3.138 5.238 -1.768 0 0 0 0 0 0 0 +-3.151 5.223 -1.766 0 0 0 0 0 0 0 +-3.163 5.206 -1.764 0 0 0 0 0 0 0 +-3.19 5.213 -1.77 0 0 0 0 0 0 0 +-3.204 5.199 -1.769 0 0 0 0 0 0 0 +-3.215 5.181 -1.766 0 0 0 0 0 0 0 +-3.229 5.184 -1.769 0 0 0 0 0 0 0 +-3.246 5.176 -1.769 0 0 0 0 0 0 0 +-3.257 5.157 -1.766 0 0 0 0 0 0 0 +-3.283 5.162 -1.772 0 0 0 0 0 0 0 +-3.297 5.148 -1.77 0 0 0 0 0 0 0 +-3.303 5.123 -1.765 0 0 0 0 0 0 0 +-3.327 5.124 -1.769 0 0 0 0 0 0 0 +-3.338 5.124 -1.771 0 0 0 0 0 0 0 +-3.353 5.111 -1.77 0 0 0 0 0 0 0 +-3.373 5.107 -1.773 0 0 0 0 0 0 0 +-3.386 5.092 -1.771 0 0 0 0 0 0 0 +-3.401 5.08 -1.77 0 0 0 0 0 0 0 +-3.409 5.058 -1.766 0 0 0 0 0 0 0 +-3.428 5.05 -1.768 0 0 0 0 0 0 0 +-3.439 5.05 -1.769 0 0 0 0 0 0 0 +-3.452 5.036 -1.768 0 0 0 0 0 0 0 +-3.466 5.022 -1.767 0 0 0 0 0 0 0 +-3.488 5.02 -1.77 0 0 0 0 0 0 0 +-3.503 5.008 -1.77 0 0 0 0 0 0 0 +-3.523 5.003 -1.772 0 0 0 0 0 0 0 +-3.533 4.984 -1.769 0 0 0 0 0 0 0 +-3.549 4.989 -1.773 0 0 0 0 0 0 0 +-3.561 4.973 -1.772 0 0 0 0 0 0 0 +-3.588 4.978 -1.778 0 0 0 0 0 0 0 +-3.589 4.946 -1.77 0 0 0 0 0 0 0 +-3.617 4.952 -1.776 0 0 0 0 0 0 0 +-3.628 4.934 -1.774 0 0 0 0 0 0 0 +-3.659 4.944 -1.782 0 0 0 0 0 0 0 +-3.665 4.919 -1.777 0 0 0 0 0 0 0 +-3.671 4.912 -1.776 0 0 0 0 0 0 0 +-3.705 4.925 -1.786 0 0 0 0 0 0 0 +-3.724 4.917 -1.788 0 0 0 0 0 0 0 +-3.765 4.939 -1.801 0 0 0 0 0 0 0 +-3.771 4.915 -1.796 0 0 0 0 0 0 0 +-3.764 4.875 -1.785 0 0 0 0 0 0 0 +-3.768 4.848 -1.779 0 0 0 0 0 0 0 +-3.811 4.887 -1.796 0 0 0 0 0 0 0 +-3.854 4.909 -1.81 0 0 0 0 0 0 0 +-3.859 4.885 -1.805 0 0 0 0 0 0 0 +-3.871 4.869 -1.804 0 0 0 0 0 0 0 +-3.866 4.831 -1.794 0 0 0 0 0 0 0 +-3.882 4.82 -1.794 0 0 0 0 0 0 0 +-3.882 4.789 -1.786 0 0 0 0 0 0 0 +-3.882 4.759 -1.779 0 0 0 0 0 0 0 +-3.885 4.747 -1.777 0 0 0 0 0 0 0 +-3.902 4.738 -1.778 0 0 0 0 0 0 0 +-3.917 4.726 -1.778 0 0 0 0 0 0 0 +-3.944 4.728 -1.784 0 0 0 0 0 0 0 +-3.955 4.711 -1.782 0 0 0 0 0 0 0 +-3.955 4.681 -1.775 0 0 0 0 0 0 0 +-3.977 4.677 -1.779 0 0 0 0 0 0 0 +-3.978 4.664 -1.776 0 0 0 0 0 0 0 +-4.001 4.66 -1.779 0 0 0 0 0 0 0 +-3.998 4.627 -1.771 0 0 0 0 0 0 0 +-4.025 4.629 -1.777 0 0 0 0 0 0 0 +-4.029 4.605 -1.772 0 0 0 0 0 0 0 +-4.052 4.602 -1.776 0 0 0 0 0 0 0 +-4.062 4.584 -1.774 0 0 0 0 0 0 0 +-4.078 4.587 -1.778 0 0 0 0 0 0 0 +-4.077 4.558 -1.771 0 0 0 0 0 0 0 +-4.099 4.553 -1.775 0 0 0 0 0 0 0 +-4.112 4.539 -1.774 0 0 0 0 0 0 0 +-4.117 4.516 -1.77 0 0 0 0 0 0 0 +-4.139 4.512 -1.773 0 0 0 0 0 0 0 +-4.151 4.496 -1.772 0 0 0 0 0 0 0 +-4.156 4.488 -1.772 0 0 0 0 0 0 0 +-4.181 4.486 -1.776 0 0 0 0 0 0 0 +-4.182 4.459 -1.77 0 0 0 0 0 0 0 +-4.199 4.448 -1.772 0 0 0 0 0 0 0 +-4.216 4.439 -1.773 0 0 0 0 0 0 0 +-4.242 4.438 -1.779 0 0 0 0 0 0 0 +-4.25 4.418 -1.776 0 0 0 0 0 0 0 +-4.258 4.399 -1.773 0 0 0 0 0 0 0 +-4.257 4.385 -1.77 0 0 0 0 0 0 0 +-4.273 4.374 -1.771 0 0 0 0 0 0 0 +-4.295 4.369 -1.775 0 0 0 0 0 0 0 +-4.31 4.356 -1.775 0 0 0 0 0 0 0 +-4.321 4.34 -1.774 0 0 0 0 0 0 0 +-4.333 4.325 -1.773 0 0 0 0 0 0 0 +-4.357 4.321 -1.778 0 0 0 0 0 0 0 +-4.355 4.306 -1.774 0 0 0 0 0 0 0 +-4.367 4.291 -1.773 0 0 0 0 0 0 0 +-4.388 4.284 -1.776 0 0 0 0 0 0 0 +-4.4 4.269 -1.776 0 0 0 0 0 0 0 +-4.409 4.251 -1.774 0 0 0 0 0 0 0 +-4.417 4.232 -1.772 0 0 0 0 0 0 0 +-4.422 4.21 -1.768 0 0 0 0 0 0 0 +-4.448 4.221 -1.776 0 0 0 0 0 0 0 +-4.444 4.192 -1.769 0 0 0 0 0 0 0 +-4.474 4.193 -1.776 0 0 0 0 0 0 0 +-4.475 4.168 -1.771 0 0 0 0 0 0 0 +-4.516 4.179 -1.783 0 0 0 0 0 0 0 +-4.505 4.143 -1.773 0 0 0 0 0 0 0 +-4.518 4.129 -1.773 0 0 0 0 0 0 0 +-4.54 4.136 -1.779 0 0 0 0 0 0 0 +-4.547 4.117 -1.777 0 0 0 0 0 0 0 +-4.557 4.1 -1.776 0 0 0 0 0 0 0 +-4.575 4.089 -1.778 0 0 0 0 0 0 0 +-4.585 4.072 -1.776 0 0 0 0 0 0 0 +-4.594 4.056 -1.775 0 0 0 0 0 0 0 +-4.607 4.041 -1.775 0 0 0 0 0 0 0 +-4.608 4.029 -1.773 0 0 0 0 0 0 0 +-4.626 4.019 -1.775 0 0 0 0 0 0 0 +-4.637 4.004 -1.775 0 0 0 0 0 0 0 +-4.646 3.985 -1.773 0 0 0 0 0 0 0 +-4.676 3.985 -1.78 0 0 0 0 0 0 0 +-4.682 3.966 -1.778 0 0 0 0 0 0 0 +-4.683 3.941 -1.773 0 0 0 0 0 0 0 +-4.708 3.938 -1.778 0 0 0 0 0 0 0 +-4.697 3.916 -1.771 0 0 0 0 0 0 0 +-4.706 3.898 -1.77 0 0 0 0 0 0 0 +-4.729 3.892 -1.774 0 0 0 0 0 0 0 +-4.738 3.875 -1.773 0 0 0 0 0 0 0 +-4.752 3.861 -1.773 0 0 0 0 0 0 0 +-4.759 3.842 -1.772 0 0 0 0 0 0 0 +-4.767 3.824 -1.77 0 0 0 0 0 0 0 +-4.777 3.82 -1.772 0 0 0 0 0 0 0 +-4.797 3.811 -1.775 0 0 0 0 0 0 0 +-4.818 3.803 -1.778 0 0 0 0 0 0 0 +-4.828 3.786 -1.778 0 0 0 0 0 0 0 +-4.845 3.775 -1.779 0 0 0 0 0 0 0 +-4.849 3.754 -1.776 0 0 0 0 0 0 0 +-4.861 3.739 -1.776 0 0 0 0 0 0 0 +-4.867 3.731 -1.776 0 0 0 0 0 0 0 +-4.874 3.712 -1.775 0 0 0 0 0 0 0 +-4.888 3.699 -1.776 0 0 0 0 0 0 0 +-4.912 3.693 -1.781 0 0 0 0 0 0 0 +-4.905 3.664 -1.773 0 0 0 0 0 0 0 +-4.923 3.653 -1.776 0 0 0 0 0 0 0 +-4.933 3.636 -1.775 0 0 0 0 0 0 0 +-4.954 3.64 -1.781 0 0 0 0 0 0 0 +-4.975 3.631 -1.785 0 0 0 0 0 0 0 +-4.972 3.605 -1.779 0 0 0 0 0 0 0 +-4.98 3.587 -1.778 0 0 0 0 0 0 0 +-4.989 3.569 -1.777 0 0 0 0 0 0 0 +-5.003 3.556 -1.778 0 0 0 0 0 0 0 +-5.003 3.533 -1.774 0 0 0 0 0 0 0 +-5.026 3.537 -1.781 0 0 0 0 0 0 0 +-5.039 3.522 -1.781 0 0 0 0 0 0 0 +-5.042 3.501 -1.778 0 0 0 0 0 0 0 +-5.051 3.484 -1.778 0 0 0 0 0 0 0 +-5.067 3.471 -1.779 0 0 0 0 0 0 0 +-5.076 3.454 -1.779 0 0 0 0 0 0 0 +-5.081 3.434 -1.776 0 0 0 0 0 0 0 +-5.102 3.425 -1.781 0 0 0 0 0 0 0 +-5.098 3.411 -1.777 0 0 0 0 0 0 0 +-5.123 3.404 -1.782 0 0 0 0 0 0 0 +-5.136 3.389 -1.783 0 0 0 0 0 0 0 +-5.132 3.364 -1.778 0 0 0 0 0 0 0 +-5.152 3.354 -1.781 0 0 0 0 0 0 0 +-5.146 3.327 -1.775 0 0 0 0 0 0 0 +-5.166 3.317 -1.779 0 0 0 0 0 0 0 +-5.175 3.311 -1.78 0 0 0 0 0 0 0 +-5.179 3.291 -1.778 0 0 0 0 0 0 0 +-5.196 3.279 -1.78 0 0 0 0 0 0 0 +-5.203 3.26 -1.779 0 0 0 0 0 0 0 +-5.206 3.24 -1.776 0 0 0 0 0 0 0 +-5.215 3.223 -1.776 0 0 0 0 0 0 0 +-5.24 3.215 -1.781 0 0 0 0 0 0 0 +-5.245 3.207 -1.781 0 0 0 0 0 0 0 +-5.248 3.186 -1.779 0 0 0 0 0 0 0 +-5.268 3.176 -1.782 0 0 0 0 0 0 0 +-5.276 3.158 -1.782 0 0 0 0 0 0 0 +-5.281 3.139 -1.78 0 0 0 0 0 0 0 +-5.313 3.135 -1.788 0 0 0 0 0 0 0 +-5.306 3.108 -1.782 0 0 0 0 0 0 0 +-5.327 3.11 -1.788 0 0 0 0 0 0 0 +-5.339 3.094 -1.788 0 0 0 0 0 0 0 +-5.355 3.081 -1.791 0 0 0 0 0 0 0 +-5.346 3.054 -1.784 0 0 0 0 0 0 0 +-5.366 3.042 -1.788 0 0 0 0 0 0 0 +-5.369 3.022 -1.785 0 0 0 0 0 0 0 +-5.372 3.001 -1.783 0 0 0 0 0 0 0 +-5.386 2.987 -1.785 0 0 0 0 0 0 0 +-5.397 2.982 -1.787 0 0 0 0 0 0 0 +-5.413 2.969 -1.789 0 0 0 0 0 0 0 +-5.446 2.965 -1.798 0 0 0 0 0 0 0 +-5.461 2.95 -1.799 0 0 0 0 0 0 0 +-5.482 2.939 -1.804 0 0 0 0 0 0 0 +-5.481 2.917 -1.8 0 0 0 0 0 0 0 +-5.495 2.902 -1.802 0 0 0 0 0 0 0 +-5.488 2.887 -1.798 0 0 0 0 0 0 0 +-5.481 2.862 -1.792 0 0 0 0 0 0 0 +-5.485 2.842 -1.791 0 0 0 0 0 0 0 +-5.508 2.832 -1.795 0 0 0 0 0 0 0 +-5.486 2.799 -1.785 0 0 0 0 0 0 0 +-5.491 2.78 -1.783 0 0 0 0 0 0 0 +-5.486 2.756 -1.779 0 0 0 0 0 0 0 +-5.472 2.738 -1.772 0 0 0 0 0 0 0 +-5.474 2.718 -1.77 0 0 0 0 0 0 0 +-5.479 2.699 -1.769 0 0 0 0 0 0 0 +-5.496 2.686 -1.772 0 0 0 0 0 0 0 +-5.525 2.678 -1.779 0 0 0 0 0 0 0 +-5.544 2.666 -1.782 0 0 0 0 0 0 0 +-5.578 2.661 -1.791 0 0 0 0 0 0 0 +-5.575 2.649 -1.789 0 0 0 0 0 0 0 +-5.599 2.639 -1.794 0 0 0 0 0 0 0 +-5.597 2.616 -1.791 0 0 0 0 0 0 0 +-5.605 2.599 -1.791 0 0 0 0 0 0 0 +-5.634 2.59 -1.798 0 0 0 0 0 0 0 +-5.621 2.563 -1.791 0 0 0 0 0 0 0 +-5.647 2.553 -1.796 0 0 0 0 0 0 0 +-5.642 2.541 -1.794 0 0 0 0 0 0 0 +-5.65 2.523 -1.794 0 0 0 0 0 0 0 +-5.649 2.501 -1.791 0 0 0 0 0 0 0 +-5.648 2.48 -1.788 0 0 0 0 0 0 0 +-5.654 2.461 -1.787 0 0 0 0 0 0 0 +-5.664 2.444 -1.788 0 0 0 0 0 0 0 +-5.657 2.42 -1.783 0 0 0 0 0 0 0 +-5.677 2.418 -1.788 0 0 0 0 0 0 0 +-5.681 2.399 -1.787 0 0 0 0 0 0 0 +-5.671 2.374 -1.781 0 0 0 0 0 0 0 +-5.68 2.357 -1.782 0 0 0 0 0 0 0 +-5.682 2.337 -1.78 0 0 0 0 0 0 0 +-5.682 2.316 -1.778 0 0 0 0 0 0 0 +-5.707 2.305 -1.783 0 0 0 0 0 0 0 +-5.689 2.277 -1.775 0 0 0 0 0 0 0 +-5.702 2.272 -1.778 0 0 0 0 0 0 0 +-5.702 2.251 -1.776 0 0 0 0 0 0 0 +-5.723 2.239 -1.781 0 0 0 0 0 0 0 +-5.709 2.213 -1.773 0 0 0 0 0 0 0 +-5.732 2.201 -1.779 0 0 0 0 0 0 0 +-5.701 2.169 -1.766 0 0 0 0 0 0 0 +-5.717 2.154 -1.769 0 0 0 0 0 0 0 +-5.71 2.141 -1.766 0 0 0 0 0 0 0 +-5.883 1.485 -1.756 0 0 0 0 0 0 0 +-5.924 1.476 -1.768 0 0 0 0 0 0 0 +-5.912 1.453 -1.763 0 0 0 0 0 0 0 +-5.943 1.441 -1.771 0 0 0 0 0 0 0 +-5.934 1.419 -1.767 0 0 0 0 0 0 0 +-5.953 1.413 -1.772 0 0 0 0 0 0 0 +-5.945 1.392 -1.768 0 0 0 0 0 0 0 +-5.947 1.373 -1.768 0 0 0 0 0 0 0 +-5.983 1.361 -1.778 0 0 0 0 0 0 0 +-5.963 1.337 -1.77 0 0 0 0 0 0 0 +-5.965 1.318 -1.769 0 0 0 0 0 0 0 +-5.97 1.299 -1.769 0 0 0 0 0 0 0 +-5.983 1.292 -1.773 0 0 0 0 0 0 0 +-5.994 1.275 -1.775 0 0 0 0 0 0 0 +-5.983 1.253 -1.77 0 0 0 0 0 0 0 +-5.995 1.235 -1.773 0 0 0 0 0 0 0 +-5.982 1.213 -1.768 0 0 0 0 0 0 0 +-5.974 1.192 -1.764 0 0 0 0 0 0 0 +-5.985 1.175 -1.766 0 0 0 0 0 0 0 +-5.999 1.168 -1.77 0 0 0 0 0 0 0 +-6.025 1.153 -1.777 0 0 0 0 0 0 0 +-5.989 1.127 -1.765 0 0 0 0 0 0 0 +-6.019 1.113 -1.773 0 0 0 0 0 0 0 +-6.005 1.091 -1.768 0 0 0 0 0 0 0 +-6.001 1.071 -1.765 0 0 0 0 0 0 0 +-6.027 1.056 -1.772 0 0 0 0 0 0 0 +-6.004 1.042 -1.765 0 0 0 0 0 0 0 +-6.021 1.025 -1.769 0 0 0 0 0 0 0 +-6.02 1.006 -1.768 0 0 0 0 0 0 0 +-6.025 0.987 -1.768 0 0 0 0 0 0 0 +-6.038 0.97 -1.771 0 0 0 0 0 0 0 +-6.025 0.949 -1.766 0 0 0 0 0 0 0 +-6.023 0.929 -1.765 0 0 0 0 0 0 0 +-6.043 0.922 -1.77 0 0 0 0 0 0 0 +-6.035 0.901 -1.767 0 0 0 0 0 0 0 +-6.03 0.881 -1.765 0 0 0 0 0 0 0 +-6.061 0.866 -1.773 0 0 0 0 0 0 0 +-6.039 0.844 -1.766 0 0 0 0 0 0 0 +-6.034 0.824 -1.763 0 0 0 0 0 0 0 +-6.059 0.808 -1.77 0 0 0 0 0 0 0 +-6.044 0.796 -1.765 0 0 0 0 0 0 0 +-6.048 0.778 -1.766 0 0 0 0 0 0 0 +-6.049 0.758 -1.765 0 0 0 0 0 0 0 +-6.066 0.741 -1.77 0 0 0 0 0 0 0 +-6.053 0.72 -1.765 0 0 0 0 0 0 0 +-6.067 0.703 -1.769 0 0 0 0 0 0 0 +-6.058 0.682 -1.765 0 0 0 0 0 0 0 +-6.059 0.673 -1.765 0 0 0 0 0 0 0 +-6.07 0.655 -1.768 0 0 0 0 0 0 0 +-6.067 0.635 -1.766 0 0 0 0 0 0 0 +-6.078 0.617 -1.769 0 0 0 0 0 0 0 +-6.07 0.597 -1.766 0 0 0 0 0 0 0 +-6.101 0.58 -1.775 0 0 0 0 0 0 0 +-6.072 0.559 -1.766 0 0 0 0 0 0 0 +-6.076 0.54 -1.766 0 0 0 0 0 0 0 +-6.075 0.53 -1.766 0 0 0 0 0 0 0 +-6.071 0.51 -1.764 0 0 0 0 0 0 0 +-6.103 0.494 -1.773 0 0 0 0 0 0 0 +-6.066 0.472 -1.762 0 0 0 0 0 0 0 +-6.079 0.453 -1.765 0 0 0 0 0 0 0 +-6.096 0.435 -1.77 0 0 0 0 0 0 0 +-6.106 0.417 -1.773 0 0 0 0 0 0 0 +-6.08 0.406 -1.765 0 0 0 0 0 0 0 +-6.085 0.387 -1.766 0 0 0 0 0 0 0 +-6.083 0.367 -1.765 0 0 0 0 0 0 0 +-6.092 0.349 -1.767 0 0 0 0 0 0 0 +-6.091 0.329 -1.766 0 0 0 0 0 0 0 +-6.109 0.311 -1.772 0 0 0 0 0 0 0 +-6.087 0.291 -1.765 0 0 0 0 0 0 0 +-6.124 0.273 -1.776 0 0 0 0 0 0 0 +-6.086 0.262 -1.764 0 0 0 0 0 0 0 +-6.091 0.243 -1.765 0 0 0 0 0 0 0 +-6.118 0.225 -1.773 0 0 0 0 0 0 0 +-6.087 0.205 -1.763 0 0 0 0 0 0 0 +-6.093 0.186 -1.765 0 0 0 0 0 0 0 +-6.095 0.167 -1.766 0 0 0 0 0 0 0 +-6.088 0.147 -1.763 0 0 0 0 0 0 0 +-6.1 0.138 -1.767 0 0 0 0 0 0 0 +-6.095 0.119 -1.765 0 0 0 0 0 0 0 +-6.103 0.1 -1.768 0 0 0 0 0 0 0 +-6.092 0.08 -1.764 0 0 0 0 0 0 0 +-6.113 0.061 -1.77 0 0 0 0 0 0 0 +-6.075 0.042 -1.759 0 0 0 0 0 0 0 +-6.109 0.023 -1.769 0 0 0 0 0 0 0 +-6.098 0.013 -1.766 0 0 0 0 0 0 0 +-6.088 -0.006 -1.763 0 0 0 0 0 0 0 +-6.105 -0.025 -1.768 0 0 0 0 0 0 0 +-6.084 -0.044 -1.762 0 0 0 0 0 0 0 +-6.101 -0.063 -1.767 0 0 0 0 0 0 0 +-6.091 -0.082 -1.764 0 0 0 0 0 0 0 +-6.085 -0.101 -1.762 0 0 0 0 0 0 0 +-6.11 -0.111 -1.77 0 0 0 0 0 0 0 +-6.094 -0.13 -1.765 0 0 0 0 0 0 0 +-6.109 -0.15 -1.77 0 0 0 0 0 0 0 +-6.094 -0.168 -1.765 0 0 0 0 0 0 0 +-6.089 -0.188 -1.764 0 0 0 0 0 0 0 +-6.094 -0.207 -1.766 0 0 0 0 0 0 0 +-6.099 -0.226 -1.768 0 0 0 0 0 0 0 +-6.112 -0.236 -1.772 0 0 0 0 0 0 0 +-6.077 -0.254 -1.761 0 0 0 0 0 0 0 +-6.105 -0.275 -1.77 0 0 0 0 0 0 0 +-6.091 -0.293 -1.766 0 0 0 0 0 0 0 +-6.09 -0.312 -1.766 0 0 0 0 0 0 0 +-6.079 -0.331 -1.763 0 0 0 0 0 0 0 +-6.092 -0.351 -1.767 0 0 0 0 0 0 0 +-6.085 -0.369 -1.765 0 0 0 0 0 0 0 +-6.099 -0.38 -1.77 0 0 0 0 0 0 0 +-6.085 -0.398 -1.766 0 0 0 0 0 0 0 +-6.085 -0.417 -1.766 0 0 0 0 0 0 0 +-6.111 -0.439 -1.775 0 0 0 0 0 0 0 +-6.069 -0.455 -1.762 0 0 0 0 0 0 0 +-6.089 -0.475 -1.769 0 0 0 0 0 0 0 +-6.063 -0.492 -1.761 0 0 0 0 0 0 0 +-6.081 -0.504 -1.767 0 0 0 0 0 0 0 +-6.066 -0.521 -1.763 0 0 0 0 0 0 0 +-6.079 -0.542 -1.768 0 0 0 0 0 0 0 +-6.078 -0.561 -1.768 0 0 0 0 0 0 0 +-6.076 -0.58 -1.768 0 0 0 0 0 0 0 +-6.097 -0.602 -1.775 0 0 0 0 0 0 0 +-6.063 -0.617 -1.765 0 0 0 0 0 0 0 +-6.073 -0.628 -1.768 0 0 0 0 0 0 0 +-6.073 -0.647 -1.769 0 0 0 0 0 0 0 +-6.073 -0.667 -1.769 0 0 0 0 0 0 0 +-6.074 -0.686 -1.77 0 0 0 0 0 0 0 +-6.067 -0.705 -1.769 0 0 0 0 0 0 0 +-6.074 -0.725 -1.772 0 0 0 0 0 0 0 +-6.053 -0.741 -1.766 0 0 0 0 0 0 0 +-6.065 -0.753 -1.77 0 0 0 0 0 0 0 +-6.06 -0.771 -1.769 0 0 0 0 0 0 0 +-6.064 -0.791 -1.771 0 0 0 0 0 0 0 +-6.32 -0.846 -1.852 0 0 0 0 0 0 0 +-6.348 -0.87 -1.861 0 0 0 0 0 0 0 +-6.341 -0.89 -1.86 0 0 0 0 0 0 0 +-6.306 -0.905 -1.85 0 0 0 0 0 0 0 +-6.304 -0.925 -1.85 0 0 0 0 0 0 0 +-6.31 -0.946 -1.853 0 0 0 0 0 0 0 +-6.322 -0.958 -1.857 0 0 0 0 0 0 0 +-6.317 -0.977 -1.857 0 0 0 0 0 0 0 +-6.316 -0.998 -1.857 0 0 0 0 0 0 0 +-6.333 -1.021 -1.864 0 0 0 0 0 0 0 +-6.304 -1.036 -1.856 0 0 0 0 0 0 0 +-6.28 -1.052 -1.849 0 0 0 0 0 0 0 +-6.276 -1.072 -1.849 0 0 0 0 0 0 0 +-6.273 -1.082 -1.848 0 0 0 0 0 0 0 +-6.25 -1.098 -1.843 0 0 0 0 0 0 0 +-6.256 -1.119 -1.846 0 0 0 0 0 0 0 +-6.223 -1.133 -1.836 0 0 0 0 0 0 0 +-6.234 -1.156 -1.841 0 0 0 0 0 0 0 +-6.238 -1.177 -1.843 0 0 0 0 0 0 0 +-6.247 -1.199 -1.847 0 0 0 0 0 0 0 +-6.244 -1.208 -1.847 0 0 0 0 0 0 0 +-6.251 -1.23 -1.85 0 0 0 0 0 0 0 +-6.26 -1.253 -1.854 0 0 0 0 0 0 0 +-6.264 -1.274 -1.857 0 0 0 0 0 0 0 +-6.265 -1.295 -1.859 0 0 0 0 0 0 0 +-6.272 -1.317 -1.862 0 0 0 0 0 0 0 +-6.265 -1.336 -1.861 0 0 0 0 0 0 0 +-6.253 -1.343 -1.858 0 0 0 0 0 0 0 +-6.227 -1.358 -1.851 0 0 0 0 0 0 0 +-6.254 -1.385 -1.861 0 0 0 0 0 0 0 +-6.22 -1.398 -1.851 0 0 0 0 0 0 0 +-6.206 -1.415 -1.848 0 0 0 0 0 0 0 +-6.202 -1.434 -1.848 0 0 0 0 0 0 0 +-6.212 -1.458 -1.853 0 0 0 0 0 0 0 +-6.211 -1.468 -1.854 0 0 0 0 0 0 0 +-6.177 -1.48 -1.844 0 0 0 0 0 0 0 +-6.176 -1.5 -1.846 0 0 0 0 0 0 0 +-6.179 -1.522 -1.848 0 0 0 0 0 0 0 +-6.174 -1.541 -1.848 0 0 0 0 0 0 0 +-6.182 -1.564 -1.852 0 0 0 0 0 0 0 +-6.177 -1.583 -1.852 0 0 0 0 0 0 0 +-6.181 -1.605 -1.855 0 0 0 0 0 0 0 +-6.17 -1.612 -1.852 0 0 0 0 0 0 0 +-6.157 -1.63 -1.85 0 0 0 0 0 0 0 +-6.135 -1.644 -1.844 0 0 0 0 0 0 0 +-6.145 -1.668 -1.849 0 0 0 0 0 0 0 +-6.138 -1.687 -1.848 0 0 0 0 0 0 0 +-6.143 -1.709 -1.852 0 0 0 0 0 0 0 +-6.127 -1.725 -1.848 0 0 0 0 0 0 0 +-6.128 -1.736 -1.85 0 0 0 0 0 0 0 +-6.117 -1.753 -1.848 0 0 0 0 0 0 0 +-6.119 -1.775 -1.85 0 0 0 0 0 0 0 +-6.102 -1.791 -1.847 0 0 0 0 0 0 0 +-6.108 -1.813 -1.85 0 0 0 0 0 0 0 +-6.1 -1.832 -1.85 0 0 0 0 0 0 0 +-6.098 -1.852 -1.851 0 0 0 0 0 0 0 +-6.084 -1.858 -1.847 0 0 0 0 0 0 0 +-6.071 -1.875 -1.845 0 0 0 0 0 0 0 +-6.07 -1.896 -1.847 0 0 0 0 0 0 0 +-6.059 -1.913 -1.845 0 0 0 0 0 0 0 +-6.047 -1.93 -1.843 0 0 0 0 0 0 0 +-6.032 -1.946 -1.84 0 0 0 0 0 0 0 +-6.033 -1.968 -1.843 0 0 0 0 0 0 0 +-6.021 -1.974 -1.84 0 0 0 0 0 0 0 +-5.718 -2.589 -1.821 0 0 0 0 0 0 0 +-5.721 -2.612 -1.825 0 0 0 0 0 0 0 +-5.711 -2.629 -1.824 0 0 0 0 0 0 0 +-5.699 -2.646 -1.823 0 0 0 0 0 0 0 +-5.685 -2.661 -1.821 0 0 0 0 0 0 0 +-5.686 -2.683 -1.824 0 0 0 0 0 0 0 +-5.676 -2.689 -1.822 0 0 0 0 0 0 0 +-5.663 -2.705 -1.821 0 0 0 0 0 0 0 +-5.656 -2.723 -1.821 0 0 0 0 0 0 0 +-5.651 -2.743 -1.822 0 0 0 0 0 0 0 +-5.639 -2.759 -1.821 0 0 0 0 0 0 0 +-5.63 -2.777 -1.821 0 0 0 0 0 0 0 +-5.609 -2.788 -1.817 0 0 0 0 0 0 0 +-5.622 -2.806 -1.823 0 0 0 0 0 0 0 +-5.605 -2.819 -1.82 0 0 0 0 0 0 0 +-5.596 -2.837 -1.82 0 0 0 0 0 0 0 +-5.583 -2.852 -1.819 0 0 0 0 0 0 0 +-5.573 -2.869 -1.818 0 0 0 0 0 0 0 +-5.562 -2.886 -1.818 0 0 0 0 0 0 0 +-5.56 -2.907 -1.82 0 0 0 0 0 0 0 +-5.558 -2.917 -1.821 0 0 0 0 0 0 0 +-5.542 -2.931 -1.819 0 0 0 0 0 0 0 +-5.533 -2.948 -1.819 0 0 0 0 0 0 0 +-5.524 -2.966 -1.819 0 0 0 0 0 0 0 +-5.513 -2.982 -1.818 0 0 0 0 0 0 0 +-5.507 -3.001 -1.82 0 0 0 0 0 0 0 +-5.511 -3.026 -1.824 0 0 0 0 0 0 0 +-5.493 -3.027 -1.82 0 0 0 0 0 0 0 +-5.481 -3.044 -1.819 0 0 0 0 0 0 0 +-5.484 -3.067 -1.823 0 0 0 0 0 0 0 +-5.467 -3.081 -1.821 0 0 0 0 0 0 0 +-5.454 -3.096 -1.82 0 0 0 0 0 0 0 +-5.449 -3.116 -1.821 0 0 0 0 0 0 0 +-5.433 -3.129 -1.819 0 0 0 0 0 0 0 +-5.438 -3.144 -1.822 0 0 0 0 0 0 0 +-5.428 -3.161 -1.822 0 0 0 0 0 0 0 +-5.412 -3.174 -1.82 0 0 0 0 0 0 0 +-5.41 -3.196 -1.823 0 0 0 0 0 0 0 +-5.401 -3.214 -1.824 0 0 0 0 0 0 0 +-5.378 -3.223 -1.819 0 0 0 0 0 0 0 +-5.371 -3.242 -1.82 0 0 0 0 0 0 0 +-5.364 -3.249 -1.82 0 0 0 0 0 0 0 +-5.351 -3.264 -1.818 0 0 0 0 0 0 0 +-5.342 -3.282 -1.819 0 0 0 0 0 0 0 +-5.34 -3.303 -1.822 0 0 0 0 0 0 0 +-5.335 -3.323 -1.824 0 0 0 0 0 0 0 +-5.321 -3.338 -1.822 0 0 0 0 0 0 0 +-5.306 -3.352 -1.821 0 0 0 0 0 0 0 +-5.3 -3.36 -1.821 0 0 0 0 0 0 0 +-5.285 -3.373 -1.819 0 0 0 0 0 0 0 +-5.289 -3.399 -1.824 0 0 0 0 0 0 0 +-5.275 -3.414 -1.823 0 0 0 0 0 0 0 +-5.262 -3.429 -1.822 0 0 0 0 0 0 0 +-5.26 -3.451 -1.825 0 0 0 0 0 0 0 +-5.247 -3.467 -1.825 0 0 0 0 0 0 0 +-5.228 -3.478 -1.822 0 0 0 0 0 0 0 +-5.232 -3.492 -1.825 0 0 0 0 0 0 0 +-5.234 -3.517 -1.83 0 0 0 0 0 0 0 +-5.213 -3.527 -1.827 0 0 0 0 0 0 0 +-5.196 -3.539 -1.824 0 0 0 0 0 0 0 +-5.172 -3.547 -1.82 0 0 0 0 0 0 0 +-5.166 -3.566 -1.821 0 0 0 0 0 0 0 +-5.153 -3.582 -1.821 0 0 0 0 0 0 0 +-5.163 -3.601 -1.827 0 0 0 0 0 0 0 +-5.149 -3.615 -1.825 0 0 0 0 0 0 0 +-5.161 -3.647 -1.834 0 0 0 0 0 0 0 +-5.141 -3.658 -1.831 0 0 0 0 0 0 0 +-5.127 -3.672 -1.83 0 0 0 0 0 0 0 +-5.1 -3.677 -1.824 0 0 0 0 0 0 0 +-5.045 -3.661 -1.808 0 0 0 0 0 0 0 +-5.058 -3.683 -1.815 0 0 0 0 0 0 0 +-5.055 -3.705 -1.818 0 0 0 0 0 0 0 +-5.051 -3.727 -1.821 0 0 0 0 0 0 0 +-5.027 -3.734 -1.817 0 0 0 0 0 0 0 +-5.011 -3.746 -1.815 0 0 0 0 0 0 0 +-5.007 -3.767 -1.818 0 0 0 0 0 0 0 +-4.984 -3.775 -1.814 0 0 0 0 0 0 0 +-4.987 -3.79 -1.817 0 0 0 0 0 0 0 +-4.968 -3.8 -1.814 0 0 0 0 0 0 0 +-4.951 -3.812 -1.812 0 0 0 0 0 0 0 +-4.939 -3.827 -1.812 0 0 0 0 0 0 0 +-4.926 -3.842 -1.812 0 0 0 0 0 0 0 +-4.915 -3.858 -1.812 0 0 0 0 0 0 0 +-4.905 -3.875 -1.813 0 0 0 0 0 0 0 +-4.896 -3.88 -1.812 0 0 0 0 0 0 0 +-4.886 -3.898 -1.813 0 0 0 0 0 0 0 +-4.873 -3.912 -1.812 0 0 0 0 0 0 0 +-4.848 -3.918 -1.808 0 0 0 0 0 0 0 +-4.841 -3.937 -1.809 0 0 0 0 0 0 0 +-4.824 -3.948 -1.808 0 0 0 0 0 0 0 +-4.808 -3.961 -1.807 0 0 0 0 0 0 0 +-4.804 -3.97 -1.807 0 0 0 0 0 0 0 +-4.794 -3.987 -1.808 0 0 0 0 0 0 0 +-4.786 -4.006 -1.81 0 0 0 0 0 0 0 +-4.77 -4.018 -1.809 0 0 0 0 0 0 0 +-4.759 -4.035 -1.809 0 0 0 0 0 0 0 +-4.738 -4.042 -1.806 0 0 0 0 0 0 0 +-4.731 -4.062 -1.808 0 0 0 0 0 0 0 +-4.722 -4.067 -1.807 0 0 0 0 0 0 0 +-4.703 -4.077 -1.805 0 0 0 0 0 0 0 +-4.689 -4.09 -1.804 0 0 0 0 0 0 0 +-4.677 -4.106 -1.805 0 0 0 0 0 0 0 +-4.66 -4.117 -1.803 0 0 0 0 0 0 0 +-4.656 -4.139 -1.807 0 0 0 0 0 0 0 +-4.627 -4.14 -1.8 0 0 0 0 0 0 0 +-4.621 -4.161 -1.803 0 0 0 0 0 0 0 +-4.615 -4.168 -1.803 0 0 0 0 0 0 0 +-4.603 -4.184 -1.804 0 0 0 0 0 0 0 +-4.587 -4.196 -1.802 0 0 0 0 0 0 0 +-4.575 -4.211 -1.803 0 0 0 0 0 0 0 +-4.559 -4.223 -1.802 0 0 0 0 0 0 0 +-4.544 -4.236 -1.801 0 0 0 0 0 0 0 +-4.531 -4.25 -1.801 0 0 0 0 0 0 0 +-4.52 -4.253 -1.799 0 0 0 0 0 0 0 +-4.507 -4.268 -1.799 0 0 0 0 0 0 0 +-4.503 -4.291 -1.804 0 0 0 0 0 0 0 +-4.487 -4.302 -1.802 0 0 0 0 0 0 0 +-4.466 -4.31 -1.799 0 0 0 0 0 0 0 +-4.462 -4.333 -1.804 0 0 0 0 0 0 0 +-4.441 -4.339 -1.8 0 0 0 0 0 0 0 +-4.431 -4.343 -1.799 0 0 0 0 0 0 0 +-4.421 -4.361 -1.801 0 0 0 0 0 0 0 +-4.405 -4.373 -1.799 0 0 0 0 0 0 0 +-4.393 -4.388 -1.8 0 0 0 0 0 0 0 +-4.376 -4.399 -1.799 0 0 0 0 0 0 0 +-4.364 -4.414 -1.799 0 0 0 0 0 0 0 +-4.354 -4.432 -1.801 0 0 0 0 0 0 0 +-4.345 -4.437 -1.801 0 0 0 0 0 0 0 +-4.321 -4.44 -1.796 0 0 0 0 0 0 0 +-4.312 -4.459 -1.798 0 0 0 0 0 0 0 +-4.302 -4.476 -1.8 0 0 0 0 0 0 0 +-4.281 -4.483 -1.797 0 0 0 0 0 0 0 +-4.274 -4.503 -1.8 0 0 0 0 0 0 0 +-4.258 -4.515 -1.799 0 0 0 0 0 0 0 +-4.238 -4.508 -1.794 0 0 0 0 0 0 0 +-4.229 -4.527 -1.796 0 0 0 0 0 0 0 +-4.221 -4.547 -1.799 0 0 0 0 0 0 0 +-4.197 -4.549 -1.794 0 0 0 0 0 0 0 +-4.19 -4.571 -1.798 0 0 0 0 0 0 0 +-4.181 -4.59 -1.8 0 0 0 0 0 0 0 +-4.156 -4.591 -1.795 0 0 0 0 0 0 0 +-4.15 -4.599 -1.796 0 0 0 0 0 0 0 +-4.144 -4.621 -1.799 0 0 0 0 0 0 0 +-4.113 -4.615 -1.792 0 0 0 0 0 0 0 +-4.108 -4.64 -1.796 0 0 0 0 0 0 0 +-4.104 -4.664 -1.801 0 0 0 0 0 0 0 +-4.076 -4.663 -1.795 0 0 0 0 0 0 0 +-4.06 -4.674 -1.795 0 0 0 0 0 0 0 +-4.056 -4.683 -1.796 0 0 0 0 0 0 0 +-4.033 -4.687 -1.792 0 0 0 0 0 0 0 +-4.021 -4.703 -1.794 0 0 0 0 0 0 0 +-4.016 -4.727 -1.798 0 0 0 0 0 0 0 +-3.988 -4.724 -1.792 0 0 0 0 0 0 0 +-3.974 -4.738 -1.792 0 0 0 0 0 0 0 +-3.968 -4.76 -1.796 0 0 0 0 0 0 0 +-3.941 -4.758 -1.791 0 0 0 0 0 0 0 +-3.939 -4.772 -1.794 0 0 0 0 0 0 0 +-3.935 -4.797 -1.799 0 0 0 0 0 0 0 +-3.904 -4.79 -1.791 0 0 0 0 0 0 0 +-3.899 -4.814 -1.796 0 0 0 0 0 0 0 +-3.88 -4.822 -1.794 0 0 0 0 0 0 0 +-3.857 -4.824 -1.79 0 0 0 0 0 0 0 +-3.852 -4.849 -1.795 0 0 0 0 0 0 0 +-3.846 -4.857 -1.796 0 0 0 0 0 0 0 +-3.823 -4.86 -1.792 0 0 0 0 0 0 0 +-3.815 -4.881 -1.796 0 0 0 0 0 0 0 +-3.808 -4.904 -1.8 0 0 0 0 0 0 0 +-3.775 -4.893 -1.791 0 0 0 0 0 0 0 +-3.79 -4.944 -1.807 0 0 0 0 0 0 0 +-3.765 -4.944 -1.802 0 0 0 0 0 0 0 +-3.754 -4.945 -1.8 0 0 0 0 0 0 0 +-3.737 -4.955 -1.799 0 0 0 0 0 0 0 +-3.728 -4.976 -1.803 0 0 0 0 0 0 0 +-3.708 -4.982 -1.801 0 0 0 0 0 0 0 +-3.697 -5 -1.803 0 0 0 0 0 0 0 +-3.664 -4.988 -1.794 0 0 0 0 0 0 0 +-3.633 -4.978 -1.786 0 0 0 0 0 0 0 +-3.659 -5.03 -1.804 0 0 0 0 0 0 0 +-3.662 -5.068 -1.814 0 0 0 0 0 0 0 +-3.653 -5.089 -1.817 0 0 0 0 0 0 0 +-3.638 -5.102 -1.818 0 0 0 0 0 0 0 +-3.592 -5.071 -1.802 0 0 0 0 0 0 0 +-3.571 -5.074 -1.799 0 0 0 0 0 0 0 +-3.552 -5.082 -1.798 0 0 0 0 0 0 0 +-3.55 -5.096 -1.801 0 0 0 0 0 0 0 +-3.522 -5.09 -1.794 0 0 0 0 0 0 0 +-3.512 -5.11 -1.798 0 0 0 0 0 0 0 +-3.492 -5.115 -1.795 0 0 0 0 0 0 0 +-3.47 -5.116 -1.792 0 0 0 0 0 0 0 +-3.454 -5.127 -1.792 0 0 0 0 0 0 0 +-3.441 -5.143 -1.794 0 0 0 0 0 0 0 +-3.429 -5.143 -1.792 0 0 0 0 0 0 0 +-3.414 -5.156 -1.792 0 0 0 0 0 0 0 +-3.393 -5.158 -1.789 0 0 0 0 0 0 0 +-3.38 -5.174 -1.791 0 0 0 0 0 0 0 +-3.369 -5.193 -1.794 0 0 0 0 0 0 0 +-3.34 -5.184 -1.787 0 0 0 0 0 0 0 +-3.326 -5.197 -1.788 0 0 0 0 0 0 0 +-3.324 -5.212 -1.792 0 0 0 0 0 0 0 +-3.298 -5.208 -1.786 0 0 0 0 0 0 0 +-3.286 -5.225 -1.789 0 0 0 0 0 0 0 +-3.274 -5.243 -1.792 0 0 0 0 0 0 0 +-3.259 -5.255 -1.792 0 0 0 0 0 0 0 +-3.242 -5.266 -1.792 0 0 0 0 0 0 0 +-3.223 -5.271 -1.791 0 0 0 0 0 0 0 +-3.212 -5.273 -1.789 0 0 0 0 0 0 0 +-3.192 -5.276 -1.787 0 0 0 0 0 0 0 +-3.183 -5.299 -1.792 0 0 0 0 0 0 0 +-3.167 -5.309 -1.792 0 0 0 0 0 0 0 +-3.142 -5.306 -1.787 0 0 0 0 0 0 0 +-3.133 -5.329 -1.792 0 0 0 0 0 0 0 +-3.105 -5.319 -1.785 0 0 0 0 0 0 0 +-3.099 -5.329 -1.786 0 0 0 0 0 0 0 +-3.086 -5.345 -1.789 0 0 0 0 0 0 0 +-3.074 -5.363 -1.792 0 0 0 0 0 0 0 +-3.055 -5.368 -1.79 0 0 0 0 0 0 0 +-3.038 -5.377 -1.79 0 0 0 0 0 0 0 +-3.025 -5.394 -1.792 0 0 0 0 0 0 0 +-3.001 -5.391 -1.788 0 0 0 0 0 0 0 +-2.992 -5.394 -1.788 0 0 0 0 0 0 0 +-2.977 -5.407 -1.789 0 0 0 0 0 0 0 +-2.96 -5.416 -1.789 0 0 0 0 0 0 0 +-2.946 -5.432 -1.791 0 0 0 0 0 0 0 +-2.931 -5.445 -1.792 0 0 0 0 0 0 0 +-2.91 -5.447 -1.79 0 0 0 0 0 0 0 +-2.883 -5.438 -1.783 0 0 0 0 0 0 0 +-2.88 -5.453 -1.787 0 0 0 0 0 0 0 +-2.856 -5.448 -1.782 0 0 0 0 0 0 0 +-2.848 -5.474 -1.788 0 0 0 0 0 0 0 +-2.833 -5.488 -1.79 0 0 0 0 0 0 0 +-2.815 -5.495 -1.789 0 0 0 0 0 0 0 +-2.789 -5.487 -1.783 0 0 0 0 0 0 0 +-2.775 -5.503 -1.786 0 0 0 0 0 0 0 +-2.768 -5.51 -1.787 0 0 0 0 0 0 0 +-2.753 -5.522 -1.788 0 0 0 0 0 0 0 +-2.729 -5.519 -1.784 0 0 0 0 0 0 0 +-2.719 -5.543 -1.789 0 0 0 0 0 0 0 +-2.699 -5.545 -1.787 0 0 0 0 0 0 0 +-2.68 -5.55 -1.786 0 0 0 0 0 0 0 +-2.659 -5.551 -1.783 0 0 0 0 0 0 0 +-2.646 -5.57 -1.787 0 0 0 0 0 0 0 +-2.636 -5.571 -1.786 0 0 0 0 0 0 0 +-2.615 -5.572 -1.783 0 0 0 0 0 0 0 +-2.599 -5.582 -1.784 0 0 0 0 0 0 0 +-2.584 -5.597 -1.786 0 0 0 0 0 0 0 +-2.565 -5.601 -1.785 0 0 0 0 0 0 0 +-2.55 -5.616 -1.788 0 0 0 0 0 0 0 +-2.534 -5.626 -1.788 0 0 0 0 0 0 0 +-2.521 -5.621 -1.785 0 0 0 0 0 0 0 +-2.509 -5.642 -1.789 0 0 0 0 0 0 0 +-2.495 -5.66 -1.793 0 0 0 0 0 0 0 +-2.472 -5.655 -1.789 0 0 0 0 0 0 0 +-2.459 -5.674 -1.792 0 0 0 0 0 0 0 +-2.441 -5.681 -1.792 0 0 0 0 0 0 0 +-2.425 -5.693 -1.794 0 0 0 0 0 0 0 +-2.42 -5.705 -1.796 0 0 0 0 0 0 0 +-2.401 -5.711 -1.796 0 0 0 0 0 0 0 +-2.371 -5.689 -1.786 0 0 0 0 0 0 0 +-2.355 -5.701 -1.788 0 0 0 0 0 0 0 +-2.346 -5.732 -1.795 0 0 0 0 0 0 0 +-2.335 -5.755 -1.801 0 0 0 0 0 0 0 +-2.337 -5.814 -1.818 0 0 0 0 0 0 0 +-2.334 -5.833 -1.823 0 0 0 0 0 0 0 +-2.259 -5.697 -1.775 0 0 0 0 0 0 0 +-2.242 -5.705 -1.776 0 0 0 0 0 0 0 +-2.25 -5.778 -1.798 0 0 0 0 0 0 0 +-2.219 -5.752 -1.786 0 0 0 0 0 0 0 +-2.194 -5.742 -1.781 0 0 0 0 0 0 0 +-2.176 -5.748 -1.781 0 0 0 0 0 0 0 +-2.166 -5.749 -1.78 0 0 0 0 0 0 0 +-2.136 -5.724 -1.769 0 0 0 0 0 0 0 +-2.119 -5.732 -1.77 0 0 0 0 0 0 0 +-2.096 -5.724 -1.765 0 0 0 0 0 0 0 +-2.075 -5.724 -1.763 0 0 0 0 0 0 0 +-2.062 -5.745 -1.768 0 0 0 0 0 0 0 +-2.038 -5.735 -1.762 0 0 0 0 0 0 0 +-2.029 -5.736 -1.762 0 0 0 0 0 0 0 +-2.019 -5.768 -1.77 0 0 0 0 0 0 0 +-1.991 -5.745 -1.76 0 0 0 0 0 0 0 +-1.973 -5.75 -1.76 0 0 0 0 0 0 0 +-1.957 -5.763 -1.762 0 0 0 0 0 0 0 +-1.933 -5.751 -1.756 0 0 0 0 0 0 0 +-1.914 -5.755 -1.756 0 0 0 0 0 0 0 +-1.909 -5.771 -1.76 0 0 0 0 0 0 0 +-1.885 -5.759 -1.754 0 0 0 0 0 0 0 +-1.87 -5.772 -1.756 0 0 0 0 0 0 0 +-1.852 -5.78 -1.757 0 0 0 0 0 0 0 +-1.833 -5.782 -1.756 0 0 0 0 0 0 0 +-1.816 -5.793 -1.757 0 0 0 0 0 0 0 +-1.8 -5.806 -1.76 0 0 0 0 0 0 0 +-1.782 -5.78 -1.75 0 0 0 0 0 0 0 +-1.767 -5.794 -1.753 0 0 0 0 0 0 0 +-1.749 -5.8 -1.753 0 0 0 0 0 0 0 +-1.729 -5.802 -1.752 0 0 0 0 0 0 0 +-1.716 -5.824 -1.757 0 0 0 0 0 0 0 +-1.691 -5.807 -1.75 0 0 0 0 0 0 0 +-1.671 -5.807 -1.749 0 0 0 0 0 0 0 +-1.664 -5.817 -1.751 0 0 0 0 0 0 0 +-1.648 -5.829 -1.753 0 0 0 0 0 0 0 +-1.628 -5.829 -1.752 0 0 0 0 0 0 0 +-1.61 -5.834 -1.752 0 0 0 0 0 0 0 +-1.59 -5.833 -1.75 0 0 0 0 0 0 0 +-1.571 -5.835 -1.749 0 0 0 0 0 0 0 +-1.552 -5.84 -1.749 0 0 0 0 0 0 0 +-1.54 -5.831 -1.745 0 0 0 0 0 0 0 +-1.525 -5.847 -1.749 0 0 0 0 0 0 0 +-1.505 -5.844 -1.746 0 0 0 0 0 0 0 +-1.487 -5.853 -1.747 0 0 0 0 0 0 0 +-1.468 -5.855 -1.747 0 0 0 0 0 0 0 +-1.45 -5.862 -1.747 0 0 0 0 0 0 0 +-1.432 -5.868 -1.748 0 0 0 0 0 0 0 +-1.421 -5.861 -1.745 0 0 0 0 0 0 0 +-1.403 -5.866 -1.745 0 0 0 0 0 0 0 +-1.386 -5.879 -1.748 0 0 0 0 0 0 0 +-1.365 -5.872 -1.744 0 0 0 0 0 0 0 +-1.345 -5.869 -1.742 0 0 0 0 0 0 0 +-1.326 -5.871 -1.742 0 0 0 0 0 0 0 +-1.309 -5.881 -1.743 0 0 0 0 0 0 0 +-1.299 -5.881 -1.743 0 0 0 0 0 0 0 +-1.281 -5.885 -1.743 0 0 0 0 0 0 0 +-1.262 -5.889 -1.743 0 0 0 0 0 0 0 +-1.244 -5.893 -1.743 0 0 0 0 0 0 0 +-1.227 -5.905 -1.745 0 0 0 0 0 0 0 +-1.205 -5.894 -1.74 0 0 0 0 0 0 0 +-1.187 -5.895 -1.74 0 0 0 0 0 0 0 +-1.17 -5.909 -1.743 0 0 0 0 0 0 0 +-1.16 -5.907 -1.742 0 0 0 0 0 0 0 +-1.142 -5.914 -1.743 0 0 0 0 0 0 0 +-1.12 -5.899 -1.737 0 0 0 0 0 0 0 +-1.102 -5.906 -1.738 0 0 0 0 0 0 0 +-1.083 -5.908 -1.737 0 0 0 0 0 0 0 +-1.065 -5.913 -1.738 0 0 0 0 0 0 0 +-1.047 -5.918 -1.739 0 0 0 0 0 0 0 +-1.038 -5.923 -1.74 0 0 0 0 0 0 0 +-1.019 -5.925 -1.739 0 0 0 0 0 0 0 +-1.001 -5.934 -1.741 0 0 0 0 0 0 0 +-0.983 -5.939 -1.742 0 0 0 0 0 0 0 +-0.965 -5.945 -1.743 0 0 0 0 0 0 0 +-0.948 -5.96 -1.746 0 0 0 0 0 0 0 +-0.937 -5.95 -1.743 0 0 0 0 0 0 0 +-0.921 -5.97 -1.748 0 0 0 0 0 0 0 +-0.902 -5.971 -1.747 0 0 0 0 0 0 0 +-0.881 -5.96 -1.743 0 0 0 0 0 0 0 +-0.863 -5.969 -1.745 0 0 0 0 0 0 0 +-0.844 -5.968 -1.744 0 0 0 0 0 0 0 +-0.826 -5.976 -1.746 0 0 0 0 0 0 0 +-0.807 -5.975 -1.744 0 0 0 0 0 0 0 +-0.798 -5.982 -1.746 0 0 0 0 0 0 0 +-0.779 -5.986 -1.747 0 0 0 0 0 0 0 +-0.759 -5.979 -1.744 0 0 0 0 0 0 0 +-0.742 -5.989 -1.746 0 0 0 0 0 0 0 +-0.722 -5.986 -1.744 0 0 0 0 0 0 0 +-0.704 -5.992 -1.746 0 0 0 0 0 0 0 +-0.684 -5.984 -1.743 0 0 0 0 0 0 0 +-0.675 -5.989 -1.744 0 0 0 0 0 0 0 +-0.657 -5.999 -1.746 0 0 0 0 0 0 0 +-0.638 -5.999 -1.746 0 0 0 0 0 0 0 +-0.618 -5.995 -1.744 0 0 0 0 0 0 0 +-0.601 -6.012 -1.749 0 0 0 0 0 0 0 +-0.582 -6.016 -1.749 0 0 0 0 0 0 0 +-0.563 -6.014 -1.748 0 0 0 0 0 0 0 +-0.554 -6.019 -1.749 0 0 0 0 0 0 0 +-0.534 -6.013 -1.747 0 0 0 0 0 0 0 +-0.515 -6.005 -1.744 0 0 0 0 0 0 0 +-0.497 -6.024 -1.749 0 0 0 0 0 0 0 +-0.479 -6.031 -1.751 0 0 0 0 0 0 0 +-0.459 -6.019 -1.747 0 0 0 0 0 0 0 +-0.44 -6.021 -1.747 0 0 0 0 0 0 0 +-0.43 -6.017 -1.746 0 0 0 0 0 0 0 +-0.411 -6.015 -1.744 0 0 0 0 0 0 0 +-0.393 -6.039 -1.752 0 0 0 0 0 0 0 +-0.374 -6.035 -1.75 0 0 0 0 0 0 0 +-0.355 -6.024 -1.746 0 0 0 0 0 0 0 +-0.336 -6.039 -1.75 0 0 0 0 0 0 0 +-0.317 -6.026 -1.746 0 0 0 0 0 0 0 +-0.308 -6.035 -1.749 0 0 0 0 0 0 0 +-0.289 -6.043 -1.751 0 0 0 0 0 0 0 +-0.27 -6.038 -1.749 0 0 0 0 0 0 0 +-0.251 -6.035 -1.748 0 0 0 0 0 0 0 +-0.233 -6.068 -1.758 0 0 0 0 0 0 0 +-0.213 -6.041 -1.749 0 0 0 0 0 0 0 +-0.194 -6.047 -1.751 0 0 0 0 0 0 0 +-0.185 -6.051 -1.752 0 0 0 0 0 0 0 +-0.166 -6.055 -1.753 0 0 0 0 0 0 0 +-0.147 -6.052 -1.752 0 0 0 0 0 0 0 +-0.128 -6.07 -1.757 0 0 0 0 0 0 0 +-0.108 -6.045 -1.75 0 0 0 0 0 0 0 +-0.09 -6.067 -1.756 0 0 0 0 0 0 0 +-0.071 -6.055 -1.753 0 0 0 0 0 0 0 +-0.061 -6.08 -1.76 0 0 0 0 0 0 0 +-0.042 -6.056 -1.753 0 0 0 0 0 0 0 +-0.023 -6.077 -1.759 0 0 0 0 0 0 0 +-0.004 -6.05 -1.751 0 0 0 0 0 0 0 +0.015 -6.077 -1.759 0 0 0 0 0 0 0 +0.034 -6.071 -1.757 0 0 0 0 0 0 0 +0.053 -6.061 -1.755 0 0 0 0 0 0 0 +0.063 -6.092 -1.764 0 0 0 0 0 0 0 +0.082 -6.076 -1.759 0 0 0 0 0 0 0 +0.101 -6.082 -1.761 0 0 0 0 0 0 0 +0.12 -6.058 -1.754 0 0 0 0 0 0 0 +0.139 -6.083 -1.762 0 0 0 0 0 0 0 +0.158 -6.063 -1.756 0 0 0 0 0 0 0 +0.178 -6.082 -1.762 0 0 0 0 0 0 0 +0.187 -6.064 -1.756 0 0 0 0 0 0 0 +0.206 -6.077 -1.76 0 0 0 0 0 0 0 +0.226 -6.092 -1.765 0 0 0 0 0 0 0 +0.244 -6.072 -1.759 0 0 0 0 0 0 0 +0.264 -6.077 -1.761 0 0 0 0 0 0 0 +0.282 -6.072 -1.76 0 0 0 0 0 0 0 +0.302 -6.079 -1.762 0 0 0 0 0 0 0 +0.312 -6.084 -1.764 0 0 0 0 0 0 0 +0.331 -6.083 -1.764 0 0 0 0 0 0 0 +0.35 -6.078 -1.763 0 0 0 0 0 0 0 +0.369 -6.085 -1.765 0 0 0 0 0 0 0 +0.388 -6.08 -1.764 0 0 0 0 0 0 0 +0.407 -6.071 -1.762 0 0 0 0 0 0 0 +0.426 -6.068 -1.761 0 0 0 0 0 0 0 +0.436 -6.078 -1.765 0 0 0 0 0 0 0 +0.456 -6.081 -1.766 0 0 0 0 0 0 0 +0.474 -6.072 -1.763 0 0 0 0 0 0 0 +0.494 -6.08 -1.766 0 0 0 0 0 0 0 +0.513 -6.076 -1.766 0 0 0 0 0 0 0 +0.531 -6.069 -1.764 0 0 0 0 0 0 0 +0.55 -6.067 -1.764 0 0 0 0 0 0 0 +0.56 -6.066 -1.764 0 0 0 0 0 0 0 +0.578 -6.055 -1.761 0 0 0 0 0 0 0 +0.598 -6.061 -1.763 0 0 0 0 0 0 0 +0.616 -6.053 -1.762 0 0 0 0 0 0 0 +0.637 -6.063 -1.765 0 0 0 0 0 0 0 +0.656 -6.064 -1.766 0 0 0 0 0 0 0 +0.675 -6.064 -1.767 0 0 0 0 0 0 0 +0.684 -6.055 -1.765 0 0 0 0 0 0 0 +0.703 -6.051 -1.764 0 0 0 0 0 0 0 +0.721 -6.043 -1.762 0 0 0 0 0 0 0 +0.741 -6.049 -1.765 0 0 0 0 0 0 0 +0.76 -6.048 -1.765 0 0 0 0 0 0 0 +0.777 -6.029 -1.76 0 0 0 0 0 0 0 +0.8 -6.055 -1.769 0 0 0 0 0 0 0 +0.806 -6.033 -1.762 0 0 0 0 0 0 0 +0.828 -6.047 -1.768 0 0 0 0 0 0 0 +0.844 -6.027 -1.762 0 0 0 0 0 0 0 +0.868 -6.057 -1.772 0 0 0 0 0 0 0 +0.884 -6.033 -1.766 0 0 0 0 0 0 0 +0.907 -6.055 -1.773 0 0 0 0 0 0 0 +0.923 -6.037 -1.769 0 0 0 0 0 0 0 +0.945 -6.051 -1.774 0 0 0 0 0 0 0 +0.952 -6.035 -1.769 0 0 0 0 0 0 0 +0.972 -6.037 -1.771 0 0 0 0 0 0 0 +0.991 -6.034 -1.771 0 0 0 0 0 0 0 +1.01 -6.031 -1.771 0 0 0 0 0 0 0 +1.027 -6.02 -1.769 0 0 0 0 0 0 0 +1.048 -6.025 -1.771 0 0 0 0 0 0 0 +1.069 -6.033 -1.775 0 0 0 0 0 0 0 +1.078 -6.029 -1.774 0 0 0 0 0 0 0 +1.094 -6.012 -1.77 0 0 0 0 0 0 0 +1.116 -6.026 -1.775 0 0 0 0 0 0 0 +1.137 -6.034 -1.779 0 0 0 0 0 0 0 +1.152 -6.009 -1.772 0 0 0 0 0 0 0 +1.173 -6.013 -1.775 0 0 0 0 0 0 0 +1.186 -6.03 -1.781 0 0 0 0 0 0 0 +1.2 -6.002 -1.773 0 0 0 0 0 0 0 +1.221 -6.007 -1.776 0 0 0 0 0 0 0 +1.246 -6.035 -1.786 0 0 0 0 0 0 0 +1.259 -6.002 -1.776 0 0 0 0 0 0 0 +1.278 -5.998 -1.776 0 0 0 0 0 0 0 +1.293 -5.979 -1.772 0 0 0 0 0 0 0 +1.315 -5.989 -1.776 0 0 0 0 0 0 0 +1.323 -5.982 -1.775 0 0 0 0 0 0 0 +1.342 -5.978 -1.775 0 0 0 0 0 0 0 +1.358 -5.962 -1.771 0 0 0 0 0 0 0 +1.376 -5.952 -1.769 0 0 0 0 0 0 0 +1.398 -5.961 -1.773 0 0 0 0 0 0 0 +1.414 -5.947 -1.77 0 0 0 0 0 0 0 +1.432 -5.941 -1.77 0 0 0 0 0 0 0 +3.496 -5.237 -1.827 0 0 0 0 0 0 0 +3.524 -5.243 -1.834 0 0 0 0 0 0 0 +3.54 -5.232 -1.834 0 0 0 0 0 0 0 +3.565 -5.234 -1.838 0 0 0 0 0 0 0 +3.596 -5.243 -1.846 0 0 0 0 0 0 0 +3.596 -5.208 -1.837 0 0 0 0 0 0 0 +3.614 -5.217 -1.843 0 0 0 0 0 0 0 +3.624 -5.196 -1.839 0 0 0 0 0 0 0 +3.649 -5.197 -1.844 0 0 0 0 0 0 0 +3.66 -5.178 -1.841 0 0 0 0 0 0 0 +3.678 -5.169 -1.842 0 0 0 0 0 0 0 +3.703 -5.17 -1.847 0 0 0 0 0 0 0 +3.722 -5.161 -1.848 0 0 0 0 0 0 0 +3.725 -5.149 -1.846 0 0 0 0 0 0 0 +3.736 -5.13 -1.843 0 0 0 0 0 0 0 +3.743 -5.106 -1.838 0 0 0 0 0 0 0 +3.77 -5.109 -1.844 0 0 0 0 0 0 0 +3.779 -5.088 -1.84 0 0 0 0 0 0 0 +3.784 -5.061 -1.834 0 0 0 0 0 0 0 +3.792 -5.039 -1.83 0 0 0 0 0 0 0 +3.792 -5.022 -1.826 0 0 0 0 0 0 0 +3.81 -5.013 -1.827 0 0 0 0 0 0 0 +3.836 -5.015 -1.833 0 0 0 0 0 0 0 +3.841 -4.989 -1.827 0 0 0 0 0 0 0 +3.85 -4.968 -1.824 0 0 0 0 0 0 0 +3.873 -4.966 -1.828 0 0 0 0 0 0 0 +3.884 -4.948 -1.825 0 0 0 0 0 0 0 +3.887 -4.936 -1.823 0 0 0 0 0 0 0 +3.916 -4.94 -1.83 0 0 0 0 0 0 0 +3.921 -4.915 -1.824 0 0 0 0 0 0 0 +3.94 -4.907 -1.826 0 0 0 0 0 0 0 +3.958 -4.897 -1.827 0 0 0 0 0 0 0 +3.967 -4.877 -1.824 0 0 0 0 0 0 0 +3.989 -4.874 -1.828 0 0 0 0 0 0 0 +3.991 -4.86 -1.825 0 0 0 0 0 0 0 +4.011 -4.854 -1.827 0 0 0 0 0 0 0 +4.047 -4.866 -1.837 0 0 0 0 0 0 0 +4.059 -4.849 -1.835 0 0 0 0 0 0 0 +4.067 -4.827 -1.832 0 0 0 0 0 0 0 +4.088 -4.822 -1.835 0 0 0 0 0 0 0 +4.101 -4.806 -1.834 0 0 0 0 0 0 0 +4.099 -4.789 -1.83 0 0 0 0 0 0 0 +4.118 -4.781 -1.831 0 0 0 0 0 0 0 +4.131 -4.765 -1.83 0 0 0 0 0 0 0 +4.139 -4.745 -1.827 0 0 0 0 0 0 0 +4.167 -4.746 -1.833 0 0 0 0 0 0 0 +4.169 -4.719 -1.827 0 0 0 0 0 0 0 +4.183 -4.704 -1.827 0 0 0 0 0 0 0 +4.209 -4.704 -1.832 0 0 0 0 0 0 0 +4.212 -4.693 -1.83 0 0 0 0 0 0 0 +4.227 -4.68 -1.83 0 0 0 0 0 0 0 +4.24 -4.665 -1.83 0 0 0 0 0 0 0 +4.256 -4.653 -1.83 0 0 0 0 0 0 0 +4.266 -4.634 -1.828 0 0 0 0 0 0 0 +4.286 -4.626 -1.83 0 0 0 0 0 0 0 +4.296 -4.608 -1.828 0 0 0 0 0 0 0 +4.31 -4.609 -1.831 0 0 0 0 0 0 0 +4.316 -4.587 -1.828 0 0 0 0 0 0 0 +4.334 -4.576 -1.829 0 0 0 0 0 0 0 +4.344 -4.558 -1.827 0 0 0 0 0 0 0 +4.356 -4.542 -1.826 0 0 0 0 0 0 0 +4.364 -4.522 -1.824 0 0 0 0 0 0 0 +4.372 -4.516 -1.824 0 0 0 0 0 0 0 +4.383 -4.499 -1.822 0 0 0 0 0 0 0 +4.403 -4.491 -1.825 0 0 0 0 0 0 0 +4.421 -4.481 -1.827 0 0 0 0 0 0 0 +4.431 -4.463 -1.825 0 0 0 0 0 0 0 +4.441 -4.445 -1.823 0 0 0 0 0 0 0 +4.461 -4.438 -1.826 0 0 0 0 0 0 0 +4.46 -4.423 -1.822 0 0 0 0 0 0 0 +4.474 -4.409 -1.822 0 0 0 0 0 0 0 +4.486 -4.393 -1.822 0 0 0 0 0 0 0 +4.492 -4.371 -1.818 0 0 0 0 0 0 0 +4.51 -4.361 -1.82 0 0 0 0 0 0 0 +4.53 -4.353 -1.823 0 0 0 0 0 0 0 +4.534 -4.33 -1.819 0 0 0 0 0 0 0 +4.548 -4.329 -1.822 0 0 0 0 0 0 0 +4.555 -4.309 -1.819 0 0 0 0 0 0 0 +4.57 -4.296 -1.82 0 0 0 0 0 0 0 +4.579 -4.277 -1.818 0 0 0 0 0 0 0 +4.59 -4.26 -1.817 0 0 0 0 0 0 0 +4.604 -4.247 -1.817 0 0 0 0 0 0 0 +4.619 -4.234 -1.818 0 0 0 0 0 0 0 +4.629 -4.217 -1.817 0 0 0 0 0 0 0 +4.636 -4.21 -1.817 0 0 0 0 0 0 0 +4.646 -4.192 -1.815 0 0 0 0 0 0 0 +4.657 -4.175 -1.814 0 0 0 0 0 0 0 +4.67 -4.161 -1.814 0 0 0 0 0 0 0 +4.689 -4.151 -1.817 0 0 0 0 0 0 0 +4.694 -4.13 -1.814 0 0 0 0 0 0 0 +4.7 -4.109 -1.811 0 0 0 0 0 0 0 +4.715 -4.109 -1.814 0 0 0 0 0 0 0 +4.718 -4.085 -1.81 0 0 0 0 0 0 0 +4.729 -4.069 -1.809 0 0 0 0 0 0 0 +4.748 -4.059 -1.812 0 0 0 0 0 0 0 +4.753 -4.038 -1.809 0 0 0 0 0 0 0 +4.762 -4.02 -1.807 0 0 0 0 0 0 0 +4.768 -4 -1.805 0 0 0 0 0 0 0 +4.776 -3.994 -1.805 0 0 0 0 0 0 0 +4.792 -3.981 -1.807 0 0 0 0 0 0 0 +4.807 -3.968 -1.808 0 0 0 0 0 0 0 +4.83 -3.962 -1.812 0 0 0 0 0 0 0 +4.824 -3.932 -1.805 0 0 0 0 0 0 0 +4.832 -3.913 -1.803 0 0 0 0 0 0 0 +4.849 -3.914 -1.807 0 0 0 0 0 0 0 +4.845 -3.886 -1.801 0 0 0 0 0 0 0 +4.863 -3.875 -1.803 0 0 0 0 0 0 0 +4.883 -3.866 -1.806 0 0 0 0 0 0 0 +4.893 -3.849 -1.805 0 0 0 0 0 0 0 +4.896 -3.827 -1.802 0 0 0 0 0 0 0 +4.911 -3.814 -1.803 0 0 0 0 0 0 0 +4.906 -3.786 -1.796 0 0 0 0 0 0 0 +4.926 -3.788 -1.802 0 0 0 0 0 0 0 +4.944 -3.777 -1.804 0 0 0 0 0 0 0 +4.944 -3.753 -1.799 0 0 0 0 0 0 0 +4.959 -3.739 -1.801 0 0 0 0 0 0 0 +4.972 -3.725 -1.801 0 0 0 0 0 0 0 +4.977 -3.705 -1.799 0 0 0 0 0 0 0 +4.994 -3.693 -1.801 0 0 0 0 0 0 0 +4.99 -3.678 -1.797 0 0 0 0 0 0 0 +5.016 -3.672 -1.802 0 0 0 0 0 0 0 +5.019 -3.651 -1.799 0 0 0 0 0 0 0 +5.026 -3.632 -1.798 0 0 0 0 0 0 0 +5.034 -3.614 -1.796 0 0 0 0 0 0 0 +5.044 -3.597 -1.796 0 0 0 0 0 0 0 +5.055 -3.581 -1.796 0 0 0 0 0 0 0 +5.064 -3.575 -1.797 0 0 0 0 0 0 0 +5.072 -3.557 -1.796 0 0 0 0 0 0 0 +5.091 -3.547 -1.799 0 0 0 0 0 0 0 +5.107 -3.534 -1.801 0 0 0 0 0 0 0 +5.115 -3.516 -1.799 0 0 0 0 0 0 0 +5.137 -3.507 -1.804 0 0 0 0 0 0 0 +5.156 -3.496 -1.807 0 0 0 0 0 0 0 +5.157 -3.485 -1.805 0 0 0 0 0 0 0 +5.168 -3.469 -1.805 0 0 0 0 0 0 0 +5.18 -3.454 -1.805 0 0 0 0 0 0 0 +5.194 -3.439 -1.807 0 0 0 0 0 0 0 +5.184 -3.409 -1.799 0 0 0 0 0 0 0 +5.185 -3.387 -1.795 0 0 0 0 0 0 0 +5.202 -3.386 -1.799 0 0 0 0 0 0 0 +5.188 -3.354 -1.791 0 0 0 0 0 0 0 +5.216 -3.349 -1.797 0 0 0 0 0 0 0 +5.22 -3.329 -1.795 0 0 0 0 0 0 0 +5.224 -3.308 -1.792 0 0 0 0 0 0 0 +5.246 -3.299 -1.796 0 0 0 0 0 0 0 +5.253 -3.28 -1.795 0 0 0 0 0 0 0 +5.255 -3.259 -1.792 0 0 0 0 0 0 0 +5.264 -3.253 -1.794 0 0 0 0 0 0 0 +5.277 -3.238 -1.795 0 0 0 0 0 0 0 +5.281 -3.217 -1.792 0 0 0 0 0 0 0 +5.296 -3.204 -1.794 0 0 0 0 0 0 0 +5.306 -3.187 -1.794 0 0 0 0 0 0 0 +5.308 -3.166 -1.791 0 0 0 0 0 0 0 +5.324 -3.153 -1.794 0 0 0 0 0 0 0 +5.334 -3.147 -1.795 0 0 0 0 0 0 0 +5.344 -3.131 -1.795 0 0 0 0 0 0 0 +5.36 -3.118 -1.798 0 0 0 0 0 0 0 +5.377 -3.104 -1.8 0 0 0 0 0 0 0 +5.395 -3.092 -1.803 0 0 0 0 0 0 0 +5.401 -3.073 -1.802 0 0 0 0 0 0 0 +5.394 -3.047 -1.796 0 0 0 0 0 0 0 +5.395 -3.037 -1.795 0 0 0 0 0 0 0 +5.398 -3.016 -1.792 0 0 0 0 0 0 0 +5.406 -2.998 -1.792 0 0 0 0 0 0 0 +5.405 -2.976 -1.788 0 0 0 0 0 0 0 +5.411 -2.957 -1.787 0 0 0 0 0 0 0 +5.414 -2.936 -1.785 0 0 0 0 0 0 0 +5.416 -2.916 -1.782 0 0 0 0 0 0 0 +5.399 -2.896 -1.775 0 0 0 0 0 0 0 +5.425 -2.887 -1.781 0 0 0 0 0 0 0 +5.415 -2.861 -1.774 0 0 0 0 0 0 0 +5.429 -2.846 -1.776 0 0 0 0 0 0 0 +5.44 -2.83 -1.776 0 0 0 0 0 0 0 +5.434 -2.805 -1.771 0 0 0 0 0 0 0 +5.442 -2.788 -1.771 0 0 0 0 0 0 0 +5.452 -2.782 -1.773 0 0 0 0 0 0 0 +5.452 -2.761 -1.77 0 0 0 0 0 0 0 +5.461 -2.744 -1.77 0 0 0 0 0 0 0 +5.471 -2.727 -1.77 0 0 0 0 0 0 0 +5.48 -2.71 -1.77 0 0 0 0 0 0 0 +5.488 -2.693 -1.77 0 0 0 0 0 0 0 +5.486 -2.671 -1.767 0 0 0 0 0 0 0 +5.492 -2.663 -1.768 0 0 0 0 0 0 0 +5.507 -2.649 -1.77 0 0 0 0 0 0 0 +5.519 -2.633 -1.771 0 0 0 0 0 0 0 +5.512 -2.608 -1.766 0 0 0 0 0 0 0 +5.523 -2.593 -1.767 0 0 0 0 0 0 0 +5.531 -2.575 -1.767 0 0 0 0 0 0 0 +5.534 -2.556 -1.765 0 0 0 0 0 0 0 +5.533 -2.545 -1.763 0 0 0 0 0 0 0 +5.541 -2.527 -1.763 0 0 0 0 0 0 0 +5.544 -2.507 -1.762 0 0 0 0 0 0 0 +5.569 -2.498 -1.768 0 0 0 0 0 0 0 +5.568 -2.476 -1.765 0 0 0 0 0 0 0 +5.576 -2.459 -1.765 0 0 0 0 0 0 0 +5.596 -2.447 -1.769 0 0 0 0 0 0 0 +5.582 -2.43 -1.763 0 0 0 0 0 0 0 +5.6 -2.417 -1.766 0 0 0 0 0 0 0 +5.604 -2.398 -1.765 0 0 0 0 0 0 0 +5.622 -2.385 -1.769 0 0 0 0 0 0 0 +5.614 -2.361 -1.763 0 0 0 0 0 0 0 +5.636 -2.349 -1.768 0 0 0 0 0 0 0 +5.616 -2.32 -1.759 0 0 0 0 0 0 0 +5.631 -2.316 -1.763 0 0 0 0 0 0 0 +5.634 -2.297 -1.762 0 0 0 0 0 0 0 +5.636 -2.277 -1.76 0 0 0 0 0 0 0 +5.642 -2.258 -1.759 0 0 0 0 0 0 0 +5.654 -2.243 -1.761 0 0 0 0 0 0 0 +5.663 -2.226 -1.762 0 0 0 0 0 0 0 +5.675 -2.21 -1.763 0 0 0 0 0 0 0 +5.662 -2.195 -1.758 0 0 0 0 0 0 0 +5.68 -2.181 -1.762 0 0 0 0 0 0 0 +5.683 -2.162 -1.76 0 0 0 0 0 0 0 +5.679 -2.14 -1.757 0 0 0 0 0 0 0 +5.702 -2.128 -1.762 0 0 0 0 0 0 0 +5.687 -2.102 -1.755 0 0 0 0 0 0 0 +5.697 -2.086 -1.756 0 0 0 0 0 0 0 +5.711 -2.081 -1.76 0 0 0 0 0 0 0 +5.711 -2.06 -1.757 0 0 0 0 0 0 0 +5.728 -2.046 -1.761 0 0 0 0 0 0 0 +5.729 -2.026 -1.759 0 0 0 0 0 0 0 +5.723 -2.004 -1.755 0 0 0 0 0 0 0 +5.738 -1.989 -1.758 0 0 0 0 0 0 0 +5.751 -1.973 -1.76 0 0 0 0 0 0 0 +5.746 -1.961 -1.757 0 0 0 0 0 0 0 +5.752 -1.943 -1.757 0 0 0 0 0 0 0 +5.743 -1.92 -1.753 0 0 0 0 0 0 0 +5.767 -1.908 -1.759 0 0 0 0 0 0 0 +5.757 -1.885 -1.753 0 0 0 0 0 0 0 +5.777 -1.871 -1.758 0 0 0 0 0 0 0 +5.758 -1.845 -1.75 0 0 0 0 0 0 0 +5.768 -1.838 -1.752 0 0 0 0 0 0 0 +5.772 -1.82 -1.752 0 0 0 0 0 0 0 +5.781 -1.803 -1.753 0 0 0 0 0 0 0 +5.774 -1.781 -1.749 0 0 0 0 0 0 0 +5.792 -1.766 -1.753 0 0 0 0 0 0 0 +5.791 -1.746 -1.75 0 0 0 0 0 0 0 +5.816 -1.734 -1.757 0 0 0 0 0 0 0 +5.791 -1.716 -1.748 0 0 0 0 0 0 0 +5.789 -1.696 -1.746 0 0 0 0 0 0 0 +5.791 -1.677 -1.744 0 0 0 0 0 0 0 +5.82 -1.665 -1.752 0 0 0 0 0 0 0 +5.811 -1.643 -1.747 0 0 0 0 0 0 0 +5.82 -1.626 -1.749 0 0 0 0 0 0 0 +5.823 -1.607 -1.748 0 0 0 0 0 0 0 +5.836 -1.601 -1.752 0 0 0 0 0 0 0 +5.821 -1.577 -1.745 0 0 0 0 0 0 0 +5.83 -1.56 -1.746 0 0 0 0 0 0 0 +5.838 -1.542 -1.747 0 0 0 0 0 0 0 +5.834 -1.522 -1.744 0 0 0 0 0 0 0 +5.852 -1.507 -1.749 0 0 0 0 0 0 0 +5.845 -1.485 -1.745 0 0 0 0 0 0 0 +5.866 -1.481 -1.751 0 0 0 0 0 0 0 +5.848 -1.457 -1.744 0 0 0 0 0 0 0 +5.868 -1.442 -1.749 0 0 0 0 0 0 0 +5.861 -1.421 -1.745 0 0 0 0 0 0 0 +5.879 -1.406 -1.749 0 0 0 0 0 0 0 +5.883 -1.387 -1.749 0 0 0 0 0 0 0 +5.87 -1.365 -1.744 0 0 0 0 0 0 0 +5.88 -1.357 -1.746 0 0 0 0 0 0 0 +5.875 -1.337 -1.743 0 0 0 0 0 0 0 +5.875 -1.318 -1.742 0 0 0 0 0 0 0 +5.883 -1.3 -1.743 0 0 0 0 0 0 0 +5.874 -1.279 -1.739 0 0 0 0 0 0 0 +5.893 -1.263 -1.744 0 0 0 0 0 0 0 +5.905 -1.246 -1.746 0 0 0 0 0 0 0 +5.89 -1.234 -1.741 0 0 0 0 0 0 0 +5.907 -1.218 -1.745 0 0 0 0 0 0 0 +5.901 -1.197 -1.742 0 0 0 0 0 0 0 +5.884 -1.175 -1.736 0 0 0 0 0 0 0 +5.914 -1.161 -1.744 0 0 0 0 0 0 0 +5.899 -1.139 -1.738 0 0 0 0 0 0 0 +5.901 -1.12 -1.737 0 0 0 0 0 0 0 +5.908 -1.112 -1.739 0 0 0 0 0 0 0 +5.902 -1.092 -1.736 0 0 0 0 0 0 0 +5.919 -1.076 -1.74 0 0 0 0 0 0 0 +5.918 -1.056 -1.739 0 0 0 0 0 0 0 +5.916 -1.037 -1.737 0 0 0 0 0 0 0 +5.917 -1.018 -1.737 0 0 0 0 0 0 0 +5.922 -1 -1.737 0 0 0 0 0 0 0 +5.925 -0.981 -1.737 0 0 0 0 0 0 0 +5.934 -0.973 -1.74 0 0 0 0 0 0 0 +5.926 -0.952 -1.736 0 0 0 0 0 0 0 +5.939 -0.935 -1.739 0 0 0 0 0 0 0 +5.942 -0.917 -1.739 0 0 0 0 0 0 0 +5.935 -0.897 -1.736 0 0 0 0 0 0 0 +5.938 -0.878 -1.736 0 0 0 0 0 0 0 +5.939 -0.859 -1.736 0 0 0 0 0 0 0 +5.927 -0.848 -1.731 0 0 0 0 0 0 0 +5.937 -0.83 -1.734 0 0 0 0 0 0 0 +5.941 -0.812 -1.734 0 0 0 0 0 0 0 +5.938 -0.792 -1.733 0 0 0 0 0 0 0 +5.944 -0.774 -1.734 0 0 0 0 0 0 0 +5.935 -0.754 -1.73 0 0 0 0 0 0 0 +5.929 -0.744 -1.728 0 0 0 0 0 0 0 +5.964 -0.729 -1.738 0 0 0 0 0 0 0 +5.937 -0.707 -1.729 0 0 0 0 0 0 0 +5.955 -0.69 -1.734 0 0 0 0 0 0 0 +5.953 -0.671 -1.733 0 0 0 0 0 0 0 +5.942 -0.651 -1.729 0 0 0 0 0 0 0 +5.957 -0.634 -1.733 0 0 0 0 0 0 0 +5.94 -0.613 -1.727 0 0 0 0 0 0 0 +5.956 -0.605 -1.731 0 0 0 0 0 0 0 +5.947 -0.585 -1.728 0 0 0 0 0 0 0 +5.956 -0.567 -1.73 0 0 0 0 0 0 0 +5.962 -0.549 -1.731 0 0 0 0 0 0 0 +5.948 -0.529 -1.727 0 0 0 0 0 0 0 +5.976 -0.512 -1.735 0 0 0 0 0 0 0 +5.959 -0.492 -1.729 0 0 0 0 0 0 0 +5.964 -0.483 -1.73 0 0 0 0 0 0 0 +5.959 -0.464 -1.729 0 0 0 0 0 0 0 +5.953 -0.445 -1.726 0 0 0 0 0 0 0 +5.96 -0.426 -1.728 0 0 0 0 0 0 0 +5.958 -0.407 -1.727 0 0 0 0 0 0 0 +5.969 -0.389 -1.73 0 0 0 0 0 0 0 +5.964 -0.37 -1.728 0 0 0 0 0 0 0 +5.984 -0.362 -1.734 0 0 0 0 0 0 0 +5.964 -0.342 -1.727 0 0 0 0 0 0 0 +5.984 -0.324 -1.733 0 0 0 0 0 0 0 +5.96 -0.304 -1.726 0 0 0 0 0 0 0 +5.982 -0.286 -1.732 0 0 0 0 0 0 0 +5.964 -0.267 -1.726 0 0 0 0 0 0 0 +5.965 -0.248 -1.726 0 0 0 0 0 0 0 +5.967 -0.239 -1.727 0 0 0 0 0 0 0 +5.97 -0.22 -1.727 0 0 0 0 0 0 0 +5.966 -0.201 -1.726 0 0 0 0 0 0 0 +5.975 -0.183 -1.729 0 0 0 0 0 0 0 +5.956 -0.163 -1.723 0 0 0 0 0 0 0 +5.966 -0.145 -1.726 0 0 0 0 0 0 0 +5.957 -0.126 -1.723 0 0 0 0 0 0 0 +5.965 -0.117 -1.725 0 0 0 0 0 0 0 +5.969 -0.098 -1.726 0 0 0 0 0 0 0 +5.983 -0.079 -1.73 0 0 0 0 0 0 0 +5.96 -0.061 -1.723 0 0 0 0 0 0 0 +5.979 -0.042 -1.729 0 0 0 0 0 0 0 +5.968 -0.023 -1.726 0 0 0 0 0 0 0 +5.96 -0.004 -1.723 0 0 0 0 0 0 0 +5.809 0.012 -1.737 0 0 0 0 0 0 0 +5.807 0.031 -1.737 0 0 0 0 0 0 0 +5.792 0.049 -1.732 0 0 0 0 0 0 0 +5.795 0.058 -1.733 0 0 0 0 0 0 0 +5.799 0.076 -1.734 0 0 0 0 0 0 0 +5.795 0.094 -1.733 0 0 0 0 0 0 0 +5.804 0.113 -1.736 0 0 0 0 0 0 0 +5.773 0.13 -1.726 0 0 0 0 0 0 0 +5.799 0.149 -1.735 0 0 0 0 0 0 0 +5.787 0.167 -1.731 0 0 0 0 0 0 0 +5.808 0.177 -1.738 0 0 0 0 0 0 0 +5.794 0.194 -1.734 0 0 0 0 0 0 0 +5.788 0.212 -1.732 0 0 0 0 0 0 0 +5.783 0.231 -1.731 0 0 0 0 0 0 0 +5.785 0.249 -1.731 0 0 0 0 0 0 0 +5.784 0.267 -1.731 0 0 0 0 0 0 0 +5.796 0.286 -1.735 0 0 0 0 0 0 0 +5.779 0.294 -1.73 0 0 0 0 0 0 0 +5.797 0.313 -1.736 0 0 0 0 0 0 0 +5.779 0.33 -1.731 0 0 0 0 0 0 0 +5.793 0.349 -1.735 0 0 0 0 0 0 0 +5.786 0.367 -1.734 0 0 0 0 0 0 0 +5.781 0.385 -1.732 0 0 0 0 0 0 0 +5.783 0.404 -1.734 0 0 0 0 0 0 0 +5.787 0.413 -1.735 0 0 0 0 0 0 0 +5.785 0.431 -1.735 0 0 0 0 0 0 0 +5.778 0.449 -1.733 0 0 0 0 0 0 0 +5.79 0.468 -1.737 0 0 0 0 0 0 0 +5.792 0.487 -1.738 0 0 0 0 0 0 0 +5.789 0.505 -1.738 0 0 0 0 0 0 0 +5.772 0.521 -1.733 0 0 0 0 0 0 0 +5.762 0.53 -1.73 0 0 0 0 0 0 0 +5.766 0.548 -1.732 0 0 0 0 0 0 0 +5.76 0.566 -1.731 0 0 0 0 0 0 0 +5.76 0.584 -1.731 0 0 0 0 0 0 0 +5.768 0.603 -1.734 0 0 0 0 0 0 0 +5.751 0.62 -1.729 0 0 0 0 0 0 0 +5.753 0.638 -1.731 0 0 0 0 0 0 0 +5.759 0.648 -1.733 0 0 0 0 0 0 0 +5.744 0.665 -1.729 0 0 0 0 0 0 0 +5.751 0.684 -1.732 0 0 0 0 0 0 0 +5.745 0.702 -1.731 0 0 0 0 0 0 0 +5.732 0.718 -1.727 0 0 0 0 0 0 0 +5.739 0.737 -1.73 0 0 0 0 0 0 0 +5.729 0.755 -1.728 0 0 0 0 0 0 0 +5.726 0.763 -1.727 0 0 0 0 0 0 0 +5.725 0.782 -1.728 0 0 0 0 0 0 0 +5.736 0.801 -1.732 0 0 0 0 0 0 0 +5.709 0.816 -1.724 0 0 0 0 0 0 0 +5.716 0.835 -1.727 0 0 0 0 0 0 0 +5.723 0.854 -1.73 0 0 0 0 0 0 0 +5.718 0.872 -1.729 0 0 0 0 0 0 0 +5.719 0.881 -1.73 0 0 0 0 0 0 0 +5.733 0.902 -1.735 0 0 0 0 0 0 0 +5.702 0.916 -1.726 0 0 0 0 0 0 0 +5.71 0.935 -1.73 0 0 0 0 0 0 0 +5.699 0.952 -1.728 0 0 0 0 0 0 0 +5.717 0.973 -1.734 0 0 0 0 0 0 0 +5.708 0.99 -1.732 0 0 0 0 0 0 0 +5.682 0.995 -1.724 0 0 0 0 0 0 0 +5.7 1.017 -1.731 0 0 0 0 0 0 0 +5.682 1.032 -1.726 0 0 0 0 0 0 0 +5.68 1.05 -1.727 0 0 0 0 0 0 0 +5.694 1.071 -1.732 0 0 0 0 0 0 0 +5.668 1.085 -1.725 0 0 0 0 0 0 0 +5.683 1.106 -1.731 0 0 0 0 0 0 0 +5.669 1.122 -1.728 0 0 0 0 0 0 0 +5.669 1.131 -1.728 0 0 0 0 0 0 0 +5.665 1.149 -1.728 0 0 0 0 0 0 0 +5.663 1.167 -1.729 0 0 0 0 0 0 0 +5.669 1.187 -1.732 0 0 0 0 0 0 0 +5.663 1.204 -1.731 0 0 0 0 0 0 0 +5.643 1.218 -1.726 0 0 0 0 0 0 0 +5.661 1.241 -1.733 0 0 0 0 0 0 0 +5.65 1.248 -1.73 0 0 0 0 0 0 0 +5.642 1.265 -1.729 0 0 0 0 0 0 0 +5.638 1.282 -1.729 0 0 0 0 0 0 0 +5.642 1.302 -1.731 0 0 0 0 0 0 0 +5.63 1.318 -1.729 0 0 0 0 0 0 0 +5.618 1.334 -1.726 0 0 0 0 0 0 0 +5.635 1.356 -1.733 0 0 0 0 0 0 0 +5.625 1.363 -1.731 0 0 0 0 0 0 0 +5.621 1.381 -1.731 0 0 0 0 0 0 0 +5.624 1.4 -1.733 0 0 0 0 0 0 0 +5.612 1.416 -1.731 0 0 0 0 0 0 0 +5.606 1.433 -1.73 0 0 0 0 0 0 0 +5.605 1.452 -1.731 0 0 0 0 0 0 0 +5.597 1.469 -1.73 0 0 0 0 0 0 0 +5.602 1.479 -1.732 0 0 0 0 0 0 0 +5.602 1.498 -1.734 0 0 0 0 0 0 0 +5.579 1.511 -1.728 0 0 0 0 0 0 0 +5.593 1.533 -1.734 0 0 0 0 0 0 0 +5.584 1.55 -1.733 0 0 0 0 0 0 0 +5.58 1.568 -1.733 0 0 0 0 0 0 0 +5.576 1.586 -1.734 0 0 0 0 0 0 0 +5.574 1.594 -1.734 0 0 0 0 0 0 0 +5.573 1.613 -1.735 0 0 0 0 0 0 0 +5.549 1.625 -1.729 0 0 0 0 0 0 0 +5.55 1.644 -1.731 0 0 0 0 0 0 0 +5.546 1.662 -1.731 0 0 0 0 0 0 0 +5.552 1.683 -1.735 0 0 0 0 0 0 0 +5.537 1.697 -1.732 0 0 0 0 0 0 0 +5.538 1.707 -1.733 0 0 0 0 0 0 0 +5.537 1.726 -1.734 0 0 0 0 0 0 0 +5.538 1.745 -1.737 0 0 0 0 0 0 0 +5.509 1.755 -1.729 0 0 0 0 0 0 0 +5.529 1.781 -1.737 0 0 0 0 0 0 0 +5.518 1.796 -1.735 0 0 0 0 0 0 0 +5.518 1.815 -1.737 0 0 0 0 0 0 0 +5.499 1.819 -1.732 0 0 0 0 0 0 0 +5.509 1.841 -1.737 0 0 0 0 0 0 0 +5.498 1.857 -1.735 0 0 0 0 0 0 0 +5.49 1.874 -1.735 0 0 0 0 0 0 0 +5.492 1.893 -1.737 0 0 0 0 0 0 0 +5.486 1.911 -1.737 0 0 0 0 0 0 0 +5.483 1.929 -1.738 0 0 0 0 0 0 0 +5.484 1.939 -1.74 0 0 0 0 0 0 0 +5.471 1.954 -1.737 0 0 0 0 0 0 0 +5.461 1.969 -1.736 0 0 0 0 0 0 0 +5.46 1.989 -1.738 0 0 0 0 0 0 0 +5.439 2 -1.733 0 0 0 0 0 0 0 +5.447 2.023 -1.738 0 0 0 0 0 0 0 +5.437 2.039 -1.737 0 0 0 0 0 0 0 +5.44 2.049 -1.738 0 0 0 0 0 0 0 +5.433 2.066 -1.738 0 0 0 0 0 0 0 +5.434 2.086 -1.741 0 0 0 0 0 0 0 +5.425 2.102 -1.74 0 0 0 0 0 0 0 +5.406 2.115 -1.736 0 0 0 0 0 0 0 +5.401 2.132 -1.737 0 0 0 0 0 0 0 +5.398 2.151 -1.738 0 0 0 0 0 0 0 +5.397 2.16 -1.738 0 0 0 0 0 0 0 +5.395 2.179 -1.74 0 0 0 0 0 0 0 +5.381 2.193 -1.738 0 0 0 0 0 0 0 +5.369 2.208 -1.736 0 0 0 0 0 0 0 +5.36 2.224 -1.735 0 0 0 0 0 0 0 +5.367 2.246 -1.74 0 0 0 0 0 0 0 +5.35 2.259 -1.737 0 0 0 0 0 0 0 +5.343 2.266 -1.735 0 0 0 0 0 0 0 +5.337 2.283 -1.736 0 0 0 0 0 0 0 +5.326 2.299 -1.735 0 0 0 0 0 0 0 +5.319 2.315 -1.735 0 0 0 0 0 0 0 +5.3 2.327 -1.731 0 0 0 0 0 0 0 +5.305 2.349 -1.735 0 0 0 0 0 0 0 +5.297 2.365 -1.735 0 0 0 0 0 0 0 +5.302 2.377 -1.738 0 0 0 0 0 0 0 +5.27 2.383 -1.729 0 0 0 0 0 0 0 +5.28 2.408 -1.735 0 0 0 0 0 0 0 +5.264 2.42 -1.732 0 0 0 0 0 0 0 +5.251 2.434 -1.731 0 0 0 0 0 0 0 +5.25 2.454 -1.733 0 0 0 0 0 0 0 +5.253 2.475 -1.737 0 0 0 0 0 0 0 +5.223 2.481 -1.729 0 0 0 0 0 0 0 +5.236 2.498 -1.735 0 0 0 0 0 0 0 +5.218 2.509 -1.731 0 0 0 0 0 0 0 +5.213 2.527 -1.732 0 0 0 0 0 0 0 +5.209 2.545 -1.734 0 0 0 0 0 0 0 +5.201 2.562 -1.734 0 0 0 0 0 0 0 +5.194 2.579 -1.734 0 0 0 0 0 0 0 +5.177 2.58 -1.729 0 0 0 0 0 0 0 +5.174 2.599 -1.731 0 0 0 0 0 0 0 +5.166 2.615 -1.731 0 0 0 0 0 0 0 +5.164 2.635 -1.734 0 0 0 0 0 0 0 +5.156 2.651 -1.734 0 0 0 0 0 0 0 +5.153 2.67 -1.735 0 0 0 0 0 0 0 +5.142 2.685 -1.735 0 0 0 0 0 0 0 +5.148 2.699 -1.738 0 0 0 0 0 0 0 +5.128 2.709 -1.734 0 0 0 0 0 0 0 +5.119 2.725 -1.734 0 0 0 0 0 0 0 +5.104 2.737 -1.732 0 0 0 0 0 0 0 +5.097 2.754 -1.732 0 0 0 0 0 0 0 +5.09 2.771 -1.733 0 0 0 0 0 0 0 +5.076 2.784 -1.731 0 0 0 0 0 0 0 +5.08 2.797 -1.734 0 0 0 0 0 0 0 +5.067 2.81 -1.732 0 0 0 0 0 0 0 +5.061 2.828 -1.734 0 0 0 0 0 0 0 +5.042 2.838 -1.73 0 0 0 0 0 0 0 +5.033 2.854 -1.73 0 0 0 0 0 0 0 +5.026 2.871 -1.731 0 0 0 0 0 0 0 +5.025 2.891 -1.734 0 0 0 0 0 0 0 +5.008 2.902 -1.731 0 0 0 0 0 0 0 +4.993 2.904 -1.727 0 0 0 0 0 0 0 +4.986 2.921 -1.728 0 0 0 0 0 0 0 +4.985 2.941 -1.731 0 0 0 0 0 0 0 +4.974 2.956 -1.73 0 0 0 0 0 0 0 +4.958 2.968 -1.728 0 0 0 0 0 0 0 +4.941 2.978 -1.724 0 0 0 0 0 0 0 +4.931 2.994 -1.724 0 0 0 0 0 0 0 +4.931 3.005 -1.726 0 0 0 0 0 0 0 +4.922 3.02 -1.726 0 0 0 0 0 0 0 +4.909 3.034 -1.725 0 0 0 0 0 0 0 +4.9 3.049 -1.725 0 0 0 0 0 0 0 +4.888 3.063 -1.724 0 0 0 0 0 0 0 +4.874 3.076 -1.723 0 0 0 0 0 0 0 +4.864 3.08 -1.721 0 0 0 0 0 0 0 +4.864 3.102 -1.724 0 0 0 0 0 0 0 +4.848 3.113 -1.722 0 0 0 0 0 0 0 +4.845 3.132 -1.724 0 0 0 0 0 0 0 +4.83 3.144 -1.723 0 0 0 0 0 0 0 +4.826 3.164 -1.725 0 0 0 0 0 0 0 +4.807 3.172 -1.721 0 0 0 0 0 0 0 +4.802 3.18 -1.721 0 0 0 0 0 0 0 +4.792 3.195 -1.721 0 0 0 0 0 0 0 +4.795 3.219 -1.726 0 0 0 0 0 0 0 +4.776 3.228 -1.723 0 0 0 0 0 0 0 +4.766 3.243 -1.723 0 0 0 0 0 0 0 +4.759 3.26 -1.724 0 0 0 0 0 0 0 +4.741 3.27 -1.721 0 0 0 0 0 0 0 +4.738 3.278 -1.722 0 0 0 0 0 0 0 +4.721 3.289 -1.72 0 0 0 0 0 0 0 +4.717 3.308 -1.722 0 0 0 0 0 0 0 +4.708 3.324 -1.723 0 0 0 0 0 0 0 +4.702 3.342 -1.724 0 0 0 0 0 0 0 +4.69 3.356 -1.724 0 0 0 0 0 0 0 +4.672 3.365 -1.721 0 0 0 0 0 0 0 +4.684 3.384 -1.728 0 0 0 0 0 0 0 +4.662 3.391 -1.723 0 0 0 0 0 0 0 +4.658 3.41 -1.726 0 0 0 0 0 0 0 +4.653 3.43 -1.728 0 0 0 0 0 0 0 +4.638 3.441 -1.726 0 0 0 0 0 0 0 +4.63 3.458 -1.728 0 0 0 0 0 0 0 +4.625 3.477 -1.73 0 0 0 0 0 0 0 +4.624 3.487 -1.732 0 0 0 0 0 0 0 +4.616 3.504 -1.733 0 0 0 0 0 0 0 +4.604 3.518 -1.732 0 0 0 0 0 0 0 +4.591 3.531 -1.732 0 0 0 0 0 0 0 +4.584 3.549 -1.734 0 0 0 0 0 0 0 +4.57 3.561 -1.732 0 0 0 0 0 0 0 +4.559 3.575 -1.732 0 0 0 0 0 0 0 +4.552 3.593 -1.734 0 0 0 0 0 0 0 +4.541 3.595 -1.732 0 0 0 0 0 0 0 +4.531 3.611 -1.732 0 0 0 0 0 0 0 +4.525 3.63 -1.735 0 0 0 0 0 0 0 +4.493 3.627 -1.726 0 0 0 0 0 0 0 +4.5 3.656 -1.734 0 0 0 0 0 0 0 +4.484 3.666 -1.732 0 0 0 0 0 0 0 +4.482 3.689 -1.736 0 0 0 0 0 0 0 +4.465 3.686 -1.731 0 0 0 0 0 0 0 +4.453 3.7 -1.731 0 0 0 0 0 0 0 +4.434 3.708 -1.728 0 0 0 0 0 0 0 +4.424 3.723 -1.729 0 0 0 0 0 0 0 +4.417 3.741 -1.731 0 0 0 0 0 0 0 +4.402 3.752 -1.729 0 0 0 0 0 0 0 +4.403 3.765 -1.732 0 0 0 0 0 0 0 +4.381 3.77 -1.728 0 0 0 0 0 0 0 +4.381 3.794 -1.733 0 0 0 0 0 0 0 +4.359 3.799 -1.729 0 0 0 0 0 0 0 +4.353 3.818 -1.731 0 0 0 0 0 0 0 +4.341 3.831 -1.731 0 0 0 0 0 0 0 +4.327 3.844 -1.731 0 0 0 0 0 0 0 +4.323 3.852 -1.731 0 0 0 0 0 0 0 +4.313 3.868 -1.732 0 0 0 0 0 0 0 +4.301 3.881 -1.732 0 0 0 0 0 0 0 +4.281 3.887 -1.729 0 0 0 0 0 0 0 +4.278 3.91 -1.733 0 0 0 0 0 0 0 +4.265 3.922 -1.732 0 0 0 0 0 0 0 +4.245 3.929 -1.729 0 0 0 0 0 0 0 +4.252 3.947 -1.735 0 0 0 0 0 0 0 +4.236 3.958 -1.734 0 0 0 0 0 0 0 +4.231 3.978 -1.737 0 0 0 0 0 0 0 +4.213 3.986 -1.734 0 0 0 0 0 0 0 +4.204 4.003 -1.736 0 0 0 0 0 0 0 +4.195 4.019 -1.737 0 0 0 0 0 0 0 +4.185 4.034 -1.738 0 0 0 0 0 0 0 +4.162 4.038 -1.734 0 0 0 0 0 0 0 +4.159 4.047 -1.735 0 0 0 0 0 0 0 +4.138 4.052 -1.732 0 0 0 0 0 0 0 +4.136 4.076 -1.737 0 0 0 0 0 0 0 +4.13 4.096 -1.74 0 0 0 0 0 0 0 +4.112 4.103 -1.737 0 0 0 0 0 0 0 +4.085 4.103 -1.731 0 0 0 0 0 0 0 +4.084 4.128 -1.737 0 0 0 0 0 0 0 +4.074 4.13 -1.735 0 0 0 0 0 0 0 +4.066 4.148 -1.737 0 0 0 0 0 0 0 +4.057 4.165 -1.739 0 0 0 0 0 0 0 +4.035 4.168 -1.735 0 0 0 0 0 0 0 +4.026 4.185 -1.737 0 0 0 0 0 0 0 +4.02 4.206 -1.74 0 0 0 0 0 0 0 +4.003 4.214 -1.738 0 0 0 0 0 0 0 +4.002 4.226 -1.741 0 0 0 0 0 0 0 +3.985 4.235 -1.739 0 0 0 0 0 0 0 +3.95 4.225 -1.729 0 0 0 0 0 0 0 +3.949 4.25 -1.735 0 0 0 0 0 0 0 +3.942 4.269 -1.738 0 0 0 0 0 0 0 +3.92 4.272 -1.734 0 0 0 0 0 0 0 +3.913 4.291 -1.737 0 0 0 0 0 0 0 +3.911 4.303 -1.739 0 0 0 0 0 0 0 +3.886 4.302 -1.734 0 0 0 0 0 0 0 +3.876 4.319 -1.735 0 0 0 0 0 0 0 +3.865 4.334 -1.737 0 0 0 0 0 0 0 +3.844 4.337 -1.733 0 0 0 0 0 0 0 +3.835 4.355 -1.735 0 0 0 0 0 0 0 +3.823 4.369 -1.736 0 0 0 0 0 0 0 +3.81 4.367 -1.733 0 0 0 0 0 0 0 +3.797 4.381 -1.734 0 0 0 0 0 0 0 +3.778 4.387 -1.731 0 0 0 0 0 0 0 +3.763 4.397 -1.731 0 0 0 0 0 0 0 +3.763 4.425 -1.737 0 0 0 0 0 0 0 +3.743 4.43 -1.734 0 0 0 0 0 0 0 +3.712 4.421 -1.726 0 0 0 0 0 0 0 +3.723 4.449 -1.735 0 0 0 0 0 0 0 +3.697 4.446 -1.729 0 0 0 0 0 0 0 +3.676 4.449 -1.725 0 0 0 0 0 0 0 +3.679 4.481 -1.734 0 0 0 0 0 0 0 +3.656 4.482 -1.729 0 0 0 0 0 0 0 +3.64 4.49 -1.728 0 0 0 0 0 0 0 +3.622 4.497 -1.726 0 0 0 0 0 0 0 +3.625 4.515 -1.731 0 0 0 0 0 0 0 +3.609 4.525 -1.731 0 0 0 0 0 0 0 +3.601 4.544 -1.734 0 0 0 0 0 0 0 +3.583 4.55 -1.732 0 0 0 0 0 0 0 +3.563 4.554 -1.729 0 0 0 0 0 0 0 +3.544 4.559 -1.726 0 0 0 0 0 0 0 +3.539 4.582 -1.731 0 0 0 0 0 0 0 +3.526 4.58 -1.728 0 0 0 0 0 0 0 +3.525 4.61 -1.735 0 0 0 0 0 0 0 +3.506 4.615 -1.733 0 0 0 0 0 0 0 +3.493 4.627 -1.734 0 0 0 0 0 0 0 +3.479 4.64 -1.734 0 0 0 0 0 0 0 +3.467 4.654 -1.735 0 0 0 0 0 0 0 +3.448 4.658 -1.733 0 0 0 0 0 0 0 +3.443 4.667 -1.734 0 0 0 0 0 0 0 +3.427 4.676 -1.734 0 0 0 0 0 0 0 +3.41 4.684 -1.732 0 0 0 0 0 0 0 +3.397 4.696 -1.733 0 0 0 0 0 0 0 +3.385 4.711 -1.735 0 0 0 0 0 0 0 +3.363 4.711 -1.731 0 0 0 0 0 0 0 +3.348 4.722 -1.731 0 0 0 0 0 0 0 +3.344 4.731 -1.732 0 0 0 0 0 0 0 +3.329 4.742 -1.732 0 0 0 0 0 0 0 +3.304 4.738 -1.727 0 0 0 0 0 0 0 +3.294 4.757 -1.73 0 0 0 0 0 0 0 +3.28 4.767 -1.73 0 0 0 0 0 0 0 +3.266 4.779 -1.731 0 0 0 0 0 0 0 +3.25 4.787 -1.73 0 0 0 0 0 0 0 +3.238 4.802 -1.732 0 0 0 0 0 0 0 +3.223 4.796 -1.728 0 0 0 0 0 0 0 +3.216 4.819 -1.732 0 0 0 0 0 0 0 +3.199 4.826 -1.731 0 0 0 0 0 0 0 +3.177 4.826 -1.728 0 0 0 0 0 0 0 +3.175 4.856 -1.735 0 0 0 0 0 0 0 +3.158 4.864 -1.734 0 0 0 0 0 0 0 +3.134 4.859 -1.729 0 0 0 0 0 0 0 +3.136 4.88 -1.735 0 0 0 0 0 0 0 +3.12 4.889 -1.734 0 0 0 0 0 0 0 +3.109 4.905 -1.737 0 0 0 0 0 0 0 +3.092 4.913 -1.736 0 0 0 0 0 0 0 +3.074 4.918 -1.734 0 0 0 0 0 0 0 +3.063 4.935 -1.737 0 0 0 0 0 0 0 +3.054 4.937 -1.736 0 0 0 0 0 0 0 +3.028 4.93 -1.73 0 0 0 0 0 0 0 +3.03 4.967 -1.74 0 0 0 0 0 0 0 +3.007 4.966 -1.736 0 0 0 0 0 0 0 +2.995 4.981 -1.738 0 0 0 0 0 0 0 +2.979 4.989 -1.738 0 0 0 0 0 0 0 +2.959 4.992 -1.735 0 0 0 0 0 0 0 +2.953 5 -1.737 0 0 0 0 0 0 0 +2.949 5.029 -1.744 0 0 0 0 0 0 0 +2.927 5.027 -1.74 0 0 0 0 0 0 0 +2.915 5.042 -1.742 0 0 0 0 0 0 0 +2.898 5.05 -1.742 0 0 0 0 0 0 0 +2.885 5.064 -1.743 0 0 0 0 0 0 0 +2.866 5.068 -1.742 0 0 0 0 0 0 0 +2.853 5.082 -1.743 0 0 0 0 0 0 0 +2.851 5.096 -1.747 0 0 0 0 0 0 0 +2.827 5.092 -1.742 0 0 0 0 0 0 0 +2.812 5.103 -1.743 0 0 0 0 0 0 0 +2.794 5.108 -1.742 0 0 0 0 0 0 0 +2.779 5.118 -1.742 0 0 0 0 0 0 0 +2.769 5.139 -1.746 0 0 0 0 0 0 0 +2.749 5.141 -1.744 0 0 0 0 0 0 0 +2.742 5.147 -1.745 0 0 0 0 0 0 0 +2.723 5.149 -1.742 0 0 0 0 0 0 0 +2.705 5.154 -1.741 0 0 0 0 0 0 0 +2.686 5.157 -1.739 0 0 0 0 0 0 0 +2.677 5.179 -1.744 0 0 0 0 0 0 0 +2.658 5.182 -1.742 0 0 0 0 0 0 0 +2.639 5.186 -1.74 0 0 0 0 0 0 0 +2.625 5.199 -1.742 0 0 0 0 0 0 0 +2.613 5.196 -1.74 0 0 0 0 0 0 0 +2.6 5.21 -1.742 0 0 0 0 0 0 0 +2.585 5.221 -1.743 0 0 0 0 0 0 0 +2.564 5.221 -1.74 0 0 0 0 0 0 0 +2.545 5.224 -1.738 0 0 0 0 0 0 0 +2.532 5.238 -1.74 0 0 0 0 0 0 0 +2.517 5.229 -1.735 0 0 0 0 0 0 0 +2.509 5.254 -1.742 0 0 0 0 0 0 0 +2.489 5.253 -1.738 0 0 0 0 0 0 0 +2.474 5.264 -1.74 0 0 0 0 0 0 0 +2.46 5.279 -1.742 0 0 0 0 0 0 0 +2.443 5.285 -1.742 0 0 0 0 0 0 0 +2.425 5.289 -1.74 0 0 0 0 0 0 0 +2.404 5.288 -1.737 0 0 0 0 0 0 0 +2.399 5.299 -1.74 0 0 0 0 0 0 0 +2.383 5.308 -1.74 0 0 0 0 0 0 0 +2.365 5.312 -1.739 0 0 0 0 0 0 0 +2.347 5.316 -1.738 0 0 0 0 0 0 0 +2.328 5.32 -1.737 0 0 0 0 0 0 0 +2.31 5.324 -1.735 0 0 0 0 0 0 0 +2.296 5.338 -1.738 0 0 0 0 0 0 0 +2.285 5.334 -1.735 0 0 0 0 0 0 0 +2.266 5.336 -1.734 0 0 0 0 0 0 0 +2.251 5.347 -1.735 0 0 0 0 0 0 0 +2.236 5.359 -1.737 0 0 0 0 0 0 0 +2.219 5.366 -1.737 0 0 0 0 0 0 0 +2.205 5.378 -1.738 0 0 0 0 0 0 0 +2.185 5.378 -1.736 0 0 0 0 0 0 0 +2.179 5.387 -1.738 0 0 0 0 0 0 0 +2.159 5.387 -1.735 0 0 0 0 0 0 0 +2.143 5.397 -1.737 0 0 0 0 0 0 0 +2.128 5.407 -1.738 0 0 0 0 0 0 0 +2.111 5.416 -1.738 0 0 0 0 0 0 0 +2.095 5.424 -1.739 0 0 0 0 0 0 0 +2.077 5.427 -1.738 0 0 0 0 0 0 0 +2.067 5.427 -1.737 0 0 0 0 0 0 0 +2.048 5.428 -1.735 0 0 0 0 0 0 0 +2.03 5.433 -1.734 0 0 0 0 0 0 0 +2.016 5.448 -1.737 0 0 0 0 0 0 0 +1.996 5.445 -1.734 0 0 0 0 0 0 0 +1.98 5.455 -1.735 0 0 0 0 0 0 0 +1.965 5.467 -1.737 0 0 0 0 0 0 0 +1.956 5.47 -1.737 0 0 0 0 0 0 0 +1.938 5.472 -1.736 0 0 0 0 0 0 0 +1.921 5.48 -1.737 0 0 0 0 0 0 0 +1.904 5.488 -1.737 0 0 0 0 0 0 0 +1.886 5.49 -1.736 0 0 0 0 0 0 0 +1.868 5.494 -1.735 0 0 0 0 0 0 0 +1.854 5.511 -1.739 0 0 0 0 0 0 0 +1.835 5.51 -1.737 0 0 0 0 0 0 0 +1.826 5.512 -1.737 0 0 0 0 0 0 0 +1.809 5.518 -1.737 0 0 0 0 0 0 0 +1.781 5.491 -1.726 0 0 0 0 0 0 0 +1.763 5.497 -1.726 0 0 0 0 0 0 0 +1.747 5.504 -1.726 0 0 0 0 0 0 0 +1.73 5.511 -1.727 0 0 0 0 0 0 0 +1.709 5.506 -1.723 0 0 0 0 0 0 0 +1.701 5.51 -1.724 0 0 0 0 0 0 0 +1.686 5.523 -1.726 0 0 0 0 0 0 0 +1.665 5.517 -1.723 0 0 0 0 0 0 0 +1.65 5.53 -1.725 0 0 0 0 0 0 0 +1.626 5.511 -1.717 0 0 0 0 0 0 0 +1.609 5.518 -1.718 0 0 0 0 0 0 0 +1.595 5.534 -1.721 0 0 0 0 0 0 0 +1.583 5.526 -1.718 0 0 0 0 0 0 0 +1.565 5.529 -1.717 0 0 0 0 0 0 0 +1.55 5.541 -1.72 0 0 0 0 0 0 0 +1.526 5.524 -1.712 0 0 0 0 0 0 0 +1.506 5.518 -1.709 0 0 0 0 0 0 0 +1.495 5.548 -1.717 0 0 0 0 0 0 0 +1.475 5.542 -1.714 0 0 0 0 0 0 0 +1.464 5.535 -1.71 0 0 0 0 0 0 0 +1.45 5.554 -1.715 0 0 0 0 0 0 0 +1.429 5.542 -1.71 0 0 0 0 0 0 0 +1.41 5.541 -1.708 0 0 0 0 0 0 0 +1.397 5.564 -1.714 0 0 0 0 0 0 0 +1.376 5.555 -1.71 0 0 0 0 0 0 0 +1.363 5.576 -1.715 0 0 0 0 0 0 0 +1.354 5.576 -1.715 0 0 0 0 0 0 0 +1.332 5.564 -1.709 0 0 0 0 0 0 0 +1.319 5.585 -1.715 0 0 0 0 0 0 0 +1.303 5.596 -1.717 0 0 0 0 0 0 0 +1.282 5.587 -1.713 0 0 0 0 0 0 0 +1.269 5.61 -1.719 0 0 0 0 0 0 0 +1.253 5.621 -1.721 0 0 0 0 0 0 0 +1.23 5.601 -1.714 0 0 0 0 0 0 0 +1.223 5.611 -1.716 0 0 0 0 0 0 0 +1.208 5.627 -1.72 0 0 0 0 0 0 0 +1.19 5.627 -1.719 0 0 0 0 0 0 0 +0.662 3.235 -0.936 0 0 0 0 0 0 0 +0.644 3.202 -0.924 0 0 0 0 0 0 0 +0.633 3.2 -0.923 0 0 0 0 0 0 0 +0.627 3.22 -0.929 0 0 0 0 0 0 0 +0.627 3.248 -0.938 0 0 0 0 0 0 0 +0.609 3.208 -0.924 0 0 0 0 0 0 0 +0.582 3.122 -0.896 0 0 0 0 0 0 0 +0.552 3.019 -0.861 0 0 0 0 0 0 0 +0.542 3.019 -0.861 0 0 0 0 0 0 0 +0.533 3.021 -0.861 0 0 0 0 0 0 0 +0.523 3.025 -0.861 0 0 0 0 0 0 0 +0.518 3.023 -0.861 0 0 0 0 0 0 0 +0.509 3.025 -0.861 0 0 0 0 0 0 0 +0.499 3.027 -0.861 0 0 0 0 0 0 0 +0.489 3.024 -0.86 0 0 0 0 0 0 0 +0.48 3.03 -0.861 0 0 0 0 0 0 0 +0.471 3.033 -0.861 0 0 0 0 0 0 0 +0.461 3.033 -0.861 0 0 0 0 0 0 0 +0.457 3.035 -0.861 0 0 0 0 0 0 0 +0.447 3.035 -0.861 0 0 0 0 0 0 0 +0.436 3.029 -0.858 0 0 0 0 0 0 0 +0.428 3.038 -0.861 0 0 0 0 0 0 0 +0.418 3.039 -0.861 0 0 0 0 0 0 0 +0.409 3.042 -0.861 0 0 0 0 0 0 0 +0.4 3.043 -0.861 0 0 0 0 0 0 0 +0.39 3.045 -0.861 0 0 0 0 0 0 0 +0.384 3.04 -0.86 0 0 0 0 0 0 0 +0.375 3.043 -0.86 0 0 0 0 0 0 0 +0.366 3.046 -0.861 0 0 0 0 0 0 0 +0.356 3.043 -0.86 0 0 0 0 0 0 0 +0.346 3.046 -0.86 0 0 0 0 0 0 0 +0.337 3.049 -0.861 0 0 0 0 0 0 0 +0.327 3.048 -0.86 0 0 0 0 0 0 0 +0.323 3.049 -0.86 0 0 0 0 0 0 0 +0.313 3.05 -0.86 0 0 0 0 0 0 0 +0.303 3.051 -0.86 0 0 0 0 0 0 0 +0.294 3.05 -0.86 0 0 0 0 0 0 0 +0.284 3.051 -0.86 0 0 0 0 0 0 0 +0.274 3.05 -0.859 0 0 0 0 0 0 0 +0.265 3.052 -0.86 0 0 0 0 0 0 0 +0.26 3.051 -0.859 0 0 0 0 0 0 0 +0.25 3.054 -0.86 0 0 0 0 0 0 0 +0.241 3.056 -0.86 0 0 0 0 0 0 0 +0.231 3.055 -0.86 0 0 0 0 0 0 0 +0.222 3.058 -0.86 0 0 0 0 0 0 0 +0.212 3.056 -0.86 0 0 0 0 0 0 0 +0.203 3.059 -0.86 0 0 0 0 0 0 0 +0.198 3.057 -0.86 0 0 0 0 0 0 0 +0.188 3.06 -0.86 0 0 0 0 0 0 0 +0.179 3.06 -0.86 0 0 0 0 0 0 0 +0.169 3.059 -0.86 0 0 0 0 0 0 0 +0.159 3.062 -0.86 0 0 0 0 0 0 0 +0.149 3.058 -0.859 0 0 0 0 0 0 0 +0.14 3.064 -0.861 0 0 0 0 0 0 0 +0.141 3.272 -0.927 0 0 0 0 0 0 0 +0.136 3.272 -0.927 0 0 0 0 0 0 0 +0.126 3.275 -0.928 0 0 0 0 0 0 0 +0.115 3.271 -0.927 0 0 0 0 0 0 0 +0.105 3.264 -0.924 0 0 0 0 0 0 0 +0.165 5.658 -1.69 0 0 0 0 0 0 0 +0.094 3.249 -0.919 0 0 0 0 0 0 0 +0.148 5.67 -1.693 0 0 0 0 0 0 0 +0.139 5.662 -1.691 0 0 0 0 0 0 0 +0.121 5.663 -1.691 0 0 0 0 0 0 0 +0.103 5.656 -1.689 0 0 0 0 0 0 0 +0.085 5.658 -1.689 0 0 0 0 0 0 0 +0.067 5.669 -1.693 0 0 0 0 0 0 0 +0.05 5.672 -1.693 0 0 0 0 0 0 0 +0.032 5.674 -1.694 0 0 0 0 0 0 0 +0.023 5.676 -1.695 0 0 0 0 0 0 0 +0.005 5.677 -1.695 0 0 0 0 0 0 0 +-0.013 5.687 -1.698 0 0 0 0 0 0 0 +-0.03 5.681 -1.696 0 0 0 0 0 0 0 +-0.048 5.687 -1.698 0 0 0 0 0 0 0 +-0.066 5.7 -1.703 0 0 0 0 0 0 0 +-0.085 5.747 -1.718 0 0 0 0 0 0 0 +-0.094 5.743 -1.717 0 0 0 0 0 0 0 +-0.112 5.758 -1.721 0 0 0 0 0 0 0 +-0.13 5.756 -1.721 0 0 0 0 0 0 0 +-0.148 5.763 -1.723 0 0 0 0 0 0 0 +-0.166 5.765 -1.724 0 0 0 0 0 0 0 +-0.185 5.772 -1.726 0 0 0 0 0 0 0 +-0.203 5.777 -1.728 0 0 0 0 0 0 0 +-0.212 5.788 -1.732 0 0 0 0 0 0 0 +-0.23 5.78 -1.729 0 0 0 0 0 0 0 +-0.249 5.788 -1.732 0 0 0 0 0 0 0 +-0.267 5.782 -1.731 0 0 0 0 0 0 0 +-0.286 5.796 -1.735 0 0 0 0 0 0 0 +-0.303 5.78 -1.731 0 0 0 0 0 0 0 +-0.322 5.792 -1.735 0 0 0 0 0 0 0 +-0.341 5.799 -1.737 0 0 0 0 0 0 0 +-0.35 5.796 -1.737 0 0 0 0 0 0 0 +-0.368 5.795 -1.737 0 0 0 0 0 0 0 +-0.387 5.813 -1.743 0 0 0 0 0 0 0 +-0.405 5.81 -1.742 0 0 0 0 0 0 0 +-0.424 5.809 -1.742 0 0 0 0 0 0 0 +-0.443 5.823 -1.747 0 0 0 0 0 0 0 +-0.462 5.831 -1.75 0 0 0 0 0 0 0 +-0.471 5.824 -1.748 0 0 0 0 0 0 0 +-0.49 5.83 -1.751 0 0 0 0 0 0 0 +-0.508 5.829 -1.751 0 0 0 0 0 0 0 +-0.525 5.814 -1.746 0 0 0 0 0 0 0 +-0.546 5.842 -1.756 0 0 0 0 0 0 0 +-0.565 5.843 -1.757 0 0 0 0 0 0 0 +-0.585 5.867 -1.765 0 0 0 0 0 0 0 +-0.594 5.857 -1.762 0 0 0 0 0 0 0 +-0.598 5.717 -1.718 0 0 0 0 0 0 0 +-0.628 5.832 -1.756 0 0 0 0 0 0 0 +-0.675 5.919 -1.785 0 0 0 0 0 0 0 +-0.698 5.961 -1.799 0 0 0 0 0 0 0 +-0.714 5.928 -1.789 0 0 0 0 0 0 0 +-0.725 5.861 -1.768 0 0 0 0 0 0 0 +-0.734 5.858 -1.768 0 0 0 0 0 0 0 +-0.751 5.845 -1.764 0 0 0 0 0 0 0 +-0.769 5.846 -1.765 0 0 0 0 0 0 0 +-0.786 5.832 -1.762 0 0 0 0 0 0 0 +-0.803 5.819 -1.758 0 0 0 0 0 0 0 +-0.822 5.82 -1.759 0 0 0 0 0 0 0 +-0.838 5.804 -1.755 0 0 0 0 0 0 0 +-0.85 5.818 -1.76 0 0 0 0 0 0 0 +-0.868 5.815 -1.76 0 0 0 0 0 0 0 +-0.887 5.82 -1.762 0 0 0 0 0 0 0 +-0.904 5.804 -1.758 0 0 0 0 0 0 0 +-0.924 5.812 -1.762 0 0 0 0 0 0 0 +-0.939 5.79 -1.756 0 0 0 0 0 0 0 +-0.959 5.801 -1.76 0 0 0 0 0 0 0 +-0.969 5.805 -1.762 0 0 0 0 0 0 0 +-0.988 5.804 -1.762 0 0 0 0 0 0 0 +-1.005 5.797 -1.761 0 0 0 0 0 0 0 +-1.023 5.793 -1.761 0 0 0 0 0 0 0 +-1.04 5.783 -1.759 0 0 0 0 0 0 0 +-1.06 5.787 -1.761 0 0 0 0 0 0 0 +-1.077 5.778 -1.759 0 0 0 0 0 0 0 +-1.087 5.78 -1.76 0 0 0 0 0 0 0 +-1.106 5.78 -1.762 0 0 0 0 0 0 0 +-1.125 5.782 -1.763 0 0 0 0 0 0 0 +-1.142 5.775 -1.762 0 0 0 0 0 0 0 +-1.159 5.764 -1.76 0 0 0 0 0 0 0 +-1.179 5.77 -1.763 0 0 0 0 0 0 0 +-1.195 5.757 -1.76 0 0 0 0 0 0 0 +-1.206 5.762 -1.762 0 0 0 0 0 0 0 +-1.226 5.768 -1.765 0 0 0 0 0 0 0 +-1.243 5.758 -1.763 0 0 0 0 0 0 0 +-1.259 5.747 -1.761 0 0 0 0 0 0 0 +-1.278 5.745 -1.762 0 0 0 0 0 0 0 +-1.294 5.735 -1.76 0 0 0 0 0 0 0 +-1.315 5.742 -1.763 0 0 0 0 0 0 0 +-1.324 5.742 -1.764 0 0 0 0 0 0 0 +-1.341 5.73 -1.762 0 0 0 0 0 0 0 +-1.361 5.735 -1.765 0 0 0 0 0 0 0 +-1.376 5.72 -1.761 0 0 0 0 0 0 0 +-1.394 5.714 -1.76 0 0 0 0 0 0 0 +-1.413 5.717 -1.763 0 0 0 0 0 0 0 +-1.436 5.731 -1.769 0 0 0 0 0 0 0 +-1.45 5.71 -1.763 0 0 0 0 0 0 0 +-1.457 5.702 -1.762 0 0 0 0 0 0 0 +-1.479 5.71 -1.766 0 0 0 0 0 0 0 +-1.495 5.698 -1.763 0 0 0 0 0 0 0 +-1.513 5.693 -1.763 0 0 0 0 0 0 0 +-1.534 5.701 -1.768 0 0 0 0 0 0 0 +-1.55 5.689 -1.765 0 0 0 0 0 0 0 +-1.569 5.69 -1.767 0 0 0 0 0 0 0 +-1.578 5.687 -1.767 0 0 0 0 0 0 0 +-1.594 5.675 -1.765 0 0 0 0 0 0 0 +-1.612 5.67 -1.765 0 0 0 0 0 0 0 +-1.632 5.674 -1.768 0 0 0 0 0 0 0 +-1.649 5.665 -1.767 0 0 0 0 0 0 0 +-1.665 5.653 -1.764 0 0 0 0 0 0 0 +-1.686 5.658 -1.768 0 0 0 0 0 0 0 +-1.689 5.638 -1.762 0 0 0 0 0 0 0 +-1.708 5.636 -1.763 0 0 0 0 0 0 0 +-1.73 5.645 -1.768 0 0 0 0 0 0 0 +-1.744 5.627 -1.763 0 0 0 0 0 0 0 +-1.762 5.623 -1.764 0 0 0 0 0 0 0 +-1.783 5.628 -1.768 0 0 0 0 0 0 0 +-1.797 5.612 -1.764 0 0 0 0 0 0 0 +-1.808 5.615 -1.766 0 0 0 0 0 0 0 +-1.828 5.616 -1.768 0 0 0 0 0 0 0 +-1.841 5.598 -1.764 0 0 0 0 0 0 0 +-1.859 5.594 -1.765 0 0 0 0 0 0 0 +-1.878 5.591 -1.766 0 0 0 0 0 0 0 +-1.897 5.589 -1.767 0 0 0 0 0 0 0 +-1.914 5.581 -1.767 0 0 0 0 0 0 0 +-1.934 5.582 -1.769 0 0 0 0 0 0 0 +-1.941 5.576 -1.768 0 0 0 0 0 0 0 +-1.96 5.573 -1.769 0 0 0 0 0 0 0 +-1.978 5.569 -1.77 0 0 0 0 0 0 0 +-1.991 5.55 -1.765 0 0 0 0 0 0 0 +-2.011 5.549 -1.767 0 0 0 0 0 0 0 +-2.031 5.55 -1.77 0 0 0 0 0 0 0 +-2.045 5.535 -1.767 0 0 0 0 0 0 0 +-2.054 5.533 -1.767 0 0 0 0 0 0 0 +-2.072 5.529 -1.768 0 0 0 0 0 0 0 +-2.092 5.527 -1.77 0 0 0 0 0 0 0 +-2.124 5.562 -1.784 0 0 0 0 0 0 0 +-2.141 5.553 -1.783 0 0 0 0 0 0 0 +-2.148 5.52 -1.774 0 0 0 0 0 0 0 +-2.157 5.492 -1.767 0 0 0 0 0 0 0 +-2.166 5.488 -1.767 0 0 0 0 0 0 0 +-2.184 5.483 -1.767 0 0 0 0 0 0 0 +-2.208 5.492 -1.773 0 0 0 0 0 0 0 +-2.225 5.485 -1.773 0 0 0 0 0 0 0 +-2.232 5.454 -1.764 0 0 0 0 0 0 0 +-2.253 5.455 -1.767 0 0 0 0 0 0 0 +-2.266 5.438 -1.763 0 0 0 0 0 0 0 +-2.27 5.424 -1.76 0 0 0 0 0 0 0 +-2.287 5.418 -1.76 0 0 0 0 0 0 0 +-2.31 5.423 -1.765 0 0 0 0 0 0 0 +-2.321 5.402 -1.76 0 0 0 0 0 0 0 +-2.338 5.396 -1.76 0 0 0 0 0 0 0 +-2.358 5.396 -1.763 0 0 0 0 0 0 0 +-2.364 5.362 -1.754 0 0 0 0 0 0 0 +-2.388 5.372 -1.76 0 0 0 0 0 0 0 +-2.399 5.374 -1.762 0 0 0 0 0 0 0 +-2.411 5.356 -1.758 0 0 0 0 0 0 0 +-2.432 5.357 -1.761 0 0 0 0 0 0 0 +-2.448 5.348 -1.76 0 0 0 0 0 0 0 +-2.459 5.326 -1.756 0 0 0 0 0 0 0 +-2.482 5.332 -1.76 0 0 0 0 0 0 0 +-2.499 5.326 -1.761 0 0 0 0 0 0 0 +-2.504 5.313 -1.758 0 0 0 0 0 0 0 +-2.523 5.311 -1.76 0 0 0 0 0 0 0 +-2.539 5.301 -1.759 0 0 0 0 0 0 0 +-2.555 5.293 -1.759 0 0 0 0 0 0 0 +-2.575 5.292 -1.762 0 0 0 0 0 0 0 +-2.594 5.289 -1.763 0 0 0 0 0 0 0 +-2.611 5.281 -1.763 0 0 0 0 0 0 0 +-2.619 5.277 -1.763 0 0 0 0 0 0 0 +-2.636 5.268 -1.763 0 0 0 0 0 0 0 +-2.651 5.258 -1.763 0 0 0 0 0 0 0 +-2.666 5.247 -1.762 0 0 0 0 0 0 0 +-2.688 5.248 -1.765 0 0 0 0 0 0 0 +-2.703 5.238 -1.765 0 0 0 0 0 0 0 +-2.715 5.221 -1.762 0 0 0 0 0 0 0 +-2.729 5.227 -1.765 0 0 0 0 0 0 0 +-2.736 5.2 -1.759 0 0 0 0 0 0 0 +-2.76 5.206 -1.764 0 0 0 0 0 0 0 +-2.782 5.208 -1.768 0 0 0 0 0 0 0 +-2.794 5.192 -1.765 0 0 0 0 0 0 0 +-2.812 5.187 -1.767 0 0 0 0 0 0 0 +-2.831 5.181 -1.768 0 0 0 0 0 0 0 +-2.84 5.161 -1.763 0 0 0 0 0 0 0 +-2.851 5.161 -1.765 0 0 0 0 0 0 0 +-2.871 5.159 -1.768 0 0 0 0 0 0 0 +-2.881 5.138 -1.763 0 0 0 0 0 0 0 +-2.905 5.144 -1.769 0 0 0 0 0 0 0 +-2.914 5.122 -1.764 0 0 0 0 0 0 0 +-2.937 5.124 -1.768 0 0 0 0 0 0 0 +-2.95 5.11 -1.767 0 0 0 0 0 0 0 +-2.96 5.109 -1.768 0 0 0 0 0 0 0 +-2.978 5.103 -1.769 0 0 0 0 0 0 0 +-2.997 5.098 -1.771 0 0 0 0 0 0 0 +-3.006 5.077 -1.767 0 0 0 0 0 0 0 +-3.021 5.066 -1.766 0 0 0 0 0 0 0 +-3.042 5.065 -1.769 0 0 0 0 0 0 0 +-3.061 5.06 -1.771 0 0 0 0 0 0 0 +-3.068 5.055 -1.771 0 0 0 0 0 0 0 +-3.088 5.052 -1.773 0 0 0 0 0 0 0 +-3.104 5.042 -1.773 0 0 0 0 0 0 0 +-3.111 5.018 -1.768 0 0 0 0 0 0 0 +-3.133 5.018 -1.771 0 0 0 0 0 0 0 +-3.149 5.008 -1.771 0 0 0 0 0 0 0 +-3.169 5.006 -1.774 0 0 0 0 0 0 0 +-3.171 4.992 -1.771 0 0 0 0 0 0 0 +-3.188 4.983 -1.771 0 0 0 0 0 0 0 +-3.2 4.968 -1.77 0 0 0 0 0 0 0 +-3.217 4.96 -1.77 0 0 0 0 0 0 0 +-3.229 4.945 -1.768 0 0 0 0 0 0 0 +-3.248 4.94 -1.77 0 0 0 0 0 0 0 +-3.268 4.936 -1.773 0 0 0 0 0 0 0 +-3.278 4.917 -1.77 0 0 0 0 0 0 0 +-3.289 4.917 -1.771 0 0 0 0 0 0 0 +-3.31 4.915 -1.774 0 0 0 0 0 0 0 +-3.322 4.899 -1.773 0 0 0 0 0 0 0 +-3.333 4.883 -1.77 0 0 0 0 0 0 0 +-3.35 4.875 -1.771 0 0 0 0 0 0 0 +-3.366 4.865 -1.771 0 0 0 0 0 0 0 +-3.379 4.851 -1.77 0 0 0 0 0 0 0 +-3.391 4.852 -1.773 0 0 0 0 0 0 0 +-3.409 4.846 -1.774 0 0 0 0 0 0 0 +-3.429 4.842 -1.777 0 0 0 0 0 0 0 +-3.442 4.828 -1.776 0 0 0 0 0 0 0 +-3.455 4.814 -1.774 0 0 0 0 0 0 0 +-3.469 4.801 -1.774 0 0 0 0 0 0 0 +-3.488 4.797 -1.776 0 0 0 0 0 0 0 +-3.504 4.787 -1.777 0 0 0 0 0 0 0 +-3.512 4.782 -1.777 0 0 0 0 0 0 0 +-3.527 4.771 -1.777 0 0 0 0 0 0 0 +-3.544 4.762 -1.778 0 0 0 0 0 0 0 +-3.555 4.745 -1.776 0 0 0 0 0 0 0 +-3.579 4.746 -1.781 0 0 0 0 0 0 0 +-3.592 4.733 -1.78 0 0 0 0 0 0 0 +-3.608 4.724 -1.781 0 0 0 0 0 0 0 +-3.618 4.721 -1.782 0 0 0 0 0 0 0 +-3.641 4.72 -1.786 0 0 0 0 0 0 0 +-3.651 4.703 -1.784 0 0 0 0 0 0 0 +-3.662 4.687 -1.782 0 0 0 0 0 0 0 +-3.686 4.687 -1.787 0 0 0 0 0 0 0 +-3.696 4.67 -1.784 0 0 0 0 0 0 0 +-3.706 4.652 -1.782 0 0 0 0 0 0 0 +-3.727 4.663 -1.788 0 0 0 0 0 0 0 +-3.747 4.658 -1.791 0 0 0 0 0 0 0 +-3.776 4.664 -1.799 0 0 0 0 0 0 0 +-3.781 4.641 -1.794 0 0 0 0 0 0 0 +-3.797 4.63 -1.795 0 0 0 0 0 0 0 +-3.813 4.62 -1.795 0 0 0 0 0 0 0 +-3.849 4.634 -1.806 0 0 0 0 0 0 0 +-3.86 4.633 -1.808 0 0 0 0 0 0 0 +-3.896 4.647 -1.819 0 0 0 0 0 0 0 +-3.905 4.627 -1.816 0 0 0 0 0 0 0 +-3.91 4.603 -1.811 0 0 0 0 0 0 0 +-3.922 4.588 -1.81 0 0 0 0 0 0 0 +-3.919 4.555 -1.801 0 0 0 0 0 0 0 +-3.927 4.536 -1.798 0 0 0 0 0 0 0 +-3.929 4.509 -1.792 0 0 0 0 0 0 0 +-3.946 4.514 -1.797 0 0 0 0 0 0 0 +-3.946 4.486 -1.79 0 0 0 0 0 0 0 +-3.958 4.471 -1.789 0 0 0 0 0 0 0 +-3.984 4.473 -1.795 0 0 0 0 0 0 0 +-3.988 4.449 -1.79 0 0 0 0 0 0 0 +-3.998 4.432 -1.788 0 0 0 0 0 0 0 +-4.013 4.421 -1.789 0 0 0 0 0 0 0 +-4.019 4.413 -1.788 0 0 0 0 0 0 0 +-4.029 4.396 -1.787 0 0 0 0 0 0 0 +-4.039 4.379 -1.785 0 0 0 0 0 0 0 +-4.048 4.361 -1.782 0 0 0 0 0 0 0 +-4.061 4.348 -1.782 0 0 0 0 0 0 0 +-4.072 4.333 -1.781 0 0 0 0 0 0 0 +-4.085 4.318 -1.781 0 0 0 0 0 0 0 +-4.095 4.316 -1.782 0 0 0 0 0 0 0 +-4.102 4.296 -1.779 0 0 0 0 0 0 0 +-4.11 4.278 -1.777 0 0 0 0 0 0 0 +-4.128 4.269 -1.779 0 0 0 0 0 0 0 +-4.135 4.249 -1.776 0 0 0 0 0 0 0 +-4.141 4.229 -1.773 0 0 0 0 0 0 0 +-4.169 4.231 -1.779 0 0 0 0 0 0 0 +-4.172 4.221 -1.777 0 0 0 0 0 0 0 +-4.178 4.201 -1.774 0 0 0 0 0 0 0 +-4.186 4.182 -1.772 0 0 0 0 0 0 0 +-4.211 4.181 -1.777 0 0 0 0 0 0 0 +-4.215 4.159 -1.773 0 0 0 0 0 0 0 +-4.238 4.155 -1.777 0 0 0 0 0 0 0 +-4.263 4.153 -1.783 0 0 0 0 0 0 0 +-4.245 4.123 -1.772 0 0 0 0 0 0 0 +-4.27 4.121 -1.777 0 0 0 0 0 0 0 +-4.289 4.113 -1.78 0 0 0 0 0 0 0 +-4.293 4.092 -1.776 0 0 0 0 0 0 0 +-4.306 4.078 -1.776 0 0 0 0 0 0 0 +-4.319 4.065 -1.776 0 0 0 0 0 0 0 +-4.323 4.043 -1.773 0 0 0 0 0 0 0 +-4.347 4.04 -1.777 0 0 0 0 0 0 0 +-4.355 4.035 -1.778 0 0 0 0 0 0 0 +-4.367 4.021 -1.778 0 0 0 0 0 0 0 +-4.376 4.003 -1.776 0 0 0 0 0 0 0 +-4.386 3.987 -1.775 0 0 0 0 0 0 0 +-4.387 3.963 -1.77 0 0 0 0 0 0 0 +-4.404 3.953 -1.772 0 0 0 0 0 0 0 +-4.424 3.947 -1.776 0 0 0 0 0 0 0 +-4.425 3.935 -1.773 0 0 0 0 0 0 0 +-4.444 3.927 -1.776 0 0 0 0 0 0 0 +-4.448 3.906 -1.773 0 0 0 0 0 0 0 +-4.455 3.886 -1.77 0 0 0 0 0 0 0 +-4.471 3.876 -1.772 0 0 0 0 0 0 0 +-4.479 3.858 -1.77 0 0 0 0 0 0 0 +-4.491 3.844 -1.77 0 0 0 0 0 0 0 +-4.496 3.836 -1.77 0 0 0 0 0 0 0 +-4.515 3.828 -1.773 0 0 0 0 0 0 0 +-4.523 3.81 -1.771 0 0 0 0 0 0 0 +-4.532 3.793 -1.77 0 0 0 0 0 0 0 +-4.541 3.777 -1.768 0 0 0 0 0 0 0 +-4.554 3.764 -1.769 0 0 0 0 0 0 0 +-4.567 3.751 -1.77 0 0 0 0 0 0 0 +-4.576 3.746 -1.771 0 0 0 0 0 0 0 +-4.6 3.741 -1.776 0 0 0 0 0 0 0 +-4.601 3.718 -1.771 0 0 0 0 0 0 0 +-4.614 3.705 -1.772 0 0 0 0 0 0 0 +-4.624 3.689 -1.771 0 0 0 0 0 0 0 +-4.64 3.678 -1.773 0 0 0 0 0 0 0 +-4.65 3.662 -1.773 0 0 0 0 0 0 0 +-4.653 3.653 -1.771 0 0 0 0 0 0 0 +-4.671 3.643 -1.774 0 0 0 0 0 0 0 +-4.677 3.625 -1.772 0 0 0 0 0 0 0 +-4.687 3.609 -1.771 0 0 0 0 0 0 0 +-4.702 3.596 -1.773 0 0 0 0 0 0 0 +-4.714 3.583 -1.773 0 0 0 0 0 0 0 +-4.726 3.568 -1.773 0 0 0 0 0 0 0 +-4.735 3.552 -1.773 0 0 0 0 0 0 0 +-4.744 3.547 -1.774 0 0 0 0 0 0 0 +-4.747 3.526 -1.771 0 0 0 0 0 0 0 +-4.769 3.519 -1.775 0 0 0 0 0 0 0 +-4.779 3.503 -1.774 0 0 0 0 0 0 0 +-4.782 3.482 -1.771 0 0 0 0 0 0 0 +-4.799 3.472 -1.774 0 0 0 0 0 0 0 +-4.804 3.452 -1.771 0 0 0 0 0 0 0 +-4.814 3.448 -1.773 0 0 0 0 0 0 0 +-4.82 3.43 -1.771 0 0 0 0 0 0 0 +-4.829 3.413 -1.771 0 0 0 0 0 0 0 +-4.846 3.403 -1.773 0 0 0 0 0 0 0 +-4.866 3.394 -1.777 0 0 0 0 0 0 0 +-4.866 3.371 -1.773 0 0 0 0 0 0 0 +-4.883 3.36 -1.775 0 0 0 0 0 0 0 +-4.883 3.349 -1.773 0 0 0 0 0 0 0 +-4.892 3.333 -1.773 0 0 0 0 0 0 0 +-4.901 3.316 -1.772 0 0 0 0 0 0 0 +-4.916 3.304 -1.774 0 0 0 0 0 0 0 +-4.926 3.288 -1.774 0 0 0 0 0 0 0 +-4.946 3.279 -1.777 0 0 0 0 0 0 0 +-4.953 3.262 -1.776 0 0 0 0 0 0 0 +-4.962 3.256 -1.777 0 0 0 0 0 0 0 +-4.97 3.239 -1.777 0 0 0 0 0 0 0 +-4.979 3.223 -1.776 0 0 0 0 0 0 0 +-4.989 3.207 -1.776 0 0 0 0 0 0 0 +-4.989 3.185 -1.773 0 0 0 0 0 0 0 +-5.009 3.176 -1.776 0 0 0 0 0 0 0 +-5.024 3.163 -1.778 0 0 0 0 0 0 0 +-5.034 3.147 -1.778 0 0 0 0 0 0 0 +-5.029 3.133 -1.774 0 0 0 0 0 0 0 +-5.036 3.115 -1.773 0 0 0 0 0 0 0 +-5.052 3.103 -1.776 0 0 0 0 0 0 0 +-5.06 3.087 -1.775 0 0 0 0 0 0 0 +-5.074 3.074 -1.777 0 0 0 0 0 0 0 +-5.081 3.056 -1.776 0 0 0 0 0 0 0 +-5.085 3.037 -1.774 0 0 0 0 0 0 0 +-5.09 3.029 -1.774 0 0 0 0 0 0 0 +-5.111 3.02 -1.778 0 0 0 0 0 0 0 +-5.119 3.003 -1.777 0 0 0 0 0 0 0 +-5.124 2.984 -1.776 0 0 0 0 0 0 0 +-5.139 2.971 -1.778 0 0 0 0 0 0 0 +-5.152 2.957 -1.779 0 0 0 0 0 0 0 +-5.163 2.942 -1.78 0 0 0 0 0 0 0 +-5.163 2.931 -1.778 0 0 0 0 0 0 0 +-5.178 2.918 -1.781 0 0 0 0 0 0 0 +-5.189 2.903 -1.781 0 0 0 0 0 0 0 +-5.197 2.886 -1.781 0 0 0 0 0 0 0 +-5.202 2.868 -1.779 0 0 0 0 0 0 0 +-5.218 2.855 -1.782 0 0 0 0 0 0 0 +-5.219 2.834 -1.779 0 0 0 0 0 0 0 +-5.226 2.828 -1.78 0 0 0 0 0 0 0 +-5.245 2.817 -1.784 0 0 0 0 0 0 0 +-5.257 2.802 -1.785 0 0 0 0 0 0 0 +-5.265 2.784 -1.784 0 0 0 0 0 0 0 +-5.273 2.768 -1.784 0 0 0 0 0 0 0 +-5.277 2.749 -1.782 0 0 0 0 0 0 0 +-5.289 2.734 -1.784 0 0 0 0 0 0 0 +-5.291 2.725 -1.783 0 0 0 0 0 0 0 +-5.307 2.712 -1.785 0 0 0 0 0 0 0 +-5.324 2.699 -1.788 0 0 0 0 0 0 0 +-5.322 2.677 -1.785 0 0 0 0 0 0 0 +-5.341 2.666 -1.788 0 0 0 0 0 0 0 +-5.351 2.65 -1.789 0 0 0 0 0 0 0 +-5.35 2.629 -1.786 0 0 0 0 0 0 0 +-5.358 2.622 -1.787 0 0 0 0 0 0 0 +-5.38 2.612 -1.792 0 0 0 0 0 0 0 +-5.379 2.591 -1.789 0 0 0 0 0 0 0 +-5.389 2.575 -1.79 0 0 0 0 0 0 0 +-5.399 2.559 -1.79 0 0 0 0 0 0 0 +-5.407 2.542 -1.79 0 0 0 0 0 0 0 +-5.401 2.518 -1.785 0 0 0 0 0 0 0 +-5.425 2.508 -1.791 0 0 0 0 0 0 0 +-5.427 2.499 -1.79 0 0 0 0 0 0 0 +-5.433 2.481 -1.79 0 0 0 0 0 0 0 +-5.439 2.463 -1.789 0 0 0 0 0 0 0 +-5.459 2.452 -1.793 0 0 0 0 0 0 0 +-5.458 2.431 -1.79 0 0 0 0 0 0 0 +-5.478 2.419 -1.795 0 0 0 0 0 0 0 +-5.483 2.401 -1.794 0 0 0 0 0 0 0 +-5.487 2.392 -1.794 0 0 0 0 0 0 0 +-5.509 2.381 -1.799 0 0 0 0 0 0 0 +-5.518 2.365 -1.799 0 0 0 0 0 0 0 +-5.518 2.344 -1.797 0 0 0 0 0 0 0 +-5.54 2.333 -1.802 0 0 0 0 0 0 0 +-5.552 2.318 -1.804 0 0 0 0 0 0 0 +-5.565 2.302 -1.805 0 0 0 0 0 0 0 +-5.694 1.68 -1.778 0 0 0 0 0 0 0 +-5.735 1.683 -1.791 0 0 0 0 0 0 0 +-5.734 1.663 -1.789 0 0 0 0 0 0 0 +-5.743 1.646 -1.79 0 0 0 0 0 0 0 +-5.756 1.63 -1.793 0 0 0 0 0 0 0 +-5.746 1.608 -1.788 0 0 0 0 0 0 0 +-5.751 1.59 -1.788 0 0 0 0 0 0 0 +-5.758 1.573 -1.788 0 0 0 0 0 0 0 +-5.764 1.565 -1.79 0 0 0 0 0 0 0 +-5.769 1.546 -1.79 0 0 0 0 0 0 0 +-5.765 1.526 -1.787 0 0 0 0 0 0 0 +-5.777 1.51 -1.789 0 0 0 0 0 0 0 +-5.776 1.49 -1.787 0 0 0 0 0 0 0 +-5.783 1.472 -1.788 0 0 0 0 0 0 0 +-5.783 1.453 -1.787 0 0 0 0 0 0 0 +-5.778 1.442 -1.784 0 0 0 0 0 0 0 +-5.794 1.427 -1.788 0 0 0 0 0 0 0 +-5.793 1.407 -1.786 0 0 0 0 0 0 0 +-5.795 1.389 -1.785 0 0 0 0 0 0 0 +-5.783 1.366 -1.78 0 0 0 0 0 0 0 +-5.806 1.353 -1.786 0 0 0 0 0 0 0 +-5.791 1.33 -1.78 0 0 0 0 0 0 0 +-5.799 1.322 -1.782 0 0 0 0 0 0 0 +-5.813 1.306 -1.785 0 0 0 0 0 0 0 +-5.804 1.285 -1.781 0 0 0 0 0 0 0 +-5.821 1.27 -1.785 0 0 0 0 0 0 0 +-5.815 1.249 -1.782 0 0 0 0 0 0 0 +-5.819 1.231 -1.782 0 0 0 0 0 0 0 +-5.827 1.214 -1.783 0 0 0 0 0 0 0 +-5.823 1.203 -1.781 0 0 0 0 0 0 0 +-5.817 1.183 -1.778 0 0 0 0 0 0 0 +-5.825 1.165 -1.779 0 0 0 0 0 0 0 +-5.829 1.147 -1.779 0 0 0 0 0 0 0 +-5.841 1.131 -1.782 0 0 0 0 0 0 0 +-5.834 1.11 -1.779 0 0 0 0 0 0 0 +-5.854 1.095 -1.784 0 0 0 0 0 0 0 +-5.833 1.082 -1.777 0 0 0 0 0 0 0 +-5.846 1.065 -1.78 0 0 0 0 0 0 0 +-5.859 1.048 -1.783 0 0 0 0 0 0 0 +-5.839 1.026 -1.776 0 0 0 0 0 0 0 +-5.856 1.01 -1.78 0 0 0 0 0 0 0 +-5.853 0.99 -1.778 0 0 0 0 0 0 0 +-5.862 0.973 -1.78 0 0 0 0 0 0 0 +-5.86 0.963 -1.779 0 0 0 0 0 0 0 +-5.872 0.946 -1.782 0 0 0 0 0 0 0 +-5.839 0.922 -1.77 0 0 0 0 0 0 0 +-5.876 0.909 -1.781 0 0 0 0 0 0 0 +-5.868 0.889 -1.777 0 0 0 0 0 0 0 +-5.869 0.87 -1.777 0 0 0 0 0 0 0 +-5.864 0.851 -1.774 0 0 0 0 0 0 0 +-5.874 0.833 -1.777 0 0 0 0 0 0 0 +-5.873 0.824 -1.776 0 0 0 0 0 0 0 +-5.88 0.806 -1.777 0 0 0 0 0 0 0 +-5.893 0.789 -1.781 0 0 0 0 0 0 0 +-5.879 0.768 -1.776 0 0 0 0 0 0 0 +-5.887 0.75 -1.777 0 0 0 0 0 0 0 +-5.899 0.733 -1.781 0 0 0 0 0 0 0 +-5.903 0.715 -1.781 0 0 0 0 0 0 0 +-5.9 0.705 -1.78 0 0 0 0 0 0 0 +-5.902 0.687 -1.78 0 0 0 0 0 0 0 +-5.901 0.668 -1.779 0 0 0 0 0 0 0 +-5.897 0.648 -1.777 0 0 0 0 0 0 0 +-5.911 0.631 -1.781 0 0 0 0 0 0 0 +-5.901 0.611 -1.777 0 0 0 0 0 0 0 +-5.911 0.594 -1.779 0 0 0 0 0 0 0 +-5.93 0.577 -1.785 0 0 0 0 0 0 0 +-5.911 0.565 -1.779 0 0 0 0 0 0 0 +-5.906 0.546 -1.776 0 0 0 0 0 0 0 +-5.924 0.529 -1.782 0 0 0 0 0 0 0 +-5.909 0.509 -1.776 0 0 0 0 0 0 0 +-5.909 0.49 -1.776 0 0 0 0 0 0 0 +-5.922 0.473 -1.779 0 0 0 0 0 0 0 +-5.91 0.453 -1.775 0 0 0 0 0 0 0 +-5.922 0.445 -1.779 0 0 0 0 0 0 0 +-5.929 0.426 -1.781 0 0 0 0 0 0 0 +-5.911 0.406 -1.774 0 0 0 0 0 0 0 +-5.941 0.39 -1.784 0 0 0 0 0 0 0 +-5.936 0.371 -1.782 0 0 0 0 0 0 0 +-5.913 0.351 -1.774 0 0 0 0 0 0 0 +-5.904 0.331 -1.771 0 0 0 0 0 0 0 +-5.933 0.324 -1.78 0 0 0 0 0 0 0 +-5.921 0.304 -1.776 0 0 0 0 0 0 0 +-5.939 0.287 -1.781 0 0 0 0 0 0 0 +-5.946 0.268 -1.783 0 0 0 0 0 0 0 +-5.941 0.249 -1.781 0 0 0 0 0 0 0 +-5.923 0.23 -1.775 0 0 0 0 0 0 0 +-5.937 0.212 -1.779 0 0 0 0 0 0 0 +-5.933 0.202 -1.778 0 0 0 0 0 0 0 +-5.947 0.184 -1.782 0 0 0 0 0 0 0 +-5.946 0.165 -1.782 0 0 0 0 0 0 0 +-5.933 0.146 -1.777 0 0 0 0 0 0 0 +-5.939 0.128 -1.779 0 0 0 0 0 0 0 +-5.943 0.109 -1.781 0 0 0 0 0 0 0 +-5.94 0.091 -1.779 0 0 0 0 0 0 0 +-5.936 0.081 -1.778 0 0 0 0 0 0 0 +-5.936 0.063 -1.778 0 0 0 0 0 0 0 +-5.942 0.044 -1.78 0 0 0 0 0 0 0 +-5.944 0.025 -1.781 0 0 0 0 0 0 0 +-5.94 0.007 -1.779 0 0 0 0 0 0 0 +-5.957 -0.012 -1.785 0 0 0 0 0 0 0 +-5.95 -0.031 -1.782 0 0 0 0 0 0 0 +-5.942 -0.049 -1.78 0 0 0 0 0 0 0 +-5.955 -0.059 -1.784 0 0 0 0 0 0 0 +-5.944 -0.077 -1.781 0 0 0 0 0 0 0 +-5.938 -0.096 -1.779 0 0 0 0 0 0 0 +-5.941 -0.115 -1.78 0 0 0 0 0 0 0 +-5.948 -0.133 -1.782 0 0 0 0 0 0 0 +-5.95 -0.152 -1.783 0 0 0 0 0 0 0 +-5.944 -0.171 -1.781 0 0 0 0 0 0 0 +-5.943 -0.18 -1.781 0 0 0 0 0 0 0 +-5.943 -0.199 -1.781 0 0 0 0 0 0 0 +-5.948 -0.218 -1.783 0 0 0 0 0 0 0 +-5.934 -0.236 -1.779 0 0 0 0 0 0 0 +-5.948 -0.255 -1.784 0 0 0 0 0 0 0 +-5.94 -0.273 -1.781 0 0 0 0 0 0 0 +-5.946 -0.292 -1.784 0 0 0 0 0 0 0 +-5.937 -0.301 -1.781 0 0 0 0 0 0 0 +-5.939 -0.32 -1.782 0 0 0 0 0 0 0 +-5.946 -0.339 -1.784 0 0 0 0 0 0 0 +-5.958 -0.359 -1.788 0 0 0 0 0 0 0 +-5.946 -0.377 -1.785 0 0 0 0 0 0 0 +-5.95 -0.396 -1.787 0 0 0 0 0 0 0 +-5.956 -0.415 -1.789 0 0 0 0 0 0 0 +-5.948 -0.424 -1.787 0 0 0 0 0 0 0 +-5.951 -0.443 -1.788 0 0 0 0 0 0 0 +-5.953 -0.462 -1.789 0 0 0 0 0 0 0 +-6.195 -0.499 -1.867 0 0 0 0 0 0 0 +-6.193 -0.518 -1.867 0 0 0 0 0 0 0 +-6.201 -0.539 -1.87 0 0 0 0 0 0 0 +-6.207 -0.559 -1.872 0 0 0 0 0 0 0 +-6.201 -0.578 -1.871 0 0 0 0 0 0 0 +-6.197 -0.597 -1.871 0 0 0 0 0 0 0 +-6.208 -0.608 -1.874 0 0 0 0 0 0 0 +-6.2 -0.627 -1.872 0 0 0 0 0 0 0 +-6.191 -0.646 -1.87 0 0 0 0 0 0 0 +-6.171 -0.663 -1.865 0 0 0 0 0 0 0 +-6.173 -0.683 -1.866 0 0 0 0 0 0 0 +-6.165 -0.702 -1.864 0 0 0 0 0 0 0 +-6.154 -0.72 -1.861 0 0 0 0 0 0 0 +-6.16 -0.731 -1.863 0 0 0 0 0 0 0 +-6.158 -0.75 -1.863 0 0 0 0 0 0 0 +-6.159 -0.77 -1.865 0 0 0 0 0 0 0 +-6.153 -0.789 -1.863 0 0 0 0 0 0 0 +-6.164 -0.81 -1.868 0 0 0 0 0 0 0 +-6.167 -0.83 -1.869 0 0 0 0 0 0 0 +-6.132 -0.845 -1.859 0 0 0 0 0 0 0 +-6.127 -0.854 -1.858 0 0 0 0 0 0 0 +-6.134 -0.875 -1.861 0 0 0 0 0 0 0 +-6.125 -0.893 -1.859 0 0 0 0 0 0 0 +-6.107 -0.91 -1.854 0 0 0 0 0 0 0 +-6.114 -0.931 -1.857 0 0 0 0 0 0 0 +-6.113 -0.95 -1.858 0 0 0 0 0 0 0 +-6.104 -0.969 -1.856 0 0 0 0 0 0 0 +-6.102 -0.978 -1.856 0 0 0 0 0 0 0 +-6.092 -0.996 -1.854 0 0 0 0 0 0 0 +-6.094 -1.016 -1.855 0 0 0 0 0 0 0 +-6.082 -1.034 -1.852 0 0 0 0 0 0 0 +-6.078 -1.053 -1.852 0 0 0 0 0 0 0 +-6.077 -1.072 -1.853 0 0 0 0 0 0 0 +-6.068 -1.09 -1.851 0 0 0 0 0 0 0 +-6.068 -1.1 -1.852 0 0 0 0 0 0 0 +-6.07 -1.12 -1.854 0 0 0 0 0 0 0 +-6.059 -1.138 -1.851 0 0 0 0 0 0 0 +-6.063 -1.158 -1.854 0 0 0 0 0 0 0 +-6.054 -1.176 -1.852 0 0 0 0 0 0 0 +-6.058 -1.197 -1.854 0 0 0 0 0 0 0 +-6.041 -1.213 -1.85 0 0 0 0 0 0 0 +-6.052 -1.235 -1.855 0 0 0 0 0 0 0 +-6.039 -1.242 -1.851 0 0 0 0 0 0 0 +-6.029 -1.26 -1.849 0 0 0 0 0 0 0 +-6.031 -1.28 -1.851 0 0 0 0 0 0 0 +-6.032 -1.301 -1.853 0 0 0 0 0 0 0 +-6.026 -1.319 -1.852 0 0 0 0 0 0 0 +-6.018 -1.337 -1.851 0 0 0 0 0 0 0 +-6.001 -1.353 -1.847 0 0 0 0 0 0 0 +-6.01 -1.365 -1.851 0 0 0 0 0 0 0 +-6.01 -1.385 -1.852 0 0 0 0 0 0 0 +-6.001 -1.403 -1.851 0 0 0 0 0 0 0 +-5.997 -1.422 -1.851 0 0 0 0 0 0 0 +-5.989 -1.44 -1.849 0 0 0 0 0 0 0 +-5.982 -1.458 -1.849 0 0 0 0 0 0 0 +-5.978 -1.477 -1.849 0 0 0 0 0 0 0 +-5.975 -1.486 -1.849 0 0 0 0 0 0 0 +-5.956 -1.501 -1.844 0 0 0 0 0 0 0 +-5.957 -1.521 -1.846 0 0 0 0 0 0 0 +-5.958 -1.542 -1.848 0 0 0 0 0 0 0 +-5.943 -1.558 -1.844 0 0 0 0 0 0 0 +-5.942 -1.577 -1.846 0 0 0 0 0 0 0 +-5.935 -1.596 -1.845 0 0 0 0 0 0 0 +-5.924 -1.603 -1.842 0 0 0 0 0 0 0 +-5.922 -1.622 -1.843 0 0 0 0 0 0 0 +-5.935 -1.646 -1.849 0 0 0 0 0 0 0 +-5.927 -1.663 -1.848 0 0 0 0 0 0 0 +-5.701 -2.249 -1.84 0 0 0 0 0 0 0 +-5.698 -2.268 -1.841 0 0 0 0 0 0 0 +-5.698 -2.289 -1.843 0 0 0 0 0 0 0 +-5.692 -2.308 -1.844 0 0 0 0 0 0 0 +-5.685 -2.326 -1.844 0 0 0 0 0 0 0 +-5.678 -2.333 -1.843 0 0 0 0 0 0 0 +-5.67 -2.351 -1.843 0 0 0 0 0 0 0 +-5.656 -2.366 -1.84 0 0 0 0 0 0 0 +-5.652 -2.385 -1.841 0 0 0 0 0 0 0 +-5.653 -2.406 -1.844 0 0 0 0 0 0 0 +-5.639 -2.421 -1.842 0 0 0 0 0 0 0 +-5.633 -2.44 -1.843 0 0 0 0 0 0 0 +-5.622 -2.445 -1.84 0 0 0 0 0 0 0 +-5.618 -2.465 -1.841 0 0 0 0 0 0 0 +-5.596 -2.476 -1.837 0 0 0 0 0 0 0 +-5.606 -2.501 -1.843 0 0 0 0 0 0 0 +-5.58 -2.511 -1.837 0 0 0 0 0 0 0 +-5.578 -2.531 -1.838 0 0 0 0 0 0 0 +-5.571 -2.549 -1.839 0 0 0 0 0 0 0 +-5.564 -2.557 -1.838 0 0 0 0 0 0 0 +-5.554 -2.573 -1.837 0 0 0 0 0 0 0 +-5.553 -2.594 -1.84 0 0 0 0 0 0 0 +-5.541 -2.61 -1.838 0 0 0 0 0 0 0 +-5.53 -2.626 -1.837 0 0 0 0 0 0 0 +-5.528 -2.646 -1.84 0 0 0 0 0 0 0 +-5.511 -2.659 -1.837 0 0 0 0 0 0 0 +-5.502 -2.666 -1.835 0 0 0 0 0 0 0 +-5.494 -2.683 -1.835 0 0 0 0 0 0 0 +-5.489 -2.702 -1.836 0 0 0 0 0 0 0 +-5.47 -2.714 -1.832 0 0 0 0 0 0 0 +-5.468 -2.734 -1.835 0 0 0 0 0 0 0 +-5.458 -2.751 -1.834 0 0 0 0 0 0 0 +-5.441 -2.764 -1.831 0 0 0 0 0 0 0 +-5.428 -2.768 -1.828 0 0 0 0 0 0 0 +-5.422 -2.787 -1.829 0 0 0 0 0 0 0 +-5.419 -2.806 -1.831 0 0 0 0 0 0 0 +-5.408 -2.822 -1.83 0 0 0 0 0 0 0 +-5.406 -2.843 -1.833 0 0 0 0 0 0 0 +-5.394 -2.858 -1.832 0 0 0 0 0 0 0 +-5.385 -2.875 -1.832 0 0 0 0 0 0 0 +-5.382 -2.884 -1.832 0 0 0 0 0 0 0 +-5.374 -2.902 -1.833 0 0 0 0 0 0 0 +-5.364 -2.918 -1.832 0 0 0 0 0 0 0 +-5.346 -2.93 -1.829 0 0 0 0 0 0 0 +-5.34 -2.949 -1.83 0 0 0 0 0 0 0 +-5.341 -2.971 -1.834 0 0 0 0 0 0 0 +-5.322 -2.983 -1.83 0 0 0 0 0 0 0 +-5.317 -2.991 -1.83 0 0 0 0 0 0 0 +-5.311 -3.009 -1.832 0 0 0 0 0 0 0 +-5.298 -3.024 -1.83 0 0 0 0 0 0 0 +-5.29 -3.042 -1.831 0 0 0 0 0 0 0 +-5.287 -3.062 -1.834 0 0 0 0 0 0 0 +-5.276 -3.078 -1.833 0 0 0 0 0 0 0 +-5.261 -3.092 -1.831 0 0 0 0 0 0 0 +-5.251 -3.108 -1.831 0 0 0 0 0 0 0 +-5.253 -3.12 -1.834 0 0 0 0 0 0 0 +-5.248 -3.14 -1.835 0 0 0 0 0 0 0 +-5.235 -3.154 -1.834 0 0 0 0 0 0 0 +-5.23 -3.173 -1.836 0 0 0 0 0 0 0 +-5.218 -3.189 -1.835 0 0 0 0 0 0 0 +-5.202 -3.201 -1.833 0 0 0 0 0 0 0 +-5.213 -3.231 -1.841 0 0 0 0 0 0 0 +-5.205 -3.237 -1.84 0 0 0 0 0 0 0 +-5.194 -3.253 -1.84 0 0 0 0 0 0 0 +-5.181 -3.267 -1.838 0 0 0 0 0 0 0 +-5.179 -3.289 -1.841 0 0 0 0 0 0 0 +-5.171 -3.307 -1.843 0 0 0 0 0 0 0 +-5.147 -3.314 -1.837 0 0 0 0 0 0 0 +-5.151 -3.339 -1.843 0 0 0 0 0 0 0 +-5.155 -3.354 -1.846 0 0 0 0 0 0 0 +-5.154 -3.376 -1.85 0 0 0 0 0 0 0 +-5.148 -3.395 -1.852 0 0 0 0 0 0 0 +-5.128 -3.405 -1.848 0 0 0 0 0 0 0 +-5.07 -3.39 -1.83 0 0 0 0 0 0 0 +-5.064 -3.409 -1.832 0 0 0 0 0 0 0 +-5.066 -3.433 -1.837 0 0 0 0 0 0 0 +-5.051 -3.435 -1.833 0 0 0 0 0 0 0 +-5.057 -3.462 -1.84 0 0 0 0 0 0 0 +-5.057 -3.486 -1.844 0 0 0 0 0 0 0 +-5.029 -3.49 -1.837 0 0 0 0 0 0 0 +-5.006 -3.497 -1.832 0 0 0 0 0 0 0 +-5.001 -3.517 -1.835 0 0 0 0 0 0 0 +-4.991 -3.534 -1.835 0 0 0 0 0 0 0 +-4.981 -3.538 -1.834 0 0 0 0 0 0 0 +-4.953 -3.542 -1.827 0 0 0 0 0 0 0 +-4.951 -3.564 -1.83 0 0 0 0 0 0 0 +-4.934 -3.575 -1.828 0 0 0 0 0 0 0 +-4.921 -3.59 -1.827 0 0 0 0 0 0 0 +-4.906 -3.603 -1.826 0 0 0 0 0 0 0 +-4.898 -3.62 -1.827 0 0 0 0 0 0 0 +-4.891 -3.627 -1.827 0 0 0 0 0 0 0 +-4.875 -3.639 -1.825 0 0 0 0 0 0 0 +-4.865 -3.655 -1.826 0 0 0 0 0 0 0 +-4.85 -3.668 -1.824 0 0 0 0 0 0 0 +-4.837 -3.682 -1.824 0 0 0 0 0 0 0 +-4.826 -3.698 -1.824 0 0 0 0 0 0 0 +-4.819 -3.716 -1.826 0 0 0 0 0 0 0 +-4.801 -3.714 -1.821 0 0 0 0 0 0 0 +-4.793 -3.733 -1.823 0 0 0 0 0 0 0 +-4.782 -3.748 -1.823 0 0 0 0 0 0 0 +-4.764 -3.758 -1.82 0 0 0 0 0 0 0 +-4.752 -3.773 -1.82 0 0 0 0 0 0 0 +-4.743 -3.791 -1.821 0 0 0 0 0 0 0 +-4.731 -3.805 -1.821 0 0 0 0 0 0 0 +-4.721 -3.822 -1.822 0 0 0 0 0 0 0 +-4.706 -3.822 -1.818 0 0 0 0 0 0 0 +-4.689 -3.833 -1.816 0 0 0 0 0 0 0 +-4.685 -3.854 -1.819 0 0 0 0 0 0 0 +-4.67 -3.866 -1.818 0 0 0 0 0 0 0 +-4.65 -3.875 -1.815 0 0 0 0 0 0 0 +-4.642 -3.893 -1.817 0 0 0 0 0 0 0 +-4.632 -3.909 -1.818 0 0 0 0 0 0 0 +-4.624 -3.915 -1.817 0 0 0 0 0 0 0 +-4.613 -3.93 -1.818 0 0 0 0 0 0 0 +-4.592 -3.937 -1.814 0 0 0 0 0 0 0 +-4.572 -3.946 -1.811 0 0 0 0 0 0 0 +-4.567 -3.966 -1.814 0 0 0 0 0 0 0 +-4.56 -3.985 -1.816 0 0 0 0 0 0 0 +-4.536 -3.99 -1.812 0 0 0 0 0 0 0 +-4.532 -3.998 -1.812 0 0 0 0 0 0 0 +-4.519 -4.012 -1.812 0 0 0 0 0 0 0 +-4.506 -4.027 -1.812 0 0 0 0 0 0 0 +-4.499 -4.046 -1.815 0 0 0 0 0 0 0 +-4.488 -4.061 -1.815 0 0 0 0 0 0 0 +-4.468 -4.069 -1.812 0 0 0 0 0 0 0 +-4.455 -4.083 -1.812 0 0 0 0 0 0 0 +-4.449 -4.09 -1.812 0 0 0 0 0 0 0 +-4.432 -4.1 -1.81 0 0 0 0 0 0 0 +-4.42 -4.115 -1.811 0 0 0 0 0 0 0 +-4.414 -4.135 -1.814 0 0 0 0 0 0 0 +-4.4 -4.148 -1.813 0 0 0 0 0 0 0 +-4.39 -4.164 -1.815 0 0 0 0 0 0 0 +-4.37 -4.172 -1.812 0 0 0 0 0 0 0 +-4.358 -4.173 -1.809 0 0 0 0 0 0 0 +-4.349 -4.191 -1.811 0 0 0 0 0 0 0 +-4.341 -4.21 -1.813 0 0 0 0 0 0 0 +-4.318 -4.214 -1.809 0 0 0 0 0 0 0 +-4.313 -4.236 -1.813 0 0 0 0 0 0 0 +-4.307 -4.256 -1.816 0 0 0 0 0 0 0 +-4.273 -4.249 -1.807 0 0 0 0 0 0 0 +-4.278 -4.268 -1.812 0 0 0 0 0 0 0 +-4.268 -4.284 -1.813 0 0 0 0 0 0 0 +-4.242 -4.285 -1.808 0 0 0 0 0 0 0 +-4.23 -4.3 -1.809 0 0 0 0 0 0 0 +-4.222 -4.319 -1.811 0 0 0 0 0 0 0 +-4.201 -4.325 -1.808 0 0 0 0 0 0 0 +-4.186 -4.337 -1.807 0 0 0 0 0 0 0 +-4.184 -4.348 -1.809 0 0 0 0 0 0 0 +-4.158 -4.349 -1.804 0 0 0 0 0 0 0 +-4.15 -4.367 -1.806 0 0 0 0 0 0 0 +-4.148 -4.392 -1.812 0 0 0 0 0 0 0 +-4.125 -4.396 -1.807 0 0 0 0 0 0 0 +-4.11 -4.407 -1.807 0 0 0 0 0 0 0 +-4.098 -4.423 -1.808 0 0 0 0 0 0 0 +-4.082 -4.433 -1.807 0 0 0 0 0 0 0 +-4.075 -4.439 -1.807 0 0 0 0 0 0 0 +-4.067 -4.459 -1.81 0 0 0 0 0 0 0 +-4.044 -4.462 -1.805 0 0 0 0 0 0 0 +-4.026 -4.471 -1.804 0 0 0 0 0 0 0 +-4.023 -4.495 -1.809 0 0 0 0 0 0 0 +-4.002 -4.5 -1.805 0 0 0 0 0 0 0 +-3.988 -4.513 -1.805 0 0 0 0 0 0 0 +-3.986 -4.525 -1.808 0 0 0 0 0 0 0 +-3.968 -4.533 -1.806 0 0 0 0 0 0 0 +-3.961 -4.554 -1.81 0 0 0 0 0 0 0 +-3.946 -4.565 -1.809 0 0 0 0 0 0 0 +-3.924 -4.569 -1.805 0 0 0 0 0 0 0 +-3.923 -4.597 -1.812 0 0 0 0 0 0 0 +-3.901 -4.6 -1.809 0 0 0 0 0 0 0 +-3.88 -4.591 -1.802 0 0 0 0 0 0 0 +-3.889 -4.63 -1.813 0 0 0 0 0 0 0 +-3.862 -4.628 -1.807 0 0 0 0 0 0 0 +-3.847 -4.639 -1.807 0 0 0 0 0 0 0 +-3.842 -4.662 -1.812 0 0 0 0 0 0 0 +-3.827 -4.674 -1.812 0 0 0 0 0 0 0 +-3.814 -4.688 -1.812 0 0 0 0 0 0 0 +-3.807 -4.695 -1.813 0 0 0 0 0 0 0 +-3.785 -4.698 -1.809 0 0 0 0 0 0 0 +-3.784 -4.727 -1.816 0 0 0 0 0 0 0 +-3.764 -4.733 -1.813 0 0 0 0 0 0 0 +-3.756 -4.753 -1.817 0 0 0 0 0 0 0 +-3.739 -4.762 -1.816 0 0 0 0 0 0 0 +-3.723 -4.772 -1.815 0 0 0 0 0 0 0 +-3.727 -4.793 -1.821 0 0 0 0 0 0 0 +-3.707 -4.799 -1.819 0 0 0 0 0 0 0 +-3.697 -4.816 -1.821 0 0 0 0 0 0 0 +-3.666 -4.807 -1.813 0 0 0 0 0 0 0 +-3.667 -4.84 -1.821 0 0 0 0 0 0 0 +-3.65 -4.85 -1.821 0 0 0 0 0 0 0 +-3.657 -4.89 -1.832 0 0 0 0 0 0 0 +-3.654 -4.902 -1.835 0 0 0 0 0 0 0 +-3.645 -4.922 -1.838 0 0 0 0 0 0 0 +-3.599 -4.892 -1.822 0 0 0 0 0 0 0 +-3.578 -4.896 -1.819 0 0 0 0 0 0 0 +-3.551 -4.892 -1.813 0 0 0 0 0 0 0 +-3.538 -4.906 -1.814 0 0 0 0 0 0 0 +-3.518 -4.911 -1.812 0 0 0 0 0 0 0 +-3.503 -4.906 -1.807 0 0 0 0 0 0 0 +-3.492 -4.923 -1.81 0 0 0 0 0 0 0 +-3.469 -4.923 -1.805 0 0 0 0 0 0 0 +-3.459 -4.942 -1.809 0 0 0 0 0 0 0 +-3.434 -4.94 -1.804 0 0 0 0 0 0 0 +-3.417 -4.948 -1.802 0 0 0 0 0 0 0 +-3.401 -4.958 -1.802 0 0 0 0 0 0 0 +-3.394 -4.965 -1.803 0 0 0 0 0 0 0 +-3.377 -4.973 -1.802 0 0 0 0 0 0 0 +-3.359 -4.98 -1.801 0 0 0 0 0 0 0 +-3.342 -4.989 -1.8 0 0 0 0 0 0 0 +-3.335 -5.012 -1.805 0 0 0 0 0 0 0 +-3.312 -5.012 -1.801 0 0 0 0 0 0 0 +-3.296 -5.022 -1.801 0 0 0 0 0 0 0 +-3.286 -5.024 -1.799 0 0 0 0 0 0 0 +-3.274 -5.041 -1.802 0 0 0 0 0 0 0 +-3.254 -5.045 -1.799 0 0 0 0 0 0 0 +-3.243 -5.061 -1.802 0 0 0 0 0 0 0 +-3.225 -5.068 -1.801 0 0 0 0 0 0 0 +-3.209 -5.078 -1.801 0 0 0 0 0 0 0 +-3.189 -5.082 -1.798 0 0 0 0 0 0 0 +-3.185 -5.093 -1.801 0 0 0 0 0 0 0 +-3.162 -5.092 -1.796 0 0 0 0 0 0 0 +-3.152 -5.112 -1.8 0 0 0 0 0 0 0 +-3.141 -5.13 -1.803 0 0 0 0 0 0 0 +-3.117 -5.128 -1.799 0 0 0 0 0 0 0 +-3.101 -5.138 -1.799 0 0 0 0 0 0 0 +-3.084 -5.146 -1.798 0 0 0 0 0 0 0 +-3.077 -5.152 -1.799 0 0 0 0 0 0 0 +-3.06 -5.16 -1.798 0 0 0 0 0 0 0 +-3.043 -5.168 -1.798 0 0 0 0 0 0 0 +-3.026 -5.176 -1.797 0 0 0 0 0 0 0 +-3.01 -5.187 -1.798 0 0 0 0 0 0 0 +-2.993 -5.195 -1.797 0 0 0 0 0 0 0 +-2.979 -5.208 -1.798 0 0 0 0 0 0 0 +-2.969 -5.211 -1.798 0 0 0 0 0 0 0 +-2.952 -5.218 -1.797 0 0 0 0 0 0 0 +-2.941 -5.238 -1.801 0 0 0 0 0 0 0 +-2.916 -5.232 -1.795 0 0 0 0 0 0 0 +-2.907 -5.254 -1.8 0 0 0 0 0 0 0 +-2.89 -5.262 -1.799 0 0 0 0 0 0 0 +-2.87 -5.264 -1.797 0 0 0 0 0 0 0 +-2.854 -5.275 -1.798 0 0 0 0 0 0 0 +-2.845 -5.278 -1.797 0 0 0 0 0 0 0 +-2.83 -5.29 -1.798 0 0 0 0 0 0 0 +-2.81 -5.292 -1.796 0 0 0 0 0 0 0 +-2.791 -5.298 -1.795 0 0 0 0 0 0 0 +-2.774 -5.305 -1.794 0 0 0 0 0 0 0 +-2.755 -5.308 -1.792 0 0 0 0 0 0 0 +-2.743 -5.327 -1.796 0 0 0 0 0 0 0 +-2.732 -5.326 -1.794 0 0 0 0 0 0 0 +-2.721 -5.347 -1.798 0 0 0 0 0 0 0 +-2.699 -5.343 -1.794 0 0 0 0 0 0 0 +-2.68 -5.348 -1.793 0 0 0 0 0 0 0 +-2.662 -5.355 -1.792 0 0 0 0 0 0 0 +-2.647 -5.367 -1.793 0 0 0 0 0 0 0 +-2.637 -5.389 -1.798 0 0 0 0 0 0 0 +-2.625 -5.386 -1.796 0 0 0 0 0 0 0 +-2.616 -5.41 -1.801 0 0 0 0 0 0 0 +-2.592 -5.404 -1.796 0 0 0 0 0 0 0 +-2.573 -5.407 -1.795 0 0 0 0 0 0 0 +-2.56 -5.424 -1.798 0 0 0 0 0 0 0 +-2.538 -5.421 -1.794 0 0 0 0 0 0 0 +-2.523 -5.435 -1.796 0 0 0 0 0 0 0 +-2.522 -5.454 -1.801 0 0 0 0 0 0 0 +-2.493 -5.436 -1.792 0 0 0 0 0 0 0 +-2.484 -5.461 -1.798 0 0 0 0 0 0 0 +-2.467 -5.469 -1.798 0 0 0 0 0 0 0 +-2.446 -5.47 -1.796 0 0 0 0 0 0 0 +-2.429 -5.477 -1.796 0 0 0 0 0 0 0 +-2.416 -5.495 -1.799 0 0 0 0 0 0 0 +-2.396 -5.473 -1.79 0 0 0 0 0 0 0 +-2.392 -5.51 -1.801 0 0 0 0 0 0 0 +-2.38 -5.53 -1.805 0 0 0 0 0 0 0 +-2.358 -5.527 -1.801 0 0 0 0 0 0 0 +-2.342 -5.538 -1.802 0 0 0 0 0 0 0 +-2.326 -5.549 -1.804 0 0 0 0 0 0 0 +-2.324 -5.591 -1.816 0 0 0 0 0 0 0 +-2.338 -5.649 -1.835 0 0 0 0 0 0 0 +-2.321 -5.66 -1.836 0 0 0 0 0 0 0 +-2.248 -5.532 -1.789 0 0 0 0 0 0 0 +-2.235 -5.6 -1.808 0 0 0 0 0 0 0 +-2.207 -5.581 -1.799 0 0 0 0 0 0 0 +-2.186 -5.579 -1.796 0 0 0 0 0 0 0 +-2.17 -5.565 -1.79 0 0 0 0 0 0 0 +-2.146 -5.555 -1.784 0 0 0 0 0 0 0 +-2.131 -5.567 -1.786 0 0 0 0 0 0 0 +-2.108 -5.56 -1.781 0 0 0 0 0 0 0 +-2.085 -5.552 -1.776 0 0 0 0 0 0 0 +-2.068 -5.559 -1.776 0 0 0 0 0 0 0 +-2.047 -5.556 -1.773 0 0 0 0 0 0 0 +-2.037 -5.556 -1.772 0 0 0 0 0 0 0 +-2.023 -5.571 -1.775 0 0 0 0 0 0 0 +-2.003 -5.57 -1.773 0 0 0 0 0 0 0 +-1.98 -5.562 -1.768 0 0 0 0 0 0 0 +-1.969 -5.586 -1.774 0 0 0 0 0 0 0 +-1.945 -5.575 -1.768 0 0 0 0 0 0 0 +-1.927 -5.579 -1.767 0 0 0 0 0 0 0 +-1.915 -5.575 -1.765 0 0 0 0 0 0 0 +-1.902 -5.592 -1.768 0 0 0 0 0 0 0 +-1.879 -5.583 -1.763 0 0 0 0 0 0 0 +-1.863 -5.593 -1.765 0 0 0 0 0 0 0 +-1.843 -5.591 -1.762 0 0 0 0 0 0 0 +-1.826 -5.599 -1.763 0 0 0 0 0 0 0 +-1.808 -5.604 -1.763 0 0 0 0 0 0 0 +-1.796 -5.598 -1.76 0 0 0 0 0 0 0 +-1.779 -5.606 -1.76 0 0 0 0 0 0 0 +-1.761 -5.608 -1.759 0 0 0 0 0 0 0 +-1.744 -5.617 -1.76 0 0 0 0 0 0 0 +-1.724 -5.615 -1.758 0 0 0 0 0 0 0 +-1.708 -5.626 -1.76 0 0 0 0 0 0 0 +-1.69 -5.627 -1.759 0 0 0 0 0 0 0 +-1.68 -5.626 -1.757 0 0 0 0 0 0 0 +-1.661 -5.63 -1.757 0 0 0 0 0 0 0 +-1.643 -5.631 -1.756 0 0 0 0 0 0 0 +-1.624 -5.633 -1.754 0 0 0 0 0 0 0 +-1.608 -5.645 -1.757 0 0 0 0 0 0 0 +-1.586 -5.634 -1.751 0 0 0 0 0 0 0 +-1.57 -5.646 -1.754 0 0 0 0 0 0 0 +-1.56 -5.645 -1.752 0 0 0 0 0 0 0 +-1.543 -5.653 -1.754 0 0 0 0 0 0 0 +-1.525 -5.656 -1.753 0 0 0 0 0 0 0 +-1.505 -5.654 -1.751 0 0 0 0 0 0 0 +-1.489 -5.662 -1.752 0 0 0 0 0 0 0 +-1.472 -5.671 -1.753 0 0 0 0 0 0 0 +-1.453 -5.671 -1.752 0 0 0 0 0 0 0 +-1.434 -5.67 -1.75 0 0 0 0 0 0 0 +-1.425 -5.675 -1.751 0 0 0 0 0 0 0 +-1.406 -5.673 -1.749 0 0 0 0 0 0 0 +-1.391 -5.687 -1.752 0 0 0 0 0 0 0 +-1.37 -5.682 -1.749 0 0 0 0 0 0 0 +-1.353 -5.69 -1.75 0 0 0 0 0 0 0 +-1.335 -5.693 -1.749 0 0 0 0 0 0 0 +-1.316 -5.691 -1.748 0 0 0 0 0 0 0 +-1.308 -5.699 -1.749 0 0 0 0 0 0 0 +-1.29 -5.701 -1.749 0 0 0 0 0 0 0 +-1.272 -5.703 -1.748 0 0 0 0 0 0 0 +-1.255 -5.713 -1.75 0 0 0 0 0 0 0 +-1.235 -5.705 -1.746 0 0 0 0 0 0 0 +-1.219 -5.72 -1.75 0 0 0 0 0 0 0 +-1.208 -5.715 -1.748 0 0 0 0 0 0 0 +-1.192 -5.726 -1.75 0 0 0 0 0 0 0 +-1.175 -5.734 -1.751 0 0 0 0 0 0 0 +-1.153 -5.72 -1.746 0 0 0 0 0 0 0 +-1.138 -5.735 -1.749 0 0 0 0 0 0 0 +-1.119 -5.735 -1.748 0 0 0 0 0 0 0 +-1.099 -5.731 -1.746 0 0 0 0 0 0 0 +-1.081 -5.734 -1.746 0 0 0 0 0 0 0 +-1.073 -5.74 -1.747 0 0 0 0 0 0 0 +-1.052 -5.728 -1.742 0 0 0 0 0 0 0 +-1.035 -5.735 -1.743 0 0 0 0 0 0 0 +-1.018 -5.742 -1.745 0 0 0 0 0 0 0 +-1 -5.745 -1.745 0 0 0 0 0 0 0 +-0.985 -5.771 -1.752 0 0 0 0 0 0 0 +-0.964 -5.757 -1.746 0 0 0 0 0 0 0 +-0.955 -5.759 -1.746 0 0 0 0 0 0 0 +-0.939 -5.773 -1.75 0 0 0 0 0 0 0 +-0.919 -5.767 -1.747 0 0 0 0 0 0 0 +-0.902 -5.775 -1.749 0 0 0 0 0 0 0 +-0.885 -5.783 -1.751 0 0 0 0 0 0 0 +-0.867 -5.788 -1.751 0 0 0 0 0 0 0 +-0.848 -5.783 -1.749 0 0 0 0 0 0 0 +-0.839 -5.786 -1.749 0 0 0 0 0 0 0 +-0.821 -5.793 -1.751 0 0 0 0 0 0 0 +-0.803 -5.792 -1.749 0 0 0 0 0 0 0 +-0.785 -5.8 -1.751 0 0 0 0 0 0 0 +-0.766 -5.798 -1.75 0 0 0 0 0 0 0 +-0.748 -5.801 -1.75 0 0 0 0 0 0 0 +-0.731 -5.813 -1.753 0 0 0 0 0 0 0 +-0.723 -5.818 -1.754 0 0 0 0 0 0 0 +-0.704 -5.82 -1.754 0 0 0 0 0 0 0 +-0.686 -5.824 -1.755 0 0 0 0 0 0 0 +-0.668 -5.822 -1.754 0 0 0 0 0 0 0 +-0.649 -5.826 -1.754 0 0 0 0 0 0 0 +-0.632 -5.834 -1.756 0 0 0 0 0 0 0 +-0.612 -5.821 -1.751 0 0 0 0 0 0 0 +-0.603 -5.827 -1.753 0 0 0 0 0 0 0 +-0.585 -5.833 -1.754 0 0 0 0 0 0 0 +-0.567 -5.833 -1.754 0 0 0 0 0 0 0 +-0.549 -5.838 -1.755 0 0 0 0 0 0 0 +-0.531 -5.848 -1.757 0 0 0 0 0 0 0 +-0.512 -5.844 -1.756 0 0 0 0 0 0 0 +-0.494 -5.841 -1.754 0 0 0 0 0 0 0 +-0.486 -5.855 -1.759 0 0 0 0 0 0 0 +-0.467 -5.853 -1.757 0 0 0 0 0 0 0 +-0.449 -5.855 -1.757 0 0 0 0 0 0 0 +-0.43 -5.86 -1.759 0 0 0 0 0 0 0 +-0.411 -5.85 -1.755 0 0 0 0 0 0 0 +-0.393 -5.847 -1.754 0 0 0 0 0 0 0 +-0.375 -5.867 -1.76 0 0 0 0 0 0 0 +-0.365 -5.849 -1.754 0 0 0 0 0 0 0 +-0.347 -5.861 -1.757 0 0 0 0 0 0 0 +-0.329 -5.864 -1.758 0 0 0 0 0 0 0 +-0.31 -5.854 -1.754 0 0 0 0 0 0 0 +-0.293 -5.878 -1.762 0 0 0 0 0 0 0 +-0.274 -5.863 -1.757 0 0 0 0 0 0 0 +-0.255 -5.864 -1.757 0 0 0 0 0 0 0 +-0.246 -5.872 -1.759 0 0 0 0 0 0 0 +-0.228 -5.879 -1.761 0 0 0 0 0 0 0 +-0.209 -5.872 -1.759 0 0 0 0 0 0 0 +-0.191 -5.871 -1.758 0 0 0 0 0 0 0 +-0.172 -5.875 -1.759 0 0 0 0 0 0 0 +-0.154 -5.881 -1.761 0 0 0 0 0 0 0 +-0.136 -5.885 -1.762 0 0 0 0 0 0 0 +-0.127 -5.888 -1.763 0 0 0 0 0 0 0 +-0.108 -5.882 -1.761 0 0 0 0 0 0 0 +-0.09 -5.892 -1.764 0 0 0 0 0 0 0 +-0.071 -5.892 -1.764 0 0 0 0 0 0 0 +-0.053 -5.896 -1.765 0 0 0 0 0 0 0 +-0.034 -5.881 -1.76 0 0 0 0 0 0 0 +-0.016 -5.881 -1.76 0 0 0 0 0 0 0 +-0.006 -5.877 -1.759 0 0 0 0 0 0 0 +0.012 -5.889 -1.763 0 0 0 0 0 0 0 +0.031 -5.891 -1.763 0 0 0 0 0 0 0 +0.049 -5.887 -1.762 0 0 0 0 0 0 0 +0.068 -5.89 -1.763 0 0 0 0 0 0 0 +0.086 -5.905 -1.768 0 0 0 0 0 0 0 +0.105 -5.892 -1.764 0 0 0 0 0 0 0 +0.114 -5.914 -1.771 0 0 0 0 0 0 0 +0.133 -5.899 -1.767 0 0 0 0 0 0 0 +0.151 -5.9 -1.767 0 0 0 0 0 0 0 +0.169 -5.881 -1.761 0 0 0 0 0 0 0 +0.188 -5.909 -1.77 0 0 0 0 0 0 0 +0.207 -5.901 -1.768 0 0 0 0 0 0 0 +0.225 -5.894 -1.766 0 0 0 0 0 0 0 +0.235 -5.913 -1.772 0 0 0 0 0 0 0 +0.253 -5.901 -1.768 0 0 0 0 0 0 0 +0.272 -5.907 -1.771 0 0 0 0 0 0 0 +0.29 -5.891 -1.766 0 0 0 0 0 0 0 +0.31 -5.917 -1.774 0 0 0 0 0 0 0 +0.328 -5.905 -1.771 0 0 0 0 0 0 0 +0.346 -5.898 -1.769 0 0 0 0 0 0 0 +0.356 -5.909 -1.773 0 0 0 0 0 0 0 +0.374 -5.908 -1.773 0 0 0 0 0 0 0 +0.392 -5.891 -1.768 0 0 0 0 0 0 0 +0.412 -5.918 -1.777 0 0 0 0 0 0 0 +0.43 -5.896 -1.77 0 0 0 0 0 0 0 +0.449 -5.908 -1.774 0 0 0 0 0 0 0 +0.468 -5.912 -1.776 0 0 0 0 0 0 0 +0.476 -5.898 -1.772 0 0 0 0 0 0 0 +0.495 -5.901 -1.773 0 0 0 0 0 0 0 +0.515 -5.912 -1.777 0 0 0 0 0 0 0 +0.533 -5.901 -1.774 0 0 0 0 0 0 0 +0.55 -5.888 -1.771 0 0 0 0 0 0 0 +0.571 -5.909 -1.778 0 0 0 0 0 0 0 +0.588 -5.898 -1.775 0 0 0 0 0 0 0 +0.606 -5.886 -1.772 0 0 0 0 0 0 0 +0.617 -5.904 -1.778 0 0 0 0 0 0 0 +0.635 -5.895 -1.776 0 0 0 0 0 0 0 +0.653 -5.893 -1.776 0 0 0 0 0 0 0 +0.674 -5.908 -1.781 0 0 0 0 0 0 0 +0.69 -5.889 -1.776 0 0 0 0 0 0 0 +0.71 -5.896 -1.779 0 0 0 0 0 0 0 +0.727 -5.88 -1.774 0 0 0 0 0 0 0 +0.737 -5.891 -1.778 0 0 0 0 0 0 0 +0.756 -5.892 -1.779 0 0 0 0 0 0 0 +0.774 -5.886 -1.778 0 0 0 0 0 0 0 +0.794 -5.889 -1.78 0 0 0 0 0 0 0 +0.814 -5.898 -1.784 0 0 0 0 0 0 0 +0.83 -5.876 -1.777 0 0 0 0 0 0 0 +0.839 -5.879 -1.779 0 0 0 0 0 0 0 +0.855 -5.857 -1.773 0 0 0 0 0 0 0 +2.876 -5.367 -1.827 0 0 0 0 0 0 0 +2.889 -5.349 -1.824 0 0 0 0 0 0 0 +2.917 -5.362 -1.832 0 0 0 0 0 0 0 +2.942 -5.368 -1.837 0 0 0 0 0 0 0 +2.95 -5.342 -1.831 0 0 0 0 0 0 0 +2.962 -5.324 -1.828 0 0 0 0 0 0 0 +2.98 -5.317 -1.829 0 0 0 0 0 0 0 +2.991 -5.317 -1.83 0 0 0 0 0 0 0 +3.002 -5.297 -1.827 0 0 0 0 0 0 0 +3.012 -5.276 -1.823 0 0 0 0 0 0 0 +3.041 -5.288 -1.83 0 0 0 0 0 0 0 +3.049 -5.264 -1.825 0 0 0 0 0 0 0 +3.067 -5.258 -1.826 0 0 0 0 0 0 0 +3.087 -5.253 -1.828 0 0 0 0 0 0 0 +3.094 -5.246 -1.827 0 0 0 0 0 0 0 +3.11 -5.235 -1.827 0 0 0 0 0 0 0 +3.132 -5.235 -1.83 0 0 0 0 0 0 0 +3.146 -5.222 -1.829 0 0 0 0 0 0 0 +3.17 -5.223 -1.834 0 0 0 0 0 0 0 +3.19 -5.22 -1.836 0 0 0 0 0 0 0 +3.199 -5.199 -1.832 0 0 0 0 0 0 0 +3.208 -5.195 -1.832 0 0 0 0 0 0 0 +3.226 -5.187 -1.833 0 0 0 0 0 0 0 +3.237 -5.168 -1.83 0 0 0 0 0 0 0 +3.254 -5.16 -1.83 0 0 0 0 0 0 0 +3.277 -5.159 -1.834 0 0 0 0 0 0 0 +3.295 -5.152 -1.835 0 0 0 0 0 0 0 +3.308 -5.137 -1.834 0 0 0 0 0 0 0 +3.316 -5.132 -1.834 0 0 0 0 0 0 0 +3.33 -5.118 -1.832 0 0 0 0 0 0 0 +3.352 -5.117 -1.836 0 0 0 0 0 0 0 +3.369 -5.108 -1.837 0 0 0 0 0 0 0 +3.381 -5.091 -1.834 0 0 0 0 0 0 0 +3.408 -5.097 -1.84 0 0 0 0 0 0 0 +3.419 -5.079 -1.838 0 0 0 0 0 0 0 +3.43 -5.077 -1.839 0 0 0 0 0 0 0 +3.447 -5.068 -1.84 0 0 0 0 0 0 0 +3.47 -5.068 -1.844 0 0 0 0 0 0 0 +3.484 -5.054 -1.843 0 0 0 0 0 0 0 +3.484 -5.021 -1.834 0 0 0 0 0 0 0 +3.519 -5.037 -1.844 0 0 0 0 0 0 0 +3.524 -5.01 -1.838 0 0 0 0 0 0 0 +3.543 -5.022 -1.845 0 0 0 0 0 0 0 +3.579 -5.039 -1.856 0 0 0 0 0 0 0 +3.589 -5.02 -1.853 0 0 0 0 0 0 0 +3.613 -5.019 -1.857 0 0 0 0 0 0 0 +3.633 -5.014 -1.86 0 0 0 0 0 0 0 +3.64 -4.99 -1.855 0 0 0 0 0 0 0 +3.667 -4.994 -1.861 0 0 0 0 0 0 0 +3.679 -4.995 -1.863 0 0 0 0 0 0 0 +3.687 -4.972 -1.859 0 0 0 0 0 0 0 +3.703 -4.962 -1.86 0 0 0 0 0 0 0 +3.724 -4.957 -1.862 0 0 0 0 0 0 0 +3.73 -4.933 -1.857 0 0 0 0 0 0 0 +3.754 -4.932 -1.862 0 0 0 0 0 0 0 +3.762 -4.911 -1.858 0 0 0 0 0 0 0 +3.767 -4.902 -1.857 0 0 0 0 0 0 0 +3.79 -4.899 -1.86 0 0 0 0 0 0 0 +3.798 -4.878 -1.857 0 0 0 0 0 0 0 +3.805 -4.855 -1.852 0 0 0 0 0 0 0 +3.837 -4.864 -1.861 0 0 0 0 0 0 0 +3.842 -4.839 -1.855 0 0 0 0 0 0 0 +3.858 -4.828 -1.856 0 0 0 0 0 0 0 +3.873 -4.816 -1.856 0 0 0 0 0 0 0 +3.88 -4.809 -1.855 0 0 0 0 0 0 0 +3.892 -4.793 -1.854 0 0 0 0 0 0 0 +3.914 -4.79 -1.858 0 0 0 0 0 0 0 +3.928 -4.776 -1.857 0 0 0 0 0 0 0 +3.947 -4.768 -1.859 0 0 0 0 0 0 0 +3.963 -4.757 -1.86 0 0 0 0 0 0 0 +3.965 -4.729 -1.853 0 0 0 0 0 0 0 +3.978 -4.73 -1.856 0 0 0 0 0 0 0 +3.999 -4.725 -1.859 0 0 0 0 0 0 0 +4.011 -4.709 -1.858 0 0 0 0 0 0 0 +4.026 -4.697 -1.858 0 0 0 0 0 0 0 +4.036 -4.678 -1.855 0 0 0 0 0 0 0 +4.046 -4.66 -1.853 0 0 0 0 0 0 0 +4.068 -4.671 -1.86 0 0 0 0 0 0 0 +4.078 -4.652 -1.858 0 0 0 0 0 0 0 +4.086 -4.632 -1.855 0 0 0 0 0 0 0 +4.1 -4.619 -1.855 0 0 0 0 0 0 0 +4.111 -4.602 -1.853 0 0 0 0 0 0 0 +4.123 -4.586 -1.852 0 0 0 0 0 0 0 +4.141 -4.577 -1.854 0 0 0 0 0 0 0 +4.145 -4.567 -1.852 0 0 0 0 0 0 0 +4.162 -4.556 -1.853 0 0 0 0 0 0 0 +4.168 -4.535 -1.849 0 0 0 0 0 0 0 +4.176 -4.515 -1.846 0 0 0 0 0 0 0 +4.19 -4.502 -1.846 0 0 0 0 0 0 0 +4.195 -4.479 -1.842 0 0 0 0 0 0 0 +4.218 -4.475 -1.846 0 0 0 0 0 0 0 +4.217 -4.46 -1.843 0 0 0 0 0 0 0 +4.235 -4.451 -1.844 0 0 0 0 0 0 0 +4.244 -4.432 -1.842 0 0 0 0 0 0 0 +4.257 -4.418 -1.841 0 0 0 0 0 0 0 +4.272 -4.405 -1.842 0 0 0 0 0 0 0 +4.288 -4.395 -1.843 0 0 0 0 0 0 0 +4.298 -4.377 -1.841 0 0 0 0 0 0 0 +4.313 -4.365 -1.842 0 0 0 0 0 0 0 +4.308 -4.346 -1.837 0 0 0 0 0 0 0 +4.332 -4.343 -1.841 0 0 0 0 0 0 0 +4.35 -4.334 -1.843 0 0 0 0 0 0 0 +4.36 -4.316 -1.841 0 0 0 0 0 0 0 +4.365 -4.294 -1.838 0 0 0 0 0 0 0 +4.384 -4.286 -1.84 0 0 0 0 0 0 0 +4.399 -4.273 -1.841 0 0 0 0 0 0 0 +4.399 -4.26 -1.838 0 0 0 0 0 0 0 +4.416 -4.25 -1.84 0 0 0 0 0 0 0 +4.44 -4.247 -1.844 0 0 0 0 0 0 0 +4.44 -4.219 -1.838 0 0 0 0 0 0 0 +4.452 -4.204 -1.838 0 0 0 0 0 0 0 +4.458 -4.184 -1.835 0 0 0 0 0 0 0 +4.473 -4.171 -1.835 0 0 0 0 0 0 0 +4.474 -4.159 -1.833 0 0 0 0 0 0 0 +4.492 -4.15 -1.835 0 0 0 0 0 0 0 +4.507 -4.137 -1.836 0 0 0 0 0 0 0 +4.52 -4.123 -1.836 0 0 0 0 0 0 0 +4.524 -4.101 -1.832 0 0 0 0 0 0 0 +4.537 -4.087 -1.832 0 0 0 0 0 0 0 +4.542 -4.078 -1.832 0 0 0 0 0 0 0 +4.555 -4.064 -1.832 0 0 0 0 0 0 0 +4.57 -4.052 -1.833 0 0 0 0 0 0 0 +4.573 -4.029 -1.829 0 0 0 0 0 0 0 +4.591 -4.02 -1.831 0 0 0 0 0 0 0 +4.603 -4.004 -1.83 0 0 0 0 0 0 0 +4.621 -3.994 -1.833 0 0 0 0 0 0 0 +4.629 -3.976 -1.831 0 0 0 0 0 0 0 +4.63 -3.964 -1.829 0 0 0 0 0 0 0 +4.651 -3.957 -1.832 0 0 0 0 0 0 0 +4.651 -3.932 -1.827 0 0 0 0 0 0 0 +4.665 -3.919 -1.828 0 0 0 0 0 0 0 +4.676 -3.903 -1.827 0 0 0 0 0 0 0 +4.696 -3.894 -1.83 0 0 0 0 0 0 0 +4.711 -3.882 -1.832 0 0 0 0 0 0 0 +4.711 -3.87 -1.829 0 0 0 0 0 0 0 +4.726 -3.857 -1.83 0 0 0 0 0 0 0 +4.728 -3.834 -1.826 0 0 0 0 0 0 0 +4.737 -3.817 -1.825 0 0 0 0 0 0 0 +4.753 -3.805 -1.827 0 0 0 0 0 0 0 +4.77 -3.794 -1.829 0 0 0 0 0 0 0 +4.783 -3.78 -1.829 0 0 0 0 0 0 0 +4.785 -3.769 -1.827 0 0 0 0 0 0 0 +4.789 -3.748 -1.824 0 0 0 0 0 0 0 +4.802 -3.734 -1.825 0 0 0 0 0 0 0 +4.817 -3.722 -1.826 0 0 0 0 0 0 0 +4.829 -3.706 -1.826 0 0 0 0 0 0 0 +4.833 -3.685 -1.823 0 0 0 0 0 0 0 +4.841 -3.668 -1.822 0 0 0 0 0 0 0 +4.853 -3.665 -1.824 0 0 0 0 0 0 0 +4.857 -3.644 -1.821 0 0 0 0 0 0 0 +4.876 -3.634 -1.824 0 0 0 0 0 0 0 +4.886 -3.618 -1.824 0 0 0 0 0 0 0 +4.894 -3.6 -1.823 0 0 0 0 0 0 0 +4.905 -3.585 -1.823 0 0 0 0 0 0 0 +4.903 -3.571 -1.819 0 0 0 0 0 0 0 +4.918 -3.558 -1.821 0 0 0 0 0 0 0 +4.933 -3.546 -1.823 0 0 0 0 0 0 0 +4.948 -3.533 -1.824 0 0 0 0 0 0 0 +4.954 -3.514 -1.822 0 0 0 0 0 0 0 +4.966 -3.5 -1.823 0 0 0 0 0 0 0 +4.981 -3.486 -1.824 0 0 0 0 0 0 0 +4.974 -3.458 -1.817 0 0 0 0 0 0 0 +4.999 -3.464 -1.824 0 0 0 0 0 0 0 +4.998 -3.44 -1.82 0 0 0 0 0 0 0 +5.008 -3.424 -1.819 0 0 0 0 0 0 0 +5.02 -3.409 -1.82 0 0 0 0 0 0 0 +5.031 -3.393 -1.82 0 0 0 0 0 0 0 +5.025 -3.367 -1.814 0 0 0 0 0 0 0 +5.055 -3.364 -1.821 0 0 0 0 0 0 0 +5.054 -3.351 -1.819 0 0 0 0 0 0 0 +5.057 -3.33 -1.816 0 0 0 0 0 0 0 +5.056 -3.307 -1.812 0 0 0 0 0 0 0 +5.074 -3.296 -1.815 0 0 0 0 0 0 0 +5.077 -3.275 -1.812 0 0 0 0 0 0 0 +5.079 -3.254 -1.809 0 0 0 0 0 0 0 +5.075 -3.229 -1.803 0 0 0 0 0 0 0 +5.078 -3.22 -1.802 0 0 0 0 0 0 0 +5.096 -3.209 -1.805 0 0 0 0 0 0 0 +5.085 -3.18 -1.798 0 0 0 0 0 0 0 +5.103 -3.169 -1.801 0 0 0 0 0 0 0 +5.112 -3.152 -1.8 0 0 0 0 0 0 0 +5.107 -3.127 -1.795 0 0 0 0 0 0 0 +5.113 -3.109 -1.793 0 0 0 0 0 0 0 +5.122 -3.102 -1.795 0 0 0 0 0 0 0 +5.126 -3.083 -1.793 0 0 0 0 0 0 0 +5.125 -3.06 -1.788 0 0 0 0 0 0 0 +5.144 -3.05 -1.792 0 0 0 0 0 0 0 +5.16 -3.038 -1.795 0 0 0 0 0 0 0 +5.157 -3.014 -1.79 0 0 0 0 0 0 0 +5.168 -2.999 -1.79 0 0 0 0 0 0 0 +5.169 -2.989 -1.789 0 0 0 0 0 0 0 +5.185 -2.976 -1.791 0 0 0 0 0 0 0 +5.188 -2.956 -1.789 0 0 0 0 0 0 0 +5.197 -2.94 -1.789 0 0 0 0 0 0 0 +5.195 -2.917 -1.785 0 0 0 0 0 0 0 +5.202 -2.9 -1.784 0 0 0 0 0 0 0 +5.219 -2.888 -1.787 0 0 0 0 0 0 0 +5.224 -2.88 -1.787 0 0 0 0 0 0 0 +5.228 -2.86 -1.785 0 0 0 0 0 0 0 +5.234 -2.842 -1.784 0 0 0 0 0 0 0 +5.238 -2.823 -1.782 0 0 0 0 0 0 0 +5.25 -2.808 -1.784 0 0 0 0 0 0 0 +5.267 -2.796 -1.787 0 0 0 0 0 0 0 +5.267 -2.775 -1.784 0 0 0 0 0 0 0 +5.275 -2.769 -1.785 0 0 0 0 0 0 0 +5.275 -2.748 -1.782 0 0 0 0 0 0 0 +5.287 -2.733 -1.783 0 0 0 0 0 0 0 +5.303 -2.72 -1.785 0 0 0 0 0 0 0 +5.303 -2.699 -1.782 0 0 0 0 0 0 0 +5.314 -2.684 -1.784 0 0 0 0 0 0 0 +5.319 -2.665 -1.782 0 0 0 0 0 0 0 +5.32 -2.655 -1.781 0 0 0 0 0 0 0 +5.327 -2.638 -1.781 0 0 0 0 0 0 0 +5.337 -2.622 -1.781 0 0 0 0 0 0 0 +5.345 -2.605 -1.781 0 0 0 0 0 0 0 +5.351 -2.587 -1.781 0 0 0 0 0 0 0 +5.354 -2.568 -1.779 0 0 0 0 0 0 0 +5.356 -2.548 -1.776 0 0 0 0 0 0 0 +5.365 -2.542 -1.778 0 0 0 0 0 0 0 +5.361 -2.519 -1.774 0 0 0 0 0 0 0 +5.377 -2.507 -1.777 0 0 0 0 0 0 0 +5.387 -2.491 -1.777 0 0 0 0 0 0 0 +5.386 -2.47 -1.774 0 0 0 0 0 0 0 +5.38 -2.446 -1.77 0 0 0 0 0 0 0 +5.405 -2.437 -1.776 0 0 0 0 0 0 0 +5.407 -2.428 -1.775 0 0 0 0 0 0 0 +5.409 -2.409 -1.773 0 0 0 0 0 0 0 +5.422 -2.394 -1.775 0 0 0 0 0 0 0 +5.424 -2.375 -1.773 0 0 0 0 0 0 0 +5.433 -2.358 -1.774 0 0 0 0 0 0 0 +5.437 -2.34 -1.773 0 0 0 0 0 0 0 +5.438 -2.32 -1.77 0 0 0 0 0 0 0 +5.445 -2.313 -1.771 0 0 0 0 0 0 0 +5.449 -2.294 -1.77 0 0 0 0 0 0 0 +5.456 -2.277 -1.77 0 0 0 0 0 0 0 +5.456 -2.257 -1.768 0 0 0 0 0 0 0 +5.473 -2.244 -1.771 0 0 0 0 0 0 0 +5.459 -2.218 -1.764 0 0 0 0 0 0 0 +5.486 -2.209 -1.771 0 0 0 0 0 0 0 +5.48 -2.197 -1.768 0 0 0 0 0 0 0 +5.487 -2.179 -1.768 0 0 0 0 0 0 0 +5.49 -2.161 -1.767 0 0 0 0 0 0 0 +5.495 -2.143 -1.766 0 0 0 0 0 0 0 +5.507 -2.128 -1.768 0 0 0 0 0 0 0 +5.519 -2.112 -1.77 0 0 0 0 0 0 0 +5.514 -2.09 -1.765 0 0 0 0 0 0 0 +5.52 -2.083 -1.767 0 0 0 0 0 0 0 +5.525 -2.065 -1.766 0 0 0 0 0 0 0 +5.53 -2.047 -1.765 0 0 0 0 0 0 0 +5.529 -2.027 -1.763 0 0 0 0 0 0 0 +5.541 -2.011 -1.765 0 0 0 0 0 0 0 +5.552 -1.996 -1.767 0 0 0 0 0 0 0 +5.553 -1.977 -1.765 0 0 0 0 0 0 0 +5.565 -1.971 -1.768 0 0 0 0 0 0 0 +5.557 -1.948 -1.763 0 0 0 0 0 0 0 +5.563 -1.931 -1.763 0 0 0 0 0 0 0 +5.569 -1.914 -1.763 0 0 0 0 0 0 0 +5.579 -1.897 -1.764 0 0 0 0 0 0 0 +5.583 -1.879 -1.763 0 0 0 0 0 0 0 +5.594 -1.863 -1.765 0 0 0 0 0 0 0 +5.595 -1.854 -1.765 0 0 0 0 0 0 0 +5.601 -1.836 -1.765 0 0 0 0 0 0 0 +5.609 -1.819 -1.765 0 0 0 0 0 0 0 +5.607 -1.799 -1.763 0 0 0 0 0 0 0 +5.617 -1.783 -1.764 0 0 0 0 0 0 0 +5.609 -1.761 -1.76 0 0 0 0 0 0 0 +5.617 -1.744 -1.76 0 0 0 0 0 0 0 +5.614 -1.734 -1.759 0 0 0 0 0 0 0 +5.63 -1.719 -1.762 0 0 0 0 0 0 0 +5.634 -1.701 -1.762 0 0 0 0 0 0 0 +5.639 -1.683 -1.762 0 0 0 0 0 0 0 +5.639 -1.664 -1.76 0 0 0 0 0 0 0 +5.644 -1.646 -1.76 0 0 0 0 0 0 0 +5.651 -1.629 -1.76 0 0 0 0 0 0 0 +5.657 -1.621 -1.762 0 0 0 0 0 0 0 +5.646 -1.599 -1.756 0 0 0 0 0 0 0 +5.658 -1.583 -1.759 0 0 0 0 0 0 0 +5.671 -1.567 -1.761 0 0 0 0 0 0 0 +5.664 -1.547 -1.757 0 0 0 0 0 0 0 +5.678 -1.531 -1.76 0 0 0 0 0 0 0 +5.683 -1.513 -1.76 0 0 0 0 0 0 0 +5.662 -1.498 -1.752 0 0 0 0 0 0 0 +5.685 -1.485 -1.759 0 0 0 0 0 0 0 +5.684 -1.466 -1.757 0 0 0 0 0 0 0 +5.685 -1.447 -1.756 0 0 0 0 0 0 0 +5.699 -1.432 -1.759 0 0 0 0 0 0 0 +5.697 -1.412 -1.757 0 0 0 0 0 0 0 +5.696 -1.393 -1.755 0 0 0 0 0 0 0 +5.698 -1.384 -1.755 0 0 0 0 0 0 0 +5.703 -1.366 -1.755 0 0 0 0 0 0 0 +5.702 -1.347 -1.753 0 0 0 0 0 0 0 +5.696 -1.327 -1.75 0 0 0 0 0 0 0 +5.706 -1.31 -1.752 0 0 0 0 0 0 0 +5.72 -1.294 -1.755 0 0 0 0 0 0 0 +5.729 -1.278 -1.757 0 0 0 0 0 0 0 +5.728 -1.258 -1.755 0 0 0 0 0 0 0 +5.722 -1.248 -1.752 0 0 0 0 0 0 0 +5.732 -1.231 -1.754 0 0 0 0 0 0 0 +5.743 -1.215 -1.757 0 0 0 0 0 0 0 +5.737 -1.194 -1.754 0 0 0 0 0 0 0 +5.743 -1.177 -1.754 0 0 0 0 0 0 0 +5.741 -1.158 -1.752 0 0 0 0 0 0 0 +5.745 -1.14 -1.752 0 0 0 0 0 0 0 +5.752 -1.132 -1.754 0 0 0 0 0 0 0 +5.75 -1.113 -1.752 0 0 0 0 0 0 0 +5.746 -1.093 -1.75 0 0 0 0 0 0 0 +5.749 -1.075 -1.75 0 0 0 0 0 0 0 +5.745 -1.055 -1.748 0 0 0 0 0 0 0 +5.762 -1.04 -1.752 0 0 0 0 0 0 0 +5.752 -1.029 -1.748 0 0 0 0 0 0 0 +5.765 -1.012 -1.751 0 0 0 0 0 0 0 +5.756 -0.992 -1.748 0 0 0 0 0 0 0 +5.754 -0.973 -1.746 0 0 0 0 0 0 0 +5.761 -0.956 -1.747 0 0 0 0 0 0 0 +5.76 -0.937 -1.746 0 0 0 0 0 0 0 +5.753 -0.917 -1.743 0 0 0 0 0 0 0 +5.766 -0.901 -1.746 0 0 0 0 0 0 0 +5.76 -0.891 -1.743 0 0 0 0 0 0 0 +5.77 -0.874 -1.746 0 0 0 0 0 0 0 +5.759 -0.853 -1.742 0 0 0 0 0 0 0 +5.764 -0.836 -1.742 0 0 0 0 0 0 0 +5.774 -0.819 -1.745 0 0 0 0 0 0 0 +5.775 -0.8 -1.744 0 0 0 0 0 0 0 +5.781 -0.783 -1.745 0 0 0 0 0 0 0 +5.769 -0.772 -1.741 0 0 0 0 0 0 0 +5.771 -0.754 -1.741 0 0 0 0 0 0 0 +5.779 -0.736 -1.743 0 0 0 0 0 0 0 +5.784 -0.718 -1.743 0 0 0 0 0 0 0 +5.784 -0.7 -1.743 0 0 0 0 0 0 0 +5.775 -0.68 -1.739 0 0 0 0 0 0 0 +5.781 -0.663 -1.74 0 0 0 0 0 0 0 +5.789 -0.654 -1.743 0 0 0 0 0 0 0 +5.787 -0.636 -1.742 0 0 0 0 0 0 0 +5.787 -0.617 -1.741 0 0 0 0 0 0 0 +5.782 -0.598 -1.738 0 0 0 0 0 0 0 +5.787 -0.581 -1.74 0 0 0 0 0 0 0 +5.78 -0.561 -1.737 0 0 0 0 0 0 0 +5.791 -0.544 -1.74 0 0 0 0 0 0 0 +5.79 -0.535 -1.739 0 0 0 0 0 0 0 +5.788 -0.516 -1.738 0 0 0 0 0 0 0 +5.803 -0.499 -1.742 0 0 0 0 0 0 0 +5.799 -0.481 -1.74 0 0 0 0 0 0 0 +5.806 -0.463 -1.742 0 0 0 0 0 0 0 +5.788 -0.443 -1.736 0 0 0 0 0 0 0 +5.791 -0.425 -1.737 0 0 0 0 0 0 0 +5.792 -0.416 -1.737 0 0 0 0 0 0 0 +5.803 -0.399 -1.74 0 0 0 0 0 0 0 +5.808 -0.381 -1.741 0 0 0 0 0 0 0 +5.79 -0.361 -1.735 0 0 0 0 0 0 0 +5.808 -0.344 -1.74 0 0 0 0 0 0 0 +5.807 -0.326 -1.74 0 0 0 0 0 0 0 +5.806 -0.307 -1.739 0 0 0 0 0 0 0 +5.799 -0.298 -1.737 0 0 0 0 0 0 0 +5.798 -0.279 -1.736 0 0 0 0 0 0 0 +5.811 -0.262 -1.74 0 0 0 0 0 0 0 +5.8 -0.243 -1.736 0 0 0 0 0 0 0 +5.814 -0.225 -1.74 0 0 0 0 0 0 0 +5.817 -0.207 -1.741 0 0 0 0 0 0 0 +5.815 -0.189 -1.74 0 0 0 0 0 0 0 +5.808 -0.179 -1.738 0 0 0 0 0 0 0 +5.799 -0.161 -1.735 0 0 0 0 0 0 0 +5.801 -0.143 -1.735 0 0 0 0 0 0 0 +5.798 -0.124 -1.734 0 0 0 0 0 0 0 +5.796 -0.106 -1.734 0 0 0 0 0 0 0 +5.797 -0.088 -1.734 0 0 0 0 0 0 0 +5.81 -0.07 -1.738 0 0 0 0 0 0 0 +5.807 -0.061 -1.737 0 0 0 0 0 0 0 +5.792 -0.042 -1.732 0 0 0 0 0 0 0 +5.792 -0.024 -1.732 0 0 0 0 0 0 0 +5.807 -0.006 -1.737 0 0 0 0 0 0 0 +5.547 0.002 -1.718 0 0 0 0 0 0 0 +5.568 0.02 -1.724 0 0 0 0 0 0 0 +5.553 0.028 -1.719 0 0 0 0 0 0 0 +5.551 0.046 -1.719 0 0 0 0 0 0 0 +5.558 0.063 -1.721 0 0 0 0 0 0 0 +5.558 0.081 -1.721 0 0 0 0 0 0 0 +5.558 0.098 -1.721 0 0 0 0 0 0 0 +5.563 0.116 -1.723 0 0 0 0 0 0 0 +5.553 0.133 -1.72 0 0 0 0 0 0 0 +5.557 0.142 -1.721 0 0 0 0 0 0 0 +5.555 0.159 -1.721 0 0 0 0 0 0 0 +5.55 0.177 -1.719 0 0 0 0 0 0 0 +5.546 0.194 -1.718 0 0 0 0 0 0 0 +5.538 0.211 -1.716 0 0 0 0 0 0 0 +5.548 0.229 -1.719 0 0 0 0 0 0 0 +5.532 0.246 -1.714 0 0 0 0 0 0 0 +5.549 0.255 -1.72 0 0 0 0 0 0 0 +5.543 0.272 -1.718 0 0 0 0 0 0 0 +5.549 0.29 -1.721 0 0 0 0 0 0 0 +5.531 0.307 -1.715 0 0 0 0 0 0 0 +5.549 0.325 -1.721 0 0 0 0 0 0 0 +5.544 0.342 -1.72 0 0 0 0 0 0 0 +5.54 0.359 -1.719 0 0 0 0 0 0 0 +5.535 0.368 -1.718 0 0 0 0 0 0 0 +5.542 0.386 -1.72 0 0 0 0 0 0 0 +5.548 0.404 -1.723 0 0 0 0 0 0 0 +5.552 0.422 -1.724 0 0 0 0 0 0 0 +5.564 0.44 -1.729 0 0 0 0 0 0 0 +5.561 0.458 -1.728 0 0 0 0 0 0 0 +5.542 0.473 -1.723 0 0 0 0 0 0 0 +5.542 0.482 -1.723 0 0 0 0 0 0 0 +5.533 0.499 -1.72 0 0 0 0 0 0 0 +5.531 0.516 -1.72 0 0 0 0 0 0 0 +5.531 0.534 -1.721 0 0 0 0 0 0 0 +5.529 0.551 -1.721 0 0 0 0 0 0 0 +5.516 0.567 -1.717 0 0 0 0 0 0 0 +5.513 0.584 -1.716 0 0 0 0 0 0 0 +5.516 0.594 -1.718 0 0 0 0 0 0 0 +5.508 0.61 -1.716 0 0 0 0 0 0 0 +5.504 0.627 -1.715 0 0 0 0 0 0 0 +5.513 0.646 -1.719 0 0 0 0 0 0 0 +5.508 0.663 -1.718 0 0 0 0 0 0 0 +5.506 0.68 -1.718 0 0 0 0 0 0 0 +5.496 0.696 -1.715 0 0 0 0 0 0 0 +5.494 0.714 -1.715 0 0 0 0 0 0 0 +5.492 0.722 -1.715 0 0 0 0 0 0 0 +5.503 0.741 -1.719 0 0 0 0 0 0 0 +5.493 0.758 -1.717 0 0 0 0 0 0 0 +5.491 0.775 -1.717 0 0 0 0 0 0 0 +5.5 0.794 -1.721 0 0 0 0 0 0 0 +5.488 0.81 -1.718 0 0 0 0 0 0 0 +5.484 0.827 -1.717 0 0 0 0 0 0 0 +5.492 0.837 -1.72 0 0 0 0 0 0 0 +5.485 0.853 -1.719 0 0 0 0 0 0 0 +5.481 0.87 -1.718 0 0 0 0 0 0 0 +5.482 0.888 -1.719 0 0 0 0 0 0 0 +5.479 0.905 -1.719 0 0 0 0 0 0 0 +5.48 0.923 -1.721 0 0 0 0 0 0 0 +5.466 0.938 -1.717 0 0 0 0 0 0 0 +5.468 0.948 -1.718 0 0 0 0 0 0 0 +5.467 0.965 -1.719 0 0 0 0 0 0 0 +5.458 0.981 -1.717 0 0 0 0 0 0 0 +5.468 1.001 -1.721 0 0 0 0 0 0 0 +5.45 1.015 -1.716 0 0 0 0 0 0 0 +5.456 1.034 -1.719 0 0 0 0 0 0 0 +5.451 1.051 -1.719 0 0 0 0 0 0 0 +5.444 1.058 -1.717 0 0 0 0 0 0 0 +5.451 1.078 -1.721 0 0 0 0 0 0 0 +5.444 1.094 -1.719 0 0 0 0 0 0 0 +5.437 1.11 -1.718 0 0 0 0 0 0 0 +5.439 1.129 -1.72 0 0 0 0 0 0 0 +5.441 1.147 -1.722 0 0 0 0 0 0 0 +5.425 1.161 -1.718 0 0 0 0 0 0 0 +5.43 1.171 -1.72 0 0 0 0 0 0 0 +5.428 1.189 -1.721 0 0 0 0 0 0 0 +5.423 1.205 -1.72 0 0 0 0 0 0 0 +5.421 1.223 -1.721 0 0 0 0 0 0 0 +5.417 1.24 -1.721 0 0 0 0 0 0 0 +5.415 1.257 -1.721 0 0 0 0 0 0 0 +5.409 1.274 -1.721 0 0 0 0 0 0 0 +5.409 1.283 -1.721 0 0 0 0 0 0 0 +5.412 1.302 -1.724 0 0 0 0 0 0 0 +5.404 1.318 -1.723 0 0 0 0 0 0 0 +5.384 1.33 -1.717 0 0 0 0 0 0 0 +5.387 1.349 -1.719 0 0 0 0 0 0 0 +5.395 1.37 -1.724 0 0 0 0 0 0 0 +5.385 1.385 -1.722 0 0 0 0 0 0 0 +5.383 1.393 -1.722 0 0 0 0 0 0 0 +5.375 1.409 -1.721 0 0 0 0 0 0 0 +5.382 1.429 -1.724 0 0 0 0 0 0 0 +5.377 1.446 -1.724 0 0 0 0 0 0 0 +5.369 1.462 -1.723 0 0 0 0 0 0 0 +5.359 1.477 -1.721 0 0 0 0 0 0 0 +5.356 1.495 -1.722 0 0 0 0 0 0 0 +5.341 1.499 -1.718 0 0 0 0 0 0 0 +5.345 1.519 -1.721 0 0 0 0 0 0 0 +5.333 1.534 -1.718 0 0 0 0 0 0 0 +5.332 1.551 -1.719 0 0 0 0 0 0 0 +5.334 1.57 -1.722 0 0 0 0 0 0 0 +5.329 1.587 -1.722 0 0 0 0 0 0 0 +5.333 1.607 -1.725 0 0 0 0 0 0 0 +5.329 1.614 -1.724 0 0 0 0 0 0 0 +5.317 1.629 -1.722 0 0 0 0 0 0 0 +5.308 1.644 -1.721 0 0 0 0 0 0 0 +5.312 1.664 -1.724 0 0 0 0 0 0 0 +5.308 1.681 -1.724 0 0 0 0 0 0 0 +5.303 1.698 -1.724 0 0 0 0 0 0 0 +5.296 1.714 -1.724 0 0 0 0 0 0 0 +5.275 1.716 -1.718 0 0 0 0 0 0 0 +5.297 1.742 -1.727 0 0 0 0 0 0 0 +5.286 1.757 -1.725 0 0 0 0 0 0 0 +5.277 1.772 -1.724 0 0 0 0 0 0 0 +5.284 1.793 -1.728 0 0 0 0 0 0 0 +5.28 1.81 -1.729 0 0 0 0 0 0 0 +5.26 1.822 -1.724 0 0 0 0 0 0 0 +5.266 1.833 -1.727 0 0 0 0 0 0 0 +5.253 1.847 -1.724 0 0 0 0 0 0 0 +5.253 1.866 -1.726 0 0 0 0 0 0 0 +5.245 1.881 -1.726 0 0 0 0 0 0 0 +5.251 1.902 -1.73 0 0 0 0 0 0 0 +5.228 1.912 -1.724 0 0 0 0 0 0 0 +5.223 1.929 -1.724 0 0 0 0 0 0 0 +5.21 1.934 -1.721 0 0 0 0 0 0 0 +5.193 1.946 -1.717 0 0 0 0 0 0 0 +5.206 1.97 -1.724 0 0 0 0 0 0 0 +5.2 1.986 -1.724 0 0 0 0 0 0 0 +5.18 1.997 -1.719 0 0 0 0 0 0 0 +5.187 2.019 -1.724 0 0 0 0 0 0 0 +5.178 2.034 -1.723 0 0 0 0 0 0 0 +5.166 2.048 -1.721 0 0 0 0 0 0 0 +5.171 2.059 -1.724 0 0 0 0 0 0 0 +5.16 2.073 -1.722 0 0 0 0 0 0 0 +5.143 2.085 -1.718 0 0 0 0 0 0 0 +5.148 2.107 -1.723 0 0 0 0 0 0 0 +5.138 2.121 -1.721 0 0 0 0 0 0 0 +5.126 2.135 -1.719 0 0 0 0 0 0 0 +5.132 2.147 -1.723 0 0 0 0 0 0 0 +5.121 2.162 -1.721 0 0 0 0 0 0 0 +5.12 2.18 -1.723 0 0 0 0 0 0 0 +5.109 2.194 -1.722 0 0 0 0 0 0 0 +5.101 2.21 -1.721 0 0 0 0 0 0 0 +5.089 2.223 -1.719 0 0 0 0 0 0 0 +5.085 2.241 -1.721 0 0 0 0 0 0 0 +5.087 2.251 -1.723 0 0 0 0 0 0 0 +5.081 2.268 -1.723 0 0 0 0 0 0 0 +5.067 2.281 -1.721 0 0 0 0 0 0 0 +5.06 2.297 -1.721 0 0 0 0 0 0 0 +5.06 2.316 -1.723 0 0 0 0 0 0 0 +5.049 2.33 -1.722 0 0 0 0 0 0 0 +5.048 2.349 -1.724 0 0 0 0 0 0 0 +5.05 2.359 -1.726 0 0 0 0 0 0 0 +5.031 2.37 -1.722 0 0 0 0 0 0 0 +5.035 2.391 -1.726 0 0 0 0 0 0 0 +5.022 2.404 -1.724 0 0 0 0 0 0 0 +5.013 2.419 -1.724 0 0 0 0 0 0 0 +4.999 2.432 -1.721 0 0 0 0 0 0 0 +4.994 2.449 -1.723 0 0 0 0 0 0 0 +4.985 2.464 -1.722 0 0 0 0 0 0 0 +4.981 2.472 -1.722 0 0 0 0 0 0 0 +4.963 2.482 -1.718 0 0 0 0 0 0 0 +4.969 2.505 -1.723 0 0 0 0 0 0 0 +4.958 2.519 -1.722 0 0 0 0 0 0 0 +4.945 2.532 -1.72 0 0 0 0 0 0 0 +4.937 2.547 -1.72 0 0 0 0 0 0 0 +4.922 2.559 -1.718 0 0 0 0 0 0 0 +4.921 2.569 -1.719 0 0 0 0 0 0 0 +4.915 2.585 -1.719 0 0 0 0 0 0 0 +4.905 2.599 -1.719 0 0 0 0 0 0 0 +4.882 2.607 -1.713 0 0 0 0 0 0 0 +4.883 2.628 -1.717 0 0 0 0 0 0 0 +4.874 2.642 -1.716 0 0 0 0 0 0 0 +4.866 2.648 -1.715 0 0 0 0 0 0 0 +4.853 2.66 -1.713 0 0 0 0 0 0 0 +4.853 2.68 -1.716 0 0 0 0 0 0 0 +4.843 2.694 -1.716 0 0 0 0 0 0 0 +4.837 2.712 -1.717 0 0 0 0 0 0 0 +4.821 2.722 -1.714 0 0 0 0 0 0 0 +4.817 2.74 -1.716 0 0 0 0 0 0 0 +4.803 2.742 -1.712 0 0 0 0 0 0 0 +4.807 2.765 -1.717 0 0 0 0 0 0 0 +4.789 2.774 -1.713 0 0 0 0 0 0 0 +4.783 2.791 -1.714 0 0 0 0 0 0 0 +4.76 2.797 -1.709 0 0 0 0 0 0 0 +4.759 2.817 -1.712 0 0 0 0 0 0 0 +4.755 2.835 -1.714 0 0 0 0 0 0 0 +4.751 2.842 -1.714 0 0 0 0 0 0 0 +4.743 2.858 -1.714 0 0 0 0 0 0 0 +4.729 2.87 -1.712 0 0 0 0 0 0 0 +4.717 2.883 -1.711 0 0 0 0 0 0 0 +4.702 2.894 -1.709 0 0 0 0 0 0 0 +4.694 2.909 -1.709 0 0 0 0 0 0 0 +4.691 2.928 -1.712 0 0 0 0 0 0 0 +4.674 2.928 -1.707 0 0 0 0 0 0 0 +4.668 2.944 -1.708 0 0 0 0 0 0 0 +4.657 2.958 -1.707 0 0 0 0 0 0 0 +4.653 2.976 -1.709 0 0 0 0 0 0 0 +4.643 2.99 -1.709 0 0 0 0 0 0 0 +4.632 3.004 -1.709 0 0 0 0 0 0 0 +4.62 3.016 -1.707 0 0 0 0 0 0 0 +4.616 3.024 -1.708 0 0 0 0 0 0 0 +4.607 3.039 -1.708 0 0 0 0 0 0 0 +4.604 3.058 -1.711 0 0 0 0 0 0 0 +4.585 3.066 -1.707 0 0 0 0 0 0 0 +4.576 3.081 -1.707 0 0 0 0 0 0 0 +4.57 3.098 -1.709 0 0 0 0 0 0 0 +4.563 3.114 -1.71 0 0 0 0 0 0 0 +4.552 3.127 -1.709 0 0 0 0 0 0 0 +4.552 3.138 -1.711 0 0 0 0 0 0 0 +4.54 3.151 -1.711 0 0 0 0 0 0 0 +4.535 3.168 -1.712 0 0 0 0 0 0 0 +4.528 3.185 -1.714 0 0 0 0 0 0 0 +4.52 3.2 -1.714 0 0 0 0 0 0 0 +4.508 3.213 -1.714 0 0 0 0 0 0 0 +4.495 3.225 -1.712 0 0 0 0 0 0 0 +4.488 3.231 -1.712 0 0 0 0 0 0 0 +4.49 3.254 -1.717 0 0 0 0 0 0 0 +4.474 3.264 -1.714 0 0 0 0 0 0 0 +4.467 3.28 -1.716 0 0 0 0 0 0 0 +4.459 3.296 -1.717 0 0 0 0 0 0 0 +4.452 3.313 -1.718 0 0 0 0 0 0 0 +4.445 3.319 -1.718 0 0 0 0 0 0 0 +4.438 3.335 -1.719 0 0 0 0 0 0 0 +4.427 3.349 -1.719 0 0 0 0 0 0 0 +4.417 3.363 -1.719 0 0 0 0 0 0 0 +4.409 3.379 -1.72 0 0 0 0 0 0 0 +4.406 3.398 -1.723 0 0 0 0 0 0 0 +4.385 3.404 -1.719 0 0 0 0 0 0 0 +4.374 3.406 -1.716 0 0 0 0 0 0 0 +4.37 3.426 -1.719 0 0 0 0 0 0 0 +4.36 3.44 -1.719 0 0 0 0 0 0 0 +4.346 3.451 -1.718 0 0 0 0 0 0 0 +4.336 3.466 -1.719 0 0 0 0 0 0 0 +4.334 3.487 -1.723 0 0 0 0 0 0 0 +4.32 3.498 -1.721 0 0 0 0 0 0 0 +4.311 3.501 -1.719 0 0 0 0 0 0 0 +4.301 3.516 -1.72 0 0 0 0 0 0 0 +4.296 3.534 -1.723 0 0 0 0 0 0 0 +4.276 3.54 -1.719 0 0 0 0 0 0 0 +4.268 3.556 -1.72 0 0 0 0 0 0 0 +4.258 3.571 -1.721 0 0 0 0 0 0 0 +4.247 3.584 -1.721 0 0 0 0 0 0 0 +4.235 3.597 -1.721 0 0 0 0 0 0 0 +4.233 3.606 -1.722 0 0 0 0 0 0 0 +4.217 3.616 -1.72 0 0 0 0 0 0 0 +4.204 3.628 -1.719 0 0 0 0 0 0 0 +4.204 3.651 -1.724 0 0 0 0 0 0 0 +4.188 3.661 -1.723 0 0 0 0 0 0 0 +4.177 3.674 -1.723 0 0 0 0 0 0 0 +4.168 3.689 -1.724 0 0 0 0 0 0 0 +4.159 3.693 -1.723 0 0 0 0 0 0 0 +4.146 3.705 -1.722 0 0 0 0 0 0 0 +4.139 3.722 -1.724 0 0 0 0 0 0 0 +4.123 3.731 -1.722 0 0 0 0 0 0 0 +4.116 3.748 -1.724 0 0 0 0 0 0 0 +4.1 3.757 -1.722 0 0 0 0 0 0 0 +4.088 3.77 -1.722 0 0 0 0 0 0 0 +4.085 3.779 -1.723 0 0 0 0 0 0 0 +4.074 3.793 -1.724 0 0 0 0 0 0 0 +4.062 3.806 -1.724 0 0 0 0 0 0 0 +4.05 3.818 -1.724 0 0 0 0 0 0 0 +4.049 3.842 -1.729 0 0 0 0 0 0 0 +4.04 3.857 -1.73 0 0 0 0 0 0 0 +4.017 3.859 -1.725 0 0 0 0 0 0 0 +4.017 3.872 -1.728 0 0 0 0 0 0 0 +3.994 3.874 -1.723 0 0 0 0 0 0 0 +3.984 3.888 -1.724 0 0 0 0 0 0 0 +3.981 3.91 -1.728 0 0 0 0 0 0 0 +3.964 3.918 -1.726 0 0 0 0 0 0 0 +3.948 3.927 -1.724 0 0 0 0 0 0 0 +3.933 3.936 -1.723 0 0 0 0 0 0 0 +3.92 3.936 -1.72 0 0 0 0 0 0 0 +3.918 3.959 -1.725 0 0 0 0 0 0 0 +3.917 3.982 -1.73 0 0 0 0 0 0 0 +3.883 3.972 -1.72 0 0 0 0 0 0 0 +3.869 3.983 -1.719 0 0 0 0 0 0 0 +3.867 4.006 -1.724 0 0 0 0 0 0 0 +3.84 4.003 -1.718 0 0 0 0 0 0 0 +3.85 4.026 -1.725 0 0 0 0 0 0 0 +3.837 4.038 -1.725 0 0 0 0 0 0 0 +3.803 4.028 -1.715 0 0 0 0 0 0 0 +3.813 4.063 -1.726 0 0 0 0 0 0 0 +3.788 4.063 -1.72 0 0 0 0 0 0 0 +3.773 4.072 -1.719 0 0 0 0 0 0 0 +3.769 4.094 -1.723 0 0 0 0 0 0 0 +3.756 4.092 -1.72 0 0 0 0 0 0 0 +3.738 4.099 -1.718 0 0 0 0 0 0 0 +3.736 4.122 -1.723 0 0 0 0 0 0 0 +3.723 4.133 -1.723 0 0 0 0 0 0 0 +3.7 4.134 -1.718 0 0 0 0 0 0 0 +3.69 4.15 -1.719 0 0 0 0 0 0 0 +3.685 4.17 -1.723 0 0 0 0 0 0 0 +3.667 4.163 -1.718 0 0 0 0 0 0 0 +3.655 4.176 -1.718 0 0 0 0 0 0 0 +3.642 4.187 -1.718 0 0 0 0 0 0 0 +3.63 4.2 -1.719 0 0 0 0 0 0 0 +3.616 4.21 -1.718 0 0 0 0 0 0 0 +3.604 4.223 -1.719 0 0 0 0 0 0 0 +3.59 4.234 -1.719 0 0 0 0 0 0 0 +3.581 4.237 -1.718 0 0 0 0 0 0 0 +3.561 4.239 -1.714 0 0 0 0 0 0 0 +3.553 4.258 -1.717 0 0 0 0 0 0 0 +3.548 4.279 -1.721 0 0 0 0 0 0 0 +3.526 4.28 -1.717 0 0 0 0 0 0 0 +3.508 4.285 -1.714 0 0 0 0 0 0 0 +3.498 4.3 -1.716 0 0 0 0 0 0 0 +3.492 4.306 -1.716 0 0 0 0 0 0 0 +3.474 4.312 -1.714 0 0 0 0 0 0 0 +3.462 4.325 -1.715 0 0 0 0 0 0 0 +3.454 4.343 -1.718 0 0 0 0 0 0 0 +3.431 4.342 -1.713 0 0 0 0 0 0 0 +3.421 4.357 -1.715 0 0 0 0 0 0 0 +3.41 4.371 -1.716 0 0 0 0 0 0 0 +3.394 4.379 -1.715 0 0 0 0 0 0 0 +3.388 4.385 -1.716 0 0 0 0 0 0 0 +3.374 4.396 -1.716 0 0 0 0 0 0 0 +3.362 4.408 -1.716 0 0 0 0 0 0 0 +3.339 4.407 -1.711 0 0 0 0 0 0 0 +3.33 4.425 -1.714 0 0 0 0 0 0 0 +3.316 4.435 -1.714 0 0 0 0 0 0 0 +3.308 4.453 -1.718 0 0 0 0 0 0 0 +3.295 4.451 -1.714 0 0 0 0 0 0 0 +3.28 4.459 -1.714 0 0 0 0 0 0 0 +3.271 4.476 -1.716 0 0 0 0 0 0 0 +3.256 4.485 -1.716 0 0 0 0 0 0 0 +3.245 4.499 -1.718 0 0 0 0 0 0 0 +3.23 4.508 -1.717 0 0 0 0 0 0 0 +3.221 4.512 -1.716 0 0 0 0 0 0 0 +3.204 4.517 -1.714 0 0 0 0 0 0 0 +3.199 4.541 -1.72 0 0 0 0 0 0 0 +3.181 4.545 -1.718 0 0 0 0 0 0 0 +3.168 4.556 -1.718 0 0 0 0 0 0 0 +3.151 4.563 -1.717 0 0 0 0 0 0 0 +3.141 4.579 -1.719 0 0 0 0 0 0 0 +3.135 4.586 -1.72 0 0 0 0 0 0 0 +3.116 4.589 -1.718 0 0 0 0 0 0 0 +3.111 4.613 -1.723 0 0 0 0 0 0 0 +3.092 4.615 -1.72 0 0 0 0 0 0 0 +3.08 4.63 -1.722 0 0 0 0 0 0 0 +3.063 4.634 -1.72 0 0 0 0 0 0 0 +3.048 4.644 -1.72 0 0 0 0 0 0 0 +3.032 4.652 -1.719 0 0 0 0 0 0 0 +3.034 4.671 -1.725 0 0 0 0 0 0 0 +3.02 4.681 -1.725 0 0 0 0 0 0 0 +3.002 4.685 -1.723 0 0 0 0 0 0 0 +2.998 4.712 -1.73 0 0 0 0 0 0 0 +2.979 4.715 -1.728 0 0 0 0 0 0 0 +2.96 4.717 -1.724 0 0 0 0 0 0 0 +2.951 4.736 -1.728 0 0 0 0 0 0 0 +2.942 4.739 -1.728 0 0 0 0 0 0 0 +2.927 4.748 -1.728 0 0 0 0 0 0 0 +2.915 4.762 -1.729 0 0 0 0 0 0 0 +2.901 4.773 -1.73 0 0 0 0 0 0 0 +2.884 4.778 -1.729 0 0 0 0 0 0 0 +2.871 4.791 -1.73 0 0 0 0 0 0 0 +2.858 4.803 -1.731 0 0 0 0 0 0 0 +2.838 4.804 -1.728 0 0 0 0 0 0 0 +2.839 4.823 -1.734 0 0 0 0 0 0 0 +2.819 4.824 -1.731 0 0 0 0 0 0 0 +2.803 4.831 -1.73 0 0 0 0 0 0 0 +2.793 4.848 -1.733 0 0 0 0 0 0 0 +2.777 4.855 -1.733 0 0 0 0 0 0 0 +2.764 4.869 -1.734 0 0 0 0 0 0 0 +2.757 4.875 -1.735 0 0 0 0 0 0 0 +2.738 4.875 -1.732 0 0 0 0 0 0 0 +2.722 4.884 -1.732 0 0 0 0 0 0 0 +2.701 4.882 -1.728 0 0 0 0 0 0 0 +2.689 4.896 -1.73 0 0 0 0 0 0 0 +2.683 4.922 -1.737 0 0 0 0 0 0 0 +2.669 4.932 -1.738 0 0 0 0 0 0 0 +2.65 4.936 -1.736 0 0 0 0 0 0 0 +2.64 4.935 -1.734 0 0 0 0 0 0 0 +2.621 4.936 -1.731 0 0 0 0 0 0 0 +2.605 4.943 -1.731 0 0 0 0 0 0 0 +2.586 4.944 -1.728 0 0 0 0 0 0 0 +2.573 4.958 -1.73 0 0 0 0 0 0 0 +2.554 4.961 -1.728 0 0 0 0 0 0 0 +2.541 4.974 -1.73 0 0 0 0 0 0 0 +2.534 4.979 -1.731 0 0 0 0 0 0 0 +2.518 4.986 -1.73 0 0 0 0 0 0 0 +2.502 4.993 -1.73 0 0 0 0 0 0 0 +2.485 4.998 -1.729 0 0 0 0 0 0 0 +2.463 4.992 -1.724 0 0 0 0 0 0 0 +2.45 5.007 -1.726 0 0 0 0 0 0 0 +2.434 5.013 -1.726 0 0 0 0 0 0 0 +2.428 5.021 -1.728 0 0 0 0 0 0 0 +2.41 5.024 -1.726 0 0 0 0 0 0 0 +2.397 5.038 -1.728 0 0 0 0 0 0 0 +2.378 5.039 -1.726 0 0 0 0 0 0 0 +2.362 5.045 -1.725 0 0 0 0 0 0 0 +2.343 5.045 -1.723 0 0 0 0 0 0 0 +2.324 5.047 -1.721 0 0 0 0 0 0 0 +2.319 5.056 -1.723 0 0 0 0 0 0 0 +2.304 5.065 -1.723 0 0 0 0 0 0 0 +2.285 5.065 -1.721 0 0 0 0 0 0 0 +2.266 5.066 -1.718 0 0 0 0 0 0 0 +2.252 5.078 -1.72 0 0 0 0 0 0 0 +2.233 5.078 -1.718 0 0 0 0 0 0 0 +2.222 5.096 -1.721 0 0 0 0 0 0 0 +2.215 5.102 -1.723 0 0 0 0 0 0 0 +2.198 5.106 -1.721 0 0 0 0 0 0 0 +2.181 5.111 -1.721 0 0 0 0 0 0 0 +2.165 5.12 -1.721 0 0 0 0 0 0 0 +2.146 5.119 -1.719 0 0 0 0 0 0 0 +2.135 5.138 -1.723 0 0 0 0 0 0 0 +2.114 5.133 -1.719 0 0 0 0 0 0 0 +2.1 5.143 -1.72 0 0 0 0 0 0 0 +2.091 5.146 -1.72 0 0 0 0 0 0 0 +2.077 5.156 -1.721 0 0 0 0 0 0 0 +2.058 5.157 -1.719 0 0 0 0 0 0 0 +2.045 5.171 -1.722 0 0 0 0 0 0 0 +2.029 5.177 -1.722 0 0 0 0 0 0 0 +2.012 5.184 -1.722 0 0 0 0 0 0 0 +1.996 5.19 -1.722 0 0 0 0 0 0 0 +1.989 5.197 -1.723 0 0 0 0 0 0 0 +1.971 5.198 -1.721 0 0 0 0 0 0 0 +1.954 5.202 -1.721 0 0 0 0 0 0 0 +1.941 5.217 -1.724 0 0 0 0 0 0 0 +1.921 5.214 -1.721 0 0 0 0 0 0 0 +1.907 5.226 -1.723 0 0 0 0 0 0 0 +1.892 5.237 -1.724 0 0 0 0 0 0 0 +1.877 5.22 -1.718 0 0 0 0 0 0 0 +1.864 5.237 -1.721 0 0 0 0 0 0 0 +1.852 5.255 -1.726 0 0 0 0 0 0 0 +1.828 5.239 -1.718 0 0 0 0 0 0 0 +1.818 5.263 -1.724 0 0 0 0 0 0 0 +1.799 5.262 -1.722 0 0 0 0 0 0 0 +1.78 5.26 -1.719 0 0 0 0 0 0 0 +1.779 5.284 -1.727 0 0 0 0 0 0 0 +1.764 5.295 -1.729 0 0 0 0 0 0 0 +1.731 5.25 -1.711 0 0 0 0 0 0 0 +1.713 5.25 -1.709 0 0 0 0 0 0 0 +1.698 5.261 -1.711 0 0 0 0 0 0 0 +1.676 5.248 -1.705 0 0 0 0 0 0 0 +1.659 5.254 -1.705 0 0 0 0 0 0 0 +1.656 5.272 -1.711 0 0 0 0 0 0 0 +1.637 5.27 -1.708 0 0 0 0 0 0 0 +1.619 5.27 -1.706 0 0 0 0 0 0 0 +1.606 5.288 -1.711 0 0 0 0 0 0 0 +1.582 5.266 -1.701 0 0 0 0 0 0 0 +1.565 5.269 -1.701 0 0 0 0 0 0 0 +1.55 5.279 -1.702 0 0 0 0 0 0 0 +1.53 5.273 -1.699 0 0 0 0 0 0 0 +1.519 5.266 -1.695 0 0 0 0 0 0 0 +1.506 5.284 -1.7 0 0 0 0 0 0 0 +1.48 5.256 -1.689 0 0 0 0 0 0 0 +1.469 5.278 -1.695 0 0 0 0 0 0 0 +1.451 5.278 -1.693 0 0 0 0 0 0 0 +1.433 5.278 -1.692 0 0 0 0 0 0 0 +1.417 5.283 -1.692 0 0 0 0 0 0 0 +1.411 5.294 -1.695 0 0 0 0 0 0 0 +1.392 5.289 -1.692 0 0 0 0 0 0 0 +1.375 5.294 -1.692 0 0 0 0 0 0 0 +1.358 5.296 -1.691 0 0 0 0 0 0 0 +1.343 5.308 -1.694 0 0 0 0 0 0 0 +1.322 5.294 -1.687 0 0 0 0 0 0 0 +1.308 5.309 -1.691 0 0 0 0 0 0 0 +1.296 5.296 -1.686 0 0 0 0 0 0 0 +1.28 5.304 -1.687 0 0 0 0 0 0 0 +1.267 5.321 -1.692 0 0 0 0 0 0 0 +1.248 5.316 -1.689 0 0 0 0 0 0 0 +1.234 5.332 -1.693 0 0 0 0 0 0 0 +1.22 5.347 -1.697 0 0 0 0 0 0 0 +1.199 5.333 -1.69 0 0 0 0 0 0 0 +1.191 5.334 -1.69 0 0 0 0 0 0 0 +1.174 5.34 -1.691 0 0 0 0 0 0 0 +1.158 5.346 -1.692 0 0 0 0 0 0 0 +1.139 5.34 -1.689 0 0 0 0 0 0 0 +1.124 5.349 -1.69 0 0 0 0 0 0 0 +1.104 5.341 -1.687 0 0 0 0 0 0 0 +1.088 5.345 -1.687 0 0 0 0 0 0 0 +0.628 3.107 -0.93 0 0 0 0 0 0 0 +1.072 5.356 -1.689 0 0 0 0 0 0 0 +0.621 3.121 -0.934 0 0 0 0 0 0 0 +0.613 3.132 -0.937 0 0 0 0 0 0 0 +0.607 3.16 -0.946 0 0 0 0 0 0 0 +0.598 3.162 -0.946 0 0 0 0 0 0 0 +0.585 3.151 -0.942 0 0 0 0 0 0 0 +0.578 3.166 -0.946 0 0 0 0 0 0 0 +0.575 3.181 -0.951 0 0 0 0 0 0 0 +0.562 3.163 -0.944 0 0 0 0 0 0 0 +0.538 3.08 -0.916 0 0 0 0 0 0 0 +0.512 2.982 -0.883 0 0 0 0 0 0 0 +0.504 2.992 -0.885 0 0 0 0 0 0 0 +0.495 2.995 -0.886 0 0 0 0 0 0 0 +0.485 2.993 -0.884 0 0 0 0 0 0 0 +0.481 3.001 -0.887 0 0 0 0 0 0 0 +0.471 3.001 -0.886 0 0 0 0 0 0 0 +0.461 2.996 -0.884 0 0 0 0 0 0 0 +0.452 3.002 -0.886 0 0 0 0 0 0 0 +0.443 3.003 -0.886 0 0 0 0 0 0 0 +0.433 3.004 -0.886 0 0 0 0 0 0 0 +0.424 3.002 -0.884 0 0 0 0 0 0 0 +0.419 3.003 -0.884 0 0 0 0 0 0 0 +0.41 3.012 -0.887 0 0 0 0 0 0 0 +0.4 3.005 -0.884 0 0 0 0 0 0 0 +0.391 3.006 -0.884 0 0 0 0 0 0 0 +0.382 3.011 -0.886 0 0 0 0 0 0 0 +0.372 3.009 -0.884 0 0 0 0 0 0 0 +0.362 3.004 -0.883 0 0 0 0 0 0 0 +0.353 3.013 -0.885 0 0 0 0 0 0 0 +0.348 3.012 -0.884 0 0 0 0 0 0 0 +0.338 3.009 -0.883 0 0 0 0 0 0 0 +0.329 3.014 -0.884 0 0 0 0 0 0 0 +0.32 3.015 -0.884 0 0 0 0 0 0 0 +0.31 3.014 -0.884 0 0 0 0 0 0 0 +0.301 3.019 -0.885 0 0 0 0 0 0 0 +0.291 3.018 -0.884 0 0 0 0 0 0 0 +0.287 3.026 -0.887 0 0 0 0 0 0 0 +0.277 3.019 -0.884 0 0 0 0 0 0 0 +0.267 3.02 -0.884 0 0 0 0 0 0 0 +0.258 3.025 -0.886 0 0 0 0 0 0 0 +0.249 3.025 -0.886 0 0 0 0 0 0 0 +0.239 3.026 -0.886 0 0 0 0 0 0 0 +0.23 3.025 -0.885 0 0 0 0 0 0 0 +0.225 3.031 -0.887 0 0 0 0 0 0 0 +0.216 3.03 -0.886 0 0 0 0 0 0 0 +0.206 3.032 -0.887 0 0 0 0 0 0 0 +0.196 3.029 -0.886 0 0 0 0 0 0 0 +0.187 3.032 -0.886 0 0 0 0 0 0 0 +0.178 3.036 -0.888 0 0 0 0 0 0 0 +0.173 3.133 -0.92 0 0 0 0 0 0 0 +0.172 3.219 -0.948 0 0 0 0 0 0 0 +0.162 3.237 -0.954 0 0 0 0 0 0 0 +0.152 3.241 -0.955 0 0 0 0 0 0 0 +0.142 3.241 -0.955 0 0 0 0 0 0 0 +0.132 3.242 -0.955 0 0 0 0 0 0 0 +0.121 3.214 -0.945 0 0 0 0 0 0 0 +0.111 3.214 -0.945 0 0 0 0 0 0 0 +0.105 3.197 -0.94 0 0 0 0 0 0 0 +0.095 3.207 -0.943 0 0 0 0 0 0 0 +0.127 5.464 -1.69 0 0 0 0 0 0 0 +0.11 5.463 -1.69 0 0 0 0 0 0 0 +0.093 5.452 -1.686 0 0 0 0 0 0 0 +0.076 5.465 -1.69 0 0 0 0 0 0 0 +0.058 5.448 -1.685 0 0 0 0 0 0 0 +0.041 5.464 -1.69 0 0 0 0 0 0 0 +0.033 5.447 -1.684 0 0 0 0 0 0 0 +0.015 5.452 -1.686 0 0 0 0 0 0 0 +-0.002 5.47 -1.692 0 0 0 0 0 0 0 +-0.019 5.46 -1.689 0 0 0 0 0 0 0 +-0.036 5.454 -1.687 0 0 0 0 0 0 0 +-0.053 5.462 -1.689 0 0 0 0 0 0 0 +-0.07 5.463 -1.69 0 0 0 0 0 0 0 +-0.079 5.452 -1.686 0 0 0 0 0 0 0 +-0.097 5.495 -1.701 0 0 0 0 0 0 0 +-0.115 5.529 -1.712 0 0 0 0 0 0 0 +-0.132 5.512 -1.706 0 0 0 0 0 0 0 +-0.149 5.515 -1.707 0 0 0 0 0 0 0 +-0.168 5.543 -1.717 0 0 0 0 0 0 0 +-0.184 5.522 -1.71 0 0 0 0 0 0 0 +-0.194 5.546 -1.718 0 0 0 0 0 0 0 +-0.211 5.541 -1.717 0 0 0 0 0 0 0 +-0.229 5.546 -1.719 0 0 0 0 0 0 0 +-0.246 5.538 -1.716 0 0 0 0 0 0 0 +-0.264 5.543 -1.718 0 0 0 0 0 0 0 +-0.281 5.542 -1.718 0 0 0 0 0 0 0 +-0.299 5.551 -1.721 0 0 0 0 0 0 0 +-0.316 5.55 -1.721 0 0 0 0 0 0 0 +-0.326 5.559 -1.724 0 0 0 0 0 0 0 +-0.344 5.563 -1.726 0 0 0 0 0 0 0 +-0.361 5.562 -1.726 0 0 0 0 0 0 0 +-0.378 5.557 -1.725 0 0 0 0 0 0 0 +-0.396 5.56 -1.726 0 0 0 0 0 0 0 +-0.415 5.574 -1.731 0 0 0 0 0 0 0 +-0.432 5.567 -1.729 0 0 0 0 0 0 0 +-0.441 5.572 -1.731 0 0 0 0 0 0 0 +-0.459 5.572 -1.732 0 0 0 0 0 0 0 +-0.476 5.571 -1.732 0 0 0 0 0 0 0 +-0.495 5.586 -1.738 0 0 0 0 0 0 0 +-0.512 5.581 -1.736 0 0 0 0 0 0 0 +-0.53 5.581 -1.737 0 0 0 0 0 0 0 +-0.55 5.6 -1.744 0 0 0 0 0 0 0 +-0.558 5.599 -1.744 0 0 0 0 0 0 0 +-0.575 5.588 -1.741 0 0 0 0 0 0 0 +-0.594 5.598 -1.745 0 0 0 0 0 0 0 +-0.614 5.616 -1.751 0 0 0 0 0 0 0 +-0.63 5.601 -1.747 0 0 0 0 0 0 0 +-0.649 5.614 -1.752 0 0 0 0 0 0 0 +-0.67 5.641 -1.762 0 0 0 0 0 0 0 +-0.708 5.72 -1.789 0 0 0 0 0 0 0 +-0.723 5.695 -1.782 0 0 0 0 0 0 0 +-0.735 5.654 -1.768 0 0 0 0 0 0 0 +-0.746 5.599 -1.751 0 0 0 0 0 0 0 +-0.766 5.617 -1.758 0 0 0 0 0 0 0 +-0.781 5.598 -1.752 0 0 0 0 0 0 0 +-0.788 5.581 -1.747 0 0 0 0 0 0 0 +-0.806 5.583 -1.748 0 0 0 0 0 0 0 +-0.822 5.569 -1.745 0 0 0 0 0 0 0 +-0.841 5.575 -1.748 0 0 0 0 0 0 0 +-0.859 5.578 -1.75 0 0 0 0 0 0 0 +-0.877 5.576 -1.75 0 0 0 0 0 0 0 +-0.893 5.565 -1.747 0 0 0 0 0 0 0 +-0.903 5.571 -1.75 0 0 0 0 0 0 0 +-0.918 5.556 -1.745 0 0 0 0 0 0 0 +-0.938 5.568 -1.75 0 0 0 0 0 0 0 +-0.955 5.557 -1.748 0 0 0 0 0 0 0 +-0.975 5.569 -1.753 0 0 0 0 0 0 0 +-0.99 5.553 -1.748 0 0 0 0 0 0 0 +-1.009 5.557 -1.751 0 0 0 0 0 0 0 +-1.023 5.535 -1.745 0 0 0 0 0 0 0 +-1.034 5.549 -1.75 0 0 0 0 0 0 0 +-1.054 5.557 -1.753 0 0 0 0 0 0 0 +-1.068 5.536 -1.748 0 0 0 0 0 0 0 +-1.085 5.533 -1.748 0 0 0 0 0 0 0 +-1.107 5.55 -1.755 0 0 0 0 0 0 0 +-1.119 5.521 -1.746 0 0 0 0 0 0 0 +-1.137 5.521 -1.747 0 0 0 0 0 0 0 +-1.149 5.536 -1.753 0 0 0 0 0 0 0 +-1.165 5.523 -1.75 0 0 0 0 0 0 0 +-1.18 5.512 -1.747 0 0 0 0 0 0 0 +-1.2 5.517 -1.75 0 0 0 0 0 0 0 +-1.213 5.495 -1.744 0 0 0 0 0 0 0 +-1.234 5.51 -1.75 0 0 0 0 0 0 0 +-1.253 5.513 -1.753 0 0 0 0 0 0 0 +-1.259 5.498 -1.748 0 0 0 0 0 0 0 +-1.277 5.5 -1.75 0 0 0 0 0 0 0 +-1.297 5.505 -1.753 0 0 0 0 0 0 0 +-1.312 5.493 -1.751 0 0 0 0 0 0 0 +-1.329 5.486 -1.75 0 0 0 0 0 0 0 +-1.348 5.489 -1.752 0 0 0 0 0 0 0 +-1.364 5.479 -1.75 0 0 0 0 0 0 0 +-1.372 5.475 -1.75 0 0 0 0 0 0 0 +-1.391 5.48 -1.753 0 0 0 0 0 0 0 +-1.405 5.461 -1.748 0 0 0 0 0 0 0 +-1.422 5.458 -1.748 0 0 0 0 0 0 0 +-1.443 5.468 -1.753 0 0 0 0 0 0 0 +-1.455 5.442 -1.746 0 0 0 0 0 0 0 +-1.474 5.444 -1.748 0 0 0 0 0 0 0 +-1.493 5.449 -1.751 0 0 0 0 0 0 0 +-1.503 5.45 -1.753 0 0 0 0 0 0 0 +-1.52 5.446 -1.753 0 0 0 0 0 0 0 +-1.54 5.45 -1.756 0 0 0 0 0 0 0 +-1.554 5.436 -1.753 0 0 0 0 0 0 0 +-1.571 5.429 -1.752 0 0 0 0 0 0 0 +-1.588 5.426 -1.753 0 0 0 0 0 0 0 +-1.604 5.416 -1.751 0 0 0 0 0 0 0 +-1.615 5.42 -1.753 0 0 0 0 0 0 0 +-1.633 5.419 -1.755 0 0 0 0 0 0 0 +-1.647 5.406 -1.752 0 0 0 0 0 0 0 +-1.663 5.396 -1.75 0 0 0 0 0 0 0 +-1.681 5.396 -1.752 0 0 0 0 0 0 0 +-1.695 5.382 -1.749 0 0 0 0 0 0 0 +-1.713 5.38 -1.75 0 0 0 0 0 0 0 +-1.722 5.377 -1.75 0 0 0 0 0 0 0 +-1.739 5.373 -1.751 0 0 0 0 0 0 0 +-1.756 5.368 -1.751 0 0 0 0 0 0 0 +-1.773 5.362 -1.751 0 0 0 0 0 0 0 +-1.786 5.344 -1.746 0 0 0 0 0 0 0 +-1.803 5.34 -1.747 0 0 0 0 0 0 0 +-1.824 5.347 -1.751 0 0 0 0 0 0 0 +-1.828 5.332 -1.747 0 0 0 0 0 0 0 +-1.846 5.33 -1.748 0 0 0 0 0 0 0 +-1.867 5.336 -1.753 0 0 0 0 0 0 0 +-1.882 5.323 -1.75 0 0 0 0 0 0 0 +-1.896 5.31 -1.748 0 0 0 0 0 0 0 +-1.918 5.319 -1.753 0 0 0 0 0 0 0 +-1.931 5.304 -1.75 0 0 0 0 0 0 0 +-1.948 5.298 -1.75 0 0 0 0 0 0 0 +-1.956 5.294 -1.75 0 0 0 0 0 0 0 +-1.969 5.278 -1.746 0 0 0 0 0 0 0 +-1.987 5.277 -1.748 0 0 0 0 0 0 0 +-2.007 5.278 -1.75 0 0 0 0 0 0 0 +-2.018 5.259 -1.746 0 0 0 0 0 0 0 +-2.041 5.268 -1.751 0 0 0 0 0 0 0 +-2.058 5.262 -1.751 0 0 0 0 0 0 0 +-2.068 5.264 -1.753 0 0 0 0 0 0 0 +-2.078 5.242 -1.748 0 0 0 0 0 0 0 +-2.11 5.272 -1.761 0 0 0 0 0 0 0 +-2.139 5.297 -1.772 0 0 0 0 0 0 0 +-2.162 5.306 -1.778 0 0 0 0 0 0 0 +-2.115 5.147 -1.723 0 0 0 0 0 0 0 +-2.172 5.236 -1.758 0 0 0 0 0 0 0 +-2.179 5.231 -1.757 0 0 0 0 0 0 0 +-2.206 5.249 -1.766 0 0 0 0 0 0 0 +-2.218 5.231 -1.762 0 0 0 0 0 0 0 +-2.232 5.217 -1.76 0 0 0 0 0 0 0 +-2.249 5.212 -1.76 0 0 0 0 0 0 0 +-2.259 5.191 -1.755 0 0 0 0 0 0 0 +-2.273 5.179 -1.753 0 0 0 0 0 0 0 +-2.283 5.18 -1.755 0 0 0 0 0 0 0 +-2.297 5.168 -1.753 0 0 0 0 0 0 0 +-2.303 5.138 -1.745 0 0 0 0 0 0 0 +-2.323 5.138 -1.748 0 0 0 0 0 0 0 +-2.33 5.112 -1.741 0 0 0 0 0 0 0 +-2.352 5.116 -1.745 0 0 0 0 0 0 0 +-2.369 5.112 -1.746 0 0 0 0 0 0 0 +-2.382 5.098 -1.744 0 0 0 0 0 0 0 +-2.396 5.106 -1.748 0 0 0 0 0 0 0 +-2.413 5.1 -1.749 0 0 0 0 0 0 0 +-2.422 5.079 -1.744 0 0 0 0 0 0 0 +-2.443 5.082 -1.748 0 0 0 0 0 0 0 +-2.461 5.077 -1.749 0 0 0 0 0 0 0 +-2.472 5.059 -1.745 0 0 0 0 0 0 0 +-2.494 5.065 -1.75 0 0 0 0 0 0 0 +-2.499 5.055 -1.748 0 0 0 0 0 0 0 +-2.51 5.037 -1.744 0 0 0 0 0 0 0 +-2.531 5.039 -1.748 0 0 0 0 0 0 0 +-2.546 5.031 -1.748 0 0 0 0 0 0 0 +-2.559 5.016 -1.745 0 0 0 0 0 0 0 +-2.578 5.015 -1.748 0 0 0 0 0 0 0 +-2.593 5.005 -1.747 0 0 0 0 0 0 0 +-2.601 5.001 -1.747 0 0 0 0 0 0 0 +-2.623 5.004 -1.751 0 0 0 0 0 0 0 +-2.636 4.991 -1.75 0 0 0 0 0 0 0 +-2.655 4.989 -1.752 0 0 0 0 0 0 0 +-2.665 4.971 -1.748 0 0 0 0 0 0 0 +-2.681 4.963 -1.748 0 0 0 0 0 0 0 +-2.695 4.953 -1.748 0 0 0 0 0 0 0 +-2.709 4.958 -1.751 0 0 0 0 0 0 0 +-2.721 4.945 -1.75 0 0 0 0 0 0 0 +-2.74 4.941 -1.751 0 0 0 0 0 0 0 +-2.762 4.944 -1.756 0 0 0 0 0 0 0 +-2.772 4.926 -1.752 0 0 0 0 0 0 0 +-2.79 4.922 -1.754 0 0 0 0 0 0 0 +-2.808 4.918 -1.756 0 0 0 0 0 0 0 +-2.82 4.902 -1.753 0 0 0 0 0 0 0 +-2.827 4.896 -1.753 0 0 0 0 0 0 0 +-2.845 4.892 -1.755 0 0 0 0 0 0 0 +-2.86 4.883 -1.755 0 0 0 0 0 0 0 +-2.874 4.871 -1.753 0 0 0 0 0 0 0 +-2.894 4.87 -1.756 0 0 0 0 0 0 0 +-2.905 4.855 -1.754 0 0 0 0 0 0 0 +-2.923 4.85 -1.756 0 0 0 0 0 0 0 +-2.932 4.847 -1.756 0 0 0 0 0 0 0 +-2.949 4.841 -1.758 0 0 0 0 0 0 0 +-2.959 4.824 -1.755 0 0 0 0 0 0 0 +-2.975 4.816 -1.755 0 0 0 0 0 0 0 +-2.996 4.815 -1.758 0 0 0 0 0 0 0 +-3.008 4.801 -1.756 0 0 0 0 0 0 0 +-3.028 4.799 -1.76 0 0 0 0 0 0 0 +-3.04 4.785 -1.758 0 0 0 0 0 0 0 +-3.044 4.775 -1.756 0 0 0 0 0 0 0 +-3.065 4.775 -1.76 0 0 0 0 0 0 0 +-3.08 4.766 -1.76 0 0 0 0 0 0 0 +-3.095 4.756 -1.76 0 0 0 0 0 0 0 +-3.116 4.754 -1.763 0 0 0 0 0 0 0 +-3.123 4.733 -1.758 0 0 0 0 0 0 0 +-3.139 4.725 -1.759 0 0 0 0 0 0 0 +-3.148 4.722 -1.76 0 0 0 0 0 0 0 +-3.159 4.707 -1.758 0 0 0 0 0 0 0 +-3.176 4.7 -1.759 0 0 0 0 0 0 0 +-3.188 4.686 -1.757 0 0 0 0 0 0 0 +-3.208 4.683 -1.76 0 0 0 0 0 0 0 +-3.22 4.67 -1.759 0 0 0 0 0 0 0 +-3.236 4.661 -1.76 0 0 0 0 0 0 0 +-3.245 4.66 -1.761 0 0 0 0 0 0 0 +-3.257 4.645 -1.759 0 0 0 0 0 0 0 +-3.272 4.636 -1.76 0 0 0 0 0 0 0 +-3.293 4.633 -1.763 0 0 0 0 0 0 0 +-3.302 4.615 -1.76 0 0 0 0 0 0 0 +-3.319 4.609 -1.762 0 0 0 0 0 0 0 +-3.329 4.593 -1.759 0 0 0 0 0 0 0 +-3.337 4.588 -1.759 0 0 0 0 0 0 0 +-3.353 4.58 -1.76 0 0 0 0 0 0 0 +-3.366 4.568 -1.76 0 0 0 0 0 0 0 +-3.38 4.556 -1.759 0 0 0 0 0 0 0 +-3.396 4.548 -1.76 0 0 0 0 0 0 0 +-3.413 4.541 -1.762 0 0 0 0 0 0 0 +-3.425 4.527 -1.76 0 0 0 0 0 0 0 +-3.444 4.522 -1.763 0 0 0 0 0 0 0 +-3.448 4.514 -1.762 0 0 0 0 0 0 0 +-3.459 4.498 -1.76 0 0 0 0 0 0 0 +-3.472 4.486 -1.759 0 0 0 0 0 0 0 +-3.493 4.484 -1.763 0 0 0 0 0 0 0 +-3.502 4.467 -1.76 0 0 0 0 0 0 0 +-3.514 4.453 -1.759 0 0 0 0 0 0 0 +-3.548 4.467 -1.77 0 0 0 0 0 0 0 +-3.543 4.447 -1.763 0 0 0 0 0 0 0 +-3.557 4.436 -1.763 0 0 0 0 0 0 0 +-3.572 4.426 -1.764 0 0 0 0 0 0 0 +-3.586 4.415 -1.764 0 0 0 0 0 0 0 +-3.6 4.403 -1.764 0 0 0 0 0 0 0 +-3.619 4.398 -1.767 0 0 0 0 0 0 0 +-3.633 4.387 -1.767 0 0 0 0 0 0 0 +-3.651 4.394 -1.772 0 0 0 0 0 0 0 +-3.659 4.377 -1.77 0 0 0 0 0 0 0 +-3.677 4.37 -1.772 0 0 0 0 0 0 0 +-3.697 4.365 -1.775 0 0 0 0 0 0 0 +-3.724 4.369 -1.782 0 0 0 0 0 0 0 +-3.729 4.348 -1.777 0 0 0 0 0 0 0 +-3.754 4.349 -1.783 0 0 0 0 0 0 0 +-3.773 4.357 -1.789 0 0 0 0 0 0 0 +-3.782 4.34 -1.787 0 0 0 0 0 0 0 +-3.807 4.34 -1.792 0 0 0 0 0 0 0 +-3.823 4.331 -1.794 0 0 0 0 0 0 0 +-3.821 4.302 -1.786 0 0 0 0 0 0 0 +-3.849 4.306 -1.793 0 0 0 0 0 0 0 +-3.847 4.277 -1.785 0 0 0 0 0 0 0 +-3.859 4.276 -1.788 0 0 0 0 0 0 0 +-3.906 4.301 -1.804 0 0 0 0 0 0 0 +-3.92 4.29 -1.805 0 0 0 0 0 0 0 +-3.911 4.252 -1.794 0 0 0 0 0 0 0 +-3.928 4.244 -1.795 0 0 0 0 0 0 0 +-3.931 4.221 -1.79 0 0 0 0 0 0 0 +-3.935 4.199 -1.786 0 0 0 0 0 0 0 +-3.951 4.189 -1.787 0 0 0 0 0 0 0 +-3.959 4.184 -1.788 0 0 0 0 0 0 0 +-3.945 4.144 -1.775 0 0 0 0 0 0 0 +-3.974 4.148 -1.783 0 0 0 0 0 0 0 +-3.982 4.13 -1.78 0 0 0 0 0 0 0 +-3.983 4.106 -1.775 0 0 0 0 0 0 0 +-3.997 4.095 -1.775 0 0 0 0 0 0 0 +-4.009 4.081 -1.775 0 0 0 0 0 0 0 +-4.003 4.062 -1.769 0 0 0 0 0 0 0 +-4.009 4.043 -1.766 0 0 0 0 0 0 0 +-4.027 4.036 -1.768 0 0 0 0 0 0 0 +-4.024 4.007 -1.761 0 0 0 0 0 0 0 +-4.051 4.009 -1.768 0 0 0 0 0 0 0 +-4.059 3.992 -1.766 0 0 0 0 0 0 0 +-4.073 3.981 -1.767 0 0 0 0 0 0 0 +-4.076 3.97 -1.765 0 0 0 0 0 0 0 +-4.093 3.963 -1.767 0 0 0 0 0 0 0 +-4.1 3.945 -1.765 0 0 0 0 0 0 0 +-4.118 3.937 -1.767 0 0 0 0 0 0 0 +-4.126 3.92 -1.765 0 0 0 0 0 0 0 +-4.14 3.908 -1.766 0 0 0 0 0 0 0 +-4.152 3.895 -1.766 0 0 0 0 0 0 0 +-4.156 3.886 -1.765 0 0 0 0 0 0 0 +-4.167 3.872 -1.764 0 0 0 0 0 0 0 +-4.179 3.859 -1.764 0 0 0 0 0 0 0 +-4.199 3.853 -1.768 0 0 0 0 0 0 0 +-4.201 3.831 -1.763 0 0 0 0 0 0 0 +-4.216 3.821 -1.765 0 0 0 0 0 0 0 +-4.221 3.801 -1.762 0 0 0 0 0 0 0 +-4.23 3.797 -1.763 0 0 0 0 0 0 0 +-4.245 3.786 -1.764 0 0 0 0 0 0 0 +-4.252 3.769 -1.762 0 0 0 0 0 0 0 +-4.264 3.756 -1.762 0 0 0 0 0 0 0 +-4.279 3.745 -1.763 0 0 0 0 0 0 0 +-4.28 3.723 -1.759 0 0 0 0 0 0 0 +-4.298 3.714 -1.762 0 0 0 0 0 0 0 +-4.315 3.705 -1.764 0 0 0 0 0 0 0 +-4.317 3.695 -1.762 0 0 0 0 0 0 0 +-4.328 3.681 -1.762 0 0 0 0 0 0 0 +-4.34 3.668 -1.762 0 0 0 0 0 0 0 +-4.35 3.653 -1.762 0 0 0 0 0 0 0 +-4.359 3.637 -1.76 0 0 0 0 0 0 0 +-4.373 3.625 -1.762 0 0 0 0 0 0 0 +-4.387 3.614 -1.763 0 0 0 0 0 0 0 +-4.391 3.606 -1.762 0 0 0 0 0 0 0 +-4.401 3.591 -1.762 0 0 0 0 0 0 0 +-4.411 3.576 -1.761 0 0 0 0 0 0 0 +-4.418 3.559 -1.759 0 0 0 0 0 0 0 +-4.432 3.547 -1.76 0 0 0 0 0 0 0 +-4.447 3.537 -1.762 0 0 0 0 0 0 0 +-4.457 3.521 -1.762 0 0 0 0 0 0 0 +-4.467 3.518 -1.763 0 0 0 0 0 0 0 +-4.466 3.495 -1.758 0 0 0 0 0 0 0 +-4.48 3.483 -1.76 0 0 0 0 0 0 0 +-4.491 3.469 -1.76 0 0 0 0 0 0 0 +-4.502 3.455 -1.76 0 0 0 0 0 0 0 +-4.519 3.445 -1.762 0 0 0 0 0 0 0 +-4.53 3.431 -1.762 0 0 0 0 0 0 0 +-4.53 3.42 -1.76 0 0 0 0 0 0 0 +-4.54 3.405 -1.76 0 0 0 0 0 0 0 +-4.561 3.399 -1.764 0 0 0 0 0 0 0 +-4.564 3.379 -1.761 0 0 0 0 0 0 0 +-4.571 3.362 -1.76 0 0 0 0 0 0 0 +-4.593 3.355 -1.764 0 0 0 0 0 0 0 +-4.599 3.338 -1.762 0 0 0 0 0 0 0 +-4.612 3.325 -1.763 0 0 0 0 0 0 0 +-4.608 3.312 -1.76 0 0 0 0 0 0 0 +-4.629 3.305 -1.764 0 0 0 0 0 0 0 +-4.637 3.288 -1.763 0 0 0 0 0 0 0 +-4.65 3.276 -1.764 0 0 0 0 0 0 0 +-4.659 3.26 -1.763 0 0 0 0 0 0 0 +-4.674 3.248 -1.765 0 0 0 0 0 0 0 +-4.676 3.228 -1.762 0 0 0 0 0 0 0 +-4.686 3.224 -1.764 0 0 0 0 0 0 0 +-4.704 3.215 -1.767 0 0 0 0 0 0 0 +-4.709 3.197 -1.765 0 0 0 0 0 0 0 +-4.724 3.185 -1.767 0 0 0 0 0 0 0 +-4.731 3.168 -1.766 0 0 0 0 0 0 0 +-4.739 3.152 -1.765 0 0 0 0 0 0 0 +-4.747 3.136 -1.765 0 0 0 0 0 0 0 +-4.746 3.125 -1.762 0 0 0 0 0 0 0 +-4.76 3.113 -1.764 0 0 0 0 0 0 0 +-4.773 3.1 -1.765 0 0 0 0 0 0 0 +-4.777 3.081 -1.763 0 0 0 0 0 0 0 +-4.804 3.077 -1.77 0 0 0 0 0 0 0 +-4.801 3.054 -1.765 0 0 0 0 0 0 0 +-4.806 3.036 -1.763 0 0 0 0 0 0 0 +-4.815 3.031 -1.765 0 0 0 0 0 0 0 +-4.82 3.013 -1.763 0 0 0 0 0 0 0 +-4.831 2.999 -1.763 0 0 0 0 0 0 0 +-4.837 2.982 -1.762 0 0 0 0 0 0 0 +-4.85 2.968 -1.763 0 0 0 0 0 0 0 +-4.851 2.948 -1.76 0 0 0 0 0 0 0 +-4.871 2.94 -1.765 0 0 0 0 0 0 0 +-4.868 2.927 -1.762 0 0 0 0 0 0 0 +-4.879 2.913 -1.762 0 0 0 0 0 0 0 +-4.886 2.897 -1.762 0 0 0 0 0 0 0 +-4.899 2.883 -1.763 0 0 0 0 0 0 0 +-4.911 2.87 -1.764 0 0 0 0 0 0 0 +-4.923 2.856 -1.765 0 0 0 0 0 0 0 +-4.932 2.841 -1.765 0 0 0 0 0 0 0 +-4.927 2.827 -1.762 0 0 0 0 0 0 0 +-4.945 2.817 -1.765 0 0 0 0 0 0 0 +-4.946 2.797 -1.762 0 0 0 0 0 0 0 +-4.956 2.783 -1.763 0 0 0 0 0 0 0 +-4.978 2.774 -1.768 0 0 0 0 0 0 0 +-4.979 2.754 -1.765 0 0 0 0 0 0 0 +-4.981 2.735 -1.762 0 0 0 0 0 0 0 +-5.001 2.726 -1.767 0 0 0 0 0 0 0 +-5.007 2.719 -1.767 0 0 0 0 0 0 0 +-5.014 2.702 -1.767 0 0 0 0 0 0 0 +-5.027 2.689 -1.768 0 0 0 0 0 0 0 +-5.042 2.677 -1.771 0 0 0 0 0 0 0 +-5.042 2.656 -1.768 0 0 0 0 0 0 0 +-5.051 2.641 -1.768 0 0 0 0 0 0 0 +-5.062 2.626 -1.769 0 0 0 0 0 0 0 +-5.066 2.618 -1.769 0 0 0 0 0 0 0 +-5.075 2.602 -1.769 0 0 0 0 0 0 0 +-5.088 2.589 -1.771 0 0 0 0 0 0 0 +-5.094 2.572 -1.77 0 0 0 0 0 0 0 +-5.102 2.556 -1.77 0 0 0 0 0 0 0 +-5.105 2.538 -1.768 0 0 0 0 0 0 0 +-5.135 2.532 -1.777 0 0 0 0 0 0 0 +-5.134 2.522 -1.775 0 0 0 0 0 0 0 +-5.134 2.502 -1.772 0 0 0 0 0 0 0 +-5.148 2.489 -1.774 0 0 0 0 0 0 0 +-5.153 2.471 -1.773 0 0 0 0 0 0 0 +-5.159 2.454 -1.772 0 0 0 0 0 0 0 +-5.166 2.438 -1.772 0 0 0 0 0 0 0 +-5.179 2.424 -1.774 0 0 0 0 0 0 0 +-5.186 2.417 -1.775 0 0 0 0 0 0 0 +-5.197 2.403 -1.777 0 0 0 0 0 0 0 +-5.207 2.387 -1.777 0 0 0 0 0 0 0 +-5.214 2.371 -1.777 0 0 0 0 0 0 0 +-5.225 2.356 -1.778 0 0 0 0 0 0 0 +-5.241 2.343 -1.782 0 0 0 0 0 0 0 +-5.228 2.318 -1.774 0 0 0 0 0 0 0 +-5.238 2.312 -1.777 0 0 0 0 0 0 0 +-5.238 2.293 -1.774 0 0 0 0 0 0 0 +-5.254 2.28 -1.777 0 0 0 0 0 0 0 +-5.256 2.261 -1.775 0 0 0 0 0 0 0 +-5.27 2.248 -1.778 0 0 0 0 0 0 0 +-5.279 2.232 -1.778 0 0 0 0 0 0 0 +-5.281 2.213 -1.777 0 0 0 0 0 0 0 +-5.288 2.197 -1.777 0 0 0 0 0 0 0 +-5.291 2.188 -1.777 0 0 0 0 0 0 0 +-5.307 2.175 -1.78 0 0 0 0 0 0 0 +-5.319 2.161 -1.782 0 0 0 0 0 0 0 +-5.315 2.14 -1.778 0 0 0 0 0 0 0 +-5.327 2.125 -1.78 0 0 0 0 0 0 0 +-5.337 2.11 -1.781 0 0 0 0 0 0 0 +-5.342 2.092 -1.78 0 0 0 0 0 0 0 +-5.349 2.085 -1.782 0 0 0 0 0 0 0 +-5.357 2.069 -1.782 0 0 0 0 0 0 0 +-5.365 2.053 -1.783 0 0 0 0 0 0 0 +-5.377 2.038 -1.785 0 0 0 0 0 0 0 +-5.391 2.024 -1.787 0 0 0 0 0 0 0 +-5.365 1.995 -1.776 0 0 0 0 0 0 0 +-5.4 1.989 -1.786 0 0 0 0 0 0 0 +-5.403 1.98 -1.786 0 0 0 0 0 0 0 +-5.398 1.959 -1.782 0 0 0 0 0 0 0 +-5.404 1.942 -1.782 0 0 0 0 0 0 0 +-5.407 1.924 -1.781 0 0 0 0 0 0 0 +-5.615 1.429 -1.799 0 0 0 0 0 0 0 +-5.599 1.406 -1.792 0 0 0 0 0 0 0 +-5.63 1.395 -1.801 0 0 0 0 0 0 0 +-5.621 1.374 -1.797 0 0 0 0 0 0 0 +-5.612 1.353 -1.792 0 0 0 0 0 0 0 +-5.624 1.337 -1.795 0 0 0 0 0 0 0 +-5.623 1.319 -1.793 0 0 0 0 0 0 0 +-5.621 1.309 -1.792 0 0 0 0 0 0 0 +-5.633 1.293 -1.794 0 0 0 0 0 0 0 +-5.627 1.273 -1.791 0 0 0 0 0 0 0 +-5.633 1.256 -1.792 0 0 0 0 0 0 0 +-5.643 1.239 -1.794 0 0 0 0 0 0 0 +-5.63 1.218 -1.788 0 0 0 0 0 0 0 +-5.641 1.202 -1.79 0 0 0 0 0 0 0 +-5.648 1.185 -1.792 0 0 0 0 0 0 0 +-5.643 1.175 -1.789 0 0 0 0 0 0 0 +-5.634 1.154 -1.785 0 0 0 0 0 0 0 +-5.645 1.138 -1.787 0 0 0 0 0 0 0 +-5.641 1.119 -1.785 0 0 0 0 0 0 0 +-5.648 1.102 -1.786 0 0 0 0 0 0 0 +-5.655 1.085 -1.787 0 0 0 0 0 0 0 +-5.651 1.066 -1.785 0 0 0 0 0 0 0 +-5.651 1.056 -1.784 0 0 0 0 0 0 0 +-5.66 1.04 -1.786 0 0 0 0 0 0 0 +-5.654 1.02 -1.783 0 0 0 0 0 0 0 +-5.66 1.003 -1.784 0 0 0 0 0 0 0 +-5.669 0.986 -1.786 0 0 0 0 0 0 0 +-5.667 0.967 -1.784 0 0 0 0 0 0 0 +-5.657 0.948 -1.78 0 0 0 0 0 0 0 +-5.669 0.931 -1.783 0 0 0 0 0 0 0 +-5.659 0.921 -1.779 0 0 0 0 0 0 0 +-5.662 0.903 -1.779 0 0 0 0 0 0 0 +-5.682 0.888 -1.785 0 0 0 0 0 0 0 +-5.673 0.868 -1.781 0 0 0 0 0 0 0 +-5.676 0.85 -1.781 0 0 0 0 0 0 0 +-5.684 0.833 -1.783 0 0 0 0 0 0 0 +-5.67 0.813 -1.777 0 0 0 0 0 0 0 +-5.684 0.806 -1.782 0 0 0 0 0 0 0 +-5.687 0.788 -1.782 0 0 0 0 0 0 0 +-5.678 0.769 -1.778 0 0 0 0 0 0 0 +-5.69 0.752 -1.781 0 0 0 0 0 0 0 +-5.686 0.733 -1.779 0 0 0 0 0 0 0 +-5.674 0.714 -1.774 0 0 0 0 0 0 0 +-5.698 0.699 -1.782 0 0 0 0 0 0 0 +-5.705 0.69 -1.784 0 0 0 0 0 0 0 +-5.688 0.67 -1.777 0 0 0 0 0 0 0 +-5.698 0.653 -1.78 0 0 0 0 0 0 0 +-5.698 0.635 -1.779 0 0 0 0 0 0 0 +-5.696 0.617 -1.778 0 0 0 0 0 0 0 +-5.71 0.6 -1.782 0 0 0 0 0 0 0 +-5.711 0.582 -1.782 0 0 0 0 0 0 0 +-5.712 0.573 -1.782 0 0 0 0 0 0 0 +-5.714 0.555 -1.782 0 0 0 0 0 0 0 +-5.703 0.536 -1.777 0 0 0 0 0 0 0 +-5.704 0.518 -1.777 0 0 0 0 0 0 0 +-5.71 0.5 -1.778 0 0 0 0 0 0 0 +-5.717 0.483 -1.78 0 0 0 0 0 0 0 +-5.715 0.465 -1.779 0 0 0 0 0 0 0 +-5.712 0.455 -1.778 0 0 0 0 0 0 0 +-5.72 0.438 -1.78 0 0 0 0 0 0 0 +-5.72 0.42 -1.78 0 0 0 0 0 0 0 +-5.721 0.402 -1.78 0 0 0 0 0 0 0 +-5.722 0.384 -1.78 0 0 0 0 0 0 0 +-5.718 0.366 -1.778 0 0 0 0 0 0 0 +-5.725 0.348 -1.78 0 0 0 0 0 0 0 +-5.733 0.33 -1.782 0 0 0 0 0 0 0 +-5.724 0.321 -1.779 0 0 0 0 0 0 0 +-5.733 0.303 -1.782 0 0 0 0 0 0 0 +-5.736 0.285 -1.782 0 0 0 0 0 0 0 +-5.735 0.267 -1.782 0 0 0 0 0 0 0 +-5.741 0.25 -1.784 0 0 0 0 0 0 0 +-5.75 0.232 -1.786 0 0 0 0 0 0 0 +-5.743 0.213 -1.784 0 0 0 0 0 0 0 +-5.747 0.205 -1.785 0 0 0 0 0 0 0 +-5.753 0.187 -1.787 0 0 0 0 0 0 0 +-5.75 0.168 -1.785 0 0 0 0 0 0 0 +-5.749 0.15 -1.785 0 0 0 0 0 0 0 +-5.755 0.132 -1.787 0 0 0 0 0 0 0 +-5.755 0.114 -1.787 0 0 0 0 0 0 0 +-5.767 0.096 -1.79 0 0 0 0 0 0 0 +-5.771 0.087 -1.792 0 0 0 0 0 0 0 +-5.754 0.069 -1.786 0 0 0 0 0 0 0 +-5.762 0.051 -1.789 0 0 0 0 0 0 0 +-5.758 0.033 -1.787 0 0 0 0 0 0 0 +-5.751 0.015 -1.785 0 0 0 0 0 0 0 +-5.756 -0.003 -1.787 0 0 0 0 0 0 0 +-5.764 -0.021 -1.789 0 0 0 0 0 0 0 +-5.758 -0.03 -1.787 0 0 0 0 0 0 0 +-5.752 -0.048 -1.785 0 0 0 0 0 0 0 +-5.744 -0.066 -1.783 0 0 0 0 0 0 0 +-5.947 -0.088 -1.85 0 0 0 0 0 0 0 +-5.958 -0.107 -1.854 0 0 0 0 0 0 0 +-5.96 -0.126 -1.855 0 0 0 0 0 0 0 +-5.954 -0.145 -1.853 0 0 0 0 0 0 0 +-5.951 -0.163 -1.852 0 0 0 0 0 0 0 +-5.949 -0.182 -1.851 0 0 0 0 0 0 0 +-5.949 -0.191 -1.851 0 0 0 0 0 0 0 +-5.959 -0.21 -1.855 0 0 0 0 0 0 0 +-5.947 -0.229 -1.851 0 0 0 0 0 0 0 +-5.935 -0.247 -1.848 0 0 0 0 0 0 0 +-5.948 -0.266 -1.852 0 0 0 0 0 0 0 +-5.943 -0.284 -1.851 0 0 0 0 0 0 0 +-5.938 -0.303 -1.85 0 0 0 0 0 0 0 +-5.928 -0.312 -1.846 0 0 0 0 0 0 0 +-5.927 -0.33 -1.846 0 0 0 0 0 0 0 +-5.917 -0.348 -1.843 0 0 0 0 0 0 0 +-5.921 -0.367 -1.845 0 0 0 0 0 0 0 +-5.918 -0.386 -1.845 0 0 0 0 0 0 0 +-5.93 -0.405 -1.849 0 0 0 0 0 0 0 +-5.912 -0.423 -1.843 0 0 0 0 0 0 0 +-5.923 -0.433 -1.847 0 0 0 0 0 0 0 +-5.918 -0.451 -1.846 0 0 0 0 0 0 0 +-5.918 -0.47 -1.846 0 0 0 0 0 0 0 +-5.913 -0.488 -1.845 0 0 0 0 0 0 0 +-5.915 -0.507 -1.846 0 0 0 0 0 0 0 +-5.908 -0.525 -1.845 0 0 0 0 0 0 0 +-5.896 -0.543 -1.841 0 0 0 0 0 0 0 +-5.892 -0.552 -1.84 0 0 0 0 0 0 0 +-5.909 -0.572 -1.846 0 0 0 0 0 0 0 +-5.892 -0.589 -1.841 0 0 0 0 0 0 0 +-5.888 -0.607 -1.841 0 0 0 0 0 0 0 +-5.896 -0.627 -1.844 0 0 0 0 0 0 0 +-5.886 -0.645 -1.841 0 0 0 0 0 0 0 +-5.886 -0.663 -1.842 0 0 0 0 0 0 0 +-5.887 -0.673 -1.843 0 0 0 0 0 0 0 +-5.879 -0.691 -1.841 0 0 0 0 0 0 0 +-5.877 -0.709 -1.841 0 0 0 0 0 0 0 +-5.873 -0.727 -1.84 0 0 0 0 0 0 0 +-5.878 -0.747 -1.843 0 0 0 0 0 0 0 +-5.87 -0.764 -1.841 0 0 0 0 0 0 0 +-5.871 -0.783 -1.842 0 0 0 0 0 0 0 +-5.863 -0.801 -1.84 0 0 0 0 0 0 0 +-5.858 -0.81 -1.839 0 0 0 0 0 0 0 +-5.863 -0.829 -1.841 0 0 0 0 0 0 0 +-5.853 -0.846 -1.839 0 0 0 0 0 0 0 +-5.862 -0.867 -1.843 0 0 0 0 0 0 0 +-5.851 -0.884 -1.84 0 0 0 0 0 0 0 +-5.858 -0.904 -1.843 0 0 0 0 0 0 0 +-5.836 -0.919 -1.837 0 0 0 0 0 0 0 +-5.833 -0.928 -1.836 0 0 0 0 0 0 0 +-5.839 -0.948 -1.839 0 0 0 0 0 0 0 +-5.823 -0.964 -1.835 0 0 0 0 0 0 0 +-5.82 -0.982 -1.835 0 0 0 0 0 0 0 +-5.826 -1.002 -1.838 0 0 0 0 0 0 0 +-5.821 -1.02 -1.838 0 0 0 0 0 0 0 +-5.814 -1.038 -1.836 0 0 0 0 0 0 0 +-5.831 -1.05 -1.843 0 0 0 0 0 0 0 +-5.8 -1.063 -1.833 0 0 0 0 0 0 0 +-5.806 -1.083 -1.836 0 0 0 0 0 0 0 +-5.799 -1.101 -1.835 0 0 0 0 0 0 0 +-5.788 -1.118 -1.833 0 0 0 0 0 0 0 +-5.784 -1.136 -1.833 0 0 0 0 0 0 0 +-5.794 -1.157 -1.837 0 0 0 0 0 0 0 +-5.777 -1.163 -1.832 0 0 0 0 0 0 0 +-5.775 -1.181 -1.833 0 0 0 0 0 0 0 +-5.779 -1.201 -1.835 0 0 0 0 0 0 0 +-5.762 -1.216 -1.831 0 0 0 0 0 0 0 +-5.76 -1.235 -1.831 0 0 0 0 0 0 0 +-5.782 -1.259 -1.84 0 0 0 0 0 0 0 +-5.762 -1.273 -1.834 0 0 0 0 0 0 0 +-5.763 -1.283 -1.836 0 0 0 0 0 0 0 +-5.763 -1.302 -1.837 0 0 0 0 0 0 0 +-5.746 -1.317 -1.833 0 0 0 0 0 0 0 +-5.744 -1.335 -1.833 0 0 0 0 0 0 0 +-5.726 -1.35 -1.829 0 0 0 0 0 0 0 +-5.722 -1.368 -1.829 0 0 0 0 0 0 0 +-5.734 -1.39 -1.834 0 0 0 0 0 0 0 +-5.725 -1.397 -1.832 0 0 0 0 0 0 0 +-5.708 -1.412 -1.828 0 0 0 0 0 0 0 +-5.714 -1.433 -1.831 0 0 0 0 0 0 0 +-5.71 -1.451 -1.831 0 0 0 0 0 0 0 +-5.699 -1.467 -1.829 0 0 0 0 0 0 0 +-5.704 -1.488 -1.833 0 0 0 0 0 0 0 +-5.692 -1.504 -1.83 0 0 0 0 0 0 0 +-5.693 -1.514 -1.831 0 0 0 0 0 0 0 +-5.678 -1.528 -1.828 0 0 0 0 0 0 0 +-5.685 -1.55 -1.832 0 0 0 0 0 0 0 +-5.673 -1.566 -1.829 0 0 0 0 0 0 0 +-5.674 -1.585 -1.831 0 0 0 0 0 0 0 +-5.667 -1.602 -1.831 0 0 0 0 0 0 0 +-5.669 -1.622 -1.833 0 0 0 0 0 0 0 +-5.648 -1.635 -1.828 0 0 0 0 0 0 0 +-5.645 -1.644 -1.828 0 0 0 0 0 0 0 +-5.651 -1.665 -1.831 0 0 0 0 0 0 0 +-5.636 -1.68 -1.828 0 0 0 0 0 0 0 +-5.644 -1.702 -1.833 0 0 0 0 0 0 0 +-5.637 -1.719 -1.832 0 0 0 0 0 0 0 +-5.639 -1.739 -1.834 0 0 0 0 0 0 0 +-5.622 -1.753 -1.831 0 0 0 0 0 0 0 +-5.623 -1.763 -1.832 0 0 0 0 0 0 0 +-5.612 -1.779 -1.83 0 0 0 0 0 0 0 +-5.42 -2.299 -1.83 0 0 0 0 0 0 0 +-5.412 -2.316 -1.83 0 0 0 0 0 0 0 +-5.391 -2.317 -1.824 0 0 0 0 0 0 0 +-5.386 -2.335 -1.824 0 0 0 0 0 0 0 +-5.38 -2.352 -1.825 0 0 0 0 0 0 0 +-5.368 -2.367 -1.823 0 0 0 0 0 0 0 +-5.365 -2.386 -1.825 0 0 0 0 0 0 0 +-5.344 -2.397 -1.82 0 0 0 0 0 0 0 +-5.343 -2.417 -1.823 0 0 0 0 0 0 0 +-5.348 -2.429 -1.826 0 0 0 0 0 0 0 +-5.33 -2.441 -1.822 0 0 0 0 0 0 0 +-5.324 -2.459 -1.823 0 0 0 0 0 0 0 +-5.313 -2.474 -1.821 0 0 0 0 0 0 0 +-5.307 -2.491 -1.822 0 0 0 0 0 0 0 +-5.294 -2.505 -1.82 0 0 0 0 0 0 0 +-5.291 -2.524 -1.822 0 0 0 0 0 0 0 +-5.289 -2.534 -1.823 0 0 0 0 0 0 0 +-5.279 -2.549 -1.822 0 0 0 0 0 0 0 +-5.261 -2.561 -1.818 0 0 0 0 0 0 0 +-5.26 -2.581 -1.821 0 0 0 0 0 0 0 +-5.248 -2.596 -1.819 0 0 0 0 0 0 0 +-5.245 -2.615 -1.821 0 0 0 0 0 0 0 +-5.23 -2.628 -1.819 0 0 0 0 0 0 0 +-5.234 -2.65 -1.823 0 0 0 0 0 0 0 +-5.221 -2.654 -1.82 0 0 0 0 0 0 0 +-5.203 -2.665 -1.816 0 0 0 0 0 0 0 +-5.203 -2.686 -1.819 0 0 0 0 0 0 0 +-5.189 -2.7 -1.817 0 0 0 0 0 0 0 +-5.194 -2.723 -1.823 0 0 0 0 0 0 0 +-5.167 -2.729 -1.816 0 0 0 0 0 0 0 +-5.173 -2.754 -1.821 0 0 0 0 0 0 0 +-5.166 -2.76 -1.82 0 0 0 0 0 0 0 +-5.155 -2.775 -1.819 0 0 0 0 0 0 0 +-5.145 -2.791 -1.819 0 0 0 0 0 0 0 +-5.139 -2.809 -1.82 0 0 0 0 0 0 0 +-5.136 -2.828 -1.822 0 0 0 0 0 0 0 +-5.125 -2.843 -1.821 0 0 0 0 0 0 0 +-5.134 -2.869 -1.828 0 0 0 0 0 0 0 +-5.121 -2.873 -1.825 0 0 0 0 0 0 0 +-5.114 -2.89 -1.826 0 0 0 0 0 0 0 +-5.097 -2.901 -1.823 0 0 0 0 0 0 0 +-5.096 -2.922 -1.826 0 0 0 0 0 0 0 +-5.093 -2.941 -1.828 0 0 0 0 0 0 0 +-5.074 -2.952 -1.824 0 0 0 0 0 0 0 +-5.066 -2.969 -1.825 0 0 0 0 0 0 0 +-5.063 -2.977 -1.826 0 0 0 0 0 0 0 +-5.062 -2.998 -1.829 0 0 0 0 0 0 0 +-5.069 -3.024 -1.835 0 0 0 0 0 0 0 +-5.071 -3.047 -1.839 0 0 0 0 0 0 0 +-5.056 -3.06 -1.838 0 0 0 0 0 0 0 +-5.027 -3.064 -1.83 0 0 0 0 0 0 0 +-4.995 -3.065 -1.821 0 0 0 0 0 0 0 +-4.969 -3.06 -1.813 0 0 0 0 0 0 0 +-4.976 -3.086 -1.819 0 0 0 0 0 0 0 +-4.964 -3.1 -1.819 0 0 0 0 0 0 0 +-4.964 -3.122 -1.823 0 0 0 0 0 0 0 +-4.946 -3.133 -1.819 0 0 0 0 0 0 0 +-4.943 -3.152 -1.822 0 0 0 0 0 0 0 +-4.912 -3.154 -1.814 0 0 0 0 0 0 0 +-4.911 -3.164 -1.815 0 0 0 0 0 0 0 +-4.896 -3.176 -1.813 0 0 0 0 0 0 0 +-4.881 -3.189 -1.811 0 0 0 0 0 0 0 +-4.876 -3.207 -1.813 0 0 0 0 0 0 0 +-4.864 -3.221 -1.812 0 0 0 0 0 0 0 +-4.852 -3.236 -1.812 0 0 0 0 0 0 0 +-4.834 -3.245 -1.809 0 0 0 0 0 0 0 +-4.834 -3.256 -1.811 0 0 0 0 0 0 0 +-4.821 -3.269 -1.809 0 0 0 0 0 0 0 +-4.815 -3.288 -1.811 0 0 0 0 0 0 0 +-4.798 -3.298 -1.809 0 0 0 0 0 0 0 +-4.786 -3.312 -1.808 0 0 0 0 0 0 0 +-4.774 -3.326 -1.807 0 0 0 0 0 0 0 +-4.765 -3.342 -1.808 0 0 0 0 0 0 0 +-4.755 -3.357 -1.808 0 0 0 0 0 0 0 +-4.751 -3.366 -1.809 0 0 0 0 0 0 0 +-4.738 -3.379 -1.807 0 0 0 0 0 0 0 +-4.725 -3.392 -1.807 0 0 0 0 0 0 0 +-4.715 -3.407 -1.807 0 0 0 0 0 0 0 +-4.709 -3.425 -1.809 0 0 0 0 0 0 0 +-4.693 -3.437 -1.807 0 0 0 0 0 0 0 +-4.688 -3.456 -1.809 0 0 0 0 0 0 0 +-4.683 -3.463 -1.809 0 0 0 0 0 0 0 +-4.668 -3.475 -1.807 0 0 0 0 0 0 0 +-4.661 -3.493 -1.809 0 0 0 0 0 0 0 +-4.644 -3.503 -1.807 0 0 0 0 0 0 0 +-4.633 -3.517 -1.807 0 0 0 0 0 0 0 +-4.618 -3.528 -1.805 0 0 0 0 0 0 0 +-4.609 -3.545 -1.806 0 0 0 0 0 0 0 +-4.607 -3.555 -1.807 0 0 0 0 0 0 0 +-4.585 -3.561 -1.803 0 0 0 0 0 0 0 +-4.573 -3.574 -1.802 0 0 0 0 0 0 0 +-4.569 -3.594 -1.806 0 0 0 0 0 0 0 +-4.55 -3.603 -1.802 0 0 0 0 0 0 0 +-4.543 -3.621 -1.804 0 0 0 0 0 0 0 +-4.53 -3.634 -1.804 0 0 0 0 0 0 0 +-4.529 -3.644 -1.806 0 0 0 0 0 0 0 +-4.507 -3.65 -1.801 0 0 0 0 0 0 0 +-4.497 -3.666 -1.802 0 0 0 0 0 0 0 +-4.488 -3.682 -1.803 0 0 0 0 0 0 0 +-4.467 -3.688 -1.799 0 0 0 0 0 0 0 +-4.455 -3.702 -1.799 0 0 0 0 0 0 0 +-4.449 -3.721 -1.801 0 0 0 0 0 0 0 +-4.438 -3.723 -1.799 0 0 0 0 0 0 0 +-4.426 -3.737 -1.799 0 0 0 0 0 0 0 +-4.43 -3.764 -1.806 0 0 0 0 0 0 0 +-4.405 -3.767 -1.8 0 0 0 0 0 0 0 +-4.386 -3.774 -1.797 0 0 0 0 0 0 0 +-4.384 -3.797 -1.801 0 0 0 0 0 0 0 +-4.368 -3.807 -1.799 0 0 0 0 0 0 0 +-4.351 -3.804 -1.794 0 0 0 0 0 0 0 +-4.353 -3.83 -1.8 0 0 0 0 0 0 0 +-4.327 -3.831 -1.794 0 0 0 0 0 0 0 +-4.315 -3.845 -1.794 0 0 0 0 0 0 0 +-4.312 -3.867 -1.799 0 0 0 0 0 0 0 +-4.288 -3.869 -1.793 0 0 0 0 0 0 0 +-4.284 -3.89 -1.797 0 0 0 0 0 0 0 +-4.282 -3.901 -1.799 0 0 0 0 0 0 0 +-4.256 -3.901 -1.792 0 0 0 0 0 0 0 +-4.249 -3.92 -1.795 0 0 0 0 0 0 0 +-4.238 -3.934 -1.795 0 0 0 0 0 0 0 +-4.219 -3.941 -1.792 0 0 0 0 0 0 0 +-4.202 -3.951 -1.79 0 0 0 0 0 0 0 +-4.202 -3.976 -1.796 0 0 0 0 0 0 0 +-4.179 -3.978 -1.791 0 0 0 0 0 0 0 +-4.178 -3.99 -1.794 0 0 0 0 0 0 0 +-4.172 -4.01 -1.797 0 0 0 0 0 0 0 +-4.161 -4.024 -1.797 0 0 0 0 0 0 0 +-4.139 -4.028 -1.793 0 0 0 0 0 0 0 +-4.134 -4.049 -1.797 0 0 0 0 0 0 0 +-4.109 -4.05 -1.791 0 0 0 0 0 0 0 +-4.105 -4.071 -1.795 0 0 0 0 0 0 0 +-4.104 -4.083 -1.797 0 0 0 0 0 0 0 +-4.085 -4.09 -1.795 0 0 0 0 0 0 0 +-4.066 -4.096 -1.792 0 0 0 0 0 0 0 +-4.056 -4.112 -1.793 0 0 0 0 0 0 0 +-4.033 -4.115 -1.789 0 0 0 0 0 0 0 +-4.031 -4.138 -1.794 0 0 0 0 0 0 0 +-4.011 -4.144 -1.79 0 0 0 0 0 0 0 +-4.004 -4.149 -1.79 0 0 0 0 0 0 0 +-4.004 -4.175 -1.796 0 0 0 0 0 0 0 +-3.981 -4.178 -1.792 0 0 0 0 0 0 0 +-3.971 -4.194 -1.793 0 0 0 0 0 0 0 +-3.958 -4.206 -1.793 0 0 0 0 0 0 0 +-3.946 -4.22 -1.794 0 0 0 0 0 0 0 +-3.922 -4.221 -1.789 0 0 0 0 0 0 0 +-3.917 -4.229 -1.789 0 0 0 0 0 0 0 +-3.914 -4.252 -1.794 0 0 0 0 0 0 0 +-3.898 -4.262 -1.793 0 0 0 0 0 0 0 +-3.879 -4.268 -1.79 0 0 0 0 0 0 0 +-3.867 -4.282 -1.791 0 0 0 0 0 0 0 +-3.855 -4.295 -1.792 0 0 0 0 0 0 0 +-3.838 -4.303 -1.79 0 0 0 0 0 0 0 +-3.837 -4.316 -1.793 0 0 0 0 0 0 0 +-3.821 -4.325 -1.792 0 0 0 0 0 0 0 +-3.809 -4.339 -1.792 0 0 0 0 0 0 0 +-3.791 -4.346 -1.79 0 0 0 0 0 0 0 +-3.778 -4.358 -1.79 0 0 0 0 0 0 0 +-3.764 -4.37 -1.79 0 0 0 0 0 0 0 +-3.75 -4.382 -1.79 0 0 0 0 0 0 0 +-3.748 -4.394 -1.793 0 0 0 0 0 0 0 +-3.743 -4.416 -1.797 0 0 0 0 0 0 0 +-3.723 -4.42 -1.794 0 0 0 0 0 0 0 +-3.716 -4.44 -1.798 0 0 0 0 0 0 0 +-3.723 -4.477 -1.809 0 0 0 0 0 0 0 +-3.71 -4.49 -1.809 0 0 0 0 0 0 0 +-3.687 -4.491 -1.805 0 0 0 0 0 0 0 +-3.688 -4.506 -1.809 0 0 0 0 0 0 0 +-3.67 -4.513 -1.807 0 0 0 0 0 0 0 +-3.662 -4.532 -1.81 0 0 0 0 0 0 0 +-3.639 -4.533 -1.806 0 0 0 0 0 0 0 +-3.628 -4.549 -1.807 0 0 0 0 0 0 0 +-3.623 -4.572 -1.812 0 0 0 0 0 0 0 +-3.597 -4.569 -1.806 0 0 0 0 0 0 0 +-3.602 -4.589 -1.812 0 0 0 0 0 0 0 +-3.595 -4.611 -1.817 0 0 0 0 0 0 0 +-3.594 -4.639 -1.824 0 0 0 0 0 0 0 +-3.585 -4.658 -1.827 0 0 0 0 0 0 0 +-3.545 -4.636 -1.813 0 0 0 0 0 0 0 +-3.521 -4.635 -1.808 0 0 0 0 0 0 0 +-3.506 -4.644 -1.807 0 0 0 0 0 0 0 +-3.502 -4.654 -1.809 0 0 0 0 0 0 0 +-3.479 -4.655 -1.805 0 0 0 0 0 0 0 +-3.46 -4.66 -1.802 0 0 0 0 0 0 0 +-3.435 -4.657 -1.797 0 0 0 0 0 0 0 +-3.423 -4.67 -1.798 0 0 0 0 0 0 0 +-3.404 -4.675 -1.795 0 0 0 0 0 0 0 +-3.392 -4.69 -1.797 0 0 0 0 0 0 0 +-3.382 -4.691 -1.795 0 0 0 0 0 0 0 +-3.359 -4.691 -1.791 0 0 0 0 0 0 0 +-3.344 -4.701 -1.791 0 0 0 0 0 0 0 +-3.33 -4.712 -1.791 0 0 0 0 0 0 0 +-3.317 -4.725 -1.792 0 0 0 0 0 0 0 +-3.299 -4.731 -1.79 0 0 0 0 0 0 0 +-3.282 -4.738 -1.789 0 0 0 0 0 0 0 +-3.281 -4.753 -1.793 0 0 0 0 0 0 0 +-3.26 -4.754 -1.789 0 0 0 0 0 0 0 +-3.243 -4.762 -1.789 0 0 0 0 0 0 0 +-3.23 -4.774 -1.789 0 0 0 0 0 0 0 +-3.211 -4.779 -1.787 0 0 0 0 0 0 0 +-3.196 -4.789 -1.787 0 0 0 0 0 0 0 +-3.182 -4.801 -1.788 0 0 0 0 0 0 0 +-3.175 -4.806 -1.788 0 0 0 0 0 0 0 +-3.156 -4.81 -1.785 0 0 0 0 0 0 0 +-3.142 -4.823 -1.787 0 0 0 0 0 0 0 +-3.127 -4.833 -1.787 0 0 0 0 0 0 0 +-3.11 -4.839 -1.785 0 0 0 0 0 0 0 +-3.096 -4.851 -1.786 0 0 0 0 0 0 0 +-3.08 -4.859 -1.785 0 0 0 0 0 0 0 +-3.062 -4.865 -1.784 0 0 0 0 0 0 0 +-3.052 -4.865 -1.782 0 0 0 0 0 0 0 +-3.038 -4.878 -1.784 0 0 0 0 0 0 0 +-3.026 -4.892 -1.785 0 0 0 0 0 0 0 +-3.011 -4.902 -1.785 0 0 0 0 0 0 0 +-2.992 -4.906 -1.784 0 0 0 0 0 0 0 +-2.978 -4.917 -1.784 0 0 0 0 0 0 0 +-2.959 -4.922 -1.782 0 0 0 0 0 0 0 +-2.952 -4.926 -1.782 0 0 0 0 0 0 0 +-2.936 -4.936 -1.782 0 0 0 0 0 0 0 +-2.921 -4.945 -1.782 0 0 0 0 0 0 0 +-2.902 -4.949 -1.78 0 0 0 0 0 0 0 +-2.895 -4.973 -1.786 0 0 0 0 0 0 0 +-2.877 -4.977 -1.784 0 0 0 0 0 0 0 +-2.856 -4.978 -1.781 0 0 0 0 0 0 0 +-2.849 -4.982 -1.781 0 0 0 0 0 0 0 +-2.841 -5.006 -1.787 0 0 0 0 0 0 0 +-2.816 -4.998 -1.78 0 0 0 0 0 0 0 +-2.802 -5.011 -1.782 0 0 0 0 0 0 0 +-2.794 -5.033 -1.787 0 0 0 0 0 0 0 +-2.77 -5.026 -1.781 0 0 0 0 0 0 0 +-2.754 -5.035 -1.781 0 0 0 0 0 0 0 +-2.748 -5.043 -1.782 0 0 0 0 0 0 0 +-2.724 -5.036 -1.777 0 0 0 0 0 0 0 +-2.717 -5.062 -1.783 0 0 0 0 0 0 0 +-2.7 -5.067 -1.782 0 0 0 0 0 0 0 +-2.679 -5.067 -1.778 0 0 0 0 0 0 0 +-2.667 -5.082 -1.781 0 0 0 0 0 0 0 +-2.653 -5.094 -1.782 0 0 0 0 0 0 0 +-2.641 -5.091 -1.78 0 0 0 0 0 0 0 +-2.628 -5.104 -1.782 0 0 0 0 0 0 0 +-2.613 -5.116 -1.783 0 0 0 0 0 0 0 +-2.592 -5.114 -1.779 0 0 0 0 0 0 0 +-2.572 -5.114 -1.776 0 0 0 0 0 0 0 +-2.562 -5.135 -1.781 0 0 0 0 0 0 0 +-2.54 -5.13 -1.776 0 0 0 0 0 0 0 +-2.533 -5.137 -1.777 0 0 0 0 0 0 0 +-2.523 -5.157 -1.782 0 0 0 0 0 0 0 +-2.501 -5.153 -1.777 0 0 0 0 0 0 0 +-2.485 -5.161 -1.777 0 0 0 0 0 0 0 +-2.473 -5.177 -1.78 0 0 0 0 0 0 0 +-2.461 -5.195 -1.784 0 0 0 0 0 0 0 +-2.441 -5.194 -1.781 0 0 0 0 0 0 0 +-2.436 -5.205 -1.784 0 0 0 0 0 0 0 +-2.416 -5.206 -1.781 0 0 0 0 0 0 0 +-2.402 -5.218 -1.783 0 0 0 0 0 0 0 +-2.387 -5.228 -1.784 0 0 0 0 0 0 0 +-2.361 -5.214 -1.776 0 0 0 0 0 0 0 +-2.351 -5.237 -1.782 0 0 0 0 0 0 0 +-2.34 -5.255 -1.785 0 0 0 0 0 0 0 +-2.336 -5.269 -1.789 0 0 0 0 0 0 0 +-2.329 -5.299 -1.797 0 0 0 0 0 0 0 +-2.31 -5.301 -1.795 0 0 0 0 0 0 0 +-2.292 -5.305 -1.794 0 0 0 0 0 0 0 +-2.275 -5.312 -1.794 0 0 0 0 0 0 0 +-2.279 -5.367 -1.811 0 0 0 0 0 0 0 +-2.372 -5.638 -1.906 0 0 0 0 0 0 0 +-2.249 -5.367 -1.807 0 0 0 0 0 0 0 +-2.209 -5.318 -1.787 0 0 0 0 0 0 0 +-2.175 -5.331 -1.787 0 0 0 0 0 0 0 +-2.157 -5.335 -1.786 0 0 0 0 0 0 0 +-2.141 -5.343 -1.787 0 0 0 0 0 0 0 +-2.118 -5.334 -1.781 0 0 0 0 0 0 0 +-2.102 -5.316 -1.773 0 0 0 0 0 0 0 +-2.08 -5.31 -1.769 0 0 0 0 0 0 0 +-2.058 -5.303 -1.764 0 0 0 0 0 0 0 +-2.043 -5.313 -1.765 0 0 0 0 0 0 0 +-2.023 -5.31 -1.762 0 0 0 0 0 0 0 +-2.001 -5.304 -1.758 0 0 0 0 0 0 0 +-1.982 -5.303 -1.755 0 0 0 0 0 0 0 +-1.974 -5.308 -1.756 0 0 0 0 0 0 0 +-1.958 -5.316 -1.756 0 0 0 0 0 0 0 +-1.94 -5.318 -1.755 0 0 0 0 0 0 0 +-1.924 -5.325 -1.755 0 0 0 0 0 0 0 +-1.904 -5.323 -1.753 0 0 0 0 0 0 0 +-1.889 -5.335 -1.755 0 0 0 0 0 0 0 +-1.871 -5.337 -1.753 0 0 0 0 0 0 0 +-1.862 -5.338 -1.753 0 0 0 0 0 0 0 +-1.843 -5.337 -1.75 0 0 0 0 0 0 0 +-1.826 -5.343 -1.75 0 0 0 0 0 0 0 +-1.806 -5.337 -1.746 0 0 0 0 0 0 0 +-1.793 -5.354 -1.75 0 0 0 0 0 0 0 +-1.771 -5.345 -1.745 0 0 0 0 0 0 0 +-1.754 -5.351 -1.745 0 0 0 0 0 0 0 +-1.74 -5.363 -1.748 0 0 0 0 0 0 0 +-1.728 -5.355 -1.744 0 0 0 0 0 0 0 +-1.711 -5.361 -1.744 0 0 0 0 0 0 0 +-1.697 -5.373 -1.746 0 0 0 0 0 0 0 +-1.679 -5.375 -1.745 0 0 0 0 0 0 0 +-1.661 -5.378 -1.745 0 0 0 0 0 0 0 +-1.644 -5.382 -1.744 0 0 0 0 0 0 0 +-1.625 -5.38 -1.741 0 0 0 0 0 0 0 +-1.616 -5.382 -1.741 0 0 0 0 0 0 0 +-1.596 -5.376 -1.738 0 0 0 0 0 0 0 +-1.579 -5.381 -1.738 0 0 0 0 0 0 0 +-1.565 -5.395 -1.741 0 0 0 0 0 0 0 +-1.546 -5.393 -1.738 0 0 0 0 0 0 0 +-1.528 -5.394 -1.737 0 0 0 0 0 0 0 +-1.519 -5.396 -1.737 0 0 0 0 0 0 0 +-1.502 -5.401 -1.737 0 0 0 0 0 0 0 +-1.486 -5.408 -1.738 0 0 0 0 0 0 0 +-1.47 -5.416 -1.739 0 0 0 0 0 0 0 +-1.451 -5.415 -1.737 0 0 0 0 0 0 0 +-1.433 -5.414 -1.735 0 0 0 0 0 0 0 +-1.414 -5.409 -1.732 0 0 0 0 0 0 0 +-1.399 -5.425 -1.736 0 0 0 0 0 0 0 +-1.39 -5.422 -1.734 0 0 0 0 0 0 0 +-1.373 -5.426 -1.734 0 0 0 0 0 0 0 +-1.356 -5.434 -1.735 0 0 0 0 0 0 0 +-1.337 -5.429 -1.732 0 0 0 0 0 0 0 +-1.32 -5.433 -1.732 0 0 0 0 0 0 0 +-1.305 -5.445 -1.734 0 0 0 0 0 0 0 +-1.285 -5.436 -1.73 0 0 0 0 0 0 0 +-1.279 -5.451 -1.734 0 0 0 0 0 0 0 +-1.261 -5.449 -1.733 0 0 0 0 0 0 0 +-1.243 -5.451 -1.732 0 0 0 0 0 0 0 +-1.227 -5.459 -1.733 0 0 0 0 0 0 0 +-1.208 -5.453 -1.73 0 0 0 0 0 0 0 +-1.194 -5.476 -1.736 0 0 0 0 0 0 0 +-1.176 -5.472 -1.734 0 0 0 0 0 0 0 +-1.168 -5.477 -1.735 0 0 0 0 0 0 0 +-1.149 -5.476 -1.733 0 0 0 0 0 0 0 +-1.134 -5.488 -1.736 0 0 0 0 0 0 0 +-1.114 -5.479 -1.732 0 0 0 0 0 0 0 +-1.097 -5.484 -1.733 0 0 0 0 0 0 0 +-1.081 -5.49 -1.733 0 0 0 0 0 0 0 +-1.063 -5.489 -1.732 0 0 0 0 0 0 0 +-1.055 -5.495 -1.733 0 0 0 0 0 0 0 +-1.039 -5.505 -1.736 0 0 0 0 0 0 0 +-1.023 -5.52 -1.74 0 0 0 0 0 0 0 +-1.002 -5.499 -1.731 0 0 0 0 0 0 0 +-0.987 -5.513 -1.735 0 0 0 0 0 0 0 +-0.968 -5.509 -1.733 0 0 0 0 0 0 0 +-0.952 -5.519 -1.735 0 0 0 0 0 0 0 +-0.942 -5.515 -1.733 0 0 0 0 0 0 0 +-0.928 -5.537 -1.74 0 0 0 0 0 0 0 +-0.907 -5.519 -1.733 0 0 0 0 0 0 0 +-0.889 -5.518 -1.731 0 0 0 0 0 0 0 +-0.875 -5.539 -1.738 0 0 0 0 0 0 0 +-0.856 -5.535 -1.735 0 0 0 0 0 0 0 +-0.839 -5.539 -1.736 0 0 0 0 0 0 0 +-0.831 -5.544 -1.737 0 0 0 0 0 0 0 +-0.813 -5.539 -1.734 0 0 0 0 0 0 0 +-0.795 -5.544 -1.735 0 0 0 0 0 0 0 +-0.778 -5.548 -1.736 0 0 0 0 0 0 0 +-0.76 -5.543 -1.733 0 0 0 0 0 0 0 +-0.744 -5.56 -1.738 0 0 0 0 0 0 0 +-0.728 -5.568 -1.74 0 0 0 0 0 0 0 +-0.716 -5.543 -1.731 0 0 0 0 0 0 0 +-0.7 -5.564 -1.738 0 0 0 0 0 0 0 +-0.683 -5.565 -1.737 0 0 0 0 0 0 0 +-0.664 -5.559 -1.734 0 0 0 0 0 0 0 +-0.648 -5.571 -1.738 0 0 0 0 0 0 0 +-0.632 -5.588 -1.743 0 0 0 0 0 0 0 +-0.612 -5.567 -1.735 0 0 0 0 0 0 0 +-0.603 -5.568 -1.735 0 0 0 0 0 0 0 +-0.587 -5.581 -1.739 0 0 0 0 0 0 0 +-0.569 -5.574 -1.736 0 0 0 0 0 0 0 +-0.552 -5.587 -1.74 0 0 0 0 0 0 0 +-0.534 -5.583 -1.738 0 0 0 0 0 0 0 +-0.518 -5.599 -1.743 0 0 0 0 0 0 0 +-0.5 -5.603 -1.743 0 0 0 0 0 0 0 +-0.491 -5.592 -1.74 0 0 0 0 0 0 0 +-0.473 -5.59 -1.738 0 0 0 0 0 0 0 +-0.456 -5.599 -1.741 0 0 0 0 0 0 0 +-0.438 -5.595 -1.739 0 0 0 0 0 0 0 +-0.42 -5.594 -1.738 0 0 0 0 0 0 0 +-0.404 -5.613 -1.744 0 0 0 0 0 0 0 +-0.385 -5.601 -1.74 0 0 0 0 0 0 0 +-0.377 -5.603 -1.74 0 0 0 0 0 0 0 +-0.359 -5.606 -1.741 0 0 0 0 0 0 0 +-0.341 -5.602 -1.739 0 0 0 0 0 0 0 +-0.324 -5.604 -1.74 0 0 0 0 0 0 0 +-0.306 -5.613 -1.742 0 0 0 0 0 0 0 +-0.289 -5.618 -1.743 0 0 0 0 0 0 0 +-0.271 -5.609 -1.74 0 0 0 0 0 0 0 +-0.262 -5.61 -1.74 0 0 0 0 0 0 0 +-0.245 -5.62 -1.743 0 0 0 0 0 0 0 +-0.227 -5.615 -1.741 0 0 0 0 0 0 0 +-0.209 -5.619 -1.743 0 0 0 0 0 0 0 +-0.192 -5.62 -1.743 0 0 0 0 0 0 0 +-0.174 -5.613 -1.74 0 0 0 0 0 0 0 +-0.156 -5.619 -1.742 0 0 0 0 0 0 0 +-0.148 -5.627 -1.745 0 0 0 0 0 0 0 +-0.13 -5.628 -1.745 0 0 0 0 0 0 0 +-0.112 -5.618 -1.741 0 0 0 0 0 0 0 +-0.095 -5.632 -1.746 0 0 0 0 0 0 0 +-0.077 -5.632 -1.746 0 0 0 0 0 0 0 +-0.059 -5.625 -1.743 0 0 0 0 0 0 0 +-0.042 -5.625 -1.743 0 0 0 0 0 0 0 +-0.033 -5.635 -1.746 0 0 0 0 0 0 0 +-0.015 -5.637 -1.747 0 0 0 0 0 0 0 +0.003 -5.646 -1.75 0 0 0 0 0 0 0 +0.02 -5.631 -1.745 0 0 0 0 0 0 0 +0.038 -5.648 -1.751 0 0 0 0 0 0 0 +0.056 -5.644 -1.75 0 0 0 0 0 0 0 +0.074 -5.648 -1.751 0 0 0 0 0 0 0 +0.083 -5.651 -1.752 0 0 0 0 0 0 0 +0.1 -5.651 -1.752 0 0 0 0 0 0 0 +0.118 -5.651 -1.752 0 0 0 0 0 0 0 +0.136 -5.654 -1.753 0 0 0 0 0 0 0 +0.154 -5.655 -1.754 0 0 0 0 0 0 0 +0.171 -5.651 -1.753 0 0 0 0 0 0 0 +0.189 -5.652 -1.753 0 0 0 0 0 0 0 +0.207 -5.663 -1.757 0 0 0 0 0 0 0 +0.216 -5.661 -1.756 0 0 0 0 0 0 0 +0.234 -5.666 -1.758 0 0 0 0 0 0 0 +0.251 -5.65 -1.753 0 0 0 0 0 0 0 +0.27 -5.666 -1.759 0 0 0 0 0 0 0 +0.288 -5.663 -1.758 0 0 0 0 0 0 0 +0.306 -5.674 -1.762 0 0 0 0 0 0 0 +0.324 -5.665 -1.76 0 0 0 0 0 0 0 +0.333 -5.669 -1.761 0 0 0 0 0 0 0 +0.35 -5.666 -1.76 0 0 0 0 0 0 0 +0.368 -5.663 -1.76 0 0 0 0 0 0 0 +0.386 -5.669 -1.762 0 0 0 0 0 0 0 +0.404 -5.664 -1.761 0 0 0 0 0 0 0 +0.422 -5.665 -1.762 0 0 0 0 0 0 0 +0.432 -5.683 -1.768 0 0 0 0 0 0 0 +0.449 -5.668 -1.763 0 0 0 0 0 0 0 +0.467 -5.671 -1.765 0 0 0 0 0 0 0 +0.485 -5.673 -1.766 0 0 0 0 0 0 0 +0.503 -5.675 -1.767 0 0 0 0 0 0 0 +0.52 -5.66 -1.763 0 0 0 0 0 0 0 +0.54 -5.677 -1.769 0 0 0 0 0 0 0 +0.556 -5.659 -1.763 0 0 0 0 0 0 0 +0.565 -5.662 -1.765 0 0 0 0 0 0 0 +0.583 -5.662 -1.765 0 0 0 0 0 0 0 +0.6 -5.652 -1.763 0 0 0 0 0 0 0 +0.619 -5.66 -1.766 0 0 0 0 0 0 0 +0.636 -5.656 -1.765 0 0 0 0 0 0 0 +0.654 -5.656 -1.766 0 0 0 0 0 0 0 +0.673 -5.658 -1.767 0 0 0 0 0 0 0 +0.681 -5.655 -1.767 0 0 0 0 0 0 0 +0.699 -5.651 -1.766 0 0 0 0 0 0 0 +0.717 -5.652 -1.767 0 0 0 0 0 0 0 +0.734 -5.644 -1.765 0 0 0 0 0 0 0 +0.751 -5.64 -1.765 0 0 0 0 0 0 0 +0.767 -5.624 -1.76 0 0 0 0 0 0 0 +0.787 -5.639 -1.766 0 0 0 0 0 0 0 +0.796 -5.636 -1.765 0 0 0 0 0 0 0 +0.813 -5.629 -1.764 0 0 0 0 0 0 0 +0.832 -5.633 -1.766 0 0 0 0 0 0 0 +0.849 -5.626 -1.765 0 0 0 0 0 0 0 +0.866 -5.62 -1.763 0 0 0 0 0 0 0 +0.884 -5.621 -1.765 0 0 0 0 0 0 0 +0.901 -5.616 -1.764 0 0 0 0 0 0 0 +0.911 -5.616 -1.765 0 0 0 0 0 0 0 +0.927 -5.606 -1.762 0 0 0 0 0 0 0 +0.947 -5.616 -1.767 0 0 0 0 0 0 0 +0.962 -5.6 -1.762 0 0 0 0 0 0 0 +0.981 -5.606 -1.765 0 0 0 0 0 0 0 +1 -5.609 -1.767 0 0 0 0 0 0 0 +1.018 -5.606 -1.767 0 0 0 0 0 0 0 +1.028 -5.61 -1.769 0 0 0 0 0 0 0 +1.047 -5.616 -1.772 0 0 0 0 0 0 0 +1.062 -5.599 -1.768 0 0 0 0 0 0 0 +1.08 -5.598 -1.768 0 0 0 0 0 0 0 +1.102 -5.619 -1.777 0 0 0 0 0 0 0 +1.119 -5.608 -1.774 0 0 0 0 0 0 0 +1.14 -5.623 -1.78 0 0 0 0 0 0 0 +1.147 -5.612 -1.777 0 0 0 0 0 0 0 +1.163 -5.601 -1.775 0 0 0 0 0 0 0 +1.183 -5.606 -1.778 0 0 0 0 0 0 0 +1.211 -5.654 -1.795 0 0 0 0 0 0 0 +1.231 -5.66 -1.799 0 0 0 0 0 0 0 +1.254 -5.676 -1.806 0 0 0 0 0 0 0 +3.239 -4.857 -1.814 0 0 0 0 0 0 0 +3.252 -4.86 -1.817 0 0 0 0 0 0 0 +3.273 -4.859 -1.821 0 0 0 0 0 0 0 +3.272 -4.825 -1.811 0 0 0 0 0 0 0 +3.289 -4.816 -1.812 0 0 0 0 0 0 0 +3.297 -4.797 -1.808 0 0 0 0 0 0 0 +3.308 -4.78 -1.806 0 0 0 0 0 0 0 +3.32 -4.765 -1.804 0 0 0 0 0 0 0 +3.336 -4.756 -1.804 0 0 0 0 0 0 0 +3.343 -4.751 -1.804 0 0 0 0 0 0 0 +3.353 -4.733 -1.801 0 0 0 0 0 0 0 +3.376 -4.734 -1.806 0 0 0 0 0 0 0 +3.388 -4.719 -1.804 0 0 0 0 0 0 0 +3.398 -4.702 -1.802 0 0 0 0 0 0 0 +3.419 -4.699 -1.805 0 0 0 0 0 0 0 +3.432 -4.687 -1.804 0 0 0 0 0 0 0 +3.442 -4.685 -1.806 0 0 0 0 0 0 0 +3.459 -4.677 -1.807 0 0 0 0 0 0 0 +3.473 -4.666 -1.807 0 0 0 0 0 0 0 +3.487 -4.654 -1.806 0 0 0 0 0 0 0 +3.504 -4.646 -1.807 0 0 0 0 0 0 0 +3.529 -4.648 -1.813 0 0 0 0 0 0 0 +3.547 -4.656 -1.819 0 0 0 0 0 0 0 +3.567 -4.653 -1.822 0 0 0 0 0 0 0 +3.599 -4.664 -1.831 0 0 0 0 0 0 0 +3.618 -4.658 -1.834 0 0 0 0 0 0 0 +3.633 -4.647 -1.834 0 0 0 0 0 0 0 +3.652 -4.642 -1.836 0 0 0 0 0 0 0 +3.659 -4.62 -1.832 0 0 0 0 0 0 0 +3.643 -4.586 -1.82 0 0 0 0 0 0 0 +3.655 -4.571 -1.819 0 0 0 0 0 0 0 +3.668 -4.558 -1.818 0 0 0 0 0 0 0 +3.688 -4.553 -1.821 0 0 0 0 0 0 0 +3.702 -4.541 -1.821 0 0 0 0 0 0 0 +3.727 -4.543 -1.826 0 0 0 0 0 0 0 +3.738 -4.526 -1.824 0 0 0 0 0 0 0 +3.741 -4.516 -1.823 0 0 0 0 0 0 0 +3.748 -4.496 -1.819 0 0 0 0 0 0 0 +3.784 -4.51 -1.83 0 0 0 0 0 0 0 +3.797 -4.497 -1.829 0 0 0 0 0 0 0 +3.816 -4.49 -1.832 0 0 0 0 0 0 0 +3.834 -4.483 -1.834 0 0 0 0 0 0 0 +3.852 -4.475 -1.836 0 0 0 0 0 0 0 +3.866 -4.463 -1.836 0 0 0 0 0 0 0 +3.875 -4.46 -1.837 0 0 0 0 0 0 0 +3.885 -4.443 -1.835 0 0 0 0 0 0 0 +3.903 -4.435 -1.837 0 0 0 0 0 0 0 +3.933 -4.441 -1.845 0 0 0 0 0 0 0 +3.941 -4.422 -1.842 0 0 0 0 0 0 0 +3.945 -4.398 -1.837 0 0 0 0 0 0 0 +3.967 -4.396 -1.841 0 0 0 0 0 0 0 +3.976 -4.391 -1.842 0 0 0 0 0 0 0 +3.983 -4.371 -1.839 0 0 0 0 0 0 0 +3.997 -4.359 -1.839 0 0 0 0 0 0 0 +4.021 -4.357 -1.844 0 0 0 0 0 0 0 +4.024 -4.334 -1.839 0 0 0 0 0 0 0 +4.026 -4.309 -1.833 0 0 0 0 0 0 0 +4.054 -4.311 -1.84 0 0 0 0 0 0 0 +4.063 -4.307 -1.841 0 0 0 0 0 0 0 +4.047 -4.263 -1.827 0 0 0 0 0 0 0 +4.065 -4.256 -1.829 0 0 0 0 0 0 0 +4.089 -4.254 -1.834 0 0 0 0 0 0 0 +4.097 -4.236 -1.832 0 0 0 0 0 0 0 +4.108 -4.22 -1.831 0 0 0 0 0 0 0 +4.121 -4.22 -1.834 0 0 0 0 0 0 0 +4.136 -4.209 -1.834 0 0 0 0 0 0 0 +4.145 -4.192 -1.833 0 0 0 0 0 0 0 +4.144 -4.165 -1.826 0 0 0 0 0 0 0 +4.162 -4.156 -1.828 0 0 0 0 0 0 0 +4.19 -4.158 -1.835 0 0 0 0 0 0 0 +4.196 -4.138 -1.832 0 0 0 0 0 0 0 +4.21 -4.126 -1.833 0 0 0 0 0 0 0 +4.211 -4.114 -1.83 0 0 0 0 0 0 0 +4.22 -4.097 -1.828 0 0 0 0 0 0 0 +4.233 -4.084 -1.828 0 0 0 0 0 0 0 +4.252 -4.077 -1.831 0 0 0 0 0 0 0 +4.265 -4.063 -1.831 0 0 0 0 0 0 0 +4.278 -4.05 -1.831 0 0 0 0 0 0 0 +4.293 -4.039 -1.833 0 0 0 0 0 0 0 +4.296 -4.029 -1.831 0 0 0 0 0 0 0 +4.31 -4.016 -1.831 0 0 0 0 0 0 0 +4.322 -4.003 -1.831 0 0 0 0 0 0 0 +4.338 -3.992 -1.833 0 0 0 0 0 0 0 +4.343 -3.972 -1.829 0 0 0 0 0 0 0 +4.363 -3.964 -1.833 0 0 0 0 0 0 0 +4.371 -3.947 -1.831 0 0 0 0 0 0 0 +4.377 -3.94 -1.831 0 0 0 0 0 0 0 +4.388 -3.925 -1.83 0 0 0 0 0 0 0 +4.397 -3.909 -1.829 0 0 0 0 0 0 0 +4.408 -3.894 -1.828 0 0 0 0 0 0 0 +4.403 -3.865 -1.821 0 0 0 0 0 0 0 +4.421 -3.856 -1.823 0 0 0 0 0 0 0 +4.426 -3.836 -1.82 0 0 0 0 0 0 0 +4.445 -3.84 -1.826 0 0 0 0 0 0 0 +4.44 -3.811 -1.818 0 0 0 0 0 0 0 +4.455 -3.8 -1.819 0 0 0 0 0 0 0 +4.468 -3.787 -1.82 0 0 0 0 0 0 0 +4.47 -3.764 -1.816 0 0 0 0 0 0 0 +4.487 -3.755 -1.818 0 0 0 0 0 0 0 +4.484 -3.741 -1.814 0 0 0 0 0 0 0 +4.484 -3.717 -1.809 0 0 0 0 0 0 0 +4.503 -3.709 -1.812 0 0 0 0 0 0 0 +4.521 -3.7 -1.815 0 0 0 0 0 0 0 +4.521 -3.676 -1.81 0 0 0 0 0 0 0 +4.548 -3.675 -1.817 0 0 0 0 0 0 0 +4.542 -3.646 -1.809 0 0 0 0 0 0 0 +4.552 -3.631 -1.809 0 0 0 0 0 0 0 +4.558 -3.624 -1.809 0 0 0 0 0 0 0 +4.566 -3.607 -1.807 0 0 0 0 0 0 0 +4.57 -3.587 -1.804 0 0 0 0 0 0 0 +4.578 -3.57 -1.803 0 0 0 0 0 0 0 +4.595 -3.56 -1.806 0 0 0 0 0 0 0 +4.599 -3.54 -1.802 0 0 0 0 0 0 0 +4.622 -3.535 -1.807 0 0 0 0 0 0 0 +4.605 -3.51 -1.798 0 0 0 0 0 0 0 +4.602 -3.486 -1.792 0 0 0 0 0 0 0 +4.622 -3.478 -1.796 0 0 0 0 0 0 0 +4.633 -3.463 -1.796 0 0 0 0 0 0 0 +4.638 -3.444 -1.794 0 0 0 0 0 0 0 +4.649 -3.43 -1.794 0 0 0 0 0 0 0 +4.652 -3.409 -1.79 0 0 0 0 0 0 0 +4.66 -3.404 -1.792 0 0 0 0 0 0 0 +4.668 -3.387 -1.79 0 0 0 0 0 0 0 +4.682 -3.375 -1.792 0 0 0 0 0 0 0 +4.68 -3.351 -1.787 0 0 0 0 0 0 0 +4.698 -3.342 -1.79 0 0 0 0 0 0 0 +4.698 -3.32 -1.785 0 0 0 0 0 0 0 +4.711 -3.307 -1.787 0 0 0 0 0 0 0 +4.713 -3.298 -1.785 0 0 0 0 0 0 0 +4.717 -3.279 -1.783 0 0 0 0 0 0 0 +4.726 -3.263 -1.782 0 0 0 0 0 0 0 +4.738 -3.249 -1.783 0 0 0 0 0 0 0 +4.74 -3.229 -1.78 0 0 0 0 0 0 0 +4.754 -3.216 -1.781 0 0 0 0 0 0 0 +4.76 -3.199 -1.78 0 0 0 0 0 0 0 +4.769 -3.193 -1.781 0 0 0 0 0 0 0 +4.766 -3.17 -1.776 0 0 0 0 0 0 0 +4.776 -3.155 -1.776 0 0 0 0 0 0 0 +4.789 -3.142 -1.777 0 0 0 0 0 0 0 +4.796 -3.125 -1.776 0 0 0 0 0 0 0 +4.812 -3.114 -1.778 0 0 0 0 0 0 0 +4.814 -3.094 -1.775 0 0 0 0 0 0 0 +4.81 -3.081 -1.772 0 0 0 0 0 0 0 +4.82 -3.066 -1.772 0 0 0 0 0 0 0 +4.839 -3.057 -1.776 0 0 0 0 0 0 0 +4.834 -3.033 -1.77 0 0 0 0 0 0 0 +4.854 -3.023 -1.774 0 0 0 0 0 0 0 +4.86 -3.006 -1.773 0 0 0 0 0 0 0 +4.868 -2.99 -1.772 0 0 0 0 0 0 0 +4.871 -2.981 -1.772 0 0 0 0 0 0 0 +4.883 -2.968 -1.773 0 0 0 0 0 0 0 +4.891 -2.952 -1.772 0 0 0 0 0 0 0 +4.899 -2.935 -1.772 0 0 0 0 0 0 0 +4.911 -2.922 -1.773 0 0 0 0 0 0 0 +4.92 -2.906 -1.773 0 0 0 0 0 0 0 +4.923 -2.887 -1.77 0 0 0 0 0 0 0 +4.926 -2.878 -1.77 0 0 0 0 0 0 0 +4.931 -2.861 -1.768 0 0 0 0 0 0 0 +4.949 -2.85 -1.772 0 0 0 0 0 0 0 +4.954 -2.833 -1.77 0 0 0 0 0 0 0 +4.958 -2.814 -1.768 0 0 0 0 0 0 0 +4.977 -2.804 -1.772 0 0 0 0 0 0 0 +4.979 -2.785 -1.77 0 0 0 0 0 0 0 +4.987 -2.779 -1.771 0 0 0 0 0 0 0 +5 -2.766 -1.773 0 0 0 0 0 0 0 +5.004 -2.748 -1.771 0 0 0 0 0 0 0 +4.996 -2.723 -1.765 0 0 0 0 0 0 0 +5.008 -2.709 -1.766 0 0 0 0 0 0 0 +5.015 -2.692 -1.765 0 0 0 0 0 0 0 +5.025 -2.677 -1.766 0 0 0 0 0 0 0 +5.029 -2.67 -1.766 0 0 0 0 0 0 0 +5.036 -2.653 -1.765 0 0 0 0 0 0 0 +5.039 -2.634 -1.763 0 0 0 0 0 0 0 +5.051 -2.62 -1.765 0 0 0 0 0 0 0 +5.054 -2.602 -1.763 0 0 0 0 0 0 0 +5.067 -2.589 -1.765 0 0 0 0 0 0 0 +5.073 -2.572 -1.764 0 0 0 0 0 0 0 +5.069 -2.56 -1.761 0 0 0 0 0 0 0 +5.08 -2.545 -1.762 0 0 0 0 0 0 0 +5.083 -2.527 -1.76 0 0 0 0 0 0 0 +5.093 -2.512 -1.761 0 0 0 0 0 0 0 +5.097 -2.494 -1.76 0 0 0 0 0 0 0 +5.105 -2.478 -1.76 0 0 0 0 0 0 0 +5.114 -2.463 -1.76 0 0 0 0 0 0 0 +5.106 -2.449 -1.756 0 0 0 0 0 0 0 +5.129 -2.44 -1.762 0 0 0 0 0 0 0 +5.125 -2.418 -1.757 0 0 0 0 0 0 0 +5.136 -2.404 -1.758 0 0 0 0 0 0 0 +5.137 -2.385 -1.756 0 0 0 0 0 0 0 +5.137 -2.365 -1.753 0 0 0 0 0 0 0 +5.155 -2.354 -1.757 0 0 0 0 0 0 0 +5.147 -2.34 -1.753 0 0 0 0 0 0 0 +5.159 -2.326 -1.755 0 0 0 0 0 0 0 +5.161 -2.308 -1.753 0 0 0 0 0 0 0 +5.179 -2.296 -1.756 0 0 0 0 0 0 0 +5.172 -2.274 -1.751 0 0 0 0 0 0 0 +5.186 -2.261 -1.754 0 0 0 0 0 0 0 +5.186 -2.241 -1.751 0 0 0 0 0 0 0 +5.193 -2.235 -1.753 0 0 0 0 0 0 0 +5.204 -2.22 -1.754 0 0 0 0 0 0 0 +5.204 -2.201 -1.751 0 0 0 0 0 0 0 +5.211 -2.184 -1.751 0 0 0 0 0 0 0 +5.212 -2.166 -1.75 0 0 0 0 0 0 0 +5.214 -2.147 -1.748 0 0 0 0 0 0 0 +5.227 -2.134 -1.75 0 0 0 0 0 0 0 +5.227 -2.124 -1.749 0 0 0 0 0 0 0 +5.239 -2.11 -1.751 0 0 0 0 0 0 0 +5.232 -2.088 -1.746 0 0 0 0 0 0 0 +5.238 -2.071 -1.746 0 0 0 0 0 0 0 +5.252 -2.057 -1.748 0 0 0 0 0 0 0 +5.251 -2.038 -1.746 0 0 0 0 0 0 0 +5.263 -2.024 -1.748 0 0 0 0 0 0 0 +5.264 -2.015 -1.747 0 0 0 0 0 0 0 +5.267 -1.997 -1.746 0 0 0 0 0 0 0 +5.284 -1.984 -1.75 0 0 0 0 0 0 0 +5.281 -1.964 -1.746 0 0 0 0 0 0 0 +5.286 -1.947 -1.746 0 0 0 0 0 0 0 +5.295 -1.932 -1.747 0 0 0 0 0 0 0 +5.31 -1.918 -1.75 0 0 0 0 0 0 0 +5.301 -1.906 -1.746 0 0 0 0 0 0 0 +5.291 -1.883 -1.74 0 0 0 0 0 0 0 +5.318 -1.874 -1.748 0 0 0 0 0 0 0 +5.326 -1.858 -1.748 0 0 0 0 0 0 0 +5.315 -1.836 -1.743 0 0 0 0 0 0 0 +5.325 -1.82 -1.744 0 0 0 0 0 0 0 +5.341 -1.807 -1.748 0 0 0 0 0 0 0 +5.322 -1.792 -1.74 0 0 0 0 0 0 0 +5.346 -1.781 -1.746 0 0 0 0 0 0 0 +5.342 -1.761 -1.743 0 0 0 0 0 0 0 +5.333 -1.74 -1.738 0 0 0 0 0 0 0 +5.362 -1.73 -1.746 0 0 0 0 0 0 0 +5.366 -1.713 -1.746 0 0 0 0 0 0 0 +5.353 -1.69 -1.74 0 0 0 0 0 0 0 +5.365 -1.685 -1.743 0 0 0 0 0 0 0 +5.376 -1.67 -1.745 0 0 0 0 0 0 0 +5.377 -1.652 -1.743 0 0 0 0 0 0 0 +5.388 -1.636 -1.745 0 0 0 0 0 0 0 +5.386 -1.617 -1.743 0 0 0 0 0 0 0 +5.391 -1.6 -1.743 0 0 0 0 0 0 0 +5.396 -1.583 -1.743 0 0 0 0 0 0 0 +5.395 -1.565 -1.741 0 0 0 0 0 0 0 +5.4 -1.557 -1.741 0 0 0 0 0 0 0 +5.412 -1.542 -1.744 0 0 0 0 0 0 0 +5.415 -1.524 -1.743 0 0 0 0 0 0 0 +5.41 -1.505 -1.74 0 0 0 0 0 0 0 +5.419 -1.489 -1.741 0 0 0 0 0 0 0 +5.431 -1.474 -1.744 0 0 0 0 0 0 0 +5.437 -1.457 -1.745 0 0 0 0 0 0 0 +5.443 -1.45 -1.746 0 0 0 0 0 0 0 +5.433 -1.429 -1.741 0 0 0 0 0 0 0 +5.439 -1.412 -1.741 0 0 0 0 0 0 0 +5.44 -1.394 -1.74 0 0 0 0 0 0 0 +5.441 -1.376 -1.739 0 0 0 0 0 0 0 +5.443 -1.359 -1.738 0 0 0 0 0 0 0 +5.454 -1.352 -1.741 0 0 0 0 0 0 0 +5.451 -1.333 -1.739 0 0 0 0 0 0 0 +5.455 -1.316 -1.739 0 0 0 0 0 0 0 +5.467 -1.301 -1.741 0 0 0 0 0 0 0 +5.464 -1.282 -1.739 0 0 0 0 0 0 0 +5.466 -1.264 -1.738 0 0 0 0 0 0 0 +5.477 -1.249 -1.741 0 0 0 0 0 0 0 +5.474 -1.23 -1.738 0 0 0 0 0 0 0 +5.474 -1.221 -1.738 0 0 0 0 0 0 0 +5.477 -1.204 -1.738 0 0 0 0 0 0 0 +5.481 -1.187 -1.738 0 0 0 0 0 0 0 +5.483 -1.169 -1.737 0 0 0 0 0 0 0 +5.483 -1.151 -1.736 0 0 0 0 0 0 0 +5.492 -1.135 -1.738 0 0 0 0 0 0 0 +5.501 -1.119 -1.74 0 0 0 0 0 0 0 +5.503 -1.11 -1.74 0 0 0 0 0 0 0 +5.506 -1.093 -1.74 0 0 0 0 0 0 0 +5.525 -1.078 -1.745 0 0 0 0 0 0 0 +5.523 -1.06 -1.743 0 0 0 0 0 0 0 +5.507 -1.039 -1.736 0 0 0 0 0 0 0 +5.516 -1.023 -1.738 0 0 0 0 0 0 0 +5.523 -1.006 -1.74 0 0 0 0 0 0 0 +5.525 -0.997 -1.74 0 0 0 0 0 0 0 +5.505 -0.976 -1.732 0 0 0 0 0 0 0 +5.508 -0.959 -1.732 0 0 0 0 0 0 0 +5.513 -0.942 -1.733 0 0 0 0 0 0 0 +5.52 -0.925 -1.734 0 0 0 0 0 0 0 +5.521 -0.908 -1.733 0 0 0 0 0 0 0 +5.531 -0.891 -1.736 0 0 0 0 0 0 0 +5.523 -0.881 -1.733 0 0 0 0 0 0 0 +5.526 -0.864 -1.733 0 0 0 0 0 0 0 +5.532 -0.847 -1.734 0 0 0 0 0 0 0 +5.527 -0.829 -1.731 0 0 0 0 0 0 0 +5.536 -0.812 -1.733 0 0 0 0 0 0 0 +5.521 -0.792 -1.728 0 0 0 0 0 0 0 +5.539 -0.777 -1.733 0 0 0 0 0 0 0 +5.536 -0.768 -1.731 0 0 0 0 0 0 0 +5.537 -0.75 -1.731 0 0 0 0 0 0 0 +5.543 -0.733 -1.732 0 0 0 0 0 0 0 +5.543 -0.716 -1.731 0 0 0 0 0 0 0 +5.547 -0.698 -1.732 0 0 0 0 0 0 0 +5.553 -0.681 -1.733 0 0 0 0 0 0 0 +5.542 -0.662 -1.729 0 0 0 0 0 0 0 +5.554 -0.655 -1.733 0 0 0 0 0 0 0 +5.54 -0.636 -1.727 0 0 0 0 0 0 0 +5.555 -0.62 -1.731 0 0 0 0 0 0 0 +5.549 -0.601 -1.729 0 0 0 0 0 0 0 +5.54 -0.583 -1.725 0 0 0 0 0 0 0 +5.558 -0.567 -1.731 0 0 0 0 0 0 0 +5.547 -0.548 -1.726 0 0 0 0 0 0 0 +5.55 -0.54 -1.727 0 0 0 0 0 0 0 +5.559 -0.523 -1.729 0 0 0 0 0 0 0 +5.559 -0.506 -1.729 0 0 0 0 0 0 0 +5.545 -0.487 -1.724 0 0 0 0 0 0 0 +5.562 -0.471 -1.729 0 0 0 0 0 0 0 +5.554 -0.452 -1.726 0 0 0 0 0 0 0 +5.549 -0.435 -1.724 0 0 0 0 0 0 0 +5.556 -0.426 -1.726 0 0 0 0 0 0 0 +5.553 -0.408 -1.724 0 0 0 0 0 0 0 +5.555 -0.391 -1.724 0 0 0 0 0 0 0 +5.552 -0.373 -1.723 0 0 0 0 0 0 0 +5.559 -0.356 -1.725 0 0 0 0 0 0 0 +5.552 -0.338 -1.723 0 0 0 0 0 0 0 +5.567 -0.322 -1.727 0 0 0 0 0 0 0 +5.554 -0.312 -1.723 0 0 0 0 0 0 0 +5.562 -0.295 -1.725 0 0 0 0 0 0 0 +5.563 -0.278 -1.725 0 0 0 0 0 0 0 +5.553 -0.26 -1.721 0 0 0 0 0 0 0 +5.561 -0.243 -1.724 0 0 0 0 0 0 0 +5.564 -0.225 -1.724 0 0 0 0 0 0 0 +5.576 -0.208 -1.728 0 0 0 0 0 0 0 +5.557 -0.199 -1.722 0 0 0 0 0 0 0 +5.56 -0.181 -1.723 0 0 0 0 0 0 0 +5.56 -0.164 -1.723 0 0 0 0 0 0 0 +5.563 -0.146 -1.723 0 0 0 0 0 0 0 +5.576 -0.129 -1.728 0 0 0 0 0 0 0 +5.554 -0.111 -1.72 0 0 0 0 0 0 0 +5.556 -0.094 -1.721 0 0 0 0 0 0 0 +5.551 -0.085 -1.719 0 0 0 0 0 0 0 +5.562 -0.068 -1.723 0 0 0 0 0 0 0 +5.553 -0.05 -1.719 0 0 0 0 0 0 0 +5.564 -0.033 -1.723 0 0 0 0 0 0 0 +5.559 -0.015 -1.721 0 0 0 0 0 0 0 +5.389 0.005 -1.715 0 0 0 0 0 0 0 +5.386 0.022 -1.714 0 0 0 0 0 0 0 +5.416 0.039 -1.724 0 0 0 0 0 0 0 +5.393 0.056 -1.716 0 0 0 0 0 0 0 +5.389 0.073 -1.715 0 0 0 0 0 0 0 +5.425 0.082 -1.727 0 0 0 0 0 0 0 +5.39 0.098 -1.716 0 0 0 0 0 0 0 +5.377 0.115 -1.711 0 0 0 0 0 0 0 +5.409 0.133 -1.722 0 0 0 0 0 0 0 +5.385 0.149 -1.714 0 0 0 0 0 0 0 +5.396 0.166 -1.718 0 0 0 0 0 0 0 +5.39 0.183 -1.716 0 0 0 0 0 0 0 +5.38 0.191 -1.713 0 0 0 0 0 0 0 +5.387 0.208 -1.716 0 0 0 0 0 0 0 +5.394 0.226 -1.718 0 0 0 0 0 0 0 +5.39 0.242 -1.717 0 0 0 0 0 0 0 +5.383 0.259 -1.715 0 0 0 0 0 0 0 +5.382 0.276 -1.715 0 0 0 0 0 0 0 +5.385 0.293 -1.716 0 0 0 0 0 0 0 +5.387 0.302 -1.717 0 0 0 0 0 0 0 +5.388 0.319 -1.718 0 0 0 0 0 0 0 +5.383 0.335 -1.716 0 0 0 0 0 0 0 +5.387 0.353 -1.718 0 0 0 0 0 0 0 +5.392 0.37 -1.72 0 0 0 0 0 0 0 +5.379 0.386 -1.716 0 0 0 0 0 0 0 +5.376 0.403 -1.716 0 0 0 0 0 0 0 +5.379 0.42 -1.717 0 0 0 0 0 0 0 +5.374 0.428 -1.716 0 0 0 0 0 0 0 +5.399 0.447 -1.725 0 0 0 0 0 0 0 +5.381 0.463 -1.719 0 0 0 0 0 0 0 +5.385 0.48 -1.721 0 0 0 0 0 0 0 +5.384 0.497 -1.721 0 0 0 0 0 0 0 +5.376 0.513 -1.719 0 0 0 0 0 0 0 +5.356 0.529 -1.712 0 0 0 0 0 0 0 +5.351 0.537 -1.711 0 0 0 0 0 0 0 +5.372 0.556 -1.719 0 0 0 0 0 0 0 +5.37 0.573 -1.719 0 0 0 0 0 0 0 +5.346 0.587 -1.711 0 0 0 0 0 0 0 +5.382 0.608 -1.724 0 0 0 0 0 0 0 +5.359 0.623 -1.717 0 0 0 0 0 0 0 +5.367 0.64 -1.72 0 0 0 0 0 0 0 +5.369 0.649 -1.721 0 0 0 0 0 0 0 +5.365 0.666 -1.721 0 0 0 0 0 0 0 +5.365 0.683 -1.721 0 0 0 0 0 0 0 +5.367 0.7 -1.723 0 0 0 0 0 0 0 +5.351 0.716 -1.718 0 0 0 0 0 0 0 +5.362 0.734 -1.723 0 0 0 0 0 0 0 +5.362 0.751 -1.723 0 0 0 0 0 0 0 +5.331 0.755 -1.713 0 0 0 0 0 0 0 +5.315 0.77 -1.709 0 0 0 0 0 0 0 +5.356 0.793 -1.723 0 0 0 0 0 0 0 +5.323 0.806 -1.713 0 0 0 0 0 0 0 +5.354 0.827 -1.725 0 0 0 0 0 0 0 +5.34 0.843 -1.721 0 0 0 0 0 0 0 +5.343 0.86 -1.723 0 0 0 0 0 0 0 +5.344 0.869 -1.723 0 0 0 0 0 0 0 +5.307 0.88 -1.712 0 0 0 0 0 0 0 +5.346 0.904 -1.726 0 0 0 0 0 0 0 +5.311 0.915 -1.715 0 0 0 0 0 0 0 +5.329 0.935 -1.722 0 0 0 0 0 0 0 +5.331 0.953 -1.724 0 0 0 0 0 0 0 +5.319 0.968 -1.721 0 0 0 0 0 0 0 +5.321 0.977 -1.722 0 0 0 0 0 0 0 +5.29 0.989 -1.712 0 0 0 0 0 0 0 +5.3 1.008 -1.717 0 0 0 0 0 0 0 +5.319 1.029 -1.725 0 0 0 0 0 0 0 +5.283 1.039 -1.713 0 0 0 0 0 0 0 +5.311 1.062 -1.724 0 0 0 0 0 0 0 +5.304 1.078 -1.723 0 0 0 0 0 0 0 +5.306 1.087 -1.724 0 0 0 0 0 0 0 +5.302 1.103 -1.724 0 0 0 0 0 0 0 +5.297 1.12 -1.723 0 0 0 0 0 0 0 +5.293 1.136 -1.723 0 0 0 0 0 0 0 +5.268 1.148 -1.716 0 0 0 0 0 0 0 +5.286 1.17 -1.723 0 0 0 0 0 0 0 +5.284 1.187 -1.724 0 0 0 0 0 0 0 +5.286 1.196 -1.725 0 0 0 0 0 0 0 +5.264 1.208 -1.719 0 0 0 0 0 0 0 +5.251 1.223 -1.716 0 0 0 0 0 0 0 +5.271 1.245 -1.724 0 0 0 0 0 0 0 +5.243 1.255 -1.716 0 0 0 0 0 0 0 +5.27 1.279 -1.727 0 0 0 0 0 0 0 +5.263 1.295 -1.725 0 0 0 0 0 0 0 +5.229 1.296 -1.714 0 0 0 0 0 0 0 +5.225 1.312 -1.714 0 0 0 0 0 0 0 +5.218 1.328 -1.713 0 0 0 0 0 0 0 +5.256 1.355 -1.728 0 0 0 0 0 0 0 +5.218 1.363 -1.716 0 0 0 0 0 0 0 +5.229 1.383 -1.721 0 0 0 0 0 0 0 +5.217 1.397 -1.719 0 0 0 0 0 0 0 +5.229 1.409 -1.724 0 0 0 0 0 0 0 +5.205 1.421 -1.717 0 0 0 0 0 0 0 +5.231 1.445 -1.728 0 0 0 0 0 0 0 +5.229 1.462 -1.729 0 0 0 0 0 0 0 +5.219 1.477 -1.727 0 0 0 0 0 0 0 +5.216 1.494 -1.727 0 0 0 0 0 0 0 +5.178 1.501 -1.716 0 0 0 0 0 0 0 +5.214 1.52 -1.729 0 0 0 0 0 0 0 +5.211 1.537 -1.73 0 0 0 0 0 0 0 +5.193 1.55 -1.725 0 0 0 0 0 0 0 +5.198 1.569 -1.729 0 0 0 0 0 0 0 +5.169 1.578 -1.72 0 0 0 0 0 0 0 +5.162 1.594 -1.72 0 0 0 0 0 0 0 +5.152 1.608 -1.718 0 0 0 0 0 0 0 +5.153 1.617 -1.719 0 0 0 0 0 0 0 +5.15 1.634 -1.72 0 0 0 0 0 0 0 +5.15 1.652 -1.721 0 0 0 0 0 0 0 +5.137 1.666 -1.719 0 0 0 0 0 0 0 +5.127 1.68 -1.717 0 0 0 0 0 0 0 +5.138 1.702 -1.723 0 0 0 0 0 0 0 +5.129 1.717 -1.721 0 0 0 0 0 0 0 +5.105 1.727 -1.715 0 0 0 0 0 0 0 +5.119 1.74 -1.721 0 0 0 0 0 0 0 +5.119 1.758 -1.723 0 0 0 0 0 0 0 +5.106 1.772 -1.72 0 0 0 0 0 0 0 +5.108 1.79 -1.723 0 0 0 0 0 0 0 +5.105 1.807 -1.724 0 0 0 0 0 0 0 +5.093 1.821 -1.721 0 0 0 0 0 0 0 +5.088 1.828 -1.721 0 0 0 0 0 0 0 +5.088 1.846 -1.723 0 0 0 0 0 0 0 +5.082 1.862 -1.723 0 0 0 0 0 0 0 +5.074 1.877 -1.722 0 0 0 0 0 0 0 +5.068 1.893 -1.722 0 0 0 0 0 0 0 +5.057 1.907 -1.72 0 0 0 0 0 0 0 +5.049 1.923 -1.72 0 0 0 0 0 0 0 +5.05 1.932 -1.721 0 0 0 0 0 0 0 +5.042 1.947 -1.72 0 0 0 0 0 0 0 +5.032 1.961 -1.719 0 0 0 0 0 0 0 +5.035 1.981 -1.722 0 0 0 0 0 0 0 +5.037 2 -1.725 0 0 0 0 0 0 0 +5.027 2.014 -1.724 0 0 0 0 0 0 0 +5.012 2.027 -1.721 0 0 0 0 0 0 0 +5.011 2.035 -1.721 0 0 0 0 0 0 0 +5.003 2.05 -1.721 0 0 0 0 0 0 0 +4.996 2.066 -1.721 0 0 0 0 0 0 0 +4.981 2.078 -1.718 0 0 0 0 0 0 0 +4.978 2.095 -1.719 0 0 0 0 0 0 0 +5.003 2.124 -1.731 0 0 0 0 0 0 0 +4.989 2.137 -1.728 0 0 0 0 0 0 0 +4.965 2.145 -1.721 0 0 0 0 0 0 0 +4.982 2.162 -1.729 0 0 0 0 0 0 0 +4.967 2.174 -1.726 0 0 0 0 0 0 0 +4.962 2.19 -1.727 0 0 0 0 0 0 0 +4.964 2.209 -1.73 0 0 0 0 0 0 0 +4.955 2.224 -1.729 0 0 0 0 0 0 0 +4.915 2.225 -1.717 0 0 0 0 0 0 0 +4.93 2.251 -1.725 0 0 0 0 0 0 0 +4.911 2.251 -1.72 0 0 0 0 0 0 0 +4.927 2.277 -1.728 0 0 0 0 0 0 0 +4.913 2.289 -1.725 0 0 0 0 0 0 0 +4.897 2.301 -1.722 0 0 0 0 0 0 0 +4.9 2.321 -1.726 0 0 0 0 0 0 0 +4.887 2.334 -1.724 0 0 0 0 0 0 0 +4.882 2.341 -1.723 0 0 0 0 0 0 0 +4.847 2.343 -1.713 0 0 0 0 0 0 0 +4.838 2.357 -1.712 0 0 0 0 0 0 0 +4.855 2.384 -1.721 0 0 0 0 0 0 0 +4.852 2.402 -1.723 0 0 0 0 0 0 0 +4.816 2.403 -1.712 0 0 0 0 0 0 0 +4.81 2.419 -1.713 0 0 0 0 0 0 0 +4.835 2.441 -1.724 0 0 0 0 0 0 0 +4.795 2.44 -1.712 0 0 0 0 0 0 0 +4.811 2.467 -1.721 0 0 0 0 0 0 0 +4.78 2.47 -1.712 0 0 0 0 0 0 0 +4.789 2.493 -1.718 0 0 0 0 0 0 0 +4.782 2.509 -1.719 0 0 0 0 0 0 0 +4.758 2.516 -1.712 0 0 0 0 0 0 0 +4.769 2.531 -1.718 0 0 0 0 0 0 0 +4.743 2.536 -1.711 0 0 0 0 0 0 0 +4.735 2.551 -1.711 0 0 0 0 0 0 0 +4.723 2.564 -1.71 0 0 0 0 0 0 0 +4.72 2.582 -1.712 0 0 0 0 0 0 0 +4.712 2.596 -1.712 0 0 0 0 0 0 0 +4.702 2.61 -1.711 0 0 0 0 0 0 0 +4.69 2.613 -1.708 0 0 0 0 0 0 0 +4.688 2.632 -1.711 0 0 0 0 0 0 0 +4.675 2.644 -1.709 0 0 0 0 0 0 0 +4.67 2.66 -1.71 0 0 0 0 0 0 0 +4.665 2.677 -1.711 0 0 0 0 0 0 0 +4.648 2.687 -1.708 0 0 0 0 0 0 0 +4.638 2.7 -1.707 0 0 0 0 0 0 0 +4.64 2.711 -1.71 0 0 0 0 0 0 0 +4.624 2.721 -1.707 0 0 0 0 0 0 0 +4.618 2.737 -1.708 0 0 0 0 0 0 0 +4.606 2.75 -1.707 0 0 0 0 0 0 0 +4.599 2.765 -1.707 0 0 0 0 0 0 0 +4.592 2.781 -1.708 0 0 0 0 0 0 0 +4.584 2.795 -1.708 0 0 0 0 0 0 0 +4.568 2.806 -1.705 0 0 0 0 0 0 0 +4.564 2.813 -1.705 0 0 0 0 0 0 0 +4.557 2.828 -1.706 0 0 0 0 0 0 0 +4.544 2.841 -1.705 0 0 0 0 0 0 0 +4.539 2.857 -1.706 0 0 0 0 0 0 0 +4.536 2.875 -1.709 0 0 0 0 0 0 0 +4.511 2.879 -1.702 0 0 0 0 0 0 0 +4.512 2.899 -1.706 0 0 0 0 0 0 0 +4.518 2.914 -1.711 0 0 0 0 0 0 0 +4.498 2.921 -1.706 0 0 0 0 0 0 0 +4.49 2.936 -1.707 0 0 0 0 0 0 0 +4.478 2.948 -1.705 0 0 0 0 0 0 0 +4.469 2.962 -1.705 0 0 0 0 0 0 0 +4.469 2.982 -1.709 0 0 0 0 0 0 0 +4.458 2.985 -1.707 0 0 0 0 0 0 0 +4.447 2.998 -1.706 0 0 0 0 0 0 0 +4.462 3.029 -1.716 0 0 0 0 0 0 0 +4.459 3.047 -1.719 0 0 0 0 0 0 0 +4.425 3.044 -1.709 0 0 0 0 0 0 0 +4.432 3.07 -1.716 0 0 0 0 0 0 0 +4.427 3.087 -1.718 0 0 0 0 0 0 0 +4.401 3.079 -1.709 0 0 0 0 0 0 0 +4.423 3.115 -1.722 0 0 0 0 0 0 0 +4.418 3.132 -1.724 0 0 0 0 0 0 0 +4.393 3.135 -1.718 0 0 0 0 0 0 0 +4.389 3.153 -1.72 0 0 0 0 0 0 0 +4.361 3.154 -1.712 0 0 0 0 0 0 0 +4.379 3.188 -1.724 0 0 0 0 0 0 0 +4.357 3.182 -1.717 0 0 0 0 0 0 0 +4.334 3.187 -1.712 0 0 0 0 0 0 0 +4.33 3.205 -1.714 0 0 0 0 0 0 0 +4.314 3.214 -1.712 0 0 0 0 0 0 0 +4.316 3.237 -1.717 0 0 0 0 0 0 0 +4.306 3.25 -1.717 0 0 0 0 0 0 0 +4.29 3.259 -1.714 0 0 0 0 0 0 0 +4.284 3.276 -1.716 0 0 0 0 0 0 0 +4.276 3.281 -1.715 0 0 0 0 0 0 0 +4.257 3.287 -1.711 0 0 0 0 0 0 0 +4.252 3.305 -1.714 0 0 0 0 0 0 0 +4.251 3.325 -1.718 0 0 0 0 0 0 0 +4.228 3.329 -1.712 0 0 0 0 0 0 0 +4.219 3.344 -1.713 0 0 0 0 0 0 0 +4.21 3.358 -1.714 0 0 0 0 0 0 0 +4.207 3.366 -1.714 0 0 0 0 0 0 0 +4.189 3.373 -1.711 0 0 0 0 0 0 0 +4.191 3.397 -1.717 0 0 0 0 0 0 0 +4.166 3.398 -1.711 0 0 0 0 0 0 0 +4.165 3.42 -1.715 0 0 0 0 0 0 0 +4.156 3.434 -1.716 0 0 0 0 0 0 0 +4.131 3.435 -1.709 0 0 0 0 0 0 0 +4.13 3.445 -1.711 0 0 0 0 0 0 0 +4.128 3.465 -1.715 0 0 0 0 0 0 0 +4.12 3.481 -1.716 0 0 0 0 0 0 0 +4.113 3.497 -1.718 0 0 0 0 0 0 0 +4.093 3.503 -1.714 0 0 0 0 0 0 0 +4.088 3.521 -1.717 0 0 0 0 0 0 0 +4.076 3.532 -1.716 0 0 0 0 0 0 0 +4.079 3.546 -1.72 0 0 0 0 0 0 0 +4.056 3.549 -1.715 0 0 0 0 0 0 0 +4.058 3.573 -1.721 0 0 0 0 0 0 0 +4.041 3.581 -1.718 0 0 0 0 0 0 0 +4.034 3.597 -1.72 0 0 0 0 0 0 0 +4.018 3.606 -1.718 0 0 0 0 0 0 0 +4.01 3.621 -1.72 0 0 0 0 0 0 0 +3.998 3.622 -1.717 0 0 0 0 0 0 0 +3.984 3.632 -1.716 0 0 0 0 0 0 0 +3.985 3.656 -1.721 0 0 0 0 0 0 0 +3.965 3.661 -1.718 0 0 0 0 0 0 0 +3.955 3.675 -1.718 0 0 0 0 0 0 0 +3.945 3.689 -1.719 0 0 0 0 0 0 0 +3.925 3.693 -1.715 0 0 0 0 0 0 0 +3.925 3.705 -1.718 0 0 0 0 0 0 0 +3.92 3.723 -1.721 0 0 0 0 0 0 0 +3.896 3.724 -1.715 0 0 0 0 0 0 0 +3.898 3.749 -1.721 0 0 0 0 0 0 0 +3.888 3.763 -1.722 0 0 0 0 0 0 0 +3.873 3.772 -1.721 0 0 0 0 0 0 0 +3.86 3.783 -1.72 0 0 0 0 0 0 0 +3.85 3.785 -1.718 0 0 0 0 0 0 0 +3.83 3.789 -1.714 0 0 0 0 0 0 0 +3.823 3.807 -1.717 0 0 0 0 0 0 0 +3.803 3.811 -1.713 0 0 0 0 0 0 0 +3.791 3.823 -1.713 0 0 0 0 0 0 0 +3.791 3.847 -1.719 0 0 0 0 0 0 0 +3.775 3.854 -1.717 0 0 0 0 0 0 0 +3.782 3.874 -1.723 0 0 0 0 0 0 0 +3.752 3.867 -1.714 0 0 0 0 0 0 0 +3.741 3.88 -1.715 0 0 0 0 0 0 0 +3.723 3.886 -1.712 0 0 0 0 0 0 0 +3.72 3.907 -1.717 0 0 0 0 0 0 0 +3.694 3.904 -1.71 0 0 0 0 0 0 0 +3.686 3.921 -1.712 0 0 0 0 0 0 0 +3.683 3.93 -1.714 0 0 0 0 0 0 0 +3.674 3.945 -1.716 0 0 0 0 0 0 0 +3.657 3.951 -1.713 0 0 0 0 0 0 0 +3.647 3.966 -1.714 0 0 0 0 0 0 0 +3.631 3.973 -1.712 0 0 0 0 0 0 0 +3.617 3.983 -1.712 0 0 0 0 0 0 0 +3.606 3.996 -1.712 0 0 0 0 0 0 0 +3.599 4.001 -1.712 0 0 0 0 0 0 0 +3.589 4.015 -1.714 0 0 0 0 0 0 0 +3.579 4.029 -1.715 0 0 0 0 0 0 0 +3.558 4.031 -1.711 0 0 0 0 0 0 0 +3.55 4.048 -1.713 0 0 0 0 0 0 0 +3.537 4.059 -1.713 0 0 0 0 0 0 0 +3.52 4.064 -1.711 0 0 0 0 0 0 0 +3.513 4.082 -1.714 0 0 0 0 0 0 0 +3.5 4.081 -1.711 0 0 0 0 0 0 0 +3.484 4.087 -1.709 0 0 0 0 0 0 0 +3.478 4.107 -1.712 0 0 0 0 0 0 0 +3.464 4.116 -1.712 0 0 0 0 0 0 0 +3.454 4.13 -1.713 0 0 0 0 0 0 0 +3.443 4.144 -1.714 0 0 0 0 0 0 0 +3.423 4.146 -1.711 0 0 0 0 0 0 0 +3.424 4.16 -1.714 0 0 0 0 0 0 0 +3.402 4.16 -1.71 0 0 0 0 0 0 0 +3.399 4.183 -1.715 0 0 0 0 0 0 0 +3.379 4.186 -1.712 0 0 0 0 0 0 0 +3.372 4.204 -1.715 0 0 0 0 0 0 0 +3.358 4.213 -1.714 0 0 0 0 0 0 0 +3.346 4.213 -1.712 0 0 0 0 0 0 0 +3.334 4.225 -1.712 0 0 0 0 0 0 0 +3.32 4.234 -1.712 0 0 0 0 0 0 0 +3.308 4.245 -1.712 0 0 0 0 0 0 0 +3.294 4.256 -1.712 0 0 0 0 0 0 0 +3.282 4.268 -1.713 0 0 0 0 0 0 0 +3.28 4.293 -1.72 0 0 0 0 0 0 0 +3.26 4.28 -1.712 0 0 0 0 0 0 0 +3.249 4.293 -1.713 0 0 0 0 0 0 0 +3.229 4.296 -1.71 0 0 0 0 0 0 0 +3.22 4.312 -1.712 0 0 0 0 0 0 0 +3.205 4.319 -1.711 0 0 0 0 0 0 0 +3.192 4.331 -1.712 0 0 0 0 0 0 0 +3.198 4.367 -1.723 0 0 0 0 0 0 0 +3.159 4.343 -1.709 0 0 0 0 0 0 0 +3.158 4.356 -1.712 0 0 0 0 0 0 0 +3.164 4.393 -1.723 0 0 0 0 0 0 0 +3.136 4.383 -1.715 0 0 0 0 0 0 0 +3.119 4.388 -1.713 0 0 0 0 0 0 0 +3.1 4.39 -1.71 0 0 0 0 0 0 0 +3.09 4.406 -1.712 0 0 0 0 0 0 0 +3.08 4.421 -1.714 0 0 0 0 0 0 0 +3.069 4.421 -1.712 0 0 0 0 0 0 0 +3.06 4.437 -1.715 0 0 0 0 0 0 0 +3.049 4.451 -1.717 0 0 0 0 0 0 0 +3.034 4.459 -1.716 0 0 0 0 0 0 0 +3.024 4.475 -1.719 0 0 0 0 0 0 0 +3.004 4.475 -1.715 0 0 0 0 0 0 0 +2.993 4.489 -1.717 0 0 0 0 0 0 0 +2.985 4.508 -1.721 0 0 0 0 0 0 0 +2.981 4.517 -1.723 0 0 0 0 0 0 0 +2.96 4.515 -1.718 0 0 0 0 0 0 0 +2.948 4.528 -1.72 0 0 0 0 0 0 0 +2.932 4.535 -1.719 0 0 0 0 0 0 0 +2.921 4.549 -1.721 0 0 0 0 0 0 0 +2.904 4.554 -1.719 0 0 0 0 0 0 0 +2.897 4.558 -1.719 0 0 0 0 0 0 0 +2.885 4.572 -1.721 0 0 0 0 0 0 0 +2.874 4.586 -1.723 0 0 0 0 0 0 0 +2.858 4.592 -1.721 0 0 0 0 0 0 0 +2.847 4.607 -1.724 0 0 0 0 0 0 0 +2.83 4.611 -1.722 0 0 0 0 0 0 0 +2.811 4.614 -1.72 0 0 0 0 0 0 0 +2.803 4.632 -1.723 0 0 0 0 0 0 0 +2.796 4.638 -1.724 0 0 0 0 0 0 0 +2.788 4.657 -1.728 0 0 0 0 0 0 0 +2.769 4.659 -1.725 0 0 0 0 0 0 0 +2.753 4.666 -1.725 0 0 0 0 0 0 0 +2.739 4.675 -1.725 0 0 0 0 0 0 0 +2.724 4.683 -1.725 0 0 0 0 0 0 0 +2.714 4.7 -1.728 0 0 0 0 0 0 0 +2.702 4.696 -1.725 0 0 0 0 0 0 0 +2.686 4.703 -1.724 0 0 0 0 0 0 0 +2.671 4.711 -1.724 0 0 0 0 0 0 0 +2.66 4.726 -1.727 0 0 0 0 0 0 0 +2.645 4.733 -1.726 0 0 0 0 0 0 0 +2.63 4.741 -1.726 0 0 0 0 0 0 0 +2.61 4.741 -1.723 0 0 0 0 0 0 0 +2.615 4.767 -1.731 0 0 0 0 0 0 0 +2.593 4.763 -1.727 0 0 0 0 0 0 0 +2.567 4.75 -1.718 0 0 0 0 0 0 0 +2.561 4.775 -1.725 0 0 0 0 0 0 0 +2.545 4.781 -1.724 0 0 0 0 0 0 0 +2.543 4.814 -1.734 0 0 0 0 0 0 0 +2.526 4.819 -1.732 0 0 0 0 0 0 0 +2.519 4.822 -1.732 0 0 0 0 0 0 0 +2.501 4.825 -1.731 0 0 0 0 0 0 0 +2.487 4.837 -1.732 0 0 0 0 0 0 0 +2.476 4.851 -1.734 0 0 0 0 0 0 0 +2.459 4.855 -1.733 0 0 0 0 0 0 0 +2.439 4.855 -1.73 0 0 0 0 0 0 0 +2.428 4.871 -1.733 0 0 0 0 0 0 0 +2.402 4.837 -1.719 0 0 0 0 0 0 0 +2.392 4.857 -1.723 0 0 0 0 0 0 0 +2.372 4.854 -1.72 0 0 0 0 0 0 0 +2.358 4.863 -1.72 0 0 0 0 0 0 0 +2.342 4.869 -1.72 0 0 0 0 0 0 0 +2.328 4.88 -1.721 0 0 0 0 0 0 0 +2.311 4.884 -1.72 0 0 0 0 0 0 0 +2.298 4.896 -1.721 0 0 0 0 0 0 0 +2.285 4.887 -1.717 0 0 0 0 0 0 0 +2.277 4.91 -1.723 0 0 0 0 0 0 0 +2.256 4.905 -1.718 0 0 0 0 0 0 0 +2.243 4.917 -1.72 0 0 0 0 0 0 0 +2.225 4.919 -1.718 0 0 0 0 0 0 0 +2.212 4.933 -1.721 0 0 0 0 0 0 0 +2.195 4.937 -1.72 0 0 0 0 0 0 0 +2.187 4.938 -1.719 0 0 0 0 0 0 0 +2.174 4.952 -1.721 0 0 0 0 0 0 0 +2.156 4.952 -1.719 0 0 0 0 0 0 0 +2.143 4.966 -1.721 0 0 0 0 0 0 0 +2.13 4.978 -1.723 0 0 0 0 0 0 0 +2.115 4.986 -1.724 0 0 0 0 0 0 0 +2.1 4.994 -1.725 0 0 0 0 0 0 0 +2.095 5.005 -1.727 0 0 0 0 0 0 0 +2.076 5.004 -1.725 0 0 0 0 0 0 0 +2.059 5.007 -1.723 0 0 0 0 0 0 0 +2.04 5.005 -1.72 0 0 0 0 0 0 0 +2.029 5.024 -1.725 0 0 0 0 0 0 0 +2.013 5.028 -1.724 0 0 0 0 0 0 0 +1.992 5.022 -1.72 0 0 0 0 0 0 0 +1.99 5.039 -1.725 0 0 0 0 0 0 0 +1.972 5.04 -1.723 0 0 0 0 0 0 0 +1.955 5.045 -1.722 0 0 0 0 0 0 0 +1.945 5.065 -1.727 0 0 0 0 0 0 0 +1.925 5.06 -1.723 0 0 0 0 0 0 0 +1.907 5.061 -1.721 0 0 0 0 0 0 0 +1.893 5.072 -1.723 0 0 0 0 0 0 0 +1.887 5.081 -1.725 0 0 0 0 0 0 0 +1.873 5.092 -1.727 0 0 0 0 0 0 0 +1.856 5.094 -1.726 0 0 0 0 0 0 0 +1.838 5.096 -1.725 0 0 0 0 0 0 0 +1.822 5.1 -1.724 0 0 0 0 0 0 0 +1.804 5.101 -1.722 0 0 0 0 0 0 0 +1.79 5.114 -1.725 0 0 0 0 0 0 0 +1.77 5.108 -1.721 0 0 0 0 0 0 0 +1.762 5.111 -1.721 0 0 0 0 0 0 0 +1.751 5.129 -1.725 0 0 0 0 0 0 0 +1.728 5.117 -1.719 0 0 0 0 0 0 0 +1.706 5.102 -1.712 0 0 0 0 0 0 0 +1.693 5.119 -1.716 0 0 0 0 0 0 0 +1.668 5.095 -1.705 0 0 0 0 0 0 0 +1.655 5.111 -1.709 0 0 0 0 0 0 0 +1.648 5.116 -1.71 0 0 0 0 0 0 0 +1.627 5.106 -1.705 0 0 0 0 0 0 0 +1.611 5.111 -1.705 0 0 0 0 0 0 0 +1.595 5.118 -1.705 0 0 0 0 0 0 0 +1.581 5.129 -1.707 0 0 0 0 0 0 0 +1.557 5.108 -1.698 0 0 0 0 0 0 0 +1.541 5.115 -1.699 0 0 0 0 0 0 0 +1.53 5.105 -1.694 0 0 0 0 0 0 0 +1.516 5.117 -1.697 0 0 0 0 0 0 0 +1.498 5.116 -1.695 0 0 0 0 0 0 0 +1.481 5.119 -1.694 0 0 0 0 0 0 0 +1.466 5.127 -1.696 0 0 0 0 0 0 0 +1.451 5.135 -1.697 0 0 0 0 0 0 0 +1.431 5.125 -1.692 0 0 0 0 0 0 0 +1.426 5.137 -1.695 0 0 0 0 0 0 0 +1.406 5.13 -1.691 0 0 0 0 0 0 0 +1.39 5.133 -1.691 0 0 0 0 0 0 0 +1.377 5.15 -1.695 0 0 0 0 0 0 0 +1.356 5.136 -1.689 0 0 0 0 0 0 0 +1.344 5.157 -1.694 0 0 0 0 0 0 0 +1.324 5.144 -1.689 0 0 0 0 0 0 0 +1.31 5.158 -1.692 0 0 0 0 0 0 0 +1.299 5.149 -1.688 0 0 0 0 0 0 0 +1.285 5.16 -1.691 0 0 0 0 0 0 0 +1.266 5.155 -1.687 0 0 0 0 0 0 0 +1.251 5.162 -1.689 0 0 0 0 0 0 0 +1.232 5.157 -1.685 0 0 0 0 0 0 0 +1.216 5.161 -1.685 0 0 0 0 0 0 0 +1.201 5.17 -1.687 0 0 0 0 0 0 0 +1.192 5.167 -1.685 0 0 0 0 0 0 0 +1.173 5.157 -1.681 0 0 0 0 0 0 0 +1.158 5.17 -1.684 0 0 0 0 0 0 0 +1.141 5.17 -1.683 0 0 0 0 0 0 0 +1.124 5.17 -1.682 0 0 0 0 0 0 0 +1.11 5.181 -1.684 0 0 0 0 0 0 0 +1.095 5.19 -1.686 0 0 0 0 0 0 0 +1.084 5.183 -1.683 0 0 0 0 0 0 0 +1.069 5.188 -1.683 0 0 0 0 0 0 0 +0.612 3.074 -0.948 0 0 0 0 0 0 0 +0.629 3.204 -0.992 0 0 0 0 0 0 0 +0.602 3.124 -0.964 0 0 0 0 0 0 0 +0.606 3.193 -0.987 0 0 0 0 0 0 0 +0.594 3.184 -0.983 0 0 0 0 0 0 0 +0.589 3.187 -0.984 0 0 0 0 0 0 0 +0.58 3.194 -0.986 0 0 0 0 0 0 0 +0.572 3.205 -0.989 0 0 0 0 0 0 0 +0.564 3.22 -0.993 0 0 0 0 0 0 0 +0.554 3.22 -0.993 0 0 0 0 0 0 0 +0.537 3.184 -0.98 0 0 0 0 0 0 0 +0.521 3.154 -0.969 0 0 0 0 0 0 0 +0.51 3.148 -0.966 0 0 0 0 0 0 0 +0.503 3.136 -0.962 0 0 0 0 0 0 0 +0.494 3.141 -0.963 0 0 0 0 0 0 0 +0.482 3.132 -0.959 0 0 0 0 0 0 0 +0.473 3.139 -0.961 0 0 0 0 0 0 0 +0.462 3.131 -0.958 0 0 0 0 0 0 0 +0.453 3.138 -0.96 0 0 0 0 0 0 0 +0.443 3.141 -0.96 0 0 0 0 0 0 0 +0.439 3.148 -0.962 0 0 0 0 0 0 0 +0.429 3.149 -0.962 0 0 0 0 0 0 0 +0.418 3.141 -0.959 0 0 0 0 0 0 0 +0.409 3.146 -0.96 0 0 0 0 0 0 0 +0.398 3.143 -0.959 0 0 0 0 0 0 0 +0.389 3.15 -0.961 0 0 0 0 0 0 0 +0.38 3.155 -0.962 0 0 0 0 0 0 0 +0.374 3.154 -0.962 0 0 0 0 0 0 0 +0.365 3.155 -0.962 0 0 0 0 0 0 0 +0.354 3.149 -0.959 0 0 0 0 0 0 0 +0.345 3.157 -0.962 0 0 0 0 0 0 0 +0.334 3.155 -0.96 0 0 0 0 0 0 0 +0.325 3.159 -0.962 0 0 0 0 0 0 0 +0.316 3.166 -0.964 0 0 0 0 0 0 0 +0.309 3.155 -0.96 0 0 0 0 0 0 0 +0.299 3.156 -0.96 0 0 0 0 0 0 0 +0.29 3.159 -0.96 0 0 0 0 0 0 0 +0.28 3.16 -0.96 0 0 0 0 0 0 0 +0.27 3.165 -0.962 0 0 0 0 0 0 0 +0.261 3.169 -0.963 0 0 0 0 0 0 0 +0.25 3.161 -0.96 0 0 0 0 0 0 0 +0.245 3.167 -0.962 0 0 0 0 0 0 0 +0.237 3.183 -0.967 0 0 0 0 0 0 0 +0.231 3.244 -0.987 0 0 0 0 0 0 0 +0.219 3.22 -0.979 0 0 0 0 0 0 0 +0.209 3.222 -0.98 0 0 0 0 0 0 0 +0.198 3.21 -0.975 0 0 0 0 0 0 0 +0.188 3.207 -0.974 0 0 0 0 0 0 0 +0.178 3.203 -0.973 0 0 0 0 0 0 0 +0.173 3.207 -0.974 0 0 0 0 0 0 0 +0.161 3.174 -0.962 0 0 0 0 0 0 0 +0.154 3.226 -0.98 0 0 0 0 0 0 0 +0.142 3.203 -0.972 0 0 0 0 0 0 0 +0.217 5.254 -1.671 0 0 0 0 0 0 0 +0.131 3.175 -0.962 0 0 0 0 0 0 0 +0.201 5.259 -1.672 0 0 0 0 0 0 0 +0.193 5.259 -1.672 0 0 0 0 0 0 0 +0.176 5.267 -1.674 0 0 0 0 0 0 0 +0.16 5.273 -1.676 0 0 0 0 0 0 0 +0.143 5.253 -1.669 0 0 0 0 0 0 0 +0.126 5.261 -1.672 0 0 0 0 0 0 0 +0.11 5.256 -1.67 0 0 0 0 0 0 0 +0.093 5.256 -1.67 0 0 0 0 0 0 0 +0.085 5.262 -1.672 0 0 0 0 0 0 0 +0.069 5.262 -1.672 0 0 0 0 0 0 0 +0.052 5.274 -1.676 0 0 0 0 0 0 0 +0.036 5.283 -1.679 0 0 0 0 0 0 0 +0.019 5.281 -1.678 0 0 0 0 0 0 0 +0.003 5.283 -1.679 0 0 0 0 0 0 0 +-0.014 5.287 -1.68 0 0 0 0 0 0 0 +-0.031 5.293 -1.682 0 0 0 0 0 0 0 +-0.039 5.304 -1.686 0 0 0 0 0 0 0 +-0.056 5.287 -1.68 0 0 0 0 0 0 0 +-0.072 5.291 -1.682 0 0 0 0 0 0 0 +-0.089 5.304 -1.686 0 0 0 0 0 0 0 +-0.106 5.328 -1.694 0 0 0 0 0 0 0 +-0.123 5.369 -1.709 0 0 0 0 0 0 0 +-0.14 5.348 -1.702 0 0 0 0 0 0 0 +-0.148 5.353 -1.703 0 0 0 0 0 0 0 +-0.165 5.353 -1.703 0 0 0 0 0 0 0 +-0.182 5.358 -1.705 0 0 0 0 0 0 0 +-0.199 5.367 -1.709 0 0 0 0 0 0 0 +-0.216 5.368 -1.709 0 0 0 0 0 0 0 +-0.233 5.365 -1.709 0 0 0 0 0 0 0 +-0.25 5.37 -1.711 0 0 0 0 0 0 0 +-0.259 5.372 -1.711 0 0 0 0 0 0 0 +-0.275 5.369 -1.711 0 0 0 0 0 0 0 +-0.293 5.381 -1.715 0 0 0 0 0 0 0 +-0.31 5.384 -1.716 0 0 0 0 0 0 0 +-0.327 5.391 -1.719 0 0 0 0 0 0 0 +-0.345 5.397 -1.721 0 0 0 0 0 0 0 +-0.362 5.398 -1.722 0 0 0 0 0 0 0 +-0.37 5.396 -1.721 0 0 0 0 0 0 0 +-0.388 5.406 -1.725 0 0 0 0 0 0 0 +-0.405 5.401 -1.724 0 0 0 0 0 0 0 +-0.422 5.405 -1.726 0 0 0 0 0 0 0 +-0.439 5.406 -1.727 0 0 0 0 0 0 0 +-0.458 5.425 -1.734 0 0 0 0 0 0 0 +-0.474 5.416 -1.731 0 0 0 0 0 0 0 +-0.484 5.429 -1.736 0 0 0 0 0 0 0 +-0.501 5.425 -1.735 0 0 0 0 0 0 0 +-0.518 5.429 -1.737 0 0 0 0 0 0 0 +-0.535 5.424 -1.736 0 0 0 0 0 0 0 +-0.554 5.439 -1.741 0 0 0 0 0 0 0 +-0.573 5.46 -1.749 0 0 0 0 0 0 0 +-0.587 5.432 -1.74 0 0 0 0 0 0 0 +-0.6 5.465 -1.752 0 0 0 0 0 0 0 +-0.614 5.438 -1.743 0 0 0 0 0 0 0 +-0.632 5.448 -1.747 0 0 0 0 0 0 0 +-0.648 5.436 -1.744 0 0 0 0 0 0 0 +-0.713 5.537 -1.781 0 0 0 0 0 0 0 +-0.731 5.538 -1.782 0 0 0 0 0 0 0 +-0.734 5.494 -1.767 0 0 0 0 0 0 0 +-0.747 5.458 -1.756 0 0 0 0 0 0 0 +-0.761 5.431 -1.747 0 0 0 0 0 0 0 +-0.777 5.427 -1.747 0 0 0 0 0 0 0 +-0.793 5.417 -1.744 0 0 0 0 0 0 0 +-0.811 5.422 -1.747 0 0 0 0 0 0 0 +-0.824 5.391 -1.737 0 0 0 0 0 0 0 +-0.837 5.418 -1.747 0 0 0 0 0 0 0 +-0.851 5.397 -1.74 0 0 0 0 0 0 0 +-0.872 5.422 -1.75 0 0 0 0 0 0 0 +-0.888 5.408 -1.746 0 0 0 0 0 0 0 +-0.903 5.398 -1.743 0 0 0 0 0 0 0 +-0.921 5.399 -1.745 0 0 0 0 0 0 0 +-0.94 5.407 -1.749 0 0 0 0 0 0 0 +-0.946 5.392 -1.744 0 0 0 0 0 0 0 +-0.962 5.386 -1.743 0 0 0 0 0 0 0 +-0.983 5.401 -1.749 0 0 0 0 0 0 0 +-0.998 5.391 -1.747 0 0 0 0 0 0 0 +-1.015 5.386 -1.746 0 0 0 0 0 0 0 +-1.032 5.384 -1.747 0 0 0 0 0 0 0 +-1.05 5.385 -1.748 0 0 0 0 0 0 0 +-1.057 5.377 -1.746 0 0 0 0 0 0 0 +-1.074 5.372 -1.745 0 0 0 0 0 0 0 +-1.09 5.365 -1.744 0 0 0 0 0 0 0 +-1.105 5.356 -1.742 0 0 0 0 0 0 0 +-1.125 5.364 -1.746 0 0 0 0 0 0 0 +-1.141 5.36 -1.746 0 0 0 0 0 0 0 +-1.159 5.358 -1.747 0 0 0 0 0 0 0 +-1.175 5.351 -1.745 0 0 0 0 0 0 0 +-1.183 5.349 -1.745 0 0 0 0 0 0 0 +-1.201 5.349 -1.747 0 0 0 0 0 0 0 +-1.218 5.347 -1.747 0 0 0 0 0 0 0 +-1.233 5.336 -1.745 0 0 0 0 0 0 0 +-1.252 5.343 -1.749 0 0 0 0 0 0 0 +-1.267 5.332 -1.746 0 0 0 0 0 0 0 +-1.286 5.337 -1.749 0 0 0 0 0 0 0 +-1.291 5.32 -1.744 0 0 0 0 0 0 0 +-1.31 5.323 -1.747 0 0 0 0 0 0 0 +-1.323 5.305 -1.741 0 0 0 0 0 0 0 +-1.34 5.302 -1.742 0 0 0 0 0 0 0 +-1.359 5.307 -1.745 0 0 0 0 0 0 0 +-1.376 5.307 -1.747 0 0 0 0 0 0 0 +-1.394 5.304 -1.747 0 0 0 0 0 0 0 +-1.4 5.293 -1.744 0 0 0 0 0 0 0 +-1.417 5.292 -1.745 0 0 0 0 0 0 0 +-1.433 5.284 -1.744 0 0 0 0 0 0 0 +-1.448 5.274 -1.742 0 0 0 0 0 0 0 +-1.464 5.267 -1.741 0 0 0 0 0 0 0 +-1.48 5.261 -1.741 0 0 0 0 0 0 0 +-1.5 5.269 -1.745 0 0 0 0 0 0 0 +-1.509 5.27 -1.747 0 0 0 0 0 0 0 +-1.525 5.262 -1.745 0 0 0 0 0 0 0 +-1.544 5.264 -1.748 0 0 0 0 0 0 0 +-1.558 5.252 -1.745 0 0 0 0 0 0 0 +-1.573 5.244 -1.744 0 0 0 0 0 0 0 +-1.594 5.251 -1.749 0 0 0 0 0 0 0 +-1.606 5.234 -1.744 0 0 0 0 0 0 0 +-1.623 5.229 -1.744 0 0 0 0 0 0 0 +-1.633 5.233 -1.747 0 0 0 0 0 0 0 +-1.649 5.226 -1.746 0 0 0 0 0 0 0 +-1.667 5.225 -1.747 0 0 0 0 0 0 0 +-1.684 5.221 -1.748 0 0 0 0 0 0 0 +-1.694 5.198 -1.741 0 0 0 0 0 0 0 +-1.717 5.212 -1.749 0 0 0 0 0 0 0 +-1.729 5.194 -1.744 0 0 0 0 0 0 0 +-1.738 5.195 -1.745 0 0 0 0 0 0 0 +-1.756 5.193 -1.747 0 0 0 0 0 0 0 +-1.772 5.186 -1.746 0 0 0 0 0 0 0 +-1.787 5.179 -1.745 0 0 0 0 0 0 0 +-1.802 5.168 -1.743 0 0 0 0 0 0 0 +-1.82 5.167 -1.745 0 0 0 0 0 0 0 +-1.836 5.162 -1.745 0 0 0 0 0 0 0 +-1.84 5.148 -1.741 0 0 0 0 0 0 0 +-1.86 5.151 -1.745 0 0 0 0 0 0 0 +-1.875 5.143 -1.744 0 0 0 0 0 0 0 +-1.891 5.138 -1.744 0 0 0 0 0 0 0 +-1.91 5.139 -1.747 0 0 0 0 0 0 0 +-1.92 5.117 -1.741 0 0 0 0 0 0 0 +-1.936 5.111 -1.741 0 0 0 0 0 0 0 +-1.95 5.122 -1.746 0 0 0 0 0 0 0 +-1.96 5.1 -1.74 0 0 0 0 0 0 0 +-1.98 5.104 -1.744 0 0 0 0 0 0 0 +-1.994 5.093 -1.742 0 0 0 0 0 0 0 +-2.009 5.084 -1.741 0 0 0 0 0 0 0 +-2.026 5.08 -1.742 0 0 0 0 0 0 0 +-2.054 5.103 -1.753 0 0 0 0 0 0 0 +-2.057 5.065 -1.741 0 0 0 0 0 0 0 +-2.069 5.073 -1.745 0 0 0 0 0 0 0 +-2.084 5.063 -1.744 0 0 0 0 0 0 0 +-2.111 5.084 -1.754 0 0 0 0 0 0 0 +-2.148 5.128 -1.773 0 0 0 0 0 0 0 +-2.156 5.102 -1.766 0 0 0 0 0 0 0 +-2.167 5.083 -1.761 0 0 0 0 0 0 0 +-2.179 5.068 -1.758 0 0 0 0 0 0 0 +-2.178 5.043 -1.75 0 0 0 0 0 0 0 +-2.205 5.019 -1.747 0 0 0 0 0 0 0 +-2.233 5.038 -1.756 0 0 0 0 0 0 0 +-2.248 5.029 -1.756 0 0 0 0 0 0 0 +-2.258 5.01 -1.751 0 0 0 0 0 0 0 +-2.278 5.012 -1.754 0 0 0 0 0 0 0 +-2.287 5.012 -1.756 0 0 0 0 0 0 0 +-2.286 4.968 -1.742 0 0 0 0 0 0 0 +-2.303 4.963 -1.743 0 0 0 0 0 0 0 +-2.318 4.955 -1.743 0 0 0 0 0 0 0 +-2.329 4.938 -1.739 0 0 0 0 0 0 0 +-2.349 4.941 -1.743 0 0 0 0 0 0 0 +-2.36 4.923 -1.739 0 0 0 0 0 0 0 +-2.369 4.923 -1.74 0 0 0 0 0 0 0 +-2.391 4.929 -1.745 0 0 0 0 0 0 0 +-2.4 4.908 -1.74 0 0 0 0 0 0 0 +-2.419 4.907 -1.743 0 0 0 0 0 0 0 +-2.428 4.886 -1.738 0 0 0 0 0 0 0 +-2.45 4.892 -1.743 0 0 0 0 0 0 0 +-2.463 4.879 -1.741 0 0 0 0 0 0 0 +-2.477 4.869 -1.74 0 0 0 0 0 0 0 +-2.489 4.874 -1.743 0 0 0 0 0 0 0 +-2.511 4.88 -1.749 0 0 0 0 0 0 0 +-2.52 4.86 -1.744 0 0 0 0 0 0 0 +-2.535 4.85 -1.743 0 0 0 0 0 0 0 +-2.552 4.846 -1.745 0 0 0 0 0 0 0 +-2.567 4.838 -1.745 0 0 0 0 0 0 0 +-2.582 4.83 -1.745 0 0 0 0 0 0 0 +-2.594 4.834 -1.748 0 0 0 0 0 0 0 +-2.608 4.824 -1.747 0 0 0 0 0 0 0 +-2.619 4.807 -1.744 0 0 0 0 0 0 0 +-2.635 4.801 -1.745 0 0 0 0 0 0 0 +-2.65 4.793 -1.745 0 0 0 0 0 0 0 +-2.666 4.786 -1.745 0 0 0 0 0 0 0 +-2.683 4.781 -1.747 0 0 0 0 0 0 0 +-2.698 4.772 -1.747 0 0 0 0 0 0 0 +-2.709 4.775 -1.749 0 0 0 0 0 0 0 +-2.727 4.771 -1.751 0 0 0 0 0 0 0 +-2.74 4.759 -1.75 0 0 0 0 0 0 0 +-2.752 4.746 -1.748 0 0 0 0 0 0 0 +-2.768 4.739 -1.749 0 0 0 0 0 0 0 +-2.782 4.728 -1.748 0 0 0 0 0 0 0 +-2.799 4.723 -1.749 0 0 0 0 0 0 0 +-2.808 4.722 -1.75 0 0 0 0 0 0 0 +-2.825 4.716 -1.752 0 0 0 0 0 0 0 +-2.838 4.704 -1.75 0 0 0 0 0 0 0 +-2.85 4.69 -1.749 0 0 0 0 0 0 0 +-2.87 4.691 -1.752 0 0 0 0 0 0 0 +-2.881 4.675 -1.75 0 0 0 0 0 0 0 +-2.896 4.666 -1.75 0 0 0 0 0 0 0 +-2.907 4.668 -1.752 0 0 0 0 0 0 0 +-2.925 4.664 -1.754 0 0 0 0 0 0 0 +-2.939 4.655 -1.754 0 0 0 0 0 0 0 +-2.949 4.637 -1.751 0 0 0 0 0 0 0 +-2.963 4.628 -1.751 0 0 0 0 0 0 0 +-2.975 4.614 -1.749 0 0 0 0 0 0 0 +-2.992 4.609 -1.751 0 0 0 0 0 0 0 +-3 4.605 -1.751 0 0 0 0 0 0 0 +-3.021 4.606 -1.756 0 0 0 0 0 0 0 +-3.03 4.589 -1.752 0 0 0 0 0 0 0 +-3.047 4.583 -1.754 0 0 0 0 0 0 0 +-3.059 4.57 -1.752 0 0 0 0 0 0 0 +-3.078 4.566 -1.755 0 0 0 0 0 0 0 +-3.093 4.558 -1.756 0 0 0 0 0 0 0 +-3.108 4.549 -1.756 0 0 0 0 0 0 0 +-3.111 4.539 -1.754 0 0 0 0 0 0 0 +-3.122 4.525 -1.752 0 0 0 0 0 0 0 +-3.142 4.522 -1.755 0 0 0 0 0 0 0 +-3.158 4.516 -1.756 0 0 0 0 0 0 0 +-3.173 4.506 -1.756 0 0 0 0 0 0 0 +-3.191 4.502 -1.759 0 0 0 0 0 0 0 +-3.2 4.484 -1.756 0 0 0 0 0 0 0 +-3.205 4.476 -1.754 0 0 0 0 0 0 0 +-3.219 4.466 -1.754 0 0 0 0 0 0 0 +-3.236 4.46 -1.756 0 0 0 0 0 0 0 +-3.244 4.443 -1.753 0 0 0 0 0 0 0 +-3.267 4.445 -1.758 0 0 0 0 0 0 0 +-3.279 4.431 -1.757 0 0 0 0 0 0 0 +-3.286 4.412 -1.753 0 0 0 0 0 0 0 +-3.299 4.414 -1.756 0 0 0 0 0 0 0 +-3.31 4.401 -1.755 0 0 0 0 0 0 0 +-3.318 4.383 -1.752 0 0 0 0 0 0 0 +-3.336 4.377 -1.754 0 0 0 0 0 0 0 +-3.356 4.375 -1.758 0 0 0 0 0 0 0 +-3.362 4.354 -1.753 0 0 0 0 0 0 0 +-3.378 4.347 -1.754 0 0 0 0 0 0 0 +-3.389 4.347 -1.757 0 0 0 0 0 0 0 +-3.396 4.328 -1.753 0 0 0 0 0 0 0 +-3.414 4.323 -1.756 0 0 0 0 0 0 0 +-3.435 4.321 -1.76 0 0 0 0 0 0 0 +-3.444 4.305 -1.757 0 0 0 0 0 0 0 +-3.454 4.289 -1.755 0 0 0 0 0 0 0 +-3.474 4.287 -1.759 0 0 0 0 0 0 0 +-3.476 4.276 -1.756 0 0 0 0 0 0 0 +-3.491 4.266 -1.757 0 0 0 0 0 0 0 +-3.513 4.266 -1.761 0 0 0 0 0 0 0 +-3.521 4.249 -1.759 0 0 0 0 0 0 0 +-3.536 4.239 -1.76 0 0 0 0 0 0 0 +-3.542 4.219 -1.756 0 0 0 0 0 0 0 +-3.555 4.208 -1.756 0 0 0 0 0 0 0 +-3.574 4.204 -1.759 0 0 0 0 0 0 0 +-3.586 4.204 -1.761 0 0 0 0 0 0 0 +-3.592 4.184 -1.758 0 0 0 0 0 0 0 +-3.608 4.177 -1.76 0 0 0 0 0 0 0 +-3.624 4.169 -1.761 0 0 0 0 0 0 0 +-3.621 4.139 -1.752 0 0 0 0 0 0 0 +-3.641 4.136 -1.756 0 0 0 0 0 0 0 +-3.669 4.142 -1.764 0 0 0 0 0 0 0 +-3.666 4.125 -1.759 0 0 0 0 0 0 0 +-3.683 4.117 -1.761 0 0 0 0 0 0 0 +-3.693 4.103 -1.76 0 0 0 0 0 0 0 +-3.701 4.086 -1.757 0 0 0 0 0 0 0 +-3.721 4.082 -1.761 0 0 0 0 0 0 0 +-3.738 4.075 -1.763 0 0 0 0 0 0 0 +-3.756 4.069 -1.765 0 0 0 0 0 0 0 +-3.774 4.075 -1.771 0 0 0 0 0 0 0 +-3.795 4.073 -1.776 0 0 0 0 0 0 0 +-3.838 4.093 -1.79 0 0 0 0 0 0 0 +-3.816 4.044 -1.773 0 0 0 0 0 0 0 +-3.83 4.033 -1.774 0 0 0 0 0 0 0 +-3.841 4.02 -1.773 0 0 0 0 0 0 0 +-3.851 4.005 -1.772 0 0 0 0 0 0 0 +-3.911 4.055 -1.798 0 0 0 0 0 0 0 +-3.907 4.025 -1.79 0 0 0 0 0 0 0 +-3.923 4.017 -1.792 0 0 0 0 0 0 0 +-3.934 4.003 -1.791 0 0 0 0 0 0 0 +-3.934 3.977 -1.785 0 0 0 0 0 0 0 +-3.96 3.978 -1.791 0 0 0 0 0 0 0 +-3.943 3.936 -1.777 0 0 0 0 0 0 0 +-3.945 3.926 -1.775 0 0 0 0 0 0 0 +-3.961 3.918 -1.777 0 0 0 0 0 0 0 +-3.973 3.905 -1.777 0 0 0 0 0 0 0 +-3.979 3.886 -1.774 0 0 0 0 0 0 0 +-3.99 3.872 -1.773 0 0 0 0 0 0 0 +-3.999 3.857 -1.772 0 0 0 0 0 0 0 +-4.002 3.835 -1.767 0 0 0 0 0 0 0 +-4.014 3.823 -1.767 0 0 0 0 0 0 0 +-4.017 3.814 -1.766 0 0 0 0 0 0 0 +-4.024 3.796 -1.763 0 0 0 0 0 0 0 +-4.037 3.784 -1.764 0 0 0 0 0 0 0 +-4.061 3.783 -1.77 0 0 0 0 0 0 0 +-4.055 3.754 -1.761 0 0 0 0 0 0 0 +-4.071 3.745 -1.763 0 0 0 0 0 0 0 +-4.085 3.735 -1.765 0 0 0 0 0 0 0 +-4.087 3.724 -1.763 0 0 0 0 0 0 0 +-4.093 3.706 -1.76 0 0 0 0 0 0 0 +-4.102 3.691 -1.759 0 0 0 0 0 0 0 +-4.122 3.686 -1.763 0 0 0 0 0 0 0 +-4.129 3.669 -1.761 0 0 0 0 0 0 0 +-4.141 3.656 -1.761 0 0 0 0 0 0 0 +-4.159 3.649 -1.764 0 0 0 0 0 0 0 +-4.16 3.638 -1.761 0 0 0 0 0 0 0 +-4.162 3.617 -1.758 0 0 0 0 0 0 0 +-4.179 3.609 -1.76 0 0 0 0 0 0 0 +-4.195 3.6 -1.762 0 0 0 0 0 0 0 +-4.205 3.585 -1.761 0 0 0 0 0 0 0 +-4.212 3.568 -1.76 0 0 0 0 0 0 0 +-4.22 3.552 -1.758 0 0 0 0 0 0 0 +-4.23 3.55 -1.76 0 0 0 0 0 0 0 +-4.234 3.53 -1.757 0 0 0 0 0 0 0 +-4.248 3.519 -1.758 0 0 0 0 0 0 0 +-4.25 3.499 -1.754 0 0 0 0 0 0 0 +-4.276 3.497 -1.761 0 0 0 0 0 0 0 +-4.277 3.475 -1.756 0 0 0 0 0 0 0 +-4.293 3.467 -1.759 0 0 0 0 0 0 0 +-4.297 3.447 -1.756 0 0 0 0 0 0 0 +-4.298 3.437 -1.754 0 0 0 0 0 0 0 +-4.314 3.428 -1.756 0 0 0 0 0 0 0 +-4.333 3.421 -1.76 0 0 0 0 0 0 0 +-4.326 3.393 -1.752 0 0 0 0 0 0 0 +-4.344 3.385 -1.755 0 0 0 0 0 0 0 +-4.351 3.369 -1.754 0 0 0 0 0 0 0 +-4.365 3.358 -1.755 0 0 0 0 0 0 0 +-4.367 3.348 -1.754 0 0 0 0 0 0 0 +-4.378 3.335 -1.754 0 0 0 0 0 0 0 +-4.388 3.321 -1.754 0 0 0 0 0 0 0 +-4.4 3.308 -1.754 0 0 0 0 0 0 0 +-4.416 3.299 -1.757 0 0 0 0 0 0 0 +-4.431 3.289 -1.759 0 0 0 0 0 0 0 +-4.437 3.271 -1.757 0 0 0 0 0 0 0 +-4.45 3.27 -1.76 0 0 0 0 0 0 0 +-4.454 3.251 -1.758 0 0 0 0 0 0 0 +-4.464 3.237 -1.758 0 0 0 0 0 0 0 +-4.479 3.227 -1.76 0 0 0 0 0 0 0 +-4.48 3.206 -1.756 0 0 0 0 0 0 0 +-4.494 3.195 -1.758 0 0 0 0 0 0 0 +-4.509 3.184 -1.76 0 0 0 0 0 0 0 +-4.519 3.181 -1.761 0 0 0 0 0 0 0 +-4.522 3.162 -1.759 0 0 0 0 0 0 0 +-4.532 3.148 -1.759 0 0 0 0 0 0 0 +-4.539 3.131 -1.758 0 0 0 0 0 0 0 +-4.549 3.117 -1.758 0 0 0 0 0 0 0 +-4.571 3.111 -1.763 0 0 0 0 0 0 0 +-4.565 3.086 -1.756 0 0 0 0 0 0 0 +-4.572 3.08 -1.757 0 0 0 0 0 0 0 +-4.586 3.069 -1.759 0 0 0 0 0 0 0 +-4.6 3.058 -1.761 0 0 0 0 0 0 0 +-4.602 3.038 -1.758 0 0 0 0 0 0 0 +-4.618 3.028 -1.76 0 0 0 0 0 0 0 +-4.612 3.003 -1.754 0 0 0 0 0 0 0 +-4.638 3 -1.761 0 0 0 0 0 0 0 +-4.634 2.986 -1.757 0 0 0 0 0 0 0 +-4.646 2.974 -1.758 0 0 0 0 0 0 0 +-4.655 2.959 -1.758 0 0 0 0 0 0 0 +-4.663 2.943 -1.758 0 0 0 0 0 0 0 +-4.682 2.935 -1.761 0 0 0 0 0 0 0 +-4.691 2.92 -1.761 0 0 0 0 0 0 0 +-4.687 2.897 -1.756 0 0 0 0 0 0 0 +-4.697 2.883 -1.756 0 0 0 0 0 0 0 +-4.699 2.874 -1.756 0 0 0 0 0 0 0 +-4.72 2.866 -1.76 0 0 0 0 0 0 0 +-4.717 2.845 -1.756 0 0 0 0 0 0 0 +-4.726 2.83 -1.756 0 0 0 0 0 0 0 +-4.734 2.814 -1.755 0 0 0 0 0 0 0 +-4.749 2.803 -1.758 0 0 0 0 0 0 0 +-4.764 2.792 -1.76 0 0 0 0 0 0 0 +-4.77 2.785 -1.761 0 0 0 0 0 0 0 +-4.771 2.766 -1.758 0 0 0 0 0 0 0 +-4.776 2.749 -1.756 0 0 0 0 0 0 0 +-4.79 2.736 -1.758 0 0 0 0 0 0 0 +-4.8 2.722 -1.759 0 0 0 0 0 0 0 +-4.817 2.712 -1.762 0 0 0 0 0 0 0 +-4.82 2.694 -1.76 0 0 0 0 0 0 0 +-4.829 2.689 -1.762 0 0 0 0 0 0 0 +-4.835 2.672 -1.761 0 0 0 0 0 0 0 +-4.843 2.657 -1.761 0 0 0 0 0 0 0 +-4.853 2.643 -1.761 0 0 0 0 0 0 0 +-4.864 2.629 -1.763 0 0 0 0 0 0 0 +-4.873 2.614 -1.763 0 0 0 0 0 0 0 +-4.888 2.602 -1.765 0 0 0 0 0 0 0 +-4.878 2.587 -1.76 0 0 0 0 0 0 0 +-4.896 2.577 -1.764 0 0 0 0 0 0 0 +-4.899 2.559 -1.762 0 0 0 0 0 0 0 +-4.897 2.539 -1.758 0 0 0 0 0 0 0 +-4.91 2.526 -1.76 0 0 0 0 0 0 0 +-4.92 2.511 -1.761 0 0 0 0 0 0 0 +-4.935 2.499 -1.763 0 0 0 0 0 0 0 +-4.93 2.487 -1.76 0 0 0 0 0 0 0 +-4.933 2.469 -1.758 0 0 0 0 0 0 0 +-4.951 2.459 -1.762 0 0 0 0 0 0 0 +-4.957 2.442 -1.761 0 0 0 0 0 0 0 +-4.964 2.427 -1.761 0 0 0 0 0 0 0 +-4.977 2.414 -1.763 0 0 0 0 0 0 0 +-4.98 2.395 -1.761 0 0 0 0 0 0 0 +-4.996 2.384 -1.765 0 0 0 0 0 0 0 +-4.989 2.371 -1.761 0 0 0 0 0 0 0 +-5.003 2.359 -1.763 0 0 0 0 0 0 0 +-5 2.338 -1.76 0 0 0 0 0 0 0 +-5.009 2.323 -1.76 0 0 0 0 0 0 0 +-5.027 2.312 -1.764 0 0 0 0 0 0 0 +-5.039 2.299 -1.766 0 0 0 0 0 0 0 +-5.045 2.282 -1.765 0 0 0 0 0 0 0 +-5.054 2.277 -1.767 0 0 0 0 0 0 0 +-5.045 2.254 -1.761 0 0 0 0 0 0 0 +-5.058 2.24 -1.763 0 0 0 0 0 0 0 +-5.065 2.224 -1.763 0 0 0 0 0 0 0 +-5.071 2.208 -1.763 0 0 0 0 0 0 0 +-5.084 2.195 -1.765 0 0 0 0 0 0 0 +-5.082 2.175 -1.762 0 0 0 0 0 0 0 +-5.108 2.177 -1.77 0 0 0 0 0 0 0 +-5.106 2.157 -1.767 0 0 0 0 0 0 0 +-5.102 2.136 -1.763 0 0 0 0 0 0 0 +-5.111 2.121 -1.764 0 0 0 0 0 0 0 +-5.14 2.115 -1.772 0 0 0 0 0 0 0 +-5.131 2.092 -1.767 0 0 0 0 0 0 0 +-5.137 2.076 -1.767 0 0 0 0 0 0 0 +-5.146 2.07 -1.769 0 0 0 0 0 0 0 +-5.149 2.052 -1.767 0 0 0 0 0 0 0 +-5.311 1.611 -1.77 0 0 0 0 0 0 0 +-5.318 1.595 -1.77 0 0 0 0 0 0 0 +-5.321 1.577 -1.77 0 0 0 0 0 0 0 +-5.328 1.561 -1.77 0 0 0 0 0 0 0 +-5.324 1.542 -1.767 0 0 0 0 0 0 0 +-5.341 1.538 -1.772 0 0 0 0 0 0 0 +-5.348 1.522 -1.773 0 0 0 0 0 0 0 +-5.34 1.501 -1.769 0 0 0 0 0 0 0 +-5.348 1.485 -1.77 0 0 0 0 0 0 0 +-5.358 1.47 -1.772 0 0 0 0 0 0 0 +-5.361 1.453 -1.771 0 0 0 0 0 0 0 +-5.356 1.433 -1.768 0 0 0 0 0 0 0 +-5.368 1.418 -1.77 0 0 0 0 0 0 0 +-5.37 1.41 -1.77 0 0 0 0 0 0 0 +-5.367 1.391 -1.768 0 0 0 0 0 0 0 +-5.383 1.377 -1.772 0 0 0 0 0 0 0 +-5.385 1.36 -1.771 0 0 0 0 0 0 0 +-5.393 1.344 -1.772 0 0 0 0 0 0 0 +-5.408 1.33 -1.776 0 0 0 0 0 0 0 +-5.398 1.309 -1.771 0 0 0 0 0 0 0 +-5.407 1.302 -1.774 0 0 0 0 0 0 0 +-5.411 1.285 -1.774 0 0 0 0 0 0 0 +-5.417 1.269 -1.774 0 0 0 0 0 0 0 +-5.404 1.248 -1.769 0 0 0 0 0 0 0 +-5.418 1.233 -1.772 0 0 0 0 0 0 0 +-5.403 1.212 -1.765 0 0 0 0 0 0 0 +-5.42 1.198 -1.77 0 0 0 0 0 0 0 +-5.44 1.184 -1.776 0 0 0 0 0 0 0 +-5.427 1.173 -1.77 0 0 0 0 0 0 0 +-5.447 1.159 -1.776 0 0 0 0 0 0 0 +-5.449 1.142 -1.776 0 0 0 0 0 0 0 +-5.429 1.119 -1.767 0 0 0 0 0 0 0 +-5.44 1.104 -1.77 0 0 0 0 0 0 0 +-5.454 1.089 -1.774 0 0 0 0 0 0 0 +-5.446 1.07 -1.77 0 0 0 0 0 0 0 +-5.461 1.064 -1.774 0 0 0 0 0 0 0 +-5.451 1.044 -1.77 0 0 0 0 0 0 0 +-5.451 1.026 -1.769 0 0 0 0 0 0 0 +-5.465 1.011 -1.772 0 0 0 0 0 0 0 +-5.476 0.995 -1.775 0 0 0 0 0 0 0 +-5.471 0.977 -1.772 0 0 0 0 0 0 0 +-5.474 0.96 -1.772 0 0 0 0 0 0 0 +-5.48 0.952 -1.774 0 0 0 0 0 0 0 +-5.483 0.934 -1.774 0 0 0 0 0 0 0 +-5.48 0.916 -1.772 0 0 0 0 0 0 0 +-5.488 0.9 -1.774 0 0 0 0 0 0 0 +-5.486 0.882 -1.772 0 0 0 0 0 0 0 +-5.5 0.866 -1.776 0 0 0 0 0 0 0 +-5.502 0.849 -1.776 0 0 0 0 0 0 0 +-5.492 0.839 -1.772 0 0 0 0 0 0 0 +-5.501 0.822 -1.774 0 0 0 0 0 0 0 +-5.507 0.806 -1.775 0 0 0 0 0 0 0 +-5.5 0.787 -1.772 0 0 0 0 0 0 0 +-5.506 0.77 -1.773 0 0 0 0 0 0 0 +-5.503 0.752 -1.771 0 0 0 0 0 0 0 +-5.505 0.735 -1.771 0 0 0 0 0 0 0 +-5.514 0.727 -1.774 0 0 0 0 0 0 0 +-5.511 0.709 -1.772 0 0 0 0 0 0 0 +-5.515 0.692 -1.772 0 0 0 0 0 0 0 +-5.517 0.675 -1.772 0 0 0 0 0 0 0 +-5.525 0.658 -1.774 0 0 0 0 0 0 0 +-5.519 0.64 -1.772 0 0 0 0 0 0 0 +-5.529 0.623 -1.774 0 0 0 0 0 0 0 +-5.517 0.604 -1.77 0 0 0 0 0 0 0 +-5.522 0.596 -1.771 0 0 0 0 0 0 0 +-5.535 0.58 -1.775 0 0 0 0 0 0 0 +-5.535 0.562 -1.774 0 0 0 0 0 0 0 +-5.526 0.544 -1.77 0 0 0 0 0 0 0 +-5.523 0.526 -1.769 0 0 0 0 0 0 0 +-5.527 0.509 -1.77 0 0 0 0 0 0 0 +-5.534 0.492 -1.772 0 0 0 0 0 0 0 +-5.531 0.483 -1.77 0 0 0 0 0 0 0 +-5.533 0.466 -1.77 0 0 0 0 0 0 0 +-5.534 0.448 -1.77 0 0 0 0 0 0 0 +-5.537 0.431 -1.771 0 0 0 0 0 0 0 +-5.539 0.414 -1.771 0 0 0 0 0 0 0 +-5.548 0.397 -1.774 0 0 0 0 0 0 0 +-5.547 0.379 -1.773 0 0 0 0 0 0 0 +-5.536 0.37 -1.769 0 0 0 0 0 0 0 +-5.539 0.353 -1.77 0 0 0 0 0 0 0 +-5.54 0.335 -1.77 0 0 0 0 0 0 0 +-5.543 0.318 -1.77 0 0 0 0 0 0 0 +-5.537 0.3 -1.768 0 0 0 0 0 0 0 +-5.549 0.283 -1.772 0 0 0 0 0 0 0 +-5.533 0.265 -1.766 0 0 0 0 0 0 0 +-5.541 0.257 -1.769 0 0 0 0 0 0 0 +-5.536 0.239 -1.767 0 0 0 0 0 0 0 +-5.546 0.222 -1.77 0 0 0 0 0 0 0 +-5.738 0.212 -1.835 0 0 0 0 0 0 0 +-5.75 0.195 -1.839 0 0 0 0 0 0 0 +-5.754 0.177 -1.84 0 0 0 0 0 0 0 +-5.756 0.159 -1.841 0 0 0 0 0 0 0 +-5.747 0.141 -1.837 0 0 0 0 0 0 0 +-5.737 0.122 -1.834 0 0 0 0 0 0 0 +-5.729 0.113 -1.831 0 0 0 0 0 0 0 +-5.752 0.096 -1.839 0 0 0 0 0 0 0 +-5.732 0.077 -1.832 0 0 0 0 0 0 0 +-5.745 0.059 -1.836 0 0 0 0 0 0 0 +-5.751 0.041 -1.838 0 0 0 0 0 0 0 +-5.742 0.023 -1.835 0 0 0 0 0 0 0 +-5.736 0.005 -1.833 0 0 0 0 0 0 0 +-5.734 -0.004 -1.832 0 0 0 0 0 0 0 +-5.738 -0.022 -1.834 0 0 0 0 0 0 0 +-5.736 -0.04 -1.833 0 0 0 0 0 0 0 +-5.741 -0.058 -1.835 0 0 0 0 0 0 0 +-5.741 -0.076 -1.835 0 0 0 0 0 0 0 +-5.743 -0.094 -1.836 0 0 0 0 0 0 0 +-5.737 -0.112 -1.834 0 0 0 0 0 0 0 +-5.737 -0.121 -1.834 0 0 0 0 0 0 0 +-5.729 -0.139 -1.831 0 0 0 0 0 0 0 +-5.722 -0.157 -1.829 0 0 0 0 0 0 0 +-5.722 -0.175 -1.829 0 0 0 0 0 0 0 +-5.723 -0.193 -1.83 0 0 0 0 0 0 0 +-5.736 -0.211 -1.834 0 0 0 0 0 0 0 +-5.729 -0.229 -1.832 0 0 0 0 0 0 0 +-5.727 -0.238 -1.832 0 0 0 0 0 0 0 +-5.728 -0.256 -1.832 0 0 0 0 0 0 0 +-5.724 -0.274 -1.831 0 0 0 0 0 0 0 +-5.719 -0.292 -1.83 0 0 0 0 0 0 0 +-5.728 -0.31 -1.833 0 0 0 0 0 0 0 +-5.723 -0.328 -1.832 0 0 0 0 0 0 0 +-5.716 -0.346 -1.83 0 0 0 0 0 0 0 +-5.714 -0.354 -1.829 0 0 0 0 0 0 0 +-5.716 -0.373 -1.83 0 0 0 0 0 0 0 +-5.717 -0.391 -1.831 0 0 0 0 0 0 0 +-5.714 -0.409 -1.83 0 0 0 0 0 0 0 +-5.716 -0.427 -1.832 0 0 0 0 0 0 0 +-5.711 -0.444 -1.83 0 0 0 0 0 0 0 +-5.7 -0.462 -1.827 0 0 0 0 0 0 0 +-5.708 -0.48 -1.83 0 0 0 0 0 0 0 +-5.7 -0.489 -1.828 0 0 0 0 0 0 0 +-5.704 -0.507 -1.83 0 0 0 0 0 0 0 +-5.7 -0.525 -1.829 0 0 0 0 0 0 0 +-5.689 -0.542 -1.826 0 0 0 0 0 0 0 +-5.693 -0.56 -1.828 0 0 0 0 0 0 0 +-5.705 -0.579 -1.832 0 0 0 0 0 0 0 +-5.69 -0.596 -1.828 0 0 0 0 0 0 0 +-5.677 -0.604 -1.824 0 0 0 0 0 0 0 +-5.696 -0.624 -1.831 0 0 0 0 0 0 0 +-5.685 -0.641 -1.828 0 0 0 0 0 0 0 +-5.688 -0.659 -1.83 0 0 0 0 0 0 0 +-5.677 -0.676 -1.827 0 0 0 0 0 0 0 +-5.68 -0.694 -1.828 0 0 0 0 0 0 0 +-5.678 -0.712 -1.828 0 0 0 0 0 0 0 +-5.679 -0.721 -1.829 0 0 0 0 0 0 0 +-5.677 -0.739 -1.829 0 0 0 0 0 0 0 +-5.699 -0.76 -1.837 0 0 0 0 0 0 0 +-5.704 -0.779 -1.84 0 0 0 0 0 0 0 +-5.654 -0.791 -1.824 0 0 0 0 0 0 0 +-5.688 -0.813 -1.836 0 0 0 0 0 0 0 +-5.694 -0.833 -1.839 0 0 0 0 0 0 0 +-5.646 -0.835 -1.823 0 0 0 0 0 0 0 +-5.658 -0.855 -1.828 0 0 0 0 0 0 0 +-5.65 -0.872 -1.827 0 0 0 0 0 0 0 +-5.644 -0.889 -1.825 0 0 0 0 0 0 0 +-5.676 -0.912 -1.837 0 0 0 0 0 0 0 +-5.672 -0.93 -1.837 0 0 0 0 0 0 0 +-5.624 -0.94 -1.821 0 0 0 0 0 0 0 +-5.641 -0.952 -1.828 0 0 0 0 0 0 0 +-5.659 -0.973 -1.835 0 0 0 0 0 0 0 +-5.616 -0.984 -1.821 0 0 0 0 0 0 0 +-5.65 -1.008 -1.834 0 0 0 0 0 0 0 +-5.623 -1.022 -1.826 0 0 0 0 0 0 0 +-5.612 -1.038 -1.823 0 0 0 0 0 0 0 +-5.613 -1.057 -1.825 0 0 0 0 0 0 0 +-5.604 -1.064 -1.822 0 0 0 0 0 0 0 +-5.597 -1.081 -1.821 0 0 0 0 0 0 0 +-5.602 -1.1 -1.824 0 0 0 0 0 0 0 +-5.599 -1.118 -1.824 0 0 0 0 0 0 0 +-5.59 -1.134 -1.822 0 0 0 0 0 0 0 +-5.594 -1.153 -1.825 0 0 0 0 0 0 0 +-5.592 -1.171 -1.825 0 0 0 0 0 0 0 +-5.583 -1.179 -1.823 0 0 0 0 0 0 0 +-5.573 -1.195 -1.821 0 0 0 0 0 0 0 +-5.571 -1.213 -1.821 0 0 0 0 0 0 0 +-5.562 -1.229 -1.819 0 0 0 0 0 0 0 +-5.564 -1.248 -1.821 0 0 0 0 0 0 0 +-5.552 -1.264 -1.819 0 0 0 0 0 0 0 +-5.556 -1.283 -1.821 0 0 0 0 0 0 0 +-5.546 -1.299 -1.819 0 0 0 0 0 0 0 +-5.546 -1.308 -1.82 0 0 0 0 0 0 0 +-5.54 -1.325 -1.819 0 0 0 0 0 0 0 +-5.525 -1.34 -1.816 0 0 0 0 0 0 0 +-5.524 -1.358 -1.817 0 0 0 0 0 0 0 +-5.524 -1.376 -1.818 0 0 0 0 0 0 0 +-5.527 -1.395 -1.821 0 0 0 0 0 0 0 +-5.507 -1.409 -1.816 0 0 0 0 0 0 0 +-5.511 -1.419 -1.818 0 0 0 0 0 0 0 +-5.53 -1.443 -1.826 0 0 0 0 0 0 0 +-5.5 -1.453 -1.817 0 0 0 0 0 0 0 +-5.506 -1.473 -1.821 0 0 0 0 0 0 0 +-5.502 -1.491 -1.821 0 0 0 0 0 0 0 +-5.508 -1.511 -1.825 0 0 0 0 0 0 0 +-5.498 -1.527 -1.823 0 0 0 0 0 0 0 +-5.365 -1.936 -1.822 0 0 0 0 0 0 0 +-5.35 -1.95 -1.819 0 0 0 0 0 0 0 +-5.353 -1.97 -1.822 0 0 0 0 0 0 0 +-5.346 -1.977 -1.821 0 0 0 0 0 0 0 +-5.342 -1.994 -1.821 0 0 0 0 0 0 0 +-5.337 -2.012 -1.822 0 0 0 0 0 0 0 +-5.34 -2.032 -1.825 0 0 0 0 0 0 0 +-5.339 -2.05 -1.827 0 0 0 0 0 0 0 +-5.318 -2.062 -1.822 0 0 0 0 0 0 0 +-5.324 -2.083 -1.827 0 0 0 0 0 0 0 +-5.319 -2.091 -1.826 0 0 0 0 0 0 0 +-5.318 -2.11 -1.828 0 0 0 0 0 0 0 +-5.306 -2.124 -1.826 0 0 0 0 0 0 0 +-5.285 -2.135 -1.821 0 0 0 0 0 0 0 +-5.28 -2.153 -1.821 0 0 0 0 0 0 0 +-5.27 -2.168 -1.82 0 0 0 0 0 0 0 +-5.261 -2.184 -1.819 0 0 0 0 0 0 0 +-5.256 -2.191 -1.819 0 0 0 0 0 0 0 +-5.247 -2.207 -1.818 0 0 0 0 0 0 0 +-5.231 -2.22 -1.815 0 0 0 0 0 0 0 +-5.233 -2.24 -1.818 0 0 0 0 0 0 0 +-5.238 -2.261 -1.823 0 0 0 0 0 0 0 +-5.231 -2.278 -1.823 0 0 0 0 0 0 0 +-5.219 -2.292 -1.821 0 0 0 0 0 0 0 +-5.213 -2.309 -1.821 0 0 0 0 0 0 0 +-5.21 -2.317 -1.821 0 0 0 0 0 0 0 +-5.192 -2.329 -1.818 0 0 0 0 0 0 0 +-5.181 -2.344 -1.816 0 0 0 0 0 0 0 +-5.186 -2.366 -1.821 0 0 0 0 0 0 0 +-5.163 -2.375 -1.815 0 0 0 0 0 0 0 +-5.173 -2.399 -1.821 0 0 0 0 0 0 0 +-5.15 -2.408 -1.816 0 0 0 0 0 0 0 +-5.153 -2.419 -1.818 0 0 0 0 0 0 0 +-5.145 -2.436 -1.818 0 0 0 0 0 0 0 +-5.144 -2.455 -1.821 0 0 0 0 0 0 0 +-5.138 -2.472 -1.821 0 0 0 0 0 0 0 +-5.12 -2.483 -1.818 0 0 0 0 0 0 0 +-5.123 -2.504 -1.821 0 0 0 0 0 0 0 +-5.11 -2.518 -1.819 0 0 0 0 0 0 0 +-5.106 -2.526 -1.819 0 0 0 0 0 0 0 +-5.093 -2.539 -1.818 0 0 0 0 0 0 0 +-5.09 -2.558 -1.819 0 0 0 0 0 0 0 +-5.083 -2.575 -1.82 0 0 0 0 0 0 0 +-5.077 -2.591 -1.821 0 0 0 0 0 0 0 +-5.064 -2.605 -1.819 0 0 0 0 0 0 0 +-5.055 -2.621 -1.819 0 0 0 0 0 0 0 +-5.043 -2.624 -1.816 0 0 0 0 0 0 0 +-5.046 -2.646 -1.82 0 0 0 0 0 0 0 +-5.035 -2.66 -1.819 0 0 0 0 0 0 0 +-5.018 -2.672 -1.816 0 0 0 0 0 0 0 +-5.041 -2.704 -1.828 0 0 0 0 0 0 0 +-5.021 -2.714 -1.823 0 0 0 0 0 0 0 +-5.018 -2.732 -1.825 0 0 0 0 0 0 0 +-5.015 -2.741 -1.826 0 0 0 0 0 0 0 +-5.018 -2.763 -1.83 0 0 0 0 0 0 0 +-4.994 -2.771 -1.825 0 0 0 0 0 0 0 +-4.937 -2.78 -1.809 0 0 0 0 0 0 0 +-4.963 -2.815 -1.823 0 0 0 0 0 0 0 +-4.929 -2.816 -1.813 0 0 0 0 0 0 0 +-4.932 -2.828 -1.816 0 0 0 0 0 0 0 +-4.921 -2.842 -1.815 0 0 0 0 0 0 0 +-4.904 -2.853 -1.812 0 0 0 0 0 0 0 +-4.887 -2.864 -1.808 0 0 0 0 0 0 0 +-4.879 -2.88 -1.809 0 0 0 0 0 0 0 +-4.87 -2.895 -1.809 0 0 0 0 0 0 0 +-4.855 -2.907 -1.807 0 0 0 0 0 0 0 +-4.847 -2.913 -1.805 0 0 0 0 0 0 0 +-4.839 -2.929 -1.806 0 0 0 0 0 0 0 +-4.825 -2.941 -1.804 0 0 0 0 0 0 0 +-4.822 -2.96 -1.807 0 0 0 0 0 0 0 +-4.813 -2.975 -1.807 0 0 0 0 0 0 0 +-4.797 -2.986 -1.804 0 0 0 0 0 0 0 +-4.788 -3.001 -1.804 0 0 0 0 0 0 0 +-4.783 -3.019 -1.806 0 0 0 0 0 0 0 +-4.772 -3.023 -1.803 0 0 0 0 0 0 0 +-4.761 -3.037 -1.803 0 0 0 0 0 0 0 +-4.756 -3.055 -1.805 0 0 0 0 0 0 0 +-4.732 -3.061 -1.799 0 0 0 0 0 0 0 +-4.724 -3.076 -1.799 0 0 0 0 0 0 0 +-4.716 -3.092 -1.8 0 0 0 0 0 0 0 +-4.703 -3.105 -1.799 0 0 0 0 0 0 0 +-4.708 -3.119 -1.803 0 0 0 0 0 0 0 +-4.698 -3.133 -1.803 0 0 0 0 0 0 0 +-4.685 -3.146 -1.801 0 0 0 0 0 0 0 +-4.675 -3.161 -1.801 0 0 0 0 0 0 0 +-4.654 -3.168 -1.797 0 0 0 0 0 0 0 +-4.66 -3.193 -1.803 0 0 0 0 0 0 0 +-4.651 -3.209 -1.804 0 0 0 0 0 0 0 +-4.64 -3.212 -1.801 0 0 0 0 0 0 0 +-4.628 -3.226 -1.801 0 0 0 0 0 0 0 +-4.624 -3.244 -1.803 0 0 0 0 0 0 0 +-4.603 -3.251 -1.799 0 0 0 0 0 0 0 +-4.604 -3.273 -1.803 0 0 0 0 0 0 0 +-4.584 -3.281 -1.799 0 0 0 0 0 0 0 +-4.578 -3.299 -1.801 0 0 0 0 0 0 0 +-4.584 -3.314 -1.806 0 0 0 0 0 0 0 +-4.564 -3.322 -1.802 0 0 0 0 0 0 0 +-4.54 -3.326 -1.796 0 0 0 0 0 0 0 +-4.547 -3.352 -1.803 0 0 0 0 0 0 0 +-4.534 -3.366 -1.803 0 0 0 0 0 0 0 +-4.521 -3.378 -1.801 0 0 0 0 0 0 0 +-4.503 -3.386 -1.798 0 0 0 0 0 0 0 +-4.508 -3.401 -1.803 0 0 0 0 0 0 0 +-4.497 -3.415 -1.803 0 0 0 0 0 0 0 +-4.474 -3.42 -1.798 0 0 0 0 0 0 0 +-4.464 -3.434 -1.798 0 0 0 0 0 0 0 +-4.454 -3.449 -1.798 0 0 0 0 0 0 0 +-4.442 -3.462 -1.798 0 0 0 0 0 0 0 +-4.43 -3.475 -1.797 0 0 0 0 0 0 0 +-4.421 -3.48 -1.796 0 0 0 0 0 0 0 +-4.422 -3.503 -1.801 0 0 0 0 0 0 0 +-4.393 -3.503 -1.793 0 0 0 0 0 0 0 +-4.385 -3.519 -1.794 0 0 0 0 0 0 0 +-4.377 -3.535 -1.796 0 0 0 0 0 0 0 +-4.366 -3.549 -1.796 0 0 0 0 0 0 0 +-4.358 -3.565 -1.797 0 0 0 0 0 0 0 +-4.362 -3.58 -1.801 0 0 0 0 0 0 0 +-4.331 -3.577 -1.792 0 0 0 0 0 0 0 +-4.325 -3.595 -1.795 0 0 0 0 0 0 0 +-4.331 -3.623 -1.803 0 0 0 0 0 0 0 +-4.298 -3.619 -1.793 0 0 0 0 0 0 0 +-4.292 -3.637 -1.796 0 0 0 0 0 0 0 +-4.29 -3.658 -1.799 0 0 0 0 0 0 0 +-4.268 -3.663 -1.795 0 0 0 0 0 0 0 +-4.261 -3.668 -1.794 0 0 0 0 0 0 0 +-4.248 -3.68 -1.794 0 0 0 0 0 0 0 +-4.242 -3.699 -1.796 0 0 0 0 0 0 0 +-4.235 -3.716 -1.798 0 0 0 0 0 0 0 +-4.22 -3.726 -1.797 0 0 0 0 0 0 0 +-4.201 -3.733 -1.794 0 0 0 0 0 0 0 +-4.192 -3.749 -1.795 0 0 0 0 0 0 0 +-4.185 -3.754 -1.794 0 0 0 0 0 0 0 +-4.166 -3.761 -1.791 0 0 0 0 0 0 0 +-4.153 -3.773 -1.79 0 0 0 0 0 0 0 +-4.155 -3.799 -1.797 0 0 0 0 0 0 0 +-4.128 -3.798 -1.79 0 0 0 0 0 0 0 +-4.123 -3.817 -1.793 0 0 0 0 0 0 0 +-4.108 -3.827 -1.792 0 0 0 0 0 0 0 +-4.102 -3.834 -1.792 0 0 0 0 0 0 0 +-4.09 -3.847 -1.792 0 0 0 0 0 0 0 +-4.083 -3.865 -1.794 0 0 0 0 0 0 0 +-4.062 -3.869 -1.79 0 0 0 0 0 0 0 +-4.048 -3.88 -1.789 0 0 0 0 0 0 0 +-4.041 -3.898 -1.792 0 0 0 0 0 0 0 +-4.025 -3.907 -1.79 0 0 0 0 0 0 0 +-4.015 -3.909 -1.788 0 0 0 0 0 0 0 +-4.011 -3.929 -1.792 0 0 0 0 0 0 0 +-3.998 -3.942 -1.792 0 0 0 0 0 0 0 +-3.983 -3.952 -1.79 0 0 0 0 0 0 0 +-3.972 -3.966 -1.791 0 0 0 0 0 0 0 +-3.955 -3.974 -1.789 0 0 0 0 0 0 0 +-3.94 -3.984 -1.788 0 0 0 0 0 0 0 +-3.938 -3.994 -1.79 0 0 0 0 0 0 0 +-3.924 -4.005 -1.789 0 0 0 0 0 0 0 +-3.916 -4.022 -1.791 0 0 0 0 0 0 0 +-3.902 -4.032 -1.79 0 0 0 0 0 0 0 +-3.876 -4.031 -1.784 0 0 0 0 0 0 0 +-3.872 -4.053 -1.789 0 0 0 0 0 0 0 +-3.861 -4.066 -1.789 0 0 0 0 0 0 0 +-3.848 -4.066 -1.786 0 0 0 0 0 0 0 +-3.844 -4.087 -1.79 0 0 0 0 0 0 0 +-3.827 -4.095 -1.789 0 0 0 0 0 0 0 +-3.809 -4.102 -1.786 0 0 0 0 0 0 0 +-3.796 -4.114 -1.786 0 0 0 0 0 0 0 +-3.794 -4.137 -1.791 0 0 0 0 0 0 0 +-3.779 -4.147 -1.79 0 0 0 0 0 0 0 +-3.774 -4.154 -1.791 0 0 0 0 0 0 0 +-3.754 -4.158 -1.787 0 0 0 0 0 0 0 +-3.739 -4.168 -1.787 0 0 0 0 0 0 0 +-3.732 -4.187 -1.79 0 0 0 0 0 0 0 +-3.722 -4.202 -1.791 0 0 0 0 0 0 0 +-3.71 -4.215 -1.792 0 0 0 0 0 0 0 +-3.692 -4.221 -1.789 0 0 0 0 0 0 0 +-3.71 -4.255 -1.802 0 0 0 0 0 0 0 +-3.685 -4.254 -1.796 0 0 0 0 0 0 0 +-3.673 -4.267 -1.797 0 0 0 0 0 0 0 +-3.652 -4.27 -1.793 0 0 0 0 0 0 0 +-3.665 -4.311 -1.807 0 0 0 0 0 0 0 +-3.654 -4.326 -1.808 0 0 0 0 0 0 0 +-3.625 -4.32 -1.8 0 0 0 0 0 0 0 +-3.621 -4.328 -1.801 0 0 0 0 0 0 0 +-3.569 -4.376 -1.803 0 0 0 0 0 0 0 +-3.567 -4.402 -1.809 0 0 0 0 0 0 0 +-3.561 -4.424 -1.814 0 0 0 0 0 0 0 +-3.564 -4.441 -1.819 0 0 0 0 0 0 0 +-3.523 -4.418 -1.804 0 0 0 0 0 0 0 +-3.498 -4.416 -1.798 0 0 0 0 0 0 0 +-3.496 -4.442 -1.805 0 0 0 0 0 0 0 +-3.467 -4.433 -1.796 0 0 0 0 0 0 0 +-3.446 -4.435 -1.792 0 0 0 0 0 0 0 +-3.44 -4.457 -1.797 0 0 0 0 0 0 0 +-3.422 -4.447 -1.79 0 0 0 0 0 0 0 +-3.41 -4.461 -1.792 0 0 0 0 0 0 0 +-3.399 -4.476 -1.794 0 0 0 0 0 0 0 +-3.378 -4.478 -1.79 0 0 0 0 0 0 0 +-3.367 -4.491 -1.791 0 0 0 0 0 0 0 +-3.351 -4.5 -1.79 0 0 0 0 0 0 0 +-3.333 -4.505 -1.788 0 0 0 0 0 0 0 +-3.33 -4.516 -1.79 0 0 0 0 0 0 0 +-3.309 -4.517 -1.787 0 0 0 0 0 0 0 +-3.297 -4.531 -1.788 0 0 0 0 0 0 0 +-3.285 -4.544 -1.789 0 0 0 0 0 0 0 +-3.273 -4.557 -1.79 0 0 0 0 0 0 0 +-3.26 -4.569 -1.791 0 0 0 0 0 0 0 +-3.238 -4.569 -1.787 0 0 0 0 0 0 0 +-3.227 -4.583 -1.789 0 0 0 0 0 0 0 +-3.221 -4.59 -1.789 0 0 0 0 0 0 0 +-3.196 -4.586 -1.783 0 0 0 0 0 0 0 +-3.185 -4.601 -1.785 0 0 0 0 0 0 0 +-3.172 -4.612 -1.786 0 0 0 0 0 0 0 +-3.155 -4.619 -1.785 0 0 0 0 0 0 0 +-3.139 -4.628 -1.784 0 0 0 0 0 0 0 +-3.129 -4.644 -1.787 0 0 0 0 0 0 0 +-3.117 -4.641 -1.783 0 0 0 0 0 0 0 +-3.106 -4.657 -1.786 0 0 0 0 0 0 0 +-3.095 -4.671 -1.788 0 0 0 0 0 0 0 +-3.077 -4.676 -1.786 0 0 0 0 0 0 0 +-3.054 -4.673 -1.781 0 0 0 0 0 0 0 +-3.038 -4.681 -1.78 0 0 0 0 0 0 0 +-3.034 -4.707 -1.787 0 0 0 0 0 0 0 +-3.016 -4.696 -1.78 0 0 0 0 0 0 0 +-3.017 -4.729 -1.79 0 0 0 0 0 0 0 +-2.988 -4.718 -1.781 0 0 0 0 0 0 0 +-2.973 -4.725 -1.781 0 0 0 0 0 0 0 +-2.968 -4.751 -1.787 0 0 0 0 0 0 0 +-2.945 -4.747 -1.782 0 0 0 0 0 0 0 +-2.927 -4.752 -1.78 0 0 0 0 0 0 0 +-2.92 -4.758 -1.781 0 0 0 0 0 0 0 +-2.905 -4.765 -1.78 0 0 0 0 0 0 0 +-2.891 -4.776 -1.781 0 0 0 0 0 0 0 +-2.877 -4.788 -1.782 0 0 0 0 0 0 0 +-2.861 -4.796 -1.781 0 0 0 0 0 0 0 +-2.839 -4.792 -1.776 0 0 0 0 0 0 0 +-2.831 -4.814 -1.781 0 0 0 0 0 0 0 +-2.821 -4.813 -1.779 0 0 0 0 0 0 0 +-2.807 -4.824 -1.78 0 0 0 0 0 0 0 +-2.796 -4.841 -1.783 0 0 0 0 0 0 0 +-2.772 -4.835 -1.778 0 0 0 0 0 0 0 +-2.758 -4.845 -1.778 0 0 0 0 0 0 0 +-2.742 -4.852 -1.778 0 0 0 0 0 0 0 +-2.725 -4.857 -1.776 0 0 0 0 0 0 0 +-2.719 -4.865 -1.778 0 0 0 0 0 0 0 +-2.708 -4.88 -1.78 0 0 0 0 0 0 0 +-2.686 -4.877 -1.776 0 0 0 0 0 0 0 +-2.677 -4.897 -1.78 0 0 0 0 0 0 0 +-2.659 -4.9 -1.778 0 0 0 0 0 0 0 +-2.646 -4.914 -1.78 0 0 0 0 0 0 0 +-2.626 -4.913 -1.777 0 0 0 0 0 0 0 +-2.618 -4.918 -1.777 0 0 0 0 0 0 0 +-2.603 -4.926 -1.777 0 0 0 0 0 0 0 +-2.587 -4.934 -1.777 0 0 0 0 0 0 0 +-2.575 -4.947 -1.779 0 0 0 0 0 0 0 +-2.552 -4.942 -1.774 0 0 0 0 0 0 0 +-2.539 -4.955 -1.776 0 0 0 0 0 0 0 +-2.525 -4.966 -1.777 0 0 0 0 0 0 0 +-2.51 -4.957 -1.772 0 0 0 0 0 0 0 +-2.506 -4.986 -1.78 0 0 0 0 0 0 0 +-2.486 -4.986 -1.777 0 0 0 0 0 0 0 +-2.47 -4.994 -1.777 0 0 0 0 0 0 0 +-2.456 -5.005 -1.778 0 0 0 0 0 0 0 +-2.439 -5.009 -1.777 0 0 0 0 0 0 0 +-2.425 -5.02 -1.778 0 0 0 0 0 0 0 +-2.418 -5.026 -1.779 0 0 0 0 0 0 0 +-2.401 -5.031 -1.778 0 0 0 0 0 0 0 +-2.385 -5.039 -1.778 0 0 0 0 0 0 0 +-2.37 -5.048 -1.779 0 0 0 0 0 0 0 +-2.355 -5.055 -1.779 0 0 0 0 0 0 0 +-2.344 -5.075 -1.783 0 0 0 0 0 0 0 +-2.331 -5.089 -1.786 0 0 0 0 0 0 0 +-2.316 -5.076 -1.779 0 0 0 0 0 0 0 +-2.296 -5.074 -1.776 0 0 0 0 0 0 0 +-2.284 -5.09 -1.779 0 0 0 0 0 0 0 +-2.284 -5.133 -1.793 0 0 0 0 0 0 0 +-2.259 -5.12 -1.785 0 0 0 0 0 0 0 +-2.259 -5.163 -1.799 0 0 0 0 0 0 0 +-2.266 -5.224 -1.819 0 0 0 0 0 0 0 +-2.255 -5.222 -1.817 0 0 0 0 0 0 0 +-2.154 -5.121 -1.772 0 0 0 0 0 0 0 +-2.148 -5.151 -1.78 0 0 0 0 0 0 0 +-2.126 -5.144 -1.775 0 0 0 0 0 0 0 +-2.106 -5.142 -1.772 0 0 0 0 0 0 0 +-2.092 -5.131 -1.767 0 0 0 0 0 0 0 +-2.069 -5.12 -1.76 0 0 0 0 0 0 0 +-2.05 -5.121 -1.758 0 0 0 0 0 0 0 +-2.035 -5.129 -1.759 0 0 0 0 0 0 0 +-2.011 -5.116 -1.752 0 0 0 0 0 0 0 +-2 -5.135 -1.756 0 0 0 0 0 0 0 +-1.98 -5.131 -1.752 0 0 0 0 0 0 0 +-1.966 -5.142 -1.754 0 0 0 0 0 0 0 +-1.958 -5.147 -1.755 0 0 0 0 0 0 0 +-1.942 -5.153 -1.755 0 0 0 0 0 0 0 +-1.924 -5.154 -1.753 0 0 0 0 0 0 0 +-1.907 -5.158 -1.752 0 0 0 0 0 0 0 +-1.89 -5.162 -1.752 0 0 0 0 0 0 0 +-1.869 -5.156 -1.747 0 0 0 0 0 0 0 +-1.855 -5.167 -1.749 0 0 0 0 0 0 0 +-1.848 -5.173 -1.75 0 0 0 0 0 0 0 +-1.834 -5.186 -1.753 0 0 0 0 0 0 0 +-1.814 -5.181 -1.749 0 0 0 0 0 0 0 +-1.797 -5.185 -1.749 0 0 0 0 0 0 0 +-1.781 -5.189 -1.748 0 0 0 0 0 0 0 +-1.758 -5.177 -1.741 0 0 0 0 0 0 0 +-1.751 -5.183 -1.743 0 0 0 0 0 0 0 +-1.736 -5.192 -1.744 0 0 0 0 0 0 0 +-1.72 -5.199 -1.745 0 0 0 0 0 0 0 +-1.703 -5.203 -1.744 0 0 0 0 0 0 0 +-1.685 -5.201 -1.741 0 0 0 0 0 0 0 +-1.67 -5.21 -1.743 0 0 0 0 0 0 0 +-1.654 -5.219 -1.744 0 0 0 0 0 0 0 +-1.635 -5.215 -1.741 0 0 0 0 0 0 0 +-1.627 -5.217 -1.741 0 0 0 0 0 0 0 +-1.608 -5.213 -1.738 0 0 0 0 0 0 0 +-1.593 -5.224 -1.74 0 0 0 0 0 0 0 +-1.579 -5.236 -1.742 0 0 0 0 0 0 0 +-1.557 -5.223 -1.736 0 0 0 0 0 0 0 +-1.54 -5.228 -1.736 0 0 0 0 0 0 0 +-1.526 -5.238 -1.738 0 0 0 0 0 0 0 +-1.515 -5.233 -1.735 0 0 0 0 0 0 0 +-1.499 -5.24 -1.736 0 0 0 0 0 0 0 +-1.482 -5.243 -1.735 0 0 0 0 0 0 0 +-1.466 -5.249 -1.736 0 0 0 0 0 0 0 +-1.448 -5.248 -1.734 0 0 0 0 0 0 0 +-1.434 -5.262 -1.737 0 0 0 0 0 0 0 +-1.418 -5.268 -1.738 0 0 0 0 0 0 0 +-1.407 -5.261 -1.734 0 0 0 0 0 0 0 +-1.391 -5.267 -1.735 0 0 0 0 0 0 0 +-1.374 -5.27 -1.734 0 0 0 0 0 0 0 +-1.357 -5.271 -1.733 0 0 0 0 0 0 0 +-1.34 -5.273 -1.732 0 0 0 0 0 0 0 +-1.324 -5.281 -1.734 0 0 0 0 0 0 0 +-1.306 -5.278 -1.731 0 0 0 0 0 0 0 +-1.297 -5.28 -1.731 0 0 0 0 0 0 0 +-1.279 -5.276 -1.729 0 0 0 0 0 0 0 +-1.265 -5.29 -1.732 0 0 0 0 0 0 0 +-1.248 -5.294 -1.732 0 0 0 0 0 0 0 +-1.23 -5.292 -1.73 0 0 0 0 0 0 0 +-1.213 -5.296 -1.73 0 0 0 0 0 0 0 +-1.197 -5.301 -1.731 0 0 0 0 0 0 0 +-1.189 -5.305 -1.731 0 0 0 0 0 0 0 +-1.175 -5.32 -1.735 0 0 0 0 0 0 0 +-1.156 -5.312 -1.731 0 0 0 0 0 0 0 +-1.136 -5.303 -1.727 0 0 0 0 0 0 0 +-1.125 -5.329 -1.734 0 0 0 0 0 0 0 +-1.105 -5.321 -1.731 0 0 0 0 0 0 0 +-1.089 -5.325 -1.731 0 0 0 0 0 0 0 +-1.081 -5.33 -1.732 0 0 0 0 0 0 0 +-1.062 -5.321 -1.727 0 0 0 0 0 0 0 +-1.047 -5.333 -1.731 0 0 0 0 0 0 0 +-1.031 -5.338 -1.731 0 0 0 0 0 0 0 +-1.013 -5.338 -1.73 0 0 0 0 0 0 0 +-0.997 -5.345 -1.731 0 0 0 0 0 0 0 +-0.98 -5.348 -1.731 0 0 0 0 0 0 0 +-0.966 -5.318 -1.72 0 0 0 0 0 0 0 +-0.953 -5.343 -1.728 0 0 0 0 0 0 0 +-0.937 -5.348 -1.729 0 0 0 0 0 0 0 +-0.916 -5.326 -1.72 0 0 0 0 0 0 0 +-0.903 -5.355 -1.729 0 0 0 0 0 0 0 +-0.885 -5.351 -1.727 0 0 0 0 0 0 0 +-0.869 -5.355 -1.727 0 0 0 0 0 0 0 +-0.862 -5.366 -1.731 0 0 0 0 0 0 0 +-0.845 -5.369 -1.731 0 0 0 0 0 0 0 +-0.828 -5.371 -1.731 0 0 0 0 0 0 0 +-0.813 -5.381 -1.733 0 0 0 0 0 0 0 +-0.796 -5.386 -1.734 0 0 0 0 0 0 0 +-0.779 -5.388 -1.734 0 0 0 0 0 0 0 +-0.762 -5.389 -1.733 0 0 0 0 0 0 0 +-0.753 -5.388 -1.732 0 0 0 0 0 0 0 +-0.736 -5.387 -1.731 0 0 0 0 0 0 0 +-0.719 -5.393 -1.732 0 0 0 0 0 0 0 +-0.704 -5.404 -1.736 0 0 0 0 0 0 0 +-0.686 -5.399 -1.733 0 0 0 0 0 0 0 +-0.669 -5.401 -1.733 0 0 0 0 0 0 0 +-0.651 -5.398 -1.731 0 0 0 0 0 0 0 +-0.642 -5.393 -1.729 0 0 0 0 0 0 0 +-0.626 -5.403 -1.732 0 0 0 0 0 0 0 +-0.61 -5.412 -1.734 0 0 0 0 0 0 0 +-0.592 -5.41 -1.733 0 0 0 0 0 0 0 +-0.577 -5.427 -1.738 0 0 0 0 0 0 0 +-0.558 -5.408 -1.731 0 0 0 0 0 0 0 +-0.541 -5.417 -1.734 0 0 0 0 0 0 0 +-0.533 -5.422 -1.735 0 0 0 0 0 0 0 +-0.517 -5.427 -1.736 0 0 0 0 0 0 0 +-0.5 -5.429 -1.736 0 0 0 0 0 0 0 +-0.48 -5.406 -1.728 0 0 0 0 0 0 0 +-0.465 -5.426 -1.734 0 0 0 0 0 0 0 +-0.449 -5.435 -1.737 0 0 0 0 0 0 0 +-0.43 -5.424 -1.732 0 0 0 0 0 0 0 +-0.423 -5.437 -1.737 0 0 0 0 0 0 0 +-0.406 -5.439 -1.737 0 0 0 0 0 0 0 +-0.389 -5.444 -1.738 0 0 0 0 0 0 0 +-0.371 -5.434 -1.734 0 0 0 0 0 0 0 +-0.354 -5.435 -1.734 0 0 0 0 0 0 0 +-0.338 -5.447 -1.738 0 0 0 0 0 0 0 +-0.32 -5.441 -1.736 0 0 0 0 0 0 0 +-0.311 -5.43 -1.732 0 0 0 0 0 0 0 +-0.294 -5.436 -1.734 0 0 0 0 0 0 0 +-0.278 -5.447 -1.737 0 0 0 0 0 0 0 +-0.26 -5.432 -1.732 0 0 0 0 0 0 0 +-0.243 -5.448 -1.737 0 0 0 0 0 0 0 +-0.226 -5.436 -1.732 0 0 0 0 0 0 0 +-0.209 -5.454 -1.738 0 0 0 0 0 0 0 +-0.2 -5.441 -1.734 0 0 0 0 0 0 0 +-0.183 -5.439 -1.733 0 0 0 0 0 0 0 +-0.166 -5.442 -1.734 0 0 0 0 0 0 0 +-0.149 -5.442 -1.734 0 0 0 0 0 0 0 +-0.132 -5.452 -1.737 0 0 0 0 0 0 0 +-0.115 -5.451 -1.736 0 0 0 0 0 0 0 +-0.098 -5.457 -1.738 0 0 0 0 0 0 0 +-0.081 -5.449 -1.736 0 0 0 0 0 0 0 +-0.072 -5.459 -1.739 0 0 0 0 0 0 0 +-0.055 -5.454 -1.737 0 0 0 0 0 0 0 +-0.038 -5.45 -1.736 0 0 0 0 0 0 0 +-0.021 -5.446 -1.734 0 0 0 0 0 0 0 +-0.003 -5.444 -1.734 0 0 0 0 0 0 0 +0.014 -5.456 -1.738 0 0 0 0 0 0 0 +0.031 -5.459 -1.739 0 0 0 0 0 0 0 +0.039 -5.456 -1.738 0 0 0 0 0 0 0 +0.056 -5.457 -1.738 0 0 0 0 0 0 0 +0.074 -5.455 -1.738 0 0 0 0 0 0 0 +0.091 -5.461 -1.74 0 0 0 0 0 0 0 +0.108 -5.496 -1.752 0 0 0 0 0 0 0 +0.125 -5.466 -1.741 0 0 0 0 0 0 0 +0.134 -5.494 -1.751 0 0 0 0 0 0 0 +0.151 -5.484 -1.748 0 0 0 0 0 0 0 +0.168 -5.463 -1.741 0 0 0 0 0 0 0 +0.186 -5.498 -1.753 0 0 0 0 0 0 0 +0.203 -5.471 -1.744 0 0 0 0 0 0 0 +0.22 -5.472 -1.745 0 0 0 0 0 0 0 +0.237 -5.471 -1.745 0 0 0 0 0 0 0 +0.256 -5.499 -1.754 0 0 0 0 0 0 0 +0.263 -5.472 -1.745 0 0 0 0 0 0 0 +0.281 -5.496 -1.754 0 0 0 0 0 0 0 +0.298 -5.478 -1.748 0 0 0 0 0 0 0 +0.315 -5.473 -1.747 0 0 0 0 0 0 0 +0.333 -5.484 -1.75 0 0 0 0 0 0 0 +0.349 -5.469 -1.746 0 0 0 0 0 0 0 +0.367 -5.478 -1.749 0 0 0 0 0 0 0 +0.375 -5.475 -1.749 0 0 0 0 0 0 0 +0.393 -5.478 -1.75 0 0 0 0 0 0 0 +0.41 -5.471 -1.748 0 0 0 0 0 0 0 +0.427 -5.477 -1.75 0 0 0 0 0 0 0 +0.445 -5.485 -1.754 0 0 0 0 0 0 0 +0.462 -5.48 -1.752 0 0 0 0 0 0 0 +0.48 -5.484 -1.754 0 0 0 0 0 0 0 +0.488 -5.481 -1.754 0 0 0 0 0 0 0 +0.507 -5.493 -1.758 0 0 0 0 0 0 0 +0.524 -5.497 -1.76 0 0 0 0 0 0 0 +0.542 -5.499 -1.761 0 0 0 0 0 0 0 +0.563 -5.539 -1.776 0 0 0 0 0 0 0 +2.697 -4.933 -1.794 0 0 0 0 0 0 0 +2.709 -4.918 -1.792 0 0 0 0 0 0 0 +2.723 -4.908 -1.791 0 0 0 0 0 0 0 +2.749 -4.918 -1.798 0 0 0 0 0 0 0 +2.764 -4.909 -1.798 0 0 0 0 0 0 0 +2.782 -4.904 -1.799 0 0 0 0 0 0 0 +2.776 -4.876 -1.79 0 0 0 0 0 0 0 +2.787 -4.859 -1.787 0 0 0 0 0 0 0 +2.809 -4.862 -1.792 0 0 0 0 0 0 0 +2.823 -4.851 -1.791 0 0 0 0 0 0 0 +2.843 -4.851 -1.794 0 0 0 0 0 0 0 +2.869 -4.86 -1.801 0 0 0 0 0 0 0 +2.865 -4.818 -1.789 0 0 0 0 0 0 0 +2.87 -4.81 -1.787 0 0 0 0 0 0 0 +2.896 -4.819 -1.794 0 0 0 0 0 0 0 +2.908 -4.805 -1.792 0 0 0 0 0 0 0 +2.922 -4.794 -1.792 0 0 0 0 0 0 0 +2.938 -4.787 -1.792 0 0 0 0 0 0 0 +2.958 -4.786 -1.796 0 0 0 0 0 0 0 +2.965 -4.763 -1.79 0 0 0 0 0 0 0 +2.976 -4.748 -1.788 0 0 0 0 0 0 0 +2.996 -4.762 -1.796 0 0 0 0 0 0 0 +3.001 -4.737 -1.789 0 0 0 0 0 0 0 +3.019 -4.732 -1.791 0 0 0 0 0 0 0 +3.032 -4.719 -1.79 0 0 0 0 0 0 0 +3.052 -4.719 -1.794 0 0 0 0 0 0 0 +3.068 -4.711 -1.794 0 0 0 0 0 0 0 +3.076 -4.691 -1.79 0 0 0 0 0 0 0 +3.087 -4.692 -1.792 0 0 0 0 0 0 0 +3.103 -4.684 -1.793 0 0 0 0 0 0 0 +3.116 -4.671 -1.792 0 0 0 0 0 0 0 +3.127 -4.656 -1.79 0 0 0 0 0 0 0 +3.144 -4.65 -1.791 0 0 0 0 0 0 0 +3.157 -4.638 -1.79 0 0 0 0 0 0 0 +3.166 -4.635 -1.791 0 0 0 0 0 0 0 +3.183 -4.628 -1.792 0 0 0 0 0 0 0 +3.197 -4.618 -1.792 0 0 0 0 0 0 0 +3.208 -4.603 -1.79 0 0 0 0 0 0 0 +3.22 -4.588 -1.789 0 0 0 0 0 0 0 +3.247 -4.597 -1.796 0 0 0 0 0 0 0 +3.245 -4.564 -1.787 0 0 0 0 0 0 0 +3.264 -4.575 -1.794 0 0 0 0 0 0 0 +3.271 -4.554 -1.789 0 0 0 0 0 0 0 +3.29 -4.55 -1.792 0 0 0 0 0 0 0 +3.302 -4.537 -1.79 0 0 0 0 0 0 0 +3.318 -4.529 -1.792 0 0 0 0 0 0 0 +3.33 -4.516 -1.79 0 0 0 0 0 0 0 +3.343 -4.504 -1.79 0 0 0 0 0 0 0 +3.352 -4.502 -1.791 0 0 0 0 0 0 0 +3.364 -4.488 -1.79 0 0 0 0 0 0 0 +3.384 -4.485 -1.793 0 0 0 0 0 0 0 +3.394 -4.468 -1.79 0 0 0 0 0 0 0 +3.41 -4.461 -1.792 0 0 0 0 0 0 0 +3.42 -4.445 -1.79 0 0 0 0 0 0 0 +3.44 -4.442 -1.793 0 0 0 0 0 0 0 +3.451 -4.427 -1.791 0 0 0 0 0 0 0 +3.453 -4.415 -1.789 0 0 0 0 0 0 0 +3.467 -4.405 -1.789 0 0 0 0 0 0 0 +3.482 -4.395 -1.789 0 0 0 0 0 0 0 +3.494 -4.383 -1.789 0 0 0 0 0 0 0 +3.51 -4.375 -1.79 0 0 0 0 0 0 0 +3.527 -4.367 -1.791 0 0 0 0 0 0 0 +3.541 -4.357 -1.792 0 0 0 0 0 0 0 +3.548 -4.351 -1.792 0 0 0 0 0 0 0 +3.568 -4.348 -1.795 0 0 0 0 0 0 0 +3.574 -4.328 -1.791 0 0 0 0 0 0 0 +3.6 -4.331 -1.798 0 0 0 0 0 0 0 +3.603 -4.307 -1.792 0 0 0 0 0 0 0 +3.637 -4.32 -1.803 0 0 0 0 0 0 0 +3.659 -4.319 -1.807 0 0 0 0 0 0 0 +3.669 -4.317 -1.809 0 0 0 0 0 0 0 +3.676 -4.297 -1.805 0 0 0 0 0 0 0 +3.691 -4.288 -1.807 0 0 0 0 0 0 0 +3.704 -4.275 -1.806 0 0 0 0 0 0 0 +3.722 -4.269 -1.808 0 0 0 0 0 0 0 +3.731 -4.252 -1.806 0 0 0 0 0 0 0 +3.738 -4.247 -1.807 0 0 0 0 0 0 0 +3.746 -4.229 -1.803 0 0 0 0 0 0 0 +3.763 -4.221 -1.805 0 0 0 0 0 0 0 +3.782 -4.216 -1.808 0 0 0 0 0 0 0 +3.781 -4.189 -1.801 0 0 0 0 0 0 0 +3.792 -4.174 -1.8 0 0 0 0 0 0 0 +3.809 -4.166 -1.802 0 0 0 0 0 0 0 +3.821 -4.153 -1.801 0 0 0 0 0 0 0 +3.846 -4.168 -1.811 0 0 0 0 0 0 0 +3.836 -4.131 -1.799 0 0 0 0 0 0 0 +3.847 -4.116 -1.798 0 0 0 0 0 0 0 +3.858 -4.102 -1.798 0 0 0 0 0 0 0 +3.871 -4.09 -1.798 0 0 0 0 0 0 0 +3.885 -4.079 -1.798 0 0 0 0 0 0 0 +3.892 -4.06 -1.795 0 0 0 0 0 0 0 +3.899 -4.056 -1.796 0 0 0 0 0 0 0 +3.906 -4.037 -1.792 0 0 0 0 0 0 0 +3.921 -4.027 -1.794 0 0 0 0 0 0 0 +3.929 -4.011 -1.792 0 0 0 0 0 0 0 +3.942 -3.998 -1.792 0 0 0 0 0 0 0 +3.959 -3.99 -1.794 0 0 0 0 0 0 0 +3.974 -3.98 -1.795 0 0 0 0 0 0 0 +3.977 -3.971 -1.794 0 0 0 0 0 0 0 +3.988 -3.957 -1.793 0 0 0 0 0 0 0 +3.996 -3.939 -1.79 0 0 0 0 0 0 0 +4.009 -3.928 -1.791 0 0 0 0 0 0 0 +4.02 -3.914 -1.79 0 0 0 0 0 0 0 +4.039 -3.908 -1.794 0 0 0 0 0 0 0 +4.046 -3.89 -1.791 0 0 0 0 0 0 0 +4.055 -3.886 -1.792 0 0 0 0 0 0 0 +4.066 -3.872 -1.792 0 0 0 0 0 0 0 +4.082 -3.864 -1.794 0 0 0 0 0 0 0 +4.094 -3.851 -1.794 0 0 0 0 0 0 0 +4.102 -3.834 -1.792 0 0 0 0 0 0 0 +4.111 -3.818 -1.79 0 0 0 0 0 0 0 +4.12 -3.815 -1.792 0 0 0 0 0 0 0 +4.131 -3.8 -1.791 0 0 0 0 0 0 0 +4.15 -3.794 -1.794 0 0 0 0 0 0 0 +4.157 -3.777 -1.792 0 0 0 0 0 0 0 +4.163 -3.759 -1.79 0 0 0 0 0 0 0 +4.181 -3.751 -1.792 0 0 0 0 0 0 0 +4.188 -3.734 -1.79 0 0 0 0 0 0 0 +4.206 -3.726 -1.793 0 0 0 0 0 0 0 +4.206 -3.714 -1.79 0 0 0 0 0 0 0 +4.219 -3.702 -1.791 0 0 0 0 0 0 0 +4.221 -3.68 -1.787 0 0 0 0 0 0 0 +4.236 -3.67 -1.789 0 0 0 0 0 0 0 +4.261 -3.668 -1.794 0 0 0 0 0 0 0 +4.252 -3.637 -1.785 0 0 0 0 0 0 0 +4.268 -3.628 -1.787 0 0 0 0 0 0 0 +4.278 -3.625 -1.789 0 0 0 0 0 0 0 +4.288 -3.61 -1.789 0 0 0 0 0 0 0 +4.301 -3.598 -1.789 0 0 0 0 0 0 0 +4.311 -3.583 -1.789 0 0 0 0 0 0 0 +4.322 -3.57 -1.789 0 0 0 0 0 0 0 +4.334 -3.557 -1.789 0 0 0 0 0 0 0 +4.349 -3.546 -1.79 0 0 0 0 0 0 0 +4.35 -3.535 -1.789 0 0 0 0 0 0 0 +4.352 -3.515 -1.785 0 0 0 0 0 0 0 +4.36 -3.499 -1.783 0 0 0 0 0 0 0 +4.368 -3.482 -1.782 0 0 0 0 0 0 0 +4.394 -3.481 -1.789 0 0 0 0 0 0 0 +4.394 -3.458 -1.784 0 0 0 0 0 0 0 +4.402 -3.442 -1.783 0 0 0 0 0 0 0 +4.415 -3.441 -1.786 0 0 0 0 0 0 0 +4.421 -3.424 -1.784 0 0 0 0 0 0 0 +4.426 -3.405 -1.781 0 0 0 0 0 0 0 +4.437 -3.391 -1.781 0 0 0 0 0 0 0 +4.453 -3.382 -1.784 0 0 0 0 0 0 0 +4.455 -3.361 -1.78 0 0 0 0 0 0 0 +4.472 -3.352 -1.783 0 0 0 0 0 0 0 +4.475 -3.344 -1.782 0 0 0 0 0 0 0 +4.484 -3.328 -1.781 0 0 0 0 0 0 0 +4.486 -3.307 -1.778 0 0 0 0 0 0 0 +4.501 -3.297 -1.779 0 0 0 0 0 0 0 +4.514 -3.285 -1.781 0 0 0 0 0 0 0 +4.527 -3.273 -1.782 0 0 0 0 0 0 0 +4.524 -3.249 -1.776 0 0 0 0 0 0 0 +4.532 -3.244 -1.778 0 0 0 0 0 0 0 +4.541 -3.228 -1.777 0 0 0 0 0 0 0 +4.54 -3.206 -1.772 0 0 0 0 0 0 0 +4.561 -3.2 -1.777 0 0 0 0 0 0 0 +4.565 -3.181 -1.774 0 0 0 0 0 0 0 +4.576 -3.168 -1.775 0 0 0 0 0 0 0 +4.581 -3.15 -1.773 0 0 0 0 0 0 0 +4.585 -3.142 -1.772 0 0 0 0 0 0 0 +4.588 -3.123 -1.77 0 0 0 0 0 0 0 +4.598 -3.109 -1.77 0 0 0 0 0 0 0 +4.606 -3.093 -1.769 0 0 0 0 0 0 0 +4.618 -3.08 -1.77 0 0 0 0 0 0 0 +4.626 -3.064 -1.769 0 0 0 0 0 0 0 +4.635 -3.05 -1.769 0 0 0 0 0 0 0 +4.635 -3.039 -1.767 0 0 0 0 0 0 0 +4.654 -3.031 -1.771 0 0 0 0 0 0 0 +4.653 -3.009 -1.767 0 0 0 0 0 0 0 +4.662 -2.994 -1.767 0 0 0 0 0 0 0 +4.664 -2.975 -1.763 0 0 0 0 0 0 0 +4.673 -2.96 -1.763 0 0 0 0 0 0 0 +4.679 -2.943 -1.762 0 0 0 0 0 0 0 +4.688 -2.939 -1.764 0 0 0 0 0 0 0 +4.699 -2.925 -1.765 0 0 0 0 0 0 0 +4.715 -2.914 -1.767 0 0 0 0 0 0 0 +4.713 -2.893 -1.763 0 0 0 0 0 0 0 +4.738 -2.888 -1.769 0 0 0 0 0 0 0 +4.731 -2.863 -1.763 0 0 0 0 0 0 0 +4.745 -2.851 -1.765 0 0 0 0 0 0 0 +4.739 -2.838 -1.761 0 0 0 0 0 0 0 +4.75 -2.824 -1.761 0 0 0 0 0 0 0 +4.759 -2.809 -1.761 0 0 0 0 0 0 0 +4.771 -2.796 -1.763 0 0 0 0 0 0 0 +4.781 -2.782 -1.763 0 0 0 0 0 0 0 +4.787 -2.765 -1.762 0 0 0 0 0 0 0 +4.795 -2.75 -1.762 0 0 0 0 0 0 0 +4.791 -2.737 -1.759 0 0 0 0 0 0 0 +4.797 -2.72 -1.758 0 0 0 0 0 0 0 +4.817 -2.712 -1.762 0 0 0 0 0 0 0 +4.828 -2.699 -1.763 0 0 0 0 0 0 0 +4.834 -2.682 -1.762 0 0 0 0 0 0 0 +4.842 -2.666 -1.762 0 0 0 0 0 0 0 +4.837 -2.644 -1.757 0 0 0 0 0 0 0 +4.848 -2.64 -1.76 0 0 0 0 0 0 0 +4.853 -2.623 -1.758 0 0 0 0 0 0 0 +4.863 -2.609 -1.759 0 0 0 0 0 0 0 +4.873 -2.594 -1.76 0 0 0 0 0 0 0 +4.884 -2.581 -1.761 0 0 0 0 0 0 0 +4.877 -2.557 -1.755 0 0 0 0 0 0 0 +4.893 -2.546 -1.758 0 0 0 0 0 0 0 +4.897 -2.539 -1.758 0 0 0 0 0 0 0 +4.894 -2.517 -1.754 0 0 0 0 0 0 0 +4.907 -2.504 -1.756 0 0 0 0 0 0 0 +4.909 -2.486 -1.754 0 0 0 0 0 0 0 +4.924 -2.474 -1.756 0 0 0 0 0 0 0 +4.927 -2.456 -1.754 0 0 0 0 0 0 0 +4.928 -2.437 -1.752 0 0 0 0 0 0 0 +4.928 -2.428 -1.75 0 0 0 0 0 0 0 +4.944 -2.417 -1.754 0 0 0 0 0 0 0 +4.948 -2.399 -1.752 0 0 0 0 0 0 0 +4.944 -2.378 -1.748 0 0 0 0 0 0 0 +4.958 -2.366 -1.75 0 0 0 0 0 0 0 +4.981 -2.358 -1.756 0 0 0 0 0 0 0 +4.973 -2.335 -1.75 0 0 0 0 0 0 0 +4.985 -2.331 -1.754 0 0 0 0 0 0 0 +4.982 -2.31 -1.75 0 0 0 0 0 0 0 +4.989 -2.295 -1.75 0 0 0 0 0 0 0 +5.009 -2.285 -1.754 0 0 0 0 0 0 0 +5.012 -2.267 -1.753 0 0 0 0 0 0 0 +5.023 -2.253 -1.754 0 0 0 0 0 0 0 +5.013 -2.23 -1.748 0 0 0 0 0 0 0 +5.018 -2.222 -1.749 0 0 0 0 0 0 0 +5.026 -2.207 -1.749 0 0 0 0 0 0 0 +5.037 -2.193 -1.75 0 0 0 0 0 0 0 +5.04 -2.176 -1.749 0 0 0 0 0 0 0 +5.052 -2.162 -1.751 0 0 0 0 0 0 0 +5.054 -2.144 -1.749 0 0 0 0 0 0 0 +5.054 -2.125 -1.747 0 0 0 0 0 0 0 +5.048 -2.114 -1.743 0 0 0 0 0 0 0 +5.044 -2.093 -1.74 0 0 0 0 0 0 0 +5.065 -2.083 -1.745 0 0 0 0 0 0 0 +5.075 -2.069 -1.746 0 0 0 0 0 0 0 +5.076 -2.051 -1.744 0 0 0 0 0 0 0 +5.077 -2.033 -1.742 0 0 0 0 0 0 0 +5.094 -2.021 -1.746 0 0 0 0 0 0 0 +5.081 -2.007 -1.74 0 0 0 0 0 0 0 +5.093 -1.993 -1.742 0 0 0 0 0 0 0 +5.11 -1.981 -1.746 0 0 0 0 0 0 0 +5.098 -1.958 -1.74 0 0 0 0 0 0 0 +5.117 -1.947 -1.744 0 0 0 0 0 0 0 +5.109 -1.925 -1.739 0 0 0 0 0 0 0 +5.12 -1.911 -1.741 0 0 0 0 0 0 0 +5.128 -1.905 -1.743 0 0 0 0 0 0 0 +5.134 -1.889 -1.743 0 0 0 0 0 0 0 +5.14 -1.873 -1.743 0 0 0 0 0 0 0 +5.15 -1.858 -1.744 0 0 0 0 0 0 0 +5.157 -1.842 -1.745 0 0 0 0 0 0 0 +5.154 -1.823 -1.741 0 0 0 0 0 0 0 +5.171 -1.811 -1.745 0 0 0 0 0 0 0 +5.166 -1.791 -1.741 0 0 0 0 0 0 0 +5.17 -1.783 -1.742 0 0 0 0 0 0 0 +5.156 -1.76 -1.735 0 0 0 0 0 0 0 +5.178 -1.749 -1.741 0 0 0 0 0 0 0 +5.181 -1.732 -1.74 0 0 0 0 0 0 0 +5.187 -1.716 -1.74 0 0 0 0 0 0 0 +5.19 -1.699 -1.74 0 0 0 0 0 0 0 +5.205 -1.686 -1.743 0 0 0 0 0 0 0 +5.202 -1.676 -1.741 0 0 0 0 0 0 0 +5.211 -1.661 -1.742 0 0 0 0 0 0 0 +5.207 -1.641 -1.739 0 0 0 0 0 0 0 +5.216 -1.626 -1.74 0 0 0 0 0 0 0 +5.219 -1.609 -1.74 0 0 0 0 0 0 0 +5.231 -1.595 -1.742 0 0 0 0 0 0 0 +5.23 -1.586 -1.741 0 0 0 0 0 0 0 +5.24 -1.571 -1.743 0 0 0 0 0 0 0 +5.245 -1.555 -1.743 0 0 0 0 0 0 0 +5.236 -1.534 -1.738 0 0 0 0 0 0 0 +5.259 -1.523 -1.744 0 0 0 0 0 0 0 +5.253 -1.503 -1.74 0 0 0 0 0 0 0 +5.263 -1.488 -1.742 0 0 0 0 0 0 0 +5.265 -1.471 -1.741 0 0 0 0 0 0 0 +5.273 -1.464 -1.743 0 0 0 0 0 0 0 +5.287 -1.45 -1.747 0 0 0 0 0 0 0 +5.271 -1.428 -1.74 0 0 0 0 0 0 0 +5.285 -1.414 -1.743 0 0 0 0 0 0 0 +5.288 -1.397 -1.742 0 0 0 0 0 0 0 +5.294 -1.381 -1.743 0 0 0 0 0 0 0 +5.305 -1.366 -1.745 0 0 0 0 0 0 0 +5.297 -1.355 -1.741 0 0 0 0 0 0 0 +5.301 -1.338 -1.741 0 0 0 0 0 0 0 +5.312 -1.323 -1.744 0 0 0 0 0 0 0 +5.315 -1.306 -1.743 0 0 0 0 0 0 0 +5.311 -1.288 -1.741 0 0 0 0 0 0 0 +5.308 -1.269 -1.738 0 0 0 0 0 0 0 +5.317 -1.254 -1.74 0 0 0 0 0 0 0 +5.321 -1.246 -1.741 0 0 0 0 0 0 0 +5.32 -1.228 -1.739 0 0 0 0 0 0 0 +5.336 -1.214 -1.743 0 0 0 0 0 0 0 +5.34 -1.197 -1.743 0 0 0 0 0 0 0 +5.338 -1.179 -1.741 0 0 0 0 0 0 0 +5.333 -1.161 -1.738 0 0 0 0 0 0 0 +5.346 -1.146 -1.741 0 0 0 0 0 0 0 +5.338 -1.135 -1.738 0 0 0 0 0 0 0 +5.364 -1.123 -1.746 0 0 0 0 0 0 0 +5.343 -1.101 -1.738 0 0 0 0 0 0 0 +5.352 -1.086 -1.74 0 0 0 0 0 0 0 +5.358 -1.069 -1.74 0 0 0 0 0 0 0 +5.348 -1.05 -1.736 0 0 0 0 0 0 0 +5.342 -1.031 -1.732 0 0 0 0 0 0 0 +5.347 -1.024 -1.734 0 0 0 0 0 0 0 +5.362 -1.009 -1.738 0 0 0 0 0 0 0 +5.342 -0.988 -1.73 0 0 0 0 0 0 0 +5.362 -0.974 -1.736 0 0 0 0 0 0 0 +5.35 -0.955 -1.731 0 0 0 0 0 0 0 +5.366 -0.94 -1.735 0 0 0 0 0 0 0 +5.358 -0.921 -1.731 0 0 0 0 0 0 0 +5.358 -0.913 -1.731 0 0 0 0 0 0 0 +5.366 -0.897 -1.732 0 0 0 0 0 0 0 +5.373 -0.88 -1.734 0 0 0 0 0 0 0 +5.37 -0.863 -1.732 0 0 0 0 0 0 0 +5.363 -0.844 -1.729 0 0 0 0 0 0 0 +5.381 -0.83 -1.734 0 0 0 0 0 0 0 +5.372 -0.811 -1.73 0 0 0 0 0 0 0 +5.381 -0.804 -1.732 0 0 0 0 0 0 0 +5.37 -0.785 -1.728 0 0 0 0 0 0 0 +5.376 -0.769 -1.729 0 0 0 0 0 0 0 +5.388 -0.753 -1.732 0 0 0 0 0 0 0 +5.383 -0.735 -1.73 0 0 0 0 0 0 0 +5.387 -0.718 -1.731 0 0 0 0 0 0 0 +5.38 -0.7 -1.727 0 0 0 0 0 0 0 +5.402 -0.695 -1.734 0 0 0 0 0 0 0 +5.378 -0.674 -1.725 0 0 0 0 0 0 0 +5.385 -0.658 -1.727 0 0 0 0 0 0 0 +5.386 -0.641 -1.727 0 0 0 0 0 0 0 +5.389 -0.624 -1.727 0 0 0 0 0 0 0 +5.399 -0.608 -1.73 0 0 0 0 0 0 0 +5.388 -0.59 -1.725 0 0 0 0 0 0 0 +5.398 -0.582 -1.729 0 0 0 0 0 0 0 +5.396 -0.565 -1.727 0 0 0 0 0 0 0 +5.394 -0.547 -1.726 0 0 0 0 0 0 0 +5.392 -0.53 -1.725 0 0 0 0 0 0 0 +5.39 -0.513 -1.723 0 0 0 0 0 0 0 +5.399 -0.497 -1.726 0 0 0 0 0 0 0 +5.395 -0.479 -1.724 0 0 0 0 0 0 0 +5.412 -0.472 -1.73 0 0 0 0 0 0 0 +5.397 -0.454 -1.724 0 0 0 0 0 0 0 +5.391 -0.436 -1.721 0 0 0 0 0 0 0 +5.403 -0.42 -1.725 0 0 0 0 0 0 0 +5.403 -0.403 -1.725 0 0 0 0 0 0 0 +5.423 -0.387 -1.731 0 0 0 0 0 0 0 +5.405 -0.369 -1.725 0 0 0 0 0 0 0 +5.393 -0.36 -1.72 0 0 0 0 0 0 0 +5.401 -0.343 -1.723 0 0 0 0 0 0 0 +5.416 -0.327 -1.727 0 0 0 0 0 0 0 +5.405 -0.309 -1.723 0 0 0 0 0 0 0 +5.404 -0.292 -1.723 0 0 0 0 0 0 0 +5.407 -0.275 -1.723 0 0 0 0 0 0 0 +5.398 -0.258 -1.72 0 0 0 0 0 0 0 +5.401 -0.249 -1.721 0 0 0 0 0 0 0 +5.394 -0.232 -1.718 0 0 0 0 0 0 0 +5.408 -0.216 -1.723 0 0 0 0 0 0 0 +5.399 -0.198 -1.72 0 0 0 0 0 0 0 +5.428 -0.183 -1.729 0 0 0 0 0 0 0 +5.395 -0.164 -1.718 0 0 0 0 0 0 0 +5.403 -0.148 -1.72 0 0 0 0 0 0 0 +5.399 -0.139 -1.719 0 0 0 0 0 0 0 +5.396 -0.122 -1.718 0 0 0 0 0 0 0 +5.4 -0.105 -1.719 0 0 0 0 0 0 0 +5.398 -0.088 -1.718 0 0 0 0 0 0 0 +5.391 -0.071 -1.716 0 0 0 0 0 0 0 +5.393 -0.054 -1.716 0 0 0 0 0 0 0 +5.389 -0.037 -1.715 0 0 0 0 0 0 0 +5.399 -0.029 -1.718 0 0 0 0 0 0 0 +5.424 -0.012 -1.727 0 0 0 0 0 0 0 +5.289 0.006 -1.735 0 0 0 0 0 0 0 +5.285 0.022 -1.734 0 0 0 0 0 0 0 +5.283 0.039 -1.733 0 0 0 0 0 0 0 +5.286 0.055 -1.734 0 0 0 0 0 0 0 +5.288 0.064 -1.735 0 0 0 0 0 0 0 +5.271 0.08 -1.729 0 0 0 0 0 0 0 +5.29 0.097 -1.736 0 0 0 0 0 0 0 +5.282 0.113 -1.733 0 0 0 0 0 0 0 +5.283 0.13 -1.734 0 0 0 0 0 0 0 +5.287 0.147 -1.735 0 0 0 0 0 0 0 +5.282 0.163 -1.734 0 0 0 0 0 0 0 +5.275 0.171 -1.731 0 0 0 0 0 0 0 +5.285 0.188 -1.735 0 0 0 0 0 0 0 +5.283 0.205 -1.734 0 0 0 0 0 0 0 +5.286 0.222 -1.736 0 0 0 0 0 0 0 +5.278 0.238 -1.733 0 0 0 0 0 0 0 +5.266 0.254 -1.729 0 0 0 0 0 0 0 +5.282 0.271 -1.735 0 0 0 0 0 0 0 +5.283 0.28 -1.736 0 0 0 0 0 0 0 +5.277 0.296 -1.734 0 0 0 0 0 0 0 +5.27 0.312 -1.732 0 0 0 0 0 0 0 +5.28 0.329 -1.736 0 0 0 0 0 0 0 +5.277 0.346 -1.735 0 0 0 0 0 0 0 +5.267 0.362 -1.732 0 0 0 0 0 0 0 +5.254 0.377 -1.728 0 0 0 0 0 0 0 +5.256 0.386 -1.728 0 0 0 0 0 0 0 +5.254 0.402 -1.728 0 0 0 0 0 0 0 +5.253 0.419 -1.728 0 0 0 0 0 0 0 +5.254 0.436 -1.729 0 0 0 0 0 0 0 +5.254 0.452 -1.73 0 0 0 0 0 0 0 +5.245 0.468 -1.727 0 0 0 0 0 0 0 +5.253 0.485 -1.73 0 0 0 0 0 0 0 +5.243 0.493 -1.727 0 0 0 0 0 0 0 +5.247 0.51 -1.729 0 0 0 0 0 0 0 +5.249 0.527 -1.73 0 0 0 0 0 0 0 +5.244 0.543 -1.729 0 0 0 0 0 0 0 +5.229 0.558 -1.724 0 0 0 0 0 0 0 +5.235 0.575 -1.727 0 0 0 0 0 0 0 +5.229 0.591 -1.726 0 0 0 0 0 0 0 +5.235 0.6 -1.728 0 0 0 0 0 0 0 +5.23 0.616 -1.727 0 0 0 0 0 0 0 +5.233 0.633 -1.729 0 0 0 0 0 0 0 +5.235 0.65 -1.73 0 0 0 0 0 0 0 +5.229 0.666 -1.729 0 0 0 0 0 0 0 +5.224 0.682 -1.728 0 0 0 0 0 0 0 +5.229 0.699 -1.73 0 0 0 0 0 0 0 +5.228 0.708 -1.73 0 0 0 0 0 0 0 +5.224 0.724 -1.73 0 0 0 0 0 0 0 +5.225 0.741 -1.731 0 0 0 0 0 0 0 +5.213 0.756 -1.728 0 0 0 0 0 0 0 +5.205 0.771 -1.726 0 0 0 0 0 0 0 +5.209 0.789 -1.728 0 0 0 0 0 0 0 +5.199 0.804 -1.725 0 0 0 0 0 0 0 +5.21 0.814 -1.73 0 0 0 0 0 0 0 +5.208 0.83 -1.73 0 0 0 0 0 0 0 +5.203 0.846 -1.729 0 0 0 0 0 0 0 +5.199 0.862 -1.728 0 0 0 0 0 0 0 +5.202 0.88 -1.73 0 0 0 0 0 0 0 +5.195 0.895 -1.729 0 0 0 0 0 0 0 +5.194 0.912 -1.73 0 0 0 0 0 0 0 +5.189 0.919 -1.728 0 0 0 0 0 0 0 +5.192 0.937 -1.73 0 0 0 0 0 0 0 +5.189 0.953 -1.73 0 0 0 0 0 0 0 +5.189 0.97 -1.732 0 0 0 0 0 0 0 +5.168 0.983 -1.725 0 0 0 0 0 0 0 +5.178 1.002 -1.73 0 0 0 0 0 0 0 +5.182 1.019 -1.732 0 0 0 0 0 0 0 +5.175 1.026 -1.73 0 0 0 0 0 0 0 +5.175 1.043 -1.732 0 0 0 0 0 0 0 +5.174 1.06 -1.732 0 0 0 0 0 0 0 +5.155 1.073 -1.727 0 0 0 0 0 0 0 +5.161 1.091 -1.73 0 0 0 0 0 0 0 +5.158 1.108 -1.73 0 0 0 0 0 0 0 +5.145 1.122 -1.727 0 0 0 0 0 0 0 +5.158 1.133 -1.732 0 0 0 0 0 0 0 +5.143 1.147 -1.728 0 0 0 0 0 0 0 +5.147 1.165 -1.731 0 0 0 0 0 0 0 +5.155 1.183 -1.735 0 0 0 0 0 0 0 +5.149 1.199 -1.734 0 0 0 0 0 0 0 +5.145 1.215 -1.734 0 0 0 0 0 0 0 +5.138 1.231 -1.733 0 0 0 0 0 0 0 +5.139 1.24 -1.734 0 0 0 0 0 0 0 +5.145 1.258 -1.738 0 0 0 0 0 0 0 +5.135 1.273 -1.736 0 0 0 0 0 0 0 +5.131 1.289 -1.736 0 0 0 0 0 0 0 +5.125 1.304 -1.735 0 0 0 0 0 0 0 +5.125 1.322 -1.736 0 0 0 0 0 0 0 +5.115 1.336 -1.734 0 0 0 0 0 0 0 +5.115 1.353 -1.736 0 0 0 0 0 0 0 +5.118 1.363 -1.738 0 0 0 0 0 0 0 +5.119 1.38 -1.74 0 0 0 0 0 0 0 +5.109 1.395 -1.738 0 0 0 0 0 0 0 +5.096 1.408 -1.734 0 0 0 0 0 0 0 +5.088 1.423 -1.733 0 0 0 0 0 0 0 +5.092 1.442 -1.736 0 0 0 0 0 0 0 +5.088 1.449 -1.736 0 0 0 0 0 0 0 +5.069 1.461 -1.73 0 0 0 0 0 0 0 +5.07 1.479 -1.732 0 0 0 0 0 0 0 +5.063 1.494 -1.732 0 0 0 0 0 0 0 +5.062 1.511 -1.733 0 0 0 0 0 0 0 +5.065 1.529 -1.736 0 0 0 0 0 0 0 +5.051 1.542 -1.732 0 0 0 0 0 0 0 +5.045 1.549 -1.731 0 0 0 0 0 0 0 +5.056 1.57 -1.737 0 0 0 0 0 0 0 +5.044 1.584 -1.734 0 0 0 0 0 0 0 +5.046 1.602 -1.737 0 0 0 0 0 0 0 +5.045 1.619 -1.738 0 0 0 0 0 0 0 +5.025 1.63 -1.733 0 0 0 0 0 0 0 +5.036 1.651 -1.739 0 0 0 0 0 0 0 +5.025 1.656 -1.736 0 0 0 0 0 0 0 +5.025 1.674 -1.738 0 0 0 0 0 0 0 +5.014 1.687 -1.736 0 0 0 0 0 0 0 +5.002 1.701 -1.733 0 0 0 0 0 0 0 +5.003 1.719 -1.736 0 0 0 0 0 0 0 +5 1.735 -1.736 0 0 0 0 0 0 0 +4.993 1.75 -1.736 0 0 0 0 0 0 0 +4.992 1.768 -1.738 0 0 0 0 0 0 0 +4.984 1.774 -1.736 0 0 0 0 0 0 0 +4.97 1.786 -1.732 0 0 0 0 0 0 0 +4.966 1.803 -1.733 0 0 0 0 0 0 0 +4.957 1.817 -1.732 0 0 0 0 0 0 0 +4.944 1.83 -1.729 0 0 0 0 0 0 0 +4.956 1.852 -1.736 0 0 0 0 0 0 0 +4.943 1.865 -1.733 0 0 0 0 0 0 0 +4.945 1.875 -1.735 0 0 0 0 0 0 0 +4.938 1.889 -1.734 0 0 0 0 0 0 0 +4.925 1.902 -1.732 0 0 0 0 0 0 0 +4.922 1.919 -1.733 0 0 0 0 0 0 0 +4.907 1.931 -1.73 0 0 0 0 0 0 0 +4.91 1.95 -1.733 0 0 0 0 0 0 0 +4.905 1.957 -1.732 0 0 0 0 0 0 0 +4.901 1.973 -1.733 0 0 0 0 0 0 0 +4.882 1.983 -1.728 0 0 0 0 0 0 0 +4.892 2.005 -1.734 0 0 0 0 0 0 0 +4.88 2.018 -1.732 0 0 0 0 0 0 0 +4.877 2.035 -1.734 0 0 0 0 0 0 0 +4.871 2.05 -1.734 0 0 0 0 0 0 0 +4.859 2.054 -1.73 0 0 0 0 0 0 0 +4.856 2.071 -1.732 0 0 0 0 0 0 0 +4.848 2.086 -1.731 0 0 0 0 0 0 0 +4.851 2.105 -1.735 0 0 0 0 0 0 0 +4.843 2.12 -1.734 0 0 0 0 0 0 0 +4.823 2.129 -1.729 0 0 0 0 0 0 0 +4.833 2.152 -1.736 0 0 0 0 0 0 0 +4.806 2.149 -1.726 0 0 0 0 0 0 0 +4.813 2.17 -1.732 0 0 0 0 0 0 0 +4.814 2.189 -1.735 0 0 0 0 0 0 0 +4.795 2.198 -1.73 0 0 0 0 0 0 0 +4.782 2.21 -1.728 0 0 0 0 0 0 0 +4.787 2.231 -1.732 0 0 0 0 0 0 0 +4.763 2.238 -1.726 0 0 0 0 0 0 0 +4.769 2.25 -1.73 0 0 0 0 0 0 0 +4.757 2.263 -1.728 0 0 0 0 0 0 0 +4.762 2.283 -1.732 0 0 0 0 0 0 0 +4.751 2.297 -1.731 0 0 0 0 0 0 0 +4.737 2.308 -1.728 0 0 0 0 0 0 0 +4.728 2.322 -1.728 0 0 0 0 0 0 0 +4.726 2.34 -1.73 0 0 0 0 0 0 0 +4.722 2.347 -1.73 0 0 0 0 0 0 0 +4.713 2.361 -1.729 0 0 0 0 0 0 0 +4.709 2.378 -1.73 0 0 0 0 0 0 0 +4.698 2.391 -1.729 0 0 0 0 0 0 0 +4.676 2.398 -1.723 0 0 0 0 0 0 0 +4.683 2.42 -1.729 0 0 0 0 0 0 0 +4.671 2.432 -1.727 0 0 0 0 0 0 0 +4.658 2.444 -1.725 0 0 0 0 0 0 0 +4.666 2.458 -1.73 0 0 0 0 0 0 0 +4.653 2.47 -1.728 0 0 0 0 0 0 0 +4.642 2.483 -1.726 0 0 0 0 0 0 0 +4.627 2.494 -1.724 0 0 0 0 0 0 0 +4.623 2.51 -1.725 0 0 0 0 0 0 0 +4.602 2.517 -1.72 0 0 0 0 0 0 0 +4.612 2.542 -1.727 0 0 0 0 0 0 0 +4.595 2.541 -1.722 0 0 0 0 0 0 0 +4.587 2.556 -1.722 0 0 0 0 0 0 0 +4.579 2.57 -1.722 0 0 0 0 0 0 0 +4.572 2.586 -1.723 0 0 0 0 0 0 0 +4.556 2.595 -1.719 0 0 0 0 0 0 0 +4.553 2.612 -1.721 0 0 0 0 0 0 0 +4.552 2.621 -1.723 0 0 0 0 0 0 0 +4.545 2.637 -1.723 0 0 0 0 0 0 0 +4.535 2.65 -1.723 0 0 0 0 0 0 0 +4.522 2.661 -1.721 0 0 0 0 0 0 0 +4.515 2.676 -1.721 0 0 0 0 0 0 0 +4.504 2.689 -1.72 0 0 0 0 0 0 0 +4.498 2.705 -1.721 0 0 0 0 0 0 0 +4.494 2.712 -1.721 0 0 0 0 0 0 0 +4.482 2.724 -1.72 0 0 0 0 0 0 0 +4.479 2.741 -1.722 0 0 0 0 0 0 0 +4.459 2.748 -1.717 0 0 0 0 0 0 0 +4.461 2.769 -1.722 0 0 0 0 0 0 0 +4.451 2.782 -1.721 0 0 0 0 0 0 0 +4.436 2.792 -1.719 0 0 0 0 0 0 0 +4.439 2.804 -1.722 0 0 0 0 0 0 0 +4.421 2.812 -1.718 0 0 0 0 0 0 0 +4.411 2.825 -1.717 0 0 0 0 0 0 0 +4.414 2.847 -1.723 0 0 0 0 0 0 0 +4.409 2.863 -1.724 0 0 0 0 0 0 0 +4.401 2.878 -1.724 0 0 0 0 0 0 0 +4.384 2.886 -1.721 0 0 0 0 0 0 0 +4.381 2.904 -1.724 0 0 0 0 0 0 0 +4.372 2.908 -1.722 0 0 0 0 0 0 0 +4.382 2.934 -1.73 0 0 0 0 0 0 0 +4.358 2.939 -1.724 0 0 0 0 0 0 0 +4.352 2.954 -1.725 0 0 0 0 0 0 0 +4.338 2.965 -1.723 0 0 0 0 0 0 0 +4.331 2.979 -1.724 0 0 0 0 0 0 0 +4.32 2.992 -1.723 0 0 0 0 0 0 0 +4.326 3.006 -1.728 0 0 0 0 0 0 0 +4.309 3.014 -1.724 0 0 0 0 0 0 0 +4.308 3.035 -1.728 0 0 0 0 0 0 0 +4.3 3.049 -1.729 0 0 0 0 0 0 0 +4.277 3.053 -1.723 0 0 0 0 0 0 0 +4.264 3.064 -1.722 0 0 0 0 0 0 0 +4.274 3.092 -1.73 0 0 0 0 0 0 0 +4.254 3.087 -1.724 0 0 0 0 0 0 0 +4.252 3.106 -1.727 0 0 0 0 0 0 0 +4.255 3.129 -1.732 0 0 0 0 0 0 0 +4.231 3.132 -1.726 0 0 0 0 0 0 0 +4.217 3.142 -1.724 0 0 0 0 0 0 0 +4.216 3.162 -1.728 0 0 0 0 0 0 0 +4.215 3.182 -1.732 0 0 0 0 0 0 0 +4.195 3.177 -1.726 0 0 0 0 0 0 0 +4.189 3.194 -1.728 0 0 0 0 0 0 0 +4.188 3.214 -1.732 0 0 0 0 0 0 0 +4.174 3.223 -1.73 0 0 0 0 0 0 0 +4.175 3.246 -1.735 0 0 0 0 0 0 0 +4.147 3.245 -1.727 0 0 0 0 0 0 0 +4.151 3.268 -1.733 0 0 0 0 0 0 0 +4.126 3.26 -1.724 0 0 0 0 0 0 0 +4.135 3.288 -1.733 0 0 0 0 0 0 0 +4.116 3.294 -1.729 0 0 0 0 0 0 0 +4.113 3.313 -1.732 0 0 0 0 0 0 0 +4.101 3.324 -1.732 0 0 0 0 0 0 0 +4.08 3.329 -1.727 0 0 0 0 0 0 0 +4.079 3.349 -1.731 0 0 0 0 0 0 0 +4.073 3.355 -1.731 0 0 0 0 0 0 0 +4.056 3.362 -1.728 0 0 0 0 0 0 0 +4.046 3.376 -1.728 0 0 0 0 0 0 0 +4.037 3.39 -1.729 0 0 0 0 0 0 0 +4.019 3.396 -1.726 0 0 0 0 0 0 0 +4.022 3.42 -1.732 0 0 0 0 0 0 0 +4.007 3.429 -1.73 0 0 0 0 0 0 0 +4 3.434 -1.729 0 0 0 0 0 0 0 +3.987 3.445 -1.728 0 0 0 0 0 0 0 +3.978 3.459 -1.729 0 0 0 0 0 0 0 +3.969 3.473 -1.73 0 0 0 0 0 0 0 +3.96 3.488 -1.731 0 0 0 0 0 0 0 +3.945 3.496 -1.729 0 0 0 0 0 0 0 +3.938 3.513 -1.731 0 0 0 0 0 0 0 +3.932 3.518 -1.73 0 0 0 0 0 0 0 +3.925 3.534 -1.732 0 0 0 0 0 0 0 +3.909 3.542 -1.73 0 0 0 0 0 0 0 +3.9 3.556 -1.731 0 0 0 0 0 0 0 +3.893 3.572 -1.733 0 0 0 0 0 0 0 +3.869 3.572 -1.727 0 0 0 0 0 0 0 +3.87 3.596 -1.733 0 0 0 0 0 0 0 +3.86 3.598 -1.731 0 0 0 0 0 0 0 +3.843 3.605 -1.728 0 0 0 0 0 0 0 +3.843 3.628 -1.734 0 0 0 0 0 0 0 +3.819 3.628 -1.728 0 0 0 0 0 0 0 +3.816 3.648 -1.732 0 0 0 0 0 0 0 +3.807 3.663 -1.733 0 0 0 0 0 0 0 +3.793 3.672 -1.732 0 0 0 0 0 0 0 +3.778 3.669 -1.727 0 0 0 0 0 0 0 +3.772 3.686 -1.73 0 0 0 0 0 0 0 +3.764 3.702 -1.732 0 0 0 0 0 0 0 +3.747 3.708 -1.729 0 0 0 0 0 0 0 +3.742 3.726 -1.732 0 0 0 0 0 0 0 +3.733 3.741 -1.734 0 0 0 0 0 0 0 +3.703 3.734 -1.724 0 0 0 0 0 0 0 +3.694 3.748 -1.726 0 0 0 0 0 0 0 +3.686 3.752 -1.725 0 0 0 0 0 0 0 +3.676 3.765 -1.726 0 0 0 0 0 0 0 +3.663 3.776 -1.725 0 0 0 0 0 0 0 +3.644 3.78 -1.722 0 0 0 0 0 0 0 +3.635 3.794 -1.723 0 0 0 0 0 0 0 +3.615 3.798 -1.719 0 0 0 0 0 0 0 +3.613 3.819 -1.724 0 0 0 0 0 0 0 +3.604 3.821 -1.723 0 0 0 0 0 0 0 +3.588 3.829 -1.721 0 0 0 0 0 0 0 +3.582 3.847 -1.724 0 0 0 0 0 0 0 +3.577 3.865 -1.727 0 0 0 0 0 0 0 +3.559 3.871 -1.724 0 0 0 0 0 0 0 +3.546 3.88 -1.724 0 0 0 0 0 0 0 +3.536 3.882 -1.722 0 0 0 0 0 0 0 +3.521 3.89 -1.721 0 0 0 0 0 0 0 +3.518 3.911 -1.725 0 0 0 0 0 0 0 +3.503 3.919 -1.724 0 0 0 0 0 0 0 +3.492 3.932 -1.724 0 0 0 0 0 0 0 +3.481 3.944 -1.725 0 0 0 0 0 0 0 +3.466 3.952 -1.724 0 0 0 0 0 0 0 +3.455 3.952 -1.721 0 0 0 0 0 0 0 +3.456 3.978 -1.728 0 0 0 0 0 0 0 +3.44 3.985 -1.726 0 0 0 0 0 0 0 +3.425 3.993 -1.725 0 0 0 0 0 0 0 +3.413 4.005 -1.726 0 0 0 0 0 0 0 +3.404 4.02 -1.728 0 0 0 0 0 0 0 +3.382 4.019 -1.723 0 0 0 0 0 0 0 +3.373 4.034 -1.724 0 0 0 0 0 0 0 +3.368 4.041 -1.725 0 0 0 0 0 0 0 +3.357 4.053 -1.726 0 0 0 0 0 0 0 +3.343 4.062 -1.725 0 0 0 0 0 0 0 +3.325 4.066 -1.723 0 0 0 0 0 0 0 +3.313 4.078 -1.723 0 0 0 0 0 0 0 +3.305 4.095 -1.726 0 0 0 0 0 0 0 +3.289 4.101 -1.724 0 0 0 0 0 0 0 +3.291 4.116 -1.728 0 0 0 0 0 0 0 +3.268 4.115 -1.723 0 0 0 0 0 0 0 +3.248 4.116 -1.719 0 0 0 0 0 0 0 +3.251 4.145 -1.728 0 0 0 0 0 0 0 +3.233 4.15 -1.725 0 0 0 0 0 0 0 +3.21 4.146 -1.719 0 0 0 0 0 0 0 +3.208 4.171 -1.726 0 0 0 0 0 0 0 +3.19 4.175 -1.723 0 0 0 0 0 0 0 +3.172 4.165 -1.717 0 0 0 0 0 0 0 +3.172 4.192 -1.724 0 0 0 0 0 0 0 +3.16 4.203 -1.724 0 0 0 0 0 0 0 +3.145 4.212 -1.724 0 0 0 0 0 0 0 +3.133 4.223 -1.724 0 0 0 0 0 0 0 +3.121 4.234 -1.725 0 0 0 0 0 0 0 +3.111 4.235 -1.723 0 0 0 0 0 0 0 +3.104 4.254 -1.727 0 0 0 0 0 0 0 +3.092 4.265 -1.728 0 0 0 0 0 0 0 +3.076 4.272 -1.726 0 0 0 0 0 0 0 +3.062 4.28 -1.726 0 0 0 0 0 0 0 +3.054 4.297 -1.729 0 0 0 0 0 0 0 +3.039 4.305 -1.728 0 0 0 0 0 0 0 +3.022 4.31 -1.726 0 0 0 0 0 0 0 +3.021 4.322 -1.73 0 0 0 0 0 0 0 +3.003 4.326 -1.727 0 0 0 0 0 0 0 +2.992 4.338 -1.728 0 0 0 0 0 0 0 +2.98 4.351 -1.73 0 0 0 0 0 0 0 +2.961 4.352 -1.726 0 0 0 0 0 0 0 +2.957 4.376 -1.732 0 0 0 0 0 0 0 +2.941 4.382 -1.731 0 0 0 0 0 0 0 +2.934 4.386 -1.731 0 0 0 0 0 0 0 +2.92 4.396 -1.731 0 0 0 0 0 0 0 +2.91 4.409 -1.733 0 0 0 0 0 0 0 +2.892 4.412 -1.73 0 0 0 0 0 0 0 +2.878 4.421 -1.73 0 0 0 0 0 0 0 +2.871 4.441 -1.735 0 0 0 0 0 0 0 +2.86 4.455 -1.737 0 0 0 0 0 0 0 +2.845 4.447 -1.732 0 0 0 0 0 0 0 +2.834 4.461 -1.734 0 0 0 0 0 0 0 +2.817 4.465 -1.732 0 0 0 0 0 0 0 +2.806 4.478 -1.734 0 0 0 0 0 0 0 +2.793 4.489 -1.734 0 0 0 0 0 0 0 +2.779 4.498 -1.734 0 0 0 0 0 0 0 +2.772 4.518 -1.739 0 0 0 0 0 0 0 +2.765 4.523 -1.74 0 0 0 0 0 0 0 +2.748 4.527 -1.738 0 0 0 0 0 0 0 +2.732 4.533 -1.736 0 0 0 0 0 0 0 +2.718 4.541 -1.736 0 0 0 0 0 0 0 +2.7 4.543 -1.734 0 0 0 0 0 0 0 +2.689 4.558 -1.736 0 0 0 0 0 0 0 +2.673 4.563 -1.735 0 0 0 0 0 0 0 +2.664 4.564 -1.734 0 0 0 0 0 0 0 +2.653 4.579 -1.736 0 0 0 0 0 0 0 +2.642 4.592 -1.738 0 0 0 0 0 0 0 +2.625 4.596 -1.736 0 0 0 0 0 0 0 +2.608 4.601 -1.735 0 0 0 0 0 0 0 +2.594 4.609 -1.735 0 0 0 0 0 0 0 +2.575 4.609 -1.732 0 0 0 0 0 0 0 +2.567 4.628 -1.736 0 0 0 0 0 0 0 +2.558 4.631 -1.736 0 0 0 0 0 0 0 +2.549 4.649 -1.74 0 0 0 0 0 0 0 +2.527 4.642 -1.734 0 0 0 0 0 0 0 +2.514 4.653 -1.735 0 0 0 0 0 0 0 +2.503 4.668 -1.738 0 0 0 0 0 0 0 +2.484 4.667 -1.734 0 0 0 0 0 0 0 +2.469 4.675 -1.734 0 0 0 0 0 0 0 +2.457 4.67 -1.731 0 0 0 0 0 0 0 +2.448 4.688 -1.735 0 0 0 0 0 0 0 +2.436 4.702 -1.738 0 0 0 0 0 0 0 +2.419 4.705 -1.736 0 0 0 0 0 0 0 +2.403 4.711 -1.735 0 0 0 0 0 0 0 +2.389 4.718 -1.735 0 0 0 0 0 0 0 +2.376 4.731 -1.737 0 0 0 0 0 0 0 +2.375 4.747 -1.742 0 0 0 0 0 0 0 +2.348 4.73 -1.732 0 0 0 0 0 0 0 +2.334 4.739 -1.733 0 0 0 0 0 0 0 +2.322 4.752 -1.735 0 0 0 0 0 0 0 +2.295 4.735 -1.726 0 0 0 0 0 0 0 +2.286 4.754 -1.73 0 0 0 0 0 0 0 +2.271 4.761 -1.73 0 0 0 0 0 0 0 +2.259 4.755 -1.726 0 0 0 0 0 0 0 +2.249 4.772 -1.73 0 0 0 0 0 0 0 +2.235 4.781 -1.731 0 0 0 0 0 0 0 +2.216 4.781 -1.728 0 0 0 0 0 0 0 +2.197 4.778 -1.724 0 0 0 0 0 0 0 +2.192 4.807 -1.733 0 0 0 0 0 0 0 +2.17 4.8 -1.728 0 0 0 0 0 0 0 +2.158 4.793 -1.724 0 0 0 0 0 0 0 +2.155 4.827 -1.734 0 0 0 0 0 0 0 +2.135 4.822 -1.73 0 0 0 0 0 0 0 +2.12 4.829 -1.73 0 0 0 0 0 0 0 +2.111 4.849 -1.735 0 0 0 0 0 0 0 +2.09 4.844 -1.73 0 0 0 0 0 0 0 +2.073 4.847 -1.729 0 0 0 0 0 0 0 +2.064 4.867 -1.734 0 0 0 0 0 0 0 +2.049 4.853 -1.728 0 0 0 0 0 0 0 +2.037 4.866 -1.73 0 0 0 0 0 0 0 +2.029 4.892 -1.738 0 0 0 0 0 0 0 +2.009 4.886 -1.733 0 0 0 0 0 0 0 +1.995 4.896 -1.734 0 0 0 0 0 0 0 +1.98 4.902 -1.734 0 0 0 0 0 0 0 +1.96 4.898 -1.73 0 0 0 0 0 0 0 +1.953 4.903 -1.731 0 0 0 0 0 0 0 +1.942 4.921 -1.736 0 0 0 0 0 0 0 +1.924 4.92 -1.733 0 0 0 0 0 0 0 +1.906 4.919 -1.73 0 0 0 0 0 0 0 +1.896 4.939 -1.736 0 0 0 0 0 0 0 +1.876 4.933 -1.731 0 0 0 0 0 0 0 +1.866 4.953 -1.736 0 0 0 0 0 0 0 +1.855 4.947 -1.733 0 0 0 0 0 0 0 +1.84 4.954 -1.734 0 0 0 0 0 0 0 +1.827 4.969 -1.737 0 0 0 0 0 0 0 +1.813 4.978 -1.738 0 0 0 0 0 0 0 +1.79 4.963 -1.73 0 0 0 0 0 0 0 +1.778 4.979 -1.734 0 0 0 0 0 0 0 +1.762 4.983 -1.734 0 0 0 0 0 0 0 +1.757 4.994 -1.737 0 0 0 0 0 0 0 +1.735 4.982 -1.73 0 0 0 0 0 0 0 +1.721 4.991 -1.732 0 0 0 0 0 0 0 +1.708 5.005 -1.735 0 0 0 0 0 0 0 +1.683 4.984 -1.725 0 0 0 0 0 0 0 +1.664 4.978 -1.721 0 0 0 0 0 0 0 +1.647 4.978 -1.719 0 0 0 0 0 0 0 +1.629 4.978 -1.717 0 0 0 0 0 0 0 +1.62 4.977 -1.716 0 0 0 0 0 0 0 +1.604 4.98 -1.715 0 0 0 0 0 0 0 +1.586 4.976 -1.712 0 0 0 0 0 0 0 +1.57 4.981 -1.712 0 0 0 0 0 0 0 +1.55 4.972 -1.707 0 0 0 0 0 0 0 +1.532 4.969 -1.704 0 0 0 0 0 0 0 +1.518 4.979 -1.706 0 0 0 0 0 0 0 +1.511 4.984 -1.707 0 0 0 0 0 0 0 +1.492 4.977 -1.703 0 0 0 0 0 0 0 +1.478 4.987 -1.705 0 0 0 0 0 0 0 +1.461 4.987 -1.703 0 0 0 0 0 0 0 +1.444 4.988 -1.701 0 0 0 0 0 0 0 +1.428 4.992 -1.701 0 0 0 0 0 0 0 +1.411 4.991 -1.699 0 0 0 0 0 0 0 +1.401 4.984 -1.696 0 0 0 0 0 0 0 +1.385 4.989 -1.696 0 0 0 0 0 0 0 +1.372 5.002 -1.699 0 0 0 0 0 0 0 +1.355 5.001 -1.697 0 0 0 0 0 0 0 +1.338 5.003 -1.697 0 0 0 0 0 0 0 +1.325 5.015 -1.699 0 0 0 0 0 0 0 +1.307 5.013 -1.697 0 0 0 0 0 0 0 +1.298 5.01 -1.695 0 0 0 0 0 0 0 +1.282 5.014 -1.695 0 0 0 0 0 0 0 +1.266 5.014 -1.694 0 0 0 0 0 0 0 +1.25 5.016 -1.693 0 0 0 0 0 0 0 +1.237 5.033 -1.698 0 0 0 0 0 0 0 +1.218 5.026 -1.694 0 0 0 0 0 0 0 +1.202 5.026 -1.693 0 0 0 0 0 0 0 +1.181 5.008 -1.685 0 0 0 0 0 0 0 +1.167 4.984 -1.676 0 0 0 0 0 0 0 +1.134 4.91 -1.648 0 0 0 0 0 0 0 +1.144 5.026 -1.688 0 0 0 0 0 0 0 +1.12 4.995 -1.676 0 0 0 0 0 0 0 +1.107 5.011 -1.68 0 0 0 0 0 0 0 +1.089 5.004 -1.676 0 0 0 0 0 0 0 +1.073 5.007 -1.676 0 0 0 0 0 0 0 +1.047 4.922 -1.645 0 0 0 0 0 0 0 +1.057 5.049 -1.689 0 0 0 0 0 0 0 +1.034 5.017 -1.677 0 0 0 0 0 0 0 +1.02 5.03 -1.68 0 0 0 0 0 0 0 +1.004 5.027 -1.678 0 0 0 0 0 0 0 +0.988 5.032 -1.679 0 0 0 0 0 0 0 +0.612 3.142 -1.003 0 0 0 0 0 0 0 +0.971 5.028 -1.676 0 0 0 0 0 0 0 +0.602 3.146 -1.004 0 0 0 0 0 0 0 +0.593 3.152 -1.005 0 0 0 0 0 0 0 +0.583 3.155 -1.006 0 0 0 0 0 0 0 +0.575 3.168 -1.01 0 0 0 0 0 0 0 +0.566 3.176 -1.012 0 0 0 0 0 0 0 +0.558 3.189 -1.016 0 0 0 0 0 0 0 +0.555 3.202 -1.02 0 0 0 0 0 0 0 +0.545 3.202 -1.02 0 0 0 0 0 0 0 +0.535 3.204 -1.02 0 0 0 0 0 0 0 +0.522 3.189 -1.014 0 0 0 0 0 0 0 +0.512 3.191 -1.014 0 0 0 0 0 0 0 +0.505 3.209 -1.02 0 0 0 0 0 0 0 +0.494 3.207 -1.018 0 0 0 0 0 0 0 +0.49 3.211 -1.02 0 0 0 0 0 0 0 +0.476 3.189 -1.011 0 0 0 0 0 0 0 +0.455 3.108 -0.982 0 0 0 0 0 0 0 +0.442 3.085 -0.973 0 0 0 0 0 0 0 +0.421 3.002 -0.944 0 0 0 0 0 0 0 +0.411 3.003 -0.944 0 0 0 0 0 0 0 +0.402 3.003 -0.943 0 0 0 0 0 0 0 +0.392 3.004 -0.943 0 0 0 0 0 0 0 +0.388 3.005 -0.943 0 0 0 0 0 0 0 +0.378 3.006 -0.943 0 0 0 0 0 0 0 +0.369 3.007 -0.943 0 0 0 0 0 0 0 +0.359 3.008 -0.943 0 0 0 0 0 0 0 +0.35 3.011 -0.944 0 0 0 0 0 0 0 +0.34 3.01 -0.943 0 0 0 0 0 0 0 +0.331 3.011 -0.943 0 0 0 0 0 0 0 +0.326 3.014 -0.944 0 0 0 0 0 0 0 +0.317 3.015 -0.944 0 0 0 0 0 0 0 +0.307 3.016 -0.944 0 0 0 0 0 0 0 +0.298 3.013 -0.942 0 0 0 0 0 0 0 +0.289 3.019 -0.944 0 0 0 0 0 0 0 +0.28 3.026 -0.946 0 0 0 0 0 0 0 +0.277 3.112 -0.976 0 0 0 0 0 0 0 +0.277 3.172 -0.997 0 0 0 0 0 0 0 +0.271 3.228 -1.016 0 0 0 0 0 0 0 +0.261 3.228 -1.016 0 0 0 0 0 0 0 +0.251 3.241 -1.02 0 0 0 0 0 0 0 +0.239 3.213 -1.011 0 0 0 0 0 0 0 +0.233 3.267 -1.029 0 0 0 0 0 0 0 +0.22 3.233 -1.017 0 0 0 0 0 0 0 +0.211 3.247 -1.022 0 0 0 0 0 0 0 +0.205 3.236 -1.018 0 0 0 0 0 0 0 +0.195 3.231 -1.016 0 0 0 0 0 0 0 +0.184 3.226 -1.014 0 0 0 0 0 0 0 +0.174 3.223 -1.013 0 0 0 0 0 0 0 +0.164 3.229 -1.014 0 0 0 0 0 0 0 +0.154 3.222 -1.012 0 0 0 0 0 0 0 +0.144 3.232 -1.015 0 0 0 0 0 0 0 +0.138 3.223 -1.012 0 0 0 0 0 0 0 +0.129 3.233 -1.015 0 0 0 0 0 0 0 +0.171 5.072 -1.66 0 0 0 0 0 0 0 +0.155 5.084 -1.664 0 0 0 0 0 0 0 +0.139 5.083 -1.664 0 0 0 0 0 0 0 +0.123 5.08 -1.662 0 0 0 0 0 0 0 +0.108 5.089 -1.666 0 0 0 0 0 0 0 +0.1 5.097 -1.668 0 0 0 0 0 0 0 +0.084 5.099 -1.669 0 0 0 0 0 0 0 +0.068 5.118 -1.676 0 0 0 0 0 0 0 +0.052 5.12 -1.676 0 0 0 0 0 0 0 +0.036 5.113 -1.674 0 0 0 0 0 0 0 +0.02 5.124 -1.678 0 0 0 0 0 0 0 +0.003 5.13 -1.679 0 0 0 0 0 0 0 +-0.005 5.145 -1.685 0 0 0 0 0 0 0 +-0.021 5.158 -1.689 0 0 0 0 0 0 0 +-0.037 5.164 -1.691 0 0 0 0 0 0 0 +-0.053 5.166 -1.692 0 0 0 0 0 0 0 +-0.07 5.173 -1.695 0 0 0 0 0 0 0 +-0.086 5.18 -1.697 0 0 0 0 0 0 0 +-0.102 5.167 -1.693 0 0 0 0 0 0 0 +-0.111 5.178 -1.697 0 0 0 0 0 0 0 +-0.128 5.21 -1.708 0 0 0 0 0 0 0 +-0.145 5.243 -1.72 0 0 0 0 0 0 0 +-0.161 5.23 -1.715 0 0 0 0 0 0 0 +-0.178 5.229 -1.715 0 0 0 0 0 0 0 +-0.195 5.24 -1.719 0 0 0 0 0 0 0 +-0.211 5.237 -1.719 0 0 0 0 0 0 0 +-0.22 5.244 -1.721 0 0 0 0 0 0 0 +-0.237 5.261 -1.727 0 0 0 0 0 0 0 +-0.254 5.271 -1.731 0 0 0 0 0 0 0 +-0.27 5.257 -1.726 0 0 0 0 0 0 0 +-0.288 5.277 -1.734 0 0 0 0 0 0 0 +-0.304 5.267 -1.73 0 0 0 0 0 0 0 +-0.32 5.268 -1.731 0 0 0 0 0 0 0 +-0.339 5.297 -1.742 0 0 0 0 0 0 0 +-0.346 5.277 -1.735 0 0 0 0 0 0 0 +-0.363 5.28 -1.736 0 0 0 0 0 0 0 +-0.381 5.298 -1.743 0 0 0 0 0 0 0 +-0.397 5.289 -1.74 0 0 0 0 0 0 0 +-0.413 5.288 -1.74 0 0 0 0 0 0 0 +-0.432 5.305 -1.747 0 0 0 0 0 0 0 +-0.448 5.296 -1.744 0 0 0 0 0 0 0 +-0.456 5.299 -1.746 0 0 0 0 0 0 0 +-0.474 5.311 -1.75 0 0 0 0 0 0 0 +-0.49 5.3 -1.747 0 0 0 0 0 0 0 +-0.508 5.31 -1.751 0 0 0 0 0 0 0 +-0.526 5.327 -1.758 0 0 0 0 0 0 0 +-0.542 5.312 -1.753 0 0 0 0 0 0 0 +-0.558 5.31 -1.753 0 0 0 0 0 0 0 +-0.568 5.323 -1.758 0 0 0 0 0 0 0 +-0.585 5.319 -1.757 0 0 0 0 0 0 0 +-0.6 5.304 -1.752 0 0 0 0 0 0 0 +-0.619 5.326 -1.761 0 0 0 0 0 0 0 +-0.635 5.319 -1.759 0 0 0 0 0 0 0 +-0.653 5.326 -1.762 0 0 0 0 0 0 0 +-0.651 5.18 -1.711 0 0 0 0 0 0 0 +-0.677 5.31 -1.758 0 0 0 0 0 0 0 +-0.745 5.43 -1.803 0 0 0 0 0 0 0 +-0.757 5.394 -1.791 0 0 0 0 0 0 0 +-0.769 5.358 -1.779 0 0 0 0 0 0 0 +-0.783 5.335 -1.771 0 0 0 0 0 0 0 +-0.797 5.316 -1.766 0 0 0 0 0 0 0 +-0.805 5.315 -1.766 0 0 0 0 0 0 0 +-0.818 5.288 -1.757 0 0 0 0 0 0 0 +-0.834 5.282 -1.756 0 0 0 0 0 0 0 +-0.852 5.29 -1.76 0 0 0 0 0 0 0 +-0.868 5.282 -1.758 0 0 0 0 0 0 0 +-0.882 5.266 -1.753 0 0 0 0 0 0 0 +-0.902 5.278 -1.758 0 0 0 0 0 0 0 +-0.909 5.273 -1.757 0 0 0 0 0 0 0 +-0.926 5.27 -1.757 0 0 0 0 0 0 0 +-0.943 5.273 -1.759 0 0 0 0 0 0 0 +-0.959 5.264 -1.757 0 0 0 0 0 0 0 +-0.975 5.259 -1.756 0 0 0 0 0 0 0 +-0.994 5.267 -1.76 0 0 0 0 0 0 0 +-1.009 5.257 -1.758 0 0 0 0 0 0 0 +-1.016 5.248 -1.755 0 0 0 0 0 0 0 +-1.034 5.256 -1.759 0 0 0 0 0 0 0 +-1.05 5.249 -1.758 0 0 0 0 0 0 0 +-1.063 5.231 -1.752 0 0 0 0 0 0 0 +-1.085 5.251 -1.761 0 0 0 0 0 0 0 +-1.099 5.235 -1.756 0 0 0 0 0 0 0 +-1.114 5.226 -1.754 0 0 0 0 0 0 0 +-1.126 5.241 -1.76 0 0 0 0 0 0 0 +-1.141 5.23 -1.758 0 0 0 0 0 0 0 +-1.159 5.235 -1.761 0 0 0 0 0 0 0 +-1.176 5.235 -1.762 0 0 0 0 0 0 0 +-1.191 5.223 -1.759 0 0 0 0 0 0 0 +-1.208 5.221 -1.76 0 0 0 0 0 0 0 +-1.227 5.228 -1.764 0 0 0 0 0 0 0 +-1.242 5.218 -1.762 0 0 0 0 0 0 0 +-1.248 5.207 -1.758 0 0 0 0 0 0 0 +-1.268 5.22 -1.764 0 0 0 0 0 0 0 +-1.282 5.205 -1.76 0 0 0 0 0 0 0 +-1.297 5.195 -1.758 0 0 0 0 0 0 0 +-1.316 5.204 -1.763 0 0 0 0 0 0 0 +-1.331 5.194 -1.761 0 0 0 0 0 0 0 +-1.346 5.187 -1.76 0 0 0 0 0 0 0 +-1.358 5.197 -1.764 0 0 0 0 0 0 0 +-1.372 5.186 -1.762 0 0 0 0 0 0 0 +-1.389 5.183 -1.762 0 0 0 0 0 0 0 +-1.406 5.181 -1.763 0 0 0 0 0 0 0 +-1.423 5.178 -1.764 0 0 0 0 0 0 0 +-1.437 5.168 -1.762 0 0 0 0 0 0 0 +-1.453 5.162 -1.761 0 0 0 0 0 0 0 +-1.461 5.159 -1.761 0 0 0 0 0 0 0 +-1.479 5.158 -1.762 0 0 0 0 0 0 0 +-1.498 5.166 -1.767 0 0 0 0 0 0 0 +-1.51 5.147 -1.762 0 0 0 0 0 0 0 +-1.528 5.148 -1.764 0 0 0 0 0 0 0 +-1.544 5.143 -1.764 0 0 0 0 0 0 0 +-1.561 5.14 -1.764 0 0 0 0 0 0 0 +-1.569 5.136 -1.764 0 0 0 0 0 0 0 +-1.584 5.127 -1.762 0 0 0 0 0 0 0 +-1.6 5.124 -1.763 0 0 0 0 0 0 0 +-1.619 5.126 -1.766 0 0 0 0 0 0 0 +-1.636 5.124 -1.767 0 0 0 0 0 0 0 +-1.652 5.119 -1.767 0 0 0 0 0 0 0 +-1.667 5.112 -1.766 0 0 0 0 0 0 0 +-1.682 5.103 -1.765 0 0 0 0 0 0 0 +-1.688 5.095 -1.763 0 0 0 0 0 0 0 +-1.708 5.099 -1.766 0 0 0 0 0 0 0 +-1.724 5.094 -1.766 0 0 0 0 0 0 0 +-1.735 5.074 -1.761 0 0 0 0 0 0 0 +-1.755 5.081 -1.766 0 0 0 0 0 0 0 +-1.766 5.061 -1.76 0 0 0 0 0 0 0 +-1.787 5.072 -1.766 0 0 0 0 0 0 0 +-1.792 5.058 -1.762 0 0 0 0 0 0 0 +-1.808 5.054 -1.763 0 0 0 0 0 0 0 +-1.827 5.057 -1.766 0 0 0 0 0 0 0 +-1.84 5.043 -1.763 0 0 0 0 0 0 0 +-1.858 5.042 -1.765 0 0 0 0 0 0 0 +-1.872 5.033 -1.764 0 0 0 0 0 0 0 +-1.886 5.022 -1.762 0 0 0 0 0 0 0 +-1.899 5.031 -1.766 0 0 0 0 0 0 0 +-1.914 5.025 -1.766 0 0 0 0 0 0 0 +-1.927 5.01 -1.763 0 0 0 0 0 0 0 +-1.944 5.008 -1.764 0 0 0 0 0 0 0 +-1.96 5.003 -1.765 0 0 0 0 0 0 0 +-1.974 4.992 -1.763 0 0 0 0 0 0 0 +-1.994 4.998 -1.768 0 0 0 0 0 0 0 +-1.999 4.988 -1.765 0 0 0 0 0 0 0 +-2.012 4.974 -1.762 0 0 0 0 0 0 0 +-2.026 4.965 -1.761 0 0 0 0 0 0 0 +-2.04 4.953 -1.759 0 0 0 0 0 0 0 +-2.056 4.948 -1.76 0 0 0 0 0 0 0 +-2.076 4.952 -1.764 0 0 0 0 0 0 0 +-2.088 4.937 -1.76 0 0 0 0 0 0 0 +-2.107 4.939 -1.764 0 0 0 0 0 0 0 +-2.11 4.925 -1.76 0 0 0 0 0 0 0 +-2.132 4.933 -1.765 0 0 0 0 0 0 0 +-2.165 4.966 -1.78 0 0 0 0 0 0 0 +-2.196 4.993 -1.793 0 0 0 0 0 0 0 +-2.201 4.964 -1.785 0 0 0 0 0 0 0 +-2.206 4.933 -1.775 0 0 0 0 0 0 0 +-2.213 4.907 -1.768 0 0 0 0 0 0 0 +-2.221 4.904 -1.768 0 0 0 0 0 0 0 +-2.244 4.914 -1.775 0 0 0 0 0 0 0 +-2.254 4.895 -1.77 0 0 0 0 0 0 0 +-2.275 4.9 -1.775 0 0 0 0 0 0 0 +-2.283 4.877 -1.769 0 0 0 0 0 0 0 +-2.297 4.868 -1.768 0 0 0 0 0 0 0 +-2.316 4.868 -1.771 0 0 0 0 0 0 0 +-2.324 4.845 -1.765 0 0 0 0 0 0 0 +-2.33 4.838 -1.764 0 0 0 0 0 0 0 +-2.345 4.831 -1.764 0 0 0 0 0 0 0 +-2.358 4.818 -1.762 0 0 0 0 0 0 0 +-2.37 4.806 -1.76 0 0 0 0 0 0 0 +-2.39 4.808 -1.764 0 0 0 0 0 0 0 +-2.4 4.789 -1.759 0 0 0 0 0 0 0 +-2.416 4.785 -1.76 0 0 0 0 0 0 0 +-2.431 4.794 -1.766 0 0 0 0 0 0 0 +-2.444 4.783 -1.764 0 0 0 0 0 0 0 +-2.462 4.781 -1.766 0 0 0 0 0 0 0 +-2.474 4.768 -1.764 0 0 0 0 0 0 0 +-2.488 4.759 -1.764 0 0 0 0 0 0 0 +-2.504 4.752 -1.764 0 0 0 0 0 0 0 +-2.517 4.741 -1.763 0 0 0 0 0 0 0 +-2.525 4.739 -1.764 0 0 0 0 0 0 0 +-2.544 4.738 -1.766 0 0 0 0 0 0 0 +-2.556 4.725 -1.764 0 0 0 0 0 0 0 +-2.574 4.721 -1.766 0 0 0 0 0 0 0 +-2.587 4.71 -1.765 0 0 0 0 0 0 0 +-2.608 4.713 -1.769 0 0 0 0 0 0 0 +-2.619 4.699 -1.767 0 0 0 0 0 0 0 +-2.621 4.685 -1.763 0 0 0 0 0 0 0 +-2.635 4.676 -1.763 0 0 0 0 0 0 0 +-2.654 4.675 -1.766 0 0 0 0 0 0 0 +-2.668 4.665 -1.765 0 0 0 0 0 0 0 +-2.686 4.663 -1.768 0 0 0 0 0 0 0 +-2.702 4.656 -1.768 0 0 0 0 0 0 0 +-2.715 4.646 -1.768 0 0 0 0 0 0 0 +-2.731 4.639 -1.768 0 0 0 0 0 0 0 +-2.735 4.63 -1.766 0 0 0 0 0 0 0 +-2.752 4.624 -1.768 0 0 0 0 0 0 0 +-2.769 4.621 -1.769 0 0 0 0 0 0 0 +-2.784 4.612 -1.769 0 0 0 0 0 0 0 +-2.796 4.6 -1.768 0 0 0 0 0 0 0 +-2.812 4.593 -1.769 0 0 0 0 0 0 0 +-2.831 4.592 -1.772 0 0 0 0 0 0 0 +-2.834 4.581 -1.769 0 0 0 0 0 0 0 +-2.843 4.562 -1.766 0 0 0 0 0 0 0 +-2.864 4.565 -1.77 0 0 0 0 0 0 0 +-2.88 4.559 -1.771 0 0 0 0 0 0 0 +-2.893 4.547 -1.77 0 0 0 0 0 0 0 +-2.906 4.536 -1.769 0 0 0 0 0 0 0 +-2.922 4.53 -1.771 0 0 0 0 0 0 0 +-2.938 4.539 -1.777 0 0 0 0 0 0 0 +-2.947 4.521 -1.773 0 0 0 0 0 0 0 +-2.966 4.519 -1.776 0 0 0 0 0 0 0 +-2.968 4.491 -1.768 0 0 0 0 0 0 0 +-2.987 4.49 -1.771 0 0 0 0 0 0 0 +-3.012 4.496 -1.778 0 0 0 0 0 0 0 +-3.016 4.472 -1.772 0 0 0 0 0 0 0 +-3.027 4.474 -1.775 0 0 0 0 0 0 0 +-3.046 4.471 -1.777 0 0 0 0 0 0 0 +-3.048 4.444 -1.77 0 0 0 0 0 0 0 +-3.07 4.447 -1.775 0 0 0 0 0 0 0 +-3.086 4.439 -1.776 0 0 0 0 0 0 0 +-3.091 4.416 -1.771 0 0 0 0 0 0 0 +-3.11 4.414 -1.774 0 0 0 0 0 0 0 +-3.119 4.413 -1.775 0 0 0 0 0 0 0 +-3.131 4.4 -1.774 0 0 0 0 0 0 0 +-3.151 4.399 -1.778 0 0 0 0 0 0 0 +-3.163 4.386 -1.777 0 0 0 0 0 0 0 +-3.174 4.373 -1.775 0 0 0 0 0 0 0 +-3.187 4.362 -1.775 0 0 0 0 0 0 0 +-3.212 4.367 -1.781 0 0 0 0 0 0 0 +-3.213 4.34 -1.774 0 0 0 0 0 0 0 +-3.22 4.335 -1.774 0 0 0 0 0 0 0 +-3.24 4.334 -1.778 0 0 0 0 0 0 0 +-3.249 4.318 -1.775 0 0 0 0 0 0 0 +-3.265 4.31 -1.777 0 0 0 0 0 0 0 +-3.278 4.299 -1.776 0 0 0 0 0 0 0 +-3.297 4.296 -1.779 0 0 0 0 0 0 0 +-3.305 4.278 -1.776 0 0 0 0 0 0 0 +-3.31 4.271 -1.775 0 0 0 0 0 0 0 +-3.325 4.262 -1.776 0 0 0 0 0 0 0 +-3.342 4.256 -1.778 0 0 0 0 0 0 0 +-3.355 4.246 -1.778 0 0 0 0 0 0 0 +-3.37 4.237 -1.779 0 0 0 0 0 0 0 +-3.38 4.223 -1.777 0 0 0 0 0 0 0 +-3.398 4.218 -1.78 0 0 0 0 0 0 0 +-3.401 4.209 -1.778 0 0 0 0 0 0 0 +-3.416 4.199 -1.779 0 0 0 0 0 0 0 +-3.431 4.191 -1.78 0 0 0 0 0 0 0 +-3.446 4.182 -1.781 0 0 0 0 0 0 0 +-3.447 4.157 -1.774 0 0 0 0 0 0 0 +-3.457 4.143 -1.773 0 0 0 0 0 0 0 +-3.474 4.137 -1.775 0 0 0 0 0 0 0 +-3.492 4.144 -1.781 0 0 0 0 0 0 0 +-3.502 4.13 -1.779 0 0 0 0 0 0 0 +-3.52 4.125 -1.782 0 0 0 0 0 0 0 +-3.517 4.095 -1.773 0 0 0 0 0 0 0 +-3.545 4.101 -1.781 0 0 0 0 0 0 0 +-3.549 4.08 -1.777 0 0 0 0 0 0 0 +-3.575 4.085 -1.784 0 0 0 0 0 0 0 +-3.569 4.065 -1.777 0 0 0 0 0 0 0 +-3.585 4.056 -1.779 0 0 0 0 0 0 0 +-3.597 4.045 -1.779 0 0 0 0 0 0 0 +-3.621 4.046 -1.785 0 0 0 0 0 0 0 +-3.628 4.028 -1.781 0 0 0 0 0 0 0 +-3.634 4.01 -1.778 0 0 0 0 0 0 0 +-3.649 4.001 -1.779 0 0 0 0 0 0 0 +-3.66 3.988 -1.779 0 0 0 0 0 0 0 +-3.669 3.985 -1.78 0 0 0 0 0 0 0 +-3.682 3.974 -1.78 0 0 0 0 0 0 0 +-3.692 3.959 -1.779 0 0 0 0 0 0 0 +-3.707 3.95 -1.78 0 0 0 0 0 0 0 +-3.728 3.948 -1.785 0 0 0 0 0 0 0 +-3.74 3.937 -1.785 0 0 0 0 0 0 0 +-3.75 3.922 -1.783 0 0 0 0 0 0 0 +-3.76 3.92 -1.785 0 0 0 0 0 0 0 +-3.773 3.908 -1.785 0 0 0 0 0 0 0 +-3.791 3.903 -1.789 0 0 0 0 0 0 0 +-3.814 3.902 -1.794 0 0 0 0 0 0 0 +-3.828 3.891 -1.795 0 0 0 0 0 0 0 +-3.849 3.889 -1.799 0 0 0 0 0 0 0 +-3.864 3.879 -1.801 0 0 0 0 0 0 0 +-3.876 3.878 -1.803 0 0 0 0 0 0 0 +-3.88 3.858 -1.799 0 0 0 0 0 0 0 +-3.896 3.85 -1.801 0 0 0 0 0 0 0 +-3.895 3.825 -1.795 0 0 0 0 0 0 0 +-3.909 3.815 -1.796 0 0 0 0 0 0 0 +-3.936 3.817 -1.803 0 0 0 0 0 0 0 +-3.955 3.811 -1.807 0 0 0 0 0 0 0 +-3.98 3.823 -1.816 0 0 0 0 0 0 0 +-3.989 3.808 -1.814 0 0 0 0 0 0 0 +-3.997 3.792 -1.812 0 0 0 0 0 0 0 +-4.002 3.773 -1.809 0 0 0 0 0 0 0 +-4.008 3.755 -1.807 0 0 0 0 0 0 0 +-4.013 3.736 -1.803 0 0 0 0 0 0 0 +-4.012 3.712 -1.797 0 0 0 0 0 0 0 +-4.024 3.699 -1.797 0 0 0 0 0 0 0 +-4.037 3.699 -1.801 0 0 0 0 0 0 0 +-4.04 3.679 -1.797 0 0 0 0 0 0 0 +-4.045 3.66 -1.793 0 0 0 0 0 0 0 +-4.053 3.645 -1.792 0 0 0 0 0 0 0 +-4.069 3.636 -1.794 0 0 0 0 0 0 0 +-4.083 3.625 -1.795 0 0 0 0 0 0 0 +-4.092 3.61 -1.794 0 0 0 0 0 0 0 +-4.097 3.604 -1.794 0 0 0 0 0 0 0 +-4.093 3.577 -1.787 0 0 0 0 0 0 0 +-4.117 3.575 -1.793 0 0 0 0 0 0 0 +-4.125 3.56 -1.791 0 0 0 0 0 0 0 +-4.125 3.537 -1.786 0 0 0 0 0 0 0 +-4.14 3.528 -1.788 0 0 0 0 0 0 0 +-4.147 3.511 -1.786 0 0 0 0 0 0 0 +-4.153 3.505 -1.786 0 0 0 0 0 0 0 +-4.164 3.492 -1.786 0 0 0 0 0 0 0 +-4.173 3.477 -1.785 0 0 0 0 0 0 0 +-4.183 3.463 -1.785 0 0 0 0 0 0 0 +-4.192 3.449 -1.784 0 0 0 0 0 0 0 +-4.196 3.43 -1.781 0 0 0 0 0 0 0 +-4.211 3.42 -1.783 0 0 0 0 0 0 0 +-4.21 3.409 -1.78 0 0 0 0 0 0 0 +-4.224 3.398 -1.781 0 0 0 0 0 0 0 +-4.24 3.389 -1.784 0 0 0 0 0 0 0 +-4.248 3.373 -1.783 0 0 0 0 0 0 0 +-4.254 3.357 -1.781 0 0 0 0 0 0 0 +-4.262 3.341 -1.779 0 0 0 0 0 0 0 +-4.271 3.326 -1.779 0 0 0 0 0 0 0 +-4.273 3.317 -1.777 0 0 0 0 0 0 0 +-4.292 3.311 -1.781 0 0 0 0 0 0 0 +-4.291 3.288 -1.776 0 0 0 0 0 0 0 +-4.307 3.279 -1.779 0 0 0 0 0 0 0 +-4.32 3.268 -1.78 0 0 0 0 0 0 0 +-4.344 3.264 -1.786 0 0 0 0 0 0 0 +-4.342 3.242 -1.781 0 0 0 0 0 0 0 +-4.343 3.232 -1.779 0 0 0 0 0 0 0 +-4.359 3.222 -1.781 0 0 0 0 0 0 0 +-4.375 3.213 -1.784 0 0 0 0 0 0 0 +-4.384 3.198 -1.783 0 0 0 0 0 0 0 +-4.398 3.188 -1.785 0 0 0 0 0 0 0 +-4.405 3.172 -1.784 0 0 0 0 0 0 0 +-4.412 3.156 -1.783 0 0 0 0 0 0 0 +-4.424 3.143 -1.783 0 0 0 0 0 0 0 +-4.433 3.139 -1.785 0 0 0 0 0 0 0 +-4.438 3.122 -1.783 0 0 0 0 0 0 0 +-4.451 3.11 -1.785 0 0 0 0 0 0 0 +-4.452 3.09 -1.781 0 0 0 0 0 0 0 +-4.471 3.082 -1.785 0 0 0 0 0 0 0 +-4.483 3.07 -1.786 0 0 0 0 0 0 0 +-4.493 3.056 -1.786 0 0 0 0 0 0 0 +-4.498 3.049 -1.786 0 0 0 0 0 0 0 +-4.504 3.033 -1.785 0 0 0 0 0 0 0 +-4.52 3.023 -1.787 0 0 0 0 0 0 0 +-4.531 3.01 -1.788 0 0 0 0 0 0 0 +-4.534 2.991 -1.785 0 0 0 0 0 0 0 +-4.547 2.979 -1.787 0 0 0 0 0 0 0 +-4.555 2.964 -1.786 0 0 0 0 0 0 0 +-4.564 2.96 -1.788 0 0 0 0 0 0 0 +-4.568 2.942 -1.786 0 0 0 0 0 0 0 +-4.571 2.924 -1.783 0 0 0 0 0 0 0 +-4.592 2.916 -1.788 0 0 0 0 0 0 0 +-4.604 2.904 -1.789 0 0 0 0 0 0 0 +-4.61 2.888 -1.788 0 0 0 0 0 0 0 +-4.609 2.867 -1.784 0 0 0 0 0 0 0 +-4.612 2.859 -1.783 0 0 0 0 0 0 0 +-4.626 2.847 -1.785 0 0 0 0 0 0 0 +-4.638 2.835 -1.787 0 0 0 0 0 0 0 +-4.65 2.822 -1.788 0 0 0 0 0 0 0 +-4.653 2.804 -1.785 0 0 0 0 0 0 0 +-4.666 2.792 -1.787 0 0 0 0 0 0 0 +-4.669 2.773 -1.785 0 0 0 0 0 0 0 +-4.679 2.77 -1.787 0 0 0 0 0 0 0 +-4.69 2.756 -1.788 0 0 0 0 0 0 0 +-4.69 2.737 -1.785 0 0 0 0 0 0 0 +-4.713 2.73 -1.791 0 0 0 0 0 0 0 +-4.725 2.717 -1.792 0 0 0 0 0 0 0 +-4.724 2.697 -1.788 0 0 0 0 0 0 0 +-4.742 2.688 -1.792 0 0 0 0 0 0 0 +-4.752 2.674 -1.793 0 0 0 0 0 0 0 +-4.745 2.66 -1.788 0 0 0 0 0 0 0 +-4.745 2.64 -1.785 0 0 0 0 0 0 0 +-4.77 2.634 -1.791 0 0 0 0 0 0 0 +-4.772 2.616 -1.789 0 0 0 0 0 0 0 +-4.783 2.603 -1.79 0 0 0 0 0 0 0 +-4.793 2.588 -1.791 0 0 0 0 0 0 0 +-4.801 2.573 -1.791 0 0 0 0 0 0 0 +-4.812 2.569 -1.793 0 0 0 0 0 0 0 +-4.803 2.545 -1.787 0 0 0 0 0 0 0 +-4.823 2.536 -1.791 0 0 0 0 0 0 0 +-4.832 2.522 -1.792 0 0 0 0 0 0 0 +-4.839 2.506 -1.791 0 0 0 0 0 0 0 +-4.841 2.488 -1.789 0 0 0 0 0 0 0 +-4.847 2.472 -1.789 0 0 0 0 0 0 0 +-4.858 2.468 -1.791 0 0 0 0 0 0 0 +-4.866 2.453 -1.791 0 0 0 0 0 0 0 +-4.867 2.434 -1.789 0 0 0 0 0 0 0 +-4.888 2.425 -1.794 0 0 0 0 0 0 0 +-4.892 2.408 -1.793 0 0 0 0 0 0 0 +-4.896 2.391 -1.791 0 0 0 0 0 0 0 +-4.909 2.378 -1.793 0 0 0 0 0 0 0 +-4.909 2.369 -1.792 0 0 0 0 0 0 0 +-4.923 2.357 -1.795 0 0 0 0 0 0 0 +-4.929 2.341 -1.794 0 0 0 0 0 0 0 +-4.942 2.328 -1.796 0 0 0 0 0 0 0 +-4.942 2.309 -1.793 0 0 0 0 0 0 0 +-4.953 2.295 -1.795 0 0 0 0 0 0 0 +-4.955 2.277 -1.793 0 0 0 0 0 0 0 +-4.958 2.269 -1.793 0 0 0 0 0 0 0 +-4.964 2.253 -1.792 0 0 0 0 0 0 0 +-4.979 2.241 -1.795 0 0 0 0 0 0 0 +-4.978 2.222 -1.792 0 0 0 0 0 0 0 +-4.981 2.204 -1.791 0 0 0 0 0 0 0 +-5.004 2.196 -1.797 0 0 0 0 0 0 0 +-4.997 2.174 -1.791 0 0 0 0 0 0 0 +-5.005 2.168 -1.793 0 0 0 0 0 0 0 +-5.007 2.15 -1.791 0 0 0 0 0 0 0 +-5.007 2.132 -1.789 0 0 0 0 0 0 0 +-5.031 2.123 -1.795 0 0 0 0 0 0 0 +-5.032 2.105 -1.793 0 0 0 0 0 0 0 +-5.033 2.087 -1.791 0 0 0 0 0 0 0 +-5.049 2.075 -1.795 0 0 0 0 0 0 0 +-5.061 2.071 -1.798 0 0 0 0 0 0 0 +-5.05 2.048 -1.791 0 0 0 0 0 0 0 +-5.063 2.035 -1.794 0 0 0 0 0 0 0 +-5.075 2.021 -1.796 0 0 0 0 0 0 0 +-5.079 2.004 -1.795 0 0 0 0 0 0 0 +-5.087 1.989 -1.796 0 0 0 0 0 0 0 +-5.094 1.973 -1.796 0 0 0 0 0 0 0 +-5.093 1.963 -1.795 0 0 0 0 0 0 0 +-5.103 1.949 -1.796 0 0 0 0 0 0 0 +-5.105 1.931 -1.795 0 0 0 0 0 0 0 +-5.119 1.918 -1.797 0 0 0 0 0 0 0 +-5.137 1.906 -1.802 0 0 0 0 0 0 0 +-5.118 1.881 -1.793 0 0 0 0 0 0 0 +-5.143 1.872 -1.8 0 0 0 0 0 0 0 +-5.177 1.875 -1.811 0 0 0 0 0 0 0 +-5.337 1.426 -1.818 0 0 0 0 0 0 0 +-5.285 1.403 -1.798 0 0 0 0 0 0 0 +-5.287 1.386 -1.797 0 0 0 0 0 0 0 +-5.304 1.373 -1.802 0 0 0 0 0 0 0 +-5.301 1.354 -1.799 0 0 0 0 0 0 0 +-5.317 1.34 -1.803 0 0 0 0 0 0 0 +-5.315 1.322 -1.801 0 0 0 0 0 0 0 +-5.321 1.306 -1.802 0 0 0 0 0 0 0 +-5.327 1.299 -1.803 0 0 0 0 0 0 0 +-5.329 1.281 -1.803 0 0 0 0 0 0 0 +-5.344 1.267 -1.807 0 0 0 0 0 0 0 +-5.346 1.25 -1.806 0 0 0 0 0 0 0 +-5.343 1.232 -1.803 0 0 0 0 0 0 0 +-5.365 1.219 -1.81 0 0 0 0 0 0 0 +-5.349 1.198 -1.803 0 0 0 0 0 0 0 +-5.362 1.192 -1.807 0 0 0 0 0 0 0 +-5.389 1.18 -1.815 0 0 0 0 0 0 0 +-5.373 1.159 -1.808 0 0 0 0 0 0 0 +-5.4 1.147 -1.816 0 0 0 0 0 0 0 +-5.391 1.127 -1.812 0 0 0 0 0 0 0 +-5.402 1.112 -1.814 0 0 0 0 0 0 0 +-5.444 1.102 -1.828 0 0 0 0 0 0 0 +-5.429 1.091 -1.822 0 0 0 0 0 0 0 +-5.449 1.077 -1.828 0 0 0 0 0 0 0 +-15.354 -1.42 -5.287 0 0 0 0 0 0 0 +-5.506 -1.321 -1.866 0 0 0 0 0 0 0 +-5.489 -1.335 -1.861 0 0 0 0 0 0 0 +-5.479 -1.369 -1.861 0 0 0 0 0 0 0 +-5.473 -1.376 -1.859 0 0 0 0 0 0 0 +-5.463 -1.392 -1.857 0 0 0 0 0 0 0 +-5.437 -1.404 -1.85 0 0 0 0 0 0 0 +-5.438 -1.422 -1.852 0 0 0 0 0 0 0 +-5.428 -1.438 -1.85 0 0 0 0 0 0 0 +-5.425 -1.455 -1.85 0 0 0 0 0 0 0 +-5.413 -1.47 -1.848 0 0 0 0 0 0 0 +-5.406 -1.477 -1.846 0 0 0 0 0 0 0 +-5.386 -1.49 -1.84 0 0 0 0 0 0 0 +-5.383 -1.508 -1.841 0 0 0 0 0 0 0 +-5.373 -1.523 -1.839 0 0 0 0 0 0 0 +-5.378 -1.543 -1.842 0 0 0 0 0 0 0 +-5.349 -1.552 -1.834 0 0 0 0 0 0 0 +-5.359 -1.574 -1.839 0 0 0 0 0 0 0 +-5.372 -1.587 -1.845 0 0 0 0 0 0 0 +-5.371 -1.605 -1.846 0 0 0 0 0 0 0 +-5.35 -1.617 -1.84 0 0 0 0 0 0 0 +-5.334 -1.63 -1.836 0 0 0 0 0 0 0 +-5.329 -1.647 -1.836 0 0 0 0 0 0 0 +-5.32 -1.662 -1.835 0 0 0 0 0 0 0 +-5.313 -1.679 -1.834 0 0 0 0 0 0 0 +-5.316 -1.689 -1.836 0 0 0 0 0 0 0 +-5.353 -1.719 -1.852 0 0 0 0 0 0 0 +-5.192 -2.139 -1.85 0 0 0 0 0 0 0 +-5.176 -2.142 -1.845 0 0 0 0 0 0 0 +-5.178 -2.162 -1.848 0 0 0 0 0 0 0 +-5.166 -2.176 -1.846 0 0 0 0 0 0 0 +-5.142 -2.185 -1.84 0 0 0 0 0 0 0 +-5.126 -2.198 -1.836 0 0 0 0 0 0 0 +-5.123 -2.215 -1.838 0 0 0 0 0 0 0 +-5.109 -2.228 -1.835 0 0 0 0 0 0 0 +-5.116 -2.241 -1.839 0 0 0 0 0 0 0 +-5.102 -2.254 -1.836 0 0 0 0 0 0 0 +-5.089 -2.267 -1.834 0 0 0 0 0 0 0 +-5.086 -2.285 -1.836 0 0 0 0 0 0 0 +-5.08 -2.302 -1.836 0 0 0 0 0 0 0 +-5.073 -2.318 -1.836 0 0 0 0 0 0 0 +-5.074 -2.338 -1.84 0 0 0 0 0 0 0 +-5.062 -2.342 -1.836 0 0 0 0 0 0 0 +-5.07 -2.365 -1.842 0 0 0 0 0 0 0 +-5.054 -2.377 -1.839 0 0 0 0 0 0 0 +-5.048 -2.393 -1.84 0 0 0 0 0 0 0 +-5.027 -2.403 -1.834 0 0 0 0 0 0 0 +-5.026 -2.422 -1.837 0 0 0 0 0 0 0 +-5.029 -2.442 -1.841 0 0 0 0 0 0 0 +-5.017 -2.446 -1.838 0 0 0 0 0 0 0 +-5.014 -2.464 -1.84 0 0 0 0 0 0 0 +-5.018 -2.486 -1.844 0 0 0 0 0 0 0 +-5.01 -2.502 -1.844 0 0 0 0 0 0 0 +-5.007 -2.52 -1.846 0 0 0 0 0 0 0 +-4.993 -2.532 -1.844 0 0 0 0 0 0 0 +-4.998 -2.555 -1.849 0 0 0 0 0 0 0 +-5.007 -2.57 -1.854 0 0 0 0 0 0 0 +-4.934 -2.551 -1.828 0 0 0 0 0 0 0 +-4.928 -2.568 -1.829 0 0 0 0 0 0 0 +-4.928 -2.588 -1.832 0 0 0 0 0 0 0 +-4.92 -2.603 -1.832 0 0 0 0 0 0 0 +-4.912 -2.619 -1.832 0 0 0 0 0 0 0 +-4.898 -2.631 -1.83 0 0 0 0 0 0 0 +-4.895 -2.649 -1.832 0 0 0 0 0 0 0 +-4.884 -2.653 -1.83 0 0 0 0 0 0 0 +-4.863 -2.661 -1.824 0 0 0 0 0 0 0 +-4.846 -2.672 -1.821 0 0 0 0 0 0 0 +-4.844 -2.691 -1.824 0 0 0 0 0 0 0 +-4.834 -2.705 -1.823 0 0 0 0 0 0 0 +-4.827 -2.721 -1.824 0 0 0 0 0 0 0 +-4.807 -2.73 -1.819 0 0 0 0 0 0 0 +-4.808 -2.74 -1.821 0 0 0 0 0 0 0 +-4.796 -2.754 -1.82 0 0 0 0 0 0 0 +-4.797 -2.774 -1.824 0 0 0 0 0 0 0 +-4.769 -2.778 -1.816 0 0 0 0 0 0 0 +-4.765 -2.796 -1.818 0 0 0 0 0 0 0 +-4.748 -2.806 -1.814 0 0 0 0 0 0 0 +-4.75 -2.828 -1.819 0 0 0 0 0 0 0 +-4.736 -2.829 -1.815 0 0 0 0 0 0 0 +-4.724 -2.842 -1.814 0 0 0 0 0 0 0 +-4.717 -2.858 -1.814 0 0 0 0 0 0 0 +-4.711 -2.875 -1.816 0 0 0 0 0 0 0 +-4.697 -2.886 -1.814 0 0 0 0 0 0 0 +-4.699 -2.908 -1.818 0 0 0 0 0 0 0 +-4.693 -2.925 -1.82 0 0 0 0 0 0 0 +-4.673 -2.922 -1.813 0 0 0 0 0 0 0 +-4.659 -2.934 -1.811 0 0 0 0 0 0 0 +-4.653 -2.951 -1.812 0 0 0 0 0 0 0 +-4.643 -2.965 -1.812 0 0 0 0 0 0 0 +-4.644 -2.986 -1.816 0 0 0 0 0 0 0 +-4.636 -3.002 -1.817 0 0 0 0 0 0 0 +-4.598 -2.997 -1.805 0 0 0 0 0 0 0 +-4.623 -3.024 -1.818 0 0 0 0 0 0 0 +-4.598 -3.028 -1.811 0 0 0 0 0 0 0 +-4.593 -3.046 -1.813 0 0 0 0 0 0 0 +-4.585 -3.061 -1.814 0 0 0 0 0 0 0 +-4.565 -3.068 -1.809 0 0 0 0 0 0 0 +-4.569 -3.092 -1.815 0 0 0 0 0 0 0 +-4.559 -3.107 -1.815 0 0 0 0 0 0 0 +-4.542 -3.105 -1.81 0 0 0 0 0 0 0 +-4.534 -3.121 -1.811 0 0 0 0 0 0 0 +-4.539 -3.146 -1.817 0 0 0 0 0 0 0 +-4.511 -3.147 -1.809 0 0 0 0 0 0 0 +-4.512 -3.169 -1.814 0 0 0 0 0 0 0 +-4.505 -3.185 -1.815 0 0 0 0 0 0 0 +-4.476 -3.186 -1.807 0 0 0 0 0 0 0 +-4.474 -3.195 -1.809 0 0 0 0 0 0 0 +-4.474 -3.216 -1.812 0 0 0 0 0 0 0 +-4.457 -3.225 -1.81 0 0 0 0 0 0 0 +-4.443 -3.236 -1.808 0 0 0 0 0 0 0 +-4.443 -3.258 -1.812 0 0 0 0 0 0 0 +-4.427 -3.267 -1.81 0 0 0 0 0 0 0 +-4.416 -3.281 -1.81 0 0 0 0 0 0 0 +-4.417 -3.303 -1.814 0 0 0 0 0 0 0 +-4.401 -3.302 -1.81 0 0 0 0 0 0 0 +-4.382 -3.309 -1.806 0 0 0 0 0 0 0 +-4.388 -3.335 -1.813 0 0 0 0 0 0 0 +-4.359 -3.335 -1.805 0 0 0 0 0 0 0 +-4.356 -3.355 -1.809 0 0 0 0 0 0 0 +-4.347 -3.37 -1.809 0 0 0 0 0 0 0 +-4.332 -3.38 -1.807 0 0 0 0 0 0 0 +-4.328 -3.388 -1.808 0 0 0 0 0 0 0 +-4.319 -3.402 -1.809 0 0 0 0 0 0 0 +-4.307 -3.415 -1.808 0 0 0 0 0 0 0 +-4.302 -3.433 -1.811 0 0 0 0 0 0 0 +-4.294 -3.449 -1.812 0 0 0 0 0 0 0 +-4.271 -3.453 -1.807 0 0 0 0 0 0 0 +-4.266 -3.471 -1.809 0 0 0 0 0 0 0 +-4.26 -3.477 -1.809 0 0 0 0 0 0 0 +-4.25 -3.491 -1.809 0 0 0 0 0 0 0 +-4.23 -3.497 -1.805 0 0 0 0 0 0 0 +-4.221 -3.512 -1.806 0 0 0 0 0 0 0 +-4.213 -3.527 -1.807 0 0 0 0 0 0 0 +-4.199 -3.538 -1.806 0 0 0 0 0 0 0 +-4.199 -3.561 -1.811 0 0 0 0 0 0 0 +-4.189 -3.564 -1.809 0 0 0 0 0 0 0 +-4.169 -3.57 -1.805 0 0 0 0 0 0 0 +-4.159 -3.584 -1.806 0 0 0 0 0 0 0 +-4.145 -3.595 -1.805 0 0 0 0 0 0 0 +-4.143 -3.615 -1.809 0 0 0 0 0 0 0 +-4.127 -3.624 -1.807 0 0 0 0 0 0 0 +-4.121 -3.642 -1.809 0 0 0 0 0 0 0 +-4.117 -3.65 -1.81 0 0 0 0 0 0 0 +-4.103 -3.66 -1.809 0 0 0 0 0 0 0 +-4.091 -3.673 -1.809 0 0 0 0 0 0 0 +-4.067 -3.675 -1.803 0 0 0 0 0 0 0 +-4.058 -3.69 -1.804 0 0 0 0 0 0 0 +-4.058 -3.713 -1.809 0 0 0 0 0 0 0 +-4.046 -3.726 -1.809 0 0 0 0 0 0 0 +-4.037 -3.729 -1.808 0 0 0 0 0 0 0 +-4.02 -3.737 -1.805 0 0 0 0 0 0 0 +-4.012 -3.753 -1.807 0 0 0 0 0 0 0 +-4.003 -3.769 -1.809 0 0 0 0 0 0 0 +-3.982 -3.772 -1.804 0 0 0 0 0 0 0 +-3.971 -3.786 -1.805 0 0 0 0 0 0 0 +-3.955 -3.794 -1.803 0 0 0 0 0 0 0 +-3.956 -3.807 -1.806 0 0 0 0 0 0 0 +-3.946 -3.821 -1.807 0 0 0 0 0 0 0 +-3.932 -3.832 -1.806 0 0 0 0 0 0 0 +-3.919 -3.843 -1.805 0 0 0 0 0 0 0 +-3.907 -3.855 -1.805 0 0 0 0 0 0 0 +-3.893 -3.866 -1.805 0 0 0 0 0 0 0 +-3.885 -3.882 -1.807 0 0 0 0 0 0 0 +-3.872 -3.882 -1.803 0 0 0 0 0 0 0 +-3.863 -3.897 -1.805 0 0 0 0 0 0 0 +-3.854 -3.913 -1.807 0 0 0 0 0 0 0 +-3.842 -3.925 -1.807 0 0 0 0 0 0 0 +-3.823 -3.93 -1.803 0 0 0 0 0 0 0 +-3.82 -3.952 -1.808 0 0 0 0 0 0 0 +-3.788 -3.943 -1.798 0 0 0 0 0 0 0 +-3.791 -3.959 -1.803 0 0 0 0 0 0 0 +-3.782 -3.975 -1.805 0 0 0 0 0 0 0 +-3.771 -3.988 -1.805 0 0 0 0 0 0 0 +-3.763 -4.004 -1.807 0 0 0 0 0 0 0 +-3.745 -4.01 -1.805 0 0 0 0 0 0 0 +-3.727 -4.016 -1.802 0 0 0 0 0 0 0 +-3.716 -4.029 -1.803 0 0 0 0 0 0 0 +-3.721 -4.048 -1.809 0 0 0 0 0 0 0 +-3.708 -4.06 -1.809 0 0 0 0 0 0 0 +-3.69 -4.066 -1.806 0 0 0 0 0 0 0 +-3.684 -4.084 -1.809 0 0 0 0 0 0 0 +-3.67 -4.094 -1.809 0 0 0 0 0 0 0 +-3.664 -4.114 -1.812 0 0 0 0 0 0 0 +-3.653 -4.127 -1.813 0 0 0 0 0 0 0 +-3.651 -4.139 -1.816 0 0 0 0 0 0 0 +-3.641 -4.153 -1.817 0 0 0 0 0 0 0 +-3.625 -4.161 -1.816 0 0 0 0 0 0 0 +-3.606 -4.166 -1.812 0 0 0 0 0 0 0 +-3.61 -4.197 -1.822 0 0 0 0 0 0 0 +-3.593 -4.204 -1.82 0 0 0 0 0 0 0 +-3.585 -4.221 -1.822 0 0 0 0 0 0 0 +-3.577 -4.225 -1.822 0 0 0 0 0 0 0 +-3.567 -4.241 -1.824 0 0 0 0 0 0 0 +-3.565 -4.265 -1.83 0 0 0 0 0 0 0 +-3.549 -4.273 -1.828 0 0 0 0 0 0 0 +-3.544 -4.295 -1.833 0 0 0 0 0 0 0 +-3.502 -4.271 -1.817 0 0 0 0 0 0 0 +-3.483 -4.276 -1.814 0 0 0 0 0 0 0 +-3.464 -4.279 -1.811 0 0 0 0 0 0 0 +-3.457 -4.285 -1.811 0 0 0 0 0 0 0 +-3.443 -4.294 -1.811 0 0 0 0 0 0 0 +-3.428 -4.303 -1.81 0 0 0 0 0 0 0 +-3.413 -4.313 -1.809 0 0 0 0 0 0 0 +-3.394 -4.316 -1.806 0 0 0 0 0 0 0 +-3.379 -4.325 -1.805 0 0 0 0 0 0 0 +-3.368 -4.339 -1.807 0 0 0 0 0 0 0 +-3.356 -4.338 -1.804 0 0 0 0 0 0 0 +-3.346 -4.353 -1.806 0 0 0 0 0 0 0 +-3.334 -4.365 -1.807 0 0 0 0 0 0 0 +-3.311 -4.363 -1.801 0 0 0 0 0 0 0 +-3.302 -4.38 -1.804 0 0 0 0 0 0 0 +-3.292 -4.396 -1.807 0 0 0 0 0 0 0 +-3.283 -4.413 -1.809 0 0 0 0 0 0 0 +-3.266 -4.404 -1.803 0 0 0 0 0 0 0 +-3.247 -4.407 -1.8 0 0 0 0 0 0 0 +-3.238 -4.425 -1.803 0 0 0 0 0 0 0 +-3.216 -4.422 -1.798 0 0 0 0 0 0 0 +-3.205 -4.437 -1.8 0 0 0 0 0 0 0 +-3.2 -4.46 -1.805 0 0 0 0 0 0 0 +-3.18 -4.462 -1.802 0 0 0 0 0 0 0 +-3.168 -4.459 -1.799 0 0 0 0 0 0 0 +-3.165 -4.485 -1.805 0 0 0 0 0 0 0 +-3.142 -4.482 -1.8 0 0 0 0 0 0 0 +-3.131 -4.497 -1.802 0 0 0 0 0 0 0 +-3.124 -4.517 -1.807 0 0 0 0 0 0 0 +-3.101 -4.513 -1.801 0 0 0 0 0 0 0 +-3.081 -4.515 -1.797 0 0 0 0 0 0 0 +-3.084 -4.534 -1.803 0 0 0 0 0 0 0 +-3.063 -4.534 -1.799 0 0 0 0 0 0 0 +-3.048 -4.542 -1.799 0 0 0 0 0 0 0 +-3.042 -4.564 -1.804 0 0 0 0 0 0 0 +-3.024 -4.569 -1.802 0 0 0 0 0 0 0 +-3.005 -4.571 -1.799 0 0 0 0 0 0 0 +-2.997 -4.59 -1.803 0 0 0 0 0 0 0 +-2.986 -4.589 -1.801 0 0 0 0 0 0 0 +-2.967 -4.591 -1.797 0 0 0 0 0 0 0 +-2.957 -4.608 -1.801 0 0 0 0 0 0 0 +-2.938 -4.609 -1.797 0 0 0 0 0 0 0 +-2.924 -4.62 -1.798 0 0 0 0 0 0 0 +-2.915 -4.637 -1.801 0 0 0 0 0 0 0 +-2.894 -4.637 -1.797 0 0 0 0 0 0 0 +-2.89 -4.646 -1.799 0 0 0 0 0 0 0 +-2.865 -4.639 -1.793 0 0 0 0 0 0 0 +-2.858 -4.66 -1.797 0 0 0 0 0 0 0 +-2.846 -4.673 -1.799 0 0 0 0 0 0 0 +-2.835 -4.689 -1.802 0 0 0 0 0 0 0 +-2.811 -4.681 -1.795 0 0 0 0 0 0 0 +-2.801 -4.698 -1.799 0 0 0 0 0 0 0 +-2.791 -4.698 -1.797 0 0 0 0 0 0 0 +-2.78 -4.713 -1.799 0 0 0 0 0 0 0 +-2.763 -4.719 -1.798 0 0 0 0 0 0 0 +-2.746 -4.724 -1.797 0 0 0 0 0 0 0 +-2.732 -4.734 -1.797 0 0 0 0 0 0 0 +-2.72 -4.748 -1.799 0 0 0 0 0 0 0 +-2.703 -4.753 -1.798 0 0 0 0 0 0 0 +-2.697 -4.759 -1.799 0 0 0 0 0 0 0 +-2.681 -4.766 -1.798 0 0 0 0 0 0 0 +-2.661 -4.766 -1.795 0 0 0 0 0 0 0 +-2.649 -4.779 -1.797 0 0 0 0 0 0 0 +-2.632 -4.784 -1.795 0 0 0 0 0 0 0 +-2.621 -4.799 -1.798 0 0 0 0 0 0 0 +-2.603 -4.802 -1.796 0 0 0 0 0 0 0 +-2.588 -4.791 -1.79 0 0 0 0 0 0 0 +-2.574 -4.803 -1.791 0 0 0 0 0 0 0 +-2.559 -4.811 -1.791 0 0 0 0 0 0 0 +-2.541 -4.814 -1.789 0 0 0 0 0 0 0 +-2.531 -4.83 -1.793 0 0 0 0 0 0 0 +-2.509 -4.826 -1.788 0 0 0 0 0 0 0 +-2.504 -4.853 -1.795 0 0 0 0 0 0 0 +-2.495 -4.855 -1.795 0 0 0 0 0 0 0 +-2.477 -4.858 -1.793 0 0 0 0 0 0 0 +-2.459 -4.859 -1.79 0 0 0 0 0 0 0 +-2.447 -4.873 -1.793 0 0 0 0 0 0 0 +-2.433 -4.884 -1.794 0 0 0 0 0 0 0 +-2.414 -4.885 -1.791 0 0 0 0 0 0 0 +-2.402 -4.899 -1.794 0 0 0 0 0 0 0 +-2.396 -4.905 -1.795 0 0 0 0 0 0 0 +-2.383 -4.919 -1.797 0 0 0 0 0 0 0 +-2.365 -4.92 -1.795 0 0 0 0 0 0 0 +-2.352 -4.932 -1.797 0 0 0 0 0 0 0 +-2.329 -4.924 -1.791 0 0 0 0 0 0 0 +-2.322 -4.95 -1.798 0 0 0 0 0 0 0 +-2.308 -4.961 -1.799 0 0 0 0 0 0 0 +-2.289 -4.96 -1.796 0 0 0 0 0 0 0 +-2.289 -4.98 -1.803 0 0 0 0 0 0 0 +-2.265 -4.97 -1.796 0 0 0 0 0 0 0 +-2.255 -4.99 -1.801 0 0 0 0 0 0 0 +-2.248 -5.016 -1.808 0 0 0 0 0 0 0 +-2.246 -5.055 -1.82 0 0 0 0 0 0 0 +-2.24 -5.083 -1.828 0 0 0 0 0 0 0 +-2.222 -5.087 -1.827 0 0 0 0 0 0 0 +-2.199 -5.056 -1.814 0 0 0 0 0 0 0 +-2.177 -5.049 -1.809 0 0 0 0 0 0 0 +-2.148 -5.024 -1.797 0 0 0 0 0 0 0 +-2.13 -5.026 -1.795 0 0 0 0 0 0 0 +-2.115 -5.034 -1.795 0 0 0 0 0 0 0 +-2.099 -5.039 -1.795 0 0 0 0 0 0 0 +-2.086 -5.032 -1.791 0 0 0 0 0 0 0 +-2.059 -5.009 -1.779 0 0 0 0 0 0 0 +-2.037 -5.001 -1.774 0 0 0 0 0 0 0 +-2.024 -5.014 -1.777 0 0 0 0 0 0 0 +-2 -5 -1.769 0 0 0 0 0 0 0 +-1.985 -5.006 -1.769 0 0 0 0 0 0 0 +-1.969 -5.012 -1.769 0 0 0 0 0 0 0 +-1.953 -5.018 -1.769 0 0 0 0 0 0 0 +-1.942 -5.012 -1.766 0 0 0 0 0 0 0 +-1.924 -5.013 -1.764 0 0 0 0 0 0 0 +-1.906 -5.014 -1.762 0 0 0 0 0 0 0 +-1.898 -5.039 -1.769 0 0 0 0 0 0 0 +-1.877 -5.033 -1.764 0 0 0 0 0 0 0 +-1.865 -5.049 -1.768 0 0 0 0 0 0 0 +-1.849 -5.054 -1.768 0 0 0 0 0 0 0 +-1.841 -5.056 -1.768 0 0 0 0 0 0 0 +-1.82 -5.048 -1.762 0 0 0 0 0 0 0 +-1.803 -5.05 -1.761 0 0 0 0 0 0 0 +-1.786 -5.054 -1.76 0 0 0 0 0 0 0 +-1.772 -5.065 -1.762 0 0 0 0 0 0 0 +-1.754 -5.063 -1.76 0 0 0 0 0 0 0 +-1.738 -5.069 -1.76 0 0 0 0 0 0 0 +-1.728 -5.064 -1.757 0 0 0 0 0 0 0 +-1.711 -5.068 -1.756 0 0 0 0 0 0 0 +-1.696 -5.077 -1.758 0 0 0 0 0 0 0 +-1.68 -5.082 -1.758 0 0 0 0 0 0 0 +-1.663 -5.084 -1.756 0 0 0 0 0 0 0 +-1.647 -5.087 -1.756 0 0 0 0 0 0 0 +-1.629 -5.087 -1.754 0 0 0 0 0 0 0 +-1.623 -5.097 -1.756 0 0 0 0 0 0 0 +-1.607 -5.102 -1.756 0 0 0 0 0 0 0 +-1.589 -5.098 -1.753 0 0 0 0 0 0 0 +-1.575 -5.112 -1.756 0 0 0 0 0 0 0 +-1.557 -5.11 -1.754 0 0 0 0 0 0 0 +-1.543 -5.122 -1.756 0 0 0 0 0 0 0 +-1.531 -5.139 -1.761 0 0 0 0 0 0 0 +-1.517 -5.123 -1.754 0 0 0 0 0 0 0 +-1.499 -5.121 -1.752 0 0 0 0 0 0 0 +-1.483 -5.126 -1.752 0 0 0 0 0 0 0 +-1.468 -5.134 -1.753 0 0 0 0 0 0 0 +-1.451 -5.137 -1.752 0 0 0 0 0 0 0 +-1.436 -5.143 -1.753 0 0 0 0 0 0 0 +-1.416 -5.133 -1.748 0 0 0 0 0 0 0 +-1.408 -5.137 -1.748 0 0 0 0 0 0 0 +-1.396 -5.156 -1.754 0 0 0 0 0 0 0 +-1.375 -5.144 -1.748 0 0 0 0 0 0 0 +-1.363 -5.163 -1.753 0 0 0 0 0 0 0 +-1.346 -5.163 -1.752 0 0 0 0 0 0 0 +-1.326 -5.153 -1.746 0 0 0 0 0 0 0 +-1.31 -5.157 -1.746 0 0 0 0 0 0 0 +-1.302 -5.161 -1.747 0 0 0 0 0 0 0 +-1.286 -5.167 -1.748 0 0 0 0 0 0 0 +-1.27 -5.171 -1.748 0 0 0 0 0 0 0 +-1.252 -5.169 -1.746 0 0 0 0 0 0 0 +-1.235 -5.168 -1.744 0 0 0 0 0 0 0 +-1.218 -5.168 -1.742 0 0 0 0 0 0 0 +-1.202 -5.175 -1.744 0 0 0 0 0 0 0 +-1.196 -5.185 -1.746 0 0 0 0 0 0 0 +-1.178 -5.183 -1.744 0 0 0 0 0 0 0 +-1.162 -5.188 -1.745 0 0 0 0 0 0 0 +-1.147 -5.197 -1.747 0 0 0 0 0 0 0 +-1.13 -5.196 -1.745 0 0 0 0 0 0 0 +-1.113 -5.197 -1.744 0 0 0 0 0 0 0 +-1.098 -5.204 -1.746 0 0 0 0 0 0 0 +-1.088 -5.201 -1.744 0 0 0 0 0 0 0 +-1.07 -5.197 -1.741 0 0 0 0 0 0 0 +-1.055 -5.205 -1.743 0 0 0 0 0 0 0 +-1.04 -5.214 -1.745 0 0 0 0 0 0 0 +-1.023 -5.214 -1.744 0 0 0 0 0 0 0 +-1.004 -5.204 -1.739 0 0 0 0 0 0 0 +-0.99 -5.222 -1.744 0 0 0 0 0 0 0 +-0.983 -5.225 -1.745 0 0 0 0 0 0 0 +-0.965 -5.221 -1.742 0 0 0 0 0 0 0 +-0.946 -5.209 -1.737 0 0 0 0 0 0 0 +-0.928 -5.203 -1.734 0 0 0 0 0 0 0 +-0.912 -5.208 -1.734 0 0 0 0 0 0 0 +-0.895 -5.207 -1.733 0 0 0 0 0 0 0 +-0.88 -5.217 -1.736 0 0 0 0 0 0 0 +-0.873 -5.228 -1.739 0 0 0 0 0 0 0 +-0.855 -5.221 -1.736 0 0 0 0 0 0 0 +-0.839 -5.226 -1.736 0 0 0 0 0 0 0 +-0.823 -5.23 -1.737 0 0 0 0 0 0 0 +-0.809 -5.249 -1.743 0 0 0 0 0 0 0 +-0.794 -5.265 -1.748 0 0 0 0 0 0 0 +-0.777 -5.266 -1.747 0 0 0 0 0 0 0 +-0.769 -5.263 -1.746 0 0 0 0 0 0 0 +-0.752 -5.265 -1.746 0 0 0 0 0 0 0 +-0.736 -5.273 -1.748 0 0 0 0 0 0 0 +-0.719 -5.274 -1.747 0 0 0 0 0 0 0 +-0.702 -5.27 -1.745 0 0 0 0 0 0 0 +-0.686 -5.274 -1.746 0 0 0 0 0 0 0 +-0.669 -5.273 -1.744 0 0 0 0 0 0 0 +-0.661 -5.281 -1.747 0 0 0 0 0 0 0 +-0.645 -5.282 -1.746 0 0 0 0 0 0 0 +-0.628 -5.287 -1.748 0 0 0 0 0 0 0 +-0.612 -5.287 -1.747 0 0 0 0 0 0 0 +-0.596 -5.295 -1.749 0 0 0 0 0 0 0 +-0.577 -5.28 -1.743 0 0 0 0 0 0 0 +-0.561 -5.283 -1.744 0 0 0 0 0 0 0 +-0.553 -5.284 -1.744 0 0 0 0 0 0 0 +-0.535 -5.28 -1.742 0 0 0 0 0 0 0 +-0.52 -5.293 -1.746 0 0 0 0 0 0 0 +-0.505 -5.314 -1.752 0 0 0 0 0 0 0 +-0.488 -5.308 -1.75 0 0 0 0 0 0 0 +-0.47 -5.304 -1.748 0 0 0 0 0 0 0 +-0.453 -5.299 -1.746 0 0 0 0 0 0 0 +-0.437 -5.308 -1.748 0 0 0 0 0 0 0 +-0.43 -5.319 -1.752 0 0 0 0 0 0 0 +-0.412 -5.31 -1.748 0 0 0 0 0 0 0 +-0.396 -5.321 -1.752 0 0 0 0 0 0 0 +-0.379 -5.309 -1.747 0 0 0 0 0 0 0 +-0.363 -5.322 -1.751 0 0 0 0 0 0 0 +-0.345 -5.315 -1.748 0 0 0 0 0 0 0 +-0.328 -5.311 -1.746 0 0 0 0 0 0 0 +-0.321 -5.321 -1.75 0 0 0 0 0 0 0 +-0.304 -5.333 -1.754 0 0 0 0 0 0 0 +-0.288 -5.339 -1.756 0 0 0 0 0 0 0 +-0.27 -5.323 -1.75 0 0 0 0 0 0 0 +-0.253 -5.317 -1.747 0 0 0 0 0 0 0 +-0.237 -5.323 -1.749 0 0 0 0 0 0 0 +-0.228 -5.32 -1.748 0 0 0 0 0 0 0 +-0.211 -5.315 -1.746 0 0 0 0 0 0 0 +-0.195 -5.313 -1.745 0 0 0 0 0 0 0 +-0.179 -5.333 -1.752 0 0 0 0 0 0 0 +-0.161 -5.313 -1.744 0 0 0 0 0 0 0 +-0.145 -5.319 -1.746 0 0 0 0 0 0 0 +-0.128 -5.327 -1.749 0 0 0 0 0 0 0 +-0.111 -5.329 -1.75 0 0 0 0 0 0 0 +-0.103 -5.327 -1.749 0 0 0 0 0 0 0 +-0.086 -5.339 -1.753 0 0 0 0 0 0 0 +-0.07 -5.324 -1.748 0 0 0 0 0 0 0 +-0.053 -5.339 -1.753 0 0 0 0 0 0 0 +-0.036 -5.334 -1.751 0 0 0 0 0 0 0 +-0.019 -5.332 -1.75 0 0 0 0 0 0 0 +-0.003 -5.334 -1.751 0 0 0 0 0 0 0 +0.006 -5.343 -1.754 0 0 0 0 0 0 0 +0.023 -5.33 -1.75 0 0 0 0 0 0 0 +0.039 -5.336 -1.752 0 0 0 0 0 0 0 +0.056 -5.345 -1.755 0 0 0 0 0 0 0 +0.073 -5.341 -1.754 0 0 0 0 0 0 0 +0.09 -5.352 -1.758 0 0 0 0 0 0 0 +0.106 -5.333 -1.751 0 0 0 0 0 0 0 +0.115 -5.346 -1.756 0 0 0 0 0 0 0 +0.132 -5.336 -1.752 0 0 0 0 0 0 0 +0.149 -5.347 -1.756 0 0 0 0 0 0 0 +0.165 -5.345 -1.756 0 0 0 0 0 0 0 +0.182 -5.35 -1.758 0 0 0 0 0 0 0 +0.199 -5.349 -1.758 0 0 0 0 0 0 0 +0.216 -5.345 -1.756 0 0 0 0 0 0 0 +0.225 -5.352 -1.759 0 0 0 0 0 0 0 +0.242 -5.355 -1.76 0 0 0 0 0 0 0 +0.258 -5.348 -1.758 0 0 0 0 0 0 0 +0.275 -5.35 -1.759 0 0 0 0 0 0 0 +0.292 -5.347 -1.758 0 0 0 0 0 0 0 +0.309 -5.353 -1.761 0 0 0 0 0 0 0 +0.326 -5.36 -1.764 0 0 0 0 0 0 0 +0.334 -5.356 -1.762 0 0 0 0 0 0 0 +0.351 -5.351 -1.761 0 0 0 0 0 0 0 +0.369 -5.37 -1.768 0 0 0 0 0 0 0 +0.385 -5.35 -1.762 0 0 0 0 0 0 0 +0.402 -5.357 -1.764 0 0 0 0 0 0 0 +0.42 -5.367 -1.768 0 0 0 0 0 0 0 +0.436 -5.356 -1.765 0 0 0 0 0 0 0 +0.445 -5.365 -1.768 0 0 0 0 0 0 0 +0.463 -5.376 -1.773 0 0 0 0 0 0 0 +0.479 -5.367 -1.77 0 0 0 0 0 0 0 +0.495 -5.354 -1.766 0 0 0 0 0 0 0 +0.514 -5.368 -1.771 0 0 0 0 0 0 0 +0.529 -5.351 -1.766 0 0 0 0 0 0 0 +0.546 -5.355 -1.768 0 0 0 0 0 0 0 +0.555 -5.358 -1.769 0 0 0 0 0 0 0 +0.572 -5.353 -1.768 0 0 0 0 0 0 0 +0.587 -5.341 -1.765 0 0 0 0 0 0 0 +0.606 -5.36 -1.772 0 0 0 0 0 0 0 +0.62 -5.334 -1.764 0 0 0 0 0 0 0 +0.639 -5.347 -1.769 0 0 0 0 0 0 0 +0.655 -5.341 -1.768 0 0 0 0 0 0 0 +0.665 -5.349 -1.771 0 0 0 0 0 0 0 +0.683 -5.357 -1.774 0 0 0 0 0 0 0 +0.7 -5.356 -1.775 0 0 0 0 0 0 0 +0.714 -5.332 -1.767 0 0 0 0 0 0 0 +0.731 -5.335 -1.769 0 0 0 0 0 0 0 +0.75 -5.346 -1.773 0 0 0 0 0 0 0 +0.765 -5.334 -1.77 0 0 0 0 0 0 0 +0.773 -5.331 -1.769 0 0 0 0 0 0 0 +0.792 -5.343 -1.775 0 0 0 0 0 0 0 +0.805 -5.317 -1.766 0 0 0 0 0 0 0 +0.826 -5.336 -1.774 0 0 0 0 0 0 0 +0.84 -5.321 -1.769 0 0 0 0 0 0 0 +0.86 -5.335 -1.775 0 0 0 0 0 0 0 +0.874 -5.315 -1.769 0 0 0 0 0 0 0 +0.883 -5.318 -1.771 0 0 0 0 0 0 0 +0.898 -5.308 -1.768 0 0 0 0 0 0 0 +0.915 -5.308 -1.769 0 0 0 0 0 0 0 +0.934 -5.319 -1.774 0 0 0 0 0 0 0 +0.953 -5.323 -1.777 0 0 0 0 0 0 0 +0.967 -5.309 -1.773 0 0 0 0 0 0 0 +0.987 -5.321 -1.778 0 0 0 0 0 0 0 +0.995 -5.317 -1.777 0 0 0 0 0 0 0 +1.013 -5.321 -1.78 0 0 0 0 0 0 0 +3.057 -4.64 -1.829 0 0 0 0 0 0 0 +3.04 -4.584 -1.809 0 0 0 0 0 0 0 +3.059 -4.582 -1.812 0 0 0 0 0 0 0 +3.068 -4.565 -1.809 0 0 0 0 0 0 0 +3.074 -4.542 -1.804 0 0 0 0 0 0 0 +3.084 -4.541 -1.805 0 0 0 0 0 0 0 +3.088 -4.517 -1.799 0 0 0 0 0 0 0 +3.109 -4.517 -1.803 0 0 0 0 0 0 0 +3.132 -4.519 -1.809 0 0 0 0 0 0 0 +3.135 -4.494 -1.802 0 0 0 0 0 0 0 +3.148 -4.482 -1.801 0 0 0 0 0 0 0 +3.163 -4.474 -1.802 0 0 0 0 0 0 0 +3.17 -4.469 -1.802 0 0 0 0 0 0 0 +3.192 -4.47 -1.807 0 0 0 0 0 0 0 +3.198 -4.449 -1.802 0 0 0 0 0 0 0 +3.214 -4.442 -1.803 0 0 0 0 0 0 0 +3.227 -4.43 -1.803 0 0 0 0 0 0 0 +3.242 -4.422 -1.803 0 0 0 0 0 0 0 +3.254 -4.409 -1.802 0 0 0 0 0 0 0 +3.261 -4.403 -1.802 0 0 0 0 0 0 0 +3.277 -4.396 -1.803 0 0 0 0 0 0 0 +3.289 -4.384 -1.803 0 0 0 0 0 0 0 +3.31 -4.383 -1.807 0 0 0 0 0 0 0 +3.318 -4.365 -1.803 0 0 0 0 0 0 0 +3.328 -4.35 -1.801 0 0 0 0 0 0 0 +3.332 -4.34 -1.799 0 0 0 0 0 0 0 +3.355 -4.342 -1.805 0 0 0 0 0 0 0 +3.362 -4.324 -1.801 0 0 0 0 0 0 0 +3.389 -4.33 -1.809 0 0 0 0 0 0 0 +3.395 -4.31 -1.805 0 0 0 0 0 0 0 +3.402 -4.291 -1.801 0 0 0 0 0 0 0 +3.418 -4.283 -1.802 0 0 0 0 0 0 0 +3.433 -4.275 -1.803 0 0 0 0 0 0 0 +3.437 -4.265 -1.801 0 0 0 0 0 0 0 +3.445 -4.249 -1.799 0 0 0 0 0 0 0 +3.462 -4.242 -1.801 0 0 0 0 0 0 0 +3.479 -4.235 -1.803 0 0 0 0 0 0 0 +3.489 -4.22 -1.801 0 0 0 0 0 0 0 +3.502 -4.209 -1.801 0 0 0 0 0 0 0 +3.51 -4.192 -1.798 0 0 0 0 0 0 0 +3.525 -4.197 -1.803 0 0 0 0 0 0 0 +3.531 -4.177 -1.799 0 0 0 0 0 0 0 +3.547 -4.169 -1.8 0 0 0 0 0 0 0 +3.551 -4.148 -1.795 0 0 0 0 0 0 0 +3.572 -4.145 -1.799 0 0 0 0 0 0 0 +3.59 -4.14 -1.802 0 0 0 0 0 0 0 +3.605 -4.131 -1.803 0 0 0 0 0 0 0 +3.607 -4.12 -1.801 0 0 0 0 0 0 0 +3.618 -4.107 -1.8 0 0 0 0 0 0 0 +3.629 -4.093 -1.799 0 0 0 0 0 0 0 +3.644 -4.084 -1.8 0 0 0 0 0 0 0 +3.656 -4.071 -1.799 0 0 0 0 0 0 0 +3.665 -4.056 -1.797 0 0 0 0 0 0 0 +3.685 -4.053 -1.801 0 0 0 0 0 0 0 +3.686 -4.041 -1.799 0 0 0 0 0 0 0 +3.696 -4.027 -1.797 0 0 0 0 0 0 0 +3.72 -4.028 -1.803 0 0 0 0 0 0 0 +3.733 -4.016 -1.803 0 0 0 0 0 0 0 +3.743 -4.001 -1.802 0 0 0 0 0 0 0 +3.77 -4.005 -1.809 0 0 0 0 0 0 0 +3.778 -4 -1.81 0 0 0 0 0 0 0 +3.789 -3.987 -1.809 0 0 0 0 0 0 0 +3.803 -3.976 -1.81 0 0 0 0 0 0 0 +3.82 -3.97 -1.812 0 0 0 0 0 0 0 +3.83 -3.955 -1.811 0 0 0 0 0 0 0 +3.837 -3.938 -1.809 0 0 0 0 0 0 0 +3.851 -3.927 -1.809 0 0 0 0 0 0 0 +3.859 -3.911 -1.807 0 0 0 0 0 0 0 +3.863 -3.902 -1.806 0 0 0 0 0 0 0 +3.871 -3.886 -1.804 0 0 0 0 0 0 0 +3.893 -3.883 -1.809 0 0 0 0 0 0 0 +3.905 -3.871 -1.809 0 0 0 0 0 0 0 +3.916 -3.857 -1.808 0 0 0 0 0 0 0 +3.921 -3.838 -1.805 0 0 0 0 0 0 0 +3.933 -3.826 -1.805 0 0 0 0 0 0 0 +3.936 -3.817 -1.803 0 0 0 0 0 0 0 +3.949 -3.806 -1.804 0 0 0 0 0 0 0 +3.96 -3.792 -1.803 0 0 0 0 0 0 0 +3.973 -3.781 -1.804 0 0 0 0 0 0 0 +3.987 -3.77 -1.805 0 0 0 0 0 0 0 +4.001 -3.76 -1.806 0 0 0 0 0 0 0 +4.007 -3.742 -1.803 0 0 0 0 0 0 0 +4.011 -3.733 -1.802 0 0 0 0 0 0 0 +4.026 -3.725 -1.804 0 0 0 0 0 0 0 +4.032 -3.707 -1.801 0 0 0 0 0 0 0 +4.05 -3.699 -1.804 0 0 0 0 0 0 0 +4.06 -3.685 -1.803 0 0 0 0 0 0 0 +4.067 -3.669 -1.801 0 0 0 0 0 0 0 +4.073 -3.651 -1.799 0 0 0 0 0 0 0 +4.086 -3.651 -1.802 0 0 0 0 0 0 0 +4.099 -3.639 -1.803 0 0 0 0 0 0 0 +4.097 -3.615 -1.797 0 0 0 0 0 0 0 +4.123 -3.615 -1.803 0 0 0 0 0 0 0 +4.13 -3.598 -1.801 0 0 0 0 0 0 0 +4.137 -3.581 -1.799 0 0 0 0 0 0 0 +4.15 -3.569 -1.8 0 0 0 0 0 0 0 +4.154 -3.562 -1.799 0 0 0 0 0 0 0 +4.175 -3.557 -1.804 0 0 0 0 0 0 0 +4.167 -3.528 -1.795 0 0 0 0 0 0 0 +4.184 -3.52 -1.798 0 0 0 0 0 0 0 +4.198 -3.509 -1.799 0 0 0 0 0 0 0 +4.219 -3.504 -1.804 0 0 0 0 0 0 0 +4.216 -3.479 -1.797 0 0 0 0 0 0 0 +4.221 -3.472 -1.797 0 0 0 0 0 0 0 +4.238 -3.464 -1.8 0 0 0 0 0 0 0 +4.243 -3.446 -1.797 0 0 0 0 0 0 0 +4.254 -3.433 -1.797 0 0 0 0 0 0 0 +4.256 -3.412 -1.793 0 0 0 0 0 0 0 +4.274 -3.405 -1.797 0 0 0 0 0 0 0 +4.289 -3.395 -1.799 0 0 0 0 0 0 0 +4.287 -3.382 -1.795 0 0 0 0 0 0 0 +4.3 -3.371 -1.797 0 0 0 0 0 0 0 +4.298 -3.347 -1.791 0 0 0 0 0 0 0 +4.314 -3.338 -1.793 0 0 0 0 0 0 0 +4.328 -3.327 -1.795 0 0 0 0 0 0 0 +4.338 -3.313 -1.795 0 0 0 0 0 0 0 +4.353 -3.303 -1.797 0 0 0 0 0 0 0 +4.343 -3.285 -1.79 0 0 0 0 0 0 0 +4.362 -3.278 -1.794 0 0 0 0 0 0 0 +4.359 -3.254 -1.788 0 0 0 0 0 0 0 +4.378 -3.247 -1.792 0 0 0 0 0 0 0 +4.385 -3.231 -1.791 0 0 0 0 0 0 0 +4.394 -3.216 -1.79 0 0 0 0 0 0 0 +4.403 -3.201 -1.789 0 0 0 0 0 0 0 +4.411 -3.197 -1.791 0 0 0 0 0 0 0 +4.419 -3.182 -1.79 0 0 0 0 0 0 0 +4.432 -3.17 -1.791 0 0 0 0 0 0 0 +4.437 -3.153 -1.789 0 0 0 0 0 0 0 +4.454 -3.143 -1.792 0 0 0 0 0 0 0 +4.449 -3.119 -1.786 0 0 0 0 0 0 0 +4.459 -3.105 -1.786 0 0 0 0 0 0 0 +4.467 -3.1 -1.787 0 0 0 0 0 0 0 +4.469 -3.081 -1.784 0 0 0 0 0 0 0 +4.477 -3.066 -1.783 0 0 0 0 0 0 0 +4.496 -3.058 -1.787 0 0 0 0 0 0 0 +4.49 -3.034 -1.781 0 0 0 0 0 0 0 +4.504 -3.023 -1.783 0 0 0 0 0 0 0 +4.517 -3.011 -1.784 0 0 0 0 0 0 0 +4.517 -3 -1.782 0 0 0 0 0 0 0 +4.52 -2.982 -1.779 0 0 0 0 0 0 0 +4.536 -2.972 -1.782 0 0 0 0 0 0 0 +4.542 -2.956 -1.781 0 0 0 0 0 0 0 +4.548 -2.939 -1.779 0 0 0 0 0 0 0 +4.554 -2.923 -1.778 0 0 0 0 0 0 0 +4.563 -2.909 -1.778 0 0 0 0 0 0 0 +4.569 -2.902 -1.779 0 0 0 0 0 0 0 +4.574 -2.885 -1.777 0 0 0 0 0 0 0 +4.586 -2.873 -1.778 0 0 0 0 0 0 0 +4.585 -2.852 -1.774 0 0 0 0 0 0 0 +4.597 -2.84 -1.775 0 0 0 0 0 0 0 +4.608 -2.826 -1.776 0 0 0 0 0 0 0 +4.62 -2.814 -1.777 0 0 0 0 0 0 0 +4.626 -2.808 -1.778 0 0 0 0 0 0 0 +4.622 -2.785 -1.773 0 0 0 0 0 0 0 +4.637 -2.775 -1.775 0 0 0 0 0 0 0 +4.641 -2.757 -1.773 0 0 0 0 0 0 0 +4.659 -2.748 -1.777 0 0 0 0 0 0 0 +4.661 -2.73 -1.775 0 0 0 0 0 0 0 +4.673 -2.717 -1.776 0 0 0 0 0 0 0 +4.669 -2.705 -1.773 0 0 0 0 0 0 0 +4.683 -2.693 -1.775 0 0 0 0 0 0 0 +4.686 -2.676 -1.773 0 0 0 0 0 0 0 +4.693 -2.66 -1.772 0 0 0 0 0 0 0 +4.706 -2.648 -1.774 0 0 0 0 0 0 0 +4.718 -2.635 -1.775 0 0 0 0 0 0 0 +4.728 -2.621 -1.776 0 0 0 0 0 0 0 +4.715 -2.605 -1.769 0 0 0 0 0 0 0 +4.733 -2.595 -1.773 0 0 0 0 0 0 0 +4.732 -2.575 -1.769 0 0 0 0 0 0 0 +4.741 -2.561 -1.77 0 0 0 0 0 0 0 +4.746 -2.544 -1.769 0 0 0 0 0 0 0 +4.754 -2.529 -1.769 0 0 0 0 0 0 0 +4.767 -2.517 -1.771 0 0 0 0 0 0 0 +4.759 -2.503 -1.766 0 0 0 0 0 0 0 +4.775 -2.493 -1.769 0 0 0 0 0 0 0 +4.78 -2.476 -1.768 0 0 0 0 0 0 0 +4.801 -2.468 -1.773 0 0 0 0 0 0 0 +4.799 -2.448 -1.769 0 0 0 0 0 0 0 +4.799 -2.429 -1.767 0 0 0 0 0 0 0 +4.812 -2.417 -1.769 0 0 0 0 0 0 0 +4.818 -2.41 -1.769 0 0 0 0 0 0 0 +4.839 -2.401 -1.775 0 0 0 0 0 0 0 +4.828 -2.377 -1.768 0 0 0 0 0 0 0 +4.837 -2.363 -1.768 0 0 0 0 0 0 0 +4.846 -2.348 -1.769 0 0 0 0 0 0 0 +4.85 -2.331 -1.768 0 0 0 0 0 0 0 +4.857 -2.316 -1.768 0 0 0 0 0 0 0 +4.864 -2.31 -1.769 0 0 0 0 0 0 0 +4.868 -2.293 -1.768 0 0 0 0 0 0 0 +4.887 -2.284 -1.772 0 0 0 0 0 0 0 +4.887 -2.265 -1.769 0 0 0 0 0 0 0 +4.898 -2.251 -1.771 0 0 0 0 0 0 0 +4.891 -2.23 -1.766 0 0 0 0 0 0 0 +4.902 -2.216 -1.767 0 0 0 0 0 0 0 +4.905 -2.208 -1.767 0 0 0 0 0 0 0 +4.9 -2.187 -1.762 0 0 0 0 0 0 0 +4.903 -2.17 -1.761 0 0 0 0 0 0 0 +4.915 -2.157 -1.763 0 0 0 0 0 0 0 +4.924 -2.143 -1.764 0 0 0 0 0 0 0 +4.922 -2.123 -1.76 0 0 0 0 0 0 0 +4.949 -2.117 -1.768 0 0 0 0 0 0 0 +4.932 -2.091 -1.759 0 0 0 0 0 0 0 +4.94 -2.085 -1.761 0 0 0 0 0 0 0 +4.943 -2.068 -1.76 0 0 0 0 0 0 0 +4.951 -2.054 -1.76 0 0 0 0 0 0 0 +4.975 -2.045 -1.767 0 0 0 0 0 0 0 +4.969 -2.025 -1.762 0 0 0 0 0 0 0 +4.967 -2.005 -1.759 0 0 0 0 0 0 0 +4.977 -1.991 -1.76 0 0 0 0 0 0 0 +4.983 -1.985 -1.762 0 0 0 0 0 0 0 +4.979 -1.965 -1.758 0 0 0 0 0 0 0 +4.989 -1.951 -1.759 0 0 0 0 0 0 0 +4.997 -1.936 -1.76 0 0 0 0 0 0 0 +4.996 -1.917 -1.757 0 0 0 0 0 0 0 +5 -1.901 -1.756 0 0 0 0 0 0 0 +5.005 -1.894 -1.757 0 0 0 0 0 0 0 +5.012 -1.879 -1.758 0 0 0 0 0 0 0 +5.02 -1.864 -1.758 0 0 0 0 0 0 0 +5.015 -1.844 -1.754 0 0 0 0 0 0 0 +5.024 -1.829 -1.756 0 0 0 0 0 0 0 +5.019 -1.81 -1.752 0 0 0 0 0 0 0 +5.045 -1.801 -1.759 0 0 0 0 0 0 0 +5.045 -1.783 -1.757 0 0 0 0 0 0 0 +5.042 -1.773 -1.755 0 0 0 0 0 0 0 +5.064 -1.763 -1.761 0 0 0 0 0 0 0 +5.061 -1.744 -1.758 0 0 0 0 0 0 0 +5.052 -1.723 -1.752 0 0 0 0 0 0 0 +5.064 -1.71 -1.755 0 0 0 0 0 0 0 +5.082 -1.698 -1.76 0 0 0 0 0 0 0 +5.086 -1.682 -1.759 0 0 0 0 0 0 0 +5.079 -1.671 -1.756 0 0 0 0 0 0 0 +5.094 -1.658 -1.759 0 0 0 0 0 0 0 +5.095 -1.64 -1.758 0 0 0 0 0 0 0 +5.113 -1.628 -1.762 0 0 0 0 0 0 0 +5.109 -1.61 -1.759 0 0 0 0 0 0 0 +5.107 -1.591 -1.756 0 0 0 0 0 0 0 +5.11 -1.575 -1.756 0 0 0 0 0 0 0 +5.107 -1.565 -1.754 0 0 0 0 0 0 0 +5.119 -1.551 -1.756 0 0 0 0 0 0 0 +5.135 -1.538 -1.76 0 0 0 0 0 0 0 +5.142 -1.523 -1.761 0 0 0 0 0 0 0 +5.148 -1.507 -1.762 0 0 0 0 0 0 0 +5.136 -1.486 -1.756 0 0 0 0 0 0 0 +5.157 -1.475 -1.762 0 0 0 0 0 0 0 +5.147 -1.463 -1.757 0 0 0 0 0 0 0 +5.157 -1.448 -1.759 0 0 0 0 0 0 0 +5.165 -1.433 -1.76 0 0 0 0 0 0 0 +5.168 -1.416 -1.76 0 0 0 0 0 0 0 +5.174 -1.401 -1.76 0 0 0 0 0 0 0 +5.166 -1.381 -1.756 0 0 0 0 0 0 0 +5.177 -1.367 -1.758 0 0 0 0 0 0 0 +5.189 -1.361 -1.762 0 0 0 0 0 0 0 +5.186 -1.343 -1.759 0 0 0 0 0 0 0 +5.19 -1.326 -1.759 0 0 0 0 0 0 0 +5.183 -1.307 -1.755 0 0 0 0 0 0 0 +5.181 -1.29 -1.753 0 0 0 0 0 0 0 +5.186 -1.273 -1.753 0 0 0 0 0 0 0 +5.21 -1.262 -1.76 0 0 0 0 0 0 0 +5.208 -1.253 -1.759 0 0 0 0 0 0 0 +5.206 -1.235 -1.757 0 0 0 0 0 0 0 +5.207 -1.218 -1.756 0 0 0 0 0 0 0 +5.21 -1.202 -1.756 0 0 0 0 0 0 0 +5.216 -1.186 -1.756 0 0 0 0 0 0 0 +5.236 -1.173 -1.762 0 0 0 0 0 0 0 +5.223 -1.153 -1.756 0 0 0 0 0 0 0 +5.231 -1.146 -1.758 0 0 0 0 0 0 0 +5.236 -1.13 -1.759 0 0 0 0 0 0 0 +5.227 -1.111 -1.754 0 0 0 0 0 0 0 +5.228 -1.094 -1.754 0 0 0 0 0 0 0 +5.237 -1.079 -1.756 0 0 0 0 0 0 0 +5.241 -1.062 -1.756 0 0 0 0 0 0 0 +5.244 -1.046 -1.756 0 0 0 0 0 0 0 +5.231 -1.035 -1.75 0 0 0 0 0 0 0 +5.232 -1.018 -1.75 0 0 0 0 0 0 0 +5.239 -1.002 -1.751 0 0 0 0 0 0 0 +5.238 -0.985 -1.75 0 0 0 0 0 0 0 +5.241 -0.968 -1.75 0 0 0 0 0 0 0 +5.256 -0.954 -1.754 0 0 0 0 0 0 0 +5.251 -0.936 -1.751 0 0 0 0 0 0 0 +5.256 -0.929 -1.752 0 0 0 0 0 0 0 +5.261 -0.912 -1.753 0 0 0 0 0 0 0 +5.271 -0.897 -1.756 0 0 0 0 0 0 0 +5.265 -0.879 -1.752 0 0 0 0 0 0 0 +5.262 -0.861 -1.75 0 0 0 0 0 0 0 +5.253 -0.843 -1.746 0 0 0 0 0 0 0 +5.258 -0.827 -1.747 0 0 0 0 0 0 0 +5.261 -0.819 -1.748 0 0 0 0 0 0 0 +5.267 -0.803 -1.749 0 0 0 0 0 0 0 +5.264 -0.786 -1.747 0 0 0 0 0 0 0 +5.274 -0.77 -1.75 0 0 0 0 0 0 0 +5.282 -0.754 -1.752 0 0 0 0 0 0 0 +5.277 -0.737 -1.749 0 0 0 0 0 0 0 +5.274 -0.719 -1.747 0 0 0 0 0 0 0 +5.271 -0.711 -1.746 0 0 0 0 0 0 0 +5.273 -0.694 -1.746 0 0 0 0 0 0 0 +5.268 -0.677 -1.743 0 0 0 0 0 0 0 +5.279 -0.661 -1.746 0 0 0 0 0 0 0 +5.278 -0.644 -1.745 0 0 0 0 0 0 0 +5.28 -0.628 -1.745 0 0 0 0 0 0 0 +5.293 -0.612 -1.749 0 0 0 0 0 0 0 +5.271 -0.601 -1.741 0 0 0 0 0 0 0 +5.29 -0.587 -1.747 0 0 0 0 0 0 0 +5.281 -0.569 -1.743 0 0 0 0 0 0 0 +5.298 -0.554 -1.748 0 0 0 0 0 0 0 +5.273 -0.535 -1.739 0 0 0 0 0 0 0 +5.29 -0.519 -1.744 0 0 0 0 0 0 0 +5.284 -0.502 -1.742 0 0 0 0 0 0 0 +5.288 -0.494 -1.743 0 0 0 0 0 0 0 +5.286 -0.477 -1.742 0 0 0 0 0 0 0 +5.291 -0.461 -1.743 0 0 0 0 0 0 0 +5.306 -0.445 -1.748 0 0 0 0 0 0 0 +5.287 -0.427 -1.74 0 0 0 0 0 0 0 +5.286 -0.41 -1.74 0 0 0 0 0 0 0 +5.297 -0.394 -1.743 0 0 0 0 0 0 0 +5.293 -0.386 -1.742 0 0 0 0 0 0 0 +5.285 -0.369 -1.738 0 0 0 0 0 0 0 +5.296 -0.353 -1.742 0 0 0 0 0 0 0 +5.289 -0.336 -1.739 0 0 0 0 0 0 0 +5.285 -0.319 -1.737 0 0 0 0 0 0 0 +5.291 -0.302 -1.739 0 0 0 0 0 0 0 +5.292 -0.286 -1.739 0 0 0 0 0 0 0 +5.287 -0.277 -1.737 0 0 0 0 0 0 0 +5.299 -0.261 -1.741 0 0 0 0 0 0 0 +5.298 -0.244 -1.74 0 0 0 0 0 0 0 +5.291 -0.227 -1.738 0 0 0 0 0 0 0 +5.3 -0.211 -1.74 0 0 0 0 0 0 0 +5.283 -0.194 -1.734 0 0 0 0 0 0 0 +5.284 -0.177 -1.734 0 0 0 0 0 0 0 +5.292 -0.169 -1.737 0 0 0 0 0 0 0 +5.292 -0.152 -1.737 0 0 0 0 0 0 0 +5.293 -0.136 -1.737 0 0 0 0 0 0 0 +5.291 -0.119 -1.736 0 0 0 0 0 0 0 +5.286 -0.102 -1.734 0 0 0 0 0 0 0 +5.297 -0.086 -1.738 0 0 0 0 0 0 0 +5.29 -0.069 -1.736 0 0 0 0 0 0 0 +5.279 -0.061 -1.732 0 0 0 0 0 0 0 +5.298 -0.044 -1.738 0 0 0 0 0 0 0 +5.294 -0.028 -1.737 0 0 0 0 0 0 0 +5.285 -0.011 -1.734 0 0 0 0 0 0 0 +5.215 0.003 -1.752 0 0 0 0 0 0 0 +5.186 0.011 -1.742 0 0 0 0 0 0 0 +5.209 0.027 -1.75 0 0 0 0 0 0 0 +5.192 0.044 -1.744 0 0 0 0 0 0 0 +5.214 0.06 -1.752 0 0 0 0 0 0 0 +5.186 0.076 -1.742 0 0 0 0 0 0 0 +5.206 0.093 -1.749 0 0 0 0 0 0 0 +5.198 0.109 -1.747 0 0 0 0 0 0 0 +5.189 0.117 -1.743 0 0 0 0 0 0 0 +5.196 0.134 -1.746 0 0 0 0 0 0 0 +5.18 0.149 -1.741 0 0 0 0 0 0 0 +5.204 0.166 -1.749 0 0 0 0 0 0 0 +5.185 0.182 -1.743 0 0 0 0 0 0 0 +5.207 0.199 -1.751 0 0 0 0 0 0 0 +5.165 0.214 -1.736 0 0 0 0 0 0 0 +5.185 0.223 -1.743 0 0 0 0 0 0 0 +5.181 0.239 -1.742 0 0 0 0 0 0 0 +5.178 0.255 -1.741 0 0 0 0 0 0 0 +5.194 0.272 -1.747 0 0 0 0 0 0 0 +5.152 0.287 -1.732 0 0 0 0 0 0 0 +5.162 0.303 -1.736 0 0 0 0 0 0 0 +5.161 0.32 -1.736 0 0 0 0 0 0 0 +5.159 0.328 -1.736 0 0 0 0 0 0 0 +5.173 0.345 -1.741 0 0 0 0 0 0 0 +5.149 0.36 -1.733 0 0 0 0 0 0 0 +5.15 0.376 -1.734 0 0 0 0 0 0 0 +5.153 0.392 -1.735 0 0 0 0 0 0 0 +5.142 0.408 -1.732 0 0 0 0 0 0 0 +5.152 0.425 -1.736 0 0 0 0 0 0 0 +5.147 0.433 -1.734 0 0 0 0 0 0 0 +5.148 0.449 -1.735 0 0 0 0 0 0 0 +5.13 0.464 -1.729 0 0 0 0 0 0 0 +5.153 0.482 -1.738 0 0 0 0 0 0 0 +5.136 0.497 -1.732 0 0 0 0 0 0 0 +5.134 0.513 -1.732 0 0 0 0 0 0 0 +5.137 0.529 -1.734 0 0 0 0 0 0 0 +5.123 0.536 -1.729 0 0 0 0 0 0 0 +5.134 0.554 -1.734 0 0 0 0 0 0 0 +5.123 0.569 -1.73 0 0 0 0 0 0 0 +5.132 0.586 -1.734 0 0 0 0 0 0 0 +5.14 0.603 -1.738 0 0 0 0 0 0 0 +5.112 0.616 -1.728 0 0 0 0 0 0 0 +5.132 0.635 -1.736 0 0 0 0 0 0 0 +5.122 0.642 -1.733 0 0 0 0 0 0 0 +5.116 0.658 -1.732 0 0 0 0 0 0 0 +5.148 0.678 -1.744 0 0 0 0 0 0 0 +5.117 0.69 -1.734 0 0 0 0 0 0 0 +5.11 0.706 -1.732 0 0 0 0 0 0 0 +5.126 0.724 -1.738 0 0 0 0 0 0 0 +5.094 0.736 -1.728 0 0 0 0 0 0 0 +5.119 0.748 -1.737 0 0 0 0 0 0 0 +5.098 0.761 -1.73 0 0 0 0 0 0 0 +5.112 0.78 -1.736 0 0 0 0 0 0 0 +5.095 0.794 -1.731 0 0 0 0 0 0 0 +5.111 0.813 -1.738 0 0 0 0 0 0 0 +5.09 0.826 -1.731 0 0 0 0 0 0 0 +5.094 0.843 -1.734 0 0 0 0 0 0 0 +5.095 0.851 -1.734 0 0 0 0 0 0 0 +5.09 0.867 -1.734 0 0 0 0 0 0 0 +5.088 0.883 -1.734 0 0 0 0 0 0 0 +5.079 0.898 -1.732 0 0 0 0 0 0 0 +5.084 0.915 -1.734 0 0 0 0 0 0 0 +5.077 0.93 -1.733 0 0 0 0 0 0 0 +5.08 0.947 -1.735 0 0 0 0 0 0 0 +5.065 0.953 -1.73 0 0 0 0 0 0 0 +5.083 0.973 -1.738 0 0 0 0 0 0 0 +5.065 0.986 -1.732 0 0 0 0 0 0 0 +5.067 1.003 -1.734 0 0 0 0 0 0 0 +5.057 1.017 -1.732 0 0 0 0 0 0 0 +5.083 1.039 -1.743 0 0 0 0 0 0 0 +5.054 1.05 -1.733 0 0 0 0 0 0 0 +5.064 1.068 -1.738 0 0 0 0 0 0 0 +5.036 1.071 -1.728 0 0 0 0 0 0 0 +5.057 1.092 -1.737 0 0 0 0 0 0 0 +5.057 1.108 -1.738 0 0 0 0 0 0 0 +5.052 1.124 -1.738 0 0 0 0 0 0 0 +5.072 1.145 -1.747 0 0 0 0 0 0 0 +5.032 1.153 -1.733 0 0 0 0 0 0 0 +5.048 1.165 -1.74 0 0 0 0 0 0 0 +5.037 1.179 -1.737 0 0 0 0 0 0 0 +5.046 1.198 -1.742 0 0 0 0 0 0 0 +5.03 1.211 -1.737 0 0 0 0 0 0 0 +5.026 1.226 -1.737 0 0 0 0 0 0 0 +5.038 1.246 -1.743 0 0 0 0 0 0 0 +5.005 1.255 -1.732 0 0 0 0 0 0 0 +5.027 1.269 -1.741 0 0 0 0 0 0 0 +5.023 1.284 -1.741 0 0 0 0 0 0 0 +5.01 1.298 -1.738 0 0 0 0 0 0 0 +5.037 1.321 -1.749 0 0 0 0 0 0 0 +5.001 1.329 -1.738 0 0 0 0 0 0 0 +5.015 1.35 -1.745 0 0 0 0 0 0 0 +4.997 1.362 -1.739 0 0 0 0 0 0 0 +5.013 1.374 -1.746 0 0 0 0 0 0 0 +5.005 1.389 -1.745 0 0 0 0 0 0 0 +4.986 1.401 -1.739 0 0 0 0 0 0 0 +4.985 1.417 -1.741 0 0 0 0 0 0 0 +4.982 1.434 -1.741 0 0 0 0 0 0 0 +4.971 1.447 -1.738 0 0 0 0 0 0 0 +4.971 1.464 -1.741 0 0 0 0 0 0 0 +4.958 1.477 -1.737 0 0 0 0 0 0 0 +4.955 1.485 -1.737 0 0 0 0 0 0 0 +4.954 1.502 -1.738 0 0 0 0 0 0 0 +4.946 1.516 -1.737 0 0 0 0 0 0 0 +4.939 1.531 -1.736 0 0 0 0 0 0 0 +4.94 1.548 -1.738 0 0 0 0 0 0 0 +4.939 1.565 -1.74 0 0 0 0 0 0 0 +4.928 1.579 -1.738 0 0 0 0 0 0 0 +4.935 1.589 -1.741 0 0 0 0 0 0 0 +4.921 1.602 -1.738 0 0 0 0 0 0 0 +4.935 1.624 -1.745 0 0 0 0 0 0 0 +4.895 1.628 -1.732 0 0 0 0 0 0 0 +4.92 1.653 -1.743 0 0 0 0 0 0 0 +4.9 1.664 -1.738 0 0 0 0 0 0 0 +4.908 1.675 -1.742 0 0 0 0 0 0 0 +4.876 1.681 -1.732 0 0 0 0 0 0 0 +4.889 1.703 -1.738 0 0 0 0 0 0 0 +4.88 1.717 -1.737 0 0 0 0 0 0 0 +4.875 1.732 -1.737 0 0 0 0 0 0 0 +4.857 1.743 -1.732 0 0 0 0 0 0 0 +4.865 1.763 -1.738 0 0 0 0 0 0 0 +4.882 1.778 -1.745 0 0 0 0 0 0 0 +4.837 1.779 -1.73 0 0 0 0 0 0 0 +4.857 1.804 -1.74 0 0 0 0 0 0 0 +4.84 1.815 -1.736 0 0 0 0 0 0 0 +4.84 1.832 -1.738 0 0 0 0 0 0 0 +4.827 1.845 -1.735 0 0 0 0 0 0 0 +4.814 1.857 -1.732 0 0 0 0 0 0 0 +4.836 1.874 -1.742 0 0 0 0 0 0 0 +4.802 1.878 -1.731 0 0 0 0 0 0 0 +4.815 1.901 -1.738 0 0 0 0 0 0 0 +4.779 1.904 -1.727 0 0 0 0 0 0 0 +4.805 1.932 -1.739 0 0 0 0 0 0 0 +4.767 1.934 -1.727 0 0 0 0 0 0 0 +4.798 1.964 -1.741 0 0 0 0 0 0 0 +4.767 1.96 -1.73 0 0 0 0 0 0 0 +4.768 1.978 -1.733 0 0 0 0 0 0 0 +4.746 1.987 -1.727 0 0 0 0 0 0 0 +4.759 2.01 -1.734 0 0 0 0 0 0 0 +4.728 2.014 -1.725 0 0 0 0 0 0 0 +4.746 2.039 -1.734 0 0 0 0 0 0 0 +4.733 2.051 -1.732 0 0 0 0 0 0 0 +4.736 2.062 -1.734 0 0 0 0 0 0 0 +4.728 2.076 -1.734 0 0 0 0 0 0 0 +4.744 2.101 -1.743 0 0 0 0 0 0 0 +4.705 2.101 -1.73 0 0 0 0 0 0 0 +4.712 2.122 -1.735 0 0 0 0 0 0 0 +4.696 2.133 -1.732 0 0 0 0 0 0 0 +4.702 2.153 -1.736 0 0 0 0 0 0 0 +4.673 2.158 -1.728 0 0 0 0 0 0 0 +4.702 2.18 -1.741 0 0 0 0 0 0 0 +4.663 2.18 -1.728 0 0 0 0 0 0 0 +4.668 2.2 -1.732 0 0 0 0 0 0 0 +4.657 2.213 -1.731 0 0 0 0 0 0 0 +4.645 2.225 -1.729 0 0 0 0 0 0 0 +4.679 2.259 -1.745 0 0 0 0 0 0 0 +4.631 2.254 -1.729 0 0 0 0 0 0 0 +4.646 2.27 -1.736 0 0 0 0 0 0 0 +4.615 2.274 -1.727 0 0 0 0 0 0 0 +4.63 2.299 -1.736 0 0 0 0 0 0 0 +4.608 2.306 -1.73 0 0 0 0 0 0 0 +4.604 2.322 -1.731 0 0 0 0 0 0 0 +4.615 2.346 -1.738 0 0 0 0 0 0 0 +4.576 2.335 -1.724 0 0 0 0 0 0 0 +4.584 2.357 -1.73 0 0 0 0 0 0 0 +4.57 2.368 -1.728 0 0 0 0 0 0 0 +4.576 2.389 -1.733 0 0 0 0 0 0 0 +4.578 2.409 -1.737 0 0 0 0 0 0 0 +4.547 2.411 -1.728 0 0 0 0 0 0 0 +4.563 2.438 -1.737 0 0 0 0 0 0 0 +4.527 2.428 -1.724 0 0 0 0 0 0 0 +4.533 2.449 -1.73 0 0 0 0 0 0 0 +4.515 2.458 -1.726 0 0 0 0 0 0 0 +4.504 2.471 -1.724 0 0 0 0 0 0 0 +4.52 2.497 -1.734 0 0 0 0 0 0 0 +4.482 2.495 -1.722 0 0 0 0 0 0 0 +4.494 2.52 -1.73 0 0 0 0 0 0 0 +4.472 2.517 -1.722 0 0 0 0 0 0 0 +4.469 2.534 -1.724 0 0 0 0 0 0 0 +4.472 2.555 -1.729 0 0 0 0 0 0 0 +4.45 2.56 -1.723 0 0 0 0 0 0 0 +4.455 2.582 -1.728 0 0 0 0 0 0 0 +4.442 2.593 -1.726 0 0 0 0 0 0 0 +4.433 2.607 -1.726 0 0 0 0 0 0 0 +4.44 2.629 -1.732 0 0 0 0 0 0 0 +4.413 2.623 -1.723 0 0 0 0 0 0 0 +4.427 2.65 -1.732 0 0 0 0 0 0 0 +4.398 2.652 -1.724 0 0 0 0 0 0 0 +4.396 2.669 -1.726 0 0 0 0 0 0 0 +4.388 2.683 -1.726 0 0 0 0 0 0 0 +4.381 2.698 -1.727 0 0 0 0 0 0 0 +4.372 2.712 -1.727 0 0 0 0 0 0 0 +4.379 2.725 -1.732 0 0 0 0 0 0 0 +4.377 2.743 -1.734 0 0 0 0 0 0 0 +4.341 2.74 -1.723 0 0 0 0 0 0 0 +4.358 2.769 -1.734 0 0 0 0 0 0 0 +4.326 2.768 -1.724 0 0 0 0 0 0 0 +4.336 2.794 -1.732 0 0 0 0 0 0 0 +4.318 2.801 -1.728 0 0 0 0 0 0 0 +4.324 2.815 -1.732 0 0 0 0 0 0 0 +4.303 2.821 -1.727 0 0 0 0 0 0 0 +4.303 2.84 -1.731 0 0 0 0 0 0 0 +4.272 2.839 -1.722 0 0 0 0 0 0 0 +4.289 2.869 -1.732 0 0 0 0 0 0 0 +4.292 2.891 -1.738 0 0 0 0 0 0 0 +4.246 2.879 -1.722 0 0 0 0 0 0 0 +4.26 2.899 -1.73 0 0 0 0 0 0 0 +4.258 2.917 -1.733 0 0 0 0 0 0 0 +4.227 2.916 -1.724 0 0 0 0 0 0 0 +4.234 2.94 -1.73 0 0 0 0 0 0 0 +4.225 2.953 -1.73 0 0 0 0 0 0 0 +4.211 2.963 -1.728 0 0 0 0 0 0 0 +4.206 2.98 -1.73 0 0 0 0 0 0 0 +4.22 2.999 -1.738 0 0 0 0 0 0 0 +4.195 3.001 -1.732 0 0 0 0 0 0 0 +4.19 3.018 -1.734 0 0 0 0 0 0 0 +4.182 3.032 -1.734 0 0 0 0 0 0 0 +4.169 3.043 -1.733 0 0 0 0 0 0 0 +4.16 3.056 -1.733 0 0 0 0 0 0 0 +4.152 3.07 -1.734 0 0 0 0 0 0 0 +4.156 3.084 -1.738 0 0 0 0 0 0 0 +4.128 3.083 -1.73 0 0 0 0 0 0 0 +4.129 3.104 -1.734 0 0 0 0 0 0 0 +4.122 3.119 -1.736 0 0 0 0 0 0 0 +4.106 3.128 -1.733 0 0 0 0 0 0 0 +4.106 3.147 -1.737 0 0 0 0 0 0 0 +4.094 3.159 -1.736 0 0 0 0 0 0 0 +4.089 3.165 -1.736 0 0 0 0 0 0 0 +4.084 3.182 -1.738 0 0 0 0 0 0 0 +4.069 3.191 -1.736 0 0 0 0 0 0 0 +4.058 3.203 -1.736 0 0 0 0 0 0 0 +4.054 3.22 -1.738 0 0 0 0 0 0 0 +4.038 3.228 -1.736 0 0 0 0 0 0 0 +4.03 3.243 -1.737 0 0 0 0 0 0 0 +4.024 3.248 -1.736 0 0 0 0 0 0 0 +4.015 3.262 -1.737 0 0 0 0 0 0 0 +3.997 3.269 -1.734 0 0 0 0 0 0 0 +3.993 3.286 -1.736 0 0 0 0 0 0 0 +3.98 3.296 -1.735 0 0 0 0 0 0 0 +3.961 3.302 -1.731 0 0 0 0 0 0 0 +3.968 3.328 -1.739 0 0 0 0 0 0 0 +3.954 3.327 -1.735 0 0 0 0 0 0 0 +3.935 3.333 -1.731 0 0 0 0 0 0 0 +3.934 3.353 -1.736 0 0 0 0 0 0 0 +3.922 3.365 -1.735 0 0 0 0 0 0 0 +3.914 3.379 -1.736 0 0 0 0 0 0 0 +3.907 3.394 -1.738 0 0 0 0 0 0 0 +3.895 3.405 -1.737 0 0 0 0 0 0 0 +3.886 3.409 -1.736 0 0 0 0 0 0 0 +3.87 3.416 -1.733 0 0 0 0 0 0 0 +3.858 3.427 -1.732 0 0 0 0 0 0 0 +3.847 3.439 -1.732 0 0 0 0 0 0 0 +3.839 3.453 -1.734 0 0 0 0 0 0 0 +3.821 3.459 -1.73 0 0 0 0 0 0 0 +3.812 3.472 -1.731 0 0 0 0 0 0 0 +3.803 3.487 -1.732 0 0 0 0 0 0 0 +3.795 3.49 -1.731 0 0 0 0 0 0 0 +3.793 3.51 -1.735 0 0 0 0 0 0 0 +3.772 3.513 -1.73 0 0 0 0 0 0 0 +3.766 3.53 -1.733 0 0 0 0 0 0 0 +3.747 3.534 -1.729 0 0 0 0 0 0 0 +3.737 3.547 -1.73 0 0 0 0 0 0 0 +3.731 3.564 -1.732 0 0 0 0 0 0 0 +3.714 3.558 -1.726 0 0 0 0 0 0 0 +3.711 3.578 -1.73 0 0 0 0 0 0 0 +3.705 3.594 -1.733 0 0 0 0 0 0 0 +3.687 3.599 -1.73 0 0 0 0 0 0 0 +3.669 3.604 -1.726 0 0 0 0 0 0 0 +3.663 3.621 -1.729 0 0 0 0 0 0 0 +3.66 3.63 -1.73 0 0 0 0 0 0 0 +3.64 3.633 -1.726 0 0 0 0 0 0 0 +3.629 3.645 -1.726 0 0 0 0 0 0 0 +3.624 3.663 -1.73 0 0 0 0 0 0 0 +3.62 3.682 -1.734 0 0 0 0 0 0 0 +3.588 3.672 -1.723 0 0 0 0 0 0 0 +3.601 3.709 -1.736 0 0 0 0 0 0 0 +3.589 3.708 -1.732 0 0 0 0 0 0 0 +3.573 3.715 -1.73 0 0 0 0 0 0 0 +3.577 3.742 -1.738 0 0 0 0 0 0 0 +3.551 3.739 -1.731 0 0 0 0 0 0 0 +3.533 3.743 -1.728 0 0 0 0 0 0 0 +3.525 3.758 -1.73 0 0 0 0 0 0 0 +3.517 3.773 -1.732 0 0 0 0 0 0 0 +3.5 3.779 -1.729 0 0 0 0 0 0 0 +3.493 3.783 -1.728 0 0 0 0 0 0 0 +3.478 3.791 -1.727 0 0 0 0 0 0 0 +3.465 3.801 -1.726 0 0 0 0 0 0 0 +3.458 3.817 -1.729 0 0 0 0 0 0 0 +3.449 3.831 -1.73 0 0 0 0 0 0 0 +3.434 3.839 -1.729 0 0 0 0 0 0 0 +3.418 3.845 -1.727 0 0 0 0 0 0 0 +3.416 3.855 -1.729 0 0 0 0 0 0 0 +3.426 3.891 -1.741 0 0 0 0 0 0 0 +3.412 3.899 -1.74 0 0 0 0 0 0 0 +3.378 3.885 -1.728 0 0 0 0 0 0 0 +3.381 3.913 -1.736 0 0 0 0 0 0 0 +3.355 3.908 -1.729 0 0 0 0 0 0 0 +3.355 3.933 -1.736 0 0 0 0 0 0 0 +3.329 3.928 -1.728 0 0 0 0 0 0 0 +3.336 3.949 -1.736 0 0 0 0 0 0 0 +3.319 3.953 -1.733 0 0 0 0 0 0 0 +3.303 3.959 -1.731 0 0 0 0 0 0 0 +3.283 3.961 -1.727 0 0 0 0 0 0 0 +3.274 3.976 -1.729 0 0 0 0 0 0 0 +3.252 3.974 -1.724 0 0 0 0 0 0 0 +3.263 4 -1.733 0 0 0 0 0 0 0 +3.236 3.993 -1.725 0 0 0 0 0 0 0 +3.228 4.009 -1.728 0 0 0 0 0 0 0 +3.218 4.022 -1.729 0 0 0 0 0 0 0 +3.201 4.026 -1.726 0 0 0 0 0 0 0 +3.195 4.045 -1.73 0 0 0 0 0 0 0 +3.181 4.053 -1.73 0 0 0 0 0 0 0 +3.169 4.065 -1.73 0 0 0 0 0 0 0 +3.174 4.083 -1.736 0 0 0 0 0 0 0 +3.138 4.063 -1.723 0 0 0 0 0 0 0 +3.139 4.091 -1.731 0 0 0 0 0 0 0 +3.123 4.098 -1.73 0 0 0 0 0 0 0 +3.114 4.112 -1.732 0 0 0 0 0 0 0 +3.108 4.131 -1.736 0 0 0 0 0 0 0 +3.087 4.13 -1.731 0 0 0 0 0 0 0 +3.077 4.13 -1.729 0 0 0 0 0 0 0 +3.073 4.152 -1.734 0 0 0 0 0 0 0 +3.042 4.138 -1.724 0 0 0 0 0 0 0 +3.047 4.171 -1.734 0 0 0 0 0 0 0 +3.023 4.166 -1.728 0 0 0 0 0 0 0 +3.017 4.186 -1.732 0 0 0 0 0 0 0 +2.998 4.186 -1.728 0 0 0 0 0 0 0 +3.003 4.208 -1.736 0 0 0 0 0 0 0 +2.988 4.214 -1.734 0 0 0 0 0 0 0 +2.981 4.233 -1.738 0 0 0 0 0 0 0 +2.965 4.239 -1.737 0 0 0 0 0 0 0 +2.949 4.243 -1.735 0 0 0 0 0 0 0 +2.934 4.251 -1.734 0 0 0 0 0 0 0 +2.923 4.263 -1.736 0 0 0 0 0 0 0 +2.918 4.27 -1.736 0 0 0 0 0 0 0 +2.904 4.279 -1.736 0 0 0 0 0 0 0 +2.889 4.285 -1.735 0 0 0 0 0 0 0 +2.876 4.295 -1.736 0 0 0 0 0 0 0 +2.87 4.315 -1.741 0 0 0 0 0 0 0 +2.844 4.306 -1.732 0 0 0 0 0 0 0 +2.841 4.33 -1.739 0 0 0 0 0 0 0 +2.835 4.336 -1.74 0 0 0 0 0 0 0 +2.821 4.345 -1.74 0 0 0 0 0 0 0 +2.809 4.355 -1.741 0 0 0 0 0 0 0 +2.795 4.364 -1.741 0 0 0 0 0 0 0 +2.786 4.381 -1.744 0 0 0 0 0 0 0 +2.767 4.38 -1.74 0 0 0 0 0 0 0 +2.752 4.387 -1.739 0 0 0 0 0 0 0 +2.742 4.402 -1.742 0 0 0 0 0 0 0 +2.737 4.41 -1.743 0 0 0 0 0 0 0 +2.726 4.423 -1.745 0 0 0 0 0 0 0 +2.712 4.432 -1.745 0 0 0 0 0 0 0 +2.694 4.434 -1.743 0 0 0 0 0 0 0 +2.674 4.431 -1.738 0 0 0 0 0 0 0 +2.668 4.454 -1.744 0 0 0 0 0 0 0 +2.651 4.456 -1.741 0 0 0 0 0 0 0 +2.646 4.465 -1.743 0 0 0 0 0 0 0 +2.63 4.47 -1.742 0 0 0 0 0 0 0 +2.617 4.48 -1.743 0 0 0 0 0 0 0 +2.601 4.485 -1.741 0 0 0 0 0 0 0 +2.58 4.48 -1.736 0 0 0 0 0 0 0 +2.577 4.507 -1.744 0 0 0 0 0 0 0 +2.555 4.502 -1.738 0 0 0 0 0 0 0 +2.56 4.528 -1.747 0 0 0 0 0 0 0 +2.543 4.531 -1.745 0 0 0 0 0 0 0 +2.524 4.53 -1.742 0 0 0 0 0 0 0 +2.515 4.547 -1.745 0 0 0 0 0 0 0 +2.499 4.551 -1.744 0 0 0 0 0 0 0 +2.479 4.549 -1.74 0 0 0 0 0 0 0 +2.473 4.572 -1.746 0 0 0 0 0 0 0 +2.46 4.566 -1.742 0 0 0 0 0 0 0 +2.446 4.573 -1.742 0 0 0 0 0 0 0 +2.443 4.603 -1.751 0 0 0 0 0 0 0 +2.41 4.575 -1.736 0 0 0 0 0 0 0 +2.415 4.62 -1.751 0 0 0 0 0 0 0 +2.393 4.614 -1.746 0 0 0 0 0 0 0 +2.375 4.613 -1.743 0 0 0 0 0 0 0 +2.366 4.615 -1.742 0 0 0 0 0 0 0 +2.352 4.622 -1.742 0 0 0 0 0 0 0 +2.341 4.636 -1.745 0 0 0 0 0 0 0 +2.321 4.634 -1.741 0 0 0 0 0 0 0 +2.309 4.646 -1.743 0 0 0 0 0 0 0 +2.292 4.648 -1.741 0 0 0 0 0 0 0 +2.274 4.649 -1.738 0 0 0 0 0 0 0 +2.268 4.673 -1.745 0 0 0 0 0 0 0 +2.248 4.651 -1.734 0 0 0 0 0 0 0 +2.243 4.678 -1.743 0 0 0 0 0 0 0 +2.224 4.677 -1.739 0 0 0 0 0 0 0 +2.22 4.706 -1.748 0 0 0 0 0 0 0 +2.196 4.692 -1.74 0 0 0 0 0 0 0 +2.185 4.708 -1.743 0 0 0 0 0 0 0 +2.159 4.691 -1.734 0 0 0 0 0 0 0 +2.165 4.723 -1.745 0 0 0 0 0 0 0 +2.146 4.72 -1.741 0 0 0 0 0 0 0 +2.128 4.721 -1.739 0 0 0 0 0 0 0 +2.111 4.723 -1.737 0 0 0 0 0 0 0 +2.1 4.738 -1.741 0 0 0 0 0 0 0 +2.078 4.729 -1.734 0 0 0 0 0 0 0 +2.074 4.76 -1.744 0 0 0 0 0 0 0 +2.061 4.751 -1.739 0 0 0 0 0 0 0 +2.047 4.757 -1.739 0 0 0 0 0 0 0 +2.032 4.764 -1.739 0 0 0 0 0 0 0 +2.02 4.779 -1.743 0 0 0 0 0 0 0 +1.993 4.756 -1.731 0 0 0 0 0 0 0 +1.992 4.796 -1.745 0 0 0 0 0 0 0 +1.968 4.78 -1.736 0 0 0 0 0 0 0 +1.965 4.794 -1.74 0 0 0 0 0 0 0 +1.946 4.791 -1.736 0 0 0 0 0 0 0 +1.939 4.816 -1.744 0 0 0 0 0 0 0 +1.92 4.814 -1.741 0 0 0 0 0 0 0 +1.902 4.811 -1.737 0 0 0 0 0 0 0 +1.892 4.831 -1.743 0 0 0 0 0 0 0 +1.873 4.828 -1.739 0 0 0 0 0 0 0 +1.86 4.837 -1.741 0 0 0 0 0 0 0 +1.852 4.84 -1.741 0 0 0 0 0 0 0 +1.841 4.857 -1.745 0 0 0 0 0 0 0 +1.821 4.85 -1.74 0 0 0 0 0 0 0 +1.81 4.868 -1.745 0 0 0 0 0 0 0 +1.797 4.879 -1.747 0 0 0 0 0 0 0 +1.778 4.874 -1.743 0 0 0 0 0 0 0 +1.762 4.88 -1.743 0 0 0 0 0 0 0 +1.757 4.888 -1.745 0 0 0 0 0 0 0 +1.738 4.884 -1.741 0 0 0 0 0 0 0 +1.727 4.901 -1.745 0 0 0 0 0 0 0 +1.713 4.911 -1.747 0 0 0 0 0 0 0 +1.689 4.892 -1.738 0 0 0 0 0 0 0 +1.666 4.876 -1.73 0 0 0 0 0 0 0 +1.65 4.879 -1.729 0 0 0 0 0 0 0 +1.635 4.86 -1.721 0 0 0 0 0 0 0 +1.625 4.88 -1.726 0 0 0 0 0 0 0 +1.605 4.87 -1.721 0 0 0 0 0 0 0 +1.585 4.863 -1.716 0 0 0 0 0 0 0 +1.573 4.877 -1.72 0 0 0 0 0 0 0 +1.559 4.885 -1.721 0 0 0 0 0 0 0 +1.541 4.885 -1.719 0 0 0 0 0 0 0 +1.537 4.896 -1.722 0 0 0 0 0 0 0 +1.516 4.885 -1.716 0 0 0 0 0 0 0 +1.496 4.873 -1.71 0 0 0 0 0 0 0 +1.486 4.896 -1.717 0 0 0 0 0 0 0 +1.465 4.881 -1.709 0 0 0 0 0 0 0 +1.449 4.884 -1.709 0 0 0 0 0 0 0 +1.438 4.905 -1.715 0 0 0 0 0 0 0 +1.414 4.88 -1.704 0 0 0 0 0 0 0 +1.408 4.888 -1.706 0 0 0 0 0 0 0 +1.384 4.861 -1.695 0 0 0 0 0 0 0 +1.375 4.887 -1.703 0 0 0 0 0 0 0 +1.355 4.877 -1.697 0 0 0 0 0 0 0 +1.341 4.883 -1.698 0 0 0 0 0 0 0 +1.32 4.869 -1.691 0 0 0 0 0 0 0 +1.313 4.903 -1.702 0 0 0 0 0 0 0 +1.296 4.872 -1.69 0 0 0 0 0 0 0 +1.282 4.881 -1.692 0 0 0 0 0 0 0 +1.267 4.884 -1.691 0 0 0 0 0 0 0 +1.248 4.877 -1.687 0 0 0 0 0 0 0 +1.237 4.895 -1.693 0 0 0 0 0 0 0 +1.22 4.893 -1.691 0 0 0 0 0 0 0 +1.202 4.888 -1.687 0 0 0 0 0 0 0 +1.195 4.892 -1.688 0 0 0 0 0 0 0 +1.181 4.899 -1.689 0 0 0 0 0 0 0 +1.155 4.861 -1.674 0 0 0 0 0 0 0 +1.149 4.903 -1.688 0 0 0 0 0 0 0 +1.13 4.89 -1.682 0 0 0 0 0 0 0 +1.116 4.903 -1.685 0 0 0 0 0 0 0 +1.098 4.895 -1.681 0 0 0 0 0 0 0 +1.091 4.897 -1.681 0 0 0 0 0 0 0 +1.071 4.882 -1.674 0 0 0 0 0 0 0 +1.056 4.885 -1.674 0 0 0 0 0 0 0 +1.035 4.861 -1.664 0 0 0 0 0 0 0 +1.024 4.884 -1.672 0 0 0 0 0 0 0 +1 4.849 -1.657 0 0 0 0 0 0 0 +0.995 4.902 -1.676 0 0 0 0 0 0 0 +0.97 4.817 -1.644 0 0 0 0 0 0 0 +0.97 4.897 -1.672 0 0 0 0 0 0 0 +0.94 4.826 -1.645 0 0 0 0 0 0 0 +0.94 4.905 -1.673 0 0 0 0 0 0 0 +0.905 4.806 -1.636 0 0 0 0 0 0 0 +0.909 4.909 -1.672 0 0 0 0 0 0 0 +0.577 3.221 -1.055 0 0 0 0 0 0 0 +0.588 3.341 -1.098 0 0 0 0 0 0 0 +0.579 3.321 -1.091 0 0 0 0 0 0 0 +0.57 3.329 -1.093 0 0 0 0 0 0 0 +0.557 3.318 -1.088 0 0 0 0 0 0 0 +0.545 3.31 -1.085 0 0 0 0 0 0 0 +0.531 3.291 -1.077 0 0 0 0 0 0 0 +0.512 3.241 -1.058 0 0 0 0 0 0 0 +0.501 3.235 -1.056 0 0 0 0 0 0 0 +0.494 3.223 -1.051 0 0 0 0 0 0 0 +0.483 3.224 -1.051 0 0 0 0 0 0 0 +0.471 3.213 -1.046 0 0 0 0 0 0 0 +0.462 3.218 -1.048 0 0 0 0 0 0 0 +0.456 3.248 -1.058 0 0 0 0 0 0 0 +0.443 3.23 -1.051 0 0 0 0 0 0 0 +0.435 3.245 -1.056 0 0 0 0 0 0 0 +0.428 3.236 -1.052 0 0 0 0 0 0 0 +0.42 3.249 -1.056 0 0 0 0 0 0 0 +0.41 3.255 -1.058 0 0 0 0 0 0 0 +0.4 3.255 -1.058 0 0 0 0 0 0 0 +0.39 3.26 -1.059 0 0 0 0 0 0 0 +0.379 3.257 -1.058 0 0 0 0 0 0 0 +0.368 3.251 -1.055 0 0 0 0 0 0 0 +0.359 3.26 -1.058 0 0 0 0 0 0 0 +0.353 3.256 -1.056 0 0 0 0 0 0 0 +0.344 3.263 -1.058 0 0 0 0 0 0 0 +0.332 3.253 -1.054 0 0 0 0 0 0 0 +0.323 3.262 -1.057 0 0 0 0 0 0 0 +0.312 3.257 -1.055 0 0 0 0 0 0 0 +0.301 3.254 -1.054 0 0 0 0 0 0 0 +0.29 3.246 -1.05 0 0 0 0 0 0 0 +0.285 3.242 -1.049 0 0 0 0 0 0 0 +0.274 3.243 -1.049 0 0 0 0 0 0 0 +0.265 3.248 -1.05 0 0 0 0 0 0 0 +0.256 3.267 -1.057 0 0 0 0 0 0 0 +0.243 3.236 -1.046 0 0 0 0 0 0 0 +0.232 3.224 -1.041 0 0 0 0 0 0 0 +0.362 5.044 -1.695 0 0 0 0 0 0 0 +0.351 5.016 -1.685 0 0 0 0 0 0 0 +0.338 5.053 -1.698 0 0 0 0 0 0 0 +0.32 5.014 -1.684 0 0 0 0 0 0 0 +0.306 5.053 -1.697 0 0 0 0 0 0 0 +0.289 5.024 -1.686 0 0 0 0 0 0 0 +0.275 5.058 -1.699 0 0 0 0 0 0 0 +0.258 5.039 -1.691 0 0 0 0 0 0 0 +0.251 5.06 -1.699 0 0 0 0 0 0 0 +0.234 5.038 -1.691 0 0 0 0 0 0 0 +0.219 5.048 -1.694 0 0 0 0 0 0 0 +0.203 5.049 -1.694 0 0 0 0 0 0 0 +0.186 5.036 -1.689 0 0 0 0 0 0 0 +0.172 5.065 -1.699 0 0 0 0 0 0 0 +0.155 5.045 -1.692 0 0 0 0 0 0 0 +0.148 5.069 -1.701 0 0 0 0 0 0 0 +0.132 5.058 -1.697 0 0 0 0 0 0 0 +0.116 5.055 -1.695 0 0 0 0 0 0 0 +0.1 5.05 -1.693 0 0 0 0 0 0 0 +0.084 5.065 -1.699 0 0 0 0 0 0 0 +0.068 5.056 -1.695 0 0 0 0 0 0 0 +0.052 5.069 -1.7 0 0 0 0 0 0 0 +0.044 5.054 -1.695 0 0 0 0 0 0 0 +0.028 5.051 -1.693 0 0 0 0 0 0 0 +0.012 5.055 -1.695 0 0 0 0 0 0 0 +-0.004 5.06 -1.697 0 0 0 0 0 0 0 +-0.019 5.087 -1.706 0 0 0 0 0 0 0 +-0.035 5.06 -1.697 0 0 0 0 0 0 0 +-0.051 5.071 -1.701 0 0 0 0 0 0 0 +-0.067 5.097 -1.71 0 0 0 0 0 0 0 +-0.075 5.071 -1.701 0 0 0 0 0 0 0 +-0.091 5.08 -1.704 0 0 0 0 0 0 0 +-0.107 5.091 -1.708 0 0 0 0 0 0 0 +-0.123 5.074 -1.702 0 0 0 0 0 0 0 +-0.14 5.1 -1.711 0 0 0 0 0 0 0 +-0.157 5.144 -1.728 0 0 0 0 0 0 0 +-0.172 5.127 -1.722 0 0 0 0 0 0 0 +-0.181 5.13 -1.723 0 0 0 0 0 0 0 +-0.197 5.154 -1.732 0 0 0 0 0 0 0 +-0.213 5.133 -1.724 0 0 0 0 0 0 0 +-0.229 5.138 -1.726 0 0 0 0 0 0 0 +-0.247 5.164 -1.736 0 0 0 0 0 0 0 +-0.261 5.133 -1.725 0 0 0 0 0 0 0 +-0.278 5.143 -1.729 0 0 0 0 0 0 0 +-0.287 5.158 -1.734 0 0 0 0 0 0 0 +-0.303 5.159 -1.735 0 0 0 0 0 0 0 +-0.319 5.158 -1.735 0 0 0 0 0 0 0 +-0.336 5.17 -1.74 0 0 0 0 0 0 0 +-0.352 5.154 -1.734 0 0 0 0 0 0 0 +-0.368 5.154 -1.735 0 0 0 0 0 0 0 +-0.385 5.172 -1.742 0 0 0 0 0 0 0 +-0.393 5.169 -1.741 0 0 0 0 0 0 0 +-0.409 5.163 -1.739 0 0 0 0 0 0 0 +-0.427 5.182 -1.747 0 0 0 0 0 0 0 +-0.442 5.167 -1.742 0 0 0 0 0 0 0 +-0.458 5.162 -1.741 0 0 0 0 0 0 0 +-0.477 5.185 -1.749 0 0 0 0 0 0 0 +-0.492 5.174 -1.746 0 0 0 0 0 0 0 +-0.507 5.163 -1.743 0 0 0 0 0 0 0 +-0.518 5.191 -1.753 0 0 0 0 0 0 0 +-0.533 5.174 -1.747 0 0 0 0 0 0 0 +-0.55 5.176 -1.749 0 0 0 0 0 0 0 +-0.568 5.195 -1.756 0 0 0 0 0 0 0 +-0.584 5.191 -1.755 0 0 0 0 0 0 0 +-0.6 5.189 -1.755 0 0 0 0 0 0 0 +-0.619 5.208 -1.763 0 0 0 0 0 0 0 +-0.628 5.209 -1.763 0 0 0 0 0 0 0 +-0.645 5.214 -1.766 0 0 0 0 0 0 0 +-0.663 5.225 -1.771 0 0 0 0 0 0 0 +-0.675 5.193 -1.76 0 0 0 0 0 0 0 +-0.693 5.204 -1.765 0 0 0 0 0 0 0 +-0.71 5.204 -1.765 0 0 0 0 0 0 0 +-0.728 5.211 -1.769 0 0 0 0 0 0 0 +-0.747 5.29 -1.798 0 0 0 0 0 0 0 +-0.764 5.295 -1.801 0 0 0 0 0 0 0 +-0.779 5.278 -1.795 0 0 0 0 0 0 0 +-0.79 5.238 -1.782 0 0 0 0 0 0 0 +-0.804 5.219 -1.776 0 0 0 0 0 0 0 +-0.815 5.181 -1.763 0 0 0 0 0 0 0 +-0.83 5.171 -1.76 0 0 0 0 0 0 0 +-0.843 5.199 -1.771 0 0 0 0 0 0 0 +-0.852 5.154 -1.755 0 0 0 0 0 0 0 +-0.871 5.168 -1.761 0 0 0 0 0 0 0 +-0.888 5.165 -1.761 0 0 0 0 0 0 0 +-0.902 5.151 -1.757 0 0 0 0 0 0 0 +-0.916 5.137 -1.753 0 0 0 0 0 0 0 +-0.934 5.146 -1.757 0 0 0 0 0 0 0 +-0.95 5.141 -1.757 0 0 0 0 0 0 0 +-0.958 5.139 -1.757 0 0 0 0 0 0 0 +-0.977 5.149 -1.761 0 0 0 0 0 0 0 +-0.991 5.139 -1.759 0 0 0 0 0 0 0 +-1.008 5.137 -1.759 0 0 0 0 0 0 0 +-1.023 5.13 -1.758 0 0 0 0 0 0 0 +-1.039 5.125 -1.757 0 0 0 0 0 0 0 +-1.058 5.139 -1.763 0 0 0 0 0 0 0 +-1.065 5.131 -1.761 0 0 0 0 0 0 0 +-1.081 5.124 -1.76 0 0 0 0 0 0 0 +-1.098 5.128 -1.763 0 0 0 0 0 0 0 +-1.113 5.119 -1.761 0 0 0 0 0 0 0 +-1.128 5.108 -1.758 0 0 0 0 0 0 0 +-1.147 5.118 -1.763 0 0 0 0 0 0 0 +-1.161 5.107 -1.76 0 0 0 0 0 0 0 +-1.168 5.099 -1.758 0 0 0 0 0 0 0 +-1.186 5.107 -1.762 0 0 0 0 0 0 0 +-1.203 5.103 -1.762 0 0 0 0 0 0 0 +-1.216 5.09 -1.759 0 0 0 0 0 0 0 +-1.235 5.095 -1.762 0 0 0 0 0 0 0 +-1.251 5.093 -1.763 0 0 0 0 0 0 0 +-1.266 5.086 -1.761 0 0 0 0 0 0 0 +-1.272 5.076 -1.759 0 0 0 0 0 0 0 +-1.29 5.078 -1.761 0 0 0 0 0 0 0 +-1.304 5.068 -1.759 0 0 0 0 0 0 0 +-1.323 5.077 -1.763 0 0 0 0 0 0 0 +-1.338 5.067 -1.761 0 0 0 0 0 0 0 +-1.356 5.072 -1.765 0 0 0 0 0 0 0 +-1.372 5.066 -1.764 0 0 0 0 0 0 0 +-1.387 5.06 -1.763 0 0 0 0 0 0 0 +-1.393 5.052 -1.761 0 0 0 0 0 0 0 +-1.409 5.048 -1.761 0 0 0 0 0 0 0 +-1.427 5.049 -1.763 0 0 0 0 0 0 0 +-1.441 5.039 -1.761 0 0 0 0 0 0 0 +-1.455 5.027 -1.759 0 0 0 0 0 0 0 +-1.473 5.032 -1.762 0 0 0 0 0 0 0 +-1.49 5.029 -1.763 0 0 0 0 0 0 0 +-1.501 5.039 -1.768 0 0 0 0 0 0 0 +-1.514 5.025 -1.764 0 0 0 0 0 0 0 +-1.532 5.026 -1.766 0 0 0 0 0 0 0 +-1.545 5.012 -1.763 0 0 0 0 0 0 0 +-1.561 5.009 -1.763 0 0 0 0 0 0 0 +-1.576 5 -1.762 0 0 0 0 0 0 0 +-1.588 4.985 -1.758 0 0 0 0 0 0 0 +-1.603 5.004 -1.766 0 0 0 0 0 0 0 +-1.615 4.988 -1.762 0 0 0 0 0 0 0 +-1.628 4.976 -1.759 0 0 0 0 0 0 0 +-1.648 4.983 -1.764 0 0 0 0 0 0 0 +-1.663 4.976 -1.763 0 0 0 0 0 0 0 +-1.677 4.965 -1.761 0 0 0 0 0 0 0 +-1.697 4.973 -1.766 0 0 0 0 0 0 0 +-1.705 4.972 -1.767 0 0 0 0 0 0 0 +-1.715 4.95 -1.761 0 0 0 0 0 0 0 +-1.731 4.947 -1.761 0 0 0 0 0 0 0 +-1.752 4.957 -1.768 0 0 0 0 0 0 0 +-1.764 4.941 -1.763 0 0 0 0 0 0 0 +-1.782 4.943 -1.766 0 0 0 0 0 0 0 +-1.798 4.937 -1.766 0 0 0 0 0 0 0 +-1.808 4.915 -1.76 0 0 0 0 0 0 0 +-1.82 4.925 -1.765 0 0 0 0 0 0 0 +-1.837 4.924 -1.767 0 0 0 0 0 0 0 +-1.85 4.912 -1.764 0 0 0 0 0 0 0 +-1.866 4.908 -1.765 0 0 0 0 0 0 0 +-1.883 4.907 -1.767 0 0 0 0 0 0 0 +-1.897 4.896 -1.765 0 0 0 0 0 0 0 +-1.91 4.883 -1.762 0 0 0 0 0 0 0 +-1.919 4.883 -1.763 0 0 0 0 0 0 0 +-1.933 4.875 -1.763 0 0 0 0 0 0 0 +-1.954 4.883 -1.768 0 0 0 0 0 0 0 +-1.967 4.87 -1.765 0 0 0 0 0 0 0 +-1.978 4.855 -1.762 0 0 0 0 0 0 0 +-1.997 4.858 -1.765 0 0 0 0 0 0 0 +-2.012 4.85 -1.765 0 0 0 0 0 0 0 +-2.023 4.835 -1.761 0 0 0 0 0 0 0 +-2.032 4.833 -1.762 0 0 0 0 0 0 0 +-2.049 4.832 -1.764 0 0 0 0 0 0 0 +-2.06 4.815 -1.76 0 0 0 0 0 0 0 +-2.078 4.816 -1.763 0 0 0 0 0 0 0 +-2.093 4.809 -1.763 0 0 0 0 0 0 0 +-2.111 4.809 -1.765 0 0 0 0 0 0 0 +-2.129 4.81 -1.768 0 0 0 0 0 0 0 +-2.131 4.794 -1.763 0 0 0 0 0 0 0 +-2.153 4.803 -1.77 0 0 0 0 0 0 0 +-2.175 4.81 -1.775 0 0 0 0 0 0 0 +-2.204 4.834 -1.787 0 0 0 0 0 0 0 +-2.229 4.849 -1.796 0 0 0 0 0 0 0 +-2.225 4.801 -1.78 0 0 0 0 0 0 0 +-2.239 4.791 -1.778 0 0 0 0 0 0 0 +-2.238 4.768 -1.771 0 0 0 0 0 0 0 +-2.246 4.748 -1.765 0 0 0 0 0 0 0 +-2.269 4.758 -1.772 0 0 0 0 0 0 0 +-2.284 4.75 -1.772 0 0 0 0 0 0 0 +-2.3 4.745 -1.773 0 0 0 0 0 0 0 +-2.315 4.739 -1.774 0 0 0 0 0 0 0 +-2.33 4.732 -1.774 0 0 0 0 0 0 0 +-2.326 4.705 -1.764 0 0 0 0 0 0 0 +-2.353 4.721 -1.774 0 0 0 0 0 0 0 +-2.358 4.695 -1.766 0 0 0 0 0 0 0 +-2.375 4.693 -1.768 0 0 0 0 0 0 0 +-2.385 4.675 -1.764 0 0 0 0 0 0 0 +-2.405 4.678 -1.768 0 0 0 0 0 0 0 +-2.413 4.657 -1.763 0 0 0 0 0 0 0 +-2.433 4.659 -1.767 0 0 0 0 0 0 0 +-2.432 4.64 -1.761 0 0 0 0 0 0 0 +-2.451 4.641 -1.764 0 0 0 0 0 0 0 +-2.463 4.628 -1.762 0 0 0 0 0 0 0 +-2.481 4.627 -1.765 0 0 0 0 0 0 0 +-2.496 4.619 -1.765 0 0 0 0 0 0 0 +-2.505 4.602 -1.761 0 0 0 0 0 0 0 +-2.526 4.607 -1.766 0 0 0 0 0 0 0 +-2.534 4.603 -1.766 0 0 0 0 0 0 0 +-2.543 4.585 -1.762 0 0 0 0 0 0 0 +-2.567 4.595 -1.77 0 0 0 0 0 0 0 +-2.579 4.582 -1.768 0 0 0 0 0 0 0 +-2.584 4.558 -1.761 0 0 0 0 0 0 0 +-2.6 4.553 -1.762 0 0 0 0 0 0 0 +-2.62 4.554 -1.766 0 0 0 0 0 0 0 +-2.633 4.56 -1.77 0 0 0 0 0 0 0 +-2.649 4.555 -1.772 0 0 0 0 0 0 0 +-2.661 4.543 -1.77 0 0 0 0 0 0 0 +-2.669 4.524 -1.765 0 0 0 0 0 0 0 +-2.688 4.523 -1.769 0 0 0 0 0 0 0 +-2.698 4.508 -1.766 0 0 0 0 0 0 0 +-2.713 4.502 -1.767 0 0 0 0 0 0 0 +-2.72 4.497 -1.767 0 0 0 0 0 0 0 +-2.742 4.502 -1.772 0 0 0 0 0 0 0 +-2.748 4.48 -1.767 0 0 0 0 0 0 0 +-2.767 4.479 -1.77 0 0 0 0 0 0 0 +-2.783 4.472 -1.771 0 0 0 0 0 0 0 +-2.792 4.456 -1.768 0 0 0 0 0 0 0 +-2.81 4.453 -1.77 0 0 0 0 0 0 0 +-2.818 4.45 -1.771 0 0 0 0 0 0 0 +-2.831 4.44 -1.77 0 0 0 0 0 0 0 +-2.844 4.431 -1.77 0 0 0 0 0 0 0 +-2.86 4.425 -1.772 0 0 0 0 0 0 0 +-2.873 4.415 -1.771 0 0 0 0 0 0 0 +-2.886 4.404 -1.77 0 0 0 0 0 0 0 +-2.915 4.419 -1.78 0 0 0 0 0 0 0 +-2.91 4.379 -1.768 0 0 0 0 0 0 0 +-2.923 4.384 -1.772 0 0 0 0 0 0 0 +-2.936 4.375 -1.772 0 0 0 0 0 0 0 +-2.954 4.372 -1.774 0 0 0 0 0 0 0 +-2.97 4.366 -1.776 0 0 0 0 0 0 0 +-2.974 4.343 -1.77 0 0 0 0 0 0 0 +-2.991 4.338 -1.772 0 0 0 0 0 0 0 +-3.005 4.328 -1.772 0 0 0 0 0 0 0 +-3.011 4.322 -1.771 0 0 0 0 0 0 0 +-3.031 4.322 -1.775 0 0 0 0 0 0 0 +-3.034 4.299 -1.769 0 0 0 0 0 0 0 +-3.05 4.292 -1.77 0 0 0 0 0 0 0 +-3.069 4.29 -1.774 0 0 0 0 0 0 0 +-3.081 4.279 -1.773 0 0 0 0 0 0 0 +-3.089 4.262 -1.77 0 0 0 0 0 0 0 +-3.099 4.261 -1.772 0 0 0 0 0 0 0 +-3.12 4.262 -1.776 0 0 0 0 0 0 0 +-3.126 4.242 -1.772 0 0 0 0 0 0 0 +-3.139 4.232 -1.772 0 0 0 0 0 0 0 +-3.154 4.224 -1.772 0 0 0 0 0 0 0 +-3.169 4.217 -1.774 0 0 0 0 0 0 0 +-3.178 4.201 -1.771 0 0 0 0 0 0 0 +-3.197 4.212 -1.778 0 0 0 0 0 0 0 +-3.199 4.187 -1.772 0 0 0 0 0 0 0 +-3.213 4.179 -1.772 0 0 0 0 0 0 0 +-3.22 4.161 -1.769 0 0 0 0 0 0 0 +-3.253 4.176 -1.78 0 0 0 0 0 0 0 +-3.255 4.151 -1.774 0 0 0 0 0 0 0 +-3.273 4.148 -1.777 0 0 0 0 0 0 0 +-3.276 4.139 -1.775 0 0 0 0 0 0 0 +-3.287 4.125 -1.774 0 0 0 0 0 0 0 +-3.297 4.111 -1.772 0 0 0 0 0 0 0 +-3.309 4.1 -1.772 0 0 0 0 0 0 0 +-3.325 4.093 -1.773 0 0 0 0 0 0 0 +-3.339 4.084 -1.774 0 0 0 0 0 0 0 +-3.353 4.075 -1.774 0 0 0 0 0 0 0 +-3.361 4.058 -1.772 0 0 0 0 0 0 0 +-3.374 4.062 -1.776 0 0 0 0 0 0 0 +-3.393 4.058 -1.779 0 0 0 0 0 0 0 +-3.413 4.056 -1.783 0 0 0 0 0 0 0 +-3.415 4.033 -1.777 0 0 0 0 0 0 0 +-3.44 4.036 -1.784 0 0 0 0 0 0 0 +-3.433 4.003 -1.773 0 0 0 0 0 0 0 +-3.455 4.003 -1.778 0 0 0 0 0 0 0 +-3.455 3.991 -1.775 0 0 0 0 0 0 0 +-3.47 3.983 -1.776 0 0 0 0 0 0 0 +-3.488 3.977 -1.779 0 0 0 0 0 0 0 +-3.496 3.962 -1.777 0 0 0 0 0 0 0 +-3.51 3.952 -1.778 0 0 0 0 0 0 0 +-3.519 3.937 -1.776 0 0 0 0 0 0 0 +-3.536 3.932 -1.778 0 0 0 0 0 0 0 +-3.533 3.916 -1.774 0 0 0 0 0 0 0 +-3.553 3.914 -1.778 0 0 0 0 0 0 0 +-3.557 3.893 -1.773 0 0 0 0 0 0 0 +-3.578 3.891 -1.778 0 0 0 0 0 0 0 +-3.576 3.865 -1.77 0 0 0 0 0 0 0 +-3.597 3.863 -1.775 0 0 0 0 0 0 0 +-3.613 3.856 -1.777 0 0 0 0 0 0 0 +-3.618 3.849 -1.776 0 0 0 0 0 0 0 +-3.627 3.835 -1.775 0 0 0 0 0 0 0 +-3.646 3.83 -1.778 0 0 0 0 0 0 0 +-3.649 3.809 -1.774 0 0 0 0 0 0 0 +-3.666 3.803 -1.776 0 0 0 0 0 0 0 +-3.673 3.786 -1.774 0 0 0 0 0 0 0 +-3.698 3.788 -1.78 0 0 0 0 0 0 0 +-3.7 3.767 -1.776 0 0 0 0 0 0 0 +-3.714 3.769 -1.78 0 0 0 0 0 0 0 +-3.718 3.75 -1.776 0 0 0 0 0 0 0 +-3.74 3.749 -1.781 0 0 0 0 0 0 0 +-3.741 3.726 -1.776 0 0 0 0 0 0 0 +-3.765 3.726 -1.782 0 0 0 0 0 0 0 +-3.769 3.707 -1.778 0 0 0 0 0 0 0 +-3.783 3.697 -1.779 0 0 0 0 0 0 0 +-3.796 3.698 -1.782 0 0 0 0 0 0 0 +-3.825 3.703 -1.791 0 0 0 0 0 0 0 +-3.82 3.675 -1.783 0 0 0 0 0 0 0 +-3.843 3.674 -1.788 0 0 0 0 0 0 0 +-3.84 3.649 -1.782 0 0 0 0 0 0 0 +-3.872 3.656 -1.792 0 0 0 0 0 0 0 +-3.884 3.644 -1.792 0 0 0 0 0 0 0 +-3.892 3.64 -1.793 0 0 0 0 0 0 0 +-3.913 3.637 -1.798 0 0 0 0 0 0 0 +-3.915 3.616 -1.793 0 0 0 0 0 0 0 +-3.922 3.6 -1.791 0 0 0 0 0 0 0 +-3.931 3.585 -1.79 0 0 0 0 0 0 0 +-3.935 3.566 -1.786 0 0 0 0 0 0 0 +-3.984 3.588 -1.805 0 0 0 0 0 0 0 +-3.985 3.578 -1.803 0 0 0 0 0 0 0 +-4.002 3.57 -1.805 0 0 0 0 0 0 0 +-4.023 3.567 -1.81 0 0 0 0 0 0 0 +-4.03 3.55 -1.808 0 0 0 0 0 0 0 +-4.036 3.533 -1.805 0 0 0 0 0 0 0 +-4.038 3.512 -1.801 0 0 0 0 0 0 0 +-4.052 3.502 -1.803 0 0 0 0 0 0 0 +-4.042 3.482 -1.795 0 0 0 0 0 0 0 +-4.051 3.468 -1.795 0 0 0 0 0 0 0 +-4.051 3.446 -1.789 0 0 0 0 0 0 0 +-4.057 3.429 -1.787 0 0 0 0 0 0 0 +-4.078 3.425 -1.792 0 0 0 0 0 0 0 +-4.08 3.405 -1.788 0 0 0 0 0 0 0 +-4.104 3.403 -1.794 0 0 0 0 0 0 0 +-4.099 3.388 -1.789 0 0 0 0 0 0 0 +-4.113 3.378 -1.79 0 0 0 0 0 0 0 +-4.11 3.354 -1.784 0 0 0 0 0 0 0 +-4.135 3.353 -1.791 0 0 0 0 0 0 0 +-4.137 3.333 -1.787 0 0 0 0 0 0 0 +-4.145 3.317 -1.786 0 0 0 0 0 0 0 +-4.152 3.302 -1.784 0 0 0 0 0 0 0 +-4.167 3.292 -1.786 0 0 0 0 0 0 0 +-4.172 3.286 -1.786 0 0 0 0 0 0 0 +-4.187 3.276 -1.788 0 0 0 0 0 0 0 +-4.182 3.251 -1.782 0 0 0 0 0 0 0 +-4.203 3.246 -1.786 0 0 0 0 0 0 0 +-4.201 3.224 -1.781 0 0 0 0 0 0 0 +-4.216 3.214 -1.783 0 0 0 0 0 0 0 +-4.22 3.196 -1.78 0 0 0 0 0 0 0 +-4.235 3.198 -1.785 0 0 0 0 0 0 0 +-4.23 3.173 -1.778 0 0 0 0 0 0 0 +-4.254 3.17 -1.784 0 0 0 0 0 0 0 +-4.273 3.163 -1.788 0 0 0 0 0 0 0 +-4.267 3.139 -1.782 0 0 0 0 0 0 0 +-4.283 3.13 -1.784 0 0 0 0 0 0 0 +-4.296 3.118 -1.786 0 0 0 0 0 0 0 +-4.29 3.104 -1.781 0 0 0 0 0 0 0 +-4.305 3.094 -1.783 0 0 0 0 0 0 0 +-4.31 3.077 -1.781 0 0 0 0 0 0 0 +-4.313 3.059 -1.778 0 0 0 0 0 0 0 +-4.331 3.051 -1.782 0 0 0 0 0 0 0 +-4.342 3.038 -1.782 0 0 0 0 0 0 0 +-4.344 3.019 -1.779 0 0 0 0 0 0 0 +-4.347 3.011 -1.778 0 0 0 0 0 0 0 +-4.355 2.997 -1.778 0 0 0 0 0 0 0 +-4.372 2.988 -1.781 0 0 0 0 0 0 0 +-4.377 2.971 -1.779 0 0 0 0 0 0 0 +-4.397 2.965 -1.784 0 0 0 0 0 0 0 +-4.39 2.941 -1.777 0 0 0 0 0 0 0 +-4.409 2.933 -1.781 0 0 0 0 0 0 0 +-4.411 2.924 -1.78 0 0 0 0 0 0 0 +-4.417 2.908 -1.778 0 0 0 0 0 0 0 +-4.426 2.894 -1.778 0 0 0 0 0 0 0 +-4.439 2.883 -1.78 0 0 0 0 0 0 0 +-4.441 2.864 -1.777 0 0 0 0 0 0 0 +-4.467 2.862 -1.784 0 0 0 0 0 0 0 +-4.462 2.838 -1.778 0 0 0 0 0 0 0 +-4.471 2.824 -1.778 0 0 0 0 0 0 0 +-4.481 2.821 -1.781 0 0 0 0 0 0 0 +-4.489 2.806 -1.78 0 0 0 0 0 0 0 +-4.494 2.79 -1.779 0 0 0 0 0 0 0 +-4.509 2.78 -1.782 0 0 0 0 0 0 0 +-4.523 2.769 -1.784 0 0 0 0 0 0 0 +-4.527 2.752 -1.782 0 0 0 0 0 0 0 +-4.526 2.731 -1.778 0 0 0 0 0 0 0 +-4.53 2.724 -1.778 0 0 0 0 0 0 0 +-4.545 2.714 -1.78 0 0 0 0 0 0 0 +-4.56 2.704 -1.783 0 0 0 0 0 0 0 +-4.562 2.685 -1.78 0 0 0 0 0 0 0 +-4.582 2.678 -1.785 0 0 0 0 0 0 0 +-4.577 2.656 -1.78 0 0 0 0 0 0 0 +-4.584 2.64 -1.779 0 0 0 0 0 0 0 +-4.601 2.641 -1.784 0 0 0 0 0 0 0 +-4.601 2.622 -1.781 0 0 0 0 0 0 0 +-4.614 2.61 -1.783 0 0 0 0 0 0 0 +-4.617 2.593 -1.781 0 0 0 0 0 0 0 +-4.632 2.582 -1.784 0 0 0 0 0 0 0 +-4.627 2.56 -1.778 0 0 0 0 0 0 0 +-4.645 2.551 -1.782 0 0 0 0 0 0 0 +-4.647 2.543 -1.782 0 0 0 0 0 0 0 +-4.655 2.528 -1.782 0 0 0 0 0 0 0 +-4.657 2.51 -1.779 0 0 0 0 0 0 0 +-4.664 2.495 -1.779 0 0 0 0 0 0 0 +-4.672 2.48 -1.779 0 0 0 0 0 0 0 +-4.688 2.47 -1.782 0 0 0 0 0 0 0 +-4.689 2.452 -1.78 0 0 0 0 0 0 0 +-4.703 2.45 -1.784 0 0 0 0 0 0 0 +-4.703 2.431 -1.78 0 0 0 0 0 0 0 +-4.72 2.421 -1.784 0 0 0 0 0 0 0 +-4.73 2.407 -1.785 0 0 0 0 0 0 0 +-4.729 2.388 -1.782 0 0 0 0 0 0 0 +-4.746 2.378 -1.786 0 0 0 0 0 0 0 +-4.757 2.365 -1.787 0 0 0 0 0 0 0 +-4.759 2.357 -1.786 0 0 0 0 0 0 0 +-4.766 2.342 -1.786 0 0 0 0 0 0 0 +-4.777 2.328 -1.788 0 0 0 0 0 0 0 +-4.778 2.31 -1.785 0 0 0 0 0 0 0 +-4.792 2.298 -1.788 0 0 0 0 0 0 0 +-4.794 2.281 -1.786 0 0 0 0 0 0 0 +-4.794 2.262 -1.783 0 0 0 0 0 0 0 +-4.806 2.259 -1.786 0 0 0 0 0 0 0 +-4.818 2.246 -1.788 0 0 0 0 0 0 0 +-4.812 2.225 -1.783 0 0 0 0 0 0 0 +-4.826 2.213 -1.786 0 0 0 0 0 0 0 +-4.838 2.2 -1.788 0 0 0 0 0 0 0 +-4.833 2.179 -1.783 0 0 0 0 0 0 0 +-4.848 2.168 -1.786 0 0 0 0 0 0 0 +-4.846 2.158 -1.784 0 0 0 0 0 0 0 +-4.856 2.144 -1.786 0 0 0 0 0 0 0 +-4.865 2.13 -1.786 0 0 0 0 0 0 0 +-4.878 2.118 -1.789 0 0 0 0 0 0 0 +-4.89 2.104 -1.791 0 0 0 0 0 0 0 +-5.12 -1.937 -1.845 0 0 0 0 0 0 0 +-5.09 -1.943 -1.836 0 0 0 0 0 0 0 +-5.106 -1.968 -1.845 0 0 0 0 0 0 0 +-5.079 -1.976 -1.836 0 0 0 0 0 0 0 +-5.075 -1.993 -1.837 0 0 0 0 0 0 0 +-5.091 -2.017 -1.846 0 0 0 0 0 0 0 +-5.085 -2.033 -1.846 0 0 0 0 0 0 0 +-5.082 -2.041 -1.846 0 0 0 0 0 0 0 +-5.066 -2.054 -1.842 0 0 0 0 0 0 0 +-5.07 -2.074 -1.847 0 0 0 0 0 0 0 +-5.057 -2.087 -1.844 0 0 0 0 0 0 0 +-5.059 -2.107 -1.847 0 0 0 0 0 0 0 +-5.04 -2.117 -1.842 0 0 0 0 0 0 0 +-5.028 -2.131 -1.84 0 0 0 0 0 0 0 +-5.023 -2.138 -1.84 0 0 0 0 0 0 0 +-5.042 -2.165 -1.85 0 0 0 0 0 0 0 +-4.999 -2.165 -1.836 0 0 0 0 0 0 0 +-5.001 -2.185 -1.839 0 0 0 0 0 0 0 +-5.003 -2.204 -1.842 0 0 0 0 0 0 0 +-5.017 -2.229 -1.851 0 0 0 0 0 0 0 +-5.015 -2.247 -1.853 0 0 0 0 0 0 0 +-5.009 -2.254 -1.852 0 0 0 0 0 0 0 +-4.995 -2.267 -1.849 0 0 0 0 0 0 0 +-4.971 -2.275 -1.842 0 0 0 0 0 0 0 +-4.961 -2.289 -1.841 0 0 0 0 0 0 0 +-4.934 -2.296 -1.834 0 0 0 0 0 0 0 +-4.915 -2.306 -1.829 0 0 0 0 0 0 0 +-4.913 -2.323 -1.831 0 0 0 0 0 0 0 +-4.925 -2.348 -1.838 0 0 0 0 0 0 0 +-4.921 -2.355 -1.838 0 0 0 0 0 0 0 +-4.908 -2.368 -1.836 0 0 0 0 0 0 0 +-4.875 -2.372 -1.826 0 0 0 0 0 0 0 +-4.88 -2.393 -1.831 0 0 0 0 0 0 0 +-4.881 -2.412 -1.834 0 0 0 0 0 0 0 +-4.873 -2.427 -1.834 0 0 0 0 0 0 0 +-4.855 -2.438 -1.83 0 0 0 0 0 0 0 +-4.862 -2.45 -1.834 0 0 0 0 0 0 0 +-4.839 -2.458 -1.828 0 0 0 0 0 0 0 +-4.85 -2.483 -1.836 0 0 0 0 0 0 0 +-4.828 -2.491 -1.83 0 0 0 0 0 0 0 +-4.839 -2.516 -1.838 0 0 0 0 0 0 0 +-4.804 -2.517 -1.827 0 0 0 0 0 0 0 +-4.8 -2.534 -1.828 0 0 0 0 0 0 0 +-4.791 -2.539 -1.826 0 0 0 0 0 0 0 +-4.781 -2.553 -1.826 0 0 0 0 0 0 0 +-4.78 -2.571 -1.828 0 0 0 0 0 0 0 +-4.763 -2.582 -1.825 0 0 0 0 0 0 0 +-4.767 -2.603 -1.83 0 0 0 0 0 0 0 +-4.745 -2.611 -1.824 0 0 0 0 0 0 0 +-4.742 -2.628 -1.826 0 0 0 0 0 0 0 +-4.726 -2.63 -1.822 0 0 0 0 0 0 0 +-4.724 -2.648 -1.824 0 0 0 0 0 0 0 +-4.719 -2.665 -1.826 0 0 0 0 0 0 0 +-4.698 -2.672 -1.82 0 0 0 0 0 0 0 +-4.698 -2.692 -1.824 0 0 0 0 0 0 0 +-4.681 -2.702 -1.82 0 0 0 0 0 0 0 +-4.679 -2.72 -1.823 0 0 0 0 0 0 0 +-4.693 -2.738 -1.83 0 0 0 0 0 0 0 +-4.663 -2.74 -1.822 0 0 0 0 0 0 0 +-4.661 -2.759 -1.824 0 0 0 0 0 0 0 +-4.662 -2.779 -1.828 0 0 0 0 0 0 0 +-4.637 -2.784 -1.822 0 0 0 0 0 0 0 +-4.623 -2.796 -1.82 0 0 0 0 0 0 0 +-4.632 -2.821 -1.827 0 0 0 0 0 0 0 +-4.605 -2.815 -1.817 0 0 0 0 0 0 0 +-4.6 -2.831 -1.819 0 0 0 0 0 0 0 +-4.6 -2.851 -1.823 0 0 0 0 0 0 0 +-4.593 -2.867 -1.824 0 0 0 0 0 0 0 +-4.573 -2.874 -1.819 0 0 0 0 0 0 0 +-4.568 -2.891 -1.821 0 0 0 0 0 0 0 +-4.543 -2.896 -1.814 0 0 0 0 0 0 0 +-4.547 -2.908 -1.817 0 0 0 0 0 0 0 +-4.544 -2.926 -1.82 0 0 0 0 0 0 0 +-4.533 -2.94 -1.82 0 0 0 0 0 0 0 +-4.516 -2.949 -1.816 0 0 0 0 0 0 0 +-4.519 -2.971 -1.822 0 0 0 0 0 0 0 +-4.496 -2.976 -1.815 0 0 0 0 0 0 0 +-4.483 -2.988 -1.814 0 0 0 0 0 0 0 +-4.49 -3.012 -1.821 0 0 0 0 0 0 0 +-4.468 -3.008 -1.813 0 0 0 0 0 0 0 +-4.466 -3.027 -1.817 0 0 0 0 0 0 0 +-4.467 -3.049 -1.822 0 0 0 0 0 0 0 +-4.445 -3.054 -1.816 0 0 0 0 0 0 0 +-4.44 -3.071 -1.818 0 0 0 0 0 0 0 +-4.429 -3.084 -1.817 0 0 0 0 0 0 0 +-4.421 -3.099 -1.818 0 0 0 0 0 0 0 +-4.407 -3.1 -1.814 0 0 0 0 0 0 0 +-4.402 -3.117 -1.816 0 0 0 0 0 0 0 +-4.387 -3.127 -1.814 0 0 0 0 0 0 0 +-4.377 -3.141 -1.814 0 0 0 0 0 0 0 +-4.368 -3.155 -1.814 0 0 0 0 0 0 0 +-4.364 -3.173 -1.817 0 0 0 0 0 0 0 +-4.354 -3.187 -1.817 0 0 0 0 0 0 0 +-4.356 -3.199 -1.82 0 0 0 0 0 0 0 +-4.336 -3.205 -1.815 0 0 0 0 0 0 0 +-4.324 -3.217 -1.815 0 0 0 0 0 0 0 +-4.312 -3.23 -1.814 0 0 0 0 0 0 0 +-4.307 -3.247 -1.816 0 0 0 0 0 0 0 +-4.293 -3.258 -1.815 0 0 0 0 0 0 0 +-4.282 -3.27 -1.814 0 0 0 0 0 0 0 +-4.283 -3.282 -1.817 0 0 0 0 0 0 0 +-4.253 -3.28 -1.808 0 0 0 0 0 0 0 +-4.254 -3.303 -1.813 0 0 0 0 0 0 0 +-4.238 -3.311 -1.811 0 0 0 0 0 0 0 +-4.238 -3.333 -1.815 0 0 0 0 0 0 0 +-4.228 -3.346 -1.815 0 0 0 0 0 0 0 +-4.204 -3.349 -1.809 0 0 0 0 0 0 0 +-4.204 -3.36 -1.812 0 0 0 0 0 0 0 +-4.197 -3.376 -1.813 0 0 0 0 0 0 0 +-4.183 -3.387 -1.812 0 0 0 0 0 0 0 +-4.175 -3.402 -1.813 0 0 0 0 0 0 0 +-4.168 -3.417 -1.815 0 0 0 0 0 0 0 +-4.151 -3.426 -1.812 0 0 0 0 0 0 0 +-4.14 -3.439 -1.812 0 0 0 0 0 0 0 +-4.138 -3.448 -1.813 0 0 0 0 0 0 0 +-4.12 -3.455 -1.81 0 0 0 0 0 0 0 +-4.12 -3.477 -1.815 0 0 0 0 0 0 0 +-4.112 -3.493 -1.817 0 0 0 0 0 0 0 +-4.091 -3.497 -1.812 0 0 0 0 0 0 0 +-4.085 -3.513 -1.814 0 0 0 0 0 0 0 +-4.082 -3.534 -1.818 0 0 0 0 0 0 0 +-4.054 -3.52 -1.807 0 0 0 0 0 0 0 +-4.048 -3.538 -1.81 0 0 0 0 0 0 0 +-4.041 -3.554 -1.812 0 0 0 0 0 0 0 +-4.029 -3.566 -1.811 0 0 0 0 0 0 0 +-4.022 -3.582 -1.813 0 0 0 0 0 0 0 +-4.009 -3.594 -1.813 0 0 0 0 0 0 0 +-3.992 -3.601 -1.81 0 0 0 0 0 0 0 +-4.001 -3.62 -1.817 0 0 0 0 0 0 0 +-3.971 -3.616 -1.808 0 0 0 0 0 0 0 +-3.968 -3.636 -1.812 0 0 0 0 0 0 0 +-3.966 -3.658 -1.817 0 0 0 0 0 0 0 +-3.948 -3.664 -1.813 0 0 0 0 0 0 0 +-3.938 -3.677 -1.814 0 0 0 0 0 0 0 +-3.925 -3.688 -1.813 0 0 0 0 0 0 0 +-3.909 -3.686 -1.809 0 0 0 0 0 0 0 +-3.9 -3.7 -1.81 0 0 0 0 0 0 0 +-3.885 -3.709 -1.808 0 0 0 0 0 0 0 +-3.878 -3.726 -1.811 0 0 0 0 0 0 0 +-3.869 -3.741 -1.812 0 0 0 0 0 0 0 +-3.863 -3.758 -1.815 0 0 0 0 0 0 0 +-3.845 -3.764 -1.811 0 0 0 0 0 0 0 +-3.839 -3.77 -1.811 0 0 0 0 0 0 0 +-3.827 -3.782 -1.811 0 0 0 0 0 0 0 +-3.826 -3.804 -1.817 0 0 0 0 0 0 0 +-3.802 -3.805 -1.811 0 0 0 0 0 0 0 +-3.794 -3.82 -1.813 0 0 0 0 0 0 0 +-3.779 -3.83 -1.811 0 0 0 0 0 0 0 +-3.764 -3.839 -1.81 0 0 0 0 0 0 0 +-3.774 -3.861 -1.818 0 0 0 0 0 0 0 +-3.753 -3.863 -1.813 0 0 0 0 0 0 0 +-3.742 -3.876 -1.814 0 0 0 0 0 0 0 +-3.731 -3.889 -1.815 0 0 0 0 0 0 0 +-3.714 -3.896 -1.812 0 0 0 0 0 0 0 +-3.703 -3.909 -1.813 0 0 0 0 0 0 0 +-3.692 -3.922 -1.813 0 0 0 0 0 0 0 +-3.691 -3.933 -1.816 0 0 0 0 0 0 0 +-3.681 -3.947 -1.817 0 0 0 0 0 0 0 +-3.668 -3.959 -1.817 0 0 0 0 0 0 0 +-3.666 -3.981 -1.823 0 0 0 0 0 0 0 +-3.64 -3.978 -1.815 0 0 0 0 0 0 0 +-3.635 -3.997 -1.82 0 0 0 0 0 0 0 +-3.626 -4.013 -1.822 0 0 0 0 0 0 0 +-3.608 -4.019 -1.819 0 0 0 0 0 0 0 +-3.607 -4.03 -1.822 0 0 0 0 0 0 0 +-3.589 -4.036 -1.819 0 0 0 0 0 0 0 +-3.579 -4.05 -1.82 0 0 0 0 0 0 0 +-3.558 -4.051 -1.815 0 0 0 0 0 0 0 +-3.555 -4.074 -1.821 0 0 0 0 0 0 0 +-3.542 -4.085 -1.821 0 0 0 0 0 0 0 +-3.549 -4.119 -1.832 0 0 0 0 0 0 0 +-3.557 -4.141 -1.84 0 0 0 0 0 0 0 +-3.533 -4.14 -1.834 0 0 0 0 0 0 0 +-3.494 -4.121 -1.82 0 0 0 0 0 0 0 +-3.468 -4.116 -1.812 0 0 0 0 0 0 0 +-3.451 -4.122 -1.81 0 0 0 0 0 0 0 +-3.458 -4.156 -1.821 0 0 0 0 0 0 0 +-3.444 -4.166 -1.82 0 0 0 0 0 0 0 +-3.433 -4.167 -1.818 0 0 0 0 0 0 0 +-3.409 -4.164 -1.812 0 0 0 0 0 0 0 +-3.416 -4.198 -1.823 0 0 0 0 0 0 0 +-3.382 -4.184 -1.811 0 0 0 0 0 0 0 +-3.376 -4.204 -1.815 0 0 0 0 0 0 0 +-3.36 -4.211 -1.814 0 0 0 0 0 0 0 +-3.347 -4.222 -1.814 0 0 0 0 0 0 0 +-3.338 -4.224 -1.813 0 0 0 0 0 0 0 +-3.321 -4.23 -1.811 0 0 0 0 0 0 0 +-3.302 -4.233 -1.807 0 0 0 0 0 0 0 +-3.291 -4.247 -1.809 0 0 0 0 0 0 0 +-3.289 -4.272 -1.815 0 0 0 0 0 0 0 +-3.261 -4.263 -1.807 0 0 0 0 0 0 0 +-3.252 -4.279 -1.809 0 0 0 0 0 0 0 +-3.249 -4.288 -1.811 0 0 0 0 0 0 0 +-3.222 -4.281 -1.803 0 0 0 0 0 0 0 +-3.217 -4.303 -1.809 0 0 0 0 0 0 0 +-3.208 -4.319 -1.811 0 0 0 0 0 0 0 +-3.186 -4.317 -1.806 0 0 0 0 0 0 0 +-3.172 -4.327 -1.806 0 0 0 0 0 0 0 +-3.165 -4.346 -1.81 0 0 0 0 0 0 0 +-3.148 -4.337 -1.804 0 0 0 0 0 0 0 +-3.133 -4.344 -1.803 0 0 0 0 0 0 0 +-3.138 -4.38 -1.814 0 0 0 0 0 0 0 +-3.105 -4.364 -1.803 0 0 0 0 0 0 0 +-3.094 -4.376 -1.804 0 0 0 0 0 0 0 +-3.085 -4.394 -1.807 0 0 0 0 0 0 0 +-3.074 -4.407 -1.809 0 0 0 0 0 0 0 +-3.064 -4.407 -1.807 0 0 0 0 0 0 0 +-3.048 -4.413 -1.805 0 0 0 0 0 0 0 +-3.034 -4.423 -1.805 0 0 0 0 0 0 0 +-3.018 -4.429 -1.804 0 0 0 0 0 0 0 +-3.006 -4.442 -1.805 0 0 0 0 0 0 0 +-2.989 -4.447 -1.803 0 0 0 0 0 0 0 +-2.977 -4.459 -1.805 0 0 0 0 0 0 0 +-2.968 -4.461 -1.803 0 0 0 0 0 0 0 +-2.961 -4.481 -1.808 0 0 0 0 0 0 0 +-2.94 -4.479 -1.803 0 0 0 0 0 0 0 +-2.925 -4.487 -1.803 0 0 0 0 0 0 0 +-2.907 -4.491 -1.801 0 0 0 0 0 0 0 +-2.897 -4.507 -1.803 0 0 0 0 0 0 0 +-2.88 -4.511 -1.801 0 0 0 0 0 0 0 +-2.876 -4.52 -1.803 0 0 0 0 0 0 0 +-2.867 -4.537 -1.807 0 0 0 0 0 0 0 +-2.846 -4.535 -1.802 0 0 0 0 0 0 0 +-2.83 -4.542 -1.801 0 0 0 0 0 0 0 +-2.826 -4.567 -1.808 0 0 0 0 0 0 0 +-2.796 -4.55 -1.797 0 0 0 0 0 0 0 +-2.788 -4.57 -1.802 0 0 0 0 0 0 0 +-2.781 -4.575 -1.802 0 0 0 0 0 0 0 +-2.768 -4.585 -1.803 0 0 0 0 0 0 0 +-2.746 -4.583 -1.798 0 0 0 0 0 0 0 +-2.743 -4.609 -1.805 0 0 0 0 0 0 0 +-2.719 -4.601 -1.799 0 0 0 0 0 0 0 +-2.706 -4.613 -1.8 0 0 0 0 0 0 0 +-2.697 -4.631 -1.804 0 0 0 0 0 0 0 +-2.68 -4.619 -1.797 0 0 0 0 0 0 0 +-2.669 -4.633 -1.799 0 0 0 0 0 0 0 +-2.658 -4.647 -1.802 0 0 0 0 0 0 0 +-2.638 -4.646 -1.798 0 0 0 0 0 0 0 +-2.622 -4.653 -1.797 0 0 0 0 0 0 0 +-2.613 -4.671 -1.801 0 0 0 0 0 0 0 +-2.597 -4.676 -1.8 0 0 0 0 0 0 0 +-2.589 -4.68 -1.8 0 0 0 0 0 0 0 +-2.581 -4.699 -1.805 0 0 0 0 0 0 0 +-2.558 -4.693 -1.799 0 0 0 0 0 0 0 +-2.545 -4.704 -1.8 0 0 0 0 0 0 0 +-2.537 -4.725 -1.805 0 0 0 0 0 0 0 +-2.51 -4.71 -1.796 0 0 0 0 0 0 0 +-2.5 -4.726 -1.799 0 0 0 0 0 0 0 +-2.488 -4.739 -1.801 0 0 0 0 0 0 0 +-2.477 -4.736 -1.799 0 0 0 0 0 0 0 +-2.463 -4.747 -1.8 0 0 0 0 0 0 0 +-2.453 -4.763 -1.803 0 0 0 0 0 0 0 +-2.429 -4.754 -1.797 0 0 0 0 0 0 0 +-2.425 -4.782 -1.805 0 0 0 0 0 0 0 +-2.406 -4.783 -1.802 0 0 0 0 0 0 0 +-2.39 -4.789 -1.801 0 0 0 0 0 0 0 +-2.385 -4.797 -1.803 0 0 0 0 0 0 0 +-2.372 -4.808 -1.805 0 0 0 0 0 0 0 +-2.353 -4.809 -1.802 0 0 0 0 0 0 0 +-2.34 -4.82 -1.803 0 0 0 0 0 0 0 +-2.329 -4.835 -1.807 0 0 0 0 0 0 0 +-2.31 -4.834 -1.803 0 0 0 0 0 0 0 +-2.309 -4.853 -1.809 0 0 0 0 0 0 0 +-2.286 -4.843 -1.803 0 0 0 0 0 0 0 +-2.266 -4.84 -1.799 0 0 0 0 0 0 0 +-2.248 -4.841 -1.796 0 0 0 0 0 0 0 +-2.247 -4.878 -1.808 0 0 0 0 0 0 0 +-2.239 -4.902 -1.815 0 0 0 0 0 0 0 +-2.24 -4.945 -1.829 0 0 0 0 0 0 0 +-2.227 -4.958 -1.831 0 0 0 0 0 0 0 +-2.215 -4.953 -1.828 0 0 0 0 0 0 0 +-2.186 -4.929 -1.815 0 0 0 0 0 0 0 +-2.162 -4.916 -1.808 0 0 0 0 0 0 0 +-2.143 -4.916 -1.805 0 0 0 0 0 0 0 +-2.134 -4.937 -1.811 0 0 0 0 0 0 0 +-2.1 -4.9 -1.794 0 0 0 0 0 0 0 +-2.096 -4.933 -1.804 0 0 0 0 0 0 0 +-2.083 -4.926 -1.8 0 0 0 0 0 0 0 +-2.058 -4.908 -1.79 0 0 0 0 0 0 0 +-2.042 -4.914 -1.79 0 0 0 0 0 0 0 +-2.019 -4.902 -1.783 0 0 0 0 0 0 0 +-2.006 -4.915 -1.786 0 0 0 0 0 0 0 +-1.989 -4.916 -1.784 0 0 0 0 0 0 0 +-1.967 -4.908 -1.778 0 0 0 0 0 0 0 +-1.961 -4.915 -1.78 0 0 0 0 0 0 0 +-1.944 -4.918 -1.778 0 0 0 0 0 0 0 +-1.927 -4.918 -1.776 0 0 0 0 0 0 0 +-1.911 -4.924 -1.776 0 0 0 0 0 0 0 +-1.891 -4.918 -1.772 0 0 0 0 0 0 0 +-1.874 -4.919 -1.77 0 0 0 0 0 0 0 +-1.859 -4.926 -1.77 0 0 0 0 0 0 0 +-1.852 -4.933 -1.772 0 0 0 0 0 0 0 +-1.834 -4.93 -1.768 0 0 0 0 0 0 0 +-1.815 -4.929 -1.765 0 0 0 0 0 0 0 +-1.801 -4.938 -1.767 0 0 0 0 0 0 0 +-1.785 -4.942 -1.766 0 0 0 0 0 0 0 +-1.77 -4.949 -1.767 0 0 0 0 0 0 0 +-1.757 -4.962 -1.77 0 0 0 0 0 0 0 +-1.744 -4.95 -1.764 0 0 0 0 0 0 0 +-1.728 -4.954 -1.763 0 0 0 0 0 0 0 +-1.719 -4.979 -1.771 0 0 0 0 0 0 0 +-1.697 -4.965 -1.763 0 0 0 0 0 0 0 +-1.682 -4.972 -1.764 0 0 0 0 0 0 0 +-1.671 -4.991 -1.77 0 0 0 0 0 0 0 +-1.647 -4.971 -1.76 0 0 0 0 0 0 0 +-1.642 -4.981 -1.763 0 0 0 0 0 0 0 +-1.628 -4.993 -1.765 0 0 0 0 0 0 0 +-1.61 -4.99 -1.762 0 0 0 0 0 0 0 +-1.593 -4.991 -1.761 0 0 0 0 0 0 0 +-1.582 -5.01 -1.766 0 0 0 0 0 0 0 +-1.559 -4.992 -1.757 0 0 0 0 0 0 0 +-1.549 -5.015 -1.764 0 0 0 0 0 0 0 +-1.541 -5.019 -1.765 0 0 0 0 0 0 0 +-1.517 -4.997 -1.755 0 0 0 0 0 0 0 +-1.507 -5.021 -1.762 0 0 0 0 0 0 0 +-1.487 -5.01 -1.756 0 0 0 0 0 0 0 +-1.472 -5.016 -1.757 0 0 0 0 0 0 0 +-1.454 -5.016 -1.755 0 0 0 0 0 0 0 +-1.442 -5.033 -1.759 0 0 0 0 0 0 0 +-1.431 -5.022 -1.755 0 0 0 0 0 0 0 +-1.417 -5.034 -1.757 0 0 0 0 0 0 0 +-1.4 -5.033 -1.755 0 0 0 0 0 0 0 +-1.382 -5.032 -1.753 0 0 0 0 0 0 0 +-1.366 -5.034 -1.753 0 0 0 0 0 0 0 +-1.35 -5.037 -1.752 0 0 0 0 0 0 0 +-1.336 -5.05 -1.755 0 0 0 0 0 0 0 +-1.327 -5.047 -1.753 0 0 0 0 0 0 0 +-1.312 -5.055 -1.755 0 0 0 0 0 0 0 +-1.299 -5.07 -1.759 0 0 0 0 0 0 0 +-1.275 -5.045 -1.748 0 0 0 0 0 0 0 +-1.263 -5.061 -1.753 0 0 0 0 0 0 0 +-1.247 -5.065 -1.753 0 0 0 0 0 0 0 +-1.228 -5.058 -1.749 0 0 0 0 0 0 0 +-1.222 -5.067 -1.751 0 0 0 0 0 0 0 +-1.207 -5.075 -1.753 0 0 0 0 0 0 0 +-1.19 -5.073 -1.751 0 0 0 0 0 0 0 +-1.173 -5.075 -1.75 0 0 0 0 0 0 0 +-1.156 -5.073 -1.748 0 0 0 0 0 0 0 +-1.14 -5.075 -1.747 0 0 0 0 0 0 0 +-1.125 -5.084 -1.749 0 0 0 0 0 0 0 +-1.117 -5.084 -1.749 0 0 0 0 0 0 0 +-1.098 -5.075 -1.744 0 0 0 0 0 0 0 +-1.082 -5.08 -1.745 0 0 0 0 0 0 0 +-1.066 -5.08 -1.743 0 0 0 0 0 0 0 +-1.052 -5.092 -1.747 0 0 0 0 0 0 0 +-1.034 -5.09 -1.745 0 0 0 0 0 0 0 +-1.022 -5.11 -1.751 0 0 0 0 0 0 0 +-1.01 -5.095 -1.745 0 0 0 0 0 0 0 +-0.996 -5.103 -1.747 0 0 0 0 0 0 0 +-0.982 -5.118 -1.751 0 0 0 0 0 0 0 +-0.965 -5.119 -1.75 0 0 0 0 0 0 0 +-0.95 -5.125 -1.751 0 0 0 0 0 0 0 +-0.936 -5.141 -1.756 0 0 0 0 0 0 0 +-0.914 -5.113 -1.745 0 0 0 0 0 0 0 +-0.906 -5.112 -1.744 0 0 0 0 0 0 0 +-0.892 -5.126 -1.748 0 0 0 0 0 0 0 +-0.876 -5.129 -1.748 0 0 0 0 0 0 0 +-0.859 -5.128 -1.747 0 0 0 0 0 0 0 +-0.844 -5.138 -1.749 0 0 0 0 0 0 0 +-0.827 -5.137 -1.748 0 0 0 0 0 0 0 +-0.809 -5.127 -1.743 0 0 0 0 0 0 0 +-0.805 -5.152 -1.752 0 0 0 0 0 0 0 +-0.79 -5.166 -1.756 0 0 0 0 0 0 0 +-0.771 -5.148 -1.749 0 0 0 0 0 0 0 +-0.757 -5.163 -1.753 0 0 0 0 0 0 0 +-0.741 -5.171 -1.755 0 0 0 0 0 0 0 +-0.723 -5.16 -1.751 0 0 0 0 0 0 0 +-0.706 -5.157 -1.749 0 0 0 0 0 0 0 +-0.691 -5.163 -1.75 0 0 0 0 0 0 0 +-0.682 -5.162 -1.749 0 0 0 0 0 0 0 +-0.667 -5.17 -1.751 0 0 0 0 0 0 0 +-0.65 -5.168 -1.75 0 0 0 0 0 0 0 +-0.634 -5.168 -1.749 0 0 0 0 0 0 0 +-0.617 -5.165 -1.747 0 0 0 0 0 0 0 +-0.601 -5.17 -1.749 0 0 0 0 0 0 0 +-0.585 -5.174 -1.749 0 0 0 0 0 0 0 +-0.577 -5.181 -1.751 0 0 0 0 0 0 0 +-0.561 -5.179 -1.75 0 0 0 0 0 0 0 +-0.544 -5.177 -1.749 0 0 0 0 0 0 0 +-0.529 -5.188 -1.752 0 0 0 0 0 0 0 +-0.513 -5.193 -1.753 0 0 0 0 0 0 0 +-0.496 -5.191 -1.752 0 0 0 0 0 0 0 +-0.489 -5.203 -1.756 0 0 0 0 0 0 0 +-0.471 -5.189 -1.751 0 0 0 0 0 0 0 +-0.456 -5.204 -1.755 0 0 0 0 0 0 0 +-0.439 -5.202 -1.754 0 0 0 0 0 0 0 +-0.423 -5.205 -1.755 0 0 0 0 0 0 0 +-0.407 -5.202 -1.753 0 0 0 0 0 0 0 +-0.39 -5.194 -1.75 0 0 0 0 0 0 0 +-0.374 -5.211 -1.755 0 0 0 0 0 0 0 +-0.367 -5.224 -1.76 0 0 0 0 0 0 0 +-0.349 -5.195 -1.749 0 0 0 0 0 0 0 +-0.334 -5.223 -1.759 0 0 0 0 0 0 0 +-0.317 -5.218 -1.757 0 0 0 0 0 0 0 +-0.301 -5.228 -1.76 0 0 0 0 0 0 0 +-0.284 -5.216 -1.755 0 0 0 0 0 0 0 +-0.268 -5.217 -1.755 0 0 0 0 0 0 0 +-0.26 -5.216 -1.755 0 0 0 0 0 0 0 +-0.243 -5.22 -1.756 0 0 0 0 0 0 0 +-0.227 -5.228 -1.759 0 0 0 0 0 0 0 +-0.21 -5.214 -1.753 0 0 0 0 0 0 0 +-0.195 -5.235 -1.761 0 0 0 0 0 0 0 +-0.178 -5.225 -1.757 0 0 0 0 0 0 0 +-0.162 -5.237 -1.761 0 0 0 0 0 0 0 +-0.153 -5.22 -1.755 0 0 0 0 0 0 0 +-0.137 -5.232 -1.759 0 0 0 0 0 0 0 +-0.12 -5.219 -1.754 0 0 0 0 0 0 0 +-0.104 -5.242 -1.762 0 0 0 0 0 0 0 +-0.087 -5.212 -1.751 0 0 0 0 0 0 0 +-0.071 -5.225 -1.756 0 0 0 0 0 0 0 +-0.055 -5.22 -1.754 0 0 0 0 0 0 0 +-0.047 -5.237 -1.76 0 0 0 0 0 0 0 +-0.03 -5.226 -1.756 0 0 0 0 0 0 0 +-0.014 -5.243 -1.762 0 0 0 0 0 0 0 +0.003 -5.228 -1.757 0 0 0 0 0 0 0 +0.019 -5.243 -1.762 0 0 0 0 0 0 0 +0.036 -5.22 -1.754 0 0 0 0 0 0 0 +0.052 -5.254 -1.766 0 0 0 0 0 0 0 +0.06 -5.218 -1.753 0 0 0 0 0 0 0 +0.077 -5.229 -1.757 0 0 0 0 0 0 0 +0.093 -5.234 -1.759 0 0 0 0 0 0 0 +0.109 -5.223 -1.755 0 0 0 0 0 0 0 +0.126 -5.236 -1.76 0 0 0 0 0 0 0 +0.143 -5.25 -1.765 0 0 0 0 0 0 0 +0.159 -5.235 -1.76 0 0 0 0 0 0 0 +0.167 -5.221 -1.755 0 0 0 0 0 0 0 +0.184 -5.251 -1.766 0 0 0 0 0 0 0 +0.2 -5.233 -1.76 0 0 0 0 0 0 0 +0.217 -5.242 -1.763 0 0 0 0 0 0 0 +0.233 -5.236 -1.761 0 0 0 0 0 0 0 +0.249 -5.229 -1.759 0 0 0 0 0 0 0 +0.266 -5.234 -1.761 0 0 0 0 0 0 0 +0.274 -5.232 -1.761 0 0 0 0 0 0 0 +0.29 -5.212 -1.754 0 0 0 0 0 0 0 +0.307 -5.232 -1.761 0 0 0 0 0 0 0 +0.325 -5.253 -1.77 0 0 0 0 0 0 0 +0.342 -5.269 -1.776 0 0 0 0 0 0 0 +0.356 -5.229 -1.761 0 0 0 0 0 0 0 +0.38 -5.208 -1.755 0 0 0 0 0 0 0 +0.396 -5.203 -1.753 0 0 0 0 0 0 0 +0.414 -5.232 -1.764 0 0 0 0 0 0 0 +0.428 -5.199 -1.753 0 0 0 0 0 0 0 +0.448 -5.237 -1.767 0 0 0 0 0 0 0 +0.463 -5.222 -1.762 0 0 0 0 0 0 0 +0.481 -5.232 -1.766 0 0 0 0 0 0 0 +0.49 -5.239 -1.769 0 0 0 0 0 0 0 +0.504 -5.22 -1.763 0 0 0 0 0 0 0 +2.549 -4.702 -1.8 0 0 0 0 0 0 0 +2.557 -4.682 -1.795 0 0 0 0 0 0 0 +2.568 -4.683 -1.797 0 0 0 0 0 0 0 +2.597 -4.701 -1.808 0 0 0 0 0 0 0 +2.615 -4.7 -1.811 0 0 0 0 0 0 0 +2.612 -4.66 -1.798 0 0 0 0 0 0 0 +2.633 -4.662 -1.802 0 0 0 0 0 0 0 +2.654 -4.665 -1.807 0 0 0 0 0 0 0 +2.665 -4.65 -1.804 0 0 0 0 0 0 0 +2.667 -4.638 -1.801 0 0 0 0 0 0 0 +2.683 -4.631 -1.801 0 0 0 0 0 0 0 +2.699 -4.626 -1.803 0 0 0 0 0 0 0 +2.713 -4.616 -1.802 0 0 0 0 0 0 0 +2.736 -4.622 -1.808 0 0 0 0 0 0 0 +2.739 -4.594 -1.8 0 0 0 0 0 0 0 +2.758 -4.593 -1.803 0 0 0 0 0 0 0 +2.772 -4.583 -1.803 0 0 0 0 0 0 0 +2.778 -4.577 -1.802 0 0 0 0 0 0 0 +2.789 -4.563 -1.8 0 0 0 0 0 0 0 +2.804 -4.555 -1.8 0 0 0 0 0 0 0 +2.826 -4.559 -1.805 0 0 0 0 0 0 0 +2.835 -4.542 -1.802 0 0 0 0 0 0 0 +2.854 -4.541 -1.805 0 0 0 0 0 0 0 +2.862 -4.521 -1.801 0 0 0 0 0 0 0 +2.88 -4.534 -1.808 0 0 0 0 0 0 0 +2.888 -4.515 -1.804 0 0 0 0 0 0 0 +2.91 -4.519 -1.809 0 0 0 0 0 0 0 +2.915 -4.495 -1.803 0 0 0 0 0 0 0 +2.939 -4.502 -1.81 0 0 0 0 0 0 0 +2.945 -4.48 -1.805 0 0 0 0 0 0 0 +2.958 -4.469 -1.804 0 0 0 0 0 0 0 +2.966 -4.466 -1.805 0 0 0 0 0 0 0 +2.979 -4.455 -1.804 0 0 0 0 0 0 0 +3.001 -4.457 -1.809 0 0 0 0 0 0 0 +3.003 -4.43 -1.801 0 0 0 0 0 0 0 +3.028 -4.436 -1.808 0 0 0 0 0 0 0 +3.039 -4.424 -1.807 0 0 0 0 0 0 0 +3.045 -4.417 -1.806 0 0 0 0 0 0 0 +3.055 -4.401 -1.803 0 0 0 0 0 0 0 +3.074 -4.399 -1.807 0 0 0 0 0 0 0 +3.087 -4.388 -1.806 0 0 0 0 0 0 0 +3.092 -4.366 -1.801 0 0 0 0 0 0 0 +3.113 -4.367 -1.805 0 0 0 0 0 0 0 +3.131 -4.364 -1.808 0 0 0 0 0 0 0 +3.139 -4.346 -1.805 0 0 0 0 0 0 0 +3.158 -4.358 -1.812 0 0 0 0 0 0 0 +3.162 -4.334 -1.806 0 0 0 0 0 0 0 +3.177 -4.326 -1.807 0 0 0 0 0 0 0 +3.19 -4.316 -1.807 0 0 0 0 0 0 0 +3.198 -4.298 -1.803 0 0 0 0 0 0 0 +3.217 -4.296 -1.807 0 0 0 0 0 0 0 +3.231 -4.286 -1.807 0 0 0 0 0 0 0 +3.242 -4.287 -1.809 0 0 0 0 0 0 0 +3.245 -4.263 -1.803 0 0 0 0 0 0 0 +3.274 -4.272 -1.812 0 0 0 0 0 0 0 +3.271 -4.241 -1.803 0 0 0 0 0 0 0 +3.291 -4.239 -1.807 0 0 0 0 0 0 0 +3.299 -4.222 -1.803 0 0 0 0 0 0 0 +3.325 -4.228 -1.811 0 0 0 0 0 0 0 +3.32 -4.208 -1.804 0 0 0 0 0 0 0 +3.336 -4.202 -1.806 0 0 0 0 0 0 0 +3.348 -4.19 -1.805 0 0 0 0 0 0 0 +3.365 -4.183 -1.807 0 0 0 0 0 0 0 +3.372 -4.166 -1.804 0 0 0 0 0 0 0 +3.393 -4.164 -1.808 0 0 0 0 0 0 0 +3.4 -4.146 -1.805 0 0 0 0 0 0 0 +3.413 -4.149 -1.809 0 0 0 0 0 0 0 +3.414 -4.124 -1.802 0 0 0 0 0 0 0 +3.432 -4.119 -1.805 0 0 0 0 0 0 0 +3.447 -4.111 -1.806 0 0 0 0 0 0 0 +3.472 -4.115 -1.813 0 0 0 0 0 0 0 +3.467 -4.082 -1.803 0 0 0 0 0 0 0 +3.492 -4.098 -1.813 0 0 0 0 0 0 0 +3.494 -4.074 -1.807 0 0 0 0 0 0 0 +3.498 -4.053 -1.802 0 0 0 0 0 0 0 +3.518 -4.051 -1.806 0 0 0 0 0 0 0 +3.528 -4.037 -1.805 0 0 0 0 0 0 0 +3.53 -4.013 -1.799 0 0 0 0 0 0 0 +3.542 -4.002 -1.799 0 0 0 0 0 0 0 +3.564 -4.001 -1.803 0 0 0 0 0 0 0 +3.565 -3.989 -1.801 0 0 0 0 0 0 0 +3.576 -3.977 -1.8 0 0 0 0 0 0 0 +3.595 -3.973 -1.803 0 0 0 0 0 0 0 +3.6 -3.953 -1.799 0 0 0 0 0 0 0 +3.61 -3.939 -1.798 0 0 0 0 0 0 0 +3.625 -3.93 -1.799 0 0 0 0 0 0 0 +3.634 -3.916 -1.798 0 0 0 0 0 0 0 +3.634 -3.903 -1.795 0 0 0 0 0 0 0 +3.65 -3.896 -1.797 0 0 0 0 0 0 0 +3.661 -3.883 -1.796 0 0 0 0 0 0 0 +3.672 -3.87 -1.795 0 0 0 0 0 0 0 +3.692 -3.867 -1.799 0 0 0 0 0 0 0 +3.7 -3.851 -1.797 0 0 0 0 0 0 0 +3.707 -3.834 -1.795 0 0 0 0 0 0 0 +3.714 -3.83 -1.795 0 0 0 0 0 0 0 +3.721 -3.813 -1.793 0 0 0 0 0 0 0 +3.744 -3.812 -1.798 0 0 0 0 0 0 0 +3.754 -3.799 -1.797 0 0 0 0 0 0 0 +3.766 -3.787 -1.797 0 0 0 0 0 0 0 +3.777 -3.774 -1.797 0 0 0 0 0 0 0 +3.79 -3.763 -1.797 0 0 0 0 0 0 0 +3.792 -3.753 -1.795 0 0 0 0 0 0 0 +3.798 -3.736 -1.793 0 0 0 0 0 0 0 +3.817 -3.73 -1.796 0 0 0 0 0 0 0 +3.839 -3.729 -1.801 0 0 0 0 0 0 0 +3.833 -3.7 -1.793 0 0 0 0 0 0 0 +3.853 -3.696 -1.797 0 0 0 0 0 0 0 +3.878 -3.697 -1.803 0 0 0 0 0 0 0 +3.888 -3.694 -1.805 0 0 0 0 0 0 0 +3.904 -3.686 -1.807 0 0 0 0 0 0 0 +3.919 -3.678 -1.809 0 0 0 0 0 0 0 +3.927 -3.661 -1.807 0 0 0 0 0 0 0 +3.94 -3.65 -1.808 0 0 0 0 0 0 0 +3.936 -3.624 -1.801 0 0 0 0 0 0 0 +3.953 -3.617 -1.803 0 0 0 0 0 0 0 +3.96 -3.612 -1.804 0 0 0 0 0 0 0 +3.967 -3.595 -1.802 0 0 0 0 0 0 0 +3.974 -3.579 -1.8 0 0 0 0 0 0 0 +3.995 -3.575 -1.805 0 0 0 0 0 0 0 +3.999 -3.557 -1.801 0 0 0 0 0 0 0 +4.022 -3.554 -1.807 0 0 0 0 0 0 0 +4.02 -3.53 -1.801 0 0 0 0 0 0 0 +4.037 -3.534 -1.806 0 0 0 0 0 0 0 +4.03 -3.505 -1.797 0 0 0 0 0 0 0 +4.051 -3.501 -1.802 0 0 0 0 0 0 0 +4.056 -3.483 -1.799 0 0 0 0 0 0 0 +4.067 -3.47 -1.799 0 0 0 0 0 0 0 +4.079 -3.459 -1.8 0 0 0 0 0 0 0 +4.104 -3.458 -1.807 0 0 0 0 0 0 0 +4.087 -3.432 -1.796 0 0 0 0 0 0 0 +4.105 -3.426 -1.799 0 0 0 0 0 0 0 +4.113 -3.41 -1.798 0 0 0 0 0 0 0 +4.128 -3.401 -1.8 0 0 0 0 0 0 0 +4.122 -3.375 -1.793 0 0 0 0 0 0 0 +4.146 -3.372 -1.799 0 0 0 0 0 0 0 +4.146 -3.351 -1.794 0 0 0 0 0 0 0 +4.165 -3.355 -1.8 0 0 0 0 0 0 0 +4.167 -3.335 -1.796 0 0 0 0 0 0 0 +4.181 -3.326 -1.798 0 0 0 0 0 0 0 +4.182 -3.304 -1.793 0 0 0 0 0 0 0 +4.195 -3.293 -1.795 0 0 0 0 0 0 0 +4.204 -3.279 -1.794 0 0 0 0 0 0 0 +4.221 -3.272 -1.797 0 0 0 0 0 0 0 +4.213 -3.255 -1.791 0 0 0 0 0 0 0 +4.243 -3.256 -1.8 0 0 0 0 0 0 0 +4.239 -3.233 -1.794 0 0 0 0 0 0 0 +4.268 -3.233 -1.802 0 0 0 0 0 0 0 +4.255 -3.202 -1.792 0 0 0 0 0 0 0 +4.282 -3.202 -1.799 0 0 0 0 0 0 0 +4.272 -3.173 -1.79 0 0 0 0 0 0 0 +4.288 -3.175 -1.795 0 0 0 0 0 0 0 +4.287 -3.153 -1.79 0 0 0 0 0 0 0 +4.308 -3.148 -1.795 0 0 0 0 0 0 0 +4.308 -3.127 -1.791 0 0 0 0 0 0 0 +4.317 -3.113 -1.79 0 0 0 0 0 0 0 +4.337 -3.107 -1.795 0 0 0 0 0 0 0 +4.336 -3.085 -1.79 0 0 0 0 0 0 0 +4.346 -3.082 -1.793 0 0 0 0 0 0 0 +4.36 -3.072 -1.795 0 0 0 0 0 0 0 +4.353 -3.046 -1.787 0 0 0 0 0 0 0 +4.368 -3.037 -1.79 0 0 0 0 0 0 0 +4.373 -3.02 -1.788 0 0 0 0 0 0 0 +4.392 -3.012 -1.792 0 0 0 0 0 0 0 +4.398 -2.996 -1.79 0 0 0 0 0 0 0 +4.406 -2.992 -1.792 0 0 0 0 0 0 0 +4.4 -2.967 -1.785 0 0 0 0 0 0 0 +4.412 -2.955 -1.786 0 0 0 0 0 0 0 +4.42 -2.94 -1.786 0 0 0 0 0 0 0 +4.425 -2.923 -1.784 0 0 0 0 0 0 0 +4.431 -2.907 -1.782 0 0 0 0 0 0 0 +4.441 -2.894 -1.783 0 0 0 0 0 0 0 +4.457 -2.895 -1.788 0 0 0 0 0 0 0 +4.458 -2.876 -1.784 0 0 0 0 0 0 0 +4.47 -2.864 -1.786 0 0 0 0 0 0 0 +4.476 -2.848 -1.784 0 0 0 0 0 0 0 +4.488 -2.835 -1.786 0 0 0 0 0 0 0 +4.486 -2.814 -1.781 0 0 0 0 0 0 0 +4.495 -2.8 -1.781 0 0 0 0 0 0 0 +4.496 -2.791 -1.78 0 0 0 0 0 0 0 +4.521 -2.787 -1.786 0 0 0 0 0 0 0 +4.508 -2.76 -1.778 0 0 0 0 0 0 0 +4.538 -2.758 -1.786 0 0 0 0 0 0 0 +4.531 -2.734 -1.78 0 0 0 0 0 0 0 +4.537 -2.719 -1.779 0 0 0 0 0 0 0 +4.552 -2.709 -1.782 0 0 0 0 0 0 0 +4.553 -2.7 -1.78 0 0 0 0 0 0 0 +4.564 -2.686 -1.781 0 0 0 0 0 0 0 +4.583 -2.679 -1.786 0 0 0 0 0 0 0 +4.575 -2.655 -1.779 0 0 0 0 0 0 0 +4.582 -2.639 -1.778 0 0 0 0 0 0 0 +4.59 -2.625 -1.778 0 0 0 0 0 0 0 +4.589 -2.605 -1.774 0 0 0 0 0 0 0 +4.606 -2.605 -1.78 0 0 0 0 0 0 0 +4.621 -2.594 -1.782 0 0 0 0 0 0 0 +4.606 -2.567 -1.773 0 0 0 0 0 0 0 +4.629 -2.561 -1.779 0 0 0 0 0 0 0 +4.638 -2.547 -1.78 0 0 0 0 0 0 0 +4.635 -2.526 -1.775 0 0 0 0 0 0 0 +4.643 -2.512 -1.775 0 0 0 0 0 0 0 +4.665 -2.514 -1.782 0 0 0 0 0 0 0 +4.66 -2.492 -1.777 0 0 0 0 0 0 0 +4.672 -2.48 -1.779 0 0 0 0 0 0 0 +4.663 -2.457 -1.772 0 0 0 0 0 0 0 +4.678 -2.446 -1.775 0 0 0 0 0 0 0 +4.675 -2.426 -1.771 0 0 0 0 0 0 0 +4.691 -2.415 -1.774 0 0 0 0 0 0 0 +4.71 -2.416 -1.78 0 0 0 0 0 0 0 +4.701 -2.392 -1.774 0 0 0 0 0 0 0 +4.715 -2.381 -1.776 0 0 0 0 0 0 0 +4.704 -2.357 -1.769 0 0 0 0 0 0 0 +4.735 -2.354 -1.778 0 0 0 0 0 0 0 +4.726 -2.331 -1.772 0 0 0 0 0 0 0 +4.736 -2.317 -1.773 0 0 0 0 0 0 0 +4.745 -2.303 -1.774 0 0 0 0 0 0 0 +4.754 -2.298 -1.776 0 0 0 0 0 0 0 +4.751 -2.279 -1.772 0 0 0 0 0 0 0 +4.765 -2.267 -1.774 0 0 0 0 0 0 0 +4.775 -2.254 -1.776 0 0 0 0 0 0 0 +4.771 -2.233 -1.771 0 0 0 0 0 0 0 +4.779 -2.219 -1.772 0 0 0 0 0 0 0 +4.778 -2.2 -1.768 0 0 0 0 0 0 0 +4.791 -2.197 -1.772 0 0 0 0 0 0 0 +4.786 -2.176 -1.768 0 0 0 0 0 0 0 +4.803 -2.166 -1.772 0 0 0 0 0 0 0 +4.815 -2.153 -1.774 0 0 0 0 0 0 0 +4.8 -2.128 -1.765 0 0 0 0 0 0 0 +4.812 -2.115 -1.767 0 0 0 0 0 0 0 +4.837 -2.118 -1.776 0 0 0 0 0 0 0 +4.827 -2.095 -1.769 0 0 0 0 0 0 0 +4.838 -2.082 -1.771 0 0 0 0 0 0 0 +4.836 -2.063 -1.768 0 0 0 0 0 0 0 +4.834 -2.044 -1.764 0 0 0 0 0 0 0 +4.846 -2.031 -1.766 0 0 0 0 0 0 0 +4.847 -2.014 -1.764 0 0 0 0 0 0 0 +4.869 -2.005 -1.77 0 0 0 0 0 0 0 +4.858 -1.992 -1.765 0 0 0 0 0 0 0 +4.875 -1.981 -1.769 0 0 0 0 0 0 0 +4.86 -1.957 -1.761 0 0 0 0 0 0 0 +4.88 -1.947 -1.766 0 0 0 0 0 0 0 +4.872 -1.926 -1.761 0 0 0 0 0 0 0 +4.899 -1.919 -1.769 0 0 0 0 0 0 0 +4.893 -1.899 -1.764 0 0 0 0 0 0 0 +4.898 -1.892 -1.765 0 0 0 0 0 0 0 +4.886 -1.87 -1.758 0 0 0 0 0 0 0 +4.915 -1.863 -1.767 0 0 0 0 0 0 0 +4.905 -1.842 -1.761 0 0 0 0 0 0 0 +4.93 -1.834 -1.768 0 0 0 0 0 0 0 +4.921 -1.813 -1.763 0 0 0 0 0 0 0 +4.938 -1.801 -1.767 0 0 0 0 0 0 0 +4.918 -1.785 -1.758 0 0 0 0 0 0 0 +4.921 -1.769 -1.757 0 0 0 0 0 0 0 +4.936 -1.757 -1.761 0 0 0 0 0 0 0 +4.936 -1.739 -1.759 0 0 0 0 0 0 0 +4.954 -1.728 -1.763 0 0 0 0 0 0 0 +4.947 -1.708 -1.759 0 0 0 0 0 0 0 +4.956 -1.694 -1.76 0 0 0 0 0 0 0 +4.962 -1.687 -1.761 0 0 0 0 0 0 0 +4.956 -1.668 -1.757 0 0 0 0 0 0 0 +4.971 -1.655 -1.761 0 0 0 0 0 0 0 +4.978 -1.64 -1.761 0 0 0 0 0 0 0 +4.974 -1.622 -1.758 0 0 0 0 0 0 0 +4.99 -1.61 -1.762 0 0 0 0 0 0 0 +4.993 -1.593 -1.761 0 0 0 0 0 0 0 +4.977 -1.58 -1.755 0 0 0 0 0 0 0 +5 -1.57 -1.761 0 0 0 0 0 0 0 +5.003 -1.554 -1.761 0 0 0 0 0 0 0 +5.008 -1.538 -1.761 0 0 0 0 0 0 0 +5.008 -1.52 -1.759 0 0 0 0 0 0 0 +5.021 -1.507 -1.762 0 0 0 0 0 0 0 +5.015 -1.488 -1.758 0 0 0 0 0 0 0 +5.021 -1.482 -1.759 0 0 0 0 0 0 0 +5.013 -1.462 -1.755 0 0 0 0 0 0 0 +5.032 -1.451 -1.76 0 0 0 0 0 0 0 +5.049 -1.438 -1.765 0 0 0 0 0 0 0 +5.041 -1.419 -1.76 0 0 0 0 0 0 0 +5.046 -1.403 -1.76 0 0 0 0 0 0 0 +5.048 -1.387 -1.759 0 0 0 0 0 0 0 +5.054 -1.38 -1.761 0 0 0 0 0 0 0 +5.071 -1.367 -1.765 0 0 0 0 0 0 0 +5.054 -1.346 -1.757 0 0 0 0 0 0 0 +5.067 -1.332 -1.761 0 0 0 0 0 0 0 +5.08 -1.319 -1.764 0 0 0 0 0 0 0 +5.075 -1.3 -1.761 0 0 0 0 0 0 0 +5.076 -1.283 -1.759 0 0 0 0 0 0 0 +5.088 -1.278 -1.763 0 0 0 0 0 0 0 +5.096 -1.263 -1.765 0 0 0 0 0 0 0 +5.109 -1.249 -1.768 0 0 0 0 0 0 0 +5.082 -1.226 -1.757 0 0 0 0 0 0 0 +5.108 -1.215 -1.765 0 0 0 0 0 0 0 +5.091 -1.194 -1.757 0 0 0 0 0 0 0 +5.114 -1.183 -1.764 0 0 0 0 0 0 0 +5.088 -1.168 -1.754 0 0 0 0 0 0 0 +5.104 -1.155 -1.759 0 0 0 0 0 0 0 +5.097 -1.136 -1.755 0 0 0 0 0 0 0 +5.128 -1.127 -1.765 0 0 0 0 0 0 0 +5.109 -1.106 -1.757 0 0 0 0 0 0 0 +5.122 -1.092 -1.76 0 0 0 0 0 0 0 +5.116 -1.073 -1.757 0 0 0 0 0 0 0 +5.144 -1.071 -1.766 0 0 0 0 0 0 0 +5.123 -1.05 -1.757 0 0 0 0 0 0 0 +5.123 -1.033 -1.756 0 0 0 0 0 0 0 +5.115 -1.015 -1.752 0 0 0 0 0 0 0 +5.137 -1.002 -1.759 0 0 0 0 0 0 0 +5.123 -0.983 -1.753 0 0 0 0 0 0 0 +5.143 -0.97 -1.759 0 0 0 0 0 0 0 +5.126 -0.958 -1.752 0 0 0 0 0 0 0 +5.151 -0.946 -1.76 0 0 0 0 0 0 0 +5.139 -0.927 -1.755 0 0 0 0 0 0 0 +5.14 -0.911 -1.754 0 0 0 0 0 0 0 +5.145 -0.895 -1.755 0 0 0 0 0 0 0 +5.164 -0.882 -1.761 0 0 0 0 0 0 0 +5.145 -0.862 -1.753 0 0 0 0 0 0 0 +5.155 -0.855 -1.756 0 0 0 0 0 0 0 +5.156 -0.839 -1.755 0 0 0 0 0 0 0 +5.164 -0.823 -1.757 0 0 0 0 0 0 0 +5.152 -0.805 -1.752 0 0 0 0 0 0 0 +5.177 -0.792 -1.76 0 0 0 0 0 0 0 +5.161 -0.773 -1.753 0 0 0 0 0 0 0 +5.172 -0.758 -1.757 0 0 0 0 0 0 0 +5.162 -0.748 -1.753 0 0 0 0 0 0 0 +5.17 -0.733 -1.755 0 0 0 0 0 0 0 +5.165 -0.716 -1.752 0 0 0 0 0 0 0 +5.195 -0.703 -1.762 0 0 0 0 0 0 0 +5.171 -0.684 -1.753 0 0 0 0 0 0 0 +5.175 -0.668 -1.753 0 0 0 0 0 0 0 +5.187 -0.652 -1.757 0 0 0 0 0 0 0 +5.173 -0.642 -1.751 0 0 0 0 0 0 0 +5.192 -0.628 -1.757 0 0 0 0 0 0 0 +5.177 -0.61 -1.751 0 0 0 0 0 0 0 +5.186 -0.594 -1.754 0 0 0 0 0 0 0 +5.179 -0.577 -1.751 0 0 0 0 0 0 0 +5.186 -0.561 -1.753 0 0 0 0 0 0 0 +5.18 -0.544 -1.75 0 0 0 0 0 0 0 +5.2 -0.538 -1.757 0 0 0 0 0 0 0 +5.183 -0.52 -1.75 0 0 0 0 0 0 0 +5.188 -0.504 -1.751 0 0 0 0 0 0 0 +5.19 -0.488 -1.751 0 0 0 0 0 0 0 +5.197 -0.472 -1.753 0 0 0 0 0 0 0 +5.183 -0.454 -1.748 0 0 0 0 0 0 0 +5.196 -0.439 -1.752 0 0 0 0 0 0 0 +5.191 -0.43 -1.75 0 0 0 0 0 0 0 +5.209 -0.415 -1.756 0 0 0 0 0 0 0 +5.192 -0.398 -1.749 0 0 0 0 0 0 0 +5.193 -0.381 -1.749 0 0 0 0 0 0 0 +5.185 -0.364 -1.746 0 0 0 0 0 0 0 +5.192 -0.348 -1.748 0 0 0 0 0 0 0 +5.189 -0.332 -1.747 0 0 0 0 0 0 0 +5.201 -0.324 -1.751 0 0 0 0 0 0 0 +5.185 -0.307 -1.745 0 0 0 0 0 0 0 +5.195 -0.291 -1.748 0 0 0 0 0 0 0 +5.187 -0.274 -1.745 0 0 0 0 0 0 0 +5.186 -0.258 -1.744 0 0 0 0 0 0 0 +5.215 -0.243 -1.754 0 0 0 0 0 0 0 +5.185 -0.225 -1.743 0 0 0 0 0 0 0 +5.201 -0.21 -1.749 0 0 0 0 0 0 0 +5.169 -0.2 -1.737 0 0 0 0 0 0 0 +5.189 -0.185 -1.744 0 0 0 0 0 0 0 +5.197 -0.169 -1.747 0 0 0 0 0 0 0 +5.199 -0.152 -1.747 0 0 0 0 0 0 0 +5.186 -0.136 -1.743 0 0 0 0 0 0 0 +5.213 -0.12 -1.752 0 0 0 0 0 0 0 +5.193 -0.103 -1.745 0 0 0 0 0 0 0 +5.201 -0.095 -1.747 0 0 0 0 0 0 0 +5.182 -0.078 -1.741 0 0 0 0 0 0 0 +5.203 -0.063 -1.748 0 0 0 0 0 0 0 +5.188 -0.046 -1.743 0 0 0 0 0 0 0 +5.207 -0.03 -1.749 0 0 0 0 0 0 0 +5.186 -0.013 -1.742 0 0 0 0 0 0 0 +5.039 0.007 -1.738 0 0 0 0 0 0 0 +5.018 0.014 -1.73 0 0 0 0 0 0 0 +5.033 0.03 -1.736 0 0 0 0 0 0 0 +5.033 0.046 -1.736 0 0 0 0 0 0 0 +5.041 0.062 -1.738 0 0 0 0 0 0 0 +5.005 0.077 -1.725 0 0 0 0 0 0 0 +5.018 0.093 -1.73 0 0 0 0 0 0 0 +5.025 0.109 -1.733 0 0 0 0 0 0 0 +5.013 0.117 -1.729 0 0 0 0 0 0 0 +5.024 0.133 -1.733 0 0 0 0 0 0 0 +5.009 0.148 -1.727 0 0 0 0 0 0 0 +5.018 0.164 -1.731 0 0 0 0 0 0 0 +5.011 0.18 -1.729 0 0 0 0 0 0 0 +5.017 0.196 -1.731 0 0 0 0 0 0 0 +5.01 0.211 -1.729 0 0 0 0 0 0 0 +5.032 0.22 -1.737 0 0 0 0 0 0 0 +5.007 0.235 -1.728 0 0 0 0 0 0 0 +5.001 0.25 -1.726 0 0 0 0 0 0 0 +5.002 0.266 -1.727 0 0 0 0 0 0 0 +5.016 0.283 -1.732 0 0 0 0 0 0 0 +4.978 0.296 -1.718 0 0 0 0 0 0 0 +4.984 0.312 -1.721 0 0 0 0 0 0 0 +4.988 0.32 -1.722 0 0 0 0 0 0 0 +4.977 0.335 -1.719 0 0 0 0 0 0 0 +4.984 0.351 -1.722 0 0 0 0 0 0 0 +4.982 0.367 -1.722 0 0 0 0 0 0 0 +4.989 0.383 -1.725 0 0 0 0 0 0 0 +4.991 0.399 -1.726 0 0 0 0 0 0 0 +4.964 0.413 -1.716 0 0 0 0 0 0 0 +4.991 0.423 -1.727 0 0 0 0 0 0 0 +4.964 0.436 -1.717 0 0 0 0 0 0 0 +4.975 0.453 -1.722 0 0 0 0 0 0 0 +4.963 0.468 -1.718 0 0 0 0 0 0 0 +4.976 0.485 -1.723 0 0 0 0 0 0 0 +4.956 0.498 -1.716 0 0 0 0 0 0 0 +4.973 0.516 -1.723 0 0 0 0 0 0 0 +4.957 0.522 -1.718 0 0 0 0 0 0 0 +4.965 0.539 -1.721 0 0 0 0 0 0 0 +4.952 0.553 -1.717 0 0 0 0 0 0 0 +4.958 0.569 -1.72 0 0 0 0 0 0 0 +4.956 0.585 -1.72 0 0 0 0 0 0 0 +4.982 0.604 -1.73 0 0 0 0 0 0 0 +4.95 0.616 -1.719 0 0 0 0 0 0 0 +4.968 0.626 -1.726 0 0 0 0 0 0 0 +4.957 0.64 -1.722 0 0 0 0 0 0 0 +4.975 0.659 -1.73 0 0 0 0 0 0 0 +4.949 0.671 -1.721 0 0 0 0 0 0 0 +4.943 0.686 -1.72 0 0 0 0 0 0 0 +4.941 0.702 -1.72 0 0 0 0 0 0 0 +4.976 0.723 -1.734 0 0 0 0 0 0 0 +4.926 0.723 -1.716 0 0 0 0 0 0 0 +4.959 0.744 -1.729 0 0 0 0 0 0 0 +4.972 0.762 -1.734 0 0 0 0 0 0 0 +4.928 0.771 -1.719 0 0 0 0 0 0 0 +4.92 0.786 -1.717 0 0 0 0 0 0 0 +4.953 0.807 -1.73 0 0 0 0 0 0 0 +4.925 0.818 -1.72 0 0 0 0 0 0 0 +4.942 0.829 -1.727 0 0 0 0 0 0 0 +4.902 0.838 -1.714 0 0 0 0 0 0 0 +4.914 0.856 -1.719 0 0 0 0 0 0 0 +4.904 0.87 -1.716 0 0 0 0 0 0 0 +4.92 0.889 -1.723 0 0 0 0 0 0 0 +4.913 0.904 -1.722 0 0 0 0 0 0 0 +4.903 0.918 -1.719 0 0 0 0 0 0 0 +4.933 0.932 -1.731 0 0 0 0 0 0 0 +4.903 0.942 -1.72 0 0 0 0 0 0 0 +4.892 0.956 -1.718 0 0 0 0 0 0 0 +4.882 0.969 -1.715 0 0 0 0 0 0 0 +4.895 0.988 -1.721 0 0 0 0 0 0 0 +4.876 1 -1.715 0 0 0 0 0 0 0 +4.907 1.023 -1.728 0 0 0 0 0 0 0 +4.882 1.025 -1.719 0 0 0 0 0 0 0 +4.913 1.048 -1.732 0 0 0 0 0 0 0 +4.881 1.057 -1.721 0 0 0 0 0 0 0 +4.89 1.075 -1.726 0 0 0 0 0 0 0 +4.876 1.088 -1.722 0 0 0 0 0 0 0 +4.862 1.101 -1.718 0 0 0 0 0 0 0 +4.867 1.119 -1.721 0 0 0 0 0 0 0 +4.865 1.126 -1.721 0 0 0 0 0 0 0 +4.867 1.143 -1.723 0 0 0 0 0 0 0 +4.886 1.163 -1.731 0 0 0 0 0 0 0 +4.855 1.172 -1.721 0 0 0 0 0 0 0 +4.864 1.19 -1.726 0 0 0 0 0 0 0 +4.847 1.202 -1.721 0 0 0 0 0 0 0 +4.851 1.22 -1.724 0 0 0 0 0 0 0 +4.867 1.232 -1.731 0 0 0 0 0 0 0 +4.832 1.239 -1.719 0 0 0 0 0 0 0 +4.83 1.255 -1.72 0 0 0 0 0 0 0 +4.864 1.28 -1.734 0 0 0 0 0 0 0 +4.815 1.283 -1.717 0 0 0 0 0 0 0 +4.829 1.303 -1.724 0 0 0 0 0 0 0 +4.825 1.318 -1.724 0 0 0 0 0 0 0 +4.815 1.332 -1.722 0 0 0 0 0 0 0 +4.836 1.346 -1.731 0 0 0 0 0 0 0 +4.807 1.354 -1.721 0 0 0 0 0 0 0 +4.795 1.367 -1.718 0 0 0 0 0 0 0 +4.791 1.382 -1.718 0 0 0 0 0 0 0 +4.799 1.401 -1.723 0 0 0 0 0 0 0 +4.782 1.412 -1.718 0 0 0 0 0 0 0 +4.789 1.431 -1.722 0 0 0 0 0 0 0 +4.767 1.432 -1.715 0 0 0 0 0 0 0 +4.775 1.451 -1.72 0 0 0 0 0 0 0 +4.754 1.461 -1.714 0 0 0 0 0 0 0 +4.769 1.482 -1.721 0 0 0 0 0 0 0 +4.752 1.493 -1.716 0 0 0 0 0 0 0 +4.763 1.513 -1.722 0 0 0 0 0 0 0 +4.739 1.522 -1.715 0 0 0 0 0 0 0 +4.769 1.54 -1.727 0 0 0 0 0 0 0 +4.741 1.547 -1.718 0 0 0 0 0 0 0 +4.743 1.564 -1.721 0 0 0 0 0 0 0 +4.725 1.575 -1.716 0 0 0 0 0 0 0 +4.735 1.595 -1.722 0 0 0 0 0 0 0 +4.717 1.605 -1.717 0 0 0 0 0 0 0 +4.732 1.627 -1.725 0 0 0 0 0 0 0 +4.71 1.627 -1.717 0 0 0 0 0 0 0 +4.708 1.643 -1.718 0 0 0 0 0 0 0 +4.701 1.657 -1.718 0 0 0 0 0 0 0 +4.685 1.668 -1.714 0 0 0 0 0 0 0 +4.698 1.69 -1.72 0 0 0 0 0 0 0 +4.683 1.701 -1.717 0 0 0 0 0 0 0 +4.699 1.724 -1.725 0 0 0 0 0 0 0 +4.693 1.73 -1.724 0 0 0 0 0 0 0 +4.668 1.737 -1.716 0 0 0 0 0 0 0 +4.656 1.749 -1.714 0 0 0 0 0 0 0 +4.68 1.775 -1.725 0 0 0 0 0 0 0 +4.655 1.782 -1.718 0 0 0 0 0 0 0 +4.641 1.794 -1.714 0 0 0 0 0 0 0 +4.649 1.814 -1.72 0 0 0 0 0 0 0 +4.636 1.817 -1.716 0 0 0 0 0 0 0 +4.642 1.836 -1.72 0 0 0 0 0 0 0 +4.624 1.846 -1.716 0 0 0 0 0 0 0 +4.624 1.863 -1.718 0 0 0 0 0 0 0 +4.616 1.876 -1.717 0 0 0 0 0 0 0 +4.615 1.893 -1.719 0 0 0 0 0 0 0 +4.599 1.903 -1.715 0 0 0 0 0 0 0 +4.598 1.911 -1.716 0 0 0 0 0 0 0 +4.609 1.933 -1.722 0 0 0 0 0 0 0 +4.586 1.94 -1.716 0 0 0 0 0 0 0 +4.574 1.952 -1.714 0 0 0 0 0 0 0 +4.58 1.972 -1.718 0 0 0 0 0 0 0 +4.57 1.985 -1.717 0 0 0 0 0 0 0 +4.563 1.998 -1.716 0 0 0 0 0 0 0 +4.597 2.022 -1.731 0 0 0 0 0 0 0 +4.546 2.017 -1.714 0 0 0 0 0 0 0 +4.55 2.036 -1.718 0 0 0 0 0 0 0 +4.549 2.052 -1.72 0 0 0 0 0 0 0 +4.527 2.059 -1.714 0 0 0 0 0 0 0 +4.536 2.081 -1.72 0 0 0 0 0 0 0 +4.528 2.094 -1.719 0 0 0 0 0 0 0 +4.514 2.096 -1.715 0 0 0 0 0 0 0 +4.496 2.105 -1.71 0 0 0 0 0 0 0 +4.514 2.131 -1.72 0 0 0 0 0 0 0 +4.484 2.134 -1.711 0 0 0 0 0 0 0 +4.501 2.16 -1.72 0 0 0 0 0 0 0 +4.476 2.165 -1.713 0 0 0 0 0 0 0 +4.469 2.179 -1.713 0 0 0 0 0 0 0 +4.487 2.197 -1.722 0 0 0 0 0 0 0 +4.455 2.198 -1.711 0 0 0 0 0 0 0 +4.463 2.22 -1.718 0 0 0 0 0 0 0 +4.438 2.224 -1.71 0 0 0 0 0 0 0 +4.446 2.246 -1.716 0 0 0 0 0 0 0 +4.442 2.262 -1.718 0 0 0 0 0 0 0 +4.42 2.268 -1.711 0 0 0 0 0 0 0 +4.43 2.282 -1.717 0 0 0 0 0 0 0 +4.403 2.285 -1.709 0 0 0 0 0 0 0 +4.409 2.306 -1.714 0 0 0 0 0 0 0 +4.396 2.317 -1.712 0 0 0 0 0 0 0 +4.397 2.335 -1.716 0 0 0 0 0 0 0 +4.382 2.345 -1.712 0 0 0 0 0 0 0 +4.369 2.356 -1.71 0 0 0 0 0 0 0 +4.379 2.37 -1.716 0 0 0 0 0 0 0 +4.365 2.38 -1.713 0 0 0 0 0 0 0 +4.375 2.404 -1.72 0 0 0 0 0 0 0 +4.335 2.399 -1.707 0 0 0 0 0 0 0 +4.346 2.423 -1.714 0 0 0 0 0 0 0 +4.318 2.425 -1.706 0 0 0 0 0 0 0 +4.329 2.449 -1.714 0 0 0 0 0 0 0 +4.319 2.462 -1.713 0 0 0 0 0 0 0 +4.317 2.469 -1.714 0 0 0 0 0 0 0 +4.295 2.475 -1.707 0 0 0 0 0 0 0 +4.3 2.496 -1.713 0 0 0 0 0 0 0 +4.282 2.503 -1.709 0 0 0 0 0 0 0 +4.282 2.522 -1.712 0 0 0 0 0 0 0 +4.268 2.531 -1.709 0 0 0 0 0 0 0 +4.283 2.55 -1.718 0 0 0 0 0 0 0 +4.267 2.558 -1.714 0 0 0 0 0 0 0 +4.25 2.566 -1.71 0 0 0 0 0 0 0 +4.24 2.578 -1.709 0 0 0 0 0 0 0 +4.232 2.591 -1.709 0 0 0 0 0 0 0 +4.23 2.609 -1.712 0 0 0 0 0 0 0 +4.231 2.628 -1.716 0 0 0 0 0 0 0 +4.218 2.628 -1.712 0 0 0 0 0 0 0 +4.217 2.647 -1.716 0 0 0 0 0 0 0 +4.212 2.662 -1.717 0 0 0 0 0 0 0 +4.196 2.67 -1.714 0 0 0 0 0 0 0 +4.198 2.69 -1.718 0 0 0 0 0 0 0 +4.192 2.705 -1.719 0 0 0 0 0 0 0 +4.161 2.703 -1.709 0 0 0 0 0 0 0 +4.173 2.72 -1.716 0 0 0 0 0 0 0 +4.164 2.733 -1.716 0 0 0 0 0 0 0 +4.154 2.745 -1.716 0 0 0 0 0 0 0 +4.153 2.764 -1.719 0 0 0 0 0 0 0 +4.133 2.769 -1.714 0 0 0 0 0 0 0 +4.123 2.781 -1.714 0 0 0 0 0 0 0 +4.117 2.796 -1.715 0 0 0 0 0 0 0 +4.107 2.808 -1.714 0 0 0 0 0 0 0 +4.095 2.809 -1.711 0 0 0 0 0 0 0 +4.098 2.831 -1.716 0 0 0 0 0 0 0 +4.093 2.846 -1.718 0 0 0 0 0 0 0 +4.073 2.851 -1.713 0 0 0 0 0 0 0 +4.068 2.867 -1.715 0 0 0 0 0 0 0 +4.061 2.881 -1.716 0 0 0 0 0 0 0 +4.05 2.892 -1.715 0 0 0 0 0 0 0 +4.047 2.9 -1.716 0 0 0 0 0 0 0 +4.056 2.926 -1.724 0 0 0 0 0 0 0 +4.029 2.925 -1.716 0 0 0 0 0 0 0 +4.024 2.941 -1.718 0 0 0 0 0 0 0 +4.018 2.956 -1.719 0 0 0 0 0 0 0 +4.001 2.963 -1.716 0 0 0 0 0 0 0 +4.009 2.978 -1.721 0 0 0 0 0 0 0 +4.002 2.993 -1.722 0 0 0 0 0 0 0 +3.987 3.001 -1.72 0 0 0 0 0 0 0 +3.977 3.014 -1.72 0 0 0 0 0 0 0 +3.963 3.023 -1.718 0 0 0 0 0 0 0 +3.963 3.042 -1.722 0 0 0 0 0 0 0 +3.955 3.056 -1.722 0 0 0 0 0 0 0 +3.954 3.065 -1.725 0 0 0 0 0 0 0 +3.921 3.059 -1.714 0 0 0 0 0 0 0 +3.934 3.089 -1.724 0 0 0 0 0 0 0 +3.917 3.096 -1.72 0 0 0 0 0 0 0 +3.899 3.102 -1.717 0 0 0 0 0 0 0 +3.882 3.108 -1.714 0 0 0 0 0 0 0 +3.902 3.144 -1.727 0 0 0 0 0 0 0 +3.884 3.14 -1.721 0 0 0 0 0 0 0 +3.867 3.146 -1.718 0 0 0 0 0 0 0 +3.855 3.157 -1.717 0 0 0 0 0 0 0 +3.86 3.181 -1.724 0 0 0 0 0 0 0 +3.835 3.181 -1.717 0 0 0 0 0 0 0 +3.841 3.206 -1.725 0 0 0 0 0 0 0 +3.814 3.204 -1.716 0 0 0 0 0 0 0 +3.8 3.202 -1.712 0 0 0 0 0 0 0 +3.793 3.217 -1.714 0 0 0 0 0 0 0 +3.79 3.235 -1.717 0 0 0 0 0 0 0 +3.787 3.253 -1.72 0 0 0 0 0 0 0 +3.774 3.262 -1.719 0 0 0 0 0 0 0 +3.758 3.269 -1.716 0 0 0 0 0 0 0 +3.745 3.278 -1.715 0 0 0 0 0 0 0 +3.745 3.289 -1.718 0 0 0 0 0 0 0 +3.736 3.302 -1.718 0 0 0 0 0 0 0 +3.723 3.312 -1.717 0 0 0 0 0 0 0 +3.7 3.312 -1.711 0 0 0 0 0 0 0 +3.697 3.33 -1.714 0 0 0 0 0 0 0 +3.7 3.354 -1.721 0 0 0 0 0 0 0 +3.681 3.358 -1.717 0 0 0 0 0 0 0 +3.665 3.365 -1.714 0 0 0 0 0 0 0 +3.66 3.37 -1.714 0 0 0 0 0 0 0 +3.644 3.377 -1.711 0 0 0 0 0 0 0 +3.64 3.394 -1.715 0 0 0 0 0 0 0 +3.628 3.405 -1.714 0 0 0 0 0 0 0 +3.623 3.421 -1.717 0 0 0 0 0 0 0 +3.606 3.427 -1.714 0 0 0 0 0 0 0 +3.597 3.44 -1.715 0 0 0 0 0 0 0 +3.588 3.442 -1.713 0 0 0 0 0 0 0 +3.574 3.45 -1.711 0 0 0 0 0 0 0 +3.57 3.468 -1.715 0 0 0 0 0 0 0 +3.555 3.475 -1.713 0 0 0 0 0 0 0 +3.547 3.489 -1.714 0 0 0 0 0 0 0 +3.538 3.503 -1.716 0 0 0 0 0 0 0 +3.528 3.503 -1.713 0 0 0 0 0 0 0 +3.506 3.504 -1.707 0 0 0 0 0 0 0 +3.511 3.531 -1.716 0 0 0 0 0 0 0 +3.497 3.539 -1.714 0 0 0 0 0 0 0 +3.481 3.545 -1.711 0 0 0 0 0 0 0 +3.471 3.557 -1.712 0 0 0 0 0 0 0 +3.474 3.583 -1.72 0 0 0 0 0 0 0 +3.464 3.584 -1.718 0 0 0 0 0 0 0 +3.44 3.581 -1.711 0 0 0 0 0 0 0 +3.434 3.597 -1.714 0 0 0 0 0 0 0 +3.414 3.599 -1.709 0 0 0 0 0 0 0 +3.404 3.611 -1.709 0 0 0 0 0 0 0 +3.395 3.624 -1.711 0 0 0 0 0 0 0 +3.392 3.644 -1.716 0 0 0 0 0 0 0 +3.375 3.637 -1.709 0 0 0 0 0 0 0 +3.384 3.67 -1.72 0 0 0 0 0 0 0 +3.354 3.66 -1.71 0 0 0 0 0 0 0 +3.338 3.666 -1.708 0 0 0 0 0 0 0 +3.344 3.696 -1.718 0 0 0 0 0 0 0 +3.341 3.717 -1.722 0 0 0 0 0 0 0 +3.326 3.723 -1.72 0 0 0 0 0 0 0 +3.306 3.723 -1.716 0 0 0 0 0 0 0 +3.296 3.724 -1.714 0 0 0 0 0 0 0 +3.308 3.762 -1.727 0 0 0 0 0 0 0 +3.266 3.738 -1.71 0 0 0 0 0 0 0 +3.257 3.751 -1.711 0 0 0 0 0 0 0 +3.251 3.768 -1.715 0 0 0 0 0 0 0 +3.232 3.77 -1.711 0 0 0 0 0 0 0 +3.217 3.776 -1.709 0 0 0 0 0 0 0 +3.234 3.808 -1.722 0 0 0 0 0 0 0 +3.198 3.789 -1.708 0 0 0 0 0 0 0 +3.192 3.807 -1.711 0 0 0 0 0 0 0 +3.188 3.827 -1.716 0 0 0 0 0 0 0 +3.165 3.824 -1.71 0 0 0 0 0 0 0 +3.157 3.838 -1.712 0 0 0 0 0 0 0 +3.145 3.848 -1.712 0 0 0 0 0 0 0 +3.144 3.859 -1.715 0 0 0 0 0 0 0 +3.119 3.852 -1.707 0 0 0 0 0 0 0 +3.117 3.875 -1.714 0 0 0 0 0 0 0 +3.1 3.879 -1.711 0 0 0 0 0 0 0 +3.099 3.904 -1.718 0 0 0 0 0 0 0 +3.073 3.896 -1.709 0 0 0 0 0 0 0 +3.058 3.901 -1.707 0 0 0 0 0 0 0 +3.062 3.919 -1.714 0 0 0 0 0 0 0 +3.042 3.918 -1.709 0 0 0 0 0 0 0 +3.038 3.94 -1.714 0 0 0 0 0 0 0 +3.013 3.933 -1.707 0 0 0 0 0 0 0 +3.021 3.969 -1.719 0 0 0 0 0 0 0 +2.986 3.949 -1.705 0 0 0 0 0 0 0 +2.986 3.975 -1.713 0 0 0 0 0 0 0 +2.98 3.979 -1.713 0 0 0 0 0 0 0 +2.965 3.986 -1.711 0 0 0 0 0 0 0 +2.953 3.995 -1.711 0 0 0 0 0 0 0 +2.946 4.012 -1.715 0 0 0 0 0 0 0 +2.933 4.021 -1.715 0 0 0 0 0 0 0 +2.924 4.035 -1.717 0 0 0 0 0 0 0 +2.912 4.046 -1.718 0 0 0 0 0 0 0 +2.904 4.047 -1.716 0 0 0 0 0 0 0 +2.892 4.058 -1.717 0 0 0 0 0 0 0 +2.875 4.061 -1.714 0 0 0 0 0 0 0 +2.863 4.071 -1.715 0 0 0 0 0 0 0 +2.854 4.085 -1.717 0 0 0 0 0 0 0 +2.842 4.095 -1.718 0 0 0 0 0 0 0 +2.833 4.11 -1.72 0 0 0 0 0 0 0 +2.827 4.115 -1.72 0 0 0 0 0 0 0 +2.801 4.105 -1.712 0 0 0 0 0 0 0 +2.797 4.126 -1.718 0 0 0 0 0 0 0 +2.787 4.14 -1.72 0 0 0 0 0 0 0 +2.774 4.148 -1.72 0 0 0 0 0 0 0 +2.762 4.159 -1.72 0 0 0 0 0 0 0 +2.749 4.167 -1.72 0 0 0 0 0 0 0 +2.747 4.18 -1.724 0 0 0 0 0 0 0 +2.73 4.182 -1.721 0 0 0 0 0 0 0 +2.72 4.195 -1.723 0 0 0 0 0 0 0 +2.706 4.202 -1.722 0 0 0 0 0 0 0 +2.691 4.209 -1.722 0 0 0 0 0 0 0 +2.677 4.216 -1.721 0 0 0 0 0 0 0 +2.666 4.227 -1.722 0 0 0 0 0 0 0 +2.661 4.235 -1.724 0 0 0 0 0 0 0 +2.649 4.245 -1.725 0 0 0 0 0 0 0 +2.635 4.251 -1.724 0 0 0 0 0 0 0 +2.616 4.252 -1.72 0 0 0 0 0 0 0 +2.605 4.263 -1.722 0 0 0 0 0 0 0 +2.589 4.266 -1.72 0 0 0 0 0 0 0 +2.58 4.283 -1.723 0 0 0 0 0 0 0 +2.57 4.282 -1.721 0 0 0 0 0 0 0 +2.559 4.293 -1.722 0 0 0 0 0 0 0 +2.545 4.301 -1.722 0 0 0 0 0 0 0 +2.529 4.304 -1.72 0 0 0 0 0 0 0 +2.516 4.312 -1.72 0 0 0 0 0 0 0 +2.509 4.333 -1.726 0 0 0 0 0 0 0 +2.487 4.325 -1.719 0 0 0 0 0 0 0 +2.481 4.347 -1.725 0 0 0 0 0 0 0 +2.471 4.344 -1.722 0 0 0 0 0 0 0 +2.455 4.349 -1.721 0 0 0 0 0 0 0 +2.447 4.366 -1.725 0 0 0 0 0 0 0 +2.434 4.376 -1.726 0 0 0 0 0 0 0 +2.424 4.39 -1.729 0 0 0 0 0 0 0 +2.399 4.378 -1.72 0 0 0 0 0 0 0 +2.389 4.392 -1.723 0 0 0 0 0 0 0 +2.376 4.384 -1.718 0 0 0 0 0 0 0 +2.374 4.413 -1.727 0 0 0 0 0 0 0 +2.358 4.417 -1.726 0 0 0 0 0 0 0 +2.341 4.418 -1.723 0 0 0 0 0 0 0 +2.338 4.447 -1.732 0 0 0 0 0 0 0 +2.306 4.419 -1.718 0 0 0 0 0 0 0 +2.308 4.439 -1.725 0 0 0 0 0 0 0 +2.286 4.432 -1.718 0 0 0 0 0 0 0 +2.28 4.454 -1.725 0 0 0 0 0 0 0 +2.259 4.448 -1.719 0 0 0 0 0 0 0 +2.252 4.468 -1.725 0 0 0 0 0 0 0 +2.229 4.457 -1.717 0 0 0 0 0 0 0 +2.225 4.484 -1.725 0 0 0 0 0 0 0 +2.203 4.457 -1.713 0 0 0 0 0 0 0 +2.207 4.501 -1.728 0 0 0 0 0 0 0 +2.179 4.481 -1.717 0 0 0 0 0 0 0 +2.178 4.513 -1.727 0 0 0 0 0 0 0 +2.15 4.493 -1.716 0 0 0 0 0 0 0 +2.144 4.516 -1.723 0 0 0 0 0 0 0 +2.124 4.51 -1.718 0 0 0 0 0 0 0 +2.112 4.521 -1.72 0 0 0 0 0 0 0 +2.104 4.523 -1.719 0 0 0 0 0 0 0 +2.093 4.536 -1.722 0 0 0 0 0 0 0 +2.069 4.522 -1.714 0 0 0 0 0 0 0 +2.062 4.544 -1.72 0 0 0 0 0 0 0 +2.043 4.539 -1.715 0 0 0 0 0 0 0 +2.038 4.567 -1.724 0 0 0 0 0 0 0 +2.016 4.557 -1.717 0 0 0 0 0 0 0 +2.018 4.58 -1.725 0 0 0 0 0 0 0 +1.994 4.564 -1.716 0 0 0 0 0 0 0 +1.98 4.572 -1.717 0 0 0 0 0 0 0 +1.967 4.58 -1.718 0 0 0 0 0 0 0 +1.949 4.578 -1.714 0 0 0 0 0 0 0 +1.942 4.603 -1.722 0 0 0 0 0 0 0 +1.921 4.593 -1.716 0 0 0 0 0 0 0 +1.91 4.606 -1.718 0 0 0 0 0 0 0 +1.905 4.615 -1.72 0 0 0 0 0 0 0 +1.885 4.608 -1.716 0 0 0 0 0 0 0 +1.868 4.607 -1.713 0 0 0 0 0 0 0 +1.856 4.618 -1.715 0 0 0 0 0 0 0 +1.84 4.622 -1.714 0 0 0 0 0 0 0 +1.829 4.637 -1.718 0 0 0 0 0 0 0 +1.826 4.65 -1.722 0 0 0 0 0 0 0 +1.806 4.642 -1.716 0 0 0 0 0 0 0 +1.792 4.649 -1.717 0 0 0 0 0 0 0 +1.782 4.667 -1.722 0 0 0 0 0 0 0 +1.761 4.655 -1.715 0 0 0 0 0 0 0 +1.748 4.666 -1.717 0 0 0 0 0 0 0 +1.737 4.68 -1.72 0 0 0 0 0 0 0 +1.722 4.686 -1.72 0 0 0 0 0 0 0 +1.715 4.69 -1.721 0 0 0 0 0 0 0 +1.698 4.689 -1.718 0 0 0 0 0 0 0 +1.679 4.681 -1.714 0 0 0 0 0 0 0 +1.665 4.69 -1.715 0 0 0 0 0 0 0 +1.656 4.711 -1.721 0 0 0 0 0 0 0 +1.633 4.694 -1.712 0 0 0 0 0 0 0 +1.622 4.708 -1.716 0 0 0 0 0 0 0 +1.608 4.692 -1.709 0 0 0 0 0 0 0 +1.588 4.681 -1.702 0 0 0 0 0 0 0 +1.571 4.679 -1.7 0 0 0 0 0 0 0 +1.558 4.689 -1.702 0 0 0 0 0 0 0 +1.538 4.678 -1.696 0 0 0 0 0 0 0 +1.529 4.701 -1.702 0 0 0 0 0 0 0 +1.513 4.702 -1.701 0 0 0 0 0 0 0 +1.503 4.695 -1.698 0 0 0 0 0 0 0 +1.489 4.702 -1.698 0 0 0 0 0 0 0 +1.479 4.721 -1.704 0 0 0 0 0 0 0 +1.456 4.7 -1.694 0 0 0 0 0 0 0 +1.444 4.714 -1.698 0 0 0 0 0 0 0 +1.425 4.704 -1.692 0 0 0 0 0 0 0 +1.408 4.701 -1.689 0 0 0 0 0 0 0 +1.404 4.716 -1.694 0 0 0 0 0 0 0 +1.385 4.706 -1.689 0 0 0 0 0 0 0 +1.377 4.734 -1.698 0 0 0 0 0 0 0 +1.354 4.709 -1.687 0 0 0 0 0 0 0 +1.343 4.728 -1.692 0 0 0 0 0 0 0 +1.328 4.729 -1.691 0 0 0 0 0 0 0 +1.31 4.724 -1.687 0 0 0 0 0 0 0 +1.303 4.728 -1.688 0 0 0 0 0 0 0 +1.284 4.714 -1.681 0 0 0 0 0 0 0 +1.277 4.75 -1.693 0 0 0 0 0 0 0 +1.252 4.714 -1.678 0 0 0 0 0 0 0 +1.244 4.744 -1.688 0 0 0 0 0 0 0 +1.224 4.727 -1.68 0 0 0 0 0 0 0 +1.208 4.728 -1.679 0 0 0 0 0 0 0 +1.199 4.753 -1.687 0 0 0 0 0 0 0 +1.189 4.746 -1.684 0 0 0 0 0 0 0 +1.178 4.766 -1.69 0 0 0 0 0 0 0 +1.159 4.752 -1.683 0 0 0 0 0 0 0 +1.142 4.75 -1.681 0 0 0 0 0 0 0 +1.13 4.766 -1.686 0 0 0 0 0 0 0 +1.114 4.764 -1.684 0 0 0 0 0 0 0 +1.1 4.769 -1.684 0 0 0 0 0 0 0 +1.089 4.755 -1.678 0 0 0 0 0 0 0 +1.076 4.767 -1.682 0 0 0 0 0 0 0 +1.058 4.758 -1.677 0 0 0 0 0 0 0 +1.047 4.779 -1.684 0 0 0 0 0 0 0 +1.031 4.777 -1.682 0 0 0 0 0 0 0 +1.018 4.791 -1.686 0 0 0 0 0 0 0 +0.999 4.776 -1.679 0 0 0 0 0 0 0 +0.997 4.805 -1.689 0 0 0 0 0 0 0 +0.975 4.772 -1.675 0 0 0 0 0 0 0 +0.964 4.795 -1.683 0 0 0 0 0 0 0 +0.944 4.772 -1.673 0 0 0 0 0 0 0 +0.935 4.806 -1.685 0 0 0 0 0 0 0 +0.912 4.771 -1.671 0 0 0 0 0 0 0 +0.903 4.805 -1.682 0 0 0 0 0 0 0 +0.894 4.799 -1.68 0 0 0 0 0 0 0 +0.881 4.813 -1.684 0 0 0 0 0 0 0 +0.863 4.799 -1.678 0 0 0 0 0 0 0 +0.565 3.146 -1.059 0 0 0 0 0 0 0 +0.559 3.174 -1.068 0 0 0 0 0 0 0 +0.558 3.227 -1.088 0 0 0 0 0 0 0 +0.554 3.268 -1.102 0 0 0 0 0 0 0 +0.55 3.278 -1.106 0 0 0 0 0 0 0 +0.543 3.302 -1.114 0 0 0 0 0 0 0 +0.531 3.291 -1.109 0 0 0 0 0 0 0 +0.518 3.272 -1.102 0 0 0 0 0 0 0 +0.505 3.259 -1.096 0 0 0 0 0 0 0 +0.491 3.232 -1.086 0 0 0 0 0 0 0 +0.48 3.23 -1.084 0 0 0 0 0 0 0 +0.471 3.237 -1.086 0 0 0 0 0 0 0 +0.462 3.214 -1.077 0 0 0 0 0 0 0 +0.45 3.197 -1.071 0 0 0 0 0 0 0 +0.44 3.2 -1.071 0 0 0 0 0 0 0 +0.429 3.192 -1.068 0 0 0 0 0 0 0 +0.416 3.171 -1.06 0 0 0 0 0 0 0 +0.406 3.168 -1.058 0 0 0 0 0 0 0 +0.396 3.17 -1.058 0 0 0 0 0 0 0 +0.39 3.165 -1.056 0 0 0 0 0 0 0 +0.382 3.179 -1.061 0 0 0 0 0 0 0 +0.37 3.169 -1.057 0 0 0 0 0 0 0 +0.36 3.17 -1.057 0 0 0 0 0 0 0 +0.352 3.188 -1.063 0 0 0 0 0 0 0 +0.341 3.176 -1.058 0 0 0 0 0 0 0 +0.331 3.175 -1.057 0 0 0 0 0 0 0 +0.327 3.185 -1.061 0 0 0 0 0 0 0 +0.315 3.164 -1.053 0 0 0 0 0 0 0 +0.306 3.183 -1.06 0 0 0 0 0 0 0 +0.296 3.184 -1.06 0 0 0 0 0 0 0 +0.287 3.189 -1.061 0 0 0 0 0 0 0 +0.277 3.195 -1.063 0 0 0 0 0 0 0 +0.267 3.196 -1.063 0 0 0 0 0 0 0 +0.262 3.195 -1.062 0 0 0 0 0 0 0 +0.253 3.207 -1.066 0 0 0 0 0 0 0 +0.243 3.215 -1.069 0 0 0 0 0 0 0 +0.231 3.19 -1.06 0 0 0 0 0 0 0 +0.221 3.19 -1.06 0 0 0 0 0 0 0 +0.211 3.197 -1.062 0 0 0 0 0 0 0 +0.201 3.19 -1.059 0 0 0 0 0 0 0 +0.191 3.192 -1.06 0 0 0 0 0 0 0 +0.269 4.855 -1.673 0 0 0 0 0 0 0 +0.256 4.894 -1.687 0 0 0 0 0 0 0 +0.239 4.853 -1.671 0 0 0 0 0 0 0 +0.224 4.865 -1.675 0 0 0 0 0 0 0 +0.208 4.854 -1.671 0 0 0 0 0 0 0 +0.194 4.881 -1.681 0 0 0 0 0 0 0 +0.178 4.858 -1.672 0 0 0 0 0 0 0 +0.171 4.89 -1.684 0 0 0 0 0 0 0 +0.155 4.864 -1.674 0 0 0 0 0 0 0 +0.14 4.891 -1.684 0 0 0 0 0 0 0 +0.125 4.869 -1.675 0 0 0 0 0 0 0 +0.11 4.886 -1.682 0 0 0 0 0 0 0 +0.094 4.866 -1.674 0 0 0 0 0 0 0 +0.079 4.9 -1.687 0 0 0 0 0 0 0 +0.071 4.873 -1.677 0 0 0 0 0 0 0 +0.056 4.894 -1.684 0 0 0 0 0 0 0 +0.04 4.868 -1.675 0 0 0 0 0 0 0 +0.025 4.898 -1.686 0 0 0 0 0 0 0 +0.01 4.885 -1.681 0 0 0 0 0 0 0 +-0.006 4.874 -1.677 0 0 0 0 0 0 0 +-0.021 4.889 -1.682 0 0 0 0 0 0 0 +-0.028 4.874 -1.677 0 0 0 0 0 0 0 +-0.044 4.872 -1.676 0 0 0 0 0 0 0 +-0.059 4.889 -1.682 0 0 0 0 0 0 0 +-0.074 4.875 -1.678 0 0 0 0 0 0 0 +-0.09 4.886 -1.682 0 0 0 0 0 0 0 +-0.106 4.899 -1.687 0 0 0 0 0 0 0 +-0.121 4.887 -1.682 0 0 0 0 0 0 0 +-0.137 4.9 -1.687 0 0 0 0 0 0 0 +-0.144 4.902 -1.688 0 0 0 0 0 0 0 +-0.16 4.899 -1.687 0 0 0 0 0 0 0 +-0.177 4.953 -1.707 0 0 0 0 0 0 0 +-0.193 4.96 -1.71 0 0 0 0 0 0 0 +-0.208 4.945 -1.705 0 0 0 0 0 0 0 +-0.224 4.948 -1.706 0 0 0 0 0 0 0 +-0.24 4.958 -1.71 0 0 0 0 0 0 0 +-0.248 4.958 -1.71 0 0 0 0 0 0 0 +-0.263 4.957 -1.71 0 0 0 0 0 0 0 +-0.28 4.973 -1.716 0 0 0 0 0 0 0 +-0.293 4.94 -1.705 0 0 0 0 0 0 0 +-0.311 4.964 -1.714 0 0 0 0 0 0 0 +-0.327 4.976 -1.718 0 0 0 0 0 0 0 +-0.343 4.975 -1.718 0 0 0 0 0 0 0 +-0.351 4.98 -1.72 0 0 0 0 0 0 0 +-0.367 4.979 -1.72 0 0 0 0 0 0 0 +-0.382 4.968 -1.717 0 0 0 0 0 0 0 +-0.398 4.973 -1.719 0 0 0 0 0 0 0 +-0.416 4.999 -1.729 0 0 0 0 0 0 0 +-0.429 4.968 -1.718 0 0 0 0 0 0 0 +-0.447 4.998 -1.73 0 0 0 0 0 0 0 +-0.453 4.977 -1.722 0 0 0 0 0 0 0 +-0.468 4.972 -1.721 0 0 0 0 0 0 0 +-0.486 4.985 -1.727 0 0 0 0 0 0 0 +-0.503 4.999 -1.732 0 0 0 0 0 0 0 +-0.517 4.979 -1.725 0 0 0 0 0 0 0 +-0.536 5.012 -1.738 0 0 0 0 0 0 0 +-0.548 4.981 -1.727 0 0 0 0 0 0 0 +-0.556 4.976 -1.726 0 0 0 0 0 0 0 +-0.575 5.006 -1.738 0 0 0 0 0 0 0 +-0.589 4.989 -1.732 0 0 0 0 0 0 0 +-0.609 5.021 -1.745 0 0 0 0 0 0 0 +-0.623 5.008 -1.74 0 0 0 0 0 0 0 +-0.641 5.023 -1.747 0 0 0 0 0 0 0 +-0.655 5.008 -1.742 0 0 0 0 0 0 0 +-0.675 5.035 -1.753 0 0 0 0 0 0 0 +-0.684 5.038 -1.754 0 0 0 0 0 0 0 +-0.699 5.036 -1.754 0 0 0 0 0 0 0 +-0.715 5.032 -1.754 0 0 0 0 0 0 0 +-0.733 5.044 -1.759 0 0 0 0 0 0 0 +-0.752 5.064 -1.767 0 0 0 0 0 0 0 +-0.792 5.108 -1.785 0 0 0 0 0 0 0 +-0.8 5.106 -1.785 0 0 0 0 0 0 0 +-0.805 5.041 -1.762 0 0 0 0 0 0 0 +-0.819 5.022 -1.756 0 0 0 0 0 0 0 +-0.831 5.001 -1.749 0 0 0 0 0 0 0 +-0.845 4.989 -1.745 0 0 0 0 0 0 0 +-0.864 5.001 -1.751 0 0 0 0 0 0 0 +-0.88 5.002 -1.752 0 0 0 0 0 0 0 +-0.884 4.982 -1.745 0 0 0 0 0 0 0 +-0.9 4.979 -1.745 0 0 0 0 0 0 0 +-0.915 4.972 -1.744 0 0 0 0 0 0 0 +-0.932 4.979 -1.747 0 0 0 0 0 0 0 +-0.943 4.95 -1.738 0 0 0 0 0 0 0 +-0.966 4.986 -1.752 0 0 0 0 0 0 0 +-0.978 4.964 -1.745 0 0 0 0 0 0 0 +-0.995 4.967 -1.747 0 0 0 0 0 0 0 +-1.004 4.971 -1.749 0 0 0 0 0 0 0 +-1.017 4.956 -1.745 0 0 0 0 0 0 0 +-1.033 4.953 -1.745 0 0 0 0 0 0 0 +-1.048 4.948 -1.745 0 0 0 0 0 0 0 +-1.066 4.958 -1.749 0 0 0 0 0 0 0 +-1.079 4.943 -1.745 0 0 0 0 0 0 0 +-1.093 4.933 -1.743 0 0 0 0 0 0 0 +-1.102 4.936 -1.745 0 0 0 0 0 0 0 +-1.118 4.936 -1.746 0 0 0 0 0 0 0 +-1.133 4.929 -1.745 0 0 0 0 0 0 0 +-1.151 4.937 -1.749 0 0 0 0 0 0 0 +-1.165 4.926 -1.746 0 0 0 0 0 0 0 +-1.181 4.926 -1.747 0 0 0 0 0 0 0 +-1.195 4.916 -1.745 0 0 0 0 0 0 0 +-1.203 4.913 -1.745 0 0 0 0 0 0 0 +-1.218 4.909 -1.745 0 0 0 0 0 0 0 +-1.236 4.916 -1.749 0 0 0 0 0 0 0 +-1.251 4.908 -1.747 0 0 0 0 0 0 0 +-1.264 4.895 -1.744 0 0 0 0 0 0 0 +-1.285 4.911 -1.752 0 0 0 0 0 0 0 +-1.294 4.884 -1.743 0 0 0 0 0 0 0 +-1.307 4.902 -1.75 0 0 0 0 0 0 0 +-1.32 4.89 -1.747 0 0 0 0 0 0 0 +-1.333 4.877 -1.744 0 0 0 0 0 0 0 +-1.355 4.896 -1.753 0 0 0 0 0 0 0 +-1.363 4.867 -1.743 0 0 0 0 0 0 0 +-1.382 4.877 -1.749 0 0 0 0 0 0 0 +-1.4 4.882 -1.752 0 0 0 0 0 0 0 +-1.4 4.851 -1.741 0 0 0 0 0 0 0 +-1.421 4.866 -1.749 0 0 0 0 0 0 0 +-1.44 4.876 -1.754 0 0 0 0 0 0 0 +-1.45 4.853 -1.747 0 0 0 0 0 0 0 +-1.465 4.847 -1.747 0 0 0 0 0 0 0 +-1.482 4.849 -1.749 0 0 0 0 0 0 0 +-1.496 4.839 -1.747 0 0 0 0 0 0 0 +-1.502 4.832 -1.745 0 0 0 0 0 0 0 +-1.522 4.843 -1.752 0 0 0 0 0 0 0 +-1.535 4.831 -1.749 0 0 0 0 0 0 0 +-1.552 4.832 -1.751 0 0 0 0 0 0 0 +-1.569 4.832 -1.753 0 0 0 0 0 0 0 +-1.582 4.82 -1.75 0 0 0 0 0 0 0 +-1.594 4.808 -1.747 0 0 0 0 0 0 0 +-1.616 4.822 -1.755 0 0 0 0 0 0 0 +-1.617 4.8 -1.747 0 0 0 0 0 0 0 +-1.631 4.793 -1.747 0 0 0 0 0 0 0 +-1.659 4.824 -1.761 0 0 0 0 0 0 0 +-1.66 4.778 -1.745 0 0 0 0 0 0 0 +-1.678 4.783 -1.749 0 0 0 0 0 0 0 +-1.696 4.785 -1.752 0 0 0 0 0 0 0 +-1.709 4.774 -1.749 0 0 0 0 0 0 0 +-1.719 4.777 -1.752 0 0 0 0 0 0 0 +-1.744 4.8 -1.763 0 0 0 0 0 0 0 +-1.75 4.77 -1.753 0 0 0 0 0 0 0 +-1.759 4.748 -1.747 0 0 0 0 0 0 0 +-1.784 4.769 -1.757 0 0 0 0 0 0 0 +-1.793 4.748 -1.751 0 0 0 0 0 0 0 +-1.806 4.737 -1.749 0 0 0 0 0 0 0 +-1.816 4.743 -1.752 0 0 0 0 0 0 0 +-1.828 4.728 -1.749 0 0 0 0 0 0 0 +-1.843 4.724 -1.749 0 0 0 0 0 0 0 +-1.861 4.725 -1.752 0 0 0 0 0 0 0 +-1.873 4.712 -1.749 0 0 0 0 0 0 0 +-1.887 4.705 -1.749 0 0 0 0 0 0 0 +-1.906 4.709 -1.753 0 0 0 0 0 0 0 +-1.911 4.699 -1.75 0 0 0 0 0 0 0 +-1.927 4.697 -1.752 0 0 0 0 0 0 0 +-1.948 4.704 -1.757 0 0 0 0 0 0 0 +-1.955 4.681 -1.75 0 0 0 0 0 0 0 +-1.973 4.684 -1.754 0 0 0 0 0 0 0 +-1.991 4.684 -1.756 0 0 0 0 0 0 0 +-1.997 4.657 -1.748 0 0 0 0 0 0 0 +-2.014 4.658 -1.751 0 0 0 0 0 0 0 +-2.03 4.674 -1.758 0 0 0 0 0 0 0 +-2.038 4.652 -1.752 0 0 0 0 0 0 0 +-2.052 4.645 -1.752 0 0 0 0 0 0 0 +-2.079 4.664 -1.763 0 0 0 0 0 0 0 +-2.082 4.632 -1.752 0 0 0 0 0 0 0 +-2.101 4.636 -1.756 0 0 0 0 0 0 0 +-2.117 4.633 -1.758 0 0 0 0 0 0 0 +-2.121 4.623 -1.755 0 0 0 0 0 0 0 +-2.135 4.614 -1.754 0 0 0 0 0 0 0 +-2.156 4.623 -1.761 0 0 0 0 0 0 0 +-2.16 4.592 -1.751 0 0 0 0 0 0 0 +-2.177 4.591 -1.753 0 0 0 0 0 0 0 +-2.215 4.633 -1.773 0 0 0 0 0 0 0 +-2.242 4.653 -1.784 0 0 0 0 0 0 0 +-2.235 4.619 -1.772 0 0 0 0 0 0 0 +-2.246 4.605 -1.769 0 0 0 0 0 0 0 +-2.263 4.603 -1.771 0 0 0 0 0 0 0 +-2.265 4.571 -1.761 0 0 0 0 0 0 0 +-2.281 4.567 -1.762 0 0 0 0 0 0 0 +-2.293 4.556 -1.761 0 0 0 0 0 0 0 +-2.318 4.569 -1.769 0 0 0 0 0 0 0 +-2.327 4.569 -1.77 0 0 0 0 0 0 0 +-2.329 4.538 -1.761 0 0 0 0 0 0 0 +-2.342 4.528 -1.759 0 0 0 0 0 0 0 +-2.348 4.505 -1.753 0 0 0 0 0 0 0 +-2.359 4.491 -1.75 0 0 0 0 0 0 0 +-2.383 4.504 -1.758 0 0 0 0 0 0 0 +-2.4 4.501 -1.761 0 0 0 0 0 0 0 +-2.412 4.489 -1.758 0 0 0 0 0 0 0 +-2.409 4.467 -1.751 0 0 0 0 0 0 0 +-2.437 4.485 -1.762 0 0 0 0 0 0 0 +-2.433 4.445 -1.748 0 0 0 0 0 0 0 +-2.451 4.444 -1.751 0 0 0 0 0 0 0 +-2.469 4.444 -1.754 0 0 0 0 0 0 0 +-2.483 4.436 -1.754 0 0 0 0 0 0 0 +-2.5 4.433 -1.756 0 0 0 0 0 0 0 +-2.496 4.41 -1.748 0 0 0 0 0 0 0 +-2.518 4.417 -1.754 0 0 0 0 0 0 0 +-2.531 4.407 -1.754 0 0 0 0 0 0 0 +-2.542 4.394 -1.752 0 0 0 0 0 0 0 +-2.56 4.393 -1.754 0 0 0 0 0 0 0 +-2.568 4.375 -1.75 0 0 0 0 0 0 0 +-2.587 4.377 -1.754 0 0 0 0 0 0 0 +-2.599 4.381 -1.758 0 0 0 0 0 0 0 +-2.604 4.358 -1.752 0 0 0 0 0 0 0 +-2.624 4.361 -1.756 0 0 0 0 0 0 0 +-2.642 4.359 -1.759 0 0 0 0 0 0 0 +-2.647 4.336 -1.753 0 0 0 0 0 0 0 +-2.662 4.331 -1.754 0 0 0 0 0 0 0 +-2.68 4.329 -1.757 0 0 0 0 0 0 0 +-2.68 4.314 -1.752 0 0 0 0 0 0 0 +-2.703 4.321 -1.759 0 0 0 0 0 0 0 +-2.723 4.322 -1.763 0 0 0 0 0 0 0 +-2.722 4.292 -1.754 0 0 0 0 0 0 0 +-2.743 4.294 -1.758 0 0 0 0 0 0 0 +-2.753 4.281 -1.756 0 0 0 0 0 0 0 +-2.761 4.263 -1.752 0 0 0 0 0 0 0 +-2.789 4.277 -1.763 0 0 0 0 0 0 0 +-2.79 4.264 -1.758 0 0 0 0 0 0 0 +-2.799 4.249 -1.756 0 0 0 0 0 0 0 +-2.814 4.241 -1.756 0 0 0 0 0 0 0 +-2.822 4.225 -1.753 0 0 0 0 0 0 0 +-2.856 4.247 -1.767 0 0 0 0 0 0 0 +-2.854 4.216 -1.757 0 0 0 0 0 0 0 +-2.88 4.226 -1.765 0 0 0 0 0 0 0 +-2.865 4.189 -1.751 0 0 0 0 0 0 0 +-2.887 4.194 -1.757 0 0 0 0 0 0 0 +-2.905 4.191 -1.76 0 0 0 0 0 0 0 +-2.913 4.174 -1.756 0 0 0 0 0 0 0 +-2.934 4.177 -1.762 0 0 0 0 0 0 0 +-2.958 4.183 -1.769 0 0 0 0 0 0 0 +-2.951 4.145 -1.756 0 0 0 0 0 0 0 +-2.956 4.139 -1.755 0 0 0 0 0 0 0 +-2.981 4.146 -1.763 0 0 0 0 0 0 0 +-2.991 4.132 -1.761 0 0 0 0 0 0 0 +-3.014 4.136 -1.767 0 0 0 0 0 0 0 +-3.027 4.127 -1.767 0 0 0 0 0 0 0 +-3.023 4.095 -1.756 0 0 0 0 0 0 0 +-3.042 4.093 -1.76 0 0 0 0 0 0 0 +-3.058 4.101 -1.766 0 0 0 0 0 0 0 +-3.061 4.078 -1.76 0 0 0 0 0 0 0 +-3.075 4.07 -1.761 0 0 0 0 0 0 0 +-3.094 4.069 -1.765 0 0 0 0 0 0 0 +-3.096 4.045 -1.758 0 0 0 0 0 0 0 +-3.115 4.044 -1.762 0 0 0 0 0 0 0 +-3.138 4.047 -1.768 0 0 0 0 0 0 0 +-3.139 4.023 -1.761 0 0 0 0 0 0 0 +-3.145 4.016 -1.761 0 0 0 0 0 0 0 +-3.174 4.027 -1.77 0 0 0 0 0 0 0 +-3.169 3.995 -1.76 0 0 0 0 0 0 0 +-3.2 4.009 -1.771 0 0 0 0 0 0 0 +-3.203 3.987 -1.765 0 0 0 0 0 0 0 +-3.21 3.969 -1.762 0 0 0 0 0 0 0 +-3.23 3.97 -1.767 0 0 0 0 0 0 0 +-3.231 3.957 -1.763 0 0 0 0 0 0 0 +-3.238 3.941 -1.761 0 0 0 0 0 0 0 +-3.254 3.935 -1.763 0 0 0 0 0 0 0 +-3.263 3.921 -1.761 0 0 0 0 0 0 0 +-3.278 3.913 -1.762 0 0 0 0 0 0 0 +-3.305 3.92 -1.77 0 0 0 0 0 0 0 +-3.305 3.896 -1.763 0 0 0 0 0 0 0 +-3.319 3.888 -1.765 0 0 0 0 0 0 0 +-3.333 3.891 -1.769 0 0 0 0 0 0 0 +-3.334 3.868 -1.763 0 0 0 0 0 0 0 +-3.355 3.867 -1.767 0 0 0 0 0 0 0 +-3.374 3.865 -1.772 0 0 0 0 0 0 0 +-3.382 3.849 -1.769 0 0 0 0 0 0 0 +-3.396 3.841 -1.77 0 0 0 0 0 0 0 +-3.407 3.829 -1.77 0 0 0 0 0 0 0 +-3.412 3.822 -1.769 0 0 0 0 0 0 0 +-3.421 3.809 -1.767 0 0 0 0 0 0 0 +-3.433 3.798 -1.767 0 0 0 0 0 0 0 +-3.442 3.785 -1.766 0 0 0 0 0 0 0 +-3.448 3.767 -1.763 0 0 0 0 0 0 0 +-3.465 3.762 -1.765 0 0 0 0 0 0 0 +-3.474 3.748 -1.764 0 0 0 0 0 0 0 +-3.481 3.744 -1.765 0 0 0 0 0 0 0 +-3.507 3.748 -1.772 0 0 0 0 0 0 0 +-3.514 3.731 -1.77 0 0 0 0 0 0 0 +-3.516 3.711 -1.765 0 0 0 0 0 0 0 +-3.525 3.697 -1.763 0 0 0 0 0 0 0 +-3.531 3.679 -1.76 0 0 0 0 0 0 0 +-3.55 3.676 -1.764 0 0 0 0 0 0 0 +-3.556 3.671 -1.764 0 0 0 0 0 0 0 +-3.574 3.666 -1.767 0 0 0 0 0 0 0 +-3.575 3.644 -1.762 0 0 0 0 0 0 0 +-3.591 3.638 -1.765 0 0 0 0 0 0 0 +-3.594 3.618 -1.76 0 0 0 0 0 0 0 +-3.612 3.613 -1.763 0 0 0 0 0 0 0 +-3.618 3.596 -1.761 0 0 0 0 0 0 0 +-3.641 3.597 -1.767 0 0 0 0 0 0 0 +-3.634 3.579 -1.761 0 0 0 0 0 0 0 +-3.648 3.57 -1.762 0 0 0 0 0 0 0 +-3.656 3.555 -1.76 0 0 0 0 0 0 0 +-3.672 3.549 -1.763 0 0 0 0 0 0 0 +-3.683 3.537 -1.763 0 0 0 0 0 0 0 +-3.701 3.532 -1.766 0 0 0 0 0 0 0 +-3.716 3.524 -1.768 0 0 0 0 0 0 0 +-3.737 3.533 -1.776 0 0 0 0 0 0 0 +-3.734 3.508 -1.769 0 0 0 0 0 0 0 +-3.738 3.49 -1.765 0 0 0 0 0 0 0 +-3.762 3.49 -1.772 0 0 0 0 0 0 0 +-3.771 3.476 -1.771 0 0 0 0 0 0 0 +-3.77 3.453 -1.765 0 0 0 0 0 0 0 +-3.794 3.454 -1.772 0 0 0 0 0 0 0 +-3.8 3.448 -1.772 0 0 0 0 0 0 0 +-3.811 3.436 -1.772 0 0 0 0 0 0 0 +-3.833 3.434 -1.777 0 0 0 0 0 0 0 +-3.849 3.427 -1.78 0 0 0 0 0 0 0 +-3.836 3.394 -1.768 0 0 0 0 0 0 0 +-3.869 3.401 -1.779 0 0 0 0 0 0 0 +-3.886 3.394 -1.782 0 0 0 0 0 0 0 +-3.898 3.394 -1.785 0 0 0 0 0 0 0 +-3.907 3.381 -1.785 0 0 0 0 0 0 0 +-3.923 3.373 -1.787 0 0 0 0 0 0 0 +-3.923 3.351 -1.782 0 0 0 0 0 0 0 +-3.959 3.361 -1.794 0 0 0 0 0 0 0 +-3.931 3.316 -1.776 0 0 0 0 0 0 0 +-3.951 3.312 -1.781 0 0 0 0 0 0 0 +-3.962 3.31 -1.783 0 0 0 0 0 0 0 +-4 3.32 -1.796 0 0 0 0 0 0 0 +-4.026 3.321 -1.804 0 0 0 0 0 0 0 +-4.044 3.314 -1.808 0 0 0 0 0 0 0 +-4.047 3.296 -1.804 0 0 0 0 0 0 0 +-4.059 3.284 -1.805 0 0 0 0 0 0 0 +-4.055 3.26 -1.798 0 0 0 0 0 0 0 +-4.063 3.246 -1.797 0 0 0 0 0 0 0 +-4.054 3.228 -1.79 0 0 0 0 0 0 0 +-4.082 3.229 -1.799 0 0 0 0 0 0 0 +-4.056 3.188 -1.782 0 0 0 0 0 0 0 +-4.072 3.18 -1.785 0 0 0 0 0 0 0 +-4.081 3.166 -1.784 0 0 0 0 0 0 0 +-4.091 3.153 -1.784 0 0 0 0 0 0 0 +-4.088 3.131 -1.778 0 0 0 0 0 0 0 +-4.092 3.124 -1.778 0 0 0 0 0 0 0 +-4.114 3.12 -1.783 0 0 0 0 0 0 0 +-4.122 3.106 -1.783 0 0 0 0 0 0 0 +-4.145 3.103 -1.789 0 0 0 0 0 0 0 +-4.149 3.085 -1.786 0 0 0 0 0 0 0 +-4.151 3.067 -1.783 0 0 0 0 0 0 0 +-4.147 3.044 -1.776 0 0 0 0 0 0 0 +-4.156 3.041 -1.778 0 0 0 0 0 0 0 +-4.169 3.03 -1.78 0 0 0 0 0 0 0 +-4.169 3.01 -1.776 0 0 0 0 0 0 0 +-4.173 2.993 -1.773 0 0 0 0 0 0 0 +-4.194 2.988 -1.778 0 0 0 0 0 0 0 +-4.196 2.97 -1.775 0 0 0 0 0 0 0 +-4.214 2.963 -1.779 0 0 0 0 0 0 0 +-4.204 2.946 -1.772 0 0 0 0 0 0 0 +-4.242 2.953 -1.785 0 0 0 0 0 0 0 +-4.227 2.922 -1.774 0 0 0 0 0 0 0 +-4.251 2.92 -1.781 0 0 0 0 0 0 0 +-4.237 2.89 -1.771 0 0 0 0 0 0 0 +-4.27 2.893 -1.781 0 0 0 0 0 0 0 +-4.257 2.865 -1.772 0 0 0 0 0 0 0 +-4.289 2.877 -1.784 0 0 0 0 0 0 0 +-4.284 2.854 -1.778 0 0 0 0 0 0 0 +-4.296 2.843 -1.779 0 0 0 0 0 0 0 +-4.29 2.819 -1.772 0 0 0 0 0 0 0 +-4.317 2.818 -1.781 0 0 0 0 0 0 0 +-4.309 2.793 -1.773 0 0 0 0 0 0 0 +-4.311 2.775 -1.77 0 0 0 0 0 0 0 +-4.342 2.776 -1.78 0 0 0 0 0 0 0 +-4.335 2.762 -1.775 0 0 0 0 0 0 0 +-4.352 2.753 -1.778 0 0 0 0 0 0 0 +-4.346 2.731 -1.772 0 0 0 0 0 0 0 +-4.368 2.725 -1.778 0 0 0 0 0 0 0 +-4.376 2.711 -1.778 0 0 0 0 0 0 0 +-4.375 2.691 -1.774 0 0 0 0 0 0 0 +-4.384 2.678 -1.774 0 0 0 0 0 0 0 +-4.399 2.678 -1.778 0 0 0 0 0 0 0 +-4.394 2.656 -1.773 0 0 0 0 0 0 0 +-4.419 2.652 -1.78 0 0 0 0 0 0 0 +-4.416 2.631 -1.775 0 0 0 0 0 0 0 +-4.414 2.612 -1.771 0 0 0 0 0 0 0 +-4.432 2.603 -1.775 0 0 0 0 0 0 0 +-4.432 2.585 -1.772 0 0 0 0 0 0 0 +-4.441 2.581 -1.774 0 0 0 0 0 0 0 +-4.466 2.576 -1.781 0 0 0 0 0 0 0 +-4.464 2.556 -1.776 0 0 0 0 0 0 0 +-4.464 2.538 -1.773 0 0 0 0 0 0 0 +-4.495 2.537 -1.783 0 0 0 0 0 0 0 +-4.481 2.511 -1.774 0 0 0 0 0 0 0 +-4.496 2.5 -1.776 0 0 0 0 0 0 0 +-4.503 2.495 -1.778 0 0 0 0 0 0 0 +-4.499 2.474 -1.773 0 0 0 0 0 0 0 +-4.524 2.469 -1.78 0 0 0 0 0 0 0 +-4.533 2.456 -1.781 0 0 0 0 0 0 0 +-4.516 2.428 -1.77 0 0 0 0 0 0 0 +-4.53 2.418 -1.773 0 0 0 0 0 0 0 +-4.546 2.408 -1.776 0 0 0 0 0 0 0 +-4.55 2.392 -1.775 0 0 0 0 0 0 0 +-4.557 2.386 -1.776 0 0 0 0 0 0 0 +-4.561 2.37 -1.775 0 0 0 0 0 0 0 +-4.574 2.359 -1.777 0 0 0 0 0 0 0 +-4.583 2.345 -1.778 0 0 0 0 0 0 0 +-4.57 2.321 -1.77 0 0 0 0 0 0 0 +-4.614 2.325 -1.785 0 0 0 0 0 0 0 +-4.603 2.301 -1.777 0 0 0 0 0 0 0 +-4.603 2.292 -1.776 0 0 0 0 0 0 0 +-4.619 2.282 -1.779 0 0 0 0 0 0 0 +-4.606 2.257 -1.771 0 0 0 0 0 0 0 +-4.625 2.249 -1.776 0 0 0 0 0 0 0 +-4.647 2.241 -1.782 0 0 0 0 0 0 0 +-4.639 2.219 -1.776 0 0 0 0 0 0 0 +-4.663 2.213 -1.783 0 0 0 0 0 0 0 +-4.642 2.194 -1.773 0 0 0 0 0 0 0 +-4.666 2.188 -1.78 0 0 0 0 0 0 0 +-4.675 2.174 -1.781 0 0 0 0 0 0 0 +-4.676 2.157 -1.778 0 0 0 0 0 0 0 +-4.688 2.144 -1.781 0 0 0 0 0 0 0 +-4.69 2.127 -1.778 0 0 0 0 0 0 0 +-4.693 2.111 -1.777 0 0 0 0 0 0 0 +-4.722 2.115 -1.787 0 0 0 0 0 0 0 +-4.701 2.088 -1.776 0 0 0 0 0 0 0 +-4.706 2.073 -1.776 0 0 0 0 0 0 0 +-4.72 2.061 -1.778 0 0 0 0 0 0 0 +-4.741 2.053 -1.785 0 0 0 0 0 0 0 +-4.741 2.035 -1.782 0 0 0 0 0 0 0 +-4.739 2.016 -1.778 0 0 0 0 0 0 0 +-4.764 2.018 -1.787 0 0 0 0 0 0 0 +-4.748 1.994 -1.778 0 0 0 0 0 0 0 +-4.782 1.99 -1.79 0 0 0 0 0 0 0 +-4.766 1.966 -1.781 0 0 0 0 0 0 0 +-4.775 1.953 -1.782 0 0 0 0 0 0 0 +-4.778 1.936 -1.781 0 0 0 0 0 0 0 +-4.795 1.925 -1.785 0 0 0 0 0 0 0 +-4.782 1.912 -1.778 0 0 0 0 0 0 0 +-4.795 1.899 -1.781 0 0 0 0 0 0 0 +-4.794 1.881 -1.778 0 0 0 0 0 0 0 +-4.81 1.87 -1.783 0 0 0 0 0 0 0 +-4.799 1.849 -1.776 0 0 0 0 0 0 0 +-4.806 1.834 -1.776 0 0 0 0 0 0 0 +-4.817 1.821 -1.778 0 0 0 0 0 0 0 +-4.828 1.808 -1.781 0 0 0 0 0 0 0 +-4.871 1.815 -1.796 0 0 0 0 0 0 0 +-4.826 -2.253 -1.843 0 0 0 0 0 0 0 +-4.772 -2.245 -1.824 0 0 0 0 0 0 0 +-4.736 -2.246 -1.812 0 0 0 0 0 0 0 +-4.731 -2.253 -1.812 0 0 0 0 0 0 0 +-4.739 -2.275 -1.818 0 0 0 0 0 0 0 +-4.723 -2.286 -1.814 0 0 0 0 0 0 0 +-4.718 -2.302 -1.815 0 0 0 0 0 0 0 +-4.712 -2.317 -1.816 0 0 0 0 0 0 0 +-4.686 -2.323 -1.808 0 0 0 0 0 0 0 +-4.699 -2.348 -1.817 0 0 0 0 0 0 0 +-4.682 -2.348 -1.811 0 0 0 0 0 0 0 +-4.668 -2.36 -1.808 0 0 0 0 0 0 0 +-4.666 -2.377 -1.81 0 0 0 0 0 0 0 +-4.655 -2.39 -1.809 0 0 0 0 0 0 0 +-4.656 -2.409 -1.812 0 0 0 0 0 0 0 +-4.643 -2.421 -1.81 0 0 0 0 0 0 0 +-4.642 -2.439 -1.813 0 0 0 0 0 0 0 +-4.62 -2.436 -1.805 0 0 0 0 0 0 0 +-4.63 -2.461 -1.813 0 0 0 0 0 0 0 +-4.609 -2.468 -1.808 0 0 0 0 0 0 0 +-4.615 -2.49 -1.813 0 0 0 0 0 0 0 +-4.587 -2.493 -1.805 0 0 0 0 0 0 0 +-4.583 -2.51 -1.806 0 0 0 0 0 0 0 +-4.583 -2.529 -1.81 0 0 0 0 0 0 0 +-4.556 -2.523 -1.8 0 0 0 0 0 0 0 +-4.584 -2.557 -1.815 0 0 0 0 0 0 0 +-4.547 -2.555 -1.803 0 0 0 0 0 0 0 +-4.557 -2.58 -1.81 0 0 0 0 0 0 0 +-4.539 -2.588 -1.806 0 0 0 0 0 0 0 +-4.537 -2.606 -1.809 0 0 0 0 0 0 0 +-4.522 -2.617 -1.806 0 0 0 0 0 0 0 +-4.528 -2.63 -1.81 0 0 0 0 0 0 0 +-4.505 -2.635 -1.804 0 0 0 0 0 0 0 +-4.498 -2.65 -1.805 0 0 0 0 0 0 0 +-4.495 -2.667 -1.807 0 0 0 0 0 0 0 +-4.478 -2.677 -1.803 0 0 0 0 0 0 0 +-4.472 -2.692 -1.804 0 0 0 0 0 0 0 +-4.478 -2.715 -1.81 0 0 0 0 0 0 0 +-4.459 -2.713 -1.804 0 0 0 0 0 0 0 +-4.47 -2.739 -1.812 0 0 0 0 0 0 0 +-4.44 -2.74 -1.803 0 0 0 0 0 0 0 +-4.427 -2.751 -1.801 0 0 0 0 0 0 0 +-4.417 -2.763 -1.801 0 0 0 0 0 0 0 +-4.427 -2.789 -1.809 0 0 0 0 0 0 0 +-4.405 -2.795 -1.803 0 0 0 0 0 0 0 +-4.396 -2.799 -1.801 0 0 0 0 0 0 0 +-4.402 -2.822 -1.808 0 0 0 0 0 0 0 +-4.38 -2.828 -1.802 0 0 0 0 0 0 0 +-4.374 -2.844 -1.803 0 0 0 0 0 0 0 +-4.373 -2.862 -1.807 0 0 0 0 0 0 0 +-4.344 -2.863 -1.798 0 0 0 0 0 0 0 +-4.351 -2.887 -1.805 0 0 0 0 0 0 0 +-4.341 -2.89 -1.803 0 0 0 0 0 0 0 +-4.32 -2.896 -1.797 0 0 0 0 0 0 0 +-4.325 -2.919 -1.803 0 0 0 0 0 0 0 +-4.331 -2.943 -1.81 0 0 0 0 0 0 0 +-4.289 -2.934 -1.796 0 0 0 0 0 0 0 +-4.285 -2.951 -1.798 0 0 0 0 0 0 0 +-4.288 -2.973 -1.803 0 0 0 0 0 0 0 +-4.274 -2.983 -1.801 0 0 0 0 0 0 0 +-4.257 -2.981 -1.796 0 0 0 0 0 0 0 +-4.27 -3.011 -1.806 0 0 0 0 0 0 0 +-4.242 -3.011 -1.798 0 0 0 0 0 0 0 +-4.233 -3.024 -1.798 0 0 0 0 0 0 0 +-4.225 -3.039 -1.799 0 0 0 0 0 0 0 +-4.212 -3.05 -1.797 0 0 0 0 0 0 0 +-4.209 -3.067 -1.8 0 0 0 0 0 0 0 +-4.204 -3.074 -1.8 0 0 0 0 0 0 0 +-4.193 -3.086 -1.799 0 0 0 0 0 0 0 +-4.18 -3.097 -1.798 0 0 0 0 0 0 0 +-4.19 -3.125 -1.807 0 0 0 0 0 0 0 +-4.167 -3.128 -1.801 0 0 0 0 0 0 0 +-4.166 -3.148 -1.805 0 0 0 0 0 0 0 +-4.133 -3.144 -1.794 0 0 0 0 0 0 0 +-4.131 -3.152 -1.796 0 0 0 0 0 0 0 +-4.136 -3.177 -1.803 0 0 0 0 0 0 0 +-4.125 -3.189 -1.802 0 0 0 0 0 0 0 +-4.125 -3.21 -1.807 0 0 0 0 0 0 0 +-4.097 -3.209 -1.799 0 0 0 0 0 0 0 +-4.093 -3.226 -1.801 0 0 0 0 0 0 0 +-4.079 -3.236 -1.799 0 0 0 0 0 0 0 +-4.085 -3.251 -1.805 0 0 0 0 0 0 0 +-4.063 -3.255 -1.799 0 0 0 0 0 0 0 +-4.057 -3.271 -1.801 0 0 0 0 0 0 0 +-4.049 -3.285 -1.802 0 0 0 0 0 0 0 +-4.022 -3.284 -1.794 0 0 0 0 0 0 0 +-4.032 -3.314 -1.804 0 0 0 0 0 0 0 +-4.003 -3.311 -1.795 0 0 0 0 0 0 0 +-4.004 -3.322 -1.798 0 0 0 0 0 0 0 +-4.002 -3.342 -1.802 0 0 0 0 0 0 0 +-3.984 -3.348 -1.799 0 0 0 0 0 0 0 +-3.986 -3.372 -1.805 0 0 0 0 0 0 0 +-3.962 -3.372 -1.798 0 0 0 0 0 0 0 +-3.942 -3.377 -1.794 0 0 0 0 0 0 0 +-3.937 -3.394 -1.796 0 0 0 0 0 0 0 +-3.934 -3.402 -1.797 0 0 0 0 0 0 0 +-3.923 -3.414 -1.797 0 0 0 0 0 0 0 +-3.925 -3.438 -1.803 0 0 0 0 0 0 0 +-3.896 -3.434 -1.794 0 0 0 0 0 0 0 +-3.892 -3.452 -1.798 0 0 0 0 0 0 0 +-3.88 -3.463 -1.797 0 0 0 0 0 0 0 +-3.86 -3.468 -1.793 0 0 0 0 0 0 0 +-3.869 -3.486 -1.8 0 0 0 0 0 0 0 +-3.858 -3.499 -1.8 0 0 0 0 0 0 0 +-3.844 -3.508 -1.799 0 0 0 0 0 0 0 +-3.834 -3.522 -1.799 0 0 0 0 0 0 0 +-3.815 -3.526 -1.795 0 0 0 0 0 0 0 +-3.809 -3.543 -1.798 0 0 0 0 0 0 0 +-3.802 -3.559 -1.8 0 0 0 0 0 0 0 +-3.783 -3.563 -1.796 0 0 0 0 0 0 0 +-3.783 -3.574 -1.799 0 0 0 0 0 0 0 +-3.777 -3.591 -1.801 0 0 0 0 0 0 0 +-3.759 -3.596 -1.798 0 0 0 0 0 0 0 +-3.754 -3.615 -1.801 0 0 0 0 0 0 0 +-3.746 -3.629 -1.803 0 0 0 0 0 0 0 +-3.726 -3.633 -1.799 0 0 0 0 0 0 0 +-3.715 -3.645 -1.799 0 0 0 0 0 0 0 +-3.71 -3.652 -1.799 0 0 0 0 0 0 0 +-3.699 -3.664 -1.799 0 0 0 0 0 0 0 +-3.702 -3.69 -1.807 0 0 0 0 0 0 0 +-3.685 -3.696 -1.804 0 0 0 0 0 0 0 +-3.693 -3.728 -1.814 0 0 0 0 0 0 0 +-3.653 -3.71 -1.799 0 0 0 0 0 0 0 +-3.657 -3.737 -1.808 0 0 0 0 0 0 0 +-3.648 -3.74 -1.806 0 0 0 0 0 0 0 +-3.643 -3.759 -1.81 0 0 0 0 0 0 0 +-3.644 -3.784 -1.817 0 0 0 0 0 0 0 +-3.613 -3.775 -1.806 0 0 0 0 0 0 0 +-3.603 -3.789 -1.808 0 0 0 0 0 0 0 +-3.589 -3.797 -1.806 0 0 0 0 0 0 0 +-3.572 -3.803 -1.803 0 0 0 0 0 0 0 +-3.584 -3.828 -1.813 0 0 0 0 0 0 0 +-3.574 -3.842 -1.814 0 0 0 0 0 0 0 +-3.575 -3.867 -1.821 0 0 0 0 0 0 0 +-3.554 -3.868 -1.817 0 0 0 0 0 0 0 +-3.54 -3.878 -1.816 0 0 0 0 0 0 0 +-3.526 -3.886 -1.814 0 0 0 0 0 0 0 +-3.515 -3.899 -1.815 0 0 0 0 0 0 0 +-3.526 -3.924 -1.825 0 0 0 0 0 0 0 +-3.53 -3.953 -1.834 0 0 0 0 0 0 0 +-3.482 -3.924 -1.814 0 0 0 0 0 0 0 +-3.472 -3.937 -1.815 0 0 0 0 0 0 0 +-3.441 -3.927 -1.805 0 0 0 0 0 0 0 +-3.419 -3.926 -1.799 0 0 0 0 0 0 0 +-3.415 -3.947 -1.804 0 0 0 0 0 0 0 +-3.406 -3.95 -1.803 0 0 0 0 0 0 0 +-3.388 -3.953 -1.799 0 0 0 0 0 0 0 +-3.379 -3.968 -1.801 0 0 0 0 0 0 0 +-3.365 -3.977 -1.801 0 0 0 0 0 0 0 +-3.343 -3.976 -1.795 0 0 0 0 0 0 0 +-3.338 -3.995 -1.799 0 0 0 0 0 0 0 +-3.317 -3.996 -1.794 0 0 0 0 0 0 0 +-3.314 -4.005 -1.796 0 0 0 0 0 0 0 +-3.294 -4.007 -1.792 0 0 0 0 0 0 0 +-3.281 -4.016 -1.792 0 0 0 0 0 0 0 +-3.273 -4.032 -1.794 0 0 0 0 0 0 0 +-3.258 -4.039 -1.793 0 0 0 0 0 0 0 +-3.244 -4.048 -1.792 0 0 0 0 0 0 0 +-3.231 -4.058 -1.792 0 0 0 0 0 0 0 +-3.218 -4.068 -1.792 0 0 0 0 0 0 0 +-3.212 -4.073 -1.792 0 0 0 0 0 0 0 +-3.198 -4.082 -1.792 0 0 0 0 0 0 0 +-3.19 -4.098 -1.794 0 0 0 0 0 0 0 +-3.161 -4.087 -1.785 0 0 0 0 0 0 0 +-3.154 -4.104 -1.788 0 0 0 0 0 0 0 +-3.148 -4.123 -1.792 0 0 0 0 0 0 0 +-3.138 -4.138 -1.794 0 0 0 0 0 0 0 +-3.118 -4.125 -1.786 0 0 0 0 0 0 0 +-3.123 -4.158 -1.797 0 0 0 0 0 0 0 +-3.099 -4.153 -1.79 0 0 0 0 0 0 0 +-3.092 -4.172 -1.794 0 0 0 0 0 0 0 +-3.077 -4.179 -1.793 0 0 0 0 0 0 0 +-3.073 -4.2 -1.799 0 0 0 0 0 0 0 +-3.064 -4.216 -1.801 0 0 0 0 0 0 0 +-3.043 -4.201 -1.792 0 0 0 0 0 0 0 +-3.032 -4.214 -1.794 0 0 0 0 0 0 0 +-3.011 -4.212 -1.789 0 0 0 0 0 0 0 +-2.995 -4.217 -1.787 0 0 0 0 0 0 0 +-2.982 -4.228 -1.787 0 0 0 0 0 0 0 +-2.972 -4.242 -1.79 0 0 0 0 0 0 0 +-2.956 -4.247 -1.787 0 0 0 0 0 0 0 +-2.946 -4.247 -1.785 0 0 0 0 0 0 0 +-2.947 -4.278 -1.795 0 0 0 0 0 0 0 +-2.917 -4.262 -1.784 0 0 0 0 0 0 0 +-2.905 -4.273 -1.785 0 0 0 0 0 0 0 +-2.885 -4.273 -1.781 0 0 0 0 0 0 0 +-2.878 -4.291 -1.785 0 0 0 0 0 0 0 +-2.87 -4.309 -1.789 0 0 0 0 0 0 0 +-2.853 -4.298 -1.782 0 0 0 0 0 0 0 +-2.835 -4.299 -1.778 0 0 0 0 0 0 0 +-2.839 -4.335 -1.79 0 0 0 0 0 0 0 +-2.81 -4.32 -1.78 0 0 0 0 0 0 0 +-2.806 -4.345 -1.787 0 0 0 0 0 0 0 +-2.784 -4.339 -1.781 0 0 0 0 0 0 0 +-2.768 -4.345 -1.779 0 0 0 0 0 0 0 +-2.774 -4.37 -1.788 0 0 0 0 0 0 0 +-2.751 -4.364 -1.782 0 0 0 0 0 0 0 +-2.745 -4.384 -1.787 0 0 0 0 0 0 0 +-2.721 -4.377 -1.78 0 0 0 0 0 0 0 +-2.714 -4.396 -1.785 0 0 0 0 0 0 0 +-2.698 -4.402 -1.783 0 0 0 0 0 0 0 +-2.681 -4.404 -1.781 0 0 0 0 0 0 0 +-2.682 -4.422 -1.787 0 0 0 0 0 0 0 +-2.657 -4.412 -1.778 0 0 0 0 0 0 0 +-2.652 -4.434 -1.785 0 0 0 0 0 0 0 +-2.643 -4.452 -1.789 0 0 0 0 0 0 0 +-2.617 -4.44 -1.78 0 0 0 0 0 0 0 +-2.612 -4.462 -1.786 0 0 0 0 0 0 0 +-2.591 -4.459 -1.781 0 0 0 0 0 0 0 +-2.582 -4.46 -1.78 0 0 0 0 0 0 0 +-2.576 -4.481 -1.785 0 0 0 0 0 0 0 +-2.56 -4.486 -1.784 0 0 0 0 0 0 0 +-2.538 -4.481 -1.778 0 0 0 0 0 0 0 +-2.528 -4.495 -1.781 0 0 0 0 0 0 0 +-2.511 -4.498 -1.779 0 0 0 0 0 0 0 +-2.496 -4.505 -1.778 0 0 0 0 0 0 0 +-2.492 -4.515 -1.781 0 0 0 0 0 0 0 +-2.483 -4.531 -1.785 0 0 0 0 0 0 0 +-2.46 -4.524 -1.778 0 0 0 0 0 0 0 +-2.449 -4.537 -1.781 0 0 0 0 0 0 0 +-2.436 -4.548 -1.782 0 0 0 0 0 0 0 +-2.415 -4.542 -1.776 0 0 0 0 0 0 0 +-2.407 -4.561 -1.781 0 0 0 0 0 0 0 +-2.397 -4.56 -1.779 0 0 0 0 0 0 0 +-2.392 -4.586 -1.787 0 0 0 0 0 0 0 +-2.371 -4.58 -1.781 0 0 0 0 0 0 0 +-2.355 -4.584 -1.78 0 0 0 0 0 0 0 +-2.345 -4.602 -1.784 0 0 0 0 0 0 0 +-2.328 -4.602 -1.781 0 0 0 0 0 0 0 +-2.316 -4.616 -1.784 0 0 0 0 0 0 0 +-2.308 -4.616 -1.783 0 0 0 0 0 0 0 +-2.299 -4.636 -1.787 0 0 0 0 0 0 0 +-2.283 -4.639 -1.786 0 0 0 0 0 0 0 +-2.26 -4.63 -1.779 0 0 0 0 0 0 0 +-2.253 -4.654 -1.786 0 0 0 0 0 0 0 +-2.236 -4.656 -1.784 0 0 0 0 0 0 0 +-2.22 -4.659 -1.783 0 0 0 0 0 0 0 +-2.224 -4.686 -1.792 0 0 0 0 0 0 0 +-2.216 -4.707 -1.798 0 0 0 0 0 0 0 +-2.221 -4.758 -1.816 0 0 0 0 0 0 0 +-2.208 -4.769 -1.817 0 0 0 0 0 0 0 +-2.2 -4.791 -1.823 0 0 0 0 0 0 0 +-2.162 -4.748 -1.803 0 0 0 0 0 0 0 +-2.121 -4.697 -1.78 0 0 0 0 0 0 0 +-2.113 -4.717 -1.785 0 0 0 0 0 0 0 +-2.102 -4.713 -1.783 0 0 0 0 0 0 0 +-2.091 -4.729 -1.786 0 0 0 0 0 0 0 +-2.067 -4.715 -1.778 0 0 0 0 0 0 0 +-2.056 -4.73 -1.781 0 0 0 0 0 0 0 +-2.033 -4.715 -1.773 0 0 0 0 0 0 0 +-2.017 -4.72 -1.772 0 0 0 0 0 0 0 +-1.999 -4.718 -1.769 0 0 0 0 0 0 0 +-1.996 -4.731 -1.773 0 0 0 0 0 0 0 +-1.974 -4.722 -1.767 0 0 0 0 0 0 0 +-1.955 -4.718 -1.763 0 0 0 0 0 0 0 +-1.947 -4.739 -1.769 0 0 0 0 0 0 0 +-1.926 -4.731 -1.763 0 0 0 0 0 0 0 +-1.917 -4.751 -1.769 0 0 0 0 0 0 0 +-1.902 -4.757 -1.769 0 0 0 0 0 0 0 +-1.886 -4.739 -1.761 0 0 0 0 0 0 0 +-1.872 -4.747 -1.761 0 0 0 0 0 0 0 +-1.856 -4.749 -1.76 0 0 0 0 0 0 0 +-1.838 -4.748 -1.757 0 0 0 0 0 0 0 +-1.825 -4.759 -1.759 0 0 0 0 0 0 0 +-1.809 -4.761 -1.758 0 0 0 0 0 0 0 +-1.795 -4.769 -1.758 0 0 0 0 0 0 0 +-1.777 -4.745 -1.748 0 0 0 0 0 0 0 +-1.768 -4.767 -1.754 0 0 0 0 0 0 0 +-1.754 -4.774 -1.755 0 0 0 0 0 0 0 +-1.73 -4.755 -1.745 0 0 0 0 0 0 0 +-1.719 -4.771 -1.749 0 0 0 0 0 0 0 +-1.711 -4.796 -1.757 0 0 0 0 0 0 0 +-1.685 -4.771 -1.745 0 0 0 0 0 0 0 +-1.681 -4.784 -1.749 0 0 0 0 0 0 0 +-1.665 -4.786 -1.748 0 0 0 0 0 0 0 +-1.647 -4.782 -1.745 0 0 0 0 0 0 0 +-1.631 -4.784 -1.743 0 0 0 0 0 0 0 +-1.622 -4.808 -1.751 0 0 0 0 0 0 0 +-1.6 -4.792 -1.743 0 0 0 0 0 0 0 +-1.588 -4.806 -1.746 0 0 0 0 0 0 0 +-1.579 -4.805 -1.745 0 0 0 0 0 0 0 +-1.558 -4.79 -1.737 0 0 0 0 0 0 0 +-1.549 -4.815 -1.745 0 0 0 0 0 0 0 +-1.536 -4.827 -1.747 0 0 0 0 0 0 0 +-1.513 -4.807 -1.738 0 0 0 0 0 0 0 +-1.5 -4.818 -1.74 0 0 0 0 0 0 0 +-1.487 -4.829 -1.743 0 0 0 0 0 0 0 +-1.476 -4.822 -1.739 0 0 0 0 0 0 0 +-1.462 -4.828 -1.74 0 0 0 0 0 0 0 +-1.449 -4.842 -1.743 0 0 0 0 0 0 0 +-1.428 -4.827 -1.736 0 0 0 0 0 0 0 +-1.417 -4.844 -1.74 0 0 0 0 0 0 0 +-1.4 -4.841 -1.738 0 0 0 0 0 0 0 +-1.382 -4.836 -1.734 0 0 0 0 0 0 0 +-1.376 -4.844 -1.736 0 0 0 0 0 0 0 +-1.364 -4.863 -1.742 0 0 0 0 0 0 0 +-1.346 -4.854 -1.737 0 0 0 0 0 0 0 +-1.328 -4.847 -1.733 0 0 0 0 0 0 0 +-1.313 -4.853 -1.734 0 0 0 0 0 0 0 +-1.297 -4.854 -1.732 0 0 0 0 0 0 0 +-1.282 -4.862 -1.734 0 0 0 0 0 0 0 +-1.277 -4.874 -1.738 0 0 0 0 0 0 0 +-1.256 -4.855 -1.729 0 0 0 0 0 0 0 +-1.244 -4.87 -1.733 0 0 0 0 0 0 0 +-1.23 -4.881 -1.736 0 0 0 0 0 0 0 +-1.209 -4.863 -1.727 0 0 0 0 0 0 0 +-1.197 -4.879 -1.732 0 0 0 0 0 0 0 +-1.181 -4.881 -1.731 0 0 0 0 0 0 0 +-1.172 -4.874 -1.728 0 0 0 0 0 0 0 +-1.156 -4.878 -1.728 0 0 0 0 0 0 0 +-1.144 -4.896 -1.734 0 0 0 0 0 0 0 +-1.124 -4.879 -1.726 0 0 0 0 0 0 0 +-1.115 -4.91 -1.736 0 0 0 0 0 0 0 +-1.097 -4.901 -1.731 0 0 0 0 0 0 0 +-1.076 -4.879 -1.722 0 0 0 0 0 0 0 +-1.074 -4.906 -1.731 0 0 0 0 0 0 0 +-1.056 -4.898 -1.727 0 0 0 0 0 0 0 +-1.043 -4.911 -1.731 0 0 0 0 0 0 0 +-1.027 -4.912 -1.73 0 0 0 0 0 0 0 +-1.013 -4.923 -1.733 0 0 0 0 0 0 0 +-0.993 -4.902 -1.724 0 0 0 0 0 0 0 +-0.981 -4.925 -1.731 0 0 0 0 0 0 0 +-0.971 -4.916 -1.727 0 0 0 0 0 0 0 +-0.957 -4.926 -1.73 0 0 0 0 0 0 0 +-0.942 -4.933 -1.731 0 0 0 0 0 0 0 +-0.925 -4.923 -1.727 0 0 0 0 0 0 0 +-0.91 -4.931 -1.729 0 0 0 0 0 0 0 +-0.897 -4.945 -1.733 0 0 0 0 0 0 0 +-0.88 -4.941 -1.73 0 0 0 0 0 0 0 +-0.863 -4.934 -1.727 0 0 0 0 0 0 0 +-0.857 -4.949 -1.731 0 0 0 0 0 0 0 +-0.842 -4.951 -1.731 0 0 0 0 0 0 0 +-0.824 -4.941 -1.727 0 0 0 0 0 0 0 +-0.808 -4.943 -1.727 0 0 0 0 0 0 0 +-0.793 -4.946 -1.727 0 0 0 0 0 0 0 +-0.779 -4.961 -1.731 0 0 0 0 0 0 0 +-0.764 -4.969 -1.734 0 0 0 0 0 0 0 +-0.755 -4.961 -1.73 0 0 0 0 0 0 0 +-0.739 -4.962 -1.729 0 0 0 0 0 0 0 +-0.725 -4.972 -1.732 0 0 0 0 0 0 0 +-0.709 -4.972 -1.731 0 0 0 0 0 0 0 +-0.693 -4.969 -1.729 0 0 0 0 0 0 0 +-0.679 -4.986 -1.735 0 0 0 0 0 0 0 +-0.67 -4.975 -1.731 0 0 0 0 0 0 0 +-0.654 -4.979 -1.731 0 0 0 0 0 0 0 +-0.64 -4.994 -1.736 0 0 0 0 0 0 0 +-0.623 -4.987 -1.733 0 0 0 0 0 0 0 +-0.608 -4.993 -1.734 0 0 0 0 0 0 0 +-0.593 -4.995 -1.734 0 0 0 0 0 0 0 +-0.576 -4.991 -1.732 0 0 0 0 0 0 0 +-0.562 -5.008 -1.738 0 0 0 0 0 0 0 +-0.554 -5.005 -1.736 0 0 0 0 0 0 0 +-0.537 -4.993 -1.731 0 0 0 0 0 0 0 +-0.523 -5.012 -1.738 0 0 0 0 0 0 0 +-0.506 -5.004 -1.734 0 0 0 0 0 0 0 +-0.491 -5.008 -1.735 0 0 0 0 0 0 0 +-0.474 -5.004 -1.733 0 0 0 0 0 0 0 +-0.458 -4.994 -1.729 0 0 0 0 0 0 0 +-0.451 -5.004 -1.732 0 0 0 0 0 0 0 +-0.437 -5.031 -1.742 0 0 0 0 0 0 0 +-0.421 -5.025 -1.739 0 0 0 0 0 0 0 +-0.406 -5.042 -1.745 0 0 0 0 0 0 0 +-0.388 -5.007 -1.731 0 0 0 0 0 0 0 +-0.372 -5.016 -1.734 0 0 0 0 0 0 0 +-0.358 -5.034 -1.74 0 0 0 0 0 0 0 +-0.349 -5.023 -1.736 0 0 0 0 0 0 0 +-0.334 -5.03 -1.738 0 0 0 0 0 0 0 +-0.318 -5.033 -1.739 0 0 0 0 0 0 0 +-0.302 -5.038 -1.74 0 0 0 0 0 0 0 +-0.285 -5.018 -1.733 0 0 0 0 0 0 0 +-0.271 -5.047 -1.743 0 0 0 0 0 0 0 +-0.255 -5.036 -1.739 0 0 0 0 0 0 0 +-0.247 -5.046 -1.743 0 0 0 0 0 0 0 +-0.231 -5.034 -1.738 0 0 0 0 0 0 0 +-0.215 -5.048 -1.743 0 0 0 0 0 0 0 +-0.199 -5.031 -1.736 0 0 0 0 0 0 0 +-0.184 -5.049 -1.743 0 0 0 0 0 0 0 +-0.167 -5.023 -1.733 0 0 0 0 0 0 0 +-0.152 -5.063 -1.747 0 0 0 0 0 0 0 +-0.144 -5.041 -1.739 0 0 0 0 0 0 0 +-0.128 -5.051 -1.743 0 0 0 0 0 0 0 +-0.112 -5.032 -1.736 0 0 0 0 0 0 0 +-0.096 -5.049 -1.742 0 0 0 0 0 0 0 +-0.08 -5.031 -1.735 0 0 0 0 0 0 0 +-0.065 -5.065 -1.747 0 0 0 0 0 0 0 +-0.049 -5.037 -1.737 0 0 0 0 0 0 0 +-0.041 -5.046 -1.74 0 0 0 0 0 0 0 +-0.025 -5.035 -1.736 0 0 0 0 0 0 0 +-0.009 -5.058 -1.745 0 0 0 0 0 0 0 +0.007 -5.037 -1.737 0 0 0 0 0 0 0 +0.023 -5.067 -1.748 0 0 0 0 0 0 0 +0.038 -5.056 -1.744 0 0 0 0 0 0 0 +0.054 -5.056 -1.744 0 0 0 0 0 0 0 +0.062 -5.031 -1.735 0 0 0 0 0 0 0 +0.079 -5.072 -1.75 0 0 0 0 0 0 0 +0.094 -5.046 -1.74 0 0 0 0 0 0 0 +0.11 -5.042 -1.739 0 0 0 0 0 0 0 +0.126 -5.06 -1.746 0 0 0 0 0 0 0 +0.142 -5.056 -1.745 0 0 0 0 0 0 0 +0.158 -5.052 -1.743 0 0 0 0 0 0 0 +0.165 -5.042 -1.74 0 0 0 0 0 0 0 +0.181 -5.045 -1.741 0 0 0 0 0 0 0 +0.198 -5.076 -1.753 0 0 0 0 0 0 0 +0.213 -5.05 -1.743 0 0 0 0 0 0 0 +0.229 -5.053 -1.745 0 0 0 0 0 0 0 +0.245 -5.05 -1.744 0 0 0 0 0 0 0 +0.261 -5.049 -1.744 0 0 0 0 0 0 0 +0.269 -5.049 -1.744 0 0 0 0 0 0 0 +0.286 -5.065 -1.75 0 0 0 0 0 0 0 +0.301 -5.056 -1.747 0 0 0 0 0 0 0 +0.317 -5.055 -1.747 0 0 0 0 0 0 0 +0.334 -5.069 -1.753 0 0 0 0 0 0 0 +0.348 -5.05 -1.746 0 0 0 0 0 0 0 +0.364 -5.041 -1.743 0 0 0 0 0 0 0 +0.372 -5.05 -1.747 0 0 0 0 0 0 0 +0.389 -5.062 -1.752 0 0 0 0 0 0 0 +0.405 -5.06 -1.752 0 0 0 0 0 0 0 +0.421 -5.063 -1.753 0 0 0 0 0 0 0 +0.437 -5.06 -1.752 0 0 0 0 0 0 0 +0.453 -5.055 -1.751 0 0 0 0 0 0 0 +0.468 -5.044 -1.747 0 0 0 0 0 0 0 +0.478 -5.065 -1.756 0 0 0 0 0 0 0 +0.492 -5.047 -1.749 0 0 0 0 0 0 0 +0.51 -5.07 -1.758 0 0 0 0 0 0 0 +0.524 -5.048 -1.751 0 0 0 0 0 0 0 +0.541 -5.052 -1.753 0 0 0 0 0 0 0 +0.557 -5.052 -1.754 0 0 0 0 0 0 0 +0.574 -5.065 -1.759 0 0 0 0 0 0 0 +0.579 -5.036 -1.749 0 0 0 0 0 0 0 +0.596 -5.047 -1.754 0 0 0 0 0 0 0 +0.611 -5.04 -1.752 0 0 0 0 0 0 0 +0.627 -5.04 -1.752 0 0 0 0 0 0 0 +0.644 -5.041 -1.754 0 0 0 0 0 0 0 +0.66 -5.045 -1.756 0 0 0 0 0 0 0 +0.674 -5.026 -1.749 0 0 0 0 0 0 0 +0.683 -5.034 -1.753 0 0 0 0 0 0 0 +0.699 -5.036 -1.754 0 0 0 0 0 0 0 +0.715 -5.034 -1.754 0 0 0 0 0 0 0 +0.729 -5.015 -1.748 0 0 0 0 0 0 0 +0.748 -5.035 -1.756 0 0 0 0 0 0 0 +0.763 -5.027 -1.754 0 0 0 0 0 0 0 +0.782 -5.045 -1.762 0 0 0 0 0 0 0 +0.786 -5.023 -1.754 0 0 0 0 0 0 0 +0.803 -5.024 -1.756 0 0 0 0 0 0 0 +0.817 -5.011 -1.752 0 0 0 0 0 0 0 +0.834 -5.019 -1.756 0 0 0 0 0 0 0 +0.851 -5.022 -1.758 0 0 0 0 0 0 0 +0.865 -5.01 -1.754 0 0 0 0 0 0 0 +0.88 -5.004 -1.753 0 0 0 0 0 0 0 +0.895 -4.995 -1.751 0 0 0 0 0 0 0 +0.905 -5.005 -1.755 0 0 0 0 0 0 0 +0.924 -5.019 -1.761 0 0 0 0 0 0 0 +0.933 -4.983 -1.749 0 0 0 0 0 0 0 +0.952 -4.994 -1.754 0 0 0 0 0 0 0 +0.969 -5 -1.758 0 0 0 0 0 0 0 +0.985 -4.997 -1.758 0 0 0 0 0 0 0 +1.001 -4.994 -1.758 0 0 0 0 0 0 0 +1.009 -4.995 -1.758 0 0 0 0 0 0 0 +1.021 -4.977 -1.753 0 0 0 0 0 0 0 +1.045 -5.01 -1.767 0 0 0 0 0 0 0 +3.071 -4.269 -1.819 0 0 0 0 0 0 0 +3.066 -4.235 -1.808 0 0 0 0 0 0 0 +3.051 -4.2 -1.794 0 0 0 0 0 0 0 +3.043 -4.162 -1.781 0 0 0 0 0 0 0 +3.076 -4.179 -1.793 0 0 0 0 0 0 0 +3.08 -4.158 -1.787 0 0 0 0 0 0 0 +3.097 -4.152 -1.79 0 0 0 0 0 0 0 +3.101 -4.131 -1.784 0 0 0 0 0 0 0 +3.125 -4.136 -1.791 0 0 0 0 0 0 0 +3.121 -4.117 -1.785 0 0 0 0 0 0 0 +3.133 -4.106 -1.784 0 0 0 0 0 0 0 +3.153 -4.105 -1.788 0 0 0 0 0 0 0 +3.17 -4.101 -1.791 0 0 0 0 0 0 0 +3.171 -4.076 -1.784 0 0 0 0 0 0 0 +3.194 -4.078 -1.79 0 0 0 0 0 0 0 +3.192 -4.051 -1.781 0 0 0 0 0 0 0 +3.228 -4.082 -1.799 0 0 0 0 0 0 0 +3.22 -4.046 -1.786 0 0 0 0 0 0 0 +3.225 -4.027 -1.782 0 0 0 0 0 0 0 +3.244 -4.024 -1.785 0 0 0 0 0 0 0 +3.264 -4.022 -1.79 0 0 0 0 0 0 0 +3.268 -4.002 -1.785 0 0 0 0 0 0 0 +3.298 -4.013 -1.795 0 0 0 0 0 0 0 +3.288 -3.988 -1.785 0 0 0 0 0 0 0 +3.294 -3.971 -1.782 0 0 0 0 0 0 0 +3.313 -3.967 -1.785 0 0 0 0 0 0 0 +3.329 -3.961 -1.787 0 0 0 0 0 0 0 +3.329 -3.936 -1.781 0 0 0 0 0 0 0 +3.357 -3.944 -1.79 0 0 0 0 0 0 0 +3.364 -3.927 -1.786 0 0 0 0 0 0 0 +3.378 -3.931 -1.791 0 0 0 0 0 0 0 +3.378 -3.907 -1.784 0 0 0 0 0 0 0 +3.402 -3.909 -1.79 0 0 0 0 0 0 0 +3.4 -3.883 -1.783 0 0 0 0 0 0 0 +3.424 -3.884 -1.789 0 0 0 0 0 0 0 +3.422 -3.858 -1.781 0 0 0 0 0 0 0 +3.451 -3.866 -1.79 0 0 0 0 0 0 0 +3.444 -3.846 -1.783 0 0 0 0 0 0 0 +3.46 -3.84 -1.785 0 0 0 0 0 0 0 +3.468 -3.825 -1.783 0 0 0 0 0 0 0 +3.494 -3.829 -1.791 0 0 0 0 0 0 0 +3.501 -3.812 -1.788 0 0 0 0 0 0 0 +3.5 -3.788 -1.781 0 0 0 0 0 0 0 +3.521 -3.786 -1.786 0 0 0 0 0 0 0 +3.529 -3.771 -1.784 0 0 0 0 0 0 0 +3.532 -3.763 -1.783 0 0 0 0 0 0 0 +3.546 -3.753 -1.783 0 0 0 0 0 0 0 +3.555 -3.739 -1.782 0 0 0 0 0 0 0 +3.557 -3.718 -1.777 0 0 0 0 0 0 0 +3.577 -3.715 -1.781 0 0 0 0 0 0 0 +3.587 -3.703 -1.781 0 0 0 0 0 0 0 +3.594 -3.686 -1.778 0 0 0 0 0 0 0 +3.598 -3.679 -1.777 0 0 0 0 0 0 0 +3.612 -3.67 -1.778 0 0 0 0 0 0 0 +3.62 -3.655 -1.776 0 0 0 0 0 0 0 +3.634 -3.646 -1.778 0 0 0 0 0 0 0 +3.649 -3.639 -1.78 0 0 0 0 0 0 0 +3.658 -3.625 -1.778 0 0 0 0 0 0 0 +3.66 -3.615 -1.776 0 0 0 0 0 0 0 +3.683 -3.615 -1.783 0 0 0 0 0 0 0 +3.684 -3.593 -1.777 0 0 0 0 0 0 0 +3.698 -3.584 -1.778 0 0 0 0 0 0 0 +3.709 -3.573 -1.778 0 0 0 0 0 0 0 +3.712 -3.553 -1.774 0 0 0 0 0 0 0 +3.731 -3.549 -1.778 0 0 0 0 0 0 0 +3.738 -3.545 -1.779 0 0 0 0 0 0 0 +3.745 -3.529 -1.777 0 0 0 0 0 0 0 +3.756 -3.517 -1.777 0 0 0 0 0 0 0 +3.758 -3.497 -1.772 0 0 0 0 0 0 0 +3.77 -3.486 -1.773 0 0 0 0 0 0 0 +3.787 -3.479 -1.776 0 0 0 0 0 0 0 +3.8 -3.47 -1.777 0 0 0 0 0 0 0 +3.796 -3.455 -1.772 0 0 0 0 0 0 0 +3.814 -3.449 -1.776 0 0 0 0 0 0 0 +3.822 -3.435 -1.774 0 0 0 0 0 0 0 +3.827 -3.418 -1.772 0 0 0 0 0 0 0 +3.843 -3.411 -1.774 0 0 0 0 0 0 0 +3.865 -3.409 -1.78 0 0 0 0 0 0 0 +3.867 -3.389 -1.776 0 0 0 0 0 0 0 +3.867 -3.367 -1.77 0 0 0 0 0 0 0 +3.889 -3.376 -1.778 0 0 0 0 0 0 0 +3.91 -3.372 -1.783 0 0 0 0 0 0 0 +3.906 -3.348 -1.776 0 0 0 0 0 0 0 +3.921 -3.339 -1.778 0 0 0 0 0 0 0 +3.928 -3.324 -1.777 0 0 0 0 0 0 0 +3.944 -3.317 -1.78 0 0 0 0 0 0 0 +3.949 -3.299 -1.777 0 0 0 0 0 0 0 +3.95 -3.29 -1.775 0 0 0 0 0 0 0 +3.963 -3.28 -1.776 0 0 0 0 0 0 0 +3.991 -3.281 -1.785 0 0 0 0 0 0 0 +3.976 -3.249 -1.773 0 0 0 0 0 0 0 +4.001 -3.248 -1.78 0 0 0 0 0 0 0 +3.998 -3.225 -1.774 0 0 0 0 0 0 0 +4.026 -3.226 -1.782 0 0 0 0 0 0 0 +4.013 -3.206 -1.774 0 0 0 0 0 0 0 +4.026 -3.196 -1.775 0 0 0 0 0 0 0 +4.03 -3.178 -1.772 0 0 0 0 0 0 0 +4.045 -3.169 -1.774 0 0 0 0 0 0 0 +4.049 -3.152 -1.772 0 0 0 0 0 0 0 +4.066 -3.145 -1.775 0 0 0 0 0 0 0 +4.065 -3.134 -1.772 0 0 0 0 0 0 0 +4.082 -3.127 -1.776 0 0 0 0 0 0 0 +4.088 -3.111 -1.774 0 0 0 0 0 0 0 +4.098 -3.098 -1.774 0 0 0 0 0 0 0 +4.11 -3.087 -1.775 0 0 0 0 0 0 0 +4.126 -3.079 -1.778 0 0 0 0 0 0 0 +4.12 -3.055 -1.771 0 0 0 0 0 0 0 +4.16 -3.064 -1.785 0 0 0 0 0 0 0 +4.129 -3.031 -1.768 0 0 0 0 0 0 0 +4.16 -3.033 -1.778 0 0 0 0 0 0 0 +4.16 -3.013 -1.774 0 0 0 0 0 0 0 +4.18 -3.008 -1.778 0 0 0 0 0 0 0 +4.182 -2.989 -1.775 0 0 0 0 0 0 0 +4.202 -2.984 -1.78 0 0 0 0 0 0 0 +4.193 -2.958 -1.772 0 0 0 0 0 0 0 +4.204 -2.955 -1.774 0 0 0 0 0 0 0 +4.205 -2.937 -1.771 0 0 0 0 0 0 0 +4.228 -2.933 -1.777 0 0 0 0 0 0 0 +4.231 -2.916 -1.774 0 0 0 0 0 0 0 +4.253 -2.911 -1.78 0 0 0 0 0 0 0 +4.229 -2.875 -1.765 0 0 0 0 0 0 0 +4.26 -2.877 -1.775 0 0 0 0 0 0 0 +4.26 -2.867 -1.773 0 0 0 0 0 0 0 +4.266 -2.851 -1.772 0 0 0 0 0 0 0 +4.256 -2.826 -1.763 0 0 0 0 0 0 0 +4.293 -2.831 -1.776 0 0 0 0 0 0 0 +4.283 -2.805 -1.767 0 0 0 0 0 0 0 +4.297 -2.795 -1.77 0 0 0 0 0 0 0 +4.297 -2.776 -1.766 0 0 0 0 0 0 0 +4.311 -2.775 -1.77 0 0 0 0 0 0 0 +4.304 -2.752 -1.763 0 0 0 0 0 0 0 +4.324 -2.745 -1.768 0 0 0 0 0 0 0 +4.326 -2.728 -1.765 0 0 0 0 0 0 0 +4.33 -2.711 -1.763 0 0 0 0 0 0 0 +4.335 -2.695 -1.762 0 0 0 0 0 0 0 +4.36 -2.701 -1.771 0 0 0 0 0 0 0 +4.362 -2.684 -1.768 0 0 0 0 0 0 0 +4.372 -2.671 -1.769 0 0 0 0 0 0 0 +4.366 -2.649 -1.763 0 0 0 0 0 0 0 +4.389 -2.643 -1.769 0 0 0 0 0 0 0 +4.383 -2.621 -1.763 0 0 0 0 0 0 0 +4.399 -2.612 -1.766 0 0 0 0 0 0 0 +4.407 -2.598 -1.766 0 0 0 0 0 0 0 +4.419 -2.596 -1.77 0 0 0 0 0 0 0 +4.411 -2.573 -1.763 0 0 0 0 0 0 0 +4.421 -2.56 -1.763 0 0 0 0 0 0 0 +4.439 -2.551 -1.767 0 0 0 0 0 0 0 +4.432 -2.529 -1.761 0 0 0 0 0 0 0 +4.45 -2.521 -1.765 0 0 0 0 0 0 0 +4.436 -2.495 -1.756 0 0 0 0 0 0 0 +4.442 -2.489 -1.757 0 0 0 0 0 0 0 +4.465 -2.483 -1.763 0 0 0 0 0 0 0 +4.462 -2.464 -1.759 0 0 0 0 0 0 0 +4.472 -2.45 -1.76 0 0 0 0 0 0 0 +4.476 -2.435 -1.758 0 0 0 0 0 0 0 +4.479 -2.418 -1.756 0 0 0 0 0 0 0 +4.503 -2.413 -1.763 0 0 0 0 0 0 0 +4.492 -2.398 -1.757 0 0 0 0 0 0 0 +4.521 -2.395 -1.766 0 0 0 0 0 0 0 +4.493 -2.362 -1.752 0 0 0 0 0 0 0 +4.536 -2.366 -1.766 0 0 0 0 0 0 0 +4.52 -2.34 -1.756 0 0 0 0 0 0 0 +4.537 -2.331 -1.761 0 0 0 0 0 0 0 +4.535 -2.312 -1.756 0 0 0 0 0 0 0 +4.531 -2.301 -1.754 0 0 0 0 0 0 0 +4.559 -2.297 -1.762 0 0 0 0 0 0 0 +4.547 -2.273 -1.754 0 0 0 0 0 0 0 +4.575 -2.269 -1.763 0 0 0 0 0 0 0 +4.563 -2.246 -1.755 0 0 0 0 0 0 0 +4.565 -2.229 -1.753 0 0 0 0 0 0 0 +4.584 -2.22 -1.758 0 0 0 0 0 0 0 +4.576 -2.207 -1.753 0 0 0 0 0 0 0 +4.593 -2.198 -1.757 0 0 0 0 0 0 0 +4.586 -2.177 -1.752 0 0 0 0 0 0 0 +4.607 -2.169 -1.757 0 0 0 0 0 0 0 +4.607 -2.151 -1.754 0 0 0 0 0 0 0 +4.625 -2.142 -1.759 0 0 0 0 0 0 0 +4.61 -2.118 -1.75 0 0 0 0 0 0 0 +4.625 -2.116 -1.755 0 0 0 0 0 0 0 +4.615 -2.094 -1.748 0 0 0 0 0 0 0 +4.649 -2.091 -1.759 0 0 0 0 0 0 0 +4.638 -2.069 -1.752 0 0 0 0 0 0 0 +4.651 -2.057 -1.755 0 0 0 0 0 0 0 +4.639 -2.035 -1.747 0 0 0 0 0 0 0 +4.671 -2.031 -1.758 0 0 0 0 0 0 0 +4.647 -2.012 -1.747 0 0 0 0 0 0 0 +4.67 -2.005 -1.754 0 0 0 0 0 0 0 +4.664 -1.985 -1.749 0 0 0 0 0 0 0 +4.686 -1.977 -1.755 0 0 0 0 0 0 0 +4.675 -1.955 -1.748 0 0 0 0 0 0 0 +4.695 -1.946 -1.754 0 0 0 0 0 0 0 +4.684 -1.924 -1.747 0 0 0 0 0 0 0 +4.708 -1.925 -1.755 0 0 0 0 0 0 0 +4.68 -1.897 -1.742 0 0 0 0 0 0 0 +4.711 -1.892 -1.752 0 0 0 0 0 0 0 +4.701 -1.871 -1.745 0 0 0 0 0 0 0 +4.723 -1.862 -1.752 0 0 0 0 0 0 0 +4.709 -1.84 -1.744 0 0 0 0 0 0 0 +4.736 -1.833 -1.752 0 0 0 0 0 0 0 +4.723 -1.82 -1.746 0 0 0 0 0 0 0 +4.715 -1.8 -1.74 0 0 0 0 0 0 0 +4.745 -1.794 -1.75 0 0 0 0 0 0 0 +4.729 -1.771 -1.742 0 0 0 0 0 0 0 +4.744 -1.76 -1.745 0 0 0 0 0 0 0 +4.769 -1.752 -1.753 0 0 0 0 0 0 0 +4.76 -1.732 -1.747 0 0 0 0 0 0 0 +4.761 -1.724 -1.747 0 0 0 0 0 0 0 +4.759 -1.706 -1.744 0 0 0 0 0 0 0 +4.788 -1.699 -1.753 0 0 0 0 0 0 0 +4.77 -1.676 -1.744 0 0 0 0 0 0 0 +4.809 -1.673 -1.757 0 0 0 0 0 0 0 +4.782 -1.647 -1.745 0 0 0 0 0 0 0 +4.787 -1.632 -1.745 0 0 0 0 0 0 0 +4.788 -1.624 -1.744 0 0 0 0 0 0 0 +4.816 -1.616 -1.753 0 0 0 0 0 0 0 +4.798 -1.594 -1.744 0 0 0 0 0 0 0 +4.814 -1.582 -1.748 0 0 0 0 0 0 0 +4.803 -1.562 -1.742 0 0 0 0 0 0 0 +4.833 -1.555 -1.752 0 0 0 0 0 0 0 +4.816 -1.533 -1.743 0 0 0 0 0 0 0 +4.833 -1.53 -1.749 0 0 0 0 0 0 0 +4.827 -1.511 -1.745 0 0 0 0 0 0 0 +4.846 -1.5 -1.75 0 0 0 0 0 0 0 +4.836 -1.481 -1.745 0 0 0 0 0 0 0 +4.857 -1.47 -1.751 0 0 0 0 0 0 0 +4.836 -1.448 -1.741 0 0 0 0 0 0 0 +4.866 -1.44 -1.751 0 0 0 0 0 0 0 +4.838 -1.423 -1.739 0 0 0 0 0 0 0 +4.877 -1.418 -1.752 0 0 0 0 0 0 0 +4.861 -1.397 -1.745 0 0 0 0 0 0 0 +4.891 -1.389 -1.754 0 0 0 0 0 0 0 +4.866 -1.365 -1.743 0 0 0 0 0 0 0 +4.894 -1.357 -1.752 0 0 0 0 0 0 0 +4.866 -1.332 -1.74 0 0 0 0 0 0 0 +4.893 -1.332 -1.749 0 0 0 0 0 0 0 +4.872 -1.309 -1.74 0 0 0 0 0 0 0 +4.9 -1.3 -1.749 0 0 0 0 0 0 0 +4.891 -1.282 -1.744 0 0 0 0 0 0 0 +4.918 -1.272 -1.753 0 0 0 0 0 0 0 +4.879 -1.246 -1.736 0 0 0 0 0 0 0 +4.921 -1.24 -1.751 0 0 0 0 0 0 0 +4.894 -1.225 -1.74 0 0 0 0 0 0 0 +4.903 -1.211 -1.742 0 0 0 0 0 0 0 +4.909 -1.196 -1.743 0 0 0 0 0 0 0 +4.938 -1.187 -1.752 0 0 0 0 0 0 0 +4.922 -1.166 -1.745 0 0 0 0 0 0 0 +4.942 -1.155 -1.751 0 0 0 0 0 0 0 +4.914 -1.132 -1.739 0 0 0 0 0 0 0 +4.92 -1.125 -1.74 0 0 0 0 0 0 0 +4.947 -1.115 -1.749 0 0 0 0 0 0 0 +4.915 -1.092 -1.736 0 0 0 0 0 0 0 +4.957 -1.085 -1.751 0 0 0 0 0 0 0 +4.93 -1.063 -1.739 0 0 0 0 0 0 0 +4.957 -1.052 -1.748 0 0 0 0 0 0 0 +4.945 -1.034 -1.743 0 0 0 0 0 0 0 +4.954 -1.027 -1.745 0 0 0 0 0 0 0 +4.956 -1.011 -1.745 0 0 0 0 0 0 0 +4.968 -0.998 -1.748 0 0 0 0 0 0 0 +4.955 -0.979 -1.742 0 0 0 0 0 0 0 +4.967 -0.965 -1.745 0 0 0 0 0 0 0 +4.964 -0.948 -1.743 0 0 0 0 0 0 0 +4.978 -0.935 -1.747 0 0 0 0 0 0 0 +4.967 -0.925 -1.743 0 0 0 0 0 0 0 +4.983 -0.911 -1.747 0 0 0 0 0 0 0 +4.974 -0.894 -1.743 0 0 0 0 0 0 0 +4.992 -0.881 -1.749 0 0 0 0 0 0 0 +4.956 -0.858 -1.734 0 0 0 0 0 0 0 +4.972 -0.845 -1.739 0 0 0 0 0 0 0 +4.978 -0.83 -1.74 0 0 0 0 0 0 0 +4.988 -0.824 -1.744 0 0 0 0 0 0 0 +4.971 -0.805 -1.736 0 0 0 0 0 0 0 +4.988 -0.791 -1.742 0 0 0 0 0 0 0 +4.977 -0.774 -1.737 0 0 0 0 0 0 0 +5 -0.761 -1.745 0 0 0 0 0 0 0 +4.964 -0.74 -1.73 0 0 0 0 0 0 0 +5.007 -0.73 -1.745 0 0 0 0 0 0 0 +4.979 -0.71 -1.734 0 0 0 0 0 0 0 +5.01 -0.706 -1.745 0 0 0 0 0 0 0 +4.992 -0.688 -1.738 0 0 0 0 0 0 0 +5.007 -0.674 -1.743 0 0 0 0 0 0 0 +4.991 -0.656 -1.736 0 0 0 0 0 0 0 +5.021 -0.643 -1.746 0 0 0 0 0 0 0 +5 -0.625 -1.738 0 0 0 0 0 0 0 +5.015 -0.611 -1.743 0 0 0 0 0 0 0 +5.005 -0.602 -1.738 0 0 0 0 0 0 0 +4.994 -0.584 -1.734 0 0 0 0 0 0 0 +5.009 -0.57 -1.738 0 0 0 0 0 0 0 +5.014 -0.555 -1.74 0 0 0 0 0 0 0 +4.997 -0.537 -1.733 0 0 0 0 0 0 0 +4.999 -0.521 -1.733 0 0 0 0 0 0 0 +5.009 -0.515 -1.736 0 0 0 0 0 0 0 +5.022 -0.5 -1.74 0 0 0 0 0 0 0 +5.008 -0.483 -1.735 0 0 0 0 0 0 0 +5.025 -0.468 -1.74 0 0 0 0 0 0 0 +5.021 -0.452 -1.738 0 0 0 0 0 0 0 +5.031 -0.437 -1.742 0 0 0 0 0 0 0 +5.012 -0.42 -1.734 0 0 0 0 0 0 0 +5.023 -0.405 -1.738 0 0 0 0 0 0 0 +5.008 -0.396 -1.732 0 0 0 0 0 0 0 +5.038 -0.382 -1.743 0 0 0 0 0 0 0 +5.015 -0.364 -1.734 0 0 0 0 0 0 0 +5.038 -0.35 -1.742 0 0 0 0 0 0 0 +5 -0.332 -1.727 0 0 0 0 0 0 0 +5.008 -0.317 -1.73 0 0 0 0 0 0 0 +5.021 -0.301 -1.734 0 0 0 0 0 0 0 +5.045 -0.295 -1.743 0 0 0 0 0 0 0 +5.022 -0.278 -1.734 0 0 0 0 0 0 0 +5.03 -0.262 -1.737 0 0 0 0 0 0 0 +5.018 -0.246 -1.732 0 0 0 0 0 0 0 +5.03 -0.231 -1.736 0 0 0 0 0 0 0 +5.021 -0.214 -1.733 0 0 0 0 0 0 0 +5.043 -0.199 -1.74 0 0 0 0 0 0 0 +5.015 -0.191 -1.73 0 0 0 0 0 0 0 +5.038 -0.175 -1.738 0 0 0 0 0 0 0 +5.01 -0.159 -1.728 0 0 0 0 0 0 0 +5.033 -0.144 -1.736 0 0 0 0 0 0 0 +5.013 -0.127 -1.729 0 0 0 0 0 0 0 +5.012 -0.112 -1.728 0 0 0 0 0 0 0 +5.018 -0.096 -1.73 0 0 0 0 0 0 0 +5.014 -0.088 -1.729 0 0 0 0 0 0 0 +5.027 -0.072 -1.734 0 0 0 0 0 0 0 +5.031 -0.057 -1.735 0 0 0 0 0 0 0 +5.03 -0.041 -1.734 0 0 0 0 0 0 0 +5.013 -0.025 -1.728 0 0 0 0 0 0 0 +5.018 -0.009 -1.73 0 0 0 0 0 0 0 +4.885 0.004 -1.736 0 0 0 0 0 0 0 +4.883 0.02 -1.735 0 0 0 0 0 0 0 +4.877 0.035 -1.733 0 0 0 0 0 0 0 +4.879 0.05 -1.734 0 0 0 0 0 0 0 +4.89 0.066 -1.738 0 0 0 0 0 0 0 +4.877 0.073 -1.733 0 0 0 0 0 0 0 +4.884 0.089 -1.736 0 0 0 0 0 0 0 +4.882 0.104 -1.735 0 0 0 0 0 0 0 +4.885 0.12 -1.737 0 0 0 0 0 0 0 +4.887 0.135 -1.738 0 0 0 0 0 0 0 +4.881 0.15 -1.735 0 0 0 0 0 0 0 +4.891 0.166 -1.74 0 0 0 0 0 0 0 +4.876 0.173 -1.734 0 0 0 0 0 0 0 +4.883 0.189 -1.737 0 0 0 0 0 0 0 +4.871 0.204 -1.733 0 0 0 0 0 0 0 +4.882 0.219 -1.737 0 0 0 0 0 0 0 +4.887 0.235 -1.739 0 0 0 0 0 0 0 +4.867 0.249 -1.732 0 0 0 0 0 0 0 +4.866 0.265 -1.732 0 0 0 0 0 0 0 +4.873 0.273 -1.735 0 0 0 0 0 0 0 +4.861 0.287 -1.73 0 0 0 0 0 0 0 +4.868 0.303 -1.733 0 0 0 0 0 0 0 +4.861 0.318 -1.731 0 0 0 0 0 0 0 +4.849 0.333 -1.727 0 0 0 0 0 0 0 +4.854 0.348 -1.729 0 0 0 0 0 0 0 +4.862 0.364 -1.733 0 0 0 0 0 0 0 +4.85 0.371 -1.728 0 0 0 0 0 0 0 +4.849 0.386 -1.728 0 0 0 0 0 0 0 +4.844 0.401 -1.727 0 0 0 0 0 0 0 +4.845 0.416 -1.728 0 0 0 0 0 0 0 +4.839 0.431 -1.726 0 0 0 0 0 0 0 +4.842 0.447 -1.728 0 0 0 0 0 0 0 +4.84 0.462 -1.728 0 0 0 0 0 0 0 +4.84 0.47 -1.728 0 0 0 0 0 0 0 +4.836 0.485 -1.727 0 0 0 0 0 0 0 +4.857 0.502 -1.735 0 0 0 0 0 0 0 +4.835 0.515 -1.728 0 0 0 0 0 0 0 +4.848 0.532 -1.733 0 0 0 0 0 0 0 +4.83 0.545 -1.727 0 0 0 0 0 0 0 +4.837 0.562 -1.73 0 0 0 0 0 0 0 +4.824 0.568 -1.725 0 0 0 0 0 0 0 +4.837 0.585 -1.731 0 0 0 0 0 0 0 +4.812 0.597 -1.723 0 0 0 0 0 0 0 +4.816 0.613 -1.725 0 0 0 0 0 0 0 +4.816 0.628 -1.725 0 0 0 0 0 0 0 +4.82 0.644 -1.728 0 0 0 0 0 0 0 +4.81 0.658 -1.725 0 0 0 0 0 0 0 +4.816 0.667 -1.728 0 0 0 0 0 0 0 +4.8 0.68 -1.722 0 0 0 0 0 0 0 +4.807 0.696 -1.725 0 0 0 0 0 0 0 +4.803 0.711 -1.725 0 0 0 0 0 0 0 +4.802 0.727 -1.725 0 0 0 0 0 0 0 +4.792 0.741 -1.723 0 0 0 0 0 0 0 +4.797 0.757 -1.725 0 0 0 0 0 0 0 +4.791 0.763 -1.723 0 0 0 0 0 0 0 +4.807 0.781 -1.73 0 0 0 0 0 0 0 +4.782 0.793 -1.722 0 0 0 0 0 0 0 +4.781 0.808 -1.723 0 0 0 0 0 0 0 +4.788 0.825 -1.726 0 0 0 0 0 0 0 +4.774 0.838 -1.722 0 0 0 0 0 0 0 +4.776 0.854 -1.723 0 0 0 0 0 0 0 +4.785 0.863 -1.728 0 0 0 0 0 0 0 +4.768 0.875 -1.722 0 0 0 0 0 0 0 +4.782 0.893 -1.728 0 0 0 0 0 0 0 +4.775 0.908 -1.727 0 0 0 0 0 0 0 +4.765 0.921 -1.724 0 0 0 0 0 0 0 +4.758 0.936 -1.723 0 0 0 0 0 0 0 +4.761 0.952 -1.725 0 0 0 0 0 0 0 +4.756 0.958 -1.723 0 0 0 0 0 0 0 +4.765 0.976 -1.728 0 0 0 0 0 0 0 +4.749 0.988 -1.723 0 0 0 0 0 0 0 +4.746 1.003 -1.723 0 0 0 0 0 0 0 +4.749 1.019 -1.725 0 0 0 0 0 0 0 +4.734 1.032 -1.721 0 0 0 0 0 0 0 +4.74 1.049 -1.725 0 0 0 0 0 0 0 +4.73 1.062 -1.722 0 0 0 0 0 0 0 +4.726 1.069 -1.721 0 0 0 0 0 0 0 +4.732 1.086 -1.725 0 0 0 0 0 0 0 +4.721 1.099 -1.722 0 0 0 0 0 0 0 +4.716 1.113 -1.721 0 0 0 0 0 0 0 +4.716 1.129 -1.723 0 0 0 0 0 0 0 +4.709 1.143 -1.721 0 0 0 0 0 0 0 +4.705 1.158 -1.721 0 0 0 0 0 0 0 +4.696 1.163 -1.718 0 0 0 0 0 0 0 +4.7 1.18 -1.721 0 0 0 0 0 0 0 +4.689 1.193 -1.718 0 0 0 0 0 0 0 +4.689 1.209 -1.72 0 0 0 0 0 0 0 +4.692 1.225 -1.723 0 0 0 0 0 0 0 +4.694 1.241 -1.725 0 0 0 0 0 0 0 +4.682 1.254 -1.722 0 0 0 0 0 0 0 +4.688 1.263 -1.725 0 0 0 0 0 0 0 +4.675 1.276 -1.721 0 0 0 0 0 0 0 +4.671 1.29 -1.721 0 0 0 0 0 0 0 +4.663 1.304 -1.72 0 0 0 0 0 0 0 +4.661 1.319 -1.721 0 0 0 0 0 0 0 +4.664 1.336 -1.723 0 0 0 0 0 0 0 +4.647 1.347 -1.718 0 0 0 0 0 0 0 +4.65 1.356 -1.721 0 0 0 0 0 0 0 +4.64 1.369 -1.718 0 0 0 0 0 0 0 +4.636 1.383 -1.718 0 0 0 0 0 0 0 +4.642 1.401 -1.723 0 0 0 0 0 0 0 +4.627 1.412 -1.718 0 0 0 0 0 0 0 +4.639 1.432 -1.725 0 0 0 0 0 0 0 +4.622 1.443 -1.72 0 0 0 0 0 0 0 +4.636 1.455 -1.726 0 0 0 0 0 0 0 +4.612 1.463 -1.718 0 0 0 0 0 0 0 +4.628 1.484 -1.727 0 0 0 0 0 0 0 +4.611 1.495 -1.722 0 0 0 0 0 0 0 +4.605 1.509 -1.721 0 0 0 0 0 0 0 +4.596 1.522 -1.72 0 0 0 0 0 0 0 +4.604 1.541 -1.725 0 0 0 0 0 0 0 +4.591 1.544 -1.721 0 0 0 0 0 0 0 +4.591 1.561 -1.723 0 0 0 0 0 0 0 +4.579 1.573 -1.72 0 0 0 0 0 0 0 +4.59 1.593 -1.726 0 0 0 0 0 0 0 +4.569 1.601 -1.72 0 0 0 0 0 0 0 +4.571 1.618 -1.723 0 0 0 0 0 0 0 +4.561 1.631 -1.721 0 0 0 0 0 0 0 +4.565 1.64 -1.723 0 0 0 0 0 0 0 +4.546 1.65 -1.718 0 0 0 0 0 0 0 +4.546 1.666 -1.72 0 0 0 0 0 0 0 +4.541 1.68 -1.72 0 0 0 0 0 0 0 +4.543 1.697 -1.723 0 0 0 0 0 0 0 +4.536 1.711 -1.722 0 0 0 0 0 0 0 +4.53 1.725 -1.722 0 0 0 0 0 0 0 +4.519 1.729 -1.718 0 0 0 0 0 0 0 +4.515 1.744 -1.719 0 0 0 0 0 0 0 +4.51 1.758 -1.719 0 0 0 0 0 0 0 +4.521 1.779 -1.726 0 0 0 0 0 0 0 +4.497 1.785 -1.718 0 0 0 0 0 0 0 +4.508 1.806 -1.725 0 0 0 0 0 0 0 +4.485 1.814 -1.718 0 0 0 0 0 0 0 +4.496 1.826 -1.724 0 0 0 0 0 0 0 +4.48 1.836 -1.72 0 0 0 0 0 0 0 +4.485 1.854 -1.724 0 0 0 0 0 0 0 +4.474 1.866 -1.722 0 0 0 0 0 0 0 +4.461 1.877 -1.719 0 0 0 0 0 0 0 +4.453 1.891 -1.718 0 0 0 0 0 0 0 +4.453 1.907 -1.721 0 0 0 0 0 0 0 +4.439 1.91 -1.716 0 0 0 0 0 0 0 +4.44 1.926 -1.719 0 0 0 0 0 0 0 +4.439 1.943 -1.721 0 0 0 0 0 0 0 +4.428 1.954 -1.719 0 0 0 0 0 0 0 +4.415 1.965 -1.716 0 0 0 0 0 0 0 +4.419 1.984 -1.721 0 0 0 0 0 0 0 +4.42 2 -1.723 0 0 0 0 0 0 0 +4.401 2.001 -1.717 0 0 0 0 0 0 0 +4.403 2.018 -1.721 0 0 0 0 0 0 0 +4.393 2.03 -1.719 0 0 0 0 0 0 0 +4.389 2.045 -1.72 0 0 0 0 0 0 0 +4.369 2.053 -1.714 0 0 0 0 0 0 0 +4.378 2.073 -1.721 0 0 0 0 0 0 0 +4.357 2.081 -1.715 0 0 0 0 0 0 0 +4.376 2.098 -1.724 0 0 0 0 0 0 0 +4.354 2.104 -1.718 0 0 0 0 0 0 0 +4.353 2.121 -1.72 0 0 0 0 0 0 0 +4.341 2.132 -1.718 0 0 0 0 0 0 0 +4.351 2.154 -1.725 0 0 0 0 0 0 0 +4.321 2.156 -1.715 0 0 0 0 0 0 0 +4.331 2.178 -1.722 0 0 0 0 0 0 0 +4.314 2.186 -1.718 0 0 0 0 0 0 0 +4.317 2.196 -1.721 0 0 0 0 0 0 0 +4.294 2.201 -1.713 0 0 0 0 0 0 0 +4.298 2.221 -1.718 0 0 0 0 0 0 0 +4.293 2.235 -1.719 0 0 0 0 0 0 0 +4.286 2.249 -1.719 0 0 0 0 0 0 0 +4.29 2.268 -1.724 0 0 0 0 0 0 0 +4.267 2.265 -1.716 0 0 0 0 0 0 0 +4.263 2.28 -1.717 0 0 0 0 0 0 0 +4.258 2.294 -1.718 0 0 0 0 0 0 0 +4.25 2.307 -1.718 0 0 0 0 0 0 0 +4.253 2.326 -1.722 0 0 0 0 0 0 0 +4.237 2.335 -1.718 0 0 0 0 0 0 0 +4.237 2.352 -1.721 0 0 0 0 0 0 0 +4.225 2.354 -1.718 0 0 0 0 0 0 0 +4.224 2.371 -1.721 0 0 0 0 0 0 0 +4.21 2.38 -1.718 0 0 0 0 0 0 0 +4.211 2.398 -1.721 0 0 0 0 0 0 0 +4.195 2.407 -1.718 0 0 0 0 0 0 0 +4.2 2.427 -1.723 0 0 0 0 0 0 0 +4.175 2.43 -1.716 0 0 0 0 0 0 0 +4.177 2.441 -1.718 0 0 0 0 0 0 0 +4.168 2.453 -1.718 0 0 0 0 0 0 0 +4.167 2.47 -1.721 0 0 0 0 0 0 0 +4.149 2.477 -1.716 0 0 0 0 0 0 0 +4.156 2.499 -1.723 0 0 0 0 0 0 0 +4.137 2.505 -1.718 0 0 0 0 0 0 0 +4.14 2.525 -1.723 0 0 0 0 0 0 0 +4.126 2.534 -1.72 0 0 0 0 0 0 0 +4.132 2.546 -1.724 0 0 0 0 0 0 0 +4.111 2.551 -1.718 0 0 0 0 0 0 0 +4.104 2.565 -1.719 0 0 0 0 0 0 0 +4.093 2.576 -1.718 0 0 0 0 0 0 0 +4.083 2.588 -1.717 0 0 0 0 0 0 0 +4.082 2.605 -1.72 0 0 0 0 0 0 0 +4.067 2.613 -1.717 0 0 0 0 0 0 0 +4.066 2.622 -1.718 0 0 0 0 0 0 0 +4.058 2.635 -1.718 0 0 0 0 0 0 0 +4.056 2.651 -1.721 0 0 0 0 0 0 0 +4.052 2.667 -1.723 0 0 0 0 0 0 0 +4.034 2.674 -1.719 0 0 0 0 0 0 0 +4.029 2.689 -1.721 0 0 0 0 0 0 0 +4.03 2.698 -1.723 0 0 0 0 0 0 0 +4.015 2.706 -1.72 0 0 0 0 0 0 0 +4.012 2.723 -1.723 0 0 0 0 0 0 0 +3.999 2.733 -1.721 0 0 0 0 0 0 0 +3.988 2.743 -1.719 0 0 0 0 0 0 0 +3.987 2.761 -1.723 0 0 0 0 0 0 0 +3.983 2.777 -1.725 0 0 0 0 0 0 0 +3.971 2.778 -1.721 0 0 0 0 0 0 0 +3.96 2.789 -1.721 0 0 0 0 0 0 0 +3.955 2.803 -1.722 0 0 0 0 0 0 0 +3.95 2.819 -1.724 0 0 0 0 0 0 0 +3.934 2.826 -1.721 0 0 0 0 0 0 0 +3.926 2.84 -1.721 0 0 0 0 0 0 0 +3.924 2.856 -1.724 0 0 0 0 0 0 0 +3.91 2.856 -1.72 0 0 0 0 0 0 0 +3.909 2.874 -1.723 0 0 0 0 0 0 0 +3.902 2.888 -1.725 0 0 0 0 0 0 0 +3.896 2.903 -1.726 0 0 0 0 0 0 0 +3.875 2.906 -1.721 0 0 0 0 0 0 0 +3.875 2.925 -1.725 0 0 0 0 0 0 0 +3.869 2.939 -1.726 0 0 0 0 0 0 0 +3.858 2.941 -1.723 0 0 0 0 0 0 0 +3.848 2.952 -1.723 0 0 0 0 0 0 0 +3.838 2.964 -1.723 0 0 0 0 0 0 0 +3.829 2.976 -1.723 0 0 0 0 0 0 0 +3.825 2.992 -1.725 0 0 0 0 0 0 0 +3.809 2.999 -1.722 0 0 0 0 0 0 0 +3.799 3.011 -1.722 0 0 0 0 0 0 0 +3.794 3.017 -1.722 0 0 0 0 0 0 0 +3.785 3.028 -1.722 0 0 0 0 0 0 0 +3.781 3.045 -1.725 0 0 0 0 0 0 0 +3.778 3.062 -1.728 0 0 0 0 0 0 0 +3.764 3.07 -1.725 0 0 0 0 0 0 0 +3.748 3.077 -1.723 0 0 0 0 0 0 0 +3.743 3.092 -1.725 0 0 0 0 0 0 0 +3.73 3.102 -1.723 0 0 0 0 0 0 0 +3.725 3.107 -1.723 0 0 0 0 0 0 0 +3.714 3.118 -1.723 0 0 0 0 0 0 0 +3.704 3.13 -1.723 0 0 0 0 0 0 0 +3.692 3.139 -1.721 0 0 0 0 0 0 0 +3.683 3.152 -1.722 0 0 0 0 0 0 0 +3.675 3.164 -1.723 0 0 0 0 0 0 0 +3.667 3.178 -1.724 0 0 0 0 0 0 0 +3.672 3.193 -1.729 0 0 0 0 0 0 0 +3.647 3.191 -1.721 0 0 0 0 0 0 0 +3.642 3.207 -1.724 0 0 0 0 0 0 0 +3.631 3.217 -1.723 0 0 0 0 0 0 0 +3.614 3.222 -1.72 0 0 0 0 0 0 0 +3.612 3.241 -1.724 0 0 0 0 0 0 0 +3.594 3.236 -1.718 0 0 0 0 0 0 0 +3.594 3.256 -1.723 0 0 0 0 0 0 0 +3.577 3.261 -1.719 0 0 0 0 0 0 0 +3.568 3.273 -1.72 0 0 0 0 0 0 0 +3.552 3.279 -1.717 0 0 0 0 0 0 0 +3.549 3.297 -1.721 0 0 0 0 0 0 0 +3.535 3.305 -1.719 0 0 0 0 0 0 0 +3.532 3.312 -1.72 0 0 0 0 0 0 0 +3.52 3.322 -1.719 0 0 0 0 0 0 0 +3.504 3.328 -1.716 0 0 0 0 0 0 0 +3.5 3.345 -1.72 0 0 0 0 0 0 0 +3.494 3.36 -1.722 0 0 0 0 0 0 0 +3.494 3.382 -1.728 0 0 0 0 0 0 0 +3.463 3.373 -1.717 0 0 0 0 0 0 0 +3.462 3.382 -1.719 0 0 0 0 0 0 0 +3.447 3.389 -1.717 0 0 0 0 0 0 0 +3.437 3.4 -1.717 0 0 0 0 0 0 0 +3.429 3.414 -1.718 0 0 0 0 0 0 0 +3.42 3.427 -1.72 0 0 0 0 0 0 0 +3.402 3.43 -1.716 0 0 0 0 0 0 0 +3.399 3.448 -1.72 0 0 0 0 0 0 0 +3.38 3.451 -1.716 0 0 0 0 0 0 0 +3.386 3.468 -1.722 0 0 0 0 0 0 0 +3.372 3.475 -1.72 0 0 0 0 0 0 0 +3.352 3.476 -1.715 0 0 0 0 0 0 0 +3.343 3.489 -1.716 0 0 0 0 0 0 0 +3.341 3.509 -1.721 0 0 0 0 0 0 0 +3.317 3.506 -1.714 0 0 0 0 0 0 0 +3.314 3.525 -1.718 0 0 0 0 0 0 0 +3.316 3.538 -1.723 0 0 0 0 0 0 0 +3.295 3.538 -1.717 0 0 0 0 0 0 0 +3.284 3.548 -1.717 0 0 0 0 0 0 0 +3.276 3.562 -1.719 0 0 0 0 0 0 0 +3.259 3.566 -1.716 0 0 0 0 0 0 0 +3.25 3.579 -1.717 0 0 0 0 0 0 0 +3.249 3.6 -1.723 0 0 0 0 0 0 0 +3.233 3.594 -1.717 0 0 0 0 0 0 0 +3.227 3.61 -1.72 0 0 0 0 0 0 0 +3.221 3.625 -1.723 0 0 0 0 0 0 0 +3.193 3.617 -1.713 0 0 0 0 0 0 0 +3.187 3.633 -1.716 0 0 0 0 0 0 0 +3.185 3.654 -1.722 0 0 0 0 0 0 0 +3.161 3.65 -1.715 0 0 0 0 0 0 0 +3.16 3.661 -1.718 0 0 0 0 0 0 0 +3.149 3.671 -1.718 0 0 0 0 0 0 0 +3.134 3.676 -1.716 0 0 0 0 0 0 0 +3.122 3.686 -1.716 0 0 0 0 0 0 0 +3.117 3.703 -1.719 0 0 0 0 0 0 0 +3.095 3.701 -1.713 0 0 0 0 0 0 0 +3.096 3.725 -1.721 0 0 0 0 0 0 0 +3.081 3.72 -1.716 0 0 0 0 0 0 0 +3.066 3.726 -1.713 0 0 0 0 0 0 0 +3.066 3.75 -1.721 0 0 0 0 0 0 0 +3.051 3.755 -1.718 0 0 0 0 0 0 0 +3.034 3.759 -1.716 0 0 0 0 0 0 0 +3.026 3.772 -1.718 0 0 0 0 0 0 0 +3.018 3.786 -1.72 0 0 0 0 0 0 0 +2.999 3.775 -1.712 0 0 0 0 0 0 0 +2.991 3.789 -1.714 0 0 0 0 0 0 0 +2.979 3.798 -1.714 0 0 0 0 0 0 0 +2.976 3.819 -1.72 0 0 0 0 0 0 0 +2.959 3.823 -1.717 0 0 0 0 0 0 0 +2.952 3.838 -1.72 0 0 0 0 0 0 0 +2.936 3.843 -1.718 0 0 0 0 0 0 0 +2.941 3.861 -1.724 0 0 0 0 0 0 0 +2.921 3.86 -1.719 0 0 0 0 0 0 0 +2.917 3.881 -1.725 0 0 0 0 0 0 0 +2.897 3.879 -1.72 0 0 0 0 0 0 0 +2.894 3.9 -1.725 0 0 0 0 0 0 0 +2.874 3.899 -1.721 0 0 0 0 0 0 0 +2.861 3.906 -1.72 0 0 0 0 0 0 0 +2.859 3.917 -1.723 0 0 0 0 0 0 0 +2.852 3.933 -1.726 0 0 0 0 0 0 0 +2.837 3.938 -1.724 0 0 0 0 0 0 0 +2.826 3.95 -1.725 0 0 0 0 0 0 0 +2.811 3.954 -1.723 0 0 0 0 0 0 0 +2.801 3.967 -1.725 0 0 0 0 0 0 0 +2.789 3.976 -1.725 0 0 0 0 0 0 0 +2.786 3.985 -1.728 0 0 0 0 0 0 0 +2.772 3.992 -1.727 0 0 0 0 0 0 0 +2.762 4.004 -1.728 0 0 0 0 0 0 0 +2.744 4.005 -1.725 0 0 0 0 0 0 0 +2.735 4.018 -1.727 0 0 0 0 0 0 0 +2.723 4.028 -1.728 0 0 0 0 0 0 0 +2.719 4.049 -1.733 0 0 0 0 0 0 0 +2.707 4.046 -1.73 0 0 0 0 0 0 0 +2.692 4.051 -1.728 0 0 0 0 0 0 0 +2.679 4.058 -1.728 0 0 0 0 0 0 0 +2.668 4.07 -1.729 0 0 0 0 0 0 0 +2.657 4.081 -1.73 0 0 0 0 0 0 0 +2.64 4.083 -1.728 0 0 0 0 0 0 0 +2.632 4.099 -1.731 0 0 0 0 0 0 0 +2.616 4.101 -1.728 0 0 0 0 0 0 0 +2.605 4.099 -1.725 0 0 0 0 0 0 0 +2.599 4.118 -1.73 0 0 0 0 0 0 0 +2.586 4.126 -1.73 0 0 0 0 0 0 0 +2.578 4.142 -1.734 0 0 0 0 0 0 0 +2.559 4.141 -1.73 0 0 0 0 0 0 0 +2.545 4.147 -1.729 0 0 0 0 0 0 0 +2.531 4.154 -1.728 0 0 0 0 0 0 0 +2.523 4.155 -1.727 0 0 0 0 0 0 0 +2.515 4.17 -1.73 0 0 0 0 0 0 0 +2.499 4.174 -1.728 0 0 0 0 0 0 0 +2.488 4.186 -1.73 0 0 0 0 0 0 0 +2.47 4.186 -1.727 0 0 0 0 0 0 0 +2.461 4.2 -1.73 0 0 0 0 0 0 0 +2.459 4.212 -1.733 0 0 0 0 0 0 0 +2.435 4.202 -1.725 0 0 0 0 0 0 0 +2.431 4.224 -1.732 0 0 0 0 0 0 0 +2.412 4.222 -1.728 0 0 0 0 0 0 0 +2.404 4.239 -1.732 0 0 0 0 0 0 0 +2.386 4.239 -1.728 0 0 0 0 0 0 0 +2.377 4.253 -1.731 0 0 0 0 0 0 0 +2.363 4.243 -1.725 0 0 0 0 0 0 0 +2.355 4.261 -1.73 0 0 0 0 0 0 0 +2.34 4.266 -1.729 0 0 0 0 0 0 0 +2.322 4.264 -1.725 0 0 0 0 0 0 0 +2.313 4.281 -1.729 0 0 0 0 0 0 0 +2.296 4.28 -1.725 0 0 0 0 0 0 0 +2.284 4.291 -1.727 0 0 0 0 0 0 0 +2.271 4.299 -1.728 0 0 0 0 0 0 0 +2.261 4.296 -1.725 0 0 0 0 0 0 0 +2.247 4.302 -1.724 0 0 0 0 0 0 0 +2.235 4.312 -1.725 0 0 0 0 0 0 0 +2.219 4.314 -1.723 0 0 0 0 0 0 0 +2.203 4.318 -1.722 0 0 0 0 0 0 0 +2.195 4.335 -1.726 0 0 0 0 0 0 0 +2.178 4.335 -1.723 0 0 0 0 0 0 0 +2.174 4.343 -1.725 0 0 0 0 0 0 0 +2.157 4.345 -1.723 0 0 0 0 0 0 0 +2.141 4.347 -1.721 0 0 0 0 0 0 0 +2.13 4.359 -1.723 0 0 0 0 0 0 0 +2.115 4.362 -1.722 0 0 0 0 0 0 0 +2.104 4.373 -1.724 0 0 0 0 0 0 0 +2.092 4.385 -1.726 0 0 0 0 0 0 0 +2.074 4.383 -1.723 0 0 0 0 0 0 0 +2.068 4.388 -1.723 0 0 0 0 0 0 0 +2.057 4.4 -1.725 0 0 0 0 0 0 0 +2.039 4.398 -1.722 0 0 0 0 0 0 0 +2.025 4.404 -1.722 0 0 0 0 0 0 0 +2.013 4.414 -1.723 0 0 0 0 0 0 0 +2.001 4.425 -1.725 0 0 0 0 0 0 0 +1.992 4.423 -1.723 0 0 0 0 0 0 0 +1.974 4.419 -1.719 0 0 0 0 0 0 0 +1.962 4.431 -1.721 0 0 0 0 0 0 0 +1.951 4.444 -1.724 0 0 0 0 0 0 0 +1.936 4.448 -1.723 0 0 0 0 0 0 0 +1.924 4.457 -1.725 0 0 0 0 0 0 0 +1.911 4.467 -1.726 0 0 0 0 0 0 0 +1.894 4.464 -1.723 0 0 0 0 0 0 0 +1.89 4.474 -1.725 0 0 0 0 0 0 0 +1.873 4.475 -1.723 0 0 0 0 0 0 0 +1.861 4.484 -1.725 0 0 0 0 0 0 0 +1.842 4.48 -1.721 0 0 0 0 0 0 0 +1.832 4.494 -1.724 0 0 0 0 0 0 0 +1.818 4.502 -1.725 0 0 0 0 0 0 0 +1.802 4.502 -1.723 0 0 0 0 0 0 0 +1.795 4.505 -1.723 0 0 0 0 0 0 0 +1.781 4.51 -1.723 0 0 0 0 0 0 0 +1.769 4.523 -1.725 0 0 0 0 0 0 0 +1.752 4.52 -1.722 0 0 0 0 0 0 0 +1.74 4.532 -1.725 0 0 0 0 0 0 0 +1.723 4.531 -1.722 0 0 0 0 0 0 0 +1.711 4.541 -1.724 0 0 0 0 0 0 0 +1.704 4.544 -1.724 0 0 0 0 0 0 0 +1.687 4.542 -1.721 0 0 0 0 0 0 0 +1.673 4.549 -1.722 0 0 0 0 0 0 0 +1.66 4.556 -1.723 0 0 0 0 0 0 0 +1.646 4.562 -1.723 0 0 0 0 0 0 0 +1.631 4.567 -1.723 0 0 0 0 0 0 0 +1.619 4.577 -1.725 0 0 0 0 0 0 0 +1.611 4.578 -1.724 0 0 0 0 0 0 0 +1.587 4.555 -1.713 0 0 0 0 0 0 0 +1.573 4.561 -1.713 0 0 0 0 0 0 0 +1.556 4.559 -1.711 0 0 0 0 0 0 0 +1.54 4.561 -1.709 0 0 0 0 0 0 0 +1.524 4.558 -1.706 0 0 0 0 0 0 0 +1.509 4.563 -1.706 0 0 0 0 0 0 0 +1.503 4.567 -1.707 0 0 0 0 0 0 0 +1.486 4.565 -1.704 0 0 0 0 0 0 0 +1.471 4.568 -1.703 0 0 0 0 0 0 0 +1.457 4.572 -1.703 0 0 0 0 0 0 0 +1.441 4.572 -1.701 0 0 0 0 0 0 0 +1.425 4.571 -1.699 0 0 0 0 0 0 0 +1.41 4.573 -1.699 0 0 0 0 0 0 0 +1.395 4.578 -1.699 0 0 0 0 0 0 0 +1.389 4.584 -1.7 0 0 0 0 0 0 0 +1.373 4.583 -1.698 0 0 0 0 0 0 0 +1.358 4.583 -1.696 0 0 0 0 0 0 0 +1.346 4.596 -1.7 0 0 0 0 0 0 0 +1.329 4.593 -1.697 0 0 0 0 0 0 0 +1.317 4.603 -1.699 0 0 0 0 0 0 0 +1.299 4.595 -1.694 0 0 0 0 0 0 0 +1.291 4.595 -1.694 0 0 0 0 0 0 0 +1.279 4.61 -1.698 0 0 0 0 0 0 0 +1.264 4.61 -1.696 0 0 0 0 0 0 0 +1.248 4.61 -1.695 0 0 0 0 0 0 0 +1.233 4.611 -1.694 0 0 0 0 0 0 0 +1.217 4.611 -1.692 0 0 0 0 0 0 0 +1.205 4.624 -1.696 0 0 0 0 0 0 0 +1.197 4.62 -1.694 0 0 0 0 0 0 0 +1.182 4.624 -1.694 0 0 0 0 0 0 0 +1.167 4.626 -1.693 0 0 0 0 0 0 0 +1.156 4.642 -1.698 0 0 0 0 0 0 0 +1.139 4.637 -1.694 0 0 0 0 0 0 0 +1.121 4.628 -1.689 0 0 0 0 0 0 0 +1.112 4.653 -1.698 0 0 0 0 0 0 0 +1.101 4.64 -1.692 0 0 0 0 0 0 0 +1.086 4.64 -1.691 0 0 0 0 0 0 0 +1.075 4.658 -1.696 0 0 0 0 0 0 0 +1.056 4.643 -1.689 0 0 0 0 0 0 0 +1.039 4.639 -1.686 0 0 0 0 0 0 0 +1.031 4.67 -1.697 0 0 0 0 0 0 0 +1.01 4.644 -1.686 0 0 0 0 0 0 0 +1.004 4.652 -1.689 0 0 0 0 0 0 0 +0.991 4.661 -1.691 0 0 0 0 0 0 0 +0.975 4.657 -1.688 0 0 0 0 0 0 0 +0.961 4.665 -1.69 0 0 0 0 0 0 0 +0.946 4.667 -1.689 0 0 0 0 0 0 0 +0.931 4.668 -1.689 0 0 0 0 0 0 0 +0.916 4.667 -1.687 0 0 0 0 0 0 0 +0.905 4.69 -1.695 0 0 0 0 0 0 0 +0.893 4.667 -1.686 0 0 0 0 0 0 0 +0.879 4.674 -1.687 0 0 0 0 0 0 0 +0.865 4.678 -1.688 0 0 0 0 0 0 0 +0.846 4.661 -1.68 0 0 0 0 0 0 0 +0.834 4.678 -1.686 0 0 0 0 0 0 0 +0.602 3.476 -1.221 0 0 0 0 0 0 0 +0.583 3.432 -1.203 0 0 0 0 0 0 0 +0.578 3.434 -1.204 0 0 0 0 0 0 0 +0.569 3.449 -1.209 0 0 0 0 0 0 0 +0.555 3.434 -1.202 0 0 0 0 0 0 0 +0.543 3.429 -1.2 0 0 0 0 0 0 0 +0.533 3.434 -1.201 0 0 0 0 0 0 0 +0.519 3.417 -1.194 0 0 0 0 0 0 0 +0.509 3.422 -1.195 0 0 0 0 0 0 0 +0.506 3.434 -1.2 0 0 0 0 0 0 0 +0.493 3.425 -1.195 0 0 0 0 0 0 0 +0.484 3.437 -1.2 0 0 0 0 0 0 0 +0.475 3.45 -1.204 0 0 0 0 0 0 0 +0.461 3.433 -1.197 0 0 0 0 0 0 0 +0.445 3.397 -1.182 0 0 0 0 0 0 0 +0.405 3.18 -1.099 0 0 0 0 0 0 0 +0.398 3.164 -1.092 0 0 0 0 0 0 0 +0.389 3.175 -1.096 0 0 0 0 0 0 0 +0.381 3.187 -1.1 0 0 0 0 0 0 0 +0.369 3.179 -1.097 0 0 0 0 0 0 0 +0.359 3.18 -1.097 0 0 0 0 0 0 0 +0.351 3.194 -1.102 0 0 0 0 0 0 0 +0.34 3.191 -1.1 0 0 0 0 0 0 0 +0.502 4.726 -1.686 0 0 0 0 0 0 0 +0.493 4.717 -1.682 0 0 0 0 0 0 0 +0.479 4.722 -1.684 0 0 0 0 0 0 0 +0.464 4.72 -1.682 0 0 0 0 0 0 0 +0.449 4.721 -1.682 0 0 0 0 0 0 0 +0.434 4.727 -1.684 0 0 0 0 0 0 0 +0.419 4.726 -1.683 0 0 0 0 0 0 0 +0.405 4.731 -1.684 0 0 0 0 0 0 0 +0.397 4.724 -1.681 0 0 0 0 0 0 0 +0.382 4.729 -1.683 0 0 0 0 0 0 0 +0.368 4.736 -1.685 0 0 0 0 0 0 0 +0.353 4.739 -1.686 0 0 0 0 0 0 0 +0.338 4.733 -1.683 0 0 0 0 0 0 0 +0.322 4.728 -1.681 0 0 0 0 0 0 0 +0.309 4.748 -1.688 0 0 0 0 0 0 0 +0.301 4.744 -1.686 0 0 0 0 0 0 0 +0.286 4.743 -1.686 0 0 0 0 0 0 0 +0.271 4.748 -1.687 0 0 0 0 0 0 0 +0.257 4.762 -1.692 0 0 0 0 0 0 0 +0.242 4.752 -1.688 0 0 0 0 0 0 0 +0.226 4.745 -1.685 0 0 0 0 0 0 0 +0.212 4.76 -1.691 0 0 0 0 0 0 0 +0.204 4.759 -1.69 0 0 0 0 0 0 0 +0.189 4.752 -1.687 0 0 0 0 0 0 0 +0.175 4.76 -1.69 0 0 0 0 0 0 0 +0.159 4.749 -1.686 0 0 0 0 0 0 0 +0.144 4.754 -1.687 0 0 0 0 0 0 0 +0.13 4.758 -1.689 0 0 0 0 0 0 0 +0.115 4.76 -1.689 0 0 0 0 0 0 0 +0.1 4.759 -1.689 0 0 0 0 0 0 0 +0.092 4.753 -1.686 0 0 0 0 0 0 0 +0.077 4.761 -1.689 0 0 0 0 0 0 0 +0.062 4.755 -1.687 0 0 0 0 0 0 0 +0.047 4.759 -1.689 0 0 0 0 0 0 0 +0.032 4.761 -1.689 0 0 0 0 0 0 0 +0.018 4.771 -1.693 0 0 0 0 0 0 0 +0.002 4.752 -1.686 0 0 0 0 0 0 0 +-0.005 4.76 -1.689 0 0 0 0 0 0 0 +-0.02 4.75 -1.685 0 0 0 0 0 0 0 +-0.035 4.763 -1.69 0 0 0 0 0 0 0 +-0.05 4.75 -1.685 0 0 0 0 0 0 0 +-0.065 4.768 -1.692 0 0 0 0 0 0 0 +-0.08 4.753 -1.686 0 0 0 0 0 0 0 +-0.095 4.755 -1.687 0 0 0 0 0 0 0 +-0.102 4.757 -1.688 0 0 0 0 0 0 0 +-0.117 4.762 -1.69 0 0 0 0 0 0 0 +-0.132 4.765 -1.691 0 0 0 0 0 0 0 +-0.147 4.77 -1.694 0 0 0 0 0 0 0 +-0.163 4.779 -1.697 0 0 0 0 0 0 0 +-0.178 4.781 -1.698 0 0 0 0 0 0 0 +-0.194 4.808 -1.708 0 0 0 0 0 0 0 +-0.202 4.828 -1.716 0 0 0 0 0 0 0 +-0.217 4.818 -1.713 0 0 0 0 0 0 0 +-0.232 4.821 -1.714 0 0 0 0 0 0 0 +-0.247 4.826 -1.716 0 0 0 0 0 0 0 +-0.263 4.823 -1.716 0 0 0 0 0 0 0 +-0.278 4.832 -1.719 0 0 0 0 0 0 0 +-0.293 4.827 -1.718 0 0 0 0 0 0 0 +-0.302 4.842 -1.723 0 0 0 0 0 0 0 +-0.317 4.841 -1.723 0 0 0 0 0 0 0 +-0.332 4.842 -1.724 0 0 0 0 0 0 0 +-0.348 4.846 -1.726 0 0 0 0 0 0 0 +-0.362 4.834 -1.722 0 0 0 0 0 0 0 +-0.378 4.844 -1.726 0 0 0 0 0 0 0 +-0.394 4.856 -1.731 0 0 0 0 0 0 0 +-0.409 4.851 -1.73 0 0 0 0 0 0 0 +-0.417 4.856 -1.732 0 0 0 0 0 0 0 +-0.432 4.851 -1.73 0 0 0 0 0 0 0 +-0.448 4.855 -1.733 0 0 0 0 0 0 0 +-0.463 4.852 -1.732 0 0 0 0 0 0 0 +-0.479 4.856 -1.734 0 0 0 0 0 0 0 +-0.494 4.856 -1.735 0 0 0 0 0 0 0 +-0.509 4.853 -1.734 0 0 0 0 0 0 0 +-0.518 4.859 -1.737 0 0 0 0 0 0 0 +-0.533 4.854 -1.735 0 0 0 0 0 0 0 +-0.549 4.86 -1.738 0 0 0 0 0 0 0 +-0.565 4.863 -1.74 0 0 0 0 0 0 0 +-0.58 4.862 -1.74 0 0 0 0 0 0 0 +-0.595 4.862 -1.741 0 0 0 0 0 0 0 +-0.612 4.873 -1.746 0 0 0 0 0 0 0 +-0.618 4.855 -1.74 0 0 0 0 0 0 0 +-0.634 4.862 -1.743 0 0 0 0 0 0 0 +-0.651 4.87 -1.747 0 0 0 0 0 0 0 +-0.665 4.864 -1.745 0 0 0 0 0 0 0 +-0.684 4.884 -1.754 0 0 0 0 0 0 0 +-0.7 4.891 -1.757 0 0 0 0 0 0 0 +-0.716 4.889 -1.757 0 0 0 0 0 0 0 +-0.73 4.881 -1.755 0 0 0 0 0 0 0 +-0.735 4.86 -1.747 0 0 0 0 0 0 0 +-0.752 4.868 -1.752 0 0 0 0 0 0 0 +-0.801 4.982 -1.797 0 0 0 0 0 0 0 +-0.813 4.959 -1.789 0 0 0 0 0 0 0 +-0.822 4.912 -1.772 0 0 0 0 0 0 0 +-0.836 4.902 -1.769 0 0 0 0 0 0 0 +-0.84 4.88 -1.762 0 0 0 0 0 0 0 +-0.854 4.87 -1.759 0 0 0 0 0 0 0 +-0.87 4.868 -1.759 0 0 0 0 0 0 0 +-0.887 4.876 -1.763 0 0 0 0 0 0 0 +-0.902 4.871 -1.762 0 0 0 0 0 0 0 +-0.914 4.854 -1.757 0 0 0 0 0 0 0 +-0.927 4.836 -1.751 0 0 0 0 0 0 0 +-0.936 4.844 -1.755 0 0 0 0 0 0 0 +-0.952 4.845 -1.756 0 0 0 0 0 0 0 +-0.966 4.836 -1.754 0 0 0 0 0 0 0 +-0.981 4.833 -1.754 0 0 0 0 0 0 0 +-0.998 4.839 -1.757 0 0 0 0 0 0 0 +-1.011 4.825 -1.753 0 0 0 0 0 0 0 +-1.026 4.818 -1.752 0 0 0 0 0 0 0 +-1.035 4.824 -1.755 0 0 0 0 0 0 0 +-1.049 4.815 -1.752 0 0 0 0 0 0 0 +-1.065 4.817 -1.755 0 0 0 0 0 0 0 +-1.079 4.808 -1.752 0 0 0 0 0 0 0 +-1.095 4.81 -1.755 0 0 0 0 0 0 0 +-1.108 4.796 -1.75 0 0 0 0 0 0 0 +-1.126 4.807 -1.756 0 0 0 0 0 0 0 +-1.132 4.798 -1.753 0 0 0 0 0 0 0 +-1.15 4.805 -1.757 0 0 0 0 0 0 0 +-1.166 4.805 -1.759 0 0 0 0 0 0 0 +-1.178 4.789 -1.754 0 0 0 0 0 0 0 +-1.193 4.783 -1.753 0 0 0 0 0 0 0 +-1.21 4.79 -1.757 0 0 0 0 0 0 0 +-1.223 4.776 -1.753 0 0 0 0 0 0 0 +-1.231 4.779 -1.755 0 0 0 0 0 0 0 +-1.247 4.777 -1.756 0 0 0 0 0 0 0 +-1.263 4.777 -1.757 0 0 0 0 0 0 0 +-1.275 4.762 -1.753 0 0 0 0 0 0 0 +-1.293 4.771 -1.758 0 0 0 0 0 0 0 +-1.304 4.75 -1.752 0 0 0 0 0 0 0 +-1.32 4.752 -1.754 0 0 0 0 0 0 0 +-1.338 4.758 -1.758 0 0 0 0 0 0 0 +-1.344 4.751 -1.756 0 0 0 0 0 0 0 +-1.361 4.752 -1.758 0 0 0 0 0 0 0 +-1.378 4.757 -1.762 0 0 0 0 0 0 0 +-1.389 4.738 -1.756 0 0 0 0 0 0 0 +-1.403 4.73 -1.755 0 0 0 0 0 0 0 +-1.421 4.736 -1.759 0 0 0 0 0 0 0 +-1.433 4.723 -1.755 0 0 0 0 0 0 0 +-1.44 4.72 -1.755 0 0 0 0 0 0 0 +-1.462 4.737 -1.764 0 0 0 0 0 0 0 +-1.47 4.711 -1.755 0 0 0 0 0 0 0 +-1.488 4.716 -1.759 0 0 0 0 0 0 0 +-1.507 4.725 -1.765 0 0 0 0 0 0 0 +-1.517 4.704 -1.758 0 0 0 0 0 0 0 +-1.531 4.698 -1.757 0 0 0 0 0 0 0 +-1.54 4.701 -1.76 0 0 0 0 0 0 0 +-1.55 4.682 -1.754 0 0 0 0 0 0 0 +-1.565 4.677 -1.754 0 0 0 0 0 0 0 +-1.587 4.695 -1.763 0 0 0 0 0 0 0 +-1.6 4.685 -1.761 0 0 0 0 0 0 0 +-1.612 4.671 -1.757 0 0 0 0 0 0 0 +-1.633 4.685 -1.765 0 0 0 0 0 0 0 +-1.633 4.661 -1.757 0 0 0 0 0 0 0 +-1.648 4.658 -1.757 0 0 0 0 0 0 0 +-1.667 4.665 -1.762 0 0 0 0 0 0 0 +-1.679 4.653 -1.76 0 0 0 0 0 0 0 +-1.695 4.649 -1.76 0 0 0 0 0 0 0 +-1.713 4.653 -1.764 0 0 0 0 0 0 0 +-1.719 4.624 -1.755 0 0 0 0 0 0 0 +-1.737 4.628 -1.758 0 0 0 0 0 0 0 +-1.748 4.637 -1.763 0 0 0 0 0 0 0 +-1.761 4.627 -1.761 0 0 0 0 0 0 0 +-1.777 4.624 -1.762 0 0 0 0 0 0 0 +-1.794 4.626 -1.765 0 0 0 0 0 0 0 +-1.802 4.604 -1.759 0 0 0 0 0 0 0 +-1.817 4.599 -1.759 0 0 0 0 0 0 0 +-1.833 4.598 -1.761 0 0 0 0 0 0 0 +-1.841 4.595 -1.761 0 0 0 0 0 0 0 +-1.854 4.588 -1.76 0 0 0 0 0 0 0 +-1.871 4.587 -1.762 0 0 0 0 0 0 0 +-1.882 4.574 -1.76 0 0 0 0 0 0 0 +-1.897 4.57 -1.76 0 0 0 0 0 0 0 +-1.915 4.571 -1.763 0 0 0 0 0 0 0 +-1.925 4.555 -1.759 0 0 0 0 0 0 0 +-1.935 4.559 -1.762 0 0 0 0 0 0 0 +-1.953 4.561 -1.765 0 0 0 0 0 0 0 +-1.963 4.546 -1.762 0 0 0 0 0 0 0 +-1.975 4.533 -1.759 0 0 0 0 0 0 0 +-1.996 4.544 -1.766 0 0 0 0 0 0 0 +-2.005 4.526 -1.761 0 0 0 0 0 0 0 +-2.021 4.523 -1.762 0 0 0 0 0 0 0 +-2.031 4.527 -1.765 0 0 0 0 0 0 0 +-2.039 4.505 -1.759 0 0 0 0 0 0 0 +-2.053 4.498 -1.759 0 0 0 0 0 0 0 +-2.071 4.502 -1.763 0 0 0 0 0 0 0 +-2.079 4.482 -1.757 0 0 0 0 0 0 0 +-2.097 4.484 -1.761 0 0 0 0 0 0 0 +-2.118 4.491 -1.767 0 0 0 0 0 0 0 +-2.126 4.471 -1.761 0 0 0 0 0 0 0 +-2.125 4.45 -1.754 0 0 0 0 0 0 0 +-2.147 4.462 -1.762 0 0 0 0 0 0 0 +-2.153 4.439 -1.755 0 0 0 0 0 0 0 +-2.168 4.434 -1.755 0 0 0 0 0 0 0 +-2.188 4.439 -1.76 0 0 0 0 0 0 0 +-2.211 4.45 -1.768 0 0 0 0 0 0 0 +-2.237 4.468 -1.779 0 0 0 0 0 0 0 +-2.252 4.482 -1.786 0 0 0 0 0 0 0 +-2.251 4.444 -1.773 0 0 0 0 0 0 0 +-2.259 4.426 -1.768 0 0 0 0 0 0 0 +-2.273 4.418 -1.768 0 0 0 0 0 0 0 +-2.284 4.405 -1.765 0 0 0 0 0 0 0 +-2.296 4.394 -1.764 0 0 0 0 0 0 0 +-2.32 4.407 -1.772 0 0 0 0 0 0 0 +-2.325 4.4 -1.771 0 0 0 0 0 0 0 +-2.335 4.384 -1.767 0 0 0 0 0 0 0 +-2.347 4.374 -1.766 0 0 0 0 0 0 0 +-2.355 4.356 -1.762 0 0 0 0 0 0 0 +-2.367 4.346 -1.76 0 0 0 0 0 0 0 +-2.382 4.34 -1.761 0 0 0 0 0 0 0 +-2.393 4.327 -1.759 0 0 0 0 0 0 0 +-2.398 4.32 -1.757 0 0 0 0 0 0 0 +-2.412 4.314 -1.758 0 0 0 0 0 0 0 +-2.426 4.307 -1.758 0 0 0 0 0 0 0 +-2.446 4.312 -1.764 0 0 0 0 0 0 0 +-2.456 4.298 -1.761 0 0 0 0 0 0 0 +-2.469 4.289 -1.76 0 0 0 0 0 0 0 +-2.483 4.282 -1.761 0 0 0 0 0 0 0 +-2.5 4.281 -1.764 0 0 0 0 0 0 0 +-2.5 4.264 -1.758 0 0 0 0 0 0 0 +-2.518 4.264 -1.762 0 0 0 0 0 0 0 +-2.53 4.255 -1.761 0 0 0 0 0 0 0 +-2.543 4.245 -1.76 0 0 0 0 0 0 0 +-2.562 4.247 -1.765 0 0 0 0 0 0 0 +-2.573 4.236 -1.763 0 0 0 0 0 0 0 +-2.583 4.223 -1.761 0 0 0 0 0 0 0 +-2.594 4.225 -1.764 0 0 0 0 0 0 0 +-2.603 4.211 -1.761 0 0 0 0 0 0 0 +-2.621 4.21 -1.765 0 0 0 0 0 0 0 +-2.634 4.2 -1.764 0 0 0 0 0 0 0 +-2.649 4.195 -1.765 0 0 0 0 0 0 0 +-2.657 4.179 -1.762 0 0 0 0 0 0 0 +-2.674 4.177 -1.765 0 0 0 0 0 0 0 +-2.682 4.174 -1.765 0 0 0 0 0 0 0 +-2.696 4.167 -1.766 0 0 0 0 0 0 0 +-2.714 4.167 -1.769 0 0 0 0 0 0 0 +-2.717 4.143 -1.762 0 0 0 0 0 0 0 +-2.735 4.142 -1.766 0 0 0 0 0 0 0 +-2.748 4.133 -1.766 0 0 0 0 0 0 0 +-2.763 4.128 -1.767 0 0 0 0 0 0 0 +-2.767 4.12 -1.766 0 0 0 0 0 0 0 +-2.787 4.121 -1.77 0 0 0 0 0 0 0 +-2.793 4.103 -1.766 0 0 0 0 0 0 0 +-2.804 4.091 -1.765 0 0 0 0 0 0 0 +-2.818 4.084 -1.765 0 0 0 0 0 0 0 +-2.826 4.069 -1.762 0 0 0 0 0 0 0 +-2.838 4.058 -1.762 0 0 0 0 0 0 0 +-2.855 4.055 -1.765 0 0 0 0 0 0 0 +-2.862 4.051 -1.765 0 0 0 0 0 0 0 +-2.876 4.045 -1.766 0 0 0 0 0 0 0 +-2.89 4.037 -1.767 0 0 0 0 0 0 0 +-2.914 4.044 -1.774 0 0 0 0 0 0 0 +-2.914 4.018 -1.766 0 0 0 0 0 0 0 +-2.931 4.015 -1.769 0 0 0 0 0 0 0 +-2.943 4.004 -1.768 0 0 0 0 0 0 0 +-2.954 4.005 -1.771 0 0 0 0 0 0 0 +-2.959 3.987 -1.767 0 0 0 0 0 0 0 +-2.978 3.985 -1.77 0 0 0 0 0 0 0 +-2.99 3.976 -1.77 0 0 0 0 0 0 0 +-3.192 3.791 -1.763 0 0 0 0 0 0 0 +-3.208 3.785 -1.765 0 0 0 0 0 0 0 +-3.227 3.784 -1.769 0 0 0 0 0 0 0 +-3.232 3.766 -1.766 0 0 0 0 0 0 0 +-3.239 3.751 -1.763 0 0 0 0 0 0 0 +-3.255 3.745 -1.765 0 0 0 0 0 0 0 +-3.26 3.727 -1.762 0 0 0 0 0 0 0 +-3.265 3.721 -1.761 0 0 0 0 0 0 0 +-3.279 3.713 -1.762 0 0 0 0 0 0 0 +-3.301 3.714 -1.768 0 0 0 0 0 0 0 +-3.307 3.698 -1.765 0 0 0 0 0 0 0 +-3.345 3.717 -1.78 0 0 0 0 0 0 0 +-3.333 3.68 -1.767 0 0 0 0 0 0 0 +-3.351 3.677 -1.77 0 0 0 0 0 0 0 +-3.365 3.669 -1.772 0 0 0 0 0 0 0 +-3.364 3.657 -1.768 0 0 0 0 0 0 0 +-3.391 3.663 -1.777 0 0 0 0 0 0 0 +-3.392 3.641 -1.771 0 0 0 0 0 0 0 +-3.415 3.643 -1.777 0 0 0 0 0 0 0 +-3.414 3.618 -1.77 0 0 0 0 0 0 0 +-3.424 3.606 -1.769 0 0 0 0 0 0 0 +-3.444 3.605 -1.774 0 0 0 0 0 0 0 +-3.447 3.597 -1.773 0 0 0 0 0 0 0 +-3.451 3.578 -1.769 0 0 0 0 0 0 0 +-3.465 3.57 -1.77 0 0 0 0 0 0 0 +-3.48 3.563 -1.772 0 0 0 0 0 0 0 +-3.483 3.544 -1.768 0 0 0 0 0 0 0 +-3.501 3.539 -1.772 0 0 0 0 0 0 0 +-3.515 3.531 -1.773 0 0 0 0 0 0 0 +-3.519 3.524 -1.772 0 0 0 0 0 0 0 +-3.529 3.512 -1.772 0 0 0 0 0 0 0 +-3.553 3.514 -1.779 0 0 0 0 0 0 0 +-3.556 3.495 -1.774 0 0 0 0 0 0 0 +-3.556 3.473 -1.769 0 0 0 0 0 0 0 +-3.578 3.472 -1.774 0 0 0 0 0 0 0 +-3.575 3.448 -1.767 0 0 0 0 0 0 0 +-3.589 3.45 -1.772 0 0 0 0 0 0 0 +-3.609 3.448 -1.777 0 0 0 0 0 0 0 +-3.604 3.421 -1.768 0 0 0 0 0 0 0 +-3.613 3.409 -1.767 0 0 0 0 0 0 0 +-3.63 3.404 -1.771 0 0 0 0 0 0 0 +-3.636 3.387 -1.768 0 0 0 0 0 0 0 +-3.652 3.381 -1.771 0 0 0 0 0 0 0 +-3.658 3.376 -1.772 0 0 0 0 0 0 0 +-3.661 3.357 -1.767 0 0 0 0 0 0 0 +-3.681 3.355 -1.772 0 0 0 0 0 0 0 +-3.69 3.342 -1.772 0 0 0 0 0 0 0 +-3.695 3.325 -1.769 0 0 0 0 0 0 0 +-3.718 3.325 -1.775 0 0 0 0 0 0 0 +-3.721 3.307 -1.772 0 0 0 0 0 0 0 +-3.728 3.291 -1.769 0 0 0 0 0 0 0 +-3.743 3.294 -1.774 0 0 0 0 0 0 0 +-3.754 3.284 -1.775 0 0 0 0 0 0 0 +-3.758 3.266 -1.772 0 0 0 0 0 0 0 +-3.773 3.259 -1.774 0 0 0 0 0 0 0 +-3.784 3.247 -1.774 0 0 0 0 0 0 0 +-3.791 3.233 -1.773 0 0 0 0 0 0 0 +-3.811 3.229 -1.778 0 0 0 0 0 0 0 +-3.813 3.221 -1.777 0 0 0 0 0 0 0 +-3.819 3.205 -1.774 0 0 0 0 0 0 0 +-3.836 3.199 -1.778 0 0 0 0 0 0 0 +-3.839 3.181 -1.774 0 0 0 0 0 0 0 +-3.856 3.175 -1.778 0 0 0 0 0 0 0 +-3.866 3.163 -1.778 0 0 0 0 0 0 0 +-3.891 3.163 -1.785 0 0 0 0 0 0 0 +-3.897 3.158 -1.786 0 0 0 0 0 0 0 +-3.921 3.157 -1.793 0 0 0 0 0 0 0 +-3.934 3.147 -1.794 0 0 0 0 0 0 0 +-3.94 3.131 -1.792 0 0 0 0 0 0 0 +-3.939 3.111 -1.787 0 0 0 0 0 0 0 +-3.97 3.115 -1.797 0 0 0 0 0 0 0 +-3.966 3.092 -1.791 0 0 0 0 0 0 0 +-3.974 3.088 -1.792 0 0 0 0 0 0 0 +-3.988 3.079 -1.794 0 0 0 0 0 0 0 +-3.984 3.056 -1.788 0 0 0 0 0 0 0 +-3.979 3.032 -1.781 0 0 0 0 0 0 0 +-4.027 3.049 -1.799 0 0 0 0 0 0 0 +-4.038 3.037 -1.8 0 0 0 0 0 0 0 +-4.054 3.029 -1.803 0 0 0 0 0 0 0 +-4.075 3.035 -1.811 0 0 0 0 0 0 0 +-4.074 3.015 -1.806 0 0 0 0 0 0 0 +-4.082 3.001 -1.805 0 0 0 0 0 0 0 +-4.09 2.987 -1.804 0 0 0 0 0 0 0 +-4.096 2.972 -1.803 0 0 0 0 0 0 0 +-4.09 2.948 -1.796 0 0 0 0 0 0 0 +-4.091 2.928 -1.791 0 0 0 0 0 0 0 +-4.097 2.913 -1.79 0 0 0 0 0 0 0 +-4.109 2.912 -1.794 0 0 0 0 0 0 0 +-4.115 2.897 -1.792 0 0 0 0 0 0 0 +-4.133 2.891 -1.796 0 0 0 0 0 0 0 +-4.125 2.866 -1.789 0 0 0 0 0 0 0 +-4.138 2.855 -1.79 0 0 0 0 0 0 0 +-4.146 2.842 -1.79 0 0 0 0 0 0 0 +-4.152 2.827 -1.789 0 0 0 0 0 0 0 +-4.155 2.819 -1.788 0 0 0 0 0 0 0 +-4.17 2.81 -1.791 0 0 0 0 0 0 0 +-4.173 2.793 -1.788 0 0 0 0 0 0 0 +-4.183 2.781 -1.789 0 0 0 0 0 0 0 +-4.187 2.765 -1.787 0 0 0 0 0 0 0 +-4.19 2.747 -1.784 0 0 0 0 0 0 0 +-4.198 2.734 -1.784 0 0 0 0 0 0 0 +-4.212 2.734 -1.788 0 0 0 0 0 0 0 +-4.21 2.713 -1.783 0 0 0 0 0 0 0 +-4.223 2.703 -1.785 0 0 0 0 0 0 0 +-4.236 2.693 -1.787 0 0 0 0 0 0 0 +-4.238 2.676 -1.784 0 0 0 0 0 0 0 +-4.242 2.659 -1.782 0 0 0 0 0 0 0 +-4.25 2.646 -1.782 0 0 0 0 0 0 0 +-4.257 2.641 -1.784 0 0 0 0 0 0 0 +-4.269 2.63 -1.785 0 0 0 0 0 0 0 +-4.272 2.614 -1.783 0 0 0 0 0 0 0 +-4.28 2.6 -1.783 0 0 0 0 0 0 0 +-4.29 2.588 -1.784 0 0 0 0 0 0 0 +-4.295 2.572 -1.782 0 0 0 0 0 0 0 +-4.302 2.558 -1.782 0 0 0 0 0 0 0 +-4.313 2.546 -1.783 0 0 0 0 0 0 0 +-4.322 2.542 -1.785 0 0 0 0 0 0 0 +-4.331 2.53 -1.786 0 0 0 0 0 0 0 +-4.344 2.519 -1.788 0 0 0 0 0 0 0 +-4.349 2.503 -1.787 0 0 0 0 0 0 0 +-4.358 2.49 -1.787 0 0 0 0 0 0 0 +-4.361 2.474 -1.785 0 0 0 0 0 0 0 +-4.364 2.457 -1.783 0 0 0 0 0 0 0 +-4.368 2.451 -1.783 0 0 0 0 0 0 0 +-4.371 2.434 -1.781 0 0 0 0 0 0 0 +-4.386 2.425 -1.784 0 0 0 0 0 0 0 +-4.382 2.405 -1.779 0 0 0 0 0 0 0 +-4.393 2.393 -1.781 0 0 0 0 0 0 0 +-4.404 2.381 -1.782 0 0 0 0 0 0 0 +-4.41 2.366 -1.782 0 0 0 0 0 0 0 +-4.414 2.359 -1.782 0 0 0 0 0 0 0 +-4.421 2.345 -1.782 0 0 0 0 0 0 0 +-4.423 2.329 -1.779 0 0 0 0 0 0 0 +-4.437 2.318 -1.782 0 0 0 0 0 0 0 +-4.443 2.304 -1.782 0 0 0 0 0 0 0 +-4.448 2.289 -1.781 0 0 0 0 0 0 0 +-4.464 2.279 -1.784 0 0 0 0 0 0 0 +-4.461 2.269 -1.782 0 0 0 0 0 0 0 +-4.47 2.255 -1.782 0 0 0 0 0 0 0 +-4.478 2.242 -1.783 0 0 0 0 0 0 0 +-4.485 2.228 -1.783 0 0 0 0 0 0 0 +-4.504 2.22 -1.788 0 0 0 0 0 0 0 +-4.509 2.205 -1.787 0 0 0 0 0 0 0 +-4.511 2.188 -1.785 0 0 0 0 0 0 0 +-4.525 2.186 -1.789 0 0 0 0 0 0 0 +-4.525 2.169 -1.787 0 0 0 0 0 0 0 +-4.542 2.159 -1.791 0 0 0 0 0 0 0 +-4.545 2.143 -1.789 0 0 0 0 0 0 0 +-4.55 2.128 -1.789 0 0 0 0 0 0 0 +-4.562 2.116 -1.791 0 0 0 0 0 0 0 +-4.553 2.095 -1.784 0 0 0 0 0 0 0 +-4.558 2.088 -1.785 0 0 0 0 0 0 0 +-4.573 2.078 -1.789 0 0 0 0 0 0 0 +-4.571 2.06 -1.785 0 0 0 0 0 0 0 +-4.584 2.048 -1.788 0 0 0 0 0 0 0 +-4.586 2.032 -1.786 0 0 0 0 0 0 0 +-4.599 2.02 -1.789 0 0 0 0 0 0 0 +-4.624 2.014 -1.796 0 0 0 0 0 0 0 +-4.636 2.002 -1.799 0 0 0 0 0 0 0 +-4.712 -1.956 -1.818 0 0 0 0 0 0 0 +-4.711 -1.964 -1.819 0 0 0 0 0 0 0 +-4.686 -1.971 -1.811 0 0 0 0 0 0 0 +-4.693 -1.991 -1.817 0 0 0 0 0 0 0 +-4.685 -2.005 -1.816 0 0 0 0 0 0 0 +-4.675 -2.018 -1.815 0 0 0 0 0 0 0 +-4.672 -2.034 -1.816 0 0 0 0 0 0 0 +-4.661 -2.047 -1.814 0 0 0 0 0 0 0 +-4.653 -2.052 -1.812 0 0 0 0 0 0 0 +-4.655 -2.07 -1.816 0 0 0 0 0 0 0 +-4.646 -2.084 -1.815 0 0 0 0 0 0 0 +-4.64 -2.099 -1.815 0 0 0 0 0 0 0 +-4.637 -2.115 -1.816 0 0 0 0 0 0 0 +-4.628 -2.129 -1.816 0 0 0 0 0 0 0 +-4.623 -2.144 -1.816 0 0 0 0 0 0 0 +-4.628 -2.155 -1.82 0 0 0 0 0 0 0 +-4.613 -2.166 -1.816 0 0 0 0 0 0 0 +-4.615 -2.184 -1.82 0 0 0 0 0 0 0 +-4.599 -2.195 -1.816 0 0 0 0 0 0 0 +-4.603 -2.214 -1.821 0 0 0 0 0 0 0 +-4.587 -2.224 -1.817 0 0 0 0 0 0 0 +-4.573 -2.235 -1.814 0 0 0 0 0 0 0 +-4.565 -2.24 -1.812 0 0 0 0 0 0 0 +-4.559 -2.255 -1.813 0 0 0 0 0 0 0 +-4.549 -2.268 -1.811 0 0 0 0 0 0 0 +-4.539 -2.281 -1.81 0 0 0 0 0 0 0 +-4.531 -2.295 -1.81 0 0 0 0 0 0 0 +-4.519 -2.307 -1.808 0 0 0 0 0 0 0 +-4.523 -2.327 -1.813 0 0 0 0 0 0 0 +-4.516 -2.332 -1.811 0 0 0 0 0 0 0 +-4.506 -2.345 -1.81 0 0 0 0 0 0 0 +-4.493 -2.356 -1.808 0 0 0 0 0 0 0 +-4.493 -2.374 -1.811 0 0 0 0 0 0 0 +-4.479 -2.384 -1.808 0 0 0 0 0 0 0 +-4.464 -2.395 -1.805 0 0 0 0 0 0 0 +-4.465 -2.413 -1.809 0 0 0 0 0 0 0 +-4.456 -2.418 -1.806 0 0 0 0 0 0 0 +-4.465 -2.441 -1.813 0 0 0 0 0 0 0 +-4.446 -2.448 -1.809 0 0 0 0 0 0 0 +-4.424 -2.454 -1.802 0 0 0 0 0 0 0 +-4.427 -2.474 -1.807 0 0 0 0 0 0 0 +-4.418 -2.487 -1.806 0 0 0 0 0 0 0 +-4.41 -2.501 -1.806 0 0 0 0 0 0 0 +-4.401 -2.505 -1.804 0 0 0 0 0 0 0 +-4.397 -2.521 -1.806 0 0 0 0 0 0 0 +-4.398 -2.54 -1.81 0 0 0 0 0 0 0 +-4.382 -2.55 -1.806 0 0 0 0 0 0 0 +-4.373 -2.562 -1.806 0 0 0 0 0 0 0 +-4.369 -2.579 -1.808 0 0 0 0 0 0 0 +-4.36 -2.592 -1.807 0 0 0 0 0 0 0 +-4.352 -2.597 -1.806 0 0 0 0 0 0 0 +-4.338 -2.606 -1.803 0 0 0 0 0 0 0 +-4.341 -2.627 -1.808 0 0 0 0 0 0 0 +-4.323 -2.635 -1.804 0 0 0 0 0 0 0 +-4.319 -2.651 -1.806 0 0 0 0 0 0 0 +-4.311 -2.665 -1.806 0 0 0 0 0 0 0 +-4.303 -2.678 -1.806 0 0 0 0 0 0 0 +-4.301 -2.696 -1.809 0 0 0 0 0 0 0 +-4.292 -2.699 -1.806 0 0 0 0 0 0 0 +-4.288 -2.716 -1.809 0 0 0 0 0 0 0 +-4.281 -2.73 -1.809 0 0 0 0 0 0 0 +-4.261 -2.737 -1.804 0 0 0 0 0 0 0 +-4.253 -2.75 -1.804 0 0 0 0 0 0 0 +-4.242 -2.762 -1.804 0 0 0 0 0 0 0 +-4.238 -2.779 -1.806 0 0 0 0 0 0 0 +-4.24 -2.79 -1.809 0 0 0 0 0 0 0 +-4.236 -2.806 -1.811 0 0 0 0 0 0 0 +-4.215 -2.811 -1.805 0 0 0 0 0 0 0 +-4.214 -2.829 -1.809 0 0 0 0 0 0 0 +-4.202 -2.841 -1.807 0 0 0 0 0 0 0 +-4.19 -2.852 -1.806 0 0 0 0 0 0 0 +-4.19 -2.871 -1.81 0 0 0 0 0 0 0 +-4.178 -2.872 -1.806 0 0 0 0 0 0 0 +-4.173 -2.889 -1.809 0 0 0 0 0 0 0 +-4.163 -2.901 -1.808 0 0 0 0 0 0 0 +-4.154 -2.914 -1.808 0 0 0 0 0 0 0 +-4.138 -2.923 -1.805 0 0 0 0 0 0 0 +-4.132 -2.938 -1.806 0 0 0 0 0 0 0 +-4.121 -2.95 -1.806 0 0 0 0 0 0 0 +-4.115 -2.955 -1.805 0 0 0 0 0 0 0 +-4.11 -2.971 -1.807 0 0 0 0 0 0 0 +-4.103 -2.985 -1.808 0 0 0 0 0 0 0 +-4.092 -2.997 -1.807 0 0 0 0 0 0 0 +-4.084 -3.011 -1.808 0 0 0 0 0 0 0 +-4.077 -3.026 -1.809 0 0 0 0 0 0 0 +-4.066 -3.038 -1.809 0 0 0 0 0 0 0 +-4.057 -3.041 -1.806 0 0 0 0 0 0 0 +-4.049 -3.054 -1.807 0 0 0 0 0 0 0 +-4.035 -3.064 -1.805 0 0 0 0 0 0 0 +-4.03 -3.08 -1.807 0 0 0 0 0 0 0 +-4.01 -3.085 -1.802 0 0 0 0 0 0 0 +-4 -3.097 -1.802 0 0 0 0 0 0 0 +-3.993 -3.112 -1.804 0 0 0 0 0 0 0 +-3.996 -3.124 -1.807 0 0 0 0 0 0 0 +-3.984 -3.135 -1.806 0 0 0 0 0 0 0 +-3.976 -3.149 -1.807 0 0 0 0 0 0 0 +-3.966 -3.161 -1.807 0 0 0 0 0 0 0 +-3.957 -3.175 -1.808 0 0 0 0 0 0 0 +-3.934 -3.177 -1.801 0 0 0 0 0 0 0 +-3.923 -3.188 -1.801 0 0 0 0 0 0 0 +-3.925 -3.2 -1.804 0 0 0 0 0 0 0 +-3.918 -3.215 -1.806 0 0 0 0 0 0 0 +-3.896 -3.218 -1.8 0 0 0 0 0 0 0 +-3.88 -3.225 -1.797 0 0 0 0 0 0 0 +-3.877 -3.243 -1.801 0 0 0 0 0 0 0 +-3.874 -3.261 -1.804 0 0 0 0 0 0 0 +-3.863 -3.272 -1.804 0 0 0 0 0 0 0 +-3.858 -3.289 -1.806 0 0 0 0 0 0 0 +-3.851 -3.294 -1.806 0 0 0 0 0 0 0 +-3.85 -3.314 -1.81 0 0 0 0 0 0 0 +-3.836 -3.323 -1.809 0 0 0 0 0 0 0 +-3.816 -3.327 -1.804 0 0 0 0 0 0 0 +-3.811 -3.344 -1.806 0 0 0 0 0 0 0 +-3.803 -3.358 -1.808 0 0 0 0 0 0 0 +-3.789 -3.366 -1.806 0 0 0 0 0 0 0 +-3.786 -3.375 -1.807 0 0 0 0 0 0 0 +-3.778 -3.389 -1.809 0 0 0 0 0 0 0 +-3.759 -3.393 -1.804 0 0 0 0 0 0 0 +-3.75 -3.406 -1.805 0 0 0 0 0 0 0 +-3.738 -3.417 -1.804 0 0 0 0 0 0 0 +-3.723 -3.425 -1.802 0 0 0 0 0 0 0 +-3.723 -3.447 -1.808 0 0 0 0 0 0 0 +-3.718 -3.453 -1.808 0 0 0 0 0 0 0 +-3.699 -3.457 -1.804 0 0 0 0 0 0 0 +-3.681 -3.462 -1.8 0 0 0 0 0 0 0 +-3.677 -3.48 -1.804 0 0 0 0 0 0 0 +-3.68 -3.504 -1.811 0 0 0 0 0 0 0 +-3.666 -3.513 -1.809 0 0 0 0 0 0 0 +-3.659 -3.528 -1.811 0 0 0 0 0 0 0 +-3.644 -3.525 -1.806 0 0 0 0 0 0 0 +-3.626 -3.53 -1.803 0 0 0 0 0 0 0 +-3.627 -3.553 -1.809 0 0 0 0 0 0 0 +-3.616 -3.565 -1.809 0 0 0 0 0 0 0 +-3.61 -3.581 -1.812 0 0 0 0 0 0 0 +-3.597 -3.591 -1.811 0 0 0 0 0 0 0 +-3.599 -3.616 -1.818 0 0 0 0 0 0 0 +-3.594 -3.621 -1.818 0 0 0 0 0 0 0 +-3.585 -3.635 -1.82 0 0 0 0 0 0 0 +-3.563 -3.636 -1.814 0 0 0 0 0 0 0 +-3.555 -3.651 -1.816 0 0 0 0 0 0 0 +-3.53 -3.647 -1.809 0 0 0 0 0 0 0 +-3.518 -3.658 -1.809 0 0 0 0 0 0 0 +-3.503 -3.665 -1.806 0 0 0 0 0 0 0 +-3.497 -3.671 -1.806 0 0 0 0 0 0 0 +-3.484 -3.681 -1.806 0 0 0 0 0 0 0 +-3.5 -3.72 -1.821 0 0 0 0 0 0 0 +-3.493 -3.736 -1.823 0 0 0 0 0 0 0 +-3.507 -3.775 -1.838 0 0 0 0 0 0 0 +-3.487 -3.777 -1.833 0 0 0 0 0 0 0 +-3.451 -3.762 -1.82 0 0 0 0 0 0 0 +-3.435 -3.757 -1.814 0 0 0 0 0 0 0 +-3.432 -3.777 -1.819 0 0 0 0 0 0 0 +-3.418 -3.785 -1.818 0 0 0 0 0 0 0 +-3.397 -3.786 -1.813 0 0 0 0 0 0 0 +-3.389 -3.801 -1.815 0 0 0 0 0 0 0 +-3.368 -3.802 -1.81 0 0 0 0 0 0 0 +-3.345 -3.8 -1.804 0 0 0 0 0 0 0 +-3.334 -3.812 -1.804 0 0 0 0 0 0 0 +-3.319 -3.806 -1.799 0 0 0 0 0 0 0 +-3.305 -3.815 -1.798 0 0 0 0 0 0 0 +-3.302 -3.835 -1.803 0 0 0 0 0 0 0 +-3.286 -3.841 -1.801 0 0 0 0 0 0 0 +-3.268 -3.844 -1.797 0 0 0 0 0 0 0 +-3.264 -3.864 -1.802 0 0 0 0 0 0 0 +-3.07 -3.976 -1.789 0 0 0 0 0 0 0 +-3.06 -3.977 -1.787 0 0 0 0 0 0 0 +-3.055 -3.997 -1.791 0 0 0 0 0 0 0 +-3.042 -4.005 -1.791 0 0 0 0 0 0 0 +-3.024 -4.008 -1.788 0 0 0 0 0 0 0 +-3.014 -4.021 -1.789 0 0 0 0 0 0 0 +-3.013 -4.045 -1.796 0 0 0 0 0 0 0 +-2.994 -4.047 -1.793 0 0 0 0 0 0 0 +-2.993 -4.058 -1.796 0 0 0 0 0 0 0 +-2.976 -4.063 -1.794 0 0 0 0 0 0 0 +-2.957 -4.063 -1.789 0 0 0 0 0 0 0 +-2.948 -4.077 -1.791 0 0 0 0 0 0 0 +-2.934 -4.084 -1.791 0 0 0 0 0 0 0 +-2.919 -4.091 -1.789 0 0 0 0 0 0 0 +-2.901 -4.094 -1.787 0 0 0 0 0 0 0 +-2.898 -4.103 -1.789 0 0 0 0 0 0 0 +-2.885 -4.112 -1.789 0 0 0 0 0 0 0 +-2.878 -4.129 -1.792 0 0 0 0 0 0 0 +-2.855 -4.124 -1.786 0 0 0 0 0 0 0 +-2.855 -4.151 -1.794 0 0 0 0 0 0 0 +-2.839 -4.156 -1.792 0 0 0 0 0 0 0 +-2.829 -4.169 -1.794 0 0 0 0 0 0 0 +-2.819 -4.169 -1.792 0 0 0 0 0 0 0 +-2.808 -4.181 -1.794 0 0 0 0 0 0 0 +-2.792 -4.185 -1.791 0 0 0 0 0 0 0 +-2.78 -4.195 -1.792 0 0 0 0 0 0 0 +-2.772 -4.212 -1.796 0 0 0 0 0 0 0 +-2.751 -4.21 -1.791 0 0 0 0 0 0 0 +-2.74 -4.221 -1.792 0 0 0 0 0 0 0 +-2.731 -4.222 -1.791 0 0 0 0 0 0 0 +-2.716 -4.228 -1.789 0 0 0 0 0 0 0 +-2.704 -4.238 -1.79 0 0 0 0 0 0 0 +-2.69 -4.246 -1.79 0 0 0 0 0 0 0 +-2.679 -4.258 -1.791 0 0 0 0 0 0 0 +-2.669 -4.271 -1.794 0 0 0 0 0 0 0 +-2.65 -4.272 -1.79 0 0 0 0 0 0 0 +-2.644 -4.276 -1.79 0 0 0 0 0 0 0 +-2.627 -4.279 -1.788 0 0 0 0 0 0 0 +-2.62 -4.297 -1.792 0 0 0 0 0 0 0 +-2.602 -4.299 -1.789 0 0 0 0 0 0 0 +-2.587 -4.304 -1.788 0 0 0 0 0 0 0 +-2.576 -4.317 -1.79 0 0 0 0 0 0 0 +-2.562 -4.323 -1.789 0 0 0 0 0 0 0 +-2.551 -4.321 -1.787 0 0 0 0 0 0 0 +-2.538 -4.33 -1.787 0 0 0 0 0 0 0 +-2.529 -4.346 -1.791 0 0 0 0 0 0 0 +-2.517 -4.356 -1.791 0 0 0 0 0 0 0 +-2.5 -4.359 -1.789 0 0 0 0 0 0 0 +-2.485 -4.364 -1.788 0 0 0 0 0 0 0 +-2.472 -4.373 -1.789 0 0 0 0 0 0 0 +-2.459 -4.367 -1.784 0 0 0 0 0 0 0 +-2.45 -4.383 -1.788 0 0 0 0 0 0 0 +-2.436 -4.389 -1.787 0 0 0 0 0 0 0 +-2.423 -4.398 -1.788 0 0 0 0 0 0 0 +-2.411 -4.409 -1.789 0 0 0 0 0 0 0 +-2.394 -4.412 -1.787 0 0 0 0 0 0 0 +-2.378 -4.416 -1.786 0 0 0 0 0 0 0 +-2.374 -4.425 -1.788 0 0 0 0 0 0 0 +-2.36 -4.432 -1.788 0 0 0 0 0 0 0 +-2.351 -4.448 -1.791 0 0 0 0 0 0 0 +-2.335 -4.452 -1.79 0 0 0 0 0 0 0 +-2.321 -4.459 -1.79 0 0 0 0 0 0 0 +-2.304 -4.461 -1.788 0 0 0 0 0 0 0 +-2.29 -4.469 -1.788 0 0 0 0 0 0 0 +-2.276 -4.476 -1.788 0 0 0 0 0 0 0 +-2.267 -4.474 -1.786 0 0 0 0 0 0 0 +-2.254 -4.485 -1.787 0 0 0 0 0 0 0 +-2.239 -4.49 -1.787 0 0 0 0 0 0 0 +-2.228 -4.502 -1.789 0 0 0 0 0 0 0 +-2.209 -4.501 -1.785 0 0 0 0 0 0 0 +-2.197 -4.511 -1.787 0 0 0 0 0 0 0 +-2.19 -4.533 -1.793 0 0 0 0 0 0 0 +-2.203 -4.577 -1.81 0 0 0 0 0 0 0 +-2.201 -4.611 -1.821 0 0 0 0 0 0 0 +-2.139 -4.518 -1.779 0 0 0 0 0 0 0 +-2.155 -4.587 -1.806 0 0 0 0 0 0 0 +-2.121 -4.553 -1.789 0 0 0 0 0 0 0 +-2.107 -4.56 -1.789 0 0 0 0 0 0 0 +-2.098 -4.579 -1.794 0 0 0 0 0 0 0 +-2.088 -4.575 -1.791 0 0 0 0 0 0 0 +-2.069 -4.573 -1.787 0 0 0 0 0 0 0 +-2.057 -4.585 -1.789 0 0 0 0 0 0 0 +-2.031 -4.566 -1.779 0 0 0 0 0 0 0 +-2.017 -4.572 -1.779 0 0 0 0 0 0 0 +-2.007 -4.588 -1.783 0 0 0 0 0 0 0 +-1.983 -4.573 -1.774 0 0 0 0 0 0 0 +-1.973 -4.569 -1.771 0 0 0 0 0 0 0 +-1.967 -4.594 -1.779 0 0 0 0 0 0 0 +-1.948 -4.591 -1.775 0 0 0 0 0 0 0 +-1.929 -4.585 -1.77 0 0 0 0 0 0 0 +-1.917 -4.597 -1.772 0 0 0 0 0 0 0 +-1.899 -4.596 -1.769 0 0 0 0 0 0 0 +-1.883 -4.598 -1.768 0 0 0 0 0 0 0 +-1.88 -4.61 -1.772 0 0 0 0 0 0 0 +-1.858 -4.598 -1.765 0 0 0 0 0 0 0 +-1.845 -4.608 -1.766 0 0 0 0 0 0 0 +-1.829 -4.61 -1.765 0 0 0 0 0 0 0 +-1.811 -4.607 -1.761 0 0 0 0 0 0 0 +-1.802 -4.625 -1.766 0 0 0 0 0 0 0 +-1.788 -4.632 -1.767 0 0 0 0 0 0 0 +-1.77 -4.609 -1.756 0 0 0 0 0 0 0 +-1.76 -4.625 -1.76 0 0 0 0 0 0 0 +-1.747 -4.634 -1.762 0 0 0 0 0 0 0 +-1.723 -4.615 -1.752 0 0 0 0 0 0 0 +-1.713 -4.633 -1.757 0 0 0 0 0 0 0 +-1.7 -4.641 -1.758 0 0 0 0 0 0 0 +-1.68 -4.634 -1.753 0 0 0 0 0 0 0 +-1.674 -4.641 -1.755 0 0 0 0 0 0 0 +-1.659 -4.642 -1.753 0 0 0 0 0 0 0 +-1.642 -4.64 -1.75 0 0 0 0 0 0 0 +-1.628 -4.649 -1.752 0 0 0 0 0 0 0 +-1.613 -4.652 -1.751 0 0 0 0 0 0 0 +-1.598 -4.656 -1.75 0 0 0 0 0 0 0 +-1.584 -4.662 -1.751 0 0 0 0 0 0 0 +-1.578 -4.67 -1.753 0 0 0 0 0 0 0 +-1.562 -4.672 -1.752 0 0 0 0 0 0 0 +-1.548 -4.677 -1.752 0 0 0 0 0 0 0 +-1.531 -4.676 -1.75 0 0 0 0 0 0 0 +-1.515 -4.677 -1.748 0 0 0 0 0 0 0 +-1.499 -4.677 -1.746 0 0 0 0 0 0 0 +-1.485 -4.683 -1.747 0 0 0 0 0 0 0 +-1.474 -4.675 -1.743 0 0 0 0 0 0 0 +-1.461 -4.687 -1.745 0 0 0 0 0 0 0 +-1.447 -4.691 -1.745 0 0 0 0 0 0 0 +-1.432 -4.696 -1.745 0 0 0 0 0 0 0 +-1.416 -4.697 -1.744 0 0 0 0 0 0 0 +-1.4 -4.696 -1.742 0 0 0 0 0 0 0 +-1.388 -4.711 -1.746 0 0 0 0 0 0 0 +-1.38 -4.709 -1.745 0 0 0 0 0 0 0 +-1.363 -4.708 -1.743 0 0 0 0 0 0 0 +-1.348 -4.711 -1.742 0 0 0 0 0 0 0 +-1.335 -4.722 -1.745 0 0 0 0 0 0 0 +-1.318 -4.719 -1.742 0 0 0 0 0 0 0 +-1.303 -4.72 -1.74 0 0 0 0 0 0 0 +-1.288 -4.725 -1.741 0 0 0 0 0 0 0 +-1.281 -4.729 -1.742 0 0 0 0 0 0 0 +-1.265 -4.73 -1.74 0 0 0 0 0 0 0 +-1.25 -4.73 -1.739 0 0 0 0 0 0 0 +-1.234 -4.732 -1.738 0 0 0 0 0 0 0 +-1.219 -4.736 -1.738 0 0 0 0 0 0 0 +-1.202 -4.729 -1.734 0 0 0 0 0 0 0 +-1.186 -4.731 -1.733 0 0 0 0 0 0 0 +-1.175 -4.718 -1.728 0 0 0 0 0 0 0 +-1.165 -4.74 -1.735 0 0 0 0 0 0 0 +-1.153 -4.755 -1.739 0 0 0 0 0 0 0 +-1.137 -4.756 -1.738 0 0 0 0 0 0 0 +-1.122 -4.758 -1.738 0 0 0 0 0 0 0 +-1.105 -4.754 -1.735 0 0 0 0 0 0 0 +-1.093 -4.771 -1.74 0 0 0 0 0 0 0 +-1.079 -4.776 -1.74 0 0 0 0 0 0 0 +-1.07 -4.77 -1.738 0 0 0 0 0 0 0 +-1.053 -4.764 -1.734 0 0 0 0 0 0 0 +-1.039 -4.775 -1.737 0 0 0 0 0 0 0 +-1.023 -4.775 -1.735 0 0 0 0 0 0 0 +-1.008 -4.778 -1.735 0 0 0 0 0 0 0 +-0.995 -4.79 -1.739 0 0 0 0 0 0 0 +-0.979 -4.788 -1.737 0 0 0 0 0 0 0 +-0.971 -4.787 -1.736 0 0 0 0 0 0 0 +-0.956 -4.79 -1.736 0 0 0 0 0 0 0 +-0.94 -4.79 -1.735 0 0 0 0 0 0 0 +-0.925 -4.789 -1.733 0 0 0 0 0 0 0 +-0.91 -4.794 -1.734 0 0 0 0 0 0 0 +-0.895 -4.798 -1.735 0 0 0 0 0 0 0 +-0.888 -4.803 -1.736 0 0 0 0 0 0 0 +-0.871 -4.791 -1.73 0 0 0 0 0 0 0 +-0.857 -4.802 -1.733 0 0 0 0 0 0 0 +-0.84 -4.797 -1.73 0 0 0 0 0 0 0 +-0.825 -4.798 -1.73 0 0 0 0 0 0 0 +-0.81 -4.798 -1.729 0 0 0 0 0 0 0 +-0.796 -4.808 -1.732 0 0 0 0 0 0 0 +-0.78 -4.807 -1.73 0 0 0 0 0 0 0 +-0.774 -4.816 -1.733 0 0 0 0 0 0 0 +-0.758 -4.814 -1.732 0 0 0 0 0 0 0 +-0.743 -4.819 -1.733 0 0 0 0 0 0 0 +-0.727 -4.817 -1.731 0 0 0 0 0 0 0 +-0.716 -4.842 -1.74 0 0 0 0 0 0 0 +-0.699 -4.836 -1.737 0 0 0 0 0 0 0 +-0.685 -4.842 -1.738 0 0 0 0 0 0 0 +-0.678 -4.847 -1.74 0 0 0 0 0 0 0 +-0.662 -4.844 -1.738 0 0 0 0 0 0 0 +-0.647 -4.849 -1.739 0 0 0 0 0 0 0 +-0.632 -4.855 -1.74 0 0 0 0 0 0 0 +-0.616 -4.85 -1.738 0 0 0 0 0 0 0 +-0.601 -4.852 -1.738 0 0 0 0 0 0 0 +-0.587 -4.868 -1.743 0 0 0 0 0 0 0 +-0.578 -4.854 -1.738 0 0 0 0 0 0 0 +-0.563 -4.856 -1.738 0 0 0 0 0 0 0 +-0.548 -4.862 -1.739 0 0 0 0 0 0 0 +-0.533 -4.871 -1.742 0 0 0 0 0 0 0 +-0.518 -4.874 -1.743 0 0 0 0 0 0 0 +-0.504 -4.881 -1.745 0 0 0 0 0 0 0 +-0.487 -4.876 -1.742 0 0 0 0 0 0 0 +-0.479 -4.873 -1.74 0 0 0 0 0 0 0 +-0.464 -4.876 -1.741 0 0 0 0 0 0 0 +-0.449 -4.881 -1.743 0 0 0 0 0 0 0 +-0.434 -4.882 -1.743 0 0 0 0 0 0 0 +-0.419 -4.886 -1.743 0 0 0 0 0 0 0 +-0.403 -4.881 -1.741 0 0 0 0 0 0 0 +-0.389 -4.894 -1.745 0 0 0 0 0 0 0 +-0.38 -4.885 -1.742 0 0 0 0 0 0 0 +-0.365 -4.89 -1.743 0 0 0 0 0 0 0 +-0.35 -4.9 -1.747 0 0 0 0 0 0 0 +-0.334 -4.894 -1.744 0 0 0 0 0 0 0 +-0.319 -4.899 -1.745 0 0 0 0 0 0 0 +-0.304 -4.902 -1.746 0 0 0 0 0 0 0 +-0.288 -4.893 -1.743 0 0 0 0 0 0 0 +-0.28 -4.892 -1.742 0 0 0 0 0 0 0 +-0.266 -4.908 -1.747 0 0 0 0 0 0 0 +-0.249 -4.892 -1.741 0 0 0 0 0 0 0 +-0.235 -4.909 -1.747 0 0 0 0 0 0 0 +-0.22 -4.914 -1.749 0 0 0 0 0 0 0 +-0.203 -4.897 -1.743 0 0 0 0 0 0 0 +-0.188 -4.894 -1.741 0 0 0 0 0 0 0 +-0.18 -4.896 -1.742 0 0 0 0 0 0 0 +-0.164 -4.88 -1.735 0 0 0 0 0 0 0 +-0.15 -4.899 -1.743 0 0 0 0 0 0 0 +-0.134 -4.896 -1.741 0 0 0 0 0 0 0 +-0.119 -4.9 -1.743 0 0 0 0 0 0 0 +-0.103 -4.893 -1.74 0 0 0 0 0 0 0 +-0.088 -4.884 -1.736 0 0 0 0 0 0 0 +-0.08 -4.88 -1.735 0 0 0 0 0 0 0 +-0.065 -4.903 -1.743 0 0 0 0 0 0 0 +-0.049 -4.896 -1.74 0 0 0 0 0 0 0 +-0.034 -4.896 -1.74 0 0 0 0 0 0 0 +-0.019 -4.907 -1.745 0 0 0 0 0 0 0 +-0.003 -4.902 -1.743 0 0 0 0 0 0 0 +0.012 -4.889 -1.738 0 0 0 0 0 0 0 +0.02 -4.896 -1.74 0 0 0 0 0 0 0 +0.035 -4.9 -1.742 0 0 0 0 0 0 0 +0.051 -4.905 -1.744 0 0 0 0 0 0 0 +0.066 -4.897 -1.741 0 0 0 0 0 0 0 +0.081 -4.905 -1.744 0 0 0 0 0 0 0 +0.097 -4.904 -1.744 0 0 0 0 0 0 0 +0.112 -4.9 -1.743 0 0 0 0 0 0 0 +0.12 -4.904 -1.744 0 0 0 0 0 0 0 +0.135 -4.905 -1.745 0 0 0 0 0 0 0 +0.151 -4.903 -1.744 0 0 0 0 0 0 0 +0.166 -4.906 -1.745 0 0 0 0 0 0 0 +0.182 -4.91 -1.747 0 0 0 0 0 0 0 +0.197 -4.901 -1.744 0 0 0 0 0 0 0 +0.212 -4.903 -1.745 0 0 0 0 0 0 0 +0.221 -4.927 -1.754 0 0 0 0 0 0 0 +0.236 -4.904 -1.745 0 0 0 0 0 0 0 +0.252 -4.933 -1.757 0 0 0 0 0 0 0 +0.267 -4.906 -1.747 0 0 0 0 0 0 0 +0.283 -4.918 -1.752 0 0 0 0 0 0 0 +0.297 -4.902 -1.746 0 0 0 0 0 0 0 +0.313 -4.914 -1.751 0 0 0 0 0 0 0 +0.321 -4.917 -1.752 0 0 0 0 0 0 0 +0.337 -4.92 -1.754 0 0 0 0 0 0 0 +0.352 -4.908 -1.75 0 0 0 0 0 0 0 +0.367 -4.903 -1.748 0 0 0 0 0 0 0 +0.383 -4.907 -1.75 0 0 0 0 0 0 0 +0.401 -4.938 -1.762 0 0 0 0 0 0 0 +0.415 -4.925 -1.758 0 0 0 0 0 0 0 +0.424 -4.943 -1.765 0 0 0 0 0 0 0 +0.439 -4.927 -1.76 0 0 0 0 0 0 0 +0.569 -4.902 -1.755 0 0 0 0 0 0 0 +0.585 -4.908 -1.758 0 0 0 0 0 0 0 +0.598 -4.888 -1.751 0 0 0 0 0 0 0 +0.614 -4.891 -1.753 0 0 0 0 0 0 0 +0.629 -4.887 -1.752 0 0 0 0 0 0 0 +0.638 -4.896 -1.756 0 0 0 0 0 0 0 +0.656 -4.914 -1.764 0 0 0 0 0 0 0 +0.67 -4.901 -1.76 0 0 0 0 0 0 0 +2.487 -4.369 -1.79 0 0 0 0 0 0 0 +2.492 -4.345 -1.783 0 0 0 0 0 0 0 +2.513 -4.35 -1.789 0 0 0 0 0 0 0 +2.524 -4.338 -1.787 0 0 0 0 0 0 0 +2.539 -4.332 -1.788 0 0 0 0 0 0 0 +2.546 -4.313 -1.783 0 0 0 0 0 0 0 +2.564 -4.313 -1.787 0 0 0 0 0 0 0 +2.568 -4.304 -1.784 0 0 0 0 0 0 0 +2.583 -4.298 -1.785 0 0 0 0 0 0 0 +2.593 -4.285 -1.783 0 0 0 0 0 0 0 +2.61 -4.281 -1.785 0 0 0 0 0 0 0 +2.625 -4.276 -1.787 0 0 0 0 0 0 0 +2.635 -4.263 -1.784 0 0 0 0 0 0 0 +2.651 -4.258 -1.786 0 0 0 0 0 0 0 +2.662 -4.262 -1.789 0 0 0 0 0 0 0 +2.672 -4.247 -1.787 0 0 0 0 0 0 0 +2.691 -4.248 -1.791 0 0 0 0 0 0 0 +2.699 -4.232 -1.787 0 0 0 0 0 0 0 +2.714 -4.225 -1.788 0 0 0 0 0 0 0 +2.725 -4.213 -1.787 0 0 0 0 0 0 0 +2.743 -4.212 -1.79 0 0 0 0 0 0 0 +2.74 -4.192 -1.783 0 0 0 0 0 0 0 +2.758 -4.192 -1.787 0 0 0 0 0 0 0 +2.775 -4.189 -1.789 0 0 0 0 0 0 0 +2.781 -4.17 -1.784 0 0 0 0 0 0 0 +2.796 -4.164 -1.786 0 0 0 0 0 0 0 +2.821 -4.172 -1.794 0 0 0 0 0 0 0 +2.823 -4.148 -1.787 0 0 0 0 0 0 0 +2.832 -4.146 -1.788 0 0 0 0 0 0 0 +2.847 -4.141 -1.789 0 0 0 0 0 0 0 +2.853 -4.121 -1.784 0 0 0 0 0 0 0 +2.868 -4.115 -1.786 0 0 0 0 0 0 0 +2.885 -4.112 -1.789 0 0 0 0 0 0 0 +2.892 -4.094 -1.784 0 0 0 0 0 0 0 +2.903 -4.083 -1.784 0 0 0 0 0 0 0 +2.918 -4.091 -1.789 0 0 0 0 0 0 0 +2.927 -4.076 -1.787 0 0 0 0 0 0 0 +2.937 -4.063 -1.785 0 0 0 0 0 0 0 +2.953 -4.059 -1.787 0 0 0 0 0 0 0 +2.957 -4.037 -1.782 0 0 0 0 0 0 0 +2.981 -4.043 -1.789 0 0 0 0 0 0 0 +2.99 -4.029 -1.787 0 0 0 0 0 0 0 +2.991 -4.017 -1.783 0 0 0 0 0 0 0 +3.008 -4.013 -1.786 0 0 0 0 0 0 0 +3.02 -4.002 -1.785 0 0 0 0 0 0 0 +3.028 -3.987 -1.782 0 0 0 0 0 0 0 +3.054 -3.995 -1.791 0 0 0 0 0 0 0 +3.066 -3.986 -1.791 0 0 0 0 0 0 0 +3.076 -3.972 -1.789 0 0 0 0 0 0 0 +3.079 -3.964 -1.787 0 0 0 0 0 0 0 +3.097 -3.96 -1.79 0 0 0 0 0 0 0 +3.104 -3.944 -1.787 0 0 0 0 0 0 0 +3.124 -3.943 -1.791 0 0 0 0 0 0 0 +3.134 -3.931 -1.79 0 0 0 0 0 0 0 +3.14 -3.914 -1.787 0 0 0 0 0 0 0 +3.154 -3.905 -1.787 0 0 0 0 0 0 0 +3.159 -3.899 -1.787 0 0 0 0 0 0 0 +3.166 -3.883 -1.784 0 0 0 0 0 0 0 +3.182 -3.877 -1.786 0 0 0 0 0 0 0 +3.193 -3.866 -1.785 0 0 0 0 0 0 0 +3.21 -3.862 -1.788 0 0 0 0 0 0 0 +3.222 -3.851 -1.788 0 0 0 0 0 0 0 +3.226 -3.831 -1.783 0 0 0 0 0 0 0 +3.241 -3.825 -1.785 0 0 0 0 0 0 0 +3.246 -3.819 -1.784 0 0 0 0 0 0 0 +3.26 -3.812 -1.786 0 0 0 0 0 0 0 +3.269 -3.797 -1.784 0 0 0 0 0 0 0 +3.288 -3.795 -1.788 0 0 0 0 0 0 0 +3.289 -3.772 -1.782 0 0 0 0 0 0 0 +3.317 -3.78 -1.791 0 0 0 0 0 0 0 +3.317 -3.757 -1.784 0 0 0 0 0 0 0 +3.32 -3.748 -1.782 0 0 0 0 0 0 0 +3.333 -3.739 -1.783 0 0 0 0 0 0 0 +3.343 -3.727 -1.782 0 0 0 0 0 0 0 +3.358 -3.72 -1.784 0 0 0 0 0 0 0 +3.365 -3.704 -1.782 0 0 0 0 0 0 0 +3.377 -3.694 -1.782 0 0 0 0 0 0 0 +3.39 -3.697 -1.786 0 0 0 0 0 0 0 +3.397 -3.68 -1.783 0 0 0 0 0 0 0 +3.401 -3.661 -1.779 0 0 0 0 0 0 0 +3.417 -3.656 -1.782 0 0 0 0 0 0 0 +3.429 -3.645 -1.782 0 0 0 0 0 0 0 +3.44 -3.635 -1.782 0 0 0 0 0 0 0 +3.453 -3.625 -1.782 0 0 0 0 0 0 0 +3.461 -3.623 -1.784 0 0 0 0 0 0 0 +3.471 -3.61 -1.783 0 0 0 0 0 0 0 +3.48 -3.597 -1.782 0 0 0 0 0 0 0 +3.492 -3.587 -1.782 0 0 0 0 0 0 0 +3.504 -3.576 -1.782 0 0 0 0 0 0 0 +3.516 -3.566 -1.783 0 0 0 0 0 0 0 +3.53 -3.558 -1.784 0 0 0 0 0 0 0 +3.53 -3.547 -1.782 0 0 0 0 0 0 0 +3.541 -3.536 -1.782 0 0 0 0 0 0 0 +3.56 -3.533 -1.786 0 0 0 0 0 0 0 +3.566 -3.516 -1.783 0 0 0 0 0 0 0 +3.573 -3.501 -1.781 0 0 0 0 0 0 0 +3.59 -3.495 -1.784 0 0 0 0 0 0 0 +3.595 -3.479 -1.781 0 0 0 0 0 0 0 +3.617 -3.478 -1.787 0 0 0 0 0 0 0 +3.612 -3.462 -1.781 0 0 0 0 0 0 0 +3.633 -3.461 -1.787 0 0 0 0 0 0 0 +3.624 -3.43 -1.776 0 0 0 0 0 0 0 +3.647 -3.43 -1.782 0 0 0 0 0 0 0 +3.644 -3.406 -1.775 0 0 0 0 0 0 0 +3.668 -3.407 -1.782 0 0 0 0 0 0 0 +3.663 -3.38 -1.774 0 0 0 0 0 0 0 +3.68 -3.386 -1.78 0 0 0 0 0 0 0 +3.676 -3.36 -1.772 0 0 0 0 0 0 0 +3.701 -3.363 -1.78 0 0 0 0 0 0 0 +3.701 -3.341 -1.774 0 0 0 0 0 0 0 +3.724 -3.341 -1.781 0 0 0 0 0 0 0 +3.723 -3.319 -1.775 0 0 0 0 0 0 0 +3.749 -3.321 -1.783 0 0 0 0 0 0 0 +3.739 -3.301 -1.775 0 0 0 0 0 0 0 +3.762 -3.301 -1.782 0 0 0 0 0 0 0 +3.758 -3.277 -1.774 0 0 0 0 0 0 0 +3.782 -3.277 -1.782 0 0 0 0 0 0 0 +3.781 -3.255 -1.776 0 0 0 0 0 0 0 +3.804 -3.254 -1.782 0 0 0 0 0 0 0 +3.794 -3.235 -1.774 0 0 0 0 0 0 0 +3.821 -3.238 -1.783 0 0 0 0 0 0 0 +3.823 -3.218 -1.779 0 0 0 0 0 0 0 +3.838 -3.211 -1.782 0 0 0 0 0 0 0 +3.833 -3.186 -1.774 0 0 0 0 0 0 0 +3.864 -3.192 -1.784 0 0 0 0 0 0 0 +3.854 -3.163 -1.774 0 0 0 0 0 0 0 +3.88 -3.164 -1.782 0 0 0 0 0 0 0 +3.869 -3.145 -1.774 0 0 0 0 0 0 0 +3.885 -3.137 -1.777 0 0 0 0 0 0 0 +3.9 -3.13 -1.78 0 0 0 0 0 0 0 +3.901 -3.11 -1.776 0 0 0 0 0 0 0 +3.911 -3.098 -1.776 0 0 0 0 0 0 0 +3.916 -3.082 -1.774 0 0 0 0 0 0 0 +3.935 -3.077 -1.778 0 0 0 0 0 0 0 +3.937 -3.069 -1.777 0 0 0 0 0 0 0 +3.958 -3.065 -1.782 0 0 0 0 0 0 0 +3.937 -3.029 -1.767 0 0 0 0 0 0 0 +3.971 -3.036 -1.779 0 0 0 0 0 0 0 +3.979 -3.022 -1.779 0 0 0 0 0 0 0 +3.987 -3.009 -1.778 0 0 0 0 0 0 0 +4 -2.998 -1.779 0 0 0 0 0 0 0 +4.006 -2.993 -1.78 0 0 0 0 0 0 0 +4.011 -2.977 -1.778 0 0 0 0 0 0 0 +4.01 -2.957 -1.773 0 0 0 0 0 0 0 +4.024 -2.947 -1.775 0 0 0 0 0 0 0 +4.037 -2.938 -1.777 0 0 0 0 0 0 0 +4.045 -2.924 -1.777 0 0 0 0 0 0 0 +4.059 -2.915 -1.779 0 0 0 0 0 0 0 +4.059 -2.905 -1.777 0 0 0 0 0 0 0 +4.066 -2.891 -1.776 0 0 0 0 0 0 0 +4.086 -2.886 -1.781 0 0 0 0 0 0 0 +4.083 -2.865 -1.775 0 0 0 0 0 0 0 +4.086 -2.848 -1.772 0 0 0 0 0 0 0 +4.098 -2.837 -1.774 0 0 0 0 0 0 0 +4.105 -2.833 -1.775 0 0 0 0 0 0 0 +4.111 -2.818 -1.774 0 0 0 0 0 0 0 +4.115 -2.801 -1.772 0 0 0 0 0 0 0 +4.13 -2.793 -1.774 0 0 0 0 0 0 0 +4.133 -2.775 -1.772 0 0 0 0 0 0 0 +4.135 -2.758 -1.769 0 0 0 0 0 0 0 +4.152 -2.751 -1.772 0 0 0 0 0 0 0 +4.157 -2.735 -1.771 0 0 0 0 0 0 0 +4.157 -2.726 -1.769 0 0 0 0 0 0 0 +4.167 -2.714 -1.769 0 0 0 0 0 0 0 +4.183 -2.706 -1.773 0 0 0 0 0 0 0 +4.189 -2.691 -1.772 0 0 0 0 0 0 0 +4.196 -2.676 -1.771 0 0 0 0 0 0 0 +4.207 -2.665 -1.772 0 0 0 0 0 0 0 +4.203 -2.644 -1.767 0 0 0 0 0 0 0 +4.207 -2.637 -1.767 0 0 0 0 0 0 0 +4.225 -2.63 -1.771 0 0 0 0 0 0 0 +4.223 -2.611 -1.767 0 0 0 0 0 0 0 +4.23 -2.597 -1.766 0 0 0 0 0 0 0 +4.237 -2.582 -1.765 0 0 0 0 0 0 0 +4.243 -2.568 -1.765 0 0 0 0 0 0 0 +4.254 -2.557 -1.766 0 0 0 0 0 0 0 +4.255 -2.548 -1.765 0 0 0 0 0 0 0 +4.263 -2.535 -1.765 0 0 0 0 0 0 0 +4.268 -2.519 -1.763 0 0 0 0 0 0 0 +4.274 -2.505 -1.762 0 0 0 0 0 0 0 +4.29 -2.496 -1.766 0 0 0 0 0 0 0 +4.298 -2.483 -1.766 0 0 0 0 0 0 0 +4.301 -2.466 -1.764 0 0 0 0 0 0 0 +4.301 -2.458 -1.762 0 0 0 0 0 0 0 +4.307 -2.443 -1.762 0 0 0 0 0 0 0 +4.32 -2.432 -1.764 0 0 0 0 0 0 0 +4.326 -2.418 -1.763 0 0 0 0 0 0 0 +4.335 -2.405 -1.764 0 0 0 0 0 0 0 +4.338 -2.389 -1.762 0 0 0 0 0 0 0 +4.349 -2.377 -1.763 0 0 0 0 0 0 0 +4.352 -2.37 -1.763 0 0 0 0 0 0 0 +4.35 -2.351 -1.759 0 0 0 0 0 0 0 +4.361 -2.339 -1.76 0 0 0 0 0 0 0 +4.373 -2.328 -1.762 0 0 0 0 0 0 0 +4.372 -2.31 -1.759 0 0 0 0 0 0 0 +4.374 -2.294 -1.757 0 0 0 0 0 0 0 +4.393 -2.286 -1.762 0 0 0 0 0 0 0 +4.403 -2.283 -1.765 0 0 0 0 0 0 0 +4.414 -2.271 -1.766 0 0 0 0 0 0 0 +4.404 -2.248 -1.759 0 0 0 0 0 0 0 +4.413 -2.235 -1.76 0 0 0 0 0 0 0 +4.426 -2.225 -1.762 0 0 0 0 0 0 0 +4.427 -2.207 -1.76 0 0 0 0 0 0 0 +4.449 -2.201 -1.766 0 0 0 0 0 0 0 +4.445 -2.191 -1.763 0 0 0 0 0 0 0 +4.444 -2.172 -1.76 0 0 0 0 0 0 0 +4.441 -2.154 -1.755 0 0 0 0 0 0 0 +4.447 -2.14 -1.755 0 0 0 0 0 0 0 +4.463 -2.13 -1.759 0 0 0 0 0 0 0 +4.461 -2.112 -1.755 0 0 0 0 0 0 0 +4.471 -2.099 -1.757 0 0 0 0 0 0 0 +4.486 -2.098 -1.762 0 0 0 0 0 0 0 +4.482 -2.079 -1.757 0 0 0 0 0 0 0 +4.489 -2.065 -1.757 0 0 0 0 0 0 0 +4.504 -2.055 -1.761 0 0 0 0 0 0 0 +4.493 -2.033 -1.754 0 0 0 0 0 0 0 +4.498 -2.018 -1.753 0 0 0 0 0 0 0 +4.514 -2.008 -1.757 0 0 0 0 0 0 0 +4.509 -1.997 -1.754 0 0 0 0 0 0 0 +4.522 -1.986 -1.757 0 0 0 0 0 0 0 +4.532 -1.973 -1.758 0 0 0 0 0 0 0 +4.541 -1.961 -1.76 0 0 0 0 0 0 0 +4.541 -1.943 -1.757 0 0 0 0 0 0 0 +4.542 -1.927 -1.755 0 0 0 0 0 0 0 +4.558 -1.917 -1.759 0 0 0 0 0 0 0 +4.556 -1.908 -1.757 0 0 0 0 0 0 0 +4.55 -1.888 -1.752 0 0 0 0 0 0 0 +4.575 -1.882 -1.76 0 0 0 0 0 0 0 +4.582 -1.868 -1.76 0 0 0 0 0 0 0 +4.569 -1.846 -1.752 0 0 0 0 0 0 0 +4.57 -1.83 -1.75 0 0 0 0 0 0 0 +4.582 -1.818 -1.753 0 0 0 0 0 0 0 +4.578 -1.808 -1.75 0 0 0 0 0 0 0 +4.592 -1.797 -1.754 0 0 0 0 0 0 0 +4.6 -1.783 -1.755 0 0 0 0 0 0 0 +4.611 -1.771 -1.757 0 0 0 0 0 0 0 +4.616 -1.756 -1.757 0 0 0 0 0 0 0 +4.618 -1.741 -1.755 0 0 0 0 0 0 0 +4.624 -1.726 -1.755 0 0 0 0 0 0 0 +4.632 -1.721 -1.757 0 0 0 0 0 0 0 +4.633 -1.705 -1.756 0 0 0 0 0 0 0 +4.641 -1.691 -1.757 0 0 0 0 0 0 0 +4.639 -1.674 -1.754 0 0 0 0 0 0 0 +4.653 -1.662 -1.757 0 0 0 0 0 0 0 +4.655 -1.647 -1.756 0 0 0 0 0 0 0 +4.658 -1.631 -1.755 0 0 0 0 0 0 0 +4.65 -1.62 -1.751 0 0 0 0 0 0 0 +4.657 -1.606 -1.752 0 0 0 0 0 0 0 +4.658 -1.59 -1.75 0 0 0 0 0 0 0 +4.661 -1.575 -1.75 0 0 0 0 0 0 0 +4.677 -1.564 -1.754 0 0 0 0 0 0 0 +4.682 -1.549 -1.754 0 0 0 0 0 0 0 +4.696 -1.538 -1.757 0 0 0 0 0 0 0 +4.686 -1.526 -1.752 0 0 0 0 0 0 0 +4.685 -1.51 -1.75 0 0 0 0 0 0 0 +4.695 -1.497 -1.752 0 0 0 0 0 0 0 +4.702 -1.482 -1.753 0 0 0 0 0 0 0 +4.712 -1.469 -1.755 0 0 0 0 0 0 0 +4.7 -1.45 -1.749 0 0 0 0 0 0 0 +4.721 -1.44 -1.755 0 0 0 0 0 0 0 +4.709 -1.428 -1.75 0 0 0 0 0 0 0 +4.706 -1.411 -1.747 0 0 0 0 0 0 0 +4.726 -1.401 -1.753 0 0 0 0 0 0 0 +4.733 -1.387 -1.754 0 0 0 0 0 0 0 +4.715 -1.365 -1.745 0 0 0 0 0 0 0 +4.714 -1.349 -1.743 0 0 0 0 0 0 0 +4.729 -1.337 -1.747 0 0 0 0 0 0 0 +4.731 -1.33 -1.747 0 0 0 0 0 0 0 +4.743 -1.317 -1.75 0 0 0 0 0 0 0 +4.741 -1.301 -1.748 0 0 0 0 0 0 0 +4.738 -1.284 -1.745 0 0 0 0 0 0 0 +4.748 -1.27 -1.747 0 0 0 0 0 0 0 +4.757 -1.257 -1.75 0 0 0 0 0 0 0 +4.75 -1.239 -1.745 0 0 0 0 0 0 0 +4.747 -1.23 -1.743 0 0 0 0 0 0 0 +4.761 -1.218 -1.747 0 0 0 0 0 0 0 +4.747 -1.198 -1.74 0 0 0 0 0 0 0 +4.764 -1.187 -1.745 0 0 0 0 0 0 0 +4.762 -1.17 -1.743 0 0 0 0 0 0 0 +4.765 -1.155 -1.743 0 0 0 0 0 0 0 +4.782 -1.144 -1.748 0 0 0 0 0 0 0 +4.784 -1.136 -1.748 0 0 0 0 0 0 0 +4.789 -1.122 -1.749 0 0 0 0 0 0 0 +4.785 -1.105 -1.746 0 0 0 0 0 0 0 +4.78 -1.088 -1.743 0 0 0 0 0 0 0 +4.785 -1.073 -1.743 0 0 0 0 0 0 0 +4.794 -1.059 -1.745 0 0 0 0 0 0 0 +4.795 -1.044 -1.745 0 0 0 0 0 0 0 +4.795 -1.036 -1.744 0 0 0 0 0 0 0 +4.804 -1.022 -1.746 0 0 0 0 0 0 0 +4.801 -1.006 -1.744 0 0 0 0 0 0 0 +4.797 -0.989 -1.741 0 0 0 0 0 0 0 +4.813 -0.977 -1.746 0 0 0 0 0 0 0 +4.805 -0.959 -1.742 0 0 0 0 0 0 0 +4.815 -0.946 -1.745 0 0 0 0 0 0 0 +4.813 -0.929 -1.743 0 0 0 0 0 0 0 +4.822 -0.923 -1.745 0 0 0 0 0 0 0 +4.813 -0.906 -1.741 0 0 0 0 0 0 0 +4.816 -0.891 -1.741 0 0 0 0 0 0 0 +4.837 -0.879 -1.748 0 0 0 0 0 0 0 +4.84 -0.864 -1.748 0 0 0 0 0 0 0 +4.839 -0.848 -1.747 0 0 0 0 0 0 0 +4.836 -0.832 -1.745 0 0 0 0 0 0 0 +4.839 -0.825 -1.745 0 0 0 0 0 0 0 +4.842 -0.809 -1.745 0 0 0 0 0 0 0 +4.852 -0.795 -1.748 0 0 0 0 0 0 0 +4.838 -0.777 -1.742 0 0 0 0 0 0 0 +4.846 -0.763 -1.744 0 0 0 0 0 0 0 +4.854 -0.749 -1.746 0 0 0 0 0 0 0 +4.851 -0.741 -1.745 0 0 0 0 0 0 0 +4.839 -0.723 -1.739 0 0 0 0 0 0 0 +4.839 -0.708 -1.738 0 0 0 0 0 0 0 +4.852 -0.694 -1.743 0 0 0 0 0 0 0 +4.866 -0.68 -1.747 0 0 0 0 0 0 0 +4.86 -0.664 -1.744 0 0 0 0 0 0 0 +4.849 -0.647 -1.739 0 0 0 0 0 0 0 +4.862 -0.633 -1.743 0 0 0 0 0 0 0 +4.858 -0.625 -1.741 0 0 0 0 0 0 0 +4.862 -0.61 -1.742 0 0 0 0 0 0 0 +4.869 -0.595 -1.744 0 0 0 0 0 0 0 +4.864 -0.579 -1.741 0 0 0 0 0 0 0 +4.865 -0.564 -1.741 0 0 0 0 0 0 0 +4.865 -0.548 -1.74 0 0 0 0 0 0 0 +4.871 -0.533 -1.742 0 0 0 0 0 0 0 +4.86 -0.524 -1.738 0 0 0 0 0 0 0 +4.864 -0.509 -1.738 0 0 0 0 0 0 0 +4.865 -0.494 -1.738 0 0 0 0 0 0 0 +4.871 -0.479 -1.74 0 0 0 0 0 0 0 +4.87 -0.464 -1.739 0 0 0 0 0 0 0 +4.868 -0.448 -1.738 0 0 0 0 0 0 0 +4.879 -0.434 -1.741 0 0 0 0 0 0 0 +4.879 -0.426 -1.741 0 0 0 0 0 0 0 +4.873 -0.41 -1.738 0 0 0 0 0 0 0 +4.873 -0.394 -1.738 0 0 0 0 0 0 0 +4.868 -0.379 -1.735 0 0 0 0 0 0 0 +4.881 -0.364 -1.74 0 0 0 0 0 0 0 +4.88 -0.349 -1.739 0 0 0 0 0 0 0 +4.877 -0.333 -1.738 0 0 0 0 0 0 0 +4.88 -0.326 -1.738 0 0 0 0 0 0 0 +4.884 -0.311 -1.74 0 0 0 0 0 0 0 +4.885 -0.295 -1.74 0 0 0 0 0 0 0 +4.886 -0.28 -1.74 0 0 0 0 0 0 0 +4.88 -0.264 -1.737 0 0 0 0 0 0 0 +4.884 -0.249 -1.738 0 0 0 0 0 0 0 +4.883 -0.234 -1.738 0 0 0 0 0 0 0 +4.887 -0.226 -1.739 0 0 0 0 0 0 0 +4.88 -0.21 -1.736 0 0 0 0 0 0 0 +4.881 -0.195 -1.736 0 0 0 0 0 0 0 +4.885 -0.18 -1.738 0 0 0 0 0 0 0 +4.88 -0.164 -1.735 0 0 0 0 0 0 0 +4.879 -0.149 -1.735 0 0 0 0 0 0 0 +4.883 -0.134 -1.736 0 0 0 0 0 0 0 +4.881 -0.126 -1.735 0 0 0 0 0 0 0 +4.882 -0.111 -1.735 0 0 0 0 0 0 0 +4.88 -0.095 -1.735 0 0 0 0 0 0 0 +4.884 -0.08 -1.736 0 0 0 0 0 0 0 +4.886 -0.065 -1.737 0 0 0 0 0 0 0 +4.881 -0.049 -1.735 0 0 0 0 0 0 0 +4.896 -0.034 -1.74 0 0 0 0 0 0 0 +4.89 -0.026 -1.738 0 0 0 0 0 0 0 +4.879 -0.011 -1.734 0 0 0 0 0 0 0 +4.761 0.009 -1.74 0 0 0 0 0 0 0 +4.759 0.024 -1.739 0 0 0 0 0 0 0 +4.755 0.032 -1.738 0 0 0 0 0 0 0 +4.752 0.047 -1.736 0 0 0 0 0 0 0 +4.751 0.062 -1.736 0 0 0 0 0 0 0 +4.759 0.077 -1.739 0 0 0 0 0 0 0 +4.77 0.092 -1.744 0 0 0 0 0 0 0 +4.756 0.107 -1.739 0 0 0 0 0 0 0 +4.748 0.121 -1.736 0 0 0 0 0 0 0 +4.754 0.129 -1.738 0 0 0 0 0 0 0 +4.75 0.144 -1.736 0 0 0 0 0 0 0 +4.753 0.159 -1.738 0 0 0 0 0 0 0 +4.76 0.174 -1.741 0 0 0 0 0 0 0 +4.742 0.188 -1.734 0 0 0 0 0 0 0 +4.733 0.203 -1.731 0 0 0 0 0 0 0 +4.736 0.218 -1.732 0 0 0 0 0 0 0 +4.748 0.226 -1.737 0 0 0 0 0 0 0 +4.742 0.241 -1.735 0 0 0 0 0 0 0 +4.736 0.255 -1.733 0 0 0 0 0 0 0 +4.731 0.27 -1.731 0 0 0 0 0 0 0 +4.74 0.285 -1.735 0 0 0 0 0 0 0 +4.746 0.301 -1.738 0 0 0 0 0 0 0 +4.717 0.313 -1.727 0 0 0 0 0 0 0 +4.726 0.322 -1.731 0 0 0 0 0 0 0 +4.725 0.336 -1.731 0 0 0 0 0 0 0 +4.722 0.351 -1.73 0 0 0 0 0 0 0 +4.71 0.365 -1.726 0 0 0 0 0 0 0 +4.725 0.381 -1.732 0 0 0 0 0 0 0 +4.718 0.396 -1.73 0 0 0 0 0 0 0 +4.725 0.411 -1.733 0 0 0 0 0 0 0 +4.722 0.418 -1.732 0 0 0 0 0 0 0 +4.708 0.432 -1.727 0 0 0 0 0 0 0 +4.705 0.447 -1.726 0 0 0 0 0 0 0 +4.718 0.463 -1.732 0 0 0 0 0 0 0 +4.707 0.477 -1.728 0 0 0 0 0 0 0 +4.717 0.493 -1.733 0 0 0 0 0 0 0 +4.719 0.508 -1.734 0 0 0 0 0 0 0 +4.702 0.513 -1.728 0 0 0 0 0 0 0 +4.698 0.528 -1.727 0 0 0 0 0 0 0 +4.707 0.544 -1.731 0 0 0 0 0 0 0 +4.695 0.557 -1.727 0 0 0 0 0 0 0 +4.706 0.574 -1.732 0 0 0 0 0 0 0 +4.702 0.588 -1.731 0 0 0 0 0 0 0 +4.685 0.601 -1.726 0 0 0 0 0 0 0 +4.677 0.608 -1.723 0 0 0 0 0 0 0 +4.681 0.623 -1.725 0 0 0 0 0 0 0 +4.699 0.641 -1.733 0 0 0 0 0 0 0 +4.666 0.651 -1.72 0 0 0 0 0 0 0 +4.68 0.668 -1.727 0 0 0 0 0 0 0 +4.678 0.683 -1.727 0 0 0 0 0 0 0 +4.656 0.694 -1.719 0 0 0 0 0 0 0 +4.685 0.714 -1.731 0 0 0 0 0 0 0 +4.669 0.719 -1.726 0 0 0 0 0 0 0 +4.67 0.734 -1.727 0 0 0 0 0 0 0 +4.662 0.748 -1.725 0 0 0 0 0 0 0 +4.66 0.762 -1.725 0 0 0 0 0 0 0 +4.663 0.778 -1.727 0 0 0 0 0 0 0 +4.655 0.792 -1.725 0 0 0 0 0 0 0 +4.643 0.805 -1.721 0 0 0 0 0 0 0 +4.664 0.816 -1.73 0 0 0 0 0 0 0 +4.652 0.829 -1.726 0 0 0 0 0 0 0 +4.646 0.843 -1.725 0 0 0 0 0 0 0 +4.651 0.859 -1.728 0 0 0 0 0 0 0 +4.637 0.871 -1.723 0 0 0 0 0 0 0 +4.634 0.886 -1.723 0 0 0 0 0 0 0 +4.65 0.904 -1.731 0 0 0 0 0 0 0 +4.632 0.908 -1.724 0 0 0 0 0 0 0 +4.633 0.923 -1.726 0 0 0 0 0 0 0 +4.639 0.94 -1.729 0 0 0 0 0 0 0 +4.618 0.951 -1.722 0 0 0 0 0 0 0 +4.62 0.966 -1.724 0 0 0 0 0 0 0 +4.608 0.979 -1.72 0 0 0 0 0 0 0 +4.607 0.994 -1.721 0 0 0 0 0 0 0 +4.616 1.003 -1.726 0 0 0 0 0 0 0 +4.6 1.015 -1.72 0 0 0 0 0 0 0 +4.602 1.031 -1.723 0 0 0 0 0 0 0 +4.599 1.045 -1.723 0 0 0 0 0 0 0 +4.596 1.059 -1.723 0 0 0 0 0 0 0 +4.587 1.073 -1.72 0 0 0 0 0 0 0 +4.595 1.09 -1.725 0 0 0 0 0 0 0 +4.582 1.094 -1.72 0 0 0 0 0 0 0 +4.58 1.109 -1.721 0 0 0 0 0 0 0 +4.579 1.124 -1.722 0 0 0 0 0 0 0 +4.579 1.139 -1.723 0 0 0 0 0 0 0 +4.584 1.156 -1.727 0 0 0 0 0 0 0 +4.575 1.169 -1.725 0 0 0 0 0 0 0 +4.546 1.177 -1.715 0 0 0 0 0 0 0 +4.564 1.189 -1.723 0 0 0 0 0 0 0 +4.542 1.198 -1.715 0 0 0 0 0 0 0 +4.544 1.214 -1.718 0 0 0 0 0 0 0 +4.551 1.231 -1.722 0 0 0 0 0 0 0 +4.547 1.246 -1.722 0 0 0 0 0 0 0 +4.523 1.254 -1.714 0 0 0 0 0 0 0 +4.537 1.274 -1.721 0 0 0 0 0 0 0 +4.517 1.276 -1.714 0 0 0 0 0 0 0 +4.522 1.293 -1.718 0 0 0 0 0 0 0 +4.527 1.309 -1.721 0 0 0 0 0 0 0 +4.516 1.321 -1.718 0 0 0 0 0 0 0 +4.51 1.335 -1.718 0 0 0 0 0 0 0 +4.513 1.351 -1.72 0 0 0 0 0 0 0 +4.512 1.367 -1.722 0 0 0 0 0 0 0 +4.503 1.372 -1.719 0 0 0 0 0 0 0 +4.495 1.385 -1.718 0 0 0 0 0 0 0 +4.498 1.401 -1.72 0 0 0 0 0 0 0 +4.483 1.412 -1.716 0 0 0 0 0 0 0 +4.483 1.427 -1.718 0 0 0 0 0 0 0 +4.49 1.445 -1.723 0 0 0 0 0 0 0 +4.471 1.454 -1.717 0 0 0 0 0 0 0 +4.463 1.46 -1.715 0 0 0 0 0 0 0 +4.476 1.48 -1.722 0 0 0 0 0 0 0 +4.454 1.488 -1.715 0 0 0 0 0 0 0 +4.458 1.505 -1.718 0 0 0 0 0 0 0 +4.45 1.517 -1.717 0 0 0 0 0 0 0 +4.454 1.535 -1.72 0 0 0 0 0 0 0 +4.444 1.547 -1.718 0 0 0 0 0 0 0 +4.452 1.557 -1.723 0 0 0 0 0 0 0 +4.422 1.563 -1.712 0 0 0 0 0 0 0 +4.433 1.582 -1.719 0 0 0 0 0 0 0 +4.423 1.594 -1.717 0 0 0 0 0 0 0 +4.404 1.603 -1.711 0 0 0 0 0 0 0 +4.416 1.623 -1.718 0 0 0 0 0 0 0 +4.425 1.642 -1.724 0 0 0 0 0 0 0 +4.396 1.639 -1.713 0 0 0 0 0 0 0 +4.409 1.66 -1.72 0 0 0 0 0 0 0 +4.386 1.667 -1.713 0 0 0 0 0 0 0 +4.388 1.683 -1.716 0 0 0 0 0 0 0 +4.388 1.699 -1.718 0 0 0 0 0 0 0 +4.391 1.716 -1.722 0 0 0 0 0 0 0 +4.361 1.721 -1.712 0 0 0 0 0 0 0 +4.386 1.739 -1.723 0 0 0 0 0 0 0 +4.374 1.75 -1.72 0 0 0 0 0 0 0 +4.36 1.76 -1.717 0 0 0 0 0 0 0 +4.371 1.781 -1.724 0 0 0 0 0 0 0 +4.338 1.783 -1.712 0 0 0 0 0 0 0 +4.341 1.8 -1.716 0 0 0 0 0 0 0 +4.344 1.817 -1.72 0 0 0 0 0 0 0 +4.32 1.823 -1.712 0 0 0 0 0 0 0 +4.344 1.841 -1.723 0 0 0 0 0 0 0 +4.314 1.845 -1.713 0 0 0 0 0 0 0 +4.317 1.862 -1.717 0 0 0 0 0 0 0 +4.315 1.877 -1.718 0 0 0 0 0 0 0 +4.307 1.89 -1.718 0 0 0 0 0 0 0 +4.306 1.906 -1.72 0 0 0 0 0 0 0 +4.295 1.909 -1.716 0 0 0 0 0 0 0 +4.295 1.925 -1.719 0 0 0 0 0 0 0 +4.294 1.941 -1.721 0 0 0 0 0 0 0 +4.28 1.95 -1.718 0 0 0 0 0 0 0 +4.286 1.969 -1.723 0 0 0 0 0 0 0 +4.261 1.974 -1.715 0 0 0 0 0 0 0 +4.256 1.988 -1.715 0 0 0 0 0 0 0 +4.27 2.003 -1.723 0 0 0 0 0 0 0 +4.245 2.008 -1.715 0 0 0 0 0 0 0 +4.256 2.029 -1.722 0 0 0 0 0 0 0 +4.241 2.038 -1.718 0 0 0 0 0 0 0 +4.233 2.051 -1.718 0 0 0 0 0 0 0 +4.23 2.066 -1.719 0 0 0 0 0 0 0 +4.215 2.075 -1.715 0 0 0 0 0 0 0 +4.225 2.088 -1.721 0 0 0 0 0 0 0 +4.213 2.099 -1.719 0 0 0 0 0 0 0 +4.203 2.11 -1.718 0 0 0 0 0 0 0 +4.188 2.119 -1.714 0 0 0 0 0 0 0 +4.202 2.143 -1.723 0 0 0 0 0 0 0 +4.185 2.151 -1.718 0 0 0 0 0 0 0 +4.185 2.167 -1.721 0 0 0 0 0 0 0 +4.16 2.171 -1.713 0 0 0 0 0 0 0 +4.168 2.184 -1.718 0 0 0 0 0 0 0 +4.158 2.195 -1.717 0 0 0 0 0 0 0 +4.17 2.219 -1.726 0 0 0 0 0 0 0 +4.152 2.225 -1.72 0 0 0 0 0 0 0 +4.156 2.245 -1.726 0 0 0 0 0 0 0 +4.13 2.247 -1.717 0 0 0 0 0 0 0 +4.116 2.256 -1.714 0 0 0 0 0 0 0 +4.124 2.269 -1.719 0 0 0 0 0 0 0 +4.11 2.278 -1.716 0 0 0 0 0 0 0 +4.118 2.3 -1.723 0 0 0 0 0 0 0 +4.094 2.303 -1.715 0 0 0 0 0 0 0 +4.1 2.324 -1.721 0 0 0 0 0 0 0 +4.086 2.333 -1.718 0 0 0 0 0 0 0 +4.079 2.337 -1.717 0 0 0 0 0 0 0 +4.082 2.356 -1.721 0 0 0 0 0 0 0 +4.065 2.363 -1.717 0 0 0 0 0 0 0 +4.068 2.382 -1.722 0 0 0 0 0 0 0 +4.067 2.399 -1.725 0 0 0 0 0 0 0 +4.039 2.399 -1.715 0 0 0 0 0 0 0 +4.022 2.406 -1.711 0 0 0 0 0 0 0 +4.045 2.429 -1.723 0 0 0 0 0 0 0 +4.033 2.439 -1.721 0 0 0 0 0 0 0 +4.022 2.449 -1.72 0 0 0 0 0 0 0 +4.027 2.47 -1.726 0 0 0 0 0 0 0 +4.006 2.474 -1.72 0 0 0 0 0 0 0 +3.991 2.482 -1.716 0 0 0 0 0 0 0 +3.988 2.498 -1.718 0 0 0 0 0 0 0 +3.988 2.507 -1.72 0 0 0 0 0 0 0 +3.981 2.519 -1.72 0 0 0 0 0 0 0 +3.985 2.54 -1.726 0 0 0 0 0 0 0 +3.972 2.549 -1.724 0 0 0 0 0 0 0 +3.964 2.562 -1.724 0 0 0 0 0 0 0 +3.961 2.577 -1.726 0 0 0 0 0 0 0 +3.95 2.588 -1.725 0 0 0 0 0 0 0 +3.938 2.589 -1.721 0 0 0 0 0 0 0 +3.933 2.603 -1.723 0 0 0 0 0 0 0 +3.926 2.617 -1.723 0 0 0 0 0 0 0 +3.913 2.626 -1.721 0 0 0 0 0 0 0 +3.913 2.643 -1.725 0 0 0 0 0 0 0 +3.906 2.657 -1.726 0 0 0 0 0 0 0 +3.893 2.666 -1.723 0 0 0 0 0 0 0 +3.892 2.674 -1.725 0 0 0 0 0 0 0 +3.896 2.695 -1.731 0 0 0 0 0 0 0 +3.881 2.703 -1.728 0 0 0 0 0 0 0 +3.862 2.707 -1.723 0 0 0 0 0 0 0 +3.861 2.725 -1.726 0 0 0 0 0 0 0 +3.854 2.738 -1.727 0 0 0 0 0 0 0 +3.845 2.75 -1.727 0 0 0 0 0 0 0 +3.835 2.761 -1.726 0 0 0 0 0 0 0 +3.828 2.765 -1.725 0 0 0 0 0 0 0 +3.821 2.778 -1.726 0 0 0 0 0 0 0 +3.809 2.788 -1.724 0 0 0 0 0 0 0 +3.799 2.799 -1.723 0 0 0 0 0 0 0 +3.793 2.813 -1.725 0 0 0 0 0 0 0 +3.796 2.834 -1.731 0 0 0 0 0 0 0 +3.785 2.845 -1.73 0 0 0 0 0 0 0 +3.774 2.845 -1.726 0 0 0 0 0 0 0 +3.754 2.849 -1.721 0 0 0 0 0 0 0 +3.759 2.871 -1.728 0 0 0 0 0 0 0 +3.751 2.884 -1.728 0 0 0 0 0 0 0 +3.736 2.891 -1.726 0 0 0 0 0 0 0 +3.733 2.907 -1.728 0 0 0 0 0 0 0 +3.722 2.908 -1.726 0 0 0 0 0 0 0 +3.712 2.919 -1.725 0 0 0 0 0 0 0 +3.708 2.935 -1.728 0 0 0 0 0 0 0 +3.698 2.946 -1.727 0 0 0 0 0 0 0 +3.69 2.958 -1.728 0 0 0 0 0 0 0 +3.672 2.963 -1.723 0 0 0 0 0 0 0 +3.671 2.982 -1.728 0 0 0 0 0 0 0 +3.661 2.983 -1.725 0 0 0 0 0 0 0 +3.649 2.992 -1.723 0 0 0 0 0 0 0 +3.648 3.01 -1.728 0 0 0 0 0 0 0 +3.63 3.015 -1.723 0 0 0 0 0 0 0 +3.624 3.03 -1.726 0 0 0 0 0 0 0 +3.608 3.035 -1.722 0 0 0 0 0 0 0 +3.597 3.045 -1.721 0 0 0 0 0 0 0 +3.599 3.057 -1.725 0 0 0 0 0 0 0 +3.573 3.053 -1.716 0 0 0 0 0 0 0 +3.58 3.079 -1.725 0 0 0 0 0 0 0 +3.565 3.086 -1.722 0 0 0 0 0 0 0 +3.57 3.11 -1.73 0 0 0 0 0 0 0 +3.548 3.11 -1.723 0 0 0 0 0 0 0 +3.533 3.117 -1.72 0 0 0 0 0 0 0 +3.532 3.136 -1.726 0 0 0 0 0 0 0 +3.525 3.139 -1.724 0 0 0 0 0 0 0 +3.527 3.162 -1.731 0 0 0 0 0 0 0 +3.504 3.16 -1.723 0 0 0 0 0 0 0 +3.491 3.169 -1.722 0 0 0 0 0 0 0 +3.489 3.187 -1.726 0 0 0 0 0 0 0 +3.461 3.182 -1.717 0 0 0 0 0 0 0 +3.461 3.202 -1.722 0 0 0 0 0 0 0 +3.456 3.207 -1.722 0 0 0 0 0 0 0 +3.451 3.223 -1.725 0 0 0 0 0 0 0 +3.426 3.22 -1.717 0 0 0 0 0 0 0 +3.435 3.248 -1.727 0 0 0 0 0 0 0 +3.406 3.241 -1.717 0 0 0 0 0 0 0 +3.404 3.26 -1.721 0 0 0 0 0 0 0 +3.401 3.278 -1.726 0 0 0 0 0 0 0 +3.395 3.282 -1.725 0 0 0 0 0 0 0 +3.377 3.285 -1.72 0 0 0 0 0 0 0 +3.378 3.307 -1.727 0 0 0 0 0 0 0 +3.363 3.313 -1.724 0 0 0 0 0 0 0 +3.344 3.315 -1.72 0 0 0 0 0 0 0 +3.346 3.338 -1.726 0 0 0 0 0 0 0 +3.336 3.349 -1.727 0 0 0 0 0 0 0 +3.321 3.344 -1.721 0 0 0 0 0 0 0 +3.311 3.356 -1.722 0 0 0 0 0 0 0 +3.289 3.354 -1.715 0 0 0 0 0 0 0 +3.289 3.375 -1.721 0 0 0 0 0 0 0 +3.278 3.386 -1.721 0 0 0 0 0 0 0 +3.27 3.398 -1.723 0 0 0 0 0 0 0 +3.266 3.416 -1.726 0 0 0 0 0 0 0 +3.25 3.41 -1.72 0 0 0 0 0 0 0 +3.241 3.421 -1.721 0 0 0 0 0 0 0 +3.235 3.437 -1.724 0 0 0 0 0 0 0 +3.222 3.444 -1.723 0 0 0 0 0 0 0 +3.217 3.461 -1.726 0 0 0 0 0 0 0 +3.208 3.473 -1.727 0 0 0 0 0 0 0 +3.189 3.475 -1.723 0 0 0 0 0 0 0 +3.181 3.477 -1.721 0 0 0 0 0 0 0 +3.179 3.497 -1.726 0 0 0 0 0 0 0 +3.163 3.501 -1.723 0 0 0 0 0 0 0 +3.156 3.515 -1.726 0 0 0 0 0 0 0 +3.141 3.521 -1.723 0 0 0 0 0 0 0 +3.135 3.536 -1.726 0 0 0 0 0 0 0 +3.121 3.543 -1.725 0 0 0 0 0 0 0 +3.108 3.54 -1.72 0 0 0 0 0 0 0 +3.103 3.556 -1.724 0 0 0 0 0 0 0 +3.092 3.566 -1.724 0 0 0 0 0 0 0 +3.074 3.567 -1.72 0 0 0 0 0 0 0 +3.059 3.573 -1.718 0 0 0 0 0 0 0 +3.044 3.578 -1.715 0 0 0 0 0 0 0 +3.033 3.588 -1.715 0 0 0 0 0 0 0 +3.036 3.602 -1.72 0 0 0 0 0 0 0 +3.022 3.609 -1.719 0 0 0 0 0 0 0 +3.008 3.616 -1.718 0 0 0 0 0 0 0 +2.998 3.627 -1.718 0 0 0 0 0 0 0 +2.988 3.637 -1.719 0 0 0 0 0 0 0 +2.974 3.644 -1.718 0 0 0 0 0 0 0 +2.971 3.663 -1.723 0 0 0 0 0 0 0 +2.965 3.668 -1.723 0 0 0 0 0 0 0 +2.95 3.673 -1.72 0 0 0 0 0 0 0 +2.942 3.687 -1.723 0 0 0 0 0 0 0 +2.927 3.691 -1.72 0 0 0 0 0 0 0 +2.915 3.701 -1.72 0 0 0 0 0 0 0 +2.907 3.714 -1.723 0 0 0 0 0 0 0 +2.888 3.714 -1.718 0 0 0 0 0 0 0 +2.884 3.72 -1.719 0 0 0 0 0 0 0 +2.876 3.735 -1.722 0 0 0 0 0 0 0 +2.864 3.743 -1.721 0 0 0 0 0 0 0 +2.855 3.756 -1.723 0 0 0 0 0 0 0 +2.847 3.77 -1.726 0 0 0 0 0 0 0 +2.83 3.773 -1.723 0 0 0 0 0 0 0 +2.82 3.783 -1.723 0 0 0 0 0 0 0 +2.801 3.783 -1.719 0 0 0 0 0 0 0 +2.799 3.792 -1.721 0 0 0 0 0 0 0 +2.79 3.805 -1.723 0 0 0 0 0 0 0 +2.781 3.818 -1.726 0 0 0 0 0 0 0 +2.775 3.835 -1.729 0 0 0 0 0 0 0 +2.757 3.836 -1.726 0 0 0 0 0 0 0 +2.749 3.851 -1.728 0 0 0 0 0 0 0 +2.737 3.859 -1.728 0 0 0 0 0 0 0 +2.727 3.857 -1.726 0 0 0 0 0 0 0 +2.717 3.869 -1.727 0 0 0 0 0 0 0 +2.711 3.887 -1.731 0 0 0 0 0 0 0 +2.696 3.891 -1.729 0 0 0 0 0 0 0 +2.681 3.896 -1.728 0 0 0 0 0 0 0 +2.671 3.907 -1.729 0 0 0 0 0 0 0 +2.663 3.908 -1.728 0 0 0 0 0 0 0 +2.654 3.921 -1.73 0 0 0 0 0 0 0 +2.636 3.922 -1.726 0 0 0 0 0 0 0 +2.631 3.941 -1.731 0 0 0 0 0 0 0 +2.618 3.948 -1.731 0 0 0 0 0 0 0 +2.597 3.944 -1.725 0 0 0 0 0 0 0 +2.595 3.967 -1.732 0 0 0 0 0 0 0 +2.589 3.971 -1.732 0 0 0 0 0 0 0 +2.577 3.981 -1.733 0 0 0 0 0 0 0 +2.557 3.977 -1.727 0 0 0 0 0 0 0 +2.547 3.989 -1.729 0 0 0 0 0 0 0 +2.533 3.994 -1.728 0 0 0 0 0 0 0 +2.536 4.027 -1.739 0 0 0 0 0 0 0 +2.512 4.018 -1.731 0 0 0 0 0 0 0 +2.496 4.019 -1.728 0 0 0 0 0 0 0 +2.494 4.031 -1.732 0 0 0 0 0 0 0 +2.482 4.039 -1.732 0 0 0 0 0 0 0 +2.461 4.034 -1.726 0 0 0 0 0 0 0 +2.462 4.064 -1.736 0 0 0 0 0 0 0 +2.441 4.058 -1.73 0 0 0 0 0 0 0 +2.433 4.073 -1.734 0 0 0 0 0 0 0 +2.413 4.07 -1.728 0 0 0 0 0 0 0 +2.411 4.08 -1.731 0 0 0 0 0 0 0 +2.397 4.086 -1.731 0 0 0 0 0 0 0 +2.382 4.09 -1.729 0 0 0 0 0 0 0 +2.373 4.104 -1.732 0 0 0 0 0 0 0 +2.353 4.098 -1.726 0 0 0 0 0 0 0 +2.345 4.116 -1.731 0 0 0 0 0 0 0 +2.33 4.118 -1.728 0 0 0 0 0 0 0 +2.319 4.13 -1.731 0 0 0 0 0 0 0 +2.304 4.118 -1.723 0 0 0 0 0 0 0 +2.3 4.141 -1.731 0 0 0 0 0 0 0 +2.278 4.132 -1.723 0 0 0 0 0 0 0 +2.269 4.146 -1.726 0 0 0 0 0 0 0 +2.256 4.153 -1.726 0 0 0 0 0 0 0 +2.249 4.173 -1.732 0 0 0 0 0 0 0 +2.243 4.176 -1.732 0 0 0 0 0 0 0 +2.229 4.182 -1.731 0 0 0 0 0 0 0 +2.22 4.197 -1.735 0 0 0 0 0 0 0 +2.199 4.189 -1.728 0 0 0 0 0 0 0 +2.186 4.196 -1.728 0 0 0 0 0 0 0 +2.166 4.19 -1.723 0 0 0 0 0 0 0 +2.162 4.215 -1.731 0 0 0 0 0 0 0 +2.145 4.215 -1.728 0 0 0 0 0 0 0 +2.144 4.228 -1.732 0 0 0 0 0 0 0 +2.124 4.222 -1.726 0 0 0 0 0 0 0 +2.104 4.215 -1.72 0 0 0 0 0 0 0 +2.096 4.231 -1.725 0 0 0 0 0 0 0 +2.083 4.24 -1.726 0 0 0 0 0 0 0 +2.075 4.256 -1.73 0 0 0 0 0 0 0 +2.056 4.251 -1.725 0 0 0 0 0 0 0 +2.05 4.256 -1.726 0 0 0 0 0 0 0 +2.037 4.264 -1.726 0 0 0 0 0 0 0 +2.025 4.272 -1.727 0 0 0 0 0 0 0 +2.006 4.267 -1.722 0 0 0 0 0 0 0 +1.999 4.286 -1.728 0 0 0 0 0 0 0 +1.984 4.289 -1.726 0 0 0 0 0 0 0 +1.968 4.29 -1.724 0 0 0 0 0 0 0 +1.958 4.287 -1.721 0 0 0 0 0 0 0 +1.945 4.295 -1.722 0 0 0 0 0 0 0 +1.933 4.302 -1.723 0 0 0 0 0 0 0 +1.921 4.313 -1.725 0 0 0 0 0 0 0 +1.914 4.335 -1.731 0 0 0 0 0 0 0 +1.891 4.319 -1.722 0 0 0 0 0 0 0 +1.881 4.331 -1.725 0 0 0 0 0 0 0 +1.873 4.333 -1.724 0 0 0 0 0 0 0 +1.863 4.347 -1.728 0 0 0 0 0 0 0 +1.843 4.337 -1.721 0 0 0 0 0 0 0 +1.829 4.343 -1.721 0 0 0 0 0 0 0 +1.814 4.345 -1.72 0 0 0 0 0 0 0 +1.803 4.356 -1.722 0 0 0 0 0 0 0 +1.788 4.36 -1.721 0 0 0 0 0 0 0 +1.779 4.356 -1.718 0 0 0 0 0 0 0 +1.764 4.36 -1.718 0 0 0 0 0 0 0 +1.753 4.371 -1.72 0 0 0 0 0 0 0 +1.743 4.387 -1.724 0 0 0 0 0 0 0 +1.73 4.396 -1.726 0 0 0 0 0 0 0 +1.712 4.389 -1.72 0 0 0 0 0 0 0 +1.699 4.396 -1.721 0 0 0 0 0 0 0 +1.682 4.394 -1.718 0 0 0 0 0 0 0 +1.681 4.413 -1.725 0 0 0 0 0 0 0 +1.663 4.406 -1.72 0 0 0 0 0 0 0 +1.651 4.416 -1.722 0 0 0 0 0 0 0 +1.636 4.419 -1.721 0 0 0 0 0 0 0 +1.625 4.432 -1.724 0 0 0 0 0 0 0 +1.611 4.437 -1.724 0 0 0 0 0 0 0 +1.596 4.438 -1.723 0 0 0 0 0 0 0 +1.591 4.448 -1.726 0 0 0 0 0 0 0 +1.575 4.446 -1.723 0 0 0 0 0 0 0 +1.551 4.422 -1.711 0 0 0 0 0 0 0 +1.534 4.417 -1.707 0 0 0 0 0 0 0 +1.521 4.425 -1.708 0 0 0 0 0 0 0 +1.503 4.417 -1.703 0 0 0 0 0 0 0 +1.492 4.431 -1.707 0 0 0 0 0 0 0 +1.483 4.428 -1.704 0 0 0 0 0 0 0 +1.47 4.434 -1.705 0 0 0 0 0 0 0 +1.454 4.432 -1.702 0 0 0 0 0 0 0 +1.437 4.426 -1.698 0 0 0 0 0 0 0 +1.426 4.441 -1.702 0 0 0 0 0 0 0 +1.409 4.435 -1.698 0 0 0 0 0 0 0 +1.401 4.459 -1.706 0 0 0 0 0 0 0 +1.388 4.441 -1.698 0 0 0 0 0 0 0 +1.374 4.447 -1.699 0 0 0 0 0 0 0 +1.361 4.453 -1.699 0 0 0 0 0 0 0 +1.344 4.449 -1.696 0 0 0 0 0 0 0 +1.333 4.462 -1.699 0 0 0 0 0 0 0 +1.318 4.463 -1.698 0 0 0 0 0 0 0 +1.3 4.454 -1.693 0 0 0 0 0 0 0 +1.292 4.453 -1.691 0 0 0 0 0 0 0 +1.283 4.475 -1.699 0 0 0 0 0 0 0 +1.272 4.488 -1.702 0 0 0 0 0 0 0 +1.253 4.474 -1.695 0 0 0 0 0 0 0 +1.241 4.485 -1.698 0 0 0 0 0 0 0 +1.219 4.46 -1.686 0 0 0 0 0 0 0 +1.21 4.482 -1.694 0 0 0 0 0 0 0 +1.197 4.493 -1.696 0 0 0 0 0 0 0 +1.187 4.48 -1.691 0 0 0 0 0 0 0 +1.174 4.491 -1.694 0 0 0 0 0 0 0 +1.163 4.505 -1.698 0 0 0 0 0 0 0 +1.144 4.489 -1.69 0 0 0 0 0 0 0 +1.13 4.493 -1.69 0 0 0 0 0 0 0 +1.118 4.507 -1.694 0 0 0 0 0 0 0 +1.102 4.502 -1.691 0 0 0 0 0 0 0 +1.095 4.505 -1.691 0 0 0 0 0 0 0 +1.082 4.512 -1.693 0 0 0 0 0 0 0 +1.063 4.494 -1.684 0 0 0 0 0 0 0 +1.051 4.506 -1.688 0 0 0 0 0 0 0 +1.039 4.522 -1.693 0 0 0 0 0 0 0 +1.024 4.518 -1.69 0 0 0 0 0 0 0 +1.009 4.519 -1.689 0 0 0 0 0 0 0 +1.004 4.53 -1.693 0 0 0 0 0 0 0 +0.984 4.508 -1.683 0 0 0 0 0 0 0 +0.976 4.54 -1.694 0 0 0 0 0 0 0 +0.959 4.528 -1.688 0 0 0 0 0 0 0 +0.943 4.524 -1.686 0 0 0 0 0 0 0 +0.929 4.529 -1.686 0 0 0 0 0 0 0 +0.916 4.535 -1.688 0 0 0 0 0 0 0 +0.908 4.533 -1.686 0 0 0 0 0 0 0 +0.896 4.547 -1.691 0 0 0 0 0 0 0 +0.879 4.537 -1.686 0 0 0 0 0 0 0 +0.867 4.551 -1.69 0 0 0 0 0 0 0 +0.852 4.548 -1.688 0 0 0 0 0 0 0 +0.837 4.551 -1.688 0 0 0 0 0 0 0 +0.821 4.54 -1.683 0 0 0 0 0 0 0 +0.808 4.552 -1.686 0 0 0 0 0 0 0 +0.798 4.539 -1.68 0 0 0 0 0 0 0 +0.601 3.444 -1.246 0 0 0 0 0 0 0 +0.586 3.418 -1.235 0 0 0 0 0 0 0 +0.581 3.461 -1.251 0 0 0 0 0 0 0 +0.566 3.431 -1.239 0 0 0 0 0 0 0 +0.554 3.427 -1.237 0 0 0 0 0 0 0 +0.543 3.425 -1.235 0 0 0 0 0 0 0 +0.537 3.426 -1.235 0 0 0 0 0 0 0 +0.525 3.417 -1.231 0 0 0 0 0 0 0 +0.516 3.43 -1.235 0 0 0 0 0 0 0 +0.504 3.422 -1.232 0 0 0 0 0 0 0 +0.493 3.422 -1.231 0 0 0 0 0 0 0 +0.483 3.431 -1.234 0 0 0 0 0 0 0 +0.472 3.432 -1.234 0 0 0 0 0 0 0 +0.462 3.4 -1.221 0 0 0 0 0 0 0 +0.449 3.377 -1.211 0 0 0 0 0 0 0 +0.418 3.216 -1.147 0 0 0 0 0 0 0 +0.405 3.191 -1.137 0 0 0 0 0 0 0 +0.395 3.189 -1.136 0 0 0 0 0 0 0 +0.385 3.193 -1.137 0 0 0 0 0 0 0 +0.374 3.184 -1.133 0 0 0 0 0 0 0 +0.371 3.204 -1.141 0 0 0 0 0 0 0 +0.358 3.182 -1.131 0 0 0 0 0 0 0 +0.347 3.166 -1.125 0 0 0 0 0 0 0 +0.338 3.18 -1.13 0 0 0 0 0 0 0 +0.461 4.581 -1.679 0 0 0 0 0 0 0 +0.447 4.588 -1.681 0 0 0 0 0 0 0 +0.433 4.594 -1.683 0 0 0 0 0 0 0 +0.418 4.586 -1.679 0 0 0 0 0 0 0 +0.411 4.596 -1.683 0 0 0 0 0 0 0 +0.398 4.61 -1.688 0 0 0 0 0 0 0 +0.382 4.594 -1.681 0 0 0 0 0 0 0 +0.369 4.607 -1.686 0 0 0 0 0 0 0 +0.355 4.615 -1.688 0 0 0 0 0 0 0 +0.339 4.596 -1.68 0 0 0 0 0 0 0 +0.325 4.614 -1.687 0 0 0 0 0 0 0 +0.318 4.605 -1.683 0 0 0 0 0 0 0 +0.304 4.626 -1.691 0 0 0 0 0 0 0 +0.289 4.607 -1.683 0 0 0 0 0 0 0 +0.275 4.619 -1.688 0 0 0 0 0 0 0 +0.26 4.62 -1.688 0 0 0 0 0 0 0 +0.245 4.613 -1.685 0 0 0 0 0 0 0 +0.232 4.631 -1.691 0 0 0 0 0 0 0 +0.224 4.622 -1.688 0 0 0 0 0 0 0 +0.21 4.626 -1.689 0 0 0 0 0 0 0 +0.195 4.612 -1.683 0 0 0 0 0 0 0 +0.18 4.605 -1.68 0 0 0 0 0 0 0 +0.166 4.62 -1.686 0 0 0 0 0 0 0 +0.151 4.621 -1.686 0 0 0 0 0 0 0 +0.137 4.618 -1.685 0 0 0 0 0 0 0 +0.129 4.621 -1.686 0 0 0 0 0 0 0 +0.115 4.631 -1.69 0 0 0 0 0 0 0 +0.1 4.624 -1.687 0 0 0 0 0 0 0 +0.086 4.637 -1.692 0 0 0 0 0 0 0 +0.071 4.626 -1.688 0 0 0 0 0 0 0 +0.057 4.647 -1.696 0 0 0 0 0 0 0 +0.042 4.631 -1.689 0 0 0 0 0 0 0 +0.035 4.636 -1.691 0 0 0 0 0 0 0 +0.021 4.634 -1.691 0 0 0 0 0 0 0 +0.006 4.62 -1.685 0 0 0 0 0 0 0 +-0.008 4.625 -1.687 0 0 0 0 0 0 0 +-0.023 4.627 -1.688 0 0 0 0 0 0 0 +-0.038 4.636 -1.691 0 0 0 0 0 0 0 +-0.052 4.634 -1.691 0 0 0 0 0 0 0 +-0.067 4.623 -1.686 0 0 0 0 0 0 0 +-0.074 4.623 -1.686 0 0 0 0 0 0 0 +-0.088 4.613 -1.683 0 0 0 0 0 0 0 +-0.103 4.626 -1.688 0 0 0 0 0 0 0 +-0.118 4.627 -1.688 0 0 0 0 0 0 0 +-0.132 4.631 -1.69 0 0 0 0 0 0 0 +-0.146 4.612 -1.683 0 0 0 0 0 0 0 +-0.161 4.626 -1.688 0 0 0 0 0 0 0 +-0.168 4.624 -1.688 0 0 0 0 0 0 0 +-0.183 4.631 -1.691 0 0 0 0 0 0 0 +-0.198 4.638 -1.694 0 0 0 0 0 0 0 +-0.214 4.671 -1.707 0 0 0 0 0 0 0 +-0.23 4.681 -1.711 0 0 0 0 0 0 0 +-0.244 4.68 -1.711 0 0 0 0 0 0 0 +-0.259 4.676 -1.71 0 0 0 0 0 0 0 +-0.266 4.677 -1.71 0 0 0 0 0 0 0 +-0.282 4.693 -1.717 0 0 0 0 0 0 0 +-0.297 4.694 -1.718 0 0 0 0 0 0 0 +-0.312 4.695 -1.718 0 0 0 0 0 0 0 +-0.327 4.701 -1.721 0 0 0 0 0 0 0 +-0.341 4.687 -1.716 0 0 0 0 0 0 0 +-0.357 4.697 -1.72 0 0 0 0 0 0 0 +-0.372 4.702 -1.723 0 0 0 0 0 0 0 +-0.379 4.694 -1.72 0 0 0 0 0 0 0 +-0.394 4.702 -1.723 0 0 0 0 0 0 0 +-0.41 4.715 -1.729 0 0 0 0 0 0 0 +-0.425 4.71 -1.728 0 0 0 0 0 0 0 +-0.439 4.702 -1.725 0 0 0 0 0 0 0 +-0.454 4.7 -1.725 0 0 0 0 0 0 0 +-0.469 4.708 -1.728 0 0 0 0 0 0 0 +-0.476 4.704 -1.727 0 0 0 0 0 0 0 +-0.493 4.721 -1.734 0 0 0 0 0 0 0 +-0.507 4.713 -1.732 0 0 0 0 0 0 0 +-0.522 4.712 -1.732 0 0 0 0 0 0 0 +-0.536 4.706 -1.731 0 0 0 0 0 0 0 +-0.552 4.714 -1.734 0 0 0 0 0 0 0 +-0.568 4.72 -1.737 0 0 0 0 0 0 0 +-0.576 4.726 -1.74 0 0 0 0 0 0 0 +-0.592 4.728 -1.742 0 0 0 0 0 0 0 +-0.605 4.717 -1.738 0 0 0 0 0 0 0 +-0.622 4.726 -1.742 0 0 0 0 0 0 0 +-0.637 4.726 -1.743 0 0 0 0 0 0 0 +-0.653 4.731 -1.746 0 0 0 0 0 0 0 +-0.669 4.738 -1.75 0 0 0 0 0 0 0 +-0.676 4.734 -1.748 0 0 0 0 0 0 0 +-0.694 4.755 -1.758 0 0 0 0 0 0 0 +-0.709 4.753 -1.758 0 0 0 0 0 0 0 +-0.725 4.753 -1.758 0 0 0 0 0 0 0 +-0.738 4.743 -1.755 0 0 0 0 0 0 0 +-0.752 4.733 -1.752 0 0 0 0 0 0 0 +-0.771 4.757 -1.763 0 0 0 0 0 0 0 +-0.825 4.846 -1.8 0 0 0 0 0 0 0 +-0.836 4.816 -1.789 0 0 0 0 0 0 0 +-0.843 4.773 -1.773 0 0 0 0 0 0 0 +-0.856 4.756 -1.768 0 0 0 0 0 0 0 +-0.87 4.749 -1.766 0 0 0 0 0 0 0 +-0.874 4.73 -1.759 0 0 0 0 0 0 0 +-0.894 4.754 -1.77 0 0 0 0 0 0 0 +-0.907 4.744 -1.767 0 0 0 0 0 0 0 +-0.918 4.719 -1.758 0 0 0 0 0 0 0 +-0.935 4.729 -1.763 0 0 0 0 0 0 0 +-0.946 4.708 -1.756 0 0 0 0 0 0 0 +-0.962 4.71 -1.758 0 0 0 0 0 0 0 +-0.978 4.709 -1.759 0 0 0 0 0 0 0 +-0.982 4.695 -1.754 0 0 0 0 0 0 0 +-0.998 4.697 -1.756 0 0 0 0 0 0 0 +-1.013 4.694 -1.756 0 0 0 0 0 0 0 +-1.027 4.687 -1.755 0 0 0 0 0 0 0 +-1.04 4.679 -1.752 0 0 0 0 0 0 0 +-1.06 4.697 -1.761 0 0 0 0 0 0 0 +-1.068 4.665 -1.75 0 0 0 0 0 0 0 +-1.08 4.683 -1.758 0 0 0 0 0 0 0 +-1.094 4.676 -1.756 0 0 0 0 0 0 0 +-1.109 4.672 -1.756 0 0 0 0 0 0 0 +-1.122 4.663 -1.754 0 0 0 0 0 0 0 +-1.138 4.667 -1.757 0 0 0 0 0 0 0 +-1.149 4.649 -1.751 0 0 0 0 0 0 0 +-1.165 4.651 -1.753 0 0 0 0 0 0 0 +-1.174 4.654 -1.755 0 0 0 0 0 0 0 +-1.189 4.653 -1.756 0 0 0 0 0 0 0 +-1.2 4.634 -1.75 0 0 0 0 0 0 0 +-1.221 4.656 -1.76 0 0 0 0 0 0 0 +-1.232 4.638 -1.755 0 0 0 0 0 0 0 +-1.247 4.637 -1.756 0 0 0 0 0 0 0 +-1.264 4.639 -1.758 0 0 0 0 0 0 0 +-1.269 4.631 -1.756 0 0 0 0 0 0 0 +-1.284 4.627 -1.756 0 0 0 0 0 0 0 +-1.301 4.632 -1.76 0 0 0 0 0 0 0 +-1.31 4.61 -1.752 0 0 0 0 0 0 0 +-1.324 4.604 -1.752 0 0 0 0 0 0 0 +-1.343 4.614 -1.758 0 0 0 0 0 0 0 +-1.355 4.603 -1.755 0 0 0 0 0 0 0 +-1.368 4.593 -1.752 0 0 0 0 0 0 0 +-1.383 4.616 -1.763 0 0 0 0 0 0 0 +-1.389 4.585 -1.752 0 0 0 0 0 0 0 +-1.409 4.598 -1.759 0 0 0 0 0 0 0 +-1.423 4.59 -1.758 0 0 0 0 0 0 0 +-1.437 4.586 -1.758 0 0 0 0 0 0 0 +-1.451 4.581 -1.758 0 0 0 0 0 0 0 +-1.464 4.572 -1.755 0 0 0 0 0 0 0 +-1.473 4.576 -1.758 0 0 0 0 0 0 0 +-1.486 4.566 -1.756 0 0 0 0 0 0 0 +-1.505 4.574 -1.761 0 0 0 0 0 0 0 +-1.511 4.546 -1.752 0 0 0 0 0 0 0 +-1.53 4.556 -1.758 0 0 0 0 0 0 0 +-1.545 4.553 -1.758 0 0 0 0 0 0 0 +-1.558 4.542 -1.756 0 0 0 0 0 0 0 +-1.564 4.538 -1.755 0 0 0 0 0 0 0 +-1.58 4.537 -1.757 0 0 0 0 0 0 0 +-1.589 4.52 -1.752 0 0 0 0 0 0 0 +-1.607 4.525 -1.756 0 0 0 0 0 0 0 +-1.626 4.531 -1.76 0 0 0 0 0 0 0 +-1.636 4.515 -1.756 0 0 0 0 0 0 0 +-1.651 4.511 -1.757 0 0 0 0 0 0 0 +-1.656 4.504 -1.755 0 0 0 0 0 0 0 +-1.672 4.504 -1.757 0 0 0 0 0 0 0 +-1.686 4.498 -1.757 0 0 0 0 0 0 0 +-1.703 4.5 -1.76 0 0 0 0 0 0 0 +-1.712 4.481 -1.754 0 0 0 0 0 0 0 +-1.73 4.486 -1.758 0 0 0 0 0 0 0 +-1.752 4.501 -1.767 0 0 0 0 0 0 0 +-1.759 4.477 -1.759 0 0 0 0 0 0 0 +-1.764 4.469 -1.757 0 0 0 0 0 0 0 +-1.78 4.468 -1.759 0 0 0 0 0 0 0 +-1.792 4.457 -1.757 0 0 0 0 0 0 0 +-1.806 4.453 -1.758 0 0 0 0 0 0 0 +-1.823 4.455 -1.76 0 0 0 0 0 0 0 +-1.831 4.435 -1.755 0 0 0 0 0 0 0 +-1.855 4.452 -1.764 0 0 0 0 0 0 0 +-1.861 4.447 -1.763 0 0 0 0 0 0 0 +-1.87 4.429 -1.758 0 0 0 0 0 0 0 +-1.883 4.422 -1.758 0 0 0 0 0 0 0 +-1.901 4.424 -1.761 0 0 0 0 0 0 0 +-1.912 4.413 -1.759 0 0 0 0 0 0 0 +-1.926 4.407 -1.759 0 0 0 0 0 0 0 +-1.939 4.399 -1.758 0 0 0 0 0 0 0 +-1.945 4.393 -1.757 0 0 0 0 0 0 0 +-1.959 4.388 -1.758 0 0 0 0 0 0 0 +-1.977 4.391 -1.761 0 0 0 0 0 0 0 +-1.987 4.378 -1.758 0 0 0 0 0 0 0 +-1.998 4.365 -1.755 0 0 0 0 0 0 0 +-2.023 4.382 -1.765 0 0 0 0 0 0 0 +-2.027 4.355 -1.757 0 0 0 0 0 0 0 +-2.041 4.367 -1.763 0 0 0 0 0 0 0 +-2.053 4.358 -1.762 0 0 0 0 0 0 0 +-2.064 4.346 -1.76 0 0 0 0 0 0 0 +-2.074 4.331 -1.756 0 0 0 0 0 0 0 +-2.096 4.341 -1.763 0 0 0 0 0 0 0 +-2.103 4.321 -1.758 0 0 0 0 0 0 0 +-2.12 4.323 -1.761 0 0 0 0 0 0 0 +-2.132 4.313 -1.76 0 0 0 0 0 0 0 +-2.135 4.301 -1.756 0 0 0 0 0 0 0 +-2.159 4.315 -1.765 0 0 0 0 0 0 0 +-2.164 4.291 -1.758 0 0 0 0 0 0 0 +-2.175 4.281 -1.756 0 0 0 0 0 0 0 +-2.189 4.274 -1.756 0 0 0 0 0 0 0 +-2.198 4.259 -1.752 0 0 0 0 0 0 0 +-2.223 4.274 -1.762 0 0 0 0 0 0 0 +-2.238 4.287 -1.769 0 0 0 0 0 0 0 +-2.271 4.316 -1.785 0 0 0 0 0 0 0 +-2.273 4.287 -1.776 0 0 0 0 0 0 0 +-2.278 4.265 -1.769 0 0 0 0 0 0 0 +-2.289 4.253 -1.767 0 0 0 0 0 0 0 +-2.303 4.248 -1.768 0 0 0 0 0 0 0 +-2.303 4.216 -1.757 0 0 0 0 0 0 0 +-2.302 4.198 -1.75 0 0 0 0 0 0 0 +-2.33 4.218 -1.763 0 0 0 0 0 0 0 +-2.357 4.235 -1.773 0 0 0 0 0 0 0 +-2.361 4.211 -1.766 0 0 0 0 0 0 0 +-2.375 4.206 -1.767 0 0 0 0 0 0 0 +-2.388 4.196 -1.766 0 0 0 0 0 0 0 +-2.398 4.184 -1.764 0 0 0 0 0 0 0 +-2.393 4.161 -1.755 0 0 0 0 0 0 0 +-2.412 4.163 -1.76 0 0 0 0 0 0 0 +-2.431 4.165 -1.764 0 0 0 0 0 0 0 +-2.438 4.148 -1.76 0 0 0 0 0 0 0 +-2.447 4.134 -1.757 0 0 0 0 0 0 0 +-2.465 4.134 -1.76 0 0 0 0 0 0 0 +-2.471 4.115 -1.755 0 0 0 0 0 0 0 +-2.487 4.112 -1.758 0 0 0 0 0 0 0 +-2.491 4.104 -1.755 0 0 0 0 0 0 0 +-2.507 4.1 -1.758 0 0 0 0 0 0 0 +-2.523 4.099 -1.76 0 0 0 0 0 0 0 +-2.529 4.08 -1.755 0 0 0 0 0 0 0 +-2.548 4.081 -1.76 0 0 0 0 0 0 0 +-2.554 4.062 -1.755 0 0 0 0 0 0 0 +-2.576 4.068 -1.761 0 0 0 0 0 0 0 +-2.575 4.053 -1.756 0 0 0 0 0 0 0 +-2.596 4.058 -1.762 0 0 0 0 0 0 0 +-2.603 4.042 -1.758 0 0 0 0 0 0 0 +-2.613 4.029 -1.756 0 0 0 0 0 0 0 +-2.628 4.024 -1.758 0 0 0 0 0 0 0 +-2.644 4.02 -1.76 0 0 0 0 0 0 0 +-2.668 4.029 -1.768 0 0 0 0 0 0 0 +-2.671 4.007 -1.761 0 0 0 0 0 0 0 +-2.685 4.015 -1.767 0 0 0 0 0 0 0 +-2.691 3.995 -1.762 0 0 0 0 0 0 0 +-2.703 3.987 -1.762 0 0 0 0 0 0 0 +-2.721 3.986 -1.765 0 0 0 0 0 0 0 +-2.736 3.981 -1.767 0 0 0 0 0 0 0 +-2.747 3.971 -1.766 0 0 0 0 0 0 0 +-2.759 3.96 -1.765 0 0 0 0 0 0 0 +-2.764 3.954 -1.765 0 0 0 0 0 0 0 +-2.773 3.941 -1.763 0 0 0 0 0 0 0 +-2.783 3.929 -1.761 0 0 0 0 0 0 0 +-2.8 3.927 -1.764 0 0 0 0 0 0 0 +-2.809 3.913 -1.762 0 0 0 0 0 0 0 +-2.827 3.912 -1.765 0 0 0 0 0 0 0 +-2.833 3.896 -1.762 0 0 0 0 0 0 0 +-2.846 3.9 -1.766 0 0 0 0 0 0 0 +-2.854 3.885 -1.763 0 0 0 0 0 0 0 +-2.873 3.885 -1.768 0 0 0 0 0 0 0 +-2.878 3.867 -1.763 0 0 0 0 0 0 0 +-2.887 3.854 -1.761 0 0 0 0 0 0 0 +-2.905 3.852 -1.765 0 0 0 0 0 0 0 +-2.922 3.85 -1.768 0 0 0 0 0 0 0 +-2.927 3.844 -1.768 0 0 0 0 0 0 0 +-2.939 3.835 -1.768 0 0 0 0 0 0 0 +-2.954 3.829 -1.769 0 0 0 0 0 0 0 +-2.963 3.816 -1.768 0 0 0 0 0 0 0 +-2.972 3.803 -1.765 0 0 0 0 0 0 0 +-2.987 3.798 -1.768 0 0 0 0 0 0 0 +-2.999 3.788 -1.768 0 0 0 0 0 0 0 +-3.001 3.766 -1.761 0 0 0 0 0 0 0 +-3.015 3.771 -1.766 0 0 0 0 0 0 0 +-3.031 3.768 -1.769 0 0 0 0 0 0 0 +-3.036 3.749 -1.765 0 0 0 0 0 0 0 +-3.057 3.751 -1.771 0 0 0 0 0 0 0 +-3.064 3.736 -1.768 0 0 0 0 0 0 0 +-3.053 3.699 -1.754 0 0 0 0 0 0 0 +-3.511 3.388 -1.786 0 0 0 0 0 0 0 +-3.513 3.369 -1.781 0 0 0 0 0 0 0 +-3.54 3.373 -1.79 0 0 0 0 0 0 0 +-3.534 3.347 -1.781 0 0 0 0 0 0 0 +-3.539 3.33 -1.779 0 0 0 0 0 0 0 +-3.559 3.328 -1.784 0 0 0 0 0 0 0 +-3.549 3.309 -1.776 0 0 0 0 0 0 0 +-3.572 3.309 -1.782 0 0 0 0 0 0 0 +-3.563 3.28 -1.772 0 0 0 0 0 0 0 +-3.58 3.275 -1.776 0 0 0 0 0 0 0 +-3.589 3.263 -1.775 0 0 0 0 0 0 0 +-3.597 3.249 -1.773 0 0 0 0 0 0 0 +-3.611 3.241 -1.776 0 0 0 0 0 0 0 +-3.615 3.234 -1.775 0 0 0 0 0 0 0 +-3.622 3.22 -1.773 0 0 0 0 0 0 0 +-3.628 3.205 -1.771 0 0 0 0 0 0 0 +-3.648 3.203 -1.776 0 0 0 0 0 0 0 +-3.652 3.186 -1.773 0 0 0 0 0 0 0 +-3.667 3.178 -1.776 0 0 0 0 0 0 0 +-3.677 3.167 -1.776 0 0 0 0 0 0 0 +-3.676 3.156 -1.773 0 0 0 0 0 0 0 +-3.694 3.152 -1.777 0 0 0 0 0 0 0 +-3.707 3.143 -1.779 0 0 0 0 0 0 0 +-3.708 3.124 -1.774 0 0 0 0 0 0 0 +-3.724 3.117 -1.777 0 0 0 0 0 0 0 +-3.741 3.111 -1.781 0 0 0 0 0 0 0 +-3.751 3.099 -1.781 0 0 0 0 0 0 0 +-3.746 3.076 -1.773 0 0 0 0 0 0 0 +-3.761 3.078 -1.779 0 0 0 0 0 0 0 +-3.768 3.064 -1.777 0 0 0 0 0 0 0 +-3.776 3.051 -1.776 0 0 0 0 0 0 0 +-3.791 3.044 -1.779 0 0 0 0 0 0 0 +-3.804 3.034 -1.781 0 0 0 0 0 0 0 +-3.804 3.015 -1.776 0 0 0 0 0 0 0 +-3.818 3.007 -1.779 0 0 0 0 0 0 0 +-3.827 3.004 -1.781 0 0 0 0 0 0 0 +-3.837 2.992 -1.781 0 0 0 0 0 0 0 +-3.848 2.981 -1.781 0 0 0 0 0 0 0 +-3.852 2.966 -1.779 0 0 0 0 0 0 0 +-3.869 2.959 -1.783 0 0 0 0 0 0 0 +-3.878 2.947 -1.783 0 0 0 0 0 0 0 +-3.879 2.928 -1.779 0 0 0 0 0 0 0 +-3.891 2.928 -1.782 0 0 0 0 0 0 0 +-3.897 2.913 -1.781 0 0 0 0 0 0 0 +-3.902 2.898 -1.779 0 0 0 0 0 0 0 +-3.927 2.897 -1.787 0 0 0 0 0 0 0 +-3.929 2.88 -1.783 0 0 0 0 0 0 0 +-3.956 2.88 -1.792 0 0 0 0 0 0 0 +-3.973 2.873 -1.795 0 0 0 0 0 0 0 +-3.982 2.87 -1.797 0 0 0 0 0 0 0 +-3.989 2.857 -1.797 0 0 0 0 0 0 0 +-3.992 2.84 -1.794 0 0 0 0 0 0 0 +-4.009 2.833 -1.797 0 0 0 0 0 0 0 +-4.016 2.819 -1.797 0 0 0 0 0 0 0 +-4.02 2.803 -1.795 0 0 0 0 0 0 0 +-4.035 2.795 -1.797 0 0 0 0 0 0 0 +-4.016 2.763 -1.784 0 0 0 0 0 0 0 +-4.007 2.747 -1.778 0 0 0 0 0 0 0 +-4.017 2.736 -1.779 0 0 0 0 0 0 0 +-4.056 2.744 -1.793 0 0 0 0 0 0 0 +-4.093 2.75 -1.806 0 0 0 0 0 0 0 +-4.109 2.742 -1.81 0 0 0 0 0 0 0 +-4.112 2.725 -1.807 0 0 0 0 0 0 0 +-4.125 2.715 -1.809 0 0 0 0 0 0 0 +-4.121 2.704 -1.805 0 0 0 0 0 0 0 +-4.136 2.695 -1.808 0 0 0 0 0 0 0 +-4.133 2.675 -1.803 0 0 0 0 0 0 0 +-4.131 2.655 -1.798 0 0 0 0 0 0 0 +-4.139 2.642 -1.798 0 0 0 0 0 0 0 +-4.155 2.634 -1.802 0 0 0 0 0 0 0 +-4.138 2.605 -1.79 0 0 0 0 0 0 0 +-4.144 2.599 -1.791 0 0 0 0 0 0 0 +-4.141 2.579 -1.786 0 0 0 0 0 0 0 +-4.157 2.571 -1.789 0 0 0 0 0 0 0 +-4.163 2.557 -1.789 0 0 0 0 0 0 0 +-4.167 2.541 -1.787 0 0 0 0 0 0 0 +-4.178 2.53 -1.788 0 0 0 0 0 0 0 +-4.192 2.521 -1.791 0 0 0 0 0 0 0 +-4.194 2.513 -1.79 0 0 0 0 0 0 0 +-4.22 2.51 -1.798 0 0 0 0 0 0 0 +-4.217 2.49 -1.793 0 0 0 0 0 0 0 +-4.229 2.48 -1.795 0 0 0 0 0 0 0 +-4.237 2.467 -1.795 0 0 0 0 0 0 0 +-4.243 2.452 -1.795 0 0 0 0 0 0 0 +-4.243 2.434 -1.791 0 0 0 0 0 0 0 +-4.251 2.431 -1.793 0 0 0 0 0 0 0 +-4.261 2.418 -1.794 0 0 0 0 0 0 0 +-4.263 2.402 -1.792 0 0 0 0 0 0 0 +-4.261 2.383 -1.787 0 0 0 0 0 0 0 +-4.265 2.368 -1.786 0 0 0 0 0 0 0 +-4.269 2.353 -1.784 0 0 0 0 0 0 0 +-4.29 2.346 -1.79 0 0 0 0 0 0 0 +-4.29 2.338 -1.789 0 0 0 0 0 0 0 +-4.296 2.324 -1.788 0 0 0 0 0 0 0 +-4.302 2.309 -1.787 0 0 0 0 0 0 0 +-4.302 2.292 -1.784 0 0 0 0 0 0 0 +-4.314 2.281 -1.787 0 0 0 0 0 0 0 +-4.325 2.269 -1.788 0 0 0 0 0 0 0 +-4.334 2.257 -1.789 0 0 0 0 0 0 0 +-4.334 2.24 -1.786 0 0 0 0 0 0 0 +-4.336 2.232 -1.785 0 0 0 0 0 0 0 +-4.355 2.224 -1.79 0 0 0 0 0 0 0 +-4.358 2.209 -1.789 0 0 0 0 0 0 0 +-4.362 2.194 -1.787 0 0 0 0 0 0 0 +-4.374 2.182 -1.789 0 0 0 0 0 0 0 +-4.377 2.167 -1.788 0 0 0 0 0 0 0 +-4.37 2.147 -1.782 0 0 0 0 0 0 0 +-4.384 2.145 -1.787 0 0 0 0 0 0 0 +-4.396 2.133 -1.789 0 0 0 0 0 0 0 +-4.404 2.12 -1.789 0 0 0 0 0 0 0 +-4.411 2.106 -1.789 0 0 0 0 0 0 0 +-4.416 2.092 -1.789 0 0 0 0 0 0 0 +-4.417 2.076 -1.787 0 0 0 0 0 0 0 +-4.427 2.063 -1.788 0 0 0 0 0 0 0 +-4.434 2.058 -1.789 0 0 0 0 0 0 0 +-4.442 2.045 -1.79 0 0 0 0 0 0 0 +-4.44 2.027 -1.787 0 0 0 0 0 0 0 +-4.449 2.014 -1.788 0 0 0 0 0 0 0 +-4.461 2.003 -1.79 0 0 0 0 0 0 0 +-4.464 1.987 -1.789 0 0 0 0 0 0 0 +-4.473 1.975 -1.79 0 0 0 0 0 0 0 +-4.485 1.971 -1.794 0 0 0 0 0 0 0 +-4.491 1.957 -1.794 0 0 0 0 0 0 0 +-4.489 1.939 -1.79 0 0 0 0 0 0 0 +-4.503 1.929 -1.794 0 0 0 0 0 0 0 +-4.496 1.909 -1.788 0 0 0 0 0 0 0 +-4.495 1.892 -1.785 0 0 0 0 0 0 0 +-4.514 1.884 -1.791 0 0 0 0 0 0 0 +-4.495 1.867 -1.781 0 0 0 0 0 0 0 +-4.506 1.855 -1.784 0 0 0 0 0 0 0 +-4.505 1.838 -1.781 0 0 0 0 0 0 0 +-4.504 1.821 -1.778 0 0 0 0 0 0 0 +-4.505 -2.159 -1.832 0 0 0 0 0 0 0 +-4.512 -2.171 -1.836 0 0 0 0 0 0 0 +-4.47 -2.167 -1.821 0 0 0 0 0 0 0 +-4.475 -2.187 -1.826 0 0 0 0 0 0 0 +-4.455 -2.195 -1.82 0 0 0 0 0 0 0 +-4.443 -2.206 -1.818 0 0 0 0 0 0 0 +-4.428 -2.216 -1.814 0 0 0 0 0 0 0 +-4.432 -2.236 -1.819 0 0 0 0 0 0 0 +-4.412 -2.234 -1.812 0 0 0 0 0 0 0 +-4.41 -2.251 -1.814 0 0 0 0 0 0 0 +-4.406 -2.266 -1.816 0 0 0 0 0 0 0 +-4.391 -2.276 -1.812 0 0 0 0 0 0 0 +-4.38 -2.288 -1.811 0 0 0 0 0 0 0 +-4.381 -2.306 -1.814 0 0 0 0 0 0 0 +-4.368 -2.316 -1.811 0 0 0 0 0 0 0 +-4.354 -2.326 -1.808 0 0 0 0 0 0 0 +-4.357 -2.337 -1.811 0 0 0 0 0 0 0 +-4.338 -2.344 -1.806 0 0 0 0 0 0 0 +-4.342 -2.364 -1.811 0 0 0 0 0 0 0 +-4.326 -2.373 -1.808 0 0 0 0 0 0 0 +-4.32 -2.388 -1.808 0 0 0 0 0 0 0 +-4.313 -2.401 -1.808 0 0 0 0 0 0 0 +-4.307 -2.416 -1.809 0 0 0 0 0 0 0 +-4.313 -2.428 -1.813 0 0 0 0 0 0 0 +-4.294 -2.435 -1.808 0 0 0 0 0 0 0 +-4.278 -2.444 -1.805 0 0 0 0 0 0 0 +-4.28 -2.463 -1.809 0 0 0 0 0 0 0 +-4.264 -2.471 -1.805 0 0 0 0 0 0 0 +-4.249 -2.48 -1.802 0 0 0 0 0 0 0 +-4.25 -2.499 -1.806 0 0 0 0 0 0 0 +-4.258 -2.513 -1.811 0 0 0 0 0 0 0 +-4.239 -2.519 -1.806 0 0 0 0 0 0 0 +-4.231 -2.532 -1.806 0 0 0 0 0 0 0 +-4.221 -2.545 -1.805 0 0 0 0 0 0 0 +-4.219 -2.562 -1.808 0 0 0 0 0 0 0 +-4.202 -2.569 -1.804 0 0 0 0 0 0 0 +-4.198 -2.585 -1.806 0 0 0 0 0 0 0 +-4.204 -2.598 -1.811 0 0 0 0 0 0 0 +-4.185 -2.604 -1.805 0 0 0 0 0 0 0 +-4.181 -2.62 -1.808 0 0 0 0 0 0 0 +-4.162 -2.626 -1.803 0 0 0 0 0 0 0 +-4.154 -2.639 -1.803 0 0 0 0 0 0 0 +-4.142 -2.651 -1.801 0 0 0 0 0 0 0 +-4.151 -2.675 -1.809 0 0 0 0 0 0 0 +-4.139 -2.676 -1.805 0 0 0 0 0 0 0 +-4.127 -2.687 -1.804 0 0 0 0 0 0 0 +-4.122 -2.702 -1.805 0 0 0 0 0 0 0 +-4.115 -2.716 -1.806 0 0 0 0 0 0 0 +-4.104 -2.727 -1.805 0 0 0 0 0 0 0 +-4.096 -2.741 -1.805 0 0 0 0 0 0 0 +-4.079 -2.747 -1.801 0 0 0 0 0 0 0 +-4.08 -2.758 -1.804 0 0 0 0 0 0 0 +-4.067 -2.768 -1.802 0 0 0 0 0 0 0 +-4.071 -2.789 -1.808 0 0 0 0 0 0 0 +-4.062 -2.802 -1.808 0 0 0 0 0 0 0 +-4.05 -2.812 -1.806 0 0 0 0 0 0 0 +-4.035 -2.821 -1.803 0 0 0 0 0 0 0 +-4.029 -2.835 -1.805 0 0 0 0 0 0 0 +-4.025 -2.842 -1.805 0 0 0 0 0 0 0 +-4.019 -2.857 -1.806 0 0 0 0 0 0 0 +-4.004 -2.865 -1.803 0 0 0 0 0 0 0 +-4.004 -2.884 -1.808 0 0 0 0 0 0 0 +-3.993 -2.895 -1.807 0 0 0 0 0 0 0 +-3.983 -2.907 -1.806 0 0 0 0 0 0 0 +-3.978 -2.923 -1.808 0 0 0 0 0 0 0 +-3.963 -2.931 -1.805 0 0 0 0 0 0 0 +-3.958 -2.937 -1.805 0 0 0 0 0 0 0 +-3.95 -2.95 -1.806 0 0 0 0 0 0 0 +-3.937 -2.96 -1.804 0 0 0 0 0 0 0 +-3.935 -2.978 -1.808 0 0 0 0 0 0 0 +-3.928 -2.992 -1.809 0 0 0 0 0 0 0 +-3.919 -3.004 -1.809 0 0 0 0 0 0 0 +-3.898 -3.008 -1.803 0 0 0 0 0 0 0 +-3.889 -3.01 -1.801 0 0 0 0 0 0 0 +-3.888 -3.029 -1.805 0 0 0 0 0 0 0 +-3.887 -3.049 -1.81 0 0 0 0 0 0 0 +-3.873 -3.057 -1.808 0 0 0 0 0 0 0 +-3.861 -3.067 -1.806 0 0 0 0 0 0 0 +-3.847 -3.076 -1.804 0 0 0 0 0 0 0 +-3.84 -3.09 -1.805 0 0 0 0 0 0 0 +-3.838 -3.098 -1.807 0 0 0 0 0 0 0 +-3.824 -3.107 -1.805 0 0 0 0 0 0 0 +-3.826 -3.128 -1.811 0 0 0 0 0 0 0 +-3.803 -3.13 -1.804 0 0 0 0 0 0 0 +-3.8 -3.148 -1.808 0 0 0 0 0 0 0 +-3.79 -3.16 -1.808 0 0 0 0 0 0 0 +-3.777 -3.169 -1.806 0 0 0 0 0 0 0 +-3.768 -3.171 -1.804 0 0 0 0 0 0 0 +-3.767 -3.19 -1.808 0 0 0 0 0 0 0 +-3.748 -3.195 -1.804 0 0 0 0 0 0 0 +-3.734 -3.203 -1.802 0 0 0 0 0 0 0 +-3.736 -3.226 -1.808 0 0 0 0 0 0 0 +-3.726 -3.238 -1.808 0 0 0 0 0 0 0 +-3.705 -3.239 -1.803 0 0 0 0 0 0 0 +-3.714 -3.258 -1.81 0 0 0 0 0 0 0 +-3.704 -3.269 -1.81 0 0 0 0 0 0 0 +-3.684 -3.272 -1.805 0 0 0 0 0 0 0 +-3.691 -3.3 -1.814 0 0 0 0 0 0 0 +-3.668 -3.3 -1.808 0 0 0 0 0 0 0 +-3.661 -3.314 -1.809 0 0 0 0 0 0 0 +-3.649 -3.324 -1.808 0 0 0 0 0 0 0 +-3.646 -3.333 -1.81 0 0 0 0 0 0 0 +-3.633 -3.342 -1.808 0 0 0 0 0 0 0 +-3.627 -3.357 -1.811 0 0 0 0 0 0 0 +-3.607 -3.359 -1.805 0 0 0 0 0 0 0 +-3.606 -3.38 -1.811 0 0 0 0 0 0 0 +-3.592 -3.388 -1.809 0 0 0 0 0 0 0 +-3.584 -3.402 -1.811 0 0 0 0 0 0 0 +-3.586 -3.414 -1.814 0 0 0 0 0 0 0 +-3.583 -3.433 -1.819 0 0 0 0 0 0 0 +-3.571 -3.443 -1.818 0 0 0 0 0 0 0 +-3.556 -3.45 -1.816 0 0 0 0 0 0 0 +-3.553 -3.469 -1.82 0 0 0 0 0 0 0 +-3.544 -3.482 -1.821 0 0 0 0 0 0 0 +-3.509 -3.469 -1.808 0 0 0 0 0 0 0 +-3.511 -3.494 -1.815 0 0 0 0 0 0 0 +-3.485 -3.478 -1.803 0 0 0 0 0 0 0 +-3.487 -3.502 -1.811 0 0 0 0 0 0 0 +-3.493 -3.53 -1.82 0 0 0 0 0 0 0 +-3.467 -3.527 -1.812 0 0 0 0 0 0 0 +-3.47 -3.552 -1.82 0 0 0 0 0 0 0 +-3.477 -3.582 -1.83 0 0 0 0 0 0 0 +-3.465 -3.591 -1.829 0 0 0 0 0 0 0 +-3.457 -3.594 -1.828 0 0 0 0 0 0 0 +-3.432 -3.591 -1.821 0 0 0 0 0 0 0 +-3.417 -3.598 -1.819 0 0 0 0 0 0 0 +-3.396 -3.598 -1.813 0 0 0 0 0 0 0 +-3.387 -3.611 -1.814 0 0 0 0 0 0 0 +-3.373 -3.619 -1.813 0 0 0 0 0 0 0 +-3.364 -3.633 -1.814 0 0 0 0 0 0 0 +-3.347 -3.626 -1.808 0 0 0 0 0 0 0 +-3.333 -3.633 -1.806 0 0 0 0 0 0 0 +-3.329 -3.652 -1.811 0 0 0 0 0 0 0 +-3.313 -3.657 -1.808 0 0 0 0 0 0 0 +-3.294 -3.659 -1.803 0 0 0 0 0 0 0 +-3.294 -3.682 -1.81 0 0 0 0 0 0 0 +-3.275 -3.684 -1.805 0 0 0 0 0 0 0 +-3.27 -3.69 -1.806 0 0 0 0 0 0 0 +-3.255 -3.696 -1.804 0 0 0 0 0 0 0 +-3.249 -3.714 -1.808 0 0 0 0 0 0 0 +-3.228 -3.712 -1.802 0 0 0 0 0 0 0 +-3.225 -3.733 -1.807 0 0 0 0 0 0 0 +-3.206 -3.734 -1.803 0 0 0 0 0 0 0 +-3.19 -3.74 -1.8 0 0 0 0 0 0 0 +-3.178 -3.738 -1.797 0 0 0 0 0 0 0 +-3.171 -3.753 -1.8 0 0 0 0 0 0 0 +-3.156 -3.759 -1.797 0 0 0 0 0 0 0 +-3.144 -3.769 -1.797 0 0 0 0 0 0 0 +-3.121 -3.764 -1.79 0 0 0 0 0 0 0 +-3.109 -3.774 -1.79 0 0 0 0 0 0 0 +-2.74 -4.149 -1.822 0 0 0 0 0 0 0 +-2.718 -4.129 -1.811 0 0 0 0 0 0 0 +-2.695 -4.122 -1.804 0 0 0 0 0 0 0 +-2.68 -4.128 -1.803 0 0 0 0 0 0 0 +-2.659 -4.123 -1.797 0 0 0 0 0 0 0 +-2.645 -4.13 -1.796 0 0 0 0 0 0 0 +-2.633 -4.14 -1.797 0 0 0 0 0 0 0 +-2.606 -4.126 -1.787 0 0 0 0 0 0 0 +-2.604 -4.137 -1.789 0 0 0 0 0 0 0 +-2.583 -4.132 -1.784 0 0 0 0 0 0 0 +-2.579 -4.154 -1.79 0 0 0 0 0 0 0 +-2.552 -4.14 -1.78 0 0 0 0 0 0 0 +-2.55 -4.166 -1.788 0 0 0 0 0 0 0 +-2.534 -4.169 -1.786 0 0 0 0 0 0 0 +-2.521 -4.179 -1.787 0 0 0 0 0 0 0 +-2.512 -4.193 -1.789 0 0 0 0 0 0 0 +-2.501 -4.189 -1.786 0 0 0 0 0 0 0 +-2.488 -4.197 -1.786 0 0 0 0 0 0 0 +-2.475 -4.206 -1.787 0 0 0 0 0 0 0 +-2.459 -4.209 -1.784 0 0 0 0 0 0 0 +-2.454 -4.23 -1.79 0 0 0 0 0 0 0 +-2.433 -4.224 -1.784 0 0 0 0 0 0 0 +-2.422 -4.237 -1.787 0 0 0 0 0 0 0 +-2.424 -4.255 -1.793 0 0 0 0 0 0 0 +-2.403 -4.25 -1.787 0 0 0 0 0 0 0 +-2.388 -4.254 -1.786 0 0 0 0 0 0 0 +-2.377 -4.266 -1.788 0 0 0 0 0 0 0 +-2.363 -4.272 -1.787 0 0 0 0 0 0 0 +-2.351 -4.281 -1.788 0 0 0 0 0 0 0 +-2.344 -4.302 -1.794 0 0 0 0 0 0 0 +-2.325 -4.282 -1.784 0 0 0 0 0 0 0 +-2.318 -4.301 -1.789 0 0 0 0 0 0 0 +-2.302 -4.304 -1.787 0 0 0 0 0 0 0 +-2.286 -4.307 -1.785 0 0 0 0 0 0 0 +-2.279 -4.326 -1.79 0 0 0 0 0 0 0 +-2.268 -4.338 -1.792 0 0 0 0 0 0 0 +-2.258 -4.352 -1.795 0 0 0 0 0 0 0 +-2.244 -4.342 -1.789 0 0 0 0 0 0 0 +-2.236 -4.361 -1.795 0 0 0 0 0 0 0 +-2.217 -4.358 -1.79 0 0 0 0 0 0 0 +-2.202 -4.362 -1.789 0 0 0 0 0 0 0 +-2.201 -4.394 -1.8 0 0 0 0 0 0 0 +-2.182 -4.39 -1.795 0 0 0 0 0 0 0 +-2.168 -4.397 -1.795 0 0 0 0 0 0 0 +-2.179 -4.438 -1.811 0 0 0 0 0 0 0 +-2.171 -4.456 -1.816 0 0 0 0 0 0 0 +-2.154 -4.456 -1.813 0 0 0 0 0 0 0 +-2.135 -4.453 -1.809 0 0 0 0 0 0 0 +-2.095 -4.404 -1.785 0 0 0 0 0 0 0 +-2.071 -4.388 -1.776 0 0 0 0 0 0 0 +-2.067 -4.417 -1.785 0 0 0 0 0 0 0 +-2.069 -4.44 -1.794 0 0 0 0 0 0 0 +-2.054 -4.444 -1.792 0 0 0 0 0 0 0 +-2.037 -4.443 -1.789 0 0 0 0 0 0 0 +-2.02 -4.443 -1.787 0 0 0 0 0 0 0 +-2.012 -4.463 -1.792 0 0 0 0 0 0 0 +-1.988 -4.447 -1.783 0 0 0 0 0 0 0 +-1.967 -4.436 -1.776 0 0 0 0 0 0 0 +-1.959 -4.437 -1.775 0 0 0 0 0 0 0 +-1.944 -4.44 -1.773 0 0 0 0 0 0 0 +-1.927 -4.439 -1.771 0 0 0 0 0 0 0 +-1.909 -4.437 -1.767 0 0 0 0 0 0 0 +-1.901 -4.457 -1.773 0 0 0 0 0 0 0 +-1.878 -4.442 -1.764 0 0 0 0 0 0 0 +-1.868 -4.456 -1.768 0 0 0 0 0 0 0 +-1.857 -4.449 -1.763 0 0 0 0 0 0 0 +-1.84 -4.448 -1.76 0 0 0 0 0 0 0 +-1.831 -4.466 -1.765 0 0 0 0 0 0 0 +-1.815 -4.468 -1.764 0 0 0 0 0 0 0 +-1.8 -4.47 -1.763 0 0 0 0 0 0 0 +-1.784 -4.471 -1.76 0 0 0 0 0 0 0 +-1.768 -4.473 -1.759 0 0 0 0 0 0 0 +-1.762 -4.477 -1.76 0 0 0 0 0 0 0 +-1.747 -4.481 -1.759 0 0 0 0 0 0 0 +-1.735 -4.49 -1.76 0 0 0 0 0 0 0 +-1.715 -4.481 -1.755 0 0 0 0 0 0 0 +-1.7 -4.483 -1.753 0 0 0 0 0 0 0 +-1.688 -4.496 -1.756 0 0 0 0 0 0 0 +-1.678 -4.511 -1.76 0 0 0 0 0 0 0 +-1.665 -4.496 -1.753 0 0 0 0 0 0 0 +-1.654 -4.512 -1.758 0 0 0 0 0 0 0 +-1.636 -4.505 -1.752 0 0 0 0 0 0 0 +-1.618 -4.501 -1.749 0 0 0 0 0 0 0 +-1.606 -4.512 -1.751 0 0 0 0 0 0 0 +-1.597 -4.533 -1.758 0 0 0 0 0 0 0 +-1.578 -4.524 -1.752 0 0 0 0 0 0 0 +-1.568 -4.517 -1.748 0 0 0 0 0 0 0 +-1.553 -4.52 -1.747 0 0 0 0 0 0 0 +-1.54 -4.529 -1.749 0 0 0 0 0 0 0 +-1.527 -4.535 -1.75 0 0 0 0 0 0 0 +-1.51 -4.531 -1.746 0 0 0 0 0 0 0 +-1.499 -4.547 -1.75 0 0 0 0 0 0 0 +-1.48 -4.539 -1.745 0 0 0 0 0 0 0 +-1.475 -4.546 -1.747 0 0 0 0 0 0 0 +-1.46 -4.548 -1.746 0 0 0 0 0 0 0 +-1.445 -4.55 -1.745 0 0 0 0 0 0 0 +-1.429 -4.551 -1.744 0 0 0 0 0 0 0 +-1.415 -4.556 -1.744 0 0 0 0 0 0 0 +-1.401 -4.56 -1.744 0 0 0 0 0 0 0 +-1.385 -4.561 -1.742 0 0 0 0 0 0 0 +-1.368 -4.555 -1.738 0 0 0 0 0 0 0 +-1.364 -4.567 -1.742 0 0 0 0 0 0 0 +-1.346 -4.561 -1.738 0 0 0 0 0 0 0 +-1.33 -4.56 -1.736 0 0 0 0 0 0 0 +-1.321 -4.58 -1.742 0 0 0 0 0 0 0 +-1.304 -4.575 -1.739 0 0 0 0 0 0 0 +-1.29 -4.581 -1.739 0 0 0 0 0 0 0 +-1.272 -4.573 -1.734 0 0 0 0 0 0 0 +-1.269 -4.589 -1.74 0 0 0 0 0 0 0 +-1.252 -4.586 -1.737 0 0 0 0 0 0 0 +-1.237 -4.586 -1.736 0 0 0 0 0 0 0 +-1.222 -4.586 -1.734 0 0 0 0 0 0 0 +-1.211 -4.605 -1.74 0 0 0 0 0 0 0 +-1.192 -4.59 -1.733 0 0 0 0 0 0 0 +-1.184 -4.59 -1.732 0 0 0 0 0 0 0 +-1.173 -4.607 -1.737 0 0 0 0 0 0 0 +-1.159 -4.612 -1.738 0 0 0 0 0 0 0 +-1.14 -4.598 -1.731 0 0 0 0 0 0 0 +-1.127 -4.607 -1.733 0 0 0 0 0 0 0 +-1.111 -4.605 -1.731 0 0 0 0 0 0 0 +-1.097 -4.608 -1.731 0 0 0 0 0 0 0 +-1.084 -4.621 -1.734 0 0 0 0 0 0 0 +-1.076 -4.617 -1.732 0 0 0 0 0 0 0 +-1.063 -4.626 -1.734 0 0 0 0 0 0 0 +-1.048 -4.631 -1.735 0 0 0 0 0 0 0 +-1.033 -4.631 -1.734 0 0 0 0 0 0 0 +-1.02 -4.643 -1.737 0 0 0 0 0 0 0 +-1.005 -4.642 -1.736 0 0 0 0 0 0 0 +-0.988 -4.633 -1.731 0 0 0 0 0 0 0 +-0.984 -4.651 -1.737 0 0 0 0 0 0 0 +-0.97 -4.656 -1.738 0 0 0 0 0 0 0 +-0.954 -4.653 -1.736 0 0 0 0 0 0 0 +-0.94 -4.662 -1.738 0 0 0 0 0 0 0 +-0.925 -4.659 -1.736 0 0 0 0 0 0 0 +-0.91 -4.66 -1.735 0 0 0 0 0 0 0 +-0.895 -4.661 -1.734 0 0 0 0 0 0 0 +-0.888 -4.664 -1.735 0 0 0 0 0 0 0 +-0.873 -4.667 -1.735 0 0 0 0 0 0 0 +-0.859 -4.675 -1.737 0 0 0 0 0 0 0 +-0.844 -4.673 -1.735 0 0 0 0 0 0 0 +-0.83 -4.681 -1.737 0 0 0 0 0 0 0 +-0.813 -4.672 -1.733 0 0 0 0 0 0 0 +-0.8 -4.68 -1.735 0 0 0 0 0 0 0 +-0.792 -4.682 -1.735 0 0 0 0 0 0 0 +-0.775 -4.669 -1.729 0 0 0 0 0 0 0 +-0.761 -4.672 -1.729 0 0 0 0 0 0 0 +-0.747 -4.678 -1.731 0 0 0 0 0 0 0 +-0.731 -4.673 -1.728 0 0 0 0 0 0 0 +-0.718 -4.686 -1.732 0 0 0 0 0 0 0 +-0.703 -4.69 -1.733 0 0 0 0 0 0 0 +-0.696 -4.695 -1.734 0 0 0 0 0 0 0 +-0.681 -4.693 -1.733 0 0 0 0 0 0 0 +-0.668 -4.705 -1.736 0 0 0 0 0 0 0 +-0.652 -4.701 -1.734 0 0 0 0 0 0 0 +-0.637 -4.703 -1.734 0 0 0 0 0 0 0 +-0.623 -4.713 -1.737 0 0 0 0 0 0 0 +-0.607 -4.703 -1.733 0 0 0 0 0 0 0 +-0.601 -4.71 -1.735 0 0 0 0 0 0 0 +-0.586 -4.712 -1.735 0 0 0 0 0 0 0 +-0.572 -4.723 -1.739 0 0 0 0 0 0 0 +-0.556 -4.717 -1.736 0 0 0 0 0 0 0 +-0.542 -4.723 -1.737 0 0 0 0 0 0 0 +-0.526 -4.711 -1.732 0 0 0 0 0 0 0 +-0.512 -4.722 -1.736 0 0 0 0 0 0 0 +-0.505 -4.732 -1.739 0 0 0 0 0 0 0 +-0.49 -4.725 -1.736 0 0 0 0 0 0 0 +-0.475 -4.724 -1.735 0 0 0 0 0 0 0 +-0.461 -4.735 -1.739 0 0 0 0 0 0 0 +-0.445 -4.723 -1.734 0 0 0 0 0 0 0 +-0.432 -4.747 -1.742 0 0 0 0 0 0 0 +-0.415 -4.734 -1.736 0 0 0 0 0 0 0 +-0.409 -4.74 -1.739 0 0 0 0 0 0 0 +-0.394 -4.75 -1.742 0 0 0 0 0 0 0 +-0.378 -4.731 -1.734 0 0 0 0 0 0 0 +-0.364 -4.749 -1.741 0 0 0 0 0 0 0 +-0.349 -4.739 -1.736 0 0 0 0 0 0 0 +-0.334 -4.744 -1.738 0 0 0 0 0 0 0 +-0.319 -4.739 -1.736 0 0 0 0 0 0 0 +-0.312 -4.751 -1.74 0 0 0 0 0 0 0 +-0.297 -4.757 -1.742 0 0 0 0 0 0 0 +-0.281 -4.74 -1.735 0 0 0 0 0 0 0 +-0.267 -4.748 -1.738 0 0 0 0 0 0 0 +-0.252 -4.751 -1.739 0 0 0 0 0 0 0 +-0.237 -4.75 -1.738 0 0 0 0 0 0 0 +-0.222 -4.756 -1.74 0 0 0 0 0 0 0 +-0.215 -4.753 -1.739 0 0 0 0 0 0 0 +-0.199 -4.746 -1.736 0 0 0 0 0 0 0 +-0.185 -4.761 -1.742 0 0 0 0 0 0 0 +-0.17 -4.756 -1.739 0 0 0 0 0 0 0 +-0.155 -4.749 -1.736 0 0 0 0 0 0 0 +-0.14 -4.753 -1.738 0 0 0 0 0 0 0 +-0.125 -4.761 -1.741 0 0 0 0 0 0 0 +-0.118 -4.754 -1.738 0 0 0 0 0 0 0 +-0.103 -4.758 -1.739 0 0 0 0 0 0 0 +-0.088 -4.757 -1.739 0 0 0 0 0 0 0 +-0.073 -4.761 -1.74 0 0 0 0 0 0 0 +-0.058 -4.776 -1.746 0 0 0 0 0 0 0 +-0.043 -4.761 -1.74 0 0 0 0 0 0 0 +-0.028 -4.763 -1.741 0 0 0 0 0 0 0 +-0.02 -4.77 -1.744 0 0 0 0 0 0 0 +-0.005 -4.767 -1.742 0 0 0 0 0 0 0 +0.01 -4.765 -1.742 0 0 0 0 0 0 0 +0.025 -4.769 -1.743 0 0 0 0 0 0 0 +0.039 -4.763 -1.741 0 0 0 0 0 0 0 +0.055 -4.779 -1.747 0 0 0 0 0 0 0 +0.07 -4.77 -1.744 0 0 0 0 0 0 0 +0.077 -4.77 -1.744 0 0 0 0 0 0 0 +0.092 -4.788 -1.751 0 0 0 0 0 0 0 +0.107 -4.771 -1.744 0 0 0 0 0 0 0 +0.122 -4.776 -1.747 0 0 0 0 0 0 0 +0.137 -4.776 -1.747 0 0 0 0 0 0 0 +0.152 -4.77 -1.744 0 0 0 0 0 0 0 +0.167 -4.781 -1.749 0 0 0 0 0 0 0 +0.174 -4.765 -1.743 0 0 0 0 0 0 0 +0.19 -4.783 -1.75 0 0 0 0 0 0 0 +0.204 -4.766 -1.744 0 0 0 0 0 0 0 +0.219 -4.758 -1.741 0 0 0 0 0 0 0 +0.235 -4.783 -1.751 0 0 0 0 0 0 0 +0.25 -4.777 -1.749 0 0 0 0 0 0 0 +0.264 -4.763 -1.744 0 0 0 0 0 0 0 +0.279 -4.76 -1.743 0 0 0 0 0 0 0 +0.287 -4.773 -1.748 0 0 0 0 0 0 0 +0.303 -4.781 -1.752 0 0 0 0 0 0 0 +0.318 -4.779 -1.751 0 0 0 0 0 0 0 +0.332 -4.772 -1.749 0 0 0 0 0 0 0 +0.347 -4.762 -1.745 0 0 0 0 0 0 0 +0.363 -4.775 -1.751 0 0 0 0 0 0 0 +0.379 -4.783 -1.755 0 0 0 0 0 0 0 +0.385 -4.774 -1.751 0 0 0 0 0 0 0 +0.401 -4.78 -1.754 0 0 0 0 0 0 0 +0.415 -4.769 -1.75 0 0 0 0 0 0 0 +0.431 -4.772 -1.752 0 0 0 0 0 0 0 +0.446 -4.774 -1.753 0 0 0 0 0 0 0 +0.46 -4.763 -1.75 0 0 0 0 0 0 0 +0.467 -4.762 -1.75 0 0 0 0 0 0 0 +0.483 -4.767 -1.752 0 0 0 0 0 0 0 +0.5 -4.784 -1.759 0 0 0 0 0 0 0 +0.513 -4.763 -1.752 0 0 0 0 0 0 0 +0.528 -4.764 -1.752 0 0 0 0 0 0 0 +0.544 -4.773 -1.757 0 0 0 0 0 0 0 +0.559 -4.764 -1.754 0 0 0 0 0 0 0 +0.576 -4.784 -1.763 0 0 0 0 0 0 0 +0.581 -4.761 -1.754 0 0 0 0 0 0 0 +0.597 -4.77 -1.758 0 0 0 0 0 0 0 +0.611 -4.759 -1.755 0 0 0 0 0 0 0 +0.627 -4.761 -1.756 0 0 0 0 0 0 0 +0.644 -4.778 -1.763 0 0 0 0 0 0 0 +0.657 -4.763 -1.758 0 0 0 0 0 0 0 +0.673 -4.768 -1.761 0 0 0 0 0 0 0 +0.682 -4.772 -1.763 0 0 0 0 0 0 0 +0.695 -4.757 -1.758 0 0 0 0 0 0 0 +0.71 -4.757 -1.759 0 0 0 0 0 0 0 +0.726 -4.76 -1.761 0 0 0 0 0 0 0 +0.745 -4.784 -1.771 0 0 0 0 0 0 0 +0.755 -4.75 -1.759 0 0 0 0 0 0 0 +0.769 -4.746 -1.758 0 0 0 0 0 0 0 +0.776 -4.741 -1.757 0 0 0 0 0 0 0 +0.792 -4.746 -1.76 0 0 0 0 0 0 0 +0.807 -4.741 -1.759 0 0 0 0 0 0 0 +0.97 -4.747 -1.773 0 0 0 0 0 0 0 +0.976 -4.74 -1.771 0 0 0 0 0 0 0 +0.989 -4.726 -1.766 0 0 0 0 0 0 0 +2.77 -4.07 -1.803 0 0 0 0 0 0 0 +2.781 -4.06 -1.803 0 0 0 0 0 0 0 +2.788 -4.042 -1.798 0 0 0 0 0 0 0 +2.796 -4.027 -1.795 0 0 0 0 0 0 0 +2.822 -4.037 -1.804 0 0 0 0 0 0 0 +2.804 -3.999 -1.788 0 0 0 0 0 0 0 +2.811 -3.982 -1.784 0 0 0 0 0 0 0 +2.832 -3.984 -1.789 0 0 0 0 0 0 0 +2.83 -3.956 -1.78 0 0 0 0 0 0 0 +2.85 -3.957 -1.785 0 0 0 0 0 0 0 +2.864 -3.95 -1.786 0 0 0 0 0 0 0 +2.876 -3.941 -1.786 0 0 0 0 0 0 0 +2.883 -3.924 -1.782 0 0 0 0 0 0 0 +2.899 -3.933 -1.789 0 0 0 0 0 0 0 +2.907 -3.918 -1.786 0 0 0 0 0 0 0 +2.919 -3.909 -1.786 0 0 0 0 0 0 0 +2.938 -3.909 -1.79 0 0 0 0 0 0 0 +2.949 -3.898 -1.789 0 0 0 0 0 0 0 +2.951 -3.875 -1.783 0 0 0 0 0 0 0 +2.971 -3.876 -1.788 0 0 0 0 0 0 0 +2.974 -3.867 -1.786 0 0 0 0 0 0 0 +2.988 -3.861 -1.787 0 0 0 0 0 0 0 +3.018 -3.873 -1.798 0 0 0 0 0 0 0 +3.015 -3.845 -1.789 0 0 0 0 0 0 0 +3.031 -3.84 -1.791 0 0 0 0 0 0 0 +3.034 -3.82 -1.786 0 0 0 0 0 0 0 +3.046 -3.822 -1.789 0 0 0 0 0 0 0 +3.059 -3.814 -1.79 0 0 0 0 0 0 0 +3.081 -3.816 -1.796 0 0 0 0 0 0 0 +3.082 -3.794 -1.789 0 0 0 0 0 0 0 +3.096 -3.787 -1.791 0 0 0 0 0 0 0 +3.104 -3.771 -1.788 0 0 0 0 0 0 0 +3.115 -3.762 -1.788 0 0 0 0 0 0 0 +3.128 -3.765 -1.792 0 0 0 0 0 0 0 +3.138 -3.752 -1.791 0 0 0 0 0 0 0 +3.147 -3.74 -1.789 0 0 0 0 0 0 0 +3.164 -3.736 -1.792 0 0 0 0 0 0 0 +3.171 -3.72 -1.789 0 0 0 0 0 0 0 +3.179 -3.706 -1.787 0 0 0 0 0 0 0 +3.195 -3.701 -1.79 0 0 0 0 0 0 0 +3.196 -3.691 -1.787 0 0 0 0 0 0 0 +3.213 -3.686 -1.79 0 0 0 0 0 0 0 +3.216 -3.666 -1.785 0 0 0 0 0 0 0 +3.231 -3.66 -1.787 0 0 0 0 0 0 0 +3.238 -3.646 -1.785 0 0 0 0 0 0 0 +3.246 -3.632 -1.783 0 0 0 0 0 0 0 +3.265 -3.63 -1.787 0 0 0 0 0 0 0 +3.276 -3.62 -1.787 0 0 0 0 0 0 0 +3.277 -3.609 -1.784 0 0 0 0 0 0 0 +3.291 -3.601 -1.786 0 0 0 0 0 0 0 +3.309 -3.598 -1.789 0 0 0 0 0 0 0 +3.305 -3.571 -1.781 0 0 0 0 0 0 0 +3.325 -3.57 -1.786 0 0 0 0 0 0 0 +3.333 -3.557 -1.784 0 0 0 0 0 0 0 +3.347 -3.549 -1.786 0 0 0 0 0 0 0 +3.353 -3.544 -1.786 0 0 0 0 0 0 0 +3.366 -3.536 -1.787 0 0 0 0 0 0 0 +3.375 -3.523 -1.786 0 0 0 0 0 0 0 +3.391 -3.517 -1.789 0 0 0 0 0 0 0 +3.394 -3.499 -1.784 0 0 0 0 0 0 0 +3.401 -3.484 -1.782 0 0 0 0 0 0 0 +3.418 -3.479 -1.785 0 0 0 0 0 0 0 +3.428 -3.479 -1.788 0 0 0 0 0 0 0 +3.435 -3.464 -1.786 0 0 0 0 0 0 0 +3.442 -3.449 -1.784 0 0 0 0 0 0 0 +3.46 -3.445 -1.787 0 0 0 0 0 0 0 +3.464 -3.427 -1.784 0 0 0 0 0 0 0 +3.476 -3.418 -1.784 0 0 0 0 0 0 0 +3.48 -3.411 -1.784 0 0 0 0 0 0 0 +3.492 -3.401 -1.784 0 0 0 0 0 0 0 +3.496 -3.384 -1.781 0 0 0 0 0 0 0 +3.513 -3.379 -1.784 0 0 0 0 0 0 0 +3.524 -3.368 -1.784 0 0 0 0 0 0 0 +3.533 -3.356 -1.784 0 0 0 0 0 0 0 +3.545 -3.346 -1.784 0 0 0 0 0 0 0 +3.55 -3.33 -1.781 0 0 0 0 0 0 0 +3.55 -3.319 -1.779 0 0 0 0 0 0 0 +3.56 -3.308 -1.779 0 0 0 0 0 0 0 +3.568 -3.294 -1.777 0 0 0 0 0 0 0 +3.579 -3.284 -1.778 0 0 0 0 0 0 0 +3.599 -3.282 -1.783 0 0 0 0 0 0 0 +3.615 -3.276 -1.786 0 0 0 0 0 0 0 +3.616 -3.256 -1.781 0 0 0 0 0 0 0 +3.629 -3.257 -1.785 0 0 0 0 0 0 0 +3.626 -3.234 -1.778 0 0 0 0 0 0 0 +3.64 -3.226 -1.78 0 0 0 0 0 0 0 +3.66 -3.223 -1.785 0 0 0 0 0 0 0 +3.664 -3.207 -1.782 0 0 0 0 0 0 0 +3.666 -3.188 -1.778 0 0 0 0 0 0 0 +3.673 -3.174 -1.776 0 0 0 0 0 0 0 +3.685 -3.174 -1.78 0 0 0 0 0 0 0 +3.691 -3.159 -1.778 0 0 0 0 0 0 0 +3.711 -3.156 -1.783 0 0 0 0 0 0 0 +3.725 -3.148 -1.785 0 0 0 0 0 0 0 +3.732 -3.113 -1.779 0 0 0 0 0 0 0 +3.741 -3.102 -1.779 0 0 0 0 0 0 0 +3.743 -3.093 -1.777 0 0 0 0 0 0 0 +3.756 -3.084 -1.779 0 0 0 0 0 0 0 +3.761 -3.069 -1.776 0 0 0 0 0 0 0 +3.777 -3.062 -1.779 0 0 0 0 0 0 0 +3.775 -3.04 -1.773 0 0 0 0 0 0 0 +3.786 -3.03 -1.774 0 0 0 0 0 0 0 +3.798 -3.029 -1.778 0 0 0 0 0 0 0 +3.807 -3.018 -1.778 0 0 0 0 0 0 0 +3.801 -2.993 -1.77 0 0 0 0 0 0 0 +3.833 -2.999 -1.781 0 0 0 0 0 0 0 +3.843 -2.987 -1.781 0 0 0 0 0 0 0 +3.848 -2.972 -1.779 0 0 0 0 0 0 0 +3.859 -2.961 -1.78 0 0 0 0 0 0 0 +3.857 -2.941 -1.775 0 0 0 0 0 0 0 +3.873 -2.943 -1.78 0 0 0 0 0 0 0 +3.88 -2.929 -1.779 0 0 0 0 0 0 0 +3.882 -2.911 -1.776 0 0 0 0 0 0 0 +3.894 -2.901 -1.777 0 0 0 0 0 0 0 +3.903 -2.889 -1.777 0 0 0 0 0 0 0 +3.92 -2.882 -1.781 0 0 0 0 0 0 0 +3.926 -2.868 -1.779 0 0 0 0 0 0 0 +3.938 -2.867 -1.783 0 0 0 0 0 0 0 +3.947 -2.855 -1.783 0 0 0 0 0 0 0 +3.945 -2.835 -1.778 0 0 0 0 0 0 0 +3.959 -2.826 -1.78 0 0 0 0 0 0 0 +3.964 -2.811 -1.779 0 0 0 0 0 0 0 +3.978 -2.802 -1.781 0 0 0 0 0 0 0 +3.984 -2.787 -1.779 0 0 0 0 0 0 0 +3.986 -2.78 -1.779 0 0 0 0 0 0 0 +3.992 -2.765 -1.777 0 0 0 0 0 0 0 +3.993 -2.747 -1.773 0 0 0 0 0 0 0 +4.017 -2.745 -1.781 0 0 0 0 0 0 0 +4.019 -2.728 -1.778 0 0 0 0 0 0 0 +4.033 -2.719 -1.78 0 0 0 0 0 0 0 +4.03 -2.699 -1.775 0 0 0 0 0 0 0 +4.03 -2.69 -1.773 0 0 0 0 0 0 0 +4.048 -2.683 -1.777 0 0 0 0 0 0 0 +4.051 -2.667 -1.775 0 0 0 0 0 0 0 +4.068 -2.66 -1.779 0 0 0 0 0 0 0 +4.074 -2.646 -1.778 0 0 0 0 0 0 0 +4.076 -2.629 -1.775 0 0 0 0 0 0 0 +4.086 -2.617 -1.776 0 0 0 0 0 0 0 +4.1 -2.617 -1.78 0 0 0 0 0 0 0 +4.1 -2.599 -1.776 0 0 0 0 0 0 0 +4.118 -2.592 -1.781 0 0 0 0 0 0 0 +4.116 -2.573 -1.776 0 0 0 0 0 0 0 +4.115 -2.554 -1.772 0 0 0 0 0 0 0 +4.131 -2.546 -1.776 0 0 0 0 0 0 0 +4.143 -2.536 -1.778 0 0 0 0 0 0 0 +4.146 -2.529 -1.777 0 0 0 0 0 0 0 +4.13 -2.501 -1.766 0 0 0 0 0 0 0 +4.152 -2.497 -1.773 0 0 0 0 0 0 0 +4.155 -2.481 -1.771 0 0 0 0 0 0 0 +4.168 -2.471 -1.773 0 0 0 0 0 0 0 +4.185 -2.463 -1.777 0 0 0 0 0 0 0 +4.191 -2.449 -1.776 0 0 0 0 0 0 0 +4.182 -2.435 -1.771 0 0 0 0 0 0 0 +4.191 -2.423 -1.771 0 0 0 0 0 0 0 +4.201 -2.411 -1.772 0 0 0 0 0 0 0 +4.205 -2.396 -1.771 0 0 0 0 0 0 0 +4.212 -2.382 -1.771 0 0 0 0 0 0 0 +4.228 -2.374 -1.774 0 0 0 0 0 0 0 +4.235 -2.36 -1.774 0 0 0 0 0 0 0 +4.224 -2.346 -1.768 0 0 0 0 0 0 0 +4.232 -2.332 -1.768 0 0 0 0 0 0 0 +4.242 -2.321 -1.769 0 0 0 0 0 0 0 +4.253 -2.309 -1.771 0 0 0 0 0 0 0 +4.257 -2.294 -1.769 0 0 0 0 0 0 0 +4.261 -2.279 -1.768 0 0 0 0 0 0 0 +4.258 -2.26 -1.763 0 0 0 0 0 0 0 +4.265 -2.255 -1.765 0 0 0 0 0 0 0 +4.272 -2.242 -1.765 0 0 0 0 0 0 0 +4.279 -2.229 -1.765 0 0 0 0 0 0 0 +4.289 -2.217 -1.766 0 0 0 0 0 0 0 +4.285 -2.197 -1.761 0 0 0 0 0 0 0 +4.296 -2.186 -1.763 0 0 0 0 0 0 0 +4.3 -2.171 -1.762 0 0 0 0 0 0 0 +4.303 -2.165 -1.762 0 0 0 0 0 0 0 +4.315 -2.153 -1.764 0 0 0 0 0 0 0 +4.33 -2.144 -1.768 0 0 0 0 0 0 0 +4.325 -2.125 -1.763 0 0 0 0 0 0 0 +4.332 -2.111 -1.763 0 0 0 0 0 0 0 +4.344 -2.1 -1.765 0 0 0 0 0 0 0 +4.345 -2.084 -1.763 0 0 0 0 0 0 0 +4.363 -2.084 -1.769 0 0 0 0 0 0 0 +4.343 -2.058 -1.758 0 0 0 0 0 0 0 +4.373 -2.055 -1.768 0 0 0 0 0 0 0 +4.364 -2.034 -1.761 0 0 0 0 0 0 0 +4.379 -2.025 -1.765 0 0 0 0 0 0 0 +4.372 -2.005 -1.759 0 0 0 0 0 0 0 +4.392 -1.997 -1.765 0 0 0 0 0 0 0 +4.378 -1.982 -1.758 0 0 0 0 0 0 0 +4.393 -1.972 -1.761 0 0 0 0 0 0 0 +4.399 -1.959 -1.761 0 0 0 0 0 0 0 +4.412 -1.948 -1.764 0 0 0 0 0 0 0 +4.414 -1.932 -1.763 0 0 0 0 0 0 0 +4.429 -1.922 -1.766 0 0 0 0 0 0 0 +4.428 -1.905 -1.763 0 0 0 0 0 0 0 +4.423 -1.895 -1.76 0 0 0 0 0 0 0 +4.423 -1.879 -1.758 0 0 0 0 0 0 0 +4.436 -1.868 -1.76 0 0 0 0 0 0 0 +4.447 -1.856 -1.763 0 0 0 0 0 0 0 +4.458 -1.844 -1.765 0 0 0 0 0 0 0 +4.459 -1.828 -1.763 0 0 0 0 0 0 0 +4.463 -1.813 -1.762 0 0 0 0 0 0 0 +4.464 -1.806 -1.761 0 0 0 0 0 0 0 +4.475 -1.794 -1.763 0 0 0 0 0 0 0 +4.472 -1.776 -1.76 0 0 0 0 0 0 0 +4.488 -1.766 -1.764 0 0 0 0 0 0 0 +4.483 -1.748 -1.76 0 0 0 0 0 0 0 +4.497 -1.737 -1.763 0 0 0 0 0 0 0 +4.497 -1.721 -1.761 0 0 0 0 0 0 0 +4.503 -1.715 -1.763 0 0 0 0 0 0 0 +4.512 -1.702 -1.764 0 0 0 0 0 0 0 +4.517 -1.688 -1.764 0 0 0 0 0 0 0 +4.53 -1.677 -1.767 0 0 0 0 0 0 0 +4.517 -1.656 -1.76 0 0 0 0 0 0 0 +4.519 -1.641 -1.758 0 0 0 0 0 0 0 +4.526 -1.627 -1.759 0 0 0 0 0 0 0 +4.534 -1.622 -1.761 0 0 0 0 0 0 0 +4.541 -1.608 -1.762 0 0 0 0 0 0 0 +4.546 -1.594 -1.762 0 0 0 0 0 0 0 +4.54 -1.576 -1.758 0 0 0 0 0 0 0 +4.542 -1.56 -1.756 0 0 0 0 0 0 0 +4.559 -1.55 -1.761 0 0 0 0 0 0 0 +4.553 -1.533 -1.757 0 0 0 0 0 0 0 +4.564 -1.528 -1.76 0 0 0 0 0 0 0 +4.555 -1.509 -1.755 0 0 0 0 0 0 0 +4.565 -1.497 -1.757 0 0 0 0 0 0 0 +4.578 -1.485 -1.76 0 0 0 0 0 0 0 +4.583 -1.471 -1.76 0 0 0 0 0 0 0 +4.573 -1.452 -1.755 0 0 0 0 0 0 0 +4.594 -1.443 -1.761 0 0 0 0 0 0 0 +4.584 -1.431 -1.756 0 0 0 0 0 0 0 +4.597 -1.42 -1.76 0 0 0 0 0 0 0 +4.589 -1.402 -1.755 0 0 0 0 0 0 0 +4.594 -1.387 -1.755 0 0 0 0 0 0 0 +4.607 -1.375 -1.758 0 0 0 0 0 0 0 +4.609 -1.36 -1.758 0 0 0 0 0 0 0 +4.612 -1.345 -1.757 0 0 0 0 0 0 0 +4.607 -1.336 -1.754 0 0 0 0 0 0 0 +4.616 -1.323 -1.756 0 0 0 0 0 0 0 +4.622 -1.309 -1.757 0 0 0 0 0 0 0 +4.63 -1.296 -1.758 0 0 0 0 0 0 0 +4.625 -1.279 -1.755 0 0 0 0 0 0 0 +4.629 -1.264 -1.755 0 0 0 0 0 0 0 +4.617 -1.245 -1.748 0 0 0 0 0 0 0 +4.619 -1.23 -1.747 0 0 0 0 0 0 0 +4.631 -1.226 -1.752 0 0 0 0 0 0 0 +4.643 -1.213 -1.755 0 0 0 0 0 0 0 +4.645 -1.198 -1.754 0 0 0 0 0 0 0 +4.646 -1.183 -1.753 0 0 0 0 0 0 0 +4.652 -1.169 -1.754 0 0 0 0 0 0 0 +4.656 -1.154 -1.754 0 0 0 0 0 0 0 +4.656 -1.139 -1.752 0 0 0 0 0 0 0 +4.643 -1.128 -1.747 0 0 0 0 0 0 0 +4.654 -1.115 -1.75 0 0 0 0 0 0 0 +4.664 -1.102 -1.752 0 0 0 0 0 0 0 +4.664 -1.087 -1.751 0 0 0 0 0 0 0 +4.664 -1.071 -1.75 0 0 0 0 0 0 0 +4.664 -1.056 -1.748 0 0 0 0 0 0 0 +4.669 -1.049 -1.75 0 0 0 0 0 0 0 +4.674 -1.035 -1.75 0 0 0 0 0 0 0 +4.679 -1.021 -1.751 0 0 0 0 0 0 0 +4.675 -1.004 -1.748 0 0 0 0 0 0 0 +4.674 -0.989 -1.747 0 0 0 0 0 0 0 +4.672 -0.973 -1.744 0 0 0 0 0 0 0 +4.697 -0.963 -1.753 0 0 0 0 0 0 0 +4.678 -0.944 -1.744 0 0 0 0 0 0 0 +4.68 -0.936 -1.744 0 0 0 0 0 0 0 +4.699 -0.925 -1.751 0 0 0 0 0 0 0 +4.691 -0.908 -1.747 0 0 0 0 0 0 0 +4.686 -0.892 -1.744 0 0 0 0 0 0 0 +4.696 -0.878 -1.747 0 0 0 0 0 0 0 +4.697 -0.863 -1.746 0 0 0 0 0 0 0 +4.685 -0.846 -1.74 0 0 0 0 0 0 0 +4.711 -0.843 -1.75 0 0 0 0 0 0 0 +4.693 -0.825 -1.742 0 0 0 0 0 0 0 +4.714 -0.813 -1.749 0 0 0 0 0 0 0 +4.696 -0.795 -1.741 0 0 0 0 0 0 0 +4.704 -0.781 -1.743 0 0 0 0 0 0 0 +4.71 -0.767 -1.744 0 0 0 0 0 0 0 +4.705 -0.751 -1.742 0 0 0 0 0 0 0 +4.721 -0.746 -1.747 0 0 0 0 0 0 0 +4.724 -0.731 -1.747 0 0 0 0 0 0 0 +4.718 -0.715 -1.744 0 0 0 0 0 0 0 +4.717 -0.7 -1.743 0 0 0 0 0 0 0 +4.721 -0.685 -1.744 0 0 0 0 0 0 0 +4.712 -0.669 -1.739 0 0 0 0 0 0 0 +4.714 -0.654 -1.739 0 0 0 0 0 0 0 +4.723 -0.647 -1.742 0 0 0 0 0 0 0 +4.738 -0.634 -1.747 0 0 0 0 0 0 0 +4.721 -0.617 -1.74 0 0 0 0 0 0 0 +4.738 -0.604 -1.746 0 0 0 0 0 0 0 +4.721 -0.587 -1.739 0 0 0 0 0 0 0 +4.732 -0.573 -1.742 0 0 0 0 0 0 0 +4.739 -0.559 -1.744 0 0 0 0 0 0 0 +4.738 -0.551 -1.744 0 0 0 0 0 0 0 +4.738 -0.536 -1.743 0 0 0 0 0 0 0 +4.736 -0.521 -1.742 0 0 0 0 0 0 0 +4.753 -0.507 -1.747 0 0 0 0 0 0 0 +4.739 -0.491 -1.742 0 0 0 0 0 0 0 +4.752 -0.477 -1.746 0 0 0 0 0 0 0 +4.729 -0.46 -1.736 0 0 0 0 0 0 0 +4.752 -0.455 -1.745 0 0 0 0 0 0 0 +4.745 -0.439 -1.742 0 0 0 0 0 0 0 +4.755 -0.425 -1.745 0 0 0 0 0 0 0 +4.751 -0.409 -1.743 0 0 0 0 0 0 0 +4.75 -0.394 -1.742 0 0 0 0 0 0 0 +4.75 -0.379 -1.742 0 0 0 0 0 0 0 +4.751 -0.364 -1.742 0 0 0 0 0 0 0 +4.744 -0.356 -1.739 0 0 0 0 0 0 0 +4.762 -0.343 -1.745 0 0 0 0 0 0 0 +4.77 -0.328 -1.748 0 0 0 0 0 0 0 +4.775 -0.313 -1.75 0 0 0 0 0 0 0 +4.757 -0.297 -1.742 0 0 0 0 0 0 0 +4.758 -0.282 -1.742 0 0 0 0 0 0 0 +4.772 -0.268 -1.747 0 0 0 0 0 0 0 +4.763 -0.26 -1.744 0 0 0 0 0 0 0 +4.764 -0.245 -1.744 0 0 0 0 0 0 0 +4.767 -0.23 -1.744 0 0 0 0 0 0 0 +4.766 -0.215 -1.744 0 0 0 0 0 0 0 +4.753 -0.2 -1.739 0 0 0 0 0 0 0 +4.765 -0.185 -1.743 0 0 0 0 0 0 0 +4.762 -0.17 -1.742 0 0 0 0 0 0 0 +4.755 -0.162 -1.739 0 0 0 0 0 0 0 +4.774 -0.148 -1.746 0 0 0 0 0 0 0 +4.761 -0.133 -1.741 0 0 0 0 0 0 0 +4.767 -0.118 -1.743 0 0 0 0 0 0 0 +4.753 -0.103 -1.737 0 0 0 0 0 0 0 +4.773 -0.088 -1.745 0 0 0 0 0 0 0 +4.775 -0.073 -1.746 0 0 0 0 0 0 0 +4.77 -0.065 -1.744 0 0 0 0 0 0 0 +4.772 -0.05 -1.744 0 0 0 0 0 0 0 +4.755 -0.035 -1.738 0 0 0 0 0 0 0 +4.757 -0.02 -1.739 0 0 0 0 0 0 0 +4.767 -0.005 -1.742 0 0 0 0 0 0 0 +4.506 0.837 -1.728 0 0 0 0 0 0 0 +2.506 0.473 -0.909 0 0 0 0 0 0 0 +4.506 0.852 -1.729 0 0 0 0 0 0 0 +4.499 0.865 -1.728 0 0 0 0 0 0 0 +4.498 0.88 -1.728 0 0 0 0 0 0 0 +4.494 0.893 -1.728 0 0 0 0 0 0 0 +4.509 0.911 -1.735 0 0 0 0 0 0 0 +4.483 0.921 -1.725 0 0 0 0 0 0 0 +4.485 0.928 -1.727 0 0 0 0 0 0 0 +4.487 0.944 -1.729 0 0 0 0 0 0 0 +4.479 0.957 -1.727 0 0 0 0 0 0 0 +4.487 0.973 -1.731 0 0 0 0 0 0 0 +4.475 0.985 -1.728 0 0 0 0 0 0 0 +4.464 0.998 -1.725 0 0 0 0 0 0 0 +4.468 1.013 -1.728 0 0 0 0 0 0 0 +4.469 1.021 -1.728 0 0 0 0 0 0 0 +4.456 1.033 -1.725 0 0 0 0 0 0 0 +4.462 1.049 -1.728 0 0 0 0 0 0 0 +4.448 1.06 -1.724 0 0 0 0 0 0 0 +4.452 1.076 -1.727 0 0 0 0 0 0 0 +4.447 1.089 -1.726 0 0 0 0 0 0 0 +4.43 1.1 -1.721 0 0 0 0 0 0 0 +4.445 1.111 -1.728 0 0 0 0 0 0 0 +4.441 1.125 -1.728 0 0 0 0 0 0 0 +4.431 1.137 -1.725 0 0 0 0 0 0 0 +4.415 1.148 -1.719 0 0 0 0 0 0 0 +4.423 1.165 -1.725 0 0 0 0 0 0 0 +4.407 1.176 -1.719 0 0 0 0 0 0 0 +4.409 1.191 -1.722 0 0 0 0 0 0 0 +4.418 1.201 -1.726 0 0 0 0 0 0 0 +4.405 1.212 -1.722 0 0 0 0 0 0 0 +4.401 1.226 -1.722 0 0 0 0 0 0 0 +4.406 1.242 -1.726 0 0 0 0 0 0 0 +4.401 1.256 -1.725 0 0 0 0 0 0 0 +4.391 1.268 -1.723 0 0 0 0 0 0 0 +4.384 1.281 -1.722 0 0 0 0 0 0 0 +4.376 1.286 -1.719 0 0 0 0 0 0 0 +4.363 1.297 -1.716 0 0 0 0 0 0 0 +4.373 1.315 -1.722 0 0 0 0 0 0 0 +4.357 1.325 -1.716 0 0 0 0 0 0 0 +4.358 1.34 -1.719 0 0 0 0 0 0 0 +4.361 1.356 -1.722 0 0 0 0 0 0 0 +4.36 1.371 -1.723 0 0 0 0 0 0 0 +4.356 1.377 -1.722 0 0 0 0 0 0 0 +4.354 1.392 -1.723 0 0 0 0 0 0 0 +4.344 1.404 -1.721 0 0 0 0 0 0 0 +4.338 1.417 -1.72 0 0 0 0 0 0 0 +4.339 1.432 -1.722 0 0 0 0 0 0 0 +4.33 1.444 -1.721 0 0 0 0 0 0 0 +4.315 1.455 -1.716 0 0 0 0 0 0 0 +4.332 1.468 -1.725 0 0 0 0 0 0 0 +4.326 1.481 -1.724 0 0 0 0 0 0 0 +4.313 1.491 -1.72 0 0 0 0 0 0 0 +4.318 1.509 -1.725 0 0 0 0 0 0 0 +4.312 1.522 -1.724 0 0 0 0 0 0 0 +4.29 1.529 -1.716 0 0 0 0 0 0 0 +4.304 1.549 -1.725 0 0 0 0 0 0 0 +4.301 1.563 -1.725 0 0 0 0 0 0 0 +4.283 1.564 -1.719 0 0 0 0 0 0 0 +4.292 1.583 -1.725 0 0 0 0 0 0 0 +4.281 1.595 -1.722 0 0 0 0 0 0 0 +4.266 1.604 -1.718 0 0 0 0 0 0 0 +4.271 1.621 -1.722 0 0 0 0 0 0 0 +4.266 1.635 -1.722 0 0 0 0 0 0 0 +4.264 1.641 -1.722 0 0 0 0 0 0 0 +4.259 1.655 -1.722 0 0 0 0 0 0 0 +4.25 1.667 -1.721 0 0 0 0 0 0 0 +4.257 1.685 -1.726 0 0 0 0 0 0 0 +4.239 1.694 -1.721 0 0 0 0 0 0 0 +4.244 1.711 -1.725 0 0 0 0 0 0 0 +4.235 1.723 -1.724 0 0 0 0 0 0 0 +4.222 1.725 -1.719 0 0 0 0 0 0 0 +4.234 1.746 -1.727 0 0 0 0 0 0 0 +4.223 1.757 -1.725 0 0 0 0 0 0 0 +4.206 1.765 -1.719 0 0 0 0 0 0 0 +4.211 1.783 -1.724 0 0 0 0 0 0 0 +4.205 1.796 -1.724 0 0 0 0 0 0 0 +4.204 1.811 -1.726 0 0 0 0 0 0 0 +4.197 1.816 -1.724 0 0 0 0 0 0 0 +4.194 1.83 -1.725 0 0 0 0 0 0 0 +4.187 1.843 -1.725 0 0 0 0 0 0 0 +4.178 1.854 -1.723 0 0 0 0 0 0 0 +4.172 1.867 -1.723 0 0 0 0 0 0 0 +4.173 1.884 -1.726 0 0 0 0 0 0 0 +4.165 1.896 -1.725 0 0 0 0 0 0 0 +4.154 1.907 -1.723 0 0 0 0 0 0 0 +4.161 1.918 -1.728 0 0 0 0 0 0 0 +4.147 1.927 -1.724 0 0 0 0 0 0 0 +4.14 1.94 -1.724 0 0 0 0 0 0 0 +4.133 1.952 -1.723 0 0 0 0 0 0 0 +4.128 1.966 -1.724 0 0 0 0 0 0 0 +4.132 1.984 -1.728 0 0 0 0 0 0 0 +4.117 1.993 -1.725 0 0 0 0 0 0 0 +4.119 2.002 -1.727 0 0 0 0 0 0 0 +4.11 2.013 -1.725 0 0 0 0 0 0 0 +4.11 2.029 -1.728 0 0 0 0 0 0 0 +4.087 2.034 -1.721 0 0 0 0 0 0 0 +4.087 2.05 -1.724 0 0 0 0 0 0 0 +4.087 2.066 -1.727 0 0 0 0 0 0 0 +4.084 2.072 -1.727 0 0 0 0 0 0 0 +4.084 2.089 -1.73 0 0 0 0 0 0 0 +4.069 2.097 -1.726 0 0 0 0 0 0 0 +4.059 2.108 -1.725 0 0 0 0 0 0 0 +4.053 2.121 -1.725 0 0 0 0 0 0 0 +4.044 2.133 -1.724 0 0 0 0 0 0 0 +4.044 2.149 -1.727 0 0 0 0 0 0 0 +4.054 2.162 -1.733 0 0 0 0 0 0 0 +4.033 2.167 -1.726 0 0 0 0 0 0 0 +4.027 2.181 -1.727 0 0 0 0 0 0 0 +4.022 2.194 -1.728 0 0 0 0 0 0 0 +4.017 2.208 -1.728 0 0 0 0 0 0 0 +4.007 2.219 -1.727 0 0 0 0 0 0 0 +4.004 2.234 -1.729 0 0 0 0 0 0 0 +4.003 2.241 -1.73 0 0 0 0 0 0 0 +3.997 2.255 -1.73 0 0 0 0 0 0 0 +3.988 2.266 -1.73 0 0 0 0 0 0 0 +3.968 2.271 -1.724 0 0 0 0 0 0 0 +3.969 2.288 -1.728 0 0 0 0 0 0 0 +3.965 2.303 -1.729 0 0 0 0 0 0 0 +3.953 2.312 -1.727 0 0 0 0 0 0 0 +3.961 2.325 -1.732 0 0 0 0 0 0 0 +3.95 2.336 -1.73 0 0 0 0 0 0 0 +3.932 2.342 -1.725 0 0 0 0 0 0 0 +3.934 2.36 -1.73 0 0 0 0 0 0 0 +3.92 2.368 -1.727 0 0 0 0 0 0 0 +3.914 2.381 -1.728 0 0 0 0 0 0 0 +3.913 2.397 -1.73 0 0 0 0 0 0 0 +3.906 2.402 -1.729 0 0 0 0 0 0 0 +3.897 2.413 -1.728 0 0 0 0 0 0 0 +3.888 2.424 -1.728 0 0 0 0 0 0 0 +3.888 2.441 -1.731 0 0 0 0 0 0 0 +3.873 2.449 -1.728 0 0 0 0 0 0 0 +3.874 2.467 -1.732 0 0 0 0 0 0 0 +3.859 2.474 -1.728 0 0 0 0 0 0 0 +3.854 2.488 -1.73 0 0 0 0 0 0 0 +3.852 2.495 -1.73 0 0 0 0 0 0 0 +3.842 2.506 -1.73 0 0 0 0 0 0 0 +3.836 2.519 -1.73 0 0 0 0 0 0 0 +3.82 2.526 -1.727 0 0 0 0 0 0 0 +3.814 2.539 -1.728 0 0 0 0 0 0 0 +3.815 2.557 -1.732 0 0 0 0 0 0 0 +3.801 2.565 -1.729 0 0 0 0 0 0 0 +3.795 2.57 -1.728 0 0 0 0 0 0 0 +3.796 2.588 -1.733 0 0 0 0 0 0 0 +3.782 2.596 -1.73 0 0 0 0 0 0 0 +3.769 2.605 -1.728 0 0 0 0 0 0 0 +3.776 2.627 -1.735 0 0 0 0 0 0 0 +3.751 2.627 -1.727 0 0 0 0 0 0 0 +3.761 2.643 -1.733 0 0 0 0 0 0 0 +3.74 2.646 -1.728 0 0 0 0 0 0 0 +3.741 2.664 -1.732 0 0 0 0 0 0 0 +3.73 2.674 -1.73 0 0 0 0 0 0 0 +3.721 2.685 -1.73 0 0 0 0 0 0 0 +3.719 2.701 -1.733 0 0 0 0 0 0 0 +3.709 2.712 -1.733 0 0 0 0 0 0 0 +3.703 2.717 -1.732 0 0 0 0 0 0 0 +3.684 2.721 -1.727 0 0 0 0 0 0 0 +3.688 2.741 -1.733 0 0 0 0 0 0 0 +3.68 2.754 -1.733 0 0 0 0 0 0 0 +3.661 2.758 -1.728 0 0 0 0 0 0 0 +3.651 2.768 -1.728 0 0 0 0 0 0 0 +3.645 2.782 -1.729 0 0 0 0 0 0 0 +3.651 2.795 -1.734 0 0 0 0 0 0 0 +3.625 2.793 -1.725 0 0 0 0 0 0 0 +3.625 2.811 -1.73 0 0 0 0 0 0 0 +3.625 2.829 -1.734 0 0 0 0 0 0 0 +3.606 2.833 -1.729 0 0 0 0 0 0 0 +3.595 2.843 -1.728 0 0 0 0 0 0 0 +3.582 2.851 -1.726 0 0 0 0 0 0 0 +3.573 2.862 -1.726 0 0 0 0 0 0 0 +3.558 2.86 -1.721 0 0 0 0 0 0 0 +3.574 2.89 -1.733 0 0 0 0 0 0 0 +3.545 2.885 -1.723 0 0 0 0 0 0 0 +3.54 2.9 -1.725 0 0 0 0 0 0 0 +3.541 2.919 -1.73 0 0 0 0 0 0 0 +3.523 2.923 -1.726 0 0 0 0 0 0 0 +3.515 2.936 -1.727 0 0 0 0 0 0 0 +3.522 2.951 -1.733 0 0 0 0 0 0 0 +3.494 2.946 -1.723 0 0 0 0 0 0 0 +3.489 2.961 -1.725 0 0 0 0 0 0 0 +3.49 2.98 -1.73 0 0 0 0 0 0 0 +3.473 2.985 -1.727 0 0 0 0 0 0 0 +3.454 2.988 -1.722 0 0 0 0 0 0 0 +3.459 3.01 -1.729 0 0 0 0 0 0 0 +3.443 3.006 -1.723 0 0 0 0 0 0 0 +3.435 3.018 -1.724 0 0 0 0 0 0 0 +3.436 3.039 -1.73 0 0 0 0 0 0 0 +3.426 3.048 -1.729 0 0 0 0 0 0 0 +3.409 3.053 -1.725 0 0 0 0 0 0 0 +3.398 3.062 -1.725 0 0 0 0 0 0 0 +3.387 3.072 -1.724 0 0 0 0 0 0 0 +3.381 3.076 -1.723 0 0 0 0 0 0 0 +3.381 3.095 -1.728 0 0 0 0 0 0 0 +3.361 3.097 -1.723 0 0 0 0 0 0 0 +3.346 3.103 -1.72 0 0 0 0 0 0 0 +3.364 3.138 -1.735 0 0 0 0 0 0 0 +3.328 3.125 -1.721 0 0 0 0 0 0 0 +3.326 3.143 -1.725 0 0 0 0 0 0 0 +3.32 3.147 -1.725 0 0 0 0 0 0 0 +3.297 3.144 -1.717 0 0 0 0 0 0 0 +3.308 3.175 -1.729 0 0 0 0 0 0 0 +3.302 3.189 -1.731 0 0 0 0 0 0 0 +3.271 3.179 -1.719 0 0 0 0 0 0 0 +3.27 3.199 -1.725 0 0 0 0 0 0 0 +3.255 3.204 -1.722 0 0 0 0 0 0 0 +3.251 3.21 -1.722 0 0 0 0 0 0 0 +3.246 3.225 -1.725 0 0 0 0 0 0 0 +3.237 3.237 -1.726 0 0 0 0 0 0 0 +3.225 3.244 -1.725 0 0 0 0 0 0 0 +3.212 3.252 -1.723 0 0 0 0 0 0 0 +3.202 3.262 -1.723 0 0 0 0 0 0 0 +3.193 3.273 -1.724 0 0 0 0 0 0 0 +3.187 3.278 -1.724 0 0 0 0 0 0 0 +3.169 3.28 -1.719 0 0 0 0 0 0 0 +3.167 3.298 -1.724 0 0 0 0 0 0 0 +3.153 3.304 -1.722 0 0 0 0 0 0 0 +3.143 3.315 -1.722 0 0 0 0 0 0 0 +3.133 3.325 -1.722 0 0 0 0 0 0 0 +3.117 3.33 -1.719 0 0 0 0 0 0 0 +3.116 3.339 -1.722 0 0 0 0 0 0 0 +3.103 3.346 -1.72 0 0 0 0 0 0 0 +3.096 3.36 -1.722 0 0 0 0 0 0 0 +3.087 3.371 -1.723 0 0 0 0 0 0 0 +3.076 3.38 -1.723 0 0 0 0 0 0 0 +3.066 3.39 -1.723 0 0 0 0 0 0 0 +3.055 3.4 -1.723 0 0 0 0 0 0 0 +3.047 3.402 -1.722 0 0 0 0 0 0 0 +3.036 3.411 -1.722 0 0 0 0 0 0 0 +3.026 3.421 -1.722 0 0 0 0 0 0 0 +3.015 3.43 -1.722 0 0 0 0 0 0 0 +3.005 3.441 -1.722 0 0 0 0 0 0 0 +2.995 3.45 -1.722 0 0 0 0 0 0 0 +2.98 3.456 -1.72 0 0 0 0 0 0 0 +2.984 3.472 -1.726 0 0 0 0 0 0 0 +2.975 3.482 -1.727 0 0 0 0 0 0 0 +2.96 3.487 -1.725 0 0 0 0 0 0 0 +2.949 3.497 -1.725 0 0 0 0 0 0 0 +2.947 3.516 -1.73 0 0 0 0 0 0 0 +2.928 3.517 -1.725 0 0 0 0 0 0 0 +2.918 3.527 -1.726 0 0 0 0 0 0 0 +2.9 3.528 -1.722 0 0 0 0 0 0 0 +2.905 3.545 -1.728 0 0 0 0 0 0 0 +2.898 3.559 -1.73 0 0 0 0 0 0 0 +2.877 3.556 -1.725 0 0 0 0 0 0 0 +2.868 3.568 -1.726 0 0 0 0 0 0 0 +2.863 3.584 -1.73 0 0 0 0 0 0 0 +2.849 3.59 -1.728 0 0 0 0 0 0 0 +2.845 3.608 -1.733 0 0 0 0 0 0 0 +2.829 3.599 -1.726 0 0 0 0 0 0 0 +2.823 3.616 -1.73 0 0 0 0 0 0 0 +2.813 3.626 -1.73 0 0 0 0 0 0 0 +2.805 3.639 -1.733 0 0 0 0 0 0 0 +2.788 3.641 -1.729 0 0 0 0 0 0 0 +2.77 3.64 -1.725 0 0 0 0 0 0 0 +2.772 3.655 -1.73 0 0 0 0 0 0 0 +2.764 3.668 -1.732 0 0 0 0 0 0 0 +2.749 3.672 -1.73 0 0 0 0 0 0 0 +2.737 3.681 -1.73 0 0 0 0 0 0 0 +2.724 3.687 -1.728 0 0 0 0 0 0 0 +2.72 3.706 -1.733 0 0 0 0 0 0 0 +2.707 3.713 -1.733 0 0 0 0 0 0 0 +2.705 3.723 -1.736 0 0 0 0 0 0 0 +2.686 3.721 -1.73 0 0 0 0 0 0 0 +2.677 3.732 -1.732 0 0 0 0 0 0 0 +2.664 3.739 -1.731 0 0 0 0 0 0 0 +2.653 3.749 -1.732 0 0 0 0 0 0 0 +2.643 3.76 -1.733 0 0 0 0 0 0 0 +2.629 3.766 -1.732 0 0 0 0 0 0 0 +2.626 3.786 -1.738 0 0 0 0 0 0 0 +2.622 3.793 -1.739 0 0 0 0 0 0 0 +2.607 3.797 -1.737 0 0 0 0 0 0 0 +2.591 3.799 -1.734 0 0 0 0 0 0 0 +2.586 3.818 -1.739 0 0 0 0 0 0 0 +2.575 3.827 -1.74 0 0 0 0 0 0 0 +2.557 3.826 -1.736 0 0 0 0 0 0 0 +2.548 3.839 -1.738 0 0 0 0 0 0 0 +2.545 3.848 -1.74 0 0 0 0 0 0 0 +2.528 3.848 -1.736 0 0 0 0 0 0 0 +2.521 3.863 -1.74 0 0 0 0 0 0 0 +2.506 3.867 -1.738 0 0 0 0 0 0 0 +2.493 3.873 -1.737 0 0 0 0 0 0 0 +2.484 3.885 -1.739 0 0 0 0 0 0 0 +2.466 3.885 -1.736 0 0 0 0 0 0 0 +2.462 3.906 -1.742 0 0 0 0 0 0 0 +2.446 3.894 -1.734 0 0 0 0 0 0 0 +2.439 3.909 -1.738 0 0 0 0 0 0 0 +2.426 3.917 -1.738 0 0 0 0 0 0 0 +2.412 3.922 -1.736 0 0 0 0 0 0 0 +2.397 3.924 -1.734 0 0 0 0 0 0 0 +2.385 3.932 -1.734 0 0 0 0 0 0 0 +2.38 3.939 -1.736 0 0 0 0 0 0 0 +2.37 3.949 -1.737 0 0 0 0 0 0 0 +2.356 3.954 -1.736 0 0 0 0 0 0 0 +2.341 3.958 -1.734 0 0 0 0 0 0 0 +2.332 3.97 -1.736 0 0 0 0 0 0 0 +2.317 3.974 -1.735 0 0 0 0 0 0 0 +2.307 3.985 -1.736 0 0 0 0 0 0 0 +2.286 3.977 -1.73 0 0 0 0 0 0 0 +2.284 3.989 -1.733 0 0 0 0 0 0 0 +2.269 3.991 -1.731 0 0 0 0 0 0 0 +2.253 3.992 -1.728 0 0 0 0 0 0 0 +2.24 3.999 -1.728 0 0 0 0 0 0 0 +2.234 4.017 -1.733 0 0 0 0 0 0 0 +2.219 4.021 -1.732 0 0 0 0 0 0 0 +2.205 4.025 -1.73 0 0 0 0 0 0 0 +2.196 4.023 -1.728 0 0 0 0 0 0 0 +2.181 4.027 -1.727 0 0 0 0 0 0 0 +2.172 4.04 -1.73 0 0 0 0 0 0 0 +2.156 4.041 -1.727 0 0 0 0 0 0 0 +2.142 4.044 -1.725 0 0 0 0 0 0 0 +2.133 4.059 -1.729 0 0 0 0 0 0 0 +2.12 4.064 -1.728 0 0 0 0 0 0 0 +2.108 4.058 -1.724 0 0 0 0 0 0 0 +2.098 4.069 -1.726 0 0 0 0 0 0 0 +2.081 4.067 -1.722 0 0 0 0 0 0 0 +2.071 4.079 -1.725 0 0 0 0 0 0 0 +2.056 4.082 -1.723 0 0 0 0 0 0 0 +2.049 4.1 -1.728 0 0 0 0 0 0 0 +2.029 4.092 -1.722 0 0 0 0 0 0 0 +2.023 4.096 -1.722 0 0 0 0 0 0 0 +2.012 4.106 -1.724 0 0 0 0 0 0 0 +1.999 4.112 -1.724 0 0 0 0 0 0 0 +1.984 4.115 -1.722 0 0 0 0 0 0 0 +1.971 4.121 -1.722 0 0 0 0 0 0 0 +1.956 4.123 -1.72 0 0 0 0 0 0 0 +1.945 4.132 -1.722 0 0 0 0 0 0 0 +1.937 4.134 -1.721 0 0 0 0 0 0 0 +1.925 4.141 -1.722 0 0 0 0 0 0 0 +1.915 4.152 -1.724 0 0 0 0 0 0 0 +1.899 4.153 -1.722 0 0 0 0 0 0 0 +1.886 4.159 -1.722 0 0 0 0 0 0 0 +1.875 4.168 -1.723 0 0 0 0 0 0 0 +1.858 4.166 -1.719 0 0 0 0 0 0 0 +1.846 4.175 -1.721 0 0 0 0 0 0 0 +1.843 4.186 -1.725 0 0 0 0 0 0 0 +1.825 4.18 -1.719 0 0 0 0 0 0 0 +1.811 4.184 -1.719 0 0 0 0 0 0 0 +1.801 4.197 -1.722 0 0 0 0 0 0 0 +1.785 4.197 -1.719 0 0 0 0 0 0 0 +1.774 4.208 -1.722 0 0 0 0 0 0 0 +1.753 4.195 -1.713 0 0 0 0 0 0 0 +1.75 4.206 -1.717 0 0 0 0 0 0 0 +1.743 4.225 -1.723 0 0 0 0 0 0 0 +1.726 4.222 -1.719 0 0 0 0 0 0 0 +1.715 4.233 -1.722 0 0 0 0 0 0 0 +1.702 4.24 -1.722 0 0 0 0 0 0 0 +1.683 4.231 -1.716 0 0 0 0 0 0 0 +1.675 4.25 -1.722 0 0 0 0 0 0 0 +1.674 4.265 -1.728 0 0 0 0 0 0 0 +1.653 4.251 -1.719 0 0 0 0 0 0 0 +1.639 4.257 -1.719 0 0 0 0 0 0 0 +1.631 4.274 -1.725 0 0 0 0 0 0 0 +1.613 4.269 -1.72 0 0 0 0 0 0 0 +1.602 4.279 -1.722 0 0 0 0 0 0 0 +1.59 4.289 -1.725 0 0 0 0 0 0 0 +1.58 4.281 -1.72 0 0 0 0 0 0 0 +1.569 4.295 -1.724 0 0 0 0 0 0 0 +1.555 4.298 -1.723 0 0 0 0 0 0 0 +1.532 4.275 -1.711 0 0 0 0 0 0 0 +1.517 4.276 -1.71 0 0 0 0 0 0 0 +1.506 4.288 -1.713 0 0 0 0 0 0 0 +1.486 4.273 -1.704 0 0 0 0 0 0 0 +1.48 4.279 -1.706 0 0 0 0 0 0 0 +1.47 4.293 -1.71 0 0 0 0 0 0 0 +1.451 4.281 -1.703 0 0 0 0 0 0 0 +1.436 4.282 -1.701 0 0 0 0 0 0 0 +1.425 4.294 -1.704 0 0 0 0 0 0 0 +1.407 4.284 -1.698 0 0 0 0 0 0 0 +1.393 4.289 -1.698 0 0 0 0 0 0 0 +1.381 4.297 -1.7 0 0 0 0 0 0 0 +1.374 4.299 -1.7 0 0 0 0 0 0 0 +1.36 4.301 -1.699 0 0 0 0 0 0 0 +1.35 4.314 -1.703 0 0 0 0 0 0 0 +1.332 4.304 -1.697 0 0 0 0 0 0 0 +1.317 4.305 -1.695 0 0 0 0 0 0 0 +1.309 4.327 -1.703 0 0 0 0 0 0 0 +1.289 4.31 -1.694 0 0 0 0 0 0 0 +1.282 4.312 -1.694 0 0 0 0 0 0 0 +1.271 4.323 -1.697 0 0 0 0 0 0 0 +1.254 4.316 -1.692 0 0 0 0 0 0 0 +1.24 4.32 -1.692 0 0 0 0 0 0 0 +1.23 4.335 -1.697 0 0 0 0 0 0 0 +1.213 4.328 -1.692 0 0 0 0 0 0 0 +1.202 4.34 -1.696 0 0 0 0 0 0 0 +1.197 4.348 -1.698 0 0 0 0 0 0 0 +1.179 4.335 -1.692 0 0 0 0 0 0 0 +1.164 4.335 -1.69 0 0 0 0 0 0 0 +1.156 4.359 -1.698 0 0 0 0 0 0 0 +1.14 4.353 -1.695 0 0 0 0 0 0 0 +1.126 4.357 -1.695 0 0 0 0 0 0 0 +1.113 4.364 -1.696 0 0 0 0 0 0 0 +1.102 4.348 -1.689 0 0 0 0 0 0 0 +1.091 4.362 -1.693 0 0 0 0 0 0 0 +1.077 4.364 -1.692 0 0 0 0 0 0 0 +1.061 4.358 -1.689 0 0 0 0 0 0 0 +1.048 4.367 -1.691 0 0 0 0 0 0 0 +1.034 4.37 -1.691 0 0 0 0 0 0 0 +1.019 4.368 -1.689 0 0 0 0 0 0 0 +1.006 4.373 -1.689 0 0 0 0 0 0 0 +0.999 4.373 -1.689 0 0 0 0 0 0 0 +0.985 4.376 -1.689 0 0 0 0 0 0 0 +0.971 4.379 -1.689 0 0 0 0 0 0 0 +0.958 4.382 -1.689 0 0 0 0 0 0 0 +0.942 4.376 -1.685 0 0 0 0 0 0 0 +0.929 4.382 -1.686 0 0 0 0 0 0 0 +0.916 4.391 -1.689 0 0 0 0 0 0 0 +0.909 4.388 -1.687 0 0 0 0 0 0 0 +0.896 4.399 -1.69 0 0 0 0 0 0 0 +0.88 4.39 -1.686 0 0 0 0 0 0 0 +0.867 4.395 -1.686 0 0 0 0 0 0 0 +0.852 4.39 -1.683 0 0 0 0 0 0 0 +0.842 4.417 -1.693 0 0 0 0 0 0 0 +0.825 4.403 -1.686 0 0 0 0 0 0 0 +0.82 4.412 -1.689 0 0 0 0 0 0 0 +0.803 4.4 -1.683 0 0 0 0 0 0 0 +0.618 3.477 -1.305 0 0 0 0 0 0 0 +0.604 3.461 -1.297 0 0 0 0 0 0 0 +0.592 3.459 -1.296 0 0 0 0 0 0 0 +0.58 3.452 -1.292 0 0 0 0 0 0 0 +0.569 3.455 -1.293 0 0 0 0 0 0 0 +0.56 3.434 -1.284 0 0 0 0 0 0 0 +0.55 3.438 -1.284 0 0 0 0 0 0 0 +0.539 3.443 -1.286 0 0 0 0 0 0 0 +0.529 3.449 -1.287 0 0 0 0 0 0 0 +0.519 3.458 -1.29 0 0 0 0 0 0 0 +0.508 3.454 -1.288 0 0 0 0 0 0 0 +0.499 3.468 -1.293 0 0 0 0 0 0 0 +0.489 3.479 -1.297 0 0 0 0 0 0 0 +0.488 3.509 -1.309 0 0 0 0 0 0 0 +0.477 3.509 -1.308 0 0 0 0 0 0 0 +0.422 3.194 -1.18 0 0 0 0 0 0 0 +0.41 3.184 -1.175 0 0 0 0 0 0 0 +0.401 3.195 -1.179 0 0 0 0 0 0 0 +0.388 3.174 -1.17 0 0 0 0 0 0 0 +0.381 3.196 -1.178 0 0 0 0 0 0 0 +0.378 3.215 -1.186 0 0 0 0 0 0 0 +0.366 3.201 -1.18 0 0 0 0 0 0 0 +0.501 4.418 -1.673 0 0 0 0 0 0 0 +0.489 4.432 -1.678 0 0 0 0 0 0 0 +0.476 4.443 -1.682 0 0 0 0 0 0 0 +0.462 4.446 -1.683 0 0 0 0 0 0 0 +0.448 4.446 -1.682 0 0 0 0 0 0 0 +0.441 4.447 -1.682 0 0 0 0 0 0 0 +0.427 4.446 -1.681 0 0 0 0 0 0 0 +0.414 4.453 -1.683 0 0 0 0 0 0 0 +0.399 4.451 -1.682 0 0 0 0 0 0 0 +0.385 4.45 -1.681 0 0 0 0 0 0 0 +0.371 4.448 -1.68 0 0 0 0 0 0 0 +0.357 4.447 -1.679 0 0 0 0 0 0 0 +0.351 4.459 -1.683 0 0 0 0 0 0 0 +0.336 4.456 -1.682 0 0 0 0 0 0 0 +0.322 4.453 -1.68 0 0 0 0 0 0 0 +0.308 4.452 -1.68 0 0 0 0 0 0 0 +0.294 4.461 -1.683 0 0 0 0 0 0 0 +0.28 4.46 -1.682 0 0 0 0 0 0 0 +0.267 4.464 -1.683 0 0 0 0 0 0 0 +0.26 4.468 -1.685 0 0 0 0 0 0 0 +0.245 4.46 -1.681 0 0 0 0 0 0 0 +0.232 4.474 -1.686 0 0 0 0 0 0 0 +0.217 4.465 -1.683 0 0 0 0 0 0 0 +0.204 4.471 -1.685 0 0 0 0 0 0 0 +0.19 4.476 -1.686 0 0 0 0 0 0 0 +0.176 4.482 -1.689 0 0 0 0 0 0 0 +0.161 4.473 -1.685 0 0 0 0 0 0 0 +0.154 4.464 -1.681 0 0 0 0 0 0 0 +0.14 4.47 -1.683 0 0 0 0 0 0 0 +0.126 4.472 -1.684 0 0 0 0 0 0 0 +0.112 4.473 -1.684 0 0 0 0 0 0 0 +0.098 4.484 -1.689 0 0 0 0 0 0 0 +0.084 4.464 -1.68 0 0 0 0 0 0 0 +0.07 4.475 -1.685 0 0 0 0 0 0 0 +0.063 4.476 -1.685 0 0 0 0 0 0 0 +0.049 4.474 -1.684 0 0 0 0 0 0 0 +0.035 4.472 -1.683 0 0 0 0 0 0 0 +0.021 4.474 -1.684 0 0 0 0 0 0 0 +0.007 4.478 -1.686 0 0 0 0 0 0 0 +-0.007 4.474 -1.684 0 0 0 0 0 0 0 +-0.021 4.476 -1.685 0 0 0 0 0 0 0 +-0.028 4.478 -1.686 0 0 0 0 0 0 0 +-0.042 4.467 -1.681 0 0 0 0 0 0 0 +-0.056 4.47 -1.683 0 0 0 0 0 0 0 +-0.07 4.468 -1.682 0 0 0 0 0 0 0 +-0.085 4.468 -1.682 0 0 0 0 0 0 0 +-0.099 4.477 -1.686 0 0 0 0 0 0 0 +-0.112 4.458 -1.678 0 0 0 0 0 0 0 +-0.127 4.478 -1.686 0 0 0 0 0 0 0 +-0.134 4.476 -1.686 0 0 0 0 0 0 0 +-0.148 4.477 -1.686 0 0 0 0 0 0 0 +-0.162 4.471 -1.684 0 0 0 0 0 0 0 +-0.176 4.482 -1.689 0 0 0 0 0 0 0 +-0.191 4.487 -1.691 0 0 0 0 0 0 0 +-0.205 4.494 -1.694 0 0 0 0 0 0 0 +-0.221 4.541 -1.713 0 0 0 0 0 0 0 +-0.228 4.541 -1.713 0 0 0 0 0 0 0 +-0.242 4.533 -1.71 0 0 0 0 0 0 0 +-0.256 4.528 -1.709 0 0 0 0 0 0 0 +-0.271 4.531 -1.71 0 0 0 0 0 0 0 +-0.285 4.539 -1.714 0 0 0 0 0 0 0 +-0.3 4.544 -1.716 0 0 0 0 0 0 0 +-0.314 4.541 -1.716 0 0 0 0 0 0 0 +-0.322 4.546 -1.718 0 0 0 0 0 0 0 +-0.336 4.547 -1.719 0 0 0 0 0 0 0 +-0.35 4.539 -1.716 0 0 0 0 0 0 0 +-0.365 4.547 -1.719 0 0 0 0 0 0 0 +-0.379 4.547 -1.72 0 0 0 0 0 0 0 +-0.393 4.537 -1.716 0 0 0 0 0 0 0 +-0.408 4.552 -1.723 0 0 0 0 0 0 0 +-0.416 4.563 -1.728 0 0 0 0 0 0 0 +-0.43 4.552 -1.724 0 0 0 0 0 0 0 +-0.444 4.549 -1.723 0 0 0 0 0 0 0 +-0.459 4.555 -1.726 0 0 0 0 0 0 0 +-0.474 4.557 -1.728 0 0 0 0 0 0 0 +-0.488 4.559 -1.729 0 0 0 0 0 0 0 +-0.504 4.565 -1.732 0 0 0 0 0 0 0 +-0.51 4.555 -1.728 0 0 0 0 0 0 0 +-0.524 4.555 -1.729 0 0 0 0 0 0 0 +-0.54 4.563 -1.733 0 0 0 0 0 0 0 +-0.554 4.559 -1.732 0 0 0 0 0 0 0 +-0.568 4.558 -1.732 0 0 0 0 0 0 0 +-0.585 4.578 -1.741 0 0 0 0 0 0 0 +-0.597 4.556 -1.733 0 0 0 0 0 0 0 +-0.605 4.564 -1.736 0 0 0 0 0 0 0 +-0.62 4.566 -1.738 0 0 0 0 0 0 0 +-0.635 4.568 -1.739 0 0 0 0 0 0 0 +-0.65 4.573 -1.742 0 0 0 0 0 0 0 +-0.666 4.584 -1.748 0 0 0 0 0 0 0 +-0.682 4.591 -1.751 0 0 0 0 0 0 0 +-0.699 4.605 -1.758 0 0 0 0 0 0 0 +-0.713 4.597 -1.756 0 0 0 0 0 0 0 +-0.72 4.598 -1.757 0 0 0 0 0 0 0 +-0.738 4.618 -1.766 0 0 0 0 0 0 0 +-0.731 4.48 -1.71 0 0 0 0 0 0 0 +-0.767 4.611 -1.765 0 0 0 0 0 0 0 +-0.779 4.598 -1.76 0 0 0 0 0 0 0 +-0.823 4.682 -1.797 0 0 0 0 0 0 0 +-0.83 4.676 -1.795 0 0 0 0 0 0 0 +-0.842 4.657 -1.788 0 0 0 0 0 0 0 +-0.85 4.619 -1.774 0 0 0 0 0 0 0 +-0.862 4.6 -1.767 0 0 0 0 0 0 0 +-0.875 4.592 -1.765 0 0 0 0 0 0 0 +-0.89 4.595 -1.767 0 0 0 0 0 0 0 +-0.899 4.563 -1.755 0 0 0 0 0 0 0 +-0.911 4.583 -1.764 0 0 0 0 0 0 0 +-0.919 4.551 -1.752 0 0 0 0 0 0 0 +-0.933 4.543 -1.75 0 0 0 0 0 0 0 +-0.949 4.549 -1.754 0 0 0 0 0 0 0 +-0.962 4.54 -1.751 0 0 0 0 0 0 0 +-0.975 4.534 -1.75 0 0 0 0 0 0 0 +-0.993 4.547 -1.757 0 0 0 0 0 0 0 +-0.998 4.536 -1.753 0 0 0 0 0 0 0 +-1.013 4.533 -1.753 0 0 0 0 0 0 0 +-1.028 4.537 -1.756 0 0 0 0 0 0 0 +-1.041 4.527 -1.753 0 0 0 0 0 0 0 +-1.055 4.523 -1.753 0 0 0 0 0 0 0 +-1.073 4.536 -1.76 0 0 0 0 0 0 0 +-1.086 4.527 -1.757 0 0 0 0 0 0 0 +-1.101 4.528 -1.759 0 0 0 0 0 0 0 +-1.108 4.524 -1.758 0 0 0 0 0 0 0 +-1.12 4.513 -1.755 0 0 0 0 0 0 0 +-1.135 4.513 -1.757 0 0 0 0 0 0 0 +-1.151 4.515 -1.759 0 0 0 0 0 0 0 +-1.161 4.497 -1.753 0 0 0 0 0 0 0 +-1.174 4.488 -1.751 0 0 0 0 0 0 0 +-1.19 4.492 -1.754 0 0 0 0 0 0 0 +-1.192 4.468 -1.745 0 0 0 0 0 0 0 +-1.209 4.477 -1.75 0 0 0 0 0 0 0 +-1.225 4.482 -1.754 0 0 0 0 0 0 0 +-1.24 4.482 -1.755 0 0 0 0 0 0 0 +-1.251 4.465 -1.75 0 0 0 0 0 0 0 +-1.267 4.469 -1.753 0 0 0 0 0 0 0 +-1.277 4.449 -1.746 0 0 0 0 0 0 0 +-1.287 4.459 -1.751 0 0 0 0 0 0 0 +-1.3 4.45 -1.749 0 0 0 0 0 0 0 +-1.317 4.458 -1.754 0 0 0 0 0 0 0 +-1.329 4.447 -1.751 0 0 0 0 0 0 0 +-1.344 4.444 -1.752 0 0 0 0 0 0 0 +-1.355 4.431 -1.748 0 0 0 0 0 0 0 +-1.37 4.432 -1.751 0 0 0 0 0 0 0 +-1.381 4.442 -1.756 0 0 0 0 0 0 0 +-1.39 4.422 -1.749 0 0 0 0 0 0 0 +-1.41 4.435 -1.757 0 0 0 0 0 0 0 +-1.424 4.431 -1.757 0 0 0 0 0 0 0 +-1.432 4.409 -1.749 0 0 0 0 0 0 0 +-1.45 4.417 -1.754 0 0 0 0 0 0 0 +-1.468 4.424 -1.76 0 0 0 0 0 0 0 +-1.474 4.397 -1.75 0 0 0 0 0 0 0 +-1.487 4.412 -1.757 0 0 0 0 0 0 0 +-1.5 4.408 -1.757 0 0 0 0 0 0 0 +-1.51 4.389 -1.751 0 0 0 0 0 0 0 +-1.522 4.38 -1.75 0 0 0 0 0 0 0 +-1.541 4.39 -1.756 0 0 0 0 0 0 0 +-1.55 4.371 -1.75 0 0 0 0 0 0 0 +-1.564 4.368 -1.751 0 0 0 0 0 0 0 +-1.576 4.379 -1.757 0 0 0 0 0 0 0 +-1.585 4.362 -1.751 0 0 0 0 0 0 0 +-1.599 4.359 -1.752 0 0 0 0 0 0 0 +-1.62 4.371 -1.76 0 0 0 0 0 0 0 +-1.626 4.345 -1.751 0 0 0 0 0 0 0 +-1.639 4.34 -1.751 0 0 0 0 0 0 0 +-1.657 4.347 -1.756 0 0 0 0 0 0 0 +-1.66 4.332 -1.751 0 0 0 0 0 0 0 +-1.673 4.327 -1.751 0 0 0 0 0 0 0 +-1.693 4.337 -1.757 0 0 0 0 0 0 0 +-1.702 4.32 -1.752 0 0 0 0 0 0 0 +-1.715 4.314 -1.752 0 0 0 0 0 0 0 +-1.736 4.326 -1.76 0 0 0 0 0 0 0 +-1.743 4.305 -1.753 0 0 0 0 0 0 0 +-1.753 4.311 -1.757 0 0 0 0 0 0 0 +-1.77 4.313 -1.76 0 0 0 0 0 0 0 +-1.775 4.286 -1.751 0 0 0 0 0 0 0 +-1.792 4.289 -1.754 0 0 0 0 0 0 0 +-1.807 4.289 -1.757 0 0 0 0 0 0 0 +-1.816 4.273 -1.752 0 0 0 0 0 0 0 +-1.835 4.279 -1.757 0 0 0 0 0 0 0 +-1.852 4.282 -1.761 0 0 0 0 0 0 0 +-1.849 4.257 -1.751 0 0 0 0 0 0 0 +-1.864 4.254 -1.753 0 0 0 0 0 0 0 +-1.878 4.25 -1.754 0 0 0 0 0 0 0 +-1.888 4.236 -1.75 0 0 0 0 0 0 0 +-1.909 4.248 -1.758 0 0 0 0 0 0 0 +-1.92 4.237 -1.756 0 0 0 0 0 0 0 +-1.931 4.226 -1.754 0 0 0 0 0 0 0 +-1.943 4.233 -1.758 0 0 0 0 0 0 0 +-1.951 4.217 -1.754 0 0 0 0 0 0 0 +-1.963 4.208 -1.752 0 0 0 0 0 0 0 +-1.982 4.213 -1.757 0 0 0 0 0 0 0 +-1.993 4.202 -1.755 0 0 0 0 0 0 0 +-2.006 4.196 -1.755 0 0 0 0 0 0 0 +-2.023 4.198 -1.759 0 0 0 0 0 0 0 +-2.026 4.188 -1.756 0 0 0 0 0 0 0 +-2.039 4.18 -1.755 0 0 0 0 0 0 0 +-2.052 4.173 -1.755 0 0 0 0 0 0 0 +-2.064 4.165 -1.754 0 0 0 0 0 0 0 +-2.08 4.164 -1.757 0 0 0 0 0 0 0 +-2.095 4.162 -1.759 0 0 0 0 0 0 0 +-2.104 4.147 -1.755 0 0 0 0 0 0 0 +-2.111 4.146 -1.756 0 0 0 0 0 0 0 +-2.124 4.139 -1.756 0 0 0 0 0 0 0 +-2.14 4.137 -1.758 0 0 0 0 0 0 0 +-2.155 4.134 -1.76 0 0 0 0 0 0 0 +-2.168 4.129 -1.76 0 0 0 0 0 0 0 +-2.182 4.123 -1.761 0 0 0 0 0 0 0 +-2.187 4.1 -1.754 0 0 0 0 0 0 0 +-2.2 4.095 -1.754 0 0 0 0 0 0 0 +-2.208 4.095 -1.756 0 0 0 0 0 0 0 +-2.23 4.104 -1.763 0 0 0 0 0 0 0 +-2.264 4.136 -1.781 0 0 0 0 0 0 0 +-2.282 4.137 -1.785 0 0 0 0 0 0 0 +-2.29 4.122 -1.781 0 0 0 0 0 0 0 +-2.31 4.128 -1.787 0 0 0 0 0 0 0 +-2.303 4.085 -1.771 0 0 0 0 0 0 0 +-2.305 4.073 -1.767 0 0 0 0 0 0 0 +-2.313 4.058 -1.763 0 0 0 0 0 0 0 +-2.327 4.052 -1.764 0 0 0 0 0 0 0 +-2.345 4.054 -1.769 0 0 0 0 0 0 0 +-2.35 4.032 -1.762 0 0 0 0 0 0 0 +-2.365 4.03 -1.764 0 0 0 0 0 0 0 +-2.382 4.029 -1.767 0 0 0 0 0 0 0 +-2.389 4.013 -1.763 0 0 0 0 0 0 0 +-2.395 4.008 -1.763 0 0 0 0 0 0 0 +-2.405 3.996 -1.76 0 0 0 0 0 0 0 +-2.418 3.99 -1.761 0 0 0 0 0 0 0 +-2.423 3.969 -1.755 0 0 0 0 0 0 0 +-2.437 3.965 -1.757 0 0 0 0 0 0 0 +-2.447 3.952 -1.754 0 0 0 0 0 0 0 +-2.462 3.949 -1.757 0 0 0 0 0 0 0 +-2.464 3.938 -1.753 0 0 0 0 0 0 0 +-2.479 3.935 -1.755 0 0 0 0 0 0 0 +-2.498 3.938 -1.76 0 0 0 0 0 0 0 +-2.512 3.933 -1.762 0 0 0 0 0 0 0 +-2.53 3.933 -1.766 0 0 0 0 0 0 0 +-2.531 3.908 -1.757 0 0 0 0 0 0 0 +-2.536 3.889 -1.752 0 0 0 0 0 0 0 +-2.547 3.893 -1.756 0 0 0 0 0 0 0 +-2.561 3.886 -1.757 0 0 0 0 0 0 0 +-2.572 3.877 -1.756 0 0 0 0 0 0 0 +-2.59 3.878 -1.76 0 0 0 0 0 0 0 +-2.604 3.873 -1.762 0 0 0 0 0 0 0 +-2.609 3.854 -1.757 0 0 0 0 0 0 0 +-2.622 3.847 -1.757 0 0 0 0 0 0 0 +-2.639 3.858 -1.765 0 0 0 0 0 0 0 +-2.653 3.853 -1.766 0 0 0 0 0 0 0 +-2.662 3.84 -1.764 0 0 0 0 0 0 0 +-2.684 3.846 -1.771 0 0 0 0 0 0 0 +-2.714 3.863 -1.784 0 0 0 0 0 0 0 +-3.21 3.409 -1.768 0 0 0 0 0 0 0 +-3.21 3.388 -1.762 0 0 0 0 0 0 0 +-3.216 3.372 -1.759 0 0 0 0 0 0 0 +-3.235 3.371 -1.764 0 0 0 0 0 0 0 +-3.241 3.356 -1.761 0 0 0 0 0 0 0 +-3.25 3.355 -1.763 0 0 0 0 0 0 0 +-3.254 3.338 -1.76 0 0 0 0 0 0 0 +-3.27 3.333 -1.763 0 0 0 0 0 0 0 +-3.283 3.325 -1.764 0 0 0 0 0 0 0 +-3.297 3.319 -1.766 0 0 0 0 0 0 0 +-3.305 3.306 -1.765 0 0 0 0 0 0 0 +-3.305 3.285 -1.759 0 0 0 0 0 0 0 +-3.318 3.288 -1.763 0 0 0 0 0 0 0 +-3.324 3.273 -1.761 0 0 0 0 0 0 0 +-3.334 3.263 -1.761 0 0 0 0 0 0 0 +-3.35 3.258 -1.764 0 0 0 0 0 0 0 +-3.351 3.238 -1.759 0 0 0 0 0 0 0 +-3.373 3.239 -1.766 0 0 0 0 0 0 0 +-3.38 3.226 -1.764 0 0 0 0 0 0 0 +-3.396 3.231 -1.77 0 0 0 0 0 0 0 +-3.397 3.211 -1.765 0 0 0 0 0 0 0 +-3.406 3.199 -1.764 0 0 0 0 0 0 0 +-3.42 3.192 -1.766 0 0 0 0 0 0 0 +-3.426 3.178 -1.764 0 0 0 0 0 0 0 +-3.441 3.172 -1.767 0 0 0 0 0 0 0 +-3.446 3.156 -1.764 0 0 0 0 0 0 0 +-3.455 3.145 -1.764 0 0 0 0 0 0 0 +-3.464 3.144 -1.766 0 0 0 0 0 0 0 +-3.48 3.138 -1.769 0 0 0 0 0 0 0 +-3.487 3.124 -1.768 0 0 0 0 0 0 0 +-3.491 3.108 -1.765 0 0 0 0 0 0 0 +-3.506 3.102 -1.768 0 0 0 0 0 0 0 +-3.513 3.089 -1.766 0 0 0 0 0 0 0 +-3.522 3.077 -1.766 0 0 0 0 0 0 0 +-3.532 3.076 -1.769 0 0 0 0 0 0 0 +-3.545 3.067 -1.77 0 0 0 0 0 0 0 +-3.549 3.051 -1.767 0 0 0 0 0 0 0 +-3.554 3.037 -1.765 0 0 0 0 0 0 0 +-3.562 3.024 -1.764 0 0 0 0 0 0 0 +-3.576 3.017 -1.766 0 0 0 0 0 0 0 +-3.588 3.008 -1.768 0 0 0 0 0 0 0 +-3.59 3 -1.766 0 0 0 0 0 0 0 +-3.591 2.981 -1.762 0 0 0 0 0 0 0 +-3.606 2.975 -1.765 0 0 0 0 0 0 0 +-3.612 2.961 -1.763 0 0 0 0 0 0 0 +-3.635 2.96 -1.77 0 0 0 0 0 0 0 +-3.641 2.946 -1.769 0 0 0 0 0 0 0 +-3.646 2.931 -1.766 0 0 0 0 0 0 0 +-3.653 2.928 -1.768 0 0 0 0 0 0 0 +-3.658 2.913 -1.766 0 0 0 0 0 0 0 +-3.664 2.899 -1.764 0 0 0 0 0 0 0 +-3.673 2.888 -1.764 0 0 0 0 0 0 0 +-3.691 2.883 -1.769 0 0 0 0 0 0 0 +-3.702 2.873 -1.769 0 0 0 0 0 0 0 +-3.709 2.86 -1.769 0 0 0 0 0 0 0 +-3.711 2.842 -1.765 0 0 0 0 0 0 0 +-3.715 2.837 -1.765 0 0 0 0 0 0 0 +-3.724 2.825 -1.765 0 0 0 0 0 0 0 +-3.739 2.818 -1.768 0 0 0 0 0 0 0 +-3.752 2.809 -1.77 0 0 0 0 0 0 0 +-3.76 2.796 -1.769 0 0 0 0 0 0 0 +-3.765 2.782 -1.768 0 0 0 0 0 0 0 +-3.77 2.767 -1.766 0 0 0 0 0 0 0 +-3.784 2.769 -1.771 0 0 0 0 0 0 0 +-3.79 2.755 -1.769 0 0 0 0 0 0 0 +-3.796 2.741 -1.768 0 0 0 0 0 0 0 +-3.813 2.735 -1.772 0 0 0 0 0 0 0 +-3.82 2.722 -1.772 0 0 0 0 0 0 0 +-3.832 2.712 -1.773 0 0 0 0 0 0 0 +-3.833 2.695 -1.769 0 0 0 0 0 0 0 +-3.845 2.694 -1.773 0 0 0 0 0 0 0 +-3.852 2.681 -1.772 0 0 0 0 0 0 0 +-3.871 2.677 -1.778 0 0 0 0 0 0 0 +-3.865 2.655 -1.771 0 0 0 0 0 0 0 +-3.88 2.647 -1.774 0 0 0 0 0 0 0 +-3.884 2.632 -1.772 0 0 0 0 0 0 0 +-3.903 2.627 -1.777 0 0 0 0 0 0 0 +-3.907 2.621 -1.777 0 0 0 0 0 0 0 +-3.915 2.608 -1.777 0 0 0 0 0 0 0 +-3.926 2.598 -1.778 0 0 0 0 0 0 0 +-3.94 2.59 -1.781 0 0 0 0 0 0 0 +-3.947 2.576 -1.781 0 0 0 0 0 0 0 +-3.963 2.569 -1.784 0 0 0 0 0 0 0 +-3.974 2.559 -1.786 0 0 0 0 0 0 0 +-3.981 2.554 -1.787 0 0 0 0 0 0 0 +-3.989 2.542 -1.787 0 0 0 0 0 0 0 +-3.994 2.527 -1.786 0 0 0 0 0 0 0 +-4.007 2.518 -1.788 0 0 0 0 0 0 0 +-4.008 2.501 -1.785 0 0 0 0 0 0 0 +-4.022 2.493 -1.788 0 0 0 0 0 0 0 +-4.029 2.479 -1.787 0 0 0 0 0 0 0 +-4.031 2.472 -1.787 0 0 0 0 0 0 0 +-4.037 2.458 -1.786 0 0 0 0 0 0 0 +-4.043 2.444 -1.785 0 0 0 0 0 0 0 +-4.041 2.426 -1.781 0 0 0 0 0 0 0 +-4.055 2.417 -1.784 0 0 0 0 0 0 0 +-4.055 2.399 -1.78 0 0 0 0 0 0 0 +-4.067 2.389 -1.782 0 0 0 0 0 0 0 +-4.091 2.386 -1.79 0 0 0 0 0 0 0 +-4.106 2.386 -1.795 0 0 0 0 0 0 0 +-4.121 2.378 -1.798 0 0 0 0 0 0 0 +-4.133 2.368 -1.801 0 0 0 0 0 0 0 +-4.134 2.351 -1.798 0 0 0 0 0 0 0 +-4.138 2.336 -1.796 0 0 0 0 0 0 0 +-4.139 2.32 -1.793 0 0 0 0 0 0 0 +-4.142 2.304 -1.791 0 0 0 0 0 0 0 +-4.142 2.296 -1.79 0 0 0 0 0 0 0 +-4.146 2.281 -1.788 0 0 0 0 0 0 0 +-4.153 2.268 -1.788 0 0 0 0 0 0 0 +-4.164 2.256 -1.79 0 0 0 0 0 0 0 +-4.164 2.24 -1.787 0 0 0 0 0 0 0 +-4.178 2.23 -1.79 0 0 0 0 0 0 0 +-4.173 2.211 -1.784 0 0 0 0 0 0 0 +-4.183 2.208 -1.787 0 0 0 0 0 0 0 +-4.18 2.19 -1.783 0 0 0 0 0 0 0 +-4.181 2.173 -1.78 0 0 0 0 0 0 0 +-4.21 2.172 -1.79 0 0 0 0 0 0 0 +-4.209 2.154 -1.787 0 0 0 0 0 0 0 +-4.219 2.143 -1.788 0 0 0 0 0 0 0 +-4.231 2.132 -1.79 0 0 0 0 0 0 0 +-4.214 2.115 -1.781 0 0 0 0 0 0 0 +-4.231 2.107 -1.786 0 0 0 0 0 0 0 +-4.217 2.084 -1.777 0 0 0 0 0 0 0 +-4.239 2.078 -1.784 0 0 0 0 0 0 0 +-4.352 -1.963 -1.805 0 0 0 0 0 0 0 +-4.375 -1.99 -1.818 0 0 0 0 0 0 0 +-4.365 -2.002 -1.816 0 0 0 0 0 0 0 +-4.349 -2.011 -1.812 0 0 0 0 0 0 0 +-4.344 -2.026 -1.813 0 0 0 0 0 0 0 +-4.344 -2.043 -1.816 0 0 0 0 0 0 0 +-4.338 -2.048 -1.814 0 0 0 0 0 0 0 +-4.338 -2.065 -1.817 0 0 0 0 0 0 0 +-4.322 -2.073 -1.813 0 0 0 0 0 0 0 +-4.307 -2.083 -1.809 0 0 0 0 0 0 0 +-4.305 -2.099 -1.811 0 0 0 0 0 0 0 +-4.3 -2.113 -1.812 0 0 0 0 0 0 0 +-4.295 -2.128 -1.813 0 0 0 0 0 0 0 +-4.298 -2.138 -1.816 0 0 0 0 0 0 0 +-4.283 -2.147 -1.812 0 0 0 0 0 0 0 +-4.268 -2.156 -1.808 0 0 0 0 0 0 0 +-4.26 -2.169 -1.807 0 0 0 0 0 0 0 +-4.261 -2.186 -1.811 0 0 0 0 0 0 0 +-4.256 -2.201 -1.812 0 0 0 0 0 0 0 +-4.246 -2.212 -1.81 0 0 0 0 0 0 0 +-4.242 -2.219 -1.81 0 0 0 0 0 0 0 +-4.235 -2.232 -1.81 0 0 0 0 0 0 0 +-4.225 -2.244 -1.809 0 0 0 0 0 0 0 +-4.218 -2.257 -1.809 0 0 0 0 0 0 0 +-4.214 -2.272 -1.81 0 0 0 0 0 0 0 +-4.21 -2.287 -1.812 0 0 0 0 0 0 0 +-4.2 -2.299 -1.81 0 0 0 0 0 0 0 +-4.199 -2.307 -1.812 0 0 0 0 0 0 0 +-4.181 -2.314 -1.807 0 0 0 0 0 0 0 +-4.169 -2.324 -1.804 0 0 0 0 0 0 0 +-4.169 -2.342 -1.808 0 0 0 0 0 0 0 +-4.162 -2.355 -1.808 0 0 0 0 0 0 0 +-4.158 -2.37 -1.81 0 0 0 0 0 0 0 +-4.146 -2.38 -1.807 0 0 0 0 0 0 0 +-4.143 -2.388 -1.808 0 0 0 0 0 0 0 +-4.133 -2.399 -1.807 0 0 0 0 0 0 0 +-4.13 -2.414 -1.809 0 0 0 0 0 0 0 +-4.126 -2.429 -1.81 0 0 0 0 0 0 0 +-4.118 -2.442 -1.81 0 0 0 0 0 0 0 +-4.107 -2.453 -1.809 0 0 0 0 0 0 0 +-4.095 -2.463 -1.807 0 0 0 0 0 0 0 +-4.086 -2.467 -1.804 0 0 0 0 0 0 0 +-4.083 -2.483 -1.807 0 0 0 0 0 0 0 +-4.08 -2.498 -1.809 0 0 0 0 0 0 0 +-4.08 -2.516 -1.813 0 0 0 0 0 0 0 +-4.069 -2.527 -1.811 0 0 0 0 0 0 0 +-4.062 -2.541 -1.812 0 0 0 0 0 0 0 +-4.042 -2.545 -1.806 0 0 0 0 0 0 0 +-4.046 -2.557 -1.81 0 0 0 0 0 0 0 +-4.036 -2.568 -1.809 0 0 0 0 0 0 0 +-4.023 -2.578 -1.807 0 0 0 0 0 0 0 +-4.021 -2.595 -1.81 0 0 0 0 0 0 0 +-4.013 -2.607 -1.81 0 0 0 0 0 0 0 +-4.005 -2.62 -1.81 0 0 0 0 0 0 0 +-3.995 -2.631 -1.809 0 0 0 0 0 0 0 +-3.988 -2.645 -1.81 0 0 0 0 0 0 0 +-3.98 -2.648 -1.807 0 0 0 0 0 0 0 +-3.968 -2.659 -1.806 0 0 0 0 0 0 0 +-3.96 -2.671 -1.806 0 0 0 0 0 0 0 +-3.965 -2.693 -1.813 0 0 0 0 0 0 0 +-3.948 -2.699 -1.808 0 0 0 0 0 0 0 +-3.934 -2.708 -1.806 0 0 0 0 0 0 0 +-3.932 -2.725 -1.809 0 0 0 0 0 0 0 +-3.923 -2.728 -1.807 0 0 0 0 0 0 0 +-3.913 -2.739 -1.806 0 0 0 0 0 0 0 +-3.908 -2.754 -1.807 0 0 0 0 0 0 0 +-3.899 -2.766 -1.807 0 0 0 0 0 0 0 +-3.892 -2.779 -1.808 0 0 0 0 0 0 0 +-3.886 -2.793 -1.81 0 0 0 0 0 0 0 +-3.868 -2.799 -1.805 0 0 0 0 0 0 0 +-3.865 -2.806 -1.806 0 0 0 0 0 0 0 +-3.861 -2.822 -1.808 0 0 0 0 0 0 0 +-3.853 -2.835 -1.809 0 0 0 0 0 0 0 +-3.843 -2.846 -1.808 0 0 0 0 0 0 0 +-3.83 -2.855 -1.806 0 0 0 0 0 0 0 +-3.828 -2.872 -1.81 0 0 0 0 0 0 0 +-3.823 -2.888 -1.812 0 0 0 0 0 0 0 +-3.807 -2.885 -1.806 0 0 0 0 0 0 0 +-3.807 -2.903 -1.81 0 0 0 0 0 0 0 +-3.798 -2.915 -1.81 0 0 0 0 0 0 0 +-3.781 -2.922 -1.807 0 0 0 0 0 0 0 +-3.779 -2.939 -1.81 0 0 0 0 0 0 0 +-3.763 -2.945 -1.807 0 0 0 0 0 0 0 +-3.753 -2.957 -1.807 0 0 0 0 0 0 0 +-3.756 -2.969 -1.81 0 0 0 0 0 0 0 +-3.741 -2.976 -1.807 0 0 0 0 0 0 0 +-3.73 -2.986 -1.807 0 0 0 0 0 0 0 +-3.727 -3.003 -1.81 0 0 0 0 0 0 0 +-3.714 -3.012 -1.808 0 0 0 0 0 0 0 +-3.703 -3.023 -1.807 0 0 0 0 0 0 0 +-3.7 -3.039 -1.81 0 0 0 0 0 0 0 +-3.692 -3.042 -1.809 0 0 0 0 0 0 0 +-3.684 -3.055 -1.81 0 0 0 0 0 0 0 +-3.683 -3.074 -1.814 0 0 0 0 0 0 0 +-3.659 -3.074 -1.807 0 0 0 0 0 0 0 +-3.655 -3.09 -1.81 0 0 0 0 0 0 0 +-3.651 -3.106 -1.813 0 0 0 0 0 0 0 +-3.634 -3.111 -1.809 0 0 0 0 0 0 0 +-3.629 -3.117 -1.809 0 0 0 0 0 0 0 +-3.625 -3.133 -1.812 0 0 0 0 0 0 0 +-3.604 -3.135 -1.806 0 0 0 0 0 0 0 +-3.606 -3.157 -1.813 0 0 0 0 0 0 0 +-3.602 -3.174 -1.816 0 0 0 0 0 0 0 +-3.588 -3.181 -1.813 0 0 0 0 0 0 0 +-3.583 -3.197 -1.816 0 0 0 0 0 0 0 +-3.601 -3.233 -1.831 0 0 0 0 0 0 0 +-3.568 -3.214 -1.816 0 0 0 0 0 0 0 +-3.562 -3.229 -1.819 0 0 0 0 0 0 0 +-3.559 -3.246 -1.822 0 0 0 0 0 0 0 +-3.535 -3.245 -1.815 0 0 0 0 0 0 0 +-3.535 -3.265 -1.82 0 0 0 0 0 0 0 +-3.526 -3.277 -1.821 0 0 0 0 0 0 0 +-3.458 -3.235 -1.79 0 0 0 0 0 0 0 +-3.502 -3.286 -1.816 0 0 0 0 0 0 0 +-3.494 -3.3 -1.818 0 0 0 0 0 0 0 +-3.492 -3.318 -1.822 0 0 0 0 0 0 0 +-3.465 -3.314 -1.813 0 0 0 0 0 0 0 +-3.474 -3.343 -1.824 0 0 0 0 0 0 0 +-3.447 -3.338 -1.815 0 0 0 0 0 0 0 +-3.465 -3.376 -1.831 0 0 0 0 0 0 0 +-3.461 -3.383 -1.831 0 0 0 0 0 0 0 +-3.456 -3.399 -1.834 0 0 0 0 0 0 0 +-3.471 -3.436 -1.849 0 0 0 0 0 0 0 +-3.426 -3.413 -1.83 0 0 0 0 0 0 0 +-3.409 -3.417 -1.826 0 0 0 0 0 0 0 +-2.822 -3.831 -1.798 0 0 0 0 0 0 0 +-2.82 -3.841 -1.801 0 0 0 0 0 0 0 +-2.808 -3.85 -1.801 0 0 0 0 0 0 0 +-2.79 -3.85 -1.797 0 0 0 0 0 0 0 +-2.775 -3.856 -1.795 0 0 0 0 0 0 0 +-2.761 -3.861 -1.794 0 0 0 0 0 0 0 +-2.751 -3.873 -1.795 0 0 0 0 0 0 0 +-2.734 -3.876 -1.793 0 0 0 0 0 0 0 +-2.732 -3.884 -1.795 0 0 0 0 0 0 0 +-2.717 -3.89 -1.793 0 0 0 0 0 0 0 +-2.704 -3.897 -1.793 0 0 0 0 0 0 0 +-2.691 -3.904 -1.792 0 0 0 0 0 0 0 +-2.679 -3.914 -1.793 0 0 0 0 0 0 0 +-2.669 -3.925 -1.794 0 0 0 0 0 0 0 +-2.656 -3.932 -1.793 0 0 0 0 0 0 0 +-2.646 -3.944 -1.795 0 0 0 0 0 0 0 +-2.634 -3.94 -1.791 0 0 0 0 0 0 0 +-2.622 -3.948 -1.791 0 0 0 0 0 0 0 +-2.61 -3.958 -1.792 0 0 0 0 0 0 0 +-2.597 -3.965 -1.791 0 0 0 0 0 0 0 +-2.585 -3.974 -1.792 0 0 0 0 0 0 0 +-2.57 -3.978 -1.79 0 0 0 0 0 0 0 +-2.559 -3.989 -1.791 0 0 0 0 0 0 0 +-2.558 -4.001 -1.795 0 0 0 0 0 0 0 +-2.538 -3.996 -1.789 0 0 0 0 0 0 0 +-2.53 -4.012 -1.793 0 0 0 0 0 0 0 +-2.518 -4.022 -1.793 0 0 0 0 0 0 0 +-2.502 -4.023 -1.79 0 0 0 0 0 0 0 +-2.487 -4.028 -1.789 0 0 0 0 0 0 0 +-2.486 -4.055 -1.798 0 0 0 0 0 0 0 +-2.471 -4.044 -1.791 0 0 0 0 0 0 0 +-2.454 -4.046 -1.788 0 0 0 0 0 0 0 +-2.449 -4.064 -1.793 0 0 0 0 0 0 0 +-2.429 -4.061 -1.788 0 0 0 0 0 0 0 +-2.418 -4.072 -1.79 0 0 0 0 0 0 0 +-2.413 -4.092 -1.795 0 0 0 0 0 0 0 +-2.388 -4.079 -1.786 0 0 0 0 0 0 0 +-2.385 -4.089 -1.789 0 0 0 0 0 0 0 +-2.372 -4.097 -1.789 0 0 0 0 0 0 0 +-2.36 -4.106 -1.79 0 0 0 0 0 0 0 +-2.346 -4.11 -1.788 0 0 0 0 0 0 0 +-2.343 -4.135 -1.796 0 0 0 0 0 0 0 +-2.322 -4.128 -1.79 0 0 0 0 0 0 0 +-2.307 -4.132 -1.788 0 0 0 0 0 0 0 +-2.306 -4.145 -1.793 0 0 0 0 0 0 0 +-2.288 -4.144 -1.789 0 0 0 0 0 0 0 +-2.277 -4.155 -1.79 0 0 0 0 0 0 0 +-2.272 -4.176 -1.797 0 0 0 0 0 0 0 +-2.253 -4.174 -1.793 0 0 0 0 0 0 0 +-2.239 -4.177 -1.791 0 0 0 0 0 0 0 +-2.23 -4.193 -1.795 0 0 0 0 0 0 0 +-2.232 -4.212 -1.802 0 0 0 0 0 0 0 +-2.217 -4.216 -1.801 0 0 0 0 0 0 0 +-2.205 -4.225 -1.801 0 0 0 0 0 0 0 +-2.188 -4.225 -1.798 0 0 0 0 0 0 0 +-2.178 -4.239 -1.801 0 0 0 0 0 0 0 +-2.157 -4.231 -1.795 0 0 0 0 0 0 0 +-2.158 -4.265 -1.807 0 0 0 0 0 0 0 +-2.167 -4.298 -1.821 0 0 0 0 0 0 0 +-2.181 -4.36 -1.846 0 0 0 0 0 0 0 +-2.142 -4.317 -1.823 0 0 0 0 0 0 0 +-2.119 -4.305 -1.815 0 0 0 0 0 0 0 +-2.089 -4.279 -1.8 0 0 0 0 0 0 0 +-2.06 -4.254 -1.786 0 0 0 0 0 0 0 +-2.061 -4.289 -1.798 0 0 0 0 0 0 0 +-2.055 -4.293 -1.799 0 0 0 0 0 0 0 +-2.041 -4.3 -1.799 0 0 0 0 0 0 0 +-2.026 -4.303 -1.798 0 0 0 0 0 0 0 +-2.007 -4.297 -1.793 0 0 0 0 0 0 0 +-1.986 -4.287 -1.785 0 0 0 0 0 0 0 +-1.969 -4.286 -1.782 0 0 0 0 0 0 0 +-1.952 -4.284 -1.778 0 0 0 0 0 0 0 +-1.944 -4.284 -1.777 0 0 0 0 0 0 0 +-1.932 -4.295 -1.779 0 0 0 0 0 0 0 +-1.915 -4.293 -1.775 0 0 0 0 0 0 0 +-1.897 -4.289 -1.771 0 0 0 0 0 0 0 +-1.887 -4.301 -1.774 0 0 0 0 0 0 0 +-1.871 -4.302 -1.772 0 0 0 0 0 0 0 +-1.857 -4.306 -1.771 0 0 0 0 0 0 0 +-1.848 -4.306 -1.769 0 0 0 0 0 0 0 +-1.833 -4.306 -1.767 0 0 0 0 0 0 0 +-1.818 -4.309 -1.766 0 0 0 0 0 0 0 +-1.805 -4.318 -1.767 0 0 0 0 0 0 0 +-1.79 -4.318 -1.765 0 0 0 0 0 0 0 +-1.775 -4.321 -1.763 0 0 0 0 0 0 0 +-1.765 -4.335 -1.767 0 0 0 0 0 0 0 +-1.754 -4.327 -1.763 0 0 0 0 0 0 0 +-1.737 -4.326 -1.76 0 0 0 0 0 0 0 +-1.726 -4.336 -1.762 0 0 0 0 0 0 0 +-1.711 -4.34 -1.761 0 0 0 0 0 0 0 +-1.697 -4.344 -1.76 0 0 0 0 0 0 0 +-1.681 -4.344 -1.758 0 0 0 0 0 0 0 +-1.666 -4.346 -1.757 0 0 0 0 0 0 0 +-1.66 -4.348 -1.757 0 0 0 0 0 0 0 +-1.649 -4.36 -1.76 0 0 0 0 0 0 0 +-1.631 -4.357 -1.756 0 0 0 0 0 0 0 +-1.62 -4.367 -1.758 0 0 0 0 0 0 0 +-1.603 -4.365 -1.755 0 0 0 0 0 0 0 +-1.59 -4.372 -1.756 0 0 0 0 0 0 0 +-1.572 -4.365 -1.751 0 0 0 0 0 0 0 +-1.56 -4.375 -1.753 0 0 0 0 0 0 0 +-1.551 -4.37 -1.75 0 0 0 0 0 0 0 +-1.537 -4.375 -1.75 0 0 0 0 0 0 0 +-1.526 -4.387 -1.753 0 0 0 0 0 0 0 +-1.51 -4.387 -1.751 0 0 0 0 0 0 0 +-1.498 -4.397 -1.753 0 0 0 0 0 0 0 +-1.481 -4.391 -1.748 0 0 0 0 0 0 0 +-1.469 -4.401 -1.751 0 0 0 0 0 0 0 +-1.459 -4.394 -1.747 0 0 0 0 0 0 0 +-1.447 -4.404 -1.749 0 0 0 0 0 0 0 +-1.433 -4.407 -1.748 0 0 0 0 0 0 0 +-1.417 -4.406 -1.746 0 0 0 0 0 0 0 +-1.404 -4.414 -1.748 0 0 0 0 0 0 0 +-1.388 -4.409 -1.744 0 0 0 0 0 0 0 +-1.381 -4.412 -1.744 0 0 0 0 0 0 0 +-1.366 -4.414 -1.743 0 0 0 0 0 0 0 +-1.353 -4.422 -1.745 0 0 0 0 0 0 0 +-1.338 -4.423 -1.743 0 0 0 0 0 0 0 +-1.323 -4.423 -1.742 0 0 0 0 0 0 0 +-1.311 -4.433 -1.744 0 0 0 0 0 0 0 +-1.296 -4.433 -1.742 0 0 0 0 0 0 0 +-1.279 -4.427 -1.738 0 0 0 0 0 0 0 +-1.275 -4.438 -1.742 0 0 0 0 0 0 0 +-1.259 -4.436 -1.739 0 0 0 0 0 0 0 +-1.247 -4.447 -1.742 0 0 0 0 0 0 0 +-1.232 -4.446 -1.74 0 0 0 0 0 0 0 +-1.216 -4.444 -1.738 0 0 0 0 0 0 0 +-1.204 -4.453 -1.74 0 0 0 0 0 0 0 +-1.188 -4.45 -1.737 0 0 0 0 0 0 0 +-1.18 -4.45 -1.736 0 0 0 0 0 0 0 +-1.165 -4.45 -1.735 0 0 0 0 0 0 0 +-1.15 -4.448 -1.733 0 0 0 0 0 0 0 +-1.138 -4.461 -1.736 0 0 0 0 0 0 0 +-1.124 -4.465 -1.736 0 0 0 0 0 0 0 +-1.109 -4.463 -1.734 0 0 0 0 0 0 0 +-1.095 -4.468 -1.735 0 0 0 0 0 0 0 +-1.088 -4.47 -1.735 0 0 0 0 0 0 0 +-1.076 -4.478 -1.737 0 0 0 0 0 0 0 +-1.063 -4.487 -1.739 0 0 0 0 0 0 0 +-1.048 -4.489 -1.739 0 0 0 0 0 0 0 +-1.034 -4.492 -1.739 0 0 0 0 0 0 0 +-1.017 -4.483 -1.733 0 0 0 0 0 0 0 +-1.006 -4.497 -1.738 0 0 0 0 0 0 0 +-0.997 -4.491 -1.735 0 0 0 0 0 0 0 +-0.984 -4.5 -1.737 0 0 0 0 0 0 0 +-0.968 -4.495 -1.734 0 0 0 0 0 0 0 +-0.957 -4.509 -1.739 0 0 0 0 0 0 0 +-0.942 -4.509 -1.737 0 0 0 0 0 0 0 +-0.926 -4.504 -1.734 0 0 0 0 0 0 0 +-0.916 -4.525 -1.742 0 0 0 0 0 0 0 +-0.905 -4.512 -1.736 0 0 0 0 0 0 0 +-0.894 -4.528 -1.741 0 0 0 0 0 0 0 +-0.879 -4.527 -1.739 0 0 0 0 0 0 0 +-0.862 -4.517 -1.734 0 0 0 0 0 0 0 +-0.85 -4.531 -1.739 0 0 0 0 0 0 0 +-0.836 -4.533 -1.739 0 0 0 0 0 0 0 +-0.818 -4.519 -1.732 0 0 0 0 0 0 0 +-0.814 -4.533 -1.737 0 0 0 0 0 0 0 +-0.802 -4.549 -1.742 0 0 0 0 0 0 0 +-0.785 -4.538 -1.737 0 0 0 0 0 0 0 +-0.771 -4.541 -1.737 0 0 0 0 0 0 0 +-0.76 -4.56 -1.744 0 0 0 0 0 0 0 +-0.74 -4.533 -1.732 0 0 0 0 0 0 0 +-0.73 -4.559 -1.742 0 0 0 0 0 0 0 +-0.722 -4.555 -1.739 0 0 0 0 0 0 0 +-0.708 -4.56 -1.741 0 0 0 0 0 0 0 +-0.693 -4.557 -1.739 0 0 0 0 0 0 0 +-0.68 -4.568 -1.742 0 0 0 0 0 0 0 +-0.662 -4.543 -1.731 0 0 0 0 0 0 0 +-0.651 -4.567 -1.74 0 0 0 0 0 0 0 +-0.637 -4.573 -1.742 0 0 0 0 0 0 0 +-0.628 -4.565 -1.738 0 0 0 0 0 0 0 +-0.614 -4.565 -1.737 0 0 0 0 0 0 0 +-0.6 -4.572 -1.739 0 0 0 0 0 0 0 +-0.585 -4.569 -1.737 0 0 0 0 0 0 0 +-0.571 -4.574 -1.739 0 0 0 0 0 0 0 +-0.557 -4.581 -1.741 0 0 0 0 0 0 0 +-0.543 -4.585 -1.742 0 0 0 0 0 0 0 +-0.535 -4.578 -1.739 0 0 0 0 0 0 0 +-0.521 -4.586 -1.741 0 0 0 0 0 0 0 +-0.506 -4.578 -1.737 0 0 0 0 0 0 0 +-0.493 -4.592 -1.742 0 0 0 0 0 0 0 +-0.478 -4.587 -1.739 0 0 0 0 0 0 0 +-0.465 -4.599 -1.744 0 0 0 0 0 0 0 +-0.449 -4.591 -1.74 0 0 0 0 0 0 0 +-0.442 -4.592 -1.74 0 0 0 0 0 0 0 +-0.428 -4.595 -1.741 0 0 0 0 0 0 0 +-0.413 -4.593 -1.739 0 0 0 0 0 0 0 +-0.399 -4.603 -1.743 0 0 0 0 0 0 0 +-0.385 -4.603 -1.742 0 0 0 0 0 0 0 +-0.37 -4.604 -1.742 0 0 0 0 0 0 0 +-0.356 -4.605 -1.742 0 0 0 0 0 0 0 +-0.348 -4.604 -1.742 0 0 0 0 0 0 0 +-0.334 -4.607 -1.742 0 0 0 0 0 0 0 +-0.319 -4.602 -1.74 0 0 0 0 0 0 0 +-0.305 -4.609 -1.742 0 0 0 0 0 0 0 +-0.29 -4.608 -1.742 0 0 0 0 0 0 0 +-0.276 -4.611 -1.742 0 0 0 0 0 0 0 +-0.262 -4.61 -1.742 0 0 0 0 0 0 0 +-0.254 -4.606 -1.74 0 0 0 0 0 0 0 +-0.24 -4.611 -1.742 0 0 0 0 0 0 0 +-0.225 -4.613 -1.742 0 0 0 0 0 0 0 +-0.211 -4.61 -1.741 0 0 0 0 0 0 0 +-0.197 -4.617 -1.743 0 0 0 0 0 0 0 +-0.182 -4.617 -1.743 0 0 0 0 0 0 0 +-0.167 -4.616 -1.742 0 0 0 0 0 0 0 +-0.16 -4.622 -1.745 0 0 0 0 0 0 0 +-0.146 -4.617 -1.742 0 0 0 0 0 0 0 +-0.131 -4.619 -1.743 0 0 0 0 0 0 0 +-0.117 -4.63 -1.748 0 0 0 0 0 0 0 +-0.102 -4.62 -1.743 0 0 0 0 0 0 0 +-0.088 -4.62 -1.743 0 0 0 0 0 0 0 +-0.073 -4.615 -1.741 0 0 0 0 0 0 0 +-0.066 -4.624 -1.745 0 0 0 0 0 0 0 +-0.052 -4.626 -1.745 0 0 0 0 0 0 0 +-0.037 -4.626 -1.745 0 0 0 0 0 0 0 +-0.022 -4.621 -1.743 0 0 0 0 0 0 0 +-0.008 -4.617 -1.742 0 0 0 0 0 0 0 +0.007 -4.623 -1.744 0 0 0 0 0 0 0 +0.021 -4.621 -1.743 0 0 0 0 0 0 0 +0.036 -4.622 -1.744 0 0 0 0 0 0 0 +0.043 -4.613 -1.74 0 0 0 0 0 0 0 +0.058 -4.63 -1.747 0 0 0 0 0 0 0 +0.072 -4.624 -1.745 0 0 0 0 0 0 0 +0.086 -4.618 -1.742 0 0 0 0 0 0 0 +0.101 -4.625 -1.745 0 0 0 0 0 0 0 +0.116 -4.621 -1.744 0 0 0 0 0 0 0 +0.13 -4.632 -1.748 0 0 0 0 0 0 0 +0.138 -4.63 -1.748 0 0 0 0 0 0 0 +0.152 -4.631 -1.748 0 0 0 0 0 0 0 +0.167 -4.633 -1.749 0 0 0 0 0 0 0 +0.182 -4.66 -1.76 0 0 0 0 0 0 0 +0.197 -4.652 -1.757 0 0 0 0 0 0 0 +0.212 -4.668 -1.764 0 0 0 0 0 0 0 +0.219 -4.66 -1.761 0 0 0 0 0 0 0 +0.233 -4.656 -1.76 0 0 0 0 0 0 0 +0.248 -4.646 -1.756 0 0 0 0 0 0 0 +0.263 -4.66 -1.762 0 0 0 0 0 0 0 +0.278 -4.663 -1.763 0 0 0 0 0 0 0 +0.291 -4.645 -1.757 0 0 0 0 0 0 0 +0.304 -4.611 -1.743 0 0 0 0 0 0 0 +0.318 -4.608 -1.742 0 0 0 0 0 0 0 +0.326 -4.613 -1.745 0 0 0 0 0 0 0 +0.341 -4.614 -1.745 0 0 0 0 0 0 0 +0.356 -4.629 -1.752 0 0 0 0 0 0 0 +0.371 -4.632 -1.754 0 0 0 0 0 0 0 +0.386 -4.638 -1.757 0 0 0 0 0 0 0 +0.401 -4.641 -1.758 0 0 0 0 0 0 0 +0.416 -4.643 -1.76 0 0 0 0 0 0 0 +0.424 -4.651 -1.763 0 0 0 0 0 0 0 +0.437 -4.635 -1.757 0 0 0 0 0 0 0 +0.451 -4.627 -1.754 0 0 0 0 0 0 0 +0.467 -4.634 -1.758 0 0 0 0 0 0 0 +0.481 -4.635 -1.759 0 0 0 0 0 0 0 +0.496 -4.633 -1.759 0 0 0 0 0 0 0 +0.509 -4.615 -1.752 0 0 0 0 0 0 0 +0.516 -4.612 -1.751 0 0 0 0 0 0 0 +0.532 -4.625 -1.757 0 0 0 0 0 0 0 +0.548 -4.637 -1.763 0 0 0 0 0 0 0 +0.565 -4.657 -1.772 0 0 0 0 0 0 0 +0.582 -4.677 -1.781 0 0 0 0 0 0 0 +0.594 -4.653 -1.772 0 0 0 0 0 0 0 +0.608 -4.646 -1.769 0 0 0 0 0 0 0 +0.616 -4.652 -1.772 0 0 0 0 0 0 0 +2.249 -4.14 -1.78 0 0 0 0 0 0 0 +2.261 -4.146 -1.784 0 0 0 0 0 0 0 +2.274 -4.139 -1.784 0 0 0 0 0 0 0 +2.293 -4.143 -1.79 0 0 0 0 0 0 0 +2.304 -4.131 -1.787 0 0 0 0 0 0 0 +2.316 -4.122 -1.787 0 0 0 0 0 0 0 +2.331 -4.118 -1.788 0 0 0 0 0 0 0 +2.343 -4.111 -1.788 0 0 0 0 0 0 0 +2.35 -4.107 -1.788 0 0 0 0 0 0 0 +2.363 -4.1 -1.788 0 0 0 0 0 0 0 +2.378 -4.097 -1.79 0 0 0 0 0 0 0 +2.385 -4.079 -1.785 0 0 0 0 0 0 0 +2.406 -4.085 -1.792 0 0 0 0 0 0 0 +2.414 -4.07 -1.788 0 0 0 0 0 0 0 +2.422 -4.054 -1.784 0 0 0 0 0 0 0 +2.439 -4.068 -1.793 0 0 0 0 0 0 0 +2.447 -4.052 -1.789 0 0 0 0 0 0 0 +2.454 -4.035 -1.784 0 0 0 0 0 0 0 +2.475 -4.042 -1.791 0 0 0 0 0 0 0 +2.481 -4.023 -1.786 0 0 0 0 0 0 0 +2.495 -4.017 -1.787 0 0 0 0 0 0 0 +2.511 -4.015 -1.79 0 0 0 0 0 0 0 +2.517 -4.01 -1.789 0 0 0 0 0 0 0 +2.524 -3.994 -1.785 0 0 0 0 0 0 0 +2.542 -3.994 -1.789 0 0 0 0 0 0 0 +2.553 -3.984 -1.788 0 0 0 0 0 0 0 +2.567 -3.978 -1.789 0 0 0 0 0 0 0 +2.584 -3.977 -1.793 0 0 0 0 0 0 0 +2.592 -3.961 -1.789 0 0 0 0 0 0 0 +2.605 -3.955 -1.79 0 0 0 0 0 0 0 +2.614 -3.955 -1.792 0 0 0 0 0 0 0 +2.623 -3.941 -1.789 0 0 0 0 0 0 0 +2.63 -3.925 -1.785 0 0 0 0 0 0 0 +2.65 -3.927 -1.79 0 0 0 0 0 0 0 +2.659 -3.914 -1.788 0 0 0 0 0 0 0 +2.674 -3.911 -1.79 0 0 0 0 0 0 0 +2.687 -3.904 -1.791 0 0 0 0 0 0 0 +2.689 -3.893 -1.788 0 0 0 0 0 0 0 +2.704 -3.888 -1.79 0 0 0 0 0 0 0 +2.712 -3.873 -1.787 0 0 0 0 0 0 0 +2.73 -3.874 -1.791 0 0 0 0 0 0 0 +2.739 -3.861 -1.789 0 0 0 0 0 0 0 +2.758 -3.861 -1.793 0 0 0 0 0 0 0 +2.76 -3.851 -1.79 0 0 0 0 0 0 0 +2.764 -3.832 -1.785 0 0 0 0 0 0 0 +2.783 -3.832 -1.79 0 0 0 0 0 0 0 +2.791 -3.819 -1.787 0 0 0 0 0 0 0 +2.809 -3.817 -1.791 0 0 0 0 0 0 0 +2.815 -3.801 -1.787 0 0 0 0 0 0 0 +2.833 -3.8 -1.791 0 0 0 0 0 0 0 +2.838 -3.794 -1.79 0 0 0 0 0 0 0 +2.857 -3.795 -1.795 0 0 0 0 0 0 0 +2.858 -3.771 -1.788 0 0 0 0 0 0 0 +2.875 -3.77 -1.792 0 0 0 0 0 0 0 +2.886 -3.759 -1.791 0 0 0 0 0 0 0 +2.899 -3.752 -1.792 0 0 0 0 0 0 0 +2.9 -3.728 -1.784 0 0 0 0 0 0 0 +2.909 -3.728 -1.787 0 0 0 0 0 0 0 +2.918 -3.716 -1.785 0 0 0 0 0 0 0 +2.937 -3.715 -1.79 0 0 0 0 0 0 0 +2.948 -3.706 -1.79 0 0 0 0 0 0 0 +2.961 -3.698 -1.79 0 0 0 0 0 0 0 +2.979 -3.696 -1.794 0 0 0 0 0 0 0 +2.987 -3.682 -1.792 0 0 0 0 0 0 0 +2.996 -3.67 -1.79 0 0 0 0 0 0 0 +3.005 -3.67 -1.793 0 0 0 0 0 0 0 +3.021 -3.666 -1.795 0 0 0 0 0 0 0 +3.025 -3.646 -1.79 0 0 0 0 0 0 0 +3.035 -3.635 -1.79 0 0 0 0 0 0 0 +3.046 -3.626 -1.79 0 0 0 0 0 0 0 +3.062 -3.622 -1.793 0 0 0 0 0 0 0 +3.068 -3.605 -1.789 0 0 0 0 0 0 0 +3.076 -3.603 -1.79 0 0 0 0 0 0 0 +3.081 -3.587 -1.787 0 0 0 0 0 0 0 +3.098 -3.584 -1.79 0 0 0 0 0 0 0 +3.105 -3.569 -1.787 0 0 0 0 0 0 0 +3.125 -3.569 -1.793 0 0 0 0 0 0 0 +3.128 -3.55 -1.788 0 0 0 0 0 0 0 +3.141 -3.542 -1.789 0 0 0 0 0 0 0 +3.143 -3.533 -1.787 0 0 0 0 0 0 0 +3.15 -3.519 -1.784 0 0 0 0 0 0 0 +3.168 -3.517 -1.789 0 0 0 0 0 0 0 +3.172 -3.499 -1.784 0 0 0 0 0 0 0 +3.189 -3.496 -1.788 0 0 0 0 0 0 0 +3.199 -3.484 -1.787 0 0 0 0 0 0 0 +3.199 -3.474 -1.784 0 0 0 0 0 0 0 +3.214 -3.468 -1.787 0 0 0 0 0 0 0 +3.224 -3.456 -1.786 0 0 0 0 0 0 0 +3.231 -3.442 -1.784 0 0 0 0 0 0 0 +3.24 -3.431 -1.783 0 0 0 0 0 0 0 +3.247 -3.416 -1.781 0 0 0 0 0 0 0 +3.263 -3.412 -1.784 0 0 0 0 0 0 0 +3.274 -3.401 -1.784 0 0 0 0 0 0 0 +3.279 -3.396 -1.784 0 0 0 0 0 0 0 +3.286 -3.382 -1.781 0 0 0 0 0 0 0 +3.299 -3.374 -1.783 0 0 0 0 0 0 0 +3.312 -3.366 -1.784 0 0 0 0 0 0 0 +3.316 -3.349 -1.781 0 0 0 0 0 0 0 +3.333 -3.346 -1.784 0 0 0 0 0 0 0 +3.341 -3.332 -1.783 0 0 0 0 0 0 0 +3.346 -3.327 -1.783 0 0 0 0 0 0 0 +3.356 -3.315 -1.782 0 0 0 0 0 0 0 +3.367 -3.306 -1.783 0 0 0 0 0 0 0 +3.391 -3.309 -1.79 0 0 0 0 0 0 0 +3.391 -3.287 -1.784 0 0 0 0 0 0 0 +3.402 -3.278 -1.785 0 0 0 0 0 0 0 +3.409 -3.264 -1.783 0 0 0 0 0 0 0 +3.416 -3.261 -1.784 0 0 0 0 0 0 0 +3.424 -3.247 -1.783 0 0 0 0 0 0 0 +3.434 -3.237 -1.783 0 0 0 0 0 0 0 +3.446 -3.227 -1.784 0 0 0 0 0 0 0 +3.453 -3.214 -1.782 0 0 0 0 0 0 0 +3.47 -3.209 -1.786 0 0 0 0 0 0 0 +3.477 -3.196 -1.784 0 0 0 0 0 0 0 +3.478 -3.187 -1.782 0 0 0 0 0 0 0 +3.487 -3.174 -1.781 0 0 0 0 0 0 0 +3.498 -3.165 -1.782 0 0 0 0 0 0 0 +3.504 -3.15 -1.78 0 0 0 0 0 0 0 +3.518 -3.143 -1.782 0 0 0 0 0 0 0 +3.52 -3.124 -1.778 0 0 0 0 0 0 0 +3.535 -3.128 -1.784 0 0 0 0 0 0 0 +3.547 -3.119 -1.784 0 0 0 0 0 0 0 +3.551 -3.102 -1.781 0 0 0 0 0 0 0 +3.565 -3.095 -1.784 0 0 0 0 0 0 0 +3.575 -3.084 -1.784 0 0 0 0 0 0 0 +3.574 -3.064 -1.778 0 0 0 0 0 0 0 +3.591 -3.059 -1.782 0 0 0 0 0 0 0 +3.589 -3.038 -1.776 0 0 0 0 0 0 0 +3.591 -3.03 -1.775 0 0 0 0 0 0 0 +3.612 -3.028 -1.781 0 0 0 0 0 0 0 +3.616 -3.012 -1.778 0 0 0 0 0 0 0 +3.62 -2.996 -1.775 0 0 0 0 0 0 0 +3.639 -2.993 -1.78 0 0 0 0 0 0 0 +3.644 -2.978 -1.778 0 0 0 0 0 0 0 +3.649 -2.963 -1.775 0 0 0 0 0 0 0 +3.661 -2.963 -1.779 0 0 0 0 0 0 0 +3.665 -2.947 -1.776 0 0 0 0 0 0 0 +3.674 -2.935 -1.776 0 0 0 0 0 0 0 +3.683 -2.924 -1.776 0 0 0 0 0 0 0 +3.694 -2.913 -1.777 0 0 0 0 0 0 0 +3.701 -2.9 -1.776 0 0 0 0 0 0 0 +3.706 -2.885 -1.774 0 0 0 0 0 0 0 +3.713 -2.882 -1.775 0 0 0 0 0 0 0 +3.718 -2.867 -1.773 0 0 0 0 0 0 0 +3.742 -2.866 -1.781 0 0 0 0 0 0 0 +3.729 -2.838 -1.769 0 0 0 0 0 0 0 +3.745 -2.832 -1.773 0 0 0 0 0 0 0 +3.752 -2.819 -1.772 0 0 0 0 0 0 0 +3.763 -2.808 -1.773 0 0 0 0 0 0 0 +3.769 -2.803 -1.774 0 0 0 0 0 0 0 +3.773 -2.788 -1.772 0 0 0 0 0 0 0 +3.786 -2.779 -1.774 0 0 0 0 0 0 0 +3.79 -2.764 -1.772 0 0 0 0 0 0 0 +3.796 -2.75 -1.77 0 0 0 0 0 0 0 +3.812 -2.744 -1.774 0 0 0 0 0 0 0 +3.816 -2.728 -1.772 0 0 0 0 0 0 0 +3.83 -2.729 -1.776 0 0 0 0 0 0 0 +3.834 -2.714 -1.774 0 0 0 0 0 0 0 +3.842 -2.702 -1.774 0 0 0 0 0 0 0 +3.851 -2.689 -1.774 0 0 0 0 0 0 0 +3.85 -2.671 -1.769 0 0 0 0 0 0 0 +3.869 -2.666 -1.775 0 0 0 0 0 0 0 +3.87 -2.649 -1.771 0 0 0 0 0 0 0 +3.874 -2.643 -1.771 0 0 0 0 0 0 0 +3.89 -2.636 -1.775 0 0 0 0 0 0 0 +3.898 -2.624 -1.775 0 0 0 0 0 0 0 +3.903 -2.609 -1.773 0 0 0 0 0 0 0 +3.913 -2.598 -1.774 0 0 0 0 0 0 0 +3.932 -2.593 -1.779 0 0 0 0 0 0 0 +3.943 -2.583 -1.781 0 0 0 0 0 0 0 +3.93 -2.565 -1.772 0 0 0 0 0 0 0 +3.947 -2.559 -1.777 0 0 0 0 0 0 0 +3.943 -2.538 -1.771 0 0 0 0 0 0 0 +3.949 -2.525 -1.77 0 0 0 0 0 0 0 +3.971 -2.522 -1.777 0 0 0 0 0 0 0 +3.964 -2.499 -1.769 0 0 0 0 0 0 0 +3.975 -2.489 -1.771 0 0 0 0 0 0 0 +3.985 -2.486 -1.774 0 0 0 0 0 0 0 +3.985 -2.469 -1.77 0 0 0 0 0 0 0 +4 -2.461 -1.774 0 0 0 0 0 0 0 +4.005 -2.447 -1.772 0 0 0 0 0 0 0 +4.012 -2.434 -1.772 0 0 0 0 0 0 0 +4.025 -2.424 -1.775 0 0 0 0 0 0 0 +4.032 -2.412 -1.775 0 0 0 0 0 0 0 +4.033 -2.403 -1.773 0 0 0 0 0 0 0 +4.044 -2.393 -1.775 0 0 0 0 0 0 0 +4.05 -2.379 -1.774 0 0 0 0 0 0 0 +4.057 -2.366 -1.774 0 0 0 0 0 0 0 +4.058 -2.35 -1.771 0 0 0 0 0 0 0 +4.074 -2.342 -1.775 0 0 0 0 0 0 0 +4.066 -2.321 -1.768 0 0 0 0 0 0 0 +4.081 -2.321 -1.773 0 0 0 0 0 0 0 +4.089 -2.308 -1.773 0 0 0 0 0 0 0 +4.089 -2.291 -1.77 0 0 0 0 0 0 0 +4.095 -2.277 -1.769 0 0 0 0 0 0 0 +4.104 -2.266 -1.77 0 0 0 0 0 0 0 +4.112 -2.254 -1.771 0 0 0 0 0 0 0 +4.119 -2.241 -1.771 0 0 0 0 0 0 0 +4.115 -2.23 -1.767 0 0 0 0 0 0 0 +4.136 -2.225 -1.774 0 0 0 0 0 0 0 +4.129 -2.204 -1.767 0 0 0 0 0 0 0 +4.145 -2.196 -1.772 0 0 0 0 0 0 0 +4.146 -2.18 -1.769 0 0 0 0 0 0 0 +4.158 -2.169 -1.771 0 0 0 0 0 0 0 +4.159 -2.153 -1.769 0 0 0 0 0 0 0 +4.168 -2.149 -1.771 0 0 0 0 0 0 0 +4.174 -2.136 -1.771 0 0 0 0 0 0 0 +4.181 -2.123 -1.771 0 0 0 0 0 0 0 +4.184 -2.108 -1.769 0 0 0 0 0 0 0 +4.203 -2.101 -1.775 0 0 0 0 0 0 0 +4.199 -2.083 -1.77 0 0 0 0 0 0 0 +4.199 -2.066 -1.767 0 0 0 0 0 0 0 +4.199 -2.058 -1.766 0 0 0 0 0 0 0 +4.204 -2.044 -1.765 0 0 0 0 0 0 0 +4.207 -2.029 -1.763 0 0 0 0 0 0 0 +4.208 -2.014 -1.761 0 0 0 0 0 0 0 +4.215 -2 -1.761 0 0 0 0 0 0 0 +4.209 -1.982 -1.756 0 0 0 0 0 0 0 +4.222 -1.971 -1.759 0 0 0 0 0 0 0 +4.225 -1.965 -1.759 0 0 0 0 0 0 0 +4.233 -1.952 -1.76 0 0 0 0 0 0 0 +4.231 -1.935 -1.756 0 0 0 0 0 0 0 +4.243 -1.925 -1.759 0 0 0 0 0 0 0 +4.251 -1.912 -1.76 0 0 0 0 0 0 0 +4.254 -1.897 -1.758 0 0 0 0 0 0 0 +4.258 -1.883 -1.757 0 0 0 0 0 0 0 +4.264 -1.878 -1.759 0 0 0 0 0 0 0 +4.27 -1.865 -1.759 0 0 0 0 0 0 0 +4.274 -1.851 -1.758 0 0 0 0 0 0 0 +4.278 -1.836 -1.757 0 0 0 0 0 0 0 +4.288 -1.824 -1.759 0 0 0 0 0 0 0 +4.293 -1.811 -1.759 0 0 0 0 0 0 0 +4.304 -1.8 -1.761 0 0 0 0 0 0 0 +4.31 -1.794 -1.763 0 0 0 0 0 0 0 +4.323 -1.784 -1.766 0 0 0 0 0 0 0 +4.323 -1.768 -1.763 0 0 0 0 0 0 0 +4.329 -1.754 -1.763 0 0 0 0 0 0 0 +4.346 -1.746 -1.769 0 0 0 0 0 0 0 +4.343 -1.728 -1.765 0 0 0 0 0 0 0 +4.355 -1.718 -1.768 0 0 0 0 0 0 0 +4.355 -1.709 -1.766 0 0 0 0 0 0 0 +4.365 -1.698 -1.769 0 0 0 0 0 0 0 +4.36 -1.68 -1.764 0 0 0 0 0 0 0 +4.376 -1.67 -1.769 0 0 0 0 0 0 0 +4.383 -1.657 -1.769 0 0 0 0 0 0 0 +4.371 -1.637 -1.762 0 0 0 0 0 0 0 +4.383 -1.626 -1.765 0 0 0 0 0 0 0 +4.392 -1.621 -1.768 0 0 0 0 0 0 0 +4.382 -1.602 -1.761 0 0 0 0 0 0 0 +4.397 -1.592 -1.766 0 0 0 0 0 0 0 +4.395 -1.575 -1.763 0 0 0 0 0 0 0 +4.412 -1.566 -1.768 0 0 0 0 0 0 0 +4.421 -1.553 -1.769 0 0 0 0 0 0 0 +4.411 -1.535 -1.763 0 0 0 0 0 0 0 +4.412 -1.527 -1.763 0 0 0 0 0 0 0 +4.431 -1.518 -1.769 0 0 0 0 0 0 0 +4.416 -1.497 -1.76 0 0 0 0 0 0 0 +4.426 -1.485 -1.763 0 0 0 0 0 0 0 +4.44 -1.474 -1.766 0 0 0 0 0 0 0 +4.448 -1.462 -1.768 0 0 0 0 0 0 0 +4.454 -1.448 -1.769 0 0 0 0 0 0 0 +4.448 -1.431 -1.764 0 0 0 0 0 0 0 +4.468 -1.43 -1.772 0 0 0 0 0 0 0 +4.457 -1.41 -1.765 0 0 0 0 0 0 0 +4.465 -1.398 -1.766 0 0 0 0 0 0 0 +4.464 -1.382 -1.764 0 0 0 0 0 0 0 +4.459 -1.365 -1.76 0 0 0 0 0 0 0 +4.476 -1.355 -1.766 0 0 0 0 0 0 0 +4.473 -1.339 -1.763 0 0 0 0 0 0 0 +4.466 -1.329 -1.759 0 0 0 0 0 0 0 +4.469 -1.314 -1.758 0 0 0 0 0 0 0 +4.482 -1.303 -1.762 0 0 0 0 0 0 0 +4.477 -1.286 -1.758 0 0 0 0 0 0 0 +4.482 -1.273 -1.759 0 0 0 0 0 0 0 +4.479 -1.257 -1.756 0 0 0 0 0 0 0 +4.494 -1.253 -1.761 0 0 0 0 0 0 0 +4.491 -1.237 -1.758 0 0 0 0 0 0 0 +4.487 -1.221 -1.755 0 0 0 0 0 0 0 +4.486 -1.205 -1.753 0 0 0 0 0 0 0 +4.493 -1.192 -1.754 0 0 0 0 0 0 0 +4.491 -1.177 -1.752 0 0 0 0 0 0 0 +4.493 -1.162 -1.751 0 0 0 0 0 0 0 +4.499 -1.148 -1.752 0 0 0 0 0 0 0 +4.499 -1.141 -1.751 0 0 0 0 0 0 0 +4.499 -1.126 -1.75 0 0 0 0 0 0 0 +4.504 -1.112 -1.751 0 0 0 0 0 0 0 +4.5 -1.096 -1.748 0 0 0 0 0 0 0 +4.507 -1.083 -1.749 0 0 0 0 0 0 0 +4.509 -1.068 -1.748 0 0 0 0 0 0 0 +4.516 -1.055 -1.75 0 0 0 0 0 0 0 +4.517 -1.048 -1.75 0 0 0 0 0 0 0 +4.524 -1.034 -1.751 0 0 0 0 0 0 0 +4.537 -1.022 -1.755 0 0 0 0 0 0 0 +4.534 -1.007 -1.753 0 0 0 0 0 0 0 +4.547 -0.995 -1.757 0 0 0 0 0 0 0 +4.555 -0.982 -1.759 0 0 0 0 0 0 0 +4.531 -0.961 -1.748 0 0 0 0 0 0 0 +4.554 -0.959 -1.757 0 0 0 0 0 0 0 +4.566 -0.947 -1.76 0 0 0 0 0 0 0 +4.546 -0.927 -1.751 0 0 0 0 0 0 0 +4.538 -0.911 -1.746 0 0 0 0 0 0 0 +2.546 -0.491 -0.927 0 0 0 0 0 0 0 +4.588 -0.876 -1.763 0 0 0 0 0 0 0 +2.546 -0.483 -0.926 0 0 0 0 0 0 0 +4.566 -0.864 -1.754 0 0 0 0 0 0 0 +23.836 1.338 -9.741 0 0 0 0 0 0 0 +23.421 2.76 -9.621 0 0 0 0 0 0 0 +23.214 3.665 -9.588 0 0 0 0 0 0 0 +4.308 1.169 -1.726 0 0 0 0 0 0 0 +4.309 1.184 -1.728 0 0 0 0 0 0 0 +4.291 1.193 -1.722 0 0 0 0 0 0 0 +4.304 1.211 -1.729 0 0 0 0 0 0 0 +4.294 1.223 -1.726 0 0 0 0 0 0 0 +4.285 1.228 -1.723 0 0 0 0 0 0 0 +4.283 1.242 -1.724 0 0 0 0 0 0 0 +4.285 1.257 -1.726 0 0 0 0 0 0 0 +4.274 1.268 -1.723 0 0 0 0 0 0 0 +4.271 1.282 -1.724 0 0 0 0 0 0 0 +4.271 1.297 -1.726 0 0 0 0 0 0 0 +4.267 1.303 -1.725 0 0 0 0 0 0 0 +4.261 1.316 -1.724 0 0 0 0 0 0 0 +4.257 1.329 -1.724 0 0 0 0 0 0 0 +4.256 1.344 -1.726 0 0 0 0 0 0 0 +4.25 1.357 -1.725 0 0 0 0 0 0 0 +4.244 1.369 -1.724 0 0 0 0 0 0 0 +4.243 1.384 -1.726 0 0 0 0 0 0 0 +4.234 1.388 -1.723 0 0 0 0 0 0 0 +4.233 1.403 -1.724 0 0 0 0 0 0 0 +4.22 1.413 -1.72 0 0 0 0 0 0 0 +4.235 1.433 -1.729 0 0 0 0 0 0 0 +4.22 1.442 -1.724 0 0 0 0 0 0 0 +4.221 1.458 -1.726 0 0 0 0 0 0 0 +4.213 1.47 -1.725 0 0 0 0 0 0 0 +4.21 1.476 -1.725 0 0 0 0 0 0 0 +4.204 1.489 -1.724 0 0 0 0 0 0 0 +4.21 1.506 -1.729 0 0 0 0 0 0 0 +4.196 1.516 -1.725 0 0 0 0 0 0 0 +4.198 1.532 -1.728 0 0 0 0 0 0 0 +4.19 1.543 -1.726 0 0 0 0 0 0 0 +4.18 1.555 -1.724 0 0 0 0 0 0 0 +4.182 1.57 -1.727 0 0 0 0 0 0 0 +4.181 1.578 -1.728 0 0 0 0 0 0 0 +4.171 1.589 -1.726 0 0 0 0 0 0 0 +4.178 1.607 -1.731 0 0 0 0 0 0 0 +4.159 1.614 -1.725 0 0 0 0 0 0 0 +4.161 1.63 -1.728 0 0 0 0 0 0 0 +4.149 1.64 -1.725 0 0 0 0 0 0 0 +4.139 1.651 -1.723 0 0 0 0 0 0 0 +4.145 1.661 -1.726 0 0 0 0 0 0 0 +4.133 1.671 -1.723 0 0 0 0 0 0 0 +4.126 1.684 -1.723 0 0 0 0 0 0 0 +4.125 1.699 -1.725 0 0 0 0 0 0 0 +4.122 1.712 -1.726 0 0 0 0 0 0 0 +4.121 1.728 -1.728 0 0 0 0 0 0 0 +4.105 1.728 -1.722 0 0 0 0 0 0 0 +4.12 1.75 -1.731 0 0 0 0 0 0 0 +4.099 1.756 -1.724 0 0 0 0 0 0 0 +4.092 1.768 -1.723 0 0 0 0 0 0 0 +4.1 1.787 -1.73 0 0 0 0 0 0 0 +4.089 1.798 -1.727 0 0 0 0 0 0 0 +4.075 1.807 -1.723 0 0 0 0 0 0 0 +4.077 1.815 -1.726 0 0 0 0 0 0 0 +4.073 1.829 -1.726 0 0 0 0 0 0 0 +4.063 1.84 -1.724 0 0 0 0 0 0 0 +4.062 1.855 -1.726 0 0 0 0 0 0 0 +4.061 1.87 -1.729 0 0 0 0 0 0 0 +4.05 1.88 -1.726 0 0 0 0 0 0 0 +4.044 1.893 -1.726 0 0 0 0 0 0 0 +4.036 1.897 -1.724 0 0 0 0 0 0 0 +4.032 1.91 -1.725 0 0 0 0 0 0 0 +4.016 1.918 -1.72 0 0 0 0 0 0 0 +4.031 1.941 -1.73 0 0 0 0 0 0 0 +4.015 1.949 -1.726 0 0 0 0 0 0 0 +4.016 1.965 -1.729 0 0 0 0 0 0 0 +4.001 1.973 -1.725 0 0 0 0 0 0 0 +3.998 1.98 -1.725 0 0 0 0 0 0 0 +3.994 1.993 -1.726 0 0 0 0 0 0 0 +3.991 2.007 -1.727 0 0 0 0 0 0 0 +3.976 2.016 -1.723 0 0 0 0 0 0 0 +3.986 2.037 -1.731 0 0 0 0 0 0 0 +3.973 2.046 -1.728 0 0 0 0 0 0 0 +3.967 2.058 -1.728 0 0 0 0 0 0 0 +3.96 2.063 -1.726 0 0 0 0 0 0 0 +3.962 2.079 -1.73 0 0 0 0 0 0 0 +3.952 2.09 -1.729 0 0 0 0 0 0 0 +3.947 2.103 -1.73 0 0 0 0 0 0 0 +3.937 2.114 -1.728 0 0 0 0 0 0 0 +3.934 2.128 -1.73 0 0 0 0 0 0 0 +3.919 2.136 -1.726 0 0 0 0 0 0 0 +3.919 2.152 -1.729 0 0 0 0 0 0 0 +3.912 2.156 -1.727 0 0 0 0 0 0 0 +3.915 2.174 -1.732 0 0 0 0 0 0 0 +3.902 2.183 -1.729 0 0 0 0 0 0 0 +3.897 2.196 -1.73 0 0 0 0 0 0 0 +3.89 2.208 -1.73 0 0 0 0 0 0 0 +3.887 2.223 -1.732 0 0 0 0 0 0 0 +3.866 2.227 -1.725 0 0 0 0 0 0 0 +3.867 2.236 -1.727 0 0 0 0 0 0 0 +3.867 2.252 -1.73 0 0 0 0 0 0 0 +3.86 2.264 -1.73 0 0 0 0 0 0 0 +3.854 2.277 -1.731 0 0 0 0 0 0 0 +3.839 2.284 -1.727 0 0 0 0 0 0 0 +3.832 2.296 -1.727 0 0 0 0 0 0 0 +3.838 2.308 -1.732 0 0 0 0 0 0 0 +3.826 2.317 -1.73 0 0 0 0 0 0 0 +3.821 2.331 -1.731 0 0 0 0 0 0 0 +3.811 2.341 -1.73 0 0 0 0 0 0 0 +3.802 2.352 -1.729 0 0 0 0 0 0 0 +3.79 2.361 -1.726 0 0 0 0 0 0 0 +3.793 2.38 -1.732 0 0 0 0 0 0 0 +3.79 2.386 -1.732 0 0 0 0 0 0 0 +3.785 2.4 -1.733 0 0 0 0 0 0 0 +3.773 2.409 -1.731 0 0 0 0 0 0 0 +3.766 2.42 -1.731 0 0 0 0 0 0 0 +3.75 2.427 -1.727 0 0 0 0 0 0 0 +3.753 2.446 -1.733 0 0 0 0 0 0 0 +3.744 2.457 -1.732 0 0 0 0 0 0 0 +3.742 2.464 -1.733 0 0 0 0 0 0 0 +3.731 2.473 -1.731 0 0 0 0 0 0 0 +3.72 2.483 -1.73 0 0 0 0 0 0 0 +3.711 2.494 -1.729 0 0 0 0 0 0 0 +3.707 2.508 -1.731 0 0 0 0 0 0 0 +3.696 2.518 -1.73 0 0 0 0 0 0 0 +3.696 2.535 -1.733 0 0 0 0 0 0 0 +3.678 2.539 -1.728 0 0 0 0 0 0 0 +3.672 2.544 -1.727 0 0 0 0 0 0 0 +3.676 2.564 -1.733 0 0 0 0 0 0 0 +3.654 2.566 -1.726 0 0 0 0 0 0 0 +3.651 2.58 -1.729 0 0 0 0 0 0 0 +3.655 2.6 -1.735 0 0 0 0 0 0 0 +3.633 2.602 -1.728 0 0 0 0 0 0 0 +3.629 2.617 -1.73 0 0 0 0 0 0 0 +3.619 2.618 -1.727 0 0 0 0 0 0 0 +3.61 2.628 -1.726 0 0 0 0 0 0 0 +3.6 2.639 -1.726 0 0 0 0 0 0 0 +3.603 2.659 -1.732 0 0 0 0 0 0 0 +3.591 2.667 -1.73 0 0 0 0 0 0 0 +3.603 2.694 -1.74 0 0 0 0 0 0 0 +3.574 2.689 -1.73 0 0 0 0 0 0 0 +3.567 2.693 -1.728 0 0 0 0 0 0 0 +3.579 2.72 -1.739 0 0 0 0 0 0 0 +3.551 2.716 -1.729 0 0 0 0 0 0 0 +3.559 2.74 -1.737 0 0 0 0 0 0 0 +3.551 2.752 -1.738 0 0 0 0 0 0 0 +3.541 2.762 -1.737 0 0 0 0 0 0 0 +3.502 2.749 -1.721 0 0 0 0 0 0 0 +3.53 2.78 -1.738 0 0 0 0 0 0 0 +3.528 2.797 -1.742 0 0 0 0 0 0 0 +3.485 2.78 -1.723 0 0 0 0 0 0 0 +3.479 2.793 -1.725 0 0 0 0 0 0 0 +3.473 2.806 -1.726 0 0 0 0 0 0 0 +3.463 2.816 -1.726 0 0 0 0 0 0 0 +3.454 2.827 -1.726 0 0 0 0 0 0 0 +3.455 2.837 -1.729 0 0 0 0 0 0 0 +3.432 2.836 -1.721 0 0 0 0 0 0 0 +3.433 2.855 -1.726 0 0 0 0 0 0 0 +3.423 2.865 -1.726 0 0 0 0 0 0 0 +3.411 2.873 -1.724 0 0 0 0 0 0 0 +3.403 2.885 -1.725 0 0 0 0 0 0 0 +3.39 2.892 -1.723 0 0 0 0 0 0 0 +3.392 2.904 -1.726 0 0 0 0 0 0 0 +3.378 2.909 -1.723 0 0 0 0 0 0 0 +3.37 2.921 -1.724 0 0 0 0 0 0 0 +3.355 2.927 -1.721 0 0 0 0 0 0 0 +3.361 2.951 -1.73 0 0 0 0 0 0 0 +3.346 2.956 -1.726 0 0 0 0 0 0 0 +3.334 2.965 -1.725 0 0 0 0 0 0 0 +3.328 2.969 -1.724 0 0 0 0 0 0 0 +3.317 2.978 -1.723 0 0 0 0 0 0 0 +3.309 2.989 -1.724 0 0 0 0 0 0 0 +3.304 3.003 -1.726 0 0 0 0 0 0 0 +3.289 3.009 -1.723 0 0 0 0 0 0 0 +3.285 3.024 -1.726 0 0 0 0 0 0 0 +3.272 3.031 -1.724 0 0 0 0 0 0 0 +3.261 3.031 -1.721 0 0 0 0 0 0 0 +3.261 3.05 -1.726 0 0 0 0 0 0 0 +3.241 3.05 -1.72 0 0 0 0 0 0 0 +3.239 3.068 -1.725 0 0 0 0 0 0 0 +3.228 3.077 -1.724 0 0 0 0 0 0 0 +3.217 3.085 -1.723 0 0 0 0 0 0 0 +3.209 3.097 -1.724 0 0 0 0 0 0 0 +3.208 3.106 -1.726 0 0 0 0 0 0 0 +3.189 3.107 -1.721 0 0 0 0 0 0 0 +3.189 3.126 -1.726 0 0 0 0 0 0 0 +3.175 3.132 -1.724 0 0 0 0 0 0 0 +3.158 3.135 -1.72 0 0 0 0 0 0 0 +3.149 3.145 -1.72 0 0 0 0 0 0 0 +3.141 3.158 -1.722 0 0 0 0 0 0 0 +3.139 3.165 -1.723 0 0 0 0 0 0 0 +3.125 3.171 -1.721 0 0 0 0 0 0 0 +3.113 3.178 -1.72 0 0 0 0 0 0 0 +3.105 3.191 -1.721 0 0 0 0 0 0 0 +3.089 3.194 -1.717 0 0 0 0 0 0 0 +3.085 3.21 -1.721 0 0 0 0 0 0 0 +3.079 3.224 -1.723 0 0 0 0 0 0 0 +3.071 3.236 -1.725 0 0 0 0 0 0 0 +3.063 3.238 -1.723 0 0 0 0 0 0 0 +3.051 3.245 -1.722 0 0 0 0 0 0 0 +3.032 3.245 -1.717 0 0 0 0 0 0 0 +3.037 3.271 -1.726 0 0 0 0 0 0 0 +3.022 3.277 -1.723 0 0 0 0 0 0 0 +3.015 3.289 -1.725 0 0 0 0 0 0 0 +2.999 3.293 -1.722 0 0 0 0 0 0 0 +2.995 3.299 -1.723 0 0 0 0 0 0 0 +2.98 3.303 -1.72 0 0 0 0 0 0 0 +2.977 3.32 -1.724 0 0 0 0 0 0 0 +2.968 3.331 -1.725 0 0 0 0 0 0 0 +2.955 3.338 -1.723 0 0 0 0 0 0 0 +2.949 3.353 -1.726 0 0 0 0 0 0 0 +2.939 3.352 -1.723 0 0 0 0 0 0 0 +2.927 3.359 -1.723 0 0 0 0 0 0 0 +2.916 3.367 -1.722 0 0 0 0 0 0 0 +2.91 3.382 -1.725 0 0 0 0 0 0 0 +2.899 3.391 -1.725 0 0 0 0 0 0 0 +2.893 3.406 -1.728 0 0 0 0 0 0 0 +2.872 3.402 -1.721 0 0 0 0 0 0 0 +2.865 3.405 -1.72 0 0 0 0 0 0 0 +2.858 3.418 -1.723 0 0 0 0 0 0 0 +2.846 3.426 -1.722 0 0 0 0 0 0 0 +2.845 3.446 -1.728 0 0 0 0 0 0 0 +2.831 3.451 -1.726 0 0 0 0 0 0 0 +2.822 3.463 -1.727 0 0 0 0 0 0 0 +2.808 3.467 -1.725 0 0 0 0 0 0 0 +2.801 3.482 -1.728 0 0 0 0 0 0 0 +2.796 3.486 -1.728 0 0 0 0 0 0 0 +2.783 3.492 -1.726 0 0 0 0 0 0 0 +2.771 3.499 -1.726 0 0 0 0 0 0 0 +2.761 3.51 -1.726 0 0 0 0 0 0 0 +2.747 3.515 -1.725 0 0 0 0 0 0 0 +2.744 3.534 -1.73 0 0 0 0 0 0 0 +2.735 3.546 -1.732 0 0 0 0 0 0 0 +2.724 3.543 -1.728 0 0 0 0 0 0 0 +2.72 3.56 -1.733 0 0 0 0 0 0 0 +2.708 3.569 -1.733 0 0 0 0 0 0 0 +2.688 3.565 -1.726 0 0 0 0 0 0 0 +2.682 3.58 -1.73 0 0 0 0 0 0 0 +2.674 3.592 -1.732 0 0 0 0 0 0 0 +2.661 3.599 -1.731 0 0 0 0 0 0 0 +2.659 3.62 -1.737 0 0 0 0 0 0 0 +2.647 3.616 -1.733 0 0 0 0 0 0 0 +2.631 3.617 -1.73 0 0 0 0 0 0 0 +2.625 3.633 -1.733 0 0 0 0 0 0 0 +2.616 3.646 -1.736 0 0 0 0 0 0 0 +2.608 3.658 -1.738 0 0 0 0 0 0 0 +2.589 3.656 -1.733 0 0 0 0 0 0 0 +2.582 3.659 -1.732 0 0 0 0 0 0 0 +2.571 3.667 -1.732 0 0 0 0 0 0 0 +2.563 3.679 -1.734 0 0 0 0 0 0 0 +2.548 3.683 -1.732 0 0 0 0 0 0 0 +2.539 3.695 -1.734 0 0 0 0 0 0 0 +2.531 3.708 -1.736 0 0 0 0 0 0 0 +2.515 3.71 -1.733 0 0 0 0 0 0 0 +2.5 3.713 -1.731 0 0 0 0 0 0 0 +2.499 3.723 -1.734 0 0 0 0 0 0 0 +2.489 3.734 -1.736 0 0 0 0 0 0 0 +2.475 3.739 -1.734 0 0 0 0 0 0 0 +2.46 3.742 -1.732 0 0 0 0 0 0 0 +2.449 3.749 -1.732 0 0 0 0 0 0 0 +2.436 3.756 -1.731 0 0 0 0 0 0 0 +2.425 3.765 -1.732 0 0 0 0 0 0 0 +2.42 3.77 -1.733 0 0 0 0 0 0 0 +2.405 3.773 -1.73 0 0 0 0 0 0 0 +2.4 3.791 -1.736 0 0 0 0 0 0 0 +2.382 3.788 -1.73 0 0 0 0 0 0 0 +2.374 3.802 -1.733 0 0 0 0 0 0 0 +2.36 3.806 -1.732 0 0 0 0 0 0 0 +2.341 3.802 -1.726 0 0 0 0 0 0 0 +2.343 3.819 -1.733 0 0 0 0 0 0 0 +2.327 3.82 -1.73 0 0 0 0 0 0 0 +2.316 3.829 -1.73 0 0 0 0 0 0 0 +2.306 3.839 -1.732 0 0 0 0 0 0 0 +2.297 3.853 -1.735 0 0 0 0 0 0 0 +2.28 3.852 -1.731 0 0 0 0 0 0 0 +2.27 3.862 -1.733 0 0 0 0 0 0 0 +2.264 3.866 -1.733 0 0 0 0 0 0 0 +2.255 3.878 -1.735 0 0 0 0 0 0 0 +2.233 3.869 -1.727 0 0 0 0 0 0 0 +2.228 3.887 -1.733 0 0 0 0 0 0 0 +2.213 3.889 -1.73 0 0 0 0 0 0 0 +2.2 3.896 -1.73 0 0 0 0 0 0 0 +2.186 3.9 -1.729 0 0 0 0 0 0 0 +2.182 3.906 -1.73 0 0 0 0 0 0 0 +2.167 3.908 -1.728 0 0 0 0 0 0 0 +2.158 3.92 -1.73 0 0 0 0 0 0 0 +2.141 3.919 -1.726 0 0 0 0 0 0 0 +2.13 3.929 -1.728 0 0 0 0 0 0 0 +2.116 3.932 -1.726 0 0 0 0 0 0 0 +2.106 3.943 -1.729 0 0 0 0 0 0 0 +2.092 3.947 -1.727 0 0 0 0 0 0 0 +2.085 3.948 -1.726 0 0 0 0 0 0 0 +2.074 3.957 -1.727 0 0 0 0 0 0 0 +2.059 3.958 -1.725 0 0 0 0 0 0 0 +2.053 3.978 -1.731 0 0 0 0 0 0 0 +2.039 3.981 -1.73 0 0 0 0 0 0 0 +2.028 3.991 -1.731 0 0 0 0 0 0 0 +2.013 3.992 -1.729 0 0 0 0 0 0 0 +2.002 3.985 -1.724 0 0 0 0 0 0 0 +1.99 3.993 -1.725 0 0 0 0 0 0 0 +1.977 3.999 -1.725 0 0 0 0 0 0 0 +1.967 4.011 -1.727 0 0 0 0 0 0 0 +1.953 4.013 -1.726 0 0 0 0 0 0 0 +1.936 4.009 -1.721 0 0 0 0 0 0 0 +1.929 4.029 -1.727 0 0 0 0 0 0 0 +1.925 4.037 -1.73 0 0 0 0 0 0 0 +1.912 4.041 -1.729 0 0 0 0 0 0 0 +1.895 4.039 -1.725 0 0 0 0 0 0 0 +1.886 4.053 -1.729 0 0 0 0 0 0 0 +1.868 4.046 -1.723 0 0 0 0 0 0 0 +1.858 4.058 -1.726 0 0 0 0 0 0 0 +1.848 4.071 -1.729 0 0 0 0 0 0 0 +1.84 4.069 -1.726 0 0 0 0 0 0 0 +1.824 4.068 -1.723 0 0 0 0 0 0 0 +1.809 4.07 -1.722 0 0 0 0 0 0 0 +1.798 4.079 -1.723 0 0 0 0 0 0 0 +1.784 4.081 -1.722 0 0 0 0 0 0 0 +1.775 4.095 -1.726 0 0 0 0 0 0 0 +1.759 4.094 -1.723 0 0 0 0 0 0 0 +1.752 4.095 -1.722 0 0 0 0 0 0 0 +1.735 4.092 -1.718 0 0 0 0 0 0 0 +1.726 4.106 -1.722 0 0 0 0 0 0 0 +1.712 4.108 -1.72 0 0 0 0 0 0 0 +1.702 4.12 -1.723 0 0 0 0 0 0 0 +1.691 4.131 -1.726 0 0 0 0 0 0 0 +1.673 4.124 -1.72 0 0 0 0 0 0 0 +1.667 4.146 -1.728 0 0 0 0 0 0 0 +1.661 4.151 -1.729 0 0 0 0 0 0 0 +1.638 4.13 -1.717 0 0 0 0 0 0 0 +1.627 4.142 -1.72 0 0 0 0 0 0 0 +1.618 4.156 -1.724 0 0 0 0 0 0 0 +1.603 4.156 -1.722 0 0 0 0 0 0 0 +1.588 4.156 -1.72 0 0 0 0 0 0 0 +1.578 4.171 -1.724 0 0 0 0 0 0 0 +1.567 4.161 -1.719 0 0 0 0 0 0 0 +1.561 4.184 -1.726 0 0 0 0 0 0 0 +1.543 4.175 -1.72 0 0 0 0 0 0 0 +1.533 4.19 -1.725 0 0 0 0 0 0 0 +1.513 4.174 -1.716 0 0 0 0 0 0 0 +1.495 4.166 -1.71 0 0 0 0 0 0 0 +1.484 4.176 -1.713 0 0 0 0 0 0 0 +1.475 4.171 -1.71 0 0 0 0 0 0 0 +1.464 4.183 -1.713 0 0 0 0 0 0 0 +1.448 4.179 -1.709 0 0 0 0 0 0 0 +1.434 4.182 -1.708 0 0 0 0 0 0 0 +1.42 4.183 -1.707 0 0 0 0 0 0 0 +1.402 4.173 -1.701 0 0 0 0 0 0 0 +1.392 4.186 -1.704 0 0 0 0 0 0 0 +1.388 4.195 -1.707 0 0 0 0 0 0 0 +1.377 4.207 -1.71 0 0 0 0 0 0 0 +1.359 4.197 -1.704 0 0 0 0 0 0 0 +1.344 4.194 -1.701 0 0 0 0 0 0 0 +1.332 4.202 -1.703 0 0 0 0 0 0 0 +1.317 4.201 -1.701 0 0 0 0 0 0 0 +1.305 4.21 -1.703 0 0 0 0 0 0 0 +1.292 4.216 -1.704 0 0 0 0 0 0 0 +1.282 4.206 -1.698 0 0 0 0 0 0 0 +1.272 4.219 -1.702 0 0 0 0 0 0 0 +1.253 4.205 -1.694 0 0 0 0 0 0 0 +1.244 4.223 -1.701 0 0 0 0 0 0 0 +1.23 4.225 -1.7 0 0 0 0 0 0 0 +1.217 4.229 -1.7 0 0 0 0 0 0 0 +1.201 4.222 -1.695 0 0 0 0 0 0 0 +1.194 4.226 -1.696 0 0 0 0 0 0 0 +1.187 4.251 -1.705 0 0 0 0 0 0 0 +1.171 4.244 -1.701 0 0 0 0 0 0 0 +1.154 4.235 -1.695 0 0 0 0 0 0 0 +1.141 4.24 -1.696 0 0 0 0 0 0 0 +1.128 4.244 -1.696 0 0 0 0 0 0 0 +1.116 4.253 -1.698 0 0 0 0 0 0 0 +1.108 4.249 -1.696 0 0 0 0 0 0 0 +1.094 4.251 -1.695 0 0 0 0 0 0 0 +1.084 4.269 -1.701 0 0 0 0 0 0 0 +1.068 4.259 -1.696 0 0 0 0 0 0 0 +1.054 4.259 -1.694 0 0 0 0 0 0 0 +1.04 4.262 -1.694 0 0 0 0 0 0 0 +1.026 4.262 -1.693 0 0 0 0 0 0 0 +1.019 4.264 -1.693 0 0 0 0 0 0 0 +1.006 4.267 -1.693 0 0 0 0 0 0 0 +0.994 4.277 -1.696 0 0 0 0 0 0 0 +0.977 4.264 -1.689 0 0 0 0 0 0 0 +0.966 4.28 -1.694 0 0 0 0 0 0 0 +0.951 4.276 -1.691 0 0 0 0 0 0 0 +0.939 4.282 -1.693 0 0 0 0 0 0 0 +0.925 4.285 -1.693 0 0 0 0 0 0 0 +0.919 4.287 -1.693 0 0 0 0 0 0 0 +0.904 4.282 -1.69 0 0 0 0 0 0 0 +0.89 4.283 -1.689 0 0 0 0 0 0 0 +0.878 4.293 -1.692 0 0 0 0 0 0 0 +0.862 4.287 -1.688 0 0 0 0 0 0 0 +0.85 4.295 -1.691 0 0 0 0 0 0 0 +0.837 4.301 -1.692 0 0 0 0 0 0 0 +0.829 4.295 -1.689 0 0 0 0 0 0 0 +0.816 4.3 -1.69 0 0 0 0 0 0 0 +0.801 4.295 -1.687 0 0 0 0 0 0 0 +0.788 4.301 -1.688 0 0 0 0 0 0 0 +0.773 4.293 -1.684 0 0 0 0 0 0 0 +0.761 4.302 -1.687 0 0 0 0 0 0 0 +0.608 3.473 -1.339 0 0 0 0 0 0 0 +0.599 3.454 -1.33 0 0 0 0 0 0 0 +0.589 3.458 -1.331 0 0 0 0 0 0 0 +0.577 3.452 -1.328 0 0 0 0 0 0 0 +0.565 3.449 -1.326 0 0 0 0 0 0 0 +0.553 3.447 -1.324 0 0 0 0 0 0 0 +0.541 3.439 -1.32 0 0 0 0 0 0 0 +0.531 3.443 -1.321 0 0 0 0 0 0 0 +0.526 3.447 -1.323 0 0 0 0 0 0 0 +0.515 3.451 -1.323 0 0 0 0 0 0 0 +0.505 3.46 -1.326 0 0 0 0 0 0 0 +0.493 3.452 -1.323 0 0 0 0 0 0 0 +0.482 3.448 -1.32 0 0 0 0 0 0 0 +0.472 3.457 -1.323 0 0 0 0 0 0 0 +0.464 3.482 -1.333 0 0 0 0 0 0 0 +0.411 3.184 -1.208 0 0 0 0 0 0 0 +0.4 3.176 -1.204 0 0 0 0 0 0 0 +0.389 3.168 -1.201 0 0 0 0 0 0 0 +0.38 3.173 -1.202 0 0 0 0 0 0 0 +0.37 3.179 -1.204 0 0 0 0 0 0 0 +0.36 3.177 -1.203 0 0 0 0 0 0 0 +0.351 3.189 -1.207 0 0 0 0 0 0 0 +0.461 4.341 -1.685 0 0 0 0 0 0 0 +0.448 4.341 -1.684 0 0 0 0 0 0 0 +0.434 4.347 -1.687 0 0 0 0 0 0 0 +0.42 4.336 -1.681 0 0 0 0 0 0 0 +0.407 4.346 -1.685 0 0 0 0 0 0 0 +0.393 4.344 -1.684 0 0 0 0 0 0 0 +0.379 4.347 -1.684 0 0 0 0 0 0 0 +0.373 4.351 -1.686 0 0 0 0 0 0 0 +0.359 4.354 -1.687 0 0 0 0 0 0 0 +0.345 4.352 -1.685 0 0 0 0 0 0 0 +0.332 4.358 -1.688 0 0 0 0 0 0 0 +0.318 4.356 -1.686 0 0 0 0 0 0 0 +0.305 4.362 -1.688 0 0 0 0 0 0 0 +0.291 4.359 -1.687 0 0 0 0 0 0 0 +0.284 4.369 -1.691 0 0 0 0 0 0 0 +0.27 4.359 -1.686 0 0 0 0 0 0 0 +0.257 4.365 -1.688 0 0 0 0 0 0 0 +0.243 4.362 -1.687 0 0 0 0 0 0 0 +0.229 4.367 -1.688 0 0 0 0 0 0 0 +0.215 4.36 -1.685 0 0 0 0 0 0 0 +0.202 4.379 -1.693 0 0 0 0 0 0 0 +0.188 4.376 -1.691 0 0 0 0 0 0 0 +0.182 4.376 -1.691 0 0 0 0 0 0 0 +0.167 4.36 -1.684 0 0 0 0 0 0 0 +0.154 4.365 -1.686 0 0 0 0 0 0 0 +0.14 4.367 -1.687 0 0 0 0 0 0 0 +0.126 4.377 -1.691 0 0 0 0 0 0 0 +0.113 4.379 -1.691 0 0 0 0 0 0 0 +0.099 4.377 -1.691 0 0 0 0 0 0 0 +0.092 4.368 -1.687 0 0 0 0 0 0 0 +0.078 4.368 -1.687 0 0 0 0 0 0 0 +0.064 4.363 -1.684 0 0 0 0 0 0 0 +0.051 4.374 -1.689 0 0 0 0 0 0 0 +0.037 4.371 -1.688 0 0 0 0 0 0 0 +0.023 4.376 -1.69 0 0 0 0 0 0 0 +0.01 4.378 -1.691 0 0 0 0 0 0 0 +0.003 4.375 -1.689 0 0 0 0 0 0 0 +-0.011 4.371 -1.688 0 0 0 0 0 0 0 +-0.025 4.376 -1.69 0 0 0 0 0 0 0 +-0.039 4.382 -1.692 0 0 0 0 0 0 0 +-0.053 4.391 -1.696 0 0 0 0 0 0 0 +-0.066 4.387 -1.694 0 0 0 0 0 0 0 +-0.08 4.378 -1.691 0 0 0 0 0 0 0 +-0.086 4.359 -1.683 0 0 0 0 0 0 0 +-0.1 4.375 -1.69 0 0 0 0 0 0 0 +-0.114 4.371 -1.688 0 0 0 0 0 0 0 +-0.128 4.376 -1.691 0 0 0 0 0 0 0 +-0.142 4.38 -1.692 0 0 0 0 0 0 0 +-0.156 4.383 -1.694 0 0 0 0 0 0 0 +-0.169 4.366 -1.687 0 0 0 0 0 0 0 +-0.176 4.378 -1.692 0 0 0 0 0 0 0 +-0.19 4.385 -1.695 0 0 0 0 0 0 0 +-0.205 4.394 -1.699 0 0 0 0 0 0 0 +-0.219 4.397 -1.701 0 0 0 0 0 0 0 +-0.233 4.405 -1.704 0 0 0 0 0 0 0 +-0.249 4.436 -1.717 0 0 0 0 0 0 0 +-0.263 4.433 -1.717 0 0 0 0 0 0 0 +-0.268 4.411 -1.707 0 0 0 0 0 0 0 +-0.283 4.421 -1.712 0 0 0 0 0 0 0 +-0.298 4.44 -1.72 0 0 0 0 0 0 0 +-0.312 4.436 -1.719 0 0 0 0 0 0 0 +-0.326 4.444 -1.723 0 0 0 0 0 0 0 +-0.34 4.443 -1.723 0 0 0 0 0 0 0 +-0.354 4.438 -1.721 0 0 0 0 0 0 0 +-0.369 4.446 -1.725 0 0 0 0 0 0 0 +-0.375 4.44 -1.723 0 0 0 0 0 0 0 +-0.39 4.452 -1.728 0 0 0 0 0 0 0 +-0.404 4.449 -1.727 0 0 0 0 0 0 0 +-0.418 4.442 -1.725 0 0 0 0 0 0 0 +-0.432 4.446 -1.727 0 0 0 0 0 0 0 +-0.447 4.454 -1.731 0 0 0 0 0 0 0 +-0.461 4.454 -1.732 0 0 0 0 0 0 0 +-0.468 4.452 -1.731 0 0 0 0 0 0 0 +-0.484 4.463 -1.736 0 0 0 0 0 0 0 +-0.497 4.456 -1.734 0 0 0 0 0 0 0 +-0.511 4.453 -1.733 0 0 0 0 0 0 0 +-0.526 4.464 -1.739 0 0 0 0 0 0 0 +-0.54 4.459 -1.737 0 0 0 0 0 0 0 +-0.554 4.457 -1.737 0 0 0 0 0 0 0 +-0.562 4.461 -1.739 0 0 0 0 0 0 0 +-0.576 4.461 -1.74 0 0 0 0 0 0 0 +-0.59 4.458 -1.739 0 0 0 0 0 0 0 +-0.605 4.465 -1.743 0 0 0 0 0 0 0 +-0.619 4.463 -1.743 0 0 0 0 0 0 0 +-0.634 4.47 -1.747 0 0 0 0 0 0 0 +-0.646 4.454 -1.741 0 0 0 0 0 0 0 +-0.654 4.462 -1.745 0 0 0 0 0 0 0 +-0.668 4.46 -1.745 0 0 0 0 0 0 0 +-0.685 4.474 -1.752 0 0 0 0 0 0 0 +-0.696 4.455 -1.745 0 0 0 0 0 0 0 +-0.721 4.519 -1.772 0 0 0 0 0 0 0 +-0.728 4.473 -1.754 0 0 0 0 0 0 0 +-0.747 4.5 -1.766 0 0 0 0 0 0 0 +-0.762 4.499 -1.767 0 0 0 0 0 0 0 +-0.77 4.507 -1.771 0 0 0 0 0 0 0 +-0.782 4.49 -1.765 0 0 0 0 0 0 0 +-0.856 4.571 -1.803 0 0 0 0 0 0 0 +-0.867 4.553 -1.797 0 0 0 0 0 0 0 +-0.867 4.516 -1.781 0 0 0 0 0 0 0 +-0.876 4.484 -1.769 0 0 0 0 0 0 0 +-0.896 4.514 -1.783 0 0 0 0 0 0 0 +-0.908 4.498 -1.778 0 0 0 0 0 0 0 +-0.919 4.479 -1.771 0 0 0 0 0 0 0 +-0.931 4.471 -1.768 0 0 0 0 0 0 0 +-0.944 4.463 -1.766 0 0 0 0 0 0 0 +-0.952 4.465 -1.768 0 0 0 0 0 0 0 +-0.961 4.44 -1.759 0 0 0 0 0 0 0 +-0.974 4.432 -1.756 0 0 0 0 0 0 0 +-0.99 4.437 -1.76 0 0 0 0 0 0 0 +-1.005 4.44 -1.762 0 0 0 0 0 0 0 +-1.016 4.424 -1.757 0 0 0 0 0 0 0 +-1.03 4.419 -1.756 0 0 0 0 0 0 0 +-1.037 4.421 -1.758 0 0 0 0 0 0 0 +-1.053 4.423 -1.76 0 0 0 0 0 0 0 +-1.069 4.43 -1.765 0 0 0 0 0 0 0 +-1.083 4.425 -1.764 0 0 0 0 0 0 0 +-1.09 4.397 -1.753 0 0 0 0 0 0 0 +-1.107 4.406 -1.759 0 0 0 0 0 0 0 +-1.122 4.406 -1.76 0 0 0 0 0 0 0 +-1.135 4.401 -1.759 0 0 0 0 0 0 0 +-1.139 4.386 -1.754 0 0 0 0 0 0 0 +-1.155 4.392 -1.758 0 0 0 0 0 0 0 +-1.165 4.374 -1.752 0 0 0 0 0 0 0 +-1.18 4.374 -1.753 0 0 0 0 0 0 0 +-1.193 4.368 -1.752 0 0 0 0 0 0 0 +-1.208 4.368 -1.754 0 0 0 0 0 0 0 +-1.223 4.369 -1.756 0 0 0 0 0 0 0 +-1.228 4.362 -1.754 0 0 0 0 0 0 0 +-1.244 4.365 -1.757 0 0 0 0 0 0 0 +-1.257 4.358 -1.755 0 0 0 0 0 0 0 +-1.27 4.354 -1.755 0 0 0 0 0 0 0 +-1.282 4.343 -1.752 0 0 0 0 0 0 0 +-1.297 4.342 -1.754 0 0 0 0 0 0 0 +-1.312 4.345 -1.757 0 0 0 0 0 0 0 +-1.318 4.338 -1.755 0 0 0 0 0 0 0 +-1.335 4.346 -1.76 0 0 0 0 0 0 0 +-1.346 4.333 -1.756 0 0 0 0 0 0 0 +-1.364 4.341 -1.762 0 0 0 0 0 0 0 +-1.372 4.321 -1.755 0 0 0 0 0 0 0 +-1.388 4.324 -1.758 0 0 0 0 0 0 0 +-1.404 4.328 -1.762 0 0 0 0 0 0 0 +-1.41 4.322 -1.76 0 0 0 0 0 0 0 +-1.425 4.323 -1.762 0 0 0 0 0 0 0 +-1.44 4.32 -1.763 0 0 0 0 0 0 0 +-1.451 4.311 -1.761 0 0 0 0 0 0 0 +-1.466 4.31 -1.762 0 0 0 0 0 0 0 +-1.48 4.307 -1.763 0 0 0 0 0 0 0 +-1.492 4.297 -1.761 0 0 0 0 0 0 0 +-1.502 4.282 -1.756 0 0 0 0 0 0 0 +-1.51 4.284 -1.759 0 0 0 0 0 0 0 +-1.524 4.281 -1.759 0 0 0 0 0 0 0 +-1.538 4.278 -1.76 0 0 0 0 0 0 0 +-1.545 4.254 -1.752 0 0 0 0 0 0 0 +-1.567 4.274 -1.762 0 0 0 0 0 0 0 +-1.577 4.26 -1.759 0 0 0 0 0 0 0 +-1.589 4.25 -1.756 0 0 0 0 0 0 0 +-1.601 4.261 -1.762 0 0 0 0 0 0 0 +-1.612 4.251 -1.76 0 0 0 0 0 0 0 +-1.624 4.243 -1.759 0 0 0 0 0 0 0 +-1.641 4.248 -1.763 0 0 0 0 0 0 0 +-1.65 4.231 -1.758 0 0 0 0 0 0 0 +-1.666 4.232 -1.761 0 0 0 0 0 0 0 +-1.681 4.23 -1.762 0 0 0 0 0 0 0 +-1.685 4.223 -1.76 0 0 0 0 0 0 0 +-1.702 4.226 -1.764 0 0 0 0 0 0 0 +-1.716 4.222 -1.765 0 0 0 0 0 0 0 +-1.728 4.213 -1.763 0 0 0 0 0 0 0 +-1.74 4.206 -1.762 0 0 0 0 0 0 0 +-1.751 4.196 -1.76 0 0 0 0 0 0 0 +-1.765 4.192 -1.761 0 0 0 0 0 0 0 +-1.774 4.194 -1.763 0 0 0 0 0 0 0 +-1.789 4.192 -1.765 0 0 0 0 0 0 0 +-1.799 4.18 -1.762 0 0 0 0 0 0 0 +-1.813 4.176 -1.762 0 0 0 0 0 0 0 +-1.825 4.168 -1.762 0 0 0 0 0 0 0 +-1.842 4.171 -1.765 0 0 0 0 0 0 0 +-1.851 4.155 -1.761 0 0 0 0 0 0 0 +-1.87 4.163 -1.767 0 0 0 0 0 0 0 +-1.872 4.15 -1.762 0 0 0 0 0 0 0 +-1.882 4.137 -1.759 0 0 0 0 0 0 0 +-1.901 4.144 -1.765 0 0 0 0 0 0 0 +-1.915 4.142 -1.767 0 0 0 0 0 0 0 +-1.925 4.129 -1.764 0 0 0 0 0 0 0 +-1.937 4.12 -1.762 0 0 0 0 0 0 0 +-1.953 4.12 -1.765 0 0 0 0 0 0 0 +-1.961 4.12 -1.767 0 0 0 0 0 0 0 +-1.971 4.109 -1.765 0 0 0 0 0 0 0 +-1.984 4.103 -1.765 0 0 0 0 0 0 0 +-1.999 4.1 -1.766 0 0 0 0 0 0 0 +-2.012 4.095 -1.767 0 0 0 0 0 0 0 +-2.024 4.086 -1.765 0 0 0 0 0 0 0 +-2.033 4.073 -1.762 0 0 0 0 0 0 0 +-2.047 4.068 -1.763 0 0 0 0 0 0 0 +-2.054 4.067 -1.764 0 0 0 0 0 0 0 +-2.068 4.063 -1.765 0 0 0 0 0 0 0 +-2.086 4.067 -1.77 0 0 0 0 0 0 0 +-2.095 4.052 -1.766 0 0 0 0 0 0 0 +-2.104 4.039 -1.763 0 0 0 0 0 0 0 +-2.121 4.04 -1.767 0 0 0 0 0 0 0 +-2.126 4.019 -1.76 0 0 0 0 0 0 0 +-2.139 4.029 -1.766 0 0 0 0 0 0 0 +-2.153 4.023 -1.767 0 0 0 0 0 0 0 +-2.162 4.01 -1.764 0 0 0 0 0 0 0 +-2.174 4.002 -1.763 0 0 0 0 0 0 0 +-2.183 3.99 -1.761 0 0 0 0 0 0 0 +-2.197 3.985 -1.762 0 0 0 0 0 0 0 +-2.207 3.973 -1.759 0 0 0 0 0 0 0 +-2.211 3.966 -1.758 0 0 0 0 0 0 0 +-2.24 3.988 -1.772 0 0 0 0 0 0 0 +-2.241 3.962 -1.762 0 0 0 0 0 0 0 +-2.255 3.957 -1.763 0 0 0 0 0 0 0 +-2.288 3.985 -1.78 0 0 0 0 0 0 0 +-2.314 4.001 -1.791 0 0 0 0 0 0 0 +-2.328 3.996 -1.792 0 0 0 0 0 0 0 +-2.319 3.967 -1.78 0 0 0 0 0 0 0 +-2.331 3.959 -1.78 0 0 0 0 0 0 0 +-2.337 3.941 -1.775 0 0 0 0 0 0 0 +-2.35 3.935 -1.775 0 0 0 0 0 0 0 +-2.355 3.915 -1.769 0 0 0 0 0 0 0 +-2.371 3.914 -1.772 0 0 0 0 0 0 0 +-2.387 3.913 -1.775 0 0 0 0 0 0 0 +-2.391 3.891 -1.768 0 0 0 0 0 0 0 +-2.401 3.894 -1.772 0 0 0 0 0 0 0 +-2.408 3.878 -1.768 0 0 0 0 0 0 0 +-2.419 3.869 -1.767 0 0 0 0 0 0 0 +-2.452 3.894 -1.783 0 0 0 0 0 0 0 +-2.46 3.879 -1.779 0 0 0 0 0 0 0 +-2.454 3.843 -1.765 0 0 0 0 0 0 0 +-2.466 3.835 -1.765 0 0 0 0 0 0 0 +-2.477 3.839 -1.769 0 0 0 0 0 0 0 +-2.479 3.816 -1.762 0 0 0 0 0 0 0 +-2.5 3.822 -1.768 0 0 0 0 0 0 0 +-2.512 3.814 -1.768 0 0 0 0 0 0 0 +-2.524 3.806 -1.768 0 0 0 0 0 0 0 +-2.531 3.791 -1.765 0 0 0 0 0 0 0 +-2.55 3.793 -1.77 0 0 0 0 0 0 0 +-2.555 3.788 -1.769 0 0 0 0 0 0 0 +-2.562 3.774 -1.766 0 0 0 0 0 0 0 +-2.576 3.769 -1.768 0 0 0 0 0 0 0 +-2.593 3.768 -1.772 0 0 0 0 0 0 0 +-2.599 3.751 -1.767 0 0 0 0 0 0 0 +-2.615 3.749 -1.77 0 0 0 0 0 0 0 +-2.622 3.734 -1.767 0 0 0 0 0 0 0 +-2.625 3.726 -1.765 0 0 0 0 0 0 0 +-2.642 3.725 -1.768 0 0 0 0 0 0 0 +-2.659 3.724 -1.772 0 0 0 0 0 0 0 +-2.659 3.699 -1.764 0 0 0 0 0 0 0 +-2.68 3.704 -1.771 0 0 0 0 0 0 0 +-2.683 3.684 -1.765 0 0 0 0 0 0 0 +-2.698 3.68 -1.767 0 0 0 0 0 0 0 +-2.714 3.689 -1.774 0 0 0 0 0 0 0 +-2.718 3.67 -1.768 0 0 0 0 0 0 0 +-2.727 3.659 -1.767 0 0 0 0 0 0 0 +-2.744 3.658 -1.771 0 0 0 0 0 0 0 +-2.744 3.634 -1.763 0 0 0 0 0 0 0 +-2.767 3.64 -1.771 0 0 0 0 0 0 0 +-2.787 3.643 -1.777 0 0 0 0 0 0 0 +-2.786 3.618 -1.768 0 0 0 0 0 0 0 +-2.802 3.627 -1.775 0 0 0 0 0 0 0 +-1.111 1.404 -0.622 0 0 0 0 0 0 0 +-1.178 1.431 -0.648 0 0 0 0 0 0 0 +-1.155 1.399 -0.632 0 0 0 0 0 0 0 +-1.17 1.408 -0.639 0 0 0 0 0 0 0 +-3.386 3.142 -1.79 0 0 0 0 0 0 0 +-3.381 3.127 -1.784 0 0 0 0 0 0 0 +-3.372 3.099 -1.774 0 0 0 0 0 0 0 +-3.379 3.086 -1.772 0 0 0 0 0 0 0 +-3.39 3.077 -1.773 0 0 0 0 0 0 0 +-3.404 3.07 -1.775 0 0 0 0 0 0 0 +-3.41 3.057 -1.774 0 0 0 0 0 0 0 +-3.42 3.046 -1.774 0 0 0 0 0 0 0 +-3.425 3.032 -1.772 0 0 0 0 0 0 0 +-3.434 3.03 -1.774 0 0 0 0 0 0 0 +-3.445 3.02 -1.775 0 0 0 0 0 0 0 +-3.46 3.014 -1.778 0 0 0 0 0 0 0 +-3.466 3 -1.775 0 0 0 0 0 0 0 +-3.475 2.989 -1.775 0 0 0 0 0 0 0 +-3.483 2.977 -1.775 0 0 0 0 0 0 0 +-3.499 2.972 -1.778 0 0 0 0 0 0 0 +-3.497 2.96 -1.775 0 0 0 0 0 0 0 +-3.516 2.958 -1.78 0 0 0 0 0 0 0 +-3.518 2.941 -1.776 0 0 0 0 0 0 0 +-3.529 2.931 -1.777 0 0 0 0 0 0 0 +-3.531 2.914 -1.773 0 0 0 0 0 0 0 +-3.553 2.913 -1.78 0 0 0 0 0 0 0 +-3.558 2.899 -1.778 0 0 0 0 0 0 0 +-3.554 2.886 -1.773 0 0 0 0 0 0 0 +-3.56 2.873 -1.772 0 0 0 0 0 0 0 +-3.575 2.866 -1.775 0 0 0 0 0 0 0 +-3.576 2.849 -1.771 0 0 0 0 0 0 0 +-3.603 2.851 -1.78 0 0 0 0 0 0 0 +-3.609 2.838 -1.778 0 0 0 0 0 0 0 +-3.626 2.833 -1.783 0 0 0 0 0 0 0 +-3.622 2.821 -1.778 0 0 0 0 0 0 0 +-3.635 2.813 -1.781 0 0 0 0 0 0 0 +-3.632 2.792 -1.775 0 0 0 0 0 0 0 +-3.64 2.78 -1.774 0 0 0 0 0 0 0 +-3.666 2.782 -1.783 0 0 0 0 0 0 0 +-3.659 2.758 -1.775 0 0 0 0 0 0 0 +-3.675 2.752 -1.778 0 0 0 0 0 0 0 +-3.685 2.751 -1.781 0 0 0 0 0 0 0 +-3.682 2.73 -1.775 0 0 0 0 0 0 0 +-3.702 2.727 -1.781 0 0 0 0 0 0 0 +-3.705 2.711 -1.778 0 0 0 0 0 0 0 +-3.716 2.702 -1.78 0 0 0 0 0 0 0 +-3.72 2.687 -1.778 0 0 0 0 0 0 0 +-3.729 2.675 -1.778 0 0 0 0 0 0 0 +-3.724 2.663 -1.773 0 0 0 0 0 0 0 +-3.752 2.665 -1.783 0 0 0 0 0 0 0 +-3.745 2.643 -1.775 0 0 0 0 0 0 0 +-3.762 2.637 -1.78 0 0 0 0 0 0 0 +-3.769 2.624 -1.779 0 0 0 0 0 0 0 +-3.78 2.615 -1.781 0 0 0 0 0 0 0 +-3.781 2.598 -1.777 0 0 0 0 0 0 0 +-3.797 2.591 -1.781 0 0 0 0 0 0 0 +-3.802 2.586 -1.781 0 0 0 0 0 0 0 +-3.807 2.572 -1.78 0 0 0 0 0 0 0 +-3.814 2.559 -1.779 0 0 0 0 0 0 0 +-3.825 2.549 -1.781 0 0 0 0 0 0 0 +-3.825 2.532 -1.777 0 0 0 0 0 0 0 +-3.842 2.526 -1.781 0 0 0 0 0 0 0 +-3.846 2.511 -1.779 0 0 0 0 0 0 0 +-3.854 2.508 -1.781 0 0 0 0 0 0 0 +-3.853 2.49 -1.777 0 0 0 0 0 0 0 +-3.868 2.482 -1.781 0 0 0 0 0 0 0 +-3.878 2.471 -1.781 0 0 0 0 0 0 0 +-3.898 2.467 -1.788 0 0 0 0 0 0 0 +-3.892 2.446 -1.781 0 0 0 0 0 0 0 +-3.898 2.433 -1.78 0 0 0 0 0 0 0 +-3.903 2.428 -1.781 0 0 0 0 0 0 0 +-3.911 2.415 -1.781 0 0 0 0 0 0 0 +-3.917 2.402 -1.78 0 0 0 0 0 0 0 +-3.929 2.393 -1.782 0 0 0 0 0 0 0 +-3.941 2.383 -1.784 0 0 0 0 0 0 0 +-3.944 2.368 -1.782 0 0 0 0 0 0 0 +-3.956 2.358 -1.784 0 0 0 0 0 0 0 +-3.957 2.35 -1.783 0 0 0 0 0 0 0 +-3.966 2.339 -1.784 0 0 0 0 0 0 0 +-3.97 2.324 -1.782 0 0 0 0 0 0 0 +-3.985 2.316 -1.786 0 0 0 0 0 0 0 +-3.992 2.304 -1.786 0 0 0 0 0 0 0 +-3.995 2.289 -1.784 0 0 0 0 0 0 0 +-4.013 2.282 -1.789 0 0 0 0 0 0 0 +-4.026 2.281 -1.794 0 0 0 0 0 0 0 +-4.035 2.27 -1.794 0 0 0 0 0 0 0 +-4.041 2.256 -1.794 0 0 0 0 0 0 0 +-4.04 2.239 -1.79 0 0 0 0 0 0 0 +-4.056 2.232 -1.794 0 0 0 0 0 0 0 +-4.062 2.218 -1.794 0 0 0 0 0 0 0 +-4.064 2.203 -1.791 0 0 0 0 0 0 0 +-4.084 2.197 -1.797 0 0 0 0 0 0 0 +-4.076 2.184 -1.792 0 0 0 0 0 0 0 +-4.081 2.171 -1.791 0 0 0 0 0 0 0 +-4.091 2.159 -1.793 0 0 0 0 0 0 0 +-4.096 2.146 -1.792 0 0 0 0 0 0 0 +-4.101 2.132 -1.791 0 0 0 0 0 0 0 +-4.136 2.133 -1.804 0 0 0 0 0 0 0 +-4.126 2.112 -1.797 0 0 0 0 0 0 0 +-4.138 2.077 -1.794 0 0 0 0 0 0 0 +-4.167 2.076 -1.805 0 0 0 0 0 0 0 +-4.171 2.061 -1.804 0 0 0 0 0 0 0 +-4.185 2.052 -1.807 0 0 0 0 0 0 0 +-4.19 2.038 -1.807 0 0 0 0 0 0 0 +-4.187 2.028 -1.804 0 0 0 0 0 0 0 +-4.195 2.016 -1.804 0 0 0 0 0 0 0 +-4.186 1.995 -1.797 0 0 0 0 0 0 0 +-4.202 1.987 -1.802 0 0 0 0 0 0 0 +-4.205 1.972 -1.801 0 0 0 0 0 0 0 +-4.161 -2.194 -1.825 0 0 0 0 0 0 0 +-4.159 -2.209 -1.827 0 0 0 0 0 0 0 +-4.118 -2.204 -1.811 0 0 0 0 0 0 0 +-4.111 -2.209 -1.81 0 0 0 0 0 0 0 +-4.106 -2.222 -1.81 0 0 0 0 0 0 0 +-4.095 -2.233 -1.809 0 0 0 0 0 0 0 +-4.093 -2.249 -1.811 0 0 0 0 0 0 0 +-4.081 -2.259 -1.809 0 0 0 0 0 0 0 +-4.081 -2.276 -1.812 0 0 0 0 0 0 0 +-4.061 -2.281 -1.806 0 0 0 0 0 0 0 +-4.061 -2.298 -1.81 0 0 0 0 0 0 0 +-4.074 -2.314 -1.817 0 0 0 0 0 0 0 +-4.054 -2.319 -1.811 0 0 0 0 0 0 0 +-4.05 -2.334 -1.813 0 0 0 0 0 0 0 +-4.039 -2.345 -1.811 0 0 0 0 0 0 0 +-4.035 -2.359 -1.813 0 0 0 0 0 0 0 +-4.021 -2.368 -1.81 0 0 0 0 0 0 0 +-4.015 -2.382 -1.81 0 0 0 0 0 0 0 +-4.01 -2.387 -1.81 0 0 0 0 0 0 0 +-4.006 -2.402 -1.811 0 0 0 0 0 0 0 +-3.998 -2.414 -1.811 0 0 0 0 0 0 0 +-3.979 -2.42 -1.806 0 0 0 0 0 0 0 +-3.984 -2.44 -1.812 0 0 0 0 0 0 0 +-3.969 -2.448 -1.808 0 0 0 0 0 0 0 +-3.964 -2.462 -1.81 0 0 0 0 0 0 0 +-3.959 -2.468 -1.809 0 0 0 0 0 0 0 +-3.949 -2.479 -1.808 0 0 0 0 0 0 0 +-3.94 -2.49 -1.807 0 0 0 0 0 0 0 +-3.934 -2.504 -1.808 0 0 0 0 0 0 0 +-3.937 -2.523 -1.814 0 0 0 0 0 0 0 +-3.923 -2.531 -1.81 0 0 0 0 0 0 0 +-3.913 -2.543 -1.81 0 0 0 0 0 0 0 +-3.906 -2.547 -1.808 0 0 0 0 0 0 0 +-3.903 -2.562 -1.81 0 0 0 0 0 0 0 +-3.898 -2.576 -1.812 0 0 0 0 0 0 0 +-3.883 -2.585 -1.809 0 0 0 0 0 0 0 +-3.883 -2.602 -1.813 0 0 0 0 0 0 0 +-3.87 -2.611 -1.81 0 0 0 0 0 0 0 +-3.863 -2.624 -1.811 0 0 0 0 0 0 0 +-3.862 -2.632 -1.813 0 0 0 0 0 0 0 +-3.868 -2.654 -1.82 0 0 0 0 0 0 0 +-3.846 -2.657 -1.813 0 0 0 0 0 0 0 +-3.842 -2.672 -1.815 0 0 0 0 0 0 0 +-3.826 -2.679 -1.811 0 0 0 0 0 0 0 +-3.825 -2.696 -1.815 0 0 0 0 0 0 0 +-3.812 -2.705 -1.813 0 0 0 0 0 0 0 +-3.809 -2.712 -1.814 0 0 0 0 0 0 0 +-3.792 -2.717 -1.809 0 0 0 0 0 0 0 +-3.786 -2.731 -1.81 0 0 0 0 0 0 0 +-3.781 -2.745 -1.812 0 0 0 0 0 0 0 +-3.772 -2.757 -1.812 0 0 0 0 0 0 0 +-3.762 -2.768 -1.811 0 0 0 0 0 0 0 +-3.768 -2.791 -1.819 0 0 0 0 0 0 0 +-3.744 -2.782 -1.809 0 0 0 0 0 0 0 +-3.737 -2.795 -1.81 0 0 0 0 0 0 0 +-3.737 -2.814 -1.814 0 0 0 0 0 0 0 +-3.727 -2.824 -1.814 0 0 0 0 0 0 0 +-3.715 -2.834 -1.812 0 0 0 0 0 0 0 +-3.707 -2.846 -1.813 0 0 0 0 0 0 0 +-3.698 -2.858 -1.813 0 0 0 0 0 0 0 +-3.698 -2.877 -1.817 0 0 0 0 0 0 0 +-3.688 -2.878 -1.814 0 0 0 0 0 0 0 +-3.682 -2.892 -1.816 0 0 0 0 0 0 0 +-3.661 -2.894 -1.81 0 0 0 0 0 0 0 +-3.663 -2.915 -1.816 0 0 0 0 0 0 0 +-3.651 -2.924 -1.814 0 0 0 0 0 0 0 +-3.644 -2.937 -1.815 0 0 0 0 0 0 0 +-3.637 -2.95 -1.817 0 0 0 0 0 0 0 +-3.625 -2.95 -1.813 0 0 0 0 0 0 0 +-3.625 -2.969 -1.817 0 0 0 0 0 0 0 +-3.61 -2.975 -1.814 0 0 0 0 0 0 0 +-3.597 -2.984 -1.813 0 0 0 0 0 0 0 +-3.597 -3.003 -1.817 0 0 0 0 0 0 0 +-3.589 -3.015 -1.818 0 0 0 0 0 0 0 +-3.58 -3.028 -1.819 0 0 0 0 0 0 0 +-3.574 -3.032 -1.818 0 0 0 0 0 0 0 +-3.554 -3.034 -1.812 0 0 0 0 0 0 0 +-3.552 -3.052 -1.817 0 0 0 0 0 0 0 +-3.54 -3.061 -1.815 0 0 0 0 0 0 0 +-3.54 -3.08 -1.82 0 0 0 0 0 0 0 +-3.54 -3.1 -1.826 0 0 0 0 0 0 0 +-3.522 -3.104 -1.821 0 0 0 0 0 0 0 +-3.52 -3.112 -1.823 0 0 0 0 0 0 0 +-3.507 -3.12 -1.821 0 0 0 0 0 0 0 +-3.502 -3.135 -1.823 0 0 0 0 0 0 0 +-3.489 -3.144 -1.822 0 0 0 0 0 0 0 +-3.476 -3.152 -1.82 0 0 0 0 0 0 0 +-3.471 -3.167 -1.823 0 0 0 0 0 0 0 +-3.445 -3.173 -1.817 0 0 0 0 0 0 0 +-3.452 -3.2 -1.826 0 0 0 0 0 0 0 +-3.45 -3.219 -1.831 0 0 0 0 0 0 0 +-3.431 -3.22 -1.826 0 0 0 0 0 0 0 +-3.423 -3.234 -1.827 0 0 0 0 0 0 0 +-3.425 -3.256 -1.834 0 0 0 0 0 0 0 +-3.419 -3.271 -1.836 0 0 0 0 0 0 0 +-3.408 -3.271 -1.833 0 0 0 0 0 0 0 +-3.376 -3.26 -1.82 0 0 0 0 0 0 0 +-3.381 -3.286 -1.83 0 0 0 0 0 0 0 +-3.343 -3.269 -1.814 0 0 0 0 0 0 0 +-3.342 -3.289 -1.819 0 0 0 0 0 0 0 +-3.32 -3.287 -1.812 0 0 0 0 0 0 0 +-3.308 -3.296 -1.811 0 0 0 0 0 0 0 +-3.307 -3.306 -1.814 0 0 0 0 0 0 0 +-3.29 -3.309 -1.81 0 0 0 0 0 0 0 +-3.282 -3.322 -1.811 0 0 0 0 0 0 0 +-3.271 -3.331 -1.81 0 0 0 0 0 0 0 +-3.259 -3.34 -1.81 0 0 0 0 0 0 0 +-3.245 -3.346 -1.807 0 0 0 0 0 0 0 +-3.237 -3.359 -1.809 0 0 0 0 0 0 0 +-3.226 -3.359 -1.806 0 0 0 0 0 0 0 +-3.218 -3.372 -1.807 0 0 0 0 0 0 0 +-3.21 -3.385 -1.809 0 0 0 0 0 0 0 +-3.196 -3.391 -1.807 0 0 0 0 0 0 0 +-3.18 -3.395 -1.804 0 0 0 0 0 0 0 +-3.171 -3.407 -1.804 0 0 0 0 0 0 0 +-3.165 -3.422 -1.807 0 0 0 0 0 0 0 +-3.151 -3.417 -1.802 0 0 0 0 0 0 0 +-3.151 -3.44 -1.809 0 0 0 0 0 0 0 +-3.134 -3.443 -1.805 0 0 0 0 0 0 0 +-3.137 -3.468 -1.814 0 0 0 0 0 0 0 +-3.11 -3.459 -1.804 0 0 0 0 0 0 0 +-3.103 -3.473 -1.806 0 0 0 0 0 0 0 +-1.005 -1.475 -0.62 0 0 0 0 0 0 0 +-2.553 -3.966 -1.83 0 0 0 0 0 0 0 +-2.528 -3.954 -1.82 0 0 0 0 0 0 0 +-2.491 -3.922 -1.801 0 0 0 0 0 0 0 +-2.47 -3.916 -1.794 0 0 0 0 0 0 0 +-2.466 -3.938 -1.801 0 0 0 0 0 0 0 +-2.446 -3.92 -1.791 0 0 0 0 0 0 0 +-2.432 -3.924 -1.789 0 0 0 0 0 0 0 +-2.431 -3.951 -1.798 0 0 0 0 0 0 0 +-2.414 -3.951 -1.794 0 0 0 0 0 0 0 +-2.399 -3.953 -1.792 0 0 0 0 0 0 0 +-2.392 -3.97 -1.797 0 0 0 0 0 0 0 +-2.376 -3.972 -1.794 0 0 0 0 0 0 0 +-2.369 -3.975 -1.794 0 0 0 0 0 0 0 +-2.358 -3.984 -1.794 0 0 0 0 0 0 0 +-2.344 -3.989 -1.793 0 0 0 0 0 0 0 +-2.332 -3.997 -1.794 0 0 0 0 0 0 0 +-2.325 -4.014 -1.798 0 0 0 0 0 0 0 +-2.309 -4.017 -1.796 0 0 0 0 0 0 0 +-2.299 -4.027 -1.797 0 0 0 0 0 0 0 +-2.285 -4.018 -1.791 0 0 0 0 0 0 0 +-2.267 -4.015 -1.787 0 0 0 0 0 0 0 +-2.262 -4.036 -1.793 0 0 0 0 0 0 0 +-2.247 -4.039 -1.791 0 0 0 0 0 0 0 +-2.238 -4.053 -1.794 0 0 0 0 0 0 0 +-2.218 -4.047 -1.788 0 0 0 0 0 0 0 +-2.212 -4.067 -1.794 0 0 0 0 0 0 0 +-2.208 -4.074 -1.796 0 0 0 0 0 0 0 +-2.196 -4.082 -1.797 0 0 0 0 0 0 0 +-2.185 -4.092 -1.798 0 0 0 0 0 0 0 +-2.168 -4.093 -1.795 0 0 0 0 0 0 0 +-2.16 -4.108 -1.799 0 0 0 0 0 0 0 +-2.143 -4.106 -1.795 0 0 0 0 0 0 0 +-2.139 -4.148 -1.81 0 0 0 0 0 0 0 +-2.136 -4.174 -1.819 0 0 0 0 0 0 0 +-2.135 -4.205 -1.83 0 0 0 0 0 0 0 +-2.125 -4.217 -1.833 0 0 0 0 0 0 0 +-2.092 -4.184 -1.814 0 0 0 0 0 0 0 +-2.044 -4.17 -1.801 0 0 0 0 0 0 0 +-2.028 -4.17 -1.797 0 0 0 0 0 0 0 +-2.025 -4.198 -1.807 0 0 0 0 0 0 0 +-1.995 -4.168 -1.791 0 0 0 0 0 0 0 +-1.979 -4.169 -1.788 0 0 0 0 0 0 0 +-1.967 -4.177 -1.789 0 0 0 0 0 0 0 +-1.953 -4.181 -1.788 0 0 0 0 0 0 0 +-1.941 -4.173 -1.783 0 0 0 0 0 0 0 +-1.924 -4.17 -1.779 0 0 0 0 0 0 0 +-1.909 -4.171 -1.777 0 0 0 0 0 0 0 +-1.899 -4.186 -1.781 0 0 0 0 0 0 0 +-1.88 -4.178 -1.775 0 0 0 0 0 0 0 +-1.863 -4.175 -1.771 0 0 0 0 0 0 0 +-1.856 -4.193 -1.776 0 0 0 0 0 0 0 +-1.841 -4.196 -1.775 0 0 0 0 0 0 0 +-1.83 -4.188 -1.77 0 0 0 0 0 0 0 +-1.821 -4.204 -1.775 0 0 0 0 0 0 0 +-1.804 -4.2 -1.77 0 0 0 0 0 0 0 +-1.788 -4.2 -1.768 0 0 0 0 0 0 0 +-1.776 -4.208 -1.768 0 0 0 0 0 0 0 +-1.764 -4.217 -1.77 0 0 0 0 0 0 0 +-1.752 -4.225 -1.772 0 0 0 0 0 0 0 +-1.743 -4.223 -1.769 0 0 0 0 0 0 0 +-1.726 -4.218 -1.765 0 0 0 0 0 0 0 +-1.714 -4.227 -1.766 0 0 0 0 0 0 0 +-1.697 -4.222 -1.762 0 0 0 0 0 0 0 +-1.688 -4.239 -1.767 0 0 0 0 0 0 0 +-1.669 -4.231 -1.761 0 0 0 0 0 0 0 +-1.665 -4.239 -1.763 0 0 0 0 0 0 0 +-1.652 -4.246 -1.764 0 0 0 0 0 0 0 +-1.637 -4.247 -1.762 0 0 0 0 0 0 0 +-1.62 -4.24 -1.757 0 0 0 0 0 0 0 +-1.604 -4.239 -1.754 0 0 0 0 0 0 0 +-1.594 -4.254 -1.759 0 0 0 0 0 0 0 +-1.586 -4.275 -1.765 0 0 0 0 0 0 0 +-1.567 -4.264 -1.759 0 0 0 0 0 0 0 +-1.564 -4.277 -1.763 0 0 0 0 0 0 0 +-1.547 -4.271 -1.759 0 0 0 0 0 0 0 +-1.53 -4.264 -1.753 0 0 0 0 0 0 0 +-1.516 -4.267 -1.752 0 0 0 0 0 0 0 +-1.506 -4.282 -1.757 0 0 0 0 0 0 0 +-1.489 -4.278 -1.753 0 0 0 0 0 0 0 +-1.474 -4.278 -1.751 0 0 0 0 0 0 0 +-1.472 -4.294 -1.757 0 0 0 0 0 0 0 +-1.455 -4.288 -1.752 0 0 0 0 0 0 0 +-1.442 -4.294 -1.753 0 0 0 0 0 0 0 +-1.426 -4.29 -1.749 0 0 0 0 0 0 0 +-1.415 -4.303 -1.753 0 0 0 0 0 0 0 +-1.401 -4.306 -1.752 0 0 0 0 0 0 0 +-1.386 -4.307 -1.751 0 0 0 0 0 0 0 +-1.378 -4.304 -1.749 0 0 0 0 0 0 0 +-1.364 -4.308 -1.749 0 0 0 0 0 0 0 +-1.351 -4.314 -1.749 0 0 0 0 0 0 0 +-1.336 -4.313 -1.747 0 0 0 0 0 0 0 +-1.325 -4.326 -1.751 0 0 0 0 0 0 0 +-1.311 -4.328 -1.75 0 0 0 0 0 0 0 +-1.298 -4.332 -1.75 0 0 0 0 0 0 0 +-1.286 -4.318 -1.743 0 0 0 0 0 0 0 +-1.278 -4.342 -1.752 0 0 0 0 0 0 0 +-1.26 -4.33 -1.745 0 0 0 0 0 0 0 +-1.246 -4.332 -1.744 0 0 0 0 0 0 0 +-1.233 -4.338 -1.745 0 0 0 0 0 0 0 +-1.217 -4.335 -1.742 0 0 0 0 0 0 0 +-1.203 -4.335 -1.74 0 0 0 0 0 0 0 +-1.199 -4.347 -1.745 0 0 0 0 0 0 0 +-1.182 -4.339 -1.739 0 0 0 0 0 0 0 +-1.172 -4.358 -1.746 0 0 0 0 0 0 0 +-1.157 -4.355 -1.743 0 0 0 0 0 0 0 +-1.142 -4.353 -1.741 0 0 0 0 0 0 0 +-1.128 -4.358 -1.742 0 0 0 0 0 0 0 +-1.118 -4.375 -1.747 0 0 0 0 0 0 0 +-1.103 -4.346 -1.734 0 0 0 0 0 0 0 +-1.093 -4.362 -1.739 0 0 0 0 0 0 0 +-1.079 -4.363 -1.739 0 0 0 0 0 0 0 +-1.067 -4.374 -1.742 0 0 0 0 0 0 0 +-1.05 -4.367 -1.737 0 0 0 0 0 0 0 +-1.036 -4.366 -1.736 0 0 0 0 0 0 0 +-1.027 -4.389 -1.744 0 0 0 0 0 0 0 +-1.019 -4.387 -1.743 0 0 0 0 0 0 0 +-1.004 -4.385 -1.74 0 0 0 0 0 0 0 +-0.993 -4.403 -1.746 0 0 0 0 0 0 0 +-0.976 -4.388 -1.739 0 0 0 0 0 0 0 +-0.962 -4.392 -1.739 0 0 0 0 0 0 0 +-0.95 -4.403 -1.743 0 0 0 0 0 0 0 +-0.935 -4.402 -1.741 0 0 0 0 0 0 0 +-0.926 -4.391 -1.736 0 0 0 0 0 0 0 +-0.915 -4.408 -1.742 0 0 0 0 0 0 0 +-0.898 -4.395 -1.735 0 0 0 0 0 0 0 +-0.884 -4.399 -1.736 0 0 0 0 0 0 0 +-0.873 -4.417 -1.742 0 0 0 0 0 0 0 +-0.86 -4.419 -1.742 0 0 0 0 0 0 0 +-0.843 -4.409 -1.736 0 0 0 0 0 0 0 +-0.838 -4.422 -1.741 0 0 0 0 0 0 0 +-0.826 -4.435 -1.746 0 0 0 0 0 0 0 +-0.81 -4.423 -1.739 0 0 0 0 0 0 0 +-0.796 -4.427 -1.74 0 0 0 0 0 0 0 +-0.781 -4.424 -1.738 0 0 0 0 0 0 0 +-0.769 -4.434 -1.741 0 0 0 0 0 0 0 +-0.755 -4.435 -1.74 0 0 0 0 0 0 0 +-0.748 -4.436 -1.74 0 0 0 0 0 0 0 +-0.735 -4.446 -1.743 0 0 0 0 0 0 0 +-0.72 -4.442 -1.741 0 0 0 0 0 0 0 +-0.705 -4.439 -1.739 0 0 0 0 0 0 0 +-0.692 -4.445 -1.74 0 0 0 0 0 0 0 +-0.677 -4.442 -1.738 0 0 0 0 0 0 0 +-0.663 -4.442 -1.737 0 0 0 0 0 0 0 +-0.657 -4.45 -1.74 0 0 0 0 0 0 0 +-0.643 -4.452 -1.74 0 0 0 0 0 0 0 +-0.629 -4.456 -1.741 0 0 0 0 0 0 0 +-0.614 -4.447 -1.736 0 0 0 0 0 0 0 +-0.603 -4.471 -1.746 0 0 0 0 0 0 0 +-0.588 -4.466 -1.743 0 0 0 0 0 0 0 +-0.574 -4.475 -1.746 0 0 0 0 0 0 0 +-0.569 -4.485 -1.749 0 0 0 0 0 0 0 +-0.554 -4.483 -1.748 0 0 0 0 0 0 0 +-0.538 -4.47 -1.742 0 0 0 0 0 0 0 +-0.525 -4.483 -1.746 0 0 0 0 0 0 0 +-0.511 -4.481 -1.745 0 0 0 0 0 0 0 +-0.497 -4.482 -1.745 0 0 0 0 0 0 0 +-0.483 -4.489 -1.747 0 0 0 0 0 0 0 +-0.476 -4.49 -1.747 0 0 0 0 0 0 0 +-0.461 -4.482 -1.743 0 0 0 0 0 0 0 +-0.448 -4.495 -1.748 0 0 0 0 0 0 0 +-0.434 -4.491 -1.746 0 0 0 0 0 0 0 +-0.42 -4.497 -1.748 0 0 0 0 0 0 0 +-0.406 -4.504 -1.75 0 0 0 0 0 0 0 +-0.392 -4.5 -1.748 0 0 0 0 0 0 0 +-0.385 -4.508 -1.751 0 0 0 0 0 0 0 +-0.37 -4.502 -1.748 0 0 0 0 0 0 0 +-0.356 -4.501 -1.747 0 0 0 0 0 0 0 +-0.342 -4.506 -1.749 0 0 0 0 0 0 0 +-0.328 -4.509 -1.749 0 0 0 0 0 0 0 +-0.315 -4.517 -1.752 0 0 0 0 0 0 0 +-0.3 -4.514 -1.751 0 0 0 0 0 0 0 +-0.285 -4.501 -1.745 0 0 0 0 0 0 0 +-0.278 -4.505 -1.746 0 0 0 0 0 0 0 +-0.264 -4.511 -1.749 0 0 0 0 0 0 0 +-0.25 -4.512 -1.749 0 0 0 0 0 0 0 +-0.237 -4.524 -1.753 0 0 0 0 0 0 0 +-0.222 -4.523 -1.752 0 0 0 0 0 0 0 +-0.208 -4.509 -1.746 0 0 0 0 0 0 0 +-0.194 -4.517 -1.749 0 0 0 0 0 0 0 +-0.187 -4.524 -1.752 0 0 0 0 0 0 0 +-0.173 -4.528 -1.754 0 0 0 0 0 0 0 +-0.158 -4.518 -1.749 0 0 0 0 0 0 0 +-0.144 -4.524 -1.752 0 0 0 0 0 0 0 +-0.13 -4.53 -1.754 0 0 0 0 0 0 0 +-0.115 -4.515 -1.748 0 0 0 0 0 0 0 +-0.108 -4.518 -1.749 0 0 0 0 0 0 0 +-0.094 -4.518 -1.749 0 0 0 0 0 0 0 +-0.08 -4.533 -1.755 0 0 0 0 0 0 0 +-0.066 -4.524 -1.751 0 0 0 0 0 0 0 +-0.052 -4.53 -1.753 0 0 0 0 0 0 0 +-0.037 -4.524 -1.751 0 0 0 0 0 0 0 +-0.023 -4.511 -1.746 0 0 0 0 0 0 0 +-0.009 -4.521 -1.749 0 0 0 0 0 0 0 +-0.002 -4.532 -1.754 0 0 0 0 0 0 0 +0.012 -4.528 -1.752 0 0 0 0 0 0 0 +0.027 -4.53 -1.753 0 0 0 0 0 0 0 +0.041 -4.515 -1.747 0 0 0 0 0 0 0 +0.055 -4.53 -1.753 0 0 0 0 0 0 0 +0.069 -4.533 -1.755 0 0 0 0 0 0 0 +0.083 -4.518 -1.749 0 0 0 0 0 0 0 +0.091 -4.531 -1.754 0 0 0 0 0 0 0 +0.105 -4.525 -1.752 0 0 0 0 0 0 0 +0.119 -4.523 -1.751 0 0 0 0 0 0 0 +0.133 -4.533 -1.755 0 0 0 0 0 0 0 +0.148 -4.528 -1.753 0 0 0 0 0 0 0 +0.162 -4.527 -1.753 0 0 0 0 0 0 0 +0.176 -4.525 -1.752 0 0 0 0 0 0 0 +0.183 -4.524 -1.752 0 0 0 0 0 0 0 +0.197 -4.527 -1.754 0 0 0 0 0 0 0 +0.212 -4.529 -1.755 0 0 0 0 0 0 0 +0.225 -4.517 -1.75 0 0 0 0 0 0 0 +0.24 -4.527 -1.755 0 0 0 0 0 0 0 +0.254 -4.526 -1.755 0 0 0 0 0 0 0 +0.269 -4.539 -1.76 0 0 0 0 0 0 0 +0.276 -4.533 -1.758 0 0 0 0 0 0 0 +0.29 -4.53 -1.757 0 0 0 0 0 0 0 +0.305 -4.531 -1.758 0 0 0 0 0 0 0 +0.319 -4.528 -1.757 0 0 0 0 0 0 0 +0.333 -4.527 -1.757 0 0 0 0 0 0 0 +0.348 -4.531 -1.759 0 0 0 0 0 0 0 +0.362 -4.532 -1.76 0 0 0 0 0 0 0 +0.369 -4.528 -1.759 0 0 0 0 0 0 0 +0.383 -4.529 -1.759 0 0 0 0 0 0 0 +0.398 -4.535 -1.762 0 0 0 0 0 0 0 +0.412 -4.528 -1.76 0 0 0 0 0 0 0 +0.427 -4.532 -1.762 0 0 0 0 0 0 0 +0.441 -4.536 -1.765 0 0 0 0 0 0 0 +0.458 -4.559 -1.775 0 0 0 0 0 0 0 +0.462 -4.525 -1.761 0 0 0 0 0 0 0 +0.477 -4.534 -1.765 0 0 0 0 0 0 0 +0.49 -4.524 -1.762 0 0 0 0 0 0 0 +0.506 -4.531 -1.765 0 0 0 0 0 0 0 +0.521 -4.535 -1.768 0 0 0 0 0 0 0 +0.533 -4.519 -1.762 0 0 0 0 0 0 0 +0.55 -4.539 -1.771 0 0 0 0 0 0 0 +0.853 -4.52 -1.782 0 0 0 0 0 0 0 +0.867 -4.512 -1.78 0 0 0 0 0 0 0 +0.882 -4.517 -1.783 0 0 0 0 0 0 0 +0.894 -4.501 -1.778 0 0 0 0 0 0 0 +0.908 -4.498 -1.778 0 0 0 0 0 0 0 +0.92 -4.488 -1.775 0 0 0 0 0 0 0 +0.927 -4.485 -1.774 0 0 0 0 0 0 0 +0.944 -4.493 -1.778 0 0 0 0 0 0 0 +0.963 -4.515 -1.789 0 0 0 0 0 0 0 +2.58 -3.902 -1.814 0 0 0 0 0 0 0 +2.579 -3.876 -1.805 0 0 0 0 0 0 0 +2.584 -3.857 -1.8 0 0 0 0 0 0 0 +2.583 -3.842 -1.794 0 0 0 0 0 0 0 +2.592 -3.829 -1.792 0 0 0 0 0 0 0 +2.602 -3.818 -1.791 0 0 0 0 0 0 0 +2.616 -3.813 -1.792 0 0 0 0 0 0 0 +2.617 -3.79 -1.784 0 0 0 0 0 0 0 +2.632 -3.786 -1.787 0 0 0 0 0 0 0 +2.65 -3.785 -1.791 0 0 0 0 0 0 0 +2.661 -3.775 -1.79 0 0 0 0 0 0 0 +2.666 -3.771 -1.79 0 0 0 0 0 0 0 +2.677 -3.761 -1.789 0 0 0 0 0 0 0 +2.687 -3.75 -1.788 0 0 0 0 0 0 0 +2.701 -3.744 -1.789 0 0 0 0 0 0 0 +2.711 -3.734 -1.788 0 0 0 0 0 0 0 +2.723 -3.726 -1.788 0 0 0 0 0 0 0 +2.745 -3.731 -1.795 0 0 0 0 0 0 0 +2.742 -3.714 -1.789 0 0 0 0 0 0 0 +2.756 -3.709 -1.791 0 0 0 0 0 0 0 +2.767 -3.7 -1.791 0 0 0 0 0 0 0 +2.772 -3.683 -1.786 0 0 0 0 0 0 0 +2.792 -3.684 -1.791 0 0 0 0 0 0 0 +2.802 -3.674 -1.791 0 0 0 0 0 0 0 +2.81 -3.661 -1.788 0 0 0 0 0 0 0 +2.813 -3.652 -1.786 0 0 0 0 0 0 0 +2.837 -3.659 -1.794 0 0 0 0 0 0 0 +2.842 -3.643 -1.791 0 0 0 0 0 0 0 +2.856 -3.637 -1.792 0 0 0 0 0 0 0 +2.862 -3.621 -1.788 0 0 0 0 0 0 0 +2.878 -3.617 -1.791 0 0 0 0 0 0 0 +2.88 -3.609 -1.789 0 0 0 0 0 0 0 +2.891 -3.599 -1.789 0 0 0 0 0 0 0 +2.902 -3.59 -1.789 0 0 0 0 0 0 0 +2.924 -3.594 -1.796 0 0 0 0 0 0 0 +2.926 -3.573 -1.79 0 0 0 0 0 0 0 +2.937 -3.564 -1.79 0 0 0 0 0 0 0 +2.946 -3.552 -1.788 0 0 0 0 0 0 0 +2.963 -3.55 -1.792 0 0 0 0 0 0 0 +2.97 -3.547 -1.793 0 0 0 0 0 0 0 +2.985 -3.542 -1.795 0 0 0 0 0 0 0 +2.991 -3.527 -1.792 0 0 0 0 0 0 0 +3.001 -3.516 -1.791 0 0 0 0 0 0 0 +3.011 -3.505 -1.791 0 0 0 0 0 0 0 +3.025 -3.5 -1.793 0 0 0 0 0 0 0 +3.031 -3.485 -1.79 0 0 0 0 0 0 0 +3.043 -3.487 -1.794 0 0 0 0 0 0 0 +3.056 -3.48 -1.795 0 0 0 0 0 0 0 +3.06 -3.462 -1.791 0 0 0 0 0 0 0 +3.066 -3.447 -1.788 0 0 0 0 0 0 0 +3.079 -3.44 -1.789 0 0 0 0 0 0 0 +3.09 -3.43 -1.789 0 0 0 0 0 0 0 +3.093 -3.412 -1.784 0 0 0 0 0 0 0 +3.109 -3.418 -1.791 0 0 0 0 0 0 0 +3.122 -3.411 -1.792 0 0 0 0 0 0 0 +3.122 -3.391 -1.786 0 0 0 0 0 0 0 +3.133 -3.381 -1.786 0 0 0 0 0 0 0 +3.153 -3.38 -1.791 0 0 0 0 0 0 0 +3.162 -3.369 -1.791 0 0 0 0 0 0 0 +3.178 -3.365 -1.794 0 0 0 0 0 0 0 +3.174 -3.35 -1.788 0 0 0 0 0 0 0 +3.174 -3.33 -1.782 0 0 0 0 0 0 0 +3.188 -3.324 -1.784 0 0 0 0 0 0 0 +3.207 -3.321 -1.789 0 0 0 0 0 0 0 +3.221 -3.315 -1.791 0 0 0 0 0 0 0 +3.224 -3.297 -1.787 0 0 0 0 0 0 0 +3.231 -3.295 -1.788 0 0 0 0 0 0 0 +3.231 -3.274 -1.782 0 0 0 0 0 0 0 +3.247 -3.269 -1.785 0 0 0 0 0 0 0 +3.26 -3.262 -1.787 0 0 0 0 0 0 0 +3.279 -3.26 -1.792 0 0 0 0 0 0 0 +3.281 -3.242 -1.788 0 0 0 0 0 0 0 +3.297 -3.237 -1.791 0 0 0 0 0 0 0 +3.299 -3.219 -1.786 0 0 0 0 0 0 0 +3.296 -3.206 -1.781 0 0 0 0 0 0 0 +3.322 -3.211 -1.791 0 0 0 0 0 0 0 +3.327 -3.196 -1.788 0 0 0 0 0 0 0 +3.33 -3.179 -1.784 0 0 0 0 0 0 0 +3.352 -3.18 -1.791 0 0 0 0 0 0 0 +3.357 -3.164 -1.788 0 0 0 0 0 0 0 +3.364 -3.151 -1.786 0 0 0 0 0 0 0 +3.376 -3.152 -1.79 0 0 0 0 0 0 0 +3.384 -3.14 -1.789 0 0 0 0 0 0 0 +3.396 -3.131 -1.79 0 0 0 0 0 0 0 +3.403 -3.118 -1.788 0 0 0 0 0 0 0 +3.414 -3.108 -1.789 0 0 0 0 0 0 0 +3.419 -3.094 -1.787 0 0 0 0 0 0 0 +3.43 -3.084 -1.788 0 0 0 0 0 0 0 +3.437 -3.08 -1.788 0 0 0 0 0 0 0 +3.439 -3.063 -1.784 0 0 0 0 0 0 0 +3.45 -3.054 -1.785 0 0 0 0 0 0 0 +3.461 -3.044 -1.786 0 0 0 0 0 0 0 +3.478 -3.039 -1.79 0 0 0 0 0 0 0 +3.475 -3.017 -1.783 0 0 0 0 0 0 0 +3.48 -3.003 -1.781 0 0 0 0 0 0 0 +3.489 -3.001 -1.783 0 0 0 0 0 0 0 +3.497 -2.989 -1.782 0 0 0 0 0 0 0 +3.504 -2.975 -1.781 0 0 0 0 0 0 0 +3.524 -2.974 -1.787 0 0 0 0 0 0 0 +3.532 -2.962 -1.786 0 0 0 0 0 0 0 +3.543 -2.952 -1.787 0 0 0 0 0 0 0 +3.546 -2.936 -1.784 0 0 0 0 0 0 0 +3.552 -2.931 -1.784 0 0 0 0 0 0 0 +3.559 -2.918 -1.783 0 0 0 0 0 0 0 +3.566 -2.906 -1.782 0 0 0 0 0 0 0 +3.577 -2.895 -1.783 0 0 0 0 0 0 0 +3.59 -2.888 -1.785 0 0 0 0 0 0 0 +3.594 -2.872 -1.782 0 0 0 0 0 0 0 +3.604 -2.862 -1.783 0 0 0 0 0 0 0 +3.613 -2.859 -1.785 0 0 0 0 0 0 0 +3.6 -2.831 -1.774 0 0 0 0 0 0 0 +3.628 -2.834 -1.784 0 0 0 0 0 0 0 +3.635 -2.822 -1.783 0 0 0 0 0 0 0 +3.64 -2.807 -1.781 0 0 0 0 0 0 0 +3.638 -2.788 -1.775 0 0 0 0 0 0 0 +3.653 -2.781 -1.778 0 0 0 0 0 0 0 +3.654 -2.773 -1.777 0 0 0 0 0 0 0 +3.67 -2.767 -1.781 0 0 0 0 0 0 0 +3.673 -2.751 -1.778 0 0 0 0 0 0 0 +3.685 -2.741 -1.779 0 0 0 0 0 0 0 +3.693 -2.73 -1.779 0 0 0 0 0 0 0 +3.702 -2.718 -1.779 0 0 0 0 0 0 0 +3.713 -2.709 -1.781 0 0 0 0 0 0 0 +3.712 -2.699 -1.778 0 0 0 0 0 0 0 +3.722 -2.688 -1.778 0 0 0 0 0 0 0 +3.73 -2.676 -1.778 0 0 0 0 0 0 0 +3.731 -2.659 -1.775 0 0 0 0 0 0 0 +3.742 -2.65 -1.776 0 0 0 0 0 0 0 +3.755 -2.641 -1.778 0 0 0 0 0 0 0 +3.768 -2.632 -1.781 0 0 0 0 0 0 0 +3.761 -2.619 -1.775 0 0 0 0 0 0 0 +3.774 -2.61 -1.778 0 0 0 0 0 0 0 +3.782 -2.599 -1.778 0 0 0 0 0 0 0 +3.783 -2.582 -1.774 0 0 0 0 0 0 0 +3.806 -2.58 -1.781 0 0 0 0 0 0 0 +3.813 -2.567 -1.781 0 0 0 0 0 0 0 +3.827 -2.559 -1.784 0 0 0 0 0 0 0 +3.822 -2.547 -1.779 0 0 0 0 0 0 0 +3.833 -2.537 -1.781 0 0 0 0 0 0 0 +3.832 -2.519 -1.776 0 0 0 0 0 0 0 +3.853 -2.516 -1.783 0 0 0 0 0 0 0 +3.852 -2.498 -1.778 0 0 0 0 0 0 0 +3.857 -2.484 -1.777 0 0 0 0 0 0 0 +3.861 -2.469 -1.775 0 0 0 0 0 0 0 +3.868 -2.465 -1.777 0 0 0 0 0 0 0 +3.871 -2.45 -1.775 0 0 0 0 0 0 0 +3.895 -2.448 -1.782 0 0 0 0 0 0 0 +3.895 -2.431 -1.778 0 0 0 0 0 0 0 +3.901 -2.418 -1.778 0 0 0 0 0 0 0 +3.899 -2.4 -1.773 0 0 0 0 0 0 0 +3.917 -2.394 -1.778 0 0 0 0 0 0 0 +3.902 -2.376 -1.769 0 0 0 0 0 0 0 +3.925 -2.374 -1.777 0 0 0 0 0 0 0 +3.933 -2.361 -1.777 0 0 0 0 0 0 0 +3.937 -2.347 -1.775 0 0 0 0 0 0 0 +3.948 -2.336 -1.777 0 0 0 0 0 0 0 +3.95 -2.321 -1.775 0 0 0 0 0 0 0 +3.954 -2.307 -1.773 0 0 0 0 0 0 0 +3.967 -2.306 -1.778 0 0 0 0 0 0 0 +3.971 -2.292 -1.776 0 0 0 0 0 0 0 +3.972 -2.276 -1.773 0 0 0 0 0 0 0 +3.984 -2.266 -1.775 0 0 0 0 0 0 0 +3.994 -2.255 -1.777 0 0 0 0 0 0 0 +4.024 -2.255 -1.788 0 0 0 0 0 0 0 +4.018 -2.236 -1.781 0 0 0 0 0 0 0 +4.004 -2.219 -1.773 0 0 0 0 0 0 0 +4.013 -2.208 -1.774 0 0 0 0 0 0 0 +4.019 -2.195 -1.774 0 0 0 0 0 0 0 +4.025 -2.182 -1.773 0 0 0 0 0 0 0 +4.056 -2.182 -1.784 0 0 0 0 0 0 0 +4.042 -2.158 -1.775 0 0 0 0 0 0 0 +4.042 -2.142 -1.772 0 0 0 0 0 0 0 +4.052 -2.139 -1.775 0 0 0 0 0 0 0 +4.06 -2.127 -1.775 0 0 0 0 0 0 0 +4.072 -2.117 -1.778 0 0 0 0 0 0 0 +4.067 -2.098 -1.772 0 0 0 0 0 0 0 +4.072 -2.085 -1.772 0 0 0 0 0 0 0 +4.09 -2.078 -1.777 0 0 0 0 0 0 0 +4.091 -2.062 -1.775 0 0 0 0 0 0 0 +4.086 -2.052 -1.771 0 0 0 0 0 0 0 +4.101 -2.043 -1.775 0 0 0 0 0 0 0 +4.101 -2.027 -1.772 0 0 0 0 0 0 0 +4.114 -2.017 -1.775 0 0 0 0 0 0 0 +4.115 -2.002 -1.772 0 0 0 0 0 0 0 +4.115 -1.986 -1.769 0 0 0 0 0 0 0 +4.121 -1.973 -1.769 0 0 0 0 0 0 0 +4.114 -1.962 -1.765 0 0 0 0 0 0 0 +4.13 -1.953 -1.769 0 0 0 0 0 0 0 +4.14 -1.942 -1.771 0 0 0 0 0 0 0 +4.139 -1.926 -1.768 0 0 0 0 0 0 0 +4.15 -1.915 -1.77 0 0 0 0 0 0 0 +4.144 -1.897 -1.765 0 0 0 0 0 0 0 +4.164 -1.89 -1.771 0 0 0 0 0 0 0 +4.16 -1.88 -1.768 0 0 0 0 0 0 0 +4.159 -1.864 -1.765 0 0 0 0 0 0 0 +4.172 -1.854 -1.768 0 0 0 0 0 0 0 +4.181 -1.842 -1.769 0 0 0 0 0 0 0 +4.173 -1.823 -1.763 0 0 0 0 0 0 0 +4.189 -1.815 -1.768 0 0 0 0 0 0 0 +4.184 -1.797 -1.763 0 0 0 0 0 0 0 +4.184 -1.789 -1.762 0 0 0 0 0 0 0 +4.194 -1.778 -1.764 0 0 0 0 0 0 0 +4.203 -1.766 -1.765 0 0 0 0 0 0 0 +4.2 -1.75 -1.762 0 0 0 0 0 0 0 +4.214 -1.74 -1.765 0 0 0 0 0 0 0 +4.215 -1.725 -1.763 0 0 0 0 0 0 0 +4.218 -1.711 -1.762 0 0 0 0 0 0 0 +4.232 -1.701 -1.766 0 0 0 0 0 0 0 +4.233 -1.693 -1.765 0 0 0 0 0 0 0 +4.242 -1.681 -1.767 0 0 0 0 0 0 0 +4.249 -1.669 -1.768 0 0 0 0 0 0 0 +4.256 -1.656 -1.768 0 0 0 0 0 0 0 +4.266 -1.645 -1.771 0 0 0 0 0 0 0 +4.277 -1.633 -1.773 0 0 0 0 0 0 0 +4.277 -1.618 -1.771 0 0 0 0 0 0 0 +4.283 -1.612 -1.772 0 0 0 0 0 0 0 +4.289 -1.6 -1.773 0 0 0 0 0 0 0 +4.298 -1.587 -1.775 0 0 0 0 0 0 0 +4.296 -1.571 -1.772 0 0 0 0 0 0 0 +4.292 -1.555 -1.768 0 0 0 0 0 0 0 +4.292 -1.539 -1.765 0 0 0 0 0 0 0 +4.287 -1.53 -1.762 0 0 0 0 0 0 0 +4.297 -1.519 -1.765 0 0 0 0 0 0 0 +4.3 -1.504 -1.764 0 0 0 0 0 0 0 +4.305 -1.491 -1.764 0 0 0 0 0 0 0 +4.313 -1.479 -1.765 0 0 0 0 0 0 0 +4.312 -1.463 -1.763 0 0 0 0 0 0 0 +4.317 -1.45 -1.763 0 0 0 0 0 0 0 +4.318 -1.435 -1.762 0 0 0 0 0 0 0 +4.317 -1.427 -1.76 0 0 0 0 0 0 0 +4.335 -1.418 -1.766 0 0 0 0 0 0 0 +4.333 -1.402 -1.763 0 0 0 0 0 0 0 +4.341 -1.39 -1.765 0 0 0 0 0 0 0 +4.334 -1.373 -1.76 0 0 0 0 0 0 0 +4.346 -1.361 -1.763 0 0 0 0 0 0 0 +4.339 -1.344 -1.759 0 0 0 0 0 0 0 +4.363 -1.344 -1.768 0 0 0 0 0 0 0 +4.351 -1.325 -1.761 0 0 0 0 0 0 0 +4.357 -1.312 -1.762 0 0 0 0 0 0 0 +4.365 -1.3 -1.763 0 0 0 0 0 0 0 +4.367 -1.285 -1.762 0 0 0 0 0 0 0 +4.366 -1.27 -1.76 0 0 0 0 0 0 0 +4.386 -1.261 -1.767 0 0 0 0 0 0 0 +4.373 -1.25 -1.761 0 0 0 0 0 0 0 +4.379 -1.237 -1.762 0 0 0 0 0 0 0 +4.39 -1.225 -1.765 0 0 0 0 0 0 0 +4.379 -1.207 -1.759 0 0 0 0 0 0 0 +4.387 -1.195 -1.76 0 0 0 0 0 0 0 +4.387 -1.18 -1.759 0 0 0 0 0 0 0 +4.392 -1.167 -1.759 0 0 0 0 0 0 0 +4.392 -1.159 -1.759 0 0 0 0 0 0 0 +4.398 -1.146 -1.759 0 0 0 0 0 0 0 +4.4 -1.132 -1.759 0 0 0 0 0 0 0 +4.401 -1.117 -1.758 0 0 0 0 0 0 0 +4.408 -1.104 -1.759 0 0 0 0 0 0 0 +4.407 -1.089 -1.757 0 0 0 0 0 0 0 +4.414 -1.076 -1.759 0 0 0 0 0 0 0 +4.431 -1.073 -1.765 0 0 0 0 0 0 0 +17.481 3.08 -7.365 0 0 0 0 0 0 0 +4.178 1.192 -1.714 0 0 0 0 0 0 0 +4.171 1.204 -1.713 0 0 0 0 0 0 0 +4.176 1.219 -1.717 0 0 0 0 0 0 0 +4.158 1.229 -1.71 0 0 0 0 0 0 0 +4.159 1.236 -1.712 0 0 0 0 0 0 0 +4.157 1.25 -1.713 0 0 0 0 0 0 0 +4.146 1.261 -1.71 0 0 0 0 0 0 0 +4.149 1.276 -1.713 0 0 0 0 0 0 0 +4.138 1.287 -1.71 0 0 0 0 0 0 0 +4.129 1.298 -1.707 0 0 0 0 0 0 0 +4.135 1.314 -1.712 0 0 0 0 0 0 0 +4.128 1.326 -1.71 0 0 0 0 0 0 0 +4.127 1.333 -1.711 0 0 0 0 0 0 0 +4.12 1.345 -1.71 0 0 0 0 0 0 0 +4.117 1.358 -1.71 0 0 0 0 0 0 0 +4.116 1.373 -1.712 0 0 0 0 0 0 0 +4.11 1.385 -1.711 0 0 0 0 0 0 0 +4.115 1.401 -1.715 0 0 0 0 0 0 0 +4.103 1.411 -1.712 0 0 0 0 0 0 0 +4.103 1.418 -1.713 0 0 0 0 0 0 0 +4.1 1.432 -1.713 0 0 0 0 0 0 0 +4.089 1.442 -1.71 0 0 0 0 0 0 0 +4.079 1.453 -1.708 0 0 0 0 0 0 0 +4.079 1.468 -1.71 0 0 0 0 0 0 0 +4.082 1.483 -1.713 0 0 0 0 0 0 0 +4.085 1.491 -1.716 0 0 0 0 0 0 0 +4.075 1.502 -1.713 0 0 0 0 0 0 0 +4.058 1.511 -1.708 0 0 0 0 0 0 0 +4.063 1.527 -1.713 0 0 0 0 0 0 0 +4.053 1.538 -1.71 0 0 0 0 0 0 0 +4.059 1.555 -1.715 0 0 0 0 0 0 0 +4.051 1.566 -1.713 0 0 0 0 0 0 0 +4.048 1.573 -1.713 0 0 0 0 0 0 0 +4.033 1.581 -1.709 0 0 0 0 0 0 0 +4.035 1.597 -1.712 0 0 0 0 0 0 0 +4.025 1.607 -1.71 0 0 0 0 0 0 0 +4.026 1.623 -1.713 0 0 0 0 0 0 0 +4.026 1.637 -1.715 0 0 0 0 0 0 0 +4.023 1.651 -1.716 0 0 0 0 0 0 0 +4.015 1.655 -1.713 0 0 0 0 0 0 0 +4.008 1.667 -1.713 0 0 0 0 0 0 0 +4.001 1.679 -1.712 0 0 0 0 0 0 0 +4.004 1.695 -1.716 0 0 0 0 0 0 0 +3.997 1.707 -1.715 0 0 0 0 0 0 0 +3.994 1.72 -1.716 0 0 0 0 0 0 0 +3.985 1.731 -1.714 0 0 0 0 0 0 0 +3.982 1.737 -1.714 0 0 0 0 0 0 0 +3.973 1.748 -1.713 0 0 0 0 0 0 0 +3.97 1.762 -1.713 0 0 0 0 0 0 0 +3.964 1.774 -1.713 0 0 0 0 0 0 0 +3.963 1.789 -1.716 0 0 0 0 0 0 0 +3.944 1.795 -1.71 0 0 0 0 0 0 0 +3.947 1.811 -1.713 0 0 0 0 0 0 0 +3.943 1.817 -1.713 0 0 0 0 0 0 0 +3.949 1.834 -1.718 0 0 0 0 0 0 0 +3.938 1.845 -1.716 0 0 0 0 0 0 0 +3.934 1.858 -1.717 0 0 0 0 0 0 0 +3.914 1.864 -1.71 0 0 0 0 0 0 0 +3.919 1.881 -1.715 0 0 0 0 0 0 0 +3.911 1.892 -1.714 0 0 0 0 0 0 0 +3.903 1.904 -1.713 0 0 0 0 0 0 0 +3.895 1.908 -1.711 0 0 0 0 0 0 0 +3.899 1.925 -1.716 0 0 0 0 0 0 0 +3.892 1.936 -1.715 0 0 0 0 0 0 0 +3.881 1.946 -1.713 0 0 0 0 0 0 0 +3.878 1.96 -1.714 0 0 0 0 0 0 0 +3.868 1.97 -1.713 0 0 0 0 0 0 0 +3.867 1.985 -1.715 0 0 0 0 0 0 0 +3.864 1.991 -1.715 0 0 0 0 0 0 0 +3.853 2 -1.713 0 0 0 0 0 0 0 +3.85 2.014 -1.714 0 0 0 0 0 0 0 +3.84 2.025 -1.713 0 0 0 0 0 0 0 +3.835 2.038 -1.713 0 0 0 0 0 0 0 +3.837 2.054 -1.717 0 0 0 0 0 0 0 +3.827 2.056 -1.714 0 0 0 0 0 0 0 +3.83 2.074 -1.719 0 0 0 0 0 0 0 +3.814 2.08 -1.714 0 0 0 0 0 0 0 +3.809 2.093 -1.715 0 0 0 0 0 0 0 +3.811 2.11 -1.719 0 0 0 0 0 0 0 +3.799 2.119 -1.717 0 0 0 0 0 0 0 +3.797 2.134 -1.719 0 0 0 0 0 0 0 +3.792 2.139 -1.718 0 0 0 0 0 0 0 +3.784 2.15 -1.717 0 0 0 0 0 0 0 +3.776 2.161 -1.717 0 0 0 0 0 0 0 +3.772 2.174 -1.718 0 0 0 0 0 0 0 +3.765 2.186 -1.718 0 0 0 0 0 0 0 +3.757 2.197 -1.717 0 0 0 0 0 0 0 +3.755 2.212 -1.72 0 0 0 0 0 0 0 +3.75 2.217 -1.719 0 0 0 0 0 0 0 +3.739 2.226 -1.717 0 0 0 0 0 0 0 +3.736 2.24 -1.719 0 0 0 0 0 0 0 +3.725 2.25 -1.717 0 0 0 0 0 0 0 +3.725 2.265 -1.72 0 0 0 0 0 0 0 +3.716 2.276 -1.72 0 0 0 0 0 0 0 +3.71 2.289 -1.72 0 0 0 0 0 0 0 +3.694 2.295 -1.716 0 0 0 0 0 0 0 +3.692 2.301 -1.717 0 0 0 0 0 0 0 +3.695 2.32 -1.722 0 0 0 0 0 0 0 +3.677 2.325 -1.717 0 0 0 0 0 0 0 +3.678 2.341 -1.72 0 0 0 0 0 0 0 +3.664 2.349 -1.717 0 0 0 0 0 0 0 +3.661 2.363 -1.72 0 0 0 0 0 0 0 +3.651 2.373 -1.718 0 0 0 0 0 0 0 +3.652 2.381 -1.72 0 0 0 0 0 0 0 +3.647 2.395 -1.722 0 0 0 0 0 0 0 +3.641 2.407 -1.723 0 0 0 0 0 0 0 +3.631 2.417 -1.721 0 0 0 0 0 0 0 +3.609 2.419 -1.714 0 0 0 0 0 0 0 +3.598 2.428 -1.713 0 0 0 0 0 0 0 +3.615 2.456 -1.725 0 0 0 0 0 0 0 +3.59 2.447 -1.714 0 0 0 0 0 0 0 +3.611 2.478 -1.729 0 0 0 0 0 0 0 +3.581 2.474 -1.717 0 0 0 0 0 0 0 +3.561 2.477 -1.711 0 0 0 0 0 0 0 +3.56 2.493 -1.715 0 0 0 0 0 0 0 +3.554 2.505 -1.716 0 0 0 0 0 0 0 +3.54 2.512 -1.713 0 0 0 0 0 0 0 +3.544 2.523 -1.717 0 0 0 0 0 0 0 +3.537 2.535 -1.717 0 0 0 0 0 0 0 +3.52 2.54 -1.713 0 0 0 0 0 0 0 +3.533 2.566 -1.724 0 0 0 0 0 0 0 +3.528 2.579 -1.725 0 0 0 0 0 0 0 +3.519 2.589 -1.724 0 0 0 0 0 0 0 +3.502 2.594 -1.72 0 0 0 0 0 0 0 +3.515 2.612 -1.729 0 0 0 0 0 0 0 +3.463 2.591 -1.706 0 0 0 0 0 0 0 +3.466 2.61 -1.712 0 0 0 0 0 0 0 +3.474 2.633 -1.72 0 0 0 0 0 0 0 +3.445 2.629 -1.71 0 0 0 0 0 0 0 +3.461 2.657 -1.722 0 0 0 0 0 0 0 +3.433 2.654 -1.712 0 0 0 0 0 0 0 +3.429 2.659 -1.712 0 0 0 0 0 0 0 +3.424 2.672 -1.713 0 0 0 0 0 0 0 +3.415 2.683 -1.713 0 0 0 0 0 0 0 +3.404 2.691 -1.712 0 0 0 0 0 0 0 +3.407 2.711 -1.718 0 0 0 0 0 0 0 +3.391 2.716 -1.714 0 0 0 0 0 0 0 +3.381 2.725 -1.713 0 0 0 0 0 0 0 +3.374 2.728 -1.712 0 0 0 0 0 0 0 +3.373 2.745 -1.716 0 0 0 0 0 0 0 +3.358 2.751 -1.713 0 0 0 0 0 0 0 +3.351 2.762 -1.713 0 0 0 0 0 0 0 +3.347 2.776 -1.716 0 0 0 0 0 0 0 +3.331 2.781 -1.712 0 0 0 0 0 0 0 +3.325 2.794 -1.713 0 0 0 0 0 0 0 +3.325 2.803 -1.716 0 0 0 0 0 0 0 +3.309 2.807 -1.712 0 0 0 0 0 0 0 +3.294 2.813 -1.709 0 0 0 0 0 0 0 +3.294 2.83 -1.713 0 0 0 0 0 0 0 +3.282 2.838 -1.712 0 0 0 0 0 0 0 +3.275 2.85 -1.713 0 0 0 0 0 0 0 +3.259 2.854 -1.709 0 0 0 0 0 0 0 +3.256 2.86 -1.71 0 0 0 0 0 0 0 +3.255 2.878 -1.714 0 0 0 0 0 0 0 +3.245 2.887 -1.713 0 0 0 0 0 0 0 +3.235 2.897 -1.713 0 0 0 0 0 0 0 +3.224 2.905 -1.712 0 0 0 0 0 0 0 +3.225 2.925 -1.718 0 0 0 0 0 0 0 +3.211 2.93 -1.715 0 0 0 0 0 0 0 +3.203 2.932 -1.713 0 0 0 0 0 0 0 +3.194 2.942 -1.713 0 0 0 0 0 0 0 +3.185 2.952 -1.713 0 0 0 0 0 0 0 +3.177 2.964 -1.714 0 0 0 0 0 0 0 +3.168 2.974 -1.714 0 0 0 0 0 0 0 +3.164 2.989 -1.717 0 0 0 0 0 0 0 +3.149 2.993 -1.714 0 0 0 0 0 0 0 +3.145 3.008 -1.717 0 0 0 0 0 0 0 +3.14 3.013 -1.717 0 0 0 0 0 0 0 +3.124 3.017 -1.713 0 0 0 0 0 0 0 +3.109 3.022 -1.71 0 0 0 0 0 0 0 +3.098 3.03 -1.71 0 0 0 0 0 0 0 +3.098 3.049 -1.715 0 0 0 0 0 0 0 +3.091 3.061 -1.717 0 0 0 0 0 0 0 +3.076 3.066 -1.713 0 0 0 0 0 0 0 +3.066 3.065 -1.71 0 0 0 0 0 0 0 +3.057 3.075 -1.71 0 0 0 0 0 0 0 +3.048 3.086 -1.711 0 0 0 0 0 0 0 +3.04 3.097 -1.712 0 0 0 0 0 0 0 +3.029 3.105 -1.711 0 0 0 0 0 0 0 +3.025 3.121 -1.715 0 0 0 0 0 0 0 +3.018 3.123 -1.713 0 0 0 0 0 0 0 +3 3.124 -1.709 0 0 0 0 0 0 0 +2.998 3.142 -1.713 0 0 0 0 0 0 0 +2.992 3.155 -1.716 0 0 0 0 0 0 0 +2.985 3.167 -1.717 0 0 0 0 0 0 0 +2.961 3.162 -1.709 0 0 0 0 0 0 0 +2.952 3.173 -1.71 0 0 0 0 0 0 0 +2.952 3.183 -1.713 0 0 0 0 0 0 0 +2.945 3.195 -1.714 0 0 0 0 0 0 0 +2.93 3.198 -1.711 0 0 0 0 0 0 0 +2.923 3.212 -1.713 0 0 0 0 0 0 0 +2.913 3.221 -1.713 0 0 0 0 0 0 0 +2.901 3.227 -1.712 0 0 0 0 0 0 0 +2.889 3.235 -1.711 0 0 0 0 0 0 0 +2.883 3.248 -1.713 0 0 0 0 0 0 0 +2.884 3.259 -1.717 0 0 0 0 0 0 0 +2.869 3.263 -1.714 0 0 0 0 0 0 0 +2.86 3.273 -1.715 0 0 0 0 0 0 0 +2.849 3.282 -1.715 0 0 0 0 0 0 0 +2.845 3.298 -1.719 0 0 0 0 0 0 0 +2.836 3.309 -1.72 0 0 0 0 0 0 0 +2.822 3.313 -1.717 0 0 0 0 0 0 0 +2.809 3.309 -1.713 0 0 0 0 0 0 0 +2.803 3.322 -1.715 0 0 0 0 0 0 0 +2.797 3.337 -1.718 0 0 0 0 0 0 0 +2.785 3.344 -1.717 0 0 0 0 0 0 0 +2.777 3.356 -1.719 0 0 0 0 0 0 0 +2.768 3.366 -1.72 0 0 0 0 0 0 0 +2.755 3.372 -1.718 0 0 0 0 0 0 0 +2.747 3.383 -1.72 0 0 0 0 0 0 0 +2.737 3.382 -1.717 0 0 0 0 0 0 0 +2.731 3.396 -1.72 0 0 0 0 0 0 0 +2.725 3.41 -1.723 0 0 0 0 0 0 0 +2.711 3.416 -1.721 0 0 0 0 0 0 0 +2.705 3.43 -1.724 0 0 0 0 0 0 0 +2.692 3.436 -1.723 0 0 0 0 0 0 0 +2.683 3.436 -1.72 0 0 0 0 0 0 0 +2.673 3.444 -1.72 0 0 0 0 0 0 0 +2.663 3.454 -1.721 0 0 0 0 0 0 0 +2.652 3.462 -1.721 0 0 0 0 0 0 0 +2.642 3.472 -1.722 0 0 0 0 0 0 0 +2.634 3.483 -1.724 0 0 0 0 0 0 0 +2.622 3.49 -1.723 0 0 0 0 0 0 0 +2.614 3.503 -1.725 0 0 0 0 0 0 0 +2.605 3.502 -1.723 0 0 0 0 0 0 0 +2.602 3.521 -1.728 0 0 0 0 0 0 0 +2.586 3.523 -1.725 0 0 0 0 0 0 0 +2.573 3.528 -1.724 0 0 0 0 0 0 0 +2.555 3.527 -1.719 0 0 0 0 0 0 0 +2.551 3.544 -1.724 0 0 0 0 0 0 0 +2.544 3.558 -1.727 0 0 0 0 0 0 0 +2.533 3.555 -1.723 0 0 0 0 0 0 0 +2.528 3.572 -1.727 0 0 0 0 0 0 0 +2.513 3.574 -1.724 0 0 0 0 0 0 0 +2.5 3.58 -1.724 0 0 0 0 0 0 0 +2.49 3.589 -1.724 0 0 0 0 0 0 0 +2.481 3.6 -1.726 0 0 0 0 0 0 0 +2.471 3.61 -1.727 0 0 0 0 0 0 0 +2.465 3.613 -1.727 0 0 0 0 0 0 0 +2.454 3.621 -1.727 0 0 0 0 0 0 0 +2.441 3.627 -1.726 0 0 0 0 0 0 0 +2.429 3.633 -1.725 0 0 0 0 0 0 0 +2.417 3.641 -1.725 0 0 0 0 0 0 0 +2.406 3.649 -1.725 0 0 0 0 0 0 0 +2.391 3.652 -1.723 0 0 0 0 0 0 0 +2.391 3.663 -1.727 0 0 0 0 0 0 0 +2.377 3.667 -1.725 0 0 0 0 0 0 0 +2.367 3.676 -1.726 0 0 0 0 0 0 0 +2.351 3.678 -1.723 0 0 0 0 0 0 0 +2.336 3.679 -1.72 0 0 0 0 0 0 0 +2.33 3.695 -1.724 0 0 0 0 0 0 0 +2.321 3.707 -1.727 0 0 0 0 0 0 0 +2.315 3.709 -1.726 0 0 0 0 0 0 0 +2.3 3.712 -1.724 0 0 0 0 0 0 0 +2.288 3.719 -1.724 0 0 0 0 0 0 0 +2.279 3.73 -1.725 0 0 0 0 0 0 0 +2.261 3.727 -1.72 0 0 0 0 0 0 0 +2.254 3.742 -1.724 0 0 0 0 0 0 0 +2.24 3.746 -1.723 0 0 0 0 0 0 0 +2.231 3.756 -1.724 0 0 0 0 0 0 0 +2.228 3.766 -1.727 0 0 0 0 0 0 0 +2.208 3.759 -1.72 0 0 0 0 0 0 0 +2.195 3.764 -1.72 0 0 0 0 0 0 0 +2.186 3.776 -1.722 0 0 0 0 0 0 0 +2.176 3.786 -1.724 0 0 0 0 0 0 0 +2.168 3.799 -1.727 0 0 0 0 0 0 0 +2.146 3.788 -1.718 0 0 0 0 0 0 0 +2.146 3.801 -1.723 0 0 0 0 0 0 0 +2.136 3.813 -1.725 0 0 0 0 0 0 0 +2.121 3.813 -1.722 0 0 0 0 0 0 0 +2.108 3.818 -1.721 0 0 0 0 0 0 0 +2.098 3.83 -1.724 0 0 0 0 0 0 0 +2.073 3.812 -1.712 0 0 0 0 0 0 0 +2.07 3.835 -1.72 0 0 0 0 0 0 0 +2.061 3.833 -1.717 0 0 0 0 0 0 0 +2.053 3.846 -1.72 0 0 0 0 0 0 0 +2.039 3.849 -1.719 0 0 0 0 0 0 0 +2.029 3.859 -1.72 0 0 0 0 0 0 0 +2.014 3.86 -1.718 0 0 0 0 0 0 0 +2.002 3.867 -1.718 0 0 0 0 0 0 0 +1.993 3.879 -1.721 0 0 0 0 0 0 0 +1.983 3.874 -1.717 0 0 0 0 0 0 0 +1.969 3.877 -1.716 0 0 0 0 0 0 0 +1.961 3.892 -1.72 0 0 0 0 0 0 0 +1.944 3.889 -1.716 0 0 0 0 0 0 0 +1.93 3.891 -1.713 0 0 0 0 0 0 0 +1.923 3.908 -1.719 0 0 0 0 0 0 0 +1.908 3.909 -1.717 0 0 0 0 0 0 0 +1.901 3.911 -1.716 0 0 0 0 0 0 0 +1.89 3.918 -1.717 0 0 0 0 0 0 0 +1.883 3.936 -1.722 0 0 0 0 0 0 0 +1.862 3.923 -1.713 0 0 0 0 0 0 0 +1.854 3.938 -1.717 0 0 0 0 0 0 0 +1.842 3.945 -1.718 0 0 0 0 0 0 0 +1.831 3.952 -1.719 0 0 0 0 0 0 0 +1.819 3.96 -1.72 0 0 0 0 0 0 0 +1.813 3.963 -1.72 0 0 0 0 0 0 0 +1.795 3.957 -1.714 0 0 0 0 0 0 0 +1.782 3.961 -1.713 0 0 0 0 0 0 0 +1.771 3.97 -1.715 0 0 0 0 0 0 0 +1.754 3.965 -1.71 0 0 0 0 0 0 0 +1.743 3.974 -1.712 0 0 0 0 0 0 0 +1.735 3.989 -1.717 0 0 0 0 0 0 0 +1.725 3.985 -1.713 0 0 0 0 0 0 0 +1.708 3.981 -1.709 0 0 0 0 0 0 0 +1.696 3.986 -1.709 0 0 0 0 0 0 0 +1.684 3.993 -1.71 0 0 0 0 0 0 0 +1.673 4.002 -1.711 0 0 0 0 0 0 0 +1.663 4.014 -1.714 0 0 0 0 0 0 0 +1.649 4.016 -1.713 0 0 0 0 0 0 0 +1.644 4.021 -1.714 0 0 0 0 0 0 0 +1.636 4.037 -1.719 0 0 0 0 0 0 0 +1.617 4.027 -1.712 0 0 0 0 0 0 0 +1.607 4.039 -1.715 0 0 0 0 0 0 0 +1.596 4.047 -1.717 0 0 0 0 0 0 0 +1.58 4.043 -1.713 0 0 0 0 0 0 0 +1.568 4.052 -1.714 0 0 0 0 0 0 0 +1.566 4.065 -1.719 0 0 0 0 0 0 0 +1.557 4.078 -1.723 0 0 0 0 0 0 0 +1.541 4.076 -1.72 0 0 0 0 0 0 0 +1.525 4.072 -1.716 0 0 0 0 0 0 0 +1.513 4.08 -1.717 0 0 0 0 0 0 0 +1.494 4.066 -1.709 0 0 0 0 0 0 0 +1.476 4.057 -1.703 0 0 0 0 0 0 0 +1.461 4.056 -1.7 0 0 0 0 0 0 0 +1.455 4.06 -1.701 0 0 0 0 0 0 0 +1.443 4.067 -1.702 0 0 0 0 0 0 0 +1.429 4.068 -1.7 0 0 0 0 0 0 0 +1.416 4.071 -1.699 0 0 0 0 0 0 0 +1.4 4.068 -1.696 0 0 0 0 0 0 0 +1.389 4.078 -1.699 0 0 0 0 0 0 0 +1.375 4.077 -1.696 0 0 0 0 0 0 0 +1.368 4.077 -1.696 0 0 0 0 0 0 0 +1.359 4.092 -1.7 0 0 0 0 0 0 0 +1.343 4.087 -1.696 0 0 0 0 0 0 0 +1.331 4.093 -1.697 0 0 0 0 0 0 0 +1.319 4.101 -1.699 0 0 0 0 0 0 0 +1.305 4.103 -1.698 0 0 0 0 0 0 0 +1.291 4.102 -1.696 0 0 0 0 0 0 0 +1.284 4.104 -1.696 0 0 0 0 0 0 0 +1.272 4.11 -1.696 0 0 0 0 0 0 0 +1.259 4.114 -1.696 0 0 0 0 0 0 0 +1.243 4.109 -1.692 0 0 0 0 0 0 0 +1.226 4.097 -1.685 0 0 0 0 0 0 0 +1.22 4.124 -1.696 0 0 0 0 0 0 0 +1.203 4.115 -1.69 0 0 0 0 0 0 0 +1.198 4.121 -1.692 0 0 0 0 0 0 0 +1.186 4.13 -1.694 0 0 0 0 0 0 0 +1.173 4.132 -1.693 0 0 0 0 0 0 0 +1.158 4.128 -1.69 0 0 0 0 0 0 0 +1.146 4.137 -1.692 0 0 0 0 0 0 0 +1.132 4.136 -1.69 0 0 0 0 0 0 0 +1.121 4.146 -1.693 0 0 0 0 0 0 0 +1.108 4.15 -1.693 0 0 0 0 0 0 0 +1.103 4.158 -1.696 0 0 0 0 0 0 0 +1.086 4.146 -1.689 0 0 0 0 0 0 0 +1.073 4.151 -1.69 0 0 0 0 0 0 0 +1.058 4.147 -1.687 0 0 0 0 0 0 0 +1.049 4.165 -1.693 0 0 0 0 0 0 0 +1.034 4.163 -1.691 0 0 0 0 0 0 0 +1.022 4.168 -1.692 0 0 0 0 0 0 0 +1.013 4.16 -1.688 0 0 0 0 0 0 0 +0.999 4.158 -1.685 0 0 0 0 0 0 0 +0.986 4.161 -1.685 0 0 0 0 0 0 0 +0.974 4.17 -1.688 0 0 0 0 0 0 0 +0.96 4.169 -1.686 0 0 0 0 0 0 0 +0.948 4.176 -1.688 0 0 0 0 0 0 0 +0.932 4.17 -1.684 0 0 0 0 0 0 0 +0.925 4.17 -1.683 0 0 0 0 0 0 0 +0.912 4.172 -1.683 0 0 0 0 0 0 0 +0.9 4.179 -1.685 0 0 0 0 0 0 0 +0.887 4.182 -1.685 0 0 0 0 0 0 0 +0.874 4.184 -1.685 0 0 0 0 0 0 0 +0.861 4.189 -1.685 0 0 0 0 0 0 0 +0.847 4.19 -1.685 0 0 0 0 0 0 0 +0.842 4.198 -1.688 0 0 0 0 0 0 0 +0.828 4.194 -1.685 0 0 0 0 0 0 0 +0.815 4.198 -1.685 0 0 0 0 0 0 0 +0.801 4.197 -1.684 0 0 0 0 0 0 0 +0.787 4.194 -1.682 0 0 0 0 0 0 0 +0.771 4.184 -1.676 0 0 0 0 0 0 0 +0.643 3.574 -1.414 0 0 0 0 0 0 0 +0.614 3.45 -1.36 0 0 0 0 0 0 0 +0.6 3.434 -1.352 0 0 0 0 0 0 0 +0.59 3.437 -1.353 0 0 0 0 0 0 0 +0.578 3.434 -1.351 0 0 0 0 0 0 0 +0.567 3.432 -1.349 0 0 0 0 0 0 0 +0.553 3.419 -1.343 0 0 0 0 0 0 0 +0.544 3.426 -1.345 0 0 0 0 0 0 0 +0.532 3.426 -1.344 0 0 0 0 0 0 0 +0.528 3.431 -1.346 0 0 0 0 0 0 0 +0.52 3.451 -1.354 0 0 0 0 0 0 0 +0.508 3.443 -1.35 0 0 0 0 0 0 0 +0.497 3.445 -1.35 0 0 0 0 0 0 0 +0.487 3.455 -1.354 0 0 0 0 0 0 0 +0.477 3.459 -1.355 0 0 0 0 0 0 0 +0.445 3.312 -1.292 0 0 0 0 0 0 0 +0.417 3.154 -1.224 0 0 0 0 0 0 0 +0.407 3.154 -1.223 0 0 0 0 0 0 0 +0.395 3.139 -1.216 0 0 0 0 0 0 0 +0.386 3.145 -1.219 0 0 0 0 0 0 0 +0.379 3.172 -1.229 0 0 0 0 0 0 0 +0.367 3.155 -1.222 0 0 0 0 0 0 0 +0.49 4.25 -1.686 0 0 0 0 0 0 0 +0.481 4.231 -1.678 0 0 0 0 0 0 0 +0.467 4.231 -1.677 0 0 0 0 0 0 0 +0.454 4.236 -1.679 0 0 0 0 0 0 0 +0.441 4.239 -1.679 0 0 0 0 0 0 0 +0.428 4.238 -1.679 0 0 0 0 0 0 0 +0.415 4.249 -1.682 0 0 0 0 0 0 0 +0.402 4.252 -1.683 0 0 0 0 0 0 0 +0.389 4.251 -1.682 0 0 0 0 0 0 0 +0.381 4.241 -1.678 0 0 0 0 0 0 0 +0.367 4.239 -1.676 0 0 0 0 0 0 0 +0.355 4.256 -1.683 0 0 0 0 0 0 0 +0.342 4.257 -1.683 0 0 0 0 0 0 0 +0.327 4.242 -1.676 0 0 0 0 0 0 0 +0.314 4.248 -1.679 0 0 0 0 0 0 0 +0.301 4.244 -1.676 0 0 0 0 0 0 0 +0.295 4.253 -1.68 0 0 0 0 0 0 0 +0.281 4.256 -1.681 0 0 0 0 0 0 0 +0.268 4.253 -1.679 0 0 0 0 0 0 0 +0.255 4.258 -1.681 0 0 0 0 0 0 0 +0.242 4.27 -1.685 0 0 0 0 0 0 0 +0.228 4.259 -1.681 0 0 0 0 0 0 0 +0.215 4.267 -1.684 0 0 0 0 0 0 0 +0.208 4.255 -1.679 0 0 0 0 0 0 0 +0.195 4.261 -1.681 0 0 0 0 0 0 0 +0.181 4.265 -1.682 0 0 0 0 0 0 0 +0.168 4.264 -1.682 0 0 0 0 0 0 0 +0.154 4.255 -1.678 0 0 0 0 0 0 0 +0.141 4.27 -1.684 0 0 0 0 0 0 0 +0.127 4.247 -1.674 0 0 0 0 0 0 0 +0.121 4.273 -1.685 0 0 0 0 0 0 0 +0.107 4.251 -1.675 0 0 0 0 0 0 0 +0.094 4.263 -1.68 0 0 0 0 0 0 0 +0.081 4.276 -1.685 0 0 0 0 0 0 0 +0.067 4.261 -1.679 0 0 0 0 0 0 0 +0.054 4.263 -1.68 0 0 0 0 0 0 0 +0.041 4.269 -1.682 0 0 0 0 0 0 0 +0.034 4.271 -1.683 0 0 0 0 0 0 0 +0.02 4.269 -1.682 0 0 0 0 0 0 0 +0.007 4.275 -1.685 0 0 0 0 0 0 0 +-0.006 4.273 -1.684 0 0 0 0 0 0 0 +-0.02 4.278 -1.686 0 0 0 0 0 0 0 +-0.033 4.276 -1.685 0 0 0 0 0 0 0 +-0.047 4.282 -1.688 0 0 0 0 0 0 0 +-0.053 4.28 -1.687 0 0 0 0 0 0 0 +-0.067 4.28 -1.687 0 0 0 0 0 0 0 +-0.08 4.263 -1.68 0 0 0 0 0 0 0 +-0.094 4.266 -1.682 0 0 0 0 0 0 0 +-0.107 4.277 -1.686 0 0 0 0 0 0 0 +-0.12 4.271 -1.684 0 0 0 0 0 0 0 +-0.134 4.263 -1.681 0 0 0 0 0 0 0 +-0.148 4.278 -1.687 0 0 0 0 0 0 0 +-0.154 4.266 -1.682 0 0 0 0 0 0 0 +-0.168 4.275 -1.686 0 0 0 0 0 0 0 +-0.181 4.276 -1.687 0 0 0 0 0 0 0 +-0.194 4.268 -1.684 0 0 0 0 0 0 0 +-0.208 4.275 -1.687 0 0 0 0 0 0 0 +-0.222 4.278 -1.689 0 0 0 0 0 0 0 +-0.236 4.305 -1.7 0 0 0 0 0 0 0 +-0.245 4.338 -1.714 0 0 0 0 0 0 0 +-0.258 4.326 -1.71 0 0 0 0 0 0 0 +-0.271 4.318 -1.706 0 0 0 0 0 0 0 +-0.285 4.321 -1.708 0 0 0 0 0 0 0 +-0.299 4.325 -1.71 0 0 0 0 0 0 0 +-0.313 4.332 -1.713 0 0 0 0 0 0 0 +-0.326 4.325 -1.711 0 0 0 0 0 0 0 +-0.334 4.336 -1.716 0 0 0 0 0 0 0 +-0.347 4.329 -1.713 0 0 0 0 0 0 0 +-0.361 4.333 -1.716 0 0 0 0 0 0 0 +-0.375 4.338 -1.718 0 0 0 0 0 0 0 +-0.388 4.331 -1.716 0 0 0 0 0 0 0 +-0.402 4.335 -1.718 0 0 0 0 0 0 0 +-0.416 4.336 -1.719 0 0 0 0 0 0 0 +-0.423 4.337 -1.72 0 0 0 0 0 0 0 +-0.437 4.343 -1.723 0 0 0 0 0 0 0 +-0.451 4.343 -1.724 0 0 0 0 0 0 0 +-0.465 4.346 -1.725 0 0 0 0 0 0 0 +-0.478 4.341 -1.724 0 0 0 0 0 0 0 +-0.492 4.343 -1.725 0 0 0 0 0 0 0 +-0.507 4.347 -1.727 0 0 0 0 0 0 0 +-0.521 4.352 -1.731 0 0 0 0 0 0 0 +-0.527 4.348 -1.729 0 0 0 0 0 0 0 +-0.542 4.352 -1.731 0 0 0 0 0 0 0 +-0.555 4.346 -1.73 0 0 0 0 0 0 0 +-0.57 4.352 -1.733 0 0 0 0 0 0 0 +-0.583 4.348 -1.732 0 0 0 0 0 0 0 +-0.597 4.35 -1.734 0 0 0 0 0 0 0 +-0.611 4.352 -1.735 0 0 0 0 0 0 0 +-0.619 4.354 -1.737 0 0 0 0 0 0 0 +-0.634 4.363 -1.741 0 0 0 0 0 0 0 +-0.647 4.36 -1.741 0 0 0 0 0 0 0 +-0.661 4.356 -1.74 0 0 0 0 0 0 0 +-0.674 4.352 -1.739 0 0 0 0 0 0 0 +-0.691 4.373 -1.749 0 0 0 0 0 0 0 +-0.705 4.367 -1.748 0 0 0 0 0 0 0 +-0.713 4.374 -1.751 0 0 0 0 0 0 0 +-0.729 4.39 -1.759 0 0 0 0 0 0 0 +-0.746 4.404 -1.766 0 0 0 0 0 0 0 +-0.756 4.383 -1.758 0 0 0 0 0 0 0 +-0.769 4.372 -1.754 0 0 0 0 0 0 0 +-0.78 4.355 -1.748 0 0 0 0 0 0 0 +-0.795 4.358 -1.75 0 0 0 0 0 0 0 +-0.834 4.459 -1.795 0 0 0 0 0 0 0 +-0.848 4.456 -1.795 0 0 0 0 0 0 0 +-0.859 4.437 -1.788 0 0 0 0 0 0 0 +-0.864 4.386 -1.767 0 0 0 0 0 0 0 +-0.876 4.378 -1.765 0 0 0 0 0 0 0 +-0.888 4.362 -1.759 0 0 0 0 0 0 0 +-0.904 4.37 -1.764 0 0 0 0 0 0 0 +-0.909 4.362 -1.761 0 0 0 0 0 0 0 +-0.923 4.361 -1.762 0 0 0 0 0 0 0 +-0.933 4.34 -1.754 0 0 0 0 0 0 0 +-0.948 4.342 -1.756 0 0 0 0 0 0 0 +-0.964 4.352 -1.762 0 0 0 0 0 0 0 +-0.974 4.332 -1.755 0 0 0 0 0 0 0 +-0.988 4.329 -1.755 0 0 0 0 0 0 0 +-0.995 4.328 -1.755 0 0 0 0 0 0 0 +-1.008 4.323 -1.754 0 0 0 0 0 0 0 +-1.02 4.312 -1.751 0 0 0 0 0 0 0 +-1.033 4.309 -1.751 0 0 0 0 0 0 0 +-1.047 4.306 -1.751 0 0 0 0 0 0 0 +-1.066 4.328 -1.762 0 0 0 0 0 0 0 +-1.077 4.314 -1.757 0 0 0 0 0 0 0 +-1.082 4.303 -1.753 0 0 0 0 0 0 0 +-1.096 4.303 -1.755 0 0 0 0 0 0 0 +-1.108 4.291 -1.751 0 0 0 0 0 0 0 +-1.12 4.284 -1.749 0 0 0 0 0 0 0 +-1.133 4.277 -1.748 0 0 0 0 0 0 0 +-1.147 4.278 -1.75 0 0 0 0 0 0 0 +-1.16 4.271 -1.748 0 0 0 0 0 0 0 +-1.166 4.267 -1.748 0 0 0 0 0 0 0 +-1.181 4.269 -1.75 0 0 0 0 0 0 0 +-1.193 4.262 -1.748 0 0 0 0 0 0 0 +-1.208 4.263 -1.751 0 0 0 0 0 0 0 +-1.223 4.265 -1.753 0 0 0 0 0 0 0 +-1.231 4.242 -1.745 0 0 0 0 0 0 0 +-1.247 4.248 -1.749 0 0 0 0 0 0 0 +-1.262 4.25 -1.752 0 0 0 0 0 0 0 +-1.265 4.235 -1.746 0 0 0 0 0 0 0 +-1.28 4.235 -1.748 0 0 0 0 0 0 0 +-1.296 4.241 -1.752 0 0 0 0 0 0 0 +-1.305 4.221 -1.745 0 0 0 0 0 0 0 +-1.323 4.235 -1.753 0 0 0 0 0 0 0 +-1.337 4.231 -1.753 0 0 0 0 0 0 0 +-1.347 4.218 -1.749 0 0 0 0 0 0 0 +-1.356 4.223 -1.752 0 0 0 0 0 0 0 +-1.37 4.222 -1.754 0 0 0 0 0 0 0 +-1.382 4.212 -1.752 0 0 0 0 0 0 0 +-1.397 4.215 -1.755 0 0 0 0 0 0 0 +-1.412 4.214 -1.756 0 0 0 0 0 0 0 +-1.422 4.199 -1.752 0 0 0 0 0 0 0 +-1.44 4.21 -1.759 0 0 0 0 0 0 0 +-1.447 4.208 -1.759 0 0 0 0 0 0 0 +-1.458 4.198 -1.756 0 0 0 0 0 0 0 +-1.475 4.206 -1.762 0 0 0 0 0 0 0 +-1.484 4.189 -1.756 0 0 0 0 0 0 0 +-1.497 4.183 -1.755 0 0 0 0 0 0 0 +-1.511 4.181 -1.757 0 0 0 0 0 0 0 +-1.52 4.164 -1.752 0 0 0 0 0 0 0 +-1.528 4.165 -1.753 0 0 0 0 0 0 0 +-1.54 4.159 -1.752 0 0 0 0 0 0 0 +-1.554 4.156 -1.753 0 0 0 0 0 0 0 +-1.569 4.156 -1.755 0 0 0 0 0 0 0 +-1.579 4.142 -1.752 0 0 0 0 0 0 0 +-1.597 4.151 -1.758 0 0 0 0 0 0 0 +-1.607 4.139 -1.755 0 0 0 0 0 0 0 +-1.618 4.129 -1.752 0 0 0 0 0 0 0 +-1.63 4.14 -1.759 0 0 0 0 0 0 0 +-1.639 4.123 -1.753 0 0 0 0 0 0 0 +-1.654 4.123 -1.755 0 0 0 0 0 0 0 +-1.668 4.121 -1.757 0 0 0 0 0 0 0 +-1.68 4.114 -1.756 0 0 0 0 0 0 0 +-1.694 4.113 -1.758 0 0 0 0 0 0 0 +-1.707 4.107 -1.758 0 0 0 0 0 0 0 +-1.707 4.089 -1.751 0 0 0 0 0 0 0 +-1.727 4.099 -1.758 0 0 0 0 0 0 0 +-1.737 4.089 -1.755 0 0 0 0 0 0 0 +-1.753 4.09 -1.759 0 0 0 0 0 0 0 +-1.768 4.089 -1.761 0 0 0 0 0 0 0 +-1.776 4.072 -1.755 0 0 0 0 0 0 0 +-1.792 4.075 -1.759 0 0 0 0 0 0 0 +-1.805 4.069 -1.759 0 0 0 0 0 0 0 +-1.807 4.056 -1.755 0 0 0 0 0 0 0 +-1.824 4.061 -1.759 0 0 0 0 0 0 0 +-1.837 4.055 -1.759 0 0 0 0 0 0 0 +-1.844 4.037 -1.754 0 0 0 0 0 0 0 +-1.864 4.047 -1.761 0 0 0 0 0 0 0 +-1.872 4.031 -1.756 0 0 0 0 0 0 0 +-1.885 4.025 -1.756 0 0 0 0 0 0 0 +-1.895 4.03 -1.76 0 0 0 0 0 0 0 +-1.907 4.023 -1.759 0 0 0 0 0 0 0 +-1.919 4.015 -1.759 0 0 0 0 0 0 0 +-1.934 4.014 -1.761 0 0 0 0 0 0 0 +-1.945 4.006 -1.76 0 0 0 0 0 0 0 +-1.953 3.99 -1.755 0 0 0 0 0 0 0 +-1.971 3.995 -1.761 0 0 0 0 0 0 0 +-1.975 3.987 -1.759 0 0 0 0 0 0 0 +-1.99 3.986 -1.761 0 0 0 0 0 0 0 +-1.998 3.97 -1.756 0 0 0 0 0 0 0 +-2.003 3.949 -1.749 0 0 0 0 0 0 0 +-2.022 3.956 -1.755 0 0 0 0 0 0 0 +-2.032 3.944 -1.753 0 0 0 0 0 0 0 +-2.048 3.946 -1.757 0 0 0 0 0 0 0 +-2.059 3.951 -1.761 0 0 0 0 0 0 0 +-2.067 3.936 -1.757 0 0 0 0 0 0 0 +-2.079 3.93 -1.757 0 0 0 0 0 0 0 +-2.092 3.925 -1.758 0 0 0 0 0 0 0 +-2.105 3.918 -1.758 0 0 0 0 0 0 0 +-2.115 3.909 -1.756 0 0 0 0 0 0 0 +-2.132 3.91 -1.76 0 0 0 0 0 0 0 +-2.138 3.892 -1.755 0 0 0 0 0 0 0 +-2.145 3.89 -1.755 0 0 0 0 0 0 0 +-2.157 3.883 -1.755 0 0 0 0 0 0 0 +-2.175 3.886 -1.76 0 0 0 0 0 0 0 +-2.187 3.879 -1.76 0 0 0 0 0 0 0 +-2.194 3.863 -1.755 0 0 0 0 0 0 0 +-2.2 3.846 -1.751 0 0 0 0 0 0 0 +-2.21 3.835 -1.748 0 0 0 0 0 0 0 +-2.22 3.839 -1.752 0 0 0 0 0 0 0 +-2.232 3.831 -1.752 0 0 0 0 0 0 0 +-2.252 3.838 -1.759 0 0 0 0 0 0 0 +-2.282 3.863 -1.774 0 0 0 0 0 0 0 +-2.297 3.86 -1.776 0 0 0 0 0 0 0 +-2.304 3.843 -1.772 0 0 0 0 0 0 0 +-2.312 3.83 -1.769 0 0 0 0 0 0 0 +-2.315 3.821 -1.766 0 0 0 0 0 0 0 +-2.318 3.798 -1.759 0 0 0 0 0 0 0 +-2.333 3.796 -1.761 0 0 0 0 0 0 0 +-2.344 3.787 -1.76 0 0 0 0 0 0 0 +-2.354 3.776 -1.759 0 0 0 0 0 0 0 +-2.365 3.769 -1.759 0 0 0 0 0 0 0 +-2.376 3.76 -1.758 0 0 0 0 0 0 0 +-2.391 3.77 -1.765 0 0 0 0 0 0 0 +-2.401 3.76 -1.763 0 0 0 0 0 0 0 +-2.412 3.751 -1.762 0 0 0 0 0 0 0 +-2.421 3.74 -1.761 0 0 0 0 0 0 0 +-2.428 3.724 -1.757 0 0 0 0 0 0 0 +-2.443 3.721 -1.759 0 0 0 0 0 0 0 +-2.459 3.72 -1.762 0 0 0 0 0 0 0 +-2.462 3.713 -1.761 0 0 0 0 0 0 0 +-2.48 3.714 -1.766 0 0 0 0 0 0 0 +-2.512 3.737 -1.781 0 0 0 0 0 0 0 +-2.518 3.72 -1.776 0 0 0 0 0 0 0 +-3.081 3.211 -1.759 0 0 0 0 0 0 0 +-3.091 3.201 -1.759 0 0 0 0 0 0 0 +-3.093 3.184 -1.754 0 0 0 0 0 0 0 +-3.117 3.188 -1.762 0 0 0 0 0 0 0 +-3.134 3.195 -1.769 0 0 0 0 0 0 0 +-3.133 3.175 -1.763 0 0 0 0 0 0 0 +-3.147 3.169 -1.766 0 0 0 0 0 0 0 +-3.151 3.153 -1.762 0 0 0 0 0 0 0 +-3.159 3.141 -1.761 0 0 0 0 0 0 0 +-3.173 3.135 -1.763 0 0 0 0 0 0 0 +-3.188 3.131 -1.766 0 0 0 0 0 0 0 +-3.199 3.122 -1.767 0 0 0 0 0 0 0 +-3.205 3.118 -1.768 0 0 0 0 0 0 0 +-3.213 3.106 -1.766 0 0 0 0 0 0 0 +-3.218 3.092 -1.764 0 0 0 0 0 0 0 +-3.228 3.081 -1.764 0 0 0 0 0 0 0 +-3.246 3.079 -1.769 0 0 0 0 0 0 0 +-3.249 3.062 -1.765 0 0 0 0 0 0 0 +-3.26 3.053 -1.766 0 0 0 0 0 0 0 +-3.267 3.051 -1.767 0 0 0 0 0 0 0 +-3.274 3.038 -1.766 0 0 0 0 0 0 0 +-3.29 3.034 -1.769 0 0 0 0 0 0 0 +-3.296 3.02 -1.767 0 0 0 0 0 0 0 +-3.312 3.016 -1.771 0 0 0 0 0 0 0 +-3.311 2.995 -1.765 0 0 0 0 0 0 0 +-3.325 2.99 -1.768 0 0 0 0 0 0 0 +-3.326 2.981 -1.766 0 0 0 0 0 0 0 +-3.333 2.968 -1.764 0 0 0 0 0 0 0 +-3.34 2.956 -1.763 0 0 0 0 0 0 0 +-3.354 2.95 -1.766 0 0 0 0 0 0 0 +-3.371 2.946 -1.77 0 0 0 0 0 0 0 +-3.382 2.937 -1.771 0 0 0 0 0 0 0 +-3.395 2.93 -1.773 0 0 0 0 0 0 0 +-3.389 2.915 -1.767 0 0 0 0 0 0 0 +-3.402 2.908 -1.769 0 0 0 0 0 0 0 +-3.416 2.901 -1.772 0 0 0 0 0 0 0 +-3.425 2.89 -1.772 0 0 0 0 0 0 0 +-3.432 2.878 -1.771 0 0 0 0 0 0 0 +-3.443 2.868 -1.772 0 0 0 0 0 0 0 +-3.445 2.852 -1.768 0 0 0 0 0 0 0 +-3.458 2.853 -1.773 0 0 0 0 0 0 0 +-3.469 2.845 -1.774 0 0 0 0 0 0 0 +-3.474 2.83 -1.772 0 0 0 0 0 0 0 +-3.483 2.819 -1.772 0 0 0 0 0 0 0 +-3.479 2.798 -1.765 0 0 0 0 0 0 0 +-3.499 2.796 -1.771 0 0 0 0 0 0 0 +-3.514 2.79 -1.774 0 0 0 0 0 0 0 +-3.515 2.782 -1.773 0 0 0 0 0 0 0 +-3.533 2.778 -1.777 0 0 0 0 0 0 0 +-3.537 2.763 -1.775 0 0 0 0 0 0 0 +-3.535 2.744 -1.769 0 0 0 0 0 0 0 +-3.535 2.726 -1.765 0 0 0 0 0 0 0 +-3.564 2.731 -1.776 0 0 0 0 0 0 0 +-3.568 2.717 -1.773 0 0 0 0 0 0 0 +-3.575 2.704 -1.773 0 0 0 0 0 0 0 +-3.589 2.705 -1.777 0 0 0 0 0 0 0 +-3.591 2.69 -1.774 0 0 0 0 0 0 0 +-3.595 2.675 -1.772 0 0 0 0 0 0 0 +-3.609 2.668 -1.775 0 0 0 0 0 0 0 +-3.619 2.658 -1.776 0 0 0 0 0 0 0 +-3.614 2.637 -1.769 0 0 0 0 0 0 0 +-3.643 2.64 -1.779 0 0 0 0 0 0 0 +-3.639 2.628 -1.775 0 0 0 0 0 0 0 +-3.642 2.613 -1.773 0 0 0 0 0 0 0 +-3.648 2.6 -1.771 0 0 0 0 0 0 0 +-3.663 2.594 -1.775 0 0 0 0 0 0 0 +-3.665 2.578 -1.772 0 0 0 0 0 0 0 +-3.684 2.574 -1.777 0 0 0 0 0 0 0 +-3.68 2.554 -1.771 0 0 0 0 0 0 0 +-3.688 2.551 -1.773 0 0 0 0 0 0 0 +-3.687 2.533 -1.769 0 0 0 0 0 0 0 +-3.713 2.534 -1.778 0 0 0 0 0 0 0 +-3.721 2.523 -1.778 0 0 0 0 0 0 0 +-3.719 2.504 -1.773 0 0 0 0 0 0 0 +-3.734 2.497 -1.776 0 0 0 0 0 0 0 +-3.736 2.481 -1.773 0 0 0 0 0 0 0 +-3.737 2.473 -1.772 0 0 0 0 0 0 0 +-3.754 2.468 -1.776 0 0 0 0 0 0 0 +-3.764 2.458 -1.778 0 0 0 0 0 0 0 +-3.769 2.444 -1.776 0 0 0 0 0 0 0 +-3.763 2.423 -1.769 0 0 0 0 0 0 0 +-3.775 2.414 -1.772 0 0 0 0 0 0 0 +-3.784 2.403 -1.773 0 0 0 0 0 0 0 +-3.79 2.398 -1.773 0 0 0 0 0 0 0 +-3.8 2.389 -1.775 0 0 0 0 0 0 0 +-3.811 2.379 -1.776 0 0 0 0 0 0 0 +-3.818 2.367 -1.776 0 0 0 0 0 0 0 +-3.819 2.351 -1.773 0 0 0 0 0 0 0 +-3.831 2.342 -1.776 0 0 0 0 0 0 0 +-3.836 2.328 -1.774 0 0 0 0 0 0 0 +-3.851 2.32 -1.778 0 0 0 0 0 0 0 +-3.851 2.312 -1.776 0 0 0 0 0 0 0 +-3.865 2.304 -1.779 0 0 0 0 0 0 0 +-3.855 2.281 -1.771 0 0 0 0 0 0 0 +-3.867 2.272 -1.773 0 0 0 0 0 0 0 +-3.877 2.262 -1.775 0 0 0 0 0 0 0 +-3.897 2.257 -1.781 0 0 0 0 0 0 0 +-3.899 2.242 -1.779 0 0 0 0 0 0 0 +-3.895 2.231 -1.775 0 0 0 0 0 0 0 +-3.906 2.222 -1.777 0 0 0 0 0 0 0 +-3.91 2.208 -1.776 0 0 0 0 0 0 0 +-3.922 2.198 -1.778 0 0 0 0 0 0 0 +-3.925 2.184 -1.776 0 0 0 0 0 0 0 +-3.939 2.175 -1.779 0 0 0 0 0 0 0 +-3.946 2.163 -1.779 0 0 0 0 0 0 0 +-3.952 2.159 -1.781 0 0 0 0 0 0 0 +-3.961 2.147 -1.782 0 0 0 0 0 0 0 +-4.09 -2.009 -1.804 0 0 0 0 0 0 0 +-4.08 -2.02 -1.802 0 0 0 0 0 0 0 +-4.079 -2.036 -1.804 0 0 0 0 0 0 0 +-4.076 -2.05 -1.806 0 0 0 0 0 0 0 +-4.064 -2.052 -1.802 0 0 0 0 0 0 0 +-4.066 -2.069 -1.806 0 0 0 0 0 0 0 +-4.058 -2.081 -1.805 0 0 0 0 0 0 0 +-4.05 -2.093 -1.804 0 0 0 0 0 0 0 +-4.051 -2.11 -1.808 0 0 0 0 0 0 0 +-4.04 -2.12 -1.806 0 0 0 0 0 0 0 +-4.023 -2.128 -1.801 0 0 0 0 0 0 0 +-4.016 -2.132 -1.8 0 0 0 0 0 0 0 +-4.016 -2.148 -1.803 0 0 0 0 0 0 0 +-4.006 -2.159 -1.801 0 0 0 0 0 0 0 +-3.996 -2.17 -1.8 0 0 0 0 0 0 0 +-3.999 -2.188 -1.804 0 0 0 0 0 0 0 +-3.994 -2.201 -1.805 0 0 0 0 0 0 0 +-3.988 -2.215 -1.806 0 0 0 0 0 0 0 +-3.972 -2.214 -1.8 0 0 0 0 0 0 0 +-3.96 -2.224 -1.797 0 0 0 0 0 0 0 +-3.963 -2.242 -1.802 0 0 0 0 0 0 0 +-3.948 -2.25 -1.798 0 0 0 0 0 0 0 +-3.947 -2.266 -1.801 0 0 0 0 0 0 0 +-3.948 -2.282 -1.805 0 0 0 0 0 0 0 +-3.938 -2.293 -1.804 0 0 0 0 0 0 0 +-3.936 -2.3 -1.804 0 0 0 0 0 0 0 +-3.919 -2.307 -1.8 0 0 0 0 0 0 0 +-3.904 -2.315 -1.796 0 0 0 0 0 0 0 +-3.911 -2.335 -1.803 0 0 0 0 0 0 0 +-3.902 -2.347 -1.802 0 0 0 0 0 0 0 +-3.891 -2.357 -1.8 0 0 0 0 0 0 0 +-3.895 -2.376 -1.806 0 0 0 0 0 0 0 +-3.886 -2.379 -1.804 0 0 0 0 0 0 0 +-3.871 -2.386 -1.8 0 0 0 0 0 0 0 +-3.874 -2.405 -1.805 0 0 0 0 0 0 0 +-3.865 -2.417 -1.804 0 0 0 0 0 0 0 +-3.854 -2.427 -1.803 0 0 0 0 0 0 0 +-3.853 -2.443 -1.806 0 0 0 0 0 0 0 +-3.839 -2.451 -1.803 0 0 0 0 0 0 0 +-3.831 -2.454 -1.8 0 0 0 0 0 0 0 +-3.824 -2.467 -1.801 0 0 0 0 0 0 0 +-3.82 -2.481 -1.803 0 0 0 0 0 0 0 +-3.812 -2.493 -1.803 0 0 0 0 0 0 0 +-3.807 -2.507 -1.804 0 0 0 0 0 0 0 +-3.799 -2.519 -1.804 0 0 0 0 0 0 0 +-3.785 -2.527 -1.801 0 0 0 0 0 0 0 +-3.786 -2.536 -1.804 0 0 0 0 0 0 0 +-3.77 -2.543 -1.8 0 0 0 0 0 0 0 +-3.764 -2.555 -1.8 0 0 0 0 0 0 0 +-3.765 -2.573 -1.805 0 0 0 0 0 0 0 +-3.757 -2.585 -1.805 0 0 0 0 0 0 0 +-3.741 -2.592 -1.801 0 0 0 0 0 0 0 +-3.734 -2.605 -1.802 0 0 0 0 0 0 0 +-3.729 -2.618 -1.804 0 0 0 0 0 0 0 +-3.721 -2.621 -1.801 0 0 0 0 0 0 0 +-3.717 -2.636 -1.804 0 0 0 0 0 0 0 +-3.715 -2.652 -1.807 0 0 0 0 0 0 0 +-3.706 -2.664 -1.807 0 0 0 0 0 0 0 +-3.693 -2.672 -1.804 0 0 0 0 0 0 0 +-3.682 -2.681 -1.803 0 0 0 0 0 0 0 +-3.667 -2.689 -1.8 0 0 0 0 0 0 0 +-3.671 -2.7 -1.804 0 0 0 0 0 0 0 +-3.664 -2.712 -1.804 0 0 0 0 0 0 0 +-3.652 -2.722 -1.803 0 0 0 0 0 0 0 +-3.65 -2.738 -1.806 0 0 0 0 0 0 0 +-3.637 -2.746 -1.804 0 0 0 0 0 0 0 +-3.62 -2.752 -1.8 0 0 0 0 0 0 0 +-3.624 -2.772 -1.806 0 0 0 0 0 0 0 +-3.622 -2.78 -1.807 0 0 0 0 0 0 0 +-3.606 -2.786 -1.804 0 0 0 0 0 0 0 +-3.61 -2.807 -1.811 0 0 0 0 0 0 0 +-3.599 -2.816 -1.809 0 0 0 0 0 0 0 +-3.591 -2.828 -1.81 0 0 0 0 0 0 0 +-3.59 -2.845 -1.814 0 0 0 0 0 0 0 +-3.579 -2.856 -1.813 0 0 0 0 0 0 0 +-3.573 -2.86 -1.812 0 0 0 0 0 0 0 +-3.576 -2.88 -1.818 0 0 0 0 0 0 0 +-3.557 -2.884 -1.813 0 0 0 0 0 0 0 +-3.54 -2.889 -1.809 0 0 0 0 0 0 0 +-3.547 -2.913 -1.818 0 0 0 0 0 0 0 +-3.538 -2.924 -1.818 0 0 0 0 0 0 0 +-3.533 -2.939 -1.82 0 0 0 0 0 0 0 +-3.537 -2.951 -1.825 0 0 0 0 0 0 0 +-3.519 -2.955 -1.82 0 0 0 0 0 0 0 +-3.508 -2.965 -1.819 0 0 0 0 0 0 0 +-3.493 -2.971 -1.816 0 0 0 0 0 0 0 +-3.488 -2.986 -1.818 0 0 0 0 0 0 0 +-3.483 -3 -1.821 0 0 0 0 0 0 0 +-3.469 -3.008 -1.818 0 0 0 0 0 0 0 +-3.466 -3.014 -1.819 0 0 0 0 0 0 0 +-3.448 -3.018 -1.814 0 0 0 0 0 0 0 +-3.411 -3.005 -1.799 0 0 0 0 0 0 0 +-3.404 -3.018 -1.8 0 0 0 0 0 0 0 +-3.4 -3.033 -1.804 0 0 0 0 0 0 0 +-3.407 -3.059 -1.813 0 0 0 0 0 0 0 +-3.399 -3.071 -1.814 0 0 0 0 0 0 0 +-3.411 -3.091 -1.823 0 0 0 0 0 0 0 +-3.409 -3.109 -1.828 0 0 0 0 0 0 0 +-3.398 -3.118 -1.827 0 0 0 0 0 0 0 +-3.413 -3.151 -1.841 0 0 0 0 0 0 0 +-3.358 -3.121 -1.815 0 0 0 0 0 0 0 +-3.344 -3.128 -1.813 0 0 0 0 0 0 0 +-3.332 -3.136 -1.811 0 0 0 0 0 0 0 +-3.321 -3.136 -1.808 0 0 0 0 0 0 0 +-3.314 -3.149 -1.81 0 0 0 0 0 0 0 +-3.298 -3.153 -1.806 0 0 0 0 0 0 0 +-3.289 -3.164 -1.807 0 0 0 0 0 0 0 +-3.271 -3.167 -1.802 0 0 0 0 0 0 0 +-3.285 -3.2 -1.816 0 0 0 0 0 0 0 +-3.307 -3.241 -1.835 0 0 0 0 0 0 0 +-3.296 -3.241 -1.832 0 0 0 0 0 0 0 +-2.664 -3.663 -1.792 0 0 0 0 0 0 0 +-2.65 -3.657 -1.786 0 0 0 0 0 0 0 +-2.639 -3.665 -1.786 0 0 0 0 0 0 0 +-2.632 -3.679 -1.79 0 0 0 0 0 0 0 +-2.618 -3.685 -1.788 0 0 0 0 0 0 0 +-2.61 -3.699 -1.791 0 0 0 0 0 0 0 +-2.594 -3.699 -1.787 0 0 0 0 0 0 0 +-2.581 -3.706 -1.786 0 0 0 0 0 0 0 +-2.571 -3.704 -1.783 0 0 0 0 0 0 0 +-2.564 -3.72 -1.787 0 0 0 0 0 0 0 +-2.552 -3.726 -1.786 0 0 0 0 0 0 0 +-2.531 -3.72 -1.779 0 0 0 0 0 0 0 +-2.53 -3.745 -1.788 0 0 0 0 0 0 0 +-2.52 -3.755 -1.789 0 0 0 0 0 0 0 +-2.504 -3.756 -1.786 0 0 0 0 0 0 0 +-2.502 -3.766 -1.789 0 0 0 0 0 0 0 +-2.49 -3.774 -1.789 0 0 0 0 0 0 0 +-2.471 -3.771 -1.783 0 0 0 0 0 0 0 +-2.467 -3.791 -1.79 0 0 0 0 0 0 0 +-2.454 -3.798 -1.789 0 0 0 0 0 0 0 +-2.441 -3.804 -1.788 0 0 0 0 0 0 0 +-2.434 -3.819 -1.792 0 0 0 0 0 0 0 +-2.415 -3.803 -1.782 0 0 0 0 0 0 0 +-2.403 -3.81 -1.782 0 0 0 0 0 0 0 +-2.402 -3.835 -1.79 0 0 0 0 0 0 0 +-2.382 -3.83 -1.784 0 0 0 0 0 0 0 +-2.375 -3.845 -1.788 0 0 0 0 0 0 0 +-2.368 -3.861 -1.792 0 0 0 0 0 0 0 +-2.35 -3.859 -1.787 0 0 0 0 0 0 0 +-2.336 -3.85 -1.781 0 0 0 0 0 0 0 +-2.338 -3.879 -1.792 0 0 0 0 0 0 0 +-2.32 -3.877 -1.787 0 0 0 0 0 0 0 +-2.304 -3.878 -1.784 0 0 0 0 0 0 0 +-2.3 -3.899 -1.791 0 0 0 0 0 0 0 +-2.28 -3.894 -1.785 0 0 0 0 0 0 0 +-2.272 -3.907 -1.788 0 0 0 0 0 0 0 +-2.271 -3.92 -1.793 0 0 0 0 0 0 0 +-2.251 -3.915 -1.786 0 0 0 0 0 0 0 +-2.24 -3.924 -1.787 0 0 0 0 0 0 0 +-2.239 -3.95 -1.797 0 0 0 0 0 0 0 +-2.219 -3.944 -1.79 0 0 0 0 0 0 0 +-2.199 -3.938 -1.784 0 0 0 0 0 0 0 +-2.195 -3.959 -1.791 0 0 0 0 0 0 0 +-2.192 -3.968 -1.793 0 0 0 0 0 0 0 +-2.188 -3.991 -1.801 0 0 0 0 0 0 0 +-2.161 -3.972 -1.789 0 0 0 0 0 0 0 +-2.159 -3.998 -1.798 0 0 0 0 0 0 0 +-2.149 -4.009 -1.8 0 0 0 0 0 0 0 +-2.123 -3.99 -1.788 0 0 0 0 0 0 0 +-2.117 -4.01 -1.794 0 0 0 0 0 0 0 +-2.131 -4.051 -1.812 0 0 0 0 0 0 0 +-2.135 -4.088 -1.827 0 0 0 0 0 0 0 +-2.057 -3.973 -1.769 0 0 0 0 0 0 0 +-2.09 -4.066 -1.81 0 0 0 0 0 0 0 +-2.043 -4.007 -1.779 0 0 0 0 0 0 0 +-2.032 -4.015 -1.779 0 0 0 0 0 0 0 +-2.029 -4.041 -1.789 0 0 0 0 0 0 0 +-2.018 -4.05 -1.79 0 0 0 0 0 0 0 +-2.015 -4.06 -1.793 0 0 0 0 0 0 0 +-2.007 -4.076 -1.798 0 0 0 0 0 0 0 +-1.977 -4.048 -1.782 0 0 0 0 0 0 0 +-1.964 -4.054 -1.782 0 0 0 0 0 0 0 +-1.957 -4.07 -1.786 0 0 0 0 0 0 0 +-1.942 -4.073 -1.785 0 0 0 0 0 0 0 +-1.926 -4.073 -1.782 0 0 0 0 0 0 0 +-1.913 -4.062 -1.776 0 0 0 0 0 0 0 +-1.902 -4.072 -1.777 0 0 0 0 0 0 0 +-1.881 -4.059 -1.769 0 0 0 0 0 0 0 +-1.873 -4.077 -1.774 0 0 0 0 0 0 0 +-1.856 -4.073 -1.769 0 0 0 0 0 0 0 +-1.839 -4.068 -1.765 0 0 0 0 0 0 0 +-1.838 -4.083 -1.77 0 0 0 0 0 0 0 +-1.819 -4.077 -1.765 0 0 0 0 0 0 0 +-1.803 -4.074 -1.761 0 0 0 0 0 0 0 +-1.797 -4.095 -1.768 0 0 0 0 0 0 0 +-1.779 -4.089 -1.762 0 0 0 0 0 0 0 +-1.764 -4.091 -1.761 0 0 0 0 0 0 0 +-1.754 -4.102 -1.763 0 0 0 0 0 0 0 +-1.738 -4.1 -1.76 0 0 0 0 0 0 0 +-1.73 -4.1 -1.759 0 0 0 0 0 0 0 +-1.72 -4.112 -1.762 0 0 0 0 0 0 0 +-1.698 -4.097 -1.752 0 0 0 0 0 0 0 +-1.686 -4.104 -1.753 0 0 0 0 0 0 0 +-1.678 -4.119 -1.758 0 0 0 0 0 0 0 +-1.661 -4.116 -1.754 0 0 0 0 0 0 0 +-1.652 -4.132 -1.759 0 0 0 0 0 0 0 +-1.642 -4.126 -1.755 0 0 0 0 0 0 0 +-1.631 -4.136 -1.757 0 0 0 0 0 0 0 +-1.617 -4.138 -1.755 0 0 0 0 0 0 0 +-1.603 -4.139 -1.754 0 0 0 0 0 0 0 +-1.584 -4.13 -1.748 0 0 0 0 0 0 0 +-1.572 -4.137 -1.748 0 0 0 0 0 0 0 +-1.561 -4.147 -1.751 0 0 0 0 0 0 0 +-1.553 -4.145 -1.748 0 0 0 0 0 0 0 +-1.54 -4.149 -1.748 0 0 0 0 0 0 0 +-1.523 -4.144 -1.744 0 0 0 0 0 0 0 +-1.515 -4.162 -1.75 0 0 0 0 0 0 0 +-1.502 -4.167 -1.75 0 0 0 0 0 0 0 +-1.486 -4.165 -1.747 0 0 0 0 0 0 0 +-1.474 -4.173 -1.748 0 0 0 0 0 0 0 +-1.466 -4.172 -1.747 0 0 0 0 0 0 0 +-1.451 -4.17 -1.744 0 0 0 0 0 0 0 +-1.44 -4.179 -1.746 0 0 0 0 0 0 0 +-1.425 -4.179 -1.744 0 0 0 0 0 0 0 +-1.412 -4.185 -1.745 0 0 0 0 0 0 0 +-1.401 -4.194 -1.747 0 0 0 0 0 0 0 +-1.386 -4.194 -1.745 0 0 0 0 0 0 0 +-1.378 -4.192 -1.743 0 0 0 0 0 0 0 +-1.364 -4.195 -1.742 0 0 0 0 0 0 0 +-1.35 -4.197 -1.741 0 0 0 0 0 0 0 +-1.334 -4.191 -1.737 0 0 0 0 0 0 0 +-1.325 -4.209 -1.743 0 0 0 0 0 0 0 +-1.313 -4.217 -1.745 0 0 0 0 0 0 0 +-1.296 -4.21 -1.74 0 0 0 0 0 0 0 +-1.289 -4.211 -1.739 0 0 0 0 0 0 0 +-1.277 -4.216 -1.74 0 0 0 0 0 0 0 +-1.259 -4.206 -1.734 0 0 0 0 0 0 0 +-1.249 -4.221 -1.738 0 0 0 0 0 0 0 +-1.237 -4.23 -1.741 0 0 0 0 0 0 0 +-1.222 -4.229 -1.738 0 0 0 0 0 0 0 +-1.207 -4.225 -1.735 0 0 0 0 0 0 0 +-1.203 -4.234 -1.738 0 0 0 0 0 0 0 +-1.184 -4.22 -1.731 0 0 0 0 0 0 0 +-1.172 -4.228 -1.732 0 0 0 0 0 0 0 +-1.161 -4.238 -1.735 0 0 0 0 0 0 0 +-1.146 -4.239 -1.734 0 0 0 0 0 0 0 +-1.132 -4.24 -1.733 0 0 0 0 0 0 0 +-1.12 -4.247 -1.734 0 0 0 0 0 0 0 +-1.112 -4.242 -1.731 0 0 0 0 0 0 0 +-1.099 -4.247 -1.732 0 0 0 0 0 0 0 +-1.084 -4.245 -1.73 0 0 0 0 0 0 0 +-1.073 -4.259 -1.734 0 0 0 0 0 0 0 +-1.06 -4.261 -1.734 0 0 0 0 0 0 0 +-1.044 -4.255 -1.73 0 0 0 0 0 0 0 +-1.031 -4.262 -1.731 0 0 0 0 0 0 0 +-1.026 -4.269 -1.734 0 0 0 0 0 0 0 +-1.013 -4.274 -1.734 0 0 0 0 0 0 0 +-0.997 -4.267 -1.73 0 0 0 0 0 0 0 +-0.988 -4.289 -1.738 0 0 0 0 0 0 0 +-0.971 -4.278 -1.732 0 0 0 0 0 0 0 +-0.961 -4.294 -1.738 0 0 0 0 0 0 0 +-0.946 -4.29 -1.734 0 0 0 0 0 0 0 +-0.939 -4.291 -1.734 0 0 0 0 0 0 0 +-0.927 -4.299 -1.737 0 0 0 0 0 0 0 +-0.911 -4.293 -1.733 0 0 0 0 0 0 0 +-0.895 -4.284 -1.727 0 0 0 0 0 0 0 +-0.885 -4.301 -1.734 0 0 0 0 0 0 0 +-0.87 -4.3 -1.732 0 0 0 0 0 0 0 +-0.859 -4.313 -1.737 0 0 0 0 0 0 0 +-0.852 -4.311 -1.735 0 0 0 0 0 0 0 +-0.836 -4.301 -1.73 0 0 0 0 0 0 0 +-0.825 -4.318 -1.736 0 0 0 0 0 0 0 +-0.81 -4.314 -1.733 0 0 0 0 0 0 0 +-0.796 -4.312 -1.731 0 0 0 0 0 0 0 +-0.785 -4.329 -1.738 0 0 0 0 0 0 0 +-0.769 -4.319 -1.732 0 0 0 0 0 0 0 +-0.764 -4.333 -1.738 0 0 0 0 0 0 0 +-0.75 -4.334 -1.737 0 0 0 0 0 0 0 +-0.736 -4.329 -1.734 0 0 0 0 0 0 0 +-0.72 -4.32 -1.729 0 0 0 0 0 0 0 +-0.708 -4.331 -1.733 0 0 0 0 0 0 0 +-0.694 -4.33 -1.731 0 0 0 0 0 0 0 +-0.681 -4.338 -1.734 0 0 0 0 0 0 0 +-0.673 -4.328 -1.729 0 0 0 0 0 0 0 +-0.66 -4.335 -1.731 0 0 0 0 0 0 0 +-0.645 -4.332 -1.729 0 0 0 0 0 0 0 +-0.633 -4.339 -1.731 0 0 0 0 0 0 0 +-0.618 -4.336 -1.729 0 0 0 0 0 0 0 +-0.609 -4.367 -1.741 0 0 0 0 0 0 0 +-0.593 -4.352 -1.734 0 0 0 0 0 0 0 +-0.586 -4.355 -1.735 0 0 0 0 0 0 0 +-0.573 -4.363 -1.738 0 0 0 0 0 0 0 +-0.559 -4.364 -1.738 0 0 0 0 0 0 0 +-0.546 -4.366 -1.738 0 0 0 0 0 0 0 +-0.533 -4.379 -1.742 0 0 0 0 0 0 0 +-0.519 -4.373 -1.739 0 0 0 0 0 0 0 +-0.503 -4.36 -1.733 0 0 0 0 0 0 0 +-0.492 -4.38 -1.741 0 0 0 0 0 0 0 +-0.483 -4.368 -1.735 0 0 0 0 0 0 0 +-0.47 -4.377 -1.738 0 0 0 0 0 0 0 +-0.457 -4.384 -1.741 0 0 0 0 0 0 0 +-0.443 -4.385 -1.741 0 0 0 0 0 0 0 +-0.429 -4.383 -1.739 0 0 0 0 0 0 0 +-0.416 -4.39 -1.741 0 0 0 0 0 0 0 +-0.401 -4.378 -1.736 0 0 0 0 0 0 0 +-0.394 -4.377 -1.735 0 0 0 0 0 0 0 +-0.381 -4.389 -1.74 0 0 0 0 0 0 0 +-0.367 -4.386 -1.738 0 0 0 0 0 0 0 +-0.354 -4.397 -1.742 0 0 0 0 0 0 0 +-0.34 -4.394 -1.741 0 0 0 0 0 0 0 +-0.325 -4.377 -1.733 0 0 0 0 0 0 0 +-0.319 -4.398 -1.741 0 0 0 0 0 0 0 +-0.305 -4.393 -1.739 0 0 0 0 0 0 0 +-0.292 -4.396 -1.74 0 0 0 0 0 0 0 +-0.278 -4.404 -1.743 0 0 0 0 0 0 0 +-0.265 -4.407 -1.744 0 0 0 0 0 0 0 +-0.25 -4.402 -1.741 0 0 0 0 0 0 0 +-0.237 -4.405 -1.742 0 0 0 0 0 0 0 +-0.222 -4.4 -1.74 0 0 0 0 0 0 0 +-0.216 -4.409 -1.744 0 0 0 0 0 0 0 +-0.202 -4.41 -1.744 0 0 0 0 0 0 0 +-0.187 -4.387 -1.734 0 0 0 0 0 0 0 +-0.174 -4.406 -1.741 0 0 0 0 0 0 0 +-0.16 -4.403 -1.74 0 0 0 0 0 0 0 +-0.146 -4.39 -1.734 0 0 0 0 0 0 0 +-0.133 -4.416 -1.745 0 0 0 0 0 0 0 +-0.126 -4.404 -1.74 0 0 0 0 0 0 0 +-0.112 -4.417 -1.745 0 0 0 0 0 0 0 +-0.098 -4.417 -1.745 0 0 0 0 0 0 0 +-0.084 -4.408 -1.741 0 0 0 0 0 0 0 +-0.07 -4.407 -1.741 0 0 0 0 0 0 0 +-0.057 -4.416 -1.745 0 0 0 0 0 0 0 +-0.043 -4.42 -1.746 0 0 0 0 0 0 0 +-0.036 -4.411 -1.742 0 0 0 0 0 0 0 +-0.022 -4.407 -1.741 0 0 0 0 0 0 0 +-0.008 -4.413 -1.743 0 0 0 0 0 0 0 +0.006 -4.415 -1.744 0 0 0 0 0 0 0 +0.02 -4.409 -1.741 0 0 0 0 0 0 0 +0.033 -4.413 -1.743 0 0 0 0 0 0 0 +0.047 -4.413 -1.743 0 0 0 0 0 0 0 +0.054 -4.422 -1.747 0 0 0 0 0 0 0 +0.068 -4.436 -1.753 0 0 0 0 0 0 0 +0.082 -4.443 -1.756 0 0 0 0 0 0 0 +0.096 -4.423 -1.748 0 0 0 0 0 0 0 +0.111 -4.47 -1.768 0 0 0 0 0 0 0 +0.125 -4.454 -1.761 0 0 0 0 0 0 0 +0.139 -4.477 -1.771 0 0 0 0 0 0 0 +0.146 -4.477 -1.771 0 0 0 0 0 0 0 +0.372 -4.473 -1.775 0 0 0 0 0 0 0 +0.382 -4.428 -1.756 0 0 0 0 0 0 0 +0.397 -4.441 -1.762 0 0 0 0 0 0 0 +0.409 -4.42 -1.754 0 0 0 0 0 0 0 +0.416 -4.412 -1.751 0 0 0 0 0 0 0 +0.43 -4.418 -1.754 0 0 0 0 0 0 0 +0.447 -4.444 -1.766 0 0 0 0 0 0 0 +0.459 -4.424 -1.758 0 0 0 0 0 0 0 +0.472 -4.414 -1.754 0 0 0 0 0 0 0 +0.488 -4.434 -1.763 0 0 0 0 0 0 0 +0.5 -4.414 -1.755 0 0 0 0 0 0 0 +1.964 -4.03 -1.773 0 0 0 0 0 0 0 +1.988 -4.045 -1.783 0 0 0 0 0 0 0 +1.99 -4.017 -1.773 0 0 0 0 0 0 0 +1.992 -3.989 -1.762 0 0 0 0 0 0 0 +2.006 -4.003 -1.77 0 0 0 0 0 0 0 +2.018 -3.995 -1.769 0 0 0 0 0 0 0 +2.032 -3.992 -1.771 0 0 0 0 0 0 0 +2.04 -3.975 -1.766 0 0 0 0 0 0 0 +2.056 -3.977 -1.77 0 0 0 0 0 0 0 +2.065 -3.963 -1.766 0 0 0 0 0 0 0 +2.079 -3.959 -1.768 0 0 0 0 0 0 0 +2.082 -3.951 -1.766 0 0 0 0 0 0 0 +2.099 -3.953 -1.769 0 0 0 0 0 0 0 +2.109 -3.941 -1.767 0 0 0 0 0 0 0 +2.127 -3.946 -1.773 0 0 0 0 0 0 0 +2.143 -3.946 -1.776 0 0 0 0 0 0 0 +2.151 -3.931 -1.772 0 0 0 0 0 0 0 +2.164 -3.941 -1.778 0 0 0 0 0 0 0 +2.184 -3.947 -1.784 0 0 0 0 0 0 0 +2.188 -3.925 -1.777 0 0 0 0 0 0 0 +2.199 -3.915 -1.776 0 0 0 0 0 0 0 +2.207 -3.902 -1.773 0 0 0 0 0 0 0 +2.227 -3.908 -1.779 0 0 0 0 0 0 0 +2.236 -3.896 -1.776 0 0 0 0 0 0 0 +2.244 -3.896 -1.778 0 0 0 0 0 0 0 +2.256 -3.887 -1.777 0 0 0 0 0 0 0 +2.273 -3.888 -1.781 0 0 0 0 0 0 0 +2.281 -3.874 -1.778 0 0 0 0 0 0 0 +2.293 -3.867 -1.778 0 0 0 0 0 0 0 +2.307 -3.863 -1.779 0 0 0 0 0 0 0 +2.315 -3.848 -1.776 0 0 0 0 0 0 0 +2.324 -3.85 -1.779 0 0 0 0 0 0 0 +2.338 -3.846 -1.78 0 0 0 0 0 0 0 +2.35 -3.837 -1.779 0 0 0 0 0 0 0 +2.362 -3.83 -1.779 0 0 0 0 0 0 0 +2.374 -3.823 -1.779 0 0 0 0 0 0 0 +2.384 -3.812 -1.778 0 0 0 0 0 0 0 +2.399 -3.809 -1.78 0 0 0 0 0 0 0 +2.409 -3.798 -1.779 0 0 0 0 0 0 0 +2.419 -3.802 -1.783 0 0 0 0 0 0 0 +2.426 -3.787 -1.779 0 0 0 0 0 0 0 +2.439 -3.781 -1.779 0 0 0 0 0 0 0 +2.451 -3.773 -1.779 0 0 0 0 0 0 0 +2.461 -3.762 -1.778 0 0 0 0 0 0 0 +2.484 -3.772 -1.786 0 0 0 0 0 0 0 +2.491 -3.756 -1.783 0 0 0 0 0 0 0 +2.497 -3.752 -1.783 0 0 0 0 0 0 0 +2.508 -3.744 -1.783 0 0 0 0 0 0 0 +2.519 -3.735 -1.782 0 0 0 0 0 0 0 +2.531 -3.727 -1.782 0 0 0 0 0 0 0 +2.546 -3.724 -1.784 0 0 0 0 0 0 0 +2.554 -3.711 -1.782 0 0 0 0 0 0 0 +2.566 -3.703 -1.782 0 0 0 0 0 0 0 +2.573 -3.7 -1.783 0 0 0 0 0 0 0 +2.583 -3.691 -1.782 0 0 0 0 0 0 0 +2.601 -3.692 -1.786 0 0 0 0 0 0 0 +2.614 -3.685 -1.787 0 0 0 0 0 0 0 +2.622 -3.672 -1.785 0 0 0 0 0 0 0 +2.626 -3.654 -1.779 0 0 0 0 0 0 0 +2.635 -3.654 -1.782 0 0 0 0 0 0 0 +2.647 -3.646 -1.782 0 0 0 0 0 0 0 +2.66 -3.64 -1.783 0 0 0 0 0 0 0 +2.674 -3.635 -1.785 0 0 0 0 0 0 0 +2.69 -3.632 -1.788 0 0 0 0 0 0 0 +2.695 -3.617 -1.784 0 0 0 0 0 0 0 +2.71 -3.613 -1.786 0 0 0 0 0 0 0 +2.723 -3.605 -1.787 0 0 0 0 0 0 0 +2.727 -3.6 -1.786 0 0 0 0 0 0 0 +2.74 -3.593 -1.787 0 0 0 0 0 0 0 +2.75 -3.583 -1.786 0 0 0 0 0 0 0 +2.752 -3.562 -1.78 0 0 0 0 0 0 0 +2.763 -3.553 -1.78 0 0 0 0 0 0 0 +2.775 -3.546 -1.781 0 0 0 0 0 0 0 +2.79 -3.542 -1.783 0 0 0 0 0 0 0 +2.799 -3.542 -1.786 0 0 0 0 0 0 0 +2.807 -3.529 -1.783 0 0 0 0 0 0 0 +2.817 -3.518 -1.783 0 0 0 0 0 0 0 +2.824 -3.505 -1.78 0 0 0 0 0 0 0 +2.841 -3.504 -1.784 0 0 0 0 0 0 0 +2.853 -3.496 -1.785 0 0 0 0 0 0 0 +2.869 -3.493 -1.788 0 0 0 0 0 0 0 +2.871 -3.484 -1.786 0 0 0 0 0 0 0 +2.884 -3.478 -1.787 0 0 0 0 0 0 0 +2.892 -3.466 -1.786 0 0 0 0 0 0 0 +2.906 -3.46 -1.787 0 0 0 0 0 0 0 +2.911 -3.443 -1.783 0 0 0 0 0 0 0 +2.933 -3.448 -1.791 0 0 0 0 0 0 0 +2.944 -3.439 -1.791 0 0 0 0 0 0 0 +2.944 -3.427 -1.787 0 0 0 0 0 0 0 +2.963 -3.428 -1.793 0 0 0 0 0 0 0 +2.963 -3.406 -1.786 0 0 0 0 0 0 0 +2.977 -3.401 -1.788 0 0 0 0 0 0 0 +2.991 -3.396 -1.79 0 0 0 0 0 0 0 +2.997 -3.381 -1.787 0 0 0 0 0 0 0 +3.01 -3.384 -1.792 0 0 0 0 0 0 0 +3.015 -3.369 -1.789 0 0 0 0 0 0 0 +3.017 -3.35 -1.783 0 0 0 0 0 0 0 +3.039 -3.353 -1.79 0 0 0 0 0 0 0 +3.045 -3.338 -1.787 0 0 0 0 0 0 0 +3.053 -3.326 -1.786 0 0 0 0 0 0 0 +3.069 -3.323 -1.79 0 0 0 0 0 0 0 +3.072 -3.305 -1.785 0 0 0 0 0 0 0 +3.074 -3.296 -1.783 0 0 0 0 0 0 0 +3.09 -3.293 -1.786 0 0 0 0 0 0 0 +3.106 -3.289 -1.79 0 0 0 0 0 0 0 +3.111 -3.274 -1.786 0 0 0 0 0 0 0 +3.132 -3.276 -1.793 0 0 0 0 0 0 0 +3.138 -3.261 -1.79 0 0 0 0 0 0 0 +3.148 -3.251 -1.79 0 0 0 0 0 0 0 +3.154 -3.247 -1.791 0 0 0 0 0 0 0 +3.162 -3.235 -1.79 0 0 0 0 0 0 0 +3.163 -3.216 -1.784 0 0 0 0 0 0 0 +3.177 -3.21 -1.786 0 0 0 0 0 0 0 +3.19 -3.202 -1.788 0 0 0 0 0 0 0 +3.2 -3.192 -1.788 0 0 0 0 0 0 0 +3.211 -3.183 -1.789 0 0 0 0 0 0 0 +3.216 -3.178 -1.789 0 0 0 0 0 0 0 +3.23 -3.172 -1.791 0 0 0 0 0 0 0 +3.229 -3.152 -1.785 0 0 0 0 0 0 0 +3.245 -3.147 -1.788 0 0 0 0 0 0 0 +3.241 -3.124 -1.78 0 0 0 0 0 0 0 +3.258 -3.12 -1.784 0 0 0 0 0 0 0 +3.262 -3.104 -1.781 0 0 0 0 0 0 0 +3.268 -3.101 -1.782 0 0 0 0 0 0 0 +3.279 -3.092 -1.783 0 0 0 0 0 0 0 +3.286 -3.079 -1.781 0 0 0 0 0 0 0 +3.292 -3.065 -1.779 0 0 0 0 0 0 0 +3.3 -3.053 -1.778 0 0 0 0 0 0 0 +3.315 -3.048 -1.781 0 0 0 0 0 0 0 +3.33 -3.042 -1.784 0 0 0 0 0 0 0 +3.33 -3.032 -1.781 0 0 0 0 0 0 0 +3.34 -3.023 -1.782 0 0 0 0 0 0 0 +3.353 -3.015 -1.783 0 0 0 0 0 0 0 +3.365 -3.007 -1.785 0 0 0 0 0 0 0 +3.365 -2.987 -1.779 0 0 0 0 0 0 0 +3.377 -2.979 -1.781 0 0 0 0 0 0 0 +3.386 -2.969 -1.781 0 0 0 0 0 0 0 +3.389 -2.962 -1.78 0 0 0 0 0 0 0 +3.407 -2.959 -1.785 0 0 0 0 0 0 0 +3.409 -2.942 -1.781 0 0 0 0 0 0 0 +3.416 -2.929 -1.779 0 0 0 0 0 0 0 +3.426 -2.919 -1.78 0 0 0 0 0 0 0 +3.435 -2.909 -1.78 0 0 0 0 0 0 0 +3.442 -2.895 -1.779 0 0 0 0 0 0 0 +3.446 -2.89 -1.779 0 0 0 0 0 0 0 +3.457 -2.88 -1.779 0 0 0 0 0 0 0 +3.48 -2.881 -1.787 0 0 0 0 0 0 0 +3.479 -2.862 -1.782 0 0 0 0 0 0 0 +3.516 -2.875 -1.797 0 0 0 0 0 0 0 +3.531 -2.868 -1.8 0 0 0 0 0 0 0 +3.546 -2.862 -1.804 0 0 0 0 0 0 0 +3.542 -2.849 -1.799 0 0 0 0 0 0 0 +3.544 -2.832 -1.795 0 0 0 0 0 0 0 +3.535 -2.807 -1.786 0 0 0 0 0 0 0 +3.543 -2.795 -1.785 0 0 0 0 0 0 0 +3.557 -2.788 -1.788 0 0 0 0 0 0 0 +3.543 -2.759 -1.776 0 0 0 0 0 0 0 +3.556 -2.751 -1.778 0 0 0 0 0 0 0 +3.559 -2.745 -1.777 0 0 0 0 0 0 0 +3.577 -2.741 -1.783 0 0 0 0 0 0 0 +3.586 -2.73 -1.783 0 0 0 0 0 0 0 +3.575 -2.704 -1.773 0 0 0 0 0 0 0 +3.587 -2.695 -1.774 0 0 0 0 0 0 0 +3.598 -2.686 -1.776 0 0 0 0 0 0 0 +3.599 -2.669 -1.772 0 0 0 0 0 0 0 +3.602 -2.662 -1.771 0 0 0 0 0 0 0 +3.607 -2.649 -1.769 0 0 0 0 0 0 0 +3.625 -2.644 -1.774 0 0 0 0 0 0 0 +3.636 -2.635 -1.776 0 0 0 0 0 0 0 +3.631 -2.614 -1.769 0 0 0 0 0 0 0 +3.643 -2.606 -1.771 0 0 0 0 0 0 0 +3.658 -2.598 -1.774 0 0 0 0 0 0 0 +3.663 -2.594 -1.775 0 0 0 0 0 0 0 +3.665 -2.578 -1.772 0 0 0 0 0 0 0 +3.682 -2.573 -1.776 0 0 0 0 0 0 0 +3.689 -2.56 -1.776 0 0 0 0 0 0 0 +3.697 -2.549 -1.776 0 0 0 0 0 0 0 +3.691 -2.527 -1.769 0 0 0 0 0 0 0 +3.708 -2.522 -1.773 0 0 0 0 0 0 0 +3.703 -2.51 -1.769 0 0 0 0 0 0 0 +3.729 -2.511 -1.778 0 0 0 0 0 0 0 +3.731 -2.495 -1.775 0 0 0 0 0 0 0 +3.733 -2.479 -1.772 0 0 0 0 0 0 0 +3.745 -2.47 -1.774 0 0 0 0 0 0 0 +3.748 -2.456 -1.772 0 0 0 0 0 0 0 +3.759 -2.446 -1.773 0 0 0 0 0 0 0 +3.757 -2.436 -1.77 0 0 0 0 0 0 0 +3.771 -2.428 -1.773 0 0 0 0 0 0 0 +3.778 -2.416 -1.773 0 0 0 0 0 0 0 +3.809 -2.419 -1.785 0 0 0 0 0 0 0 +3.827 -2.414 -1.79 0 0 0 0 0 0 0 +3.858 -2.417 -1.802 0 0 0 0 0 0 0 +3.85 -2.395 -1.794 0 0 0 0 0 0 0 +3.863 -2.395 -1.799 0 0 0 0 0 0 0 +3.88 -2.389 -1.804 0 0 0 0 0 0 0 +3.874 -2.26 -1.773 0 0 0 0 0 0 0 +3.871 -2.242 -1.769 0 0 0 0 0 0 0 +3.885 -2.234 -1.772 0 0 0 0 0 0 0 +3.88 -2.215 -1.766 0 0 0 0 0 0 0 +3.891 -2.205 -1.768 0 0 0 0 0 0 0 +3.904 -2.204 -1.773 0 0 0 0 0 0 0 +3.915 -2.195 -1.775 0 0 0 0 0 0 0 +3.925 -2.184 -1.776 0 0 0 0 0 0 0 +3.908 -2.158 -1.765 0 0 0 0 0 0 0 +3.926 -2.152 -1.77 0 0 0 0 0 0 0 +3.928 -2.137 -1.768 0 0 0 0 0 0 0 +3.93 -2.122 -1.766 0 0 0 0 0 0 0 +3.932 -2.115 -1.765 0 0 0 0 0 0 0 +3.945 -2.106 -1.768 0 0 0 0 0 0 0 +3.943 -2.09 -1.764 0 0 0 0 0 0 0 +3.953 -2.079 -1.766 0 0 0 0 0 0 0 +3.968 -2.071 -1.769 0 0 0 0 0 0 0 +3.968 -2.055 -1.766 0 0 0 0 0 0 0 +3.972 -2.042 -1.766 0 0 0 0 0 0 0 +3.981 -2.038 -1.768 0 0 0 0 0 0 0 +3.977 -2.02 -1.763 0 0 0 0 0 0 0 +4 -2.016 -1.771 0 0 0 0 0 0 0 +4.005 -2.003 -1.77 0 0 0 0 0 0 0 +3.991 -1.98 -1.761 0 0 0 0 0 0 0 +4.005 -1.972 -1.765 0 0 0 0 0 0 0 +4.018 -1.962 -1.768 0 0 0 0 0 0 0 +4.016 -1.954 -1.766 0 0 0 0 0 0 0 +4.034 -1.947 -1.771 0 0 0 0 0 0 0 +4.03 -1.929 -1.766 0 0 0 0 0 0 0 +4.036 -1.917 -1.766 0 0 0 0 0 0 0 +4.051 -1.908 -1.77 0 0 0 0 0 0 0 +4.062 -1.897 -1.773 0 0 0 0 0 0 0 +4.054 -1.878 -1.766 0 0 0 0 0 0 0 +4.065 -1.868 -1.769 0 0 0 0 0 0 0 +4.068 -1.862 -1.769 0 0 0 0 0 0 0 +4.075 -1.85 -1.769 0 0 0 0 0 0 0 +4.086 -1.839 -1.772 0 0 0 0 0 0 0 +4.102 -1.831 -1.776 0 0 0 0 0 0 0 +4.101 -1.815 -1.773 0 0 0 0 0 0 0 +4.093 -1.796 -1.767 0 0 0 0 0 0 0 +4.099 -1.783 -1.767 0 0 0 0 0 0 0 +4.1 -1.776 -1.766 0 0 0 0 0 0 0 +4.104 -1.762 -1.766 0 0 0 0 0 0 0 +4.118 -1.753 -1.769 0 0 0 0 0 0 0 +4.129 -1.742 -1.772 0 0 0 0 0 0 0 +4.12 -1.724 -1.766 0 0 0 0 0 0 0 +4.127 -1.711 -1.766 0 0 0 0 0 0 0 +4.128 -1.704 -1.766 0 0 0 0 0 0 0 +4.134 -1.691 -1.766 0 0 0 0 0 0 0 +4.148 -1.682 -1.769 0 0 0 0 0 0 0 +4.149 -1.667 -1.768 0 0 0 0 0 0 0 +4.153 -1.653 -1.767 0 0 0 0 0 0 0 +4.153 -1.638 -1.765 0 0 0 0 0 0 0 +4.16 -1.626 -1.766 0 0 0 0 0 0 0 +4.167 -1.614 -1.766 0 0 0 0 0 0 0 +4.171 -1.608 -1.767 0 0 0 0 0 0 0 +4.169 -1.592 -1.764 0 0 0 0 0 0 0 +4.174 -1.579 -1.764 0 0 0 0 0 0 0 +4.186 -1.568 -1.767 0 0 0 0 0 0 0 +4.17 -1.547 -1.758 0 0 0 0 0 0 0 +4.18 -1.536 -1.76 0 0 0 0 0 0 0 +4.183 -1.522 -1.759 0 0 0 0 0 0 0 +4.189 -1.517 -1.761 0 0 0 0 0 0 0 +4.194 -1.504 -1.761 0 0 0 0 0 0 0 +4.193 -1.489 -1.759 0 0 0 0 0 0 0 +4.193 -1.474 -1.756 0 0 0 0 0 0 0 +4.203 -1.462 -1.759 0 0 0 0 0 0 0 +4.204 -1.448 -1.757 0 0 0 0 0 0 0 +4.217 -1.438 -1.761 0 0 0 0 0 0 0 +4.202 -1.425 -1.753 0 0 0 0 0 0 0 +4.215 -1.415 -1.757 0 0 0 0 0 0 0 +4.219 -1.402 -1.757 0 0 0 0 0 0 0 +4.238 -1.393 -1.763 0 0 0 0 0 0 0 +4.226 -1.375 -1.756 0 0 0 0 0 0 0 +4.22 -1.358 -1.752 0 0 0 0 0 0 0 +4.228 -1.346 -1.753 0 0 0 0 0 0 0 +4.233 -1.34 -1.755 0 0 0 0 0 0 0 +4.238 -1.327 -1.755 0 0 0 0 0 0 0 +4.244 -1.314 -1.755 0 0 0 0 0 0 0 +4.253 -1.303 -1.758 0 0 0 0 0 0 0 +4.252 -1.288 -1.755 0 0 0 0 0 0 0 +4.256 -1.274 -1.755 0 0 0 0 0 0 0 +4.258 -1.26 -1.755 0 0 0 0 0 0 0 +4.272 -1.257 -1.76 0 0 0 0 0 0 0 +4.267 -1.241 -1.756 0 0 0 0 0 0 0 +4.193 -1.205 -1.722 0 0 0 0 0 0 0 +4.28 -1.216 -1.759 0 0 0 0 0 0 0 +4.27 -1.198 -1.752 0 0 0 0 0 0 0 +6.802 -1.337 -2.805 0 0 0 0 0 0 0 +6.838 -1.266 -2.814 0 0 0 0 0 0 0 +6.844 -1.245 -2.815 0 0 0 0 0 0 0 +6.855 -1.225 -2.818 0 0 0 0 0 0 0 +6.866 -1.204 -2.821 0 0 0 0 0 0 0 +6.881 -1.185 -2.826 0 0 0 0 0 0 0 +23.21 2.588 -9.952 0 0 0 0 0 0 0 +23.235 2.664 -9.966 0 0 0 0 0 0 0 +23.259 2.741 -9.98 0 0 0 0 0 0 0 +23.276 2.817 -9.991 0 0 0 0 0 0 0 +23.312 2.896 -10.011 0 0 0 0 0 0 0 +23.329 2.973 -10.022 0 0 0 0 0 0 0 +23.358 3.051 -10.039 0 0 0 0 0 0 0 +23.365 3.089 -10.044 0 0 0 0 0 0 0 +19.439 2.752 -8.347 0 0 0 0 0 0 0 +19.449 2.816 -8.355 0 0 0 0 0 0 0 +19.403 2.872 -8.34 0 0 0 0 0 0 0 +19.369 2.929 -8.328 0 0 0 0 0 0 0 +19.337 2.955 -8.317 0 0 0 0 0 0 0 +19.306 3.012 -8.307 0 0 0 0 0 0 0 +19.26 3.067 -8.291 0 0 0 0 0 0 0 +19.214 3.122 -8.275 0 0 0 0 0 0 0 +19.175 3.177 -8.263 0 0 0 0 0 0 0 +17.517 2.957 -7.542 0 0 0 0 0 0 0 +17.503 3.011 -7.54 0 0 0 0 0 0 0 +17.489 3.037 -7.536 0 0 0 0 0 0 0 +17.466 3.09 -7.53 0 0 0 0 0 0 0 +17.435 3.141 -7.521 0 0 0 0 0 0 0 +17.427 3.196 -7.522 0 0 0 0 0 0 0 +17.379 3.243 -7.505 0 0 0 0 0 0 0 +17.354 3.295 -7.499 0 0 0 0 0 0 0 +17.326 3.346 -7.491 0 0 0 0 0 0 0 +17.324 3.374 -7.492 0 0 0 0 0 0 0 +17.295 3.425 -7.484 0 0 0 0 0 0 0 +17.279 3.478 -7.482 0 0 0 0 0 0 0 +15.097 3.834 -6.598 0 0 0 0 0 0 0 +15.069 3.877 -6.591 0 0 0 0 0 0 0 +15.016 3.914 -6.573 0 0 0 0 0 0 0 +14.793 4.205 -6.514 0 0 0 0 0 0 0 +14.808 4.26 -6.526 0 0 0 0 0 0 0 +14.791 4.305 -6.525 0 0 0 0 0 0 0 +14.713 4.484 -6.514 0 0 0 0 0 0 0 +14.689 4.501 -6.507 0 0 0 0 0 0 0 +4.094 1.341 -1.741 0 0 0 0 0 0 0 +4.047 1.34 -1.721 0 0 0 0 0 0 0 +4.032 1.349 -1.716 0 0 0 0 0 0 0 +4.007 1.354 -1.707 0 0 0 0 0 0 0 +4.004 1.367 -1.707 0 0 0 0 0 0 0 +3.998 1.379 -1.707 0 0 0 0 0 0 0 +3.994 1.385 -1.706 0 0 0 0 0 0 0 +3.98 1.394 -1.701 0 0 0 0 0 0 0 +3.993 1.413 -1.709 0 0 0 0 0 0 0 +3.986 1.424 -1.708 0 0 0 0 0 0 0 +3.975 1.434 -1.705 0 0 0 0 0 0 0 +3.976 1.449 -1.707 0 0 0 0 0 0 0 +3.971 1.461 -1.707 0 0 0 0 0 0 0 +3.972 1.469 -1.709 0 0 0 0 0 0 0 +3.974 1.484 -1.712 0 0 0 0 0 0 0 +3.951 1.489 -1.703 0 0 0 0 0 0 0 +3.967 1.51 -1.713 0 0 0 0 0 0 0 +3.948 1.517 -1.707 0 0 0 0 0 0 0 +3.938 1.527 -1.704 0 0 0 0 0 0 0 +3.949 1.545 -1.711 0 0 0 0 0 0 0 +3.941 1.55 -1.709 0 0 0 0 0 0 0 +3.933 1.561 -1.707 0 0 0 0 0 0 0 +3.926 1.572 -1.707 0 0 0 0 0 0 0 +3.932 1.589 -1.711 0 0 0 0 0 0 0 +3.92 1.598 -1.708 0 0 0 0 0 0 0 +3.917 1.611 -1.709 0 0 0 0 0 0 0 +3.905 1.621 -1.706 0 0 0 0 0 0 0 +3.909 1.63 -1.709 0 0 0 0 0 0 0 +3.904 1.642 -1.709 0 0 0 0 0 0 0 +3.897 1.654 -1.708 0 0 0 0 0 0 0 +3.883 1.662 -1.704 0 0 0 0 0 0 0 +3.888 1.679 -1.709 0 0 0 0 0 0 0 +3.881 1.69 -1.708 0 0 0 0 0 0 0 +3.886 1.707 -1.713 0 0 0 0 0 0 0 +3.878 1.711 -1.711 0 0 0 0 0 0 0 +3.871 1.722 -1.71 0 0 0 0 0 0 0 +3.864 1.734 -1.709 0 0 0 0 0 0 0 +3.862 1.747 -1.711 0 0 0 0 0 0 0 +3.848 1.756 -1.707 0 0 0 0 0 0 0 +3.851 1.771 -1.711 0 0 0 0 0 0 0 +3.845 1.784 -1.711 0 0 0 0 0 0 0 +3.839 1.788 -1.709 0 0 0 0 0 0 0 +3.845 1.806 -1.714 0 0 0 0 0 0 0 +3.831 1.814 -1.711 0 0 0 0 0 0 0 +3.822 1.824 -1.709 0 0 0 0 0 0 0 +3.831 1.843 -1.716 0 0 0 0 0 0 0 +3.804 1.845 -1.706 0 0 0 0 0 0 0 +3.81 1.863 -1.711 0 0 0 0 0 0 0 +3.807 1.869 -1.711 0 0 0 0 0 0 0 +3.793 1.876 -1.707 0 0 0 0 0 0 0 +3.793 1.892 -1.711 0 0 0 0 0 0 0 +3.791 1.905 -1.712 0 0 0 0 0 0 0 +3.783 1.916 -1.711 0 0 0 0 0 0 0 +3.772 1.926 -1.709 0 0 0 0 0 0 0 +3.758 1.933 -1.705 0 0 0 0 0 0 0 +3.768 1.946 -1.711 0 0 0 0 0 0 0 +3.76 1.957 -1.711 0 0 0 0 0 0 0 +3.751 1.967 -1.709 0 0 0 0 0 0 0 +3.754 1.984 -1.714 0 0 0 0 0 0 0 +3.745 1.994 -1.712 0 0 0 0 0 0 0 +3.756 2.015 -1.721 0 0 0 0 0 0 0 +3.732 2.017 -1.712 0 0 0 0 0 0 0 +3.732 2.033 -1.715 0 0 0 0 0 0 0 +3.722 2.035 -1.712 0 0 0 0 0 0 0 +3.718 2.048 -1.713 0 0 0 0 0 0 0 +3.71 2.058 -1.712 0 0 0 0 0 0 0 +3.706 2.072 -1.714 0 0 0 0 0 0 0 +3.713 2.091 -1.72 0 0 0 0 0 0 0 +3.709 2.104 -1.722 0 0 0 0 0 0 0 +3.727 2.122 -1.732 0 0 0 0 0 0 0 +3.737 2.144 -1.741 0 0 0 0 0 0 0 +3.712 2.144 -1.731 0 0 0 0 0 0 0 +3.636 2.336 -1.746 0 0 0 0 0 0 0 +3.624 2.344 -1.744 0 0 0 0 0 0 0 +3.61 2.352 -1.741 0 0 0 0 0 0 0 +3.569 2.341 -1.723 0 0 0 0 0 0 0 +3.552 2.337 -1.716 0 0 0 0 0 0 0 +3.534 2.341 -1.711 0 0 0 0 0 0 0 +3.538 2.36 -1.717 0 0 0 0 0 0 0 +3.528 2.369 -1.715 0 0 0 0 0 0 0 +3.513 2.375 -1.711 0 0 0 0 0 0 0 +3.507 2.387 -1.712 0 0 0 0 0 0 0 +3.499 2.398 -1.712 0 0 0 0 0 0 0 +3.49 2.4 -1.709 0 0 0 0 0 0 0 +3.503 2.425 -1.72 0 0 0 0 0 0 0 +3.481 2.426 -1.712 0 0 0 0 0 0 0 +3.485 2.445 -1.718 0 0 0 0 0 0 0 +3.456 2.441 -1.707 0 0 0 0 0 0 0 +3.449 2.452 -1.707 0 0 0 0 0 0 0 +3.452 2.463 -1.711 0 0 0 0 0 0 0 +3.434 2.466 -1.706 0 0 0 0 0 0 0 +3.431 2.48 -1.708 0 0 0 0 0 0 0 +3.423 2.491 -1.708 0 0 0 0 0 0 0 +3.415 2.502 -1.708 0 0 0 0 0 0 0 +3.41 2.514 -1.71 0 0 0 0 0 0 0 +3.404 2.526 -1.711 0 0 0 0 0 0 0 +3.394 2.527 -1.707 0 0 0 0 0 0 0 +3.395 2.545 -1.712 0 0 0 0 0 0 0 +3.384 2.553 -1.711 0 0 0 0 0 0 0 +3.383 2.569 -1.714 0 0 0 0 0 0 0 +3.376 2.581 -1.715 0 0 0 0 0 0 0 +3.377 2.598 -1.72 0 0 0 0 0 0 0 +3.383 2.62 -1.728 0 0 0 0 0 0 0 +3.391 2.635 -1.734 0 0 0 0 0 0 0 +3.402 2.661 -1.745 0 0 0 0 0 0 0 +3.276 2.741 -1.725 0 0 0 0 0 0 0 +3.278 2.76 -1.73 0 0 0 0 0 0 0 +3.269 2.761 -1.728 0 0 0 0 0 0 0 +3.251 2.763 -1.722 0 0 0 0 0 0 0 +3.252 2.782 -1.728 0 0 0 0 0 0 0 +3.223 2.775 -1.717 0 0 0 0 0 0 0 +3.204 2.775 -1.711 0 0 0 0 0 0 0 +3.195 2.786 -1.711 0 0 0 0 0 0 0 +3.185 2.794 -1.71 0 0 0 0 0 0 0 +3.172 2.801 -1.707 0 0 0 0 0 0 0 +3.157 2.796 -1.701 0 0 0 0 0 0 0 +3.17 2.825 -1.714 0 0 0 0 0 0 0 +3.155 2.83 -1.711 0 0 0 0 0 0 0 +3.145 2.839 -1.71 0 0 0 0 0 0 0 +3.144 2.856 -1.714 0 0 0 0 0 0 0 +3.116 2.849 -1.703 0 0 0 0 0 0 0 +3.121 2.871 -1.711 0 0 0 0 0 0 0 +3.112 2.872 -1.709 0 0 0 0 0 0 0 +3.101 2.879 -1.707 0 0 0 0 0 0 0 +3.091 2.889 -1.707 0 0 0 0 0 0 0 +3.09 2.907 -1.712 0 0 0 0 0 0 0 +3.08 2.915 -1.711 0 0 0 0 0 0 0 +3.067 2.921 -1.709 0 0 0 0 0 0 0 +3.062 2.926 -1.709 0 0 0 0 0 0 0 +3.05 2.933 -1.707 0 0 0 0 0 0 0 +3.05 2.951 -1.713 0 0 0 0 0 0 0 +3.031 2.95 -1.707 0 0 0 0 0 0 0 +3.025 2.964 -1.709 0 0 0 0 0 0 0 +3.015 2.972 -1.708 0 0 0 0 0 0 0 +3.004 2.98 -1.707 0 0 0 0 0 0 0 +3.004 2.99 -1.711 0 0 0 0 0 0 0 +2.992 2.997 -1.709 0 0 0 0 0 0 0 +2.982 3.005 -1.708 0 0 0 0 0 0 0 +2.977 3.02 -1.711 0 0 0 0 0 0 0 +2.959 3.02 -1.706 0 0 0 0 0 0 0 +2.956 3.036 -1.71 0 0 0 0 0 0 0 +2.942 3.041 -1.707 0 0 0 0 0 0 0 +2.946 3.055 -1.713 0 0 0 0 0 0 0 +2.928 3.055 -1.707 0 0 0 0 0 0 0 +2.93 3.076 -1.714 0 0 0 0 0 0 0 +2.91 3.074 -1.708 0 0 0 0 0 0 0 +2.905 3.089 -1.711 0 0 0 0 0 0 0 +2.887 3.089 -1.706 0 0 0 0 0 0 0 +2.882 3.103 -1.709 0 0 0 0 0 0 0 +2.863 3.101 -1.703 0 0 0 0 0 0 0 +2.865 3.114 -1.707 0 0 0 0 0 0 0 +2.858 3.126 -1.709 0 0 0 0 0 0 0 +2.845 3.132 -1.707 0 0 0 0 0 0 0 +2.844 3.15 -1.713 0 0 0 0 0 0 0 +2.835 3.161 -1.714 0 0 0 0 0 0 0 +2.821 3.164 -1.711 0 0 0 0 0 0 0 +2.807 3.169 -1.708 0 0 0 0 0 0 0 +2.819 3.192 -1.719 0 0 0 0 0 0 0 +2.792 3.182 -1.708 0 0 0 0 0 0 0 +2.792 3.202 -1.714 0 0 0 0 0 0 0 +2.785 3.215 -1.717 0 0 0 0 0 0 0 +2.768 3.215 -1.712 0 0 0 0 0 0 0 +2.764 3.231 -1.716 0 0 0 0 0 0 0 +2.749 3.234 -1.713 0 0 0 0 0 0 0 +2.741 3.235 -1.711 0 0 0 0 0 0 0 +2.732 3.245 -1.712 0 0 0 0 0 0 0 +2.734 3.268 -1.72 0 0 0 0 0 0 0 +2.712 3.262 -1.712 0 0 0 0 0 0 0 +2.705 3.275 -1.714 0 0 0 0 0 0 0 +2.693 3.281 -1.713 0 0 0 0 0 0 0 +2.676 3.282 -1.709 0 0 0 0 0 0 0 +2.675 3.291 -1.711 0 0 0 0 0 0 0 +2.678 3.316 -1.721 0 0 0 0 0 0 0 +2.657 3.312 -1.714 0 0 0 0 0 0 0 +2.652 3.326 -1.717 0 0 0 0 0 0 0 +2.646 3.34 -1.72 0 0 0 0 0 0 0 +2.626 3.337 -1.714 0 0 0 0 0 0 0 +2.627 3.359 -1.722 0 0 0 0 0 0 0 +2.619 3.361 -1.72 0 0 0 0 0 0 0 +2.604 3.363 -1.717 0 0 0 0 0 0 0 +2.595 3.373 -1.718 0 0 0 0 0 0 0 +2.594 3.394 -1.725 0 0 0 0 0 0 0 +2.569 3.383 -1.714 0 0 0 0 0 0 0 +2.567 3.403 -1.721 0 0 0 0 0 0 0 +2.552 3.405 -1.718 0 0 0 0 0 0 0 +2.541 3.401 -1.714 0 0 0 0 0 0 0 +2.543 3.426 -1.722 0 0 0 0 0 0 0 +2.531 3.432 -1.722 0 0 0 0 0 0 0 +2.519 3.439 -1.721 0 0 0 0 0 0 0 +2.511 3.451 -1.723 0 0 0 0 0 0 0 +2.497 3.454 -1.721 0 0 0 0 0 0 0 +2.489 3.465 -1.722 0 0 0 0 0 0 0 +2.486 3.474 -1.725 0 0 0 0 0 0 0 +2.466 3.468 -1.718 0 0 0 0 0 0 0 +2.458 3.48 -1.72 0 0 0 0 0 0 0 +2.441 3.479 -1.715 0 0 0 0 0 0 0 +2.437 3.497 -1.721 0 0 0 0 0 0 0 +2.423 3.5 -1.718 0 0 0 0 0 0 0 +2.415 3.512 -1.721 0 0 0 0 0 0 0 +2.409 3.515 -1.72 0 0 0 0 0 0 0 +2.403 3.53 -1.724 0 0 0 0 0 0 0 +2.388 3.531 -1.721 0 0 0 0 0 0 0 +2.376 3.539 -1.721 0 0 0 0 0 0 0 +2.361 3.54 -1.718 0 0 0 0 0 0 0 +2.351 3.549 -1.718 0 0 0 0 0 0 0 +2.347 3.567 -1.724 0 0 0 0 0 0 0 +2.344 3.575 -1.726 0 0 0 0 0 0 0 +2.328 3.575 -1.722 0 0 0 0 0 0 0 +2.321 3.588 -1.726 0 0 0 0 0 0 0 +2.308 3.593 -1.724 0 0 0 0 0 0 0 +2.299 3.605 -1.726 0 0 0 0 0 0 0 +2.285 3.607 -1.724 0 0 0 0 0 0 0 +2.277 3.619 -1.726 0 0 0 0 0 0 0 +2.262 3.608 -1.719 0 0 0 0 0 0 0 +2.256 3.623 -1.723 0 0 0 0 0 0 0 +2.243 3.629 -1.722 0 0 0 0 0 0 0 +2.235 3.641 -1.725 0 0 0 0 0 0 0 +2.219 3.64 -1.721 0 0 0 0 0 0 0 +2.205 3.644 -1.719 0 0 0 0 0 0 0 +2.197 3.655 -1.722 0 0 0 0 0 0 0 +2.182 3.657 -1.719 0 0 0 0 0 0 0 +2.175 3.658 -1.718 0 0 0 0 0 0 0 +2.162 3.663 -1.717 0 0 0 0 0 0 0 +2.154 3.676 -1.72 0 0 0 0 0 0 0 +2.139 3.676 -1.717 0 0 0 0 0 0 0 +2.128 3.683 -1.717 0 0 0 0 0 0 0 +2.112 3.683 -1.714 0 0 0 0 0 0 0 +2.101 3.69 -1.714 0 0 0 0 0 0 0 +2.095 3.693 -1.714 0 0 0 0 0 0 0 +2.085 3.703 -1.715 0 0 0 0 0 0 0 +2.071 3.705 -1.713 0 0 0 0 0 0 0 +2.063 3.718 -1.716 0 0 0 0 0 0 0 +2.05 3.722 -1.715 0 0 0 0 0 0 0 +2.034 3.721 -1.711 0 0 0 0 0 0 0 +2.028 3.724 -1.711 0 0 0 0 0 0 0 +2.024 3.743 -1.718 0 0 0 0 0 0 0 +2.008 3.742 -1.714 0 0 0 0 0 0 0 +1.996 3.748 -1.714 0 0 0 0 0 0 0 +1.981 3.749 -1.711 0 0 0 0 0 0 0 +1.979 3.773 -1.72 0 0 0 0 0 0 0 +1.96 3.765 -1.713 0 0 0 0 0 0 0 +1.958 3.776 -1.717 0 0 0 0 0 0 0 +1.938 3.767 -1.71 0 0 0 0 0 0 0 +1.936 3.792 -1.718 0 0 0 0 0 0 0 +1.911 3.773 -1.707 0 0 0 0 0 0 0 +1.909 3.797 -1.715 0 0 0 0 0 0 0 +1.89 3.79 -1.709 0 0 0 0 0 0 0 +1.885 3.809 -1.715 0 0 0 0 0 0 0 +1.868 3.805 -1.711 0 0 0 0 0 0 0 +1.863 3.81 -1.711 0 0 0 0 0 0 0 +1.848 3.809 -1.708 0 0 0 0 0 0 0 +1.84 3.825 -1.713 0 0 0 0 0 0 0 +1.826 3.825 -1.711 0 0 0 0 0 0 0 +1.812 3.828 -1.709 0 0 0 0 0 0 0 +1.803 3.84 -1.712 0 0 0 0 0 0 0 +1.787 3.837 -1.708 0 0 0 0 0 0 0 +1.791 3.86 -1.718 0 0 0 0 0 0 0 +1.767 3.841 -1.706 0 0 0 0 0 0 0 +1.765 3.868 -1.716 0 0 0 0 0 0 0 +1.744 3.853 -1.707 0 0 0 0 0 0 0 +1.736 3.869 -1.711 0 0 0 0 0 0 0 +1.718 3.861 -1.705 0 0 0 0 0 0 0 +1.71 3.876 -1.71 0 0 0 0 0 0 0 +1.701 3.889 -1.713 0 0 0 0 0 0 0 +1.689 3.878 -1.707 0 0 0 0 0 0 0 +1.674 3.876 -1.703 0 0 0 0 0 0 0 +1.666 3.892 -1.708 0 0 0 0 0 0 0 +1.647 3.882 -1.701 0 0 0 0 0 0 0 +1.64 3.899 -1.707 0 0 0 0 0 0 0 +1.627 3.902 -1.706 0 0 0 0 0 0 0 +1.622 3.908 -1.707 0 0 0 0 0 0 0 +1.611 3.915 -1.708 0 0 0 0 0 0 0 +1.596 3.913 -1.705 0 0 0 0 0 0 0 +1.586 3.923 -1.707 0 0 0 0 0 0 0 +1.575 3.931 -1.709 0 0 0 0 0 0 0 +1.562 3.936 -1.709 0 0 0 0 0 0 0 +1.549 3.94 -1.708 0 0 0 0 0 0 0 +1.539 3.951 -1.711 0 0 0 0 0 0 0 +1.527 3.937 -1.703 0 0 0 0 0 0 0 +1.519 3.953 -1.709 0 0 0 0 0 0 0 +1.503 3.949 -1.705 0 0 0 0 0 0 0 +1.502 3.983 -1.718 0 0 0 0 0 0 0 +1.486 3.98 -1.714 0 0 0 0 0 0 0 +1.469 3.972 -1.709 0 0 0 0 0 0 0 +1.46 3.987 -1.714 0 0 0 0 0 0 0 +1.436 3.939 -1.691 0 0 0 0 0 0 0 +1.431 3.964 -1.7 0 0 0 0 0 0 0 +1.415 3.959 -1.695 0 0 0 0 0 0 0 +1.401 3.96 -1.694 0 0 0 0 0 0 0 +1.389 3.966 -1.695 0 0 0 0 0 0 0 +1.374 3.961 -1.691 0 0 0 0 0 0 0 +1.36 3.962 -1.689 0 0 0 0 0 0 0 +1.354 3.964 -1.689 0 0 0 0 0 0 0 +1.341 3.965 -1.688 0 0 0 0 0 0 0 +1.33 3.976 -1.691 0 0 0 0 0 0 0 +1.317 3.979 -1.69 0 0 0 0 0 0 0 +1.305 3.983 -1.69 0 0 0 0 0 0 0 +1.295 3.994 -1.693 0 0 0 0 0 0 0 +1.28 3.991 -1.69 0 0 0 0 0 0 0 +1.276 4 -1.693 0 0 0 0 0 0 0 +1.26 3.995 -1.689 0 0 0 0 0 0 0 +1.253 4.015 -1.696 0 0 0 0 0 0 0 +1.233 3.994 -1.685 0 0 0 0 0 0 0 +1.226 4.017 -1.694 0 0 0 0 0 0 0 +1.208 4.004 -1.686 0 0 0 0 0 0 0 +1.199 4.018 -1.691 0 0 0 0 0 0 0 +1.191 4.014 -1.688 0 0 0 0 0 0 0 +1.18 4.025 -1.692 0 0 0 0 0 0 0 +1.164 4.017 -1.686 0 0 0 0 0 0 0 +1.151 4.018 -1.685 0 0 0 0 0 0 0 +1.146 4.05 -1.698 0 0 0 0 0 0 0 +1.125 4.022 -1.684 0 0 0 0 0 0 0 +1.114 4.034 -1.688 0 0 0 0 0 0 0 +1.104 4.045 -1.691 0 0 0 0 0 0 0 +1.094 4.036 -1.686 0 0 0 0 0 0 0 +1.083 4.045 -1.688 0 0 0 0 0 0 0 +1.066 4.032 -1.681 0 0 0 0 0 0 0 +1.058 4.052 -1.688 0 0 0 0 0 0 0 +1.044 4.049 -1.686 0 0 0 0 0 0 0 +1.031 4.055 -1.687 0 0 0 0 0 0 0 +1.019 4.058 -1.687 0 0 0 0 0 0 0 +1.014 4.066 -1.69 0 0 0 0 0 0 0 +0.997 4.054 -1.683 0 0 0 0 0 0 0 +0.987 4.067 -1.688 0 0 0 0 0 0 0 +0.972 4.062 -1.684 0 0 0 0 0 0 0 +0.96 4.068 -1.685 0 0 0 0 0 0 0 +0.947 4.069 -1.684 0 0 0 0 0 0 0 +0.935 4.074 -1.685 0 0 0 0 0 0 0 +0.929 4.079 -1.687 0 0 0 0 0 0 0 +0.914 4.071 -1.682 0 0 0 0 0 0 0 +0.902 4.076 -1.683 0 0 0 0 0 0 0 +0.892 4.093 -1.689 0 0 0 0 0 0 0 +0.876 4.08 -1.682 0 0 0 0 0 0 0 +0.864 4.088 -1.684 0 0 0 0 0 0 0 +0.852 4.096 -1.687 0 0 0 0 0 0 0 +0.843 4.086 -1.682 0 0 0 0 0 0 0 +0.831 4.089 -1.682 0 0 0 0 0 0 0 +0.821 4.11 -1.69 0 0 0 0 0 0 0 +0.803 4.085 -1.678 0 0 0 0 0 0 0 +0.789 4.082 -1.676 0 0 0 0 0 0 0 +0.781 4.108 -1.686 0 0 0 0 0 0 0 +0.762 4.076 -1.671 0 0 0 0 0 0 0 +0.758 4.094 -1.678 0 0 0 0 0 0 0 +0.747 4.103 -1.681 0 0 0 0 0 0 0 +0.734 4.106 -1.681 0 0 0 0 0 0 0 +0.716 4.077 -1.668 0 0 0 0 0 0 0 +0.669 3.877 -1.579 0 0 0 0 0 0 0 +0.585 3.434 -1.385 0 0 0 0 0 0 0 +0.576 3.447 -1.39 0 0 0 0 0 0 0 +0.564 3.445 -1.388 0 0 0 0 0 0 0 +0.555 3.423 -1.378 0 0 0 0 0 0 0 +0.543 3.417 -1.375 0 0 0 0 0 0 0 +0.535 3.432 -1.38 0 0 0 0 0 0 0 +0.523 3.428 -1.378 0 0 0 0 0 0 0 +0.511 3.42 -1.374 0 0 0 0 0 0 0 +0.505 3.455 -1.388 0 0 0 0 0 0 0 +0.489 3.422 -1.373 0 0 0 0 0 0 0 +0.487 3.448 -1.384 0 0 0 0 0 0 0 +0.475 3.437 -1.379 0 0 0 0 0 0 0 +0.463 3.431 -1.376 0 0 0 0 0 0 0 +0.451 3.419 -1.37 0 0 0 0 0 0 0 +0.452 3.525 -1.415 0 0 0 0 0 0 0 +0.477 3.831 -1.547 0 0 0 0 0 0 0 +0.386 3.144 -1.249 0 0 0 0 0 0 0 +0.38 3.132 -1.243 0 0 0 0 0 0 0 +0.372 3.152 -1.251 0 0 0 0 0 0 0 +0.361 3.14 -1.246 0 0 0 0 0 0 0 +0.351 3.139 -1.245 0 0 0 0 0 0 0 +0.341 3.139 -1.244 0 0 0 0 0 0 0 +0.427 4.13 -1.673 0 0 0 0 0 0 0 +0.417 4.157 -1.684 0 0 0 0 0 0 0 +0.408 4.138 -1.676 0 0 0 0 0 0 0 +0.396 4.154 -1.682 0 0 0 0 0 0 0 +0.383 4.146 -1.678 0 0 0 0 0 0 0 +0.37 4.149 -1.679 0 0 0 0 0 0 0 +0.356 4.144 -1.676 0 0 0 0 0 0 0 +0.343 4.147 -1.677 0 0 0 0 0 0 0 +0.33 4.147 -1.676 0 0 0 0 0 0 0 +0.318 4.162 -1.683 0 0 0 0 0 0 0 +0.31 4.141 -1.673 0 0 0 0 0 0 0 +0.298 4.162 -1.682 0 0 0 0 0 0 0 +0.284 4.143 -1.673 0 0 0 0 0 0 0 +0.272 4.162 -1.681 0 0 0 0 0 0 0 +0.258 4.146 -1.674 0 0 0 0 0 0 0 +0.245 4.153 -1.676 0 0 0 0 0 0 0 +0.232 4.148 -1.674 0 0 0 0 0 0 0 +0.227 4.168 -1.683 0 0 0 0 0 0 0 +0.212 4.145 -1.673 0 0 0 0 0 0 0 +0.2 4.162 -1.68 0 0 0 0 0 0 0 +0.187 4.15 -1.674 0 0 0 0 0 0 0 +0.174 4.16 -1.678 0 0 0 0 0 0 0 +0.16 4.14 -1.669 0 0 0 0 0 0 0 +0.148 4.157 -1.676 0 0 0 0 0 0 0 +0.141 4.15 -1.673 0 0 0 0 0 0 0 +0.128 4.161 -1.678 0 0 0 0 0 0 0 +0.115 4.153 -1.674 0 0 0 0 0 0 0 +0.102 4.157 -1.676 0 0 0 0 0 0 0 +0.089 4.162 -1.678 0 0 0 0 0 0 0 +0.076 4.152 -1.673 0 0 0 0 0 0 0 +0.063 4.163 -1.678 0 0 0 0 0 0 0 +0.056 4.156 -1.675 0 0 0 0 0 0 0 +0.043 4.158 -1.676 0 0 0 0 0 0 0 +0.03 4.16 -1.676 0 0 0 0 0 0 0 +0.017 4.152 -1.673 0 0 0 0 0 0 0 +0.004 4.158 -1.676 0 0 0 0 0 0 0 +-0.009 4.165 -1.679 0 0 0 0 0 0 0 +-0.022 4.158 -1.676 0 0 0 0 0 0 0 +-0.035 4.158 -1.676 0 0 0 0 0 0 0 +-0.042 4.154 -1.674 0 0 0 0 0 0 0 +-0.055 4.163 -1.678 0 0 0 0 0 0 0 +-0.068 4.156 -1.675 0 0 0 0 0 0 0 +-0.081 4.157 -1.676 0 0 0 0 0 0 0 +-0.094 4.151 -1.673 0 0 0 0 0 0 0 +-0.107 4.164 -1.679 0 0 0 0 0 0 0 +-0.12 4.162 -1.678 0 0 0 0 0 0 0 +-0.127 4.167 -1.68 0 0 0 0 0 0 0 +-0.14 4.167 -1.68 0 0 0 0 0 0 0 +-0.153 4.151 -1.674 0 0 0 0 0 0 0 +-0.166 4.16 -1.678 0 0 0 0 0 0 0 +-0.179 4.152 -1.675 0 0 0 0 0 0 0 +-0.192 4.155 -1.676 0 0 0 0 0 0 0 +-0.205 4.155 -1.676 0 0 0 0 0 0 0 +-0.213 4.171 -1.684 0 0 0 0 0 0 0 +-0.225 4.157 -1.678 0 0 0 0 0 0 0 +-0.239 4.168 -1.683 0 0 0 0 0 0 0 +-0.251 4.16 -1.68 0 0 0 0 0 0 0 +-0.267 4.19 -1.693 0 0 0 0 0 0 0 +-0.282 4.224 -1.708 0 0 0 0 0 0 0 +-0.296 4.228 -1.711 0 0 0 0 0 0 0 +-0.301 4.21 -1.703 0 0 0 0 0 0 0 +-0.315 4.21 -1.703 0 0 0 0 0 0 0 +-0.328 4.217 -1.707 0 0 0 0 0 0 0 +-0.341 4.208 -1.703 0 0 0 0 0 0 0 +-0.355 4.215 -1.707 0 0 0 0 0 0 0 +-0.368 4.215 -1.707 0 0 0 0 0 0 0 +-0.382 4.22 -1.71 0 0 0 0 0 0 0 +-0.388 4.215 -1.708 0 0 0 0 0 0 0 +-0.402 4.218 -1.71 0 0 0 0 0 0 0 +-0.415 4.217 -1.71 0 0 0 0 0 0 0 +-0.43 4.232 -1.717 0 0 0 0 0 0 0 +-0.444 4.238 -1.72 0 0 0 0 0 0 0 +-0.456 4.22 -1.713 0 0 0 0 0 0 0 +-0.469 4.218 -1.713 0 0 0 0 0 0 0 +-0.483 4.22 -1.714 0 0 0 0 0 0 0 +-0.488 4.211 -1.711 0 0 0 0 0 0 0 +-0.504 4.233 -1.721 0 0 0 0 0 0 0 +-0.516 4.215 -1.714 0 0 0 0 0 0 0 +-0.533 4.242 -1.726 0 0 0 0 0 0 0 +-0.544 4.228 -1.721 0 0 0 0 0 0 0 +-0.558 4.226 -1.721 0 0 0 0 0 0 0 +-0.57 4.215 -1.717 0 0 0 0 0 0 0 +-0.579 4.234 -1.726 0 0 0 0 0 0 0 +-0.591 4.221 -1.721 0 0 0 0 0 0 0 +-0.607 4.241 -1.73 0 0 0 0 0 0 0 +-0.618 4.221 -1.722 0 0 0 0 0 0 0 +-0.634 4.239 -1.731 0 0 0 0 0 0 0 +-0.644 4.216 -1.722 0 0 0 0 0 0 0 +-0.662 4.243 -1.734 0 0 0 0 0 0 0 +-0.665 4.222 -1.726 0 0 0 0 0 0 0 +-0.68 4.228 -1.73 0 0 0 0 0 0 0 +-0.695 4.235 -1.734 0 0 0 0 0 0 0 +-0.707 4.224 -1.73 0 0 0 0 0 0 0 +-0.719 4.218 -1.728 0 0 0 0 0 0 0 +-0.736 4.234 -1.736 0 0 0 0 0 0 0 +-0.749 4.234 -1.737 0 0 0 0 0 0 0 +-0.764 4.237 -1.739 0 0 0 0 0 0 0 +-0.775 4.259 -1.749 0 0 0 0 0 0 0 +-0.789 4.258 -1.75 0 0 0 0 0 0 0 +-0.798 4.238 -1.742 0 0 0 0 0 0 0 +-0.812 4.235 -1.742 0 0 0 0 0 0 0 +-0.825 4.231 -1.741 0 0 0 0 0 0 0 +-0.839 4.232 -1.743 0 0 0 0 0 0 0 +-0.866 4.297 -1.773 0 0 0 0 0 0 0 +-0.878 4.319 -1.783 0 0 0 0 0 0 0 +-0.89 4.311 -1.781 0 0 0 0 0 0 0 +-0.899 4.289 -1.772 0 0 0 0 0 0 0 +-0.904 4.246 -1.755 0 0 0 0 0 0 0 +-0.918 4.244 -1.755 0 0 0 0 0 0 0 +-0.937 4.266 -1.766 0 0 0 0 0 0 0 +-0.943 4.232 -1.753 0 0 0 0 0 0 0 +-0.946 4.213 -1.745 0 0 0 0 0 0 0 +-0.96 4.217 -1.748 0 0 0 0 0 0 0 +-0.971 4.203 -1.743 0 0 0 0 0 0 0 +-0.988 4.216 -1.75 0 0 0 0 0 0 0 +-0.998 4.201 -1.745 0 0 0 0 0 0 0 +-1.012 4.199 -1.745 0 0 0 0 0 0 0 +-1.023 4.189 -1.742 0 0 0 0 0 0 0 +-1.03 4.187 -1.742 0 0 0 0 0 0 0 +-1.045 4.193 -1.746 0 0 0 0 0 0 0 +-1.056 4.181 -1.742 0 0 0 0 0 0 0 +-1.072 4.186 -1.746 0 0 0 0 0 0 0 +-1.085 4.185 -1.747 0 0 0 0 0 0 0 +-1.1 4.187 -1.749 0 0 0 0 0 0 0 +-1.114 4.185 -1.75 0 0 0 0 0 0 0 +-1.115 4.165 -1.742 0 0 0 0 0 0 0 +-1.128 4.16 -1.741 0 0 0 0 0 0 0 +-1.147 4.178 -1.751 0 0 0 0 0 0 0 +-1.155 4.155 -1.742 0 0 0 0 0 0 0 +-1.17 4.16 -1.746 0 0 0 0 0 0 0 +-1.18 4.144 -1.741 0 0 0 0 0 0 0 +-1.192 4.138 -1.74 0 0 0 0 0 0 0 +-1.194 4.122 -1.734 0 0 0 0 0 0 0 +-1.213 4.138 -1.742 0 0 0 0 0 0 0 +-1.225 4.129 -1.74 0 0 0 0 0 0 0 +-1.236 4.12 -1.737 0 0 0 0 0 0 0 +-1.263 4.162 -1.758 0 0 0 0 0 0 0 +-1.26 4.107 -1.735 0 0 0 0 0 0 0 +-1.273 4.103 -1.735 0 0 0 0 0 0 0 +-1.294 4.125 -1.747 0 0 0 0 0 0 0 +-1.293 4.098 -1.736 0 0 0 0 0 0 0 +-1.307 4.098 -1.737 0 0 0 0 0 0 0 +-1.327 4.115 -1.747 0 0 0 0 0 0 0 +-1.334 4.095 -1.74 0 0 0 0 0 0 0 +-1.348 4.094 -1.741 0 0 0 0 0 0 0 +-1.37 4.116 -1.753 0 0 0 0 0 0 0 +-1.373 4.084 -1.741 0 0 0 0 0 0 0 +-1.385 4.095 -1.747 0 0 0 0 0 0 0 +-1.4 4.098 -1.75 0 0 0 0 0 0 0 +-1.405 4.071 -1.74 0 0 0 0 0 0 0 +-1.42 4.074 -1.743 0 0 0 0 0 0 0 +-1.439 4.086 -1.751 0 0 0 0 0 0 0 +-1.448 4.071 -1.746 0 0 0 0 0 0 0 +-1.465 4.077 -1.751 0 0 0 0 0 0 0 +-1.474 4.082 -1.754 0 0 0 0 0 0 0 +-1.485 4.074 -1.753 0 0 0 0 0 0 0 +-1.492 4.052 -1.745 0 0 0 0 0 0 0 +-1.517 4.082 -1.76 0 0 0 0 0 0 0 +-1.516 4.041 -1.744 0 0 0 0 0 0 0 +-1.535 4.051 -1.751 0 0 0 0 0 0 0 +-1.546 4.043 -1.749 0 0 0 0 0 0 0 +-1.549 4.03 -1.745 0 0 0 0 0 0 0 +-1.561 4.026 -1.745 0 0 0 0 0 0 0 +-1.578 4.031 -1.749 0 0 0 0 0 0 0 +-1.583 4.007 -1.741 0 0 0 0 0 0 0 +-1.597 4.006 -1.742 0 0 0 0 0 0 0 +-1.613 4.007 -1.745 0 0 0 0 0 0 0 +-1.622 3.995 -1.742 0 0 0 0 0 0 0 +-1.641 4.004 -1.749 0 0 0 0 0 0 0 +-1.643 3.993 -1.745 0 0 0 0 0 0 0 +-1.654 3.983 -1.742 0 0 0 0 0 0 0 +-1.673 3.993 -1.749 0 0 0 0 0 0 0 +-1.687 3.991 -1.751 0 0 0 0 0 0 0 +-1.696 3.979 -1.748 0 0 0 0 0 0 0 +-1.706 3.966 -1.745 0 0 0 0 0 0 0 +-1.723 3.971 -1.749 0 0 0 0 0 0 0 +-1.724 3.958 -1.745 0 0 0 0 0 0 0 +-1.738 3.956 -1.746 0 0 0 0 0 0 0 +-1.755 3.959 -1.75 0 0 0 0 0 0 0 +-1.769 3.959 -1.753 0 0 0 0 0 0 0 +-1.776 3.94 -1.746 0 0 0 0 0 0 0 +-1.794 3.947 -1.753 0 0 0 0 0 0 0 +-1.802 3.932 -1.748 0 0 0 0 0 0 0 +-1.806 3.924 -1.745 0 0 0 0 0 0 0 +-1.825 3.933 -1.753 0 0 0 0 0 0 0 +-1.832 3.916 -1.747 0 0 0 0 0 0 0 +-1.846 3.913 -1.749 0 0 0 0 0 0 0 +-1.864 3.919 -1.754 0 0 0 0 0 0 0 +-1.87 3.9 -1.748 0 0 0 0 0 0 0 +-1.884 3.899 -1.75 0 0 0 0 0 0 0 +-1.895 3.906 -1.755 0 0 0 0 0 0 0 +-1.897 3.879 -1.745 0 0 0 0 0 0 0 +-1.911 3.876 -1.746 0 0 0 0 0 0 0 +-1.928 3.88 -1.751 0 0 0 0 0 0 0 +-1.937 3.869 -1.749 0 0 0 0 0 0 0 +-1.948 3.86 -1.747 0 0 0 0 0 0 0 +-1.973 3.878 -1.759 0 0 0 0 0 0 0 +-1.973 3.849 -1.748 0 0 0 0 0 0 0 +-1.983 3.854 -1.752 0 0 0 0 0 0 0 +-1.997 3.851 -1.753 0 0 0 0 0 0 0 +-2.002 3.832 -1.747 0 0 0 0 0 0 0 +-2.016 3.829 -1.749 0 0 0 0 0 0 0 +-2.034 3.833 -1.754 0 0 0 0 0 0 0 +-2.047 3.829 -1.755 0 0 0 0 0 0 0 +-2.053 3.811 -1.749 0 0 0 0 0 0 0 +-2.065 3.819 -1.755 0 0 0 0 0 0 0 +-2.069 3.798 -1.748 0 0 0 0 0 0 0 +-2.08 3.79 -1.747 0 0 0 0 0 0 0 +-2.093 3.785 -1.748 0 0 0 0 0 0 0 +-2.102 3.774 -1.745 0 0 0 0 0 0 0 +-2.112 3.764 -1.744 0 0 0 0 0 0 0 +-2.132 3.771 -1.751 0 0 0 0 0 0 0 +-2.129 3.752 -1.743 0 0 0 0 0 0 0 +-2.151 3.763 -1.752 0 0 0 0 0 0 0 +-2.157 3.747 -1.747 0 0 0 0 0 0 0 +-2.169 3.74 -1.747 0 0 0 0 0 0 0 +-2.175 3.724 -1.742 0 0 0 0 0 0 0 +-2.202 3.742 -1.755 0 0 0 0 0 0 0 +-2.197 3.708 -1.741 0 0 0 0 0 0 0 +-2.217 3.728 -1.753 0 0 0 0 0 0 0 +-2.222 3.71 -1.748 0 0 0 0 0 0 0 +-2.227 3.692 -1.742 0 0 0 0 0 0 0 +-2.235 3.679 -1.739 0 0 0 0 0 0 0 +-2.248 3.674 -1.74 0 0 0 0 0 0 0 +-2.258 3.665 -1.739 0 0 0 0 0 0 0 +-2.281 3.677 -1.749 0 0 0 0 0 0 0 +-2.295 3.672 -1.75 0 0 0 0 0 0 0 +-2.312 3.686 -1.759 0 0 0 0 0 0 0 +-2.324 3.68 -1.76 0 0 0 0 0 0 0 +-2.337 3.674 -1.76 0 0 0 0 0 0 0 +-2.334 3.645 -1.749 0 0 0 0 0 0 0 +-2.344 3.635 -1.748 0 0 0 0 0 0 0 +-2.354 3.626 -1.747 0 0 0 0 0 0 0 +-2.365 3.619 -1.747 0 0 0 0 0 0 0 +-2.367 3.609 -1.744 0 0 0 0 0 0 0 +-2.388 3.615 -1.751 0 0 0 0 0 0 0 +-2.402 3.612 -1.753 0 0 0 0 0 0 0 +-2.42 3.615 -1.759 0 0 0 0 0 0 0 +-2.425 3.597 -1.753 0 0 0 0 0 0 0 +-2.435 3.588 -1.753 0 0 0 0 0 0 0 +-2.442 3.574 -1.749 0 0 0 0 0 0 0 +-2.445 3.567 -1.748 0 0 0 0 0 0 0 +-2.453 3.555 -1.745 0 0 0 0 0 0 0 +-2.463 3.544 -1.744 0 0 0 0 0 0 0 +-2.484 3.552 -1.752 0 0 0 0 0 0 0 +-2.506 3.559 -1.76 0 0 0 0 0 0 0 +-2.497 3.523 -1.745 0 0 0 0 0 0 0 +-2.515 3.525 -1.75 0 0 0 0 0 0 0 +-2.513 3.511 -1.745 0 0 0 0 0 0 0 +-2.541 3.525 -1.756 0 0 0 0 0 0 0 +-2.535 3.495 -1.745 0 0 0 0 0 0 0 +-2.564 3.511 -1.757 0 0 0 0 0 0 0 +-2.561 3.483 -1.747 0 0 0 0 0 0 0 +-2.58 3.487 -1.753 0 0 0 0 0 0 0 +-2.58 3.464 -1.745 0 0 0 0 0 0 0 +-2.591 3.456 -1.745 0 0 0 0 0 0 0 +-2.598 3.453 -1.746 0 0 0 0 0 0 0 +-2.623 3.464 -1.756 0 0 0 0 0 0 0 +-2.615 3.431 -1.743 0 0 0 0 0 0 0 +-2.627 3.424 -1.744 0 0 0 0 0 0 0 +-2.635 3.413 -1.742 0 0 0 0 0 0 0 +-2.657 3.419 -1.75 0 0 0 0 0 0 0 +-2.651 3.389 -1.738 0 0 0 0 0 0 0 +-2.66 3.39 -1.741 0 0 0 0 0 0 0 +-0.909 1.124 -0.506 0 0 0 0 0 0 0 +-3.258 2.858 -1.752 0 0 0 0 0 0 0 +-3.283 2.861 -1.76 0 0 0 0 0 0 0 +-3.288 2.857 -1.761 0 0 0 0 0 0 0 +-3.267 2.821 -1.744 0 0 0 0 0 0 0 +-3.295 2.827 -1.755 0 0 0 0 0 0 0 +-3.297 2.811 -1.751 0 0 0 0 0 0 0 +-3.3 2.796 -1.748 0 0 0 0 0 0 0 +-3.319 2.793 -1.753 0 0 0 0 0 0 0 +-3.337 2.791 -1.759 0 0 0 0 0 0 0 +-3.34 2.776 -1.756 0 0 0 0 0 0 0 +-3.353 2.778 -1.76 0 0 0 0 0 0 0 +-3.361 2.766 -1.76 0 0 0 0 0 0 0 +-3.366 2.753 -1.758 0 0 0 0 0 0 0 +-3.378 2.745 -1.76 0 0 0 0 0 0 0 +-3.374 2.724 -1.753 0 0 0 0 0 0 0 +-3.382 2.713 -1.753 0 0 0 0 0 0 0 +-3.394 2.705 -1.754 0 0 0 0 0 0 0 +-3.404 2.704 -1.757 0 0 0 0 0 0 0 +-3.406 2.689 -1.754 0 0 0 0 0 0 0 +-3.415 2.678 -1.754 0 0 0 0 0 0 0 +-3.416 2.662 -1.75 0 0 0 0 0 0 0 +-3.439 2.662 -1.758 0 0 0 0 0 0 0 +-3.449 2.653 -1.759 0 0 0 0 0 0 0 +-3.455 2.641 -1.758 0 0 0 0 0 0 0 +-3.465 2.64 -1.761 0 0 0 0 0 0 0 +-3.481 2.634 -1.765 0 0 0 0 0 0 0 +-3.48 2.617 -1.76 0 0 0 0 0 0 0 +-3.492 2.608 -1.762 0 0 0 0 0 0 0 +-3.506 2.601 -1.765 0 0 0 0 0 0 0 +-3.509 2.587 -1.763 0 0 0 0 0 0 0 +-3.518 2.576 -1.763 0 0 0 0 0 0 0 +-3.513 2.564 -1.758 0 0 0 0 0 0 0 +-3.525 2.556 -1.76 0 0 0 0 0 0 0 +-3.53 2.543 -1.759 0 0 0 0 0 0 0 +-3.537 2.531 -1.758 0 0 0 0 0 0 0 +-3.567 2.536 -1.77 0 0 0 0 0 0 0 +-3.562 2.515 -1.763 0 0 0 0 0 0 0 +-3.56 2.497 -1.758 0 0 0 0 0 0 0 +-3.57 2.496 -1.761 0 0 0 0 0 0 0 +-3.569 2.479 -1.756 0 0 0 0 0 0 0 +-3.594 2.479 -1.765 0 0 0 0 0 0 0 +-3.594 2.462 -1.761 0 0 0 0 0 0 0 +-3.597 2.448 -1.759 0 0 0 0 0 0 0 +-3.598 2.432 -1.756 0 0 0 0 0 0 0 +-3.605 2.42 -1.755 0 0 0 0 0 0 0 +-3.621 2.415 -1.76 0 0 0 0 0 0 0 +-3.614 2.402 -1.754 0 0 0 0 0 0 0 +-3.64 2.403 -1.764 0 0 0 0 0 0 0 +-3.634 2.382 -1.756 0 0 0 0 0 0 0 +-3.649 2.376 -1.76 0 0 0 0 0 0 0 +-3.649 2.359 -1.756 0 0 0 0 0 0 0 +-3.67 2.357 -1.764 0 0 0 0 0 0 0 +-3.667 2.338 -1.758 0 0 0 0 0 0 0 +-3.661 2.327 -1.753 0 0 0 0 0 0 0 +-3.671 2.317 -1.755 0 0 0 0 0 0 0 +-3.677 2.305 -1.754 0 0 0 0 0 0 0 +-3.683 2.292 -1.753 0 0 0 0 0 0 0 +-3.701 2.287 -1.759 0 0 0 0 0 0 0 +-3.703 2.273 -1.756 0 0 0 0 0 0 0 +-3.731 2.273 -1.767 0 0 0 0 0 0 0 +-3.714 2.255 -1.756 0 0 0 0 0 0 0 +-3.724 2.246 -1.758 0 0 0 0 0 0 0 +-3.727 2.231 -1.756 0 0 0 0 0 0 0 +-3.732 2.218 -1.755 0 0 0 0 0 0 0 +-3.742 2.209 -1.756 0 0 0 0 0 0 0 +-3.755 2.2 -1.76 0 0 0 0 0 0 0 +-3.761 2.188 -1.759 0 0 0 0 0 0 0 +-3.758 2.178 -1.756 0 0 0 0 0 0 0 +-3.765 2.166 -1.756 0 0 0 0 0 0 0 +-3.778 2.158 -1.759 0 0 0 0 0 0 0 +-3.788 2.148 -1.76 0 0 0 0 0 0 0 +-3.804 2.141 -1.765 0 0 0 0 0 0 0 +-3.795 2.121 -1.757 0 0 0 0 0 0 0 +-3.795 2.105 -1.754 0 0 0 0 0 0 0 +-3.805 2.095 -1.756 0 0 0 0 0 0 0 +-3.808 2.089 -1.756 0 0 0 0 0 0 0 +-3.816 2.078 -1.756 0 0 0 0 0 0 0 +-3.832 2.071 -1.761 0 0 0 0 0 0 0 +-3.834 2.056 -1.759 0 0 0 0 0 0 0 +-3.834 2.041 -1.756 0 0 0 0 0 0 0 +-3.844 2.031 -1.757 0 0 0 0 0 0 0 +-3.845 2.016 -1.755 0 0 0 0 0 0 0 +-3.861 2.017 -1.761 0 0 0 0 0 0 0 +-3.868 2.005 -1.761 0 0 0 0 0 0 0 +-3.871 1.991 -1.76 0 0 0 0 0 0 0 +-3.869 1.974 -1.756 0 0 0 0 0 0 0 +-3.896 1.973 -1.766 0 0 0 0 0 0 0 +-3.871 1.945 -1.751 0 0 0 0 0 0 0 +-3.89 1.939 -1.757 0 0 0 0 0 0 0 +-3.892 1.933 -1.756 0 0 0 0 0 0 0 +-3.891 1.917 -1.753 0 0 0 0 0 0 0 +-3.897 1.905 -1.753 0 0 0 0 0 0 0 +-3.819 -2.256 -1.795 0 0 0 0 0 0 0 +-3.816 -2.271 -1.798 0 0 0 0 0 0 0 +-3.806 -2.281 -1.796 0 0 0 0 0 0 0 +-3.826 -2.309 -1.81 0 0 0 0 0 0 0 +-3.793 -2.305 -1.797 0 0 0 0 0 0 0 +-3.796 -2.315 -1.8 0 0 0 0 0 0 0 +-3.778 -2.32 -1.794 0 0 0 0 0 0 0 +-3.764 -2.328 -1.791 0 0 0 0 0 0 0 +-3.772 -2.35 -1.799 0 0 0 0 0 0 0 +-3.749 -2.352 -1.791 0 0 0 0 0 0 0 +-3.761 -2.376 -1.801 0 0 0 0 0 0 0 +-3.752 -2.386 -1.8 0 0 0 0 0 0 0 +-3.74 -2.387 -1.796 0 0 0 0 0 0 0 +-3.743 -2.406 -1.802 0 0 0 0 0 0 0 +-3.719 -2.407 -1.793 0 0 0 0 0 0 0 +-3.73 -2.431 -1.802 0 0 0 0 0 0 0 +-3.717 -2.439 -1.8 0 0 0 0 0 0 0 +-3.717 -2.456 -1.804 0 0 0 0 0 0 0 +-3.699 -2.46 -1.798 0 0 0 0 0 0 0 +-3.687 -2.469 -1.796 0 0 0 0 0 0 0 +-3.692 -2.481 -1.801 0 0 0 0 0 0 0 +-3.677 -2.487 -1.797 0 0 0 0 0 0 0 +-3.67 -2.5 -1.798 0 0 0 0 0 0 0 +-3.662 -2.511 -1.798 0 0 0 0 0 0 0 +-3.654 -2.523 -1.798 0 0 0 0 0 0 0 +-3.638 -2.528 -1.793 0 0 0 0 0 0 0 +-3.646 -2.551 -1.802 0 0 0 0 0 0 0 +-3.642 -2.557 -1.802 0 0 0 0 0 0 0 +-3.625 -2.562 -1.797 0 0 0 0 0 0 0 +-3.621 -2.576 -1.799 0 0 0 0 0 0 0 +-3.609 -2.585 -1.797 0 0 0 0 0 0 0 +-3.613 -2.605 -1.803 0 0 0 0 0 0 0 +-3.603 -2.615 -1.802 0 0 0 0 0 0 0 +-3.596 -2.627 -1.803 0 0 0 0 0 0 0 +-3.573 -2.619 -1.793 0 0 0 0 0 0 0 +-3.582 -2.643 -1.802 0 0 0 0 0 0 0 +-3.571 -2.652 -1.801 0 0 0 0 0 0 0 +-3.557 -2.659 -1.798 0 0 0 0 0 0 0 +-3.56 -2.679 -1.804 0 0 0 0 0 0 0 +-3.55 -2.689 -1.803 0 0 0 0 0 0 0 +-3.543 -2.701 -1.804 0 0 0 0 0 0 0 +-3.542 -2.709 -1.806 0 0 0 0 0 0 0 +-3.538 -2.724 -1.808 0 0 0 0 0 0 0 +-3.522 -2.729 -1.804 0 0 0 0 0 0 0 +-3.526 -2.75 -1.811 0 0 0 0 0 0 0 +-3.516 -2.76 -1.81 0 0 0 0 0 0 0 +-3.523 -2.784 -1.819 0 0 0 0 0 0 0 +-3.502 -2.785 -1.812 0 0 0 0 0 0 0 +-3.493 -2.787 -1.81 0 0 0 0 0 0 0 +-3.486 -2.799 -1.81 0 0 0 0 0 0 0 +-3.49 -2.82 -1.817 0 0 0 0 0 0 0 +-3.476 -2.828 -1.815 0 0 0 0 0 0 0 +-3.473 -2.843 -1.818 0 0 0 0 0 0 0 +-3.469 -2.858 -1.821 0 0 0 0 0 0 0 +-3.448 -2.859 -1.814 0 0 0 0 0 0 0 +-3.435 -2.857 -1.81 0 0 0 0 0 0 0 +-3.396 -2.842 -1.792 0 0 0 0 0 0 0 +-3.363 -2.832 -1.779 0 0 0 0 0 0 0 +-3.373 -2.86 -1.79 0 0 0 0 0 0 0 +-3.382 -2.886 -1.8 0 0 0 0 0 0 0 +-3.375 -2.898 -1.801 0 0 0 0 0 0 0 +-3.379 -2.92 -1.809 0 0 0 0 0 0 0 +-3.38 -2.931 -1.812 0 0 0 0 0 0 0 +-3.386 -2.954 -1.821 0 0 0 0 0 0 0 +-3.378 -2.966 -1.821 0 0 0 0 0 0 0 +-3.361 -2.97 -1.817 0 0 0 0 0 0 0 +-3.326 -2.957 -1.802 0 0 0 0 0 0 0 +-3.304 -2.956 -1.794 0 0 0 0 0 0 0 +-3.303 -2.974 -1.799 0 0 0 0 0 0 0 +-3.296 -2.987 -1.801 0 0 0 0 0 0 0 +-3.287 -2.988 -1.798 0 0 0 0 0 0 0 +-3.286 -3.006 -1.803 0 0 0 0 0 0 0 +-3.275 -3.015 -1.802 0 0 0 0 0 0 0 +-3.252 -3.013 -1.794 0 0 0 0 0 0 0 +-3.262 -3.041 -1.806 0 0 0 0 0 0 0 +-3.229 -3.029 -1.792 0 0 0 0 0 0 0 +-3.221 -3.041 -1.793 0 0 0 0 0 0 0 +-3.214 -3.043 -1.791 0 0 0 0 0 0 0 +-3.208 -3.057 -1.794 0 0 0 0 0 0 0 +-3.193 -3.062 -1.791 0 0 0 0 0 0 0 +-3.184 -3.072 -1.791 0 0 0 0 0 0 0 +-3.165 -3.073 -1.785 0 0 0 0 0 0 0 +-3.158 -3.086 -1.787 0 0 0 0 0 0 0 +-3.149 -3.097 -1.787 0 0 0 0 0 0 0 +-3.138 -3.095 -1.783 0 0 0 0 0 0 0 +-3.137 -3.114 -1.789 0 0 0 0 0 0 0 +-3.129 -3.125 -1.79 0 0 0 0 0 0 0 +-3.118 -3.134 -1.789 0 0 0 0 0 0 0 +-3.112 -3.148 -1.791 0 0 0 0 0 0 0 +-3.098 -3.153 -1.789 0 0 0 0 0 0 0 +-3.11 -3.186 -1.802 0 0 0 0 0 0 0 +-3.084 -3.169 -1.79 0 0 0 0 0 0 0 +-3.072 -3.176 -1.788 0 0 0 0 0 0 0 +-3.064 -3.189 -1.79 0 0 0 0 0 0 0 +-3.053 -3.197 -1.789 0 0 0 0 0 0 0 +-3.038 -3.201 -1.786 0 0 0 0 0 0 0 +-3.024 -3.207 -1.783 0 0 0 0 0 0 0 +-3.03 -3.234 -1.794 0 0 0 0 0 0 0 +-3.033 -3.246 -1.798 0 0 0 0 0 0 0 +-3.014 -3.246 -1.793 0 0 0 0 0 0 0 +-3.004 -3.256 -1.793 0 0 0 0 0 0 0 +-2.998 -3.271 -1.796 0 0 0 0 0 0 0 +-2.986 -3.277 -1.794 0 0 0 0 0 0 0 +-2.964 -3.275 -1.787 0 0 0 0 0 0 0 +-2.983 -3.317 -1.806 0 0 0 0 0 0 0 +-2.951 -3.291 -1.789 0 0 0 0 0 0 0 +-2.938 -3.298 -1.787 0 0 0 0 0 0 0 +-2.941 -3.322 -1.796 0 0 0 0 0 0 0 +-2.909 -3.306 -1.782 0 0 0 0 0 0 0 +-2.896 -3.313 -1.78 0 0 0 0 0 0 0 +-2.879 -3.313 -1.775 0 0 0 0 0 0 0 +-2.315 -3.813 -1.806 0 0 0 0 0 0 0 +-2.301 -3.804 -1.8 0 0 0 0 0 0 0 +-2.278 -3.793 -1.791 0 0 0 0 0 0 0 +-2.262 -3.793 -1.787 0 0 0 0 0 0 0 +-2.249 -3.797 -1.786 0 0 0 0 0 0 0 +-2.238 -3.806 -1.787 0 0 0 0 0 0 0 +-2.223 -3.808 -1.784 0 0 0 0 0 0 0 +-2.22 -3.831 -1.792 0 0 0 0 0 0 0 +-2.212 -3.831 -1.791 0 0 0 0 0 0 0 +-2.197 -3.832 -1.787 0 0 0 0 0 0 0 +-2.193 -3.855 -1.795 0 0 0 0 0 0 0 +-2.174 -3.849 -1.789 0 0 0 0 0 0 0 +-2.165 -3.861 -1.791 0 0 0 0 0 0 0 +-2.154 -3.871 -1.793 0 0 0 0 0 0 0 +-2.135 -3.864 -1.787 0 0 0 0 0 0 0 +-2.131 -3.871 -1.788 0 0 0 0 0 0 0 +-2.12 -3.879 -1.789 0 0 0 0 0 0 0 +-2.118 -3.905 -1.798 0 0 0 0 0 0 0 +-2.105 -3.91 -1.798 0 0 0 0 0 0 0 +-2.107 -3.945 -1.811 0 0 0 0 0 0 0 +-2.113 -3.987 -1.829 0 0 0 0 0 0 0 +-2.039 -3.875 -1.771 0 0 0 0 0 0 0 +-2.044 -3.899 -1.781 0 0 0 0 0 0 0 +-2.017 -3.878 -1.768 0 0 0 0 0 0 0 +-2.007 -3.887 -1.769 0 0 0 0 0 0 0 +-2.014 -3.931 -1.787 0 0 0 0 0 0 0 +-1.997 -3.929 -1.783 0 0 0 0 0 0 0 +-1.985 -3.936 -1.783 0 0 0 0 0 0 0 +-1.968 -3.934 -1.779 0 0 0 0 0 0 0 +-1.959 -3.93 -1.776 0 0 0 0 0 0 0 +-1.957 -3.958 -1.787 0 0 0 0 0 0 0 +-1.945 -3.965 -1.787 0 0 0 0 0 0 0 +-1.924 -3.953 -1.779 0 0 0 0 0 0 0 +-1.913 -3.963 -1.78 0 0 0 0 0 0 0 +-1.897 -3.96 -1.776 0 0 0 0 0 0 0 +-1.887 -3.971 -1.779 0 0 0 0 0 0 0 +-1.862 -3.95 -1.766 0 0 0 0 0 0 0 +-1.864 -3.972 -1.775 0 0 0 0 0 0 0 +-1.843 -3.958 -1.765 0 0 0 0 0 0 0 +-1.836 -3.977 -1.772 0 0 0 0 0 0 0 +-1.816 -3.966 -1.764 0 0 0 0 0 0 0 +-1.809 -3.983 -1.769 0 0 0 0 0 0 0 +-1.791 -3.977 -1.764 0 0 0 0 0 0 0 +-1.779 -3.983 -1.764 0 0 0 0 0 0 0 +-1.768 -3.975 -1.759 0 0 0 0 0 0 0 +-1.758 -3.988 -1.762 0 0 0 0 0 0 0 +-1.744 -3.988 -1.76 0 0 0 0 0 0 0 +-1.733 -3.999 -1.762 0 0 0 0 0 0 0 +-1.716 -3.992 -1.756 0 0 0 0 0 0 0 +-1.708 -4.008 -1.761 0 0 0 0 0 0 0 +-1.694 -4.011 -1.76 0 0 0 0 0 0 0 +-1.682 -3.999 -1.753 0 0 0 0 0 0 0 +-1.664 -3.992 -1.748 0 0 0 0 0 0 0 +-1.659 -4.016 -1.756 0 0 0 0 0 0 0 +-1.642 -4.009 -1.751 0 0 0 0 0 0 0 +-1.627 -4.009 -1.749 0 0 0 0 0 0 0 +-1.621 -4.031 -1.756 0 0 0 0 0 0 0 +-1.599 -4.013 -1.745 0 0 0 0 0 0 0 +-1.599 -4.031 -1.753 0 0 0 0 0 0 0 +-1.586 -4.034 -1.752 0 0 0 0 0 0 0 +-1.566 -4.022 -1.744 0 0 0 0 0 0 0 +-1.56 -4.042 -1.751 0 0 0 0 0 0 0 +-1.549 -4.052 -1.753 0 0 0 0 0 0 0 +-1.532 -4.047 -1.749 0 0 0 0 0 0 0 +-1.517 -4.044 -1.745 0 0 0 0 0 0 0 +-1.515 -4.059 -1.751 0 0 0 0 0 0 0 +-1.497 -4.048 -1.744 0 0 0 0 0 0 0 +-1.488 -4.063 -1.749 0 0 0 0 0 0 0 +-1.472 -4.059 -1.745 0 0 0 0 0 0 0 +-1.457 -4.057 -1.741 0 0 0 0 0 0 0 +-1.449 -4.075 -1.748 0 0 0 0 0 0 0 +-1.432 -4.068 -1.742 0 0 0 0 0 0 0 +-1.423 -4.063 -1.739 0 0 0 0 0 0 0 +-1.41 -4.066 -1.738 0 0 0 0 0 0 0 +-1.4 -4.079 -1.742 0 0 0 0 0 0 0 +-1.383 -4.073 -1.737 0 0 0 0 0 0 0 +-1.372 -4.082 -1.74 0 0 0 0 0 0 0 +-1.36 -4.088 -1.741 0 0 0 0 0 0 0 +-1.34 -4.072 -1.731 0 0 0 0 0 0 0 +-1.341 -4.095 -1.741 0 0 0 0 0 0 0 +-1.33 -4.104 -1.743 0 0 0 0 0 0 0 +-1.31 -4.087 -1.734 0 0 0 0 0 0 0 +-1.302 -4.105 -1.74 0 0 0 0 0 0 0 +-1.289 -4.111 -1.741 0 0 0 0 0 0 0 +-1.268 -4.087 -1.728 0 0 0 0 0 0 0 +-1.259 -4.105 -1.734 0 0 0 0 0 0 0 +-1.255 -4.114 -1.737 0 0 0 0 0 0 0 +-1.239 -4.109 -1.734 0 0 0 0 0 0 0 +-1.227 -4.115 -1.734 0 0 0 0 0 0 0 +-1.215 -4.122 -1.736 0 0 0 0 0 0 0 +-1.196 -4.107 -1.727 0 0 0 0 0 0 0 +-1.185 -4.116 -1.73 0 0 0 0 0 0 0 +-1.175 -4.128 -1.734 0 0 0 0 0 0 0 +-1.165 -4.119 -1.729 0 0 0 0 0 0 0 +-1.151 -4.118 -1.726 0 0 0 0 0 0 0 +-1.14 -4.128 -1.73 0 0 0 0 0 0 0 +-1.126 -4.13 -1.729 0 0 0 0 0 0 0 +-1.111 -4.125 -1.725 0 0 0 0 0 0 0 +-1.103 -4.146 -1.733 0 0 0 0 0 0 0 +-1.086 -4.135 -1.726 0 0 0 0 0 0 0 +-1.082 -4.146 -1.73 0 0 0 0 0 0 0 +-1.067 -4.142 -1.727 0 0 0 0 0 0 0 +-1.055 -4.149 -1.729 0 0 0 0 0 0 0 +-1.041 -4.149 -1.727 0 0 0 0 0 0 0 +-1.029 -4.156 -1.729 0 0 0 0 0 0 0 +-1.018 -4.169 -1.734 0 0 0 0 0 0 0 +-1.002 -4.16 -1.728 0 0 0 0 0 0 0 +-0.994 -4.155 -1.725 0 0 0 0 0 0 0 +-0.982 -4.165 -1.728 0 0 0 0 0 0 0 +-0.968 -4.163 -1.726 0 0 0 0 0 0 0 +-0.956 -4.171 -1.728 0 0 0 0 0 0 0 +-0.946 -4.185 -1.733 0 0 0 0 0 0 0 +-0.931 -4.18 -1.73 0 0 0 0 0 0 0 +-0.918 -4.185 -1.73 0 0 0 0 0 0 0 +-0.908 -4.17 -1.723 0 0 0 0 0 0 0 +-0.898 -4.186 -1.729 0 0 0 0 0 0 0 +-0.887 -4.199 -1.734 0 0 0 0 0 0 0 +-0.869 -4.179 -1.723 0 0 0 0 0 0 0 +-0.858 -4.192 -1.728 0 0 0 0 0 0 0 +-0.847 -4.206 -1.733 0 0 0 0 0 0 0 +-0.83 -4.19 -1.725 0 0 0 0 0 0 0 +-0.818 -4.197 -1.726 0 0 0 0 0 0 0 +-0.813 -4.209 -1.731 0 0 0 0 0 0 0 +-0.799 -4.208 -1.73 0 0 0 0 0 0 0 +-0.785 -4.206 -1.728 0 0 0 0 0 0 0 +-0.771 -4.205 -1.726 0 0 0 0 0 0 0 +-0.758 -4.206 -1.726 0 0 0 0 0 0 0 +-0.745 -4.21 -1.726 0 0 0 0 0 0 0 +-0.733 -4.221 -1.73 0 0 0 0 0 0 0 +-0.726 -4.219 -1.729 0 0 0 0 0 0 0 +-0.713 -4.221 -1.729 0 0 0 0 0 0 0 +-0.702 -4.242 -1.737 0 0 0 0 0 0 0 +-0.687 -4.229 -1.73 0 0 0 0 0 0 0 +-0.672 -4.224 -1.727 0 0 0 0 0 0 0 +-0.658 -4.219 -1.724 0 0 0 0 0 0 0 +-0.653 -4.231 -1.729 0 0 0 0 0 0 0 +-0.639 -4.229 -1.727 0 0 0 0 0 0 0 +-0.627 -4.24 -1.731 0 0 0 0 0 0 0 +-0.614 -4.246 -1.733 0 0 0 0 0 0 0 +-0.601 -4.246 -1.732 0 0 0 0 0 0 0 +-0.585 -4.233 -1.726 0 0 0 0 0 0 0 +-0.573 -4.242 -1.729 0 0 0 0 0 0 0 +-0.56 -4.246 -1.73 0 0 0 0 0 0 0 +-0.553 -4.247 -1.73 0 0 0 0 0 0 0 +-0.54 -4.25 -1.73 0 0 0 0 0 0 0 +-0.527 -4.254 -1.731 0 0 0 0 0 0 0 +-0.514 -4.259 -1.733 0 0 0 0 0 0 0 +-0.501 -4.261 -1.733 0 0 0 0 0 0 0 +-0.487 -4.259 -1.731 0 0 0 0 0 0 0 +-0.474 -4.264 -1.733 0 0 0 0 0 0 0 +-0.467 -4.265 -1.733 0 0 0 0 0 0 0 +-0.454 -4.272 -1.735 0 0 0 0 0 0 0 +-0.442 -4.28 -1.738 0 0 0 0 0 0 0 +-0.426 -4.262 -1.73 0 0 0 0 0 0 0 +-0.414 -4.276 -1.735 0 0 0 0 0 0 0 +-0.4 -4.275 -1.734 0 0 0 0 0 0 0 +-0.386 -4.269 -1.731 0 0 0 0 0 0 0 +-0.381 -4.288 -1.739 0 0 0 0 0 0 0 +-0.366 -4.263 -1.728 0 0 0 0 0 0 0 +-0.354 -4.288 -1.738 0 0 0 0 0 0 0 +-0.339 -4.269 -1.73 0 0 0 0 0 0 0 +-0.327 -4.294 -1.74 0 0 0 0 0 0 0 +-0.313 -4.279 -1.733 0 0 0 0 0 0 0 +-0.301 -4.302 -1.742 0 0 0 0 0 0 0 +-0.293 -4.287 -1.736 0 0 0 0 0 0 0 +-0.281 -4.303 -1.742 0 0 0 0 0 0 0 +-0.266 -4.278 -1.731 0 0 0 0 0 0 0 +-0.253 -4.297 -1.739 0 0 0 0 0 0 0 +-0.239 -4.28 -1.731 0 0 0 0 0 0 0 +-0.226 -4.297 -1.738 0 0 0 0 0 0 0 +-0.213 -4.298 -1.738 0 0 0 0 0 0 0 +-0.206 -4.3 -1.739 0 0 0 0 0 0 0 +-0.192 -4.29 -1.734 0 0 0 0 0 0 0 +-0.179 -4.31 -1.743 0 0 0 0 0 0 0 +-0.165 -4.278 -1.729 0 0 0 0 0 0 0 +-0.152 -4.297 -1.737 0 0 0 0 0 0 0 +-0.138 -4.303 -1.739 0 0 0 0 0 0 0 +-0.125 -4.301 -1.738 0 0 0 0 0 0 0 +-0.118 -4.29 -1.734 0 0 0 0 0 0 0 +-0.105 -4.311 -1.742 0 0 0 0 0 0 0 +-0.091 -4.291 -1.734 0 0 0 0 0 0 0 +-0.078 -4.313 -1.743 0 0 0 0 0 0 0 +-0.064 -4.299 -1.737 0 0 0 0 0 0 0 +-0.05 -4.294 -1.734 0 0 0 0 0 0 0 +-0.037 -4.301 -1.737 0 0 0 0 0 0 0 +-0.03 -4.312 -1.742 0 0 0 0 0 0 0 +-0.017 -4.29 -1.733 0 0 0 0 0 0 0 +-0.003 -4.299 -1.737 0 0 0 0 0 0 0 +0.01 -4.297 -1.736 0 0 0 0 0 0 0 +0.024 -4.297 -1.736 0 0 0 0 0 0 0 +0.037 -4.297 -1.736 0 0 0 0 0 0 0 +0.051 -4.325 -1.748 0 0 0 0 0 0 0 +0.057 -4.288 -1.732 0 0 0 0 0 0 0 +0.071 -4.306 -1.74 0 0 0 0 0 0 0 +0.084 -4.286 -1.731 0 0 0 0 0 0 0 +0.098 -4.307 -1.741 0 0 0 0 0 0 0 +0.112 -4.298 -1.737 0 0 0 0 0 0 0 +0.126 -4.31 -1.742 0 0 0 0 0 0 0 +0.139 -4.301 -1.738 0 0 0 0 0 0 0 +0.146 -4.302 -1.739 0 0 0 0 0 0 0 +0.159 -4.298 -1.737 0 0 0 0 0 0 0 +0.172 -4.296 -1.737 0 0 0 0 0 0 0 +0.186 -4.299 -1.738 0 0 0 0 0 0 0 +0.199 -4.289 -1.734 0 0 0 0 0 0 0 +0.213 -4.292 -1.736 0 0 0 0 0 0 0 +0.226 -4.292 -1.736 0 0 0 0 0 0 0 +0.233 -4.284 -1.733 0 0 0 0 0 0 0 +0.247 -4.294 -1.737 0 0 0 0 0 0 0 +0.261 -4.299 -1.74 0 0 0 0 0 0 0 +0.274 -4.296 -1.739 0 0 0 0 0 0 0 +0.288 -4.304 -1.743 0 0 0 0 0 0 0 +0.301 -4.289 -1.737 0 0 0 0 0 0 0 +0.314 -4.293 -1.739 0 0 0 0 0 0 0 +0.32 -4.282 -1.734 0 0 0 0 0 0 0 +0.335 -4.295 -1.741 0 0 0 0 0 0 0 +0.348 -4.294 -1.741 0 0 0 0 0 0 0 +0.361 -4.286 -1.737 0 0 0 0 0 0 0 +0.375 -4.292 -1.741 0 0 0 0 0 0 0 +0.389 -4.291 -1.741 0 0 0 0 0 0 0 +0.402 -4.284 -1.738 0 0 0 0 0 0 0 +0.41 -4.296 -1.744 0 0 0 0 0 0 0 +0.423 -4.293 -1.743 0 0 0 0 0 0 0 +0.437 -4.299 -1.746 0 0 0 0 0 0 0 +0.45 -4.287 -1.741 0 0 0 0 0 0 0 +0.466 -4.307 -1.751 0 0 0 0 0 0 0 +0.476 -4.282 -1.741 0 0 0 0 0 0 0 +0.491 -4.288 -1.744 0 0 0 0 0 0 0 +0.497 -4.283 -1.742 0 0 0 0 0 0 0 +0.511 -4.284 -1.743 0 0 0 0 0 0 0 +0.525 -4.289 -1.746 0 0 0 0 0 0 0 +0.537 -4.275 -1.741 0 0 0 0 0 0 0 +0.552 -4.284 -1.745 0 0 0 0 0 0 0 +0.565 -4.277 -1.743 0 0 0 0 0 0 0 +0.623 -4.254 -1.737 0 0 0 0 0 0 0 +0.636 -4.254 -1.737 0 0 0 0 0 0 0 +0.65 -4.255 -1.739 0 0 0 0 0 0 0 +0.666 -4.266 -1.745 0 0 0 0 0 0 0 +0.679 -4.262 -1.744 0 0 0 0 0 0 0 +0.857 -4.222 -1.741 0 0 0 0 0 0 0 +0.875 -4.238 -1.749 0 0 0 0 0 0 0 +0.887 -4.233 -1.748 0 0 0 0 0 0 0 +0.902 -4.237 -1.751 0 0 0 0 0 0 0 +0.915 -4.233 -1.75 0 0 0 0 0 0 0 +0.927 -4.224 -1.748 0 0 0 0 0 0 0 +0.941 -4.222 -1.748 0 0 0 0 0 0 0 +0.948 -4.225 -1.75 0 0 0 0 0 0 0 +0.961 -4.221 -1.749 0 0 0 0 0 0 0 +0.982 -4.25 -1.764 0 0 0 0 0 0 0 +2.103 -3.79 -1.752 0 0 0 0 0 0 0 +2.118 -3.788 -1.754 0 0 0 0 0 0 0 +2.123 -3.768 -1.748 0 0 0 0 0 0 0 +2.136 -3.765 -1.749 0 0 0 0 0 0 0 +2.148 -3.758 -1.749 0 0 0 0 0 0 0 +2.159 -3.75 -1.749 0 0 0 0 0 0 0 +2.177 -3.754 -1.754 0 0 0 0 0 0 0 +2.189 -3.76 -1.759 0 0 0 0 0 0 0 +2.195 -3.744 -1.754 0 0 0 0 0 0 0 +2.211 -3.745 -1.758 0 0 0 0 0 0 0 +2.217 -3.728 -1.753 0 0 0 0 0 0 0 +2.235 -3.731 -1.758 0 0 0 0 0 0 0 +2.251 -3.732 -1.762 0 0 0 0 0 0 0 +2.263 -3.724 -1.762 0 0 0 0 0 0 0 +2.271 -3.724 -1.764 0 0 0 0 0 0 0 +2.29 -3.729 -1.77 0 0 0 0 0 0 0 +2.309 -3.733 -1.775 0 0 0 0 0 0 0 +2.316 -3.718 -1.772 0 0 0 0 0 0 0 +2.32 -3.7 -1.766 0 0 0 0 0 0 0 +2.336 -3.699 -1.769 0 0 0 0 0 0 0 +2.332 -3.667 -1.756 0 0 0 0 0 0 0 +2.344 -3.674 -1.762 0 0 0 0 0 0 0 +2.356 -3.666 -1.762 0 0 0 0 0 0 0 +2.367 -3.659 -1.762 0 0 0 0 0 0 0 +2.381 -3.655 -1.764 0 0 0 0 0 0 0 +2.396 -3.653 -1.767 0 0 0 0 0 0 0 +2.405 -3.641 -1.764 0 0 0 0 0 0 0 +2.423 -3.644 -1.77 0 0 0 0 0 0 0 +2.422 -3.63 -1.764 0 0 0 0 0 0 0 +2.442 -3.634 -1.771 0 0 0 0 0 0 0 +2.447 -3.617 -1.766 0 0 0 0 0 0 0 +2.462 -3.616 -1.769 0 0 0 0 0 0 0 +2.473 -3.607 -1.768 0 0 0 0 0 0 0 +2.483 -3.597 -1.768 0 0 0 0 0 0 0 +2.496 -3.592 -1.769 0 0 0 0 0 0 0 +2.5 -3.586 -1.768 0 0 0 0 0 0 0 +2.512 -3.579 -1.768 0 0 0 0 0 0 0 +2.528 -3.577 -1.772 0 0 0 0 0 0 0 +2.537 -3.566 -1.77 0 0 0 0 0 0 0 +2.554 -3.567 -1.775 0 0 0 0 0 0 0 +2.565 -3.558 -1.774 0 0 0 0 0 0 0 +2.578 -3.553 -1.775 0 0 0 0 0 0 0 +2.581 -3.546 -1.774 0 0 0 0 0 0 0 +2.597 -3.543 -1.777 0 0 0 0 0 0 0 +2.597 -3.52 -1.769 0 0 0 0 0 0 0 +2.616 -3.523 -1.775 0 0 0 0 0 0 0 +2.623 -3.51 -1.772 0 0 0 0 0 0 0 +2.632 -3.499 -1.771 0 0 0 0 0 0 0 +2.645 -3.493 -1.772 0 0 0 0 0 0 0 +2.663 -3.505 -1.781 0 0 0 0 0 0 0 +2.665 -3.485 -1.775 0 0 0 0 0 0 0 +2.669 -3.468 -1.77 0 0 0 0 0 0 0 +2.686 -3.467 -1.774 0 0 0 0 0 0 0 +2.691 -3.451 -1.77 0 0 0 0 0 0 0 +2.705 -3.447 -1.772 0 0 0 0 0 0 0 +2.723 -3.447 -1.777 0 0 0 0 0 0 0 +2.718 -3.43 -1.77 0 0 0 0 0 0 0 +2.738 -3.433 -1.776 0 0 0 0 0 0 0 +2.738 -3.411 -1.769 0 0 0 0 0 0 0 +2.756 -3.411 -1.774 0 0 0 0 0 0 0 +2.768 -3.404 -1.775 0 0 0 0 0 0 0 +2.78 -3.397 -1.775 0 0 0 0 0 0 0 +2.782 -3.378 -1.77 0 0 0 0 0 0 0 +2.797 -3.385 -1.776 0 0 0 0 0 0 0 +2.801 -3.368 -1.772 0 0 0 0 0 0 0 +2.813 -3.362 -1.773 0 0 0 0 0 0 0 +2.828 -3.357 -1.775 0 0 0 0 0 0 0 +2.841 -3.351 -1.777 0 0 0 0 0 0 0 +2.84 -3.33 -1.77 0 0 0 0 0 0 0 +2.849 -3.319 -1.769 0 0 0 0 0 0 0 +2.862 -3.323 -1.774 0 0 0 0 0 0 0 +2.878 -3.321 -1.778 0 0 0 0 0 0 0 +2.878 -3.3 -1.771 0 0 0 0 0 0 0 +2.897 -3.3 -1.776 0 0 0 0 0 0 0 +2.906 -3.29 -1.775 0 0 0 0 0 0 0 +2.911 -3.275 -1.772 0 0 0 0 0 0 0 +2.933 -3.278 -1.779 0 0 0 0 0 0 0 +2.928 -3.253 -1.77 0 0 0 0 0 0 0 +2.943 -3.259 -1.776 0 0 0 0 0 0 0 +2.95 -3.246 -1.774 0 0 0 0 0 0 0 +2.961 -3.238 -1.775 0 0 0 0 0 0 0 +2.969 -3.226 -1.773 0 0 0 0 0 0 0 +2.979 -3.216 -1.773 0 0 0 0 0 0 0 +2.985 -3.203 -1.771 0 0 0 0 0 0 0 +2.996 -3.195 -1.772 0 0 0 0 0 0 0 +3.009 -3.198 -1.776 0 0 0 0 0 0 0 +3.014 -3.183 -1.773 0 0 0 0 0 0 0 +3.032 -3.182 -1.778 0 0 0 0 0 0 0 +3.028 -3.158 -1.769 0 0 0 0 0 0 0 +3.046 -3.157 -1.775 0 0 0 0 0 0 0 +3.059 -3.15 -1.776 0 0 0 0 0 0 0 +3.068 -3.15 -1.779 0 0 0 0 0 0 0 +3.067 -3.129 -1.772 0 0 0 0 0 0 0 +3.093 -3.135 -1.782 0 0 0 0 0 0 0 +3.079 -3.102 -1.768 0 0 0 0 0 0 0 +3.093 -3.097 -1.77 0 0 0 0 0 0 0 +3.11 -3.095 -1.775 0 0 0 0 0 0 0 +3.127 -3.091 -1.779 0 0 0 0 0 0 0 +3.117 -3.072 -1.77 0 0 0 0 0 0 0 +3.129 -3.065 -1.772 0 0 0 0 0 0 0 +3.139 -3.055 -1.772 0 0 0 0 0 0 0 +3.151 -3.048 -1.773 0 0 0 0 0 0 0 +3.159 -3.037 -1.772 0 0 0 0 0 0 0 +3.172 -3.029 -1.774 0 0 0 0 0 0 0 +3.182 -3.02 -1.775 0 0 0 0 0 0 0 +3.174 -3.003 -1.767 0 0 0 0 0 0 0 +3.193 -3.002 -1.772 0 0 0 0 0 0 0 +3.197 -2.987 -1.769 0 0 0 0 0 0 0 +3.209 -2.979 -1.771 0 0 0 0 0 0 0 +3.21 -2.961 -1.766 0 0 0 0 0 0 0 +3.216 -2.949 -1.764 0 0 0 0 0 0 0 +3.227 -2.94 -1.765 0 0 0 0 0 0 0 +3.244 -2.937 -1.77 0 0 0 0 0 0 0 +3.245 -2.928 -1.768 0 0 0 0 0 0 0 +3.254 -2.918 -1.768 0 0 0 0 0 0 0 +3.262 -2.907 -1.767 0 0 0 0 0 0 0 +3.268 -2.894 -1.765 0 0 0 0 0 0 0 +3.279 -2.885 -1.766 0 0 0 0 0 0 0 +3.281 -2.869 -1.762 0 0 0 0 0 0 0 +3.287 -2.856 -1.76 0 0 0 0 0 0 0 +3.293 -2.852 -1.761 0 0 0 0 0 0 0 +3.31 -2.849 -1.766 0 0 0 0 0 0 0 +3.311 -2.831 -1.761 0 0 0 0 0 0 0 +3.324 -2.824 -1.764 0 0 0 0 0 0 0 +3.327 -2.809 -1.76 0 0 0 0 0 0 0 +3.334 -2.798 -1.76 0 0 0 0 0 0 0 +3.345 -2.788 -1.76 0 0 0 0 0 0 0 +3.363 -2.795 -1.768 0 0 0 0 0 0 0 +3.368 -2.781 -1.766 0 0 0 0 0 0 0 +3.388 -2.779 -1.772 0 0 0 0 0 0 0 +3.379 -2.755 -1.763 0 0 0 0 0 0 0 +3.404 -2.757 -1.772 0 0 0 0 0 0 0 +3.401 -2.737 -1.765 0 0 0 0 0 0 0 +3.397 -2.725 -1.76 0 0 0 0 0 0 0 +3.414 -2.721 -1.765 0 0 0 0 0 0 0 +3.408 -2.699 -1.757 0 0 0 0 0 0 0 +3.429 -2.698 -1.764 0 0 0 0 0 0 0 +3.426 -2.679 -1.758 0 0 0 0 0 0 0 +3.442 -2.673 -1.762 0 0 0 0 0 0 0 +3.447 -2.66 -1.76 0 0 0 0 0 0 0 +3.454 -2.648 -1.76 0 0 0 0 0 0 0 +3.451 -2.637 -1.756 0 0 0 0 0 0 0 +3.456 -2.624 -1.754 0 0 0 0 0 0 0 +3.472 -2.619 -1.758 0 0 0 0 0 0 0 +3.479 -2.607 -1.757 0 0 0 0 0 0 0 +3.487 -2.596 -1.757 0 0 0 0 0 0 0 +3.495 -2.585 -1.757 0 0 0 0 0 0 0 +3.705 -2.346 -1.774 0 0 0 0 0 0 0 +3.695 -2.324 -1.765 0 0 0 0 0 0 0 +3.701 -2.311 -1.764 0 0 0 0 0 0 0 +3.715 -2.304 -1.768 0 0 0 0 0 0 0 +3.72 -2.291 -1.767 0 0 0 0 0 0 0 +3.718 -2.281 -1.764 0 0 0 0 0 0 0 +3.715 -2.264 -1.759 0 0 0 0 0 0 0 +3.722 -2.252 -1.759 0 0 0 0 0 0 0 +3.728 -2.24 -1.758 0 0 0 0 0 0 0 +3.735 -2.228 -1.758 0 0 0 0 0 0 0 +3.731 -2.21 -1.753 0 0 0 0 0 0 0 +3.744 -2.202 -1.756 0 0 0 0 0 0 0 +3.74 -2.191 -1.752 0 0 0 0 0 0 0 +3.753 -2.183 -1.755 0 0 0 0 0 0 0 +3.756 -2.169 -1.753 0 0 0 0 0 0 0 +3.757 -2.154 -1.75 0 0 0 0 0 0 0 +3.789 -2.157 -1.763 0 0 0 0 0 0 0 +3.77 -2.13 -1.75 0 0 0 0 0 0 0 +3.78 -2.12 -1.752 0 0 0 0 0 0 0 +3.782 -2.114 -1.751 0 0 0 0 0 0 0 +3.79 -2.103 -1.752 0 0 0 0 0 0 0 +3.989 -1.819 -1.773 0 0 0 0 0 0 0 +3.981 -1.8 -1.767 0 0 0 0 0 0 0 +4.007 -1.797 -1.776 0 0 0 0 0 0 0 +3.964 -1.763 -1.753 0 0 0 0 0 0 0 +3.984 -1.757 -1.76 0 0 0 0 0 0 0 +3.971 -1.736 -1.752 0 0 0 0 0 0 0 +3.966 -1.72 -1.747 0 0 0 0 0 0 0 +3.973 -1.715 -1.749 0 0 0 0 0 0 0 +3.975 -1.701 -1.747 0 0 0 0 0 0 0 +3.99 -1.693 -1.752 0 0 0 0 0 0 0 +3.989 -1.677 -1.749 0 0 0 0 0 0 0 +3.99 -1.663 -1.747 0 0 0 0 0 0 0 +4.014 -1.659 -1.756 0 0 0 0 0 0 0 +3.996 -1.636 -1.745 0 0 0 0 0 0 0 +4.017 -1.638 -1.753 0 0 0 0 0 0 0 +4.003 -1.617 -1.745 0 0 0 0 0 0 0 +4.02 -1.61 -1.75 0 0 0 0 0 0 0 +4.034 -1.6 -1.754 0 0 0 0 0 0 0 +4.015 -1.578 -1.743 0 0 0 0 0 0 0 +4.028 -1.569 -1.747 0 0 0 0 0 0 0 +4.032 -1.556 -1.746 0 0 0 0 0 0 0 +4.031 -1.548 -1.745 0 0 0 0 0 0 0 +4.036 -1.535 -1.745 0 0 0 0 0 0 0 +4.04 -1.523 -1.745 0 0 0 0 0 0 0 +4.047 -1.511 -1.745 0 0 0 0 0 0 0 +4.057 -1.5 -1.748 0 0 0 0 0 0 0 +4.058 -1.486 -1.746 0 0 0 0 0 0 0 +4.075 -1.477 -1.752 0 0 0 0 0 0 0 +4.06 -1.465 -1.744 0 0 0 0 0 0 0 +4.066 -1.453 -1.745 0 0 0 0 0 0 0 +4.067 -1.439 -1.743 0 0 0 0 0 0 0 +4.082 -1.429 -1.748 0 0 0 0 0 0 0 +4.092 -1.418 -1.75 0 0 0 0 0 0 0 +4.074 -1.398 -1.74 0 0 0 0 0 0 0 +4.088 -1.389 -1.745 0 0 0 0 0 0 0 +4.078 -1.378 -1.739 0 0 0 0 0 0 0 +4.093 -1.369 -1.744 0 0 0 0 0 0 0 +4.113 -1.361 -1.751 0 0 0 0 0 0 0 +4.098 -1.342 -1.742 0 0 0 0 0 0 0 +4.102 -1.329 -1.742 0 0 0 0 0 0 0 +4.117 -1.319 -1.747 0 0 0 0 0 0 0 +4.107 -1.302 -1.741 0 0 0 0 0 0 0 +4.099 -1.292 -1.736 0 0 0 0 0 0 0 +4.115 -1.283 -1.741 0 0 0 0 0 0 0 +4.117 -1.27 -1.741 0 0 0 0 0 0 0 +4.123 -1.257 -1.741 0 0 0 0 0 0 0 +4.118 -1.242 -1.737 0 0 0 0 0 0 0 +4.129 -1.231 -1.741 0 0 0 0 0 0 0 +4.142 -1.221 -1.745 0 0 0 0 0 0 0 +4.168 -1.221 -1.756 0 0 0 0 0 0 0 +17.497 2.872 -7.767 0 0 0 0 0 0 0 +17.477 2.925 -7.762 0 0 0 0 0 0 0 +17.466 2.98 -7.762 0 0 0 0 0 0 0 +17.432 3.03 -7.75 0 0 0 0 0 0 0 +17.414 3.055 -7.744 0 0 0 0 0 0 0 +17.378 3.105 -7.732 0 0 0 0 0 0 0 +17.364 3.159 -7.731 0 0 0 0 0 0 0 +17.342 3.211 -7.725 0 0 0 0 0 0 0 +17.31 3.262 -7.715 0 0 0 0 0 0 0 +17.303 3.317 -7.717 0 0 0 0 0 0 0 +17.259 3.365 -7.701 0 0 0 0 0 0 0 +17.47 3.463 -7.802 0 0 0 0 0 0 0 +17.21 3.44 -7.687 0 0 0 0 0 0 0 +3.916 1.332 -1.723 0 0 0 0 0 0 0 +3.912 1.344 -1.723 0 0 0 0 0 0 0 +3.896 1.352 -1.717 0 0 0 0 0 0 0 +3.904 1.368 -1.723 0 0 0 0 0 0 0 +3.898 1.38 -1.722 0 0 0 0 0 0 0 +3.899 1.394 -1.724 0 0 0 0 0 0 0 +3.886 1.397 -1.719 0 0 0 0 0 0 0 +3.887 1.411 -1.722 0 0 0 0 0 0 0 +3.874 1.42 -1.718 0 0 0 0 0 0 0 +3.876 1.434 -1.721 0 0 0 0 0 0 0 +3.87 1.446 -1.72 0 0 0 0 0 0 0 +3.879 1.463 -1.727 0 0 0 0 0 0 0 +3.876 1.476 -1.728 0 0 0 0 0 0 0 +3.865 1.479 -1.723 0 0 0 0 0 0 0 +3.852 1.488 -1.719 0 0 0 0 0 0 0 +3.854 1.502 -1.723 0 0 0 0 0 0 0 +3.849 1.515 -1.723 0 0 0 0 0 0 0 +3.841 1.525 -1.721 0 0 0 0 0 0 0 +3.852 1.543 -1.728 0 0 0 0 0 0 0 +3.832 1.549 -1.721 0 0 0 0 0 0 0 +3.833 1.557 -1.723 0 0 0 0 0 0 0 +3.834 1.572 -1.726 0 0 0 0 0 0 0 +3.829 1.584 -1.726 0 0 0 0 0 0 0 +3.809 1.589 -1.719 0 0 0 0 0 0 0 +3.826 1.61 -1.729 0 0 0 0 0 0 0 +3.809 1.617 -1.723 0 0 0 0 0 0 0 +3.818 1.635 -1.73 0 0 0 0 0 0 0 +3.793 1.632 -1.719 0 0 0 0 0 0 0 +3.808 1.652 -1.729 0 0 0 0 0 0 0 +3.798 1.662 -1.727 0 0 0 0 0 0 0 +3.794 1.675 -1.728 0 0 0 0 0 0 0 +3.787 1.686 -1.727 0 0 0 0 0 0 0 +3.774 1.694 -1.723 0 0 0 0 0 0 0 +3.767 1.705 -1.722 0 0 0 0 0 0 0 +3.779 1.718 -1.729 0 0 0 0 0 0 0 +3.782 1.734 -1.733 0 0 0 0 0 0 0 +3.762 1.739 -1.726 0 0 0 0 0 0 0 +3.756 1.75 -1.726 0 0 0 0 0 0 0 +3.757 1.765 -1.729 0 0 0 0 0 0 0 +3.725 1.765 -1.716 0 0 0 0 0 0 0 +3.609 2.07 -1.733 0 0 0 0 0 0 0 +3.591 2.075 -1.728 0 0 0 0 0 0 0 +3.583 2.086 -1.727 0 0 0 0 0 0 0 +3.587 2.103 -1.732 0 0 0 0 0 0 0 +3.578 2.105 -1.729 0 0 0 0 0 0 0 +3.573 2.118 -1.73 0 0 0 0 0 0 0 +3.566 2.129 -1.73 0 0 0 0 0 0 0 +3.553 2.136 -1.727 0 0 0 0 0 0 0 +3.551 2.15 -1.729 0 0 0 0 0 0 0 +3.546 2.162 -1.73 0 0 0 0 0 0 0 +3.534 2.171 -1.728 0 0 0 0 0 0 0 +3.531 2.176 -1.728 0 0 0 0 0 0 0 +3.529 2.19 -1.73 0 0 0 0 0 0 0 +3.517 2.198 -1.728 0 0 0 0 0 0 0 +3.51 2.209 -1.728 0 0 0 0 0 0 0 +3.503 2.22 -1.728 0 0 0 0 0 0 0 +3.506 2.237 -1.732 0 0 0 0 0 0 0 +3.493 2.237 -1.728 0 0 0 0 0 0 0 +3.489 2.25 -1.729 0 0 0 0 0 0 0 +3.485 2.263 -1.731 0 0 0 0 0 0 0 +3.478 2.274 -1.731 0 0 0 0 0 0 0 +3.455 2.275 -1.723 0 0 0 0 0 0 0 +3.434 2.276 -1.715 0 0 0 0 0 0 0 +3.3 2.548 -1.737 0 0 0 0 0 0 0 +3.273 2.544 -1.727 0 0 0 0 0 0 0 +3.273 2.56 -1.731 0 0 0 0 0 0 0 +3.253 2.561 -1.724 0 0 0 0 0 0 0 +3.251 2.576 -1.728 0 0 0 0 0 0 0 +3.238 2.583 -1.725 0 0 0 0 0 0 0 +3.234 2.588 -1.725 0 0 0 0 0 0 0 +3.226 2.598 -1.725 0 0 0 0 0 0 0 +3.226 2.615 -1.73 0 0 0 0 0 0 0 +3.208 2.617 -1.724 0 0 0 0 0 0 0 +3.193 2.621 -1.72 0 0 0 0 0 0 0 +3.183 2.63 -1.719 0 0 0 0 0 0 0 +3.179 2.644 -1.722 0 0 0 0 0 0 0 +3.178 2.651 -1.723 0 0 0 0 0 0 0 +3.167 2.659 -1.722 0 0 0 0 0 0 0 +3.17 2.678 -1.728 0 0 0 0 0 0 0 +3.157 2.684 -1.726 0 0 0 0 0 0 0 +3.147 2.693 -1.725 0 0 0 0 0 0 0 +3.136 2.701 -1.723 0 0 0 0 0 0 0 +3.134 2.708 -1.725 0 0 0 0 0 0 0 +3.127 2.719 -1.726 0 0 0 0 0 0 0 +3.119 2.729 -1.726 0 0 0 0 0 0 0 +3.114 2.742 -1.728 0 0 0 0 0 0 0 +3.097 2.745 -1.723 0 0 0 0 0 0 0 +3.097 2.762 -1.728 0 0 0 0 0 0 0 +3.083 2.767 -1.725 0 0 0 0 0 0 0 +3.08 2.773 -1.726 0 0 0 0 0 0 0 +3.072 2.784 -1.727 0 0 0 0 0 0 0 +3.066 2.796 -1.728 0 0 0 0 0 0 0 +3.047 2.795 -1.722 0 0 0 0 0 0 0 +3.039 2.806 -1.723 0 0 0 0 0 0 0 +3.032 2.817 -1.723 0 0 0 0 0 0 0 +3.028 2.831 -1.727 0 0 0 0 0 0 0 +3.012 2.825 -1.719 0 0 0 0 0 0 0 +3.011 2.842 -1.724 0 0 0 0 0 0 0 +2.995 2.845 -1.72 0 0 0 0 0 0 0 +2.988 2.856 -1.721 0 0 0 0 0 0 0 +2.987 2.873 -1.726 0 0 0 0 0 0 0 +2.976 2.881 -1.725 0 0 0 0 0 0 0 +2.966 2.889 -1.724 0 0 0 0 0 0 0 +2.953 2.894 -1.722 0 0 0 0 0 0 0 +2.955 2.905 -1.726 0 0 0 0 0 0 0 +2.943 2.912 -1.724 0 0 0 0 0 0 0 +2.938 2.925 -1.727 0 0 0 0 0 0 0 +2.922 2.928 -1.723 0 0 0 0 0 0 0 +2.922 2.946 -1.728 0 0 0 0 0 0 0 +2.905 2.948 -1.723 0 0 0 0 0 0 0 +2.898 2.959 -1.725 0 0 0 0 0 0 0 +2.9 2.97 -1.729 0 0 0 0 0 0 0 +2.88 2.969 -1.723 0 0 0 0 0 0 0 +2.878 2.985 -1.727 0 0 0 0 0 0 0 +2.877 3.003 -1.732 0 0 0 0 0 0 0 +2.859 3.003 -1.727 0 0 0 0 0 0 0 +2.843 3.005 -1.723 0 0 0 0 0 0 0 +2.846 3.027 -1.731 0 0 0 0 0 0 0 +2.834 3.024 -1.726 0 0 0 0 0 0 0 +2.828 3.036 -1.728 0 0 0 0 0 0 0 +2.827 3.055 -1.734 0 0 0 0 0 0 0 +2.803 3.048 -1.724 0 0 0 0 0 0 0 +2.792 3.055 -1.723 0 0 0 0 0 0 0 +2.787 3.069 -1.727 0 0 0 0 0 0 0 +2.77 3.07 -1.722 0 0 0 0 0 0 0 +2.774 3.084 -1.728 0 0 0 0 0 0 0 +2.773 3.102 -1.733 0 0 0 0 0 0 0 +2.757 3.104 -1.729 0 0 0 0 0 0 0 +2.748 3.114 -1.73 0 0 0 0 0 0 0 +2.731 3.114 -1.725 0 0 0 0 0 0 0 +2.717 3.117 -1.722 0 0 0 0 0 0 0 +2.715 3.135 -1.728 0 0 0 0 0 0 0 +2.714 3.144 -1.73 0 0 0 0 0 0 0 +2.699 3.147 -1.727 0 0 0 0 0 0 0 +2.699 3.166 -1.733 0 0 0 0 0 0 0 +2.683 3.168 -1.729 0 0 0 0 0 0 0 +2.668 3.171 -1.726 0 0 0 0 0 0 0 +2.669 3.191 -1.733 0 0 0 0 0 0 0 +2.658 3.198 -1.732 0 0 0 0 0 0 0 +2.647 3.196 -1.728 0 0 0 0 0 0 0 +2.651 3.221 -1.738 0 0 0 0 0 0 0 +2.622 3.207 -1.725 0 0 0 0 0 0 0 +2.624 3.229 -1.733 0 0 0 0 0 0 0 +2.615 3.239 -1.734 0 0 0 0 0 0 0 +2.608 3.251 -1.736 0 0 0 0 0 0 0 +2.587 3.246 -1.729 0 0 0 0 0 0 0 +2.59 3.26 -1.735 0 0 0 0 0 0 0 +2.575 3.263 -1.732 0 0 0 0 0 0 0 +2.564 3.269 -1.731 0 0 0 0 0 0 0 +2.555 3.279 -1.732 0 0 0 0 0 0 0 +2.556 3.301 -1.74 0 0 0 0 0 0 0 +2.542 3.305 -1.737 0 0 0 0 0 0 0 +2.527 3.307 -1.734 0 0 0 0 0 0 0 +2.523 3.313 -1.735 0 0 0 0 0 0 0 +2.518 3.328 -1.739 0 0 0 0 0 0 0 +2.502 3.328 -1.735 0 0 0 0 0 0 0 +2.495 3.341 -1.737 0 0 0 0 0 0 0 +2.48 3.343 -1.734 0 0 0 0 0 0 0 +2.467 3.347 -1.732 0 0 0 0 0 0 0 +2.458 3.357 -1.733 0 0 0 0 0 0 0 +2.453 3.361 -1.733 0 0 0 0 0 0 0 +2.455 3.386 -1.743 0 0 0 0 0 0 0 +2.434 3.379 -1.735 0 0 0 0 0 0 0 +2.426 3.391 -1.737 0 0 0 0 0 0 0 +2.406 3.385 -1.73 0 0 0 0 0 0 0 +2.4 3.399 -1.733 0 0 0 0 0 0 0 +2.392 3.411 -1.736 0 0 0 0 0 0 0 +2.388 3.416 -1.736 0 0 0 0 0 0 0 +2.372 3.416 -1.732 0 0 0 0 0 0 0 +2.368 3.434 -1.738 0 0 0 0 0 0 0 +2.357 3.44 -1.737 0 0 0 0 0 0 0 +2.343 3.443 -1.735 0 0 0 0 0 0 0 +2.332 3.45 -1.735 0 0 0 0 0 0 0 +2.321 3.457 -1.735 0 0 0 0 0 0 0 +2.316 3.474 -1.74 0 0 0 0 0 0 0 +2.302 3.464 -1.732 0 0 0 0 0 0 0 +2.293 3.474 -1.734 0 0 0 0 0 0 0 +2.281 3.48 -1.733 0 0 0 0 0 0 0 +2.277 3.497 -1.739 0 0 0 0 0 0 0 +2.261 3.497 -1.735 0 0 0 0 0 0 0 +2.247 3.499 -1.732 0 0 0 0 0 0 0 +2.249 3.526 -1.743 0 0 0 0 0 0 0 +2.233 3.514 -1.735 0 0 0 0 0 0 0 +2.225 3.526 -1.737 0 0 0 0 0 0 0 +2.209 3.525 -1.733 0 0 0 0 0 0 0 +2.2 3.535 -1.735 0 0 0 0 0 0 0 +2.189 3.542 -1.735 0 0 0 0 0 0 0 +2.177 3.548 -1.734 0 0 0 0 0 0 0 +2.167 3.543 -1.73 0 0 0 0 0 0 0 +2.161 3.559 -1.735 0 0 0 0 0 0 0 +2.15 3.566 -1.735 0 0 0 0 0 0 0 +2.143 3.579 -1.738 0 0 0 0 0 0 0 +2.128 3.581 -1.736 0 0 0 0 0 0 0 +2.12 3.592 -1.738 0 0 0 0 0 0 0 +2.101 3.587 -1.732 0 0 0 0 0 0 0 +2.091 3.582 -1.728 0 0 0 0 0 0 0 +2.084 3.596 -1.732 0 0 0 0 0 0 0 +2.071 3.6 -1.73 0 0 0 0 0 0 0 +2.072 3.627 -1.741 0 0 0 0 0 0 0 +2.047 3.61 -1.728 0 0 0 0 0 0 0 +2.048 3.638 -1.74 0 0 0 0 0 0 0 +2.025 3.624 -1.729 0 0 0 0 0 0 0 +2.021 3.643 -1.736 0 0 0 0 0 0 0 +2.01 3.638 -1.732 0 0 0 0 0 0 0 +2 3.646 -1.732 0 0 0 0 0 0 0 +1.993 3.66 -1.736 0 0 0 0 0 0 0 +1.972 3.649 -1.728 0 0 0 0 0 0 0 +1.96 3.655 -1.728 0 0 0 0 0 0 0 +1.957 3.676 -1.735 0 0 0 0 0 0 0 +1.936 3.666 -1.727 0 0 0 0 0 0 0 +1.937 3.68 -1.732 0 0 0 0 0 0 0 +1.923 3.683 -1.731 0 0 0 0 0 0 0 +1.91 3.686 -1.729 0 0 0 0 0 0 0 +1.892 3.679 -1.723 0 0 0 0 0 0 0 +1.889 3.701 -1.731 0 0 0 0 0 0 0 +1.872 3.697 -1.726 0 0 0 0 0 0 0 +1.865 3.713 -1.731 0 0 0 0 0 0 0 +1.84 3.691 -1.717 0 0 0 0 0 0 0 +1.842 3.71 -1.725 0 0 0 0 0 0 0 +1.826 3.708 -1.721 0 0 0 0 0 0 0 +1.816 3.717 -1.723 0 0 0 0 0 0 0 +1.807 3.727 -1.725 0 0 0 0 0 0 0 +1.794 3.731 -1.724 0 0 0 0 0 0 0 +1.779 3.729 -1.72 0 0 0 0 0 0 0 +1.778 3.741 -1.725 0 0 0 0 0 0 0 +1.764 3.744 -1.723 0 0 0 0 0 0 0 +1.749 3.743 -1.72 0 0 0 0 0 0 0 +1.736 3.745 -1.719 0 0 0 0 0 0 0 +1.728 3.758 -1.723 0 0 0 0 0 0 0 +1.714 3.759 -1.72 0 0 0 0 0 0 0 +1.702 3.764 -1.72 0 0 0 0 0 0 0 +1.686 3.76 -1.715 0 0 0 0 0 0 0 +1.684 3.771 -1.719 0 0 0 0 0 0 0 +1.672 3.776 -1.719 0 0 0 0 0 0 0 +1.66 3.781 -1.719 0 0 0 0 0 0 0 +1.649 3.788 -1.72 0 0 0 0 0 0 0 +1.633 3.785 -1.716 0 0 0 0 0 0 0 +1.621 3.79 -1.716 0 0 0 0 0 0 0 +1.614 3.805 -1.721 0 0 0 0 0 0 0 +1.608 3.807 -1.721 0 0 0 0 0 0 0 +1.591 3.802 -1.716 0 0 0 0 0 0 0 +1.583 3.816 -1.72 0 0 0 0 0 0 0 +1.571 3.821 -1.72 0 0 0 0 0 0 0 +1.558 3.822 -1.719 0 0 0 0 0 0 0 +1.546 3.827 -1.719 0 0 0 0 0 0 0 +1.534 3.834 -1.719 0 0 0 0 0 0 0 +1.528 3.836 -1.719 0 0 0 0 0 0 0 +1.515 3.838 -1.718 0 0 0 0 0 0 0 +1.506 3.849 -1.721 0 0 0 0 0 0 0 +1.491 3.849 -1.719 0 0 0 0 0 0 0 +1.481 3.858 -1.721 0 0 0 0 0 0 0 +1.47 3.865 -1.722 0 0 0 0 0 0 0 +1.46 3.874 -1.724 0 0 0 0 0 0 0 +1.447 3.86 -1.716 0 0 0 0 0 0 0 +1.428 3.847 -1.708 0 0 0 0 0 0 0 +1.414 3.845 -1.705 0 0 0 0 0 0 0 +1.404 3.854 -1.707 0 0 0 0 0 0 0 +1.393 3.862 -1.709 0 0 0 0 0 0 0 +1.378 3.86 -1.706 0 0 0 0 0 0 0 +1.365 3.86 -1.704 0 0 0 0 0 0 0 +1.361 3.868 -1.706 0 0 0 0 0 0 0 +1.344 3.86 -1.701 0 0 0 0 0 0 0 +1.332 3.864 -1.701 0 0 0 0 0 0 0 +1.322 3.875 -1.704 0 0 0 0 0 0 0 +1.309 3.876 -1.702 0 0 0 0 0 0 0 +1.301 3.894 -1.709 0 0 0 0 0 0 0 +1.286 3.888 -1.704 0 0 0 0 0 0 0 +1.276 3.9 -1.708 0 0 0 0 0 0 0 +1.266 3.888 -1.702 0 0 0 0 0 0 0 +1.256 3.899 -1.705 0 0 0 0 0 0 0 +1.243 3.903 -1.705 0 0 0 0 0 0 0 +1.228 3.897 -1.7 0 0 0 0 0 0 0 +1.215 3.9 -1.7 0 0 0 0 0 0 0 +1.208 3.92 -1.707 0 0 0 0 0 0 0 +1.192 3.91 -1.701 0 0 0 0 0 0 0 +1.184 3.906 -1.698 0 0 0 0 0 0 0 +1.172 3.912 -1.699 0 0 0 0 0 0 0 +1.16 3.916 -1.699 0 0 0 0 0 0 0 +1.147 3.917 -1.698 0 0 0 0 0 0 0 +1.138 3.932 -1.703 0 0 0 0 0 0 0 +1.12 3.916 -1.694 0 0 0 0 0 0 0 +1.112 3.937 -1.702 0 0 0 0 0 0 0 +1.109 3.949 -1.707 0 0 0 0 0 0 0 +1.091 3.933 -1.698 0 0 0 0 0 0 0 +1.08 3.938 -1.699 0 0 0 0 0 0 0 +1.07 3.952 -1.704 0 0 0 0 0 0 0 +1.054 3.943 -1.698 0 0 0 0 0 0 0 +1.042 3.947 -1.698 0 0 0 0 0 0 0 +1.032 3.96 -1.703 0 0 0 0 0 0 0 +1.024 3.955 -1.7 0 0 0 0 0 0 0 +1.013 3.962 -1.702 0 0 0 0 0 0 0 +1.001 3.968 -1.703 0 0 0 0 0 0 0 +0.986 3.963 -1.699 0 0 0 0 0 0 0 +0.972 3.957 -1.695 0 0 0 0 0 0 0 +0.963 3.974 -1.702 0 0 0 0 0 0 0 +0.947 3.963 -1.695 0 0 0 0 0 0 0 +0.943 3.973 -1.699 0 0 0 0 0 0 0 +0.932 3.985 -1.703 0 0 0 0 0 0 0 +0.917 3.974 -1.697 0 0 0 0 0 0 0 +0.903 3.971 -1.694 0 0 0 0 0 0 0 +0.893 3.985 -1.699 0 0 0 0 0 0 0 +0.877 3.973 -1.693 0 0 0 0 0 0 0 +0.865 3.978 -1.693 0 0 0 0 0 0 0 +0.856 3.998 -1.702 0 0 0 0 0 0 0 +0.845 3.978 -1.692 0 0 0 0 0 0 0 +0.834 3.986 -1.694 0 0 0 0 0 0 0 +0.823 3.996 -1.697 0 0 0 0 0 0 0 +0.808 3.986 -1.692 0 0 0 0 0 0 0 +0.795 3.987 -1.691 0 0 0 0 0 0 0 +0.786 4.007 -1.699 0 0 0 0 0 0 0 +0.768 3.985 -1.688 0 0 0 0 0 0 0 +0.765 4 -1.694 0 0 0 0 0 0 0 +0.753 4.006 -1.696 0 0 0 0 0 0 0 +0.737 3.992 -1.689 0 0 0 0 0 0 0 +0.729 4.014 -1.697 0 0 0 0 0 0 0 +0.696 3.911 -1.65 0 0 0 0 0 0 0 +0.606 3.481 -1.455 0 0 0 0 0 0 0 +0.591 3.462 -1.445 0 0 0 0 0 0 0 +0.586 3.464 -1.446 0 0 0 0 0 0 0 +0.571 3.443 -1.435 0 0 0 0 0 0 0 +0.562 3.453 -1.439 0 0 0 0 0 0 0 +0.551 3.455 -1.439 0 0 0 0 0 0 0 +0.537 3.439 -1.431 0 0 0 0 0 0 0 +0.528 3.451 -1.436 0 0 0 0 0 0 0 +0.518 3.458 -1.438 0 0 0 0 0 0 0 +0.511 3.447 -1.433 0 0 0 0 0 0 0 +0.502 3.466 -1.441 0 0 0 0 0 0 0 +0.491 3.464 -1.439 0 0 0 0 0 0 0 +0.483 3.482 -1.446 0 0 0 0 0 0 0 +0.463 3.42 -1.418 0 0 0 0 0 0 0 +0.463 3.499 -1.453 0 0 0 0 0 0 0 +0.408 3.184 -1.311 0 0 0 0 0 0 0 +0.397 3.173 -1.305 0 0 0 0 0 0 0 +0.392 3.177 -1.307 0 0 0 0 0 0 0 +0.382 3.173 -1.304 0 0 0 0 0 0 0 +0.372 3.179 -1.307 0 0 0 0 0 0 0 +0.356 3.13 -1.284 0 0 0 0 0 0 0 +0.442 3.938 -1.645 0 0 0 0 0 0 0 +0.442 4.043 -1.692 0 0 0 0 0 0 0 +0.429 4.041 -1.69 0 0 0 0 0 0 0 +0.423 4.049 -1.693 0 0 0 0 0 0 0 +0.41 4.046 -1.692 0 0 0 0 0 0 0 +0.397 4.046 -1.691 0 0 0 0 0 0 0 +0.384 4.045 -1.69 0 0 0 0 0 0 0 +0.372 4.052 -1.693 0 0 0 0 0 0 0 +0.359 4.053 -1.693 0 0 0 0 0 0 0 +0.346 4.052 -1.692 0 0 0 0 0 0 0 +0.34 4.051 -1.691 0 0 0 0 0 0 0 +0.327 4.052 -1.691 0 0 0 0 0 0 0 +0.314 4.048 -1.689 0 0 0 0 0 0 0 +0.301 4.051 -1.689 0 0 0 0 0 0 0 +0.289 4.051 -1.689 0 0 0 0 0 0 0 +0.276 4.056 -1.691 0 0 0 0 0 0 0 +0.263 4.044 -1.685 0 0 0 0 0 0 0 +0.256 4.043 -1.684 0 0 0 0 0 0 0 +0.24 3.987 -1.659 0 0 0 0 0 0 0 +0.232 4.07 -1.696 0 0 0 0 0 0 0 +0.219 4.065 -1.693 0 0 0 0 0 0 0 +0.206 4.062 -1.692 0 0 0 0 0 0 0 +0.193 4.061 -1.691 0 0 0 0 0 0 0 +0.18 4.052 -1.687 0 0 0 0 0 0 0 +0.168 4.058 -1.689 0 0 0 0 0 0 0 +0.161 4.06 -1.69 0 0 0 0 0 0 0 +0.149 4.063 -1.691 0 0 0 0 0 0 0 +0.136 4.067 -1.693 0 0 0 0 0 0 0 +0.123 4.065 -1.692 0 0 0 0 0 0 0 +0.11 4.066 -1.692 0 0 0 0 0 0 0 +0.098 4.062 -1.69 0 0 0 0 0 0 0 +0.085 4.072 -1.694 0 0 0 0 0 0 0 +0.079 4.072 -1.694 0 0 0 0 0 0 0 +0.066 4.067 -1.692 0 0 0 0 0 0 0 +0.053 4.065 -1.691 0 0 0 0 0 0 0 +0.04 4.06 -1.689 0 0 0 0 0 0 0 +0.027 4.069 -1.693 0 0 0 0 0 0 0 +0.015 4.064 -1.69 0 0 0 0 0 0 0 +0.002 4.069 -1.693 0 0 0 0 0 0 0 +-0.004 4.069 -1.693 0 0 0 0 0 0 0 +-0.017 4.064 -1.69 0 0 0 0 0 0 0 +-0.03 4.062 -1.689 0 0 0 0 0 0 0 +-0.043 4.071 -1.693 0 0 0 0 0 0 0 +-0.056 4.076 -1.696 0 0 0 0 0 0 0 +-0.068 4.058 -1.688 0 0 0 0 0 0 0 +-0.081 4.063 -1.69 0 0 0 0 0 0 0 +-0.087 4.059 -1.689 0 0 0 0 0 0 0 +-0.1 4.071 -1.694 0 0 0 0 0 0 0 +-0.113 4.071 -1.694 0 0 0 0 0 0 0 +-0.126 4.056 -1.688 0 0 0 0 0 0 0 +-0.139 4.061 -1.69 0 0 0 0 0 0 0 +-0.151 4.066 -1.693 0 0 0 0 0 0 0 +-0.164 4.058 -1.689 0 0 0 0 0 0 0 +-0.17 4.056 -1.689 0 0 0 0 0 0 0 +-0.183 4.058 -1.689 0 0 0 0 0 0 0 +-0.196 4.062 -1.692 0 0 0 0 0 0 0 +-0.209 4.067 -1.694 0 0 0 0 0 0 0 +-0.222 4.068 -1.695 0 0 0 0 0 0 0 +-0.234 4.062 -1.693 0 0 0 0 0 0 0 +-0.247 4.058 -1.691 0 0 0 0 0 0 0 +-0.26 4.068 -1.696 0 0 0 0 0 0 0 +-0.268 4.086 -1.704 0 0 0 0 0 0 0 +-0.284 4.134 -1.726 0 0 0 0 0 0 0 +-0.296 4.122 -1.721 0 0 0 0 0 0 0 +-0.31 4.131 -1.725 0 0 0 0 0 0 0 +-0.322 4.122 -1.722 0 0 0 0 0 0 0 +-0.336 4.136 -1.728 0 0 0 0 0 0 0 +-0.349 4.127 -1.725 0 0 0 0 0 0 0 +-0.356 4.138 -1.73 0 0 0 0 0 0 0 +-0.369 4.137 -1.73 0 0 0 0 0 0 0 +-0.382 4.141 -1.732 0 0 0 0 0 0 0 +-0.395 4.136 -1.731 0 0 0 0 0 0 0 +-0.408 4.133 -1.73 0 0 0 0 0 0 0 +-0.421 4.13 -1.729 0 0 0 0 0 0 0 +-0.435 4.139 -1.734 0 0 0 0 0 0 0 +-0.441 4.137 -1.733 0 0 0 0 0 0 0 +-0.454 4.139 -1.735 0 0 0 0 0 0 0 +-0.469 4.149 -1.74 0 0 0 0 0 0 0 +-0.48 4.131 -1.732 0 0 0 0 0 0 0 +-0.493 4.131 -1.733 0 0 0 0 0 0 0 +-0.507 4.137 -1.736 0 0 0 0 0 0 0 +-0.519 4.132 -1.735 0 0 0 0 0 0 0 +-0.534 4.141 -1.74 0 0 0 0 0 0 0 +-0.54 4.14 -1.74 0 0 0 0 0 0 0 +-0.553 4.136 -1.739 0 0 0 0 0 0 0 +-0.565 4.129 -1.736 0 0 0 0 0 0 0 +-0.579 4.133 -1.739 0 0 0 0 0 0 0 +-0.592 4.131 -1.739 0 0 0 0 0 0 0 +-0.606 4.14 -1.744 0 0 0 0 0 0 0 +-0.619 4.138 -1.744 0 0 0 0 0 0 0 +-0.626 4.137 -1.744 0 0 0 0 0 0 0 +-0.64 4.141 -1.746 0 0 0 0 0 0 0 +-0.653 4.139 -1.746 0 0 0 0 0 0 0 +-0.667 4.144 -1.749 0 0 0 0 0 0 0 +-0.68 4.145 -1.751 0 0 0 0 0 0 0 +-0.695 4.152 -1.755 0 0 0 0 0 0 0 +-0.707 4.146 -1.754 0 0 0 0 0 0 0 +-0.713 4.141 -1.752 0 0 0 0 0 0 0 +-0.73 4.161 -1.762 0 0 0 0 0 0 0 +-0.744 4.166 -1.765 0 0 0 0 0 0 0 +-0.756 4.154 -1.761 0 0 0 0 0 0 0 +-0.773 4.177 -1.772 0 0 0 0 0 0 0 +-0.788 4.186 -1.777 0 0 0 0 0 0 0 +-0.798 4.163 -1.768 0 0 0 0 0 0 0 +-0.79 4.085 -1.733 0 0 0 0 0 0 0 +-0.817 4.158 -1.767 0 0 0 0 0 0 0 +-0.831 4.159 -1.769 0 0 0 0 0 0 0 +-0.848 4.176 -1.778 0 0 0 0 0 0 0 +-0.886 4.228 -1.804 0 0 0 0 0 0 0 +-0.9 4.228 -1.806 0 0 0 0 0 0 0 +-0.903 4.209 -1.797 0 0 0 0 0 0 0 +-0.894 4.104 -1.751 0 0 0 0 0 0 0 +-0.92 4.16 -1.778 0 0 0 0 0 0 0 +-0.933 4.158 -1.778 0 0 0 0 0 0 0 +-0.945 4.151 -1.776 0 0 0 0 0 0 0 +-0.959 4.153 -1.779 0 0 0 0 0 0 0 +-0.972 4.147 -1.777 0 0 0 0 0 0 0 +-0.977 4.142 -1.775 0 0 0 0 0 0 0 +-0.989 4.135 -1.774 0 0 0 0 0 0 0 +-1.003 4.134 -1.775 0 0 0 0 0 0 0 +-1.017 4.136 -1.777 0 0 0 0 0 0 0 +-1.031 4.136 -1.779 0 0 0 0 0 0 0 +-1.041 4.121 -1.773 0 0 0 0 0 0 0 +-1.051 4.105 -1.767 0 0 0 0 0 0 0 +-1.068 4.117 -1.775 0 0 0 0 0 0 0 +-1.069 4.096 -1.766 0 0 0 0 0 0 0 +-1.085 4.104 -1.771 0 0 0 0 0 0 0 +-1.1 4.107 -1.774 0 0 0 0 0 0 0 +-1.112 4.104 -1.774 0 0 0 0 0 0 0 +-1.12 4.081 -1.765 0 0 0 0 0 0 0 +-1.134 4.083 -1.767 0 0 0 0 0 0 0 +-1.146 4.075 -1.766 0 0 0 0 0 0 0 +-1.154 4.077 -1.767 0 0 0 0 0 0 0 +-1.168 4.079 -1.77 0 0 0 0 0 0 0 +-1.176 4.059 -1.762 0 0 0 0 0 0 0 +-1.19 4.061 -1.765 0 0 0 0 0 0 0 +-1.205 4.064 -1.768 0 0 0 0 0 0 0 +-1.215 4.05 -1.763 0 0 0 0 0 0 0 +-1.228 4.048 -1.764 0 0 0 0 0 0 0 +-1.241 4.068 -1.775 0 0 0 0 0 0 0 +-1.248 4.044 -1.765 0 0 0 0 0 0 0 +-1.263 4.047 -1.768 0 0 0 0 0 0 0 +-1.278 4.051 -1.772 0 0 0 0 0 0 0 +-1.287 4.035 -1.767 0 0 0 0 0 0 0 +-1.3 4.033 -1.767 0 0 0 0 0 0 0 +-1.313 4.03 -1.768 0 0 0 0 0 0 0 +-1.315 4.014 -1.762 0 0 0 0 0 0 0 +-1.328 4.012 -1.762 0 0 0 0 0 0 0 +-1.344 4.018 -1.767 0 0 0 0 0 0 0 +-1.355 4.007 -1.764 0 0 0 0 0 0 0 +-1.37 4.011 -1.768 0 0 0 0 0 0 0 +-1.383 4.007 -1.768 0 0 0 0 0 0 0 +-1.394 3.998 -1.766 0 0 0 0 0 0 0 +-1.408 3.998 -1.768 0 0 0 0 0 0 0 +-1.417 4.003 -1.771 0 0 0 0 0 0 0 +-1.425 3.987 -1.766 0 0 0 0 0 0 0 +-1.44 3.991 -1.77 0 0 0 0 0 0 0 +-1.454 3.988 -1.771 0 0 0 0 0 0 0 +-1.465 3.98 -1.769 0 0 0 0 0 0 0 +-1.484 3.992 -1.777 0 0 0 0 0 0 0 +-1.491 3.974 -1.771 0 0 0 0 0 0 0 +-1.498 3.973 -1.771 0 0 0 0 0 0 0 +-1.512 3.972 -1.773 0 0 0 0 0 0 0 +-1.529 3.979 -1.779 0 0 0 0 0 0 0 +-1.535 3.959 -1.771 0 0 0 0 0 0 0 +-1.546 3.949 -1.769 0 0 0 0 0 0 0 +-1.56 3.949 -1.771 0 0 0 0 0 0 0 +-1.568 3.932 -1.766 0 0 0 0 0 0 0 +-1.575 3.932 -1.767 0 0 0 0 0 0 0 +-1.589 3.932 -1.769 0 0 0 0 0 0 0 +-1.6 3.922 -1.767 0 0 0 0 0 0 0 +-1.61 3.912 -1.764 0 0 0 0 0 0 0 +-1.628 3.922 -1.771 0 0 0 0 0 0 0 +-1.635 3.903 -1.765 0 0 0 0 0 0 0 +-1.649 3.903 -1.767 0 0 0 0 0 0 0 +-1.662 3.916 -1.775 0 0 0 0 0 0 0 +-1.666 3.892 -1.766 0 0 0 0 0 0 0 +-1.681 3.893 -1.769 0 0 0 0 0 0 0 +-1.696 3.893 -1.771 0 0 0 0 0 0 0 +-1.704 3.879 -1.767 0 0 0 0 0 0 0 +-1.725 3.892 -1.776 0 0 0 0 0 0 0 +-1.746 3.909 -1.787 0 0 0 0 0 0 0 +-1.745 3.871 -1.771 0 0 0 0 0 0 0 +-1.757 3.882 -1.778 0 0 0 0 0 0 0 +-1.77 3.878 -1.779 0 0 0 0 0 0 0 +-1.782 3.874 -1.78 0 0 0 0 0 0 0 +-1.792 3.862 -1.776 0 0 0 0 0 0 0 +-1.811 3.873 -1.784 0 0 0 0 0 0 0 +-1.818 3.856 -1.779 0 0 0 0 0 0 0 +-1.835 3.86 -1.784 0 0 0 0 0 0 0 +-1.835 3.845 -1.778 0 0 0 0 0 0 0 +-1.84 3.823 -1.77 0 0 0 0 0 0 0 +-1.855 3.824 -1.773 0 0 0 0 0 0 0 +-1.87 3.825 -1.776 0 0 0 0 0 0 0 +-1.872 3.799 -1.767 0 0 0 0 0 0 0 +-1.888 3.8 -1.77 0 0 0 0 0 0 0 +-1.906 3.807 -1.776 0 0 0 0 0 0 0 +-1.904 3.787 -1.768 0 0 0 0 0 0 0 +-1.917 3.783 -1.769 0 0 0 0 0 0 0 +-1.933 3.787 -1.774 0 0 0 0 0 0 0 +-1.94 3.771 -1.769 0 0 0 0 0 0 0 +-1.951 3.762 -1.767 0 0 0 0 0 0 0 +-1.966 3.764 -1.771 0 0 0 0 0 0 0 +-1.972 3.744 -1.765 0 0 0 0 0 0 0 +-1.982 3.749 -1.769 0 0 0 0 0 0 0 +-1.991 3.738 -1.767 0 0 0 0 0 0 0 +-2.002 3.73 -1.766 0 0 0 0 0 0 0 +-2.016 3.729 -1.768 0 0 0 0 0 0 0 +-2.032 3.731 -1.772 0 0 0 0 0 0 0 +-2.039 3.715 -1.767 0 0 0 0 0 0 0 +-2.053 3.713 -1.77 0 0 0 0 0 0 0 +-2.065 3.708 -1.771 0 0 0 0 0 0 0 +-2.067 3.697 -1.767 0 0 0 0 0 0 0 +-2.082 3.697 -1.77 0 0 0 0 0 0 0 +-2.092 3.687 -1.768 0 0 0 0 0 0 0 +-2.103 3.68 -1.768 0 0 0 0 0 0 0 +-2.119 3.682 -1.772 0 0 0 0 0 0 0 +-2.132 3.677 -1.773 0 0 0 0 0 0 0 +-2.141 3.665 -1.771 0 0 0 0 0 0 0 +-2.144 3.657 -1.768 0 0 0 0 0 0 0 +-2.158 3.655 -1.771 0 0 0 0 0 0 0 +-2.168 3.647 -1.77 0 0 0 0 0 0 0 +-2.185 3.648 -1.774 0 0 0 0 0 0 0 +-2.198 3.644 -1.775 0 0 0 0 0 0 0 +-2.202 3.624 -1.769 0 0 0 0 0 0 0 +-2.216 3.622 -1.771 0 0 0 0 0 0 0 +-2.224 3.622 -1.773 0 0 0 0 0 0 0 +-2.233 3.612 -1.771 0 0 0 0 0 0 0 +-2.248 3.611 -1.775 0 0 0 0 0 0 0 +-2.255 3.596 -1.771 0 0 0 0 0 0 0 +-2.257 3.575 -1.763 0 0 0 0 0 0 0 +-2.277 3.582 -1.771 0 0 0 0 0 0 0 +-2.288 3.573 -1.77 0 0 0 0 0 0 0 +-2.298 3.577 -1.774 0 0 0 0 0 0 0 +-2.317 3.582 -1.78 0 0 0 0 0 0 0 +-2.348 3.606 -1.797 0 0 0 0 0 0 0 +-2.371 3.617 -1.806 0 0 0 0 0 0 0 +-2.366 3.583 -1.793 0 0 0 0 0 0 0 +-2.371 3.567 -1.788 0 0 0 0 0 0 0 +-2.385 3.564 -1.79 0 0 0 0 0 0 0 +-2.388 3.544 -1.784 0 0 0 0 0 0 0 +-2.401 3.551 -1.789 0 0 0 0 0 0 0 +-2.421 3.557 -1.797 0 0 0 0 0 0 0 +-2.423 3.536 -1.789 0 0 0 0 0 0 0 +-0.838 1.111 -0.502 0 0 0 0 0 0 0 +-3.016 3.049 -1.79 0 0 0 0 0 0 0 +-3.021 3.036 -1.788 0 0 0 0 0 0 0 +-3.018 3.023 -1.783 0 0 0 0 0 0 0 +-3.015 3.001 -1.775 0 0 0 0 0 0 0 +-3.024 2.991 -1.775 0 0 0 0 0 0 0 +-3.032 2.98 -1.774 0 0 0 0 0 0 0 +-3.056 2.985 -1.783 0 0 0 0 0 0 0 +-3.058 2.968 -1.778 0 0 0 0 0 0 0 +-3.076 2.967 -1.784 0 0 0 0 0 0 0 +-3.085 2.966 -1.786 0 0 0 0 0 0 0 +-3.085 2.947 -1.78 0 0 0 0 0 0 0 +-3.123 2.965 -1.798 0 0 0 0 0 0 0 +-3.319 2.733 -1.795 0 0 0 0 0 0 0 +-3.319 2.715 -1.79 0 0 0 0 0 0 0 +-3.301 2.683 -1.775 0 0 0 0 0 0 0 +-3.314 2.685 -1.78 0 0 0 0 0 0 0 +-3.325 2.676 -1.781 0 0 0 0 0 0 0 +-3.349 2.679 -1.79 0 0 0 0 0 0 0 +-3.334 2.65 -1.777 0 0 0 0 0 0 0 +-3.358 2.652 -1.786 0 0 0 0 0 0 0 +-3.348 2.627 -1.775 0 0 0 0 0 0 0 +-3.365 2.623 -1.78 0 0 0 0 0 0 0 +-3.371 2.619 -1.781 0 0 0 0 0 0 0 +-3.387 2.615 -1.786 0 0 0 0 0 0 0 +-3.387 2.597 -1.781 0 0 0 0 0 0 0 +-3.395 2.587 -1.781 0 0 0 0 0 0 0 +-3.405 2.577 -1.782 0 0 0 0 0 0 0 +-3.413 2.566 -1.782 0 0 0 0 0 0 0 +-3.422 2.557 -1.783 0 0 0 0 0 0 0 +-3.426 2.543 -1.78 0 0 0 0 0 0 0 +-3.436 2.542 -1.784 0 0 0 0 0 0 0 +-3.436 2.526 -1.78 0 0 0 0 0 0 0 +-3.45 2.519 -1.783 0 0 0 0 0 0 0 +-3.455 2.506 -1.781 0 0 0 0 0 0 0 +-3.459 2.492 -1.779 0 0 0 0 0 0 0 +-3.472 2.485 -1.782 0 0 0 0 0 0 0 +-3.477 2.472 -1.78 0 0 0 0 0 0 0 +-3.478 2.465 -1.779 0 0 0 0 0 0 0 +-3.484 2.453 -1.778 0 0 0 0 0 0 0 +-3.498 2.446 -1.781 0 0 0 0 0 0 0 +-3.506 2.435 -1.781 0 0 0 0 0 0 0 +-3.513 2.424 -1.781 0 0 0 0 0 0 0 +-3.528 2.418 -1.785 0 0 0 0 0 0 0 +-3.537 2.408 -1.786 0 0 0 0 0 0 0 +-3.538 2.4 -1.784 0 0 0 0 0 0 0 +-3.549 2.391 -1.786 0 0 0 0 0 0 0 +-3.55 2.376 -1.783 0 0 0 0 0 0 0 +-3.567 2.371 -1.788 0 0 0 0 0 0 0 +-3.566 2.355 -1.784 0 0 0 0 0 0 0 +-3.572 2.343 -1.783 0 0 0 0 0 0 0 +-3.586 2.335 -1.786 0 0 0 0 0 0 0 +-3.58 2.324 -1.781 0 0 0 0 0 0 0 +-3.589 2.313 -1.782 0 0 0 0 0 0 0 +-3.601 2.305 -1.784 0 0 0 0 0 0 0 +-3.608 2.294 -1.784 0 0 0 0 0 0 0 +-3.615 2.282 -1.784 0 0 0 0 0 0 0 +-3.621 2.27 -1.784 0 0 0 0 0 0 0 +-3.63 2.26 -1.784 0 0 0 0 0 0 0 +-3.632 2.245 -1.782 0 0 0 0 0 0 0 +-3.65 2.248 -1.789 0 0 0 0 0 0 0 +-3.653 2.235 -1.788 0 0 0 0 0 0 0 +-3.668 2.228 -1.792 0 0 0 0 0 0 0 +-3.661 2.208 -1.784 0 0 0 0 0 0 0 +-3.667 2.196 -1.784 0 0 0 0 0 0 0 +-3.667 2.18 -1.78 0 0 0 0 0 0 0 +-3.682 2.174 -1.784 0 0 0 0 0 0 0 +-3.688 2.17 -1.786 0 0 0 0 0 0 0 +-3.695 2.158 -1.786 0 0 0 0 0 0 0 +-3.705 2.148 -1.788 0 0 0 0 0 0 0 +-3.713 2.138 -1.788 0 0 0 0 0 0 0 +-3.738 2.136 -1.797 0 0 0 0 0 0 0 +-3.834 -2.08 -1.823 0 0 0 0 0 0 0 +-3.817 -2.086 -1.818 0 0 0 0 0 0 0 +-3.801 -2.093 -1.813 0 0 0 0 0 0 0 +-3.801 -2.109 -1.816 0 0 0 0 0 0 0 +-3.802 -2.125 -1.82 0 0 0 0 0 0 0 +-3.791 -2.134 -1.818 0 0 0 0 0 0 0 +-3.791 -2.15 -1.821 0 0 0 0 0 0 0 +-3.789 -2.157 -1.822 0 0 0 0 0 0 0 +-3.771 -2.162 -1.816 0 0 0 0 0 0 0 +-3.764 -2.174 -1.816 0 0 0 0 0 0 0 +-3.748 -2.18 -1.811 0 0 0 0 0 0 0 +-3.754 -2.199 -1.818 0 0 0 0 0 0 0 +-3.737 -2.206 -1.813 0 0 0 0 0 0 0 +-3.732 -2.218 -1.814 0 0 0 0 0 0 0 +-3.734 -2.236 -1.819 0 0 0 0 0 0 0 +-3.724 -2.238 -1.815 0 0 0 0 0 0 0 +-3.719 -2.25 -1.816 0 0 0 0 0 0 0 +-3.71 -2.261 -1.815 0 0 0 0 0 0 0 +-3.706 -2.275 -1.817 0 0 0 0 0 0 0 +-3.702 -2.288 -1.819 0 0 0 0 0 0 0 +-3.698 -2.302 -1.82 0 0 0 0 0 0 0 +-3.694 -2.315 -1.822 0 0 0 0 0 0 0 +-3.681 -2.315 -1.817 0 0 0 0 0 0 0 +-3.677 -2.329 -1.819 0 0 0 0 0 0 0 +-3.666 -2.338 -1.817 0 0 0 0 0 0 0 +-3.667 -2.355 -1.821 0 0 0 0 0 0 0 +-3.658 -2.365 -1.82 0 0 0 0 0 0 0 +-3.641 -2.371 -1.815 0 0 0 0 0 0 0 +-3.644 -2.389 -1.821 0 0 0 0 0 0 0 +-3.638 -2.393 -1.819 0 0 0 0 0 0 0 +-3.632 -2.405 -1.82 0 0 0 0 0 0 0 +-3.619 -2.414 -1.818 0 0 0 0 0 0 0 +-3.6 -2.417 -1.811 0 0 0 0 0 0 0 +-3.601 -2.434 -1.816 0 0 0 0 0 0 0 +-3.593 -2.446 -1.816 0 0 0 0 0 0 0 +-3.584 -2.456 -1.815 0 0 0 0 0 0 0 +-3.576 -2.459 -1.813 0 0 0 0 0 0 0 +-3.574 -2.474 -1.816 0 0 0 0 0 0 0 +-3.563 -2.483 -1.814 0 0 0 0 0 0 0 +-3.559 -2.496 -1.816 0 0 0 0 0 0 0 +-3.56 -2.514 -1.821 0 0 0 0 0 0 0 +-3.543 -2.519 -1.816 0 0 0 0 0 0 0 +-3.538 -2.532 -1.818 0 0 0 0 0 0 0 +-3.537 -2.54 -1.819 0 0 0 0 0 0 0 +-3.53 -2.552 -1.82 0 0 0 0 0 0 0 +-3.528 -2.567 -1.823 0 0 0 0 0 0 0 +-3.517 -2.576 -1.822 0 0 0 0 0 0 0 +-3.512 -2.589 -1.823 0 0 0 0 0 0 0 +-3.507 -2.602 -1.825 0 0 0 0 0 0 0 +-3.497 -2.612 -1.824 0 0 0 0 0 0 0 +-3.495 -2.619 -1.825 0 0 0 0 0 0 0 +-3.482 -2.627 -1.823 0 0 0 0 0 0 0 +-3.478 -2.641 -1.825 0 0 0 0 0 0 0 +-3.487 -2.665 -1.835 0 0 0 0 0 0 0 +-3.47 -2.669 -1.83 0 0 0 0 0 0 0 +-3.459 -2.678 -1.828 0 0 0 0 0 0 0 +-3.455 -2.692 -1.831 0 0 0 0 0 0 0 +-3.459 -2.704 -1.836 0 0 0 0 0 0 0 +-3.454 -2.717 -1.837 0 0 0 0 0 0 0 +-3.265 -2.9 -1.825 0 0 0 0 0 0 0 +-3.257 -2.903 -1.823 0 0 0 0 0 0 0 +-3.239 -2.905 -1.818 0 0 0 0 0 0 0 +-3.232 -2.917 -1.819 0 0 0 0 0 0 0 +-3.222 -2.926 -1.819 0 0 0 0 0 0 0 +-3.227 -2.95 -1.827 0 0 0 0 0 0 0 +-3.191 -2.954 -1.817 0 0 0 0 0 0 0 +-3.18 -2.953 -1.813 0 0 0 0 0 0 0 +-3.176 -2.968 -1.816 0 0 0 0 0 0 0 +-3.16 -2.972 -1.812 0 0 0 0 0 0 0 +-3.149 -2.98 -1.811 0 0 0 0 0 0 0 +-3.14 -2.99 -1.811 0 0 0 0 0 0 0 +-3.126 -2.996 -1.809 0 0 0 0 0 0 0 +-3.12 -3.009 -1.81 0 0 0 0 0 0 0 +-3.124 -3.022 -1.816 0 0 0 0 0 0 0 +-3.104 -3.022 -1.81 0 0 0 0 0 0 0 +-3.092 -3.029 -1.808 0 0 0 0 0 0 0 +-3.098 -3.054 -1.818 0 0 0 0 0 0 0 +-3.072 -3.047 -1.807 0 0 0 0 0 0 0 +-3.061 -3.056 -1.806 0 0 0 0 0 0 0 +-3.071 -3.084 -1.819 0 0 0 0 0 0 0 +-3.046 -3.07 -1.806 0 0 0 0 0 0 0 +-3.065 -3.108 -1.824 0 0 0 0 0 0 0 +-2.504 -3.544 -1.813 0 0 0 0 0 0 0 +-2.464 -3.535 -1.799 0 0 0 0 0 0 0 +-2.455 -3.545 -1.801 0 0 0 0 0 0 0 +-2.441 -3.55 -1.799 0 0 0 0 0 0 0 +-2.428 -3.555 -1.797 0 0 0 0 0 0 0 +-2.416 -3.561 -1.797 0 0 0 0 0 0 0 +-2.41 -3.565 -1.797 0 0 0 0 0 0 0 +-2.4 -3.574 -1.797 0 0 0 0 0 0 0 +-2.39 -3.583 -1.798 0 0 0 0 0 0 0 +-2.37 -3.576 -1.791 0 0 0 0 0 0 0 +-2.363 -3.591 -1.795 0 0 0 0 0 0 0 +-2.352 -3.599 -1.795 0 0 0 0 0 0 0 +-2.343 -3.609 -1.797 0 0 0 0 0 0 0 +-2.337 -3.613 -1.797 0 0 0 0 0 0 0 +-2.327 -3.622 -1.797 0 0 0 0 0 0 0 +-2.316 -3.631 -1.798 0 0 0 0 0 0 0 +-2.304 -3.636 -1.797 0 0 0 0 0 0 0 +-2.295 -3.648 -1.8 0 0 0 0 0 0 0 +-2.279 -3.648 -1.796 0 0 0 0 0 0 0 +-2.272 -3.663 -1.8 0 0 0 0 0 0 0 +-2.262 -3.658 -1.796 0 0 0 0 0 0 0 +-2.25 -3.665 -1.796 0 0 0 0 0 0 0 +-2.244 -3.68 -1.8 0 0 0 0 0 0 0 +-2.233 -3.689 -1.801 0 0 0 0 0 0 0 +-2.223 -3.699 -1.802 0 0 0 0 0 0 0 +-2.209 -3.701 -1.8 0 0 0 0 0 0 0 +-2.197 -3.708 -1.8 0 0 0 0 0 0 0 +-2.194 -3.716 -1.802 0 0 0 0 0 0 0 +-2.184 -3.726 -1.804 0 0 0 0 0 0 0 +-2.171 -3.73 -1.802 0 0 0 0 0 0 0 +-2.156 -3.732 -1.8 0 0 0 0 0 0 0 +-2.151 -3.75 -1.806 0 0 0 0 0 0 0 +-2.139 -3.757 -1.806 0 0 0 0 0 0 0 +-2.123 -3.755 -1.801 0 0 0 0 0 0 0 +-2.125 -3.773 -1.809 0 0 0 0 0 0 0 +-2.105 -3.765 -1.801 0 0 0 0 0 0 0 +-2.108 -3.798 -1.814 0 0 0 0 0 0 0 +-2.104 -3.818 -1.822 0 0 0 0 0 0 0 +-2.105 -3.849 -1.834 0 0 0 0 0 0 0 +-2.208 -4.065 -1.94 0 0 0 0 0 0 0 +-2.047 -3.801 -1.803 0 0 0 0 0 0 0 +-2.028 -3.793 -1.796 0 0 0 0 0 0 0 +-2.03 -3.811 -1.803 0 0 0 0 0 0 0 +-2.007 -3.798 -1.793 0 0 0 0 0 0 0 +-2 -3.812 -1.797 0 0 0 0 0 0 0 +-1.991 -3.825 -1.801 0 0 0 0 0 0 0 +-1.984 -3.841 -1.806 0 0 0 0 0 0 0 +-1.964 -3.833 -1.798 0 0 0 0 0 0 0 +-1.958 -3.85 -1.804 0 0 0 0 0 0 0 +-1.948 -3.845 -1.8 0 0 0 0 0 0 0 +-1.939 -3.858 -1.803 0 0 0 0 0 0 0 +-1.916 -3.842 -1.793 0 0 0 0 0 0 0 +-1.905 -3.85 -1.793 0 0 0 0 0 0 0 +-1.889 -3.848 -1.789 0 0 0 0 0 0 0 +-1.873 -3.846 -1.785 0 0 0 0 0 0 0 +-1.87 -3.871 -1.795 0 0 0 0 0 0 0 +-1.858 -3.861 -1.788 0 0 0 0 0 0 0 +-1.84 -3.855 -1.783 0 0 0 0 0 0 0 +-1.83 -3.866 -1.785 0 0 0 0 0 0 0 +-1.813 -3.862 -1.78 0 0 0 0 0 0 0 +-1.801 -3.868 -1.78 0 0 0 0 0 0 0 +-1.791 -3.876 -1.782 0 0 0 0 0 0 0 +-1.772 -3.869 -1.775 0 0 0 0 0 0 0 +-1.768 -3.875 -1.777 0 0 0 0 0 0 0 +-1.759 -3.887 -1.78 0 0 0 0 0 0 0 +-1.74 -3.879 -1.774 0 0 0 0 0 0 0 +-1.727 -3.881 -1.772 0 0 0 0 0 0 0 +-1.72 -3.9 -1.779 0 0 0 0 0 0 0 +-1.699 -3.884 -1.768 0 0 0 0 0 0 0 +-1.689 -3.894 -1.771 0 0 0 0 0 0 0 +-1.685 -3.902 -1.773 0 0 0 0 0 0 0 +-1.668 -3.897 -1.768 0 0 0 0 0 0 0 +-1.654 -3.899 -1.767 0 0 0 0 0 0 0 +-1.649 -3.921 -1.775 0 0 0 0 0 0 0 +-1.629 -3.908 -1.766 0 0 0 0 0 0 0 +-1.617 -3.914 -1.767 0 0 0 0 0 0 0 +-1.608 -3.926 -1.77 0 0 0 0 0 0 0 +-1.597 -3.917 -1.764 0 0 0 0 0 0 0 +-1.585 -3.922 -1.764 0 0 0 0 0 0 0 +-1.574 -3.932 -1.767 0 0 0 0 0 0 0 +-1.556 -3.922 -1.759 0 0 0 0 0 0 0 +-1.543 -3.926 -1.759 0 0 0 0 0 0 0 +-1.534 -3.938 -1.762 0 0 0 0 0 0 0 +-1.519 -3.938 -1.76 0 0 0 0 0 0 0 +-1.515 -3.944 -1.762 0 0 0 0 0 0 0 +-1.506 -3.957 -1.766 0 0 0 0 0 0 0 +-1.486 -3.943 -1.757 0 0 0 0 0 0 0 +-1.475 -3.951 -1.758 0 0 0 0 0 0 0 +-1.461 -3.952 -1.757 0 0 0 0 0 0 0 +-1.447 -3.951 -1.754 0 0 0 0 0 0 0 +-1.437 -3.965 -1.758 0 0 0 0 0 0 0 +-1.429 -3.962 -1.756 0 0 0 0 0 0 0 +-1.417 -3.966 -1.756 0 0 0 0 0 0 0 +-1.405 -3.972 -1.757 0 0 0 0 0 0 0 +-1.388 -3.963 -1.75 0 0 0 0 0 0 0 +-1.378 -3.974 -1.754 0 0 0 0 0 0 0 +-1.367 -3.984 -1.756 0 0 0 0 0 0 0 +-1.352 -3.981 -1.753 0 0 0 0 0 0 0 +-1.345 -3.98 -1.751 0 0 0 0 0 0 0 +-1.334 -3.989 -1.754 0 0 0 0 0 0 0 +-1.322 -3.995 -1.754 0 0 0 0 0 0 0 +-1.308 -3.994 -1.752 0 0 0 0 0 0 0 +-1.294 -3.996 -1.751 0 0 0 0 0 0 0 +-1.282 -4 -1.751 0 0 0 0 0 0 0 +-1.269 -4.004 -1.751 0 0 0 0 0 0 0 +-1.26 -3.996 -1.746 0 0 0 0 0 0 0 +-1.247 -3.998 -1.745 0 0 0 0 0 0 0 +-1.237 -4.011 -1.749 0 0 0 0 0 0 0 +-1.222 -4.007 -1.746 0 0 0 0 0 0 0 +-1.207 -4.003 -1.742 0 0 0 0 0 0 0 +-1.198 -4.02 -1.749 0 0 0 0 0 0 0 +-1.184 -4.017 -1.745 0 0 0 0 0 0 0 +-1.176 -4.015 -1.744 0 0 0 0 0 0 0 +-1.165 -4.023 -1.745 0 0 0 0 0 0 0 +-1.149 -4.017 -1.741 0 0 0 0 0 0 0 +-1.139 -4.028 -1.745 0 0 0 0 0 0 0 +-1.125 -4.028 -1.743 0 0 0 0 0 0 0 +-1.113 -4.032 -1.743 0 0 0 0 0 0 0 +-1.099 -4.033 -1.742 0 0 0 0 0 0 0 +-1.093 -4.033 -1.741 0 0 0 0 0 0 0 +-1.079 -4.035 -1.741 0 0 0 0 0 0 0 +-1.065 -4.033 -1.738 0 0 0 0 0 0 0 +-1.056 -4.049 -1.744 0 0 0 0 0 0 0 +-1.04 -4.041 -1.739 0 0 0 0 0 0 0 +-1.029 -4.048 -1.741 0 0 0 0 0 0 0 +-1.015 -4.05 -1.74 0 0 0 0 0 0 0 +-1.004 -4.056 -1.741 0 0 0 0 0 0 0 +-0.998 -4.062 -1.743 0 0 0 0 0 0 0 +-0.987 -4.072 -1.746 0 0 0 0 0 0 0 +-0.972 -4.064 -1.741 0 0 0 0 0 0 0 +-0.958 -4.064 -1.74 0 0 0 0 0 0 0 +-0.945 -4.065 -1.739 0 0 0 0 0 0 0 +-0.933 -4.073 -1.741 0 0 0 0 0 0 0 +-0.919 -4.069 -1.738 0 0 0 0 0 0 0 +-0.913 -4.074 -1.74 0 0 0 0 0 0 0 +-0.902 -4.082 -1.742 0 0 0 0 0 0 0 +-0.887 -4.074 -1.737 0 0 0 0 0 0 0 +-0.876 -4.086 -1.741 0 0 0 0 0 0 0 +-0.862 -4.083 -1.739 0 0 0 0 0 0 0 +-0.849 -4.086 -1.739 0 0 0 0 0 0 0 +-0.842 -4.086 -1.738 0 0 0 0 0 0 0 +-0.83 -4.094 -1.741 0 0 0 0 0 0 0 +-0.817 -4.094 -1.74 0 0 0 0 0 0 0 +-0.807 -4.109 -1.745 0 0 0 0 0 0 0 +-0.792 -4.103 -1.741 0 0 0 0 0 0 0 +-0.78 -4.109 -1.743 0 0 0 0 0 0 0 +-0.767 -4.113 -1.744 0 0 0 0 0 0 0 +-0.753 -4.107 -1.74 0 0 0 0 0 0 0 +-0.747 -4.113 -1.742 0 0 0 0 0 0 0 +-0.735 -4.117 -1.743 0 0 0 0 0 0 0 +-0.723 -4.127 -1.746 0 0 0 0 0 0 0 +-0.709 -4.122 -1.743 0 0 0 0 0 0 0 +-0.695 -4.12 -1.741 0 0 0 0 0 0 0 +-0.683 -4.126 -1.743 0 0 0 0 0 0 0 +-0.671 -4.136 -1.746 0 0 0 0 0 0 0 +-0.664 -4.131 -1.744 0 0 0 0 0 0 0 +-0.651 -4.133 -1.744 0 0 0 0 0 0 0 +-0.638 -4.139 -1.745 0 0 0 0 0 0 0 +-0.625 -4.137 -1.744 0 0 0 0 0 0 0 +-0.613 -4.148 -1.748 0 0 0 0 0 0 0 +-0.598 -4.139 -1.743 0 0 0 0 0 0 0 +-0.587 -4.152 -1.748 0 0 0 0 0 0 0 +-0.579 -4.144 -1.744 0 0 0 0 0 0 0 +-0.567 -4.153 -1.747 0 0 0 0 0 0 0 +-0.552 -4.14 -1.741 0 0 0 0 0 0 0 +-0.541 -4.153 -1.745 0 0 0 0 0 0 0 +-0.528 -4.154 -1.745 0 0 0 0 0 0 0 +-0.516 -4.171 -1.752 0 0 0 0 0 0 0 +-0.502 -4.161 -1.747 0 0 0 0 0 0 0 +-0.495 -4.157 -1.745 0 0 0 0 0 0 0 +-0.482 -4.162 -1.746 0 0 0 0 0 0 0 +-0.468 -4.158 -1.744 0 0 0 0 0 0 0 +-0.456 -4.168 -1.748 0 0 0 0 0 0 0 +-0.442 -4.159 -1.743 0 0 0 0 0 0 0 +-0.43 -4.166 -1.745 0 0 0 0 0 0 0 +-0.419 -4.187 -1.754 0 0 0 0 0 0 0 +-0.41 -4.173 -1.748 0 0 0 0 0 0 0 +-0.397 -4.167 -1.745 0 0 0 0 0 0 0 +-0.386 -4.19 -1.754 0 0 0 0 0 0 0 +-0.37 -4.166 -1.743 0 0 0 0 0 0 0 +-0.358 -4.18 -1.749 0 0 0 0 0 0 0 +-0.345 -4.179 -1.748 0 0 0 0 0 0 0 +-0.331 -4.171 -1.744 0 0 0 0 0 0 0 +-0.325 -4.181 -1.748 0 0 0 0 0 0 0 +-0.312 -4.187 -1.75 0 0 0 0 0 0 0 +-0.299 -4.184 -1.749 0 0 0 0 0 0 0 +-0.286 -4.184 -1.748 0 0 0 0 0 0 0 +-0.273 -4.188 -1.749 0 0 0 0 0 0 0 +-0.259 -4.18 -1.745 0 0 0 0 0 0 0 +-0.247 -4.199 -1.754 0 0 0 0 0 0 0 +-0.24 -4.194 -1.751 0 0 0 0 0 0 0 +-0.226 -4.176 -1.743 0 0 0 0 0 0 0 +-0.214 -4.192 -1.749 0 0 0 0 0 0 0 +-0.201 -4.194 -1.75 0 0 0 0 0 0 0 +-0.187 -4.187 -1.747 0 0 0 0 0 0 0 +-0.174 -4.193 -1.749 0 0 0 0 0 0 0 +-0.161 -4.194 -1.749 0 0 0 0 0 0 0 +-0.154 -4.192 -1.749 0 0 0 0 0 0 0 +-0.141 -4.2 -1.752 0 0 0 0 0 0 0 +-0.128 -4.19 -1.747 0 0 0 0 0 0 0 +-0.115 -4.201 -1.752 0 0 0 0 0 0 0 +-0.102 -4.198 -1.75 0 0 0 0 0 0 0 +-0.089 -4.203 -1.753 0 0 0 0 0 0 0 +-0.075 -4.194 -1.749 0 0 0 0 0 0 0 +-0.069 -4.193 -1.748 0 0 0 0 0 0 0 +-0.055 -4.193 -1.748 0 0 0 0 0 0 0 +-0.042 -4.193 -1.748 0 0 0 0 0 0 0 +-0.029 -4.195 -1.749 0 0 0 0 0 0 0 +-0.016 -4.197 -1.749 0 0 0 0 0 0 0 +-0.003 -4.197 -1.749 0 0 0 0 0 0 0 +0.01 -4.195 -1.749 0 0 0 0 0 0 0 +0.017 -4.201 -1.751 0 0 0 0 0 0 0 +0.03 -4.21 -1.755 0 0 0 0 0 0 0 +0.043 -4.202 -1.752 0 0 0 0 0 0 0 +0.056 -4.187 -1.745 0 0 0 0 0 0 0 +0.07 -4.204 -1.753 0 0 0 0 0 0 0 +0.083 -4.194 -1.749 0 0 0 0 0 0 0 +0.096 -4.196 -1.749 0 0 0 0 0 0 0 +0.103 -4.203 -1.753 0 0 0 0 0 0 0 +0.116 -4.21 -1.756 0 0 0 0 0 0 0 +0.13 -4.226 -1.763 0 0 0 0 0 0 0 +0.346 -4.274 -1.79 0 0 0 0 0 0 0 +0.355 -4.211 -1.762 0 0 0 0 0 0 0 +0.363 -4.222 -1.767 0 0 0 0 0 0 0 +0.374 -4.202 -1.759 0 0 0 0 0 0 0 +0.385 -4.168 -1.745 0 0 0 0 0 0 0 +0.4 -4.193 -1.756 0 0 0 0 0 0 0 +0.415 -4.208 -1.763 0 0 0 0 0 0 0 +0.428 -4.208 -1.764 0 0 0 0 0 0 0 +0.439 -4.179 -1.752 0 0 0 0 0 0 0 +0.456 -4.22 -1.771 0 0 0 0 0 0 0 +0.46 -4.196 -1.76 0 0 0 0 0 0 0 +0.475 -4.207 -1.766 0 0 0 0 0 0 0 +0.487 -4.196 -1.762 0 0 0 0 0 0 0 +0.503 -4.218 -1.772 0 0 0 0 0 0 0 +0.512 -4.182 -1.757 0 0 0 0 0 0 0 +0.527 -4.191 -1.762 0 0 0 0 0 0 0 +0.538 -4.173 -1.754 0 0 0 0 0 0 0 +0.546 -4.183 -1.759 0 0 0 0 0 0 0 +0.56 -4.189 -1.762 0 0 0 0 0 0 0 +0.57 -4.167 -1.754 0 0 0 0 0 0 0 +0.586 -4.187 -1.763 0 0 0 0 0 0 0 +0.598 -4.174 -1.758 0 0 0 0 0 0 0 +0.61 -4.164 -1.754 0 0 0 0 0 0 0 +0.617 -4.166 -1.756 0 0 0 0 0 0 0 +0.631 -4.17 -1.758 0 0 0 0 0 0 0 +0.644 -4.171 -1.76 0 0 0 0 0 0 0 +1.505 -4.031 -1.797 0 0 0 0 0 0 0 +1.512 -4.011 -1.789 0 0 0 0 0 0 0 +1.523 -4.003 -1.788 0 0 0 0 0 0 0 +1.53 -3.983 -1.78 0 0 0 0 0 0 0 +1.545 -3.983 -1.783 0 0 0 0 0 0 0 +1.558 -3.98 -1.784 0 0 0 0 0 0 0 +1.558 -3.962 -1.776 0 0 0 0 0 0 0 +1.57 -3.955 -1.775 0 0 0 0 0 0 0 +1.58 -3.944 -1.772 0 0 0 0 0 0 0 +1.593 -3.94 -1.773 0 0 0 0 0 0 0 +1.605 -3.935 -1.773 0 0 0 0 0 0 0 +1.627 -3.954 -1.784 0 0 0 0 0 0 0 +1.637 -3.944 -1.782 0 0 0 0 0 0 0 +1.645 -3.945 -1.784 0 0 0 0 0 0 0 +1.647 -3.916 -1.772 0 0 0 0 0 0 0 +1.657 -3.904 -1.769 0 0 0 0 0 0 0 +1.672 -3.905 -1.772 0 0 0 0 0 0 0 +1.689 -3.912 -1.778 0 0 0 0 0 0 0 +1.698 -3.898 -1.774 0 0 0 0 0 0 0 +1.708 -3.888 -1.771 0 0 0 0 0 0 0 +1.716 -3.888 -1.773 0 0 0 0 0 0 0 +1.727 -3.881 -1.772 0 0 0 0 0 0 0 +1.741 -3.881 -1.775 0 0 0 0 0 0 0 +1.75 -3.867 -1.771 0 0 0 0 0 0 0 +1.765 -3.868 -1.774 0 0 0 0 0 0 0 +1.773 -3.854 -1.77 0 0 0 0 0 0 0 +1.789 -3.855 -1.773 0 0 0 0 0 0 0 +1.798 -3.861 -1.777 0 0 0 0 0 0 0 +1.809 -3.852 -1.775 0 0 0 0 0 0 0 +1.822 -3.848 -1.776 0 0 0 0 0 0 0 +1.834 -3.842 -1.776 0 0 0 0 0 0 0 +1.841 -3.825 -1.771 0 0 0 0 0 0 0 +1.859 -3.832 -1.777 0 0 0 0 0 0 0 +1.872 -3.829 -1.779 0 0 0 0 0 0 0 +1.874 -3.818 -1.775 0 0 0 0 0 0 0 +1.885 -3.809 -1.773 0 0 0 0 0 0 0 +1.902 -3.813 -1.778 0 0 0 0 0 0 0 +1.911 -3.802 -1.775 0 0 0 0 0 0 0 +1.924 -3.798 -1.776 0 0 0 0 0 0 0 +1.934 -3.788 -1.775 0 0 0 0 0 0 0 +1.946 -3.782 -1.775 0 0 0 0 0 0 0 +1.956 -3.787 -1.779 0 0 0 0 0 0 0 +1.966 -3.778 -1.777 0 0 0 0 0 0 0 +1.978 -3.772 -1.777 0 0 0 0 0 0 0 +1.99 -3.766 -1.777 0 0 0 0 0 0 0 +2.01 -3.774 -1.784 0 0 0 0 0 0 0 +2.013 -3.751 -1.776 0 0 0 0 0 0 0 +2.028 -3.751 -1.78 0 0 0 0 0 0 0 +2.034 -3.748 -1.78 0 0 0 0 0 0 0 +2.044 -3.739 -1.778 0 0 0 0 0 0 0 +2.057 -3.734 -1.779 0 0 0 0 0 0 0 +2.066 -3.723 -1.776 0 0 0 0 0 0 0 +2.082 -3.724 -1.78 0 0 0 0 0 0 0 +2.094 -3.717 -1.78 0 0 0 0 0 0 0 +2.1 -3.701 -1.775 0 0 0 0 0 0 0 +2.107 -3.701 -1.777 0 0 0 0 0 0 0 +2.12 -3.696 -1.778 0 0 0 0 0 0 0 +2.133 -3.693 -1.78 0 0 0 0 0 0 0 +2.144 -3.684 -1.779 0 0 0 0 0 0 0 +2.163 -3.69 -1.785 0 0 0 0 0 0 0 +2.165 -3.668 -1.777 0 0 0 0 0 0 0 +2.177 -3.661 -1.777 0 0 0 0 0 0 0 +2.19 -3.67 -1.784 0 0 0 0 0 0 0 +2.197 -3.655 -1.78 0 0 0 0 0 0 0 +2.211 -3.653 -1.782 0 0 0 0 0 0 0 +2.222 -3.644 -1.781 0 0 0 0 0 0 0 +2.24 -3.648 -1.787 0 0 0 0 0 0 0 +2.238 -3.62 -1.775 0 0 0 0 0 0 0 +2.257 -3.625 -1.782 0 0 0 0 0 0 0 +2.263 -3.621 -1.782 0 0 0 0 0 0 0 +2.271 -3.61 -1.78 0 0 0 0 0 0 0 +2.291 -3.616 -1.787 0 0 0 0 0 0 0 +2.298 -3.601 -1.783 0 0 0 0 0 0 0 +2.309 -3.594 -1.783 0 0 0 0 0 0 0 +2.324 -3.593 -1.786 0 0 0 0 0 0 0 +2.335 -3.586 -1.786 0 0 0 0 0 0 0 +2.341 -3.582 -1.786 0 0 0 0 0 0 0 +2.355 -3.579 -1.788 0 0 0 0 0 0 0 +2.357 -3.558 -1.781 0 0 0 0 0 0 0 +2.37 -3.552 -1.782 0 0 0 0 0 0 0 +2.388 -3.555 -1.788 0 0 0 0 0 0 0 +2.396 -3.543 -1.785 0 0 0 0 0 0 0 +2.413 -3.545 -1.79 0 0 0 0 0 0 0 +2.414 -3.534 -1.786 0 0 0 0 0 0 0 +2.427 -3.529 -1.788 0 0 0 0 0 0 0 +2.433 -3.514 -1.784 0 0 0 0 0 0 0 +2.449 -3.514 -1.788 0 0 0 0 0 0 0 +2.462 -3.509 -1.789 0 0 0 0 0 0 0 +2.472 -3.5 -1.788 0 0 0 0 0 0 0 +2.49 -3.502 -1.794 0 0 0 0 0 0 0 +2.484 -3.482 -1.785 0 0 0 0 0 0 0 +2.5 -3.482 -1.789 0 0 0 0 0 0 0 +2.515 -3.478 -1.792 0 0 0 0 0 0 0 +2.531 -3.478 -1.796 0 0 0 0 0 0 0 +2.537 -3.464 -1.793 0 0 0 0 0 0 0 +2.549 -3.457 -1.793 0 0 0 0 0 0 0 +2.557 -3.445 -1.791 0 0 0 0 0 0 0 +2.559 -3.436 -1.788 0 0 0 0 0 0 0 +2.576 -3.437 -1.793 0 0 0 0 0 0 0 +2.58 -3.419 -1.788 0 0 0 0 0 0 0 +2.608 -3.434 -1.801 0 0 0 0 0 0 0 +2.6 -3.401 -1.787 0 0 0 0 0 0 0 +2.614 -3.397 -1.789 0 0 0 0 0 0 0 +2.621 -3.385 -1.787 0 0 0 0 0 0 0 +2.639 -3.397 -1.796 0 0 0 0 0 0 0 +2.64 -3.377 -1.789 0 0 0 0 0 0 0 +2.654 -3.373 -1.792 0 0 0 0 0 0 0 +2.667 -3.367 -1.793 0 0 0 0 0 0 0 +2.676 -3.356 -1.792 0 0 0 0 0 0 0 +2.682 -3.342 -1.788 0 0 0 0 0 0 0 +2.697 -3.339 -1.792 0 0 0 0 0 0 0 +2.7 -3.322 -1.787 0 0 0 0 0 0 0 +2.711 -3.325 -1.791 0 0 0 0 0 0 0 +2.723 -3.318 -1.792 0 0 0 0 0 0 0 +2.732 -3.308 -1.791 0 0 0 0 0 0 0 +2.747 -3.305 -1.794 0 0 0 0 0 0 0 +2.756 -3.295 -1.793 0 0 0 0 0 0 0 +2.768 -3.288 -1.794 0 0 0 0 0 0 0 +2.783 -3.284 -1.797 0 0 0 0 0 0 0 +2.775 -3.265 -1.788 0 0 0 0 0 0 0 +2.791 -3.263 -1.793 0 0 0 0 0 0 0 +2.803 -3.256 -1.793 0 0 0 0 0 0 0 +2.812 -3.245 -1.793 0 0 0 0 0 0 0 +2.827 -3.242 -1.796 0 0 0 0 0 0 0 +2.837 -3.233 -1.796 0 0 0 0 0 0 0 +2.835 -3.22 -1.791 0 0 0 0 0 0 0 +2.845 -3.211 -1.791 0 0 0 0 0 0 0 +2.857 -3.205 -1.793 0 0 0 0 0 0 0 +2.866 -3.195 -1.792 0 0 0 0 0 0 0 +2.878 -3.189 -1.793 0 0 0 0 0 0 0 +2.896 -3.188 -1.798 0 0 0 0 0 0 0 +2.903 -3.176 -1.797 0 0 0 0 0 0 0 +2.914 -3.178 -1.801 0 0 0 0 0 0 0 +2.913 -3.157 -1.793 0 0 0 0 0 0 0 +2.934 -3.16 -1.801 0 0 0 0 0 0 0 +2.936 -3.141 -1.795 0 0 0 0 0 0 0 +2.95 -3.137 -1.798 0 0 0 0 0 0 0 +2.949 -3.116 -1.791 0 0 0 0 0 0 0 +2.966 -3.115 -1.796 0 0 0 0 0 0 0 +2.972 -3.111 -1.797 0 0 0 0 0 0 0 +2.986 -3.106 -1.799 0 0 0 0 0 0 0 +2.988 -3.089 -1.794 0 0 0 0 0 0 0 +3.005 -3.087 -1.799 0 0 0 0 0 0 0 +3.005 -3.067 -1.793 0 0 0 0 0 0 0 +3.027 -3.071 -1.801 0 0 0 0 0 0 0 +3.033 -3.057 -1.798 0 0 0 0 0 0 0 +3.041 -3.046 -1.797 0 0 0 0 0 0 0 +3.045 -3.04 -1.797 0 0 0 0 0 0 0 +3.058 -3.035 -1.799 0 0 0 0 0 0 0 +3.068 -3.025 -1.799 0 0 0 0 0 0 0 +3.076 -3.014 -1.798 0 0 0 0 0 0 0 +3.092 -3.011 -1.802 0 0 0 0 0 0 0 +3.1 -3 -1.801 0 0 0 0 0 0 0 +3.106 -2.986 -1.799 0 0 0 0 0 0 0 +3.112 -2.983 -1.8 0 0 0 0 0 0 0 +3.116 -2.968 -1.797 0 0 0 0 0 0 0 +3.124 -2.957 -1.796 0 0 0 0 0 0 0 +3.132 -2.946 -1.795 0 0 0 0 0 0 0 +3.144 -2.938 -1.797 0 0 0 0 0 0 0 +3.153 -2.928 -1.797 0 0 0 0 0 0 0 +3.165 -2.921 -1.798 0 0 0 0 0 0 0 +3.159 -2.906 -1.792 0 0 0 0 0 0 0 +3.173 -2.901 -1.795 0 0 0 0 0 0 0 +3.178 -2.887 -1.793 0 0 0 0 0 0 0 +3.187 -2.877 -1.793 0 0 0 0 0 0 0 +3.207 -2.877 -1.799 0 0 0 0 0 0 0 +3.211 -2.862 -1.796 0 0 0 0 0 0 0 +3.208 -2.851 -1.792 0 0 0 0 0 0 0 +3.213 -2.837 -1.789 0 0 0 0 0 0 0 +3.222 -2.827 -1.789 0 0 0 0 0 0 0 +3.232 -2.818 -1.79 0 0 0 0 0 0 0 +3.247 -2.813 -1.793 0 0 0 0 0 0 0 +3.26 -2.806 -1.796 0 0 0 0 0 0 0 +3.259 -2.788 -1.79 0 0 0 0 0 0 0 +3.27 -2.78 -1.792 0 0 0 0 0 0 0 +3.259 -2.762 -1.783 0 0 0 0 0 0 0 +3.276 -2.758 -1.788 0 0 0 0 0 0 0 +3.282 -2.746 -1.786 0 0 0 0 0 0 0 +3.282 -2.728 -1.781 0 0 0 0 0 0 0 +3.527 -2.401 -1.78 0 0 0 0 0 0 0 +3.539 -2.393 -1.783 0 0 0 0 0 0 0 +3.548 -2.383 -1.784 0 0 0 0 0 0 0 +3.552 -2.369 -1.782 0 0 0 0 0 0 0 +3.549 -2.351 -1.776 0 0 0 0 0 0 0 +3.553 -2.338 -1.775 0 0 0 0 0 0 0 +3.56 -2.334 -1.776 0 0 0 0 0 0 0 +3.563 -2.32 -1.774 0 0 0 0 0 0 0 +3.599 -2.328 -1.789 0 0 0 0 0 0 0 +3.587 -2.304 -1.779 0 0 0 0 0 0 0 +3.598 -2.295 -1.781 0 0 0 0 0 0 0 +3.762 -1.973 -1.772 0 0 0 0 0 0 0 +3.776 -1.965 -1.776 0 0 0 0 0 0 0 +3.773 -1.956 -1.773 0 0 0 0 0 0 0 +3.784 -1.947 -1.775 0 0 0 0 0 0 0 +3.8 -1.94 -1.78 0 0 0 0 0 0 0 +3.798 -1.924 -1.776 0 0 0 0 0 0 0 +3.804 -1.912 -1.776 0 0 0 0 0 0 0 +3.807 -1.898 -1.775 0 0 0 0 0 0 0 +3.813 -1.886 -1.775 0 0 0 0 0 0 0 +3.819 -1.882 -1.776 0 0 0 0 0 0 0 +3.823 -1.869 -1.775 0 0 0 0 0 0 0 +3.821 -1.853 -1.771 0 0 0 0 0 0 0 +3.833 -1.844 -1.775 0 0 0 0 0 0 0 +3.832 -1.829 -1.771 0 0 0 0 0 0 0 +3.835 -1.815 -1.77 0 0 0 0 0 0 0 +3.849 -1.807 -1.774 0 0 0 0 0 0 0 +3.851 -1.801 -1.774 0 0 0 0 0 0 0 +3.852 -1.787 -1.771 0 0 0 0 0 0 0 +3.861 -1.776 -1.773 0 0 0 0 0 0 0 +3.867 -1.764 -1.773 0 0 0 0 0 0 0 +3.874 -1.753 -1.774 0 0 0 0 0 0 0 +3.879 -1.74 -1.774 0 0 0 0 0 0 0 +3.888 -1.73 -1.775 0 0 0 0 0 0 0 +3.886 -1.721 -1.773 0 0 0 0 0 0 0 +3.888 -1.708 -1.771 0 0 0 0 0 0 0 +3.9 -1.698 -1.775 0 0 0 0 0 0 0 +3.905 -1.686 -1.775 0 0 0 0 0 0 0 +3.915 -1.676 -1.777 0 0 0 0 0 0 0 +3.919 -1.663 -1.776 0 0 0 0 0 0 0 +3.914 -1.646 -1.771 0 0 0 0 0 0 0 +3.92 -1.642 -1.773 0 0 0 0 0 0 0 +3.924 -1.629 -1.772 0 0 0 0 0 0 0 +3.929 -1.616 -1.772 0 0 0 0 0 0 0 +3.94 -1.607 -1.775 0 0 0 0 0 0 0 +3.937 -1.591 -1.771 0 0 0 0 0 0 0 +3.949 -1.581 -1.775 0 0 0 0 0 0 0 +3.94 -1.563 -1.768 0 0 0 0 0 0 0 +3.953 -1.561 -1.773 0 0 0 0 0 0 0 +3.951 -1.546 -1.77 0 0 0 0 0 0 0 +3.964 -1.537 -1.774 0 0 0 0 0 0 0 +3.961 -1.521 -1.77 0 0 0 0 0 0 0 +3.964 -1.508 -1.769 0 0 0 0 0 0 0 +3.973 -1.498 -1.771 0 0 0 0 0 0 0 +3.985 -1.488 -1.775 0 0 0 0 0 0 0 +3.972 -1.476 -1.767 0 0 0 0 0 0 0 +3.983 -1.466 -1.771 0 0 0 0 0 0 0 +3.991 -1.455 -1.772 0 0 0 0 0 0 0 +3.986 -1.438 -1.767 0 0 0 0 0 0 0 +3.999 -1.429 -1.771 0 0 0 0 0 0 0 +3.998 -1.414 -1.769 0 0 0 0 0 0 0 +4.004 -1.402 -1.77 0 0 0 0 0 0 0 +4.006 -1.396 -1.77 0 0 0 0 0 0 0 +4.004 -1.381 -1.767 0 0 0 0 0 0 0 +4.005 -1.367 -1.765 0 0 0 0 0 0 0 +4.007 -1.354 -1.764 0 0 0 0 0 0 0 +4.015 -1.343 -1.766 0 0 0 0 0 0 0 +4.024 -1.332 -1.768 0 0 0 0 0 0 0 +3.823 1.429 -1.744 0 0 0 0 0 0 0 +3.789 1.43 -1.73 0 0 0 0 0 0 0 +3.799 1.447 -1.737 0 0 0 0 0 0 0 +3.796 1.46 -1.738 0 0 0 0 0 0 0 +3.778 1.466 -1.731 0 0 0 0 0 0 0 +3.788 1.484 -1.738 0 0 0 0 0 0 0 +3.782 1.495 -1.738 0 0 0 0 0 0 0 +3.773 1.498 -1.734 0 0 0 0 0 0 0 +3.775 1.513 -1.738 0 0 0 0 0 0 0 +3.765 1.523 -1.735 0 0 0 0 0 0 0 +3.767 1.537 -1.738 0 0 0 0 0 0 0 +3.762 1.549 -1.738 0 0 0 0 0 0 0 +3.755 1.56 -1.738 0 0 0 0 0 0 0 +3.743 1.562 -1.733 0 0 0 0 0 0 0 +3.748 1.578 -1.738 0 0 0 0 0 0 0 +3.745 1.591 -1.738 0 0 0 0 0 0 0 +3.741 1.603 -1.739 0 0 0 0 0 0 0 +3.745 1.618 -1.743 0 0 0 0 0 0 0 +3.726 1.624 -1.737 0 0 0 0 0 0 0 +3.716 1.634 -1.734 0 0 0 0 0 0 0 +3.725 1.645 -1.74 0 0 0 0 0 0 0 +3.712 1.653 -1.736 0 0 0 0 0 0 0 +3.711 1.667 -1.738 0 0 0 0 0 0 0 +3.709 1.68 -1.74 0 0 0 0 0 0 0 +3.699 1.689 -1.738 0 0 0 0 0 0 0 +3.691 1.699 -1.736 0 0 0 0 0 0 0 +3.687 1.712 -1.737 0 0 0 0 0 0 0 +3.687 1.719 -1.738 0 0 0 0 0 0 0 +3.685 1.732 -1.74 0 0 0 0 0 0 0 +3.68 1.744 -1.74 0 0 0 0 0 0 0 +3.678 1.757 -1.742 0 0 0 0 0 0 0 +3.661 1.763 -1.736 0 0 0 0 0 0 0 +3.665 1.779 -1.741 0 0 0 0 0 0 0 +3.646 1.784 -1.734 0 0 0 0 0 0 0 +3.654 1.802 -1.741 0 0 0 0 0 0 0 +3.648 1.806 -1.739 0 0 0 0 0 0 0 +3.643 1.818 -1.74 0 0 0 0 0 0 0 +3.635 1.828 -1.738 0 0 0 0 0 0 0 +3.626 1.838 -1.737 0 0 0 0 0 0 0 +3.625 1.852 -1.739 0 0 0 0 0 0 0 +3.625 1.867 -1.743 0 0 0 0 0 0 0 +3.614 1.875 -1.74 0 0 0 0 0 0 0 +3.62 1.885 -1.744 0 0 0 0 0 0 0 +3.598 1.888 -1.736 0 0 0 0 0 0 0 +3.612 1.911 -1.747 0 0 0 0 0 0 0 +3.589 1.912 -1.738 0 0 0 0 0 0 0 +3.411 2.208 -1.736 0 0 0 0 0 0 0 +3.436 2.239 -1.753 0 0 0 0 0 0 0 +3.403 2.226 -1.738 0 0 0 0 0 0 0 +3.387 2.23 -1.733 0 0 0 0 0 0 0 +3.38 2.241 -1.733 0 0 0 0 0 0 0 +3.376 2.254 -1.734 0 0 0 0 0 0 0 +3.369 2.264 -1.734 0 0 0 0 0 0 0 +3.361 2.274 -1.733 0 0 0 0 0 0 0 +3.358 2.287 -1.736 0 0 0 0 0 0 0 +3.357 2.302 -1.739 0 0 0 0 0 0 0 +3.346 2.302 -1.735 0 0 0 0 0 0 0 +3.343 2.316 -1.738 0 0 0 0 0 0 0 +3.334 2.325 -1.737 0 0 0 0 0 0 0 +3.356 2.357 -1.753 0 0 0 0 0 0 0 +3.122 2.656 -1.752 0 0 0 0 0 0 0 +3.117 2.668 -1.754 0 0 0 0 0 0 0 +3.077 2.651 -1.735 0 0 0 0 0 0 0 +3.06 2.653 -1.73 0 0 0 0 0 0 0 +3.062 2.671 -1.736 0 0 0 0 0 0 0 +3.036 2.665 -1.725 0 0 0 0 0 0 0 +3.027 2.674 -1.725 0 0 0 0 0 0 0 +3.036 2.691 -1.733 0 0 0 0 0 0 0 +3.016 2.69 -1.726 0 0 0 0 0 0 0 +3.005 2.697 -1.724 0 0 0 0 0 0 0 +3.004 2.714 -1.729 0 0 0 0 0 0 0 +2.985 2.713 -1.723 0 0 0 0 0 0 0 +2.982 2.728 -1.726 0 0 0 0 0 0 0 +2.981 2.744 -1.731 0 0 0 0 0 0 0 +2.965 2.738 -1.723 0 0 0 0 0 0 0 +2.956 2.747 -1.723 0 0 0 0 0 0 0 +2.96 2.768 -1.731 0 0 0 0 0 0 0 +2.944 2.771 -1.727 0 0 0 0 0 0 0 +2.933 2.777 -1.725 0 0 0 0 0 0 0 +2.942 2.804 -1.737 0 0 0 0 0 0 0 +2.915 2.796 -1.725 0 0 0 0 0 0 0 +2.914 2.803 -1.727 0 0 0 0 0 0 0 +2.916 2.824 -1.734 0 0 0 0 0 0 0 +2.896 2.821 -1.727 0 0 0 0 0 0 0 +2.887 2.83 -1.727 0 0 0 0 0 0 0 +2.883 2.844 -1.73 0 0 0 0 0 0 0 +2.868 2.847 -1.726 0 0 0 0 0 0 0 +2.86 2.857 -1.727 0 0 0 0 0 0 0 +2.86 2.866 -1.729 0 0 0 0 0 0 0 +2.842 2.866 -1.723 0 0 0 0 0 0 0 +2.843 2.885 -1.73 0 0 0 0 0 0 0 +2.83 2.89 -1.728 0 0 0 0 0 0 0 +2.821 2.899 -1.728 0 0 0 0 0 0 0 +2.819 2.916 -1.733 0 0 0 0 0 0 0 +2.805 2.919 -1.729 0 0 0 0 0 0 0 +2.794 2.917 -1.725 0 0 0 0 0 0 0 +2.796 2.938 -1.733 0 0 0 0 0 0 0 +2.783 2.942 -1.73 0 0 0 0 0 0 0 +2.774 2.951 -1.73 0 0 0 0 0 0 0 +2.771 2.967 -1.734 0 0 0 0 0 0 0 +2.757 2.97 -1.731 0 0 0 0 0 0 0 +2.753 2.985 -1.735 0 0 0 0 0 0 0 +2.752 2.994 -1.738 0 0 0 0 0 0 0 +2.738 2.997 -1.734 0 0 0 0 0 0 0 +2.729 3.005 -1.734 0 0 0 0 0 0 0 +2.719 3.014 -1.734 0 0 0 0 0 0 0 +2.711 3.024 -1.735 0 0 0 0 0 0 0 +2.698 3.028 -1.733 0 0 0 0 0 0 0 +2.698 3.048 -1.739 0 0 0 0 0 0 0 +2.692 3.051 -1.738 0 0 0 0 0 0 0 +2.678 3.053 -1.735 0 0 0 0 0 0 0 +2.668 3.062 -1.735 0 0 0 0 0 0 0 +2.655 3.066 -1.733 0 0 0 0 0 0 0 +2.645 3.074 -1.733 0 0 0 0 0 0 0 +2.646 3.095 -1.74 0 0 0 0 0 0 0 +2.632 3.098 -1.737 0 0 0 0 0 0 0 +2.629 3.105 -1.738 0 0 0 0 0 0 0 +2.619 3.113 -1.738 0 0 0 0 0 0 0 +2.607 3.119 -1.737 0 0 0 0 0 0 0 +2.604 3.135 -1.742 0 0 0 0 0 0 0 +2.59 3.138 -1.738 0 0 0 0 0 0 0 +2.581 3.147 -1.739 0 0 0 0 0 0 0 +2.574 3.158 -1.741 0 0 0 0 0 0 0 +2.567 3.161 -1.74 0 0 0 0 0 0 0 +2.559 3.17 -1.741 0 0 0 0 0 0 0 +2.545 3.174 -1.738 0 0 0 0 0 0 0 +2.541 3.189 -1.743 0 0 0 0 0 0 0 +2.531 3.197 -1.743 0 0 0 0 0 0 0 +2.519 3.202 -1.741 0 0 0 0 0 0 0 +2.515 3.219 -1.746 0 0 0 0 0 0 0 +2.502 3.222 -1.743 0 0 0 0 0 0 0 +2.491 3.219 -1.739 0 0 0 0 0 0 0 +2.484 3.231 -1.742 0 0 0 0 0 0 0 +2.477 3.243 -1.744 0 0 0 0 0 0 0 +2.459 3.239 -1.738 0 0 0 0 0 0 0 +2.456 3.257 -1.743 0 0 0 0 0 0 0 +2.447 3.266 -1.744 0 0 0 0 0 0 0 +2.433 3.27 -1.742 0 0 0 0 0 0 0 +2.425 3.269 -1.739 0 0 0 0 0 0 0 +2.424 3.29 -1.747 0 0 0 0 0 0 0 +2.411 3.293 -1.744 0 0 0 0 0 0 0 +2.404 3.305 -1.747 0 0 0 0 0 0 0 +2.388 3.305 -1.743 0 0 0 0 0 0 0 +2.374 3.308 -1.74 0 0 0 0 0 0 0 +2.372 3.316 -1.743 0 0 0 0 0 0 0 +2.362 3.324 -1.743 0 0 0 0 0 0 0 +2.352 3.333 -1.743 0 0 0 0 0 0 0 +2.338 3.334 -1.74 0 0 0 0 0 0 0 +2.331 3.347 -1.743 0 0 0 0 0 0 0 +2.323 3.358 -1.745 0 0 0 0 0 0 0 +2.311 3.364 -1.744 0 0 0 0 0 0 0 +2.306 3.367 -1.744 0 0 0 0 0 0 0 +2.29 3.367 -1.74 0 0 0 0 0 0 0 +2.283 3.379 -1.743 0 0 0 0 0 0 0 +2.269 3.381 -1.74 0 0 0 0 0 0 0 +2.258 3.387 -1.739 0 0 0 0 0 0 0 +2.247 3.394 -1.739 0 0 0 0 0 0 0 +2.241 3.409 -1.743 0 0 0 0 0 0 0 +2.229 3.414 -1.743 0 0 0 0 0 0 0 +2.224 3.418 -1.743 0 0 0 0 0 0 0 +2.208 3.417 -1.738 0 0 0 0 0 0 0 +2.197 3.422 -1.738 0 0 0 0 0 0 0 +2.185 3.428 -1.737 0 0 0 0 0 0 0 +2.177 3.439 -1.739 0 0 0 0 0 0 0 +2.164 3.443 -1.738 0 0 0 0 0 0 0 +2.158 3.457 -1.742 0 0 0 0 0 0 0 +2.148 3.453 -1.738 0 0 0 0 0 0 0 +2.138 3.461 -1.738 0 0 0 0 0 0 0 +2.122 3.459 -1.733 0 0 0 0 0 0 0 +2.112 3.467 -1.734 0 0 0 0 0 0 0 +2.104 3.478 -1.737 0 0 0 0 0 0 0 +2.088 3.477 -1.733 0 0 0 0 0 0 0 +2.084 3.494 -1.738 0 0 0 0 0 0 0 +2.068 3.493 -1.734 0 0 0 0 0 0 0 +2.062 3.495 -1.733 0 0 0 0 0 0 0 +2.052 3.504 -1.735 0 0 0 0 0 0 0 +2.041 3.509 -1.734 0 0 0 0 0 0 0 +2.031 3.519 -1.736 0 0 0 0 0 0 0 +2.018 3.522 -1.734 0 0 0 0 0 0 0 +2.004 3.522 -1.731 0 0 0 0 0 0 0 +2.002 3.531 -1.734 0 0 0 0 0 0 0 +1.987 3.531 -1.731 0 0 0 0 0 0 0 +1.978 3.541 -1.733 0 0 0 0 0 0 0 +1.963 3.541 -1.729 0 0 0 0 0 0 0 +1.951 3.545 -1.728 0 0 0 0 0 0 0 +1.943 3.556 -1.731 0 0 0 0 0 0 0 +1.929 3.557 -1.728 0 0 0 0 0 0 0 +1.918 3.563 -1.728 0 0 0 0 0 0 0 +1.912 3.566 -1.728 0 0 0 0 0 0 0 +1.901 3.572 -1.728 0 0 0 0 0 0 0 +1.89 3.578 -1.728 0 0 0 0 0 0 0 +1.878 3.584 -1.728 0 0 0 0 0 0 0 +1.866 3.588 -1.728 0 0 0 0 0 0 0 +1.867 3.617 -1.739 0 0 0 0 0 0 0 +1.843 3.598 -1.727 0 0 0 0 0 0 0 +1.841 3.61 -1.731 0 0 0 0 0 0 0 +1.828 3.61 -1.728 0 0 0 0 0 0 0 +1.818 3.619 -1.73 0 0 0 0 0 0 0 +1.805 3.622 -1.728 0 0 0 0 0 0 0 +1.793 3.626 -1.728 0 0 0 0 0 0 0 +1.782 3.633 -1.728 0 0 0 0 0 0 0 +1.771 3.639 -1.728 0 0 0 0 0 0 0 +1.762 3.635 -1.725 0 0 0 0 0 0 0 +1.751 3.642 -1.726 0 0 0 0 0 0 0 +1.74 3.647 -1.726 0 0 0 0 0 0 0 +1.728 3.653 -1.726 0 0 0 0 0 0 0 +1.717 3.658 -1.726 0 0 0 0 0 0 0 +1.704 3.662 -1.725 0 0 0 0 0 0 0 +1.691 3.664 -1.723 0 0 0 0 0 0 0 +1.686 3.668 -1.724 0 0 0 0 0 0 0 +1.674 3.672 -1.723 0 0 0 0 0 0 0 +1.664 3.681 -1.725 0 0 0 0 0 0 0 +1.653 3.686 -1.725 0 0 0 0 0 0 0 +1.638 3.684 -1.722 0 0 0 0 0 0 0 +1.634 3.708 -1.731 0 0 0 0 0 0 0 +1.618 3.703 -1.726 0 0 0 0 0 0 0 +1.61 3.699 -1.723 0 0 0 0 0 0 0 +1.601 3.71 -1.726 0 0 0 0 0 0 0 +1.591 3.719 -1.728 0 0 0 0 0 0 0 +1.578 3.722 -1.727 0 0 0 0 0 0 0 +1.57 3.735 -1.731 0 0 0 0 0 0 0 +1.558 3.74 -1.731 0 0 0 0 0 0 0 +1.543 3.737 -1.727 0 0 0 0 0 0 0 +1.535 3.75 -1.731 0 0 0 0 0 0 0 +1.525 3.742 -1.726 0 0 0 0 0 0 0 +1.516 3.756 -1.73 0 0 0 0 0 0 0 +1.507 3.765 -1.733 0 0 0 0 0 0 0 +1.491 3.76 -1.728 0 0 0 0 0 0 0 +1.481 3.77 -1.73 0 0 0 0 0 0 0 +1.47 3.776 -1.731 0 0 0 0 0 0 0 +1.462 3.793 -1.737 0 0 0 0 0 0 0 +1.453 3.785 -1.732 0 0 0 0 0 0 0 +1.442 3.793 -1.733 0 0 0 0 0 0 0 +1.423 3.777 -1.723 0 0 0 0 0 0 0 +1.403 3.759 -1.713 0 0 0 0 0 0 0 +1.394 3.774 -1.718 0 0 0 0 0 0 0 +1.376 3.761 -1.709 0 0 0 0 0 0 0 +1.368 3.774 -1.713 0 0 0 0 0 0 0 +1.365 3.786 -1.718 0 0 0 0 0 0 0 +1.348 3.775 -1.711 0 0 0 0 0 0 0 +1.336 3.779 -1.711 0 0 0 0 0 0 0 +1.331 3.802 -1.72 0 0 0 0 0 0 0 +1.311 3.782 -1.708 0 0 0 0 0 0 0 +1.297 3.781 -1.706 0 0 0 0 0 0 0 +1.294 3.811 -1.718 0 0 0 0 0 0 0 +1.283 3.798 -1.711 0 0 0 0 0 0 0 +1.271 3.803 -1.712 0 0 0 0 0 0 0 +1.263 3.818 -1.717 0 0 0 0 0 0 0 +1.245 3.804 -1.708 0 0 0 0 0 0 0 +1.235 3.815 -1.712 0 0 0 0 0 0 0 +1.227 3.831 -1.718 0 0 0 0 0 0 0 +1.207 3.807 -1.704 0 0 0 0 0 0 0 +1.202 3.814 -1.707 0 0 0 0 0 0 0 +1.192 3.825 -1.71 0 0 0 0 0 0 0 +1.174 3.808 -1.7 0 0 0 0 0 0 0 +1.166 3.824 -1.706 0 0 0 0 0 0 0 +1.157 3.84 -1.712 0 0 0 0 0 0 0 +1.142 3.831 -1.706 0 0 0 0 0 0 0 +1.128 3.829 -1.704 0 0 0 0 0 0 0 +1.12 3.847 -1.71 0 0 0 0 0 0 0 +1.108 3.828 -1.7 0 0 0 0 0 0 0 +1.098 3.84 -1.704 0 0 0 0 0 0 0 +1.09 3.856 -1.71 0 0 0 0 0 0 0 +1.073 3.843 -1.703 0 0 0 0 0 0 0 +1.063 3.854 -1.706 0 0 0 0 0 0 0 +1.052 3.86 -1.708 0 0 0 0 0 0 0 +1.036 3.85 -1.701 0 0 0 0 0 0 0 +1.031 3.855 -1.703 0 0 0 0 0 0 0 +1.024 3.877 -1.712 0 0 0 0 0 0 0 +1.009 3.87 -1.707 0 0 0 0 0 0 0 +0.995 3.866 -1.704 0 0 0 0 0 0 0 +0.986 3.881 -1.709 0 0 0 0 0 0 0 +0.971 3.872 -1.704 0 0 0 0 0 0 0 +0.96 3.881 -1.706 0 0 0 0 0 0 0 +0.957 3.894 -1.712 0 0 0 0 0 0 0 +0.941 3.881 -1.704 0 0 0 0 0 0 0 +0.932 3.9 -1.712 0 0 0 0 0 0 0 +0.919 3.898 -1.709 0 0 0 0 0 0 0 +0.902 3.879 -1.699 0 0 0 0 0 0 0 +0.893 3.897 -1.706 0 0 0 0 0 0 0 +0.881 3.901 -1.707 0 0 0 0 0 0 0 +0.872 3.892 -1.702 0 0 0 0 0 0 0 +0.863 3.907 -1.708 0 0 0 0 0 0 0 +0.85 3.906 -1.706 0 0 0 0 0 0 0 +0.836 3.903 -1.704 0 0 0 0 0 0 0 +0.825 3.911 -1.706 0 0 0 0 0 0 0 +0.813 3.916 -1.707 0 0 0 0 0 0 0 +0.8 3.915 -1.705 0 0 0 0 0 0 0 +0.788 3.919 -1.706 0 0 0 0 0 0 0 +0.781 3.917 -1.704 0 0 0 0 0 0 0 +0.769 3.921 -1.705 0 0 0 0 0 0 0 +0.757 3.921 -1.704 0 0 0 0 0 0 0 +0.745 3.926 -1.705 0 0 0 0 0 0 0 +0.732 3.928 -1.705 0 0 0 0 0 0 0 +0.72 3.93 -1.705 0 0 0 0 0 0 0 +0.709 3.941 -1.709 0 0 0 0 0 0 0 +0.702 3.934 -1.705 0 0 0 0 0 0 0 +0.678 3.868 -1.674 0 0 0 0 0 0 0 +0.607 3.512 -1.509 0 0 0 0 0 0 0 +0.594 3.505 -1.504 0 0 0 0 0 0 0 +0.581 3.496 -1.499 0 0 0 0 0 0 0 +0.569 3.491 -1.496 0 0 0 0 0 0 0 +0.557 3.487 -1.494 0 0 0 0 0 0 0 +0.551 3.483 -1.491 0 0 0 0 0 0 0 +0.54 3.483 -1.49 0 0 0 0 0 0 0 +0.529 3.486 -1.491 0 0 0 0 0 0 0 +0.519 3.493 -1.494 0 0 0 0 0 0 0 +0.506 3.48 -1.487 0 0 0 0 0 0 0 +0.496 3.491 -1.491 0 0 0 0 0 0 0 +0.487 3.502 -1.495 0 0 0 0 0 0 0 +0.482 3.506 -1.497 0 0 0 0 0 0 0 +0.471 3.515 -1.5 0 0 0 0 0 0 0 +0.479 3.67 -1.571 0 0 0 0 0 0 0 +0.446 3.492 -1.489 0 0 0 0 0 0 0 +0.4 3.195 -1.352 0 0 0 0 0 0 0 +0.391 3.2 -1.353 0 0 0 0 0 0 0 +0.381 3.2 -1.353 0 0 0 0 0 0 0 +0.371 3.201 -1.353 0 0 0 0 0 0 0 +0.366 3.207 -1.355 0 0 0 0 0 0 0 +0.369 3.337 -1.414 0 0 0 0 0 0 0 +0.422 3.971 -1.704 0 0 0 0 0 0 0 +0.41 3.976 -1.706 0 0 0 0 0 0 0 +0.397 3.979 -1.707 0 0 0 0 0 0 0 +0.384 3.975 -1.704 0 0 0 0 0 0 0 +0.372 3.973 -1.703 0 0 0 0 0 0 0 +0.365 3.97 -1.701 0 0 0 0 0 0 0 +0.352 3.967 -1.699 0 0 0 0 0 0 0 +0.34 3.974 -1.702 0 0 0 0 0 0 0 +0.328 3.977 -1.703 0 0 0 0 0 0 0 +0.315 3.974 -1.701 0 0 0 0 0 0 0 +0.302 3.968 -1.698 0 0 0 0 0 0 0 +0.29 3.972 -1.699 0 0 0 0 0 0 0 +0.284 3.978 -1.702 0 0 0 0 0 0 0 +0.272 3.979 -1.702 0 0 0 0 0 0 0 +0.259 3.973 -1.699 0 0 0 0 0 0 0 +0.246 3.972 -1.698 0 0 0 0 0 0 0 +0.234 3.974 -1.699 0 0 0 0 0 0 0 +0.216 3.862 -1.647 0 0 0 0 0 0 0 +0.209 3.979 -1.7 0 0 0 0 0 0 0 +0.203 3.983 -1.702 0 0 0 0 0 0 0 +0.19 3.987 -1.704 0 0 0 0 0 0 0 +0.178 3.997 -1.708 0 0 0 0 0 0 0 +0.165 3.985 -1.702 0 0 0 0 0 0 0 +0.153 3.984 -1.701 0 0 0 0 0 0 0 +0.14 3.977 -1.698 0 0 0 0 0 0 0 +0.128 3.983 -1.7 0 0 0 0 0 0 0 +0.121 3.988 -1.703 0 0 0 0 0 0 0 +0.109 3.987 -1.702 0 0 0 0 0 0 0 +0.096 3.985 -1.701 0 0 0 0 0 0 0 +0.084 3.982 -1.699 0 0 0 0 0 0 0 +0.071 3.982 -1.699 0 0 0 0 0 0 0 +0.059 3.984 -1.7 0 0 0 0 0 0 0 +0.046 3.988 -1.702 0 0 0 0 0 0 0 +0.034 3.99 -1.703 0 0 0 0 0 0 0 +0.027 3.986 -1.701 0 0 0 0 0 0 0 +0.015 3.979 -1.698 0 0 0 0 0 0 0 +0.002 3.983 -1.699 0 0 0 0 0 0 0 +-0.01 3.981 -1.699 0 0 0 0 0 0 0 +-0.023 3.99 -1.703 0 0 0 0 0 0 0 +-0.035 3.979 -1.698 0 0 0 0 0 0 0 +-0.048 3.979 -1.698 0 0 0 0 0 0 0 +-0.054 3.995 -1.705 0 0 0 0 0 0 0 +-0.066 3.981 -1.699 0 0 0 0 0 0 0 +-0.079 3.982 -1.699 0 0 0 0 0 0 0 +-0.092 3.985 -1.701 0 0 0 0 0 0 0 +-0.104 3.974 -1.696 0 0 0 0 0 0 0 +-0.117 3.992 -1.704 0 0 0 0 0 0 0 +-0.136 3.988 -1.703 0 0 0 0 0 0 0 +-0.147 3.973 -1.696 0 0 0 0 0 0 0 +-0.16 3.976 -1.698 0 0 0 0 0 0 0 +-0.172 3.974 -1.697 0 0 0 0 0 0 0 +-0.185 3.98 -1.7 0 0 0 0 0 0 0 +-0.198 3.978 -1.699 0 0 0 0 0 0 0 +-0.21 3.979 -1.7 0 0 0 0 0 0 0 +-0.222 3.971 -1.697 0 0 0 0 0 0 0 +-0.229 3.975 -1.699 0 0 0 0 0 0 0 +-0.241 3.974 -1.699 0 0 0 0 0 0 0 +-0.254 3.975 -1.699 0 0 0 0 0 0 0 +-0.267 3.987 -1.705 0 0 0 0 0 0 0 +-0.279 3.979 -1.702 0 0 0 0 0 0 0 +-0.294 4.003 -1.713 0 0 0 0 0 0 0 +-0.309 4.035 -1.728 0 0 0 0 0 0 0 +-0.315 4.029 -1.726 0 0 0 0 0 0 0 +-0.328 4.035 -1.729 0 0 0 0 0 0 0 +-0.343 4.054 -1.738 0 0 0 0 0 0 0 +-0.356 4.062 -1.743 0 0 0 0 0 0 0 +-0.369 4.059 -1.742 0 0 0 0 0 0 0 +-0.384 4.076 -1.75 0 0 0 0 0 0 0 +-0.397 4.08 -1.752 0 0 0 0 0 0 0 +-0.402 4.067 -1.747 0 0 0 0 0 0 0 +-0.415 4.067 -1.747 0 0 0 0 0 0 0 +-0.426 4.052 -1.741 0 0 0 0 0 0 0 +-0.438 4.047 -1.739 0 0 0 0 0 0 0 +-0.453 4.058 -1.745 0 0 0 0 0 0 0 +-0.464 4.044 -1.739 0 0 0 0 0 0 0 +-0.478 4.057 -1.746 0 0 0 0 0 0 0 +-0.484 4.047 -1.742 0 0 0 0 0 0 0 +-0.496 4.044 -1.741 0 0 0 0 0 0 0 +-0.508 4.035 -1.738 0 0 0 0 0 0 0 +-0.523 4.051 -1.746 0 0 0 0 0 0 0 +-0.534 4.037 -1.74 0 0 0 0 0 0 0 +-0.547 4.035 -1.74 0 0 0 0 0 0 0 +-0.562 4.05 -1.747 0 0 0 0 0 0 0 +-0.568 4.049 -1.747 0 0 0 0 0 0 0 +-0.58 4.045 -1.747 0 0 0 0 0 0 0 +-0.595 4.056 -1.752 0 0 0 0 0 0 0 +-0.606 4.043 -1.747 0 0 0 0 0 0 0 +-0.619 4.043 -1.748 0 0 0 0 0 0 0 +-0.634 4.052 -1.753 0 0 0 0 0 0 0 +-0.647 4.054 -1.755 0 0 0 0 0 0 0 +-0.653 4.049 -1.753 0 0 0 0 0 0 0 +-0.667 4.058 -1.758 0 0 0 0 0 0 0 +-0.68 4.054 -1.757 0 0 0 0 0 0 0 +-0.693 4.053 -1.758 0 0 0 0 0 0 0 +-0.71 4.074 -1.769 0 0 0 0 0 0 0 +-0.718 4.051 -1.759 0 0 0 0 0 0 0 +-0.732 4.056 -1.762 0 0 0 0 0 0 0 +-0.75 4.08 -1.775 0 0 0 0 0 0 0 +-0.753 4.061 -1.767 0 0 0 0 0 0 0 +-0.769 4.071 -1.772 0 0 0 0 0 0 0 +-0.783 4.076 -1.776 0 0 0 0 0 0 0 +-0.8 4.097 -1.786 0 0 0 0 0 0 0 +-0.815 4.105 -1.791 0 0 0 0 0 0 0 +-0.833 4.124 -1.801 0 0 0 0 0 0 0 +-0.835 4.073 -1.779 0 0 0 0 0 0 0 +-0.839 4.061 -1.774 0 0 0 0 0 0 0 +-0.858 4.083 -1.786 0 0 0 0 0 0 0 +-0.868 4.07 -1.781 0 0 0 0 0 0 0 +-0.917 4.165 -1.828 0 0 0 0 0 0 0 +-0.926 4.148 -1.821 0 0 0 0 0 0 0 +-0.933 4.119 -1.809 0 0 0 0 0 0 0 +-0.936 4.103 -1.802 0 0 0 0 0 0 0 +-0.938 4.054 -1.781 0 0 0 0 0 0 0 +-0.958 4.079 -1.794 0 0 0 0 0 0 0 +-0.972 4.08 -1.796 0 0 0 0 0 0 0 +-0.982 4.066 -1.791 0 0 0 0 0 0 0 +-0.994 4.06 -1.789 0 0 0 0 0 0 0 +-1.006 4.055 -1.788 0 0 0 0 0 0 0 +-1.01 4.044 -1.784 0 0 0 0 0 0 0 +-1.022 4.038 -1.782 0 0 0 0 0 0 0 +-1.036 4.04 -1.785 0 0 0 0 0 0 0 +-1.046 4.026 -1.78 0 0 0 0 0 0 0 +-1.064 4.044 -1.79 0 0 0 0 0 0 0 +-1.076 4.037 -1.788 0 0 0 0 0 0 0 +-1.083 4.012 -1.778 0 0 0 0 0 0 0 +-1.095 4.007 -1.777 0 0 0 0 0 0 0 +-1.104 4.016 -1.782 0 0 0 0 0 0 0 +-1.115 4.005 -1.779 0 0 0 0 0 0 0 +-1.13 4.012 -1.784 0 0 0 0 0 0 0 +-1.144 4.014 -1.786 0 0 0 0 0 0 0 +-1.148 3.979 -1.772 0 0 0 0 0 0 0 +-1.161 3.977 -1.772 0 0 0 0 0 0 0 +-1.177 3.986 -1.778 0 0 0 0 0 0 0 +-1.182 3.98 -1.777 0 0 0 0 0 0 0 +-1.194 3.975 -1.776 0 0 0 0 0 0 0 +-1.207 3.973 -1.777 0 0 0 0 0 0 0 +-1.216 3.957 -1.771 0 0 0 0 0 0 0 +-1.228 3.951 -1.77 0 0 0 0 0 0 0 +-1.247 3.968 -1.78 0 0 0 0 0 0 0 +-1.256 3.954 -1.775 0 0 0 0 0 0 0 +-1.261 3.948 -1.773 0 0 0 0 0 0 0 +-1.277 3.957 -1.779 0 0 0 0 0 0 0 +-1.285 3.939 -1.772 0 0 0 0 0 0 0 +-1.299 3.94 -1.775 0 0 0 0 0 0 0 +-1.316 3.95 -1.781 0 0 0 0 0 0 0 +-1.323 3.928 -1.773 0 0 0 0 0 0 0 +-1.336 3.926 -1.774 0 0 0 0 0 0 0 +-1.345 3.932 -1.778 0 0 0 0 0 0 0 +-1.351 3.911 -1.77 0 0 0 0 0 0 0 +-1.364 3.908 -1.771 0 0 0 0 0 0 0 +-1.379 3.911 -1.774 0 0 0 0 0 0 0 +-1.385 3.889 -1.766 0 0 0 0 0 0 0 +-1.403 3.902 -1.774 0 0 0 0 0 0 0 +-1.42 3.91 -1.78 0 0 0 0 0 0 0 +-1.428 3.893 -1.774 0 0 0 0 0 0 0 +-1.436 3.898 -1.777 0 0 0 0 0 0 0 +-1.456 3.914 -1.787 0 0 0 0 0 0 0 +-1.473 3.919 -1.792 0 0 0 0 0 0 0 +-1.486 3.916 -1.793 0 0 0 0 0 0 0 +-1.503 3.925 -1.8 0 0 0 0 0 0 0 +-1.51 3.907 -1.793 0 0 0 0 0 0 0 +-1.522 3.9 -1.792 0 0 0 0 0 0 0 +-1.521 3.881 -1.784 0 0 0 0 0 0 0 +-1.536 3.883 -1.787 0 0 0 0 0 0 0 +-1.55 3.882 -1.789 0 0 0 0 0 0 0 +-1.569 3.894 -1.797 0 0 0 0 0 0 0 +-1.575 3.873 -1.79 0 0 0 0 0 0 0 +-1.583 3.858 -1.785 0 0 0 0 0 0 0 +-1.598 3.862 -1.789 0 0 0 0 0 0 0 +-1.598 3.844 -1.781 0 0 0 0 0 0 0 +-1.611 3.842 -1.783 0 0 0 0 0 0 0 +-1.623 3.836 -1.782 0 0 0 0 0 0 0 +-1.63 3.821 -1.777 0 0 0 0 0 0 0 +-1.642 3.815 -1.777 0 0 0 0 0 0 0 +-1.66 3.822 -1.783 0 0 0 0 0 0 0 +-1.666 3.803 -1.777 0 0 0 0 0 0 0 +-1.673 3.804 -1.778 0 0 0 0 0 0 0 +-1.692 3.814 -1.786 0 0 0 0 0 0 0 +-1.696 3.792 -1.777 0 0 0 0 0 0 0 +-1.712 3.795 -1.781 0 0 0 0 0 0 0 +-1.723 3.788 -1.781 0 0 0 0 0 0 0 +-1.737 3.786 -1.782 0 0 0 0 0 0 0 +-1.748 3.78 -1.782 0 0 0 0 0 0 0 +-1.76 3.775 -1.782 0 0 0 0 0 0 0 +-1.76 3.759 -1.776 0 0 0 0 0 0 0 +-1.78 3.77 -1.784 0 0 0 0 0 0 0 +-1.791 3.762 -1.783 0 0 0 0 0 0 0 +-1.801 3.753 -1.781 0 0 0 0 0 0 0 +-1.813 3.749 -1.782 0 0 0 0 0 0 0 +-1.828 3.75 -1.786 0 0 0 0 0 0 0 +-1.833 3.73 -1.778 0 0 0 0 0 0 0 +-1.845 3.74 -1.785 0 0 0 0 0 0 0 +-1.855 3.731 -1.783 0 0 0 0 0 0 0 +-1.865 3.722 -1.781 0 0 0 0 0 0 0 +-1.88 3.722 -1.785 0 0 0 0 0 0 0 +-1.889 3.71 -1.781 0 0 0 0 0 0 0 +-1.9 3.704 -1.781 0 0 0 0 0 0 0 +-1.911 3.696 -1.781 0 0 0 0 0 0 0 +-1.921 3.701 -1.785 0 0 0 0 0 0 0 +-1.929 3.687 -1.781 0 0 0 0 0 0 0 +-1.94 3.681 -1.781 0 0 0 0 0 0 0 +-1.954 3.68 -1.783 0 0 0 0 0 0 0 +-1.968 3.677 -1.785 0 0 0 0 0 0 0 +-1.977 3.668 -1.783 0 0 0 0 0 0 0 +-1.991 3.665 -1.785 0 0 0 0 0 0 0 +-1.99 3.65 -1.779 0 0 0 0 0 0 0 +-2.005 3.65 -1.782 0 0 0 0 0 0 0 +-2.016 3.642 -1.781 0 0 0 0 0 0 0 +-2.027 3.636 -1.781 0 0 0 0 0 0 0 +-2.04 3.631 -1.782 0 0 0 0 0 0 0 +-2.051 3.625 -1.782 0 0 0 0 0 0 0 +-2.065 3.623 -1.785 0 0 0 0 0 0 0 +-2.076 3.617 -1.785 0 0 0 0 0 0 0 +-2.085 3.618 -1.787 0 0 0 0 0 0 0 +-2.093 3.605 -1.784 0 0 0 0 0 0 0 +-2.107 3.603 -1.786 0 0 0 0 0 0 0 +-2.12 3.6 -1.788 0 0 0 0 0 0 0 +-2.127 3.587 -1.785 0 0 0 0 0 0 0 +-2.139 3.58 -1.785 0 0 0 0 0 0 0 +-2.147 3.569 -1.782 0 0 0 0 0 0 0 +-2.156 3.57 -1.785 0 0 0 0 0 0 0 +-2.165 3.56 -1.783 0 0 0 0 0 0 0 +-2.174 3.55 -1.781 0 0 0 0 0 0 0 +-2.188 3.548 -1.784 0 0 0 0 0 0 0 +-2.2 3.543 -1.785 0 0 0 0 0 0 0 +-2.213 3.539 -1.786 0 0 0 0 0 0 0 +-2.222 3.529 -1.785 0 0 0 0 0 0 0 +-2.231 3.517 -1.782 0 0 0 0 0 0 0 +-2.238 3.517 -1.784 0 0 0 0 0 0 0 +-2.248 3.508 -1.783 0 0 0 0 0 0 0 +-2.262 3.506 -1.786 0 0 0 0 0 0 0 +-2.273 3.499 -1.786 0 0 0 0 0 0 0 +-2.285 3.493 -1.786 0 0 0 0 0 0 0 +-2.297 3.487 -1.787 0 0 0 0 0 0 0 +-2.305 3.475 -1.785 0 0 0 0 0 0 0 +-2.315 3.479 -1.789 0 0 0 0 0 0 0 +-2.323 3.468 -1.786 0 0 0 0 0 0 0 +-2.333 3.459 -1.786 0 0 0 0 0 0 0 +-2.344 3.451 -1.786 0 0 0 0 0 0 0 +-2.371 3.468 -1.799 0 0 0 0 0 0 0 +-2.403 3.49 -1.816 0 0 0 0 0 0 0 +-2.411 3.478 -1.813 0 0 0 0 0 0 0 +-2.41 3.466 -1.808 0 0 0 0 0 0 0 +-2.407 3.439 -1.797 0 0 0 0 0 0 0 +-2.411 3.421 -1.791 0 0 0 0 0 0 0 +-2.44 3.438 -1.806 0 0 0 0 0 0 0 +-2.429 3.401 -1.789 0 0 0 0 0 0 0 +-2.438 3.391 -1.787 0 0 0 0 0 0 0 +-2.46 3.399 -1.796 0 0 0 0 0 0 0 +-2.459 3.386 -1.791 0 0 0 0 0 0 0 +-2.481 3.395 -1.801 0 0 0 0 0 0 0 +-2.484 3.377 -1.795 0 0 0 0 0 0 0 +-2.493 3.366 -1.793 0 0 0 0 0 0 0 +-2.503 3.358 -1.793 0 0 0 0 0 0 0 +-2.512 3.347 -1.791 0 0 0 0 0 0 0 +-2.526 3.344 -1.794 0 0 0 0 0 0 0 +-2.534 3.333 -1.792 0 0 0 0 0 0 0 +-2.53 3.317 -1.786 0 0 0 0 0 0 0 +-2.543 3.312 -1.787 0 0 0 0 0 0 0 +-2.55 3.3 -1.785 0 0 0 0 0 0 0 +-2.555 3.285 -1.781 0 0 0 0 0 0 0 +-1.074 1.375 -0.679 0 0 0 0 0 0 0 +-0.899 1.149 -0.549 0 0 0 0 0 0 0 +-2.568 3.281 -1.783 0 0 0 0 0 0 0 +-0.9 1.144 -0.547 0 0 0 0 0 0 0 +-0.913 1.152 -0.554 0 0 0 0 0 0 0 +-0.952 1.193 -0.579 0 0 0 0 0 0 0 +-0.984 1.223 -0.599 0 0 0 0 0 0 0 +-1.038 1.28 -0.635 0 0 0 0 0 0 0 +-1.021 1.256 -0.622 0 0 0 0 0 0 0 +-1.02 1.247 -0.618 0 0 0 0 0 0 0 +-1.017 1.236 -0.613 0 0 0 0 0 0 0 +-1.026 1.238 -0.617 0 0 0 0 0 0 0 +-1.203 1.436 -0.738 0 0 0 0 0 0 0 +-0.946 1.05 -0.528 0 0 0 0 0 0 0 +-0.992 1.042 -0.54 0 0 0 0 0 0 0 +-3.131 2.815 -1.803 0 0 0 0 0 0 0 +-3.151 2.815 -1.81 0 0 0 0 0 0 0 +-3.145 2.791 -1.801 0 0 0 0 0 0 0 +-3.137 2.767 -1.791 0 0 0 0 0 0 0 +-3.166 2.775 -1.803 0 0 0 0 0 0 0 +-3.152 2.745 -1.789 0 0 0 0 0 0 0 +-3.174 2.747 -1.797 0 0 0 0 0 0 0 +-3.183 2.737 -1.797 0 0 0 0 0 0 0 +-3.177 2.724 -1.791 0 0 0 0 0 0 0 +-3.209 2.734 -1.806 0 0 0 0 0 0 0 +-3.471 2.376 -1.801 0 0 0 0 0 0 0 +-3.507 2.385 -1.817 0 0 0 0 0 0 0 +-3.498 2.363 -1.808 0 0 0 0 0 0 0 +-3.498 2.347 -1.804 0 0 0 0 0 0 0 +-3.502 2.334 -1.802 0 0 0 0 0 0 0 +-3.511 2.324 -1.803 0 0 0 0 0 0 0 +-3.512 2.316 -1.801 0 0 0 0 0 0 0 +-3.508 2.298 -1.796 0 0 0 0 0 0 0 +-3.514 2.286 -1.795 0 0 0 0 0 0 0 +-3.521 2.275 -1.795 0 0 0 0 0 0 0 +-3.528 2.264 -1.795 0 0 0 0 0 0 0 +-3.535 2.253 -1.795 0 0 0 0 0 0 0 +-3.539 2.24 -1.793 0 0 0 0 0 0 0 +-3.544 2.235 -1.794 0 0 0 0 0 0 0 +-3.555 2.226 -1.796 0 0 0 0 0 0 0 +-3.569 2.22 -1.8 0 0 0 0 0 0 0 +-3.578 2.209 -1.801 0 0 0 0 0 0 0 +-3.591 2.202 -1.804 0 0 0 0 0 0 0 +-3.585 2.183 -1.797 0 0 0 0 0 0 0 +-3.592 2.172 -1.797 0 0 0 0 0 0 0 +-3.6 2.169 -1.8 0 0 0 0 0 0 0 +-3.595 2.15 -1.793 0 0 0 0 0 0 0 +-3.626 2.154 -1.806 0 0 0 0 0 0 0 +-3.597 2.121 -1.787 0 0 0 0 0 0 0 +-3.608 2.113 -1.79 0 0 0 0 0 0 0 +-3.62 2.104 -1.792 0 0 0 0 0 0 0 +-3.633 2.096 -1.796 0 0 0 0 0 0 0 +-3.644 2.095 -1.8 0 0 0 0 0 0 0 +-3.654 2.085 -1.801 0 0 0 0 0 0 0 +-3.652 2.069 -1.797 0 0 0 0 0 0 0 +-3.659 2.058 -1.797 0 0 0 0 0 0 0 +-3.662 2.045 -1.796 0 0 0 0 0 0 0 +-3.67 2.034 -1.796 0 0 0 0 0 0 0 +-3.675 2.021 -1.796 0 0 0 0 0 0 0 +-3.697 2.019 -1.804 0 0 0 0 0 0 0 +-3.699 2.012 -1.803 0 0 0 0 0 0 0 +-3.702 1.999 -1.801 0 0 0 0 0 0 0 +-3.714 1.99 -1.805 0 0 0 0 0 0 0 +-3.73 1.984 -1.81 0 0 0 0 0 0 0 +-3.635 -2.282 -1.84 0 0 0 0 0 0 0 +-3.614 -2.285 -1.833 0 0 0 0 0 0 0 +-3.613 -2.3 -1.836 0 0 0 0 0 0 0 +-3.6 -2.308 -1.833 0 0 0 0 0 0 0 +-3.585 -2.306 -1.827 0 0 0 0 0 0 0 +-3.586 -2.323 -1.831 0 0 0 0 0 0 0 +-3.575 -2.332 -1.83 0 0 0 0 0 0 0 +-3.564 -2.34 -1.827 0 0 0 0 0 0 0 +-3.556 -2.351 -1.827 0 0 0 0 0 0 0 +-3.55 -2.363 -1.828 0 0 0 0 0 0 0 +-3.553 -2.382 -1.834 0 0 0 0 0 0 0 +-3.547 -2.385 -1.832 0 0 0 0 0 0 0 +-3.532 -2.391 -1.828 0 0 0 0 0 0 0 +-3.529 -2.405 -1.83 0 0 0 0 0 0 0 +-3.523 -2.417 -1.831 0 0 0 0 0 0 0 +-3.513 -2.427 -1.83 0 0 0 0 0 0 0 +-3.507 -2.44 -1.831 0 0 0 0 0 0 0 +-3.497 -2.448 -1.83 0 0 0 0 0 0 0 +-3.504 -2.47 -1.838 0 0 0 0 0 0 0 +-3.491 -2.469 -1.833 0 0 0 0 0 0 0 +-3.492 -2.486 -1.838 0 0 0 0 0 0 0 +-3.483 -2.496 -1.837 0 0 0 0 0 0 0 +-3.484 -2.514 -1.842 0 0 0 0 0 0 0 +-3.46 -2.513 -1.833 0 0 0 0 0 0 0 +-3.456 -2.527 -1.835 0 0 0 0 0 0 0 +-3.461 -2.548 -1.843 0 0 0 0 0 0 0 +-3.472 -2.564 -1.851 0 0 0 0 0 0 0 +-3.438 -2.555 -1.836 0 0 0 0 0 0 0 +-3.431 -2.567 -1.837 0 0 0 0 0 0 0 +-3.422 -2.577 -1.836 0 0 0 0 0 0 0 +-3.396 -2.574 -1.826 0 0 0 0 0 0 0 +-3.404 -2.597 -1.835 0 0 0 0 0 0 0 +-3.396 -2.608 -1.835 0 0 0 0 0 0 0 +-3.39 -2.612 -1.835 0 0 0 0 0 0 0 +-3.38 -2.621 -1.834 0 0 0 0 0 0 0 +-3.391 -2.647 -1.845 0 0 0 0 0 0 0 +-3.38 -2.655 -1.843 0 0 0 0 0 0 0 +-3.378 -2.671 -1.847 0 0 0 0 0 0 0 +-3.383 -2.692 -1.855 0 0 0 0 0 0 0 +-3.371 -2.7 -1.853 0 0 0 0 0 0 0 +-3.347 -2.69 -1.841 0 0 0 0 0 0 0 +-3.338 -2.699 -1.84 0 0 0 0 0 0 0 +-3.316 -2.699 -1.833 0 0 0 0 0 0 0 +-3.316 -2.716 -1.838 0 0 0 0 0 0 0 +-3.306 -2.726 -1.837 0 0 0 0 0 0 0 +-3.295 -2.734 -1.835 0 0 0 0 0 0 0 +-3.289 -2.746 -1.837 0 0 0 0 0 0 0 +-3.281 -2.748 -1.835 0 0 0 0 0 0 0 +-3.257 -2.745 -1.825 0 0 0 0 0 0 0 +-3.245 -2.753 -1.824 0 0 0 0 0 0 0 +-3.244 -2.769 -1.828 0 0 0 0 0 0 0 +-3.221 -2.768 -1.82 0 0 0 0 0 0 0 +-3.212 -2.778 -1.82 0 0 0 0 0 0 0 +-3.206 -2.79 -1.821 0 0 0 0 0 0 0 +-3.191 -2.786 -1.815 0 0 0 0 0 0 0 +-3.014 -3.09 -1.851 0 0 0 0 0 0 0 +-2.984 -3.078 -1.838 0 0 0 0 0 0 0 +-2.955 -3.058 -1.822 0 0 0 0 0 0 0 +-2.944 -3.066 -1.821 0 0 0 0 0 0 0 +-2.934 -3.075 -1.821 0 0 0 0 0 0 0 +-2.922 -3.081 -1.82 0 0 0 0 0 0 0 +-2.905 -3.083 -1.815 0 0 0 0 0 0 0 +-2.895 -3.092 -1.815 0 0 0 0 0 0 0 +-2.889 -3.105 -1.817 0 0 0 0 0 0 0 +-2.876 -3.1 -1.811 0 0 0 0 0 0 0 +-2.871 -3.114 -1.815 0 0 0 0 0 0 0 +-2.863 -3.125 -1.816 0 0 0 0 0 0 0 +-2.853 -3.134 -1.816 0 0 0 0 0 0 0 +-2.833 -3.132 -1.809 0 0 0 0 0 0 0 +-2.822 -3.139 -1.808 0 0 0 0 0 0 0 +-2.815 -3.151 -1.81 0 0 0 0 0 0 0 +-2.8 -3.144 -1.803 0 0 0 0 0 0 0 +-2.8 -3.164 -1.81 0 0 0 0 0 0 0 +-0.928 -1.212 -0.579 0 0 0 0 0 0 0 +-1.024 -1.484 -0.706 0 0 0 0 0 0 0 +-0.93 -1.354 -0.633 0 0 0 0 0 0 0 +-0.884 -1.293 -0.598 0 0 0 0 0 0 0 +-0.871 -1.282 -0.59 0 0 0 0 0 0 0 +-0.811 -1.195 -0.542 0 0 0 0 0 0 0 +-0.784 -1.161 -0.522 0 0 0 0 0 0 0 +-0.778 -1.16 -0.521 0 0 0 0 0 0 0 +-0.816 -1.227 -0.555 0 0 0 0 0 0 0 +-0.844 -1.28 -0.583 0 0 0 0 0 0 0 +-0.912 -1.397 -0.644 0 0 0 0 0 0 0 +-2.279 -3.616 -1.832 0 0 0 0 0 0 0 +-2.268 -3.61 -1.827 0 0 0 0 0 0 0 +-2.244 -3.597 -1.816 0 0 0 0 0 0 0 +-2.225 -3.591 -1.81 0 0 0 0 0 0 0 +-2.21 -3.592 -1.806 0 0 0 0 0 0 0 +-2.203 -3.605 -1.81 0 0 0 0 0 0 0 +-2.19 -3.611 -1.809 0 0 0 0 0 0 0 +-2.177 -3.614 -1.807 0 0 0 0 0 0 0 +-2.179 -3.63 -1.814 0 0 0 0 0 0 0 +-2.155 -3.615 -1.802 0 0 0 0 0 0 0 +-2.15 -3.633 -1.808 0 0 0 0 0 0 0 +-2.146 -3.654 -1.816 0 0 0 0 0 0 0 +-2.126 -3.645 -1.807 0 0 0 0 0 0 0 +-2.123 -3.667 -1.816 0 0 0 0 0 0 0 +-2.113 -3.676 -1.816 0 0 0 0 0 0 0 +-2.094 -3.655 -1.804 0 0 0 0 0 0 0 +-2.101 -3.695 -1.821 0 0 0 0 0 0 0 +-2.093 -3.708 -1.825 0 0 0 0 0 0 0 +-2.085 -3.722 -1.829 0 0 0 0 0 0 0 +-2.085 -3.75 -1.84 0 0 0 0 0 0 0 +-2.026 -3.67 -1.795 0 0 0 0 0 0 0 +-2.043 -3.729 -1.822 0 0 0 0 0 0 0 +-2.021 -3.702 -1.806 0 0 0 0 0 0 0 +-2.013 -3.715 -1.81 0 0 0 0 0 0 0 +-1.988 -3.724 -1.808 0 0 0 0 0 0 0 +-1.981 -3.74 -1.813 0 0 0 0 0 0 0 +-1.969 -3.744 -1.812 0 0 0 0 0 0 0 +-1.947 -3.731 -1.802 0 0 0 0 0 0 0 +-1.95 -3.752 -1.811 0 0 0 0 0 0 0 +-1.936 -3.753 -1.809 0 0 0 0 0 0 0 +-1.924 -3.759 -1.809 0 0 0 0 0 0 0 +-1.909 -3.759 -1.806 0 0 0 0 0 0 0 +-1.887 -3.745 -1.796 0 0 0 0 0 0 0 +-1.876 -3.751 -1.796 0 0 0 0 0 0 0 +-1.867 -3.764 -1.799 0 0 0 0 0 0 0 +-1.856 -3.757 -1.794 0 0 0 0 0 0 0 +-1.841 -3.754 -1.79 0 0 0 0 0 0 0 +-1.835 -3.773 -1.796 0 0 0 0 0 0 0 +-1.815 -3.763 -1.788 0 0 0 0 0 0 0 +-1.801 -3.763 -1.786 0 0 0 0 0 0 0 +-1.796 -3.784 -1.793 0 0 0 0 0 0 0 +-1.775 -3.768 -1.782 0 0 0 0 0 0 0 +-1.775 -3.784 -1.789 0 0 0 0 0 0 0 +-1.76 -3.783 -1.786 0 0 0 0 0 0 0 +-1.744 -3.78 -1.781 0 0 0 0 0 0 0 +-1.737 -3.796 -1.786 0 0 0 0 0 0 0 +-1.724 -3.799 -1.786 0 0 0 0 0 0 0 +-1.706 -3.791 -1.779 0 0 0 0 0 0 0 +-1.699 -3.807 -1.784 0 0 0 0 0 0 0 +-1.69 -3.803 -1.781 0 0 0 0 0 0 0 +-1.672 -3.795 -1.774 0 0 0 0 0 0 0 +-1.666 -3.813 -1.781 0 0 0 0 0 0 0 +-1.652 -3.815 -1.779 0 0 0 0 0 0 0 +-1.641 -3.822 -1.78 0 0 0 0 0 0 0 +-1.626 -3.819 -1.776 0 0 0 0 0 0 0 +-1.615 -3.827 -1.777 0 0 0 0 0 0 0 +-1.607 -3.825 -1.775 0 0 0 0 0 0 0 +-1.596 -3.833 -1.777 0 0 0 0 0 0 0 +-1.584 -3.838 -1.777 0 0 0 0 0 0 0 +-1.569 -3.836 -1.773 0 0 0 0 0 0 0 +-1.559 -3.845 -1.775 0 0 0 0 0 0 0 +-1.544 -3.843 -1.772 0 0 0 0 0 0 0 +-1.533 -3.851 -1.773 0 0 0 0 0 0 0 +-1.525 -3.848 -1.771 0 0 0 0 0 0 0 +-1.512 -3.851 -1.77 0 0 0 0 0 0 0 +-1.5 -3.854 -1.769 0 0 0 0 0 0 0 +-1.491 -3.867 -1.773 0 0 0 0 0 0 0 +-1.475 -3.864 -1.769 0 0 0 0 0 0 0 +-1.463 -3.868 -1.769 0 0 0 0 0 0 0 +-1.451 -3.871 -1.768 0 0 0 0 0 0 0 +-1.443 -3.87 -1.767 0 0 0 0 0 0 0 +-1.431 -3.874 -1.767 0 0 0 0 0 0 0 +-1.419 -3.881 -1.767 0 0 0 0 0 0 0 +-1.403 -3.873 -1.762 0 0 0 0 0 0 0 +-1.393 -3.883 -1.764 0 0 0 0 0 0 0 +-1.38 -3.885 -1.763 0 0 0 0 0 0 0 +-1.371 -3.898 -1.767 0 0 0 0 0 0 0 +-1.368 -3.911 -1.772 0 0 0 0 0 0 0 +-1.353 -3.906 -1.768 0 0 0 0 0 0 0 +-1.337 -3.9 -1.763 0 0 0 0 0 0 0 +-1.324 -3.901 -1.762 0 0 0 0 0 0 0 +-1.311 -3.905 -1.762 0 0 0 0 0 0 0 +-1.297 -3.904 -1.759 0 0 0 0 0 0 0 +-1.289 -3.92 -1.765 0 0 0 0 0 0 0 +-1.274 -3.917 -1.762 0 0 0 0 0 0 0 +-1.267 -3.914 -1.759 0 0 0 0 0 0 0 +-1.257 -3.927 -1.763 0 0 0 0 0 0 0 +-1.242 -3.922 -1.759 0 0 0 0 0 0 0 +-1.23 -3.928 -1.76 0 0 0 0 0 0 0 +-1.216 -3.926 -1.757 0 0 0 0 0 0 0 +-1.204 -3.93 -1.757 0 0 0 0 0 0 0 +-1.192 -3.934 -1.757 0 0 0 0 0 0 0 +-1.186 -3.939 -1.759 0 0 0 0 0 0 0 +-1.172 -3.934 -1.755 0 0 0 0 0 0 0 +-1.159 -3.936 -1.754 0 0 0 0 0 0 0 +-1.146 -3.94 -1.754 0 0 0 0 0 0 0 +-1.136 -3.95 -1.757 0 0 0 0 0 0 0 +-1.122 -3.947 -1.754 0 0 0 0 0 0 0 +-1.115 -3.947 -1.753 0 0 0 0 0 0 0 +-1.102 -3.947 -1.752 0 0 0 0 0 0 0 +-1.088 -3.947 -1.75 0 0 0 0 0 0 0 +-1.078 -3.957 -1.753 0 0 0 0 0 0 0 +-1.063 -3.953 -1.75 0 0 0 0 0 0 0 +-1.054 -3.967 -1.755 0 0 0 0 0 0 0 +-1.043 -3.976 -1.757 0 0 0 0 0 0 0 +-1.028 -3.97 -1.753 0 0 0 0 0 0 0 +-1.022 -3.975 -1.755 0 0 0 0 0 0 0 +-1.009 -3.973 -1.752 0 0 0 0 0 0 0 +-0.996 -3.975 -1.752 0 0 0 0 0 0 0 +-0.984 -3.981 -1.753 0 0 0 0 0 0 0 +-0.972 -3.986 -1.754 0 0 0 0 0 0 0 +-0.958 -3.984 -1.752 0 0 0 0 0 0 0 +-0.947 -3.992 -1.754 0 0 0 0 0 0 0 +-0.939 -3.988 -1.752 0 0 0 0 0 0 0 +-0.927 -3.993 -1.752 0 0 0 0 0 0 0 +-0.914 -3.994 -1.752 0 0 0 0 0 0 0 +-0.904 -4.006 -1.756 0 0 0 0 0 0 0 +-0.89 -4.003 -1.753 0 0 0 0 0 0 0 +-0.877 -4.003 -1.752 0 0 0 0 0 0 0 +-0.864 -4.007 -1.752 0 0 0 0 0 0 0 +-0.857 -4.001 -1.749 0 0 0 0 0 0 0 +-0.844 -4.006 -1.75 0 0 0 0 0 0 0 +-0.833 -4.012 -1.752 0 0 0 0 0 0 0 +-0.82 -4.013 -1.751 0 0 0 0 0 0 0 +-0.809 -4.024 -1.755 0 0 0 0 0 0 0 +-0.797 -4.03 -1.757 0 0 0 0 0 0 0 +-0.782 -4.022 -1.752 0 0 0 0 0 0 0 +-0.778 -4.036 -1.757 0 0 0 0 0 0 0 +-0.761 -4.015 -1.747 0 0 0 0 0 0 0 +-0.751 -4.032 -1.753 0 0 0 0 0 0 0 +-0.738 -4.031 -1.752 0 0 0 0 0 0 0 +-0.726 -4.036 -1.753 0 0 0 0 0 0 0 +-0.714 -4.042 -1.755 0 0 0 0 0 0 0 +-0.701 -4.046 -1.756 0 0 0 0 0 0 0 +-0.694 -4.038 -1.752 0 0 0 0 0 0 0 +-0.68 -4.035 -1.749 0 0 0 0 0 0 0 +-0.671 -4.059 -1.759 0 0 0 0 0 0 0 +-0.655 -4.045 -1.752 0 0 0 0 0 0 0 +-0.643 -4.05 -1.753 0 0 0 0 0 0 0 +-0.636 -4.087 -1.769 0 0 0 0 0 0 0 +-0.62 -4.071 -1.761 0 0 0 0 0 0 0 +-0.615 -4.079 -1.764 0 0 0 0 0 0 0 +-0.604 -4.097 -1.772 0 0 0 0 0 0 0 +-0.588 -4.075 -1.761 0 0 0 0 0 0 0 +-0.575 -4.077 -1.761 0 0 0 0 0 0 0 +-0.566 -4.102 -1.772 0 0 0 0 0 0 0 +-0.55 -4.081 -1.761 0 0 0 0 0 0 0 +-0.538 -4.093 -1.766 0 0 0 0 0 0 0 +-0.533 -4.107 -1.772 0 0 0 0 0 0 0 +-0.515 -4.067 -1.752 0 0 0 0 0 0 0 +-0.505 -4.087 -1.761 0 0 0 0 0 0 0 +-0.492 -4.084 -1.759 0 0 0 0 0 0 0 +-0.477 -4.073 -1.753 0 0 0 0 0 0 0 +-0.467 -4.1 -1.765 0 0 0 0 0 0 0 +-0.454 -4.096 -1.762 0 0 0 0 0 0 0 +-0.446 -4.081 -1.755 0 0 0 0 0 0 0 +-0.435 -4.102 -1.764 0 0 0 0 0 0 0 +-0.421 -4.096 -1.761 0 0 0 0 0 0 0 +-0.408 -4.09 -1.757 0 0 0 0 0 0 0 +-0.395 -4.091 -1.757 0 0 0 0 0 0 0 +-0.383 -4.098 -1.76 0 0 0 0 0 0 0 +-0.369 -4.092 -1.757 0 0 0 0 0 0 0 +-0.363 -4.102 -1.761 0 0 0 0 0 0 0 +-0.35 -4.094 -1.757 0 0 0 0 0 0 0 +-0.337 -4.098 -1.758 0 0 0 0 0 0 0 +-0.324 -4.099 -1.758 0 0 0 0 0 0 0 +-0.311 -4.098 -1.757 0 0 0 0 0 0 0 +-0.299 -4.107 -1.761 0 0 0 0 0 0 0 +-0.286 -4.106 -1.76 0 0 0 0 0 0 0 +-0.28 -4.11 -1.762 0 0 0 0 0 0 0 +-0.267 -4.109 -1.761 0 0 0 0 0 0 0 +-0.254 -4.115 -1.763 0 0 0 0 0 0 0 +-0.241 -4.109 -1.76 0 0 0 0 0 0 0 +-0.228 -4.117 -1.763 0 0 0 0 0 0 0 +-0.215 -4.116 -1.762 0 0 0 0 0 0 0 +-0.202 -4.122 -1.765 0 0 0 0 0 0 0 +-0.196 -4.117 -1.762 0 0 0 0 0 0 0 +-0.183 -4.123 -1.765 0 0 0 0 0 0 0 +-0.17 -4.118 -1.762 0 0 0 0 0 0 0 +-0.157 -4.118 -1.762 0 0 0 0 0 0 0 +-0.144 -4.119 -1.762 0 0 0 0 0 0 0 +-0.131 -4.119 -1.762 0 0 0 0 0 0 0 +-0.118 -4.125 -1.765 0 0 0 0 0 0 0 +-0.111 -4.105 -1.756 0 0 0 0 0 0 0 +-0.099 -4.118 -1.762 0 0 0 0 0 0 0 +-0.086 -4.117 -1.761 0 0 0 0 0 0 0 +-0.073 -4.121 -1.762 0 0 0 0 0 0 0 +-0.06 -4.121 -1.762 0 0 0 0 0 0 0 +-0.047 -4.119 -1.762 0 0 0 0 0 0 0 +-0.034 -4.132 -1.767 0 0 0 0 0 0 0 +-0.027 -4.119 -1.762 0 0 0 0 0 0 0 +-0.015 -4.118 -1.761 0 0 0 0 0 0 0 +-0.002 -4.118 -1.761 0 0 0 0 0 0 0 +0.011 -4.116 -1.76 0 0 0 0 0 0 0 +0.024 -4.121 -1.762 0 0 0 0 0 0 0 +0.037 -4.117 -1.761 0 0 0 0 0 0 0 +0.05 -4.121 -1.762 0 0 0 0 0 0 0 +0.057 -4.121 -1.762 0 0 0 0 0 0 0 +0.07 -4.126 -1.765 0 0 0 0 0 0 0 +0.083 -4.12 -1.762 0 0 0 0 0 0 0 +0.096 -4.126 -1.765 0 0 0 0 0 0 0 +0.109 -4.123 -1.764 0 0 0 0 0 0 0 +0.121 -4.119 -1.762 0 0 0 0 0 0 0 +0.134 -4.119 -1.762 0 0 0 0 0 0 0 +0.148 -4.126 -1.766 0 0 0 0 0 0 0 +0.154 -4.12 -1.763 0 0 0 0 0 0 0 +0.167 -4.123 -1.765 0 0 0 0 0 0 0 +0.18 -4.115 -1.762 0 0 0 0 0 0 0 +0.193 -4.12 -1.764 0 0 0 0 0 0 0 +0.205 -4.112 -1.761 0 0 0 0 0 0 0 +0.219 -4.119 -1.764 0 0 0 0 0 0 0 +0.232 -4.122 -1.766 0 0 0 0 0 0 0 +0.238 -4.111 -1.761 0 0 0 0 0 0 0 +0.251 -4.123 -1.767 0 0 0 0 0 0 0 +0.264 -4.122 -1.767 0 0 0 0 0 0 0 +0.277 -4.117 -1.765 0 0 0 0 0 0 0 +0.29 -4.113 -1.763 0 0 0 0 0 0 0 +0.303 -4.112 -1.763 0 0 0 0 0 0 0 +0.309 -4.117 -1.766 0 0 0 0 0 0 0 +0.323 -4.12 -1.767 0 0 0 0 0 0 0 +0.337 -4.129 -1.772 0 0 0 0 0 0 0 +0.348 -4.112 -1.765 0 0 0 0 0 0 0 +0.362 -4.122 -1.77 0 0 0 0 0 0 0 +0.376 -4.13 -1.774 0 0 0 0 0 0 0 +0.388 -4.118 -1.769 0 0 0 0 0 0 0 +0.4 -4.113 -1.767 0 0 0 0 0 0 0 +0.407 -4.119 -1.771 0 0 0 0 0 0 0 +0.42 -4.114 -1.769 0 0 0 0 0 0 0 +0.433 -4.109 -1.767 0 0 0 0 0 0 0 +0.446 -4.115 -1.771 0 0 0 0 0 0 0 +0.659 -4.125 -1.788 0 0 0 0 0 0 0 +0.666 -4.128 -1.79 0 0 0 0 0 0 0 +0.679 -4.128 -1.791 0 0 0 0 0 0 0 +0.689 -4.109 -1.783 0 0 0 0 0 0 0 +0.7 -4.096 -1.778 0 0 0 0 0 0 0 +0.714 -4.098 -1.78 0 0 0 0 0 0 0 +0.725 -4.087 -1.776 0 0 0 0 0 0 0 +0.739 -4.091 -1.779 0 0 0 0 0 0 0 +0.742 -4.072 -1.771 0 0 0 0 0 0 0 +0.756 -4.077 -1.774 0 0 0 0 0 0 0 +0.772 -4.087 -1.78 0 0 0 0 0 0 0 +0.782 -4.074 -1.775 0 0 0 0 0 0 0 +0.793 -4.061 -1.77 0 0 0 0 0 0 0 +0.804 -4.051 -1.767 0 0 0 0 0 0 0 +0.818 -4.054 -1.769 0 0 0 0 0 0 0 +0.824 -4.053 -1.769 0 0 0 0 0 0 0 +0.846 -4.089 -1.787 0 0 0 0 0 0 0 +0.858 -4.085 -1.786 0 0 0 0 0 0 0 +0.87 -4.08 -1.786 0 0 0 0 0 0 0 +0.882 -4.07 -1.782 0 0 0 0 0 0 0 +0.891 -4.052 -1.775 0 0 0 0 0 0 0 +0.905 -4.054 -1.777 0 0 0 0 0 0 0 +0.914 -4.063 -1.782 0 0 0 0 0 0 0 +0.923 -4.048 -1.777 0 0 0 0 0 0 0 +0.935 -4.042 -1.775 0 0 0 0 0 0 0 +0.954 -4.062 -1.786 0 0 0 0 0 0 0 +0.962 -4.039 -1.777 0 0 0 0 0 0 0 +0.971 -4.022 -1.77 0 0 0 0 0 0 0 +0.992 -4.054 -1.786 0 0 0 0 0 0 0 +1.614 -3.848 -1.786 0 0 0 0 0 0 0 +1.626 -3.842 -1.786 0 0 0 0 0 0 0 +1.636 -3.832 -1.783 0 0 0 0 0 0 0 +1.646 -3.84 -1.788 0 0 0 0 0 0 0 +1.654 -3.826 -1.784 0 0 0 0 0 0 0 +1.669 -3.826 -1.786 0 0 0 0 0 0 0 +1.673 -3.804 -1.778 0 0 0 0 0 0 0 +1.691 -3.812 -1.785 0 0 0 0 0 0 0 +1.702 -3.805 -1.784 0 0 0 0 0 0 0 +1.711 -3.793 -1.781 0 0 0 0 0 0 0 +1.716 -3.787 -1.779 0 0 0 0 0 0 0 +1.732 -3.792 -1.784 0 0 0 0 0 0 0 +1.747 -3.793 -1.787 0 0 0 0 0 0 0 +1.757 -3.782 -1.785 0 0 0 0 0 0 0 +1.781 -3.803 -1.798 0 0 0 0 0 0 0 +1.782 -3.774 -1.786 0 0 0 0 0 0 0 +1.793 -3.767 -1.786 0 0 0 0 0 0 0 +1.803 -3.773 -1.79 0 0 0 0 0 0 0 +1.812 -3.76 -1.786 0 0 0 0 0 0 0 +1.812 -3.732 -1.775 0 0 0 0 0 0 0 +1.831 -3.741 -1.782 0 0 0 0 0 0 0 +1.844 -3.737 -1.783 0 0 0 0 0 0 0 +1.854 -3.728 -1.781 0 0 0 0 0 0 0 +1.869 -3.728 -1.785 0 0 0 0 0 0 0 +1.875 -3.727 -1.786 0 0 0 0 0 0 0 +1.885 -3.718 -1.784 0 0 0 0 0 0 0 +1.898 -3.713 -1.785 0 0 0 0 0 0 0 +1.91 -3.709 -1.786 0 0 0 0 0 0 0 +1.917 -3.693 -1.781 0 0 0 0 0 0 0 +1.931 -3.692 -1.783 0 0 0 0 0 0 0 +1.946 -3.692 -1.786 0 0 0 0 0 0 0 +1.953 -3.691 -1.787 0 0 0 0 0 0 0 +1.964 -3.685 -1.787 0 0 0 0 0 0 0 +1.974 -3.675 -1.786 0 0 0 0 0 0 0 +1.987 -3.671 -1.786 0 0 0 0 0 0 0 +1.999 -3.666 -1.787 0 0 0 0 0 0 0 +2.011 -3.661 -1.788 0 0 0 0 0 0 0 +2.02 -3.65 -1.786 0 0 0 0 0 0 0 +2.028 -3.65 -1.787 0 0 0 0 0 0 0 +2.045 -3.653 -1.792 0 0 0 0 0 0 0 +2.056 -3.647 -1.792 0 0 0 0 0 0 0 +2.061 -3.63 -1.786 0 0 0 0 0 0 0 +2.074 -3.626 -1.788 0 0 0 0 0 0 0 +2.082 -3.613 -1.785 0 0 0 0 0 0 0 +2.095 -3.61 -1.786 0 0 0 0 0 0 0 +2.104 -3.611 -1.789 0 0 0 0 0 0 0 +2.11 -3.597 -1.785 0 0 0 0 0 0 0 +2.119 -3.586 -1.782 0 0 0 0 0 0 0 +2.14 -3.594 -1.791 0 0 0 0 0 0 0 +2.141 -3.572 -1.782 0 0 0 0 0 0 0 +2.152 -3.564 -1.781 0 0 0 0 0 0 0 +2.175 -3.577 -1.792 0 0 0 0 0 0 0 +2.18 -3.572 -1.791 0 0 0 0 0 0 0 +2.189 -3.562 -1.79 0 0 0 0 0 0 0 +2.206 -3.565 -1.795 0 0 0 0 0 0 0 +2.207 -3.541 -1.786 0 0 0 0 0 0 0 +2.226 -3.546 -1.792 0 0 0 0 0 0 0 +2.238 -3.541 -1.793 0 0 0 0 0 0 0 +2.245 -3.527 -1.79 0 0 0 0 0 0 0 +2.254 -3.53 -1.793 0 0 0 0 0 0 0 +2.268 -3.528 -1.796 0 0 0 0 0 0 0 +2.271 -3.507 -1.788 0 0 0 0 0 0 0 +2.292 -3.515 -1.796 0 0 0 0 0 0 0 +2.3 -3.503 -1.794 0 0 0 0 0 0 0 +2.308 -3.491 -1.791 0 0 0 0 0 0 0 +2.323 -3.49 -1.795 0 0 0 0 0 0 0 +2.322 -3.477 -1.79 0 0 0 0 0 0 0 +2.334 -3.471 -1.791 0 0 0 0 0 0 0 +2.346 -3.466 -1.791 0 0 0 0 0 0 0 +2.361 -3.464 -1.795 0 0 0 0 0 0 0 +2.369 -3.452 -1.792 0 0 0 0 0 0 0 +2.385 -3.452 -1.796 0 0 0 0 0 0 0 +2.399 -3.449 -1.799 0 0 0 0 0 0 0 +2.405 -3.436 -1.796 0 0 0 0 0 0 0 +2.41 -3.431 -1.795 0 0 0 0 0 0 0 +2.419 -3.421 -1.794 0 0 0 0 0 0 0 +2.433 -3.418 -1.796 0 0 0 0 0 0 0 +2.446 -3.414 -1.798 0 0 0 0 0 0 0 +2.461 -3.412 -1.801 0 0 0 0 0 0 0 +2.465 -3.395 -1.796 0 0 0 0 0 0 0 +2.478 -3.39 -1.798 0 0 0 0 0 0 0 +2.485 -3.388 -1.799 0 0 0 0 0 0 0 +2.495 -3.38 -1.799 0 0 0 0 0 0 0 +2.506 -3.372 -1.799 0 0 0 0 0 0 0 +2.523 -3.373 -1.804 0 0 0 0 0 0 0 +2.532 -3.364 -1.803 0 0 0 0 0 0 0 +2.537 -3.348 -1.799 0 0 0 0 0 0 0 +2.547 -3.35 -1.802 0 0 0 0 0 0 0 +2.554 -3.338 -1.8 0 0 0 0 0 0 0 +2.569 -3.336 -1.803 0 0 0 0 0 0 0 +2.577 -3.325 -1.801 0 0 0 0 0 0 0 +2.583 -3.311 -1.798 0 0 0 0 0 0 0 +2.596 -3.306 -1.8 0 0 0 0 0 0 0 +2.602 -3.292 -1.796 0 0 0 0 0 0 0 +2.609 -3.29 -1.798 0 0 0 0 0 0 0 +2.617 -3.279 -1.796 0 0 0 0 0 0 0 +2.63 -3.274 -1.798 0 0 0 0 0 0 0 +2.644 -3.27 -1.801 0 0 0 0 0 0 0 +2.654 -3.262 -1.801 0 0 0 0 0 0 0 +2.661 -3.249 -1.798 0 0 0 0 0 0 0 +2.674 -3.245 -1.801 0 0 0 0 0 0 0 +2.676 -3.236 -1.798 0 0 0 0 0 0 0 +2.684 -3.225 -1.796 0 0 0 0 0 0 0 +2.695 -3.218 -1.797 0 0 0 0 0 0 0 +2.709 -3.214 -1.8 0 0 0 0 0 0 0 +2.724 -3.211 -1.803 0 0 0 0 0 0 0 +2.73 -3.198 -1.801 0 0 0 0 0 0 0 +2.741 -3.191 -1.801 0 0 0 0 0 0 0 +2.751 -3.182 -1.801 0 0 0 0 0 0 0 +2.757 -3.179 -1.802 0 0 0 0 0 0 0 +2.761 -3.164 -1.798 0 0 0 0 0 0 0 +2.777 -3.162 -1.802 0 0 0 0 0 0 0 +2.789 -3.155 -1.803 0 0 0 0 0 0 0 +2.8 -3.147 -1.804 0 0 0 0 0 0 0 +2.811 -3.14 -1.805 0 0 0 0 0 0 0 +2.818 -3.128 -1.803 0 0 0 0 0 0 0 +2.821 -3.121 -1.801 0 0 0 0 0 0 0 +2.83 -3.112 -1.801 0 0 0 0 0 0 0 +2.843 -3.106 -1.803 0 0 0 0 0 0 0 +2.855 -3.1 -1.805 0 0 0 0 0 0 0 +2.86 -3.085 -1.801 0 0 0 0 0 0 0 +2.866 -3.072 -1.799 0 0 0 0 0 0 0 +2.878 -3.066 -1.801 0 0 0 0 0 0 0 +2.886 -3.065 -1.803 0 0 0 0 0 0 0 +2.897 -3.058 -1.804 0 0 0 0 0 0 0 +2.903 -3.045 -1.801 0 0 0 0 0 0 0 +2.919 -3.042 -1.806 0 0 0 0 0 0 0 +2.931 -3.035 -1.807 0 0 0 0 0 0 0 +2.938 -3.024 -1.806 0 0 0 0 0 0 0 +2.945 -3.022 -1.807 0 0 0 0 0 0 0 +2.951 -3.008 -1.805 0 0 0 0 0 0 0 +2.964 -3.003 -1.807 0 0 0 0 0 0 0 +2.985 -3.005 -1.815 0 0 0 0 0 0 0 +2.991 -2.992 -1.812 0 0 0 0 0 0 0 +3.001 -2.984 -1.813 0 0 0 0 0 0 0 +3.015 -2.978 -1.816 0 0 0 0 0 0 0 +3.025 -2.97 -1.816 0 0 0 0 0 0 0 +3.022 -2.958 -1.811 0 0 0 0 0 0 0 +3.033 -2.949 -1.812 0 0 0 0 0 0 0 +3.033 -2.931 -1.806 0 0 0 0 0 0 0 +3.047 -2.927 -1.81 0 0 0 0 0 0 0 +3.051 -2.912 -1.806 0 0 0 0 0 0 0 +3.062 -2.904 -1.807 0 0 0 0 0 0 0 +3.075 -2.898 -1.81 0 0 0 0 0 0 0 +3.082 -2.895 -1.811 0 0 0 0 0 0 0 +3.09 -2.884 -1.811 0 0 0 0 0 0 0 +3.087 -2.864 -1.803 0 0 0 0 0 0 0 +3.1 -2.858 -1.806 0 0 0 0 0 0 0 +3.107 -2.847 -1.805 0 0 0 0 0 0 0 +3.115 -2.836 -1.804 0 0 0 0 0 0 0 +3.117 -2.82 -1.8 0 0 0 0 0 0 0 +3.121 -2.815 -1.8 0 0 0 0 0 0 0 +3.129 -2.804 -1.799 0 0 0 0 0 0 0 +3.146 -2.801 -1.804 0 0 0 0 0 0 0 +3.156 -2.793 -1.805 0 0 0 0 0 0 0 +3.156 -2.775 -1.8 0 0 0 0 0 0 0 +3.176 -2.775 -1.806 0 0 0 0 0 0 0 +3.183 -2.764 -1.806 0 0 0 0 0 0 0 +3.185 -2.756 -1.804 0 0 0 0 0 0 0 +3.195 -2.748 -1.805 0 0 0 0 0 0 0 +3.2 -2.734 -1.802 0 0 0 0 0 0 0 +3.215 -2.73 -1.806 0 0 0 0 0 0 0 +3.218 -2.715 -1.803 0 0 0 0 0 0 0 +3.235 -2.712 -1.808 0 0 0 0 0 0 0 +3.242 -2.709 -1.81 0 0 0 0 0 0 0 +3.239 -2.69 -1.803 0 0 0 0 0 0 0 +3.234 -2.668 -1.795 0 0 0 0 0 0 0 +3.256 -2.669 -1.803 0 0 0 0 0 0 0 +3.255 -2.651 -1.797 0 0 0 0 0 0 0 +3.256 -2.635 -1.793 0 0 0 0 0 0 0 +3.274 -2.633 -1.799 0 0 0 0 0 0 0 +3.285 -2.625 -1.801 0 0 0 0 0 0 0 +3.276 -2.61 -1.793 0 0 0 0 0 0 0 +3.303 -2.614 -1.804 0 0 0 0 0 0 0 +3.301 -2.596 -1.798 0 0 0 0 0 0 0 +3.301 -2.579 -1.793 0 0 0 0 0 0 0 +3.312 -2.57 -1.795 0 0 0 0 0 0 0 +3.321 -2.561 -1.796 0 0 0 0 0 0 0 +3.318 -2.542 -1.789 0 0 0 0 0 0 0 +3.326 -2.54 -1.791 0 0 0 0 0 0 0 +3.338 -2.533 -1.794 0 0 0 0 0 0 0 +1.509 -0.996 -0.708 0 0 0 0 0 0 0 +3.596 -2.19 -1.803 0 0 0 0 0 0 0 +3.592 -2.172 -1.797 0 0 0 0 0 0 0 +3.591 -2.156 -1.793 0 0 0 0 0 0 0 +3.592 -2.141 -1.79 0 0 0 0 0 0 0 +3.603 -2.132 -1.792 0 0 0 0 0 0 0 +3.607 -2.119 -1.791 0 0 0 0 0 0 0 +3.613 -2.115 -1.792 0 0 0 0 0 0 0 +3.632 -2.111 -1.799 0 0 0 0 0 0 0 +3.84 -1.801 -1.817 0 0 0 0 0 0 0 +3.818 -1.776 -1.803 0 0 0 0 0 0 0 +3.79 -1.749 -1.786 0 0 0 0 0 0 0 +3.787 -1.733 -1.782 0 0 0 0 0 0 0 +3.788 -1.726 -1.781 0 0 0 0 0 0 0 +3.795 -1.715 -1.782 0 0 0 0 0 0 0 +3.797 -1.702 -1.781 0 0 0 0 0 0 0 +3.803 -1.69 -1.781 0 0 0 0 0 0 0 +3.81 -1.679 -1.781 0 0 0 0 0 0 0 +3.817 -1.667 -1.782 0 0 0 0 0 0 0 +3.822 -1.655 -1.782 0 0 0 0 0 0 0 +3.824 -1.649 -1.782 0 0 0 0 0 0 0 +3.826 -1.636 -1.781 0 0 0 0 0 0 0 +3.836 -1.626 -1.783 0 0 0 0 0 0 0 +3.841 -1.614 -1.783 0 0 0 0 0 0 0 +3.85 -1.603 -1.785 0 0 0 0 0 0 0 +3.846 -1.588 -1.781 0 0 0 0 0 0 0 +3.85 -1.575 -1.78 0 0 0 0 0 0 0 +3.854 -1.57 -1.781 0 0 0 0 0 0 0 +3.859 -1.557 -1.781 0 0 0 0 0 0 0 +3.864 -1.545 -1.781 0 0 0 0 0 0 0 +3.865 -1.532 -1.779 0 0 0 0 0 0 0 +3.875 -1.522 -1.781 0 0 0 0 0 0 0 +3.875 -1.507 -1.779 0 0 0 0 0 0 0 +3.881 -1.496 -1.78 0 0 0 0 0 0 0 +3.89 -1.492 -1.783 0 0 0 0 0 0 0 +3.888 -1.478 -1.78 0 0 0 0 0 0 0 +3.901 -1.469 -1.784 0 0 0 0 0 0 0 +3.901 -1.454 -1.781 0 0 0 0 0 0 0 +3.902 -1.441 -1.78 0 0 0 0 0 0 0 +3.908 -1.429 -1.781 0 0 0 0 0 0 0 +3.906 -1.415 -1.777 0 0 0 0 0 0 0 +3.92 -1.413 -1.783 0 0 0 0 0 0 0 +3.919 -1.399 -1.781 0 0 0 0 0 0 0 +3.901 -1.378 -1.77 0 0 0 0 0 0 0 +3.928 -1.374 -1.781 0 0 0 0 0 0 0 +3.925 -1.359 -1.777 0 0 0 0 0 0 0 +3.924 -1.345 -1.775 0 0 0 0 0 0 0 +3.91 -1.326 -1.766 0 0 0 0 0 0 0 +3.938 -1.329 -1.778 0 0 0 0 0 0 0 +3.754 1.397 -1.752 0 0 0 0 0 0 0 +3.75 1.409 -1.752 0 0 0 0 0 0 0 +3.73 1.415 -1.744 0 0 0 0 0 0 0 +3.732 1.429 -1.748 0 0 0 0 0 0 0 +3.735 1.437 -1.75 0 0 0 0 0 0 0 +3.727 1.447 -1.748 0 0 0 0 0 0 0 +3.724 1.46 -1.749 0 0 0 0 0 0 0 +3.727 1.474 -1.753 0 0 0 0 0 0 0 +3.715 1.483 -1.749 0 0 0 0 0 0 0 +3.705 1.493 -1.747 0 0 0 0 0 0 0 +3.704 1.506 -1.748 0 0 0 0 0 0 0 +3.7 1.511 -1.748 0 0 0 0 0 0 0 +3.704 1.526 -1.752 0 0 0 0 0 0 0 +3.697 1.537 -1.751 0 0 0 0 0 0 0 +3.687 1.546 -1.748 0 0 0 0 0 0 0 +3.684 1.559 -1.749 0 0 0 0 0 0 0 +3.677 1.569 -1.748 0 0 0 0 0 0 0 +3.681 1.584 -1.753 0 0 0 0 0 0 0 +3.669 1.593 -1.749 0 0 0 0 0 0 0 +3.675 1.603 -1.753 0 0 0 0 0 0 0 +3.67 1.614 -1.753 0 0 0 0 0 0 0 +3.662 1.624 -1.752 0 0 0 0 0 0 0 +3.651 1.633 -1.749 0 0 0 0 0 0 0 +3.638 1.641 -1.745 0 0 0 0 0 0 0 +3.654 1.662 -1.756 0 0 0 0 0 0 0 +3.639 1.669 -1.751 0 0 0 0 0 0 0 +3.642 1.677 -1.753 0 0 0 0 0 0 0 +3.649 1.695 -1.76 0 0 0 0 0 0 0 +3.463 1.981 -1.744 0 0 0 0 0 0 0 +3.477 2.003 -1.755 0 0 0 0 0 0 0 +3.488 2.024 -1.764 0 0 0 0 0 0 0 +3.447 2.015 -1.746 0 0 0 0 0 0 0 +3.452 2.025 -1.75 0 0 0 0 0 0 0 +3.458 2.043 -1.757 0 0 0 0 0 0 0 +3.447 2.051 -1.754 0 0 0 0 0 0 0 +3.432 2.058 -1.75 0 0 0 0 0 0 0 +3.432 2.072 -1.753 0 0 0 0 0 0 0 +3.156 2.431 -1.742 0 0 0 0 0 0 0 +3.166 2.454 -1.752 0 0 0 0 0 0 0 +3.154 2.461 -1.749 0 0 0 0 0 0 0 +3.14 2.466 -1.746 0 0 0 0 0 0 0 +3.135 2.478 -1.748 0 0 0 0 0 0 0 +3.122 2.483 -1.744 0 0 0 0 0 0 0 +3.111 2.491 -1.742 0 0 0 0 0 0 0 +3.122 2.507 -1.751 0 0 0 0 0 0 0 +3.1 2.506 -1.742 0 0 0 0 0 0 0 +3.097 2.52 -1.746 0 0 0 0 0 0 0 +3.089 2.53 -1.746 0 0 0 0 0 0 0 +3.069 2.529 -1.738 0 0 0 0 0 0 0 +3.066 2.543 -1.742 0 0 0 0 0 0 0 +3.068 2.561 -1.748 0 0 0 0 0 0 0 +3.056 2.559 -1.742 0 0 0 0 0 0 0 +3.051 2.571 -1.744 0 0 0 0 0 0 0 +3.044 2.581 -1.745 0 0 0 0 0 0 0 +3.026 2.583 -1.739 0 0 0 0 0 0 0 +3.025 2.598 -1.743 0 0 0 0 0 0 0 +3.019 2.61 -1.745 0 0 0 0 0 0 0 +2.995 2.605 -1.735 0 0 0 0 0 0 0 +3 2.618 -1.741 0 0 0 0 0 0 0 +2.999 2.634 -1.745 0 0 0 0 0 0 0 +2.985 2.638 -1.742 0 0 0 0 0 0 0 +2.974 2.645 -1.74 0 0 0 0 0 0 0 +2.975 2.663 -1.746 0 0 0 0 0 0 0 +2.955 2.662 -1.738 0 0 0 0 0 0 0 +2.96 2.683 -1.747 0 0 0 0 0 0 0 +2.954 2.686 -1.746 0 0 0 0 0 0 0 +2.923 2.675 -1.731 0 0 0 0 0 0 0 +2.932 2.7 -1.742 0 0 0 0 0 0 0 +2.925 2.71 -1.743 0 0 0 0 0 0 0 +2.908 2.712 -1.738 0 0 0 0 0 0 0 +2.914 2.735 -1.748 0 0 0 0 0 0 0 +2.902 2.74 -1.745 0 0 0 0 0 0 0 +2.884 2.732 -1.737 0 0 0 0 0 0 0 +2.886 2.751 -1.743 0 0 0 0 0 0 0 +2.883 2.765 -1.747 0 0 0 0 0 0 0 +2.871 2.772 -1.745 0 0 0 0 0 0 0 +2.864 2.782 -1.746 0 0 0 0 0 0 0 +2.855 2.791 -1.746 0 0 0 0 0 0 0 +2.844 2.798 -1.744 0 0 0 0 0 0 0 +2.843 2.806 -1.747 0 0 0 0 0 0 0 +2.837 2.817 -1.748 0 0 0 0 0 0 0 +2.824 2.823 -1.746 0 0 0 0 0 0 0 +2.826 2.842 -1.753 0 0 0 0 0 0 0 +2.805 2.839 -1.745 0 0 0 0 0 0 0 +2.799 2.85 -1.747 0 0 0 0 0 0 0 +2.789 2.858 -1.746 0 0 0 0 0 0 0 +2.787 2.865 -1.748 0 0 0 0 0 0 0 +2.778 2.873 -1.748 0 0 0 0 0 0 0 +2.771 2.885 -1.749 0 0 0 0 0 0 0 +2.763 2.895 -1.75 0 0 0 0 0 0 0 +2.753 2.902 -1.749 0 0 0 0 0 0 0 +2.745 2.912 -1.75 0 0 0 0 0 0 0 +2.736 2.921 -1.75 0 0 0 0 0 0 0 +2.735 2.929 -1.753 0 0 0 0 0 0 0 +2.723 2.935 -1.751 0 0 0 0 0 0 0 +2.718 2.947 -1.753 0 0 0 0 0 0 0 +2.702 2.949 -1.749 0 0 0 0 0 0 0 +2.703 2.968 -1.756 0 0 0 0 0 0 0 +2.691 2.974 -1.754 0 0 0 0 0 0 0 +2.676 2.976 -1.75 0 0 0 0 0 0 0 +2.673 2.983 -1.752 0 0 0 0 0 0 0 +2.67 2.998 -1.756 0 0 0 0 0 0 0 +2.655 3 -1.752 0 0 0 0 0 0 0 +2.646 3.009 -1.753 0 0 0 0 0 0 0 +2.636 3.016 -1.752 0 0 0 0 0 0 0 +2.632 3.031 -1.756 0 0 0 0 0 0 0 +2.618 3.034 -1.753 0 0 0 0 0 0 0 +2.607 3.041 -1.752 0 0 0 0 0 0 0 +2.613 3.057 -1.759 0 0 0 0 0 0 0 +2.604 3.066 -1.759 0 0 0 0 0 0 0 +2.592 3.071 -1.758 0 0 0 0 0 0 0 +2.587 3.085 -1.761 0 0 0 0 0 0 0 +2.576 3.091 -1.76 0 0 0 0 0 0 0 +2.56 3.092 -1.756 0 0 0 0 0 0 0 +2.548 3.098 -1.754 0 0 0 0 0 0 0 +2.543 3.102 -1.754 0 0 0 0 0 0 0 +2.535 3.111 -1.755 0 0 0 0 0 0 0 +2.532 3.127 -1.76 0 0 0 0 0 0 0 +2.525 3.14 -1.763 0 0 0 0 0 0 0 +2.51 3.14 -1.758 0 0 0 0 0 0 0 +2.492 3.138 -1.753 0 0 0 0 0 0 0 +2.497 3.155 -1.76 0 0 0 0 0 0 0 +2.482 3.156 -1.756 0 0 0 0 0 0 0 +2.477 3.171 -1.76 0 0 0 0 0 0 0 +2.468 3.18 -1.761 0 0 0 0 0 0 0 +2.46 3.189 -1.762 0 0 0 0 0 0 0 +2.443 3.188 -1.757 0 0 0 0 0 0 0 +2.436 3.2 -1.759 0 0 0 0 0 0 0 +2.434 3.208 -1.762 0 0 0 0 0 0 0 +2.423 3.214 -1.761 0 0 0 0 0 0 0 +2.41 3.218 -1.758 0 0 0 0 0 0 0 +2.392 3.215 -1.753 0 0 0 0 0 0 0 +2.387 3.23 -1.757 0 0 0 0 0 0 0 +2.375 3.234 -1.755 0 0 0 0 0 0 0 +2.367 3.245 -1.757 0 0 0 0 0 0 0 +2.36 3.257 -1.759 0 0 0 0 0 0 0 +2.356 3.262 -1.76 0 0 0 0 0 0 0 +2.345 3.268 -1.759 0 0 0 0 0 0 0 +2.331 3.271 -1.757 0 0 0 0 0 0 0 +2.323 3.281 -1.758 0 0 0 0 0 0 0 +2.313 3.288 -1.758 0 0 0 0 0 0 0 +2.305 3.298 -1.76 0 0 0 0 0 0 0 +2.291 3.301 -1.758 0 0 0 0 0 0 0 +2.284 3.302 -1.756 0 0 0 0 0 0 0 +2.274 3.31 -1.757 0 0 0 0 0 0 0 +2.272 3.33 -1.764 0 0 0 0 0 0 0 +2.258 3.331 -1.76 0 0 0 0 0 0 0 +2.247 3.338 -1.76 0 0 0 0 0 0 0 +2.24 3.349 -1.763 0 0 0 0 0 0 0 +2.221 3.344 -1.756 0 0 0 0 0 0 0 +2.216 3.359 -1.76 0 0 0 0 0 0 0 +2.202 3.35 -1.753 0 0 0 0 0 0 0 +2.191 3.356 -1.753 0 0 0 0 0 0 0 +2.184 3.368 -1.756 0 0 0 0 0 0 0 +2.174 3.375 -1.756 0 0 0 0 0 0 0 +2.161 3.379 -1.754 0 0 0 0 0 0 0 +2.149 3.384 -1.753 0 0 0 0 0 0 0 +2.142 3.385 -1.752 0 0 0 0 0 0 0 +2.13 3.388 -1.75 0 0 0 0 0 0 0 +2.122 3.4 -1.753 0 0 0 0 0 0 0 +2.113 3.409 -1.754 0 0 0 0 0 0 0 +2.098 3.408 -1.75 0 0 0 0 0 0 0 +2.086 3.413 -1.749 0 0 0 0 0 0 0 +2.08 3.428 -1.753 0 0 0 0 0 0 0 +2.068 3.433 -1.753 0 0 0 0 0 0 0 +2.056 3.425 -1.747 0 0 0 0 0 0 0 +2.051 3.441 -1.752 0 0 0 0 0 0 0 +2.036 3.441 -1.748 0 0 0 0 0 0 0 +2.024 3.444 -1.747 0 0 0 0 0 0 0 +2.014 3.452 -1.748 0 0 0 0 0 0 0 +2.006 3.463 -1.75 0 0 0 0 0 0 0 +1.993 3.466 -1.748 0 0 0 0 0 0 0 +1.989 3.472 -1.75 0 0 0 0 0 0 0 +1.974 3.471 -1.746 0 0 0 0 0 0 0 +1.961 3.474 -1.744 0 0 0 0 0 0 0 +1.951 3.482 -1.745 0 0 0 0 0 0 0 +1.937 3.481 -1.742 0 0 0 0 0 0 0 +1.929 3.494 -1.745 0 0 0 0 0 0 0 +1.919 3.501 -1.746 0 0 0 0 0 0 0 +1.914 3.504 -1.746 0 0 0 0 0 0 0 +1.9 3.506 -1.743 0 0 0 0 0 0 0 +1.893 3.518 -1.747 0 0 0 0 0 0 0 +1.879 3.519 -1.744 0 0 0 0 0 0 0 +1.866 3.522 -1.742 0 0 0 0 0 0 0 +1.857 3.531 -1.744 0 0 0 0 0 0 0 +1.846 3.537 -1.744 0 0 0 0 0 0 0 +1.837 3.533 -1.741 0 0 0 0 0 0 0 +1.826 3.539 -1.741 0 0 0 0 0 0 0 +1.814 3.545 -1.741 0 0 0 0 0 0 0 +1.807 3.557 -1.744 0 0 0 0 0 0 0 +1.795 3.561 -1.743 0 0 0 0 0 0 0 +1.783 3.565 -1.742 0 0 0 0 0 0 0 +1.766 3.559 -1.737 0 0 0 0 0 0 0 +1.763 3.568 -1.74 0 0 0 0 0 0 0 +1.752 3.574 -1.74 0 0 0 0 0 0 0 +1.738 3.574 -1.737 0 0 0 0 0 0 0 +1.731 3.588 -1.742 0 0 0 0 0 0 0 +1.718 3.59 -1.74 0 0 0 0 0 0 0 +1.709 3.6 -1.742 0 0 0 0 0 0 0 +1.694 3.598 -1.738 0 0 0 0 0 0 0 +1.684 3.605 -1.739 0 0 0 0 0 0 0 +1.673 3.597 -1.734 0 0 0 0 0 0 0 +1.664 3.606 -1.736 0 0 0 0 0 0 0 +1.651 3.608 -1.734 0 0 0 0 0 0 0 +1.645 3.625 -1.74 0 0 0 0 0 0 0 +1.627 3.616 -1.733 0 0 0 0 0 0 0 +1.618 3.627 -1.736 0 0 0 0 0 0 0 +1.607 3.632 -1.736 0 0 0 0 0 0 0 +1.608 3.651 -1.744 0 0 0 0 0 0 0 +1.596 3.654 -1.743 0 0 0 0 0 0 0 +1.584 3.657 -1.742 0 0 0 0 0 0 0 +1.57 3.657 -1.74 0 0 0 0 0 0 0 +1.56 3.666 -1.742 0 0 0 0 0 0 0 +1.542 3.655 -1.734 0 0 0 0 0 0 0 +1.538 3.677 -1.742 0 0 0 0 0 0 0 +1.537 3.691 -1.748 0 0 0 0 0 0 0 +1.518 3.679 -1.74 0 0 0 0 0 0 0 +1.506 3.682 -1.739 0 0 0 0 0 0 0 +1.497 3.694 -1.742 0 0 0 0 0 0 0 +1.48 3.685 -1.736 0 0 0 0 0 0 0 +1.473 3.7 -1.741 0 0 0 0 0 0 0 +1.469 3.723 -1.75 0 0 0 0 0 0 0 +1.456 3.708 -1.742 0 0 0 0 0 0 0 +1.444 3.711 -1.741 0 0 0 0 0 0 0 +1.431 3.712 -1.739 0 0 0 0 0 0 0 +1.409 3.691 -1.726 0 0 0 0 0 0 0 +1.401 3.704 -1.731 0 0 0 0 0 0 0 +1.392 3.715 -1.734 0 0 0 0 0 0 0 +1.374 3.705 -1.726 0 0 0 0 0 0 0 +1.366 3.7 -1.723 0 0 0 0 0 0 0 +1.358 3.713 -1.727 0 0 0 0 0 0 0 +1.341 3.703 -1.72 0 0 0 0 0 0 0 +1.332 3.716 -1.725 0 0 0 0 0 0 0 +1.326 3.734 -1.731 0 0 0 0 0 0 0 +1.305 3.714 -1.72 0 0 0 0 0 0 0 +1.293 3.716 -1.719 0 0 0 0 0 0 0 +1.285 3.731 -1.724 0 0 0 0 0 0 0 +1.274 3.719 -1.717 0 0 0 0 0 0 0 +1.266 3.732 -1.721 0 0 0 0 0 0 0 +1.255 3.739 -1.723 0 0 0 0 0 0 0 +1.236 3.722 -1.713 0 0 0 0 0 0 0 +1.23 3.743 -1.721 0 0 0 0 0 0 0 +1.22 3.751 -1.723 0 0 0 0 0 0 0 +1.204 3.742 -1.717 0 0 0 0 0 0 0 +1.199 3.746 -1.718 0 0 0 0 0 0 0 +1.193 3.769 -1.727 0 0 0 0 0 0 0 +1.173 3.748 -1.715 0 0 0 0 0 0 0 +1.16 3.749 -1.714 0 0 0 0 0 0 0 +1.151 3.761 -1.718 0 0 0 0 0 0 0 +1.136 3.754 -1.713 0 0 0 0 0 0 0 +1.127 3.764 -1.716 0 0 0 0 0 0 0 +1.124 3.777 -1.721 0 0 0 0 0 0 0 +1.108 3.766 -1.715 0 0 0 0 0 0 0 +1.097 3.773 -1.716 0 0 0 0 0 0 0 +1.088 3.785 -1.72 0 0 0 0 0 0 0 +1.072 3.775 -1.714 0 0 0 0 0 0 0 +1.064 3.792 -1.72 0 0 0 0 0 0 0 +1.053 3.797 -1.721 0 0 0 0 0 0 0 +1.042 3.783 -1.714 0 0 0 0 0 0 0 +1.033 3.795 -1.718 0 0 0 0 0 0 0 +1.021 3.798 -1.718 0 0 0 0 0 0 0 +1.007 3.796 -1.715 0 0 0 0 0 0 0 +1 3.815 -1.723 0 0 0 0 0 0 0 +0.985 3.81 -1.719 0 0 0 0 0 0 0 +0.973 3.811 -1.718 0 0 0 0 0 0 0 +0.96 3.81 -1.716 0 0 0 0 0 0 0 +0.955 3.814 -1.717 0 0 0 0 0 0 0 +0.943 3.817 -1.717 0 0 0 0 0 0 0 +0.931 3.821 -1.718 0 0 0 0 0 0 0 +0.919 3.826 -1.719 0 0 0 0 0 0 0 +0.908 3.831 -1.72 0 0 0 0 0 0 0 +0.895 3.83 -1.718 0 0 0 0 0 0 0 +0.88 3.822 -1.713 0 0 0 0 0 0 0 +0.877 3.836 -1.719 0 0 0 0 0 0 0 +0.865 3.837 -1.718 0 0 0 0 0 0 0 +0.852 3.838 -1.717 0 0 0 0 0 0 0 +0.841 3.844 -1.719 0 0 0 0 0 0 0 +0.827 3.84 -1.715 0 0 0 0 0 0 0 +0.816 3.846 -1.717 0 0 0 0 0 0 0 +0.804 3.846 -1.716 0 0 0 0 0 0 0 +0.799 3.855 -1.72 0 0 0 0 0 0 0 +0.787 3.859 -1.72 0 0 0 0 0 0 0 +0.775 3.858 -1.719 0 0 0 0 0 0 0 +0.762 3.857 -1.717 0 0 0 0 0 0 0 +0.75 3.861 -1.718 0 0 0 0 0 0 0 +0.737 3.861 -1.717 0 0 0 0 0 0 0 +0.726 3.869 -1.72 0 0 0 0 0 0 0 +0.72 3.87 -1.72 0 0 0 0 0 0 0 +0.705 3.858 -1.713 0 0 0 0 0 0 0 +0.641 3.581 -1.58 0 0 0 0 0 0 0 +0.617 3.511 -1.546 0 0 0 0 0 0 0 +0.602 3.49 -1.535 0 0 0 0 0 0 0 +0.591 3.496 -1.537 0 0 0 0 0 0 0 +0.58 3.494 -1.535 0 0 0 0 0 0 0 +0.568 3.49 -1.533 0 0 0 0 0 0 0 +0.561 3.48 -1.528 0 0 0 0 0 0 0 +0.55 3.486 -1.529 0 0 0 0 0 0 0 +0.54 3.491 -1.531 0 0 0 0 0 0 0 +0.529 3.496 -1.533 0 0 0 0 0 0 0 +0.519 3.503 -1.535 0 0 0 0 0 0 0 +0.509 3.512 -1.539 0 0 0 0 0 0 0 +0.498 3.514 -1.539 0 0 0 0 0 0 0 +0.495 3.527 -1.545 0 0 0 0 0 0 0 +0.485 3.541 -1.551 0 0 0 0 0 0 0 +0.435 3.264 -1.42 0 0 0 0 0 0 0 +0.418 3.219 -1.398 0 0 0 0 0 0 0 +0.407 3.211 -1.393 0 0 0 0 0 0 0 +0.397 3.214 -1.394 0 0 0 0 0 0 0 +0.388 3.225 -1.398 0 0 0 0 0 0 0 +0.383 3.225 -1.398 0 0 0 0 0 0 0 +0.437 3.741 -1.64 0 0 0 0 0 0 0 +0.445 3.906 -1.717 0 0 0 0 0 0 0 +0.431 3.9 -1.714 0 0 0 0 0 0 0 +0.42 3.905 -1.715 0 0 0 0 0 0 0 +0.408 3.91 -1.717 0 0 0 0 0 0 0 +0.395 3.906 -1.715 0 0 0 0 0 0 0 +0.389 3.91 -1.716 0 0 0 0 0 0 0 +0.376 3.908 -1.715 0 0 0 0 0 0 0 +0.364 3.907 -1.714 0 0 0 0 0 0 0 +0.352 3.908 -1.714 0 0 0 0 0 0 0 +0.339 3.904 -1.711 0 0 0 0 0 0 0 +0.327 3.91 -1.714 0 0 0 0 0 0 0 +0.315 3.915 -1.715 0 0 0 0 0 0 0 +0.309 3.912 -1.714 0 0 0 0 0 0 0 +0.296 3.907 -1.711 0 0 0 0 0 0 0 +0.284 3.916 -1.715 0 0 0 0 0 0 0 +0.271 3.909 -1.711 0 0 0 0 0 0 0 +0.259 3.903 -1.708 0 0 0 0 0 0 0 +0.247 3.911 -1.711 0 0 0 0 0 0 0 +0.236 3.926 -1.718 0 0 0 0 0 0 0 +0.223 3.925 -1.717 0 0 0 0 0 0 0 +0.216 3.916 -1.713 0 0 0 0 0 0 0 +0.204 3.924 -1.716 0 0 0 0 0 0 0 +0.192 3.914 -1.711 0 0 0 0 0 0 0 +0.179 3.918 -1.713 0 0 0 0 0 0 0 +0.167 3.919 -1.713 0 0 0 0 0 0 0 +0.155 3.914 -1.71 0 0 0 0 0 0 0 +0.143 3.921 -1.714 0 0 0 0 0 0 0 +0.136 3.923 -1.715 0 0 0 0 0 0 0 +0.124 3.911 -1.709 0 0 0 0 0 0 0 +0.112 3.919 -1.712 0 0 0 0 0 0 0 +0.1 3.928 -1.716 0 0 0 0 0 0 0 +0.087 3.923 -1.714 0 0 0 0 0 0 0 +0.075 3.927 -1.715 0 0 0 0 0 0 0 +0.062 3.918 -1.711 0 0 0 0 0 0 0 +0.056 3.931 -1.717 0 0 0 0 0 0 0 +0.044 3.922 -1.713 0 0 0 0 0 0 0 +0.032 3.928 -1.715 0 0 0 0 0 0 0 +0.019 3.928 -1.715 0 0 0 0 0 0 0 +0.007 3.922 -1.713 0 0 0 0 0 0 0 +-0.005 3.924 -1.714 0 0 0 0 0 0 0 +-0.018 3.917 -1.71 0 0 0 0 0 0 0 +-0.03 3.92 -1.712 0 0 0 0 0 0 0 +-0.036 3.929 -1.716 0 0 0 0 0 0 0 +-0.048 3.918 -1.711 0 0 0 0 0 0 0 +-0.061 3.92 -1.712 0 0 0 0 0 0 0 +-0.073 3.925 -1.715 0 0 0 0 0 0 0 +-0.085 3.918 -1.711 0 0 0 0 0 0 0 +-0.096 3.83 -1.671 0 0 0 0 0 0 0 +-0.11 3.922 -1.714 0 0 0 0 0 0 0 +-0.128 3.916 -1.711 0 0 0 0 0 0 0 +-0.141 3.922 -1.714 0 0 0 0 0 0 0 +-0.153 3.905 -1.706 0 0 0 0 0 0 0 +-0.165 3.908 -1.708 0 0 0 0 0 0 0 +-0.177 3.906 -1.707 0 0 0 0 0 0 0 +-0.19 3.912 -1.71 0 0 0 0 0 0 0 +-0.196 3.903 -1.706 0 0 0 0 0 0 0 +-0.209 3.917 -1.713 0 0 0 0 0 0 0 +-0.221 3.909 -1.709 0 0 0 0 0 0 0 +-0.233 3.915 -1.713 0 0 0 0 0 0 0 +-0.245 3.909 -1.71 0 0 0 0 0 0 0 +-0.258 3.912 -1.712 0 0 0 0 0 0 0 +-0.27 3.915 -1.714 0 0 0 0 0 0 0 +-0.277 3.927 -1.72 0 0 0 0 0 0 0 +-0.292 3.96 -1.736 0 0 0 0 0 0 0 +-0.304 3.959 -1.736 0 0 0 0 0 0 0 +-0.317 3.969 -1.741 0 0 0 0 0 0 0 +-0.329 3.961 -1.737 0 0 0 0 0 0 0 +-0.343 3.978 -1.746 0 0 0 0 0 0 0 +-0.357 3.995 -1.754 0 0 0 0 0 0 0 +-0.364 3.996 -1.755 0 0 0 0 0 0 0 +-0.376 3.99 -1.753 0 0 0 0 0 0 0 +-0.388 3.983 -1.75 0 0 0 0 0 0 0 +-0.399 3.973 -1.746 0 0 0 0 0 0 0 +-0.412 3.97 -1.745 0 0 0 0 0 0 0 +-0.425 3.976 -1.748 0 0 0 0 0 0 0 +-0.438 3.982 -1.752 0 0 0 0 0 0 0 +-0.445 3.986 -1.754 0 0 0 0 0 0 0 +-0.457 3.983 -1.753 0 0 0 0 0 0 0 +-0.469 3.978 -1.752 0 0 0 0 0 0 0 +-0.481 3.969 -1.748 0 0 0 0 0 0 0 +-0.496 3.986 -1.757 0 0 0 0 0 0 0 +-0.507 3.972 -1.751 0 0 0 0 0 0 0 +-0.52 3.979 -1.755 0 0 0 0 0 0 0 +-0.534 3.986 -1.759 0 0 0 0 0 0 0 +-0.538 3.969 -1.752 0 0 0 0 0 0 0 +-0.552 3.975 -1.755 0 0 0 0 0 0 0 +-0.565 3.984 -1.76 0 0 0 0 0 0 0 +-0.576 3.969 -1.754 0 0 0 0 0 0 0 +-0.59 3.977 -1.758 0 0 0 0 0 0 0 +-0.604 3.985 -1.764 0 0 0 0 0 0 0 +-0.615 3.976 -1.76 0 0 0 0 0 0 0 +-0.622 3.979 -1.762 0 0 0 0 0 0 0 +-0.637 3.993 -1.769 0 0 0 0 0 0 0 +-0.648 3.982 -1.765 0 0 0 0 0 0 0 +-0.662 3.985 -1.768 0 0 0 0 0 0 0 +-0.677 4.001 -1.776 0 0 0 0 0 0 0 +-0.685 3.972 -1.764 0 0 0 0 0 0 0 +-0.699 3.977 -1.767 0 0 0 0 0 0 0 +-0.707 3.987 -1.772 0 0 0 0 0 0 0 +-0.718 3.978 -1.769 0 0 0 0 0 0 0 +-0.732 3.984 -1.773 0 0 0 0 0 0 0 +-0.748 3.998 -1.78 0 0 0 0 0 0 0 +-0.759 3.988 -1.777 0 0 0 0 0 0 0 +-0.773 3.991 -1.78 0 0 0 0 0 0 0 +-0.787 3.998 -1.784 0 0 0 0 0 0 0 +-0.792 3.991 -1.781 0 0 0 0 0 0 0 +-0.809 4.01 -1.791 0 0 0 0 0 0 0 +-0.823 4.016 -1.796 0 0 0 0 0 0 0 +-0.829 3.978 -1.779 0 0 0 0 0 0 0 +-0.847 4.002 -1.791 0 0 0 0 0 0 0 +-0.858 3.994 -1.789 0 0 0 0 0 0 0 +-0.871 3.992 -1.789 0 0 0 0 0 0 0 +-0.908 4.072 -1.829 0 0 0 0 0 0 0 +-0.919 4.061 -1.825 0 0 0 0 0 0 0 +-0.926 4.035 -1.814 0 0 0 0 0 0 0 +-0.936 4.021 -1.809 0 0 0 0 0 0 0 +-0.943 3.99 -1.796 0 0 0 0 0 0 0 +-0.957 3.994 -1.799 0 0 0 0 0 0 0 +-0.971 3.998 -1.802 0 0 0 0 0 0 0 +-0.973 3.979 -1.794 0 0 0 0 0 0 0 +-0.985 3.972 -1.792 0 0 0 0 0 0 0 +-0.998 3.973 -1.794 0 0 0 0 0 0 0 +-1.007 3.957 -1.788 0 0 0 0 0 0 0 +-1.021 3.959 -1.791 0 0 0 0 0 0 0 +-1.036 3.967 -1.796 0 0 0 0 0 0 0 +-1.047 3.956 -1.792 0 0 0 0 0 0 0 +-1.051 3.946 -1.788 0 0 0 0 0 0 0 +-1.065 3.95 -1.791 0 0 0 0 0 0 0 +-1.074 3.934 -1.786 0 0 0 0 0 0 0 +-1.089 3.938 -1.789 0 0 0 0 0 0 0 +-1.103 3.943 -1.793 0 0 0 0 0 0 0 +-1.108 3.913 -1.78 0 0 0 0 0 0 0 +-1.123 3.917 -1.784 0 0 0 0 0 0 0 +-1.131 3.924 -1.788 0 0 0 0 0 0 0 +-1.14 3.908 -1.782 0 0 0 0 0 0 0 +-1.152 3.904 -1.782 0 0 0 0 0 0 0 +-1.168 3.913 -1.788 0 0 0 0 0 0 0 +-1.174 3.887 -1.777 0 0 0 0 0 0 0 +-1.191 3.899 -1.785 0 0 0 0 0 0 0 +-1.206 3.903 -1.789 0 0 0 0 0 0 0 +-1.213 3.884 -1.781 0 0 0 0 0 0 0 +-1.217 3.875 -1.778 0 0 0 0 0 0 0 +-1.236 3.892 -1.788 0 0 0 0 0 0 0 +-1.241 3.866 -1.777 0 0 0 0 0 0 0 +-1.255 3.869 -1.78 0 0 0 0 0 0 0 +-1.271 3.875 -1.786 0 0 0 0 0 0 0 +-1.278 3.856 -1.778 0 0 0 0 0 0 0 +-1.291 3.855 -1.78 0 0 0 0 0 0 0 +-1.302 3.868 -1.787 0 0 0 0 0 0 0 +-1.311 3.856 -1.783 0 0 0 0 0 0 0 +-1.325 3.857 -1.786 0 0 0 0 0 0 0 +-1.336 3.849 -1.784 0 0 0 0 0 0 0 +-1.353 3.859 -1.791 0 0 0 0 0 0 0 +-1.362 3.844 -1.786 0 0 0 0 0 0 0 +-1.381 3.862 -1.797 0 0 0 0 0 0 0 +-1.387 3.858 -1.796 0 0 0 0 0 0 0 +-1.392 3.835 -1.786 0 0 0 0 0 0 0 +-1.404 3.831 -1.786 0 0 0 0 0 0 0 +-1.413 3.818 -1.782 0 0 0 0 0 0 0 +-1.428 3.82 -1.786 0 0 0 0 0 0 0 +-1.442 3.821 -1.788 0 0 0 0 0 0 0 +-1.449 3.804 -1.782 0 0 0 0 0 0 0 +-1.455 3.802 -1.782 0 0 0 0 0 0 0 +-1.469 3.802 -1.785 0 0 0 0 0 0 0 +-1.478 3.789 -1.78 0 0 0 0 0 0 0 +-1.493 3.793 -1.785 0 0 0 0 0 0 0 +-1.507 3.793 -1.787 0 0 0 0 0 0 0 +-1.513 3.774 -1.78 0 0 0 0 0 0 0 +-1.531 3.786 -1.788 0 0 0 0 0 0 0 +-1.538 3.769 -1.782 0 0 0 0 0 0 0 +-1.541 3.758 -1.778 0 0 0 0 0 0 0 +-1.558 3.765 -1.784 0 0 0 0 0 0 0 +-1.567 3.755 -1.781 0 0 0 0 0 0 0 +-1.58 3.754 -1.783 0 0 0 0 0 0 0 +-1.594 3.752 -1.785 0 0 0 0 0 0 0 +-1.605 3.745 -1.784 0 0 0 0 0 0 0 +-1.614 3.735 -1.781 0 0 0 0 0 0 0 +-1.624 3.743 -1.786 0 0 0 0 0 0 0 +-1.635 3.734 -1.785 0 0 0 0 0 0 0 +-1.644 3.722 -1.781 0 0 0 0 0 0 0 +-1.657 3.72 -1.783 0 0 0 0 0 0 0 +-1.668 3.715 -1.783 0 0 0 0 0 0 0 +-1.68 3.71 -1.783 0 0 0 0 0 0 0 +-1.693 3.708 -1.785 0 0 0 0 0 0 0 +-1.701 3.709 -1.786 0 0 0 0 0 0 0 +-1.711 3.7 -1.785 0 0 0 0 0 0 0 +-1.723 3.696 -1.786 0 0 0 0 0 0 0 +-1.735 3.692 -1.786 0 0 0 0 0 0 0 +-1.745 3.682 -1.784 0 0 0 0 0 0 0 +-1.759 3.681 -1.786 0 0 0 0 0 0 0 +-1.769 3.674 -1.786 0 0 0 0 0 0 0 +-1.774 3.668 -1.784 0 0 0 0 0 0 0 +-1.788 3.669 -1.787 0 0 0 0 0 0 0 +-1.801 3.665 -1.788 0 0 0 0 0 0 0 +-1.809 3.653 -1.785 0 0 0 0 0 0 0 +-1.821 3.649 -1.786 0 0 0 0 0 0 0 +-1.833 3.645 -1.786 0 0 0 0 0 0 0 +-1.846 3.641 -1.787 0 0 0 0 0 0 0 +-1.853 3.627 -1.783 0 0 0 0 0 0 0 +-1.857 3.621 -1.781 0 0 0 0 0 0 0 +-1.871 3.62 -1.784 0 0 0 0 0 0 0 +-1.882 3.614 -1.784 0 0 0 0 0 0 0 +-1.899 3.617 -1.789 0 0 0 0 0 0 0 +-1.907 3.607 -1.786 0 0 0 0 0 0 0 +-1.918 3.599 -1.786 0 0 0 0 0 0 0 +-1.927 3.588 -1.783 0 0 0 0 0 0 0 +-1.932 3.585 -1.783 0 0 0 0 0 0 0 +-1.948 3.587 -1.787 0 0 0 0 0 0 0 +-1.954 3.571 -1.782 0 0 0 0 0 0 0 +-1.968 3.57 -1.785 0 0 0 0 0 0 0 +-1.982 3.568 -1.787 0 0 0 0 0 0 0 +-1.996 3.569 -1.791 0 0 0 0 0 0 0 +-2.001 3.551 -1.785 0 0 0 0 0 0 0 +-2.015 3.55 -1.787 0 0 0 0 0 0 0 +-2.022 3.548 -1.788 0 0 0 0 0 0 0 +-2.028 3.534 -1.784 0 0 0 0 0 0 0 +-2.043 3.534 -1.787 0 0 0 0 0 0 0 +-2.053 3.526 -1.786 0 0 0 0 0 0 0 +-2.065 3.521 -1.787 0 0 0 0 0 0 0 +-2.079 3.519 -1.79 0 0 0 0 0 0 0 +-2.089 3.511 -1.789 0 0 0 0 0 0 0 +-2.093 3.504 -1.787 0 0 0 0 0 0 0 +-2.106 3.501 -1.789 0 0 0 0 0 0 0 +-2.112 3.487 -1.785 0 0 0 0 0 0 0 +-2.126 3.485 -1.787 0 0 0 0 0 0 0 +-2.137 3.478 -1.787 0 0 0 0 0 0 0 +-2.15 3.476 -1.79 0 0 0 0 0 0 0 +-2.161 3.469 -1.79 0 0 0 0 0 0 0 +-2.166 3.464 -1.789 0 0 0 0 0 0 0 +-2.177 3.457 -1.789 0 0 0 0 0 0 0 +-2.183 3.443 -1.785 0 0 0 0 0 0 0 +-2.195 3.439 -1.786 0 0 0 0 0 0 0 +-2.209 3.437 -1.789 0 0 0 0 0 0 0 +-2.215 3.422 -1.785 0 0 0 0 0 0 0 +-2.236 3.432 -1.794 0 0 0 0 0 0 0 +-2.239 3.424 -1.791 0 0 0 0 0 0 0 +-2.243 3.406 -1.786 0 0 0 0 0 0 0 +-2.255 3.402 -1.787 0 0 0 0 0 0 0 +-2.271 3.402 -1.791 0 0 0 0 0 0 0 +-2.28 3.392 -1.79 0 0 0 0 0 0 0 +-2.288 3.382 -1.788 0 0 0 0 0 0 0 +-2.299 3.375 -1.788 0 0 0 0 0 0 0 +-2.307 3.363 -1.786 0 0 0 0 0 0 0 +-2.316 3.366 -1.789 0 0 0 0 0 0 0 +-2.326 3.358 -1.789 0 0 0 0 0 0 0 +-3.253 2.493 -1.795 0 0 0 0 0 0 0 +-3.255 2.487 -1.794 0 0 0 0 0 0 0 +-3.266 2.479 -1.796 0 0 0 0 0 0 0 +-3.275 2.469 -1.797 0 0 0 0 0 0 0 +-3.278 2.456 -1.794 0 0 0 0 0 0 0 +-3.292 2.45 -1.797 0 0 0 0 0 0 0 +-3.301 2.441 -1.798 0 0 0 0 0 0 0 +-3.306 2.428 -1.797 0 0 0 0 0 0 0 +-3.312 2.425 -1.798 0 0 0 0 0 0 0 +-3.313 2.409 -1.794 0 0 0 0 0 0 0 +-3.326 2.403 -1.797 0 0 0 0 0 0 0 +-3.332 2.392 -1.797 0 0 0 0 0 0 0 +-3.562 -2.242 -1.846 0 0 0 0 0 0 0 +-3.549 -2.249 -1.843 0 0 0 0 0 0 0 +-3.528 -2.244 -1.834 0 0 0 0 0 0 0 +-3.526 -2.258 -1.836 0 0 0 0 0 0 0 +-3.54 -2.283 -1.848 0 0 0 0 0 0 0 +-3.528 -2.291 -1.846 0 0 0 0 0 0 0 +-3.507 -2.293 -1.838 0 0 0 0 0 0 0 +-3.512 -2.312 -1.845 0 0 0 0 0 0 0 +-3.511 -2.327 -1.848 0 0 0 0 0 0 0 +-3.503 -2.329 -1.846 0 0 0 0 0 0 0 +-3.499 -2.342 -1.847 0 0 0 0 0 0 0 +-3.505 -2.362 -1.855 0 0 0 0 0 0 0 +-3.484 -2.364 -1.847 0 0 0 0 0 0 0 +-3.479 -2.377 -1.849 0 0 0 0 0 0 0 +-3.476 -2.391 -1.851 0 0 0 0 0 0 0 +-3.469 -2.402 -1.851 0 0 0 0 0 0 0 +-3.464 -2.407 -1.851 0 0 0 0 0 0 0 +-3.462 -2.422 -1.854 0 0 0 0 0 0 0 +-3.456 -2.433 -1.855 0 0 0 0 0 0 0 +-3.447 -2.443 -1.854 0 0 0 0 0 0 0 +-3.099 -2.826 -1.84 0 0 0 0 0 0 0 +-3.1 -2.844 -1.846 0 0 0 0 0 0 0 +-3.09 -2.852 -1.845 0 0 0 0 0 0 0 +-3.051 -2.835 -1.826 0 0 0 0 0 0 0 +-3.06 -2.861 -1.837 0 0 0 0 0 0 0 +-3.05 -2.861 -1.834 0 0 0 0 0 0 0 +-3.036 -2.865 -1.83 0 0 0 0 0 0 0 +-2.434 -3.357 -1.818 0 0 0 0 0 0 0 +-2.424 -3.365 -1.818 0 0 0 0 0 0 0 +-2.411 -3.37 -1.816 0 0 0 0 0 0 0 +-2.406 -3.385 -1.82 0 0 0 0 0 0 0 +-2.39 -3.385 -1.816 0 0 0 0 0 0 0 +-2.383 -3.398 -1.819 0 0 0 0 0 0 0 +-2.381 -3.406 -1.822 0 0 0 0 0 0 0 +-2.366 -3.408 -1.818 0 0 0 0 0 0 0 +-2.35 -3.408 -1.814 0 0 0 0 0 0 0 +-2.344 -3.421 -1.818 0 0 0 0 0 0 0 +-2.335 -3.432 -1.819 0 0 0 0 0 0 0 +-2.321 -3.434 -1.817 0 0 0 0 0 0 0 +-2.31 -3.442 -1.817 0 0 0 0 0 0 0 +-2.31 -3.453 -1.821 0 0 0 0 0 0 0 +-2.295 -3.454 -1.818 0 0 0 0 0 0 0 +-2.288 -3.467 -1.821 0 0 0 0 0 0 0 +-2.276 -3.473 -1.82 0 0 0 0 0 0 0 +-2.262 -3.475 -1.818 0 0 0 0 0 0 0 +-2.254 -3.487 -1.82 0 0 0 0 0 0 0 +-2.246 -3.499 -1.823 0 0 0 0 0 0 0 +-2.236 -3.495 -1.818 0 0 0 0 0 0 0 +-2.227 -3.505 -1.82 0 0 0 0 0 0 0 +-2.222 -3.521 -1.825 0 0 0 0 0 0 0 +-2.2 -3.511 -1.816 0 0 0 0 0 0 0 +-2.196 -3.529 -1.822 0 0 0 0 0 0 0 +-2.188 -3.54 -1.824 0 0 0 0 0 0 0 +-2.176 -3.547 -1.824 0 0 0 0 0 0 0 +-2.174 -3.555 -1.827 0 0 0 0 0 0 0 +-2.163 -3.562 -1.827 0 0 0 0 0 0 0 +-2.15 -3.567 -1.826 0 0 0 0 0 0 0 +-2.139 -3.574 -1.826 0 0 0 0 0 0 0 +-2.131 -3.585 -1.829 0 0 0 0 0 0 0 +-2.119 -3.59 -1.828 0 0 0 0 0 0 0 +-2.112 -3.605 -1.832 0 0 0 0 0 0 0 +-2.102 -3.6 -1.828 0 0 0 0 0 0 0 +-2.097 -3.618 -1.834 0 0 0 0 0 0 0 +-2.095 -3.642 -1.843 0 0 0 0 0 0 0 +-2.101 -3.678 -1.859 0 0 0 0 0 0 0 +-2.025 -3.573 -1.799 0 0 0 0 0 0 0 +-2.07 -3.677 -1.851 0 0 0 0 0 0 0 +-2.032 -3.636 -1.826 0 0 0 0 0 0 0 +-2.027 -3.641 -1.827 0 0 0 0 0 0 0 +-2.013 -3.642 -1.824 0 0 0 0 0 0 0 +-2.002 -3.65 -1.825 0 0 0 0 0 0 0 +-1.99 -3.655 -1.824 0 0 0 0 0 0 0 +-1.978 -3.661 -1.824 0 0 0 0 0 0 0 +-1.97 -3.674 -1.828 0 0 0 0 0 0 0 +-1.954 -3.672 -1.824 0 0 0 0 0 0 0 +-1.944 -3.667 -1.819 0 0 0 0 0 0 0 +-1.929 -3.667 -1.816 0 0 0 0 0 0 0 +-1.913 -3.663 -1.811 0 0 0 0 0 0 0 +-1.904 -3.674 -1.813 0 0 0 0 0 0 0 +-1.892 -3.68 -1.813 0 0 0 0 0 0 0 +-1.87 -3.665 -1.802 0 0 0 0 0 0 0 +-1.866 -3.685 -1.81 0 0 0 0 0 0 0 +-1.857 -3.682 -1.807 0 0 0 0 0 0 0 +-1.838 -3.675 -1.8 0 0 0 0 0 0 0 +-1.833 -3.693 -1.807 0 0 0 0 0 0 0 +-1.818 -3.691 -1.802 0 0 0 0 0 0 0 +-1.801 -3.687 -1.797 0 0 0 0 0 0 0 +-1.79 -3.693 -1.797 0 0 0 0 0 0 0 +-1.778 -3.698 -1.797 0 0 0 0 0 0 0 +-1.772 -3.699 -1.797 0 0 0 0 0 0 0 +-1.763 -3.711 -1.8 0 0 0 0 0 0 0 +-1.748 -3.71 -1.797 0 0 0 0 0 0 0 +-1.736 -3.714 -1.796 0 0 0 0 0 0 0 +-1.723 -3.718 -1.795 0 0 0 0 0 0 0 +-1.709 -3.719 -1.792 0 0 0 0 0 0 0 +-1.698 -3.724 -1.792 0 0 0 0 0 0 0 +-1.695 -3.733 -1.796 0 0 0 0 0 0 0 +-1.682 -3.737 -1.795 0 0 0 0 0 0 0 +-1.668 -3.737 -1.792 0 0 0 0 0 0 0 +-1.654 -3.737 -1.79 0 0 0 0 0 0 0 +-1.643 -3.743 -1.79 0 0 0 0 0 0 0 +-1.629 -3.744 -1.788 0 0 0 0 0 0 0 +-1.619 -3.753 -1.79 0 0 0 0 0 0 0 +-1.61 -3.749 -1.786 0 0 0 0 0 0 0 +-1.599 -3.755 -1.787 0 0 0 0 0 0 0 +-1.585 -3.755 -1.785 0 0 0 0 0 0 0 +-1.574 -3.762 -1.786 0 0 0 0 0 0 0 +-1.561 -3.764 -1.784 0 0 0 0 0 0 0 +-1.551 -3.772 -1.786 0 0 0 0 0 0 0 +-1.537 -3.773 -1.784 0 0 0 0 0 0 0 +-1.53 -3.772 -1.782 0 0 0 0 0 0 0 +-1.515 -3.77 -1.779 0 0 0 0 0 0 0 +-1.503 -3.774 -1.778 0 0 0 0 0 0 0 +-1.495 -3.788 -1.783 0 0 0 0 0 0 0 +-1.478 -3.781 -1.777 0 0 0 0 0 0 0 +-1.467 -3.786 -1.777 0 0 0 0 0 0 0 +-1.457 -3.796 -1.78 0 0 0 0 0 0 0 +-1.443 -3.795 -1.777 0 0 0 0 0 0 0 +-1.433 -3.789 -1.773 0 0 0 0 0 0 0 +-1.421 -3.792 -1.772 0 0 0 0 0 0 0 +-1.411 -3.801 -1.775 0 0 0 0 0 0 0 +-1.399 -3.806 -1.775 0 0 0 0 0 0 0 +-1.386 -3.808 -1.774 0 0 0 0 0 0 0 +-1.376 -3.816 -1.775 0 0 0 0 0 0 0 +-1.362 -3.817 -1.774 0 0 0 0 0 0 0 +-1.355 -3.814 -1.771 0 0 0 0 0 0 0 +-1.343 -3.818 -1.771 0 0 0 0 0 0 0 +-1.331 -3.822 -1.771 0 0 0 0 0 0 0 +-1.317 -3.821 -1.769 0 0 0 0 0 0 0 +-1.307 -3.831 -1.771 0 0 0 0 0 0 0 +-1.295 -3.836 -1.772 0 0 0 0 0 0 0 +-1.286 -3.828 -1.767 0 0 0 0 0 0 0 +-1.277 -3.842 -1.772 0 0 0 0 0 0 0 +-1.263 -3.84 -1.769 0 0 0 0 0 0 0 +-1.248 -3.837 -1.765 0 0 0 0 0 0 0 +-1.237 -3.844 -1.767 0 0 0 0 0 0 0 +-1.224 -3.844 -1.765 0 0 0 0 0 0 0 +-1.21 -3.841 -1.762 0 0 0 0 0 0 0 +-1.202 -3.857 -1.768 0 0 0 0 0 0 0 +-1.19 -3.84 -1.758 0 0 0 0 0 0 0 +-1.181 -3.854 -1.764 0 0 0 0 0 0 0 +-1.168 -3.856 -1.763 0 0 0 0 0 0 0 +-1.156 -3.86 -1.763 0 0 0 0 0 0 0 +-1.143 -3.86 -1.761 0 0 0 0 0 0 0 +-1.133 -3.87 -1.764 0 0 0 0 0 0 0 +-1.119 -3.869 -1.762 0 0 0 0 0 0 0 +-1.112 -3.867 -1.76 0 0 0 0 0 0 0 +-1.1 -3.871 -1.76 0 0 0 0 0 0 0 +-1.087 -3.872 -1.759 0 0 0 0 0 0 0 +-1.077 -3.883 -1.763 0 0 0 0 0 0 0 +-1.065 -3.886 -1.763 0 0 0 0 0 0 0 +-1.053 -3.893 -1.764 0 0 0 0 0 0 0 +-1.038 -3.886 -1.759 0 0 0 0 0 0 0 +-1.033 -3.889 -1.76 0 0 0 0 0 0 0 +-1.02 -3.889 -1.758 0 0 0 0 0 0 0 +-1.007 -3.892 -1.758 0 0 0 0 0 0 0 +-0.995 -3.895 -1.758 0 0 0 0 0 0 0 +-0.985 -3.905 -1.762 0 0 0 0 0 0 0 +-0.973 -3.91 -1.763 0 0 0 0 0 0 0 +-0.957 -3.899 -1.756 0 0 0 0 0 0 0 +-0.953 -3.909 -1.76 0 0 0 0 0 0 0 +-0.94 -3.909 -1.758 0 0 0 0 0 0 0 +-0.929 -3.917 -1.761 0 0 0 0 0 0 0 +-0.917 -3.923 -1.763 0 0 0 0 0 0 0 +-0.903 -3.919 -1.759 0 0 0 0 0 0 0 +-0.89 -3.917 -1.757 0 0 0 0 0 0 0 +-0.879 -3.926 -1.76 0 0 0 0 0 0 0 +-0.871 -3.919 -1.756 0 0 0 0 0 0 0 +-0.861 -3.931 -1.76 0 0 0 0 0 0 0 +-0.849 -3.937 -1.762 0 0 0 0 0 0 0 +-0.834 -3.929 -1.757 0 0 0 0 0 0 0 +-0.823 -3.937 -1.759 0 0 0 0 0 0 0 +-0.813 -3.948 -1.764 0 0 0 0 0 0 0 +-0.796 -3.928 -1.753 0 0 0 0 0 0 0 +-0.793 -3.945 -1.76 0 0 0 0 0 0 0 +-0.783 -3.962 -1.767 0 0 0 0 0 0 0 +-0.766 -3.939 -1.755 0 0 0 0 0 0 0 +-0.754 -3.947 -1.758 0 0 0 0 0 0 0 +-0.745 -3.963 -1.764 0 0 0 0 0 0 0 +-0.729 -3.948 -1.756 0 0 0 0 0 0 0 +-0.718 -3.959 -1.76 0 0 0 0 0 0 0 +-0.713 -3.964 -1.762 0 0 0 0 0 0 0 +-0.699 -3.957 -1.758 0 0 0 0 0 0 0 +-0.687 -3.966 -1.761 0 0 0 0 0 0 0 +-0.674 -3.965 -1.759 0 0 0 0 0 0 0 +-0.662 -3.965 -1.758 0 0 0 0 0 0 0 +-0.65 -3.975 -1.762 0 0 0 0 0 0 0 +-0.637 -3.973 -1.76 0 0 0 0 0 0 0 +-0.632 -3.981 -1.764 0 0 0 0 0 0 0 +-0.62 -3.987 -1.765 0 0 0 0 0 0 0 +-0.607 -3.983 -1.763 0 0 0 0 0 0 0 +-0.593 -3.978 -1.759 0 0 0 0 0 0 0 +-0.581 -3.985 -1.762 0 0 0 0 0 0 0 +-0.57 -3.991 -1.764 0 0 0 0 0 0 0 +-0.557 -3.991 -1.763 0 0 0 0 0 0 0 +-0.551 -3.995 -1.764 0 0 0 0 0 0 0 +-0.539 -4.002 -1.767 0 0 0 0 0 0 0 +-0.527 -4.007 -1.769 0 0 0 0 0 0 0 +-0.513 -3.995 -1.762 0 0 0 0 0 0 0 +-0.5 -4 -1.764 0 0 0 0 0 0 0 +-0.488 -4 -1.763 0 0 0 0 0 0 0 +-0.476 -4.008 -1.766 0 0 0 0 0 0 0 +-0.469 -4.004 -1.764 0 0 0 0 0 0 0 +-0.457 -4.009 -1.765 0 0 0 0 0 0 0 +-0.443 -4.001 -1.761 0 0 0 0 0 0 0 +-0.431 -4.006 -1.763 0 0 0 0 0 0 0 +-0.419 -4.015 -1.766 0 0 0 0 0 0 0 +-0.406 -4.014 -1.765 0 0 0 0 0 0 0 +-0.394 -4.014 -1.764 0 0 0 0 0 0 0 +-0.388 -4.016 -1.765 0 0 0 0 0 0 0 +-0.375 -4.015 -1.764 0 0 0 0 0 0 0 +-0.362 -4.013 -1.763 0 0 0 0 0 0 0 +-0.35 -4.018 -1.764 0 0 0 0 0 0 0 +-0.337 -4.024 -1.767 0 0 0 0 0 0 0 +-0.324 -4.022 -1.765 0 0 0 0 0 0 0 +-0.312 -4.023 -1.765 0 0 0 0 0 0 0 +-0.306 -4.027 -1.767 0 0 0 0 0 0 0 +-0.293 -4.026 -1.766 0 0 0 0 0 0 0 +-0.28 -4.023 -1.764 0 0 0 0 0 0 0 +-0.268 -4.026 -1.765 0 0 0 0 0 0 0 +-0.255 -4.032 -1.768 0 0 0 0 0 0 0 +-0.242 -4.029 -1.766 0 0 0 0 0 0 0 +-0.23 -4.033 -1.768 0 0 0 0 0 0 0 +-0.224 -4.036 -1.769 0 0 0 0 0 0 0 +-0.211 -4.027 -1.764 0 0 0 0 0 0 0 +-0.198 -4.035 -1.768 0 0 0 0 0 0 0 +-0.185 -4.03 -1.765 0 0 0 0 0 0 0 +-0.173 -4.038 -1.769 0 0 0 0 0 0 0 +-0.16 -4.039 -1.769 0 0 0 0 0 0 0 +-0.147 -4.03 -1.764 0 0 0 0 0 0 0 +-0.141 -4.036 -1.767 0 0 0 0 0 0 0 +-0.128 -4.036 -1.767 0 0 0 0 0 0 0 +-0.116 -4.037 -1.767 0 0 0 0 0 0 0 +-0.103 -4.044 -1.77 0 0 0 0 0 0 0 +-0.09 -4.041 -1.769 0 0 0 0 0 0 0 +-0.078 -4.039 -1.768 0 0 0 0 0 0 0 +-0.065 -4.052 -1.774 0 0 0 0 0 0 0 +-0.052 -4.043 -1.769 0 0 0 0 0 0 0 +-0.046 -4.043 -1.769 0 0 0 0 0 0 0 +-0.033 -4.045 -1.77 0 0 0 0 0 0 0 +-0.021 -4.042 -1.769 0 0 0 0 0 0 0 +-0.008 -4.062 -1.778 0 0 0 0 0 0 0 +0.227 -4.034 -1.768 0 0 0 0 0 0 0 +0.239 -4.028 -1.765 0 0 0 0 0 0 0 +0.253 -4.052 -1.777 0 0 0 0 0 0 0 +0.266 -4.06 -1.781 0 0 0 0 0 0 0 +0.279 -4.058 -1.78 0 0 0 0 0 0 0 +0.284 -4.037 -1.771 0 0 0 0 0 0 0 +0.297 -4.042 -1.774 0 0 0 0 0 0 0 +0.31 -4.039 -1.773 0 0 0 0 0 0 0 +0.324 -4.063 -1.785 0 0 0 0 0 0 0 +0.338 -4.068 -1.787 0 0 0 0 0 0 0 +0.351 -4.078 -1.792 0 0 0 0 0 0 0 +0.363 -4.069 -1.789 0 0 0 0 0 0 0 +0.367 -4.041 -1.776 0 0 0 0 0 0 0 +0.383 -4.073 -1.791 0 0 0 0 0 0 0 +0.393 -4.043 -1.778 0 0 0 0 0 0 0 +0.404 -4.023 -1.769 0 0 0 0 0 0 0 +0.418 -4.038 -1.777 0 0 0 0 0 0 0 +0.43 -4.03 -1.774 0 0 0 0 0 0 0 +0.442 -4.014 -1.767 0 0 0 0 0 0 0 +0.449 -4.026 -1.773 0 0 0 0 0 0 0 +0.462 -4.025 -1.773 0 0 0 0 0 0 0 +0.475 -4.03 -1.776 0 0 0 0 0 0 0 +0.488 -4.032 -1.778 0 0 0 0 0 0 0 +0.5 -4.025 -1.775 0 0 0 0 0 0 0 +0.514 -4.033 -1.78 0 0 0 0 0 0 0 +0.527 -4.033 -1.78 0 0 0 0 0 0 0 +0.534 -4.036 -1.782 0 0 0 0 0 0 0 +0.545 -4.02 -1.775 0 0 0 0 0 0 0 +1.018 -3.921 -1.773 0 0 0 0 0 0 0 +1.034 -3.932 -1.78 0 0 0 0 0 0 0 +1.046 -3.928 -1.78 0 0 0 0 0 0 0 +1.056 -3.915 -1.775 0 0 0 0 0 0 0 +1.072 -3.924 -1.78 0 0 0 0 0 0 0 +1.084 -3.92 -1.78 0 0 0 0 0 0 0 +1.094 -3.908 -1.776 0 0 0 0 0 0 0 +1.103 -3.917 -1.781 0 0 0 0 0 0 0 +1.116 -3.915 -1.782 0 0 0 0 0 0 0 +1.125 -3.901 -1.777 0 0 0 0 0 0 0 +1.139 -3.903 -1.78 0 0 0 0 0 0 0 +1.152 -3.903 -1.781 0 0 0 0 0 0 0 +1.166 -3.904 -1.784 0 0 0 0 0 0 0 +1.174 -3.888 -1.778 0 0 0 0 0 0 0 +1.185 -3.9 -1.785 0 0 0 0 0 0 0 +1.195 -3.89 -1.781 0 0 0 0 0 0 0 +1.207 -3.888 -1.782 0 0 0 0 0 0 0 +1.222 -3.891 -1.786 0 0 0 0 0 0 0 +1.23 -3.875 -1.78 0 0 0 0 0 0 0 +1.244 -3.876 -1.782 0 0 0 0 0 0 0 +1.258 -3.877 -1.785 0 0 0 0 0 0 0 +1.261 -3.867 -1.78 0 0 0 0 0 0 0 +1.273 -3.861 -1.78 0 0 0 0 0 0 0 +1.287 -3.864 -1.783 0 0 0 0 0 0 0 +1.3 -3.862 -1.784 0 0 0 0 0 0 0 +1.313 -3.861 -1.786 0 0 0 0 0 0 0 +1.328 -3.865 -1.79 0 0 0 0 0 0 0 +1.338 -3.854 -1.786 0 0 0 0 0 0 0 +1.34 -3.84 -1.78 0 0 0 0 0 0 0 +1.353 -3.839 -1.782 0 0 0 0 0 0 0 +1.369 -3.845 -1.787 0 0 0 0 0 0 0 +1.382 -3.844 -1.789 0 0 0 0 0 0 0 +1.392 -3.833 -1.786 0 0 0 0 0 0 0 +1.404 -3.829 -1.786 0 0 0 0 0 0 0 +1.414 -3.819 -1.783 0 0 0 0 0 0 0 +1.425 -3.832 -1.791 0 0 0 0 0 0 0 +1.436 -3.825 -1.789 0 0 0 0 0 0 0 +1.455 -3.837 -1.797 0 0 0 0 0 0 0 +1.462 -3.821 -1.791 0 0 0 0 0 0 0 +1.472 -3.809 -1.788 0 0 0 0 0 0 0 +1.485 -3.808 -1.79 0 0 0 0 0 0 0 +1.497 -3.805 -1.791 0 0 0 0 0 0 0 +1.5 -3.794 -1.786 0 0 0 0 0 0 0 +1.516 -3.8 -1.791 0 0 0 0 0 0 0 +1.526 -3.79 -1.789 0 0 0 0 0 0 0 +1.539 -3.787 -1.79 0 0 0 0 0 0 0 +1.548 -3.775 -1.786 0 0 0 0 0 0 0 +1.563 -3.778 -1.791 0 0 0 0 0 0 0 +1.573 -3.769 -1.788 0 0 0 0 0 0 0 +1.579 -3.766 -1.788 0 0 0 0 0 0 0 +1.595 -3.771 -1.793 0 0 0 0 0 0 0 +1.597 -3.744 -1.782 0 0 0 0 0 0 0 +1.615 -3.753 -1.789 0 0 0 0 0 0 0 +1.627 -3.749 -1.79 0 0 0 0 0 0 0 +1.638 -3.741 -1.788 0 0 0 0 0 0 0 +1.651 -3.739 -1.79 0 0 0 0 0 0 0 +1.663 -3.751 -1.797 0 0 0 0 0 0 0 +1.665 -3.723 -1.786 0 0 0 0 0 0 0 +1.678 -3.721 -1.787 0 0 0 0 0 0 0 +1.694 -3.726 -1.792 0 0 0 0 0 0 0 +1.706 -3.72 -1.792 0 0 0 0 0 0 0 +1.715 -3.71 -1.79 0 0 0 0 0 0 0 +1.724 -3.698 -1.786 0 0 0 0 0 0 0 +1.73 -3.695 -1.786 0 0 0 0 0 0 0 +1.741 -3.69 -1.786 0 0 0 0 0 0 0 +1.76 -3.699 -1.794 0 0 0 0 0 0 0 +1.764 -3.679 -1.786 0 0 0 0 0 0 0 +1.778 -3.678 -1.789 0 0 0 0 0 0 0 +1.797 -3.687 -1.797 0 0 0 0 0 0 0 +1.801 -3.667 -1.789 0 0 0 0 0 0 0 +1.809 -3.669 -1.791 0 0 0 0 0 0 0 +1.817 -3.655 -1.787 0 0 0 0 0 0 0 +1.83 -3.653 -1.789 0 0 0 0 0 0 0 +1.846 -3.656 -1.794 0 0 0 0 0 0 0 +1.855 -3.644 -1.791 0 0 0 0 0 0 0 +1.871 -3.648 -1.796 0 0 0 0 0 0 0 +1.877 -3.631 -1.79 0 0 0 0 0 0 0 +1.888 -3.639 -1.796 0 0 0 0 0 0 0 +1.894 -3.622 -1.79 0 0 0 0 0 0 0 +1.906 -3.618 -1.791 0 0 0 0 0 0 0 +1.926 -3.628 -1.799 0 0 0 0 0 0 0 +1.929 -3.606 -1.791 0 0 0 0 0 0 0 +1.942 -3.603 -1.792 0 0 0 0 0 0 0 +1.959 -3.608 -1.798 0 0 0 0 0 0 0 +1.952 -3.581 -1.786 0 0 0 0 0 0 0 +1.972 -3.592 -1.795 0 0 0 0 0 0 0 +1.984 -3.586 -1.795 0 0 0 0 0 0 0 +1.984 -3.559 -1.784 0 0 0 0 0 0 0 +2.007 -3.575 -1.796 0 0 0 0 0 0 0 +2.017 -3.565 -1.794 0 0 0 0 0 0 0 +2.017 -3.54 -1.784 0 0 0 0 0 0 0 +2.038 -3.564 -1.798 0 0 0 0 0 0 0 +2.045 -3.55 -1.794 0 0 0 0 0 0 0 +2.046 -3.526 -1.785 0 0 0 0 0 0 0 +2.07 -3.541 -1.797 0 0 0 0 0 0 0 +2.074 -3.524 -1.791 0 0 0 0 0 0 0 +2.085 -3.517 -1.791 0 0 0 0 0 0 0 +2.106 -3.528 -1.8 0 0 0 0 0 0 0 +2.102 -3.507 -1.791 0 0 0 0 0 0 0 +2.116 -3.505 -1.793 0 0 0 0 0 0 0 +2.126 -3.497 -1.792 0 0 0 0 0 0 0 +2.132 -3.483 -1.788 0 0 0 0 0 0 0 +2.151 -3.49 -1.796 0 0 0 0 0 0 0 +2.163 -3.485 -1.797 0 0 0 0 0 0 0 +2.171 -3.473 -1.794 0 0 0 0 0 0 0 +2.184 -3.47 -1.796 0 0 0 0 0 0 0 +2.194 -3.474 -1.8 0 0 0 0 0 0 0 +2.199 -3.456 -1.794 0 0 0 0 0 0 0 +2.214 -3.457 -1.798 0 0 0 0 0 0 0 +2.224 -3.448 -1.797 0 0 0 0 0 0 0 +2.235 -3.441 -1.797 0 0 0 0 0 0 0 +2.246 -3.434 -1.797 0 0 0 0 0 0 0 +2.252 -3.42 -1.793 0 0 0 0 0 0 0 +2.264 -3.427 -1.799 0 0 0 0 0 0 0 +2.268 -3.409 -1.793 0 0 0 0 0 0 0 +2.283 -3.409 -1.797 0 0 0 0 0 0 0 +2.297 -3.407 -1.8 0 0 0 0 0 0 0 +2.307 -3.398 -1.799 0 0 0 0 0 0 0 +2.306 -3.374 -1.79 0 0 0 0 0 0 0 +2.325 -3.39 -1.801 0 0 0 0 0 0 0 +2.335 -3.383 -1.801 0 0 0 0 0 0 0 +2.34 -3.367 -1.796 0 0 0 0 0 0 0 +2.355 -3.365 -1.799 0 0 0 0 0 0 0 +2.364 -3.356 -1.798 0 0 0 0 0 0 0 +2.375 -3.349 -1.798 0 0 0 0 0 0 0 +2.386 -3.343 -1.799 0 0 0 0 0 0 0 +2.389 -3.336 -1.797 0 0 0 0 0 0 0 +2.407 -3.339 -1.803 0 0 0 0 0 0 0 +2.418 -3.331 -1.803 0 0 0 0 0 0 0 +2.42 -3.312 -1.797 0 0 0 0 0 0 0 +2.435 -3.312 -1.801 0 0 0 0 0 0 0 +2.448 -3.307 -1.802 0 0 0 0 0 0 0 +2.453 -3.292 -1.798 0 0 0 0 0 0 0 +2.457 -3.287 -1.797 0 0 0 0 0 0 0 +2.472 -3.285 -1.801 0 0 0 0 0 0 0 +2.484 -3.28 -1.802 0 0 0 0 0 0 0 +2.494 -3.272 -1.802 0 0 0 0 0 0 0 +2.507 -3.267 -1.804 0 0 0 0 0 0 0 +2.517 -3.259 -1.804 0 0 0 0 0 0 0 +2.531 -3.256 -1.807 0 0 0 0 0 0 0 +2.532 -3.236 -1.8 0 0 0 0 0 0 0 +2.535 -3.229 -1.798 0 0 0 0 0 0 0 +2.544 -3.22 -1.797 0 0 0 0 0 0 0 +2.563 -3.223 -1.804 0 0 0 0 0 0 0 +2.575 -3.218 -1.806 0 0 0 0 0 0 0 +2.582 -3.206 -1.803 0 0 0 0 0 0 0 +2.592 -3.197 -1.803 0 0 0 0 0 0 0 +2.607 -3.195 -1.807 0 0 0 0 0 0 0 +2.604 -3.181 -1.801 0 0 0 0 0 0 0 +2.621 -3.181 -1.806 0 0 0 0 0 0 0 +2.632 -3.174 -1.807 0 0 0 0 0 0 0 +2.637 -3.161 -1.803 0 0 0 0 0 0 0 +2.655 -3.162 -1.809 0 0 0 0 0 0 0 +2.658 -3.145 -1.804 0 0 0 0 0 0 0 +2.67 -3.14 -1.806 0 0 0 0 0 0 0 +2.673 -3.133 -1.804 0 0 0 0 0 0 0 +2.687 -3.13 -1.808 0 0 0 0 0 0 0 +2.696 -3.12 -1.807 0 0 0 0 0 0 0 +2.702 -3.107 -1.804 0 0 0 0 0 0 0 +2.714 -3.102 -1.806 0 0 0 0 0 0 0 +2.729 -3.099 -1.809 0 0 0 0 0 0 0 +2.734 -3.094 -1.809 0 0 0 0 0 0 0 +2.74 -3.082 -1.807 0 0 0 0 0 0 0 +2.748 -3.072 -1.806 0 0 0 0 0 0 0 +2.763 -3.068 -1.809 0 0 0 0 0 0 0 +2.767 -3.054 -1.806 0 0 0 0 0 0 0 +2.772 -3.04 -1.802 0 0 0 0 0 0 0 +2.785 -3.035 -1.805 0 0 0 0 0 0 0 +2.797 -3.029 -1.807 0 0 0 0 0 0 0 +2.812 -3.036 -1.813 0 0 0 0 0 0 0 +2.808 -3.012 -1.804 0 0 0 0 0 0 0 +2.816 -3.002 -1.803 0 0 0 0 0 0 0 +2.835 -3.004 -1.81 0 0 0 0 0 0 0 +2.844 -2.994 -1.809 0 0 0 0 0 0 0 +2.852 -2.983 -1.808 0 0 0 0 0 0 0 +2.864 -2.977 -1.81 0 0 0 0 0 0 0 +2.861 -2.965 -1.805 0 0 0 0 0 0 0 +2.88 -2.966 -1.812 0 0 0 0 0 0 0 +2.882 -2.949 -1.807 0 0 0 0 0 0 0 +2.9 -2.949 -1.813 0 0 0 0 0 0 0 +2.907 -2.937 -1.811 0 0 0 0 0 0 0 +2.917 -2.93 -1.812 0 0 0 0 0 0 0 +2.925 -2.919 -1.811 0 0 0 0 0 0 0 +2.925 -2.909 -1.808 0 0 0 0 0 0 0 +2.938 -2.904 -1.81 0 0 0 0 0 0 0 +2.951 -2.899 -1.813 0 0 0 0 0 0 0 +2.957 -2.887 -1.811 0 0 0 0 0 0 0 +2.97 -2.881 -1.813 0 0 0 0 0 0 0 +2.978 -2.871 -1.813 0 0 0 0 0 0 0 +2.984 -2.859 -1.811 0 0 0 0 0 0 0 +2.996 -2.862 -1.816 0 0 0 0 0 0 0 +2.992 -2.84 -1.808 0 0 0 0 0 0 0 +3.003 -2.831 -1.808 0 0 0 0 0 0 0 +3.014 -2.825 -1.81 0 0 0 0 0 0 0 +3.016 -2.809 -1.806 0 0 0 0 0 0 0 +3.026 -2.801 -1.807 0 0 0 0 0 0 0 +3.031 -2.796 -1.807 0 0 0 0 0 0 0 +3.044 -2.79 -1.809 0 0 0 0 0 0 0 +3.039 -2.768 -1.801 0 0 0 0 0 0 0 +3.064 -2.773 -1.811 0 0 0 0 0 0 0 +3.068 -2.76 -1.808 0 0 0 0 0 0 0 +3.066 -2.741 -1.802 0 0 0 0 0 0 0 +3.084 -2.739 -1.808 0 0 0 0 0 0 0 +3.093 -2.73 -1.808 0 0 0 0 0 0 0 +3.088 -2.716 -1.802 0 0 0 0 0 0 0 +3.102 -2.711 -1.805 0 0 0 0 0 0 0 +3.12 -2.71 -1.811 0 0 0 0 0 0 0 +3.112 -2.686 -1.801 0 0 0 0 0 0 0 +3.126 -2.681 -1.804 0 0 0 0 0 0 0 +3.137 -2.673 -1.806 0 0 0 0 0 0 0 +3.145 -2.664 -1.806 0 0 0 0 0 0 0 +3.16 -2.668 -1.813 0 0 0 0 0 0 0 +3.18 -2.668 -1.819 0 0 0 0 0 0 0 +1.468 -1.053 -0.726 0 0 0 0 0 0 0 +1.429 -1.018 -0.702 0 0 0 0 0 0 0 +1.425 -1.008 -0.698 0 0 0 0 0 0 0 +1.42 -0.961 -0.683 0 0 0 0 0 0 0 +3.594 -1.934 -1.787 0 0 0 0 0 0 0 +3.594 -1.92 -1.784 0 0 0 0 0 0 0 +3.603 -1.91 -1.786 0 0 0 0 0 0 0 +3.617 -1.903 -1.79 0 0 0 0 0 0 0 +3.618 -1.889 -1.787 0 0 0 0 0 0 0 +3.616 -1.873 -1.783 0 0 0 0 0 0 0 +3.629 -1.873 -1.788 0 0 0 0 0 0 0 +3.628 -1.858 -1.785 0 0 0 0 0 0 0 +3.632 -1.846 -1.784 0 0 0 0 0 0 0 +3.638 -1.834 -1.784 0 0 0 0 0 0 0 +3.652 -1.827 -1.788 0 0 0 0 0 0 0 +3.65 -1.811 -1.784 0 0 0 0 0 0 0 +3.662 -1.803 -1.787 0 0 0 0 0 0 0 +3.661 -1.796 -1.786 0 0 0 0 0 0 0 +3.667 -1.784 -1.786 0 0 0 0 0 0 0 +3.673 -1.773 -1.786 0 0 0 0 0 0 0 +3.686 -1.765 -1.79 0 0 0 0 0 0 0 +3.69 -1.753 -1.789 0 0 0 0 0 0 0 +3.688 -1.737 -1.785 0 0 0 0 0 0 0 +3.693 -1.726 -1.785 0 0 0 0 0 0 0 +3.702 -1.723 -1.788 0 0 0 0 0 0 0 +3.701 -1.708 -1.785 0 0 0 0 0 0 0 +3.71 -1.698 -1.786 0 0 0 0 0 0 0 +3.72 -1.689 -1.789 0 0 0 0 0 0 0 +3.72 -1.675 -1.786 0 0 0 0 0 0 0 +3.724 -1.662 -1.786 0 0 0 0 0 0 0 +3.726 -1.649 -1.784 0 0 0 0 0 0 0 +3.728 -1.643 -1.784 0 0 0 0 0 0 0 +3.735 -1.632 -1.785 0 0 0 0 0 0 0 +3.747 -1.624 -1.788 0 0 0 0 0 0 0 +3.75 -1.611 -1.787 0 0 0 0 0 0 0 +3.747 -1.596 -1.783 0 0 0 0 0 0 0 +3.754 -1.585 -1.784 0 0 0 0 0 0 0 +3.759 -1.573 -1.784 0 0 0 0 0 0 0 +3.766 -1.569 -1.786 0 0 0 0 0 0 0 +3.769 -1.556 -1.786 0 0 0 0 0 0 0 +3.759 -1.538 -1.778 0 0 0 0 0 0 0 +3.769 -1.529 -1.78 0 0 0 0 0 0 0 +3.784 -1.521 -1.786 0 0 0 0 0 0 0 +3.77 -1.501 -1.776 0 0 0 0 0 0 0 +3.793 -1.497 -1.786 0 0 0 0 0 0 0 +3.792 -1.49 -1.784 0 0 0 0 0 0 0 +3.787 -1.474 -1.779 0 0 0 0 0 0 0 +3.8 -1.465 -1.783 0 0 0 0 0 0 0 +3.808 -1.455 -1.785 0 0 0 0 0 0 0 +3.799 -1.437 -1.778 0 0 0 0 0 0 0 +3.815 -1.43 -1.784 0 0 0 0 0 0 0 +3.828 -1.421 -1.788 0 0 0 0 0 0 0 diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/CMakeLists.txt b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/CMakeLists.txt new file mode 100644 index 0000000..edf8d58 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.10) +project(linefit_ground_segmentation) + +# find_package(catkin_simple 0.1.0 REQUIRED ) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) +add_definitions(-std=c++17 -O3) + +find_package(ament_cmake_auto REQUIRED) + +ament_auto_find_build_dependencies() +ament_auto_add_library(${PROJECT_NAME} SHARED DIRECTORY src) + +ament_auto_package() + +############# +# QTCREATOR # +############# +FILE(GLOB_RECURSE LibFiles "include/*") +add_custom_target(headers SOURCES ${LibFiles}) \ No newline at end of file diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/bin.h b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/bin.h new file mode 100644 index 0000000..3a16091 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/bin.h @@ -0,0 +1,43 @@ +#ifndef GROUND_SEGMENTATION_BIN_H_ +#define GROUND_SEGMENTATION_BIN_H_ + +#include + +#include +#include + +class Bin { +public: + struct MinZPoint { + MinZPoint() : z(0), d(0) {} + MinZPoint(const double& d, const double& z) : z(z), d(d) {} + bool operator==(const MinZPoint& comp) {return z == comp.z && d == comp.d;} + + double z; + double d; + }; + +private: + + std::atomic has_point_; + std::atomic min_z; + std::atomic min_z_range; + +public: + + Bin(); + + /// \brief Fake copy constructor to allow vector > initialization. + Bin(const Bin& segment); + + void addPoint(const pcl::PointXYZ& point); + + void addPoint(const double& d, const double& z); + + MinZPoint getMinZPoint(); + + inline bool hasPoint() {return has_point_;} + +}; + +#endif /* GROUND_SEGMENTATION_BIN_H_ */ diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/ground_segmentation.h b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/ground_segmentation.h new file mode 100644 index 0000000..6dca5fa --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/ground_segmentation.h @@ -0,0 +1,120 @@ +#ifndef GROUND_SEGMENTATION_H_ +#define GROUND_SEGMENTATION_H_ + +#include + +#include "ground_segmentation/segment.h" +#include "ground_segmentation/typedefs.h" +#include "ground_segmentation/viewer.h" + +struct GroundSegmentationParams { + GroundSegmentationParams() : + visualize(false), + r_min_square(0.3 * 0.3), + r_max_square(20*20), + n_bins(30), + n_segments(180), + max_dist_to_line(0.15), + min_slope(0), + max_slope(1), + n_threads(4), + max_error_square(0.01), + long_threshold(2.0), + max_long_height(0.1), + max_start_height(0.2), + sensor_height(0.2), + line_search_angle(0.2) {} + + // Visualize estimated ground. + bool visualize; + // Minimum range of segmentation. + double r_min_square; + // Maximum range of segmentation. + double r_max_square; + // Number of radial bins. + int n_bins; + // Number of angular segments. + int n_segments; + // Maximum distance to a ground line to be classified as ground. + double max_dist_to_line; + // Min slope to be considered ground line. + double min_slope; + // Max slope to be considered ground line. + double max_slope; + // Max error for line fit. + double max_error_square; + // Distance at which points are considered far from each other. + double long_threshold; + // Maximum slope for + double max_long_height; + // Maximum heigh of starting line to be labelled ground. + double max_start_height; + // Height of sensor above ground. + double sensor_height; + // How far to search for a line in angular direction [rad]. + double line_search_angle; + // Number of threads. + int n_threads; +}; + +typedef pcl::PointCloud PointCloud; + +typedef std::pair PointLine; + +class GroundSegmentation { + + const GroundSegmentationParams params_; + + // Access with segments_[segment][bin]. + std::vector segments_; + + // Bin index of every point. + std::vector > bin_index_; + + // 2D coordinates (d, z) of every point in its respective segment. + std::vector segment_coordinates_; + + // Visualizer. + std::unique_ptr viewer_; + + void assignCluster(std::vector* segmentation); + + void assignClusterThread(const unsigned int& start_index, + const unsigned int& end_index, + std::vector* segmentation); + + void insertPoints(const PointCloud& cloud); + + void insertionThread(const PointCloud& cloud, + const size_t start_index, + const size_t end_index); + + void getMinZPoints(PointCloud* out_cloud); + + void getLines(std::list* lines); + + void lineFitThread(const unsigned int start_index, const unsigned int end_index, + std::list *lines, std::mutex* lines_mutex); + + pcl::PointXYZ minZPointTo3d(const Bin::MinZPoint& min_z_point, const double& angle); + + void getMinZPointCloud(PointCloud* cloud); + + void resetSegments(); + + void visualizePointCloud(const PointCloud::ConstPtr& cloud, + const std::string& id = "point_cloud"); + + void visualizeLines(const std::list& lines); + + void visualize(const std::list& lines, const PointCloud::ConstPtr& cloud, const PointCloud::ConstPtr& ground_cloud, const PointCloud::ConstPtr& obstacle_cloud); + +public: + + GroundSegmentation(const GroundSegmentationParams& params = GroundSegmentationParams()); + + void segment(const PointCloud& cloud, std::vector* segmentation); + +}; + +#endif // GROUND_SEGMENTATION_H_ diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/segment.h b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/segment.h new file mode 100644 index 0000000..bf14c46 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/segment.h @@ -0,0 +1,69 @@ +#ifndef GROUND_SEGMENTATION_SEGMENT_H_ +#define GROUND_SEGMENTATION_SEGMENT_H_ + +#include +#include + +#include "ground_segmentation/bin.h" + +class Segment { +public: + typedef std::pair Line; + + typedef std::pair LocalLine; + +private: + // Parameters. Description in GroundSegmentation. + const double min_slope_; + const double max_slope_; + const double max_error_; + const double long_threshold_; + const double max_long_height_; + const double max_start_height_; + const double sensor_height_; + + std::vector bins_; + + std::list lines_; + + LocalLine fitLocalLine(const std::list& points); + + double getMeanError(const std::list& points, const LocalLine& line); + + double getMaxError(const std::list& points, const LocalLine& line); + + Line localLineToLine(const LocalLine& local_line, const std::list& line_points); + + +public: + + Segment(const unsigned int& n_bins, + const double& min_slope, + const double& max_slope, + const double& max_error, + const double& long_threshold, + const double& max_long_height, + const double& max_start_height, + const double& sensor_height); + + double verticalDistanceToLine(const double& d, const double &z); + + void fitSegmentLines(); + + inline Bin& operator[](const size_t& index) { + return bins_[index]; + } + + inline std::vector::iterator begin() { + return bins_.begin(); + } + + inline std::vector::iterator end() { + return bins_.end(); + } + + bool getLines(std::list* lines); + +}; + +#endif /* GROUND_SEGMENTATION_SEGMENT_H_ */ diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/typedefs.h b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/typedefs.h new file mode 100644 index 0000000..e21f19f --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/typedefs.h @@ -0,0 +1,9 @@ +#pragma once + +#include +#include + + +typedef pcl::PointCloud PointCloud; + +typedef std::pair PointLine; diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/viewer.h b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/viewer.h new file mode 100644 index 0000000..93777fa --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/include/ground_segmentation/viewer.h @@ -0,0 +1,39 @@ +#pragma once + +#include +#include +#include + +#include + +#include "ground_segmentation/typedefs.h" + + +class Viewer { +public: + Viewer(); + ~Viewer(); + + void visualize(const std::list& lines, + const PointCloud::ConstPtr& min_cloud, + const PointCloud::ConstPtr& ground_cloud, + const PointCloud::ConstPtr& obstacle_cloud); + +protected: + + // Visualizer. + pcl::visualization::PCLVisualizer viewer_; + std::thread view_thread_; + std::mutex viewer_mutex_; + std::atomic redraw_{true}; + + void visualizeLines(const std::list& lines); + + void visualizePointCloud(const PointCloud::ConstPtr& cloud, + const std::string& id); + + void addEmptyPointCloud(const std::string& id); + + void drawThread(); + +}; diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/package.xml b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/package.xml new file mode 100644 index 0000000..77b9b7d --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/package.xml @@ -0,0 +1,21 @@ + + + linefit_ground_segmentation + 0.0.1 + linefit_ground_segmentation + + Lorenz Wellhausen + + BSD + + ament_cmake + + eigen + pcl_ros + pcl_conversions + + + ament_cmake + + + diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/bin.cc b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/bin.cc new file mode 100644 index 0000000..d4ac210 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/bin.cc @@ -0,0 +1,32 @@ +#include "ground_segmentation/bin.h" + +#include + +Bin::Bin() : min_z(std::numeric_limits::max()), has_point_(false) {} + +Bin::Bin(const Bin& bin) : min_z(std::numeric_limits::max()), + has_point_(false) {} + +void Bin::addPoint(const pcl::PointXYZ& point) { + const double d = sqrt(point.x * point.x + point.y * point.y); + addPoint(d, point.z); +} + +void Bin::addPoint(const double& d, const double& z) { + has_point_ = true; + if (z < min_z) { + min_z = z; + min_z_range = d; + } +} + +Bin::MinZPoint Bin::getMinZPoint() { + MinZPoint point; + + if (has_point_) { + point.z = min_z; + point.d = min_z_range; + } + + return point; +} diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/ground_segmentation.cc b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/ground_segmentation.cc new file mode 100644 index 0000000..fe8ac33 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/ground_segmentation.cc @@ -0,0 +1,264 @@ +#include "ground_segmentation/ground_segmentation.h" + +#include +#include +#include +#include +#include + +using namespace std::chrono_literals; + + +GroundSegmentation::GroundSegmentation(const GroundSegmentationParams& params) : + params_(params), + segments_(params.n_segments, Segment(params.n_bins, + params.min_slope, + params.max_slope, + params.max_error_square, + params.long_threshold, + params.max_long_height, + params.max_start_height, + params.sensor_height)) { + if (params.visualize) viewer_.reset(new Viewer()); +} + +void GroundSegmentation::segment(const PointCloud& cloud, std::vector* segmentation) { + // std::cout << "Segmenting cloud with " << cloud.size() << " points...\n"; + std::chrono::high_resolution_clock::time_point start = std::chrono::high_resolution_clock::now(); + segmentation->clear(); + segmentation->resize(cloud.size(), 0); + bin_index_.resize(cloud.size()); + segment_coordinates_.resize(cloud.size()); + resetSegments(); + + insertPoints(cloud); + std::list lines; + if (params_.visualize) { + getLines(&lines); + } + else { + getLines(NULL); + } + assignCluster(segmentation); + + size_t n_ground = 0; + for (const auto seg: *segmentation) { + n_ground += seg; + } + + if (params_.visualize) { + // Visualize. + PointCloud::Ptr obstacle_cloud = std::make_shared(); + obstacle_cloud->reserve(segmentation->size() - n_ground); + // Get cloud of ground points. + PointCloud::Ptr ground_cloud = std::make_shared(); + ground_cloud->reserve(n_ground); + for (size_t i = 0; i < cloud.size(); ++i) { + if (segmentation->at(i) == 1) ground_cloud->push_back(cloud[i]); + else obstacle_cloud->push_back(cloud[i]); + } + PointCloud::Ptr min_cloud = std::make_shared(); + getMinZPointCloud(min_cloud.get()); + viewer_->visualize(lines, min_cloud, ground_cloud, obstacle_cloud); + } + std::chrono::high_resolution_clock::time_point end = std::chrono::high_resolution_clock::now(); + std::chrono::duration fp_ms = end - start; + // std::cout << "Done! Took " << fp_ms.count() << "ms\n"; +} + +void GroundSegmentation::getLines(std::list *lines) { + std::mutex line_mutex; + std::vector thread_vec(params_.n_threads); + unsigned int i; + for (i = 0; i < params_.n_threads; ++i) { + const unsigned int start_index = params_.n_segments / params_.n_threads * i; + const unsigned int end_index = params_.n_segments / params_.n_threads * (i+1); + thread_vec[i] = std::thread(&GroundSegmentation::lineFitThread, this, + start_index, end_index, lines, &line_mutex); + } + for (auto it = thread_vec.begin(); it != thread_vec.end(); ++it) { + it->join(); + } +} + +void GroundSegmentation::lineFitThread(const unsigned int start_index, + const unsigned int end_index, + std::list *lines, std::mutex* lines_mutex) { + const bool visualize = lines; + const double seg_step = 2*M_PI / params_.n_segments; + double angle = -M_PI + seg_step/2 + seg_step * start_index; + for (unsigned int i = start_index; i < end_index; ++i) { + segments_[i].fitSegmentLines(); + // Convert lines to 3d if we want to. + if (visualize) { + std::list segment_lines; + segments_[i].getLines(&segment_lines); + for (auto line_iter = segment_lines.begin(); line_iter != segment_lines.end(); ++line_iter) { + const pcl::PointXYZ start = minZPointTo3d(line_iter->first, angle); + const pcl::PointXYZ end = minZPointTo3d(line_iter->second, angle); + lines_mutex->lock(); + lines->emplace_back(start, end); + lines_mutex->unlock(); + } + + angle += seg_step; + } + } +} + +void GroundSegmentation::getMinZPointCloud(PointCloud* cloud) { + cloud->reserve(params_.n_segments * params_.n_bins); + const double seg_step = 2*M_PI / params_.n_segments; + double angle = -M_PI + seg_step/2; + for (auto seg_iter = segments_.begin(); seg_iter != segments_.end(); ++seg_iter) { + for (auto bin_iter = seg_iter->begin(); bin_iter != seg_iter->end(); ++bin_iter) { + const pcl::PointXYZ min = minZPointTo3d(bin_iter->getMinZPoint(), angle); + cloud->push_back(min); + } + + angle += seg_step; + } +} + +void GroundSegmentation::resetSegments() { + segments_ = std::vector(params_.n_segments, Segment(params_.n_bins, + params_.min_slope, + params_.max_slope, + params_.max_error_square, + params_.long_threshold, + params_.max_long_height, + params_.max_start_height, + params_.sensor_height)); +} + +pcl::PointXYZ GroundSegmentation::minZPointTo3d(const Bin::MinZPoint &min_z_point, + const double &angle) { + pcl::PointXYZ point; + point.x = cos(angle) * min_z_point.d; + point.y = sin(angle) * min_z_point.d; + point.z = min_z_point.z; + return point; +} + +void GroundSegmentation::assignCluster(std::vector* segmentation) { + std::vector thread_vec(params_.n_threads); + const size_t cloud_size = segmentation->size(); + for (unsigned int i = 0; i < params_.n_threads; ++i) { + const unsigned int start_index = cloud_size / params_.n_threads * i; + const unsigned int end_index = cloud_size / params_.n_threads * (i+1); + thread_vec[i] = std::thread(&GroundSegmentation::assignClusterThread, this, + start_index, end_index, segmentation); + } + for (auto it = thread_vec.begin(); it != thread_vec.end(); ++it) { + it->join(); + } +} + +void GroundSegmentation::assignClusterThread(const unsigned int &start_index, + const unsigned int &end_index, + std::vector *segmentation) { + const double segment_step = 2*M_PI/params_.n_segments; + for (unsigned int i = start_index; i < end_index; ++i) { + Bin::MinZPoint point_2d = segment_coordinates_[i]; + const int segment_index = bin_index_[i].first; + if (segment_index >= 0) { + double dist = segments_[segment_index].verticalDistanceToLine(point_2d.d, point_2d.z); + // Search neighboring segments. + int steps = 1; + while (dist < 0 && steps * segment_step < params_.line_search_angle) { + // Fix indices that are out of bounds. + int index_1 = segment_index + steps; + while (index_1 >= params_.n_segments) index_1 -= params_.n_segments; + int index_2 = segment_index - steps; + while (index_2 < 0) index_2 += params_.n_segments; + // Get distance to neighboring lines. + const double dist_1 = segments_[index_1].verticalDistanceToLine(point_2d.d, point_2d.z); + const double dist_2 = segments_[index_2].verticalDistanceToLine(point_2d.d, point_2d.z); + if (dist_1 >= 0) { + dist = dist_1; + } + if (dist_2 >= 0) { + // Select smaller distance if both segments return a valid distance. + if (dist < 0 || dist_2 < dist) { + dist = dist_2; + } + } + ++steps; + } + if (dist < params_.max_dist_to_line && dist != -1) { + segmentation->at(i) = 1; + } + } + } +} + +void GroundSegmentation::getMinZPoints(PointCloud* out_cloud) { + const double seg_step = 2*M_PI / params_.n_segments; + const double bin_step = (sqrt(params_.r_max_square) - sqrt(params_.r_min_square)) + / params_.n_bins; + const double r_min = sqrt(params_.r_min_square); + double angle = -M_PI + seg_step/2; + for (auto seg_iter = segments_.begin(); seg_iter != segments_.end(); ++seg_iter) { + double dist = r_min + bin_step/2; + for (auto bin_iter = seg_iter->begin(); bin_iter != seg_iter->end(); ++bin_iter) { + pcl::PointXYZ point; + if (bin_iter->hasPoint()) { + Bin::MinZPoint min_z_point(bin_iter->getMinZPoint()); + point.x = cos(angle) * min_z_point.d; + point.y = sin(angle) * min_z_point.d; + point.z = min_z_point.z; + + out_cloud->push_back(point); + } + dist += bin_step; + } + angle += seg_step; + } +} + +void GroundSegmentation::insertPoints(const PointCloud& cloud) { + std::vector threads(params_.n_threads); + const size_t points_per_thread = cloud.size() / params_.n_threads; + // Launch threads. + for (unsigned int i = 0; i < params_.n_threads - 1; ++i) { + const size_t start_index = i * points_per_thread; + const size_t end_index = (i+1) * points_per_thread; + threads[i] = std::thread(&GroundSegmentation::insertionThread, this, + cloud, start_index, end_index); + } + // Launch last thread which might have more points than others. + const size_t start_index = (params_.n_threads - 1) * points_per_thread; + const size_t end_index = cloud.size(); + threads[params_.n_threads - 1] = + std::thread(&GroundSegmentation::insertionThread, this, cloud, start_index, end_index); + // Wait for threads to finish. + for (auto it = threads.begin(); it != threads.end(); ++it) { + it->join(); + } +} + +void GroundSegmentation::insertionThread(const PointCloud& cloud, + const size_t start_index, + const size_t end_index) { + const double segment_step = 2*M_PI / params_.n_segments; + const double bin_step = (sqrt(params_.r_max_square) - sqrt(params_.r_min_square)) + / params_.n_bins; + const double r_min = sqrt(params_.r_min_square); + for (unsigned int i = start_index; i < end_index; ++i) { + pcl::PointXYZ point(cloud[i]); + const double range_square = point.x * point.x + point.y * point.y; + const double range = sqrt(range_square); + if (range_square < params_.r_max_square && range_square > params_.r_min_square) { + const double angle = std::atan2(point.y, point.x); + const unsigned int bin_index = (range - r_min) / bin_step; + const unsigned int segment_index = (angle + M_PI) / segment_step; + const unsigned int segment_index_clamped = segment_index == params_.n_segments ? 0 : segment_index; + segments_[segment_index_clamped][bin_index].addPoint(range, point.z); + bin_index_[i] = std::make_pair(segment_index_clamped, bin_index); + } + else { + bin_index_[i] = std::make_pair(-1, -1); + } + segment_coordinates_[i] = Bin::MinZPoint(range, point.z); + } +} diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/segment.cc b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/segment.cc new file mode 100644 index 0000000..48acf8c --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/segment.cc @@ -0,0 +1,162 @@ +#include "ground_segmentation/segment.h" + +Segment::Segment(const unsigned int& n_bins, + const double& min_slope, + const double& max_slope, + const double& max_error, + const double& long_threshold, + const double& max_long_height, + const double& max_start_height, + const double& sensor_height) : + bins_(n_bins), + min_slope_(min_slope), + max_slope_(max_slope), + max_error_(max_error), + long_threshold_(long_threshold), + max_long_height_(max_long_height), + max_start_height_(max_start_height), + sensor_height_(sensor_height){} + +void Segment::fitSegmentLines() { + // Find first point. + auto line_start = bins_.begin(); + while (!line_start->hasPoint()) { + ++line_start; + // Stop if we reached last point. + if (line_start == bins_.end()) return; + } + // Fill lines. + bool is_long_line = false; + double cur_ground_height = -sensor_height_; + std::list current_line_points(1, line_start->getMinZPoint()); + LocalLine cur_line = std::make_pair(0,0); + for (auto line_iter = line_start+1; line_iter != bins_.end(); ++line_iter) { + if (line_iter->hasPoint()) { + Bin::MinZPoint cur_point = line_iter->getMinZPoint(); + if (cur_point.d - current_line_points.back().d > long_threshold_) is_long_line = true; + if (current_line_points.size() >= 2) { + // Get expected z value to possibly reject far away points. + double expected_z = std::numeric_limits::max(); + if (is_long_line && current_line_points.size() > 2) { + expected_z = cur_line.first * cur_point.d + cur_line.second; + } + current_line_points.push_back(cur_point); + cur_line = fitLocalLine(current_line_points); + const double error = getMaxError(current_line_points, cur_line); + // Check if not a good line. + if (error > max_error_ || + std::fabs(cur_line.first) > max_slope_ || + (current_line_points.size() > 2 && std::fabs(cur_line.first) < min_slope_) || + is_long_line && std::fabs(expected_z - cur_point.z) > max_long_height_) { + // Add line until previous point as ground. + current_line_points.pop_back(); + // Don't let lines with 2 base points through. + if (current_line_points.size() >= 3) { + const LocalLine new_line = fitLocalLine(current_line_points); + lines_.push_back(localLineToLine(new_line, current_line_points)); + cur_ground_height = new_line.first * current_line_points.back().d + new_line.second; + } + // Start new line. + is_long_line = false; + current_line_points.erase(current_line_points.begin(), --current_line_points.end()); + --line_iter; + } + // Good line, continue. + else { } + } + else { + // Not enough points. + if (cur_point.d - current_line_points.back().d < long_threshold_ && + std::fabs(current_line_points.back().z - cur_ground_height) < max_start_height_) { + // Add point if valid. + current_line_points.push_back(cur_point); + } + else { + // Start new line. + current_line_points.clear(); + current_line_points.push_back(cur_point); + } + } + } + } + // Add last line. + if (current_line_points.size() > 2) { + const LocalLine new_line = fitLocalLine(current_line_points); + lines_.push_back(localLineToLine(new_line, current_line_points)); + } +} + +Segment::Line Segment::localLineToLine(const LocalLine& local_line, + const std::list& line_points) { + Line line; + const double first_d = line_points.front().d; + const double second_d = line_points.back().d; + const double first_z = local_line.first * first_d + local_line.second; + const double second_z = local_line.first * second_d + local_line.second; + line.first.z = first_z; + line.first.d = first_d; + line.second.z = second_z; + line.second.d = second_d; + return line; +} + +double Segment::verticalDistanceToLine(const double &d, const double &z) { + static const double kMargin = 0.1; + double distance = -1; + for (auto it = lines_.begin(); it != lines_.end(); ++it) { + if (it->first.d - kMargin < d && it->second.d + kMargin > d) { + const double delta_z = it->second.z - it->first.z; + const double delta_d = it->second.d - it->first.d; + const double expected_z = (d - it->first.d)/delta_d *delta_z + it->first.z; + distance = std::fabs(z - expected_z); + } + } + return distance; +} + +double Segment::getMeanError(const std::list &points, const LocalLine &line) { + double error_sum = 0; + for (auto it = points.begin(); it != points.end(); ++it) { + const double residual = (line.first * it->d + line.second) - it->z; + error_sum += residual * residual; + } + return error_sum/points.size(); +} + +double Segment::getMaxError(const std::list &points, const LocalLine &line) { + double max_error = 0; + for (auto it = points.begin(); it != points.end(); ++it) { + const double residual = (line.first * it->d + line.second) - it->z; + const double error = residual * residual; + if (error > max_error) max_error = error; + } + return max_error; +} + +Segment::LocalLine Segment::fitLocalLine(const std::list &points) { + const unsigned int n_points = points.size(); + Eigen::MatrixXd X(n_points, 2); + Eigen::VectorXd Y(n_points); + unsigned int counter = 0; + for (auto iter = points.begin(); iter != points.end(); ++iter) { + X(counter, 0) = iter->d; + X(counter, 1) = 1; + Y(counter) = iter->z; + ++counter; + } + Eigen::VectorXd result = X.colPivHouseholderQr().solve(Y); + LocalLine line_result; + line_result.first = result(0); + line_result.second = result(1); + return line_result; +} + +bool Segment::getLines(std::list *lines) { + if (lines_.empty()) { + return false; + } + else { + *lines = lines_; + return true; + } +} diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/viewer.cc b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/viewer.cc new file mode 100644 index 0000000..f6afe0d --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation/src/viewer.cc @@ -0,0 +1,101 @@ +#include "ground_segmentation/viewer.h" + +#include + +using namespace std::chrono_literals; + + + +Viewer::Viewer() { + std::lock_guard lock(viewer_mutex_); + + viewer_.setBackgroundColor (0, 0, 0); + viewer_.addCoordinateSystem (1.0); + viewer_.initCameraParameters (); + viewer_.setCameraPosition(-2.0, 0, 2.0, 1.0, 0, 0); + + addEmptyPointCloud("min_cloud"); + addEmptyPointCloud("ground_cloud"); + addEmptyPointCloud("obstacle_cloud"); + + viewer_.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, + 0.0f, 1.0f, 0.0f, + "min_cloud"); + viewer_.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_POINT_SIZE, + 2.0f, + "min_cloud"); + viewer_.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, + 1.0f, 0.0f, 0.0f, + "ground_cloud"); + + view_thread_ = std::thread(&Viewer::drawThread, this); +} + + + +Viewer::~Viewer() { + redraw_ = false; + + { + std::lock_guard lock(viewer_mutex_); + viewer_.close(); + } + + view_thread_.join(); +} + + + +void Viewer::visualize(const std::list& lines, + const PointCloud::ConstPtr& min_cloud, + const PointCloud::ConstPtr& ground_cloud, + const PointCloud::ConstPtr& obstacle_cloud) { + redraw_ = false; + std::lock_guard lock(viewer_mutex_); + // TODO: Do not delete and add every time. + viewer_.removeAllShapes(); + visualizePointCloud(min_cloud, "min_cloud"); + visualizePointCloud(ground_cloud, "ground_cloud"); + visualizePointCloud(obstacle_cloud, "obstacle_cloud"); + visualizeLines(lines); +} + + + +void Viewer::visualizeLines(const std::list& lines) { + size_t counter = 0; + for (auto it = lines.begin(); it != lines.end(); ++it) { + viewer_.addLine(it->first, it->second, std::to_string(counter++)); + } +} + + + +void Viewer::visualizePointCloud(const PointCloud::ConstPtr& cloud, + const std::string& id) { + viewer_.updatePointCloud(cloud, id); +} + + + +void Viewer::addEmptyPointCloud(const std::string& id) { + viewer_.addPointCloud(PointCloud().makeShared(), id); +} + + + +void Viewer::drawThread() { + bool stopped = false; + while (!stopped) { + { + std::lock_guard lock(viewer_mutex_); + redraw_ = true; + while (redraw_) { + viewer_.spinOnce(1); + } + } + std::this_thread::sleep_for(1ms); + std::lock_guard lock(viewer_mutex_); + stopped = viewer_.wasStopped(); + } +} diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/CMakeLists.txt b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/CMakeLists.txt new file mode 100644 index 0000000..d867e0c --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/CMakeLists.txt @@ -0,0 +1,22 @@ +cmake_minimum_required(VERSION 3.10) +project(linefit_ground_segmentation_ros) + +# find_package(catkin_simple 0.1.0 REQUIRED ) + +# catkin_simple(ALL_DEPS_REQUIRED) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) +add_definitions(-std=c++17 -O3) + +find_package(ament_cmake_auto) + +ament_auto_find_build_dependencies() +ament_auto_add_executable(ground_segmentation_node src/ground_segmentation_node.cc) +ament_auto_add_executable(ground_segmentation_test_node src/ground_segmentation_test_node.cc) + +ament_auto_package(INSTALL_TO_SHARE launch) + +############# +# QTCREATOR # +############# +FILE(GLOB_RECURSE LibFiles "include/*") +add_custom_target(headers SOURCES ${LibFiles}) diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/segmentation.launch.py b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/segmentation.launch.py new file mode 100644 index 0000000..83043b1 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/segmentation.launch.py @@ -0,0 +1,30 @@ + +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch_ros.actions import Node + + + +def generate_launch_description(): + # Getting directories and launch-files + bringup_dir = get_package_share_directory('linefit_ground_segmentation_ros') + params_file = os.path.join(bringup_dir, 'launch', 'segmentation_params.yaml') + + # Nodes launching commands + node_start_cmd = Node( + package='linefit_ground_segmentation_ros', + executable='ground_segmentation_node', + output='screen', + parameters=[params_file]) + + + ld = LaunchDescription() + + # Declare the launch options + ld.add_action(node_start_cmd) + + + return ld \ No newline at end of file diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/segmentation_params.yaml b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/segmentation_params.yaml new file mode 100644 index 0000000..ce45574 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/segmentation_params.yaml @@ -0,0 +1,28 @@ +ground_segmentation: + ros__parameters: + n_threads: 4 # number of threads to use. + + r_min: 0.2 # minimum point distance. + r_max: 50 # maximum point distance. + n_bins: 120 # number of radial bins. + n_segments: 360 # number of radial segments. + + max_dist_to_line: 0.1 # maximum vertical distance of point to line to be considered ground. + + sensor_height: 0.225 # sensor height above ground. + min_slope: 0.0 # minimum slope of a ground line. + max_slope: 0.3 # maximum slope of a ground line. + max_fit_error: 0.05 # maximum error of a point during line fit. + long_threshold: 1.0 # distance between points after which they are considered far from each other. + max_long_height: 0.1 # maximum height change to previous point in long line. + max_start_height: 0.2 # maximum difference to estimated ground height to start a new line. + line_search_angle: 0.1 # how far to search in angular direction to find a line [rad]. + + gravity_aligned_frame: "" # Frame which has its z axis aligned with gravity. (Sensor frame if empty.) + + latch: false # latch output topics or not + visualize: false # visualize segmentation result - USE ONLY FOR DEBUGGING + + input_topic: "/livox/lidar/pointcloud" + obstacle_output_topic: "segmentation/obstacle" + ground_output_topic: "segmentation/ground" \ No newline at end of file diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/test.launch.py b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/test.launch.py new file mode 100644 index 0000000..b9ca5b2 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/launch/test.launch.py @@ -0,0 +1,30 @@ + +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch_ros.actions import Node + + + +def generate_launch_description(): + # Getting directories and launch-files + bringup_dir = get_package_share_directory('linefit_ground_segmentation_ros') + params_file = os.path.join(bringup_dir, 'launch', 'segmentation_params.yaml') + + # Nodes launching commands + node_start_cmd = Node( + package='linefit_ground_segmentation_ros', + executable='ground_segmentation_test_node', + output='screen', + parameters=[params_file]) + + + ld = LaunchDescription() + + # Declare the launch options + ld.add_action(node_start_cmd) + + + return ld \ No newline at end of file diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/package.xml b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/package.xml new file mode 100644 index 0000000..542b350 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/package.xml @@ -0,0 +1,23 @@ + + + linefit_ground_segmentation_ros + 0.0.1 + linefit_ground_segmentation_ros + + Lorenz Wellhausen + + BSD + + ament_cmake + + rclcpp + tf2_ros + sensor_msgs + geometry_msgs + linefit_ground_segmentation + + + ament_cmake + + + diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/src/ground_segmentation_node.cc b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/src/ground_segmentation_node.cc new file mode 100644 index 0000000..9cbea9c --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/src/ground_segmentation_node.cc @@ -0,0 +1,147 @@ +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "ground_segmentation/ground_segmentation.h" + +class SegmentationNode : public rclcpp::Node { +public: + SegmentationNode(const rclcpp::NodeOptions &node_options); + void scanCallback(const sensor_msgs::msg::PointCloud2::SharedPtr msg); + + rclcpp::Publisher::SharedPtr ground_pub_; + rclcpp::Publisher::SharedPtr obstacle_pub_; + std::shared_ptr tf_buffer_; + std::shared_ptr tf_listener_; + rclcpp::Subscription::SharedPtr cloud_sub_; + GroundSegmentationParams params_; + std::shared_ptr segmenter_; + std::string gravity_aligned_frame_; +}; + +SegmentationNode::SegmentationNode(const rclcpp::NodeOptions &node_options) + : Node("ground_segmentation", node_options) { + gravity_aligned_frame_ = + this->declare_parameter("gravity_aligned_frame", "gravity_aligned"); + + params_.visualize = this->declare_parameter("visualize", params_.visualize); + params_.n_bins = this->declare_parameter("n_bins", params_.n_bins); + params_.n_segments = + this->declare_parameter("n_segments", params_.n_segments); + params_.max_dist_to_line = + this->declare_parameter("max_dist_to_line", params_.max_dist_to_line); + params_.max_slope = this->declare_parameter("max_slope", params_.max_slope); + params_.min_slope = this->declare_parameter("min_slope", params_.min_slope); + params_.long_threshold = + this->declare_parameter("long_threshold", params_.long_threshold); + params_.max_long_height = + this->declare_parameter("max_long_height", params_.max_long_height); + params_.max_start_height = + this->declare_parameter("max_start_height", params_.max_start_height); + params_.sensor_height = + this->declare_parameter("sensor_height", params_.sensor_height); + params_.line_search_angle = + this->declare_parameter("line_search_angle", params_.line_search_angle); + params_.n_threads = this->declare_parameter("n_threads", params_.n_threads); + // Params that need to be squared. + double r_min, r_max, max_fit_error; + if (this->get_parameter("r_min", r_min)) { + params_.r_min_square = r_min * r_min; + } + if (this->get_parameter("r_max", r_max)) { + params_.r_max_square = r_max * r_max; + } + if (this->get_parameter("max_fit_error", max_fit_error)) { + params_.max_error_square = max_fit_error * max_fit_error; + } + segmenter_ = std::make_shared(params_); + std::string ground_topic, obstacle_topic, input_topic; + ground_topic = this->declare_parameter("ground_output_topic", "ground_cloud"); + obstacle_topic = + this->declare_parameter("obstacle_output_topic", "obstacle_cloud"); + input_topic = this->declare_parameter("input_topic", "input_cloud"); + cloud_sub_ = this->create_subscription( + input_topic, rclcpp::SensorDataQoS(), + std::bind(&SegmentationNode::scanCallback, this, std::placeholders::_1)); + ground_pub_ = this->create_publisher( + ground_topic, rclcpp::SensorDataQoS()); + obstacle_pub_ = this->create_publisher( + obstacle_topic, rclcpp::SensorDataQoS()); + tf_buffer_ = std::make_shared(this->get_clock()); + tf_listener_ = std::make_shared(*tf_buffer_); + RCLCPP_INFO(this->get_logger(), "Segmentation node initialized"); +} + +void SegmentationNode::scanCallback( + const sensor_msgs::msg::PointCloud2::SharedPtr msg) { + pcl::PointCloud cloud; + pcl::fromROSMsg(*msg, cloud); + pcl::PointCloud cloud_transformed; + + std::vector labels; + + bool is_original_pc = true; + if (!gravity_aligned_frame_.empty()) { + geometry_msgs::msg::TransformStamped tf_stamped; + try { + tf_stamped = tf_buffer_->lookupTransform( + gravity_aligned_frame_, msg->header.frame_id, msg->header.stamp); + // Remove translation part. + tf_stamped.transform.translation.x = 0; + tf_stamped.transform.translation.y = 0; + tf_stamped.transform.translation.z = 0; + Eigen::Affine3d tf; + tf.translate(Eigen::Vector3d(0, 0, 0)); + tf.rotate(Eigen::Quaterniond( + tf_stamped.transform.rotation.w, tf_stamped.transform.rotation.x, + tf_stamped.transform.rotation.y, tf_stamped.transform.rotation.z)); + // tf::transformMsgToEigen(tf_stamped.transform, tf); + pcl::transformPointCloud(cloud, cloud_transformed, tf); + is_original_pc = false; + } catch (tf2::TransformException &ex) { + RCLCPP_WARN(this->get_logger(), + "Failed to transform point cloud into " + "gravity frame: %s", + ex.what()); + } + } + + // Trick to avoid PC copy if we do not transform. + const pcl::PointCloud &cloud_proc = + is_original_pc ? cloud : cloud_transformed; + + segmenter_->segment(cloud_proc, &labels); + pcl::PointCloud ground_cloud, obstacle_cloud; + for (size_t i = 0; i < cloud.size(); ++i) { + if (labels[i] == 1) + ground_cloud.push_back(cloud[i]); + else + obstacle_cloud.push_back(cloud[i]); + } + auto ground_msg = std::make_shared(); + auto obstacle_msg = std::make_shared(); + pcl::toROSMsg(ground_cloud, *ground_msg); + pcl::toROSMsg(obstacle_cloud, *obstacle_msg); + ground_msg->header = msg->header; + obstacle_msg->header = msg->header; + ground_pub_->publish(*ground_msg); + obstacle_pub_->publish(*obstacle_msg); +} + +int main(int argc, char **argv) { + rclcpp::init(argc, argv); + rclcpp::NodeOptions options; + auto node = std::make_shared(options); + rclcpp::spin(node); + rclcpp::shutdown(); + return 0; +} diff --git a/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/src/ground_segmentation_test_node.cc b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/src/ground_segmentation_test_node.cc new file mode 100644 index 0000000..ab1dee8 --- /dev/null +++ b/src/rm_perception/linefit_ground_segementation_ros2/linefit_ground_segmentation_ros/src/ground_segmentation_test_node.cc @@ -0,0 +1,60 @@ +#include +#include +#include +#include + +#include "ground_segmentation/ground_segmentation.h" + +int main(int argc, char **argv) { + rclcpp::init(argc, argv); + auto node = rclcpp::Node::make_shared("ground_segmentation"); + std::string cloud_file; + if (node->get_parameter("point_cloud_file", cloud_file)) { + std::cout << "Point cloud file is \"" << cloud_file << "\"\n"; + pcl::PointCloud cloud; + pcl::io::loadPLYFile(cloud_file, cloud); + + GroundSegmentationParams params; + params.visualize = node->declare_parameter("visualize", params.visualize); + params.n_bins = node->declare_parameter("n_bins", params.n_bins); + params.n_segments = + node->declare_parameter("n_segments", params.n_segments); + params.max_dist_to_line = + node->declare_parameter("max_dist_to_line", params.max_dist_to_line); + params.max_slope = node->declare_parameter("max_slope", params.max_slope); + params.min_slope = node->declare_parameter("min_slope", params.min_slope); + params.long_threshold = + node->declare_parameter("long_threshold", params.long_threshold); + params.max_long_height = + node->declare_parameter("max_long_height", params.max_long_height); + params.max_start_height = + node->declare_parameter("max_start_height", params.max_start_height); + params.sensor_height = + node->declare_parameter("sensor_height", params.sensor_height); + params.line_search_angle = + node->declare_parameter("line_search_angle", params.line_search_angle); + params.n_threads = node->declare_parameter("n_threads", params.n_threads); + // Params that need to be squared. + double r_min, r_max, max_fit_error; + if (node->get_parameter("r_min", r_min)) { + params.r_min_square = r_min * r_min; + } + if (node->get_parameter("r_max", r_max)) { + params.r_max_square = r_max * r_max; + } + if (node->get_parameter("max_fit_error", max_fit_error)) { + params.max_error_square = max_fit_error * max_fit_error; + } + + GroundSegmentation segmenter(params); + std::vector labels; + + segmenter.segment(cloud, &labels); + + rclcpp::spin(node); + } else { + std::cerr << "No point cloud file given\n"; + } + rclcpp::shutdown(); + return 0; +} diff --git a/src/rm_perception/pointcloud_to_laserscan/CHANGELOG.rst b/src/rm_perception/pointcloud_to_laserscan/CHANGELOG.rst new file mode 100644 index 0000000..54374c3 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/CHANGELOG.rst @@ -0,0 +1,95 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package pointcloud_to_laserscan +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +2.0.1 (2021-10-19) +------------------ +* Replace deprecated launch api (`#56 `_) +* Fix linting errors in the code (`#52 `_) +* Update README.md +* Contributors: Chris Lalancette, Daisuke Nishimatsu, Paul Bovbel + +2.0.0 (2020-02-10) +------------------ +* ROS 2 Migration (`#33 `_) + * ROS 2 Migration + Signed-off-by: Michel Hidalgo +* Contributors: Michel Hidalgo + +1.4.1 (2019-08-30) +------------------ +* LaserScan to PointCloud node + nodelet (`#28 `_) +* fix roslint (`#29 `_) +* Merge pull request `#20 `_ from ros-perception/range_max_check + Add check for range_max +* Add check for range_max +* Contributors: Paul Bovbel, Rein Appeldoorn + +1.4.0 (2017-11-14) +------------------ +* Added inf_epsilon parameter that determines the value added to max range when use_infs parameter is set to false +* Merge pull request `#11 `_ from ros-perception/mikaelarguedas-patch-1 + update to use non deprecated pluginlib macro +* Migrate to package format 2; add roslint +* Add sane parameter defaults; fixup lint warnings +* update to use non deprecated pluginlib macro +* Contributors: Mikael Arguedas, Paul Bovbel, Prasanna Kannappan + +1.3.1 (2017-04-26) +------------------ +* Merge pull request `#4 `_ from yoshimalucky/fix-miscalculation-in-angle-increment + Fixed miscalculation in angle_increment in the launch files. +* fixed miscalculation in angle_increment in the launchfiles. +* Contributors: Paul Bovbel, yoshimalucky + +1.3.0 (2015-06-09) +------------------ +* Fix pointcloud to laserscan transform tolerance issues +* Move pointcloud_to_laserscan to new repository +* Contributors: Paul Bovbel + +1.2.7 (2015-06-08) +------------------ + +* Cleanup pointcloud_to_laserscan launch files +* Contributors: Paul Bovbel + +1.2.6 (2015-02-04) +------------------ +* Fix default value for concurrency +* Fix multithreaded lazy pub sub +* Contributors: Paul Bovbel + +1.2.5 (2015-01-20) +------------------ +* Switch to tf_sensor_msgs for transform +* Set parameters in sample launch files to default +* Add tolerance parameter +* Contributors: Paul Bovbel + +1.2.4 (2015-01-15) +------------------ +* Remove stray dependencies +* Refactor with tf2 and message filters +* Remove roslaunch check +* Fix regressions +* Refactor to allow debug messages from node and nodelet +* Contributors: Paul Bovbel + +1.2.3 (2015-01-10) +------------------ +* add launch tests +* refactor naming and fix nodelet export +* set default target frame to empty +* clean up package.xml +* Contributors: Paul Bovbel + +1.2.2 (2014-10-25) +------------------ +* clean up package.xml +* Fix header reference +* Fix flow +* Fix pointer assertion +* Finalize pointcloud to laserscan +* Initial pointcloud to laserscan commit +* Contributors: Paul Bovbel diff --git a/src/rm_perception/pointcloud_to_laserscan/CMakeLists.txt b/src/rm_perception/pointcloud_to_laserscan/CMakeLists.txt new file mode 100644 index 0000000..e37aed9 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/CMakeLists.txt @@ -0,0 +1,36 @@ +cmake_minimum_required(VERSION 3.5) +project(pointcloud_to_laserscan) + +add_compile_options(-std=c++17 -O3) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +find_package(ament_cmake_auto REQUIRED) +ament_auto_find_build_dependencies() + +ament_auto_add_library(laserscan_to_pointcloud SHARED + src/laserscan_to_pointcloud_node.cpp) + +rclcpp_components_register_node(laserscan_to_pointcloud + PLUGIN "pointcloud_to_laserscan::LaserScanToPointCloudNode" + EXECUTABLE laserscan_to_pointcloud_node) + +ament_auto_add_library(pointcloud_to_laserscan SHARED + src/pointcloud_to_laserscan_node.cpp) + +rclcpp_components_register_node(pointcloud_to_laserscan + PLUGIN "pointcloud_to_laserscan::PointCloudToLaserScanNode" + EXECUTABLE pointcloud_to_laserscan_node) + +ament_auto_add_executable(dummy_pointcloud_publisher + src/dummy_pointcloud_publisher.cpp +) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + ament_lint_auto_find_test_dependencies() +endif() + +ament_auto_package( + INSTALL_TO_SHARE + launch +) diff --git a/src/rm_perception/pointcloud_to_laserscan/LICENSE b/src/rm_perception/pointcloud_to_laserscan/LICENSE new file mode 100644 index 0000000..f05ef04 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/LICENSE @@ -0,0 +1,12 @@ +Copyright (c) 2010-2012, Willow Garage, Inc. +Copyright (c) 2019, Eurotec, Netherlands + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/rm_perception/pointcloud_to_laserscan/README.md b/src/rm_perception/pointcloud_to_laserscan/README.md new file mode 100644 index 0000000..dd8db4d --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/README.md @@ -0,0 +1,49 @@ +# ROS 2 pointcloud <-> laserscan converters + +This is a ROS 2 package that provides components to convert `sensor_msgs/msg/PointCloud2` messages to `sensor_msgs/msg/LaserScan` messages and back. +It is essentially a port of the original ROS 1 package. + +## pointcloud\_to\_laserscan::PointCloudToLaserScanNode + +This ROS 2 component projects `sensor_msgs/msg/PointCloud2` messages into `sensor_msgs/msg/LaserScan` messages. + +### Published Topics + +* `scan` (`sensor_msgs/msg/LaserScan`) - The output laser scan. + +### Subscribed Topics + +* `cloud_in` (`sensor_msgs/msg/PointCloud2`) - The input point cloud. No input will be processed if there isn't at least one subscriber to the `scan` topic. + +### Parameters + +* `min_height` (double, default: 2.2e-308) - The minimum height to sample in the point cloud in meters. +* `max_height` (double, default: 1.8e+308) - The maximum height to sample in the point cloud in meters. +* `angle_min` (double, default: -π) - The minimum scan angle in radians. +* `angle_max` (double, default: π) - The maximum scan angle in radians. +* `angle_increment` (double, default: π/180) - Resolution of laser scan in radians per ray. +* `queue_size` (double, default: detected number of cores) - Input point cloud queue size. +* `scan_time` (double, default: 1.0/30.0) - The scan rate in seconds. Only used to populate the scan_time field of the output laser scan message. +* `range_min` (double, default: 0.0) - The minimum ranges to return in meters. +* `range_max` (double, default: 1.8e+308) - The maximum ranges to return in meters. +* `target_frame` (str, default: none) - If provided, transform the pointcloud into this frame before converting to a laser scan. Otherwise, laser scan will be generated in the same frame as the input point cloud. +* `transform_tolerance` (double, default: 0.01) - Time tolerance for transform lookups. Only used if a `target_frame` is provided. +* `use_inf` (boolean, default: true) - If disabled, report infinite range (no obstacle) as range_max + 1. Otherwise report infinite range as +inf. + +## pointcloud\_to\_laserscan::LaserScanToPointCloudNode + +This ROS 2 component re-publishes `sensor_msgs/msg/LaserScan` messages as `sensor_msgs/msg/PointCloud2` messages. + +### Published Topics + +* `cloud` (`sensor_msgs/msg/PointCloud2`) - The output point cloud. + +### Subscribed Topics + +* `scan_in` (`sensor_msgs/msg/LaserScan`) - The input laser scan. No input will be processed if there isn't at least one subscriber to the `cloud` topic. + +### Parameters + +* `queue_size` (double, default: detected number of cores) - Input laser scan queue size. +* `target_frame` (str, default: none) - If provided, transform the pointcloud into this frame before converting to a laser scan. Otherwise, laser scan will be generated in the same frame as the input point cloud. +* `transform_tolerance` (double, default: 0.01) - Time tolerance for transform lookups. Only used if a `target_frame` is provided. diff --git a/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/laserscan_to_pointcloud_node.hpp b/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/laserscan_to_pointcloud_node.hpp new file mode 100644 index 0000000..8948af9 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/laserscan_to_pointcloud_node.hpp @@ -0,0 +1,98 @@ +/* + * Software License Agreement (BSD License) + * + * Copyright (c) 2019, Eurotec, Netherlands + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of Willow Garage, Inc. nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * + */ + +/* + * Author: Rein Appeldoorn + */ + +#ifndef POINTCLOUD_TO_LASERSCAN__LASERSCAN_TO_POINTCLOUD_NODE_HPP_ +#define POINTCLOUD_TO_LASERSCAN__LASERSCAN_TO_POINTCLOUD_NODE_HPP_ + +#include +#include +#include +#include + +#include "message_filters/subscriber.h" +#include "tf2_ros/buffer.h" +#include "tf2_ros/message_filter.h" +#include "tf2_ros/transform_listener.h" + +#include "laser_geometry/laser_geometry.hpp" +#include "rclcpp/rclcpp.hpp" +#include "sensor_msgs/msg/laser_scan.hpp" +#include "sensor_msgs/msg/point_cloud2.hpp" + +#include "pointcloud_to_laserscan/visibility_control.h" + +namespace pointcloud_to_laserscan +{ +typedef tf2_ros::MessageFilter MessageFilter; + +//! \brief The PointCloudToLaserScanNodelet class to process incoming laserscans into pointclouds. +//! +class LaserScanToPointCloudNode : public rclcpp::Node +{ +public: + POINTCLOUD_TO_LASERSCAN_PUBLIC + explicit LaserScanToPointCloudNode(const rclcpp::NodeOptions & options); + + ~LaserScanToPointCloudNode() override; + +private: + void scanCallback(sensor_msgs::msg::LaserScan::ConstSharedPtr scan_msg); + + void subscriptionListenerThreadLoop(); + + std::unique_ptr tf2_; + std::unique_ptr tf2_listener_; + message_filters::Subscriber sub_; + std::shared_ptr> pub_; + std::unique_ptr message_filter_; + std::thread subscription_listener_thread_; + std::atomic_bool alive_{true}; + + laser_geometry::LaserProjection projector_; + + // ROS Parameters + int input_queue_size_; + std::string target_frame_; + double tolerance_; +}; + +} // namespace pointcloud_to_laserscan + +#endif // POINTCLOUD_TO_LASERSCAN__LASERSCAN_TO_POINTCLOUD_NODE_HPP_ diff --git a/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/pointcloud_to_laserscan_node.hpp b/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/pointcloud_to_laserscan_node.hpp new file mode 100644 index 0000000..fe0aacd --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/pointcloud_to_laserscan_node.hpp @@ -0,0 +1,102 @@ +/* + * Software License Agreement (BSD License) + * + * Copyright (c) 2010-2012, Willow Garage, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of Willow Garage, Inc. nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * + */ + +/* + * Author: Paul Bovbel + */ + +#ifndef POINTCLOUD_TO_LASERSCAN__POINTCLOUD_TO_LASERSCAN_NODE_HPP_ +#define POINTCLOUD_TO_LASERSCAN__POINTCLOUD_TO_LASERSCAN_NODE_HPP_ + +#include +#include +#include +#include + +#include "message_filters/subscriber.h" +#include "tf2_ros/buffer.h" +#include "tf2_ros/message_filter.h" +#include "tf2_ros/transform_listener.h" + +#include "rclcpp/rclcpp.hpp" +#include "sensor_msgs/msg/laser_scan.hpp" +#include "sensor_msgs/msg/point_cloud2.hpp" + +#include "pointcloud_to_laserscan/visibility_control.h" + +namespace pointcloud_to_laserscan +{ +typedef tf2_ros::MessageFilter MessageFilter; + +/** +* Class to process incoming pointclouds into laserscans. +* Some initial code was pulled from the defunct turtlebot pointcloud_to_laserscan implementation. +*/ +class PointCloudToLaserScanNode : public rclcpp::Node +{ +public: + POINTCLOUD_TO_LASERSCAN_PUBLIC + explicit PointCloudToLaserScanNode(const rclcpp::NodeOptions & options); + + ~PointCloudToLaserScanNode() override; + +private: + void cloudCallback(sensor_msgs::msg::PointCloud2::ConstSharedPtr cloud_msg); + + void subscriptionListenerThreadLoop(); + + std::unique_ptr tf2_; + std::unique_ptr tf2_listener_; + message_filters::Subscriber sub_; + std::shared_ptr> pub_; + std::unique_ptr message_filter_; + + std::thread subscription_listener_thread_; + std::atomic_bool alive_{true}; + + // ROS Parameters + int input_queue_size_; + std::string target_frame_; + double tolerance_; + double min_height_, max_height_, angle_min_, angle_max_, angle_increment_, scan_time_, range_min_, + range_max_; + bool use_inf_; + double inf_epsilon_; +}; + +} // namespace pointcloud_to_laserscan + +#endif // POINTCLOUD_TO_LASERSCAN__POINTCLOUD_TO_LASERSCAN_NODE_HPP_ diff --git a/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/visibility_control.h b/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/visibility_control.h new file mode 100644 index 0000000..7058490 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/include/pointcloud_to_laserscan/visibility_control.h @@ -0,0 +1,80 @@ +/* + * Software License Agreement (BSD License) + * + * Copyright (c) 2019, Eurotec, Netherlands + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of Willow Garage, Inc. nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * + */ + +#ifndef POINTCLOUD_TO_LASERSCAN__VISIBILITY_CONTROL_H_ +#define POINTCLOUD_TO_LASERSCAN__VISIBILITY_CONTROL_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +// This logic was borrowed (then namespaced) from the examples on the gcc wiki: +// https://gcc.gnu.org/wiki/Visibility + +#if defined _WIN32 || defined __CYGWIN__ + #ifdef __GNUC__ + #define POINTCLOUD_TO_LASERSCAN_EXPORT __attribute__ ((dllexport)) + #define POINTCLOUD_TO_LASERSCAN_IMPORT __attribute__ ((dllimport)) + #else + #define POINTCLOUD_TO_LASERSCAN_EXPORT __declspec(dllexport) + #define POINTCLOUD_TO_LASERSCAN_IMPORT __declspec(dllimport) + #endif + #ifdef POINTCLOUD_TO_LASERSCAN_BUILDING_DLL + #define POINTCLOUD_TO_LASERSCAN_PUBLIC POINTCLOUD_TO_LASERSCAN_EXPORT + #else + #define POINTCLOUD_TO_LASERSCAN_PUBLIC POINTCLOUD_TO_LASERSCAN_IMPORT + #endif + #define POINTCLOUD_TO_LASERSCAN_PUBLIC_TYPE POINTCLOUD_TO_LASERSCAN_PUBLIC + #define POINTCLOUD_TO_LASERSCAN_LOCAL +#else + #define POINTCLOUD_TO_LASERSCAN_EXPORT __attribute__ ((visibility("default"))) + #define POINTCLOUD_TO_LASERSCAN_IMPORT + #if __GNUC__ >= 4 + #define POINTCLOUD_TO_LASERSCAN_PUBLIC __attribute__ ((visibility("default"))) + #define POINTCLOUD_TO_LASERSCAN_LOCAL __attribute__ ((visibility("hidden"))) + #else + #define POINTCLOUD_TO_LASERSCAN_PUBLIC + #define POINTCLOUD_TO_LASERSCAN_LOCAL + #endif + #define POINTCLOUD_TO_LASERSCAN_PUBLIC_TYPE +#endif + +#ifdef __cplusplus +} +#endif + +#endif // POINTCLOUD_TO_LASERSCAN__VISIBILITY_CONTROL_H_ diff --git a/src/rm_perception/pointcloud_to_laserscan/launch/pointcloud_to_laserscan_launch.py b/src/rm_perception/pointcloud_to_laserscan/launch/pointcloud_to_laserscan_launch.py new file mode 100644 index 0000000..02f9119 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/launch/pointcloud_to_laserscan_launch.py @@ -0,0 +1,33 @@ +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument +from launch.substitutions import LaunchConfiguration +from launch_ros.actions import Node + + +def generate_launch_description(): + return LaunchDescription([ + DeclareLaunchArgument( + name='scanner', default_value='scanner', + description='Namespace for sample topics' + ), + Node( + package='pointcloud_to_laserscan', executable='pointcloud_to_laserscan_node', + remappings=[('cloud_in', ['/segmentation/obstacle']), + ('scan', ['/scan'])], + parameters=[{ + 'target_frame': 'livox_frame', + 'transform_tolerance': 0.01, + 'min_height': -1.0, + 'max_height': 0.1, + 'angle_min': -3.14159, # -M_PI/2 + 'angle_max': 3.14159, # M_PI/2 + 'angle_increment': 0.0043, # M_PI/360.0 + 'scan_time': 0.3333, + 'range_min': 0.45, + 'range_max': 10.0, + 'use_inf': True, + 'inf_epsilon': 1.0 + }], + name='pointcloud_to_laserscan' + ) + ]) \ No newline at end of file diff --git a/src/rm_perception/pointcloud_to_laserscan/launch/sample_laserscan_to_pointcloud_launch.py b/src/rm_perception/pointcloud_to_laserscan/launch/sample_laserscan_to_pointcloud_launch.py new file mode 100644 index 0000000..2f711d7 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/launch/sample_laserscan_to_pointcloud_launch.py @@ -0,0 +1,47 @@ +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument +from launch.actions import ExecuteProcess +from launch.substitutions import LaunchConfiguration +from launch_ros.actions import Node + +import yaml + + +def generate_launch_description(): + return LaunchDescription([ + DeclareLaunchArgument( + name='scanner', default_value='scanner', + description='Namespace for sample topics' + ), + ExecuteProcess( + cmd=[ + 'ros2', 'topic', 'pub', '-r', '10', + '--qos-profile', 'sensor_data', + [LaunchConfiguration(variable_name='scanner'), '/scan'], + 'sensor_msgs/msg/LaserScan', yaml.dump({ + 'header': {'frame_id': 'scan'}, 'angle_min': -1.0, + 'angle_max': 1.0, 'angle_increment': 0.1, 'range_max': 10.0, + 'ranges': [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] + }) + ], + name='scan_publisher' + ), + Node( + package='tf2_ros', + executable='static_transform_publisher', + name='static_transform_publisher', + arguments=[ + '--x', '0', '--y', '0', '--z', '0', + '--qx', '0', '--qy', '0', '--qz', '0', '--qw', '1', + '--frame-id', 'map', '--child-frame-id', 'scan' + ] + ), + Node( + package='pointcloud_to_laserscan', + executable='laserscan_to_pointcloud_node', + name='laserscan_to_pointcloud', + remappings=[('scan_in', [LaunchConfiguration(variable_name='scanner'), '/scan']), + ('cloud', [LaunchConfiguration(variable_name='scanner'), '/cloud'])], + parameters=[{'target_frame': 'scan', 'transform_tolerance': 0.01}] + ), + ]) diff --git a/src/rm_perception/pointcloud_to_laserscan/launch/sample_pointcloud_to_laserscan_launch.py b/src/rm_perception/pointcloud_to_laserscan/launch/sample_pointcloud_to_laserscan_launch.py new file mode 100644 index 0000000..b8ac473 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/launch/sample_pointcloud_to_laserscan_launch.py @@ -0,0 +1,49 @@ +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument +from launch.substitutions import LaunchConfiguration +from launch_ros.actions import Node + + +def generate_launch_description(): + return LaunchDescription([ + DeclareLaunchArgument( + name='scanner', default_value='scanner', + description='Namespace for sample topics' + ), + Node( + package='pointcloud_to_laserscan', executable='dummy_pointcloud_publisher', + remappings=[('cloud', [LaunchConfiguration(variable_name='scanner'), '/cloud'])], + parameters=[{'cloud_frame_id': 'cloud', 'cloud_extent': 2.0, 'cloud_size': 500}], + name='cloud_publisher' + ), + Node( + package='tf2_ros', + executable='static_transform_publisher', + name='static_transform_publisher', + arguments=[ + '--x', '0', '--y', '0', '--z', '0', + '--qx', '0', '--qy', '0', '--qz', '0', '--qw', '1', + '--frame-id', 'map', '--child-frame-id', 'cloud' + ] + ), + Node( + package='pointcloud_to_laserscan', executable='pointcloud_to_laserscan_node', + remappings=[('cloud_in', [LaunchConfiguration(variable_name='scanner'), '/cloud']), + ('scan', [LaunchConfiguration(variable_name='scanner'), '/scan'])], + parameters=[{ + 'target_frame': 'cloud', + 'transform_tolerance': 0.01, + 'min_height': 0.0, + 'max_height': 1.0, + 'angle_min': -1.5708, # -M_PI/2 + 'angle_max': 1.5708, # M_PI/2 + 'angle_increment': 0.0087, # M_PI/360.0 + 'scan_time': 0.3333, + 'range_min': 0.45, + 'range_max': 4.0, + 'use_inf': True, + 'inf_epsilon': 1.0 + }], + name='pointcloud_to_laserscan' + ) + ]) diff --git a/src/rm_perception/pointcloud_to_laserscan/package.xml b/src/rm_perception/pointcloud_to_laserscan/package.xml new file mode 100644 index 0000000..3d9ec2f --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/package.xml @@ -0,0 +1,46 @@ + + + pointcloud_to_laserscan + 2.0.1 + Converts a 3D Point Cloud into a 2D laser scan. This is useful for making devices like the Kinect appear like a laser scanner for 2D-based algorithms (e.g. laser-based SLAM). + + Paul Bovbel + Michel Hidalgo + Paul Bovbel + Michel Hidalgo + Tully Foote + + BSD + + http://ros.org/wiki/perception_pcl + https://github.com/ros-perception/perception_pcl/issues + https://github.com/ros-perception/perception_pcl + + ament_cmake_auto + + laser_geometry + message_filters + rclcpp + rclcpp_components + sensor_msgs + tf2 + tf2_ros + tf2_sensor_msgs + + launch + launch_ros + + ament_lint_auto + + ament_cmake_cppcheck + ament_cmake_cpplint + ament_cmake_flake8 + ament_cmake_lint_cmake + ament_cmake_pep257 + ament_cmake_uncrustify + ament_cmake_xmllint + + + ament_cmake + + diff --git a/src/rm_perception/pointcloud_to_laserscan/src/dummy_pointcloud_publisher.cpp b/src/rm_perception/pointcloud_to_laserscan/src/dummy_pointcloud_publisher.cpp new file mode 100644 index 0000000..c4b7349 --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/src/dummy_pointcloud_publisher.cpp @@ -0,0 +1,85 @@ +/* + * Software License Agreement (BSD License) + * + * Copyright (c) 2020, Open Source Robotics Foundation, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of Willow Garage, Inc. nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * + */ + +#include +#include + +#include "rclcpp/rclcpp.hpp" +#include "sensor_msgs/msg/point_cloud2.hpp" +#include "sensor_msgs/point_cloud2_iterator.hpp" + +int main(int argc, char * argv[]) +{ + rclcpp::init(argc, argv); + + auto node = std::make_shared("dummy_pointcloud_publisher"); + auto pub = + node->create_publisher("cloud", rclcpp::SensorDataQoS()); + + sensor_msgs::msg::PointCloud2 dummy_cloud; + sensor_msgs::PointCloud2Modifier modifier(dummy_cloud); + modifier.setPointCloud2Fields( + 3, + "x", 1, sensor_msgs::msg::PointField::FLOAT32, + "y", 1, sensor_msgs::msg::PointField::FLOAT32, + "z", 1, sensor_msgs::msg::PointField::FLOAT32); + modifier.resize(node->declare_parameter("cloud_size", 100)); + std::mt19937 gen(node->declare_parameter("cloud_seed", 0)); + double extent = node->declare_parameter("cloud_extent", 10.0); + std::uniform_real_distribution distribution(-extent / 2, extent / 2); + sensor_msgs::PointCloud2Iterator it_x(dummy_cloud, "x"); + sensor_msgs::PointCloud2Iterator it_y(dummy_cloud, "y"); + sensor_msgs::PointCloud2Iterator it_z(dummy_cloud, "z"); + for (; it_x != it_x.end(); ++it_x, ++it_y, ++it_z) { + *it_x = distribution(gen); + *it_y = distribution(gen); + *it_z = distribution(gen); + } + dummy_cloud.header.frame_id = node->declare_parameter("cloud_frame_id", ""); + + rclcpp::executors::SingleThreadedExecutor executor; + executor.add_node(node); + rclcpp::Rate rate(1.0); + while (rclcpp::ok()) { + dummy_cloud.header.stamp = node->get_clock()->now(); + pub->publish(dummy_cloud); + executor.spin_some(); + rate.sleep(); + } + + rclcpp::shutdown(); + return 0; +} diff --git a/src/rm_perception/pointcloud_to_laserscan/src/laserscan_to_pointcloud_node.cpp b/src/rm_perception/pointcloud_to_laserscan/src/laserscan_to_pointcloud_node.cpp new file mode 100644 index 0000000..2d2726f --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/src/laserscan_to_pointcloud_node.cpp @@ -0,0 +1,150 @@ +/* + * Software License Agreement (BSD License) + * + * Copyright (c) 2019, Eurotec, Netherlands + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of Willow Garage, Inc. nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * + */ + +/* + * Author: Rein Appeldoorn + */ + +#include "pointcloud_to_laserscan/laserscan_to_pointcloud_node.hpp" + +#include +#include +#include +#include +#include +#include +#include + +#include "sensor_msgs/point_cloud2_iterator.hpp" +#include "tf2_sensor_msgs/tf2_sensor_msgs.hpp" +#include "tf2_ros/create_timer_ros.h" + +namespace pointcloud_to_laserscan +{ + +LaserScanToPointCloudNode::LaserScanToPointCloudNode(const rclcpp::NodeOptions & options) +: rclcpp::Node("laserscan_to_pointcloud", options) +{ + target_frame_ = this->declare_parameter("target_frame", ""); + tolerance_ = this->declare_parameter("transform_tolerance", 0.01); + // TODO(hidmic): adjust default input queue size based on actual concurrency levels + // achievable by the associated executor + input_queue_size_ = this->declare_parameter( + "queue_size", static_cast(std::thread::hardware_concurrency())); + + pub_ = this->create_publisher("cloud", rclcpp::SensorDataQoS()); + + using std::placeholders::_1; + // if pointcloud target frame specified, we need to filter by transform availability + if (!target_frame_.empty()) { + tf2_ = std::make_unique(this->get_clock()); + auto timer_interface = std::make_shared( + this->get_node_base_interface(), this->get_node_timers_interface()); + tf2_->setCreateTimerInterface(timer_interface); + tf2_listener_ = std::make_unique(*tf2_); + message_filter_ = std::make_unique( + sub_, *tf2_, target_frame_, input_queue_size_, + this->get_node_logging_interface(), + this->get_node_clock_interface()); + message_filter_->registerCallback( + std::bind( + &LaserScanToPointCloudNode::scanCallback, this, _1)); + } else { // otherwise setup direct subscription + sub_.registerCallback(std::bind(&LaserScanToPointCloudNode::scanCallback, this, _1)); + } + + subscription_listener_thread_ = std::thread( + std::bind(&LaserScanToPointCloudNode::subscriptionListenerThreadLoop, this)); +} + +LaserScanToPointCloudNode::~LaserScanToPointCloudNode() +{ + alive_.store(true); + subscription_listener_thread_.join(); +} + +void LaserScanToPointCloudNode::subscriptionListenerThreadLoop() +{ + rclcpp::Context::SharedPtr context = this->get_node_base_interface()->get_context(); + + const std::chrono::milliseconds timeout(100); + while (rclcpp::ok(context) && alive_.load()) { + int subscription_count = pub_->get_subscription_count() + + pub_->get_intra_process_subscription_count(); + if (subscription_count > 0) { + if (!sub_.getSubscriber()) { + RCLCPP_INFO( + this->get_logger(), + "Got a subscriber to pointcloud, starting laserscan subscriber"); + rclcpp::SensorDataQoS qos; + qos.keep_last(input_queue_size_); + sub_.subscribe(this, "scan_in", qos.get_rmw_qos_profile()); + } + } else if (sub_.getSubscriber()) { + RCLCPP_INFO( + this->get_logger(), + "No subscribers to pointcloud, shutting down laserscan subscriber"); + sub_.unsubscribe(); + } + rclcpp::Event::SharedPtr event = this->get_graph_event(); + this->wait_for_graph_change(event, timeout); + } + sub_.unsubscribe(); +} + +void LaserScanToPointCloudNode::scanCallback(sensor_msgs::msg::LaserScan::ConstSharedPtr scan_msg) +{ + auto cloud_msg = std::make_unique(); + + projector_.projectLaser(*scan_msg, *cloud_msg); + + // Transform cloud if necessary + if (!target_frame_.empty() && cloud_msg->header.frame_id != target_frame_) { + try { + *cloud_msg = tf2_->transform(*cloud_msg, target_frame_, tf2::durationFromSec(tolerance_)); + } catch (tf2::TransformException & ex) { + RCLCPP_ERROR_STREAM(this->get_logger(), "Transform failure: " << ex.what()); + return; + } + } + pub_->publish(std::move(cloud_msg)); +} + +} // namespace pointcloud_to_laserscan + +#include "rclcpp_components/register_node_macro.hpp" + +RCLCPP_COMPONENTS_REGISTER_NODE(pointcloud_to_laserscan::LaserScanToPointCloudNode) diff --git a/src/rm_perception/pointcloud_to_laserscan/src/pointcloud_to_laserscan_node.cpp b/src/rm_perception/pointcloud_to_laserscan/src/pointcloud_to_laserscan_node.cpp new file mode 100644 index 0000000..ca0039f --- /dev/null +++ b/src/rm_perception/pointcloud_to_laserscan/src/pointcloud_to_laserscan_node.cpp @@ -0,0 +1,237 @@ +/* + * Software License Agreement (BSD License) + * + * Copyright (c) 2010-2012, Willow Garage, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of Willow Garage, Inc. nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * + */ + +/* + * Author: Paul Bovbel + */ + +#include "pointcloud_to_laserscan/pointcloud_to_laserscan_node.hpp" + +#include +#include +#include +#include +#include +#include +#include + +#include "sensor_msgs/point_cloud2_iterator.hpp" +#include "tf2_sensor_msgs/tf2_sensor_msgs.hpp" +#include "tf2_ros/create_timer_ros.h" + +namespace pointcloud_to_laserscan +{ + +PointCloudToLaserScanNode::PointCloudToLaserScanNode(const rclcpp::NodeOptions & options) +: rclcpp::Node("pointcloud_to_laserscan", options) +{ + target_frame_ = this->declare_parameter("target_frame", ""); + tolerance_ = this->declare_parameter("transform_tolerance", 0.01); + // TODO(hidmic): adjust default input queue size based on actual concurrency levels + // achievable by the associated executor + input_queue_size_ = this->declare_parameter( + "queue_size", static_cast(std::thread::hardware_concurrency())); + min_height_ = this->declare_parameter("min_height", std::numeric_limits::min()); + max_height_ = this->declare_parameter("max_height", std::numeric_limits::max()); + angle_min_ = this->declare_parameter("angle_min", -M_PI); + angle_max_ = this->declare_parameter("angle_max", M_PI); + angle_increment_ = this->declare_parameter("angle_increment", M_PI / 180.0); + scan_time_ = this->declare_parameter("scan_time", 1.0 / 30.0); + range_min_ = this->declare_parameter("range_min", 0.0); + range_max_ = this->declare_parameter("range_max", std::numeric_limits::max()); + inf_epsilon_ = this->declare_parameter("inf_epsilon", 1.0); + use_inf_ = this->declare_parameter("use_inf", true); + + pub_ = this->create_publisher("scan", rclcpp::SensorDataQoS()); + + using std::placeholders::_1; + // if pointcloud target frame specified, we need to filter by transform availability + if (!target_frame_.empty()) { + tf2_ = std::make_unique(this->get_clock()); + auto timer_interface = std::make_shared( + this->get_node_base_interface(), this->get_node_timers_interface()); + tf2_->setCreateTimerInterface(timer_interface); + tf2_listener_ = std::make_unique(*tf2_); + message_filter_ = std::make_unique( + sub_, *tf2_, target_frame_, input_queue_size_, + this->get_node_logging_interface(), + this->get_node_clock_interface()); + message_filter_->registerCallback( + std::bind(&PointCloudToLaserScanNode::cloudCallback, this, _1)); + } else { // otherwise setup direct subscription + sub_.registerCallback(std::bind(&PointCloudToLaserScanNode::cloudCallback, this, _1)); + } + + subscription_listener_thread_ = std::thread( + std::bind(&PointCloudToLaserScanNode::subscriptionListenerThreadLoop, this)); +} + +PointCloudToLaserScanNode::~PointCloudToLaserScanNode() +{ + alive_.store(false); + subscription_listener_thread_.join(); +} + +void PointCloudToLaserScanNode::subscriptionListenerThreadLoop() +{ + rclcpp::Context::SharedPtr context = this->get_node_base_interface()->get_context(); + + const std::chrono::milliseconds timeout(100); + while (rclcpp::ok(context) && alive_.load()) { + int subscription_count = pub_->get_subscription_count() + + pub_->get_intra_process_subscription_count(); + if (subscription_count > 0) { + if (!sub_.getSubscriber()) { + RCLCPP_INFO( + this->get_logger(), + "Got a subscriber to laserscan, starting pointcloud subscriber"); + rclcpp::SensorDataQoS qos; + qos.keep_last(input_queue_size_); + sub_.subscribe(this, "cloud_in", qos.get_rmw_qos_profile()); + } + } else if (sub_.getSubscriber()) { + RCLCPP_INFO( + this->get_logger(), + "No subscribers to laserscan, shutting down pointcloud subscriber"); + sub_.unsubscribe(); + } + rclcpp::Event::SharedPtr event = this->get_graph_event(); + this->wait_for_graph_change(event, timeout); + } + sub_.unsubscribe(); +} + +void PointCloudToLaserScanNode::cloudCallback( + sensor_msgs::msg::PointCloud2::ConstSharedPtr cloud_msg) +{ + // build laserscan output + auto scan_msg = std::make_unique(); + scan_msg->header = cloud_msg->header; + if (!target_frame_.empty()) { + scan_msg->header.frame_id = target_frame_; + } + + scan_msg->angle_min = angle_min_; + scan_msg->angle_max = angle_max_; + scan_msg->angle_increment = angle_increment_; + scan_msg->time_increment = 0.0; + scan_msg->scan_time = scan_time_; + scan_msg->range_min = range_min_; + scan_msg->range_max = range_max_; + + // determine amount of rays to create + uint32_t ranges_size = std::ceil( + (scan_msg->angle_max - scan_msg->angle_min) / scan_msg->angle_increment); + + // determine if laserscan rays with no obstacle data will evaluate to infinity or max_range + if (use_inf_) { + scan_msg->ranges.assign(ranges_size, std::numeric_limits::infinity()); + } else { + scan_msg->ranges.assign(ranges_size, scan_msg->range_max + inf_epsilon_); + } + + // Transform cloud if necessary + if (scan_msg->header.frame_id != cloud_msg->header.frame_id) { + try { + auto cloud = std::make_shared(); + tf2_->transform(*cloud_msg, *cloud, target_frame_, tf2::durationFromSec(tolerance_)); + cloud_msg = cloud; + } catch (tf2::TransformException & ex) { + RCLCPP_ERROR_STREAM(this->get_logger(), "Transform failure: " << ex.what()); + return; + } + } + + // Iterate through pointcloud + for (sensor_msgs::PointCloud2ConstIterator iter_x(*cloud_msg, "x"), + iter_y(*cloud_msg, "y"), iter_z(*cloud_msg, "z"); + iter_x != iter_x.end(); ++iter_x, ++iter_y, ++iter_z) + { + if (std::isnan(*iter_x) || std::isnan(*iter_y) || std::isnan(*iter_z)) { + RCLCPP_DEBUG( + this->get_logger(), + "rejected for nan in point(%f, %f, %f)\n", + *iter_x, *iter_y, *iter_z); + continue; + } + + if (*iter_z > max_height_ || *iter_z < min_height_) { + RCLCPP_DEBUG( + this->get_logger(), + "rejected for height %f not in range (%f, %f)\n", + *iter_z, min_height_, max_height_); + continue; + } + + double range = hypot(*iter_x, *iter_y); + if (range < range_min_) { + RCLCPP_DEBUG( + this->get_logger(), + "rejected for range %f below minimum value %f. Point: (%f, %f, %f)", + range, range_min_, *iter_x, *iter_y, *iter_z); + continue; + } + if (range > range_max_) { + RCLCPP_DEBUG( + this->get_logger(), + "rejected for range %f above maximum value %f. Point: (%f, %f, %f)", + range, range_max_, *iter_x, *iter_y, *iter_z); + continue; + } + + double angle = atan2(*iter_y, *iter_x); + if (angle < scan_msg->angle_min || angle > scan_msg->angle_max) { + RCLCPP_DEBUG( + this->get_logger(), + "rejected for angle %f not in range (%f, %f)\n", + angle, scan_msg->angle_min, scan_msg->angle_max); + continue; + } + + // overwrite range at laserscan ray if new range is smaller + int index = (angle - scan_msg->angle_min) / scan_msg->angle_increment; + if (range < scan_msg->ranges[index]) { + scan_msg->ranges[index] = range; + } + } + pub_->publish(std::move(scan_msg)); +} + +} // namespace pointcloud_to_laserscan + +#include "rclcpp_components/register_node_macro.hpp" + +RCLCPP_COMPONENTS_REGISTER_NODE(pointcloud_to_laserscan::PointCloudToLaserScanNode) diff --git a/src/rm_simpal_move/CMakeLists.txt b/src/rm_simpal_move/CMakeLists.txt new file mode 100644 index 0000000..6671c60 --- /dev/null +++ b/src/rm_simpal_move/CMakeLists.txt @@ -0,0 +1,53 @@ +cmake_minimum_required(VERSION 3.8) +project(rm_simpal_move) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +# find dependencies +find_package(ament_cmake REQUIRED) +find_package(rclcpp REQUIRED) +find_package(rclcpp_components REQUIRED) +find_package(tf2_ros REQUIRED) +find_package(tf2_geometry_msgs REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(rm_msgs REQUIRED) + +# include directories +include_directories(include) + +# add library +add_library(rm_simpal_move SHARED src/simple_move.cpp) + +# link libraries +ament_target_dependencies(rm_simpal_move rclcpp rclcpp_components tf2_ros geometry_msgs tf2_geometry_msgs rm_msgs) + +# register node +rclcpp_components_register_nodes(rm_simpal_move "rm_simpal_move::RMSimpleMove") + +# install targets +install(TARGETS rm_simpal_move + ARCHIVE DESTINATION lib + LIBRARY DESTINATION lib + RUNTIME DESTINATION bin +) + +# install launch files +install(DIRECTORY launch + DESTINATION share/${PROJECT_NAME}/ +) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + # the following line skips the linter which checks for copyrights + # comment the line when a copyright and license is added to all source files + set(ament_cmake_copyright_FOUND TRUE) + # the following line skips cpplint (only works in a git repo) + # comment the line when this package is in a git repo and when + # a copyright and license is added to all source files + set(ament_cmake_cpplint_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + +ament_package() \ No newline at end of file diff --git a/src/rm_simpal_move/README.md b/src/rm_simpal_move/README.md new file mode 100644 index 0000000..5bad226 --- /dev/null +++ b/src/rm_simpal_move/README.md @@ -0,0 +1 @@ +ros2 topic pub /goal_pose rm_msgs/msg/GoalPose "{x: 0.0, y: 0.0, angle: 0.0, max_speed: 1.0, tolerance: 0.00001, rotor: true}" diff --git a/src/rm_simpal_move/include/rm_simpal_move/simple_move.hpp b/src/rm_simpal_move/include/rm_simpal_move/simple_move.hpp new file mode 100644 index 0000000..7a60c7e --- /dev/null +++ b/src/rm_simpal_move/include/rm_simpal_move/simple_move.hpp @@ -0,0 +1,66 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace rm_simpal_move { + +struct AHRS_Eulr_t { + float yaw; + float rol; + float pit; +}; + +struct Goal_t { + float x; + float y; + float angle; + float max_speed; + float tolerance; + bool rotor; +}; + +class RMSimpleMove : public rclcpp::Node { +public: + RMSimpleMove(const rclcpp::NodeOptions &options); + ~RMSimpleMove() override; + +private: + void timer_callback(); + void goal_pose_callback(const rm_msgs::msg::MoveGoal::SharedPtr msg); + int8_t AHRS_GetEulr(AHRS_Eulr_t *eulr, const geometry_msgs::msg::Quaternion &quat); + float calc_linear_velocity(float distance, float max_speed); + float calc_angular_velocity(float yaw, float target_yaw); + bool is_goal_reached(float x, float y, float tolerance); + + tf2_ros::Buffer tf_buffer_; + tf2_ros::TransformListener tf_listener_; + std::shared_ptr tf_broadcaster_; + rclcpp::TimerBase::SharedPtr timer_; + rclcpp::Subscription::SharedPtr goal_pose_sub_; + rclcpp::Publisher::SharedPtr data_ai_pub_; + rclcpp::Publisher::SharedPtr data_nav_pub_; + rclcpp::Publisher::SharedPtr data_aim_pub_; + std::atomic running_; + std::thread timer_thread_; + std::atomic goal_reached_; + AHRS_Eulr_t current_eulr_; + Goal_t goal_pose_; +}; + +} // namespace rm_simpal_move + +RCLCPP_COMPONENTS_REGISTER_NODE(rm_simpal_move::RMSimpleMove) \ No newline at end of file diff --git a/src/rm_simpal_move/launch/simple_move.launch.py b/src/rm_simpal_move/launch/simple_move.launch.py new file mode 100644 index 0000000..ebbb9bb --- /dev/null +++ b/src/rm_simpal_move/launch/simple_move.launch.py @@ -0,0 +1,27 @@ +import os + +from ament_index_python.packages import get_package_share_directory +from launch import LaunchDescription +from launch_ros.actions import ComposableNodeContainer +from launch_ros.descriptions import ComposableNode + +def generate_launch_description(): + return LaunchDescription([ + ComposableNodeContainer( + name='simple_move_container', + namespace='', + package='rclcpp_components', + executable='component_container', + composable_node_descriptions=[ + ComposableNode( + package='rm_simpal_move', + plugin='rm_simpal_move::RMSimpleMove', + name='global_position_listener', + parameters=[ + {'use_sim_time': False} + ] + ), + ], + output='screen', + ), + ]) \ No newline at end of file diff --git a/src/rm_simpal_move/package.xml b/src/rm_simpal_move/package.xml new file mode 100644 index 0000000..3bfcb80 --- /dev/null +++ b/src/rm_simpal_move/package.xml @@ -0,0 +1,24 @@ + + + rm_simpal_move + 0.0.0 + TODO: Package description + robofish + TODO: License declaration + + ament_cmake + + rclcpp + tf2_ros + geometry_msgs + launch + launch_ros + rm_msgs + + ament_lint_auto + ament_lint_common + + + ament_cmake + + \ No newline at end of file diff --git a/src/rm_simpal_move/script/move_test.py b/src/rm_simpal_move/script/move_test.py new file mode 100644 index 0000000..5c8b582 --- /dev/null +++ b/src/rm_simpal_move/script/move_test.py @@ -0,0 +1,48 @@ +import rclpy +from rclpy.node import Node +from rm_msgs.msg import MoveGoal + +class GoalPosePublisher(Node): + def __init__(self): + super().__init__('goal_pose_publisher') + self.publisher_ = self.create_publisher(MoveGoal, 'move_goal', 10) + self.goal_poses = [ + {'x': 0.56, 'y': 3.960, 'angle': 0.0, 'max_speed': 10.0, 'tolerance': 0.1, 'rotor': False}, + {'x': 2.8, 'y': -2.6, 'angle': 0.0, 'max_speed': 10.0, 'tolerance': 0.1, 'rotor': False}, + {'x': 4.2, 'y': -1.6, 'angle': 0.0, 'max_speed': 10.0, 'tolerance': 0.1, 'rotor': False}, + {'x': 4.2, 'y': -1.6, 'angle': 0.0, 'max_speed': 10.0, 'tolerance': 0.1, 'rotor': True}, + ] + + def publish_goal_pose(self, index): + if index < 0 or index >= len(self.goal_poses): + self.get_logger().error('Invalid index') + return + + + goal_pose = MoveGoal() + goal_pose.x = self.goal_poses[index]['x'] + goal_pose.y = self.goal_poses[index]['y'] + goal_pose.angle = self.goal_poses[index]['angle'] + goal_pose.max_speed = self.goal_poses[index]['max_speed'] + goal_pose.tolerance = self.goal_poses[index]['tolerance'] + goal_pose.rotor = self.goal_poses[index]['rotor'] + + self.publisher_.publish(goal_pose) + self.get_logger().info(f'Published goal pose: {goal_pose}') + +def main(args=None): + rclpy.init(args=args) + node = GoalPosePublisher() + + try: + while rclpy.ok(): + index = int(input('Enter the index of the goal pose to publish: ')) + node.publish_goal_pose(index) + except KeyboardInterrupt: + pass + + node.destroy_node() + rclpy.shutdown() + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/src/rm_simpal_move/script/pub_goal.py b/src/rm_simpal_move/script/pub_goal.py new file mode 100644 index 0000000..515595d --- /dev/null +++ b/src/rm_simpal_move/script/pub_goal.py @@ -0,0 +1,184 @@ +import rclpy +from rclpy.node import Node +from rm_msgs.msg import MoveGoal + +class SingleGoalPublisher(Node): + def __init__(self): + super().__init__('single_goal_publisher') + self.publisher_ = self.create_publisher(MoveGoal, 'move_goal', 10) + + def publish_goal(self): + goal_pose = MoveGoal() + goal_pose.x = 0.5377 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + goal_pose.y = 3.96 + goal_pose.angle = 0.0 + goal_pose.max_speed = 10.0 + goal_pose.tolerance = 0.1 + goal_pose.rotor = False + + self.publisher_.publish(goal_pose) + self.get_logger().info(f'Published goal pose: x={goal_pose.x}, y={goal_pose.y}') + +def main(args=None): + rclpy.init(args=args) + node = SingleGoalPublisher() + + # 发布一次目标点 + node.publish_goal() + + # 等待一秒确保消息发送 + rclpy.spin_once(node, timeout_sec=1.0) + + node.destroy_node() + rclpy.shutdown() + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/src/rm_simpal_move/src/simple_move.cpp b/src/rm_simpal_move/src/simple_move.cpp new file mode 100644 index 0000000..f6a2e8f --- /dev/null +++ b/src/rm_simpal_move/src/simple_move.cpp @@ -0,0 +1,215 @@ +#include "rm_simpal_move/simple_move.hpp" + +namespace rm_simpal_move +{ + + /** + * @brief 获取欧拉角: + * @param eulr + * @param quat + * @return + */ + int8_t RMSimpleMove::AHRS_GetEulr(AHRS_Eulr_t *eulr, const geometry_msgs::msg::Quaternion &quat) + { + if (!eulr) + return -1; + + const float sinr_cosp = 2.0f * (quat.w * quat.x + quat.y * quat.z); + const float cosr_cosp = 1.0f - 2.0f * (quat.x * quat.x + quat.y * quat.y); + eulr->pit = atan2f(sinr_cosp, cosr_cosp); + + const float sinp = 2.0f * (quat.w * quat.y - quat.z * quat.x); + eulr->rol = fabsf(sinp) >= 1.0f ? copysignf(M_PI / 2.0f, sinp) : asinf(sinp); + + const float siny_cosp = 2.0f * (quat.w * quat.z + quat.x * quat.y); + const float cosy_cosp = 1.0f - 2.0f * (quat.y * quat.y + quat.z * quat.z); + eulr->yaw = atan2f(siny_cosp, cosy_cosp); + + return 0; + } + + /** + * @brief RMSimpleMove 构造函数 + */ + RMSimpleMove::RMSimpleMove(const rclcpp::NodeOptions &options) + : Node("global_position_listener", options), tf_buffer_(this->get_clock()), tf_listener_(tf_buffer_), running_(true), goal_reached_(false) + { + tf_broadcaster_ = std::make_shared(this); + timer_ = this->create_wall_timer(std::chrono::milliseconds(100), std::bind(&RMSimpleMove::timer_callback, this)); + goal_pose_sub_ = this->create_subscription("/move_goal", 10, std::bind(&RMSimpleMove::goal_pose_callback, this, std::placeholders::_1)); + data_ai_pub_ = this->create_publisher("/chassis/data_ai", 10); + data_nav_pub_ = this->create_publisher("/chassis/data_nav", 10); + data_aim_pub_ = this->create_publisher("/chassis/data_aim", 10); + RCLCPP_INFO(this->get_logger(), "RMSimpleMove 启动!!!"); + } + + /** + * @brief RMSimpleMove 析构函数 + */ + RMSimpleMove::~RMSimpleMove() + { + running_.store(false); + if (timer_thread_.joinable()) + { + timer_thread_.join(); + } + } + + /** + * @brief 定时器回调函数 + */ + + void RMSimpleMove::timer_callback() + { + /*获取当前base_link相对于map的坐标变换*/ + try + { + auto trans = tf_buffer_.lookupTransform("map", "base_link", tf2::TimePointZero); + AHRS_GetEulr(¤t_eulr_, trans.transform.rotation); + RCLCPP_INFO(this->get_logger(), "pitch=%f, roll=%f, yaw=%f", current_eulr_.pit, current_eulr_.rol, current_eulr_.yaw); + + // 发布目标点的 TF 变换 + geometry_msgs::msg::TransformStamped goal_transform; + goal_transform.header.stamp = this->get_clock()->now(); + goal_transform.header.frame_id = "map"; + goal_transform.child_frame_id = "goal_pose"; + goal_transform.transform.translation.x = goal_pose_.x; + goal_transform.transform.translation.y = goal_pose_.y; + goal_transform.transform.translation.z = 0.0; + goal_transform.transform.rotation.x = 0.0; + goal_transform.transform.rotation.y = 0.0; + goal_transform.transform.rotation.z = 0.0; + goal_transform.transform.rotation.w = 1.0; + + tf_broadcaster_->sendTransform(goal_transform); + + // 计算当前位置到goal_pose和base_link的坐标变换 + geometry_msgs::msg::TransformStamped goal_in_base_link; + goal_in_base_link = tf_buffer_.lookupTransform("base_link", "goal_pose", tf2::TimePointZero); + + float goal_x_in_base_link = goal_in_base_link.transform.translation.x; + float goal_y_in_base_link = goal_in_base_link.transform.translation.y; + + // 计算瞄准目标的角度差和距离 + float aim_yaw = atan2f(goal_y_in_base_link, goal_x_in_base_link); + float aim_distance = sqrtf(goal_x_in_base_link * goal_x_in_base_link + goal_y_in_base_link * goal_y_in_base_link); + + // 发布 DataAim 消息 + auto data_aim_msg = rm_msgs::msg::DataAim(); + data_aim_msg.yaw = aim_yaw; // x方向瞄准目标的偏差角度 + data_aim_msg.distance = aim_distance; // 到目标的距离 + data_aim_pub_->publish(data_aim_msg); + + // 发布 DataNav 消息 + auto data_nav_msg = rm_msgs::msg::DataNav(); + if (is_goal_reached(goal_x_in_base_link, goal_y_in_base_link, goal_pose_.tolerance)) + { + if (!goal_reached_) + { + data_nav_msg.reached = true; + goal_reached_ = true; + } + } + else + { + data_nav_msg.reached = false; + goal_reached_ = false; + } + // data_nav_msg.x = goal_x_in_base_link; + // data_nav_msg.y = goal_y_in_base_link; + //发布当前位置 + data_nav_msg.x = trans.transform.translation.x; + data_nav_msg.y = trans.transform.translation.y; + data_nav_msg.yaw = current_eulr_.yaw; + data_nav_pub_->publish(data_nav_msg); + // 发布 DataAI 消息 + auto data_ai_msg = rm_msgs::msg::DataAI(); + data_ai_msg.vx = -calc_linear_velocity(goal_y_in_base_link, goal_pose_.max_speed); + data_ai_msg.vy = calc_linear_velocity(goal_x_in_base_link, goal_pose_.max_speed); + data_ai_msg.yaw = -calc_angular_velocity(current_eulr_.yaw, goal_pose_.angle); + if (goal_pose_.rotor) + { + data_ai_msg.notice = 0b11000000; + } + else + { + data_ai_msg.notice = 0b00000000; + } + data_ai_pub_->publish(data_ai_msg); + + RCLCPP_INFO(this->get_logger(), "Goal pose relative to base_link: x=%f, y=%f, aim_yaw=%f, aim_distance=%f", + goal_x_in_base_link, goal_y_in_base_link, aim_yaw, aim_distance); + } + catch (const tf2::TransformException &ex) + { + RCLCPP_WARN(this->get_logger(), "Could not transform base_link to map: %s", ex.what()); + } + } + + + /** + * @brief 目标点回调函数 + * @param msg + */ + void RMSimpleMove::goal_pose_callback(const rm_msgs::msg::MoveGoal::SharedPtr msg) + { + goal_pose_.x = msg->x; + goal_pose_.y = msg->y; + goal_pose_.angle = msg->angle; + goal_pose_.max_speed = msg->max_speed; + goal_pose_.tolerance = msg->tolerance; + goal_pose_.rotor = msg->rotor; + RCLCPP_INFO(this->get_logger(), "Received goal pose: x=%f, y=%f, angle=%f", msg->x, msg->y, msg->angle); + } + + /** + * @brief 简单的线性速度计算 + * @param distance + * @param max_speed + * @return + */ + float RMSimpleMove::calc_linear_velocity(float distance, float max_speed) + { + float k_linear = 0.5f; + float velocity = k_linear * distance; + if (abs(velocity) > max_speed) + { + velocity = copysign(max_speed, velocity); + } + return velocity; + } + + /** + * @brief 简单的角速度计算 + * @param yaw + * @param target_yaw + * @return + */ + float RMSimpleMove::calc_angular_velocity(float yaw, float target_yaw) + { + // yaw范围是[-pi, pi],运动方向取最优方向 + float angle_diff = target_yaw - yaw; + if (angle_diff > M_PI) + { + angle_diff -= 2 * M_PI; + } + else if (angle_diff < -M_PI) + { + angle_diff += 2 * M_PI; + } + float k_angular = 0.001f; + return k_angular * angle_diff; + } + + /** + * @brief 判断是否到达目标点 + * @param x + * @param y + * @param tolerance + * @return + */ + bool RMSimpleMove::is_goal_reached(float x, float y, float tolerance) + { + return sqrt(x * x + y * y) < tolerance; + } +} // namespace rm_simpal_move \ No newline at end of file diff --git a/src/rm_simulation/livox_laser_simulation_RO2/CMakeLists.txt b/src/rm_simulation/livox_laser_simulation_RO2/CMakeLists.txt new file mode 100644 index 0000000..a6c1dad --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/CMakeLists.txt @@ -0,0 +1,59 @@ +cmake_minimum_required(VERSION 3.10) +project(ros2_livox_simulation) + +## Use C++14 +set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +## Export compile commands for clangd +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +####################### +## Find dependencies ## +####################### +find_package(ament_cmake_auto REQUIRED) +find_package(rclcpp REQUIRED) +find_package(gazebo_dev REQUIRED) +find_package(gazebo_ros REQUIRED) +find_package(sensor_msgs REQUIRED) +find_package(tf2_ros REQUIRED) +find_package(livox_ros_driver2 REQUIRED) +find_package(Boost REQUIRED COMPONENTS chrono) +ament_auto_find_build_dependencies() + +########### +## Build ## +########### + +include_directories( + include + ${GAZEBO_INCLUDE_DIRS} +) + +link_directories(${GAZEBO_LIBRARY_DIRS}) + +ament_auto_add_library(ros2_livox SHARED + src/livox_points_plugin.cpp + src/livox_ode_multiray_shape.cpp +) + +target_link_libraries(ros2_livox + RayPlugin + GpuRayPlugin + libprotobuf.so.9 + libboost_chrono.so.1.71.0 +) + +############# +## Testing ## +############# + +############# +## Install ## +############# + +ament_auto_package( + INSTALL_TO_SHARE + scan_mode + urdf +) diff --git a/src/rm_simulation/livox_laser_simulation_RO2/LICENSE b/src/rm_simulation/livox_laser_simulation_RO2/LICENSE new file mode 100644 index 0000000..21c92da --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Ricardo Casimiro + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/rm_simulation/livox_laser_simulation_RO2/README.md b/src/rm_simulation/livox_laser_simulation_RO2/README.md new file mode 100644 index 0000000..31f0bf2 --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/README.md @@ -0,0 +1,30 @@ +# livox_laser_simulation for RO2 +this is a ros2 port of the original repo: https://github.com/Livox-SDK/livox_laser_simulation. + +tested in ros2 foxy and humble. + +### Usage +1. clone this repo in your ros2 workspace +``` +git clone https://github.com/stm32f303ret6/livox_laser_simulation_RO2.git +``` +2. build your ros2 workspace (if there are warnings that do not allow the compilation, run the build again and you will see that the error disappears) +``` +colcon build && source install/setup.bash +``` +3. include the lidar sensor in your URDF file, for example: +``` + +``` +4. attach the sensor to your robot in the URDF (or xacro) file, for example: +``` + + + +``` +you need to specify the parent link (usually base_link) + +that's it. the example that i gave you is for mid70, but you can use mid40, mid70, mid360 and so on. + +thanks to the original repo, you can find more info in it. + diff --git a/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/csv_reader.hpp b/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/csv_reader.hpp new file mode 100644 index 0000000..a739b4b --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/csv_reader.hpp @@ -0,0 +1,59 @@ +// +// Created by lfc on 2021/3/1. +// + +#ifndef SRC_GAZEBO_CSV_READER_HPP +#define SRC_GAZEBO_CSV_READER_HPP + +#include +#include +#include +#include +#include + +class CsvReader +{ +public: + static bool ReadCsvFile(std::string file_name, std::vector> &datas) + { + std::fstream file_stream; + file_stream.open(file_name, std::ios::in); + if (file_stream.is_open()) + { + std::string header; + std::getline(file_stream, header, '\n'); + while (!file_stream.eof()) + { + std::string line_str; + std::getline(file_stream, line_str, '\n'); + std::stringstream line_stream; + line_stream << line_str; + std::vector data; + try + { + while (!line_stream.eof()) + { + std::string value; + std::getline(line_stream, value, ','); + data.push_back(std::stod(value)); + } + } + catch (...) + { + std::cerr << "cannot convert str:" << line_str << "\n"; + continue; + } + datas.push_back(data); + } + std::cerr << "data size:" << datas.size() << "\n"; + return true; + } + else + { + std::cerr << "cannot read csv file!" << file_name << "\n"; + } + return false; + } +}; + +#endif // SRC_GAZEBO_CSV_READER_HPP diff --git a/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/livox_ode_multiray_shape.h b/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/livox_ode_multiray_shape.h new file mode 100644 index 0000000..e41ed2c --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/livox_ode_multiray_shape.h @@ -0,0 +1,53 @@ +// +// Created by lfc on 2021/2/28. +// + +#ifndef SRC_GAZEBO_LIVOX_ODE_MULTIRAY_SHAPE_H +#define SRC_GAZEBO_LIVOX_ODE_MULTIRAY_SHAPE_H +#include +#include +#include +#include + +namespace gazebo{ +namespace physics{ +class GZ_PHYSICS_VISIBLE LivoxOdeMultiRayShape : public MultiRayShape{ + /// \brief Constructor. + /// \param[in] _parent Parent Collision. + public: explicit LivoxOdeMultiRayShape(CollisionPtr _parent); + + /// \brief Destructor. + public: virtual ~LivoxOdeMultiRayShape(); + + // Documentation inherited. + public: virtual void UpdateRays(); + + public: virtual void Init(); + + public: std::vector &RayShapes(){return rays;} + /// \brief Ray-intersection callback. + /// \param[in] _data Pointer to user data. + /// \param[in] _o1 First geom to check for collisions. + /// \param[in] _o2 Second geom to check for collisions. + private: static void UpdateCallback(void *_data, dGeomID _o1, + dGeomID _o2); + + /// \brief Add a ray to the collision. + /// \param[in] _start Start of a ray. + /// \param[in] _end End of a ray. + public: void AddRay(const ignition::math::Vector3d &_start, + const ignition::math::Vector3d &_end); + /// \brief Space to contain the ray space, for efficiency. + private: dSpaceID superSpaceId; + + /// \brief Ray space for collision detector. + private: dSpaceID raySpaceId; + + private: + std::vector livoxRays; +}; +} +} + + +#endif // SRC_GAZEBO_LIVOX_ODE_MULTIRAY_SHAPE_H diff --git a/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/livox_points_plugin.h b/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/livox_points_plugin.h new file mode 100644 index 0000000..831d893 --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/include/ros2_livox/livox_points_plugin.h @@ -0,0 +1,121 @@ +// +// Created by lfc on 2021/2/28. +// + +#ifndef SRC_GAZEBO_LIVOX_POINTS_PLUGIN_H +#define SRC_GAZEBO_LIVOX_POINTS_PLUGIN_H + +#include +#include +#include +#include "sensor_msgs/msg/point_cloud2.hpp" +#include + +#include "livox_ode_multiray_shape.h" + +namespace gazebo +{ + struct AviaRotateInfo + { + double time; + double azimuth; + double zenith; + }; + + + class LivoxPointsPlugin : public RayPlugin + { + public: + LivoxPointsPlugin(); + + virtual ~LivoxPointsPlugin(); + + void Load(sensors::SensorPtr _parent, sdf::ElementPtr _sdf); + + private: + ignition::math::Angle AngleMin() const; + + ignition::math::Angle AngleMax() const; + + double GetAngleResolution() const GAZEBO_DEPRECATED(7.0); + + double AngleResolution() const; + + double GetRangeMin() const GAZEBO_DEPRECATED(7.0); + + double RangeMin() const; + + double GetRangeMax() const GAZEBO_DEPRECATED(7.0); + + double RangeMax() const; + + double GetRangeResolution() const GAZEBO_DEPRECATED(7.0); + + double RangeResolution() const; + + int GetRayCount() const GAZEBO_DEPRECATED(7.0); + + int RayCount() const; + + int GetRangeCount() const GAZEBO_DEPRECATED(7.0); + + int RangeCount() const; + + int GetVerticalRayCount() const GAZEBO_DEPRECATED(7.0); + + int VerticalRayCount() const; + + int GetVerticalRangeCount() const GAZEBO_DEPRECATED(7.0); + + int VerticalRangeCount() const; + + ignition::math::Angle VerticalAngleMin() const; + + ignition::math::Angle VerticalAngleMax() const; + + double GetVerticalAngleResolution() const GAZEBO_DEPRECATED(7.0); + + double VerticalAngleResolution() const; + + protected: + virtual void OnNewLaserScans(); + + private: + void InitializeRays(std::vector> &points_pair, + boost::shared_ptr &ray_shape); + + void InitializeScan(msgs::LaserScan *&scan); + + void SendRosTf(const ignition::math::Pose3d &pose, const std::string &father_frame, const std::string &child_frame); + + boost::shared_ptr rayShape; + gazebo::physics::CollisionPtr laserCollision; + physics::EntityPtr parentEntity; + transport::PublisherPtr scanPub; + + sdf::ElementPtr sdfPtr; + transport::NodePtr node; + msgs::LaserScanStamped laserMsg; + gazebo::sensors::SensorPtr raySensor; + std::vector aviaInfos; + + gazebo_ros::Node::SharedPtr node_; + rclcpp::Publisher::SharedPtr cloud2_pub; + rclcpp::Publisher::SharedPtr custom_pub; + + std::string parent_name; + std::string child_name; + int64_t samplesStep = 0; + int64_t currStartIndex = 0; + int64_t maxPointSize = 1000; + int64_t downSample = 1; + + double maxDist = 400.0; + double minDist = 0.1; + }; + +} // namespace gazebo + +#endif // SRC_GAZEBO_LIVOX_POINTS_PLUGIN_H + + diff --git a/src/rm_simulation/livox_laser_simulation_RO2/package.xml b/src/rm_simulation/livox_laser_simulation_RO2/package.xml new file mode 100644 index 0000000..9c9f323 --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/package.xml @@ -0,0 +1,30 @@ + + + + ros2_livox_simulation + 0.0.0 + TODO: Package description + rsc + TODO: License declaration + + ament_cmake + + rclcpp + rclcpp_components + + gazebo + gazebo_ros + sensor_msgs + tf2_ros + geometry_msgs + livox_ros_driver2 + + ament_lint_auto + ament_lint_common + ament_cmake_clang_format + + + ament_cmake + + + diff --git a/src/rm_simulation/livox_laser_simulation_RO2/scan_mode/mid360.csv b/src/rm_simulation/livox_laser_simulation_RO2/scan_mode/mid360.csv new file mode 100644 index 0000000..536686c --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/scan_mode/mid360.csv @@ -0,0 +1,800001 @@ +Time/s,Azimuth/deg,Zenith/deg +1,268.99,37.838 +2,269,40.825 +3,269,43.581 +4,269,46.152 +5,267.82,37.84 +6,267.77,40.825 +7,267.72,43.58 +8,267.67,46.15 +9,266.65,37.845 +10,266.54,40.826 +11,266.44,43.578 +12,266.34,46.145 +13,265.48,37.852 +14,265.31,40.828 +15,265.15,43.576 +16,265.01,46.139 +17,264.31,37.861 +18,264.08,40.831 +19,263.87,43.573 +20,263.68,46.131 +21,263.15,37.873 +22,262.85,40.834 +23,262.59,43.569 +24,262.35,46.121 +25,261.98,37.887 +26,261.62,40.839 +27,261.31,43.565 +28,261.02,46.109 +29,260.81,37.904 +30,260.39,40.844 +31,260.03,43.56 +32,259.7,46.096 +33,259.63,37.923 +34,259.16,40.85 +35,258.75,43.555 +36,258.37,46.08 +37,258.46,37.945 +38,257.93,40.857 +39,257.47,43.549 +40,257.04,46.063 +41,257.29,37.969 +42,256.71,40.864 +43,256.18,43.542 +44,255.71,46.044 +45,256.12,37.995 +46,255.48,40.873 +47,254.9,43.535 +48,254.39,46.024 +49,254.95,38.024 +50,254.25,40.882 +51,253.62,43.528 +52,253.06,46.001 +53,253.77,38.055 +54,253.02,40.892 +55,252.34,43.519 +56,251.73,45.977 +57,252.6,38.088 +58,251.78,40.903 +59,251.06,43.511 +60,250.41,45.951 +61,251.42,38.124 +62,250.55,40.914 +63,249.78,43.501 +64,249.08,45.923 +65,250.24,38.161 +66,249.32,40.926 +67,248.5,43.492 +68,247.76,45.894 +69,249.07,38.202 +70,248.09,40.94 +71,247.22,43.481 +72,246.43,45.862 +73,247.89,38.244 +74,246.86,40.953 +75,245.94,43.47 +76,245.11,45.83 +77,246.71,38.288 +78,245.63,40.968 +79,244.66,43.459 +80,243.79,45.795 +81,245.53,38.335 +82,244.4,40.983 +83,243.39,43.447 +84,242.46,45.759 +85,244.34,38.384 +86,243.16,40.999 +87,242.11,43.434 +88,241.14,45.721 +89,243.16,38.434 +90,241.93,41.016 +91,240.83,43.421 +92,239.82,45.681 +93,241.97,38.487 +94,240.7,41.034 +95,239.55,43.408 +96,238.5,45.64 +97,240.79,38.542 +98,239.46,41.052 +99,238.27,43.394 +100,237.18,45.597 +101,239.6,38.599 +102,238.23,41.071 +103,237,43.379 +104,235.86,45.552 +105,238.41,38.658 +106,237,41.09 +107,235.72,43.364 +108,234.55,45.506 +109,237.22,38.719 +110,235.76,41.111 +111,234.44,43.349 +112,233.23,45.458 +113,236.03,38.781 +114,234.53,41.131 +115,233.17,43.333 +116,231.91,45.409 +117,234.83,38.846 +118,233.29,41.153 +119,231.89,43.317 +120,230.6,45.358 +121,233.64,38.912 +122,232.05,41.175 +123,230.61,43.3 +124,229.29,45.306 +125,232.44,38.98 +126,230.82,41.198 +127,229.34,43.282 +128,227.97,45.252 +129,231.24,39.049 +130,229.58,41.222 +131,228.06,43.265 +132,226.66,45.197 +133,230.04,39.121 +134,228.34,41.246 +135,226.79,43.246 +136,225.35,45.141 +137,228.84,39.194 +138,227.1,41.271 +139,225.52,43.228 +140,224.04,45.083 +141,227.63,39.268 +142,225.86,41.296 +143,224.24,43.209 +144,222.74,45.023 +145,226.43,39.344 +146,224.63,41.322 +147,222.97,43.19 +148,221.43,44.963 +149,225.22,39.422 +150,223.39,41.348 +151,221.7,43.17 +152,220.12,44.901 +153,224.01,39.501 +154,222.14,41.375 +155,220.42,43.15 +156,218.82,44.837 +157,222.79,39.581 +158,220.9,41.403 +159,219.15,43.129 +160,217.52,44.773 +161,221.58,39.662 +162,219.66,41.431 +163,217.88,43.108 +164,216.21,44.707 +165,220.36,39.745 +166,218.42,41.459 +167,216.61,43.087 +168,214.91,44.64 +169,219.15,39.83 +170,217.18,41.488 +171,215.34,43.066 +172,213.61,44.571 +173,217.93,39.915 +174,215.93,41.518 +175,214.07,43.044 +176,212.32,44.502 +177,216.7,40.001 +178,214.69,41.548 +179,212.8,43.022 +180,211.02,44.431 +181,215.48,40.089 +182,213.44,41.578 +183,211.53,43 +184,209.73,44.36 +185,214.25,40.177 +186,212.2,41.609 +187,210.27,42.977 +188,208.43,44.287 +189,213.03,40.267 +190,210.95,41.64 +191,209,42.954 +192,207.14,44.213 +193,211.8,40.358 +194,209.71,41.672 +195,207.73,42.931 +196,205.85,44.139 +197,210.56,40.449 +198,208.46,41.704 +199,206.46,42.907 +200,204.56,44.063 +201,209.33,40.541 +202,207.21,41.737 +203,205.2,42.884 +204,203.28,43.986 +205,208.09,40.634 +206,205.96,41.769 +207,203.93,42.86 +208,201.99,43.909 +209,206.85,40.728 +210,204.71,41.803 +211,202.67,42.836 +212,200.71,43.831 +213,205.61,40.822 +214,203.46,41.836 +215,201.4,42.812 +216,199.43,43.751 +217,204.37,40.917 +218,202.21,41.87 +219,200.14,42.787 +220,198.15,43.672 +221,203.13,41.013 +222,200.96,41.904 +223,198.88,42.763 +224,196.87,43.591 +225,201.88,41.109 +226,199.71,41.939 +227,197.62,42.738 +228,195.59,43.51 +229,200.63,41.206 +230,198.46,41.973 +231,196.35,42.713 +232,194.31,43.428 +233,199.38,41.303 +234,197.2,42.008 +235,195.09,42.688 +236,193.04,43.345 +237,198.13,41.4 +238,195.95,42.043 +239,193.83,42.663 +240,191.77,43.262 +241,196.88,41.498 +242,194.7,42.079 +243,192.57,42.638 +244,190.5,43.178 +245,195.62,41.596 +246,193.44,42.114 +247,191.31,42.613 +248,189.23,43.094 +249,194.36,41.695 +250,192.18,42.15 +251,190.05,42.588 +252,187.97,43.009 +253,193.1,41.793 +254,190.93,42.186 +255,188.8,42.563 +256,186.7,42.924 +257,191.84,41.892 +258,189.67,42.222 +259,187.54,42.538 +260,185.44,42.839 +261,190.57,41.99 +262,188.41,42.258 +263,186.28,42.512 +264,184.18,42.753 +265,189.31,42.089 +266,187.15,42.294 +267,185.03,42.487 +268,182.92,42.667 +269,188.04,42.188 +270,185.89,42.331 +271,183.77,42.462 +272,181.66,42.581 +273,186.77,42.287 +274,184.63,42.367 +275,182.52,42.437 +276,180.41,42.495 +277,185.49,42.385 +278,183.37,42.404 +279,181.26,42.412 +280,179.16,42.408 +281,184.22,42.484 +282,182.11,42.441 +283,180.01,42.387 +284,177.91,42.322 +285,182.94,42.582 +286,180.85,42.477 +287,178.75,42.362 +288,176.66,42.235 +289,181.67,42.68 +290,179.59,42.514 +291,177.5,42.337 +292,175.41,42.148 +293,180.39,42.778 +294,178.32,42.551 +295,176.25,42.312 +296,174.16,42.062 +297,179.11,42.875 +298,177.06,42.588 +299,175,42.288 +300,172.92,41.975 +301,177.82,42.972 +302,175.8,42.624 +303,173.75,42.263 +304,171.68,41.889 +305,176.54,43.068 +306,174.53,42.661 +307,172.5,42.239 +308,170.44,41.803 +309,175.25,43.165 +310,173.26,42.698 +311,171.25,42.215 +312,169.2,41.717 +313,173.96,43.26 +314,172,42.734 +315,170,42.191 +316,167.97,41.631 +317,172.67,43.355 +318,170.73,42.771 +319,168.75,42.167 +320,166.74,41.546 +321,171.38,43.45 +322,169.46,42.807 +323,167.5,42.144 +324,165.5,41.461 +325,170.09,43.544 +326,168.19,42.843 +327,166.26,42.121 +328,164.27,41.376 +329,168.79,43.637 +330,166.92,42.879 +331,165.01,42.098 +332,163.05,41.292 +333,167.5,43.729 +334,165.66,42.915 +335,163.77,42.075 +336,161.82,41.209 +337,166.2,43.821 +338,164.38,42.951 +339,162.52,42.053 +340,160.6,41.126 +341,164.9,43.912 +342,163.11,42.987 +343,161.28,42.031 +344,159.38,41.044 +345,163.6,44.002 +346,161.84,43.022 +347,160.03,42.01 +348,158.16,40.962 +349,162.3,44.091 +350,160.57,43.058 +351,158.79,41.988 +352,156.94,40.881 +353,160.99,44.179 +354,159.3,43.093 +355,157.54,41.967 +356,155.72,40.801 +357,159.69,44.267 +358,158.02,43.127 +359,156.3,41.947 +360,154.51,40.722 +361,158.38,44.353 +362,156.75,43.162 +363,155.06,41.926 +364,153.3,40.644 +365,157.07,44.439 +366,155.48,43.196 +367,153.82,41.907 +368,152.09,40.566 +369,155.76,44.523 +370,154.2,43.23 +371,152.58,41.887 +372,150.88,40.49 +373,154.45,44.606 +374,152.93,43.264 +375,151.34,41.868 +376,149.67,40.414 +377,153.14,44.689 +378,151.65,43.298 +379,150.1,41.85 +380,148.47,40.34 +381,151.83,44.77 +382,150.37,43.331 +383,148.86,41.832 +384,147.26,40.266 +385,150.51,44.85 +386,149.1,43.364 +387,147.62,41.814 +388,146.06,40.194 +389,149.2,44.928 +390,147.82,43.396 +391,146.38,41.797 +392,144.86,40.123 +393,147.88,45.006 +394,146.54,43.428 +395,145.14,41.781 +396,143.67,40.054 +397,146.56,45.082 +398,145.27,43.46 +399,143.9,41.764 +400,142.47,39.985 +401,145.25,45.157 +402,143.99,43.492 +403,142.67,41.749 +404,141.27,39.918 +405,143.93,45.231 +406,142.71,43.523 +407,141.43,41.734 +408,140.08,39.853 +409,142.61,45.303 +410,141.43,43.554 +411,140.19,41.719 +412,138.89,39.789 +413,141.28,45.374 +414,140.15,43.584 +415,138.96,41.706 +416,137.7,39.726 +417,139.96,45.443 +418,138.87,43.614 +419,137.72,41.692 +420,136.51,39.665 +421,138.64,45.511 +422,137.59,43.643 +423,136.49,41.679 +424,135.32,39.605 +425,137.31,45.578 +426,136.31,43.672 +427,135.25,41.667 +428,134.14,39.548 +429,135.99,45.643 +430,135.03,43.701 +431,134.02,41.656 +432,132.95,39.491 +433,134.66,45.707 +434,133.74,43.729 +435,132.78,41.645 +436,131.77,39.437 +437,133.34,45.769 +438,132.46,43.757 +439,131.55,41.635 +440,130.59,39.384 +441,132.01,45.83 +442,131.18,43.784 +443,130.31,41.625 +444,129.4,39.333 +445,130.68,45.889 +446,129.9,43.811 +447,129.08,41.616 +448,128.22,39.284 +449,129.35,45.947 +450,128.61,43.837 +451,127.85,41.608 +452,127.05,39.236 +453,128.02,46.003 +454,127.33,43.863 +455,126.61,41.6 +456,125.87,39.191 +457,126.69,46.057 +458,126.05,43.889 +459,125.38,41.593 +460,124.69,39.147 +461,125.36,46.11 +462,124.76,43.914 +463,124.15,41.587 +464,123.51,39.106 +465,124.03,46.161 +466,123.48,43.938 +467,122.92,41.581 +468,122.34,39.066 +469,122.7,46.211 +470,122.2,43.962 +471,121.68,41.577 +472,121.16,39.028 +473,121.37,46.258 +474,120.91,43.985 +475,120.45,41.572 +476,119.99,38.993 +477,120.04,46.304 +478,119.63,44.008 +479,119.22,41.569 +480,118.82,38.959 +481,118.7,46.349 +482,118.34,44.03 +483,117.99,41.566 +484,117.65,38.928 +485,117.37,46.392 +486,117.06,44.052 +487,116.76,41.564 +488,116.47,38.899 +489,116.04,46.433 +490,115.77,44.073 +491,115.52,41.563 +492,115.3,38.872 +493,114.7,46.472 +494,114.49,44.093 +495,114.29,41.563 +496,114.13,38.847 +497,113.37,46.51 +498,113.2,44.114 +499,113.06,41.563 +500,112.96,38.825 +501,112.04,46.545 +502,111.92,44.133 +503,111.83,41.564 +504,111.79,38.804 +505,110.7,46.579 +506,110.63,44.152 +507,110.6,41.566 +508,110.62,38.786 +509,109.37,46.612 +510,109.35,44.17 +511,109.37,41.568 +512,109.45,38.77 +513,108.03,46.642 +514,108.06,44.188 +515,108.13,41.572 +516,108.28,38.757 +517,106.7,46.671 +518,106.77,44.205 +519,106.9,41.576 +520,107.11,38.745 +521,105.36,46.698 +522,105.49,44.222 +523,105.67,41.581 +524,105.94,38.737 +525,104.03,46.723 +526,104.2,44.238 +527,104.44,41.587 +528,104.77,38.73 +529,102.7,46.746 +530,102.92,44.254 +531,103.21,41.593 +532,103.6,38.726 +533,101.36,46.768 +534,101.63,44.269 +535,101.98,41.6 +536,102.43,38.724 +537,100.03,46.787 +538,100.34,44.283 +539,100.74,41.608 +540,101.26,38.724 +541,98.694,46.805 +542,99.059,44.297 +543,99.511,41.617 +544,100.09,38.727 +545,97.361,46.821 +546,97.773,44.31 +547,98.279,41.627 +548,98.913,38.733 +549,96.028,46.836 +550,96.488,44.322 +551,97.046,41.637 +552,97.741,38.74 +553,94.694,46.848 +554,95.202,44.334 +555,95.813,41.649 +556,96.568,38.75 +557,93.362,46.859 +558,93.917,44.346 +559,94.58,41.661 +560,95.394,38.763 +561,92.029,46.868 +562,92.631,44.357 +563,93.347,41.673 +564,94.219,38.777 +565,90.697,46.875 +566,91.346,44.367 +567,92.113,41.687 +568,93.044,38.795 +569,89.366,46.88 +570,90.061,44.377 +571,90.879,41.701 +572,91.868,38.814 +573,88.034,46.884 +574,88.776,44.386 +575,89.645,41.717 +576,90.691,38.836 +577,86.704,46.885 +578,87.491,44.394 +579,88.41,41.733 +580,89.513,38.86 +581,85.374,46.885 +582,86.206,44.402 +583,87.175,41.749 +584,88.334,38.887 +585,84.044,46.883 +586,84.922,44.41 +587,85.94,41.767 +588,87.153,38.916 +589,82.715,46.88 +590,83.637,44.416 +591,84.705,41.785 +592,85.972,38.947 +593,81.387,46.874 +594,82.353,44.423 +595,83.469,41.804 +596,84.789,38.98 +597,80.059,46.867 +598,81.069,44.428 +599,82.232,41.824 +600,83.605,39.016 +601,78.732,46.858 +602,79.786,44.433 +603,80.996,41.845 +604,82.42,39.054 +605,77.406,46.848 +606,78.502,44.438 +607,79.758,41.866 +608,81.233,39.095 +609,76.08,46.835 +610,77.219,44.442 +611,78.521,41.888 +612,80.045,39.137 +613,74.755,46.821 +614,75.936,44.445 +615,77.283,41.911 +616,78.856,39.182 +617,73.431,46.806 +618,74.653,44.448 +619,76.044,41.934 +620,77.664,39.229 +621,72.108,46.788 +622,73.371,44.451 +623,74.805,41.959 +624,76.472,39.278 +625,70.786,46.769 +626,72.089,44.453 +627,73.566,41.984 +628,75.277,39.33 +629,69.465,46.748 +630,70.807,44.454 +631,72.325,42.009 +632,74.081,39.383 +633,68.145,46.726 +634,69.526,44.455 +635,71.085,42.036 +636,72.883,39.438 +637,66.825,46.702 +638,68.245,44.455 +639,69.844,42.063 +640,71.684,39.496 +641,65.507,46.676 +642,66.964,44.455 +643,68.602,42.091 +644,70.482,39.555 +645,64.19,46.649 +646,65.684,44.454 +647,67.36,42.12 +648,69.279,39.617 +649,62.874,46.62 +650,64.404,44.453 +651,66.117,42.149 +652,68.074,39.68 +653,61.559,46.59 +654,63.124,44.451 +655,64.874,42.179 +656,66.867,39.746 +657,60.245,46.558 +658,61.845,44.449 +659,63.63,42.209 +660,65.658,39.813 +661,58.932,46.525 +662,60.566,44.446 +663,62.385,42.24 +664,64.447,39.882 +665,57.621,46.49 +666,59.288,44.443 +667,61.14,42.272 +668,63.234,39.953 +669,56.31,46.453 +670,58.01,44.439 +671,59.894,42.305 +672,62.019,40.026 +673,55.001,46.415 +674,56.733,44.435 +675,58.648,42.338 +676,60.802,40.1 +677,53.693,46.376 +678,55.455,44.431 +679,57.4,42.371 +680,59.583,40.177 +681,52.387,46.335 +682,54.179,44.426 +683,56.153,42.406 +684,58.362,40.254 +685,51.082,46.293 +686,52.903,44.421 +687,54.904,42.44 +688,57.139,40.334 +689,49.778,46.25 +690,51.627,44.415 +691,53.655,42.476 +692,55.913,40.415 +693,48.476,46.205 +694,50.352,44.409 +695,52.405,42.512 +696,54.686,40.497 +697,47.175,46.159 +698,49.077,44.402 +699,51.155,42.548 +700,53.456,40.581 +701,45.876,46.112 +702,47.803,44.395 +703,49.904,42.585 +704,52.224,40.667 +705,44.578,46.063 +706,46.529,44.388 +707,48.652,42.623 +708,50.99,40.753 +709,43.281,46.014 +710,45.256,44.38 +711,47.399,42.661 +712,49.754,40.841 +713,41.987,45.963 +714,43.983,44.372 +715,46.146,42.699 +716,48.515,40.931 +717,40.693,45.91 +718,42.711,44.364 +719,44.892,42.738 +720,47.275,41.021 +721,39.401,45.857 +722,41.439,44.356 +723,43.637,42.778 +724,46.032,41.113 +725,38.111,45.803 +726,40.168,44.347 +727,42.381,42.818 +728,44.787,41.206 +729,36.823,45.747 +730,38.897,44.337 +731,41.125,42.858 +732,43.54,41.3 +733,35.536,45.691 +734,37.627,44.328 +735,39.868,42.899 +736,42.29,41.396 +737,34.251,45.633 +738,36.358,44.318 +739,38.611,42.94 +740,41.039,41.492 +741,32.967,45.575 +742,35.089,44.308 +743,37.352,42.982 +744,39.785,41.589 +745,31.685,45.516 +746,33.821,44.298 +747,36.093,43.024 +748,38.529,41.687 +749,30.405,45.455 +750,32.553,44.287 +751,34.833,43.066 +752,37.271,41.786 +753,29.127,45.394 +754,31.285,44.276 +755,33.572,43.109 +756,36.011,41.886 +757,27.85,45.332 +758,30.019,44.265 +759,32.311,43.152 +760,34.748,41.986 +761,26.575,45.269 +762,28.753,44.254 +763,31.049,43.195 +764,33.484,42.087 +765,25.302,45.206 +766,27.487,44.243 +767,29.786,43.239 +768,32.217,42.189 +769,24.031,45.141 +770,26.222,44.231 +771,28.522,43.283 +772,30.948,42.292 +773,22.761,45.076 +774,24.958,44.22 +775,27.258,43.327 +776,29.677,42.395 +777,21.494,45.011 +778,23.694,44.208 +779,25.993,43.371 +780,28.404,42.498 +781,20.228,44.945 +782,22.431,44.196 +783,24.727,43.416 +784,27.129,42.602 +785,18.964,44.878 +786,21.168,44.184 +787,23.46,43.461 +788,25.852,42.707 +789,17.702,44.81 +790,19.906,44.172 +791,22.193,43.506 +792,24.573,42.812 +793,16.442,44.743 +794,18.645,44.159 +795,20.925,43.551 +796,23.292,42.917 +797,15.184,44.674 +798,17.384,44.147 +799,19.656,43.597 +800,22.009,43.022 +801,13.927,44.606 +802,16.123,44.135 +803,18.387,43.643 +804,20.723,43.128 +805,12.673,44.536 +806,14.864,44.122 +807,17.116,43.688 +808,19.436,43.234 +809,11.42,44.467 +810,13.605,44.11 +811,15.845,43.734 +812,18.147,43.34 +813,10.169,44.397 +814,12.346,44.097 +815,14.573,43.78 +816,16.856,43.446 +817,8.9207,44.327 +818,11.088,44.085 +819,13.301,43.827 +820,15.563,43.552 +821,7.6738,44.257 +822,9.8306,44.072 +823,12.028,43.873 +824,14.269,43.658 +825,6.4289,44.187 +826,8.5738,44.06 +827,10.754,43.919 +828,12.972,43.764 +829,5.1859,44.116 +830,7.3175,44.047 +831,9.4795,43.966 +832,11.674,43.87 +833,3.9448,44.046 +834,6.0618,44.035 +835,8.2043,44.012 +836,10.374,43.976 +837,2.7057,43.975 +838,4.8067,44.023 +839,6.9284,44.058 +840,9.072,44.082 +841,1.4684,43.905 +842,3.5522,44.011 +843,5.6518,44.105 +844,7.7684,44.187 +845,0.23312,43.834 +846,2.2981,43.999 +847,4.3745,44.151 +848,6.4632,44.292 +849,359,43.764 +850,1.0447,43.987 +851,3.0966,44.198 +852,5.1562,44.397 +853,357.77,43.694 +854,359.79,43.975 +855,1.818,44.244 +856,3.8476,44.501 +857,356.54,43.624 +858,358.54,43.963 +859,0.53879,44.29 +860,2.5375,44.605 +861,355.31,43.554 +862,357.29,43.952 +863,359.26,44.337 +864,1.2257,44.709 +865,354.08,43.485 +866,356.04,43.94 +867,357.98,44.383 +868,359.91,44.812 +869,352.86,43.415 +870,354.79,43.929 +871,356.7,44.429 +872,358.6,44.914 +873,351.64,43.347 +874,353.54,43.918 +875,355.42,44.475 +876,357.28,45.016 +877,350.42,43.278 +878,352.29,43.908 +879,354.13,44.521 +880,355.96,45.118 +881,349.2,43.21 +882,351.04,43.897 +883,352.85,44.567 +884,354.64,45.218 +885,347.98,43.143 +886,349.79,43.887 +887,351.57,44.612 +888,353.32,45.318 +889,346.77,43.076 +890,348.54,43.877 +891,350.28,44.658 +892,352,45.418 +893,345.56,43.01 +894,347.29,43.867 +895,349,44.703 +896,350.68,45.516 +897,344.34,42.944 +898,346.04,43.858 +899,347.71,44.748 +900,349.35,45.614 +901,343.13,42.879 +902,344.8,43.849 +903,346.43,44.793 +904,348.03,45.711 +905,341.93,42.815 +906,343.55,43.84 +907,345.14,44.837 +908,346.7,45.807 +909,340.72,42.751 +910,342.3,43.832 +911,343.85,44.882 +912,345.37,45.902 +913,339.51,42.689 +914,341.06,43.824 +915,342.57,44.926 +916,344.04,45.996 +917,338.31,42.627 +918,339.81,43.816 +919,341.28,44.97 +920,342.71,46.089 +921,337.11,42.566 +922,338.57,43.809 +923,339.99,45.013 +924,341.38,46.181 +925,335.91,42.506 +926,337.32,43.802 +927,338.7,45.056 +928,340.05,46.272 +929,334.71,42.448 +930,336.08,43.795 +931,337.41,45.099 +932,338.72,46.362 +933,333.51,42.39 +934,334.84,43.789 +935,336.12,45.142 +936,337.38,46.451 +937,332.32,42.333 +938,333.59,43.783 +939,334.83,45.185 +940,336.04,46.539 +941,331.12,42.277 +942,332.35,43.778 +943,333.54,45.227 +944,334.71,46.626 +945,329.93,42.223 +946,331.11,43.773 +947,332.25,45.268 +948,333.37,46.711 +949,328.74,42.17 +950,329.86,43.769 +951,330.96,45.31 +952,332.03,46.795 +953,327.55,42.118 +954,328.62,43.765 +955,329.67,45.351 +956,330.69,46.878 +957,326.36,42.067 +958,327.38,43.762 +959,328.38,45.391 +960,329.35,46.96 +961,325.17,42.018 +962,326.14,43.759 +963,327.08,45.431 +964,328.01,47.04 +965,323.99,41.97 +966,324.9,43.757 +967,325.79,45.471 +968,326.67,47.12 +969,322.8,41.923 +970,323.66,43.755 +971,324.5,45.511 +972,325.33,47.197 +973,321.62,41.878 +974,322.41,43.754 +975,323.2,45.55 +976,323.99,47.274 +977,320.43,41.835 +978,321.17,43.753 +979,321.91,45.588 +980,322.64,47.349 +981,319.25,41.793 +982,319.93,43.753 +983,320.62,45.626 +984,321.3,47.422 +985,318.07,41.752 +986,318.69,43.753 +987,319.32,45.664 +988,319.96,47.494 +989,316.89,41.713 +990,317.45,43.754 +991,318.03,45.701 +992,318.61,47.565 +993,315.71,41.676 +994,316.21,43.756 +995,316.73,45.738 +996,317.27,47.634 +997,314.53,41.64 +998,314.97,43.758 +999,315.44,45.774 +1000,315.92,47.702 +1001,313.35,41.606 +1002,313.73,43.761 +1003,314.14,45.81 +1004,314.57,47.768 +1005,312.17,41.574 +1006,312.49,43.764 +1007,312.85,45.846 +1008,313.23,47.833 +1009,310.99,41.544 +1010,311.25,43.768 +1011,311.55,45.881 +1012,311.88,47.896 +1013,309.82,41.515 +1014,310.01,43.773 +1015,310.26,45.915 +1016,310.53,47.957 +1017,308.64,41.489 +1018,308.77,43.778 +1019,308.96,45.949 +1020,309.19,48.017 +1021,307.46,41.464 +1022,307.53,43.784 +1023,307.66,45.982 +1024,307.84,48.075 +1025,306.29,41.441 +1026,306.29,43.79 +1027,306.37,46.015 +1028,306.49,48.132 +1029,305.11,41.419 +1030,305.05,43.798 +1031,305.07,46.047 +1032,305.14,48.187 +1033,303.93,41.4 +1034,303.81,43.805 +1035,303.77,46.079 +1036,303.8,48.24 +1037,302.76,41.383 +1038,302.57,43.814 +1039,302.48,46.111 +1040,302.45,48.292 +1041,301.58,41.368 +1042,301.33,43.823 +1043,301.18,46.141 +1044,301.1,48.342 +1045,300.41,41.355 +1046,300.09,43.833 +1047,299.88,46.172 +1048,299.75,48.391 +1049,299.23,41.343 +1050,298.85,43.844 +1051,298.59,46.201 +1052,298.41,48.438 +1053,298.06,41.334 +1054,297.61,43.855 +1055,297.29,46.23 +1056,297.06,48.483 +1057,296.88,41.327 +1058,296.37,43.867 +1059,295.99,46.259 +1060,295.71,48.526 +1061,295.7,41.322 +1062,295.13,43.88 +1063,294.7,46.287 +1064,294.36,48.568 +1065,294.53,41.319 +1066,293.89,43.893 +1067,293.4,46.314 +1068,293.02,48.608 +1069,293.35,41.318 +1070,292.65,43.907 +1071,292.1,46.341 +1072,291.67,48.646 +1073,292.17,41.319 +1074,291.41,43.922 +1075,290.81,46.368 +1076,290.32,48.682 +1077,290.99,41.323 +1078,290.17,43.937 +1079,289.51,46.393 +1080,288.97,48.717 +1081,289.81,41.328 +1082,288.93,43.953 +1083,288.21,46.419 +1084,287.63,48.75 +1085,288.63,41.336 +1086,287.68,43.97 +1087,286.92,46.443 +1088,286.28,48.781 +1089,287.45,41.346 +1090,286.44,43.988 +1091,285.62,46.467 +1092,284.94,48.811 +1093,286.27,41.358 +1094,285.2,44.006 +1095,284.32,46.491 +1096,283.59,48.839 +1097,285.09,41.372 +1098,283.96,44.025 +1099,283.03,46.514 +1100,282.25,48.865 +1101,283.91,41.388 +1102,282.71,44.045 +1103,281.73,46.536 +1104,280.9,48.889 +1105,282.72,41.406 +1106,281.47,44.065 +1107,280.43,46.558 +1108,279.56,48.912 +1109,281.54,41.427 +1110,280.23,44.087 +1111,279.14,46.579 +1112,278.22,48.933 +1113,280.35,41.45 +1114,278.98,44.109 +1115,277.84,46.6 +1116,276.87,48.952 +1117,279.16,41.475 +1118,277.74,44.131 +1119,276.55,46.62 +1120,275.53,48.969 +1121,277.98,41.502 +1122,276.49,44.154 +1123,275.25,46.639 +1124,274.19,48.985 +1125,276.79,41.531 +1126,275.25,44.178 +1127,273.96,46.658 +1128,272.85,48.999 +1129,275.59,41.562 +1130,274,44.203 +1131,272.66,46.677 +1132,271.51,49.011 +1133,274.4,41.596 +1134,272.75,44.229 +1135,271.37,46.695 +1136,270.17,49.022 +1137,273.21,41.631 +1138,271.51,44.255 +1139,270.07,46.712 +1140,268.83,49.031 +1141,272.01,41.669 +1142,270.26,44.282 +1143,268.78,46.729 +1144,267.5,49.038 +1145,270.81,41.709 +1146,269.01,44.309 +1147,267.48,46.745 +1148,266.16,49.043 +1149,269.61,41.751 +1150,267.76,44.337 +1151,266.19,46.76 +1152,264.82,49.047 +1153,268.41,41.795 +1154,266.51,44.366 +1155,264.9,46.775 +1156,263.49,49.049 +1157,267.21,41.841 +1158,265.27,44.396 +1159,263.6,46.79 +1160,262.16,49.05 +1161,266.01,41.889 +1162,264.02,44.426 +1163,262.31,46.804 +1164,260.82,49.049 +1165,264.8,41.939 +1166,262.76,44.457 +1167,261.02,46.817 +1168,259.49,49.046 +1169,263.59,41.991 +1170,261.51,44.489 +1171,259.73,46.83 +1172,258.16,49.042 +1173,262.38,42.045 +1174,260.26,44.521 +1175,258.44,46.843 +1176,256.83,49.036 +1177,261.17,42.101 +1178,259.01,44.554 +1179,257.14,46.854 +1180,255.5,49.028 +1181,259.96,42.159 +1182,257.76,44.587 +1183,255.85,46.866 +1184,254.17,49.019 +1185,258.74,42.219 +1186,256.5,44.622 +1187,254.56,46.877 +1188,252.85,49.008 +1189,257.52,42.281 +1190,255.25,44.656 +1191,253.27,46.887 +1192,251.52,48.996 +1193,256.3,42.344 +1194,253.99,44.692 +1195,251.98,46.897 +1196,250.2,48.982 +1197,255.08,42.41 +1198,252.74,44.728 +1199,250.69,46.906 +1200,248.88,48.967 +1201,253.85,42.477 +1202,251.48,44.765 +1203,249.4,46.915 +1204,247.55,48.95 +1205,252.63,42.546 +1206,250.22,44.802 +1207,248.12,46.923 +1208,246.23,48.932 +1209,251.4,42.616 +1210,248.97,44.84 +1211,246.83,46.931 +1212,244.92,48.912 +1213,250.17,42.689 +1214,247.71,44.878 +1215,245.54,46.939 +1216,243.6,48.891 +1217,248.94,42.763 +1218,246.45,44.917 +1219,244.25,46.946 +1220,242.28,48.868 +1221,247.7,42.838 +1222,245.19,44.957 +1223,242.97,46.952 +1224,240.97,48.844 +1225,246.46,42.915 +1226,243.93,44.997 +1227,241.68,46.958 +1228,239.65,48.819 +1229,245.22,42.994 +1230,242.67,45.037 +1231,240.39,46.964 +1232,238.34,48.792 +1233,243.98,43.074 +1234,241.4,45.078 +1235,239.11,46.969 +1236,237.03,48.764 +1237,242.74,43.156 +1238,240.14,45.12 +1239,237.82,46.974 +1240,235.72,48.735 +1241,241.49,43.239 +1242,238.88,45.162 +1243,236.54,46.979 +1244,234.42,48.704 +1245,240.24,43.324 +1246,237.61,45.205 +1247,235.26,46.983 +1248,233.11,48.672 +1249,238.99,43.41 +1250,236.35,45.248 +1251,233.97,46.987 +1252,231.81,48.639 +1253,237.74,43.497 +1254,235.08,45.292 +1255,232.69,46.99 +1256,230.5,48.605 +1257,236.48,43.586 +1258,233.82,45.336 +1259,231.41,46.993 +1260,229.2,48.57 +1261,235.22,43.676 +1262,232.55,45.38 +1263,230.13,46.995 +1264,227.9,48.533 +1265,233.96,43.767 +1266,231.28,45.425 +1267,228.84,46.998 +1268,226.61,48.496 +1269,232.7,43.859 +1270,230.01,45.471 +1271,227.56,47 +1272,225.31,48.457 +1273,231.43,43.952 +1274,228.74,45.516 +1275,226.28,47.001 +1276,224.02,48.417 +1277,230.17,44.046 +1278,227.47,45.563 +1279,225,47.003 +1280,222.72,48.376 +1281,228.9,44.142 +1282,226.2,45.609 +1283,223.73,47.004 +1284,221.43,48.334 +1285,227.63,44.238 +1286,224.93,45.656 +1287,222.45,47.004 +1288,220.14,48.292 +1289,226.35,44.335 +1290,223.66,45.703 +1291,221.17,47.005 +1292,218.86,48.248 +1293,225.07,44.434 +1294,222.38,45.751 +1295,219.89,47.005 +1296,217.57,48.203 +1297,223.8,44.533 +1298,221.11,45.799 +1299,218.62,47.005 +1300,216.29,48.158 +1301,222.52,44.632 +1302,219.83,45.847 +1303,217.34,47.005 +1304,215,48.111 +1305,221.23,44.733 +1306,218.56,45.896 +1307,216.06,47.004 +1308,213.72,48.064 +1309,219.95,44.834 +1310,217.28,45.945 +1311,214.79,47.003 +1312,212.45,48.016 +1313,218.66,44.936 +1314,216,45.994 +1315,213.51,47.002 +1316,211.17,47.968 +1317,217.37,45.039 +1318,214.72,46.043 +1319,212.24,47.001 +1320,209.89,47.918 +1321,216.08,45.142 +1322,213.45,46.093 +1323,210.97,47 +1324,208.62,47.868 +1325,214.78,45.246 +1326,212.17,46.143 +1327,209.69,46.998 +1328,207.35,47.818 +1329,213.49,45.35 +1330,210.88,46.193 +1331,208.42,46.997 +1332,206.08,47.767 +1333,212.19,45.455 +1334,209.6,46.243 +1335,207.15,46.995 +1336,204.81,47.715 +1337,210.89,45.56 +1338,208.32,46.293 +1339,205.88,46.993 +1340,203.55,47.663 +1341,209.59,45.665 +1342,207.04,46.344 +1343,204.61,46.991 +1344,202.28,47.61 +1345,208.28,45.771 +1346,205.76,46.395 +1347,203.34,46.989 +1348,201.02,47.557 +1349,206.98,45.877 +1350,204.47,46.446 +1351,202.07,46.987 +1352,199.76,47.503 +1353,205.67,45.983 +1354,203.19,46.497 +1355,200.8,46.985 +1356,198.51,47.449 +1357,204.36,46.09 +1358,201.9,46.548 +1359,199.53,46.982 +1360,197.25,47.395 +1361,203.05,46.196 +1362,200.61,46.599 +1363,198.27,46.98 +1364,196,47.34 +1365,201.73,46.303 +1366,199.33,46.651 +1367,197,46.978 +1368,194.74,47.285 +1369,200.42,46.409 +1370,198.04,46.702 +1371,195.73,46.975 +1372,193.49,47.23 +1373,199.1,46.516 +1374,196.75,46.754 +1375,194.47,46.973 +1376,192.24,47.175 +1377,197.78,46.623 +1378,195.46,46.805 +1379,193.2,46.97 +1380,191,47.12 +1381,196.46,46.729 +1382,194.17,46.857 +1383,191.94,46.968 +1384,189.75,47.064 +1385,195.14,46.836 +1386,192.88,46.909 +1387,190.67,46.966 +1388,188.51,47.009 +1389,193.81,46.942 +1390,191.59,46.96 +1391,189.41,46.963 +1392,187.27,46.953 +1393,192.49,47.048 +1394,190.3,47.012 +1395,188.15,46.961 +1396,186.03,46.897 +1397,191.16,47.154 +1398,189,47.063 +1399,186.88,46.959 +1400,184.79,46.842 +1401,189.83,47.259 +1402,187.71,47.115 +1403,185.62,46.957 +1404,183.56,46.787 +1405,188.5,47.364 +1406,186.42,47.166 +1407,184.36,46.955 +1408,182.32,46.731 +1409,187.17,47.469 +1410,185.12,47.218 +1411,183.1,46.953 +1412,181.09,46.676 +1413,185.83,47.573 +1414,183.83,47.269 +1415,181.84,46.951 +1416,179.86,46.622 +1417,184.5,47.677 +1418,182.53,47.32 +1419,180.58,46.95 +1420,178.63,46.567 +1421,183.16,47.781 +1422,181.23,47.371 +1423,179.32,46.948 +1424,177.41,46.513 +1425,181.82,47.883 +1426,179.94,47.422 +1427,178.06,46.947 +1428,176.18,46.459 +1429,180.48,47.986 +1430,178.64,47.473 +1431,176.8,46.946 +1432,174.96,46.406 +1433,179.14,48.087 +1434,177.34,47.524 +1435,175.54,46.945 +1436,173.74,46.353 +1437,177.8,48.188 +1438,176.04,47.574 +1439,174.28,46.944 +1440,172.52,46.3 +1441,176.46,48.289 +1442,174.74,47.625 +1443,173.03,46.944 +1444,171.3,46.248 +1445,175.11,48.388 +1446,173.44,47.675 +1447,171.77,46.944 +1448,170.08,46.197 +1449,173.77,48.487 +1450,172.14,47.725 +1451,170.51,46.944 +1452,168.87,46.146 +1453,172.42,48.585 +1454,170.84,47.774 +1455,169.26,46.944 +1456,167.66,46.095 +1457,171.07,48.683 +1458,169.54,47.824 +1459,168,46.945 +1460,166.44,46.046 +1461,169.72,48.779 +1462,168.24,47.873 +1463,166.74,46.946 +1464,165.23,45.997 +1465,168.37,48.874 +1466,166.94,47.922 +1467,165.49,46.947 +1468,164.03,45.949 +1469,167.02,48.969 +1470,165.64,47.971 +1471,164.23,46.948 +1472,162.82,45.902 +1473,165.67,49.063 +1474,164.33,48.02 +1475,162.98,46.95 +1476,161.61,45.855 +1477,164.32,49.155 +1478,163.03,48.068 +1479,161.73,46.952 +1480,160.41,45.81 +1481,162.97,49.247 +1482,161.72,48.116 +1483,160.47,46.955 +1484,159.2,45.765 +1485,161.61,49.338 +1486,160.42,48.163 +1487,159.22,46.958 +1488,158,45.721 +1489,160.26,49.427 +1490,159.12,48.21 +1491,157.96,46.961 +1492,156.8,45.679 +1493,158.9,49.516 +1494,157.81,48.257 +1495,156.71,46.965 +1496,155.6,45.637 +1497,157.54,49.603 +1498,156.51,48.304 +1499,155.46,46.969 +1500,154.4,45.596 +1501,156.19,49.689 +1502,155.2,48.35 +1503,154.21,46.973 +1504,153.21,45.557 +1505,154.83,49.774 +1506,153.89,48.396 +1507,152.95,46.978 +1508,152.01,45.518 +1509,153.47,49.858 +1510,152.59,48.442 +1511,151.7,46.983 +1512,150.81,45.481 +1513,152.11,49.941 +1514,151.28,48.487 +1515,150.45,46.989 +1516,149.62,45.445 +1517,150.75,50.022 +1518,149.97,48.532 +1519,149.2,46.995 +1520,148.43,45.41 +1521,149.39,50.102 +1522,148.67,48.576 +1523,147.95,47.002 +1524,147.24,45.377 +1525,148.03,50.181 +1526,147.36,48.62 +1527,146.7,47.009 +1528,146.04,45.345 +1529,146.67,50.258 +1530,146.05,48.663 +1531,145.44,47.016 +1532,144.85,45.314 +1533,145.31,50.335 +1534,144.74,48.707 +1535,144.19,47.024 +1536,143.66,45.284 +1537,143.94,50.409 +1538,143.43,48.749 +1539,142.94,47.033 +1540,142.47,45.256 +1541,142.58,50.483 +1542,142.12,48.792 +1543,141.69,47.042 +1544,141.28,45.229 +1545,141.22,50.555 +1546,140.82,48.833 +1547,140.44,47.052 +1548,140.1,45.204 +1549,139.86,50.625 +1550,139.51,48.875 +1551,139.19,47.062 +1552,138.91,45.181 +1553,138.49,50.694 +1554,138.2,48.916 +1555,137.94,47.072 +1556,137.72,45.158 +1557,137.13,50.762 +1558,136.89,48.956 +1559,136.69,47.083 +1560,136.53,45.138 +1561,135.77,50.828 +1562,135.58,48.996 +1563,135.44,47.095 +1564,135.35,45.119 +1565,134.4,50.893 +1566,134.27,49.035 +1567,134.19,47.107 +1568,134.16,45.101 +1569,133.04,50.956 +1570,132.96,49.074 +1571,132.93,47.12 +1572,132.98,45.085 +1573,131.68,51.018 +1574,131.65,49.113 +1575,131.68,47.133 +1576,131.79,45.071 +1577,130.31,51.078 +1578,130.34,49.151 +1579,130.43,47.147 +1580,130.6,45.059 +1581,128.95,51.137 +1582,129.03,49.188 +1583,129.18,47.162 +1584,129.42,45.048 +1585,127.59,51.194 +1586,127.72,49.225 +1587,127.93,47.177 +1588,128.23,45.039 +1589,126.22,51.249 +1590,126.41,49.262 +1591,126.68,47.192 +1592,127.05,45.031 +1593,124.86,51.303 +1594,125.1,49.298 +1595,125.43,47.209 +1596,125.86,45.026 +1597,123.5,51.356 +1598,123.79,49.333 +1599,124.18,47.225 +1600,124.67,45.022 +1601,122.13,51.407 +1602,122.48,49.368 +1603,122.92,47.243 +1604,123.49,45.02 +1605,120.77,51.456 +1606,121.17,49.402 +1607,121.67,47.261 +1608,122.3,45.02 +1609,119.41,51.503 +1610,119.86,49.436 +1611,120.42,47.279 +1612,121.11,45.021 +1613,118.05,51.549 +1614,118.55,49.469 +1615,119.17,47.299 +1616,119.93,45.025 +1617,116.68,51.594 +1618,117.24,49.502 +1619,117.91,47.318 +1620,118.74,45.03 +1621,115.32,51.637 +1622,115.93,49.534 +1623,116.66,47.339 +1624,117.55,45.037 +1625,113.96,51.678 +1626,114.62,49.566 +1627,115.41,47.36 +1628,116.36,45.046 +1629,112.6,51.717 +1630,113.31,49.597 +1631,114.16,47.382 +1632,115.17,45.057 +1633,111.24,51.755 +1634,112,49.628 +1635,112.9,47.404 +1636,113.98,45.069 +1637,109.88,51.791 +1638,110.69,49.658 +1639,111.65,47.427 +1640,112.79,45.084 +1641,108.52,51.826 +1642,109.38,49.687 +1643,110.39,47.451 +1644,111.59,45.1 +1645,107.17,51.859 +1646,108.08,49.716 +1647,109.14,47.475 +1648,110.4,45.119 +1649,105.81,51.89 +1650,106.77,49.745 +1651,107.88,47.5 +1652,109.2,45.139 +1653,104.45,51.92 +1654,105.46,49.773 +1655,106.63,47.525 +1656,108.01,45.161 +1657,103.09,51.948 +1658,104.15,49.8 +1659,105.37,47.551 +1660,106.81,45.185 +1661,101.74,51.974 +1662,102.84,49.827 +1663,104.12,47.578 +1664,105.61,45.211 +1665,100.38,51.999 +1666,101.53,49.853 +1667,102.86,47.605 +1668,104.41,45.239 +1669,99.03,52.022 +1670,100.23,49.878 +1671,101.6,47.633 +1672,103.21,45.269 +1673,97.677,52.044 +1674,98.918,49.904 +1675,100.34,47.662 +1676,102.01,45.301 +1677,96.324,52.063 +1678,97.61,49.928 +1679,99.086,47.691 +1680,100.81,45.334 +1681,94.973,52.082 +1682,96.303,49.952 +1683,97.827,47.72 +1684,99.6,45.37 +1685,93.622,52.098 +1686,94.997,49.976 +1687,96.568,47.751 +1688,98.394,45.407 +1689,92.272,52.113 +1690,93.69,49.999 +1691,95.308,47.782 +1692,97.185,45.446 +1693,90.924,52.127 +1694,92.384,50.021 +1695,94.048,47.814 +1696,95.976,45.488 +1697,89.576,52.139 +1698,91.078,50.043 +1699,92.788,47.846 +1700,94.764,45.531 +1701,88.229,52.149 +1702,89.773,50.064 +1703,91.526,47.879 +1704,93.551,45.575 +1705,86.883,52.158 +1706,88.468,50.085 +1707,90.264,47.912 +1708,92.336,45.622 +1709,85.539,52.165 +1710,87.163,50.105 +1711,89.002,47.946 +1712,91.119,45.67 +1713,84.195,52.171 +1714,85.858,50.125 +1715,87.739,47.981 +1716,89.9,45.72 +1717,82.853,52.175 +1718,84.554,50.145 +1719,86.475,48.016 +1720,88.68,45.772 +1721,81.512,52.178 +1722,83.251,50.163 +1723,85.211,48.052 +1724,87.457,45.826 +1725,80.172,52.179 +1726,81.947,50.182 +1727,83.946,48.088 +1728,86.233,45.882 +1729,78.833,52.178 +1730,80.644,50.199 +1731,82.681,48.125 +1732,85.006,45.939 +1733,77.496,52.177 +1734,79.342,50.217 +1735,81.415,48.162 +1736,83.778,45.998 +1737,76.159,52.173 +1738,78.04,50.233 +1739,80.148,48.2 +1740,82.547,46.058 +1741,74.824,52.169 +1742,76.738,50.25 +1743,78.88,48.239 +1744,81.315,46.121 +1745,73.491,52.163 +1746,75.437,50.266 +1747,77.612,48.278 +1748,80.08,46.184 +1749,72.158,52.155 +1750,74.136,50.281 +1751,76.343,48.317 +1752,78.843,46.25 +1753,70.828,52.146 +1754,72.836,50.296 +1755,75.074,48.358 +1756,77.604,46.317 +1757,69.498,52.136 +1758,71.536,50.31 +1759,73.804,48.398 +1760,76.363,46.386 +1761,68.17,52.124 +1762,70.237,50.324 +1763,72.533,48.439 +1764,75.12,46.456 +1765,66.843,52.111 +1766,68.938,50.338 +1767,71.261,48.481 +1768,73.874,46.527 +1769,65.518,52.097 +1770,67.64,50.351 +1771,69.989,48.523 +1772,72.626,46.601 +1773,64.195,52.081 +1774,66.342,50.364 +1775,68.716,48.566 +1776,71.376,46.675 +1777,62.873,52.064 +1778,65.044,50.376 +1779,67.442,48.609 +1780,70.124,46.751 +1781,61.552,52.046 +1782,63.748,50.388 +1783,66.167,48.652 +1784,68.869,46.828 +1785,60.233,52.027 +1786,62.451,50.399 +1787,64.892,48.696 +1788,67.612,46.907 +1789,58.915,52.006 +1790,61.155,50.41 +1791,63.616,48.741 +1792,66.353,46.987 +1793,57.6,51.985 +1794,59.86,50.421 +1795,62.339,48.786 +1796,65.091,47.068 +1797,56.285,51.962 +1798,58.565,50.431 +1799,61.061,48.831 +1800,63.828,47.151 +1801,54.973,51.938 +1802,57.271,50.441 +1803,59.783,48.877 +1804,62.561,47.235 +1805,53.662,51.913 +1806,55.977,50.451 +1807,58.504,48.923 +1808,61.293,47.32 +1809,52.353,51.887 +1810,54.684,50.46 +1811,57.224,48.97 +1812,60.022,47.406 +1813,51.045,51.859 +1814,53.392,50.469 +1815,55.943,49.016 +1816,58.749,47.493 +1817,49.739,51.831 +1818,52.1,50.477 +1819,54.662,49.064 +1820,57.473,47.581 +1821,48.435,51.802 +1822,50.808,50.486 +1823,53.38,49.111 +1824,56.196,47.671 +1825,47.133,51.772 +1826,49.517,50.494 +1827,52.097,49.159 +1828,54.916,47.761 +1829,45.832,51.741 +1830,48.227,50.501 +1831,50.813,49.208 +1832,53.633,47.852 +1833,44.533,51.709 +1834,46.937,50.509 +1835,49.529,49.256 +1836,52.348,47.944 +1837,43.236,51.676 +1838,45.648,50.516 +1839,48.243,49.305 +1840,51.061,48.037 +1841,41.941,51.642 +1842,44.359,50.522 +1843,46.957,49.354 +1844,49.772,48.131 +1845,40.647,51.607 +1846,43.071,50.529 +1847,45.671,49.404 +1848,48.481,48.226 +1849,39.355,51.572 +1850,41.784,50.535 +1851,44.383,49.454 +1852,47.187,48.322 +1853,38.065,51.536 +1854,40.497,50.541 +1855,43.095,49.504 +1856,45.891,48.418 +1857,36.777,51.499 +1858,39.211,50.547 +1859,41.805,49.554 +1860,44.593,48.515 +1861,35.491,51.462 +1862,37.925,50.553 +1863,40.515,49.605 +1864,43.292,48.612 +1865,34.207,51.423 +1866,36.64,50.558 +1867,39.225,49.655 +1868,41.99,48.71 +1869,32.924,51.385 +1870,35.355,50.563 +1871,37.933,49.706 +1872,40.685,48.809 +1873,31.643,51.345 +1874,34.071,50.568 +1875,36.641,49.758 +1876,39.378,48.908 +1877,30.365,51.305 +1878,32.788,50.573 +1879,35.348,49.809 +1880,38.069,49.008 +1881,29.088,51.265 +1882,31.505,50.578 +1883,34.054,49.86 +1884,36.758,49.108 +1885,27.812,51.224 +1886,30.223,50.583 +1887,32.76,49.912 +1888,35.445,49.209 +1889,26.539,51.182 +1890,28.941,50.587 +1891,31.465,49.964 +1892,34.129,49.31 +1893,25.268,51.14 +1894,27.66,50.591 +1895,30.169,50.016 +1896,32.812,49.411 +1897,23.998,51.098 +1898,26.38,50.596 +1899,28.872,50.068 +1900,31.493,49.512 +1901,22.731,51.055 +1902,25.1,50.6 +1903,27.575,50.12 +1904,30.172,49.614 +1905,21.465,51.013 +1906,23.82,50.604 +1907,26.277,50.173 +1908,28.848,49.716 +1909,20.201,50.969 +1910,22.542,50.608 +1911,24.978,50.225 +1912,27.523,49.818 +1913,18.939,50.926 +1914,21.263,50.612 +1915,23.678,50.277 +1916,26.196,49.92 +1917,17.679,50.882 +1918,19.986,50.616 +1919,22.378,50.33 +1920,24.868,50.023 +1921,16.42,50.838 +1922,18.709,50.619 +1923,21.077,50.382 +1924,23.537,50.125 +1925,15.164,50.794 +1926,17.432,50.623 +1927,19.776,50.435 +1928,22.204,50.227 +1929,13.909,50.75 +1930,16.156,50.627 +1931,18.473,50.488 +1932,20.87,50.33 +1933,12.656,50.706 +1934,14.881,50.631 +1935,17.17,50.54 +1936,19.534,50.432 +1937,11.405,50.662 +1938,13.606,50.635 +1939,15.867,50.593 +1940,18.197,50.534 +1941,10.156,50.618 +1942,12.331,50.639 +1943,14.563,50.645 +1944,16.857,50.636 +1945,8.9087,50.574 +1946,11.057,50.643 +1947,13.258,50.698 +1948,15.516,50.737 +1949,7.663,50.53 +1950,9.7838,50.647 +1951,11.952,50.75 +1952,14.174,50.839 +1953,6.4191,50.486 +1954,8.5108,50.651 +1955,10.646,50.803 +1956,12.83,50.94 +1957,5.177,50.442 +1958,7.2384,50.655 +1959,9.3393,50.855 +1960,11.484,51.041 +1961,3.9366,50.398 +1962,5.9665,50.659 +1963,8.032,50.907 +1964,10.137,51.142 +1965,2.6978,50.355 +1966,4.695,50.663 +1967,6.724,50.96 +1968,8.7882,51.242 +1969,1.4608,50.312 +1970,3.4241,50.668 +1971,5.4155,51.012 +1972,7.4382,51.342 +1973,0.22548,50.269 +1974,2.1536,50.672 +1975,4.1064,51.063 +1976,6.0868,51.441 +1977,358.99,50.227 +1978,0.88349,50.677 +1979,2.7967,51.115 +1980,4.734,51.54 +1981,357.76,50.185 +1982,359.61,50.682 +1983,1.4865,51.167 +1984,3.3799,51.638 +1985,356.53,50.143 +1986,358.34,50.687 +1987,0.17579,51.218 +1988,2.0245,51.736 +1989,355.3,50.102 +1990,357.08,50.692 +1991,358.86,51.27 +1992,0.66793,51.833 +1993,354.07,50.061 +1994,355.81,50.698 +1995,357.55,51.321 +1996,359.31,51.929 +1997,352.85,50.021 +1998,354.54,50.703 +1999,356.24,51.372 +2000,357.95,52.025 +2001,351.62,49.982 +2002,353.27,50.709 +2003,354.93,51.422 +2004,356.59,52.12 +2005,350.4,49.943 +2006,352,50.715 +2007,353.61,51.473 +2008,355.23,52.214 +2009,349.18,49.904 +2010,350.74,50.721 +2011,352.3,51.523 +2012,353.87,52.308 +2013,347.96,49.866 +2014,349.47,50.728 +2015,350.99,51.573 +2016,352.5,52.401 +2017,346.74,49.829 +2018,348.21,50.735 +2019,349.67,51.623 +2020,351.14,52.493 +2021,345.52,49.793 +2022,346.94,50.742 +2023,348.36,51.672 +2024,349.77,52.584 +2025,344.31,49.758 +2026,345.67,50.749 +2027,347.04,51.722 +2028,348.41,52.674 +2029,343.09,49.723 +2030,344.41,50.757 +2031,345.73,51.771 +2032,347.04,52.764 +2033,341.88,49.689 +2034,343.14,50.765 +2035,344.41,51.819 +2036,345.67,52.852 +2037,340.67,49.656 +2038,341.88,50.773 +2039,343.09,51.868 +2040,344.31,52.94 +2041,339.46,49.624 +2042,340.62,50.781 +2043,341.78,51.916 +2044,342.94,53.026 +2045,338.25,49.593 +2046,339.35,50.79 +2047,340.46,51.963 +2048,341.57,53.111 +2049,337.04,49.563 +2050,338.09,50.8 +2051,339.14,52.011 +2052,340.2,53.196 +2053,335.83,49.534 +2054,336.82,50.809 +2055,337.82,52.058 +2056,338.82,53.279 +2057,334.62,49.505 +2058,335.56,50.819 +2059,336.5,52.104 +2060,337.45,53.361 +2061,333.42,49.478 +2062,334.3,50.829 +2063,335.19,52.151 +2064,336.08,53.442 +2065,332.21,49.452 +2066,333.04,50.84 +2067,333.87,52.197 +2068,334.71,53.522 +2069,331.01,49.427 +2070,331.77,50.851 +2071,332.55,52.242 +2072,333.33,53.601 +2073,329.8,49.404 +2074,330.51,50.863 +2075,331.23,52.287 +2076,331.96,53.679 +2077,328.6,49.381 +2078,329.25,50.874 +2079,329.91,52.332 +2080,330.58,53.755 +2081,327.4,49.36 +2082,327.98,50.887 +2083,328.59,52.377 +2084,329.21,53.83 +2085,326.2,49.34 +2086,326.72,50.899 +2087,327.27,52.421 +2088,327.83,53.904 +2089,325,49.321 +2090,325.46,50.913 +2091,325.95,52.464 +2092,326.46,53.977 +2093,323.8,49.303 +2094,324.2,50.926 +2095,324.63,52.507 +2096,325.08,54.048 +2097,322.6,49.287 +2098,322.94,50.94 +2099,323.31,52.55 +2100,323.71,54.118 +2101,321.4,49.272 +2102,321.67,50.955 +2103,321.99,52.592 +2104,322.33,54.187 +2105,320.2,49.259 +2106,320.41,50.97 +2107,320.67,52.634 +2108,320.95,54.254 +2109,319,49.247 +2110,319.15,50.985 +2111,319.35,52.675 +2112,319.58,54.32 +2113,317.8,49.236 +2114,317.89,51.001 +2115,318.02,52.716 +2116,318.2,54.385 +2117,316.6,49.227 +2118,316.63,51.017 +2119,316.7,52.757 +2120,316.83,54.448 +2121,315.4,49.219 +2122,315.36,51.034 +2123,315.38,52.797 +2124,315.45,54.51 +2125,314.21,49.212 +2126,314.1,51.051 +2127,314.06,52.836 +2128,314.07,54.57 +2129,313.01,49.207 +2130,312.84,51.069 +2131,312.74,52.875 +2132,312.7,54.629 +2133,311.81,49.204 +2134,311.58,51.088 +2135,311.42,52.914 +2136,311.32,54.687 +2137,310.61,49.202 +2138,310.32,51.106 +2139,310.1,52.952 +2140,309.94,54.743 +2141,309.42,49.202 +2142,309.05,51.126 +2143,308.78,52.99 +2144,308.57,54.798 +2145,308.22,49.203 +2146,307.79,51.146 +2147,307.45,53.027 +2148,307.19,54.851 +2149,307.02,49.206 +2150,306.53,51.166 +2151,306.13,53.063 +2152,305.82,54.902 +2153,305.82,49.21 +2154,305.27,51.187 +2155,304.81,53.099 +2156,304.44,54.953 +2157,304.62,49.216 +2158,304,51.208 +2159,303.49,53.135 +2160,303.07,55.001 +2161,303.42,49.224 +2162,302.74,51.23 +2163,302.17,53.17 +2164,301.69,55.049 +2165,302.22,49.233 +2166,301.48,51.253 +2167,300.85,53.205 +2168,300.32,55.094 +2169,301.02,49.244 +2170,300.21,51.276 +2171,299.53,53.239 +2172,298.94,55.139 +2173,299.82,49.256 +2174,298.95,51.299 +2175,298.21,53.272 +2176,297.57,55.181 +2177,298.62,49.27 +2178,297.68,51.323 +2179,296.89,53.305 +2180,296.2,55.222 +2181,297.42,49.286 +2182,296.42,51.348 +2183,295.56,53.338 +2184,294.83,55.262 +2185,296.21,49.303 +2186,295.16,51.373 +2187,294.24,53.37 +2188,293.45,55.3 +2189,295.01,49.322 +2190,293.89,51.399 +2191,292.92,53.401 +2192,292.08,55.337 +2193,293.8,49.343 +2194,292.62,51.425 +2195,291.6,53.432 +2196,290.71,55.372 +2197,292.6,49.365 +2198,291.36,51.452 +2199,290.28,53.463 +2200,289.34,55.405 +2201,291.39,49.389 +2202,290.09,51.479 +2203,288.96,53.492 +2204,287.97,55.437 +2205,290.18,49.415 +2206,288.83,51.507 +2207,287.64,53.522 +2208,286.6,55.468 +2209,288.98,49.443 +2210,287.56,51.535 +2211,286.32,53.551 +2212,285.24,55.497 +2213,287.77,49.472 +2214,286.29,51.564 +2215,285.01,53.579 +2216,283.87,55.524 +2217,286.55,49.502 +2218,285.02,51.594 +2219,283.69,53.607 +2220,282.5,55.55 +2221,285.34,49.535 +2222,283.76,51.624 +2223,282.37,53.634 +2224,281.14,55.574 +2225,284.13,49.569 +2226,282.49,51.654 +2227,281.05,53.661 +2228,279.77,55.597 +2229,282.91,49.605 +2230,281.22,51.685 +2231,279.73,53.687 +2232,278.41,55.618 +2233,281.7,49.642 +2234,279.95,51.717 +2235,278.41,53.713 +2236,277.05,55.638 +2237,280.48,49.681 +2238,278.68,51.749 +2239,277.1,53.738 +2240,275.69,55.657 +2241,279.26,49.722 +2242,277.41,51.782 +2243,275.78,53.763 +2244,274.33,55.673 +2245,278.04,49.764 +2246,276.14,51.815 +2247,274.46,53.787 +2248,272.97,55.689 +2249,276.82,49.808 +2250,274.87,51.849 +2251,273.15,53.811 +2252,271.61,55.703 +2253,275.59,49.853 +2254,273.59,51.883 +2255,271.83,53.834 +2256,270.25,55.715 +2257,274.37,49.9 +2258,272.32,51.918 +2259,270.51,53.857 +2260,268.89,55.726 +2261,273.14,49.949 +2262,271.05,51.953 +2263,269.2,53.879 +2264,267.54,55.736 +2265,271.91,49.999 +2266,269.78,51.989 +2267,267.88,53.901 +2268,266.18,55.744 +2269,270.68,50.051 +2270,268.5,52.025 +2271,266.57,53.922 +2272,264.83,55.751 +2273,269.44,50.105 +2274,267.23,52.062 +2275,265.25,53.943 +2276,263.48,55.756 +2277,268.21,50.159 +2278,265.95,52.1 +2279,263.94,53.963 +2280,262.13,55.76 +2281,266.97,50.216 +2282,264.68,52.137 +2283,262.63,53.983 +2284,260.78,55.762 +2285,265.73,50.274 +2286,263.4,52.176 +2287,261.31,54.003 +2288,259.43,55.764 +2289,264.49,50.333 +2290,262.12,52.214 +2291,260,54.022 +2292,258.09,55.763 +2293,263.25,50.394 +2294,260.84,52.254 +2295,258.69,54.04 +2296,256.74,55.762 +2297,262.01,50.456 +2298,259.56,52.293 +2299,257.38,54.058 +2300,255.4,55.759 +2301,260.76,50.52 +2302,258.29,52.333 +2303,256.07,54.076 +2304,254.06,55.755 +2305,259.51,50.585 +2306,257.01,52.374 +2307,254.76,54.093 +2308,252.71,55.75 +2309,258.26,50.651 +2310,255.72,52.415 +2311,253.45,54.11 +2312,251.37,55.743 +2313,257.01,50.719 +2314,254.44,52.456 +2315,252.14,54.126 +2316,250.04,55.735 +2317,255.75,50.788 +2318,253.16,52.498 +2319,250.83,54.142 +2320,248.7,55.726 +2321,254.5,50.858 +2322,251.88,52.541 +2323,249.52,54.157 +2324,247.37,55.716 +2325,253.24,50.93 +2326,250.6,52.583 +2327,248.21,54.172 +2328,246.03,55.704 +2329,251.97,51.002 +2330,249.31,52.626 +2331,246.9,54.187 +2332,244.7,55.691 +2333,250.71,51.077 +2334,248.03,52.67 +2335,245.6,54.201 +2336,243.37,55.678 +2337,249.45,51.152 +2338,246.74,52.714 +2339,244.29,54.215 +2340,242.04,55.663 +2341,248.18,51.228 +2342,245.46,52.758 +2343,242.98,54.229 +2344,240.71,55.647 +2345,246.91,51.306 +2346,244.17,52.803 +2347,241.68,54.242 +2348,239.39,55.63 +2349,245.63,51.384 +2350,242.88,52.848 +2351,240.37,54.255 +2352,238.06,55.611 +2353,244.36,51.464 +2354,241.59,52.893 +2355,239.07,54.267 +2356,236.74,55.592 +2357,243.08,51.544 +2358,240.3,52.939 +2359,237.76,54.279 +2360,235.42,55.572 +2361,241.8,51.626 +2362,239.01,52.985 +2363,236.46,54.291 +2364,234.1,55.551 +2365,240.52,51.709 +2366,237.72,53.031 +2367,235.16,54.303 +2368,232.79,55.529 +2369,239.24,51.792 +2370,236.43,53.078 +2371,233.86,54.314 +2372,231.47,55.506 +2373,237.95,51.877 +2374,235.14,53.125 +2375,232.55,54.325 +2376,230.16,55.482 +2377,236.66,51.962 +2378,233.85,53.172 +2379,231.25,54.335 +2380,228.84,55.457 +2381,235.37,52.048 +2382,232.55,53.22 +2383,229.95,54.345 +2384,227.53,55.431 +2385,234.08,52.135 +2386,231.26,53.267 +2387,228.65,54.355 +2388,226.23,55.405 +2389,232.78,52.223 +2390,229.96,53.315 +2391,227.35,54.365 +2392,224.92,55.378 +2393,231.49,52.311 +2394,228.67,53.364 +2395,226.06,54.375 +2396,223.61,55.35 +2397,230.19,52.401 +2398,227.37,53.412 +2399,224.76,54.384 +2400,222.31,55.321 +2401,228.88,52.491 +2402,226.07,53.461 +2403,223.46,54.393 +2404,221.01,55.292 +2405,227.58,52.581 +2406,224.78,53.51 +2407,222.16,54.402 +2408,219.71,55.261 +2409,226.27,52.672 +2410,223.48,53.559 +2411,220.87,54.411 +2412,218.41,55.231 +2413,224.97,52.764 +2414,222.18,53.608 +2415,219.57,54.419 +2416,217.12,55.199 +2417,223.66,52.856 +2418,220.88,53.658 +2419,218.28,54.427 +2420,215.82,55.167 +2421,222.34,52.949 +2422,219.58,53.708 +2423,216.98,54.435 +2424,214.53,55.135 +2425,221.03,53.042 +2426,218.27,53.757 +2427,215.69,54.443 +2428,213.24,55.102 +2429,219.71,53.135 +2430,216.97,53.807 +2431,214.39,54.451 +2432,211.95,55.069 +2433,218.39,53.229 +2434,215.67,53.858 +2435,213.1,54.458 +2436,210.67,55.035 +2437,217.07,53.323 +2438,214.37,53.908 +2439,211.81,54.466 +2440,209.38,55 +2441,215.75,53.418 +2442,213.06,53.958 +2443,210.52,54.473 +2444,208.1,54.965 +2445,214.42,53.513 +2446,211.76,54.009 +2447,209.23,54.48 +2448,206.82,54.93 +2449,213.1,53.608 +2450,210.45,54.059 +2451,207.94,54.487 +2452,205.54,54.895 +2453,211.77,53.703 +2454,209.14,54.11 +2455,206.65,54.494 +2456,204.26,54.859 +2457,210.44,53.798 +2458,207.83,54.161 +2459,205.36,54.501 +2460,202.99,54.823 +2461,209.1,53.894 +2462,206.53,54.211 +2463,204.07,54.508 +2464,201.71,54.787 +2465,207.77,53.989 +2466,205.22,54.262 +2467,202.78,54.515 +2468,200.44,54.751 +2469,206.43,54.085 +2470,203.91,54.313 +2471,201.49,54.522 +2472,199.17,54.714 +2473,205.09,54.181 +2474,202.6,54.364 +2475,200.21,54.528 +2476,197.9,54.677 +2477,203.75,54.276 +2478,201.29,54.414 +2479,198.92,54.535 +2480,196.64,54.641 +2481,202.41,54.372 +2482,199.98,54.465 +2483,197.63,54.542 +2484,195.37,54.604 +2485,201.07,54.467 +2486,198.66,54.516 +2487,196.35,54.548 +2488,194.11,54.567 +2489,199.72,54.563 +2490,197.35,54.567 +2491,195.06,54.555 +2492,192.85,54.53 +2493,198.37,54.658 +2494,196.04,54.617 +2495,193.78,54.562 +2496,191.59,54.493 +2497,197.02,54.753 +2498,194.72,54.668 +2499,192.5,54.569 +2500,190.33,54.457 +2501,195.67,54.847 +2502,193.41,54.719 +2503,191.21,54.575 +2504,189.07,54.42 +2505,194.32,54.942 +2506,192.09,54.769 +2507,189.93,54.582 +2508,187.82,54.384 +2509,192.97,55.036 +2510,190.78,54.82 +2511,188.65,54.589 +2512,186.57,54.347 +2513,191.61,55.13 +2514,189.46,54.87 +2515,187.37,54.596 +2516,185.32,54.311 +2517,190.26,55.223 +2518,188.14,54.92 +2519,186.08,54.603 +2520,184.07,54.275 +2521,188.9,55.316 +2522,186.83,54.97 +2523,184.8,54.611 +2524,182.82,54.24 +2525,187.54,55.409 +2526,185.51,55.02 +2527,183.52,54.618 +2528,181.57,54.205 +2529,186.18,55.501 +2530,184.19,55.07 +2531,182.24,54.625 +2532,180.33,54.17 +2533,184.82,55.593 +2534,182.87,55.119 +2535,180.96,54.633 +2536,179.09,54.135 +2537,183.45,55.684 +2538,181.55,55.169 +2539,179.68,54.641 +2540,177.85,54.101 +2541,182.09,55.774 +2542,180.23,55.218 +2543,178.41,54.649 +2544,176.61,54.068 +2545,180.72,55.864 +2546,178.91,55.267 +2547,177.13,54.657 +2548,175.37,54.034 +2549,179.35,55.953 +2550,177.59,55.316 +2551,175.85,54.665 +2552,174.13,54.002 +2553,177.99,56.042 +2554,176.27,55.365 +2555,174.57,54.673 +2556,172.9,53.97 +2557,176.62,56.13 +2558,174.95,55.413 +2559,173.3,54.682 +2560,171.66,53.938 +2561,175.25,56.217 +2562,173.62,55.461 +2563,172.02,54.691 +2564,170.43,53.907 +2565,173.87,56.304 +2566,172.3,55.509 +2567,170.74,54.7 +2568,169.2,53.877 +2569,172.5,56.389 +2570,170.98,55.557 +2571,169.47,54.709 +2572,167.97,53.847 +2573,171.13,56.474 +2574,169.65,55.604 +2575,168.19,54.719 +2576,166.74,53.819 +2577,169.75,56.558 +2578,168.33,55.652 +2579,166.92,54.728 +2580,165.52,53.79 +2581,168.38,56.642 +2582,167,55.698 +2583,165.64,54.738 +2584,164.29,53.763 +2585,167,56.724 +2586,165.68,55.745 +2587,164.37,54.749 +2588,163.07,53.736 +2589,165.63,56.805 +2590,164.35,55.791 +2591,163.09,54.759 +2592,161.84,53.711 +2593,164.25,56.886 +2594,163.03,55.837 +2595,161.82,54.77 +2596,160.62,53.686 +2597,162.87,56.965 +2598,161.7,55.883 +2599,160.55,54.781 +2600,159.4,53.662 +2601,161.49,57.044 +2602,160.38,55.928 +2603,159.27,54.793 +2604,158.18,53.638 +2605,160.11,57.121 +2606,159.05,55.973 +2607,158,54.805 +2608,156.96,53.616 +2609,158.73,57.198 +2610,157.72,56.018 +2611,156.73,54.817 +2612,155.74,53.595 +2613,157.35,57.273 +2614,156.4,56.062 +2615,155.45,54.829 +2616,154.52,53.575 +2617,155.97,57.348 +2618,155.07,56.106 +2619,154.18,54.842 +2620,153.31,53.556 +2621,154.58,57.421 +2622,153.74,56.15 +2623,152.91,54.855 +2624,152.09,53.537 +2625,153.2,57.493 +2626,152.41,56.193 +2627,151.64,54.869 +2628,150.88,53.52 +2629,151.82,57.564 +2630,151.08,56.236 +2631,150.37,54.883 +2632,149.66,53.504 +2633,150.44,57.634 +2634,149.76,56.278 +2635,149.09,54.897 +2636,148.45,53.489 +2637,149.05,57.702 +2638,148.43,56.32 +2639,147.82,54.911 +2640,147.24,53.476 +2641,147.67,57.77 +2642,147.1,56.362 +2643,146.55,54.926 +2644,146.02,53.463 +2645,146.28,57.836 +2646,145.77,56.403 +2647,145.28,54.942 +2648,144.81,53.451 +2649,144.9,57.901 +2650,144.44,56.444 +2651,144.01,54.957 +2652,143.6,53.441 +2653,143.51,57.965 +2654,143.11,56.485 +2655,142.74,54.974 +2656,142.39,53.432 +2657,142.13,58.028 +2658,141.78,56.525 +2659,141.47,54.99 +2660,141.18,53.424 +2661,140.74,58.089 +2662,140.45,56.564 +2663,140.19,55.007 +2664,139.97,53.418 +2665,139.36,58.149 +2666,139.12,56.603 +2667,138.92,55.025 +2668,138.76,53.413 +2669,137.97,58.207 +2670,137.79,56.642 +2671,137.65,55.043 +2672,137.55,53.409 +2673,136.59,58.265 +2674,136.46,56.68 +2675,136.38,55.061 +2676,136.34,53.406 +2677,135.2,58.321 +2678,135.13,56.718 +2679,135.11,55.08 +2680,135.13,53.405 +2681,133.82,58.376 +2682,133.8,56.755 +2683,133.84,55.099 +2684,133.92,53.405 +2685,132.43,58.429 +2686,132.48,56.792 +2687,132.57,55.118 +2688,132.72,53.407 +2689,131.05,58.481 +2690,131.15,56.828 +2691,131.3,55.138 +2692,131.51,53.409 +2693,129.66,58.531 +2694,129.82,56.864 +2695,130.02,55.159 +2696,130.3,53.414 +2697,128.28,58.581 +2698,128.49,56.9 +2699,128.75,55.18 +2700,129.09,53.419 +2701,126.89,58.629 +2702,127.16,56.935 +2703,127.48,55.201 +2704,127.88,53.426 +2705,125.51,58.675 +2706,125.83,56.969 +2707,126.21,55.223 +2708,126.67,53.435 +2709,124.13,58.72 +2710,124.5,57.003 +2711,124.94,55.246 +2712,125.46,53.445 +2713,122.74,58.764 +2714,123.17,57.037 +2715,123.67,55.268 +2716,124.25,53.456 +2717,121.36,58.806 +2718,121.84,57.07 +2719,122.39,55.292 +2720,123.04,53.469 +2721,119.98,58.847 +2722,120.51,57.103 +2723,121.12,55.315 +2724,121.83,53.483 +2725,118.6,58.886 +2726,119.18,57.135 +2727,119.85,55.34 +2728,120.62,53.499 +2729,117.21,58.924 +2730,117.85,57.166 +2731,118.57,55.364 +2732,119.4,53.516 +2733,115.83,58.961 +2734,116.52,57.197 +2735,117.3,55.39 +2736,118.19,53.535 +2737,114.45,58.996 +2738,115.19,57.228 +2739,116.03,55.415 +2740,116.98,53.555 +2741,113.07,59.03 +2742,113.86,57.258 +2743,114.75,55.441 +2744,115.76,53.577 +2745,111.69,59.062 +2746,112.53,57.288 +2747,113.48,55.468 +2748,114.55,53.6 +2749,110.32,59.093 +2750,111.21,57.317 +2751,112.21,55.495 +2752,113.33,53.624 +2753,108.94,59.122 +2754,109.88,57.346 +2755,110.93,55.523 +2756,112.12,53.651 +2757,107.56,59.15 +2758,108.55,57.374 +2759,109.66,55.551 +2760,110.9,53.678 +2761,106.18,59.177 +2762,107.22,57.402 +2763,108.38,55.58 +2764,109.68,53.707 +2765,104.81,59.202 +2766,105.9,57.429 +2767,107.11,55.609 +2768,108.46,53.738 +2769,103.43,59.226 +2770,104.57,57.456 +2771,105.83,55.638 +2772,107.24,53.77 +2773,102.06,59.248 +2774,103.24,57.482 +2775,104.55,55.668 +2776,106.02,53.804 +2777,100.69,59.269 +2778,101.91,57.507 +2779,103.28,55.699 +2780,104.8,53.839 +2781,99.314,59.288 +2782,100.59,57.533 +2783,102,55.73 +2784,103.57,53.875 +2785,97.943,59.307 +2786,99.262,57.558 +2787,100.72,55.761 +2788,102.35,53.913 +2789,96.573,59.323 +2790,97.937,57.582 +2791,99.444,55.793 +2792,101.12,53.953 +2793,95.204,59.339 +2794,96.611,57.606 +2795,98.165,55.825 +2796,99.895,53.994 +2797,93.836,59.353 +2798,95.286,57.629 +2799,96.886,55.858 +2800,98.665,54.036 +2801,92.469,59.365 +2802,93.962,57.652 +2803,95.607,55.891 +2804,97.435,54.08 +2805,91.103,59.376 +2806,92.637,57.674 +2807,94.327,55.925 +2808,96.203,54.125 +2809,89.738,59.386 +2810,91.313,57.696 +2811,93.047,55.959 +2812,94.969,54.172 +2813,88.374,59.395 +2814,89.99,57.718 +2815,91.766,55.994 +2816,93.734,54.22 +2817,87.012,59.402 +2818,88.667,57.739 +2819,90.484,56.029 +2820,92.497,54.269 +2821,85.65,59.408 +2822,87.344,57.759 +2823,89.202,56.065 +2824,91.258,54.32 +2825,84.29,59.413 +2826,86.022,57.779 +2827,87.92,56.101 +2828,90.018,54.372 +2829,82.931,59.416 +2830,84.7,57.799 +2831,86.636,56.137 +2832,88.776,54.426 +2833,81.574,59.418 +2834,83.378,57.818 +2835,85.353,56.174 +2836,87.533,54.481 +2837,80.217,59.419 +2838,82.057,57.837 +2839,84.068,56.211 +2840,86.287,54.537 +2841,78.862,59.419 +2842,80.736,57.856 +2843,82.784,56.249 +2844,85.04,54.594 +2845,77.509,59.417 +2846,79.416,57.873 +2847,81.498,56.287 +2848,83.791,54.653 +2849,76.157,59.414 +2850,78.097,57.891 +2851,80.212,56.325 +2852,82.54,54.713 +2853,74.806,59.41 +2854,76.777,57.908 +2855,78.926,56.364 +2856,81.287,54.774 +2857,73.456,59.405 +2858,75.459,57.925 +2859,77.638,56.403 +2860,80.033,54.836 +2861,72.108,59.399 +2862,74.14,57.941 +2863,76.35,56.443 +2864,78.776,54.9 +2865,70.762,59.391 +2866,72.822,57.957 +2867,75.062,56.483 +2868,77.517,54.965 +2869,69.417,59.382 +2870,71.505,57.973 +2871,73.773,56.523 +2872,76.256,55.031 +2873,68.074,59.373 +2874,70.188,57.988 +2875,72.483,56.564 +2876,74.994,55.098 +2877,66.732,59.362 +2878,68.872,58.003 +2879,71.192,56.605 +2880,73.729,55.166 +2881,65.391,59.35 +2882,67.556,58.017 +2883,69.901,56.647 +2884,72.462,55.235 +2885,64.052,59.337 +2886,66.241,58.031 +2887,68.609,56.688 +2888,71.193,55.305 +2889,62.715,59.323 +2890,64.927,58.045 +2891,67.317,56.731 +2892,69.923,55.377 +2893,61.379,59.308 +2894,63.613,58.058 +2895,66.024,56.773 +2896,68.649,55.449 +2897,60.045,59.293 +2898,62.299,58.071 +2899,64.73,56.816 +2900,67.374,55.522 +2901,58.713,59.276 +2902,60.986,58.084 +2903,63.435,56.859 +2904,66.097,55.597 +2905,57.382,59.258 +2906,59.673,58.096 +2907,62.14,56.902 +2908,64.818,55.672 +2909,56.053,59.239 +2910,58.362,58.108 +2911,60.844,56.946 +2912,63.536,55.748 +2913,54.726,59.22 +2914,57.05,58.12 +2915,59.548,56.99 +2916,62.252,55.825 +2917,53.4,59.199 +2918,55.74,58.132 +2919,58.25,57.034 +2920,60.966,55.903 +2921,52.076,59.178 +2922,54.429,58.143 +2923,56.952,57.078 +2924,59.678,55.981 +2925,50.754,59.156 +2926,53.12,58.154 +2927,55.653,57.123 +2928,58.388,56.061 +2929,49.433,59.133 +2930,51.811,58.165 +2931,54.354,57.168 +2932,57.096,56.141 +2933,48.115,59.11 +2934,50.502,58.175 +2935,53.054,57.213 +2936,55.801,56.222 +2937,46.798,59.086 +2938,49.194,58.185 +2939,51.753,57.259 +2940,54.505,56.303 +2941,45.482,59.061 +2942,47.887,58.195 +2943,50.451,57.304 +2944,53.206,56.385 +2945,44.169,59.035 +2946,46.58,58.205 +2947,49.149,57.35 +2948,51.905,56.468 +2949,42.857,59.009 +2950,45.274,58.214 +2951,47.846,57.396 +2952,50.601,56.552 +2953,41.547,58.982 +2954,43.969,58.223 +2955,46.542,57.442 +2956,49.296,56.636 +2957,40.239,58.954 +2958,42.664,58.233 +2959,45.238,57.489 +2960,47.989,56.72 +2961,38.933,58.926 +2962,41.36,58.241 +2963,43.933,57.535 +2964,46.679,56.805 +2965,37.628,58.898 +2966,40.056,58.25 +2967,42.627,57.582 +2968,45.367,56.891 +2969,36.325,58.869 +2970,38.753,58.259 +2971,41.32,57.629 +2972,44.054,56.976 +2973,35.024,58.839 +2974,37.45,58.267 +2975,40.013,57.676 +2976,42.738,57.063 +2977,33.725,58.809 +2978,36.148,58.275 +2979,38.705,57.723 +2980,41.42,57.149 +2981,32.428,58.779 +2982,34.847,58.283 +2983,37.397,57.77 +2984,40.1,57.236 +2985,31.133,58.748 +2986,33.546,58.291 +2987,36.087,57.817 +2988,38.777,57.324 +2989,29.839,58.717 +2990,32.246,58.299 +2991,34.777,57.865 +2992,37.453,57.411 +2993,28.547,58.686 +2994,30.947,58.307 +2995,33.466,57.912 +2996,36.127,57.499 +2997,27.257,58.654 +2998,29.648,58.314 +2999,32.155,57.96 +3000,34.799,57.587 +3001,25.969,58.622 +3002,28.349,58.322 +3003,30.843,58.007 +3004,33.469,57.675 +3005,24.683,58.59 +3006,27.052,58.329 +3007,29.53,58.055 +3008,32.137,57.764 +3009,23.398,58.558 +3010,25.754,58.337 +3011,28.217,58.102 +3012,30.803,57.852 +3013,22.115,58.525 +3014,24.458,58.344 +3015,26.903,58.15 +3016,29.467,57.941 +3017,20.834,58.493 +3018,23.162,58.351 +3019,25.588,58.198 +3020,28.129,58.029 +3021,19.555,58.46 +3022,21.866,58.359 +3023,24.272,58.245 +3024,26.789,58.118 +3025,18.278,58.427 +3026,20.571,58.366 +3027,22.956,58.293 +3028,25.447,58.206 +3029,17.002,58.394 +3030,19.277,58.373 +3031,21.64,58.341 +3032,24.104,58.295 +3033,15.728,58.362 +3034,17.983,58.38 +3035,20.322,58.388 +3036,22.759,58.383 +3037,14.456,58.329 +3038,16.69,58.388 +3039,19.004,58.436 +3040,21.412,58.471 +3041,13.186,58.296 +3042,15.397,58.395 +3043,17.686,58.483 +3044,20.063,58.56 +3045,11.917,58.263 +3046,14.105,58.402 +3047,16.367,58.531 +3048,18.713,58.647 +3049,10.65,58.231 +3050,12.813,58.409 +3051,15.047,58.578 +3052,17.361,58.735 +3053,9.3848,58.198 +3054,11.522,58.417 +3055,13.726,58.625 +3056,16.007,58.822 +3057,8.1212,58.166 +3058,10.231,58.424 +3059,12.405,58.673 +3060,14.652,58.91 +3061,6.8593,58.134 +3062,8.9413,58.432 +3063,11.084,58.72 +3064,13.295,58.996 +3065,5.5991,58.103 +3066,7.6518,58.439 +3067,9.7617,58.767 +3068,11.937,59.083 +3069,4.3405,58.071 +3070,6.3627,58.447 +3071,8.439,58.814 +3072,10.577,59.169 +3073,3.0835,58.04 +3074,5.0741,58.455 +3075,7.1158,58.86 +3076,9.2155,59.255 +3077,1.8281,58.009 +3078,3.786,58.463 +3079,5.792,58.907 +3080,7.8527,59.34 +3081,0.57425,57.979 +3082,2.4983,58.471 +3083,4.4677,58.953 +3084,6.4884,59.425 +3085,359.32,57.949 +3086,1.2112,58.479 +3087,3.1429,58.999 +3088,5.1228,59.509 +3089,358.07,57.919 +3090,359.92,58.487 +3091,1.8176,59.046 +3092,3.7558,59.593 +3093,356.82,57.89 +3094,358.64,58.496 +3095,0.49177,59.091 +3096,2.3875,59.676 +3097,355.57,57.862 +3098,357.35,58.504 +3099,359.17,59.137 +3100,1.018,59.758 +3101,354.33,57.834 +3102,356.07,58.513 +3103,357.84,59.182 +3104,359.65,59.84 +3105,353.08,57.806 +3106,354.78,58.522 +3107,356.51,59.228 +3108,358.28,59.922 +3109,351.84,57.779 +3110,353.5,58.531 +3111,355.18,59.273 +3112,356.9,60.002 +3113,350.6,57.753 +3114,352.21,58.54 +3115,353.86,59.317 +3116,355.53,60.082 +3117,349.36,57.727 +3118,350.93,58.55 +3119,352.53,59.362 +3120,354.15,60.161 +3121,348.12,57.702 +3122,349.65,58.56 +3123,351.2,59.406 +3124,352.78,60.24 +3125,346.88,57.678 +3126,348.36,58.57 +3127,349.87,59.45 +3128,351.4,60.317 +3129,345.64,57.654 +3130,347.08,58.58 +3131,348.54,59.494 +3132,350.02,60.394 +3133,344.41,57.631 +3134,345.8,58.591 +3135,347.21,59.537 +3136,348.64,60.47 +3137,343.17,57.609 +3138,344.52,58.601 +3139,345.88,59.581 +3140,347.26,60.546 +3141,341.94,57.588 +3142,343.23,58.612 +3143,344.55,59.624 +3144,345.88,60.62 +3145,340.71,57.567 +3146,341.95,58.624 +3147,343.22,59.666 +3148,344.5,60.693 +3149,339.48,57.548 +3150,340.67,58.635 +3151,341.88,59.708 +3152,343.11,60.766 +3153,338.24,57.529 +3154,339.39,58.647 +3155,340.55,59.75 +3156,341.73,60.837 +3157,337.02,57.511 +3158,338.11,58.659 +3159,339.22,59.792 +3160,340.35,60.908 +3161,335.79,57.495 +3162,336.83,58.672 +3163,337.89,59.833 +3164,338.96,60.978 +3165,334.56,57.479 +3166,335.55,58.684 +3167,336.56,59.874 +3168,337.58,61.046 +3169,333.33,57.464 +3170,334.27,58.698 +3171,335.22,59.915 +3172,336.19,61.114 +3173,332.11,57.45 +3174,332.99,58.711 +3175,333.89,59.955 +3176,334.8,61.18 +3177,330.88,57.437 +3178,331.71,58.725 +3179,332.56,59.995 +3180,333.42,61.246 +3181,329.66,57.425 +3182,330.43,58.739 +3183,331.22,60.034 +3184,332.03,61.31 +3185,328.44,57.414 +3186,329.15,58.753 +3187,329.89,60.073 +3188,330.64,61.373 +3189,327.21,57.404 +3190,327.87,58.768 +3191,328.55,60.112 +3192,329.25,61.436 +3193,325.99,57.396 +3194,326.59,58.783 +3195,327.22,60.15 +3196,327.86,61.497 +3197,324.77,57.388 +3198,325.32,58.799 +3199,325.88,60.188 +3200,326.47,61.556 +3201,323.55,57.382 +3202,324.04,58.815 +3203,324.55,60.226 +3204,325.09,61.615 +3205,322.33,57.377 +3206,322.76,58.831 +3207,323.22,60.263 +3208,323.7,61.673 +3209,321.11,57.373 +3210,321.48,58.847 +3211,321.88,60.3 +3212,322.31,61.729 +3213,319.89,57.37 +3214,320.2,58.865 +3215,320.55,60.336 +3216,320.92,61.784 +3217,318.67,57.368 +3218,318.92,58.882 +3219,319.21,60.372 +3220,319.53,61.838 +3221,317.45,57.368 +3222,317.65,58.9 +3223,317.88,60.408 +3224,318.14,61.891 +3225,316.23,57.369 +3226,316.37,58.918 +3227,316.54,60.443 +3228,316.74,61.942 +3229,315.01,57.371 +3230,315.09,58.937 +3231,315.2,60.477 +3232,315.35,61.992 +3233,313.8,57.374 +3234,313.81,58.956 +3235,313.87,60.511 +3236,313.96,62.041 +3237,312.58,57.379 +3238,312.53,58.975 +3239,312.53,60.545 +3240,312.57,62.089 +3241,311.36,57.384 +3242,311.26,58.995 +3243,311.2,60.579 +3244,311.18,62.135 +3245,310.14,57.392 +3246,309.98,59.015 +3247,309.86,60.611 +3248,309.79,62.18 +3249,308.92,57.4 +3250,308.7,59.036 +3251,308.53,60.644 +3252,308.4,62.224 +3253,307.71,57.41 +3254,307.42,59.057 +3255,307.19,60.676 +3256,307.01,62.266 +3257,306.49,57.421 +3258,306.14,59.079 +3259,305.86,60.707 +3260,305.62,62.307 +3261,305.27,57.433 +3262,304.86,59.1 +3263,304.52,60.738 +3264,304.24,62.347 +3265,304.05,57.447 +3266,303.58,59.123 +3267,303.19,60.769 +3268,302.85,62.386 +3269,302.83,57.462 +3270,302.31,59.146 +3271,301.85,60.799 +3272,301.46,62.423 +3273,301.61,57.479 +3274,301.03,59.169 +3275,300.52,60.829 +3276,300.07,62.459 +3277,300.39,57.497 +3278,299.75,59.193 +3279,299.18,60.858 +3280,298.68,62.493 +3281,299.17,57.516 +3282,298.47,59.217 +3283,297.85,60.887 +3284,297.3,62.526 +3285,297.95,57.537 +3286,297.19,59.241 +3287,296.51,60.915 +3288,295.91,62.558 +3289,296.73,57.559 +3290,295.91,59.266 +3291,295.18,60.943 +3292,294.52,62.589 +3293,295.51,57.582 +3294,294.63,59.292 +3295,293.84,60.97 +3296,293.14,62.618 +3297,294.28,57.606 +3298,293.35,59.318 +3299,292.51,60.997 +3300,291.75,62.645 +3301,293.06,57.633 +3302,292.07,59.344 +3303,291.18,61.024 +3304,290.37,62.672 +3305,291.84,57.66 +3306,290.79,59.371 +3307,289.84,61.05 +3308,288.98,62.697 +3309,290.61,57.689 +3310,289.51,59.398 +3311,288.51,61.075 +3312,287.6,62.721 +3313,289.39,57.719 +3314,288.23,59.426 +3315,287.17,61.1 +3316,286.22,62.743 +3317,288.16,57.75 +3318,286.94,59.454 +3319,285.84,61.125 +3320,284.84,62.764 +3321,286.93,57.783 +3322,285.66,59.482 +3323,284.51,61.149 +3324,283.46,62.784 +3325,285.7,57.817 +3326,284.38,59.511 +3327,283.18,61.173 +3328,282.08,62.802 +3329,284.47,57.853 +3330,283.1,59.541 +3331,281.84,61.196 +3332,280.7,62.82 +3333,283.24,57.89 +3334,281.81,59.571 +3335,280.51,61.219 +3336,279.32,62.835 +3337,282.01,57.928 +3338,280.53,59.601 +3339,279.18,61.241 +3340,277.94,62.85 +3341,280.78,57.968 +3342,279.25,59.632 +3343,277.85,61.263 +3344,276.57,62.863 +3345,279.54,58.008 +3346,277.96,59.663 +3347,276.52,61.285 +3348,275.19,62.875 +3349,278.31,58.051 +3350,276.68,59.694 +3351,275.19,61.306 +3352,273.82,62.886 +3353,277.07,58.094 +3354,275.39,59.726 +3355,273.86,61.326 +3356,272.44,62.895 +3357,275.83,58.139 +3358,274.11,59.758 +3359,272.53,61.346 +3360,271.07,62.903 +3361,274.6,58.185 +3362,272.82,59.791 +3363,271.2,61.366 +3364,269.7,62.91 +3365,273.35,58.232 +3366,271.53,59.824 +3367,269.87,61.385 +3368,268.33,62.916 +3369,272.11,58.281 +3370,270.25,59.858 +3371,268.54,61.404 +3372,266.96,62.92 +3373,270.87,58.33 +3374,268.96,59.892 +3375,267.21,61.422 +3376,265.59,62.923 +3377,269.62,58.381 +3378,267.67,59.926 +3379,265.88,61.44 +3380,264.23,62.925 +3381,268.38,58.433 +3382,266.38,59.961 +3383,264.55,61.458 +3384,262.86,62.926 +3385,267.13,58.487 +3386,265.09,59.996 +3387,263.23,61.475 +3388,261.5,62.926 +3389,265.88,58.541 +3390,263.81,60.031 +3391,261.9,61.492 +3392,260.14,62.924 +3393,264.63,58.597 +3394,262.52,60.067 +3395,260.57,61.508 +3396,258.77,62.922 +3397,263.37,58.654 +3398,261.22,60.103 +3399,259.25,61.524 +3400,257.41,62.918 +3401,262.12,58.712 +3402,259.93,60.14 +3403,257.92,61.54 +3404,256.06,62.913 +3405,260.86,58.771 +3406,258.64,60.177 +3407,256.6,61.555 +3408,254.7,62.907 +3409,259.6,58.831 +3410,257.35,60.214 +3411,255.27,61.57 +3412,253.34,62.9 +3413,258.34,58.892 +3414,256.06,60.252 +3415,253.95,61.585 +3416,251.99,62.892 +3417,257.08,58.955 +3418,254.76,60.29 +3419,252.62,61.599 +3420,250.64,62.883 +3421,255.82,59.018 +3422,253.47,60.328 +3423,251.3,61.613 +3424,249.28,62.873 +3425,254.55,59.082 +3426,252.17,60.367 +3427,249.98,61.626 +3428,247.93,62.861 +3429,253.28,59.147 +3430,250.88,60.406 +3431,248.66,61.639 +3432,246.59,62.849 +3433,252.01,59.213 +3434,249.58,60.445 +3435,247.33,61.652 +3436,245.24,62.836 +3437,250.74,59.281 +3438,248.29,60.484 +3439,246.01,61.664 +3440,243.89,62.822 +3441,249.47,59.349 +3442,246.99,60.524 +3443,244.69,61.676 +3444,242.55,62.807 +3445,248.19,59.417 +3446,245.69,60.564 +3447,243.37,61.688 +3448,241.21,62.791 +3449,246.92,59.487 +3450,244.39,60.605 +3451,242.05,61.7 +3452,239.87,62.774 +3453,245.64,59.558 +3454,243.09,60.645 +3455,240.73,61.711 +3456,238.53,62.757 +3457,244.35,59.629 +3458,241.8,60.686 +3459,239.42,61.722 +3460,237.19,62.738 +3461,243.07,59.701 +3462,240.49,60.727 +3463,238.1,61.733 +3464,235.85,62.719 +3465,241.78,59.774 +3466,239.19,60.768 +3467,236.78,61.743 +3468,234.52,62.699 +3469,240.5,59.848 +3470,237.89,60.81 +3471,235.46,61.753 +3472,233.19,62.678 +3473,239.21,59.922 +3474,236.59,60.852 +3475,234.15,61.763 +3476,231.86,62.657 +3477,237.92,59.997 +3478,235.29,60.894 +3479,232.83,61.773 +3480,230.53,62.634 +3481,236.62,60.073 +3482,233.98,60.936 +3483,231.52,61.782 +3484,229.2,62.611 +3485,235.33,60.149 +3486,232.68,60.979 +3487,230.2,61.791 +3488,227.87,62.588 +3489,234.03,60.226 +3490,231.37,61.021 +3491,228.89,61.8 +3492,226.55,62.564 +3493,232.73,60.303 +3494,230.07,61.064 +3495,227.58,61.809 +3496,225.23,62.539 +3497,231.43,60.381 +3498,228.76,61.107 +3499,226.26,61.817 +3500,223.91,62.513 +3501,230.12,60.46 +3502,227.45,61.15 +3503,224.95,61.826 +3504,222.59,62.487 +3505,228.81,60.539 +3506,226.15,61.193 +3507,223.64,61.834 +3508,221.27,62.461 +3509,227.51,60.618 +3510,224.84,61.237 +3511,222.33,61.842 +3512,219.96,62.434 +3513,226.2,60.698 +3514,223.53,61.28 +3515,221.02,61.849 +3516,218.64,62.407 +3517,224.88,60.778 +3518,222.22,61.324 +3519,219.71,61.857 +3520,217.33,62.379 +3521,223.57,60.858 +3522,220.91,61.368 +3523,218.4,61.865 +3524,216.02,62.35 +3525,222.25,60.939 +3526,219.6,61.412 +3527,217.09,61.872 +3528,214.71,62.322 +3529,220.93,61.02 +3530,218.29,61.456 +3531,215.78,61.879 +3532,213.41,62.293 +3533,219.61,61.102 +3534,216.97,61.5 +3535,214.48,61.886 +3536,212.1,62.263 +3537,218.29,61.183 +3538,215.66,61.544 +3539,213.17,61.893 +3540,210.8,62.234 +3541,216.97,61.265 +3542,214.35,61.588 +3543,211.86,61.9 +3544,209.5,62.204 +3545,215.64,61.347 +3546,213.03,61.632 +3547,210.56,61.907 +3548,208.2,62.174 +3549,214.31,61.429 +3550,211.72,61.676 +3551,209.25,61.914 +3552,206.9,62.143 +3553,212.98,61.511 +3554,210.4,61.721 +3555,207.95,61.921 +3556,205.61,62.113 +3557,211.65,61.593 +3558,209.09,61.765 +3559,206.65,61.927 +3560,204.31,62.082 +3561,210.31,61.676 +3562,207.77,61.809 +3563,205.34,61.934 +3564,203.02,62.051 +3565,208.98,61.758 +3566,206.45,61.854 +3567,204.04,61.941 +3568,201.73,62.02 +3569,207.64,61.84 +3570,205.13,61.898 +3571,202.74,61.947 +3572,200.44,61.989 +3573,206.3,61.923 +3574,203.81,61.942 +3575,201.44,61.954 +3576,199.16,61.958 +3577,204.96,62.005 +3578,202.49,61.987 +3579,200.14,61.96 +3580,197.87,61.927 +3581,203.61,62.087 +3582,201.17,62.031 +3583,198.84,61.967 +3584,196.59,61.896 +3585,202.27,62.169 +3586,199.85,62.075 +3587,197.54,61.973 +3588,195.31,61.865 +3589,200.92,62.25 +3590,198.53,62.119 +3591,196.24,61.98 +3592,194.03,61.835 +3593,199.57,62.332 +3594,197.21,62.163 +3595,194.94,61.986 +3596,192.75,61.804 +3597,198.22,62.413 +3598,195.89,62.207 +3599,193.64,61.993 +3600,191.47,61.773 +3601,196.87,62.494 +3602,194.56,62.251 +3603,192.34,62 +3604,190.2,61.743 +3605,195.51,62.575 +3606,193.24,62.295 +3607,191.05,62.007 +3608,188.92,61.713 +3609,194.16,62.655 +3610,191.91,62.338 +3611,189.75,62.013 +3612,187.65,61.683 +3613,192.8,62.735 +3614,190.59,62.382 +3615,188.45,62.02 +3616,186.38,61.653 +3617,191.44,62.815 +3618,189.26,62.425 +3619,187.16,62.027 +3620,185.11,61.624 +3621,190.08,62.894 +3622,187.94,62.468 +3623,185.86,62.035 +3624,183.85,61.595 +3625,188.72,62.973 +3626,186.61,62.512 +3627,184.57,62.042 +3628,182.58,61.566 +3629,187.36,63.052 +3630,185.28,62.554 +3631,183.27,62.049 +3632,181.32,61.538 +3633,185.99,63.13 +3634,183.96,62.597 +3635,181.98,62.057 +3636,180.06,61.51 +3637,184.63,63.207 +3638,182.63,62.64 +3639,180.69,62.064 +3640,178.8,61.483 +3641,183.26,63.284 +3642,181.3,62.682 +3643,179.4,62.072 +3644,177.54,61.456 +3645,181.89,63.36 +3646,179.97,62.724 +3647,178.1,62.08 +3648,176.28,61.429 +3649,180.52,63.436 +3650,178.64,62.766 +3651,176.81,62.088 +3652,175.03,61.403 +3653,179.15,63.511 +3654,177.31,62.808 +3655,175.52,62.097 +3656,173.77,61.378 +3657,177.77,63.585 +3658,175.98,62.85 +3659,174.23,62.105 +3660,172.52,61.353 +3661,176.4,63.659 +3662,174.65,62.891 +3663,172.94,62.114 +3664,171.27,61.329 +3665,175.03,63.732 +3666,173.32,62.932 +3667,171.65,62.123 +3668,170.02,61.306 +3669,173.65,63.804 +3670,171.99,62.973 +3671,170.36,62.132 +3672,168.77,61.283 +3673,172.27,63.876 +3674,170.65,63.014 +3675,169.07,62.141 +3676,167.52,61.26 +3677,170.89,63.947 +3678,169.32,63.054 +3679,167.78,62.151 +3680,166.27,61.239 +3681,169.51,64.017 +3682,167.99,63.094 +3683,166.49,62.161 +3684,165.03,61.218 +3685,168.13,64.086 +3686,166.65,63.134 +3687,165.21,62.171 +3688,163.78,61.198 +3689,166.75,64.154 +3690,165.32,63.173 +3691,163.92,62.181 +3692,162.54,61.179 +3693,165.37,64.222 +3694,163.99,63.213 +3695,162.63,62.192 +3696,161.3,61.161 +3697,163.99,64.288 +3698,162.65,63.252 +3699,161.34,62.203 +3700,160.06,61.143 +3701,162.6,64.354 +3702,161.32,63.29 +3703,160.06,62.214 +3704,158.82,61.126 +3705,161.22,64.419 +3706,159.98,63.328 +3707,158.77,62.225 +3708,157.58,61.111 +3709,159.83,64.483 +3710,158.65,63.366 +3711,157.48,62.237 +3712,156.34,61.096 +3713,158.44,64.546 +3714,157.31,63.404 +3715,156.2,62.249 +3716,155.11,61.082 +3717,157.06,64.607 +3718,155.97,63.441 +3719,154.91,62.261 +3720,153.87,61.069 +3721,155.67,64.668 +3722,154.64,63.478 +3723,153.63,62.274 +3724,152.64,61.057 +3725,154.28,64.728 +3726,153.3,63.515 +3727,152.34,62.287 +3728,151.4,61.045 +3729,152.89,64.787 +3730,151.96,63.551 +3731,151.06,62.3 +3732,150.17,61.035 +3733,151.5,64.845 +3734,150.63,63.587 +3735,149.77,62.314 +3736,148.94,61.026 +3737,150.11,64.902 +3738,149.29,63.622 +3739,148.49,62.327 +3740,147.71,61.018 +3741,148.72,64.957 +3742,147.95,63.658 +3743,147.2,62.342 +3744,146.48,61.011 +3745,147.33,65.012 +3746,146.61,63.692 +3747,145.92,62.356 +3748,145.25,61.005 +3749,145.94,65.065 +3750,145.28,63.727 +3751,144.64,62.371 +3752,144.02,61.001 +3753,144.55,65.117 +3754,143.94,63.761 +3755,143.35,62.387 +3756,142.79,60.997 +3757,143.16,65.169 +3758,142.6,63.794 +3759,142.07,62.402 +3760,141.56,60.994 +3761,141.76,65.219 +3762,141.26,63.827 +3763,140.78,62.419 +3764,140.33,60.993 +3765,140.37,65.267 +3766,139.92,63.86 +3767,139.5,62.435 +3768,139.11,60.993 +3769,138.98,65.315 +3770,138.58,63.893 +3771,138.22,62.452 +3772,137.88,60.994 +3773,137.59,65.362 +3774,137.25,63.925 +3775,136.93,62.469 +3776,136.65,60.996 +3777,136.19,65.407 +3778,135.91,63.956 +3779,135.65,62.487 +3780,135.43,60.999 +3781,134.8,65.451 +3782,134.57,63.987 +3783,134.37,62.505 +3784,134.2,61.003 +3785,133.41,65.494 +3786,133.23,64.018 +3787,133.08,62.523 +3788,132.97,61.009 +3789,132.02,65.536 +3790,131.89,64.049 +3791,131.8,62.542 +3792,131.75,61.016 +3793,130.62,65.576 +3794,130.55,64.078 +3795,130.52,62.561 +3796,130.52,61.024 +3797,129.23,65.615 +3798,129.21,64.108 +3799,129.23,62.58 +3800,129.3,61.033 +3801,127.84,65.653 +3802,127.87,64.137 +3803,127.95,62.6 +3804,128.07,61.044 +3805,126.44,65.69 +3806,126.54,64.166 +3807,126.67,62.621 +3808,126.85,61.056 +3809,125.05,65.725 +3810,125.2,64.194 +3811,125.38,62.642 +3812,125.62,61.069 +3813,123.66,65.759 +3814,123.86,64.222 +3815,124.1,62.663 +3816,124.39,61.083 +3817,122.27,65.792 +3818,122.52,64.249 +3819,122.82,62.684 +3820,123.17,61.099 +3821,120.88,65.824 +3822,121.18,64.276 +3823,121.53,62.706 +3824,121.94,61.116 +3825,119.48,65.854 +3826,119.84,64.302 +3827,120.25,62.729 +3828,120.72,61.134 +3829,118.09,65.883 +3830,118.5,64.328 +3831,118.97,62.752 +3832,119.49,61.154 +3833,116.7,65.911 +3834,117.16,64.354 +3835,117.68,62.775 +3836,118.26,61.175 +3837,115.31,65.938 +3838,115.83,64.379 +3839,116.4,62.798 +3840,117.04,61.197 +3841,113.92,65.963 +3842,114.49,64.404 +3843,115.11,62.823 +3844,115.81,61.22 +3845,112.54,65.987 +3846,113.15,64.428 +3847,113.83,62.847 +3848,114.58,61.245 +3849,111.15,66.01 +3850,111.81,64.452 +3851,112.54,62.872 +3852,113.35,61.271 +3853,109.76,66.031 +3854,110.47,64.475 +3855,111.26,62.897 +3856,112.12,61.298 +3857,108.37,66.052 +3858,109.14,64.498 +3859,109.97,62.923 +3860,110.89,61.327 +3861,106.98,66.071 +3862,107.8,64.521 +3863,108.69,62.949 +3864,109.66,61.356 +3865,105.6,66.088 +3866,106.46,64.543 +3867,107.4,62.976 +3868,108.43,61.387 +3869,104.21,66.105 +3870,105.13,64.564 +3871,106.12,63.003 +3872,107.2,61.42 +3873,102.83,66.12 +3874,103.79,64.586 +3875,104.83,63.03 +3876,105.96,61.453 +3877,101.45,66.134 +3878,102.45,64.606 +3879,103.54,63.058 +3880,104.73,61.488 +3881,100.06,66.146 +3882,101.12,64.627 +3883,102.26,63.086 +3884,103.49,61.524 +3885,98.681,66.158 +3886,99.781,64.647 +3887,100.97,63.115 +3888,102.26,61.562 +3889,97.3,66.168 +3890,98.446,64.666 +3891,99.683,63.144 +3892,101.02,61.6 +3893,95.919,66.177 +3894,97.11,64.685 +3895,98.395,63.173 +3896,99.785,61.64 +3897,94.54,66.185 +3898,95.775,64.704 +3899,97.106,63.203 +3900,98.546,61.681 +3901,93.162,66.192 +3902,94.441,64.722 +3903,95.818,63.233 +3904,97.306,61.724 +3905,91.785,66.197 +3906,93.107,64.74 +3907,94.529,63.263 +3908,96.065,61.767 +3909,90.408,66.201 +3910,91.773,64.758 +3911,93.239,63.294 +3912,94.823,61.812 +3913,89.033,66.205 +3914,90.439,64.775 +3915,91.95,63.326 +3916,93.579,61.857 +3917,87.659,66.206 +3918,89.106,64.791 +3919,90.659,63.357 +3920,92.334,61.904 +3921,86.286,66.207 +3922,87.773,64.808 +3923,89.369,63.389 +3924,91.088,61.953 +3925,84.914,66.207 +3926,86.44,64.824 +3927,88.077,63.422 +3928,89.841,62.002 +3929,83.543,66.206 +3930,85.108,64.839 +3931,86.786,63.454 +3932,88.592,62.052 +3933,82.174,66.203 +3934,83.777,64.854 +3935,85.494,63.488 +3936,87.342,62.104 +3937,80.806,66.199 +3938,82.445,64.869 +3939,84.201,63.521 +3940,86.09,62.156 +3941,79.439,66.195 +3942,81.115,64.883 +3943,82.908,63.555 +3944,84.837,62.21 +3945,78.073,66.189 +3946,79.784,64.897 +3947,81.615,63.589 +3948,83.582,62.265 +3949,76.708,66.182 +3950,78.454,64.911 +3951,80.321,63.624 +3952,82.326,62.32 +3953,75.345,66.174 +3954,77.125,64.924 +3955,79.026,63.658 +3956,81.068,62.377 +3957,73.983,66.166 +3958,75.796,64.937 +3959,77.731,63.693 +3960,79.809,62.435 +3961,72.623,66.156 +3962,74.467,64.95 +3963,76.435,63.729 +3964,78.548,62.494 +3965,71.264,66.145 +3966,73.139,64.962 +3967,75.139,63.765 +3968,77.285,62.553 +3969,69.906,66.133 +3970,71.811,64.974 +3971,73.843,63.801 +3972,76.021,62.614 +3973,68.55,66.121 +3974,70.484,64.986 +3975,72.545,63.837 +3976,74.754,62.675 +3977,67.195,66.107 +3978,69.157,64.997 +3979,71.247,63.874 +3980,73.487,62.738 +3981,65.842,66.093 +3982,67.831,65.008 +3983,69.949,63.911 +3984,72.217,62.801 +3985,64.49,66.077 +3986,66.505,65.019 +3987,68.65,63.948 +3988,70.945,62.865 +3989,63.14,66.061 +3990,65.18,65.029 +3991,67.351,63.985 +3992,69.672,62.93 +3993,61.791,66.044 +3994,63.855,65.039 +3995,66.05,64.023 +3996,68.397,62.996 +3997,60.444,66.026 +3998,62.531,65.049 +3999,64.75,64.061 +4000,67.12,63.063 +4001,59.098,66.007 +4002,61.208,65.059 +4003,63.448,64.099 +4004,65.841,63.13 +4005,57.754,65.988 +4006,59.885,65.068 +4007,62.146,64.138 +4008,64.561,63.198 +4009,56.412,65.968 +4010,58.562,65.077 +4011,60.844,64.177 +4012,63.278,63.267 +4013,55.071,65.947 +4014,57.24,65.086 +4015,59.541,64.215 +4016,61.994,63.336 +4017,53.732,65.926 +4018,55.919,65.094 +4019,58.237,64.255 +4020,60.707,63.406 +4021,52.394,65.903 +4022,54.598,65.103 +4023,56.932,64.294 +4024,59.419,63.477 +4025,51.058,65.881 +4026,53.278,65.111 +4027,55.627,64.333 +4028,58.129,63.548 +4029,49.724,65.857 +4030,51.958,65.119 +4031,54.322,64.373 +4032,56.836,63.62 +4033,48.391,65.833 +4034,50.639,65.126 +4035,53.015,64.413 +4036,55.542,63.693 +4037,47.06,65.808 +4038,49.32,65.134 +4039,51.708,64.453 +4040,54.246,63.766 +4041,45.731,65.783 +4042,48.002,65.141 +4043,50.401,64.493 +4044,52.948,63.839 +4045,44.403,65.757 +4046,46.685,65.148 +4047,49.092,64.534 +4048,51.648,63.913 +4049,43.077,65.731 +4050,45.368,65.155 +4051,47.783,64.574 +4052,50.346,63.987 +4053,41.753,65.705 +4054,44.051,65.162 +4055,46.474,64.615 +4056,49.041,64.062 +4057,40.431,65.678 +4058,42.736,65.169 +4059,45.164,64.656 +4060,47.735,64.137 +4061,39.11,65.65 +4062,41.421,65.175 +4063,43.853,64.696 +4064,46.427,64.213 +4065,37.791,65.622 +4066,40.106,65.182 +4067,42.541,64.737 +4068,45.117,64.289 +4069,36.474,65.594 +4070,38.792,65.188 +4071,41.229,64.778 +4072,43.805,64.365 +4073,35.158,65.565 +4074,37.479,65.194 +4075,39.916,64.82 +4076,42.491,64.441 +4077,33.845,65.536 +4078,36.166,65.2 +4079,38.603,64.861 +4080,41.175,64.518 +4081,32.533,65.507 +4082,34.854,65.206 +4083,37.289,64.902 +4084,39.857,64.595 +4085,31.223,65.478 +4086,33.542,65.212 +4087,35.974,64.943 +4088,38.537,64.672 +4089,29.914,65.448 +4090,32.231,65.218 +4091,34.659,64.985 +4092,37.215,64.749 +4093,28.607,65.418 +4094,30.921,65.223 +4095,33.342,65.026 +4096,35.891,64.826 +4097,27.302,65.389 +4098,29.611,65.229 +4099,32.026,65.068 +4100,34.565,64.904 +4101,25.999,65.358 +4102,28.301,65.235 +4103,30.708,65.109 +4104,33.237,64.981 +4105,24.698,65.328 +4106,26.993,65.24 +4107,29.39,65.151 +4108,31.908,65.059 +4109,23.398,65.298 +4110,25.685,65.246 +4111,28.072,65.192 +4112,30.576,65.136 +4113,22.1,65.268 +4114,24.377,65.251 +4115,26.753,65.234 +4116,29.243,65.214 +4117,20.804,65.237 +4118,23.07,65.257 +4119,25.433,65.275 +4120,27.907,65.291 +4121,19.509,65.207 +4122,21.764,65.262 +4123,24.112,65.317 +4124,26.57,65.369 +4125,18.216,65.177 +4126,20.458,65.268 +4127,22.791,65.358 +4128,25.231,65.446 +4129,16.925,65.146 +4130,19.153,65.273 +4131,21.47,65.399 +4132,23.89,65.523 +4133,15.636,65.116 +4134,17.848,65.279 +4135,20.147,65.441 +4136,22.548,65.6 +4137,14.348,65.086 +4138,16.544,65.285 +4139,18.824,65.482 +4140,21.203,65.677 +4141,13.062,65.057 +4142,15.24,65.29 +4143,17.501,65.523 +4144,19.857,65.753 +4145,11.778,65.027 +4146,13.937,65.296 +4147,16.177,65.564 +4148,18.509,65.83 +4149,10.495,64.997 +4150,12.635,65.302 +4151,14.852,65.605 +4152,17.159,65.906 +4153,9.2143,64.968 +4154,11.333,65.308 +4155,13.527,65.646 +4156,15.808,65.982 +4157,7.9349,64.939 +4158,10.031,65.314 +4159,12.201,65.687 +4160,14.455,66.057 +4161,6.6572,64.911 +4162,8.7304,65.32 +4163,10.874,65.727 +4164,13.101,66.132 +4165,5.3811,64.882 +4166,7.43,65.326 +4167,9.5475,65.768 +4168,11.744,66.207 +4169,4.1066,64.855 +4170,6.1301,65.332 +4171,8.22,65.808 +4172,10.386,66.281 +4173,2.8336,64.827 +4174,4.8308,65.339 +4175,6.892,65.848 +4176,9.027,66.355 +4177,1.5622,64.8 +4178,3.5319,65.345 +4179,5.5634,65.888 +4180,7.6661,66.428 +4181,0.29238,64.773 +4182,2.2335,65.352 +4183,4.2343,65.928 +4184,6.3037,66.501 +4185,359.02,64.747 +4186,0.93565,65.359 +4187,2.9047,65.968 +4188,4.9398,66.573 +4189,357.76,64.721 +4190,359.64,65.366 +4191,1.5746,66.007 +4192,3.5744,66.645 +4193,356.49,64.696 +4194,358.34,65.373 +4195,0.24394,66.047 +4196,2.2076,66.716 +4197,355.23,64.671 +4198,357.04,65.38 +4199,358.91,66.086 +4200,0.83949,66.787 +4201,353.97,64.647 +4202,355.75,65.387 +4203,357.58,66.125 +4204,359.47,66.857 +4205,352.7,64.624 +4206,354.45,65.395 +4207,356.25,66.163 +4208,358.1,66.926 +4209,351.44,64.601 +4210,353.16,65.403 +4211,354.92,66.202 +4212,356.73,66.995 +4213,350.19,64.579 +4214,351.86,65.411 +4215,353.58,66.24 +4216,355.35,67.063 +4217,348.93,64.557 +4218,350.57,65.42 +4219,352.25,66.278 +4220,353.98,67.13 +4221,347.67,64.536 +4222,349.28,65.428 +4223,350.92,66.315 +4224,352.6,67.196 +4225,346.42,64.516 +4226,347.98,65.437 +4227,349.58,66.353 +4228,351.23,67.262 +4229,345.17,64.497 +4230,346.69,65.446 +4231,348.25,66.39 +4232,349.85,67.327 +4233,343.91,64.478 +4234,345.4,65.455 +4235,346.91,66.427 +4236,348.47,67.391 +4237,342.66,64.46 +4238,344.1,65.465 +4239,345.58,66.464 +4240,347.09,67.455 +4241,341.41,64.443 +4242,342.81,65.475 +4243,344.24,66.5 +4244,345.71,67.517 +4245,340.17,64.427 +4246,341.52,65.485 +4247,342.91,66.536 +4248,344.33,67.579 +4249,338.92,64.411 +4250,340.23,65.495 +4251,341.57,66.572 +4252,342.94,67.64 +4253,337.67,64.397 +4254,338.94,65.506 +4255,340.23,66.607 +4256,341.56,67.699 +4257,336.43,64.383 +4258,337.65,65.517 +4259,338.89,66.642 +4260,340.17,67.758 +4261,335.18,64.371 +4262,336.36,65.528 +4263,337.56,66.677 +4264,338.79,67.816 +4265,333.94,64.359 +4266,335.07,65.539 +4267,336.22,66.711 +4268,337.4,67.873 +4269,332.7,64.348 +4270,333.78,65.551 +4271,334.88,66.746 +4272,336.01,67.929 +4273,331.46,64.339 +4274,332.49,65.564 +4275,333.54,66.779 +4276,334.63,67.984 +4277,330.22,64.33 +4278,331.2,65.576 +4279,332.2,66.813 +4280,333.24,68.039 +4281,328.98,64.322 +4282,329.91,65.589 +4283,330.87,66.846 +4284,331.85,68.092 +4285,327.74,64.315 +4286,328.62,65.602 +4287,329.53,66.879 +4288,330.46,68.144 +4289,326.5,64.31 +4290,327.33,65.616 +4291,328.19,66.911 +4292,329.07,68.195 +4293,325.26,64.305 +4294,326.04,65.629 +4295,326.85,66.943 +4296,327.68,68.244 +4297,324.03,64.301 +4298,324.75,65.644 +4299,325.51,66.975 +4300,326.29,68.293 +4301,322.79,64.299 +4302,323.47,65.658 +4303,324.17,67.006 +4304,324.9,68.341 +4305,321.55,64.297 +4306,322.18,65.673 +4307,322.83,67.037 +4308,323.5,68.388 +4309,320.32,64.297 +4310,320.89,65.688 +4311,321.49,67.067 +4312,322.11,68.433 +4313,319.09,64.298 +4314,319.6,65.704 +4315,320.15,67.097 +4316,320.72,68.477 +4317,317.85,64.3 +4318,318.32,65.72 +4319,318.81,67.127 +4320,319.32,68.521 +4321,316.62,64.303 +4322,317.03,65.736 +4323,317.47,67.157 +4324,317.93,68.563 +4325,315.39,64.308 +4326,315.74,65.753 +4327,316.12,67.186 +4328,316.54,68.604 +4329,314.15,64.313 +4330,314.45,65.77 +4331,314.78,67.214 +4332,315.14,68.643 +4333,312.92,64.32 +4334,313.17,65.788 +4335,313.44,67.242 +4336,313.75,68.682 +4337,311.69,64.328 +4338,311.88,65.806 +4339,312.1,67.27 +4340,312.36,68.72 +4341,310.46,64.337 +4342,310.59,65.824 +4343,310.76,67.297 +4344,310.96,68.756 +4345,309.22,64.347 +4346,309.31,65.843 +4347,309.42,67.324 +4348,309.57,68.791 +4349,307.99,64.359 +4350,308.02,65.862 +4351,308.08,67.351 +4352,308.17,68.825 +4353,306.76,64.371 +4354,306.73,65.881 +4355,306.74,67.377 +4356,306.78,68.857 +4357,305.53,64.385 +4358,305.44,65.901 +4359,305.4,67.403 +4360,305.39,68.889 +4361,304.3,64.4 +4362,304.16,65.921 +4363,304.06,67.428 +4364,303.99,68.919 +4365,303.07,64.417 +4366,302.87,65.942 +4367,302.71,67.453 +4368,302.6,68.948 +4369,301.83,64.434 +4370,301.58,65.963 +4371,301.37,67.477 +4372,301.2,68.976 +4373,300.6,64.453 +4374,300.3,65.985 +4375,300.03,67.501 +4376,299.81,69.002 +4377,299.37,64.473 +4378,299.01,66.006 +4379,298.69,67.525 +4380,298.42,69.028 +4381,298.14,64.495 +4382,297.72,66.029 +4383,297.35,67.548 +4384,297.03,69.052 +4385,296.91,64.517 +4386,296.43,66.051 +4387,296.01,67.571 +4388,295.63,69.075 +4389,295.67,64.541 +4390,295.15,66.075 +4391,294.67,67.593 +4392,294.24,69.096 +4393,294.44,64.566 +4394,293.86,66.098 +4395,293.33,67.615 +4396,292.85,69.117 +4397,293.21,64.593 +4398,292.57,66.122 +4399,291.99,67.637 +4400,291.46,69.136 +4401,291.97,64.62 +4402,291.28,66.146 +4403,290.65,67.658 +4404,290.07,69.154 +4405,290.74,64.649 +4406,289.99,66.171 +4407,289.31,67.679 +4408,288.68,69.171 +4409,289.5,64.679 +4410,288.7,66.196 +4411,287.97,67.699 +4412,287.29,69.187 +4413,288.27,64.71 +4414,287.42,66.222 +4415,286.63,67.719 +4416,285.9,69.201 +4417,287.03,64.743 +4418,286.13,66.247 +4419,285.29,67.738 +4420,284.51,69.214 +4421,285.79,64.777 +4422,284.84,66.274 +4423,283.95,67.757 +4424,283.13,69.226 +4425,284.56,64.811 +4426,283.55,66.3 +4427,282.61,67.776 +4428,281.74,69.237 +4429,283.32,64.848 +4430,282.26,66.327 +4431,281.27,67.794 +4432,280.35,69.247 +4433,282.08,64.885 +4434,280.97,66.355 +4435,279.93,67.812 +4436,278.97,69.255 +4437,280.84,64.923 +4438,279.68,66.383 +4439,278.59,67.83 +4440,277.58,69.262 +4441,279.6,64.963 +4442,278.39,66.411 +4443,277.26,67.847 +4444,276.2,69.269 +4445,278.36,65.004 +4446,277.1,66.44 +4447,275.92,67.863 +4448,274.82,69.274 +4449,277.11,65.046 +4450,275.8,66.469 +4451,274.58,67.88 +4452,273.44,69.278 +4453,275.87,65.089 +4454,274.51,66.498 +4455,273.24,67.895 +4456,272.05,69.28 +4457,274.63,65.133 +4458,273.22,66.528 +4459,271.91,67.911 +4460,270.67,69.282 +4461,273.38,65.178 +4462,271.93,66.558 +4463,270.57,67.926 +4464,269.3,69.282 +4465,272.13,65.225 +4466,270.64,66.588 +4467,269.23,67.941 +4468,267.92,69.282 +4469,270.88,65.272 +4470,269.34,66.619 +4471,267.9,67.955 +4472,266.54,69.28 +4473,269.63,65.321 +4474,268.05,66.65 +4475,266.56,67.969 +4476,265.16,69.277 +4477,268.38,65.371 +4478,266.76,66.681 +4479,265.23,67.983 +4480,263.79,69.274 +4481,267.13,65.421 +4482,265.46,66.713 +4483,263.89,67.996 +4484,262.42,69.269 +4485,265.88,65.473 +4486,264.17,66.745 +4487,262.56,68.009 +4488,261.04,69.263 +4489,264.63,65.526 +4490,262.87,66.778 +4491,261.22,68.022 +4492,259.67,69.256 +4493,263.37,65.58 +4494,261.58,66.811 +4495,259.89,68.034 +4496,258.3,69.248 +4497,262.11,65.634 +4498,260.28,66.844 +4499,258.56,68.046 +4500,256.93,69.239 +4501,260.85,65.69 +4502,258.98,66.877 +4503,257.22,68.058 +4504,255.57,69.23 +4505,259.59,65.747 +4506,257.69,66.911 +4507,255.89,68.069 +4508,254.2,69.219 +4509,258.33,65.804 +4510,256.39,66.945 +4511,254.56,68.08 +4512,252.83,69.207 +4513,257.07,65.863 +4514,255.09,66.979 +4515,253.23,68.09 +4516,251.47,69.195 +4517,255.8,65.922 +4518,253.79,67.014 +4519,251.9,68.101 +4520,250.11,69.181 +4521,254.54,65.982 +4522,252.49,67.049 +4523,250.57,68.111 +4524,248.75,69.167 +4525,253.27,66.043 +4526,251.19,67.084 +4527,249.24,68.121 +4528,247.39,69.151 +4529,252,66.105 +4530,249.89,67.12 +4531,247.91,68.13 +4532,246.03,69.135 +4533,250.73,66.168 +4534,248.59,67.155 +4535,246.58,68.139 +4536,244.67,69.119 +4537,249.46,66.231 +4538,247.29,67.191 +4539,245.25,68.148 +4540,243.32,69.101 +4541,248.18,66.295 +4542,245.99,67.227 +4543,243.92,68.157 +4544,241.96,69.083 +4545,246.91,66.36 +4546,244.69,67.264 +4547,242.59,68.165 +4548,240.61,69.063 +4549,245.63,66.426 +4550,243.38,67.301 +4551,241.27,68.174 +4552,239.26,69.043 +4553,244.35,66.492 +4554,242.08,67.337 +4555,239.94,68.182 +4556,237.91,69.023 +4557,243.07,66.559 +4558,240.78,67.375 +4559,238.61,68.189 +4560,236.56,69.002 +4561,241.78,66.626 +4562,239.47,67.412 +4563,237.29,68.197 +4564,235.22,68.98 +4565,240.5,66.694 +4566,238.17,67.449 +4567,235.96,68.204 +4568,233.87,68.957 +4569,239.21,66.763 +4570,236.86,67.487 +4571,234.64,68.211 +4572,232.53,68.934 +4573,237.92,66.832 +4574,235.55,67.525 +4575,233.31,68.218 +4576,231.19,68.91 +4577,236.63,66.902 +4578,234.25,67.563 +4579,231.99,68.225 +4580,229.85,68.886 +4581,235.34,66.972 +4582,232.94,67.601 +4583,230.67,68.231 +4584,228.51,68.861 +4585,234.05,67.043 +4586,231.63,67.64 +4587,229.35,68.237 +4588,227.17,68.836 +4589,232.75,67.114 +4590,230.32,67.678 +4591,228.02,68.244 +4592,225.84,68.81 +4593,231.45,67.186 +4594,229.01,67.717 +4595,226.7,68.25 +4596,224.5,68.783 +4597,230.15,67.258 +4598,227.7,67.756 +4599,225.38,68.255 +4600,223.17,68.757 +4601,228.85,67.33 +4602,226.39,67.794 +4603,224.06,68.261 +4604,221.84,68.729 +4605,227.55,67.403 +4606,225.08,67.833 +4607,222.74,68.267 +4608,220.51,68.702 +4609,226.24,67.476 +4610,223.77,67.873 +4611,221.42,68.272 +4612,219.19,68.674 +4613,224.93,67.549 +4614,222.46,67.912 +4615,220.1,68.277 +4616,217.86,68.646 +4617,223.62,67.623 +4618,221.14,67.951 +4619,218.79,68.283 +4620,216.54,68.617 +4621,222.31,67.697 +4622,219.83,67.99 +4623,217.47,68.288 +4624,215.22,68.588 +4625,221,67.771 +4626,218.51,68.03 +4627,216.15,68.293 +4628,213.9,68.559 +4629,219.68,67.845 +4630,217.2,68.069 +4631,214.84,68.298 +4632,212.58,68.53 +4633,218.37,67.919 +4634,215.88,68.109 +4635,213.52,68.303 +4636,211.26,68.5 +4637,217.05,67.993 +4638,214.57,68.148 +4639,212.21,68.308 +4640,209.95,68.471 +4641,215.73,68.068 +4642,213.25,68.188 +4643,210.89,68.313 +4644,208.63,68.441 +4645,214.41,68.142 +4646,211.93,68.228 +4647,209.58,68.317 +4648,207.32,68.411 +4649,213.08,68.217 +4650,210.61,68.267 +4651,208.26,68.322 +4652,206.01,68.381 +4653,211.75,68.291 +4654,209.3,68.307 +4655,206.95,68.327 +4656,204.7,68.351 +4657,210.43,68.366 +4658,207.98,68.347 +4659,205.64,68.332 +4660,203.4,68.321 +4661,209.1,68.44 +4662,206.66,68.386 +4663,204.33,68.336 +4664,202.09,68.291 +4665,207.76,68.515 +4666,205.34,68.426 +4667,203.02,68.341 +4668,200.79,68.261 +4669,206.43,68.589 +4670,204.01,68.465 +4671,201.71,68.346 +4672,199.49,68.231 +4673,205.09,68.663 +4674,202.69,68.505 +4675,200.4,68.351 +4676,198.19,68.201 +4677,203.76,68.737 +4678,201.37,68.544 +4679,199.09,68.355 +4680,196.89,68.171 +4681,202.42,68.811 +4682,200.05,68.584 +4683,197.78,68.36 +4684,195.6,68.141 +4685,201.08,68.884 +4686,198.72,68.623 +4687,196.47,68.365 +4688,194.3,68.112 +4689,199.73,68.958 +4690,197.4,68.662 +4691,195.16,68.37 +4692,193.01,68.083 +4693,198.39,69.031 +4694,196.07,68.701 +4695,193.86,68.375 +4696,191.72,68.053 +4697,197.04,69.103 +4698,194.75,68.74 +4699,192.55,68.38 +4700,190.43,68.025 +4701,195.69,69.176 +4702,193.42,68.779 +4703,191.24,68.386 +4704,189.14,67.996 +4705,194.34,69.248 +4706,192.1,68.818 +4707,189.94,68.391 +4708,187.85,67.968 +4709,192.99,69.319 +4710,190.77,68.857 +4711,188.63,68.397 +4712,186.57,67.94 +4713,191.64,69.391 +4714,189.44,68.895 +4715,187.33,68.402 +4716,185.29,67.913 +4717,190.28,69.461 +4718,188.11,68.933 +4719,186.02,68.408 +4720,184,67.885 +4721,188.93,69.532 +4722,186.79,68.972 +4723,184.72,68.414 +4724,182.73,67.859 +4725,187.57,69.602 +4726,185.46,69.01 +4727,183.42,68.42 +4728,181.45,67.832 +4729,186.21,69.671 +4730,184.13,69.048 +4731,182.12,68.426 +4732,180.17,67.807 +4733,184.85,69.74 +4734,182.8,69.085 +4735,180.81,68.432 +4736,178.89,67.781 +4737,183.49,69.808 +4738,181.46,69.123 +4739,179.51,68.439 +4740,177.62,67.757 +4741,182.12,69.876 +4742,180.13,69.16 +4743,178.21,68.445 +4744,176.35,67.732 +4745,180.76,69.943 +4746,178.8,69.197 +4747,176.91,68.452 +4748,175.08,67.709 +4749,179.39,70.009 +4750,177.47,69.234 +4751,175.61,68.459 +4752,173.81,67.686 +4753,178.02,70.075 +4754,176.14,69.271 +4755,174.31,68.467 +4756,172.54,67.663 +4757,176.65,70.14 +4758,174.8,69.307 +4759,173.01,68.474 +4760,171.27,67.641 +4761,175.28,70.204 +4762,173.47,69.344 +4763,171.71,68.482 +4764,170.01,67.62 +4765,173.91,70.268 +4766,172.14,69.38 +4767,170.42,68.49 +4768,168.74,67.6 +4769,172.54,70.331 +4770,170.8,69.415 +4771,169.12,68.498 +4772,167.48,67.58 +4773,171.16,70.393 +4774,169.47,69.451 +4775,167.82,68.506 +4776,166.22,67.561 +4777,169.79,70.454 +4778,168.13,69.486 +4779,166.52,68.515 +4780,164.96,67.543 +4781,168.41,70.515 +4782,166.79,69.521 +4783,165.23,68.524 +4784,163.7,67.526 +4785,167.03,70.575 +4786,165.46,69.556 +4787,163.93,68.533 +4788,162.44,67.509 +4789,165.65,70.634 +4790,164.12,69.59 +4791,162.63,68.543 +4792,161.19,67.493 +4793,164.27,70.692 +4794,162.78,69.624 +4795,161.34,68.552 +4796,159.93,67.478 +4797,162.89,70.749 +4798,161.45,69.658 +4799,160.04,68.563 +4800,158.68,67.464 +4801,161.51,70.805 +4802,160.11,69.691 +4803,158.75,68.573 +4804,157.42,67.451 +4805,160.13,70.86 +4806,158.77,69.724 +4807,157.45,68.584 +4808,156.17,67.439 +4809,158.74,70.915 +4810,157.43,69.757 +4811,156.16,68.594 +4812,154.92,67.428 +4813,157.36,70.968 +4814,156.09,69.79 +4815,154.87,68.606 +4816,153.67,67.417 +4817,155.97,71.021 +4818,154.75,69.822 +4819,153.57,68.617 +4820,152.42,67.408 +4821,154.59,71.072 +4822,153.42,69.854 +4823,152.28,68.629 +4824,151.17,67.399 +4825,153.2,71.123 +4826,152.08,69.885 +4827,150.99,68.641 +4828,149.93,67.392 +4829,151.81,71.172 +4830,150.74,69.917 +4831,149.69,68.654 +4832,148.68,67.386 +4833,150.42,71.221 +4834,149.4,69.948 +4835,148.4,68.667 +4836,147.43,67.38 +4837,149.03,71.268 +4838,148.06,69.978 +4839,147.11,68.68 +4840,146.19,67.376 +4841,147.64,71.314 +4842,146.71,70.008 +4843,145.82,68.694 +4844,144.95,67.373 +4845,146.25,71.36 +4846,145.37,70.038 +4847,144.52,68.708 +4848,143.7,67.371 +4849,144.86,71.404 +4850,144.03,70.067 +4851,143.23,68.722 +4852,142.46,67.369 +4853,143.47,71.447 +4854,142.69,70.096 +4855,141.94,68.737 +4856,141.22,67.369 +4857,142.08,71.489 +4858,141.35,70.125 +4859,140.65,68.752 +4860,139.98,67.371 +4861,140.69,71.53 +4862,140.01,70.153 +4863,139.36,68.767 +4864,138.74,67.373 +4865,139.29,71.57 +4866,138.67,70.181 +4867,138.07,68.783 +4868,137.5,67.376 +4869,137.9,71.609 +4870,137.32,70.209 +4871,136.78,68.799 +4872,136.26,67.381 +4873,136.51,71.646 +4874,135.98,70.236 +4875,135.49,68.816 +4876,135.02,67.386 +4877,135.11,71.683 +4878,134.64,70.263 +4879,134.2,68.833 +4880,133.78,67.393 +4881,133.72,71.718 +4882,133.3,70.289 +4883,132.9,68.85 +4884,132.54,67.401 +4885,132.33,71.752 +4886,131.96,70.315 +4887,131.61,68.868 +4888,131.3,67.411 +4889,130.93,71.785 +4890,130.61,70.341 +4891,130.32,68.886 +4892,130.06,67.421 +4893,129.54,71.817 +4894,129.27,70.366 +4895,129.03,68.904 +4896,128.83,67.433 +4897,128.14,71.847 +4898,127.93,70.391 +4899,127.74,68.923 +4900,127.59,67.445 +4901,126.75,71.877 +4902,126.59,70.415 +4903,126.45,68.942 +4904,126.35,67.459 +4905,125.36,71.905 +4906,125.24,70.439 +4907,125.16,68.962 +4908,125.12,67.475 +4909,123.96,71.932 +4910,123.9,70.463 +4911,123.87,68.982 +4912,123.88,67.491 +4913,122.57,71.958 +4914,122.56,70.486 +4915,122.58,69.002 +4916,122.64,67.509 +4917,121.17,71.983 +4918,121.21,70.509 +4919,121.29,69.023 +4920,121.4,67.528 +4921,119.78,72.006 +4922,119.87,70.531 +4923,120,69.044 +4924,120.17,67.548 +4925,118.38,72.029 +4926,118.53,70.553 +4927,118.71,69.066 +4928,118.93,67.569 +4929,116.99,72.05 +4930,117.19,70.575 +4931,117.42,69.088 +4932,117.69,67.592 +4933,115.6,72.07 +4934,115.84,70.596 +4935,116.13,69.111 +4936,116.46,67.615 +4937,114.2,72.089 +4938,114.5,70.617 +4939,114.84,69.134 +4940,115.22,67.64 +4941,112.81,72.106 +4942,113.16,70.637 +4943,113.55,69.157 +4944,113.98,67.667 +4945,111.42,72.123 +4946,111.82,70.657 +4947,112.26,69.18 +4948,112.74,67.694 +4949,110.03,72.138 +4950,110.47,70.677 +4951,110.97,69.204 +4952,111.5,67.723 +4953,108.64,72.152 +4954,109.13,70.696 +4955,109.68,69.229 +4956,110.27,67.753 +4957,107.24,72.165 +4958,107.79,70.715 +4959,108.38,69.254 +4960,109.03,67.784 +4961,105.85,72.177 +4962,106.45,70.733 +4963,107.09,69.279 +4964,107.79,67.816 +4965,104.46,72.187 +4966,105.11,70.751 +4967,105.8,69.305 +4968,106.55,67.849 +4969,103.07,72.197 +4970,103.77,70.769 +4971,104.51,69.331 +4972,105.31,67.884 +4973,101.69,72.205 +4974,102.42,70.786 +4975,103.22,69.357 +4976,104.07,67.92 +4977,100.3,72.212 +4978,101.08,70.803 +4979,101.92,69.384 +4980,102.82,67.957 +4981,98.91,72.218 +4982,99.743,70.819 +4983,100.63,69.411 +4984,101.58,67.995 +4985,97.523,72.223 +4986,98.403,70.835 +4987,99.339,69.438 +4988,100.34,68.034 +4989,96.137,72.227 +4990,97.062,70.851 +4991,98.046,69.466 +4992,99.093,68.075 +4993,94.752,72.23 +4994,95.722,70.866 +4995,96.753,69.495 +4996,97.849,68.116 +4997,93.367,72.231 +4998,94.382,70.881 +4999,95.459,69.523 +5000,96.603,68.159 +5001,91.984,72.232 +5002,93.043,70.896 +5003,94.165,69.552 +5004,95.356,68.203 +5005,90.601,72.231 +5006,91.704,70.91 +5007,92.871,69.582 +5008,94.109,68.248 +5009,89.219,72.229 +5010,90.365,70.924 +5011,91.576,69.611 +5012,92.861,68.294 +5013,87.838,72.227 +5014,89.026,70.938 +5015,90.281,69.642 +5016,91.611,68.341 +5017,86.458,72.223 +5018,87.687,70.951 +5019,88.986,69.672 +5020,90.361,68.389 +5021,85.079,72.218 +5022,86.349,70.963 +5023,87.691,69.703 +5024,89.11,68.438 +5025,83.701,72.212 +5026,85.012,70.976 +5027,86.395,69.734 +5028,87.857,68.488 +5029,82.325,72.206 +5030,83.674,70.988 +5031,85.098,69.765 +5032,86.604,68.539 +5033,80.949,72.198 +5034,82.337,71 +5035,83.801,69.797 +5036,85.349,68.591 +5037,79.574,72.189 +5038,81.001,71.011 +5039,82.504,69.829 +5040,84.093,68.644 +5041,78.2,72.18 +5042,79.664,71.023 +5043,81.207,69.862 +5044,82.836,68.699 +5045,76.828,72.169 +5046,78.328,71.033 +5047,79.909,69.894 +5048,81.577,68.754 +5049,75.457,72.158 +5050,76.993,71.044 +5051,78.61,69.927 +5052,80.318,68.81 +5053,74.087,72.145 +5054,75.658,71.054 +5055,77.312,69.961 +5056,79.057,68.866 +5057,72.718,72.132 +5058,74.323,71.064 +5059,76.012,69.994 +5060,77.794,68.924 +5061,71.35,72.118 +5062,72.989,71.074 +5063,74.712,70.028 +5064,76.531,68.983 +5065,69.984,72.103 +5066,71.655,71.083 +5067,73.412,70.062 +5068,75.265,69.042 +5069,68.619,72.087 +5070,70.321,71.092 +5071,72.112,70.097 +5072,73.999,69.102 +5073,67.255,72.071 +5074,68.988,71.101 +5075,70.81,70.132 +5076,72.731,69.164 +5077,65.893,72.053 +5078,67.656,71.11 +5079,69.509,70.167 +5080,71.461,69.225 +5081,64.532,72.035 +5082,66.324,71.118 +5083,68.206,70.202 +5084,70.19,69.288 +5085,63.172,72.016 +5086,64.992,71.126 +5087,66.904,70.237 +5088,68.918,69.351 +5089,61.814,71.997 +5090,63.661,71.134 +5091,65.601,70.273 +5092,67.644,69.415 +5093,60.457,71.976 +5094,62.33,71.142 +5095,64.297,70.309 +5096,66.368,69.48 +5097,59.101,71.955 +5098,61,71.149 +5099,62.993,70.345 +5100,65.091,69.545 +5101,57.748,71.934 +5102,59.67,71.156 +5103,61.688,70.381 +5104,63.812,69.611 +5105,56.395,71.911 +5106,58.341,71.163 +5107,60.382,70.418 +5108,62.531,69.678 +5109,55.044,71.889 +5110,57.012,71.17 +5111,59.077,70.455 +5112,61.249,69.745 +5113,53.695,71.865 +5114,55.684,71.176 +5115,57.77,70.492 +5116,59.965,69.813 +5117,52.347,71.841 +5118,54.356,71.183 +5119,56.463,70.529 +5120,58.679,69.881 +5121,51,71.817 +5122,53.029,71.189 +5123,55.156,70.566 +5124,57.392,69.95 +5125,49.655,71.791 +5126,51.703,71.195 +5127,53.847,70.604 +5128,56.103,70.019 +5129,48.312,71.766 +5130,50.376,71.201 +5131,52.539,70.641 +5132,54.812,70.089 +5133,46.97,71.74 +5134,49.051,71.206 +5135,51.229,70.679 +5136,53.519,70.159 +5137,45.63,71.714 +5138,47.726,71.212 +5139,49.919,70.717 +5140,52.225,70.23 +5141,44.291,71.687 +5142,46.401,71.217 +5143,48.609,70.755 +5144,50.928,70.301 +5145,42.954,71.659 +5146,45.077,71.223 +5147,47.298,70.793 +5148,49.63,70.372 +5149,41.619,71.632 +5150,43.754,71.228 +5151,45.986,70.831 +5152,48.331,70.444 +5153,40.285,71.604 +5154,42.431,71.233 +5155,44.674,70.87 +5156,47.029,70.516 +5157,38.953,71.576 +5158,41.108,71.238 +5159,43.361,70.908 +5160,45.726,70.588 +5161,37.623,71.547 +5162,39.787,71.243 +5163,42.048,70.947 +5164,44.42,70.66 +5165,36.294,71.518 +5166,38.465,71.248 +5167,40.734,70.985 +5168,43.113,70.733 +5169,34.966,71.489 +5170,37.145,71.252 +5171,39.419,71.024 +5172,41.804,70.806 +5173,33.641,71.46 +5174,35.824,71.257 +5175,38.104,71.063 +5176,40.493,70.879 +5177,32.317,71.431 +5178,34.505,71.262 +5179,36.788,71.102 +5180,39.181,70.952 +5181,30.995,71.401 +5182,33.186,71.266 +5183,35.472,71.14 +5184,37.866,71.025 +5185,29.674,71.372 +5186,31.867,71.271 +5187,34.154,71.179 +5188,36.55,71.098 +5189,28.355,71.342 +5190,30.549,71.275 +5191,32.837,71.218 +5192,35.232,71.172 +5193,27.038,71.312 +5194,29.232,71.28 +5195,31.518,71.257 +5196,33.912,71.245 +5197,25.722,71.282 +5198,27.915,71.284 +5199,30.2,71.296 +5200,32.59,71.318 +5201,24.408,71.252 +5202,26.599,71.289 +5203,28.88,71.335 +5204,31.266,71.392 +5205,23.096,71.223 +5206,25.283,71.293 +5207,27.56,71.374 +5208,29.941,71.465 +5209,21.786,71.193 +5210,23.968,71.298 +5211,26.239,71.413 +5212,28.614,71.538 +5213,20.477,71.163 +5214,22.653,71.302 +5215,24.918,71.451 +5216,27.285,71.611 +5217,19.169,71.134 +5218,21.339,71.307 +5219,23.596,71.49 +5220,25.954,71.684 +5221,17.864,71.104 +5222,20.026,71.312 +5223,22.274,71.529 +5224,24.621,71.757 +5225,16.56,71.075 +5226,18.713,71.316 +5227,20.951,71.567 +5228,23.286,71.829 +5229,15.257,71.046 +5230,17.4,71.321 +5231,19.627,71.606 +5232,21.95,71.901 +5233,13.957,71.017 +5234,16.089,71.326 +5235,18.303,71.645 +5236,20.612,71.973 +5237,12.658,70.988 +5238,14.777,71.331 +5239,16.978,71.683 +5240,19.272,72.045 +5241,11.36,70.96 +5242,13.466,71.336 +5243,15.652,71.721 +5244,17.931,72.117 +5245,10.064,70.932 +5246,12.156,71.341 +5247,14.326,71.759 +5248,16.588,72.188 +5249,8.7699,70.904 +5250,10.846,71.346 +5251,13,71.798 +5252,15.243,72.258 +5253,7.4772,70.877 +5254,9.5372,71.351 +5255,11.673,71.835 +5256,13.896,72.329 +5257,6.1861,70.849 +5258,8.2285,71.357 +5259,10.345,71.873 +5260,12.548,72.399 +5261,4.8965,70.823 +5262,6.9203,71.363 +5263,9.0169,71.911 +5264,11.198,72.468 +5265,3.6085,70.797 +5266,5.6127,71.368 +5267,7.6881,71.949 +5268,9.8466,72.537 +5269,2.3221,70.771 +5270,4.3055,71.374 +5271,6.3588,71.986 +5272,8.4934,72.606 +5273,1.0371,70.746 +5274,2.9988,71.38 +5275,5.029,72.023 +5276,7.1387,72.674 +5277,359.75,70.721 +5278,1.6927,71.387 +5279,3.6986,72.06 +5280,5.7824,72.741 +5281,358.47,70.697 +5282,0.38698,71.393 +5283,2.3677,72.097 +5284,4.4246,72.808 +5285,357.19,70.673 +5286,359.08,71.4 +5287,1.0363,72.134 +5288,3.0653,72.875 +5289,355.91,70.65 +5290,357.78,71.406 +5291,359.7,72.17 +5292,1.7045,72.94 +5293,354.63,70.627 +5294,356.47,71.414 +5295,358.37,72.206 +5296,0.34217,73.005 +5297,353.36,70.605 +5298,355.17,71.421 +5299,357.04,72.242 +5300,358.98,73.07 +5301,352.08,70.584 +5302,353.87,71.428 +5303,355.71,72.278 +5304,357.61,73.134 +5305,350.81,70.564 +5306,352.56,71.436 +5307,354.37,72.314 +5308,356.25,73.197 +5309,349.54,70.544 +5310,351.26,71.444 +5311,353.04,72.349 +5312,354.88,73.259 +5313,348.27,70.525 +5314,349.96,71.452 +5315,351.7,72.384 +5316,353.51,73.321 +5317,347,70.506 +5318,348.66,71.46 +5319,350.37,72.419 +5320,352.14,73.382 +5321,345.73,70.489 +5322,347.36,71.469 +5323,349.03,72.454 +5324,350.77,73.442 +5325,344.46,70.472 +5326,346.05,71.478 +5327,347.7,72.488 +5328,349.39,73.501 +5329,343.2,70.456 +5330,344.75,71.487 +5331,346.36,72.522 +5332,348.02,73.559 +5333,341.93,70.441 +5334,343.45,71.497 +5335,345.02,72.556 +5336,346.64,73.617 +5337,340.67,70.427 +5338,342.15,71.507 +5339,343.68,72.589 +5340,345.27,73.674 +5341,339.41,70.413 +5342,340.86,71.517 +5343,342.35,72.622 +5344,343.89,73.73 +5345,338.15,70.401 +5346,339.56,71.527 +5347,341.01,72.655 +5348,342.51,73.785 +5349,336.89,70.389 +5350,338.26,71.538 +5351,339.67,72.688 +5352,341.13,73.839 +5353,335.63,70.378 +5354,336.96,71.549 +5355,338.33,72.72 +5356,339.75,73.892 +5357,334.37,70.369 +5358,335.66,71.56 +5359,336.99,72.752 +5360,338.37,73.944 +5361,333.11,70.36 +5362,334.36,71.572 +5363,335.65,72.784 +5364,336.99,73.995 +5365,331.86,70.352 +5366,333.07,71.584 +5367,334.31,72.815 +5368,335.6,74.046 +5369,330.6,70.345 +5370,331.77,71.596 +5371,332.97,72.846 +5372,334.22,74.095 +5373,329.35,70.34 +5374,330.47,71.609 +5375,331.63,72.877 +5376,332.83,74.143 +5377,328.1,70.335 +5378,329.18,71.622 +5379,330.29,72.907 +5380,331.45,74.19 +5381,326.85,70.331 +5382,327.88,71.635 +5383,328.95,72.937 +5384,330.06,74.237 +5385,325.59,70.329 +5386,326.58,71.649 +5387,327.61,72.967 +5388,328.67,74.282 +5389,324.34,70.327 +5390,325.29,71.663 +5391,326.27,72.996 +5392,327.28,74.326 +5393,323.09,70.327 +5394,323.99,71.677 +5395,324.93,73.025 +5396,325.89,74.369 +5397,321.85,70.327 +5398,322.7,71.692 +5399,323.58,73.053 +5400,324.5,74.411 +5401,320.6,70.329 +5402,321.4,71.707 +5403,322.24,73.082 +5404,323.11,74.452 +5405,319.35,70.332 +5406,320.11,71.723 +5407,320.9,73.11 +5408,321.72,74.492 +5409,318.1,70.336 +5410,318.81,71.738 +5411,319.56,73.137 +5412,320.33,74.53 +5413,316.86,70.341 +5414,317.52,71.755 +5415,318.21,73.164 +5416,318.94,74.568 +5417,315.61,70.348 +5418,316.22,71.771 +5419,316.87,73.191 +5420,317.55,74.604 +5421,314.36,70.355 +5422,314.93,71.788 +5423,315.53,73.217 +5424,316.16,74.64 +5425,313.12,70.364 +5426,313.64,71.806 +5427,314.18,73.243 +5428,314.76,74.674 +5429,311.88,70.374 +5430,312.34,71.824 +5431,312.84,73.269 +5432,313.37,74.707 +5433,310.63,70.385 +5434,311.05,71.842 +5435,311.5,73.294 +5436,311.98,74.739 +5437,309.39,70.397 +5438,309.75,71.861 +5439,310.15,73.319 +5440,310.58,74.77 +5441,308.14,70.411 +5442,308.46,71.88 +5443,308.81,73.343 +5444,309.19,74.799 +5445,306.9,70.425 +5446,307.17,71.899 +5447,307.46,73.367 +5448,307.79,74.828 +5449,305.66,70.441 +5450,305.87,71.919 +5451,306.12,73.391 +5452,306.4,74.855 +5453,304.42,70.458 +5454,304.58,71.939 +5455,304.78,73.414 +5456,305,74.881 +5457,303.17,70.477 +5458,303.29,71.96 +5459,303.43,73.437 +5460,303.61,74.906 +5461,301.93,70.496 +5462,301.99,71.981 +5463,302.09,73.459 +5464,302.22,74.93 +5465,300.69,70.517 +5466,300.7,72.002 +5467,300.74,73.481 +5468,300.82,74.953 +5469,299.45,70.539 +5470,299.41,72.024 +5471,299.4,73.503 +5472,299.43,74.974 +5473,298.2,70.562 +5474,298.11,72.046 +5475,298.06,73.524 +5476,298.03,74.994 +5477,296.96,70.587 +5478,296.82,72.069 +5479,296.71,73.545 +5480,296.64,75.013 +5481,295.72,70.612 +5482,295.53,72.092 +5483,295.37,73.565 +5484,295.24,75.031 +5485,294.48,70.639 +5486,294.23,72.115 +5487,294.02,73.585 +5488,293.85,75.048 +5489,293.23,70.667 +5490,292.94,72.139 +5491,292.68,73.605 +5492,292.46,75.064 +5493,291.99,70.696 +5494,291.64,72.163 +5495,291.34,73.624 +5496,291.06,75.078 +5497,290.75,70.727 +5498,290.35,72.188 +5499,289.99,73.643 +5500,289.67,75.091 +5501,289.5,70.759 +5502,289.06,72.213 +5503,288.65,73.662 +5504,288.28,75.103 +5505,288.26,70.792 +5506,287.76,72.238 +5507,287.3,73.68 +5508,286.89,75.114 +5509,287.02,70.826 +5510,286.47,72.264 +5511,285.96,73.698 +5512,285.49,75.124 +5513,285.77,70.861 +5514,285.17,72.29 +5515,284.62,73.715 +5516,284.1,75.133 +5517,284.53,70.897 +5518,283.88,72.317 +5519,283.27,73.732 +5520,282.71,75.141 +5521,283.28,70.935 +5522,282.58,72.344 +5523,281.93,73.749 +5524,281.32,75.147 +5525,282.04,70.974 +5526,281.29,72.371 +5527,280.59,73.765 +5528,279.93,75.152 +5529,280.79,71.014 +5530,279.99,72.399 +5531,279.24,73.781 +5532,278.54,75.157 +5533,279.54,71.055 +5534,278.7,72.427 +5535,277.9,73.796 +5536,277.15,75.16 +5537,278.3,71.097 +5538,277.4,72.456 +5539,276.56,73.811 +5540,275.76,75.162 +5541,277.05,71.14 +5542,276.11,72.485 +5543,275.22,73.826 +5544,274.38,75.163 +5545,275.8,71.185 +5546,274.81,72.514 +5547,273.88,73.841 +5548,272.99,75.163 +5549,274.55,71.23 +5550,273.51,72.544 +5551,272.53,73.855 +5552,271.6,75.161 +5553,273.3,71.277 +5554,272.22,72.574 +5555,271.19,73.868 +5556,270.22,75.159 +5557,272.05,71.324 +5558,270.92,72.604 +5559,269.85,73.882 +5560,268.83,75.156 +5561,270.79,71.373 +5562,269.62,72.635 +5563,268.51,73.895 +5564,267.45,75.152 +5565,269.54,71.423 +5566,268.33,72.666 +5567,267.17,73.907 +5568,266.07,75.147 +5569,268.29,71.474 +5570,267.03,72.697 +5571,265.83,73.92 +5572,264.69,75.14 +5573,267.03,71.525 +5574,265.73,72.729 +5575,264.49,73.932 +5576,263.31,75.133 +5577,265.78,71.578 +5578,264.43,72.761 +5579,263.15,73.944 +5580,261.93,75.125 +5581,264.52,71.632 +5582,263.13,72.793 +5583,261.81,73.955 +5584,260.55,75.116 +5585,263.26,71.687 +5586,261.83,72.826 +5587,260.47,73.966 +5588,259.17,75.106 +5589,262,71.742 +5590,260.53,72.859 +5591,259.13,73.977 +5592,257.79,75.095 +5593,260.74,71.799 +5594,259.23,72.892 +5595,257.79,73.987 +5596,256.42,75.083 +5597,259.48,71.856 +5598,257.93,72.926 +5599,256.46,73.998 +5600,255.04,75.07 +5601,258.22,71.915 +5602,256.63,72.959 +5603,255.12,74.007 +5604,253.67,75.057 +5605,256.95,71.974 +5606,255.33,72.994 +5607,253.78,74.017 +5608,252.3,75.042 +5609,255.69,72.034 +5610,254.03,73.028 +5611,252.44,74.026 +5612,250.93,75.027 +5613,254.42,72.095 +5614,252.73,73.063 +5615,251.11,74.036 +5616,249.56,75.011 +5617,253.15,72.156 +5618,251.42,73.098 +5619,249.77,74.044 +5620,248.19,74.994 +5621,251.88,72.219 +5622,250.12,73.133 +5623,248.43,74.053 +5624,246.82,74.977 +5625,250.61,72.282 +5626,248.82,73.168 +5627,247.1,74.061 +5628,245.45,74.958 +5629,249.34,72.346 +5630,247.51,73.204 +5631,245.76,74.069 +5632,244.09,74.939 +5633,248.07,72.41 +5634,246.21,73.24 +5635,244.43,74.077 +5636,242.73,74.919 +5637,246.79,72.476 +5638,244.9,73.276 +5639,243.1,74.085 +5640,241.36,74.899 +5641,245.52,72.541 +5642,243.6,73.313 +5643,241.76,74.092 +5644,240,74.878 +5645,244.24,72.608 +5646,242.29,73.35 +5647,240.43,74.1 +5648,238.64,74.856 +5649,242.96,72.675 +5650,240.99,73.386 +5651,239.1,74.107 +5652,237.28,74.834 +5653,241.68,72.743 +5654,239.68,73.423 +5655,237.76,74.114 +5656,235.93,74.811 +5657,240.4,72.811 +5658,238.37,73.461 +5659,236.43,74.12 +5660,234.57,74.787 +5661,239.12,72.88 +5662,237.06,73.498 +5663,235.1,74.127 +5664,233.22,74.763 +5665,237.83,72.949 +5666,235.75,73.536 +5667,233.77,74.133 +5668,231.86,74.739 +5669,236.54,73.019 +5670,234.45,73.573 +5671,232.44,74.139 +5672,230.51,74.714 +5673,235.25,73.09 +5674,233.14,73.611 +5675,231.11,74.145 +5676,229.16,74.688 +5677,233.96,73.16 +5678,231.83,73.649 +5679,229.78,74.151 +5680,227.82,74.662 +5681,232.67,73.231 +5682,230.52,73.688 +5683,228.45,74.157 +5684,226.47,74.636 +5685,231.38,73.303 +5686,229.2,73.726 +5687,227.12,74.162 +5688,225.12,74.609 +5689,230.08,73.375 +5690,227.89,73.765 +5691,225.79,74.168 +5692,223.78,74.582 +5693,228.79,73.447 +5694,226.58,73.803 +5695,224.47,74.173 +5696,222.44,74.554 +5697,227.49,73.519 +5698,225.27,73.842 +5699,223.14,74.178 +5700,221.1,74.527 +5701,226.19,73.592 +5702,223.95,73.881 +5703,221.81,74.183 +5704,219.76,74.499 +5705,224.89,73.665 +5706,222.64,73.919 +5707,220.49,74.189 +5708,218.42,74.47 +5709,223.58,73.738 +5710,221.32,73.958 +5711,219.16,74.194 +5712,217.09,74.442 +5713,222.28,73.811 +5714,220.01,73.997 +5715,217.84,74.199 +5716,215.75,74.413 +5717,220.97,73.885 +5718,218.69,74.036 +5719,216.51,74.203 +5720,214.42,74.384 +5721,219.66,73.958 +5722,217.38,74.076 +5723,215.19,74.208 +5724,213.09,74.355 +5725,218.35,74.032 +5726,216.06,74.115 +5727,213.87,74.213 +5728,211.76,74.325 +5729,217.04,74.106 +5730,214.74,74.154 +5731,212.54,74.218 +5732,210.43,74.296 +5733,215.72,74.18 +5734,213.42,74.193 +5735,211.22,74.223 +5736,209.1,74.267 +5737,214.41,74.253 +5738,212.11,74.232 +5739,209.9,74.228 +5740,207.78,74.237 +5741,213.09,74.327 +5742,210.79,74.272 +5743,208.58,74.232 +5744,206.46,74.208 +5745,211.77,74.401 +5746,209.47,74.311 +5747,207.26,74.237 +5748,205.14,74.178 +5749,210.45,74.475 +5750,208.15,74.35 +5751,205.94,74.242 +5752,203.82,74.149 +5753,209.12,74.548 +5754,206.82,74.389 +5755,204.62,74.247 +5756,202.5,74.119 +5757,207.8,74.622 +5758,205.5,74.428 +5759,203.3,74.252 +5760,201.18,74.09 +5761,206.47,74.695 +5762,204.18,74.467 +5763,201.98,74.256 +5764,199.87,74.061 +5765,205.14,74.768 +5766,202.86,74.506 +5767,200.66,74.261 +5768,198.55,74.032 +5769,203.81,74.841 +5770,201.53,74.545 +5771,199.35,74.267 +5772,197.24,74.003 +5773,202.48,74.914 +5774,200.21,74.584 +5775,198.03,74.272 +5776,195.93,73.974 +5777,201.15,74.986 +5778,198.89,74.623 +5779,196.71,74.277 +5780,194.62,73.946 +5781,199.81,75.058 +5782,197.56,74.662 +5783,195.4,74.282 +5784,193.31,73.917 +5785,198.48,75.13 +5786,196.24,74.701 +5787,194.08,74.288 +5788,192.01,73.889 +5789,197.14,75.202 +5790,194.91,74.739 +5791,192.77,74.293 +5792,190.71,73.862 +5793,195.8,75.273 +5794,193.58,74.778 +5795,191.45,74.299 +5796,189.4,73.835 +5797,194.46,75.343 +5798,192.25,74.816 +5799,190.14,74.304 +5800,188.1,73.808 +5801,193.11,75.414 +5802,190.93,74.854 +5803,188.83,74.31 +5804,186.8,73.781 +5805,191.77,75.483 +5806,189.6,74.892 +5807,187.52,74.316 +5808,185.51,73.755 +5809,190.42,75.553 +5810,188.27,74.93 +5811,186.2,74.323 +5812,184.21,73.729 +5813,189.07,75.622 +5814,186.94,74.968 +5815,184.89,74.329 +5816,182.91,73.704 +5817,187.72,75.69 +5818,185.61,75.005 +5819,183.58,74.335 +5820,181.62,73.679 +5821,186.37,75.758 +5822,184.28,75.043 +5823,182.27,74.342 +5824,180.33,73.655 +5825,185.01,75.825 +5826,182.95,75.08 +5827,180.96,74.349 +5828,179.04,73.632 +5829,183.66,75.892 +5830,181.62,75.117 +5831,179.65,74.356 +5832,177.75,73.609 +5833,182.3,75.958 +5834,180.28,75.154 +5835,178.34,74.363 +5836,176.46,73.586 +5837,180.94,76.023 +5838,178.95,75.19 +5839,177.03,74.371 +5840,175.18,73.564 +5841,179.58,76.088 +5842,177.62,75.227 +5843,175.72,74.379 +5844,173.89,73.543 +5845,178.22,76.152 +5846,176.28,75.263 +5847,174.42,74.387 +5848,172.61,73.522 +5849,176.86,76.215 +5850,174.95,75.299 +5851,173.11,74.395 +5852,171.33,73.503 +5853,175.5,76.277 +5854,173.61,75.334 +5855,171.8,74.403 +5856,170.05,73.483 +5857,174.13,76.339 +5858,172.28,75.37 +5859,170.5,74.412 +5860,168.77,73.465 +5861,172.77,76.4 +5862,170.94,75.405 +5863,169.19,74.421 +5864,167.49,73.447 +5865,171.4,76.461 +5866,169.61,75.44 +5867,167.88,74.43 +5868,166.22,73.431 +5869,170.03,76.52 +5870,168.27,75.475 +5871,166.58,74.44 +5872,164.94,73.414 +5873,168.66,76.579 +5874,166.93,75.509 +5875,165.27,74.449 +5876,163.67,73.399 +5877,167.29,76.636 +5878,165.6,75.543 +5879,163.97,74.459 +5880,162.39,73.385 +5881,165.91,76.693 +5882,164.26,75.577 +5883,162.66,74.47 +5884,161.12,73.371 +5885,164.54,76.749 +5886,162.92,75.611 +5887,161.36,74.481 +5888,159.85,73.359 +5889,163.16,76.804 +5890,161.58,75.644 +5891,160.06,74.491 +5892,158.58,73.347 +5893,161.79,76.859 +5894,160.24,75.677 +5895,158.75,74.503 +5896,157.32,73.336 +5897,160.41,76.912 +5898,158.9,75.71 +5899,157.45,74.514 +5900,156.05,73.326 +5901,159.03,76.964 +5902,157.56,75.742 +5903,156.15,74.526 +5904,154.78,73.317 +5905,157.65,77.015 +5906,156.22,75.774 +5907,154.85,74.539 +5908,153.52,73.309 +5909,156.27,77.066 +5910,154.88,75.806 +5911,153.55,74.551 +5912,152.26,73.303 +5913,154.89,77.115 +5914,153.54,75.837 +5915,152.24,74.564 +5916,150.99,73.297 +5917,153.51,77.164 +5918,152.2,75.868 +5919,150.94,74.577 +5920,149.73,73.292 +5921,152.12,77.211 +5922,150.86,75.899 +5923,149.64,74.591 +5924,148.47,73.288 +5925,150.74,77.257 +5926,149.52,75.929 +5927,148.34,74.605 +5928,147.21,73.285 +5929,149.35,77.302 +5930,148.17,75.959 +5931,147.04,74.619 +5932,145.95,73.283 +5933,147.97,77.346 +5934,146.83,75.989 +5935,145.74,74.634 +5936,144.69,73.283 +5937,146.58,77.39 +5938,145.49,76.018 +5939,144.44,74.649 +5940,143.44,73.283 +5941,145.19,77.432 +5942,144.15,76.047 +5943,143.14,74.665 +5944,142.18,73.285 +5945,143.8,77.472 +5946,142.8,76.076 +5947,141.84,74.68 +5948,140.92,73.288 +5949,142.41,77.512 +5950,141.46,76.104 +5951,140.55,74.697 +5952,139.67,73.291 +5953,141.02,77.551 +5954,140.12,76.132 +5955,139.25,74.713 +5956,138.41,73.296 +5957,139.63,77.588 +5958,138.77,76.159 +5959,137.95,74.73 +5960,137.16,73.303 +5961,138.24,77.625 +5962,137.43,76.186 +5963,136.65,74.748 +5964,135.91,73.31 +5965,136.85,77.66 +5966,136.08,76.213 +5967,135.35,74.765 +5968,134.65,73.319 +5969,135.46,77.694 +5970,134.74,76.239 +5971,134.05,74.784 +5972,133.4,73.328 +5973,134.07,77.727 +5974,133.39,76.265 +5975,132.76,74.802 +5976,132.15,73.339 +5977,132.67,77.759 +5978,132.05,76.291 +5979,131.46,74.821 +5980,130.9,73.351 +5981,131.28,77.79 +5982,130.7,76.316 +5983,130.16,74.84 +5984,129.65,73.364 +5985,129.89,77.819 +5986,129.36,76.341 +5987,128.86,74.86 +5988,128.4,73.379 +5989,128.49,77.848 +5990,128.01,76.365 +5991,127.56,74.88 +5992,127.15,73.395 +5993,127.1,77.875 +5994,126.67,76.389 +5995,126.27,74.901 +5996,125.9,73.412 +5997,125.71,77.901 +5998,125.32,76.413 +5999,124.97,74.922 +6000,124.65,73.43 +6001,124.31,77.926 +6002,123.98,76.436 +6003,123.67,74.943 +6004,123.4,73.449 +6005,122.92,77.95 +6006,122.63,76.459 +6007,122.38,74.965 +6008,122.15,73.47 +6009,121.52,77.972 +6010,121.28,76.481 +6011,121.08,74.987 +6012,120.9,73.492 +6013,120.13,77.993 +6014,119.94,76.503 +6015,119.78,75.01 +6016,119.66,73.515 +6017,118.73,78.014 +6018,118.59,76.525 +6019,118.48,75.033 +6020,118.41,73.539 +6021,117.34,78.033 +6022,117.25,76.546 +6023,117.19,75.056 +6024,117.16,73.565 +6025,115.94,78.05 +6026,115.9,76.567 +6027,115.89,75.08 +6028,115.91,73.591 +6029,114.55,78.067 +6030,114.55,76.588 +6031,114.59,75.105 +6032,114.66,73.62 +6033,113.15,78.082 +6034,113.21,76.608 +6035,113.29,75.129 +6036,113.41,73.649 +6037,111.76,78.097 +6038,111.86,76.627 +6039,112,75.154 +6040,112.17,73.679 +6041,110.37,78.11 +6042,110.52,76.647 +6043,110.7,75.18 +6044,110.92,73.711 +6045,108.97,78.122 +6046,109.17,76.666 +6047,109.4,75.206 +6048,109.67,73.744 +6049,107.58,78.133 +6050,107.82,76.684 +6051,108.11,75.232 +6052,108.42,73.778 +6053,106.18,78.142 +6054,106.48,76.702 +6055,106.81,75.259 +6056,107.17,73.813 +6057,104.79,78.151 +6058,105.13,76.72 +6059,105.51,75.286 +6060,105.92,73.85 +6061,103.4,78.158 +6062,103.79,76.737 +6063,104.21,75.313 +6064,104.67,73.887 +6065,102.01,78.165 +6066,102.44,76.755 +6067,102.91,75.341 +6068,103.42,73.926 +6069,100.61,78.17 +6070,101.1,76.771 +6071,101.62,75.369 +6072,102.17,73.966 +6073,99.222,78.174 +6074,99.752,76.787 +6075,100.32,75.398 +6076,100.92,74.008 +6077,97.831,78.177 +6078,98.406,76.803 +6079,99.019,75.427 +6080,99.67,74.05 +6081,96.44,78.179 +6082,97.062,76.819 +6083,97.72,75.457 +6084,98.418,74.093 +6085,95.05,78.18 +6086,95.717,76.834 +6087,96.421,75.486 +6088,97.166,74.138 +6089,93.661,78.179 +6090,94.372,76.849 +6091,95.122,75.517 +6092,95.913,74.184 +6093,92.272,78.178 +6094,93.028,76.863 +6095,93.823,75.547 +6096,94.66,74.231 +6097,90.884,78.176 +6098,91.683,76.878 +6099,92.523,75.578 +6100,93.406,74.279 +6101,89.497,78.172 +6102,90.339,76.891 +6103,91.224,75.609 +6104,92.151,74.328 +6105,88.11,78.168 +6106,88.996,76.905 +6107,89.924,75.641 +6108,90.895,74.378 +6109,86.724,78.163 +6110,87.652,76.918 +6111,88.623,75.673 +6112,89.639,74.429 +6113,85.339,78.156 +6114,86.309,76.931 +6115,87.323,75.705 +6116,88.382,74.481 +6117,83.954,78.149 +6118,84.966,76.943 +6119,86.022,75.738 +6120,87.125,74.534 +6121,82.571,78.141 +6122,83.623,76.955 +6123,84.72,75.771 +6124,85.866,74.589 +6125,81.188,78.131 +6126,82.28,76.967 +6127,83.419,75.804 +6128,84.607,74.644 +6129,79.806,78.121 +6130,80.938,76.979 +6131,82.117,75.838 +6132,83.346,74.7 +6133,78.425,78.11 +6134,79.596,76.99 +6135,80.815,75.872 +6136,82.085,74.757 +6137,77.046,78.098 +6138,78.254,77.001 +6139,79.512,75.906 +6140,80.822,74.815 +6141,75.667,78.085 +6142,76.913,77.012 +6143,78.21,75.941 +6144,79.559,74.874 +6145,74.289,78.072 +6146,75.572,77.022 +6147,76.906,75.976 +6148,78.295,74.934 +6149,72.912,78.057 +6150,74.231,77.032 +6151,75.603,76.011 +6152,77.029,74.995 +6153,71.536,78.042 +6154,72.891,77.042 +6155,74.299,76.046 +6156,75.763,75.056 +6157,70.161,78.026 +6158,71.551,77.052 +6159,72.994,76.082 +6160,74.495,75.119 +6161,68.788,78.009 +6162,70.211,77.061 +6163,71.69,76.118 +6164,73.226,75.182 +6165,67.415,77.991 +6166,68.872,77.07 +6167,70.384,76.154 +6168,71.956,75.246 +6169,66.044,77.973 +6170,67.533,77.079 +6171,69.079,76.191 +6172,70.685,75.311 +6173,64.673,77.954 +6174,66.194,77.087 +6175,67.773,76.227 +6176,69.413,75.376 +6177,63.304,77.934 +6178,64.856,77.096 +6179,66.466,76.265 +6180,68.139,75.443 +6181,61.937,77.913 +6182,63.518,77.104 +6183,65.159,76.302 +6184,66.864,75.509 +6185,60.57,77.892 +6186,62.181,77.112 +6187,63.852,76.339 +6188,65.588,75.577 +6189,59.205,77.87 +6190,60.844,77.119 +6191,62.544,76.377 +6192,64.31,75.645 +6193,57.841,77.848 +6194,59.507,77.127 +6195,61.236,76.415 +6196,63.031,75.714 +6197,56.478,77.825 +6198,58.171,77.134 +6199,59.927,76.453 +6200,61.751,75.784 +6201,55.117,77.802 +6202,56.836,77.141 +6203,58.618,76.491 +6204,60.469,75.854 +6205,53.757,77.777 +6206,55.5,77.148 +6207,57.308,76.53 +6208,59.186,75.924 +6209,52.398,77.753 +6210,54.165,77.155 +6211,55.998,76.568 +6212,57.901,75.995 +6213,51.041,77.728 +6214,52.831,77.162 +6215,54.687,76.607 +6216,56.615,76.067 +6217,49.685,77.702 +6218,51.497,77.168 +6219,53.376,76.646 +6220,55.327,76.139 +6221,48.33,77.676 +6222,50.164,77.175 +6223,52.064,76.686 +6224,54.038,76.211 +6225,46.977,77.65 +6226,48.831,77.181 +6227,50.752,76.725 +6228,52.748,76.284 +6229,45.625,77.623 +6230,47.498,77.187 +6231,49.439,76.764 +6232,51.455,76.357 +6233,44.275,77.596 +6234,46.166,77.193 +6235,48.126,76.804 +6236,50.162,76.431 +6237,42.926,77.569 +6238,44.834,77.199 +6239,46.812,76.843 +6240,48.866,76.505 +6241,41.579,77.541 +6242,43.503,77.205 +6243,45.498,76.883 +6244,47.569,76.579 +6245,40.233,77.513 +6246,42.173,77.21 +6247,44.183,76.923 +6248,46.271,76.653 +6249,38.889,77.485 +6250,40.842,77.216 +6251,42.867,76.963 +6252,44.971,76.728 +6253,37.546,77.456 +6254,39.513,77.222 +6255,41.551,77.003 +6256,43.669,76.803 +6257,36.204,77.427 +6258,38.184,77.227 +6259,40.235,77.043 +6260,42.366,76.878 +6261,34.864,77.398 +6262,36.855,77.233 +6263,38.917,77.083 +6264,41.061,76.953 +6265,33.526,77.369 +6266,35.527,77.238 +6267,37.6,77.124 +6268,39.754,77.029 +6269,32.189,77.34 +6270,34.199,77.243 +6271,36.282,77.164 +6272,38.446,77.104 +6273,30.854,77.311 +6274,32.872,77.249 +6275,34.963,77.204 +6276,37.136,77.18 +6277,29.52,77.282 +6278,31.545,77.254 +6279,33.643,77.245 +6280,35.824,77.256 +6281,28.188,77.252 +6282,30.219,77.259 +6283,32.323,77.285 +6284,34.51,77.331 +6285,26.857,77.223 +6286,28.893,77.265 +6287,31.003,77.325 +6288,33.195,77.407 +6289,25.528,77.194 +6290,27.568,77.27 +6291,29.682,77.366 +6292,31.879,77.482 +6293,24.2,77.164 +6294,26.244,77.276 +6295,28.36,77.406 +6296,30.56,77.558 +6297,22.874,77.135 +6298,24.919,77.281 +6299,27.038,77.446 +6300,29.24,77.633 +6301,21.55,77.106 +6302,23.596,77.286 +6303,25.715,77.486 +6304,27.918,77.708 +6305,20.227,77.077 +6306,22.273,77.292 +6307,24.392,77.527 +6308,26.595,77.784 +6309,18.905,77.048 +6310,20.95,77.298 +6311,23.068,77.567 +6312,25.27,77.858 +6313,17.585,77.019 +6314,19.628,77.303 +6315,21.744,77.607 +6316,23.943,77.933 +6317,16.267,76.991 +6318,18.306,77.309 +6319,20.419,77.647 +6320,22.614,78.008 +6321,14.95,76.963 +6322,16.985,77.315 +6323,19.093,77.687 +6324,21.284,78.082 +6325,13.635,76.935 +6326,15.665,77.321 +6327,17.767,77.727 +6328,19.952,78.156 +6329,12.321,76.907 +6330,14.345,77.327 +6331,16.44,77.767 +6332,18.618,78.229 +6333,11.009,76.88 +6334,13.025,77.333 +6335,15.113,77.806 +6336,17.283,78.302 +6337,9.6985,76.853 +6338,11.706,77.339 +6339,13.785,77.846 +6340,15.946,78.375 +6341,8.3893,76.826 +6342,10.387,77.345 +6343,12.456,77.885 +6344,14.607,78.448 +6345,7.0817,76.8 +6346,9.0694,77.352 +6347,11.128,77.924 +6348,13.267,78.52 +6349,5.7755,76.774 +6350,7.7518,77.359 +6351,9.798,77.964 +6352,11.925,78.591 +6353,4.4709,76.749 +6354,6.4347,77.365 +6355,8.4679,78.003 +6356,10.582,78.662 +6357,3.1677,76.724 +6358,5.1181,77.372 +6359,7.1373,78.041 +6360,9.2366,78.733 +6361,1.866,76.699 +6362,3.802,77.38 +6363,5.8062,78.08 +6364,7.8899,78.803 +6365,0.56573,76.675 +6366,2.4863,77.387 +6367,4.4745,78.119 +6368,6.5416,78.872 +6369,359.27,76.652 +6370,1.1711,77.395 +6371,3.1423,78.157 +6372,5.1917,78.941 +6373,357.97,76.629 +6374,359.86,77.402 +6375,1.8096,78.195 +6376,3.8403,79.009 +6377,356.67,76.607 +6378,358.54,77.41 +6379,0.47632,78.233 +6380,2.4873,79.077 +6381,355.38,76.586 +6382,357.23,77.419 +6383,359.14,78.271 +6384,1.1328,79.144 +6385,354.09,76.565 +6386,355.91,77.427 +6387,357.81,78.308 +6388,359.78,79.21 +6389,352.79,76.545 +6390,354.6,77.436 +6391,356.47,78.345 +6392,358.42,79.275 +6393,351.5,76.525 +6394,353.29,77.445 +6395,355.14,78.382 +6396,357.06,79.34 +6397,350.21,76.507 +6398,351.98,77.454 +6399,353.8,78.419 +6400,355.7,79.404 +6401,348.93,76.489 +6402,350.67,77.463 +6403,352.47,78.456 +6404,354.34,79.468 +6405,347.64,76.472 +6406,349.35,77.473 +6407,351.13,78.492 +6408,352.98,79.53 +6409,346.36,76.455 +6410,348.04,77.483 +6411,349.79,78.528 +6412,351.61,79.592 +6413,345.07,76.44 +6414,346.73,77.493 +6415,348.45,78.564 +6416,350.24,79.653 +6417,343.79,76.425 +6418,345.42,77.504 +6419,347.12,78.599 +6420,348.88,79.713 +6421,342.51,76.411 +6422,344.11,77.514 +6423,345.78,78.634 +6424,347.51,79.772 +6425,341.23,76.398 +6426,342.8,77.526 +6427,344.44,78.669 +6428,346.14,79.83 +6429,339.95,76.386 +6430,341.5,77.537 +6431,343.1,78.704 +6432,344.77,79.887 +6433,338.67,76.375 +6434,340.19,77.549 +6435,341.76,78.738 +6436,343.4,79.944 +6437,337.39,76.364 +6438,338.88,77.561 +6439,340.42,78.772 +6440,342.02,79.999 +6441,336.12,76.355 +6442,337.57,77.573 +6443,339.08,78.806 +6444,340.65,80.0538 +6445,334.84,76.347 +6446,336.26,77.586 +6447,337.74,78.839 +6448,339.27,80.1073 +6449,333.57,76.339 +6450,334.96,77.599 +6451,336.4,78.872 +6452,337.89,80.1598 +6453,332.3,76.333 +6454,333.65,77.612 +6455,335.05,78.905 +6456,336.52,80.2114 +6457,331.03,76.328 +6458,332.34,77.626 +6459,333.71,78.937 +6460,335.14,80.2619 +6461,329.76,76.323 +6462,331.04,77.64 +6463,332.37,78.969 +6464,333.76,80.3113 +6465,328.49,76.32 +6466,329.73,77.655 +6467,331.03,79.001 +6468,332.38,80.3598 +6469,327.22,76.318 +6470,328.43,77.669 +6471,329.68,79.032 +6472,330.99,80.4071 +6473,325.95,76.317 +6474,327.12,77.685 +6475,328.34,79.063 +6476,329.61,80.4534 +6477,324.68,76.317 +6478,325.82,77.7 +6479,327,79.094 +6480,328.23,80.4985 +6481,323.42,76.318 +6482,324.51,77.716 +6483,325.65,79.124 +6484,326.84,80.5426 +6485,322.15,76.321 +6486,323.21,77.732 +6487,324.31,79.154 +6488,325.46,80.5856 +6489,320.89,76.324 +6490,321.9,77.749 +6491,322.96,79.184 +6492,324.07,80.6274 +6493,319.62,76.329 +6494,320.6,77.766 +6495,321.62,79.213 +6496,322.68,80.6682 +6497,318.36,76.335 +6498,319.3,77.784 +6499,320.27,79.241 +6500,321.29,80.7077 +6501,317.1,76.342 +6502,317.99,77.802 +6503,318.93,79.27 +6504,319.9,80.7462 +6505,315.84,76.35 +6506,316.69,77.82 +6507,317.58,79.298 +6508,318.52,80.7834 +6509,314.58,76.359 +6510,315.39,77.839 +6511,316.23,79.325 +6512,317.12,80.8195 +6513,313.32,76.37 +6514,314.08,77.858 +6515,314.89,79.353 +6516,315.73,80.8545 +6517,312.06,76.381 +6518,312.78,77.877 +6519,313.54,79.38 +6520,314.34,80.8882 +6521,310.8,76.394 +6522,311.48,77.897 +6523,312.19,79.406 +6524,312.95,80.9208 +6525,309.54,76.408 +6526,310.18,77.917 +6527,310.85,79.432 +6528,311.56,80.9522 +6529,308.28,76.424 +6530,308.87,77.938 +6531,309.5,79.458 +6532,310.17,80.9824 +6533,307.02,76.441 +6534,307.57,77.959 +6535,308.15,79.483 +6536,308.77,81.0114 +6537,305.77,76.458 +6538,306.27,77.981 +6539,306.8,79.508 +6540,307.38,81.0392 +6541,304.51,76.478 +6542,304.97,78.003 +6543,305.46,79.532 +6544,305.99,81.0658 +6545,303.25,76.498 +6546,303.66,78.025 +6547,304.11,79.556 +6548,304.59,81.0912 +6549,302,76.52 +6550,302.36,78.048 +6551,302.76,79.58 +6552,303.2,81.1155 +6553,300.74,76.542 +6554,301.06,78.071 +6555,301.41,79.603 +6556,301.8,81.1385 +6557,299.49,76.567 +6558,299.76,78.095 +6559,300.07,79.626 +6560,300.41,81.1603 +6561,298.23,76.592 +6562,298.46,78.119 +6563,298.72,79.649 +6564,299.01,81.1809 +6565,296.97,76.619 +6566,297.16,78.143 +6567,297.37,79.671 +6568,297.62,81.2003 +6569,295.72,76.647 +6570,295.85,78.168 +6571,296.02,79.692 +6572,296.22,81.2185 +6573,294.46,76.676 +6574,294.55,78.193 +6575,294.67,79.714 +6576,294.83,81.2355 +6577,293.21,76.706 +6578,293.25,78.219 +6579,293.32,79.734 +6580,293.43,81.2513 +6581,291.95,76.738 +6582,291.95,78.245 +6583,291.98,79.755 +6584,292.04,81.2659 +6585,290.7,76.771 +6586,290.65,78.272 +6587,290.63,79.775 +6588,290.64,81.2793 +6589,289.44,76.805 +6590,289.35,78.299 +6591,289.28,79.795 +6592,289.24,81.2916 +6593,288.19,76.84 +6594,288.04,78.326 +6595,287.93,79.814 +6596,287.85,81.3027 +6597,286.93,76.877 +6598,286.74,78.354 +6599,286.58,79.833 +6600,286.45,81.3126 +6601,285.68,76.915 +6602,285.44,78.382 +6603,285.23,79.851 +6604,285.06,81.3213 +6605,284.42,76.954 +6606,284.14,78.411 +6607,283.89,79.869 +6608,283.66,81.329 +6609,283.17,76.994 +6610,282.84,78.44 +6611,282.54,79.887 +6612,282.27,81.3354 +6613,281.91,77.035 +6614,281.53,78.469 +6615,281.19,79.905 +6616,280.88,81.3407 +6617,280.65,77.078 +6618,280.23,78.499 +6619,279.84,79.922 +6620,279.48,81.3449 +6621,279.4,77.122 +6622,278.93,78.529 +6623,278.49,79.938 +6624,278.09,81.348 +6625,278.14,77.167 +6626,277.63,78.559 +6627,277.14,79.954 +6628,276.7,81.35 +6629,276.88,77.213 +6630,276.32,78.59 +6631,275.8,79.97 +6632,275.3,81.3508 +6633,275.62,77.26 +6634,275.02,78.622 +6635,274.45,79.986 +6636,273.91,81.3506 +6637,274.36,77.309 +6638,273.72,78.653 +6639,273.1,80.0009 +6640,272.52,81.3493 +6641,273.1,77.358 +6642,272.41,78.686 +6643,271.75,80.0157 +6644,271.13,81.347 +6645,271.85,77.409 +6646,271.11,78.718 +6647,270.41,80.0302 +6648,269.74,81.3436 +6649,270.58,77.461 +6650,269.81,78.751 +6651,269.06,80.0443 +6652,268.35,81.3391 +6653,269.32,77.513 +6654,268.5,78.784 +6655,267.71,80.058 +6656,266.96,81.3337 +6657,268.06,77.567 +6658,267.2,78.817 +6659,266.37,80.0714 +6660,265.57,81.3272 +6661,266.8,77.622 +6662,265.89,78.851 +6663,265.02,80.0845 +6664,264.18,81.3198 +6665,265.54,77.678 +6666,264.59,78.886 +6667,263.67,80.0973 +6668,262.79,81.3113 +6669,264.27,77.735 +6670,263.28,78.92 +6671,262.33,80.1097 +6672,261.41,81.302 +6673,263.01,77.793 +6674,261.98,78.955 +6675,260.98,80.1218 +6676,260.02,81.2916 +6677,261.74,77.852 +6678,260.67,78.99 +6679,259.64,80.1337 +6680,258.64,81.2804 +6681,260.48,77.912 +6682,259.37,79.026 +6683,258.29,80.1452 +6684,257.25,81.2682 +6685,259.21,77.973 +6686,258.06,79.062 +6687,256.95,80.1564 +6688,255.87,81.2552 +6689,257.94,78.035 +6690,256.75,79.098 +6691,255.6,80.1673 +6692,254.49,81.2412 +6693,256.68,78.097 +6694,255.45,79.134 +6695,254.26,80.178 +6696,253.11,81.2265 +6697,255.41,78.161 +6698,254.14,79.171 +6699,252.91,80.1883 +6700,251.72,81.2109 +6701,254.13,78.225 +6702,252.83,79.208 +6703,251.57,80.1984 +6704,250.35,81.1944 +6705,252.86,78.29 +6706,251.52,79.245 +6707,250.22,80.2083 +6708,248.97,81.1772 +6709,251.59,78.356 +6710,250.21,79.283 +6711,248.88,80.2178 +6712,247.59,81.1592 +6713,250.32,78.423 +6714,248.9,79.321 +6715,247.54,80.2272 +6716,246.21,81.1405 +6717,249.04,78.491 +6718,247.6,79.359 +6719,246.19,80.2362 +6720,244.84,81.121 +6721,247.77,78.559 +6722,246.29,79.397 +6723,244.85,80.2451 +6724,243.46,81.1009 +6725,246.49,78.628 +6726,244.98,79.436 +6727,243.51,80.2537 +6728,242.09,81.08 +6729,245.21,78.698 +6730,243.67,79.475 +6731,242.17,80.2621 +6732,240.72,81.0585 +6733,243.93,78.768 +6734,242.36,79.514 +6735,240.83,80.2703 +6736,239.35,81.0363 +6737,242.65,78.839 +6738,241.04,79.553 +6739,239.49,80.2783 +6740,237.98,81.0135 +6741,241.37,78.911 +6742,239.73,79.592 +6743,238.15,80.2861 +6744,236.61,80.9902 +6745,240.09,78.983 +6746,238.42,79.632 +6747,236.81,80.2937 +6748,235.24,80.9662 +6749,238.8,79.056 +6750,237.11,79.672 +6751,235.47,80.3011 +6752,233.87,80.9418 +6753,237.51,79.13 +6754,235.79,79.712 +6755,234.13,80.3084 +6756,232.51,80.9167 +6757,236.23,79.204 +6758,234.48,79.752 +6759,232.79,80.3155 +6760,231.15,80.8912 +6761,234.94,79.278 +6762,233.17,79.792 +6763,231.45,80.3224 +6764,229.78,80.8653 +6765,233.65,79.353 +6766,231.85,79.833 +6767,230.11,80.3292 +6768,228.42,80.8389 +6769,232.36,79.428 +6770,230.54,79.874 +6771,228.77,80.3359 +6772,227.06,80.812 +6773,231.07,79.504 +6774,229.22,79.915 +6775,227.44,80.3424 +6776,225.7,80.7848 +6777,229.77,79.58 +6778,227.91,79.955 +6779,226.1,80.3488 +6780,224.35,80.7572 +6781,228.48,79.656 +6782,226.59,79.997 +6783,224.76,80.3551 +6784,222.99,80.7293 +6785,227.18,79.733 +6786,225.27,80.0377 +6787,223.43,80.3613 +6788,221.64,80.701 +6789,225.88,79.81 +6790,223.96,80.079 +6791,222.09,80.3674 +6792,220.28,80.6725 +6793,224.58,79.887 +6794,222.64,80.1204 +6795,220.76,80.3735 +6796,218.93,80.6437 +6797,223.28,79.964 +6798,221.32,80.1618 +6799,219.42,80.3794 +6800,217.58,80.6146 +6801,221.98,80.0421 +6802,220,80.2034 +6803,218.09,80.3853 +6804,216.23,80.5854 +6805,220.67,80.12 +6806,218.68,80.245 +6807,216.75,80.3912 +6808,214.88,80.556 +6809,219.37,80.198 +6810,217.36,80.2866 +6811,215.42,80.397 +6812,213.54,80.5264 +6813,218.06,80.2761 +6814,216.04,80.3283 +6815,214.09,80.4027 +6816,212.19,80.4967 +6817,216.75,80.3542 +6818,214.72,80.37 +6819,212.76,80.4085 +6820,210.85,80.4669 +6821,215.44,80.4324 +6822,213.4,80.4117 +6823,211.42,80.4142 +6824,209.51,80.437 +6825,214.13,80.5107 +6826,212.08,80.4535 +6827,210.09,80.4199 +6828,208.17,80.4071 +6829,212.81,80.5889 +6830,210.75,80.4953 +6831,208.76,80.4256 +6832,206.83,80.3772 +6833,211.5,80.6671 +6834,209.43,80.537 +6835,207.43,80.4313 +6836,205.49,80.3473 +6837,210.18,80.7453 +6838,208.11,80.5787 +6839,206.1,80.4371 +6840,204.16,80.3174 +6841,208.86,80.8233 +6842,206.78,80.6205 +6843,204.77,80.4429 +6844,202.82,80.2876 +6845,207.54,80.9012 +6846,205.46,80.6621 +6847,203.44,80.4487 +6848,201.49,80.2579 +6849,206.22,80.979 +6850,204.13,80.7038 +6851,202.11,80.4545 +6852,200.16,80.2284 +6853,204.9,81.0566 +6854,202.81,80.7454 +6855,200.79,80.4605 +6856,198.83,80.1989 +6857,203.57,81.1339 +6858,201.48,80.7869 +6859,199.46,80.4665 +6860,197.5,80.1697 +6861,202.24,81.211 +6862,200.15,80.8283 +6863,198.13,80.4725 +6864,196.17,80.1407 +6865,200.92,81.2879 +6866,198.82,80.8697 +6867,196.8,80.4787 +6868,194.85,80.1119 +6869,199.59,81.3644 +6870,197.5,80.911 +6871,195.48,80.4849 +6872,193.52,80.0834 +6873,198.25,81.4407 +6874,196.17,80.9521 +6875,194.15,80.4913 +6876,192.2,80.0551 +6877,196.92,81.5165 +6878,194.84,80.9932 +6879,192.83,80.4978 +6880,190.88,80.0272 +6881,195.59,81.592 +6882,193.51,81.0342 +6883,191.5,80.5044 +6884,189.56,80 +6885,194.25,81.6671 +6886,192.18,81.075 +6887,190.18,80.5111 +6888,188.24,79.972 +6889,192.91,81.7417 +6890,190.85,81.1156 +6891,188.85,80.518 +6892,186.93,79.946 +6893,191.57,81.8158 +6894,189.52,81.1562 +6895,187.53,80.525 +6896,185.61,79.919 +6897,190.23,81.8895 +6898,188.18,81.1965 +6899,186.21,80.5322 +6900,184.3,79.893 +6901,188.89,81.9626 +6902,186.85,81.2367 +6903,184.89,80.5395 +6904,182.99,79.868 +6905,187.54,82.0352 +6906,185.52,81.2768 +6907,183.56,80.5471 +6908,181.67,79.843 +6909,186.2,82.1072 +6910,184.18,81.3166 +6911,182.24,80.5548 +6912,180.37,79.819 +6913,184.85,82.1786 +6914,182.85,81.3563 +6915,180.92,80.5627 +6916,179.06,79.795 +6917,183.5,82.2494 +6918,181.52,81.3957 +6919,179.6,80.5708 +6920,177.75,79.772 +6921,182.15,82.3195 +6922,180.18,81.435 +6923,178.28,80.5791 +6924,176.45,79.749 +6925,180.8,82.389 +6926,178.84,81.474 +6927,176.96,80.5877 +6928,175.14,79.727 +6929,179.45,82.4577 +6930,177.51,81.5128 +6931,175.64,80.5965 +6932,173.84,79.706 +6933,178.09,82.5258 +6934,176.17,81.5514 +6935,174.32,80.6055 +6936,172.54,79.685 +6937,176.73,82.593 +6938,174.83,81.5897 +6939,173.01,80.6147 +6940,171.24,79.665 +6941,175.38,82.6595 +6942,173.5,81.6278 +6943,171.69,80.6242 +6944,169.94,79.646 +6945,174.02,82.7253 +6946,172.16,81.6656 +6947,170.37,80.634 +6948,168.64,79.628 +6949,172.66,82.7901 +6950,170.82,81.7032 +6951,169.05,80.644 +6952,167.35,79.61 +6953,171.29,82.8542 +6954,169.48,81.7405 +6955,167.74,80.6543 +6956,166.05,79.593 +6957,169.93,82.9174 +6958,168.14,81.7775 +6959,166.42,80.6649 +6960,164.76,79.577 +6961,168.57,82.9797 +6962,166.8,81.8142 +6963,165.1,80.6758 +6964,163.47,79.562 +6965,167.2,83.0411 +6966,165.46,81.8507 +6967,163.79,80.687 +6968,162.17,79.548 +6969,165.83,83.1016 +6970,164.12,81.8868 +6971,162.47,80.6985 +6972,160.88,79.534 +6973,164.46,83.1611 +6974,162.78,81.9226 +6975,161.16,80.7102 +6976,159.6,79.522 +6977,163.09,83.2197 +6978,161.44,81.9581 +6979,159.84,80.7223 +6980,158.31,79.51 +6981,161.72,83.2773 +6982,160.09,81.9933 +6983,158.53,80.7348 +6984,157.02,79.499 +6985,160.35,83.3339 +6986,158.75,82.0282 +6987,157.22,80.7475 +6988,155.74,79.49 +6989,158.98,83.3895 +6990,157.41,82.0627 +6991,155.9,80.7606 +6992,154.45,79.481 +6993,157.6,83.444 +6994,156.06,82.0969 +6995,154.59,80.7741 +6996,153.17,79.473 +6997,156.23,83.4975 +6998,154.72,82.1308 +6999,153.28,80.7878 +7000,151.89,79.467 +7001,154.85,83.55 +7002,153.38,82.1643 +7003,151.97,80.802 +7004,150.61,79.461 +7005,153.47,83.6013 +7006,152.03,82.1974 +7007,150.65,80.8165 +7008,149.33,79.457 +7009,152.09,83.6516 +7010,150.69,82.2302 +7011,149.34,80.8313 +7012,148.05,79.453 +7013,150.71,83.7008 +7014,149.34,82.2627 +7015,148.03,80.8465 +7016,146.77,79.451 +7017,149.33,83.7488 +7018,147.99,82.2947 +7019,146.72,80.8621 +7020,145.49,79.449 +7021,147.95,83.7957 +7022,146.65,82.3264 +7023,145.41,80.8781 +7024,144.22,79.449 +7025,146.56,83.8415 +7026,145.3,82.3577 +7027,144.1,80.8944 +7028,142.94,79.45 +7029,145.18,83.8861 +7030,143.96,82.3886 +7031,142.79,80.9112 +7032,141.67,79.452 +7033,143.79,83.9296 +7034,142.61,82.4192 +7035,141.48,80.9283 +7036,140.39,79.456 +7037,142.41,83.9718 +7038,141.26,82.4493 +7039,140.17,80.9458 +7040,139.12,79.46 +7041,141.02,84.0129 +7042,139.91,82.4791 +7043,138.86,80.9637 +7044,137.85,79.466 +7045,139.63,84.0528 +7046,138.57,82.5085 +7047,137.55,80.9821 +7048,136.58,79.473 +7049,138.25,84.0915 +7050,137.22,82.5374 +7051,136.24,81.0008 +7052,135.31,79.481 +7053,136.86,84.1289 +7054,135.87,82.566 +7055,134.93,81.0199 +7056,134.04,79.49 +7057,135.47,84.1652 +7058,134.52,82.5941 +7059,133.62,81.0395 +7060,132.77,79.5 +7061,134.08,84.2002 +7062,133.17,82.6219 +7063,132.31,81.0594 +7064,131.5,79.512 +7065,132.69,84.234 +7066,131.82,82.6492 +7067,131,81.0798 +7068,130.23,79.525 +7069,131.29,84.2666 +7070,130.47,82.6762 +7071,129.7,81.1006 +7072,128.96,79.539 +7073,129.9,84.2979 +7074,129.12,82.7027 +7075,128.39,81.1218 +7076,127.69,79.555 +7077,128.51,84.3279 +7078,127.77,82.7288 +7079,127.08,81.1434 +7080,126.43,79.571 +7081,127.12,84.3568 +7082,126.42,82.7545 +7083,125.77,81.1654 +7084,125.16,79.589 +7085,125.72,84.3843 +7086,125.07,82.7798 +7087,124.46,81.1879 +7088,123.9,79.609 +7089,124.33,84.4107 +7090,123.72,82.8046 +7091,123.16,81.2108 +7092,122.63,79.629 +7093,122.93,84.4357 +7094,122.37,82.8291 +7095,121.85,81.2341 +7096,121.36,79.651 +7097,121.54,84.4595 +7098,121.02,82.8531 +7099,120.54,81.2579 +7100,120.1,79.674 +7101,120.14,84.4821 +7102,119.67,82.8767 +7103,119.23,81.282 +7104,118.84,79.698 +7105,118.75,84.5034 +7106,118.32,82.8999 +7107,117.93,81.3066 +7108,117.57,79.724 +7109,117.35,84.5234 +7110,116.97,82.9226 +7111,116.62,81.3317 +7112,116.31,79.751 +7113,115.95,84.5423 +7114,115.61,82.945 +7115,115.31,81.3571 +7116,115.04,79.779 +7117,114.56,84.5598 +7118,114.26,82.9669 +7119,114,81.383 +7120,113.78,79.809 +7121,113.16,84.5761 +7122,112.91,82.9884 +7123,112.7,81.4093 +7124,112.52,79.839 +7125,111.77,84.5912 +7126,111.56,83.0095 +7127,111.39,81.436 +7128,111.25,79.871 +7129,110.37,84.605 +7130,110.21,83.0301 +7131,110.08,81.4631 +7132,109.99,79.905 +7133,108.97,84.6176 +7134,108.86,83.0504 +7135,108.78,81.4907 +7136,108.73,79.939 +7137,107.58,84.629 +7138,107.51,83.0702 +7139,107.47,81.5187 +7140,107.46,79.975 +7141,106.18,84.6392 +7142,106.15,83.0897 +7143,106.16,81.5471 +7144,106.2,80.0123 +7145,104.78,84.6481 +7146,104.8,83.1087 +7147,104.85,81.5759 +7148,104.94,80.0507 +7149,103.39,84.6559 +7150,103.45,83.1273 +7151,103.55,81.6052 +7152,103.67,80.0903 +7153,101.99,84.6624 +7154,102.1,83.1456 +7155,102.24,81.6348 +7156,102.41,80.1312 +7157,100.59,84.6678 +7158,100.75,83.1634 +7159,100.93,81.6648 +7160,101.15,80.1733 +7161,99.198,84.672 +7162,99.395,83.1808 +7163,99.623,81.6953 +7164,99.882,80.2166 +7165,97.802,84.675 +7166,98.044,83.1978 +7167,98.316,81.7262 +7168,98.617,80.2612 +7169,96.406,84.6768 +7170,96.692,83.2145 +7171,97.008,81.7574 +7172,97.353,80.3069 +7173,95.011,84.6776 +7174,95.341,83.2307 +7175,95.7,81.7891 +7176,96.088,80.3539 +7177,93.616,84.6771 +7178,93.989,83.2466 +7179,94.392,81.8211 +7180,94.823,80.402 +7181,92.222,84.6756 +7182,92.638,83.2621 +7183,93.083,81.8535 +7184,93.558,80.4513 +7185,90.828,84.673 +7186,91.287,83.2772 +7187,91.775,81.8863 +7188,92.292,80.5018 +7189,89.434,84.6692 +7190,89.936,83.292 +7191,90.466,81.9195 +7192,91.025,80.5534 +7193,88.041,84.6644 +7194,88.585,83.3064 +7195,89.157,81.9531 +7196,89.759,80.6061 +7197,86.648,84.6585 +7198,87.234,83.3204 +7199,87.848,81.987 +7200,88.491,80.66 +7201,85.256,84.6516 +7202,85.883,83.334 +7203,86.539,82.0213 +7204,87.223,80.7149 +7205,83.864,84.6436 +7206,84.533,83.3474 +7207,85.229,82.056 +7208,85.955,80.771 +7209,82.473,84.6346 +7210,83.182,83.3603 +7211,83.92,82.091 +7212,84.686,80.8281 +7213,81.083,84.6246 +7214,81.832,83.373 +7215,82.61,82.1263 +7216,83.417,80.8863 +7217,79.693,84.6136 +7218,80.482,83.3853 +7219,81.3,82.162 +7220,82.146,80.9455 +7221,78.304,84.6017 +7222,79.132,83.3972 +7223,79.989,82.198 +7224,80.876,81.0058 +7225,76.915,84.5888 +7226,77.782,83.4089 +7227,78.679,82.2344 +7228,79.604,81.067 +7229,75.528,84.5749 +7230,76.433,83.4202 +7231,77.368,82.271 +7232,78.332,81.1292 +7233,74.141,84.5602 +7234,75.084,83.4312 +7235,76.056,82.308 +7236,77.058,81.1924 +7237,72.755,84.5445 +7238,73.735,83.4419 +7239,74.745,82.3453 +7240,75.785,81.2565 +7241,71.369,84.528 +7242,72.386,83.4524 +7243,73.433,82.3829 +7244,74.51,81.3216 +7245,69.985,84.5106 +7246,71.038,83.4625 +7247,72.121,82.4208 +7248,73.234,81.3875 +7249,68.601,84.4924 +7250,69.689,83.4723 +7251,70.808,82.459 +7252,71.958,81.4543 +7253,67.218,84.4734 +7254,68.341,83.4819 +7255,69.495,82.4975 +7256,70.68,81.522 +7257,65.837,84.4536 +7258,66.994,83.4912 +7259,68.182,82.5362 +7260,69.402,81.5905 +7261,64.456,84.4331 +7262,65.646,83.5003 +7263,66.869,82.5752 +7264,68.123,81.6598 +7265,63.076,84.4118 +7266,64.299,83.509 +7267,65.555,82.6145 +7268,66.843,81.7299 +7269,61.697,84.3897 +7270,62.953,83.5176 +7271,64.24,82.654 +7272,65.561,81.8008 +7273,60.319,84.367 +7274,61.606,83.5259 +7275,62.926,82.6937 +7276,64.279,81.8724 +7277,58.942,84.3436 +7278,60.26,83.534 +7279,61.611,82.7337 +7280,62.996,81.9447 +7281,57.566,84.3195 +7282,58.914,83.5418 +7283,60.295,82.7739 +7284,61.711,82.0177 +7285,56.192,84.2949 +7286,57.569,83.5495 +7287,58.98,82.8143 +7288,60.426,82.0913 +7289,54.818,84.2696 +7290,56.223,83.5569 +7291,57.663,82.8549 +7292,59.139,82.1656 +7293,53.446,84.2437 +7294,54.878,83.5642 +7295,56.347,82.8958 +7296,57.851,82.2405 +7297,52.074,84.2173 +7298,53.534,83.5712 +7299,55.03,82.9368 +7300,56.562,82.316 +7301,50.704,84.1904 +7302,52.19,83.5781 +7303,53.712,82.978 +7304,55.272,82.392 +7305,49.335,84.1629 +7306,50.846,83.5848 +7307,52.394,83.0193 +7308,53.981,82.4686 +7309,47.967,84.135 +7310,49.503,83.5914 +7311,51.076,83.0609 +7312,52.688,82.5456 +7313,46.601,84.1067 +7314,48.16,83.5978 +7315,49.757,83.1025 +7316,51.394,82.6231 +7317,45.235,84.0779 +7318,46.817,83.604 +7319,48.438,83.1444 +7320,50.099,82.701 +7321,43.871,84.0487 +7322,45.475,83.6101 +7323,47.118,83.1863 +7324,48.802,82.7794 +7325,42.508,84.0191 +7326,44.133,83.6161 +7327,45.798,83.2284 +7328,47.505,82.8581 +7329,41.146,83.9893 +7330,42.792,83.622 +7331,44.477,83.2706 +7332,46.205,82.9372 +7333,39.786,83.9591 +7334,41.451,83.6278 +7335,43.156,83.3129 +7336,44.905,83.0167 +7337,38.427,83.9286 +7338,40.11,83.6334 +7339,41.835,83.3553 +7340,43.603,83.0964 +7341,37.069,83.8978 +7342,38.77,83.639 +7343,40.512,83.3978 +7344,42.3,83.1763 +7345,35.713,83.8668 +7346,37.43,83.6445 +7347,39.19,83.4403 +7348,40.995,83.2565 +7349,34.358,83.8357 +7350,36.091,83.65 +7351,37.867,83.4829 +7352,39.689,83.3369 +7353,33.004,83.8043 +7354,34.752,83.6554 +7355,36.543,83.5256 +7356,38.382,83.4175 +7357,31.652,83.7728 +7358,33.413,83.6607 +7359,35.219,83.5683 +7360,37.073,83.4982 +7361,30.301,83.7412 +7362,32.075,83.666 +7363,33.895,83.6111 +7364,35.763,83.579 +7365,28.951,83.7095 +7366,30.737,83.6712 +7367,32.569,83.6539 +7368,34.451,83.6599 +7369,27.603,83.6777 +7370,29.4,83.6765 +7371,31.244,83.6967 +7372,33.138,83.7409 +7373,26.256,83.6459 +7374,28.063,83.6817 +7375,29.918,83.7395 +7376,31.823,83.8219 +7377,24.91,83.6141 +7378,26.727,83.6869 +7379,28.591,83.7823 +7380,30.507,83.9028 +7381,23.566,83.5823 +7382,25.391,83.6922 +7383,27.264,83.8251 +7384,29.189,83.9837 +7385,22.223,83.5506 +7386,24.055,83.6974 +7387,25.936,83.8678 +7388,27.87,84.0646 +7389,20.882,83.5189 +7390,22.72,83.7027 +7391,24.608,83.9105 +7392,26.549,84.1453 +7393,19.542,83.4874 +7394,21.386,83.708 +7395,23.279,83.9532 +7396,25.227,84.2259 +7397,18.204,83.456 +7398,20.052,83.7134 +7399,21.95,83.9959 +7400,23.904,84.3063 +7401,16.867,83.4247 +7402,18.718,83.7188 +7403,20.62,84.0384 +7404,22.578,84.3865 +7405,15.531,83.3937 +7406,17.385,83.7243 +7407,19.29,84.0809 +7408,21.252,84.4665 +7409,14.197,83.3629 +7410,16.052,83.7299 +7411,17.959,84.1233 +7412,19.923,84.5463 +7413,12.864,83.3323 +7414,14.72,83.7355 +7415,16.628,84.1656 +7416,18.594,84.6257 +7417,11.532,83.302 +7418,13.388,83.7412 +7419,15.296,84.2078 +7420,17.262,84.7049 +7421,10.202,83.2721 +7422,12.056,83.7471 +7423,13.963,84.2499 +7424,15.93,84.7837 +7425,8.8734,83.2424 +7426,10.725,83.7531 +7427,12.63,84.2919 +7428,14.595,84.8621 +7429,7.5461,83.2131 +7430,9.3948,83.7592 +7431,11.297,84.3337 +7432,13.259,84.9401 +7433,6.2202,83.1843 +7434,8.0647,83.7654 +7435,9.963,84.3754 +7436,11.922,85.0176 +7437,4.8957,83.1558 +7438,6.735,83.7717 +7439,8.6284,84.4169 +7440,10.583,85.0947 +7441,3.5726,83.1278 +7442,5.4058,83.7782 +7443,7.2934,84.4583 +7444,9.2427,85.1713 +7445,2.2509,83.1002 +7446,4.077,83.7849 +7447,5.9578,84.4995 +7448,7.9008,85.2474 +7449,0.93053,83.0732 +7450,2.7487,83.7918 +7451,4.6217,84.5405 +7452,6.5574,85.3229 +7453,359.61,83.0467 +7454,1.4208,83.7988 +7455,3.2851,84.5813 +7456,5.2124,85.3978 +7457,358.29,83.0207 +7458,0.093299,83.806 +7459,1.9479,84.622 +7460,3.866,85.4722 +7461,356.98,82.9953 +7462,358.77,83.8134 +7463,0.61029,84.6624 +7464,2.5181,85.5459 +7465,355.66,82.9706 +7466,357.44,83.821 +7467,359.27,84.7026 +7468,1.1687,85.6189 +7469,354.35,82.9464 +7470,356.11,83.8288 +7471,357.93,84.7425 +7472,359.82,85.6912 +7473,353.04,82.9229 +7474,354.79,83.8369 +7475,356.59,84.7823 +7476,358.47,85.7629 +7477,351.73,82.9001 +7478,353.46,83.8452 +7479,355.25,84.8218 +7480,357.11,85.8337 +7481,350.42,82.878 +7482,352.14,83.8537 +7483,353.91,84.861 +7484,355.76,85.9038 +7485,349.11,82.8567 +7486,350.81,83.8624 +7487,352.57,84.9 +7488,354.4,85.9732 +7489,347.8,82.8361 +7490,349.49,83.8714 +7491,351.23,84.9387 +7492,353.04,86.0417 +7493,346.49,82.8163 +7494,348.16,83.8807 +7495,349.89,84.9771 +7496,351.68,86.1093 +7497,345.19,82.7972 +7498,346.84,83.8903 +7499,348.55,85.0153 +7500,350.32,86.1761 +7501,343.89,82.779 +7502,345.52,83.9001 +7503,347.21,85.0532 +7504,348.96,86.242 +7505,342.58,82.7617 +7506,344.2,83.9102 +7507,345.86,85.0907 +7508,347.6,86.307 +7509,341.28,82.7452 +7510,342.87,83.9206 +7511,344.52,85.128 +7512,346.23,86.3711 +7513,339.98,82.7296 +7514,341.55,83.9313 +7515,343.18,85.1649 +7516,344.86,86.4342 +7517,338.68,82.715 +7518,340.23,83.9423 +7519,341.83,85.2015 +7520,343.5,86.4963 +7521,337.39,82.7012 +7522,338.91,83.9536 +7523,340.49,85.2378 +7524,342.13,86.5574 +7525,336.09,82.6884 +7526,337.59,83.9653 +7527,339.14,85.2737 +7528,340.76,86.6175 +7529,334.79,82.6766 +7530,336.27,83.9773 +7531,337.8,85.3093 +7532,339.39,86.6766 +7533,333.5,82.6658 +7534,334.95,83.9896 +7535,336.45,85.3446 +7536,338.01,86.7346 +7537,332.21,82.656 +7538,333.63,84.0022 +7539,335.1,85.3795 +7540,336.64,86.7915 +7541,330.91,82.6473 +7542,332.31,84.0152 +7543,333.76,85.414 +7544,335.27,86.8474 +7545,329.62,82.6396 +7546,330.99,84.0285 +7547,332.41,85.4482 +7548,333.89,86.9021 +7549,328.33,82.6329 +7550,329.67,84.0422 +7551,331.06,85.482 +7552,332.51,86.9557 +7553,327.04,82.6274 +7554,328.35,84.0563 +7555,329.71,85.5154 +7556,331.13,87.0082 +7557,325.76,82.6229 +7558,327.03,84.0707 +7559,328.36,85.5484 +7560,329.76,87.0595 +7561,324.47,82.6196 +7562,325.72,84.0855 +7563,327.02,85.5811 +7564,328.38,87.1096 +7565,323.18,82.6174 +7566,324.4,84.1007 +7567,325.67,85.6133 +7568,326.99,87.1586 +7569,321.9,82.6163 +7570,323.08,84.1162 +7571,324.32,85.6452 +7572,325.61,87.2063 +7573,320.61,82.6165 +7574,321.76,84.1322 +7575,322.97,85.6766 +7576,324.23,87.2529 +7577,319.33,82.6177 +7578,320.45,84.1485 +7579,321.62,85.7077 +7580,322.84,87.2982 +7581,318.04,82.6202 +7582,319.13,84.1653 +7583,320.27,85.7383 +7584,321.46,87.3423 +7585,316.76,82.6239 +7586,317.81,84.1824 +7587,318.92,85.7685 +7588,320.07,87.3851 +7589,315.48,82.6288 +7590,316.5,84.1999 +7591,317.56,85.7983 +7592,318.69,87.4266 +7593,314.2,82.6349 +7594,315.18,84.2179 +7595,316.21,85.8277 +7596,317.3,87.4669 +7597,312.92,82.6422 +7598,313.87,84.2362 +7599,314.86,85.8566 +7600,315.91,87.506 +7601,311.64,82.6508 +7602,312.55,84.255 +7603,313.51,85.8851 +7604,314.52,87.5437 +7605,310.36,82.6607 +7606,311.24,84.2742 +7607,312.16,85.9132 +7608,313.13,87.5801 +7609,309.08,82.6718 +7610,309.92,84.2938 +7611,310.8,85.9409 +7612,311.74,87.6153 +7613,307.8,82.6842 +7614,308.61,84.3138 +7615,309.45,85.9681 +7616,310.35,87.6491 +7617,306.53,82.6978 +7618,307.29,84.3343 +7619,308.1,85.9948 +7620,308.95,87.6816 +7621,305.25,82.7128 +7622,305.98,84.3551 +7623,306.74,86.0212 +7624,307.56,87.7128 +7625,303.97,82.729 +7626,304.66,84.3764 +7627,305.39,86.047 +7628,306.17,87.7427 +7629,302.7,82.7466 +7630,303.35,84.3981 +7631,304.04,86.0725 +7632,304.77,87.7713 +7633,301.42,82.7654 +7634,302.03,84.4203 +7635,302.68,86.0975 +7636,303.38,87.7986 +7637,300.15,82.7856 +7638,300.72,84.4429 +7639,301.33,86.122 +7640,301.99,87.8245 +7641,298.87,82.807 +7642,299.4,84.4659 +7643,299.97,86.1461 +7644,300.59,87.8491 +7645,297.6,82.8298 +7646,298.09,84.4894 +7647,298.62,86.1698 +7648,299.19,87.8723 +7649,296.33,82.8538 +7650,296.78,84.5132 +7651,297.27,86.193 +7652,297.8,87.8942 +7653,295.05,82.8792 +7654,295.46,84.5376 +7655,295.91,86.2158 +7656,296.4,87.9149 +7657,293.78,82.906 +7658,294.15,84.5623 +7659,294.56,86.2381 +7660,295,87.9341 +7661,292.51,82.934 +7662,292.83,84.5875 +7663,293.2,86.2599 +7664,293.61,87.9521 +7665,291.23,82.9633 +7666,291.52,84.6131 +7667,291.85,86.2813 +7668,292.21,87.9687 +7669,289.96,82.994 +7670,290.21,84.6391 +7671,290.49,86.3023 +7672,290.81,87.984 +7673,288.69,83.0259 +7674,288.89,84.6656 +7675,289.13,86.3228 +7676,289.41,87.998 +7677,287.41,83.0592 +7678,287.58,84.6925 +7679,287.78,86.3429 +7680,288.02,88.0107 +7681,286.14,83.0938 +7682,286.27,84.7199 +7683,286.42,86.3625 +7684,286.62,88.0221 +7685,284.87,83.1297 +7686,284.95,84.7476 +7687,285.07,86.3817 +7688,285.22,88.0322 +7689,283.6,83.1668 +7690,283.64,84.7758 +7691,283.71,86.4005 +7692,283.82,88.041 +7693,282.32,83.2053 +7694,282.32,84.8044 +7695,282.36,86.4188 +7696,282.42,88.0485 +7697,281.05,83.2451 +7698,281.01,84.8334 +7699,281,86.4367 +7700,281.02,88.0548 +7701,279.78,83.2861 +7702,279.7,84.8629 +7703,279.65,86.4542 +7704,279.63,88.0597 +7705,278.51,83.3284 +7706,278.38,84.8927 +7707,278.29,86.4712 +7708,278.23,88.0635 +7709,277.23,83.3719 +7710,277.07,84.923 +7711,276.93,86.4878 +7712,276.83,88.0659 +7713,275.96,83.4167 +7714,275.75,84.9536 +7715,275.58,86.504 +7716,275.43,88.0672 +7717,274.69,83.4628 +7718,274.44,84.9847 +7719,274.22,86.5197 +7720,274.03,88.0672 +7721,273.41,83.5101 +7722,273.13,85.0162 +7723,272.87,86.5351 +7724,272.64,88.066 +7725,272.14,83.5586 +7726,271.81,85.0481 +7727,271.51,86.55 +7728,271.24,88.0636 +7729,270.87,83.6083 +7730,270.5,85.0803 +7731,270.16,86.5645 +7732,269.84,88.06 +7733,269.59,83.6592 +7734,269.18,85.113 +7735,268.8,86.5787 +7736,268.45,88.0553 +7737,268.32,83.7113 +7738,267.87,85.146 +7739,267.44,86.5924 +7740,267.05,88.0494 +7741,267.04,83.7645 +7742,266.55,85.1794 +7743,266.09,86.6057 +7744,265.65,88.0423 +7745,265.76,83.8189 +7746,265.24,85.2132 +7747,264.73,86.6187 +7748,264.26,88.0342 +7749,264.49,83.8745 +7750,263.92,85.2474 +7751,263.38,86.6312 +7752,262.86,88.0249 +7753,263.21,83.9311 +7754,262.61,85.2819 +7755,262.02,86.6434 +7756,261.47,88.0145 +7757,261.93,83.9889 +7758,261.29,85.3168 +7759,260.67,86.6552 +7760,260.07,88.003 +7761,260.66,84.0478 +7762,259.97,85.352 +7763,259.31,86.6667 +7764,258.68,87.9905 +7765,259.38,84.1077 +7766,258.66,85.3876 +7767,257.96,86.6778 +7768,257.29,87.977 +7769,258.1,84.1687 +7770,257.34,85.4235 +7771,256.61,86.6885 +7772,255.9,87.9624 +7773,256.82,84.2308 +7774,256.02,85.4597 +7775,255.25,86.6989 +7776,254.5,87.9468 +7777,255.54,84.2938 +7778,254.71,85.4963 +7779,253.9,86.7089 +7780,253.11,87.9302 +7781,254.26,84.3579 +7782,253.39,85.5332 +7783,252.54,86.7186 +7784,251.72,87.9127 +7785,252.98,84.4229 +7786,252.07,85.5704 +7787,251.19,86.728 +7788,250.33,87.8942 +7789,251.69,84.4889 +7790,250.75,85.6079 +7791,249.84,86.7371 +7792,248.94,87.8748 +7793,250.41,84.5558 +7794,249.44,85.6457 +7795,248.48,86.7458 +7796,247.55,87.8545 +7797,249.13,84.6236 +7798,248.12,85.6838 +7799,247.13,86.7542 +7800,246.17,87.8334 +7801,247.84,84.6924 +7802,246.8,85.7222 +7803,245.78,86.7624 +7804,244.78,87.8113 +7805,246.56,84.762 +7806,245.48,85.7608 +7807,244.43,86.7702 +7808,243.39,87.7885 +7809,245.27,84.8324 +7810,244.16,85.7998 +7811,243.07,86.7778 +7812,242.01,87.7648 +7813,243.98,84.9036 +7814,242.84,85.8389 +7815,241.72,86.785 +7816,240.62,87.7403 +7817,242.7,84.9757 +7818,241.52,85.8784 +7819,240.37,86.7921 +7820,239.24,87.7151 +7821,241.41,85.0485 +7822,240.2,85.918 +7823,239.02,86.7988 +7824,237.86,87.6891 +7825,240.12,85.122 +7826,238.88,85.958 +7827,237.67,86.8053 +7828,236.48,87.6625 +7829,238.82,85.1963 +7830,237.56,85.9981 +7831,236.32,86.8116 +7832,235.1,87.6351 +7833,237.53,85.2713 +7834,236.24,86.0384 +7835,234.97,86.8176 +7836,233.72,87.6071 +7837,236.24,85.3469 +7838,234.91,86.079 +7839,233.61,86.8234 +7840,232.34,87.5784 +7841,234.94,85.4232 +7842,233.59,86.1198 +7843,232.26,86.829 +7844,230.96,87.5491 +7845,233.65,85.5001 +7846,232.27,86.1607 +7847,230.92,86.8343 +7848,229.59,87.5193 +7849,232.35,85.5775 +7850,230.95,86.2018 +7851,229.57,86.8395 +7852,228.21,87.4889 +7853,231.06,85.6555 +7854,229.62,86.2431 +7855,228.22,86.8445 +7856,226.84,87.4579 +7857,229.76,85.7341 +7858,228.3,86.2846 +7859,226.87,86.8493 +7860,225.46,87.4265 +7861,228.46,85.8131 +7862,226.98,86.3262 +7863,225.52,86.8539 +7864,224.09,87.3945 +7865,227.16,85.8926 +7866,225.65,86.3679 +7867,224.17,86.8584 +7868,222.72,87.3622 +7869,225.85,85.9725 +7870,224.33,86.4098 +7871,222.82,86.8627 +7872,221.35,87.3294 +7873,224.55,86.0529 +7874,223,86.4518 +7875,221.48,86.8668 +7876,219.98,87.2962 +7877,223.24,86.1336 +7878,221.67,86.4939 +7879,220.13,86.8709 +7880,218.61,87.2626 +7881,221.94,86.2147 +7882,220.35,86.5362 +7883,218.78,86.8748 +7884,217.25,87.2287 +7885,220.63,86.296 +7886,219.02,86.5785 +7887,217.44,86.8786 +7888,215.88,87.1945 +7889,219.32,86.3777 +7890,217.69,86.6209 +7891,216.09,86.8823 +7892,214.52,87.16 +7893,218.01,86.4596 +7894,216.36,86.6633 +7895,214.75,86.8858 +7896,213.16,87.1253 +7897,216.7,86.5418 +7898,215.04,86.7058 +7899,213.4,86.8893 +7900,211.8,87.0904 +7901,215.39,86.6241 +7902,213.71,86.7484 +7903,212.06,86.8928 +7904,210.44,87.0552 +7905,214.08,86.7066 +7906,212.38,86.791 +7907,210.71,86.8961 +7908,209.08,87.0199 +7909,212.76,86.7892 +7910,211.05,86.8337 +7911,209.37,86.8994 +7912,207.72,86.9845 +7913,211.45,86.8719 +7914,209.72,86.8764 +7915,208.03,86.9027 +7916,206.36,86.9489 +7917,210.13,86.9547 +7918,208.39,86.919 +7919,206.68,86.9059 +7920,205.01,86.9133 +7921,208.81,87.0375 +7922,207.06,86.9617 +7923,205.34,86.9091 +7924,203.66,86.8776 +7925,207.49,87.1204 +7926,205.72,87.0044 +7927,204,86.9123 +7928,202.3,86.842 +7929,206.17,87.2031 +7930,204.39,87.047 +7931,202.66,86.9155 +7932,200.95,86.8063 +7933,204.84,87.2858 +7934,203.06,87.0896 +7935,201.31,86.9186 +7936,199.6,86.7707 +7937,203.52,87.3685 +7938,201.73,87.1322 +7939,199.97,86.9218 +7940,198.26,86.7351 +7941,202.19,87.451 +7942,200.39,87.1747 +7943,198.63,86.9251 +7944,196.91,86.6997 +7945,200.86,87.5333 +7946,199.06,87.2171 +7947,197.29,86.9283 +7948,195.56,86.6644 +7949,199.54,87.6154 +7950,197.72,87.2595 +7951,195.95,86.9316 +7952,194.22,86.6292 +7953,198.21,87.6973 +7954,196.39,87.3018 +7955,194.61,86.935 +7956,192.88,86.5942 +7957,196.87,87.779 +7958,195.05,87.344 +7959,193.27,86.9384 +7960,191.53,86.5595 +7961,195.54,87.8604 +7962,193.72,87.3861 +7963,191.94,86.9419 +7964,190.19,86.525 +7965,194.21,87.9414 +7966,192.38,87.428 +7967,190.6,86.9454 +7968,188.86,86.4908 +7969,192.87,88.0221 +7970,191.04,87.4699 +7971,189.26,86.9491 +7972,187.52,86.4569 +7973,191.53,88.1024 +7974,189.71,87.5116 +7975,187.92,86.9529 +7976,186.18,86.4233 +7977,190.19,88.1823 +7978,188.37,87.5531 +7979,186.59,86.9567 +7980,184.85,86.3901 +7981,188.85,88.2617 +7982,187.03,87.5945 +7983,185.25,86.9607 +7984,183.51,86.3573 +7985,187.51,88.3407 +7986,185.69,87.6357 +7987,183.91,86.9649 +7988,182.18,86.3249 +7989,186.17,88.4192 +7990,184.35,87.6768 +7991,182.58,86.9692 +7992,180.85,86.2929 +7993,184.82,88.4971 +7994,183.01,87.7177 +7995,181.24,86.9736 +7996,179.52,86.2615 +7997,183.48,88.5745 +7998,181.67,87.7583 +7999,179.91,86.9782 +8000,178.19,86.2305 +8001,182.13,88.6512 +8002,180.33,87.7988 +8003,178.57,86.9829 +8004,176.87,86.2001 +8005,180.78,88.7273 +8006,178.99,87.839 +8007,177.24,86.9879 +8008,175.54,86.1702 +8009,179.43,88.8028 +8010,177.64,87.879 +8011,175.91,86.993 +8012,174.22,86.1409 +8013,178.08,88.8776 +8014,176.3,87.9188 +8015,174.57,86.9983 +8016,172.89,86.1122 +8017,176.73,88.9517 +8018,174.96,87.9584 +8019,173.24,87.0038 +8020,171.57,86.0842 +8021,175.37,89.02501 +8022,173.61,87.9976 +8023,171.91,87.0096 +8024,170.25,86.0568 +8025,174.02,89.09756 +8026,172.27,88.0367 +8027,170.58,87.0156 +8028,168.93,86.0301 +8029,172.66,89.16932 +8030,170.93,88.0754 +8031,169.25,87.0218 +8032,167.61,86.0042 +8033,171.3,89.24025 +8034,169.58,88.1139 +8035,167.91,87.0282 +8036,166.3,85.979 +8037,169.94,89.31034 +8038,168.23,88.152 +8039,166.58,87.0349 +8040,164.98,85.9545 +8041,168.58,89.37954 +8042,166.89,88.1899 +8043,165.25,87.0418 +8044,163.66,85.9308 +8045,167.22,89.44784 +8046,165.54,88.2275 +8047,163.92,87.0491 +8048,162.35,85.908 +8049,165.85,89.51521 +8050,164.2,88.2648 +8051,162.59,87.0565 +8052,161.04,85.886 +8053,164.49,89.58162 +8054,162.85,88.3017 +8055,161.26,87.0643 +8056,159.73,85.8648 +8057,163.12,89.64706 +8058,161.5,88.3383 +8059,159.94,87.0724 +8060,158.42,85.8446 +8061,161.75,89.7115 +8062,160.15,88.3745 +8063,158.61,87.0807 +8064,157.11,85.8252 +8065,160.38,89.77491 +8066,158.8,88.4105 +8067,157.28,87.0894 +8068,155.8,85.8068 +8069,159.01,89.83728 +8070,157.45,88.446 +8071,155.95,87.0983 +8072,154.5,85.7893 +8073,157.64,89.89857 +8074,156.1,88.4812 +8075,154.62,87.1076 +8076,153.19,85.7728 +8077,156.27,89.958774 +8078,154.75,88.5161 +8079,153.3,87.1172 +8080,151.89,85.7573 +8081,154.9,90.017866 +8082,153.4,88.5505 +8083,151.97,87.1271 +8084,150.58,85.7428 +8085,153.52,90.075825 +8086,152.05,88.5846 +8087,150.64,87.1374 +8088,149.28,85.7294 +8089,152.15,90.13263 +8090,150.7,88.6183 +8091,149.32,87.148 +8092,147.98,85.7169 +8093,150.77,90.18827 +8094,149.35,88.6516 +8095,147.99,87.159 +8096,146.68,85.7056 +8097,149.39,90.24272 +8098,148,88.6844 +8099,146.66,87.1703 +8100,145.38,85.6953 +8101,148.01,90.29596 +8102,146.65,88.7169 +8103,145.34,87.182 +8104,144.08,85.6862 +8105,146.63,90.34798 +8106,145.29,88.749 +8107,144.01,87.1941 +8108,142.78,85.6782 +8109,145.25,90.39875 +8110,143.94,88.7806 +8111,142.69,87.2065 +8112,141.48,85.6713 +8113,143.87,90.44827 +8114,142.59,88.8119 +8115,141.36,87.2193 +8116,140.19,85.6655 +8117,142.48,90.49652 +8118,141.23,88.8427 +8119,140.04,87.2325 +8120,138.89,85.661 +8121,141.1,90.54348 +8122,139.88,88.873 +8123,138.72,87.246 +8124,137.6,85.6576 +8125,139.71,90.58915 +8126,138.52,88.9029 +8127,137.39,87.26 +8128,136.31,85.6554 +8129,138.33,90.6335 +8130,137.17,88.9324 +8131,136.07,87.2743 +8132,135.01,85.6544 +8133,136.94,90.67652 +8134,135.81,88.9615 +8135,134.75,87.2891 +8136,133.72,85.6547 +8137,135.55,90.71821 +8138,134.46,88.99 +8139,133.42,87.3043 +8140,132.43,85.6562 +8141,134.16,90.75856 +8142,133.1,89.01816 +8143,132.1,87.3198 +8144,131.14,85.6589 +8145,132.77,90.79754 +8146,131.75,89.04582 +8147,130.78,87.3358 +8148,129.85,85.6629 +8149,131.38,90.83516 +8150,130.39,89.07303 +8151,129.45,87.3522 +8152,128.56,85.6682 +8153,129.99,90.87141 +8154,129.03,89.09976 +8155,128.13,87.369 +8156,127.27,85.6748 +8157,128.6,90.90627 +8158,127.68,89.12603 +8159,126.81,87.3863 +8160,125.98,85.6826 +8161,127.21,90.93974 +8162,126.32,89.15183 +8163,125.49,87.4039 +8164,124.7,85.6918 +8165,125.81,90.97181 +8166,124.96,89.17715 +8167,124.17,87.422 +8168,123.41,85.7022 +8169,124.42,91.0025 +8170,123.61,89.202 +8171,122.84,87.4405 +8172,122.12,85.714 +8173,123.02,91.0317 +8174,122.25,89.22637 +8175,121.52,87.4594 +8176,120.84,85.7271 +8177,121.63,91.0596 +8178,120.89,89.25026 +8179,120.2,87.4788 +8180,119.55,85.7415 +8181,120.23,91.086 +8182,119.53,89.27367 +8183,118.88,87.4986 +8184,118.27,85.7573 +8185,118.84,91.1111 +8186,118.17,89.2966 +8187,117.56,87.5189 +8188,116.98,85.7743 +8189,117.44,91.1347 +8190,116.82,89.31904 +8191,116.24,87.5395 +8192,115.7,85.7928 +8193,116.04,91.1568 +8194,115.46,89.341 +8195,114.92,87.5606 +8196,114.41,85.8125 +8197,114.64,91.1776 +8198,114.1,89.36247 +8199,113.59,87.5822 +8200,113.13,85.8336 +8201,113.25,91.1969 +8202,112.74,89.38346 +8203,112.27,87.6042 +8204,111.85,85.8561 +8205,111.85,91.2149 +8206,111.38,89.40397 +8207,110.95,87.6266 +8208,110.56,85.8799 +8209,110.45,91.2314 +8210,110.02,89.42399 +8211,109.63,87.6494 +8212,109.28,85.9051 +8213,109.05,91.2465 +8214,108.66,89.44352 +8215,108.31,87.6727 +8216,108,85.9316 +8217,107.65,91.2601 +8218,107.3,89.46258 +8219,106.99,87.6965 +8220,106.71,85.9594 +8221,106.25,91.2724 +8222,105.94,89.48114 +8223,105.67,87.7206 +8224,105.43,85.9886 +8225,104.85,91.2833 +8226,104.58,89.49923 +8227,104.35,87.7452 +8228,104.15,86.0192 +8229,103.45,91.2928 +8230,103.22,89.51684 +8231,103.03,87.7703 +8232,102.87,86.0511 +8233,102.05,91.3008 +8234,101.86,89.53397 +8235,101.71,87.7957 +8236,101.59,86.0843 +8237,100.65,91.3075 +8238,100.5,89.55062 +8239,100.39,87.8216 +8240,100.3,86.1189 +8241,99.253,91.3129 +8242,99.142,89.5668 +8243,99.066,87.8479 +8244,99.021,86.1547 +8245,97.853,91.3168 +8246,97.782,89.5825 +8247,97.745,87.8747 +8248,97.739,86.1919 +8249,96.452,91.3194 +8250,96.422,89.59774 +8251,96.424,87.9018 +8252,96.456,86.2305 +8253,95.052,91.3206 +8254,95.061,89.61251 +8255,95.103,87.9294 +8256,95.174,86.2703 +8257,93.652,91.3206 +8258,93.701,89.62682 +8259,93.782,87.9574 +8260,93.891,86.3114 +8261,92.252,91.3191 +8262,92.341,89.64066 +8263,92.461,87.9858 +8264,92.609,86.3538 +8265,90.853,91.3164 +8266,90.981,89.65405 +8267,91.139,88.0146 +8268,91.326,86.3975 +8269,89.453,91.3124 +8270,89.621,89.66698 +8271,89.818,88.0439 +8272,90.043,86.4425 +8273,88.054,91.307 +8274,88.261,89.67947 +8275,88.497,88.0735 +8276,88.759,86.4887 +8277,86.654,91.3004 +8278,86.901,89.69151 +8279,87.175,88.1035 +8280,87.475,86.5362 +8281,85.255,91.2926 +8282,85.541,89.70311 +8283,85.854,88.134 +8284,86.191,86.5849 +8285,83.857,91.2834 +8286,84.181,89.71427 +8287,84.532,88.1648 +8288,84.907,86.6349 +8289,82.458,91.2731 +8290,82.821,89.72501 +8291,83.21,88.196 +8292,83.622,86.686 +8293,81.06,91.2615 +8294,81.461,89.73531 +8295,81.888,88.2275 +8296,82.337,86.7384 +8297,79.663,91.2488 +8298,80.102,89.7452 +8299,80.565,88.2595 +8300,81.052,86.7919 +8301,78.265,91.2349 +8302,78.742,89.75467 +8303,79.243,88.2918 +8304,79.766,86.8466 +8305,76.868,91.2198 +8306,77.383,89.76373 +8307,77.92,88.3245 +8308,78.479,86.9025 +8309,75.472,91.2035 +8310,76.023,89.77238 +8311,76.597,88.3575 +8312,77.193,86.9595 +8313,74.076,91.1861 +8314,74.664,89.78064 +8315,75.274,88.3909 +8316,75.905,87.0176 +8317,72.681,91.1677 +8318,73.305,89.7885 +8319,73.951,88.4246 +8320,74.617,87.0768 +8321,71.286,91.1481 +8322,71.946,89.79598 +8323,72.627,88.4587 +8324,73.328,87.1371 +8325,69.892,91.1275 +8326,70.588,89.80308 +8327,71.304,88.4931 +8328,72.039,87.1985 +8329,68.498,91.1058 +8330,69.229,89.80981 +8331,69.98,88.5278 +8332,70.749,87.2609 +8333,67.105,91.0831 +8334,67.871,89.81618 +8335,68.655,88.5629 +8336,69.459,87.3243 +8337,65.713,91.0594 +8338,66.512,89.82218 +8339,67.331,88.5982 +8340,68.168,87.3887 +8341,64.321,91.0348 +8342,65.154,89.82784 +8343,66.006,88.6339 +8344,66.876,87.4541 +8345,62.931,91.0091 +8346,63.797,89.83315 +8347,64.681,88.6699 +8348,65.583,87.5204 +8349,61.54,90.9826 +8350,62.439,89.83813 +8351,63.356,88.7061 +8352,64.29,87.5877 +8353,60.151,90.95514 +8354,61.081,89.84277 +8355,62.03,88.7426 +8356,62.996,87.656 +8357,58.762,90.9268 +8358,59.724,89.8471 +8359,60.704,88.7794 +8360,61.701,87.7251 +8361,57.375,90.89761 +8362,58.367,89.85112 +8363,59.378,88.8165 +8364,60.405,87.795 +8365,55.988,90.86758 +8366,57.011,89.85484 +8367,58.051,88.8538 +8368,59.108,87.8658 +8369,54.602,90.83675 +8370,55.654,89.85825 +8371,56.724,88.8914 +8372,57.811,87.9374 +8373,53.216,90.80514 +8374,54.298,89.86139 +8375,55.397,88.9292 +8376,56.512,88.0098 +8377,51.832,90.77277 +8378,52.942,89.86424 +8379,54.069,88.9672 +8380,55.213,88.083 +8381,50.449,90.73968 +8382,51.587,89.86683 +8383,52.741,89.00546 +8384,53.912,88.1569 +8385,49.066,90.70589 +8386,50.231,89.86915 +8387,51.413,89.04392 +8388,52.611,88.2316 +8389,47.685,90.67142 +8390,48.876,89.87123 +8391,50.084,89.08259 +8392,51.309,88.3069 +8393,46.304,90.63631 +8394,47.521,89.87306 +8395,48.755,89.12145 +8396,50.006,88.3828 +8397,44.925,90.60058 +8398,46.167,89.87466 +8399,47.426,89.16049 +8400,48.701,88.4594 +8401,43.546,90.56427 +8402,44.813,89.87604 +8403,46.096,89.1997 +8404,47.396,88.5366 +8405,42.169,90.52739 +8406,43.459,89.87721 +8407,44.766,89.23908 +8408,46.09,88.6144 +8409,40.792,90.48998 +8410,42.105,89.87817 +8411,43.436,89.27861 +8412,44.782,88.6927 +8413,39.417,90.45207 +8414,40.752,89.87893 +8415,42.105,89.31828 +8416,43.474,88.7715 +8417,38.043,90.41368 +8418,39.399,89.87951 +8419,40.773,89.35809 +8420,42.164,88.8508 +8421,36.67,90.37485 +8422,38.047,89.87992 +8423,39.442,89.39802 +8424,40.853,88.9305 +8425,35.297,90.33561 +8426,36.694,89.88016 +8427,38.109,89.43807 +8428,39.541,89.0107 +8429,33.927,90.29597 +8430,35.343,89.88025 +8431,36.777,89.47822 +8432,38.228,89.09125 +8433,32.557,90.25599 +8434,33.991,89.88019 +8435,35.444,89.51846 +8436,36.914,89.17216 +8437,31.188,90.21568 +8438,32.64,89.87999 +8439,34.11,89.55878 +8440,35.599,89.25341 +8441,29.821,90.17507 +8442,31.289,89.87968 +8443,32.776,89.59918 +8444,34.282,89.33494 +8445,28.455,90.1342 +8446,29.939,89.87924 +8447,31.442,89.63963 +8448,32.964,89.41674 +8449,27.089,90.093095 +8450,28.589,89.87871 +8451,30.107,89.68014 +8452,31.645,89.49877 +8453,25.726,90.051785 +8454,27.239,89.87808 +8455,28.772,89.72068 +8456,30.325,89.581 +8457,24.363,90.010302 +8458,25.889,89.87736 +8459,27.436,89.76126 +8460,29.003,89.66339 +8461,23.002,89.968677 +8462,24.54,89.87658 +8463,26.1,89.80185 +8464,27.681,89.74592 +8465,21.641,89.926939 +8466,23.192,89.87573 +8467,24.764,89.84245 +8468,26.357,89.82855 +8469,20.282,89.88512 +8470,21.844,89.87483 +8471,23.427,89.88304 +8472,25.031,89.911243 +8473,18.925,89.84325 +8474,20.496,89.87388 +8475,22.089,89.923621 +8476,23.705,89.9939735 +8477,17.568,89.80136 +8478,19.148,89.87291 +8479,20.751,89.964175 +8480,22.377,90.076705 +8481,16.213,89.75948 +8482,17.801,89.87191 +8483,19.413,90.004692 +8484,21.048,90.15941 +8485,14.859,89.71765 +8486,16.455,89.87091 +8487,18.074,90.045162 +8488,19.717,90.24204 +8489,13.506,89.67588 +8490,15.108,89.8699 +8491,16.735,90.085573 +8492,18.385,90.32458 +8493,12.155,89.63422 +8494,13.763,89.86891 +8495,15.395,90.12591 +8496,17.052,90.40698 +8497,10.805,89.59269 +8498,12.417,89.86793 +8499,14.055,90.16617 +8500,15.718,90.48922 +8501,9.4556,89.55133 +8502,11.072,89.86699 +8503,12.714,90.20634 +8504,14.382,90.57126 +8505,8.1079,89.51016 +8506,9.7273,89.86608 +8507,11.373,90.24641 +8508,13.045,90.65307 +8509,6.7615,89.46921 +8510,8.383,89.86523 +8511,10.031,90.28637 +8512,11.706,90.73461 +8513,5.4164,89.42852 +8514,7.0391,89.86444 +8515,8.6887,90.3262 +8516,10.367,90.81585 +8517,4.0725,89.38811 +8518,5.6955,89.86373 +8519,7.346,90.36589 +8520,9.0254,90.89677 +8521,2.7299,89.34802 +8522,4.3524,89.86309 +8523,6.0029,90.40544 +8524,7.683,90.97731 +8525,1.3886,89.30827 +8526,3.0097,89.86255 +8527,4.6593,90.44483 +8528,6.3392,91.0575 +8529,0.048473,89.2689 +8530,1.6674,89.86211 +8531,3.3152,90.48406 +8532,4.994,91.1372 +8533,358.71,89.22993 +8534,0.32544,89.86179 +8535,1.9707,90.52311 +8536,3.6475,91.2164 +8537,357.37,89.19139 +8538,358.98,89.86158 +8539,0.62564,90.56197 +8540,2.2997,91.2952 +8541,356.04,89.15332 +8542,357.64,89.86151 +8543,359.28,90.60063 +8544,0.95054,91.3734 +8545,354.7,89.11573 +8546,356.3,89.86158 +8547,357.93,90.63908 +8548,359.6,91.4511 +8549,353.37,89.07866 +8550,354.96,89.86181 +8551,356.59,90.67732 +8552,358.25,91.5282 +8553,352.03,89.04214 +8554,353.62,89.86219 +8555,355.24,90.71532 +8556,356.9,91.6047 +8557,350.7,89.0062 +8558,352.28,89.86275 +8559,353.89,90.75309 +8560,355.54,91.6805 +8561,349.37,88.9709 +8562,350.94,89.86349 +8563,352.55,90.79061 +8564,354.18,91.7556 +8565,348.04,88.9361 +8566,349.6,89.86441 +8567,351.2,90.82786 +8568,352.83,91.83 +8569,346.72,88.9021 +8570,348.27,89.86554 +8571,349.85,90.86485 +8572,351.47,91.9036 +8573,345.39,88.8687 +8574,346.93,89.86687 +8575,348.5,90.90156 +8576,350.11,91.9765 +8577,344.06,88.836 +8578,345.59,89.86842 +8579,347.15,90.93798 +8580,348.75,92.0486 +8581,342.74,88.8041 +8582,344.25,89.8702 +8583,345.8,90.9741 +8584,347.39,92.1198 +8585,341.42,88.7729 +8586,342.92,89.87221 +8587,344.45,91.0099 +8588,346.02,92.1902 +8589,340.09,88.7426 +8590,341.58,89.87447 +8591,343.1,91.0454 +8592,344.66,92.2597 +8593,338.77,88.713 +8594,340.24,89.87697 +8595,341.75,91.0806 +8596,343.29,92.3283 +8597,337.45,88.6843 +8598,338.91,89.87974 +8599,340.39,91.1154 +8600,341.93,92.3959 +8601,336.13,88.6564 +8602,337.57,89.88277 +8603,339.04,91.1499 +8604,340.56,92.4625 +8605,334.82,88.6294 +8606,336.24,89.88609 +8607,337.69,91.1841 +8608,339.19,92.5282 +8609,333.5,88.6033 +8610,334.9,89.88968 +8611,336.34,91.2179 +8612,337.82,92.5928 +8613,332.19,88.5782 +8614,333.57,89.89357 +8615,334.98,91.2513 +8616,336.44,92.6564 +8617,330.87,88.554 +8618,332.23,89.89776 +8619,333.63,91.2843 +8620,335.07,92.7189 +8621,329.56,88.5308 +8622,330.9,89.90225 +8623,332.28,91.317 +8624,333.7,92.7803 +8625,328.25,88.5085 +8626,329.56,89.907057 +8627,330.92,91.3492 +8628,332.32,92.8405 +8629,326.93,88.4873 +8630,328.23,89.912186 +8631,329.57,91.3811 +8632,330.94,92.8996 +8633,325.62,88.4671 +8634,326.9,89.917643 +8635,328.21,91.4126 +8636,329.57,92.9576 +8637,324.31,88.448 +8638,325.56,89.923434 +8639,326.85,91.4436 +8640,328.19,93.0143 +8641,323.01,88.43 +8642,324.23,89.929567 +8643,325.5,91.4743 +8644,326.81,93.0699 +8645,321.7,88.413 +8646,322.9,89.936047 +8647,324.14,91.5045 +8648,325.43,93.1242 +8649,320.39,88.3972 +8650,321.57,89.942881 +8651,322.78,91.5342 +8652,324.05,93.1772 +8653,319.08,88.3825 +8654,320.24,89.950075 +8655,321.43,91.5636 +8656,322.66,93.229 +8657,317.78,88.369 +8658,318.91,89.957633 +8659,320.07,91.5924 +8660,321.28,93.2795 +8661,316.48,88.3566 +8662,317.57,89.965563 +8663,318.71,91.6209 +8664,319.89,93.3287 +8665,315.17,88.3454 +8666,316.24,89.973869 +8667,317.35,91.6488 +8668,318.51,93.3765 +8669,313.87,88.3354 +8670,314.91,89.982557 +8671,315.99,91.6763 +8672,317.12,93.423 +8673,312.57,88.3266 +8674,313.58,89.9916304 +8675,314.64,91.7034 +8676,315.73,93.4681 +8677,311.27,88.319 +8678,312.25,90.0010953 +8679,313.28,91.7299 +8680,314.35,93.5119 +8681,309.97,88.3127 +8682,310.92,90.010956 +8683,311.92,91.756 +8684,312.96,93.5543 +8685,308.67,88.3076 +8686,309.59,90.021216 +8687,310.56,91.7816 +8688,311.57,93.5952 +8689,307.37,88.3038 +8690,308.26,90.03188 +8691,309.2,91.8068 +8692,310.18,93.6348 +8693,306.07,88.3013 +8694,306.93,90.042953 +8695,307.84,91.8314 +8696,308.78,93.6729 +8697,304.77,88.3 +8698,305.6,90.054436 +8699,306.48,91.8555 +8700,307.39,93.7096 +8701,303.47,88.3001 +8702,304.27,90.066335 +8703,305.11,91.8791 +8704,306,93.7448 +8705,302.18,88.3014 +8706,302.95,90.078651 +8707,303.75,91.9023 +8708,304.6,93.7786 +8709,300.88,88.3041 +8710,301.62,90.091389 +8711,302.39,91.9249 +8712,303.21,93.8109 +8713,299.58,88.3081 +8714,300.29,90.10455 +8715,301.03,91.947 +8716,301.81,93.8417 +8717,298.29,88.3135 +8718,298.96,90.11814 +8719,299.67,91.9686 +8720,300.42,93.8711 +8721,296.99,88.3202 +8722,297.63,90.13215 +8723,298.31,91.9897 +8724,299.02,93.8989 +8725,295.7,88.3282 +8726,296.3,90.1466 +8727,296.94,92.0103 +8728,297.63,93.9253 +8729,294.4,88.3376 +8730,294.98,90.16148 +8731,295.58,92.0303 +8732,296.23,93.9501 +8733,293.11,88.3484 +8734,293.65,90.17679 +8735,294.22,92.0499 +8736,294.83,93.9734 +8737,291.82,88.3605 +8738,292.32,90.19254 +8739,292.86,92.0689 +8740,293.43,93.9953 +8741,290.52,88.374 +8742,290.99,90.20873 +8743,291.49,92.0874 +8744,292.03,94.0156 +8745,289.23,88.3889 +8746,289.66,90.22535 +8747,290.13,92.1054 +8748,290.63,94.0344 +8749,287.94,88.4051 +8750,288.34,90.24241 +8751,288.77,92.1228 +8752,289.23,94.0517 +8753,286.65,88.4227 +8754,287.01,90.25991 +8755,287.4,92.1397 +8756,287.83,94.0675 +8757,285.36,88.4417 +8758,285.68,90.27784 +8759,286.04,92.1562 +8760,286.43,94.0817 +8761,284.06,88.4621 +8762,284.35,90.29622 +8763,284.68,92.172 +8764,285.03,94.0945 +8765,282.77,88.4839 +8766,283.03,90.31503 +8767,283.31,92.1874 +8768,283.63,94.1057 +8769,281.48,88.507 +8770,281.7,90.33428 +8771,281.95,92.2022 +8772,282.23,94.1154 +8773,280.19,88.5315 +8774,280.37,90.35397 +8775,280.58,92.2165 +8776,280.83,94.1237 +8777,278.9,88.5574 +8778,279.04,90.37409 +8779,279.22,92.2303 +8780,279.43,94.1304 +8781,277.61,88.5846 +8782,277.72,90.39464 +8783,277.86,92.2436 +8784,278.03,94.1356 +8785,276.31,88.6133 +8786,276.39,90.41563 +8787,276.49,92.2564 +8788,276.63,94.1394 +8789,275.02,88.6432 +8790,275.06,90.43705 +8791,275.13,92.2686 +8792,275.23,94.1417 +8793,273.73,88.6746 +8794,273.73,90.4589 +8795,273.76,92.2803 +8796,273.82,94.1424 +8797,272.44,88.7073 +8798,272.41,90.48117 +8799,272.4,92.2915 +8800,272.42,94.1418 +8801,271.15,88.7413 +8802,271.08,90.50387 +8803,271.04,92.3022 +8804,271.02,94.1397 +8805,269.86,88.7767 +8806,269.75,90.52699 +8807,269.67,92.3124 +8808,269.62,94.1361 +8809,268.56,88.8134 +8810,268.42,90.55052 +8811,268.31,92.3221 +8812,268.22,94.1311 +8813,267.27,88.8514 +8814,267.1,90.57448 +8815,266.94,92.3313 +8816,266.82,94.1247 +8817,265.98,88.8907 +8818,265.77,90.59884 +8819,265.58,92.34 +8820,265.42,94.1169 +8821,264.69,88.9314 +8822,264.44,90.62361 +8823,264.21,92.3483 +8824,264.01,94.1076 +8825,263.39,88.9733 +8826,263.11,90.64878 +8827,262.85,92.356 +8828,262.61,94.097 +8829,262.1,89.0165 +8830,261.78,90.67436 +8831,261.49,92.3632 +8832,261.21,94.0851 +8833,260.81,89.06097 +8834,260.45,90.70033 +8835,260.12,92.37 +8836,259.81,94.0717 +8837,259.51,89.1067 +8838,259.13,90.72668 +8839,258.76,92.3763 +8840,258.41,94.0571 +8841,258.22,89.15368 +8842,257.8,90.75343 +8843,257.39,92.3821 +8844,257.01,94.0411 +8845,256.93,89.20187 +8846,256.47,90.78056 +8847,256.03,92.3874 +8848,255.61,94.0238 +8849,255.63,89.25129 +8850,255.14,90.80806 +8851,254.67,92.3923 +8852,254.21,94.0052 +8853,254.33,89.3019 +8854,253.81,90.83593 +8855,253.3,92.3968 +8856,252.82,93.9854 +8857,253.04,89.35369 +8858,252.48,90.86416 +8859,251.94,92.4008 +8860,251.42,93.9643 +8861,251.74,89.40664 +8862,251.15,90.89276 +8863,250.58,92.4043 +8864,250.02,93.942 +8865,250.45,89.46075 +8866,249.82,90.9217 +8867,249.21,92.4074 +8868,248.62,93.9185 +8869,249.15,89.51598 +8870,248.49,90.951 +8871,247.85,92.4101 +8872,247.23,93.8938 +8873,247.85,89.57233 +8874,247.16,90.98063 +8875,246.49,92.4124 +8876,245.83,93.8679 +8877,246.55,89.62977 +8878,245.83,91.0106 +8879,245.12,92.4142 +8880,244.43,93.8409 +8881,245.25,89.68828 +8882,244.5,91.0409 +8883,243.76,92.4157 +8884,243.04,93.8127 +8885,243.95,89.74785 +8886,243.17,91.0715 +8887,242.4,92.4167 +8888,241.65,93.7835 +8889,242.65,89.80844 +8890,241.84,91.1024 +8891,241.04,92.4174 +8892,240.25,93.7532 +8893,241.35,89.87005 +8894,240.5,91.1336 +8895,239.67,92.4176 +8896,238.86,93.7218 +8897,240.05,89.932644 +8898,239.17,91.1651 +8899,238.31,92.4175 +8900,237.47,93.6894 +8901,238.74,89.9962062 +8902,237.84,91.197 +8903,236.95,92.417 +8904,236.08,93.656 +8905,237.44,90.060711 +8906,236.51,91.229 +8907,235.59,92.4162 +8908,234.68,93.6216 +8909,236.14,90.12614 +8910,235.18,91.2614 +8911,234.23,92.415 +8912,233.29,93.5863 +8913,234.83,90.19245 +8914,233.84,91.294 +8915,232.87,92.4134 +8916,231.91,93.5501 +8917,233.52,90.25964 +8918,232.51,91.3269 +8919,231.51,92.4116 +8920,230.52,93.5129 +8921,232.22,90.32768 +8922,231.18,91.36 +8923,230.15,92.4094 +8924,229.13,93.4749 +8925,230.91,90.39654 +8926,229.84,91.3934 +8927,228.79,92.4068 +8928,227.74,93.4361 +8929,229.6,90.46618 +8930,228.51,91.427 +8931,227.43,92.404 +8932,226.36,93.3964 +8933,228.29,90.5366 +8934,227.17,91.4608 +8935,226.07,92.4008 +8936,224.97,93.3559 +8937,226.98,90.60776 +8938,225.84,91.4948 +8939,224.71,92.3974 +8940,223.59,93.3147 +8941,225.67,90.67963 +8942,224.5,91.529 +8943,223.35,92.3937 +8944,222.21,93.2728 +8945,224.36,90.75218 +8946,223.17,91.5634 +8947,221.99,92.3897 +8948,220.82,93.2301 +8949,223.04,90.82539 +8950,221.83,91.598 +8951,220.63,92.3855 +8952,219.44,93.1868 +8953,221.73,90.89923 +8954,220.5,91.6328 +8955,219.27,92.381 +8956,218.06,93.1428 +8957,220.41,90.97366 +8958,219.16,91.6677 +8959,217.92,92.3762 +8960,216.68,93.0983 +8961,219.1,91.0487 +8962,217.82,91.7028 +8963,216.56,92.3712 +8964,215.3,93.0531 +8965,217.78,91.1242 +8966,216.48,91.738 +8967,215.2,92.366 +8968,213.93,93.0074 +8969,216.46,91.2003 +8970,215.15,91.7733 +8971,213.84,92.3606 +8972,212.55,92.9612 +8973,215.14,91.2768 +8974,213.81,91.8088 +8975,212.49,92.355 +8976,211.18,92.9145 +8977,213.82,91.3538 +8978,212.47,91.8444 +8979,211.13,92.3492 +8980,209.8,92.8673 +8981,212.5,91.4312 +8982,211.13,91.88 +8983,209.78,92.3432 +8984,208.43,92.8197 +8985,211.17,91.5089 +8986,209.79,91.9158 +8987,208.42,92.337 +8988,207.06,92.7717 +8989,209.85,91.5871 +8990,208.45,91.9516 +8991,207.06,92.3307 +8992,205.69,92.7233 +8993,208.52,91.6655 +8994,207.11,91.9875 +8995,205.71,92.3242 +8996,204.32,92.6746 +8997,207.2,91.7443 +8998,205.77,92.0235 +8999,204.36,92.3176 +9000,202.95,92.6257 +9001,205.87,91.8233 +9002,204.43,92.0595 +9003,203,92.3109 +9004,201.58,92.5764 +9005,204.54,91.9025 +9006,203.09,92.0956 +9007,201.65,92.304 +9008,200.22,92.5269 +9009,203.21,91.9819 +9010,201.75,92.1316 +9011,200.29,92.297 +9012,198.85,92.4772 +9013,201.88,92.0615 +9014,200.4,92.1677 +9015,198.94,92.29 +9016,197.49,92.4273 +9017,200.55,92.1411 +9018,199.06,92.2038 +9019,197.59,92.2828 +9020,196.13,92.3773 +9021,199.21,92.2209 +9022,197.72,92.2398 +9023,196.24,92.2756 +9024,194.77,92.3272 +9025,197.88,92.3008 +9026,196.37,92.2759 +9027,194.88,92.2683 +9028,193.41,92.277 +9029,196.54,92.3806 +9030,195.03,92.3119 +9031,193.53,92.2609 +9032,192.05,92.2268 +9033,195.2,92.4605 +9034,193.69,92.3479 +9035,192.18,92.2535 +9036,190.69,92.1765 +9037,193.86,92.5402 +9038,192.34,92.3838 +9039,190.83,92.2461 +9040,189.33,92.1263 +9041,192.52,92.62 +9042,191,92.4196 +9043,189.48,92.2386 +9044,187.98,92.0761 +9045,191.18,92.6996 +9046,189.65,92.4554 +9047,188.13,92.2312 +9048,186.62,92.026 +9049,189.84,92.779 +9050,188.3,92.4911 +9051,186.78,92.2237 +9052,185.27,91.976 +9053,188.5,92.8583 +9054,186.96,92.5267 +9055,185.43,92.2163 +9056,183.92,91.9262 +9057,187.15,92.9373 +9058,185.61,92.5621 +9059,184.08,92.2089 +9060,182.57,91.8765 +9061,185.81,93.0161 +9062,184.26,92.5975 +9063,182.73,92.2015 +9064,181.22,91.827 +9065,184.46,93.0947 +9066,182.91,92.6327 +9067,181.39,92.1941 +9068,179.87,91.7778 +9069,183.11,93.1729 +9070,181.57,92.6677 +9071,180.04,92.1868 +9072,178.53,91.7289 +9073,181.76,93.2507 +9074,180.22,92.7026 +9075,178.69,92.1796 +9076,177.18,91.6803 +9077,180.41,93.3282 +9078,178.87,92.7374 +9079,177.34,92.1724 +9080,175.84,91.632 +9081,179.06,93.4052 +9082,177.52,92.7719 +9083,176,92.1654 +9084,174.49,91.584 +9085,177.7,93.4818 +9086,176.17,92.8063 +9087,174.65,92.1584 +9088,173.15,91.5365 +9089,176.35,93.5579 +9090,174.82,92.8405 +9091,173.3,92.1515 +9092,171.81,91.4894 +9093,174.99,93.6335 +9094,173.47,92.8744 +9095,171.96,92.1448 +9096,170.47,91.4427 +9097,173.63,93.7085 +9098,172.11,92.9082 +9099,170.61,92.1382 +9100,169.13,91.3966 +9101,172.27,93.7829 +9102,170.76,92.9417 +9103,169.27,92.1317 +9104,167.8,91.3509 +9105,170.91,93.8567 +9106,169.41,92.9749 +9107,167.93,92.1253 +9108,166.46,91.3058 +9109,169.55,93.9299 +9110,168.06,93.0079 +9111,166.58,92.1192 +9112,165.12,91.2613 +9113,168.19,94.0024 +9114,166.7,93.0407 +9115,165.24,92.1131 +9116,163.79,91.2173 +9117,166.83,94.0741 +9118,165.35,93.0732 +9119,163.89,92.1073 +9120,162.46,91.174 +9121,165.46,94.1451 +9122,164,93.1053 +9123,162.55,92.1016 +9124,161.13,91.1314 +9125,164.1,94.2153 +9126,162.64,93.1372 +9127,161.21,92.0962 +9128,159.8,91.0894 +9129,162.73,94.2848 +9130,161.29,93.1688 +9131,159.87,92.0909 +9132,158.47,91.0481 +9133,161.36,94.3533 +9134,159.93,93.2001 +9135,158.52,92.0859 +9136,157.14,91.0076 +9137,159.99,94.421 +9138,158.58,93.231 +9139,157.18,92.0811 +9140,155.81,90.96786 +9141,158.62,94.4878 +9142,157.22,93.2616 +9143,155.84,92.0765 +9144,154.49,90.9289 +9145,157.25,94.5537 +9146,155.86,93.2919 +9147,154.5,92.0721 +9148,153.16,90.89076 +9149,155.88,94.6186 +9150,154.51,93.3218 +9151,153.16,92.068 +9152,151.84,90.85345 +9153,154.5,94.6825 +9154,153.15,93.3514 +9155,151.82,92.0642 +9156,150.52,90.81701 +9157,153.13,94.7454 +9158,151.79,93.3806 +9159,150.48,92.0606 +9160,149.19,90.78147 +9161,151.75,94.8073 +9162,150.43,93.4094 +9163,149.14,92.0573 +9164,147.87,90.74684 +9165,150.37,94.868 +9166,149.07,93.4378 +9167,147.8,92.0543 +9168,146.55,90.71314 +9169,149,94.9277 +9170,147.72,93.4658 +9171,146.46,92.0516 +9172,145.23,90.68041 +9173,147.62,94.9863 +9174,146.36,93.4934 +9175,145.12,92.0492 +9176,143.92,90.64866 +9177,146.24,95.0437 +9178,145,93.5206 +9179,143.79,92.047 +9180,142.6,90.61792 +9181,144.85,95.0999 +9182,143.64,93.5474 +9183,142.45,92.0452 +9184,141.28,90.58821 +9185,143.47,95.1549 +9186,142.28,93.5738 +9187,141.11,92.0438 +9188,139.97,90.55954 +9189,142.09,95.2088 +9190,140.92,93.5997 +9191,139.77,92.0426 +9192,138.65,90.53194 +9193,140.7,95.2613 +9194,139.56,93.6252 +9195,138.44,92.0418 +9196,137.34,90.50543 +9197,139.32,95.3126 +9198,138.19,93.6502 +9199,137.1,92.0413 +9200,136.03,90.48003 +9201,137.93,95.3626 +9202,136.83,93.6748 +9203,135.76,92.0411 +9204,134.72,90.45575 +9205,136.55,95.4113 +9206,135.47,93.6989 +9207,134.43,92.0414 +9208,133.4,90.43262 +9209,135.16,95.4587 +9210,134.11,93.7225 +9211,133.09,92.0419 +9212,132.09,90.41065 +9213,133.77,95.5047 +9214,132.75,93.7456 +9215,131.75,92.0429 +9216,130.79,90.38986 +9217,132.38,95.5493 +9218,131.38,93.7683 +9219,130.42,92.0442 +9220,129.48,90.37027 +9221,130.99,95.5925 +9222,130.02,93.7905 +9223,129.08,92.0459 +9224,128.17,90.35188 +9225,129.6,95.6344 +9226,128.66,93.8122 +9227,127.75,92.0479 +9228,126.86,90.33473 +9229,128.21,95.6748 +9230,127.29,93.8334 +9231,126.41,92.0504 +9232,125.55,90.31882 +9233,126.81,95.7137 +9234,125.93,93.8541 +9235,125.08,92.0532 +9236,124.25,90.30416 +9237,125.42,95.7513 +9238,124.57,93.8742 +9239,123.74,92.0565 +9240,122.94,90.29077 +9241,124.03,95.7873 +9242,123.2,93.8939 +9243,122.41,92.0601 +9244,121.64,90.27867 +9245,122.63,95.8219 +9246,121.84,93.913 +9247,121.07,92.0642 +9248,120.33,90.26786 +9249,121.23,95.8549 +9250,120.47,93.9317 +9251,119.74,92.0686 +9252,119.03,90.25836 +9253,119.84,95.8865 +9254,119.11,93.9498 +9255,118.4,92.0735 +9256,117.73,90.25017 +9257,118.44,95.9165 +9258,117.74,93.9673 +9259,117.07,92.0788 +9260,116.42,90.24331 +9261,117.04,95.945 +9262,116.38,93.9843 +9263,115.74,92.0845 +9264,115.12,90.23779 +9265,115.65,95.972 +9266,115.01,94.0008 +9267,114.4,92.0906 +9268,113.82,90.23361 +9269,114.25,95.9974 +9270,113.65,94.0168 +9271,113.07,92.0971 +9272,112.52,90.23079 +9273,112.85,96.0212 +9274,112.28,94.0322 +9275,111.74,92.1041 +9276,111.22,90.22933 +9277,111.45,96.0435 +9278,110.91,94.047 +9279,110.4,92.1115 +9280,109.92,90.22924 +9281,110.05,96.0642 +9282,109.55,94.0614 +9283,109.07,92.1193 +9284,108.62,90.23053 +9285,108.65,96.0834 +9286,108.18,94.0751 +9287,107.74,92.1276 +9288,107.32,90.23319 +9289,107.25,96.1009 +9290,106.81,94.0883 +9291,106.4,92.1363 +9292,106.02,90.23724 +9293,105.85,96.1169 +9294,105.45,94.101 +9295,105.07,92.1454 +9296,104.72,90.24268 +9297,104.45,96.1313 +9298,104.08,94.1131 +9299,103.74,92.155 +9300,103.42,90.24951 +9301,103.05,96.1441 +9302,102.71,94.1246 +9303,102.41,92.165 +9304,102.12,90.25774 +9305,101.65,96.1553 +9306,101.35,94.1356 +9307,101.07,92.1754 +9308,100.82,90.26736 +9309,100.24,96.1649 +9310,99.98,94.1461 +9311,99.74,92.1863 +9312,99.521,90.27839 +9313,98.842,96.1729 +9314,98.613,94.156 +9315,98.407,92.1976 +9316,98.222,90.29082 +9317,97.44,96.1793 +9318,97.245,94.1653 +9319,97.074,92.2094 +9320,96.924,90.30464 +9321,96.038,96.1842 +9322,95.878,94.1741 +9323,95.742,92.2216 +9324,95.625,90.31987 +9325,94.635,96.1874 +9326,94.511,94.1823 +9327,94.409,92.2342 +9328,94.327,90.33649 +9329,93.233,96.1891 +9330,93.144,94.1899 +9331,93.076,92.2473 +9332,93.028,90.35451 +9333,91.83,96.1892 +9334,91.776,94.1971 +9335,91.744,92.2608 +9336,91.73,90.37392 +9337,90.428,96.1877 +9338,90.409,94.2036 +9339,90.411,92.2747 +9340,90.431,90.39472 +9341,89.025,96.1847 +9342,89.041,94.2096 +9343,89.078,92.2891 +9344,89.133,90.4169 +9345,87.623,96.1801 +9346,87.674,94.2151 +9347,87.745,92.3039 +9348,87.834,90.44047 +9349,86.22,96.174 +9350,86.307,94.22 +9351,86.412,92.3191 +9352,86.535,90.46541 +9353,84.818,96.1663 +9354,84.939,94.2244 +9355,85.079,92.3347 +9356,85.236,90.49172 +9357,83.416,96.1571 +9358,83.572,94.2282 +9359,83.746,92.3508 +9360,83.937,90.51939 +9361,82.014,96.1464 +9362,82.205,94.2315 +9363,82.413,92.3673 +9364,82.638,90.54842 +9365,80.612,96.1341 +9366,80.837,94.2343 +9367,81.08,92.3842 +9368,81.338,90.57879 +9369,79.21,96.1204 +9370,79.47,94.2365 +9371,79.747,92.4015 +9372,80.039,90.61049 +9373,77.809,96.1052 +9374,78.103,94.2383 +9375,78.413,92.4192 +9376,78.738,90.64353 +9377,76.408,96.0885 +9378,76.736,94.2395 +9379,77.08,92.4374 +9380,77.438,90.67788 +9381,75.007,96.0703 +9382,75.369,94.2401 +9383,75.746,92.4559 +9384,76.137,90.71353 +9385,73.607,96.0508 +9386,74.002,94.2403 +9387,74.412,92.4748 +9388,74.836,90.75048 +9389,72.206,96.0298 +9390,72.635,94.2399 +9391,73.078,92.4942 +9392,73.534,90.7887 +9393,70.807,96.0074 +9394,71.269,94.2391 +9395,71.744,92.5139 +9396,72.232,90.8282 +9397,69.407,95.9836 +9398,69.902,94.2377 +9399,70.41,92.534 +9400,70.93,90.86895 +9401,68.008,95.9584 +9402,68.536,94.2359 +9403,69.076,92.5545 +9404,69.627,90.91094 +9405,66.61,95.9319 +9406,67.169,94.2336 +9407,67.741,92.5753 +9408,68.324,90.95415 +9409,65.212,95.904 +9410,65.803,94.2308 +9411,66.406,92.5965 +9412,67.02,90.99857 +9413,63.815,95.8749 +9414,64.437,94.2275 +9415,65.071,92.6181 +9416,65.715,91.0442 +9417,62.418,95.8444 +9418,63.072,94.2237 +9419,63.736,92.64 +9420,64.41,91.091 +9421,61.021,95.8127 +9422,61.706,94.2195 +9423,62.4,92.6623 +9424,63.105,91.1389 +9425,59.626,95.7797 +9426,60.34,94.2149 +9427,61.065,92.685 +9428,61.798,91.188 +9429,58.231,95.7455 +9430,58.975,94.2097 +9431,59.729,92.7079 +9432,60.492,91.2382 +9433,56.836,95.7101 +9434,57.61,94.2042 +9435,58.393,92.7312 +9436,59.184,91.2895 +9437,55.442,95.6735 +9438,56.245,94.1982 +9439,57.056,92.7548 +9440,57.876,91.3419 +9441,54.049,95.6357 +9442,54.881,94.1918 +9443,55.72,92.7787 +9444,56.567,91.3954 +9445,52.657,95.5968 +9446,53.516,94.1849 +9447,54.383,92.803 +9448,55.257,91.4499 +9449,51.265,95.5569 +9450,52.152,94.1777 +9451,53.046,92.8275 +9452,53.947,91.5054 +9453,49.875,95.5158 +9454,50.788,94.17 +9455,51.708,92.8523 +9456,52.636,91.5619 +9457,48.484,95.4737 +9458,49.424,94.162 +9459,50.371,92.8774 +9460,51.324,91.6194 +9461,47.095,95.4305 +9462,48.061,94.1536 +9463,49.033,92.9028 +9464,50.011,91.6778 +9465,45.707,95.3864 +9466,46.697,94.1447 +9467,47.695,92.9285 +9468,48.697,91.7371 +9469,44.319,95.3413 +9470,45.335,94.1356 +9471,46.356,92.9544 +9472,47.383,91.7974 +9473,42.932,95.2952 +9474,43.972,94.126 +9475,45.017,92.9805 +9476,46.068,91.8585 +9477,41.547,95.2483 +9478,42.609,94.1162 +9479,43.678,93.0069 +9480,44.751,91.9205 +9481,40.162,95.2004 +9482,41.247,94.1059 +9483,42.338,93.0336 +9484,43.434,91.9833 +9485,38.778,95.1517 +9486,39.885,94.0954 +9487,40.999,93.0604 +9488,42.116,92.0469 +9489,37.394,95.1021 +9490,38.524,94.0845 +9491,39.658,93.0875 +9492,40.797,92.1113 +9493,36.012,95.0518 +9494,37.163,94.0733 +9495,38.318,93.1148 +9496,39.477,92.1764 +9497,34.631,95.0007 +9498,35.802,94.0618 +9499,36.977,93.1422 +9500,38.156,92.2423 +9501,33.251,94.9489 +9502,34.441,94.05 +9503,35.636,93.1699 +9504,36.835,92.3088 +9505,31.872,94.8963 +9506,33.081,94.0379 +9507,34.294,93.1977 +9508,35.512,92.376 +9509,30.494,94.8431 +9510,31.721,94.0256 +9511,32.953,93.2257 +9512,34.188,92.4438 +9513,29.117,94.7892 +9514,30.361,94.013 +9515,31.61,93.2538 +9516,32.863,92.5123 +9517,27.74,94.7347 +9518,29.002,94.0001 +9519,30.268,93.2821 +9520,31.537,92.5813 +9521,26.365,94.6797 +9522,27.643,93.987 +9523,28.925,93.3106 +9524,30.21,92.6508 +9525,24.991,94.6241 +9526,26.284,93.9737 +9527,27.581,93.3391 +9528,28.882,92.7208 +9529,23.619,94.568 +9530,24.926,93.9601 +9531,26.238,93.3678 +9532,27.552,92.7914 +9533,22.247,94.5114 +9534,23.568,93.9464 +9535,24.894,93.3965 +9536,26.222,92.8624 +9537,20.876,94.4543 +9538,22.21,93.9324 +9539,23.549,93.4254 +9540,24.891,92.9338 +9541,19.507,94.3969 +9542,20.853,93.9183 +9543,22.204,93.4543 +9544,23.558,93.0056 +9545,18.138,94.339 +9546,19.496,93.9039 +9547,20.859,93.4833 +9548,22.225,93.0777 +9549,16.771,94.2808 +9550,18.14,93.8894 +9551,19.513,93.5124 +9552,20.89,93.1502 +9553,15.405,94.2223 +9554,16.784,93.8748 +9555,18.167,93.5415 +9556,19.554,93.2229 +9557,14.04,94.1635 +9558,15.428,93.86 +9559,16.821,93.5707 +9560,18.217,93.296 +9561,12.676,94.1045 +9562,14.072,93.8451 +9563,15.474,93.5998 +9564,16.879,93.3692 +9565,11.313,94.0452 +9566,12.717,93.83 +9567,14.127,93.629 +9568,15.539,93.4426 +9569,9.9515,93.9858 +9570,11.363,93.8149 +9571,12.779,93.6582 +9572,14.199,93.5162 +9573,8.5911,93.9262 +9574,10.008,93.7996 +9575,11.431,93.6874 +9576,12.857,93.5899 +9577,7.2319,93.8665 +9578,8.6544,93.7843 +9579,10.082,93.7166 +9580,11.514,93.6637 +9581,5.8739,93.8067 +9582,7.3009,93.7688 +9583,8.7334,93.7457 +9584,10.17,93.7376 +9585,4.517,93.7468 +9586,5.9477,93.7533 +9587,7.3841,93.7748 +9588,8.8247,93.8115 +9589,3.1613,93.687 +9590,4.595,93.7378 +9591,6.0344,93.8038 +9592,7.4782,93.8854 +9593,1.8068,93.6271 +9594,3.2426,93.7222 +9595,4.6843,93.8328 +9596,6.1305,93.9592 +9597,0.45351,93.5673 +9598,1.8906,93.7066 +9599,3.3338,93.8617 +9600,4.7817,94.033 +9601,359.1,93.5076 +9602,0.53893,93.6909 +9603,1.9828,93.8905 +9604,3.4316,94.1066 +9605,357.75,93.448 +9606,359.19,93.6753 +9607,0.63146,93.9192 +9608,2.0803,94.1801 +9609,356.4,93.3885 +9610,357.84,93.6596 +9611,359.28,93.9478 +9612,0.72786,94.2534 +9613,355.05,93.3292 +9614,356.49,93.644 +9615,357.93,93.9763 +9616,359.37,94.3265 +9617,353.7,93.2702 +9618,355.14,93.6284 +9619,356.57,94.0046 +9620,358.02,94.3993 +9621,352.36,93.2114 +9622,353.79,93.6128 +9623,355.22,94.0328 +9624,356.66,94.4719 +9625,351.01,93.1528 +9626,352.44,93.5973 +9627,353.87,94.0609 +9628,355.31,94.5441 +9629,349.67,93.0946 +9630,351.09,93.5818 +9631,352.51,94.0888 +9632,353.95,94.616 +9633,348.33,93.0367 +9634,349.74,93.5664 +9635,351.16,94.1165 +9636,352.59,94.6875 +9637,346.99,92.9792 +9638,348.39,93.551 +9639,349.81,94.144 +9640,351.23,94.7586 +9641,345.64,92.922 +9642,347.04,93.5358 +9643,348.45,94.1713 +9644,349.87,94.8292 +9645,344.31,92.8653 +9646,345.7,93.5206 +9647,347.1,94.1984 +9648,348.5,94.8993 +9649,342.97,92.8091 +9650,344.35,93.5056 +9651,345.74,94.2252 +9652,347.14,94.9689 +9653,341.63,92.7534 +9654,343,93.4906 +9655,344.38,94.2519 +9656,345.77,95.038 +9657,340.29,92.6982 +9658,341.66,93.4758 +9659,343.03,94.2783 +9660,344.41,95.1064 +9661,338.96,92.6435 +9662,340.31,93.4612 +9663,341.67,94.3044 +9664,343.04,95.1742 +9665,337.63,92.5895 +9666,338.96,93.4467 +9667,340.31,94.3303 +9668,341.67,95.2414 +9669,336.29,92.536 +9670,337.62,93.4324 +9671,338.95,94.3559 +9672,340.3,95.3079 +9673,334.96,92.4832 +9674,336.27,93.4182 +9675,337.6,94.3812 +9676,338.93,95.3736 +9677,333.63,92.4311 +9678,334.93,93.4042 +9679,336.24,94.4062 +9680,337.56,95.4386 +9681,332.3,92.3796 +9682,333.59,93.3904 +9683,334.88,94.4309 +9684,336.18,95.5029 +9685,330.97,92.3289 +9686,332.24,93.3768 +9687,333.52,94.4553 +9688,334.81,95.5663 +9689,329.65,92.279 +9690,330.9,93.3634 +9691,332.16,94.4794 +9692,333.43,95.6288 +9693,328.32,92.2298 +9694,329.55,93.3502 +9695,330.8,94.5031 +9696,332.06,95.6905 +9697,326.99,92.1814 +9698,328.21,93.3373 +9699,329.44,94.5265 +9700,330.68,95.7513 +9701,325.67,92.1339 +9702,326.87,93.3246 +9703,328.08,94.5495 +9704,329.3,95.8111 +9705,324.35,92.0872 +9706,325.53,93.3121 +9707,326.72,94.5722 +9708,327.92,95.8699 +9709,323.02,92.0414 +9710,324.19,93.2999 +9711,325.36,94.5944 +9712,326.54,95.9278 +9713,321.7,91.9965 +9714,322.84,93.2879 +9715,323.99,94.6163 +9716,325.16,95.9846 +9717,320.38,91.9525 +9718,321.5,93.2763 +9719,322.63,94.6379 +9720,323.77,96.0404 +9721,319.06,91.9095 +9722,320.16,93.2649 +9723,321.27,94.659 +9724,322.39,96.0951 +9725,317.74,91.8675 +9726,318.82,93.2538 +9727,319.91,94.6796 +9728,321.01,96.1487 +9729,316.43,91.8265 +9730,317.48,93.2429 +9731,318.54,94.6999 +9732,319.62,96.2011 +9733,315.11,91.7865 +9734,316.14,93.2324 +9735,317.18,94.7198 +9736,318.23,96.2524 +9737,313.79,91.7475 +9738,314.8,93.2222 +9739,315.82,94.7392 +9740,316.85,96.3025 +9741,312.48,91.7096 +9742,313.46,93.2123 +9743,314.45,94.7582 +9744,315.46,96.3513 +9745,311.16,91.6728 +9746,312.12,93.2028 +9747,313.09,94.7767 +9748,314.07,96.399 +9749,309.85,91.6371 +9750,310.78,93.1936 +9751,311.73,94.7947 +9752,312.68,96.4454 +9753,308.53,91.6025 +9754,309.44,93.1847 +9755,310.36,94.8123 +9756,311.29,96.4904 +9757,307.22,91.5691 +9758,308.1,93.1761 +9759,309,94.8295 +9760,309.9,96.5342 +9761,305.91,91.5368 +9762,306.77,93.1679 +9763,307.63,94.8461 +9764,308.51,96.5767 +9765,304.6,91.5057 +9766,305.43,93.1601 +9767,306.27,94.8623 +9768,307.11,96.6178 +9769,303.29,91.4758 +9770,304.09,93.1526 +9771,304.9,94.8779 +9772,305.72,96.6575 +9773,301.98,91.4472 +9774,302.75,93.1455 +9775,303.53,94.8931 +9776,304.33,96.6958 +9777,300.67,91.4197 +9778,301.41,93.1388 +9779,302.17,94.9078 +9780,302.93,96.7328 +9781,299.36,91.3935 +9782,300.08,93.1324 +9783,300.8,94.9219 +9784,301.54,96.7682 +9785,298.05,91.3685 +9786,298.74,93.1265 +9787,299.43,94.9356 +9788,300.14,96.8023 +9789,296.75,91.3449 +9790,297.4,93.1209 +9791,298.07,94.9487 +9792,298.74,96.8349 +9793,295.44,91.3225 +9794,296.07,93.1157 +9795,296.7,94.9613 +9796,297.35,96.866 +9797,294.13,91.3014 +9798,294.73,93.111 +9799,295.33,94.9733 +9800,295.95,96.8956 +9801,292.83,91.2816 +9802,293.39,93.1066 +9803,293.97,94.9849 +9804,294.55,96.9237 +9805,291.52,91.2631 +9806,292.06,93.1026 +9807,292.6,94.9959 +9808,293.15,96.9502 +9809,290.22,91.246 +9810,290.72,93.0991 +9811,291.23,95.0063 +9812,291.75,96.9753 +9813,288.91,91.2302 +9814,289.38,93.0959 +9815,289.86,95.0162 +9816,290.35,96.9987 +9817,287.61,91.2158 +9818,288.05,93.0932 +9819,288.5,95.0256 +9820,288.95,97.0207 +9821,286.3,91.2027 +9822,286.71,93.0909 +9823,287.13,95.0344 +9824,287.55,97.041 +9825,285,91.191 +9826,285.38,93.089 +9827,285.76,95.0426 +9828,286.15,97.0598 +9829,283.7,91.1807 +9830,284.04,93.0875 +9831,284.39,95.0503 +9832,284.75,97.0769 +9833,282.39,91.1718 +9834,282.7,93.0865 +9835,283.02,95.0574 +9836,283.35,97.0925 +9837,281.09,91.1642 +9838,281.37,93.0859 +9839,281.65,95.064 +9840,281.95,97.1065 +9841,279.79,91.158 +9842,280.03,93.0857 +9843,280.29,95.07 +9844,280.55,97.1189 +9845,278.49,91.1533 +9846,278.7,93.086 +9847,278.92,95.0754 +9848,279.14,97.1296 +9849,277.18,91.1499 +9850,277.36,93.0867 +9851,277.55,95.0802 +9852,277.74,97.1387 +9853,275.88,91.1479 +9854,276.03,93.0879 +9855,276.18,95.0845 +9856,276.34,97.1462 +9857,274.58,91.1474 +9858,274.69,93.0894 +9859,274.81,95.0882 +9860,274.94,97.1521 +9861,273.28,91.1482 +9862,273.36,93.0914 +9863,273.44,95.0914 +9864,273.53,97.1563 +9865,271.98,91.1505 +9866,272.02,93.0939 +9867,272.07,95.094 +9868,272.13,97.1589 +9869,270.67,91.1542 +9870,270.69,93.0968 +9871,270.7,95.096 +9872,270.73,97.1599 +9873,269.37,91.1593 +9874,269.35,93.1001 +9875,269.34,95.0974 +9876,269.32,97.1593 +9877,268.07,91.1658 +9878,268.02,93.1039 +9879,267.97,95.0982 +9880,267.92,97.157 +9881,266.77,91.1737 +9882,266.68,93.1081 +9883,266.6,95.0985 +9884,266.52,97.1531 +9885,265.47,91.183 +9886,265.35,93.1127 +9887,265.23,95.0982 +9888,265.12,97.1476 +9889,264.16,91.1937 +9890,264.01,93.1178 +9891,263.86,95.0974 +9892,263.71,97.1404 +9893,262.86,91.2058 +9894,262.67,93.1233 +9895,262.49,95.096 +9896,262.31,97.1316 +9897,261.56,91.2193 +9898,261.34,93.1292 +9899,261.12,95.094 +9900,260.91,97.1213 +9901,260.26,91.2342 +9902,260,93.1356 +9903,259.75,95.0914 +9904,259.51,97.1093 +9905,258.95,91.2504 +9906,258.67,93.1423 +9907,258.39,95.0883 +9908,258.11,97.0958 +9909,257.65,91.2681 +9910,257.33,93.1496 +9911,257.02,95.0847 +9912,256.7,97.0806 +9913,256.35,91.2871 +9914,256,93.1572 +9915,255.65,95.0804 +9916,255.3,97.0639 +9917,255.04,91.3075 +9918,254.66,93.1653 +9919,254.28,95.0757 +9920,253.9,97.0456 +9921,253.74,91.3292 +9922,253.32,93.1737 +9923,252.91,95.0703 +9924,252.5,97.0258 +9925,252.43,91.3523 +9926,251.99,93.1826 +9927,251.54,95.0645 +9928,251.1,97.0044 +9929,251.13,91.3766 +9930,250.65,93.1919 +9931,250.18,95.0581 +9932,249.7,96.9816 +9933,249.82,91.4024 +9934,249.32,93.2016 +9935,248.81,95.0511 +9936,248.3,96.9571 +9937,248.52,91.4294 +9938,247.98,93.2117 +9939,247.44,95.0436 +9940,246.9,96.9312 +9941,247.21,91.4577 +9942,246.64,93.2222 +9943,246.07,95.0356 +9944,245.5,96.9039 +9945,245.91,91.4873 +9946,245.31,93.2331 +9947,244.71,95.0271 +9948,244.1,96.875 +9949,244.6,91.5182 +9950,243.97,93.2444 +9951,243.34,95.018 +9952,242.71,96.8447 +9953,243.29,91.5503 +9954,242.63,93.256 +9955,241.97,95.0085 +9956,241.31,96.8129 +9957,241.98,91.5837 +9958,241.29,93.2681 +9959,240.6,94.9984 +9960,239.91,96.7798 +9961,240.68,91.6183 +9962,239.96,93.2805 +9963,239.24,94.9878 +9964,238.52,96.7452 +9965,239.37,91.6541 +9966,238.62,93.2932 +9967,237.87,94.9768 +9968,237.12,96.7093 +9969,238.06,91.6911 +9970,237.28,93.3064 +9971,236.5,94.9652 +9972,235.73,96.672 +9973,236.75,91.7293 +9974,235.94,93.3199 +9975,235.14,94.9532 +9976,234.33,96.6334 +9977,235.43,91.7687 +9978,234.6,93.3337 +9979,233.77,94.9407 +9980,232.94,96.5934 +9981,234.12,91.8092 +9982,233.27,93.3479 +9983,232.41,94.9277 +9984,231.55,96.5522 +9985,232.81,91.8508 +9986,231.93,93.3624 +9987,231.04,94.9142 +9988,230.15,96.5097 +9989,231.5,91.8935 +9990,230.59,93.3773 +9991,229.68,94.9003 +9992,228.76,96.466 +9993,230.18,91.9373 +9994,229.25,93.3924 +9995,228.31,94.886 +9996,227.37,96.421 +9997,228.87,91.9821 +9998,227.91,93.4079 +9999,226.95,94.8712 +10000,225.98,96.3749 +10001,227.55,92.028 +10002,226.57,93.4237 +10003,225.58,94.8559 +10004,224.59,96.3275 +10005,226.24,92.075 +10006,225.23,93.4398 +10007,224.22,94.8403 +10008,223.21,96.2791 +10009,224.92,92.1229 +10010,223.89,93.4562 +10011,222.85,94.8242 +10012,221.82,96.2295 +10013,223.6,92.1718 +10014,222.55,93.4728 +10015,221.49,94.8078 +10016,220.43,96.1788 +10017,222.28,92.2216 +10018,221.21,93.4898 +10019,220.13,94.7909 +10020,219.05,96.127 +10021,220.96,92.2724 +10022,219.87,93.507 +10023,218.77,94.7736 +10024,217.66,96.0743 +10025,219.64,92.3241 +10026,218.52,93.5244 +10027,217.4,94.756 +10028,216.28,96.0205 +10029,218.32,92.3766 +10030,217.18,93.5421 +10031,216.04,94.738 +10032,214.9,95.9657 +10033,217,92.43 +10034,215.84,93.5601 +10035,214.68,94.7196 +10036,213.51,95.91 +10037,215.67,92.4842 +10038,214.5,93.5783 +10039,213.32,94.7009 +10040,212.13,95.8534 +10041,214.35,92.5393 +10042,213.15,93.5967 +10043,211.96,94.6818 +10044,210.75,95.7958 +10045,213.02,92.5951 +10046,211.81,93.6153 +10047,210.59,94.6624 +10048,209.38,95.7374 +10049,211.7,92.6516 +10050,210.47,93.6341 +10051,209.23,94.6427 +10052,208,95.6782 +10053,210.37,92.7089 +10054,209.12,93.6531 +10055,207.87,94.6227 +10056,206.62,95.6182 +10057,209.04,92.7668 +10058,207.78,93.6723 +10059,206.51,94.6023 +10060,205.25,95.5575 +10061,207.71,92.8255 +10062,206.43,93.6917 +10063,205.15,94.5817 +10064,203.87,95.4959 +10065,206.38,92.8847 +10066,205.09,93.7113 +10067,203.79,94.5608 +10068,202.5,95.4337 +10069,205.05,92.9446 +10070,203.74,93.7309 +10071,202.44,94.5396 +10072,201.13,95.3709 +10073,203.71,93.005 +10074,202.4,93.7508 +10075,201.08,94.5181 +10076,199.75,95.3073 +10077,202.38,93.066 +10078,201.05,93.7708 +10079,199.72,94.4964 +10080,198.38,95.2432 +10081,201.05,93.1275 +10082,199.71,93.7909 +10083,198.36,94.4745 +10084,197.01,95.1785 +10085,199.71,93.1895 +10086,198.36,93.8111 +10087,197,94.4523 +10088,195.65,95.1133 +10089,198.37,93.2519 +10090,197.01,93.8314 +10091,195.65,94.4299 +10092,194.28,95.0476 +10093,197.03,93.3147 +10094,195.66,93.8518 +10095,194.29,94.4073 +10096,192.91,94.9814 +10097,195.69,93.378 +10098,194.32,93.8723 +10099,192.93,94.3845 +10100,191.55,94.9147 +10101,194.35,93.4416 +10102,192.97,93.8928 +10103,191.58,94.3615 +10104,190.19,94.8477 +10105,193.01,93.5055 +10106,191.62,93.9135 +10107,190.22,94.3384 +10108,188.82,94.7803 +10109,191.67,93.5698 +10110,190.27,93.9341 +10111,188.87,94.315 +10112,187.46,94.7126 +10113,190.33,93.6343 +10114,188.92,93.9548 +10115,187.51,94.2916 +10116,186.1,94.6445 +10117,188.98,93.699 +10118,187.57,93.9756 +10119,186.16,94.268 +10120,184.75,94.5762 +10121,187.63,93.7639 +10122,186.22,93.9963 +10123,184.8,94.2442 +10124,183.39,94.5077 +10125,186.29,93.829 +10126,184.87,94.017 +10127,183.45,94.2203 +10128,182.03,94.4389 +10129,184.94,93.8942 +10130,183.52,94.0378 +10131,182.1,94.1964 +10132,180.68,94.37 +10133,183.59,93.9595 +10134,182.17,94.0585 +10135,180.75,94.1723 +10136,179.32,94.301 +10137,182.24,94.0249 +10138,180.82,94.0792 +10139,179.39,94.1482 +10140,177.97,94.2319 +10141,180.88,94.0903 +10142,179.46,94.0999 +10143,178.04,94.1239 +10144,176.62,94.1627 +10145,179.53,94.1557 +10146,178.11,94.1205 +10147,176.69,94.0997 +10148,175.27,94.0934 +10149,178.18,94.2211 +10150,176.76,94.141 +10151,175.34,94.0753 +10152,173.92,94.0242 +10153,176.82,94.2864 +10154,175.41,94.1615 +10155,173.99,94.051 +10156,172.57,93.9551 +10157,175.46,94.3516 +10158,174.05,94.1818 +10159,172.64,94.0266 +10160,171.22,93.886 +10161,174.11,94.4167 +10162,172.7,94.2021 +10163,171.29,94.0021 +10164,169.88,93.817 +10165,172.75,94.4816 +10166,171.34,94.2223 +10167,169.94,93.9777 +10168,168.53,93.7481 +10169,171.39,94.5463 +10170,169.99,94.2423 +10171,168.59,93.9533 +10172,167.19,93.6794 +10173,170.02,94.6108 +10174,168.63,94.2623 +10175,167.24,93.9289 +10176,165.85,93.611 +10177,168.66,94.6749 +10178,167.28,94.282 +10179,165.89,93.9046 +10180,164.51,93.5428 +10181,167.3,94.7388 +10182,165.92,94.3016 +10183,164.54,93.8802 +10184,163.17,93.4748 +10185,165.93,94.8023 +10186,164.56,94.3211 +10187,163.2,93.856 +10188,161.83,93.4072 +10189,164.57,94.8655 +10190,163.21,94.3404 +10191,161.85,93.8318 +10192,160.49,93.3398 +10193,163.2,94.9283 +10194,161.85,94.3595 +10195,160.5,93.8076 +10196,159.15,93.2729 +10197,161.83,94.9906 +10198,160.49,94.3784 +10199,159.16,93.7836 +10200,157.82,93.2064 +10201,160.46,95.0524 +10202,159.14,94.397 +10203,157.81,93.7596 +10204,156.48,93.1403 +10205,159.09,95.1137 +10206,157.78,94.4155 +10207,156.46,93.7358 +10208,155.15,93.0746 +10209,157.72,95.1745 +10210,156.42,94.4337 +10211,155.12,93.712 +10212,153.82,93.0095 +10213,156.35,95.2348 +10214,155.06,94.4517 +10215,153.77,93.6884 +10216,152.49,92.9449 +10217,154.97,95.2944 +10218,153.7,94.4695 +10219,152.43,93.665 +10220,151.16,92.8808 +10221,153.6,95.3533 +10222,152.34,94.4869 +10223,151.09,93.6416 +10224,149.83,92.8173 +10225,152.22,95.4116 +10226,150.98,94.5041 +10227,149.74,93.6185 +10228,148.5,92.7545 +10229,150.84,95.4692 +10230,149.62,94.5211 +10231,148.4,93.5955 +10232,147.18,92.6922 +10233,149.46,95.5261 +10234,148.26,94.5377 +10235,147.05,93.5726 +10236,145.85,92.6307 +10237,148.09,95.5822 +10238,146.9,94.554 +10239,145.71,93.55 +10240,144.52,92.5699 +10241,146.71,95.6375 +10242,145.54,94.57 +10243,144.37,93.5276 +10244,143.2,92.5097 +10245,145.32,95.692 +10246,144.18,94.5857 +10247,143.03,93.5054 +10248,141.88,92.4504 +10249,143.94,95.7456 +10250,142.81,94.601 +10251,141.69,93.4833 +10252,140.56,92.3918 +10253,142.56,95.7983 +10254,141.45,94.616 +10255,140.34,93.4616 +10256,139.24,92.334 +10257,141.18,95.8501 +10258,140.09,94.6307 +10259,139,93.44 +10260,137.92,92.2771 +10261,139.79,95.901 +10262,138.73,94.645 +10263,137.66,93.4187 +10264,136.6,92.2211 +10265,138.4,95.9509 +10266,137.36,94.6589 +10267,136.32,93.3977 +10268,135.28,92.1659 +10269,137.02,95.9997 +10270,136,94.6724 +10271,134.98,93.3769 +10272,133.96,92.1116 +10273,135.63,96.0476 +10274,134.64,94.6856 +10275,133.64,93.3563 +10276,132.64,92.0583 +10277,134.24,96.0944 +10278,133.27,94.6983 +10279,132.3,93.3361 +10280,131.33,92.0059 +10281,132.85,96.1401 +10282,131.91,94.7107 +10283,130.96,93.3161 +10284,130.01,91.9545 +10285,131.46,96.1846 +10286,130.54,94.7226 +10287,129.62,93.2965 +10288,128.7,91.9042 +10289,130.07,96.2281 +10290,129.18,94.7341 +10291,128.28,93.2771 +10292,127.39,91.8548 +10293,128.68,96.2704 +10294,127.81,94.7452 +10295,126.95,93.258 +10296,126.07,91.8065 +10297,127.29,96.3114 +10298,126.45,94.7558 +10299,125.61,93.2393 +10300,124.76,91.7593 +10301,125.89,96.3513 +10302,125.08,94.766 +10303,124.27,93.2209 +10304,123.45,91.7131 +10305,124.5,96.3899 +10306,123.72,94.7757 +10307,122.93,93.2028 +10308,122.14,91.6681 +10309,123.11,96.4273 +10310,122.35,94.785 +10311,121.59,93.1851 +10312,120.83,91.6242 +10313,121.71,96.4634 +10314,120.99,94.7938 +10315,120.26,93.1677 +10316,119.52,91.5815 +10317,120.32,96.4982 +10318,119.62,94.8021 +10319,118.92,93.1506 +10320,118.21,91.5399 +10321,118.92,96.5316 +10322,118.25,94.81 +10323,117.58,93.1339 +10324,116.91,91.4995 +10325,117.52,96.5637 +10326,116.89,94.8174 +10327,116.25,93.1176 +10328,115.6,91.4603 +10329,116.13,96.5944 +10330,115.52,94.8242 +10331,114.91,93.1016 +10332,114.29,91.4223 +10333,114.73,96.6238 +10334,114.15,94.8306 +10335,113.57,93.0861 +10336,112.99,91.3856 +10337,113.33,96.6517 +10338,112.79,94.8365 +10339,112.24,93.0709 +10340,111.68,91.3501 +10341,111.93,96.6782 +10342,111.42,94.8418 +10343,110.9,93.056 +10344,110.38,91.3159 +10345,110.53,96.7033 +10346,110.05,94.8467 +10347,109.56,93.0416 +10348,109.07,91.2829 +10349,109.13,96.7269 +10350,108.68,94.851 +10351,108.23,93.0276 +10352,107.77,91.2512 +10353,107.73,96.749 +10354,107.32,94.8548 +10355,106.89,93.0139 +10356,106.46,91.2209 +10357,106.33,96.7696 +10358,105.95,94.858 +10359,105.56,93.0007 +10360,105.16,91.1918 +10361,104.93,96.7888 +10362,104.58,94.8608 +10363,104.22,92.9879 +10364,103.86,91.1641 +10365,103.53,96.8064 +10366,103.21,94.863 +10367,102.89,92.9755 +10368,102.55,91.1377 +10369,102.13,96.8224 +10370,101.84,94.8646 +10371,101.55,92.9635 +10372,101.25,91.1127 +10373,100.72,96.837 +10374,100.48,94.8657 +10375,100.22,92.9519 +10376,99.949,91.089 +10377,99.323,96.85 +10378,99.107,94.8663 +10379,98.882,92.9407 +10380,98.648,91.0666 +10381,97.921,96.8614 +10382,97.739,94.8663 +10383,97.547,92.93 +10384,97.346,91.0457 +10385,96.518,96.8713 +10386,96.371,94.8657 +10387,96.212,92.9197 +10388,96.044,91.0261 +10389,95.116,96.8795 +10390,95.002,94.8646 +10391,94.878,92.9098 +10392,94.743,91.0079 +10393,93.713,96.8862 +10394,93.634,94.8629 +10395,93.543,92.9003 +10396,93.442,90.99106 +10397,92.311,96.8913 +10398,92.266,94.8607 +10399,92.208,92.8913 +10400,92.141,90.97564 +10401,90.908,96.8948 +10402,90.897,94.8579 +10403,90.874,92.8827 +10404,90.84,90.96162 +10405,89.505,96.8966 +10406,89.529,94.8546 +10407,89.539,92.8746 +10408,89.539,90.949 +10409,88.103,96.8969 +10410,88.16,94.8506 +10411,88.205,92.8668 +10412,88.238,90.93778 +10413,86.7,96.8955 +10414,86.792,94.8461 +10415,86.87,92.8596 +10416,86.937,90.92797 +10417,85.297,96.8926 +10418,85.424,94.8411 +10419,85.536,92.8527 +10420,85.636,90.91956 +10421,83.895,96.888 +10422,84.055,94.8355 +10423,84.201,92.8463 +10424,84.335,90.91256 +10425,82.493,96.8818 +10426,82.687,94.8293 +10427,82.867,92.8403 +10428,83.034,90.90697 +10429,81.09,96.874 +10430,81.319,94.8225 +10431,81.532,92.8348 +10432,81.733,90.90279 +10433,79.688,96.8645 +10434,79.951,94.8152 +10435,80.198,92.8297 +10436,80.432,90.90001 +10437,78.286,96.8534 +10438,78.583,94.8073 +10439,78.863,92.8251 +10440,79.13,90.89864 +10441,76.885,96.8408 +10442,77.215,94.7989 +10443,77.528,92.8209 +10444,77.829,90.89867 +10445,75.483,96.8265 +10446,75.847,94.7898 +10447,76.194,92.8171 +10448,76.527,90.90009 +10449,74.082,96.8106 +10450,74.479,94.7803 +10451,74.859,92.8137 +10452,75.225,90.90291 +10453,72.682,96.7931 +10454,73.111,94.7701 +10455,73.524,92.8108 +10456,73.923,90.90712 +10457,71.281,96.774 +10458,71.744,94.7594 +10459,72.189,92.8083 +10460,72.62,90.9127 +10461,69.881,96.7533 +10462,70.376,94.7482 +10463,70.854,92.8063 +10464,71.317,90.91967 +10465,68.482,96.7311 +10466,69.009,94.7364 +10467,69.519,92.8046 +10468,70.014,90.928 +10469,67.082,96.7072 +10470,67.642,94.724 +10471,68.184,92.8034 +10472,68.71,90.9377 +10473,65.684,96.6819 +10474,66.275,94.7111 +10475,66.848,92.8026 +10476,67.406,90.94875 +10477,64.285,96.6549 +10478,64.908,94.6977 +10479,65.513,92.8022 +10480,66.102,90.96114 +10481,62.888,96.6264 +10482,63.542,94.6837 +10483,64.177,92.8023 +10484,64.797,90.97486 +10485,61.49,96.5964 +10486,62.175,94.6691 +10487,62.841,92.8027 +10488,63.492,90.98992 +10489,60.094,96.5649 +10490,60.809,94.6541 +10491,61.505,92.8036 +10492,62.186,91.0063 +10493,58.698,96.5319 +10494,59.443,94.6385 +10495,60.169,92.8049 +10496,60.879,91.0239 +10497,57.302,96.4974 +10498,58.077,94.6224 +10499,58.833,92.8065 +10500,59.572,91.0429 +10501,55.908,96.4614 +10502,56.712,94.6057 +10503,57.496,92.8086 +10504,58.265,91.0631 +10505,54.513,96.424 +10506,55.346,94.5886 +10507,56.16,92.811 +10508,56.957,91.0846 +10509,53.12,96.3852 +10510,53.981,94.5709 +10511,54.823,92.8138 +10512,55.648,91.1074 +10513,51.727,96.3449 +10514,52.616,94.5528 +10515,53.486,92.817 +10516,54.339,91.1313 +10517,50.335,96.3032 +10518,51.252,94.5341 +10519,52.148,92.8206 +10520,53.029,91.1565 +10521,48.944,96.2601 +10522,49.887,94.515 +10523,50.811,92.8246 +10524,51.718,91.1829 +10525,47.554,96.2157 +10526,48.523,94.4953 +10527,49.473,92.8289 +10528,50.407,91.2105 +10529,46.164,96.17 +10530,47.159,94.4752 +10531,48.135,92.8335 +10532,49.095,91.2393 +10533,44.775,96.1229 +10534,45.796,94.4547 +10535,46.797,92.8385 +10536,47.782,91.2692 +10537,43.387,96.0745 +10538,44.432,94.4336 +10539,45.459,92.8439 +10540,46.469,91.3002 +10541,42,96.0248 +10542,43.069,94.4121 +10543,44.12,92.8496 +10544,45.154,91.3323 +10545,40.614,95.9739 +10546,41.707,94.3901 +10547,42.781,92.8556 +10548,43.839,91.3656 +10549,39.228,95.9218 +10550,40.344,94.3677 +10551,41.442,92.862 +10552,42.523,91.3999 +10553,37.844,95.8684 +10554,38.982,94.3449 +10555,40.102,92.8686 +10556,41.206,91.4353 +10557,36.46,95.8139 +10558,37.621,94.3216 +10559,38.762,92.8756 +10560,39.888,91.4717 +10561,35.078,95.7583 +10562,36.259,94.298 +10563,37.422,92.8829 +10564,38.57,91.5091 +10565,33.696,95.7015 +10566,34.898,94.2739 +10567,36.082,92.8905 +10568,37.25,91.5475 +10569,32.316,95.6436 +10570,33.537,94.2494 +10571,34.741,92.8983 +10572,35.93,91.5868 +10573,30.936,95.5846 +10574,32.177,94.2245 +10575,33.4,92.9065 +10576,34.608,91.6271 +10577,29.558,95.5246 +10578,30.817,94.1992 +10579,32.059,92.9149 +10580,33.286,91.6683 +10581,28.18,95.4635 +10582,29.457,94.1736 +10583,30.717,92.9235 +10584,31.963,91.7105 +10585,26.804,95.4015 +10586,28.098,94.1475 +10587,29.376,92.9325 +10588,30.638,91.7534 +10589,25.428,95.3385 +10590,26.739,94.1212 +10591,28.033,92.9416 +10592,29.313,91.7973 +10593,24.054,95.2746 +10594,25.38,94.0944 +10595,26.691,92.951 +10596,27.987,91.8419 +10597,22.681,95.2098 +10598,24.022,94.0674 +10599,25.348,92.9607 +10600,26.659,91.8873 +10601,21.309,95.1442 +10602,22.664,94.04 +10603,24.005,92.9705 +10604,25.331,91.9335 +10605,19.938,95.0776 +10606,21.307,94.0122 +10607,22.661,92.9805 +10608,24.001,91.9805 +10609,18.568,95.0103 +10610,19.95,93.9842 +10611,21.317,92.9908 +10612,22.671,92.0281 +10613,17.199,94.9422 +10614,18.593,93.9559 +10615,19.973,93.0012 +10616,21.339,92.0765 +10617,15.832,94.8734 +10618,17.237,93.9273 +10619,18.628,93.0119 +10620,20.006,92.1255 +10621,14.465,94.8038 +10622,15.881,93.8984 +10623,17.283,93.0226 +10624,18.673,92.1751 +10625,13.1,94.7336 +10626,14.526,93.8692 +10627,15.938,93.0336 +10628,17.338,92.2253 +10629,11.736,94.6627 +10630,13.171,93.8398 +10631,14.592,93.0447 +10632,16.002,92.2761 +10633,10.373,94.5913 +10634,11.816,93.8101 +10635,13.246,93.0559 +10636,14.664,92.3274 +10637,9.0115,94.5192 +10638,10.462,93.7802 +10639,11.9,93.0673 +10640,13.326,92.3793 +10641,7.651,94.4466 +10642,9.1079,93.7501 +10643,10.553,93.0788 +10644,11.986,92.4316 +10645,6.2917,94.3735 +10646,7.7545,93.7197 +10647,9.206,93.0904 +10648,10.646,92.4844 +10649,4.9336,94.2999 +10650,6.4015,93.6892 +10651,7.8585,93.1021 +10652,9.304,92.5376 +10653,3.5767,94.2258 +10654,5.049,93.6585 +10655,6.5106,93.1139 +10656,7.961,92.5912 +10657,2.221,94.1514 +10658,3.6968,93.6275 +10659,5.1623,93.1257 +10660,6.6169,92.6451 +10661,0.86659,94.0765 +10662,2.3451,93.5964 +10663,3.8137,93.1376 +10664,5.2715,92.6994 +10665,359.51,94.0013 +10666,0.99379,93.5652 +10667,2.4647,93.1496 +10668,3.925,92.754 +10669,358.16,93.9258 +10670,359.64,93.5338 +10671,1.1152,93.1616 +10672,2.5773,92.8088 +10673,356.81,93.8501 +10674,358.29,93.5022 +10675,359.77,93.1737 +10676,1.2284,92.8639 +10677,355.46,93.7741 +10678,356.94,93.4706 +10679,358.42,93.1858 +10680,359.88,92.9192 +10681,354.11,93.6979 +10682,355.59,93.4388 +10683,357.06,93.1979 +10684,358.53,92.9746 +10685,352.77,93.6215 +10686,354.24,93.4069 +10687,355.71,93.21 +10688,357.17,93.0302 +10689,351.42,93.545 +10690,352.89,93.3749 +10691,354.36,93.2221 +10692,355.82,93.0859 +10693,350.07,93.4684 +10694,351.55,93.3429 +10695,353.01,93.2341 +10696,354.47,93.1416 +10697,348.73,93.3917 +10698,350.2,93.3107 +10699,351.66,93.2462 +10700,353.11,93.1974 +10701,347.39,93.315 +10702,348.85,93.2786 +10703,350.31,93.2582 +10704,351.75,93.2532 +10705,346.05,93.2382 +10706,347.5,93.2463 +10707,348.95,93.2701 +10708,350.39,93.309 +10709,344.71,93.1616 +10710,346.16,93.2141 +10711,347.6,93.282 +10712,349.03,93.3647 +10713,343.37,93.0849 +10714,344.81,93.1818 +10715,346.25,93.2938 +10716,347.67,93.4204 +10717,342.03,93.0084 +10718,343.47,93.1495 +10719,344.89,93.3055 +10720,346.31,93.4759 +10721,340.7,92.9321 +10722,342.12,93.1172 +10723,343.54,93.3171 +10724,344.95,93.5312 +10725,339.36,92.8558 +10726,340.78,93.0849 +10727,342.18,93.3286 +10728,343.58,93.5864 +10729,338.03,92.7798 +10730,339.43,93.0526 +10731,340.83,93.34 +10732,342.22,93.6413 +10733,336.69,92.7041 +10734,338.09,93.0204 +10735,339.47,93.3512 +10736,340.85,93.696 +10737,335.36,92.6286 +10738,336.74,92.9882 +10739,338.12,93.3624 +10740,339.49,93.7504 +10741,334.03,92.5534 +10742,335.4,92.9561 +10743,336.76,93.3733 +10744,338.12,93.8045 +10745,332.7,92.4785 +10746,334.06,92.924 +10747,335.4,93.3841 +10748,336.75,93.8582 +10749,331.37,92.404 +10750,332.71,92.892 +10751,334.05,93.3947 +10752,335.38,93.9115 +10753,330.05,92.3299 +10754,331.37,92.8601 +10755,332.69,93.4052 +10756,334,93.9644 +10757,328.72,92.2562 +10758,330.03,92.8283 +10759,331.33,93.4154 +10760,332.63,94.0169 +10761,327.4,92.183 +10762,328.69,92.7966 +10763,329.98,93.4254 +10764,331.26,94.0689 +10765,326.07,92.1103 +10766,327.35,92.765 +10767,328.62,93.4352 +10768,329.88,94.1203 +10769,324.75,92.0381 +10770,326.01,92.7336 +10771,327.26,93.4448 +10772,328.5,94.1712 +10773,323.43,91.9665 +10774,324.67,92.7022 +10775,325.9,93.4542 +10776,327.13,94.2216 +10777,322.11,91.8954 +10778,323.33,92.6711 +10779,324.54,93.4633 +10780,325.75,94.2713 +10781,320.79,91.8249 +10782,321.99,92.6401 +10783,323.18,93.4721 +10784,324.37,94.3204 +10785,319.47,91.7551 +10786,320.65,92.6093 +10787,321.82,93.4807 +10788,322.99,94.3688 +10789,318.15,91.686 +10790,319.31,92.5786 +10791,320.46,93.489 +10792,321.61,94.4165 +10793,316.83,91.6176 +10794,317.97,92.5482 +10795,319.1,93.497 +10796,320.22,94.4635 +10797,315.52,91.5498 +10798,316.63,92.5179 +10799,317.74,93.5047 +10800,318.84,94.5098 +10801,314.2,91.4829 +10802,315.29,92.4879 +10803,316.38,93.5121 +10804,317.46,94.5552 +10805,312.89,91.4167 +10806,313.96,92.4581 +10807,315.02,93.5192 +10808,316.07,94.5998 +10809,311.58,91.3513 +10810,312.62,92.4285 +10811,313.66,93.526 +10812,314.68,94.6436 +10813,310.26,91.2868 +10814,311.28,92.3991 +10815,312.29,93.5324 +10816,313.3,94.6865 +10817,308.95,91.2231 +10818,309.95,92.37 +10819,310.93,93.5385 +10820,311.91,94.7284 +10821,307.64,91.1603 +10822,308.61,92.3411 +10823,309.57,93.5442 +10824,310.52,94.7695 +10825,306.33,91.0984 +10826,307.27,92.3125 +10827,308.21,93.5496 +10828,309.13,94.8096 +10829,305.02,91.0375 +10830,305.94,92.2842 +10831,306.84,93.5546 +10832,307.74,94.8487 +10833,303.72,90.97749 +10834,304.6,92.2562 +10835,305.48,93.5592 +10836,306.35,94.8868 +10837,302.41,90.91847 +10838,303.27,92.2284 +10839,304.12,93.5634 +10840,304.96,94.9238 +10841,301.1,90.86046 +10842,301.93,92.201 +10843,302.76,93.5672 +10844,303.57,94.9598 +10845,299.8,90.80347 +10846,300.6,92.1738 +10847,301.39,93.5707 +10848,302.17,94.9946 +10849,298.49,90.74753 +10850,299.27,92.147 +10851,300.03,93.5737 +10852,300.78,95.0284 +10853,297.19,90.69265 +10854,297.93,92.1205 +10855,298.66,93.5763 +10856,299.38,95.061 +10857,295.88,90.63886 +10858,296.6,92.0943 +10859,297.3,93.5784 +10860,297.99,95.0925 +10861,294.58,90.58617 +10862,295.26,92.0684 +10863,295.93,93.5802 +10864,296.59,95.1228 +10865,293.28,90.53462 +10866,293.93,92.0429 +10867,294.57,93.5815 +10868,295.2,95.1518 +10869,291.98,90.4842 +10870,292.6,92.0177 +10871,293.21,93.5823 +10872,293.8,95.1796 +10873,290.67,90.43495 +10874,291.26,91.9929 +10875,291.84,93.5827 +10876,292.4,95.2062 +10877,289.37,90.38687 +10878,289.93,91.9685 +10879,290.48,93.5827 +10880,291,95.2315 +10881,288.07,90.34 +10882,288.6,91.9444 +10883,289.11,93.5821 +10884,289.61,95.2555 +10885,286.77,90.29433 +10886,287.27,91.9206 +10887,287.74,93.5811 +10888,288.21,95.2782 +10889,285.47,90.24989 +10890,285.93,91.8973 +10891,286.38,93.5796 +10892,286.81,95.2996 +10893,284.17,90.20669 +10894,284.6,91.8743 +10895,285.01,93.5777 +10896,285.41,95.3196 +10897,282.88,90.16475 +10898,283.27,91.8517 +10899,283.65,93.5752 +10900,284.01,95.3382 +10901,281.58,90.12408 +10902,281.94,91.8296 +10903,282.28,93.5723 +10904,282.61,95.3555 +10905,280.28,90.084684 +10906,280.61,91.8078 +10907,280.92,93.5689 +10908,281.21,95.3713 +10909,278.98,90.046586 +10910,279.28,91.7864 +10911,279.55,93.5649 +10912,279.81,95.3858 +10913,277.68,90.0097929 +10914,277.94,91.7654 +10915,278.18,93.5605 +10916,278.4,95.3988 +10917,276.39,89.974316 +10918,276.61,91.7448 +10919,276.82,93.5555 +10920,277,95.4103 +10921,275.09,89.940164 +10922,275.28,91.7246 +10923,275.45,93.55 +10924,275.6,95.4204 +10925,273.79,89.907348 +10926,273.95,91.7049 +10927,274.09,93.544 +10928,274.2,95.429 +10929,272.5,89.87588 +10930,272.62,91.6856 +10931,272.72,93.5375 +10932,272.8,95.4362 +10933,271.2,89.84575 +10934,271.29,91.6667 +10935,271.35,93.5304 +10936,271.4,95.4418 +10937,269.91,89.81699 +10938,269.96,91.6482 +10939,269.99,93.5229 +10940,269.99,95.446 +10941,268.61,89.7896 +10942,268.63,91.6301 +10943,268.62,93.5148 +10944,268.59,95.4486 +10945,267.31,89.76357 +10946,267.3,91.6125 +10947,267.26,93.5061 +10948,267.19,95.4497 +10949,266.02,89.73892 +10950,265.97,91.5953 +10951,265.89,93.497 +10952,265.79,95.4493 +10953,264.72,89.71566 +10954,264.64,91.5785 +10955,264.52,93.4872 +10956,264.38,95.4474 +10957,263.43,89.69378 +10958,263.31,91.5622 +10959,263.16,93.477 +10960,262.98,95.4439 +10961,262.13,89.67328 +10962,261.97,91.5463 +10963,261.79,93.4662 +10964,261.58,95.4388 +10965,260.84,89.65418 +10966,260.64,91.5309 +10967,260.43,93.4549 +10968,260.18,95.4322 +10969,259.54,89.63647 +10970,259.31,91.5159 +10971,259.06,93.443 +10972,258.78,95.4241 +10973,258.24,89.62015 +10974,257.98,91.5013 +10975,257.69,93.4306 +10976,257.38,95.4144 +10977,256.95,89.60522 +10978,256.65,91.4871 +10979,256.33,93.4176 +10980,255.98,95.4031 +10981,255.65,89.59169 +10982,255.32,91.4734 +10983,254.96,93.4041 +10984,254.57,95.3903 +10985,254.36,89.57955 +10986,253.99,91.4602 +10987,253.6,93.3901 +10988,253.17,95.3759 +10989,253.06,89.5688 +10990,252.66,91.4474 +10991,252.23,93.3755 +10992,251.77,95.3599 +10993,251.76,89.55944 +10994,251.33,91.435 +10995,250.87,93.3604 +10996,250.37,95.3424 +10997,250.46,89.55146 +10998,250,91.423 +10999,249.5,93.3447 +11000,248.97,95.3233 +11001,249.17,89.54486 +11002,248.67,91.4115 +11003,248.14,93.3285 +11004,247.58,95.3027 +11005,247.87,89.53964 +11006,247.34,91.4004 +11007,246.77,93.3117 +11008,246.18,95.2805 +11009,246.57,89.53578 +11010,246,91.3898 +11011,245.41,93.2944 +11012,244.78,95.2568 +11013,245.27,89.53329 +11014,244.67,91.3796 +11015,244.04,93.2766 +11016,243.38,95.2315 +11017,243.97,89.53216 +11018,243.34,91.3698 +11019,242.68,93.2583 +11020,241.98,95.2047 +11021,242.67,89.53238 +11022,242.01,91.3605 +11023,241.32,93.2394 +11024,240.59,95.1763 +11025,241.37,89.53394 +11026,240.68,91.3515 +11027,239.95,93.22 +11028,239.19,95.1465 +11029,240.07,89.53684 +11030,239.35,91.343 +11031,238.59,93.2001 +11032,237.8,95.1151 +11033,238.77,89.54106 +11034,238.01,91.3349 +11035,237.23,93.1796 +11036,236.4,95.0822 +11037,237.47,89.54659 +11038,236.68,91.3272 +11039,235.86,93.1586 +11040,235.01,95.0479 +11041,236.17,89.55343 +11042,235.35,91.32 +11043,234.5,93.1372 +11044,233.61,95.012 +11045,234.87,89.56156 +11046,234.02,91.3131 +11047,233.14,93.1152 +11048,232.22,94.9747 +11049,233.56,89.57097 +11050,232.68,91.3067 +11051,231.78,93.0927 +11052,230.83,94.9359 +11053,232.26,89.58165 +11054,231.35,91.3006 +11055,230.41,93.0697 +11056,229.44,94.8957 +11057,230.96,89.59359 +11058,230.02,91.2949 +11059,229.05,93.0462 +11060,228.05,94.8541 +11061,229.65,89.60676 +11062,228.69,91.2897 +11063,227.69,93.0222 +11064,226.66,94.8111 +11065,228.34,89.62116 +11066,227.35,91.2848 +11067,226.33,92.9977 +11068,225.27,94.7666 +11069,227.04,89.63678 +11070,226.02,91.2803 +11071,224.97,92.9728 +11072,223.88,94.7208 +11073,225.73,89.65359 +11074,224.68,91.2761 +11075,223.61,92.9474 +11076,222.49,94.6736 +11077,224.42,89.67157 +11078,223.35,91.2724 +11079,222.25,92.9215 +11080,221.11,94.6251 +11081,223.11,89.69073 +11082,222.02,91.269 +11083,220.89,92.8951 +11084,219.72,94.5752 +11085,221.8,89.71102 +11086,220.68,91.266 +11087,219.53,92.8683 +11088,218.34,94.5241 +11089,220.49,89.73245 +11090,219.35,91.2633 +11091,218.17,92.841 +11092,216.95,94.4716 +11093,219.18,89.75498 +11094,218.01,91.2609 +11095,216.81,92.8133 +11096,215.57,94.4179 +11097,217.87,89.77861 +11098,216.67,91.2589 +11099,215.45,92.7852 +11100,214.19,94.363 +11101,216.56,89.8033 +11102,215.34,91.2573 +11103,214.09,92.7566 +11104,212.81,94.3068 +11105,215.24,89.82905 +11106,214,91.2559 +11107,212.73,92.7276 +11108,211.43,94.2495 +11109,213.93,89.85583 +11110,212.67,91.2549 +11111,211.38,92.6982 +11112,210.05,94.191 +11113,212.61,89.88361 +11114,211.33,91.2542 +11115,210.02,92.6684 +11116,208.67,94.1313 +11117,211.29,89.912381 +11118,209.99,91.2538 +11119,208.66,92.6382 +11120,207.3,94.0705 +11121,209.98,89.942118 +11122,208.66,91.2537 +11123,207.31,92.6076 +11124,205.92,94.0086 +11125,208.66,89.972797 +11126,207.32,91.2539 +11127,205.95,92.5766 +11128,204.55,93.9456 +11129,207.34,90.0043957 +11130,205.98,91.2543 +11131,204.59,92.5453 +11132,203.18,93.8816 +11133,206.02,90.03689 +11134,204.64,91.2551 +11135,203.24,92.5135 +11136,201.81,93.8165 +11137,204.69,90.070256 +11138,203.3,91.2561 +11139,201.88,92.4815 +11140,200.43,93.7505 +11141,203.37,90.10447 +11142,201.96,91.2573 +11143,200.53,92.449 +11144,199.07,93.6835 +11145,202.05,90.13951 +11146,200.62,91.2589 +11147,199.18,92.4163 +11148,197.7,93.6156 +11149,200.72,90.17534 +11150,199.29,91.2606 +11151,197.82,92.3832 +11152,196.33,93.5467 +11153,199.39,90.21195 +11154,197.95,91.2626 +11155,196.47,92.3498 +11156,194.96,93.477 +11157,198.07,90.2493 +11158,196.6,91.2648 +11159,195.12,92.3161 +11160,193.6,93.4064 +11161,196.74,90.28737 +11162,195.26,91.2672 +11163,193.76,92.282 +11164,192.24,93.335 +11165,195.41,90.32613 +11166,193.92,91.2698 +11167,192.41,92.2477 +11168,190.87,93.2629 +11169,194.08,90.36556 +11170,192.58,91.2726 +11171,191.06,92.2131 +11172,189.51,93.1899 +11173,192.74,90.40563 +11174,191.24,91.2756 +11175,189.71,92.1783 +11176,188.15,93.1163 +11177,191.41,90.44631 +11178,189.9,91.2788 +11179,188.36,92.1431 +11180,186.8,93.0419 +11181,190.08,90.48757 +11182,188.56,91.2821 +11183,187.01,92.1078 +11184,185.44,92.9669 +11185,188.74,90.52938 +11186,187.21,91.2856 +11187,185.66,92.0721 +11188,184.08,92.8913 +11189,187.4,90.57172 +11190,185.87,91.2893 +11191,184.31,92.0363 +11192,182.73,92.815 +11193,186.07,90.61456 +11194,184.53,91.2931 +11195,182.96,92.0002 +11196,181.37,92.7382 +11197,184.73,90.65786 +11198,183.18,91.297 +11199,181.61,91.964 +11200,180.02,92.6608 +11201,183.39,90.7016 +11202,181.84,91.301 +11203,180.27,91.9275 +11204,178.67,92.583 +11205,182.04,90.74575 +11206,180.49,91.3051 +11207,178.92,91.8908 +11208,177.32,92.5047 +11209,180.7,90.79027 +11210,179.15,91.3093 +11211,177.57,91.854 +11212,175.97,92.4259 +11213,179.36,90.83515 +11214,177.8,91.3137 +11215,176.23,91.817 +11216,174.63,92.3468 +11217,178.01,90.88034 +11218,176.46,91.318 +11219,174.88,91.7798 +11220,173.28,92.2673 +11221,176.67,90.92582 +11222,175.11,91.3225 +11223,173.53,91.7425 +11224,171.94,92.1874 +11225,175.32,90.97156 +11226,173.76,91.327 +11227,172.19,91.7051 +11228,170.59,92.1073 +11229,173.97,91.0175 +11230,172.42,91.3316 +11231,170.84,91.6675 +11232,169.25,92.0269 +11233,172.62,91.0637 +11234,171.07,91.3361 +11235,169.5,91.6299 +11236,167.91,91.9462 +11237,171.27,91.11 +11238,169.72,91.3408 +11239,168.16,91.5921 +11240,166.57,91.8654 +11241,169.91,91.1564 +11242,168.37,91.3454 +11243,166.81,91.5543 +11244,165.24,91.7843 +11245,168.56,91.203 +11246,167.02,91.35 +11247,165.47,91.5163 +11248,163.9,91.7032 +11249,167.2,91.2496 +11250,165.67,91.3546 +11251,164.13,91.4783 +11252,162.56,91.622 +11253,165.85,91.2963 +11254,164.32,91.3592 +11255,162.79,91.4403 +11256,161.23,91.5407 +11257,164.49,91.343 +11258,162.98,91.3638 +11259,161.44,91.4022 +11260,159.9,91.4593 +11261,163.13,91.3896 +11262,161.62,91.3683 +11263,160.1,91.3641 +11264,158.57,91.378 +11265,161.77,91.4362 +11266,160.27,91.3728 +11267,158.76,91.3259 +11268,157.24,91.2967 +11269,160.41,91.4827 +11270,158.92,91.3772 +11271,157.42,91.2878 +11272,155.91,91.2155 +11273,159.05,91.5291 +11274,157.57,91.3815 +11275,156.08,91.2496 +11276,154.58,91.1344 +11277,157.68,91.5753 +11278,156.22,91.3858 +11279,154.74,91.2115 +11280,153.25,91.0534 +11281,156.32,91.6214 +11282,154.87,91.3899 +11283,153.4,91.1733 +11284,151.93,90.97265 +11285,154.95,91.6672 +11286,153.52,91.394 +11287,152.07,91.1352 +11288,150.6,90.89206 +11289,153.58,91.7128 +11290,152.16,91.3979 +11291,150.73,91.0972 +11292,149.28,90.81171 +11293,152.22,91.7581 +11294,150.81,91.4017 +11295,149.39,91.0592 +11296,147.96,90.73162 +11297,150.85,91.8031 +11298,149.46,91.4054 +11299,148.05,91.0213 +11300,146.64,90.65184 +11301,149.48,91.8478 +11302,148.1,91.4089 +11303,146.72,90.98344 +11304,145.32,90.5724 +11305,148.1,91.8921 +11306,146.75,91.4123 +11307,145.38,90.94568 +11308,144,90.49332 +11309,146.73,91.936 +11310,145.39,91.4155 +11311,144.04,90.90802 +11312,142.68,90.41464 +11313,145.36,91.9794 +11314,144.04,91.4185 +11315,142.71,90.87048 +11316,141.37,90.33639 +11317,143.98,92.0225 +11318,142.68,91.4214 +11319,141.37,90.83305 +11320,140.05,90.25859 +11321,142.61,92.065 +11322,141.33,91.424 +11323,140.04,90.79575 +11324,138.74,90.18129 +11325,141.23,92.107 +11326,139.97,91.4265 +11327,138.7,90.75859 +11328,137.42,90.10451 +11329,139.85,92.1484 +11330,138.62,91.4287 +11331,137.37,90.72158 +11332,136.11,90.028283 +11333,138.47,92.1893 +11334,137.26,91.4307 +11335,136.04,90.68473 +11336,134.8,89.952634 +11337,137.09,92.2295 +11338,135.9,91.4324 +11339,134.7,90.64805 +11340,133.49,89.8776 +11341,135.71,92.2691 +11342,134.55,91.4339 +11343,133.37,90.61155 +11344,132.18,89.8032 +11345,134.33,92.3081 +11346,133.19,91.4352 +11347,132.04,90.57524 +11348,130.87,89.72946 +11349,132.94,92.3463 +11350,131.83,91.4361 +11351,130.71,90.53913 +11352,129.57,89.65642 +11353,131.56,92.3838 +11354,130.47,91.4368 +11355,129.37,90.50323 +11356,128.26,89.58411 +11357,130.18,92.4206 +11358,129.12,91.4373 +11359,128.04,90.46755 +11360,126.96,89.51254 +11361,128.79,92.4566 +11362,127.76,91.4374 +11363,126.71,90.43209 +11364,125.65,89.44175 +11365,127.4,92.4918 +11366,126.4,91.4372 +11367,125.38,90.39688 +11368,124.35,89.37176 +11369,126.01,92.5261 +11370,125.04,91.4367 +11371,124.05,90.3619 +11372,123.05,89.30261 +11373,124.63,92.5596 +11374,123.68,91.4359 +11375,122.72,90.32718 +11376,121.75,89.2343 +11377,123.24,92.5922 +11378,122.32,91.4348 +11379,121.39,90.29272 +11380,120.45,89.16687 +11381,121.85,92.6239 +11382,120.96,91.4333 +11383,120.06,90.25854 +11384,119.15,89.10035 +11385,120.46,92.6546 +11386,119.6,91.4315 +11387,118.73,90.22463 +11388,117.85,89.03475 +11389,119.06,92.6844 +11390,118.24,91.4293 +11391,117.4,90.19101 +11392,116.55,88.9701 +11393,117.67,92.7132 +11394,116.88,91.4268 +11395,116.07,90.15768 +11396,115.25,88.9064 +11397,116.28,92.7409 +11398,115.52,91.4239 +11399,114.75,90.12465 +11400,113.95,88.8437 +11401,114.89,92.7677 +11402,114.16,91.4206 +11403,113.42,90.091941 +11404,112.66,88.7821 +11405,113.49,92.7934 +11406,112.8,91.417 +11407,112.09,90.059544 +11408,111.36,88.7214 +11409,112.1,92.8179 +11410,111.44,91.4129 +11411,110.76,90.027473 +11412,110.07,88.6619 +11413,110.7,92.8414 +11414,110.08,91.4085 +11415,109.43,89.9957321 +11416,108.77,88.6034 +11417,109.31,92.8638 +11418,108.72,91.4036 +11419,108.11,89.96433 +11420,107.48,88.546 +11421,107.91,92.885 +11422,107.36,91.3984 +11423,106.78,89.933273 +11424,106.19,88.4897 +11425,106.51,92.9051 +11426,105.99,91.3927 +11427,105.45,89.902567 +11428,104.89,88.4345 +11429,105.11,92.9239 +11430,104.63,91.3866 +11431,104.13,89.87222 +11432,103.6,88.3805 +11433,103.72,92.9416 +11434,103.27,91.38 +11435,102.8,89.84223 +11436,102.31,88.3277 +11437,102.32,92.958 +11438,101.91,91.3731 +11439,101.47,89.81262 +11440,101.02,88.2761 +11441,100.92,92.9732 +11442,100.55,91.3657 +11443,100.15,89.78337 +11444,99.729,88.2256 +11445,99.521,92.9871 +11446,99.184,91.3578 +11447,98.823,89.75451 +11448,98.439,88.1764 +11449,98.122,92.9997 +11450,97.822,91.3495 +11451,97.497,89.72603 +11452,97.149,88.1284 +11453,96.722,93.0111 +11454,96.46,91.3407 +11455,96.172,89.69795 +11456,95.859,88.0816 +11457,95.322,93.0211 +11458,95.098,91.3315 +11459,94.846,89.67026 +11460,94.57,88.0361 +11461,93.922,93.0299 +11462,93.735,91.3218 +11463,93.521,89.64296 +11464,93.281,87.9918 +11465,92.522,93.0372 +11466,92.373,91.3117 +11467,92.196,89.61607 +11468,91.992,87.9488 +11469,91.121,93.0432 +11470,91.01,91.301 +11471,90.87,89.58959 +11472,90.704,87.9072 +11473,89.721,93.0479 +11474,89.648,91.2899 +11475,89.545,89.56351 +11476,89.416,87.8668 +11477,88.32,93.0512 +11478,88.286,91.2783 +11479,88.221,89.53786 +11480,88.128,87.8277 +11481,86.919,93.0531 +11482,86.923,91.2662 +11483,86.896,89.51262 +11484,86.84,87.7899 +11485,85.518,93.0535 +11486,85.561,91.2537 +11487,85.571,89.4878 +11488,85.552,87.7535 +11489,84.118,93.0526 +11490,84.198,91.2406 +11491,84.246,89.4634 +11492,84.264,87.7184 +11493,82.717,93.0503 +11494,82.836,91.227 +11495,82.922,89.43943 +11496,82.977,87.6846 +11497,81.316,93.0465 +11498,81.474,91.213 +11499,81.597,89.41589 +11500,81.689,87.6522 +11501,79.915,93.0413 +11502,80.111,91.1984 +11503,80.272,89.39278 +11504,80.402,87.6212 +11505,78.515,93.0346 +11506,78.749,91.1834 +11507,78.948,89.3701 +11508,79.114,87.5914 +11509,77.114,93.0265 +11510,77.387,91.1678 +11511,77.623,89.34786 +11512,77.827,87.5631 +11513,75.714,93.0169 +11514,76.025,91.1518 +11515,76.299,89.32605 +11516,76.539,87.5361 +11517,74.314,93.0059 +11518,74.663,91.1352 +11519,74.974,89.30468 +11520,75.251,87.5105 +11521,72.914,92.9934 +11522,73.301,91.1181 +11523,73.649,89.28374 +11524,73.963,87.4862 +11525,71.514,92.9794 +11526,71.939,91.1006 +11527,72.325,89.26325 +11528,72.675,87.4633 +11529,70.115,92.964 +11530,70.578,91.0825 +11531,71,89.24319 +11532,71.387,87.4418 +11533,68.716,92.947 +11534,69.216,91.0639 +11535,69.675,89.22357 +11536,70.098,87.4217 +11537,67.318,92.9286 +11538,67.855,91.0448 +11539,68.35,89.20439 +11540,68.81,87.4029 +11541,65.919,92.9088 +11542,66.494,91.0252 +11543,67.026,89.18565 +11544,67.521,87.3855 +11545,64.522,92.8874 +11546,65.133,91.0051 +11547,65.701,89.16735 +11548,66.231,87.3694 +11549,63.124,92.8646 +11550,63.772,90.98448 +11551,64.376,89.14948 +11552,64.942,87.3547 +11553,61.727,92.8403 +11554,62.411,90.96337 +11555,63.051,89.13205 +11556,63.652,87.3414 +11557,60.331,92.8145 +11558,61.051,90.94174 +11559,61.725,89.11506 +11560,62.361,87.3294 +11561,58.935,92.7873 +11562,59.691,90.91962 +11563,60.4,89.0985 +11564,61.07,87.3187 +11565,57.54,92.7586 +11566,58.33,90.897 +11567,59.074,89.08237 +11568,59.779,87.3094 +11569,56.146,92.7285 +11570,56.971,90.87388 +11571,57.749,89.06667 +11572,58.487,87.3015 +11573,54.752,92.6968 +11574,55.611,90.85026 +11575,56.423,89.05141 +11576,57.195,87.2948 +11577,53.358,92.6638 +11578,54.252,90.82615 +11579,55.097,89.03656 +11580,55.902,87.2895 +11581,51.966,92.6293 +11582,52.893,90.80155 +11583,53.771,89.02214 +11584,54.609,87.2855 +11585,50.574,92.5934 +11586,51.534,90.77646 +11587,52.445,89.00814 +11588,53.315,87.2828 +11589,49.183,92.5561 +11590,50.175,90.75089 +11591,51.118,88.9946 +11592,52.02,87.2814 +11593,47.792,92.5173 +11594,48.817,90.72483 +11595,49.792,88.9814 +11596,50.725,87.2812 +11597,46.403,92.4772 +11598,47.459,90.6983 +11599,48.465,88.9686 +11600,49.43,87.2824 +11601,45.014,92.4357 +11602,46.101,90.6713 +11603,47.138,88.9563 +11604,48.133,87.2848 +11605,43.626,92.3928 +11606,44.744,90.64383 +11607,45.811,88.9443 +11608,46.836,87.2884 +11609,42.239,92.3485 +11610,43.386,90.61589 +11611,44.483,88.9328 +11612,45.538,87.2933 +11613,40.853,92.3029 +11614,42.03,90.58749 +11615,43.156,88.9216 +11616,44.239,87.2994 +11617,39.468,92.2559 +11618,40.673,90.55864 +11619,41.828,88.9108 +11620,42.94,87.3067 +11621,38.083,92.2077 +11622,39.317,90.52934 +11623,40.5,88.9004 +11624,41.64,87.3152 +11625,36.7,92.1581 +11626,37.961,90.49959 +11627,39.171,88.8904 +11628,40.339,87.3249 +11629,35.318,92.1072 +11630,36.606,90.4694 +11631,37.843,88.8808 +11632,39.037,87.3357 +11633,33.937,92.0551 +11634,35.25,90.43878 +11635,36.514,88.8715 +11636,37.734,87.3477 +11637,32.556,92.0017 +11638,33.896,90.40773 +11639,35.185,88.8626 +11640,36.43,87.3608 +11641,31.177,91.9471 +11642,32.541,90.37626 +11643,33.855,88.8541 +11644,35.126,87.375 +11645,29.799,91.8913 +11646,31.187,90.34438 +11647,32.525,88.8459 +11648,33.82,87.3903 +11649,28.422,91.8342 +11650,29.834,90.31208 +11651,31.195,88.8381 +11652,32.514,87.4067 +11653,27.046,91.776 +11654,28.48,90.27939 +11655,29.865,88.8306 +11656,31.207,87.4241 +11657,25.671,91.7167 +11658,27.128,90.2463 +11659,28.534,88.8234 +11660,29.898,87.4426 +11661,24.297,91.6562 +11662,25.775,90.21282 +11663,27.203,88.8165 +11664,28.589,87.4621 +11665,22.925,91.5946 +11666,24.423,90.17896 +11667,25.872,88.81 +11668,27.279,87.4825 +11669,21.554,91.5319 +11670,23.072,90.14473 +11671,24.54,88.8038 +11672,25.967,87.504 +11673,20.184,91.4682 +11674,21.72,90.11013 +11675,23.208,88.7979 +11676,24.655,87.5264 +11677,18.815,91.4034 +11678,20.37,90.075176 +11679,21.876,88.7922 +11680,23.341,87.5497 +11681,17.447,91.3376 +11682,19.019,90.039872 +11683,20.543,88.7869 +11684,22.026,87.5739 +11685,16.081,91.2708 +11686,17.669,90.0042257 +11687,19.21,88.7819 +11688,20.711,87.5991 +11689,14.715,91.2031 +11690,16.32,89.968247 +11691,17.877,88.7771 +11692,19.394,87.625 +11693,13.352,91.1344 +11694,14.971,89.931943 +11695,16.543,88.7726 +11696,18.076,87.6518 +11697,11.989,91.0648 +11698,13.622,89.89532 +11699,15.209,88.7683 +11700,16.756,87.6794 +11701,10.628,90.99429 +11702,12.274,89.8584 +11703,13.875,88.7643 +11704,15.436,87.7079 +11705,9.2676,90.92296 +11706,10.926,89.82117 +11707,12.54,88.7606 +11708,14.115,87.737 +11709,7.9089,90.85079 +11710,9.5792,89.78366 +11711,11.205,88.757 +11712,12.792,87.7669 +11713,6.5515,90.77783 +11714,8.2324,89.74586 +11715,9.8695,88.7537 +11716,11.468,87.7975 +11717,5.1954,90.70409 +11718,6.8861,89.7078 +11719,8.5336,88.7506 +11720,10.143,87.8288 +11721,3.8407,90.62962 +11722,5.5403,89.66947 +11723,7.1974,88.7477 +11724,8.8165,87.8608 +11725,2.4873,90.55443 +11726,4.195,89.6309 +11727,5.8607,88.7451 +11728,7.4889,87.8934 +11729,1.1353,90.47856 +11730,2.8501,89.59208 +11731,4.5236,88.7426 +11732,6.1601,87.9266 +11733,359.78,90.40203 +11734,1.5057,89.55303 +11735,3.1862,88.7402 +11736,4.8301,87.9603 +11737,358.44,90.32489 +11738,0.16177,89.51376 +11739,1.8483,88.7381 +11740,3.4988,87.9947 +11741,357.09,90.24715 +11742,358.82,89.47427 +11743,0.51006,88.7361 +11744,2.1662,88.0295 +11745,355.74,90.16886 +11746,357.48,89.43458 +11747,359.17,88.7342 +11748,0.83235,88.0648 +11749,354.4,90.090034 +11750,356.13,89.3947 +11751,357.83,88.7325 +11752,359.5,88.1006 +11753,353.05,90.010714 +11754,354.79,89.35464 +11755,356.49,88.731 +11756,358.16,88.1369 +11757,351.71,89.930929 +11758,353.45,89.31441 +11759,355.15,88.7295 +11760,356.82,88.1735 +11761,350.37,89.85071 +11762,352.11,89.27402 +11763,353.81,88.7282 +11764,355.48,88.2105 +11765,349.03,89.77009 +11766,350.77,89.23347 +11767,352.47,88.7269 +11768,354.14,88.2479 +11769,347.69,89.68911 +11770,349.43,89.19279 +11771,351.13,88.7258 +11772,352.8,88.2856 +11773,346.35,89.60778 +11774,348.09,89.15198 +11775,349.79,88.7247 +11776,351.46,88.3236 +11777,345.02,89.52616 +11778,346.75,89.11105 +11779,348.45,88.7237 +11780,350.12,88.3618 +11781,343.68,89.44426 +11782,345.41,89.07001 +11783,347.11,88.7228 +11784,348.77,88.4003 +11785,342.35,89.36212 +11786,344.07,89.02887 +11787,345.76,88.7219 +11788,347.42,88.439 +11789,341.02,89.27978 +11790,342.73,88.9876 +11791,344.42,88.721 +11792,346.08,88.4779 +11793,339.69,89.19727 +11794,341.4,88.9463 +11795,343.08,88.7202 +11796,344.73,88.5169 +11797,338.36,89.11462 +11798,340.06,88.905 +11799,341.73,88.7194 +11800,343.38,88.556 +11801,337.03,89.03186 +11802,338.73,88.8636 +11803,340.39,88.7186 +11804,342.02,88.5952 +11805,335.71,88.949 +11806,337.39,88.8221 +11807,339.04,88.7178 +11808,340.67,88.6344 +11809,334.38,88.8662 +11810,336.05,88.7806 +11811,337.7,88.717 +11812,339.32,88.6737 +11813,333.06,88.7833 +11814,334.72,88.7391 +11815,336.35,88.7162 +11816,337.96,88.7129 +11817,331.74,88.7004 +11818,333.39,88.6976 +11819,335.01,88.7154 +11820,336.6,88.7522 +11821,330.42,88.6176 +11822,332.05,88.656 +11823,333.66,88.7145 +11824,335.25,88.7913 +11825,329.1,88.5349 +11826,330.72,88.6145 +11827,332.31,88.7135 +11828,333.89,88.8304 +11829,327.78,88.4523 +11830,329.39,88.573 +11831,330.97,88.7125 +11832,332.52,88.8693 +11833,326.46,88.3699 +11834,328.05,88.5315 +11835,329.62,88.7114 +11836,331.16,88.908 +11837,325.15,88.2877 +11838,326.72,88.4901 +11839,328.27,88.7103 +11840,329.8,88.9466 +11841,323.83,88.2057 +11842,325.39,88.4487 +11843,326.92,88.709 +11844,328.44,88.985 +11845,322.52,88.1239 +11846,324.06,88.4074 +11847,325.58,88.7077 +11848,327.07,89.02308 +11849,321.21,88.0424 +11850,322.73,88.3662 +11851,324.23,88.7062 +11852,325.7,89.06091 +11853,319.9,87.9612 +11854,321.4,88.325 +11855,322.88,88.7046 +11856,324.34,89.09843 +11857,318.59,87.8804 +11858,320.07,88.284 +11859,321.53,88.7029 +11860,322.97,89.13561 +11861,317.28,87.8 +11862,318.74,88.243 +11863,320.18,88.701 +11864,321.6,89.17242 +11865,315.97,87.7199 +11866,317.41,88.2022 +11867,318.83,88.699 +11868,320.22,89.20884 +11869,314.67,87.6403 +11870,316.08,88.1615 +11871,317.48,88.6968 +11872,318.85,89.24483 +11873,313.36,87.5612 +11874,314.75,88.1209 +11875,316.13,88.6945 +11876,317.48,89.28037 +11877,312.06,87.4825 +11878,313.43,88.0805 +11879,314.77,88.6919 +11880,316.1,89.31543 +11881,310.75,87.4044 +11882,312.1,88.0402 +11883,313.42,88.6892 +11884,314.73,89.34997 +11885,309.45,87.3269 +11886,310.77,88.0001 +11887,312.07,88.6863 +11888,313.35,89.38398 +11889,308.15,87.2499 +11890,309.44,87.9602 +11891,310.72,88.6832 +11892,311.97,89.41742 +11893,306.85,87.1736 +11894,308.12,87.9204 +11895,309.37,88.6798 +11896,310.59,89.45027 +11897,305.55,87.0979 +11898,306.79,87.8808 +11899,308.01,88.6762 +11900,309.21,89.48249 +11901,304.26,87.0228 +11902,305.47,87.8415 +11903,306.66,88.6724 +11904,307.83,89.51406 +11905,302.96,86.9485 +11906,304.14,87.8023 +11907,305.31,88.6683 +11908,306.45,89.54496 +11909,301.66,86.8749 +11910,302.82,87.7634 +11911,303.95,88.664 +11912,305.07,89.57516 +11913,300.37,86.802 +11914,301.49,87.7247 +11915,302.6,88.6594 +11916,303.68,89.60463 +11917,299.08,86.7299 +11918,300.17,87.6863 +11919,301.24,88.6546 +11920,302.3,89.63334 +11921,297.78,86.6586 +11922,298.85,87.6481 +11923,299.89,88.6494 +11924,300.91,89.66128 +11925,296.49,86.5881 +11926,297.52,87.6101 +11927,298.54,88.644 +11928,299.53,89.68841 +11929,295.2,86.5185 +11930,296.2,87.5724 +11931,297.18,88.6383 +11932,298.14,89.71471 +11933,293.91,86.4498 +11934,294.88,87.535 +11935,295.82,88.6323 +11936,296.75,89.74016 +11937,292.62,86.3819 +11938,293.56,87.4979 +11939,294.47,88.6259 +11940,295.36,89.76473 +11941,291.33,86.315 +11942,292.23,87.461 +11943,293.11,88.6193 +11944,293.97,89.7884 +11945,290.04,86.2491 +11946,290.91,87.4245 +11947,291.76,88.6123 +11948,292.58,89.81115 +11949,288.76,86.184 +11950,289.59,87.3882 +11951,290.4,88.605 +11952,291.19,89.83295 +11953,287.47,86.12 +11954,288.27,87.3523 +11955,289.05,88.5973 +11956,289.8,89.85378 +11957,286.19,86.057 +11958,286.95,87.3167 +11959,287.69,88.5893 +11960,288.41,89.87363 +11961,284.9,85.995 +11962,285.63,87.2814 +11963,286.33,88.5809 +11964,287.02,89.89246 +11965,283.62,85.9341 +11966,284.31,87.2464 +11967,284.98,88.5722 +11968,285.62,89.910259 +11969,282.33,85.8742 +11970,282.99,87.2118 +11971,283.62,88.5631 +11972,284.23,89.927007 +11973,281.05,85.8154 +11974,281.67,87.1775 +11975,282.26,88.5536 +11976,282.83,89.942683 +11977,279.77,85.7578 +11978,280.35,87.1436 +11979,280.9,88.5437 +11980,281.44,89.957267 +11981,278.48,85.7012 +11982,279.03,87.11 +11983,279.55,88.5335 +11984,280.04,89.970742 +11985,277.2,85.6458 +11986,277.71,87.0768 +11987,278.19,88.5228 +11988,278.65,89.983089 +11989,275.92,85.5915 +11990,276.39,87.044 +11991,276.83,88.5118 +11992,277.25,89.9942908 +11993,274.64,85.5384 +11994,275.07,87.0115 +11995,275.47,88.5003 +11996,275.85,90.0043299 +11997,273.36,85.4865 +11998,273.75,86.9794 +11999,274.12,88.4885 +12000,274.46,90.01319 +12001,272.08,85.4358 +12002,272.43,86.9477 +12003,272.76,88.4762 +12004,273.06,90.020856 +12005,270.8,85.3863 +12006,271.11,86.9164 +12007,271.4,88.4635 +12008,271.66,90.027311 +12009,269.52,85.338 +12010,269.79,86.8855 +12011,270.04,88.4504 +12012,270.26,90.032541 +12013,268.24,85.2909 +12014,268.48,86.855 +12015,268.68,88.4368 +12016,268.86,90.036533 +12017,266.96,85.2451 +12018,267.16,86.8248 +12019,267.33,88.4228 +12020,267.46,90.039273 +12021,265.68,85.2006 +12022,265.84,86.7951 +12023,265.97,88.4084 +12024,266.07,90.040747 +12025,264.4,85.1573 +12026,264.52,86.7658 +12027,264.61,88.3936 +12028,264.67,90.040944 +12029,263.13,85.1153 +12030,263.2,86.7369 +12031,263.25,88.3783 +12032,263.27,90.039852 +12033,261.85,85.0746 +12034,261.89,86.7084 +12035,261.89,88.3625 +12036,261.87,90.03746 +12037,260.57,85.0352 +12038,260.57,86.6804 +12039,260.54,88.3463 +12040,260.47,90.033758 +12041,259.29,84.9971 +12042,259.25,86.6527 +12043,259.18,88.3297 +12044,259.07,90.028736 +12045,258.01,84.9603 +12046,257.93,86.6255 +12047,257.82,88.3126 +12048,257.67,90.022386 +12049,256.74,84.9248 +12050,256.62,86.5987 +12051,256.46,88.295 +12052,256.27,90.014698 +12053,255.46,84.8906 +12054,255.3,86.5723 +12055,255.1,88.277 +12056,254.87,90.0056666 +12057,254.18,84.8578 +12058,253.98,86.5464 +12059,253.75,88.2585 +12060,253.47,89.9952833 +12061,252.9,84.8263 +12062,252.66,86.5209 +12063,252.39,88.2395 +12064,252.08,89.983542 +12065,251.62,84.7961 +12066,251.34,86.4958 +12067,251.03,88.2201 +12068,250.68,89.970438 +12069,250.34,84.7672 +12070,250.03,86.4712 +12071,249.67,88.2002 +12072,249.28,89.955966 +12073,249.07,84.7397 +12074,248.71,86.447 +12075,248.32,88.1799 +12076,247.88,89.940122 +12077,247.79,84.7135 +12078,247.39,86.4233 +12079,246.96,88.159 +12080,246.48,89.922903 +12081,246.51,84.6887 +12082,246.07,86.3999 +12083,245.6,88.1378 +12084,245.09,89.904306 +12085,245.23,84.6652 +12086,244.76,86.377 +12087,244.24,88.116 +12088,243.69,89.88433 +12089,243.95,84.643 +12090,243.44,86.3546 +12091,242.89,88.0938 +12092,242.29,89.86297 +12093,242.67,84.6222 +12094,242.12,86.3326 +12095,241.53,88.0711 +12096,240.9,89.84023 +12097,241.39,84.6027 +12098,240.8,86.311 +12099,240.17,88.0479 +12100,239.5,89.81611 +12101,240.11,84.5845 +12102,239.48,86.2898 +12103,238.82,88.0243 +12104,238.1,89.7906 +12105,238.83,84.5676 +12106,238.17,86.2691 +12107,237.46,88.0002 +12108,236.71,89.76372 +12109,237.55,84.5521 +12110,236.85,86.2488 +12111,236.11,87.9756 +12112,235.32,89.73546 +12113,236.26,84.5379 +12114,235.53,86.229 +12115,234.75,87.9506 +12116,233.92,89.70583 +12117,234.98,84.525 +12118,234.21,86.2096 +12119,233.39,87.9251 +12120,232.53,89.67483 +12121,233.7,84.5133 +12122,232.89,86.1906 +12123,232.04,87.8992 +12124,231.14,89.64246 +12125,232.41,84.503 +12126,231.57,86.172 +12127,230.68,87.8728 +12128,229.74,89.60874 +12129,231.13,84.494 +12130,230.25,86.1539 +12131,229.33,87.8459 +12132,228.35,89.57366 +12133,229.85,84.4863 +12134,228.93,86.1362 +12135,227.98,87.8186 +12136,226.96,89.53723 +12137,228.56,84.4798 +12138,227.61,86.1189 +12139,226.62,87.7908 +12140,225.57,89.49946 +12141,227.27,84.4746 +12142,226.29,86.102 +12143,225.27,87.7626 +12144,224.19,89.46036 +12145,225.99,84.4706 +12146,224.97,86.0855 +12147,223.91,87.734 +12148,222.8,89.41994 +12149,224.7,84.4679 +12150,223.65,86.0694 +12151,222.56,87.7049 +12152,221.41,89.37821 +12153,223.41,84.4664 +12154,222.33,86.0538 +12155,221.21,87.6753 +12156,220.02,89.33517 +12157,222.12,84.4661 +12158,221.01,86.0385 +12159,219.85,87.6454 +12160,218.64,89.29085 +12161,220.83,84.467 +12162,219.69,86.0236 +12163,218.5,87.615 +12164,217.25,89.24524 +12165,219.54,84.4691 +12166,218.37,86.0091 +12167,217.15,87.5841 +12168,215.87,89.19837 +12169,218.25,84.4724 +12170,217.05,85.9951 +12171,215.8,87.5529 +12172,214.49,89.15024 +12173,216.96,84.4769 +12174,215.73,85.9814 +12175,214.45,87.5212 +12176,213.11,89.10087 +12177,215.67,84.4825 +12178,214.41,85.968 +12179,213.1,87.4892 +12180,211.73,89.05028 +12181,214.37,84.4892 +12182,213.08,85.9551 +12183,211.75,87.4567 +12184,210.35,88.9985 +12185,213.08,84.497 +12186,211.76,85.9425 +12187,210.39,87.4238 +12188,208.97,88.9455 +12189,211.78,84.5059 +12190,210.44,85.9303 +12191,209.05,87.3906 +12192,207.59,88.8913 +12193,210.49,84.516 +12194,209.12,85.9184 +12195,207.7,87.3569 +12196,206.22,88.836 +12197,209.19,84.527 +12198,207.79,85.9069 +12199,206.35,87.3229 +12200,204.84,88.7795 +12201,207.89,84.5391 +12202,206.47,85.8957 +12203,205,87.2885 +12204,203.47,88.7219 +12205,206.59,84.5523 +12206,205.15,85.8849 +12207,203.65,87.2537 +12208,202.09,88.6632 +12209,205.29,84.5664 +12210,203.82,85.8744 +12211,202.3,87.2185 +12212,200.72,88.6034 +12213,203.99,84.5815 +12214,202.5,85.8642 +12215,200.95,87.183 +12216,199.35,88.5425 +12217,202.68,84.5976 +12218,201.17,85.8544 +12219,199.61,87.1472 +12220,197.98,88.4806 +12221,201.38,84.6146 +12222,199.85,85.8448 +12223,198.26,87.111 +12224,196.62,88.4176 +12225,200.07,84.6326 +12226,198.52,85.8356 +12227,196.91,87.0745 +12228,195.25,88.3537 +12229,198.77,84.6514 +12230,197.19,85.8266 +12231,195.57,87.0376 +12232,193.88,88.2888 +12233,197.46,84.6712 +12234,195.87,85.818 +12235,194.22,87.0004 +12236,192.52,88.2229 +12237,196.15,84.6917 +12238,194.54,85.8096 +12239,192.88,86.963 +12240,191.16,88.1561 +12241,194.84,84.7131 +12242,193.21,85.8015 +12243,191.53,86.9252 +12244,189.8,88.0884 +12245,193.53,84.7354 +12246,191.89,85.7937 +12247,190.19,86.8871 +12248,188.44,88.0198 +12249,192.22,84.7584 +12250,190.56,85.7861 +12251,188.85,86.8487 +12252,187.08,87.9503 +12253,190.9,84.7821 +12254,189.23,85.7788 +12255,187.5,86.8101 +12256,185.72,87.88 +12257,189.59,84.8066 +12258,187.9,85.7717 +12259,186.16,86.7711 +12260,184.37,87.8089 +12261,188.27,84.8318 +12262,186.57,85.7649 +12263,184.82,86.732 +12264,183.01,87.737 +12265,186.96,84.8577 +12266,185.24,85.7583 +12267,183.48,86.6925 +12268,181.66,87.6644 +12269,185.64,84.8843 +12270,183.91,85.7519 +12271,182.14,86.6528 +12272,180.31,87.591 +12273,184.32,84.9115 +12274,182.58,85.7457 +12275,180.8,86.6129 +12276,178.96,87.5169 +12277,183,84.9393 +12278,181.25,85.7397 +12279,179.46,86.5728 +12280,177.61,87.4421 +12281,181.67,84.9677 +12282,179.92,85.7339 +12283,178.12,86.5324 +12284,176.26,87.3668 +12285,180.35,84.9966 +12286,178.59,85.7283 +12287,176.78,86.4919 +12288,174.92,87.2907 +12289,179.02,85.0261 +12290,177.26,85.7229 +12291,175.44,86.4511 +12292,173.57,87.2141 +12293,177.7,85.056 +12294,175.92,85.7176 +12295,174.1,86.4101 +12296,172.23,87.137 +12297,176.37,85.0865 +12298,174.59,85.7125 +12299,172.77,86.369 +12300,170.89,87.0593 +12301,175.04,85.1173 +12302,173.26,85.7075 +12303,171.43,86.3277 +12304,169.55,86.9811 +12305,173.71,85.1486 +12306,171.92,85.7027 +12307,170.09,86.2862 +12308,168.21,86.9025 +12309,172.38,85.1803 +12310,170.59,85.698 +12311,168.76,86.2446 +12312,166.87,86.8234 +12313,171.04,85.2124 +12314,169.26,85.6934 +12315,167.42,86.2029 +12316,165.54,86.7439 +12317,169.71,85.2448 +12318,167.92,85.6889 +12319,166.09,86.161 +12320,164.2,86.664 +12321,168.37,85.2775 +12322,166.59,85.6845 +12323,164.75,86.119 +12324,162.87,86.5837 +12325,167.04,85.3104 +12326,165.25,85.6802 +12327,163.42,86.0769 +12328,161.54,86.5032 +12329,165.7,85.3436 +12330,163.91,85.676 +12331,162.09,86.0347 +12332,160.21,86.4224 +12333,164.36,85.3771 +12334,162.58,85.6719 +12335,160.75,85.9924 +12336,158.88,86.3413 +12337,163.02,85.4107 +12338,161.24,85.6678 +12339,159.42,85.95 +12340,157.56,86.26 +12341,161.67,85.4445 +12342,159.9,85.6637 +12343,158.09,85.9075 +12344,156.23,86.1785 +12345,160.33,85.4784 +12346,158.56,85.6597 +12347,156.76,85.865 +12348,154.91,86.0968 +12349,158.98,85.5124 +12350,157.23,85.6558 +12351,155.43,85.8225 +12352,153.59,86.0151 +12353,157.64,85.5465 +12354,155.89,85.6518 +12355,154.1,85.7799 +12356,152.26,85.9332 +12357,156.29,85.5806 +12358,154.55,85.6479 +12359,152.77,85.7373 +12360,150.94,85.8512 +12361,154.94,85.6148 +12362,153.21,85.6439 +12363,151.44,85.6946 +12364,149.63,85.7693 +12365,153.59,85.6489 +12366,151.87,85.64 +12367,150.11,85.652 +12368,148.31,85.6873 +12369,152.23,85.683 +12370,150.53,85.636 +12371,148.78,85.6094 +12372,147,85.6053 +12373,150.88,85.7171 +12374,149.19,85.632 +12375,147.45,85.5667 +12376,145.68,85.5235 +12377,149.53,85.751 +12378,147.84,85.628 +12379,146.13,85.5241 +12380,144.37,85.4417 +12381,148.17,85.7848 +12382,146.5,85.6239 +12383,144.8,85.4816 +12384,143.06,85.36 +12385,146.81,85.8184 +12386,145.16,85.6197 +12387,143.47,85.439 +12388,141.75,85.2785 +12389,145.45,85.8519 +12390,143.82,85.6155 +12391,142.15,85.3966 +12392,140.44,85.1972 +12393,144.09,85.8851 +12394,142.47,85.6112 +12395,140.82,85.3542 +12396,139.13,85.1161 +12397,142.73,85.9181 +12398,141.13,85.6068 +12399,139.5,85.3119 +12400,137.83,85.0352 +12401,141.37,85.9508 +12402,139.79,85.6023 +12403,138.17,85.2696 +12404,136.52,84.9547 +12405,140.01,85.9832 +12406,138.44,85.5977 +12407,136.85,85.2275 +12408,135.22,84.8744 +12409,138.64,86.0153 +12410,137.1,85.593 +12411,135.53,85.1854 +12412,133.92,84.7945 +12413,137.27,86.047 +12414,135.75,85.5882 +12415,134.2,85.1435 +12416,132.62,84.7149 +12417,135.91,86.0784 +12418,134.41,85.5832 +12419,132.88,85.1017 +12420,131.32,84.6358 +12421,134.54,86.1093 +12422,133.06,85.5781 +12423,131.56,85.0601 +12424,130.02,84.5571 +12425,133.17,86.1398 +12426,131.72,85.5728 +12427,130.24,85.0185 +12428,128.72,84.4788 +12429,131.8,86.1698 +12430,130.37,85.5674 +12431,128.91,84.9772 +12432,127.43,84.401 +12433,130.42,86.1994 +12434,129.02,85.5618 +12435,127.59,84.936 +12436,126.13,84.3238 +12437,129.05,86.2284 +12438,127.68,85.556 +12439,126.27,84.8949 +12440,124.84,84.2471 +12441,127.68,86.2569 +12442,126.33,85.55 +12443,124.95,84.8541 +12444,123.55,84.1709 +12445,126.3,86.2847 +12446,124.98,85.5438 +12447,123.63,84.8134 +12448,122.26,84.0954 +12449,124.92,86.312 +12450,123.63,85.5374 +12451,122.31,84.773 +12452,120.97,84.0205 +12453,123.55,86.3387 +12454,122.29,85.5308 +12455,121,84.7327 +12456,119.68,83.9463 +12457,122.17,86.3647 +12458,120.94,85.524 +12459,119.68,84.6927 +12460,118.39,83.8727 +12461,120.79,86.3901 +12462,119.59,85.5169 +12463,118.36,84.6529 +12464,117.1,83.7999 +12465,119.41,86.4147 +12466,118.24,85.5096 +12467,117.04,84.6134 +12468,115.82,83.7277 +12469,118.03,86.4386 +12470,116.89,85.502 +12471,115.72,84.574 +12472,114.53,83.6564 +12473,116.64,86.4618 +12474,115.54,85.4942 +12475,114.41,84.535 +12476,113.25,83.5858 +12477,115.26,86.4842 +12478,114.19,85.4861 +12479,113.09,84.4962 +12480,111.97,83.516 +12481,113.88,86.5058 +12482,112.84,85.4778 +12483,111.77,84.4576 +12484,110.68,83.4471 +12485,112.49,86.5266 +12486,111.49,85.4691 +12487,110.46,84.4194 +12488,109.4,83.379 +12489,111.11,86.5466 +12490,110.14,85.4602 +12491,109.14,84.3814 +12492,108.12,83.3118 +12493,109.72,86.5657 +12494,108.79,85.451 +12495,107.83,84.3437 +12496,106.84,83.2455 +12497,108.33,86.5839 +12498,107.43,85.4414 +12499,106.51,84.3063 +12500,105.56,83.1802 +12501,106.94,86.6012 +12502,106.08,85.4316 +12503,105.2,84.2692 +12504,104.29,83.1157 +12505,105.55,86.6176 +12506,104.73,85.4214 +12507,103.88,84.2324 +12508,103.01,83.0523 +12509,104.16,86.6331 +12510,103.38,85.4109 +12511,102.57,84.196 +12512,101.73,82.9898 +12513,102.77,86.6476 +12514,102.03,85.4001 +12515,101.25,84.1599 +12516,100.46,82.9283 +12517,101.38,86.6611 +12518,100.67,85.389 +12519,99.941,84.1241 +12520,99.182,82.8679 +12521,99.991,86.6736 +12522,99.322,85.3775 +12523,98.628,84.0886 +12524,97.908,82.8085 +12525,98.598,86.6851 +12526,97.97,85.3656 +12527,97.315,84.0535 +12528,96.634,82.7502 +12529,97.205,86.6955 +12530,96.617,85.3534 +12531,96.001,84.0188 +12532,95.36,82.6929 +12533,95.812,86.7049 +12534,95.264,85.3409 +12535,94.689,83.9844 +12536,94.087,82.6368 +12537,94.418,86.7132 +12538,93.911,85.3279 +12539,93.376,83.9503 +12540,92.815,82.5817 +12541,93.024,86.7205 +12542,92.557,85.3146 +12543,92.064,83.9166 +12544,91.543,82.5278 +12545,91.629,86.7266 +12546,91.204,85.301 +12547,90.751,83.8833 +12548,90.271,82.475 +12549,90.234,86.7316 +12550,89.851,85.2869 +12551,89.439,83.8504 +12552,89,82.4234 +12553,88.839,86.7355 +12554,88.497,85.2725 +12555,88.127,83.8179 +12556,87.73,82.3729 +12557,87.443,86.7383 +12558,87.144,85.2576 +12559,86.816,83.7857 +12560,86.459,82.3237 +12561,86.047,86.7398 +12562,85.79,85.2424 +12563,85.504,83.754 +12564,85.189,82.2756 +12565,84.65,86.7403 +12566,84.436,85.2268 +12567,84.192,83.7226 +12568,83.92,82.2288 +12569,83.253,86.7395 +12570,83.082,85.2107 +12571,82.881,83.6917 +12572,82.65,82.1831 +12573,81.857,86.7375 +12574,81.729,85.1943 +12575,81.57,83.6611 +12576,81.381,82.1387 +12577,80.46,86.7343 +12578,80.375,85.1775 +12579,80.259,83.6309 +12580,80.112,82.0955 +12581,79.062,86.7299 +12582,79.021,85.1602 +12583,78.948,83.6012 +12584,78.843,82.0536 +12585,77.665,86.7243 +12586,77.667,85.1425 +12587,77.636,83.5719 +12588,77.575,82.0129 +12589,76.268,86.7175 +12590,76.313,85.1244 +12591,76.326,83.5429 +12592,76.306,81.9735 +12593,74.87,86.7094 +12594,74.96,85.1059 +12595,75.015,83.5145 +12596,75.037,81.9354 +12597,73.473,86.7 +12598,73.606,85.087 +12599,73.704,83.4864 +12600,73.769,81.8986 +12601,72.076,86.6894 +12602,72.252,85.0676 +12603,72.393,83.4587 +12604,72.5,81.863 +12605,70.678,86.6775 +12606,70.898,85.0478 +12607,71.082,83.4315 +12608,71.232,81.8287 +12609,69.281,86.6644 +12610,69.545,85.0276 +12611,69.771,83.4047 +12612,69.963,81.7957 +12613,67.884,86.65 +12614,68.191,85.0069 +12615,68.46,83.3783 +12616,68.695,81.764 +12617,66.487,86.6343 +12618,66.838,84.9858 +12619,67.15,83.3524 +12620,67.426,81.7336 +12621,65.091,86.6173 +12622,65.484,84.9643 +12623,65.839,83.3268 +12624,66.157,81.7045 +12625,63.694,86.599 +12626,64.131,84.9424 +12627,64.528,83.3017 +12628,64.888,81.6767 +12629,62.298,86.5794 +12630,62.778,84.92 +12631,63.217,83.2771 +12632,63.618,81.6503 +12633,60.902,86.5585 +12634,61.425,84.8972 +12635,61.906,83.2529 +12636,62.349,81.6251 +12637,59.507,86.5364 +12638,60.072,84.8739 +12639,60.595,83.2291 +12640,61.079,81.6012 +12641,58.111,86.5129 +12642,58.719,84.8502 +12643,59.284,83.2057 +12644,59.808,81.5786 +12645,56.717,86.4881 +12646,57.367,84.8261 +12647,57.972,83.1828 +12648,58.538,81.5573 +12649,55.322,86.4621 +12650,56.015,84.8015 +12651,56.661,83.1602 +12652,57.267,81.5373 +12653,53.929,86.4347 +12654,54.662,84.7765 +12655,55.35,83.1382 +12656,55.995,81.5186 +12657,52.535,86.4061 +12658,53.31,84.7511 +12659,54.038,83.1165 +12660,54.724,81.5012 +12661,51.143,86.3762 +12662,51.959,84.7252 +12663,52.726,83.0953 +12664,53.451,81.4851 +12665,49.75,86.3449 +12666,50.607,84.6989 +12667,51.414,83.0745 +12668,52.179,81.4703 +12669,48.359,86.3124 +12670,49.256,84.6722 +12671,50.102,83.0541 +12672,50.905,81.4567 +12673,46.968,86.2786 +12674,47.905,84.6451 +12675,48.79,83.0342 +12676,49.631,81.4444 +12677,45.578,86.2436 +12678,46.554,84.6175 +12679,47.478,83.0146 +12680,48.357,81.4333 +12681,44.188,86.2073 +12682,45.203,84.5895 +12683,46.165,82.9955 +12684,47.082,81.4236 +12685,42.799,86.1697 +12686,43.853,84.5611 +12687,44.853,82.9768 +12688,45.806,81.415 +12689,41.411,86.1309 +12690,42.503,84.5323 +12691,43.54,82.9585 +12692,44.53,81.4077 +12693,40.024,86.0908 +12694,41.153,84.503 +12695,42.227,82.9406 +12696,43.253,81.4016 +12697,38.638,86.0495 +12698,39.804,84.4734 +12699,40.913,82.9232 +12700,41.975,81.3967 +12701,37.252,86.0069 +12702,38.454,84.4433 +12703,39.6,82.9061 +12704,40.696,81.393 +12705,35.867,85.9632 +12706,37.106,84.4128 +12707,38.286,82.8894 +12708,39.417,81.3905 +12709,34.484,85.9182 +12710,35.757,84.382 +12711,36.972,82.8731 +12712,38.137,81.3892 +12713,33.101,85.872 +12714,34.409,84.3507 +12715,35.658,82.8572 +12716,36.856,81.389 +12717,31.719,85.8247 +12718,33.061,84.3191 +12719,34.343,82.8417 +12720,35.574,81.39 +12721,30.338,85.7762 +12722,31.714,84.287 +12723,33.028,82.8266 +12724,34.291,81.3921 +12725,28.959,85.7265 +12726,30.366,84.2546 +12727,31.713,82.8118 +12728,33.007,81.3954 +12729,27.58,85.6757 +12730,29.02,84.2218 +12731,30.398,82.7974 +12732,31.723,81.3997 +12733,26.202,85.6238 +12734,27.673,84.1886 +12735,29.082,82.7834 +12736,30.437,81.4052 +12737,24.826,85.5707 +12738,26.327,84.1551 +12739,27.766,82.7698 +12740,29.151,81.4117 +12741,23.45,85.5165 +12742,24.982,84.1212 +12743,26.449,82.7565 +12744,27.863,81.4193 +12745,22.076,85.4613 +12746,23.637,84.087 +12747,25.133,82.7435 +12748,26.574,81.4279 +12749,20.703,85.405 +12750,22.292,84.0524 +12751,23.816,82.7309 +12752,25.285,81.4375 +12753,19.331,85.3477 +12754,20.947,84.0174 +12755,22.498,82.7186 +12756,23.994,81.4481 +12757,17.961,85.2893 +12758,19.603,83.9821 +12759,21.181,82.7067 +12760,22.702,81.4597 +12761,16.591,85.2299 +12762,18.26,83.9465 +12763,19.863,82.6951 +12764,21.409,81.4723 +12765,15.223,85.1695 +12766,16.917,83.9106 +12767,18.544,82.6838 +12768,20.115,81.4858 +12769,13.856,85.1082 +12770,15.574,83.8743 +12771,17.225,82.6728 +12772,18.82,81.5003 +12773,12.491,85.0459 +12774,14.232,83.8377 +12775,15.906,82.6621 +12776,17.523,81.5156 +12777,11.127,84.9826 +12778,12.89,83.8009 +12779,14.587,82.6517 +12780,16.226,81.5318 +12781,9.764,84.9185 +12782,11.549,83.7637 +12783,13.267,82.6416 +12784,14.927,81.5489 +12785,8.4026,84.8534 +12786,10.208,83.7262 +12787,11.946,82.6318 +12788,13.627,81.5668 +12789,7.0425,84.7875 +12790,8.8681,83.6885 +12791,10.626,82.6223 +12792,12.325,81.5856 +12793,5.6839,84.7208 +12794,7.5283,83.6505 +12795,9.3046,82.613 +12796,11.023,81.6051 +12797,4.3267,84.6532 +12798,6.1889,83.6122 +12799,7.9831,82.604 +12800,9.719,81.6254 +12801,2.9709,84.5849 +12802,4.8501,83.5736 +12803,6.6612,82.5953 +12804,8.4138,81.6464 +12805,1.6166,84.5158 +12806,3.5118,83.5348 +12807,5.3388,82.5868 +12808,7.1074,81.6682 +12809,0.26368,84.4459 +12810,2.1739,83.4958 +12811,4.0161,82.5785 +12812,5.7996,81.6906 +12813,358.91,84.3753 +12814,0.83659,83.4565 +12815,2.6929,82.5705 +12816,4.4905,81.7138 +12817,357.56,84.304 +12818,359.5,83.417 +12819,1.3693,82.5627 +12820,3.1801,81.7375 +12821,356.21,84.232 +12822,358.16,83.3773 +12823,0.0452,82.5551 +12824,1.8683,81.7619 +12825,354.87,84.1594 +12826,356.83,83.3374 +12827,358.72,82.5477 +12828,0.55515,81.7869 +12829,353.52,84.0862 +12830,355.49,83.2972 +12831,357.4,82.5405 +12832,359.24,81.8124 +12833,352.18,84.0124 +12834,354.16,83.2569 +12835,356.07,82.5334 +12836,357.92,81.8385 +12837,350.84,83.938 +12838,352.82,83.2164 +12839,354.74,82.5266 +12840,356.61,81.8652 +12841,349.49,83.863 +12842,351.49,83.1758 +12843,353.42,82.5199 +12844,355.29,81.8923 +12845,348.16,83.7876 +12846,350.16,83.1349 +12847,352.09,82.5134 +12848,353.97,81.9198 +12849,346.82,83.7117 +12850,348.82,83.0939 +12851,350.76,82.5071 +12852,352.65,81.9478 +12853,345.48,83.6353 +12854,347.49,83.0528 +12855,349.44,82.5008 +12856,351.32,81.9762 +12857,344.15,83.5585 +12858,346.16,83.0115 +12859,348.11,82.4948 +12860,350,82.005 +12861,342.81,83.4814 +12862,344.83,82.9701 +12863,346.78,82.4888 +12864,348.67,82.0342 +12865,341.48,83.4038 +12866,343.5,82.9286 +12867,345.45,82.4829 +12868,347.35,82.0637 +12869,340.15,83.3259 +12870,342.17,82.887 +12871,344.12,82.4772 +12872,346.02,82.0934 +12873,338.82,83.2477 +12874,340.84,82.8453 +12875,342.79,82.4716 +12876,344.69,82.1235 +12877,337.5,83.1692 +12878,339.51,82.8035 +12879,341.46,82.466 +12880,343.36,82.1538 +12881,336.17,83.0905 +12882,338.18,82.7616 +12883,340.13,82.4605 +12884,342.02,82.1843 +12885,334.85,83.0116 +12886,336.85,82.7196 +12887,338.8,82.4551 +12888,340.69,82.215 +12889,333.53,82.9324 +12890,335.53,82.6776 +12891,337.47,82.4497 +12892,339.35,82.2458 +12893,332.21,82.8532 +12894,334.2,82.6356 +12895,336.14,82.4444 +12896,338.02,82.2768 +12897,330.89,82.7737 +12898,332.87,82.5935 +12899,334.8,82.4391 +12900,336.68,82.3079 +12901,329.57,82.6942 +12902,331.55,82.5513 +12903,333.47,82.4339 +12904,335.34,82.3391 +12905,328.25,82.6146 +12906,330.22,82.5092 +12907,332.14,82.4287 +12908,334,82.3703 +12909,326.94,82.535 +12910,328.9,82.467 +12911,330.8,82.4234 +12912,332.65,82.4015 +12913,325.62,82.4554 +12914,327.57,82.4249 +12915,329.47,82.4182 +12916,331.31,82.4327 +12917,324.31,82.3758 +12918,326.25,82.3827 +12919,328.13,82.413 +12920,329.96,82.4639 +12921,323,82.2963 +12922,324.93,82.3406 +12923,326.8,82.4077 +12924,328.62,82.495 +12925,321.7,82.2168 +12926,323.6,82.2985 +12927,325.46,82.4025 +12928,327.27,82.526 +12929,320.39,82.1374 +12930,322.28,82.2565 +12931,324.12,82.3971 +12932,325.92,82.5569 +12933,319.08,82.0582 +12934,320.96,82.2145 +12935,322.79,82.3918 +12936,324.57,82.5876 +12937,317.78,81.9792 +12938,319.64,82.1725 +12939,321.45,82.3863 +12940,323.21,82.6181 +12941,316.48,81.9004 +12942,318.32,82.1307 +12943,320.11,82.3809 +12944,321.86,82.6485 +12945,315.17,81.8218 +12946,317,82.0889 +12947,318.77,82.3753 +12948,320.5,82.6786 +12949,313.88,81.7435 +12950,315.68,82.0472 +12951,317.44,82.3696 +12952,319.15,82.7085 +12953,312.58,81.6654 +12954,314.36,82.0056 +12955,316.1,82.3639 +12956,317.79,82.738 +12957,311.28,81.5877 +12958,313.04,81.9641 +12959,314.76,82.358 +12960,316.43,82.7673 +12961,309.98,81.5104 +12962,311.72,81.9227 +12963,313.42,82.3521 +12964,315.07,82.7962 +12965,308.69,81.4334 +12966,310.41,81.8815 +12967,312.08,82.346 +12968,313.71,82.8247 +12969,307.4,81.3569 +12970,309.09,81.8404 +12971,310.74,82.3398 +12972,312.34,82.8528 +12973,306.11,81.2807 +12974,307.77,81.7994 +12975,309.4,82.3334 +12976,310.98,82.8805 +12977,304.81,81.2051 +12978,306.46,81.7586 +12979,308.06,82.3269 +12980,309.61,82.9078 +12981,303.53,81.1299 +12982,305.14,81.718 +12983,306.71,82.3202 +12984,308.25,82.9346 +12985,302.24,81.0553 +12986,303.83,81.6775 +12987,305.37,82.3134 +12988,306.88,82.9609 +12989,300.95,80.9812 +12990,302.51,81.6372 +12991,304.03,82.3064 +12992,305.51,82.9866 +12993,299.67,80.9077 +12994,301.2,81.5971 +12995,302.69,82.2992 +12996,304.14,83.0118 +12997,298.38,80.8348 +12998,299.88,81.5572 +12999,301.34,82.2918 +13000,302.77,83.0365 +13001,297.1,80.7625 +13002,298.57,81.5175 +13003,300,82.2842 +13004,301.39,83.0605 +13005,295.82,80.6909 +13006,297.26,81.4781 +13007,298.66,82.2764 +13008,300.02,83.0839 +13009,294.54,80.6199 +13010,295.94,81.4388 +13011,297.31,82.2684 +13012,298.64,83.1067 +13013,293.26,80.5497 +13014,294.63,81.3998 +13015,295.97,82.2602 +13016,297.27,83.1288 +13017,291.98,80.4802 +13018,293.32,81.3611 +13019,294.62,82.2517 +13020,295.89,83.1502 +13021,290.7,80.4115 +13022,292.01,81.3226 +13023,293.28,82.243 +13024,294.51,83.1708 +13025,289.42,80.3435 +13026,290.7,81.2843 +13027,291.93,82.234 +13028,293.13,83.1908 +13029,288.15,80.2763 +13030,289.38,81.2463 +13031,290.59,82.2248 +13032,291.75,83.2099 +13033,286.87,80.21 +13034,288.07,81.2086 +13035,289.24,82.2153 +13036,290.37,83.2283 +13037,285.6,80.1445 +13038,286.76,81.1712 +13039,287.89,82.2056 +13040,288.99,83.2459 +13041,284.33,80.0799 +13042,285.45,81.134 +13043,286.55,82.1956 +13044,287.61,83.2627 +13045,283.06,80.0162 +13046,284.14,81.0972 +13047,285.2,82.1853 +13048,286.22,83.2786 +13049,281.79,79.953 +13050,282.84,81.0606 +13051,283.85,82.1747 +13052,284.84,83.2937 +13053,280.52,79.892 +13054,281.53,81.0244 +13055,282.51,82.1638 +13056,283.45,83.3078 +13057,279.25,79.831 +13058,280.22,80.9885 +13059,281.16,82.1525 +13060,282.07,83.3211 +13061,277.98,79.771 +13062,278.91,80.9529 +13063,279.81,82.141 +13064,280.68,83.3334 +13065,276.71,79.712 +13066,277.6,80.9176 +13067,278.46,82.1292 +13068,279.29,83.3448 +13069,275.44,79.654 +13070,276.29,80.8826 +13071,277.11,82.117 +13072,277.9,83.3553 +13073,274.18,79.597 +13074,274.99,80.848 +13075,275.76,82.1046 +13076,276.51,83.3647 +13077,272.91,79.541 +13078,273.68,80.8138 +13079,274.42,82.0917 +13080,275.12,83.3732 +13081,271.64,79.486 +13082,272.37,80.7799 +13083,273.07,82.0786 +13084,273.73,83.3807 +13085,270.38,79.433 +13086,271.06,80.7464 +13087,271.72,82.0651 +13088,272.34,83.3871 +13089,269.12,79.38 +13090,269.76,80.7132 +13091,270.37,82.0512 +13092,270.95,83.3925 +13093,267.85,79.329 +13094,268.45,80.6804 +13095,269.02,82.037 +13096,269.56,83.3969 +13097,266.59,79.278 +13098,267.15,80.6479 +13099,267.67,82.0225 +13100,268.17,83.4002 +13101,265.33,79.229 +13102,265.84,80.6159 +13103,266.32,82.0075 +13104,266.77,83.4024 +13105,264.06,79.181 +13106,264.53,80.5842 +13107,264.97,81.9922 +13108,265.38,83.4035 +13109,262.8,79.134 +13110,263.23,80.5529 +13111,263.62,81.9766 +13112,263.99,83.4035 +13113,261.54,79.088 +13114,261.92,80.522 +13115,262.27,81.9605 +13116,262.59,83.4023 +13117,260.28,79.044 +13118,260.62,80.4915 +13119,260.92,81.9441 +13120,261.2,83.4001 +13121,259.02,79 +13122,259.31,80.4613 +13123,259.57,81.9273 +13124,259.8,83.3967 +13125,257.76,78.958 +13126,258.01,80.4316 +13127,258.22,81.9101 +13128,258.41,83.3922 +13129,256.5,78.917 +13130,256.7,80.4023 +13131,256.87,81.8925 +13132,257.01,83.3865 +13133,255.24,78.877 +13134,255.4,80.3734 +13135,255.52,81.8745 +13136,255.62,83.3796 +13137,253.98,78.839 +13138,254.09,80.3449 +13139,254.17,81.8562 +13140,254.22,83.3715 +13141,252.72,78.802 +13142,252.79,80.3168 +13143,252.82,81.8374 +13144,252.82,83.3623 +13145,251.46,78.766 +13146,251.48,80.2891 +13147,251.47,81.8182 +13148,251.43,83.3519 +13149,250.2,78.731 +13150,250.18,80.2619 +13151,250.12,81.7986 +13152,250.03,83.3403 +13153,248.94,78.697 +13154,248.87,80.235 +13155,248.77,81.7787 +13156,248.64,83.3274 +13157,247.68,78.665 +13158,247.57,80.2086 +13159,247.42,81.7583 +13160,247.24,83.3134 +13161,246.42,78.634 +13162,246.26,80.1826 +13163,246.07,81.7375 +13164,245.84,83.2981 +13165,245.16,78.605 +13166,244.96,80.157 +13167,244.72,81.7163 +13168,244.45,83.2817 +13169,243.9,78.576 +13170,243.65,80.1319 +13171,243.37,81.6947 +13172,243.05,83.264 +13173,242.64,78.549 +13174,242.35,80.1071 +13175,242.02,81.6727 +13176,241.66,83.245 +13177,241.38,78.523 +13178,241.04,80.0828 +13179,240.67,81.6503 +13180,240.26,83.2249 +13181,240.12,78.499 +13182,239.74,80.0589 +13183,239.32,81.6274 +13184,238.87,83.2035 +13185,238.86,78.475 +13186,238.43,80.0354 +13187,237.97,81.6042 +13188,237.47,83.1809 +13189,237.59,78.453 +13190,237.13,80.0124 +13191,236.62,81.5805 +13192,236.08,83.157 +13193,236.33,78.432 +13194,235.82,79.99 +13195,235.27,81.5564 +13196,234.68,83.1319 +13197,235.07,78.413 +13198,234.52,79.968 +13199,233.92,81.532 +13200,233.29,83.1056 +13201,233.81,78.394 +13202,233.21,79.946 +13203,232.57,81.5071 +13204,231.9,83.0781 +13205,232.55,78.377 +13206,231.91,79.924 +13207,231.23,81.4818 +13208,230.5,83.0493 +13209,231.28,78.362 +13210,230.6,79.903 +13211,229.88,81.4561 +13212,229.11,83.0193 +13213,230.02,78.347 +13214,229.29,79.883 +13215,228.53,81.4299 +13216,227.72,82.9881 +13217,228.75,78.334 +13218,227.99,79.863 +13219,227.18,81.4034 +13220,226.33,82.9557 +13221,227.49,78.322 +13222,226.68,79.843 +13223,225.83,81.3765 +13224,224.94,82.9221 +13225,226.22,78.311 +13226,225.38,79.824 +13227,224.49,81.3492 +13228,223.55,82.8872 +13229,224.96,78.301 +13230,224.07,79.805 +13231,223.14,81.3215 +13232,222.16,82.8512 +13233,223.69,78.293 +13234,222.76,79.787 +13235,221.79,81.2934 +13236,220.77,82.8139 +13237,222.42,78.286 +13238,221.46,79.768 +13239,220.44,81.2649 +13240,219.38,82.7755 +13241,221.16,78.28 +13242,220.15,79.751 +13243,219.1,81.236 +13244,217.99,82.7359 +13245,219.89,78.275 +13246,218.84,79.734 +13247,217.75,81.2067 +13248,216.61,82.6951 +13249,218.62,78.271 +13250,217.53,79.717 +13251,216.4,81.177 +13252,215.22,82.6532 +13253,217.35,78.269 +13254,216.23,79.7 +13255,215.06,81.147 +13256,213.84,82.6101 +13257,216.08,78.267 +13258,214.92,79.684 +13259,213.71,81.1165 +13260,212.45,82.5658 +13261,214.8,78.267 +13262,213.61,79.668 +13263,212.37,81.0858 +13264,211.07,82.5205 +13265,213.53,78.268 +13266,212.3,79.653 +13267,211.02,81.0546 +13268,209.69,82.474 +13269,212.26,78.27 +13270,210.99,79.638 +13271,209.68,81.0231 +13272,208.31,82.4264 +13273,210.98,78.273 +13274,209.68,79.623 +13275,208.33,80.9912 +13276,206.93,82.3777 +13277,209.71,78.277 +13278,208.38,79.609 +13279,206.99,80.9589 +13280,205.55,82.3279 +13281,208.43,78.283 +13282,207.07,79.595 +13283,205.65,80.9263 +13284,204.17,82.2771 +13285,207.15,78.289 +13286,205.76,79.582 +13287,204.3,80.8934 +13288,202.79,82.2252 +13289,205.87,78.296 +13290,204.45,79.569 +13291,202.96,80.8601 +13292,201.42,82.1723 +13293,204.59,78.305 +13294,203.13,79.556 +13295,201.62,80.8265 +13296,200.04,82.1183 +13297,203.31,78.314 +13298,201.82,79.543 +13299,200.28,80.7926 +13300,198.67,82.0633 +13301,202.03,78.324 +13302,200.51,79.531 +13303,198.94,80.7583 +13304,197.29,82.0074 +13305,200.75,78.335 +13306,199.2,79.519 +13307,197.6,80.7237 +13308,195.92,81.9505 +13309,199.46,78.348 +13310,197.89,79.508 +13311,196.25,80.6888 +13312,194.55,81.8926 +13313,198.18,78.361 +13314,196.58,79.497 +13315,194.91,80.6536 +13316,193.19,81.8338 +13317,196.89,78.375 +13318,195.26,79.486 +13319,193.57,80.6181 +13320,191.82,81.774 +13321,195.6,78.39 +13322,193.95,79.475 +13323,192.24,80.5823 +13324,190.45,81.7134 +13325,194.32,78.405 +13326,192.64,79.465 +13327,190.9,80.5463 +13328,189.09,81.6519 +13329,193.03,78.422 +13330,191.32,79.455 +13331,189.56,80.5099 +13332,187.72,81.5895 +13333,191.73,78.439 +13334,190.01,79.445 +13335,188.22,80.4733 +13336,186.36,81.5263 +13337,190.44,78.457 +13338,188.69,79.435 +13339,186.88,80.4364 +13340,185,81.4623 +13341,189.15,78.476 +13342,187.38,79.426 +13343,185.55,80.3993 +13344,183.64,81.3975 +13345,187.85,78.496 +13346,186.06,79.417 +13347,184.21,80.3619 +13348,182.29,81.3319 +13349,186.55,78.516 +13350,184.75,79.409 +13351,182.87,80.3242 +13352,180.93,81.2655 +13353,185.26,78.537 +13354,183.43,79.4 +13355,181.54,80.2864 +13356,179.57,81.1984 +13357,183.96,78.559 +13358,182.11,79.392 +13359,180.2,80.2483 +13360,178.22,81.1307 +13361,182.66,78.581 +13362,180.79,79.384 +13363,178.87,80.21 +13364,176.87,81.0622 +13365,181.35,78.604 +13366,179.48,79.376 +13367,177.54,80.1715 +13368,175.52,80.9931 +13369,180.05,78.628 +13370,178.16,79.368 +13371,176.2,80.1327 +13372,174.17,80.9233 +13373,178.74,78.652 +13374,176.84,79.361 +13375,174.87,80.0938 +13376,172.82,80.853 +13377,177.44,78.677 +13378,175.52,79.354 +13379,173.54,80.0547 +13380,171.48,80.782 +13381,176.13,78.702 +13382,174.2,79.347 +13383,172.21,80.0155 +13384,170.13,80.7105 +13385,174.82,78.728 +13386,172.88,79.34 +13387,170.87,79.976 +13388,168.79,80.6385 +13389,173.51,78.754 +13390,171.56,79.333 +13391,169.54,79.936 +13392,167.45,80.566 +13393,172.2,78.78 +13394,170.24,79.327 +13395,168.21,79.897 +13396,166.11,80.493 +13397,170.88,78.807 +13398,168.92,79.32 +13399,166.88,79.857 +13400,164.78,80.4195 +13401,169.57,78.835 +13402,167.59,79.314 +13403,165.56,79.817 +13404,163.44,80.3456 +13405,168.25,78.863 +13406,166.27,79.308 +13407,164.23,79.777 +13408,162.1,80.2714 +13409,166.93,78.891 +13410,164.95,79.302 +13411,162.9,79.736 +13412,160.77,80.1967 +13413,165.61,78.919 +13414,163.63,79.296 +13415,161.57,79.696 +13416,159.44,80.1217 +13417,164.29,78.948 +13418,162.3,79.29 +13419,160.24,79.656 +13420,158.11,80.0464 +13421,162.97,78.977 +13422,160.98,79.285 +13423,158.92,79.615 +13424,156.78,79.971 +13425,161.64,79.006 +13426,159.65,79.279 +13427,157.59,79.574 +13428,155.46,79.895 +13429,160.32,79.035 +13430,158.33,79.273 +13431,156.27,79.534 +13432,154.13,79.819 +13433,158.99,79.065 +13434,157,79.268 +13435,154.94,79.493 +13436,152.81,79.743 +13437,157.66,79.094 +13438,155.67,79.263 +13439,153.62,79.452 +13440,151.49,79.666 +13441,156.33,79.124 +13442,154.35,79.257 +13443,152.3,79.411 +13444,150.17,79.59 +13445,155,79.154 +13446,153.02,79.252 +13447,150.97,79.371 +13448,148.85,79.513 +13449,153.67,79.184 +13450,151.69,79.247 +13451,149.65,79.33 +13452,147.54,79.436 +13453,152.33,79.214 +13454,150.36,79.241 +13455,148.33,79.289 +13456,146.22,79.359 +13457,150.99,79.244 +13458,149.03,79.236 +13459,147.01,79.248 +13460,144.91,79.282 +13461,149.66,79.274 +13462,147.7,79.231 +13463,145.69,79.207 +13464,143.6,79.206 +13465,148.32,79.304 +13466,146.37,79.225 +13467,144.37,79.166 +13468,142.29,79.129 +13469,146.98,79.333 +13470,145.04,79.22 +13471,143.05,79.125 +13472,140.98,79.052 +13473,145.63,79.363 +13474,143.71,79.215 +13475,141.73,79.085 +13476,139.67,78.975 +13477,144.29,79.393 +13478,142.38,79.209 +13479,140.41,79.044 +13480,138.37,78.899 +13481,142.94,79.422 +13482,141.05,79.204 +13483,139.09,79.003 +13484,137.07,78.822 +13485,141.6,79.451 +13486,139.72,79.198 +13487,137.77,78.963 +13488,135.76,78.746 +13489,140.25,79.48 +13490,138.38,79.193 +13491,136.46,78.922 +13492,134.46,78.67 +13493,138.9,79.509 +13494,137.05,79.187 +13495,135.14,78.882 +13496,133.16,78.594 +13497,137.55,79.537 +13498,135.72,79.182 +13499,133.82,78.841 +13500,131.87,78.519 +13501,136.2,79.565 +13502,134.38,79.176 +13503,132.51,78.801 +13504,130.57,78.444 +13505,134.84,79.593 +13506,133.05,79.17 +13507,131.19,78.761 +13508,129.28,78.369 +13509,133.49,79.621 +13510,131.71,79.164 +13511,129.88,78.721 +13512,127.98,78.294 +13513,132.13,79.648 +13514,130.38,79.158 +13515,128.57,78.681 +13516,126.69,78.22 +13517,130.77,79.675 +13518,129.04,79.151 +13519,127.25,78.641 +13520,125.4,78.146 +13521,129.41,79.701 +13522,127.7,79.145 +13523,125.94,78.602 +13524,124.12,78.073 +13525,128.05,79.727 +13526,126.37,79.138 +13527,124.63,78.562 +13528,122.83,78 +13529,126.69,79.752 +13530,125.03,79.132 +13531,123.32,78.523 +13532,121.54,77.928 +13533,125.33,79.777 +13534,123.69,79.125 +13535,122,78.484 +13536,120.26,77.856 +13537,123.96,79.801 +13538,122.35,79.118 +13539,120.69,78.445 +13540,118.98,77.785 +13541,122.6,79.825 +13542,121.02,79.111 +13543,119.38,78.406 +13544,117.69,77.714 +13545,121.23,79.848 +13546,119.68,79.103 +13547,118.07,78.368 +13548,116.41,77.644 +13549,119.86,79.87 +13550,118.34,79.095 +13551,116.76,78.329 +13552,115.14,77.574 +13553,118.49,79.892 +13554,117,79.088 +13555,115.45,78.291 +13556,113.86,77.505 +13557,117.12,79.914 +13558,115.66,79.08 +13559,114.15,78.253 +13560,112.58,77.437 +13561,115.75,79.934 +13562,114.32,79.071 +13563,112.84,78.216 +13564,111.31,77.37 +13565,114.38,79.954 +13566,112.98,79.063 +13567,111.53,78.178 +13568,110.03,77.303 +13569,113,79.973 +13570,111.64,79.054 +13571,110.22,78.141 +13572,108.76,77.237 +13573,111.63,79.992 +13574,110.29,79.045 +13575,108.92,78.104 +13576,107.49,77.172 +13577,110.25,80.0097 +13578,108.95,79.036 +13579,107.61,78.068 +13580,106.22,77.107 +13581,108.87,80.0266 +13582,107.61,79.027 +13583,106.3,78.031 +13584,104.95,77.043 +13585,107.5,80.0428 +13586,106.27,79.017 +13587,105,77.995 +13588,103.68,76.981 +13589,106.12,80.0581 +13590,104.93,79.007 +13591,103.69,77.96 +13592,102.41,76.919 +13593,104.74,80.0726 +13594,103.58,78.997 +13595,102.39,77.924 +13596,101.14,76.858 +13597,103.36,80.0863 +13598,102.24,78.986 +13599,101.08,77.889 +13600,99.879,76.797 +13601,101.97,80.099 +13602,100.89,78.975 +13603,99.776,77.854 +13604,98.614,76.738 +13605,100.59,80.1109 +13606,99.551,78.964 +13607,98.472,77.82 +13608,97.35,76.68 +13609,99.206,80.1219 +13610,98.207,78.953 +13611,97.168,77.785 +13612,96.088,76.622 +13613,97.822,80.1319 +13614,96.862,78.941 +13615,95.864,77.751 +13616,94.825,76.566 +13617,96.436,80.141 +13618,95.518,78.929 +13619,94.561,77.718 +13620,93.564,76.51 +13621,95.05,80.1492 +13622,94.173,78.916 +13623,93.258,77.685 +13624,92.304,76.456 +13625,93.663,80.1563 +13626,92.827,78.904 +13627,91.955,77.652 +13628,91.044,76.403 +13629,92.275,80.1625 +13630,91.482,78.891 +13631,90.652,77.619 +13632,89.785,76.35 +13633,90.887,80.1677 +13634,90.136,78.877 +13635,89.35,77.587 +13636,88.527,76.299 +13637,89.498,80.1719 +13638,88.791,78.863 +13639,88.048,77.555 +13640,87.269,76.249 +13641,88.108,80.175 +13642,87.445,78.849 +13643,86.746,77.524 +13644,86.012,76.2 +13645,86.718,80.1771 +13646,86.099,78.835 +13647,85.445,77.493 +13648,84.755,76.152 +13649,85.327,80.1781 +13650,84.752,78.82 +13651,84.143,77.462 +13652,83.499,76.105 +13653,83.936,80.178 +13654,83.406,78.805 +13655,82.842,77.431 +13656,82.244,76.059 +13657,82.544,80.1769 +13658,82.059,78.79 +13659,81.541,77.401 +13660,80.988,76.014 +13661,81.152,80.1747 +13662,80.713,78.774 +13663,80.24,77.372 +13664,79.734,75.971 +13665,79.759,80.1714 +13666,79.366,78.757 +13667,78.939,77.343 +13668,78.48,75.929 +13669,78.366,80.1669 +13670,78.019,78.741 +13671,77.639,77.314 +13672,77.226,75.887 +13673,76.973,80.1614 +13674,76.672,78.724 +13675,76.338,77.285 +13676,75.972,75.847 +13677,75.579,80.1547 +13678,75.325,78.707 +13679,75.038,77.257 +13680,74.719,75.809 +13681,74.185,80.1469 +13682,73.978,78.689 +13683,73.738,77.23 +13684,73.466,75.771 +13685,72.791,80.1379 +13686,72.63,78.671 +13687,72.438,77.203 +13688,72.213,75.735 +13689,71.396,80.1278 +13690,71.283,78.652 +13691,71.138,77.176 +13692,70.96,75.7 +13693,70.002,80.1165 +13694,69.936,78.633 +13695,69.838,77.149 +13696,69.708,75.666 +13697,68.607,80.104 +13698,68.589,78.614 +13699,68.538,77.123 +13700,68.455,75.633 +13701,67.212,80.0904 +13702,67.241,78.594 +13703,67.238,77.098 +13704,67.203,75.602 +13705,65.817,80.0756 +13706,65.894,78.574 +13707,65.938,77.072 +13708,65.95,75.571 +13709,64.422,80.0596 +13710,64.547,78.554 +13711,64.638,77.048 +13712,64.698,75.542 +13713,63.027,80.0424 +13714,63.199,78.533 +13715,63.339,77.023 +13716,63.446,75.515 +13717,61.632,80.0241 +13718,61.852,78.512 +13719,62.039,76.999 +13720,62.193,75.488 +13721,60.237,80.0046 +13722,60.505,78.49 +13723,60.739,76.976 +13724,60.941,75.463 +13725,58.842,79.984 +13726,59.158,78.468 +13727,59.439,76.953 +13728,59.688,75.439 +13729,57.447,79.962 +13730,57.811,78.446 +13731,58.139,76.93 +13732,58.435,75.416 +13733,56.053,79.939 +13734,56.464,78.423 +13735,56.84,76.908 +13736,57.182,75.395 +13737,54.659,79.915 +13738,55.117,78.4 +13739,55.54,76.886 +13740,55.929,75.374 +13741,53.265,79.889 +13742,53.77,78.376 +13743,54.24,76.864 +13744,54.675,75.355 +13745,51.871,79.862 +13746,52.424,78.352 +13747,52.939,76.843 +13748,53.421,75.337 +13749,50.478,79.835 +13750,51.077,78.328 +13751,51.639,76.823 +13752,52.166,75.321 +13753,49.085,79.805 +13754,49.731,78.303 +13755,50.339,76.802 +13756,50.912,75.305 +13757,47.692,79.775 +13758,48.385,78.277 +13759,49.038,76.783 +13760,49.657,75.291 +13761,46.3,79.744 +13762,47.039,78.252 +13763,47.738,76.763 +13764,48.401,75.278 +13765,44.908,79.711 +13766,45.693,78.226 +13767,46.437,76.744 +13768,47.145,75.267 +13769,43.517,79.678 +13770,44.347,78.2 +13771,45.136,76.726 +13772,45.888,75.256 +13773,42.126,79.643 +13774,43.002,78.173 +13775,43.835,76.707 +13776,44.631,75.247 +13777,40.736,79.607 +13778,41.657,78.146 +13779,42.534,76.69 +13780,43.373,75.239 +13781,39.347,79.569 +13782,40.312,78.118 +13783,41.233,76.672 +13784,42.114,75.232 +13785,37.958,79.531 +13786,38.967,78.09 +13787,39.931,76.655 +13788,40.855,75.226 +13789,36.57,79.492 +13790,37.622,78.062 +13791,38.629,76.638 +13792,39.595,75.222 +13793,35.183,79.451 +13794,36.278,78.033 +13795,37.327,76.622 +13796,38.334,75.218 +13797,33.796,79.409 +13798,34.934,78.004 +13799,36.025,76.606 +13800,37.073,75.216 +13801,32.41,79.366 +13802,33.591,77.975 +13803,34.722,76.591 +13804,35.811,75.215 +13805,31.025,79.323 +13806,32.247,77.945 +13807,33.42,76.576 +13808,34.548,75.215 +13809,29.641,79.278 +13810,30.904,77.915 +13811,32.117,76.561 +13812,33.284,75.216 +13813,28.258,79.232 +13814,29.562,77.885 +13815,30.813,76.547 +13816,32.019,75.218 +13817,26.876,79.184 +13818,28.219,77.854 +13819,29.51,76.533 +13820,30.754,75.221 +13821,25.494,79.136 +13822,26.877,77.823 +13823,28.206,76.519 +13824,29.487,75.225 +13825,24.114,79.087 +13826,25.535,77.791 +13827,26.902,76.506 +13828,28.219,75.231 +13829,22.734,79.037 +13830,24.194,77.759 +13831,25.597,76.493 +13832,26.951,75.237 +13833,21.356,78.986 +13834,22.853,77.727 +13835,24.292,76.48 +13836,25.681,75.244 +13837,19.979,78.933 +13838,21.512,77.695 +13839,22.987,76.468 +13840,24.411,75.253 +13841,18.603,78.88 +13842,20.172,77.662 +13843,21.681,76.456 +13844,23.139,75.262 +13845,17.228,78.826 +13846,18.832,77.629 +13847,20.376,76.444 +13848,21.866,75.272 +13849,15.854,78.771 +13850,17.493,77.595 +13851,19.069,76.433 +13852,20.592,75.284 +13853,14.481,78.715 +13854,16.154,77.562 +13855,17.763,76.422 +13856,19.317,75.296 +13857,13.11,78.658 +13858,14.815,77.528 +13859,16.456,76.411 +13860,18.041,75.309 +13861,11.74,78.6 +13862,13.477,77.493 +13863,15.148,76.401 +13864,16.763,75.323 +13865,10.371,78.542 +13866,12.14,77.459 +13867,13.841,76.391 +13868,15.484,75.338 +13869,9.0037,78.482 +13870,10.802,77.424 +13871,12.533,76.381 +13872,14.204,75.353 +13873,7.6375,78.422 +13874,9.4655,77.389 +13875,11.224,76.372 +13876,12.923,75.37 +13877,6.2727,78.36 +13878,8.1291,77.353 +13879,9.9151,76.362 +13880,11.641,75.387 +13881,4.9092,78.298 +13882,6.7933,77.318 +13883,8.6057,76.354 +13884,10.357,75.405 +13885,3.5472,78.236 +13886,5.4579,77.282 +13887,7.2959,76.345 +13888,9.0717,75.424 +13889,2.1866,78.172 +13890,4.123,77.246 +13891,5.9856,76.336 +13892,7.7852,75.443 +13893,0.82745,78.108 +13894,2.7886,77.209 +13895,4.6749,76.328 +13896,6.4973,75.464 +13897,359.47,78.043 +13898,1.4546,77.173 +13899,3.3638,76.32 +13900,5.2081,75.484 +13901,358.11,77.977 +13902,0.12124,77.136 +13903,2.0522,76.312 +13904,3.9175,75.506 +13905,356.76,77.911 +13906,358.79,77.099 +13907,0.74016,76.305 +13908,2.6255,75.528 +13909,355.41,77.844 +13910,357.46,77.061 +13911,359.43,76.298 +13912,1.332,75.551 +13913,354.05,77.777 +13914,356.12,77.024 +13915,358.11,76.29 +13916,0.037092,75.574 +13917,352.7,77.709 +13918,354.79,76.986 +13919,356.8,76.284 +13920,358.74,75.598 +13921,351.36,77.64 +13922,353.46,76.949 +13923,355.49,76.277 +13924,357.44,75.623 +13925,350.01,77.571 +13926,352.13,76.911 +13927,354.17,76.27 +13928,356.14,75.648 +13929,348.66,77.501 +13930,350.8,76.872 +13931,352.86,76.264 +13932,354.84,75.673 +13933,347.32,77.431 +13934,349.47,76.834 +13935,351.54,76.258 +13936,353.54,75.699 +13937,345.98,77.36 +13938,348.14,76.796 +13939,350.23,76.252 +13940,352.24,75.726 +13941,344.64,77.289 +13942,346.82,76.757 +13943,348.91,76.246 +13944,350.93,75.753 +13945,343.3,77.217 +13946,345.49,76.718 +13947,347.59,76.24 +13948,349.62,75.78 +13949,341.96,77.145 +13950,344.16,76.679 +13951,346.28,76.234 +13952,348.32,75.807 +13953,340.63,77.073 +13954,342.84,76.64 +13955,344.96,76.229 +13956,347.01,75.835 +13957,339.29,77 +13958,341.51,76.601 +13959,343.64,76.223 +13960,345.69,75.863 +13961,337.96,76.927 +13962,340.18,76.562 +13963,342.32,76.218 +13964,344.38,75.892 +13965,336.63,76.854 +13966,338.86,76.523 +13967,341,76.213 +13968,343.07,75.921 +13969,335.3,76.78 +13970,337.54,76.484 +13971,339.68,76.207 +13972,341.75,75.949 +13973,333.98,76.707 +13974,336.21,76.444 +13975,338.36,76.202 +13976,340.43,75.979 +13977,332.65,76.633 +13978,334.89,76.405 +13979,337.04,76.197 +13980,339.11,76.008 +13981,331.33,76.559 +13982,333.57,76.365 +13983,335.72,76.192 +13984,337.79,76.037 +13985,330.01,76.484 +13986,332.24,76.326 +13987,334.4,76.187 +13988,336.47,76.067 +13989,328.69,76.41 +13990,330.92,76.286 +13991,333.07,76.183 +13992,335.15,76.096 +13993,327.37,76.336 +13994,329.6,76.247 +13995,331.75,76.178 +13996,333.82,76.126 +13997,326.05,76.261 +13998,328.28,76.207 +13999,330.43,76.173 +14000,332.49,76.156 +14001,324.74,76.187 +14002,326.96,76.168 +14003,329.1,76.168 +14004,331.17,76.185 +14005,323.42,76.112 +14006,325.64,76.128 +14007,327.78,76.163 +14008,329.83,76.215 +14009,322.11,76.037 +14010,324.33,76.089 +14011,326.45,76.158 +14012,328.5,76.245 +14013,320.8,75.963 +14014,323.01,76.049 +14015,325.13,76.153 +14016,327.17,76.274 +14017,319.49,75.889 +14018,321.69,76.01 +14019,323.8,76.149 +14020,325.83,76.303 +14021,318.19,75.814 +14022,320.37,75.97 +14023,322.47,76.144 +14024,324.5,76.333 +14025,316.88,75.74 +14026,319.06,75.931 +14027,321.15,76.139 +14028,323.16,76.362 +14029,315.58,75.666 +14030,317.74,75.891 +14031,319.82,76.134 +14032,321.82,76.391 +14033,314.28,75.593 +14034,316.43,75.852 +14035,318.49,76.129 +14036,320.48,76.419 +14037,312.98,75.519 +14038,315.11,75.813 +14039,317.16,76.123 +14040,319.14,76.448 +14041,311.68,75.446 +14042,313.8,75.774 +14043,315.83,76.118 +14044,317.79,76.476 +14045,310.38,75.373 +14046,312.49,75.735 +14047,314.5,76.113 +14048,316.45,76.504 +14049,309.09,75.3 +14050,311.17,75.696 +14051,313.17,76.107 +14052,315.1,76.531 +14053,307.8,75.228 +14054,309.86,75.657 +14055,311.84,76.102 +14056,313.75,76.558 +14057,306.51,75.156 +14058,308.55,75.619 +14059,310.51,76.096 +14060,312.4,76.585 +14061,305.22,75.084 +14062,307.24,75.58 +14063,309.18,76.09 +14064,311.05,76.612 +14065,303.93,75.013 +14066,305.93,75.542 +14067,307.85,76.084 +14068,309.7,76.638 +14069,302.64,74.942 +14070,304.62,75.504 +14071,306.51,76.078 +14072,308.34,76.663 +14073,301.36,74.872 +14074,303.31,75.466 +14075,305.18,76.072 +14076,306.99,76.688 +14077,300.07,74.802 +14078,302,75.428 +14079,303.85,76.065 +14080,305.63,76.713 +14081,298.79,74.733 +14082,300.69,75.39 +14083,302.51,76.059 +14084,304.27,76.737 +14085,297.51,74.664 +14086,299.38,75.353 +14087,301.18,76.052 +14088,302.91,76.76 +14089,296.23,74.596 +14090,298.07,75.315 +14091,299.84,76.045 +14092,301.55,76.783 +14093,294.95,74.528 +14094,296.77,75.278 +14095,298.51,76.038 +14096,300.19,76.805 +14097,293.67,74.462 +14098,295.46,75.241 +14099,297.17,76.031 +14100,298.82,76.827 +14101,292.4,74.395 +14102,294.15,75.205 +14103,295.84,76.023 +14104,297.46,76.848 +14105,291.13,74.33 +14106,292.85,75.168 +14107,294.5,76.015 +14108,296.09,76.868 +14109,289.85,74.265 +14110,291.54,75.132 +14111,293.16,76.007 +14112,294.72,76.888 +14113,288.58,74.201 +14114,290.24,75.096 +14115,291.83,75.999 +14116,293.35,76.907 +14117,287.31,74.137 +14118,288.93,75.061 +14119,290.49,75.991 +14120,291.98,76.925 +14121,286.04,74.075 +14122,287.63,75.025 +14123,289.15,75.982 +14124,290.61,76.943 +14125,284.78,74.013 +14126,286.33,74.99 +14127,287.81,75.973 +14128,289.24,76.96 +14129,283.51,73.952 +14130,285.02,74.955 +14131,286.47,75.964 +14132,287.87,76.975 +14133,282.25,73.892 +14134,283.72,74.92 +14135,285.13,75.954 +14136,286.49,76.991 +14137,280.98,73.832 +14138,282.42,74.886 +14139,283.79,75.944 +14140,285.12,77.005 +14141,279.72,73.774 +14142,281.12,74.852 +14143,282.45,75.934 +14144,283.74,77.018 +14145,278.46,73.716 +14146,279.81,74.818 +14147,281.11,75.924 +14148,282.36,77.031 +14149,277.2,73.659 +14150,278.51,74.785 +14151,279.77,75.913 +14152,280.98,77.043 +14153,275.94,73.604 +14154,277.21,74.752 +14155,278.43,75.902 +14156,279.6,77.053 +14157,274.68,73.549 +14158,275.91,74.719 +14159,277.09,75.891 +14160,278.22,77.063 +14161,273.42,73.495 +14162,274.61,74.687 +14163,275.75,75.88 +14164,276.84,77.072 +14165,272.16,73.442 +14166,273.31,74.654 +14167,274.41,75.868 +14168,275.46,77.08 +14169,270.91,73.39 +14170,272.01,74.623 +14171,273.07,75.855 +14172,274.07,77.087 +14173,269.65,73.34 +14174,270.71,74.591 +14175,271.72,75.843 +14176,272.69,77.093 +14177,268.4,73.29 +14178,269.41,74.56 +14179,270.38,75.83 +14180,271.3,77.098 +14181,267.14,73.241 +14182,268.11,74.529 +14183,269.04,75.817 +14184,269.92,77.102 +14185,265.89,73.194 +14186,266.82,74.499 +14187,267.7,75.803 +14188,268.53,77.105 +14189,264.64,73.147 +14190,265.52,74.469 +14191,266.35,75.789 +14192,267.14,77.107 +14193,263.39,73.102 +14194,264.22,74.439 +14195,265.01,75.775 +14196,265.76,77.108 +14197,262.14,73.057 +14198,262.92,74.41 +14199,263.66,75.761 +14200,264.37,77.108 +14201,260.89,73.014 +14202,261.62,74.381 +14203,262.32,75.746 +14204,262.98,77.107 +14205,259.64,72.972 +14206,260.33,74.352 +14207,260.98,75.73 +14208,261.59,77.105 +14209,258.39,72.931 +14210,259.03,74.324 +14211,259.63,75.715 +14212,260.2,77.101 +14213,257.14,72.891 +14214,257.73,74.296 +14215,258.29,75.699 +14216,258.81,77.097 +14217,255.89,72.852 +14218,256.44,74.269 +14219,256.94,75.682 +14220,257.41,77.091 +14221,254.64,72.815 +14222,255.14,74.242 +14223,255.6,75.666 +14224,256.02,77.085 +14225,253.39,72.779 +14226,253.84,74.215 +14227,254.25,75.648 +14228,254.63,77.077 +14229,252.15,72.744 +14230,252.55,74.189 +14231,252.91,75.631 +14232,253.24,77.068 +14233,250.9,72.71 +14234,251.25,74.163 +14235,251.56,75.613 +14236,251.84,77.058 +14237,249.65,72.677 +14238,249.95,74.137 +14239,250.22,75.595 +14240,250.45,77.047 +14241,248.41,72.645 +14242,248.66,74.112 +14243,248.87,75.576 +14244,249.06,77.034 +14245,247.16,72.615 +14246,247.36,74.088 +14247,247.53,75.557 +14248,247.66,77.021 +14249,245.91,72.586 +14250,246.07,74.063 +14251,246.18,75.537 +14252,246.27,77.006 +14253,244.67,72.558 +14254,244.77,74.04 +14255,244.84,75.518 +14256,244.88,76.99 +14257,243.42,72.531 +14258,243.47,74.016 +14259,243.49,75.497 +14260,243.48,76.973 +14261,242.18,72.506 +14262,242.18,73.993 +14263,242.15,75.477 +14264,242.09,76.955 +14265,240.93,72.482 +14266,240.88,73.97 +14267,240.8,75.456 +14268,240.69,76.936 +14269,239.68,72.459 +14270,239.59,73.948 +14271,239.46,75.434 +14272,239.3,76.915 +14273,238.44,72.437 +14274,238.29,73.926 +14275,238.11,75.412 +14276,237.9,76.894 +14277,237.19,72.417 +14278,237,73.905 +14279,236.77,75.39 +14280,236.51,76.871 +14281,235.95,72.397 +14282,235.7,73.884 +14283,235.42,75.368 +14284,235.11,76.847 +14285,234.7,72.379 +14286,234.4,73.863 +14287,234.08,75.345 +14288,233.72,76.822 +14289,233.45,72.362 +14290,233.11,73.843 +14291,232.73,75.321 +14292,232.32,76.795 +14293,232.21,72.347 +14294,231.81,73.823 +14295,231.39,75.297 +14296,230.93,76.768 +14297,230.96,72.332 +14298,230.52,73.804 +14299,230.04,75.273 +14300,229.54,76.739 +14301,229.71,72.319 +14302,229.22,73.785 +14303,228.7,75.249 +14304,228.14,76.709 +14305,228.46,72.307 +14306,227.92,73.766 +14307,227.35,75.224 +14308,226.75,76.678 +14309,227.21,72.296 +14310,226.63,73.748 +14311,226.01,75.198 +14312,225.36,76.646 +14313,225.96,72.286 +14314,225.33,73.73 +14315,224.67,75.173 +14316,223.97,76.613 +14317,224.71,72.278 +14318,224.03,73.713 +14319,223.32,75.147 +14320,222.57,76.578 +14321,223.46,72.271 +14322,222.74,73.696 +14323,221.98,75.12 +14324,221.18,76.543 +14325,222.21,72.265 +14326,221.44,73.679 +14327,220.63,75.093 +14328,219.79,76.506 +14329,220.96,72.26 +14330,220.14,73.663 +14331,219.29,75.066 +14332,218.4,76.468 +14333,219.71,72.256 +14334,218.85,73.647 +14335,217.95,75.038 +14336,217.01,76.429 +14337,218.46,72.253 +14338,217.55,73.632 +14339,216.61,75.01 +14340,215.62,76.389 +14341,217.2,72.252 +14342,216.25,73.616 +14343,215.26,74.982 +14344,214.23,76.348 +14345,215.95,72.251 +14346,214.95,73.602 +14347,213.92,74.953 +14348,212.85,76.306 +14349,214.69,72.252 +14350,213.66,73.587 +14351,212.58,74.924 +14352,211.46,76.262 +14353,213.44,72.254 +14354,212.36,73.573 +14355,211.24,74.895 +14356,210.07,76.218 +14357,212.18,72.256 +14358,211.06,73.56 +14359,209.89,74.865 +14360,208.69,76.172 +14361,210.92,72.26 +14362,209.76,73.546 +14363,208.55,74.835 +14364,207.3,76.126 +14365,209.67,72.265 +14366,208.46,73.533 +14367,207.21,74.805 +14368,205.92,76.078 +14369,208.41,72.271 +14370,207.16,73.521 +14371,205.87,74.774 +14372,204.53,76.03 +14373,207.15,72.278 +14374,205.86,73.509 +14375,204.53,74.743 +14376,203.15,75.98 +14377,205.89,72.286 +14378,204.56,73.497 +14379,203.19,74.711 +14380,201.77,75.93 +14381,204.62,72.295 +14382,203.26,73.485 +14383,201.85,74.68 +14384,200.39,75.878 +14385,203.36,72.305 +14386,201.96,73.474 +14387,200.51,74.648 +14388,199.01,75.826 +14389,202.1,72.316 +14390,200.66,73.463 +14391,199.17,74.615 +14392,197.63,75.773 +14393,200.83,72.328 +14394,199.36,73.452 +14395,197.83,74.582 +14396,196.26,75.718 +14397,199.56,72.34 +14398,198.05,73.442 +14399,196.5,74.549 +14400,194.88,75.663 +14401,198.3,72.354 +14402,196.75,73.432 +14403,195.16,74.516 +14404,193.51,75.607 +14405,197.03,72.369 +14406,195.45,73.422 +14407,193.82,74.483 +14408,192.13,75.55 +14409,195.76,72.384 +14410,194.15,73.413 +14411,192.48,74.449 +14412,190.76,75.492 +14413,194.48,72.4 +14414,192.84,73.403 +14415,191.15,74.415 +14416,189.39,75.434 +14417,193.21,72.417 +14418,191.54,73.394 +14419,189.81,74.38 +14420,188.02,75.374 +14421,191.94,72.435 +14422,190.24,73.386 +14423,188.48,74.346 +14424,186.65,75.314 +14425,190.66,72.453 +14426,188.93,73.377 +14427,187.14,74.311 +14428,185.28,75.253 +14429,189.39,72.472 +14430,187.63,73.369 +14431,185.81,74.275 +14432,183.92,75.191 +14433,188.11,72.492 +14434,186.32,73.361 +14435,184.47,74.24 +14436,182.55,75.129 +14437,186.83,72.513 +14438,185.01,73.354 +14439,183.14,74.204 +14440,181.19,75.065 +14441,185.55,72.534 +14442,183.71,73.346 +14443,181.8,74.169 +14444,179.83,75.001 +14445,184.26,72.556 +14446,182.4,73.339 +14447,180.47,74.132 +14448,178.47,74.937 +14449,182.98,72.579 +14450,181.09,73.332 +14451,179.14,74.096 +14452,177.11,74.871 +14453,181.7,72.602 +14454,179.79,73.325 +14455,177.81,74.06 +14456,175.75,74.806 +14457,180.41,72.626 +14458,178.48,73.319 +14459,176.48,74.023 +14460,174.4,74.739 +14461,179.12,72.65 +14462,177.17,73.312 +14463,175.15,73.986 +14464,173.04,74.672 +14465,177.83,72.675 +14466,175.86,73.306 +14467,173.82,73.949 +14468,171.69,74.604 +14469,176.54,72.701 +14470,174.55,73.3 +14471,172.49,73.912 +14472,170.34,74.536 +14473,175.25,72.726 +14474,173.24,73.294 +14475,171.16,73.874 +14476,168.99,74.468 +14477,173.95,72.753 +14478,171.93,73.288 +14479,169.83,73.837 +14480,167.64,74.398 +14481,172.66,72.779 +14482,170.62,73.283 +14483,168.5,73.799 +14484,166.3,74.329 +14485,171.36,72.806 +14486,169.31,73.277 +14487,167.17,73.761 +14488,164.95,74.259 +14489,170.06,72.834 +14490,167.99,73.272 +14491,165.85,73.723 +14492,163.61,74.188 +14493,168.76,72.862 +14494,166.68,73.267 +14495,164.52,73.685 +14496,162.27,74.118 +14497,167.46,72.89 +14498,165.37,73.262 +14499,163.19,73.647 +14500,160.93,74.046 +14501,166.16,72.918 +14502,164.05,73.257 +14503,161.87,73.609 +14504,159.59,73.975 +14505,164.85,72.947 +14506,162.74,73.252 +14507,160.54,73.57 +14508,158.26,73.903 +14509,163.55,72.976 +14510,161.42,73.247 +14511,159.22,73.532 +14512,156.92,73.831 +14513,162.24,73.005 +14514,160.11,73.242 +14515,157.9,73.493 +14516,155.59,73.759 +14517,160.93,73.034 +14518,158.79,73.238 +14519,156.57,73.455 +14520,154.26,73.686 +14521,159.62,73.064 +14522,157.48,73.233 +14523,155.25,73.416 +14524,152.93,73.613 +14525,158.3,73.093 +14526,156.16,73.229 +14527,153.93,73.377 +14528,151.6,73.541 +14529,156.99,73.123 +14530,154.84,73.224 +14531,152.61,73.338 +14532,150.28,73.468 +14533,155.67,73.153 +14534,153.52,73.22 +14535,151.29,73.3 +14536,148.96,73.394 +14537,154.35,73.182 +14538,152.2,73.215 +14539,149.97,73.261 +14540,147.63,73.321 +14541,153.03,73.212 +14542,150.88,73.211 +14543,148.65,73.222 +14544,146.31,73.248 +14545,151.71,73.242 +14546,149.56,73.206 +14547,147.33,73.183 +14548,145,73.175 +14549,150.39,73.272 +14550,148.24,73.202 +14551,146.01,73.144 +14552,143.68,73.101 +14553,149.06,73.301 +14554,146.92,73.197 +14555,144.69,73.106 +14556,142.36,73.028 +14557,147.74,73.331 +14558,145.6,73.193 +14559,143.38,73.067 +14560,141.05,72.955 +14561,146.41,73.36 +14562,144.28,73.188 +14563,142.06,73.028 +14564,139.74,72.882 +14565,145.08,73.39 +14566,142.96,73.184 +14567,140.75,72.989 +14568,138.43,72.809 +14569,143.75,73.419 +14570,141.63,73.179 +14571,139.43,72.951 +14572,137.12,72.736 +14573,142.42,73.448 +14574,140.31,73.174 +14575,138.12,72.912 +14576,135.82,72.663 +14577,141.08,73.476 +14578,138.99,73.17 +14579,136.8,72.874 +14580,134.52,72.59 +14581,139.75,73.505 +14582,137.66,73.165 +14583,135.49,72.835 +14584,133.21,72.518 +14585,138.41,73.533 +14586,136.34,73.16 +14587,134.18,72.797 +14588,131.91,72.446 +14589,137.07,73.561 +14590,135.01,73.155 +14591,132.86,72.758 +14592,130.61,72.374 +14593,135.73,73.588 +14594,133.68,73.15 +14595,131.55,72.72 +14596,129.32,72.303 +14597,134.39,73.615 +14598,132.36,73.144 +14599,130.24,72.682 +14600,128.02,72.232 +14601,133.04,73.642 +14602,131.03,73.139 +14603,128.93,72.644 +14604,126.73,72.161 +14605,131.7,73.669 +14606,129.7,73.133 +14607,127.62,72.607 +14608,125.44,72.091 +14609,130.35,73.694 +14610,128.37,73.128 +14611,126.31,72.569 +14612,124.15,72.021 +14613,129,73.72 +14614,127.05,73.122 +14615,125,72.532 +14616,122.86,71.951 +14617,127.65,73.745 +14618,125.72,73.116 +14619,123.69,72.494 +14620,121.57,71.882 +14621,126.3,73.769 +14622,124.39,73.11 +14623,122.39,72.457 +14624,120.29,71.813 +14625,124.95,73.793 +14626,123.06,73.103 +14627,121.08,72.42 +14628,119.01,71.745 +14629,123.6,73.816 +14630,121.73,73.097 +14631,119.77,72.383 +14632,117.72,71.678 +14633,122.24,73.839 +14634,120.39,73.09 +14635,118.47,72.347 +14636,116.44,71.611 +14637,120.88,73.861 +14638,119.06,73.083 +14639,117.16,72.31 +14640,115.16,71.545 +14641,119.52,73.883 +14642,117.73,73.076 +14643,115.85,72.274 +14644,113.89,71.479 +14645,118.16,73.904 +14646,116.4,73.069 +14647,114.55,72.238 +14648,112.61,71.414 +14649,116.8,73.924 +14650,115.06,73.061 +14651,113.25,72.202 +14652,111.34,71.349 +14653,115.44,73.943 +14654,113.73,73.053 +14655,111.94,72.167 +14656,110.07,71.286 +14657,114.08,73.962 +14658,112.4,73.045 +14659,110.64,72.132 +14660,108.79,71.223 +14661,112.71,73.98 +14662,111.06,73.037 +14663,109.34,72.097 +14664,107.53,71.16 +14665,111.35,73.997 +14666,109.73,73.029 +14667,108.03,72.062 +14668,106.26,71.099 +14669,109.98,74.014 +14670,108.39,73.02 +14671,106.73,72.027 +14672,104.99,71.038 +14673,108.61,74.029 +14674,107.06,73.011 +14675,105.43,71.993 +14676,103.72,70.978 +14677,107.24,74.044 +14678,105.72,73.001 +14679,104.13,71.959 +14680,102.46,70.919 +14681,105.87,74.058 +14682,104.38,72.992 +14683,102.83,71.925 +14684,101.2,70.861 +14685,104.49,74.071 +14686,103.05,72.982 +14687,101.53,71.892 +14688,99.936,70.803 +14689,103.12,74.084 +14690,101.71,72.972 +14691,100.23,71.859 +14692,98.675,70.747 +14693,101.75,74.095 +14694,100.37,72.961 +14695,98.931,71.826 +14696,97.416,70.691 +14697,100.37,74.106 +14698,99.034,72.951 +14699,97.632,71.794 +14700,96.158,70.637 +14701,98.993,74.115 +14702,97.696,72.939 +14703,96.334,71.761 +14704,94.901,70.583 +14705,97.615,74.124 +14706,96.357,72.928 +14707,95.035,71.729 +14708,93.645,70.53 +14709,96.236,74.131 +14710,95.018,72.916 +14711,93.738,71.698 +14712,92.39,70.478 +14713,94.856,74.138 +14714,93.679,72.904 +14715,92.44,71.667 +14716,91.136,70.428 +14717,93.475,74.144 +14718,92.339,72.892 +14719,91.143,71.636 +14720,89.883,70.378 +14721,92.093,74.148 +14722,90.999,72.879 +14723,89.847,71.605 +14724,88.632,70.329 +14725,90.71,74.152 +14726,89.659,72.866 +14727,88.551,71.575 +14728,87.381,70.281 +14729,89.327,74.155 +14730,88.318,72.853 +14731,87.254,71.545 +14732,86.131,70.235 +14733,87.942,74.156 +14734,86.978,72.839 +14735,85.959,71.516 +14736,84.882,70.189 +14737,86.557,74.157 +14738,85.637,72.825 +14739,84.663,71.487 +14740,83.633,70.145 +14741,85.171,74.156 +14742,84.295,72.81 +14743,83.368,71.458 +14744,82.386,70.101 +14745,83.784,74.155 +14746,82.954,72.795 +14747,82.073,71.429 +14748,81.139,70.059 +14749,82.397,74.152 +14750,81.612,72.78 +14751,80.779,71.401 +14752,79.893,70.018 +14753,81.009,74.148 +14754,80.27,72.765 +14755,79.484,71.374 +14756,78.647,69.978 +14757,79.62,74.143 +14758,78.928,72.749 +14759,78.19,71.346 +14760,77.402,69.939 +14761,78.23,74.137 +14762,77.586,72.732 +14763,76.896,71.32 +14764,76.158,69.901 +14765,76.84,74.13 +14766,76.243,72.716 +14767,75.602,71.293 +14768,74.914,69.865 +14769,75.45,74.122 +14770,74.901,72.698 +14771,74.309,71.267 +14772,73.671,69.829 +14773,74.059,74.113 +14774,73.558,72.681 +14775,73.015,71.241 +14776,72.428,69.795 +14777,72.667,74.102 +14778,72.215,72.663 +14779,71.722,71.216 +14780,71.186,69.762 +14781,71.275,74.09 +14782,70.872,72.645 +14783,70.429,71.191 +14784,69.944,69.73 +14785,69.883,74.078 +14786,69.529,72.626 +14787,69.136,71.166 +14788,68.702,69.699 +14789,68.49,74.064 +14790,68.185,72.607 +14791,67.843,71.142 +14792,67.461,69.67 +14793,67.097,74.048 +14794,66.842,72.588 +14795,66.55,71.118 +14796,66.22,69.642 +14797,65.703,74.032 +14798,65.499,72.568 +14799,65.258,71.095 +14800,64.979,69.615 +14801,64.31,74.014 +14802,64.155,72.548 +14803,63.965,71.072 +14804,63.738,69.589 +14805,62.916,73.996 +14806,62.812,72.527 +14807,62.673,71.049 +14808,62.498,69.564 +14809,61.522,73.976 +14810,61.468,72.506 +14811,61.38,71.027 +14812,61.257,69.541 +14813,60.127,73.955 +14814,60.124,72.485 +14815,60.088,71.005 +14816,60.017,69.519 +14817,58.733,73.933 +14818,58.781,72.463 +14819,58.795,70.984 +14820,58.776,69.498 +14821,57.339,73.909 +14822,57.437,72.441 +14823,57.503,70.963 +14824,57.536,69.478 +14825,55.944,73.885 +14826,56.093,72.418 +14827,56.211,70.942 +14828,56.296,69.46 +14829,54.55,73.859 +14830,54.75,72.395 +14831,54.918,70.922 +14832,55.055,69.442 +14833,53.155,73.832 +14834,53.406,72.372 +14835,53.626,70.903 +14836,53.814,69.426 +14837,51.761,73.804 +14838,52.063,72.348 +14839,52.334,70.883 +14840,52.573,69.411 +14841,50.367,73.775 +14842,50.719,72.324 +14843,51.041,70.864 +14844,51.332,69.398 +14845,48.972,73.744 +14846,49.376,72.299 +14847,49.749,70.846 +14848,50.091,69.385 +14849,47.578,73.713 +14850,48.033,72.274 +14851,48.456,70.827 +14852,48.849,69.374 +14853,46.185,73.68 +14854,46.689,72.249 +14855,47.163,70.81 +14856,47.607,69.364 +14857,44.791,73.646 +14858,45.346,72.223 +14859,45.871,70.792 +14860,46.365,69.355 +14861,43.398,73.611 +14862,44.003,72.197 +14863,44.578,70.775 +14864,45.122,69.347 +14865,42.005,73.575 +14866,42.661,72.17 +14867,43.285,70.758 +14868,43.879,69.341 +14869,40.613,73.538 +14870,41.318,72.143 +14871,41.991,70.742 +14872,42.635,69.335 +14873,39.221,73.499 +14874,39.976,72.116 +14875,40.698,70.726 +14876,41.39,69.331 +14877,37.829,73.46 +14878,38.633,72.088 +14879,39.405,70.711 +14880,40.145,69.328 +14881,36.438,73.419 +14882,37.291,72.06 +14883,38.111,70.696 +14884,38.9,69.326 +14885,35.048,73.378 +14886,35.949,72.032 +14887,36.817,70.681 +14888,37.654,69.325 +14889,33.658,73.335 +14890,34.608,72.003 +14891,35.523,70.666 +14892,36.407,69.326 +14893,32.268,73.291 +14894,33.266,71.974 +14895,34.229,70.652 +14896,35.159,69.327 +14897,30.879,73.246 +14898,31.925,71.945 +14899,32.934,70.639 +14900,33.911,69.329 +14901,29.491,73.2 +14902,30.584,71.915 +14903,31.64,70.625 +14904,32.662,69.333 +14905,28.104,73.153 +14906,29.243,71.885 +14907,30.345,70.612 +14908,31.412,69.337 +14909,26.717,73.105 +14910,27.903,71.854 +14911,29.05,70.6 +14912,30.161,69.343 +14913,25.331,73.056 +14914,26.563,71.823 +14915,27.754,70.587 +14916,28.909,69.35 +14917,23.946,73.006 +14918,25.223,71.792 +14919,26.458,70.575 +14920,27.657,69.357 +14921,22.562,72.955 +14922,23.883,71.761 +14923,25.162,70.564 +14924,26.403,69.366 +14925,21.179,72.903 +14926,22.544,71.729 +14927,23.866,70.552 +14928,25.149,69.375 +14929,19.797,72.85 +14930,21.205,71.697 +14931,22.569,70.541 +14932,23.893,69.386 +14933,18.415,72.796 +14934,19.867,71.664 +14935,21.272,70.531 +14936,22.636,69.397 +14937,17.035,72.741 +14938,18.529,71.631 +14939,19.975,70.52 +14940,21.379,69.41 +14941,15.656,72.686 +14942,17.191,71.598 +14943,18.677,70.51 +14944,20.12,69.423 +14945,14.277,72.629 +14946,15.854,71.565 +14947,17.379,70.5 +14948,18.86,69.437 +14949,12.9,72.571 +14950,14.516,71.531 +14951,16.081,70.491 +14952,17.599,69.452 +14953,11.524,72.513 +14954,13.18,71.497 +14955,14.782,70.482 +14956,16.336,69.468 +14957,10.149,72.454 +14958,11.844,71.463 +14959,13.483,70.473 +14960,15.073,69.485 +14961,8.7756,72.394 +14962,10.508,71.428 +14963,12.183,70.464 +14964,13.808,69.502 +14965,7.4031,72.333 +14966,9.1725,71.393 +14967,10.883,70.456 +14968,12.542,69.52 +14969,6.032,72.272 +14970,7.8376,71.358 +14971,9.5825,70.447 +14972,11.275,69.54 +14973,4.6621,72.21 +14974,6.5031,71.323 +14975,8.2817,70.439 +14976,10.006,69.559 +14977,3.2935,72.147 +14978,5.1691,71.288 +14979,6.9804,70.432 +14980,8.736,69.58 +14981,1.9263,72.083 +14982,3.8356,71.252 +14983,5.6787,70.424 +14984,7.4646,69.601 +14985,0.56044,72.018 +14986,2.5025,71.216 +14987,4.3765,70.417 +14988,6.1918,69.623 +14989,359.2,71.953 +14990,1.1699,71.18 +14991,3.0739,70.41 +14992,4.9176,69.645 +14993,357.83,71.888 +14994,359.84,71.143 +14995,1.7708,70.403 +14996,3.642,69.668 +14997,356.47,71.821 +14998,358.51,71.106 +14999,0.4673,70.396 +15000,2.365,69.692 +15001,355.11,71.754 +15002,357.18,71.07 +15003,359.16,70.39 +15004,1.0864,69.716 +15005,353.75,71.687 +15006,355.84,71.033 +15007,357.86,70.384 +15008,359.81,69.741 +15009,352.4,71.619 +15010,354.51,70.995 +15011,356.55,70.378 +15012,358.52,69.766 +15013,351.04,71.55 +15014,353.18,70.958 +15015,355.25,70.372 +15016,357.24,69.792 +15017,349.69,71.481 +15018,351.86,70.92 +15019,353.94,70.366 +15020,355.96,69.818 +15021,348.33,71.412 +15022,350.53,70.883 +15023,352.64,70.36 +15024,354.67,69.845 +15025,346.98,71.342 +15026,349.2,70.845 +15027,351.33,70.355 +15028,353.38,69.872 +15029,345.63,71.271 +15030,347.87,70.807 +15031,350.02,70.349 +15032,352.09,69.899 +15033,344.29,71.201 +15034,346.55,70.769 +15035,348.71,70.344 +15036,350.8,69.927 +15037,342.94,71.129 +15038,345.22,70.73 +15039,347.4,70.339 +15040,349.51,69.955 +15041,341.6,71.058 +15042,343.89,70.692 +15043,346.1,70.334 +15044,348.22,69.983 +15045,340.26,70.986 +15046,342.57,70.654 +15047,344.79,70.329 +15048,346.92,70.012 +15049,338.92,70.914 +15050,341.24,70.615 +15051,343.48,70.324 +15052,345.62,70.041 +15053,337.58,70.842 +15054,339.92,70.576 +15055,342.16,70.319 +15056,344.32,70.07 +15057,336.24,70.769 +15058,338.6,70.538 +15059,340.85,70.315 +15060,343.02,70.1 +15061,334.9,70.696 +15062,337.27,70.499 +15063,339.54,70.31 +15064,341.72,70.129 +15065,333.57,70.623 +15066,335.95,70.46 +15067,338.23,70.305 +15068,340.42,70.159 +15069,332.24,70.55 +15070,334.63,70.421 +15071,336.92,70.301 +15072,339.11,70.189 +15073,330.91,70.476 +15074,333.31,70.382 +15075,335.6,70.296 +15076,337.81,70.218 +15077,329.58,70.403 +15078,331.99,70.343 +15079,334.29,70.292 +15080,336.5,70.248 +15081,328.26,70.33 +15082,330.67,70.304 +15083,332.97,70.287 +15084,335.19,70.278 +15085,326.93,70.256 +15086,329.35,70.265 +15087,331.66,70.283 +15088,333.87,70.308 +15089,325.61,70.182 +15090,328.03,70.226 +15091,330.34,70.278 +15092,332.56,70.338 +15093,324.29,70.109 +15094,326.71,70.187 +15095,329.03,70.274 +15096,331.24,70.368 +15097,322.97,70.035 +15098,325.4,70.148 +15099,327.71,70.269 +15100,329.93,70.398 +15101,321.65,69.962 +15102,324.08,70.109 +15103,326.39,70.264 +15104,328.61,70.427 +15105,320.34,69.888 +15106,322.76,70.07 +15107,325.07,70.26 +15108,327.29,70.457 +15109,319.03,69.815 +15110,321.45,70.031 +15111,323.76,70.255 +15112,325.96,70.486 +15113,317.71,69.742 +15114,320.13,69.992 +15115,322.44,70.25 +15116,324.64,70.515 +15117,316.41,69.669 +15118,318.82,69.953 +15119,321.12,70.245 +15120,323.31,70.544 +15121,315.1,69.596 +15122,317.51,69.915 +15123,319.8,70.241 +15124,321.99,70.573 +15125,313.79,69.524 +15126,316.19,69.876 +15127,318.48,70.236 +15128,320.66,70.601 +15129,312.49,69.452 +15130,314.88,69.837 +15131,317.16,70.23 +15132,319.33,70.629 +15133,311.19,69.38 +15134,313.57,69.799 +15135,315.83,70.225 +15136,318,70.657 +15137,309.89,69.308 +15138,312.26,69.761 +15139,314.51,70.22 +15140,316.66,70.684 +15141,308.59,69.237 +15142,310.95,69.722 +15143,313.19,70.214 +15144,315.33,70.711 +15145,307.29,69.166 +15146,309.64,69.684 +15147,311.86,70.209 +15148,313.99,70.738 +15149,306,69.095 +15150,308.33,69.646 +15151,310.54,70.203 +15152,312.65,70.764 +15153,304.7,69.025 +15154,307.02,69.608 +15155,309.22,70.197 +15156,311.31,70.79 +15157,303.41,68.955 +15158,305.71,69.571 +15159,307.89,70.191 +15160,309.97,70.815 +15161,302.12,68.886 +15162,304.4,69.533 +15163,306.56,70.185 +15164,308.62,70.839 +15165,300.84,68.817 +15166,303.1,69.496 +15167,305.24,70.178 +15168,307.28,70.864 +15169,299.55,68.749 +15170,301.79,69.458 +15171,303.91,70.172 +15172,305.93,70.887 +15173,298.27,68.682 +15174,300.48,69.421 +15175,302.58,70.165 +15176,304.58,70.91 +15177,296.99,68.615 +15178,299.18,69.385 +15179,301.26,70.158 +15180,303.23,70.933 +15181,295.71,68.548 +15182,297.87,69.348 +15183,299.93,70.151 +15184,301.88,70.954 +15185,294.43,68.482 +15186,296.57,69.312 +15187,298.6,70.143 +15188,300.53,70.976 +15189,293.15,68.417 +15190,295.27,69.275 +15191,297.27,70.136 +15192,299.18,70.996 +15193,291.87,68.353 +15194,293.96,69.239 +15195,295.94,70.128 +15196,297.82,71.016 +15197,290.6,68.289 +15198,292.66,69.204 +15199,294.61,70.12 +15200,296.46,71.035 +15201,289.33,68.226 +15202,291.36,69.168 +15203,293.28,70.111 +15204,295.1,71.053 +15205,288.06,68.163 +15206,290.06,69.133 +15207,291.95,70.103 +15208,293.74,71.071 +15209,286.79,68.102 +15210,288.75,69.098 +15211,290.62,70.094 +15212,292.38,71.087 +15213,285.52,68.041 +15214,287.45,69.063 +15215,289.28,70.084 +15216,291.02,71.103 +15217,284.25,67.981 +15218,286.15,69.029 +15219,287.95,70.075 +15220,289.66,71.118 +15221,282.99,67.922 +15222,284.85,68.994 +15223,286.62,70.065 +15224,288.29,71.133 +15225,281.73,67.864 +15226,283.56,68.96 +15227,285.28,70.055 +15228,286.92,71.146 +15229,280.46,67.806 +15230,282.26,68.927 +15231,283.95,70.045 +15232,285.56,71.159 +15233,279.2,67.75 +15234,280.96,68.893 +15235,282.62,70.034 +15236,284.19,71.17 +15237,277.95,67.694 +15238,279.66,68.86 +15239,281.28,70.023 +15240,282.82,71.181 +15241,276.69,67.639 +15242,278.36,68.828 +15243,279.95,70.012 +15244,281.45,71.191 +15245,275.43,67.586 +15246,277.07,68.795 +15247,278.61,70 +15248,280.07,71.2 +15249,274.18,67.533 +15250,275.77,68.763 +15251,277.28,69.988 +15252,278.7,71.207 +15253,272.92,67.481 +15254,274.47,68.731 +15255,275.94,69.976 +15256,277.32,71.214 +15257,271.67,67.43 +15258,273.18,68.7 +15259,274.6,69.964 +15260,275.95,71.22 +15261,270.42,67.381 +15262,271.88,68.669 +15263,273.27,69.951 +15264,274.57,71.225 +15265,269.17,67.332 +15266,270.59,68.638 +15267,271.93,69.937 +15268,273.19,71.229 +15269,267.92,67.284 +15270,269.29,68.607 +15271,270.59,69.924 +15272,271.81,71.232 +15273,266.67,67.238 +15274,268,68.577 +15275,269.25,69.91 +15276,270.43,71.233 +15277,265.42,67.192 +15278,266.71,68.548 +15279,267.91,69.895 +15280,269.05,71.234 +15281,264.18,67.148 +15282,265.41,68.518 +15283,266.58,69.881 +15284,267.67,71.234 +15285,262.93,67.105 +15286,264.12,68.489 +15287,265.24,69.865 +15288,266.29,71.232 +15289,261.69,67.062 +15290,262.83,68.46 +15291,263.9,69.85 +15292,264.9,71.229 +15293,260.44,67.021 +15294,261.53,68.432 +15295,262.56,69.834 +15296,263.52,71.226 +15297,259.2,66.981 +15298,260.24,68.404 +15299,261.22,69.818 +15300,262.13,71.221 +15301,257.96,66.943 +15302,258.95,68.377 +15303,259.88,69.801 +15304,260.75,71.215 +15305,256.72,66.905 +15306,257.66,68.349 +15307,258.54,69.784 +15308,259.36,71.208 +15309,255.48,66.869 +15310,256.37,68.323 +15311,257.2,69.767 +15312,257.97,71.2 +15313,254.24,66.833 +15314,255.08,68.296 +15315,255.86,69.749 +15316,256.58,71.19 +15317,253,66.799 +15318,253.79,68.27 +15319,254.52,69.731 +15320,255.19,71.18 +15321,251.76,66.767 +15322,252.49,68.245 +15323,253.18,69.712 +15324,253.81,71.168 +15325,250.52,66.735 +15326,251.2,68.219 +15327,251.83,69.693 +15328,252.41,71.155 +15329,249.28,66.704 +15330,249.91,68.195 +15331,250.49,69.674 +15332,251.02,71.141 +15333,248.05,66.675 +15334,248.62,68.17 +15335,249.15,69.654 +15336,249.63,71.126 +15337,246.81,66.647 +15338,247.33,68.146 +15339,247.81,69.634 +15340,248.24,71.109 +15341,245.57,66.62 +15342,246.04,68.122 +15343,246.47,69.613 +15344,246.85,71.092 +15345,244.34,66.595 +15346,244.75,68.099 +15347,245.13,69.592 +15348,245.46,71.073 +15349,243.1,66.57 +15350,243.46,68.076 +15351,243.78,69.571 +15352,244.06,71.053 +15353,241.86,66.547 +15354,242.17,68.054 +15355,242.44,69.549 +15356,242.67,71.031 +15357,240.63,66.525 +15358,240.89,68.032 +15359,241.1,69.527 +15360,241.28,71.009 +15361,239.39,66.505 +15362,239.6,68.01 +15363,239.76,69.504 +15364,239.88,70.985 +15365,238.16,66.485 +15366,238.31,67.989 +15367,238.42,69.481 +15368,238.49,70.961 +15369,236.92,66.467 +15370,237.02,67.968 +15371,237.07,69.458 +15372,237.1,70.934 +15373,235.69,66.45 +15374,235.73,67.947 +15375,235.73,69.434 +15376,235.7,70.907 +15377,234.45,66.434 +15378,234.44,67.927 +15379,234.39,69.409 +15380,234.31,70.879 +15381,233.22,66.419 +15382,233.15,67.908 +15383,233.05,69.385 +15384,232.91,70.849 +15385,231.98,66.406 +15386,231.86,67.888 +15387,231.71,69.36 +15388,231.52,70.818 +15389,230.75,66.394 +15390,230.57,67.87 +15391,230.36,69.334 +15392,230.12,70.786 +15393,229.51,66.383 +15394,229.28,67.851 +15395,229.02,69.308 +15396,228.73,70.753 +15397,228.28,66.373 +15398,227.99,67.833 +15399,227.68,69.282 +15400,227.34,70.719 +15401,227.04,66.365 +15402,226.7,67.815 +15403,226.34,69.255 +15404,225.94,70.683 +15405,225.8,66.357 +15406,225.41,67.798 +15407,225,69.228 +15408,224.55,70.647 +15409,224.57,66.351 +15410,224.12,67.781 +15411,223.65,69.201 +15412,223.15,70.609 +15413,223.33,66.346 +15414,222.83,67.764 +15415,222.31,69.173 +15416,221.76,70.57 +15417,222.09,66.342 +15418,221.54,67.748 +15419,220.97,69.145 +15420,220.37,70.53 +15421,220.85,66.339 +15422,220.25,67.732 +15423,219.63,69.116 +15424,218.97,70.489 +15425,219.61,66.338 +15426,218.96,67.717 +15427,218.29,69.087 +15428,217.58,70.446 +15429,218.38,66.337 +15430,217.67,67.702 +15431,216.95,69.057 +15432,216.19,70.403 +15433,217.14,66.338 +15434,216.38,67.687 +15435,215.61,69.028 +15436,214.8,70.358 +15437,215.9,66.339 +15438,215.09,67.673 +15439,214.26,68.998 +15440,213.41,70.313 +15441,214.65,66.342 +15442,213.8,67.659 +15443,212.92,68.967 +15444,212.02,70.266 +15445,213.41,66.346 +15446,212.51,67.645 +15447,211.58,68.936 +15448,210.63,70.218 +15449,212.17,66.351 +15450,211.22,67.632 +15451,210.24,68.905 +15452,209.24,70.169 +15453,210.93,66.357 +15454,209.93,67.619 +15455,208.9,68.873 +15456,207.85,70.119 +15457,209.68,66.364 +15458,208.64,67.606 +15459,207.56,68.841 +15460,206.46,70.068 +15461,208.44,66.372 +15462,207.35,67.594 +15463,206.23,68.809 +15464,205.07,70.017 +15465,207.19,66.381 +15466,206.05,67.582 +15467,204.89,68.776 +15468,203.69,69.964 +15469,205.94,66.391 +15470,204.76,67.57 +15471,203.55,68.743 +15472,202.3,69.91 +15473,204.7,66.402 +15474,203.47,67.559 +15475,202.21,68.71 +15476,200.91,69.855 +15477,203.45,66.413 +15478,202.18,67.547 +15479,200.87,68.677 +15480,199.53,69.799 +15481,202.2,66.426 +15482,200.88,67.537 +15483,199.53,68.643 +15484,198.15,69.742 +15485,200.95,66.44 +15486,199.59,67.526 +15487,198.2,68.608 +15488,196.76,69.685 +15489,199.69,66.454 +15490,198.29,67.516 +15491,196.86,68.574 +15492,195.38,69.626 +15493,198.44,66.47 +15494,197,67.506 +15495,195.52,68.539 +15496,194,69.567 +15497,197.19,66.486 +15498,195.71,67.497 +15499,194.19,68.504 +15500,192.62,69.506 +15501,195.93,66.503 +15502,194.41,67.487 +15503,192.85,68.468 +15504,191.24,69.445 +15505,194.67,66.521 +15506,193.12,67.478 +15507,191.51,68.433 +15508,189.87,69.383 +15509,193.42,66.539 +15510,191.82,67.469 +15511,190.18,68.397 +15512,188.49,69.32 +15513,192.16,66.559 +15514,190.52,67.461 +15515,188.84,68.36 +15516,187.11,69.257 +15517,190.9,66.579 +15518,189.23,67.452 +15519,187.51,68.324 +15520,185.74,69.193 +15521,189.63,66.6 +15522,187.93,67.444 +15523,186.18,68.287 +15524,184.37,69.128 +15525,188.37,66.621 +15526,186.63,67.436 +15527,184.84,68.25 +15528,183,69.062 +15529,187.11,66.643 +15530,185.33,67.429 +15531,183.51,68.213 +15532,181.63,68.995 +15533,185.84,66.666 +15534,184.04,67.421 +15535,182.18,68.175 +15536,180.26,68.928 +15537,184.57,66.69 +15538,182.74,67.414 +15539,180.85,68.138 +15540,178.89,68.861 +15541,183.3,66.714 +15542,181.44,67.407 +15543,179.51,68.1 +15544,177.52,68.792 +15545,182.03,66.738 +15546,180.14,67.4 +15547,178.18,68.062 +15548,176.16,68.723 +15549,180.76,66.763 +15550,178.84,67.393 +15551,176.85,68.024 +15552,174.8,68.654 +15553,179.49,66.789 +15554,177.54,67.386 +15555,175.52,67.985 +15556,173.43,68.583 +15557,178.21,66.815 +15558,176.24,67.38 +15559,174.19,67.946 +15560,172.07,68.513 +15561,176.94,66.841 +15562,174.93,67.374 +15563,172.86,67.908 +15564,170.72,68.442 +15565,175.66,66.868 +15566,173.63,67.368 +15567,171.54,67.869 +15568,169.36,68.37 +15569,174.38,66.895 +15570,172.33,67.362 +15571,170.21,67.829 +15572,168,68.298 +15573,173.1,66.923 +15574,171.03,67.356 +15575,168.88,67.79 +15576,166.65,68.226 +15577,171.82,66.951 +15578,169.72,67.35 +15579,167.55,67.751 +15580,165.3,68.153 +15581,170.53,66.979 +15582,168.42,67.344 +15583,166.23,67.711 +15584,163.95,68.079 +15585,169.25,67.008 +15586,167.11,67.339 +15587,164.9,67.672 +15588,162.6,68.006 +15589,167.96,67.037 +15590,165.81,67.333 +15591,163.58,67.632 +15592,161.25,67.932 +15593,166.67,67.066 +15594,164.5,67.328 +15595,162.25,67.592 +15596,159.9,67.858 +15597,165.38,67.095 +15598,163.2,67.322 +15599,160.93,67.552 +15600,158.56,67.783 +15601,164.08,67.125 +15602,161.89,67.317 +15603,159.6,67.512 +15604,157.22,67.709 +15605,162.79,67.154 +15606,160.58,67.312 +15607,158.28,67.472 +15608,155.88,67.634 +15609,161.49,67.184 +15610,159.27,67.307 +15611,156.96,67.432 +15612,154.54,67.559 +15613,160.2,67.214 +15614,157.96,67.302 +15615,155.64,67.391 +15616,153.2,67.483 +15617,158.9,67.244 +15618,156.65,67.296 +15619,154.32,67.351 +15620,151.87,67.408 +15621,157.6,67.274 +15622,155.34,67.291 +15623,153,67.311 +15624,150.54,67.332 +15625,156.29,67.304 +15626,154.03,67.286 +15627,151.68,67.27 +15628,149.21,67.257 +15629,154.99,67.334 +15630,152.72,67.281 +15631,150.36,67.23 +15632,147.88,67.181 +15633,153.68,67.364 +15634,151.41,67.276 +15635,149.04,67.19 +15636,146.55,67.106 +15637,152.38,67.394 +15638,150.1,67.271 +15639,147.72,67.149 +15640,145.22,67.03 +15641,151.07,67.423 +15642,148.79,67.265 +15643,146.4,67.109 +15644,143.9,66.955 +15645,149.75,67.453 +15646,147.47,67.26 +15647,145.09,67.069 +15648,142.58,66.879 +15649,148.44,67.482 +15650,146.16,67.255 +15651,143.77,67.029 +15652,141.26,66.804 +15653,147.13,67.512 +15654,144.85,67.249 +15655,142.46,66.988 +15656,139.94,66.729 +15657,145.81,67.541 +15658,143.53,67.244 +15659,141.14,66.948 +15660,138.63,66.654 +15661,144.49,67.569 +15662,142.22,67.238 +15663,139.83,66.908 +15664,137.31,66.579 +15665,143.17,67.598 +15666,140.9,67.233 +15667,138.51,66.868 +15668,136,66.504 +15669,141.85,67.626 +15670,139.58,67.227 +15671,137.2,66.828 +15672,134.69,66.43 +15673,140.53,67.654 +15674,138.27,67.221 +15675,135.89,66.788 +15676,133.38,66.356 +15677,139.2,67.681 +15678,136.95,67.215 +15679,134.58,66.748 +15680,132.08,66.282 +15681,137.87,67.708 +15682,135.63,67.209 +15683,133.27,66.709 +15684,130.77,66.208 +15685,136.55,67.735 +15686,134.31,67.202 +15687,131.96,66.669 +15688,129.47,66.135 +15689,135.22,67.761 +15690,132.99,67.196 +15691,130.65,66.629 +15692,128.17,66.062 +15693,133.88,67.787 +15694,131.67,67.189 +15695,129.34,66.59 +15696,126.87,65.99 +15697,132.55,67.812 +15698,130.35,67.183 +15699,128.03,66.551 +15700,125.57,65.918 +15701,131.22,67.837 +15702,129.03,67.176 +15703,126.72,66.512 +15704,124.28,65.847 +15705,129.88,67.862 +15706,127.71,67.169 +15707,125.42,66.473 +15708,122.99,65.776 +15709,128.54,67.885 +15710,126.38,67.161 +15711,124.11,66.434 +15712,121.7,65.705 +15713,127.2,67.908 +15714,125.06,67.154 +15715,122.8,66.396 +15716,120.41,65.635 +15717,125.86,67.931 +15718,123.74,67.146 +15719,121.5,66.358 +15720,119.12,65.566 +15721,124.52,67.953 +15722,122.41,67.138 +15723,120.19,66.319 +15724,117.84,65.497 +15725,123.17,67.974 +15726,121.09,67.13 +15727,118.89,66.281 +15728,116.55,65.429 +15729,121.82,67.994 +15730,119.76,67.122 +15731,117.59,66.244 +15732,115.27,65.362 +15733,120.48,68.014 +15734,118.44,67.113 +15735,116.28,66.206 +15736,113.99,65.295 +15737,119.13,68.033 +15738,117.11,67.104 +15739,114.98,66.169 +15740,112.71,65.229 +15741,117.78,68.052 +15742,115.79,67.095 +15743,113.68,66.132 +15744,111.44,65.163 +15745,116.42,68.069 +15746,114.46,67.086 +15747,112.38,66.095 +15748,110.16,65.099 +15749,115.07,68.086 +15750,113.13,67.076 +15751,111.08,66.058 +15752,108.89,65.035 +15753,113.71,68.102 +15754,111.8,67.066 +15755,109.78,66.022 +15756,107.62,64.972 +15757,112.36,68.117 +15758,110.47,67.056 +15759,108.48,65.986 +15760,106.35,64.91 +15761,111,68.131 +15762,109.14,67.045 +15763,107.18,65.95 +15764,105.08,64.848 +15765,109.64,68.145 +15766,107.82,67.034 +15767,105.88,65.915 +15768,103.82,64.788 +15769,108.28,68.157 +15770,106.49,67.023 +15771,104.58,65.88 +15772,102.55,64.728 +15773,106.91,68.169 +15774,105.15,67.012 +15775,103.28,65.845 +15776,101.29,64.669 +15777,105.55,68.179 +15778,103.82,67 +15779,101.99,65.81 +15780,100.03,64.611 +15781,104.19,68.189 +15782,102.49,66.988 +15783,100.69,65.776 +15784,98.77,64.554 +15785,102.82,68.198 +15786,101.16,66.975 +15787,99.396,65.742 +15788,97.512,64.498 +15789,101.45,68.205 +15790,99.828,66.963 +15791,98.101,65.708 +15792,96.255,64.443 +15793,100.08,68.212 +15794,98.495,66.949 +15795,96.806,65.675 +15796,95,64.389 +15797,98.712,68.218 +15798,97.162,66.936 +15799,95.511,65.642 +15800,93.746,64.336 +15801,97.341,68.222 +15802,95.829,66.922 +15803,94.217,65.609 +15804,92.494,64.285 +15805,95.968,68.226 +15806,94.495,66.908 +15807,92.924,65.577 +15808,91.243,64.234 +15809,94.594,68.229 +15810,93.16,66.893 +15811,91.631,65.545 +15812,89.993,64.184 +15813,93.22,68.23 +15814,91.826,66.878 +15815,90.338,65.513 +15816,88.745,64.135 +15817,91.844,68.23 +15818,90.491,66.863 +15819,89.046,65.482 +15820,87.498,64.087 +15821,90.467,68.23 +15822,89.155,66.847 +15823,87.754,65.451 +15824,86.252,64.041 +15825,89.089,68.228 +15826,87.82,66.831 +15827,86.462,65.42 +15828,85.007,63.995 +15829,87.71,68.225 +15830,86.483,66.815 +15831,85.171,65.39 +15832,83.763,63.951 +15833,86.33,68.221 +15834,85.147,66.798 +15835,83.881,65.36 +15836,82.521,63.908 +15837,84.949,68.215 +15838,83.81,66.781 +15839,82.59,65.331 +15840,81.279,63.866 +15841,83.567,68.209 +15842,82.473,66.763 +15843,81.3,65.302 +15844,80.038,63.825 +15845,82.184,68.201 +15846,81.136,66.745 +15847,80.01,65.273 +15848,78.799,63.786 +15849,80.801,68.192 +15850,79.799,66.727 +15851,78.721,65.244 +15852,77.56,63.747 +15853,79.416,68.182 +15854,78.461,66.708 +15855,77.432,65.217 +15856,76.322,63.71 +15857,78.031,68.171 +15858,77.123,66.688 +15859,76.143,65.189 +15860,75.085,63.674 +15861,76.645,68.159 +15862,75.784,66.669 +15863,74.855,65.162 +15864,73.849,63.639 +15865,75.259,68.145 +15866,74.446,66.649 +15867,73.566,65.135 +15868,72.613,63.605 +15869,73.871,68.13 +15870,73.107,66.628 +15871,72.278,65.109 +15872,71.379,63.573 +15873,72.483,68.114 +15874,71.768,66.607 +15875,70.991,65.083 +15876,70.145,63.542 +15877,71.095,68.097 +15878,70.429,66.586 +15879,69.703,65.057 +15880,68.911,63.512 +15881,69.705,68.079 +15882,69.09,66.564 +15883,68.416,65.032 +15884,67.678,63.483 +15885,68.316,68.059 +15886,67.75,66.542 +15887,67.129,65.007 +15888,66.446,63.456 +15889,66.925,68.038 +15890,66.411,66.519 +15891,65.842,64.983 +15892,65.214,63.43 +15893,65.535,68.016 +15894,65.071,66.496 +15895,64.555,64.959 +15896,63.982,63.405 +15897,64.143,67.992 +15898,63.731,66.473 +15899,63.268,64.935 +15900,62.751,63.381 +15901,62.752,67.968 +15902,62.391,66.449 +15903,61.982,64.912 +15904,61.521,63.359 +15905,61.36,67.942 +15906,61.051,66.424 +15907,60.696,64.889 +15908,60.29,63.338 +15909,59.967,67.915 +15910,59.711,66.4 +15911,59.409,64.867 +15912,59.06,63.318 +15913,58.575,67.886 +15914,58.37,66.375 +15915,58.123,64.845 +15916,57.83,63.299 +15917,57.182,67.857 +15918,57.03,66.349 +15919,56.837,64.824 +15920,56.601,63.282 +15921,55.788,67.826 +15922,55.69,66.323 +15923,55.551,64.802 +15924,55.371,63.266 +15925,54.395,67.794 +15926,54.349,66.296 +15927,54.265,64.782 +15928,54.141,63.251 +15929,53.002,67.761 +15930,53.009,66.27 +15931,52.98,64.761 +15932,52.912,63.237 +15933,51.608,67.726 +15934,51.668,66.242 +15935,51.694,64.741 +15936,51.682,63.225 +15937,50.214,67.69 +15938,50.328,66.215 +15939,50.408,64.722 +15940,50.453,63.214 +15941,48.82,67.653 +15942,48.987,66.186 +15943,49.122,64.703 +15944,49.223,63.204 +15945,47.427,67.615 +15946,47.647,66.158 +15947,47.836,64.684 +15948,47.993,63.195 +15949,46.033,67.576 +15950,46.307,66.129 +15951,46.55,64.666 +15952,46.763,63.187 +15953,44.639,67.535 +15954,44.966,66.1 +15955,45.265,64.648 +15956,45.533,63.181 +15957,43.246,67.494 +15958,43.626,66.07 +15959,43.979,64.63 +15960,44.302,63.176 +15961,41.852,67.451 +15962,42.286,66.04 +15963,42.693,64.613 +15964,43.071,63.172 +15965,40.459,67.407 +15966,40.946,66.009 +15967,41.407,64.596 +15968,41.84,63.169 +15969,39.066,67.361 +15970,39.606,65.978 +15971,40.12,64.58 +15972,40.608,63.167 +15973,37.673,67.315 +15974,38.266,65.947 +15975,38.834,64.563 +15976,39.376,63.167 +15977,36.28,67.268 +15978,36.927,65.915 +15979,37.548,64.548 +15980,38.144,63.167 +15981,34.888,67.219 +15982,35.587,65.883 +15983,36.261,64.532 +15984,36.91,63.169 +15985,33.497,67.169 +15986,34.248,65.85 +15987,34.974,64.517 +15988,35.677,63.172 +15989,32.105,67.118 +15990,32.909,65.817 +15991,33.687,64.503 +15992,34.442,63.176 +15993,30.714,67.066 +15994,31.57,65.784 +15995,32.4,64.488 +15996,33.207,63.181 +15997,29.324,67.013 +15998,30.231,65.75 +15999,31.113,64.474 +16000,31.972,63.187 +16001,27.934,66.959 +16002,28.892,65.716 +16003,29.826,64.461 +16004,30.735,63.194 +16005,26.545,66.904 +16006,27.554,65.682 +16007,28.538,64.448 +16008,29.498,63.202 +16009,25.156,66.848 +16010,26.216,65.647 +16011,27.25,64.435 +16012,28.26,63.211 +16013,23.768,66.791 +16014,24.878,65.612 +16015,25.962,64.422 +16016,27.021,63.221 +16017,22.381,66.733 +16018,23.541,65.577 +16019,24.673,64.41 +16020,25.781,63.233 +16021,20.994,66.674 +16022,22.203,65.541 +16023,23.385,64.398 +16024,24.54,63.245 +16025,19.608,66.614 +16026,20.867,65.505 +16027,22.096,64.386 +16028,23.299,63.258 +16029,18.223,66.553 +16030,19.53,65.469 +16031,20.807,64.374 +16032,22.056,63.271 +16033,16.839,66.491 +16034,18.194,65.432 +16035,19.517,64.363 +16036,20.812,63.286 +16037,15.455,66.428 +16038,16.858,65.395 +16039,18.227,64.352 +16040,19.567,63.302 +16041,14.073,66.364 +16042,15.522,65.358 +16043,16.937,64.342 +16044,18.321,63.318 +16045,12.691,66.299 +16046,14.187,65.32 +16047,15.646,64.331 +16048,17.074,63.336 +16049,11.311,66.234 +16050,12.852,65.282 +16051,14.355,64.321 +16052,15.826,63.354 +16053,9.9313,66.168 +16054,11.517,65.244 +16055,13.064,64.312 +16056,14.577,63.373 +16057,8.5528,66.101 +16058,10.183,65.205 +16059,11.773,64.302 +16060,13.326,63.392 +16061,7.1755,66.033 +16062,8.8494,65.167 +16063,10.481,64.293 +16064,12.074,63.413 +16065,5.7993,65.964 +16066,7.5161,65.128 +16067,9.1882,64.284 +16068,10.821,63.434 +16069,4.4242,65.895 +16070,6.1832,65.088 +16071,7.8954,64.275 +16072,9.5663,63.456 +16073,3.0503,65.825 +16074,4.8507,65.049 +16075,6.6021,64.266 +16076,8.3105,63.478 +16077,1.6777,65.754 +16078,3.5187,65.009 +16079,5.3085,64.258 +16080,7.0533,63.501 +16081,0.30634,65.682 +16082,2.1872,64.969 +16083,4.0144,64.249 +16084,5.7947,63.525 +16085,358.94,65.61 +16086,0.85612,64.929 +16087,2.7199,64.241 +16088,4.5346,63.549 +16089,357.57,65.538 +16090,359.53,64.889 +16091,1.4249,64.234 +16092,3.2732,63.574 +16093,356.2,65.464 +16094,358.2,64.848 +16095,0.12951,64.226 +16096,2.0102,63.6 +16097,354.83,65.391 +16098,356.87,64.807 +16099,358.83,64.218 +16100,0.74583,63.626 +16101,353.47,65.316 +16102,355.54,64.766 +16103,357.54,64.211 +16104,359.48,63.652 +16105,352.11,65.241 +16106,354.21,64.725 +16107,356.24,64.204 +16108,358.21,63.679 +16109,350.75,65.166 +16110,352.88,64.684 +16111,354.94,64.197 +16112,356.94,63.706 +16113,349.39,65.09 +16114,351.55,64.642 +16115,353.65,64.19 +16116,355.67,63.734 +16117,348.03,65.014 +16118,350.23,64.601 +16119,352.35,64.183 +16120,354.4,63.762 +16121,346.67,64.937 +16122,348.9,64.559 +16123,351.05,64.176 +16124,353.13,63.79 +16125,345.31,64.86 +16126,347.57,64.517 +16127,349.75,64.169 +16128,351.85,63.819 +16129,343.96,64.783 +16130,346.25,64.475 +16131,348.45,64.163 +16132,350.57,63.848 +16133,342.61,64.705 +16134,344.92,64.433 +16135,347.15,64.156 +16136,349.3,63.877 +16137,341.26,64.627 +16138,343.6,64.39 +16139,345.85,64.15 +16140,348.02,63.906 +16141,339.91,64.549 +16142,342.28,64.348 +16143,344.55,64.143 +16144,346.73,63.936 +16145,338.56,64.47 +16146,340.95,64.306 +16147,343.24,64.137 +16148,345.45,63.966 +16149,337.22,64.391 +16150,339.63,64.263 +16151,341.94,64.131 +16152,344.16,63.996 +16153,335.87,64.312 +16154,338.31,64.221 +16155,340.64,64.125 +16156,342.88,64.026 +16157,334.53,64.233 +16158,336.99,64.178 +16159,339.33,64.118 +16160,341.59,64.056 +16161,333.19,64.154 +16162,335.67,64.135 +16163,338.03,64.112 +16164,340.3,64.086 +16165,331.86,64.075 +16166,334.35,64.093 +16167,336.73,64.106 +16168,339.01,64.116 +16169,330.52,63.995 +16170,333.03,64.05 +16171,335.42,64.1 +16172,337.71,64.146 +16173,329.18,63.916 +16174,331.71,64.007 +16175,334.11,64.094 +16176,336.42,64.176 +16177,327.85,63.837 +16178,330.39,63.964 +16179,332.81,64.087 +16180,335.12,64.206 +16181,326.52,63.757 +16182,329.07,63.922 +16183,331.5,64.081 +16184,333.82,64.236 +16185,325.19,63.678 +16186,327.76,63.879 +16187,330.19,64.075 +16188,332.52,64.266 +16189,323.87,63.599 +16190,326.44,63.836 +16191,328.88,64.068 +16192,331.22,64.296 +16193,322.54,63.52 +16194,325.13,63.794 +16195,327.57,64.062 +16196,329.91,64.325 +16197,321.22,63.441 +16198,323.81,63.751 +16199,326.27,64.055 +16200,328.6,64.355 +16201,319.9,63.362 +16202,322.5,63.708 +16203,324.96,64.049 +16204,327.3,64.384 +16205,318.58,63.283 +16206,321.18,63.666 +16207,323.64,64.042 +16208,325.99,64.412 +16209,317.26,63.205 +16210,319.87,63.623 +16211,322.33,64.035 +16212,324.68,64.441 +16213,315.95,63.127 +16214,318.56,63.581 +16215,321.02,64.028 +16216,323.36,64.469 +16217,314.64,63.049 +16218,317.25,63.539 +16219,319.71,64.021 +16220,322.05,64.497 +16221,313.33,62.971 +16222,315.94,63.496 +16223,318.4,64.014 +16224,320.73,64.524 +16225,312.02,62.894 +16226,314.63,63.454 +16227,317.08,64.006 +16228,319.41,64.551 +16229,310.71,62.818 +16230,313.32,63.412 +16231,315.77,63.999 +16232,318.09,64.578 +16233,309.41,62.741 +16234,312.01,63.371 +16235,314.45,63.991 +16236,316.77,64.604 +16237,308.1,62.665 +16238,310.7,63.329 +16239,313.14,63.983 +16240,315.45,64.629 +16241,306.8,62.59 +16242,309.39,63.287 +16243,311.82,63.975 +16244,314.12,64.654 +16245,305.51,62.515 +16246,308.08,63.246 +16247,310.51,63.967 +16248,312.79,64.679 +16249,304.21,62.44 +16250,306.78,63.205 +16251,309.19,63.959 +16252,311.46,64.703 +16253,302.91,62.367 +16254,305.47,63.164 +16255,307.87,63.95 +16256,310.13,64.726 +16257,301.62,62.293 +16258,304.17,63.123 +16259,306.55,63.941 +16260,308.8,64.749 +16261,300.33,62.221 +16262,302.86,63.082 +16263,305.23,63.932 +16264,307.47,64.771 +16265,299.04,62.148 +16266,301.56,63.042 +16267,303.91,63.923 +16268,306.13,64.792 +16269,297.76,62.077 +16270,300.26,63.002 +16271,302.59,63.914 +16272,304.79,64.813 +16273,296.47,62.006 +16274,298.95,62.962 +16275,301.27,63.904 +16276,303.45,64.833 +16277,295.19,61.936 +16278,297.65,62.922 +16279,299.95,63.894 +16280,302.11,64.852 +16281,293.91,61.867 +16282,296.35,62.882 +16283,298.63,63.883 +16284,300.77,64.871 +16285,292.63,61.798 +16286,295.05,62.843 +16287,297.31,63.873 +16288,299.43,64.889 +16289,291.35,61.731 +16290,293.75,62.804 +16291,295.99,63.862 +16292,298.08,64.905 +16293,290.08,61.664 +16294,292.45,62.765 +16295,294.66,63.851 +16296,296.74,64.921 +16297,288.81,61.598 +16298,291.15,62.726 +16299,293.34,63.839 +16300,295.39,64.937 +16301,287.53,61.532 +16302,289.85,62.688 +16303,292.01,63.828 +16304,294.04,64.951 +16305,286.27,61.468 +16306,288.56,62.65 +16307,290.69,63.816 +16308,292.69,64.964 +16309,285,61.405 +16310,287.26,62.612 +16311,289.36,63.803 +16312,291.33,64.977 +16313,283.73,61.342 +16314,285.96,62.575 +16315,288.04,63.79 +16316,289.98,64.988 +16317,282.47,61.28 +16318,284.67,62.538 +16319,286.71,63.777 +16320,288.62,64.999 +16321,281.21,61.22 +16322,283.37,62.501 +16323,285.39,63.764 +16324,287.27,65.008 +16325,279.95,61.16 +16326,282.08,62.465 +16327,284.06,63.75 +16328,285.91,65.017 +16329,278.69,61.102 +16330,280.78,62.429 +16331,282.73,63.736 +16332,284.55,65.025 +16333,277.43,61.044 +16334,279.49,62.393 +16335,281.4,63.722 +16336,283.19,65.031 +16337,276.17,60.987 +16338,278.2,62.357 +16339,280.07,63.707 +16340,281.82,65.037 +16341,274.92,60.932 +16342,276.91,62.322 +16343,278.75,63.692 +16344,280.46,65.041 +16345,273.67,60.877 +16346,275.61,62.287 +16347,277.42,63.676 +16348,279.09,65.044 +16349,272.42,60.824 +16350,274.32,62.253 +16351,276.09,63.66 +16352,277.73,65.047 +16353,271.17,60.772 +16354,273.03,62.219 +16355,274.76,63.644 +16356,276.36,65.048 +16357,269.92,60.721 +16358,271.74,62.185 +16359,273.43,63.627 +16360,274.99,65.048 +16361,268.67,60.671 +16362,270.45,62.152 +16363,272.09,63.61 +16364,273.62,65.046 +16365,267.43,60.622 +16366,269.16,62.119 +16367,270.76,63.593 +16368,272.25,65.044 +16369,266.18,60.575 +16370,267.87,62.086 +16371,269.43,63.575 +16372,270.88,65.041 +16373,264.94,60.528 +16374,266.58,62.054 +16375,268.1,63.557 +16376,269.5,65.036 +16377,263.7,60.483 +16378,265.3,62.022 +16379,266.77,63.538 +16380,268.13,65.03 +16381,262.46,60.439 +16382,264.01,61.991 +16383,265.43,63.519 +16384,266.75,65.023 +16385,261.22,60.396 +16386,262.72,61.96 +16387,264.1,63.499 +16388,265.37,65.015 +16389,259.99,60.355 +16390,261.43,61.929 +16391,262.77,63.479 +16392,264,65.005 +16393,258.75,60.315 +16394,260.15,61.899 +16395,261.43,63.459 +16396,262.62,64.994 +16397,257.51,60.276 +16398,258.86,61.869 +16399,260.1,63.438 +16400,261.24,64.983 +16401,256.28,60.238 +16402,257.57,61.839 +16403,258.76,63.417 +16404,259.86,64.969 +16405,255.05,60.201 +16406,256.29,61.81 +16407,257.43,63.395 +16408,258.48,64.955 +16409,253.81,60.166 +16410,255,61.782 +16411,256.09,63.373 +16412,257.09,64.939 +16413,252.58,60.132 +16414,253.72,61.754 +16415,254.76,63.35 +16416,255.71,64.922 +16417,251.35,60.1 +16418,252.43,61.726 +16419,253.42,63.327 +16420,254.33,64.904 +16421,250.12,60.068 +16422,251.15,61.698 +16423,252.09,63.304 +16424,252.94,64.884 +16425,248.89,60.038 +16426,249.87,61.671 +16427,250.75,63.28 +16428,251.56,64.863 +16429,247.67,60.01 +16430,248.58,61.645 +16431,249.41,63.255 +16432,250.17,64.841 +16433,246.44,59.982 +16434,247.3,61.619 +16435,248.08,63.231 +16436,248.78,64.818 +16437,245.21,59.956 +16438,246.02,61.593 +16439,246.74,63.205 +16440,247.4,64.793 +16441,243.99,59.931 +16442,244.73,61.568 +16443,245.4,63.18 +16444,246.01,64.767 +16445,242.76,59.908 +16446,243.45,61.543 +16447,244.07,63.154 +16448,244.62,64.74 +16449,241.54,59.886 +16450,242.17,61.519 +16451,242.73,63.127 +16452,243.23,64.711 +16453,240.31,59.865 +16454,240.88,61.494 +16455,241.39,63.1 +16456,241.84,64.681 +16457,239.09,59.846 +16458,239.6,61.471 +16459,240.06,63.072 +16460,240.45,64.65 +16461,237.86,59.827 +16462,238.32,61.448 +16463,238.72,63.045 +16464,239.06,64.617 +16465,236.64,59.81 +16466,237.04,61.425 +16467,237.38,63.016 +16468,237.67,64.583 +16469,235.41,59.795 +16470,235.76,61.403 +16471,236.04,62.987 +16472,236.28,64.548 +16473,234.19,59.78 +16474,234.47,61.381 +16475,234.71,62.958 +16476,234.89,64.512 +16477,232.97,59.767 +16478,233.19,61.359 +16479,233.37,62.928 +16480,233.5,64.474 +16481,231.75,59.756 +16482,231.91,61.338 +16483,232.03,62.898 +16484,232.11,64.435 +16485,230.52,59.745 +16486,230.63,61.317 +16487,230.69,62.868 +16488,230.72,64.395 +16489,229.3,59.736 +16490,229.35,61.297 +16491,229.35,62.837 +16492,229.32,64.354 +16493,228.08,59.728 +16494,228.07,61.277 +16495,228.02,62.805 +16496,227.93,64.311 +16497,226.85,59.721 +16498,226.78,61.258 +16499,226.68,62.773 +16500,226.54,64.267 +16501,225.63,59.716 +16502,225.5,61.239 +16503,225.34,62.741 +16504,225.15,64.222 +16505,224.41,59.712 +16506,224.22,61.22 +16507,224,62.708 +16508,223.76,64.175 +16509,223.18,59.709 +16510,222.94,61.202 +16511,222.67,62.675 +16512,222.36,64.128 +16513,221.96,59.707 +16514,221.66,61.184 +16515,221.33,62.642 +16516,220.97,64.079 +16517,220.73,59.706 +16518,220.38,61.166 +16519,219.99,62.608 +16520,219.58,64.029 +16521,219.51,59.707 +16522,219.1,61.149 +16523,218.65,62.573 +16524,218.19,63.977 +16525,218.29,59.708 +16526,217.81,61.132 +16527,217.32,62.538 +16528,216.8,63.925 +16529,217.06,59.711 +16530,216.53,61.116 +16531,215.98,62.503 +16532,215.4,63.871 +16533,215.83,59.715 +16534,215.25,61.1 +16535,214.64,62.468 +16536,214.01,63.816 +16537,214.61,59.721 +16538,213.97,61.084 +16539,213.31,62.432 +16540,212.62,63.76 +16541,213.38,59.727 +16542,212.69,61.069 +16543,211.97,62.395 +16544,211.23,63.703 +16545,212.15,59.734 +16546,211.4,61.054 +16547,210.63,62.358 +16548,209.84,63.645 +16549,210.92,59.742 +16550,210.12,61.04 +16551,209.3,62.321 +16552,208.45,63.586 +16553,209.69,59.752 +16554,208.84,61.025 +16555,207.96,62.284 +16556,207.06,63.526 +16557,208.46,59.762 +16558,207.55,61.011 +16559,206.62,62.246 +16560,205.68,63.464 +16561,207.23,59.774 +16562,206.27,60.998 +16563,205.29,62.208 +16564,204.29,63.402 +16565,206,59.786 +16566,204.99,60.985 +16567,203.95,62.169 +16568,202.9,63.338 +16569,204.77,59.8 +16570,203.7,60.972 +16571,202.62,62.13 +16572,201.51,63.274 +16573,203.54,59.814 +16574,202.42,60.959 +16575,201.28,62.091 +16576,200.13,63.208 +16577,202.3,59.829 +16578,201.14,60.947 +16579,199.95,62.051 +16580,198.74,63.142 +16581,201.07,59.846 +16582,199.85,60.935 +16583,198.62,62.011 +16584,197.36,63.074 +16585,199.83,59.863 +16586,198.57,60.923 +16587,197.28,61.971 +16588,195.97,63.006 +16589,198.59,59.881 +16590,197.28,60.911 +16591,195.95,61.93 +16592,194.59,62.937 +16593,197.35,59.9 +16594,196,60.9 +16595,194.61,61.89 +16596,193.21,62.866 +16597,196.11,59.919 +16598,194.71,60.889 +16599,193.28,61.848 +16600,191.83,62.795 +16601,194.87,59.94 +16602,193.42,60.878 +16603,191.95,61.807 +16604,190.45,62.724 +16605,193.63,59.961 +16606,192.14,60.868 +16607,190.62,61.765 +16608,189.07,62.651 +16609,192.39,59.983 +16610,190.85,60.858 +16611,189.29,61.723 +16612,187.69,62.577 +16613,191.14,60.005 +16614,189.56,60.848 +16615,187.95,61.681 +16616,186.31,62.503 +16617,189.9,60.028 +16618,188.28,60.838 +16619,186.62,61.638 +16620,184.93,62.428 +16621,188.65,60.052 +16622,186.99,60.828 +16623,185.29,61.596 +16624,183.56,62.352 +16625,187.4,60.077 +16626,185.7,60.819 +16627,183.96,61.553 +16628,182.18,62.276 +16629,186.15,60.102 +16630,184.41,60.81 +16631,182.63,61.509 +16632,180.81,62.199 +16633,184.9,60.128 +16634,183.12,60.801 +16635,181.3,61.466 +16636,179.44,62.121 +16637,183.65,60.154 +16638,181.83,60.792 +16639,179.98,61.422 +16640,178.07,62.042 +16641,182.39,60.181 +16642,180.54,60.783 +16643,178.65,61.378 +16644,176.7,61.963 +16645,181.14,60.208 +16646,179.25,60.775 +16647,177.32,61.334 +16648,175.33,61.884 +16649,179.88,60.236 +16650,177.96,60.767 +16651,175.99,61.29 +16652,173.97,61.804 +16653,178.62,60.264 +16654,176.67,60.758 +16655,174.67,61.245 +16656,172.6,61.723 +16657,177.36,60.293 +16658,175.38,60.75 +16659,173.34,61.201 +16660,171.24,61.642 +16661,176.1,60.322 +16662,174.09,60.742 +16663,172.01,61.156 +16664,169.88,61.56 +16665,174.84,60.351 +16666,172.79,60.735 +16667,170.69,61.111 +16668,168.52,61.478 +16669,173.57,60.381 +16670,171.5,60.727 +16671,169.36,61.066 +16672,167.16,61.396 +16673,172.31,60.411 +16674,170.21,60.719 +16675,168.04,61.021 +16676,165.8,61.313 +16677,171.04,60.441 +16678,168.91,60.712 +16679,166.72,60.975 +16680,164.44,61.23 +16681,169.77,60.471 +16682,167.62,60.704 +16683,165.39,60.93 +16684,163.09,61.146 +16685,168.5,60.502 +16686,166.32,60.697 +16687,164.07,60.884 +16688,161.74,61.063 +16689,167.22,60.532 +16690,165.03,60.689 +16691,162.75,60.839 +16692,160.39,60.979 +16693,165.95,60.563 +16694,163.73,60.682 +16695,161.43,60.793 +16696,159.04,60.894 +16697,164.67,60.594 +16698,162.43,60.675 +16699,160.11,60.747 +16700,157.69,60.81 +16701,163.39,60.625 +16702,161.13,60.667 +16703,158.79,60.702 +16704,156.34,60.726 +16705,162.11,60.656 +16706,159.84,60.66 +16707,157.47,60.656 +16708,155,60.641 +16709,160.83,60.687 +16710,158.54,60.653 +16711,156.15,60.61 +16712,153.66,60.556 +16713,159.55,60.719 +16714,157.24,60.646 +16715,154.83,60.564 +16716,152.32,60.471 +16717,158.26,60.75 +16718,155.94,60.638 +16719,153.52,60.518 +16720,150.98,60.386 +16721,156.97,60.781 +16722,154.64,60.631 +16723,152.2,60.472 +16724,149.64,60.301 +16725,155.68,60.811 +16726,153.34,60.624 +16727,150.88,60.426 +16728,148.31,60.217 +16729,154.39,60.842 +16730,152.04,60.616 +16731,149.57,60.38 +16732,146.97,60.132 +16733,153.1,60.873 +16734,150.73,60.609 +16735,148.25,60.334 +16736,145.64,60.047 +16737,151.81,60.903 +16738,149.43,60.601 +16739,146.94,60.288 +16740,144.31,59.962 +16741,150.51,60.933 +16742,148.13,60.594 +16743,145.63,60.243 +16744,142.99,59.878 +16745,149.21,60.963 +16746,146.82,60.586 +16747,144.31,60.197 +16748,141.66,59.794 +16749,147.91,60.992 +16750,145.52,60.578 +16751,143,60.151 +16752,140.34,59.71 +16753,146.61,61.022 +16754,144.21,60.57 +16755,141.69,60.105 +16756,139.02,59.626 +16757,145.31,61.05 +16758,142.91,60.562 +16759,140.38,60.06 +16760,137.7,59.542 +16761,144,61.079 +16762,141.6,60.554 +16763,139.07,60.015 +16764,136.38,59.459 +16765,142.69,61.107 +16766,140.3,60.545 +16767,137.76,59.969 +16768,135.07,59.376 +16769,141.39,61.135 +16770,138.99,60.537 +16771,136.45,59.924 +16772,133.76,59.294 +16773,140.07,61.162 +16774,137.68,60.528 +16775,135.14,59.879 +16776,132.44,59.212 +16777,138.76,61.188 +16778,136.37,60.519 +16779,133.84,59.834 +16780,131.14,59.13 +16781,137.45,61.215 +16782,135.06,60.51 +16783,132.53,59.789 +16784,129.83,59.049 +16785,136.13,61.24 +16786,133.75,60.501 +16787,131.23,59.745 +16788,128.53,58.968 +16789,134.81,61.265 +16790,132.44,60.492 +16791,129.92,59.7 +16792,127.22,58.888 +16793,133.5,61.29 +16794,131.13,60.482 +16795,128.62,59.656 +16796,125.92,58.809 +16797,132.17,61.313 +16798,129.82,60.472 +16799,127.31,59.612 +16800,124.63,58.73 +16801,130.85,61.336 +16802,128.51,60.462 +16803,126.01,59.568 +16804,123.33,58.651 +16805,129.53,61.359 +16806,127.19,60.452 +16807,124.71,59.524 +16808,122.04,58.574 +16809,128.2,61.381 +16810,125.88,60.441 +16811,123.41,59.481 +16812,120.74,58.496 +16813,126.87,61.402 +16814,124.57,60.431 +16815,122.1,59.437 +16816,119.45,58.42 +16817,125.54,61.422 +16818,123.25,60.419 +16819,120.8,59.394 +16820,118.17,58.345 +16821,124.21,61.441 +16822,121.94,60.408 +16823,119.5,59.352 +16824,116.88,58.27 +16825,122.88,61.46 +16826,120.62,60.396 +16827,118.21,59.309 +16828,115.6,58.196 +16829,121.54,61.478 +16830,119.31,60.385 +16831,116.91,59.267 +16832,114.32,58.122 +16833,120.21,61.495 +16834,117.99,60.372 +16835,115.61,59.225 +16836,113.04,58.05 +16837,118.87,61.511 +16838,116.67,60.36 +16839,114.31,59.183 +16840,111.76,57.978 +16841,117.53,61.526 +16842,115.35,60.347 +16843,113.02,59.142 +16844,110.49,57.908 +16845,116.19,61.54 +16846,114.04,60.334 +16847,111.72,59.1 +16848,109.21,57.838 +16849,114.84,61.553 +16850,112.72,60.32 +16851,110.43,59.06 +16852,107.94,57.769 +16853,113.5,61.565 +16854,111.4,60.306 +16855,109.13,59.019 +16856,106.67,57.701 +16857,112.15,61.577 +16858,110.08,60.292 +16859,107.84,58.979 +16860,105.41,57.635 +16861,110.81,61.587 +16862,108.76,60.278 +16863,106.54,58.939 +16864,104.14,57.569 +16865,109.46,61.596 +16866,107.44,60.263 +16867,105.25,58.899 +16868,102.88,57.504 +16869,108.11,61.604 +16870,106.11,60.248 +16871,103.96,58.86 +16872,101.62,57.44 +16873,106.76,61.611 +16874,104.79,60.232 +16875,102.67,58.821 +16876,100.36,57.378 +16877,105.4,61.617 +16878,103.47,60.216 +16879,101.38,58.783 +16880,99.099,57.316 +16881,104.05,61.622 +16882,102.15,60.2 +16883,100.09,58.745 +16884,97.843,57.256 +16885,102.69,61.626 +16886,100.82,60.183 +16887,98.799,58.707 +16888,96.589,57.196 +16889,101.33,61.629 +16890,99.5,60.166 +16891,97.51,58.67 +16892,95.337,57.138 +16893,99.975,61.63 +16894,98.175,60.148 +16895,96.222,58.633 +16896,94.087,57.081 +16897,98.615,61.63 +16898,96.851,60.13 +16899,94.934,58.596 +16900,92.838,57.026 +16901,97.254,61.63 +16902,95.525,60.112 +16903,93.647,58.56 +16904,91.591,56.971 +16905,95.891,61.627 +16906,94.2,60.093 +16907,92.36,58.524 +16908,90.346,56.918 +16909,94.527,61.624 +16910,92.874,60.074 +16911,91.074,58.488 +16912,89.102,56.866 +16913,93.162,61.62 +16914,91.547,60.054 +16915,89.789,58.453 +16916,87.86,56.815 +16917,91.796,61.614 +16918,90.221,60.034 +16919,88.504,58.419 +16920,86.62,56.766 +16921,90.428,61.607 +16922,88.893,60.013 +16923,87.219,58.384 +16924,85.381,56.717 +16925,89.06,61.598 +16926,87.566,59.992 +16927,85.935,58.35 +16928,84.143,56.671 +16929,87.69,61.589 +16930,86.238,59.971 +16931,84.651,58.317 +16932,82.907,56.625 +16933,86.319,61.578 +16934,84.909,59.949 +16935,83.368,58.284 +16936,81.672,56.581 +16937,84.947,61.566 +16938,83.581,59.927 +16939,82.085,58.252 +16940,80.439,56.538 +16941,83.574,61.552 +16942,82.252,59.904 +16943,80.803,58.219 +16944,79.207,56.496 +16945,82.2,61.537 +16946,80.922,59.881 +16947,79.521,58.188 +16948,77.976,56.456 +16949,80.825,61.521 +16950,79.593,59.857 +16951,78.24,58.157 +16952,76.746,56.417 +16953,79.449,61.503 +16954,78.263,59.833 +16955,76.959,58.126 +16956,75.518,56.38 +16957,78.073,61.485 +16958,76.932,59.808 +16959,75.678,58.095 +16960,74.291,56.344 +16961,76.695,61.464 +16962,75.602,59.783 +16963,74.398,58.066 +16964,73.064,56.309 +16965,75.317,61.443 +16966,74.271,59.758 +16967,73.118,58.036 +16968,71.839,56.276 +16969,73.937,61.42 +16970,72.94,59.732 +16971,71.838,58.007 +16972,70.615,56.244 +16973,72.557,61.396 +16974,71.609,59.705 +16975,70.559,57.978 +16976,69.392,56.214 +16977,71.176,61.37 +16978,70.277,59.678 +16979,69.28,57.95 +16980,68.17,56.185 +16981,69.795,61.343 +16982,68.946,59.651 +16983,68.002,57.923 +16984,66.948,56.157 +16985,68.413,61.315 +16986,67.614,59.623 +16987,66.723,57.896 +16988,65.728,56.131 +16989,67.03,61.285 +16990,66.282,59.595 +16991,65.445,57.869 +16992,64.508,56.106 +16993,65.646,61.254 +16994,64.949,59.566 +16995,64.167,57.842 +16996,63.289,56.082 +16997,64.262,61.221 +16998,63.617,59.537 +16999,62.89,57.817 +17000,62.07,56.06 +17001,62.878,61.187 +17002,62.284,59.507 +17003,61.613,57.791 +17004,60.852,56.04 +17005,61.493,61.152 +17006,60.951,59.477 +17007,60.336,57.766 +17008,59.635,56.02 +17009,60.107,61.115 +17010,59.618,59.446 +17011,59.059,57.742 +17012,58.418,56.003 +17013,58.721,61.077 +17014,58.285,59.415 +17015,57.782,57.718 +17016,57.201,55.986 +17017,57.334,61.038 +17018,56.952,59.383 +17019,56.505,57.694 +17020,55.985,55.971 +17021,55.948,60.997 +17022,55.619,59.351 +17023,55.229,57.671 +17024,54.769,55.958 +17025,54.56,60.955 +17026,54.286,59.318 +17027,53.953,57.648 +17028,53.554,55.945 +17029,53.173,60.912 +17030,52.953,59.285 +17031,52.677,57.626 +17032,52.339,55.934 +17033,51.785,60.867 +17034,51.619,59.252 +17035,51.401,57.604 +17036,51.124,55.925 +17037,50.397,60.821 +17038,50.286,59.218 +17039,50.125,57.583 +17040,49.909,55.917 +17041,49.009,60.774 +17042,48.952,59.183 +17043,48.849,57.562 +17044,48.694,55.91 +17045,47.621,60.725 +17046,47.619,59.148 +17047,47.573,57.541 +17048,47.479,55.904 +17049,46.232,60.675 +17050,46.286,59.113 +17051,46.298,57.521 +17052,46.265,55.9 +17053,44.844,60.624 +17054,44.952,59.077 +17055,45.022,57.502 +17056,45.05,55.897 +17057,43.455,60.571 +17058,43.619,59.041 +17059,43.746,57.482 +17060,43.835,55.896 +17061,42.067,60.517 +17062,42.285,59.004 +17063,42.471,57.464 +17064,42.62,55.895 +17065,40.678,60.462 +17066,40.952,58.967 +17067,41.195,57.445 +17068,41.404,55.896 +17069,39.29,60.405 +17070,39.619,58.929 +17071,39.92,57.427 +17072,40.189,55.898 +17073,37.901,60.348 +17074,38.286,58.892 +17075,38.644,57.409 +17076,38.973,55.902 +17077,36.513,60.289 +17078,36.953,58.853 +17079,37.368,57.392 +17080,37.756,55.907 +17081,35.125,60.228 +17082,35.62,58.814 +17083,36.092,57.375 +17084,36.54,55.912 +17085,33.737,60.167 +17086,34.288,58.775 +17087,34.816,57.359 +17088,35.323,55.919 +17089,32.349,60.105 +17090,32.955,58.735 +17091,33.54,57.343 +17092,34.105,55.928 +17093,30.962,60.041 +17094,31.623,58.695 +17095,32.264,57.327 +17096,32.887,55.937 +17097,29.575,59.976 +17098,30.29,58.655 +17099,30.988,57.312 +17100,31.668,55.947 +17101,28.188,59.91 +17102,28.958,58.614 +17103,29.712,57.297 +17104,30.448,55.959 +17105,26.802,59.843 +17106,27.627,58.573 +17107,28.435,57.282 +17108,29.228,55.972 +17109,25.417,59.774 +17110,26.295,58.531 +17111,27.159,57.268 +17112,28.007,55.985 +17113,24.031,59.705 +17114,24.964,58.49 +17115,25.882,57.254 +17116,26.785,56 +17117,22.647,59.635 +17118,23.633,58.447 +17119,24.605,57.241 +17120,25.563,56.016 +17121,21.262,59.563 +17122,22.302,58.405 +17123,23.327,57.227 +17124,24.339,56.033 +17125,19.879,59.491 +17126,20.971,58.362 +17127,22.05,57.214 +17128,23.115,56.05 +17129,18.496,59.417 +17130,19.641,58.318 +17131,20.772,57.202 +17132,21.89,56.069 +17133,17.114,59.343 +17134,18.311,58.275 +17135,19.494,57.189 +17136,20.664,56.089 +17137,15.732,59.267 +17138,16.981,58.231 +17139,18.216,57.177 +17140,19.436,56.109 +17141,14.351,59.191 +17142,15.652,58.186 +17143,16.937,57.166 +17144,18.208,56.13 +17145,12.972,59.114 +17146,14.323,58.142 +17147,15.658,57.154 +17148,16.979,56.153 +17149,11.592,59.035 +17150,12.994,58.097 +17151,14.379,57.143 +17152,15.748,56.176 +17153,10.214,58.956 +17154,11.666,58.052 +17155,13.099,57.132 +17156,14.516,56.199 +17157,8.8368,58.876 +17158,10.338,58.006 +17159,11.82,57.121 +17160,13.283,56.224 +17161,7.4605,58.796 +17162,9.0107,57.96 +17163,10.539,57.111 +17164,12.049,56.249 +17165,6.0851,58.714 +17166,7.6836,57.914 +17167,9.2589,57.101 +17168,10.813,56.275 +17169,4.7107,58.632 +17170,6.3569,57.868 +17171,7.978,57.091 +17172,9.5766,56.302 +17173,3.3374,58.549 +17174,5.0307,57.821 +17175,6.6967,57.081 +17176,8.3384,56.329 +17177,1.9652,58.465 +17178,3.7049,57.775 +17179,5.415,57.071 +17180,7.0989,56.357 +17181,0.59414,58.381 +17182,2.3795,57.728 +17183,4.133,57.062 +17184,5.858,56.386 +17185,359.22,58.296 +17186,1.0546,57.681 +17187,2.8505,57.053 +17188,4.6156,56.415 +17189,357.86,58.21 +17190,359.73,57.633 +17191,1.5676,57.044 +17192,3.3718,56.444 +17193,356.49,58.124 +17194,358.41,57.585 +17195,0.2843,57.035 +17196,2.1265,56.474 +17197,355.12,58.037 +17198,357.08,57.538 +17199,359,57.026 +17200,0.87973,56.505 +17201,353.76,57.949 +17202,355.76,57.49 +17203,357.72,57.018 +17204,359.63,56.536 +17205,352.39,57.862 +17206,354.44,57.442 +17207,356.43,57.009 +17208,358.38,56.567 +17209,351.03,57.773 +17210,353.12,57.393 +17211,355.15,57.001 +17212,357.13,56.599 +17213,349.67,57.684 +17214,351.79,57.345 +17215,353.86,56.993 +17216,355.88,56.631 +17217,348.31,57.595 +17218,350.47,57.296 +17219,352.57,56.985 +17220,354.62,56.663 +17221,346.95,57.506 +17222,349.15,57.248 +17223,351.29,56.977 +17224,353.37,56.696 +17225,345.6,57.416 +17226,347.83,57.199 +17227,350,56.969 +17228,352.11,56.729 +17229,344.24,57.325 +17230,346.51,57.15 +17231,348.71,56.961 +17232,350.85,56.762 +17233,342.89,57.235 +17234,345.2,57.101 +17235,347.43,56.954 +17236,349.59,56.795 +17237,341.54,57.144 +17238,343.88,57.052 +17239,346.14,56.946 +17240,348.32,56.829 +17241,340.19,57.053 +17242,342.56,57.002 +17243,344.85,56.938 +17244,347.06,56.862 +17245,338.84,56.962 +17246,341.24,56.953 +17247,343.56,56.931 +17248,345.79,56.896 +17249,337.49,56.87 +17250,339.93,56.904 +17251,342.27,56.923 +17252,344.52,56.93 +17253,336.15,56.779 +17254,338.61,56.855 +17255,340.98,56.915 +17256,343.25,56.963 +17257,334.81,56.687 +17258,337.3,56.805 +17259,339.69,56.908 +17260,341.98,56.997 +17261,333.47,56.596 +17262,335.98,56.756 +17263,338.39,56.9 +17264,340.71,57.03 +17265,332.13,56.504 +17266,334.67,56.707 +17267,337.1,56.892 +17268,339.43,57.064 +17269,330.79,56.412 +17270,333.36,56.657 +17271,335.81,56.885 +17272,338.16,57.097 +17273,329.45,56.321 +17274,332.05,56.608 +17275,334.51,56.877 +17276,336.88,57.131 +17277,328.12,56.229 +17278,330.73,56.559 +17279,333.22,56.869 +17280,335.6,57.164 +17281,326.79,56.138 +17282,329.42,56.509 +17283,331.93,56.861 +17284,334.31,57.197 +17285,325.46,56.047 +17286,328.11,56.46 +17287,330.63,56.853 +17288,333.03,57.229 +17289,324.13,55.955 +17290,326.8,56.411 +17291,329.33,56.845 +17292,331.74,57.262 +17293,322.81,55.865 +17294,325.5,56.362 +17295,328.04,56.837 +17296,330.46,57.294 +17297,321.48,55.774 +17298,324.19,56.313 +17299,326.74,56.829 +17300,329.17,57.325 +17301,320.16,55.684 +17302,322.88,56.264 +17303,325.44,56.821 +17304,327.87,57.357 +17305,318.84,55.594 +17306,321.57,56.215 +17307,324.15,56.812 +17308,326.58,57.388 +17309,317.53,55.504 +17310,320.27,56.167 +17311,322.85,56.803 +17312,325.29,57.418 +17313,316.21,55.415 +17314,318.96,56.118 +17315,321.55,56.795 +17316,323.99,57.448 +17317,314.9,55.326 +17318,317.66,56.07 +17319,320.25,56.786 +17320,322.69,57.478 +17321,313.59,55.238 +17322,316.36,56.021 +17323,318.95,56.776 +17324,321.39,57.507 +17325,312.28,55.15 +17326,315.05,55.973 +17327,317.65,56.767 +17328,320.09,57.535 +17329,310.97,55.063 +17330,313.75,55.925 +17331,316.34,56.758 +17332,318.78,57.563 +17333,309.67,54.976 +17334,312.45,55.878 +17335,315.04,56.748 +17336,317.47,57.59 +17337,308.36,54.89 +17338,311.15,55.83 +17339,313.74,56.738 +17340,316.17,57.617 +17341,307.06,54.805 +17342,309.85,55.783 +17343,312.43,56.728 +17344,314.86,57.643 +17345,305.76,54.72 +17346,308.55,55.736 +17347,311.13,56.717 +17348,313.55,57.668 +17349,304.47,54.636 +17350,307.25,55.689 +17351,309.83,56.707 +17352,312.23,57.693 +17353,303.17,54.552 +17354,305.95,55.642 +17355,308.52,56.696 +17356,310.92,57.717 +17357,301.88,54.47 +17358,304.65,55.596 +17359,307.21,56.684 +17360,309.6,57.74 +17361,300.59,54.388 +17362,303.36,55.55 +17363,305.91,56.673 +17364,308.28,57.762 +17365,299.31,54.307 +17366,302.06,55.504 +17367,304.6,56.661 +17368,306.96,57.783 +17369,298.02,54.226 +17370,300.77,55.458 +17371,303.29,56.649 +17372,305.64,57.804 +17373,296.74,54.147 +17374,299.47,55.413 +17375,301.99,56.637 +17376,304.31,57.823 +17377,295.46,54.069 +17378,298.18,55.368 +17379,300.68,56.624 +17380,302.99,57.842 +17381,294.18,53.991 +17382,296.89,55.323 +17383,299.37,56.611 +17384,301.66,57.86 +17385,292.9,53.915 +17386,295.59,55.279 +17387,298.06,56.598 +17388,300.33,57.877 +17389,291.63,53.839 +17390,294.3,55.235 +17391,296.75,56.584 +17392,299,57.893 +17393,290.36,53.765 +17394,293.01,55.191 +17395,295.44,56.57 +17396,297.67,57.907 +17397,289.09,53.691 +17398,291.72,55.148 +17399,294.12,56.556 +17400,296.34,57.921 +17401,287.82,53.619 +17402,290.43,55.105 +17403,292.81,56.541 +17404,295,57.934 +17405,286.56,53.548 +17406,289.14,55.062 +17407,291.5,56.526 +17408,293.67,57.946 +17409,285.29,53.478 +17410,287.86,55.02 +17411,290.19,56.511 +17412,292.33,57.956 +17413,284.03,53.409 +17414,286.57,54.978 +17415,288.87,56.495 +17416,290.99,57.966 +17417,282.77,53.341 +17418,285.28,54.936 +17419,287.56,56.479 +17420,289.65,57.974 +17421,281.52,53.275 +17422,284,54.895 +17423,286.24,56.462 +17424,288.3,57.981 +17425,280.26,53.209 +17426,282.71,54.854 +17427,284.93,56.445 +17428,286.96,57.987 +17429,279.01,53.145 +17430,281.43,54.814 +17431,283.61,56.428 +17432,285.61,57.992 +17433,277.76,53.082 +17434,280.14,54.774 +17435,282.3,56.41 +17436,284.26,57.996 +17437,276.51,53.021 +17438,278.86,54.734 +17439,280.98,56.392 +17440,282.92,57.998 +17441,275.26,52.961 +17442,277.58,54.695 +17443,279.66,56.373 +17444,281.57,57.999 +17445,274.02,52.902 +17446,276.29,54.657 +17447,278.35,56.354 +17448,280.21,57.999 +17449,272.77,52.844 +17450,275.01,54.618 +17451,277.03,56.334 +17452,278.86,57.998 +17453,271.53,52.788 +17454,273.73,54.581 +17455,275.71,56.314 +17456,277.51,57.995 +17457,270.29,52.734 +17458,272.45,54.543 +17459,274.39,56.294 +17460,276.15,57.991 +17461,269.05,52.68 +17462,271.17,54.506 +17463,273.07,56.273 +17464,274.8,57.986 +17465,267.82,52.628 +17466,269.89,54.47 +17467,271.75,56.251 +17468,273.44,57.979 +17469,266.58,52.578 +17470,268.61,54.434 +17471,270.43,56.23 +17472,272.08,57.971 +17473,265.35,52.529 +17474,267.34,54.398 +17475,269.11,56.207 +17476,270.72,57.962 +17477,264.12,52.481 +17478,266.06,54.363 +17479,267.79,56.185 +17480,269.36,57.951 +17481,262.89,52.435 +17482,264.78,54.329 +17483,266.47,56.161 +17484,267.99,57.939 +17485,261.66,52.391 +17486,263.5,54.295 +17487,265.15,56.138 +17488,266.63,57.925 +17489,260.44,52.348 +17490,262.23,54.261 +17491,263.83,56.113 +17492,265.27,57.91 +17493,259.21,52.306 +17494,260.95,54.228 +17495,262.5,56.089 +17496,263.9,57.894 +17497,257.99,52.266 +17498,259.68,54.195 +17499,261.18,56.063 +17500,262.53,57.876 +17501,256.77,52.227 +17502,258.4,54.163 +17503,259.86,56.038 +17504,261.17,57.857 +17505,255.54,52.19 +17506,257.13,54.131 +17507,258.54,56.012 +17508,259.8,57.836 +17509,254.33,52.155 +17510,255.85,54.1 +17511,257.21,55.985 +17512,258.43,57.814 +17513,253.11,52.121 +17514,254.58,54.069 +17515,255.89,55.958 +17516,257.06,57.791 +17517,251.89,52.089 +17518,253.31,54.039 +17519,254.56,55.93 +17520,255.69,57.766 +17521,250.67,52.058 +17522,252.04,54.01 +17523,253.24,55.902 +17524,254.31,57.739 +17525,249.46,52.029 +17526,250.76,53.98 +17527,251.92,55.873 +17528,252.94,57.712 +17529,248.25,52.001 +17530,249.49,53.952 +17531,250.59,55.844 +17532,251.57,57.682 +17533,247.03,51.975 +17534,248.22,53.924 +17535,249.27,55.814 +17536,250.19,57.651 +17537,245.82,51.95 +17538,246.95,53.896 +17539,247.94,55.784 +17540,248.82,57.619 +17541,244.61,51.927 +17542,245.68,53.869 +17543,246.62,55.754 +17544,247.44,57.585 +17545,243.4,51.906 +17546,244.41,53.842 +17547,245.29,55.722 +17548,246.06,57.55 +17549,242.19,51.886 +17550,243.14,53.816 +17551,243.96,55.691 +17552,244.69,57.514 +17553,240.98,51.867 +17554,241.87,53.79 +17555,242.64,55.659 +17556,243.31,57.475 +17557,239.77,51.85 +17558,240.6,53.765 +17559,241.31,55.626 +17560,241.93,57.436 +17561,238.56,51.835 +17562,239.33,53.741 +17563,239.99,55.593 +17564,240.55,57.395 +17565,237.36,51.821 +17566,238.06,53.716 +17567,238.66,55.559 +17568,239.17,57.352 +17569,236.15,51.809 +17570,236.79,53.693 +17571,237.33,55.525 +17572,237.79,57.308 +17573,234.95,51.798 +17574,235.52,53.67 +17575,236.01,55.49 +17576,236.41,57.263 +17577,233.74,51.789 +17578,234.25,53.647 +17579,234.68,55.455 +17580,235.03,57.216 +17581,232.53,51.781 +17582,232.99,53.625 +17583,233.35,55.419 +17584,233.65,57.168 +17585,231.33,51.775 +17586,231.72,53.603 +17587,232.03,55.383 +17588,232.27,57.118 +17589,230.12,51.77 +17590,230.45,53.582 +17591,230.7,55.347 +17592,230.89,57.067 +17593,228.92,51.767 +17594,229.18,53.561 +17595,229.37,55.31 +17596,229.51,57.014 +17597,227.72,51.765 +17598,227.91,53.541 +17599,228.05,55.272 +17600,228.13,56.96 +17601,226.51,51.765 +17602,226.65,53.521 +17603,226.72,55.234 +17604,226.75,56.905 +17605,225.31,51.766 +17606,225.38,53.502 +17607,225.39,55.195 +17608,225.36,56.848 +17609,224.1,51.768 +17610,224.11,53.483 +17611,224.07,55.157 +17612,223.98,56.79 +17613,222.9,51.772 +17614,222.84,53.465 +17615,222.74,55.117 +17616,222.6,56.731 +17617,221.69,51.777 +17618,221.57,53.447 +17619,221.42,55.077 +17620,221.22,56.67 +17621,220.49,51.783 +17622,220.31,53.429 +17623,220.09,55.037 +17624,219.84,56.608 +17625,219.28,51.791 +17626,219.04,53.412 +17627,218.76,54.996 +17628,218.45,56.544 +17629,218.08,51.8 +17630,217.77,53.395 +17631,217.44,54.955 +17632,217.07,56.479 +17633,216.87,51.811 +17634,216.5,53.379 +17635,216.11,54.913 +17636,215.69,56.413 +17637,215.66,51.823 +17638,215.24,53.363 +17639,214.78,54.871 +17640,214.31,56.346 +17641,214.46,51.835 +17642,213.97,53.348 +17643,213.46,54.829 +17644,212.93,56.277 +17645,213.25,51.85 +17646,212.7,53.333 +17647,212.13,54.786 +17648,211.55,56.208 +17649,212.04,51.865 +17650,211.43,53.319 +17651,210.81,54.742 +17652,210.17,56.136 +17653,210.83,51.882 +17654,210.17,53.304 +17655,209.48,54.699 +17656,208.79,56.064 +17657,209.62,51.899 +17658,208.9,53.291 +17659,208.16,54.655 +17660,207.41,55.991 +17661,208.41,51.918 +17662,207.63,53.277 +17663,206.83,54.61 +17664,206.03,55.916 +17665,207.2,51.938 +17666,206.36,53.264 +17667,205.51,54.565 +17668,204.65,55.84 +17669,205.99,51.959 +17670,205.09,53.252 +17671,204.18,54.52 +17672,203.27,55.763 +17673,204.78,51.981 +17674,203.82,53.239 +17675,202.86,54.474 +17676,201.89,55.685 +17677,203.56,52.004 +17678,202.55,53.227 +17679,201.54,54.428 +17680,200.51,55.606 +17681,202.35,52.028 +17682,201.28,53.216 +17683,200.21,54.382 +17684,199.14,55.526 +17685,201.13,52.053 +17686,200.01,53.204 +17687,198.89,54.335 +17688,197.76,55.445 +17689,199.92,52.079 +17690,198.74,53.193 +17691,197.57,54.288 +17692,196.38,55.363 +17693,198.7,52.106 +17694,197.47,53.183 +17695,196.24,54.241 +17696,195.01,55.279 +17697,197.48,52.134 +17698,196.2,53.172 +17699,194.92,54.193 +17700,193.63,55.195 +17701,196.26,52.162 +17702,194.93,53.162 +17703,193.6,54.145 +17704,192.26,55.11 +17705,195.04,52.192 +17706,193.66,53.153 +17707,192.28,54.097 +17708,190.89,55.024 +17709,193.82,52.222 +17710,192.39,53.143 +17711,190.96,54.049 +17712,189.52,54.937 +17713,192.59,52.253 +17714,191.12,53.134 +17715,189.64,54 +17716,188.15,54.849 +17717,191.37,52.284 +17718,189.85,53.125 +17719,188.32,53.951 +17720,186.78,54.761 +17721,190.14,52.317 +17722,188.58,53.116 +17723,187,53.902 +17724,185.41,54.671 +17725,188.92,52.35 +17726,187.3,53.108 +17727,185.68,53.852 +17728,184.04,54.581 +17729,187.69,52.383 +17730,186.03,53.099 +17731,184.36,53.802 +17732,182.67,54.49 +17733,186.46,52.418 +17734,184.76,53.091 +17735,183.04,53.752 +17736,181.31,54.399 +17737,185.22,52.452 +17738,183.48,53.083 +17739,181.72,53.702 +17740,179.94,54.307 +17741,183.99,52.488 +17742,182.21,53.076 +17743,180.41,53.652 +17744,178.58,54.214 +17745,182.76,52.523 +17746,180.93,53.068 +17747,179.09,53.601 +17748,177.22,54.12 +17749,181.52,52.56 +17750,179.66,53.061 +17751,177.77,53.55 +17752,175.86,54.026 +17753,180.28,52.596 +17754,178.38,53.054 +17755,176.46,53.499 +17756,174.5,53.931 +17757,179.04,52.633 +17758,177.11,53.047 +17759,175.14,53.448 +17760,173.14,53.836 +17761,177.8,52.671 +17762,175.83,53.04 +17763,173.83,53.397 +17764,171.78,53.74 +17765,176.56,52.708 +17766,174.56,53.033 +17767,172.51,53.345 +17768,170.42,53.644 +17769,175.31,52.746 +17770,173.28,53.026 +17771,171.2,53.294 +17772,169.07,53.548 +17773,174.07,52.785 +17774,172,53.02 +17775,169.88,53.242 +17776,167.72,53.451 +17777,172.82,52.823 +17778,170.72,53.013 +17779,168.57,53.191 +17780,166.37,53.354 +17781,171.57,52.862 +17782,169.44,53.007 +17783,167.26,53.139 +17784,165.02,53.256 +17785,170.32,52.901 +17786,168.16,53 +17787,165.95,53.087 +17788,163.67,53.158 +17789,169.07,52.939 +17790,166.88,52.994 +17791,164.64,53.035 +17792,162.32,53.06 +17793,167.81,52.978 +17794,165.6,52.988 +17795,163.33,52.983 +17796,160.98,52.962 +17797,166.56,53.017 +17798,164.32,52.981 +17799,162.02,52.931 +17800,159.63,52.863 +17801,165.3,53.056 +17802,163.04,52.975 +17803,160.71,52.879 +17804,158.29,52.765 +17805,164.04,53.095 +17806,161.76,52.969 +17807,159.4,52.827 +17808,156.95,52.666 +17809,162.78,53.134 +17810,160.48,52.963 +17811,158.09,52.775 +17812,155.61,52.567 +17813,161.51,53.173 +17814,159.19,52.957 +17815,156.79,52.723 +17816,154.28,52.468 +17817,160.25,53.212 +17818,157.91,52.95 +17819,155.48,52.67 +17820,152.94,52.369 +17821,158.98,53.25 +17822,156.63,52.944 +17823,154.18,52.618 +17824,151.61,52.271 +17825,157.71,53.288 +17826,155.34,52.938 +17827,152.87,52.566 +17828,150.28,52.172 +17829,156.44,53.326 +17830,154.06,52.931 +17831,151.57,52.515 +17832,148.95,52.074 +17833,155.17,53.364 +17834,152.77,52.925 +17835,150.26,52.463 +17836,147.63,51.975 +17837,153.89,53.402 +17838,151.48,52.918 +17839,148.96,52.411 +17840,146.3,51.877 +17841,152.61,53.439 +17842,150.2,52.911 +17843,147.66,52.359 +17844,144.98,51.779 +17845,151.34,53.475 +17846,148.91,52.904 +17847,146.36,52.308 +17848,143.66,51.682 +17849,150.06,53.512 +17850,147.62,52.898 +17851,145.06,52.256 +17852,142.34,51.584 +17853,148.77,53.548 +17854,146.33,52.89 +17855,143.76,52.205 +17856,141.02,51.488 +17857,147.49,53.583 +17858,145.04,52.883 +17859,142.46,52.154 +17860,139.71,51.391 +17861,146.2,53.618 +17862,143.75,52.876 +17863,141.16,52.103 +17864,138.39,51.295 +17865,144.92,53.652 +17866,142.46,52.868 +17867,139.86,52.052 +17868,137.08,51.199 +17869,143.63,53.686 +17870,141.17,52.861 +17871,138.57,52.001 +17872,135.78,51.104 +17873,142.33,53.719 +17874,139.88,52.853 +17875,137.27,51.951 +17876,134.47,51.01 +17877,141.04,53.752 +17878,138.59,52.844 +17879,135.97,51.901 +17880,133.17,50.916 +17881,139.75,53.784 +17882,137.3,52.836 +17883,134.68,51.851 +17884,131.86,50.822 +17885,138.45,53.815 +17886,136,52.828 +17887,133.39,51.801 +17888,130.56,50.73 +17889,137.15,53.845 +17890,134.71,52.819 +17891,132.09,51.751 +17892,129.27,50.638 +17893,135.85,53.875 +17894,133.42,52.81 +17895,130.8,51.702 +17896,127.97,50.546 +17897,134.55,53.904 +17898,132.12,52.8 +17899,129.51,51.653 +17900,126.68,50.456 +17901,133.24,53.932 +17902,130.82,52.791 +17903,128.22,51.604 +17904,125.39,50.366 +17905,131.94,53.959 +17906,129.53,52.781 +17907,126.93,51.556 +17908,124.1,50.277 +17909,130.63,53.985 +17910,128.23,52.771 +17911,125.64,51.508 +17912,122.81,50.189 +17913,129.32,54.011 +17914,126.93,52.76 +17915,124.35,51.46 +17916,121.53,50.102 +17917,128.01,54.035 +17918,125.64,52.75 +17919,123.06,51.412 +17920,120.25,50.016 +17921,126.7,54.059 +17922,124.34,52.739 +17923,121.78,51.365 +17924,118.97,49.931 +17925,125.38,54.082 +17926,123.04,52.727 +17927,120.49,51.318 +17928,117.69,49.847 +17929,124.07,54.103 +17930,121.74,52.715 +17931,119.21,51.272 +17932,116.42,49.764 +17933,122.75,54.124 +17934,120.44,52.703 +17935,117.92,51.226 +17936,115.15,49.682 +17937,121.43,54.143 +17938,119.14,52.691 +17939,116.64,51.18 +17940,113.88,49.601 +17941,120.11,54.162 +17942,117.84,52.678 +17943,115.35,51.134 +17944,112.61,49.522 +17945,118.79,54.179 +17946,116.53,52.665 +17947,114.07,51.089 +17948,111.34,49.443 +17949,117.46,54.195 +17950,115.23,52.651 +17951,112.79,51.045 +17952,110.08,49.366 +17953,116.14,54.21 +17954,113.93,52.638 +17955,111.51,51.001 +17956,108.82,49.29 +17957,114.81,54.224 +17958,112.63,52.623 +17959,110.23,50.957 +17960,107.56,49.215 +17961,113.48,54.236 +17962,111.32,52.608 +17963,108.95,50.913 +17964,106.3,49.142 +17965,112.15,54.248 +17966,110.02,52.593 +17967,107.67,50.871 +17968,105.05,49.069 +17969,110.82,54.258 +17970,108.71,52.578 +17971,106.39,50.828 +17972,103.8,48.999 +17973,109.48,54.267 +17974,107.41,52.562 +17975,105.11,50.786 +17976,102.55,48.929 +17977,108.15,54.275 +17978,106.1,52.545 +17979,103.84,50.744 +17980,101.3,48.861 +17981,106.81,54.281 +17982,104.8,52.529 +17983,102.56,50.703 +17984,100.06,48.795 +17985,105.47,54.286 +17986,103.49,52.511 +17987,101.29,50.663 +17988,98.812,48.73 +17989,104.13,54.29 +17990,102.18,52.494 +17991,100.01,50.623 +17992,97.571,48.666 +17993,102.79,54.292 +17994,100.87,52.475 +17995,98.738,50.583 +17996,96.332,48.604 +17997,101.45,54.293 +17998,99.565,52.457 +17999,97.465,50.544 +18000,95.094,48.543 +18001,100.11,54.292 +18002,98.256,52.438 +18003,96.192,50.505 +18004,93.859,48.484 +18005,98.763,54.29 +18006,96.947,52.418 +18007,94.92,50.467 +18008,92.626,48.427 +18009,97.417,54.287 +18010,95.638,52.398 +18011,93.648,50.43 +18012,91.395,48.371 +18013,96.07,54.283 +18014,94.328,52.377 +18015,92.378,50.392 +18016,90.166,48.316 +18017,94.722,54.276 +18018,93.017,52.356 +18019,91.107,50.356 +18020,88.938,48.264 +18021,93.372,54.269 +18022,91.707,52.335 +18023,89.838,50.32 +18024,87.713,48.213 +18025,92.022,54.26 +18026,90.396,52.313 +18027,88.569,50.284 +18028,86.489,48.163 +18029,90.67,54.249 +18030,89.084,52.29 +18031,87.3,50.249 +18032,85.267,48.116 +18033,89.317,54.237 +18034,87.772,52.267 +18035,86.032,50.215 +18036,84.046,48.07 +18037,87.963,54.224 +18038,86.46,52.243 +18039,84.765,50.181 +18040,82.828,48.025 +18041,86.608,54.208 +18042,85.148,52.219 +18043,83.498,50.148 +18044,81.611,47.983 +18045,85.252,54.192 +18046,83.835,52.195 +18047,82.232,50.115 +18048,80.396,47.942 +18049,83.895,54.174 +18050,82.522,52.17 +18051,80.966,50.083 +18052,79.182,47.903 +18053,82.537,54.154 +18054,81.208,52.144 +18055,79.701,50.051 +18056,77.969,47.865 +18057,81.178,54.133 +18058,79.895,52.118 +18059,78.436,50.02 +18060,76.759,47.829 +18061,79.819,54.11 +18062,78.581,52.091 +18063,77.172,49.99 +18064,75.549,47.795 +18065,78.458,54.086 +18066,77.266,52.064 +18067,75.908,49.96 +18068,74.341,47.763 +18069,77.097,54.06 +18070,75.952,52.036 +18071,74.645,49.931 +18072,73.134,47.733 +18073,75.734,54.033 +18074,74.637,52.008 +18075,73.382,49.902 +18076,71.929,47.704 +18077,74.371,54.004 +18078,73.322,51.979 +18079,72.119,49.874 +18080,70.724,47.677 +18081,73.008,53.973 +18082,72.007,51.95 +18083,70.857,49.846 +18084,69.521,47.652 +18085,71.643,53.941 +18086,70.692,51.92 +18087,69.595,49.819 +18088,68.319,47.628 +18089,70.278,53.907 +18090,69.376,51.889 +18091,68.334,49.792 +18092,67.118,47.607 +18093,68.912,53.872 +18094,68.06,51.858 +18095,67.073,49.767 +18096,65.918,47.587 +18097,67.546,53.835 +18098,66.744,51.827 +18099,65.812,49.741 +18100,64.719,47.569 +18101,66.179,53.797 +18102,65.428,51.795 +18103,64.552,49.717 +18104,63.52,47.552 +18105,64.811,53.757 +18106,64.112,51.762 +18107,63.292,49.692 +18108,62.323,47.538 +18109,63.443,53.715 +18110,62.796,51.729 +18111,62.032,49.669 +18112,61.126,47.525 +18113,62.075,53.672 +18114,61.479,51.696 +18115,60.773,49.646 +18116,59.93,47.513 +18117,60.706,53.627 +18118,60.163,51.662 +18119,59.513,49.623 +18120,58.734,47.504 +18121,59.336,53.581 +18122,58.846,51.627 +18123,58.254,49.601 +18124,57.539,47.496 +18125,57.967,53.533 +18126,57.529,51.592 +18127,56.996,49.58 +18128,56.345,47.49 +18129,56.597,53.484 +18130,56.212,51.556 +18131,55.737,49.559 +18132,55.151,47.486 +18133,55.226,53.433 +18134,54.896,51.52 +18135,54.479,49.539 +18136,53.957,47.483 +18137,53.856,53.381 +18138,53.579,51.483 +18139,53.22,49.519 +18140,52.764,47.482 +18141,52.485,53.327 +18142,52.262,51.446 +18143,51.962,49.5 +18144,51.571,47.483 +18145,51.114,53.271 +18146,50.945,51.408 +18147,50.705,49.482 +18148,50.378,47.485 +18149,49.742,53.214 +18150,49.628,51.37 +18151,49.447,49.464 +18152,49.185,47.489 +18153,48.371,53.156 +18154,48.311,51.332 +18155,48.189,49.446 +18156,47.992,47.494 +18157,47,53.096 +18158,46.995,51.292 +18159,46.932,49.429 +18160,46.8,47.501 +18161,45.628,53.035 +18162,45.678,51.253 +18163,45.674,49.413 +18164,45.607,47.51 +18165,44.257,52.972 +18166,44.361,51.213 +18167,44.417,49.397 +18168,44.414,47.52 +18169,42.885,52.907 +18170,43.045,51.172 +18171,43.159,49.381 +18172,43.221,47.532 +18173,41.514,52.842 +18174,41.728,51.131 +18175,41.902,49.366 +18176,42.028,47.545 +18177,40.142,52.775 +18178,40.412,51.089 +18179,40.645,49.352 +18180,40.835,47.56 +18181,38.771,52.706 +18182,39.096,51.047 +18183,39.387,49.338 +18184,39.641,47.576 +18185,37.4,52.636 +18186,37.779,51.005 +18187,38.13,49.325 +18188,38.447,47.593 +18189,36.029,52.565 +18190,36.464,50.962 +18191,36.873,49.312 +18192,37.252,47.612 +18193,34.659,52.492 +18194,35.148,50.918 +18195,35.615,49.299 +18196,36.057,47.632 +18197,33.288,52.418 +18198,33.832,50.875 +18199,34.358,49.287 +18200,34.861,47.654 +18201,31.918,52.343 +18202,32.517,50.83 +18203,33.1,49.276 +18204,33.665,47.677 +18205,30.548,52.267 +18206,31.202,50.786 +18207,31.842,49.265 +18208,32.468,47.701 +18209,29.179,52.189 +18210,29.887,50.741 +18211,30.584,49.254 +18212,31.271,47.727 +18213,27.81,52.11 +18214,28.572,50.695 +18215,29.327,49.244 +18216,30.072,47.754 +18217,26.442,52.029 +18218,27.258,50.649 +18219,28.068,49.234 +18220,28.873,47.782 +18221,25.074,51.948 +18222,25.944,50.603 +18223,26.81,49.224 +18224,27.673,47.811 +18225,23.706,51.865 +18226,24.63,50.557 +18227,25.552,49.215 +18228,26.472,47.841 +18229,22.339,51.781 +18230,23.316,50.51 +18231,24.293,49.207 +18232,25.27,47.872 +18233,20.973,51.696 +18234,22.003,50.462 +18235,23.034,49.199 +18236,24.067,47.905 +18237,19.608,51.61 +18238,20.69,50.415 +18239,21.775,49.191 +18240,22.864,47.938 +18241,18.243,51.523 +18242,19.377,50.367 +18243,20.516,49.183 +18244,21.659,47.973 +18245,16.878,51.435 +18246,18.065,50.318 +18247,19.256,49.176 +18248,20.452,48.009 +18249,15.515,51.346 +18250,16.753,50.27 +18251,17.996,49.169 +18252,19.245,48.045 +18253,14.152,51.255 +18254,15.442,50.221 +18255,16.736,49.163 +18256,18.037,48.082 +18257,12.791,51.164 +18258,14.131,50.172 +18259,15.476,49.157 +18260,16.827,48.121 +18261,11.43,51.072 +18262,12.82,50.122 +18263,14.215,49.151 +18264,15.616,48.16 +18265,10.07,50.979 +18266,11.51,50.072 +18267,12.954,49.145 +18268,14.403,48.2 +18269,8.7104,50.885 +18270,10.2,50.022 +18271,11.693,49.14 +18272,13.19,48.24 +18273,7.3523,50.79 +18274,8.8907,49.972 +18275,10.431,49.135 +18276,11.974,48.282 +18277,5.9952,50.695 +18278,7.5817,49.921 +18279,9.1689,49.131 +18280,10.758,48.324 +18281,4.6391,50.598 +18282,6.2733,49.87 +18283,7.9065,49.126 +18284,9.5398,48.366 +18285,3.2842,50.501 +18286,4.9654,49.819 +18287,6.6437,49.122 +18288,8.3202,48.41 +18289,1.9303,50.403 +18290,3.6579,49.768 +18291,5.3804,49.118 +18292,7.0992,48.454 +18293,0.57767,50.304 +18294,2.351,49.717 +18295,4.1168,49.114 +18296,5.8766,48.498 +18297,359.23,50.205 +18298,1.0446,49.665 +18299,2.8528,49.111 +18300,4.6524,48.543 +18301,357.88,50.105 +18302,359.74,49.613 +18303,1.5883,49.107 +18304,3.4266,48.589 +18305,356.53,50.005 +18306,358.43,49.561 +18307,0.32346,49.104 +18308,2.1992,48.635 +18309,355.18,49.904 +18310,357.13,49.509 +18311,359.06,49.101 +18312,0.9701,48.681 +18313,353.83,49.802 +18314,355.82,49.457 +18315,357.79,49.098 +18316,359.74,48.727 +18317,352.49,49.7 +18318,354.52,49.405 +18319,356.53,49.096 +18320,358.51,48.774 +18321,351.14,49.598 +18322,353.22,49.352 +18323,355.26,49.093 +18324,357.27,48.822 +18325,349.8,49.495 +18326,351.92,49.3 +18327,353.99,49.091 +18328,356.04,48.869 +18329,348.46,49.392 +18330,350.61,49.247 +18331,352.72,49.088 +18332,354.8,48.917 +18333,347.12,49.288 +18334,349.31,49.195 +18335,351.46,49.086 +18336,353.56,48.965 +18337,345.79,49.184 +18338,348.01,49.142 +18339,350.19,49.084 +18340,352.32,49.013 +18341,344.45,49.08 +18342,346.71,49.089 +18343,348.92,49.082 +18344,351.08,49.061 +18345,343.12,48.976 +18346,345.41,49.036 +18347,347.65,49.08 +18348,349.83,49.109 +18349,341.78,48.871 +18350,344.11,48.983 +18351,346.38,49.078 +18352,348.58,49.157 +18353,340.45,48.767 +18354,342.82,48.93 +18355,345.11,49.076 +18356,347.34,49.205 +18357,339.12,48.662 +18358,341.52,48.878 +18359,343.84,49.074 +18360,346.09,49.253 +18361,337.8,48.557 +18362,340.22,48.825 +18363,342.56,49.072 +18364,344.83,49.301 +18365,336.47,48.453 +18366,338.93,48.772 +18367,341.29,49.07 +18368,343.58,49.348 +18369,335.15,48.348 +18370,337.63,48.719 +18371,340.02,49.068 +18372,342.32,49.396 +18373,333.82,48.243 +18374,336.34,48.667 +18375,338.75,49.066 +18376,341.07,49.443 +18377,332.5,48.139 +18378,335.04,48.614 +18379,337.47,49.064 +18380,339.81,49.49 +18381,331.19,48.034 +18382,333.75,48.562 +18383,336.2,49.062 +18384,338.54,49.537 +18385,329.87,47.93 +18386,332.46,48.509 +18387,334.92,49.059 +18388,337.28,49.584 +18389,328.56,47.826 +18390,331.17,48.457 +18391,333.65,49.057 +18392,336.02,49.63 +18393,327.24,47.723 +18394,329.87,48.405 +18395,332.37,49.055 +18396,334.75,49.675 +18397,325.93,47.619 +18398,328.58,48.353 +18399,331.09,49.052 +18400,333.48,49.721 +18401,324.63,47.516 +18402,327.29,48.301 +18403,329.82,49.05 +18404,332.21,49.765 +18405,323.32,47.414 +18406,326.01,48.25 +18407,328.54,49.047 +18408,330.94,49.81 +18409,322.02,47.312 +18410,324.72,48.198 +18411,327.26,49.044 +18412,329.66,49.853 +18413,320.71,47.21 +18414,323.43,48.147 +18415,325.98,49.041 +18416,328.39,49.897 +18417,319.41,47.109 +18418,322.15,48.096 +18419,324.7,49.037 +18420,327.11,49.939 +18421,318.12,47.009 +18422,320.86,48.045 +18423,323.42,49.034 +18424,325.83,49.981 +18425,316.82,46.909 +18426,319.57,47.994 +18427,322.14,49.03 +18428,324.54,50.022 +18429,315.53,46.81 +18430,318.29,47.944 +18431,320.86,49.026 +18432,323.26,50.063 +18433,314.24,46.711 +18434,317.01,47.894 +18435,319.58,49.022 +18436,321.98,50.102 +18437,312.95,46.614 +18438,315.72,47.844 +18439,318.29,49.018 +18440,320.69,50.141 +18441,311.66,46.517 +18442,314.44,47.795 +18443,317.01,49.013 +18444,319.4,50.179 +18445,310.38,46.421 +18446,313.16,47.746 +18447,315.73,49.009 +18448,318.11,50.217 +18449,309.09,46.325 +18450,311.88,47.697 +18451,314.44,49.004 +18452,316.81,50.253 +18453,307.82,46.231 +18454,310.6,47.649 +18455,313.16,48.998 +18456,315.52,50.289 +18457,306.54,46.138 +18458,309.32,47.6 +18459,311.87,48.993 +18460,314.22,50.323 +18461,305.26,46.046 +18462,308.05,47.553 +18463,310.59,48.987 +18464,312.93,50.357 +18465,303.99,45.954 +18466,306.77,47.505 +18467,309.3,48.98 +18468,311.63,50.389 +18469,302.72,45.864 +18470,305.49,47.458 +18471,308.01,48.974 +18472,310.32,50.421 +18473,301.45,45.775 +18474,304.22,47.411 +18475,306.72,48.967 +18476,309.02,50.452 +18477,300.19,45.687 +18478,302.94,47.365 +18479,305.44,48.959 +18480,307.72,50.481 +18481,298.92,45.6 +18482,301.67,47.319 +18483,304.15,48.952 +18484,306.41,50.509 +18485,297.66,45.515 +18486,300.4,47.274 +18487,302.86,48.944 +18488,305.1,50.537 +18489,296.4,45.431 +18490,299.12,47.229 +18491,301.57,48.936 +18492,303.79,50.563 +18493,295.15,45.348 +18494,297.85,47.185 +18495,300.28,48.927 +18496,302.48,50.587 +18497,293.89,45.266 +18498,296.58,47.141 +18499,298.99,48.918 +18500,301.17,50.611 +18501,292.64,45.186 +18502,295.31,47.097 +18503,297.69,48.908 +18504,299.85,50.634 +18505,291.39,45.107 +18506,294.04,47.054 +18507,296.4,48.898 +18508,298.54,50.655 +18509,290.14,45.03 +18510,292.77,47.011 +18511,295.11,48.888 +18512,297.22,50.675 +18513,288.9,44.954 +18514,291.51,46.969 +18515,293.82,48.877 +18516,295.9,50.693 +18517,287.66,44.88 +18518,290.24,46.928 +18519,292.52,48.866 +18520,294.58,50.71 +18521,286.42,44.807 +18522,288.97,46.887 +18523,291.23,48.854 +18524,293.26,50.726 +18525,285.18,44.736 +18526,287.71,46.846 +18527,289.94,48.842 +18528,291.93,50.741 +18529,283.94,44.666 +18530,286.44,46.806 +18531,288.64,48.83 +18532,290.61,50.754 +18533,282.71,44.598 +18534,285.18,46.767 +18535,287.35,48.817 +18536,289.28,50.766 +18537,281.48,44.532 +18538,283.91,46.728 +18539,286.05,48.803 +18540,287.95,50.776 +18541,280.25,44.467 +18542,282.65,46.689 +18543,284.75,48.789 +18544,286.63,50.785 +18545,279.02,44.404 +18546,281.39,46.652 +18547,283.46,48.775 +18548,285.3,50.792 +18549,277.79,44.343 +18550,280.13,46.614 +18551,282.16,48.76 +18552,283.96,50.798 +18553,276.57,44.284 +18554,278.87,46.578 +18555,280.86,48.744 +18556,282.63,50.803 +18557,275.35,44.226 +18558,277.61,46.542 +18559,279.57,48.728 +18560,281.3,50.805 +18561,274.13,44.17 +18562,276.35,46.506 +18563,278.27,48.712 +18564,279.96,50.807 +18565,272.91,44.116 +18566,275.09,46.472 +18567,276.97,48.695 +18568,278.63,50.807 +18569,271.7,44.064 +18570,273.83,46.437 +18571,275.67,48.678 +18572,277.29,50.805 +18573,270.49,44.014 +18574,272.57,46.404 +18575,274.37,48.66 +18576,275.95,50.802 +18577,269.27,43.966 +18578,271.31,46.371 +18579,273.07,48.641 +18580,274.61,50.797 +18581,268.06,43.919 +18582,270.06,46.339 +18583,271.77,48.622 +18584,273.27,50.79 +18585,266.86,43.875 +18586,268.8,46.307 +18587,270.47,48.602 +18588,271.93,50.782 +18589,265.65,43.832 +18590,267.55,46.276 +18591,269.17,48.582 +18592,270.59,50.773 +18593,264.45,43.792 +18594,266.29,46.245 +18595,267.87,48.562 +18596,269.24,50.761 +18597,263.24,43.753 +18598,265.04,46.216 +18599,266.57,48.541 +18600,267.9,50.748 +18601,262.04,43.716 +18602,263.78,46.187 +18603,265.27,48.519 +18604,266.55,50.734 +18605,260.84,43.681 +18606,262.53,46.158 +18607,263.96,48.497 +18608,265.21,50.718 +18609,259.64,43.649 +18610,261.28,46.13 +18611,262.66,48.474 +18612,263.86,50.7 +18613,258.45,43.618 +18614,260.02,46.103 +18615,261.36,48.45 +18616,262.51,50.68 +18617,257.25,43.589 +18618,258.77,46.077 +18619,260.06,48.426 +18620,261.16,50.659 +18621,256.06,43.563 +18622,257.52,46.051 +18623,258.75,48.402 +18624,259.81,50.636 +18625,254.86,43.538 +18626,256.27,46.026 +18627,257.45,48.377 +18628,258.46,50.612 +18629,253.67,43.515 +18630,255.02,46.001 +18631,256.15,48.351 +18632,257.11,50.585 +18633,252.48,43.495 +18634,253.77,45.977 +18635,254.85,48.325 +18636,255.76,50.558 +18637,251.29,43.476 +18638,252.52,45.954 +18639,253.54,48.298 +18640,254.41,50.528 +18641,250.1,43.459 +18642,251.27,45.932 +18643,252.24,48.271 +18644,253.06,50.497 +18645,248.92,43.445 +18646,250.02,45.91 +18647,250.93,48.243 +18648,251.7,50.464 +18649,247.73,43.432 +18650,248.77,45.889 +18651,249.63,48.215 +18652,250.35,50.429 +18653,246.54,43.421 +18654,247.52,45.868 +18655,248.33,48.186 +18656,249,50.393 +18657,245.36,43.413 +18658,246.27,45.848 +18659,247.02,48.156 +18660,247.64,50.355 +18661,244.17,43.406 +18662,245.03,45.829 +18663,245.72,48.126 +18664,246.29,50.315 +18665,242.99,43.401 +18666,243.78,45.81 +18667,244.41,48.096 +18668,244.93,50.274 +18669,241.81,43.398 +18670,242.53,45.793 +18671,243.11,48.065 +18672,243.58,50.231 +18673,240.62,43.398 +18674,241.28,45.775 +18675,241.81,48.033 +18676,242.22,50.186 +18677,239.44,43.399 +18678,240.04,45.759 +18679,240.5,48.001 +18680,240.86,50.14 +18681,238.26,43.402 +18682,238.79,45.743 +18683,239.2,47.968 +18684,239.51,50.092 +18685,237.08,43.407 +18686,237.54,45.727 +18687,237.89,47.934 +18688,238.15,50.043 +18689,235.9,43.414 +18690,236.3,45.713 +18691,236.59,47.901 +18692,236.79,49.991 +18693,234.72,43.422 +18694,235.05,45.699 +18695,235.28,47.866 +18696,235.44,49.939 +18697,233.53,43.433 +18698,233.8,45.685 +18699,233.98,47.831 +18700,234.08,49.884 +18701,232.35,43.445 +18702,232.56,45.672 +18703,232.68,47.796 +18704,232.72,49.828 +18705,231.17,43.46 +18706,231.31,45.66 +18707,231.37,47.76 +18708,231.37,49.771 +18709,229.99,43.476 +18710,230.07,45.649 +18711,230.07,47.723 +18712,230.01,49.711 +18713,228.81,43.493 +18714,228.82,45.638 +18715,228.76,47.686 +18716,228.65,49.651 +18717,227.63,43.513 +18718,227.57,45.627 +18719,227.46,47.649 +18720,227.3,49.588 +18721,226.45,43.534 +18722,226.33,45.617 +18723,226.16,47.611 +18724,225.94,49.524 +18725,225.27,43.557 +18726,225.08,45.608 +18727,224.85,47.573 +18728,224.58,49.459 +18729,224.08,43.581 +18730,223.84,45.6 +18731,223.55,47.534 +18732,223.23,49.392 +18733,222.9,43.608 +18734,222.59,45.592 +18735,222.25,47.494 +18736,221.87,49.324 +18737,221.72,43.635 +18738,221.35,45.584 +18739,220.94,47.454 +18740,220.51,49.254 +18741,220.53,43.665 +18742,220.1,45.577 +18743,219.64,47.414 +18744,219.16,49.183 +18745,219.35,43.696 +18746,218.85,45.571 +18747,218.34,47.373 +18748,217.8,49.11 +18749,218.16,43.728 +18750,217.61,45.565 +18751,217.03,47.332 +18752,216.45,49.036 +18753,216.98,43.762 +18754,216.36,45.56 +18755,215.73,47.29 +18756,215.09,48.96 +18757,215.79,43.797 +18758,215.11,45.555 +18759,214.43,47.248 +18760,213.74,48.883 +18761,214.6,43.834 +18762,213.87,45.55 +18763,213.13,47.206 +18764,212.39,48.805 +18765,213.42,43.872 +18766,212.62,45.547 +18767,211.83,47.163 +18768,211.03,48.725 +18769,212.23,43.912 +18770,211.37,45.543 +18771,210.53,47.12 +18772,209.68,48.644 +18773,211.04,43.952 +18774,210.13,45.54 +18775,209.22,47.076 +18776,208.33,48.562 +18777,209.85,43.994 +18778,208.88,45.538 +18779,207.92,47.032 +18780,206.98,48.478 +18781,208.65,44.038 +18782,207.63,45.536 +18783,206.62,46.987 +18784,205.63,48.394 +18785,207.46,44.082 +18786,206.38,45.535 +18787,205.32,46.942 +18788,204.28,48.308 +18789,206.26,44.128 +18790,205.14,45.534 +18791,204.02,46.897 +18792,202.93,48.22 +18793,205.07,44.175 +18794,203.89,45.533 +18795,202.73,46.852 +18796,201.58,48.132 +18797,203.87,44.222 +18798,202.64,45.533 +18799,201.43,46.806 +18800,200.23,48.043 +18801,202.67,44.271 +18802,201.39,45.533 +18803,200.13,46.76 +18804,198.89,47.952 +18805,201.47,44.321 +18806,200.14,45.533 +18807,198.83,46.713 +18808,197.54,47.861 +18809,200.27,44.372 +18810,198.89,45.534 +18811,197.53,46.666 +18812,196.19,47.768 +18813,199.07,44.424 +18814,197.64,45.536 +18815,196.24,46.619 +18816,194.85,47.674 +18817,197.87,44.476 +18818,196.39,45.537 +18819,194.94,46.572 +18820,193.51,47.58 +18821,196.66,44.53 +18822,195.14,45.539 +18823,193.64,46.524 +18824,192.17,47.484 +18825,195.45,44.584 +18826,193.89,45.542 +18827,192.35,46.476 +18828,190.82,47.387 +18829,194.24,44.639 +18830,192.64,45.544 +18831,191.05,46.428 +18832,189.49,47.29 +18833,193.03,44.695 +18834,191.39,45.547 +18835,189.76,46.38 +18836,188.15,47.192 +18837,191.82,44.751 +18838,190.14,45.55 +18839,188.46,46.331 +18840,186.81,47.093 +18841,190.61,44.808 +18842,188.88,45.554 +18843,187.17,46.282 +18844,185.47,46.993 +18845,189.39,44.866 +18846,187.63,45.558 +18847,185.88,46.234 +18848,184.14,46.892 +18849,188.18,44.924 +18850,186.38,45.562 +18851,184.59,46.184 +18852,182.8,46.791 +18853,186.96,44.983 +18854,185.12,45.566 +18855,183.29,46.135 +18856,181.47,46.689 +18857,185.74,45.042 +18858,183.87,45.57 +18859,182,46.086 +18860,180.14,46.586 +18861,184.52,45.101 +18862,182.61,45.575 +18863,180.71,46.036 +18864,178.81,46.483 +18865,183.29,45.161 +18866,181.36,45.58 +18867,179.42,45.986 +18868,177.48,46.379 +18869,182.07,45.221 +18870,180.1,45.585 +18871,178.13,45.937 +18872,176.16,46.275 +18873,180.84,45.282 +18874,178.85,45.59 +18875,176.84,45.887 +18876,174.83,46.17 +18877,179.61,45.342 +18878,177.59,45.595 +18879,175.56,45.837 +18880,173.51,46.065 +18881,178.38,45.403 +18882,176.33,45.601 +18883,174.27,45.787 +18884,172.18,45.96 +18885,177.15,45.464 +18886,175.08,45.607 +18887,172.98,45.737 +18888,170.86,45.854 +18889,175.91,45.526 +18890,173.82,45.612 +18891,171.69,45.687 +18892,169.54,45.747 +18893,174.68,45.587 +18894,172.56,45.618 +18895,170.41,45.636 +18896,168.23,45.641 +18897,173.44,45.648 +18898,171.3,45.624 +18899,169.12,45.586 +18900,166.91,45.534 +18901,172.2,45.71 +18902,170.04,45.63 +18903,167.84,45.536 +18904,165.6,45.427 +18905,170.95,45.771 +18906,168.78,45.636 +18907,166.56,45.486 +18908,164.28,45.32 +18909,169.71,45.832 +18910,167.52,45.642 +18911,165.27,45.436 +18912,162.97,45.213 +18913,168.46,45.893 +18914,166.26,45.648 +18915,163.99,45.386 +18916,161.66,45.106 +18917,167.22,45.954 +18918,164.99,45.654 +18919,162.71,45.336 +18920,160.36,44.998 +18921,165.97,46.014 +18922,163.73,45.66 +18923,161.43,45.286 +18924,159.05,44.891 +18925,164.71,46.075 +18926,162.47,45.666 +18927,160.15,45.236 +18928,157.75,44.784 +18929,163.46,46.135 +18930,161.2,45.672 +18931,158.87,45.187 +18932,156.45,44.677 +18933,162.21,46.195 +18934,159.94,45.678 +18935,157.59,45.137 +18936,155.15,44.57 +18937,160.95,46.254 +18938,158.68,45.684 +18939,156.31,45.088 +18940,153.85,44.463 +18941,159.69,46.313 +18942,157.41,45.69 +18943,155.04,45.038 +18944,152.55,44.357 +18945,158.43,46.371 +18946,156.14,45.695 +18947,153.76,44.989 +18948,151.26,44.251 +18949,157.16,46.429 +18950,154.88,45.701 +18951,152.48,44.941 +18952,149.97,44.145 +18953,155.9,46.487 +18954,153.61,45.706 +18955,151.21,44.892 +18956,148.68,44.04 +18957,154.63,46.544 +18958,152.34,45.712 +18959,149.93,44.843 +18960,147.39,43.935 +18961,153.36,46.6 +18962,151.07,45.717 +18963,148.66,44.795 +18964,146.11,43.83 +18965,152.09,46.655 +18966,149.81,45.722 +18967,147.39,44.747 +18968,144.82,43.727 +18969,150.82,46.71 +18970,148.54,45.727 +18971,146.12,44.699 +18972,143.54,43.623 +18973,149.55,46.765 +18974,147.27,45.732 +18975,144.85,44.652 +18976,142.26,43.521 +18977,148.27,46.818 +18978,145.99,45.736 +18979,143.58,44.605 +18980,140.98,43.419 +18981,146.99,46.871 +18982,144.72,45.74 +18983,142.31,44.558 +18984,139.71,43.318 +18985,145.71,46.922 +18986,143.45,45.744 +18987,141.04,44.512 +18988,138.44,43.217 +18989,144.43,46.973 +18990,142.18,45.748 +18991,139.77,44.465 +18992,137.17,43.117 +18993,143.15,47.024 +18994,140.91,45.752 +18995,138.5,44.42 +18996,135.9,43.019 +18997,141.86,47.073 +18998,139.63,45.755 +18999,137.24,44.374 +19000,134.63,42.921 +19001,140.58,47.121 +19002,138.36,45.758 +19003,135.97,44.329 +19004,133.37,42.824 +19005,139.29,47.168 +19006,137.08,45.761 +19007,134.7,44.284 +19008,132.11,42.728 +19009,138,47.214 +19010,135.81,45.763 +19011,133.44,44.24 +19012,130.85,42.633 +19013,136.71,47.26 +19014,134.53,45.766 +19015,132.18,44.196 +19016,129.59,42.54 +19017,135.41,47.304 +19018,133.26,45.767 +19019,130.91,44.153 +19020,128.34,42.447 +19021,134.12,47.347 +19022,131.98,45.769 +19023,129.65,44.11 +19024,127.09,42.356 +19025,132.82,47.388 +19026,130.7,45.77 +19027,128.39,44.067 +19028,125.84,42.266 +19029,131.52,47.429 +19030,129.43,45.771 +19031,127.13,44.025 +19032,124.59,42.177 +19033,130.22,47.469 +19034,128.15,45.771 +19035,125.87,43.983 +19036,123.34,42.089 +19037,128.92,47.507 +19038,126.87,45.772 +19039,124.61,43.942 +19040,122.1,42.003 +19041,127.62,47.544 +19042,125.59,45.771 +19043,123.35,43.902 +19044,120.86,41.918 +19045,126.31,47.579 +19046,124.31,45.771 +19047,122.1,43.862 +19048,119.62,41.835 +19049,125.01,47.614 +19050,123.03,45.77 +19051,120.84,43.822 +19052,118.38,41.753 +19053,123.7,47.647 +19054,121.75,45.768 +19055,119.58,43.783 +19056,117.15,41.673 +19057,122.39,47.679 +19058,120.47,45.766 +19059,118.33,43.745 +19060,115.92,41.594 +19061,121.08,47.709 +19062,119.19,45.764 +19063,117.08,43.707 +19064,114.69,41.517 +19065,119.77,47.738 +19066,117.9,45.761 +19067,115.82,43.669 +19068,113.46,41.442 +19069,118.46,47.765 +19070,116.62,45.758 +19071,114.57,43.633 +19072,112.24,41.368 +19073,117.14,47.792 +19074,115.34,45.754 +19075,113.32,43.597 +19076,111.01,41.296 +19077,115.83,47.816 +19078,114.05,45.75 +19079,112.06,43.561 +19080,109.79,41.226 +19081,114.51,47.839 +19082,112.77,45.745 +19083,110.81,43.526 +19084,108.57,41.157 +19085,113.19,47.861 +19086,111.49,45.74 +19087,109.56,43.492 +19088,107.36,41.091 +19089,111.87,47.881 +19090,110.2,45.735 +19091,108.31,43.458 +19092,106.14,41.026 +19093,110.55,47.9 +19094,108.92,45.729 +19095,107.06,43.425 +19096,104.93,40.963 +19097,109.23,47.917 +19098,107.63,45.722 +19099,105.81,43.393 +19100,103.72,40.902 +19101,107.91,47.932 +19102,106.34,45.715 +19103,104.57,43.361 +19104,102.51,40.843 +19105,106.59,47.946 +19106,105.06,45.707 +19107,103.32,43.33 +19108,101.3,40.786 +19109,105.26,47.958 +19110,103.77,45.699 +19111,102.07,43.3 +19112,100.1,40.731 +19113,103.94,47.969 +19114,102.48,45.691 +19115,100.83,43.27 +19116,98.894,40.678 +19117,102.61,47.977 +19118,101.2,45.681 +19119,99.581,43.241 +19120,97.692,40.627 +19121,101.28,47.985 +19122,99.909,45.672 +19123,98.336,43.213 +19124,96.493,40.578 +19125,99.953,47.99 +19126,98.621,45.662 +19127,97.092,43.186 +19128,95.295,40.531 +19129,98.623,47.994 +19130,97.333,45.651 +19131,95.848,43.159 +19132,94.099,40.486 +19133,97.293,47.997 +19134,96.044,45.639 +19135,94.604,43.133 +19136,92.904,40.444 +19137,95.961,47.997 +19138,94.755,45.628 +19139,93.361,43.107 +19140,91.711,40.404 +19141,94.629,47.996 +19142,93.466,45.615 +19143,92.119,43.083 +19144,90.52,40.365 +19145,93.296,47.993 +19146,92.177,45.602 +19147,90.877,43.059 +19148,89.33,40.33 +19149,91.963,47.989 +19150,90.887,45.589 +19151,89.635,43.035 +19152,88.142,40.296 +19153,90.628,47.982 +19154,89.598,45.574 +19155,88.394,43.013 +19156,86.955,40.264 +19157,89.293,47.974 +19158,88.308,45.56 +19159,87.154,42.991 +19160,85.769,40.235 +19161,87.957,47.964 +19162,87.017,45.544 +19163,85.913,42.97 +19164,84.585,40.208 +19165,86.621,47.953 +19166,85.727,45.529 +19167,84.673,42.95 +19168,83.402,40.183 +19169,85.284,47.94 +19170,84.437,45.512 +19171,83.434,42.93 +19172,82.219,40.16 +19173,83.947,47.924 +19174,83.146,45.495 +19175,82.195,42.912 +19176,81.039,40.14 +19177,82.609,47.908 +19178,81.855,45.478 +19179,80.956,42.894 +19180,79.859,40.122 +19181,81.27,47.889 +19182,80.564,45.46 +19183,79.718,42.876 +19184,78.68,40.106 +19185,79.932,47.869 +19186,79.273,45.441 +19187,78.479,42.86 +19188,77.501,40.093 +19189,78.592,47.846 +19190,77.982,45.422 +19191,77.241,42.844 +19192,76.324,40.081 +19193,77.253,47.823 +19194,76.69,45.402 +19195,76.004,42.829 +19196,75.148,40.073 +19197,75.913,47.797 +19198,75.399,45.381 +19199,74.767,42.815 +19200,73.972,40.066 +19201,74.572,47.769 +19202,74.108,45.36 +19203,73.529,42.801 +19204,72.797,40.061 +19205,73.232,47.74 +19206,72.816,45.339 +19207,72.293,42.789 +19208,71.622,40.059 +19209,71.891,47.709 +19210,71.525,45.317 +19211,71.056,42.777 +19212,70.448,40.059 +19213,70.55,47.676 +19214,70.233,45.294 +19215,69.819,42.765 +19216,69.275,40.061 +19217,69.209,47.642 +19218,68.942,45.27 +19219,68.583,42.755 +19220,68.101,40.066 +19221,67.868,47.606 +19222,67.65,45.247 +19223,67.347,42.745 +19224,66.928,40.072 +19225,66.527,47.568 +19226,66.359,45.222 +19227,66.111,42.736 +19228,65.756,40.081 +19229,65.185,47.528 +19230,65.067,45.197 +19231,64.875,42.728 +19232,64.583,40.092 +19233,63.844,47.486 +19234,63.776,45.172 +19235,63.639,42.72 +19236,63.411,40.105 +19237,62.502,47.443 +19238,62.484,45.146 +19239,62.404,42.713 +19240,62.238,40.121 +19241,61.161,47.398 +19242,61.193,45.119 +19243,61.168,42.707 +19244,61.066,40.138 +19245,59.82,47.352 +19246,59.902,45.092 +19247,59.932,42.702 +19248,59.893,40.158 +19249,58.479,47.303 +19250,58.611,45.064 +19251,58.697,42.697 +19252,58.72,40.179 +19253,57.138,47.253 +19254,57.32,45.036 +19255,57.461,42.693 +19256,57.547,40.203 +19257,55.797,47.202 +19258,56.029,45.007 +19259,56.225,42.69 +19260,56.374,40.228 +19261,54.456,47.148 +19262,54.738,44.978 +19263,54.99,42.687 +19264,55.2,40.256 +19265,53.116,47.093 +19266,53.448,44.948 +19267,53.754,42.685 +19268,54.026,40.286 +19269,51.776,47.037 +19270,52.157,44.917 +19271,52.518,42.684 +19272,52.852,40.317 +19273,50.436,46.979 +19274,50.867,44.887 +19275,51.283,42.683 +19276,51.677,40.351 +19277,49.097,46.919 +19278,49.577,44.855 +19279,50.047,42.683 +19280,50.501,40.386 +19281,47.758,46.857 +19282,48.288,44.823 +19283,48.811,42.684 +19284,49.324,40.423 +19285,46.42,46.794 +19286,46.998,44.791 +19287,47.574,42.685 +19288,48.147,40.462 +19289,45.082,46.73 +19290,45.709,44.758 +19291,46.338,42.687 +19292,46.969,40.503 +19293,43.745,46.664 +19294,44.42,44.725 +19295,45.102,42.69 +19296,45.79,40.546 +19297,42.408,46.596 +19298,43.131,44.691 +19299,43.865,42.693 +19300,44.611,40.59 +19301,41.071,46.527 +19302,41.843,44.657 +19303,42.628,42.697 +19304,43.43,40.636 +19305,39.736,46.457 +19306,40.555,44.622 +19307,41.391,42.702 +19308,42.248,40.683 +19309,38.401,46.385 +19310,39.267,44.587 +19311,40.154,42.707 +19312,41.066,40.733 +19313,37.066,46.312 +19314,37.979,44.552 +19315,38.916,42.712 +19316,39.882,40.783 +19317,35.733,46.237 +19318,36.692,44.516 +19319,37.678,42.718 +19320,38.697,40.836 +19321,34.4,46.161 +19322,35.405,44.479 +19323,36.44,42.725 +19324,37.511,40.889 +19325,33.068,46.083 +19326,34.119,44.443 +19327,35.202,42.732 +19328,36.323,40.945 +19329,31.737,46.004 +19330,32.833,44.406 +19331,33.963,42.74 +19332,35.134,41.001 +19333,30.406,45.924 +19334,31.547,44.368 +19335,32.724,42.749 +19336,33.944,41.059 +19337,29.077,45.843 +19338,30.262,44.33 +19339,31.485,42.757 +19340,32.752,41.118 +19341,27.748,45.76 +19342,28.977,44.292 +19343,30.245,42.767 +19344,31.56,41.179 +19345,26.421,45.676 +19346,27.693,44.254 +19347,29.005,42.776 +19348,30.365,41.241 +19349,25.094,45.591 +19350,26.409,44.215 +19351,27.765,42.787 +19352,29.169,41.303 +19353,23.769,45.505 +19354,25.125,44.175 +19355,26.524,42.797 +19356,27.972,41.368 +19357,22.444,45.418 +19358,23.842,44.136 +19359,25.283,42.809 +19360,26.773,41.433 +19361,21.121,45.329 +19362,22.56,44.096 +19363,24.041,42.82 +19364,25.572,41.499 +19365,19.799,45.24 +19366,21.278,44.056 +19367,22.799,42.832 +19368,24.37,41.566 +19369,18.478,45.149 +19370,19.996,44.016 +19371,21.557,42.844 +19372,23.166,41.634 +19373,17.158,45.058 +19374,18.715,43.975 +19375,20.314,42.857 +19376,21.96,41.703 +19377,15.84,44.965 +19378,17.434,43.934 +19379,19.071,42.87 +19380,20.753,41.773 +19381,14.522,44.872 +19382,16.154,43.893 +19383,17.827,42.884 +19384,19.543,41.844 +19385,13.206,44.778 +19386,14.875,43.852 +19387,16.582,42.898 +19388,18.333,41.915 +19389,11.891,44.682 +19390,13.596,43.81 +19391,15.338,42.912 +19392,17.12,41.988 +19393,10.578,44.586 +19394,12.318,43.768 +19395,14.092,42.926 +19396,15.905,42.06 +19397,9.2662,44.49 +19398,11.04,43.726 +19399,12.847,42.941 +19400,14.689,42.134 +19401,7.9557,44.392 +19402,9.7627,43.684 +19403,11.6,42.956 +19404,13.471,42.208 +19405,6.6466,44.294 +19406,8.4861,43.642 +19407,10.354,42.972 +19408,12.251,42.283 +19409,5.3391,44.195 +19410,7.2101,43.6 +19411,9.1062,42.987 +19412,11.029,42.358 +19413,4.033,44.095 +19414,5.9348,43.557 +19415,7.8583,43.003 +19416,9.8051,42.433 +19417,2.7285,43.995 +19418,4.66,43.515 +19419,6.6099,43.019 +19420,8.5794,42.509 +19421,1.4256,43.894 +19422,3.3858,43.472 +19423,5.361,43.035 +19424,7.3518,42.585 +19425,0.12423,43.793 +19426,2.1123,43.429 +19427,4.1114,43.052 +19428,6.1223,42.662 +19429,358.82,43.692 +19430,0.83945,43.386 +19431,2.8614,43.069 +19432,4.8909,42.739 +19433,357.53,43.59 +19434,359.57,43.344 +19435,1.6107,43.085 +19436,3.6575,42.816 +19437,356.23,43.487 +19438,358.3,43.301 +19439,0.3595,43.102 +19440,2.4222,42.893 +19441,354.94,43.384 +19442,357.02,43.258 +19443,359.11,43.119 +19444,1.185,42.97 +19445,353.64,43.281 +19446,355.75,43.215 +19447,357.86,43.137 +19448,359.95,43.048 +19449,352.35,43.178 +19450,354.48,43.172 +19451,356.6,43.154 +19452,358.7,43.125 +19453,351.06,43.074 +19454,353.22,43.129 +19455,355.35,43.171 +19456,357.46,43.202 +19457,349.77,42.971 +19458,351.95,43.086 +19459,354.09,43.189 +19460,356.22,43.279 +19461,348.49,42.867 +19462,350.68,43.043 +19463,352.84,43.206 +19464,354.97,43.357 +19465,347.2,42.763 +19466,349.41,43.001 +19467,351.58,43.224 +19468,353.72,43.434 +19469,345.92,42.659 +19470,348.15,42.958 +19471,350.33,43.242 +19472,352.47,43.51 +19473,344.64,42.555 +19474,346.88,42.916 +19475,349.07,43.259 +19476,351.22,43.587 +19477,343.36,42.451 +19478,345.62,42.873 +19479,347.82,43.277 +19480,349.96,43.663 +19481,342.09,42.347 +19482,344.35,42.831 +19483,346.56,43.294 +19484,348.71,43.739 +19485,340.81,42.244 +19486,343.09,42.789 +19487,345.3,43.312 +19488,347.45,43.814 +19489,339.54,42.141 +19490,341.83,42.747 +19491,344.04,43.33 +19492,346.19,43.89 +19493,338.27,42.038 +19494,340.57,42.705 +19495,342.78,43.347 +19496,344.93,43.964 +19497,337,41.935 +19498,339.3,42.664 +19499,341.52,43.364 +19500,343.66,44.038 +19501,335.74,41.833 +19502,338.04,42.623 +19503,340.26,43.382 +19504,342.4,44.112 +19505,334.47,41.731 +19506,336.78,42.581 +19507,339,43.399 +19508,341.13,44.185 +19509,333.21,41.629 +19510,335.53,42.541 +19511,337.74,43.416 +19512,339.86,44.257 +19513,331.95,41.528 +19514,334.27,42.5 +19515,336.47,43.433 +19516,338.59,44.329 +19517,330.69,41.428 +19518,333.01,42.46 +19519,335.21,43.45 +19520,337.31,44.4 +19521,329.44,41.328 +19522,331.75,42.42 +19523,333.95,43.466 +19524,336.04,44.47 +19525,328.18,41.229 +19526,330.5,42.38 +19527,332.68,43.483 +19528,334.76,44.54 +19529,326.93,41.131 +19530,329.24,42.341 +19531,331.42,43.499 +19532,333.48,44.609 +19533,325.68,41.033 +19534,327.99,42.302 +19535,330.15,43.515 +19536,332.2,44.676 +19537,324.44,40.936 +19538,326.73,42.263 +19539,328.89,43.531 +19540,330.92,44.743 +19541,323.19,40.84 +19542,325.48,42.225 +19543,327.62,43.546 +19544,329.64,44.809 +19545,321.95,40.745 +19546,324.23,42.187 +19547,326.35,43.561 +19548,328.35,44.875 +19549,320.71,40.651 +19550,322.97,42.15 +19551,325.09,43.577 +19552,327.07,44.939 +19553,319.47,40.558 +19554,321.72,42.113 +19555,323.82,43.591 +19556,325.78,45.002 +19557,318.23,40.466 +19558,320.47,42.076 +19559,322.55,43.606 +19560,324.49,45.064 +19561,317,40.375 +19562,319.22,42.04 +19563,321.28,43.62 +19564,323.2,45.125 +19565,315.76,40.286 +19566,317.97,42.005 +19567,320.01,43.634 +19568,321.9,45.185 +19569,314.53,40.197 +19570,316.73,41.969 +19571,318.74,43.647 +19572,320.61,45.243 +19573,313.3,40.11 +19574,315.48,41.935 +19575,317.47,43.661 +19576,319.31,45.301 +19577,312.08,40.024 +19578,314.23,41.901 +19579,316.2,43.674 +19580,318.02,45.357 +19581,310.85,39.939 +19582,312.99,41.867 +19583,314.93,43.686 +19584,316.72,45.412 +19585,309.63,39.856 +19586,311.74,41.834 +19587,313.65,43.698 +19588,315.42,45.466 +19589,308.41,39.775 +19590,310.49,41.801 +19591,312.38,43.71 +19592,314.12,45.518 +19593,307.19,39.694 +19594,309.25,41.769 +19595,311.11,43.722 +19596,312.81,45.569 +19597,305.98,39.616 +19598,308.01,41.738 +19599,309.83,43.733 +19600,311.51,45.619 +19601,304.76,39.539 +19602,306.76,41.707 +19603,308.56,43.743 +19604,310.2,45.668 +19605,303.55,39.463 +19606,305.52,41.677 +19607,307.29,43.753 +19608,308.9,45.715 +19609,302.34,39.389 +19610,304.28,41.647 +19611,306.01,43.763 +19612,307.59,45.76 +19613,301.13,39.317 +19614,303.04,41.618 +19615,304.74,43.773 +19616,306.28,45.804 +19617,299.93,39.247 +19618,301.8,41.59 +19619,303.46,43.781 +19620,304.97,45.847 +19621,298.72,39.179 +19622,300.56,41.562 +19623,302.18,43.79 +19624,303.66,45.888 +19625,297.52,39.112 +19626,299.32,41.535 +19627,300.91,43.798 +19628,302.34,45.928 +19629,296.32,39.047 +19630,298.08,41.508 +19631,299.63,43.805 +19632,301.03,45.966 +19633,295.12,38.984 +19634,296.84,41.482 +19635,298.35,43.812 +19636,299.71,46.003 +19637,293.93,38.923 +19638,295.6,41.457 +19639,297.07,43.819 +19640,298.4,46.038 +19641,292.73,38.864 +19642,294.36,41.433 +19643,295.8,43.825 +19644,297.08,46.071 +19645,291.54,38.808 +19646,293.13,41.409 +19647,294.52,43.83 +19648,295.76,46.103 +19649,290.34,38.753 +19650,291.89,41.386 +19651,293.24,43.835 +19652,294.44,46.133 +19653,289.15,38.7 +19654,290.65,41.364 +19655,291.96,43.84 +19656,293.12,46.161 +19657,287.97,38.649 +19658,289.42,41.343 +19659,290.68,43.844 +19660,291.8,46.188 +19661,286.78,38.601 +19662,288.18,41.322 +19663,289.4,43.847 +19664,290.48,46.213 +19665,285.59,38.555 +19666,286.95,41.302 +19667,288.12,43.85 +19668,289.16,46.237 +19669,284.41,38.511 +19670,285.71,41.282 +19671,286.84,43.853 +19672,287.84,46.259 +19673,283.22,38.469 +19674,284.48,41.264 +19675,285.56,43.854 +19676,286.51,46.279 +19677,282.04,38.429 +19678,283.24,41.246 +19679,284.28,43.856 +19680,285.19,46.297 +19681,280.86,38.392 +19682,282.01,41.229 +19683,283,43.856 +19684,283.86,46.314 +19685,279.68,38.357 +19686,280.78,41.213 +19687,281.72,43.857 +19688,282.54,46.328 +19689,278.5,38.324 +19690,279.55,41.197 +19691,280.43,43.856 +19692,281.21,46.341 +19693,277.33,38.294 +19694,278.31,41.183 +19695,279.15,43.855 +19696,279.89,46.353 +19697,276.15,38.266 +19698,277.08,41.169 +19699,277.87,43.854 +19700,278.56,46.362 +19701,274.97,38.24 +19702,275.85,41.156 +19703,276.59,43.852 +19704,277.23,46.37 +19705,273.8,38.217 +19706,274.62,41.144 +19707,275.31,43.849 +19708,275.9,46.376 +19709,272.63,38.196 +19710,273.39,41.132 +19711,274.03,43.846 +19712,274.57,46.38 +19713,271.45,38.178 +19714,272.16,41.121 +19715,272.74,43.842 +19716,273.25,46.382 +19717,270.28,38.162 +19718,270.93,41.111 +19719,271.46,43.837 +19720,271.92,46.383 +19721,269.11,38.148 +19722,269.7,41.102 +19723,270.18,43.832 +19724,270.59,46.382 +19725,267.94,38.137 +19726,268.46,41.094 +19727,268.89,43.827 +19728,269.26,46.378 +19729,266.77,38.128 +19730,267.23,41.087 +19731,267.61,43.821 +19732,267.93,46.373 +19733,265.6,38.122 +19734,266,41.08 +19735,266.33,43.814 +19736,266.6,46.367 +19737,264.43,38.118 +19738,264.77,41.074 +19739,265.05,43.806 +19740,265.27,46.358 +19741,263.26,38.117 +19742,263.54,41.069 +19743,263.76,43.799 +19744,263.94,46.348 +19745,262.09,38.118 +19746,262.31,41.065 +19747,262.48,43.79 +19748,262.6,46.335 +19749,260.92,38.121 +19750,261.09,41.062 +19751,261.2,43.781 +19752,261.27,46.321 +19753,259.75,38.127 +19754,259.86,41.059 +19755,259.92,43.771 +19756,259.94,46.306 +19757,258.58,38.135 +19758,258.63,41.057 +19759,258.63,43.761 +19760,258.61,46.288 +19761,257.41,38.146 +19762,257.4,41.056 +19763,257.35,43.75 +19764,257.28,46.268 +19765,256.24,38.159 +19766,256.17,41.056 +19767,256.07,43.739 +19768,255.95,46.247 +19769,255.07,38.174 +19770,254.94,41.057 +19771,254.78,43.727 +19772,254.62,46.224 +19773,253.9,38.192 +19774,253.71,41.058 +19775,253.5,43.714 +19776,253.29,46.199 +19777,252.73,38.212 +19778,252.48,41.061 +19779,252.22,43.701 +19780,251.96,46.172 +19781,251.56,38.235 +19782,251.25,41.064 +19783,250.94,43.687 +19784,250.63,46.144 +19785,250.39,38.26 +19786,250.02,41.067 +19787,249.65,43.673 +19788,249.3,46.114 +19789,249.22,38.287 +19790,248.79,41.072 +19791,248.37,43.658 +19792,247.97,46.082 +19793,248.05,38.316 +19794,247.56,41.077 +19795,247.09,43.643 +19796,246.64,46.048 +19797,246.88,38.348 +19798,246.33,41.083 +19799,245.81,43.627 +19800,245.31,46.012 +19801,245.7,38.382 +19802,245.1,41.09 +19803,244.53,43.61 +19804,243.99,45.975 +19805,244.53,38.418 +19806,243.87,41.098 +19807,243.25,43.593 +19808,242.66,45.936 +19809,243.36,38.456 +19810,242.64,41.106 +19811,241.96,43.576 +19812,241.33,45.896 +19813,242.18,38.496 +19814,241.4,41.115 +19815,240.68,43.557 +19816,240,45.853 +19817,241,38.539 +19818,240.17,41.125 +19819,239.4,43.539 +19820,238.68,45.809 +19821,239.83,38.583 +19822,238.94,41.136 +19823,238.12,43.52 +19824,237.35,45.763 +19825,238.65,38.63 +19826,237.71,41.147 +19827,236.84,43.5 +19828,236.03,45.716 +19829,237.47,38.678 +19830,236.48,41.159 +19831,235.56,43.48 +19832,234.7,45.667 +19833,236.29,38.729 +19834,235.25,41.172 +19835,234.28,43.459 +19836,233.38,45.617 +19837,235.1,38.781 +19838,234.01,41.185 +19839,233,43.438 +19840,232.06,45.564 +19841,233.92,38.836 +19842,232.78,41.199 +19843,231.72,43.417 +19844,230.74,45.511 +19845,232.73,38.892 +19846,231.55,41.214 +19847,230.45,43.394 +19848,229.41,45.455 +19849,231.55,38.95 +19850,230.31,41.229 +19851,229.17,43.372 +19852,228.09,45.398 +19853,230.36,39.01 +19854,229.08,41.245 +19855,227.89,43.349 +19856,226.77,45.34 +19857,229.17,39.072 +19858,227.84,41.262 +19859,226.61,43.325 +19860,225.46,45.28 +19861,227.98,39.135 +19862,226.61,41.279 +19863,225.33,43.302 +19864,224.14,45.219 +19865,226.79,39.2 +19866,225.37,41.297 +19867,224.06,43.277 +19868,222.82,45.156 +19869,225.6,39.267 +19870,224.14,41.316 +19871,222.78,43.252 +19872,221.51,45.092 +19873,224.4,39.335 +19874,222.9,41.335 +19875,221.51,43.227 +19876,220.19,45.026 +19877,223.2,39.404 +19878,221.66,41.354 +19879,220.23,43.202 +19880,218.88,44.959 +19881,222,39.476 +19882,220.43,41.375 +19883,218.95,43.176 +19884,217.57,44.891 +19885,220.8,39.548 +19886,219.19,41.395 +19887,217.68,43.15 +19888,216.25,44.821 +19889,219.6,39.622 +19890,217.95,41.417 +19891,216.41,43.123 +19892,214.94,44.751 +19893,218.4,39.697 +19894,216.71,41.439 +19895,215.13,43.096 +19896,213.63,44.678 +19897,217.19,39.774 +19898,215.47,41.461 +19899,213.86,43.069 +19900,212.33,44.605 +19901,215.98,39.852 +19902,214.23,41.484 +19903,212.59,43.041 +19904,211.02,44.53 +19905,214.78,39.931 +19906,212.99,41.507 +19907,211.31,43.013 +19908,209.72,44.455 +19909,213.56,40.011 +19910,211.75,41.531 +19911,210.04,42.985 +19912,208.41,44.378 +19913,212.35,40.092 +19914,210.51,41.555 +19915,208.77,42.956 +19916,207.11,44.3 +19917,211.14,40.175 +19918,209.27,41.58 +19919,207.5,42.927 +19920,205.81,44.22 +19921,209.92,40.258 +19922,208.03,41.605 +19923,206.23,42.898 +19924,204.51,44.14 +19925,208.7,40.342 +19926,206.79,41.631 +19927,204.96,42.868 +19928,203.21,44.059 +19929,207.48,40.427 +19930,205.54,41.657 +19931,203.69,42.839 +19932,201.91,43.977 +19933,206.26,40.513 +19934,204.3,41.683 +19935,202.42,42.809 +19936,200.62,43.894 +19937,205.03,40.6 +19938,203.05,41.71 +19939,201.15,42.779 +19940,199.32,43.81 +19941,203.81,40.688 +19942,201.81,41.737 +19943,199.89,42.749 +19944,198.03,43.725 +19945,202.58,40.776 +19946,200.56,41.764 +19947,198.62,42.718 +19948,196.74,43.639 +19949,201.35,40.865 +19950,199.31,41.792 +19951,197.35,42.687 +19952,195.45,43.553 +19953,200.11,40.955 +19954,198.07,41.82 +19955,196.09,42.657 +19956,194.16,43.466 +19957,198.88,41.045 +19958,196.82,41.848 +19959,194.82,42.626 +19960,192.88,43.378 +19961,197.64,41.135 +19962,195.57,41.877 +19963,193.56,42.595 +19964,191.59,43.289 +19965,196.4,41.226 +19966,194.32,41.906 +19967,192.29,42.563 +19968,190.31,43.2 +19969,195.16,41.318 +19970,193.07,41.935 +19971,191.03,42.532 +19972,189.03,43.11 +19973,193.92,41.409 +19974,191.82,41.964 +19975,189.77,42.501 +19976,187.75,43.02 +19977,192.68,41.501 +19978,190.57,41.994 +19979,188.5,42.469 +19980,186.47,42.929 +19981,191.43,41.594 +19982,189.32,42.023 +19983,187.24,42.438 +19984,185.2,42.837 +19985,190.18,41.686 +19986,188.07,42.053 +19987,185.98,42.406 +19988,183.92,42.746 +19989,188.93,41.779 +19990,186.81,42.083 +19991,184.72,42.375 +19992,182.65,42.653 +19993,187.68,41.871 +19994,185.56,42.113 +19995,183.46,42.343 +19996,181.38,42.561 +19997,186.42,41.964 +19998,184.31,42.144 +19999,182.2,42.312 +20000,180.11,42.468 +20001,185.17,42.057 +20002,183.05,42.174 +20003,180.95,42.28 +20004,178.85,42.375 +20005,183.91,42.15 +20006,181.8,42.205 +20007,179.69,42.249 +20008,177.58,42.282 +20009,182.65,42.242 +20010,180.54,42.235 +20011,178.43,42.217 +20012,176.32,42.188 +20013,181.39,42.335 +20014,179.28,42.266 +20015,177.17,42.186 +20016,175.06,42.095 +20017,180.12,42.427 +20018,178.03,42.297 +20019,175.92,42.155 +20020,173.8,42.001 +20021,178.86,42.519 +20022,176.77,42.327 +20023,174.66,42.123 +20024,172.54,41.907 +20025,177.59,42.611 +20026,175.51,42.358 +20027,173.41,42.092 +20028,171.29,41.814 +20029,176.32,42.703 +20030,174.25,42.389 +20031,172.16,42.061 +20032,170.04,41.72 +20033,175.05,42.794 +20034,172.99,42.42 +20035,170.9,42.031 +20036,168.78,41.627 +20037,173.77,42.885 +20038,171.73,42.45 +20039,169.65,42 +20040,167.54,41.534 +20041,172.5,42.975 +20042,170.47,42.481 +20043,168.4,41.97 +20044,166.29,41.441 +20045,171.22,43.065 +20046,169.21,42.512 +20047,167.15,41.939 +20048,165.04,41.348 +20049,169.94,43.154 +20050,167.94,42.542 +20051,165.9,41.909 +20052,163.8,41.255 +20053,168.66,43.243 +20054,166.68,42.573 +20055,164.65,41.88 +20056,162.56,41.163 +20057,167.38,43.331 +20058,165.42,42.603 +20059,163.4,41.85 +20060,161.32,41.072 +20061,166.1,43.419 +20062,164.15,42.633 +20063,162.15,41.821 +20064,160.08,40.981 +20065,164.81,43.505 +20066,162.89,42.663 +20067,160.9,41.792 +20068,158.85,40.89 +20069,163.52,43.591 +20070,161.62,42.693 +20071,159.65,41.763 +20072,157.62,40.8 +20073,162.23,43.677 +20074,160.36,42.723 +20075,158.41,41.735 +20076,156.38,40.711 +20077,160.94,43.761 +20078,159.09,42.753 +20079,157.16,41.707 +20080,155.16,40.622 +20081,159.65,43.845 +20082,157.82,42.782 +20083,155.92,41.679 +20084,153.93,40.534 +20085,158.36,43.928 +20086,156.55,42.811 +20087,154.67,41.652 +20088,152.7,40.447 +20089,157.06,44.009 +20090,155.28,42.84 +20091,153.43,41.625 +20092,151.48,40.36 +20093,155.77,44.09 +20094,154.02,42.869 +20095,152.18,41.599 +20096,150.26,40.274 +20097,154.47,44.17 +20098,152.75,42.897 +20099,150.94,41.572 +20100,149.04,40.19 +20101,153.17,44.249 +20102,151.48,42.926 +20103,149.7,41.547 +20104,147.82,40.106 +20105,151.87,44.327 +20106,150.21,42.954 +20107,148.46,41.521 +20108,146.61,40.024 +20109,150.57,44.403 +20110,148.93,42.981 +20111,147.22,41.496 +20112,145.39,39.942 +20113,149.26,44.479 +20114,147.66,43.009 +20115,145.97,41.472 +20116,144.18,39.861 +20117,147.96,44.553 +20118,146.39,43.036 +20119,144.73,41.448 +20120,142.97,39.782 +20121,146.65,44.627 +20122,145.12,43.063 +20123,143.49,41.425 +20124,141.77,39.704 +20125,145.34,44.699 +20126,143.84,43.089 +20127,142.26,41.402 +20128,140.56,39.627 +20129,144.04,44.769 +20130,142.57,43.115 +20131,141.02,41.379 +20132,139.36,39.552 +20133,142.73,44.839 +20134,141.3,43.141 +20135,139.78,41.358 +20136,138.15,39.478 +20137,141.41,44.907 +20138,140.02,43.166 +20139,138.54,41.336 +20140,136.95,39.405 +20141,140.1,44.974 +20142,138.75,43.191 +20143,137.3,41.316 +20144,135.75,39.334 +20145,138.79,45.039 +20146,137.47,43.216 +20147,136.07,41.295 +20148,134.56,39.264 +20149,137.47,45.103 +20150,136.2,43.24 +20151,134.83,41.276 +20152,133.36,39.196 +20153,136.16,45.166 +20154,134.92,43.263 +20155,133.6,41.257 +20156,132.17,39.129 +20157,134.84,45.227 +20158,133.64,43.287 +20159,132.36,41.238 +20160,130.97,39.064 +20161,133.53,45.287 +20162,132.37,43.31 +20163,131.13,41.221 +20164,129.78,39.001 +20165,132.21,45.345 +20166,131.09,43.332 +20167,129.89,41.203 +20168,128.59,38.939 +20169,130.89,45.402 +20170,129.81,43.354 +20171,128.66,41.187 +20172,127.41,38.88 +20173,129.57,45.458 +20174,128.53,43.376 +20175,127.42,41.171 +20176,126.22,38.822 +20177,128.25,45.511 +20178,127.25,43.397 +20179,126.19,41.156 +20180,125.04,38.765 +20181,126.93,45.563 +20182,125.97,43.417 +20183,124.96,41.141 +20184,123.85,38.711 +20185,125.6,45.614 +20186,124.7,43.437 +20187,123.72,41.128 +20188,122.67,38.659 +20189,124.28,45.663 +20190,123.42,43.457 +20191,122.49,41.114 +20192,121.49,38.608 +20193,122.96,45.71 +20194,122.14,43.476 +20195,121.26,41.102 +20196,120.31,38.56 +20197,121.63,45.756 +20198,120.86,43.495 +20199,120.03,41.09 +20200,119.13,38.514 +20201,120.31,45.8 +20202,119.58,43.513 +20203,118.8,41.079 +20204,117.95,38.469 +20205,118.98,45.843 +20206,118.3,43.53 +20207,117.56,41.069 +20208,116.77,38.427 +20209,117.65,45.883 +20210,117.01,43.547 +20211,116.33,41.06 +20212,115.6,38.387 +20213,116.33,45.922 +20214,115.73,43.564 +20215,115.1,41.051 +20216,114.42,38.349 +20217,115,45.96 +20218,114.45,43.58 +20219,113.87,41.043 +20220,113.25,38.314 +20221,113.67,45.995 +20222,113.17,43.595 +20223,112.64,41.035 +20224,112.08,38.28 +20225,112.34,46.029 +20226,111.89,43.61 +20227,111.41,41.029 +20228,110.9,38.249 +20229,111.02,46.061 +20230,110.61,43.625 +20231,110.18,41.023 +20232,109.73,38.22 +20233,109.69,46.092 +20234,109.33,43.638 +20235,108.95,41.018 +20236,108.56,38.193 +20237,108.36,46.12 +20238,108.04,43.652 +20239,107.72,41.014 +20240,107.39,38.169 +20241,107.03,46.147 +20242,106.76,43.664 +20243,106.49,41.011 +20244,106.22,38.147 +20245,105.7,46.172 +20246,105.48,43.676 +20247,105.26,41.008 +20248,105.05,38.127 +20249,104.37,46.195 +20250,104.2,43.688 +20251,104.03,41.006 +20252,103.88,38.11 +20253,103.04,46.216 +20254,102.92,43.699 +20255,102.8,41.005 +20256,102.71,38.095 +20257,101.71,46.236 +20258,101.63,43.709 +20259,101.57,41.005 +20260,101.54,38.082 +20261,100.38,46.254 +20262,100.35,43.719 +20263,100.34,41.006 +20264,100.37,38.072 +20265,99.048,46.27 +20266,99.067,43.728 +20267,99.115,41.007 +20268,99.202,38.064 +20269,97.717,46.284 +20270,97.785,43.737 +20271,97.885,41.009 +20272,98.033,38.059 +20273,96.387,46.296 +20274,96.502,43.745 +20275,96.656,41.012 +20276,96.864,38.056 +20277,95.056,46.307 +20278,95.22,43.752 +20279,95.426,41.016 +20280,95.695,38.055 +20281,93.726,46.316 +20282,93.937,43.759 +20283,94.197,41.021 +20284,94.525,38.057 +20285,92.396,46.322 +20286,92.654,43.765 +20287,92.967,41.026 +20288,93.355,38.062 +20289,91.066,46.327 +20290,91.372,43.771 +20291,91.737,41.033 +20292,92.185,38.068 +20293,89.736,46.331 +20294,90.089,43.776 +20295,90.507,41.04 +20296,91.015,38.078 +20297,88.407,46.332 +20298,88.807,43.781 +20299,89.276,41.048 +20300,89.844,38.089 +20301,87.077,46.332 +20302,87.524,43.784 +20303,88.046,41.056 +20304,88.672,38.103 +20305,85.748,46.329 +20306,86.242,43.788 +20307,86.815,41.066 +20308,87.5,38.12 +20309,84.419,46.325 +20310,84.96,43.791 +20311,85.585,41.076 +20312,86.327,38.139 +20313,83.091,46.319 +20314,83.678,43.793 +20315,84.354,41.087 +20316,85.153,38.16 +20317,81.763,46.312 +20318,82.396,43.794 +20319,83.122,41.099 +20320,83.979,38.184 +20321,80.436,46.302 +20322,81.114,43.795 +20323,81.891,41.112 +20324,82.804,38.21 +20325,79.109,46.291 +20326,79.833,43.796 +20327,80.659,41.126 +20328,81.627,38.239 +20329,77.782,46.278 +20330,78.551,43.796 +20331,79.427,41.14 +20332,80.45,38.27 +20333,76.456,46.263 +20334,77.27,43.795 +20335,78.195,41.155 +20336,79.272,38.303 +20337,75.131,46.247 +20338,75.989,43.794 +20339,76.962,41.171 +20340,78.093,38.339 +20341,73.806,46.228 +20342,74.708,43.792 +20343,75.729,41.188 +20344,76.912,38.376 +20345,72.482,46.208 +20346,73.428,43.79 +20347,74.495,41.205 +20348,75.73,38.417 +20349,71.159,46.187 +20350,72.148,43.787 +20351,73.262,41.223 +20352,74.547,38.459 +20353,69.836,46.163 +20354,70.867,43.783 +20355,72.027,41.242 +20356,73.363,38.504 +20357,68.514,46.138 +20358,69.588,43.779 +20359,70.793,41.262 +20360,72.177,38.55 +20361,67.193,46.111 +20362,68.308,43.775 +20363,69.558,41.282 +20364,70.99,38.599 +20365,65.873,46.082 +20366,67.029,43.77 +20367,68.322,41.304 +20368,69.801,38.65 +20369,64.553,46.052 +20370,65.75,43.764 +20371,67.086,41.325 +20372,68.611,38.704 +20373,63.235,46.02 +20374,64.471,43.758 +20375,65.85,41.348 +20376,67.419,38.759 +20377,61.917,45.987 +20378,63.193,43.751 +20379,64.613,41.371 +20380,66.226,38.816 +20381,60.6,45.952 +20382,61.915,43.744 +20383,63.376,41.395 +20384,65.031,38.876 +20385,59.285,45.915 +20386,60.638,43.737 +20387,62.138,41.42 +20388,63.834,38.937 +20389,57.97,45.877 +20390,59.361,43.729 +20391,60.9,41.446 +20392,62.635,39 +20393,56.656,45.837 +20394,58.084,43.72 +20395,59.661,41.472 +20396,61.435,39.065 +20397,55.344,45.796 +20398,56.807,43.711 +20399,58.421,41.498 +20400,60.233,39.132 +20401,54.032,45.753 +20402,55.531,43.702 +20403,57.181,41.526 +20404,59.029,39.201 +20405,52.722,45.709 +20406,54.256,43.692 +20407,55.941,41.554 +20408,57.823,39.272 +20409,51.413,45.663 +20410,52.98,43.681 +20411,54.7,41.582 +20412,56.616,39.344 +20413,50.105,45.616 +20414,51.706,43.671 +20415,53.458,41.612 +20416,55.406,39.418 +20417,48.798,45.567 +20418,50.431,43.659 +20419,52.216,41.642 +20420,54.194,39.494 +20421,47.493,45.517 +20422,49.157,43.648 +20423,50.973,41.672 +20424,52.981,39.572 +20425,46.189,45.466 +20426,47.884,43.636 +20427,49.729,41.703 +20428,51.765,39.65 +20429,44.886,45.413 +20430,46.611,43.623 +20431,48.485,41.735 +20432,50.548,39.731 +20433,43.584,45.359 +20434,45.339,43.61 +20435,47.24,41.767 +20436,49.328,39.813 +20437,42.284,45.303 +20438,44.067,43.597 +20439,45.995,41.8 +20440,48.107,39.896 +20441,40.986,45.247 +20442,42.795,43.584 +20443,44.749,41.833 +20444,46.883,39.981 +20445,39.688,45.189 +20446,41.524,43.57 +20447,43.502,41.867 +20448,45.657,40.067 +20449,38.393,45.13 +20450,40.253,43.556 +20451,42.255,41.901 +20452,44.429,40.154 +20453,37.098,45.07 +20454,38.983,43.541 +20455,41.007,41.936 +20456,43.199,40.243 +20457,35.805,45.008 +20458,37.714,43.526 +20459,39.758,41.971 +20460,41.967,40.333 +20461,34.514,44.946 +20462,36.445,43.511 +20463,38.509,42.006 +20464,40.733,40.424 +20465,33.224,44.882 +20466,35.177,43.495 +20467,37.258,42.043 +20468,39.497,40.516 +20469,31.936,44.818 +20470,33.909,43.48 +20471,36.008,42.079 +20472,38.258,40.609 +20473,30.65,44.752 +20474,32.641,43.464 +20475,34.756,42.116 +20476,37.018,40.703 +20477,29.365,44.686 +20478,31.375,43.447 +20479,33.504,42.153 +20480,35.775,40.798 +20481,28.082,44.618 +20482,30.108,43.431 +20483,32.251,42.191 +20484,34.53,40.894 +20485,26.8,44.55 +20486,28.843,43.414 +20487,30.997,42.229 +20488,33.284,40.99 +20489,25.52,44.48 +20490,27.578,43.397 +20491,29.743,42.268 +20492,32.035,41.088 +20493,24.242,44.41 +20494,26.313,43.38 +20495,28.488,42.307 +20496,30.783,41.186 +20497,22.966,44.339 +20498,25.049,43.363 +20499,27.232,42.346 +20500,29.53,41.285 +20501,21.691,44.268 +20502,23.786,43.345 +20503,25.976,42.385 +20504,28.275,41.385 +20505,20.418,44.195 +20506,22.523,43.327 +20507,24.719,42.425 +20508,27.017,41.485 +20509,19.147,44.122 +20510,21.261,43.31 +20511,23.461,42.465 +20512,25.758,41.586 +20513,17.878,44.048 +20514,19.999,43.292 +20515,22.202,42.505 +20516,24.496,41.687 +20517,16.61,43.974 +20518,18.738,43.274 +20519,20.943,42.546 +20520,23.233,41.789 +20521,15.345,43.899 +20522,17.478,43.255 +20523,19.683,42.586 +20524,21.967,41.891 +20525,14.081,43.824 +20526,16.218,43.237 +20527,18.422,42.627 +20528,20.7,41.993 +20529,12.819,43.748 +20530,14.959,43.219 +20531,17.161,42.669 +20532,19.43,42.096 +20533,11.559,43.672 +20534,13.7,43.2 +20535,15.899,42.71 +20536,18.158,42.199 +20537,10.301,43.595 +20538,12.442,43.182 +20539,14.636,42.751 +20540,16.885,42.302 +20541,9.0443,43.518 +20542,11.185,43.164 +20543,13.372,42.793 +20544,15.609,42.405 +20545,7.7899,43.44 +20546,9.9282,43.145 +20547,12.108,42.835 +20548,14.331,42.509 +20549,6.5374,43.363 +20550,8.672,43.127 +20551,10.843,42.877 +20552,13.052,42.612 +20553,5.2869,43.285 +20554,7.4164,43.108 +20555,9.577,42.919 +20556,11.771,42.715 +20557,4.0382,43.206 +20558,6.1614,43.09 +20559,8.3106,42.961 +20560,10.487,42.819 +20561,2.7915,43.128 +20562,4.907,43.071 +20563,7.0435,43.003 +20564,9.2023,42.922 +20565,1.5468,43.05 +20566,3.6531,43.053 +20567,5.7757,43.045 +20568,7.9154,43.025 +20569,0.30397,42.971 +20570,2.3999,43.035 +20571,4.5073,43.087 +20572,6.6267,43.128 +20573,359.06,42.893 +20574,1.1473,43.017 +20575,3.2381,43.13 +20576,5.3362,43.231 +20577,357.82,42.815 +20578,359.9,42.999 +20579,1.9683,43.172 +20580,4.0439,43.333 +20581,356.59,42.736 +20582,358.64,42.981 +20583,0.69782,43.214 +20584,2.7499,43.436 +20585,355.35,42.658 +20586,357.39,42.963 +20587,359.43,43.257 +20588,1.4542,43.537 +20589,354.12,42.58 +20590,356.14,42.946 +20591,358.15,43.299 +20592,0.15684,43.639 +20593,352.89,42.502 +20594,354.89,42.928 +20595,356.88,43.341 +20596,358.86,43.74 +20597,351.66,42.425 +20598,353.64,42.911 +20599,355.61,43.383 +20600,357.56,43.84 +20601,350.43,42.348 +20602,352.39,42.894 +20603,354.34,43.425 +20604,356.25,43.94 +20605,349.21,42.271 +20606,351.15,42.877 +20607,353.06,43.467 +20608,354.95,44.04 +20609,347.98,42.194 +20610,349.9,42.861 +20611,351.79,43.509 +20612,353.65,44.138 +20613,346.76,42.119 +20614,348.65,42.844 +20615,350.51,43.55 +20616,352.34,44.236 +20617,345.54,42.043 +20618,347.41,42.828 +20619,349.23,43.592 +20620,351.03,44.334 +20621,344.32,41.968 +20622,346.16,42.813 +20623,347.96,43.633 +20624,349.72,44.431 +20625,343.11,41.894 +20626,344.91,42.797 +20627,346.68,43.674 +20628,348.41,44.526 +20629,341.89,41.82 +20630,343.67,42.782 +20631,345.4,43.715 +20632,347.1,44.622 +20633,340.68,41.747 +20634,342.42,42.767 +20635,344.12,43.756 +20636,345.78,44.716 +20637,339.47,41.675 +20638,341.18,42.753 +20639,342.85,43.797 +20640,344.47,44.809 +20641,338.26,41.604 +20642,339.94,42.738 +20643,341.57,43.837 +20644,343.15,44.902 +20645,337.05,41.533 +20646,338.69,42.725 +20647,340.29,43.877 +20648,341.83,44.993 +20649,335.85,41.464 +20650,337.45,42.711 +20651,339.01,43.917 +20652,340.51,45.084 +20653,334.64,41.395 +20654,336.21,42.698 +20655,337.72,43.957 +20656,339.19,45.173 +20657,333.44,41.327 +20658,334.97,42.686 +20659,336.44,43.996 +20660,337.87,45.262 +20661,332.24,41.26 +20662,333.73,42.673 +20663,335.16,44.035 +20664,336.55,45.349 +20665,331.04,41.195 +20666,332.49,42.662 +20667,333.88,44.074 +20668,335.23,45.435 +20669,329.85,41.13 +20670,331.25,42.65 +20671,332.59,44.112 +20672,333.9,45.52 +20673,328.65,41.067 +20674,330.01,42.64 +20675,331.31,44.15 +20676,332.58,45.604 +20677,327.46,41.005 +20678,328.77,42.629 +20679,330.03,44.188 +20680,331.25,45.687 +20681,326.26,40.944 +20682,327.53,42.619 +20683,328.74,44.226 +20684,329.92,45.769 +20685,325.07,40.884 +20686,326.29,42.61 +20687,327.46,44.263 +20688,328.59,45.849 +20689,323.88,40.826 +20690,325.05,42.601 +20691,326.17,44.299 +20692,327.26,45.928 +20693,322.69,40.769 +20694,323.81,42.593 +20695,324.89,44.336 +20696,325.93,46.005 +20697,321.51,40.713 +20698,322.57,42.585 +20699,323.6,44.371 +20700,324.6,46.082 +20701,320.32,40.659 +20702,321.33,42.578 +20703,322.32,44.407 +20704,323.27,46.157 +20705,319.14,40.607 +20706,320.1,42.571 +20707,321.03,44.442 +20708,321.94,46.23 +20709,317.95,40.556 +20710,318.86,42.565 +20711,319.74,44.477 +20712,320.6,46.302 +20713,316.77,40.506 +20714,317.62,42.559 +20715,318.45,44.511 +20716,319.27,46.373 +20717,315.59,40.459 +20718,316.39,42.555 +20719,317.17,44.545 +20720,317.93,46.442 +20721,314.41,40.413 +20722,315.15,42.55 +20723,315.88,44.578 +20724,316.6,46.51 +20725,313.23,40.368 +20726,313.91,42.546 +20727,314.59,44.611 +20728,315.26,46.576 +20729,312.05,40.326 +20730,312.68,42.543 +20731,313.3,44.643 +20732,313.92,46.641 +20733,310.87,40.285 +20734,311.44,42.541 +20735,312.01,44.675 +20736,312.59,46.704 +20737,309.69,40.246 +20738,310.21,42.539 +20739,310.72,44.707 +20740,311.25,46.765 +20741,308.52,40.208 +20742,308.97,42.538 +20743,309.44,44.738 +20744,309.91,46.825 +20745,307.34,40.173 +20746,307.73,42.537 +20747,308.15,44.768 +20748,308.57,46.884 +20749,306.17,40.14 +20750,306.5,42.538 +20751,306.86,44.798 +20752,307.23,46.941 +20753,304.99,40.108 +20754,305.26,42.538 +20755,305.57,44.827 +20756,305.89,46.996 +20757,303.82,40.079 +20758,304.03,42.54 +20759,304.28,44.856 +20760,304.55,47.049 +20761,302.65,40.051 +20762,302.79,42.542 +20763,302.99,44.885 +20764,303.22,47.101 +20765,301.47,40.026 +20766,301.56,42.545 +20767,301.7,44.913 +20768,301.88,47.152 +20769,300.3,40.002 +20770,300.32,42.549 +20771,300.41,44.94 +20772,300.53,47.2 +20773,299.13,39.981 +20774,299.09,42.553 +20775,299.12,44.967 +20776,299.19,47.247 +20777,297.96,39.961 +20778,297.85,42.558 +20779,297.82,44.993 +20780,297.85,47.292 +20781,296.78,39.944 +20782,296.62,42.564 +20783,296.53,45.019 +20784,296.51,47.336 +20785,295.61,39.929 +20786,295.38,42.57 +20787,295.24,45.044 +20788,295.17,47.377 +20789,294.44,39.916 +20790,294.15,42.578 +20791,293.95,45.068 +20792,293.83,47.417 +20793,293.27,39.906 +20794,292.91,42.586 +20795,292.66,45.092 +20796,292.49,47.455 +20797,292.09,39.897 +20798,291.67,42.594 +20799,291.37,45.116 +20800,291.15,47.492 +20801,290.92,39.891 +20802,290.44,42.604 +20803,290.08,45.139 +20804,289.81,47.527 +20805,289.75,39.887 +20806,289.2,42.614 +20807,288.79,45.161 +20808,288.47,47.56 +20809,288.57,39.885 +20810,287.97,42.625 +20811,287.5,45.183 +20812,287.13,47.591 +20813,287.4,39.885 +20814,286.73,42.636 +20815,286.21,45.204 +20816,285.79,47.62 +20817,286.23,39.888 +20818,285.49,42.649 +20819,284.92,45.225 +20820,284.45,47.648 +20821,285.05,39.893 +20822,284.26,42.662 +20823,283.62,45.245 +20824,283.11,47.674 +20825,283.88,39.9 +20826,283.02,42.676 +20827,282.33,45.264 +20828,281.77,47.698 +20829,282.7,39.909 +20830,281.78,42.691 +20831,281.04,45.283 +20832,280.43,47.72 +20833,281.52,39.921 +20834,280.55,42.706 +20835,279.75,45.301 +20836,279.09,47.741 +20837,280.34,39.935 +20838,279.31,42.722 +20839,278.46,45.319 +20840,277.76,47.76 +20841,279.16,39.951 +20842,278.07,42.739 +20843,277.17,45.336 +20844,276.42,47.777 +20845,277.98,39.97 +20846,276.83,42.757 +20847,275.88,45.353 +20848,275.08,47.792 +20849,276.8,39.991 +20850,275.59,42.775 +20851,274.59,45.369 +20852,273.74,47.806 +20853,275.62,40.014 +20854,274.35,42.795 +20855,273.3,45.384 +20856,272.41,47.817 +20857,274.44,40.039 +20858,273.11,42.815 +20859,272.01,45.399 +20860,271.07,47.827 +20861,273.25,40.067 +20862,271.87,42.835 +20863,270.72,45.413 +20864,269.74,47.835 +20865,272.07,40.097 +20866,270.63,42.857 +20867,269.43,45.427 +20868,268.4,47.842 +20869,270.88,40.129 +20870,269.39,42.879 +20871,268.14,45.44 +20872,267.07,47.847 +20873,269.69,40.163 +20874,268.15,42.902 +20875,266.85,45.453 +20876,265.74,47.85 +20877,268.5,40.2 +20878,266.91,42.926 +20879,265.57,45.465 +20880,264.4,47.851 +20881,267.31,40.239 +20882,265.67,42.95 +20883,264.28,45.476 +20884,263.07,47.85 +20885,266.12,40.28 +20886,264.43,42.975 +20887,262.99,45.487 +20888,261.74,47.848 +20889,264.93,40.323 +20890,263.18,43.001 +20891,261.7,45.498 +20892,260.41,47.844 +20893,263.73,40.368 +20894,261.94,43.028 +20895,260.41,45.507 +20896,259.08,47.839 +20897,262.53,40.415 +20898,260.69,43.055 +20899,259.13,45.517 +20900,257.76,47.831 +20901,261.33,40.465 +20902,259.45,43.083 +20903,257.84,45.525 +20904,256.43,47.822 +20905,260.13,40.516 +20906,258.2,43.112 +20907,256.55,45.533 +20908,255.1,47.812 +20909,258.93,40.57 +20910,256.96,43.141 +20911,255.27,45.541 +20912,253.78,47.8 +20913,257.72,40.626 +20914,255.71,43.171 +20915,253.98,45.548 +20916,252.45,47.786 +20917,256.52,40.683 +20918,254.47,43.202 +20919,252.69,45.555 +20920,251.13,47.77 +20921,255.31,40.743 +20922,253.22,43.233 +20923,251.41,45.561 +20924,249.81,47.753 +20925,254.1,40.805 +20926,251.97,43.265 +20927,250.12,45.567 +20928,248.49,47.735 +20929,252.88,40.868 +20930,250.72,43.298 +20931,248.84,45.572 +20932,247.17,47.715 +20933,251.67,40.934 +20934,249.47,43.332 +20935,247.56,45.576 +20936,245.85,47.693 +20937,250.45,41.001 +20938,248.22,43.366 +20939,246.27,45.58 +20940,244.53,47.67 +20941,249.23,41.07 +20942,246.97,43.4 +20943,244.99,45.584 +20944,243.22,47.645 +20945,248.01,41.141 +20946,245.72,43.435 +20947,243.71,45.587 +20948,241.9,47.619 +20949,246.79,41.213 +20950,244.47,43.471 +20951,242.42,45.59 +20952,240.59,47.591 +20953,245.56,41.288 +20954,243.21,43.508 +20955,241.14,45.592 +20956,239.28,47.562 +20957,244.34,41.364 +20958,241.96,43.545 +20959,239.86,45.594 +20960,237.97,47.531 +20961,243.11,41.441 +20962,240.71,43.582 +20963,238.58,45.595 +20964,236.66,47.499 +20965,241.87,41.521 +20966,239.45,43.621 +20967,237.3,45.596 +20968,235.35,47.466 +20969,240.64,41.601 +20970,238.2,43.659 +20971,236.02,45.597 +20972,234.04,47.431 +20973,239.4,41.684 +20974,236.94,43.699 +20975,234.74,45.597 +20976,232.74,47.395 +20977,238.17,41.767 +20978,235.68,43.738 +20979,233.46,45.597 +20980,231.43,47.358 +20981,236.92,41.853 +20982,234.43,43.779 +20983,232.18,45.596 +20984,230.13,47.32 +20985,235.68,41.939 +20986,233.17,43.82 +20987,230.9,45.595 +20988,228.83,47.28 +20989,234.44,42.027 +20990,231.91,43.861 +20991,229.62,45.593 +20992,227.53,47.239 +20993,233.19,42.117 +20994,230.65,43.903 +20995,228.35,45.592 +20996,226.23,47.197 +20997,231.94,42.207 +20998,229.39,43.945 +20999,227.07,45.59 +21000,224.94,47.153 +21001,230.69,42.299 +21002,228.13,43.988 +21003,225.79,45.587 +21004,223.64,47.109 +21005,229.43,42.392 +21006,226.86,44.031 +21007,224.52,45.584 +21008,222.35,47.063 +21009,228.18,42.486 +21010,225.6,44.074 +21011,223.24,45.581 +21012,221.06,47.016 +21013,226.92,42.581 +21014,224.34,44.118 +21015,221.97,45.578 +21016,219.77,46.969 +21017,225.66,42.677 +21018,223.07,44.163 +21019,220.69,45.574 +21020,218.48,46.92 +21021,224.39,42.774 +21022,221.81,44.208 +21023,219.42,45.57 +21024,217.2,46.87 +21025,223.13,42.873 +21026,220.54,44.253 +21027,218.15,45.566 +21028,215.91,46.82 +21029,221.86,42.972 +21030,219.27,44.298 +21031,216.88,45.561 +21032,214.63,46.768 +21033,220.59,43.072 +21034,218.01,44.344 +21035,215.6,45.557 +21036,213.35,46.716 +21037,219.32,43.172 +21038,216.74,44.39 +21039,214.33,45.552 +21040,212.07,46.662 +21041,218.04,43.274 +21042,215.47,44.437 +21043,213.06,45.547 +21044,210.8,46.608 +21045,216.76,43.376 +21046,214.2,44.484 +21047,211.79,45.541 +21048,209.52,46.553 +21049,215.49,43.479 +21050,212.93,44.531 +21051,210.52,45.536 +21052,208.25,46.498 +21053,214.21,43.582 +21054,211.66,44.578 +21055,209.25,45.53 +21056,206.98,46.441 +21057,212.92,43.686 +21058,210.39,44.626 +21059,207.99,45.524 +21060,205.71,46.384 +21061,211.64,43.791 +21062,209.11,44.674 +21063,206.72,45.518 +21064,204.44,46.327 +21065,210.35,43.896 +21066,207.84,44.722 +21067,205.45,45.512 +21068,203.17,46.269 +21069,209.06,44.001 +21070,206.56,44.77 +21071,204.18,45.505 +21072,201.91,46.21 +21073,207.77,44.107 +21074,205.29,44.819 +21075,202.92,45.499 +21076,200.65,46.15 +21077,206.48,44.213 +21078,204.01,44.867 +21079,201.65,45.492 +21080,199.39,46.091 +21081,205.18,44.319 +21082,202.74,44.916 +21083,200.39,45.486 +21084,198.13,46.03 +21085,203.88,44.426 +21086,201.46,44.965 +21087,199.12,45.479 +21088,196.87,45.97 +21089,202.58,44.533 +21090,200.18,45.014 +21091,197.86,45.472 +21092,195.62,45.909 +21093,201.28,44.64 +21094,198.9,45.064 +21095,196.6,45.466 +21096,194.36,45.848 +21097,199.98,44.747 +21098,197.62,45.113 +21099,195.34,45.459 +21100,193.11,45.786 +21101,198.67,44.854 +21102,196.34,45.162 +21103,194.07,45.452 +21104,191.86,45.724 +21105,197.37,44.961 +21106,195.06,45.212 +21107,192.81,45.445 +21108,190.62,45.662 +21109,196.06,45.068 +21110,193.78,45.262 +21111,191.55,45.438 +21112,189.37,45.6 +21113,194.75,45.175 +21114,192.5,45.311 +21115,190.29,45.431 +21116,188.13,45.538 +21117,193.44,45.282 +21118,191.21,45.361 +21119,189.03,45.425 +21120,186.89,45.475 +21121,192.12,45.389 +21122,189.93,45.411 +21123,187.77,45.418 +21124,185.65,45.413 +21125,190.81,45.496 +21126,188.65,45.46 +21127,186.51,45.411 +21128,184.41,45.35 +21129,189.49,45.602 +21130,187.36,45.51 +21131,185.25,45.405 +21132,183.17,45.288 +21133,188.17,45.708 +21134,186.07,45.56 +21135,184,45.398 +21136,181.94,45.226 +21137,186.85,45.813 +21138,184.79,45.609 +21139,182.74,45.392 +21140,180.71,45.163 +21141,185.53,45.919 +21142,183.5,45.659 +21143,181.48,45.386 +21144,179.48,45.101 +21145,184.21,46.024 +21146,182.21,45.708 +21147,180.23,45.38 +21148,178.25,45.04 +21149,182.88,46.128 +21150,180.92,45.758 +21151,178.97,45.374 +21152,177.02,44.978 +21153,181.55,46.232 +21154,179.64,45.807 +21155,177.72,45.368 +21156,175.8,44.917 +21157,180.23,46.335 +21158,178.35,45.856 +21159,176.46,45.363 +21160,174.57,44.856 +21161,178.9,46.438 +21162,177.06,45.905 +21163,175.21,45.357 +21164,173.35,44.796 +21165,177.57,46.54 +21166,175.76,45.954 +21167,173.95,45.352 +21168,172.13,44.736 +21169,176.23,46.641 +21170,174.47,46.003 +21171,172.7,45.347 +21172,170.92,44.676 +21173,174.9,46.742 +21174,173.18,46.051 +21175,171.45,45.343 +21176,169.7,44.617 +21177,173.57,46.842 +21178,171.89,46.1 +21179,170.2,45.338 +21180,168.49,44.559 +21181,172.23,46.942 +21182,170.6,46.148 +21183,168.94,45.334 +21184,167.27,44.501 +21185,170.89,47.04 +21186,169.3,46.196 +21187,167.69,45.33 +21188,166.06,44.444 +21189,169.56,47.138 +21190,168.01,46.244 +21191,166.44,45.327 +21192,164.85,44.387 +21193,168.22,47.235 +21194,166.71,46.291 +21195,165.19,45.324 +21196,163.65,44.331 +21197,166.88,47.33 +21198,165.42,46.339 +21199,163.94,45.321 +21200,162.44,44.276 +21201,165.54,47.425 +21202,164.12,46.386 +21203,162.69,45.318 +21204,161.23,44.222 +21205,164.19,47.519 +21206,162.83,46.433 +21207,161.44,45.316 +21208,160.03,44.169 +21209,162.85,47.612 +21210,161.53,46.479 +21211,160.19,45.314 +21212,158.83,44.116 +21213,161.51,47.704 +21214,160.23,46.525 +21215,158.94,45.312 +21216,157.63,44.065 +21217,160.16,47.795 +21218,158.94,46.571 +21219,157.69,45.311 +21220,156.43,44.014 +21221,158.81,47.885 +21222,157.64,46.617 +21223,156.45,45.311 +21224,155.23,43.965 +21225,157.47,47.974 +21226,156.34,46.662 +21227,155.2,45.31 +21228,154.04,43.917 +21229,156.12,48.061 +21230,155.04,46.707 +21231,153.95,45.31 +21232,152.84,43.869 +21233,154.77,48.147 +21234,153.74,46.751 +21235,152.7,45.311 +21236,151.65,43.823 +21237,153.42,48.232 +21238,152.45,46.796 +21239,151.46,45.312 +21240,150.45,43.778 +21241,152.07,48.316 +21242,151.15,46.84 +21243,150.21,45.313 +21244,149.26,43.734 +21245,150.72,48.399 +21246,149.85,46.883 +21247,148.96,45.315 +21248,148.07,43.692 +21249,149.37,48.48 +21250,148.55,46.926 +21251,147.72,45.318 +21252,146.88,43.651 +21253,148.02,48.56 +21254,147.24,46.969 +21255,146.47,45.32 +21256,145.69,43.611 +21257,146.67,48.639 +21258,145.94,47.011 +21259,145.22,45.324 +21260,144.51,43.572 +21261,145.31,48.716 +21262,144.64,47.053 +21263,143.98,45.328 +21264,143.32,43.535 +21265,143.96,48.792 +21266,143.34,47.094 +21267,142.73,45.332 +21268,142.13,43.5 +21269,142.61,48.867 +21270,142.04,47.135 +21271,141.49,45.337 +21272,140.95,43.465 +21273,141.25,48.94 +21274,140.74,47.176 +21275,140.24,45.342 +21276,139.77,43.433 +21277,139.9,49.012 +21278,139.44,47.216 +21279,139,45.348 +21280,138.58,43.402 +21281,138.54,49.082 +21282,138.13,47.255 +21283,137.75,45.355 +21284,137.4,43.372 +21285,137.19,49.151 +21286,136.83,47.295 +21287,136.5,45.362 +21288,136.22,43.344 +21289,135.83,49.218 +21290,135.53,47.333 +21291,135.26,45.37 +21292,135.03,43.318 +21293,134.48,49.284 +21294,134.23,47.372 +21295,134.01,45.378 +21296,133.85,43.293 +21297,133.12,49.348 +21298,132.92,47.409 +21299,132.77,45.387 +21300,132.67,43.27 +21301,131.77,49.411 +21302,131.62,47.446 +21303,131.52,45.396 +21304,131.49,43.249 +21305,130.41,49.472 +21306,130.32,47.483 +21307,130.28,45.406 +21308,130.31,43.229 +21309,129.05,49.532 +21310,129.01,47.519 +21311,129.03,45.417 +21312,129.13,43.211 +21313,127.7,49.59 +21314,127.71,47.555 +21315,127.79,45.428 +21316,127.95,43.195 +21317,126.34,49.647 +21318,126.41,47.59 +21319,126.54,45.44 +21320,126.77,43.181 +21321,124.99,49.701 +21322,125.1,47.625 +21323,125.3,45.452 +21324,125.59,43.169 +21325,123.63,49.755 +21326,123.8,47.659 +21327,124.05,45.465 +21328,124.41,43.158 +21329,122.27,49.806 +21330,122.5,47.693 +21331,122.8,45.479 +21332,123.23,43.15 +21333,120.92,49.856 +21334,121.19,47.726 +21335,121.56,45.493 +21336,122.04,43.143 +21337,119.56,49.905 +21338,119.89,47.758 +21339,120.31,45.508 +21340,120.86,43.138 +21341,118.21,49.951 +21342,118.58,47.79 +21343,119.07,45.524 +21344,119.68,43.135 +21345,116.85,49.996 +21346,117.28,47.822 +21347,117.82,45.54 +21348,118.5,43.134 +21349,115.5,50.04 +21350,115.98,47.853 +21351,116.57,45.557 +21352,117.32,43.135 +21353,114.14,50.081 +21354,114.67,47.883 +21355,115.33,45.575 +21356,116.13,43.138 +21357,112.79,50.121 +21358,113.37,47.913 +21359,114.08,45.593 +21360,114.95,43.143 +21361,111.43,50.16 +21362,112.07,47.942 +21363,112.83,45.612 +21364,113.77,43.15 +21365,110.08,50.196 +21366,110.76,47.971 +21367,111.58,45.632 +21368,112.58,43.159 +21369,108.73,50.231 +21370,109.46,47.999 +21371,110.33,45.652 +21372,111.4,43.17 +21373,107.37,50.265 +21374,108.16,48.027 +21375,109.09,45.673 +21376,110.21,43.183 +21377,106.02,50.296 +21378,106.85,48.054 +21379,107.84,45.695 +21380,109.02,43.198 +21381,104.67,50.326 +21382,105.55,48.08 +21383,106.59,45.717 +21384,107.83,43.215 +21385,103.32,50.354 +21386,104.25,48.106 +21387,105.34,45.74 +21388,106.64,43.234 +21389,101.97,50.381 +21390,102.95,48.132 +21391,104.09,45.763 +21392,105.45,43.255 +21393,100.62,50.406 +21394,101.64,48.156 +21395,102.84,45.788 +21396,104.26,43.279 +21397,99.271,50.429 +21398,100.34,48.181 +21399,101.59,45.813 +21400,103.07,43.304 +21401,97.922,50.45 +21402,99.039,48.204 +21403,100.34,45.838 +21404,101.88,43.331 +21405,96.575,50.47 +21406,97.737,48.227 +21407,99.086,45.865 +21408,100.68,43.36 +21409,95.228,50.488 +21410,96.435,48.25 +21411,97.834,45.891 +21412,99.483,43.391 +21413,93.882,50.505 +21414,95.134,48.272 +21415,96.581,45.919 +21416,98.285,43.425 +21417,92.537,50.52 +21418,93.833,48.293 +21419,95.328,45.947 +21420,97.085,43.46 +21421,91.192,50.533 +21422,92.532,48.314 +21423,94.075,45.976 +21424,95.884,43.497 +21425,89.849,50.544 +21426,91.232,48.335 +21427,92.821,46.006 +21428,94.681,43.536 +21429,88.506,50.554 +21430,89.932,48.354 +21431,91.566,46.036 +21432,93.476,43.577 +21433,87.165,50.562 +21434,88.632,48.374 +21435,90.311,46.067 +21436,92.27,43.621 +21437,85.824,50.569 +21438,87.332,48.392 +21439,89.056,46.098 +21440,91.062,43.666 +21441,84.485,50.574 +21442,86.033,48.411 +21443,87.799,46.131 +21444,89.852,43.713 +21445,83.146,50.578 +21446,84.734,48.428 +21447,86.543,46.163 +21448,88.64,43.762 +21449,81.809,50.579 +21450,83.436,48.445 +21451,85.285,46.197 +21452,87.427,43.812 +21453,80.473,50.58 +21454,82.138,48.462 +21455,84.027,46.231 +21456,86.211,43.865 +21457,79.137,50.578 +21458,80.84,48.478 +21459,82.769,46.265 +21460,84.994,43.92 +21461,77.803,50.576 +21462,79.542,48.494 +21463,81.509,46.301 +21464,83.775,43.976 +21465,76.471,50.571 +21466,78.245,48.509 +21467,80.25,46.336 +21468,82.553,44.034 +21469,75.139,50.565 +21470,76.949,48.523 +21471,78.989,46.373 +21472,81.33,44.094 +21473,73.809,50.558 +21474,75.653,48.538 +21475,77.728,46.41 +21476,80.104,44.156 +21477,72.48,50.549 +21478,74.357,48.551 +21479,76.466,46.448 +21480,78.877,44.22 +21481,71.152,50.539 +21482,73.061,48.564 +21483,75.203,46.486 +21484,77.647,44.285 +21485,69.825,50.527 +21486,71.767,48.577 +21487,73.94,46.524 +21488,76.415,44.352 +21489,68.5,50.514 +21490,70.472,48.589 +21491,72.676,46.564 +21492,75.181,44.421 +21493,67.177,50.499 +21494,69.178,48.601 +21495,71.412,46.604 +21496,73.945,44.491 +21497,65.854,50.484 +21498,67.885,48.612 +21499,70.146,46.644 +21500,72.706,44.563 +21501,64.533,50.466 +21502,66.591,48.623 +21503,68.88,46.685 +21504,71.465,44.636 +21505,63.214,50.448 +21506,65.299,48.633 +21507,67.613,46.726 +21508,70.222,44.711 +21509,61.896,50.427 +21510,64.007,48.643 +21511,66.346,46.768 +21512,68.977,44.788 +21513,60.58,50.406 +21514,62.715,48.653 +21515,65.078,46.811 +21516,67.73,44.865 +21517,59.265,50.384 +21518,61.424,48.662 +21519,63.809,46.854 +21520,66.48,44.945 +21521,57.951,50.36 +21522,60.133,48.67 +21523,62.539,46.897 +21524,65.228,45.026 +21525,56.639,50.335 +21526,58.843,48.679 +21527,61.268,46.941 +21528,63.973,45.108 +21529,55.329,50.308 +21530,57.554,48.687 +21531,59.997,46.985 +21532,62.716,45.191 +21533,54.021,50.281 +21534,56.265,48.694 +21535,58.725,47.03 +21536,61.457,45.276 +21537,52.714,50.252 +21538,54.976,48.701 +21539,57.452,47.075 +21540,60.196,45.362 +21541,51.408,50.223 +21542,53.688,48.708 +21543,56.179,47.121 +21544,58.932,45.45 +21545,50.105,50.192 +21546,52.401,48.715 +21547,54.904,47.167 +21548,57.666,45.538 +21549,48.803,50.16 +21550,51.114,48.721 +21551,53.629,47.214 +21552,56.397,45.628 +21553,47.502,50.127 +21554,49.828,48.727 +21555,52.353,47.26 +21556,55.126,45.719 +21557,46.204,50.093 +21558,48.542,48.732 +21559,51.077,47.308 +21560,53.853,45.81 +21561,44.907,50.058 +21562,47.257,48.737 +21563,49.799,47.355 +21564,52.578,45.903 +21565,43.612,50.022 +21566,45.972,48.742 +21567,48.521,47.403 +21568,51.3,45.997 +21569,42.318,49.985 +21570,44.688,48.747 +21571,47.242,47.452 +21572,50.02,46.092 +21573,41.027,49.947 +21574,43.404,48.751 +21575,45.962,47.5 +21576,48.738,46.187 +21577,39.737,49.909 +21578,42.122,48.755 +21579,44.682,47.549 +21580,47.453,46.284 +21581,38.449,49.869 +21582,40.839,48.759 +21583,43.4,47.598 +21584,46.167,46.381 +21585,37.162,49.829 +21586,39.557,48.762 +21587,42.118,47.648 +21588,44.878,46.48 +21589,35.878,49.788 +21590,38.276,48.766 +21591,40.835,47.698 +21592,43.586,46.578 +21593,34.596,49.746 +21594,36.996,48.769 +21595,39.551,47.748 +21596,42.293,46.678 +21597,33.315,49.704 +21598,35.715,48.772 +21599,38.267,47.798 +21600,40.997,46.778 +21601,32.036,49.66 +21602,34.436,48.774 +21603,36.982,47.849 +21604,39.699,46.879 +21605,30.759,49.617 +21606,33.157,48.777 +21607,35.696,47.9 +21608,38.399,46.98 +21609,29.484,49.572 +21610,31.879,48.779 +21611,34.409,47.951 +21612,37.097,47.082 +21613,28.21,49.527 +21614,30.601,48.781 +21615,33.121,48.002 +21616,35.793,47.185 +21617,26.939,49.482 +21618,29.324,48.783 +21619,31.833,48.053 +21620,34.487,47.288 +21621,25.669,49.436 +21622,28.047,48.785 +21623,30.544,48.105 +21624,33.178,47.391 +21625,24.402,49.389 +21626,26.771,48.787 +21627,29.254,48.157 +21628,31.868,47.494 +21629,23.136,49.342 +21630,25.496,48.789 +21631,27.964,48.209 +21632,30.555,47.598 +21633,21.872,49.295 +21634,24.221,48.79 +21635,26.672,48.261 +21636,29.241,47.703 +21637,20.61,49.247 +21638,22.947,48.792 +21639,25.38,48.313 +21640,27.925,47.807 +21641,19.35,49.199 +21642,21.673,48.793 +21643,24.088,48.365 +21644,26.606,47.911 +21645,18.091,49.151 +21646,20.4,48.795 +21647,22.794,48.417 +21648,25.286,48.016 +21649,16.835,49.103 +21650,19.127,48.796 +21651,21.5,48.47 +21652,23.964,48.121 +21653,15.581,49.054 +21654,17.855,48.797 +21655,20.205,48.522 +21656,22.64,48.226 +21657,14.328,49.005 +21658,16.583,48.799 +21659,18.909,48.575 +21660,21.315,48.331 +21661,13.077,48.956 +21662,15.312,48.8 +21663,17.613,48.627 +21664,19.987,48.436 +21665,11.828,48.907 +21666,14.042,48.801 +21667,16.316,48.68 +21668,18.658,48.54 +21669,10.581,48.858 +21670,12.772,48.803 +21671,15.019,48.732 +21672,17.327,48.645 +21673,9.3356,48.809 +21674,11.503,48.804 +21675,13.72,48.785 +21676,15.994,48.749 +21677,8.0921,48.76 +21678,10.234,48.805 +21679,12.421,48.837 +21680,14.66,48.854 +21681,6.8504,48.711 +21682,8.9653,48.807 +21683,11.122,48.89 +21684,13.324,48.958 +21685,5.6106,48.662 +21686,7.6974,48.808 +21687,9.8217,48.942 +21688,11.987,49.062 +21689,4.3725,48.613 +21690,6.4301,48.81 +21691,8.5209,48.995 +21692,10.648,49.165 +21693,3.1361,48.564 +21694,5.1632,48.812 +21695,7.2194,49.047 +21696,9.3075,49.268 +21697,1.9015,48.516 +21698,3.8968,48.813 +21699,5.9173,49.099 +21700,7.9656,49.371 +21701,0.66869,48.468 +21702,2.6309,48.815 +21703,4.6147,49.151 +21704,6.6222,49.473 +21705,359.44,48.42 +21706,1.3655,48.818 +21707,3.3115,49.203 +21708,5.2774,49.575 +21709,358.21,48.372 +21710,0.10052,48.82 +21711,2.0076,49.255 +21712,3.9313,49.677 +21713,356.98,48.325 +21714,358.84,48.822 +21715,0.70327,49.307 +21716,2.5838,49.778 +21717,355.75,48.278 +21718,357.57,48.825 +21719,359.4,49.358 +21720,1.235,49.878 +21721,354.53,48.232 +21722,356.31,48.828 +21723,358.09,49.41 +21724,359.88,49.977 +21725,353.31,48.186 +21726,355.05,48.831 +21727,356.79,49.461 +21728,358.53,50.076 +21729,352.09,48.141 +21730,353.78,48.834 +21731,355.48,49.512 +21732,357.18,50.175 +21733,350.87,48.096 +21734,352.52,48.837 +21735,354.17,49.563 +21736,355.83,50.272 +21737,349.65,48.052 +21738,351.26,48.841 +21739,352.87,49.614 +21740,354.47,50.369 +21741,348.43,48.008 +21742,350,48.845 +21743,351.56,49.664 +21744,353.12,50.465 +21745,347.22,47.966 +21746,348.73,48.849 +21747,350.25,49.714 +21748,351.76,50.561 +21749,346,47.923 +21750,347.47,48.853 +21751,348.94,49.764 +21752,350.4,50.655 +21753,344.79,47.882 +21754,346.21,48.858 +21755,347.63,49.814 +21756,349.04,50.749 +21757,343.58,47.841 +21758,344.95,48.863 +21759,346.32,49.863 +21760,347.68,50.841 +21761,342.37,47.802 +21762,343.69,48.868 +21763,345.01,49.912 +21764,346.32,50.933 +21765,341.16,47.763 +21766,342.43,48.874 +21767,343.7,49.961 +21768,344.96,51.024 +21769,339.95,47.725 +21770,341.17,48.88 +21771,342.39,50.01 +21772,343.6,51.114 +21773,338.75,47.688 +21774,339.91,48.886 +21775,341.08,50.058 +21776,342.24,51.202 +21777,337.54,47.652 +21778,338.66,48.893 +21779,339.77,50.106 +21780,340.87,51.29 +21781,336.34,47.617 +21782,337.4,48.9 +21783,338.45,50.153 +21784,339.51,51.377 +21785,335.13,47.583 +21786,336.14,48.907 +21787,337.14,50.2 +21788,338.14,51.462 +21789,333.93,47.55 +21790,334.88,48.915 +21791,335.83,50.247 +21792,336.78,51.547 +21793,332.73,47.518 +21794,333.62,48.923 +21795,334.52,50.294 +21796,335.41,51.63 +21797,331.53,47.487 +21798,332.37,48.932 +21799,333.2,50.34 +21800,334.04,51.712 +21801,330.33,47.457 +21802,331.11,48.941 +21803,331.89,50.386 +21804,332.68,51.793 +21805,329.13,47.429 +21806,329.85,48.95 +21807,330.58,50.431 +21808,331.31,51.873 +21809,327.94,47.402 +21810,328.59,48.96 +21811,329.26,50.476 +21812,329.94,51.951 +21813,326.74,47.376 +21814,327.34,48.97 +21815,327.95,50.52 +21816,328.57,52.028 +21817,325.54,47.351 +21818,326.08,48.981 +21819,326.63,50.565 +21820,327.2,52.104 +21821,324.35,47.328 +21822,324.82,48.992 +21823,325.32,50.608 +21824,325.83,52.178 +21825,323.15,47.306 +21826,323.56,49.004 +21827,324,50.652 +21828,324.46,52.252 +21829,321.96,47.286 +21830,322.31,49.016 +21831,322.69,50.694 +21832,323.09,52.324 +21833,320.77,47.266 +21834,321.05,49.029 +21835,321.37,50.737 +21836,321.72,52.394 +21837,319.57,47.249 +21838,319.79,49.042 +21839,320.06,50.779 +21840,320.35,52.463 +21841,318.38,47.232 +21842,318.54,49.055 +21843,318.74,50.82 +21844,318.98,52.531 +21845,317.19,47.218 +21846,317.28,49.069 +21847,317.42,50.861 +21848,317.61,52.597 +21849,316,47.204 +21850,316.02,49.084 +21851,316.11,50.902 +21852,316.24,52.662 +21853,314.8,47.192 +21854,314.77,49.099 +21855,314.79,50.942 +21856,314.87,52.726 +21857,313.61,47.182 +21858,313.51,49.115 +21859,313.48,50.981 +21860,313.5,52.788 +21861,312.42,47.174 +21862,312.25,49.131 +21863,312.16,51.021 +21864,312.13,52.848 +21865,311.23,47.166 +21866,311,49.148 +21867,310.84,51.059 +21868,310.76,52.907 +21869,310.04,47.161 +21870,309.74,49.165 +21871,309.53,51.097 +21872,309.39,52.965 +21873,308.84,47.157 +21874,308.48,49.183 +21875,308.21,51.135 +21876,308.02,53.021 +21877,307.65,47.155 +21878,307.23,49.201 +21879,306.9,51.172 +21880,306.65,53.075 +21881,306.46,47.154 +21882,305.97,49.22 +21883,305.58,51.209 +21884,305.28,53.128 +21885,305.27,47.155 +21886,304.71,49.239 +21887,304.26,51.245 +21888,303.91,53.18 +21889,304.07,47.158 +21890,303.45,49.259 +21891,302.95,51.28 +21892,302.54,53.23 +21893,302.88,47.162 +21894,302.19,49.28 +21895,301.63,51.315 +21896,301.17,53.278 +21897,301.69,47.169 +21898,300.94,49.301 +21899,300.32,51.35 +21900,299.8,53.325 +21901,300.49,47.177 +21902,299.68,49.322 +21903,299,51.384 +21904,298.43,53.37 +21905,299.3,47.186 +21906,298.42,49.345 +21907,297.68,51.417 +21908,297.06,53.414 +21909,298.1,47.198 +21910,297.16,49.367 +21911,296.37,51.45 +21912,295.7,53.456 +21913,296.9,47.211 +21914,295.9,49.391 +21915,295.05,51.483 +21916,294.33,53.496 +21917,295.71,47.226 +21918,294.64,49.415 +21919,293.74,51.515 +21920,292.96,53.535 +21921,294.51,47.242 +21922,293.38,49.439 +21923,292.42,51.546 +21924,291.6,53.573 +21925,293.31,47.261 +21926,292.12,49.464 +21927,291.11,51.577 +21928,290.23,53.608 +21929,292.11,47.281 +21930,290.86,49.49 +21931,289.79,51.607 +21932,288.87,53.643 +21933,290.91,47.303 +21934,289.6,49.516 +21935,288.48,51.637 +21936,287.5,53.675 +21937,289.71,47.326 +21938,288.34,49.543 +21939,287.16,51.666 +21940,286.14,53.706 +21941,288.5,47.352 +21942,287.08,49.571 +21943,285.85,51.695 +21944,284.78,53.736 +21945,287.3,47.379 +21946,285.81,49.599 +21947,284.53,51.723 +21948,283.41,53.764 +21949,286.09,47.408 +21950,284.55,49.627 +21951,283.22,51.751 +21952,282.05,53.79 +21953,284.89,47.439 +21954,283.29,49.657 +21955,281.9,51.778 +21956,280.69,53.815 +21957,283.68,47.472 +21958,282.02,49.686 +21959,280.59,51.804 +21960,279.33,53.838 +21961,282.47,47.506 +21962,280.76,49.717 +21963,279.28,51.83 +21964,277.97,53.859 +21965,281.26,47.542 +21966,279.5,49.748 +21967,277.96,51.856 +21968,276.62,53.879 +21969,280.05,47.58 +21970,278.23,49.779 +21971,276.65,51.881 +21972,275.26,53.898 +21973,278.83,47.62 +21974,276.97,49.811 +21975,275.34,51.905 +21976,273.9,53.915 +21977,277.62,47.661 +21978,275.7,49.844 +21979,274.03,51.929 +21980,272.55,53.93 +21981,276.4,47.704 +21982,274.43,49.877 +21983,272.72,51.953 +21984,271.19,53.944 +21985,275.18,47.749 +21986,273.17,49.911 +21987,271.4,51.976 +21988,269.84,53.957 +21989,273.96,47.796 +21990,271.9,49.945 +21991,270.09,51.998 +21992,268.49,53.967 +21993,272.74,47.844 +21994,270.63,49.98 +21995,268.78,52.02 +21996,267.14,53.977 +21997,271.51,47.894 +21998,269.36,50.015 +21999,267.47,52.041 +22000,265.79,53.985 +22001,270.29,47.945 +22002,268.09,50.051 +22003,266.16,52.062 +22004,264.44,53.991 +22005,269.06,47.999 +22006,266.82,50.087 +22007,264.85,52.083 +22008,263.09,53.996 +22009,267.83,48.054 +22010,265.55,50.124 +22011,263.54,52.103 +22012,261.75,54 +22013,266.6,48.11 +22014,264.28,50.162 +22015,262.24,52.122 +22016,260.4,54.002 +22017,265.36,48.168 +22018,263.01,50.2 +22019,260.93,52.141 +22020,259.06,54.002 +22021,264.13,48.228 +22022,261.74,50.239 +22023,259.62,52.159 +22024,257.72,54.002 +22025,262.89,48.289 +22026,260.46,50.278 +22027,258.31,52.177 +22028,256.38,53.999 +22029,261.65,48.352 +22030,259.19,50.317 +22031,257.01,52.195 +22032,255.04,53.996 +22033,260.41,48.416 +22034,257.92,50.357 +22035,255.7,52.212 +22036,253.7,53.991 +22037,259.17,48.481 +22038,256.64,50.398 +22039,254.39,52.228 +22040,252.36,53.985 +22041,257.92,48.549 +22042,255.37,50.439 +22043,253.09,52.245 +22044,251.03,53.977 +22045,256.67,48.617 +22046,254.09,50.48 +22047,251.78,52.26 +22048,249.69,53.968 +22049,255.42,48.687 +22050,252.81,50.522 +22051,250.48,52.276 +22052,248.36,53.958 +22053,254.17,48.759 +22054,251.53,50.564 +22055,249.17,52.291 +22056,247.03,53.947 +22057,252.91,48.831 +22058,250.26,50.607 +22059,247.87,52.305 +22060,245.7,53.934 +22061,251.66,48.905 +22062,248.98,50.651 +22063,246.57,52.319 +22064,244.37,53.92 +22065,250.4,48.981 +22066,247.7,50.694 +22067,245.26,52.333 +22068,243.05,53.905 +22069,249.14,49.057 +22070,246.42,50.738 +22071,243.96,52.346 +22072,241.72,53.889 +22073,247.87,49.135 +22074,245.13,50.783 +22075,242.66,52.359 +22076,240.4,53.872 +22077,246.61,49.214 +22078,243.85,50.828 +22079,241.36,52.371 +22080,239.08,53.853 +22081,245.34,49.295 +22082,242.57,50.873 +22083,240.06,52.383 +22084,237.76,53.834 +22085,244.07,49.376 +22086,241.29,50.919 +22087,238.76,52.395 +22088,236.44,53.813 +22089,242.79,49.459 +22090,240,50.965 +22091,237.46,52.406 +22092,235.13,53.791 +22093,241.52,49.542 +22094,238.72,51.011 +22095,236.16,52.418 +22096,233.81,53.769 +22097,240.24,49.627 +22098,237.43,51.058 +22099,234.86,52.428 +22100,232.5,53.745 +22101,238.96,49.713 +22102,236.14,51.105 +22103,233.57,52.439 +22104,231.19,53.72 +22105,237.68,49.799 +22106,234.86,51.153 +22107,232.27,52.449 +22108,229.88,53.694 +22109,236.4,49.887 +22110,233.57,51.201 +22111,230.97,52.459 +22112,228.57,53.668 +22113,235.11,49.975 +22114,232.28,51.249 +22115,229.68,52.468 +22116,227.26,53.64 +22117,233.82,50.065 +22118,230.99,51.297 +22119,228.38,52.477 +22120,225.96,53.612 +22121,232.53,50.155 +22122,229.7,51.346 +22123,227.09,52.486 +22124,224.66,53.583 +22125,231.23,50.246 +22126,228.41,51.395 +22127,225.79,52.495 +22128,223.35,53.552 +22129,229.94,50.338 +22130,227.11,51.444 +22131,224.5,52.503 +22132,222.06,53.522 +22133,228.64,50.43 +22134,225.82,51.493 +22135,223.21,52.511 +22136,220.76,53.49 +22137,227.34,50.523 +22138,224.53,51.543 +22139,221.91,52.519 +22140,219.46,53.458 +22141,226.04,50.617 +22142,223.23,51.593 +22143,220.62,52.527 +22144,218.17,53.425 +22145,224.73,50.712 +22146,221.94,51.643 +22147,219.33,52.535 +22148,216.88,53.391 +22149,223.43,50.807 +22150,220.64,51.693 +22151,218.04,52.542 +22152,215.59,53.357 +22153,222.12,50.902 +22154,219.35,51.744 +22155,216.75,52.549 +22156,214.3,53.322 +22157,220.81,50.998 +22158,218.05,51.795 +22159,215.46,52.556 +22160,213.01,53.286 +22161,219.49,51.095 +22162,216.75,51.845 +22163,214.17,52.563 +22164,211.73,53.251 +22165,218.18,51.192 +22166,215.45,51.896 +22167,212.88,52.569 +22168,210.45,53.214 +22169,216.86,51.289 +22170,214.15,51.948 +22171,211.59,52.576 +22172,209.17,53.177 +22173,215.54,51.387 +22174,212.85,51.999 +22175,210.31,52.582 +22176,207.89,53.14 +22177,214.22,51.485 +22178,211.55,52.05 +22179,209.02,52.588 +22180,206.61,53.102 +22181,212.9,51.583 +22182,210.25,52.102 +22183,207.73,52.594 +22184,205.34,53.064 +22185,211.57,51.681 +22186,208.95,52.154 +22187,206.45,52.6 +22188,204.06,53.025 +22189,210.24,51.78 +22190,207.64,52.205 +22191,205.16,52.606 +22192,202.79,52.987 +22193,208.91,51.879 +22194,206.34,52.257 +22195,203.88,52.612 +22196,201.52,52.947 +22197,207.58,51.978 +22198,205.03,52.309 +22199,202.6,52.618 +22200,200.25,52.908 +22201,206.25,52.077 +22202,203.73,52.361 +22203,201.31,52.624 +22204,198.99,52.869 +22205,204.92,52.176 +22206,202.42,52.413 +22207,200.03,52.63 +22208,197.72,52.829 +22209,203.58,52.275 +22210,201.12,52.465 +22211,198.75,52.635 +22212,196.46,52.789 +22213,202.24,52.374 +22214,199.81,52.516 +22215,197.47,52.641 +22216,195.2,52.75 +22217,200.9,52.473 +22218,198.5,52.568 +22219,196.19,52.647 +22220,193.94,52.71 +22221,199.56,52.571 +22222,197.19,52.62 +22223,194.91,52.652 +22224,192.69,52.67 +22225,198.21,52.67 +22226,195.88,52.672 +22227,193.63,52.658 +22228,191.43,52.63 +22229,196.87,52.768 +22230,194.57,52.724 +22231,192.35,52.664 +22232,190.18,52.59 +22233,195.52,52.867 +22234,193.26,52.776 +22235,191.07,52.669 +22236,188.93,52.55 +22237,194.17,52.965 +22238,191.95,52.827 +22239,189.79,52.675 +22240,187.68,52.511 +22241,192.82,53.062 +22242,190.64,52.879 +22243,188.51,52.681 +22244,186.43,52.471 +22245,191.47,53.16 +22246,189.33,52.931 +22247,187.23,52.687 +22248,185.18,52.432 +22249,190.12,53.257 +22250,188.02,52.982 +22251,185.96,52.693 +22252,183.94,52.393 +22253,188.76,53.353 +22254,186.7,53.033 +22255,184.68,52.699 +22256,182.7,52.354 +22257,187.41,53.449 +22258,185.39,53.084 +22259,183.4,52.706 +22260,181.45,52.315 +22261,186.05,53.545 +22262,184.07,53.136 +22263,182.13,52.712 +22264,180.21,52.277 +22265,184.69,53.64 +22266,182.76,53.186 +22267,180.85,52.719 +22268,178.98,52.239 +22269,183.33,53.735 +22270,181.44,53.237 +22271,179.58,52.726 +22272,177.74,52.202 +22273,181.97,53.829 +22274,180.13,53.288 +22275,178.31,52.732 +22276,176.51,52.165 +22277,180.61,53.923 +22278,178.81,53.338 +22279,177.03,52.739 +22280,175.27,52.129 +22281,179.25,54.015 +22282,177.49,53.388 +22283,175.76,52.747 +22284,174.04,52.093 +22285,177.88,54.108 +22286,176.17,53.438 +22287,174.49,52.754 +22288,172.81,52.057 +22289,176.51,54.199 +22290,174.86,53.488 +22291,173.21,52.762 +22292,171.58,52.022 +22293,175.15,54.29 +22294,173.54,53.537 +22295,171.94,52.77 +22296,170.35,51.988 +22297,173.78,54.38 +22298,172.22,53.587 +22299,170.67,52.778 +22300,169.13,51.954 +22301,172.41,54.469 +22302,170.9,53.636 +22303,169.4,52.786 +22304,167.9,51.921 +22305,171.04,54.557 +22306,169.58,53.685 +22307,168.13,52.795 +22308,166.68,51.889 +22309,169.67,54.645 +22310,168.26,53.733 +22311,166.86,52.803 +22312,165.46,51.858 +22313,168.3,54.732 +22314,166.94,53.781 +22315,165.59,52.813 +22316,164.24,51.827 +22317,166.93,54.817 +22318,165.62,53.829 +22319,164.32,52.822 +22320,163.02,51.797 +22321,165.55,54.902 +22322,164.3,53.877 +22323,163.05,52.832 +22324,161.8,51.768 +22325,164.18,54.986 +22326,162.97,53.924 +22327,161.78,52.842 +22328,160.58,51.739 +22329,162.8,55.069 +22330,161.65,53.971 +22331,160.51,52.852 +22332,159.36,51.712 +22333,161.43,55.151 +22334,160.33,54.018 +22335,159.24,52.862 +22336,158.15,51.686 +22337,160.05,55.232 +22338,159.01,54.064 +22339,157.97,52.873 +22340,156.94,51.66 +22341,158.67,55.312 +22342,157.68,54.11 +22343,156.7,52.885 +22344,155.72,51.636 +22345,157.3,55.39 +22346,156.36,54.156 +22347,155.43,52.896 +22348,154.51,51.612 +22349,155.92,55.468 +22350,155.04,54.201 +22351,154.16,52.908 +22352,153.3,51.59 +22353,154.54,55.544 +22354,153.71,54.246 +22355,152.9,52.921 +22356,152.09,51.568 +22357,153.16,55.62 +22358,152.39,54.291 +22359,151.63,52.933 +22360,150.88,51.548 +22361,151.78,55.694 +22362,151.06,54.335 +22363,150.36,52.946 +22364,149.67,51.529 +22365,150.4,55.767 +22366,149.74,54.378 +22367,149.09,52.96 +22368,148.46,51.511 +22369,149.02,55.839 +22370,148.42,54.422 +22371,147.83,52.974 +22372,147.25,51.494 +22373,147.64,55.909 +22374,147.09,54.465 +22375,146.56,52.988 +22376,146.05,51.478 +22377,146.26,55.979 +22378,145.77,54.507 +22379,145.29,53.002 +22380,144.84,51.464 +22381,144.88,56.047 +22382,144.44,54.549 +22383,144.02,53.018 +22384,143.63,51.451 +22385,143.5,56.114 +22386,143.11,54.591 +22387,142.76,53.033 +22388,142.43,51.439 +22389,142.12,56.179 +22390,141.79,54.632 +22391,141.49,53.049 +22392,141.22,51.428 +22393,140.74,56.243 +22394,140.46,54.673 +22395,140.22,53.065 +22396,140.02,51.419 +22397,139.36,56.306 +22398,139.14,54.714 +22399,138.96,53.082 +22400,138.81,51.411 +22401,137.97,56.368 +22402,137.81,54.753 +22403,137.69,53.099 +22404,137.61,51.404 +22405,136.59,56.428 +22406,136.49,54.793 +22407,136.42,53.117 +22408,136.41,51.399 +22409,135.21,56.487 +22410,135.16,54.832 +22411,135.15,53.135 +22412,135.2,51.395 +22413,133.83,56.544 +22414,133.83,54.87 +22415,133.89,53.154 +22416,134,51.393 +22417,132.45,56.6 +22418,132.51,54.909 +22419,132.62,53.173 +22420,132.8,51.392 +22421,131.07,56.655 +22422,131.18,54.946 +22423,131.35,53.193 +22424,131.59,51.392 +22425,129.69,56.708 +22426,129.86,54.983 +22427,130.09,53.213 +22428,130.39,51.394 +22429,128.31,56.76 +22430,128.53,55.02 +22431,128.82,53.233 +22432,129.18,51.397 +22433,126.93,56.811 +22434,127.2,55.056 +22435,127.55,53.254 +22436,127.98,51.402 +22437,125.54,56.86 +22438,125.88,55.092 +22439,126.28,53.276 +22440,126.78,51.408 +22441,124.16,56.907 +22442,124.55,55.127 +22443,125.02,53.298 +22444,125.57,51.416 +22445,122.79,56.953 +22446,123.23,55.162 +22447,123.75,53.32 +22448,124.37,51.425 +22449,121.41,56.998 +22450,121.9,55.196 +22451,122.48,53.343 +22452,123.16,51.436 +22453,120.03,57.041 +22454,120.57,55.23 +22455,121.21,53.367 +22456,121.95,51.448 +22457,118.65,57.083 +22458,119.25,55.263 +22459,119.94,53.391 +22460,120.75,51.462 +22461,117.27,57.123 +22462,117.92,55.296 +22463,118.67,53.415 +22464,119.54,51.478 +22465,115.89,57.162 +22466,116.6,55.328 +22467,117.4,53.44 +22468,118.33,51.495 +22469,114.52,57.199 +22470,115.27,55.359 +22471,116.13,53.465 +22472,117.12,51.513 +22473,113.14,57.235 +22474,113.95,55.391 +22475,114.86,53.491 +22476,115.92,51.533 +22477,111.76,57.27 +22478,112.62,55.421 +22479,113.59,53.518 +22480,114.71,51.555 +22481,110.39,57.302 +22482,111.3,55.451 +22483,112.32,53.545 +22484,113.49,51.578 +22485,109.02,57.334 +22486,109.97,55.481 +22487,111.05,53.573 +22488,112.28,51.603 +22489,107.64,57.364 +22490,108.65,55.51 +22491,109.78,53.601 +22492,111.07,51.63 +22493,106.27,57.392 +22494,107.32,55.539 +22495,108.51,53.629 +22496,109.86,51.657 +22497,104.9,57.419 +22498,106,55.567 +22499,107.24,53.658 +22500,108.64,51.687 +22501,103.53,57.445 +22502,104.68,55.595 +22503,105.97,53.688 +22504,107.43,51.718 +22505,102.16,57.469 +22506,103.35,55.622 +22507,104.69,53.718 +22508,106.21,51.751 +22509,100.79,57.491 +22510,102.03,55.649 +22511,103.42,53.748 +22512,104.99,51.785 +22513,99.418,57.513 +22514,100.71,55.675 +22515,102.15,53.779 +22516,103.77,51.821 +22517,98.05,57.532 +22518,99.385,55.7 +22519,100.87,53.811 +22520,102.55,51.858 +22521,96.683,57.551 +22522,98.063,55.726 +22523,99.6,53.843 +22524,101.33,51.897 +22525,95.318,57.567 +22526,96.741,55.75 +22527,98.325,53.876 +22528,100.1,51.937 +22529,93.953,57.583 +22530,95.42,55.774 +22531,97.05,53.909 +22532,98.879,51.979 +22533,92.589,57.597 +22534,94.098,55.798 +22535,95.774,53.942 +22536,97.652,52.023 +22537,91.227,57.609 +22538,92.778,55.821 +22539,94.498,53.976 +22540,96.424,52.068 +22541,89.865,57.621 +22542,91.457,55.844 +22543,93.221,54.011 +22544,95.194,52.114 +22545,88.505,57.63 +22546,90.137,55.866 +22547,91.943,54.046 +22548,93.963,52.162 +22549,87.146,57.639 +22550,88.817,55.888 +22551,90.666,54.081 +22552,92.73,52.212 +22553,85.788,57.646 +22554,87.498,55.909 +22555,89.387,54.117 +22556,91.495,52.263 +22557,84.432,57.652 +22558,86.179,55.93 +22559,88.108,54.153 +22560,90.259,52.315 +22561,83.076,57.656 +22562,84.861,55.951 +22563,86.829,54.19 +22564,89.02,52.369 +22565,81.722,57.659 +22566,83.543,55.971 +22567,85.548,54.228 +22568,87.78,52.424 +22569,80.369,57.661 +22570,82.225,55.99 +22571,84.268,54.265 +22572,86.538,52.481 +22573,79.018,57.661 +22574,80.908,56.009 +22575,82.986,54.304 +22576,85.295,52.539 +22577,77.668,57.66 +22578,79.591,56.028 +22579,81.704,54.342 +22580,84.049,52.598 +22581,76.319,57.658 +22582,78.275,56.046 +22583,80.422,54.381 +22584,82.801,52.659 +22585,74.972,57.655 +22586,76.959,56.064 +22587,79.139,54.421 +22588,81.552,52.721 +22589,73.626,57.65 +22590,75.644,56.081 +22591,77.855,54.461 +22592,80.3,52.784 +22593,72.281,57.644 +22594,74.329,56.098 +22595,76.57,54.501 +22596,79.046,52.848 +22597,70.938,57.637 +22598,73.015,56.114 +22599,75.285,54.542 +22600,77.791,52.914 +22601,69.596,57.629 +22602,71.701,56.13 +22603,73.999,54.583 +22604,76.533,52.981 +22605,68.256,57.62 +22606,70.388,56.146 +22607,72.713,54.624 +22608,75.273,53.05 +22609,66.918,57.609 +22610,69.075,56.161 +22611,71.426,54.666 +22612,74.011,53.119 +22613,65.581,57.598 +22614,67.763,56.176 +22615,70.138,54.709 +22616,72.747,53.19 +22617,64.245,57.585 +22618,66.451,56.191 +22619,68.849,54.751 +22620,71.481,53.261 +22621,62.912,57.571 +22622,65.14,56.205 +22623,67.56,54.794 +22624,70.213,53.334 +22625,61.579,57.557 +22626,63.829,56.219 +22627,66.27,54.838 +22628,68.943,53.408 +22629,60.249,57.541 +22630,62.519,56.232 +22631,64.979,54.881 +22632,67.67,53.483 +22633,58.92,57.524 +22634,61.21,56.245 +22635,63.688,54.925 +22636,66.395,53.559 +22637,57.592,57.506 +22638,59.901,56.258 +22639,62.396,54.97 +22640,65.118,53.636 +22641,56.267,57.487 +22642,58.592,56.271 +22643,61.103,55.014 +22644,63.839,53.714 +22645,54.943,57.468 +22646,57.284,56.283 +22647,59.81,55.059 +22648,62.558,53.793 +22649,53.621,57.447 +22650,55.977,56.295 +22651,58.515,55.105 +22652,61.274,53.873 +22653,52.3,57.426 +22654,54.67,56.306 +22655,57.221,55.15 +22656,59.988,53.953 +22657,50.981,57.403 +22658,53.364,56.317 +22659,55.925,55.196 +22660,58.7,54.035 +22661,49.664,57.38 +22662,52.058,56.328 +22663,54.628,55.242 +22664,57.41,54.117 +22665,48.349,57.356 +22666,50.753,56.339 +22667,53.331,55.288 +22668,56.118,54.201 +22669,47.035,57.331 +22670,49.449,56.349 +22671,52.034,55.335 +22672,54.823,54.284 +22673,45.723,57.306 +22674,48.145,56.359 +22675,50.735,55.382 +22676,53.526,54.369 +22677,44.413,57.28 +22678,46.842,56.369 +22679,49.436,55.429 +22680,52.227,54.454 +22681,43.105,57.253 +22682,45.539,56.379 +22683,48.136,55.476 +22684,50.926,54.54 +22685,41.799,57.225 +22686,44.237,56.389 +22687,46.835,55.524 +22688,49.623,54.627 +22689,40.494,57.197 +22690,42.936,56.398 +22691,45.533,55.571 +22692,48.317,54.714 +22693,39.191,57.168 +22694,41.635,56.407 +22695,44.231,55.619 +22696,47.009,54.802 +22697,37.89,57.139 +22698,40.334,56.416 +22699,42.928,55.667 +22700,45.699,54.89 +22701,36.591,57.109 +22702,39.035,56.424 +22703,41.625,55.715 +22704,44.387,54.979 +22705,35.293,57.078 +22706,37.736,56.433 +22707,40.32,55.764 +22708,43.073,55.068 +22709,33.998,57.047 +22710,36.437,56.441 +22711,39.015,55.812 +22712,41.757,55.158 +22713,32.704,57.016 +22714,35.139,56.449 +22715,37.709,55.861 +22716,40.438,55.248 +22717,31.412,56.984 +22718,33.842,56.457 +22719,36.403,55.91 +22720,39.118,55.338 +22721,30.122,56.952 +22722,32.545,56.465 +22723,35.096,55.958 +22724,37.796,55.429 +22725,28.834,56.92 +22726,31.249,56.473 +22727,33.788,56.007 +22728,36.471,55.52 +22729,27.548,56.887 +22730,29.953,56.481 +22731,32.479,56.056 +22732,35.144,55.611 +22733,26.263,56.853 +22734,28.658,56.488 +22735,31.17,56.105 +22736,33.816,55.702 +22737,24.98,56.82 +22738,27.364,56.496 +22739,29.86,56.155 +22740,32.485,55.794 +22741,23.699,56.786 +22742,26.07,56.503 +22743,28.549,56.204 +22744,31.153,55.885 +22745,22.42,56.752 +22746,24.777,56.511 +22747,27.238,56.253 +22748,29.819,55.977 +22749,21.143,56.718 +22750,23.484,56.518 +22751,25.926,56.302 +22752,28.482,56.069 +22753,19.868,56.684 +22754,22.192,56.525 +22755,24.613,56.352 +22756,27.144,56.161 +22757,18.594,56.65 +22758,20.901,56.532 +22759,23.3,56.401 +22760,25.804,56.253 +22761,17.322,56.615 +22762,19.61,56.539 +22763,21.986,56.45 +22764,24.462,56.345 +22765,16.052,56.581 +22766,18.319,56.547 +22767,20.671,56.499 +22768,23.119,56.437 +22769,14.783,56.547 +22770,17.029,56.554 +22771,19.356,56.549 +22772,21.773,56.529 +22773,13.517,56.512 +22774,15.74,56.561 +22775,18.04,56.598 +22776,20.426,56.62 +22777,12.252,56.478 +22778,14.451,56.568 +22779,16.723,56.647 +22780,19.077,56.712 +22781,10.989,56.444 +22782,13.163,56.575 +22783,15.406,56.696 +22784,17.727,56.803 +22785,9.7275,56.409 +22786,11.875,56.583 +22787,14.088,56.745 +22788,16.375,56.894 +22789,8.4678,56.375 +22790,10.588,56.59 +22791,12.77,56.794 +22792,15.021,56.985 +22793,7.2098,56.342 +22794,9.3014,56.598 +22795,11.451,56.843 +22796,13.666,57.075 +22797,5.9535,56.308 +22798,8.0152,56.605 +22799,10.131,56.891 +22800,12.309,57.165 +22801,4.6988,56.275 +22802,6.7295,56.613 +22803,8.8112,56.94 +22804,10.951,57.255 +22805,3.4458,56.242 +22806,5.4443,56.62 +22807,7.4906,56.988 +22808,9.5909,57.344 +22809,2.1944,56.209 +22810,4.1595,56.628 +22811,6.1694,57.037 +22812,8.2296,57.433 +22813,0.94453,56.177 +22814,2.8752,56.636 +22815,4.8476,57.085 +22816,6.867,57.522 +22817,359.7,56.145 +22818,1.5914,56.644 +22819,3.5254,57.133 +22820,5.5029,57.609 +22821,358.45,56.113 +22822,0.30808,56.652 +22823,2.2026,57.181 +22824,4.1376,57.697 +22825,357.2,56.082 +22826,359.03,56.66 +22827,0.87931,57.228 +22828,2.7709,57.784 +22829,355.96,56.051 +22830,357.74,56.669 +22831,359.56,57.276 +22832,1.403,57.87 +22833,354.72,56.021 +22834,356.46,56.678 +22835,358.23,57.323 +22836,0.033843,57.956 +22837,353.48,55.992 +22838,355.18,56.686 +22839,356.91,57.37 +22840,358.66,58.041 +22841,352.24,55.963 +22842,353.9,56.695 +22843,355.58,57.417 +22844,357.29,58.125 +22845,351,55.934 +22846,352.62,56.705 +22847,354.26,57.464 +22848,355.92,58.209 +22849,349.76,55.906 +22850,351.34,56.714 +22851,352.93,57.51 +22852,354.55,58.292 +22853,348.53,55.879 +22854,350.06,56.724 +22855,351.6,57.556 +22856,353.17,58.374 +22857,347.29,55.853 +22858,348.78,56.734 +22859,350.28,57.602 +22860,351.8,58.456 +22861,346.06,55.827 +22862,347.5,56.744 +22863,348.95,57.647 +22864,350.42,58.536 +22865,344.83,55.802 +22866,346.22,56.754 +22867,347.62,57.693 +22868,349.04,58.616 +22869,343.6,55.778 +22870,344.94,56.765 +22871,346.29,57.738 +22872,347.66,58.695 +22873,342.37,55.754 +22874,343.66,56.776 +22875,344.96,57.782 +22876,346.28,58.773 +22877,341.14,55.732 +22878,342.38,56.787 +22879,343.64,57.827 +22880,344.9,58.85 +22881,339.92,55.71 +22882,341.11,56.798 +22883,342.31,57.871 +22884,343.52,58.926 +22885,338.69,55.689 +22886,339.83,56.81 +22887,340.98,57.915 +22888,342.14,59.002 +22889,337.47,55.669 +22890,338.55,56.822 +22891,339.65,57.958 +22892,340.76,59.076 +22893,336.24,55.65 +22894,337.27,56.835 +22895,338.32,58.001 +22896,339.38,59.149 +22897,335.02,55.632 +22898,336,56.847 +22899,336.99,58.044 +22900,337.99,59.221 +22901,333.8,55.615 +22902,334.72,56.86 +22903,335.66,58.086 +22904,336.61,59.293 +22905,332.58,55.599 +22906,333.44,56.874 +22907,334.33,58.128 +22908,335.22,59.363 +22909,331.35,55.584 +22910,332.17,56.887 +22911,332.99,58.17 +22912,333.84,59.432 +22913,330.13,55.57 +22914,330.89,56.901 +22915,331.66,58.211 +22916,332.45,59.5 +22917,328.92,55.557 +22918,329.62,56.916 +22919,330.33,58.252 +22920,331.07,59.567 +22921,327.7,55.545 +22922,328.34,56.93 +22923,329,58.293 +22924,329.68,59.632 +22925,326.48,55.535 +22926,327.06,56.945 +22927,327.67,58.333 +22928,328.29,59.697 +22929,325.26,55.525 +22930,325.79,56.961 +22931,326.34,58.373 +22932,326.91,59.76 +22933,324.05,55.517 +22934,324.51,56.977 +22935,325,58.412 +22936,325.52,59.823 +22937,322.83,55.51 +22938,323.24,56.993 +22939,323.67,58.451 +22940,324.13,59.884 +22941,321.61,55.504 +22942,321.96,57.01 +22943,322.34,58.49 +22944,322.74,59.943 +22945,320.4,55.499 +22946,320.69,57.027 +22947,321.01,58.528 +22948,321.35,60.002 +22949,319.18,55.495 +22950,319.41,57.044 +22951,319.67,58.566 +22952,319.97,60.059 +22953,317.97,55.493 +22954,318.14,57.062 +22955,318.34,58.603 +22956,318.58,60.115 +22957,316.76,55.492 +22958,316.86,57.08 +22959,317.01,58.64 +22960,317.19,60.17 +22961,315.54,55.492 +22962,315.59,57.099 +22963,315.68,58.676 +22964,315.8,60.223 +22965,314.33,55.494 +22966,314.31,57.118 +22967,314.34,58.712 +22968,314.41,60.276 +22969,313.11,55.496 +22970,313.04,57.137 +22971,313.01,58.747 +22972,313.02,60.326 +22973,311.9,55.501 +22974,311.76,57.157 +22975,311.68,58.782 +22976,311.64,60.376 +22977,310.69,55.506 +22978,310.49,57.178 +22979,310.34,58.817 +22980,310.25,60.424 +22981,309.47,55.513 +22982,309.21,57.199 +22983,309.01,58.851 +22984,308.86,60.471 +22985,308.26,55.521 +22986,307.94,57.22 +22987,307.68,58.885 +22988,307.47,60.517 +22989,307.04,55.531 +22990,306.66,57.241 +22991,306.34,58.918 +22992,306.09,60.561 +22993,305.83,55.542 +22994,305.39,57.264 +22995,305.01,58.951 +22996,304.7,60.604 +22997,304.61,55.554 +22998,304.11,57.286 +22999,303.68,58.983 +23000,303.31,60.645 +23001,303.4,55.568 +23002,302.83,57.309 +23003,302.35,59.015 +23004,301.93,60.685 +23005,302.18,55.583 +23006,301.56,57.333 +23007,301.01,59.046 +23008,300.54,60.724 +23009,300.97,55.599 +23010,300.28,57.357 +23011,299.68,59.077 +23012,299.16,60.762 +23013,299.75,55.617 +23014,299,57.381 +23015,298.35,59.107 +23016,297.77,60.798 +23017,298.53,55.637 +23018,297.73,57.406 +23019,297.02,59.137 +23020,296.39,60.832 +23021,297.32,55.657 +23022,296.45,57.431 +23023,295.68,59.167 +23024,295,60.866 +23025,296.1,55.679 +23026,295.17,57.457 +23027,294.35,59.196 +23028,293.62,60.897 +23029,294.88,55.703 +23030,293.9,57.483 +23031,293.02,59.224 +23032,292.24,60.928 +23033,293.66,55.728 +23034,292.62,57.51 +23035,291.69,59.252 +23036,290.85,60.957 +23037,292.44,55.755 +23038,291.34,57.537 +23039,290.36,59.28 +23040,289.47,60.985 +23041,291.22,55.782 +23042,290.06,57.564 +23043,289.03,59.307 +23044,288.09,61.011 +23045,290,55.812 +23046,288.78,57.592 +23047,287.7,59.333 +23048,286.71,61.036 +23049,288.77,55.842 +23050,287.51,57.621 +23051,286.36,59.36 +23052,285.33,61.06 +23053,287.55,55.874 +23054,286.23,57.65 +23055,285.03,59.385 +23056,283.95,61.082 +23057,286.32,55.908 +23058,284.95,57.679 +23059,283.7,59.41 +23060,282.58,61.103 +23061,285.1,55.943 +23062,283.67,57.709 +23063,282.37,59.435 +23064,281.2,61.122 +23065,283.87,55.979 +23066,282.39,57.739 +23067,281.04,59.459 +23068,279.82,61.141 +23069,282.64,56.017 +23070,281.11,57.77 +23071,279.72,59.483 +23072,278.45,61.157 +23073,281.41,56.056 +23074,279.82,57.801 +23075,278.39,59.506 +23076,277.08,61.173 +23077,280.18,56.096 +23078,278.54,57.833 +23079,277.06,59.529 +23080,275.7,61.187 +23081,278.95,56.138 +23082,277.26,57.865 +23083,275.73,59.552 +23084,274.33,61.2 +23085,277.72,56.182 +23086,275.98,57.898 +23087,274.4,59.573 +23088,272.96,61.211 +23089,276.48,56.226 +23090,274.7,57.931 +23091,273.07,59.595 +23092,271.59,61.221 +23093,275.24,56.272 +23094,273.41,57.964 +23095,271.75,59.616 +23096,270.22,61.23 +23097,274.01,56.319 +23098,272.13,57.998 +23099,270.42,59.637 +23100,268.85,61.238 +23101,272.77,56.368 +23102,270.84,58.032 +23103,269.09,59.657 +23104,267.49,61.244 +23105,271.53,56.418 +23106,269.56,58.067 +23107,267.77,59.676 +23108,266.12,61.249 +23109,270.28,56.469 +23110,268.27,58.102 +23111,266.44,59.696 +23112,264.76,61.253 +23113,269.04,56.521 +23114,266.99,58.137 +23115,265.12,59.714 +23116,263.4,61.256 +23117,267.79,56.575 +23118,265.7,58.173 +23119,263.79,59.733 +23120,262.03,61.257 +23121,266.55,56.63 +23122,264.41,58.209 +23123,262.47,59.751 +23124,260.67,61.257 +23125,265.3,56.686 +23126,263.13,58.246 +23127,261.14,59.768 +23128,259.32,61.256 +23129,264.05,56.743 +23130,261.84,58.283 +23131,259.82,59.786 +23132,257.96,61.254 +23133,262.79,56.801 +23134,260.55,58.32 +23135,258.5,59.802 +23136,256.6,61.251 +23137,261.54,56.861 +23138,259.26,58.358 +23139,257.17,59.819 +23140,255.25,61.246 +23141,260.28,56.922 +23142,257.97,58.396 +23143,255.85,59.835 +23144,253.89,61.24 +23145,259.03,56.984 +23146,256.68,58.435 +23147,254.53,59.85 +23148,252.54,61.234 +23149,257.76,57.047 +23150,255.39,58.473 +23151,253.21,59.866 +23152,251.19,61.226 +23153,256.5,57.111 +23154,254.1,58.513 +23155,251.89,59.88 +23156,249.84,61.217 +23157,255.24,57.176 +23158,252.8,58.552 +23159,250.57,59.895 +23160,248.49,61.207 +23161,253.97,57.243 +23162,251.51,58.592 +23163,249.25,59.909 +23164,247.15,61.196 +23165,252.71,57.31 +23166,250.22,58.632 +23167,247.93,59.923 +23168,245.8,61.184 +23169,251.44,57.378 +23170,248.92,58.673 +23171,246.61,59.936 +23172,244.46,61.171 +23173,250.16,57.447 +23174,247.63,58.714 +23175,245.29,59.949 +23176,243.12,61.157 +23177,248.89,57.517 +23178,246.33,58.755 +23179,243.97,59.962 +23180,241.78,61.142 +23181,247.61,57.588 +23182,245.04,58.796 +23183,242.66,59.975 +23184,240.44,61.126 +23185,246.34,57.66 +23186,243.74,58.838 +23187,241.34,59.987 +23188,239.1,61.109 +23189,245.06,57.733 +23190,242.44,58.88 +23191,240.02,59.999 +23192,237.77,61.092 +23193,243.77,57.807 +23194,241.14,58.922 +23195,238.71,60.01 +23196,236.44,61.073 +23197,242.49,57.881 +23198,239.85,58.965 +23199,237.39,60.021 +23200,235.1,61.054 +23201,241.2,57.957 +23202,238.55,59.008 +23203,236.08,60.032 +23204,233.78,61.033 +23205,239.91,58.033 +23206,237.25,59.051 +23207,234.77,60.043 +23208,232.45,61.013 +23209,238.62,58.11 +23210,235.94,59.094 +23211,233.45,60.053 +23212,231.12,60.991 +23213,237.33,58.187 +23214,234.64,59.137 +23215,232.14,60.064 +23216,229.8,60.968 +23217,236.04,58.265 +23218,233.34,59.181 +23219,230.83,60.074 +23220,228.47,60.945 +23221,234.74,58.344 +23222,232.04,59.225 +23223,229.52,60.083 +23224,227.15,60.921 +23225,233.44,58.423 +23226,230.73,59.269 +23227,228.21,60.093 +23228,225.83,60.897 +23229,232.14,58.503 +23230,229.43,59.313 +23231,226.9,60.102 +23232,224.51,60.872 +23233,230.84,58.584 +23234,228.12,59.358 +23235,225.59,60.111 +23236,223.2,60.846 +23237,229.53,58.665 +23238,226.82,59.402 +23239,224.28,60.12 +23240,221.88,60.82 +23241,228.22,58.747 +23242,225.51,59.447 +23243,222.97,60.129 +23244,220.57,60.793 +23245,226.91,58.829 +23246,224.2,59.492 +23247,221.66,60.137 +23248,219.26,60.765 +23249,225.6,58.911 +23250,222.9,59.537 +23251,220.35,60.145 +23252,217.95,60.738 +23253,224.29,58.994 +23254,221.59,59.582 +23255,219.05,60.153 +23256,216.64,60.709 +23257,222.97,59.077 +23258,220.28,59.628 +23259,217.74,60.161 +23260,215.34,60.68 +23261,221.65,59.161 +23262,218.97,59.673 +23263,216.44,60.169 +23264,214.03,60.651 +23265,220.33,59.244 +23266,217.66,59.719 +23267,215.13,60.177 +23268,212.73,60.622 +23269,219.01,59.329 +23270,216.35,59.764 +23271,213.83,60.185 +23272,211.43,60.592 +23273,217.69,59.413 +23274,215.03,59.81 +23275,212.52,60.192 +23276,210.13,60.562 +23277,216.36,59.498 +23278,213.72,59.856 +23279,211.22,60.199 +23280,208.84,60.531 +23281,215.03,59.582 +23282,212.41,59.901 +23283,209.92,60.207 +23284,207.54,60.501 +23285,213.7,59.667 +23286,211.09,59.947 +23287,208.62,60.214 +23288,206.25,60.47 +23289,212.37,59.752 +23290,209.78,59.993 +23291,207.32,60.221 +23292,204.96,60.438 +23293,211.04,59.837 +23294,208.46,60.039 +23295,206.01,60.228 +23296,203.67,60.407 +23297,209.7,59.922 +23298,207.15,60.085 +23299,204.71,60.235 +23300,202.38,60.376 +23301,208.36,60.008 +23302,205.83,60.131 +23303,203.42,60.242 +23304,201.1,60.344 +23305,207.02,60.093 +23306,204.51,60.177 +23307,202.12,60.249 +23308,199.81,60.312 +23309,205.68,60.178 +23310,203.2,60.223 +23311,200.82,60.256 +23312,198.53,60.281 +23313,204.34,60.263 +23314,201.88,60.269 +23315,199.52,60.263 +23316,197.25,60.249 +23317,202.99,60.348 +23318,200.56,60.314 +23319,198.22,60.27 +23320,195.97,60.217 +23321,201.65,60.433 +23322,199.24,60.36 +23323,196.93,60.277 +23324,194.7,60.186 +23325,200.3,60.517 +23326,197.92,60.406 +23327,195.63,60.284 +23328,193.42,60.154 +23329,198.95,60.602 +23330,196.6,60.451 +23331,194.33,60.291 +23332,192.15,60.123 +23333,197.6,60.686 +23334,195.28,60.497 +23335,193.04,60.298 +23336,190.88,60.092 +23337,196.24,60.77 +23338,193.95,60.542 +23339,191.74,60.305 +23340,189.61,60.061 +23341,194.89,60.853 +23342,192.63,60.588 +23343,190.45,60.313 +23344,188.34,60.03 +23345,193.53,60.937 +23346,191.31,60.633 +23347,189.16,60.32 +23348,187.07,59.999 +23349,192.17,61.02 +23350,189.98,60.678 +23351,187.86,60.327 +23352,185.81,59.969 +23353,190.81,61.102 +23354,188.66,60.723 +23355,186.57,60.335 +23356,184.54,59.938 +23357,189.45,61.184 +23358,187.33,60.768 +23359,185.28,60.342 +23360,183.28,59.909 +23361,188.09,61.266 +23362,186.01,60.813 +23363,183.99,60.35 +23364,182.02,59.879 +23365,186.72,61.347 +23366,184.68,60.857 +23367,182.7,60.358 +23368,180.76,59.85 +23369,185.36,61.428 +23370,183.36,60.902 +23371,181.41,60.366 +23372,179.51,59.822 +23373,183.99,61.508 +23374,182.03,60.946 +23375,180.12,60.374 +23376,178.25,59.793 +23377,182.62,61.588 +23378,180.7,60.99 +23379,178.83,60.382 +23380,177,59.766 +23381,181.25,61.667 +23382,179.37,61.034 +23383,177.54,60.39 +23384,175.74,59.738 +23385,179.88,61.746 +23386,178.04,61.077 +23387,176.25,60.399 +23388,174.49,59.712 +23389,178.51,61.823 +23390,176.72,61.121 +23391,174.96,60.408 +23392,173.24,59.686 +23393,177.14,61.901 +23394,175.39,61.164 +23395,173.67,60.416 +23396,171.99,59.66 +23397,175.76,61.977 +23398,174.06,61.207 +23399,172.39,60.426 +23400,170.75,59.635 +23401,174.39,62.053 +23402,172.73,61.249 +23403,171.1,60.435 +23404,169.5,59.611 +23405,173.01,62.128 +23406,171.39,61.292 +23407,169.81,60.444 +23408,168.26,59.587 +23409,171.63,62.202 +23410,170.06,61.334 +23411,168.53,60.454 +23412,167.01,59.564 +23413,170.25,62.276 +23414,168.73,61.376 +23415,167.24,60.464 +23416,165.77,59.542 +23417,168.87,62.348 +23418,167.4,61.418 +23419,165.95,60.475 +23420,164.53,59.521 +23421,167.49,62.42 +23422,166.07,61.459 +23423,164.67,60.485 +23424,163.29,59.5 +23425,166.11,62.491 +23426,164.73,61.5 +23427,163.38,60.496 +23428,162.05,59.48 +23429,164.73,62.561 +23430,163.4,61.541 +23431,162.1,60.507 +23432,160.82,59.461 +23433,163.34,62.63 +23434,162.07,61.581 +23435,160.81,60.518 +23436,159.58,59.443 +23437,161.96,62.698 +23438,160.73,61.621 +23439,159.53,60.53 +23440,158.35,59.426 +23441,160.57,62.766 +23442,159.4,61.661 +23443,158.25,60.542 +23444,157.11,59.409 +23445,159.19,62.832 +23446,158.07,61.701 +23447,156.96,60.554 +23448,155.88,59.394 +23449,157.8,62.898 +23450,156.73,61.74 +23451,155.68,60.566 +23452,154.65,59.379 +23453,156.41,62.962 +23454,155.4,61.778 +23455,154.4,60.579 +23456,153.42,59.365 +23457,155.03,63.025 +23458,154.06,61.817 +23459,153.11,60.592 +23460,152.19,59.353 +23461,153.64,63.087 +23462,152.73,61.855 +23463,151.83,60.606 +23464,150.96,59.341 +23465,152.25,63.149 +23466,151.39,61.893 +23467,150.55,60.619 +23468,149.73,59.33 +23469,150.86,63.209 +23470,150.05,61.93 +23471,149.27,60.634 +23472,148.5,59.321 +23473,149.47,63.268 +23474,148.72,61.967 +23475,147.99,60.648 +23476,147.27,59.312 +23477,148.08,63.326 +23478,147.38,62.004 +23479,146.7,60.663 +23480,146.05,59.305 +23481,146.69,63.383 +23482,146.05,62.04 +23483,145.42,60.678 +23484,144.82,59.298 +23485,145.3,63.438 +23486,144.71,62.076 +23487,144.14,60.693 +23488,143.6,59.293 +23489,143.91,63.493 +23490,143.37,62.111 +23491,142.86,60.709 +23492,142.37,59.289 +23493,142.52,63.546 +23494,142.04,62.146 +23495,141.58,60.726 +23496,141.15,59.286 +23497,141.13,63.598 +23498,140.7,62.181 +23499,140.3,60.742 +23500,139.92,59.284 +23501,139.73,63.649 +23502,139.36,62.215 +23503,139.02,60.759 +23504,138.7,59.284 +23505,138.34,63.699 +23506,138.02,62.249 +23507,137.73,60.777 +23508,137.48,59.284 +23509,136.95,63.748 +23510,136.69,62.282 +23511,136.45,60.794 +23512,136.25,59.286 +23513,135.56,63.795 +23514,135.35,62.315 +23515,135.17,60.813 +23516,135.03,59.289 +23517,134.17,63.841 +23518,134.01,62.347 +23519,133.89,60.831 +23520,133.81,59.293 +23521,132.78,63.886 +23522,132.67,62.38 +23523,132.61,60.85 +23524,132.58,59.299 +23525,131.38,63.93 +23526,131.34,62.411 +23527,131.33,60.87 +23528,131.36,59.306 +23529,129.99,63.972 +23530,130,62.442 +23531,130.05,60.889 +23532,130.14,59.314 +23533,128.6,64.013 +23534,128.66,62.473 +23535,128.77,60.91 +23536,128.92,59.323 +23537,127.21,64.053 +23538,127.33,62.504 +23539,127.49,60.93 +23540,127.7,59.333 +23541,125.82,64.092 +23542,125.99,62.534 +23543,126.21,60.951 +23544,126.47,59.345 +23545,124.43,64.129 +23546,124.65,62.563 +23547,124.92,60.973 +23548,125.25,59.358 +23549,123.04,64.165 +23550,123.31,62.592 +23551,123.64,60.995 +23552,124.03,59.373 +23553,121.65,64.2 +23554,121.98,62.621 +23555,122.36,61.017 +23556,122.81,59.388 +23557,120.26,64.233 +23558,120.64,62.649 +23559,121.08,61.039 +23560,121.58,59.405 +23561,118.87,64.265 +23562,119.3,62.676 +23563,119.8,61.063 +23564,120.36,59.424 +23565,117.48,64.296 +23566,117.97,62.704 +23567,118.52,61.086 +23568,119.14,59.443 +23569,116.09,64.325 +23570,116.63,62.731 +23571,117.23,61.11 +23572,117.91,59.464 +23573,114.7,64.354 +23574,115.29,62.757 +23575,115.95,61.135 +23576,116.69,59.487 +23577,113.31,64.38 +23578,113.96,62.783 +23579,114.67,61.159 +23580,115.46,59.51 +23581,111.92,64.406 +23582,112.62,62.808 +23583,113.39,61.185 +23584,114.24,59.535 +23585,110.54,64.43 +23586,111.28,62.833 +23587,112.1,61.21 +23588,113.01,59.561 +23589,109.15,64.453 +23590,109.95,62.858 +23591,110.82,61.236 +23592,111.78,59.589 +23593,107.77,64.475 +23594,108.61,62.882 +23595,109.54,61.263 +23596,110.55,59.618 +23597,106.38,64.495 +23598,107.28,62.906 +23599,108.25,61.29 +23600,109.33,59.648 +23601,105,64.514 +23602,105.94,62.929 +23603,106.97,61.317 +23604,108.1,59.68 +23605,103.61,64.532 +23606,104.61,62.951 +23607,105.68,61.345 +23608,106.87,59.712 +23609,102.23,64.549 +23610,103.27,62.974 +23611,104.4,61.373 +23612,105.63,59.747 +23613,100.85,64.564 +23614,101.94,62.996 +23615,103.12,61.402 +23616,104.4,59.782 +23617,99.471,64.578 +23618,100.6,63.017 +23619,101.83,61.431 +23620,103.17,59.819 +23621,98.091,64.591 +23622,99.268,63.038 +23623,100.54,61.46 +23624,101.94,59.857 +23625,96.712,64.602 +23626,97.934,63.059 +23627,99.258,61.49 +23628,100.7,59.896 +23629,95.334,64.612 +23630,96.6,63.079 +23631,97.972,61.52 +23632,99.464,59.936 +23633,93.957,64.621 +23634,95.267,63.099 +23635,96.685,61.551 +23636,98.227,59.978 +23637,92.582,64.629 +23638,93.935,63.118 +23639,95.398,61.582 +23640,96.988,60.021 +23641,91.207,64.636 +23642,92.602,63.137 +23643,94.11,61.613 +23644,95.748,60.065 +23645,89.833,64.641 +23646,91.27,63.155 +23647,92.822,61.645 +23648,94.507,60.111 +23649,88.46,64.645 +23650,89.939,63.173 +23651,91.534,61.677 +23652,93.264,60.158 +23653,87.089,64.648 +23654,88.607,63.191 +23655,90.245,61.71 +23656,92.02,60.205 +23657,85.718,64.65 +23658,87.277,63.208 +23659,88.956,61.743 +23660,90.775,60.254 +23661,84.349,64.65 +23662,85.946,63.225 +23663,87.666,61.776 +23664,89.528,60.305 +23665,82.981,64.65 +23666,84.616,63.241 +23667,86.376,61.81 +23668,88.28,60.356 +23669,81.615,64.648 +23670,83.286,63.257 +23671,85.085,61.844 +23672,87.031,60.409 +23673,80.249,64.645 +23674,81.957,63.273 +23675,83.794,61.879 +23676,85.779,60.462 +23677,78.885,64.641 +23678,80.628,63.288 +23679,82.502,61.914 +23680,84.526,60.517 +23681,77.522,64.636 +23682,79.3,63.303 +23683,81.209,61.949 +23684,83.272,60.573 +23685,76.16,64.63 +23686,77.972,63.318 +23687,79.916,61.984 +23688,82.016,60.63 +23689,74.8,64.623 +23690,76.644,63.332 +23691,78.623,62.02 +23692,80.758,60.688 +23693,73.441,64.615 +23694,75.317,63.346 +23695,77.329,62.056 +23696,79.499,60.747 +23697,72.084,64.606 +23698,73.991,63.359 +23699,76.035,62.093 +23700,78.238,60.807 +23701,70.728,64.596 +23702,72.665,63.372 +23703,74.739,62.13 +23704,76.975,60.867 +23705,69.373,64.585 +23706,71.339,63.385 +23707,73.444,62.167 +23708,75.71,60.929 +23709,68.02,64.573 +23710,70.014,63.397 +23711,72.148,62.204 +23712,74.444,60.992 +23713,66.669,64.56 +23714,68.69,63.41 +23715,70.851,62.242 +23716,73.175,61.056 +23717,65.319,64.546 +23718,67.366,63.421 +23719,69.553,62.28 +23720,71.905,61.121 +23721,63.97,64.531 +23722,66.042,63.433 +23723,68.255,62.318 +23724,70.633,61.186 +23725,62.623,64.515 +23726,64.719,63.444 +23727,66.957,62.357 +23728,69.359,61.253 +23729,61.277,64.499 +23730,63.397,63.455 +23731,65.657,62.396 +23732,68.084,61.32 +23733,59.934,64.481 +23734,62.075,63.466 +23735,64.357,62.435 +23736,66.806,61.388 +23737,58.591,64.463 +23738,60.753,63.476 +23739,63.057,62.474 +23740,65.526,61.457 +23741,57.251,64.444 +23742,59.433,63.486 +23743,61.756,62.514 +23744,64.245,61.527 +23745,55.911,64.424 +23746,58.112,63.496 +23747,60.454,62.554 +23748,62.961,61.597 +23749,54.574,64.404 +23750,56.793,63.505 +23751,59.152,62.594 +23752,61.676,61.668 +23753,53.238,64.382 +23754,55.473,63.514 +23755,57.849,62.634 +23756,60.388,61.74 +23757,51.904,64.36 +23758,54.155,63.523 +23759,56.545,62.674 +23760,59.099,61.812 +23761,50.571,64.338 +23762,52.837,63.532 +23763,55.241,62.715 +23764,57.807,61.885 +23765,49.241,64.314 +23766,51.519,63.541 +23767,53.936,62.756 +23768,56.514,61.959 +23769,47.912,64.291 +23770,50.202,63.549 +23771,52.63,62.797 +23772,55.218,62.033 +23773,46.584,64.266 +23774,48.886,63.557 +23775,51.324,62.838 +23776,53.92,62.108 +23777,45.258,64.241 +23778,47.57,63.565 +23779,50.017,62.88 +23780,52.621,62.183 +23781,43.934,64.215 +23782,46.255,63.573 +23783,48.709,62.921 +23784,51.319,62.259 +23785,42.612,64.189 +23786,44.941,63.581 +23787,47.401,62.963 +23788,50.016,62.335 +23789,41.292,64.163 +23790,43.627,63.588 +23791,46.092,63.005 +23792,48.71,62.412 +23793,39.973,64.136 +23794,42.313,63.595 +23795,44.782,63.047 +23796,47.402,62.489 +23797,38.656,64.108 +23798,41,63.602 +23799,43.472,63.089 +23800,46.092,62.567 +23801,37.341,64.08 +23802,39.688,63.609 +23803,42.161,63.131 +23804,44.781,62.644 +23805,36.027,64.052 +23806,38.377,63.616 +23807,40.849,63.173 +23808,43.467,62.722 +23809,34.716,64.023 +23810,37.066,63.623 +23811,39.537,63.216 +23812,42.151,62.801 +23813,33.406,63.995 +23814,35.755,63.63 +23815,38.224,63.258 +23816,40.833,62.879 +23817,32.098,63.965 +23818,34.445,63.636 +23819,36.911,63.301 +23820,39.513,62.958 +23821,30.791,63.936 +23822,33.136,63.642 +23823,35.596,63.343 +23824,38.192,63.037 +23825,29.486,63.906 +23826,31.827,63.649 +23827,34.281,63.386 +23828,36.868,63.117 +23829,28.184,63.876 +23830,30.519,63.655 +23831,32.966,63.429 +23832,35.542,63.196 +23833,26.883,63.846 +23834,29.212,63.661 +23835,31.65,63.471 +23836,34.215,63.275 +23837,25.583,63.816 +23838,27.905,63.667 +23839,30.333,63.514 +23840,32.885,63.355 +23841,24.286,63.785 +23842,26.598,63.673 +23843,29.015,63.557 +23844,31.553,63.435 +23845,22.99,63.755 +23846,25.293,63.679 +23847,27.697,63.6 +23848,30.22,63.514 +23849,21.696,63.724 +23850,23.988,63.686 +23851,26.378,63.642 +23852,28.885,63.594 +23853,20.403,63.694 +23854,22.683,63.692 +23855,25.059,63.685 +23856,27.547,63.673 +23857,19.113,63.663 +23858,21.379,63.698 +23859,23.739,63.728 +23860,26.208,63.753 +23861,17.824,63.633 +23862,20.075,63.704 +23863,22.418,63.771 +23864,24.867,63.832 +23865,16.537,63.602 +23866,18.773,63.71 +23867,21.097,63.813 +23868,23.525,63.912 +23869,15.252,63.572 +23870,17.47,63.716 +23871,19.775,63.856 +23872,22.18,63.991 +23873,13.968,63.542 +23874,16.168,63.722 +23875,18.453,63.898 +23876,20.834,64.07 +23877,12.686,63.512 +23878,14.867,63.728 +23879,17.13,63.941 +23880,19.486,64.148 +23881,11.406,63.482 +23882,13.567,63.734 +23883,15.806,63.983 +23884,18.136,64.227 +23885,10.127,63.452 +23886,12.266,63.74 +23887,14.482,64.025 +23888,16.785,64.305 +23889,8.85,63.422 +23890,10.967,63.747 +23891,13.157,64.067 +23892,15.432,64.383 +23893,7.5747,63.393 +23894,9.6678,63.753 +23895,11.832,64.109 +23896,14.077,64.461 +23897,6.301,63.364 +23898,8.3692,63.759 +23899,10.506,64.151 +23900,12.721,64.538 +23901,5.0289,63.335 +23902,7.0712,63.766 +23903,9.1791,64.193 +23904,11.363,64.615 +23905,3.7584,63.307 +23906,5.7736,63.773 +23907,7.852,64.235 +23908,10.003,64.691 +23909,2.4895,63.279 +23910,4.4766,63.78 +23911,6.5244,64.276 +23912,8.642,64.767 +23913,1.2222,63.252 +23914,3.1801,63.787 +23915,5.1963,64.317 +23916,7.2795,64.842 +23917,359.96,63.225 +23918,1.884,63.794 +23919,3.8676,64.358 +23920,5.9154,64.917 +23921,358.69,63.198 +23922,0.58845,63.801 +23923,2.5385,64.399 +23924,4.55,64.992 +23925,357.43,63.172 +23926,359.29,63.808 +23927,1.2088,64.44 +23928,3.1831,65.066 +23929,356.17,63.146 +23930,358,63.816 +23931,359.88,64.481 +23932,1.8148,65.139 +23933,354.91,63.121 +23934,356.7,63.824 +23935,358.55,64.521 +23936,0.44523,65.212 +23937,353.65,63.096 +23938,355.41,63.831 +23939,357.22,64.561 +23940,359.07,65.284 +23941,352.39,63.073 +23942,354.12,63.84 +23943,355.89,64.601 +23944,357.7,65.356 +23945,351.14,63.049 +23946,352.82,63.848 +23947,354.55,64.641 +23948,356.33,65.426 +23949,349.88,63.027 +23950,351.53,63.856 +23951,353.22,64.68 +23952,354.95,65.496 +23953,348.63,63.005 +23954,350.24,63.865 +23955,351.89,64.72 +23956,353.58,65.566 +23957,347.38,62.983 +23958,348.95,63.874 +23959,350.55,64.758 +23960,352.2,65.634 +23961,346.13,62.963 +23962,347.66,63.883 +23963,349.22,64.797 +23964,350.82,65.702 +23965,344.88,62.943 +23966,346.37,63.893 +23967,347.89,64.836 +23968,349.44,65.769 +23969,343.63,62.924 +23970,345.08,63.902 +23971,346.55,64.874 +23972,348.06,65.836 +23973,342.38,62.905 +23974,343.79,63.912 +23975,345.22,64.912 +23976,346.68,65.901 +23977,341.14,62.888 +23978,342.5,63.923 +23979,343.88,64.949 +23980,345.3,65.966 +23981,339.89,62.871 +23982,341.21,63.933 +23983,342.55,64.986 +23984,343.92,66.029 +23985,338.65,62.856 +23986,339.92,63.944 +23987,341.21,65.023 +23988,342.53,66.092 +23989,337.41,62.841 +23990,338.63,63.955 +23991,339.87,65.06 +23992,341.15,66.154 +23993,336.17,62.827 +23994,337.34,63.966 +23995,338.54,65.096 +23996,339.76,66.215 +23997,334.93,62.814 +23998,336.05,63.978 +23999,337.2,65.132 +24000,338.38,66.275 +24001,333.69,62.801 +24002,334.76,63.99 +24003,335.86,65.168 +24004,336.99,66.334 +24005,332.45,62.79 +24006,333.48,64.002 +24007,334.53,65.203 +24008,335.6,66.392 +24009,331.21,62.78 +24010,332.19,64.015 +24011,333.19,65.238 +24012,334.21,66.449 +24013,329.97,62.771 +24014,330.9,64.028 +24015,331.85,65.273 +24016,332.82,66.505 +24017,328.74,62.763 +24018,329.61,64.041 +24019,330.51,65.307 +24020,331.43,66.56 +24021,327.5,62.756 +24022,328.33,64.054 +24023,329.17,65.341 +24024,330.04,66.614 +24025,326.27,62.75 +24026,327.04,64.068 +24027,327.84,65.375 +24028,328.65,66.667 +24029,325.04,62.745 +24030,325.75,64.083 +24031,326.5,65.408 +24032,327.26,66.719 +24033,323.8,62.741 +24034,324.47,64.097 +24035,325.16,65.441 +24036,325.87,66.769 +24037,322.57,62.738 +24038,323.18,64.112 +24039,323.82,65.473 +24040,324.48,66.819 +24041,321.34,62.736 +24042,321.9,64.127 +24043,322.48,65.505 +24044,323.09,66.867 +24045,320.11,62.736 +24046,320.61,64.143 +24047,321.14,65.537 +24048,321.69,66.915 +24049,318.88,62.736 +24050,319.32,64.159 +24051,319.8,65.568 +24052,320.3,66.961 +24053,317.64,62.738 +24054,318.04,64.176 +24055,318.46,65.599 +24056,318.91,67.006 +24057,316.41,62.741 +24058,316.75,64.192 +24059,317.12,65.629 +24060,317.52,67.05 +24061,315.18,62.745 +24062,315.47,64.21 +24063,315.78,65.659 +24064,316.12,67.092 +24065,313.96,62.75 +24066,314.18,64.227 +24067,314.44,65.689 +24068,314.73,67.134 +24069,312.73,62.756 +24070,312.9,64.245 +24071,313.1,65.718 +24072,313.33,67.174 +24073,311.5,62.764 +24074,311.61,64.264 +24075,311.76,65.747 +24076,311.94,67.213 +24077,310.27,62.773 +24078,310.33,64.282 +24079,310.42,65.775 +24080,310.55,67.251 +24081,309.04,62.783 +24082,309.04,64.301 +24083,309.08,65.803 +24084,309.15,67.288 +24085,307.81,62.794 +24086,307.76,64.321 +24087,307.74,65.831 +24088,307.76,67.323 +24089,306.58,62.807 +24090,306.47,64.341 +24091,306.4,65.858 +24092,306.37,67.358 +24093,305.35,62.821 +24094,305.18,64.361 +24095,305.06,65.885 +24096,304.97,67.391 +24097,304.12,62.836 +24098,303.9,64.382 +24099,303.72,65.911 +24100,303.58,67.422 +24101,302.89,62.852 +24102,302.61,64.403 +24103,302.38,65.937 +24104,302.19,67.453 +24105,301.67,62.869 +24106,301.33,64.425 +24107,301.04,65.963 +24108,300.79,67.482 +24109,300.44,62.888 +24110,300.04,64.447 +24111,299.7,65.988 +24112,299.4,67.51 +24113,299.21,62.908 +24114,298.76,64.469 +24115,298.36,66.012 +24116,298.01,67.537 +24117,297.98,62.93 +24118,297.47,64.492 +24119,297.02,66.036 +24120,296.62,67.563 +24121,296.75,62.952 +24122,296.18,64.515 +24123,295.68,66.06 +24124,295.23,67.587 +24125,295.52,62.976 +24126,294.9,64.538 +24127,294.34,66.083 +24128,293.84,67.61 +24129,294.29,63.001 +24130,293.61,64.562 +24131,293,66.106 +24132,292.45,67.632 +24133,293.05,63.027 +24134,292.33,64.587 +24135,291.66,66.129 +24136,291.06,67.653 +24137,291.82,63.055 +24138,291.04,64.612 +24139,290.32,66.151 +24140,289.67,67.672 +24141,290.59,63.084 +24142,289.75,64.637 +24143,288.98,66.173 +24144,288.28,67.69 +24145,289.36,63.114 +24146,288.46,64.662 +24147,287.64,66.194 +24148,286.89,67.707 +24149,288.12,63.145 +24150,287.18,64.688 +24151,286.31,66.215 +24152,285.5,67.723 +24153,286.89,63.178 +24154,285.89,64.715 +24155,284.97,66.235 +24156,284.12,67.737 +24157,285.65,63.212 +24158,284.6,64.742 +24159,283.63,66.255 +24160,282.73,67.75 +24161,284.42,63.247 +24162,283.31,64.769 +24163,282.29,66.274 +24164,281.35,67.762 +24165,283.18,63.283 +24166,282.02,64.796 +24167,280.95,66.293 +24168,279.96,67.773 +24169,281.94,63.321 +24170,280.74,64.824 +24171,279.62,66.312 +24172,278.58,67.783 +24173,280.7,63.359 +24174,279.45,64.853 +24175,278.28,66.33 +24176,277.19,67.791 +24177,279.46,63.399 +24178,278.16,64.882 +24179,276.94,66.348 +24180,275.81,67.799 +24181,278.22,63.44 +24182,276.87,64.911 +24183,275.61,66.366 +24184,274.43,67.805 +24185,276.98,63.482 +24186,275.58,64.94 +24187,274.27,66.383 +24188,273.05,67.81 +24189,275.74,63.526 +24190,274.29,64.97 +24191,272.93,66.4 +24192,271.67,67.813 +24193,274.5,63.57 +24194,273,65 +24195,271.6,66.416 +24196,270.29,67.816 +24197,273.25,63.616 +24198,271.7,65.031 +24199,270.26,66.432 +24200,268.92,67.817 +24201,272,63.663 +24202,270.41,65.062 +24203,268.93,66.447 +24204,267.54,67.818 +24205,270.76,63.711 +24206,269.12,65.093 +24207,267.59,66.463 +24208,266.17,67.817 +24209,269.51,63.76 +24210,267.83,65.125 +24211,266.26,66.477 +24212,264.79,67.815 +24213,268.26,63.81 +24214,266.54,65.157 +24215,264.93,66.492 +24216,263.42,67.812 +24217,267.01,63.861 +24218,265.24,65.19 +24219,263.59,66.506 +24220,262.05,67.808 +24221,265.75,63.913 +24222,263.95,65.222 +24223,262.26,66.519 +24224,260.68,67.803 +24225,264.5,63.967 +24226,262.65,65.256 +24227,260.93,66.533 +24228,259.31,67.797 +24229,263.24,64.021 +24230,261.36,65.289 +24231,259.6,66.546 +24232,257.94,67.79 +24233,261.99,64.076 +24234,260.06,65.323 +24235,258.26,66.558 +24236,256.57,67.782 +24237,260.73,64.132 +24238,258.77,65.357 +24239,256.93,66.571 +24240,255.21,67.773 +24241,259.47,64.19 +24242,257.47,65.391 +24243,255.6,66.583 +24244,253.84,67.763 +24245,258.21,64.248 +24246,256.17,65.426 +24247,254.27,66.594 +24248,252.48,67.752 +24249,256.94,64.307 +24250,254.88,65.461 +24251,252.94,66.606 +24252,251.12,67.74 +24253,255.68,64.367 +24254,253.58,65.496 +24255,251.61,66.616 +24256,249.76,67.727 +24257,254.41,64.428 +24258,252.28,65.532 +24259,250.28,66.627 +24260,248.4,67.713 +24261,253.14,64.489 +24262,250.98,65.567 +24263,248.96,66.638 +24264,247.05,67.699 +24265,251.87,64.552 +24266,249.68,65.604 +24267,247.63,66.648 +24268,245.69,67.683 +24269,250.6,64.615 +24270,248.38,65.64 +24271,246.3,66.657 +24272,244.34,67.667 +24273,249.33,64.679 +24274,247.08,65.677 +24275,244.97,66.667 +24276,242.98,67.65 +24277,248.05,64.744 +24278,245.78,65.713 +24279,243.65,66.676 +24280,241.63,67.632 +24281,246.78,64.81 +24282,244.48,65.751 +24283,242.32,66.685 +24284,240.28,67.613 +24285,245.5,64.876 +24286,243.18,65.788 +24287,240.99,66.694 +24288,238.93,67.594 +24289,244.22,64.943 +24290,241.87,65.825 +24291,239.67,66.702 +24292,237.59,67.574 +24293,242.94,65.011 +24294,240.57,65.863 +24295,238.35,66.711 +24296,236.24,67.553 +24297,241.65,65.079 +24298,239.27,65.901 +24299,237.02,66.719 +24300,234.9,67.531 +24301,240.37,65.148 +24302,237.96,65.939 +24303,235.7,66.727 +24304,233.56,67.509 +24305,239.08,65.218 +24306,236.66,65.978 +24307,234.38,66.734 +24308,232.22,67.486 +24309,237.79,65.288 +24310,235.35,66.016 +24311,233.05,66.741 +24312,230.88,67.463 +24313,236.5,65.359 +24314,234.04,66.055 +24315,231.73,66.749 +24316,229.54,67.439 +24317,235.2,65.43 +24318,232.74,66.094 +24319,230.41,66.756 +24320,228.21,67.414 +24321,233.91,65.502 +24322,231.43,66.133 +24323,229.09,66.762 +24324,226.87,67.389 +24325,232.61,65.574 +24326,230.12,66.172 +24327,227.77,66.769 +24328,225.54,67.363 +24329,231.31,65.647 +24330,228.81,66.212 +24331,226.45,66.776 +24332,224.21,67.337 +24333,230.01,65.72 +24334,227.5,66.251 +24335,225.13,66.782 +24336,222.88,67.311 +24337,228.71,65.793 +24338,226.19,66.291 +24339,223.81,66.788 +24340,221.55,67.284 +24341,227.4,65.867 +24342,224.88,66.331 +24343,222.5,66.794 +24344,220.23,67.256 +24345,226.09,65.941 +24346,223.57,66.371 +24347,221.18,66.8 +24348,218.9,67.228 +24349,224.78,66.015 +24350,222.26,66.411 +24351,219.86,66.806 +24352,217.58,67.2 +24353,223.47,66.09 +24354,220.94,66.451 +24355,218.55,66.811 +24356,216.26,67.172 +24357,222.16,66.165 +24358,219.63,66.491 +24359,217.23,66.817 +24360,214.94,67.143 +24361,220.84,66.24 +24362,218.32,66.531 +24363,215.92,66.822 +24364,213.63,67.114 +24365,219.53,66.315 +24366,217,66.571 +24367,214.6,66.828 +24368,212.31,67.085 +24369,218.21,66.391 +24370,215.69,66.611 +24371,213.29,66.833 +24372,211,67.055 +24373,216.89,66.466 +24374,214.37,66.652 +24375,211.98,66.838 +24376,209.69,67.025 +24377,215.56,66.542 +24378,213.05,66.692 +24379,210.66,66.843 +24380,208.38,66.996 +24381,214.24,66.617 +24382,211.74,66.732 +24383,209.35,66.849 +24384,207.07,66.966 +24385,212.91,66.693 +24386,210.42,66.773 +24387,208.04,66.854 +24388,205.76,66.936 +24389,211.58,66.769 +24390,209.1,66.813 +24391,206.73,66.859 +24392,204.46,66.906 +24393,210.25,66.845 +24394,207.78,66.854 +24395,205.42,66.864 +24396,203.16,66.875 +24397,208.92,66.92 +24398,206.46,66.894 +24399,204.11,66.869 +24400,201.86,66.845 +24401,207.59,66.996 +24402,205.14,66.934 +24403,202.8,66.874 +24404,200.56,66.815 +24405,206.25,67.072 +24406,203.82,66.975 +24407,201.49,66.879 +24408,199.26,66.785 +24409,204.91,67.147 +24410,202.5,67.015 +24411,200.18,66.884 +24412,197.96,66.755 +24413,203.58,67.222 +24414,201.17,67.055 +24415,198.88,66.889 +24416,196.67,66.725 +24417,202.23,67.297 +24418,199.85,67.095 +24419,197.57,66.894 +24420,195.38,66.695 +24421,200.89,67.372 +24422,198.53,67.135 +24423,196.26,66.9 +24424,194.08,66.665 +24425,199.55,67.447 +24426,197.2,67.175 +24427,194.96,66.905 +24428,192.8,66.636 +24429,198.2,67.521 +24430,195.88,67.215 +24431,193.65,66.91 +24432,191.51,66.607 +24433,196.85,67.595 +24434,194.55,67.255 +24435,192.35,66.916 +24436,190.22,66.577 +24437,195.5,67.669 +24438,193.23,67.295 +24439,191.04,66.921 +24440,188.94,66.549 +24441,194.15,67.742 +24442,191.9,67.334 +24443,189.74,66.927 +24444,187.65,66.52 +24445,192.8,67.815 +24446,190.58,67.374 +24447,188.44,66.932 +24448,186.37,66.492 +24449,191.44,67.888 +24450,189.25,67.413 +24451,187.14,66.938 +24452,185.09,66.464 +24453,190.08,67.96 +24454,187.92,67.452 +24455,185.83,66.944 +24456,183.82,66.437 +24457,188.73,68.032 +24458,186.59,67.491 +24459,184.53,66.95 +24460,182.54,66.41 +24461,187.37,68.103 +24462,185.26,67.53 +24463,183.23,66.956 +24464,181.27,66.383 +24465,186,68.173 +24466,183.93,67.569 +24467,181.93,66.963 +24468,179.99,66.357 +24469,184.64,68.244 +24470,182.6,67.607 +24471,180.63,66.969 +24472,178.72,66.331 +24473,183.28,68.313 +24474,181.27,67.645 +24475,179.33,66.976 +24476,177.45,66.306 +24477,181.91,68.382 +24478,179.94,67.684 +24479,178.03,66.983 +24480,176.18,66.282 +24481,180.55,68.451 +24482,178.61,67.721 +24483,176.73,66.99 +24484,174.91,66.258 +24485,179.18,68.518 +24486,177.28,67.759 +24487,175.44,66.997 +24488,173.65,66.234 +24489,177.81,68.586 +24490,175.94,67.797 +24491,174.14,67.005 +24492,172.38,66.211 +24493,176.44,68.652 +24494,174.61,67.834 +24495,172.84,67.012 +24496,171.12,66.189 +24497,175.06,68.718 +24498,173.28,67.871 +24499,171.54,67.02 +24500,169.86,66.168 +24501,173.69,68.783 +24502,171.94,67.908 +24503,170.25,67.028 +24504,168.6,66.147 +24505,172.32,68.847 +24506,170.61,67.944 +24507,168.95,67.037 +24508,167.34,66.127 +24509,170.94,68.911 +24510,169.27,67.98 +24511,167.66,67.045 +24512,166.08,66.107 +24513,169.56,68.973 +24514,167.94,68.016 +24515,166.36,67.054 +24516,164.83,66.089 +24517,168.18,69.035 +24518,166.6,68.052 +24519,165.07,67.063 +24520,163.57,66.071 +24521,166.8,69.097 +24522,165.27,68.087 +24523,163.77,67.073 +24524,162.32,66.054 +24525,165.42,69.157 +24526,163.93,68.122 +24527,162.48,67.082 +24528,161.06,66.038 +24529,164.04,69.216 +24530,162.59,68.157 +24531,161.19,67.092 +24532,159.81,66.022 +24533,162.66,69.275 +24534,161.26,68.192 +24535,159.89,67.102 +24536,158.56,66.008 +24537,161.28,69.332 +24538,159.92,68.226 +24539,158.6,67.113 +24540,157.31,65.994 +24541,159.89,69.389 +24542,158.58,68.26 +24543,157.31,67.124 +24544,156.06,65.981 +24545,158.51,69.445 +24546,157.24,68.294 +24547,156.01,67.135 +24548,154.82,65.97 +24549,157.12,69.5 +24550,155.91,68.327 +24551,154.72,67.146 +24552,153.57,65.959 +24553,155.74,69.553 +24554,154.57,68.36 +24555,153.43,67.158 +24556,152.32,65.949 +24557,154.35,69.606 +24558,153.23,68.392 +24559,152.14,67.17 +24560,151.08,65.94 +24561,152.96,69.658 +24562,151.89,68.425 +24563,150.85,67.182 +24564,149.83,65.932 +24565,151.57,69.709 +24566,150.55,68.457 +24567,149.56,67.195 +24568,148.59,65.925 +24569,150.18,69.759 +24570,149.21,68.488 +24571,148.27,67.208 +24572,147.35,65.92 +24573,148.79,69.807 +24574,147.87,68.519 +24575,146.98,67.221 +24576,146.11,65.915 +24577,147.4,69.855 +24578,146.53,68.55 +24579,145.68,67.235 +24580,144.87,65.911 +24581,146.01,69.902 +24582,145.19,68.581 +24583,144.39,67.249 +24584,143.63,65.908 +24585,144.62,69.947 +24586,143.85,68.611 +24587,143.1,67.263 +24588,142.39,65.907 +24589,143.23,69.992 +24590,142.51,68.641 +24591,141.81,67.278 +24592,141.15,65.906 +24593,141.83,70.035 +24594,141.17,68.67 +24595,140.53,67.293 +24596,139.91,65.907 +24597,140.44,70.077 +24598,139.83,68.699 +24599,139.24,67.309 +24600,138.67,65.909 +24601,139.05,70.118 +24602,138.48,68.727 +24603,137.95,67.325 +24604,137.44,65.912 +24605,137.66,70.158 +24606,137.14,68.756 +24607,136.66,67.341 +24608,136.2,65.916 +24609,136.26,70.197 +24610,135.8,68.783 +24611,135.37,67.358 +24612,134.96,65.921 +24613,134.87,70.235 +24614,134.46,68.811 +24615,134.08,67.375 +24616,133.73,65.927 +24617,133.47,70.271 +24618,133.12,68.838 +24619,132.79,67.392 +24620,132.49,65.935 +24621,132.08,70.307 +24622,131.78,68.865 +24623,131.5,67.41 +24624,131.26,65.944 +24625,130.69,70.341 +24626,130.43,68.891 +24627,130.21,67.428 +24628,130.02,65.954 +24629,129.29,70.374 +24630,129.09,68.917 +24631,128.92,67.447 +24632,128.79,65.965 +24633,127.9,70.406 +24634,127.75,68.942 +24635,127.64,67.466 +24636,127.55,65.977 +24637,126.5,70.436 +24638,126.41,68.967 +24639,126.35,67.485 +24640,126.32,65.991 +24641,125.11,70.466 +24642,125.07,68.992 +24643,125.06,67.505 +24644,125.08,66.006 +24645,123.71,70.494 +24646,123.72,69.016 +24647,123.77,67.525 +24648,123.85,66.022 +24649,122.32,70.521 +24650,122.38,69.04 +24651,122.48,67.545 +24652,122.62,66.039 +24653,120.93,70.547 +24654,121.04,69.063 +24655,121.19,67.566 +24656,121.38,66.057 +24657,119.53,70.571 +24658,119.7,69.086 +24659,119.9,67.588 +24660,120.15,66.077 +24661,118.14,70.595 +24662,118.36,69.109 +24663,118.61,67.609 +24664,118.91,66.098 +24665,116.75,70.617 +24666,117.01,69.131 +24667,117.32,67.632 +24668,117.68,66.12 +24669,115.35,70.638 +24670,115.67,69.153 +24671,116.04,67.654 +24672,116.44,66.144 +24673,113.96,70.658 +24674,114.33,69.174 +24675,114.75,67.677 +24676,115.21,66.168 +24677,112.57,70.676 +24678,112.99,69.195 +24679,113.46,67.7 +24680,113.97,66.194 +24681,111.18,70.694 +24682,111.65,69.216 +24683,112.17,67.724 +24684,112.74,66.221 +24685,109.79,70.71 +24686,110.31,69.236 +24687,110.88,67.748 +24688,111.5,66.249 +24689,108.4,70.725 +24690,108.97,69.255 +24691,109.59,67.773 +24692,110.26,66.279 +24693,107.01,70.739 +24694,107.63,69.275 +24695,108.3,67.798 +24696,109.03,66.31 +24697,105.62,70.752 +24698,106.28,69.294 +24699,107.01,67.823 +24700,107.79,66.342 +24701,104.23,70.763 +24702,104.94,69.312 +24703,105.72,67.849 +24704,106.55,66.375 +24705,102.84,70.774 +24706,103.6,69.33 +24707,104.43,67.875 +24708,105.31,66.409 +24709,101.45,70.783 +24710,102.26,69.348 +24711,103.13,67.901 +24712,104.07,66.444 +24713,100.06,70.791 +24714,100.92,69.365 +24715,101.84,67.928 +24716,102.83,66.481 +24717,98.677,70.798 +24718,99.584,69.382 +24719,100.55,67.956 +24720,101.59,66.519 +24721,97.291,70.803 +24722,98.244,69.399 +24723,99.261,67.983 +24724,100.35,66.558 +24725,95.907,70.808 +24726,96.905,69.415 +24727,97.969,68.011 +24728,99.105,66.598 +24729,94.523,70.811 +24730,95.566,69.431 +24731,96.676,68.04 +24732,97.861,66.64 +24733,93.14,70.814 +24734,94.227,69.446 +24735,95.384,68.068 +24736,96.617,66.682 +24737,91.758,70.815 +24738,92.889,69.461 +24739,94.091,68.098 +24740,95.371,66.726 +24741,90.376,70.815 +24742,91.551,69.476 +24743,92.798,68.127 +24744,94.125,66.77 +24745,88.996,70.814 +24746,90.213,69.49 +24747,91.504,68.157 +24748,92.878,66.816 +24749,87.617,70.812 +24750,88.875,69.504 +24751,90.21,68.187 +24752,91.629,66.863 +24753,86.238,70.809 +24754,87.538,69.518 +24755,88.916,68.218 +24756,90.38,66.911 +24757,84.861,70.805 +24758,86.201,69.531 +24759,87.621,68.249 +24760,89.129,66.96 +24761,83.485,70.8 +24762,84.865,69.544 +24763,86.326,68.28 +24764,87.878,67.01 +24765,82.109,70.794 +24766,83.529,69.556 +24767,85.031,68.311 +24768,86.625,67.061 +24769,80.735,70.787 +24770,82.193,69.569 +24771,83.735,68.343 +24772,85.37,67.113 +24773,79.363,70.779 +24774,80.858,69.581 +24775,82.438,68.376 +24776,84.115,67.166 +24777,77.991,70.77 +24778,79.523,69.592 +24779,81.142,68.408 +24780,82.858,67.22 +24781,76.62,70.76 +24782,78.188,69.603 +24783,79.845,68.441 +24784,81.6,67.275 +24785,75.251,70.749 +24786,76.854,69.614 +24787,78.547,68.474 +24788,80.341,67.331 +24789,73.883,70.737 +24790,75.52,69.625 +24791,77.249,68.508 +24792,79.08,67.387 +24793,72.516,70.724 +24794,74.187,69.635 +24795,75.95,68.541 +24796,77.818,67.445 +24797,71.15,70.711 +24798,72.854,69.645 +24799,74.651,68.575 +24800,76.554,67.504 +24801,69.786,70.696 +24802,71.521,69.655 +24803,73.352,68.61 +24804,75.289,67.563 +24805,68.423,70.681 +24806,70.189,69.664 +24807,72.052,68.644 +24808,74.022,67.623 +24809,67.062,70.665 +24810,68.858,69.673 +24811,70.751,68.679 +24812,72.754,67.684 +24813,65.702,70.648 +24814,67.527,69.682 +24815,69.45,68.714 +24816,71.484,67.746 +24817,64.343,70.63 +24818,66.196,69.691 +24819,68.149,68.75 +24820,70.213,67.809 +24821,62.986,70.612 +24822,64.866,69.699 +24823,66.846,68.785 +24824,68.94,67.872 +24825,61.63,70.592 +24826,63.536,69.707 +24827,65.544,68.821 +24828,67.666,67.936 +24829,60.275,70.572 +24830,62.207,69.715 +24831,64.241,68.857 +24832,66.389,68.001 +24833,58.922,70.552 +24834,60.878,69.723 +24835,62.937,68.894 +24836,65.112,68.066 +24837,57.571,70.531 +24838,59.55,69.73 +24839,61.633,68.93 +24840,63.832,68.132 +24841,56.221,70.509 +24842,58.223,69.737 +24843,60.328,68.967 +24844,62.551,68.199 +24845,54.872,70.486 +24846,56.895,69.744 +24847,59.022,69.004 +24848,61.268,68.266 +24849,53.525,70.463 +24850,55.569,69.751 +24851,57.717,69.041 +24852,59.983,68.334 +24853,52.18,70.439 +24854,54.243,69.758 +24855,56.41,69.078 +24856,58.696,68.403 +24857,50.836,70.415 +24858,52.917,69.764 +24859,55.103,69.116 +24860,57.408,68.471 +24861,49.494,70.39 +24862,51.592,69.77 +24863,53.795,69.153 +24864,56.118,68.541 +24865,48.153,70.365 +24866,50.268,69.776 +24867,52.487,69.191 +24868,54.826,68.611 +24869,46.814,70.339 +24870,48.944,69.782 +24871,51.178,69.229 +24872,53.532,68.681 +24873,45.477,70.312 +24874,47.62,69.788 +24875,49.868,69.267 +24876,52.237,68.752 +24877,44.141,70.286 +24878,46.297,69.794 +24879,48.558,69.305 +24880,50.939,68.823 +24881,42.807,70.259 +24882,44.975,69.799 +24883,47.248,69.344 +24884,49.64,68.895 +24885,41.475,70.231 +24886,43.653,69.804 +24887,45.936,69.382 +24888,48.339,68.966 +24889,40.144,70.203 +24890,42.332,69.81 +24891,44.624,69.421 +24892,47.036,69.039 +24893,38.814,70.175 +24894,41.012,69.815 +24895,43.312,69.46 +24896,45.731,69.111 +24897,37.487,70.147 +24898,39.691,69.82 +24899,41.999,69.498 +24900,44.425,69.184 +24901,36.161,70.118 +24902,38.372,69.825 +24903,40.685,69.537 +24904,43.116,69.257 +24905,34.837,70.089 +24906,37.053,69.829 +24907,39.371,69.576 +24908,41.806,69.33 +24909,33.514,70.06 +24910,35.735,69.834 +24911,38.056,69.615 +24912,40.493,69.403 +24913,32.193,70.03 +24914,34.417,69.839 +24915,36.74,69.654 +24916,39.179,69.476 +24917,30.874,70.001 +24918,33.099,69.844 +24919,35.424,69.693 +24920,37.863,69.55 +24921,29.557,69.971 +24922,31.783,69.848 +24923,34.107,69.732 +24924,36.545,69.623 +24925,28.241,69.941 +24926,30.467,69.853 +24927,32.79,69.771 +24928,35.225,69.697 +24929,26.927,69.911 +24930,29.151,69.857 +24931,31.472,69.81 +24932,33.904,69.771 +24933,25.614,69.881 +24934,27.836,69.862 +24935,30.153,69.849 +24936,32.58,69.845 +24937,24.304,69.851 +24938,26.522,69.866 +24939,28.834,69.888 +24940,31.255,69.918 +24941,22.995,69.821 +24942,25.208,69.871 +24943,27.514,69.928 +24944,29.927,69.992 +24945,21.687,69.791 +24946,23.895,69.875 +24947,26.193,69.967 +24948,28.598,70.065 +24949,20.382,69.762 +24950,22.582,69.88 +24951,24.872,70.006 +24952,27.267,70.139 +24953,19.078,69.732 +24954,21.27,69.885 +24955,23.551,70.045 +24956,25.935,70.212 +24957,17.775,69.702 +24958,19.958,69.889 +24959,22.228,70.084 +24960,24.6,70.285 +24961,16.475,69.673 +24962,18.647,69.894 +24963,20.905,70.122 +24964,23.264,70.358 +24965,15.176,69.643 +24966,17.336,69.899 +24967,19.582,70.161 +24968,21.926,70.431 +24969,13.878,69.614 +24970,16.026,69.903 +24971,18.258,70.2 +24972,20.586,70.504 +24973,12.582,69.585 +24974,14.717,69.908 +24975,16.933,70.239 +24976,19.244,70.576 +24977,11.288,69.556 +24978,13.408,69.913 +24979,15.608,70.277 +24980,17.901,70.648 +24981,9.9959,69.528 +24982,12.1,69.918 +24983,14.282,70.316 +24984,16.556,70.719 +24985,8.7051,69.5 +24986,10.792,69.924 +24987,12.956,70.354 +24988,15.209,70.791 +24989,7.4158,69.472 +24990,9.4846,69.929 +24991,11.629,70.392 +24992,13.86,70.861 +24993,6.1281,69.445 +24994,8.1778,69.934 +24995,10.301,70.43 +24996,12.51,70.932 +24997,4.8421,69.418 +24998,6.8715,69.94 +24999,8.9732,70.468 +25000,11.159,71.002 +25001,3.5575,69.391 +25002,5.5658,69.946 +25003,7.6445,70.506 +25004,9.8052,71.071 +25005,2.2745,69.365 +25006,4.2605,69.951 +25007,6.3154,70.543 +25008,8.4503,71.141 +25009,0.99307,69.339 +25010,2.9558,69.957 +25011,4.9857,70.581 +25012,7.0937,71.209 +25013,359.71,69.314 +25014,1.6515,69.964 +25015,3.6555,70.618 +25016,5.7356,71.277 +25017,358.43,69.29 +25018,0.34778,69.97 +25019,2.3248,70.655 +25020,4.376,71.345 +25021,357.16,69.265 +25022,359.04,69.976 +25023,0.99357,70.692 +25024,3.0149,71.412 +25025,355.88,69.242 +25026,357.74,69.983 +25027,359.66,70.729 +25028,1.6523,71.478 +25029,354.61,69.219 +25030,356.44,69.99 +25031,358.33,70.765 +25032,0.28822,71.544 +25033,353.34,69.197 +25034,355.14,69.997 +25035,357,70.802 +25036,358.92,71.609 +25037,352.06,69.175 +25038,353.84,70.005 +25039,355.66,70.838 +25040,357.56,71.673 +25041,350.79,69.154 +25042,352.54,70.012 +25043,354.33,70.873 +25044,356.19,71.737 +25045,349.53,69.134 +25046,351.23,70.02 +25047,353,70.909 +25048,354.82,71.8 +25049,348.26,69.114 +25050,349.93,70.028 +25051,351.66,70.944 +25052,353.45,71.862 +25053,346.99,69.095 +25054,348.63,70.036 +25055,350.33,70.979 +25056,352.08,71.924 +25057,345.73,69.077 +25058,347.34,70.045 +25059,348.99,71.014 +25060,350.7,71.984 +25061,344.47,69.06 +25062,346.04,70.054 +25063,347.65,71.049 +25064,349.33,72.044 +25065,343.2,69.043 +25066,344.74,70.063 +25067,346.32,71.083 +25068,347.95,72.103 +25069,341.94,69.027 +25070,343.44,70.072 +25071,344.98,71.117 +25072,346.57,72.162 +25073,340.68,69.013 +25074,342.14,70.082 +25075,343.64,71.151 +25076,345.2,72.219 +25077,339.42,68.999 +25078,340.84,70.092 +25079,342.31,71.184 +25080,343.82,72.275 +25081,338.17,68.986 +25082,339.55,70.102 +25083,340.97,71.217 +25084,342.44,72.331 +25085,336.91,68.973 +25086,338.25,70.112 +25087,339.63,71.25 +25088,341.06,72.386 +25089,335.65,68.962 +25090,336.95,70.123 +25091,338.29,71.283 +25092,339.67,72.44 +25093,334.4,68.952 +25094,335.66,70.134 +25095,336.95,71.315 +25096,338.29,72.493 +25097,333.15,68.942 +25098,334.36,70.146 +25099,335.61,71.347 +25100,336.91,72.545 +25101,331.9,68.934 +25102,333.07,70.157 +25103,334.28,71.378 +25104,335.52,72.595 +25105,330.64,68.927 +25106,331.77,70.17 +25107,332.94,71.41 +25108,334.14,72.645 +25109,329.39,68.92 +25110,330.48,70.182 +25111,331.6,71.44 +25112,332.75,72.694 +25113,328.14,68.915 +25114,329.18,70.195 +25115,330.25,71.471 +25116,331.36,72.742 +25117,326.9,68.911 +25118,327.89,70.208 +25119,328.91,71.501 +25120,329.98,72.789 +25121,325.65,68.907 +25122,326.59,70.221 +25123,327.57,71.531 +25124,328.59,72.835 +25125,324.4,68.905 +25126,325.3,70.235 +25127,326.23,71.561 +25128,327.2,72.88 +25129,323.15,68.904 +25130,324.01,70.249 +25131,324.89,71.59 +25132,325.81,72.924 +25133,321.91,68.904 +25134,322.71,70.264 +25135,323.55,71.618 +25136,324.42,72.966 +25137,320.66,68.905 +25138,321.42,70.279 +25139,322.21,71.647 +25140,323.03,73.008 +25141,319.42,68.908 +25142,320.13,70.294 +25143,320.86,71.675 +25144,321.63,73.049 +25145,318.18,68.911 +25146,318.83,70.31 +25147,319.52,71.703 +25148,320.24,73.088 +25149,316.93,68.915 +25150,317.54,70.326 +25151,318.18,71.73 +25152,318.85,73.126 +25153,315.69,68.921 +25154,316.25,70.342 +25155,316.84,71.757 +25156,317.46,73.163 +25157,314.45,68.928 +25158,314.96,70.359 +25159,315.5,71.783 +25160,316.06,73.199 +25161,313.21,68.936 +25162,313.66,70.376 +25163,314.15,71.809 +25164,314.67,73.234 +25165,311.96,68.945 +25166,312.37,70.394 +25167,312.81,71.835 +25168,313.28,73.268 +25169,310.72,68.956 +25170,311.08,70.412 +25171,311.47,71.861 +25172,311.88,73.301 +25173,309.48,68.967 +25174,309.79,70.43 +25175,310.12,71.885 +25176,310.49,73.332 +25177,308.24,68.98 +25178,308.5,70.449 +25179,308.78,71.91 +25180,309.1,73.362 +25181,307,68.994 +25182,307.2,70.468 +25183,307.44,71.934 +25184,307.7,73.392 +25185,305.76,69.009 +25186,305.91,70.487 +25187,306.09,71.958 +25188,306.31,73.42 +25189,304.52,69.025 +25190,304.62,70.507 +25191,304.75,71.981 +25192,304.91,73.446 +25193,303.28,69.043 +25194,303.33,70.528 +25195,303.41,72.004 +25196,303.52,73.472 +25197,302.04,69.062 +25198,302.04,70.548 +25199,302.06,72.027 +25200,302.12,73.496 +25201,300.8,69.082 +25202,300.74,70.57 +25203,300.72,72.049 +25204,300.73,73.52 +25205,299.56,69.103 +25206,299.45,70.591 +25207,299.38,72.071 +25208,299.33,73.542 +25209,298.32,69.126 +25210,298.16,70.613 +25211,298.03,72.093 +25212,297.94,73.563 +25213,297.08,69.149 +25214,296.87,70.635 +25215,296.69,72.114 +25216,296.55,73.582 +25217,295.84,69.174 +25218,295.58,70.658 +25219,295.35,72.134 +25220,295.15,73.601 +25221,294.6,69.2 +25222,294.28,70.681 +25223,294,72.154 +25224,293.76,73.618 +25225,293.36,69.228 +25226,292.99,70.705 +25227,292.66,72.174 +25228,292.37,73.635 +25229,292.12,69.256 +25230,291.7,70.729 +25231,291.32,72.194 +25232,290.97,73.65 +25233,290.88,69.286 +25234,290.41,70.753 +25235,289.97,72.213 +25236,289.58,73.663 +25237,289.64,69.317 +25238,289.11,70.778 +25239,288.63,72.231 +25240,288.19,73.676 +25241,288.4,69.349 +25242,287.82,70.803 +25243,287.29,72.25 +25244,286.8,73.688 +25245,287.16,69.383 +25246,286.53,70.829 +25247,285.94,72.268 +25248,285.41,73.698 +25249,285.91,69.417 +25250,285.23,70.854 +25251,284.6,72.285 +25252,284.01,73.707 +25253,284.67,69.453 +25254,283.94,70.881 +25255,283.26,72.302 +25256,282.62,73.716 +25257,283.43,69.49 +25258,282.65,70.907 +25259,281.92,72.319 +25260,281.24,73.723 +25261,282.18,69.528 +25262,281.35,70.934 +25263,280.58,72.335 +25264,279.85,73.728 +25265,280.94,69.567 +25266,280.06,70.962 +25267,279.23,72.351 +25268,278.46,73.733 +25269,279.69,69.607 +25270,278.77,70.99 +25271,277.89,72.367 +25272,277.07,73.737 +25273,278.45,69.649 +25274,277.47,71.018 +25275,276.55,72.382 +25276,275.68,73.739 +25277,277.2,69.691 +25278,276.18,71.047 +25279,275.21,72.397 +25280,274.3,73.741 +25281,275.95,69.735 +25282,274.88,71.075 +25283,273.87,72.411 +25284,272.91,73.741 +25285,274.71,69.78 +25286,273.59,71.105 +25287,272.53,72.426 +25288,271.53,73.741 +25289,273.46,69.826 +25290,272.29,71.134 +25291,271.19,72.439 +25292,270.14,73.739 +25293,272.21,69.873 +25294,271,71.164 +25295,269.85,72.453 +25296,268.76,73.736 +25297,270.96,69.921 +25298,269.7,71.195 +25299,268.51,72.466 +25300,267.38,73.732 +25301,269.7,69.97 +25302,268.4,71.225 +25303,267.17,72.479 +25304,266,73.728 +25305,268.45,70.02 +25306,267.11,71.257 +25307,265.83,72.491 +25308,264.62,73.722 +25309,267.2,70.071 +25310,265.81,71.288 +25311,264.49,72.503 +25312,263.24,73.715 +25313,265.94,70.123 +25314,264.51,71.32 +25315,263.15,72.515 +25316,261.86,73.707 +25317,264.69,70.176 +25318,263.21,71.352 +25319,261.81,72.526 +25320,260.48,73.699 +25321,263.43,70.23 +25322,261.92,71.384 +25323,260.48,72.538 +25324,259.11,73.689 +25325,262.17,70.285 +25326,260.62,71.417 +25327,259.14,72.548 +25328,257.73,73.678 +25329,260.91,70.341 +25330,259.32,71.45 +25331,257.8,72.559 +25332,256.36,73.667 +25333,259.65,70.398 +25334,258.02,71.483 +25335,256.46,72.569 +25336,254.98,73.654 +25337,258.39,70.455 +25338,256.72,71.516 +25339,255.13,72.579 +25340,253.61,73.641 +25341,257.13,70.514 +25342,255.42,71.55 +25343,253.79,72.589 +25344,252.24,73.627 +25345,255.86,70.573 +25346,254.12,71.584 +25347,252.46,72.598 +25348,250.87,73.612 +25349,254.59,70.634 +25350,252.82,71.619 +25351,251.12,72.607 +25352,249.51,73.596 +25353,253.33,70.695 +25354,251.51,71.653 +25355,249.79,72.616 +25356,248.14,73.58 +25357,252.06,70.756 +25358,250.21,71.688 +25359,248.45,72.625 +25360,246.77,73.563 +25361,250.79,70.819 +25362,248.91,71.724 +25363,247.12,72.633 +25364,245.41,73.545 +25365,249.52,70.882 +25366,247.61,71.759 +25367,245.79,72.641 +25368,244.05,73.526 +25369,248.24,70.946 +25370,246.3,71.795 +25371,244.45,72.649 +25372,242.69,73.506 +25373,246.97,71.011 +25374,245,71.831 +25375,243.12,72.656 +25376,241.32,73.486 +25377,245.69,71.076 +25378,243.69,71.867 +25379,241.79,72.664 +25380,239.97,73.465 +25381,244.42,71.142 +25382,242.39,71.903 +25383,240.46,72.671 +25384,238.61,73.444 +25385,243.14,71.209 +25386,241.08,71.94 +25387,239.12,72.678 +25388,237.25,73.421 +25389,241.86,71.276 +25390,239.78,71.976 +25391,237.79,72.685 +25392,235.9,73.399 +25393,240.57,71.343 +25394,238.47,72.013 +25395,236.46,72.691 +25396,234.55,73.375 +25397,239.29,71.412 +25398,237.16,72.05 +25399,235.13,72.698 +25400,233.19,73.351 +25401,238,71.48 +25402,235.85,72.088 +25403,233.8,72.704 +25404,231.84,73.327 +25405,236.72,71.55 +25406,234.55,72.125 +25407,232.48,72.71 +25408,230.5,73.302 +25409,235.43,71.619 +25410,233.24,72.163 +25411,231.15,72.716 +25412,229.15,73.277 +25413,234.14,71.69 +25414,231.93,72.201 +25415,229.82,72.722 +25416,227.8,73.251 +25417,232.84,71.76 +25418,230.62,72.238 +25419,228.49,72.727 +25420,226.46,73.224 +25421,231.55,71.831 +25422,229.31,72.277 +25423,227.17,72.733 +25424,225.12,73.198 +25425,230.25,71.902 +25426,228,72.315 +25427,225.84,72.738 +25428,223.78,73.171 +25429,228.96,71.974 +25430,226.68,72.353 +25431,224.51,72.743 +25432,222.44,73.143 +25433,227.66,72.046 +25434,225.37,72.391 +25435,223.19,72.748 +25436,221.1,73.115 +25437,226.35,72.118 +25438,224.06,72.43 +25439,221.87,72.754 +25440,219.76,73.087 +25441,225.05,72.191 +25442,222.74,72.468 +25443,220.54,72.758 +25444,218.43,73.059 +25445,223.75,72.263 +25446,221.43,72.507 +25447,219.22,72.763 +25448,217.1,73.03 +25449,222.44,72.336 +25450,220.12,72.546 +25451,217.89,72.768 +25452,215.76,73.001 +25453,221.13,72.409 +25454,218.8,72.585 +25455,216.57,72.773 +25456,214.43,72.972 +25457,219.82,72.482 +25458,217.48,72.623 +25459,215.25,72.778 +25460,213.11,72.943 +25461,218.51,72.556 +25462,216.17,72.662 +25463,213.93,72.782 +25464,211.78,72.914 +25465,217.2,72.629 +25466,214.85,72.701 +25467,212.61,72.787 +25468,210.46,72.884 +25469,215.88,72.702 +25470,213.53,72.74 +25471,211.29,72.791 +25472,209.13,72.855 +25473,214.56,72.776 +25474,212.22,72.779 +25475,209.97,72.796 +25476,207.81,72.825 +25477,213.24,72.849 +25478,210.9,72.818 +25479,208.65,72.801 +25480,206.49,72.796 +25481,211.92,72.922 +25482,209.58,72.857 +25483,207.33,72.805 +25484,205.17,72.766 +25485,210.6,72.996 +25486,208.26,72.896 +25487,206.01,72.81 +25488,203.86,72.736 +25489,209.28,73.069 +25490,206.94,72.935 +25491,204.7,72.814 +25492,202.54,72.707 +25493,207.95,73.142 +25494,205.61,72.974 +25495,203.38,72.819 +25496,201.23,72.677 +25497,206.62,73.215 +25498,204.29,73.012 +25499,202.06,72.824 +25500,199.92,72.648 +25501,205.29,73.288 +25502,202.97,73.051 +25503,200.75,72.828 +25504,198.61,72.618 +25505,203.96,73.36 +25506,201.65,73.09 +25507,199.43,72.833 +25508,197.3,72.589 +25509,202.63,73.433 +25510,200.32,73.129 +25511,198.12,72.838 +25512,195.99,72.56 +25513,201.29,73.505 +25514,199,73.167 +25515,196.8,72.843 +25516,194.69,72.532 +25517,199.95,73.577 +25518,197.67,73.206 +25519,195.49,72.848 +25520,193.38,72.503 +25521,198.62,73.648 +25522,196.35,73.244 +25523,194.18,72.853 +25524,192.08,72.475 +25525,197.28,73.719 +25526,195.02,73.282 +25527,192.86,72.858 +25528,190.78,72.447 +25529,195.93,73.79 +25530,193.7,73.32 +25531,191.55,72.864 +25532,189.48,72.419 +25533,194.59,73.861 +25534,192.37,73.359 +25535,190.24,72.869 +25536,188.18,72.392 +25537,193.24,73.931 +25538,191.04,73.396 +25539,188.93,72.875 +25540,186.89,72.365 +25541,191.9,74 +25542,189.71,73.434 +25543,187.62,72.881 +25544,185.59,72.339 +25545,190.55,74.069 +25546,188.39,73.472 +25547,186.31,72.887 +25548,184.3,72.313 +25549,189.2,74.138 +25550,187.06,73.509 +25551,185,72.893 +25552,183.01,72.287 +25553,187.85,74.206 +25554,185.73,73.547 +25555,183.69,72.899 +25556,181.72,72.262 +25557,186.49,74.274 +25558,184.4,73.584 +25559,182.38,72.905 +25560,180.43,72.237 +25561,185.14,74.341 +25562,183.07,73.621 +25563,181.07,72.912 +25564,179.15,72.213 +25565,183.78,74.407 +25566,181.73,73.658 +25567,179.76,72.919 +25568,177.86,72.19 +25569,182.42,74.473 +25570,180.4,73.694 +25571,178.46,72.926 +25572,176.58,72.167 +25573,181.06,74.538 +25574,179.07,73.731 +25575,177.15,72.933 +25576,175.3,72.144 +25577,179.7,74.603 +25578,177.74,73.767 +25579,175.84,72.94 +25580,174.01,72.123 +25581,178.34,74.667 +25582,176.4,73.803 +25583,174.54,72.948 +25584,172.74,72.102 +25585,176.97,74.73 +25586,175.07,73.838 +25587,173.23,72.956 +25588,171.46,72.081 +25589,175.61,74.792 +25590,173.74,73.874 +25591,171.93,72.964 +25592,170.18,72.062 +25593,174.24,74.854 +25594,172.4,73.909 +25595,170.62,72.972 +25596,168.91,72.043 +25597,172.87,74.915 +25598,171.06,73.944 +25599,169.32,72.981 +25600,167.63,72.025 +25601,171.51,74.975 +25602,169.73,73.979 +25603,168.02,72.989 +25604,166.36,72.007 +25605,170.13,75.035 +25606,168.39,74.013 +25607,166.71,72.998 +25608,165.09,71.991 +25609,168.76,75.093 +25610,167.06,74.048 +25611,165.41,73.008 +25612,163.82,71.975 +25613,167.39,75.151 +25614,165.72,74.081 +25615,164.11,73.018 +25616,162.55,71.96 +25617,166.01,75.208 +25618,164.38,74.115 +25619,162.81,73.027 +25620,161.28,71.946 +25621,164.64,75.264 +25622,163.04,74.148 +25623,161.5,73.038 +25624,160.01,71.932 +25625,163.26,75.319 +25626,161.71,74.182 +25627,160.2,73.048 +25628,158.75,71.92 +25629,161.88,75.373 +25630,160.37,74.214 +25631,158.9,73.059 +25632,157.48,71.909 +25633,160.51,75.427 +25634,159.03,74.247 +25635,157.6,73.07 +25636,156.22,71.898 +25637,159.13,75.479 +25638,157.69,74.279 +25639,156.3,73.082 +25640,154.96,71.889 +25641,157.74,75.53 +25642,156.35,74.311 +25643,155,73.094 +25644,153.7,71.88 +25645,156.36,75.581 +25646,155.01,74.342 +25647,153.7,73.106 +25648,152.44,71.872 +25649,154.98,75.63 +25650,153.67,74.373 +25651,152.4,73.118 +25652,151.18,71.866 +25653,153.6,75.679 +25654,152.33,74.404 +25655,151.1,73.131 +25656,149.92,71.86 +25657,152.21,75.726 +25658,150.99,74.435 +25659,149.81,73.144 +25660,148.66,71.856 +25661,150.83,75.773 +25662,149.65,74.465 +25663,148.51,73.158 +25664,147.41,71.852 +25665,149.44,75.818 +25666,148.3,74.495 +25667,147.21,73.172 +25668,146.15,71.85 +25669,148.05,75.862 +25670,146.96,74.524 +25671,145.91,73.186 +25672,144.9,71.848 +25673,146.66,75.905 +25674,145.62,74.553 +25675,144.61,73.201 +25676,143.64,71.848 +25677,145.28,75.948 +25678,144.28,74.582 +25679,143.32,73.215 +25680,142.39,71.849 +25681,143.89,75.989 +25682,142.93,74.61 +25683,142.02,73.231 +25684,141.14,71.851 +25685,142.5,76.029 +25686,141.59,74.638 +25687,140.72,73.247 +25688,139.89,71.854 +25689,141.11,76.067 +25690,140.25,74.666 +25691,139.43,73.263 +25692,138.64,71.858 +25693,139.72,76.105 +25694,138.9,74.693 +25695,138.13,73.279 +25696,137.39,71.864 +25697,138.33,76.142 +25698,137.56,74.72 +25699,136.83,73.296 +25700,136.14,71.87 +25701,136.93,76.177 +25702,136.22,74.747 +25703,135.54,73.313 +25704,134.89,71.878 +25705,135.54,76.212 +25706,134.87,74.773 +25707,134.24,73.331 +25708,133.64,71.887 +25709,134.15,76.245 +25710,133.53,74.799 +25711,132.94,73.349 +25712,132.39,71.897 +25713,132.76,76.277 +25714,132.18,74.824 +25715,131.65,73.367 +25716,131.14,71.908 +25717,131.36,76.308 +25718,130.84,74.849 +25719,130.35,73.386 +25720,129.9,71.921 +25721,129.97,76.338 +25722,129.5,74.874 +25723,129.06,73.406 +25724,128.65,71.934 +25725,128.57,76.366 +25726,128.15,74.898 +25727,127.76,73.425 +25728,127.4,71.949 +25729,127.18,76.394 +25730,126.81,74.922 +25731,126.47,73.445 +25732,126.16,71.965 +25733,125.79,76.42 +25734,125.46,74.945 +25735,125.17,73.466 +25736,124.91,71.983 +25737,124.39,76.445 +25738,124.12,74.968 +25739,123.88,73.487 +25740,123.66,72.001 +25741,123,76.469 +25742,122.77,74.991 +25743,122.58,73.508 +25744,122.42,72.021 +25745,121.6,76.492 +25746,121.43,75.013 +25747,121.28,73.529 +25748,121.17,72.042 +25749,120.21,76.513 +25750,120.08,75.035 +25751,119.99,73.552 +25752,119.93,72.064 +25753,118.81,76.534 +25754,118.74,75.057 +25755,118.69,73.574 +25756,118.68,72.087 +25757,117.42,76.553 +25758,117.39,75.078 +25759,117.4,73.597 +25760,117.44,72.112 +25761,116.02,76.571 +25762,116.05,75.098 +25763,116.1,73.62 +25764,116.19,72.138 +25765,114.63,76.588 +25766,114.7,75.119 +25767,114.81,73.644 +25768,114.95,72.165 +25769,113.24,76.604 +25770,113.36,75.139 +25771,113.51,73.668 +25772,113.7,72.193 +25773,111.84,76.618 +25774,112.01,75.158 +25775,112.22,73.693 +25776,112.46,72.223 +25777,110.45,76.632 +25778,110.67,75.177 +25779,110.92,73.717 +25780,111.21,72.254 +25781,109.05,76.644 +25782,109.32,75.196 +25783,109.63,73.743 +25784,109.96,72.286 +25785,107.66,76.655 +25786,107.98,75.215 +25787,108.33,73.768 +25788,108.72,72.319 +25789,106.27,76.665 +25790,106.63,75.233 +25791,107.03,73.795 +25792,107.47,72.353 +25793,104.88,76.674 +25794,105.29,75.25 +25795,105.74,73.821 +25796,106.23,72.389 +25797,103.48,76.682 +25798,103.94,75.267 +25799,104.44,73.848 +25800,104.98,72.425 +25801,102.09,76.689 +25802,102.6,75.284 +25803,103.15,73.875 +25804,103.73,72.463 +25805,100.7,76.694 +25806,101.26,75.301 +25807,101.85,73.903 +25808,102.48,72.502 +25809,99.31,76.698 +25810,99.911,75.317 +25811,100.55,73.931 +25812,101.23,72.542 +25813,97.92,76.702 +25814,98.567,75.333 +25815,99.255,73.959 +25816,99.986,72.584 +25817,96.53,76.704 +25818,97.224,75.348 +25819,97.958,73.988 +25820,98.737,72.626 +25821,95.141,76.705 +25822,95.88,75.363 +25823,96.661,74.017 +25824,97.487,72.67 +25825,93.753,76.705 +25826,94.537,75.378 +25827,95.363,74.047 +25828,96.236,72.715 +25829,92.365,76.704 +25830,93.193,75.392 +25831,94.066,74.077 +25832,94.985,72.761 +25833,90.979,76.702 +25834,91.851,75.406 +25835,92.768,74.107 +25836,93.733,72.808 +25837,89.592,76.699 +25838,90.508,75.42 +25839,91.469,74.138 +25840,92.48,72.856 +25841,88.207,76.695 +25842,89.165,75.433 +25843,90.171,74.169 +25844,91.226,72.905 +25845,86.823,76.69 +25846,87.823,75.446 +25847,88.872,74.2 +25848,89.972,72.955 +25849,85.439,76.684 +25850,86.481,75.459 +25851,87.573,74.232 +25852,88.717,73.006 +25853,84.056,76.677 +25854,85.14,75.471 +25855,86.274,74.264 +25856,87.461,73.058 +25857,82.674,76.669 +25858,83.798,75.483 +25859,84.974,74.296 +25860,86.204,73.111 +25861,81.293,76.66 +25862,82.457,75.495 +25863,83.674,74.329 +25864,84.946,73.166 +25865,79.913,76.65 +25866,81.116,75.506 +25867,82.373,74.362 +25868,83.687,73.221 +25869,78.534,76.639 +25870,79.776,75.517 +25871,81.073,74.395 +25872,82.428,73.277 +25873,77.155,76.628 +25874,78.436,75.528 +25875,79.771,74.429 +25876,81.167,73.334 +25877,75.778,76.615 +25878,77.096,75.538 +25879,78.47,74.463 +25880,79.905,73.392 +25881,74.402,76.602 +25882,75.756,75.548 +25883,77.168,74.497 +25884,78.642,73.45 +25885,73.027,76.587 +25886,74.417,75.558 +25887,75.866,74.532 +25888,77.378,73.51 +25889,71.653,76.572 +25890,73.078,75.568 +25891,74.563,74.567 +25892,76.112,73.571 +25893,70.281,76.556 +25894,71.74,75.577 +25895,73.26,74.602 +25896,74.846,73.632 +25897,68.909,76.54 +25898,70.402,75.586 +25899,71.956,74.637 +25900,73.578,73.694 +25901,67.539,76.522 +25902,69.064,75.595 +25903,70.653,74.673 +25904,72.309,73.757 +25905,66.169,76.504 +25906,67.727,75.604 +25907,69.348,74.709 +25908,71.039,73.821 +25909,64.801,76.485 +25910,66.39,75.612 +25911,68.043,74.745 +25912,69.767,73.885 +25913,63.435,76.466 +25914,65.053,75.62 +25915,66.738,74.781 +25916,68.494,73.95 +25917,62.069,76.445 +25918,63.717,75.628 +25919,65.432,74.818 +25920,67.22,74.016 +25921,60.705,76.424 +25922,62.382,75.636 +25923,64.126,74.855 +25924,65.944,74.083 +25925,59.342,76.403 +25926,61.047,75.644 +25927,62.82,74.892 +25928,64.667,74.15 +25929,57.981,76.381 +25930,59.712,75.651 +25931,61.512,74.929 +25932,63.389,74.218 +25933,56.62,76.358 +25934,58.377,75.658 +25935,60.205,74.967 +25936,62.109,74.286 +25937,55.261,76.334 +25938,57.044,75.665 +25939,58.897,75.004 +25940,60.828,74.355 +25941,53.904,76.311 +25942,55.71,75.672 +25943,57.588,75.042 +25944,59.545,74.424 +25945,52.548,76.286 +25946,54.377,75.678 +25947,56.279,75.08 +25948,58.26,74.494 +25949,51.193,76.261 +25950,53.045,75.685 +25951,54.969,75.118 +25952,56.974,74.565 +25953,49.84,76.236 +25954,51.713,75.691 +25955,53.659,75.157 +25956,55.687,74.636 +25957,48.488,76.21 +25958,50.381,75.697 +25959,52.348,75.195 +25960,54.398,74.707 +25961,47.138,76.184 +25962,49.05,75.703 +25963,51.037,75.234 +25964,53.107,74.779 +25965,45.789,76.157 +25966,47.719,75.709 +25967,49.725,75.273 +25968,51.815,74.851 +25969,44.441,76.13 +25970,46.389,75.715 +25971,48.413,75.312 +25972,50.521,74.924 +25973,43.096,76.103 +25974,45.06,75.72 +25975,47.1,75.351 +25976,49.226,74.996 +25977,41.751,76.075 +25978,43.73,75.726 +25979,45.787,75.39 +25980,47.929,75.07 +25981,40.408,76.047 +25982,42.402,75.731 +25983,44.473,75.429 +25984,46.63,75.143 +25985,39.067,76.019 +25986,41.074,75.737 +25987,43.158,75.468 +25988,45.33,75.217 +25989,37.727,75.991 +25990,39.746,75.742 +25991,41.843,75.508 +25992,44.028,75.29 +25993,36.389,75.962 +25994,38.419,75.747 +25995,40.527,75.547 +25996,42.724,75.365 +25997,35.052,75.933 +25998,37.092,75.752 +25999,39.211,75.587 +26000,41.418,75.439 +26001,33.717,75.904 +26002,35.766,75.758 +26003,37.894,75.626 +26004,40.111,75.513 +26005,32.383,75.875 +26006,34.441,75.763 +26007,36.577,75.666 +26008,38.802,75.588 +26009,31.051,75.846 +26010,33.116,75.768 +26011,35.259,75.706 +26012,37.492,75.662 +26013,29.72,75.816 +26014,31.791,75.773 +26015,33.941,75.745 +26016,36.179,75.737 +26017,28.391,75.787 +26018,30.467,75.778 +26019,32.622,75.785 +26020,34.865,75.811 +26021,27.064,75.758 +26022,29.144,75.783 +26023,31.302,75.825 +26024,33.55,75.886 +26025,25.738,75.728 +26026,27.821,75.788 +26027,29.982,75.865 +26028,32.232,75.96 +26029,24.414,75.699 +26030,26.498,75.793 +26031,28.661,75.904 +26032,30.913,76.035 +26033,23.091,75.67 +26034,25.176,75.798 +26035,27.339,75.944 +26036,29.592,76.109 +26037,21.77,75.64 +26038,23.855,75.803 +26039,26.017,75.984 +26040,28.269,76.184 +26041,20.451,75.611 +26042,22.534,75.809 +26043,24.695,76.023 +26044,26.945,76.258 +26045,19.133,75.582 +26046,21.214,75.814 +26047,23.372,76.063 +26048,25.619,76.332 +26049,17.816,75.554 +26050,19.894,75.819 +26051,22.048,76.102 +26052,24.291,76.405 +26053,16.502,75.525 +26054,18.574,75.825 +26055,20.724,76.142 +26056,22.961,76.479 +26057,15.188,75.497 +26058,17.256,75.83 +26059,19.399,76.181 +26060,21.63,76.552 +26061,13.877,75.469 +26062,15.937,75.836 +26063,18.074,76.22 +26064,20.297,76.625 +26065,12.567,75.441 +26066,14.62,75.841 +26067,16.748,76.26 +26068,18.962,76.698 +26069,11.258,75.413 +26070,13.302,75.847 +26071,15.421,76.299 +26072,17.626,76.77 +26073,9.9513,75.386 +26074,11.986,75.853 +26075,14.094,76.338 +26076,16.288,76.842 +26077,8.6458,75.359 +26078,10.669,75.859 +26079,12.766,76.377 +26080,14.948,76.914 +26081,7.3419,75.333 +26082,9.3537,75.865 +26083,11.438,76.415 +26084,13.606,76.985 +26085,6.0396,75.307 +26086,8.0384,75.872 +26087,10.109,76.454 +26088,12.263,77.055 +26089,4.7387,75.281 +26090,6.7237,75.878 +26091,8.7798,76.492 +26092,10.919,77.126 +26093,3.4393,75.256 +26094,5.4094,75.885 +26095,7.4499,76.531 +26096,9.5724,77.195 +26097,2.1414,75.231 +26098,4.0957,75.892 +26099,6.1195,76.569 +26100,8.2245,77.264 +26101,0.84505,75.207 +26102,2.7824,75.899 +26103,4.7886,76.607 +26104,6.875,77.333 +26105,359.55,75.184 +26106,1.4696,75.906 +26107,3.4571,76.644 +26108,5.5239,77.401 +26109,358.26,75.161 +26110,0.15726,75.913 +26111,2.1251,76.682 +26112,4.1712,77.469 +26113,356.96,75.138 +26114,358.85,75.921 +26115,0.79252,76.719 +26116,2.817,77.535 +26117,355.67,75.117 +26118,357.53,75.929 +26119,359.46,76.756 +26120,1.4613,77.602 +26121,354.38,75.096 +26122,356.22,75.937 +26123,358.13,76.793 +26124,0.10407,77.667 +26125,353.1,75.075 +26126,354.91,75.945 +26127,356.79,76.83 +26128,358.75,77.732 +26129,351.81,75.055 +26130,353.6,75.953 +26131,355.46,76.867 +26132,357.39,77.796 +26133,350.53,75.036 +26134,352.29,75.962 +26135,354.12,76.903 +26136,356.02,77.86 +26137,349.24,75.018 +26138,350.98,75.971 +26139,352.79,76.939 +26140,354.66,77.922 +26141,347.96,75 +26142,349.68,75.98 +26143,351.45,76.975 +26144,353.3,77.984 +26145,346.68,74.984 +26146,348.37,75.99 +26147,350.11,77.01 +26148,351.93,78.045 +26149,345.4,74.968 +26150,347.06,76 +26151,348.78,77.045 +26152,350.56,78.105 +26153,344.12,74.953 +26154,345.75,76.01 +26155,347.44,77.08 +26156,349.19,78.165 +26157,342.84,74.938 +26158,344.44,76.02 +26159,346.1,77.115 +26160,347.83,78.223 +26161,341.57,74.925 +26162,343.14,76.031 +26163,344.76,77.15 +26164,346.45,78.281 +26165,340.29,74.912 +26166,341.83,76.042 +26167,343.43,77.184 +26168,345.08,78.338 +26169,339.02,74.901 +26170,340.53,76.053 +26171,342.09,77.217 +26172,343.71,78.394 +26173,337.74,74.89 +26174,339.22,76.065 +26175,340.75,77.251 +26176,342.33,78.449 +26177,336.47,74.88 +26178,337.91,76.077 +26179,339.41,77.284 +26180,340.96,78.503 +26181,335.2,74.871 +26182,336.61,76.089 +26183,338.07,77.317 +26184,339.58,78.556 +26185,333.93,74.864 +26186,335.3,76.102 +26187,336.73,77.35 +26188,338.2,78.608 +26189,332.66,74.857 +26190,334,76.115 +26191,335.38,77.382 +26192,336.82,78.659 +26193,331.4,74.851 +26194,332.7,76.128 +26195,334.04,77.414 +26196,335.44,78.709 +26197,330.13,74.846 +26198,331.39,76.141 +26199,332.7,77.445 +26200,334.06,78.758 +26201,328.87,74.843 +26202,330.09,76.155 +26203,331.36,77.477 +26204,332.68,78.806 +26205,327.6,74.84 +26206,328.79,76.17 +26207,330.02,77.508 +26208,331.3,78.853 +26209,326.34,74.838 +26210,327.48,76.184 +26211,328.67,77.538 +26212,329.91,78.899 +26213,325.08,74.838 +26214,326.18,76.199 +26215,327.33,77.568 +26216,328.53,78.944 +26217,323.81,74.838 +26218,324.88,76.215 +26219,325.99,77.598 +26220,327.14,78.988 +26221,322.55,74.84 +26222,323.58,76.231 +26223,324.64,77.628 +26224,325.76,79.031 +26225,321.29,74.843 +26226,322.28,76.247 +26227,323.3,77.657 +26228,324.37,79.072 +26229,320.03,74.847 +26230,320.97,76.263 +26231,321.96,77.686 +26232,322.98,79.113 +26233,318.77,74.852 +26234,319.67,76.28 +26235,320.61,77.714 +26236,321.59,79.152 +26237,317.52,74.859 +26238,318.37,76.298 +26239,319.27,77.742 +26240,320.2,79.19 +26241,316.26,74.866 +26242,317.07,76.316 +26243,317.92,77.77 +26244,318.81,79.227 +26245,315,74.875 +26246,315.77,76.334 +26247,316.58,77.797 +26248,317.42,79.263 +26249,313.75,74.885 +26250,314.47,76.352 +26251,315.23,77.824 +26252,316.03,79.298 +26253,312.49,74.896 +26254,313.17,76.371 +26255,313.89,77.85 +26256,314.64,79.332 +26257,311.23,74.908 +26258,311.87,76.391 +26259,312.54,77.876 +26260,313.25,79.364 +26261,309.98,74.921 +26262,310.57,76.41 +26263,311.19,77.902 +26264,311.86,79.395 +26265,308.73,74.936 +26266,309.27,76.43 +26267,309.85,77.927 +26268,310.46,79.425 +26269,307.47,74.952 +26270,307.97,76.451 +26271,308.5,77.952 +26272,309.07,79.454 +26273,306.22,74.969 +26274,306.67,76.472 +26275,307.15,77.977 +26276,307.68,79.482 +26277,304.96,74.988 +26278,305.37,76.493 +26279,305.81,78.001 +26280,306.28,79.509 +26281,303.71,75.007 +26282,304.07,76.515 +26283,304.46,78.025 +26284,304.89,79.534 +26285,302.46,75.028 +26286,302.77,76.537 +26287,303.11,78.048 +26288,303.49,79.558 +26289,301.21,75.05 +26290,301.47,76.56 +26291,301.77,78.071 +26292,302.1,79.581 +26293,299.96,75.074 +26294,300.17,76.583 +26295,300.42,78.093 +26296,300.7,79.603 +26297,298.7,75.098 +26298,298.87,76.607 +26299,299.07,78.116 +26300,299.31,79.624 +26301,297.45,75.124 +26302,297.57,76.63 +26303,297.73,78.137 +26304,297.91,79.643 +26305,296.2,75.151 +26306,296.27,76.655 +26307,296.38,78.159 +26308,296.52,79.662 +26309,294.95,75.179 +26310,294.97,76.679 +26311,295.03,78.18 +26312,295.12,79.679 +26313,293.7,75.209 +26314,293.67,76.705 +26315,293.69,78.2 +26316,293.73,79.695 +26317,292.44,75.24 +26318,292.38,76.73 +26319,292.34,78.22 +26320,292.33,79.709 +26321,291.19,75.272 +26322,291.08,76.756 +26323,290.99,78.24 +26324,290.94,79.723 +26325,289.94,75.305 +26326,289.78,76.782 +26327,289.64,78.26 +26328,289.54,79.735 +26329,288.69,75.34 +26330,288.48,76.809 +26331,288.3,78.279 +26332,288.15,79.747 +26333,287.44,75.375 +26334,287.18,76.836 +26335,286.95,78.297 +26336,286.76,79.757 +26337,286.18,75.412 +26338,285.88,76.864 +26339,285.6,78.315 +26340,285.36,79.766 +26341,284.93,75.45 +26342,284.58,76.892 +26343,284.26,78.333 +26344,283.97,79.773 +26345,283.68,75.49 +26346,283.28,76.92 +26347,282.91,78.351 +26348,282.57,79.78 +26349,282.43,75.53 +26350,281.98,76.949 +26351,281.56,78.368 +26352,281.18,79.786 +26353,281.17,75.572 +26354,280.68,76.978 +26355,280.22,78.385 +26356,279.79,79.79 +26357,279.92,75.615 +26358,279.38,77.008 +26359,278.87,78.401 +26360,278.4,79.793 +26361,278.66,75.659 +26362,278.08,77.037 +26363,277.52,78.417 +26364,277,79.796 +26365,277.41,75.704 +26366,276.78,77.068 +26367,276.18,78.433 +26368,275.61,79.797 +26369,276.15,75.75 +26370,275.47,77.098 +26371,274.83,78.448 +26372,274.22,79.797 +26373,274.9,75.797 +26374,274.17,77.13 +26375,273.48,78.463 +26376,272.83,79.796 +26377,273.64,75.846 +26378,272.87,77.161 +26379,272.14,78.477 +26380,271.44,79.794 +26381,272.39,75.895 +26382,271.57,77.193 +26383,270.79,78.492 +26384,270.05,79.791 +26385,271.13,75.946 +26386,270.27,77.225 +26387,269.45,78.506 +26388,268.66,79.786 +26389,269.87,75.998 +26390,268.97,77.257 +26391,268.1,78.519 +26392,267.27,79.781 +26393,268.61,76.051 +26394,267.66,77.29 +26395,266.76,78.532 +26396,265.89,79.775 +26397,267.35,76.105 +26398,266.36,77.323 +26399,265.41,78.545 +26400,264.5,79.768 +26401,266.09,76.159 +26402,265.06,77.357 +26403,264.07,78.558 +26404,263.12,79.76 +26405,264.83,76.215 +26406,263.76,77.391 +26407,262.72,78.57 +26408,261.73,79.751 +26409,263.57,76.272 +26410,262.45,77.425 +26411,261.38,78.582 +26412,260.35,79.741 +26413,262.31,76.33 +26414,261.15,77.46 +26415,260.03,78.594 +26416,258.96,79.73 +26417,261.04,76.389 +26418,259.84,77.494 +26419,258.69,78.605 +26420,257.58,79.718 +26421,259.78,76.448 +26422,258.54,77.53 +26423,257.35,78.616 +26424,256.2,79.706 +26425,258.51,76.509 +26426,257.23,77.565 +26427,256,78.627 +26428,254.82,79.692 +26429,257.24,76.571 +26430,255.93,77.601 +26431,254.66,78.637 +26432,253.44,79.678 +26433,255.98,76.633 +26434,254.62,77.637 +26435,253.32,78.647 +26436,252.06,79.663 +26437,254.71,76.696 +26438,253.32,77.673 +26439,251.98,78.657 +26440,250.68,79.647 +26441,253.44,76.76 +26442,252.01,77.71 +26443,250.64,78.667 +26444,249.31,79.63 +26445,252.17,76.825 +26446,250.71,77.747 +26447,249.29,78.676 +26448,247.93,79.612 +26449,250.9,76.891 +26450,249.4,77.784 +26451,247.95,78.686 +26452,246.56,79.594 +26453,249.62,76.957 +26454,248.09,77.821 +26455,246.61,78.695 +26456,245.18,79.575 +26457,248.35,77.024 +26458,246.78,77.859 +26459,245.27,78.703 +26460,243.81,79.555 +26461,247.07,77.092 +26462,245.48,77.897 +26463,243.93,78.712 +26464,242.44,79.535 +26465,245.8,77.16 +26466,244.17,77.935 +26467,242.59,78.72 +26468,241.07,79.514 +26469,244.52,77.23 +26470,242.86,77.973 +26471,241.25,78.728 +26472,239.7,79.492 +26473,243.24,77.299 +26474,241.55,78.012 +26475,239.91,78.736 +26476,238.34,79.469 +26477,241.96,77.37 +26478,240.24,78.051 +26479,238.58,78.744 +26480,236.97,79.446 +26481,240.68,77.441 +26482,238.93,78.09 +26483,237.24,78.751 +26484,235.6,79.423 +26485,239.39,77.512 +26486,237.62,78.129 +26487,235.9,78.758 +26488,234.24,79.399 +26489,238.11,77.584 +26490,236.31,78.168 +26491,234.56,78.765 +26492,232.88,79.374 +26493,236.82,77.657 +26494,234.99,78.208 +26495,233.23,78.772 +26496,231.52,79.349 +26497,235.53,77.73 +26498,233.68,78.247 +26499,231.89,78.779 +26500,230.16,79.324 +26501,234.25,77.804 +26502,232.37,78.287 +26503,230.55,78.786 +26504,228.8,79.298 +26505,232.96,77.878 +26506,231.05,78.327 +26507,229.22,78.792 +26508,227.44,79.271 +26509,231.66,77.952 +26510,229.74,78.367 +26511,227.88,78.799 +26512,226.09,79.245 +26513,230.37,78.027 +26514,228.43,78.407 +26515,226.55,78.805 +26516,224.73,79.217 +26517,229.08,78.102 +26518,227.11,78.448 +26519,225.22,78.811 +26520,223.38,79.19 +26521,227.78,78.177 +26522,225.8,78.488 +26523,223.88,78.817 +26524,222.03,79.162 +26525,226.48,78.253 +26526,224.48,78.529 +26527,222.55,78.823 +26528,220.68,79.134 +26529,225.18,78.329 +26530,223.16,78.569 +26531,221.22,78.829 +26532,219.33,79.106 +26533,223.88,78.405 +26534,221.85,78.61 +26535,219.88,78.835 +26536,217.98,79.077 +26537,222.58,78.481 +26538,220.53,78.651 +26539,218.55,78.841 +26540,216.64,79.048 +26541,221.27,78.558 +26542,219.21,78.692 +26543,217.22,78.847 +26544,215.29,79.019 +26545,219.97,78.634 +26546,217.89,78.733 +26547,215.89,78.852 +26548,213.95,78.99 +26549,218.66,78.711 +26550,216.57,78.774 +26551,214.56,78.858 +26552,212.61,78.961 +26553,217.35,78.788 +26554,215.25,78.815 +26555,213.23,78.864 +26556,211.27,78.931 +26557,216.04,78.865 +26558,213.93,78.856 +26559,211.9,78.869 +26560,209.93,78.902 +26561,214.73,78.942 +26562,212.61,78.897 +26563,210.57,78.875 +26564,208.59,78.872 +26565,213.42,79.019 +26566,211.29,78.938 +26567,209.24,78.88 +26568,207.26,78.843 +26569,212.1,79.095 +26570,209.97,78.979 +26571,207.91,78.886 +26572,205.93,78.813 +26573,210.78,79.172 +26574,208.65,79.02 +26575,206.59,78.892 +26576,204.59,78.784 +26577,209.47,79.249 +26578,207.32,79.061 +26579,205.26,78.897 +26580,203.26,78.754 +26581,208.14,79.326 +26582,206,79.102 +26583,203.93,78.903 +26584,201.93,78.725 +26585,206.82,79.402 +26586,204.68,79.143 +26587,202.61,78.909 +26588,200.61,78.696 +26589,205.5,79.478 +26590,203.35,79.184 +26591,201.28,78.915 +26592,199.28,78.667 +26593,204.17,79.554 +26594,202.03,79.225 +26595,199.96,78.92 +26596,197.96,78.638 +26597,202.85,79.63 +26598,200.7,79.266 +26599,198.63,78.926 +26600,196.63,78.609 +26601,201.52,79.706 +26602,199.37,79.307 +26603,197.31,78.932 +26604,195.31,78.581 +26605,200.19,79.781 +26606,198.05,79.347 +26607,195.99,78.939 +26608,193.99,78.553 +26609,198.86,79.856 +26610,196.72,79.388 +26611,194.66,78.945 +26612,192.67,78.525 +26613,197.52,79.931 +26614,195.39,79.428 +26615,193.34,78.951 +26616,191.35,78.497 +26617,196.19,80.0047 +26618,194.06,79.468 +26619,192.02,78.958 +26620,190.04,78.47 +26621,194.85,80.0785 +26622,192.73,79.509 +26623,190.7,78.964 +26624,188.73,78.443 +26625,193.51,80.1519 +26626,191.4,79.549 +26627,189.37,78.971 +26628,187.41,78.416 +26629,192.17,80.2248 +26630,190.07,79.589 +26631,188.05,78.978 +26632,186.1,78.39 +26633,190.83,80.2973 +26634,188.74,79.628 +26635,186.73,78.985 +26636,184.79,78.365 +26637,189.49,80.3692 +26638,187.41,79.668 +26639,185.41,78.992 +26640,183.48,78.34 +26641,188.14,80.4406 +26642,186.08,79.707 +26643,184.1,79 +26644,182.18,78.315 +26645,186.8,80.5114 +26646,184.75,79.747 +26647,182.78,79.007 +26648,180.87,78.291 +26649,185.45,80.5817 +26650,183.42,79.786 +26651,181.46,79.015 +26652,179.57,78.267 +26653,184.1,80.6513 +26654,182.08,79.824 +26655,180.14,79.023 +26656,178.27,78.244 +26657,182.75,80.7203 +26658,180.75,79.863 +26659,178.82,79.031 +26660,176.96,78.222 +26661,181.39,80.7886 +26662,179.41,79.902 +26663,177.51,79.04 +26664,175.66,78.2 +26665,180.04,80.8563 +26666,178.08,79.94 +26667,176.19,79.048 +26668,174.37,78.179 +26669,178.68,80.9232 +26670,176.74,79.978 +26671,174.87,79.057 +26672,173.07,78.159 +26673,177.33,80.9894 +26674,175.41,80.0155 +26675,173.56,79.066 +26676,171.77,78.139 +26677,175.97,81.0548 +26678,174.07,80.0531 +26679,172.24,79.075 +26680,170.48,78.12 +26681,174.61,81.1195 +26682,172.73,80.0904 +26683,170.93,79.085 +26684,169.19,78.102 +26685,173.25,81.1834 +26686,171.4,80.1274 +26687,169.61,79.095 +26688,167.89,78.084 +26689,171.89,81.2464 +26690,170.06,80.1641 +26691,168.3,79.105 +26692,166.6,78.067 +26693,170.52,81.3086 +26694,168.72,80.2006 +26695,166.99,79.116 +26696,165.32,78.052 +26697,169.16,81.37 +26698,167.38,80.2368 +26699,165.67,79.126 +26700,164.03,78.037 +26701,167.79,81.4305 +26702,166.04,80.2727 +26703,164.36,79.137 +26704,162.74,78.022 +26705,166.42,81.49 +26706,164.7,80.3084 +26707,163.05,79.149 +26708,161.46,78.009 +26709,165.05,81.5487 +26710,163.36,80.3437 +26711,161.74,79.16 +26712,160.17,77.997 +26713,163.68,81.6064 +26714,162.02,80.3787 +26715,160.43,79.172 +26716,158.89,77.985 +26717,162.31,81.6631 +26718,160.68,80.4134 +26719,159.12,79.184 +26720,157.61,77.975 +26721,160.94,81.7189 +26722,159.34,80.4478 +26723,157.8,79.197 +26724,156.33,77.965 +26725,159.56,81.7737 +26726,158,80.4819 +26727,156.49,79.21 +26728,155.05,77.956 +26729,158.19,81.8274 +26730,156.65,80.5156 +26731,155.18,79.223 +26732,153.77,77.949 +26733,156.81,81.8802 +26734,155.31,80.549 +26735,153.87,79.237 +26736,152.49,77.942 +26737,155.43,81.9319 +26738,153.97,80.5821 +26739,152.56,79.251 +26740,151.21,77.937 +26741,154.05,81.9826 +26742,152.62,80.6148 +26743,151.26,79.265 +26744,149.94,77.932 +26745,152.67,82.0321 +26746,151.28,80.6472 +26747,149.95,79.28 +26748,148.66,77.929 +26749,151.29,82.0807 +26750,149.94,80.6792 +26751,148.64,79.295 +26752,147.39,77.926 +26753,149.91,82.1281 +26754,148.59,80.7108 +26755,147.33,79.31 +26756,146.12,77.925 +26757,148.53,82.1744 +26758,147.25,80.7421 +26759,146.02,79.326 +26760,144.85,77.925 +26761,147.14,82.2196 +26762,145.9,80.7731 +26763,144.71,79.342 +26764,143.57,77.926 +26765,145.76,82.2636 +26766,144.56,80.8036 +26767,143.41,79.359 +26768,142.3,77.928 +26769,144.37,82.3065 +26770,143.21,80.8338 +26771,142.1,79.376 +26772,141.04,77.931 +26773,142.99,82.3483 +26774,141.86,80.8636 +26775,140.79,79.393 +26776,139.77,77.936 +26777,141.6,82.3889 +26778,140.52,80.893 +26779,139.49,79.411 +26780,138.5,77.941 +26781,140.21,82.4284 +26782,139.17,80.922 +26783,138.18,79.429 +26784,137.23,77.948 +26785,138.82,82.4666 +26786,137.82,80.9506 +26787,136.87,79.447 +26788,135.97,77.956 +26789,137.43,82.5037 +26790,136.48,80.9789 +26791,135.57,79.466 +26792,134.7,77.965 +26793,136.04,82.5396 +26794,135.13,81.0067 +26795,134.26,79.485 +26796,133.44,77.975 +26797,134.65,82.5743 +26798,133.78,81.0342 +26799,132.96,79.505 +26800,132.17,77.987 +26801,133.26,82.6078 +26802,132.43,81.0612 +26803,131.65,79.525 +26804,130.91,78 +26805,131.87,82.64 +26806,131.09,81.0879 +26807,130.34,79.546 +26808,129.64,78.014 +26809,130.48,82.6711 +26810,129.74,81.1142 +26811,129.04,79.567 +26812,128.38,78.029 +26813,129.08,82.701 +26814,128.39,81.14 +26815,127.73,79.588 +26816,127.12,78.045 +26817,127.69,82.7296 +26818,127.04,81.1654 +26819,126.43,79.61 +26820,125.86,78.063 +26821,126.3,82.757 +26822,125.69,81.1905 +26823,125.12,79.632 +26824,124.6,78.082 +26825,124.9,82.7832 +26826,124.34,81.2151 +26827,123.82,79.655 +26828,123.33,78.103 +26829,123.51,82.8081 +26830,122.99,81.2393 +26831,122.51,79.678 +26832,122.07,78.124 +26833,122.11,82.8319 +26834,121.64,81.2631 +26835,121.21,79.701 +26836,120.81,78.147 +26837,120.72,82.8544 +26838,120.29,81.2865 +26839,119.91,79.725 +26840,119.55,78.171 +26841,119.32,82.8757 +26842,118.94,81.3095 +26843,118.6,79.75 +26844,118.29,78.196 +26845,117.93,82.8957 +26846,117.59,81.3321 +26847,117.3,79.774 +26848,117.03,78.223 +26849,116.53,82.9146 +26850,116.24,81.3543 +26851,115.99,79.799 +26852,115.77,78.251 +26853,115.14,82.9322 +26854,114.89,81.376 +26855,114.69,79.825 +26856,114.51,78.28 +26857,113.74,82.9486 +26858,113.54,81.3974 +26859,113.38,79.851 +26860,113.25,78.31 +26861,112.34,82.9637 +26862,112.2,81.4183 +26863,112.08,79.877 +26864,112,78.342 +26865,110.95,82.9777 +26866,110.85,81.4389 +26867,110.77,79.904 +26868,110.74,78.375 +26869,109.55,82.9905 +26870,109.5,81.459 +26871,109.47,79.932 +26872,109.48,78.409 +26873,108.16,83.0021 +26874,108.15,81.4788 +26875,108.17,79.959 +26876,108.22,78.445 +26877,106.76,83.0124 +26878,106.8,81.4981 +26879,106.86,79.987 +26880,106.96,78.481 +26881,105.37,83.0216 +26882,105.44,81.517 +26883,105.56,80.0159 +26884,105.7,78.519 +26885,103.97,83.0297 +26886,104.09,81.5356 +26887,104.25,80.0448 +26888,104.44,78.559 +26889,102.57,83.0365 +26890,102.74,81.5538 +26891,102.95,80.0741 +26892,103.18,78.599 +26893,101.18,83.0422 +26894,101.4,81.5715 +26895,101.64,80.1038 +26896,101.92,78.641 +26897,99.784,83.0467 +26898,100.05,81.5889 +26899,100.34,80.134 +26900,100.66,78.683 +26901,98.389,83.0501 +26902,98.695,81.6059 +26903,99.032,80.1645 +26904,99.399,78.727 +26905,96.995,83.0524 +26906,97.346,81.6225 +26907,97.727,80.1954 +26908,98.139,78.773 +26909,95.601,83.0535 +26910,95.996,81.6388 +26911,96.422,80.2267 +26912,96.878,78.819 +26913,94.207,83.0535 +26914,94.646,81.6546 +26915,95.116,80.2584 +26916,95.616,78.867 +26917,92.814,83.0525 +26918,93.297,81.6701 +26919,93.81,80.2905 +26920,94.354,78.915 +26921,91.421,83.0503 +26922,91.948,81.6853 +26923,92.505,80.323 +26924,93.092,78.965 +26925,90.029,83.0471 +26926,90.598,81.7 +26927,91.198,80.3558 +26928,91.829,79.016 +26929,88.637,83.0428 +26930,89.249,81.7145 +26931,89.892,80.389 +26932,90.566,79.068 +26933,87.246,83.0374 +26934,87.9,81.7285 +26935,88.586,80.4226 +26936,89.302,79.121 +26937,85.855,83.0311 +26938,86.552,81.7422 +26939,87.279,80.4565 +26940,88.038,79.176 +26941,84.465,83.0237 +26942,85.203,81.7556 +26943,85.972,80.4908 +26944,86.773,79.231 +26945,83.076,83.0153 +26946,83.855,81.7687 +26947,84.665,80.5254 +26948,85.507,79.287 +26949,81.687,83.006 +26950,82.507,81.7814 +26951,83.358,80.5604 +26952,84.241,79.345 +26953,80.299,82.9956 +26954,81.159,81.7938 +26955,82.05,80.5957 +26956,82.974,79.403 +26957,78.911,82.9844 +26958,79.811,81.8058 +26959,80.742,80.6314 +26960,81.706,79.463 +26961,77.525,82.9722 +26962,78.463,81.8176 +26963,79.434,80.6674 +26964,80.438,79.523 +26965,76.139,82.9591 +26966,77.116,81.829 +26967,78.126,80.7036 +26968,79.169,79.585 +26969,74.754,82.945 +26970,75.769,81.8402 +26971,76.817,80.7403 +26972,77.899,79.647 +26973,73.37,82.9302 +26974,74.422,81.8511 +26975,75.508,80.7772 +26976,76.628,79.71 +26977,71.987,82.9144 +26978,73.075,81.8616 +26979,74.198,80.8144 +26980,75.356,79.775 +26981,70.604,82.8978 +26982,71.729,81.8719 +26983,72.888,80.8519 +26984,74.083,79.84 +26985,69.223,82.8804 +26986,70.383,81.8819 +26987,71.578,80.8897 +26988,72.81,79.906 +26989,67.842,82.8623 +26990,69.037,81.8917 +26991,70.268,80.9277 +26992,71.535,79.972 +26993,66.463,82.8433 +26994,67.692,81.9012 +26995,68.957,80.9661 +26996,70.26,80.04 +26997,65.084,82.8236 +26998,66.347,81.9104 +26999,67.646,81.0047 +27000,68.983,80.1084 +27001,63.707,82.8031 +27002,65.002,81.9194 +27003,66.334,81.0435 +27004,67.705,80.1776 +27005,62.33,82.782 +27006,63.657,81.9281 +27007,65.022,81.0826 +27008,66.427,80.2475 +27009,60.955,82.7602 +27010,62.313,81.9367 +27011,63.71,81.1219 +27012,65.147,80.3181 +27013,59.58,82.7377 +27014,60.969,81.945 +27015,62.397,81.1615 +27016,63.866,80.3894 +27017,58.207,82.7146 +27018,59.626,81.9531 +27019,61.084,81.2013 +27020,62.584,80.4614 +27021,56.835,82.6908 +27022,58.283,81.961 +27023,59.771,81.2413 +27024,61.301,80.534 +27025,55.464,82.6665 +27026,56.94,81.9686 +27027,58.457,81.2815 +27028,60.016,80.6073 +27029,54.094,82.6416 +27030,55.598,81.9761 +27031,57.142,81.3219 +27032,58.731,80.6811 +27033,52.726,82.6161 +27034,54.256,81.9835 +27035,55.828,81.3625 +27036,57.444,80.7555 +27037,51.358,82.5902 +27038,52.914,81.9906 +27039,54.512,81.4033 +27040,56.156,80.8305 +27041,49.992,82.5638 +27042,51.573,81.9976 +27043,53.197,81.4442 +27044,54.866,80.9059 +27045,48.627,82.5368 +27046,50.232,82.0044 +27047,51.88,81.4854 +27048,53.575,80.9819 +27049,47.263,82.5095 +27050,48.891,82.0111 +27051,50.564,81.5266 +27052,52.283,81.0582 +27053,45.901,82.4817 +27054,47.551,82.0177 +27055,49.247,81.568 +27056,50.99,81.1351 +27057,44.54,82.4536 +27058,46.211,82.0241 +27059,47.929,81.6095 +27060,49.695,81.2123 +27061,43.18,82.4251 +27062,44.872,82.0304 +27063,46.611,81.6512 +27064,48.399,81.2898 +27065,41.822,82.3963 +27066,43.533,82.0366 +27067,45.293,81.693 +27068,47.102,81.3678 +27069,40.464,82.3671 +27070,42.195,82.0427 +27071,43.973,81.7349 +27072,45.803,81.446 +27073,39.108,82.3377 +27074,40.857,82.0487 +27075,42.654,81.7768 +27076,44.503,81.5245 +27077,37.754,82.308 +27078,39.519,82.0546 +27079,41.334,81.8189 +27080,43.201,81.6033 +27081,36.401,82.2781 +27082,38.182,82.0605 +27083,40.013,81.861 +27084,41.898,81.6823 +27085,35.049,82.2481 +27086,36.845,82.0663 +27087,38.692,81.9032 +27088,40.593,81.7614 +27089,33.699,82.2178 +27090,35.509,82.072 +27091,37.371,81.9455 +27092,39.287,81.8408 +27093,32.35,82.1874 +27094,34.173,82.0777 +27095,36.049,81.9878 +27096,37.98,81.9202 +27097,31.002,82.1569 +27098,32.838,82.0834 +27099,34.726,82.0301 +27100,36.671,81.9998 +27101,29.656,82.1263 +27102,31.503,82.089 +27103,33.403,82.0725 +27104,35.36,82.0795 +27105,28.311,82.0956 +27106,30.169,82.0946 +27107,32.079,82.1149 +27108,34.048,82.1592 +27109,26.968,82.0649 +27110,28.835,82.1002 +27111,30.755,82.1573 +27112,32.734,82.2389 +27113,25.626,82.0343 +27114,27.501,82.1059 +27115,29.43,82.1997 +27116,31.419,82.3185 +27117,24.286,82.0036 +27118,26.168,82.1115 +27119,28.105,82.2421 +27120,30.103,82.3982 +27121,22.947,81.973 +27122,24.835,82.1171 +27123,26.779,82.2844 +27124,28.784,82.4777 +27125,21.609,81.9425 +27126,23.503,82.1228 +27127,25.453,82.3267 +27128,27.465,82.5572 +27129,20.273,81.9121 +27130,22.172,82.1285 +27131,24.126,82.369 +27132,26.143,82.6365 +27133,18.938,81.8818 +27134,20.84,82.1343 +27135,22.799,82.4113 +27136,24.82,82.7156 +27137,17.605,81.8517 +27138,19.509,82.1402 +27139,21.471,82.4534 +27140,23.496,82.7945 +27141,16.273,81.8218 +27142,18.179,82.1461 +27143,20.143,82.4955 +27144,22.17,82.8732 +27145,14.943,81.7922 +27146,16.849,82.1521 +27147,18.814,82.5375 +27148,20.842,82.9517 +27149,13.614,81.7627 +27150,15.52,82.1581 +27151,17.484,82.5795 +27152,19.513,83.0298 +27153,12.286,81.7336 +27154,14.191,82.1643 +27155,16.154,82.6213 +27156,18.182,83.1077 +27157,10.96,81.7048 +27158,12.863,82.1706 +27159,14.823,82.663 +27160,16.85,83.1852 +27161,9.6355,81.6763 +27162,11.535,82.177 +27163,13.492,82.7046 +27164,15.516,83.2623 +27165,8.3123,81.6482 +27166,10.207,82.1836 +27167,12.16,82.7461 +27168,14.181,83.339 +27169,6.9905,81.6204 +27170,8.8799,82.1902 +27171,10.828,82.7874 +27172,12.844,83.4153 +27173,5.6701,81.5931 +27174,7.5533,82.197 +27175,9.4954,82.8286 +27176,11.505,83.4911 +27177,4.3512,81.5662 +27178,6.2271,82.204 +27179,8.1622,82.8696 +27180,10.165,83.5664 +27181,3.0337,81.5398 +27182,4.9013,82.2111 +27183,6.8283,82.9105 +27184,8.8234,83.6412 +27185,1.7175,81.5139 +27186,3.5761,82.2184 +27187,5.494,82.9512 +27188,7.4802,83.7154 +27189,0.40279,81.4886 +27190,2.2512,82.2259 +27191,4.1591,82.9917 +27192,6.1355,83.7891 +27193,359.09,81.4637 +27194,0.92686,82.2336 +27195,2.8237,83.032 +27196,4.7892,83.8622 +27197,357.78,81.4395 +27198,359.6,82.2415 +27199,1.4878,83.0721 +27200,3.4414,83.9347 +27201,356.47,81.4159 +27202,358.28,82.2495 +27203,0.15137,83.112 +27204,2.0922,84.0065 +27205,355.16,81.3928 +27206,356.96,82.2578 +27207,358.81,83.1516 +27208,0.74141,84.0776 +27209,353.85,81.3705 +27210,355.63,82.2664 +27211,357.48,83.1911 +27212,359.39,84.148 +27213,352.54,81.3488 +27214,354.31,82.2751 +27215,356.14,83.2303 +27216,358.04,84.2177 +27217,351.24,81.3278 +27218,352.99,82.2841 +27219,354.8,83.2693 +27220,356.68,84.2867 +27221,349.93,81.3076 +27222,351.67,82.2933 +27223,353.46,83.308 +27224,355.32,84.3548 +27225,348.63,81.2881 +27226,350.35,82.3028 +27227,352.12,83.3464 +27228,353.97,84.4222 +27229,347.33,81.2694 +27230,349.03,82.3126 +27231,350.78,83.3846 +27232,352.61,84.4887 +27233,346.03,81.2514 +27234,347.71,82.3226 +27235,349.44,83.4225 +27236,351.25,84.5544 +27237,344.73,81.2343 +27238,346.39,82.3329 +27239,348.1,83.4601 +27240,349.88,84.6192 +27241,343.43,81.2181 +27242,345.07,82.3435 +27243,346.76,83.4975 +27244,348.52,84.6832 +27245,342.14,81.2027 +27246,343.75,82.3544 +27247,345.42,83.5345 +27248,347.15,84.7462 +27249,340.84,81.1882 +27250,342.43,82.3656 +27251,344.08,83.5712 +27252,345.79,84.8083 +27253,339.55,81.1746 +27254,341.11,82.3771 +27255,342.73,83.6076 +27256,344.42,84.8694 +27257,338.25,81.1619 +27258,339.79,82.3889 +27259,341.39,83.6437 +27260,343.05,84.9295 +27261,336.96,81.1502 +27262,338.48,82.401 +27263,340.05,83.6795 +27264,341.68,84.9887 +27265,335.67,81.1394 +27266,337.16,82.4135 +27267,338.7,83.7149 +27268,340.31,85.0468 +27269,334.38,81.1296 +27270,335.84,82.4263 +27271,337.36,83.75 +27272,338.94,85.1039 +27273,333.09,81.1209 +27274,334.53,82.4394 +27275,336.01,83.7848 +27276,337.56,85.16 +27277,331.81,81.1131 +27278,333.21,82.4529 +27279,334.67,83.8192 +27280,336.19,85.215 +27281,330.52,81.1064 +27282,331.89,82.4667 +27283,333.32,83.8532 +27284,334.81,85.2689 +27285,329.23,81.1008 +27286,330.58,82.4809 +27287,331.98,83.8869 +27288,333.44,85.3217 +27289,327.95,81.0962 +27290,329.26,82.4954 +27291,330.63,83.9202 +27292,332.06,85.3734 +27293,326.67,81.0928 +27294,327.95,82.5103 +27295,329.28,83.9532 +27296,330.68,85.4239 +27297,325.38,81.0904 +27298,326.63,82.5256 +27299,327.94,83.9857 +27300,329.3,85.4734 +27301,324.1,81.0892 +27302,325.32,82.5413 +27303,326.59,84.0179 +27304,327.92,85.5216 +27305,322.82,81.0891 +27306,324,82.5573 +27307,325.24,84.0497 +27308,326.53,85.5687 +27309,321.54,81.0902 +27310,322.69,82.5737 +27311,323.89,84.0811 +27312,325.15,85.6146 +27313,320.26,81.0924 +27314,321.38,82.5905 +27315,322.54,84.1122 +27316,323.77,85.6594 +27317,318.98,81.0958 +27318,320.06,82.6078 +27319,321.19,84.1428 +27320,322.38,85.7029 +27321,317.71,81.1004 +27322,318.75,82.6254 +27323,319.84,84.173 +27324,320.99,85.7452 +27325,316.43,81.1062 +27326,317.44,82.6434 +27327,318.5,84.2028 +27328,319.61,85.7863 +27329,315.15,81.1132 +27330,316.13,82.6618 +27331,317.15,84.2322 +27332,318.22,85.8261 +27333,313.88,81.1214 +27334,314.81,82.6806 +27335,315.8,84.2612 +27336,316.83,85.8647 +27337,312.6,81.1309 +27338,313.5,82.6999 +27339,314.45,84.2897 +27340,315.44,85.9021 +27341,311.33,81.1416 +27342,312.19,82.7195 +27343,313.09,84.3179 +27344,314.05,85.9382 +27345,310.05,81.1535 +27346,310.88,82.7396 +27347,311.74,84.3456 +27348,312.66,85.973 +27349,308.78,81.1667 +27350,309.57,82.7601 +27351,310.39,84.3729 +27352,311.27,86.0066 +27353,307.51,81.1812 +27354,308.25,82.781 +27355,309.04,84.3998 +27356,309.88,86.0389 +27357,306.24,81.197 +27358,306.94,82.8023 +27359,307.69,84.4262 +27360,308.48,86.0699 +27361,304.97,81.214 +27362,305.63,82.8241 +27363,306.34,84.4523 +27364,307.09,86.0996 +27365,303.69,81.2323 +27366,304.32,82.8462 +27367,304.99,84.4779 +27368,305.7,86.128 +27369,302.42,81.2519 +27370,303.01,82.8688 +27371,303.63,84.503 +27372,304.3,86.1552 +27373,301.15,81.2728 +27374,301.7,82.8919 +27375,302.28,84.5277 +27376,302.91,86.1811 +27377,299.88,81.295 +27378,300.39,82.9153 +27379,300.93,84.552 +27380,301.51,86.2057 +27381,298.61,81.3184 +27382,299.08,82.9392 +27383,299.58,84.5759 +27384,300.12,86.229 +27385,297.35,81.3432 +27386,297.77,82.9636 +27387,298.22,84.5993 +27388,298.72,86.251 +27389,296.08,81.3693 +27390,296.45,82.9883 +27391,296.87,84.6223 +27392,297.33,86.2717 +27393,294.81,81.3967 +27394,295.14,83.0135 +27395,295.52,84.6449 +27396,295.93,86.2911 +27397,293.54,81.4254 +27398,293.83,83.0391 +27399,294.16,84.667 +27400,294.53,86.3092 +27401,292.27,81.4553 +27402,292.52,83.0652 +27403,292.81,84.6887 +27404,293.14,86.3261 +27405,291,81.4866 +27406,291.21,83.0916 +27407,291.46,84.71 +27408,291.74,86.3417 +27409,289.73,81.5192 +27410,289.9,83.1185 +27411,290.1,84.7309 +27412,290.34,86.356 +27413,288.47,81.553 +27414,288.59,83.1459 +27415,288.75,84.7513 +27416,288.95,86.369 +27417,287.2,81.5882 +27418,287.28,83.1736 +27419,287.4,84.7713 +27420,287.55,86.3808 +27421,285.93,81.6246 +27422,285.97,83.2018 +27423,286.04,84.7908 +27424,286.15,86.3913 +27425,284.66,81.6623 +27426,284.66,83.2304 +27427,284.69,84.81 +27428,284.75,86.4006 +27429,283.39,81.7013 +27430,283.35,83.2594 +27431,283.34,84.8287 +27432,283.36,86.4086 +27433,282.13,81.7415 +27434,282.04,83.2888 +27435,281.98,84.847 +27436,281.96,86.4154 +27437,280.86,81.783 +27438,280.73,83.3186 +27439,280.63,84.8649 +27440,280.56,86.4209 +27441,279.59,81.8257 +27442,279.42,83.3489 +27443,279.27,84.8823 +27444,279.16,86.4253 +27445,278.32,81.8697 +27446,278.11,83.3795 +27447,277.92,84.8994 +27448,277.77,86.4284 +27449,277.05,81.9149 +27450,276.8,83.4106 +27451,276.57,84.9161 +27452,276.37,86.4304 +27453,275.78,81.9614 +27454,275.48,83.4421 +27455,275.21,84.9323 +27456,274.97,86.4311 +27457,274.51,82.009 +27458,274.17,83.4739 +27459,273.86,84.9482 +27460,273.58,86.4307 +27461,273.25,82.0579 +27462,272.86,83.5062 +27463,272.51,84.9636 +27464,272.18,86.4291 +27465,271.98,82.1079 +27466,271.55,83.5388 +27467,271.15,84.9787 +27468,270.78,86.4264 +27469,270.7,82.1591 +27470,270.24,83.5718 +27471,269.8,84.9934 +27472,269.39,86.4225 +27473,269.43,82.2115 +27474,268.93,83.6052 +27475,268.45,85.0077 +27476,267.99,86.4176 +27477,268.16,82.265 +27478,267.61,83.639 +27479,267.09,85.0216 +27480,266.6,86.4115 +27481,266.89,82.3197 +27482,266.3,83.6731 +27483,265.74,85.0352 +27484,265.21,86.4043 +27485,265.62,82.3754 +27486,264.99,83.7077 +27487,264.39,85.0483 +27488,263.81,86.396 +27489,264.35,82.4323 +27490,263.68,83.7425 +27491,263.04,85.0612 +27492,262.42,86.3867 +27493,263.07,82.4903 +27494,262.36,83.7778 +27495,261.68,85.0736 +27496,261.03,86.3764 +27497,261.8,82.5493 +27498,261.05,83.8133 +27499,260.33,85.0857 +27500,259.63,86.365 +27501,260.53,82.6094 +27502,259.74,83.8492 +27503,258.98,85.0975 +27504,258.24,86.3526 +27505,259.25,82.6705 +27506,258.43,83.8855 +27507,257.63,85.1089 +27508,256.85,86.3392 +27509,257.97,82.7326 +27510,257.11,83.9221 +27511,256.27,85.12 +27512,255.46,86.3249 +27513,256.7,82.7957 +27514,255.8,83.959 +27515,254.92,85.1308 +27516,254.07,86.3096 +27517,255.42,82.8598 +27518,254.48,83.9962 +27519,253.57,85.1412 +27520,252.68,86.2934 +27521,254.14,82.9249 +27522,253.17,84.0337 +27523,252.22,85.1514 +27524,251.3,86.2762 +27525,252.86,82.9908 +27526,251.85,84.0715 +27527,250.87,85.1612 +27528,249.91,86.2582 +27529,251.59,83.0577 +27530,250.54,84.1096 +27531,249.52,85.1707 +27532,248.52,86.2393 +27533,250.3,83.1255 +27534,249.22,84.1481 +27535,248.17,85.18 +27536,247.14,86.2196 +27537,249.02,83.1942 +27538,247.91,84.1867 +27539,246.82,85.1889 +27540,245.75,86.199 +27541,247.74,83.2636 +27542,246.59,84.2257 +27543,245.47,85.1976 +27544,244.37,86.1776 +27545,246.46,83.334 +27546,245.27,84.2649 +27547,244.12,85.206 +27548,242.99,86.1555 +27549,245.17,83.4051 +27550,243.96,84.3044 +27551,242.77,85.2142 +27552,241.6,86.1326 +27553,243.89,83.4769 +27554,242.64,84.3441 +27555,241.42,85.2221 +27556,240.22,86.1089 +27557,242.6,83.5496 +27558,241.32,84.3841 +27559,240.07,85.2297 +27560,238.84,86.0846 +27561,241.32,83.6229 +27562,240,84.4243 +27563,238.72,85.2371 +27564,237.46,86.0595 +27565,240.03,83.6969 +27566,238.69,84.4647 +27567,237.37,85.2443 +27568,236.09,86.0338 +27569,238.74,83.7716 +27570,237.37,84.5054 +27571,236.02,85.2513 +27572,234.71,86.0075 +27573,237.45,83.847 +27574,236.05,84.5462 +27575,234.68,85.258 +27576,233.33,85.9805 +27577,236.16,83.9229 +27578,234.73,84.5872 +27579,233.33,85.2646 +27580,231.96,85.953 +27581,234.87,83.9995 +27582,233.41,84.6285 +27583,231.98,85.2709 +27584,230.58,85.9249 +27585,233.57,84.0766 +27586,232.09,84.6699 +27587,230.64,85.2771 +27588,229.21,85.8963 +27589,232.28,84.1542 +27590,230.77,84.7114 +27591,229.29,85.2831 +27592,227.84,85.8671 +27593,230.98,84.2323 +27594,229.45,84.7532 +27595,227.94,85.2889 +27596,226.47,85.8375 +27597,229.69,84.311 +27598,228.13,84.795 +27599,226.6,85.2945 +27600,225.1,85.8074 +27601,228.39,84.39 +27602,226.8,84.8371 +27603,225.25,85.3 +27604,223.73,85.777 +27605,227.09,84.4695 +27606,225.48,84.8792 +27607,223.91,85.3054 +27608,222.37,85.7461 +27609,225.79,84.5493 +27610,224.16,84.9215 +27611,222.56,85.3106 +27612,221,85.7148 +27613,224.48,84.6296 +27614,222.83,84.9639 +27615,221.22,85.3157 +27616,219.64,85.6832 +27617,223.18,84.7101 +27618,221.51,85.0063 +27619,219.87,85.3207 +27620,218.27,85.6512 +27621,221.88,84.7909 +27622,220.19,85.0489 +27623,218.53,85.3256 +27624,216.91,85.619 +27625,220.57,84.872 +27626,218.86,85.0916 +27627,217.19,85.3305 +27628,215.55,85.5866 +27629,219.26,84.9534 +27630,217.54,85.1343 +27631,215.85,85.3352 +27632,214.19,85.5538 +27633,217.95,85.0349 +27634,216.21,85.1771 +27635,214.5,85.3398 +27636,212.83,85.5209 +27637,216.64,85.1166 +27638,214.88,85.2199 +27639,213.16,85.3444 +27640,211.48,85.4878 +27641,215.33,85.1984 +27642,213.56,85.2628 +27643,211.82,85.3489 +27644,210.12,85.4546 +27645,214.02,85.2804 +27646,212.23,85.3057 +27647,210.48,85.3534 +27648,208.77,85.4213 +27649,212.71,85.3624 +27650,210.9,85.3486 +27651,209.14,85.3579 +27652,207.41,85.3878 +27653,211.39,85.4445 +27654,209.57,85.3916 +27655,207.8,85.3623 +27656,206.06,85.3543 +27657,210.07,85.5266 +27658,208.25,85.4345 +27659,206.46,85.3667 +27660,204.71,85.3208 +27661,208.76,85.6087 +27662,206.92,85.4774 +27663,205.12,85.3711 +27664,203.36,85.2873 +27665,207.44,85.6907 +27666,205.59,85.5203 +27667,203.78,85.3755 +27668,202.02,85.2538 +27669,206.11,85.7727 +27670,204.26,85.5632 +27671,202.44,85.3799 +27672,200.67,85.2203 +27673,204.79,85.8546 +27674,202.93,85.606 +27675,201.1,85.3844 +27676,199.33,85.187 +27677,203.47,85.9363 +27678,201.59,85.6488 +27679,199.77,85.3889 +27680,197.98,85.1537 +27681,202.14,86.0178 +27682,200.26,85.6915 +27683,198.43,85.3934 +27684,196.64,85.1206 +27685,200.81,86.0991 +27686,198.93,85.7342 +27687,197.09,85.398 +27688,195.3,85.0877 +27689,199.49,86.1802 +27690,197.6,85.7767 +27691,195.76,85.4026 +27692,193.96,85.055 +27693,198.16,86.261 +27694,196.26,85.8192 +27695,194.42,85.4073 +27696,192.62,85.0225 +27697,196.82,86.3416 +27698,194.93,85.8615 +27699,193.09,85.4121 +27700,191.29,84.9903 +27701,195.49,86.4218 +27702,193.6,85.9038 +27703,191.75,85.417 +27704,189.95,84.9583 +27705,194.16,86.5016 +27706,192.26,85.9459 +27707,190.42,85.422 +27708,188.62,84.9267 +27709,192.82,86.581 +27710,190.93,85.9879 +27711,189.08,85.4271 +27712,187.29,84.8954 +27713,191.48,86.6601 +27714,189.59,86.0298 +27715,187.75,85.4323 +27716,185.95,84.8645 +27717,190.14,86.7386 +27718,188.25,86.0715 +27719,186.42,85.4377 +27720,184.63,84.834 +27721,188.8,86.8167 +27722,186.92,86.113 +27723,185.08,85.4432 +27724,183.3,84.8039 +27725,187.46,86.8943 +27726,185.58,86.1544 +27727,183.75,85.4488 +27728,181.97,84.7743 +27729,186.12,86.9713 +27730,184.24,86.1955 +27731,182.42,85.4546 +27732,180.64,84.7451 +27733,184.77,87.0478 +27734,182.9,86.2365 +27735,181.09,85.4606 +27736,179.32,84.7165 +27737,183.43,87.1237 +27738,181.56,86.2773 +27739,179.76,85.4668 +27740,178,84.6884 +27741,182.08,87.1989 +27742,180.22,86.3179 +27743,178.42,85.4731 +27744,176.68,84.6609 +27745,180.73,87.2735 +27746,178.88,86.3582 +27747,177.09,85.4796 +27748,175.36,84.6339 +27749,179.38,87.3474 +27750,177.54,86.3984 +27751,175.76,85.4864 +27752,174.04,84.6076 +27753,178.03,87.4206 +27754,176.2,86.4383 +27755,174.43,85.4933 +27756,172.72,84.5819 +27757,176.67,87.4931 +27758,174.86,86.4779 +27759,173.11,85.5005 +27760,171.4,84.5569 +27761,175.32,87.5648 +27762,173.52,86.5173 +27763,171.78,85.5079 +27764,170.09,84.5326 +27765,173.96,87.6357 +27766,172.18,86.5564 +27767,170.45,85.5155 +27768,168.77,84.509 +27769,172.6,87.7057 +27770,170.83,86.5952 +27771,169.12,85.5234 +27772,167.46,84.4862 +27773,171.25,87.775 +27774,169.49,86.6338 +27775,167.79,85.5316 +27776,166.15,84.4641 +27777,169.89,87.8433 +27778,168.15,86.6721 +27779,166.47,85.54 +27780,164.84,84.4428 +27781,168.52,87.9108 +27782,166.8,86.7101 +27783,165.14,85.5486 +27784,163.53,84.4223 +27785,167.16,87.9774 +27786,165.46,86.7477 +27787,163.81,85.5576 +27788,162.22,84.4027 +27789,165.8,88.043 +27790,164.11,86.7851 +27791,162.49,85.5668 +27792,160.92,84.3839 +27793,164.43,88.1077 +27794,162.77,86.8221 +27795,161.16,85.5764 +27796,159.61,84.366 +27797,163.06,88.1713 +27798,161.42,86.8588 +27799,159.84,85.5862 +27800,158.31,84.3491 +27801,161.69,88.234 +27802,160.07,86.8952 +27803,158.51,85.5963 +27804,157,84.333 +27805,160.33,88.2956 +27806,158.73,86.9312 +27807,157.19,85.6068 +27808,155.7,84.3179 +27809,158.95,88.3562 +27810,157.38,86.9669 +27811,155.86,85.6175 +27812,154.4,84.3038 +27813,157.58,88.4157 +27814,156.03,87.0022 +27815,154.54,85.6286 +27816,153.1,84.2906 +27817,156.21,88.4741 +27818,154.68,87.0372 +27819,153.22,85.6401 +27820,151.8,84.2785 +27821,154.83,88.5314 +27822,153.33,87.0717 +27823,151.89,85.6519 +27824,150.5,84.2674 +27825,153.46,88.5876 +27826,151.98,87.1059 +27827,150.57,85.664 +27828,149.21,84.2573 +27829,152.08,88.6426 +27830,150.63,87.1398 +27831,149.25,85.6764 +27832,147.91,84.2484 +27833,150.7,88.6965 +27834,149.28,87.1732 +27835,147.92,85.6893 +27836,146.62,84.2404 +27837,149.33,88.7492 +27838,147.93,87.2062 +27839,146.6,85.7025 +27840,145.32,84.2336 +27841,147.95,88.8007 +27842,146.58,87.2389 +27843,145.28,85.716 +27844,144.03,84.228 +27845,146.56,88.851 +27846,145.23,87.2711 +27847,143.96,85.73 +27848,142.74,84.2234 +27849,145.18,88.9 +27850,143.88,87.3029 +27851,142.64,85.7443 +27852,141.45,84.22 +27853,143.8,88.9478 +27854,142.53,87.3343 +27855,141.32,85.759 +27856,140.15,84.2177 +27857,142.42,88.9944 +27858,141.18,87.3653 +27859,140,85.7741 +27860,138.87,84.2167 +27861,141.03,89.0397 +27862,139.82,87.3959 +27863,138.68,85.7896 +27864,137.58,84.2168 +27865,139.64,89.08371 +27866,138.47,87.426 +27867,137.36,85.8055 +27868,136.29,84.2181 +27869,138.26,89.12643 +27870,137.12,87.4557 +27871,136.04,85.8217 +27872,135,84.2207 +27873,136.87,89.16786 +27874,135.77,87.485 +27875,134.72,85.8384 +27876,133.71,84.2245 +27877,135.48,89.20797 +27878,134.41,87.5138 +27879,133.4,85.8555 +27880,132.43,84.2295 +27881,134.09,89.24676 +27882,133.06,87.5422 +27883,132.08,85.873 +27884,131.14,84.2358 +27885,132.7,89.28422 +27886,131.7,87.5701 +27887,130.76,85.891 +27888,129.86,84.2433 +27889,131.31,89.32035 +27890,130.35,87.5976 +27891,129.44,85.9093 +27892,128.58,84.2521 +27893,129.92,89.35513 +27894,128.99,87.6246 +27895,128.12,85.9281 +27896,127.29,84.2622 +27897,128.53,89.38856 +27898,127.64,87.6512 +27899,126.8,85.9473 +27900,126.01,84.2736 +27901,127.14,89.42064 +27902,126.28,87.6773 +27903,125.48,85.9669 +27904,124.73,84.2862 +27905,125.74,89.45135 +27906,124.93,87.703 +27907,124.17,85.9869 +27908,123.45,84.3002 +27909,124.35,89.48071 +27910,123.57,87.7282 +27911,122.85,86.0074 +27912,122.16,84.3155 +27913,122.95,89.50869 +27914,122.22,87.7529 +27915,121.53,86.0283 +27916,120.88,84.3321 +27917,121.56,89.5353 +27918,120.86,87.7772 +27919,120.21,86.0496 +27920,119.6,84.35 +27921,120.16,89.56054 +27922,119.5,87.801 +27923,118.89,86.0714 +27924,118.32,84.3692 +27925,118.77,89.58441 +27926,118.15,87.8244 +27927,117.58,86.0936 +27928,117.04,84.3898 +27929,117.37,89.6069 +27930,116.79,87.8472 +27931,116.26,86.1162 +27932,115.76,84.4117 +27933,115.97,89.62801 +27934,115.43,87.8697 +27935,114.94,86.1393 +27936,114.49,84.4349 +27937,114.57,89.64775 +27938,114.08,87.8916 +27939,113.62,86.1628 +27940,113.21,84.4594 +27941,113.18,89.66612 +27942,112.72,87.9131 +27943,112.31,86.1867 +27944,111.93,84.4853 +27945,111.78,89.68312 +27946,111.36,87.9341 +27947,110.99,86.2111 +27948,110.65,84.5125 +27949,110.38,89.69875 +27950,110.01,87.9546 +27951,109.67,86.2359 +27952,109.37,84.5411 +27953,108.98,89.71302 +27954,108.65,87.9747 +27955,108.35,86.2612 +27956,108.09,84.571 +27957,107.58,89.72593 +27958,107.29,87.9943 +27959,107.04,86.2868 +27960,106.82,84.6022 +27961,106.18,89.73748 +27962,105.93,88.0135 +27963,105.72,86.313 +27964,105.54,84.6347 +27965,104.79,89.74769 +27966,104.58,88.0322 +27967,104.4,86.3395 +27968,104.26,84.6686 +27969,103.39,89.75655 +27970,103.22,88.0504 +27971,103.08,86.3665 +27972,102.98,84.7038 +27973,101.99,89.76408 +27974,101.86,88.0682 +27975,101.77,86.3938 +27976,101.71,84.7403 +27977,100.59,89.77029 +27978,100.5,88.0855 +27979,100.45,86.4217 +27980,100.43,84.7781 +27981,99.189,89.77517 +27982,99.144,88.1024 +27983,99.132,86.4499 +27984,99.152,84.8172 +27985,97.79,89.77875 +27986,97.786,88.1188 +27987,97.815,86.4786 +27988,97.874,84.8576 +27989,96.391,89.78102 +27990,96.428,88.1348 +27991,96.497,86.5076 +27992,96.596,84.8992 +27993,94.991,89.78201 +27994,95.07,88.1503 +27995,95.179,86.5371 +27996,95.318,84.9422 +27997,93.593,89.78172 +27998,93.712,88.1654 +27999,93.862,86.567 +28000,94.04,84.9864 +28001,92.194,89.78017 +28002,92.354,88.1801 +28003,92.544,86.5973 +28004,92.762,85.0319 +28005,90.795,89.77736 +28006,90.996,88.1943 +28007,91.226,86.628 +28008,91.483,85.0787 +28009,89.397,89.77331 +28010,89.638,88.2081 +28011,89.908,86.6591 +28012,90.205,85.1267 +28013,87.999,89.76804 +28014,88.28,88.2215 +28015,88.59,86.6906 +28016,88.925,85.1759 +28017,86.601,89.76155 +28018,86.922,88.2344 +28019,87.271,86.7225 +28020,87.646,85.2263 +28021,85.203,89.75387 +28022,85.565,88.2469 +28023,85.953,86.7548 +28024,86.366,85.2779 +28025,83.806,89.745 +28026,84.207,88.2591 +28027,84.634,86.7874 +28028,85.086,85.3307 +28029,82.409,89.73497 +28030,82.85,88.2708 +28031,83.315,86.8205 +28032,83.805,85.3847 +28033,81.013,89.72379 +28034,81.492,88.2821 +28035,81.996,86.8538 +28036,82.524,85.4398 +28037,79.617,89.71148 +28038,80.135,88.293 +28039,80.677,86.8876 +28040,81.243,85.4961 +28041,78.221,89.69805 +28042,78.778,88.3036 +28043,79.358,86.9217 +28044,79.961,85.5535 +28045,76.826,89.68352 +28046,77.42,88.3137 +28047,78.038,86.9562 +28048,78.678,85.6121 +28049,75.432,89.66792 +28050,76.064,88.3235 +28051,76.718,86.991 +28052,77.395,85.6717 +28053,74.038,89.65126 +28054,74.707,88.3329 +28055,75.398,87.0262 +28056,76.111,85.7323 +28057,72.645,89.63357 +28058,73.35,88.3419 +28059,74.078,87.0617 +28060,74.827,85.7941 +28061,71.252,89.61485 +28062,71.994,88.3506 +28063,72.757,87.0975 +28064,73.542,85.8569 +28065,69.86,89.59514 +28066,70.637,88.3589 +28067,71.437,87.1337 +28068,72.257,85.9207 +28069,68.468,89.57445 +28070,69.281,88.3669 +28071,70.116,87.1701 +28072,70.97,85.9854 +28073,67.078,89.55281 +28074,67.925,88.3745 +28075,68.794,87.2069 +28076,69.683,86.0512 +28077,65.688,89.53024 +28078,66.57,88.3818 +28079,67.473,87.2439 +28080,68.396,86.1179 +28081,64.298,89.50676 +28082,65.214,88.3888 +28083,66.151,87.2813 +28084,67.107,86.1855 +28085,62.91,89.48239 +28086,63.859,88.3955 +28087,64.829,87.3189 +28088,65.818,86.2541 +28089,61.522,89.45716 +28090,62.504,88.4019 +28091,63.506,87.3568 +28092,64.528,86.3235 +28093,60.135,89.43109 +28094,61.149,88.4079 +28095,62.183,87.395 +28096,63.237,86.3938 +28097,58.749,89.40421 +28098,59.795,88.4137 +28099,60.86,87.4335 +28100,61.945,86.465 +28101,57.364,89.37653 +28102,58.44,88.4192 +28103,59.537,87.4722 +28104,60.652,86.5369 +28105,55.98,89.3481 +28106,57.086,88.4244 +28107,58.213,87.5111 +28108,59.359,86.6096 +28109,54.597,89.31892 +28110,55.733,88.4294 +28111,56.889,87.5503 +28112,58.064,86.6831 +28113,53.214,89.28904 +28114,54.379,88.4341 +28115,55.564,87.5897 +28116,56.769,86.7573 +28117,51.833,89.25846 +28118,53.026,88.4385 +28119,54.239,87.6293 +28120,55.472,86.8323 +28121,50.453,89.22722 +28122,51.673,88.4427 +28123,52.914,87.6691 +28124,54.175,86.9079 +28125,49.073,89.19536 +28126,50.321,88.4467 +28127,51.588,87.7091 +28128,52.876,86.9841 +28129,47.695,89.16288 +28130,48.968,88.4504 +28131,50.262,87.7493 +28132,51.577,87.061 +28133,46.317,89.12983 +28134,47.616,88.454 +28135,48.936,87.7897 +28136,50.276,87.1385 +28137,44.941,89.09622 +28138,46.265,88.4573 +28139,47.609,87.8302 +28140,48.974,87.2166 +28141,43.566,89.06209 +28142,44.913,88.4604 +28143,46.282,87.8709 +28144,47.672,87.2952 +28145,42.191,89.02746 +28146,43.562,88.4634 +28147,44.955,87.9118 +28148,46.368,87.3743 +28149,40.818,88.9924 +28150,42.212,88.4661 +28151,43.627,87.9528 +28152,45.063,87.4539 +28153,39.446,88.9568 +28154,40.861,88.4688 +28155,42.298,87.9939 +28156,43.756,87.5339 +28157,38.076,88.9209 +28158,39.511,88.4712 +28159,40.969,88.0352 +28160,42.449,87.6144 +28161,36.706,88.8846 +28162,38.162,88.4735 +28163,39.64,88.0765 +28164,41.141,87.6953 +28165,35.337,88.8479 +28166,36.812,88.4757 +28167,38.31,88.118 +28168,39.831,87.7765 +28169,33.97,88.8109 +28170,35.464,88.4777 +28171,36.98,88.1596 +28172,38.52,87.858 +28173,32.604,88.7736 +28174,34.115,88.4796 +28175,35.65,88.2012 +28176,37.208,87.9398 +28177,31.239,88.736 +28178,32.767,88.4815 +28179,34.319,88.2429 +28180,35.894,88.022 +28181,29.875,88.6983 +28182,31.419,88.4832 +28183,32.987,88.2846 +28184,34.58,88.1043 +28185,28.513,88.6603 +28186,30.072,88.4848 +28187,31.655,88.3264 +28188,33.264,88.1868 +28189,27.152,88.6221 +28190,28.724,88.4864 +28191,30.323,88.3683 +28192,31.947,88.2696 +28193,25.792,88.5838 +28194,27.378,88.4878 +28195,28.99,88.4101 +28196,30.628,88.3524 +28197,24.433,88.5454 +28198,26.032,88.4893 +28199,27.657,88.452 +28200,29.309,88.4354 +28201,23.075,88.5068 +28202,24.686,88.4907 +28203,26.323,88.4939 +28204,27.987,88.5184 +28205,21.719,88.4683 +28206,23.34,88.492 +28207,24.989,88.5358 +28208,26.665,88.6015 +28209,20.364,88.4297 +28210,21.995,88.4933 +28211,23.654,88.5777 +28212,25.341,88.6845 +28213,19.01,88.3911 +28214,20.65,88.4946 +28215,22.319,88.6195 +28216,24.016,88.7676 +28217,17.658,88.3526 +28218,19.306,88.4959 +28219,20.983,88.6613 +28220,22.69,88.8506 +28221,16.307,88.3141 +28222,17.962,88.4973 +28223,19.647,88.7031 +28224,21.362,88.9335 +28225,14.957,88.2757 +28226,16.619,88.4986 +28227,18.31,88.7447 +28228,20.033,89.01628 +28229,13.609,88.2374 +28230,15.276,88.4999 +28231,16.973,88.7864 +28232,18.702,89.0989 +28233,12.261,88.1993 +28234,13.933,88.5013 +28235,15.635,88.8279 +28236,17.371,89.18134 +28237,10.915,88.1614 +28238,12.591,88.5027 +28239,14.297,88.8694 +28240,16.037,89.26356 +28241,9.5708,88.1237 +28242,11.249,88.5042 +28243,12.959,88.9107 +28244,14.703,89.34552 +28245,8.2275,88.0862 +28246,9.9072,88.5058 +28247,11.62,88.9519 +28248,13.367,89.42719 +28249,6.8854,88.0491 +28250,8.5661,88.5074 +28251,10.28,88.993 +28252,12.029,89.50855 +28253,5.5447,88.0122 +28254,7.2254,88.5091 +28255,8.9399,89.03402 +28256,10.691,89.58955 +28257,4.2052,87.9756 +28258,5.8851,88.5109 +28259,7.5993,89.07485 +28260,9.3505,89.67017 +28261,2.8671,87.9395 +28262,4.5453,88.5128 +28263,6.2583,89.11553 +28264,8.009,89.75037 +28265,1.5302,87.9037 +28266,3.2058,88.5149 +28267,4.9167,89.15604 +28268,6.6661,89.83013 +28269,0.19466,87.8683 +28270,1.8668,88.517 +28271,3.5747,89.19638 +28272,5.3218,89.909401 +28273,358.86,87.8334 +28274,0.52811,88.5193 +28275,2.2322,89.23652 +28276,3.9761,89.988163 +28277,357.53,87.799 +28278,359.19,88.5217 +28279,0.88916,89.27648 +28280,2.6291,90.066382 +28281,356.2,87.765 +28282,357.85,88.5243 +28283,359.55,89.31622 +28284,1.2807,90.14403 +28285,354.87,87.7316 +28286,356.51,88.5271 +28287,358.2,89.35576 +28288,359.93,90.22107 +28289,353.54,87.6988 +28290,355.18,88.53 +28291,356.86,89.39506 +28292,358.58,90.29747 +28293,352.21,87.6665 +28294,353.84,88.5331 +28295,355.51,89.43413 +28296,357.23,90.37321 +28297,350.88,87.6349 +28298,352.5,88.5364 +28299,354.17,89.47295 +28300,355.87,90.44826 +28301,349.56,87.6039 +28302,351.17,88.5399 +28303,352.82,89.51152 +28304,354.52,90.52257 +28305,348.23,87.5736 +28306,349.83,88.5436 +28307,351.47,89.54982 +28308,353.16,90.59614 +28309,346.91,87.5439 +28310,348.5,88.5475 +28311,350.13,89.58785 +28312,351.8,90.66892 +28313,345.59,87.515 +28314,347.16,88.5517 +28315,348.78,89.62559 +28316,350.44,90.74089 +28317,344.27,87.4869 +28318,345.83,88.5561 +28319,347.43,89.66305 +28320,349.08,90.81202 +28321,342.95,87.4595 +28322,344.49,88.5607 +28323,346.08,89.7002 +28324,347.72,90.88228 +28325,341.63,87.4329 +28326,343.16,88.5656 +28327,344.74,89.73704 +28328,346.36,90.95165 +28329,340.31,87.4071 +28330,341.83,88.5708 +28331,343.39,89.77356 +28332,344.99,91.0201 +28333,338.99,87.3822 +28334,340.49,88.5762 +28335,342.04,89.80975 +28336,343.63,91.0876 +28337,337.68,87.3581 +28338,339.16,88.5819 +28339,340.69,89.84561 +28340,342.26,91.1541 +28341,336.37,87.335 +28342,337.83,88.5879 +28343,339.34,89.88112 +28344,340.89,91.2196 +28345,335.05,87.3127 +28346,336.5,88.5941 +28347,337.99,89.916285 +28348,339.52,91.2841 +28349,333.74,87.2914 +28350,335.17,88.6007 +28351,336.63,89.951087 +28352,338.15,91.3476 +28353,332.43,87.271 +28354,333.84,88.6076 +28355,335.28,89.98552 +28356,336.78,91.41 +28357,331.12,87.2516 +28358,332.5,88.6148 +28359,333.93,90.019578 +28360,335.41,91.4713 +28361,329.81,87.2333 +28362,331.17,88.6223 +28363,332.58,90.053254 +28364,334.03,91.5314 +28365,328.5,87.2159 +28366,329.84,88.6301 +28367,331.23,90.086539 +28368,332.66,91.5905 +28369,327.2,87.1996 +28370,328.51,88.6383 +28371,329.87,90.11943 +28372,331.28,91.6484 +28373,325.89,87.1843 +28374,327.18,88.6468 +28375,328.52,90.15191 +28376,329.91,91.705 +28377,324.59,87.1701 +28378,325.85,88.6557 +28379,327.16,90.18399 +28380,328.53,91.7605 +28381,323.28,87.1571 +28382,324.53,88.6649 +28383,325.81,90.21564 +28384,327.15,91.8148 +28385,321.98,87.1451 +28386,323.2,88.6745 +28387,324.46,90.24688 +28388,325.77,91.8678 +28389,320.68,87.1343 +28390,321.87,88.6845 +28391,323.1,90.27768 +28392,324.38,91.9196 +28393,319.38,87.1246 +28394,320.54,88.6948 +28395,321.74,90.30805 +28396,323,91.9701 +28397,318.08,87.1161 +28398,319.21,88.7055 +28399,320.39,90.33798 +28400,321.62,92.0193 +28401,316.78,87.1087 +28402,317.88,88.7165 +28403,319.03,90.36747 +28404,320.23,92.0672 +28405,315.48,87.1026 +28406,316.56,88.728 +28407,317.68,90.3965 +28408,318.85,92.1138 +28409,314.18,87.0976 +28410,315.23,88.7398 +28411,316.32,90.42508 +28412,317.46,92.1591 +28413,312.88,87.0939 +28414,313.9,88.7521 +28415,314.96,90.4532 +28416,316.07,92.203 +28417,311.59,87.0915 +28418,312.58,88.7647 +28419,313.6,90.48085 +28420,314.68,92.2455 +28421,310.29,87.0902 +28422,311.25,88.7778 +28423,312.25,90.50803 +28424,313.3,92.2866 +28425,309,87.0903 +28426,309.92,88.7912 +28427,310.89,90.53474 +28428,311.91,92.3264 +28429,307.7,87.0916 +28430,308.6,88.8051 +28431,309.53,90.56097 +28432,310.51,92.3648 +28433,306.41,87.0942 +28434,307.27,88.8194 +28435,308.17,90.58672 +28436,309.12,92.4017 +28437,305.12,87.0981 +28438,305.94,88.8341 +28439,306.81,90.61199 +28440,307.73,92.4373 +28441,303.82,87.1033 +28442,304.62,88.8492 +28443,305.45,90.63677 +28444,306.34,92.4714 +28445,302.53,87.1098 +28446,303.29,88.8647 +28447,304.09,90.66106 +28448,304.94,92.5041 +28449,301.24,87.1176 +28450,301.97,88.8807 +28451,302.73,90.68486 +28452,303.55,92.5353 +28453,299.95,87.1268 +28454,300.64,88.8971 +28455,301.37,90.70816 +28456,302.15,92.5651 +28457,298.66,87.1373 +28458,299.32,88.9139 +28459,300.01,90.73097 +28460,300.76,92.5934 +28461,297.37,87.1491 +28462,297.99,88.9312 +28463,298.65,90.75327 +28464,299.36,92.6203 +28465,296.08,87.1623 +28466,296.67,88.9489 +28467,297.29,90.77508 +28468,297.97,92.6457 +28469,294.79,87.1768 +28470,295.34,88.967 +28471,295.93,90.79638 +28472,296.57,92.6696 +28473,293.5,87.1927 +28474,294.02,88.9856 +28475,294.57,90.81718 +28476,295.17,92.6921 +28477,292.21,87.2099 +28478,292.69,89.00455 +28479,293.21,90.83748 +28480,293.77,92.7131 +28481,290.92,87.2286 +28482,291.37,89.02399 +28483,291.85,90.85727 +28484,292.38,92.7327 +28485,289.63,87.2485 +28486,290.04,89.04386 +28487,290.49,90.87656 +28488,290.98,92.7507 +28489,288.35,87.2699 +28490,288.72,89.06417 +28491,289.13,90.89534 +28492,289.58,92.7673 +28493,287.06,87.2925 +28494,287.39,89.08492 +28495,287.77,90.91361 +28496,288.18,92.7825 +28497,285.77,87.3166 +28498,286.07,89.10611 +28499,286.4,90.93139 +28500,286.78,92.7961 +28501,284.48,87.342 +28502,284.75,89.12773 +28503,285.04,90.94865 +28504,285.38,92.8084 +28505,283.2,87.3688 +28506,283.42,89.14979 +28507,283.68,90.96542 +28508,283.98,92.8191 +28509,281.91,87.397 +28510,282.1,89.17228 +28511,282.32,90.98168 +28512,282.58,92.8284 +28513,280.62,87.4265 +28514,280.77,89.19521 +28515,280.96,90.99744 +28516,281.18,92.8362 +28517,279.33,87.4573 +28518,279.45,89.21857 +28519,279.59,91.0127 +28520,279.78,92.8426 +28521,278.05,87.4896 +28522,278.12,89.24236 +28523,278.23,91.0275 +28524,278.37,92.8476 +28525,276.76,87.5231 +28526,276.8,89.26658 +28527,276.87,91.0417 +28528,276.97,92.8511 +28529,275.47,87.558 +28530,275.48,89.29123 +28531,275.51,91.0555 +28532,275.57,92.8533 +28533,274.19,87.5942 +28534,274.15,89.3163 +28535,274.15,91.0688 +28536,274.17,92.854 +28537,272.9,87.6318 +28538,272.83,89.34179 +28539,272.78,91.0816 +28540,272.77,92.8533 +28541,271.61,87.6707 +28542,271.5,89.3677 +28543,271.42,91.0939 +28544,271.37,92.8512 +28545,270.32,87.7109 +28546,270.18,89.39402 +28547,270.06,91.1057 +28548,269.97,92.8477 +28549,269.03,87.7523 +28550,268.85,89.42076 +28551,268.7,91.1171 +28552,268.57,92.8429 +28553,267.75,87.7951 +28554,267.53,89.4479 +28555,267.33,91.128 +28556,267.17,92.8367 +28557,266.46,87.8392 +28558,266.2,89.47545 +28559,265.97,91.1384 +28560,265.77,92.8292 +28561,265.17,87.8845 +28562,264.88,89.5034 +28563,264.61,91.1483 +28564,264.37,92.8203 +28565,263.88,87.9311 +28566,263.55,89.53174 +28567,263.25,91.1578 +28568,262.97,92.8102 +28569,262.59,87.9789 +28570,262.23,89.56048 +28571,261.88,91.1668 +28572,261.57,92.7987 +28573,261.3,88.028 +28574,260.9,89.5896 +28575,260.52,91.1754 +28576,260.17,92.786 +28577,260.01,88.0782 +28578,259.58,89.6191 +28579,259.16,91.1835 +28580,258.77,92.772 +28581,258.72,88.1297 +28582,258.25,89.64898 +28583,257.8,91.1912 +28584,257.37,92.7567 +28585,257.43,88.1824 +28586,256.92,89.67923 +28587,256.44,91.1984 +28588,255.97,92.7402 +28589,256.14,88.2362 +28590,255.6,89.70985 +28591,255.08,91.2052 +28592,254.58,92.7225 +28593,254.85,88.2912 +28594,254.27,89.74082 +28595,253.71,91.2116 +28596,253.18,92.7036 +28597,253.56,88.3473 +28598,252.94,89.77215 +28599,252.35,91.2176 +28600,251.78,92.6836 +28601,252.26,88.4046 +28602,251.62,89.80383 +28603,250.99,91.2232 +28604,250.38,92.6624 +28605,250.97,88.4629 +28606,250.29,89.83584 +28607,249.63,91.2283 +28608,248.99,92.64 +28609,249.67,88.5224 +28610,248.96,89.86819 +28611,248.27,91.2331 +28612,247.59,92.6166 +28613,248.38,88.5829 +28614,247.64,89.900868 +28615,246.91,91.2374 +28616,246.2,92.592 +28617,247.08,88.6444 +28618,246.31,89.933865 +28619,245.55,91.2414 +28620,244.81,92.5664 +28621,245.79,88.707 +28622,244.98,89.967175 +28623,244.19,91.245 +28624,243.41,92.5398 +28625,244.49,88.7706 +28626,243.65,90.00079022 +28627,242.83,91.2482 +28628,242.02,92.5121 +28629,243.19,88.8351 +28630,242.32,90.034704 +28631,241.47,91.2511 +28632,240.63,92.4834 +28633,241.9,88.9006 +28634,240.99,90.068907 +28635,240.11,91.2536 +28636,239.24,92.4538 +28637,240.6,88.9671 +28638,239.66,90.10339 +28639,238.75,91.2557 +28640,237.85,92.4232 +28641,239.3,89.03442 +28642,238.34,90.13815 +28643,237.39,91.2576 +28644,236.46,92.3917 +28645,238,89.10267 +28646,237.01,90.17318 +28647,236.03,91.259 +28648,235.07,92.3593 +28649,236.7,89.17178 +28650,235.68,90.20846 +28651,234.67,91.2602 +28652,233.68,92.326 +28653,235.39,89.24172 +28654,234.35,90.24399 +28655,233.31,91.2611 +28656,232.29,92.2918 +28657,234.09,89.31248 +28658,233.01,90.27976 +28659,231.95,91.2616 +28660,230.9,92.2569 +28661,232.79,89.38403 +28662,231.68,90.31576 +28663,230.59,91.2618 +28664,229.52,92.2212 +28665,231.48,89.45633 +28666,230.35,90.35199 +28667,229.24,91.2618 +28668,228.13,92.1847 +28669,230.18,89.52937 +28670,229.02,90.38843 +28671,227.88,91.2615 +28672,226.75,92.1474 +28673,228.87,89.60312 +28674,227.69,90.42507 +28675,226.52,91.2609 +28676,225.37,92.1095 +28677,227.56,89.67754 +28678,226.36,90.4619 +28679,225.16,91.2601 +28680,223.99,92.0708 +28681,226.25,89.75261 +28682,225.02,90.49892 +28683,223.81,91.259 +28684,222.61,92.0316 +28685,224.94,89.82831 +28686,223.69,90.53611 +28687,222.45,91.2576 +28688,221.23,91.9917 +28689,223.63,89.904595 +28690,222.36,90.57347 +28691,221.09,91.256 +28692,219.85,91.9512 +28693,222.32,89.981445 +28694,221.02,90.61098 +28695,219.74,91.2543 +28696,218.47,91.9101 +28697,221.01,90.05883 +28698,219.69,90.64864 +28699,218.38,91.2523 +28700,217.09,91.8685 +28701,219.69,90.13672 +28702,218.35,90.68643 +28703,217.03,91.25 +28704,215.72,91.8264 +28705,218.38,90.21508 +28706,217.02,90.72434 +28707,215.67,91.2476 +28708,214.34,91.7838 +28709,217.06,90.29388 +28710,215.68,90.76237 +28711,214.32,91.2451 +28712,212.97,91.7408 +28713,215.74,90.37309 +28714,214.35,90.8005 +28715,212.96,91.2423 +28716,211.6,91.6974 +28717,214.43,90.45269 +28718,213.01,90.83873 +28719,211.61,91.2394 +28720,210.22,91.6536 +28721,213.11,90.53263 +28722,211.67,90.87704 +28723,210.26,91.2363 +28724,208.85,91.6094 +28725,211.78,90.61289 +28726,210.34,90.91542 +28727,208.9,91.2331 +28728,207.48,91.5649 +28729,210.46,90.69343 +28730,209,90.95386 +28731,207.55,91.2298 +28732,206.12,91.5201 +28733,209.14,90.77422 +28734,207.66,90.99235 +28735,206.2,91.2263 +28736,204.75,91.4751 +28737,207.82,90.85523 +28738,206.32,91.0309 +28739,204.85,91.2228 +28740,203.38,91.4298 +28741,206.49,90.93643 +28742,204.98,91.0694 +28743,203.49,91.2191 +28744,202.02,91.3844 +28745,205.16,91.0178 +28746,203.65,91.108 +28747,202.14,91.2154 +28748,200.66,91.3387 +28749,203.83,91.0993 +28750,202.31,91.1466 +28751,200.79,91.2115 +28752,199.29,91.293 +28753,202.51,91.1808 +28754,200.97,91.1852 +28755,199.44,91.2076 +28756,197.93,91.2471 +28757,201.17,91.2624 +28758,199.62,91.2237 +28759,198.09,91.2037 +28760,196.57,91.2012 +28761,199.84,91.3441 +28762,198.28,91.2622 +28763,196.74,91.1997 +28764,195.22,91.1552 +28765,198.51,91.4257 +28766,196.94,91.3007 +28767,195.39,91.1957 +28768,193.86,91.1092 +28769,197.18,91.5073 +28770,195.6,91.3392 +28771,194.04,91.1916 +28772,192.5,91.0633 +28773,195.84,91.5887 +28774,194.26,91.3776 +28775,192.69,91.1875 +28776,191.15,91.0174 +28777,194.5,91.6701 +28778,192.92,91.4159 +28779,191.35,91.1835 +28780,189.79,90.97155 +28781,193.17,91.7513 +28782,191.57,91.4541 +28783,190,91.1794 +28784,188.44,90.92585 +28785,191.83,91.8324 +28786,190.23,91.4922 +28787,188.65,91.1754 +28788,187.09,90.8803 +28789,190.48,91.9132 +28790,188.88,91.5303 +28791,187.3,91.1713 +28792,185.74,90.83492 +28793,189.14,91.9938 +28794,187.54,91.5682 +28795,185.96,91.1674 +28796,184.39,90.78976 +28797,187.8,92.0741 +28798,186.19,91.606 +28799,184.61,91.1634 +28800,183.05,90.74483 +28801,186.46,92.1541 +28802,184.85,91.6436 +28803,183.26,91.1596 +28804,181.7,90.70018 +28805,185.11,92.2337 +28806,183.5,91.6811 +28807,181.92,91.1558 +28808,180.36,90.65583 +28809,183.76,92.3129 +28810,182.16,91.7185 +28811,180.57,91.152 +28812,179.01,90.61182 +28813,182.41,92.3917 +28814,180.81,91.7556 +28815,179.23,91.1484 +28816,177.67,90.56816 +28817,181.06,92.4701 +28818,179.46,91.7926 +28819,177.88,91.1449 +28820,176.33,90.5249 +28821,179.71,92.548 +28822,178.11,91.8294 +28823,176.54,91.1415 +28824,174.99,90.48206 +28825,178.36,92.6253 +28826,176.77,91.866 +28827,175.2,91.1382 +28828,173.65,90.43967 +28829,177.01,92.7022 +28830,175.42,91.9024 +28831,173.85,91.135 +28832,172.31,90.39776 +28833,175.65,92.7784 +28834,174.07,91.9385 +28835,172.51,91.132 +28836,170.98,90.35637 +28837,174.3,92.854 +28838,172.72,91.9744 +28839,171.17,91.1291 +28840,169.64,90.31551 +28841,172.94,92.929 +28842,171.37,92.0101 +28843,169.82,91.1264 +28844,168.31,90.27522 +28845,171.58,93.0032 +28846,170.02,92.0455 +28847,168.48,91.1239 +28848,166.97,90.23552 +28849,170.22,93.0768 +28850,168.67,92.0807 +28851,167.14,91.1216 +28852,165.64,90.19645 +28853,168.86,93.1497 +28854,167.31,92.1156 +28855,165.8,91.1194 +28856,164.31,90.15802 +28857,167.5,93.2217 +28858,165.96,92.1501 +28859,164.46,91.1174 +28860,162.98,90.12028 +28861,166.13,93.293 +28862,164.61,92.1844 +28863,163.12,91.1157 +28864,161.65,90.083239 +28865,164.77,93.3634 +28866,163.26,92.2184 +28867,161.78,91.1141 +28868,160.33,90.046931 +28869,163.4,93.433 +28870,161.9,92.2521 +28871,160.44,91.1128 +28872,159,90.01138 +28873,162.03,93.5016 +28874,160.55,92.2855 +28875,159.1,91.1117 +28876,157.68,89.976613 +28877,160.66,93.5694 +28878,159.2,92.3185 +28879,157.76,91.1109 +28880,156.35,89.942654 +28881,159.3,93.6362 +28882,157.84,92.3511 +28883,156.42,91.1103 +28884,155.03,89.909529 +28885,157.92,93.702 +28886,156.49,92.3835 +28887,155.08,91.11 +28888,153.71,89.87726 +28889,156.55,93.7668 +28890,155.13,92.4154 +28891,153.75,91.11 +28892,152.39,89.84588 +28893,155.18,93.8306 +28894,153.78,92.447 +28895,152.41,91.1102 +28896,151.07,89.8154 +28897,153.8,93.8933 +28898,152.42,92.4782 +28899,151.07,91.1107 +28900,149.75,89.78585 +28901,152.43,93.9549 +28902,151.06,92.5091 +28903,149.73,91.1115 +28904,148.43,89.75725 +28905,151.05,94.0155 +28906,149.71,92.5395 +28907,148.4,91.1126 +28908,147.12,89.72963 +28909,149.68,94.0749 +28910,148.35,92.5696 +28911,147.06,91.114 +28912,145.8,89.703 +28913,148.3,94.1331 +28914,146.99,92.5992 +28915,145.72,91.1158 +28916,144.49,89.6774 +28917,146.92,94.1901 +28918,145.63,92.6284 +28919,144.39,91.1178 +28920,143.17,89.65283 +28921,145.54,94.246 +28922,144.28,92.6572 +28923,143.05,91.1202 +28924,141.86,89.62931 +28925,144.15,94.3006 +28926,142.92,92.6855 +28927,141.72,91.1229 +28928,140.55,89.60688 +28929,142.77,94.354 +28930,141.56,92.7134 +28931,140.38,91.126 +28932,139.24,89.58555 +28933,141.39,94.406 +28934,140.2,92.7409 +28935,139.05,91.1294 +28936,137.93,89.56533 +28937,140,94.4568 +28938,138.84,92.7679 +28939,137.71,91.1332 +28940,136.62,89.54624 +28941,138.62,94.5063 +28942,137.48,92.7945 +28943,136.38,91.1373 +28944,135.31,89.52831 +28945,137.23,94.5545 +28946,136.12,92.8206 +28947,135.05,91.1418 +28948,134,89.51155 +28949,135.84,94.6013 +28950,134.76,92.8462 +28951,133.71,91.1466 +28952,132.7,89.49598 +28953,134.45,94.6467 +28954,133.4,92.8714 +28955,132.38,91.1519 +28956,131.39,89.4816 +28957,133.07,94.6908 +28958,132.04,92.896 +28959,131.04,91.1575 +28960,130.09,89.46844 +28961,131.68,94.7334 +28962,130.67,92.9202 +28963,129.71,91.1635 +28964,128.78,89.45652 +28965,130.28,94.7747 +28966,129.31,92.9439 +28967,128.38,91.1699 +28968,127.48,89.44584 +28969,128.89,94.8145 +28970,127.95,92.9671 +28971,127.05,91.1767 +28972,126.17,89.43642 +28973,127.5,94.8528 +28974,126.59,92.9898 +28975,125.71,91.1839 +28976,124.87,89.42827 +28977,126.11,94.8897 +28978,125.23,93.012 +28979,124.38,91.1915 +28980,123.57,89.42141 +28981,124.71,94.9252 +28982,123.86,93.0336 +28983,123.05,91.1995 +28984,122.27,89.41584 +28985,123.32,94.9591 +28986,122.5,93.0548 +28987,121.72,91.208 +28988,120.97,89.41158 +28989,121.92,94.9916 +28990,121.14,93.0754 +28991,120.39,91.2168 +28992,119.67,89.40864 +28993,120.53,95.0225 +28994,119.77,93.0955 +28995,119.05,91.2261 +28996,118.37,89.40703 +28997,119.13,95.0519 +28998,118.41,93.1151 +28999,117.72,91.2358 +29000,117.07,89.40675 +29001,117.74,95.0799 +29002,117.05,93.1342 +29003,116.39,91.2459 +29004,115.77,89.40781 +29005,116.34,95.1063 +29006,115.68,93.1527 +29007,115.06,91.2564 +29008,114.47,89.41023 +29009,114.94,95.1311 +29010,114.32,93.1708 +29011,113.73,91.2674 +29012,113.17,89.414 +29013,113.54,95.1544 +29014,112.95,93.1882 +29015,112.4,91.2788 +29016,111.87,89.41914 +29017,112.14,95.1762 +29018,111.59,93.2052 +29019,111.07,91.2906 +29020,110.58,89.42566 +29021,110.74,95.1964 +29022,110.22,93.2216 +29023,109.74,91.3029 +29024,109.28,89.43354 +29025,109.34,95.2151 +29026,108.86,93.2374 +29027,108.41,91.3156 +29028,107.98,89.44281 +29029,107.94,95.2322 +29030,107.49,93.2527 +29031,107.07,91.3287 +29032,106.69,89.45346 +29033,106.54,95.2478 +29034,106.13,93.2675 +29035,105.74,91.3423 +29036,105.39,89.4655 +29037,105.14,95.2618 +29038,104.76,93.2818 +29039,104.41,91.3563 +29040,104.09,89.47893 +29041,103.74,95.2742 +29042,103.4,93.2955 +29043,103.08,91.3707 +29044,102.8,89.49374 +29045,102.34,95.2851 +29046,102.03,93.3086 +29047,101.75,91.3856 +29048,101.5,89.50995 +29049,100.94,95.2944 +29050,100.67,93.3212 +29051,100.42,91.4009 +29052,100.21,89.52755 +29053,99.537,95.3022 +29054,99.299,93.3333 +29055,99.092,91.4167 +29056,98.91,89.54654 +29057,98.135,95.3084 +29058,97.934,93.3448 +29059,97.761,91.4329 +29060,97.615,89.56691 +29061,96.733,95.3131 +29062,96.568,93.3558 +29063,96.431,91.4495 +29064,96.319,89.58868 +29065,95.331,95.3162 +29066,95.202,93.3663 +29067,95.1,91.4666 +29068,95.024,89.61183 +29069,93.929,95.3178 +29070,93.836,93.3762 +29071,93.77,91.4841 +29072,93.728,89.63635 +29073,92.527,95.3179 +29074,92.47,93.3856 +29075,92.44,91.5021 +29076,92.433,89.66226 +29077,91.125,95.3164 +29078,91.104,93.3944 +29079,91.109,91.5204 +29080,91.137,89.68954 +29081,89.723,95.3135 +29082,89.738,93.4028 +29083,89.778,91.5392 +29084,89.842,89.71818 +29085,88.321,95.309 +29086,88.372,93.4105 +29087,88.448,91.5584 +29088,88.546,89.74819 +29089,86.918,95.303 +29090,87.006,93.4178 +29091,87.117,91.5781 +29092,87.25,89.77954 +29093,85.516,95.2956 +29094,85.64,93.4246 +29095,85.786,91.5981 +29096,85.954,89.81225 +29097,84.115,95.2867 +29098,84.274,93.4308 +29099,84.455,91.6186 +29100,84.658,89.84629 +29101,82.713,95.2763 +29102,82.908,93.4365 +29103,83.124,91.6395 +29104,83.361,89.88166 +29105,81.312,95.2645 +29106,81.542,93.4417 +29107,81.793,91.6608 +29108,82.065,89.918343 +29109,79.91,95.2512 +29110,80.176,93.4464 +29111,80.462,91.6825 +29112,80.768,89.956339 +29113,78.509,95.2366 +29114,78.81,93.4506 +29115,79.131,91.7046 +29116,79.47,89.9956311 +29117,77.109,95.2205 +29118,77.444,93.4543 +29119,77.799,91.7271 +29120,78.173,90.036209 +29121,75.708,95.203 +29122,76.078,93.4574 +29123,76.468,91.75 +29124,76.875,90.07806 +29125,74.308,95.1842 +29126,74.713,93.4601 +29127,75.136,91.7733 +29128,75.576,90.12117 +29129,72.909,95.164 +29130,73.347,93.4624 +29131,73.804,91.797 +29132,74.277,90.16553 +29133,71.509,95.1425 +29134,71.982,93.4641 +29135,72.472,91.8211 +29136,72.978,90.21112 +29137,70.111,95.1196 +29138,70.617,93.4654 +29139,71.14,91.8455 +29140,71.678,90.25792 +29141,68.712,95.0955 +29142,69.252,93.4662 +29143,69.807,91.8703 +29144,70.378,90.30593 +29145,67.314,95.07 +29146,67.887,93.4665 +29147,68.475,91.8954 +29148,69.077,90.35512 +29149,65.917,95.0433 +29150,66.522,93.4664 +29151,67.142,91.9209 +29152,67.776,90.40548 +29153,64.52,95.0154 +29154,65.157,93.4658 +29155,65.809,91.9468 +29156,66.474,90.45699 +29157,63.124,94.9863 +29158,63.793,93.4648 +29159,64.476,91.973 +29160,65.172,90.50964 +29161,61.728,94.9559 +29162,62.428,93.4634 +29163,63.142,91.9995 +29164,63.869,90.56339 +29165,60.333,94.9244 +29166,61.064,93.4615 +29167,61.809,92.0264 +29168,62.565,90.61824 +29169,58.939,94.8918 +29170,59.7,93.4592 +29171,60.475,92.0536 +29172,61.261,90.67417 +29173,57.545,94.858 +29174,58.336,93.4565 +29175,59.14,92.0811 +29176,59.955,90.73115 +29177,56.152,94.8231 +29178,56.973,93.4534 +29179,57.806,92.1089 +29180,58.65,90.78916 +29181,54.759,94.7872 +29182,55.61,93.4499 +29183,56.471,92.137 +29184,57.343,90.84818 +29185,53.368,94.7502 +29186,54.246,93.446 +29187,55.136,92.1654 +29188,56.036,90.90819 +29189,51.977,94.7121 +29190,52.884,93.4417 +29191,53.801,92.1941 +29192,54.728,90.96917 +29193,50.587,94.6731 +29194,51.521,93.437 +29195,52.465,92.223 +29196,53.419,91.0311 +29197,49.197,94.6331 +29198,50.158,93.432 +29199,51.129,92.2522 +29200,52.11,91.0939 +29201,47.809,94.5922 +29202,48.796,93.4266 +29203,49.793,92.2817 +29204,50.799,91.1577 +29205,46.421,94.5503 +29206,47.434,93.4209 +29207,48.457,92.3115 +29208,49.488,91.2223 +29209,45.034,94.5075 +29210,46.073,93.4148 +29211,47.12,92.3414 +29212,48.176,91.2877 +29213,43.648,94.4639 +29214,44.711,93.4084 +29215,45.783,92.3716 +29216,46.862,91.354 +29217,42.263,94.4195 +29218,43.35,93.4017 +29219,44.446,92.4021 +29220,45.548,91.421 +29221,40.879,94.3743 +29222,41.989,93.3947 +29223,43.108,92.4327 +29224,44.234,91.4889 +29225,39.496,94.3282 +29226,40.629,93.3874 +29227,41.77,92.4636 +29228,42.918,91.5574 +29229,38.114,94.2815 +29230,39.269,93.3798 +29231,40.431,92.4946 +29232,41.601,91.6267 +29233,36.732,94.234 +29234,37.909,93.3719 +29235,39.092,92.5258 +29236,40.283,91.6966 +29237,35.352,94.1859 +29238,36.549,93.3637 +29239,37.753,92.5572 +29240,38.964,91.7672 +29241,33.973,94.137 +29242,35.19,93.3552 +29243,36.414,92.5888 +29244,37.644,91.8385 +29245,32.595,94.0876 +29246,33.831,93.3466 +29247,35.074,92.6205 +29248,36.324,91.9103 +29249,31.218,94.0376 +29250,32.472,93.3376 +29251,33.734,92.6524 +29252,35.002,91.9827 +29253,29.841,93.987 +29254,31.114,93.3285 +29255,32.393,92.6844 +29256,33.679,92.0556 +29257,28.466,93.9359 +29258,29.756,93.3191 +29259,31.052,92.7165 +29260,32.355,92.129 +29261,27.092,93.8843 +29262,28.398,93.3095 +29263,29.711,92.7488 +29264,31.03,92.2029 +29265,25.719,93.8322 +29266,27.04,93.2997 +29267,28.369,92.7811 +29268,29.703,92.2773 +29269,24.348,93.7797 +29270,25.683,93.2897 +29271,27.027,92.8136 +29272,28.376,92.352 +29273,22.977,93.7269 +29274,24.327,93.2796 +29275,25.684,92.8461 +29276,27.048,92.4271 +29277,21.607,93.6736 +29278,22.97,93.2692 +29279,24.341,92.8787 +29280,25.718,92.5026 +29281,20.239,93.62 +29282,21.615,93.2587 +29283,22.998,92.9113 +29284,24.387,92.5784 +29285,18.871,93.5661 +29286,20.259,93.2481 +29287,21.654,92.944 +29288,23.056,92.6545 +29289,17.505,93.5119 +29290,18.904,93.2373 +29291,20.31,92.9768 +29292,21.723,92.7308 +29293,16.14,93.4575 +29294,17.549,93.2264 +29295,18.965,93.0095 +29296,20.389,92.8074 +29297,14.776,93.4029 +29298,16.194,93.2154 +29299,17.62,93.0423 +29300,19.053,92.8841 +29301,13.414,93.3481 +29302,14.84,93.2043 +29303,16.275,93.0751 +29304,17.717,92.961 +29305,12.052,93.2932 +29306,13.486,93.1931 +29307,14.929,93.1079 +29308,16.379,93.038 +29309,10.692,93.2382 +29310,12.133,93.1818 +29311,13.583,93.1406 +29312,15.04,93.1151 +29313,9.3326,93.1831 +29314,10.78,93.1705 +29315,12.236,93.1733 +29316,13.7,93.1922 +29317,7.9746,93.1279 +29318,9.4274,93.1591 +29319,10.889,93.206 +29320,12.359,93.2693 +29321,6.6178,93.0728 +29322,8.0751,93.1476 +29323,9.5417,93.2387 +29324,11.016,93.3465 +29325,5.2622,93.0176 +29326,6.7232,93.1361 +29327,8.1938,93.2712 +29328,9.6725,93.4235 +29329,3.9078,92.9626 +29330,5.3717,93.1246 +29331,6.8454,93.3037 +29332,8.3275,93.5005 +29333,2.5545,92.9076 +29334,4.0206,93.1131 +29335,5.4966,93.3361 +29336,6.9814,93.5774 +29337,1.2025,92.8527 +29338,2.6699,93.1015 +29339,4.1474,93.3684 +29340,5.634,93.6541 +29341,359.85,92.798 +29342,1.3195,93.09 +29343,2.7978,93.4006 +29344,4.2854,93.7306 +29345,358.5,92.7435 +29346,359.97,93.0785 +29347,1.4477,93.4327 +29348,2.9356,93.8069 +29349,357.15,92.6892 +29350,358.62,93.067 +29351,0.097236,93.4647 +29352,1.5846,93.8829 +29353,355.81,92.6352 +29354,357.27,93.0556 +29355,358.75,93.4965 +29356,0.23228,93.9586 +29357,354.46,92.5814 +29358,355.92,93.0442 +29359,357.39,93.5281 +29360,358.88,94.034 +29361,353.12,92.528 +29362,354.57,93.0329 +29363,356.04,93.5596 +29364,357.52,94.1091 +29365,351.77,92.4749 +29366,353.23,93.0216 +29367,354.69,93.5909 +29368,356.17,94.1837 +29369,350.43,92.4221 +29370,351.88,93.0104 +29371,353.34,93.622 +29372,354.81,94.258 +29373,349.09,92.3698 +29374,350.53,92.9993 +29375,351.99,93.653 +29376,353.45,94.3317 +29377,347.75,92.3179 +29378,349.18,92.9884 +29379,350.63,93.6837 +29380,352.09,94.405 +29381,346.41,92.2665 +29382,347.84,92.9775 +29383,349.28,93.7142 +29384,350.73,94.4777 +29385,345.07,92.2156 +29386,346.49,92.9668 +29387,347.92,93.7444 +29388,349.37,94.5499 +29389,343.73,92.1652 +29390,345.14,92.9562 +29391,346.57,93.7744 +29392,348.01,94.6214 +29393,342.4,92.1153 +29394,343.8,92.9457 +29395,345.21,93.8042 +29396,346.64,94.6923 +29397,341.06,92.0661 +29398,342.45,92.9354 +29399,343.86,93.8337 +29400,345.28,94.7626 +29401,339.73,92.0174 +29402,341.11,92.9253 +29403,342.5,93.8629 +29404,343.91,94.8322 +29405,338.4,91.9694 +29406,339.76,92.9153 +29407,341.15,93.8919 +29408,342.54,94.901 +29409,337.07,91.9221 +29410,338.42,92.9055 +29411,339.79,93.9205 +29412,341.17,94.9691 +29413,335.74,91.8755 +29414,337.08,92.896 +29415,338.43,93.9488 +29416,339.8,95.0364 +29417,334.41,91.8296 +29418,335.73,92.8866 +29419,337.08,93.9769 +29420,338.43,95.1028 +29421,333.08,91.7844 +29422,334.39,92.8774 +29423,335.72,94.0046 +29424,337.06,95.1684 +29425,331.75,91.7401 +29426,333.05,92.8685 +29427,334.36,94.0319 +29428,335.69,95.2332 +29429,330.43,91.6965 +29430,331.71,92.8598 +29431,333,94.059 +29432,334.31,95.297 +29433,329.1,91.6538 +29434,330.36,92.8513 +29435,331.64,94.0856 +29436,332.94,95.3598 +29437,327.78,91.6119 +29438,329.02,92.8431 +29439,330.28,94.1119 +29440,331.56,95.4217 +29441,326.45,91.5709 +29442,327.68,92.8351 +29443,328.92,94.1379 +29444,330.18,95.4826 +29445,325.13,91.5308 +29446,326.34,92.8274 +29447,327.56,94.1634 +29448,328.8,95.5424 +29449,323.81,91.4916 +29450,325,92.82 +29451,326.2,94.1886 +29452,327.42,95.6012 +29453,322.49,91.4534 +29454,323.66,92.8128 +29455,324.84,94.2133 +29456,326.04,95.6589 +29457,321.17,91.4162 +29458,322.32,92.806 +29459,323.48,94.2377 +29460,324.66,95.7155 +29461,319.85,91.3799 +29462,320.98,92.7994 +29463,322.12,94.2616 +29464,323.28,95.771 +29465,318.54,91.3447 +29466,319.64,92.7932 +29467,320.76,94.2852 +29468,321.89,95.8253 +29469,317.22,91.3106 +29470,318.3,92.7872 +29471,319.39,94.3082 +29472,320.51,95.8783 +29473,315.91,91.2774 +29474,316.96,92.7816 +29475,318.03,94.3309 +29476,319.12,95.9302 +29477,314.59,91.2454 +29478,315.62,92.7763 +29479,316.67,94.3531 +29480,317.74,95.9808 +29481,313.28,91.2145 +29482,314.28,92.7714 +29483,315.31,94.3748 +29484,316.35,96.0302 +29485,311.96,91.1847 +29486,312.94,92.7668 +29487,313.94,94.3961 +29488,314.96,96.0783 +29489,310.65,91.156 +29490,311.61,92.7625 +29491,312.58,94.4169 +29492,313.57,96.1251 +29493,309.34,91.1285 +29494,310.27,92.7586 +29495,311.22,94.4373 +29496,312.18,96.1705 +29497,308.03,91.1022 +29498,308.93,92.755 +29499,309.85,94.4571 +29500,310.79,96.2146 +29501,306.72,91.0771 +29502,307.59,92.7518 +29503,308.49,94.4765 +29504,309.4,96.2573 +29505,305.41,91.0531 +29506,306.26,92.749 +29507,307.12,94.4954 +29508,308.01,96.2986 +29509,304.1,91.0304 +29510,304.92,92.7466 +29511,305.76,94.5137 +29512,306.62,96.3385 +29513,302.79,91.009 +29514,303.58,92.7445 +29515,304.39,94.5316 +29516,305.22,96.377 +29517,301.48,90.98877 +29518,302.25,92.7428 +29519,303.03,94.549 +29520,303.83,96.4141 +29521,300.18,90.96983 +29522,300.91,92.7416 +29523,301.66,94.5658 +29524,302.43,96.4497 +29525,298.87,90.95218 +29526,299.57,92.7407 +29527,300.3,94.5821 +29528,301.04,96.4838 +29529,297.56,90.93582 +29530,298.24,92.7402 +29531,298.93,94.5979 +29532,299.64,96.5164 +29533,296.26,90.92077 +29534,296.9,92.7401 +29535,297.56,94.6132 +29536,298.24,96.5475 +29537,294.95,90.90703 +29538,295.57,92.7404 +29539,296.2,94.6279 +29540,296.85,96.5771 +29541,293.65,90.89463 +29542,294.23,92.7412 +29543,294.83,94.6421 +29544,295.45,96.6051 +29545,292.34,90.88356 +29546,292.9,92.7423 +29547,293.46,94.6558 +29548,294.05,96.6316 +29549,291.04,90.87384 +29550,291.56,92.7439 +29551,292.1,94.6689 +29552,292.65,96.6566 +29553,289.74,90.86548 +29554,290.22,92.7459 +29555,290.73,94.6814 +29556,291.25,96.68 +29557,288.43,90.85848 +29558,288.89,92.7483 +29559,289.36,94.6934 +29560,289.85,96.7018 +29561,287.13,90.85285 +29562,287.55,92.7512 +29563,287.99,94.7049 +29564,288.45,96.722 +29565,285.83,90.84861 +29566,286.22,92.7544 +29567,286.63,94.7158 +29568,287.05,96.7407 +29569,284.53,90.84574 +29570,284.89,92.7581 +29571,285.26,94.7261 +29572,285.65,96.7577 +29573,283.22,90.84427 +29574,283.55,92.7623 +29575,283.89,94.7359 +29576,284.25,96.7732 +29577,281.92,90.84419 +29578,282.22,92.7668 +29579,282.52,94.7451 +29580,282.85,96.787 +29581,280.62,90.84551 +29582,280.88,92.7718 +29583,281.16,94.7537 +29584,281.45,96.7992 +29585,279.32,90.84823 +29586,279.55,92.7773 +29587,279.79,94.7618 +29588,280.04,96.8098 +29589,278.02,90.85235 +29590,278.21,92.7832 +29591,278.42,94.7693 +29592,278.64,96.8188 +29593,276.72,90.85788 +29594,276.88,92.7895 +29595,277.05,94.7763 +29596,277.24,96.8262 +29597,275.42,90.86481 +29598,275.54,92.7962 +29599,275.68,94.7827 +29600,275.84,96.832 +29601,274.12,90.87315 +29602,274.21,92.8034 +29603,274.31,94.7885 +29604,274.43,96.8361 +29605,272.82,90.8829 +29606,272.87,92.8111 +29607,272.95,94.7937 +29608,273.03,96.8387 +29609,271.52,90.89406 +29610,271.54,92.8191 +29611,271.58,94.7984 +29612,271.63,96.8396 +29613,270.21,90.90662 +29614,270.21,92.8276 +29615,270.21,94.8025 +29616,270.23,96.8389 +29617,268.91,90.92058 +29618,268.87,92.8366 +29619,268.84,94.8061 +29620,268.82,96.8366 +29621,267.61,90.93593 +29622,267.54,92.8459 +29623,267.47,94.8091 +29624,267.42,96.8327 +29625,266.31,90.95269 +29626,266.2,92.8557 +29627,266.1,94.8115 +29628,266.02,96.8272 +29629,265.01,90.97083 +29630,264.87,92.866 +29631,264.74,94.8134 +29632,264.62,96.8201 +29633,263.71,90.99035 +29634,263.53,92.8766 +29635,263.37,94.8147 +29636,263.21,96.8114 +29637,262.41,91.0113 +29638,262.2,92.8877 +29639,262,94.8155 +29640,261.81,96.8012 +29641,261.11,91.0335 +29642,260.86,92.8992 +29643,260.63,94.8157 +29644,260.41,96.7894 +29645,259.8,91.0572 +29646,259.53,92.9112 +29647,259.26,94.8153 +29648,259.01,96.776 +29649,258.5,91.0822 +29650,258.19,92.9235 +29651,257.89,94.8145 +29652,257.61,96.7611 +29653,257.2,91.1085 +29654,256.86,92.9363 +29655,256.53,94.813 +29656,256.2,96.7446 +29657,255.9,91.1362 +29658,255.52,92.9495 +29659,255.16,94.8111 +29660,254.8,96.7267 +29661,254.59,91.1652 +29662,254.19,92.9631 +29663,253.79,94.8086 +29664,253.4,96.7072 +29665,253.29,91.1956 +29666,252.85,92.9771 +29667,252.42,94.8055 +29668,252,96.6862 +29669,251.99,91.2272 +29670,251.52,92.9915 +29671,251.06,94.802 +29672,250.6,96.6638 +29673,250.68,91.2601 +29674,250.18,93.0063 +29675,249.69,94.7979 +29676,249.2,96.6399 +29677,249.38,91.2943 +29678,248.85,93.0215 +29679,248.32,94.7933 +29680,247.8,96.6145 +29681,248.07,91.3298 +29682,247.51,93.037 +29683,246.95,94.7881 +29684,246.4,96.5877 +29685,246.77,91.3666 +29686,246.17,93.053 +29687,245.59,94.7825 +29688,245.01,96.5595 +29689,245.46,91.4045 +29690,244.84,93.0693 +29691,244.22,94.7764 +29692,243.61,96.5299 +29693,244.15,91.4437 +29694,243.5,93.086 +29695,242.85,94.7698 +29696,242.21,96.4989 +29697,242.85,91.4842 +29698,242.16,93.1031 +29699,241.49,94.7627 +29700,240.81,96.4666 +29701,241.54,91.5258 +29702,240.83,93.1205 +29703,240.12,94.7551 +29704,239.42,96.4329 +29705,240.23,91.5685 +29706,239.49,93.1383 +29707,238.75,94.747 +29708,238.02,96.3979 +29709,238.92,91.6125 +29710,238.15,93.1564 +29711,237.39,94.7385 +29712,236.63,96.3617 +29713,237.61,91.6575 +29714,236.81,93.1749 +29715,236.02,94.7295 +29716,235.23,96.3241 +29717,236.3,91.7037 +29718,235.48,93.1937 +29719,234.66,94.72 +29720,233.84,96.2853 +29721,234.99,91.751 +29722,234.14,93.2128 +29723,233.29,94.7101 +29724,232.45,96.2453 +29725,233.68,91.7994 +29726,232.8,93.2323 +29727,231.93,94.6997 +29728,231.05,96.2041 +29729,232.37,91.8488 +29730,231.46,93.252 +29731,230.56,94.689 +29732,229.66,96.1617 +29733,231.05,91.8993 +29734,230.12,93.2721 +29735,229.2,94.6778 +29736,228.27,96.1182 +29737,229.74,91.9508 +29738,228.78,93.2925 +29739,227.83,94.6661 +29740,226.88,96.0735 +29741,228.42,92.0032 +29742,227.44,93.3131 +29743,226.47,94.6541 +29744,225.49,96.0277 +29745,227.11,92.0567 +29746,226.1,93.334 +29747,225.1,94.6416 +29748,224.1,95.9809 +29749,225.79,92.1111 +29750,224.76,93.3552 +29751,223.74,94.6288 +29752,222.72,95.933 +29753,224.47,92.1664 +29754,223.42,93.3767 +29755,222.38,94.6156 +29756,221.33,95.8841 +29757,223.16,92.2226 +29758,222.08,93.3985 +29759,221.01,94.602 +29760,219.94,95.8342 +29761,221.84,92.2797 +29762,220.74,93.4204 +29763,219.65,94.5881 +29764,218.56,95.7834 +29765,220.52,92.3376 +29766,219.4,93.4426 +29767,218.29,94.5737 +29768,217.18,95.7316 +29769,219.2,92.3964 +29770,218.06,93.4651 +29771,216.93,94.5591 +29772,215.79,95.679 +29773,217.87,92.4559 +29774,216.72,93.4878 +29775,215.56,94.5441 +29776,214.41,95.6254 +29777,216.55,92.5163 +29778,215.38,93.5106 +29779,214.2,94.5288 +29780,213.03,95.571 +29781,215.23,92.5773 +29782,214.03,93.5337 +29783,212.84,94.5131 +29784,211.65,95.5158 +29785,213.9,92.6391 +29786,212.69,93.557 +29787,211.48,94.4972 +29788,210.27,95.4599 +29789,212.58,92.7016 +29790,211.35,93.5804 +29791,210.12,94.4809 +29792,208.89,95.4032 +29793,211.25,92.7647 +29794,210,93.604 +29795,208.76,94.4644 +29796,207.52,95.3457 +29797,209.92,92.8284 +29798,208.66,93.6278 +29799,207.4,94.4476 +29800,206.14,95.2876 +29801,208.59,92.8928 +29802,207.32,93.6518 +29803,206.04,94.4305 +29804,204.77,95.2289 +29805,207.26,92.9577 +29806,205.97,93.6758 +29807,204.68,94.4131 +29808,203.39,95.1695 +29809,205.93,93.0231 +29810,204.63,93.7001 +29811,203.32,94.3956 +29812,202.02,95.1095 +29813,204.6,93.0891 +29814,203.28,93.7244 +29815,201.96,94.3777 +29816,200.65,95.049 +29817,203.26,93.1556 +29818,201.94,93.7488 +29819,200.61,94.3597 +29820,199.28,94.9879 +29821,201.93,93.2224 +29822,200.59,93.7734 +29823,199.25,94.3414 +29824,197.91,94.9264 +29825,200.59,93.2897 +29826,199.24,93.798 +29827,197.89,94.323 +29828,196.54,94.8644 +29829,199.26,93.3574 +29830,197.9,93.8227 +29831,196.53,94.3043 +29832,195.17,94.802 +29833,197.92,93.4255 +29834,196.55,93.8475 +29835,195.18,94.2855 +29836,193.81,94.7392 +29837,196.58,93.4938 +29838,195.2,93.8723 +29839,193.82,94.2665 +29840,192.44,94.676 +29841,195.24,93.5625 +29842,193.85,93.8972 +29843,192.46,94.2473 +29844,191.08,94.6126 +29845,193.9,93.6314 +29846,192.5,93.9221 +29847,191.11,94.228 +29848,189.72,94.5488 +29849,192.56,93.7005 +29850,191.16,93.947 +29851,189.75,94.2086 +29852,188.35,94.4848 +29853,191.21,93.7698 +29854,189.81,93.972 +29855,188.4,94.189 +29856,186.99,94.4206 +29857,189.87,93.8393 +29858,188.46,93.9969 +29859,187.05,94.1693 +29860,185.64,94.3561 +29861,188.52,93.9089 +29862,187.11,94.0219 +29863,185.69,94.1495 +29864,184.28,94.2916 +29865,187.18,93.9785 +29866,185.76,94.0468 +29867,184.34,94.1296 +29868,182.92,94.2269 +29869,185.83,94.0483 +29870,184.41,94.0717 +29871,182.98,94.1097 +29872,181.57,94.1621 +29873,184.48,94.118 +29874,183.05,94.0965 +29875,181.63,94.0896 +29876,180.21,94.0973 +29877,183.13,94.1878 +29878,181.7,94.1213 +29879,180.28,94.0695 +29880,178.86,94.0325 +29881,181.78,94.2575 +29882,180.35,94.146 +29883,178.93,94.0494 +29884,177.51,93.9676 +29885,180.42,94.3271 +29886,179,94.1706 +29887,177.58,94.0292 +29888,176.16,93.9029 +29889,179.07,94.3966 +29890,177.65,94.1952 +29891,176.22,94.0091 +29892,174.81,93.8382 +29893,177.71,94.4659 +29894,176.29,94.2196 +29895,174.87,93.9889 +29896,173.46,93.7736 +29897,176.36,94.5351 +29898,174.94,94.2439 +29899,173.52,93.9686 +29900,172.11,93.7092 +29901,175,94.604 +29902,173.59,94.2681 +29903,172.17,93.9485 +29904,170.76,93.645 +29905,173.64,94.6727 +29906,172.23,94.2922 +29907,170.82,93.9283 +29908,169.42,93.5809 +29909,172.28,94.7411 +29910,170.88,94.3161 +29911,169.47,93.9081 +29912,168.07,93.5172 +29913,170.92,94.8092 +29914,169.52,94.3399 +29915,168.12,93.8881 +29916,166.73,93.4537 +29917,169.56,94.8769 +29918,168.17,94.3635 +29919,166.78,93.868 +29920,165.39,93.3905 +29921,168.19,94.9443 +29922,166.81,94.3869 +29923,165.43,93.848 +29924,164.05,93.3277 +29925,166.83,95.0112 +29926,165.45,94.4101 +29927,164.08,93.8281 +29928,162.71,93.2652 +29929,165.46,95.0777 +29930,164.1,94.4331 +29931,162.73,93.8083 +29932,161.37,93.2032 +29933,164.1,95.1436 +29934,162.74,94.4559 +29935,161.39,93.7886 +29936,160.04,93.1416 +29937,162.73,95.2091 +29938,161.38,94.4785 +29939,160.04,93.769 +29940,158.7,93.0804 +29941,161.36,95.274 +29942,160.02,94.5008 +29943,158.69,93.7495 +29944,157.37,93.0198 +29945,159.99,95.3383 +29946,158.67,94.5229 +29947,157.35,93.7302 +29948,156.03,92.9597 +29949,158.62,95.402 +29950,157.31,94.5447 +29951,156,93.711 +29952,154.7,92.9002 +29953,157.24,95.465 +29954,155.95,94.5663 +29955,154.66,93.6919 +29956,153.37,92.8412 +29957,155.87,95.5273 +29958,154.59,94.5876 +29959,153.31,93.673 +29960,152.04,92.7829 +29961,154.5,95.589 +29962,153.23,94.6086 +29963,151.97,93.6543 +29964,150.71,92.7252 +29965,153.12,95.6498 +29966,151.87,94.6293 +29967,150.62,93.6357 +29968,149.38,92.6682 +29969,151.74,95.7099 +29970,150.51,94.6497 +29971,149.28,93.6174 +29972,148.05,92.612 +29973,150.36,95.7692 +29974,149.15,94.6698 +29975,147.94,93.5992 +29976,146.73,92.5564 +29977,148.99,95.8276 +29978,147.79,94.6895 +29979,146.59,93.5812 +29980,145.4,92.5016 +29981,147.61,95.8851 +29982,146.43,94.7089 +29983,145.25,93.5635 +29984,144.08,92.4476 +29985,146.23,95.9418 +29986,145.06,94.7279 +29987,143.91,93.546 +29988,142.75,92.3944 +29989,144.84,95.9975 +29990,143.7,94.7466 +29991,142.56,93.5287 +29992,141.43,92.342 +29993,143.46,96.0522 +29994,142.34,94.765 +29995,141.22,93.5117 +29996,140.11,92.2906 +29997,142.08,96.1059 +29998,140.98,94.7829 +29999,139.88,93.4949 +30000,138.79,92.24 +30001,140.69,96.1587 +30002,139.61,94.8005 +30003,138.54,93.4784 +30004,137.47,92.1903 +30005,139.31,96.2103 +30006,138.25,94.8177 +30007,137.2,93.4622 +30008,136.15,92.1415 +30009,137.92,96.2609 +30010,136.89,94.8344 +30011,135.86,93.4462 +30012,134.83,92.0938 +30013,136.53,96.3104 +30014,135.52,94.8508 +30015,134.52,93.4306 +30016,133.52,92.047 +30017,135.14,96.3587 +30018,134.16,94.8667 +30019,133.18,93.4152 +30020,132.2,92.0012 +30021,133.76,96.4059 +30022,132.79,94.8822 +30023,131.84,93.4001 +30024,130.88,91.9564 +30025,132.37,96.4519 +30026,131.43,94.8973 +30027,130.5,93.3854 +30028,129.57,91.9128 +30029,130.98,96.4966 +30030,130.06,94.9119 +30031,129.16,93.3709 +30032,128.26,91.8701 +30033,129.58,96.5402 +30034,128.7,94.9261 +30035,127.82,93.3568 +30036,126.94,91.8286 +30037,128.19,96.5825 +30038,127.33,94.9398 +30039,126.48,93.343 +30040,125.63,91.7882 +30041,126.8,96.6235 +30042,125.97,94.953 +30043,125.14,93.3296 +30044,124.32,91.7489 +30045,125.41,96.6632 +30046,124.6,94.9658 +30047,123.8,93.3165 +30048,123.01,91.7108 +30049,124.01,96.7015 +30050,123.24,94.9781 +30051,122.47,93.3037 +30052,121.7,91.6738 +30053,122.62,96.7385 +30054,121.87,94.9899 +30055,121.13,93.2913 +30056,120.39,91.638 +30057,121.22,96.7742 +30058,120.5,95.0012 +30059,119.79,93.2793 +30060,119.08,91.6035 +30061,119.82,96.8085 +30062,119.14,95.012 +30063,118.45,93.2677 +30064,117.77,91.5701 +30065,118.43,96.8413 +30066,117.77,95.0223 +30067,117.12,93.2564 +30068,116.46,91.538 +30069,117.03,96.8727 +30070,116.4,95.0321 +30071,115.78,93.2455 +30072,115.15,91.5071 +30073,115.63,96.9027 +30074,115.04,95.0414 +30075,114.44,93.235 +30076,113.85,91.4775 +30077,114.23,96.9312 +30078,113.67,95.0502 +30079,113.1,93.2248 +30080,112.54,91.4492 +30081,112.84,96.9583 +30082,112.3,95.0584 +30083,111.77,93.2151 +30084,111.23,91.4222 +30085,111.44,96.9838 +30086,110.93,95.0661 +30087,110.43,93.2058 +30088,109.93,91.3964 +30089,110.04,97.0079 +30090,109.57,95.0733 +30091,109.09,93.1969 +30092,108.62,91.372 +30093,108.64,97.0304 +30094,108.2,95.0799 +30095,107.76,93.1884 +30096,107.32,91.3489 +30097,107.24,97.0514 +30098,106.83,95.086 +30099,106.42,93.1803 +30100,106.02,91.3272 +30101,105.83,97.0708 +30102,105.46,95.0915 +30103,105.09,93.1726 +30104,104.71,91.3068 +30105,104.43,97.0887 +30106,104.09,95.0965 +30107,103.75,93.1653 +30108,103.41,91.2878 +30109,103.03,97.105 +30110,102.72,95.1009 +30111,102.41,93.1584 +30112,102.1,91.2701 +30113,101.63,97.1197 +30114,101.36,95.1048 +30115,101.08,93.152 +30116,100.8,91.2538 +30117,100.23,97.1328 +30118,99.987,95.1081 +30119,99.743,93.146 +30120,99.498,91.2388 +30121,98.826,97.1444 +30122,98.618,95.1109 +30123,98.408,93.1404 +30124,98.196,91.2253 +30125,97.424,97.1543 +30126,97.249,95.1131 +30127,97.072,93.1353 +30128,96.893,91.2131 +30129,96.022,97.1626 +30130,95.881,95.1147 +30131,95.737,93.1306 +30132,95.591,91.2024 +30133,94.619,97.1693 +30134,94.512,95.1157 +30135,94.402,93.1263 +30136,94.289,91.193 +30137,93.216,97.1744 +30138,93.143,95.1162 +30139,93.066,93.1225 +30140,92.986,91.1851 +30141,91.813,97.1779 +30142,91.774,95.1161 +30143,91.731,93.1191 +30144,91.684,91.1785 +30145,90.411,97.1797 +30146,90.405,95.1155 +30147,90.396,93.1161 +30148,90.383,91.1734 +30149,89.008,97.1799 +30150,89.036,95.1142 +30151,89.06,93.1136 +30152,89.081,91.1696 +30153,87.605,97.1785 +30154,87.667,95.1124 +30155,87.725,93.1115 +30156,87.779,91.1673 +30157,86.202,97.1754 +30158,86.299,95.1101 +30159,86.39,93.1098 +30160,86.477,91.1664 +30161,84.8,97.1707 +30162,84.93,95.1071 +30163,85.054,93.1086 +30164,85.175,91.1669 +30165,83.397,97.1644 +30166,83.561,95.1036 +30167,83.719,93.1078 +30168,83.872,91.1688 +30169,81.995,97.1564 +30170,82.192,95.0995 +30171,82.384,93.1075 +30172,82.57,91.1721 +30173,80.592,97.1469 +30174,80.824,95.0948 +30175,81.048,93.1076 +30176,81.268,91.1769 +30177,79.19,97.1357 +30178,79.455,95.0896 +30179,79.713,93.1081 +30180,79.965,91.183 +30181,77.788,97.1229 +30182,78.086,95.0838 +30183,78.377,93.1091 +30184,78.663,91.1905 +30185,76.387,97.1084 +30186,76.718,95.0775 +30187,77.042,93.1104 +30188,77.36,91.1994 +30189,74.985,97.0924 +30190,75.35,95.0705 +30191,75.706,93.1123 +30192,76.056,91.2097 +30193,73.584,97.0748 +30194,73.981,95.063 +30195,74.37,93.1145 +30196,74.753,91.2214 +30197,72.184,97.0556 +30198,72.613,95.055 +30199,73.035,93.1172 +30200,73.449,91.2344 +30201,70.783,97.0348 +30202,71.245,95.0464 +30203,71.699,93.1203 +30204,72.145,91.2488 +30205,69.383,97.0125 +30206,69.877,95.0373 +30207,70.363,93.1238 +30208,70.841,91.2646 +30209,67.984,96.9886 +30210,68.51,95.0276 +30211,69.026,93.1277 +30212,69.536,91.2817 +30213,66.585,96.9632 +30214,67.142,95.0173 +30215,67.69,93.132 +30216,68.231,91.3002 +30217,65.186,96.9362 +30218,65.775,95.0065 +30219,66.354,93.1368 +30220,66.925,91.3199 +30221,63.788,96.9077 +30222,64.407,94.9952 +30223,65.017,93.1419 +30224,65.619,91.341 +30225,62.39,96.8777 +30226,63.04,94.9834 +30227,63.68,93.1475 +30228,64.312,91.3634 +30229,60.993,96.8463 +30230,61.673,94.971 +30231,62.343,93.1535 +30232,63.005,91.3871 +30233,59.597,96.8133 +30234,60.307,94.9581 +30235,61.006,93.1598 +30236,61.697,91.4121 +30237,58.201,96.7789 +30238,58.94,94.9447 +30239,59.669,93.1665 +30240,60.389,91.4383 +30241,56.805,96.7431 +30242,57.574,94.9307 +30243,58.331,93.1736 +30244,59.081,91.4658 +30245,55.411,96.7058 +30246,56.208,94.9163 +30247,56.994,93.1811 +30248,57.771,91.4946 +30249,54.017,96.6671 +30250,54.842,94.9014 +30251,55.656,93.189 +30252,56.461,91.5245 +30253,52.624,96.6271 +30254,53.476,94.8859 +30255,54.318,93.1972 +30256,55.151,91.5557 +30257,51.231,96.5857 +30258,52.111,94.87 +30259,52.979,93.2058 +30260,53.839,91.588 +30261,49.839,96.543 +30262,50.745,94.8536 +30263,51.641,93.2148 +30264,52.527,91.6215 +30265,48.448,96.4989 +30266,49.381,94.8367 +30267,50.302,93.224 +30268,51.215,91.6562 +30269,47.058,96.4535 +30270,48.016,94.8194 +30271,48.963,93.2337 +30272,49.901,91.692 +30273,45.668,96.4069 +30274,46.651,94.8016 +30275,47.624,93.2436 +30276,48.587,91.7289 +30277,44.28,96.359 +30278,45.287,94.7833 +30279,46.284,93.2539 +30280,47.272,91.7669 +30281,42.892,96.3099 +30282,43.924,94.7646 +30283,44.945,93.2646 +30284,45.956,91.806 +30285,41.505,96.2596 +30286,42.56,94.7454 +30287,43.605,93.2755 +30288,44.64,91.8461 +30289,40.119,96.2082 +30290,41.197,94.7259 +30291,42.264,93.2867 +30292,43.323,91.8873 +30293,38.733,96.1555 +30294,39.834,94.7059 +30295,40.924,93.2983 +30296,42.004,91.9295 +30297,37.349,96.1018 +30298,38.471,94.6854 +30299,39.583,93.3101 +30300,40.685,91.9727 +30301,35.966,96.0469 +30302,37.109,94.6646 +30303,38.242,93.3222 +30304,39.365,92.0168 +30305,34.583,95.991 +30306,35.747,94.6434 +30307,36.9,93.3346 +30308,38.044,92.0619 +30309,33.202,95.9341 +30310,34.385,94.6218 +30311,35.559,93.3472 +30312,36.722,92.1079 +30313,31.822,95.8761 +30314,33.024,94.5998 +30315,34.216,93.3602 +30316,35.4,92.1548 +30317,30.442,95.8172 +30318,31.663,94.5775 +30319,32.874,93.3733 +30320,34.076,92.2026 +30321,29.064,95.7573 +30322,30.302,94.5547 +30323,31.531,93.3867 +30324,32.751,92.2512 +30325,27.686,95.6965 +30326,28.942,94.5317 +30327,30.188,93.4003 +30328,31.426,92.3006 +30329,26.31,95.6348 +30330,27.582,94.5083 +30331,28.845,93.4142 +30332,30.099,92.3509 +30333,24.935,95.5722 +30334,26.223,94.4845 +30335,27.501,93.4283 +30336,28.771,92.4018 +30337,23.561,95.5088 +30338,24.863,94.4605 +30339,26.157,93.4425 +30340,27.442,92.4536 +30341,22.187,95.4446 +30342,23.504,94.4361 +30343,24.813,93.457 +30344,26.113,92.506 +30345,20.815,95.3796 +30346,22.146,94.4114 +30347,23.468,93.4716 +30348,24.782,92.5591 +30349,19.444,95.3139 +30350,20.788,94.3864 +30351,22.123,93.4865 +30352,23.45,92.6129 +30353,18.075,95.2475 +30354,19.43,94.3612 +30355,20.778,93.5015 +30356,22.117,92.6673 +30357,16.706,95.1804 +30358,18.073,94.3357 +30359,19.432,93.5166 +30360,20.783,92.7223 +30361,15.338,95.1127 +30362,16.716,94.3099 +30363,18.086,93.5319 +30364,19.448,92.7779 +30365,13.972,95.0444 +30366,15.359,94.2839 +30367,16.739,93.5473 +30368,18.111,92.834 +30369,12.607,94.9755 +30370,14.003,94.2576 +30371,15.392,93.5629 +30372,16.774,92.8907 +30373,11.243,94.9061 +30374,12.647,94.2311 +30375,14.045,93.5785 +30376,15.435,92.9478 +30377,9.8798,94.8362 +30378,11.292,94.2044 +30379,12.698,93.5943 +30380,14.096,93.0053 +30381,8.5181,94.7658 +30382,9.937,94.1775 +30383,11.35,93.6102 +30384,12.755,93.0633 +30385,7.1575,94.6949 +30386,8.5825,94.1504 +30387,10.001,93.6261 +30388,11.413,93.1216 +30389,5.7981,94.6237 +30390,7.2283,94.1231 +30391,8.6526,93.6421 +30392,10.07,93.1804 +30393,4.4399,94.5521 +30394,5.8745,94.0956 +30395,7.3035,93.6582 +30396,8.7257,93.2394 +30397,3.0829,94.4801 +30398,4.5212,94.068 +30399,5.954,93.6743 +30400,7.3803,93.2987 +30401,1.7271,94.4079 +30402,3.1682,94.0402 +30403,4.6042,93.6905 +30404,6.0337,93.3583 +30405,0.37245,94.3353 +30406,1.8157,94.0123 +30407,3.2539,93.7067 +30408,4.6859,93.4181 +30409,359.02,94.2626 +30410,0.46353,93.9843 +30411,1.9033,93.7229 +30412,3.3369,93.4781 +30413,357.67,94.1897 +30414,359.11,93.9561 +30415,0.5523,93.7391 +30416,1.9868,93.5383 +30417,356.32,94.1166 +30418,357.76,93.9278 +30419,359.2,93.7553 +30420,0.6355,93.5986 +30421,354.97,94.0433 +30422,356.41,93.8995 +30423,357.85,93.7715 +30424,359.28,93.659 +30425,353.62,93.97 +30426,355.06,93.8711 +30427,356.5,93.7876 +30428,357.93,93.7194 +30429,352.27,93.8966 +30430,353.71,93.8426 +30431,355.14,93.8038 +30432,356.57,93.7799 +30433,350.92,93.8232 +30434,352.36,93.814 +30435,353.79,93.8198 +30436,355.22,93.8404 +30437,349.58,93.7498 +30438,351.01,93.7854 +30439,352.44,93.8358 +30440,353.86,93.9009 +30441,348.23,93.6764 +30442,349.66,93.7567 +30443,351.08,93.8518 +30444,352.5,93.9612 +30445,346.89,93.6032 +30446,348.31,93.7281 +30447,349.73,93.8676 +30448,351.14,94.0215 +30449,345.55,93.53 +30450,346.96,93.6994 +30451,348.38,93.8834 +30452,349.78,94.0817 +30453,344.21,93.4569 +30454,345.62,93.6707 +30455,347.02,93.8991 +30456,348.42,94.1416 +30457,342.87,93.3841 +30458,344.27,93.642 +30459,345.67,93.9146 +30460,347.06,94.2014 +30461,341.53,93.3115 +30462,342.92,93.6134 +30463,344.31,93.93 +30464,345.69,94.2609 +30465,340.2,93.2391 +30466,341.58,93.5847 +30467,342.95,93.9453 +30468,344.33,94.3202 +30469,338.86,93.1669 +30470,340.23,93.5562 +30471,341.6,93.9604 +30472,342.96,94.3791 +30473,337.53,93.0951 +30474,338.89,93.5276 +30475,340.24,93.9753 +30476,341.59,94.4378 +30477,336.19,93.0237 +30478,337.54,93.4992 +30479,338.88,93.9901 +30480,340.23,94.496 +30481,334.86,92.9526 +30482,336.19,93.4708 +30483,337.53,94.0047 +30484,338.86,94.5539 +30485,333.53,92.8819 +30486,334.85,93.4425 +30487,336.17,94.0191 +30488,337.48,94.6113 +30489,332.2,92.8116 +30490,333.51,93.4143 +30491,334.81,94.0333 +30492,336.11,94.6682 +30493,330.87,92.7418 +30494,332.16,93.3862 +30495,333.45,94.0473 +30496,334.74,94.7247 +30497,329.54,92.6725 +30498,330.82,93.3582 +30499,332.09,94.0611 +30500,333.36,94.7806 +30501,328.21,92.6038 +30502,329.48,93.3304 +30503,330.74,94.0746 +30504,331.99,94.8359 +30505,326.89,92.5356 +30506,328.13,93.3027 +30507,329.38,94.0878 +30508,330.61,94.8907 +30509,325.56,92.468 +30510,326.79,93.2751 +30511,328.02,94.1009 +30512,329.24,94.9448 +30513,324.24,92.401 +30514,325.45,93.2477 +30515,326.66,94.1136 +30516,327.86,94.9983 +30517,322.92,92.3347 +30518,324.11,93.2205 +30519,325.3,94.1261 +30520,326.48,95.051 +30521,321.6,92.269 +30522,322.77,93.1935 +30523,323.93,94.1382 +30524,325.1,95.1031 +30525,320.28,92.204 +30526,321.43,93.1666 +30527,322.57,94.1501 +30528,323.72,95.1544 +30529,318.96,92.1398 +30530,320.09,93.14 +30531,321.21,94.1617 +30532,322.33,95.2049 +30533,317.64,92.0763 +30534,318.75,93.1135 +30535,319.85,94.1729 +30536,320.95,95.2546 +30537,316.32,92.0137 +30538,317.41,93.0873 +30539,318.49,94.1838 +30540,319.57,95.3034 +30541,315,91.9518 +30542,316.07,93.0613 +30543,317.13,94.1944 +30544,318.18,95.3514 +30545,313.69,91.8908 +30546,314.73,93.0356 +30547,315.76,94.2047 +30548,316.79,95.3984 +30549,312.37,91.8306 +30550,313.39,93.0101 +30551,314.4,94.2145 +30552,315.41,95.4445 +30553,311.06,91.7714 +30554,312.05,92.9848 +30555,313.04,94.2241 +30556,314.02,95.4897 +30557,309.74,91.713 +30558,310.71,92.9598 +30559,311.67,94.2332 +30560,312.63,95.5339 +30561,308.43,91.6556 +30562,309.37,92.9351 +30563,310.31,94.242 +30564,311.24,95.577 +30565,307.12,91.5992 +30566,308.04,92.9107 +30567,308.95,94.2503 +30568,309.85,95.6192 +30569,305.81,91.5437 +30570,306.7,92.8865 +30571,307.58,94.2583 +30572,308.46,95.6602 +30573,304.5,91.4893 +30574,305.36,92.8626 +30575,306.22,94.2658 +30576,307.07,95.7002 +30577,303.19,91.4358 +30578,304.02,92.8391 +30579,304.85,94.273 +30580,305.68,95.739 +30581,301.88,91.3835 +30582,302.69,92.8159 +30583,303.49,94.2797 +30584,304.28,95.7767 +30585,300.57,91.3322 +30586,301.35,92.7929 +30587,302.12,94.286 +30588,302.89,95.8132 +30589,299.26,91.282 +30590,300.01,92.7703 +30591,300.76,94.2918 +30592,301.49,95.8485 +30593,297.95,91.2329 +30594,298.68,92.7481 +30595,299.39,94.2972 +30596,300.1,95.8826 +30597,296.65,91.185 +30598,297.34,92.7262 +30599,298.03,94.3022 +30600,298.7,95.9154 +30601,295.34,91.1382 +30602,296.01,92.7046 +30603,296.66,94.3067 +30604,297.31,95.947 +30605,294.04,91.0925 +30606,294.67,92.6834 +30607,295.3,94.3107 +30608,295.91,95.9773 +30609,292.73,91.0481 +30610,293.34,92.6625 +30611,293.93,94.3143 +30612,294.51,96.0063 +30613,291.43,91.0048 +30614,292,92.642 +30615,292.56,94.3173 +30616,293.12,96.034 +30617,290.13,90.96281 +30618,290.67,92.6219 +30619,291.2,94.3199 +30620,291.72,96.0603 +30621,288.82,90.92201 +30622,289.33,92.6021 +30623,289.83,94.322 +30624,290.32,96.0852 +30625,287.52,90.88247 +30626,288,92.5828 +30627,288.47,94.3236 +30628,288.92,96.1088 +30629,286.22,90.84419 +30630,286.66,92.5638 +30631,287.1,94.3247 +30632,287.52,96.1309 +30633,284.92,90.80718 +30634,285.33,92.5452 +30635,285.73,94.3253 +30636,286.12,96.1517 +30637,283.62,90.77147 +30638,284,92.527 +30639,284.36,94.3254 +30640,284.72,96.171 +30641,282.31,90.73705 +30642,282.66,92.5092 +30643,283,94.3249 +30644,283.32,96.1889 +30645,281.01,90.70395 +30646,281.33,92.4918 +30647,281.63,94.324 +30648,281.92,96.2052 +30649,279.71,90.67217 +30650,280,92.4748 +30651,280.26,94.3225 +30652,280.51,96.2201 +30653,278.41,90.64173 +30654,278.66,92.4583 +30655,278.9,94.3205 +30656,279.11,96.2336 +30657,277.11,90.61262 +30658,277.33,92.4421 +30659,277.53,94.3179 +30660,277.71,96.2455 +30661,275.81,90.58487 +30662,276,92.4264 +30663,276.16,94.3148 +30664,276.31,96.2559 +30665,274.52,90.55848 +30666,274.66,92.4111 +30667,274.79,94.3112 +30668,274.91,96.2647 +30669,273.22,90.53345 +30670,273.33,92.3962 +30671,273.43,94.307 +30672,273.5,96.2721 +30673,271.92,90.5098 +30674,272,92.3817 +30675,272.06,94.3023 +30676,272.1,96.2778 +30677,270.62,90.48753 +30678,270.66,92.3677 +30679,270.69,94.2971 +30680,270.7,96.282 +30681,269.32,90.46664 +30682,269.33,92.3541 +30683,269.32,94.2913 +30684,269.3,96.2847 +30685,268.02,90.44714 +30686,268,92.3409 +30687,267.96,94.2849 +30688,267.89,96.2858 +30689,266.72,90.42904 +30690,266.67,92.3282 +30691,266.59,94.278 +30692,266.49,96.2853 +30693,265.42,90.41233 +30694,265.33,92.3159 +30695,265.22,94.2705 +30696,265.09,96.2832 +30697,264.12,90.39702 +30698,264,92.304 +30699,263.85,94.2625 +30700,263.69,96.2796 +30701,262.83,90.38311 +30702,262.67,92.2926 +30703,262.49,94.254 +30704,262.29,96.2743 +30705,261.53,90.3706 +30706,261.33,92.2816 +30707,261.12,94.2448 +30708,260.88,96.2675 +30709,260.23,90.35949 +30710,260,92.2711 +30711,259.75,94.2351 +30712,259.48,96.259 +30713,258.93,90.34978 +30714,258.67,92.261 +30715,258.39,94.2249 +30716,258.08,96.249 +30717,257.63,90.34148 +30718,257.34,92.2513 +30719,257.02,94.2141 +30720,256.68,96.2374 +30721,256.33,90.33457 +30722,256,92.2421 +30723,255.65,94.2027 +30724,255.28,96.2241 +30725,255.03,90.32906 +30726,254.67,92.2333 +30727,254.29,94.1908 +30728,253.88,96.2093 +30729,253.73,90.32494 +30730,253.34,92.2249 +30731,252.92,94.1784 +30732,252.48,96.1929 +30733,252.43,90.32222 +30734,252,92.217 +30735,251.55,94.1653 +30736,251.08,96.1749 +30737,251.13,90.32087 +30738,250.67,92.2095 +30739,250.19,94.1518 +30740,249.68,96.1554 +30741,249.83,90.32091 +30742,249.34,92.2024 +30743,248.82,94.1376 +30744,248.28,96.1342 +30745,248.53,90.32232 +30746,248,92.1958 +30747,247.45,94.123 +30748,246.88,96.1115 +30749,247.23,90.3251 +30750,246.67,92.1896 +30751,246.09,94.1078 +30752,245.48,96.0872 +30753,245.93,90.32923 +30754,245.34,92.1838 +30755,244.72,94.092 +30756,244.08,96.0613 +30757,244.62,90.33472 +30758,244,92.1785 +30759,243.36,94.0757 +30760,242.68,96.034 +30761,243.32,90.34155 +30762,242.67,92.1736 +30763,241.99,94.0589 +30764,241.29,96.005 +30765,242.02,90.34972 +30766,241.33,92.1691 +30767,240.63,94.0415 +30768,239.89,95.9746 +30769,240.71,90.3592 +30770,240,92.165 +30771,239.26,94.0236 +30772,238.49,95.9426 +30773,239.41,90.37001 +30774,238.67,92.1613 +30775,237.9,94.0052 +30776,237.1,95.9091 +30777,238.11,90.38211 +30778,237.33,92.158 +30779,236.53,93.9862 +30780,235.7,95.8741 +30781,236.8,90.3955 +30782,236,92.1551 +30783,235.17,93.9668 +30784,234.31,95.8377 +30785,235.49,90.41018 +30786,234.66,92.1526 +30787,233.8,93.9468 +30788,232.92,95.7998 +30789,234.19,90.42611 +30790,233.33,92.1505 +30791,232.44,93.9263 +30792,231.52,95.7604 +30793,232.88,90.4433 +30794,231.99,92.1488 +30795,231.08,93.9053 +30796,230.13,95.7196 +30797,231.57,90.46172 +30798,230.66,92.1475 +30799,229.71,93.8839 +30800,228.74,95.6774 +30801,230.26,90.48137 +30802,229.32,92.1466 +30803,228.35,93.8619 +30804,227.35,95.6337 +30805,228.96,90.50222 +30806,227.98,92.146 +30807,226.99,93.8394 +30808,225.96,95.5887 +30809,227.65,90.52425 +30810,226.65,92.1458 +30811,225.62,93.8165 +30812,224.57,95.5424 +30813,226.33,90.54747 +30814,225.31,92.146 +30815,224.26,93.7931 +30816,223.19,95.4947 +30817,225.02,90.57183 +30818,223.97,92.1465 +30819,222.9,93.7692 +30820,221.8,95.4456 +30821,223.71,90.59733 +30822,222.64,92.1474 +30823,221.54,93.7448 +30824,220.41,95.3953 +30825,222.4,90.62396 +30826,221.3,92.1486 +30827,220.18,93.72 +30828,219.03,95.3437 +30829,221.08,90.65168 +30830,219.96,92.1502 +30831,218.82,93.6948 +30832,217.64,95.2908 +30833,219.77,90.68048 +30834,218.62,92.1521 +30835,217.46,93.6691 +30836,216.26,95.2367 +30837,218.45,90.71034 +30838,217.29,92.1543 +30839,216.1,93.643 +30840,214.88,95.1814 +30841,217.14,90.74124 +30842,215.95,92.1568 +30843,214.74,93.6164 +30844,213.5,95.1249 +30845,215.82,90.77316 +30846,214.61,92.1597 +30847,213.38,93.5895 +30848,212.12,95.0672 +30849,214.5,90.80607 +30850,213.27,92.1628 +30851,212.02,93.5621 +30852,210.74,95.0084 +30853,213.18,90.83995 +30854,211.93,92.1663 +30855,210.66,93.5343 +30856,209.36,94.9485 +30857,211.86,90.87479 +30858,210.59,92.17 +30859,209.3,93.5061 +30860,207.98,94.8874 +30861,210.54,90.91056 +30862,209.25,92.174 +30863,207.94,93.4776 +30864,206.61,94.8254 +30865,209.22,90.94722 +30866,207.91,92.1782 +30867,206.59,93.4487 +30868,205.23,94.7623 +30869,207.89,90.98477 +30870,206.57,92.1828 +30871,205.23,93.4194 +30872,203.86,94.6982 +30873,206.57,91.0232 +30874,205.23,92.1876 +30875,203.87,93.3897 +30876,202.49,94.6331 +30877,205.24,91.0624 +30878,203.89,92.1926 +30879,202.51,93.3597 +30880,201.12,94.5671 +30881,203.92,91.1024 +30882,202.55,92.1979 +30883,201.16,93.3294 +30884,199.75,94.5001 +30885,202.59,91.1433 +30886,201.21,92.2034 +30887,199.8,93.2987 +30888,198.38,94.4323 +30889,201.26,91.1848 +30890,199.87,92.2091 +30891,198.45,93.2677 +30892,197.01,94.3636 +30893,199.93,91.2271 +30894,198.52,92.215 +30895,197.09,93.2365 +30896,195.64,94.2941 +30897,198.6,91.2701 +30898,197.18,92.2211 +30899,195.74,93.2049 +30900,194.28,94.2238 +30901,197.27,91.3138 +30902,195.84,92.2274 +30903,194.38,93.173 +30904,192.91,94.1528 +30905,195.94,91.3581 +30906,194.49,92.2339 +30907,193.03,93.1408 +30908,191.55,94.081 +30909,194.6,91.403 +30910,193.15,92.2406 +30911,191.68,93.1084 +30912,190.19,94.0085 +30913,193.27,91.4485 +30914,191.81,92.2474 +30915,190.32,93.0757 +30916,188.82,93.9353 +30917,191.93,91.4946 +30918,190.46,92.2544 +30919,188.97,93.0428 +30920,187.47,93.8615 +30921,190.59,91.5412 +30922,189.12,92.2615 +30923,187.62,93.0096 +30924,186.11,93.7871 +30925,189.25,91.5883 +30926,187.77,92.2688 +30927,186.27,92.9762 +30928,184.75,93.7121 +30929,187.91,91.6359 +30930,186.42,92.2762 +30931,184.92,92.9425 +30932,183.39,93.6366 +30933,186.57,91.6839 +30934,185.08,92.2836 +30935,183.57,92.9087 +30936,182.04,93.5606 +30937,185.23,91.7323 +30938,183.73,92.2912 +30939,182.22,92.8747 +30940,180.69,93.4841 +30941,183.89,91.7811 +30942,182.39,92.2989 +30943,180.87,92.8405 +30944,179.33,93.4072 +30945,182.54,91.8303 +30946,181.04,92.3067 +30947,179.52,92.8061 +30948,177.98,93.3299 +30949,181.2,91.8797 +30950,179.69,92.3145 +30951,178.17,92.7716 +30952,176.63,93.2522 +30953,179.85,91.9295 +30954,178.34,92.3224 +30955,176.82,92.7369 +30956,175.28,93.1741 +30957,178.5,91.9795 +30958,176.99,92.3303 +30959,175.47,92.7021 +30960,173.94,93.0958 +30961,177.15,92.0297 +30962,175.65,92.3383 +30963,174.13,92.6671 +30964,172.59,93.0172 +30965,175.8,92.0802 +30966,174.3,92.3463 +30967,172.78,92.632 +30968,171.25,92.9384 +30969,174.45,92.1308 +30970,172.95,92.3543 +30971,171.43,92.5968 +30972,169.9,92.8594 +30973,173.09,92.1815 +30974,171.6,92.3623 +30975,170.08,92.5616 +30976,168.56,92.7802 +30977,171.74,92.2323 +30978,170.25,92.3703 +30979,168.74,92.5262 +30980,167.22,92.7009 +30981,170.38,92.2832 +30982,168.9,92.3783 +30983,167.39,92.4908 +30984,165.88,92.6215 +30985,169.03,92.3341 +30986,167.54,92.3863 +30987,166.05,92.4553 +30988,164.54,92.542 +30989,167.67,92.3851 +30990,166.19,92.3942 +30991,164.7,92.4197 +30992,163.2,92.4625 +30993,166.31,92.436 +30994,164.84,92.4021 +30995,163.36,92.3841 +30996,161.87,92.383 +30997,164.95,92.4868 +30998,163.49,92.4099 +30999,162.02,92.3485 +31000,160.53,92.3036 +31001,163.59,92.5376 +31002,162.14,92.4176 +31003,160.67,92.3129 +31004,159.2,92.2242 +31005,162.23,92.5882 +31006,160.78,92.4253 +31007,159.33,92.2773 +31008,157.87,92.1449 +31009,160.86,92.6386 +31010,159.43,92.4329 +31011,157.99,92.2417 +31012,156.54,92.0658 +31013,159.5,92.6889 +31014,158.08,92.4404 +31015,156.65,92.2061 +31016,155.21,91.9869 +31017,158.13,92.739 +31018,156.72,92.4477 +31019,155.31,92.1705 +31020,153.88,91.9081 +31021,156.76,92.7888 +31022,155.37,92.455 +31023,153.96,92.135 +31024,152.55,91.8297 +31025,155.39,92.8383 +31026,154.01,92.462 +31027,152.62,92.0995 +31028,151.22,91.7514 +31029,154.02,92.8875 +31030,152.66,92.469 +31031,151.28,92.0641 +31032,149.9,91.6735 +31033,152.65,92.9363 +31034,151.3,92.4758 +31035,149.94,92.0287 +31036,148.57,91.5959 +31037,151.28,92.9847 +31038,149.95,92.4824 +31039,148.6,91.9934 +31040,147.25,91.5187 +31041,149.91,93.0328 +31042,148.59,92.4889 +31043,147.26,91.9583 +31044,145.93,91.4419 +31045,148.53,93.0804 +31046,147.24,92.4951 +31047,145.93,91.9232 +31048,144.61,91.3656 +31049,147.16,93.1275 +31050,145.88,92.5012 +31051,144.59,91.8883 +31052,143.29,91.2897 +31053,145.78,93.1741 +31054,144.52,92.507 +31055,143.25,91.8534 +31056,141.97,91.2143 +31057,144.4,93.2202 +31058,143.16,92.5127 +31059,141.91,91.8187 +31060,140.65,91.1394 +31061,143.03,93.2657 +31062,141.81,92.5181 +31063,140.58,91.7842 +31064,139.34,91.0651 +31065,141.65,93.3106 +31066,140.45,92.5232 +31067,139.24,91.7498 +31068,138.02,90.99133 +31069,140.27,93.3549 +31070,139.09,92.5281 +31071,137.9,91.7156 +31072,136.71,90.91821 +31073,138.89,93.3985 +31074,137.73,92.5328 +31075,136.57,91.6816 +31076,135.39,90.84574 +31077,137.5,93.4415 +31078,136.37,92.5372 +31079,135.23,91.6477 +31080,134.08,90.77394 +31081,136.12,93.4837 +31082,135.01,92.5413 +31083,133.9,91.6141 +31084,132.77,90.70284 +31085,134.74,93.5251 +31086,133.65,92.5451 +31087,132.56,91.5806 +31088,131.46,90.63246 +31089,133.35,93.5658 +31090,132.29,92.5486 +31091,131.23,91.5474 +31092,130.15,90.56285 +31093,131.96,93.6057 +31094,130.93,92.5518 +31095,129.89,91.5144 +31096,128.84,90.49402 +31097,130.58,93.6448 +31098,129.57,92.5547 +31099,128.56,91.4816 +31100,127.53,90.426 +31101,129.19,93.683 +31102,128.21,92.5573 +31103,127.22,91.449 +31104,126.22,90.35881 +31105,127.8,93.7203 +31106,126.85,92.5596 +31107,125.89,91.4168 +31108,124.92,90.29249 +31109,126.41,93.7567 +31110,125.49,92.5614 +31111,124.56,91.3847 +31112,123.61,90.22705 +31113,125.02,93.7921 +31114,124.13,92.563 +31115,123.22,91.353 +31116,122.31,90.16252 +31117,123.63,93.8266 +31118,122.77,92.5642 +31119,121.89,91.3215 +31120,121,90.098922 +31121,122.24,93.8601 +31122,121.41,92.565 +31123,120.56,91.2903 +31124,119.7,90.036284 +31125,120.85,93.8925 +31126,120.04,92.5654 +31127,119.23,91.2594 +31128,118.4,89.974626 +31129,119.45,93.924 +31130,118.68,92.5655 +31131,117.9,91.2288 +31132,117.1,89.913971 +31133,118.06,93.9543 +31134,117.32,92.5652 +31135,116.57,91.1985 +31136,115.8,89.85434 +31137,116.66,93.9836 +31138,115.96,92.5644 +31139,115.23,91.1686 +31140,114.5,89.79575 +31141,115.27,94.0117 +31142,114.59,92.5633 +31143,113.9,91.1389 +31144,113.2,89.73823 +31145,113.87,94.0388 +31146,113.23,92.5618 +31147,112.57,91.1096 +31148,111.9,89.6818 +31149,112.48,94.0646 +31150,111.87,92.5598 +31151,111.24,91.0806 +31152,110.6,89.62647 +31153,111.08,94.0893 +31154,110.51,92.5574 +31155,109.91,91.052 +31156,109.3,89.57226 +31157,109.68,94.1128 +31158,109.14,92.5546 +31159,108.58,91.0237 +31160,108,89.5192 +31161,108.29,94.135 +31162,107.78,92.5513 +31163,107.25,90.99573 +31164,106.71,89.46729 +31165,106.89,94.156 +31166,106.42,92.5476 +31167,105.92,90.96815 +31168,105.41,89.41657 +31169,105.49,94.1757 +31170,105.05,92.5434 +31171,104.59,90.94095 +31172,104.12,89.36703 +31173,104.09,94.1942 +31174,103.69,92.5388 +31175,103.26,90.91412 +31176,102.82,89.3187 +31177,102.69,94.2114 +31178,102.32,92.5337 +31179,101.94,90.88766 +31180,101.53,89.2716 +31181,101.29,94.2272 +31182,100.96,92.5281 +31183,100.61,90.8616 +31184,100.23,89.22573 +31185,99.891,94.2417 +31186,99.596,92.5221 +31187,99.277,90.83592 +31188,98.938,89.18112 +31189,98.491,94.2549 +31190,98.232,92.5156 +31191,97.949,90.81063 +31192,97.644,89.13777 +31193,97.09,94.2667 +31194,96.868,92.5086 +31195,96.62,90.78574 +31196,96.35,89.09569 +31197,95.689,94.2771 +31198,95.503,92.5011 +31199,95.292,90.76126 +31200,95.057,89.0549 +31201,94.288,94.2861 +31202,94.139,92.4932 +31203,93.964,90.73718 +31204,93.764,89.01542 +31205,92.887,94.2937 +31206,92.775,92.4847 +31207,92.635,90.71351 +31208,92.472,88.9772 +31209,91.486,94.2999 +31210,91.41,92.4757 +31211,91.307,90.69026 +31212,91.179,88.9404 +31213,90.084,94.3046 +31214,90.046,92.4663 +31215,89.979,90.66743 +31216,89.887,88.9049 +31217,88.683,94.3079 +31218,88.682,92.4563 +31219,88.651,90.64501 +31220,88.595,88.8707 +31221,87.281,94.3098 +31222,87.317,92.4458 +31223,87.324,90.62302 +31224,87.303,88.8378 +31225,85.88,94.3102 +31226,85.953,92.4348 +31227,85.996,90.60145 +31228,86.011,88.8063 +31229,84.478,94.3091 +31230,84.589,92.4233 +31231,84.668,90.58032 +31232,84.719,88.7762 +31233,83.077,94.3065 +31234,83.225,92.4113 +31235,83.34,90.55961 +31236,83.428,88.7474 +31237,81.675,94.3025 +31238,81.86,92.3987 +31239,82.013,90.53934 +31240,82.136,88.72 +31241,80.274,94.2969 +31242,80.496,92.3857 +31243,80.685,90.5195 +31244,80.844,88.6939 +31245,78.873,94.2899 +31246,79.132,92.3721 +31247,79.357,90.50009 +31248,79.552,88.6693 +31249,77.472,94.2813 +31250,77.768,92.358 +31251,78.029,90.48112 +31252,78.26,88.646 +31253,76.071,94.2713 +31254,76.404,92.3433 +31255,76.702,90.46259 +31256,76.968,88.6241 +31257,74.671,94.2597 +31258,75.04,92.3282 +31259,75.374,90.4445 +31260,75.676,88.6036 +31261,73.27,94.2466 +31262,73.677,92.3125 +31263,74.046,90.42685 +31264,74.384,88.5844 +31265,71.871,94.232 +31266,72.313,92.2963 +31267,72.718,90.40964 +31268,73.092,88.5666 +31269,70.471,94.2158 +31270,70.95,92.2795 +31271,71.391,90.39287 +31272,71.799,88.5503 +31273,69.072,94.1982 +31274,69.586,92.2623 +31275,70.063,90.37653 +31276,70.506,88.5353 +31277,67.673,94.179 +31278,68.223,92.2445 +31279,68.735,90.36063 +31280,69.213,88.5216 +31281,66.274,94.1583 +31282,66.86,92.2262 +31283,67.407,90.34518 +31284,67.919,88.5094 +31285,64.876,94.1361 +31286,65.497,92.2074 +31287,66.079,90.33015 +31288,66.625,88.4985 +31289,63.479,94.1124 +31290,64.135,92.188 +31291,64.75,90.31557 +31292,65.331,88.489 +31293,62.082,94.0871 +31294,62.772,92.1681 +31295,63.422,90.30142 +31296,64.037,88.4808 +31297,60.685,94.0604 +31298,61.41,92.1477 +31299,62.094,90.2877 +31300,62.742,88.474 +31301,59.289,94.0321 +31302,60.048,92.1268 +31303,60.765,90.27441 +31304,61.446,88.4686 +31305,57.894,94.0024 +31306,58.686,92.1054 +31307,59.436,90.26155 +31308,60.15,88.4645 +31309,56.499,93.9712 +31310,57.325,92.0835 +31311,58.107,90.24911 +31312,58.854,88.4617 +31313,55.105,93.9385 +31314,55.963,92.061 +31315,56.778,90.2371 +31316,57.557,88.4602 +31317,53.711,93.9043 +31318,54.602,92.0381 +31319,55.449,90.22551 +31320,56.26,88.4601 +31321,52.319,93.8687 +31322,53.241,92.0146 +31323,54.12,90.21434 +31324,54.962,88.4613 +31325,50.927,93.8316 +31326,51.88,91.9907 +31327,52.79,90.20358 +31328,53.663,88.4638 +31329,49.535,93.7931 +31330,50.52,91.9663 +31331,51.461,90.19323 +31332,52.364,88.4675 +31333,48.145,93.7531 +31334,49.16,91.9413 +31335,50.131,90.18328 +31336,51.064,88.4725 +31337,46.755,93.7118 +31338,47.8,91.9159 +31339,48.801,90.17374 +31340,49.764,88.4788 +31341,45.366,93.669 +31342,46.441,91.89 +31343,47.47,90.1646 +31344,48.463,88.4864 +31345,43.978,93.6249 +31346,45.081,91.8636 +31347,46.14,90.15586 +31348,47.161,88.4952 +31349,42.591,93.5793 +31350,43.722,91.8368 +31351,44.809,90.1475 +31352,45.858,88.5052 +31353,41.205,93.5325 +31354,42.364,91.8095 +31355,43.478,90.13952 +31356,44.555,88.5164 +31357,39.819,93.4842 +31358,41.005,91.7817 +31359,42.147,90.13193 +31360,43.251,88.5288 +31361,38.435,93.4347 +31362,39.648,91.7534 +31363,40.815,90.12471 +31364,41.946,88.5424 +31365,37.052,93.3839 +31366,38.29,91.7248 +31367,39.484,90.11786 +31368,40.64,88.5571 +31369,35.669,93.3317 +31370,36.933,91.6956 +31371,38.152,90.11137 +31372,39.333,88.573 +31373,34.288,93.2783 +31374,35.576,91.666 +31375,36.819,90.10525 +31376,38.026,88.59 +31377,32.907,93.2237 +31378,34.219,91.636 +31379,35.487,90.099467 +31380,36.717,88.6081 +31381,31.528,93.1678 +31382,32.863,91.6056 +31383,34.154,90.094033 +31384,35.408,88.6273 +31385,30.15,93.1107 +31386,31.507,91.5748 +31387,32.821,90.088938 +31388,34.098,88.6476 +31389,28.772,93.0524 +31390,30.152,91.5435 +31391,31.488,90.084175 +31392,32.787,88.6689 +31393,27.396,92.993 +31394,28.797,91.5119 +31395,30.154,90.079738 +31396,31.475,88.6913 +31397,26.021,92.9324 +31398,27.442,91.4798 +31399,28.82,90.075618 +31400,30.161,88.7146 +31401,24.647,92.8707 +31402,26.088,91.4474 +31403,27.486,90.071809 +31404,28.847,88.739 +31405,23.275,92.808 +31406,24.734,91.4145 +31407,26.151,90.068305 +31408,27.532,88.7643 +31409,21.903,92.7441 +31410,23.38,91.3813 +31411,24.816,90.065096 +31412,26.216,88.7905 +31413,20.533,92.6792 +31414,22.027,91.3478 +31415,23.481,90.062176 +31416,24.899,88.8177 +31417,19.163,92.6133 +31418,20.675,91.3138 +31419,22.145,90.059536 +31420,23.58,88.8458 +31421,17.795,92.5464 +31422,19.322,91.2796 +31423,20.809,90.057169 +31424,22.261,88.8747 +31425,16.429,92.4786 +31426,17.971,91.245 +31427,19.473,90.055067 +31428,20.941,88.9045 +31429,15.063,92.4098 +31430,16.619,91.21 +31431,18.136,90.053221 +31432,19.619,88.9352 +31433,13.699,92.3401 +31434,15.268,91.1748 +31435,16.799,90.051623 +31436,18.296,88.9666 +31437,12.336,92.2695 +31438,13.918,91.1392 +31439,15.462,90.050265 +31440,16.972,88.9988 +31441,10.974,92.1981 +31442,12.568,91.1033 +31443,14.124,90.049137 +31444,15.647,89.03177 +31445,9.6135,92.1259 +31446,11.218,91.0672 +31447,12.786,90.048231 +31448,14.321,89.06545 +31449,8.2542,92.0528 +31450,9.869,91.0307 +31451,11.448,90.047538 +31452,12.994,89.09983 +31453,6.8963,91.979 +31454,8.5203,90.99397 +31455,10.109,90.047049 +31456,11.665,89.13488 +31457,5.5397,91.9045 +31458,7.1721,90.95698 +31459,8.7696,90.046754 +31460,10.336,89.17058 +31461,4.1843,91.8293 +31462,5.8243,90.91973 +31463,7.43,90.046645 +31464,9.0046,89.20689 +31465,2.8303,91.7534 +31466,4.477,90.88223 +31467,6.0901,90.046712 +31468,7.6725,89.2438 +31469,1.4776,91.6768 +31470,3.1301,90.8445 +31471,4.7497,90.046946 +31472,6.3391,89.28126 +31473,0.12619,91.5997 +31474,1.7837,90.80655 +31475,3.409,90.047336 +31476,5.0045,89.31927 +31477,358.78,91.5219 +31478,0.43782,90.76838 +31479,2.0679,90.047874 +31480,3.6687,89.35777 +31481,357.43,91.4437 +31482,359.09,90.73001 +31483,0.72642,90.048549 +31484,2.3317,89.39676 +31485,356.08,91.3649 +31486,357.75,90.69144 +31487,359.38,90.049352 +31488,0.99338,89.43619 +31489,354.73,91.2856 +31490,356.4,90.6527 +31491,358.04,90.050273 +31492,359.65,89.47604 +31493,353.39,91.2059 +31494,355.06,90.61377 +31495,356.7,90.051301 +31496,358.31,89.51628 +31497,352.05,91.1258 +31498,353.72,90.57469 +31499,355.36,90.052427 +31500,356.97,89.55689 +31501,350.7,91.0453 +31502,352.37,90.53545 +31503,354.01,90.05364 +31504,355.63,89.59782 +31505,349.36,90.96447 +31506,351.03,90.49608 +31507,352.67,90.05493 +31508,354.28,89.63905 +31509,348.02,90.88331 +31510,349.69,90.45657 +31511,351.32,90.056288 +31512,352.94,89.68056 +31513,346.69,90.80187 +31514,348.35,90.41695 +31515,349.98,90.057703 +31516,351.59,89.7223 +31517,345.35,90.72018 +31518,347,90.37722 +31519,348.64,90.059163 +31520,350.24,89.76426 +31521,344.01,90.63828 +31522,345.66,90.33739 +31523,347.29,90.06066 +31524,348.89,89.80639 +31525,342.68,90.55619 +31526,344.32,90.29747 +31527,345.94,90.062183 +31528,347.54,89.84867 +31529,341.35,90.47396 +31530,342.98,90.25748 +31531,344.6,90.063721 +31532,346.19,89.89108 +31533,340.01,90.39161 +31534,341.64,90.21743 +31535,343.25,90.065264 +31536,344.84,89.933569 +31537,338.68,90.30918 +31538,340.31,90.17732 +31539,341.9,90.066801 +31540,343.48,89.976117 +31541,337.36,90.22671 +31542,338.97,90.13717 +31543,340.56,90.068322 +31544,342.13,90.018691 +31545,336.03,90.14422 +31546,337.63,90.096986 +31547,339.21,90.069816 +31548,340.77,90.061262 +31549,334.7,90.061752 +31550,336.29,90.056784 +31551,337.86,90.071273 +31552,339.41,90.1038 +31553,333.38,89.979336 +31554,334.95,90.016573 +31555,336.51,90.072683 +31556,338.05,90.14627 +31557,332.05,89.897 +31558,333.62,89.976363 +31559,335.16,90.074035 +31560,336.69,90.18864 +31561,330.73,89.81479 +31562,332.28,89.936166 +31563,333.81,90.075318 +31564,335.33,90.23088 +31565,329.41,89.73273 +31566,330.95,89.89599 +31567,332.46,90.076523 +31568,333.96,90.27297 +31569,328.09,89.65086 +31570,329.61,89.85585 +31571,331.11,90.077638 +31572,332.6,90.31487 +31573,326.77,89.5692 +31574,328.28,89.81576 +31575,329.76,90.078654 +31576,331.23,90.35654 +31577,325.45,89.48779 +31578,326.94,89.77572 +31579,328.41,90.07956 +31580,329.87,90.39797 +31581,324.14,89.40666 +31582,325.61,89.73575 +31583,327.06,90.080345 +31584,328.5,90.43912 +31585,322.82,89.32584 +31586,324.27,89.69585 +31587,325.71,90.081 +31588,327.13,90.47995 +31589,321.51,89.24537 +31590,322.94,89.65604 +31591,324.36,90.081515 +31592,325.76,90.52045 +31593,320.19,89.16527 +31594,321.61,89.61634 +31595,323.01,90.081879 +31596,324.39,90.56057 +31597,318.88,89.08558 +31598,320.28,89.57673 +31599,321.65,90.082082 +31600,323.02,90.60029 +31601,317.57,89.00633 +31602,318.94,89.53725 +31603,320.3,90.082115 +31604,321.64,90.63958 +31605,316.26,88.9276 +31606,317.61,89.4979 +31607,318.95,90.081966 +31608,320.27,90.67841 +31609,314.95,88.8493 +31610,316.28,89.45868 +31611,317.59,90.081628 +31612,318.89,90.71675 +31613,313.65,88.7715 +31614,314.95,89.41962 +31615,316.24,90.081089 +31616,317.51,90.75457 +31617,312.34,88.6943 +31618,313.62,89.38071 +31619,314.89,90.08034 +31620,316.14,90.79184 +31621,311.04,88.6177 +31622,312.29,89.34198 +31623,313.53,90.079372 +31624,314.76,90.82854 +31625,309.73,88.5417 +31626,310.96,89.30342 +31627,312.18,90.078174 +31628,313.38,90.86463 +31629,308.43,88.4664 +31630,309.63,89.26505 +31631,310.82,90.076739 +31632,312,90.90009 +31633,307.13,88.3917 +31634,308.3,89.22688 +31635,309.47,90.075056 +31636,310.61,90.93488 +31637,305.82,88.3177 +31638,306.98,89.18891 +31639,308.11,90.073116 +31640,309.23,90.96899 +31641,304.52,88.2445 +31642,305.65,89.15116 +31643,306.76,90.070911 +31644,307.85,91.0024 +31645,303.22,88.172 +31646,304.32,89.11364 +31647,305.4,90.068431 +31648,306.46,91.035 +31649,301.93,88.1002 +31650,302.99,89.07635 +31651,304.04,90.065667 +31652,305.08,91.0669 +31653,300.63,88.0293 +31654,301.67,89.03931 +31655,302.69,90.062612 +31656,303.69,91.098 +31657,299.33,87.9593 +31658,300.34,89.00252 +31659,301.33,90.059256 +31660,302.3,91.1282 +31661,298.04,87.89 +31662,299.01,88.966 +31663,299.97,90.055591 +31664,300.92,91.1577 +31665,296.74,87.8217 +31666,297.69,88.9297 +31667,298.62,90.051609 +31668,299.53,91.1862 +31669,295.45,87.7543 +31670,296.36,88.8937 +31671,297.26,90.047302 +31672,298.14,91.2138 +31673,294.15,87.6878 +31674,295.04,88.858 +31675,295.9,90.042662 +31676,296.75,91.2406 +31677,292.86,87.6222 +31678,293.71,88.8226 +31679,294.54,90.037681 +31680,295.36,91.2663 +31681,291.57,87.5576 +31682,292.39,88.7875 +31683,293.18,90.032351 +31684,293.96,91.2911 +31685,290.28,87.494 +31686,291.06,88.7527 +31687,291.83,90.026666 +31688,292.57,91.315 +31689,288.99,87.4314 +31690,289.74,88.7182 +31691,290.47,90.020617 +31692,291.18,91.3378 +31693,287.7,87.3699 +31694,288.41,88.6841 +31695,289.11,90.014199 +31696,289.78,91.3595 +31697,286.41,87.3094 +31698,287.09,88.6502 +31699,287.75,90.007403 +31700,288.39,91.3802 +31701,285.12,87.25 +31702,285.76,88.6167 +31703,286.39,90.00022338 +31704,286.99,91.3998 +31705,283.83,87.1917 +31706,284.44,88.5836 +31707,285.03,89.9926534 +31708,285.6,91.4184 +31709,282.54,87.1345 +31710,283.12,88.5508 +31711,283.67,89.984687 +31712,284.2,91.4358 +31713,281.26,87.0784 +31714,281.79,88.5183 +31715,282.31,89.976317 +31716,282.81,91.452 +31717,279.97,87.0235 +31718,280.47,88.4862 +31719,280.95,89.967539 +31720,281.41,91.4671 +31721,278.68,86.9697 +31722,279.15,88.4545 +31723,279.59,89.958346 +31724,280.01,91.4811 +31725,277.4,86.9171 +31726,277.83,88.4232 +31727,278.23,89.948732 +31728,278.61,91.4938 +31729,276.11,86.8657 +31730,276.5,88.3922 +31731,276.87,89.938693 +31732,277.22,91.5053 +31733,274.83,86.8155 +31734,275.18,88.3616 +31735,275.51,89.928224 +31736,275.82,91.5156 +31737,273.54,86.7666 +31738,273.86,88.3314 +31739,274.15,89.917319 +31740,274.42,91.5247 +31741,272.26,86.7188 +31742,272.54,88.3016 +31743,272.79,89.905973 +31744,273.02,91.5325 +31745,270.97,86.6724 +31746,271.22,88.2722 +31747,271.43,89.89418 +31748,271.62,91.539 +31749,269.69,86.6271 +31750,269.89,88.2432 +31751,270.07,89.88194 +31752,270.22,91.5442 +31753,268.41,86.5832 +31754,268.57,88.2145 +31755,268.71,89.86925 +31756,268.82,91.5481 +31757,267.12,86.5405 +31758,267.25,88.1863 +31759,267.35,89.8561 +31760,267.42,91.5507 +31761,265.84,86.4991 +31762,265.93,88.1586 +31763,265.99,89.84249 +31764,266.02,91.552 +31765,264.56,86.459 +31766,264.61,88.1312 +31767,264.63,89.82841 +31768,264.62,91.552 +31769,263.27,86.4203 +31770,263.29,88.1042 +31771,263.27,89.81387 +31772,263.22,91.5506 +31773,261.99,86.3828 +31774,261.97,88.0777 +31775,261.91,89.79886 +31776,261.82,91.5478 +31777,260.71,86.3466 +31778,260.65,88.0516 +31779,260.55,89.78337 +31780,260.42,91.5437 +31781,259.43,86.3118 +31782,259.32,88.0259 +31783,259.19,89.76741 +31784,259.02,91.5381 +31785,258.14,86.2783 +31786,258,88.0007 +31787,257.83,89.75097 +31788,257.62,91.5312 +31789,256.86,86.2462 +31790,256.68,87.9759 +31791,256.47,89.73406 +31792,256.22,91.5229 +31793,255.58,86.2154 +31794,255.36,87.9515 +31795,255.11,89.71666 +31796,254.82,91.5133 +31797,254.29,86.1859 +31798,254.04,87.9275 +31799,253.75,89.69877 +31800,253.42,91.5022 +31801,253.01,86.1578 +31802,252.72,87.904 +31803,252.39,89.68041 +31804,252.02,91.4896 +31805,251.73,86.1311 +31806,251.4,87.8809 +31807,251.03,89.66155 +31808,250.63,91.4757 +31809,250.44,86.1057 +31810,250.08,87.8583 +31811,249.67,89.64222 +31812,249.23,91.4604 +31813,249.16,86.0816 +31814,248.76,87.8361 +31815,248.31,89.62239 +31816,247.83,91.4436 +31817,247.88,86.0589 +31818,247.43,87.8143 +31819,246.95,89.60208 +31820,246.43,91.4254 +31821,246.59,86.0376 +31822,246.11,87.793 +31823,245.59,89.58128 +31824,245.03,91.4058 +31825,245.31,86.0176 +31826,244.79,87.7721 +31827,244.24,89.55999 +31828,243.64,91.3847 +31829,244.02,85.9989 +31830,243.47,87.7517 +31831,242.88,89.53822 +31832,242.24,91.3622 +31833,242.74,85.9816 +31834,242.15,87.7316 +31835,241.52,89.51596 +31836,240.84,91.3383 +31837,241.45,85.9657 +31838,240.83,87.7121 +31839,240.16,89.49322 +31840,239.45,91.313 +31841,240.17,85.9511 +31842,239.51,87.6929 +31843,238.8,89.46999 +31844,238.05,91.2863 +31845,238.88,85.9378 +31846,238.18,87.6742 +31847,237.44,89.44628 +31848,236.66,91.2581 +31849,237.6,85.9258 +31850,236.86,87.6559 +31851,236.09,89.42209 +31852,235.26,91.2285 +31853,236.31,85.9152 +31854,235.54,87.6381 +31855,234.73,89.39742 +31856,233.87,91.1975 +31857,235.02,85.9058 +31858,234.22,87.6206 +31859,233.37,89.37227 +31860,232.48,91.1651 +31861,233.73,85.8978 +31862,232.9,87.6037 +31863,232.01,89.34665 +31864,231.08,91.1313 +31865,232.44,85.8911 +31866,231.57,87.5871 +31867,230.66,89.32055 +31868,229.69,91.0961 +31869,231.15,85.8857 +31870,230.25,87.5709 +31871,229.3,89.29399 +31872,228.3,91.0595 +31873,229.86,85.8815 +31874,228.93,87.5552 +31875,227.94,89.26696 +31876,226.91,91.0216 +31877,228.57,85.8786 +31878,227.6,87.5399 +31879,226.59,89.23947 +31880,225.52,90.98223 +31881,227.28,85.877 +31882,226.28,87.525 +31883,225.23,89.21152 +31884,224.13,90.94154 +31885,225.99,85.8766 +31886,224.96,87.5105 +31887,223.88,89.18311 +31888,222.75,90.89951 +31889,224.7,85.8775 +31890,223.63,87.4964 +31891,222.52,89.15425 +31892,221.36,90.85614 +31893,223.4,85.8796 +31894,222.31,87.4827 +31895,221.17,89.12495 +31896,219.97,90.81144 +31897,222.11,85.8828 +31898,220.98,87.4693 +31899,219.81,89.0952 +31900,218.59,90.76543 +31901,220.81,85.8873 +31902,219.66,87.4564 +31903,218.46,89.06501 +31904,217.2,90.71813 +31905,219.52,85.893 +31906,218.34,87.4439 +31907,217.11,89.03438 +31908,215.82,90.66954 +31909,218.22,85.8998 +31910,217.01,87.4318 +31911,215.75,89.00333 +31912,214.44,90.61968 +31913,216.92,85.9078 +31914,215.69,87.42 +31915,214.4,88.9719 +31916,213.06,90.56856 +31917,215.63,85.9169 +31918,214.36,87.4086 +31919,213.05,88.94 +31920,211.68,90.51621 +31921,214.33,85.9272 +31922,213.03,87.3975 +31923,211.69,88.9077 +31924,210.3,90.46264 +31925,213.03,85.9385 +31926,211.71,87.3869 +31927,210.34,88.875 +31928,208.92,90.40786 +31929,211.72,85.9509 +31930,210.38,87.3765 +31931,208.99,88.8418 +31932,207.54,90.3519 +31933,210.42,85.9644 +31934,209.05,87.3666 +31935,207.64,88.8083 +31936,206.17,90.29477 +31937,209.12,85.9789 +31938,207.73,87.3569 +31939,206.29,88.7744 +31940,204.79,90.23649 +31941,207.81,85.9945 +31942,206.4,87.3476 +31943,204.94,88.7402 +31944,203.42,90.17709 +31945,206.51,86.011 +31946,205.07,87.3387 +31947,203.59,88.7055 +31948,202.05,90.11658 +31949,205.2,86.0286 +31950,203.74,87.33 +31951,202.24,88.6705 +31952,200.68,90.054989 +31953,203.9,86.0471 +31954,202.42,87.3217 +31955,200.89,88.6351 +31956,199.31,89.9923316 +31957,202.59,86.0665 +31958,201.09,87.3136 +31959,199.54,88.5994 +31960,197.94,89.928634 +31961,201.28,86.0869 +31962,199.76,87.3059 +31963,198.19,88.5633 +31964,196.57,89.86392 +31965,199.97,86.1082 +31966,198.43,87.2985 +31967,196.85,88.5269 +31968,195.21,89.79821 +31969,198.65,86.1303 +31970,197.1,87.2913 +31971,195.5,88.4902 +31972,193.84,89.73153 +31973,197.34,86.1533 +31974,195.77,87.2845 +31975,194.15,88.4532 +31976,192.48,89.6639 +31977,196.03,86.1772 +31978,194.44,87.2779 +31979,192.81,88.4158 +31980,191.12,89.59536 +31981,194.71,86.2018 +31982,193.11,87.2715 +31983,191.46,88.3781 +31984,189.76,89.52592 +31985,193.39,86.2272 +31986,191.78,87.2654 +31987,190.11,88.3401 +31988,188.4,89.45561 +31989,192.08,86.2534 +31990,190.45,87.2596 +31991,188.77,88.3019 +31992,187.04,89.38446 +31993,190.76,86.2803 +31994,189.11,87.254 +31995,187.42,88.2634 +31996,185.68,89.31249 +31997,189.44,86.308 +31998,187.78,87.2486 +31999,186.08,88.2246 +32000,184.33,89.23974 +32001,188.12,86.3363 +32002,186.45,87.2435 +32003,184.74,88.1855 +32004,182.97,89.16623 +32005,186.79,86.3652 +32006,185.12,87.2385 +32007,183.39,88.1462 +32008,181.62,89.09198 +32009,185.47,86.3948 +32010,183.78,87.2338 +32011,182.05,88.1066 +32012,180.27,89.01703 +32013,184.14,86.425 +32014,182.45,87.2292 +32015,180.71,88.0668 +32016,178.92,88.9414 +32017,182.82,86.4558 +32018,181.11,87.2249 +32019,179.37,88.0268 +32020,177.57,88.8651 +32021,181.49,86.4871 +32022,179.78,87.2207 +32023,178.03,87.9866 +32024,176.23,88.7883 +32025,180.16,86.5189 +32026,178.44,87.2167 +32027,176.69,87.9462 +32028,174.88,88.7108 +32029,178.83,86.5512 +32030,177.11,87.2128 +32031,175.35,87.9055 +32032,173.54,88.6328 +32033,177.5,86.584 +32034,175.77,87.2091 +32035,174.01,87.8647 +32036,172.19,88.5542 +32037,176.16,86.6173 +32038,174.44,87.2055 +32039,172.67,87.8238 +32040,170.85,88.4752 +32041,174.83,86.6509 +32042,173.1,87.202 +32043,171.33,87.7826 +32044,169.51,88.3957 +32045,173.49,86.6849 +32046,171.76,87.1987 +32047,169.99,87.7413 +32048,168.17,88.3157 +32049,172.16,86.7193 +32050,170.42,87.1955 +32051,168.65,87.6999 +32052,166.84,88.2354 +32053,170.82,86.754 +32054,169.09,87.1924 +32055,167.31,87.6583 +32056,165.5,88.1547 +32057,169.48,86.789 +32058,167.75,87.1893 +32059,165.98,87.6166 +32060,164.17,88.0736 +32061,168.14,86.8243 +32062,166.41,87.1864 +32063,164.64,87.5748 +32064,162.84,87.9923 +32065,166.8,86.8598 +32066,165.07,87.1835 +32067,163.31,87.5329 +32068,161.5,87.9106 +32069,165.45,86.8955 +32070,163.73,87.1806 +32071,161.97,87.4909 +32072,160.17,87.8288 +32073,164.11,86.9314 +32074,162.39,87.1779 +32075,160.64,87.4488 +32076,158.85,87.7467 +32077,162.76,86.9674 +32078,161.05,87.1751 +32079,159.3,87.4067 +32080,157.52,87.6644 +32081,161.41,87.0035 +32082,159.71,87.1724 +32083,157.97,87.3645 +32084,156.19,87.582 +32085,160.06,87.0398 +32086,158.37,87.1697 +32087,156.64,87.3222 +32088,154.87,87.4995 +32089,158.71,87.0761 +32090,157.02,87.167 +32091,155.3,87.2799 +32092,153.55,87.4169 +32093,157.36,87.1124 +32094,155.68,87.1643 +32095,153.97,87.2376 +32096,152.22,87.3343 +32097,156.01,87.1487 +32098,154.34,87.1616 +32099,152.64,87.1952 +32100,150.9,87.2516 +32101,154.65,87.185 +32102,153,87.1589 +32103,151.31,87.1529 +32104,149.59,87.169 +32105,153.3,87.2213 +32106,151.65,87.1562 +32107,149.98,87.1105 +32108,148.27,87.0864 +32109,151.94,87.2574 +32110,150.31,87.1534 +32111,148.65,87.0682 +32112,146.95,87.0038 +32113,150.58,87.2935 +32114,148.97,87.1505 +32115,147.32,87.0259 +32116,145.64,86.9214 +32117,149.22,87.3294 +32118,147.62,87.1476 +32119,145.99,86.9836 +32120,144.32,86.8392 +32121,147.86,87.3651 +32122,146.28,87.1447 +32123,144.66,86.9414 +32124,143.01,86.7571 +32125,146.5,87.4006 +32126,144.93,87.1416 +32127,143.33,86.8992 +32128,141.7,86.6752 +32129,145.14,87.4358 +32130,143.58,87.1385 +32131,142,86.8571 +32132,140.39,86.5936 +32133,143.77,87.4709 +32134,142.24,87.1352 +32135,140.68,86.8151 +32136,139.08,86.5122 +32137,142.41,87.5056 +32138,140.89,87.1319 +32139,139.35,86.7731 +32140,137.78,86.4311 +32141,141.04,87.54 +32142,139.55,87.1284 +32143,138.02,86.7313 +32144,136.47,86.3504 +32145,139.67,87.574 +32146,138.2,87.1248 +32147,136.7,86.6895 +32148,135.17,86.27 +32149,138.3,87.6077 +32150,136.85,87.121 +32151,135.37,86.6479 +32152,133.86,86.19 +32153,136.93,87.6409 +32154,135.5,87.1171 +32155,134.05,86.6064 +32156,132.56,86.1105 +32157,135.56,87.6737 +32158,134.15,87.1131 +32159,132.72,86.5651 +32160,131.26,86.0314 +32161,134.19,87.7061 +32162,132.81,87.1089 +32163,131.4,86.5238 +32164,129.96,85.9528 +32165,132.82,87.738 +32166,131.46,87.1045 +32167,130.07,86.4828 +32168,128.66,85.8746 +32169,131.44,87.7693 +32170,130.11,87.0999 +32171,128.75,86.4419 +32172,127.37,85.7971 +32173,130.07,87.8001 +32174,128.76,87.0951 +32175,127.43,86.4012 +32176,126.07,85.7201 +32177,128.69,87.8304 +32178,127.41,87.0901 +32179,126.1,86.3606 +32180,124.77,85.6437 +32181,127.31,87.86 +32182,126.06,87.0849 +32183,124.78,86.3203 +32184,123.48,85.5679 +32185,125.93,87.889 +32186,124.71,87.0795 +32187,123.46,86.2802 +32188,122.19,85.4928 +32189,124.55,87.9174 +32190,123.36,87.0738 +32191,122.14,86.2402 +32192,120.89,85.4183 +32193,123.17,87.945 +32194,122,87.0679 +32195,120.82,86.2005 +32196,119.6,85.3446 +32197,121.79,87.972 +32198,120.65,87.0618 +32199,119.49,86.1611 +32200,118.31,85.2716 +32201,120.41,87.9983 +32202,119.3,87.0554 +32203,118.17,86.1218 +32204,117.02,85.1993 +32205,119.02,88.0238 +32206,117.95,87.0487 +32207,116.85,86.0829 +32208,115.74,85.1279 +32209,117.64,88.0485 +32210,116.6,87.0417 +32211,115.53,86.0441 +32212,114.45,85.0572 +32213,116.25,88.0724 +32214,115.24,87.0345 +32215,114.21,86.0057 +32216,113.16,84.9874 +32217,114.87,88.0955 +32218,113.89,87.027 +32219,112.9,85.9675 +32220,111.88,84.9184 +32221,113.48,88.1178 +32222,112.54,87.0192 +32223,111.58,85.9295 +32224,110.59,84.8504 +32225,112.09,88.1391 +32226,111.19,87.0111 +32227,110.26,85.8919 +32228,109.31,84.7832 +32229,110.7,88.1596 +32230,109.83,87.0027 +32231,108.94,85.8546 +32232,108.02,84.7169 +32233,109.31,88.1792 +32234,108.48,86.9939 +32235,107.62,85.8176 +32236,106.74,84.6516 +32237,107.92,88.1979 +32238,107.12,86.9848 +32239,106.3,85.7808 +32240,105.46,84.5873 +32241,106.53,88.2155 +32242,105.77,86.9754 +32243,104.99,85.7444 +32244,104.18,84.5239 +32245,105.14,88.2322 +32246,104.42,86.9657 +32247,103.67,85.7083 +32248,102.9,84.4616 +32249,103.75,88.248 +32250,103.06,86.9556 +32251,102.35,85.6726 +32252,101.62,84.4003 +32253,102.35,88.2626 +32254,101.71,86.9451 +32255,101.04,85.6372 +32256,100.34,84.34 +32257,100.96,88.2763 +32258,100.35,86.9343 +32259,99.719,85.6021 +32260,99.061,84.2808 +32261,99.568,88.2889 +32262,98.998,86.9232 +32263,98.402,85.5674 +32264,97.783,84.2227 +32265,98.173,88.3004 +32266,97.642,86.9116 +32267,97.086,85.533 +32268,96.505,84.1657 +32269,96.778,88.3109 +32270,96.287,86.8997 +32271,95.77,85.499 +32272,95.228,84.1098 +32273,95.383,88.3202 +32274,94.932,86.8874 +32275,94.455,85.4654 +32276,93.952,84.0551 +32277,93.987,88.3284 +32278,93.577,86.8747 +32279,93.139,85.4321 +32280,92.676,84.0015 +32281,92.591,88.3355 +32282,92.221,86.8617 +32283,91.824,85.3992 +32284,91.4,83.9491 +32285,91.195,88.3414 +32286,90.866,86.8482 +32287,90.509,85.3667 +32288,90.125,83.8978 +32289,89.798,88.3462 +32290,89.51,86.8343 +32291,89.194,85.3346 +32292,88.85,83.8477 +32293,88.401,88.3497 +32294,88.154,86.82 +32295,87.879,85.3028 +32296,87.575,83.7989 +32297,87.004,88.3521 +32298,86.799,86.8053 +32299,86.564,85.2715 +32300,86.301,83.7512 +32301,85.606,88.3533 +32302,85.443,86.7902 +32303,85.249,85.2406 +32304,85.027,83.7048 +32305,84.208,88.3532 +32306,84.087,86.7747 +32307,83.935,85.21 +32308,83.753,83.6596 +32309,82.811,88.3519 +32310,82.731,86.7587 +32311,82.62,85.1799 +32312,82.48,83.6157 +32313,81.413,88.3494 +32314,81.375,86.7424 +32315,81.306,85.1502 +32316,81.206,83.573 +32317,80.014,88.3455 +32318,80.02,86.7255 +32319,79.992,85.1209 +32320,79.933,83.5317 +32321,78.616,88.3405 +32322,78.664,86.7083 +32323,78.678,85.092 +32324,78.66,83.4915 +32325,77.218,88.3341 +32326,77.308,86.6906 +32327,77.363,85.0635 +32328,77.387,83.4527 +32329,75.82,88.3265 +32330,75.952,86.6725 +32331,76.049,85.0355 +32332,76.114,83.4151 +32333,74.422,88.3176 +32334,74.596,86.654 +32335,74.735,85.0078 +32336,74.841,83.3789 +32337,73.023,88.3074 +32338,73.241,86.635 +32339,73.421,84.9806 +32340,73.567,83.344 +32341,71.625,88.2959 +32342,71.885,86.6155 +32343,72.107,84.9539 +32344,72.294,83.3103 +32345,70.228,88.283 +32346,70.53,86.5957 +32347,70.793,84.9275 +32348,71.021,83.278 +32349,68.83,88.2689 +32350,69.174,86.5753 +32351,69.479,84.9016 +32352,69.748,83.247 +32353,67.432,88.2534 +32354,67.819,86.5546 +32355,68.165,84.8761 +32356,68.474,83.2173 +32357,66.035,88.2366 +32358,66.464,86.5333 +32359,66.851,84.8511 +32360,67.201,83.1889 +32361,64.638,88.2185 +32362,65.108,86.5117 +32363,65.537,84.8265 +32364,65.927,83.1618 +32365,63.242,88.199 +32366,63.753,86.4895 +32367,64.222,84.8023 +32368,64.653,83.1361 +32369,61.845,88.1782 +32370,62.399,86.467 +32371,62.908,84.7786 +32372,63.379,83.1116 +32373,60.449,88.1561 +32374,61.044,86.4439 +32375,61.594,84.7552 +32376,62.104,83.0885 +32377,59.054,88.1326 +32378,59.689,86.4205 +32379,60.279,84.7324 +32380,60.829,83.0667 +32381,57.659,88.1078 +32382,58.335,86.3965 +32383,58.965,84.7099 +32384,59.554,83.0463 +32385,56.264,88.0816 +32386,56.981,86.3722 +32387,57.65,84.6879 +32388,58.278,83.0271 +32389,54.87,88.0542 +32390,55.627,86.3473 +32391,56.336,84.6663 +32392,57.002,83.0092 +32393,53.476,88.0254 +32394,54.273,86.3221 +32395,55.021,84.6452 +32396,55.725,82.9927 +32397,52.083,87.9952 +32398,52.92,86.2963 +32399,53.706,84.6245 +32400,54.448,82.9774 +32401,50.691,87.9638 +32402,51.566,86.2702 +32403,52.391,84.6042 +32404,53.171,82.9635 +32405,49.299,87.931 +32406,50.213,86.2436 +32407,51.075,84.5843 +32408,51.893,82.9508 +32409,47.908,87.8969 +32410,48.86,86.2165 +32411,49.76,84.5648 +32412,50.614,82.9394 +32413,46.518,87.8615 +32414,47.508,86.1891 +32415,48.444,84.5458 +32416,49.335,82.9292 +32417,45.128,87.8248 +32418,46.155,86.1611 +32419,47.129,84.5272 +32420,48.055,82.9204 +32421,43.739,87.7868 +32422,44.803,86.1328 +32423,45.813,84.509 +32424,46.775,82.9128 +32425,42.351,87.7475 +32426,43.451,86.104 +32427,44.496,84.4913 +32428,45.494,82.9064 +32429,40.964,87.707 +32430,42.1,86.0748 +32431,43.18,84.4739 +32432,44.212,82.9013 +32433,39.577,87.6651 +32434,40.749,86.0452 +32435,41.863,84.4569 +32436,42.929,82.8974 +32437,38.192,87.622 +32438,39.398,86.0151 +32439,40.546,84.4404 +32440,41.646,82.8947 +32441,36.807,87.5777 +32442,38.047,85.9846 +32443,39.229,84.4242 +32444,40.362,82.8932 +32445,35.424,87.5321 +32446,36.697,85.9538 +32447,37.912,84.4084 +32448,39.077,82.8929 +32449,34.041,87.4853 +32450,35.347,85.9225 +32451,36.594,84.3931 +32452,37.791,82.8937 +32453,32.659,87.4373 +32454,33.998,85.8908 +32455,35.277,84.3781 +32456,36.504,82.8957 +32457,31.278,87.388 +32458,32.649,85.8587 +32459,33.958,84.3635 +32460,35.217,82.8989 +32461,29.898,87.3376 +32462,31.3,85.8262 +32463,32.64,84.3492 +32464,33.929,82.9032 +32465,28.52,87.286 +32466,29.951,85.7933 +32467,31.321,84.3354 +32468,32.639,82.9086 +32469,27.142,87.2333 +32470,28.603,85.7601 +32471,30.002,84.3219 +32472,31.349,82.9151 +32473,25.766,87.1794 +32474,27.256,85.7264 +32475,28.683,84.3088 +32476,30.058,82.9227 +32477,24.391,87.1244 +32478,25.908,85.6924 +32479,27.363,84.296 +32480,28.765,82.9314 +32481,23.016,87.0683 +32482,24.561,85.658 +32483,26.044,84.2836 +32484,27.472,82.9411 +32485,21.643,87.011 +32486,23.215,85.6233 +32487,24.723,84.2715 +32488,26.178,82.9518 +32489,20.272,86.9528 +32490,21.869,85.5882 +32491,23.403,84.2597 +32492,24.882,82.9635 +32493,18.901,86.8934 +32494,20.523,85.5528 +32495,22.082,84.2483 +32496,23.586,82.9763 +32497,17.532,86.8331 +32498,19.178,85.517 +32499,20.76,84.2372 +32500,22.288,82.99 +32501,16.164,86.7717 +32502,17.833,85.4809 +32503,19.439,84.2265 +32504,20.99,83.0046 +32505,14.797,86.7093 +32506,16.489,85.4444 +32507,18.117,84.216 +32508,19.69,83.0202 +32509,13.432,86.6459 +32510,15.145,85.4077 +32511,16.795,84.2059 +32512,18.389,83.0367 +32513,12.067,86.5816 +32514,13.802,85.3706 +32515,15.472,84.196 +32516,17.087,83.054 +32517,10.705,86.5164 +32518,12.459,85.3332 +32519,14.149,84.1864 +32520,15.783,83.0723 +32521,9.3433,86.4503 +32522,11.116,85.2955 +32523,12.825,84.1772 +32524,14.479,83.0913 +32525,7.9832,86.3832 +32526,9.7744,85.2575 +32527,11.501,84.1681 +32528,13.173,83.1112 +32529,6.6245,86.3154 +32530,8.4329,85.2193 +32531,10.177,84.1594 +32532,11.866,83.1319 +32533,5.2673,86.2467 +32534,7.0919,85.1807 +32535,8.8524,84.1509 +32536,10.558,83.1534 +32537,3.9114,86.1771 +32538,5.7513,85.1419 +32539,7.5273,84.1427 +32540,9.2483,83.1756 +32541,2.557,86.1068 +32542,4.4113,85.1029 +32543,6.2019,84.1347 +32544,7.9375,83.1985 +32545,1.204,86.0357 +32546,3.0717,85.0636 +32547,4.876,84.127 +32548,6.6253,83.2222 +32549,359.85,85.9639 +32550,1.7327,85.024 +32551,3.5497,84.1194 +32552,5.3119,83.2465 +32553,358.5,85.8914 +32554,0.39409,84.9842 +32555,2.223,84.1121 +32556,3.9972,83.2714 +32557,357.15,85.8182 +32558,359.06,84.9442 +32559,0.89582,84.105 +32560,2.6811,83.297 +32561,355.81,85.7444 +32562,357.72,84.904 +32563,359.57,84.0981 +32564,1.3638,83.3232 +32565,354.46,85.6699 +32566,356.38,84.8636 +32567,358.24,84.0914 +32568,0.045012,83.35 +32569,353.12,85.5948 +32570,355.04,84.8229 +32571,356.91,84.0849 +32572,358.72,83.3773 +32573,351.77,85.5192 +32574,353.71,84.7821 +32575,355.58,84.0786 +32576,357.4,83.4051 +32577,350.43,85.443 +32578,352.37,84.7411 +32579,354.25,84.0724 +32580,356.08,83.4334 +32581,349.09,85.3663 +32582,351.04,84.7 +32583,352.92,84.0664 +32584,354.76,83.4621 +32585,347.75,85.2891 +32586,349.7,84.6586 +32587,351.59,84.0605 +32588,353.43,83.4913 +32589,346.42,85.2114 +32590,348.37,84.6172 +32591,350.26,84.0548 +32592,352.1,83.521 +32593,345.08,85.1333 +32594,347.04,84.5756 +32595,348.93,84.0492 +32596,350.78,83.551 +32597,343.75,85.0549 +32598,345.7,84.5338 +32599,347.6,84.0437 +32600,349.45,83.5813 +32601,342.42,84.976 +32602,344.37,84.4919 +32603,346.27,84.0383 +32604,348.11,83.612 +32605,341.09,84.8968 +32606,343.04,84.45 +32607,344.94,84.033 +32608,346.78,83.643 +32609,339.76,84.8174 +32610,341.71,84.4079 +32611,343.6,84.0279 +32612,345.45,83.6742 +32613,338.43,84.7376 +32614,340.38,84.3657 +32615,342.27,84.0227 +32616,344.11,83.7057 +32617,337.1,84.6576 +32618,339.05,84.3235 +32619,340.94,84.0177 +32620,342.78,83.7374 +32621,335.78,84.5774 +32622,337.72,84.2812 +32623,339.6,84.0128 +32624,341.44,83.7693 +32625,334.46,84.4969 +32626,336.39,84.2388 +32627,338.27,84.0078 +32628,340.1,83.8013 +32629,333.14,84.4164 +32630,335.06,84.1963 +32631,336.93,84.003 +32632,338.76,83.8335 +32633,331.82,84.3357 +32634,333.73,84.1539 +32635,335.6,83.9981 +32636,337.42,83.8658 +32637,330.5,84.2549 +32638,332.4,84.1114 +32639,334.26,83.9933 +32640,336.07,83.8981 +32641,329.18,84.1741 +32642,331.08,84.0688 +32643,332.92,83.9885 +32644,334.73,83.9305 +32645,327.86,84.0932 +32646,329.75,84.0263 +32647,331.59,83.9837 +32648,333.38,83.9629 +32649,326.55,84.0123 +32650,328.42,83.9838 +32651,330.25,83.9789 +32652,332.03,83.9953 +32653,325.24,83.9315 +32654,327.1,83.9412 +32655,328.91,83.9741 +32656,330.68,84.0276 +32657,323.93,83.8507 +32658,325.77,83.8987 +32659,327.57,83.9693 +32660,329.33,84.0599 +32661,322.62,83.77 +32662,324.45,83.8562 +32663,326.24,83.9644 +32664,327.98,84.092 +32665,321.31,83.6895 +32666,323.13,83.8138 +32667,324.9,83.9595 +32668,326.63,84.124 +32669,320,83.6091 +32670,321.8,83.7714 +32671,323.56,83.9545 +32672,325.27,84.1559 +32673,318.7,83.5288 +32674,320.48,83.7291 +32675,322.22,83.9494 +32676,323.92,84.1876 +32677,317.39,83.4488 +32678,319.16,83.6868 +32679,320.88,83.9443 +32680,322.56,84.2191 +32681,316.09,83.3691 +32682,317.83,83.6446 +32683,319.54,83.9391 +32684,321.2,84.2503 +32685,314.79,83.2896 +32686,316.51,83.6025 +32687,318.2,83.9338 +32688,319.84,84.2812 +32689,313.49,83.2104 +32690,315.19,83.5606 +32691,316.85,83.9285 +32692,318.48,84.3119 +32693,312.19,83.1316 +32694,313.87,83.5187 +32695,315.51,83.9229 +32696,317.12,84.3422 +32697,310.89,83.0531 +32698,312.55,83.4769 +32699,314.17,83.9173 +32700,315.75,84.3722 +32701,309.59,82.975 +32702,311.23,83.4353 +32703,312.83,83.9116 +32704,314.39,84.4018 +32705,308.3,82.8974 +32706,309.91,83.3938 +32707,311.48,83.9057 +32708,313.02,84.431 +32709,307.01,82.8202 +32710,308.59,83.3524 +32711,310.14,83.8997 +32712,311.65,84.4598 +32713,305.71,82.7434 +32714,307.27,83.3112 +32715,308.8,83.8935 +32716,310.29,84.4881 +32717,304.42,82.6672 +32718,305.96,83.2702 +32719,307.45,83.8871 +32720,308.92,84.5159 +32721,303.13,82.5915 +32722,304.64,83.2293 +32723,306.11,83.8806 +32724,307.54,84.5432 +32725,301.84,82.5164 +32726,303.32,83.1887 +32727,304.76,83.8738 +32728,306.17,84.5699 +32729,300.56,82.4419 +32730,302,83.1482 +32731,303.42,83.8669 +32732,304.8,84.5961 +32733,299.27,82.368 +32734,300.69,83.1079 +32735,302.07,83.8598 +32736,303.42,84.6217 +32737,297.98,82.2948 +32738,299.37,83.0679 +32739,300.73,83.8525 +32740,302.05,84.6467 +32741,296.7,82.2222 +32742,298.06,83.028 +32743,299.38,83.845 +32744,300.67,84.6711 +32745,295.42,82.1503 +32746,296.74,82.9884 +32747,298.03,83.8372 +32748,299.3,84.6948 +32749,294.13,82.0792 +32750,295.43,82.949 +32751,296.69,83.8292 +32752,297.92,84.7178 +32753,292.85,82.0088 +32754,294.11,82.9099 +32755,295.34,83.821 +32756,296.54,84.7401 +32757,291.57,81.9391 +32758,292.8,82.871 +32759,293.99,83.8125 +32760,295.16,84.7617 +32761,290.29,81.8703 +32762,291.48,82.8324 +32763,292.65,83.8037 +32764,293.78,84.7825 +32765,289.02,81.8023 +32766,290.17,82.794 +32767,291.3,83.7947 +32768,292.39,84.8025 +32769,287.74,81.7351 +32770,288.86,82.756 +32771,289.95,83.7854 +32772,291.01,84.8217 +32773,286.46,81.6688 +32774,287.55,82.7182 +32775,288.6,83.7759 +32776,289.63,84.8401 +32777,285.19,81.6034 +32778,286.23,82.6807 +32779,287.25,83.766 +32780,288.24,84.8577 +32781,283.91,81.5389 +32782,284.92,82.6435 +32783,285.9,83.7559 +32784,286.85,84.8744 +32785,282.64,81.4754 +32786,283.61,82.6066 +32787,284.55,83.7454 +32788,285.47,84.8902 +32789,281.36,81.4127 +32790,282.3,82.57 +32791,283.2,83.7347 +32792,284.08,84.9051 +32793,280.09,81.3511 +32794,280.99,82.5337 +32795,281.85,83.7236 +32796,282.69,84.9191 +32797,278.82,81.2904 +32798,279.68,82.4978 +32799,280.5,83.7122 +32800,281.3,84.9322 +32801,277.55,81.2308 +32802,278.37,82.4622 +32803,279.15,83.7005 +32804,279.91,84.9442 +32805,276.28,81.1722 +32806,277.06,82.4269 +32807,277.8,83.6885 +32808,278.52,84.9553 +32809,275.01,81.1147 +32810,275.75,82.392 +32811,276.45,83.6761 +32812,277.13,84.9655 +32813,273.74,81.0582 +32814,274.44,82.3574 +32815,275.1,83.6634 +32816,275.74,84.9746 +32817,272.47,81.0027 +32818,273.13,82.3232 +32819,273.75,83.6503 +32820,274.35,84.9826 +32821,271.2,80.9484 +32822,271.82,82.2893 +32823,272.4,83.6369 +32824,272.96,84.9896 +32825,269.94,80.8952 +32826,270.51,82.2558 +32827,271.05,83.6231 +32828,271.56,84.9956 +32829,268.67,80.8432 +32830,269.2,82.2227 +32831,269.7,83.6089 +32832,270.17,85.0005 +32833,267.4,80.7922 +32834,267.89,82.1899 +32835,268.35,83.5944 +32836,268.78,85.0043 +32837,266.14,80.7425 +32838,266.58,82.1576 +32839,267,83.5795 +32840,267.38,85.007 +32841,264.87,80.6939 +32842,265.27,82.1256 +32843,265.64,83.5643 +32844,265.99,85.0085 +32845,263.6,80.6464 +32846,263.96,82.094 +32847,264.29,83.5486 +32848,264.59,85.009 +32849,262.34,80.6002 +32850,262.65,82.0628 +32851,262.94,83.5326 +32852,263.2,85.0082 +32853,261.07,80.5552 +32854,261.35,82.032 +32855,261.59,83.5161 +32856,261.8,85.0064 +32857,259.81,80.5114 +32858,260.04,82.0016 +32859,260.24,83.4993 +32860,260.41,85.0034 +32861,258.54,80.4688 +32862,258.73,81.9716 +32863,258.89,83.4821 +32864,259.01,84.9991 +32865,257.28,80.4274 +32866,257.42,81.942 +32867,257.53,83.4644 +32868,257.61,84.9938 +32869,256.02,80.3873 +32870,256.11,81.9128 +32871,256.18,83.4464 +32872,256.22,84.9872 +32873,254.75,80.3484 +32874,254.81,81.884 +32875,254.83,83.428 +32876,254.82,84.9794 +32877,253.49,80.3108 +32878,253.5,81.8557 +32879,253.48,83.4091 +32880,253.42,84.9704 +32881,252.22,80.2745 +32882,252.19,81.8278 +32883,252.13,83.3899 +32884,252.03,84.9602 +32885,250.96,80.2394 +32886,250.88,81.8002 +32887,250.77,83.3702 +32888,250.63,84.9487 +32889,249.7,80.2056 +32890,249.58,81.7731 +32891,249.42,83.3501 +32892,249.23,84.936 +32893,248.43,80.1731 +32894,248.27,81.7465 +32895,248.07,83.3297 +32896,247.84,84.9221 +32897,247.17,80.1418 +32898,246.96,81.7202 +32899,246.72,83.3087 +32900,246.44,84.9069 +32901,245.9,80.1118 +32902,245.65,81.6944 +32903,245.37,83.2874 +32904,245.05,84.8905 +32905,244.64,80.0831 +32906,244.35,81.669 +32907,244.02,83.2657 +32908,243.65,84.8729 +32909,243.38,80.0557 +32910,243.04,81.644 +32911,242.67,83.2435 +32912,242.25,84.8539 +32913,242.11,80.0296 +32914,241.73,81.6195 +32915,241.31,83.2209 +32916,240.86,84.8338 +32917,240.85,80.0048 +32918,240.42,81.5953 +32919,239.96,83.1979 +32920,239.46,84.8123 +32921,239.58,79.981 +32922,239.12,81.5717 +32923,238.61,83.1744 +32924,238.07,84.7896 +32925,238.32,79.959 +32926,237.81,81.5484 +32927,237.26,83.1506 +32928,236.67,84.7657 +32929,237.05,79.938 +32930,236.5,81.5255 +32931,235.91,83.1263 +32932,235.28,84.7405 +32933,235.78,79.918 +32934,235.19,81.5031 +32935,234.56,83.1016 +32936,233.88,84.714 +32937,234.52,79.9 +32938,233.88,81.4811 +32939,233.21,83.0765 +32940,232.49,84.6863 +32941,233.25,79.883 +32942,232.57,81.4596 +32943,231.86,83.051 +32944,231.1,84.6573 +32945,231.98,79.867 +32946,231.27,81.4384 +32947,230.51,83.025 +32948,229.71,84.627 +32949,230.71,79.852 +32950,229.96,81.4177 +32951,229.16,82.9986 +32952,228.31,84.5956 +32953,229.45,79.839 +32954,228.65,81.3974 +32955,227.81,82.9718 +32956,226.92,84.5628 +32957,228.18,79.827 +32958,227.34,81.3775 +32959,226.46,82.9447 +32960,225.53,84.5289 +32961,226.91,79.816 +32962,226.03,81.3581 +32963,225.11,82.917 +32964,224.14,84.4936 +32965,225.64,79.806 +32966,224.72,81.339 +32967,223.76,82.889 +32968,222.75,84.4572 +32969,224.36,79.798 +32970,223.41,81.3204 +32971,222.41,82.8606 +32972,221.36,84.4195 +32973,223.09,79.79 +32974,222.1,81.3021 +32975,221.07,82.8318 +32976,219.98,84.3807 +32977,221.82,79.784 +32978,220.79,81.2843 +32979,219.72,82.8026 +32980,218.59,84.3406 +32981,220.55,79.78 +32982,219.48,81.2669 +32983,218.37,82.7729 +32984,217.2,84.2993 +32985,219.27,79.776 +32986,218.17,81.2498 +32987,217.02,82.7429 +32988,215.82,84.2568 +32989,218,79.774 +32990,216.86,81.2332 +32991,215.68,82.7125 +32992,214.43,84.2132 +32993,216.72,79.772 +32994,215.55,81.2169 +32995,214.33,82.6817 +32996,213.05,84.1684 +32997,215.45,79.772 +32998,214.24,81.201 +32999,212.98,82.6506 +33000,211.67,84.1224 +33001,214.17,79.773 +33002,212.93,81.1856 +33003,211.64,82.619 +33004,210.29,84.0753 +33005,212.89,79.775 +33006,211.62,81.1704 +33007,210.29,82.5871 +33008,208.91,84.027 +33009,211.61,79.778 +33010,210.3,81.1557 +33011,208.95,82.5548 +33012,207.53,83.9776 +33013,210.33,79.783 +33014,208.99,81.1413 +33015,207.6,82.5221 +33016,206.15,83.9271 +33017,209.05,79.788 +33018,207.68,81.1273 +33019,206.26,82.4891 +33020,204.77,83.8756 +33021,207.77,79.794 +33022,206.37,81.1137 +33023,204.91,82.4558 +33024,203.39,83.8229 +33025,206.48,79.802 +33026,205.05,81.1003 +33027,203.57,82.422 +33028,202.02,83.7692 +33029,205.2,79.81 +33030,203.74,81.0874 +33031,202.22,82.388 +33032,200.64,83.7144 +33033,203.92,79.82 +33034,202.43,81.0748 +33035,200.88,82.3536 +33036,199.27,83.6586 +33037,202.63,79.83 +33038,201.11,81.0625 +33039,199.54,82.3189 +33040,197.9,83.6018 +33041,201.34,79.842 +33042,199.8,81.0505 +33043,198.2,82.2838 +33044,196.53,83.544 +33045,200.05,79.854 +33046,198.48,81.0389 +33047,196.85,82.2484 +33048,195.16,83.4852 +33049,198.76,79.867 +33050,197.17,81.0275 +33051,195.51,82.2128 +33052,193.79,83.4255 +33053,197.47,79.881 +33054,195.85,81.0165 +33055,194.17,82.1768 +33056,192.43,83.3648 +33057,196.18,79.897 +33058,194.54,81.0058 +33059,192.83,82.1405 +33060,191.06,83.3032 +33061,194.89,79.912 +33062,193.22,80.9954 +33063,191.49,82.1039 +33064,189.7,83.2407 +33065,193.59,79.929 +33066,191.9,80.9853 +33067,190.15,82.067 +33068,188.33,83.1773 +33069,192.3,79.947 +33070,190.58,80.9754 +33071,188.81,82.0299 +33072,186.97,83.1131 +33073,191,79.965 +33074,189.27,80.9658 +33075,187.47,81.9925 +33076,185.61,83.048 +33077,189.7,79.984 +33078,187.95,80.9565 +33079,186.14,81.9548 +33080,184.25,82.9821 +33081,188.4,80.0042 +33082,186.63,80.9474 +33083,184.8,81.9169 +33084,182.9,82.9155 +33085,187.1,80.0249 +33086,185.31,80.9386 +33087,183.46,81.8787 +33088,181.54,82.848 +33089,185.8,80.0462 +33090,183.99,80.93 +33091,182.13,81.8403 +33092,180.19,82.7798 +33093,184.49,80.0682 +33094,182.67,80.9217 +33095,180.79,81.8016 +33096,178.84,82.7109 +33097,183.19,80.0909 +33098,181.35,80.9136 +33099,179.45,81.7627 +33100,177.48,82.6413 +33101,181.88,80.1142 +33102,180.03,80.9057 +33103,178.12,81.7236 +33104,176.13,82.571 +33105,180.57,80.1381 +33106,178.71,80.898 +33107,176.78,81.6843 +33108,174.79,82.5001 +33109,179.26,80.1626 +33110,177.39,80.8905 +33111,175.45,81.6449 +33112,173.44,82.4286 +33113,177.95,80.1876 +33114,176.07,80.8832 +33115,174.12,81.6052 +33116,172.1,82.3564 +33117,176.64,80.2132 +33118,174.74,80.8761 +33119,172.78,81.5653 +33120,170.75,82.2837 +33121,175.33,80.2392 +33122,173.42,80.8692 +33123,171.45,81.5253 +33124,169.41,82.2105 +33125,174.01,80.2657 +33126,172.1,80.8624 +33127,170.12,81.4851 +33128,168.07,82.1367 +33129,172.7,80.2927 +33130,170.77,80.8558 +33131,168.79,81.4447 +33132,166.73,82.0625 +33133,171.38,80.3201 +33134,169.45,80.8493 +33135,167.46,81.4042 +33136,165.39,81.9877 +33137,170.06,80.3479 +33138,168.12,80.843 +33139,166.13,81.3636 +33140,164.06,81.9126 +33141,168.74,80.3761 +33142,166.8,80.8368 +33143,164.8,81.3228 +33144,162.72,81.837 +33145,167.42,80.4046 +33146,165.47,80.8307 +33147,163.47,81.2819 +33148,161.39,81.7611 +33149,166.09,80.4334 +33150,164.15,80.8248 +33151,162.14,81.2409 +33152,160.06,81.6848 +33153,164.77,80.4625 +33154,162.82,80.8189 +33155,160.81,81.1999 +33156,158.73,81.6082 +33157,163.44,80.4918 +33158,161.49,80.8131 +33159,159.48,81.1587 +33160,157.41,81.5314 +33161,162.11,80.5214 +33162,160.17,80.8075 +33163,158.16,81.1174 +33164,156.08,81.4542 +33165,160.78,80.5511 +33166,158.84,80.8018 +33167,156.83,81.0761 +33168,154.76,81.3768 +33169,159.45,80.5811 +33170,157.51,80.7963 +33171,155.51,81.0347 +33172,153.43,81.2993 +33173,158.12,80.6112 +33174,156.18,80.7908 +33175,154.18,80.9933 +33176,152.11,81.2215 +33177,156.79,80.6414 +33178,154.85,80.7854 +33179,152.85,80.9518 +33180,150.79,81.1436 +33181,155.45,80.6717 +33182,153.52,80.7799 +33183,151.53,80.9103 +33184,149.47,81.0656 +33185,154.11,80.7021 +33186,152.19,80.7746 +33187,150.21,80.8688 +33188,148.16,80.9875 +33189,152.78,80.7324 +33190,150.86,80.7692 +33191,148.88,80.8272 +33192,146.84,80.9093 +33193,151.44,80.7628 +33194,149.53,80.7638 +33195,147.56,80.7857 +33196,145.53,80.8311 +33197,150.09,80.7932 +33198,148.2,80.7585 +33199,146.24,80.7441 +33200,144.22,80.7529 +33201,148.75,80.8235 +33202,146.86,80.7531 +33203,144.92,80.7026 +33204,142.91,80.6748 +33205,147.41,80.8538 +33206,145.53,80.7477 +33207,143.6,80.6611 +33208,141.6,80.5967 +33209,146.06,80.8839 +33210,144.2,80.7423 +33211,142.28,80.6197 +33212,140.29,80.5187 +33213,144.71,80.9139 +33214,142.86,80.7368 +33215,140.96,80.5783 +33216,138.99,80.4408 +33217,143.37,80.9438 +33218,141.53,80.7313 +33219,139.64,80.5369 +33220,137.68,80.3631 +33221,142.02,80.9734 +33222,140.19,80.7258 +33223,138.32,80.4956 +33224,136.38,80.2856 +33225,140.66,81.0028 +33226,138.86,80.7201 +33227,137,80.4544 +33228,135.08,80.2083 +33229,139.31,81.032 +33230,137.52,80.7144 +33231,135.68,80.4133 +33232,133.78,80.1312 +33233,137.96,81.061 +33234,136.19,80.7086 +33235,134.36,80.3722 +33236,132.48,80.0544 +33237,136.6,81.0896 +33238,134.85,80.7027 +33239,133.05,80.3313 +33240,131.19,79.978 +33241,135.25,81.1179 +33242,133.51,80.6967 +33243,131.73,80.2905 +33244,129.89,79.902 +33245,133.89,81.1458 +33246,132.18,80.6906 +33247,130.42,80.2498 +33248,128.6,79.826 +33249,132.53,81.1734 +33250,130.84,80.6844 +33251,129.1,80.2092 +33252,127.31,79.75 +33253,131.17,81.2005 +33254,129.5,80.678 +33255,127.78,80.1688 +33256,126.02,79.675 +33257,129.8,81.2273 +33258,128.16,80.6715 +33259,126.47,80.1285 +33260,124.73,79.601 +33261,128.44,81.2536 +33262,126.82,80.6649 +33263,125.16,80.0884 +33264,123.44,79.527 +33265,127.08,81.2794 +33266,125.48,80.6581 +33267,123.84,80.0485 +33268,122.15,79.453 +33269,125.71,81.3047 +33270,124.14,80.6511 +33271,122.53,80.0087 +33272,120.87,79.38 +33273,124.34,81.3294 +33274,122.8,80.6439 +33275,121.22,79.969 +33276,119.58,79.307 +33277,122.98,81.3536 +33278,121.46,80.6366 +33279,119.91,79.93 +33280,118.3,79.235 +33281,121.61,81.3773 +33282,120.12,80.6291 +33283,118.59,79.891 +33284,117.02,79.164 +33285,120.23,81.4003 +33286,118.78,80.6214 +33287,117.28,79.852 +33288,115.74,79.093 +33289,118.86,81.4227 +33290,117.44,80.6134 +33291,115.97,79.813 +33292,114.46,79.023 +33293,117.49,81.4445 +33294,116.1,80.6053 +33295,114.66,79.774 +33296,113.18,78.954 +33297,116.12,81.4655 +33298,114.75,80.5969 +33299,113.35,79.736 +33300,111.9,78.885 +33301,114.74,81.4859 +33302,113.41,80.5883 +33303,112.04,79.698 +33304,110.63,78.817 +33305,113.36,81.5056 +33306,112.07,80.5795 +33307,110.73,79.66 +33308,109.35,78.75 +33309,111.99,81.5245 +33310,110.73,80.5704 +33311,109.42,79.623 +33312,108.08,78.683 +33313,110.61,81.5427 +33314,109.38,80.5611 +33315,108.11,79.585 +33316,106.81,78.618 +33317,109.23,81.5601 +33318,108.04,80.5515 +33319,106.81,79.548 +33320,105.53,78.553 +33321,107.85,81.5767 +33322,106.69,80.5416 +33323,105.5,79.512 +33324,104.26,78.489 +33325,106.47,81.5924 +33326,105.35,80.5315 +33327,104.19,79.475 +33328,102.99,78.426 +33329,105.09,81.6074 +33330,104,80.5211 +33331,102.88,79.439 +33332,101.73,78.364 +33333,103.7,81.6214 +33334,102.66,80.5104 +33335,101.58,79.403 +33336,100.46,78.302 +33337,102.32,81.6346 +33338,101.31,80.4994 +33339,100.27,79.368 +33340,99.191,78.242 +33341,100.93,81.6469 +33342,99.967,80.4881 +33343,98.965,79.333 +33344,97.925,78.182 +33345,99.549,81.6583 +33346,98.621,80.4765 +33347,97.659,79.298 +33348,96.66,78.124 +33349,98.162,81.6687 +33350,97.275,80.4645 +33351,96.353,79.263 +33352,95.396,78.066 +33353,96.775,81.6782 +33354,95.929,80.4523 +33355,95.048,79.229 +33356,94.132,78.01 +33357,95.388,81.6867 +33358,94.582,80.4398 +33359,93.743,79.195 +33360,92.869,77.954 +33361,93.999,81.6942 +33362,93.235,80.4269 +33363,92.438,79.162 +33364,91.606,77.9 +33365,92.61,81.7008 +33366,91.888,80.4136 +33367,91.133,79.128 +33368,90.345,77.847 +33369,91.22,81.7063 +33370,90.541,80.4001 +33371,89.829,79.096 +33372,89.084,77.794 +33373,89.83,81.7108 +33374,89.194,80.3862 +33375,88.525,79.063 +33376,87.823,77.743 +33377,88.439,81.7142 +33378,87.846,80.3719 +33379,87.221,79.031 +33380,86.563,77.693 +33381,87.047,81.7166 +33382,86.498,80.3573 +33383,85.917,78.999 +33384,85.304,77.644 +33385,85.656,81.7179 +33386,85.151,80.3424 +33387,84.614,78.968 +33388,84.045,77.596 +33389,84.263,81.7182 +33390,83.803,80.327 +33391,83.311,78.937 +33392,82.786,77.55 +33393,82.87,81.7173 +33394,82.455,80.3113 +33395,82.007,78.906 +33396,81.528,77.504 +33397,81.477,81.7154 +33398,81.107,80.2953 +33399,80.704,78.876 +33400,80.271,77.46 +33401,80.083,81.7123 +33402,79.758,80.2788 +33403,79.402,78.846 +33404,79.013,77.416 +33405,78.689,81.7081 +33406,78.41,80.262 +33407,78.099,78.817 +33408,77.756,77.374 +33409,77.295,81.7028 +33410,77.061,80.2448 +33411,76.796,78.788 +33412,76.5,77.333 +33413,75.901,81.6963 +33414,75.713,80.2273 +33415,75.494,78.759 +33416,75.243,77.294 +33417,74.506,81.6887 +33418,74.365,80.2093 +33419,74.191,78.731 +33420,73.987,77.255 +33421,73.111,81.6799 +33422,73.016,80.1909 +33423,72.889,78.703 +33424,72.731,77.218 +33425,71.716,81.67 +33426,71.667,80.1722 +33427,71.587,78.676 +33428,71.475,77.182 +33429,70.321,81.6588 +33430,70.319,80.1531 +33431,70.285,78.649 +33432,70.219,77.147 +33433,68.925,81.6465 +33434,68.97,80.1335 +33435,68.982,78.622 +33436,68.963,77.114 +33437,67.53,81.633 +33438,67.622,80.1136 +33439,67.68,78.596 +33440,67.707,77.082 +33441,66.134,81.6183 +33442,66.273,80.0933 +33443,66.378,78.57 +33444,66.451,77.051 +33445,64.739,81.6025 +33446,64.925,80.0726 +33447,65.076,78.545 +33448,65.195,77.021 +33449,63.344,81.5854 +33450,63.576,80.0514 +33451,63.774,78.52 +33452,63.939,76.992 +33453,61.948,81.5671 +33454,62.228,80.0299 +33455,62.472,78.496 +33456,62.683,76.965 +33457,60.553,81.5476 +33458,60.879,80.008 +33459,61.17,78.472 +33460,61.427,76.939 +33461,59.158,81.527 +33462,59.531,79.986 +33463,59.868,78.448 +33464,60.171,76.914 +33465,57.764,81.5051 +33466,58.183,79.963 +33467,58.566,78.425 +33468,58.914,76.891 +33469,56.369,81.482 +33470,56.835,79.94 +33471,57.263,78.402 +33472,57.657,76.869 +33473,54.975,81.4577 +33474,55.487,79.916 +33475,55.961,78.379 +33476,56.4,76.848 +33477,53.581,81.4321 +33478,54.139,79.892 +33479,54.659,78.357 +33480,55.143,76.828 +33481,52.187,81.4054 +33482,52.791,79.868 +33483,53.356,78.336 +33484,53.885,76.809 +33485,50.794,81.3775 +33486,51.444,79.843 +33487,52.054,78.315 +33488,52.627,76.792 +33489,49.401,81.3484 +33490,50.096,79.818 +33491,50.751,78.294 +33492,51.368,76.776 +33493,48.009,81.3181 +33494,48.749,79.793 +33495,49.448,78.274 +33496,50.109,76.761 +33497,46.617,81.2865 +33498,47.402,79.767 +33499,48.145,78.254 +33500,48.85,76.748 +33501,45.226,81.2538 +33502,46.055,79.74 +33503,46.842,78.234 +33504,47.59,76.736 +33505,43.835,81.22 +33506,44.709,79.714 +33507,45.539,78.215 +33508,46.329,76.725 +33509,42.445,81.1849 +33510,43.362,79.686 +33511,44.235,78.196 +33512,45.068,76.715 +33513,41.055,81.1486 +33514,42.016,79.659 +33515,42.932,78.178 +33516,43.806,76.706 +33517,39.666,81.1112 +33518,40.67,79.631 +33519,41.628,78.16 +33520,42.544,76.699 +33521,38.278,81.0727 +33522,39.325,79.603 +33523,40.324,78.143 +33524,41.28,76.692 +33525,36.89,81.033 +33526,37.979,79.574 +33527,39.019,78.126 +33528,40.016,76.687 +33529,35.504,80.9921 +33530,36.634,79.545 +33531,37.715,78.109 +33532,38.752,76.683 +33533,34.118,80.9501 +33534,35.289,79.516 +33535,36.41,78.093 +33536,37.486,76.68 +33537,32.733,80.907 +33538,33.945,79.486 +33539,35.105,78.077 +33540,36.22,76.679 +33541,31.348,80.8628 +33542,32.601,79.456 +33543,33.8,78.061 +33544,34.953,76.678 +33545,29.965,80.8174 +33546,31.257,79.425 +33547,32.495,78.046 +33548,33.685,76.679 +33549,28.583,80.771 +33550,29.913,79.394 +33551,31.189,78.031 +33552,32.417,76.68 +33553,27.201,80.7235 +33554,28.57,79.363 +33555,29.883,78.017 +33556,31.147,76.683 +33557,25.821,80.675 +33558,27.227,79.332 +33559,28.576,78.003 +33560,29.876,76.687 +33561,24.441,80.6253 +33562,25.885,79.3 +33563,27.27,77.989 +33564,28.605,76.692 +33565,23.063,80.5747 +33566,24.542,79.268 +33567,25.963,77.975 +33568,27.332,76.698 +33569,21.685,80.523 +33570,23.201,79.235 +33571,24.656,77.962 +33572,26.058,76.705 +33573,20.309,80.4703 +33574,21.859,79.202 +33575,23.348,77.95 +33576,24.784,76.713 +33577,18.934,80.4166 +33578,20.518,79.169 +33579,22.04,77.937 +33580,23.508,76.722 +33581,17.56,80.362 +33582,19.178,79.135 +33583,20.732,77.925 +33584,22.231,76.732 +33585,16.187,80.3064 +33586,17.837,79.101 +33587,19.423,77.914 +33588,20.953,76.742 +33589,14.816,80.2498 +33590,16.498,79.067 +33591,18.114,77.902 +33592,19.674,76.754 +33593,13.446,80.1923 +33594,15.158,79.033 +33595,16.804,77.891 +33596,18.394,76.767 +33597,12.077,80.1339 +33598,13.819,78.998 +33599,15.495,77.881 +33600,17.112,76.781 +33601,10.709,80.0747 +33602,12.481,78.963 +33603,14.185,77.87 +33604,15.829,76.795 +33605,9.3426,80.0145 +33606,11.143,78.927 +33607,12.874,77.86 +33608,14.546,76.81 +33609,7.9776,79.954 +33610,9.8054,78.892 +33611,11.563,77.85 +33612,13.26,76.827 +33613,6.6139,79.892 +33614,8.4684,78.856 +33615,10.252,77.84 +33616,11.974,76.844 +33617,5.2517,79.829 +33618,7.1318,78.82 +33619,8.9397,77.831 +33620,10.686,76.861 +33621,3.8908,79.766 +33622,5.7956,78.783 +33623,7.6275,77.822 +33624,9.397,76.88 +33625,2.5314,79.701 +33626,4.46,78.747 +33627,6.3148,77.813 +33628,8.1066,76.899 +33629,1.1735,79.636 +33630,3.1249,78.71 +33631,5.0017,77.805 +33632,6.8148,76.919 +33633,359.82,79.571 +33634,1.7902,78.673 +33635,3.6882,77.796 +33636,5.5217,76.94 +33637,358.46,79.504 +33638,0.4561,78.635 +33639,2.3742,77.788 +33640,4.2272,76.961 +33641,357.11,79.437 +33642,359.12,78.598 +33643,1.0597,77.78 +33644,2.9313,76.983 +33645,355.76,79.37 +33646,357.79,78.56 +33647,359.74,77.773 +33648,1.6339,77.006 +33649,354.41,79.301 +33650,356.46,78.522 +33651,358.43,77.765 +33652,0.3352,77.029 +33653,353.06,79.232 +33654,355.12,78.484 +33655,357.11,77.758 +33656,359.04,77.053 +33657,351.71,79.163 +33658,353.79,78.445 +33659,355.8,77.751 +33660,357.73,77.077 +33661,350.36,79.093 +33662,352.46,78.407 +33663,354.48,77.744 +33664,356.43,77.102 +33665,349.02,79.022 +33666,351.13,78.368 +33667,353.16,77.737 +33668,355.13,77.127 +33669,347.68,78.951 +33670,349.8,78.329 +33671,351.85,77.731 +33672,353.82,77.153 +33673,346.34,78.88 +33674,348.47,78.29 +33675,350.53,77.724 +33676,352.51,77.18 +33677,345,78.808 +33678,347.14,78.251 +33679,349.21,77.718 +33680,351.2,77.206 +33681,343.66,78.735 +33682,345.82,78.212 +33683,347.89,77.712 +33684,349.89,77.233 +33685,342.32,78.662 +33686,344.49,78.173 +33687,346.57,77.706 +33688,348.58,77.261 +33689,340.99,78.589 +33690,343.16,78.133 +33691,345.25,77.7 +33692,347.27,77.289 +33693,339.66,78.515 +33694,341.83,78.093 +33695,343.93,77.695 +33696,345.95,77.317 +33697,338.33,78.441 +33698,340.51,78.054 +33699,342.61,77.689 +33700,344.64,77.345 +33701,337,78.367 +33702,339.18,78.014 +33703,341.29,77.684 +33704,343.32,77.374 +33705,335.67,78.293 +33706,337.86,77.974 +33707,339.96,77.678 +33708,342,77.403 +33709,334.34,78.218 +33710,336.53,77.934 +33711,338.64,77.673 +33712,340.68,77.432 +33713,333.02,78.143 +33714,335.21,77.894 +33715,337.32,77.667 +33716,339.35,77.461 +33717,331.7,78.068 +33718,333.89,77.854 +33719,335.99,77.662 +33720,338.03,77.49 +33721,330.38,77.993 +33722,332.56,77.814 +33723,334.67,77.657 +33724,336.7,77.52 +33725,329.06,77.918 +33726,331.24,77.774 +33727,333.34,77.652 +33728,335.38,77.55 +33729,327.74,77.842 +33730,329.92,77.734 +33731,332.02,77.647 +33732,334.05,77.579 +33733,326.42,77.767 +33734,328.6,77.693 +33735,330.69,77.642 +33736,332.72,77.609 +33737,325.11,77.691 +33738,327.28,77.653 +33739,329.37,77.637 +33740,331.38,77.639 +33741,323.8,77.615 +33742,325.96,77.613 +33743,328.04,77.632 +33744,330.05,77.668 +33745,322.49,77.54 +33746,324.64,77.573 +33747,326.71,77.627 +33748,328.72,77.698 +33749,321.18,77.464 +33750,323.32,77.533 +33751,325.39,77.621 +33752,327.38,77.728 +33753,319.87,77.389 +33754,322,77.493 +33755,324.06,77.616 +33756,326.04,77.757 +33757,318.56,77.314 +33758,320.69,77.453 +33759,322.73,77.611 +33760,324.7,77.786 +33761,317.26,77.239 +33762,319.37,77.413 +33763,321.4,77.606 +33764,323.36,77.816 +33765,315.96,77.164 +33766,318.05,77.373 +33767,320.07,77.601 +33768,322.02,77.845 +33769,314.66,77.089 +33770,316.74,77.333 +33771,318.74,77.595 +33772,320.67,77.873 +33773,313.36,77.014 +33774,315.42,77.293 +33775,317.41,77.59 +33776,319.33,77.902 +33777,312.06,76.94 +33778,314.11,77.253 +33779,316.08,77.584 +33780,317.98,77.93 +33781,310.76,76.866 +33782,312.79,77.214 +33783,314.75,77.579 +33784,316.63,77.958 +33785,309.47,76.792 +33786,311.48,77.174 +33787,313.41,77.573 +33788,315.28,77.986 +33789,308.17,76.719 +33790,310.16,77.135 +33791,312.08,77.567 +33792,313.93,78.013 +33793,306.88,76.645 +33794,308.85,77.096 +33795,310.75,77.562 +33796,312.58,78.04 +33797,305.59,76.573 +33798,307.54,77.057 +33799,309.41,77.556 +33800,311.22,78.067 +33801,304.3,76.501 +33802,306.23,77.018 +33803,308.08,77.549 +33804,309.87,78.093 +33805,303.02,76.429 +33806,304.92,76.979 +33807,306.75,77.543 +33808,308.51,78.119 +33809,301.73,76.357 +33810,303.61,76.94 +33811,305.41,77.537 +33812,307.15,78.144 +33813,300.45,76.287 +33814,302.3,76.902 +33815,304.08,77.53 +33816,305.79,78.169 +33817,299.17,76.216 +33818,300.99,76.864 +33819,302.74,77.523 +33820,304.43,78.193 +33821,297.88,76.146 +33822,299.68,76.825 +33823,301.4,77.516 +33824,303.07,78.217 +33825,296.6,76.077 +33826,298.37,76.788 +33827,300.07,77.509 +33828,301.71,78.24 +33829,295.33,76.009 +33830,297.06,76.75 +33831,298.73,77.502 +33832,300.34,78.262 +33833,294.05,75.941 +33834,295.75,76.712 +33835,297.39,77.494 +33836,298.97,78.284 +33837,292.77,75.873 +33838,294.44,76.675 +33839,296.05,77.487 +33840,297.61,78.306 +33841,291.5,75.807 +33842,293.14,76.638 +33843,294.72,77.479 +33844,296.24,78.326 +33845,290.22,75.741 +33846,291.83,76.601 +33847,293.38,77.471 +33848,294.87,78.346 +33849,288.95,75.676 +33850,290.52,76.565 +33851,292.04,77.462 +33852,293.5,78.366 +33853,287.68,75.611 +33854,289.22,76.529 +33855,290.7,77.454 +33856,292.13,78.384 +33857,286.41,75.547 +33858,287.91,76.492 +33859,289.36,77.445 +33860,290.75,78.402 +33861,285.14,75.485 +33862,286.61,76.457 +33863,288.02,77.436 +33864,289.38,78.419 +33865,283.88,75.422 +33866,285.3,76.421 +33867,286.68,77.426 +33868,288,78.435 +33869,282.61,75.361 +33870,284,76.386 +33871,285.34,77.416 +33872,286.63,78.451 +33873,281.34,75.301 +33874,282.7,76.351 +33875,284,77.407 +33876,285.25,78.465 +33877,280.08,75.241 +33878,281.39,76.316 +33879,282.66,77.396 +33880,283.87,78.479 +33881,278.82,75.183 +33882,280.09,76.282 +33883,281.31,77.386 +33884,282.49,78.492 +33885,277.55,75.125 +33886,278.79,76.248 +33887,279.97,77.375 +33888,281.11,78.504 +33889,276.29,75.068 +33890,277.49,76.214 +33891,278.63,77.364 +33892,279.73,78.515 +33893,275.03,75.012 +33894,276.18,76.181 +33895,277.29,77.353 +33896,278.34,78.525 +33897,273.77,74.958 +33898,274.88,76.148 +33899,275.94,77.341 +33900,276.96,78.534 +33901,272.51,74.904 +33902,273.58,76.115 +33903,274.6,77.329 +33904,275.58,78.543 +33905,271.26,74.851 +33906,272.28,76.083 +33907,273.26,77.316 +33908,274.19,78.55 +33909,270,74.799 +33910,270.98,76.051 +33911,271.91,77.304 +33912,272.81,78.556 +33913,268.74,74.748 +33914,269.68,76.019 +33915,270.57,77.291 +33916,271.42,78.562 +33917,267.49,74.699 +33918,268.38,75.988 +33919,269.22,77.277 +33920,270.03,78.566 +33921,266.23,74.65 +33922,267.08,75.957 +33923,267.88,77.264 +33924,268.64,78.57 +33925,264.98,74.603 +33926,265.78,75.926 +33927,266.54,77.25 +33928,267.26,78.572 +33929,263.73,74.556 +33930,264.48,75.896 +33931,265.19,77.235 +33932,265.87,78.573 +33933,262.47,74.511 +33934,263.18,75.866 +33935,263.85,77.221 +33936,264.48,78.573 +33937,261.22,74.467 +33938,261.88,75.836 +33939,262.5,77.206 +33940,263.09,78.573 +33941,259.97,74.424 +33942,260.58,75.807 +33943,261.16,77.19 +33944,261.7,78.571 +33945,258.72,74.382 +33946,259.28,75.778 +33947,259.81,77.174 +33948,260.3,78.568 +33949,257.46,74.341 +33950,257.98,75.75 +33951,258.47,77.158 +33952,258.91,78.564 +33953,256.21,74.301 +33954,256.68,75.722 +33955,257.12,77.142 +33956,257.52,78.558 +33957,254.96,74.263 +33958,255.39,75.695 +33959,255.77,77.125 +33960,256.13,78.552 +33961,253.71,74.226 +33962,254.09,75.667 +33963,254.43,77.107 +33964,254.73,78.545 +33965,252.46,74.19 +33966,252.79,75.641 +33967,253.08,77.09 +33968,253.34,78.536 +33969,251.21,74.155 +33970,251.49,75.614 +33971,251.74,77.072 +33972,251.95,78.526 +33973,249.96,74.121 +33974,250.19,75.588 +33975,250.39,77.053 +33976,250.55,78.515 +33977,248.72,74.089 +33978,248.9,75.562 +33979,249.04,77.034 +33980,249.16,78.503 +33981,247.47,74.058 +33982,247.6,75.537 +33983,247.7,77.015 +33984,247.76,78.49 +33985,246.22,74.028 +33986,246.3,75.512 +33987,246.35,76.996 +33988,246.37,78.476 +33989,244.97,73.999 +33990,245,75.488 +33991,245.01,76.976 +33992,244.98,78.46 +33993,243.72,73.971 +33994,243.71,75.464 +33995,243.66,76.955 +33996,243.58,78.444 +33997,242.47,73.945 +33998,242.41,75.441 +33999,242.31,76.935 +34000,242.19,78.426 +34001,241.22,73.92 +34002,241.11,75.417 +34003,240.97,76.913 +34004,240.79,78.407 +34005,239.97,73.896 +34006,239.81,75.395 +34007,239.62,76.892 +34008,239.4,78.386 +34009,238.72,73.874 +34010,238.52,75.372 +34011,238.28,76.87 +34012,238,78.365 +34013,237.47,73.852 +34014,237.22,75.35 +34015,236.93,76.847 +34016,236.61,78.342 +34017,236.22,73.832 +34018,235.92,75.329 +34019,235.58,76.825 +34020,235.21,78.319 +34021,234.97,73.813 +34022,234.62,75.308 +34023,234.24,76.802 +34024,233.82,78.294 +34025,233.72,73.796 +34026,233.32,75.287 +34027,232.89,76.778 +34028,232.42,78.268 +34029,232.47,73.779 +34030,232.03,75.267 +34031,231.55,76.754 +34032,231.03,78.24 +34033,231.22,73.764 +34034,230.73,75.247 +34035,230.2,76.73 +34036,229.64,78.212 +34037,229.97,73.75 +34038,229.43,75.227 +34039,228.86,76.705 +34040,228.24,78.182 +34041,228.72,73.737 +34042,228.13,75.208 +34043,227.51,76.68 +34044,226.85,78.151 +34045,227.47,73.726 +34046,226.83,75.19 +34047,226.17,76.655 +34048,225.46,78.119 +34049,226.22,73.715 +34050,225.54,75.171 +34051,224.82,76.629 +34052,224.07,78.086 +34053,224.96,73.706 +34054,224.24,75.153 +34055,223.48,76.602 +34056,222.68,78.052 +34057,223.71,73.698 +34058,222.94,75.136 +34059,222.13,76.576 +34060,221.29,78.017 +34061,222.46,73.691 +34062,221.64,75.119 +34063,220.79,76.549 +34064,219.89,77.98 +34065,221.2,73.686 +34066,220.34,75.102 +34067,219.44,76.521 +34068,218.51,77.942 +34069,219.94,73.681 +34070,219.04,75.086 +34071,218.1,76.494 +34072,217.12,77.904 +34073,218.69,73.678 +34074,217.74,75.07 +34075,216.76,76.466 +34076,215.73,77.864 +34077,217.43,73.675 +34078,216.44,75.054 +34079,215.41,76.437 +34080,214.34,77.823 +34081,216.17,73.674 +34082,215.14,75.039 +34083,214.07,76.408 +34084,212.95,77.781 +34085,214.92,73.674 +34086,213.84,75.024 +34087,212.73,76.379 +34088,211.57,77.737 +34089,213.66,73.675 +34090,212.54,75.01 +34091,211.38,76.349 +34092,210.18,77.693 +34093,212.4,73.678 +34094,211.24,74.996 +34095,210.04,76.319 +34096,208.8,77.648 +34097,211.13,73.681 +34098,209.94,74.982 +34099,208.7,76.289 +34100,207.41,77.602 +34101,209.87,73.685 +34102,208.64,74.969 +34103,207.36,76.259 +34104,206.03,77.554 +34105,208.61,73.691 +34106,207.34,74.956 +34107,206.02,76.228 +34108,204.65,77.506 +34109,207.35,73.697 +34110,206.03,74.943 +34111,204.68,76.196 +34112,203.27,77.456 +34113,206.08,73.704 +34114,204.73,74.931 +34115,203.34,76.165 +34116,201.89,77.406 +34117,204.81,73.713 +34118,203.43,74.919 +34119,202,76.133 +34120,200.51,77.354 +34121,203.55,73.722 +34122,202.13,74.907 +34123,200.66,76.101 +34124,199.13,77.302 +34125,202.28,73.732 +34126,200.82,74.896 +34127,199.32,76.068 +34128,197.75,77.249 +34129,201.01,73.744 +34130,199.52,74.885 +34131,197.98,76.035 +34132,196.38,77.194 +34133,199.74,73.756 +34134,198.22,74.874 +34135,196.64,76.002 +34136,195,77.139 +34137,198.47,73.769 +34138,196.91,74.864 +34139,195.3,75.968 +34140,193.63,77.083 +34141,197.2,73.783 +34142,195.61,74.854 +34143,193.96,75.935 +34144,192.26,77.026 +34145,195.92,73.798 +34146,194.3,74.844 +34147,192.63,75.901 +34148,190.89,76.968 +34149,194.65,73.813 +34150,193,74.834 +34151,191.29,75.866 +34152,189.52,76.909 +34153,193.37,73.83 +34154,191.69,74.825 +34155,189.95,75.832 +34156,188.15,76.85 +34157,192.09,73.847 +34158,190.38,74.816 +34159,188.62,75.797 +34160,186.78,76.79 +34161,190.81,73.865 +34162,189.08,74.807 +34163,187.28,75.762 +34164,185.41,76.728 +34165,189.53,73.884 +34166,187.77,74.799 +34167,185.95,75.726 +34168,184.05,76.667 +34169,188.25,73.903 +34170,186.46,74.791 +34171,184.61,75.691 +34172,182.69,76.604 +34173,186.97,73.924 +34174,185.15,74.783 +34175,183.28,75.655 +34176,181.33,76.541 +34177,185.68,73.945 +34178,183.85,74.775 +34179,181.94,75.619 +34180,179.97,76.477 +34181,184.4,73.966 +34182,182.54,74.767 +34183,180.61,75.582 +34184,178.61,76.412 +34185,183.11,73.988 +34186,181.23,74.76 +34187,179.28,75.546 +34188,177.25,76.346 +34189,181.82,74.011 +34190,179.92,74.753 +34191,177.95,75.509 +34192,175.9,76.28 +34193,180.53,74.035 +34194,178.61,74.746 +34195,176.61,75.472 +34196,174.54,76.214 +34197,179.24,74.059 +34198,177.3,74.74 +34199,175.28,75.435 +34200,173.19,76.146 +34201,177.95,74.083 +34202,175.98,74.733 +34203,173.95,75.398 +34204,171.84,76.079 +34205,176.65,74.108 +34206,174.67,74.727 +34207,172.62,75.36 +34208,170.49,76.01 +34209,175.36,74.134 +34210,173.36,74.721 +34211,171.29,75.323 +34212,169.14,75.941 +34213,174.06,74.16 +34214,172.05,74.715 +34215,169.96,75.285 +34216,167.8,75.872 +34217,172.76,74.186 +34218,170.73,74.709 +34219,168.64,75.247 +34220,166.45,75.802 +34221,171.46,74.213 +34222,169.42,74.703 +34223,167.31,75.209 +34224,165.11,75.732 +34225,170.16,74.24 +34226,168.11,74.698 +34227,165.98,75.171 +34228,163.77,75.661 +34229,168.85,74.268 +34230,166.79,74.692 +34231,164.65,75.132 +34232,162.43,75.59 +34233,167.55,74.296 +34234,165.48,74.687 +34235,163.33,75.094 +34236,161.09,75.519 +34237,166.24,74.324 +34238,164.16,74.682 +34239,162,75.056 +34240,159.75,75.447 +34241,164.93,74.352 +34242,162.84,74.677 +34243,160.68,75.017 +34244,158.42,75.375 +34245,163.62,74.381 +34246,161.53,74.672 +34247,159.35,74.978 +34248,157.09,75.302 +34249,162.31,74.41 +34250,160.21,74.667 +34251,158.03,74.939 +34252,155.76,75.23 +34253,161,74.439 +34254,158.89,74.662 +34255,156.71,74.9 +34256,154.43,75.157 +34257,159.68,74.468 +34258,157.57,74.657 +34259,155.38,74.862 +34260,153.1,75.084 +34261,158.37,74.498 +34262,156.25,74.652 +34263,154.06,74.823 +34264,151.77,75.01 +34265,157.05,74.527 +34266,154.93,74.648 +34267,152.74,74.784 +34268,150.45,74.937 +34269,155.73,74.557 +34270,153.61,74.643 +34271,151.42,74.744 +34272,149.13,74.863 +34273,154.41,74.587 +34274,152.29,74.638 +34275,150.1,74.705 +34276,147.81,74.79 +34277,153.08,74.616 +34278,150.97,74.634 +34279,148.78,74.666 +34280,146.49,74.716 +34281,151.76,74.646 +34282,149.65,74.629 +34283,147.46,74.627 +34284,145.17,74.642 +34285,150.43,74.676 +34286,148.33,74.625 +34287,146.14,74.588 +34288,143.86,74.569 +34289,149.11,74.705 +34290,147.01,74.62 +34291,144.82,74.549 +34292,142.54,74.495 +34293,147.78,74.735 +34294,145.68,74.615 +34295,143.5,74.51 +34296,141.23,74.421 +34297,146.45,74.764 +34298,144.36,74.611 +34299,142.19,74.471 +34300,139.92,74.348 +34301,145.11,74.794 +34302,143.03,74.606 +34303,140.87,74.432 +34304,138.62,74.274 +34305,143.78,74.823 +34306,141.71,74.601 +34307,139.56,74.393 +34308,137.31,74.201 +34309,142.44,74.852 +34310,140.38,74.596 +34311,138.24,74.354 +34312,136,74.127 +34313,141.11,74.88 +34314,139.06,74.592 +34315,136.93,74.315 +34316,134.7,74.054 +34317,139.77,74.909 +34318,137.73,74.587 +34319,135.61,74.277 +34320,133.4,73.982 +34321,138.43,74.937 +34322,136.4,74.582 +34323,134.3,74.238 +34324,132.1,73.909 +34325,137.09,74.965 +34326,135.08,74.576 +34327,132.99,74.2 +34328,130.8,73.837 +34329,135.74,74.993 +34330,133.75,74.571 +34331,131.67,74.161 +34332,129.51,73.765 +34333,134.4,75.02 +34334,132.42,74.566 +34335,130.36,74.123 +34336,128.21,73.693 +34337,133.05,75.047 +34338,131.09,74.56 +34339,129.05,74.085 +34340,126.92,73.622 +34341,131.7,75.073 +34342,129.76,74.555 +34343,127.74,74.047 +34344,125.63,73.551 +34345,130.35,75.099 +34346,128.43,74.549 +34347,126.43,74.009 +34348,124.34,73.48 +34349,129,75.125 +34350,127.1,74.543 +34351,125.12,73.971 +34352,123.05,73.41 +34353,127.65,75.15 +34354,125.77,74.537 +34355,123.81,73.933 +34356,121.77,73.341 +34357,126.3,75.175 +34358,124.44,74.531 +34359,122.5,73.896 +34360,120.48,73.271 +34361,124.94,75.199 +34362,123.11,74.525 +34363,121.2,73.859 +34364,119.2,73.203 +34365,123.59,75.222 +34366,121.77,74.518 +34367,119.89,73.821 +34368,117.92,73.135 +34369,122.23,75.245 +34370,120.44,74.511 +34371,118.58,73.785 +34372,116.64,73.067 +34373,120.87,75.268 +34374,119.11,74.504 +34375,117.27,73.748 +34376,115.36,73 +34377,119.51,75.289 +34378,117.77,74.497 +34379,115.97,73.711 +34380,114.08,72.934 +34381,118.15,75.31 +34382,116.44,74.49 +34383,114.66,73.675 +34384,112.81,72.868 +34385,116.78,75.331 +34386,115.11,74.482 +34387,113.36,73.639 +34388,111.53,72.803 +34389,115.42,75.351 +34390,113.77,74.475 +34391,112.05,73.603 +34392,110.26,72.739 +34393,114.05,75.37 +34394,112.44,74.467 +34395,110.75,73.568 +34396,108.99,72.675 +34397,112.68,75.388 +34398,111.1,74.458 +34399,109.45,73.532 +34400,107.72,72.612 +34401,111.32,75.406 +34402,109.76,74.45 +34403,108.14,73.497 +34404,106.45,72.55 +34405,109.95,75.423 +34406,108.43,74.441 +34407,106.84,73.463 +34408,105.18,72.489 +34409,108.57,75.439 +34410,107.09,74.432 +34411,105.54,73.428 +34412,103.92,72.428 +34413,107.2,75.454 +34414,105.75,74.423 +34415,104.24,73.394 +34416,102.65,72.369 +34417,105.83,75.468 +34418,104.41,74.413 +34419,102.94,73.36 +34420,101.39,72.31 +34421,104.45,75.482 +34422,103.08,74.404 +34423,101.63,73.326 +34424,100.12,72.252 +34425,103.08,75.494 +34426,101.74,74.393 +34427,100.33,73.293 +34428,98.864,72.194 +34429,101.7,75.506 +34430,100.4,74.383 +34431,99.033,73.26 +34432,97.604,72.138 +34433,100.33,75.517 +34434,99.059,74.372 +34435,97.734,73.227 +34436,96.345,72.083 +34437,98.947,75.527 +34438,97.719,74.361 +34439,96.434,73.194 +34440,95.087,72.028 +34441,97.567,75.536 +34442,96.379,74.35 +34443,95.135,73.162 +34444,93.83,71.975 +34445,96.187,75.544 +34446,95.039,74.338 +34447,93.836,73.13 +34448,92.574,71.923 +34449,94.805,75.552 +34450,93.699,74.326 +34451,92.538,73.099 +34452,91.319,71.871 +34453,93.423,75.558 +34454,92.358,74.314 +34455,91.24,73.068 +34456,90.065,71.821 +34457,92.039,75.563 +34458,91.017,74.301 +34459,89.942,73.037 +34460,88.812,71.771 +34461,90.655,75.567 +34462,89.675,74.288 +34463,88.644,73.006 +34464,87.559,71.723 +34465,89.27,75.57 +34466,88.334,74.275 +34467,87.347,72.976 +34468,86.308,71.676 +34469,87.885,75.572 +34470,86.992,74.261 +34471,86.05,72.946 +34472,85.057,71.629 +34473,86.498,75.573 +34474,85.65,74.247 +34475,84.754,72.917 +34476,83.807,71.584 +34477,85.111,75.573 +34478,84.307,74.233 +34479,83.457,72.888 +34480,82.558,71.54 +34481,83.723,75.572 +34482,82.965,74.218 +34483,82.161,72.859 +34484,81.31,71.497 +34485,82.335,75.57 +34486,81.622,74.203 +34487,80.865,72.831 +34488,80.062,71.455 +34489,80.945,75.567 +34490,80.279,74.188 +34491,79.569,72.803 +34492,78.814,71.415 +34493,79.556,75.563 +34494,78.936,74.172 +34495,78.274,72.776 +34496,77.568,71.375 +34497,78.165,75.557 +34498,77.593,74.156 +34499,76.979,72.748 +34500,76.321,71.337 +34501,76.774,75.551 +34502,76.249,74.139 +34503,75.684,72.722 +34504,75.076,71.299 +34505,75.383,75.543 +34506,74.906,74.122 +34507,74.389,72.695 +34508,73.83,71.263 +34509,73.991,75.534 +34510,73.562,74.105 +34511,73.094,72.669 +34512,72.586,71.229 +34513,72.599,75.524 +34514,72.218,74.087 +34515,71.799,72.644 +34516,71.341,71.195 +34517,71.206,75.513 +34518,70.874,74.069 +34519,70.505,72.618 +34520,70.097,71.162 +34521,69.813,75.501 +34522,69.53,74.051 +34523,69.21,72.593 +34524,68.853,71.131 +34525,68.42,75.488 +34526,68.186,74.032 +34527,67.916,72.569 +34528,67.609,71.101 +34529,67.027,75.473 +34530,66.842,74.013 +34531,66.622,72.545 +34532,66.366,71.072 +34533,65.633,75.458 +34534,65.497,73.993 +34535,65.328,72.521 +34536,65.123,71.044 +34537,64.239,75.441 +34538,64.153,73.973 +34539,64.034,72.498 +34540,63.879,71.018 +34541,62.845,75.423 +34542,62.809,73.952 +34543,62.74,72.475 +34544,62.636,70.993 +34545,61.45,75.403 +34546,61.464,73.932 +34547,61.446,72.453 +34548,61.393,70.969 +34549,60.056,75.383 +34550,60.12,73.91 +34551,60.152,72.431 +34552,60.15,70.946 +34553,58.661,75.362 +34554,58.776,73.889 +34555,58.858,72.409 +34556,58.907,70.924 +34557,57.267,75.339 +34558,57.431,73.867 +34559,57.564,72.388 +34560,57.664,70.904 +34561,55.872,75.315 +34562,56.087,73.844 +34563,56.27,72.367 +34564,56.421,70.885 +34565,54.478,75.29 +34566,54.743,73.822 +34567,54.976,72.347 +34568,55.178,70.867 +34569,53.083,75.264 +34570,53.399,73.798 +34571,53.682,72.327 +34572,53.934,70.85 +34573,51.689,75.236 +34574,52.054,73.775 +34575,52.388,72.307 +34576,52.69,70.834 +34577,50.295,75.208 +34578,50.71,73.751 +34579,51.094,72.288 +34580,51.446,70.82 +34581,48.901,75.178 +34582,49.366,73.727 +34583,49.8,72.269 +34584,50.202,70.807 +34585,47.508,75.147 +34586,48.023,73.702 +34587,48.506,72.251 +34588,48.957,70.795 +34589,46.114,75.115 +34590,46.679,73.677 +34591,47.211,72.233 +34592,47.712,70.784 +34593,44.721,75.082 +34594,45.335,73.651 +34595,45.917,72.215 +34596,46.467,70.775 +34597,43.328,75.048 +34598,43.992,73.625 +34599,44.622,72.198 +34600,45.221,70.766 +34601,41.936,75.012 +34602,42.648,73.599 +34603,43.327,72.181 +34604,43.975,70.759 +34605,40.544,74.976 +34606,41.305,73.572 +34607,42.032,72.164 +34608,42.728,70.753 +34609,39.153,74.938 +34610,39.962,73.545 +34611,40.737,72.148 +34612,41.48,70.748 +34613,37.762,74.899 +34614,38.62,73.518 +34615,39.442,72.133 +34616,40.232,70.745 +34617,36.372,74.859 +34618,37.277,73.49 +34619,38.147,72.117 +34620,38.983,70.742 +34621,34.982,74.818 +34622,35.935,73.462 +34623,36.851,72.102 +34624,37.734,70.741 +34625,33.593,74.776 +34626,34.593,73.433 +34627,35.555,72.088 +34628,36.484,70.74 +34629,32.204,74.733 +34630,33.251,73.404 +34631,34.259,72.073 +34632,35.233,70.741 +34633,30.816,74.689 +34634,31.909,73.375 +34635,32.963,72.06 +34636,33.981,70.743 +34637,29.429,74.643 +34638,30.568,73.346 +34639,31.667,72.046 +34640,32.729,70.746 +34641,28.043,74.597 +34642,29.227,73.316 +34643,30.37,72.033 +34644,31.475,70.75 +34645,26.657,74.55 +34646,27.886,73.285 +34647,29.073,72.02 +34648,30.221,70.755 +34649,25.272,74.501 +34650,26.546,73.255 +34651,27.775,72.008 +34652,28.966,70.761 +34653,23.888,74.452 +34654,25.205,73.224 +34655,26.478,71.995 +34656,27.71,70.768 +34657,22.505,74.402 +34658,23.866,73.193 +34659,25.18,71.984 +34660,26.453,70.776 +34661,21.123,74.35 +34662,22.526,73.161 +34663,23.882,71.972 +34664,25.195,70.785 +34665,19.742,74.298 +34666,21.187,73.129 +34667,22.583,71.961 +34668,23.936,70.795 +34669,18.362,74.245 +34670,19.848,73.097 +34671,21.284,71.95 +34672,22.676,70.806 +34673,16.983,74.191 +34674,18.51,73.064 +34675,19.985,71.94 +34676,21.415,70.818 +34677,15.605,74.136 +34678,17.172,73.031 +34679,18.685,71.929 +34680,20.153,70.831 +34681,14.228,74.08 +34682,15.834,72.998 +34683,17.385,71.92 +34684,18.889,70.844 +34685,12.853,74.023 +34686,14.497,72.965 +34687,16.085,71.91 +34688,17.625,70.859 +34689,11.478,73.965 +34690,13.16,72.931 +34691,14.784,71.901 +34692,16.359,70.874 +34693,10.105,73.907 +34694,11.824,72.897 +34695,13.483,71.891 +34696,15.092,70.89 +34697,8.7327,73.848 +34698,10.488,72.863 +34699,12.182,71.883 +34700,13.823,70.908 +34701,7.3618,73.787 +34702,9.1519,72.828 +34703,10.88,71.874 +34704,12.554,70.925 +34705,5.9922,73.727 +34706,7.8168,72.793 +34707,9.5775,71.866 +34708,11.283,70.944 +34709,4.624,73.665 +34710,6.4822,72.758 +34711,8.2748,71.858 +34712,10.011,70.963 +34713,3.2571,73.602 +34714,5.1479,72.723 +34715,6.9716,71.85 +34716,8.7372,70.983 +34717,1.8916,73.539 +34718,3.8142,72.688 +34719,5.668,71.842 +34720,7.4624,71.004 +34721,0.52745,73.476 +34722,2.481,72.652 +34723,4.3639,71.835 +34724,6.1861,71.025 +34725,359.16,73.411 +34726,1.1482,72.616 +34727,3.0594,71.828 +34728,4.9084,71.048 +34729,357.8,73.346 +34730,359.82,72.58 +34731,1.7544,71.821 +34732,3.6293,71.07 +34733,356.44,73.28 +34734,358.48,72.543 +34735,0.44894,71.814 +34736,2.3487,71.094 +34737,355.09,73.214 +34738,357.15,72.507 +34739,359.14,71.808 +34740,1.0667,71.117 +34741,353.73,73.147 +34742,355.82,72.47 +34743,357.84,71.802 +34744,359.78,71.142 +34745,352.37,73.079 +34746,354.49,72.433 +34747,356.53,71.795 +34748,358.5,71.167 +34749,351.02,73.011 +34750,353.16,72.396 +34751,355.22,71.789 +34752,357.21,71.192 +34753,349.67,72.943 +34754,351.83,72.359 +34755,353.91,71.784 +34756,355.92,71.218 +34757,348.32,72.874 +34758,350.5,72.321 +34759,352.61,71.778 +34760,354.63,71.244 +34761,346.97,72.804 +34762,349.18,72.283 +34763,351.3,71.772 +34764,353.34,71.271 +34765,345.62,72.735 +34766,347.85,72.246 +34767,349.99,71.767 +34768,352.05,71.298 +34769,344.28,72.664 +34770,346.52,72.208 +34771,348.68,71.762 +34772,350.76,71.326 +34773,342.93,72.594 +34774,345.2,72.17 +34775,347.37,71.757 +34776,349.46,71.354 +34777,341.59,72.522 +34778,343.87,72.132 +34779,346.06,71.752 +34780,348.16,71.382 +34781,340.25,72.451 +34782,342.54,72.093 +34783,344.74,71.747 +34784,346.86,71.411 +34785,338.91,72.379 +34786,341.22,72.055 +34787,343.43,71.742 +34788,345.56,71.439 +34789,337.57,72.307 +34790,339.9,72.017 +34791,342.12,71.737 +34792,344.26,71.468 +34793,336.24,72.235 +34794,338.57,71.978 +34795,340.81,71.733 +34796,342.96,71.498 +34797,334.91,72.163 +34798,337.25,71.94 +34799,339.49,71.728 +34800,341.65,71.527 +34801,333.57,72.09 +34802,335.93,71.901 +34803,338.18,71.723 +34804,340.34,71.556 +34805,332.25,72.017 +34806,334.61,71.862 +34807,336.86,71.719 +34808,339.04,71.586 +34809,330.92,71.944 +34810,333.28,71.824 +34811,335.55,71.714 +34812,337.72,71.616 +34813,329.59,71.871 +34814,331.96,71.785 +34815,334.23,71.71 +34816,336.41,71.646 +34817,328.27,71.798 +34818,330.64,71.746 +34819,332.92,71.706 +34820,335.1,71.675 +34821,326.94,71.725 +34822,329.32,71.707 +34823,331.6,71.701 +34824,333.78,71.705 +34825,325.62,71.652 +34826,328.01,71.668 +34827,330.28,71.697 +34828,332.47,71.735 +34829,324.3,71.578 +34830,326.69,71.63 +34831,328.96,71.692 +34832,331.15,71.765 +34833,322.99,71.505 +34834,325.37,71.591 +34835,327.65,71.688 +34836,329.83,71.795 +34837,321.67,71.432 +34838,324.05,71.552 +34839,326.33,71.683 +34840,328.51,71.824 +34841,320.36,71.359 +34842,322.74,71.513 +34843,325.01,71.679 +34844,327.18,71.854 +34845,319.05,71.286 +34846,321.42,71.475 +34847,323.69,71.674 +34848,325.86,71.883 +34849,317.74,71.213 +34850,320.11,71.436 +34851,322.36,71.67 +34852,324.53,71.912 +34853,316.43,71.14 +34854,318.79,71.397 +34855,321.04,71.665 +34856,323.2,71.941 +34857,315.12,71.068 +34858,317.48,71.359 +34859,319.72,71.66 +34860,321.87,71.97 +34861,313.82,70.996 +34862,316.16,71.32 +34863,318.4,71.655 +34864,320.54,71.999 +34865,312.52,70.924 +34866,314.85,71.282 +34867,317.08,71.65 +34868,319.2,72.027 +34869,311.22,70.852 +34870,313.54,71.244 +34871,315.75,71.645 +34872,317.87,72.055 +34873,309.92,70.78 +34874,312.23,71.206 +34875,314.43,71.64 +34876,316.53,72.082 +34877,308.62,70.709 +34878,310.92,71.168 +34879,313.1,71.635 +34880,315.19,72.11 +34881,307.33,70.639 +34882,309.61,71.13 +34883,311.78,71.63 +34884,313.85,72.136 +34885,306.03,70.568 +34886,308.3,71.092 +34887,310.45,71.624 +34888,312.51,72.163 +34889,304.74,70.498 +34890,306.99,71.054 +34891,309.13,71.618 +34892,311.17,72.189 +34893,303.45,70.429 +34894,305.68,71.017 +34895,307.8,71.613 +34896,309.82,72.214 +34897,302.16,70.36 +34898,304.37,70.979 +34899,306.47,71.607 +34900,308.48,72.239 +34901,300.88,70.291 +34902,303.06,70.942 +34903,305.14,71.6 +34904,307.13,72.264 +34905,299.59,70.223 +34906,301.76,70.905 +34907,303.82,71.594 +34908,305.78,72.287 +34909,298.31,70.155 +34910,300.45,70.868 +34911,302.49,71.588 +34912,304.43,72.311 +34913,297.03,70.088 +34914,299.14,70.832 +34915,301.16,71.581 +34916,303.08,72.334 +34917,295.75,70.022 +34918,297.84,70.795 +34919,299.83,71.574 +34920,301.72,72.356 +34921,294.47,69.956 +34922,296.53,70.759 +34923,298.5,71.567 +34924,300.37,72.377 +34925,293.19,69.891 +34926,295.23,70.723 +34927,297.17,71.559 +34928,299.01,72.398 +34929,291.92,69.827 +34930,293.93,70.687 +34931,295.84,71.552 +34932,297.66,72.418 +34933,290.64,69.763 +34934,292.62,70.652 +34935,294.5,71.544 +34936,296.3,72.438 +34937,289.37,69.7 +34938,291.32,70.616 +34939,293.17,71.536 +34940,294.93,72.456 +34941,288.1,69.637 +34942,290.02,70.581 +34943,291.84,71.528 +34944,293.57,72.474 +34945,286.83,69.576 +34946,288.72,70.546 +34947,290.51,71.519 +34948,292.21,72.492 +34949,285.56,69.515 +34950,287.42,70.512 +34951,289.17,71.51 +34952,290.84,72.508 +34953,284.3,69.455 +34954,286.11,70.477 +34955,287.84,71.501 +34956,289.48,72.524 +34957,283.03,69.396 +34958,284.81,70.443 +34959,286.5,71.492 +34960,288.11,72.539 +34961,281.77,69.338 +34962,283.51,70.41 +34963,285.17,71.482 +34964,286.74,72.553 +34965,280.51,69.28 +34966,282.21,70.376 +34967,283.83,71.472 +34968,285.37,72.566 +34969,279.25,69.223 +34970,280.92,70.343 +34971,282.5,71.462 +34972,284,72.578 +34973,277.99,69.168 +34974,279.62,70.31 +34975,281.16,71.451 +34976,282.63,72.589 +34977,276.73,69.113 +34978,278.32,70.277 +34979,279.83,71.44 +34980,281.26,72.6 +34981,275.47,69.059 +34982,277.02,70.245 +34983,278.49,71.429 +34984,279.88,72.609 +34985,274.22,69.006 +34986,275.72,70.213 +34987,277.15,71.418 +34988,278.51,72.618 +34989,272.96,68.954 +34990,274.43,70.182 +34991,275.81,71.406 +34992,277.13,72.625 +34993,271.71,68.904 +34994,273.13,70.15 +34995,274.48,71.394 +34996,275.75,72.632 +34997,270.46,68.854 +34998,271.84,70.119 +34999,273.14,71.381 +35000,274.37,72.637 +35001,269.21,68.805 +35002,270.54,70.089 +35003,271.8,71.368 +35004,272.99,72.642 +35005,267.96,68.757 +35006,269.24,70.058 +35007,270.46,71.355 +35008,271.61,72.646 +35009,266.71,68.71 +35010,267.95,70.028 +35011,269.12,71.342 +35012,270.23,72.648 +35013,265.46,68.665 +35014,266.65,69.999 +35015,267.78,71.328 +35016,268.85,72.65 +35017,264.21,68.62 +35018,265.36,69.97 +35019,266.44,71.313 +35020,267.46,72.65 +35021,262.96,68.576 +35022,264.07,69.941 +35023,265.1,71.299 +35024,266.08,72.649 +35025,261.72,68.534 +35026,262.77,69.912 +35027,263.76,71.284 +35028,264.69,72.648 +35029,260.47,68.493 +35030,261.48,69.884 +35031,262.42,71.269 +35032,263.31,72.645 +35033,259.23,68.453 +35034,260.18,69.856 +35035,261.08,71.253 +35036,261.92,72.641 +35037,257.99,68.414 +35038,258.89,69.829 +35039,259.74,71.237 +35040,260.53,72.636 +35041,256.74,68.376 +35042,257.6,69.802 +35043,258.4,71.22 +35044,259.15,72.63 +35045,255.5,68.339 +35046,256.31,69.775 +35047,257.06,71.203 +35048,257.76,72.622 +35049,254.26,68.304 +35050,255.01,69.749 +35051,255.72,71.186 +35052,256.37,72.614 +35053,253.02,68.269 +35054,253.72,69.723 +35055,254.37,71.168 +35056,254.98,72.604 +35057,251.78,68.236 +35058,252.43,69.697 +35059,253.03,71.15 +35060,253.59,72.593 +35061,250.54,68.204 +35062,251.14,69.672 +35063,251.69,71.132 +35064,252.2,72.581 +35065,249.3,68.173 +35066,249.85,69.648 +35067,250.35,71.113 +35068,250.81,72.568 +35069,248.06,68.144 +35070,248.55,69.623 +35071,249.01,71.094 +35072,249.41,72.554 +35073,246.82,68.115 +35074,247.26,69.599 +35075,247.66,71.074 +35076,248.02,72.539 +35077,245.58,68.088 +35078,245.97,69.576 +35079,246.32,71.054 +35080,246.63,72.522 +35081,244.34,68.062 +35082,244.68,69.553 +35083,244.98,71.034 +35084,245.24,72.504 +35085,243.11,68.038 +35086,243.39,69.53 +35087,243.64,71.013 +35088,243.84,72.485 +35089,241.87,68.014 +35090,242.1,69.508 +35091,242.29,70.992 +35092,242.45,72.465 +35093,240.63,67.992 +35094,240.81,69.486 +35095,240.95,70.97 +35096,241.05,72.444 +35097,239.39,67.971 +35098,239.52,69.464 +35099,239.61,70.948 +35100,239.66,72.421 +35101,238.15,67.951 +35102,238.23,69.443 +35103,238.26,70.926 +35104,238.27,72.398 +35105,236.92,67.932 +35106,236.94,69.422 +35107,236.92,70.903 +35108,236.87,72.373 +35109,235.68,67.915 +35110,235.65,69.402 +35111,235.58,70.88 +35112,235.48,72.347 +35113,234.44,67.899 +35114,234.35,69.382 +35115,234.23,70.856 +35116,234.08,72.319 +35117,233.2,67.884 +35118,233.06,69.363 +35119,232.89,70.832 +35120,232.69,72.291 +35121,231.97,67.87 +35122,231.77,69.343 +35123,231.55,70.808 +35124,231.29,72.261 +35125,230.73,67.858 +35126,230.48,69.325 +35127,230.21,70.783 +35128,229.9,72.231 +35129,229.49,67.846 +35130,229.19,69.306 +35131,228.86,70.758 +35132,228.51,72.199 +35133,228.25,67.836 +35134,227.9,69.288 +35135,227.52,70.732 +35136,227.11,72.166 +35137,227.01,67.827 +35138,226.61,69.271 +35139,226.18,70.706 +35140,225.72,72.131 +35141,225.77,67.819 +35142,225.32,69.254 +35143,224.84,70.68 +35144,224.32,72.096 +35145,224.53,67.813 +35146,224.03,69.237 +35147,223.49,70.653 +35148,222.93,72.059 +35149,223.29,67.807 +35150,222.74,69.22 +35151,222.15,70.626 +35152,221.54,72.022 +35153,222.05,67.803 +35154,221.44,69.204 +35155,220.81,70.598 +35156,220.14,71.983 +35157,220.81,67.8 +35158,220.15,69.189 +35159,219.47,70.57 +35160,218.75,71.943 +35161,219.57,67.798 +35162,218.86,69.173 +35163,218.13,70.542 +35164,217.36,71.902 +35165,218.33,67.797 +35166,217.57,69.158 +35167,216.78,70.513 +35168,215.97,71.86 +35169,217.08,67.797 +35170,216.28,69.144 +35171,215.44,70.484 +35172,214.58,71.816 +35173,215.84,67.798 +35174,214.98,69.129 +35175,214.1,70.455 +35176,213.19,71.772 +35177,214.59,67.8 +35178,213.69,69.116 +35179,212.76,70.425 +35180,211.8,71.727 +35181,213.35,67.804 +35182,212.4,69.102 +35183,211.42,70.395 +35184,210.41,71.68 +35185,212.1,67.808 +35186,211.11,69.089 +35187,210.08,70.364 +35188,209.02,71.633 +35189,210.86,67.814 +35190,209.81,69.076 +35191,208.74,70.333 +35192,207.63,71.584 +35193,209.61,67.82 +35194,208.52,69.064 +35195,207.4,70.302 +35196,206.24,71.534 +35197,208.36,67.828 +35198,207.23,69.051 +35199,206.06,70.27 +35200,204.86,71.484 +35201,207.11,67.837 +35202,205.93,69.04 +35203,204.72,70.239 +35204,203.47,71.432 +35205,205.86,67.846 +35206,204.64,69.028 +35207,203.38,70.206 +35208,202.09,71.38 +35209,204.61,67.857 +35210,203.34,69.017 +35211,202.04,70.174 +35212,200.7,71.326 +35213,203.36,67.868 +35214,202.05,69.006 +35215,200.7,70.141 +35216,199.32,71.272 +35217,202.1,67.88 +35218,200.75,68.995 +35219,199.37,70.108 +35220,197.94,71.216 +35221,200.85,67.894 +35222,199.46,68.985 +35223,198.03,70.074 +35224,196.56,71.16 +35225,199.59,67.908 +35226,198.16,68.975 +35227,196.69,70.041 +35228,195.17,71.103 +35229,198.34,67.923 +35230,196.87,68.965 +35231,195.35,70.006 +35232,193.8,71.045 +35233,197.08,67.939 +35234,195.57,68.956 +35235,194.02,69.972 +35236,192.42,70.986 +35237,195.82,67.955 +35238,194.27,68.947 +35239,192.68,69.937 +35240,191.04,70.926 +35241,194.56,67.973 +35242,192.97,68.938 +35243,191.35,69.903 +35244,189.66,70.866 +35245,193.3,67.991 +35246,191.68,68.929 +35247,190.01,69.867 +35248,188.29,70.804 +35249,192.03,68.01 +35250,190.38,68.921 +35251,188.68,69.832 +35252,186.92,70.742 +35253,190.77,68.03 +35254,189.08,68.913 +35255,187.34,69.796 +35256,185.54,70.679 +35257,189.5,68.05 +35258,187.78,68.905 +35259,186.01,69.76 +35260,184.17,70.615 +35261,188.24,68.072 +35262,186.48,68.897 +35263,184.67,69.724 +35264,182.8,70.551 +35265,186.97,68.093 +35266,185.18,68.89 +35267,183.34,69.688 +35268,181.43,70.486 +35269,185.7,68.116 +35270,183.88,68.882 +35271,182.01,69.651 +35272,180.07,70.42 +35273,184.43,68.139 +35274,182.58,68.875 +35275,180.67,69.614 +35276,178.7,70.354 +35277,183.16,68.163 +35278,181.28,68.868 +35279,179.34,69.577 +35280,177.34,70.287 +35281,181.88,68.187 +35282,179.98,68.862 +35283,178.01,69.54 +35284,175.97,70.219 +35285,180.61,68.212 +35286,178.68,68.855 +35287,176.68,69.502 +35288,174.61,70.151 +35289,179.33,68.237 +35290,177.37,68.849 +35291,175.35,69.464 +35292,173.25,70.082 +35293,178.05,68.263 +35294,176.07,68.843 +35295,174.02,69.427 +35296,171.89,70.013 +35297,176.77,68.289 +35298,174.77,68.837 +35299,172.69,69.389 +35300,170.54,69.943 +35301,175.49,68.316 +35302,173.46,68.831 +35303,171.36,69.35 +35304,169.18,69.873 +35305,174.21,68.343 +35306,172.16,68.825 +35307,170.04,69.312 +35308,167.83,69.802 +35309,172.92,68.37 +35310,170.85,68.82 +35311,168.71,69.273 +35312,166.48,69.731 +35313,171.64,68.398 +35314,169.55,68.814 +35315,167.38,69.235 +35316,165.13,69.66 +35317,170.35,68.426 +35318,168.24,68.809 +35319,166.05,69.196 +35320,163.78,69.588 +35321,169.06,68.455 +35322,166.93,68.804 +35323,164.73,69.157 +35324,162.43,69.515 +35325,167.77,68.483 +35326,165.63,68.798 +35327,163.4,69.118 +35328,161.09,69.443 +35329,166.47,68.512 +35330,164.32,68.793 +35331,162.08,69.079 +35332,159.74,69.37 +35333,165.18,68.542 +35334,163.01,68.788 +35335,160.75,69.04 +35336,158.4,69.297 +35337,163.88,68.571 +35338,161.7,68.783 +35339,159.43,69.001 +35340,157.06,69.223 +35341,162.59,68.6 +35342,160.39,68.778 +35343,158.11,68.961 +35344,155.72,69.15 +35345,161.29,68.63 +35346,159.08,68.774 +35347,156.79,68.922 +35348,154.39,69.076 +35349,159.99,68.66 +35350,157.77,68.769 +35351,155.46,68.883 +35352,153.05,69.002 +35353,158.68,68.69 +35354,156.46,68.764 +35355,154.14,68.843 +35356,151.72,68.928 +35357,157.38,68.72 +35358,155.15,68.759 +35359,152.82,68.804 +35360,150.39,68.853 +35361,156.07,68.75 +35362,153.84,68.754 +35363,151.5,68.764 +35364,149.06,68.779 +35365,154.76,68.78 +35366,152.52,68.75 +35367,150.18,68.725 +35368,147.73,68.705 +35369,153.45,68.81 +35370,151.21,68.745 +35371,148.87,68.685 +35372,146.41,68.63 +35373,152.14,68.839 +35374,149.9,68.74 +35375,147.55,68.645 +35376,145.08,68.556 +35377,150.83,68.869 +35378,148.58,68.735 +35379,146.23,68.606 +35380,143.76,68.482 +35381,149.52,68.899 +35382,147.27,68.73 +35383,144.91,68.566 +35384,142.44,68.407 +35385,148.2,68.928 +35386,145.95,68.725 +35387,143.6,68.527 +35388,141.12,68.333 +35389,146.88,68.958 +35390,144.63,68.72 +35391,142.28,68.487 +35392,139.81,68.259 +35393,145.56,68.987 +35394,143.32,68.715 +35395,140.97,68.448 +35396,138.49,68.185 +35397,144.24,69.016 +35398,142,68.71 +35399,139.65,68.409 +35400,137.18,68.111 +35401,142.92,69.044 +35402,140.68,68.705 +35403,138.34,68.369 +35404,135.87,68.038 +35405,141.59,69.073 +35406,139.36,68.7 +35407,137.03,68.33 +35408,134.56,67.964 +35409,140.27,69.101 +35410,138.04,68.694 +35411,135.71,68.291 +35412,133.26,67.891 +35413,138.94,69.128 +35414,136.72,68.689 +35415,134.4,68.252 +35416,131.95,67.819 +35417,137.61,69.156 +35418,135.4,68.683 +35419,133.09,68.213 +35420,130.65,67.746 +35421,136.28,69.183 +35422,134.08,68.677 +35423,131.78,68.174 +35424,129.35,67.674 +35425,134.94,69.209 +35426,132.76,68.671 +35427,130.47,68.135 +35428,128.05,67.602 +35429,133.61,69.235 +35430,131.44,68.665 +35431,129.16,68.097 +35432,126.75,67.531 +35433,132.27,69.261 +35434,130.12,68.659 +35435,127.85,68.058 +35436,125.46,67.46 +35437,130.93,69.286 +35438,128.79,68.653 +35439,126.54,68.02 +35440,124.17,67.389 +35441,129.59,69.311 +35442,127.47,68.646 +35443,125.24,67.982 +35444,122.87,67.319 +35445,128.25,69.335 +35446,126.15,68.639 +35447,123.93,67.944 +35448,121.58,67.25 +35449,126.91,69.358 +35450,124.82,68.632 +35451,122.62,67.906 +35452,120.3,67.181 +35453,125.56,69.381 +35454,123.5,68.625 +35455,121.32,67.869 +35456,119.01,67.112 +35457,124.22,69.404 +35458,122.17,68.618 +35459,120.01,67.831 +35460,117.73,67.044 +35461,122.87,69.425 +35462,120.84,68.61 +35463,118.71,67.794 +35464,116.44,66.977 +35465,121.52,69.446 +35466,119.52,68.603 +35467,117.4,67.757 +35468,115.16,66.91 +35469,120.17,69.467 +35470,118.19,68.595 +35471,116.1,67.72 +35472,113.89,66.845 +35473,118.82,69.486 +35474,116.86,68.586 +35475,114.8,67.683 +35476,112.61,66.779 +35477,117.46,69.505 +35478,115.53,68.578 +35479,113.49,67.647 +35480,111.33,66.715 +35481,116.11,69.523 +35482,114.2,68.569 +35483,112.19,67.611 +35484,110.06,66.651 +35485,114.75,69.541 +35486,112.87,68.56 +35487,110.89,67.575 +35488,108.79,66.588 +35489,113.39,69.557 +35490,111.54,68.551 +35491,109.59,67.539 +35492,107.52,66.525 +35493,112.03,69.573 +35494,110.21,68.541 +35495,108.29,67.504 +35496,106.25,66.464 +35497,110.67,69.588 +35498,108.88,68.531 +35499,106.99,67.469 +35500,104.98,66.403 +35501,109.31,69.602 +35502,107.55,68.521 +35503,105.69,67.434 +35504,103.72,66.343 +35505,107.95,69.615 +35506,106.22,68.511 +35507,104.39,67.4 +35508,102.45,66.284 +35509,106.58,69.627 +35510,104.89,68.5 +35511,103.09,67.365 +35512,101.19,66.226 +35513,105.22,69.639 +35514,103.56,68.489 +35515,101.8,67.331 +35516,99.928,66.168 +35517,103.85,69.649 +35518,102.22,68.477 +35519,100.5,67.298 +35520,98.669,66.112 +35521,102.48,69.659 +35522,100.89,68.466 +35523,99.204,67.264 +35524,97.41,66.057 +35525,101.11,69.667 +35526,99.556,68.454 +35527,97.907,67.231 +35528,96.154,66.002 +35529,99.74,69.675 +35530,98.222,68.441 +35531,96.612,67.199 +35532,94.898,65.949 +35533,98.368,69.681 +35534,96.887,68.428 +35535,95.316,67.166 +35536,93.644,65.896 +35537,96.994,69.687 +35538,95.552,68.415 +35539,94.021,67.134 +35540,92.391,65.845 +35541,95.619,69.691 +35542,94.217,68.402 +35543,92.727,67.102 +35544,91.14,65.794 +35545,94.244,69.695 +35546,92.881,68.388 +35547,91.433,67.071 +35548,89.889,65.745 +35549,92.867,69.697 +35550,91.545,68.374 +35551,90.139,67.04 +35552,88.64,65.697 +35553,91.489,69.699 +35554,90.208,68.36 +35555,88.846,67.009 +35556,87.392,65.649 +35557,90.11,69.699 +35558,88.872,68.345 +35559,87.553,66.979 +35560,86.146,65.603 +35561,88.73,69.698 +35562,87.535,68.329 +35563,86.26,66.949 +35564,84.9,65.558 +35565,87.35,69.696 +35566,86.197,68.314 +35567,84.968,66.919 +35568,83.655,65.514 +35569,85.968,69.693 +35570,84.859,68.298 +35571,83.676,66.89 +35572,82.411,65.471 +35573,84.585,69.689 +35574,83.521,68.281 +35575,82.385,66.861 +35576,81.169,65.43 +35577,83.202,69.684 +35578,82.183,68.265 +35579,81.094,66.833 +35580,79.927,65.389 +35581,81.817,69.677 +35582,80.844,68.247 +35583,79.803,66.804 +35584,78.686,65.35 +35585,80.432,69.67 +35586,79.506,68.23 +35587,78.512,66.777 +35588,77.446,65.311 +35589,79.046,69.661 +35590,78.167,68.212 +35591,77.222,66.749 +35592,76.206,65.274 +35593,77.66,69.651 +35594,76.827,68.194 +35595,75.932,66.722 +35596,74.968,65.239 +35597,76.272,69.64 +35598,75.488,68.175 +35599,74.642,66.696 +35600,73.73,65.204 +35601,74.884,69.628 +35602,74.148,68.156 +35603,73.353,66.67 +35604,72.493,65.17 +35605,73.496,69.614 +35606,72.808,68.136 +35607,72.063,66.644 +35608,71.256,65.138 +35609,72.106,69.599 +35610,71.468,68.116 +35611,70.774,66.618 +35612,70.02,65.107 +35613,70.717,69.583 +35614,70.128,68.096 +35615,69.485,66.593 +35616,68.785,65.077 +35617,69.326,69.566 +35618,68.787,68.075 +35619,68.197,66.569 +35620,67.55,65.049 +35621,67.935,69.548 +35622,67.447,68.054 +35623,66.908,66.544 +35624,66.315,65.021 +35625,66.544,69.528 +35626,66.106,68.032 +35627,65.62,66.52 +35628,65.081,64.995 +35629,65.152,69.508 +35630,64.765,68.01 +35631,64.331,66.497 +35632,63.848,64.97 +35633,63.76,69.486 +35634,63.424,67.987 +35635,63.043,66.474 +35636,62.614,64.947 +35637,62.367,69.463 +35638,62.083,67.965 +35639,61.755,66.451 +35640,61.381,64.924 +35641,60.974,69.438 +35642,60.742,67.941 +35643,60.467,66.429 +35644,60.148,64.903 +35645,59.581,69.413 +35646,59.401,67.917 +35647,59.18,66.407 +35648,58.916,64.883 +35649,58.188,69.386 +35650,58.059,67.893 +35651,57.892,66.386 +35652,57.683,64.865 +35653,56.794,69.358 +35654,56.718,67.869 +35655,56.604,66.365 +35656,56.451,64.847 +35657,55.4,69.329 +35658,55.377,67.844 +35659,55.317,66.344 +35660,55.219,64.831 +35661,54.006,69.298 +35662,54.035,67.818 +35663,54.029,66.324 +35664,53.986,64.816 +35665,52.612,69.266 +35666,52.694,67.793 +35667,52.742,66.304 +35668,52.754,64.802 +35669,51.218,69.234 +35670,51.352,67.766 +35671,51.454,66.285 +35672,51.522,64.789 +35673,49.824,69.199 +35674,50.011,67.74 +35675,50.167,66.266 +35676,50.289,64.778 +35677,48.43,69.164 +35678,48.67,67.713 +35679,48.879,66.247 +35680,49.056,64.768 +35681,47.036,69.128 +35682,47.329,67.685 +35683,47.591,66.229 +35684,47.824,64.759 +35685,45.642,69.09 +35686,45.987,67.657 +35687,46.304,66.211 +35688,46.59,64.751 +35689,44.248,69.051 +35690,44.646,67.629 +35691,45.016,66.193 +35692,45.357,64.745 +35693,42.854,69.011 +35694,43.305,67.601 +35695,43.728,66.176 +35696,44.123,64.739 +35697,41.461,68.97 +35698,41.964,67.572 +35699,42.44,66.159 +35700,42.889,64.735 +35701,40.067,68.928 +35702,40.623,67.542 +35703,41.152,66.143 +35704,41.655,64.732 +35705,38.674,68.885 +35706,39.283,67.512 +35707,39.864,66.127 +35708,40.42,64.73 +35709,37.282,68.84 +35710,37.942,67.482 +35711,38.576,66.111 +35712,39.184,64.729 +35713,35.889,68.794 +35714,36.602,67.451 +35715,37.288,66.096 +35716,37.948,64.73 +35717,34.497,68.748 +35718,35.262,67.42 +35719,35.999,66.081 +35720,36.711,64.731 +35721,33.106,68.7 +35722,33.922,67.389 +35723,34.711,66.067 +35724,35.474,64.734 +35725,31.715,68.651 +35726,32.582,67.357 +35727,33.422,66.052 +35728,34.236,64.737 +35729,30.324,68.601 +35730,31.242,67.325 +35731,32.133,66.039 +35732,32.998,64.742 +35733,28.934,68.55 +35734,29.903,67.293 +35735,30.843,66.025 +35736,31.758,64.748 +35737,27.545,68.498 +35738,28.563,67.26 +35739,29.554,66.012 +35740,30.518,64.754 +35741,26.156,68.444 +35742,27.224,67.227 +35743,28.264,65.999 +35744,29.277,64.762 +35745,24.768,68.39 +35746,25.886,67.193 +35747,26.974,65.986 +35748,28.036,64.771 +35749,23.38,68.335 +35750,24.547,67.16 +35751,25.684,65.974 +35752,26.793,64.781 +35753,21.994,68.279 +35754,23.209,67.125 +35755,24.394,65.962 +35756,25.549,64.792 +35757,20.608,68.222 +35758,21.871,67.091 +35759,23.103,65.951 +35760,24.305,64.803 +35761,19.223,68.164 +35762,20.534,67.056 +35763,21.812,65.94 +35764,23.059,64.816 +35765,17.839,68.105 +35766,19.197,67.021 +35767,20.52,65.929 +35768,21.813,64.829 +35769,16.455,68.045 +35770,17.86,66.985 +35771,19.229,65.918 +35772,20.565,64.844 +35773,15.073,67.984 +35774,16.523,66.95 +35775,17.937,65.907 +35776,19.316,64.859 +35777,13.691,67.922 +35778,15.187,66.914 +35779,16.644,65.897 +35780,18.067,64.875 +35781,12.311,67.86 +35782,13.851,66.877 +35783,15.351,65.887 +35784,16.816,64.892 +35785,10.931,67.797 +35786,12.516,66.84 +35787,14.058,65.878 +35788,15.564,64.91 +35789,9.553,67.732 +35790,11.181,66.804 +35791,12.765,65.868 +35792,14.31,64.929 +35793,8.1757,67.667 +35794,9.8463,66.766 +35795,11.471,65.859 +35796,13.056,64.948 +35797,6.7996,67.602 +35798,8.5121,66.729 +35799,10.177,65.851 +35800,11.8,64.968 +35801,5.4247,67.535 +35802,7.1783,66.691 +35803,8.8822,65.842 +35804,10.543,64.989 +35805,4.0509,67.468 +35806,5.8449,66.653 +35807,7.5872,65.833 +35808,9.284,65.01 +35809,2.6784,67.4 +35810,4.512,66.615 +35811,6.2917,65.825 +35812,8.0242,65.032 +35813,1.3072,67.331 +35814,3.1796,66.576 +35815,4.9958,65.817 +35816,6.763,65.055 +35817,359.94,67.262 +35818,1.8476,66.538 +35819,3.6995,65.809 +35820,5.5003,65.079 +35821,358.57,67.192 +35822,0.51607,66.499 +35823,2.4027,65.802 +35824,4.2363,65.102 +35825,357.2,67.122 +35826,359.19,66.46 +35827,1.1054,65.794 +35828,2.9708,65.127 +35829,355.84,67.05 +35830,357.85,66.42 +35831,359.81,65.787 +35832,1.7038,65.152 +35833,354.47,66.979 +35834,356.52,66.381 +35835,358.51,65.78 +35836,0.43538,65.178 +35837,353.11,66.906 +35838,355.19,66.341 +35839,357.21,65.773 +35840,359.17,65.204 +35841,351.75,66.834 +35842,353.87,66.301 +35843,355.91,65.766 +35844,357.89,65.23 +35845,350.39,66.76 +35846,352.54,66.261 +35847,354.61,65.76 +35848,356.62,65.257 +35849,349.03,66.687 +35850,351.21,66.221 +35851,353.31,65.753 +35852,355.35,65.284 +35853,347.67,66.613 +35854,349.88,66.181 +35855,352.01,65.747 +35856,354.07,65.312 +35857,346.32,66.538 +35858,348.56,66.14 +35859,350.71,65.741 +35860,352.79,65.34 +35861,344.96,66.463 +35862,347.23,66.1 +35863,349.41,65.735 +35864,351.51,65.369 +35865,343.61,66.388 +35866,345.9,66.059 +35867,348.11,65.728 +35868,350.23,65.397 +35869,342.26,66.312 +35870,344.58,66.018 +35871,346.8,65.722 +35872,348.95,65.426 +35873,340.91,66.236 +35874,343.25,65.977 +35875,345.5,65.717 +35876,347.66,65.455 +35877,339.57,66.16 +35878,341.93,65.936 +35879,344.2,65.711 +35880,346.38,65.485 +35881,338.22,66.084 +35882,340.61,65.895 +35883,342.89,65.705 +35884,345.09,65.514 +35885,336.88,66.007 +35886,339.28,65.854 +35887,341.59,65.699 +35888,343.8,65.544 +35889,335.54,65.93 +35890,337.96,65.813 +35891,340.28,65.693 +35892,342.51,65.574 +35893,334.2,65.854 +35894,336.64,65.771 +35895,338.98,65.688 +35896,341.22,65.604 +35897,332.86,65.776 +35898,335.32,65.73 +35899,337.67,65.682 +35900,339.92,65.634 +35901,331.52,65.699 +35902,334,65.689 +35903,336.36,65.676 +35904,338.63,65.664 +35905,330.19,65.622 +35906,332.68,65.647 +35907,335.05,65.671 +35908,337.33,65.694 +35909,328.86,65.545 +35910,331.36,65.606 +35911,333.75,65.665 +35912,336.03,65.724 +35913,327.53,65.467 +35914,330.04,65.564 +35915,332.44,65.659 +35916,334.73,65.754 +35917,326.2,65.39 +35918,328.72,65.523 +35919,331.13,65.654 +35920,333.43,65.784 +35921,324.87,65.313 +35922,327.41,65.481 +35923,329.82,65.648 +35924,332.12,65.813 +35925,323.55,65.236 +35926,326.09,65.44 +35927,328.51,65.642 +35928,330.81,65.843 +35929,322.22,65.158 +35930,324.77,65.398 +35931,327.19,65.636 +35932,329.51,65.872 +35933,320.9,65.081 +35934,323.46,65.357 +35935,325.88,65.63 +35936,328.2,65.902 +35937,319.58,65.005 +35938,322.14,65.316 +35939,324.57,65.624 +35940,326.88,65.931 +35941,318.27,64.928 +35942,320.83,65.274 +35943,323.26,65.618 +35944,325.57,65.96 +35945,316.95,64.852 +35946,319.52,65.233 +35947,321.94,65.612 +35948,324.25,65.988 +35949,315.64,64.775 +35950,318.2,65.192 +35951,320.63,65.606 +35952,322.94,66.016 +35953,314.33,64.7 +35954,316.89,65.151 +35955,319.31,65.599 +35956,321.62,66.044 +35957,313.02,64.624 +35958,315.58,65.11 +35959,318,65.593 +35960,320.3,66.072 +35961,311.71,64.549 +35962,314.27,65.069 +35963,316.68,65.586 +35964,318.98,66.099 +35965,310.41,64.474 +35966,312.96,65.029 +35967,315.37,65.579 +35968,317.65,66.125 +35969,309.1,64.399 +35970,311.65,64.988 +35971,314.05,65.572 +35972,316.33,66.152 +35973,307.8,64.325 +35974,310.34,64.948 +35975,312.73,65.565 +35976,315,66.177 +35977,306.5,64.252 +35978,309.03,64.907 +35979,311.41,65.558 +35980,313.67,66.203 +35981,305.21,64.178 +35982,307.73,64.867 +35983,310.1,65.55 +35984,312.34,66.227 +35985,303.91,64.106 +35986,306.42,64.827 +35987,308.78,65.542 +35988,311.01,66.252 +35989,302.62,64.034 +35990,305.11,64.787 +35991,307.46,65.534 +35992,309.67,66.275 +35993,301.33,63.962 +35994,303.81,64.748 +35995,306.14,65.526 +35996,308.34,66.298 +35997,300.04,63.891 +35998,302.5,64.708 +35999,304.81,65.518 +36000,307,66.321 +36001,298.75,63.821 +36002,301.2,64.669 +36003,303.49,65.51 +36004,305.66,66.342 +36005,297.47,63.751 +36006,299.89,64.63 +36007,302.17,65.501 +36008,304.32,66.364 +36009,296.18,63.682 +36010,298.59,64.591 +36011,300.85,65.492 +36012,302.98,66.384 +36013,294.9,63.613 +36014,297.29,64.552 +36015,299.52,65.482 +36016,301.63,66.404 +36017,293.62,63.545 +36018,295.99,64.514 +36019,298.2,65.473 +36020,300.29,66.423 +36021,292.34,63.478 +36022,294.68,64.476 +36023,296.88,65.463 +36024,298.94,66.441 +36025,291.07,63.412 +36026,293.38,64.438 +36027,295.55,65.453 +36028,297.59,66.458 +36029,289.79,63.347 +36030,292.08,64.4 +36031,294.23,65.443 +36032,296.24,66.475 +36033,288.52,63.282 +36034,290.78,64.363 +36035,292.9,65.432 +36036,294.89,66.49 +36037,287.25,63.218 +36038,289.48,64.325 +36039,291.57,65.421 +36040,293.54,66.505 +36041,285.98,63.155 +36042,288.19,64.288 +36043,290.25,65.41 +36044,292.18,66.519 +36045,284.71,63.093 +36046,286.89,64.252 +36047,288.92,65.398 +36048,290.83,66.532 +36049,283.45,63.032 +36050,285.59,64.216 +36051,287.59,65.387 +36052,289.47,66.545 +36053,282.19,62.972 +36054,284.29,64.18 +36055,286.26,65.374 +36056,288.11,66.556 +36057,280.92,62.912 +36058,283,64.144 +36059,284.93,65.362 +36060,286.75,66.566 +36061,279.66,62.854 +36062,281.7,64.108 +36063,283.61,65.349 +36064,285.39,66.575 +36065,278.4,62.796 +36066,280.41,64.073 +36067,282.28,65.336 +36068,284.03,66.584 +36069,277.15,62.74 +36070,279.11,64.039 +36071,280.95,65.322 +36072,282.66,66.591 +36073,275.89,62.685 +36074,277.82,64.004 +36075,279.61,65.309 +36076,281.3,66.597 +36077,274.64,62.63 +36078,276.53,63.97 +36079,278.28,65.294 +36080,279.93,66.603 +36081,273.38,62.577 +36082,275.23,63.936 +36083,276.95,65.28 +36084,278.56,66.607 +36085,272.13,62.525 +36086,273.94,63.903 +36087,275.62,65.265 +36088,277.19,66.61 +36089,270.88,62.473 +36090,272.65,63.87 +36091,274.29,65.249 +36092,275.82,66.612 +36093,269.63,62.423 +36094,271.36,63.837 +36095,272.96,65.234 +36096,274.45,66.613 +36097,268.39,62.374 +36098,270.06,63.805 +36099,271.62,65.218 +36100,273.08,66.613 +36101,267.14,62.326 +36102,268.77,63.773 +36103,270.29,65.201 +36104,271.7,66.612 +36105,265.9,62.28 +36106,267.48,63.741 +36107,268.95,65.184 +36108,270.33,66.609 +36109,264.65,62.234 +36110,266.19,63.71 +36111,267.62,65.167 +36112,268.95,66.606 +36113,263.41,62.19 +36114,264.9,63.679 +36115,266.29,65.149 +36116,267.57,66.601 +36117,262.17,62.147 +36118,263.61,63.648 +36119,264.95,65.131 +36120,266.19,66.595 +36121,260.93,62.105 +36122,262.33,63.618 +36123,263.62,65.113 +36124,264.82,66.588 +36125,259.69,62.064 +36126,261.04,63.588 +36127,262.28,65.094 +36128,263.44,66.58 +36129,258.45,62.024 +36130,259.75,63.559 +36131,260.95,65.075 +36132,262.05,66.57 +36133,257.22,61.986 +36134,258.46,63.53 +36135,259.61,65.055 +36136,260.67,66.56 +36137,255.98,61.949 +36138,257.17,63.501 +36139,258.27,65.035 +36140,259.29,66.548 +36141,254.75,61.913 +36142,255.89,63.473 +36143,256.94,65.014 +36144,257.91,66.535 +36145,253.51,61.878 +36146,254.6,63.446 +36147,255.6,64.993 +36148,256.52,66.52 +36149,252.28,61.845 +36150,253.31,63.418 +36151,254.26,64.972 +36152,255.14,66.505 +36153,251.05,61.813 +36154,252.03,63.391 +36155,252.92,64.95 +36156,253.75,66.488 +36157,249.82,61.782 +36158,250.74,63.365 +36159,251.59,64.928 +36160,252.36,66.47 +36161,248.58,61.752 +36162,249.45,63.339 +36163,250.25,64.905 +36164,250.98,66.45 +36165,247.35,61.724 +36166,248.17,63.313 +36167,248.91,64.882 +36168,249.59,66.43 +36169,246.12,61.697 +36170,246.88,63.287 +36171,247.57,64.858 +36172,248.2,66.408 +36173,244.89,61.671 +36174,245.6,63.263 +36175,246.24,64.834 +36176,246.81,66.385 +36177,243.67,61.646 +36178,244.31,63.238 +36179,244.9,64.81 +36180,245.42,66.36 +36181,242.44,61.623 +36182,243.03,63.214 +36183,243.56,64.785 +36184,244.03,66.334 +36185,241.21,61.601 +36186,241.74,63.19 +36187,242.22,64.759 +36188,242.64,66.307 +36189,239.98,61.581 +36190,240.46,63.167 +36191,240.88,64.734 +36192,241.25,66.279 +36193,238.75,61.561 +36194,239.18,63.144 +36195,239.54,64.707 +36196,239.86,66.25 +36197,237.53,61.543 +36198,237.89,63.122 +36199,238.2,64.681 +36200,238.47,66.219 +36201,236.3,61.526 +36202,236.61,63.1 +36203,236.86,64.654 +36204,237.08,66.187 +36205,235.07,61.511 +36206,235.32,63.078 +36207,235.52,64.626 +36208,235.68,66.154 +36209,233.85,61.496 +36210,234.04,63.057 +36211,234.19,64.598 +36212,234.29,66.119 +36213,232.62,61.483 +36214,232.76,63.036 +36215,232.85,64.57 +36216,232.9,66.084 +36217,231.4,61.472 +36218,231.47,63.016 +36219,231.51,64.541 +36220,231.5,66.047 +36221,230.17,61.461 +36222,230.19,62.996 +36223,230.17,64.512 +36224,230.11,66.008 +36225,228.94,61.452 +36226,228.9,62.976 +36227,228.83,64.482 +36228,228.72,65.969 +36229,227.72,61.444 +36230,227.62,62.957 +36231,227.49,64.452 +36232,227.33,65.928 +36233,226.49,61.437 +36234,226.34,62.938 +36235,226.15,64.421 +36236,225.93,65.886 +36237,225.26,61.431 +36238,225.05,62.92 +36239,224.81,64.391 +36240,224.54,65.843 +36241,224.04,61.427 +36242,223.77,62.902 +36243,223.47,64.359 +36244,223.15,65.799 +36245,222.81,61.423 +36246,222.49,62.884 +36247,222.13,64.327 +36248,221.75,65.753 +36249,221.58,61.421 +36250,221.2,62.867 +36251,220.79,64.295 +36252,220.36,65.706 +36253,220.35,61.42 +36254,219.92,62.85 +36255,219.46,64.263 +36256,218.97,65.658 +36257,219.12,61.421 +36258,218.63,62.833 +36259,218.12,64.23 +36260,217.58,65.609 +36261,217.9,61.422 +36262,217.35,62.817 +36263,216.78,64.196 +36264,216.18,65.559 +36265,216.67,61.425 +36266,216.06,62.801 +36267,215.44,64.163 +36268,214.79,65.508 +36269,215.44,61.428 +36270,214.78,62.786 +36271,214.1,64.129 +36272,213.4,65.455 +36273,214.21,61.433 +36274,213.5,62.771 +36275,212.76,64.094 +36276,212.01,65.402 +36277,212.97,61.439 +36278,212.21,62.756 +36279,211.43,64.059 +36280,210.62,65.347 +36281,211.74,61.446 +36282,210.93,62.742 +36283,210.09,64.024 +36284,209.23,65.291 +36285,210.51,61.454 +36286,209.64,62.728 +36287,208.75,63.988 +36288,207.84,65.234 +36289,209.28,61.463 +36290,208.36,62.714 +36291,207.41,63.952 +36292,206.45,65.176 +36293,208.04,61.473 +36294,207.07,62.7 +36295,206.08,63.916 +36296,205.06,65.117 +36297,206.81,61.484 +36298,205.78,62.687 +36299,204.74,63.879 +36300,203.67,65.057 +36301,205.57,61.496 +36302,204.5,62.675 +36303,203.4,63.842 +36304,202.28,64.996 +36305,204.33,61.509 +36306,203.21,62.662 +36307,202.07,63.805 +36308,200.9,64.934 +36309,203.1,61.522 +36310,201.93,62.65 +36311,200.73,63.767 +36312,199.51,64.871 +36313,201.86,61.537 +36314,200.64,62.638 +36315,199.4,63.729 +36316,198.13,64.807 +36317,200.62,61.553 +36318,199.35,62.627 +36319,198.06,63.69 +36320,196.74,64.742 +36321,199.38,61.569 +36322,198.06,62.615 +36323,196.73,63.652 +36324,195.36,64.677 +36325,198.13,61.587 +36326,196.78,62.604 +36327,195.39,63.613 +36328,193.98,64.61 +36329,196.89,61.605 +36330,195.49,62.594 +36331,194.06,63.573 +36332,192.59,64.542 +36333,195.65,61.624 +36334,194.2,62.583 +36335,192.72,63.534 +36336,191.21,64.474 +36337,194.4,61.644 +36338,192.91,62.573 +36339,191.39,63.494 +36340,189.83,64.405 +36341,193.16,61.664 +36342,191.62,62.563 +36343,190.06,63.454 +36344,188.45,64.335 +36345,191.91,61.685 +36346,190.33,62.553 +36347,188.72,63.413 +36348,187.08,64.264 +36349,190.66,61.707 +36350,189.04,62.544 +36351,187.39,63.373 +36352,185.7,64.192 +36353,189.41,61.73 +36354,187.75,62.534 +36355,186.06,63.332 +36356,184.32,64.12 +36357,188.16,61.753 +36358,186.46,62.525 +36359,184.73,63.291 +36360,182.95,64.047 +36361,186.9,61.777 +36362,185.17,62.516 +36363,183.4,63.249 +36364,181.58,63.973 +36365,185.65,61.801 +36366,183.88,62.508 +36367,182.07,63.208 +36368,180.2,63.899 +36369,184.39,61.827 +36370,182.59,62.499 +36371,180.74,63.166 +36372,178.83,63.824 +36373,183.13,61.852 +36374,181.29,62.491 +36375,179.41,63.124 +36376,177.46,63.748 +36377,181.88,61.878 +36378,180,62.483 +36379,178.08,63.081 +36380,176.1,63.672 +36381,180.62,61.905 +36382,178.71,62.475 +36383,176.75,63.039 +36384,174.73,63.595 +36385,179.35,61.932 +36386,177.41,62.467 +36387,175.42,62.996 +36388,173.36,63.518 +36389,178.09,61.959 +36390,176.12,62.459 +36391,174.09,62.953 +36392,172,63.44 +36393,176.82,61.987 +36394,174.82,62.452 +36395,172.76,62.91 +36396,170.64,63.362 +36397,175.56,62.016 +36398,173.53,62.444 +36399,171.44,62.867 +36400,169.28,63.283 +36401,174.29,62.044 +36402,172.23,62.437 +36403,170.11,62.824 +36404,167.92,63.204 +36405,173.02,62.073 +36406,170.94,62.429 +36407,168.79,62.78 +36408,166.56,63.124 +36409,171.75,62.102 +36410,169.64,62.422 +36411,167.46,62.737 +36412,165.2,63.044 +36413,170.48,62.132 +36414,168.34,62.415 +36415,166.14,62.693 +36416,163.85,62.964 +36417,169.2,62.162 +36418,167.05,62.408 +36419,164.81,62.649 +36420,162.49,62.884 +36421,167.92,62.192 +36422,165.75,62.401 +36423,163.49,62.606 +36424,161.14,62.803 +36425,166.65,62.222 +36426,164.45,62.394 +36427,162.17,62.562 +36428,159.79,62.722 +36429,165.37,62.252 +36430,163.15,62.387 +36431,160.85,62.517 +36432,158.45,62.64 +36433,164.08,62.282 +36434,161.85,62.381 +36435,159.52,62.473 +36436,157.1,62.559 +36437,162.8,62.313 +36438,160.55,62.374 +36439,158.2,62.429 +36440,155.76,62.477 +36441,161.52,62.343 +36442,159.25,62.367 +36443,156.88,62.385 +36444,154.41,62.395 +36445,160.23,62.374 +36446,157.94,62.36 +36447,155.56,62.341 +36448,153.07,62.313 +36449,158.94,62.404 +36450,156.64,62.353 +36451,154.24,62.296 +36452,151.73,62.231 +36453,157.65,62.435 +36454,155.34,62.347 +36455,152.93,62.252 +36456,150.4,62.149 +36457,156.36,62.465 +36458,154.04,62.34 +36459,151.61,62.208 +36460,149.06,62.067 +36461,155.07,62.495 +36462,152.73,62.333 +36463,150.29,62.163 +36464,147.73,61.985 +36465,153.77,62.526 +36466,151.43,62.326 +36467,148.98,62.119 +36468,146.4,61.903 +36469,152.47,62.556 +36470,150.12,62.319 +36471,147.66,62.075 +36472,145.07,61.821 +36473,151.17,62.585 +36474,148.82,62.312 +36475,146.34,62.03 +36476,143.74,61.74 +36477,149.87,62.615 +36478,147.51,62.305 +36479,145.03,61.986 +36480,142.41,61.658 +36481,148.57,62.644 +36482,146.2,62.298 +36483,143.72,61.942 +36484,141.09,61.576 +36485,147.27,62.673 +36486,144.9,62.29 +36487,142.4,61.898 +36488,139.77,61.495 +36489,145.96,62.702 +36490,143.59,62.283 +36491,141.09,61.854 +36492,138.45,61.414 +36493,144.65,62.731 +36494,142.28,62.275 +36495,139.78,61.81 +36496,137.13,61.333 +36497,143.34,62.759 +36498,140.97,62.268 +36499,138.47,61.766 +36500,135.82,61.253 +36501,142.03,62.786 +36502,139.66,62.26 +36503,137.16,61.722 +36504,134.5,61.173 +36505,140.72,62.814 +36506,138.35,62.252 +36507,135.85,61.679 +36508,133.19,61.093 +36509,139.4,62.841 +36510,137.04,62.244 +36511,134.54,61.635 +36512,131.88,61.014 +36513,138.09,62.867 +36514,135.73,62.235 +36515,133.23,61.592 +36516,130.58,60.935 +36517,136.77,62.893 +36518,134.41,62.227 +36519,131.92,61.548 +36520,129.27,60.856 +36521,135.45,62.918 +36522,133.1,62.218 +36523,130.62,61.505 +36524,127.97,60.778 +36525,134.12,62.943 +36526,131.79,62.21 +36527,129.31,61.462 +36528,126.67,60.7 +36529,132.8,62.967 +36530,130.47,62.2 +36531,128,61.42 +36532,125.37,60.623 +36533,131.47,62.991 +36534,129.16,62.191 +36535,126.7,61.377 +36536,124.07,60.547 +36537,130.15,63.014 +36538,127.84,62.182 +36539,125.4,61.335 +36540,122.78,60.471 +36541,128.82,63.036 +36542,126.53,62.172 +36543,124.09,61.292 +36544,121.48,60.396 +36545,127.49,63.058 +36546,125.21,62.162 +36547,122.79,61.25 +36548,120.19,60.321 +36549,126.16,63.078 +36550,123.9,62.152 +36551,121.49,61.209 +36552,118.9,60.247 +36553,124.82,63.099 +36554,122.58,62.142 +36555,120.18,61.167 +36556,117.62,60.174 +36557,123.49,63.118 +36558,121.26,62.131 +36559,118.88,61.126 +36560,116.33,60.101 +36561,122.15,63.137 +36562,119.94,62.12 +36563,117.58,61.085 +36564,115.05,60.03 +36565,120.81,63.154 +36566,118.62,62.109 +36567,116.28,61.044 +36568,113.77,59.959 +36569,119.47,63.171 +36570,117.3,62.097 +36571,114.98,61.003 +36572,112.49,59.888 +36573,118.13,63.187 +36574,115.98,62.085 +36575,113.69,60.963 +36576,111.21,59.819 +36577,116.78,63.203 +36578,114.66,62.073 +36579,112.39,60.923 +36580,109.94,59.75 +36581,115.44,63.217 +36582,113.34,62.061 +36583,111.09,60.883 +36584,108.67,59.683 +36585,114.09,63.23 +36586,112.02,62.048 +36587,109.8,60.843 +36588,107.4,59.616 +36589,112.74,63.243 +36590,110.7,62.035 +36591,108.5,60.804 +36592,106.13,59.55 +36593,111.39,63.254 +36594,109.37,62.021 +36595,107.2,60.765 +36596,104.86,59.485 +36597,110.04,63.265 +36598,108.05,62.008 +36599,105.91,60.727 +36600,103.59,59.422 +36601,108.69,63.274 +36602,106.73,61.993 +36603,104.62,60.689 +36604,102.33,59.359 +36605,107.33,63.283 +36606,105.4,61.979 +36607,103.32,60.651 +36608,101.07,59.297 +36609,105.98,63.29 +36610,104.08,61.964 +36611,102.03,60.613 +36612,99.81,59.236 +36613,104.62,63.297 +36614,102.75,61.949 +36615,100.74,60.576 +36616,98.552,59.176 +36617,103.26,63.302 +36618,101.43,61.933 +36619,99.445,60.539 +36620,97.296,59.118 +36621,101.9,63.306 +36622,100.1,61.917 +36623,98.154,60.502 +36624,96.041,59.06 +36625,100.54,63.31 +36626,98.773,61.901 +36627,96.863,60.466 +36628,94.789,59.003 +36629,99.18,63.312 +36630,97.446,61.884 +36631,95.573,60.43 +36632,93.538,58.948 +36633,97.816,63.312 +36634,96.118,61.867 +36635,94.283,60.395 +36636,92.288,58.894 +36637,96.451,63.312 +36638,94.79,61.85 +36639,92.994,60.36 +36640,91.04,58.841 +36641,95.085,63.311 +36642,93.462,61.832 +36643,91.705,60.325 +36644,89.794,58.789 +36645,93.717,63.308 +36646,92.133,61.813 +36647,90.417,60.291 +36648,88.549,58.738 +36649,92.348,63.304 +36650,90.804,61.795 +36651,89.13,60.257 +36652,87.306,58.689 +36653,90.979,63.299 +36654,89.474,61.775 +36655,87.843,60.223 +36656,86.064,58.641 +36657,89.608,63.293 +36658,88.144,61.756 +36659,86.556,60.19 +36660,84.824,58.594 +36661,88.235,63.285 +36662,86.814,61.736 +36663,85.27,60.157 +36664,83.585,58.548 +36665,86.862,63.276 +36666,85.483,61.715 +36667,83.984,60.125 +36668,82.347,58.504 +36669,85.488,63.266 +36670,84.152,61.694 +36671,82.699,60.093 +36672,81.11,58.461 +36673,84.113,63.255 +36674,82.821,61.673 +36675,81.414,60.061 +36676,79.875,58.419 +36677,82.737,63.243 +36678,81.489,61.651 +36679,80.13,60.03 +36680,78.641,58.378 +36681,81.359,63.229 +36682,80.157,61.629 +36683,78.845,59.999 +36684,77.408,58.339 +36685,79.981,63.214 +36686,78.824,61.607 +36687,77.562,59.969 +36688,76.177,58.301 +36689,78.602,63.197 +36690,77.492,61.583 +36691,76.278,59.939 +36692,74.946,58.264 +36693,77.222,63.179 +36694,76.159,61.56 +36695,74.995,59.91 +36696,73.717,58.229 +36697,75.842,63.16 +36698,74.826,61.536 +36699,73.713,59.881 +36700,72.488,58.195 +36701,74.46,63.14 +36702,73.492,61.511 +36703,72.43,59.852 +36704,71.26,58.162 +36705,73.078,63.118 +36706,72.159,61.486 +36707,71.148,59.824 +36708,70.034,58.131 +36709,71.695,63.095 +36710,70.825,61.461 +36711,69.867,59.796 +36712,68.808,58.101 +36713,70.311,63.071 +36714,69.491,61.435 +36715,68.585,59.769 +36716,67.583,58.073 +36717,68.927,63.045 +36718,68.157,61.409 +36719,67.304,59.742 +36720,66.358,58.045 +36721,67.541,63.018 +36722,66.822,61.382 +36723,66.023,59.716 +36724,65.135,58.019 +36725,66.156,62.99 +36726,65.487,61.355 +36727,64.743,59.69 +36728,63.912,57.995 +36729,64.77,62.96 +36730,64.153,61.327 +36731,63.462,59.664 +36732,62.689,57.972 +36733,63.383,62.929 +36734,62.818,61.299 +36735,62.182,59.639 +36736,61.467,57.95 +36737,61.995,62.897 +36738,61.482,61.271 +36739,60.902,59.615 +36740,60.246,57.93 +36741,60.608,62.863 +36742,60.147,61.241 +36743,59.622,59.59 +36744,59.025,57.91 +36745,59.219,62.828 +36746,58.812,61.212 +36747,58.343,59.567 +36748,57.805,57.893 +36749,57.831,62.792 +36750,57.476,61.182 +36751,57.063,59.543 +36752,56.585,57.876 +36753,56.442,62.755 +36754,56.141,61.152 +36755,55.784,59.52 +36756,55.365,57.861 +36757,55.053,62.716 +36758,54.805,61.121 +36759,54.505,59.498 +36760,54.145,57.847 +36761,53.663,62.675 +36762,53.47,61.089 +36763,53.226,59.476 +36764,52.926,57.835 +36765,52.273,62.634 +36766,52.134,61.057 +36767,51.947,59.454 +36768,51.707,57.824 +36769,50.883,62.591 +36770,50.798,61.025 +36771,50.668,59.433 +36772,50.488,57.814 +36773,49.493,62.547 +36774,49.462,60.993 +36775,49.389,59.412 +36776,49.269,57.806 +36777,48.102,62.501 +36778,48.127,60.959 +36779,48.11,59.392 +36780,48.05,57.799 +36781,46.712,62.454 +36782,46.791,60.926 +36783,46.832,59.372 +36784,46.831,57.793 +36785,45.321,62.406 +36786,45.455,60.892 +36787,45.553,59.352 +36788,45.612,57.788 +36789,43.931,62.357 +36790,44.119,60.857 +36791,44.274,59.333 +36792,44.393,57.785 +36793,42.54,62.307 +36794,42.784,60.823 +36795,42.996,59.314 +36796,43.173,57.783 +36797,41.15,62.255 +36798,41.448,60.787 +36799,41.717,59.296 +36800,41.954,57.782 +36801,39.759,62.202 +36802,40.113,60.751 +36803,40.438,59.278 +36804,40.734,57.782 +36805,38.369,62.147 +36806,38.777,60.715 +36807,39.159,59.26 +36808,39.513,57.784 +36809,36.978,62.092 +36810,37.442,60.679 +36811,37.88,59.243 +36812,38.293,57.786 +36813,35.588,62.035 +36814,36.107,60.642 +36815,36.601,59.226 +36816,37.072,57.79 +36817,34.199,61.977 +36818,34.772,60.604 +36819,35.322,59.21 +36820,35.85,57.795 +36821,32.809,61.918 +36822,33.437,60.567 +36823,34.043,59.194 +36824,34.628,57.802 +36825,31.42,61.858 +36826,32.102,60.528 +36827,32.764,59.178 +36828,33.406,57.809 +36829,30.031,61.797 +36830,30.767,60.49 +36831,31.484,59.163 +36832,32.182,57.817 +36833,28.643,61.735 +36834,29.433,60.451 +36835,30.205,59.148 +36836,30.959,57.827 +36837,27.255,61.671 +36838,28.099,60.412 +36839,28.925,59.133 +36840,29.734,57.838 +36841,25.867,61.606 +36842,26.765,60.372 +36843,27.645,59.119 +36844,28.509,57.849 +36845,24.48,61.541 +36846,25.431,60.332 +36847,26.365,59.105 +36848,27.283,57.862 +36849,23.093,61.474 +36850,24.098,60.291 +36851,25.085,59.092 +36852,26.056,57.876 +36853,21.707,61.406 +36854,22.764,60.251 +36855,23.804,59.078 +36856,24.828,57.89 +36857,20.322,61.337 +36858,21.431,60.21 +36859,22.523,59.065 +36860,23.599,57.906 +36861,18.937,61.268 +36862,20.099,60.168 +36863,21.242,59.053 +36864,22.37,57.923 +36865,17.553,61.197 +36866,18.766,60.126 +36867,19.961,59.04 +36868,21.139,57.94 +36869,16.17,61.125 +36870,17.434,60.084 +36871,18.68,59.028 +36872,19.908,57.958 +36873,14.788,61.052 +36874,16.103,60.042 +36875,17.398,59.016 +36876,18.675,57.978 +36877,13.406,60.979 +36878,14.771,59.999 +36879,16.116,59.005 +36880,17.441,57.998 +36881,12.025,60.904 +36882,13.44,59.956 +36883,14.833,58.993 +36884,16.206,58.019 +36885,10.645,60.829 +36886,12.109,59.913 +36887,13.55,58.982 +36888,14.97,58.04 +36889,9.2665,60.753 +36890,10.779,59.869 +36891,12.267,58.972 +36892,13.733,58.063 +36893,7.8885,60.676 +36894,9.4492,59.825 +36895,10.984,58.961 +36896,12.495,58.086 +36897,6.5115,60.598 +36898,8.1197,59.781 +36899,9.6998,58.951 +36900,11.255,58.11 +36901,5.1355,60.52 +36902,6.7905,59.737 +36903,8.4156,58.941 +36904,10.014,58.135 +36905,3.7606,60.441 +36906,5.4619,59.692 +36907,7.131,58.931 +36908,8.7716,58.16 +36909,2.3868,60.361 +36910,4.1336,59.647 +36911,5.846,58.921 +36912,7.5279,58.186 +36913,1.0142,60.28 +36914,2.8058,59.602 +36915,4.5606,58.912 +36916,6.2828,58.212 +36917,359.64,60.199 +36918,1.4785,59.556 +36919,3.2748,58.903 +36920,5.0363,58.239 +36921,358.27,60.117 +36922,0.15159,59.511 +36923,1.9886,58.894 +36924,3.7884,58.267 +36925,356.9,60.034 +36926,358.83,59.465 +36927,0.70194,58.885 +36928,2.539,58.295 +36929,355.54,59.951 +36930,357.5,59.419 +36931,359.41,58.876 +36932,1.2881,58.324 +36933,354.17,59.868 +36934,356.17,59.373 +36935,358.13,58.867 +36936,0.03576,58.353 +36937,352.8,59.783 +36938,354.85,59.327 +36939,356.84,58.859 +36940,358.78,58.382 +36941,351.44,59.699 +36942,353.52,59.28 +36943,355.55,58.85 +36944,357.53,58.412 +36945,350.08,59.614 +36946,352.2,59.233 +36947,354.26,58.842 +36948,356.27,58.442 +36949,348.72,59.528 +36950,350.88,59.187 +36951,352.97,58.834 +36952,355.01,58.473 +36953,347.36,59.442 +36954,349.55,59.14 +36955,351.68,58.826 +36956,353.75,58.504 +36957,346,59.356 +36958,348.23,59.093 +36959,350.39,58.818 +36960,352.49,58.535 +36961,344.65,59.269 +36962,346.91,59.045 +36963,349.1,58.81 +36964,351.22,58.566 +36965,343.29,59.182 +36966,345.59,58.998 +36967,347.81,58.803 +36968,349.96,58.598 +36969,341.94,59.095 +36970,344.27,58.951 +36971,346.52,58.795 +36972,348.69,58.629 +36973,340.59,59.008 +36974,342.95,58.903 +36975,345.23,58.787 +36976,347.42,58.661 +36977,339.24,58.92 +36978,341.63,58.856 +36979,343.93,58.78 +36980,346.15,58.693 +36981,337.89,58.832 +36982,340.31,58.808 +36983,342.64,58.772 +36984,344.88,58.725 +36985,336.54,58.744 +36986,338.99,58.761 +36987,341.34,58.764 +36988,343.61,58.758 +36989,335.2,58.656 +36990,337.68,58.713 +36991,340.05,58.757 +36992,342.33,58.79 +36993,333.86,58.568 +36994,336.36,58.665 +36995,338.75,58.749 +36996,341.05,58.822 +36997,332.52,58.479 +36998,335.04,58.617 +36999,337.46,58.742 +37000,339.78,58.854 +37001,331.18,58.391 +37002,333.73,58.57 +37003,336.16,58.734 +37004,338.49,58.886 +37005,329.84,58.303 +37006,332.41,58.522 +37007,334.87,58.726 +37008,337.21,58.918 +37009,328.51,58.215 +37010,331.1,58.474 +37011,333.57,58.718 +37012,335.93,58.95 +37013,327.17,58.127 +37014,329.79,58.427 +37015,332.27,58.711 +37016,334.64,58.981 +37017,325.84,58.039 +37018,328.47,58.379 +37019,330.97,58.703 +37020,333.35,59.013 +37021,324.51,57.951 +37022,327.16,58.331 +37023,329.67,58.695 +37024,332.06,59.044 +37025,323.19,57.863 +37026,325.85,58.284 +37027,328.37,58.687 +37028,330.77,59.075 +37029,321.86,57.775 +37030,324.54,58.236 +37031,327.07,58.679 +37032,329.48,59.105 +37033,320.54,57.688 +37034,323.23,58.189 +37035,325.77,58.671 +37036,328.18,59.136 +37037,319.22,57.601 +37038,321.92,58.142 +37039,324.47,58.662 +37040,326.89,59.166 +37041,317.9,57.515 +37042,320.61,58.094 +37043,323.17,58.654 +37044,325.59,59.195 +37045,316.58,57.428 +37046,319.3,58.047 +37047,321.86,58.645 +37048,324.29,59.224 +37049,315.27,57.342 +37050,318,58 +37051,320.56,58.636 +37052,322.98,59.253 +37053,313.95,57.257 +37054,316.69,57.953 +37055,319.26,58.627 +37056,321.68,59.281 +37057,312.64,57.172 +37058,315.38,57.907 +37059,317.95,58.618 +37060,320.37,59.309 +37061,311.33,57.087 +37062,314.08,57.86 +37063,316.65,58.609 +37064,319.07,59.336 +37065,310.03,57.003 +37066,312.77,57.814 +37067,315.34,58.599 +37068,317.76,59.363 +37069,308.72,56.92 +37070,311.47,57.768 +37071,314.03,58.59 +37072,316.44,59.389 +37073,307.42,56.837 +37074,310.17,57.721 +37075,312.73,58.58 +37076,315.13,59.414 +37077,306.12,56.754 +37078,308.86,57.676 +37079,311.42,58.57 +37080,313.82,59.439 +37081,304.82,56.673 +37082,307.56,57.63 +37083,310.11,58.559 +37084,312.5,59.463 +37085,303.53,56.592 +37086,306.26,57.585 +37087,308.8,58.549 +37088,311.18,59.487 +37089,302.23,56.511 +37090,304.96,57.539 +37091,307.49,58.538 +37092,309.86,59.509 +37093,300.94,56.431 +37094,303.66,57.494 +37095,306.18,58.527 +37096,308.54,59.531 +37097,299.65,56.353 +37098,302.36,57.45 +37099,304.87,58.515 +37100,307.21,59.552 +37101,298.37,56.274 +37102,301.07,57.405 +37103,303.56,58.504 +37104,305.89,59.573 +37105,297.08,56.197 +37106,299.77,57.361 +37107,302.25,58.492 +37108,304.56,59.592 +37109,295.8,56.121 +37110,298.47,57.317 +37111,300.94,58.479 +37112,303.23,59.611 +37113,294.52,56.045 +37114,297.18,57.273 +37115,299.63,58.467 +37116,301.9,59.629 +37117,293.24,55.97 +37118,295.88,57.23 +37119,298.31,58.454 +37120,300.57,59.646 +37121,291.96,55.897 +37122,294.59,57.187 +37123,297,58.441 +37124,299.24,59.662 +37125,290.69,55.824 +37126,293.29,57.144 +37127,295.68,58.427 +37128,297.9,59.677 +37129,289.42,55.752 +37130,292,57.102 +37131,294.37,58.414 +37132,296.56,59.691 +37133,288.15,55.681 +37134,290.71,57.06 +37135,293.05,58.399 +37136,295.22,59.704 +37137,286.88,55.611 +37138,289.41,57.018 +37139,291.74,58.385 +37140,293.88,59.716 +37141,285.61,55.542 +37142,288.12,56.976 +37143,290.42,58.37 +37144,292.54,59.727 +37145,284.35,55.475 +37146,286.83,56.935 +37147,289.1,58.355 +37148,291.2,59.737 +37149,283.09,55.408 +37150,285.54,56.894 +37151,287.79,58.339 +37152,289.85,59.746 +37153,281.83,55.343 +37154,284.25,56.854 +37155,286.47,58.323 +37156,288.51,59.753 +37157,280.57,55.278 +37158,282.96,56.814 +37159,285.15,58.307 +37160,287.16,59.76 +37161,279.31,55.215 +37162,281.68,56.774 +37163,283.83,58.29 +37164,285.81,59.765 +37165,278.06,55.153 +37166,280.39,56.735 +37167,282.51,58.273 +37168,284.46,59.77 +37169,276.81,55.092 +37170,279.1,56.696 +37171,281.19,58.255 +37172,283.11,59.773 +37173,275.56,55.033 +37174,277.82,56.658 +37175,279.87,58.237 +37176,281.75,59.775 +37177,274.31,54.975 +37178,276.53,56.62 +37179,278.55,58.219 +37180,280.4,59.776 +37181,273.06,54.918 +37182,275.25,56.582 +37183,277.23,58.2 +37184,279.04,59.775 +37185,271.82,54.862 +37186,273.96,56.545 +37187,275.91,58.181 +37188,277.69,59.773 +37189,270.57,54.808 +37190,272.68,56.508 +37191,274.58,58.161 +37192,276.33,59.77 +37193,269.33,54.755 +37194,271.39,56.471 +37195,273.26,58.141 +37196,274.97,59.766 +37197,268.09,54.703 +37198,270.11,56.435 +37199,271.94,58.12 +37200,273.61,59.761 +37201,266.85,54.652 +37202,268.83,56.4 +37203,270.62,58.099 +37204,272.24,59.754 +37205,265.62,54.603 +37206,267.55,56.365 +37207,269.29,58.078 +37208,270.88,59.746 +37209,264.38,54.556 +37210,266.27,56.33 +37211,267.97,58.056 +37212,269.51,59.736 +37213,263.15,54.509 +37214,264.99,56.296 +37215,266.64,58.033 +37216,268.15,59.726 +37217,261.92,54.465 +37218,263.71,56.262 +37219,265.32,58.01 +37220,266.78,59.714 +37221,260.69,54.421 +37222,262.43,56.229 +37223,263.99,57.987 +37224,265.41,59.7 +37225,259.46,54.379 +37226,261.15,56.196 +37227,262.67,57.963 +37228,264.04,59.685 +37229,258.23,54.338 +37230,259.87,56.163 +37231,261.34,57.939 +37232,262.67,59.669 +37233,257,54.299 +37234,258.59,56.131 +37235,260.01,57.914 +37236,261.3,59.652 +37237,255.78,54.262 +37238,257.31,56.1 +37239,258.69,57.889 +37240,259.93,59.633 +37241,254.55,54.225 +37242,256.03,56.069 +37243,257.36,57.863 +37244,258.56,59.612 +37245,253.33,54.191 +37246,254.76,56.038 +37247,256.03,57.837 +37248,257.18,59.591 +37249,252.11,54.157 +37250,253.48,56.008 +37251,254.71,57.81 +37252,255.81,59.568 +37253,250.89,54.125 +37254,252.2,55.978 +37255,253.38,57.783 +37256,254.43,59.543 +37257,249.67,54.095 +37258,250.93,55.949 +37259,252.05,57.756 +37260,253.06,59.517 +37261,248.45,54.066 +37262,249.65,55.921 +37263,250.72,57.728 +37264,251.68,59.49 +37265,247.23,54.039 +37266,248.38,55.892 +37267,249.39,57.699 +37268,250.3,59.461 +37269,246.02,54.013 +37270,247.1,55.865 +37271,248.06,57.67 +37272,248.92,59.431 +37273,244.8,53.988 +37274,245.83,55.837 +37275,246.74,57.64 +37276,247.54,59.399 +37277,243.59,53.965 +37278,244.55,55.811 +37279,245.41,57.61 +37280,246.16,59.366 +37281,242.37,53.944 +37282,243.28,55.784 +37283,244.08,57.58 +37284,244.78,59.332 +37285,241.16,53.924 +37286,242,55.759 +37287,242.75,57.549 +37288,243.4,59.296 +37289,239.95,53.905 +37290,240.73,55.733 +37291,241.42,57.517 +37292,242.02,59.259 +37293,238.73,53.888 +37294,239.46,55.708 +37295,240.09,57.485 +37296,240.64,59.22 +37297,237.52,53.872 +37298,238.18,55.684 +37299,238.76,57.453 +37300,239.25,59.18 +37301,236.31,53.858 +37302,236.91,55.66 +37303,237.43,57.42 +37304,237.87,59.138 +37305,235.1,53.845 +37306,235.64,55.637 +37307,236.1,57.386 +37308,236.49,59.095 +37309,233.89,53.834 +37310,234.37,55.614 +37311,234.77,57.352 +37312,235.1,59.051 +37313,232.68,53.824 +37314,233.09,55.591 +37315,233.44,57.318 +37316,233.72,59.005 +37317,231.47,53.816 +37318,231.82,55.569 +37319,232.11,57.283 +37320,232.33,58.958 +37321,230.26,53.809 +37322,230.55,55.547 +37323,230.78,57.247 +37324,230.95,58.91 +37325,229.05,53.803 +37326,229.28,55.526 +37327,229.45,57.212 +37328,229.56,58.86 +37329,227.84,53.799 +37330,228.01,55.506 +37331,228.12,57.175 +37332,228.18,58.809 +37333,226.63,53.796 +37334,226.73,55.485 +37335,226.79,57.139 +37336,226.79,58.756 +37337,225.42,53.795 +37338,225.46,55.466 +37339,225.46,57.101 +37340,225.41,58.702 +37341,224.21,53.794 +37342,224.19,55.446 +37343,224.13,57.064 +37344,224.02,58.647 +37345,223,53.796 +37346,222.92,55.427 +37347,222.8,57.025 +37348,222.64,58.591 +37349,221.79,53.798 +37350,221.65,55.409 +37351,221.47,56.987 +37352,221.25,58.533 +37353,220.58,53.802 +37354,220.37,55.391 +37355,220.14,56.948 +37356,219.87,58.473 +37357,219.37,53.807 +37358,219.1,55.373 +37359,218.81,56.908 +37360,218.48,58.413 +37361,218.16,53.813 +37362,217.83,55.356 +37363,217.48,56.869 +37364,217.09,58.351 +37365,216.94,53.821 +37366,216.56,55.339 +37367,216.15,56.828 +37368,215.71,58.288 +37369,215.73,53.83 +37370,215.29,55.323 +37371,214.82,56.787 +37372,214.32,58.224 +37373,214.52,53.84 +37374,214.02,55.307 +37375,213.49,56.746 +37376,212.94,58.158 +37377,213.31,53.851 +37378,212.74,55.291 +37379,212.16,56.705 +37380,211.55,58.092 +37381,212.09,53.863 +37382,211.47,55.276 +37383,210.83,56.663 +37384,210.17,58.024 +37385,210.88,53.877 +37386,210.2,55.261 +37387,209.5,56.62 +37388,208.79,57.955 +37389,209.67,53.891 +37390,208.93,55.246 +37391,208.17,56.578 +37392,207.4,57.885 +37393,208.45,53.907 +37394,207.65,55.232 +37395,206.84,56.535 +37396,206.02,57.813 +37397,207.23,53.924 +37398,206.38,55.218 +37399,205.51,56.491 +37400,204.64,57.741 +37401,206.02,53.942 +37402,205.11,55.205 +37403,204.19,56.447 +37404,203.25,57.667 +37405,204.8,53.961 +37406,203.83,55.192 +37407,202.86,56.403 +37408,201.87,57.592 +37409,203.58,53.98 +37410,202.56,55.179 +37411,201.53,56.358 +37412,200.49,57.517 +37413,202.36,54.001 +37414,201.29,55.167 +37415,200.2,56.313 +37416,199.11,57.44 +37417,201.14,54.023 +37418,200.01,55.155 +37419,198.88,56.268 +37420,197.73,57.362 +37421,199.92,54.046 +37422,198.74,55.143 +37423,197.55,56.222 +37424,196.35,57.283 +37425,198.7,54.069 +37426,197.47,55.131 +37427,196.22,56.177 +37428,194.97,57.204 +37429,197.47,54.094 +37430,196.19,55.12 +37431,194.9,56.13 +37432,193.6,57.123 +37433,196.25,54.119 +37434,194.92,55.109 +37435,193.57,56.084 +37436,192.22,57.041 +37437,195.02,54.145 +37438,193.64,55.098 +37439,192.25,56.037 +37440,190.84,56.959 +37441,193.8,54.172 +37442,192.37,55.088 +37443,190.92,55.99 +37444,189.47,56.875 +37445,192.57,54.2 +37446,191.09,55.078 +37447,189.6,55.942 +37448,188.09,56.791 +37449,191.34,54.228 +37450,189.81,55.068 +37451,188.27,55.895 +37452,186.72,56.706 +37453,190.11,54.257 +37454,188.54,55.058 +37455,186.95,55.847 +37456,185.35,56.62 +37457,188.87,54.287 +37458,187.26,55.049 +37459,185.63,55.799 +37460,183.98,56.534 +37461,187.64,54.317 +37462,185.98,55.04 +37463,184.3,55.75 +37464,182.6,56.447 +37465,186.4,54.348 +37466,184.7,55.031 +37467,182.98,55.701 +37468,181.24,56.359 +37469,185.17,54.38 +37470,183.43,55.022 +37471,181.66,55.653 +37472,179.87,56.27 +37473,183.93,54.412 +37474,182.15,55.013 +37475,180.34,55.604 +37476,178.5,56.181 +37477,182.69,54.444 +37478,180.87,55.005 +37479,179.02,55.554 +37480,177.14,56.091 +37481,181.45,54.477 +37482,179.59,54.996 +37483,177.7,55.505 +37484,175.77,56 +37485,180.21,54.51 +37486,178.31,54.988 +37487,176.38,55.455 +37488,174.41,55.909 +37489,178.96,54.544 +37490,177.03,54.98 +37491,175.06,55.405 +37492,173.05,55.817 +37493,177.72,54.578 +37494,175.75,54.972 +37495,173.74,55.355 +37496,171.69,55.725 +37497,176.47,54.613 +37498,174.47,54.965 +37499,172.42,55.305 +37500,170.33,55.633 +37501,175.22,54.648 +37502,173.19,54.957 +37503,171.1,55.255 +37504,168.97,55.54 +37505,173.97,54.683 +37506,171.9,54.949 +37507,169.79,55.205 +37508,167.61,55.447 +37509,172.72,54.718 +37510,170.62,54.942 +37511,168.47,55.154 +37512,166.26,55.353 +37513,171.46,54.754 +37514,169.34,54.935 +37515,167.15,55.104 +37516,164.9,55.259 +37517,170.21,54.789 +37518,168.05,54.927 +37519,165.84,55.053 +37520,163.55,55.164 +37521,168.95,54.825 +37522,166.77,54.92 +37523,164.52,55.002 +37524,162.2,55.07 +37525,167.69,54.861 +37526,165.49,54.913 +37527,163.21,54.952 +37528,160.86,54.975 +37529,166.43,54.897 +37530,164.2,54.906 +37531,161.9,54.901 +37532,159.51,54.88 +37533,165.17,54.933 +37534,162.91,54.898 +37535,160.58,54.85 +37536,158.16,54.785 +37537,163.9,54.969 +37538,161.63,54.891 +37539,159.27,54.799 +37540,156.82,54.69 +37541,162.64,55.005 +37542,160.34,54.884 +37543,157.96,54.748 +37544,155.48,54.594 +37545,161.37,55.041 +37546,159.05,54.877 +37547,156.65,54.697 +37548,154.14,54.499 +37549,160.1,55.077 +37550,157.77,54.87 +37551,155.34,54.646 +37552,152.8,54.404 +37553,158.83,55.112 +37554,156.48,54.862 +37555,154.03,54.595 +37556,151.47,54.308 +37557,157.55,55.148 +37558,155.19,54.855 +37559,152.72,54.544 +37560,150.13,54.213 +37561,156.28,55.183 +37562,153.9,54.848 +37563,151.41,54.494 +37564,148.8,54.118 +37565,155,55.218 +37566,152.61,54.84 +37567,150.1,54.443 +37568,147.47,54.023 +37569,153.72,55.253 +37570,151.32,54.833 +37571,148.8,54.392 +37572,146.14,53.928 +37573,152.44,55.287 +37574,150.03,54.825 +37575,147.49,54.341 +37576,144.81,53.833 +37577,151.16,55.321 +37578,148.74,54.817 +37579,146.19,54.291 +37580,143.49,53.739 +37581,149.87,55.355 +37582,147.44,54.809 +37583,144.88,54.24 +37584,142.17,53.645 +37585,148.59,55.389 +37586,146.15,54.801 +37587,143.58,54.19 +37588,140.85,53.551 +37589,147.3,55.422 +37590,144.86,54.793 +37591,142.27,54.14 +37592,139.53,53.457 +37593,146.01,55.454 +37594,143.56,54.785 +37595,140.97,54.09 +37596,138.21,53.364 +37597,144.72,55.486 +37598,142.27,54.777 +37599,139.67,54.04 +37600,136.9,53.272 +37601,143.42,55.518 +37602,140.97,54.768 +37603,138.37,53.99 +37604,135.59,53.179 +37605,142.13,55.548 +37606,139.68,54.759 +37607,137.07,53.94 +37608,134.28,53.088 +37609,140.83,55.579 +37610,138.38,54.75 +37611,135.77,53.891 +37612,132.97,52.997 +37613,139.53,55.608 +37614,137.08,54.741 +37615,134.47,53.842 +37616,131.66,52.906 +37617,138.23,55.638 +37618,135.78,54.732 +37619,133.17,53.793 +37620,130.36,52.816 +37621,136.93,55.666 +37622,134.49,54.722 +37623,131.87,53.744 +37624,129.06,52.727 +37625,135.62,55.694 +37626,133.19,54.712 +37627,130.58,53.695 +37628,127.76,52.638 +37629,134.32,55.721 +37630,131.89,54.702 +37631,129.28,53.647 +37632,126.47,52.55 +37633,133.01,55.747 +37634,130.59,54.692 +37635,127.99,53.599 +37636,125.17,52.463 +37637,131.7,55.772 +37638,129.29,54.681 +37639,126.69,53.551 +37640,123.88,52.376 +37641,130.39,55.797 +37642,127.98,54.67 +37643,125.4,53.503 +37644,122.59,52.291 +37645,129.07,55.82 +37646,126.68,54.659 +37647,124.11,53.456 +37648,121.3,52.206 +37649,127.76,55.843 +37650,125.38,54.648 +37651,122.81,53.409 +37652,120.02,52.122 +37653,126.44,55.865 +37654,124.08,54.636 +37655,121.52,53.362 +37656,118.73,52.039 +37657,125.12,55.886 +37658,122.77,54.624 +37659,120.23,53.316 +37660,117.45,51.957 +37661,123.8,55.906 +37662,121.47,54.612 +37663,118.94,53.27 +37664,116.17,51.876 +37665,122.48,55.925 +37666,120.16,54.599 +37667,117.65,53.224 +37668,114.9,51.795 +37669,121.16,55.943 +37670,118.86,54.586 +37671,116.36,53.179 +37672,113.62,51.716 +37673,119.83,55.961 +37674,117.55,54.572 +37675,115.08,53.134 +37676,112.35,51.638 +37677,118.5,55.977 +37678,116.25,54.559 +37679,113.79,53.089 +37680,111.08,51.561 +37681,117.18,55.991 +37682,114.94,54.544 +37683,112.5,53.045 +37684,109.81,51.486 +37685,115.85,56.005 +37686,113.63,54.53 +37687,111.22,53.001 +37688,108.55,51.411 +37689,114.51,56.018 +37690,112.32,54.515 +37691,109.93,52.957 +37692,107.29,51.338 +37693,113.18,56.03 +37694,111.02,54.5 +37695,108.65,52.914 +37696,106.03,51.265 +37697,111.85,56.04 +37698,109.71,54.484 +37699,107.36,52.871 +37700,104.77,51.194 +37701,110.51,56.049 +37702,108.4,54.468 +37703,106.08,52.829 +37704,103.51,51.125 +37705,109.17,56.057 +37706,107.09,54.452 +37707,104.8,52.787 +37708,102.26,51.056 +37709,107.83,56.064 +37710,105.78,54.435 +37711,103.52,52.746 +37712,101,50.989 +37713,106.49,56.07 +37714,104.47,54.417 +37715,102.24,52.704 +37716,99.754,50.923 +37717,105.15,56.074 +37718,103.15,54.4 +37719,100.96,52.664 +37720,98.505,50.859 +37721,103.81,56.077 +37722,101.84,54.381 +37723,99.677,52.624 +37724,97.259,50.796 +37725,102.46,56.079 +37726,100.53,54.363 +37727,98.398,52.584 +37728,96.015,50.734 +37729,101.11,56.079 +37730,99.218,54.344 +37731,97.12,52.545 +37732,94.773,50.674 +37733,99.767,56.078 +37734,97.904,54.324 +37735,95.843,52.506 +37736,93.533,50.615 +37737,98.418,56.076 +37738,96.591,54.304 +37739,94.566,52.467 +37740,92.295,50.557 +37741,97.068,56.072 +37742,95.276,54.284 +37743,93.289,52.43 +37744,91.059,50.502 +37745,95.716,56.067 +37746,93.962,54.263 +37747,92.014,52.392 +37748,89.825,50.447 +37749,94.363,56.061 +37750,92.647,54.241 +37751,90.739,52.355 +37752,88.592,50.394 +37753,93.009,56.053 +37754,91.331,54.219 +37755,89.464,52.319 +37756,87.361,50.343 +37757,91.654,56.044 +37758,90.016,54.197 +37759,88.19,52.283 +37760,86.132,50.293 +37761,90.298,56.033 +37762,88.7,54.174 +37763,86.917,52.248 +37764,84.905,50.245 +37765,88.94,56.021 +37766,87.383,54.151 +37767,85.644,52.213 +37768,83.679,50.198 +37769,87.581,56.008 +37770,86.066,54.127 +37771,84.372,52.178 +37772,82.455,50.153 +37773,86.222,55.993 +37774,84.749,54.103 +37775,83.1,52.144 +37776,81.233,50.11 +37777,84.861,55.976 +37778,83.431,54.078 +37779,81.829,52.111 +37780,80.012,50.068 +37781,83.499,55.958 +37782,82.113,54.052 +37783,80.558,52.078 +37784,78.793,50.028 +37785,82.137,55.939 +37786,80.795,54.027 +37787,79.288,52.046 +37788,77.575,49.989 +37789,80.773,55.918 +37790,79.477,54 +37791,78.018,52.014 +37792,76.359,49.952 +37793,79.408,55.896 +37794,78.158,53.973 +37795,76.748,51.983 +37796,75.144,49.917 +37797,78.043,55.872 +37798,76.839,53.946 +37799,75.48,51.952 +37800,73.93,49.883 +37801,76.677,55.846 +37802,75.519,53.918 +37803,74.211,51.922 +37804,72.718,49.851 +37805,75.309,55.819 +37806,74.2,53.89 +37807,72.943,51.893 +37808,71.506,49.821 +37809,73.941,55.791 +37810,72.88,53.861 +37811,71.675,51.863 +37812,70.296,49.792 +37813,72.573,55.761 +37814,71.56,53.831 +37815,70.408,51.835 +37816,69.087,49.765 +37817,71.203,55.73 +37818,70.239,53.801 +37819,69.141,51.807 +37820,67.879,49.739 +37821,69.833,55.697 +37822,68.919,53.771 +37823,67.875,51.779 +37824,66.672,49.715 +37825,68.462,55.662 +37826,67.598,53.74 +37827,66.609,51.752 +37828,65.466,49.693 +37829,67.091,55.626 +37830,66.277,53.708 +37831,65.343,51.726 +37832,64.261,49.673 +37833,65.719,55.589 +37834,64.956,53.676 +37835,64.077,51.7 +37836,63.057,49.654 +37837,64.346,55.55 +37838,63.635,53.644 +37839,62.812,51.675 +37840,61.854,49.637 +37841,62.973,55.509 +37842,62.314,53.611 +37843,61.547,51.65 +37844,60.651,49.621 +37845,61.599,55.467 +37846,60.992,53.577 +37847,60.283,51.626 +37848,59.449,49.607 +37849,60.225,55.424 +37850,59.671,53.543 +37851,59.018,51.602 +37852,58.247,49.595 +37853,58.85,55.378 +37854,58.349,53.509 +37855,57.754,51.579 +37856,57.047,49.584 +37857,57.475,55.332 +37858,57.027,53.473 +37859,56.49,51.556 +37860,55.846,49.575 +37861,56.1,55.284 +37862,55.705,53.438 +37863,55.226,51.534 +37864,54.646,49.568 +37865,54.724,55.234 +37866,54.384,53.402 +37867,53.963,51.512 +37868,53.447,49.562 +37869,53.348,55.183 +37870,53.062,53.365 +37871,52.699,51.491 +37872,52.247,49.558 +37873,51.972,55.131 +37874,51.74,53.328 +37875,51.436,51.471 +37876,51.048,49.555 +37877,50.595,55.077 +37878,50.418,53.29 +37879,50.173,51.451 +37880,49.85,49.554 +37881,49.218,55.021 +37882,49.096,53.252 +37883,48.91,51.431 +37884,48.651,49.554 +37885,47.842,54.964 +37886,47.774,53.214 +37887,47.647,51.412 +37888,47.452,49.556 +37889,46.465,54.906 +37890,46.452,53.175 +37891,46.385,51.393 +37892,46.254,49.559 +37893,45.087,54.846 +37894,45.13,53.135 +37895,45.122,51.375 +37896,45.055,49.564 +37897,43.71,54.785 +37898,43.808,53.095 +37899,43.859,51.358 +37900,43.857,49.57 +37901,42.333,54.723 +37902,42.486,53.055 +37903,42.597,51.341 +37904,42.658,49.578 +37905,40.956,54.659 +37906,41.165,53.014 +37907,41.334,51.324 +37908,41.459,49.587 +37909,39.579,54.593 +37910,39.843,52.972 +37911,40.072,51.308 +37912,40.26,49.598 +37913,38.202,54.527 +37914,38.521,52.93 +37915,38.809,51.292 +37916,39.06,49.61 +37917,36.825,54.459 +37918,37.2,52.888 +37919,37.547,51.277 +37920,37.86,49.623 +37921,35.448,54.389 +37922,35.879,52.845 +37923,36.284,51.262 +37924,36.66,49.638 +37925,34.072,54.319 +37926,34.558,52.802 +37927,35.021,51.248 +37928,35.459,49.654 +37929,32.696,54.247 +37930,33.237,52.759 +37931,33.759,51.234 +37932,34.258,49.671 +37933,31.32,54.173 +37934,31.916,52.715 +37935,32.496,51.22 +37936,33.056,49.689 +37937,29.944,54.099 +37938,30.596,52.67 +37939,31.233,51.207 +37940,31.854,49.709 +37941,28.569,54.023 +37942,29.275,52.626 +37943,29.97,51.195 +37944,30.651,49.73 +37945,27.194,53.946 +37946,27.955,52.58 +37947,28.707,51.182 +37948,29.447,49.752 +37949,25.82,53.868 +37950,26.636,52.535 +37951,27.443,51.171 +37952,28.242,49.776 +37953,24.446,53.789 +37954,25.316,52.489 +37955,26.18,51.159 +37956,27.037,49.8 +37957,23.072,53.708 +37958,23.997,52.442 +37959,24.916,51.148 +37960,25.831,49.826 +37961,21.699,53.627 +37962,22.678,52.396 +37963,23.652,51.137 +37964,24.623,49.852 +37965,20.327,53.544 +37966,21.359,52.349 +37967,22.388,51.127 +37968,23.415,49.88 +37969,18.955,53.46 +37970,20.041,52.301 +37971,21.124,51.117 +37972,22.206,49.909 +37973,17.584,53.376 +37974,18.723,52.253 +37975,19.86,51.107 +37976,20.996,49.938 +37977,16.214,53.29 +37978,17.405,52.205 +37979,18.595,51.098 +37980,19.785,49.969 +37981,14.844,53.203 +37982,16.087,52.157 +37983,17.33,51.089 +37984,18.572,50 +37985,13.476,53.115 +37986,14.77,52.108 +37987,16.064,51.08 +37988,17.359,50.033 +37989,12.108,53.026 +37990,13.454,52.059 +37991,14.799,51.072 +37992,16.144,50.066 +37993,10.74,52.937 +37994,12.137,52.01 +37995,13.533,51.064 +37996,14.928,50.1 +37997,9.3741,52.846 +37998,10.822,51.96 +37999,12.267,51.056 +38000,13.711,50.135 +38001,8.0087,52.755 +38002,9.5062,51.91 +38003,11,51.049 +38004,12.492,50.171 +38005,6.6443,52.662 +38006,8.1912,51.86 +38007,9.7334,51.041 +38008,11.272,50.207 +38009,5.2809,52.569 +38010,6.8767,51.81 +38011,8.4662,51.034 +38012,10.051,50.244 +38013,3.9186,52.475 +38014,5.5626,51.759 +38015,7.1986,51.028 +38016,8.828,50.282 +38017,2.5573,52.381 +38018,4.249,51.709 +38019,5.9306,51.021 +38020,7.6038,50.32 +38021,1.1971,52.285 +38022,2.9359,51.658 +38023,4.6623,51.015 +38024,6.3781,50.359 +38025,359.84,52.189 +38026,1.6232,51.606 +38027,3.3935,51.009 +38028,5.1509,50.398 +38029,358.48,52.093 +38030,0.3111,51.555 +38031,2.1244,51.003 +38032,3.9222,50.438 +38033,357.12,51.996 +38034,359,51.503 +38035,0.85481,50.997 +38036,2.6919,50.479 +38037,355.77,51.898 +38038,357.69,51.452 +38039,359.58,50.992 +38040,1.46,50.519 +38041,354.41,51.799 +38042,356.38,51.4 +38043,358.31,50.986 +38044,0.22649,50.561 +38045,353.06,51.701 +38046,355.07,51.348 +38047,357.04,50.981 +38048,358.99,50.602 +38049,351.71,51.601 +38050,353.76,51.295 +38051,355.77,50.976 +38052,357.75,50.644 +38053,350.36,51.501 +38054,352.45,51.243 +38055,354.5,50.971 +38056,356.52,50.686 +38057,349.01,51.401 +38058,351.14,51.191 +38059,353.23,50.966 +38060,355.28,50.729 +38061,347.66,51.301 +38062,349.83,51.138 +38063,351.96,50.961 +38064,354.03,50.771 +38065,346.32,51.2 +38066,348.53,51.086 +38067,350.68,50.956 +38068,352.79,50.814 +38069,344.98,51.099 +38070,347.22,51.033 +38071,349.41,50.952 +38072,351.55,50.857 +38073,343.63,50.997 +38074,345.91,50.98 +38075,348.13,50.947 +38076,350.3,50.9 +38077,342.29,50.896 +38078,344.61,50.927 +38079,346.86,50.943 +38080,349.05,50.943 +38081,340.95,50.794 +38082,343.3,50.875 +38083,345.58,50.938 +38084,347.8,50.986 +38085,339.62,50.692 +38086,342,50.822 +38087,344.31,50.934 +38088,346.55,51.03 +38089,338.28,50.59 +38090,340.7,50.769 +38091,343.03,50.929 +38092,345.29,51.073 +38093,336.95,50.488 +38094,339.39,50.716 +38095,341.75,50.925 +38096,344.04,51.116 +38097,335.61,50.386 +38098,338.09,50.663 +38099,340.48,50.92 +38100,342.78,51.159 +38101,334.28,50.283 +38102,336.79,50.611 +38103,339.2,50.916 +38104,341.52,51.202 +38105,332.96,50.181 +38106,335.49,50.558 +38107,337.92,50.911 +38108,340.26,51.244 +38109,331.63,50.079 +38110,334.19,50.505 +38111,336.64,50.907 +38112,338.99,51.286 +38113,330.3,49.978 +38114,332.89,50.453 +38115,335.36,50.902 +38116,337.73,51.329 +38117,328.98,49.876 +38118,331.59,50.4 +38119,334.08,50.897 +38120,336.46,51.37 +38121,327.66,49.774 +38122,330.3,50.348 +38123,332.8,50.893 +38124,335.19,51.412 +38125,326.34,49.673 +38126,329,50.296 +38127,331.52,50.888 +38128,333.92,51.453 +38129,325.02,49.572 +38130,327.7,50.243 +38131,330.24,50.883 +38132,332.65,51.494 +38133,323.71,49.472 +38134,326.41,50.191 +38135,328.96,50.878 +38136,331.37,51.534 +38137,322.4,49.372 +38138,325.11,50.14 +38139,327.67,50.872 +38140,330.1,51.574 +38141,321.09,49.272 +38142,323.82,50.088 +38143,326.39,50.867 +38144,328.82,51.613 +38145,319.78,49.173 +38146,322.53,50.036 +38147,325.1,50.861 +38148,327.54,51.652 +38149,318.47,49.074 +38150,321.23,49.985 +38151,323.82,50.856 +38152,326.26,51.69 +38153,317.17,48.975 +38154,319.94,49.934 +38155,322.53,50.85 +38156,324.97,51.728 +38157,315.86,48.878 +38158,318.65,49.883 +38159,321.25,50.844 +38160,323.69,51.765 +38161,314.57,48.781 +38162,317.36,49.832 +38163,319.96,50.837 +38164,322.4,51.801 +38165,313.27,48.684 +38166,316.07,49.782 +38167,318.67,50.831 +38168,321.11,51.837 +38169,311.97,48.588 +38170,314.78,49.732 +38171,317.39,50.824 +38172,319.82,51.872 +38173,310.68,48.493 +38174,313.5,49.682 +38175,316.1,50.817 +38176,318.52,51.906 +38177,309.39,48.399 +38178,312.21,49.632 +38179,314.81,50.81 +38180,317.23,51.939 +38181,308.1,48.306 +38182,310.92,49.583 +38183,313.52,50.802 +38184,315.93,51.971 +38185,306.81,48.213 +38186,309.64,49.534 +38187,312.23,50.794 +38188,314.63,52.003 +38189,305.53,48.122 +38190,308.35,49.485 +38191,310.94,50.786 +38192,313.33,52.034 +38193,304.25,48.031 +38194,307.07,49.436 +38195,309.65,50.778 +38196,312.03,52.064 +38197,302.97,47.941 +38198,305.78,49.388 +38199,308.36,50.769 +38200,310.73,52.093 +38201,301.69,47.852 +38202,304.5,49.341 +38203,307.06,50.76 +38204,309.42,52.121 +38205,300.41,47.765 +38206,303.22,49.293 +38207,305.77,50.751 +38208,308.11,52.147 +38209,299.14,47.678 +38210,301.94,49.246 +38211,304.48,50.741 +38212,306.81,52.173 +38213,297.87,47.593 +38214,300.66,49.2 +38215,303.18,50.731 +38216,305.5,52.198 +38217,296.6,47.508 +38218,299.38,49.153 +38219,301.89,50.721 +38220,304.18,52.222 +38221,295.34,47.425 +38222,298.1,49.107 +38223,300.59,50.71 +38224,302.87,52.245 +38225,294.07,47.343 +38226,296.82,49.062 +38227,299.3,50.699 +38228,301.55,52.266 +38229,292.81,47.262 +38230,295.55,49.017 +38231,298,50.688 +38232,300.24,52.287 +38233,291.56,47.183 +38234,294.27,48.972 +38235,296.7,50.676 +38236,298.92,52.306 +38237,290.3,47.105 +38238,292.99,48.928 +38239,295.41,50.664 +38240,297.6,52.324 +38241,289.04,47.028 +38242,291.72,48.885 +38243,294.11,50.651 +38244,296.28,52.341 +38245,287.79,46.953 +38246,290.45,48.841 +38247,292.81,50.638 +38248,294.95,52.356 +38249,286.54,46.879 +38250,289.17,48.799 +38251,291.51,50.625 +38252,293.63,52.37 +38253,285.3,46.806 +38254,287.9,48.756 +38255,290.21,50.611 +38256,292.3,52.383 +38257,284.05,46.735 +38258,286.63,48.715 +38259,288.91,50.597 +38260,290.97,52.395 +38261,282.81,46.666 +38262,285.36,48.673 +38263,287.61,50.582 +38264,289.64,52.405 +38265,281.57,46.598 +38266,284.09,48.633 +38267,286.31,50.567 +38268,288.31,52.414 +38269,280.33,46.532 +38270,282.82,48.592 +38271,285.01,50.551 +38272,286.98,52.422 +38273,279.09,46.467 +38274,281.55,48.553 +38275,283.71,50.535 +38276,285.65,52.428 +38277,277.86,46.403 +38278,280.28,48.513 +38279,282.41,50.518 +38280,284.31,52.433 +38281,276.63,46.342 +38282,279.01,48.475 +38283,281.11,50.501 +38284,282.98,52.436 +38285,275.4,46.282 +38286,277.74,48.437 +38287,279.8,50.484 +38288,281.64,52.438 +38289,274.17,46.224 +38290,276.48,48.399 +38291,278.5,50.466 +38292,280.3,52.439 +38293,272.94,46.167 +38294,275.21,48.362 +38295,277.2,50.447 +38296,278.96,52.438 +38297,271.72,46.112 +38298,273.95,48.326 +38299,275.89,50.428 +38300,277.62,52.435 +38301,270.5,46.059 +38302,272.68,48.29 +38303,274.59,50.409 +38304,276.28,52.431 +38305,269.27,46.008 +38306,271.42,48.254 +38307,273.28,50.389 +38308,274.93,52.426 +38309,268.06,45.958 +38310,270.15,48.22 +38311,271.98,50.368 +38312,273.59,52.419 +38313,266.84,45.91 +38314,268.89,48.186 +38315,270.67,50.347 +38316,272.24,52.41 +38317,265.63,45.864 +38318,267.63,48.152 +38319,269.37,50.325 +38320,270.9,52.4 +38321,264.41,45.82 +38322,266.37,48.119 +38323,268.06,50.303 +38324,269.55,52.389 +38325,263.2,45.777 +38326,265.11,48.087 +38327,266.75,50.281 +38328,268.2,52.375 +38329,261.99,45.737 +38330,263.85,48.055 +38331,265.45,50.257 +38332,266.85,52.361 +38333,260.78,45.698 +38334,262.59,48.024 +38335,264.14,50.234 +38336,265.5,52.344 +38337,259.58,45.661 +38338,261.33,47.993 +38339,262.83,50.209 +38340,264.15,52.326 +38341,258.37,45.626 +38342,260.07,47.963 +38343,261.52,50.185 +38344,262.79,52.307 +38345,257.17,45.593 +38346,258.81,47.934 +38347,260.22,50.159 +38348,261.44,52.286 +38349,255.97,45.562 +38350,257.55,47.905 +38351,258.91,50.134 +38352,260.09,52.263 +38353,254.76,45.532 +38354,256.29,47.877 +38355,257.6,50.107 +38356,258.73,52.238 +38357,253.56,45.505 +38358,255.04,47.849 +38359,256.29,50.08 +38360,257.38,52.212 +38361,252.37,45.479 +38362,253.78,47.823 +38363,254.98,50.053 +38364,256.02,52.185 +38365,251.17,45.456 +38366,252.52,47.796 +38367,253.67,50.025 +38368,254.66,52.155 +38369,249.97,45.434 +38370,251.27,47.771 +38371,252.36,49.996 +38372,253.3,52.125 +38373,248.78,45.414 +38374,250.01,47.746 +38375,251.05,49.967 +38376,251.94,52.092 +38377,247.58,45.396 +38378,248.76,47.721 +38379,249.74,49.937 +38380,250.59,52.058 +38381,246.39,45.38 +38382,247.5,47.697 +38383,248.43,49.907 +38384,249.23,52.022 +38385,245.2,45.365 +38386,246.25,47.674 +38387,247.12,49.876 +38388,247.86,51.985 +38389,244.01,45.353 +38390,244.99,47.652 +38391,245.81,49.845 +38392,246.5,51.946 +38393,242.82,45.342 +38394,243.74,47.63 +38395,244.5,49.813 +38396,245.14,51.905 +38397,241.63,45.333 +38398,242.48,47.608 +38399,243.19,49.781 +38400,243.78,51.863 +38401,240.44,45.327 +38402,241.23,47.588 +38403,241.88,49.748 +38404,242.42,51.819 +38405,239.25,45.322 +38406,239.98,47.568 +38407,240.57,49.714 +38408,241.06,51.773 +38409,238.06,45.318 +38410,238.73,47.548 +38411,239.26,49.68 +38412,239.69,51.726 +38413,236.87,45.317 +38414,237.47,47.529 +38415,237.95,49.646 +38416,238.33,51.678 +38417,235.68,45.317 +38418,236.22,47.511 +38419,236.64,49.611 +38420,236.97,51.627 +38421,234.5,45.319 +38422,234.97,47.493 +38423,235.33,49.575 +38424,235.6,51.575 +38425,233.31,45.323 +38426,233.72,47.476 +38427,234.02,49.539 +38428,234.24,51.522 +38429,232.12,45.329 +38430,232.46,47.46 +38431,232.71,49.503 +38432,232.87,51.467 +38433,230.94,45.336 +38434,231.21,47.444 +38435,231.4,49.465 +38436,231.51,51.41 +38437,229.75,45.345 +38438,229.96,47.428 +38439,230.09,49.428 +38440,230.15,51.352 +38441,228.57,45.356 +38442,228.71,47.414 +38443,228.78,49.39 +38444,228.78,51.292 +38445,227.38,45.369 +38446,227.46,47.399 +38447,227.47,49.351 +38448,227.42,51.231 +38449,226.19,45.383 +38450,226.21,47.386 +38451,226.16,49.312 +38452,226.05,51.169 +38453,225.01,45.399 +38454,224.95,47.373 +38455,224.84,49.272 +38456,224.69,51.104 +38457,223.82,45.416 +38458,223.7,47.36 +38459,223.53,49.232 +38460,223.32,51.039 +38461,222.63,45.435 +38462,222.45,47.348 +38463,222.22,49.192 +38464,221.96,50.972 +38465,221.44,45.455 +38466,221.2,47.336 +38467,220.91,49.151 +38468,220.6,50.903 +38469,220.26,45.477 +38470,219.95,47.325 +38471,219.61,49.109 +38472,219.23,50.833 +38473,219.07,45.501 +38474,218.7,47.315 +38475,218.3,49.067 +38476,217.87,50.761 +38477,217.88,45.526 +38478,217.45,47.305 +38479,216.99,49.025 +38480,216.5,50.688 +38481,216.69,45.552 +38482,216.19,47.296 +38483,215.68,48.982 +38484,215.14,50.614 +38485,215.5,45.58 +38486,214.94,47.287 +38487,214.37,48.939 +38488,213.78,50.539 +38489,214.31,45.609 +38490,213.69,47.278 +38491,213.06,48.895 +38492,212.42,50.462 +38493,213.12,45.639 +38494,212.44,47.27 +38495,211.75,48.851 +38496,211.06,50.383 +38497,211.92,45.671 +38498,211.19,47.263 +38499,210.44,48.806 +38500,209.69,50.304 +38501,210.73,45.704 +38502,209.93,47.256 +38503,209.13,48.761 +38504,208.33,50.223 +38505,209.54,45.739 +38506,208.68,47.249 +38507,207.83,48.716 +38508,206.97,50.141 +38509,208.34,45.774 +38510,207.43,47.243 +38511,206.52,48.67 +38512,205.61,50.057 +38513,207.14,45.811 +38514,206.18,47.237 +38515,205.21,48.624 +38516,204.25,49.973 +38517,205.95,45.849 +38518,204.92,47.232 +38519,203.91,48.578 +38520,202.89,49.887 +38521,204.75,45.888 +38522,203.67,47.227 +38523,202.6,48.531 +38524,201.54,49.8 +38525,203.55,45.928 +38526,202.42,47.222 +38527,201.29,48.484 +38528,200.18,49.712 +38529,202.35,45.969 +38530,201.16,47.218 +38531,199.99,48.436 +38532,198.82,49.623 +38533,201.15,46.011 +38534,199.91,47.215 +38535,198.68,48.388 +38536,197.47,49.533 +38537,199.94,46.054 +38538,198.65,47.211 +38539,197.38,48.34 +38540,196.11,49.442 +38541,198.74,46.098 +38542,197.4,47.208 +38543,196.07,48.292 +38544,194.76,49.349 +38545,197.53,46.143 +38546,196.15,47.205 +38547,194.77,48.243 +38548,193.4,49.256 +38549,196.33,46.189 +38550,194.89,47.203 +38551,193.47,48.194 +38552,192.05,49.162 +38553,195.12,46.236 +38554,193.63,47.201 +38555,192.16,48.145 +38556,190.7,49.067 +38557,193.91,46.283 +38558,192.38,47.199 +38559,190.86,48.095 +38560,189.35,48.971 +38561,192.7,46.331 +38562,191.12,47.198 +38563,189.56,48.046 +38564,188,48.874 +38565,191.49,46.38 +38566,189.87,47.197 +38567,188.26,47.996 +38568,186.65,48.776 +38569,190.27,46.429 +38570,188.61,47.196 +38571,186.95,47.945 +38572,185.31,48.678 +38573,189.06,46.479 +38574,187.35,47.195 +38575,185.65,47.895 +38576,183.96,48.578 +38577,187.84,46.53 +38578,186.09,47.195 +38579,184.35,47.844 +38580,182.62,48.478 +38581,186.62,46.581 +38582,184.84,47.194 +38583,183.05,47.794 +38584,181.27,48.378 +38585,185.4,46.633 +38586,183.58,47.194 +38587,181.75,47.743 +38588,179.93,48.276 +38589,184.18,46.685 +38590,182.32,47.195 +38591,180.46,47.692 +38592,178.59,48.174 +38593,182.95,46.737 +38594,181.06,47.195 +38595,179.16,47.64 +38596,177.25,48.072 +38597,181.73,46.79 +38598,179.8,47.196 +38599,177.86,47.589 +38600,175.91,47.968 +38601,180.5,46.844 +38602,178.54,47.196 +38603,176.56,47.537 +38604,174.57,47.865 +38605,179.27,46.897 +38606,177.28,47.197 +38607,175.27,47.486 +38608,173.24,47.761 +38609,178.04,46.951 +38610,176.02,47.198 +38611,173.97,47.434 +38612,171.9,47.656 +38613,176.8,47.005 +38614,174.75,47.2 +38615,172.68,47.382 +38616,170.57,47.551 +38617,175.57,47.059 +38618,173.49,47.201 +38619,171.38,47.33 +38620,169.24,47.446 +38621,174.33,47.113 +38622,172.23,47.202 +38623,170.09,47.278 +38624,167.91,47.34 +38625,173.09,47.168 +38626,170.96,47.204 +38627,168.8,47.227 +38628,166.58,47.234 +38629,171.85,47.222 +38630,169.7,47.205 +38631,167.5,47.175 +38632,165.26,47.128 +38633,170.61,47.277 +38634,168.44,47.207 +38635,166.21,47.123 +38636,163.93,47.022 +38637,169.37,47.331 +38638,167.17,47.209 +38639,164.92,47.071 +38640,162.61,46.916 +38641,168.12,47.385 +38642,165.91,47.21 +38643,163.63,47.019 +38644,161.29,46.809 +38645,166.87,47.44 +38646,164.64,47.212 +38647,162.34,46.967 +38648,159.97,46.702 +38649,165.63,47.494 +38650,163.37,47.214 +38651,161.05,46.915 +38652,158.65,46.596 +38653,164.37,47.547 +38654,162.11,47.215 +38655,159.76,46.863 +38656,157.33,46.489 +38657,163.12,47.601 +38658,160.84,47.217 +38659,158.47,46.811 +38660,156.02,46.383 +38661,161.87,47.655 +38662,159.57,47.218 +38663,157.19,46.76 +38664,154.71,46.276 +38665,160.61,47.708 +38666,158.3,47.22 +38667,155.9,46.708 +38668,153.4,46.17 +38669,159.35,47.76 +38670,157.03,47.222 +38671,154.62,46.657 +38672,152.09,46.064 +38673,158.09,47.813 +38674,155.76,47.223 +38675,153.33,46.606 +38676,150.78,45.958 +38677,156.83,47.865 +38678,154.49,47.224 +38679,152.05,46.555 +38680,149.48,45.852 +38681,155.56,47.916 +38682,153.22,47.225 +38683,150.76,46.504 +38684,148.18,45.747 +38685,154.29,47.967 +38686,151.95,47.227 +38687,149.48,46.453 +38688,146.88,45.642 +38689,153.03,48.018 +38690,150.68,47.228 +38691,148.2,46.402 +38692,145.58,45.538 +38693,151.76,48.067 +38694,149.4,47.228 +38695,146.92,46.352 +38696,144.28,45.434 +38697,150.48,48.117 +38698,148.13,47.229 +38699,145.64,46.302 +38700,142.99,45.33 +38701,149.21,48.165 +38702,146.86,47.23 +38703,144.36,46.252 +38704,141.7,45.227 +38705,147.93,48.213 +38706,145.58,47.23 +38707,143.08,46.202 +38708,140.41,45.125 +38709,146.66,48.26 +38710,144.31,47.23 +38711,141.8,46.153 +38712,139.12,45.023 +38713,145.38,48.307 +38714,143.03,47.23 +38715,140.53,46.104 +38716,137.83,44.922 +38717,144.1,48.353 +38718,141.75,47.23 +38719,139.25,46.055 +38720,136.55,44.822 +38721,142.81,48.398 +38722,140.48,47.229 +38723,137.97,46.006 +38724,135.27,44.722 +38725,141.53,48.442 +38726,139.2,47.228 +38727,136.7,45.958 +38728,133.99,44.624 +38729,140.24,48.485 +38730,137.92,47.227 +38731,135.43,45.91 +38732,132.72,44.526 +38733,138.95,48.527 +38734,136.64,47.226 +38735,134.15,45.863 +38736,131.44,44.429 +38737,137.66,48.569 +38738,135.36,47.224 +38739,132.88,45.816 +38740,130.17,44.333 +38741,136.37,48.609 +38742,134.08,47.222 +38743,131.61,45.769 +38744,128.9,44.238 +38745,135.08,48.648 +38746,132.8,47.22 +38747,130.34,45.722 +38748,127.63,44.144 +38749,133.78,48.687 +38750,131.52,47.218 +38751,129.07,45.676 +38752,126.37,44.052 +38753,132.48,48.724 +38754,130.24,47.215 +38755,127.8,45.631 +38756,125.11,43.96 +38757,131.19,48.76 +38758,128.96,47.212 +38759,126.53,45.586 +38760,123.84,43.869 +38761,129.89,48.795 +38762,127.68,47.208 +38763,125.26,45.541 +38764,122.59,43.78 +38765,128.58,48.829 +38766,126.39,47.204 +38767,124,45.497 +38768,121.33,43.692 +38769,127.28,48.862 +38770,125.11,47.2 +38771,122.73,45.453 +38772,120.08,43.605 +38773,125.97,48.893 +38774,123.83,47.196 +38775,121.46,45.409 +38776,118.83,43.52 +38777,124.67,48.924 +38778,122.54,47.191 +38779,120.2,45.367 +38780,117.58,43.436 +38781,123.36,48.953 +38782,121.26,47.185 +38783,118.93,45.324 +38784,116.33,43.353 +38785,122.05,48.98 +38786,119.97,47.18 +38787,117.67,45.282 +38788,115.09,43.272 +38789,120.74,49.007 +38790,118.69,47.173 +38791,116.41,45.241 +38792,113.85,43.192 +38793,119.43,49.032 +38794,117.4,47.167 +38795,115.15,45.2 +38796,112.61,43.114 +38797,118.11,49.056 +38798,116.11,47.16 +38799,113.89,45.16 +38800,111.37,43.038 +38801,116.8,49.078 +38802,114.82,47.152 +38803,112.63,45.12 +38804,110.13,42.963 +38805,115.48,49.099 +38806,113.54,47.144 +38807,111.37,45.081 +38808,108.9,42.889 +38809,114.16,49.119 +38810,112.25,47.136 +38811,110.11,45.042 +38812,107.67,42.818 +38813,112.84,49.137 +38814,110.96,47.127 +38815,108.85,45.004 +38816,106.44,42.748 +38817,111.52,49.154 +38818,109.67,47.118 +38819,107.59,44.967 +38820,105.22,42.679 +38821,110.2,49.169 +38822,108.38,47.108 +38823,106.34,44.93 +38824,103.99,42.613 +38825,108.87,49.183 +38826,107.09,47.098 +38827,105.08,44.894 +38828,102.77,42.548 +38829,107.55,49.195 +38830,105.8,47.087 +38831,103.82,44.858 +38832,101.55,42.485 +38833,106.22,49.206 +38834,104.51,47.076 +38835,102.57,44.823 +38836,100.33,42.424 +38837,104.9,49.215 +38838,103.22,47.064 +38839,101.32,44.789 +38840,99.115,42.365 +38841,103.57,49.223 +38842,101.93,47.052 +38843,100.06,44.755 +38844,97.902,42.308 +38845,102.24,49.229 +38846,100.63,47.039 +38847,98.809,44.722 +38848,96.69,42.252 +38849,100.91,49.233 +38850,99.341,47.026 +38851,97.557,44.689 +38852,95.48,42.199 +38853,99.575,49.236 +38854,98.049,47.012 +38855,96.305,44.658 +38856,94.272,42.147 +38857,98.242,49.237 +38858,96.756,46.998 +38859,95.054,44.626 +38860,93.066,42.098 +38861,96.908,49.237 +38862,95.462,46.983 +38863,93.804,44.596 +38864,91.861,42.051 +38865,95.574,49.235 +38866,94.168,46.967 +38867,92.554,44.566 +38868,90.659,42.005 +38869,94.238,49.231 +38870,92.874,46.951 +38871,91.304,44.537 +38872,89.458,41.962 +38873,92.901,49.226 +38874,91.58,46.935 +38875,90.055,44.509 +38876,88.259,41.92 +38877,91.564,49.219 +38878,90.285,46.918 +38879,88.807,44.481 +38880,87.061,41.881 +38881,90.226,49.21 +38882,88.99,46.9 +38883,87.559,44.454 +38884,85.865,41.844 +38885,88.887,49.2 +38886,87.695,46.882 +38887,86.312,44.427 +38888,84.671,41.809 +38889,87.547,49.188 +38890,86.4,46.863 +38891,85.065,44.402 +38892,83.478,41.776 +38893,86.206,49.174 +38894,85.104,46.844 +38895,83.819,44.377 +38896,82.286,41.745 +38897,84.865,49.159 +38898,83.808,46.824 +38899,82.573,44.352 +38900,81.096,41.717 +38901,83.522,49.141 +38902,82.512,46.804 +38903,81.327,44.329 +38904,79.907,41.69 +38905,82.18,49.122 +38906,81.216,46.783 +38907,80.082,44.306 +38908,78.72,41.666 +38909,80.836,49.102 +38910,79.92,46.761 +38911,78.837,44.284 +38912,77.533,41.643 +38913,79.492,49.079 +38914,78.623,46.739 +38915,77.593,44.262 +38916,76.348,41.623 +38917,78.148,49.055 +38918,77.326,46.716 +38919,76.349,44.242 +38920,75.164,41.605 +38921,76.803,49.029 +38922,76.029,46.693 +38923,75.106,44.222 +38924,73.98,41.59 +38925,75.457,49.002 +38926,74.732,46.669 +38927,73.862,44.202 +38928,72.798,41.576 +38929,74.111,48.973 +38930,73.435,46.645 +38931,72.619,44.184 +38932,71.617,41.564 +38933,72.765,48.942 +38934,72.138,46.62 +38935,71.377,44.166 +38936,70.436,41.555 +38937,71.418,48.909 +38938,70.841,46.594 +38939,70.134,44.149 +38940,69.256,41.548 +38941,70.071,48.874 +38942,69.543,46.568 +38943,68.892,44.132 +38944,68.077,41.542 +38945,68.723,48.838 +38946,68.246,46.541 +38947,67.651,44.116 +38948,66.898,41.539 +38949,67.376,48.8 +38950,66.948,46.514 +38951,66.409,44.101 +38952,65.72,41.539 +38953,66.028,48.761 +38954,65.651,46.486 +38955,65.168,44.087 +38956,64.543,41.54 +38957,64.68,48.719 +38958,64.353,46.458 +38959,63.926,44.073 +38960,63.366,41.543 +38961,63.331,48.676 +38962,63.056,46.429 +38963,62.685,44.06 +38964,62.189,41.548 +38965,61.983,48.631 +38966,61.758,46.4 +38967,61.444,44.048 +38968,61.013,41.556 +38969,60.634,48.585 +38970,60.461,46.37 +38971,60.204,44.036 +38972,59.837,41.565 +38973,59.285,48.537 +38974,59.163,46.339 +38975,58.963,44.026 +38976,58.661,41.576 +38977,57.937,48.487 +38978,57.866,46.308 +38979,57.723,44.015 +38980,57.485,41.59 +38981,56.588,48.436 +38982,56.569,46.276 +38983,56.482,44.006 +38984,56.309,41.605 +38985,55.239,48.383 +38986,55.271,46.244 +38987,55.242,43.997 +38988,55.133,41.623 +38989,53.89,48.328 +38990,53.974,46.212 +38991,54.002,43.989 +38992,53.957,41.642 +38993,52.542,48.271 +38994,52.677,46.178 +38995,52.762,43.981 +38996,52.78,41.663 +38997,51.193,48.213 +38998,51.38,46.145 +38999,51.521,43.974 +39000,51.604,41.686 +39001,49.845,48.154 +39002,50.083,46.111 +39003,50.281,43.968 +39004,50.427,41.711 +39005,48.497,48.093 +39006,48.787,46.076 +39007,49.041,43.962 +39008,49.25,41.738 +39009,47.149,48.03 +39010,47.49,46.041 +39011,47.801,43.957 +39012,48.072,41.766 +39013,45.802,47.966 +39014,46.194,46.005 +39015,46.561,43.953 +39016,46.894,41.796 +39017,44.455,47.9 +39018,44.898,45.969 +39019,45.32,43.949 +39020,45.716,41.829 +39021,43.108,47.833 +39022,43.602,45.932 +39023,44.08,43.946 +39024,44.536,41.862 +39025,41.761,47.764 +39026,42.306,45.895 +39027,42.839,43.943 +39028,43.356,41.898 +39029,40.415,47.693 +39030,41.011,45.857 +39031,41.599,43.941 +39032,42.176,41.935 +39033,39.07,47.621 +39034,39.716,45.819 +39035,40.358,43.94 +39036,40.994,41.973 +39037,37.725,47.548 +39038,38.421,45.781 +39039,39.117,43.939 +39040,39.812,42.014 +39041,36.38,47.474 +39042,37.126,45.742 +39043,37.876,43.938 +39044,38.629,42.056 +39045,35.036,47.397 +39046,35.832,45.703 +39047,36.635,43.939 +39048,37.445,42.099 +39049,33.693,47.32 +39050,34.538,45.663 +39051,35.393,43.939 +39052,36.26,42.144 +39053,32.35,47.241 +39054,33.244,45.623 +39055,34.151,43.941 +39056,35.074,42.19 +39057,31.008,47.161 +39058,31.951,45.582 +39059,32.909,43.943 +39060,33.887,42.237 +39061,29.667,47.08 +39062,30.658,45.541 +39063,31.667,43.945 +39064,32.698,42.286 +39065,28.326,46.997 +39066,29.365,45.5 +39067,30.425,43.948 +39068,31.509,42.337 +39069,26.987,46.913 +39070,28.073,45.458 +39071,29.182,43.951 +39072,30.318,42.388 +39073,25.648,46.828 +39074,26.781,45.416 +39075,27.939,43.955 +39076,29.126,42.441 +39077,24.309,46.741 +39078,25.489,45.373 +39079,26.696,43.959 +39080,27.932,42.495 +39081,22.972,46.654 +39082,24.198,45.331 +39083,25.452,43.964 +39084,26.738,42.55 +39085,21.636,46.565 +39086,22.908,45.288 +39087,24.208,43.969 +39088,25.542,42.606 +39089,20.3,46.475 +39090,21.617,45.244 +39091,22.964,43.974 +39092,24.344,42.663 +39093,18.966,46.384 +39094,20.328,45.201 +39095,21.72,43.98 +39096,23.145,42.721 +39097,17.633,46.292 +39098,19.038,45.157 +39099,20.475,43.986 +39100,21.944,42.781 +39101,16.3,46.199 +39102,17.75,45.112 +39103,19.229,43.993 +39104,20.742,42.841 +39105,14.969,46.105 +39106,16.461,45.068 +39107,17.983,44 +39108,19.539,42.902 +39109,13.639,46.01 +39110,15.173,45.023 +39111,16.737,44.008 +39112,18.333,42.964 +39113,12.31,45.914 +39114,13.886,44.978 +39115,15.491,44.015 +39116,17.126,43.027 +39117,10.982,45.817 +39118,12.599,44.933 +39119,14.244,44.024 +39120,15.918,43.09 +39121,9.6559,45.72 +39122,11.313,44.887 +39123,12.996,44.032 +39124,14.707,43.154 +39125,8.3307,45.621 +39126,10.027,44.842 +39127,11.748,44.041 +39128,13.495,43.219 +39129,7.0068,45.522 +39130,8.7421,44.796 +39131,10.5,44.05 +39132,12.282,43.284 +39133,5.6842,45.422 +39134,7.4575,44.75 +39135,9.251,44.059 +39136,11.066,43.35 +39137,4.3629,45.321 +39138,6.1735,44.703 +39139,8.0017,44.068 +39140,9.8489,43.417 +39141,3.0431,45.22 +39142,4.8901,44.657 +39143,6.7519,44.078 +39144,8.6298,43.484 +39145,1.7247,45.118 +39146,3.6072,44.611 +39147,5.5017,44.088 +39148,7.4089,43.552 +39149,0.40772,45.016 +39150,2.325,44.564 +39151,4.2509,44.098 +39152,6.1862,43.619 +39153,359.09,44.912 +39154,1.0434,44.517 +39155,2.9996,44.109 +39156,4.9616,43.688 +39157,357.78,44.809 +39158,359.76,44.471 +39159,1.7477,44.119 +39160,3.7351,43.756 +39161,356.47,44.705 +39162,358.48,44.424 +39163,0.49541,44.13 +39164,2.5068,43.825 +39165,355.16,44.6 +39166,357.2,44.377 +39167,359.24,44.141 +39168,1.2766,43.894 +39169,353.85,44.495 +39170,355.92,44.33 +39171,357.99,44.152 +39172,0.044547,43.963 +39173,352.54,44.39 +39174,354.64,44.283 +39175,356.74,44.163 +39176,358.81,44.032 +39177,351.23,44.285 +39178,353.37,44.236 +39179,355.48,44.175 +39180,357.57,44.102 +39181,349.93,44.179 +39182,352.09,44.189 +39183,354.23,44.186 +39184,356.34,44.171 +39185,348.63,44.073 +39186,350.81,44.142 +39187,352.97,44.197 +39188,355.1,44.241 +39189,347.33,43.967 +39190,349.54,44.095 +39191,351.71,44.209 +39192,353.86,44.31 +39193,346.03,43.86 +39194,348.26,44.048 +39195,350.46,44.221 +39196,352.61,44.379 +39197,344.73,43.754 +39198,346.99,44.001 +39199,349.2,44.232 +39200,351.37,44.448 +39201,343.43,43.648 +39202,345.71,43.954 +39203,347.94,44.244 +39204,350.12,44.517 +39205,342.14,43.541 +39206,344.44,43.908 +39207,346.68,44.256 +39208,348.87,44.586 +39209,340.85,43.435 +39210,343.17,43.861 +39211,345.42,44.267 +39212,347.62,44.654 +39213,339.56,43.329 +39214,341.9,43.815 +39215,344.16,44.279 +39216,346.37,44.723 +39217,338.27,43.223 +39218,340.63,43.768 +39219,342.9,44.29 +39220,345.11,44.79 +39221,336.99,43.117 +39222,339.36,43.722 +39223,341.64,44.302 +39224,343.85,44.858 +39225,335.7,43.011 +39226,338.09,43.676 +39227,340.38,44.313 +39228,342.59,44.925 +39229,334.42,42.906 +39230,336.82,43.63 +39231,339.12,44.325 +39232,341.33,44.991 +39233,333.14,42.801 +39234,335.55,43.585 +39235,337.86,44.336 +39236,340.07,45.057 +39237,331.86,42.696 +39238,334.28,43.54 +39239,336.59,44.347 +39240,338.81,45.123 +39241,330.59,42.592 +39242,333.02,43.494 +39243,335.33,44.358 +39244,337.54,45.188 +39245,329.31,42.489 +39246,331.75,43.449 +39247,334.07,44.369 +39248,336.27,45.252 +39249,328.04,42.385 +39250,330.49,43.405 +39251,332.8,44.38 +39252,335,45.315 +39253,326.77,42.283 +39254,329.22,43.36 +39255,331.54,44.391 +39256,333.73,45.378 +39257,325.51,42.181 +39258,327.96,43.316 +39259,330.27,44.401 +39260,332.46,45.441 +39261,324.24,42.08 +39262,326.7,43.273 +39263,329,44.412 +39264,331.18,45.502 +39265,322.98,41.98 +39266,325.44,43.229 +39267,327.74,44.422 +39268,329.9,45.562 +39269,321.72,41.88 +39270,324.18,43.186 +39271,326.47,44.431 +39272,328.63,45.622 +39273,320.46,41.781 +39274,322.92,43.143 +39275,325.2,44.441 +39276,327.34,45.681 +39277,319.2,41.683 +39278,321.66,43.101 +39279,323.93,44.45 +39280,326.06,45.739 +39281,317.95,41.586 +39282,320.4,43.059 +39283,322.66,44.46 +39284,324.78,45.796 +39285,316.7,41.49 +39286,319.14,43.017 +39287,321.39,44.468 +39288,323.49,45.852 +39289,315.45,41.395 +39290,317.88,42.976 +39291,320.12,44.477 +39292,322.21,45.907 +39293,314.2,41.301 +39294,316.62,42.936 +39295,318.85,44.485 +39296,320.92,45.961 +39297,312.96,41.209 +39298,315.37,42.895 +39299,317.58,44.493 +39300,319.63,46.014 +39301,311.71,41.117 +39302,314.11,42.855 +39303,316.31,44.501 +39304,318.33,46.065 +39305,310.47,41.027 +39306,312.86,42.816 +39307,315.03,44.508 +39308,317.04,46.116 +39309,309.23,40.937 +39310,311.61,42.777 +39311,313.76,44.515 +39312,315.74,46.165 +39313,308,40.85 +39314,310.35,42.739 +39315,312.49,44.522 +39316,314.45,46.213 +39317,306.76,40.763 +39318,309.1,42.701 +39319,311.21,44.528 +39320,313.15,46.26 +39321,305.53,40.678 +39322,307.85,42.663 +39323,309.94,44.534 +39324,311.85,46.306 +39325,304.3,40.595 +39326,306.6,42.627 +39327,308.66,44.54 +39328,310.55,46.351 +39329,303.07,40.512 +39330,305.35,42.59 +39331,307.39,44.545 +39332,309.24,46.394 +39333,301.85,40.432 +39334,304.1,42.555 +39335,306.11,44.549 +39336,307.94,46.436 +39337,300.62,40.353 +39338,302.85,42.519 +39339,304.84,44.554 +39340,306.63,46.476 +39341,299.4,40.276 +39342,301.6,42.485 +39343,303.56,44.558 +39344,305.33,46.515 +39345,298.18,40.2 +39346,300.35,42.451 +39347,302.28,44.561 +39348,304.02,46.553 +39349,296.96,40.126 +39350,299.11,42.418 +39351,301,44.564 +39352,302.71,46.589 +39353,295.75,40.054 +39354,297.86,42.385 +39355,299.72,44.567 +39356,301.4,46.624 +39357,294.54,39.983 +39358,296.62,42.353 +39359,298.45,44.569 +39360,300.09,46.657 +39361,293.33,39.915 +39362,295.37,42.321 +39363,297.17,44.57 +39364,298.77,46.689 +39365,292.12,39.848 +39366,294.13,42.29 +39367,295.89,44.572 +39368,297.46,46.719 +39369,290.91,39.783 +39370,292.88,42.26 +39371,294.61,44.572 +39372,296.14,46.748 +39373,289.7,39.72 +39374,291.64,42.231 +39375,293.33,44.572 +39376,294.83,46.775 +39377,288.5,39.659 +39378,290.4,42.202 +39379,292.05,44.572 +39380,293.51,46.8 +39381,287.3,39.6 +39382,289.15,42.174 +39383,290.76,44.571 +39384,292.19,46.824 +39385,286.1,39.543 +39386,287.91,42.146 +39387,289.48,44.57 +39388,290.87,46.847 +39389,284.9,39.488 +39390,286.67,42.119 +39391,288.2,44.568 +39392,289.55,46.867 +39393,283.7,39.435 +39394,285.43,42.093 +39395,286.92,44.566 +39396,288.23,46.886 +39397,282.51,39.385 +39398,284.19,42.068 +39399,285.64,44.563 +39400,286.91,46.904 +39401,281.32,39.336 +39402,282.95,42.043 +39403,284.35,44.56 +39404,285.58,46.92 +39405,280.13,39.29 +39406,281.71,42.019 +39407,283.07,44.556 +39408,284.26,46.934 +39409,278.94,39.245 +39410,280.48,41.996 +39411,281.79,44.551 +39412,282.93,46.946 +39413,277.75,39.203 +39414,279.24,41.974 +39415,280.5,44.546 +39416,281.61,46.957 +39417,276.56,39.164 +39418,278,41.952 +39419,279.22,44.54 +39420,280.28,46.965 +39421,275.38,39.126 +39422,276.76,41.931 +39423,277.94,44.534 +39424,278.95,46.973 +39425,274.19,39.091 +39426,275.53,41.911 +39427,276.65,44.528 +39428,277.62,46.978 +39429,273.01,39.058 +39430,274.29,41.892 +39431,275.37,44.52 +39432,276.29,46.982 +39433,271.83,39.027 +39434,273.05,41.873 +39435,274.08,44.512 +39436,274.97,46.984 +39437,270.65,38.999 +39438,271.82,41.855 +39439,272.8,44.504 +39440,273.64,46.984 +39441,269.47,38.973 +39442,270.58,41.838 +39443,271.51,44.495 +39444,272.3,46.982 +39445,268.29,38.949 +39446,269.35,41.822 +39447,270.23,44.485 +39448,270.97,46.979 +39449,267.11,38.928 +39450,268.11,41.807 +39451,268.94,44.475 +39452,269.64,46.974 +39453,265.94,38.909 +39454,266.88,41.792 +39455,267.66,44.465 +39456,268.31,46.967 +39457,264.76,38.892 +39458,265.65,41.778 +39459,266.37,44.453 +39460,266.98,46.958 +39461,263.59,38.878 +39462,264.41,41.765 +39463,265.08,44.441 +39464,265.64,46.947 +39465,262.41,38.866 +39466,263.18,41.753 +39467,263.8,44.429 +39468,264.31,46.935 +39469,261.24,38.857 +39470,261.95,41.741 +39471,262.51,44.416 +39472,262.98,46.921 +39473,260.07,38.85 +39474,260.71,41.73 +39475,261.23,44.402 +39476,261.64,46.905 +39477,258.89,38.845 +39478,259.48,41.72 +39479,259.94,44.388 +39480,260.31,46.887 +39481,257.72,38.842 +39482,258.25,41.711 +39483,258.65,44.373 +39484,258.97,46.868 +39485,256.55,38.842 +39486,257.01,41.703 +39487,257.37,44.358 +39488,257.64,46.846 +39489,255.38,38.845 +39490,255.78,41.695 +39491,256.08,44.342 +39492,256.31,46.823 +39493,254.21,38.849 +39494,254.55,41.688 +39495,254.79,44.325 +39496,254.97,46.798 +39497,253.04,38.856 +39498,253.32,41.682 +39499,253.51,44.308 +39500,253.64,46.771 +39501,251.87,38.866 +39502,252.09,41.677 +39503,252.22,44.291 +39504,252.3,46.743 +39505,250.7,38.877 +39506,250.85,41.672 +39507,250.94,44.272 +39508,250.97,46.712 +39509,249.53,38.891 +39510,249.62,41.669 +39511,249.65,44.253 +39512,249.63,46.68 +39513,248.36,38.907 +39514,248.39,41.666 +39515,248.36,44.234 +39516,248.3,46.646 +39517,247.19,38.926 +39518,247.16,41.663 +39519,247.08,44.214 +39520,246.96,46.611 +39521,246.02,38.947 +39522,245.93,41.662 +39523,245.79,44.194 +39524,245.63,46.573 +39525,244.85,38.969 +39526,244.7,41.661 +39527,244.51,44.172 +39528,244.29,46.534 +39529,243.68,38.995 +39530,243.46,41.661 +39531,243.22,44.151 +39532,242.96,46.493 +39533,242.51,39.022 +39534,242.23,41.662 +39535,241.94,44.129 +39536,241.63,46.451 +39537,241.33,39.051 +39538,241,41.664 +39539,240.65,44.106 +39540,240.29,46.406 +39541,240.16,39.083 +39542,239.77,41.666 +39543,239.37,44.083 +39544,238.96,46.36 +39545,238.99,39.116 +39546,238.53,41.669 +39547,238.08,44.059 +39548,237.63,46.313 +39549,237.81,39.152 +39550,237.3,41.673 +39551,236.8,44.035 +39552,236.29,46.263 +39553,236.64,39.19 +39554,236.07,41.677 +39555,235.51,44.01 +39556,234.96,46.212 +39557,235.46,39.23 +39558,234.84,41.682 +39559,234.23,43.984 +39560,233.63,46.16 +39561,234.29,39.271 +39562,233.6,41.688 +39563,232.94,43.959 +39564,232.3,46.105 +39565,233.11,39.315 +39566,232.37,41.695 +39567,231.66,43.932 +39568,230.97,46.049 +39569,231.93,39.361 +39570,231.14,41.702 +39571,230.38,43.906 +39572,229.64,45.992 +39573,230.75,39.408 +39574,229.9,41.71 +39575,229.09,43.878 +39576,228.31,45.933 +39577,229.57,39.457 +39578,228.67,41.718 +39579,227.81,43.85 +39580,226.98,45.872 +39581,228.39,39.508 +39582,227.44,41.727 +39583,226.53,43.822 +39584,225.65,45.81 +39585,227.21,39.561 +39586,226.2,41.737 +39587,225.24,43.793 +39588,224.33,45.746 +39589,226.03,39.615 +39590,224.97,41.748 +39591,223.96,43.764 +39592,223,45.681 +39593,224.84,39.672 +39594,223.73,41.759 +39595,222.68,43.735 +39596,221.67,45.615 +39597,223.66,39.729 +39598,222.5,41.77 +39599,221.4,43.705 +39600,220.35,45.547 +39601,222.47,39.789 +39602,221.26,41.782 +39603,220.12,43.674 +39604,219.02,45.477 +39605,221.28,39.85 +39606,220.03,41.795 +39607,218.84,43.643 +39608,217.7,45.406 +39609,220.09,39.912 +39610,218.79,41.809 +39611,217.56,43.612 +39612,216.38,45.334 +39613,218.9,39.976 +39614,217.55,41.822 +39615,216.28,43.581 +39616,215.06,45.26 +39617,217.7,40.042 +39618,216.32,41.837 +39619,215,43.549 +39620,213.74,45.185 +39621,216.51,40.108 +39622,215.08,41.852 +39623,213.72,43.516 +39624,212.42,45.109 +39625,215.31,40.176 +39626,213.84,41.867 +39627,212.44,43.483 +39628,211.1,45.031 +39629,214.12,40.246 +39630,212.6,41.884 +39631,211.16,43.45 +39632,209.78,44.953 +39633,212.92,40.316 +39634,211.36,41.9 +39635,209.89,43.417 +39636,208.47,44.873 +39637,211.71,40.388 +39638,210.13,41.917 +39639,208.61,43.383 +39640,207.15,44.791 +39641,210.51,40.461 +39642,208.89,41.934 +39643,207.33,43.349 +39644,205.84,44.709 +39645,209.31,40.535 +39646,207.65,41.952 +39647,206.06,43.315 +39648,204.53,44.626 +39649,208.1,40.61 +39650,206.41,41.971 +39651,204.78,43.28 +39652,203.22,44.541 +39653,206.89,40.686 +39654,205.16,41.99 +39655,203.5,43.245 +39656,201.91,44.456 +39657,205.68,40.763 +39658,203.92,42.009 +39659,202.23,43.21 +39660,200.6,44.369 +39661,204.47,40.841 +39662,202.68,42.028 +39663,200.96,43.174 +39664,199.29,44.281 +39665,203.26,40.919 +39666,201.44,42.048 +39667,199.68,43.139 +39668,197.98,44.193 +39669,202.04,40.999 +39670,200.19,42.069 +39671,198.41,43.103 +39672,196.68,44.103 +39673,200.82,41.079 +39674,198.95,42.089 +39675,197.14,43.067 +39676,195.38,44.013 +39677,199.6,41.16 +39678,197.71,42.11 +39679,195.87,43.031 +39680,194.07,43.922 +39681,198.38,41.242 +39682,196.46,42.132 +39683,194.59,42.994 +39684,192.77,43.83 +39685,197.16,41.324 +39686,195.22,42.153 +39687,193.32,42.957 +39688,191.48,43.737 +39689,195.93,41.407 +39690,193.97,42.175 +39691,192.05,42.921 +39692,190.18,43.644 +39693,194.71,41.49 +39694,192.72,42.197 +39695,190.78,42.884 +39696,188.88,43.55 +39697,193.48,41.574 +39698,191.48,42.22 +39699,189.52,42.847 +39700,187.59,43.455 +39701,192.24,41.658 +39702,190.23,42.242 +39703,188.25,42.81 +39704,186.3,43.359 +39705,191.01,41.742 +39706,188.98,42.265 +39707,186.98,42.772 +39708,185.01,43.263 +39709,189.78,41.827 +39710,187.73,42.288 +39711,185.71,42.735 +39712,183.72,43.167 +39713,188.54,41.912 +39714,186.48,42.312 +39715,184.45,42.698 +39716,182.43,43.07 +39717,187.3,41.997 +39718,185.23,42.335 +39719,183.18,42.66 +39720,181.15,42.972 +39721,186.06,42.083 +39722,183.98,42.359 +39723,181.92,42.623 +39724,179.86,42.875 +39725,184.82,42.169 +39726,182.73,42.383 +39727,180.65,42.585 +39728,178.58,42.776 +39729,183.57,42.254 +39730,181.48,42.407 +39731,179.39,42.548 +39732,177.3,42.678 +39733,182.32,42.34 +39734,180.23,42.431 +39735,178.12,42.51 +39736,176.02,42.579 +39737,181.08,42.426 +39738,178.97,42.455 +39739,176.86,42.473 +39740,174.75,42.48 +39741,179.83,42.511 +39742,177.72,42.479 +39743,175.6,42.436 +39744,173.47,42.381 +39745,178.57,42.597 +39746,176.46,42.503 +39747,174.34,42.398 +39748,172.2,42.282 +39749,177.32,42.682 +39750,175.21,42.528 +39751,173.08,42.361 +39752,170.93,42.182 +39753,176.06,42.767 +39754,173.95,42.552 +39755,171.82,42.324 +39756,169.66,42.083 +39757,174.8,42.852 +39758,172.7,42.576 +39759,170.56,42.287 +39760,168.39,41.983 +39761,173.54,42.937 +39762,171.44,42.601 +39763,169.3,42.25 +39764,167.13,41.884 +39765,172.28,43.021 +39766,170.18,42.625 +39767,168.04,42.213 +39768,165.86,41.785 +39769,171.02,43.105 +39770,168.92,42.65 +39771,166.79,42.177 +39772,164.6,41.686 +39773,169.75,43.188 +39774,167.67,42.674 +39775,165.53,42.14 +39776,163.34,41.587 +39777,168.48,43.271 +39778,166.41,42.698 +39779,164.28,42.104 +39780,162.09,41.488 +39781,167.21,43.354 +39782,165.15,42.722 +39783,163.02,42.068 +39784,160.83,41.39 +39785,165.94,43.435 +39786,163.89,42.747 +39787,161.77,42.032 +39788,159.58,41.292 +39789,164.67,43.517 +39790,162.62,42.771 +39791,160.51,41.997 +39792,158.33,41.194 +39793,163.39,43.598 +39794,161.36,42.794 +39795,159.26,41.962 +39796,157.08,41.097 +39797,162.12,43.678 +39798,160.1,42.818 +39799,158.01,41.927 +39800,155.83,41.001 +39801,160.84,43.757 +39802,158.84,42.842 +39803,156.76,41.892 +39804,154.59,40.905 +39805,159.56,43.835 +39806,157.57,42.865 +39807,155.51,41.858 +39808,153.34,40.809 +39809,158.28,43.913 +39810,156.31,42.889 +39811,154.26,41.823 +39812,152.1,40.715 +39813,156.99,43.99 +39814,155.05,42.912 +39815,153.01,41.79 +39816,150.86,40.62 +39817,155.71,44.066 +39818,153.78,42.935 +39819,151.76,41.756 +39820,149.63,40.527 +39821,154.42,44.142 +39822,152.51,42.957 +39823,150.51,41.723 +39824,148.39,40.435 +39825,153.13,44.216 +39826,151.25,42.98 +39827,149.26,41.691 +39828,147.16,40.343 +39829,151.84,44.289 +39830,149.98,43.002 +39831,148.02,41.658 +39832,145.93,40.252 +39833,150.55,44.361 +39834,148.71,43.024 +39835,146.77,41.627 +39836,144.7,40.163 +39837,149.26,44.433 +39838,147.44,43.046 +39839,145.52,41.595 +39840,143.47,40.074 +39841,147.96,44.503 +39842,146.18,43.067 +39843,144.28,41.564 +39844,142.25,39.986 +39845,146.67,44.572 +39846,144.91,43.088 +39847,143.03,41.534 +39848,141.03,39.9 +39849,145.37,44.64 +39850,143.64,43.109 +39851,141.79,41.504 +39852,139.81,39.814 +39853,144.07,44.707 +39854,142.37,43.13 +39855,140.55,41.474 +39856,138.59,39.73 +39857,142.77,44.772 +39858,141.1,43.15 +39859,139.31,41.445 +39860,137.37,39.647 +39861,141.47,44.837 +39862,139.83,43.17 +39863,138.06,41.417 +39864,136.16,39.565 +39865,140.17,44.9 +39866,138.55,43.189 +39867,136.82,41.389 +39868,134.94,39.485 +39869,138.86,44.962 +39870,137.28,43.208 +39871,135.58,41.361 +39872,133.73,39.406 +39873,137.56,45.022 +39874,136.01,43.227 +39875,134.34,41.334 +39876,132.52,39.329 +39877,136.25,45.081 +39878,134.74,43.245 +39879,133.1,41.308 +39880,131.32,39.253 +39881,134.94,45.139 +39882,133.46,43.263 +39883,131.86,41.282 +39884,130.11,39.178 +39885,133.63,45.196 +39886,132.19,43.281 +39887,130.62,41.257 +39888,128.91,39.106 +39889,132.32,45.251 +39890,130.91,43.298 +39891,129.39,41.232 +39892,127.71,39.034 +39893,131.01,45.304 +39894,129.64,43.315 +39895,128.15,41.208 +39896,126.51,38.965 +39897,129.7,45.356 +39898,128.36,43.331 +39899,126.91,41.185 +39900,125.31,38.897 +39901,128.39,45.407 +39902,127.09,43.347 +39903,125.68,41.162 +39904,124.11,38.831 +39905,127.07,45.456 +39906,125.81,43.362 +39907,124.44,41.14 +39908,122.92,38.767 +39909,125.76,45.504 +39910,124.54,43.377 +39911,123.2,41.119 +39912,121.73,38.705 +39913,124.44,45.55 +39914,123.26,43.391 +39915,121.97,41.098 +39916,120.54,38.644 +39917,123.12,45.594 +39918,121.98,43.405 +39919,120.73,41.078 +39920,119.35,38.586 +39921,121.8,45.637 +39922,120.7,43.419 +39923,119.5,41.059 +39924,118.16,38.529 +39925,120.48,45.678 +39926,119.43,43.432 +39927,118.27,41.04 +39928,116.97,38.474 +39929,119.16,45.718 +39930,118.15,43.444 +39931,117.03,41.023 +39932,115.79,38.422 +39933,117.84,45.756 +39934,116.87,43.456 +39935,115.8,41.005 +39936,114.6,38.371 +39937,116.52,45.792 +39938,115.59,43.467 +39939,114.57,40.989 +39940,113.42,38.323 +39941,115.2,45.827 +39942,114.31,43.478 +39943,113.34,40.973 +39944,112.24,38.277 +39945,113.88,45.86 +39946,113.03,43.489 +39947,112.1,40.958 +39948,111.06,38.233 +39949,112.55,45.891 +39950,111.75,43.499 +39951,110.87,40.944 +39952,109.88,38.191 +39953,111.23,45.921 +39954,110.47,43.508 +39955,109.64,40.931 +39956,108.7,38.151 +39957,109.91,45.948 +39958,109.2,43.517 +39959,108.41,40.918 +39960,107.52,38.114 +39961,108.58,45.974 +39962,107.92,43.525 +39963,107.18,40.906 +39964,106.35,38.079 +39965,107.25,45.999 +39966,106.63,43.532 +39967,105.95,40.895 +39968,105.17,38.046 +39969,105.93,46.021 +39970,105.35,43.54 +39971,104.72,40.885 +39972,104,38.015 +39973,104.6,46.042 +39974,104.07,43.546 +39975,103.49,40.875 +39976,102.82,37.987 +39977,103.27,46.061 +39978,102.79,43.552 +39979,102.26,40.866 +39980,101.65,37.961 +39981,101.95,46.078 +39982,101.51,43.557 +39983,101.03,40.858 +39984,100.48,37.938 +39985,100.62,46.093 +39986,100.23,43.562 +39987,99.8,40.851 +39988,99.309,37.917 +39989,99.291,46.107 +39990,98.95,43.566 +39991,98.57,40.845 +39992,98.138,37.898 +39993,97.963,46.119 +39994,97.669,43.57 +39995,97.341,40.839 +39996,96.968,37.882 +39997,96.634,46.129 +39998,96.387,43.573 +39999,96.112,40.835 +40000,95.798,37.868 +40001,95.306,46.137 +40002,95.106,43.576 +40003,94.883,40.831 +40004,94.629,37.857 +40005,93.977,46.143 +40006,93.824,43.578 +40007,93.654,40.828 +40008,93.459,37.848 +40009,92.648,46.148 +40010,92.543,43.579 +40011,92.425,40.825 +40012,92.29,37.841 +40013,91.319,46.15 +40014,91.261,43.58 +40015,91.196,40.824 +40016,91.121,37.838 +40017,89.99,46.151 +40018,89.98,43.58 +40019,89.968,40.823 +40020,89.953,37.836 +40021,88.661,46.15 +40022,88.698,43.579 +40023,88.739,40.823 +40024,88.784,37.837 +40025,87.332,46.147 +40026,87.416,43.578 +40027,87.51,40.824 +40028,87.615,37.84 +40029,86.003,46.143 +40030,86.135,43.577 +40031,86.281,40.826 +40032,86.446,37.846 +40033,84.674,46.136 +40034,84.853,43.574 +40035,85.052,40.829 +40036,85.277,37.855 +40037,83.345,46.128 +40038,83.572,43.572 +40039,83.823,40.832 +40040,84.108,37.865 +40041,82.016,46.118 +40042,82.291,43.568 +40043,82.594,40.837 +40044,82.938,37.879 +40045,80.688,46.106 +40046,81.009,43.564 +40047,81.365,40.842 +40048,81.768,37.894 +40049,79.36,46.092 +40050,79.728,43.56 +40051,80.136,40.848 +40052,80.597,37.912 +40053,78.032,46.076 +40054,78.447,43.555 +40055,78.906,40.854 +40056,79.426,37.933 +40057,76.704,46.059 +40058,77.166,43.549 +40059,77.677,40.862 +40060,78.255,37.956 +40061,75.377,46.04 +40062,75.885,43.543 +40063,76.447,40.87 +40064,77.082,37.981 +40065,74.05,46.019 +40066,74.605,43.536 +40067,75.217,40.879 +40068,75.909,38.008 +40069,72.724,45.996 +40070,73.324,43.528 +40071,73.987,40.889 +40072,74.736,38.038 +40073,71.398,45.972 +40074,72.044,43.52 +40075,72.757,40.9 +40076,73.561,38.071 +40077,70.073,45.945 +40078,70.764,43.512 +40079,71.526,40.911 +40080,72.385,38.105 +40081,68.748,45.917 +40082,69.484,43.503 +40083,70.295,40.924 +40084,71.209,38.142 +40085,67.423,45.888 +40086,68.204,43.493 +40087,69.064,40.937 +40088,70.031,38.181 +40089,66.1,45.856 +40090,66.924,43.483 +40091,67.832,40.95 +40092,68.853,38.223 +40093,64.777,45.823 +40094,65.645,43.472 +40095,66.601,40.965 +40096,67.673,38.266 +40097,63.454,45.788 +40098,64.366,43.461 +40099,65.368,40.98 +40100,66.492,38.312 +40101,62.132,45.752 +40102,63.088,43.449 +40103,64.136,40.996 +40104,65.31,38.36 +40105,60.811,45.713 +40106,61.809,43.437 +40107,62.903,41.013 +40108,64.126,38.41 +40109,59.491,45.674 +40110,60.531,43.424 +40111,61.67,41.03 +40112,62.941,38.462 +40113,58.172,45.632 +40114,59.253,43.411 +40115,60.436,41.049 +40116,61.755,38.516 +40117,56.853,45.589 +40118,57.976,43.397 +40119,59.202,41.068 +40120,60.567,38.572 +40121,55.536,45.544 +40122,56.698,43.383 +40123,57.968,41.087 +40124,59.378,38.63 +40125,54.219,45.498 +40126,55.422,43.368 +40127,56.733,41.107 +40128,58.188,38.69 +40129,52.903,45.45 +40130,54.145,43.353 +40131,55.498,41.128 +40132,56.995,38.751 +40133,51.588,45.401 +40134,52.869,43.337 +40135,54.262,41.15 +40136,55.801,38.815 +40137,50.274,45.35 +40138,51.593,43.321 +40139,53.026,41.172 +40140,54.606,38.881 +40141,48.961,45.298 +40142,50.318,43.305 +40143,51.789,41.195 +40144,53.409,38.948 +40145,47.65,45.244 +40146,49.043,43.288 +40147,50.552,41.219 +40148,52.21,39.017 +40149,46.339,45.189 +40150,47.768,43.27 +40151,49.314,41.243 +40152,51.009,39.088 +40153,45.029,45.132 +40154,46.494,43.252 +40155,48.076,41.268 +40156,49.807,39.16 +40157,43.721,45.074 +40158,45.221,43.234 +40159,46.837,41.293 +40160,48.602,39.234 +40161,42.414,45.014 +40162,43.947,43.215 +40163,45.598,41.319 +40164,47.396,39.309 +40165,41.108,44.954 +40166,42.675,43.196 +40167,44.358,41.345 +40168,46.188,39.386 +40169,39.803,44.891 +40170,41.402,43.177 +40171,43.118,41.372 +40172,44.979,39.465 +40173,38.5,44.828 +40174,40.13,43.157 +40175,41.877,41.4 +40176,43.767,39.544 +40177,37.198,44.763 +40178,38.859,43.137 +40179,40.635,41.428 +40180,42.553,39.626 +40181,35.897,44.698 +40182,37.588,43.116 +40183,39.393,41.457 +40184,41.338,39.708 +40185,34.598,44.63 +40186,36.318,43.095 +40187,38.15,41.486 +40188,40.12,39.792 +40189,33.3,44.562 +40190,35.048,43.074 +40191,36.907,41.516 +40192,38.9,39.877 +40193,32.003,44.493 +40194,33.779,43.053 +40195,35.663,41.546 +40196,37.679,39.963 +40197,30.708,44.422 +40198,32.51,43.031 +40199,34.418,41.576 +40200,36.455,40.05 +40201,29.415,44.351 +40202,31.242,43.009 +40203,33.173,41.607 +40204,35.23,40.139 +40205,28.123,44.278 +40206,29.974,42.987 +40207,31.927,41.639 +40208,34.002,40.228 +40209,26.832,44.204 +40210,28.707,42.964 +40211,30.681,41.671 +40212,32.772,40.318 +40213,25.543,44.13 +40214,27.44,42.941 +40215,29.434,41.703 +40216,31.54,40.41 +40217,24.256,44.054 +40218,26.174,42.918 +40219,28.186,41.735 +40220,30.307,40.502 +40221,22.97,43.978 +40222,24.908,42.895 +40223,26.937,41.768 +40224,29.071,40.595 +40225,21.686,43.901 +40226,23.643,42.871 +40227,25.688,41.802 +40228,27.833,40.688 +40229,20.403,43.822 +40230,22.379,42.848 +40231,24.438,41.836 +40232,26.593,40.783 +40233,19.122,43.743 +40234,21.115,42.824 +40235,23.188,41.87 +40236,25.351,40.878 +40237,17.843,43.664 +40238,19.852,42.8 +40239,21.937,41.904 +40240,24.107,40.973 +40241,16.566,43.583 +40242,18.589,42.776 +40243,20.685,41.938 +40244,22.861,41.07 +40245,15.29,43.502 +40246,17.327,42.752 +40247,19.432,41.973 +40248,21.613,41.166 +40249,14.016,43.421 +40250,16.066,42.727 +40251,18.179,42.009 +40252,20.362,41.263 +40253,12.744,43.338 +40254,14.805,42.703 +40255,16.925,42.044 +40256,19.11,41.361 +40257,11.474,43.255 +40258,13.545,42.678 +40259,15.671,42.08 +40260,17.856,41.459 +40261,10.206,43.172 +40262,12.285,42.653 +40263,14.416,42.115 +40264,16.6,41.557 +40265,8.9389,43.088 +40266,11.027,42.629 +40267,13.16,42.151 +40268,15.342,41.656 +40269,7.6741,43.004 +40270,9.7682,42.604 +40271,11.903,42.188 +40272,14.081,41.755 +40273,6.4112,42.919 +40274,8.5104,42.579 +40275,10.646,42.224 +40276,12.819,41.854 +40277,5.1501,42.834 +40278,7.2533,42.554 +40279,9.3877,42.261 +40280,11.555,41.953 +40281,3.8909,42.749 +40282,5.9968,42.53 +40283,8.129,42.297 +40284,10.289,42.052 +40285,2.6336,42.663 +40286,4.741,42.505 +40287,6.8697,42.334 +40288,9.0207,42.151 +40289,1.3783,42.578 +40290,3.4857,42.48 +40291,5.6096,42.371 +40292,7.7507,42.25 +40293,0.12484,42.492 +40294,2.2311,42.455 +40295,4.3489,42.408 +40296,6.4788,42.349 +40297,358.87,42.406 +40298,0.97713,42.431 +40299,3.0875,42.445 +40300,5.205,42.448 +40301,357.62,42.32 +40302,359.72,42.406 +40303,1.8255,42.482 +40304,3.9294,42.546 +40305,356.38,42.233 +40306,358.47,42.382 +40307,0.56279,42.519 +40308,2.6519,42.645 +40309,355.13,42.147 +40310,357.22,42.357 +40311,359.3,42.556 +40312,1.3726,42.743 +40313,353.89,42.061 +40314,355.97,42.333 +40315,358.04,42.593 +40316,0.0915,42.841 +40317,352.65,41.975 +40318,354.72,42.309 +40319,356.77,42.63 +40320,358.81,42.939 +40321,351.41,41.89 +40322,353.47,42.285 +40323,355.51,42.667 +40324,357.52,43.036 +40325,350.17,41.804 +40326,352.22,42.262 +40327,354.24,42.704 +40328,356.24,43.133 +40329,348.93,41.719 +40330,350.97,42.238 +40331,352.97,42.741 +40332,354.95,43.229 +40333,347.7,41.634 +40334,349.72,42.215 +40335,351.71,42.778 +40336,353.66,43.325 +40337,346.47,41.549 +40338,348.47,42.192 +40339,350.44,42.815 +40340,352.37,43.42 +40341,345.24,41.465 +40342,347.22,42.169 +40343,349.17,42.852 +40344,351.08,43.514 +40345,344.01,41.381 +40346,345.98,42.146 +40347,347.9,42.888 +40348,349.78,43.608 +40349,342.78,41.298 +40350,344.73,42.124 +40351,346.63,42.925 +40352,348.48,43.702 +40353,341.56,41.215 +40354,343.49,42.102 +40355,345.36,42.961 +40356,347.19,43.794 +40357,340.34,41.133 +40358,342.24,42.08 +40359,344.09,42.997 +40360,345.89,43.886 +40361,339.12,41.051 +40362,341,42.059 +40363,342.82,43.033 +40364,344.59,43.977 +40365,337.9,40.97 +40366,339.75,42.038 +40367,341.55,43.069 +40368,343.28,44.067 +40369,336.68,40.89 +40370,338.51,42.017 +40371,340.27,43.105 +40372,341.98,44.156 +40373,335.47,40.811 +40374,337.27,41.996 +40375,339,43.14 +40376,340.68,44.244 +40377,334.25,40.733 +40378,336.02,41.976 +40379,337.73,43.175 +40380,339.37,44.332 +40381,333.04,40.655 +40382,334.78,41.957 +40383,336.45,43.21 +40384,338.06,44.418 +40385,331.83,40.579 +40386,333.54,41.938 +40387,335.18,43.245 +40388,336.75,44.504 +40389,330.63,40.503 +40390,332.3,41.919 +40391,333.9,43.279 +40392,335.44,44.588 +40393,329.42,40.429 +40394,331.06,41.9 +40395,332.63,43.313 +40396,334.13,44.671 +40397,328.22,40.355 +40398,329.82,41.883 +40399,331.35,43.347 +40400,332.82,44.753 +40401,327.01,40.283 +40402,328.58,41.865 +40403,330.07,43.38 +40404,331.5,44.834 +40405,325.81,40.212 +40406,327.34,41.848 +40407,328.8,43.413 +40408,330.19,44.914 +40409,324.62,40.142 +40410,326.1,41.832 +40411,327.52,43.446 +40412,328.87,44.993 +40413,323.42,40.073 +40414,324.87,41.816 +40415,326.24,43.479 +40416,327.55,45.07 +40417,322.22,40.006 +40418,323.63,41.8 +40419,324.96,43.511 +40420,326.23,45.146 +40421,321.03,39.94 +40422,322.39,41.785 +40423,323.68,43.542 +40424,324.91,45.221 +40425,319.84,39.875 +40426,321.15,41.771 +40427,322.4,43.574 +40428,323.59,45.294 +40429,318.65,39.812 +40430,319.92,41.757 +40431,321.12,43.605 +40432,322.27,45.366 +40433,317.46,39.751 +40434,318.68,41.744 +40435,319.84,43.635 +40436,320.95,45.437 +40437,316.27,39.691 +40438,317.45,41.731 +40439,318.56,43.665 +40440,319.63,45.506 +40441,315.08,39.632 +40442,316.21,41.719 +40443,317.28,43.695 +40444,318.3,45.574 +40445,313.9,39.575 +40446,314.98,41.708 +40447,316,43.724 +40448,316.98,45.641 +40449,312.71,39.52 +40450,313.74,41.697 +40451,314.72,43.753 +40452,315.65,45.706 +40453,311.53,39.467 +40454,312.51,41.687 +40455,313.43,43.782 +40456,314.32,45.769 +40457,310.35,39.415 +40458,311.27,41.677 +40459,312.15,43.809 +40460,313,45.831 +40461,309.17,39.365 +40462,310.04,41.668 +40463,310.87,43.837 +40464,311.67,45.892 +40465,307.99,39.317 +40466,308.81,41.66 +40467,309.59,43.864 +40468,310.34,45.951 +40469,306.81,39.271 +40470,307.57,41.652 +40471,308.3,43.89 +40472,309.01,46.008 +40473,305.63,39.227 +40474,306.34,41.645 +40475,307.02,43.917 +40476,307.68,46.064 +40477,304.46,39.185 +40478,305.11,41.639 +40479,305.74,43.942 +40480,306.35,46.118 +40481,303.28,39.144 +40482,303.87,41.633 +40483,304.45,43.967 +40484,305.02,46.17 +40485,302.11,39.106 +40486,302.64,41.628 +40487,303.17,43.992 +40488,303.69,46.221 +40489,300.93,39.07 +40490,301.41,41.624 +40491,301.88,44.016 +40492,302.35,46.27 +40493,299.76,39.035 +40494,300.18,41.621 +40495,300.6,44.039 +40496,301.02,46.318 +40497,298.59,39.003 +40498,298.94,41.618 +40499,299.31,44.062 +40500,299.69,46.364 +40501,297.41,38.973 +40502,297.71,41.616 +40503,298.03,44.084 +40504,298.36,46.408 +40505,296.24,38.945 +40506,296.48,41.615 +40507,296.74,44.106 +40508,297.02,46.45 +40509,295.07,38.919 +40510,295.25,41.614 +40511,295.46,44.128 +40512,295.69,46.491 +40513,293.9,38.896 +40514,294.02,41.614 +40515,294.17,44.148 +40516,294.35,46.53 +40517,292.73,38.875 +40518,292.78,41.615 +40519,292.89,44.169 +40520,293.02,46.567 +40521,291.56,38.855 +40522,291.55,41.617 +40523,291.6,44.188 +40524,291.69,46.603 +40525,290.39,38.839 +40526,290.32,41.62 +40527,290.31,44.207 +40528,290.35,46.636 +40529,289.22,38.824 +40530,289.09,41.623 +40531,289.03,44.226 +40532,289.02,46.668 +40533,288.05,38.812 +40534,287.86,41.627 +40535,287.74,44.244 +40536,287.68,46.698 +40537,286.88,38.802 +40538,286.63,41.632 +40539,286.46,44.261 +40540,286.35,46.727 +40541,285.71,38.794 +40542,285.39,41.637 +40543,285.17,44.278 +40544,285.01,46.753 +40545,284.54,38.789 +40546,284.16,41.644 +40547,283.88,44.294 +40548,283.68,46.778 +40549,283.37,38.786 +40550,282.93,41.651 +40551,282.6,44.31 +40552,282.34,46.801 +40553,282.19,38.786 +40554,281.7,41.659 +40555,281.31,44.325 +40556,281.01,46.822 +40557,281.02,38.787 +40558,280.46,41.668 +40559,280.03,44.34 +40560,279.68,46.842 +40561,279.85,38.792 +40562,279.23,41.677 +40563,278.74,44.353 +40564,278.34,46.859 +40565,278.68,38.798 +40566,278,41.688 +40567,277.45,44.367 +40568,277.01,46.875 +40569,277.51,38.807 +40570,276.77,41.699 +40571,276.17,44.38 +40572,275.67,46.889 +40573,276.33,38.818 +40574,275.53,41.711 +40575,274.88,44.392 +40576,274.34,46.901 +40577,275.16,38.832 +40578,274.3,41.723 +40579,273.6,44.403 +40580,273.01,46.912 +40581,273.98,38.848 +40582,273.07,41.737 +40583,272.31,44.414 +40584,271.68,46.92 +40585,272.81,38.866 +40586,271.83,41.751 +40587,271.03,44.425 +40588,270.34,46.927 +40589,271.63,38.887 +40590,270.6,41.766 +40591,269.74,44.434 +40592,269.01,46.932 +40593,270.45,38.91 +40594,269.36,41.782 +40595,268.46,44.444 +40596,267.68,46.935 +40597,269.27,38.936 +40598,268.13,41.799 +40599,267.17,44.452 +40600,266.35,46.937 +40601,268.09,38.963 +40602,266.89,41.816 +40603,265.89,44.461 +40604,265.02,46.936 +40605,266.91,38.994 +40606,265.66,41.834 +40607,264.6,44.468 +40608,263.69,46.934 +40609,265.73,39.026 +40610,264.42,41.853 +40611,263.32,44.475 +40612,262.36,46.93 +40613,264.55,39.061 +40614,263.18,41.873 +40615,262.03,44.481 +40616,261.03,46.925 +40617,263.36,39.098 +40618,261.95,41.893 +40619,260.75,44.487 +40620,259.71,46.917 +40621,262.17,39.137 +40622,260.71,41.915 +40623,259.46,44.493 +40624,258.38,46.908 +40625,260.99,39.179 +40626,259.47,41.937 +40627,258.18,44.497 +40628,257.05,46.897 +40629,259.8,39.222 +40630,258.23,41.959 +40631,256.9,44.501 +40632,255.73,46.885 +40633,258.61,39.268 +40634,256.99,41.983 +40635,255.61,44.505 +40636,254.4,46.87 +40637,257.41,39.316 +40638,255.76,42.007 +40639,254.33,44.508 +40640,253.08,46.854 +40641,256.22,39.366 +40642,254.52,42.032 +40643,253.05,44.511 +40644,251.76,46.837 +40645,255.03,39.419 +40646,253.28,42.057 +40647,251.77,44.513 +40648,250.43,46.817 +40649,253.83,39.473 +40650,252.04,42.084 +40651,250.48,44.514 +40652,249.11,46.796 +40653,252.63,39.53 +40654,250.79,42.111 +40655,249.2,44.515 +40656,247.79,46.774 +40657,251.43,39.588 +40658,249.55,42.139 +40659,247.92,44.516 +40660,246.47,46.749 +40661,250.22,39.649 +40662,248.31,42.167 +40663,246.64,44.516 +40664,245.16,46.724 +40665,249.02,39.711 +40666,247.07,42.196 +40667,245.36,44.515 +40668,243.84,46.696 +40669,247.81,39.776 +40670,245.82,42.226 +40671,244.08,44.514 +40672,242.52,46.667 +40673,246.61,39.842 +40674,244.58,42.256 +40675,242.8,44.512 +40676,241.21,46.637 +40677,245.39,39.91 +40678,243.34,42.288 +40679,241.52,44.51 +40680,239.9,46.605 +40681,244.18,39.981 +40682,242.09,42.319 +40683,240.24,44.508 +40684,238.58,46.571 +40685,242.97,40.052 +40686,240.84,42.352 +40687,238.96,44.505 +40688,237.27,46.536 +40689,241.75,40.126 +40690,239.6,42.385 +40691,237.69,44.502 +40692,235.96,46.499 +40693,240.53,40.201 +40694,238.35,42.418 +40695,236.41,44.498 +40696,234.65,46.461 +40697,239.31,40.278 +40698,237.1,42.452 +40699,235.13,44.494 +40700,233.35,46.422 +40701,238.09,40.357 +40702,235.85,42.487 +40703,233.86,44.489 +40704,232.04,46.381 +40705,236.86,40.437 +40706,234.6,42.523 +40707,232.58,44.484 +40708,230.74,46.339 +40709,235.64,40.519 +40710,233.35,42.559 +40711,231.3,44.478 +40712,229.43,46.296 +40713,234.41,40.602 +40714,232.1,42.595 +40715,230.03,44.472 +40716,228.13,46.251 +40717,233.18,40.687 +40718,230.85,42.632 +40719,228.75,44.466 +40720,226.83,46.205 +40721,231.94,40.773 +40722,229.6,42.67 +40723,227.48,44.46 +40724,225.53,46.158 +40725,230.71,40.86 +40726,228.35,42.708 +40727,226.21,44.453 +40728,224.23,46.109 +40729,229.47,40.949 +40730,227.1,42.746 +40731,224.93,44.445 +40732,222.94,46.059 +40733,228.23,41.039 +40734,225.84,42.785 +40735,223.66,44.437 +40736,221.64,46.008 +40737,226.99,41.13 +40738,224.59,42.825 +40739,222.39,44.429 +40740,220.35,45.956 +40741,225.74,41.223 +40742,223.33,42.865 +40743,221.12,44.421 +40744,219.06,45.903 +40745,224.5,41.316 +40746,222.07,42.905 +40747,219.84,44.412 +40748,217.77,45.849 +40749,223.25,41.411 +40750,220.82,42.946 +40751,218.57,44.403 +40752,216.48,45.793 +40753,222,41.507 +40754,219.56,42.987 +40755,217.3,44.394 +40756,215.2,45.737 +40757,220.74,41.604 +40758,218.3,43.029 +40759,216.03,44.385 +40760,213.91,45.68 +40761,219.49,41.701 +40762,217.04,43.071 +40763,214.77,44.375 +40764,212.63,45.621 +40765,218.23,41.8 +40766,215.78,43.113 +40767,213.5,44.365 +40768,211.35,45.562 +40769,216.97,41.899 +40770,214.52,43.156 +40771,212.23,44.355 +40772,210.07,45.502 +40773,215.71,41.999 +40774,213.26,43.199 +40775,210.96,44.344 +40776,208.79,45.441 +40777,214.44,42.1 +40778,212,43.242 +40779,209.7,44.334 +40780,207.52,45.379 +40781,213.18,42.202 +40782,210.73,43.286 +40783,208.43,44.323 +40784,206.24,45.316 +40785,211.91,42.304 +40786,209.47,43.33 +40787,207.16,44.312 +40788,204.97,45.253 +40789,210.64,42.407 +40790,208.21,43.374 +40791,205.9,44.3 +40792,203.7,45.189 +40793,209.37,42.51 +40794,206.94,43.419 +40795,204.63,44.289 +40796,202.43,45.124 +40797,208.09,42.614 +40798,205.68,43.464 +40799,203.37,44.278 +40800,201.16,45.059 +40801,206.81,42.719 +40802,204.41,43.509 +40803,202.11,44.266 +40804,199.9,44.993 +40805,205.54,42.823 +40806,203.14,43.554 +40807,200.85,44.254 +40808,198.64,44.926 +40809,204.25,42.928 +40810,201.87,43.599 +40811,199.58,44.242 +40812,197.38,44.859 +40813,202.97,43.034 +40814,200.6,43.645 +40815,198.32,44.231 +40816,196.12,44.792 +40817,201.69,43.14 +40818,199.33,43.691 +40819,197.06,44.219 +40820,194.86,44.724 +40821,200.4,43.245 +40822,198.06,43.737 +40823,195.8,44.207 +40824,193.6,44.656 +40825,199.11,43.351 +40826,196.79,43.783 +40827,194.54,44.194 +40828,192.35,44.587 +40829,197.82,43.458 +40830,195.52,43.829 +40831,193.28,44.182 +40832,191.1,44.518 +40833,196.53,43.564 +40834,194.25,43.876 +40835,192.02,44.17 +40836,189.85,44.449 +40837,195.23,43.67 +40838,192.98,43.922 +40839,190.77,44.158 +40840,188.6,44.379 +40841,193.94,43.776 +40842,191.7,43.969 +40843,189.51,44.146 +40844,187.35,44.309 +40845,192.64,43.882 +40846,190.43,44.015 +40847,188.25,44.134 +40848,186.11,44.24 +40849,191.34,43.988 +40850,189.15,44.062 +40851,187,44.122 +40852,184.87,44.17 +40853,190.04,44.094 +40854,187.88,44.109 +40855,185.74,44.11 +40856,183.63,44.1 +40857,188.73,44.2 +40858,186.6,44.155 +40859,184.48,44.098 +40860,182.39,44.03 +40861,187.43,44.305 +40862,185.32,44.202 +40863,183.23,44.087 +40864,181.15,43.96 +40865,186.12,44.41 +40866,184.04,44.249 +40867,181.98,44.075 +40868,179.92,43.89 +40869,184.81,44.515 +40870,182.76,44.295 +40871,180.72,44.063 +40872,178.69,43.82 +40873,183.5,44.619 +40874,181.49,44.342 +40875,179.47,44.052 +40876,177.46,43.75 +40877,182.19,44.723 +40878,180.21,44.389 +40879,178.22,44.041 +40880,176.23,43.681 +40881,180.88,44.827 +40882,178.92,44.435 +40883,176.97,44.03 +40884,175,43.612 +40885,179.56,44.93 +40886,177.64,44.481 +40887,175.71,44.019 +40888,173.77,43.543 +40889,178.25,45.032 +40890,176.36,44.528 +40891,174.46,44.008 +40892,172.55,43.475 +40893,176.93,45.134 +40894,175.08,44.574 +40895,173.21,43.998 +40896,171.33,43.406 +40897,175.61,45.235 +40898,173.8,44.62 +40899,171.96,43.988 +40900,170.11,43.339 +40901,174.29,45.336 +40902,172.51,44.666 +40903,170.71,43.978 +40904,168.89,43.272 +40905,172.97,45.436 +40906,171.23,44.712 +40907,169.46,43.968 +40908,167.68,43.205 +40909,171.65,45.535 +40910,169.94,44.757 +40911,168.22,43.958 +40912,166.46,43.139 +40913,170.32,45.633 +40914,168.66,44.803 +40915,166.97,43.949 +40916,165.25,43.073 +40917,169,45.731 +40918,167.37,44.848 +40919,165.72,43.94 +40920,164.04,43.008 +40921,167.67,45.827 +40922,166.09,44.893 +40923,164.47,43.932 +40924,162.83,42.944 +40925,166.34,45.923 +40926,164.8,44.937 +40927,163.23,43.924 +40928,161.62,42.881 +40929,165.01,46.018 +40930,163.51,44.982 +40931,161.98,43.916 +40932,160.42,42.818 +40933,163.68,46.112 +40934,162.22,45.026 +40935,160.74,43.908 +40936,159.21,42.757 +40937,162.35,46.205 +40938,160.93,45.07 +40939,159.49,43.901 +40940,158.01,42.696 +40941,161.02,46.297 +40942,159.65,45.114 +40943,158.25,43.894 +40944,156.81,42.636 +40945,159.68,46.388 +40946,158.36,45.157 +40947,157,43.888 +40948,155.61,42.577 +40949,158.35,46.477 +40950,157.07,45.2 +40951,155.76,43.882 +40952,154.41,42.519 +40953,157.01,46.566 +40954,155.78,45.243 +40955,154.51,43.876 +40956,153.22,42.462 +40957,155.67,46.653 +40958,154.49,45.286 +40959,153.27,43.871 +40960,152.02,42.406 +40961,154.34,46.74 +40962,153.19,45.328 +40963,152.03,43.866 +40964,150.83,42.352 +40965,153,46.825 +40966,151.9,45.37 +40967,150.78,43.862 +40968,149.63,42.298 +40969,151.66,46.909 +40970,150.61,45.411 +40971,149.54,43.858 +40972,148.44,42.246 +40973,150.32,46.991 +40974,149.32,45.452 +40975,148.3,43.855 +40976,147.25,42.195 +40977,148.98,47.073 +40978,148.03,45.493 +40979,147.06,43.852 +40980,146.07,42.145 +40981,147.64,47.153 +40982,146.73,45.533 +40983,145.81,43.85 +40984,144.88,42.097 +40985,146.29,47.232 +40986,145.44,45.573 +40987,144.57,43.848 +40988,143.69,42.05 +40989,144.95,47.309 +40990,144.15,45.613 +40991,143.33,43.847 +40992,142.51,42.005 +40993,143.61,47.385 +40994,142.85,45.652 +40995,142.09,43.846 +40996,141.32,41.961 +40997,142.26,47.459 +40998,141.56,45.69 +40999,140.85,43.846 +41000,140.14,41.918 +41001,140.92,47.533 +41002,140.26,45.729 +41003,139.61,43.846 +41004,138.96,41.877 +41005,139.57,47.604 +41006,138.97,45.766 +41007,138.37,43.847 +41008,137.77,41.838 +41009,138.23,47.675 +41010,137.67,45.804 +41011,137.13,43.849 +41012,136.59,41.8 +41013,136.88,47.743 +41014,136.38,45.84 +41015,135.89,43.851 +41016,135.41,41.764 +41017,135.54,47.811 +41018,135.08,45.877 +41019,134.65,43.854 +41020,134.23,41.729 +41021,134.19,47.876 +41022,133.79,45.913 +41023,133.41,43.857 +41024,133.06,41.697 +41025,132.84,47.94 +41026,132.49,45.948 +41027,132.16,43.861 +41028,131.88,41.666 +41029,131.5,48.003 +41030,131.19,45.983 +41031,130.92,43.866 +41032,130.7,41.636 +41033,130.15,48.064 +41034,129.9,46.018 +41035,129.68,43.871 +41036,129.52,41.609 +41037,128.8,48.124 +41038,128.6,46.051 +41039,128.44,43.877 +41040,128.35,41.583 +41041,127.45,48.181 +41042,127.3,46.085 +41043,127.2,43.883 +41044,127.17,41.559 +41045,126.1,48.238 +41046,126.01,46.118 +41047,125.96,43.89 +41048,125.99,41.538 +41049,124.76,48.292 +41050,124.71,46.15 +41051,124.72,43.898 +41052,124.82,41.518 +41053,123.41,48.345 +41054,123.41,46.182 +41055,123.48,43.906 +41056,123.64,41.5 +41057,122.06,48.397 +41058,122.12,46.213 +41059,122.24,43.915 +41060,122.47,41.484 +41061,120.71,48.446 +41062,120.82,46.244 +41063,121,43.925 +41064,121.29,41.469 +41065,119.36,48.494 +41066,119.52,46.274 +41067,119.76,43.936 +41068,120.11,41.457 +41069,118.01,48.541 +41070,118.22,46.304 +41071,118.52,43.947 +41072,118.94,41.447 +41073,116.67,48.585 +41074,116.93,46.333 +41075,117.28,43.959 +41076,117.76,41.439 +41077,115.32,48.628 +41078,115.63,46.362 +41079,116.04,43.971 +41080,116.58,41.433 +41081,113.97,48.669 +41082,114.33,46.39 +41083,114.8,43.984 +41084,115.41,41.429 +41085,112.62,48.709 +41086,113.03,46.417 +41087,113.56,43.998 +41088,114.23,41.428 +41089,111.27,48.747 +41090,111.74,46.444 +41091,112.32,44.013 +41092,113.05,41.428 +41093,109.93,48.783 +41094,110.44,46.471 +41095,111.08,44.028 +41096,111.87,41.43 +41097,108.58,48.817 +41098,109.14,46.497 +41099,109.83,44.044 +41100,110.7,41.435 +41101,107.23,48.85 +41102,107.85,46.522 +41103,108.59,44.061 +41104,109.52,41.441 +41105,105.89,48.88 +41106,106.55,46.546 +41107,107.35,44.078 +41108,108.34,41.45 +41109,104.54,48.91 +41110,105.25,46.571 +41111,106.11,44.096 +41112,107.15,41.461 +41113,103.2,48.937 +41114,103.95,46.594 +41115,104.86,44.115 +41116,105.97,41.474 +41117,101.85,48.963 +41118,102.66,46.617 +41119,103.62,44.135 +41120,104.79,41.489 +41121,100.51,48.986 +41122,101.36,46.639 +41123,102.38,44.155 +41124,103.6,41.507 +41125,99.163,49.009 +41126,100.07,46.661 +41127,101.13,44.176 +41128,102.42,41.526 +41129,97.819,49.029 +41130,98.769,46.682 +41131,99.888,44.198 +41132,101.23,41.548 +41133,96.477,49.048 +41134,97.473,46.703 +41135,98.643,44.22 +41136,100.05,41.572 +41137,95.135,49.065 +41138,96.177,46.723 +41139,97.398,44.243 +41140,98.858,41.598 +41141,93.793,49.08 +41142,94.881,46.743 +41143,96.152,44.267 +41144,97.668,41.626 +41145,92.453,49.094 +41146,93.586,46.762 +41147,94.906,44.292 +41148,96.477,41.656 +41149,91.113,49.106 +41150,92.291,46.78 +41151,93.659,44.317 +41152,95.284,41.688 +41153,89.774,49.116 +41154,90.996,46.798 +41155,92.412,44.343 +41156,94.09,41.723 +41157,88.436,49.124 +41158,89.701,46.815 +41159,91.165,44.37 +41160,92.895,41.76 +41161,87.098,49.131 +41162,88.406,46.832 +41163,89.917,44.397 +41164,91.698,41.798 +41165,85.762,49.136 +41166,87.112,46.848 +41167,88.668,44.425 +41168,90.499,41.839 +41169,84.426,49.14 +41170,85.818,46.864 +41171,87.419,44.454 +41172,89.298,41.882 +41173,83.091,49.141 +41174,84.525,46.879 +41175,86.169,44.483 +41176,88.096,41.927 +41177,81.758,49.142 +41178,83.231,46.894 +41179,84.919,44.513 +41180,86.892,41.974 +41181,80.425,49.14 +41182,81.938,46.908 +41183,83.668,44.544 +41184,85.687,42.023 +41185,79.093,49.137 +41186,80.646,46.921 +41187,82.417,44.575 +41188,84.479,42.074 +41189,77.763,49.132 +41190,79.354,46.934 +41191,81.165,44.607 +41192,83.27,42.127 +41193,76.433,49.126 +41194,78.062,46.946 +41195,79.912,44.64 +41196,82.059,42.182 +41197,75.105,49.118 +41198,76.77,46.958 +41199,78.659,44.674 +41200,80.845,42.239 +41201,73.777,49.108 +41202,75.479,46.97 +41203,77.405,44.708 +41204,79.63,42.297 +41205,72.451,49.097 +41206,74.188,46.981 +41207,76.151,44.742 +41208,78.413,42.358 +41209,71.126,49.085 +41210,72.898,46.991 +41211,74.896,44.777 +41212,77.193,42.421 +41213,69.803,49.071 +41214,71.608,47.001 +41215,73.64,44.813 +41216,75.972,42.485 +41217,68.48,49.055 +41218,70.318,47.01 +41219,72.384,44.85 +41220,74.748,42.551 +41221,67.159,49.038 +41222,69.029,47.019 +41223,71.127,44.887 +41224,73.523,42.619 +41225,65.839,49.02 +41226,67.74,47.028 +41227,69.869,44.924 +41228,72.295,42.689 +41229,64.521,49 +41230,66.452,47.036 +41231,68.61,44.963 +41232,71.065,42.76 +41233,63.204,48.978 +41234,65.164,47.043 +41235,67.351,45.001 +41236,69.832,42.833 +41237,61.888,48.955 +41238,63.877,47.051 +41239,66.091,45.041 +41240,68.598,42.908 +41241,60.573,48.931 +41242,62.59,47.057 +41243,64.83,45.081 +41244,67.361,42.984 +41245,59.261,48.906 +41246,61.303,47.063 +41247,63.569,45.121 +41248,66.122,43.062 +41249,57.949,48.879 +41250,60.017,47.069 +41251,62.307,45.162 +41252,64.881,43.141 +41253,56.639,48.851 +41254,58.732,47.075 +41255,61.044,45.204 +41256,63.637,43.222 +41257,55.331,48.821 +41258,57.447,47.08 +41259,59.781,45.246 +41260,62.391,43.304 +41261,54.024,48.791 +41262,56.163,47.084 +41263,58.516,45.288 +41264,61.143,43.388 +41265,52.719,48.759 +41266,54.879,47.088 +41267,57.251,45.331 +41268,59.893,43.473 +41269,51.415,48.726 +41270,53.595,47.092 +41271,55.985,45.375 +41272,58.64,43.56 +41273,50.113,48.691 +41274,52.312,47.096 +41275,54.719,45.419 +41276,57.385,43.647 +41277,48.812,48.656 +41278,51.03,47.099 +41279,53.451,45.463 +41280,56.128,43.736 +41281,47.513,48.619 +41282,49.748,47.101 +41283,52.183,45.508 +41284,54.868,43.827 +41285,46.216,48.581 +41286,48.467,47.104 +41287,50.914,45.553 +41288,53.606,43.918 +41289,44.921,48.543 +41290,47.186,47.106 +41291,49.645,45.599 +41292,52.342,44.011 +41293,43.627,48.503 +41294,45.906,47.108 +41295,48.374,45.645 +41296,51.075,44.104 +41297,42.335,48.462 +41298,44.626,47.109 +41299,47.103,45.691 +41300,49.806,44.199 +41301,41.044,48.42 +41302,43.347,47.11 +41303,45.831,45.738 +41304,48.535,44.295 +41305,39.756,48.377 +41306,42.069,47.111 +41307,44.558,45.785 +41308,47.261,44.392 +41309,38.469,48.334 +41310,40.791,47.112 +41311,43.284,45.833 +41312,45.986,44.489 +41313,37.184,48.289 +41314,39.514,47.112 +41315,42.01,45.881 +41316,44.708,44.588 +41317,35.9,48.244 +41318,38.237,47.112 +41319,40.735,45.929 +41320,43.427,44.687 +41321,34.619,48.197 +41322,36.961,47.112 +41323,39.459,45.978 +41324,42.145,44.787 +41325,33.339,48.15 +41326,35.685,47.112 +41327,38.182,46.026 +41328,40.86,44.888 +41329,32.061,48.103 +41330,34.41,47.111 +41331,36.905,46.075 +41332,39.573,44.989 +41333,30.785,48.054 +41334,33.135,47.111 +41335,35.626,46.125 +41336,38.284,45.092 +41337,29.511,48.005 +41338,31.861,47.11 +41339,34.347,46.174 +41340,36.993,45.194 +41341,28.239,47.955 +41342,30.588,47.109 +41343,33.068,46.224 +41344,35.7,45.298 +41345,26.968,47.905 +41346,29.315,47.107 +41347,31.787,46.274 +41348,34.404,45.402 +41349,25.7,47.854 +41350,28.043,47.106 +41351,30.506,46.325 +41352,33.107,45.506 +41353,24.433,47.802 +41354,26.771,47.104 +41355,29.224,46.375 +41356,31.807,45.611 +41357,23.168,47.75 +41358,25.5,47.103 +41359,27.941,46.426 +41360,30.506,45.716 +41361,21.905,47.698 +41362,24.23,47.101 +41363,26.657,46.477 +41364,29.202,45.821 +41365,20.644,47.645 +41366,22.96,47.099 +41367,25.373,46.527 +41368,27.896,45.927 +41369,19.385,47.591 +41370,21.69,47.097 +41371,24.088,46.579 +41372,26.589,46.033 +41373,18.128,47.538 +41374,20.422,47.095 +41375,22.802,46.63 +41376,25.279,46.139 +41377,16.872,47.484 +41378,19.153,47.093 +41379,21.515,46.681 +41380,23.968,46.246 +41381,15.619,47.429 +41382,17.886,47.091 +41383,20.228,46.733 +41384,22.655,46.352 +41385,14.367,47.375 +41386,16.619,47.089 +41387,18.94,46.784 +41388,21.339,46.459 +41389,13.117,47.32 +41390,15.352,47.087 +41391,17.652,46.836 +41392,20.022,46.565 +41393,11.869,47.265 +41394,14.086,47.085 +41395,16.362,46.887 +41396,18.704,46.672 +41397,10.623,47.21 +41398,12.821,47.082 +41399,15.072,46.939 +41400,17.383,46.778 +41401,9.3792,47.155 +41402,11.556,47.08 +41403,13.781,46.991 +41404,16.061,46.885 +41405,8.137,47.1 +41406,10.291,47.078 +41407,12.49,47.042 +41408,14.737,46.991 +41409,6.8966,47.045 +41410,9.0275,47.076 +41411,11.198,47.094 +41412,13.411,47.097 +41413,5.658,46.99 +41414,7.7641,47.074 +41415,9.905,47.146 +41416,12.084,47.203 +41417,4.4213,46.935 +41418,6.5013,47.072 +41419,8.6116,47.197 +41420,10.755,47.308 +41421,3.1864,46.88 +41422,5.239,47.071 +41423,7.3175,47.249 +41424,9.4243,47.414 +41425,1.9533,46.825 +41426,3.9772,47.069 +41427,6.0229,47.3 +41428,8.0923,47.519 +41429,0.72197,46.771 +41430,2.7159,47.067 +41431,4.7275,47.352 +41432,6.7588,47.623 +41433,359.49,46.717 +41434,1.455,47.066 +41435,3.4316,47.403 +41436,5.4239,47.727 +41437,358.26,46.663 +41438,0.19465,47.065 +41439,2.1351,47.455 +41440,4.0874,47.831 +41441,357.04,46.609 +41442,358.93,47.064 +41443,0.838,47.506 +41444,2.7496,47.934 +41445,355.81,46.556 +41446,357.68,47.063 +41447,359.54,47.557 +41448,1.4105,48.036 +41449,354.59,46.503 +41450,356.42,47.062 +41451,358.24,47.608 +41452,0.069989,48.138 +41453,353.37,46.451 +41454,355.16,47.062 +41455,356.94,47.658 +41456,358.73,48.24 +41457,352.15,46.399 +41458,353.9,47.061 +41459,355.64,47.709 +41460,357.39,48.34 +41461,350.93,46.347 +41462,352.64,47.061 +41463,354.34,47.759 +41464,356.04,48.44 +41465,349.72,46.297 +41466,351.38,47.061 +41467,353.04,47.809 +41468,354.7,48.54 +41469,348.5,46.246 +41470,350.13,47.062 +41471,351.74,47.859 +41472,353.35,48.638 +41473,347.29,46.197 +41474,348.87,47.062 +41475,350.44,47.909 +41476,352,48.736 +41477,346.08,46.148 +41478,347.62,47.063 +41479,349.14,47.959 +41480,350.65,48.833 +41481,344.87,46.1 +41482,346.36,47.065 +41483,347.84,48.008 +41484,349.3,48.929 +41485,343.66,46.053 +41486,345.1,47.066 +41487,346.53,48.057 +41488,347.95,49.024 +41489,342.45,46.006 +41490,343.85,47.068 +41491,345.23,48.106 +41492,346.6,49.118 +41493,341.25,45.96 +41494,342.59,47.07 +41495,343.93,48.154 +41496,345.25,49.211 +41497,340.04,45.916 +41498,341.34,47.073 +41499,342.62,48.202 +41500,343.89,49.304 +41501,338.84,45.872 +41502,340.09,47.076 +41503,341.32,48.25 +41504,342.54,49.395 +41505,337.64,45.829 +41506,338.83,47.079 +41507,340.01,48.298 +41508,341.18,49.485 +41509,336.44,45.787 +41510,337.58,47.083 +41511,338.71,48.345 +41512,339.83,49.574 +41513,335.24,45.746 +41514,336.33,47.087 +41515,337.4,48.392 +41516,338.47,49.662 +41517,334.04,45.706 +41518,335.07,47.091 +41519,336.1,48.438 +41520,337.11,49.749 +41521,332.84,45.668 +41522,333.82,47.096 +41523,334.79,48.484 +41524,335.76,49.835 +41525,331.65,45.63 +41526,332.57,47.101 +41527,333.48,48.53 +41528,334.4,49.919 +41529,330.45,45.594 +41530,331.31,47.107 +41531,332.18,48.576 +41532,333.04,50.003 +41533,329.26,45.559 +41534,330.06,47.113 +41535,330.87,48.621 +41536,331.68,50.085 +41537,328.06,45.525 +41538,328.81,47.119 +41539,329.56,48.666 +41540,330.32,50.165 +41541,326.87,45.492 +41542,327.56,47.126 +41543,328.25,48.71 +41544,328.96,50.245 +41545,325.68,45.461 +41546,326.31,47.134 +41547,326.94,48.754 +41548,327.59,50.323 +41549,324.49,45.431 +41550,325.05,47.142 +41551,325.64,48.797 +41552,326.23,50.4 +41553,323.3,45.402 +41554,323.8,47.15 +41555,324.33,48.84 +41556,324.87,50.476 +41557,322.11,45.375 +41558,322.55,47.159 +41559,323.02,48.883 +41560,323.51,50.55 +41561,320.92,45.349 +41562,321.3,47.169 +41563,321.71,48.925 +41564,322.14,50.623 +41565,319.73,45.325 +41566,320.05,47.179 +41567,320.4,48.967 +41568,320.78,50.694 +41569,318.55,45.302 +41570,318.8,47.189 +41571,319.09,49.008 +41572,319.42,50.764 +41573,317.36,45.281 +41574,317.55,47.2 +41575,317.78,49.049 +41576,318.05,50.833 +41577,316.17,45.261 +41578,316.3,47.212 +41579,316.47,49.089 +41580,316.69,50.9 +41581,314.98,45.243 +41582,315.04,47.224 +41583,315.16,49.129 +41584,315.33,50.966 +41585,313.8,45.227 +41586,313.79,47.236 +41587,313.85,49.168 +41588,313.96,51.03 +41589,312.61,45.212 +41590,312.54,47.25 +41591,312.54,49.207 +41592,312.6,51.092 +41593,311.42,45.199 +41594,311.29,47.263 +41595,311.23,49.245 +41596,311.23,51.153 +41597,310.24,45.187 +41598,310.04,47.278 +41599,309.92,49.283 +41600,309.87,51.213 +41601,309.05,45.177 +41602,308.79,47.292 +41603,308.61,49.321 +41604,308.51,51.271 +41605,307.87,45.169 +41606,307.54,47.308 +41607,307.3,49.358 +41608,307.14,51.328 +41609,306.68,45.163 +41610,306.28,47.324 +41611,305.99,49.394 +41612,305.78,51.383 +41613,305.49,45.158 +41614,305.03,47.341 +41615,304.68,49.43 +41616,304.41,51.436 +41617,304.31,45.155 +41618,303.78,47.358 +41619,303.37,49.465 +41620,303.05,51.488 +41621,303.12,45.154 +41622,302.53,47.376 +41623,302.06,49.5 +41624,301.69,51.538 +41625,301.93,45.155 +41626,301.28,47.394 +41627,300.75,49.534 +41628,300.32,51.587 +41629,300.74,45.158 +41630,300.02,47.413 +41631,299.44,49.568 +41632,298.96,51.634 +41633,299.56,45.162 +41634,298.77,47.433 +41635,298.13,49.601 +41636,297.6,51.679 +41637,298.37,45.168 +41638,297.52,47.453 +41639,296.82,49.634 +41640,296.24,51.723 +41641,297.18,45.176 +41642,296.26,47.474 +41643,295.51,49.666 +41644,294.88,51.765 +41645,295.99,45.186 +41646,295.01,47.495 +41647,294.2,49.697 +41648,293.51,51.805 +41649,294.8,45.198 +41650,293.76,47.517 +41651,292.89,49.728 +41652,292.15,51.844 +41653,293.6,45.211 +41654,292.5,47.54 +41655,291.58,49.759 +41656,290.79,51.882 +41657,292.41,45.227 +41658,291.25,47.563 +41659,290.27,49.789 +41660,289.43,51.917 +41661,291.22,45.244 +41662,289.99,47.587 +41663,288.96,49.818 +41664,288.08,51.951 +41665,290.02,45.264 +41666,288.74,47.612 +41667,287.65,49.847 +41668,286.72,51.984 +41669,288.83,45.285 +41670,287.48,47.637 +41671,286.34,49.875 +41672,285.36,52.014 +41673,287.63,45.308 +41674,286.22,47.663 +41675,285.03,49.903 +41676,284,52.043 +41677,286.43,45.333 +41678,284.97,47.689 +41679,283.72,49.93 +41680,282.65,52.071 +41681,285.23,45.36 +41682,283.71,47.716 +41683,282.41,49.957 +41684,281.29,52.097 +41685,284.03,45.389 +41686,282.45,47.744 +41687,281.11,49.983 +41688,279.93,52.121 +41689,282.83,45.419 +41690,281.2,47.772 +41691,279.8,50.008 +41692,278.58,52.144 +41693,281.63,45.452 +41694,279.94,47.801 +41695,278.49,50.033 +41696,277.23,52.165 +41697,280.42,45.486 +41698,278.68,47.831 +41699,277.18,50.058 +41700,275.87,52.184 +41701,279.22,45.523 +41702,277.42,47.861 +41703,275.87,50.082 +41704,274.52,52.202 +41705,278.01,45.561 +41706,276.16,47.892 +41707,274.57,50.105 +41708,273.17,52.218 +41709,276.8,45.601 +41710,274.9,47.923 +41711,273.26,50.128 +41712,271.82,52.232 +41713,275.59,45.643 +41714,273.64,47.955 +41715,271.95,50.15 +41716,270.47,52.245 +41717,274.38,45.687 +41718,272.38,47.988 +41719,270.65,50.172 +41720,269.13,52.257 +41721,273.16,45.732 +41722,271.12,48.021 +41723,269.34,50.193 +41724,267.78,52.267 +41725,271.94,45.78 +41726,269.85,48.055 +41727,268.04,50.214 +41728,266.43,52.275 +41729,270.73,45.829 +41730,268.59,48.089 +41731,266.73,50.234 +41732,265.09,52.282 +41733,269.51,45.88 +41734,267.33,48.124 +41735,265.43,50.254 +41736,263.75,52.287 +41737,268.29,45.932 +41738,266.06,48.159 +41739,264.12,50.273 +41740,262.4,52.291 +41741,267.06,45.987 +41742,264.8,48.195 +41743,262.82,50.292 +41744,261.06,52.293 +41745,265.84,46.043 +41746,263.53,48.232 +41747,261.52,50.31 +41748,259.72,52.294 +41749,264.61,46.101 +41750,262.27,48.269 +41751,260.21,50.328 +41752,258.38,52.293 +41753,263.38,46.16 +41754,261,48.307 +41755,258.91,50.345 +41756,257.05,52.291 +41757,262.15,46.222 +41758,259.73,48.345 +41759,257.61,50.362 +41760,255.71,52.287 +41761,260.91,46.284 +41762,258.46,48.384 +41763,256.31,50.378 +41764,254.38,52.282 +41765,259.68,46.349 +41766,257.19,48.423 +41767,255,50.394 +41768,253.04,52.275 +41769,258.44,46.415 +41770,255.93,48.463 +41771,253.7,50.409 +41772,251.71,52.267 +41773,257.2,46.483 +41774,254.66,48.504 +41775,252.4,50.424 +41776,250.38,52.258 +41777,255.96,46.552 +41778,253.38,48.545 +41779,251.1,50.438 +41780,249.05,52.247 +41781,254.71,46.622 +41782,252.11,48.586 +41783,249.8,50.452 +41784,247.72,52.235 +41785,253.46,46.695 +41786,250.84,48.628 +41787,248.5,50.466 +41788,246.4,52.222 +41789,252.22,46.768 +41790,249.57,48.67 +41791,247.21,50.479 +41792,245.07,52.207 +41793,250.96,46.843 +41794,248.29,48.713 +41795,245.91,50.492 +41796,243.75,52.192 +41797,249.71,46.92 +41798,247.02,48.756 +41799,244.61,50.504 +41800,242.43,52.174 +41801,248.45,46.998 +41802,245.74,48.8 +41803,243.31,50.516 +41804,241.11,52.156 +41805,247.2,47.077 +41806,244.47,48.844 +41807,242.02,50.527 +41808,239.79,52.136 +41809,245.94,47.157 +41810,243.19,48.889 +41811,240.72,50.538 +41812,238.47,52.116 +41813,244.67,47.239 +41814,241.91,48.934 +41815,239.43,50.549 +41816,237.15,52.094 +41817,243.41,47.322 +41818,240.64,48.98 +41819,238.13,50.559 +41820,235.84,52.071 +41821,242.14,47.406 +41822,239.36,49.026 +41823,236.84,50.569 +41824,234.53,52.046 +41825,240.87,47.491 +41826,238.08,49.072 +41827,235.54,50.579 +41828,233.22,52.021 +41829,239.6,47.578 +41830,236.8,49.119 +41831,234.25,50.588 +41832,231.91,51.995 +41833,238.32,47.665 +41834,235.51,49.166 +41835,232.96,50.597 +41836,230.6,51.967 +41837,237.05,47.754 +41838,234.23,49.213 +41839,231.66,50.605 +41840,229.3,51.939 +41841,235.77,47.843 +41842,232.95,49.261 +41843,230.37,50.614 +41844,227.99,51.91 +41845,234.49,47.934 +41846,231.67,49.309 +41847,229.08,50.622 +41848,226.69,51.879 +41849,233.2,48.025 +41850,230.38,49.357 +41851,227.79,50.629 +41852,225.39,51.848 +41853,231.92,48.118 +41854,229.1,49.406 +41855,226.5,50.637 +41856,224.09,51.816 +41857,230.63,48.211 +41858,227.81,49.455 +41859,225.21,50.644 +41860,222.79,51.783 +41861,229.34,48.305 +41862,226.52,49.505 +41863,223.92,50.65 +41864,221.5,51.749 +41865,228.05,48.4 +41866,225.24,49.554 +41867,222.63,50.657 +41868,220.21,51.714 +41869,226.75,48.495 +41870,223.95,49.604 +41871,221.35,50.663 +41872,218.92,51.679 +41873,225.45,48.592 +41874,222.66,49.654 +41875,220.06,50.67 +41876,217.63,51.643 +41877,224.15,48.689 +41878,221.37,49.705 +41879,218.77,50.675 +41880,216.34,51.606 +41881,222.85,48.786 +41882,220.08,49.755 +41883,217.49,50.681 +41884,215.05,51.569 +41885,221.55,48.885 +41886,218.79,49.806 +41887,216.2,50.687 +41888,213.77,51.53 +41889,220.24,48.983 +41890,217.49,49.857 +41891,214.92,50.692 +41892,212.49,51.492 +41893,218.93,49.083 +41894,216.2,49.909 +41895,213.63,50.697 +41896,211.21,51.452 +41897,217.62,49.182 +41898,214.91,49.96 +41899,212.35,50.702 +41900,209.93,51.412 +41901,216.31,49.282 +41902,213.61,50.012 +41903,211.07,50.707 +41904,208.65,51.372 +41905,215,49.383 +41906,212.32,50.063 +41907,209.79,50.711 +41908,207.38,51.331 +41909,213.68,49.484 +41910,211.02,50.115 +41911,208.5,50.716 +41912,206.1,51.29 +41913,212.36,49.585 +41914,209.73,50.167 +41915,207.22,50.72 +41916,204.83,51.248 +41917,211.04,49.686 +41918,208.43,50.219 +41919,205.94,50.725 +41920,203.56,51.206 +41921,209.72,49.788 +41922,207.13,50.272 +41923,204.66,50.729 +41924,202.3,51.163 +41925,208.4,49.89 +41926,205.83,50.324 +41927,203.38,50.733 +41928,201.03,51.121 +41929,207.07,49.992 +41930,204.53,50.376 +41931,202.1,50.737 +41932,199.77,51.078 +41933,205.74,50.094 +41934,203.23,50.429 +41935,200.82,50.741 +41936,198.51,51.034 +41937,204.41,50.196 +41938,201.93,50.481 +41939,199.55,50.745 +41940,197.25,50.991 +41941,203.08,50.298 +41942,200.63,50.534 +41943,198.27,50.749 +41944,195.99,50.947 +41945,201.75,50.4 +41946,199.33,50.586 +41947,196.99,50.753 +41948,194.73,50.904 +41949,200.41,50.502 +41950,198.02,50.639 +41951,195.72,50.757 +41952,193.48,50.86 +41953,199.07,50.604 +41954,196.72,50.691 +41955,194.44,50.761 +41956,192.23,50.816 +41957,197.73,50.706 +41958,195.42,50.744 +41959,193.17,50.765 +41960,190.97,50.772 +41961,196.39,50.808 +41962,194.11,50.797 +41963,191.89,50.769 +41964,189.73,50.728 +41965,195.05,50.909 +41966,192.81,50.849 +41967,190.62,50.774 +41968,188.48,50.685 +41969,193.71,51.01 +41970,191.5,50.901 +41971,189.34,50.778 +41972,187.23,50.641 +41973,192.36,51.111 +41974,190.19,50.954 +41975,188.07,50.782 +41976,185.99,50.597 +41977,191.02,51.212 +41978,188.89,51.006 +41979,186.8,50.786 +41980,184.75,50.554 +41981,189.67,51.312 +41982,187.58,51.058 +41983,185.53,50.791 +41984,183.51,50.511 +41985,188.32,51.412 +41986,186.27,51.11 +41987,184.25,50.795 +41988,182.27,50.468 +41989,186.97,51.511 +41990,184.96,51.162 +41991,182.98,50.8 +41992,181.03,50.425 +41993,185.62,51.61 +41994,183.65,51.214 +41995,181.71,50.805 +41996,179.8,50.383 +41997,184.26,51.708 +41998,182.34,51.266 +41999,180.44,50.809 +42000,178.56,50.341 +42001,182.91,51.806 +42002,181.03,51.317 +42003,179.17,50.815 +42004,177.33,50.299 +42005,181.55,51.904 +42006,179.72,51.369 +42007,177.9,50.82 +42008,176.1,50.258 +42009,180.19,52 +42010,178.41,51.42 +42011,176.63,50.825 +42012,174.87,50.218 +42013,178.84,52.096 +42014,177.09,51.471 +42015,175.37,50.831 +42016,173.65,50.177 +42017,177.48,52.192 +42018,175.78,51.522 +42019,174.1,50.837 +42020,172.42,50.138 +42021,176.11,52.286 +42022,174.47,51.572 +42023,172.83,50.843 +42024,171.2,50.099 +42025,174.75,52.38 +42026,173.15,51.623 +42027,171.56,50.849 +42028,169.98,50.06 +42029,173.39,52.473 +42030,171.84,51.673 +42031,170.3,50.855 +42032,168.75,50.022 +42033,172.03,52.566 +42034,170.53,51.723 +42035,169.03,50.862 +42036,167.53,49.985 +42037,170.66,52.657 +42038,169.21,51.772 +42039,167.76,50.869 +42040,166.32,49.949 +42041,169.29,52.748 +42042,167.9,51.822 +42043,166.5,50.877 +42044,165.1,49.913 +42045,167.93,52.837 +42046,166.58,51.871 +42047,165.23,50.884 +42048,163.88,49.878 +42049,166.56,52.926 +42050,165.26,51.92 +42051,163.97,50.892 +42052,162.67,49.844 +42053,165.19,53.014 +42054,163.95,51.968 +42055,162.7,50.9 +42056,161.45,49.811 +42057,163.82,53.101 +42058,162.63,52.016 +42059,161.44,50.909 +42060,160.24,49.779 +42061,162.45,53.187 +42062,161.31,52.064 +42063,160.17,50.917 +42064,159.03,49.747 +42065,161.08,53.272 +42066,159.99,52.112 +42067,158.91,50.927 +42068,157.82,49.717 +42069,159.71,53.355 +42070,158.68,52.159 +42071,157.64,50.936 +42072,156.61,49.687 +42073,158.34,53.438 +42074,157.36,52.206 +42075,156.38,50.946 +42076,155.4,49.659 +42077,156.97,53.52 +42078,156.04,52.252 +42079,155.12,50.956 +42080,154.2,49.631 +42081,155.59,53.6 +42082,154.72,52.298 +42083,153.85,50.967 +42084,152.99,49.605 +42085,154.22,53.68 +42086,153.4,52.344 +42087,152.59,50.978 +42088,151.79,49.58 +42089,152.84,53.758 +42090,152.08,52.39 +42091,151.33,50.989 +42092,150.58,49.556 +42093,151.47,53.835 +42094,150.76,52.434 +42095,150.06,51.001 +42096,149.38,49.533 +42097,150.1,53.91 +42098,149.44,52.479 +42099,148.8,51.013 +42100,148.18,49.511 +42101,148.72,53.985 +42102,148.12,52.523 +42103,147.54,51.025 +42104,146.97,49.49 +42105,147.34,54.058 +42106,146.8,52.567 +42107,146.28,51.038 +42108,145.77,49.471 +42109,145.97,54.13 +42110,145.48,52.61 +42111,145.01,51.052 +42112,144.57,49.453 +42113,144.59,54.201 +42114,144.16,52.653 +42115,143.75,51.066 +42116,143.37,49.436 +42117,143.22,54.27 +42118,142.84,52.696 +42119,142.49,51.08 +42120,142.17,49.421 +42121,141.84,54.338 +42122,141.52,52.738 +42123,141.23,51.095 +42124,140.97,49.407 +42125,140.46,54.405 +42126,140.2,52.78 +42127,139.96,51.11 +42128,139.77,49.394 +42129,139.09,54.47 +42130,138.87,52.821 +42131,138.7,51.126 +42132,138.57,49.382 +42133,137.71,54.534 +42134,137.55,52.861 +42135,137.44,51.142 +42136,137.37,49.373 +42137,136.33,54.597 +42138,136.23,52.902 +42139,136.18,51.158 +42140,136.18,49.364 +42141,134.96,54.658 +42142,134.91,52.941 +42143,134.91,51.175 +42144,134.98,49.357 +42145,133.58,54.718 +42146,133.59,52.981 +42147,133.65,51.193 +42148,133.78,49.351 +42149,132.2,54.776 +42150,132.27,53.02 +42151,132.39,51.211 +42152,132.58,49.347 +42153,130.83,54.833 +42154,130.94,53.058 +42155,131.13,51.23 +42156,131.38,49.345 +42157,129.45,54.888 +42158,129.62,53.096 +42159,129.86,51.249 +42160,130.19,49.344 +42161,128.07,54.942 +42162,128.3,53.133 +42163,128.6,51.268 +42164,128.99,49.344 +42165,126.7,54.995 +42166,126.98,53.17 +42167,127.34,51.289 +42168,127.79,49.346 +42169,125.32,55.046 +42170,125.66,53.206 +42171,126.08,51.309 +42172,126.59,49.35 +42173,123.95,55.095 +42174,124.34,53.242 +42175,124.81,51.33 +42176,125.39,49.355 +42177,122.57,55.143 +42178,123.01,53.278 +42179,123.55,51.352 +42180,124.19,49.361 +42181,121.2,55.19 +42182,121.69,53.313 +42183,122.29,51.374 +42184,122.99,49.37 +42185,119.82,55.235 +42186,120.37,53.347 +42187,121.02,51.397 +42188,121.79,49.38 +42189,118.45,55.279 +42190,119.05,53.381 +42191,119.76,51.42 +42192,120.59,49.391 +42193,117.07,55.321 +42194,117.73,53.414 +42195,118.49,51.444 +42196,119.39,49.405 +42197,115.7,55.361 +42198,116.41,53.447 +42199,117.23,51.468 +42200,118.19,49.419 +42201,114.33,55.4 +42202,115.09,53.479 +42203,115.96,51.493 +42204,116.98,49.436 +42205,112.96,55.437 +42206,113.77,53.511 +42207,114.7,51.519 +42208,115.78,49.454 +42209,111.58,55.473 +42210,112.45,53.542 +42211,113.43,51.545 +42212,114.57,49.474 +42213,110.21,55.508 +42214,111.13,53.573 +42215,112.17,51.571 +42216,113.37,49.495 +42217,108.84,55.541 +42218,109.8,53.603 +42219,110.9,51.598 +42220,112.16,49.519 +42221,107.47,55.572 +42222,108.48,53.633 +42223,109.63,51.626 +42224,110.95,49.543 +42225,106.11,55.602 +42226,107.16,53.662 +42227,108.37,51.654 +42228,109.75,49.57 +42229,104.74,55.63 +42230,105.85,53.691 +42231,107.1,51.683 +42232,108.54,49.598 +42233,103.37,55.657 +42234,104.53,53.719 +42235,105.83,51.712 +42236,107.33,49.628 +42237,102.01,55.682 +42238,103.21,53.746 +42239,104.56,51.741 +42240,106.11,49.659 +42241,100.64,55.706 +42242,101.89,53.774 +42243,103.3,51.772 +42244,104.9,49.692 +42245,99.276,55.728 +42246,100.57,53.8 +42247,102.03,51.803 +42248,103.69,49.727 +42249,97.912,55.749 +42250,99.251,53.826 +42251,100.76,51.834 +42252,102.47,49.764 +42253,96.55,55.768 +42254,97.933,53.852 +42255,99.487,51.866 +42256,101.25,49.802 +42257,95.188,55.786 +42258,96.615,53.877 +42259,98.216,51.898 +42260,100.03,49.841 +42261,93.828,55.802 +42262,95.298,53.901 +42263,96.945,51.931 +42264,98.813,49.883 +42265,92.468,55.817 +42266,93.981,53.925 +42267,95.674,51.965 +42268,97.591,49.926 +42269,91.11,55.83 +42270,92.664,53.949 +42271,94.402,51.999 +42272,96.367,49.97 +42273,89.753,55.842 +42274,91.348,53.972 +42275,93.13,52.033 +42276,95.142,50.016 +42277,88.396,55.852 +42278,90.032,53.995 +42279,91.856,52.068 +42280,93.915,50.064 +42281,87.041,55.861 +42282,88.717,54.017 +42283,90.583,52.104 +42284,92.687,50.113 +42285,85.688,55.869 +42286,87.401,54.038 +42287,89.309,52.14 +42288,91.456,50.164 +42289,84.335,55.875 +42290,86.087,54.059 +42291,88.034,52.176 +42292,90.224,50.217 +42293,82.984,55.88 +42294,84.772,54.08 +42295,86.758,52.213 +42296,88.99,50.271 +42297,81.633,55.883 +42298,83.458,54.1 +42299,85.483,52.251 +42300,87.754,50.326 +42301,80.285,55.885 +42302,82.145,54.12 +42303,84.206,52.289 +42304,86.517,50.383 +42305,78.937,55.886 +42306,80.832,54.139 +42307,82.929,52.327 +42308,85.277,50.441 +42309,77.591,55.885 +42310,79.519,54.158 +42311,81.651,52.366 +42312,84.035,50.501 +42313,76.246,55.883 +42314,78.207,54.176 +42315,80.372,52.405 +42316,82.792,50.563 +42317,74.902,55.88 +42318,76.895,54.194 +42319,79.093,52.445 +42320,81.546,50.625 +42321,73.56,55.876 +42322,75.584,54.211 +42323,77.813,52.485 +42324,80.298,50.689 +42325,72.22,55.87 +42326,74.273,54.228 +42327,76.533,52.526 +42328,79.049,50.755 +42329,70.881,55.863 +42330,72.963,54.245 +42331,75.252,52.567 +42332,77.797,50.822 +42333,69.543,55.854 +42334,71.653,54.261 +42335,73.97,52.609 +42336,76.543,50.89 +42337,68.207,55.845 +42338,70.344,54.277 +42339,72.688,52.651 +42340,75.287,50.959 +42341,66.872,55.834 +42342,69.035,54.292 +42343,71.404,52.693 +42344,74.028,51.03 +42345,65.539,55.822 +42346,67.727,54.307 +42347,70.12,52.736 +42348,72.768,51.102 +42349,64.207,55.809 +42350,66.419,54.322 +42351,68.836,52.779 +42352,71.505,51.175 +42353,62.877,55.795 +42354,65.112,54.336 +42355,67.55,52.823 +42356,70.24,51.249 +42357,61.549,55.78 +42358,63.805,54.35 +42359,66.264,52.867 +42360,68.973,51.325 +42361,60.222,55.763 +42362,62.499,54.363 +42363,64.978,52.911 +42364,67.704,51.402 +42365,58.897,55.746 +42366,61.193,54.376 +42367,63.69,52.956 +42368,66.432,51.479 +42369,57.573,55.727 +42370,59.888,54.389 +42371,62.402,53.001 +42372,65.159,51.558 +42373,56.252,55.708 +42374,58.584,54.401 +42375,61.113,53.047 +42376,63.883,51.638 +42377,54.931,55.687 +42378,57.28,54.413 +42379,59.823,53.093 +42380,62.604,51.719 +42381,53.613,55.666 +42382,55.977,54.425 +42383,58.533,53.139 +42384,61.324,51.801 +42385,52.296,55.644 +42386,54.674,54.436 +42387,57.242,53.185 +42388,60.041,51.884 +42389,50.981,55.62 +42390,53.372,54.447 +42391,55.95,53.232 +42392,58.756,51.968 +42393,49.668,55.596 +42394,52.07,54.458 +42395,54.657,53.279 +42396,57.469,52.052 +42397,48.356,55.571 +42398,50.769,54.469 +42399,53.364,53.326 +42400,56.179,52.138 +42401,47.046,55.545 +42402,49.469,54.479 +42403,52.07,53.374 +42404,54.887,52.224 +42405,45.738,55.519 +42406,48.169,54.489 +42407,50.775,53.421 +42408,53.593,52.311 +42409,44.432,55.491 +42410,46.869,54.499 +42411,49.479,53.47 +42412,52.297,52.399 +42413,43.128,55.463 +42414,45.571,54.508 +42415,48.183,53.518 +42416,50.999,52.488 +42417,41.825,55.434 +42418,44.272,54.517 +42419,46.886,53.566 +42420,49.698,52.577 +42421,40.524,55.405 +42422,42.975,54.526 +42423,45.588,53.615 +42424,48.395,52.667 +42425,39.225,55.374 +42426,41.678,54.535 +42427,44.289,53.664 +42428,47.09,52.757 +42429,37.928,55.343 +42430,40.382,54.544 +42431,42.99,53.713 +42432,45.783,52.848 +42433,36.633,55.312 +42434,39.086,54.552 +42435,41.69,53.763 +42436,44.473,52.94 +42437,35.339,55.28 +42438,37.791,54.56 +42439,40.389,53.812 +42440,43.162,53.032 +42441,34.048,55.248 +42442,36.496,54.568 +42443,39.088,53.862 +42444,41.848,53.125 +42445,32.758,55.214 +42446,35.202,54.576 +42447,37.785,53.912 +42448,40.532,53.218 +42449,31.47,55.181 +42450,33.909,54.584 +42451,36.482,53.962 +42452,39.214,53.311 +42453,30.184,55.147 +42454,32.616,54.591 +42455,35.179,54.012 +42456,37.894,53.405 +42457,28.899,55.113 +42458,31.324,54.599 +42459,33.874,54.062 +42460,36.572,53.499 +42461,27.617,55.078 +42462,30.032,54.606 +42463,32.569,54.112 +42464,35.248,53.594 +42465,26.336,55.043 +42466,28.741,54.613 +42467,31.263,54.163 +42468,33.922,53.688 +42469,25.057,55.007 +42470,27.45,54.62 +42471,29.956,54.213 +42472,32.594,53.783 +42473,23.78,54.972 +42474,26.16,54.627 +42475,28.649,54.264 +42476,31.264,53.878 +42477,22.505,54.936 +42478,24.871,54.634 +42479,27.341,54.314 +42480,29.932,53.973 +42481,21.232,54.9 +42482,23.582,54.641 +42483,26.033,54.365 +42484,28.598,54.069 +42485,19.961,54.864 +42486,22.294,54.648 +42487,24.723,54.416 +42488,27.263,54.164 +42489,18.691,54.827 +42490,21.006,54.655 +42491,23.413,54.466 +42492,25.925,54.26 +42493,17.423,54.791 +42494,19.719,54.662 +42495,22.103,54.517 +42496,24.586,54.355 +42497,16.157,54.754 +42498,18.433,54.668 +42499,20.791,54.568 +42500,23.244,54.45 +42501,14.893,54.717 +42502,17.147,54.675 +42503,19.479,54.619 +42504,21.901,54.546 +42505,13.63,54.681 +42506,15.861,54.682 +42507,18.167,54.669 +42508,20.557,54.641 +42509,12.37,54.644 +42510,14.576,54.688 +42511,16.854,54.72 +42512,19.21,54.736 +42513,11.111,54.607 +42514,13.292,54.695 +42515,15.54,54.77 +42516,17.862,54.831 +42517,9.8535,54.571 +42518,12.008,54.702 +42519,14.225,54.821 +42520,16.512,54.925 +42521,8.598,54.534 +42522,10.725,54.709 +42523,12.91,54.871 +42524,15.161,55.02 +42525,7.3442,54.498 +42526,9.442,54.716 +42527,11.594,54.922 +42528,13.808,55.114 +42529,6.0921,54.462 +42530,8.1597,54.723 +42531,10.278,54.972 +42532,12.454,55.208 +42533,4.8417,54.427 +42534,6.8778,54.73 +42535,8.9613,55.022 +42536,11.098,55.301 +42537,3.5929,54.391 +42538,5.5965,54.737 +42539,7.6439,55.072 +42540,9.7405,55.394 +42541,2.3458,54.356 +42542,4.3156,54.745 +42543,6.3259,55.122 +42544,8.3817,55.487 +42545,1.1003,54.321 +42546,3.0352,54.752 +42547,5.0074,55.172 +42548,7.0214,55.579 +42549,359.86,54.286 +42550,1.7552,54.76 +42551,3.6883,55.222 +42552,5.6599,55.67 +42553,358.61,54.252 +42554,0.47571,54.767 +42555,2.3687,55.271 +42556,4.297,55.762 +42557,357.37,54.218 +42558,359.2,54.775 +42559,1.0486,55.32 +42560,2.9328,55.852 +42561,356.13,54.185 +42562,357.92,54.783 +42563,359.73,55.369 +42564,1.5673,55.942 +42565,354.9,54.152 +42566,356.64,54.791 +42567,358.41,55.418 +42568,0.20064,56.032 +42569,353.66,54.12 +42570,355.36,54.8 +42571,357.09,55.467 +42572,358.83,56.121 +42573,352.43,54.089 +42574,354.08,54.808 +42575,355.76,55.515 +42576,357.46,56.209 +42577,351.19,54.058 +42578,352.81,54.817 +42579,354.44,55.564 +42580,356.09,56.296 +42581,349.96,54.027 +42582,351.53,54.826 +42583,353.12,55.612 +42584,354.72,56.383 +42585,348.73,53.997 +42586,350.25,54.835 +42587,351.79,55.659 +42588,353.35,56.469 +42589,347.5,53.968 +42590,348.98,54.844 +42591,350.47,55.707 +42592,351.98,56.554 +42593,346.27,53.94 +42594,347.7,54.854 +42595,349.15,55.754 +42596,350.6,56.638 +42597,345.04,53.912 +42598,346.43,54.864 +42599,347.82,55.801 +42600,349.23,56.722 +42601,343.82,53.885 +42602,345.15,54.874 +42603,346.5,55.848 +42604,347.85,56.804 +42605,342.59,53.859 +42606,343.88,54.885 +42607,345.17,55.894 +42608,346.48,56.886 +42609,341.37,53.834 +42610,342.6,54.895 +42611,343.85,55.94 +42612,345.1,56.967 +42613,340.15,53.809 +42614,341.33,54.907 +42615,342.52,55.986 +42616,343.72,57.047 +42617,338.93,53.786 +42618,340.06,54.918 +42619,341.19,56.031 +42620,342.34,57.126 +42621,337.71,53.763 +42622,338.78,54.929 +42623,339.87,56.077 +42624,340.96,57.203 +42625,336.49,53.742 +42626,337.51,54.941 +42627,338.54,56.121 +42628,339.58,57.28 +42629,335.27,53.721 +42630,336.24,54.954 +42631,337.21,56.166 +42632,338.2,57.356 +42633,334.05,53.701 +42634,334.96,54.966 +42635,335.89,56.21 +42636,336.82,57.431 +42637,332.84,53.683 +42638,333.69,54.979 +42639,334.56,56.254 +42640,335.44,57.505 +42641,331.62,53.665 +42642,332.42,54.993 +42643,333.23,56.297 +42644,334.05,57.577 +42645,330.41,53.649 +42646,331.15,55.006 +42647,331.9,56.34 +42648,332.67,57.649 +42649,329.19,53.633 +42650,329.87,55.02 +42651,330.57,56.382 +42652,331.29,57.719 +42653,327.98,53.619 +42654,328.6,55.035 +42655,329.24,56.425 +42656,329.9,57.788 +42657,326.76,53.606 +42658,327.33,55.049 +42659,327.92,56.466 +42660,328.52,57.856 +42661,325.55,53.594 +42662,326.06,55.065 +42663,326.59,56.508 +42664,327.13,57.923 +42665,324.34,53.583 +42666,324.79,55.08 +42667,325.26,56.549 +42668,325.75,57.989 +42669,323.13,53.573 +42670,323.51,55.096 +42671,323.93,56.589 +42672,324.37,58.053 +42673,321.92,53.565 +42674,322.24,55.113 +42675,322.6,56.629 +42676,322.98,58.116 +42677,320.71,53.558 +42678,320.97,55.129 +42679,321.27,56.669 +42680,321.59,58.178 +42681,319.5,53.552 +42682,319.7,55.147 +42683,319.94,56.708 +42684,320.21,58.238 +42685,318.29,53.548 +42686,318.43,55.164 +42687,318.61,56.747 +42688,318.82,58.298 +42689,317.08,53.544 +42690,317.16,55.182 +42691,317.28,56.786 +42692,317.44,58.356 +42693,315.87,53.542 +42694,315.89,55.201 +42695,315.95,56.824 +42696,316.05,58.412 +42697,314.66,53.542 +42698,314.61,55.22 +42699,314.62,56.861 +42700,314.67,58.468 +42701,313.45,53.543 +42702,313.34,55.239 +42703,313.29,56.898 +42704,313.28,58.522 +42705,312.24,53.545 +42706,312.07,55.259 +42707,311.96,56.935 +42708,311.9,58.574 +42709,311.03,53.548 +42710,310.8,55.279 +42711,310.63,56.971 +42712,310.51,58.625 +42713,309.82,53.553 +42714,309.53,55.3 +42715,309.3,57.007 +42716,309.13,58.675 +42717,308.61,53.559 +42718,308.26,55.321 +42719,307.97,57.042 +42720,307.74,58.724 +42721,307.4,53.567 +42722,306.98,55.342 +42723,306.64,57.077 +42724,306.36,58.771 +42725,306.19,53.576 +42726,305.71,55.365 +42727,305.31,57.111 +42728,304.97,58.817 +42729,304.98,53.587 +42730,304.44,55.387 +42731,303.98,57.145 +42732,303.59,58.861 +42733,303.77,53.599 +42734,303.17,55.41 +42735,302.65,57.178 +42736,302.21,58.904 +42737,302.56,53.612 +42738,301.9,55.434 +42739,301.32,57.211 +42740,300.82,58.946 +42741,301.35,53.627 +42742,300.62,55.458 +42743,299.99,57.243 +42744,299.44,58.986 +42745,300.14,53.644 +42746,299.35,55.482 +42747,298.66,57.275 +42748,298.06,59.024 +42749,298.93,53.662 +42750,298.08,55.507 +42751,297.33,57.306 +42752,296.68,59.062 +42753,297.71,53.681 +42754,296.8,55.532 +42755,296,57.337 +42756,295.3,59.097 +42757,296.5,53.702 +42758,295.53,55.558 +42759,294.67,57.367 +42760,293.92,59.132 +42761,295.28,53.724 +42762,294.25,55.584 +42763,293.34,57.397 +42764,292.54,59.165 +42765,294.07,53.748 +42766,292.98,55.611 +42767,292.02,57.427 +42768,291.16,59.197 +42769,292.85,53.773 +42770,291.71,55.639 +42771,290.69,57.455 +42772,289.78,59.227 +42773,291.64,53.8 +42774,290.43,55.666 +42775,289.36,57.484 +42776,288.4,59.255 +42777,290.42,53.828 +42778,289.16,55.695 +42779,288.03,57.512 +42780,287.02,59.283 +42781,289.2,53.858 +42782,287.88,55.723 +42783,286.7,57.539 +42784,285.65,59.309 +42785,287.98,53.889 +42786,286.6,55.753 +42787,285.38,57.566 +42788,284.27,59.333 +42789,286.76,53.922 +42790,285.33,55.782 +42791,284.05,57.593 +42792,282.9,59.356 +42793,285.54,53.956 +42794,284.05,55.813 +42795,282.72,57.619 +42796,281.52,59.378 +42797,284.31,53.992 +42798,282.77,55.843 +42799,281.4,57.644 +42800,280.15,59.398 +42801,283.09,54.029 +42802,281.5,55.874 +42803,280.07,57.669 +42804,278.78,59.417 +42805,281.86,54.068 +42806,280.22,55.906 +42807,278.74,57.694 +42808,277.41,59.434 +42809,280.63,54.108 +42810,278.94,55.938 +42811,277.42,57.718 +42812,276.04,59.45 +42813,279.41,54.149 +42814,277.66,55.97 +42815,276.09,57.741 +42816,274.67,59.465 +42817,278.17,54.192 +42818,276.38,56.003 +42819,274.77,57.764 +42820,273.3,59.479 +42821,276.94,54.237 +42822,275.1,56.037 +42823,273.44,57.787 +42824,271.93,59.49 +42825,275.71,54.282 +42826,273.82,56.071 +42827,272.12,57.809 +42828,270.57,59.501 +42829,274.48,54.33 +42830,272.54,56.105 +42831,270.79,57.831 +42832,269.2,59.51 +42833,273.24,54.378 +42834,271.26,56.14 +42835,269.47,57.852 +42836,267.84,59.518 +42837,272,54.428 +42838,269.98,56.175 +42839,268.15,57.873 +42840,266.48,59.525 +42841,270.76,54.479 +42842,268.69,56.211 +42843,266.82,57.893 +42844,265.12,59.53 +42845,269.52,54.532 +42846,267.41,56.247 +42847,265.5,57.913 +42848,263.76,59.535 +42849,268.28,54.586 +42850,266.13,56.283 +42851,264.18,57.932 +42852,262.4,59.537 +42853,267.03,54.641 +42854,264.84,56.32 +42855,262.86,57.951 +42856,261.04,59.539 +42857,265.79,54.698 +42858,263.56,56.358 +42859,261.54,57.97 +42860,259.68,59.539 +42861,264.54,54.756 +42862,262.27,56.395 +42863,260.22,57.988 +42864,258.33,59.538 +42865,263.29,54.815 +42866,260.99,56.434 +42867,258.9,58.006 +42868,256.98,59.536 +42869,262.04,54.875 +42870,259.7,56.472 +42871,257.58,58.023 +42872,255.62,59.533 +42873,260.78,54.937 +42874,258.41,56.511 +42875,256.26,58.04 +42876,254.27,59.528 +42877,259.53,55 +42878,257.13,56.55 +42879,254.94,58.057 +42880,252.93,59.522 +42881,258.27,55.064 +42882,255.84,56.59 +42883,253.62,58.073 +42884,251.58,59.516 +42885,257.01,55.129 +42886,254.55,56.63 +42887,252.3,58.089 +42888,250.23,59.508 +42889,255.75,55.195 +42890,253.26,56.671 +42891,250.98,58.104 +42892,248.89,59.498 +42893,254.49,55.263 +42894,251.97,56.712 +42895,249.67,58.119 +42896,247.54,59.488 +42897,253.22,55.331 +42898,250.68,56.753 +42899,248.35,58.134 +42900,246.2,59.477 +42901,251.95,55.401 +42902,249.39,56.794 +42903,247.04,58.148 +42904,244.86,59.465 +42905,250.68,55.471 +42906,248.09,56.836 +42907,245.72,58.162 +42908,243.52,59.451 +42909,249.41,55.543 +42910,246.8,56.878 +42911,244.41,58.175 +42912,242.19,59.437 +42913,248.14,55.615 +42914,245.51,56.921 +42915,243.09,58.188 +42916,240.85,59.422 +42917,246.86,55.689 +42918,244.21,56.964 +42919,241.78,58.201 +42920,239.52,59.406 +42921,245.58,55.763 +42922,242.92,57.007 +42923,240.46,58.214 +42924,238.19,59.388 +42925,244.3,55.839 +42926,241.62,57.05 +42927,239.15,58.226 +42928,236.86,59.37 +42929,243.02,55.915 +42930,240.33,57.094 +42931,237.84,58.238 +42932,235.53,59.351 +42933,241.74,55.992 +42934,239.03,57.138 +42935,236.53,58.25 +42936,234.2,59.331 +42937,240.45,56.07 +42938,237.73,57.182 +42939,235.22,58.261 +42940,232.87,59.311 +42941,239.16,56.149 +42942,236.43,57.226 +42943,233.91,58.272 +42944,231.55,59.289 +42945,237.87,56.228 +42946,235.13,57.271 +42947,232.6,58.283 +42948,230.23,59.267 +42949,236.58,56.309 +42950,233.83,57.316 +42951,231.29,58.293 +42952,228.91,59.244 +42953,235.28,56.39 +42954,232.53,57.361 +42955,229.98,58.304 +42956,227.59,59.22 +42957,233.98,56.471 +42958,231.23,57.407 +42959,228.67,58.314 +42960,226.27,59.196 +42961,232.68,56.554 +42962,229.93,57.452 +42963,227.37,58.324 +42964,224.96,59.17 +42965,231.38,56.636 +42966,228.63,57.498 +42967,226.06,58.333 +42968,223.65,59.144 +42969,230.08,56.72 +42970,227.32,57.544 +42971,224.75,58.342 +42972,222.34,59.118 +42973,228.77,56.804 +42974,226.02,57.59 +42975,223.45,58.352 +42976,221.03,59.091 +42977,227.46,56.888 +42978,224.71,57.637 +42979,222.14,58.361 +42980,219.72,59.063 +42981,226.15,56.973 +42982,223.41,57.683 +42983,220.84,58.369 +42984,218.41,59.035 +42985,224.84,57.059 +42986,222.1,57.73 +42987,219.53,58.378 +42988,217.11,59.006 +42989,223.52,57.145 +42990,220.8,57.776 +42991,218.23,58.386 +42992,215.81,58.977 +42993,222.21,57.231 +42994,219.49,57.823 +42995,216.93,58.395 +42996,214.51,58.948 +42997,220.89,57.318 +42998,218.18,57.87 +42999,215.63,58.403 +43000,213.21,58.918 +43001,219.57,57.405 +43002,216.87,57.918 +43003,214.33,58.411 +43004,211.91,58.887 +43005,218.24,57.492 +43006,215.56,57.965 +43007,213.03,58.419 +43008,210.62,58.856 +43009,216.92,57.579 +43010,214.25,58.012 +43011,211.73,58.426 +43012,209.32,58.825 +43013,215.59,57.667 +43014,212.94,58.059 +43015,210.43,58.434 +43016,208.03,58.794 +43017,214.26,57.755 +43018,211.63,58.107 +43019,209.13,58.442 +43020,206.74,58.762 +43021,212.93,57.843 +43022,210.31,58.154 +43023,207.83,58.449 +43024,205.45,58.73 +43025,211.6,57.931 +43026,209,58.202 +43027,206.53,58.457 +43028,204.17,58.698 +43029,210.26,58.019 +43030,207.69,58.249 +43031,205.23,58.464 +43032,202.88,58.666 +43033,208.93,58.108 +43034,206.37,58.297 +43035,203.94,58.471 +43036,201.6,58.633 +43037,207.59,58.196 +43038,205.06,58.344 +43039,202.64,58.479 +43040,200.32,58.601 +43041,206.25,58.284 +43042,203.74,58.392 +43043,201.34,58.486 +43044,199.04,58.568 +43045,204.91,58.373 +43046,202.43,58.44 +43047,200.05,58.493 +43048,197.76,58.535 +43049,203.56,58.461 +43050,201.11,58.487 +43051,198.76,58.5 +43052,196.49,58.503 +43053,202.22,58.549 +43054,199.79,58.535 +43055,197.46,58.507 +43056,195.22,58.47 +43057,200.87,58.637 +43058,198.47,58.582 +43059,196.17,58.515 +43060,193.94,58.437 +43061,199.52,58.725 +43062,197.15,58.629 +43063,194.88,58.522 +43064,192.67,58.404 +43065,198.17,58.812 +43066,195.83,58.677 +43067,193.58,58.529 +43068,191.41,58.372 +43069,196.81,58.899 +43070,194.51,58.724 +43071,192.29,58.537 +43072,190.14,58.34 +43073,195.46,58.987 +43074,193.19,58.771 +43075,191,58.544 +43076,188.87,58.307 +43077,194.1,59.073 +43078,191.87,58.818 +43079,189.71,58.551 +43080,187.61,58.275 +43081,192.75,59.16 +43082,190.55,58.865 +43083,188.42,58.559 +43084,186.35,58.244 +43085,191.39,59.246 +43086,189.23,58.912 +43087,187.13,58.567 +43088,185.09,58.212 +43089,190.03,59.331 +43090,187.9,58.958 +43091,185.84,58.574 +43092,183.83,58.181 +43093,188.67,59.417 +43094,186.58,59.005 +43095,184.55,58.582 +43096,182.58,58.15 +43097,187.3,59.502 +43098,185.26,59.051 +43099,183.26,58.59 +43100,181.32,58.12 +43101,185.94,59.586 +43102,183.93,59.098 +43103,181.98,58.598 +43104,180.07,58.089 +43105,184.57,59.67 +43106,182.61,59.144 +43107,180.69,58.606 +43108,178.81,58.06 +43109,183.2,59.753 +43110,181.28,59.189 +43111,179.4,58.615 +43112,177.56,58.03 +43113,181.83,59.836 +43114,179.95,59.235 +43115,178.12,58.623 +43116,176.32,58.002 +43117,180.46,59.918 +43118,178.63,59.281 +43119,176.83,58.632 +43120,175.07,57.973 +43121,179.09,59.999 +43122,177.3,59.326 +43123,175.55,58.641 +43124,173.82,57.946 +43125,177.72,60.08 +43126,175.97,59.371 +43127,174.26,58.65 +43128,172.58,57.918 +43129,176.35,60.16 +43130,174.65,59.416 +43131,172.98,58.659 +43132,171.33,57.892 +43133,174.97,60.239 +43134,173.32,59.46 +43135,171.69,58.668 +43136,170.09,57.866 +43137,173.6,60.318 +43138,171.99,59.504 +43139,170.41,58.678 +43140,168.85,57.841 +43141,172.22,60.396 +43142,170.66,59.548 +43143,169.12,58.688 +43144,167.61,57.816 +43145,170.84,60.473 +43146,169.33,59.592 +43147,167.84,58.698 +43148,166.37,57.792 +43149,169.46,60.549 +43150,168,59.636 +43151,166.56,58.708 +43152,165.14,57.769 +43153,168.08,60.625 +43154,166.67,59.679 +43155,165.28,58.719 +43156,163.9,57.746 +43157,166.7,60.7 +43158,165.34,59.722 +43159,163.99,58.73 +43160,162.67,57.725 +43161,165.32,60.773 +43162,164.01,59.765 +43163,162.71,58.741 +43164,161.43,57.704 +43165,163.94,60.846 +43166,162.68,59.807 +43167,161.43,58.752 +43168,160.2,57.684 +43169,162.55,60.918 +43170,161.34,59.849 +43171,160.15,58.764 +43172,158.97,57.665 +43173,161.17,60.989 +43174,160.01,59.891 +43175,158.87,58.776 +43176,157.74,57.647 +43177,159.79,61.059 +43178,158.68,59.932 +43179,157.59,58.788 +43180,156.51,57.629 +43181,158.4,61.128 +43182,157.35,59.973 +43183,156.31,58.801 +43184,155.28,57.613 +43185,157.02,61.196 +43186,156.01,60.014 +43187,155.03,58.814 +43188,154.06,57.598 +43189,155.63,61.263 +43190,154.68,60.054 +43191,153.75,58.827 +43192,152.83,57.583 +43193,154.24,61.329 +43194,153.35,60.094 +43195,152.47,58.84 +43196,151.6,57.57 +43197,152.85,61.393 +43198,152.01,60.133 +43199,151.19,58.854 +43200,150.38,57.557 +43201,151.47,61.457 +43202,150.68,60.173 +43203,149.91,58.869 +43204,149.16,57.546 +43205,150.08,61.52 +43206,149.34,60.212 +43207,148.63,58.883 +43208,147.93,57.536 +43209,148.69,61.581 +43210,148.01,60.25 +43211,147.35,58.898 +43212,146.71,57.527 +43213,147.3,61.642 +43214,146.68,60.288 +43215,146.07,58.913 +43216,145.49,57.518 +43217,145.91,61.701 +43218,145.34,60.326 +43219,144.79,58.929 +43220,144.27,57.511 +43221,144.52,61.759 +43222,144.01,60.363 +43223,143.51,58.945 +43224,143.05,57.506 +43225,143.13,61.816 +43226,142.67,60.4 +43227,142.23,58.961 +43228,141.82,57.501 +43229,141.74,61.871 +43230,141.34,60.436 +43231,140.96,58.978 +43232,140.6,57.498 +43233,140.35,61.926 +43234,140,60.472 +43235,139.68,58.995 +43236,139.39,57.495 +43237,138.96,61.979 +43238,138.67,60.508 +43239,138.4,59.013 +43240,138.17,57.494 +43241,137.57,62.031 +43242,137.33,60.543 +43243,137.12,59.031 +43244,136.95,57.494 +43245,136.18,62.082 +43246,135.99,60.578 +43247,135.84,59.049 +43248,135.73,57.496 +43249,134.79,62.131 +43250,134.66,60.612 +43251,134.56,59.068 +43252,134.51,57.498 +43253,133.4,62.179 +43254,133.32,60.646 +43255,133.29,59.087 +43256,133.29,57.502 +43257,132.01,62.226 +43258,131.99,60.68 +43259,132.01,59.107 +43260,132.07,57.508 +43261,130.62,62.272 +43262,130.65,60.713 +43263,130.73,59.127 +43264,130.85,57.514 +43265,129.23,62.316 +43266,129.32,60.745 +43267,129.45,59.147 +43268,129.64,57.522 +43269,127.84,62.359 +43270,127.98,60.777 +43271,128.17,59.168 +43272,128.42,57.531 +43273,126.45,62.401 +43274,126.65,60.809 +43275,126.89,59.189 +43276,127.2,57.541 +43277,125.06,62.441 +43278,125.31,60.84 +43279,125.62,59.211 +43280,125.98,57.553 +43281,123.67,62.48 +43282,123.98,60.871 +43283,124.34,59.233 +43284,124.76,57.566 +43285,122.28,62.518 +43286,122.64,60.901 +43287,123.06,59.256 +43288,123.54,57.581 +43289,120.89,62.554 +43290,121.3,60.931 +43291,121.78,59.279 +43292,122.32,57.596 +43293,119.51,62.59 +43294,119.97,60.961 +43295,120.5,59.302 +43296,121.1,57.613 +43297,118.12,62.623 +43298,118.63,60.99 +43299,119.22,59.326 +43300,119.88,57.632 +43301,116.73,62.656 +43302,117.3,61.018 +43303,117.94,59.35 +43304,118.66,57.652 +43305,115.34,62.687 +43306,115.96,61.046 +43307,116.66,59.375 +43308,117.44,57.673 +43309,113.96,62.717 +43310,114.63,61.074 +43311,115.38,59.4 +43312,116.22,57.695 +43313,112.57,62.745 +43314,113.3,61.101 +43315,114.1,59.426 +43316,115,57.719 +43317,111.19,62.772 +43318,111.96,61.127 +43319,112.82,59.452 +43320,113.77,57.745 +43321,109.8,62.798 +43322,110.63,61.154 +43323,111.54,59.478 +43324,112.55,57.771 +43325,108.42,62.822 +43326,109.29,61.179 +43327,110.26,59.505 +43328,111.32,57.799 +43329,107.04,62.845 +43330,107.96,61.205 +43331,108.98,59.532 +43332,110.1,57.829 +43333,105.65,62.867 +43334,106.63,61.229 +43335,107.69,59.56 +43336,108.87,57.859 +43337,104.27,62.887 +43338,105.29,61.254 +43339,106.41,59.588 +43340,107.64,57.891 +43341,102.89,62.907 +43342,103.96,61.278 +43343,105.13,59.617 +43344,106.42,57.925 +43345,101.51,62.924 +43346,102.63,61.301 +43347,103.85,59.646 +43348,105.19,57.959 +43349,100.13,62.941 +43350,101.3,61.324 +43351,102.56,59.676 +43352,103.96,57.996 +43353,98.757,62.956 +43354,99.964,61.346 +43355,101.28,59.706 +43356,102.73,58.033 +43357,97.38,62.97 +43358,98.632,61.368 +43359,99.997,59.736 +43360,101.49,58.072 +43361,96.004,62.982 +43362,97.3,61.39 +43363,98.713,59.767 +43364,100.26,58.112 +43365,94.629,62.994 +43366,95.969,61.411 +43367,97.429,59.798 +43368,99.026,58.153 +43369,93.255,63.004 +43370,94.639,61.432 +43371,96.144,59.83 +43372,97.79,58.196 +43373,91.882,63.012 +43374,93.308,61.452 +43375,94.858,59.862 +43376,96.553,58.24 +43377,90.51,63.02 +43378,91.978,61.472 +43379,93.572,59.894 +43380,95.314,58.285 +43381,89.139,63.026 +43382,90.648,61.492 +43383,92.286,59.927 +43384,94.074,58.332 +43385,87.769,63.031 +43386,89.319,61.511 +43387,90.999,59.96 +43388,92.832,58.379 +43389,86.401,63.035 +43390,87.99,61.529 +43391,89.712,59.994 +43392,91.59,58.428 +43393,85.034,63.038 +43394,86.661,61.547 +43395,88.424,60.028 +43396,90.345,58.478 +43397,83.668,63.039 +43398,85.333,61.565 +43399,87.136,60.062 +43400,89.099,58.53 +43401,82.303,63.039 +43402,84.006,61.583 +43403,85.847,60.097 +43404,87.852,58.583 +43405,80.939,63.038 +43406,82.678,61.599 +43407,84.558,60.132 +43408,86.603,58.636 +43409,79.577,63.036 +43410,81.351,61.616 +43411,83.268,60.168 +43412,85.352,58.691 +43413,78.216,63.033 +43414,80.025,61.632 +43415,81.978,60.204 +43416,84.1,58.747 +43417,76.856,63.029 +43418,78.699,61.648 +43419,80.687,60.24 +43420,82.846,58.805 +43421,75.498,63.023 +43422,77.374,61.663 +43423,79.395,60.277 +43424,81.59,58.863 +43425,74.141,63.017 +43426,76.049,61.678 +43427,78.103,60.314 +43428,80.332,58.922 +43429,72.786,63.009 +43430,74.724,61.693 +43431,76.811,60.351 +43432,79.073,58.983 +43433,71.432,63.001 +43434,73.4,61.707 +43435,75.518,60.389 +43436,77.812,59.044 +43437,70.079,62.991 +43438,72.076,61.721 +43439,74.224,60.427 +43440,76.549,59.107 +43441,68.728,62.98 +43442,70.753,61.735 +43443,72.929,60.465 +43444,75.284,59.171 +43445,67.379,62.969 +43446,69.431,61.748 +43447,71.634,60.504 +43448,74.017,59.235 +43449,66.031,62.956 +43450,68.109,61.761 +43451,70.339,60.543 +43452,72.749,59.301 +43453,64.684,62.943 +43454,66.787,61.773 +43455,69.043,60.582 +43456,71.478,59.367 +43457,63.339,62.928 +43458,65.466,61.786 +43459,67.746,60.622 +43460,70.205,59.435 +43461,61.996,62.913 +43462,64.146,61.798 +43463,66.448,60.661 +43464,68.931,59.503 +43465,60.654,62.896 +43466,62.826,61.809 +43467,65.15,60.702 +43468,67.655,59.572 +43469,59.313,62.879 +43470,61.506,61.821 +43471,63.851,60.742 +43472,66.376,59.642 +43473,57.975,62.861 +43474,60.188,61.832 +43475,62.552,60.783 +43476,65.096,59.713 +43477,56.638,62.842 +43478,58.869,61.842 +43479,61.252,60.823 +43480,63.813,59.784 +43481,55.302,62.823 +43482,57.551,61.853 +43483,59.951,60.865 +43484,62.529,59.857 +43485,53.969,62.802 +43486,56.234,61.863 +43487,58.65,60.906 +43488,61.242,59.93 +43489,52.637,62.781 +43490,54.918,61.873 +43491,57.348,60.948 +43492,59.954,60.004 +43493,51.306,62.759 +43494,53.602,61.883 +43495,56.045,60.989 +43496,58.663,60.078 +43497,49.978,62.737 +43498,52.286,61.892 +43499,54.742,61.031 +43500,57.371,60.153 +43501,48.651,62.714 +43502,50.971,61.901 +43503,53.438,61.074 +43504,56.076,60.229 +43505,47.326,62.69 +43506,49.657,61.91 +43507,52.133,61.116 +43508,54.779,60.305 +43509,46.002,62.665 +43510,48.343,61.919 +43511,50.828,61.159 +43512,53.48,60.382 +43513,44.68,62.64 +43514,47.03,61.928 +43515,49.522,61.201 +43516,52.179,60.46 +43517,43.36,62.615 +43518,45.718,61.936 +43519,48.215,61.244 +43520,50.876,60.538 +43521,42.042,62.588 +43522,44.406,61.944 +43523,46.907,61.288 +43524,49.571,60.616 +43525,40.726,62.562 +43526,43.094,61.952 +43527,45.599,61.331 +43528,48.264,60.695 +43529,39.411,62.535 +43530,41.784,61.96 +43531,44.29,61.374 +43532,46.955,60.775 +43533,38.098,62.507 +43534,40.474,61.968 +43535,42.981,61.418 +43536,45.644,60.854 +43537,36.787,62.479 +43538,39.164,61.976 +43539,41.671,61.461 +43540,44.33,60.934 +43541,35.478,62.45 +43542,37.855,61.983 +43543,40.36,61.505 +43544,43.015,61.015 +43545,34.17,62.422 +43546,36.547,61.99 +43547,39.049,61.549 +43548,41.698,61.096 +43549,32.864,62.392 +43550,35.239,61.997 +43551,37.736,61.593 +43552,40.378,61.177 +43553,31.56,62.363 +43554,33.932,62.004 +43555,36.424,61.637 +43556,39.057,61.258 +43557,30.258,62.333 +43558,32.625,62.011 +43559,35.11,61.681 +43560,37.733,61.339 +43561,28.957,62.303 +43562,31.319,62.018 +43563,33.796,61.725 +43564,36.408,61.421 +43565,27.659,62.273 +43566,30.014,62.025 +43567,32.481,61.769 +43568,35.081,61.503 +43569,26.362,62.243 +43570,28.709,62.032 +43571,31.166,61.813 +43572,33.751,61.585 +43573,25.067,62.212 +43574,27.404,62.038 +43575,29.85,61.857 +43576,32.42,61.667 +43577,23.773,62.181 +43578,26.101,62.045 +43579,28.533,61.901 +43580,31.087,61.749 +43581,22.482,62.15 +43582,24.798,62.052 +43583,27.215,61.946 +43584,29.751,61.831 +43585,21.192,62.12 +43586,23.495,62.058 +43587,25.897,61.99 +43588,28.414,61.913 +43589,19.904,62.089 +43590,22.193,62.065 +43591,24.579,62.034 +43592,27.076,61.995 +43593,18.618,62.058 +43594,20.892,62.071 +43595,23.259,62.078 +43596,25.735,62.077 +43597,17.333,62.027 +43598,19.591,62.078 +43599,21.939,62.122 +43600,24.392,62.159 +43601,16.05,61.996 +43602,18.291,62.084 +43603,20.619,62.166 +43604,23.048,62.241 +43605,14.769,61.965 +43606,16.991,62.091 +43607,19.298,62.211 +43608,21.702,62.323 +43609,13.49,61.934 +43610,15.692,62.097 +43611,17.976,62.254 +43612,20.354,62.404 +43613,12.212,61.904 +43614,14.393,62.104 +43615,16.653,62.298 +43616,19.004,62.485 +43617,10.936,61.873 +43618,13.095,62.111 +43619,15.33,62.342 +43620,17.653,62.566 +43621,9.6622,61.843 +43622,11.798,62.117 +43623,14.007,62.386 +43624,16.3,62.647 +43625,8.3895,61.813 +43626,10.501,62.124 +43627,12.683,62.429 +43628,14.945,62.727 +43629,7.1186,61.783 +43630,9.2045,62.131 +43631,11.358,62.473 +43632,13.589,62.808 +43633,5.8492,61.754 +43634,7.9086,62.138 +43635,10.033,62.516 +43636,12.231,62.887 +43637,4.5815,61.725 +43638,6.6131,62.145 +43639,8.7068,62.56 +43640,10.872,62.967 +43641,3.3154,61.696 +43642,5.3182,62.152 +43643,7.3804,62.603 +43644,9.5106,63.046 +43645,2.0508,61.667 +43646,4.0238,62.159 +43647,6.0535,62.646 +43648,8.1481,63.124 +43649,0.78787,61.639 +43650,2.7298,62.167 +43651,4.726,62.688 +43652,6.7842,63.202 +43653,359.53,61.612 +43654,1.4364,62.174 +43655,3.3981,62.731 +43656,5.4188,63.28 +43657,358.27,61.584 +43658,0.14338,62.182 +43659,2.0696,62.773 +43660,4.052,63.356 +43661,357.01,61.558 +43662,358.85,62.19 +43663,0.74062,62.816 +43664,2.6839,63.433 +43665,355.75,61.532 +43666,357.56,62.198 +43667,359.41,62.858 +43668,1.3144,63.509 +43669,354.5,61.506 +43670,356.27,62.206 +43671,358.08,62.899 +43672,359.94,63.584 +43673,353.24,61.481 +43674,354.98,62.214 +43675,356.75,62.941 +43676,358.57,63.659 +43677,351.99,61.456 +43678,353.69,62.223 +43679,355.42,62.982 +43680,357.2,63.732 +43681,350.74,61.433 +43682,352.39,62.232 +43683,354.09,63.023 +43684,355.82,63.806 +43685,349.49,61.409 +43686,351.1,62.241 +43687,352.76,63.064 +43688,354.45,63.878 +43689,348.24,61.387 +43690,349.82,62.25 +43691,351.42,63.105 +43692,353.07,63.95 +43693,346.99,61.365 +43694,348.53,62.259 +43695,350.09,63.145 +43696,351.69,64.021 +43697,345.75,61.344 +43698,347.24,62.269 +43699,348.76,63.185 +43700,350.31,64.091 +43701,344.5,61.323 +43702,345.95,62.279 +43703,347.43,63.225 +43704,348.93,64.161 +43705,343.26,61.304 +43706,344.66,62.289 +43707,346.09,63.265 +43708,347.55,64.23 +43709,342.01,61.285 +43710,343.37,62.299 +43711,344.76,63.304 +43712,346.17,64.297 +43713,340.77,61.267 +43714,342.09,62.31 +43715,343.42,63.343 +43716,344.79,64.364 +43717,339.53,61.25 +43718,340.8,62.321 +43719,342.09,63.382 +43720,343.41,64.43 +43721,338.29,61.234 +43722,339.51,62.332 +43723,340.75,63.42 +43724,342.02,64.495 +43725,337.06,61.218 +43726,338.23,62.344 +43727,339.42,63.458 +43728,340.64,64.56 +43729,335.82,61.204 +43730,336.94,62.356 +43731,338.08,63.496 +43732,339.25,64.623 +43733,334.58,61.19 +43734,335.65,62.368 +43735,336.75,63.533 +43736,337.86,64.685 +43737,333.35,61.178 +43738,334.37,62.38 +43739,335.41,63.57 +43740,336.48,64.746 +43741,332.11,61.166 +43742,333.08,62.393 +43743,334.07,63.607 +43744,335.09,64.807 +43745,330.88,61.155 +43746,331.8,62.406 +43747,332.74,63.643 +43748,333.7,64.866 +43749,329.65,61.146 +43750,330.51,62.419 +43751,331.4,63.679 +43752,332.31,64.924 +43753,328.41,61.137 +43754,329.23,62.433 +43755,330.06,63.715 +43756,330.92,64.981 +43757,327.18,61.13 +43758,327.94,62.447 +43759,328.72,63.75 +43760,329.53,65.037 +43761,325.95,61.123 +43762,326.66,62.462 +43763,327.39,63.785 +43764,328.14,65.092 +43765,324.72,61.118 +43766,325.37,62.476 +43767,326.05,63.819 +43768,326.75,65.146 +43769,323.49,61.114 +43770,324.09,62.491 +43771,324.71,63.854 +43772,325.36,65.199 +43773,322.26,61.111 +43774,322.81,62.507 +43775,323.37,63.887 +43776,323.96,65.251 +43777,321.03,61.108 +43778,321.52,62.523 +43779,322.03,63.921 +43780,322.57,65.301 +43781,319.81,61.108 +43782,320.24,62.539 +43783,320.7,63.954 +43784,321.18,65.35 +43785,318.58,61.108 +43786,318.95,62.555 +43787,319.36,63.986 +43788,319.79,65.399 +43789,317.35,61.109 +43790,317.67,62.572 +43791,318.02,64.018 +43792,318.39,65.446 +43793,316.13,61.112 +43794,316.39,62.59 +43795,316.68,64.05 +43796,317,65.491 +43797,314.9,61.116 +43798,315.1,62.607 +43799,315.34,64.081 +43800,315.61,65.536 +43801,313.67,61.121 +43802,313.82,62.626 +43803,314,64.112 +43804,314.22,65.579 +43805,312.45,61.127 +43806,312.54,62.644 +43807,312.66,64.143 +43808,312.82,65.622 +43809,311.22,61.134 +43810,311.25,62.663 +43811,311.32,64.173 +43812,311.43,65.663 +43813,310,61.143 +43814,309.97,62.682 +43815,309.99,64.202 +43816,310.04,65.702 +43817,308.77,61.153 +43818,308.69,62.702 +43819,308.65,64.232 +43820,308.64,65.741 +43821,307.54,61.164 +43822,307.4,62.722 +43823,307.31,64.26 +43824,307.25,65.778 +43825,306.32,61.177 +43826,306.12,62.743 +43827,305.97,64.289 +43828,305.86,65.814 +43829,305.09,61.19 +43830,304.84,62.764 +43831,304.63,64.317 +43832,304.47,65.849 +43833,303.87,61.205 +43834,303.55,62.785 +43835,303.29,64.344 +43836,303.07,65.882 +43837,302.64,61.222 +43838,302.27,62.807 +43839,301.95,64.371 +43840,301.68,65.915 +43841,301.41,61.239 +43842,300.99,62.829 +43843,300.61,64.398 +43844,300.29,65.945 +43845,300.19,61.258 +43846,299.7,62.851 +43847,299.27,64.424 +43848,298.9,65.975 +43849,298.96,61.278 +43850,298.42,62.874 +43851,297.94,64.45 +43852,297.51,66.004 +43853,297.73,61.3 +43854,297.13,62.898 +43855,296.6,64.475 +43856,296.12,66.031 +43857,296.51,61.322 +43858,295.85,62.921 +43859,295.26,64.5 +43860,294.73,66.057 +43861,295.28,61.346 +43862,294.56,62.946 +43863,293.92,64.524 +43864,293.34,66.081 +43865,294.05,61.371 +43866,293.28,62.97 +43867,292.58,64.548 +43868,291.95,66.105 +43869,292.82,61.398 +43870,291.99,62.995 +43871,291.25,64.572 +43872,290.56,66.127 +43873,291.59,61.426 +43874,290.71,63.021 +43875,289.91,64.595 +43876,289.17,66.147 +43877,290.36,61.455 +43878,289.42,63.047 +43879,288.57,64.618 +43880,287.79,66.167 +43881,289.13,61.485 +43882,288.14,63.073 +43883,287.23,64.64 +43884,286.4,66.185 +43885,287.9,61.517 +43886,286.85,63.1 +43887,285.9,64.662 +43888,285.02,66.202 +43889,286.66,61.55 +43890,285.57,63.127 +43891,284.56,64.683 +43892,283.63,66.218 +43893,285.43,61.584 +43894,284.28,63.154 +43895,283.22,64.704 +43896,282.25,66.233 +43897,284.19,61.619 +43898,282.99,63.182 +43899,281.89,64.725 +43900,280.86,66.246 +43901,282.96,61.656 +43902,281.71,63.21 +43903,280.55,64.745 +43904,279.48,66.258 +43905,281.72,61.694 +43906,280.42,63.239 +43907,279.21,64.764 +43908,278.1,66.269 +43909,280.49,61.733 +43910,279.13,63.268 +43911,277.88,64.784 +43912,276.72,66.278 +43913,279.25,61.773 +43914,277.84,63.298 +43915,276.54,64.802 +43916,275.34,66.287 +43917,278.01,61.815 +43918,276.55,63.328 +43919,275.21,64.821 +43920,273.96,66.294 +43921,276.77,61.858 +43922,275.27,63.358 +43923,273.87,64.839 +43924,272.58,66.3 +43925,275.53,61.901 +43926,273.98,63.388 +43927,272.54,64.857 +43928,271.2,66.305 +43929,274.28,61.947 +43930,272.69,63.42 +43931,271.21,64.874 +43932,269.83,66.309 +43933,273.04,61.993 +43934,271.4,63.451 +43935,269.87,64.891 +43936,268.45,66.311 +43937,271.79,62.04 +43938,270.11,63.483 +43939,268.54,64.907 +43940,267.08,66.313 +43941,270.55,62.089 +43942,268.81,63.515 +43943,267.21,64.923 +43944,265.71,66.313 +43945,269.3,62.139 +43946,267.52,63.547 +43947,265.87,64.939 +43948,264.33,66.312 +43949,268.05,62.189 +43950,266.23,63.58 +43951,264.54,64.954 +43952,262.96,66.31 +43953,266.8,62.241 +43954,264.94,63.613 +43955,263.21,64.969 +43956,261.6,66.307 +43957,265.55,62.294 +43958,263.65,63.647 +43959,261.88,64.983 +43960,260.23,66.303 +43961,264.29,62.348 +43962,262.35,63.681 +43963,260.55,64.997 +43964,258.86,66.297 +43965,263.04,62.403 +43966,261.06,63.715 +43967,259.22,65.011 +43968,257.5,66.291 +43969,261.78,62.46 +43970,259.76,63.75 +43971,257.89,65.025 +43972,256.13,66.284 +43973,260.52,62.517 +43974,258.47,63.785 +43975,256.56,65.038 +43976,254.77,66.276 +43977,259.26,62.575 +43978,257.17,63.82 +43979,255.23,65.051 +43980,253.41,66.266 +43981,258,62.634 +43982,255.88,63.855 +43983,253.9,65.063 +43984,252.05,66.256 +43985,256.74,62.694 +43986,254.58,63.891 +43987,252.57,65.075 +43988,250.69,66.245 +43989,255.47,62.755 +43990,253.28,63.927 +43991,251.24,65.087 +43992,249.33,66.232 +43993,254.2,62.817 +43994,251.99,63.964 +43995,249.92,65.098 +43996,247.98,66.219 +43997,252.94,62.879 +43998,250.69,64.001 +43999,248.59,65.109 +44000,246.62,66.205 +44001,251.66,62.943 +44002,249.39,64.037 +44003,247.26,65.12 +44004,245.27,66.19 +44005,250.39,63.007 +44006,248.09,64.075 +44007,245.94,65.131 +44008,243.92,66.175 +44009,249.12,63.073 +44010,246.79,64.112 +44011,244.61,65.141 +44012,242.57,66.158 +44013,247.84,63.139 +44014,245.49,64.15 +44015,243.29,65.151 +44016,241.22,66.141 +44017,246.57,63.206 +44018,244.19,64.188 +44019,241.97,65.16 +44020,239.87,66.122 +44021,245.29,63.273 +44022,242.89,64.226 +44023,240.64,65.17 +44024,238.53,66.103 +44025,244,63.341 +44026,241.59,64.265 +44027,239.32,65.179 +44028,237.18,66.084 +44029,242.72,63.41 +44030,240.28,64.304 +44031,238,65.188 +44032,235.84,66.063 +44033,241.44,63.48 +44034,238.98,64.342 +44035,236.67,65.197 +44036,234.5,66.042 +44037,240.15,63.55 +44038,237.68,64.382 +44039,235.35,65.205 +44040,233.16,66.02 +44041,238.86,63.621 +44042,236.37,64.421 +44043,234.03,65.213 +44044,231.83,65.998 +44045,237.57,63.693 +44046,235.07,64.461 +44047,232.71,65.221 +44048,230.49,65.975 +44049,236.28,63.765 +44050,233.76,64.5 +44051,231.39,65.229 +44052,229.16,65.951 +44053,234.98,63.837 +44054,232.45,64.54 +44055,230.07,65.237 +44056,227.82,65.926 +44057,233.68,63.91 +44058,231.15,64.58 +44059,228.76,65.244 +44060,226.49,65.902 +44061,232.38,63.984 +44062,229.84,64.62 +44063,227.44,65.251 +44064,225.16,65.876 +44065,231.08,64.058 +44066,228.53,64.661 +44067,226.12,65.258 +44068,223.84,65.85 +44069,229.78,64.132 +44070,227.22,64.701 +44071,224.8,65.265 +44072,222.51,65.824 +44073,228.48,64.207 +44074,225.91,64.742 +44075,223.49,65.272 +44076,221.19,65.797 +44077,227.17,64.282 +44078,224.6,64.783 +44079,222.17,65.278 +44080,219.87,65.77 +44081,225.86,64.358 +44082,223.29,64.823 +44083,220.86,65.285 +44084,218.55,65.742 +44085,224.55,64.434 +44086,221.98,64.864 +44087,219.54,65.291 +44088,217.23,65.714 +44089,223.24,64.51 +44090,220.66,64.905 +44091,218.23,65.297 +44092,215.91,65.685 +44093,221.92,64.586 +44094,219.35,64.946 +44095,216.92,65.303 +44096,214.6,65.657 +44097,220.6,64.663 +44098,218.04,64.988 +44099,215.6,65.309 +44100,213.28,65.628 +44101,219.29,64.74 +44102,216.72,65.029 +44103,214.29,65.315 +44104,211.97,65.598 +44105,217.96,64.817 +44106,215.41,65.07 +44107,212.98,65.321 +44108,210.66,65.569 +44109,216.64,64.894 +44110,214.09,65.112 +44111,211.67,65.326 +44112,209.35,65.539 +44113,215.32,64.971 +44114,212.77,65.153 +44115,210.36,65.332 +44116,208.05,65.509 +44117,213.99,65.049 +44118,211.46,65.194 +44119,209.05,65.338 +44120,206.74,65.479 +44121,212.66,65.126 +44122,210.14,65.236 +44123,207.74,65.343 +44124,205.44,65.449 +44125,211.33,65.203 +44126,208.82,65.277 +44127,206.43,65.349 +44128,204.14,65.419 +44129,210,65.281 +44130,207.5,65.319 +44131,205.12,65.354 +44132,202.84,65.389 +44133,208.67,65.358 +44134,206.18,65.36 +44135,203.81,65.36 +44136,201.54,65.358 +44137,207.33,65.435 +44138,204.86,65.401 +44139,202.51,65.365 +44140,200.25,65.328 +44141,205.99,65.513 +44142,203.54,65.443 +44143,201.2,65.371 +44144,198.95,65.298 +44145,204.65,65.59 +44146,202.22,65.484 +44147,199.9,65.376 +44148,197.66,65.268 +44149,203.31,65.667 +44150,200.9,65.525 +44151,198.59,65.382 +44152,196.37,65.237 +44153,201.97,65.743 +44154,199.58,65.566 +44155,197.29,65.387 +44156,195.08,65.207 +44157,200.62,65.82 +44158,198.25,65.607 +44159,195.98,65.393 +44160,193.79,65.177 +44161,199.28,65.896 +44162,196.93,65.649 +44163,194.68,65.399 +44164,192.51,65.148 +44165,197.93,65.972 +44166,195.6,65.689 +44167,193.38,65.404 +44168,191.23,65.118 +44169,196.58,66.048 +44170,194.28,65.73 +44171,192.07,65.41 +44172,189.94,65.089 +44173,195.22,66.124 +44174,192.95,65.771 +44175,190.77,65.416 +44176,188.66,65.06 +44177,193.87,66.199 +44178,191.63,65.812 +44179,189.47,65.422 +44180,187.38,65.031 +44181,192.52,66.273 +44182,190.3,65.852 +44183,188.17,65.428 +44184,186.11,65.003 +44185,191.16,66.348 +44186,188.97,65.892 +44187,186.87,65.434 +44188,184.83,64.975 +44189,189.8,66.422 +44190,187.65,65.933 +44191,185.57,65.44 +44192,183.56,64.947 +44193,188.44,66.495 +44194,186.32,65.973 +44195,184.27,65.447 +44196,182.28,64.919 +44197,187.08,66.568 +44198,184.99,66.012 +44199,182.97,65.453 +44200,181.01,64.893 +44201,185.72,66.641 +44202,183.66,66.052 +44203,181.67,65.46 +44204,179.74,64.866 +44205,184.35,66.713 +44206,182.33,66.092 +44207,180.37,65.467 +44208,178.48,64.84 +44209,182.99,66.784 +44210,181,66.131 +44211,179.08,65.474 +44212,177.21,64.815 +44213,181.62,66.855 +44214,179.67,66.17 +44215,177.78,65.481 +44216,175.94,64.79 +44217,180.25,66.925 +44218,178.34,66.209 +44219,176.48,65.489 +44220,174.68,64.765 +44221,178.88,66.994 +44222,177.01,66.248 +44223,175.19,65.496 +44224,173.42,64.741 +44225,177.51,67.063 +44226,175.67,66.286 +44227,173.89,65.504 +44228,172.16,64.718 +44229,176.14,67.132 +44230,174.34,66.324 +44231,172.6,65.512 +44232,170.9,64.696 +44233,174.76,67.199 +44234,173.01,66.362 +44235,171.3,65.52 +44236,169.64,64.674 +44237,173.39,67.266 +44238,171.67,66.4 +44239,170.01,65.529 +44240,168.38,64.652 +44241,172.01,67.332 +44242,170.34,66.438 +44243,168.71,65.537 +44244,167.13,64.632 +44245,170.63,67.397 +44246,169.01,66.475 +44247,167.42,65.546 +44248,165.87,64.612 +44249,169.25,67.462 +44250,167.67,66.512 +44251,166.13,65.555 +44252,164.62,64.593 +44253,167.88,67.525 +44254,166.34,66.549 +44255,164.84,65.565 +44256,163.37,64.575 +44257,166.49,67.588 +44258,165,66.585 +44259,163.54,65.574 +44260,162.12,64.557 +44261,165.11,67.65 +44262,163.66,66.621 +44263,162.25,65.584 +44264,160.87,64.541 +44265,163.73,67.711 +44266,162.33,66.657 +44267,160.96,65.594 +44268,159.62,64.525 +44269,162.35,67.772 +44270,160.99,66.692 +44271,159.67,65.605 +44272,158.38,64.51 +44273,160.96,67.831 +44274,159.65,66.728 +44275,158.38,65.616 +44276,157.13,64.496 +44277,159.58,67.889 +44278,158.32,66.763 +44279,157.09,65.627 +44280,155.89,64.483 +44281,158.19,67.947 +44282,156.98,66.797 +44283,155.8,65.638 +44284,154.64,64.471 +44285,156.81,68.003 +44286,155.64,66.831 +44287,154.51,65.65 +44288,153.4,64.459 +44289,155.42,68.059 +44290,154.3,66.865 +44291,153.22,65.662 +44292,152.16,64.449 +44293,154.03,68.113 +44294,152.96,66.899 +44295,151.93,65.674 +44296,150.92,64.44 +44297,152.64,68.167 +44298,151.63,66.932 +44299,150.64,65.687 +44300,149.67,64.431 +44301,151.25,68.219 +44302,150.29,66.965 +44303,149.35,65.699 +44304,148.44,64.424 +44305,149.86,68.27 +44306,148.95,66.997 +44307,148.06,65.713 +44308,147.2,64.418 +44309,148.47,68.321 +44310,147.61,67.03 +44311,146.77,65.726 +44312,145.96,64.413 +44313,147.08,68.37 +44314,146.27,67.061 +44315,145.48,65.74 +44316,144.72,64.409 +44317,145.69,68.418 +44318,144.93,67.093 +44319,144.19,65.755 +44320,143.48,64.406 +44321,144.3,68.465 +44322,143.59,67.124 +44323,142.91,65.769 +44324,142.25,64.404 +44325,142.9,68.511 +44326,142.25,67.154 +44327,141.62,65.784 +44328,141.01,64.403 +44329,141.51,68.556 +44330,140.91,67.185 +44331,140.33,65.8 +44332,139.78,64.403 +44333,140.12,68.6 +44334,139.57,67.215 +44335,139.04,65.816 +44336,138.54,64.404 +44337,138.73,68.643 +44338,138.23,67.244 +44339,137.75,65.832 +44340,137.31,64.407 +44341,137.33,68.684 +44342,136.89,67.273 +44343,136.47,65.848 +44344,136.08,64.411 +44345,135.94,68.724 +44346,135.54,67.302 +44347,135.18,65.865 +44348,134.84,64.416 +44349,134.54,68.764 +44350,134.2,67.33 +44351,133.89,65.883 +44352,133.61,64.422 +44353,133.15,68.802 +44354,132.86,67.358 +44355,132.6,65.9 +44356,132.38,64.429 +44357,131.76,68.838 +44358,131.52,67.386 +44359,131.32,65.918 +44360,131.15,64.437 +44361,130.36,68.874 +44362,130.18,67.413 +44363,130.03,65.937 +44364,129.91,64.447 +44365,128.97,68.908 +44366,128.84,67.439 +44367,128.74,65.956 +44368,128.68,64.458 +44369,127.57,68.942 +44370,127.5,67.466 +44371,127.46,65.975 +44372,127.45,64.47 +44373,126.18,68.973 +44374,126.16,67.492 +44375,126.17,65.994 +44376,126.22,64.483 +44377,124.79,69.004 +44378,124.82,67.517 +44379,124.88,66.014 +44380,124.99,64.498 +44381,123.39,69.034 +44382,123.47,67.542 +44383,123.59,66.035 +44384,123.76,64.513 +44385,122,69.062 +44386,122.13,67.567 +44387,122.31,66.056 +44388,122.52,64.53 +44389,120.61,69.089 +44390,120.79,67.591 +44391,121.02,66.077 +44392,121.29,64.549 +44393,119.21,69.115 +44394,119.45,67.615 +44395,119.73,66.099 +44396,120.06,64.568 +44397,117.82,69.14 +44398,118.11,67.638 +44399,118.45,66.121 +44400,118.83,64.589 +44401,116.43,69.164 +44402,116.77,67.661 +44403,117.16,66.143 +44404,117.59,64.611 +44405,115.03,69.186 +44406,115.43,67.684 +44407,115.87,66.166 +44408,116.36,64.634 +44409,113.64,69.207 +44410,114.09,67.706 +44411,114.58,66.189 +44412,115.13,64.658 +44413,112.25,69.227 +44414,112.75,67.727 +44415,113.29,66.213 +44416,113.9,64.684 +44417,110.86,69.245 +44418,111.41,67.749 +44419,112.01,66.237 +44420,112.66,64.711 +44421,109.47,69.263 +44422,110.07,67.77 +44423,110.72,66.261 +44424,111.43,64.739 +44425,108.08,69.279 +44426,108.73,67.79 +44427,109.43,66.286 +44428,110.19,64.768 +44429,106.69,69.294 +44430,107.39,67.81 +44431,108.14,66.311 +44432,108.96,64.799 +44433,105.3,69.308 +44434,106.05,67.83 +44435,106.85,66.337 +44436,107.72,64.831 +44437,103.92,69.32 +44438,104.71,67.849 +44439,105.56,66.363 +44440,106.48,64.864 +44441,102.53,69.332 +44442,103.37,67.868 +44443,104.27,66.39 +44444,105.25,64.898 +44445,101.14,69.342 +44446,102.03,67.886 +44447,102.98,66.416 +44448,104.01,64.933 +44449,99.756,69.351 +44450,100.69,67.904 +44451,101.69,66.444 +44452,102.77,64.97 +44453,98.371,69.359 +44454,99.352,67.922 +44455,100.4,66.471 +44456,101.53,65.008 +44457,96.987,69.366 +44458,98.013,67.939 +44459,99.112,66.499 +44460,100.29,65.047 +44461,95.604,69.371 +44462,96.675,67.956 +44463,97.821,66.527 +44464,99.048,65.087 +44465,94.221,69.376 +44466,95.337,67.972 +44467,96.53,66.556 +44468,97.806,65.128 +44469,92.84,69.379 +44470,94,67.988 +44471,95.238,66.585 +44472,96.563,65.171 +44473,91.459,69.381 +44474,92.663,68.004 +44475,93.946,66.615 +44476,95.318,65.214 +44477,90.079,69.382 +44478,91.326,68.019 +44479,92.654,66.645 +44480,94.073,65.259 +44481,88.701,69.382 +44482,89.989,68.034 +44483,91.361,66.675 +44484,92.827,65.305 +44485,87.323,69.381 +44486,88.653,68.049 +44487,90.068,66.705 +44488,91.579,65.352 +44489,85.947,69.379 +44490,87.317,68.063 +44491,88.775,66.736 +44492,90.33,65.4 +44493,84.571,69.375 +44494,85.982,68.077 +44495,87.481,66.768 +44496,89.08,65.449 +44497,83.197,69.371 +44498,84.647,68.09 +44499,86.187,66.799 +44500,87.829,65.499 +44501,81.823,69.366 +44502,83.312,68.103 +44503,84.893,66.831 +44504,86.577,65.55 +44505,80.451,69.359 +44506,81.977,68.116 +44507,83.598,66.863 +44508,85.323,65.602 +44509,79.08,69.352 +44510,80.643,68.129 +44511,82.302,66.896 +44512,84.068,65.656 +44513,77.711,69.344 +44514,79.31,68.141 +44515,81.006,66.929 +44516,82.812,65.71 +44517,76.342,69.334 +44518,77.977,68.152 +44519,79.71,66.962 +44520,81.554,65.765 +44521,74.975,69.324 +44522,76.644,68.164 +44523,78.413,66.996 +44524,80.295,65.821 +44525,73.609,69.313 +44526,75.312,68.175 +44527,77.116,67.029 +44528,79.034,65.878 +44529,72.244,69.301 +44530,73.98,68.186 +44531,75.818,67.064 +44532,77.772,65.936 +44533,70.881,69.288 +44534,72.648,68.196 +44535,74.519,67.098 +44536,76.508,65.995 +44537,69.519,69.274 +44538,71.317,68.206 +44539,73.221,67.133 +44540,75.243,66.054 +44541,68.159,69.259 +44542,69.987,68.216 +44543,71.921,67.168 +44544,73.976,66.115 +44545,66.799,69.243 +44546,68.657,68.226 +44547,70.621,67.203 +44548,72.707,66.176 +44549,65.442,69.227 +44550,67.327,68.235 +44551,69.321,67.239 +44552,71.437,66.238 +44553,64.085,69.21 +44554,65.998,68.244 +44555,68.02,67.274 +44556,70.165,66.301 +44557,62.73,69.192 +44558,64.67,68.253 +44559,66.718,67.31 +44560,68.892,66.365 +44561,61.377,69.173 +44562,63.342,68.262 +44563,65.416,67.347 +44564,67.617,66.43 +44565,60.025,69.153 +44566,62.014,68.27 +44567,64.114,67.383 +44568,66.34,66.495 +44569,58.675,69.133 +44570,60.687,68.278 +44571,62.811,67.42 +44572,65.061,66.56 +44573,57.326,69.112 +44574,59.36,68.286 +44575,61.507,67.457 +44576,63.781,66.627 +44577,55.978,69.091 +44578,58.034,68.293 +44579,60.202,67.494 +44580,62.499,66.694 +44581,54.633,69.068 +44582,56.709,68.301 +44583,58.897,67.531 +44584,61.215,66.762 +44585,53.288,69.045 +44586,55.384,68.308 +44587,57.592,67.569 +44588,59.929,66.83 +44589,51.946,69.022 +44590,54.059,68.315 +44591,56.286,67.607 +44592,58.642,66.899 +44593,50.605,68.998 +44594,52.736,68.321 +44595,54.979,67.645 +44596,57.352,66.969 +44597,49.265,68.973 +44598,51.412,68.328 +44599,53.672,67.683 +44600,56.061,67.038 +44601,47.927,68.948 +44602,50.089,68.334 +44603,52.364,67.721 +44604,54.768,67.109 +44605,46.591,68.923 +44606,48.767,68.341 +44607,51.055,67.759 +44608,53.473,67.18 +44609,45.257,68.896 +44610,47.446,68.347 +44611,49.746,67.798 +44612,52.176,67.251 +44613,43.924,68.87 +44614,46.124,68.352 +44615,48.437,67.836 +44616,50.877,67.323 +44617,42.593,68.843 +44618,44.804,68.358 +44619,47.126,67.875 +44620,49.577,67.395 +44621,41.263,68.816 +44622,43.484,68.364 +44623,45.815,67.914 +44624,48.274,67.467 +44625,39.935,68.788 +44626,42.164,68.369 +44627,44.504,67.953 +44628,46.97,67.54 +44629,38.609,68.76 +44630,40.846,68.375 +44631,43.191,67.992 +44632,45.663,67.613 +44633,37.284,68.731 +44634,39.527,68.38 +44635,41.879,68.032 +44636,44.355,67.687 +44637,35.962,68.703 +44638,38.21,68.385 +44639,40.565,68.071 +44640,43.045,67.76 +44641,34.64,68.674 +44642,36.892,68.39 +44643,39.251,68.11 +44644,41.733,67.834 +44645,33.321,68.644 +44646,35.576,68.395 +44647,37.936,68.15 +44648,40.419,67.908 +44649,32.003,68.615 +44650,34.26,68.4 +44651,36.621,68.189 +44652,39.103,67.982 +44653,30.687,68.585 +44654,32.944,68.405 +44655,35.305,68.229 +44656,37.785,68.056 +44657,29.373,68.556 +44658,31.63,68.41 +44659,33.988,68.268 +44660,36.465,68.131 +44661,28.06,68.526 +44662,30.315,68.415 +44663,32.671,68.308 +44664,35.144,68.205 +44665,26.75,68.496 +44666,29.002,68.42 +44667,31.353,68.347 +44668,33.82,68.28 +44669,25.44,68.466 +44670,27.689,68.424 +44671,30.035,68.387 +44672,32.495,68.354 +44673,24.133,68.436 +44674,26.376,68.429 +44675,28.716,68.426 +44676,31.168,68.429 +44677,22.827,68.406 +44678,25.064,68.434 +44679,27.396,68.466 +44680,29.838,68.503 +44681,21.523,68.376 +44682,23.753,68.438 +44683,26.076,68.506 +44684,28.507,68.577 +44685,20.221,68.346 +44686,22.442,68.443 +44687,24.755,68.545 +44688,27.175,68.652 +44689,18.92,68.316 +44690,21.131,68.448 +44691,23.433,68.585 +44692,25.84,68.726 +44693,17.621,68.286 +44694,19.822,68.453 +44695,22.111,68.624 +44696,24.504,68.8 +44697,16.324,68.256 +44698,18.513,68.458 +44699,20.788,68.663 +44700,23.165,68.873 +44701,15.028,68.227 +44702,17.204,68.462 +44703,19.465,68.703 +44704,21.825,68.947 +44705,13.734,68.197 +44706,15.896,68.467 +44707,18.141,68.742 +44708,20.483,69.02 +44709,12.442,68.168 +44710,14.588,68.472 +44711,16.816,68.781 +44712,19.14,69.094 +44713,11.151,68.139 +44714,13.281,68.477 +44715,15.491,68.82 +44716,17.794,69.166 +44717,9.8624,68.11 +44718,11.975,68.483 +44719,14.166,68.859 +44720,16.447,69.239 +44721,8.575,68.082 +44722,10.669,68.488 +44723,12.839,68.898 +44724,15.099,69.311 +44725,7.2892,68.054 +44726,9.3636,68.493 +44727,11.513,68.936 +44728,13.748,69.383 +44729,6.0051,68.026 +44730,8.0587,68.499 +44731,10.185,68.975 +44732,12.396,69.454 +44733,4.7225,67.999 +44734,6.7544,68.505 +44735,8.8573,69.013 +44736,11.043,69.525 +44737,3.4414,67.972 +44738,5.4506,68.51 +44739,7.5289,69.052 +44740,9.6873,69.596 +44741,2.162,67.946 +44742,4.1473,68.516 +44743,6.1999,69.09 +44744,8.3305,69.666 +44745,0.88402,67.92 +44746,2.8445,68.522 +44747,4.8703,69.128 +44748,6.9721,69.735 +44749,359.61,67.894 +44750,1.5421,68.528 +44751,3.5403,69.165 +44752,5.6121,69.804 +44753,358.33,67.869 +44754,0.24029,68.535 +44755,2.2097,69.203 +44756,4.2507,69.873 +44757,357.06,67.845 +44758,358.94,68.541 +44759,0.87864,69.24 +44760,2.8877,69.941 +44761,355.79,67.821 +44762,357.64,68.548 +44763,359.55,69.278 +44764,1.5233,70.008 +44765,354.52,67.797 +44766,356.34,68.555 +44767,358.21,69.315 +44768,0.15755,70.074 +44769,353.25,67.774 +44770,355.04,68.562 +44771,356.88,69.351 +44772,358.79,70.141 +44773,351.98,67.752 +44774,353.74,68.57 +44775,355.55,69.388 +44776,357.42,70.206 +44777,350.71,67.731 +44778,352.44,68.577 +44779,354.22,69.424 +44780,356.05,70.271 +44781,349.45,67.71 +44782,351.14,68.585 +44783,352.88,69.46 +44784,354.68,70.335 +44785,348.19,67.69 +44786,349.84,68.593 +44787,351.55,69.496 +44788,353.31,70.398 +44789,346.92,67.671 +44790,348.54,68.601 +44791,350.21,69.532 +44792,351.93,70.46 +44793,345.66,67.652 +44794,347.25,68.61 +44795,348.88,69.567 +44796,350.56,70.522 +44797,344.4,67.634 +44798,345.95,68.619 +44799,347.54,69.602 +44800,349.18,70.583 +44801,343.14,67.617 +44802,344.65,68.628 +44803,346.21,69.637 +44804,347.81,70.643 +44805,341.89,67.601 +44806,343.36,68.637 +44807,344.87,69.671 +44808,346.43,70.702 +44809,340.63,67.586 +44810,342.06,68.647 +44811,343.53,69.706 +44812,345.05,70.761 +44813,339.37,67.571 +44814,340.77,68.657 +44815,342.2,69.739 +44816,343.67,70.818 +44817,338.12,67.558 +44818,339.47,68.667 +44819,340.86,69.773 +44820,342.29,70.875 +44821,336.87,67.545 +44822,338.18,68.677 +44823,339.52,69.806 +44824,340.9,70.931 +44825,335.62,67.533 +44826,336.88,68.688 +44827,338.18,69.839 +44828,339.52,70.986 +44829,334.37,67.522 +44830,335.59,68.699 +44831,336.84,69.872 +44832,338.14,71.039 +44833,333.12,67.512 +44834,334.29,68.711 +44835,335.5,69.904 +44836,336.75,71.092 +44837,331.87,67.503 +44838,333,68.722 +44839,334.16,69.936 +44840,335.37,71.144 +44841,330.62,67.496 +44842,331.71,68.734 +44843,332.83,69.968 +44844,333.98,71.195 +44845,329.37,67.489 +44846,330.41,68.747 +44847,331.49,69.999 +44848,332.59,71.245 +44849,328.13,67.483 +44850,329.12,68.759 +44851,330.15,70.03 +44852,331.2,71.294 +44853,326.88,67.478 +44854,327.83,68.772 +44855,328.81,70.061 +44856,329.81,71.342 +44857,325.64,67.474 +44858,326.54,68.786 +44859,327.46,70.091 +44860,328.43,71.389 +44861,324.39,67.471 +44862,325.24,68.8 +44863,326.12,70.121 +44864,327.04,71.435 +44865,323.15,67.47 +44866,323.95,68.814 +44867,324.78,70.151 +44868,325.64,71.48 +44869,321.91,67.469 +44870,322.66,68.828 +44871,323.44,70.18 +44872,324.25,71.523 +44873,320.66,67.47 +44874,321.37,68.843 +44875,322.1,70.209 +44876,322.86,71.566 +44877,319.42,67.471 +44878,320.08,68.858 +44879,320.76,70.237 +44880,321.47,71.607 +44881,318.18,67.474 +44882,318.79,68.874 +44883,319.42,70.265 +44884,320.08,71.648 +44885,316.94,67.478 +44886,317.49,68.89 +44887,318.07,70.293 +44888,318.68,71.687 +44889,315.7,67.483 +44890,316.2,68.906 +44891,316.73,70.321 +44892,317.29,71.725 +44893,314.46,67.489 +44894,314.91,68.923 +44895,315.39,70.347 +44896,315.9,71.762 +44897,313.22,67.497 +44898,313.62,68.94 +44899,314.05,70.374 +44900,314.5,71.798 +44901,311.99,67.505 +44902,312.33,68.957 +44903,312.71,70.4 +44904,313.11,71.833 +44905,310.75,67.515 +44906,311.04,68.975 +44907,311.36,70.426 +44908,311.72,71.866 +44909,309.51,67.526 +44910,309.75,68.993 +44911,310.02,70.451 +44912,310.32,71.899 +44913,308.27,67.538 +44914,308.46,69.012 +44915,308.68,70.476 +44916,308.93,71.93 +44917,307.04,67.552 +44918,307.17,69.031 +44919,307.34,70.501 +44920,307.53,71.96 +44921,305.8,67.566 +44922,305.88,69.051 +44923,305.99,70.525 +44924,306.14,71.989 +44925,304.56,67.582 +44926,304.59,69.07 +44927,304.65,70.549 +44928,304.74,72.016 +44929,303.32,67.599 +44930,303.3,69.091 +44931,303.31,70.572 +44932,303.35,72.043 +44933,302.09,67.617 +44934,302.01,69.111 +44935,301.96,70.595 +44936,301.96,72.068 +44937,300.85,67.637 +44938,300.72,69.132 +44939,300.62,70.618 +44940,300.56,72.092 +44941,299.61,67.658 +44942,299.43,69.154 +44943,299.28,70.64 +44944,299.17,72.115 +44945,298.38,67.68 +44946,298.14,69.176 +44947,297.94,70.662 +44948,297.77,72.137 +44949,297.14,67.703 +44950,296.85,69.198 +44951,296.59,70.683 +44952,296.38,72.157 +44953,295.9,67.727 +44954,295.56,69.22 +44955,295.25,70.704 +44956,294.99,72.177 +44957,294.66,67.753 +44958,294.26,69.244 +44959,293.91,70.725 +44960,293.59,72.195 +44961,293.42,67.779 +44962,292.97,69.267 +44963,292.57,70.745 +44964,292.2,72.212 +44965,292.19,67.807 +44966,291.68,69.291 +44967,291.22,70.765 +44968,290.81,72.228 +44969,290.95,67.837 +44970,290.39,69.315 +44971,289.88,70.784 +44972,289.42,72.243 +44973,289.71,67.867 +44974,289.1,69.34 +44975,288.54,70.803 +44976,288.03,72.256 +44977,288.47,67.899 +44978,287.81,69.365 +44979,287.2,70.822 +44980,286.63,72.268 +44981,287.23,67.931 +44982,286.52,69.39 +44983,285.86,70.84 +44984,285.24,72.28 +44985,285.99,67.965 +44986,285.22,69.416 +44987,284.51,70.858 +44988,283.85,72.29 +44989,284.75,68.001 +44990,283.93,69.442 +44991,283.17,70.875 +44992,282.47,72.298 +44993,283.51,68.037 +44994,282.64,69.469 +44995,281.83,70.892 +44996,281.08,72.306 +44997,282.26,68.075 +44998,281.35,69.496 +44999,280.49,70.909 +45000,279.69,72.313 +45001,281.02,68.113 +45002,280.06,69.523 +45003,279.15,70.925 +45004,278.3,72.318 +45005,279.78,68.153 +45006,278.76,69.551 +45007,277.81,70.941 +45008,276.92,72.323 +45009,278.53,68.194 +45010,277.47,69.579 +45011,276.47,70.956 +45012,275.53,72.326 +45013,277.29,68.236 +45014,276.18,69.607 +45015,275.13,70.972 +45016,274.14,72.328 +45017,276.04,68.279 +45018,274.88,69.636 +45019,273.79,70.986 +45020,272.76,72.329 +45021,274.79,68.324 +45022,273.59,69.665 +45023,272.45,71.001 +45024,271.38,72.329 +45025,273.55,68.369 +45026,272.29,69.695 +45027,271.11,71.015 +45028,269.99,72.328 +45029,272.3,68.416 +45030,271,69.725 +45031,269.77,71.028 +45032,268.61,72.326 +45033,271.05,68.463 +45034,269.7,69.755 +45035,268.43,71.042 +45036,267.23,72.322 +45037,269.8,68.512 +45038,268.41,69.785 +45039,267.1,71.055 +45040,265.85,72.318 +45041,268.54,68.561 +45042,267.11,69.816 +45043,265.76,71.067 +45044,264.47,72.313 +45045,267.29,68.612 +45046,265.82,69.848 +45047,264.42,71.08 +45048,263.1,72.307 +45049,266.04,68.664 +45050,264.52,69.879 +45051,263.08,71.092 +45052,261.72,72.299 +45053,264.78,68.716 +45054,263.22,69.911 +45055,261.75,71.103 +45056,260.34,72.291 +45057,263.53,68.77 +45058,261.92,69.943 +45059,260.41,71.115 +45060,258.97,72.282 +45061,262.27,68.824 +45062,260.63,69.976 +45063,259.07,71.126 +45064,257.6,72.272 +45065,261.01,68.88 +45066,259.33,70.009 +45067,257.74,71.136 +45068,256.22,72.261 +45069,259.75,68.936 +45070,258.03,70.042 +45071,256.4,71.147 +45072,254.85,72.249 +45073,258.49,68.993 +45074,256.73,70.075 +45075,255.07,71.157 +45076,253.48,72.236 +45077,257.22,69.052 +45078,255.43,70.109 +45079,253.73,71.167 +45080,252.12,72.223 +45081,255.96,69.111 +45082,254.13,70.143 +45083,252.4,71.176 +45084,250.75,72.208 +45085,254.69,69.17 +45086,252.83,70.177 +45087,251.06,71.185 +45088,249.38,72.193 +45089,253.43,69.231 +45090,251.53,70.212 +45091,249.73,71.194 +45092,248.02,72.176 +45093,252.16,69.292 +45094,250.23,70.247 +45095,248.4,71.203 +45096,246.65,72.16 +45097,250.89,69.355 +45098,248.93,70.282 +45099,247.06,71.212 +45100,245.29,72.142 +45101,249.62,69.418 +45102,247.62,70.317 +45103,245.73,71.22 +45104,243.93,72.123 +45105,248.34,69.481 +45106,246.32,70.353 +45107,244.4,71.228 +45108,242.57,72.104 +45109,247.07,69.546 +45110,245.02,70.389 +45111,243.07,71.235 +45112,241.22,72.084 +45113,245.79,69.611 +45114,243.71,70.425 +45115,241.74,71.243 +45116,239.86,72.063 +45117,244.51,69.676 +45118,242.41,70.461 +45119,240.41,71.25 +45120,238.5,72.042 +45121,243.23,69.743 +45122,241.1,70.497 +45123,239.08,71.257 +45124,237.15,72.02 +45125,241.95,69.809 +45126,239.8,70.534 +45127,237.75,71.264 +45128,235.8,71.998 +45129,240.67,69.877 +45130,238.49,70.571 +45131,236.42,71.271 +45132,234.45,71.975 +45133,239.38,69.945 +45134,237.19,70.608 +45135,235.09,71.277 +45136,233.1,71.951 +45137,238.1,70.013 +45138,235.88,70.645 +45139,233.77,71.283 +45140,231.75,71.927 +45141,236.81,70.082 +45142,234.57,70.682 +45143,232.44,71.29 +45144,230.41,71.902 +45145,235.52,70.152 +45146,233.26,70.72 +45147,231.11,71.296 +45148,229.06,71.877 +45149,234.23,70.222 +45150,231.95,70.758 +45151,229.79,71.301 +45152,227.72,71.851 +45153,232.94,70.292 +45154,230.64,70.796 +45155,228.46,71.307 +45156,226.38,71.825 +45157,231.64,70.363 +45158,229.33,70.833 +45159,227.14,71.312 +45160,225.04,71.798 +45161,230.34,70.434 +45162,228.02,70.872 +45163,225.81,71.318 +45164,223.7,71.771 +45165,229.04,70.505 +45166,226.71,70.91 +45167,224.49,71.323 +45168,222.36,71.744 +45169,227.74,70.577 +45170,225.4,70.948 +45171,223.16,71.328 +45172,221.03,71.716 +45173,226.44,70.649 +45174,224.09,70.986 +45175,221.84,71.333 +45176,219.7,71.688 +45177,225.14,70.722 +45178,222.77,71.025 +45179,220.52,71.338 +45180,218.36,71.659 +45181,223.83,70.794 +45182,221.46,71.064 +45183,219.2,71.343 +45184,217.03,71.631 +45185,222.52,70.867 +45186,220.15,71.102 +45187,217.88,71.348 +45188,215.71,71.602 +45189,221.21,70.94 +45190,218.83,71.141 +45191,216.56,71.352 +45192,214.38,71.573 +45193,219.9,71.013 +45194,217.51,71.18 +45195,215.24,71.357 +45196,213.05,71.543 +45197,218.59,71.086 +45198,216.2,71.218 +45199,213.92,71.362 +45200,211.73,71.514 +45201,217.27,71.159 +45202,214.88,71.257 +45203,212.6,71.366 +45204,210.41,71.484 +45205,215.96,71.232 +45206,213.56,71.296 +45207,211.28,71.371 +45208,209.09,71.455 +45209,214.64,71.306 +45210,212.25,71.335 +45211,209.96,71.375 +45212,207.77,71.425 +45213,213.32,71.379 +45214,210.93,71.374 +45215,208.64,71.38 +45216,206.45,71.395 +45217,211.99,71.452 +45218,209.61,71.413 +45219,207.33,71.384 +45220,205.14,71.365 +45221,210.67,71.526 +45222,208.29,71.452 +45223,206.01,71.389 +45224,203.82,71.336 +45225,209.34,71.599 +45226,206.97,71.491 +45227,204.7,71.393 +45228,202.51,71.306 +45229,208.02,71.672 +45230,205.65,71.529 +45231,203.38,71.398 +45232,201.2,71.276 +45233,206.69,71.745 +45234,204.33,71.568 +45235,202.07,71.402 +45236,199.89,71.246 +45237,205.36,71.818 +45238,203,71.607 +45239,200.75,71.407 +45240,198.59,71.217 +45241,204.02,71.89 +45242,201.68,71.646 +45243,199.44,71.412 +45244,197.28,71.188 +45245,202.69,71.963 +45246,200.36,71.684 +45247,198.13,71.416 +45248,195.98,71.158 +45249,201.35,72.035 +45250,199.03,71.723 +45251,196.81,71.421 +45252,194.68,71.129 +45253,200.01,72.107 +45254,197.71,71.761 +45255,195.5,71.426 +45256,193.38,71.101 +45257,198.67,72.178 +45258,196.38,71.8 +45259,194.19,71.431 +45260,192.08,71.072 +45261,197.33,72.25 +45262,195.06,71.838 +45263,192.88,71.436 +45264,190.78,71.044 +45265,195.98,72.321 +45266,193.73,71.876 +45267,191.57,71.441 +45268,189.49,71.016 +45269,194.64,72.391 +45270,192.41,71.914 +45271,190.26,71.446 +45272,188.19,70.988 +45273,193.29,72.461 +45274,191.08,71.952 +45275,188.95,71.452 +45276,186.9,70.961 +45277,191.94,72.531 +45278,189.75,71.99 +45279,187.64,71.457 +45280,185.61,70.934 +45281,190.59,72.6 +45282,188.42,72.027 +45283,186.33,71.463 +45284,184.32,70.908 +45285,189.24,72.669 +45286,187.09,72.065 +45287,185.03,71.469 +45288,183.03,70.882 +45289,187.89,72.737 +45290,185.76,72.102 +45291,183.72,71.475 +45292,181.75,70.856 +45293,186.53,72.805 +45294,184.43,72.139 +45295,182.41,71.481 +45296,180.46,70.831 +45297,185.17,72.872 +45298,183.1,72.176 +45299,181.11,71.487 +45300,179.18,70.807 +45301,183.82,72.939 +45302,181.77,72.213 +45303,179.8,71.494 +45304,177.9,70.783 +45305,182.46,73.005 +45306,180.44,72.249 +45307,178.5,71.501 +45308,176.62,70.759 +45309,181.09,73.07 +45310,179.11,72.286 +45311,177.19,71.508 +45312,175.34,70.737 +45313,179.73,73.135 +45314,177.77,72.322 +45315,175.89,71.515 +45316,174.06,70.714 +45317,178.37,73.199 +45318,176.44,72.358 +45319,174.58,71.522 +45320,172.79,70.693 +45321,177,73.263 +45322,175.11,72.394 +45323,173.28,71.53 +45324,171.51,70.672 +45325,175.63,73.326 +45326,173.77,72.429 +45327,171.98,71.538 +45328,170.24,70.652 +45329,174.27,73.388 +45330,172.44,72.464 +45331,170.68,71.546 +45332,168.97,70.632 +45333,172.9,73.449 +45334,171.1,72.499 +45335,169.37,71.554 +45336,167.7,70.614 +45337,171.53,73.509 +45338,169.77,72.534 +45339,168.07,71.562 +45340,166.43,70.596 +45341,170.15,73.569 +45342,168.43,72.568 +45343,166.77,71.571 +45344,165.16,70.578 +45345,168.78,73.628 +45346,167.1,72.603 +45347,165.47,71.58 +45348,163.89,70.562 +45349,167.41,73.686 +45350,165.76,72.636 +45351,164.17,71.59 +45352,162.63,70.546 +45353,166.03,73.743 +45354,164.42,72.67 +45355,162.87,71.599 +45356,161.36,70.532 +45357,164.65,73.799 +45358,163.09,72.703 +45359,161.57,71.609 +45360,160.1,70.518 +45361,163.27,73.855 +45362,161.75,72.737 +45363,160.27,71.62 +45364,158.84,70.505 +45365,161.9,73.909 +45366,160.41,72.769 +45367,158.97,71.63 +45368,157.58,70.493 +45369,160.52,73.963 +45370,159.07,72.802 +45371,157.67,71.641 +45372,156.32,70.482 +45373,159.13,74.016 +45374,157.73,72.834 +45375,156.38,71.652 +45376,155.06,70.471 +45377,157.75,74.067 +45378,156.39,72.866 +45379,155.08,71.664 +45380,153.8,70.462 +45381,156.37,74.118 +45382,155.05,72.897 +45383,153.78,71.675 +45384,152.55,70.454 +45385,154.98,74.168 +45386,153.71,72.928 +45387,152.48,71.688 +45388,151.29,70.447 +45389,153.6,74.217 +45390,152.37,72.959 +45391,151.19,71.7 +45392,150.04,70.44 +45393,152.21,74.265 +45394,151.03,72.99 +45395,149.89,71.713 +45396,148.78,70.435 +45397,150.83,74.311 +45398,149.69,73.02 +45399,148.59,71.726 +45400,147.53,70.431 +45401,149.44,74.357 +45402,148.35,73.05 +45403,147.3,71.74 +45404,146.28,70.428 +45405,148.05,74.402 +45406,147.01,73.079 +45407,146,71.753 +45408,145.03,70.426 +45409,146.66,74.445 +45410,145.67,73.108 +45411,144.7,71.768 +45412,143.78,70.425 +45413,145.27,74.488 +45414,144.32,73.137 +45415,143.41,71.782 +45416,142.53,70.425 +45417,143.88,74.529 +45418,142.98,73.165 +45419,142.11,71.797 +45420,141.28,70.426 +45421,142.49,74.57 +45422,141.64,73.193 +45423,140.82,71.813 +45424,140.03,70.429 +45425,141.1,74.609 +45426,140.3,73.221 +45427,139.52,71.828 +45428,138.78,70.432 +45429,139.71,74.647 +45430,138.95,73.248 +45431,138.23,71.844 +45432,137.54,70.437 +45433,138.32,74.684 +45434,137.61,73.275 +45435,136.93,71.861 +45436,136.29,70.442 +45437,136.93,74.72 +45438,136.27,73.302 +45439,135.64,71.878 +45440,135.04,70.449 +45441,135.53,74.755 +45442,134.92,73.328 +45443,134.35,71.895 +45444,133.8,70.457 +45445,134.14,74.789 +45446,133.58,73.354 +45447,133.05,71.913 +45448,132.55,70.467 +45449,132.75,74.821 +45450,132.24,73.379 +45451,131.76,71.931 +45452,131.31,70.477 +45453,131.35,74.853 +45454,130.89,73.404 +45455,130.46,71.949 +45456,130.06,70.489 +45457,129.96,74.883 +45458,129.55,73.429 +45459,129.17,71.968 +45460,128.82,70.502 +45461,128.57,74.912 +45462,128.21,73.453 +45463,127.88,71.987 +45464,127.58,70.516 +45465,127.17,74.94 +45466,126.86,73.477 +45467,126.58,72.007 +45468,126.33,70.531 +45469,125.78,74.966 +45470,125.52,73.5 +45471,125.29,72.027 +45472,125.09,70.548 +45473,124.38,74.992 +45474,124.17,73.523 +45475,124,72.047 +45476,123.85,70.565 +45477,122.99,75.016 +45478,122.83,73.546 +45479,122.7,72.068 +45480,122.61,70.584 +45481,121.59,75.04 +45482,121.48,73.568 +45483,121.41,72.089 +45484,121.36,70.604 +45485,120.2,75.062 +45486,120.14,73.59 +45487,120.11,72.111 +45488,120.12,70.626 +45489,118.81,75.083 +45490,118.8,73.611 +45491,118.82,72.133 +45492,118.88,70.648 +45493,117.41,75.102 +45494,117.45,73.632 +45495,117.53,72.155 +45496,117.64,70.672 +45497,116.02,75.121 +45498,116.11,73.653 +45499,116.23,72.178 +45500,116.39,70.697 +45501,114.62,75.138 +45502,114.76,73.673 +45503,114.94,72.201 +45504,115.15,70.723 +45505,113.23,75.154 +45506,113.42,73.693 +45507,113.65,72.225 +45508,113.91,70.751 +45509,111.84,75.169 +45510,112.08,73.713 +45511,112.35,72.249 +45512,112.67,70.779 +45513,110.44,75.183 +45514,110.73,73.732 +45515,111.06,72.273 +45516,111.42,70.809 +45517,109.05,75.196 +45518,109.39,73.751 +45519,109.76,72.298 +45520,110.18,70.84 +45521,107.66,75.207 +45522,108.04,73.769 +45523,108.47,72.324 +45524,108.94,70.873 +45525,106.26,75.218 +45526,106.7,73.787 +45527,107.18,72.349 +45528,107.69,70.906 +45529,104.87,75.227 +45530,105.36,73.805 +45531,105.88,72.375 +45532,106.45,70.941 +45533,103.48,75.235 +45534,104.01,73.822 +45535,104.59,72.402 +45536,105.2,70.977 +45537,102.09,75.242 +45538,102.67,73.839 +45539,103.29,72.428 +45540,103.96,71.014 +45541,100.7,75.248 +45542,101.33,73.855 +45543,102,72.456 +45544,102.71,71.052 +45545,99.31,75.253 +45546,99.984,73.871 +45547,100.7,72.483 +45548,101.46,71.091 +45549,97.921,75.257 +45550,98.641,73.887 +45551,99.406,72.511 +45552,100.22,71.132 +45553,96.533,75.259 +45554,97.298,73.902 +45555,98.11,72.54 +45556,98.97,71.173 +45557,95.145,75.261 +45558,95.956,73.917 +45559,96.814,72.568 +45560,97.722,71.216 +45561,93.758,75.261 +45562,94.614,73.932 +45563,95.518,72.597 +45564,96.474,71.26 +45565,92.371,75.261 +45566,93.272,73.946 +45567,94.222,72.627 +45568,95.224,71.305 +45569,90.986,75.259 +45570,91.93,73.96 +45571,92.925,72.657 +45572,93.974,71.351 +45573,89.601,75.256 +45574,90.589,73.973 +45575,91.628,72.687 +45576,92.723,71.398 +45577,88.217,75.253 +45578,89.247,73.987 +45579,90.331,72.717 +45580,91.471,71.446 +45581,86.834,75.248 +45582,87.906,74 +45583,89.033,72.748 +45584,90.218,71.496 +45585,85.452,75.242 +45586,86.566,74.012 +45587,87.735,72.779 +45588,88.965,71.546 +45589,84.07,75.236 +45590,85.225,74.024 +45591,86.437,72.811 +45592,87.71,71.597 +45593,82.69,75.228 +45594,83.885,74.036 +45595,85.139,72.843 +45596,86.454,71.649 +45597,81.31,75.219 +45598,82.546,74.048 +45599,83.84,72.875 +45600,85.198,71.703 +45601,79.932,75.21 +45602,81.206,74.059 +45603,82.541,72.907 +45604,83.94,71.757 +45605,78.554,75.199 +45606,79.867,74.07 +45607,81.241,72.94 +45608,82.682,71.812 +45609,77.178,75.188 +45610,78.528,74.081 +45611,79.941,72.973 +45612,81.422,71.868 +45613,75.803,75.176 +45614,77.19,74.091 +45615,78.641,73.007 +45616,80.161,71.925 +45617,74.428,75.163 +45618,75.852,74.101 +45619,77.34,73.041 +45620,78.899,71.983 +45621,73.055,75.149 +45622,74.514,74.111 +45623,76.039,73.075 +45624,77.636,72.042 +45625,71.683,75.134 +45626,73.177,74.12 +45627,74.737,73.109 +45628,76.371,72.101 +45629,70.313,75.118 +45630,71.84,74.13 +45631,73.435,73.144 +45632,75.106,72.162 +45633,68.943,75.102 +45634,70.503,74.139 +45635,72.133,73.178 +45636,73.839,72.223 +45637,67.575,75.085 +45638,69.167,74.147 +45639,70.83,73.214 +45640,72.57,72.285 +45641,66.208,75.067 +45642,67.831,74.156 +45643,69.527,73.249 +45644,71.301,72.348 +45645,64.842,75.048 +45646,66.496,74.164 +45647,68.223,73.285 +45648,70.03,72.411 +45649,63.477,75.029 +45650,65.161,74.172 +45651,66.919,73.32 +45652,68.757,72.476 +45653,62.114,75.008 +45654,63.827,74.18 +45655,65.614,73.357 +45656,67.483,72.541 +45657,60.752,74.988 +45658,62.493,74.187 +45659,64.309,73.393 +45660,66.208,72.606 +45661,59.392,74.966 +45662,61.159,74.195 +45663,63.003,73.429 +45664,64.931,72.673 +45665,58.032,74.944 +45666,59.826,74.202 +45667,61.697,73.466 +45668,63.653,72.739 +45669,56.675,74.922 +45670,58.493,74.209 +45671,60.39,73.503 +45672,62.373,72.807 +45673,55.318,74.898 +45674,57.161,74.216 +45675,59.083,73.54 +45676,61.092,72.875 +45677,53.963,74.875 +45678,55.829,74.222 +45679,57.775,73.578 +45680,59.809,72.944 +45681,52.61,74.85 +45682,54.498,74.229 +45683,56.467,73.615 +45684,58.525,73.013 +45685,51.258,74.826 +45686,53.167,74.235 +45687,55.158,73.653 +45688,57.239,73.082 +45689,49.907,74.8 +45690,51.837,74.241 +45691,53.849,73.691 +45692,55.951,73.152 +45693,48.558,74.775 +45694,50.507,74.247 +45695,52.539,73.729 +45696,54.662,73.223 +45697,47.21,74.748 +45698,49.178,74.253 +45699,51.228,73.767 +45700,53.371,73.294 +45701,45.864,74.722 +45702,47.849,74.258 +45703,49.917,73.805 +45704,52.078,73.365 +45705,44.519,74.695 +45706,46.521,74.264 +45707,48.606,73.844 +45708,50.784,73.437 +45709,43.176,74.668 +45710,45.193,74.269 +45711,47.294,73.882 +45712,49.488,73.509 +45713,41.835,74.64 +45714,43.866,74.275 +45715,45.981,73.921 +45716,48.19,73.581 +45717,40.495,74.612 +45718,42.539,74.28 +45719,44.668,73.96 +45720,46.891,73.654 +45721,39.156,74.584 +45722,41.213,74.285 +45723,43.354,73.999 +45724,45.59,73.727 +45725,37.819,74.555 +45726,39.887,74.29 +45727,42.04,74.037 +45728,44.287,73.8 +45729,36.484,74.527 +45730,38.562,74.295 +45731,40.725,74.076 +45732,42.983,73.873 +45733,35.15,74.498 +45734,37.238,74.3 +45735,39.409,74.116 +45736,41.677,73.946 +45737,33.818,74.469 +45738,35.913,74.305 +45739,38.093,74.155 +45740,40.369,74.02 +45741,32.488,74.44 +45742,34.59,74.31 +45743,36.776,74.194 +45744,39.059,74.094 +45745,31.159,74.41 +45746,33.267,74.315 +45747,35.459,74.233 +45748,37.747,74.167 +45749,29.831,74.381 +45750,31.944,74.319 +45751,34.141,74.272 +45752,36.434,74.241 +45753,28.505,74.351 +45754,30.622,74.324 +45755,32.823,74.311 +45756,35.119,74.315 +45757,27.181,74.322 +45758,29.301,74.329 +45759,31.504,74.351 +45760,33.802,74.389 +45761,25.859,74.292 +45762,27.98,74.334 +45763,30.184,74.39 +45764,32.484,74.463 +45765,24.538,74.263 +45766,26.659,74.339 +45767,28.864,74.429 +45768,31.163,74.537 +45769,23.218,74.233 +45770,25.34,74.343 +45771,27.543,74.468 +45772,29.841,74.61 +45773,21.901,74.204 +45774,24.02,74.348 +45775,26.222,74.508 +45776,28.518,74.684 +45777,20.585,74.175 +45778,22.702,74.353 +45779,24.9,74.547 +45780,27.192,74.757 +45781,19.27,74.146 +45782,21.383,74.358 +45783,23.577,74.586 +45784,25.865,74.831 +45785,17.957,74.117 +45786,20.066,74.363 +45787,22.254,74.625 +45788,24.535,74.904 +45789,16.646,74.088 +45790,18.748,74.368 +45791,20.93,74.664 +45792,23.205,74.976 +45793,15.336,74.059 +45794,17.432,74.373 +45795,19.606,74.703 +45796,21.872,75.049 +45797,14.028,74.031 +45798,16.116,74.379 +45799,18.281,74.742 +45800,20.538,75.121 +45801,12.722,74.003 +45802,14.8,74.384 +45803,16.956,74.78 +45804,19.202,75.193 +45805,11.417,73.975 +45806,13.485,74.39 +45807,15.63,74.819 +45808,17.864,75.265 +45809,10.113,73.948 +45810,12.17,74.395 +45811,14.303,74.858 +45812,16.524,75.336 +45813,8.8113,73.921 +45814,10.856,74.401 +45815,12.976,74.896 +45816,15.183,75.407 +45817,7.5111,73.894 +45818,9.5426,74.407 +45819,11.648,74.934 +45820,13.84,75.478 +45821,6.2123,73.868 +45822,8.2296,74.413 +45823,10.32,74.972 +45824,12.496,75.548 +45825,4.9151,73.842 +45826,6.9171,74.419 +45827,8.9913,75.01 +45828,11.15,75.618 +45829,3.6194,73.816 +45830,5.605,74.425 +45831,7.662,75.048 +45832,9.8021,75.687 +45833,2.3252,73.791 +45834,4.2935,74.432 +45835,6.3321,75.086 +45836,8.4527,75.755 +45837,1.0325,73.767 +45838,2.9824,74.438 +45839,5.0017,75.123 +45840,7.1018,75.824 +45841,359.74,73.743 +45842,1.6718,74.445 +45843,3.6707,75.161 +45844,5.7492,75.891 +45845,358.45,73.72 +45846,0.36174,74.452 +45847,2.3392,75.198 +45848,4.3951,75.958 +45849,357.16,73.697 +45850,359.05,74.459 +45851,1.0072,75.235 +45852,3.0395,76.024 +45853,355.88,73.675 +45854,357.74,74.467 +45855,359.67,75.272 +45856,1.6823,76.09 +45857,354.59,73.653 +45858,356.43,74.474 +45859,358.34,75.308 +45860,0.32369,76.155 +45861,353.31,73.632 +45862,355.13,74.482 +45863,357.01,75.344 +45864,358.96,76.22 +45865,352.02,73.612 +45866,353.82,74.49 +45867,355.67,75.38 +45868,357.6,76.283 +45869,350.74,73.593 +45870,352.51,74.499 +45871,354.34,75.416 +45872,356.24,76.346 +45873,349.46,73.574 +45874,351.2,74.507 +45875,353,75.452 +45876,354.87,76.409 +45877,348.18,73.556 +45878,349.9,74.516 +45879,351.67,75.487 +45880,353.51,76.47 +45881,346.91,73.539 +45882,348.59,74.525 +45883,350.33,75.522 +45884,352.14,76.531 +45885,345.63,73.522 +45886,347.29,74.535 +45887,349,75.557 +45888,350.77,76.591 +45889,344.36,73.506 +45890,345.98,74.544 +45891,347.66,75.592 +45892,349.4,76.65 +45893,343.08,73.492 +45894,344.68,74.554 +45895,346.32,75.626 +45896,348.03,76.708 +45897,341.81,73.478 +45898,343.37,74.564 +45899,344.99,75.66 +45900,346.66,76.765 +45901,340.54,73.465 +45902,342.07,74.575 +45903,343.65,75.694 +45904,345.29,76.822 +45905,339.27,73.452 +45906,340.76,74.586 +45907,342.31,75.727 +45908,343.91,76.878 +45909,338,73.441 +45910,339.46,74.597 +45911,340.97,75.761 +45912,342.54,76.932 +45913,336.73,73.431 +45914,338.16,74.608 +45915,339.63,75.793 +45916,341.16,76.986 +45917,335.47,73.421 +45918,336.85,74.62 +45919,338.29,75.826 +45920,339.78,77.039 +45921,334.2,73.413 +45922,335.55,74.632 +45923,336.95,75.858 +45924,338.4,77.091 +45925,332.94,73.406 +45926,334.25,74.645 +45927,335.61,75.89 +45928,337.02,77.142 +45929,331.67,73.399 +45930,332.95,74.657 +45931,334.27,75.922 +45932,335.64,77.192 +45933,330.41,73.394 +45934,331.65,74.67 +45935,332.93,75.953 +45936,334.26,77.24 +45937,329.15,73.389 +45938,330.35,74.684 +45939,331.59,75.984 +45940,332.88,77.288 +45941,327.89,73.386 +45942,329.05,74.698 +45943,330.24,76.014 +45944,331.49,77.335 +45945,326.63,73.384 +45946,327.75,74.712 +45947,328.9,76.045 +45948,330.11,77.381 +45949,325.37,73.383 +45950,326.44,74.727 +45951,327.56,76.074 +45952,328.72,77.426 +45953,324.11,73.382 +45954,325.14,74.741 +45955,326.22,76.104 +45956,327.33,77.469 +45957,322.85,73.384 +45958,323.85,74.757 +45959,324.87,76.133 +45960,325.95,77.512 +45961,321.6,73.386 +45962,322.55,74.772 +45963,323.53,76.162 +45964,324.56,77.553 +45965,320.34,73.389 +45966,321.25,74.788 +45967,322.19,76.19 +45968,323.17,77.594 +45969,319.09,73.393 +45970,319.95,74.805 +45971,320.84,76.218 +45972,321.78,77.633 +45973,317.83,73.399 +45974,318.65,74.822 +45975,319.5,76.246 +45976,320.39,77.671 +45977,316.58,73.406 +45978,317.35,74.839 +45979,318.16,76.273 +45980,319,77.708 +45981,315.33,73.414 +45982,316.05,74.856 +45983,316.81,76.3 +45984,317.61,77.744 +45985,314.07,73.423 +45986,314.75,74.874 +45987,315.47,76.327 +45988,316.22,77.779 +45989,312.82,73.433 +45990,313.45,74.893 +45991,314.12,76.353 +45992,314.83,77.813 +45993,311.57,73.445 +45994,312.16,74.912 +45995,312.78,76.379 +45996,313.43,77.845 +45997,310.32,73.457 +45998,310.86,74.931 +45999,311.43,76.404 +46000,312.04,77.877 +46001,309.07,73.471 +46002,309.56,74.95 +46003,310.09,76.429 +46004,310.65,77.907 +46005,307.82,73.486 +46006,308.26,74.97 +46007,308.74,76.454 +46008,309.25,77.936 +46009,306.57,73.503 +46010,306.97,74.991 +46011,307.4,76.478 +46012,307.86,77.964 +46013,305.32,73.52 +46014,305.67,75.012 +46015,306.05,76.502 +46016,306.47,77.99 +46017,304.07,73.539 +46018,304.37,75.033 +46019,304.7,76.525 +46020,305.07,78.016 +46021,302.82,73.559 +46022,303.07,75.054 +46023,303.36,76.549 +46024,303.68,78.04 +46025,301.57,73.58 +46026,301.78,75.076 +46027,302.01,76.571 +46028,302.28,78.063 +46029,300.32,73.603 +46030,300.48,75.099 +46031,300.67,76.593 +46032,300.89,78.085 +46033,299.07,73.626 +46034,299.18,75.122 +46035,299.32,76.615 +46036,299.49,78.106 +46037,297.83,73.651 +46038,297.88,75.145 +46039,297.98,76.637 +46040,298.1,78.125 +46041,296.58,73.677 +46042,296.59,75.169 +46043,296.63,76.658 +46044,296.7,78.144 +46045,295.33,73.705 +46046,295.29,75.193 +46047,295.28,76.679 +46048,295.31,78.161 +46049,294.08,73.733 +46050,293.99,75.217 +46051,293.94,76.699 +46052,293.91,78.177 +46053,292.83,73.763 +46054,292.69,75.242 +46055,292.59,76.719 +46056,292.52,78.192 +46057,291.58,73.794 +46058,291.4,75.267 +46059,291.25,76.738 +46060,291.13,78.206 +46061,290.33,73.827 +46062,290.1,75.293 +46063,289.9,76.758 +46064,289.73,78.219 +46065,289.09,73.86 +46066,288.8,75.319 +46067,288.55,76.776 +46068,288.34,78.23 +46069,287.84,73.895 +46070,287.5,75.346 +46071,287.21,76.795 +46072,286.94,78.24 +46073,286.59,73.931 +46074,286.21,75.373 +46075,285.86,76.813 +46076,285.55,78.249 +46077,285.34,73.968 +46078,284.91,75.4 +46079,284.52,76.83 +46080,284.16,78.257 +46081,284.09,74.006 +46082,283.61,75.428 +46083,283.17,76.848 +46084,282.76,78.264 +46085,282.84,74.046 +46086,282.31,75.456 +46087,281.82,76.865 +46088,281.37,78.27 +46089,281.59,74.086 +46090,281.01,75.484 +46091,280.48,76.881 +46092,279.98,78.275 +46093,280.34,74.128 +46094,279.72,75.513 +46095,279.13,76.897 +46096,278.59,78.278 +46097,279.08,74.171 +46098,278.42,75.542 +46099,277.79,76.913 +46100,277.2,78.281 +46101,277.83,74.215 +46102,277.12,75.572 +46103,276.44,76.928 +46104,275.81,78.282 +46105,276.58,74.26 +46106,275.82,75.602 +46107,275.1,76.943 +46108,274.42,78.283 +46109,275.33,74.307 +46110,274.52,75.632 +46111,273.75,76.958 +46112,273.03,78.282 +46113,274.07,74.354 +46114,273.22,75.663 +46115,272.41,76.972 +46116,271.64,78.28 +46117,272.82,74.403 +46118,271.92,75.694 +46119,271.07,76.986 +46120,270.25,78.277 +46121,271.56,74.452 +46122,270.62,75.726 +46123,269.72,77 +46124,268.86,78.273 +46125,270.31,74.503 +46126,269.32,75.758 +46127,268.38,77.013 +46128,267.48,78.269 +46129,269.05,74.555 +46130,268.02,75.79 +46131,267.03,77.026 +46132,266.09,78.263 +46133,267.79,74.607 +46134,266.72,75.822 +46135,265.69,77.039 +46136,264.71,78.256 +46137,266.53,74.661 +46138,265.42,75.855 +46139,264.35,77.051 +46140,263.32,78.248 +46141,265.27,74.716 +46142,264.12,75.888 +46143,263.01,77.064 +46144,261.94,78.239 +46145,264.01,74.772 +46146,262.81,75.922 +46147,261.66,77.075 +46148,260.56,78.23 +46149,262.75,74.828 +46150,261.51,75.956 +46151,260.32,77.087 +46152,259.18,78.219 +46153,261.49,74.886 +46154,260.21,75.99 +46155,258.98,77.098 +46156,257.8,78.208 +46157,260.23,74.945 +46158,258.91,76.024 +46159,257.64,77.109 +46160,256.42,78.195 +46161,258.97,75.004 +46162,257.6,76.059 +46163,256.3,77.119 +46164,255.04,78.182 +46165,257.7,75.064 +46166,256.3,76.094 +46167,254.95,77.129 +46168,253.66,78.168 +46169,256.43,75.126 +46170,255,76.129 +46171,253.61,77.139 +46172,252.28,78.153 +46173,255.17,75.188 +46174,253.69,76.165 +46175,252.27,77.149 +46176,250.91,78.137 +46177,253.9,75.25 +46178,252.39,76.201 +46179,250.93,77.159 +46180,249.53,78.121 +46181,252.63,75.314 +46182,251.08,76.237 +46183,249.59,77.168 +46184,248.16,78.104 +46185,251.36,75.378 +46186,249.78,76.274 +46187,248.25,77.177 +46188,246.79,78.086 +46189,250.09,75.444 +46190,248.47,76.31 +46191,246.92,77.186 +46192,245.42,78.067 +46193,248.81,75.51 +46194,247.16,76.347 +46195,245.58,77.194 +46196,244.05,78.047 +46197,247.54,75.576 +46198,245.86,76.384 +46199,244.24,77.202 +46200,242.68,78.027 +46201,246.26,75.644 +46202,244.55,76.422 +46203,242.9,77.21 +46204,241.31,78.006 +46205,244.99,75.711 +46206,243.24,76.46 +46207,241.56,77.218 +46208,239.95,77.985 +46209,243.71,75.78 +46210,241.94,76.497 +46211,240.23,77.226 +46212,238.58,77.963 +46213,242.43,75.849 +46214,240.63,76.535 +46215,238.89,77.233 +46216,237.22,77.94 +46217,241.15,75.919 +46218,239.32,76.574 +46219,237.55,77.24 +46220,235.85,77.917 +46221,239.87,75.989 +46222,238.01,76.612 +46223,236.22,77.248 +46224,234.49,77.893 +46225,238.58,76.06 +46226,236.7,76.651 +46227,234.88,77.254 +46228,233.13,77.869 +46229,237.3,76.132 +46230,235.39,76.69 +46231,233.55,77.261 +46232,231.78,77.844 +46233,236.01,76.203 +46234,234.08,76.729 +46235,232.21,77.268 +46236,230.42,77.819 +46237,234.72,76.276 +46238,232.76,76.768 +46239,230.88,77.274 +46240,229.06,77.793 +46241,233.43,76.348 +46242,231.45,76.807 +46243,229.55,77.281 +46244,227.71,77.767 +46245,232.14,76.422 +46246,230.14,76.846 +46247,228.21,77.287 +46248,226.36,77.74 +46249,230.85,76.495 +46250,228.83,76.886 +46251,226.88,77.293 +46252,225,77.714 +46253,229.55,76.569 +46254,227.51,76.926 +46255,225.55,77.299 +46256,223.66,77.686 +46257,228.26,76.643 +46258,226.2,76.965 +46259,224.22,77.305 +46260,222.31,77.659 +46261,226.96,76.717 +46262,224.88,77.005 +46263,222.89,77.31 +46264,220.96,77.631 +46265,225.66,76.792 +46266,223.57,77.045 +46267,221.56,77.316 +46268,219.61,77.603 +46269,224.36,76.867 +46270,222.25,77.085 +46271,220.23,77.322 +46272,218.27,77.574 +46273,223.06,76.942 +46274,220.94,77.125 +46275,218.9,77.327 +46276,216.93,77.546 +46277,221.75,77.017 +46278,219.62,77.165 +46279,217.57,77.333 +46280,215.59,77.517 +46281,220.45,77.093 +46282,218.3,77.206 +46283,216.24,77.338 +46284,214.25,77.488 +46285,219.14,77.168 +46286,216.98,77.246 +46287,214.91,77.344 +46288,212.91,77.459 +46289,217.83,77.244 +46290,215.67,77.286 +46291,213.58,77.349 +46292,211.57,77.429 +46293,216.52,77.319 +46294,214.35,77.327 +46295,212.26,77.354 +46296,210.24,77.4 +46297,215.21,77.395 +46298,213.03,77.367 +46299,210.93,77.36 +46300,208.91,77.371 +46301,213.89,77.471 +46302,211.71,77.407 +46303,209.6,77.365 +46304,207.57,77.341 +46305,212.58,77.547 +46306,210.39,77.448 +46307,208.28,77.371 +46308,206.24,77.312 +46309,211.26,77.622 +46310,209.06,77.488 +46311,206.95,77.376 +46312,204.91,77.283 +46313,209.94,77.698 +46314,207.74,77.529 +46315,205.63,77.381 +46316,203.59,77.253 +46317,208.62,77.773 +46318,206.42,77.569 +46319,204.3,77.387 +46320,202.26,77.224 +46321,207.3,77.848 +46322,205.1,77.609 +46323,202.98,77.392 +46324,200.94,77.195 +46325,205.97,77.923 +46326,203.77,77.649 +46327,201.66,77.398 +46328,199.61,77.166 +46329,204.65,77.998 +46330,202.45,77.69 +46331,200.34,77.404 +46332,198.29,77.137 +46333,203.32,78.073 +46334,201.12,77.73 +46335,199.01,77.409 +46336,196.97,77.109 +46337,201.99,78.147 +46338,199.8,77.77 +46339,197.69,77.415 +46340,195.66,77.08 +46341,200.66,78.221 +46342,198.47,77.81 +46343,196.37,77.421 +46344,194.34,77.052 +46345,199.33,78.295 +46346,197.15,77.85 +46347,195.05,77.427 +46348,193.03,77.024 +46349,197.99,78.369 +46350,195.82,77.889 +46351,193.73,77.433 +46352,191.71,76.997 +46353,196.66,78.442 +46354,194.49,77.929 +46355,192.41,77.439 +46356,190.4,76.97 +46357,195.32,78.514 +46358,193.16,77.969 +46359,191.09,77.445 +46360,189.09,76.943 +46361,193.98,78.587 +46362,191.84,78.008 +46363,189.77,77.452 +46364,187.78,76.916 +46365,192.64,78.659 +46366,190.51,78.047 +46367,188.46,77.459 +46368,186.47,76.89 +46369,191.3,78.73 +46370,189.18,78.086 +46371,187.14,77.465 +46372,185.17,76.865 +46373,189.95,78.801 +46374,187.85,78.125 +46375,185.82,77.472 +46376,183.86,76.84 +46377,188.61,78.871 +46378,186.52,78.164 +46379,184.5,77.479 +46380,182.56,76.815 +46381,187.26,78.941 +46382,185.18,78.203 +46383,183.19,77.487 +46384,181.26,76.791 +46385,185.91,79.01 +46386,183.85,78.241 +46387,181.87,77.494 +46388,179.96,76.767 +46389,184.56,79.079 +46390,182.52,78.279 +46391,180.56,77.502 +46392,178.66,76.744 +46393,183.21,79.147 +46394,181.19,78.318 +46395,179.24,77.51 +46396,177.36,76.722 +46397,181.85,79.214 +46398,179.85,78.355 +46399,177.93,77.518 +46400,176.07,76.7 +46401,180.5,79.281 +46402,178.52,78.393 +46403,176.61,77.526 +46404,174.78,76.679 +46405,179.14,79.347 +46406,177.18,78.43 +46407,175.3,77.535 +46408,173.48,76.658 +46409,177.78,79.412 +46410,175.85,78.468 +46411,173.99,77.544 +46412,172.19,76.638 +46413,176.42,79.477 +46414,174.51,78.505 +46415,172.68,77.553 +46416,170.9,76.619 +46417,175.06,79.541 +46418,173.18,78.541 +46419,171.36,77.562 +46420,169.61,76.601 +46421,173.7,79.604 +46422,171.84,78.578 +46423,170.05,77.572 +46424,168.32,76.583 +46425,172.34,79.666 +46426,170.5,78.614 +46427,168.74,77.581 +46428,167.04,76.567 +46429,170.97,79.727 +46430,169.17,78.65 +46431,167.43,77.591 +46432,165.75,76.551 +46433,169.61,79.788 +46434,167.83,78.686 +46435,166.12,77.602 +46436,164.47,76.535 +46437,168.24,79.847 +46438,166.49,78.721 +46439,164.81,77.613 +46440,163.19,76.521 +46441,166.87,79.906 +46442,165.15,78.756 +46443,163.5,77.624 +46444,161.91,76.508 +46445,165.5,79.964 +46446,163.81,78.791 +46447,162.19,77.635 +46448,160.63,76.495 +46449,164.13,80.0209 +46450,162.47,78.825 +46451,160.88,77.646 +46452,159.35,76.483 +46453,162.75,80.077 +46454,161.13,78.859 +46455,159.57,77.658 +46456,158.07,76.472 +46457,161.38,80.1321 +46458,159.79,78.893 +46459,158.27,77.671 +46460,156.79,76.463 +46461,160,80.1862 +46462,158.45,78.927 +46463,156.96,77.683 +46464,155.52,76.454 +46465,158.63,80.2393 +46466,157.11,78.96 +46467,155.65,77.696 +46468,154.24,76.446 +46469,157.25,80.2914 +46470,155.77,78.993 +46471,154.34,77.709 +46472,152.97,76.439 +46473,155.87,80.3425 +46474,154.43,79.026 +46475,153.04,77.723 +46476,151.7,76.433 +46477,154.49,80.3926 +46478,153.08,79.058 +46479,151.73,77.737 +46480,150.43,76.428 +46481,153.11,80.4416 +46482,151.74,79.09 +46483,150.42,77.751 +46484,149.16,76.425 +46485,151.73,80.4896 +46486,150.4,79.121 +46487,149.12,77.766 +46488,147.89,76.422 +46489,150.35,80.5365 +46490,149.05,79.153 +46491,147.81,77.781 +46492,146.62,76.42 +46493,148.96,80.5823 +46494,147.71,79.183 +46495,146.51,77.796 +46496,145.35,76.42 +46497,147.58,80.627 +46498,146.37,79.214 +46499,145.2,77.812 +46500,144.09,76.421 +46501,146.19,80.6706 +46502,145.02,79.244 +46503,143.9,77.828 +46504,142.82,76.422 +46505,144.81,80.7131 +46506,143.68,79.274 +46507,142.59,77.844 +46508,141.55,76.425 +46509,143.42,80.7545 +46510,142.33,79.303 +46511,141.29,77.861 +46512,140.29,76.429 +46513,142.03,80.7947 +46514,140.99,79.332 +46515,139.99,77.879 +46516,139.03,76.434 +46517,140.65,80.8338 +46518,139.64,79.361 +46519,138.68,77.896 +46520,137.76,76.441 +46521,139.26,80.8717 +46522,138.29,79.389 +46523,137.38,77.914 +46524,136.5,76.448 +46525,137.87,80.9085 +46526,136.95,79.417 +46527,136.07,77.933 +46528,135.24,76.457 +46529,136.48,80.9441 +46530,135.6,79.444 +46531,134.77,77.952 +46532,133.98,76.467 +46533,135.09,80.9785 +46534,134.26,79.471 +46535,133.47,77.971 +46536,132.72,76.478 +46537,133.69,81.0117 +46538,132.91,79.498 +46539,132.17,77.991 +46540,131.46,76.49 +46541,132.3,81.0438 +46542,131.56,79.524 +46543,130.86,78.011 +46544,130.2,76.504 +46545,130.91,81.0747 +46546,130.21,79.55 +46547,129.56,78.031 +46548,128.94,76.519 +46549,129.52,81.1043 +46550,128.87,79.576 +46551,128.26,78.052 +46552,127.68,76.535 +46553,128.12,81.1328 +46554,127.52,79.601 +46555,126.95,78.074 +46556,126.43,76.552 +46557,126.73,81.1601 +46558,126.17,79.626 +46559,125.65,78.096 +46560,125.17,76.57 +46561,125.34,81.1862 +46562,124.82,79.65 +46563,124.35,78.118 +46564,123.91,76.59 +46565,123.94,81.2111 +46566,123.48,79.674 +46567,123.05,78.14 +46568,122.65,76.611 +46569,122.55,81.2347 +46570,122.13,79.697 +46571,121.75,78.163 +46572,121.4,76.633 +46573,121.15,81.2572 +46574,120.78,79.72 +46575,120.44,78.187 +46576,120.14,76.657 +46577,119.76,81.2785 +46578,119.43,79.743 +46579,119.14,78.211 +46580,118.89,76.682 +46581,118.36,81.2985 +46582,118.08,79.766 +46583,117.84,78.235 +46584,117.63,76.708 +46585,116.97,81.3174 +46586,116.74,79.787 +46587,116.54,78.26 +46588,116.37,76.735 +46589,115.57,81.335 +46590,115.39,79.809 +46591,115.24,78.285 +46592,115.12,76.763 +46593,114.18,81.3515 +46594,114.04,79.83 +46595,113.94,78.31 +46596,113.86,76.793 +46597,112.78,81.3668 +46598,112.69,79.851 +46599,112.63,78.336 +46600,112.61,76.824 +46601,111.38,81.3809 +46602,111.34,79.871 +46603,111.33,78.362 +46604,111.35,76.857 +46605,109.99,81.3938 +46606,109.99,79.891 +46607,110.03,78.389 +46608,110.1,76.89 +46609,108.59,81.4055 +46610,108.64,79.91 +46611,108.73,78.416 +46612,108.84,76.925 +46613,107.2,81.416 +46614,107.3,79.93 +46615,107.43,78.444 +46616,107.59,76.961 +46617,105.8,81.4254 +46618,105.95,79.948 +46619,106.12,78.472 +46620,106.33,76.998 +46621,104.41,81.4336 +46622,104.6,79.967 +46623,104.82,78.5 +46624,105.08,77.036 +46625,103.01,81.4407 +46626,103.25,79.985 +46627,103.52,78.529 +46628,103.82,77.076 +46629,101.62,81.4466 +46630,101.9,80.0022 +46631,102.22,78.558 +46632,102.56,77.117 +46633,100.23,81.4514 +46634,100.55,80.0194 +46635,100.91,78.588 +46636,101.31,77.159 +46637,98.832,81.4551 +46638,99.206,80.0363 +46639,99.611,78.618 +46640,100.05,77.202 +46641,97.439,81.4577 +46642,97.858,80.0527 +46643,98.309,78.648 +46644,98.792,77.246 +46645,96.046,81.4591 +46646,96.51,80.0688 +46647,97.006,78.679 +46648,97.534,77.292 +46649,94.653,81.4595 +46650,95.162,80.0845 +46651,95.702,78.71 +46652,96.276,77.339 +46653,93.261,81.4588 +46654,93.814,80.0999 +46655,94.399,78.742 +46656,95.017,77.387 +46657,91.87,81.457 +46658,92.466,80.1149 +46659,93.096,78.774 +46660,93.758,77.436 +46661,90.479,81.4541 +46662,91.119,80.1295 +46663,91.792,78.806 +46664,92.499,77.486 +46665,89.088,81.4502 +46666,89.772,80.1438 +46667,90.488,78.839 +46668,91.239,77.537 +46669,87.699,81.4453 +46670,88.425,80.1578 +46671,89.184,78.872 +46672,89.978,77.589 +46673,86.309,81.4394 +46674,87.078,80.1714 +46675,87.88,78.905 +46676,88.717,77.643 +46677,84.921,81.4325 +46678,85.731,80.1847 +46679,86.575,78.939 +46680,87.455,77.697 +46681,83.533,81.4245 +46682,84.384,80.1976 +46683,85.27,78.973 +46684,86.192,77.752 +46685,82.146,81.4156 +46686,83.038,80.2102 +46687,83.965,79.007 +46688,84.929,77.809 +46689,80.76,81.4058 +46690,81.692,80.2226 +46691,82.66,79.042 +46692,83.664,77.866 +46693,79.374,81.395 +46694,80.346,80.2345 +46695,81.354,79.077 +46696,82.4,77.925 +46697,77.989,81.3833 +46698,79,80.2462 +46699,80.048,79.113 +46700,81.134,77.984 +46701,76.605,81.3708 +46702,77.655,80.2576 +46703,78.742,79.148 +46704,79.867,78.045 +46705,75.222,81.3573 +46706,76.31,80.2687 +46707,77.435,79.184 +46708,78.6,78.106 +46709,73.84,81.3429 +46710,74.965,80.2795 +46711,76.128,79.221 +46712,77.331,78.168 +46713,72.459,81.3278 +46714,73.62,80.2901 +46715,74.821,79.257 +46716,76.062,78.232 +46717,71.079,81.3117 +46718,72.276,80.3003 +46719,73.513,79.294 +46720,74.792,78.296 +46721,69.699,81.2949 +46722,70.932,80.3103 +46723,72.205,79.331 +46724,73.521,78.36 +46725,68.321,81.2773 +46726,69.589,80.32 +46727,70.897,79.369 +46728,72.248,78.426 +46729,66.944,81.259 +46730,68.245,80.3295 +46731,69.588,79.407 +46732,70.975,78.493 +46733,65.567,81.2399 +46734,66.902,80.3387 +46735,68.279,79.445 +46736,69.701,78.56 +46737,64.192,81.2201 +46738,65.56,80.3477 +46739,66.97,79.483 +46740,68.425,78.628 +46741,62.818,81.1995 +46742,64.217,80.3564 +46743,65.66,79.521 +46744,67.149,78.697 +46745,61.445,81.1784 +46746,62.875,80.365 +46747,64.35,79.56 +46748,65.871,78.766 +46749,60.073,81.1565 +46750,61.534,80.3733 +46751,63.039,79.599 +46752,64.592,78.836 +46753,58.703,81.134 +46754,60.192,80.3814 +46755,61.728,79.638 +46756,63.312,78.907 +46757,57.333,81.1109 +46758,58.851,80.3893 +46759,60.416,79.678 +46760,62.03,78.978 +46761,55.965,81.0873 +46762,57.511,80.397 +46763,59.104,79.717 +46764,60.748,79.05 +46765,54.598,81.0631 +46766,56.171,80.4045 +46767,57.792,79.757 +46768,59.464,79.123 +46769,53.232,81.0383 +46770,54.831,80.4119 +46771,56.479,79.797 +46772,58.179,79.196 +46773,51.867,81.013 +46774,53.492,80.4191 +46775,55.166,79.837 +46776,56.892,79.27 +46777,50.504,80.9873 +46778,52.153,80.4261 +46779,53.852,79.878 +46780,55.604,79.344 +46781,49.142,80.9611 +46782,50.814,80.433 +46783,52.538,79.918 +46784,54.315,79.419 +46785,47.781,80.9344 +46786,49.476,80.4397 +46787,51.223,79.959 +46788,53.025,79.494 +46789,46.422,80.9074 +46790,48.138,80.4463 +46791,49.908,80 +46792,51.733,79.569 +46793,45.063,80.8799 +46794,46.801,80.4528 +46795,48.592,80.0405 +46796,50.439,79.645 +46797,43.707,80.8521 +46798,45.464,80.4592 +46799,47.276,80.0815 +46800,49.145,79.722 +46801,42.351,80.824 +46802,44.128,80.4654 +46803,45.959,80.1227 +46804,47.848,79.798 +46805,40.997,80.7956 +46806,42.792,80.4716 +46807,44.642,80.164 +46808,46.551,79.875 +46809,39.645,80.7669 +46810,41.456,80.4777 +46811,43.324,80.2053 +46812,45.251,79.952 +46813,38.293,80.7379 +46814,40.121,80.4837 +46815,42.006,80.2468 +46816,43.951,80.0299 +46817,36.943,80.7088 +46818,38.787,80.4896 +46819,40.687,80.2883 +46820,42.649,80.1075 +46821,35.595,80.6794 +46822,37.453,80.4955 +46823,39.368,80.3299 +46824,41.345,80.1854 +46825,34.248,80.6499 +46826,36.119,80.5013 +46827,38.048,80.3716 +46828,40.04,80.2634 +46829,32.902,80.6202 +46830,34.786,80.5071 +46831,36.727,80.4133 +46832,38.733,80.3415 +46833,31.558,80.5904 +46834,33.453,80.5128 +46835,35.406,80.455 +46836,37.425,80.4197 +46837,30.216,80.5605 +46838,32.121,80.5186 +46839,34.085,80.4968 +46840,36.115,80.498 +46841,28.874,80.5306 +46842,30.789,80.5243 +46843,32.763,80.5386 +46844,34.803,80.5763 +46845,27.535,80.5007 +46846,29.457,80.53 +46847,31.441,80.5804 +46848,33.49,80.6547 +46849,26.196,80.4707 +46850,28.127,80.5357 +46851,30.118,80.6222 +46852,32.176,80.733 +46853,24.86,80.4408 +46854,26.796,80.5414 +46855,28.794,80.664 +46856,30.86,80.8113 +46857,23.524,80.4109 +46858,25.466,80.5472 +46859,27.47,80.7058 +46860,29.542,80.8894 +46861,22.19,80.3811 +46862,24.137,80.553 +46863,26.145,80.7475 +46864,28.222,80.9675 +46865,20.858,80.3514 +46866,22.808,80.5588 +46867,24.82,80.7892 +46868,26.901,81.0455 +46869,19.527,80.3219 +46870,21.479,80.5647 +46871,23.494,80.8309 +46872,25.579,81.1232 +46873,18.197,80.2925 +46874,20.151,80.5707 +46875,22.168,80.8725 +46876,24.255,81.2008 +46877,16.869,80.2633 +46878,18.824,80.5767 +46879,20.841,80.914 +46880,22.929,81.2782 +46881,15.543,80.2344 +46882,17.497,80.5828 +46883,19.513,80.9555 +46884,21.601,81.3553 +46885,14.218,80.2057 +46886,16.17,80.589 +46887,18.185,80.9968 +46888,20.272,81.4321 +46889,12.894,80.1772 +46890,14.844,80.5953 +46891,16.857,81.0381 +46892,18.942,81.5086 +46893,11.572,80.1491 +46894,13.518,80.6017 +46895,15.528,81.0793 +46896,17.609,81.5847 +46897,10.252,80.1213 +46898,12.193,80.6083 +46899,14.198,81.1203 +46900,16.276,81.6605 +46901,8.9326,80.0939 +46902,10.869,80.6149 +46903,12.868,81.1613 +46904,14.94,81.7359 +46905,7.6149,80.0669 +46906,9.5444,80.6217 +46907,11.537,81.2021 +46908,13.603,81.8108 +46909,6.2986,80.0402 +46910,8.2207,80.6287 +46911,10.206,81.2427 +46912,12.264,81.8854 +46913,4.9838,80.014 +46914,6.8974,80.6358 +46915,8.8743,81.2832 +46916,10.924,81.9594 +46917,3.6705,79.988 +46918,5.5746,80.643 +46919,7.542,81.3235 +46920,9.5824,82.0329 +46921,2.3585,79.963 +46922,4.2522,80.6505 +46923,6.2091,81.3637 +46924,8.239,82.1059 +46925,1.048,79.938 +46926,2.9304,80.6581 +46927,4.8757,81.4037 +46928,6.8941,82.1783 +46929,359.74,79.914 +46930,1.6089,80.6659 +46931,3.5418,81.4435 +46932,5.5476,82.2501 +46933,358.43,79.891 +46934,0.28794,80.6739 +46935,2.2074,81.4831 +46936,4.1996,82.3213 +46937,357.12,79.868 +46938,358.97,80.6821 +46939,0.87239,81.5225 +46940,2.85,82.3919 +46941,355.82,79.845 +46942,357.65,80.6905 +46943,359.54,81.5617 +46944,1.499,82.4618 +46945,354.52,79.824 +46946,356.33,80.6992 +46947,358.2,81.6007 +46948,0.14641,82.531 +46949,353.21,79.803 +46950,355.01,80.708 +46951,356.86,81.6394 +46952,358.79,82.5995 +46953,351.91,79.782 +46954,353.69,80.7172 +46955,355.53,81.6779 +46956,357.44,82.6673 +46957,350.61,79.763 +46958,352.37,80.7265 +46959,354.19,81.7162 +46960,356.08,82.7343 +46961,349.32,79.744 +46962,351.05,80.7361 +46963,352.85,81.7542 +46964,354.72,82.8005 +46965,348.02,79.726 +46966,349.74,80.746 +46967,351.51,81.7919 +46968,353.36,82.866 +46969,346.72,79.708 +46970,348.42,80.7562 +46971,350.17,81.8294 +46972,352,82.9306 +46973,345.43,79.692 +46974,347.1,80.7666 +46975,348.84,81.8666 +46976,350.64,82.9943 +46977,344.14,79.676 +46978,345.79,80.7773 +46979,347.5,81.9035 +46980,349.27,83.0572 +46981,342.84,79.661 +46982,344.47,80.7884 +46983,346.15,81.9401 +46984,347.91,83.1191 +46985,341.55,79.647 +46986,343.15,80.7997 +46987,344.81,81.9765 +46988,346.54,83.1802 +46989,340.26,79.634 +46990,341.84,80.8113 +46991,343.47,82.0125 +46992,345.17,83.2403 +46993,338.97,79.622 +46994,340.52,80.8232 +46995,342.13,82.0482 +46996,343.8,83.2995 +46997,337.69,79.611 +46998,339.21,80.8355 +46999,340.79,82.0836 +47000,342.43,83.3577 +47001,336.4,79.601 +47002,337.9,80.848 +47003,339.45,82.1187 +47004,341.06,83.4149 +47005,335.12,79.591 +47006,336.58,80.861 +47007,338.1,82.1534 +47008,339.69,83.4711 +47009,333.83,79.583 +47010,335.27,80.8742 +47011,336.76,82.1879 +47012,338.31,83.5263 +47013,332.55,79.576 +47014,333.96,80.8878 +47015,335.42,82.2219 +47016,336.94,83.5804 +47017,331.27,79.57 +47018,332.64,80.9017 +47019,334.07,82.2556 +47020,335.56,83.6335 +47021,329.99,79.565 +47022,331.33,80.916 +47023,332.73,82.289 +47024,334.19,83.6855 +47025,328.71,79.561 +47026,330.02,80.9307 +47027,331.38,82.322 +47028,332.81,83.7365 +47029,327.43,79.558 +47030,328.71,80.9457 +47031,330.04,82.3547 +47032,331.43,83.7863 +47033,326.15,79.556 +47034,327.39,80.9611 +47035,328.69,82.387 +47036,330.05,83.835 +47037,324.87,79.555 +47038,326.08,80.9769 +47039,327.35,82.4189 +47040,328.66,83.8826 +47041,323.6,79.555 +47042,324.77,80.993 +47043,326,82.4504 +47044,327.28,83.929 +47045,322.32,79.557 +47046,323.46,81.0095 +47047,324.65,82.4816 +47048,325.9,83.9743 +47049,321.05,79.559 +47050,322.15,81.0264 +47051,323.3,82.5124 +47052,324.51,84.0185 +47053,319.77,79.563 +47054,320.84,81.0438 +47055,321.96,82.5428 +47056,323.13,84.0614 +47057,318.5,79.568 +47058,319.53,81.0615 +47059,320.61,82.5728 +47060,321.74,84.1032 +47061,317.23,79.574 +47062,318.22,81.0796 +47063,319.26,82.6024 +47064,320.35,84.1438 +47065,315.96,79.582 +47066,316.91,81.0981 +47067,317.91,82.6316 +47068,318.97,84.1831 +47069,314.69,79.59 +47070,315.6,81.117 +47071,316.57,82.6604 +47072,317.58,84.2213 +47073,313.42,79.6 +47074,314.29,81.1363 +47075,315.22,82.6888 +47076,316.19,84.2583 +47077,312.15,79.611 +47078,312.98,81.156 +47079,313.87,82.7168 +47080,314.8,84.294 +47081,310.88,79.623 +47082,311.68,81.1762 +47083,312.52,82.7444 +47084,313.41,84.3285 +47085,309.61,79.637 +47086,310.37,81.1967 +47087,311.17,82.7715 +47088,312.02,84.3617 +47089,308.34,79.651 +47090,309.06,81.2177 +47091,309.82,82.7983 +47092,310.62,84.3938 +47093,307.07,79.668 +47094,307.75,81.2391 +47095,308.47,82.8247 +47096,309.23,84.4245 +47097,305.81,79.685 +47098,306.44,81.2609 +47099,307.12,82.8506 +47100,307.84,84.4541 +47101,304.54,79.703 +47102,305.13,81.2832 +47103,305.77,82.8761 +47104,306.45,84.4823 +47105,303.27,79.723 +47106,303.83,81.3058 +47107,304.42,82.9012 +47108,305.05,84.5094 +47109,302.01,79.744 +47110,302.52,81.3289 +47111,303.07,82.9259 +47112,303.66,84.5351 +47113,300.74,79.767 +47114,301.21,81.3525 +47115,301.72,82.9501 +47116,302.26,84.5596 +47117,299.48,79.79 +47118,299.9,81.3764 +47119,300.37,82.974 +47120,300.87,84.5829 +47121,298.21,79.815 +47122,298.6,81.4008 +47123,299.01,82.9974 +47124,299.47,84.6049 +47125,296.95,79.841 +47126,297.29,81.4256 +47127,297.66,83.0204 +47128,298.08,84.6256 +47129,295.69,79.869 +47130,295.98,81.4508 +47131,296.31,83.043 +47132,296.68,84.6451 +47133,294.42,79.898 +47134,294.67,81.4764 +47135,294.96,83.0651 +47136,295.28,84.6634 +47137,293.16,79.928 +47138,293.37,81.5025 +47139,293.61,83.0869 +47140,293.89,84.6804 +47141,291.89,79.959 +47142,292.06,81.529 +47143,292.26,83.1082 +47144,292.49,84.6961 +47145,290.63,79.992 +47146,290.75,81.5559 +47147,290.91,83.1291 +47148,291.09,84.7106 +47149,289.37,80.0257 +47150,289.44,81.5833 +47151,289.55,83.1496 +47152,289.7,84.7239 +47153,288.1,80.0609 +47154,288.14,81.6111 +47155,288.2,83.1697 +47156,288.3,84.7359 +47157,286.84,80.0973 +47158,286.83,81.6392 +47159,286.85,83.1893 +47160,286.9,84.7467 +47161,285.58,80.135 +47162,285.52,81.6678 +47163,285.5,83.2086 +47164,285.51,84.7563 +47165,284.31,80.174 +47166,284.21,81.6969 +47167,284.15,83.2274 +47168,284.11,84.7647 +47169,283.05,80.2142 +47170,282.91,81.7263 +47171,282.79,83.2459 +47172,282.71,84.7719 +47173,281.78,80.2556 +47174,281.6,81.7561 +47175,281.44,83.2639 +47176,281.32,84.7779 +47177,280.52,80.2983 +47178,280.29,81.7864 +47179,280.09,83.2816 +47180,279.92,84.7827 +47181,279.26,80.3422 +47182,278.98,81.817 +47183,278.74,83.2988 +47184,278.53,84.7863 +47185,277.99,80.3873 +47186,277.67,81.8481 +47187,277.39,83.3157 +47188,277.13,84.7888 +47189,276.73,80.4336 +47190,276.37,81.8795 +47191,276.04,83.3321 +47192,275.73,84.7901 +47193,275.46,80.4811 +47194,275.06,81.9114 +47195,274.68,83.3482 +47196,274.34,84.7903 +47197,274.2,80.5298 +47198,273.75,81.9436 +47199,273.33,83.3639 +47200,272.94,84.7893 +47201,272.93,80.5797 +47202,272.44,81.9762 +47203,271.98,83.3792 +47204,271.55,84.7873 +47205,271.66,80.6307 +47206,271.13,82.0092 +47207,270.63,83.3941 +47208,270.16,84.7841 +47209,270.4,80.6828 +47210,269.82,82.0426 +47211,269.28,83.4087 +47212,268.76,84.7798 +47213,269.13,80.7361 +47214,268.51,82.0763 +47215,267.93,83.4229 +47216,267.37,84.7745 +47217,267.86,80.7905 +47218,267.2,82.1104 +47219,266.58,83.4368 +47220,265.98,84.7681 +47221,266.59,80.846 +47222,265.9,82.1449 +47223,265.23,83.4503 +47224,264.58,84.7606 +47225,265.32,80.9026 +47226,264.59,82.1797 +47227,263.88,83.4634 +47228,263.19,84.7521 +47229,264.06,80.9602 +47230,263.28,82.2149 +47231,262.52,83.4762 +47232,261.8,84.7426 +47233,262.78,81.0189 +47234,261.97,82.2504 +47235,261.17,83.4887 +47236,260.41,84.7321 +47237,261.51,81.0786 +47238,260.65,82.2862 +47239,259.82,83.5008 +47240,259.02,84.7206 +47241,260.24,81.1393 +47242,259.34,82.3224 +47243,258.47,83.5126 +47244,257.63,84.7082 +47245,258.97,81.2011 +47246,258.03,82.3589 +47247,257.12,83.5241 +47248,256.25,84.6948 +47249,257.7,81.2638 +47250,256.72,82.3958 +47251,255.78,83.5353 +47252,254.86,84.6805 +47253,256.42,81.3274 +47254,255.41,82.4329 +47255,254.43,83.5461 +47256,253.47,84.6653 +47257,255.15,81.392 +47258,254.1,82.4704 +47259,253.08,83.5567 +47260,252.09,84.6492 +47261,253.87,81.4575 +47262,252.79,82.5081 +47263,251.73,83.567 +47264,250.7,84.6323 +47265,252.6,81.5239 +47266,251.47,82.5462 +47267,250.38,83.577 +47268,249.32,84.6144 +47269,251.32,81.5911 +47270,250.16,82.5845 +47271,249.03,83.5867 +47272,247.93,84.5958 +47273,250.04,81.6592 +47274,248.85,82.6231 +47275,247.68,83.5961 +47276,246.55,84.5764 +47277,248.76,81.7282 +47278,247.53,82.662 +47279,246.34,83.6053 +47280,245.17,84.5562 +47281,247.48,81.7979 +47282,246.22,82.7011 +47283,244.99,83.6142 +47284,243.79,84.5352 +47285,246.2,81.8684 +47286,244.91,82.7405 +47287,243.64,83.6228 +47288,242.41,84.5135 +47289,244.92,81.9396 +47290,243.59,82.7801 +47291,242.29,83.6312 +47292,241.03,84.4911 +47293,243.64,82.0116 +47294,242.28,82.82 +47295,240.95,83.6394 +47296,239.65,84.468 +47297,242.35,82.0843 +47298,240.96,82.8601 +47299,239.6,83.6474 +47300,238.28,84.4442 +47301,241.07,82.1576 +47302,239.65,82.9004 +47303,238.26,83.6551 +47304,236.9,84.4198 +47305,239.78,82.2316 +47306,238.33,82.9409 +47307,236.91,83.6626 +47308,235.53,84.3947 +47309,238.5,82.3063 +47310,237.01,82.9817 +47311,235.57,83.67 +47312,234.15,84.3691 +47313,237.21,82.3815 +47314,235.7,83.0226 +47315,234.22,83.6771 +47316,232.78,84.3429 +47317,235.92,82.4573 +47318,234.38,83.0637 +47319,232.88,83.684 +47320,231.41,84.3162 +47321,234.63,82.5336 +47322,233.06,83.105 +47323,231.53,83.6908 +47324,230.04,84.289 +47325,233.33,82.6104 +47326,231.74,83.1465 +47327,230.19,83.6974 +47328,228.67,84.2612 +47329,232.04,82.6878 +47330,230.42,83.1881 +47331,228.84,83.7039 +47332,227.3,84.233 +47333,230.75,82.7655 +47334,229.1,83.2298 +47335,227.5,83.7102 +47336,225.94,84.2044 +47337,229.45,82.8437 +47338,227.78,83.2717 +47339,226.16,83.7163 +47340,224.57,84.1753 +47341,228.15,82.9223 +47342,226.46,83.3138 +47343,224.82,83.7224 +47344,223.21,84.1459 +47345,226.85,83.0013 +47346,225.14,83.3559 +47347,223.47,83.7283 +47348,221.85,84.1161 +47349,225.55,83.0806 +47350,223.82,83.3982 +47351,222.13,83.7341 +47352,220.48,84.086 +47353,224.25,83.1602 +47354,222.5,83.4406 +47355,220.79,83.7397 +47356,219.12,84.0556 +47357,222.95,83.2401 +47358,221.18,83.483 +47359,219.45,83.7453 +47360,217.77,84.0249 +47361,221.65,83.3203 +47362,219.86,83.5255 +47363,218.11,83.7509 +47364,216.41,83.9939 +47365,220.34,83.4007 +47366,218.53,83.5681 +47367,216.77,83.7563 +47368,215.05,83.9628 +47369,219.04,83.4812 +47370,217.21,83.6108 +47371,215.43,83.7617 +47372,213.7,83.9314 +47373,217.73,83.5619 +47374,215.89,83.6535 +47375,214.09,83.767 +47376,212.34,83.8999 +47377,216.42,83.6428 +47378,214.56,83.6963 +47379,212.75,83.7723 +47380,210.99,83.8682 +47381,215.11,83.7237 +47382,213.24,83.7391 +47383,211.42,83.7775 +47384,209.64,83.8365 +47385,213.79,83.8047 +47386,211.91,83.7819 +47387,210.08,83.7827 +47388,208.29,83.8046 +47389,212.48,83.8858 +47390,210.59,83.8247 +47391,208.74,83.7879 +47392,206.94,83.7728 +47393,211.16,83.9668 +47394,209.26,83.8675 +47395,207.4,83.7931 +47396,205.6,83.7409 +47397,209.85,84.0479 +47398,207.93,83.9103 +47399,206.07,83.7983 +47400,204.25,83.709 +47401,208.53,84.1288 +47402,206.6,83.9531 +47403,204.73,83.8035 +47404,202.91,83.6771 +47405,207.21,84.2097 +47406,205.28,83.9959 +47407,203.4,83.8087 +47408,201.57,83.6453 +47409,205.89,84.2905 +47410,203.95,84.0386 +47411,202.06,83.814 +47412,200.23,83.6136 +47413,204.56,84.3711 +47414,202.62,84.0813 +47415,200.73,83.8193 +47416,198.89,83.582 +47417,203.24,84.4515 +47418,201.29,84.1239 +47419,199.39,83.8246 +47420,197.55,83.5506 +47421,201.91,84.5317 +47422,199.96,84.1665 +47423,198.06,83.83 +47424,196.21,83.5193 +47425,200.59,84.6117 +47426,198.63,84.2089 +47427,196.73,83.8355 +47428,194.88,83.4883 +47429,199.26,84.6914 +47430,197.3,84.2513 +47431,195.39,83.8411 +47432,193.54,83.4575 +47433,197.93,84.7708 +47434,195.97,84.2936 +47435,194.06,83.8467 +47436,192.21,83.427 +47437,196.6,84.8499 +47438,194.63,84.3358 +47439,192.73,83.8524 +47440,190.88,83.3967 +47441,195.26,84.9286 +47442,193.3,84.3778 +47443,191.4,83.8583 +47444,189.55,83.3668 +47445,193.93,85.0069 +47446,191.97,84.4197 +47447,190.07,83.8643 +47448,188.22,83.3372 +47449,192.59,85.0848 +47450,190.63,84.4615 +47451,188.74,83.8704 +47452,186.89,83.308 +47453,191.25,85.1622 +47454,189.3,84.5032 +47455,187.41,83.8766 +47456,185.57,83.2792 +47457,189.91,85.2392 +47458,187.96,84.5446 +47459,186.08,83.883 +47460,184.24,83.2509 +47461,188.57,85.3156 +47462,186.63,84.5859 +47463,184.75,83.8895 +47464,182.92,83.223 +47465,187.23,85.3915 +47466,185.29,84.6271 +47467,183.42,83.8962 +47468,181.6,83.1955 +47469,185.88,85.4669 +47470,183.96,84.668 +47471,182.09,83.9031 +47472,180.28,83.1686 +47473,184.54,85.5416 +47474,182.62,84.7088 +47475,180.76,83.9102 +47476,178.96,83.1423 +47477,183.19,85.6157 +47478,181.28,84.7493 +47479,179.43,83.9174 +47480,177.64,83.1165 +47481,181.84,85.6892 +47482,179.94,84.7897 +47483,178.11,83.9249 +47484,176.33,83.0912 +47485,180.49,85.762 +47486,178.61,84.8298 +47487,176.78,83.9325 +47488,175.01,83.0667 +47489,179.14,85.8341 +47490,177.27,84.8696 +47491,175.45,83.9404 +47492,173.7,83.0427 +47493,177.79,85.9055 +47494,175.93,84.9093 +47495,174.13,83.9485 +47496,172.39,83.0194 +47497,176.43,85.9761 +47498,174.59,84.9487 +47499,172.8,83.9568 +47500,171.08,82.9968 +47501,175.08,86.0459 +47502,173.25,84.9878 +47503,171.48,83.9654 +47504,169.77,82.975 +47505,173.72,86.115 +47506,171.91,85.0267 +47507,170.15,83.9742 +47508,168.46,82.9539 +47509,172.36,86.1832 +47510,170.56,85.0653 +47511,168.83,83.9833 +47512,167.15,82.9335 +47513,171,86.2505 +47514,169.22,85.1036 +47515,167.51,83.9927 +47516,165.85,82.9139 +47517,169.64,86.317 +47518,167.88,85.1416 +47519,166.18,84.0023 +47520,164.54,82.8952 +47521,168.28,86.3826 +47522,166.54,85.1794 +47523,164.86,84.0122 +47524,163.24,82.8773 +47525,166.91,86.4472 +47526,165.19,85.2168 +47527,163.54,84.0224 +47528,161.94,82.8602 +47529,165.55,86.5109 +47530,163.85,85.2539 +47531,162.21,84.0329 +47532,160.64,82.844 +47533,164.18,86.5736 +47534,162.51,85.2907 +47535,160.89,84.0437 +47536,159.34,82.8288 +47537,162.81,86.6354 +47538,161.16,85.3272 +47539,159.57,84.0548 +47540,158.04,82.8144 +47541,161.44,86.6961 +47542,159.82,85.3633 +47543,158.25,84.0662 +47544,156.74,82.801 +47545,160.07,86.7558 +47546,158.47,85.3991 +47547,156.93,84.0779 +47548,155.44,82.7886 +47549,158.7,86.8145 +47550,157.12,85.4345 +47551,155.61,84.09 +47552,154.15,82.7771 +47553,157.33,86.8721 +47554,155.78,85.4696 +47555,154.29,84.1024 +47556,152.85,82.7667 +47557,155.95,86.9286 +47558,154.43,85.5044 +47559,152.97,84.1151 +47560,151.56,82.7573 +47561,154.58,86.984 +47562,153.08,85.5387 +47563,151.65,84.1282 +47564,150.27,82.7489 +47565,153.2,87.0383 +47566,151.74,85.5727 +47567,150.33,84.1417 +47568,148.98,82.7416 +47569,151.83,87.0915 +47570,150.39,85.6064 +47571,149.01,84.1555 +47572,147.69,82.7353 +47573,150.45,87.1435 +47574,149.04,85.6396 +47575,147.69,84.1697 +47576,146.4,82.7302 +47577,149.07,87.1943 +47578,147.69,85.6725 +47579,146.37,84.1842 +47580,145.11,82.7261 +47581,147.69,87.2439 +47582,146.34,85.7049 +47583,145.06,84.1991 +47584,143.82,82.7232 +47585,146.3,87.2924 +47586,144.99,85.737 +47587,143.74,84.2144 +47588,142.54,82.7214 +47589,144.92,87.3396 +47590,143.64,85.7687 +47591,142.42,84.2301 +47592,141.25,82.7208 +47593,143.54,87.3857 +47594,142.29,85.7999 +47595,141.1,84.2462 +47596,139.97,82.7214 +47597,142.15,87.4305 +47598,140.94,85.8308 +47599,139.79,84.2627 +47600,138.68,82.7231 +47601,140.77,87.474 +47602,139.59,85.8612 +47603,138.47,84.2795 +47604,137.4,82.726 +47605,139.38,87.5163 +47606,138.24,85.8912 +47607,137.15,84.2968 +47608,136.12,82.7301 +47609,137.99,87.5573 +47610,136.89,85.9208 +47611,135.84,84.3145 +47612,134.83,82.7355 +47613,136.6,87.5971 +47614,135.54,85.95 +47615,134.52,84.3325 +47616,133.55,82.7421 +47617,135.22,87.6355 +47618,134.18,85.9787 +47619,133.2,84.351 +47620,132.27,82.7499 +47621,133.83,87.6727 +47622,132.83,86.007 +47623,131.89,84.3699 +47624,130.99,82.759 +47625,132.44,87.7086 +47626,131.48,86.0349 +47627,130.57,84.3893 +47628,129.71,82.7693 +47629,131.04,87.7432 +47630,130.13,86.0623 +47631,129.26,84.409 +47632,128.44,82.7809 +47633,129.65,87.7764 +47634,128.77,86.0893 +47635,127.94,84.4292 +47636,127.16,82.7938 +47637,128.26,87.8084 +47638,127.42,86.1159 +47639,126.63,84.4497 +47640,125.88,82.8079 +47641,126.87,87.839 +47642,126.07,86.142 +47643,125.31,84.4708 +47644,124.6,82.8234 +47645,125.47,87.8683 +47646,124.71,86.1676 +47647,124,84.4922 +47648,123.33,82.8401 +47649,124.08,87.8963 +47650,123.36,86.1929 +47651,122.68,84.5141 +47652,122.05,82.8582 +47653,122.68,87.923 +47654,122,86.2176 +47655,121.37,84.5364 +47656,120.78,82.8775 +47657,121.29,87.9483 +47658,120.65,86.242 +47659,120.06,84.5591 +47660,119.5,82.8982 +47661,119.89,87.9723 +47662,119.29,86.2658 +47663,118.74,84.5823 +47664,118.23,82.9202 +47665,118.5,87.9949 +47666,117.94,86.2893 +47667,117.43,84.6059 +47668,116.95,82.9434 +47669,117.1,88.0163 +47670,116.59,86.3123 +47671,116.11,84.6299 +47672,115.68,82.968 +47673,115.7,88.0363 +47674,115.23,86.3348 +47675,114.8,84.6544 +47676,114.4,82.994 +47677,114.31,88.0549 +47678,113.88,86.3569 +47679,113.48,84.6793 +47680,113.13,83.0212 +47681,112.91,88.0723 +47682,112.52,86.3785 +47683,112.17,84.7046 +47684,111.86,83.0497 +47685,111.51,88.0883 +47686,111.16,86.3997 +47687,110.86,84.7303 +47688,110.58,83.0796 +47689,110.11,88.103 +47690,109.81,86.4204 +47691,109.54,84.7565 +47692,109.31,83.1108 +47693,108.72,88.1164 +47694,108.45,86.4407 +47695,108.23,84.7832 +47696,108.04,83.1433 +47697,107.32,88.1284 +47698,107.1,86.4605 +47699,106.91,84.8102 +47700,106.77,83.1771 +47701,105.92,88.1392 +47702,105.74,86.48 +47703,105.6,84.8377 +47704,105.49,83.2122 +47705,104.52,88.1487 +47706,104.39,86.4989 +47707,104.29,84.8656 +47708,104.22,83.2486 +47709,103.12,88.1569 +47710,103.03,86.5174 +47711,102.97,84.8939 +47712,102.95,83.2863 +47713,101.72,88.1638 +47714,101.67,86.5355 +47715,101.66,84.9227 +47716,101.67,83.3252 +47717,100.33,88.1694 +47718,100.32,86.5532 +47719,100.34,84.9518 +47720,100.4,83.3655 +47721,98.928,88.1738 +47722,98.963,86.5704 +47723,99.03,84.9814 +47724,99.128,83.4071 +47725,97.53,88.1769 +47726,97.607,86.5872 +47727,97.716,85.0114 +47728,97.855,83.4499 +47729,96.132,88.1788 +47730,96.251,86.6036 +47731,96.402,85.0418 +47732,96.581,83.4939 +47733,94.734,88.1794 +47734,94.895,86.6195 +47735,95.087,85.0726 +47736,95.308,83.5392 +47737,93.336,88.1788 +47738,93.54,86.635 +47739,93.773,85.1038 +47740,94.034,83.5858 +47741,91.939,88.177 +47742,92.184,86.6501 +47743,92.458,85.1354 +47744,92.76,83.6336 +47745,90.541,88.174 +47746,90.828,86.6648 +47747,91.143,85.1674 +47748,91.486,83.6826 +47749,89.144,88.1699 +47750,89.472,86.6791 +47751,89.828,85.1998 +47752,90.211,83.7328 +47753,87.748,88.1645 +47754,88.117,86.693 +47755,88.513,85.2326 +47756,88.936,83.7842 +47757,86.352,88.158 +47758,86.761,86.7065 +47759,87.198,85.2658 +47760,87.661,83.8367 +47761,84.956,88.1504 +47762,85.406,86.7196 +47763,85.883,85.2993 +47764,86.385,83.8905 +47765,83.56,88.1416 +47766,84.051,86.7324 +47767,84.567,85.3332 +47768,85.109,83.9454 +47769,82.165,88.1318 +47770,82.695,86.7447 +47771,83.251,85.3675 +47772,83.832,84.0014 +47773,80.771,88.1208 +47774,81.34,86.7567 +47775,81.935,85.4021 +47776,82.555,84.0585 +47777,79.377,88.1088 +47778,79.986,86.7682 +47779,80.619,85.4371 +47780,81.277,84.1168 +47781,77.983,88.0957 +47782,78.631,86.7795 +47783,79.303,85.4725 +47784,79.999,84.1761 +47785,76.59,88.0816 +47786,77.276,86.7903 +47787,77.986,85.5082 +47788,78.72,84.2365 +47789,75.198,88.0665 +47790,75.922,86.8008 +47791,76.669,85.5442 +47792,77.44,84.2979 +47793,73.806,88.0504 +47794,74.567,86.811 +47795,75.352,85.5805 +47796,76.16,84.3604 +47797,72.415,88.0333 +47798,73.213,86.8208 +47799,74.035,85.6172 +47800,74.879,84.4239 +47801,71.025,88.0152 +47802,71.859,86.8303 +47803,72.717,85.6542 +47804,73.598,84.4883 +47805,69.635,87.9962 +47806,70.506,86.8395 +47807,71.399,85.6915 +47808,72.316,84.5538 +47809,68.247,87.9763 +47810,69.152,86.8483 +47811,70.081,85.7291 +47812,71.033,84.6201 +47813,66.858,87.9555 +47814,67.799,86.8569 +47815,68.763,85.767 +47816,69.749,84.6875 +47817,65.471,87.9338 +47818,66.446,86.8651 +47819,67.444,85.8052 +47820,68.464,84.7557 +47821,64.085,87.9113 +47822,65.093,86.873 +47823,66.125,85.8437 +47824,67.179,84.8248 +47825,62.699,87.8879 +47826,63.74,86.8807 +47827,64.805,85.8824 +47828,65.893,84.8947 +47829,61.314,87.8638 +47830,62.388,86.888 +47831,63.485,85.9214 +47832,64.606,84.9655 +47833,59.93,87.8389 +47834,61.036,86.8951 +47835,62.165,85.9606 +47836,63.317,85.0371 +47837,58.547,87.8132 +47838,59.684,86.9019 +47839,60.845,86.0002 +47840,62.028,85.1095 +47841,57.165,87.7868 +47842,58.333,86.9085 +47843,59.524,86.0399 +47844,60.739,85.1826 +47845,55.784,87.7597 +47846,56.982,86.9148 +47847,58.203,86.0799 +47848,59.448,85.2565 +47849,54.404,87.7319 +47850,55.631,86.9209 +47851,56.881,86.1201 +47852,58.156,85.3311 +47853,53.024,87.7034 +47854,54.28,86.9267 +47855,55.56,86.1605 +47856,56.863,85.4064 +47857,51.646,87.6744 +47858,52.93,86.9323 +47859,54.237,86.2011 +47860,55.569,85.4823 +47861,50.269,87.6447 +47862,51.58,86.9377 +47863,52.915,86.2419 +47864,54.274,85.5588 +47865,48.893,87.6144 +47866,50.23,86.9429 +47867,51.592,86.2829 +47868,52.978,85.636 +47869,47.518,87.5836 +47870,48.881,86.9479 +47871,50.268,86.3241 +47872,51.681,85.7137 +47873,46.144,87.5523 +47874,47.532,86.9527 +47875,48.944,86.3654 +47876,50.382,85.792 +47877,44.772,87.5205 +47878,46.183,86.9574 +47879,47.62,86.4069 +47880,49.083,85.8707 +47881,43.4,87.4882 +47882,44.835,86.9618 +47883,46.295,86.4485 +47884,47.782,85.95 +47885,42.03,87.4555 +47886,43.487,86.9661 +47887,44.97,86.4903 +47888,46.48,86.0297 +47889,40.66,87.4224 +47890,42.139,86.9703 +47891,43.645,86.5322 +47892,45.177,86.1098 +47893,39.292,87.3889 +47894,40.792,86.9743 +47895,42.319,86.5742 +47896,43.873,86.1904 +47897,37.925,87.355 +47898,39.445,86.9782 +47899,40.992,86.6164 +47900,42.568,86.2713 +47901,36.559,87.3208 +47902,38.098,86.982 +47903,39.665,86.6586 +47904,41.261,86.3525 +47905,35.195,87.2863 +47906,36.752,86.9856 +47907,38.338,86.7009 +47908,39.953,86.434 +47909,33.832,87.2516 +47910,35.406,86.9891 +47911,37.01,86.7433 +47912,38.644,86.5158 +47913,32.469,87.2166 +47914,34.061,86.9926 +47915,35.682,86.7857 +47916,37.333,86.5979 +47917,31.109,87.1814 +47918,32.716,86.996 +47919,34.353,86.8283 +47920,36.022,86.6801 +47921,29.749,87.146 +47922,31.371,86.9993 +47923,33.024,86.8708 +47924,34.708,86.7626 +47925,28.391,87.1105 +47926,30.027,87.0025 +47927,31.694,86.9134 +47928,33.394,86.8452 +47929,27.034,87.0748 +47930,28.683,87.0057 +47931,30.364,86.956 +47932,32.078,86.9279 +47933,25.678,87.0391 +47934,27.34,87.0088 +47935,29.034,86.9987 +47936,30.761,87.0106 +47937,24.324,87.0033 +47938,25.997,87.0119 +47939,27.702,87.0413 +47940,29.443,87.0935 +47941,22.971,86.9674 +47942,24.654,87.015 +47943,26.371,87.084 +47944,28.123,87.1763 +47945,21.619,86.9316 +47946,23.312,87.0181 +47947,25.039,87.1266 +47948,26.801,87.2592 +47949,20.268,86.8958 +47950,21.97,87.0212 +47951,23.706,87.1692 +47952,25.479,87.342 +47953,18.919,86.86 +47954,20.628,87.0243 +47955,22.373,87.2117 +47956,24.155,87.4247 +47957,17.571,86.8243 +47958,19.288,87.0274 +47959,21.039,87.2542 +47960,22.829,87.5073 +47961,16.225,86.7887 +47962,17.947,87.0305 +47963,19.705,87.2967 +47964,21.503,87.5897 +47965,14.88,86.7533 +47966,16.607,87.0336 +47967,18.371,87.339 +47968,20.174,87.672 +47969,13.536,86.7181 +47970,15.267,87.0369 +47971,17.036,87.3813 +47972,18.845,87.7541 +47973,12.193,86.683 +47974,13.928,87.0401 +47975,15.7,87.4236 +47976,17.514,87.836 +47977,10.852,86.6482 +47978,12.589,87.0435 +47979,14.364,87.4657 +47980,16.181,87.9175 +47981,9.5122,86.6137 +47982,11.25,87.0469 +47983,13.028,87.5077 +47984,14.847,87.9988 +47985,8.1737,86.5794 +47986,9.9123,87.0504 +47987,11.69,87.5495 +47988,13.512,88.0797 +47989,6.8365,86.5455 +47990,8.5746,87.054 +47991,10.353,87.5913 +47992,12.175,88.1603 +47993,5.5007,86.5119 +47994,7.2374,87.0577 +47995,9.0148,87.6329 +47996,10.837,88.2405 +47997,4.1661,86.4786 +47998,5.9006,87.0615 +47999,7.6762,87.6743 +48000,9.4971,88.3202 +48001,2.8329,86.4458 +48002,4.5642,87.0654 +48003,6.3371,87.7156 +48004,8.1561,88.3995 +48005,1.501,86.4134 +48006,3.2282,87.0695 +48007,4.9975,87.7567 +48008,6.8136,88.4783 +48009,0.1704,86.3815 +48010,1.8926,87.0738 +48011,3.6574,87.7977 +48012,5.4696,88.5566 +48013,358.84,86.3501 +48014,0.55745,87.0781 +48015,2.3168,87.8384 +48016,4.1243,88.6343 +48017,357.51,86.3192 +48018,359.22,87.0827 +48019,0.9757,87.8789 +48020,2.7775,88.7114 +48021,356.19,86.2888 +48022,357.89,87.0874 +48023,359.63,87.9193 +48024,1.4293,88.788 +48025,354.86,86.259 +48026,356.55,87.0923 +48027,358.29,87.9594 +48028,0.07972,88.8639 +48029,353.54,86.2298 +48030,355.22,87.0974 +48031,356.95,87.9992 +48032,358.73,88.9391 +48033,352.21,86.2012 +48034,353.89,87.1027 +48035,355.61,88.0389 +48036,357.38,89.0136 +48037,350.89,86.1733 +48038,352.55,87.1082 +48039,354.26,88.0783 +48040,356.02,89.08739 +48041,349.57,86.1461 +48042,351.22,87.114 +48043,352.92,88.1174 +48044,354.67,89.16042 +48045,348.25,86.1195 +48046,349.89,87.1199 +48047,351.57,88.1562 +48048,353.31,89.23268 +48049,346.94,86.0937 +48050,348.56,87.1261 +48051,350.23,88.1948 +48052,351.95,89.30412 +48053,345.62,86.0686 +48054,347.23,87.1325 +48055,348.88,88.2331 +48056,350.59,89.37472 +48057,344.3,86.0443 +48058,345.9,87.1392 +48059,347.54,88.2711 +48060,349.23,89.44446 +48061,342.99,86.0208 +48062,344.57,87.1462 +48063,346.19,88.3088 +48064,347.87,89.51331 +48065,341.68,85.9982 +48066,343.24,87.1534 +48067,344.84,88.3462 +48068,346.51,89.58124 +48069,340.36,85.9764 +48070,341.91,87.1609 +48071,343.5,88.3833 +48072,345.14,89.64823 +48073,339.05,85.9554 +48074,340.58,87.1686 +48075,342.15,88.42 +48076,343.78,89.71426 +48077,337.74,85.9354 +48078,339.25,87.1767 +48079,340.8,88.4564 +48080,342.41,89.7793 +48081,336.43,85.9163 +48082,337.92,87.1851 +48083,339.45,88.4925 +48084,341.04,89.84332 +48085,335.13,85.8981 +48086,336.59,87.1937 +48087,338.1,88.5282 +48088,339.67,89.90631 +48089,333.82,85.8808 +48090,335.26,87.2027 +48091,336.75,88.5635 +48092,338.3,89.968239 +48093,332.52,85.8646 +48094,333.94,87.212 +48095,335.4,88.5985 +48096,336.93,90.029088 +48097,331.21,85.8493 +48098,332.61,87.2216 +48099,334.05,88.6331 +48100,335.56,90.088835 +48101,329.91,85.8351 +48102,331.28,87.2316 +48103,332.7,88.6674 +48104,334.18,90.14746 +48105,328.61,85.8219 +48106,329.95,87.2419 +48107,331.35,88.7012 +48108,332.81,90.20494 +48109,327.3,85.8098 +48110,328.63,87.2525 +48111,330,88.7347 +48112,331.43,90.26126 +48113,326,85.7987 +48114,327.3,87.2635 +48115,328.65,88.7677 +48116,330.05,90.3164 +48117,324.7,85.7888 +48118,325.98,87.2749 +48119,327.3,88.8004 +48120,328.67,90.37034 +48121,323.41,85.78 +48122,324.65,87.2866 +48123,325.94,88.8326 +48124,327.29,90.42307 +48125,322.11,85.7723 +48126,323.33,87.2987 +48127,324.59,88.8645 +48128,325.91,90.47456 +48129,320.81,85.7657 +48130,322,87.3112 +48131,323.24,88.8959 +48132,324.53,90.5248 +48133,319.52,85.7603 +48134,320.68,87.324 +48135,321.88,88.9268 +48136,323.15,90.57378 +48137,318.22,85.7561 +48138,319.35,87.3372 +48139,320.53,88.9574 +48140,321.76,90.62147 +48141,316.93,85.753 +48142,318.03,87.3509 +48143,319.18,88.9875 +48144,320.38,90.66787 +48145,315.63,85.7512 +48146,316.7,87.3649 +48147,317.82,89.01716 +48148,318.99,90.71297 +48149,314.34,85.7506 +48150,315.38,87.3793 +48151,316.47,89.04638 +48152,317.61,90.75674 +48153,313.05,85.7512 +48154,314.06,87.3941 +48155,315.11,89.07515 +48156,316.22,90.79919 +48157,311.76,85.7531 +48158,312.73,87.4093 +48159,313.75,89.10346 +48160,314.83,90.84029 +48161,310.47,85.7562 +48162,311.41,87.4249 +48163,312.4,89.13132 +48164,313.44,90.88003 +48165,309.18,85.7606 +48166,310.09,87.441 +48167,311.04,89.15871 +48168,312.05,90.91841 +48169,307.89,85.7663 +48170,308.76,87.4574 +48171,309.69,89.18564 +48172,310.66,90.95542 +48173,306.6,85.7732 +48174,307.44,87.4743 +48175,308.33,89.2121 +48176,309.27,90.99104 +48177,305.31,85.7815 +48178,306.12,87.4916 +48179,306.97,89.23809 +48180,307.88,91.0253 +48181,304.02,85.791 +48182,304.8,87.5093 +48183,305.61,89.26361 +48184,306.48,91.0581 +48185,302.74,85.8019 +48186,303.48,87.5275 +48187,304.26,89.28865 +48188,305.09,91.0896 +48189,301.45,85.8141 +48190,302.15,87.546 +48191,302.9,89.31321 +48192,303.69,91.1196 +48193,300.16,85.8276 +48194,300.83,87.5651 +48195,301.54,89.33729 +48196,302.3,91.1482 +48197,298.88,85.8424 +48198,299.51,87.5845 +48199,300.18,89.3609 +48200,300.9,91.1754 +48201,297.59,85.8586 +48202,298.19,87.6044 +48203,298.82,89.38401 +48204,299.51,91.2012 +48205,296.31,85.8761 +48206,296.87,87.6247 +48207,297.47,89.40665 +48208,298.11,91.2256 +48209,295.02,85.8949 +48210,295.55,87.6454 +48211,296.11,89.4288 +48212,296.71,91.2485 +48213,293.74,85.9151 +48214,294.22,87.6666 +48215,294.75,89.45046 +48216,295.32,91.27 +48217,292.45,85.9367 +48218,292.9,87.6882 +48219,293.39,89.47164 +48220,293.92,91.2901 +48221,291.17,85.9596 +48222,291.58,87.7103 +48223,292.03,89.49233 +48224,292.52,91.3088 +48225,289.89,85.9838 +48226,290.26,87.7327 +48227,290.67,89.51253 +48228,291.12,91.326 +48229,288.6,86.0094 +48230,288.94,87.7557 +48231,289.31,89.53225 +48232,289.72,91.3419 +48233,287.32,86.0364 +48234,287.62,87.779 +48235,287.95,89.55148 +48236,288.32,91.3563 +48237,286.04,86.0647 +48238,286.3,87.8028 +48239,286.59,89.57023 +48240,286.93,91.3693 +48241,284.76,86.0943 +48242,284.98,87.8271 +48243,285.23,89.5885 +48244,285.53,91.3809 +48245,283.47,86.1253 +48246,283.66,87.8517 +48247,283.87,89.60628 +48248,284.13,91.391 +48249,282.19,86.1576 +48250,282.33,87.8768 +48251,282.51,89.62358 +48252,282.73,91.3998 +48253,280.91,86.1913 +48254,281.01,87.9023 +48255,281.15,89.64041 +48256,281.33,91.4072 +48257,279.63,86.2262 +48258,279.69,87.9283 +48259,279.79,89.65675 +48260,279.93,91.4132 +48261,278.34,86.2626 +48262,278.37,87.9547 +48263,278.43,89.67262 +48264,278.53,91.4179 +48265,277.06,86.3002 +48266,277.05,87.9815 +48267,277.07,89.68802 +48268,277.13,91.4212 +48269,275.78,86.3391 +48270,275.73,88.0087 +48271,275.71,89.70295 +48272,275.73,91.4231 +48273,274.49,86.3794 +48274,274.41,88.0364 +48275,274.35,89.71741 +48276,274.33,91.4236 +48277,273.21,86.421 +48278,273.09,88.0644 +48279,272.99,89.73141 +48280,272.92,91.4229 +48281,271.93,86.4638 +48282,271.77,88.0929 +48283,271.63,89.74495 +48284,271.53,91.4208 +48285,270.65,86.5079 +48286,270.44,88.1218 +48287,270.27,89.75803 +48288,270.13,91.4173 +48289,269.36,86.5533 +48290,269.12,88.1511 +48291,268.91,89.77066 +48292,268.73,91.4126 +48293,268.08,86.6 +48294,267.8,88.1807 +48295,267.55,89.78284 +48296,267.33,91.4066 +48297,266.79,86.6478 +48298,266.48,88.2108 +48299,266.19,89.79457 +48300,265.93,91.3994 +48301,265.51,86.697 +48302,265.16,88.2413 +48303,264.83,89.80587 +48304,264.53,91.3908 +48305,264.22,86.7473 +48306,263.83,88.2722 +48307,263.47,89.81673 +48308,263.13,91.3811 +48309,262.94,86.7989 +48310,262.51,88.3034 +48311,262.11,89.82715 +48312,261.73,91.3701 +48313,261.65,86.8516 +48314,261.19,88.335 +48315,260.75,89.83716 +48316,260.33,91.3578 +48317,260.37,86.9055 +48318,259.87,88.367 +48319,259.39,89.84674 +48320,258.94,91.3444 +48321,259.08,86.9606 +48322,258.54,88.3994 +48323,258.03,89.85591 +48324,257.54,91.3298 +48325,257.79,87.0169 +48326,257.22,88.4321 +48327,256.67,89.86467 +48328,256.14,91.3141 +48329,256.51,87.0742 +48330,255.9,88.4652 +48331,255.31,89.87302 +48332,254.75,91.2972 +48333,255.22,87.1327 +48334,254.57,88.4986 +48335,253.95,89.88098 +48336,253.35,91.2792 +48337,253.93,87.1923 +48338,253.25,88.5323 +48339,252.59,89.88855 +48340,251.95,91.2601 +48341,252.64,87.2529 +48342,251.93,88.5664 +48343,251.23,89.89574 +48344,250.56,91.2399 +48345,251.35,87.3146 +48346,250.6,88.6009 +48347,249.87,89.902545 +48348,249.17,91.2187 +48349,250.06,87.3773 +48350,249.28,88.6356 +48351,248.52,89.908982 +48352,247.77,91.1964 +48353,248.77,87.4411 +48354,247.95,88.6707 +48355,247.16,89.915056 +48356,246.38,91.1731 +48357,247.48,87.5058 +48358,246.63,88.7061 +48359,245.8,89.920774 +48360,244.99,91.1489 +48361,246.19,87.5715 +48362,245.3,88.7418 +48363,244.44,89.926143 +48364,243.6,91.1236 +48365,244.89,87.6382 +48366,243.98,88.7777 +48367,243.08,89.931171 +48368,242.21,91.0974 +48369,243.6,87.7058 +48370,242.65,88.814 +48371,241.73,89.935865 +48372,240.82,91.0703 +48373,242.3,87.7743 +48374,241.33,88.8505 +48375,240.37,89.940234 +48376,239.43,91.0423 +48377,241.01,87.8437 +48378,240,88.8873 +48379,239.01,89.944285 +48380,238.04,91.0134 +48381,239.71,87.9139 +48382,238.67,88.9244 +48383,237.65,89.948027 +48384,236.65,90.98362 +48385,238.41,87.985 +48386,237.35,88.9617 +48387,236.3,89.951468 +48388,235.26,90.95305 +48389,237.12,88.0568 +48390,236.02,88.9992 +48391,234.94,89.954616 +48392,233.88,90.92169 +48393,235.82,88.1295 +48394,234.69,89.03702 +48395,233.58,89.95748 +48396,232.49,90.88955 +48397,234.52,88.2029 +48398,233.36,89.07503 +48399,232.23,89.960069 +48400,231.11,90.85667 +48401,233.22,88.2771 +48402,232.04,89.11327 +48403,230.87,89.962392 +48404,229.73,90.82308 +48405,231.91,88.3519 +48406,230.71,89.15171 +48407,229.52,89.964457 +48408,228.34,90.78879 +48409,230.61,88.4274 +48410,229.38,89.19034 +48411,228.16,89.966274 +48412,226.96,90.75383 +48413,229.31,88.5036 +48414,228.05,89.22917 +48415,226.81,89.967852 +48416,225.58,90.71825 +48417,228,88.5803 +48418,226.72,89.26817 +48419,225.45,89.9692 +48420,224.2,90.68205 +48421,226.7,88.6577 +48422,225.39,89.30735 +48423,224.1,89.970328 +48424,222.83,90.64528 +48425,225.39,88.7356 +48426,224.06,89.34668 +48427,222.74,89.971245 +48428,221.45,90.60795 +48429,224.08,88.8141 +48430,222.73,89.38617 +48431,221.39,89.971961 +48432,220.07,90.57011 +48433,222.77,88.893 +48434,221.4,89.42579 +48435,220.04,89.972486 +48436,218.7,90.53177 +48437,221.46,88.9725 +48438,220.06,89.46554 +48439,218.69,89.972829 +48440,217.32,90.49296 +48441,220.15,89.05232 +48442,218.73,89.50541 +48443,217.33,89.973 +48444,215.95,90.45373 +48445,218.84,89.13259 +48446,217.4,89.54539 +48447,215.98,89.97301 +48448,214.58,90.41409 +48449,217.52,89.21324 +48450,216.07,89.58547 +48451,214.63,89.972868 +48452,213.21,90.37407 +48453,216.21,89.29423 +48454,214.73,89.62564 +48455,213.28,89.972584 +48456,211.84,90.33371 +48457,214.89,89.37554 +48458,213.4,89.66589 +48459,211.93,89.972169 +48460,210.47,90.29304 +48461,213.57,89.45714 +48462,212.07,89.7062 +48463,210.57,89.971633 +48464,209.1,90.25208 +48465,212.26,89.53898 +48466,210.73,89.74657 +48467,209.22,89.970985 +48468,207.74,90.21087 +48469,210.94,89.62104 +48470,209.4,89.78698 +48471,207.87,89.970237 +48472,206.37,90.16944 +48473,209.61,89.70329 +48474,208.06,89.82743 +48475,206.52,89.969398 +48476,205.01,90.12781 +48477,208.29,89.78569 +48478,206.72,89.8679 +48479,205.18,89.96848 +48480,203.65,90.086024 +48481,206.97,89.86822 +48482,205.39,89.908388 +48483,203.83,89.967491 +48484,202.29,90.044105 +48485,205.64,89.950828 +48486,204.05,89.948877 +48487,202.48,89.966444 +48488,200.93,90.0020858 +48489,204.32,90.033494 +48490,202.71,89.989356 +48491,201.13,89.965348 +48492,199.57,89.959997 +48493,202.99,90.11618 +48494,201.38,90.029816 +48495,199.78,89.964213 +48496,198.21,89.917869 +48497,201.66,90.19886 +48498,200.04,90.070246 +48499,198.43,89.963051 +48500,196.85,89.87573 +48501,200.33,90.28149 +48502,198.7,90.11063 +48503,197.09,89.961871 +48504,195.5,89.83362 +48505,199,90.36404 +48506,197.36,90.15097 +48507,195.74,89.960684 +48508,194.15,89.79156 +48509,197.67,90.44648 +48510,196.02,90.19124 +48511,194.39,89.959501 +48512,192.79,89.74958 +48513,196.33,90.52878 +48514,194.68,90.23144 +48515,193.05,89.958331 +48516,191.44,89.70772 +48517,195,90.6109 +48518,193.34,90.27155 +48519,191.7,89.957186 +48520,190.09,89.66601 +48521,193.66,90.6928 +48522,192,90.31157 +48523,190.36,89.956076 +48524,188.74,89.62447 +48525,192.32,90.77446 +48526,190.66,90.35148 +48527,189.01,89.955011 +48528,187.4,89.58313 +48529,190.98,90.85585 +48530,189.31,90.39127 +48531,187.67,89.954 +48532,186.05,89.54204 +48533,189.64,90.93692 +48534,187.97,90.43093 +48535,186.32,89.953056 +48536,184.71,89.50121 +48537,188.3,91.0176 +48538,186.63,90.47045 +48539,184.98,89.952188 +48540,183.36,89.46067 +48541,186.96,91.098 +48542,185.28,90.50983 +48543,183.64,89.951405 +48544,182.02,89.42047 +48545,185.61,91.1779 +48546,183.94,90.54904 +48547,182.3,89.950719 +48548,180.68,89.38061 +48549,184.27,91.2574 +48550,182.6,90.58808 +48551,180.95,89.950139 +48552,179.34,89.34115 +48553,182.92,91.3364 +48554,181.25,90.62693 +48555,179.61,89.949675 +48556,178,89.3021 +48557,181.57,91.4149 +48558,179.91,90.6656 +48559,178.27,89.949337 +48560,176.66,89.26349 +48561,180.22,91.4929 +48562,178.56,90.70406 +48563,176.93,89.949135 +48564,175.33,89.22536 +48565,178.87,91.5703 +48566,177.21,90.74231 +48567,175.59,89.949079 +48568,173.99,89.18773 +48569,177.52,91.6471 +48570,175.87,90.78033 +48571,174.25,89.949179 +48572,172.66,89.15063 +48573,176.17,91.7233 +48574,174.52,90.81812 +48575,172.91,89.949443 +48576,171.33,89.11408 +48577,174.81,91.7987 +48578,173.17,90.85567 +48579,171.57,89.949882 +48580,170,89.07812 +48581,173.45,91.8735 +48582,171.82,90.89296 +48583,170.23,89.950505 +48584,168.67,89.04278 +48585,172.1,91.9476 +48586,170.47,90.92998 +48587,168.89,89.951321 +48588,167.34,89.00808 +48589,170.74,92.0209 +48590,169.13,90.96674 +48591,167.55,89.952339 +48592,166.01,88.974 +48593,169.38,92.0934 +48594,167.78,91.0032 +48595,166.21,89.953569 +48596,164.68,88.9407 +48597,168.01,92.1651 +48598,166.43,91.0394 +48599,164.88,89.955019 +48600,163.36,88.9081 +48601,166.65,92.236 +48602,165.08,91.0753 +48603,163.54,89.956699 +48604,162.03,88.8762 +48605,165.29,92.3059 +48606,163.72,91.1108 +48607,162.2,89.958616 +48608,160.71,88.8451 +48609,163.92,92.375 +48610,162.37,91.1461 +48611,160.86,89.960779 +48612,159.39,88.8148 +48613,162.56,92.4431 +48614,161.02,91.181 +48615,159.53,89.963198 +48616,158.07,88.7853 +48617,161.19,92.5103 +48618,159.67,91.2156 +48619,158.19,89.965879 +48620,156.75,88.7567 +48621,159.82,92.5765 +48622,158.32,91.2498 +48623,156.86,89.968832 +48624,155.43,88.7289 +48625,158.45,92.6417 +48626,156.96,91.2837 +48627,155.52,89.972064 +48628,154.11,88.702 +48629,157.08,92.7058 +48630,155.61,91.3172 +48631,154.19,89.975583 +48632,152.8,88.6761 +48633,155.7,92.7689 +48634,154.26,91.3503 +48635,152.85,89.979397 +48636,151.48,88.6511 +48637,154.33,92.8309 +48638,152.9,91.3831 +48639,151.52,89.983513 +48640,150.17,88.627 +48641,152.96,92.8918 +48642,151.55,91.4154 +48643,150.18,89.987938 +48644,148.86,88.6039 +48645,151.58,92.9515 +48646,150.19,91.4474 +48647,148.85,89.99268 +48648,147.54,88.5819 +48649,150.2,93.0101 +48650,148.84,91.479 +48651,147.52,89.9977457 +48652,146.23,88.5608 +48653,148.82,93.0675 +48654,147.48,91.5101 +48655,146.18,90.0031419 +48656,144.92,88.5408 +48657,147.44,93.1237 +48658,146.12,91.5409 +48659,144.85,90.0088753 +48660,143.61,88.5219 +48661,146.06,93.1787 +48662,144.77,91.5712 +48663,143.52,90.014952 +48664,142.3,88.5041 +48665,144.68,93.2324 +48666,143.41,91.6011 +48667,142.18,90.021379 +48668,141,88.4873 +48669,143.3,93.2849 +48670,142.05,91.6305 +48671,140.85,90.028162 +48672,139.69,88.4717 +48673,141.92,93.3361 +48674,140.7,91.6596 +48675,139.52,90.035306 +48676,138.38,88.4572 +48677,140.53,93.386 +48678,139.34,91.6881 +48679,138.19,90.042818 +48680,137.08,88.4439 +48681,139.15,93.4345 +48682,137.98,91.7162 +48683,136.86,90.050703 +48684,135.77,88.4318 +48685,137.76,93.4818 +48686,136.62,91.7439 +48687,135.53,90.058966 +48688,134.47,88.4208 +48689,136.37,93.5276 +48690,135.26,91.771 +48691,134.2,90.067613 +48692,133.17,88.411 +48693,134.99,93.5721 +48694,133.9,91.7977 +48695,132.87,90.076647 +48696,131.87,88.4025 +48697,133.6,93.6153 +48698,132.54,91.824 +48699,131.54,90.086075 +48700,130.56,88.3952 +48701,132.21,93.657 +48702,131.18,91.8497 +48703,130.21,90.095899 +48704,129.26,88.3891 +48705,130.82,93.6973 +48706,129.82,91.875 +48707,128.88,90.10613 +48708,127.96,88.3843 +48709,129.43,93.7362 +48710,128.46,91.8997 +48711,127.55,90.11676 +48712,126.67,88.3808 +48713,128.03,93.7736 +48714,127.1,91.924 +48715,126.22,90.1278 +48716,125.37,88.3786 +48717,126.64,93.8096 +48718,125.74,91.9478 +48719,124.89,90.13925 +48720,124.07,88.3776 +48721,125.25,93.8442 +48722,124.38,91.9711 +48723,123.56,90.15112 +48724,122.77,88.378 +48725,123.85,93.8773 +48726,123.02,91.9938 +48727,122.23,90.16341 +48728,121.47,88.3796 +48729,122.46,93.9089 +48730,121.66,92.0161 +48731,120.9,90.17612 +48732,120.18,88.3826 +48733,121.06,93.939 +48734,120.3,92.0379 +48735,119.57,90.18926 +48736,118.88,88.3869 +48737,119.67,93.9676 +48738,118.93,92.0591 +48739,118.24,90.20282 +48740,117.59,88.3926 +48741,118.27,93.9947 +48742,117.57,92.0798 +48743,116.91,90.21681 +48744,116.29,88.3996 +48745,116.87,94.0204 +48746,116.21,92.1 +48747,115.59,90.23124 +48748,115,88.408 +48749,115.48,94.0445 +48750,114.85,92.1197 +48751,114.26,90.24609 +48752,113.7,88.4177 +48753,114.08,94.0671 +48754,113.48,92.1389 +48755,112.93,90.26139 +48756,112.41,88.4288 +48757,112.68,94.0882 +48758,112.12,92.1575 +48759,111.6,90.27711 +48760,111.12,88.4412 +48761,111.28,94.1078 +48762,110.76,92.1757 +48763,110.27,90.29328 +48764,109.82,88.455 +48765,109.88,94.1259 +48766,109.39,92.1933 +48767,108.95,90.30988 +48768,108.53,88.4702 +48769,108.48,94.1424 +48770,108.03,92.2103 +48771,107.62,90.32692 +48772,107.24,88.4868 +48773,107.08,94.1574 +48774,106.67,92.2269 +48775,106.29,90.34439 +48776,105.95,88.5048 +48777,105.68,94.171 +48778,105.3,92.2429 +48779,104.96,90.36231 +48780,104.65,88.5241 +48781,104.28,94.183 +48782,103.94,92.2584 +48783,103.63,90.38066 +48784,103.36,88.5448 +48785,102.88,94.1934 +48786,102.57,92.2734 +48787,102.31,90.39946 +48788,102.07,88.5669 +48789,101.48,94.2024 +48790,101.21,92.2878 +48791,100.98,90.41868 +48792,100.78,88.5904 +48793,100.08,94.2099 +48794,99.847,92.3018 +48795,99.651,90.43835 +48796,99.485,88.6152 +48797,98.675,94.2159 +48798,98.483,92.3152 +48799,98.324,90.45845 +48800,98.194,88.6414 +48801,97.273,94.2204 +48802,97.118,92.3281 +48803,96.996,90.47898 +48804,96.902,88.669 +48805,95.871,94.2233 +48806,95.754,92.3404 +48807,95.668,90.49995 +48808,95.61,88.698 +48809,94.47,94.2249 +48810,94.39,92.3523 +48811,94.341,90.52134 +48812,94.319,88.7283 +48813,93.068,94.2249 +48814,93.025,92.3636 +48815,93.013,90.54316 +48816,93.027,88.7599 +48817,91.666,94.2235 +48818,91.661,92.3744 +48819,91.685,90.56541 +48820,91.735,88.793 +48821,90.265,94.2206 +48822,90.297,92.3848 +48823,90.357,90.58808 +48824,90.443,88.8273 +48825,88.863,94.2163 +48826,88.932,92.3946 +48827,89.029,90.61117 +48828,89.151,88.863 +48829,87.462,94.2105 +48830,87.568,92.4039 +48831,87.701,90.63468 +48832,87.859,88.9 +48833,86.06,94.2034 +48834,86.203,92.4127 +48835,86.373,90.6586 +48836,86.566,88.9384 +48837,84.659,94.1948 +48838,84.839,92.421 +48839,85.045,90.68293 +48840,85.274,88.978 +48841,83.258,94.1848 +48842,83.475,92.4288 +48843,83.716,90.70767 +48844,83.981,89.019 +48845,81.857,94.1735 +48846,82.11,92.4362 +48847,82.388,90.73281 +48848,82.687,89.06124 +48849,80.457,94.1608 +48850,80.746,92.443 +48851,81.059,90.75835 +48852,81.394,89.10475 +48853,79.057,94.1467 +48854,79.382,92.4494 +48855,79.73,90.78428 +48856,80.1,89.14953 +48857,77.657,94.1313 +48858,78.018,92.4553 +48859,78.402,90.8106 +48860,78.806,89.19556 +48861,76.257,94.1146 +48862,76.654,92.4607 +48863,77.073,90.8373 +48864,77.511,89.24282 +48865,74.858,94.0966 +48866,75.29,92.4657 +48867,75.743,90.86438 +48868,76.216,89.29131 +48869,73.459,94.0773 +48870,73.926,92.4702 +48871,74.414,90.89184 +48872,74.92,89.34101 +48873,72.061,94.0567 +48874,72.563,92.4743 +48875,73.084,90.91966 +48876,73.624,89.3919 +48877,70.663,94.0349 +48878,71.199,92.4779 +48879,71.755,90.94784 +48880,72.328,89.44396 +48881,69.265,94.0119 +48882,69.836,92.4811 +48883,70.425,90.97638 +48884,71.031,89.49719 +48885,67.868,93.9877 +48886,68.473,92.4838 +48887,69.095,91.0053 +48888,69.733,89.55155 +48889,66.472,93.9623 +48890,67.109,92.4861 +48891,67.764,91.0345 +48892,68.435,89.60704 +48893,65.076,93.9357 +48894,65.746,92.488 +48895,66.434,91.0641 +48896,67.136,89.66364 +48897,63.681,93.908 +48898,64.384,92.4895 +48899,65.103,91.094 +48900,65.837,89.72132 +48901,62.286,93.8792 +48902,63.021,92.4906 +48903,63.772,91.1242 +48904,64.537,89.78007 +48905,60.892,93.8493 +48906,61.659,92.4912 +48907,62.44,91.1547 +48908,63.236,89.83986 +48909,59.499,93.8183 +48910,60.296,92.4915 +48911,61.109,91.1856 +48912,61.935,89.900678 +48913,58.106,93.7863 +48914,58.934,92.4914 +48915,59.777,91.2167 +48916,60.633,89.962498 +48917,56.714,93.7533 +48918,57.573,92.4909 +48919,58.445,91.2482 +48920,59.33,90.025299 +48921,55.323,93.7192 +48922,56.211,92.4901 +48923,57.113,91.2799 +48924,58.027,90.089058 +48925,53.932,93.6842 +48926,54.85,92.4889 +48927,55.78,91.3119 +48928,56.722,90.15375 +48929,52.543,93.6483 +48930,53.488,92.4873 +48931,54.447,91.3442 +48932,55.417,90.21936 +48933,51.154,93.6114 +48934,52.128,92.4854 +48935,53.114,91.3767 +48936,54.111,90.28585 +48937,49.766,93.5736 +48938,50.767,92.4832 +48939,51.78,91.4095 +48940,52.804,90.3532 +48941,48.379,93.535 +48942,49.407,92.4806 +48943,50.446,91.4425 +48944,51.497,90.42139 +48945,46.992,93.4956 +48946,48.046,92.4778 +48947,49.112,91.4758 +48948,50.188,90.49039 +48949,45.607,93.4553 +48950,46.686,92.4746 +48951,47.777,91.5093 +48952,48.878,90.56017 +48953,44.222,93.4143 +48954,45.327,92.4711 +48955,46.442,91.543 +48956,47.568,90.63071 +48957,42.839,93.3725 +48958,43.968,92.4673 +48959,45.107,91.5769 +48960,46.257,90.70198 +48961,41.456,93.33 +48962,42.609,92.4633 +48963,43.772,91.611 +48964,44.944,90.77396 +48965,40.075,93.2868 +48966,41.25,92.459 +48967,42.436,91.6453 +48968,43.631,90.84661 +48969,38.694,93.2429 +48970,39.891,92.4544 +48971,41.099,91.6797 +48972,42.317,90.9199 +48973,37.314,93.1985 +48974,38.533,92.4496 +48975,39.763,91.7144 +48976,41.001,90.99381 +48977,35.935,93.1534 +48978,37.175,92.4445 +48979,38.426,91.7491 +48980,39.685,91.0683 +48981,34.558,93.1077 +48982,35.818,92.4392 +48983,37.088,91.7841 +48984,38.368,91.1434 +48985,33.181,93.0615 +48986,34.461,92.4337 +48987,35.75,91.8192 +48988,37.049,91.219 +48989,31.806,93.0148 +48990,33.104,92.4279 +48991,34.412,91.8544 +48992,35.73,91.295 +48993,30.431,92.9676 +48994,31.747,92.422 +48995,33.074,91.8897 +48996,34.409,91.3716 +48997,29.058,92.92 +48998,30.391,92.4159 +48999,31.735,91.9251 +49000,33.088,91.4486 +49001,27.686,92.8719 +49002,29.035,92.4096 +49003,30.395,91.9606 +49004,31.765,91.526 +49005,26.314,92.8235 +49006,27.68,92.4031 +49007,29.056,91.9962 +49008,30.441,91.6037 +49009,24.944,92.7747 +49010,26.325,92.3965 +49011,27.715,92.0319 +49012,29.116,91.6818 +49013,23.576,92.7256 +49014,24.97,92.3897 +49015,26.375,92.0676 +49016,27.789,91.7602 +49017,22.208,92.6762 +49018,23.615,92.3828 +49019,25.034,92.1034 +49020,26.462,91.8389 +49021,20.841,92.6265 +49022,22.261,92.3758 +49023,23.692,92.1392 +49024,25.134,91.9179 +49025,19.476,92.5767 +49026,20.907,92.3686 +49027,22.351,92.1751 +49028,23.804,91.997 +49029,18.111,92.5266 +49030,19.554,92.3614 +49031,21.008,92.211 +49032,22.473,92.0763 +49033,16.748,92.4764 +49034,18.201,92.354 +49035,19.666,92.2469 +49036,21.141,92.1558 +49037,15.386,92.426 +49038,16.848,92.3466 +49039,18.323,92.2827 +49040,19.807,92.2354 +49041,14.026,92.3755 +49042,15.496,92.3391 +49043,16.979,92.3186 +49044,18.473,92.315 +49045,12.666,92.325 +49046,14.144,92.3315 +49047,15.635,92.3544 +49048,17.137,92.3947 +49049,11.308,92.2744 +49050,12.793,92.3239 +49051,14.291,92.3902 +49052,15.8,92.4744 +49053,9.9507,92.2239 +49054,11.442,92.3162 +49055,12.946,92.426 +49056,14.462,92.5541 +49057,8.5948,92.1734 +49058,10.091,92.3085 +49059,11.6,92.4617 +49060,13.122,92.6337 +49061,7.2401,92.1229 +49062,8.7406,92.3008 +49063,10.255,92.4973 +49064,11.782,92.7132 +49065,5.8866,92.0725 +49066,7.3906,92.2931 +49067,8.9086,92.5329 +49068,10.44,92.7926 +49069,4.5343,92.0223 +49070,6.0409,92.2854 +49071,7.5619,92.5683 +49072,9.0965,92.8719 +49073,3.1832,91.9722 +49074,4.6917,92.2777 +49075,6.2149,92.6036 +49076,7.7521,92.9509 +49077,1.8333,91.9223 +49078,3.3429,92.2701 +49079,4.8674,92.6389 +49080,6.4064,93.0297 +49081,0.48465,91.8726 +49082,1.9944,92.2624 +49083,3.5195,92.674 +49084,5.0594,93.1083 +49085,359.14,91.8232 +49086,0.6463,92.2549 +49087,2.1711,92.7089 +49088,3.7112,93.1865 +49089,357.79,91.7741 +49090,359.3,92.2473 +49091,0.82226,92.7437 +49092,2.3617,93.2645 +49093,356.45,91.7253 +49094,357.95,92.2399 +49095,359.47,92.7784 +49096,1.011,93.342 +49097,355.1,91.6768 +49098,356.6,92.2325 +49099,358.12,92.8128 +49100,359.66,93.4192 +49101,353.76,91.6287 +49102,355.26,92.2252 +49103,356.77,92.8471 +49104,358.31,93.4959 +49105,352.42,91.581 +49106,353.91,92.218 +49107,355.42,92.8812 +49108,356.95,93.5722 +49109,351.08,91.5338 +49110,352.57,92.2109 +49111,354.07,92.9151 +49112,355.6,93.6479 +49113,349.74,91.487 +49114,351.22,92.204 +49115,352.72,92.9488 +49116,354.24,93.7231 +49117,348.4,91.4407 +49118,349.88,92.1972 +49119,351.37,92.9822 +49120,352.88,93.7978 +49121,347.06,91.3949 +49122,348.53,92.1905 +49123,350.02,93.0154 +49124,351.52,93.8718 +49125,345.73,91.3497 +49126,347.19,92.1839 +49127,348.66,93.0484 +49128,350.16,93.9452 +49129,344.39,91.3051 +49130,345.84,92.1776 +49131,347.31,93.0811 +49132,348.8,94.018 +49133,343.06,91.2611 +49134,344.5,92.1713 +49135,345.96,93.1135 +49136,347.44,94.0901 +49137,341.73,91.2177 +49138,343.16,92.1653 +49139,344.6,93.1457 +49140,346.07,94.1614 +49141,340.4,91.175 +49142,341.81,92.1595 +49143,343.25,93.1776 +49144,344.71,94.2319 +49145,339.07,91.133 +49146,340.47,92.1538 +49147,341.89,93.2091 +49148,343.34,94.3017 +49149,337.74,91.0917 +49150,339.13,92.1484 +49151,340.54,93.2404 +49152,341.97,94.3707 +49153,336.41,91.0512 +49154,337.79,92.1432 +49155,339.18,93.2713 +49156,340.6,94.4388 +49157,335.08,91.0114 +49158,336.44,92.1382 +49159,337.83,93.302 +49160,339.23,94.506 +49161,333.76,90.97246 +49162,335.1,92.1334 +49163,336.47,93.3322 +49164,337.86,94.5723 +49165,332.43,90.93432 +49166,333.76,92.1289 +49167,335.11,93.3622 +49168,336.49,94.6376 +49169,331.11,90.89704 +49170,332.42,92.1247 +49171,333.76,93.3917 +49172,335.11,94.702 +49173,329.79,90.86063 +49174,331.08,92.1207 +49175,332.4,93.4209 +49176,333.74,94.7654 +49177,328.47,90.82513 +49178,329.74,92.117 +49179,331.04,93.4498 +49180,332.36,94.8277 +49181,327.15,90.79055 +49182,328.4,92.1135 +49183,329.68,93.4782 +49184,330.99,94.889 +49185,325.83,90.75691 +49186,327.06,92.1103 +49187,328.32,93.5063 +49188,329.61,94.9492 +49189,324.51,90.72425 +49190,325.72,92.1075 +49191,326.96,93.5339 +49192,328.23,95.0084 +49193,323.19,90.69258 +49194,324.39,92.1049 +49195,325.6,93.5612 +49196,326.85,95.0663 +49197,321.87,90.66192 +49198,323.05,92.1026 +49199,324.24,93.588 +49200,325.47,95.1231 +49201,320.56,90.6323 +49202,321.71,92.1007 +49203,322.88,93.6144 +49204,324.09,95.1787 +49205,319.24,90.60374 +49206,320.37,92.0991 +49207,321.52,93.6404 +49208,322.7,95.2332 +49209,317.93,90.57625 +49210,319.03,92.0978 +49211,320.16,93.6659 +49212,321.32,95.2863 +49213,316.62,90.54986 +49214,317.7,92.0968 +49215,318.8,93.691 +49216,319.94,95.3383 +49217,315.3,90.52458 +49218,316.36,92.0962 +49219,317.44,93.7157 +49220,318.55,95.3889 +49221,313.99,90.50044 +49222,315.02,92.0959 +49223,316.08,93.7398 +49224,317.16,95.4383 +49225,312.68,90.47745 +49226,313.69,92.096 +49227,314.72,93.7635 +49228,315.78,95.4863 +49229,311.37,90.45563 +49230,312.35,92.0965 +49231,313.35,93.7868 +49232,314.39,95.533 +49233,310.06,90.43499 +49234,311.01,92.0973 +49235,311.99,93.8095 +49236,313,95.5783 +49237,308.75,90.41556 +49238,309.68,92.0985 +49239,310.63,93.8318 +49240,311.61,95.6222 +49241,307.45,90.39735 +49242,308.34,92.1 +49243,309.27,93.8536 +49244,310.22,95.6648 +49245,306.14,90.38037 +49246,307.01,92.102 +49247,307.9,93.8748 +49248,308.83,95.7059 +49249,304.83,90.36464 +49250,305.67,92.1043 +49251,306.54,93.8956 +49252,307.43,95.7456 +49253,303.53,90.35017 +49254,304.34,92.107 +49255,305.17,93.9159 +49256,306.04,95.7838 +49257,302.22,90.33698 +49258,303,92.1102 +49259,303.81,93.9356 +49260,304.65,95.8206 +49261,300.92,90.32507 +49262,301.67,92.1137 +49263,302.45,93.9549 +49264,303.25,95.8559 +49265,299.61,90.31446 +49266,300.33,92.1176 +49267,301.08,93.9736 +49268,301.86,95.8898 +49269,298.31,90.30517 +49270,299,92.122 +49271,299.72,93.9918 +49272,300.46,95.9221 +49273,297,90.29719 +49274,297.67,92.1267 +49275,298.35,94.0095 +49276,299.06,95.9529 +49277,295.7,90.29055 +49278,296.33,92.1319 +49279,296.98,94.0266 +49280,297.67,95.9821 +49281,294.4,90.28525 +49282,295,92.1375 +49283,295.62,94.0432 +49284,296.27,96.0099 +49285,293.1,90.2813 +49286,293.66,92.1435 +49287,294.25,94.0592 +49288,294.87,96.0361 +49289,291.8,90.27871 +49290,292.33,92.15 +49291,292.89,94.0748 +49292,293.47,96.0607 +49293,290.5,90.27748 +49294,291,92.1568 +49295,291.52,94.0897 +49296,292.07,96.0838 +49297,289.19,90.27762 +49298,289.66,92.1641 +49299,290.16,94.1041 +49300,290.67,96.1053 +49301,287.89,90.27914 +49302,288.33,92.1719 +49303,288.79,94.118 +49304,289.27,96.1252 +49305,286.59,90.28204 +49306,287,92.18 +49307,287.42,94.1313 +49308,287.87,96.1436 +49309,285.29,90.28634 +49310,285.66,92.1886 +49311,286.06,94.1441 +49312,286.47,96.1603 +49313,283.99,90.29202 +49314,284.33,92.1977 +49315,284.69,94.1563 +49316,285.07,96.1755 +49317,282.7,90.2991 +49318,283,92.2071 +49319,283.32,94.168 +49320,283.67,96.1891 +49321,281.4,90.30757 +49322,281.67,92.217 +49323,281.96,94.1791 +49324,282.27,96.2011 +49325,280.1,90.31744 +49326,280.33,92.2274 +49327,280.59,94.1896 +49328,280.87,96.2115 +49329,278.8,90.32872 +49330,279,92.2382 +49331,279.22,94.1996 +49332,279.47,96.2203 +49333,277.5,90.34139 +49334,277.67,92.2494 +49335,277.85,94.2091 +49336,278.06,96.2275 +49337,276.2,90.35547 +49338,276.33,92.261 +49339,276.49,94.2179 +49340,276.66,96.2331 +49341,274.9,90.37094 +49342,275,92.2731 +49343,275.12,94.2263 +49344,275.26,96.2371 +49345,273.6,90.38781 +49346,273.67,92.2857 +49347,273.75,94.234 +49348,273.86,96.2396 +49349,272.31,90.40608 +49350,272.34,92.2986 +49351,272.38,94.2412 +49352,272.45,96.2404 +49353,271.01,90.42574 +49354,271,92.312 +49355,271.02,94.2479 +49356,271.05,96.2397 +49357,269.71,90.44679 +49358,269.67,92.3259 +49359,269.65,94.254 +49360,269.65,96.2374 +49361,268.41,90.46922 +49362,268.34,92.3401 +49363,268.28,94.2596 +49364,268.25,96.2336 +49365,267.11,90.49303 +49366,267,92.3548 +49367,266.91,94.2646 +49368,266.84,96.2282 +49369,265.81,90.51822 +49370,265.67,92.37 +49371,265.55,94.269 +49372,265.44,96.2212 +49373,264.51,90.54477 +49374,264.34,92.3855 +49375,264.18,94.273 +49376,264.04,96.2127 +49377,263.21,90.57268 +49378,263,92.4015 +49379,262.81,94.2764 +49380,262.64,96.2027 +49381,261.91,90.60194 +49382,261.67,92.4178 +49383,261.44,94.2792 +49384,261.24,96.1912 +49385,260.61,90.63254 +49386,260.34,92.4346 +49387,260.08,94.2815 +49388,259.83,96.1781 +49389,259.31,90.66447 +49390,259,92.4519 +49391,258.71,94.2833 +49392,258.43,96.1636 +49393,258.01,90.69773 +49394,257.67,92.4695 +49395,257.34,94.2846 +49396,257.03,96.1476 +49397,256.71,90.73231 +49398,256.34,92.4875 +49399,255.98,94.2853 +49400,255.63,96.1301 +49401,255.41,90.76818 +49402,255,92.5059 +49403,254.61,94.2855 +49404,254.23,96.1112 +49405,254.11,90.80534 +49406,253.67,92.5247 +49407,253.24,94.2853 +49408,252.83,96.0908 +49409,252.81,90.84378 +49410,252.33,92.544 +49411,251.88,94.2845 +49412,251.43,96.0691 +49413,251.5,90.88348 +49414,251,92.5636 +49415,250.51,94.2832 +49416,250.03,96.0459 +49417,250.2,90.92443 +49418,249.67,92.5835 +49419,249.14,94.2814 +49420,248.63,96.0213 +49421,248.9,90.96661 +49422,248.33,92.6039 +49423,247.78,94.2791 +49424,247.23,95.9954 +49425,247.59,91.01 +49426,247,92.6246 +49427,246.41,94.2763 +49428,245.83,95.9681 +49429,246.29,91.0546 +49430,245.66,92.6457 +49431,245.04,94.2731 +49432,244.44,95.9395 +49433,244.99,91.1004 +49434,244.33,92.6672 +49435,243.68,94.2694 +49436,243.04,95.9095 +49437,243.68,91.1474 +49438,242.99,92.689 +49439,242.31,94.2652 +49440,241.64,95.8783 +49441,242.37,91.1955 +49442,241.66,92.7111 +49443,240.95,94.2605 +49444,240.25,95.8459 +49445,241.07,91.2447 +49446,240.32,92.7336 +49447,239.58,94.2554 +49448,238.85,95.8121 +49449,239.76,91.2951 +49450,238.98,92.7564 +49451,238.22,94.2499 +49452,237.46,95.7772 +49453,238.45,91.3465 +49454,237.65,92.7796 +49455,236.85,94.2439 +49456,236.06,95.7411 +49457,237.14,91.3991 +49458,236.31,92.803 +49459,235.49,94.2375 +49460,234.67,95.7038 +49461,235.83,91.4527 +49462,234.97,92.8268 +49463,234.12,94.2306 +49464,233.28,95.6653 +49465,234.52,91.5073 +49466,233.64,92.8509 +49467,232.76,94.2234 +49468,231.88,95.6257 +49469,233.21,91.5629 +49470,232.3,92.8753 +49471,231.39,94.2157 +49472,230.49,95.5851 +49473,231.9,91.6195 +49474,230.96,92.9 +49475,230.03,94.2076 +49476,229.1,95.5433 +49477,230.59,91.6771 +49478,229.62,92.9249 +49479,228.66,94.1992 +49480,227.71,95.5005 +49481,229.27,91.7356 +49482,228.28,92.9501 +49483,227.3,94.1903 +49484,226.32,95.4567 +49485,227.96,91.795 +49486,226.95,92.9756 +49487,225.94,94.1811 +49488,224.94,95.4119 +49489,226.65,91.8554 +49490,225.61,93.0014 +49491,224.57,94.1715 +49492,223.55,95.3662 +49493,225.33,91.9166 +49494,224.27,93.0273 +49495,223.21,94.1616 +49496,222.16,95.3195 +49497,224.01,91.9786 +49498,222.93,93.0536 +49499,221.85,94.1513 +49500,220.78,95.2719 +49501,222.69,92.0415 +49502,221.59,93.08 +49503,220.49,94.1407 +49504,219.39,95.2234 +49505,221.38,92.1051 +49506,220.25,93.1067 +49507,219.13,94.1297 +49508,218.01,95.174 +49509,220.06,92.1695 +49510,218.91,93.1336 +49511,217.76,94.1184 +49512,216.63,95.1239 +49513,218.74,92.2346 +49514,217.57,93.1607 +49515,216.4,94.1068 +49516,215.24,95.073 +49517,217.41,92.3005 +49518,216.23,93.1879 +49519,215.04,94.095 +49520,213.86,95.0213 +49521,216.09,92.367 +49522,214.89,93.2154 +49523,213.68,94.0828 +49524,212.48,94.9689 +49525,214.77,92.4342 +49526,213.54,93.243 +49527,212.32,94.0703 +49528,211.1,94.9158 +49529,213.44,92.502 +49530,212.2,93.2708 +49531,210.96,94.0576 +49532,209.73,94.862 +49533,212.12,92.5704 +49534,210.86,93.2987 +49535,209.6,94.0446 +49536,208.35,94.8076 +49537,210.79,92.6393 +49538,209.52,93.3268 +49539,208.24,94.0314 +49540,206.97,94.7526 +49541,209.46,92.7088 +49542,208.17,93.355 +49543,206.88,94.0179 +49544,205.6,94.697 +49545,208.14,92.7788 +49546,206.83,93.3834 +49547,205.53,94.0042 +49548,204.23,94.6409 +49549,206.81,92.8492 +49550,205.49,93.4118 +49551,204.17,93.9903 +49552,202.85,94.5843 +49553,205.47,92.9201 +49554,204.14,93.4403 +49555,202.81,93.9762 +49556,201.48,94.5272 +49557,204.14,92.9914 +49558,202.8,93.469 +49559,201.45,93.9619 +49560,200.11,94.4697 +49561,202.81,93.0631 +49562,201.45,93.4977 +49563,200.1,93.9474 +49564,198.74,94.4118 +49565,201.47,93.1351 +49566,200.11,93.5264 +49567,198.74,93.9327 +49568,197.38,94.3535 +49569,200.14,93.2075 +49570,198.76,93.5552 +49571,197.38,93.9179 +49572,196.01,94.2948 +49573,198.8,93.2801 +49574,197.41,93.5841 +49575,196.03,93.9029 +49576,194.64,94.2359 +49577,197.46,93.3529 +49578,196.07,93.613 +49579,194.67,93.8877 +49580,193.28,94.1767 +49581,196.13,93.426 +49582,194.72,93.6419 +49583,193.32,93.8725 +49584,191.92,94.1172 +49585,194.79,93.4992 +49586,193.37,93.6709 +49587,191.96,93.8571 +49588,190.55,94.0576 +49589,193.44,93.5726 +49590,192.02,93.6998 +49591,190.61,93.8416 +49592,189.19,93.9977 +49593,192.1,93.6461 +49594,190.68,93.7287 +49595,189.25,93.826 +49596,187.83,93.9378 +49597,190.76,93.7197 +49598,189.33,93.7576 +49599,187.9,93.8104 +49600,186.47,93.8777 +49601,189.41,93.7934 +49602,187.98,93.7865 +49603,186.54,93.7946 +49604,185.12,93.8176 +49605,188.07,93.867 +49606,186.63,93.8153 +49607,185.19,93.7788 +49608,183.76,93.7574 +49609,186.72,93.9406 +49610,185.28,93.844 +49611,183.84,93.763 +49612,182.41,93.6972 +49613,185.37,94.0142 +49614,183.93,93.8727 +49615,182.49,93.7471 +49616,181.05,93.637 +49617,184.02,94.0876 +49618,182.58,93.9013 +49619,181.13,93.7312 +49620,179.7,93.5769 +49621,182.67,94.161 +49622,181.23,93.9298 +49623,179.78,93.7152 +49624,178.35,93.5169 +49625,181.32,94.2342 +49626,179.87,93.9582 +49627,178.43,93.6993 +49628,177,93.457 +49629,179.97,94.3072 +49630,178.52,93.9865 +49631,177.08,93.6833 +49632,175.65,93.3973 +49633,178.61,94.3799 +49634,177.17,94.0147 +49635,175.73,93.6674 +49636,174.3,93.3378 +49637,177.26,94.4524 +49638,175.82,94.0427 +49639,174.38,93.6515 +49640,172.95,93.2785 +49641,175.9,94.5246 +49642,174.46,94.0706 +49643,173.03,93.6357 +49644,171.61,93.2194 +49645,174.54,94.5965 +49646,173.11,94.0983 +49647,171.68,93.6198 +49648,170.26,93.1606 +49649,173.18,94.668 +49650,171.75,94.1259 +49651,170.33,93.6041 +49652,168.92,93.1022 +49653,171.82,94.7391 +49654,170.4,94.1532 +49655,168.98,93.5884 +49656,167.58,93.0441 +49657,170.46,94.8097 +49658,169.05,94.1804 +49659,167.64,93.5728 +49660,166.24,92.9864 +49661,169.1,94.8799 +49662,167.69,94.2074 +49663,166.29,93.5573 +49664,164.9,92.9291 +49665,167.73,94.9496 +49666,166.33,94.2341 +49667,164.94,93.5419 +49668,163.56,92.8723 +49669,166.37,95.0188 +49670,164.98,94.2606 +49671,163.59,93.5266 +49672,162.22,92.8159 +49673,165,95.0873 +49674,163.62,94.2869 +49675,162.25,93.5114 +49676,160.88,92.76 +49677,163.64,95.1553 +49678,162.27,94.313 +49679,160.9,93.4964 +49680,159.55,92.7047 +49681,162.27,95.2227 +49682,160.91,94.3387 +49683,159.56,93.4815 +49684,158.21,92.6499 +49685,160.9,95.2894 +49686,159.55,94.3642 +49687,158.21,93.4668 +49688,156.88,92.5958 +49689,159.53,95.3553 +49690,158.19,94.3895 +49691,156.87,93.4522 +49692,155.55,92.5422 +49693,158.16,95.4206 +49694,156.83,94.4144 +49695,155.52,93.4378 +49696,154.22,92.4893 +49697,156.78,95.4851 +49698,155.47,94.439 +49699,154.18,93.4236 +49700,152.89,92.4371 +49701,155.41,95.5487 +49702,154.12,94.4634 +49703,152.83,93.4095 +49704,151.56,92.3856 +49705,154.03,95.6116 +49706,152.76,94.4874 +49707,151.49,93.3957 +49708,150.23,92.3349 +49709,152.66,95.6736 +49710,151.4,94.511 +49711,150.14,93.3821 +49712,148.9,92.2849 +49713,151.28,95.7347 +49714,150.04,94.5344 +49715,148.8,93.3687 +49716,147.58,92.2357 +49717,149.9,95.7949 +49718,148.68,94.5574 +49719,147.46,93.3556 +49720,146.25,92.1873 +49721,148.52,95.8541 +49722,147.31,94.58 +49723,146.12,93.3426 +49724,144.93,92.1397 +49725,147.14,95.9124 +49726,145.95,94.6022 +49727,144.77,93.33 +49728,143.61,92.093 +49729,145.76,95.9696 +49730,144.59,94.6241 +49731,143.43,93.3176 +49732,142.28,92.0472 +49733,144.38,96.0258 +49734,143.23,94.6456 +49735,142.09,93.3054 +49736,140.96,92.0023 +49737,143,96.0809 +49738,141.87,94.6667 +49739,140.75,93.2936 +49740,139.64,91.9584 +49741,141.61,96.135 +49742,140.51,94.6874 +49743,139.41,93.282 +49744,138.32,91.9154 +49745,140.23,96.1879 +49746,139.14,94.7076 +49747,138.07,93.2707 +49748,137,91.8735 +49749,138.84,96.2397 +49750,137.78,94.7275 +49751,136.73,93.2597 +49752,135.69,91.8325 +49753,137.45,96.2903 +49754,136.42,94.7469 +49755,135.39,93.249 +49756,134.37,91.7925 +49757,136.07,96.3397 +49758,135.05,94.7659 +49759,134.05,93.2386 +49760,133.05,91.7536 +49761,134.68,96.3879 +49762,133.69,94.7844 +49763,132.71,93.2285 +49764,131.74,91.7158 +49765,133.29,96.4348 +49766,132.32,94.8025 +49767,131.37,93.2188 +49768,130.42,91.6791 +49769,131.9,96.4805 +49770,130.96,94.8201 +49771,130.03,93.2094 +49772,129.11,91.6435 +49773,130.51,96.5249 +49774,129.59,94.8373 +49775,128.69,93.2003 +49776,127.8,91.609 +49777,129.12,96.5679 +49778,128.23,94.854 +49779,127.35,93.1916 +49780,126.49,91.5757 +49781,127.72,96.6097 +49782,126.86,94.8702 +49783,126.01,93.1833 +49784,125.17,91.5435 +49785,126.33,96.65 +49786,125.5,94.8859 +49787,124.68,93.1753 +49788,123.86,91.5126 +49789,124.94,96.689 +49790,124.13,94.9011 +49791,123.34,93.1676 +49792,122.55,91.4828 +49793,123.54,96.7266 +49794,122.77,94.9158 +49795,122,93.1604 +49796,121.24,91.4542 +49797,122.15,96.7628 +49798,121.4,94.93 +49799,120.66,93.1535 +49800,119.94,91.4269 +49801,120.75,96.7975 +49802,120.03,94.9437 +49803,119.33,93.147 +49804,118.63,91.4009 +49805,119.35,96.8307 +49806,118.67,94.9569 +49807,117.99,93.1409 +49808,117.32,91.3761 +49809,117.96,96.8626 +49810,117.3,94.9696 +49811,116.65,93.1351 +49812,116.01,91.3525 +49813,116.56,96.8929 +49814,115.93,94.9817 +49815,115.31,93.1298 +49816,114.71,91.3303 +49817,115.16,96.9217 +49818,114.57,94.9933 +49819,113.98,93.1249 +49820,113.4,91.3094 +49821,113.76,96.949 +49822,113.2,95.0044 +49823,112.64,93.1204 +49824,112.09,91.2898 +49825,112.36,96.9747 +49826,111.83,95.0149 +49827,111.31,93.1162 +49828,110.79,91.2715 +49829,110.97,96.999 +49830,110.46,95.0249 +49831,109.97,93.1125 +49832,109.48,91.2545 +49833,109.57,97.0216 +49834,109.09,95.0343 +49835,108.63,93.1092 +49836,108.18,91.2389 +49837,108.16,97.0428 +49838,107.73,95.0432 +49839,107.3,93.1064 +49840,106.87,91.2247 +49841,106.76,97.0623 +49842,106.36,95.0515 +49843,105.96,93.1039 +49844,105.57,91.2118 +49845,105.36,97.0802 +49846,104.99,95.0592 +49847,104.63,93.1019 +49848,104.27,91.2003 +49849,103.96,97.0966 +49850,103.62,95.0665 +49851,103.29,93.1003 +49852,102.96,91.1901 +49853,102.56,97.1113 +49854,102.25,95.0731 +49855,101.95,93.0991 +49856,101.66,91.1814 +49857,101.16,97.1245 +49858,100.88,95.0792 +49859,100.62,93.0984 +49860,100.36,91.174 +49861,99.757,97.136 +49862,99.516,95.0847 +49863,99.283,93.0981 +49864,99.056,91.1681 +49865,98.354,97.1459 +49866,98.148,95.0896 +49867,97.948,93.0982 +49868,97.753,91.1635 +49869,96.952,97.1542 +49870,96.779,95.094 +49871,96.612,93.0988 +49872,96.451,91.1603 +49873,95.549,97.1609 +49874,95.41,95.0978 +49875,95.277,93.0998 +49876,95.149,91.1586 +49877,94.147,97.1659 +49878,94.041,95.101 +49879,93.942,93.1012 +49880,93.847,91.1582 +49881,92.744,97.1693 +49882,92.672,95.1037 +49883,92.606,93.1031 +49884,92.545,91.1593 +49885,91.341,97.1711 +49886,91.304,95.1058 +49887,91.271,93.1054 +49888,91.243,91.1618 +49889,89.938,97.1712 +49890,89.935,95.1073 +49891,89.936,93.1082 +49892,89.941,91.1657 +49893,88.535,97.1697 +49894,88.566,95.1082 +49895,88.601,93.1114 +49896,88.639,91.171 +49897,87.133,97.1666 +49898,87.197,95.1086 +49899,87.265,93.115 +49900,87.337,91.1777 +49901,85.73,97.1619 +49902,85.828,95.1084 +49903,85.93,93.119 +49904,86.035,91.1858 +49905,84.327,97.1555 +49906,84.459,95.1076 +49907,84.595,93.1235 +49908,84.733,91.1953 +49909,82.925,97.1475 +49910,83.09,95.1063 +49911,83.259,93.1285 +49912,83.431,91.2062 +49913,81.522,97.1379 +49914,81.722,95.1044 +49915,81.924,93.1338 +49916,82.128,91.2185 +49917,80.12,97.1267 +49918,80.353,95.1019 +49919,80.588,93.1396 +49920,80.826,91.2322 +49921,78.718,97.1139 +49922,78.984,95.0989 +49923,79.253,93.1458 +49924,79.523,91.2473 +49925,77.316,97.0995 +49926,77.616,95.0953 +49927,77.917,93.1525 +49928,78.22,91.2637 +49929,75.915,97.0836 +49930,76.247,95.0912 +49931,76.581,93.1596 +49932,76.916,91.2816 +49933,74.513,97.066 +49934,74.879,95.0865 +49935,75.245,93.1671 +49936,75.613,91.3008 +49937,73.113,97.047 +49938,73.511,95.0812 +49939,73.909,93.175 +49940,74.309,91.3213 +49941,71.712,97.0263 +49942,72.142,95.0754 +49943,72.573,93.1833 +49944,73.005,91.3432 +49945,70.312,97.0041 +49946,70.774,95.0691 +49947,71.237,93.192 +49948,71.7,91.3665 +49949,68.912,96.9804 +49950,69.407,95.0622 +49951,69.901,93.2012 +49952,70.395,91.391 +49953,67.513,96.9552 +49954,68.039,95.0547 +49955,68.564,93.2107 +49956,69.09,91.4169 +49957,66.114,96.9285 +49958,66.671,95.0468 +49959,67.228,93.2207 +49960,67.784,91.4441 +49961,64.715,96.9003 +49962,65.304,95.0383 +49963,65.891,93.231 +49964,66.477,91.4726 +49965,63.317,96.8707 +49966,63.936,95.0293 +49967,64.554,93.2417 +49968,65.171,91.5024 +49969,61.92,96.8396 +49970,62.569,95.0198 +49971,63.217,93.2529 +49972,63.863,91.5334 +49973,60.523,96.8071 +49974,61.202,95.0098 +49975,61.879,93.2644 +49976,62.556,91.5657 +49977,59.127,96.7731 +49978,59.835,94.9992 +49979,60.542,93.2762 +49980,61.247,91.5992 +49981,57.731,96.7378 +49982,58.469,94.9882 +49983,59.204,93.2885 +49984,59.938,91.6339 +49985,56.336,96.7011 +49986,57.102,94.9767 +49987,57.866,93.3011 +49988,58.629,91.6699 +49989,54.941,96.6631 +49990,55.736,94.9647 +49991,56.528,93.3141 +49992,57.318,91.707 +49993,53.548,96.6237 +49994,54.37,94.9522 +49995,55.19,93.3274 +49996,56.007,91.7453 +49997,52.155,96.5831 +49998,53.005,94.9392 +49999,53.851,93.3411 +50000,54.696,91.7848 +50001,50.762,96.5411 +50002,51.639,94.9258 +50003,52.513,93.3551 +50004,53.384,91.8254 +50005,49.371,96.4979 +50006,50.274,94.9119 +50007,51.174,93.3694 +50008,52.071,91.8671 +50009,47.98,96.4534 +50010,48.909,94.8975 +50011,49.834,93.3841 +50012,50.757,91.9099 +50013,46.59,96.4078 +50014,47.544,94.8827 +50015,48.495,93.3991 +50016,49.442,91.9538 +50017,45.201,96.3609 +50018,46.18,94.8675 +50019,47.155,93.4144 +50020,48.127,91.9987 +50021,43.812,96.3129 +50022,44.815,94.8518 +50023,45.815,93.43 +50024,46.811,92.0447 +50025,42.425,96.2637 +50026,43.452,94.8357 +50027,44.475,93.4459 +50028,45.494,92.0916 +50029,41.038,96.2135 +50030,42.088,94.8192 +50031,43.134,93.4621 +50032,44.177,92.1396 +50033,39.652,96.1621 +50034,40.725,94.8024 +50035,41.793,93.4785 +50036,42.858,92.1885 +50037,38.267,96.1097 +50038,39.362,94.7851 +50039,40.452,93.4953 +50040,41.538,92.2384 +50041,36.883,96.0563 +50042,37.999,94.7674 +50043,39.11,93.5123 +50044,40.218,92.2892 +50045,35.5,96.0019 +50046,36.636,94.7493 +50047,37.769,93.5295 +50048,38.897,92.3409 +50049,34.118,95.9465 +50050,35.274,94.7309 +50051,36.426,93.547 +50052,37.575,92.3934 +50053,32.737,95.8902 +50054,33.912,94.7121 +50055,35.084,93.5648 +50056,36.252,92.4468 +50057,31.357,95.8329 +50058,32.551,94.693 +50059,33.741,93.5827 +50060,34.927,92.501 +50061,29.978,95.7748 +50062,31.19,94.6735 +50063,32.398,93.6009 +50064,33.602,92.556 +50065,28.6,95.7158 +50066,29.829,94.6537 +50067,31.055,93.6193 +50068,32.276,92.6118 +50069,27.223,95.6561 +50070,28.469,94.6336 +50071,29.711,93.6379 +50072,30.949,92.6683 +50073,25.847,95.5955 +50074,27.109,94.6131 +50075,28.367,93.6567 +50076,29.621,92.7255 +50077,24.472,95.5342 +50078,25.749,94.5924 +50079,27.022,93.6757 +50080,28.292,92.7834 +50081,23.098,95.4721 +50082,24.389,94.5714 +50083,25.678,93.6948 +50084,26.962,92.8419 +50085,21.725,95.4094 +50086,23.03,94.5501 +50087,24.333,93.7141 +50088,25.631,92.9011 +50089,20.353,95.346 +50090,21.672,94.5285 +50091,22.987,93.7336 +50092,24.298,92.9609 +50093,18.983,95.282 +50094,20.313,94.5067 +50095,21.641,93.7532 +50096,22.965,93.0212 +50097,17.613,95.2174 +50098,18.955,94.4846 +50099,20.295,93.7729 +50100,21.63,93.082 +50101,16.245,95.1522 +50102,17.598,94.4623 +50103,18.948,93.7928 +50104,20.295,93.1434 +50105,14.877,95.0865 +50106,16.241,94.4398 +50107,17.601,93.8127 +50108,18.958,93.2052 +50109,13.511,95.0203 +50110,14.884,94.417 +50111,16.254,93.8328 +50112,17.62,93.2675 +50113,12.146,94.9537 +50114,13.528,94.394 +50115,14.906,93.8529 +50116,16.282,93.3302 +50117,10.783,94.8866 +50118,12.172,94.3709 +50119,13.558,93.8731 +50120,14.941,93.3933 +50121,9.4199,94.8191 +50122,10.816,94.3476 +50123,12.21,93.8934 +50124,13.6,93.4567 +50125,8.0584,94.7513 +50126,9.4606,94.3241 +50127,10.861,93.9138 +50128,12.258,93.5204 +50129,6.698,94.6832 +50130,8.1058,94.3004 +50131,9.5117,93.9342 +50132,10.914,93.5844 +50133,5.3389,94.6147 +50134,6.7513,94.2766 +50135,8.1621,93.9546 +50136,9.5698,93.6487 +50137,3.9809,94.5461 +50138,5.3972,94.2526 +50139,6.8121,93.975 +50140,8.2239,93.7132 +50141,2.6241,94.4771 +50142,4.0436,94.2286 +50143,5.4617,93.9955 +50144,6.877,93.7779 +50145,1.2684,94.4081 +50146,2.6903,94.2044 +50147,4.1109,94.0159 +50148,5.5288,93.8427 +50149,359.91,94.3388 +50150,1.3374,94.1801 +50151,2.7598,94.0364 +50152,4.1795,93.9076 +50153,358.56,94.2695 +50154,359.98,94.1557 +50155,1.4082,94.0568 +50156,2.829,93.9727 +50157,357.21,94.2 +50158,358.63,94.1312 +50159,0.056282,94.0772 +50160,1.4773,94.0378 +50161,355.86,94.1305 +50162,357.28,94.1067 +50163,358.7,94.0975 +50164,0.12442,94.1029 +50165,354.51,94.061 +50166,355.93,94.0821 +50167,357.35,94.1178 +50168,358.77,94.168 +50169,353.16,93.9915 +50170,354.58,94.0575 +50171,356,94.138 +50172,357.42,94.233 +50173,351.81,93.9221 +50174,353.23,94.0328 +50175,354.64,94.1582 +50176,356.06,94.298 +50177,350.47,93.8527 +50178,351.88,94.0081 +50179,353.29,94.1782 +50180,354.7,94.3628 +50181,349.12,93.7835 +50182,350.53,93.9834 +50183,351.94,94.1982 +50184,353.34,94.4275 +50185,347.78,93.7144 +50186,349.18,93.9587 +50187,350.58,94.218 +50188,351.98,94.4921 +50189,346.43,93.6455 +50190,347.83,93.934 +50191,349.23,94.2377 +50192,350.62,94.5564 +50193,345.09,93.5769 +50194,346.48,93.9094 +50195,347.87,94.2573 +50196,349.26,94.6204 +50197,343.75,93.5084 +50198,345.13,93.8847 +50199,346.52,94.2767 +50200,347.9,94.6842 +50201,342.41,93.4403 +50202,343.79,93.8601 +50203,345.16,94.296 +50204,346.53,94.7476 +50205,341.08,93.3725 +50206,342.44,93.8356 +50207,343.8,94.3151 +50208,345.17,94.8107 +50209,339.74,93.305 +50210,341.09,93.8111 +50211,342.45,94.334 +50212,343.8,94.8734 +50213,338.4,93.2379 +50214,339.75,93.7867 +50215,341.09,94.3527 +50216,342.43,94.9357 +50217,337.07,93.1713 +50218,338.4,93.7624 +50219,339.73,94.3713 +50220,341.06,94.9976 +50221,335.73,93.105 +50222,337.05,93.7382 +50223,338.37,94.3896 +50224,339.69,95.0589 +50225,334.4,93.0393 +50226,335.71,93.7141 +50227,337.01,94.4077 +50228,338.32,95.1197 +50229,333.07,92.974 +50230,334.36,93.6902 +50231,335.66,94.4255 +50232,336.95,95.18 +50233,331.74,92.9093 +50234,333.02,93.6663 +50235,334.3,94.4431 +50236,335.57,95.2397 +50237,330.41,92.8452 +50238,331.67,93.6426 +50239,332.94,94.4605 +50240,334.2,95.2988 +50241,329.08,92.7816 +50242,330.33,93.6191 +50243,331.58,94.4776 +50244,332.82,95.3572 +50245,327.76,92.7187 +50246,328.99,93.5957 +50247,330.22,94.4944 +50248,331.45,95.415 +50249,326.43,92.6564 +50250,327.64,93.5725 +50251,328.86,94.5109 +50252,330.07,95.472 +50253,325.1,92.5949 +50254,326.3,93.5494 +50255,327.5,94.5272 +50256,328.69,95.5283 +50257,323.78,92.534 +50258,324.96,93.5266 +50259,326.13,94.5431 +50260,327.31,95.5838 +50261,322.46,92.4739 +50262,323.62,93.5039 +50263,324.77,94.5587 +50264,325.93,95.6385 +50265,321.13,92.4145 +50266,322.27,93.4815 +50267,323.41,94.5739 +50268,324.55,95.6924 +50269,319.81,92.3559 +50270,320.93,93.4593 +50271,322.05,94.5889 +50272,323.17,95.7454 +50273,318.49,92.2982 +50274,319.59,93.4373 +50275,320.69,94.6035 +50276,321.78,95.7975 +50277,317.17,92.2413 +50278,318.25,93.4156 +50279,319.32,94.6177 +50280,320.4,95.8487 +50281,315.85,92.1852 +50282,316.91,93.3941 +50283,317.96,94.6316 +50284,319.01,95.8989 +50285,314.54,92.1301 +50286,315.57,93.3728 +50287,316.6,94.6451 +50288,317.63,95.9481 +50289,313.22,92.0759 +50290,314.23,93.3518 +50291,315.23,94.6582 +50292,316.24,95.9963 +50293,311.9,92.0226 +50294,312.89,93.3311 +50295,313.87,94.6709 +50296,314.85,96.0435 +50297,310.59,91.9703 +50298,311.55,93.3107 +50299,312.51,94.6832 +50300,313.46,96.0896 +50301,309.28,91.919 +50302,310.21,93.2906 +50303,311.14,94.6951 +50304,312.07,96.1346 +50305,307.96,91.8687 +50306,308.87,93.2707 +50307,309.78,94.7066 +50308,310.68,96.1785 +50309,306.65,91.8195 +50310,307.53,93.2512 +50311,308.41,94.7177 +50312,309.29,96.2212 +50313,305.34,91.7713 +50314,306.19,93.232 +50315,307.05,94.7283 +50316,307.9,96.2628 +50317,304.03,91.7241 +50318,304.86,93.2131 +50319,305.68,94.7385 +50320,306.51,96.3032 +50321,302.71,91.6781 +50322,303.52,93.1945 +50323,304.32,94.7483 +50324,305.11,96.3423 +50325,301.41,91.6332 +50326,302.18,93.1763 +50327,302.95,94.7576 +50328,303.72,96.3802 +50329,300.1,91.5894 +50330,300.84,93.1584 +50331,301.59,94.7664 +50332,302.32,96.4168 +50333,298.79,91.5468 +50334,299.51,93.1408 +50335,300.22,94.7747 +50336,300.93,96.4522 +50337,297.48,91.5054 +50338,298.17,93.1236 +50339,298.85,94.7826 +50340,299.53,96.4862 +50341,296.17,91.4651 +50342,296.83,93.1067 +50343,297.49,94.79 +50344,298.14,96.5189 +50345,294.87,91.4261 +50346,295.5,93.0903 +50347,296.12,94.7969 +50348,296.74,96.5502 +50349,293.56,91.3883 +50350,294.16,93.0742 +50351,294.75,94.8033 +50352,295.34,96.5802 +50353,292.25,91.3517 +50354,292.82,93.0584 +50355,293.39,94.8092 +50356,293.94,96.6087 +50357,290.95,91.3164 +50358,291.49,93.0431 +50359,292.02,94.8146 +50360,292.54,96.6359 +50361,289.64,91.2823 +50362,290.15,93.0281 +50363,290.65,94.8195 +50364,291.15,96.6616 +50365,288.34,91.2496 +50366,288.81,93.0136 +50367,289.28,94.8239 +50368,289.75,96.6858 +50369,287.03,91.2181 +50370,287.48,92.9994 +50371,287.92,94.8278 +50372,288.35,96.7086 +50373,285.73,91.1879 +50374,286.14,92.9856 +50375,286.55,94.8311 +50376,286.95,96.73 +50377,284.43,91.159 +50378,284.81,92.9722 +50379,285.18,94.8339 +50380,285.55,96.7498 +50381,283.13,91.1315 +50382,283.47,92.9593 +50383,283.81,94.8361 +50384,284.14,96.7681 +50385,281.82,91.1053 +50386,282.14,92.9467 +50387,282.45,94.8379 +50388,282.74,96.7849 +50389,280.52,91.0805 +50390,280.8,92.9346 +50391,281.08,94.839 +50392,281.34,96.8002 +50393,279.22,91.057 +50394,279.47,92.9229 +50395,279.71,94.8397 +50396,279.94,96.8139 +50397,277.92,91.0349 +50398,278.13,92.9116 +50399,278.34,94.8398 +50400,278.54,96.8261 +50401,276.62,91.0141 +50402,276.8,92.9007 +50403,276.97,94.8393 +50404,277.14,96.8367 +50405,275.31,90.99473 +50406,275.46,92.8903 +50407,275.6,94.8383 +50408,275.73,96.8457 +50409,274.01,90.97674 +50410,274.13,92.8803 +50411,274.24,94.8367 +50412,274.33,96.8531 +50413,272.71,90.96015 +50414,272.8,92.8707 +50415,272.87,94.8345 +50416,272.93,96.859 +50417,271.41,90.94494 +50418,271.46,92.8615 +50419,271.5,94.8318 +50420,271.52,96.8632 +50421,270.11,90.93114 +50422,270.13,92.8528 +50423,270.13,94.8286 +50424,270.12,96.8659 +50425,268.81,90.91874 +50426,268.79,92.8446 +50427,268.76,94.8247 +50428,268.72,96.8669 +50429,267.51,90.90774 +50430,267.46,92.8367 +50431,267.39,94.8203 +50432,267.32,96.8664 +50433,266.21,90.89815 +50434,266.12,92.8293 +50435,266.03,94.8154 +50436,265.91,96.8642 +50437,264.91,90.88996 +50438,264.79,92.8223 +50439,264.66,94.8099 +50440,264.51,96.8604 +50441,263.61,90.88319 +50442,263.45,92.8158 +50443,263.29,94.8038 +50444,263.11,96.855 +50445,262.3,90.87782 +50446,262.12,92.8097 +50447,261.92,94.7971 +50448,261.71,96.8479 +50449,261,90.87385 +50450,260.79,92.8041 +50451,260.55,94.7899 +50452,260.3,96.8393 +50453,259.7,90.8713 +50454,259.45,92.7989 +50455,259.18,94.7821 +50456,258.9,96.829 +50457,258.4,90.87014 +50458,258.12,92.7941 +50459,257.82,94.7737 +50460,257.5,96.8171 +50461,257.1,90.87038 +50462,256.78,92.7897 +50463,256.45,94.7648 +50464,256.1,96.8036 +50465,255.8,90.87202 +50466,255.45,92.7858 +50467,255.08,94.7553 +50468,254.7,96.7885 +50469,254.5,90.87505 +50470,254.11,92.7824 +50471,253.71,94.7453 +50472,253.3,96.7718 +50473,253.19,90.87947 +50474,252.78,92.7793 +50475,252.35,94.7347 +50476,251.9,96.7535 +50477,251.89,90.88526 +50478,251.44,92.7767 +50479,250.98,94.7235 +50480,250.5,96.7336 +50481,250.59,90.89243 +50482,250.11,92.7745 +50483,249.61,94.7118 +50484,249.1,96.7121 +50485,249.28,90.90096 +50486,248.77,92.7728 +50487,248.24,94.6995 +50488,247.7,96.6891 +50489,247.98,90.91086 +50490,247.44,92.7714 +50491,246.88,94.6867 +50492,246.3,96.6645 +50493,246.68,90.9221 +50494,246.1,92.7705 +50495,245.51,94.6733 +50496,244.9,96.6383 +50497,245.37,90.93468 +50498,244.77,92.77 +50499,244.14,94.6594 +50500,243.5,96.6106 +50501,244.07,90.94859 +50502,243.43,92.7699 +50503,242.78,94.645 +50504,242.11,96.5813 +50505,242.76,90.96382 +50506,242.09,92.7702 +50507,241.41,94.63 +50508,240.71,96.5505 +50509,241.46,90.98036 +50510,240.76,92.7709 +50511,240.05,94.6145 +50512,239.31,96.5183 +50513,240.15,90.9982 +50514,239.42,92.7721 +50515,238.68,94.5985 +50516,237.92,96.4845 +50517,238.84,91.0173 +50518,238.09,92.7736 +50519,237.31,94.5819 +50520,236.52,96.4492 +50521,237.53,91.0377 +50522,236.75,92.7755 +50523,235.95,94.5648 +50524,235.13,96.4125 +50525,236.23,91.0594 +50526,235.41,92.7778 +50527,234.58,94.5472 +50528,233.73,96.3743 +50529,234.92,91.0823 +50530,234.08,92.7805 +50531,233.22,94.5292 +50532,232.34,96.3347 +50533,233.61,91.1064 +50534,232.74,92.7835 +50535,231.85,94.5106 +50536,230.95,96.2937 +50537,232.3,91.1317 +50538,231.4,92.787 +50539,230.49,94.4915 +50540,229.56,96.2513 +50541,230.99,91.1582 +50542,230.06,92.7908 +50543,229.12,94.4719 +50544,228.17,96.2076 +50545,229.68,91.1859 +50546,228.73,92.7949 +50547,227.76,94.4518 +50548,226.78,96.1624 +50549,228.36,91.2148 +50550,227.39,92.7994 +50551,226.4,94.4313 +50552,225.39,96.116 +50553,227.05,91.2448 +50554,226.05,92.8043 +50555,225.03,94.4103 +50556,224,96.0682 +50557,225.74,91.276 +50558,224.71,92.8095 +50559,223.67,94.3888 +50560,222.61,96.0191 +50561,224.42,91.3082 +50562,223.37,92.815 +50563,222.31,94.3669 +50564,221.22,95.9688 +50565,223.11,91.3415 +50566,222.03,92.8209 +50567,220.95,94.3445 +50568,219.84,95.9172 +50569,221.79,91.3759 +50570,220.69,92.8271 +50571,219.58,94.3217 +50572,218.45,95.8645 +50573,220.47,91.4113 +50574,219.36,92.8336 +50575,218.22,94.2985 +50576,217.07,95.8105 +50577,219.15,91.4478 +50578,218.02,92.8404 +50579,216.86,94.2748 +50580,215.69,95.7553 +50581,217.84,91.4853 +50582,216.68,92.8475 +50583,215.5,94.2507 +50584,214.3,95.699 +50585,216.52,91.5237 +50586,215.33,92.8549 +50587,214.14,94.2263 +50588,212.92,95.6416 +50589,215.19,91.5631 +50590,213.99,92.8626 +50591,212.78,94.2014 +50592,211.54,95.5831 +50593,213.87,91.6034 +50594,212.65,92.8705 +50595,211.42,94.1761 +50596,210.16,95.5236 +50597,212.55,91.6447 +50598,211.31,92.8787 +50599,210.06,94.1504 +50600,208.79,95.463 +50601,211.23,91.6868 +50602,209.97,92.8872 +50603,208.7,94.1244 +50604,207.41,95.4014 +50605,209.9,91.7298 +50606,208.63,92.8959 +50607,207.34,94.098 +50608,206.03,95.3388 +50609,208.58,91.7736 +50610,207.29,92.9049 +50611,205.98,94.0712 +50612,204.66,95.2752 +50613,207.25,91.8182 +50614,205.94,92.9141 +50615,204.62,94.0441 +50616,203.29,95.2108 +50617,205.92,91.8636 +50618,204.6,92.9235 +50619,203.26,94.0167 +50620,201.91,95.1455 +50621,204.59,91.9097 +50622,203.26,92.9332 +50623,201.91,93.989 +50624,200.54,95.0793 +50625,203.26,91.9566 +50626,201.91,92.943 +50627,200.55,93.9609 +50628,199.17,95.0123 +50629,201.93,92.0042 +50630,200.57,92.9531 +50631,199.19,93.9325 +50632,197.8,94.9445 +50633,200.6,92.0525 +50634,199.23,92.9633 +50635,197.84,93.9038 +50636,196.43,94.8759 +50637,199.27,92.1014 +50638,197.88,92.9737 +50639,196.48,93.8749 +50640,195.07,94.8066 +50641,197.93,92.1509 +50642,196.54,92.9843 +50643,195.13,93.8456 +50644,193.7,94.7366 +50645,196.6,92.201 +50646,195.19,92.995 +50647,193.77,93.8161 +50648,192.34,94.6659 +50649,195.26,92.2517 +50650,193.84,93.0059 +50651,192.42,93.7864 +50652,190.97,94.5946 +50653,193.92,92.3029 +50654,192.5,93.0169 +50655,191.06,93.7564 +50656,189.61,94.5227 +50657,192.58,92.3546 +50658,191.15,93.028 +50659,189.71,93.7262 +50660,188.25,94.4502 +50661,191.24,92.4068 +50662,189.8,93.0393 +50663,188.35,93.6957 +50664,186.89,94.3772 +50665,189.9,92.4594 +50666,188.46,93.0506 +50667,187,93.665 +50668,185.53,94.3037 +50669,188.56,92.5124 +50670,187.11,93.0621 +50671,185.65,93.6342 +50672,184.17,94.2297 +50673,187.22,92.5659 +50674,185.76,93.0736 +50675,184.3,93.6031 +50676,182.82,94.1553 +50677,185.87,92.6196 +50678,184.41,93.0852 +50679,182.94,93.5719 +50680,181.46,94.0805 +50681,184.53,92.6737 +50682,183.06,93.0969 +50683,181.59,93.5405 +50684,180.11,94.0053 +50685,183.18,92.728 +50686,181.72,93.1086 +50687,180.24,93.509 +50688,178.76,93.9298 +50689,181.83,92.7826 +50690,180.37,93.1204 +50691,178.89,93.4773 +50692,177.41,93.8541 +50693,180.48,92.8375 +50694,179.02,93.1322 +50695,177.54,93.4455 +50696,176.06,93.778 +50697,179.13,92.8925 +50698,177.67,93.144 +50699,176.19,93.4135 +50700,174.71,93.7017 +50701,177.78,92.9477 +50702,176.32,93.1558 +50703,174.84,93.3815 +50704,173.36,93.6252 +50705,176.43,93.003 +50706,174.96,93.1676 +50707,173.49,93.3493 +50708,172.01,93.5486 +50709,175.07,93.0584 +50710,173.61,93.1794 +50711,172.14,93.3171 +50712,170.67,93.4718 +50713,173.72,93.1138 +50714,172.26,93.1912 +50715,170.8,93.2847 +50716,169.32,93.395 +50717,172.36,93.1693 +50718,170.91,93.203 +50719,169.45,93.2524 +50720,167.98,93.3181 +50721,171,93.2248 +50722,169.56,93.2147 +50723,168.1,93.2199 +50724,166.64,93.2412 +50725,169.64,93.2802 +50726,168.2,93.2263 +50727,166.75,93.1874 +50728,165.3,93.1642 +50729,168.28,93.3356 +50730,166.85,93.2379 +50731,165.41,93.1549 +50732,163.96,93.0874 +50733,166.92,93.3909 +50734,165.5,93.2494 +50735,164.06,93.1224 +50736,162.62,93.0106 +50737,165.56,93.446 +50738,164.14,93.2608 +50739,162.72,93.0899 +50740,161.29,92.9339 +50741,164.2,93.5009 +50742,162.79,93.2721 +50743,161.37,93.0573 +50744,159.95,92.8574 +50745,162.83,93.5557 +50746,161.43,93.2833 +50747,160.03,93.0248 +50748,158.62,92.7811 +50749,161.47,93.6102 +50750,160.08,93.2943 +50751,158.68,92.9923 +50752,157.28,92.7049 +50753,160.1,93.6645 +50754,158.72,93.3053 +50755,157.34,92.9599 +50756,155.95,92.629 +50757,158.73,93.7185 +50758,157.37,93.3161 +50759,156,92.9275 +50760,154.62,92.5534 +50761,157.36,93.7721 +50762,156.01,93.3267 +50763,154.65,92.8951 +50764,153.29,92.4782 +50765,155.99,93.8254 +50766,154.65,93.3372 +50767,153.31,92.8629 +50768,151.96,92.4032 +50769,154.62,93.8782 +50770,153.3,93.3474 +50771,151.97,92.8307 +50772,150.63,92.3287 +50773,153.25,93.9307 +50774,151.94,93.3575 +50775,150.63,92.7986 +50776,149.31,92.2545 +50777,151.87,93.9826 +50778,150.58,93.3674 +50779,149.28,92.7666 +50780,147.98,92.1808 +50781,150.5,94.0341 +50782,149.22,93.3771 +50783,147.94,92.7347 +50784,146.66,92.1076 +50785,149.12,94.0851 +50786,147.87,93.3866 +50787,146.6,92.7029 +50788,145.33,92.0348 +50789,147.75,94.1355 +50790,146.51,93.3958 +50791,145.26,92.6713 +50792,144.01,91.9626 +50793,146.37,94.1853 +50794,145.15,93.4048 +50795,143.92,92.6398 +50796,142.69,91.891 +50797,144.99,94.2345 +50798,143.79,93.4136 +50799,142.58,92.6085 +50800,141.37,91.8199 +50801,143.61,94.283 +50802,142.43,93.4221 +50803,141.24,92.5773 +50804,140.05,91.7495 +50805,142.23,94.3309 +50806,141.07,93.4303 +50807,139.91,92.5463 +50808,138.73,91.6797 +50809,140.85,94.378 +50810,139.71,93.4382 +50811,138.57,92.5155 +50812,137.42,91.6106 +50813,139.46,94.4244 +50814,138.35,93.4458 +50815,137.23,92.4849 +50816,136.1,91.5423 +50817,138.08,94.4701 +50818,136.99,93.4532 +50819,135.89,92.4545 +50820,134.79,91.4746 +50821,136.69,94.5149 +50822,135.63,93.4602 +50823,134.55,92.4243 +50824,133.47,91.4077 +50825,135.31,94.5589 +50826,134.27,93.4669 +50827,133.22,92.3944 +50828,132.16,91.3416 +50829,133.92,94.6021 +50830,132.91,93.4733 +50831,131.88,92.3646 +50832,130.85,91.2764 +50833,132.53,94.6443 +50834,131.54,93.4793 +50835,130.54,92.3351 +50836,129.53,91.2119 +50837,131.15,94.6857 +50838,130.18,93.485 +50839,129.21,92.3059 +50840,128.22,91.1484 +50841,129.76,94.7261 +50842,128.82,93.4904 +50843,127.87,92.2769 +50844,126.91,91.0857 +50845,128.37,94.7655 +50846,127.46,93.4953 +50847,126.53,92.2482 +50848,125.6,91.0239 +50849,126.98,94.8039 +50850,126.09,93.4999 +50851,125.2,92.2197 +50852,124.3,90.96313 +50853,125.59,94.8414 +50854,124.73,93.5042 +50855,123.86,92.1916 +50856,122.99,90.90329 +50857,124.19,94.8777 +50858,123.37,93.508 +50859,122.53,92.1637 +50860,121.68,90.84443 +50861,122.8,94.913 +50862,122,93.5114 +50863,121.2,92.1361 +50864,120.38,90.78658 +50865,121.41,94.9472 +50866,120.64,93.5145 +50867,119.86,92.1089 +50868,119.07,90.72976 +50869,120.01,94.9803 +50870,119.28,93.5171 +50871,118.53,92.0819 +50872,117.77,90.674 +50873,118.62,95.0122 +50874,117.91,93.5193 +50875,117.19,92.0553 +50876,116.46,90.61931 +50877,117.22,95.0429 +50878,116.55,93.521 +50879,115.86,92.029 +50880,115.16,90.56571 +50881,115.83,95.0725 +50882,115.18,93.5224 +50883,114.53,92.003 +50884,113.86,90.51323 +50885,114.43,95.1008 +50886,113.82,93.5232 +50887,113.19,91.9774 +50888,112.55,90.46188 +50889,113.03,95.1279 +50890,112.45,93.5237 +50891,111.86,91.9522 +50892,111.25,90.41168 +50893,111.63,95.1538 +50894,111.09,93.5237 +50895,110.53,91.9273 +50896,109.95,90.36265 +50897,110.24,95.1783 +50898,109.72,93.5232 +50899,109.2,91.9027 +50900,108.65,90.3148 +50901,108.84,95.2016 +50902,108.36,93.5223 +50903,107.86,91.8785 +50904,107.35,90.26815 +50905,107.44,95.2235 +50906,106.99,93.5208 +50907,106.53,91.8547 +50908,106.05,90.22272 +50909,106.04,95.2441 +50910,105.63,93.5189 +50911,105.2,91.8313 +50912,104.75,90.17852 +50913,104.64,95.2634 +50914,104.26,93.5166 +50915,103.87,91.8082 +50916,103.45,90.13557 +50917,103.24,95.2812 +50918,102.9,93.5137 +50919,102.54,91.7856 +50920,102.16,90.093881 +50921,101.84,95.2977 +50922,101.53,93.5103 +50923,101.2,91.7633 +50924,100.86,90.053463 +50925,100.44,95.3128 +50926,100.17,93.5065 +50927,99.873,91.7414 +50928,99.561,90.014331 +50929,99.037,95.3265 +50930,98.8,93.5021 +50931,98.542,91.72 +50932,98.264,89.976496 +50933,97.635,95.3387 +50934,97.434,93.4972 +50935,97.211,91.6989 +50936,96.967,89.93997 +50937,96.234,95.3495 +50938,96.068,93.4918 +50939,95.88,91.6783 +50940,95.671,89.904763 +50941,94.832,95.3588 +50942,94.702,93.4859 +50943,94.549,91.658 +50944,94.374,89.87089 +50945,93.431,95.3667 +50946,93.336,93.4795 +50947,93.218,91.6382 +50948,93.078,89.83835 +50949,92.029,95.373 +50950,91.97,93.4726 +50951,91.887,91.6188 +50952,91.782,89.80715 +50953,90.627,95.3779 +50954,90.604,93.4651 +50955,90.556,91.5998 +50956,90.486,89.77731 +50957,89.225,95.3813 +50958,89.238,93.4571 +50959,89.226,91.5813 +50960,89.191,89.74883 +50961,87.823,95.3831 +50962,87.872,93.4486 +50963,87.895,91.5631 +50964,87.895,89.72172 +50965,86.42,95.3834 +50966,86.506,93.4395 +50967,86.565,91.5455 +50968,86.6,89.69598 +50969,85.018,95.3822 +50970,85.14,93.4299 +50971,85.234,91.5282 +50972,85.304,89.67162 +50973,83.616,95.3795 +50974,83.774,93.4198 +50975,83.904,91.5114 +50976,84.009,89.64864 +50977,82.215,95.3752 +50978,82.408,93.4091 +50979,82.573,91.495 +50980,82.713,89.62705 +50981,80.813,95.3694 +50982,81.043,93.3979 +50983,81.243,91.479 +50984,81.418,89.60684 +50985,79.411,95.362 +50986,79.677,93.3862 +50987,79.913,91.4635 +50988,80.122,89.58803 +50989,78.01,95.3531 +50990,78.311,93.3739 +50991,78.582,91.4484 +50992,78.826,89.57061 +50993,76.609,95.3426 +50994,76.946,93.361 +50995,77.252,91.4338 +50996,77.531,89.55458 +50997,75.208,95.3305 +50998,75.58,93.3477 +50999,75.921,91.4196 +51000,76.235,89.53994 +51001,73.807,95.3169 +51002,74.215,93.3337 +51003,74.591,91.4058 +51004,74.939,89.52669 +51005,72.407,95.3018 +51006,72.85,93.3193 +51007,73.26,91.3925 +51008,73.642,89.51484 +51009,71.007,95.285 +51010,71.485,93.3043 +51011,71.929,91.3796 +51012,72.346,89.50437 +51013,69.607,95.2667 +51014,70.12,93.2887 +51015,70.599,91.3672 +51016,71.049,89.49529 +51017,68.208,95.2469 +51018,68.755,93.2726 +51019,69.268,91.3552 +51020,69.752,89.48759 +51021,66.809,95.2255 +51022,67.39,93.256 +51023,67.937,91.3436 +51024,68.454,89.48127 +51025,65.411,95.2026 +51026,66.026,93.2389 +51027,66.606,91.3325 +51028,67.156,89.47632 +51029,64.013,95.1781 +51030,64.661,93.2212 +51031,65.275,91.3218 +51032,65.858,89.47274 +51033,62.616,95.152 +51034,63.297,93.203 +51035,63.944,91.3115 +51036,64.56,89.47052 +51037,61.219,95.1245 +51038,61.933,93.1842 +51039,62.612,91.3016 +51040,63.261,89.46965 +51041,59.822,95.0954 +51042,60.57,93.1649 +51043,61.281,91.2922 +51044,61.961,89.47013 +51045,58.427,95.0648 +51046,59.206,93.1451 +51047,59.949,91.2832 +51048,60.661,89.47195 +51049,57.032,95.0327 +51050,57.843,93.1248 +51051,58.617,91.2746 +51052,59.361,89.4751 +51053,55.637,94.9991 +51054,56.48,93.104 +51055,57.285,91.2665 +51056,58.06,89.47957 +51057,54.243,94.964 +51058,55.117,93.0826 +51059,55.953,91.2587 +51060,56.759,89.48535 +51061,52.85,94.9275 +51062,53.754,93.0607 +51063,54.621,91.2514 +51064,55.457,89.49242 +51065,51.458,94.8895 +51066,52.392,93.0383 +51067,53.289,91.2444 +51068,54.154,89.50079 +51069,50.066,94.85 +51070,51.03,93.0155 +51071,51.956,91.2379 +51072,52.851,89.51043 +51073,48.676,94.8091 +51074,49.668,92.9921 +51075,50.623,91.2318 +51076,51.547,89.52133 +51077,47.286,94.7668 +51078,48.307,92.9682 +51079,49.29,91.226 +51080,50.242,89.53348 +51081,45.896,94.7231 +51082,46.945,92.9439 +51083,47.957,91.2207 +51084,48.937,89.54686 +51085,44.508,94.678 +51086,45.585,92.919 +51087,46.624,91.2157 +51088,47.631,89.56147 +51089,43.121,94.6315 +51090,44.224,92.8937 +51091,45.29,91.2111 +51092,46.324,89.57728 +51093,41.734,94.5837 +51094,42.864,92.8679 +51095,43.956,91.2069 +51096,45.017,89.59428 +51097,40.348,94.5345 +51098,41.504,92.8417 +51099,42.622,91.2031 +51100,43.708,89.61245 +51101,38.963,94.4841 +51102,40.144,92.8149 +51103,41.287,91.1996 +51104,42.399,89.63178 +51105,37.58,94.4323 +51106,38.785,92.7878 +51107,39.953,91.1964 +51108,41.089,89.65225 +51109,36.197,94.3792 +51110,37.426,92.7602 +51111,38.618,91.1937 +51112,39.779,89.67383 +51113,34.815,94.3249 +51114,36.067,92.7321 +51115,37.282,91.1912 +51116,38.467,89.69652 +51117,33.434,94.2694 +51118,34.709,92.7036 +51119,35.947,91.1891 +51120,37.154,89.72029 +51121,32.054,94.2127 +51122,33.351,92.6747 +51123,34.611,91.1874 +51124,35.841,89.74512 +51125,30.675,94.1547 +51126,31.993,92.6454 +51127,33.275,91.1859 +51128,34.527,89.771 +51129,29.298,94.0956 +51130,30.636,92.6157 +51131,31.939,91.1848 +51132,33.211,89.79789 +51133,27.921,94.0354 +51134,29.279,92.5855 +51135,30.602,91.184 +51136,31.895,89.82579 +51137,26.545,93.9741 +51138,27.922,92.555 +51139,29.265,91.1835 +51140,30.578,89.85466 +51141,25.171,93.9117 +51142,26.566,92.5241 +51143,27.928,91.1832 +51144,29.259,89.88449 +51145,23.798,93.8482 +51146,25.211,92.4928 +51147,26.59,91.1833 +51148,27.94,89.915253 +51149,22.425,93.7836 +51150,23.855,92.4611 +51151,25.252,91.1836 +51152,26.62,89.946924 +51153,21.054,93.7181 +51154,22.501,92.4291 +51155,23.914,91.1843 +51156,25.298,89.979483 +51157,19.685,93.6516 +51158,21.146,92.3967 +51159,22.575,91.1851 +51160,23.976,90.012903 +51161,18.316,93.5841 +51162,19.792,92.3639 +51163,21.236,91.1863 +51164,22.653,90.04716 +51165,16.948,93.5157 +51166,18.438,92.3309 +51167,19.897,91.1876 +51168,21.328,90.08223 +51169,15.582,93.4464 +51170,17.085,92.2975 +51171,18.557,91.1892 +51172,20.002,90.11809 +51173,14.217,93.3763 +51174,15.732,92.2638 +51175,17.218,91.1911 +51176,18.676,90.15471 +51177,12.853,93.3053 +51178,14.38,92.2298 +51179,15.877,91.1931 +51180,17.348,90.19206 +51181,11.49,93.2335 +51182,13.028,92.1955 +51183,14.536,91.1954 +51184,16.019,90.23012 +51185,10.129,93.1609 +51186,11.677,92.1609 +51187,13.195,91.1979 +51188,14.688,90.26887 +51189,8.7689,93.0876 +51190,10.325,92.126 +51191,11.854,91.2005 +51192,13.357,90.30827 +51193,7.41,93.0136 +51194,8.9748,92.0909 +51195,10.512,91.2034 +51196,12.024,90.34829 +51197,6.0524,92.9389 +51198,7.6246,92.0555 +51199,9.1701,91.2064 +51200,10.691,90.38892 +51201,4.696,92.8635 +51202,6.2749,92.0199 +51203,7.8276,91.2096 +51204,9.3559,90.43012 +51205,3.341,92.7875 +51206,4.9256,91.984 +51207,6.4847,91.2129 +51208,8.0198,90.47186 +51209,1.9871,92.7109 +51210,3.5767,91.9479 +51211,5.1414,91.2164 +51212,6.6825,90.51411 +51213,0.63462,92.6338 +51214,2.2283,91.9116 +51215,3.7977,91.22 +51216,5.344,90.55685 +51217,359.28,92.5562 +51218,0.88041,91.8751 +51219,2.4537,91.2237 +51220,4.0043,90.60004 +51221,357.93,92.478 +51222,359.53,91.8384 +51223,1.1093,91.2276 +51224,2.6634,90.64366 +51225,356.58,92.3995 +51226,358.19,91.8015 +51227,359.76,91.2315 +51228,1.3213,90.68768 +51229,355.24,92.3205 +51230,356.84,91.7644 +51231,358.42,91.2356 +51232,359.98,90.73206 +51233,353.89,92.2411 +51234,355.49,91.7272 +51235,357.07,91.2397 +51236,358.63,90.77678 +51237,352.55,92.1613 +51238,354.15,91.6899 +51239,355.73,91.2439 +51240,357.29,90.8218 +51241,351.2,92.0812 +51242,352.8,91.6523 +51243,354.38,91.2481 +51244,355.94,90.8671 +51245,349.86,92.0009 +51246,351.46,91.6147 +51247,353.03,91.2524 +51248,354.59,90.91265 +51249,348.52,91.9203 +51250,350.11,91.5769 +51251,351.69,91.2568 +51252,353.24,90.95841 +51253,347.18,91.8395 +51254,348.77,91.5391 +51255,350.34,91.2612 +51256,351.89,91.0043 +51257,345.84,91.7584 +51258,347.43,91.5011 +51259,348.99,91.2656 +51260,350.54,91.0504 +51261,344.5,91.6773 +51262,346.08,91.4631 +51263,347.64,91.27 +51264,349.19,91.0967 +51265,343.17,91.596 +51266,344.74,91.425 +51267,346.3,91.2744 +51268,347.83,91.143 +51269,341.83,91.5146 +51270,343.4,91.3868 +51271,344.95,91.2788 +51272,346.48,91.1893 +51273,340.5,91.4332 +51274,342.06,91.3486 +51275,343.6,91.2831 +51276,345.12,91.2357 +51277,339.17,91.3518 +51278,340.72,91.3103 +51279,342.25,91.2875 +51280,343.76,91.2821 +51281,337.84,91.2704 +51282,339.38,91.272 +51283,340.9,91.2918 +51284,342.4,91.3284 +51285,336.51,91.189 +51286,338.04,91.2337 +51287,339.55,91.296 +51288,341.04,91.3747 +51289,335.18,91.1077 +51290,336.7,91.1954 +51291,338.2,91.3002 +51292,339.68,91.4209 +51293,333.85,91.0266 +51294,335.36,91.1571 +51295,336.84,91.3043 +51296,338.32,91.467 +51297,332.53,90.94558 +51298,334.02,91.1188 +51299,335.49,91.3083 +51300,336.95,91.5128 +51301,331.2,90.86476 +51302,332.68,91.0805 +51303,334.14,91.3122 +51304,335.59,91.5585 +51305,329.88,90.78415 +51306,331.34,91.0423 +51307,332.79,91.316 +51308,334.22,91.604 +51309,328.56,90.7038 +51310,330,91.0041 +51311,331.44,91.3197 +51312,332.85,91.6492 +51313,327.24,90.62373 +51314,328.67,90.96603 +51315,330.08,91.3232 +51316,331.48,91.6941 +51317,325.92,90.54397 +51318,327.33,90.92799 +51319,328.73,91.3266 +51320,330.11,91.7388 +51321,324.6,90.46456 +51322,325.99,90.89003 +51323,327.37,91.3299 +51324,328.74,91.783 +51325,323.28,90.38553 +51326,324.66,90.85216 +51327,326.02,91.333 +51328,327.37,91.8269 +51329,321.96,90.3069 +51330,323.32,90.81439 +51331,324.67,91.3359 +51332,326,91.8704 +51333,320.65,90.22872 +51334,321.99,90.77673 +51335,323.31,91.3387 +51336,324.62,91.9134 +51337,319.33,90.15101 +51338,320.65,90.7392 +51339,321.96,91.3412 +51340,323.25,91.9559 +51341,318.02,90.0738 +51342,319.32,90.70181 +51343,320.6,91.3436 +51344,321.87,91.998 +51345,316.71,89.9971224 +51346,317.98,90.66456 +51347,319.25,91.3457 +51348,320.49,92.0395 +51349,315.4,89.921007 +51350,316.65,90.62746 +51351,317.89,91.3477 +51352,319.12,92.0805 +51353,314.09,89.84548 +51354,315.32,90.59053 +51355,316.53,91.3494 +51356,317.74,92.1208 +51357,312.78,89.77058 +51358,313.98,90.55377 +51359,315.18,91.3508 +51360,316.35,92.1606 +51361,311.47,89.69632 +51362,312.65,90.51719 +51363,313.82,91.352 +51364,314.97,92.1997 +51365,310.16,89.62275 +51366,311.32,90.48081 +51367,312.46,91.353 +51368,313.59,92.2381 +51369,308.86,89.54988 +51370,309.99,90.44464 +51371,311.1,91.3537 +51372,312.21,92.2758 +51373,307.55,89.47774 +51374,308.66,90.40867 +51375,309.75,91.3541 +51376,310.82,92.3128 +51377,306.25,89.40636 +51378,307.32,90.37293 +51379,308.39,91.3542 +51380,309.44,92.349 +51381,304.94,89.33576 +51382,305.99,90.33742 +51383,307.03,91.354 +51384,308.05,92.3844 +51385,303.64,89.26598 +51386,304.66,90.30214 +51387,305.67,91.3535 +51388,306.66,92.419 +51389,302.34,89.19703 +51390,303.33,90.26712 +51391,304.31,91.3527 +51392,305.28,92.4528 +51393,301.04,89.12895 +51394,302,90.23235 +51395,302.95,91.3516 +51396,303.89,92.4857 +51397,299.74,89.06176 +51398,300.67,90.19785 +51399,301.59,91.3501 +51400,302.5,92.5177 +51401,298.44,88.9955 +51402,299.34,90.16362 +51403,300.23,91.3483 +51404,301.11,92.5488 +51405,297.14,88.9301 +51406,298.02,90.12968 +51407,298.87,91.3462 +51408,299.72,92.5789 +51409,295.84,88.8657 +51410,296.69,90.096024 +51411,297.51,91.3437 +51412,298.32,92.6081 +51413,294.55,88.8023 +51414,295.36,90.062667 +51415,296.15,91.3408 +51416,296.93,92.6362 +51417,293.25,88.7399 +51418,294.03,90.029616 +51419,294.79,91.3376 +51420,295.54,92.6634 +51421,291.96,88.6785 +51422,292.7,89.9968779 +51423,293.43,91.334 +51424,294.15,92.6895 +51425,290.66,88.6182 +51426,291.38,89.96446 +51427,292.07,91.33 +51428,292.75,92.7145 +51429,289.37,88.5589 +51430,290.05,89.932369 +51431,290.71,91.3256 +51432,291.36,92.7384 +51433,288.07,88.5007 +51434,288.72,89.900613 +51435,289.35,91.3209 +51436,289.96,92.7613 +51437,286.78,88.4436 +51438,287.39,89.8692 +51439,287.99,91.3157 +51440,288.56,92.783 +51441,285.49,88.3876 +51442,286.07,89.83813 +51443,286.63,91.3101 +51444,287.17,92.8035 +51445,284.2,88.3328 +51446,284.74,89.80742 +51447,285.27,91.304 +51448,285.77,92.8229 +51449,282.9,88.2791 +51450,283.41,89.77706 +51451,283.91,91.2976 +51452,284.37,92.8411 +51453,281.61,88.2266 +51454,282.09,89.74707 +51455,282.54,91.2907 +51456,282.98,92.858 +51457,280.32,88.1753 +51458,280.76,89.71745 +51459,281.18,91.2834 +51460,281.58,92.8738 +51461,279.03,88.1252 +51462,279.44,89.68821 +51463,279.82,91.2757 +51464,280.18,92.8883 +51465,277.74,88.0763 +51466,278.11,89.65935 +51467,278.46,91.2675 +51468,278.78,92.9015 +51469,276.45,88.0287 +51470,276.79,89.63088 +51471,277.1,91.2588 +51472,277.38,92.9134 +51473,275.16,87.9822 +51474,275.46,89.6028 +51475,275.73,91.2497 +51476,275.98,92.9241 +51477,273.87,87.9371 +51478,274.14,89.57511 +51479,274.37,91.2401 +51480,274.58,92.9334 +51481,272.59,87.8932 +51482,272.81,89.54783 +51483,273.01,91.2301 +51484,273.18,92.9414 +51485,271.3,87.8506 +51486,271.49,89.52095 +51487,271.65,91.2196 +51488,271.78,92.9481 +51489,270.01,87.8093 +51490,270.16,89.49448 +51491,270.28,91.2086 +51492,270.38,92.9534 +51493,268.72,87.7693 +51494,268.84,89.46842 +51495,268.92,91.1971 +51496,268.98,92.9573 +51497,267.43,87.7306 +51498,267.51,89.44278 +51499,267.56,91.1852 +51500,267.58,92.9599 +51501,266.15,87.6932 +51502,266.19,89.41756 +51503,266.2,91.1728 +51504,266.18,92.9611 +51505,264.86,87.6571 +51506,264.86,89.39276 +51507,264.84,91.1598 +51508,264.78,92.9608 +51509,263.57,87.6224 +51510,263.54,89.36838 +51511,263.47,91.1464 +51512,263.38,92.9592 +51513,262.29,87.589 +51514,262.21,89.34443 +51515,262.11,91.1325 +51516,261.97,92.9561 +51517,261,87.557 +51518,260.89,89.32091 +51519,260.75,91.1181 +51520,260.57,92.9516 +51521,259.71,87.5263 +51522,259.56,89.29782 +51523,259.39,91.1032 +51524,259.17,92.9457 +51525,258.42,87.497 +51526,258.24,89.27516 +51527,258.02,91.0878 +51528,257.77,92.9383 +51529,257.14,87.469 +51530,256.92,89.25294 +51531,256.66,91.0719 +51532,256.37,92.9294 +51533,255.85,87.4424 +51534,255.59,89.23115 +51535,255.3,91.0555 +51536,254.97,92.9192 +51537,254.56,87.4172 +51538,254.27,89.20981 +51539,253.94,91.0386 +51540,253.57,92.9074 +51541,253.27,87.3933 +51542,252.94,89.18889 +51543,252.58,91.0212 +51544,252.17,92.8942 +51545,251.99,87.3708 +51546,251.62,89.16842 +51547,251.22,91.0033 +51548,250.77,92.8795 +51549,250.7,87.3496 +51550,250.29,89.14839 +51551,249.85,90.98489 +51552,249.37,92.8633 +51553,249.41,87.3299 +51554,248.97,89.1288 +51555,248.49,90.96596 +51556,247.98,92.8457 +51557,248.12,87.3115 +51558,247.64,89.10964 +51559,247.13,90.94653 +51560,246.58,92.8266 +51561,246.83,87.2944 +51562,246.32,89.09092 +51563,245.77,90.92659 +51564,245.18,92.806 +51565,245.54,87.2787 +51566,245,89.07264 +51567,244.41,90.90615 +51568,243.78,92.784 +51569,244.25,87.2644 +51570,243.67,89.0548 +51571,243.05,90.8852 +51572,242.38,92.7605 +51573,242.96,87.2514 +51574,242.35,89.03739 +51575,241.69,90.86375 +51576,240.99,92.7355 +51577,241.67,87.2398 +51578,241.02,89.02042 +51579,240.33,90.8418 +51580,239.59,92.709 +51581,240.38,87.2295 +51582,239.7,89.00388 +51583,238.97,90.81935 +51584,238.2,92.6811 +51585,239.09,87.2206 +51586,238.37,88.9878 +51587,237.61,90.7964 +51588,236.8,92.6518 +51589,237.8,87.213 +51590,237.04,88.9721 +51591,236.25,90.77296 +51592,235.41,92.6209 +51593,236.51,87.2067 +51594,235.72,88.9568 +51595,234.89,90.74902 +51596,234.01,92.5887 +51597,235.21,87.2017 +51598,234.39,88.942 +51599,233.53,90.72459 +51600,232.62,92.555 +51601,233.92,87.1981 +51602,233.07,88.9276 +51603,232.17,90.69967 +51604,231.23,92.5198 +51605,232.63,87.1957 +51606,231.74,88.9136 +51607,230.81,90.67427 +51608,229.84,92.4833 +51609,231.33,87.1946 +51610,230.41,88.9001 +51611,229.46,90.64839 +51612,228.45,92.4453 +51613,230.04,87.1948 +51614,229.09,88.8869 +51615,228.1,90.62203 +51616,227.06,92.4059 +51617,228.74,87.1963 +51618,227.76,88.8741 +51619,226.74,90.59519 +51620,225.67,92.3652 +51621,227.45,87.199 +51622,226.43,88.8618 +51623,225.38,90.56788 +51624,224.28,92.323 +51625,226.15,87.203 +51626,225.11,88.8499 +51627,224.02,90.54011 +51628,222.89,92.2795 +51629,224.85,87.2082 +51630,223.78,88.8383 +51631,222.67,90.51188 +51632,221.5,92.2346 +51633,223.55,87.2146 +51634,222.45,88.8272 +51635,221.31,90.48319 +51636,220.12,92.1884 +51637,222.25,87.2222 +51638,221.13,88.8164 +51639,219.96,90.45404 +51640,218.73,92.1409 +51641,220.95,87.2309 +51642,219.8,88.806 +51643,218.6,90.42445 +51644,217.35,92.092 +51645,219.65,87.2409 +51646,218.47,88.796 +51647,217.24,90.39442 +51648,215.97,92.0419 +51649,218.35,87.252 +51650,217.14,88.7864 +51651,215.89,90.36395 +51652,214.59,91.9905 +51653,217.05,87.2642 +51654,215.81,88.7771 +51655,214.53,90.33305 +51656,213.21,91.9378 +51657,215.74,87.2776 +51658,214.48,88.7682 +51659,213.18,90.30173 +51660,211.83,91.8839 +51661,214.44,87.2921 +51662,213.15,88.7596 +51663,211.83,90.26999 +51664,210.45,91.8287 +51665,213.13,87.3076 +51666,211.82,88.7514 +51667,210.47,90.23784 +51668,209.07,91.7724 +51669,211.83,87.3242 +51670,210.49,88.7436 +51671,209.12,90.20528 +51672,207.69,91.7148 +51673,210.52,87.3419 +51674,209.16,88.736 +51675,207.77,90.17233 +51676,206.32,91.6561 +51677,209.21,87.3606 +51678,207.83,88.7288 +51679,206.41,90.13898 +51680,204.94,91.5963 +51681,207.9,87.3803 +51682,206.5,88.722 +51683,205.06,90.10525 +51684,203.57,91.5353 +51685,206.59,87.4009 +51686,205.17,88.7154 +51687,203.71,90.071146 +51688,202.2,91.4732 +51689,205.28,87.4226 +51690,203.84,88.7092 +51691,202.36,90.03667 +51692,200.83,91.4101 +51693,203.96,87.4451 +51694,202.51,88.7032 +51695,201.01,90.0018331 +51696,199.46,91.3459 +51697,202.65,87.4686 +51698,201.17,88.6976 +51699,199.66,89.966643 +51700,198.09,91.2807 +51701,201.34,87.493 +51702,199.84,88.6922 +51703,198.31,89.931107 +51704,196.72,91.2145 +51705,200.02,87.5183 +51706,198.51,88.6871 +51707,196.96,89.89523 +51708,195.36,91.1473 +51709,198.7,87.5444 +51710,197.18,88.6823 +51711,195.61,89.85903 +51712,193.99,91.0791 +51713,197.38,87.5713 +51714,195.84,88.6777 +51715,194.26,89.82251 +51716,192.63,91.01 +51717,196.06,87.599 +51718,194.51,88.6734 +51719,192.91,89.78568 +51720,191.27,90.94007 +51721,194.74,87.6276 +51722,193.17,88.6694 +51723,191.56,89.74854 +51724,189.91,90.86923 +51725,193.42,87.6568 +51726,191.84,88.6656 +51727,190.22,89.71111 +51728,188.55,90.79754 +51729,192.1,87.6868 +51730,190.5,88.662 +51731,188.87,89.6734 +51732,187.19,90.72503 +51733,190.78,87.7175 +51734,189.17,88.6586 +51735,187.52,89.63541 +51736,185.83,90.65174 +51737,189.45,87.7489 +51738,187.83,88.6554 +51739,186.18,89.59715 +51740,184.48,90.57769 +51741,188.12,87.7809 +51742,186.5,88.6525 +51743,184.83,89.55864 +51744,183.12,90.50291 +51745,186.8,87.8135 +51746,185.16,88.6497 +51747,183.49,89.51988 +51748,181.77,90.42744 +51749,185.47,87.8467 +51750,183.82,88.6472 +51751,182.14,89.48088 +51752,180.42,90.35129 +51753,184.14,87.8805 +51754,182.49,88.6448 +51755,180.8,89.44166 +51756,179.07,90.2745 +51757,182.8,87.9148 +51758,181.15,88.6425 +51759,179.45,89.40222 +51760,177.72,90.19711 +51761,181.47,87.9497 +51762,179.81,88.6404 +51763,178.11,89.36257 +51764,176.37,90.11914 +51765,180.14,87.985 +51766,178.47,88.6385 +51767,176.77,89.32272 +51768,175.03,90.040618 +51769,178.8,88.0208 +51770,177.13,88.6367 +51771,175.43,89.28269 +51772,173.68,89.961584 +51773,177.47,88.0569 +51774,175.79,88.635 +51775,174.08,89.24248 +51776,172.34,89.88207 +51777,176.13,88.0935 +51778,174.45,88.6335 +51779,172.74,89.2021 +51780,171,89.8021 +51781,174.79,88.1305 +51782,173.11,88.632 +51783,171.4,89.16157 +51784,169.66,89.72171 +51785,173.45,88.1678 +51786,171.77,88.6307 +51787,170.06,89.12089 +51788,168.32,89.64093 +51789,172.11,88.2054 +51790,170.43,88.6294 +51791,168.72,89.08008 +51792,166.98,89.5598 +51793,170.76,88.2433 +51794,169.09,88.6282 +51795,167.38,89.03914 +51796,165.65,89.47835 +51797,169.42,88.2814 +51798,167.75,88.6271 +51799,166.05,88.9981 +51800,164.31,89.39661 +51801,168.07,88.3198 +51802,166.4,88.6261 +51803,164.71,88.9569 +51804,162.98,89.31461 +51805,166.72,88.3583 +51806,165.06,88.625 +51807,163.37,88.9157 +51808,161.65,89.23238 +51809,165.38,88.397 +51810,163.72,88.6241 +51811,162.03,88.8744 +51812,160.32,89.14996 +51813,164.03,88.4359 +51814,162.38,88.6231 +51815,160.7,88.833 +51816,158.99,89.06739 +51817,162.68,88.4748 +51818,161.03,88.6222 +51819,159.36,88.7915 +51820,157.66,88.9847 +51821,161.32,88.5138 +51822,159.69,88.6213 +51823,158.02,88.75 +51824,156.33,88.9019 +51825,159.97,88.5529 +51826,158.34,88.6203 +51827,156.69,88.7084 +51828,155.01,88.819 +51829,158.62,88.5919 +51830,157,88.6194 +51831,155.35,88.6669 +51832,153.68,88.7361 +51833,157.26,88.631 +51834,155.65,88.6184 +51835,154.02,88.6253 +51836,152.36,88.6533 +51837,155.9,88.67 +51838,154.31,88.6174 +51839,152.69,88.5837 +51840,151.04,88.5704 +51841,154.54,88.7089 +51842,152.96,88.6164 +51843,151.35,88.5421 +51844,149.72,88.4877 +51845,153.18,88.7477 +51846,151.61,88.6153 +51847,150.02,88.5005 +51848,148.4,88.405 +51849,151.82,88.7863 +51850,150.27,88.6141 +51851,148.69,88.4589 +51852,147.08,88.3225 +51853,150.46,88.8248 +51854,148.92,88.6128 +51855,147.35,88.4174 +51856,145.77,88.2401 +51857,149.1,88.8631 +51858,147.57,88.6115 +51859,146.02,88.3759 +51860,144.45,88.1579 +51861,147.73,88.9011 +51862,146.22,88.6101 +51863,144.69,88.3345 +51864,143.14,88.076 +51865,146.37,88.9389 +51866,144.88,88.6085 +51867,143.36,88.2932 +51868,141.83,87.9943 +51869,145,88.9764 +51870,143.53,88.6069 +51871,142.03,88.2519 +51872,140.51,87.913 +51873,143.63,89.01363 +51874,142.18,88.6051 +51875,140.7,88.2107 +51876,139.2,87.8319 +51877,142.26,89.05046 +51878,140.83,88.6032 +51879,139.37,88.1696 +51880,137.9,87.7513 +51881,140.89,89.08692 +51882,139.48,88.6012 +51883,138.04,88.1287 +51884,136.59,87.671 +51885,139.52,89.12297 +51886,138.13,88.5989 +51887,136.71,88.0878 +51888,135.28,87.5911 +51889,138.15,89.15859 +51890,136.78,88.5966 +51891,135.39,88.0471 +51892,133.98,87.5116 +51893,136.77,89.19373 +51894,135.43,88.594 +51895,134.06,88.0065 +51896,132.67,87.4327 +51897,135.4,89.22839 +51898,134.07,88.5913 +51899,132.73,87.9661 +51900,131.37,87.3543 +51901,134.02,89.26253 +51902,132.72,88.5883 +51903,131.4,87.9258 +51904,130.07,87.2764 +51905,132.64,89.29611 +51906,131.37,88.5852 +51907,130.08,87.8857 +51908,128.77,87.199 +51909,131.26,89.32912 +51910,130.02,88.5819 +51911,128.75,87.8457 +51912,127.47,87.1223 +51913,129.89,89.36153 +51914,128.67,88.5783 +51915,127.43,87.806 +51916,126.17,87.0462 +51917,128.51,89.3933 +51918,127.31,88.5745 +51919,126.1,87.7665 +51920,124.87,86.9707 +51921,127.12,89.42442 +51922,125.96,88.5704 +51923,124.78,87.7271 +51924,123.57,86.8959 +51925,125.74,89.45485 +51926,124.61,88.5662 +51927,123.45,87.688 +51928,122.28,86.8219 +51929,124.36,89.48456 +51930,123.25,88.5616 +51931,122.13,87.6491 +51932,120.98,86.7485 +51933,122.97,89.51355 +51934,121.9,88.5568 +51935,120.8,87.6104 +51936,119.69,86.676 +51937,121.59,89.54177 +51938,120.54,88.5517 +51939,119.48,87.572 +51940,118.4,86.6042 +51941,120.2,89.5692 +51942,119.19,88.5463 +51943,118.16,87.5338 +51944,117.1,86.5332 +51945,118.82,89.59582 +51946,117.84,88.5407 +51947,116.83,87.4959 +51948,115.81,86.463 +51949,117.43,89.6216 +51950,116.48,88.5347 +51951,115.51,87.4583 +51952,114.52,86.3938 +51953,116.04,89.64652 +51954,115.13,88.5284 +51955,114.19,87.4209 +51956,113.23,86.3254 +51957,114.65,89.67055 +51958,113.77,88.5219 +51959,112.87,87.3838 +51960,111.94,86.2579 +51961,113.26,89.69368 +51962,112.41,88.515 +51963,111.55,87.3471 +51964,110.66,86.1913 +51965,111.87,89.71588 +51966,111.06,88.5077 +51967,110.22,87.3106 +51968,109.37,86.1257 +51969,110.48,89.73712 +51970,109.7,88.5002 +51971,108.9,87.2744 +51972,108.08,86.061 +51973,109.09,89.75739 +51974,108.35,88.4922 +51975,107.58,87.2385 +51976,106.8,85.9974 +51977,107.7,89.77666 +51978,106.99,88.484 +51979,106.26,87.2029 +51980,105.51,85.9348 +51981,106.3,89.79492 +51982,105.63,88.4753 +51983,104.94,87.1677 +51984,104.23,85.8732 +51985,104.91,89.81213 +51986,104.28,88.4663 +51987,103.62,87.1328 +51988,102.94,85.8126 +51989,103.52,89.82829 +51990,102.92,88.457 +51991,102.3,87.0983 +51992,101.66,85.7532 +51993,102.12,89.84337 +51994,101.56,88.4472 +51995,100.98,87.0641 +51996,100.38,85.6948 +51997,100.73,89.85736 +51998,100.21,88.4371 +51999,99.662,87.0302 +52000,99.095,85.6375 +52001,99.33,89.87023 +52002,98.848,88.4266 +52003,98.343,86.9967 +52004,97.813,85.5814 +52005,97.933,89.88196 +52006,97.491,88.4157 +52007,97.023,86.9636 +52008,96.532,85.5264 +52009,96.537,89.89255 +52010,96.134,88.4044 +52011,95.705,86.9309 +52012,95.251,85.4726 +52013,95.14,89.901972 +52014,94.776,88.3927 +52015,94.386,86.8985 +52016,93.97,85.4199 +52017,93.742,89.91021 +52018,93.418,88.3806 +52019,93.067,86.8665 +52020,92.69,85.3684 +52021,92.345,89.917249 +52022,92.061,88.368 +52023,91.749,86.8349 +52024,91.411,85.3182 +52025,90.947,89.923074 +52026,90.703,88.355 +52027,90.43,86.8036 +52028,90.131,85.2691 +52029,89.548,89.927672 +52030,89.345,88.3417 +52031,89.112,86.7728 +52032,88.852,85.2213 +52033,88.15,89.931028 +52034,87.987,88.3278 +52035,87.794,86.7424 +52036,87.573,85.1747 +52037,86.751,89.933129 +52038,86.629,88.3136 +52039,86.476,86.7124 +52040,86.295,85.1294 +52041,85.353,89.933963 +52042,85.271,88.2989 +52043,85.158,86.6827 +52044,85.016,85.0853 +52045,83.954,89.933517 +52046,83.913,88.2838 +52047,83.841,86.6535 +52048,83.738,85.0425 +52049,82.555,89.931781 +52050,82.555,88.2682 +52051,82.523,86.6247 +52052,82.46,85.001 +52053,81.156,89.928744 +52054,81.197,88.2522 +52055,81.205,86.5964 +52056,81.182,84.9607 +52057,79.757,89.924395 +52058,79.839,88.2357 +52059,79.888,86.5684 +52060,79.905,84.9218 +52061,78.357,89.918726 +52062,78.482,88.2188 +52063,78.57,86.5409 +52064,78.627,84.8841 +52065,76.958,89.911728 +52066,77.124,88.2014 +52067,77.253,86.5138 +52068,77.349,84.8478 +52069,75.559,89.903392 +52070,75.766,88.1836 +52071,75.936,86.4871 +52072,76.071,84.8128 +52073,74.161,89.89371 +52074,74.408,88.1653 +52075,74.618,86.4608 +52076,74.794,84.7791 +52077,72.762,89.88268 +52078,73.051,88.1465 +52079,73.301,86.435 +52080,73.516,84.7468 +52081,71.363,89.87029 +52082,71.693,88.1273 +52083,71.983,86.4096 +52084,72.238,84.7157 +52085,69.965,89.85654 +52086,70.336,88.1076 +52087,70.666,86.3846 +52088,70.96,84.686 +52089,68.567,89.84143 +52090,68.978,88.0875 +52091,69.349,86.3601 +52092,69.682,84.6576 +52093,67.169,89.82494 +52094,67.621,88.0669 +52095,68.031,86.336 +52096,68.403,84.6306 +52097,65.771,89.80708 +52098,66.264,88.0458 +52099,66.714,86.3124 +52100,67.125,84.6049 +52101,64.374,89.78784 +52102,64.907,88.0242 +52103,65.396,86.2892 +52104,65.846,84.5805 +52105,62.977,89.76723 +52106,63.55,88.0022 +52107,64.078,86.2664 +52108,64.567,84.5575 +52109,61.581,89.74524 +52110,62.193,87.9797 +52111,62.761,86.244 +52112,63.288,84.5358 +52113,60.185,89.72186 +52114,60.837,87.9568 +52115,61.443,86.2221 +52116,62.008,84.5154 +52117,58.789,89.69711 +52118,59.481,87.9334 +52119,60.125,86.2007 +52120,60.728,84.4964 +52121,57.394,89.67099 +52122,58.125,87.9095 +52123,58.807,86.1796 +52124,59.447,84.4787 +52125,56,89.64349 +52126,56.769,87.8851 +52127,57.489,86.159 +52128,58.166,84.4623 +52129,54.606,89.61461 +52130,55.413,87.8603 +52131,56.171,86.1388 +52132,56.885,84.4472 +52133,53.212,89.58437 +52134,54.057,87.835 +52135,54.852,86.1191 +52136,55.603,84.4335 +52137,51.82,89.55276 +52138,52.702,87.8093 +52139,53.534,86.0998 +52140,54.321,84.421 +52141,50.428,89.51979 +52142,51.347,87.7831 +52143,52.215,86.0809 +52144,53.038,84.4099 +52145,49.036,89.48547 +52146,49.992,87.7564 +52147,50.896,86.0624 +52148,51.755,84.4 +52149,47.645,89.4498 +52150,48.638,87.7293 +52151,49.577,86.0444 +52152,50.471,84.3914 +52153,46.255,89.41279 +52154,47.284,87.7018 +52155,48.258,86.0268 +52156,49.186,84.3841 +52157,44.866,89.37444 +52158,45.93,87.6738 +52159,46.939,86.0096 +52160,47.901,84.3781 +52161,43.478,89.33477 +52162,44.576,87.6453 +52163,45.619,85.9928 +52164,46.615,84.3733 +52165,42.09,89.29379 +52166,43.223,87.6164 +52167,44.299,85.9764 +52168,45.328,84.3697 +52169,40.704,89.2515 +52170,41.87,87.5871 +52171,42.979,85.9604 +52172,44.041,84.3674 +52173,39.318,89.20791 +52174,40.517,87.5574 +52175,41.659,85.9449 +52176,42.753,84.3663 +52177,37.933,89.16304 +52178,39.164,87.5272 +52179,40.339,85.9297 +52180,41.464,84.3665 +52181,36.549,89.1169 +52182,37.812,87.4966 +52183,39.018,85.9149 +52184,40.174,84.3678 +52185,35.166,89.0695 +52186,36.46,87.4655 +52187,37.697,85.9005 +52188,38.884,84.3703 +52189,33.784,89.02085 +52190,35.109,87.4341 +52191,36.376,85.8865 +52192,37.592,84.3739 +52193,32.403,88.971 +52194,33.758,87.4022 +52195,35.054,85.8729 +52196,36.3,84.3788 +52197,31.023,88.9199 +52198,32.407,87.3699 +52199,33.732,85.8596 +52200,35.007,84.3847 +52201,29.644,88.8676 +52202,31.057,87.3372 +52203,32.41,85.8468 +52204,33.713,84.3918 +52205,28.266,88.8141 +52206,29.707,87.3042 +52207,31.088,85.8343 +52208,32.418,84.4 +52209,26.89,88.7594 +52210,28.358,87.2707 +52211,29.765,85.8221 +52212,31.122,84.4093 +52213,25.514,88.7036 +52214,27.008,87.2368 +52215,28.442,85.8103 +52216,29.825,84.4196 +52217,24.14,88.6467 +52218,25.66,87.2026 +52219,27.119,85.7989 +52220,28.527,84.431 +52221,22.767,88.5887 +52222,24.311,87.168 +52223,25.795,85.7878 +52224,27.228,84.4434 +52225,21.395,88.5295 +52226,22.963,87.1331 +52227,24.472,85.777 +52228,25.928,84.4569 +52229,20.024,88.4693 +52230,21.616,87.0977 +52231,23.147,85.7666 +52232,24.627,84.4713 +52233,18.654,88.408 +52234,20.269,87.0621 +52235,21.823,85.7564 +52236,23.325,84.4867 +52237,17.286,88.3457 +52238,18.922,87.026 +52239,20.498,85.7466 +52240,22.022,84.5031 +52241,15.919,88.2824 +52242,17.576,86.9897 +52243,19.173,85.7372 +52244,20.718,84.5204 +52245,14.553,88.218 +52246,16.23,86.953 +52247,17.847,85.728 +52248,19.412,84.5386 +52249,13.189,88.1527 +52250,14.885,86.916 +52251,16.521,85.7191 +52252,18.105,84.5577 +52253,11.825,88.0865 +52254,13.54,86.8786 +52255,15.195,85.7105 +52256,16.798,84.5777 +52257,10.464,88.0194 +52258,12.196,86.841 +52259,13.868,85.7021 +52260,15.489,84.5985 +52261,9.1031,87.9513 +52262,10.852,86.8031 +52263,12.541,85.6941 +52264,14.178,84.6201 +52265,7.744,87.8824 +52266,9.5082,86.7648 +52267,11.213,85.6863 +52268,12.867,84.6426 +52269,6.3862,87.8126 +52270,8.1653,86.7263 +52271,9.8852,85.6788 +52272,11.554,84.6658 +52273,5.0299,87.742 +52274,6.8228,86.6875 +52275,8.557,85.6715 +52276,10.24,84.6897 +52277,3.6749,87.6706 +52278,5.4808,86.6485 +52279,7.2283,85.6644 +52280,8.9252,84.7144 +52281,2.3214,87.5984 +52282,4.1392,86.6092 +52283,5.8992,85.6576 +52284,7.6088,84.7398 +52285,0.96926,87.5255 +52286,2.7982,86.5696 +52287,4.5697,85.651 +52288,6.2911,84.7658 +52289,359.62,87.4519 +52290,1.4577,86.5298 +52291,3.2398,85.6446 +52292,4.9721,84.7925 +52293,358.27,87.3776 +52294,0.11764,86.4898 +52295,1.9095,85.6385 +52296,3.6518,84.8199 +52297,356.92,87.3026 +52298,358.78,86.4495 +52299,0.57876,85.6325 +52300,2.3302,84.8478 +52301,355.58,87.227 +52302,357.44,86.4091 +52303,359.25,85.6267 +52304,1.0073,84.8763 +52305,354.23,87.1508 +52306,356.1,86.3684 +52307,357.92,85.6211 +52308,359.68,84.9053 +52309,352.89,87.074 +52310,354.76,86.3275 +52311,356.58,85.6156 +52312,358.36,84.9348 +52313,351.54,86.9967 +52314,353.43,86.2865 +52315,355.25,85.6104 +52316,357.03,84.9649 +52317,350.2,86.9189 +52318,352.09,86.2453 +52319,353.92,85.6052 +52320,355.7,84.9954 +52321,348.87,86.8405 +52322,350.75,86.2039 +52323,352.59,85.6002 +52324,354.37,85.0263 +52325,347.53,86.7617 +52326,349.42,86.1623 +52327,351.25,85.5954 +52328,353.04,85.0577 +52329,346.19,86.6825 +52330,348.08,86.1207 +52331,349.92,85.5907 +52332,351.71,85.0894 +52333,344.86,86.6029 +52334,346.75,86.0788 +52335,348.58,85.586 +52336,350.38,85.1214 +52337,343.52,86.5229 +52338,345.41,86.0369 +52339,347.25,85.5815 +52340,349.04,85.1538 +52341,342.19,86.4426 +52342,344.08,85.9948 +52343,345.91,85.5771 +52344,347.7,85.1865 +52345,340.86,86.362 +52346,342.74,85.9527 +52347,344.58,85.5728 +52348,346.37,85.2195 +52349,339.53,86.2812 +52350,341.41,85.9104 +52351,343.24,85.5685 +52352,345.03,85.2526 +52353,338.21,86.2 +52354,340.08,85.8681 +52355,341.9,85.5643 +52356,343.69,85.286 +52357,336.88,86.1187 +52358,338.75,85.8257 +52359,340.57,85.5602 +52360,342.35,85.3196 +52361,335.56,86.0372 +52362,337.41,85.7832 +52363,339.23,85.5561 +52364,341,85.3533 +52365,334.23,85.9556 +52366,336.08,85.7407 +52367,337.89,85.552 +52368,339.66,85.3871 +52369,332.91,85.8738 +52370,334.75,85.6981 +52371,336.55,85.548 +52372,338.31,85.421 +52373,331.59,85.7919 +52374,333.42,85.6555 +52375,335.21,85.544 +52376,336.96,85.455 +52377,330.27,85.71 +52378,332.09,85.6128 +52379,333.87,85.54 +52380,335.62,85.4891 +52381,328.96,85.6281 +52382,330.77,85.5702 +52383,332.54,85.536 +52384,334.27,85.5231 +52385,327.64,85.5462 +52386,329.44,85.5275 +52387,331.19,85.5319 +52388,332.91,85.5571 +52389,326.32,85.4644 +52390,328.11,85.4849 +52391,329.85,85.5279 +52392,331.56,85.591 +52393,325.01,85.3826 +52394,326.78,85.4423 +52395,328.51,85.5238 +52396,330.21,85.6249 +52397,323.7,85.3009 +52398,325.46,85.3997 +52399,327.17,85.5197 +52400,328.85,85.6586 +52401,322.39,85.2193 +52402,324.13,85.3571 +52403,325.83,85.5155 +52404,327.5,85.6922 +52405,321.08,85.138 +52406,322.8,85.3146 +52407,324.49,85.5112 +52408,326.14,85.7256 +52409,319.77,85.0568 +52410,321.48,85.2722 +52411,323.15,85.5069 +52412,324.78,85.7589 +52413,318.47,84.9759 +52414,320.15,85.2298 +52415,321.8,85.5025 +52416,323.42,85.7919 +52417,317.16,84.8952 +52418,318.83,85.1875 +52419,320.46,85.498 +52420,322.06,85.8246 +52421,315.86,84.8148 +52422,317.5,85.1453 +52423,319.12,85.4934 +52424,320.69,85.8571 +52425,314.56,84.7347 +52426,316.18,85.1032 +52427,317.77,85.4887 +52428,319.33,85.8892 +52429,313.26,84.655 +52430,314.86,85.0612 +52431,316.43,85.4839 +52432,317.96,85.9211 +52433,311.96,84.5757 +52434,313.54,85.0194 +52435,315.08,85.4789 +52436,316.6,85.9525 +52437,310.66,84.4968 +52438,312.21,84.9776 +52439,313.74,85.4739 +52440,315.23,85.9836 +52441,309.36,84.4183 +52442,310.89,84.936 +52443,312.39,85.4686 +52444,313.86,86.0142 +52445,308.06,84.3403 +52446,309.57,84.8946 +52447,311.04,85.4632 +52448,312.49,86.0444 +52449,306.77,84.2628 +52450,308.25,84.8533 +52451,309.7,85.4576 +52452,311.12,86.074 +52453,305.48,84.1858 +52454,306.93,84.8121 +52455,308.35,85.4519 +52456,309.75,86.1032 +52457,304.18,84.1094 +52458,305.61,84.7712 +52459,307,85.446 +52460,308.37,86.1319 +52461,302.89,84.0336 +52462,304.29,84.7304 +52463,305.66,85.4398 +52464,307,86.16 +52465,301.6,83.9584 +52466,302.97,84.6898 +52467,304.31,85.4335 +52468,305.62,86.1875 +52469,300.31,83.8838 +52470,301.65,84.6495 +52471,302.96,85.427 +52472,304.24,86.2144 +52473,299.02,83.8099 +52474,300.33,84.6093 +52475,301.61,85.4202 +52476,302.87,86.2407 +52477,297.74,83.7367 +52478,299.01,84.5694 +52479,300.26,85.4132 +52480,301.49,86.2663 +52481,296.45,83.6642 +52482,297.7,84.5297 +52483,298.92,85.406 +52484,300.11,86.2913 +52485,295.17,83.5924 +52486,296.38,84.4902 +52487,297.57,85.3985 +52488,298.73,86.3155 +52489,293.88,83.5214 +52490,295.06,84.451 +52491,296.22,85.3908 +52492,297.34,86.339 +52493,292.6,83.4512 +52494,293.75,84.412 +52495,294.87,85.3828 +52496,295.96,86.3618 +52497,291.32,83.3819 +52498,292.43,84.3733 +52499,293.52,85.3745 +52500,294.58,86.3837 +52501,290.03,83.3133 +52502,291.11,84.3349 +52503,292.17,85.366 +52504,293.19,86.4049 +52505,288.75,83.2457 +52506,289.8,84.2968 +52507,290.82,85.3572 +52508,291.81,86.4252 +52509,287.47,83.1789 +52510,288.48,84.2589 +52511,289.47,85.3481 +52512,290.42,86.4447 +52513,286.2,83.113 +52514,287.17,84.2214 +52515,288.11,85.3387 +52516,289.04,86.4633 +52517,284.92,83.0481 +52518,285.85,84.1841 +52519,286.76,85.329 +52520,287.65,86.4811 +52521,283.64,82.9841 +52522,284.54,84.1471 +52523,285.41,85.3189 +52524,286.26,86.4979 +52525,282.36,82.9211 +52526,283.22,84.1105 +52527,284.06,85.3086 +52528,284.87,86.5138 +52529,281.09,82.8591 +52530,281.91,84.0742 +52531,282.71,85.2979 +52532,283.48,86.5287 +52533,279.81,82.7981 +52534,280.6,84.0382 +52535,281.36,85.2869 +52536,282.09,86.5427 +52537,278.54,82.7381 +52538,279.28,84.0025 +52539,280,85.2756 +52540,280.7,86.5557 +52541,277.26,82.6792 +52542,277.97,83.9672 +52543,278.65,85.2639 +52544,279.31,86.5677 +52545,275.99,82.6213 +52546,276.66,83.9323 +52547,277.3,85.2519 +52548,277.91,86.5786 +52549,274.72,82.5646 +52550,275.34,83.8977 +52551,275.95,85.2395 +52552,276.52,86.5886 +52553,273.44,82.5089 +52554,274.03,83.8634 +52555,274.59,85.2267 +52556,275.13,86.5974 +52557,272.17,82.4544 +52558,272.72,83.8295 +52559,273.24,85.2136 +52560,273.73,86.6052 +52561,270.9,82.401 +52562,271.41,83.796 +52563,271.89,85.2001 +52564,272.34,86.6119 +52565,269.63,82.3487 +52566,270.1,83.7629 +52567,270.53,85.1862 +52568,270.94,86.6175 +52569,268.36,82.2976 +52570,268.78,83.7301 +52571,269.18,85.1719 +52572,269.55,86.6219 +52573,267.09,82.2477 +52574,267.47,83.6977 +52575,267.83,85.1573 +52576,268.15,86.6252 +52577,265.82,82.1989 +52578,266.16,83.6657 +52579,266.47,85.1423 +52580,266.76,86.6274 +52581,264.55,82.1514 +52582,264.85,83.6342 +52583,265.12,85.1268 +52584,265.36,86.6284 +52585,263.28,82.1051 +52586,263.54,83.603 +52587,263.77,85.111 +52588,263.96,86.6283 +52589,262.01,82.06 +52590,262.23,83.5722 +52591,262.41,85.0948 +52592,262.57,86.6269 +52593,260.74,82.0161 +52594,260.92,83.5418 +52595,261.06,85.0781 +52596,261.17,86.6244 +52597,259.47,81.9735 +52598,259.6,83.5118 +52599,259.71,85.0611 +52600,259.77,86.6206 +52601,258.21,81.9321 +52602,258.29,83.4822 +52603,258.35,85.0436 +52604,258.38,86.6156 +52605,256.94,81.892 +52606,256.98,83.453 +52607,257,85.0257 +52608,256.98,86.6094 +52609,255.67,81.8531 +52610,255.67,83.4243 +52611,255.64,85.0074 +52612,255.58,86.602 +52613,254.4,81.8155 +52614,254.36,83.396 +52615,254.29,84.9887 +52616,254.19,86.5933 +52617,253.13,81.7792 +52618,253.05,83.3681 +52619,252.94,84.9695 +52620,252.79,86.5834 +52621,251.86,81.7442 +52622,251.74,83.3406 +52623,251.58,84.95 +52624,251.39,86.5722 +52625,250.6,81.7105 +52626,250.43,83.3135 +52627,250.23,84.93 +52628,249.99,86.5597 +52629,249.33,81.6781 +52630,249.12,83.2869 +52631,248.88,84.9095 +52632,248.6,86.546 +52633,248.06,81.6469 +52634,247.81,83.2607 +52635,247.52,84.8887 +52636,247.2,86.531 +52637,246.79,81.6171 +52638,246.5,83.2349 +52639,246.17,84.8674 +52640,245.8,86.5147 +52641,245.52,81.5886 +52642,245.19,83.2096 +52643,244.82,84.8457 +52644,244.41,86.4971 +52645,244.25,81.5613 +52646,243.88,83.1847 +52647,243.46,84.8235 +52648,243.01,86.4782 +52649,242.98,81.5354 +52650,242.57,83.1602 +52651,242.11,84.8009 +52652,241.61,86.4581 +52653,241.71,81.5107 +52654,241.26,83.1361 +52655,240.76,84.7779 +52656,240.22,86.4366 +52657,240.44,81.4874 +52658,239.94,83.1125 +52659,239.41,84.7544 +52660,238.82,86.4139 +52661,239.17,81.4654 +52662,238.63,83.0893 +52663,238.05,84.7305 +52664,237.43,86.3898 +52665,237.9,81.4446 +52666,237.32,83.0666 +52667,236.7,84.7062 +52668,236.03,86.3645 +52669,236.63,81.4252 +52670,236.01,83.0442 +52671,235.35,84.6814 +52672,234.64,86.3379 +52673,235.36,81.407 +52674,234.7,83.0223 +52675,234,84.6563 +52676,233.25,86.3099 +52677,234.09,81.3902 +52678,233.39,83.0008 +52679,232.64,84.6306 +52680,231.85,86.2807 +52681,232.82,81.3746 +52682,232.08,82.9798 +52683,231.29,84.6046 +52684,230.46,86.2502 +52685,231.55,81.3603 +52686,230.77,82.9592 +52687,229.94,84.5781 +52688,229.07,86.2185 +52689,230.27,81.3472 +52690,229.45,82.939 +52691,228.59,84.5512 +52692,227.68,86.1854 +52693,229,81.3355 +52694,228.14,82.9192 +52695,227.24,84.5238 +52696,226.29,86.1511 +52697,227.72,81.3249 +52698,226.83,82.8998 +52699,225.89,84.4961 +52700,224.9,86.1155 +52701,226.45,81.3157 +52702,225.52,82.8809 +52703,224.54,84.4679 +52704,223.51,86.0786 +52705,225.17,81.3076 +52706,224.2,82.8623 +52707,223.19,84.4393 +52708,222.12,86.0405 +52709,223.9,81.3008 +52710,222.89,82.8442 +52711,221.84,84.4103 +52712,220.73,86.0012 +52713,222.62,81.2952 +52714,221.58,82.8265 +52715,220.49,84.3809 +52716,219.34,85.9606 +52717,221.34,81.2908 +52718,220.27,82.8091 +52719,219.14,84.3511 +52720,217.96,85.9187 +52721,220.06,81.2876 +52722,218.95,82.7922 +52723,217.79,84.3208 +52724,216.57,85.8757 +52725,218.78,81.2856 +52726,217.64,82.7757 +52727,216.44,84.2902 +52728,215.19,85.8314 +52729,217.5,81.2847 +52730,216.32,82.7596 +52731,215.09,84.2592 +52732,213.81,85.786 +52733,216.22,81.285 +52734,215.01,82.7438 +52735,213.75,84.2277 +52736,212.42,85.7393 +52737,214.94,81.2865 +52738,213.7,82.7285 +52739,212.4,84.1959 +52740,211.04,85.6915 +52741,213.66,81.2891 +52742,212.38,82.7135 +52743,211.05,84.1637 +52744,209.66,85.6425 +52745,212.37,81.2928 +52746,211.07,82.6989 +52747,209.7,84.1312 +52748,208.28,85.5924 +52749,211.09,81.2975 +52750,209.75,82.6846 +52751,208.36,84.0982 +52752,206.9,85.5411 +52753,209.8,81.3034 +52754,208.43,82.6707 +52755,207.01,84.0649 +52756,205.53,85.4887 +52757,208.52,81.3104 +52758,207.12,82.6572 +52759,205.67,84.0312 +52760,204.15,85.4352 +52761,207.23,81.3183 +52762,205.8,82.644 +52763,204.32,83.9972 +52764,202.78,85.3807 +52765,205.94,81.3273 +52766,204.49,82.6312 +52767,202.98,83.9628 +52768,201.4,85.325 +52769,204.65,81.3374 +52770,203.17,82.6187 +52771,201.63,83.928 +52772,200.03,85.2683 +52773,203.36,81.3484 +52774,201.85,82.6066 +52775,200.29,83.8929 +52776,198.66,85.2106 +52777,202.07,81.3604 +52778,200.53,82.5948 +52779,198.94,83.8575 +52780,197.29,85.1518 +52781,200.77,81.3733 +52782,199.22,82.5833 +52783,197.6,83.8218 +52784,195.92,85.092 +52785,199.48,81.3872 +52786,197.9,82.5721 +52787,196.26,83.7857 +52788,194.55,85.0313 +52789,198.18,81.402 +52790,196.58,82.5612 +52791,194.92,83.7493 +52792,193.19,84.9696 +52793,196.89,81.4177 +52794,195.26,82.5507 +52795,193.57,83.7127 +52796,191.82,84.9069 +52797,195.59,81.4342 +52798,193.94,82.5404 +52799,192.23,83.6757 +52800,190.46,84.8433 +52801,194.29,81.4516 +52802,192.62,82.5304 +52803,190.89,83.6384 +52804,189.1,84.7789 +52805,192.99,81.4698 +52806,191.3,82.5207 +52807,189.55,83.6008 +52808,187.73,84.7135 +52809,191.69,81.4889 +52810,189.98,82.5113 +52811,188.21,83.563 +52812,186.37,84.6473 +52813,190.39,81.5087 +52814,188.66,82.5021 +52815,186.87,83.5249 +52816,185.02,84.5803 +52817,189.08,81.5292 +52818,187.34,82.4932 +52819,185.53,83.4865 +52820,183.66,84.5125 +52821,187.78,81.5505 +52822,186.01,82.4846 +52823,184.19,83.4478 +52824,182.31,84.4438 +52825,186.47,81.5725 +52826,184.69,82.4761 +52827,182.86,83.409 +52828,180.95,84.3744 +52829,185.16,81.5952 +52830,183.37,82.468 +52831,181.52,83.3698 +52832,179.6,84.3043 +52833,183.85,81.6186 +52834,182.05,82.46 +52835,180.18,83.3305 +52836,178.25,84.2335 +52837,182.54,81.6426 +52838,180.72,82.4523 +52839,178.84,83.2909 +52840,176.9,84.162 +52841,181.23,81.6672 +52842,179.4,82.4447 +52843,177.51,83.2511 +52844,175.55,84.0898 +52845,179.92,81.6923 +52846,178.07,82.4374 +52847,176.17,83.2112 +52848,174.21,84.017 +52849,178.6,81.7181 +52850,176.75,82.4303 +52851,174.84,83.171 +52852,172.86,83.9436 +52853,177.28,81.7443 +52854,175.42,82.4233 +52855,173.5,83.1306 +52856,171.52,83.8696 +52857,175.97,81.7711 +52858,174.1,82.4165 +52859,172.17,83.0901 +52860,170.18,83.7951 +52861,174.65,81.7984 +52862,172.77,82.4099 +52863,170.84,83.0493 +52864,168.84,83.72 +52865,173.33,81.8261 +52866,171.45,82.4034 +52867,169.5,83.0085 +52868,167.5,83.6444 +52869,172.01,81.8542 +52870,170.12,82.3971 +52871,168.17,82.9674 +52872,166.16,83.5684 +52873,170.68,81.8827 +52874,168.79,82.3909 +52875,166.84,82.9263 +52876,164.82,83.4919 +52877,169.36,81.9116 +52878,167.46,82.3849 +52879,165.51,82.885 +52880,163.49,83.4151 +52881,168.03,81.9408 +52882,166.13,82.379 +52883,164.18,82.8436 +52884,162.16,83.3378 +52885,166.7,81.9704 +52886,164.8,82.3731 +52887,162.85,82.802 +52888,160.83,83.2602 +52889,165.38,82.0002 +52890,163.48,82.3674 +52891,161.52,82.7604 +52892,159.5,83.1822 +52893,164.04,82.0303 +52894,162.15,82.3618 +52895,160.19,82.7187 +52896,158.17,83.104 +52897,162.71,82.0606 +52898,160.81,82.3562 +52899,158.86,82.6769 +52900,156.84,83.0255 +52901,161.38,82.0912 +52902,159.48,82.3508 +52903,157.53,82.635 +52904,155.52,82.9468 +52905,160.04,82.1219 +52906,158.15,82.3453 +52907,156.21,82.593 +52908,154.2,82.8678 +52909,158.71,82.1527 +52910,156.82,82.34 +52911,154.88,82.551 +52912,152.88,82.7887 +52913,157.37,82.1837 +52914,155.49,82.3347 +52915,153.55,82.509 +52916,151.56,82.7095 +52917,156.03,82.2147 +52918,154.16,82.3294 +52919,152.23,82.4669 +52920,150.24,82.6301 +52921,154.69,82.2459 +52922,152.82,82.3241 +52923,150.9,82.4248 +52924,148.92,82.5506 +52925,153.35,82.277 +52926,151.49,82.3189 +52927,149.58,82.3827 +52928,147.6,82.4711 +52929,152.01,82.3082 +52930,150.15,82.3137 +52931,148.25,82.3406 +52932,146.29,82.3916 +52933,150.66,82.3393 +52934,148.82,82.3084 +52935,146.93,82.2984 +52936,144.98,82.3121 +52937,149.31,82.3704 +52938,147.49,82.3032 +52939,145.6,82.2564 +52940,143.67,82.2326 +52941,147.97,82.4014 +52942,146.15,82.2979 +52943,144.28,82.2143 +52944,142.36,82.1532 +52945,146.62,82.4323 +52946,144.81,82.2926 +52947,142.96,82.1722 +52948,141.05,82.0738 +52949,145.27,82.463 +52950,143.48,82.2872 +52951,141.64,82.1302 +52952,139.75,81.9946 +52953,143.92,82.4936 +52954,142.14,82.2818 +52955,140.32,82.0883 +52956,138.44,81.9156 +52957,142.56,82.524 +52958,140.8,82.2763 +52959,139,82.0464 +52960,137.14,81.8367 +52961,141.21,82.5542 +52962,139.47,82.2708 +52963,137.68,82.0046 +52964,135.84,81.7581 +52965,139.85,82.5841 +52966,138.13,82.2652 +52967,136.36,81.9629 +52968,134.53,81.6797 +52969,138.5,82.6138 +52970,136.79,82.2595 +52971,135.04,81.9213 +52972,133.24,81.6016 +52973,137.14,82.6431 +52974,135.45,82.2537 +52975,133.72,81.8798 +52976,131.94,81.5238 +52977,135.78,82.6722 +52978,134.11,82.2478 +52979,132.4,81.8384 +52980,130.64,81.4463 +52981,134.42,82.7009 +52982,132.77,82.2417 +52983,131.08,81.7971 +52984,129.35,81.3692 +52985,133.05,82.7291 +52986,131.43,82.2356 +52987,129.77,81.7559 +52988,128.05,81.2925 +52989,131.69,82.757 +52990,130.09,82.2293 +52991,128.45,81.7149 +52992,126.76,81.2162 +52993,130.32,82.7845 +52994,128.75,82.2228 +52995,127.13,81.6741 +52996,125.47,81.1404 +52997,128.96,82.8115 +52998,127.41,82.2163 +52999,125.82,81.6334 +53000,124.18,81.065 +53001,127.59,82.838 +53002,126.07,82.2095 +53003,124.5,81.5928 +53004,122.89,80.9902 +53005,126.22,82.864 +53006,124.72,82.2026 +53007,123.19,81.5525 +53008,121.61,80.9159 +53009,124.85,82.8894 +53010,123.38,82.1955 +53011,121.87,81.5123 +53012,120.32,80.8421 +53013,123.48,82.9143 +53014,122.04,82.1882 +53015,120.56,81.4724 +53016,119.03,80.769 +53017,122.11,82.9386 +53018,120.7,82.1807 +53019,119.24,81.4326 +53020,117.75,80.6964 +53021,120.74,82.9623 +53022,119.35,82.173 +53023,117.93,81.393 +53024,116.47,80.6245 +53025,119.36,82.9854 +53026,118.01,82.1651 +53027,116.62,81.3537 +53028,115.19,80.5533 +53029,117.99,83.0078 +53030,116.66,82.157 +53031,115.31,81.3146 +53032,113.91,80.4827 +53033,116.61,83.0295 +53034,115.32,82.1486 +53035,113.99,81.2757 +53036,112.63,80.4129 +53037,115.23,83.0506 +53038,113.98,82.1401 +53039,112.68,81.2371 +53040,111.35,80.3438 +53041,113.85,83.0709 +53042,112.63,82.1312 +53043,111.37,81.1988 +53044,110.07,80.2755 +53045,112.47,83.0904 +53046,111.28,82.1222 +53047,110.06,81.1607 +53048,108.8,80.2079 +53049,111.09,83.1092 +53050,109.94,82.1128 +53051,108.75,81.1228 +53052,107.52,80.1412 +53053,109.71,83.1272 +53054,108.59,82.1032 +53055,107.44,81.0853 +53056,106.25,80.0753 +53057,108.33,83.1444 +53058,107.25,82.0933 +53059,106.13,81.048 +53060,104.98,80.0103 +53061,106.95,83.1607 +53062,105.9,82.0832 +53063,104.82,81.011 +53064,103.7,79.946 +53065,105.56,83.1762 +53066,104.55,82.0727 +53067,103.51,80.9743 +53068,102.43,79.883 +53069,104.18,83.1908 +53070,103.21,82.062 +53071,102.2,80.938 +53072,101.16,79.821 +53073,102.79,83.2045 +53074,101.86,82.0509 +53075,100.89,80.9019 +53076,99.893,79.759 +53077,101.41,83.2173 +53078,100.51,82.0396 +53079,99.583,80.8661 +53080,98.624,79.699 +53081,100.02,83.2292 +53082,99.163,82.0279 +53083,98.275,80.8307 +53084,97.356,79.639 +53085,98.631,83.2401 +53086,97.815,82.016 +53087,96.968,80.7956 +53088,96.089,79.581 +53089,97.242,83.2501 +53090,96.467,82.0037 +53091,95.66,80.7609 +53092,94.822,79.524 +53093,95.853,83.2591 +53094,95.118,81.991 +53095,94.353,80.7265 +53096,93.556,79.467 +53097,94.463,83.2671 +53098,93.77,81.9781 +53099,93.046,80.6924 +53100,92.291,79.412 +53101,93.072,83.2741 +53102,92.421,81.9647 +53103,91.739,80.6587 +53104,91.026,79.358 +53105,91.681,83.28 +53106,91.072,81.9511 +53107,90.432,80.6253 +53108,89.762,79.304 +53109,90.289,83.2849 +53110,89.723,81.9371 +53111,89.126,80.5924 +53112,88.498,79.252 +53113,88.897,83.2887 +53114,88.373,81.9227 +53115,87.82,80.5597 +53116,87.235,79.201 +53117,87.504,83.2915 +53118,87.024,81.908 +53119,86.514,80.5275 +53120,85.973,79.152 +53121,86.111,83.2932 +53122,85.675,81.8929 +53123,85.208,80.4956 +53124,84.71,79.103 +53125,84.718,83.2938 +53126,84.325,81.8774 +53127,83.902,80.4642 +53128,83.449,79.055 +53129,83.324,83.2933 +53130,82.975,81.8616 +53131,82.596,80.4331 +53132,82.187,79.009 +53133,81.929,83.2916 +53134,81.625,81.8454 +53135,81.291,80.4024 +53136,80.926,78.964 +53137,80.535,83.2888 +53138,80.276,81.8288 +53139,79.986,80.3721 +53140,79.665,78.92 +53141,79.14,83.2849 +53142,78.926,81.8118 +53143,78.681,80.3421 +53144,78.405,78.877 +53145,77.745,83.2798 +53146,77.576,81.7945 +53147,77.376,80.3126 +53148,77.145,78.836 +53149,76.349,83.2736 +53150,76.226,81.7767 +53151,76.071,80.2835 +53152,75.884,78.795 +53153,74.954,83.2662 +53154,74.876,81.7586 +53155,74.766,80.2548 +53156,74.625,78.756 +53157,73.558,83.2576 +53158,73.526,81.74 +53159,73.461,80.2265 +53160,73.365,78.718 +53161,72.162,83.2478 +53162,72.176,81.7211 +53163,72.156,80.1987 +53164,72.105,78.682 +53165,70.766,83.2368 +53166,70.826,81.7018 +53167,70.852,80.1712 +53168,70.846,78.646 +53169,69.371,83.2246 +53170,69.475,81.682 +53171,69.547,80.1441 +53172,69.586,78.612 +53173,67.975,83.2113 +53174,68.125,81.6619 +53175,68.242,80.1175 +53176,68.326,78.579 +53177,66.579,83.1967 +53178,66.775,81.6413 +53179,66.938,80.0913 +53180,67.067,78.548 +53181,65.183,83.1809 +53182,65.426,81.6204 +53183,65.633,80.0655 +53184,65.807,78.517 +53185,63.787,83.1638 +53186,64.076,81.599 +53187,64.328,80.0401 +53188,64.547,78.488 +53189,62.392,83.1456 +53190,62.726,81.5772 +53191,63.024,80.0152 +53192,63.287,78.46 +53193,60.996,83.1261 +53194,61.376,81.555 +53195,61.719,79.991 +53196,62.027,78.434 +53197,59.601,83.1054 +53198,60.027,81.5324 +53199,60.414,79.967 +53200,60.767,78.408 +53201,58.206,83.0835 +53202,58.677,81.5094 +53203,59.11,79.943 +53204,59.507,78.384 +53205,56.812,83.0603 +53206,57.328,81.486 +53207,57.805,79.92 +53208,58.246,78.362 +53209,55.417,83.0359 +53210,55.979,81.4622 +53211,56.5,79.897 +53212,56.985,78.34 +53213,54.023,83.0103 +53214,54.629,81.438 +53215,55.195,79.874 +53216,55.723,78.32 +53217,52.63,82.9834 +53218,53.281,81.4133 +53219,53.89,79.852 +53220,54.461,78.301 +53221,51.237,82.9554 +53222,51.932,81.3883 +53223,52.585,79.831 +53224,53.199,78.283 +53225,49.844,82.9261 +53226,50.583,81.3628 +53227,51.279,79.81 +53228,51.936,78.267 +53229,48.452,82.8955 +53230,49.235,81.3369 +53231,49.974,79.789 +53232,50.673,78.252 +53233,47.06,82.8638 +53234,47.887,81.3107 +53235,48.668,79.769 +53236,49.41,78.238 +53237,45.669,82.8309 +53238,46.539,81.284 +53239,47.363,79.749 +53240,48.145,78.225 +53241,44.278,82.7967 +53242,45.191,81.2569 +53243,46.057,79.729 +53244,46.881,78.213 +53245,42.888,82.7613 +53246,43.843,81.2294 +53247,44.75,79.71 +53248,45.615,78.203 +53249,41.499,82.7248 +53250,42.496,81.2016 +53251,43.444,79.691 +53252,44.349,78.194 +53253,40.111,82.687 +53254,41.149,81.1733 +53255,42.138,79.673 +53256,43.083,78.186 +53257,38.723,82.6481 +53258,39.802,81.1447 +53259,40.831,79.655 +53260,41.815,78.18 +53261,37.336,82.608 +53262,38.456,81.1156 +53263,39.524,79.638 +53264,40.547,78.174 +53265,35.95,82.5667 +53266,37.11,81.0862 +53267,38.217,79.621 +53268,39.278,78.17 +53269,34.564,82.5243 +53270,35.764,81.0564 +53271,36.91,79.604 +53272,38.009,78.167 +53273,33.18,82.4807 +53274,34.418,81.0262 +53275,35.602,79.588 +53276,36.738,78.165 +53277,31.796,82.436 +53278,33.073,80.9956 +53279,34.294,79.572 +53280,35.467,78.164 +53281,30.413,82.3902 +53282,31.728,80.9647 +53283,32.986,79.556 +53284,34.195,78.164 +53285,29.032,82.3433 +53286,30.383,80.9334 +53287,31.677,79.541 +53288,32.922,78.166 +53289,27.651,82.2952 +53290,29.039,80.9017 +53291,30.369,79.526 +53292,31.648,78.168 +53293,26.271,82.2461 +53294,27.695,80.8697 +53295,29.06,79.512 +53296,30.373,78.172 +53297,24.892,82.1959 +53298,26.352,80.8373 +53299,27.75,79.498 +53300,29.097,78.176 +53301,23.515,82.1446 +53302,25.008,80.8046 +53303,26.441,79.484 +53304,27.82,78.182 +53305,22.138,82.0923 +53306,23.666,80.7716 +53307,25.131,79.471 +53308,26.543,78.189 +53309,20.763,82.039 +53310,22.323,80.7382 +53311,23.821,79.458 +53312,25.264,78.197 +53313,19.389,81.9846 +53314,20.981,80.7044 +53315,22.51,79.445 +53316,23.984,78.205 +53317,18.016,81.9292 +53318,19.64,80.6704 +53319,21.199,79.433 +53320,22.703,78.215 +53321,16.644,81.8729 +53322,18.299,80.636 +53323,19.888,79.421 +53324,21.42,78.226 +53325,15.273,81.8156 +53326,16.958,80.6013 +53327,18.576,79.409 +53328,20.137,78.238 +53329,13.904,81.7574 +53330,15.618,80.5663 +53331,17.264,79.398 +53332,18.853,78.25 +53333,12.536,81.6982 +53334,14.278,80.531 +53335,15.951,79.387 +53336,17.567,78.264 +53337,11.169,81.6381 +53338,12.938,80.4954 +53339,14.639,79.376 +53340,16.28,78.278 +53341,9.8036,81.5771 +53342,11.599,80.4596 +53343,13.325,79.366 +53344,14.992,78.293 +53345,8.4395,81.5153 +53346,10.261,80.4234 +53347,12.012,79.355 +53348,13.703,78.309 +53349,7.0768,81.4526 +53350,8.9229,80.387 +53351,10.698,79.346 +53352,12.412,78.326 +53353,5.7155,81.3891 +53354,7.5853,80.3503 +53355,9.3833,79.336 +53356,11.12,78.344 +53357,4.3556,81.3248 +53358,6.2483,80.3133 +53359,8.0685,79.327 +53360,9.8268,78.362 +53361,2.9972,81.2597 +53362,4.9117,80.2761 +53363,6.7532,79.318 +53364,8.5323,78.382 +53365,1.6402,81.1938 +53366,3.5756,80.2386 +53367,5.4375,79.309 +53368,7.2365,78.402 +53369,0.28468,81.1272 +53370,2.24,80.2009 +53371,4.1214,79.3 +53372,5.9393,78.422 +53373,358.93,81.0599 +53374,0.90497,80.163 +53375,2.8048,79.292 +53376,4.6407,78.444 +53377,357.58,80.9919 +53378,359.57,80.1249 +53379,1.4878,79.284 +53380,3.3408,78.466 +53381,356.23,80.9232 +53382,358.24,80.0865 +53383,0.17029,79.276 +53384,2.0395,78.488 +53385,354.88,80.8539 +53386,356.9,80.0479 +53387,358.85,79.268 +53388,0.73679,78.512 +53389,353.53,80.7839 +53390,355.57,80.0092 +53391,357.53,79.26 +53392,359.43,78.535 +53393,352.18,80.7134 +53394,354.24,79.97 +53395,356.22,79.253 +53396,358.13,78.56 +53397,350.84,80.6423 +53398,352.91,79.931 +53399,354.9,79.246 +53400,356.82,78.585 +53401,349.5,80.5706 +53402,351.57,79.892 +53403,353.58,79.239 +53404,355.51,78.61 +53405,348.15,80.4984 +53406,350.24,79.852 +53407,352.26,79.232 +53408,354.2,78.636 +53409,346.81,80.4258 +53410,348.91,79.813 +53411,350.94,79.226 +53412,352.89,78.662 +53413,345.48,80.3526 +53414,347.58,79.773 +53415,349.61,79.219 +53416,351.58,78.689 +53417,344.14,80.2791 +53418,346.25,79.733 +53419,348.29,79.213 +53420,350.26,78.716 +53421,342.8,80.2051 +53422,344.93,79.693 +53423,346.97,79.207 +53424,348.95,78.744 +53425,341.47,80.1307 +53426,343.6,79.653 +53427,345.65,79.201 +53428,347.63,78.772 +53429,340.14,80.056 +53430,342.27,79.613 +53431,344.32,79.195 +53432,346.31,78.8 +53433,338.81,79.981 +53434,340.94,79.572 +53435,343,79.189 +53436,344.99,78.829 +53437,337.48,79.906 +53438,339.62,79.532 +53439,341.68,79.183 +53440,343.67,78.857 +53441,336.15,79.83 +53442,338.29,79.491 +53443,340.35,79.178 +53444,342.35,78.886 +53445,334.83,79.754 +53446,336.96,79.451 +53447,339.03,79.172 +53448,341.02,78.916 +53449,333.5,79.678 +53450,335.64,79.41 +53451,337.7,79.167 +53452,339.69,78.945 +53453,332.18,79.602 +53454,334.32,79.369 +53455,336.37,79.161 +53456,338.37,78.975 +53457,330.86,79.525 +53458,332.99,79.329 +53459,335.05,79.156 +53460,337.04,79.004 +53461,329.54,79.449 +53462,331.67,79.288 +53463,333.72,79.15 +53464,335.71,79.034 +53465,328.22,79.372 +53466,330.35,79.247 +53467,332.39,79.145 +53468,334.37,79.064 +53469,326.91,79.295 +53470,329.02,79.206 +53471,331.07,79.14 +53472,333.04,79.094 +53473,325.6,79.219 +53474,327.7,79.165 +53475,329.74,79.135 +53476,331.71,79.124 +53477,324.28,79.142 +53478,326.38,79.124 +53479,328.41,79.129 +53480,330.37,79.154 +53481,322.97,79.065 +53482,325.06,79.084 +53483,327.08,79.124 +53484,329.03,79.184 +53485,321.66,78.988 +53486,323.74,79.043 +53487,325.75,79.119 +53488,327.69,79.213 +53489,320.36,78.912 +53490,322.42,79.002 +53491,324.42,79.113 +53492,326.35,79.243 +53493,319.05,78.835 +53494,321.1,78.961 +53495,323.09,79.108 +53496,325.01,79.273 +53497,317.75,78.759 +53498,319.79,78.921 +53499,321.76,79.103 +53500,323.66,79.302 +53501,316.44,78.683 +53502,318.47,78.88 +53503,320.42,79.097 +53504,322.32,79.331 +53505,315.14,78.607 +53506,317.15,78.84 +53507,319.09,79.092 +53508,320.97,79.36 +53509,313.84,78.531 +53510,315.83,78.799 +53511,317.76,79.086 +53512,319.62,79.389 +53513,312.54,78.455 +53514,314.52,78.759 +53515,316.42,79.08 +53516,318.27,79.418 +53517,311.25,78.38 +53518,313.2,78.718 +53519,315.09,79.075 +53520,316.92,79.446 +53521,309.95,78.305 +53522,311.89,78.678 +53523,313.76,79.069 +53524,315.57,79.474 +53525,308.66,78.23 +53526,310.57,78.638 +53527,312.42,79.063 +53528,314.21,79.502 +53529,307.37,78.156 +53530,309.26,78.598 +53531,311.09,79.057 +53532,312.86,79.529 +53533,306.08,78.082 +53534,307.95,78.559 +53535,309.75,79.051 +53536,311.5,79.556 +53537,304.79,78.009 +53538,306.63,78.519 +53539,308.42,79.044 +53540,310.14,79.582 +53541,303.5,77.936 +53542,305.32,78.479 +53543,307.08,79.038 +53544,308.78,79.608 +53545,302.21,77.863 +53546,304.01,78.44 +53547,305.74,79.031 +53548,307.42,79.634 +53549,300.93,77.791 +53550,302.7,78.401 +53551,304.4,79.024 +53552,306.06,79.659 +53553,299.65,77.72 +53554,301.39,78.362 +53555,303.07,79.017 +53556,304.69,79.684 +53557,298.36,77.649 +53558,300.07,78.323 +53559,301.73,79.01 +53560,303.33,79.708 +53561,297.08,77.578 +53562,298.76,78.285 +53563,300.39,79.003 +53564,301.96,79.731 +53565,295.8,77.508 +53566,297.45,78.246 +53567,299.05,78.996 +53568,300.6,79.754 +53569,294.53,77.439 +53570,296.15,78.208 +53571,297.71,78.988 +53572,299.23,79.776 +53573,293.25,77.371 +53574,294.84,78.17 +53575,296.37,78.98 +53576,297.86,79.798 +53577,291.97,77.303 +53578,293.53,78.133 +53579,295.03,78.972 +53580,296.49,79.819 +53581,290.7,77.236 +53582,292.22,78.095 +53583,293.69,78.964 +53584,295.11,79.839 +53585,289.42,77.169 +53586,290.91,78.058 +53587,292.35,78.955 +53588,293.74,79.859 +53589,288.15,77.104 +53590,289.61,78.021 +53591,291.01,78.946 +53592,292.37,79.877 +53593,286.88,77.039 +53594,288.3,77.984 +53595,289.67,78.937 +53596,290.99,79.896 +53597,285.61,76.975 +53598,286.99,77.948 +53599,288.33,78.928 +53600,289.61,79.913 +53601,284.34,76.912 +53602,285.69,77.912 +53603,286.98,78.918 +53604,288.24,79.93 +53605,283.07,76.849 +53606,284.38,77.876 +53607,285.64,78.908 +53608,286.86,79.945 +53609,281.81,76.788 +53610,283.08,77.84 +53611,284.3,78.898 +53612,285.48,79.96 +53613,280.54,76.727 +53614,281.77,77.805 +53615,282.96,78.888 +53616,284.1,79.974 +53617,279.28,76.668 +53618,280.47,77.77 +53619,281.61,78.877 +53620,282.72,79.988 +53621,278.01,76.609 +53622,279.16,77.735 +53623,280.27,78.866 +53624,281.33,80 +53625,276.75,76.551 +53626,277.86,77.701 +53627,278.92,78.855 +53628,279.95,80.0114 +53629,275.49,76.494 +53630,276.55,77.667 +53631,277.58,78.843 +53632,278.57,80.0219 +53633,274.22,76.438 +53634,275.25,77.633 +53635,276.24,78.831 +53636,277.18,80.0315 +53637,272.96,76.383 +53638,273.95,77.6 +53639,274.89,78.819 +53640,275.8,80.0402 +53641,271.7,76.329 +53642,272.64,77.567 +53643,273.55,78.807 +53644,274.41,80.0478 +53645,270.44,76.276 +53646,271.34,77.534 +53647,272.2,78.794 +53648,273.02,80.0546 +53649,269.19,76.225 +53650,270.04,77.502 +53651,270.86,78.781 +53652,271.63,80.0603 +53653,267.93,76.174 +53654,268.74,77.47 +53655,269.51,78.767 +53656,270.25,80.065 +53657,266.67,76.124 +53658,267.44,77.438 +53659,268.16,78.753 +53660,268.86,80.0686 +53661,265.41,76.076 +53662,266.13,77.407 +53663,266.82,78.739 +53664,267.47,80.0713 +53665,264.16,76.028 +53666,264.83,77.376 +53667,265.47,78.725 +53668,266.08,80.0729 +53669,262.9,75.982 +53670,263.53,77.345 +53671,264.13,78.71 +53672,264.69,80.0734 +53673,261.65,75.937 +53674,262.23,77.315 +53675,262.78,78.694 +53676,263.29,80.0728 +53677,260.39,75.893 +53678,260.93,77.285 +53679,261.43,78.679 +53680,261.9,80.0712 +53681,259.14,75.85 +53682,259.63,77.256 +53683,260.09,78.663 +53684,260.51,80.0685 +53685,257.88,75.808 +53686,258.33,77.227 +53687,258.74,78.646 +53688,259.12,80.0646 +53689,256.63,75.768 +53690,257.03,77.198 +53691,257.39,78.63 +53692,257.72,80.0597 +53693,255.38,75.728 +53694,255.73,77.17 +53695,256.05,78.612 +53696,256.33,80.0536 +53697,254.12,75.69 +53698,254.43,77.142 +53699,254.7,78.595 +53700,254.94,80.0464 +53701,252.87,75.653 +53702,253.13,77.115 +53703,253.35,78.577 +53704,253.54,80.038 +53705,251.62,75.617 +53706,251.83,77.088 +53707,252,78.559 +53708,252.15,80.0285 +53709,250.37,75.583 +53710,250.53,77.061 +53711,250.66,78.54 +53712,250.75,80.0179 +53713,249.11,75.549 +53714,249.23,77.035 +53715,249.31,78.521 +53716,249.36,80.006 +53717,247.86,75.517 +53718,247.93,77.009 +53719,247.96,78.502 +53720,247.96,79.993 +53721,246.61,75.487 +53722,246.63,76.984 +53723,246.62,78.482 +53724,246.57,79.979 +53725,245.36,75.457 +53726,245.33,76.959 +53727,245.27,78.462 +53728,245.17,79.964 +53729,244.11,75.429 +53730,244.03,76.934 +53731,243.92,78.441 +53732,243.78,79.947 +53733,242.85,75.401 +53734,242.73,76.91 +53735,242.57,78.42 +53736,242.38,79.929 +53737,241.6,75.376 +53738,241.43,76.887 +53739,241.23,78.399 +53740,240.99,79.91 +53741,240.35,75.351 +53742,240.13,76.863 +53743,239.88,78.377 +53744,239.59,79.89 +53745,239.1,75.327 +53746,238.83,76.84 +53747,238.53,78.355 +53748,238.2,79.869 +53749,237.84,75.305 +53750,237.53,76.818 +53751,237.19,78.332 +53752,236.8,79.847 +53753,236.59,75.284 +53754,236.23,76.796 +53755,235.84,78.309 +53756,235.41,79.823 +53757,235.34,75.265 +53758,234.93,76.774 +53759,234.49,78.286 +53760,234.02,79.798 +53761,234.08,75.246 +53762,233.63,76.753 +53763,233.15,78.262 +53764,232.62,79.772 +53765,232.83,75.229 +53766,232.33,76.732 +53767,231.8,78.238 +53768,231.23,79.745 +53769,231.58,75.213 +53770,231.03,76.712 +53771,230.45,78.213 +53772,229.84,79.717 +53773,230.32,75.198 +53774,229.73,76.692 +53775,229.11,78.188 +53776,228.44,79.687 +53777,229.07,75.185 +53778,228.43,76.672 +53779,227.76,78.163 +53780,227.05,79.656 +53781,227.81,75.172 +53782,227.13,76.653 +53783,226.41,78.137 +53784,225.66,79.624 +53785,226.55,75.161 +53786,225.83,76.634 +53787,225.07,78.111 +53788,224.27,79.591 +53789,225.3,75.151 +53790,224.53,76.616 +53791,223.72,78.084 +53792,222.88,79.557 +53793,224.04,75.143 +53794,223.23,76.598 +53795,222.38,78.057 +53796,221.49,79.522 +53797,222.78,75.135 +53798,221.93,76.58 +53799,221.03,78.03 +53800,220.1,79.485 +53801,221.52,75.129 +53802,220.63,76.563 +53803,219.69,78.002 +53804,218.71,79.447 +53805,220.26,75.124 +53806,219.32,76.546 +53807,218.34,77.974 +53808,217.32,79.409 +53809,219,75.12 +53810,218.02,76.53 +53811,217,77.946 +53812,215.93,79.369 +53813,217.74,75.117 +53814,216.72,76.514 +53815,215.66,77.917 +53816,214.54,79.327 +53817,216.48,75.115 +53818,215.42,76.498 +53819,214.31,77.888 +53820,213.16,79.285 +53821,215.22,75.114 +53822,214.12,76.483 +53823,212.97,77.859 +53824,211.77,79.242 +53825,213.96,75.115 +53826,212.81,76.468 +53827,211.62,77.829 +53828,210.39,79.198 +53829,212.69,75.117 +53830,211.51,76.453 +53831,210.28,77.798 +53832,209,79.152 +53833,211.43,75.119 +53834,210.21,76.439 +53835,208.94,77.768 +53836,207.62,79.106 +53837,210.16,75.123 +53838,208.9,76.425 +53839,207.6,77.737 +53840,206.24,79.058 +53841,208.9,75.128 +53842,207.6,76.412 +53843,206.26,77.706 +53844,204.86,79.009 +53845,207.63,75.134 +53846,206.3,76.399 +53847,204.91,77.674 +53848,203.48,78.96 +53849,206.36,75.14 +53850,204.99,76.386 +53851,203.57,77.642 +53852,202.1,78.909 +53853,205.09,75.148 +53854,203.69,76.373 +53855,202.23,77.61 +53856,200.72,78.858 +53857,203.82,75.157 +53858,202.38,76.361 +53859,200.89,77.577 +53860,199.34,78.805 +53861,202.55,75.167 +53862,201.08,76.35 +53863,199.55,77.544 +53864,197.97,78.751 +53865,201.27,75.178 +53866,199.77,76.338 +53867,198.21,77.511 +53868,196.59,78.697 +53869,200,75.189 +53870,198.46,76.327 +53871,196.87,77.478 +53872,195.22,78.641 +53873,198.72,75.202 +53874,197.16,76.316 +53875,195.53,77.444 +53876,193.85,78.585 +53877,197.45,75.215 +53878,195.85,76.306 +53879,194.2,77.41 +53880,192.48,78.528 +53881,196.17,75.23 +53882,194.54,76.296 +53883,192.86,77.375 +53884,191.11,78.469 +53885,194.89,75.245 +53886,193.23,76.286 +53887,191.52,77.34 +53888,189.74,78.41 +53889,193.61,75.261 +53890,191.93,76.276 +53891,190.18,77.306 +53892,188.37,78.35 +53893,192.33,75.278 +53894,190.62,76.267 +53895,188.85,77.27 +53896,187.01,78.29 +53897,191.05,75.295 +53898,189.31,76.257 +53899,187.51,77.235 +53900,185.64,78.228 +53901,189.76,75.314 +53902,188,76.249 +53903,186.18,77.199 +53904,184.28,78.166 +53905,188.48,75.333 +53906,186.69,76.24 +53907,184.84,77.163 +53908,182.92,78.103 +53909,187.19,75.353 +53910,185.38,76.232 +53911,183.51,77.127 +53912,181.56,78.039 +53913,185.9,75.373 +53914,184.07,76.224 +53915,182.17,77.09 +53916,180.2,77.975 +53917,184.61,75.395 +53918,182.76,76.216 +53919,180.84,77.054 +53920,178.84,77.909 +53921,183.32,75.417 +53922,181.45,76.208 +53923,179.5,77.017 +53924,177.49,77.844 +53925,182.03,75.439 +53926,180.13,76.201 +53927,178.17,76.98 +53928,176.13,77.777 +53929,180.73,75.462 +53930,178.82,76.194 +53931,176.84,76.942 +53932,174.78,77.71 +53933,179.44,75.486 +53934,177.51,76.187 +53935,175.51,76.905 +53936,173.43,77.642 +53937,178.14,75.51 +53938,176.19,76.18 +53939,174.18,76.867 +53940,172.08,77.574 +53941,176.84,75.535 +53942,174.88,76.173 +53943,172.85,76.829 +53944,170.73,77.505 +53945,175.54,75.56 +53946,173.57,76.167 +53947,171.52,76.791 +53948,169.38,77.435 +53949,174.24,75.586 +53950,172.25,76.16 +53951,170.19,76.753 +53952,168.04,77.365 +53953,172.94,75.612 +53954,170.94,76.154 +53955,168.86,76.715 +53956,166.7,77.295 +53957,171.64,75.639 +53958,169.62,76.148 +53959,167.53,76.676 +53960,165.36,77.224 +53961,170.33,75.666 +53962,168.3,76.142 +53963,166.2,76.638 +53964,164.02,77.153 +53965,169.02,75.693 +53966,166.99,76.137 +53967,164.87,76.599 +53968,162.68,77.081 +53969,167.71,75.721 +53970,165.67,76.131 +53971,163.55,76.56 +53972,161.34,77.009 +53973,166.4,75.749 +53974,164.35,76.126 +53975,162.22,76.521 +53976,160.01,76.937 +53977,165.09,75.777 +53978,163.03,76.12 +53979,160.9,76.482 +53980,158.67,76.864 +53981,163.78,75.806 +53982,161.71,76.115 +53983,159.57,76.443 +53984,157.34,76.791 +53985,162.46,75.834 +53986,160.39,76.11 +53987,158.25,76.404 +53988,156.01,76.718 +53989,161.15,75.863 +53990,159.07,76.105 +53991,156.92,76.364 +53992,154.69,76.644 +53993,159.83,75.893 +53994,157.75,76.1 +53995,155.6,76.325 +53996,153.36,76.57 +53997,158.51,75.922 +53998,156.43,76.095 +53999,154.28,76.286 +54000,152.04,76.496 +54001,157.19,75.951 +54002,155.11,76.09 +54003,152.96,76.246 +54004,150.71,76.422 +54005,155.86,75.981 +54006,153.79,76.085 +54007,151.63,76.207 +54008,149.39,76.348 +54009,154.54,76.01 +54010,152.47,76.08 +54011,150.31,76.167 +54012,148.07,76.274 +54013,153.21,76.04 +54014,151.14,76.075 +54015,148.99,76.127 +54016,146.75,76.199 +54017,151.89,76.07 +54018,149.82,76.07 +54019,147.67,76.088 +54020,145.44,76.125 +54021,150.56,76.099 +54022,148.49,76.066 +54023,146.35,76.048 +54024,144.12,76.05 +54025,149.23,76.129 +54026,147.17,76.061 +54027,145.03,76.009 +54028,142.81,75.976 +54029,147.89,76.159 +54030,145.84,76.056 +54031,143.72,75.969 +54032,141.5,75.901 +54033,146.56,76.188 +54034,144.52,76.051 +54035,142.4,75.93 +54036,140.19,75.827 +54037,145.22,76.217 +54038,143.19,76.046 +54039,141.08,75.89 +54040,138.89,75.753 +54041,143.89,76.247 +54042,141.87,76.041 +54043,139.77,75.851 +54044,137.58,75.679 +54045,142.55,76.276 +54046,140.54,76.036 +54047,138.45,75.812 +54048,136.28,75.605 +54049,141.21,76.304 +54050,139.21,76.031 +54051,137.13,75.773 +54052,134.97,75.531 +54053,139.87,76.333 +54054,137.88,76.026 +54055,135.82,75.733 +54056,133.67,75.457 +54057,138.52,76.361 +54058,136.55,76.021 +54059,134.51,75.694 +54060,132.37,75.384 +54061,137.18,76.389 +54062,135.22,76.016 +54063,133.19,75.655 +54064,131.08,75.311 +54065,135.83,76.417 +54066,133.89,76.01 +54067,131.88,75.616 +54068,129.78,75.238 +54069,134.49,76.444 +54070,132.56,76.005 +54071,130.57,75.578 +54072,128.49,75.165 +54073,133.14,76.471 +54074,131.23,75.999 +54075,129.26,75.539 +54076,127.2,75.093 +54077,131.79,76.498 +54078,129.9,75.993 +54079,127.94,75.5 +54080,125.9,75.022 +54081,130.43,76.524 +54082,128.57,75.987 +54083,126.63,75.462 +54084,124.62,74.95 +54085,129.08,76.55 +54086,127.24,75.981 +54087,125.32,75.424 +54088,123.33,74.879 +54089,127.73,76.575 +54090,125.9,75.975 +54091,124.01,75.386 +54092,122.04,74.809 +54093,126.37,76.6 +54094,124.57,75.969 +54095,122.7,75.348 +54096,120.76,74.739 +54097,125.01,76.624 +54098,123.24,75.963 +54099,121.39,75.31 +54100,119.47,74.669 +54101,123.65,76.648 +54102,121.9,75.956 +54103,120.09,75.273 +54104,118.19,74.6 +54105,122.29,76.671 +54106,120.57,75.949 +54107,118.78,75.235 +54108,116.91,74.532 +54109,120.93,76.694 +54110,119.23,75.942 +54111,117.47,75.198 +54112,115.63,74.464 +54113,119.57,76.716 +54114,117.9,75.935 +54115,116.16,75.161 +54116,114.36,74.397 +54117,118.2,76.737 +54118,116.56,75.927 +54119,114.86,75.124 +54120,113.08,74.33 +54121,116.84,76.758 +54122,115.23,75.92 +54123,113.55,75.088 +54124,111.81,74.265 +54125,115.47,76.778 +54126,113.89,75.912 +54127,112.25,75.052 +54128,110.53,74.199 +54129,114.1,76.797 +54130,112.55,75.904 +54131,110.94,75.016 +54132,109.26,74.135 +54133,112.73,76.816 +54134,111.22,75.895 +54135,109.64,74.98 +54136,107.99,74.071 +54137,111.36,76.834 +54138,109.88,75.887 +54139,108.33,74.944 +54140,106.72,74.008 +54141,109.99,76.851 +54142,108.54,75.878 +54143,107.03,74.909 +54144,105.45,73.946 +54145,108.62,76.867 +54146,107.2,75.869 +54147,105.73,74.874 +54148,104.19,73.884 +54149,107.24,76.883 +54150,105.86,75.86 +54151,104.42,74.839 +54152,102.92,73.824 +54153,105.87,76.898 +54154,104.52,75.85 +54155,103.12,74.805 +54156,101.66,73.764 +54157,104.49,76.911 +54158,103.18,75.84 +54159,101.82,74.771 +54160,100.39,73.705 +54161,103.12,76.924 +54162,101.84,75.83 +54163,100.52,74.737 +54164,99.131,73.647 +54165,101.74,76.937 +54166,100.5,75.819 +54167,99.215,74.703 +54168,97.87,73.59 +54169,100.36,76.948 +54170,99.162,75.809 +54171,97.914,74.67 +54172,96.61,73.534 +54173,98.978,76.958 +54174,97.821,75.798 +54175,96.613,74.637 +54176,95.35,73.479 +54177,97.597,76.968 +54178,96.48,75.786 +54179,95.313,74.604 +54180,94.092,73.424 +54181,96.215,76.976 +54182,95.139,75.774 +54183,94.013,74.572 +54184,92.835,73.371 +54185,94.832,76.984 +54186,93.797,75.762 +54187,92.713,74.54 +54188,91.578,73.319 +54189,93.448,76.99 +54190,92.455,75.75 +54191,91.414,74.508 +54192,90.323,73.267 +54193,92.064,76.996 +54194,91.112,75.737 +54195,90.115,74.477 +54196,89.068,73.217 +54197,90.678,77.001 +54198,89.77,75.724 +54199,88.816,74.446 +54200,87.814,73.168 +54201,89.292,77.004 +54202,88.427,75.711 +54203,87.517,74.416 +54204,86.561,73.12 +54205,87.905,77.007 +54206,87.084,75.697 +54207,86.219,74.385 +54208,85.309,73.073 +54209,86.517,77.008 +54210,85.74,75.683 +54211,84.921,74.356 +54212,84.057,73.027 +54213,85.129,77.009 +54214,84.397,75.669 +54215,83.623,74.326 +54216,82.806,72.982 +54217,83.74,77.008 +54218,83.053,75.654 +54219,82.326,74.297 +54220,81.555,72.938 +54221,82.351,77.006 +54222,81.709,75.639 +54223,81.028,74.268 +54224,80.306,72.895 +54225,80.96,77.003 +54226,80.365,75.624 +54227,79.731,74.24 +54228,79.056,72.854 +54229,79.57,77 +54230,79.021,75.608 +54231,78.434,74.212 +54232,77.807,72.813 +54233,78.179,76.995 +54234,77.677,75.592 +54235,77.138,74.184 +54236,76.559,72.774 +54237,76.787,76.989 +54238,76.332,75.575 +54239,75.841,74.157 +54240,75.311,72.736 +54241,75.395,76.981 +54242,74.988,75.558 +54243,74.545,74.13 +54244,74.064,72.699 +54245,74.002,76.973 +54246,73.643,75.541 +54247,73.248,74.104 +54248,72.816,72.663 +54249,72.609,76.964 +54250,72.298,75.523 +54251,71.952,74.078 +54252,71.569,72.629 +54253,71.216,76.953 +54254,70.953,75.505 +54255,70.656,74.052 +54256,70.323,72.596 +54257,69.823,76.941 +54258,69.608,75.487 +54259,69.36,74.027 +54260,69.076,72.564 +54261,68.429,76.928 +54262,68.263,75.468 +54263,68.064,74.002 +54264,67.83,72.533 +54265,67.035,76.914 +54266,66.918,75.448 +54267,66.768,73.978 +54268,66.584,72.503 +54269,65.641,76.899 +54270,65.573,75.429 +54271,65.473,73.953 +54272,65.338,72.474 +54273,64.246,76.883 +54274,64.228,75.409 +54275,64.177,73.93 +54276,64.093,72.447 +54277,62.852,76.865 +54278,62.883,75.388 +54279,62.881,73.907 +54280,62.847,72.421 +54281,61.457,76.846 +54282,61.538,75.368 +54283,61.586,73.884 +54284,61.601,72.396 +54285,60.063,76.826 +54286,60.193,75.346 +54287,60.29,73.861 +54288,60.355,72.373 +54289,58.668,76.805 +54290,58.848,75.325 +54291,58.995,73.839 +54292,59.109,72.35 +54293,57.274,76.783 +54294,57.502,75.303 +54295,57.699,73.818 +54296,57.864,72.329 +54297,55.879,76.76 +54298,56.157,75.28 +54299,56.403,73.796 +54300,56.617,72.309 +54301,54.485,76.735 +54302,54.812,75.258 +54303,55.108,73.776 +54304,55.371,72.291 +54305,53.091,76.709 +54306,53.467,75.234 +54307,53.812,73.755 +54308,54.125,72.273 +54309,51.696,76.683 +54310,52.123,75.211 +54311,52.516,73.735 +54312,52.878,72.257 +54313,50.303,76.654 +54314,50.778,75.187 +54315,51.22,73.716 +54316,51.631,72.242 +54317,48.909,76.625 +54318,49.433,75.163 +54319,49.924,73.696 +54320,50.383,72.228 +54321,47.516,76.595 +54322,48.089,75.138 +54323,48.628,73.678 +54324,49.136,72.215 +54325,46.123,76.563 +54326,46.745,75.113 +54327,47.332,73.659 +54328,47.887,72.204 +54329,44.73,76.53 +54330,45.4,75.087 +54331,46.036,73.641 +54332,46.639,72.194 +54333,43.338,76.497 +54334,44.056,75.061 +54335,44.739,73.624 +54336,45.39,72.185 +54337,41.946,76.462 +54338,42.712,75.035 +54339,43.443,73.606 +54340,44.14,72.177 +54341,40.555,76.426 +54342,41.369,75.009 +54343,42.146,73.59 +54344,42.89,72.17 +54345,39.164,76.388 +54346,40.025,74.982 +54347,40.849,73.573 +54348,41.639,72.164 +54349,37.774,76.35 +54350,38.682,74.954 +54351,39.552,73.557 +54352,40.387,72.16 +54353,36.384,76.31 +54354,37.339,74.926 +54355,38.255,73.541 +54356,39.135,72.157 +54357,34.995,76.27 +54358,35.996,74.898 +54359,36.957,73.526 +54360,37.883,72.155 +54361,33.607,76.228 +54362,34.654,74.87 +54363,35.66,73.511 +54364,36.629,72.154 +54365,32.219,76.185 +54366,33.311,74.841 +54367,34.362,73.497 +54368,35.375,72.154 +54369,30.832,76.142 +54370,31.969,74.812 +54371,33.064,73.483 +54372,34.12,72.155 +54373,29.446,76.097 +54374,30.627,74.782 +54375,31.765,73.469 +54376,32.864,72.157 +54377,28.061,76.051 +54378,29.286,74.752 +54379,30.466,73.455 +54380,31.607,72.161 +54381,26.676,76.004 +54382,27.945,74.722 +54383,29.168,73.442 +54384,30.349,72.165 +54385,25.292,75.956 +54386,26.604,74.691 +54387,27.868,73.429 +54388,29.091,72.17 +54389,23.91,75.907 +54390,25.263,74.66 +54391,26.569,73.417 +54392,27.831,72.177 +54393,22.528,75.857 +54394,23.923,74.629 +54395,25.269,73.405 +54396,26.571,72.184 +54397,21.147,75.806 +54398,22.583,74.598 +54399,23.969,73.393 +54400,25.309,72.193 +54401,19.767,75.754 +54402,21.244,74.566 +54403,22.668,73.382 +54404,24.047,72.202 +54405,18.388,75.701 +54406,19.905,74.534 +54407,21.367,73.371 +54408,22.783,72.213 +54409,17.011,75.647 +54410,18.566,74.501 +54411,20.066,73.36 +54412,21.518,72.224 +54413,15.634,75.593 +54414,17.228,74.468 +54415,18.765,73.349 +54416,20.253,72.236 +54417,14.259,75.537 +54418,15.89,74.435 +54419,17.463,73.339 +54420,18.986,72.249 +54421,12.884,75.481 +54422,14.552,74.402 +54423,16.16,73.329 +54424,17.717,72.263 +54425,11.511,75.423 +54426,13.215,74.368 +54427,14.858,73.32 +54428,16.448,72.278 +54429,10.139,75.365 +54430,11.878,74.334 +54431,13.555,73.31 +54432,15.178,72.294 +54433,8.7689,75.306 +54434,10.542,74.3 +54435,12.251,73.301 +54436,13.906,72.311 +54437,7.3996,75.246 +54438,9.206,74.265 +54439,10.947,73.292 +54440,12.633,72.328 +54441,6.0316,75.186 +54442,7.8706,74.23 +54443,9.643,73.284 +54444,11.358,72.346 +54445,4.6649,75.124 +54446,6.5357,74.195 +54447,8.3383,73.276 +54448,10.082,72.365 +54449,3.2996,75.062 +54450,5.2012,74.16 +54451,7.0332,73.268 +54452,8.8053,72.384 +54453,1.9357,74.999 +54454,3.8672,74.125 +54455,5.7276,73.26 +54456,7.5269,72.405 +54457,0.57329,74.936 +54458,2.5337,74.089 +54459,4.4215,73.252 +54460,6.2471,72.426 +54461,359.21,74.871 +54462,1.2007,74.053 +54463,3.1151,73.245 +54464,4.9659,72.447 +54465,357.85,74.806 +54466,359.87,74.017 +54467,1.8081,73.238 +54468,3.6832,72.47 +54469,356.49,74.741 +54470,358.54,73.98 +54471,0.50068,73.231 +54472,2.3992,72.493 +54473,355.14,74.675 +54474,357.2,73.944 +54475,359.19,73.224 +54476,1.1137,72.516 +54477,353.78,74.608 +54478,355.87,73.907 +54479,357.88,73.218 +54480,359.83,72.54 +54481,352.43,74.541 +54482,354.54,73.87 +54483,356.58,73.212 +54484,358.54,72.565 +54485,351.08,74.473 +54486,353.21,73.833 +54487,355.27,73.205 +54488,357.25,72.59 +54489,349.73,74.404 +54490,351.88,73.796 +54491,353.96,73.2 +54492,355.96,72.616 +54493,348.38,74.336 +54494,350.56,73.758 +54495,352.65,73.194 +54496,354.66,72.642 +54497,347.03,74.266 +54498,349.23,73.721 +54499,351.34,73.188 +54500,353.37,72.668 +54501,345.69,74.196 +54502,347.9,73.683 +54503,350.02,73.183 +54504,352.07,72.695 +54505,344.34,74.126 +54506,346.57,73.645 +54507,348.71,73.177 +54508,350.78,72.722 +54509,343,74.056 +54510,345.25,73.607 +54511,347.4,73.172 +54512,349.48,72.75 +54513,341.66,73.985 +54514,343.92,73.569 +54515,346.09,73.167 +54516,348.18,72.778 +54517,340.32,73.913 +54518,342.59,73.531 +54519,344.77,73.162 +54520,346.87,72.806 +54521,338.99,73.842 +54522,341.27,73.492 +54523,343.46,73.157 +54524,345.57,72.835 +54525,337.65,73.77 +54526,339.94,73.454 +54527,342.14,73.152 +54528,344.26,72.863 +54529,336.32,73.698 +54530,338.62,73.415 +54531,340.83,73.147 +54532,342.96,72.892 +54533,334.99,73.625 +54534,337.3,73.377 +54535,339.51,73.143 +54536,341.65,72.922 +54537,333.66,73.553 +54538,335.97,73.338 +54539,338.2,73.138 +54540,340.34,72.951 +54541,332.33,73.48 +54542,334.65,73.299 +54543,336.88,73.133 +54544,339.02,72.981 +54545,331,73.407 +54546,333.33,73.261 +54547,335.56,73.129 +54548,337.71,73.01 +54549,329.68,73.334 +54550,332.01,73.222 +54551,334.25,73.124 +54552,336.4,73.04 +54553,328.35,73.261 +54554,330.69,73.183 +54555,332.93,73.12 +54556,335.08,73.07 +54557,327.03,73.187 +54558,329.37,73.144 +54559,331.61,73.115 +54560,333.76,73.099 +54561,325.71,73.114 +54562,328.05,73.105 +54563,330.29,73.111 +54564,332.44,73.129 +54565,324.4,73.041 +54566,326.73,73.067 +54567,328.97,73.107 +54568,331.12,73.159 +54569,323.08,72.968 +54570,325.42,73.028 +54571,327.65,73.102 +54572,329.79,73.189 +54573,321.77,72.894 +54574,324.1,72.989 +54575,326.33,73.098 +54576,328.47,73.218 +54577,320.45,72.821 +54578,322.78,72.95 +54579,325.01,73.093 +54580,327.14,73.248 +54581,319.14,72.748 +54582,321.47,72.912 +54583,323.68,73.089 +54584,325.81,73.277 +54585,317.84,72.675 +54586,320.15,72.873 +54587,322.36,73.084 +54588,324.48,73.306 +54589,316.53,72.602 +54590,318.84,72.834 +54591,321.04,73.079 +54592,323.15,73.335 +54593,315.22,72.53 +54594,317.52,72.796 +54595,319.72,73.075 +54596,321.82,73.364 +54597,313.92,72.457 +54598,316.21,72.757 +54599,318.39,73.07 +54600,320.49,73.393 +54601,312.62,72.385 +54602,314.89,72.719 +54603,317.07,73.065 +54604,319.15,73.421 +54605,311.32,72.313 +54606,313.58,72.68 +54607,315.74,73.06 +54608,317.81,73.449 +54609,310.02,72.242 +54610,312.27,72.642 +54611,314.41,73.055 +54612,316.47,73.477 +54613,308.73,72.17 +54614,310.96,72.604 +54615,313.09,73.05 +54616,315.13,73.504 +54617,307.43,72.099 +54618,309.65,72.566 +54619,311.76,73.044 +54620,313.79,73.531 +54621,306.14,72.029 +54622,308.34,72.528 +54623,310.43,73.039 +54624,312.44,73.558 +54625,304.85,71.959 +54626,307.03,72.491 +54627,309.11,73.033 +54628,311.1,73.584 +54629,303.56,71.889 +54630,305.72,72.453 +54631,307.78,73.027 +54632,309.75,73.609 +54633,302.27,71.819 +54634,304.41,72.416 +54635,306.45,73.022 +54636,308.4,73.635 +54637,300.99,71.751 +54638,303.1,72.379 +54639,305.12,73.015 +54640,307.05,73.659 +54641,299.7,71.682 +54642,301.79,72.341 +54643,303.79,73.009 +54644,305.7,73.684 +54645,298.42,71.615 +54646,300.49,72.305 +54647,302.46,73.003 +54648,304.35,73.707 +54649,297.14,71.547 +54650,299.18,72.268 +54651,301.13,72.996 +54652,302.99,73.73 +54653,295.86,71.481 +54654,297.87,72.231 +54655,299.8,72.989 +54656,301.64,73.753 +54657,294.58,71.415 +54658,296.57,72.195 +54659,298.47,72.982 +54660,300.28,73.774 +54661,293.31,71.349 +54662,295.26,72.159 +54663,297.13,72.975 +54664,298.92,73.796 +54665,292.03,71.284 +54666,293.96,72.123 +54667,295.8,72.968 +54668,297.56,73.816 +54669,290.76,71.22 +54670,292.66,72.087 +54671,294.47,72.96 +54672,296.2,73.836 +54673,289.49,71.157 +54674,291.35,72.052 +54675,293.13,72.952 +54676,294.83,73.855 +54677,288.21,71.094 +54678,290.05,72.017 +54679,291.8,72.944 +54680,293.47,73.874 +54681,286.95,71.032 +54682,288.75,71.982 +54683,290.46,72.936 +54684,292.1,73.891 +54685,285.68,70.971 +54686,287.45,71.947 +54687,289.13,72.927 +54688,290.74,73.908 +54689,284.41,70.911 +54690,286.14,71.913 +54691,287.79,72.918 +54692,289.37,73.924 +54693,283.15,70.851 +54694,284.84,71.879 +54695,286.46,72.909 +54696,288,73.939 +54697,281.88,70.793 +54698,283.54,71.845 +54699,285.12,72.899 +54700,286.63,73.954 +54701,280.62,70.735 +54702,282.24,71.812 +54703,283.79,72.89 +54704,285.26,73.968 +54705,279.36,70.678 +54706,280.94,71.778 +54707,282.45,72.88 +54708,283.88,73.98 +54709,278.1,70.622 +54710,279.64,71.745 +54711,281.11,72.869 +54712,282.51,73.992 +54713,276.84,70.567 +54714,278.34,71.713 +54715,279.77,72.859 +54716,281.13,74.003 +54717,275.58,70.513 +54718,277.05,71.68 +54719,278.44,72.848 +54720,279.76,74.013 +54721,274.33,70.459 +54722,275.75,71.648 +54723,277.1,72.837 +54724,278.38,74.022 +54725,273.07,70.407 +54726,274.45,71.617 +54727,275.76,72.825 +54728,277,74.03 +54729,271.82,70.356 +54730,273.15,71.585 +54731,274.42,72.813 +54732,275.62,74.037 +54733,270.56,70.305 +54734,271.86,71.554 +54735,273.08,72.801 +54736,274.24,74.044 +54737,269.31,70.256 +54738,270.56,71.523 +54739,271.74,72.788 +54740,272.86,74.049 +54741,268.06,70.208 +54742,269.26,71.493 +54743,270.4,72.775 +54744,271.48,74.053 +54745,266.81,70.161 +54746,267.97,71.463 +54747,269.06,72.762 +54748,270.1,74.056 +54749,265.56,70.115 +54750,266.67,71.433 +54751,267.72,72.749 +54752,268.71,74.058 +54753,264.31,70.07 +54754,265.37,71.404 +54755,266.38,72.735 +54756,267.33,74.059 +54757,263.06,70.026 +54758,264.08,71.375 +54759,265.04,72.72 +54760,265.94,74.059 +54761,261.82,69.983 +54762,262.78,71.346 +54763,263.7,72.706 +54764,264.56,74.058 +54765,260.57,69.941 +54766,261.49,71.318 +54767,262.35,72.691 +54768,263.17,74.056 +54769,259.33,69.9 +54770,260.2,71.29 +54771,261.01,72.675 +54772,261.78,74.053 +54773,258.08,69.861 +54774,258.9,71.263 +54775,259.67,72.659 +54776,260.39,74.049 +54777,256.84,69.823 +54778,257.61,71.236 +54779,258.33,72.643 +54780,259,74.043 +54781,255.59,69.785 +54782,256.31,71.209 +54783,256.99,72.627 +54784,257.61,74.037 +54785,254.35,69.749 +54786,255.02,71.183 +54787,255.64,72.61 +54788,256.22,74.029 +54789,253.11,69.715 +54790,253.73,71.157 +54791,254.3,72.593 +54792,254.83,74.02 +54793,251.86,69.681 +54794,252.43,71.131 +54795,252.96,72.575 +54796,253.44,74.01 +54797,250.62,69.648 +54798,251.14,71.106 +54799,251.62,72.557 +54800,252.05,73.999 +54801,249.38,69.617 +54802,249.85,71.081 +54803,250.27,72.538 +54804,250.66,73.987 +54805,248.14,69.587 +54806,248.55,71.057 +54807,248.93,72.52 +54808,249.27,73.974 +54809,246.9,69.558 +54810,247.26,71.033 +54811,247.59,72.5 +54812,247.87,73.959 +54813,245.66,69.531 +54814,245.97,71.009 +54815,246.24,72.481 +54816,246.48,73.943 +54817,244.42,69.504 +54818,244.68,70.986 +54819,244.9,72.461 +54820,245.09,73.926 +54821,243.17,69.479 +54822,243.38,70.963 +54823,243.56,72.44 +54824,243.69,73.908 +54825,241.93,69.455 +54826,242.09,70.941 +54827,242.21,72.419 +54828,242.3,73.889 +54829,240.69,69.432 +54830,240.8,70.919 +54831,240.87,72.398 +54832,240.9,73.868 +54833,239.45,69.411 +54834,239.51,70.897 +54835,239.53,72.377 +54836,239.51,73.847 +54837,238.21,69.39 +54838,238.21,70.876 +54839,238.18,72.355 +54840,238.12,73.824 +54841,236.97,69.371 +54842,236.92,70.855 +54843,236.84,72.332 +54844,236.72,73.8 +54845,235.73,69.353 +54846,235.63,70.835 +54847,235.49,72.309 +54848,235.33,73.775 +54849,234.49,69.337 +54850,234.34,70.815 +54851,234.15,72.286 +54852,233.93,73.749 +54853,233.25,69.321 +54854,233.05,70.795 +54855,232.81,72.263 +54856,232.54,73.721 +54857,232.01,69.307 +54858,231.75,70.776 +54859,231.46,72.239 +54860,231.14,73.692 +54861,230.77,69.294 +54862,230.46,70.757 +54863,230.12,72.214 +54864,229.75,73.663 +54865,229.53,69.282 +54866,229.17,70.739 +54867,228.78,72.189 +54868,228.36,73.632 +54869,228.29,69.271 +54870,227.88,70.721 +54871,227.43,72.164 +54872,226.96,73.6 +54873,227.05,69.262 +54874,226.58,70.703 +54875,226.09,72.139 +54876,225.57,73.566 +54877,225.8,69.253 +54878,225.29,70.686 +54879,224.75,72.113 +54880,224.17,73.532 +54881,224.56,69.246 +54882,224,70.669 +54883,223.41,72.086 +54884,222.78,73.496 +54885,223.32,69.24 +54886,222.7,70.653 +54887,222.06,72.06 +54888,221.39,73.459 +54889,222.07,69.235 +54890,221.41,70.637 +54891,220.72,72.033 +54892,220,73.422 +54893,220.83,69.232 +54894,220.12,70.621 +54895,219.38,72.005 +54896,218.6,73.383 +54897,219.58,69.229 +54898,218.82,70.606 +54899,218.04,71.977 +54900,217.21,73.343 +54901,218.34,69.228 +54902,217.53,70.591 +54903,216.69,71.949 +54904,215.82,73.301 +54905,217.09,69.227 +54906,216.24,70.576 +54907,215.35,71.921 +54908,214.43,73.259 +54909,215.84,69.228 +54910,214.94,70.562 +54911,214.01,71.892 +54912,213.04,73.216 +54913,214.6,69.23 +54914,213.65,70.548 +54915,212.67,71.862 +54916,211.65,73.171 +54917,213.35,69.233 +54918,212.35,70.534 +54919,211.33,71.833 +54920,210.26,73.126 +54921,212.1,69.237 +54922,211.06,70.521 +54923,209.99,71.803 +54924,208.88,73.08 +54925,210.85,69.242 +54926,209.77,70.508 +54927,208.65,71.772 +54928,207.49,73.032 +54929,209.6,69.248 +54930,208.47,70.496 +54931,207.31,71.742 +54932,206.1,72.983 +54933,208.35,69.255 +54934,207.17,70.484 +54935,205.97,71.71 +54936,204.72,72.934 +54937,207.09,69.263 +54938,205.88,70.472 +54939,204.63,71.679 +54940,203.33,72.883 +54941,205.84,69.272 +54942,204.58,70.46 +54943,203.29,71.647 +54944,201.95,72.832 +54945,204.59,69.282 +54946,203.29,70.449 +54947,201.95,71.615 +54948,200.57,72.779 +54949,203.33,69.293 +54950,201.99,70.438 +54951,200.61,71.583 +54952,199.18,72.726 +54953,202.07,69.305 +54954,200.69,70.428 +54955,199.27,71.55 +54956,197.8,72.672 +54957,200.81,69.318 +54958,199.39,70.418 +54959,197.93,71.517 +54960,196.42,72.616 +54961,199.56,69.332 +54962,198.1,70.408 +54963,196.6,71.484 +54964,195.04,72.56 +54965,198.3,69.346 +54966,196.8,70.398 +54967,195.26,71.451 +54968,193.67,72.503 +54969,197.03,69.362 +54970,195.5,70.389 +54971,193.92,71.417 +54972,192.29,72.445 +54973,195.77,69.378 +54974,194.2,70.379 +54975,192.58,71.383 +54976,190.91,72.386 +54977,194.51,69.395 +54978,192.9,70.371 +54979,191.25,71.348 +54980,189.54,72.327 +54981,193.24,69.413 +54982,191.6,70.362 +54983,189.91,71.314 +54984,188.17,72.267 +54985,191.98,69.432 +54986,190.3,70.354 +54987,188.58,71.279 +54988,186.79,72.205 +54989,190.71,69.451 +54990,189,70.346 +54991,187.24,71.243 +54992,185.42,72.143 +54993,189.44,69.471 +54994,187.7,70.338 +54995,185.91,71.208 +54996,184.05,72.081 +54997,188.17,69.492 +54998,186.4,70.33 +54999,184.58,71.172 +55000,182.69,72.017 +55001,186.9,69.513 +55002,185.1,70.323 +55003,183.24,71.136 +55004,181.32,71.953 +55005,185.62,69.536 +55006,183.8,70.316 +55007,181.91,71.1 +55008,179.95,71.889 +55009,184.35,69.558 +55010,182.49,70.309 +55011,180.58,71.064 +55012,178.59,71.823 +55013,183.07,69.582 +55014,181.19,70.302 +55015,179.24,71.027 +55016,177.23,71.757 +55017,181.8,69.606 +55018,179.89,70.295 +55019,177.91,70.991 +55020,175.87,71.691 +55021,180.52,69.63 +55022,178.58,70.289 +55023,176.58,70.954 +55024,174.51,71.623 +55025,179.24,69.655 +55026,177.28,70.283 +55027,175.25,70.916 +55028,173.15,71.556 +55029,177.95,69.681 +55030,175.97,70.277 +55031,173.92,70.879 +55032,171.79,71.487 +55033,176.67,69.706 +55034,174.67,70.271 +55035,172.59,70.842 +55036,170.44,71.418 +55037,175.39,69.733 +55038,173.36,70.265 +55039,171.26,70.804 +55040,169.08,71.349 +55041,174.1,69.76 +55042,172.05,70.26 +55043,169.94,70.766 +55044,167.73,71.279 +55045,172.81,69.787 +55046,170.75,70.254 +55047,168.61,70.728 +55048,166.38,71.209 +55049,171.52,69.815 +55050,169.44,70.249 +55051,167.28,70.69 +55052,165.03,71.138 +55053,170.23,69.843 +55054,168.13,70.244 +55055,165.96,70.652 +55056,163.69,71.067 +55057,168.94,69.871 +55058,166.82,70.239 +55059,164.63,70.614 +55060,162.34,70.996 +55061,167.64,69.899 +55062,165.51,70.234 +55063,163.3,70.575 +55064,161,70.924 +55065,166.35,69.928 +55066,164.2,70.229 +55067,161.98,70.537 +55068,159.66,70.852 +55069,165.05,69.957 +55070,162.89,70.224 +55071,160.65,70.498 +55072,158.32,70.78 +55073,163.75,69.987 +55074,161.58,70.219 +55075,159.33,70.459 +55076,156.98,70.707 +55077,162.45,70.016 +55078,160.27,70.214 +55079,158.01,70.42 +55080,155.64,70.635 +55081,161.15,70.046 +55082,158.96,70.21 +55083,156.69,70.382 +55084,154.31,70.562 +55085,159.84,70.075 +55086,157.65,70.205 +55087,155.36,70.343 +55088,152.98,70.488 +55089,158.53,70.105 +55090,156.33,70.2 +55091,154.04,70.304 +55092,151.65,70.415 +55093,157.23,70.135 +55094,155.02,70.196 +55095,152.72,70.265 +55096,150.32,70.342 +55097,155.92,70.165 +55098,153.71,70.191 +55099,151.4,70.226 +55100,148.99,70.268 +55101,154.61,70.195 +55102,152.39,70.187 +55103,150.08,70.187 +55104,147.66,70.195 +55105,153.29,70.225 +55106,151.08,70.182 +55107,148.76,70.148 +55108,146.34,70.121 +55109,151.98,70.255 +55110,149.76,70.178 +55111,147.45,70.108 +55112,145.02,70.047 +55113,150.66,70.284 +55114,148.44,70.173 +55115,146.13,70.069 +55116,143.7,69.974 +55117,149.34,70.314 +55118,147.13,70.169 +55119,144.81,70.03 +55120,142.38,69.9 +55121,148.03,70.344 +55122,145.81,70.164 +55123,143.49,69.991 +55124,141.07,69.827 +55125,146.7,70.373 +55126,144.49,70.159 +55127,142.18,69.952 +55128,139.75,69.753 +55129,145.38,70.402 +55130,143.17,70.155 +55131,140.86,69.913 +55132,138.44,69.68 +55133,144.06,70.431 +55134,141.85,70.15 +55135,139.55,69.875 +55136,137.13,69.607 +55137,142.73,70.46 +55138,140.53,70.145 +55139,138.23,69.836 +55140,135.82,69.534 +55141,141.4,70.489 +55142,139.21,70.14 +55143,136.92,69.797 +55144,134.51,69.462 +55145,140.07,70.517 +55146,137.89,70.135 +55147,135.61,69.758 +55148,133.21,69.389 +55149,138.74,70.545 +55150,136.57,70.13 +55151,134.3,69.72 +55152,131.91,69.317 +55153,137.41,70.572 +55154,135.25,70.124 +55155,132.99,69.681 +55156,130.6,69.245 +55157,136.07,70.599 +55158,133.93,70.119 +55159,131.67,69.643 +55160,129.3,69.174 +55161,134.74,70.626 +55162,132.6,70.113 +55163,130.36,69.605 +55164,128.01,69.102 +55165,133.4,70.653 +55166,131.28,70.108 +55167,129.05,69.567 +55168,126.71,69.032 +55169,132.06,70.679 +55170,129.95,70.102 +55171,127.75,69.529 +55172,125.42,68.961 +55173,130.72,70.704 +55174,128.63,70.096 +55175,126.44,69.491 +55176,124.13,68.891 +55177,129.38,70.729 +55178,127.3,70.09 +55179,125.13,69.453 +55180,122.84,68.822 +55181,128.03,70.753 +55182,125.98,70.083 +55183,123.82,69.416 +55184,121.55,68.753 +55185,126.69,70.777 +55186,124.65,70.077 +55187,122.51,69.379 +55188,120.26,68.684 +55189,125.34,70.801 +55190,123.33,70.07 +55191,121.21,69.341 +55192,118.98,68.616 +55193,123.99,70.823 +55194,122,70.063 +55195,119.9,69.304 +55196,117.69,68.549 +55197,122.64,70.845 +55198,120.67,70.056 +55199,118.6,69.268 +55200,116.41,68.482 +55201,121.29,70.867 +55202,119.34,70.049 +55203,117.29,69.231 +55204,115.13,68.416 +55205,119.94,70.888 +55206,118.01,70.041 +55207,115.99,69.195 +55208,113.85,68.35 +55209,118.58,70.908 +55210,116.68,70.033 +55211,114.69,69.159 +55212,112.58,68.285 +55213,117.23,70.927 +55214,115.35,70.025 +55215,113.38,69.123 +55216,111.3,68.221 +55217,115.87,70.946 +55218,114.02,70.017 +55219,112.08,69.087 +55220,110.03,68.158 +55221,114.51,70.964 +55222,112.69,70.008 +55223,110.78,69.052 +55224,108.76,68.095 +55225,113.15,70.981 +55226,111.36,70 +55227,109.48,69.016 +55228,107.49,68.033 +55229,111.79,70.997 +55230,110.03,69.991 +55231,108.18,68.981 +55232,106.22,67.972 +55233,110.42,71.013 +55234,108.7,69.981 +55235,106.88,68.947 +55236,104.95,67.911 +55237,109.06,71.027 +55238,107.36,69.972 +55239,105.58,68.912 +55240,103.69,67.852 +55241,107.69,71.041 +55242,106.03,69.962 +55243,104.28,68.878 +55244,102.42,67.793 +55245,106.33,71.054 +55246,104.7,69.951 +55247,102.98,68.844 +55248,101.16,67.735 +55249,104.96,71.066 +55250,103.36,69.941 +55251,101.68,68.811 +55252,99.899,67.678 +55253,103.59,71.077 +55254,102.03,69.93 +55255,100.38,68.778 +55256,98.639,67.622 +55257,102.22,71.088 +55258,100.69,69.919 +55259,99.085,68.745 +55260,97.381,67.567 +55261,100.85,71.097 +55262,99.359,69.908 +55263,97.788,68.712 +55264,96.124,67.513 +55265,99.473,71.105 +55266,98.023,69.896 +55267,96.492,68.68 +55268,94.868,67.459 +55269,98.098,71.113 +55270,96.687,69.884 +55271,95.195,68.648 +55272,93.613,67.407 +55273,96.723,71.119 +55274,95.351,69.871 +55275,93.9,68.616 +55276,92.36,67.356 +55277,95.346,71.124 +55278,94.014,69.858 +55279,92.604,68.585 +55280,91.108,67.305 +55281,93.969,71.129 +55282,92.677,69.845 +55283,91.309,68.554 +55284,89.857,67.256 +55285,92.59,71.132 +55286,91.34,69.832 +55287,90.015,68.523 +55288,88.607,67.208 +55289,91.211,71.134 +55290,90.002,69.818 +55291,88.72,68.493 +55292,87.358,67.161 +55293,89.83,71.136 +55294,88.664,69.804 +55295,87.427,68.463 +55296,86.111,67.115 +55297,88.449,71.136 +55298,87.326,69.789 +55299,86.133,68.433 +55300,84.864,67.07 +55301,87.067,71.135 +55302,85.987,69.774 +55303,84.84,68.404 +55304,83.618,67.026 +55305,85.683,71.133 +55306,84.648,69.759 +55307,83.547,68.375 +55308,82.373,66.983 +55309,84.299,71.13 +55310,83.309,69.743 +55311,82.254,68.347 +55312,81.129,66.941 +55313,82.914,71.125 +55314,81.97,69.727 +55315,80.962,68.318 +55316,79.886,66.901 +55317,81.529,71.12 +55318,80.63,69.711 +55319,79.67,68.291 +55320,78.644,66.861 +55321,80.142,71.113 +55322,79.29,69.694 +55323,78.378,68.263 +55324,77.402,66.823 +55325,78.755,71.106 +55326,77.95,69.677 +55327,77.087,68.236 +55328,76.161,66.786 +55329,77.367,71.097 +55330,76.609,69.659 +55331,75.796,68.21 +55332,74.921,66.75 +55333,75.979,71.087 +55334,75.269,69.641 +55335,74.505,68.183 +55336,73.682,66.715 +55337,74.589,71.076 +55338,73.928,69.623 +55339,73.214,68.158 +55340,72.443,66.682 +55341,73.2,71.063 +55342,72.587,69.604 +55343,71.923,68.132 +55344,71.205,66.65 +55345,71.809,71.05 +55346,71.246,69.585 +55347,70.633,68.107 +55348,69.967,66.618 +55349,70.419,71.035 +55350,69.905,69.565 +55351,69.343,68.082 +55352,68.729,66.589 +55353,69.027,71.019 +55354,68.563,69.545 +55355,68.053,68.058 +55356,67.493,66.56 +55357,67.635,71.002 +55358,67.222,69.524 +55359,66.763,68.034 +55360,66.256,66.532 +55361,66.243,70.984 +55362,65.88,69.504 +55363,65.473,68.011 +55364,65.02,66.506 +55365,64.851,70.964 +55366,64.538,69.482 +55367,64.183,67.987 +55368,63.784,66.481 +55369,63.458,70.944 +55370,63.196,69.461 +55371,62.894,67.965 +55372,62.548,66.457 +55373,62.065,70.922 +55374,61.854,69.439 +55375,61.604,67.942 +55376,61.313,66.435 +55377,60.671,70.899 +55378,60.512,69.416 +55379,60.315,67.921 +55380,60.078,66.413 +55381,59.277,70.875 +55382,59.17,69.393 +55383,59.026,67.899 +55384,58.843,66.393 +55385,57.883,70.849 +55386,57.828,69.37 +55387,57.737,67.878 +55388,57.608,66.374 +55389,56.489,70.822 +55390,56.486,69.346 +55391,56.448,67.857 +55392,56.373,66.357 +55393,55.095,70.795 +55394,55.144,69.322 +55395,55.158,67.837 +55396,55.138,66.34 +55397,53.701,70.766 +55398,53.802,69.298 +55399,53.869,67.817 +55400,53.903,66.325 +55401,52.306,70.735 +55402,52.459,69.273 +55403,52.58,67.798 +55404,52.668,66.311 +55405,50.912,70.704 +55406,51.117,69.247 +55407,51.291,67.778 +55408,51.433,66.298 +55409,49.518,70.671 +55410,49.775,69.222 +55411,50.002,67.76 +55412,50.197,66.287 +55413,48.123,70.638 +55414,48.433,69.196 +55415,48.713,67.741 +55416,48.962,66.276 +55417,46.729,70.603 +55418,47.091,69.169 +55419,47.424,67.723 +55420,47.726,66.267 +55421,45.335,70.566 +55422,45.749,69.142 +55423,46.134,67.706 +55424,46.49,66.259 +55425,43.941,70.529 +55426,44.407,69.115 +55427,44.845,67.689 +55428,45.254,66.252 +55429,42.548,70.491 +55430,43.066,69.087 +55431,43.555,67.672 +55432,44.017,66.246 +55433,41.154,70.451 +55434,41.724,69.059 +55435,42.266,67.655 +55436,42.779,66.242 +55437,39.761,70.41 +55438,40.383,69.03 +55439,40.976,67.639 +55440,41.542,66.238 +55441,38.369,70.369 +55442,39.041,69.002 +55443,39.686,67.624 +55444,40.304,66.236 +55445,36.976,70.326 +55446,37.7,68.972 +55447,38.396,67.608 +55448,39.065,66.235 +55449,35.584,70.282 +55450,36.359,68.943 +55451,37.106,67.593 +55452,37.826,66.235 +55453,34.193,70.236 +55454,35.019,68.913 +55455,35.816,67.579 +55456,36.586,66.236 +55457,32.802,70.19 +55458,33.678,68.882 +55459,34.525,67.565 +55460,35.345,66.238 +55461,31.411,70.143 +55462,32.338,68.852 +55463,33.235,67.551 +55464,34.104,66.242 +55465,30.021,70.095 +55466,30.997,68.82 +55467,31.944,67.537 +55468,32.862,66.246 +55469,28.632,70.045 +55470,29.658,68.789 +55471,30.653,67.524 +55472,31.619,66.251 +55473,27.243,69.995 +55474,28.318,68.757 +55475,29.361,67.511 +55476,30.376,66.258 +55477,25.855,69.943 +55478,26.978,68.725 +55479,28.07,67.499 +55480,29.131,66.265 +55481,24.468,69.891 +55482,25.639,68.692 +55483,26.778,67.486 +55484,27.886,66.274 +55485,23.081,69.837 +55486,24.3,68.66 +55487,25.486,67.474 +55488,26.64,66.283 +55489,21.696,69.783 +55490,22.962,68.626 +55491,24.193,67.463 +55492,25.393,66.294 +55493,20.311,69.727 +55494,21.624,68.593 +55495,22.9,67.452 +55496,24.144,66.305 +55497,18.927,69.671 +55498,20.286,68.559 +55499,21.607,67.441 +55500,22.895,66.317 +55501,17.543,69.614 +55502,18.948,68.525 +55503,20.314,67.43 +55504,21.645,66.33 +55505,16.161,69.556 +55506,17.611,68.491 +55507,19.02,67.42 +55508,20.394,66.344 +55509,14.78,69.497 +55510,16.274,68.456 +55511,17.726,67.41 +55512,19.141,66.359 +55513,13.4,69.437 +55514,14.937,68.421 +55515,16.432,67.4 +55516,17.888,66.375 +55517,12.02,69.376 +55518,13.601,68.385 +55519,15.137,67.39 +55520,16.633,66.392 +55521,10.642,69.314 +55522,12.266,68.35 +55523,13.842,67.381 +55524,15.377,66.409 +55525,9.2653,69.252 +55526,10.93,68.314 +55527,12.547,67.372 +55528,14.12,66.428 +55529,7.8894,69.189 +55530,9.5952,68.278 +55531,11.251,67.363 +55532,12.862,66.447 +55533,6.5147,69.125 +55534,8.2607,68.241 +55535,9.9544,67.355 +55536,11.602,66.466 +55537,5.1412,69.06 +55538,6.9266,68.205 +55539,8.6577,67.346 +55540,10.341,66.487 +55541,3.769,68.994 +55542,5.5929,68.168 +55543,7.3606,67.338 +55544,9.0792,66.508 +55545,2.398,68.928 +55546,4.2597,68.131 +55547,6.0631,67.331 +55548,7.8156,66.53 +55549,1.0284,68.861 +55550,2.927,68.093 +55551,4.7651,67.323 +55552,6.5506,66.552 +55553,359.66,68.794 +55554,1.5947,68.056 +55555,3.4666,67.316 +55556,5.2842,66.575 +55557,358.29,68.726 +55558,0.26289,68.018 +55559,2.1678,67.308 +55560,4.0163,66.599 +55561,356.93,68.657 +55562,358.93,67.98 +55563,0.8684,67.301 +55564,2.747,66.623 +55565,355.56,68.588 +55566,357.6,67.941 +55567,359.57,67.294 +55568,1.4763,66.648 +55569,354.2,68.518 +55570,356.27,67.903 +55571,358.27,67.288 +55572,0.20403,66.673 +55573,352.84,68.447 +55574,354.94,67.864 +55575,356.97,67.281 +55576,358.93,66.699 +55577,351.48,68.376 +55578,353.61,67.826 +55579,355.67,67.275 +55580,357.65,66.725 +55581,350.12,68.305 +55582,352.28,67.787 +55583,354.36,67.269 +55584,356.38,66.752 +55585,348.77,68.233 +55586,350.95,67.747 +55587,353.06,67.263 +55588,355.1,66.779 +55589,347.41,68.16 +55590,349.63,67.708 +55591,351.76,67.257 +55592,353.82,66.806 +55593,346.06,68.088 +55594,348.3,67.669 +55595,350.46,67.251 +55596,352.54,66.834 +55597,344.71,68.015 +55598,346.97,67.629 +55599,349.15,67.245 +55600,351.26,66.862 +55601,343.36,67.941 +55602,345.65,67.59 +55603,347.85,67.239 +55604,349.97,66.891 +55605,342.01,67.867 +55606,344.32,67.55 +55607,346.54,67.234 +55608,348.68,66.92 +55609,340.66,67.793 +55610,343,67.51 +55611,345.24,67.228 +55612,347.4,66.949 +55613,339.32,67.719 +55614,341.67,67.47 +55615,343.93,67.223 +55616,346.11,66.978 +55617,337.97,67.644 +55618,340.35,67.43 +55619,342.62,67.218 +55620,344.81,67.007 +55621,336.63,67.569 +55622,339.03,67.39 +55623,341.32,67.212 +55624,343.52,67.037 +55625,335.29,67.494 +55626,337.7,67.35 +55627,340.01,67.207 +55628,342.23,67.067 +55629,333.95,67.419 +55630,336.38,67.309 +55631,338.7,67.202 +55632,340.93,67.096 +55633,332.62,67.343 +55634,335.06,67.269 +55635,337.39,67.197 +55636,339.63,67.126 +55637,331.28,67.268 +55638,333.74,67.229 +55639,336.08,67.191 +55640,338.33,67.156 +55641,329.95,67.192 +55642,332.42,67.188 +55643,334.77,67.186 +55644,337.03,67.186 +55645,328.62,67.117 +55646,331.1,67.148 +55647,333.46,67.181 +55648,335.73,67.216 +55649,327.29,67.041 +55650,329.78,67.107 +55651,332.15,67.176 +55652,334.42,67.246 +55653,325.97,66.965 +55654,328.46,67.067 +55655,330.84,67.171 +55656,333.12,67.276 +55657,324.64,66.89 +55658,327.15,67.027 +55659,329.53,67.165 +55660,331.81,67.306 +55661,323.32,66.814 +55662,325.83,66.986 +55663,328.22,67.16 +55664,330.5,67.335 +55665,322,66.738 +55666,324.51,66.946 +55667,326.9,67.155 +55668,329.19,67.365 +55669,320.68,66.663 +55670,323.2,66.906 +55671,325.59,67.149 +55672,327.87,67.394 +55673,319.36,66.588 +55674,321.88,66.865 +55675,324.27,67.144 +55676,326.56,67.423 +55677,318.05,66.513 +55678,320.57,66.825 +55679,322.96,67.138 +55680,325.24,67.452 +55681,316.74,66.438 +55682,319.25,66.785 +55683,321.64,67.133 +55684,323.92,67.481 +55685,315.42,66.363 +55686,317.94,66.745 +55687,320.33,67.127 +55688,322.6,67.509 +55689,314.11,66.289 +55690,316.63,66.705 +55691,319.01,67.121 +55692,321.28,67.537 +55693,312.81,66.215 +55694,315.32,66.665 +55695,317.69,67.115 +55696,319.95,67.565 +55697,311.5,66.141 +55698,314.01,66.625 +55699,316.37,67.109 +55700,318.63,67.592 +55701,310.2,66.068 +55702,312.7,66.585 +55703,315.06,67.103 +55704,317.3,67.619 +55705,308.9,65.994 +55706,311.39,66.546 +55707,313.74,67.096 +55708,315.97,67.646 +55709,307.6,65.922 +55710,310.08,66.506 +55711,312.42,67.09 +55712,314.64,67.672 +55713,306.3,65.85 +55714,308.77,66.467 +55715,311.1,67.083 +55716,313.31,67.697 +55717,305,65.778 +55718,307.46,66.428 +55719,309.78,67.076 +55720,311.97,67.722 +55721,303.71,65.706 +55722,306.15,66.389 +55723,308.45,67.069 +55724,310.64,67.747 +55725,302.42,65.636 +55726,304.85,66.35 +55727,307.13,67.062 +55728,309.3,67.771 +55729,301.13,65.565 +55730,303.54,66.311 +55731,305.81,67.054 +55732,307.96,67.794 +55733,299.84,65.496 +55734,302.23,66.273 +55735,304.49,67.047 +55736,306.62,67.817 +55737,298.55,65.426 +55738,300.93,66.234 +55739,303.16,67.039 +55740,305.28,67.839 +55741,297.27,65.358 +55742,299.62,66.196 +55743,301.84,67.031 +55744,303.94,67.861 +55745,295.99,65.29 +55746,298.32,66.158 +55747,300.52,67.023 +55748,302.59,67.882 +55749,294.71,65.223 +55750,297.02,66.121 +55751,299.19,67.014 +55752,301.24,67.902 +55753,293.43,65.156 +55754,295.71,66.083 +55755,297.86,67.005 +55756,299.9,67.921 +55757,292.15,65.09 +55758,294.41,66.046 +55759,296.54,66.996 +55760,298.55,67.94 +55761,290.88,65.025 +55762,293.11,66.009 +55763,295.21,66.987 +55764,297.19,67.958 +55765,289.6,64.961 +55766,291.81,65.972 +55767,293.88,66.977 +55768,295.84,67.975 +55769,288.33,64.897 +55770,290.51,65.936 +55771,292.56,66.967 +55772,294.49,67.991 +55773,287.06,64.835 +55774,289.21,65.9 +55775,291.23,66.957 +55776,293.13,68.007 +55777,285.79,64.773 +55778,287.91,65.864 +55779,289.9,66.947 +55780,291.77,68.022 +55781,284.53,64.712 +55782,286.61,65.828 +55783,288.57,66.936 +55784,290.41,68.035 +55785,283.26,64.651 +55786,285.31,65.792 +55787,287.24,66.925 +55788,289.05,68.048 +55789,282,64.592 +55790,284.02,65.757 +55791,285.91,66.914 +55792,287.69,68.06 +55793,280.73,64.534 +55794,282.72,65.722 +55795,284.58,66.902 +55796,286.33,68.071 +55797,279.47,64.476 +55798,281.42,65.688 +55799,283.25,66.89 +55800,284.96,68.082 +55801,278.22,64.42 +55802,280.13,65.654 +55803,281.92,66.878 +55804,283.6,68.091 +55805,276.96,64.364 +55806,278.83,65.62 +55807,280.58,66.865 +55808,282.23,68.099 +55809,275.7,64.309 +55810,277.54,65.586 +55811,279.25,66.852 +55812,280.86,68.106 +55813,274.45,64.256 +55814,276.24,65.553 +55815,277.92,66.839 +55816,279.49,68.112 +55817,273.19,64.203 +55818,274.95,65.52 +55819,276.59,66.825 +55820,278.12,68.118 +55821,271.94,64.152 +55822,273.65,65.487 +55823,275.25,66.811 +55824,276.75,68.122 +55825,270.69,64.101 +55826,272.36,65.455 +55827,273.92,66.797 +55828,275.38,68.125 +55829,269.44,64.052 +55830,271.07,65.423 +55831,272.58,66.782 +55832,274.01,68.127 +55833,268.2,64.004 +55834,269.78,65.392 +55835,271.25,66.767 +55836,272.63,68.128 +55837,266.95,63.957 +55838,268.48,65.361 +55839,269.91,66.751 +55840,271.25,68.127 +55841,265.7,63.91 +55842,267.19,65.33 +55843,268.58,66.735 +55844,269.88,68.126 +55845,264.46,63.865 +55846,265.9,65.299 +55847,267.24,66.719 +55848,268.5,68.124 +55849,263.22,63.822 +55850,264.61,65.269 +55851,265.91,66.702 +55852,267.12,68.12 +55853,261.97,63.779 +55854,263.32,65.239 +55855,264.57,66.685 +55856,265.74,68.115 +55857,260.73,63.738 +55858,262.03,65.21 +55859,263.23,66.668 +55860,264.36,68.109 +55861,259.49,63.697 +55862,260.74,65.181 +55863,261.9,66.65 +55864,262.98,68.102 +55865,258.25,63.658 +55866,259.45,65.152 +55867,260.56,66.631 +55868,261.59,68.094 +55869,257.02,63.62 +55870,258.16,65.124 +55871,259.22,66.613 +55872,260.21,68.085 +55873,255.78,63.583 +55874,256.87,65.096 +55875,257.88,66.594 +55876,258.82,68.074 +55877,254.54,63.548 +55878,255.58,65.069 +55879,256.55,66.574 +55880,257.44,68.062 +55881,253.31,63.514 +55882,254.29,65.042 +55883,255.21,66.554 +55884,256.05,68.049 +55885,252.07,63.481 +55886,253.01,65.015 +55887,253.87,66.534 +55888,254.67,68.035 +55889,250.84,63.449 +55890,251.72,64.989 +55891,252.53,66.513 +55892,253.28,68.02 +55893,249.6,63.418 +55894,250.43,64.963 +55895,251.19,66.492 +55896,251.89,68.003 +55897,248.37,63.389 +55898,249.14,64.938 +55899,249.85,66.47 +55900,250.5,67.985 +55901,247.14,63.361 +55902,247.86,64.913 +55903,248.51,66.448 +55904,249.11,67.966 +55905,245.91,63.334 +55906,246.57,64.888 +55907,247.17,66.426 +55908,247.72,67.945 +55909,244.67,63.308 +55910,245.28,64.864 +55911,245.83,66.403 +55912,246.33,67.924 +55913,243.44,63.284 +55914,244,64.84 +55915,244.49,66.379 +55916,244.94,67.901 +55917,242.21,63.261 +55918,242.71,64.817 +55919,243.15,66.356 +55920,243.55,67.877 +55921,240.98,63.239 +55922,241.42,64.794 +55923,241.81,66.332 +55924,242.16,67.852 +55925,239.75,63.218 +55926,240.14,64.771 +55927,240.47,66.307 +55928,240.77,67.825 +55929,238.52,63.199 +55930,238.85,64.749 +55931,239.13,66.282 +55932,239.37,67.797 +55933,237.29,63.181 +55934,237.57,64.727 +55935,237.79,66.256 +55936,237.98,67.768 +55937,236.06,63.164 +55938,236.28,64.706 +55939,236.45,66.231 +55940,236.59,67.738 +55941,234.83,63.149 +55942,234.99,64.685 +55943,235.11,66.204 +55944,235.19,67.707 +55945,233.6,63.134 +55946,233.71,64.664 +55947,233.77,66.178 +55948,233.8,67.674 +55949,232.37,63.121 +55950,232.42,64.644 +55951,232.43,66.15 +55952,232.41,67.64 +55953,231.15,63.109 +55954,231.14,64.624 +55955,231.09,66.123 +55956,231.01,67.605 +55957,229.92,63.099 +55958,229.85,64.605 +55959,229.75,66.095 +55960,229.62,67.568 +55961,228.69,63.089 +55962,228.57,64.586 +55963,228.41,66.067 +55964,228.23,67.531 +55965,227.46,63.081 +55966,227.28,64.567 +55967,227.07,66.038 +55968,226.83,67.492 +55969,226.23,63.074 +55970,225.99,64.549 +55971,225.73,66.008 +55972,225.44,67.452 +55973,225,63.068 +55974,224.71,64.531 +55975,224.39,65.979 +55976,224.04,67.411 +55977,223.77,63.064 +55978,223.42,64.514 +55979,223.05,65.949 +55980,222.65,67.368 +55981,222.53,63.06 +55982,222.14,64.496 +55983,221.71,65.918 +55984,221.26,67.325 +55985,221.3,63.058 +55986,220.85,64.48 +55987,220.37,65.888 +55988,219.86,67.28 +55989,220.07,63.057 +55990,219.56,64.463 +55991,219.03,65.856 +55992,218.47,67.234 +55993,218.84,63.057 +55994,218.28,64.447 +55995,217.69,65.825 +55996,217.08,67.187 +55997,217.61,63.058 +55998,216.99,64.432 +55999,216.35,65.793 +56000,215.69,67.139 +56001,216.37,63.06 +56002,215.71,64.417 +56003,215.01,65.76 +56004,214.29,67.09 +56005,215.14,63.063 +56006,214.42,64.402 +56007,213.67,65.727 +56008,212.9,67.039 +56009,213.91,63.068 +56010,213.13,64.387 +56011,212.33,65.694 +56012,211.51,66.988 +56013,212.67,63.073 +56014,211.85,64.373 +56015,211,65.661 +56016,210.12,66.935 +56017,211.44,63.08 +56018,210.56,64.359 +56019,209.66,65.627 +56020,208.73,66.882 +56021,210.2,63.088 +56022,209.27,64.346 +56023,208.32,65.593 +56024,207.34,66.827 +56025,208.96,63.096 +56026,207.98,64.332 +56027,206.98,65.558 +56028,205.95,66.771 +56029,207.72,63.106 +56030,206.69,64.32 +56031,205.64,65.523 +56032,204.56,66.714 +56033,206.48,63.116 +56034,205.41,64.307 +56035,204.3,65.488 +56036,203.18,66.657 +56037,205.24,63.128 +56038,204.12,64.295 +56039,202.97,65.452 +56040,201.79,66.598 +56041,204,63.14 +56042,202.83,64.283 +56043,201.63,65.416 +56044,200.4,66.538 +56045,202.76,63.154 +56046,201.54,64.271 +56047,200.29,65.38 +56048,199.02,66.478 +56049,201.52,63.168 +56050,200.25,64.26 +56051,198.96,65.343 +56052,197.63,66.416 +56053,200.27,63.183 +56054,198.96,64.249 +56055,197.62,65.306 +56056,196.25,66.353 +56057,199.03,63.199 +56058,197.67,64.238 +56059,196.29,65.269 +56060,194.87,66.29 +56061,197.78,63.216 +56062,196.38,64.228 +56063,194.95,65.231 +56064,193.48,66.226 +56065,196.54,63.234 +56066,195.09,64.217 +56067,193.61,65.193 +56068,192.1,66.161 +56069,195.29,63.253 +56070,193.8,64.207 +56071,192.28,65.155 +56072,190.72,66.095 +56073,194.04,63.272 +56074,192.51,64.198 +56075,190.95,65.117 +56076,189.34,66.028 +56077,192.79,63.292 +56078,191.22,64.188 +56079,189.61,65.078 +56080,187.96,65.96 +56081,191.53,63.313 +56082,189.93,64.179 +56083,188.28,65.039 +56084,186.59,65.892 +56085,190.28,63.334 +56086,188.63,64.17 +56087,186.95,65 +56088,185.21,65.823 +56089,189.03,63.356 +56090,187.34,64.161 +56091,185.61,64.961 +56092,183.84,65.753 +56093,187.77,63.379 +56094,186.05,64.153 +56095,184.28,64.921 +56096,182.46,65.682 +56097,186.51,63.403 +56098,184.75,64.144 +56099,182.95,64.881 +56100,181.09,65.611 +56101,185.25,63.427 +56102,183.46,64.136 +56103,181.62,64.841 +56104,179.72,65.539 +56105,183.99,63.451 +56106,182.16,64.128 +56107,180.29,64.8 +56108,178.35,65.467 +56109,182.73,63.476 +56110,180.87,64.12 +56111,178.96,64.76 +56112,176.98,65.394 +56113,181.47,63.502 +56114,179.57,64.113 +56115,177.63,64.719 +56116,175.62,65.32 +56117,180.2,63.528 +56118,178.28,64.105 +56119,176.3,64.678 +56120,174.25,65.246 +56121,178.94,63.555 +56122,176.98,64.098 +56123,174.97,64.637 +56124,172.89,65.171 +56125,177.67,63.582 +56126,175.69,64.09 +56127,173.64,64.596 +56128,171.52,65.096 +56129,176.4,63.609 +56130,174.39,64.083 +56131,172.31,64.554 +56132,170.16,65.02 +56133,175.13,63.637 +56134,173.09,64.076 +56135,170.98,64.512 +56136,168.8,64.944 +56137,173.86,63.665 +56138,171.79,64.07 +56139,169.66,64.471 +56140,167.45,64.867 +56141,172.58,63.694 +56142,170.49,64.063 +56143,168.33,64.429 +56144,166.09,64.79 +56145,171.31,63.722 +56146,169.19,64.056 +56147,167.01,64.387 +56148,164.74,64.713 +56149,170.03,63.752 +56150,167.89,64.05 +56151,165.68,64.344 +56152,163.38,64.635 +56153,168.75,63.781 +56154,166.59,64.043 +56155,164.36,64.302 +56156,162.03,64.557 +56157,167.47,63.81 +56158,165.29,64.037 +56159,163.03,64.26 +56160,160.68,64.478 +56161,166.19,63.84 +56162,163.99,64.03 +56163,161.71,64.217 +56164,159.33,64.4 +56165,164.9,63.87 +56166,162.69,64.024 +56167,160.39,64.175 +56168,157.99,64.321 +56169,163.62,63.9 +56170,161.39,64.018 +56171,159.07,64.132 +56172,156.64,64.242 +56173,162.33,63.93 +56174,160.08,64.011 +56175,157.74,64.089 +56176,155.3,64.163 +56177,161.04,63.96 +56178,158.78,64.005 +56179,156.42,64.047 +56180,153.96,64.084 +56181,159.75,63.99 +56182,157.47,63.999 +56183,155.1,64.004 +56184,152.62,64.004 +56185,158.46,64.021 +56186,156.17,63.993 +56187,153.78,63.961 +56188,151.28,63.925 +56189,157.16,64.051 +56190,154.86,63.986 +56191,152.46,63.918 +56192,149.95,63.845 +56193,155.87,64.081 +56194,153.56,63.98 +56195,151.15,63.875 +56196,148.61,63.766 +56197,154.57,64.111 +56198,152.25,63.974 +56199,149.83,63.833 +56200,147.28,63.686 +56201,153.27,64.141 +56202,150.94,63.967 +56203,148.51,63.79 +56204,145.95,63.607 +56205,151.97,64.17 +56206,149.64,63.961 +56207,147.19,63.747 +56208,144.63,63.527 +56209,150.66,64.2 +56210,148.33,63.955 +56211,145.88,63.704 +56212,143.3,63.448 +56213,149.36,64.229 +56214,147.02,63.948 +56215,144.56,63.661 +56216,141.98,63.369 +56217,148.05,64.259 +56218,145.71,63.941 +56219,143.25,63.619 +56220,140.65,63.29 +56221,146.74,64.288 +56222,144.4,63.935 +56223,141.94,63.576 +56224,139.33,63.211 +56225,145.43,64.316 +56226,143.09,63.928 +56227,140.62,63.533 +56228,138.02,63.132 +56229,144.12,64.344 +56230,141.78,63.921 +56231,139.31,63.491 +56232,136.7,63.054 +56233,142.81,64.372 +56234,140.46,63.914 +56235,138,63.448 +56236,135.39,62.976 +56237,141.49,64.4 +56238,139.15,63.907 +56239,136.69,63.406 +56240,134.07,62.898 +56241,140.17,64.427 +56242,137.84,63.899 +56243,135.38,63.364 +56244,132.76,62.82 +56245,138.85,64.454 +56246,136.52,63.892 +56247,134.07,63.322 +56248,131.46,62.743 +56249,137.53,64.48 +56250,135.21,63.884 +56251,132.76,63.28 +56252,130.15,62.666 +56253,136.21,64.506 +56254,133.9,63.876 +56255,131.45,63.238 +56256,128.85,62.59 +56257,134.89,64.532 +56258,132.58,63.869 +56259,130.14,63.196 +56260,127.55,62.514 +56261,133.56,64.556 +56262,131.26,63.86 +56263,128.83,63.155 +56264,126.25,62.439 +56265,132.23,64.581 +56266,129.95,63.852 +56267,127.53,63.113 +56268,124.95,62.364 +56269,130.9,64.604 +56270,128.63,63.843 +56271,126.22,63.072 +56272,123.65,62.29 +56273,129.57,64.627 +56274,127.31,63.835 +56275,124.92,63.031 +56276,122.36,62.216 +56277,128.24,64.65 +56278,125.99,63.826 +56279,123.61,62.99 +56280,121.07,62.143 +56281,126.9,64.672 +56282,124.67,63.817 +56283,122.31,62.95 +56284,119.78,62.07 +56285,125.57,64.693 +56286,123.36,63.807 +56287,121,62.909 +56288,118.49,61.998 +56289,124.23,64.713 +56290,122.04,63.797 +56291,119.7,62.869 +56292,117.2,61.927 +56293,122.89,64.733 +56294,120.71,63.787 +56295,118.4,62.829 +56296,115.92,61.857 +56297,121.55,64.752 +56298,119.39,63.777 +56299,117.1,62.789 +56300,114.64,61.787 +56301,120.21,64.77 +56302,118.07,63.767 +56303,115.8,62.749 +56304,113.36,61.718 +56305,118.86,64.787 +56306,116.75,63.756 +56307,114.5,62.71 +56308,112.08,61.649 +56309,117.52,64.803 +56310,115.43,63.745 +56311,113.2,62.671 +56312,110.81,61.582 +56313,116.17,64.819 +56314,114.1,63.734 +56315,111.9,62.632 +56316,109.53,61.515 +56317,114.82,64.834 +56318,112.78,63.722 +56319,110.6,62.594 +56320,108.26,61.449 +56321,113.47,64.848 +56322,111.46,63.71 +56323,109.3,62.556 +56324,106.99,61.384 +56325,112.12,64.861 +56326,110.13,63.698 +56327,108.01,62.518 +56328,105.72,61.32 +56329,110.77,64.873 +56330,108.81,63.685 +56331,106.71,62.48 +56332,104.45,61.257 +56333,109.41,64.884 +56334,107.48,63.672 +56335,105.41,62.443 +56336,103.19,61.195 +56337,108.05,64.894 +56338,106.15,63.659 +56339,104.12,62.406 +56340,101.93,61.134 +56341,106.7,64.903 +56342,104.83,63.645 +56343,102.82,62.369 +56344,100.66,61.073 +56345,105.34,64.911 +56346,103.5,63.631 +56347,101.53,62.333 +56348,99.404,61.014 +56349,103.98,64.918 +56350,102.17,63.617 +56351,100.23,62.296 +56352,98.146,60.956 +56353,102.62,64.924 +56354,100.84,63.602 +56355,98.942,62.261 +56356,96.89,60.899 +56357,101.25,64.929 +56358,99.515,63.587 +56359,97.649,62.225 +56360,95.635,60.842 +56361,99.888,64.933 +56362,98.185,63.572 +56363,96.357,62.19 +56364,94.382,60.787 +56365,98.522,64.936 +56366,96.856,63.556 +56367,95.065,62.156 +56368,93.13,60.733 +56369,97.155,64.937 +56370,95.526,63.54 +56371,93.774,62.121 +56372,91.88,60.68 +56373,95.787,64.938 +56374,94.196,63.524 +56375,92.484,62.087 +56376,90.632,60.629 +56377,94.417,64.937 +56378,92.865,63.507 +56379,91.193,62.054 +56380,89.385,60.578 +56381,93.047,64.935 +56382,91.534,63.489 +56383,89.904,62.02 +56384,88.139,60.529 +56385,91.675,64.933 +56386,90.202,63.472 +56387,88.615,61.987 +56388,86.895,60.48 +56389,90.302,64.928 +56390,88.87,63.453 +56391,87.326,61.955 +56392,85.652,60.433 +56393,88.928,64.923 +56394,87.538,63.435 +56395,86.038,61.923 +56396,84.41,60.387 +56397,87.553,64.917 +56398,86.205,63.416 +56399,84.75,61.891 +56400,83.17,60.343 +56401,86.177,64.909 +56402,84.872,63.396 +56403,83.462,61.86 +56404,81.931,60.299 +56405,84.8,64.9 +56406,83.539,63.377 +56407,82.175,61.829 +56408,80.693,60.257 +56409,83.422,64.89 +56410,82.206,63.356 +56411,80.888,61.798 +56412,79.456,60.216 +56413,82.043,64.879 +56414,80.872,63.336 +56415,79.602,61.768 +56416,78.22,60.176 +56417,80.663,64.866 +56418,79.537,63.315 +56419,78.316,61.738 +56420,76.986,60.138 +56421,79.282,64.852 +56422,78.203,63.293 +56423,77.03,61.709 +56424,75.752,60.1 +56425,77.9,64.837 +56426,76.868,63.271 +56427,75.745,61.68 +56428,74.519,60.064 +56429,76.518,64.82 +56430,75.533,63.249 +56431,74.46,61.652 +56432,73.288,60.03 +56433,75.135,64.803 +56434,74.198,63.226 +56435,73.176,61.624 +56436,72.057,59.996 +56437,73.75,64.784 +56438,72.862,63.202 +56439,71.891,61.596 +56440,70.827,59.964 +56441,72.366,64.764 +56442,71.526,63.179 +56443,70.607,61.569 +56444,69.598,59.934 +56445,70.98,64.742 +56446,70.19,63.155 +56447,69.323,61.542 +56448,68.37,59.904 +56449,69.594,64.719 +56450,68.854,63.13 +56451,68.04,61.515 +56452,67.142,59.876 +56453,68.207,64.695 +56454,67.518,63.105 +56455,66.757,61.489 +56456,65.915,59.849 +56457,66.82,64.67 +56458,66.181,63.079 +56459,65.474,61.464 +56460,64.689,59.824 +56461,65.432,64.643 +56462,64.845,63.053 +56463,64.191,61.439 +56464,63.463,59.799 +56465,64.044,64.615 +56466,63.508,63.027 +56467,62.908,61.414 +56468,62.238,59.777 +56469,62.655,64.585 +56470,62.171,63 +56471,61.626,61.39 +56472,61.013,59.755 +56473,61.265,64.555 +56474,60.834,62.973 +56475,60.343,61.366 +56476,59.788,59.735 +56477,59.875,64.523 +56478,59.496,62.945 +56479,59.061,61.342 +56480,58.564,59.716 +56481,58.485,64.49 +56482,58.159,62.917 +56483,57.779,61.319 +56484,57.341,59.698 +56485,57.095,64.455 +56486,56.822,62.888 +56487,56.498,61.297 +56488,56.117,59.682 +56489,55.704,64.419 +56490,55.484,62.859 +56491,55.216,61.274 +56492,54.894,59.667 +56493,54.313,64.382 +56494,54.146,62.829 +56495,53.934,61.253 +56496,53.671,59.653 +56497,52.921,64.344 +56498,52.809,62.799 +56499,52.653,61.231 +56500,52.448,59.641 +56501,51.53,64.304 +56502,51.471,62.769 +56503,51.371,61.21 +56504,51.226,59.629 +56505,50.138,64.263 +56506,50.134,62.738 +56507,50.09,61.19 +56508,50.003,59.62 +56509,48.746,64.221 +56510,48.796,62.707 +56511,48.808,61.17 +56512,48.78,59.611 +56513,47.354,64.178 +56514,47.458,62.675 +56515,47.527,61.15 +56516,47.557,59.604 +56517,45.962,64.133 +56518,46.121,62.643 +56519,46.246,61.131 +56520,46.334,59.597 +56521,44.57,64.087 +56522,44.783,62.61 +56523,44.964,61.112 +56524,45.111,59.592 +56525,43.178,64.04 +56526,43.446,62.577 +56527,43.683,61.093 +56528,43.888,59.589 +56529,41.786,63.992 +56530,42.108,62.544 +56531,42.402,61.075 +56532,42.665,59.586 +56533,40.394,63.942 +56534,40.771,62.51 +56535,41.12,61.057 +56536,41.441,59.585 +56537,39.002,63.891 +56538,39.433,62.476 +56539,39.839,61.04 +56540,40.217,59.585 +56541,37.61,63.839 +56542,38.096,62.441 +56543,38.557,61.023 +56544,38.992,59.586 +56545,36.219,63.786 +56546,36.759,62.406 +56547,37.276,61.006 +56548,37.767,59.588 +56549,34.828,63.732 +56550,35.422,62.37 +56551,35.994,60.99 +56552,36.542,59.592 +56553,33.437,63.676 +56554,34.085,62.334 +56555,34.712,60.974 +56556,35.316,59.596 +56557,32.047,63.62 +56558,32.749,62.298 +56559,33.43,60.959 +56560,34.089,59.602 +56561,30.656,63.562 +56562,31.412,62.262 +56563,32.148,60.943 +56564,32.862,59.609 +56565,29.267,63.503 +56566,30.076,62.224 +56567,30.865,60.929 +56568,31.635,59.617 +56569,27.877,63.443 +56570,28.74,62.187 +56571,29.583,60.914 +56572,30.406,59.626 +56573,26.489,63.382 +56574,27.404,62.149 +56575,28.3,60.9 +56576,29.177,59.636 +56577,25.1,63.32 +56578,26.069,62.111 +56579,27.017,60.886 +56580,27.947,59.646 +56581,23.713,63.257 +56582,24.733,62.073 +56583,25.734,60.873 +56584,26.716,59.658 +56585,22.325,63.193 +56586,23.398,62.034 +56587,24.451,60.859 +56588,25.484,59.671 +56589,20.939,63.128 +56590,22.063,61.995 +56591,23.167,60.847 +56592,24.252,59.685 +56593,19.553,63.062 +56594,20.729,61.955 +56595,21.883,60.834 +56596,23.018,59.7 +56597,18.168,62.995 +56598,19.395,61.915 +56599,20.599,60.822 +56600,21.784,59.716 +56601,16.784,62.927 +56602,18.061,61.875 +56603,19.315,60.81 +56604,20.548,59.733 +56605,15.4,62.858 +56606,16.727,61.834 +56607,18.03,60.798 +56608,19.312,59.75 +56609,14.017,62.788 +56610,15.394,61.794 +56611,16.745,60.787 +56612,18.074,59.769 +56613,12.636,62.717 +56614,14.061,61.753 +56615,15.46,60.776 +56616,16.836,59.788 +56617,11.255,62.645 +56618,12.728,61.711 +56619,14.174,60.765 +56620,15.596,59.808 +56621,9.8747,62.573 +56622,11.396,61.669 +56623,12.888,60.754 +56624,14.355,59.829 +56625,8.4957,62.5 +56626,10.064,61.627 +56627,11.602,60.744 +56628,13.112,59.85 +56629,7.1177,62.426 +56630,8.7327,61.585 +56631,10.315,60.734 +56632,11.869,59.872 +56633,5.7407,62.351 +56634,7.4017,61.543 +56635,9.0282,60.724 +56636,10.624,59.895 +56637,4.3649,62.275 +56638,6.071,61.5 +56639,7.7407,60.714 +56640,9.3781,59.919 +56641,2.9902,62.199 +56642,4.7409,61.457 +56643,6.4529,60.704 +56644,8.1306,59.943 +56645,1.6166,62.122 +56646,3.4111,61.414 +56647,5.1646,60.695 +56648,6.8818,59.968 +56649,0.24425,62.044 +56650,2.0819,61.37 +56651,3.876,60.686 +56652,5.6316,59.994 +56653,358.87,61.966 +56654,0.75304,61.326 +56655,2.5869,60.677 +56656,4.38,60.02 +56657,357.5,61.887 +56658,359.42,61.283 +56659,1.2973,60.668 +56660,3.1269,60.046 +56661,356.13,61.808 +56662,358.1,61.238 +56663,0.0073472,60.66 +56664,1.8724,60.073 +56665,354.77,61.728 +56666,356.77,61.194 +56667,358.72,60.651 +56668,0.61635,60.101 +56669,353.4,61.647 +56670,355.44,61.15 +56671,357.43,60.643 +56672,359.36,60.129 +56673,352.04,61.566 +56674,354.12,61.105 +56675,356.13,60.635 +56676,358.1,60.157 +56677,350.67,61.484 +56678,352.79,61.06 +56679,354.84,60.627 +56680,356.84,60.186 +56681,349.31,61.402 +56682,351.47,61.015 +56683,353.55,60.619 +56684,355.58,60.215 +56685,347.95,61.32 +56686,350.14,60.97 +56687,352.26,60.611 +56688,354.31,60.245 +56689,346.59,61.237 +56690,348.82,60.925 +56691,350.96,60.603 +56692,353.05,60.275 +56693,345.24,61.154 +56694,347.49,60.88 +56695,349.67,60.596 +56696,351.78,60.305 +56697,343.88,61.07 +56698,346.17,60.834 +56699,348.38,60.588 +56700,350.51,60.335 +56701,342.53,60.987 +56702,344.85,60.788 +56703,347.08,60.581 +56704,349.24,60.365 +56705,341.18,60.903 +56706,343.53,60.743 +56707,345.79,60.573 +56708,347.97,60.396 +56709,339.83,60.818 +56710,342.2,60.697 +56711,344.49,60.566 +56712,346.7,60.427 +56713,338.48,60.734 +56714,340.88,60.651 +56715,343.19,60.559 +56716,345.42,60.458 +56717,337.13,60.649 +56718,339.56,60.605 +56719,341.9,60.551 +56720,344.14,60.489 +56721,335.79,60.564 +56722,338.24,60.559 +56723,340.6,60.544 +56724,342.86,60.52 +56725,334.44,60.479 +56726,336.93,60.513 +56727,339.3,60.537 +56728,341.58,60.551 +56729,333.1,60.394 +56730,335.61,60.467 +56731,338,60.529 +56732,340.3,60.583 +56733,331.76,60.309 +56734,334.29,60.421 +56735,336.7,60.522 +56736,339.02,60.614 +56737,330.42,60.224 +56738,332.97,60.375 +56739,335.4,60.515 +56740,337.73,60.645 +56741,329.09,60.139 +56742,331.66,60.329 +56743,334.1,60.507 +56744,336.44,60.676 +56745,327.75,60.054 +56746,330.34,60.283 +56747,332.8,60.5 +56748,335.15,60.706 +56749,326.42,59.969 +56750,329.03,60.237 +56751,331.5,60.492 +56752,333.86,60.737 +56753,325.09,59.884 +56754,327.71,60.191 +56755,330.2,60.485 +56756,332.57,60.768 +56757,323.76,59.799 +56758,326.4,60.145 +56759,328.89,60.477 +56760,331.27,60.798 +56761,322.44,59.715 +56762,325.09,60.099 +56763,327.59,60.47 +56764,329.98,60.828 +56765,321.11,59.63 +56766,323.77,60.053 +56767,326.29,60.462 +56768,328.68,60.858 +56769,319.79,59.546 +56770,322.46,60.008 +56771,324.98,60.454 +56772,327.38,60.887 +56773,318.47,59.462 +56774,321.15,59.962 +56775,323.68,60.446 +56776,326.08,60.916 +56777,317.15,59.379 +56778,319.84,59.916 +56779,322.37,60.438 +56780,324.77,60.945 +56781,315.84,59.296 +56782,318.53,59.871 +56783,321.07,60.429 +56784,323.47,60.973 +56785,314.52,59.213 +56786,317.22,59.825 +56787,319.76,60.421 +56788,322.16,61.001 +56789,313.21,59.13 +56790,315.91,59.78 +56791,318.45,60.412 +56792,320.85,61.029 +56793,311.9,59.048 +56794,314.61,59.735 +56795,317.14,60.403 +56796,319.54,61.056 +56797,310.59,58.967 +56798,313.3,59.69 +56799,315.83,60.395 +56800,318.23,61.082 +56801,309.29,58.885 +56802,311.99,59.645 +56803,314.53,60.385 +56804,316.91,61.108 +56805,307.99,58.805 +56806,310.69,59.601 +56807,313.22,60.376 +56808,315.59,61.133 +56809,306.68,58.725 +56810,309.38,59.556 +56811,311.9,60.367 +56812,314.28,61.158 +56813,305.39,58.645 +56814,308.08,59.512 +56815,310.59,60.357 +56816,312.96,61.182 +56817,304.09,58.566 +56818,306.78,59.468 +56819,309.28,60.347 +56820,311.63,61.206 +56821,302.79,58.488 +56822,305.47,59.424 +56823,307.97,60.337 +56824,310.31,61.229 +56825,301.5,58.41 +56826,304.17,59.38 +56827,306.66,60.326 +56828,308.99,61.251 +56829,300.21,58.334 +56830,302.87,59.337 +56831,305.34,60.315 +56832,307.66,61.272 +56833,298.92,58.257 +56834,301.57,59.293 +56835,304.03,60.304 +56836,306.33,61.293 +56837,297.63,58.182 +56838,300.27,59.25 +56839,302.72,60.293 +56840,305,61.313 +56841,296.35,58.107 +56842,298.97,59.208 +56843,301.4,60.282 +56844,303.67,61.332 +56845,295.07,58.033 +56846,297.67,59.165 +56847,300.08,60.27 +56848,302.34,61.35 +56849,293.79,57.96 +56850,296.37,59.123 +56851,298.77,60.258 +56852,301,61.367 +56853,292.51,57.888 +56854,295.08,59.081 +56855,297.45,60.245 +56856,299.66,61.384 +56857,291.23,57.817 +56858,293.78,59.039 +56859,296.13,60.233 +56860,298.32,61.4 +56861,289.96,57.746 +56862,292.48,58.998 +56863,294.82,60.22 +56864,296.98,61.414 +56865,288.69,57.677 +56866,291.19,58.957 +56867,293.5,60.206 +56868,295.64,61.428 +56869,287.42,57.608 +56870,289.89,58.916 +56871,292.18,60.193 +56872,294.3,61.441 +56873,286.15,57.541 +56874,288.6,58.875 +56875,290.86,60.179 +56876,292.96,61.453 +56877,284.88,57.474 +56878,287.31,58.835 +56879,289.54,60.164 +56880,291.61,61.464 +56881,283.62,57.409 +56882,286.02,58.795 +56883,288.22,60.149 +56884,290.26,61.473 +56885,282.35,57.344 +56886,284.72,58.756 +56887,286.9,60.134 +56888,288.91,61.482 +56889,281.09,57.281 +56890,283.43,58.717 +56891,285.58,60.119 +56892,287.56,61.49 +56893,279.84,57.219 +56894,282.14,58.678 +56895,284.25,60.103 +56896,286.21,61.496 +56897,278.58,57.158 +56898,280.85,58.639 +56899,282.93,60.087 +56900,284.85,61.502 +56901,277.32,57.098 +56902,279.56,58.601 +56903,281.61,60.07 +56904,283.5,61.506 +56905,276.07,57.039 +56906,278.27,58.564 +56907,280.29,60.053 +56908,282.14,61.509 +56909,274.82,56.981 +56910,276.98,58.526 +56911,278.96,60.036 +56912,280.79,61.512 +56913,273.57,56.924 +56914,275.7,58.489 +56915,277.64,60.018 +56916,279.43,61.512 +56917,272.32,56.869 +56918,274.41,58.453 +56919,276.31,60 +56920,278.07,61.512 +56921,271.08,56.815 +56922,273.12,58.417 +56923,274.99,59.981 +56924,276.7,61.511 +56925,269.83,56.762 +56926,271.84,58.381 +56927,273.66,59.962 +56928,275.34,61.508 +56929,268.59,56.711 +56930,270.55,58.346 +56931,272.34,59.943 +56932,273.98,61.504 +56933,267.35,56.66 +56934,269.26,58.311 +56935,271.01,59.923 +56936,272.61,61.499 +56937,266.11,56.611 +56938,267.98,58.276 +56939,269.68,59.902 +56940,271.25,61.493 +56941,264.87,56.564 +56942,266.7,58.242 +56943,268.36,59.882 +56944,269.88,61.485 +56945,263.63,56.517 +56946,265.41,58.208 +56947,267.03,59.86 +56948,268.51,61.476 +56949,262.4,56.472 +56950,264.13,58.175 +56951,265.7,59.839 +56952,267.14,61.466 +56953,261.16,56.429 +56954,262.85,58.142 +56955,264.37,59.817 +56956,265.77,61.454 +56957,259.93,56.386 +56958,261.56,58.11 +56959,263.04,59.794 +56960,264.4,61.441 +56961,258.7,56.345 +56962,260.28,58.078 +56963,261.71,59.771 +56964,263.02,61.427 +56965,257.47,56.306 +56966,259,58.046 +56967,260.39,59.748 +56968,261.65,61.412 +56969,256.24,56.267 +56970,257.72,58.015 +56971,259.06,59.724 +56972,260.27,61.395 +56973,255.01,56.231 +56974,256.44,57.984 +56975,257.73,59.699 +56976,258.9,61.376 +56977,253.79,56.195 +56978,255.16,57.954 +56979,256.4,59.674 +56980,257.52,61.357 +56981,252.56,56.161 +56982,253.88,57.924 +56983,255.07,59.649 +56984,256.14,61.336 +56985,251.34,56.128 +56986,252.6,57.895 +56987,253.73,59.623 +56988,254.76,61.314 +56989,250.11,56.097 +56990,251.32,57.866 +56991,252.4,59.597 +56992,253.38,61.29 +56993,248.89,56.067 +56994,250.04,57.838 +56995,251.07,59.57 +56996,252,61.265 +56997,247.67,56.039 +56998,248.76,57.81 +56999,249.74,59.543 +57000,250.62,61.239 +57001,246.45,56.012 +57002,247.48,57.782 +57003,248.41,59.515 +57004,249.24,61.211 +57005,245.23,55.986 +57006,246.21,57.755 +57007,247.08,59.487 +57008,247.86,61.182 +57009,244.01,55.962 +57010,244.93,57.729 +57011,245.75,59.458 +57012,246.48,61.152 +57013,242.79,55.939 +57014,243.65,57.703 +57015,244.41,59.429 +57016,245.09,61.12 +57017,241.57,55.918 +57018,242.37,57.677 +57019,243.08,59.4 +57020,243.71,61.087 +57021,240.35,55.898 +57022,241.1,57.652 +57023,241.75,59.37 +57024,242.32,61.052 +57025,239.14,55.879 +57026,239.82,57.627 +57027,240.42,59.339 +57028,240.94,61.016 +57029,237.92,55.862 +57030,238.54,57.603 +57031,239.08,59.308 +57032,239.55,60.979 +57033,236.71,55.846 +57034,237.27,57.579 +57035,237.75,59.276 +57036,238.17,60.94 +57037,235.49,55.832 +57038,235.99,57.555 +57039,236.42,59.244 +57040,236.78,60.9 +57041,234.27,55.819 +57042,234.71,57.532 +57043,235.08,59.212 +57044,235.39,60.859 +57045,233.06,55.807 +57046,233.44,57.51 +57047,233.75,59.179 +57048,234.01,60.816 +57049,231.84,55.797 +57050,232.16,57.488 +57051,232.42,59.146 +57052,232.62,60.772 +57053,230.63,55.788 +57054,230.89,57.466 +57055,231.08,59.112 +57056,231.23,60.726 +57057,229.42,55.78 +57058,229.61,57.445 +57059,229.75,59.078 +57060,229.84,60.679 +57061,228.2,55.774 +57062,228.33,57.424 +57063,228.42,59.043 +57064,228.46,60.631 +57065,226.99,55.769 +57066,227.06,57.404 +57067,227.08,59.008 +57068,227.07,60.582 +57069,225.77,55.766 +57070,225.78,57.384 +57071,225.75,58.972 +57072,225.68,60.531 +57073,224.56,55.763 +57074,224.51,57.364 +57075,224.42,58.936 +57076,224.29,60.479 +57077,223.34,55.762 +57078,223.23,57.345 +57079,223.09,58.9 +57080,222.9,60.425 +57081,222.13,55.763 +57082,221.96,57.326 +57083,221.75,58.863 +57084,221.51,60.371 +57085,220.91,55.764 +57086,220.68,57.308 +57087,220.42,58.825 +57088,220.13,60.315 +57089,219.7,55.767 +57090,219.41,57.29 +57091,219.09,58.787 +57092,218.74,60.258 +57093,218.48,55.771 +57094,218.13,57.273 +57095,217.75,58.749 +57096,217.35,60.199 +57097,217.27,55.776 +57098,216.86,57.256 +57099,216.42,58.71 +57100,215.96,60.14 +57101,216.05,55.783 +57102,215.58,57.239 +57103,215.09,58.671 +57104,214.57,60.079 +57105,214.83,55.79 +57106,214.3,57.223 +57107,213.76,58.632 +57108,213.19,60.017 +57109,213.61,55.799 +57110,213.03,57.207 +57111,212.42,58.592 +57112,211.8,59.953 +57113,212.4,55.809 +57114,211.75,57.191 +57115,211.09,58.552 +57116,210.41,59.889 +57117,211.18,55.82 +57118,210.48,57.176 +57119,209.76,58.511 +57120,209.02,59.823 +57121,209.96,55.832 +57122,209.2,57.161 +57123,208.43,58.47 +57124,207.64,59.757 +57125,208.74,55.845 +57126,207.92,57.147 +57127,207.1,58.428 +57128,206.25,59.689 +57129,207.52,55.86 +57130,206.65,57.133 +57131,205.76,58.387 +57132,204.87,59.62 +57133,206.29,55.875 +57134,205.37,57.119 +57135,204.43,58.344 +57136,203.48,59.55 +57137,205.07,55.891 +57138,204.09,57.106 +57139,203.1,58.302 +57140,202.1,59.479 +57141,203.85,55.909 +57142,202.82,57.092 +57143,201.77,58.259 +57144,200.71,59.407 +57145,202.62,55.927 +57146,201.54,57.08 +57147,200.44,58.216 +57148,199.33,59.334 +57149,201.4,55.946 +57150,200.26,57.067 +57151,199.11,58.172 +57152,197.95,59.26 +57153,200.17,55.966 +57154,198.98,57.055 +57155,197.78,58.128 +57156,196.57,59.184 +57157,198.95,55.987 +57158,197.71,57.043 +57159,196.45,58.084 +57160,195.19,59.108 +57161,197.72,56.009 +57162,196.43,57.031 +57163,195.12,58.039 +57164,193.81,59.031 +57165,196.49,56.032 +57166,195.15,57.02 +57167,193.8,57.995 +57168,192.43,58.953 +57169,195.26,56.055 +57170,193.87,57.009 +57171,192.47,57.949 +57172,191.05,58.875 +57173,194.02,56.079 +57174,192.59,56.998 +57175,191.14,57.904 +57176,189.67,58.795 +57177,192.79,56.104 +57178,191.31,56.988 +57179,189.81,57.858 +57180,188.29,58.715 +57181,191.56,56.13 +57182,190.03,56.977 +57183,188.48,57.812 +57184,186.92,58.633 +57185,190.32,56.156 +57186,188.75,56.967 +57187,187.16,57.766 +57188,185.54,58.551 +57189,189.08,56.183 +57190,187.47,56.957 +57191,185.83,57.719 +57192,184.17,58.468 +57193,187.85,56.211 +57194,186.19,56.948 +57195,184.51,57.673 +57196,182.8,58.385 +57197,186.61,56.239 +57198,184.91,56.938 +57199,183.18,57.626 +57200,181.42,58.301 +57201,185.37,56.268 +57202,183.62,56.929 +57203,181.86,57.579 +57204,180.05,58.216 +57205,184.12,56.298 +57206,182.34,56.92 +57207,180.53,57.531 +57208,178.68,58.13 +57209,182.88,56.328 +57210,181.06,56.911 +57211,179.21,57.484 +57212,177.32,58.044 +57213,181.63,56.358 +57214,179.78,56.902 +57215,177.88,57.436 +57216,175.95,57.957 +57217,180.39,56.389 +57218,178.49,56.893 +57219,176.56,57.388 +57220,174.58,57.87 +57221,179.14,56.42 +57222,177.21,56.885 +57223,175.24,57.34 +57224,173.22,57.782 +57225,177.89,56.452 +57226,175.92,56.877 +57227,173.92,57.291 +57228,171.86,57.694 +57229,176.64,56.484 +57230,174.64,56.868 +57231,172.59,57.243 +57232,170.49,57.605 +57233,175.38,56.516 +57234,173.35,56.86 +57235,171.27,57.194 +57236,169.14,57.516 +57237,174.13,56.549 +57238,172.07,56.852 +57239,169.95,57.145 +57240,167.78,57.426 +57241,172.87,56.582 +57242,170.78,56.844 +57243,168.63,57.097 +57244,166.42,57.336 +57245,171.61,56.615 +57246,169.49,56.837 +57247,167.31,57.048 +57248,165.06,57.246 +57249,170.35,56.648 +57250,168.21,56.829 +57251,166,56.998 +57252,163.71,57.155 +57253,169.09,56.682 +57254,166.92,56.821 +57255,164.68,56.949 +57256,162.36,57.064 +57257,167.83,56.715 +57258,165.63,56.813 +57259,163.36,56.9 +57260,161.01,56.973 +57261,166.56,56.749 +57262,164.34,56.806 +57263,162.04,56.851 +57264,159.66,56.882 +57265,165.29,56.783 +57266,163.05,56.798 +57267,160.73,56.801 +57268,158.31,56.79 +57269,164.03,56.816 +57270,161.76,56.791 +57271,159.41,56.752 +57272,156.97,56.698 +57273,162.76,56.85 +57274,160.47,56.783 +57275,158.1,56.703 +57276,155.62,56.607 +57277,161.48,56.884 +57278,159.18,56.775 +57279,156.78,56.653 +57280,154.28,56.515 +57281,160.21,56.918 +57282,157.89,56.768 +57283,155.47,56.604 +57284,152.94,56.423 +57285,158.93,56.951 +57286,156.59,56.76 +57287,154.16,56.554 +57288,151.6,56.331 +57289,157.66,56.985 +57290,155.3,56.752 +57291,152.84,56.505 +57292,150.26,56.239 +57293,156.38,57.018 +57294,154.01,56.745 +57295,151.53,56.455 +57296,148.93,56.147 +57297,155.1,57.051 +57298,152.71,56.737 +57299,150.22,56.406 +57300,147.6,56.056 +57301,153.81,57.084 +57302,151.42,56.729 +57303,148.91,56.356 +57304,146.27,55.964 +57305,152.53,57.117 +57306,150.12,56.721 +57307,147.6,56.307 +57308,144.94,55.873 +57309,151.24,57.149 +57310,148.83,56.713 +57311,146.29,56.258 +57312,143.61,55.781 +57313,149.95,57.181 +57314,147.53,56.705 +57315,144.98,56.209 +57316,142.29,55.69 +57317,148.66,57.213 +57318,146.23,56.696 +57319,143.68,56.16 +57320,140.96,55.6 +57321,147.37,57.244 +57322,144.94,56.688 +57323,142.37,56.111 +57324,139.64,55.509 +57325,146.08,57.275 +57326,143.64,56.679 +57327,141.06,56.062 +57328,138.33,55.419 +57329,144.78,57.305 +57330,142.34,56.671 +57331,139.76,56.013 +57332,137.01,55.33 +57333,143.48,57.335 +57334,141.04,56.662 +57335,138.45,55.965 +57336,135.69,55.241 +57337,142.18,57.365 +57338,139.74,56.653 +57339,137.15,55.916 +57340,134.38,55.152 +57341,140.88,57.394 +57342,138.44,56.644 +57343,135.85,55.868 +57344,133.07,55.063 +57345,139.58,57.422 +57346,137.14,56.634 +57347,134.54,55.82 +57348,131.76,54.976 +57349,138.27,57.45 +57350,135.84,56.625 +57351,133.24,55.772 +57352,130.46,54.888 +57353,136.97,57.477 +57354,134.53,56.615 +57355,131.94,55.724 +57356,129.15,54.802 +57357,135.66,57.503 +57358,133.23,56.605 +57359,130.64,55.677 +57360,127.85,54.716 +57361,134.35,57.529 +57362,131.93,56.594 +57363,129.34,55.629 +57364,126.55,54.63 +57365,133.04,57.554 +57366,130.62,56.584 +57367,128.04,55.582 +57368,125.26,54.545 +57369,131.72,57.578 +57370,129.32,56.573 +57371,126.74,55.535 +57372,123.96,54.461 +57373,130.41,57.602 +57374,128.01,56.562 +57375,125.45,55.489 +57376,122.67,54.378 +57377,129.09,57.625 +57378,126.71,56.551 +57379,124.15,55.442 +57380,121.38,54.296 +57381,127.77,57.647 +57382,125.4,56.539 +57383,122.85,55.396 +57384,120.09,54.214 +57385,126.45,57.668 +57386,124.09,56.527 +57387,121.56,55.351 +57388,118.8,54.133 +57389,125.13,57.688 +57390,122.79,56.515 +57391,120.26,55.305 +57392,117.52,54.053 +57393,123.8,57.707 +57394,121.48,56.503 +57395,118.97,55.26 +57396,116.24,53.974 +57397,122.48,57.726 +57398,120.17,56.49 +57399,117.68,55.215 +57400,114.96,53.896 +57401,121.15,57.743 +57402,118.86,56.477 +57403,116.39,55.17 +57404,113.68,53.819 +57405,119.82,57.759 +57406,117.55,56.463 +57407,115.09,55.126 +57408,112.41,53.742 +57409,118.49,57.775 +57410,116.24,56.45 +57411,113.8,55.082 +57412,111.13,53.667 +57413,117.16,57.789 +57414,114.93,56.435 +57415,112.51,55.038 +57416,109.86,53.593 +57417,115.82,57.803 +57418,113.62,56.421 +57419,111.22,54.995 +57420,108.6,53.52 +57421,114.49,57.815 +57422,112.31,56.406 +57423,109.93,54.952 +57424,107.33,53.448 +57425,113.15,57.826 +57426,110.99,56.391 +57427,108.65,54.909 +57428,106.06,53.377 +57429,111.81,57.837 +57430,109.68,56.375 +57431,107.36,54.867 +57432,104.8,53.307 +57433,110.47,57.846 +57434,108.37,56.359 +57435,106.07,54.825 +57436,103.54,53.239 +57437,109.13,57.854 +57438,107.05,56.343 +57439,104.79,54.784 +57440,102.28,53.171 +57441,107.79,57.86 +57442,105.74,56.326 +57443,103.5,54.743 +57444,101.03,53.105 +57445,106.44,57.866 +57446,104.42,56.309 +57447,102.22,54.702 +57448,99.774,53.04 +57449,105.1,57.87 +57450,103.11,56.291 +57451,100.93,54.662 +57452,98.522,52.977 +57453,103.75,57.873 +57454,101.79,56.273 +57455,99.647,54.622 +57456,97.272,52.914 +57457,102.4,57.875 +57458,100.48,56.255 +57459,98.364,54.583 +57460,96.024,52.853 +57461,101.05,57.876 +57462,99.159,56.236 +57463,97.082,54.544 +57464,94.778,52.793 +57465,99.697,57.875 +57466,97.841,56.217 +57467,95.801,54.505 +57468,93.534,52.735 +57469,98.344,57.873 +57470,96.523,56.197 +57471,94.519,54.467 +57472,92.292,52.678 +57473,96.99,57.87 +57474,95.205,56.177 +57475,93.239,54.429 +57476,91.051,52.622 +57477,95.634,57.865 +57478,93.887,56.156 +57479,91.959,54.392 +57480,89.813,52.568 +57481,94.278,57.859 +57482,92.567,56.135 +57483,90.68,54.355 +57484,88.576,52.515 +57485,92.92,57.852 +57486,91.248,56.113 +57487,89.401,54.319 +57488,87.341,52.464 +57489,91.56,57.844 +57490,89.928,56.091 +57491,88.123,54.283 +57492,86.107,52.414 +57493,90.2,57.834 +57494,88.608,56.069 +57495,86.845,54.248 +57496,84.875,52.366 +57497,88.838,57.822 +57498,87.287,56.046 +57499,85.568,54.213 +57500,83.645,52.319 +57501,87.476,57.81 +57502,85.966,56.022 +57503,84.292,54.178 +57504,82.417,52.273 +57505,86.112,57.795 +57506,84.645,55.998 +57507,83.015,54.145 +57508,81.19,52.229 +57509,84.747,57.78 +57510,83.323,55.974 +57511,81.74,54.111 +57512,79.964,52.187 +57513,83.381,57.763 +57514,82.001,55.949 +57515,80.465,54.078 +57516,78.74,52.146 +57517,82.014,57.745 +57518,80.678,55.923 +57519,79.19,54.046 +57520,77.517,52.106 +57521,80.646,57.725 +57522,79.356,55.897 +57523,77.916,54.014 +57524,76.296,52.068 +57525,79.278,57.704 +57526,78.033,55.871 +57527,76.642,53.982 +57528,75.076,52.032 +57529,77.908,57.681 +57530,76.709,55.844 +57531,75.369,53.951 +57532,73.857,51.997 +57533,76.537,57.657 +57534,75.386,55.817 +57535,74.096,53.921 +57536,72.64,51.964 +57537,75.166,57.631 +57538,74.062,55.789 +57539,72.823,53.891 +57540,71.423,51.932 +57541,73.794,57.604 +57542,72.738,55.76 +57543,71.551,53.861 +57544,70.208,51.902 +57545,72.421,57.575 +57546,71.414,55.731 +57547,70.28,53.832 +57548,68.994,51.874 +57549,71.047,57.545 +57550,70.089,55.702 +57551,69.008,53.804 +57552,67.781,51.846 +57553,69.672,57.514 +57554,68.764,55.672 +57555,67.737,53.776 +57556,66.568,51.821 +57557,68.297,57.481 +57558,67.439,55.642 +57559,66.467,53.749 +57560,65.357,51.797 +57561,66.921,57.447 +57562,66.114,55.611 +57563,65.196,53.722 +57564,64.147,51.775 +57565,65.545,57.411 +57566,64.789,55.579 +57567,63.926,53.695 +57568,62.937,51.754 +57569,64.168,57.373 +57570,63.463,55.547 +57571,62.656,53.669 +57572,61.728,51.735 +57573,62.79,57.334 +57574,62.138,55.515 +57575,61.387,53.644 +57576,60.52,51.717 +57577,61.412,57.294 +57578,60.812,55.482 +57579,60.118,53.619 +57580,59.312,51.701 +57581,60.034,57.252 +57582,59.486,55.449 +57583,58.849,53.594 +57584,58.106,51.686 +57585,58.654,57.209 +57586,58.16,55.415 +57587,57.58,53.571 +57588,56.899,51.673 +57589,57.275,57.165 +57590,56.834,55.38 +57591,56.311,53.547 +57592,55.693,51.662 +57593,55.895,57.118 +57594,55.508,55.345 +57595,55.043,53.524 +57596,54.488,51.652 +57597,54.515,57.071 +57598,54.181,55.31 +57599,53.775,53.502 +57600,53.282,51.643 +57601,53.134,57.022 +57602,52.855,55.274 +57603,52.507,53.48 +57604,52.078,51.636 +57605,51.753,56.971 +57606,51.529,55.238 +57607,51.239,53.458 +57608,50.873,51.631 +57609,50.372,56.92 +57610,50.202,55.201 +57611,49.971,53.437 +57612,49.669,51.627 +57613,48.991,56.866 +57614,48.876,55.164 +57615,48.703,53.417 +57616,48.464,51.624 +57617,47.61,56.812 +57618,47.55,55.126 +57619,47.436,53.397 +57620,47.26,51.623 +57621,46.228,56.756 +57622,46.223,55.087 +57623,46.169,53.377 +57624,46.056,51.623 +57625,44.846,56.698 +57626,44.897,55.049 +57627,44.901,53.358 +57628,44.852,51.625 +57629,43.465,56.639 +57630,43.571,55.009 +57631,43.634,53.339 +57632,43.648,51.628 +57633,42.083,56.579 +57634,42.245,54.97 +57635,42.366,53.321 +57636,42.443,51.633 +57637,40.701,56.518 +57638,40.918,54.93 +57639,41.099,53.304 +57640,41.239,51.639 +57641,39.319,56.455 +57642,39.592,54.889 +57643,39.832,53.286 +57644,40.034,51.646 +57645,37.938,56.391 +57646,38.266,54.848 +57647,38.565,53.269 +57648,38.829,51.654 +57649,36.556,56.325 +57650,36.941,54.807 +57651,37.297,53.253 +57652,37.623,51.664 +57653,35.175,56.258 +57654,35.615,54.765 +57655,36.03,53.237 +57656,36.417,51.675 +57657,33.794,56.19 +57658,34.289,54.722 +57659,34.762,53.222 +57660,35.211,51.688 +57661,32.413,56.121 +57662,32.964,54.68 +57663,33.495,53.206 +57664,34.004,51.701 +57665,31.032,56.051 +57666,31.639,54.636 +57667,32.227,53.192 +57668,32.797,51.716 +57669,29.652,55.979 +57670,30.314,54.593 +57671,30.96,53.177 +57672,31.589,51.732 +57673,28.272,55.906 +57674,28.989,54.549 +57675,29.692,53.163 +57676,30.38,51.749 +57677,26.892,55.832 +57678,27.664,54.505 +57679,28.424,53.15 +57680,29.171,51.768 +57681,25.513,55.756 +57682,26.34,54.46 +57683,27.156,53.137 +57684,27.961,51.787 +57685,24.134,55.68 +57686,25.016,54.415 +57687,25.888,53.124 +57688,26.75,51.808 +57689,22.756,55.602 +57690,23.692,54.369 +57691,24.619,53.111 +57692,25.539,51.829 +57693,21.379,55.524 +57694,22.368,54.323 +57695,23.35,53.099 +57696,24.326,51.852 +57697,20.001,55.444 +57698,21.045,54.277 +57699,22.082,53.088 +57700,23.112,51.876 +57701,18.625,55.363 +57702,19.722,54.231 +57703,20.813,53.076 +57704,21.898,51.9 +57705,17.249,55.281 +57706,18.399,54.184 +57707,19.543,53.065 +57708,20.683,51.926 +57709,15.874,55.199 +57710,17.077,54.137 +57711,18.274,53.054 +57712,19.466,51.953 +57713,14.5,55.115 +57714,15.754,54.089 +57715,17.004,53.044 +57716,18.248,51.98 +57717,13.126,55.03 +57718,14.433,54.041 +57719,15.734,53.034 +57720,17.03,52.008 +57721,11.753,54.944 +57722,13.111,53.993 +57723,14.463,53.024 +57724,15.81,52.037 +57725,10.381,54.858 +57726,11.79,53.945 +57727,13.193,53.014 +57728,14.589,52.067 +57729,9.01,54.77 +57730,10.47,53.896 +57731,11.922,53.005 +57732,13.366,52.098 +57733,7.6398,54.682 +57734,9.1498,53.847 +57735,10.65,52.996 +57736,12.142,52.13 +57737,6.2706,54.593 +57738,7.83,53.798 +57739,9.3785,52.987 +57740,10.917,52.162 +57741,4.9024,54.503 +57742,6.5107,53.748 +57743,8.1064,52.978 +57744,9.6911,52.195 +57745,3.5352,54.412 +57746,5.1919,53.699 +57747,6.834,52.97 +57748,8.4634,52.228 +57749,2.1691,54.321 +57750,3.8735,53.649 +57751,5.5612,52.962 +57752,7.2343,52.262 +57753,0.80407,54.229 +57754,2.5556,53.599 +57755,4.288,52.954 +57756,6.0037,52.297 +57757,359.44,54.136 +57758,1.2381,53.548 +57759,3.0144,52.946 +57760,4.7716,52.332 +57761,358.08,54.043 +57762,359.92,53.498 +57763,1.7405,52.939 +57764,3.5381,52.368 +57765,356.72,53.949 +57766,358.6,53.447 +57767,0.46605,52.931 +57768,2.303,52.404 +57769,355.36,53.854 +57770,357.29,53.396 +57771,359.19,52.924 +57772,1.0664,52.441 +57773,354,53.759 +57774,355.97,53.345 +57775,357.92,52.917 +57776,359.83,52.478 +57777,352.64,53.663 +57778,354.66,53.294 +57779,356.64,52.91 +57780,358.59,52.515 +57781,351.28,53.567 +57782,353.34,53.242 +57783,355.36,52.903 +57784,357.35,52.553 +57785,349.93,53.471 +57786,352.03,53.191 +57787,354.09,52.897 +57788,356.1,52.591 +57789,348.58,53.374 +57790,350.72,53.139 +57791,352.81,52.89 +57792,354.86,52.629 +57793,347.22,53.276 +57794,349.4,53.087 +57795,351.53,52.884 +57796,353.61,52.668 +57797,345.87,53.179 +57798,348.09,53.035 +57799,350.25,52.877 +57800,352.36,52.707 +57801,344.52,53.081 +57802,346.78,52.984 +57803,348.98,52.871 +57804,351.11,52.746 +57805,343.18,52.983 +57806,345.47,52.932 +57807,347.7,52.865 +57808,349.86,52.785 +57809,341.83,52.884 +57810,344.16,52.879 +57811,346.42,52.859 +57812,348.61,52.824 +57813,340.49,52.786 +57814,342.85,52.827 +57815,345.14,52.852 +57816,347.35,52.863 +57817,339.14,52.687 +57818,341.54,52.775 +57819,343.86,52.846 +57820,346.1,52.902 +57821,337.8,52.588 +57822,340.23,52.723 +57823,342.58,52.84 +57824,344.84,52.942 +57825,336.47,52.489 +57826,338.93,52.671 +57827,341.29,52.834 +57828,343.58,52.981 +57829,335.13,52.39 +57830,337.62,52.619 +57831,340.01,52.828 +57832,342.32,53.02 +57833,333.79,52.291 +57834,336.31,52.567 +57835,338.73,52.822 +57836,341.05,53.059 +57837,332.46,52.192 +57838,335.01,52.515 +57839,337.44,52.816 +57840,339.79,53.098 +57841,331.13,52.093 +57842,333.7,52.463 +57843,336.16,52.809 +57844,338.52,53.136 +57845,329.8,51.994 +57846,332.4,52.411 +57847,334.88,52.803 +57848,337.25,53.175 +57849,328.47,51.896 +57850,331.09,52.359 +57851,333.59,52.797 +57852,335.98,53.213 +57853,327.15,51.797 +57854,329.79,52.307 +57855,332.31,52.79 +57856,334.7,53.251 +57857,325.82,51.699 +57858,328.49,52.255 +57859,331.02,52.784 +57860,333.43,53.288 +57861,324.5,51.601 +57862,327.19,52.203 +57863,329.73,52.777 +57864,332.15,53.325 +57865,323.18,51.503 +57866,325.89,52.152 +57867,328.45,52.77 +57868,330.87,53.362 +57869,321.86,51.406 +57870,324.59,52.1 +57871,327.16,52.763 +57872,329.59,53.398 +57873,320.55,51.309 +57874,323.29,52.049 +57875,325.87,52.756 +57876,328.31,53.434 +57877,319.23,51.212 +57878,321.99,51.998 +57879,324.58,52.749 +57880,327.03,53.47 +57881,317.92,51.116 +57882,320.69,51.947 +57883,323.29,52.742 +57884,325.74,53.505 +57885,316.61,51.021 +57886,319.4,51.896 +57887,322,52.734 +57888,324.45,53.539 +57889,315.3,50.925 +57890,318.1,51.845 +57891,320.71,52.726 +57892,323.16,53.573 +57893,314,50.831 +57894,316.8,51.795 +57895,319.42,52.718 +57896,321.87,53.606 +57897,312.7,50.737 +57898,315.51,51.745 +57899,318.13,52.71 +57900,320.58,53.638 +57901,311.4,50.644 +57902,314.22,51.695 +57903,316.83,52.702 +57904,319.28,53.67 +57905,310.1,50.551 +57906,312.92,51.645 +57907,315.54,52.693 +57908,317.98,53.701 +57909,308.8,50.459 +57910,311.63,51.596 +57911,314.25,52.685 +57912,316.68,53.731 +57913,307.51,50.368 +57914,310.34,51.546 +57915,312.95,52.675 +57916,315.38,53.761 +57917,306.22,50.278 +57918,309.05,51.497 +57919,311.66,52.666 +57920,314.08,53.79 +57921,304.93,50.188 +57922,307.76,51.449 +57923,310.36,52.656 +57924,312.78,53.818 +57925,303.64,50.1 +57926,306.47,51.4 +57927,309.06,52.647 +57928,311.47,53.845 +57929,302.36,50.012 +57930,305.18,51.352 +57931,307.77,52.636 +57932,310.16,53.871 +57933,301.07,49.925 +57934,303.89,51.305 +57935,306.47,52.626 +57936,308.85,53.896 +57937,299.79,49.839 +57938,302.61,51.257 +57939,305.17,52.615 +57940,307.54,53.921 +57941,298.51,49.754 +57942,301.32,51.21 +57943,303.87,52.604 +57944,306.23,53.944 +57945,297.24,49.671 +57946,300.03,51.163 +57947,302.58,52.593 +57948,304.91,53.966 +57949,295.97,49.588 +57950,298.75,51.117 +57951,301.28,52.581 +57952,303.6,53.988 +57953,294.69,49.506 +57954,297.46,51.071 +57955,299.98,52.569 +57956,302.28,54.008 +57957,293.43,49.426 +57958,296.18,51.025 +57959,298.67,52.556 +57960,300.96,54.027 +57961,292.16,49.346 +57962,294.9,50.98 +57963,297.37,52.543 +57964,299.64,54.045 +57965,290.9,49.268 +57966,293.62,50.935 +57967,296.07,52.53 +57968,298.31,54.062 +57969,289.63,49.191 +57970,292.34,50.891 +57971,294.77,52.517 +57972,296.99,54.078 +57973,288.37,49.116 +57974,291.06,50.847 +57975,293.47,52.503 +57976,295.66,54.093 +57977,287.12,49.041 +57978,289.78,50.803 +57979,292.16,52.488 +57980,294.33,54.106 +57981,285.86,48.968 +57982,288.5,50.76 +57983,290.86,52.473 +57984,293.01,54.118 +57985,284.61,48.896 +57986,287.22,50.717 +57987,289.56,52.458 +57988,291.67,54.129 +57989,283.36,48.826 +57990,285.94,50.675 +57991,288.25,52.442 +57992,290.34,54.139 +57993,282.11,48.757 +57994,284.66,50.633 +57995,286.95,52.426 +57996,289.01,54.148 +57997,280.86,48.69 +57998,283.39,50.592 +57999,285.64,52.41 +58000,287.67,54.155 +58001,279.62,48.624 +58002,282.11,50.551 +58003,284.33,52.393 +58004,286.34,54.161 +58005,278.38,48.559 +58006,280.84,50.51 +58007,283.03,52.376 +58008,285,54.165 +58009,277.14,48.496 +58010,279.56,50.47 +58011,281.72,52.358 +58012,283.66,54.169 +58013,275.9,48.434 +58014,278.29,50.431 +58015,280.41,52.339 +58016,282.32,54.17 +58017,274.66,48.374 +58018,277.02,50.392 +58019,279.1,52.321 +58020,280.98,54.171 +58021,273.43,48.316 +58022,275.75,50.354 +58023,277.8,52.301 +58024,279.63,54.17 +58025,272.2,48.259 +58026,274.47,50.316 +58027,276.49,52.282 +58028,278.29,54.168 +58029,270.97,48.204 +58030,273.2,50.278 +58031,275.18,52.261 +58032,276.94,54.164 +58033,269.74,48.15 +58034,271.93,50.242 +58035,273.87,52.241 +58036,275.59,54.159 +58037,268.51,48.098 +58038,270.66,50.205 +58039,272.56,52.219 +58040,274.25,54.152 +58041,267.29,48.048 +58042,269.39,50.17 +58043,271.25,52.198 +58044,272.9,54.144 +58045,266.06,47.999 +58046,268.13,50.134 +58047,269.94,52.176 +58048,271.55,54.134 +58049,264.84,47.952 +58050,266.86,50.1 +58051,268.63,52.153 +58052,270.19,54.123 +58053,263.62,47.907 +58054,265.59,50.065 +58055,267.31,52.13 +58056,268.84,54.111 +58057,262.41,47.863 +58058,264.32,50.032 +58059,266,52.106 +58060,267.49,54.097 +58061,261.19,47.821 +58062,263.06,49.999 +58063,264.69,52.082 +58064,266.13,54.081 +58065,259.98,47.781 +58066,261.79,49.966 +58067,263.38,52.057 +58068,264.78,54.064 +58069,258.76,47.742 +58070,260.53,49.935 +58071,262.06,52.032 +58072,263.42,54.045 +58073,257.55,47.706 +58074,259.26,49.903 +58075,260.75,52.006 +58076,262.06,54.025 +58077,256.34,47.671 +58078,258,49.872 +58079,259.44,51.979 +58080,260.7,54.003 +58081,255.13,47.638 +58082,256.73,49.842 +58083,258.12,51.953 +58084,259.34,53.98 +58085,253.93,47.606 +58086,255.47,49.813 +58087,256.81,51.925 +58088,257.98,53.955 +58089,252.72,47.576 +58090,254.21,49.784 +58091,255.5,51.897 +58092,256.62,53.928 +58093,251.51,47.549 +58094,252.95,49.755 +58095,254.18,51.869 +58096,255.26,53.9 +58097,250.31,47.522 +58098,251.68,49.727 +58099,252.87,51.84 +58100,253.9,53.871 +58101,249.11,47.498 +58102,250.42,49.7 +58103,251.55,51.81 +58104,252.53,53.84 +58105,247.91,47.475 +58106,249.16,49.673 +58107,250.24,51.78 +58108,251.17,53.807 +58109,246.71,47.455 +58110,247.9,49.647 +58111,248.92,51.75 +58112,249.8,53.773 +58113,245.51,47.436 +58114,246.64,49.621 +58115,247.61,51.719 +58116,248.44,53.737 +58117,244.31,47.418 +58118,245.38,49.596 +58119,246.29,51.687 +58120,247.07,53.699 +58121,243.11,47.403 +58122,244.12,49.572 +58123,244.97,51.655 +58124,245.7,53.66 +58125,241.92,47.389 +58126,242.86,49.548 +58127,243.66,51.622 +58128,244.34,53.619 +58129,240.72,47.377 +58130,241.6,49.525 +58131,242.34,51.589 +58132,242.97,53.577 +58133,239.52,47.366 +58134,240.34,49.502 +58135,241.03,51.555 +58136,241.6,53.534 +58137,238.33,47.358 +58138,239.08,49.48 +58139,239.71,51.521 +58140,240.23,53.488 +58141,237.13,47.351 +58142,237.82,49.459 +58143,238.39,51.486 +58144,238.86,53.441 +58145,235.94,47.346 +58146,236.57,49.437 +58147,237.08,51.451 +58148,237.49,53.393 +58149,234.75,47.342 +58150,235.31,49.417 +58151,235.76,51.415 +58152,236.12,53.343 +58153,233.55,47.341 +58154,234.05,49.397 +58155,234.44,51.378 +58156,234.75,53.291 +58157,232.36,47.34 +58158,232.79,49.378 +58159,233.13,51.342 +58160,233.38,53.238 +58161,231.17,47.342 +58162,231.54,49.359 +58163,231.81,51.304 +58164,232.01,53.184 +58165,229.98,47.345 +58166,230.28,49.341 +58167,230.49,51.266 +58168,230.64,53.128 +58169,228.78,47.35 +58170,229.02,49.323 +58171,229.18,51.228 +58172,229.27,53.07 +58173,227.59,47.356 +58174,227.76,49.306 +58175,227.86,51.189 +58176,227.9,53.011 +58177,226.4,47.364 +58178,226.51,49.289 +58179,226.55,51.15 +58180,226.53,52.95 +58181,225.21,47.374 +58182,225.25,49.273 +58183,225.23,51.11 +58184,225.16,52.888 +58185,224.01,47.385 +58186,223.99,49.258 +58187,223.91,51.07 +58188,223.79,52.825 +58189,222.82,47.397 +58190,222.73,49.243 +58191,222.6,51.029 +58192,222.42,52.76 +58193,221.63,47.411 +58194,221.48,49.228 +58195,221.28,50.988 +58196,221.04,52.694 +58197,220.44,47.427 +58198,220.22,49.214 +58199,219.96,50.946 +58200,219.67,52.626 +58201,219.24,47.444 +58202,218.96,49.2 +58203,218.65,50.904 +58204,218.3,52.557 +58205,218.05,47.462 +58206,217.71,49.187 +58207,217.33,50.861 +58208,216.93,52.486 +58209,216.85,47.482 +58210,216.45,49.175 +58211,216.02,50.818 +58212,215.56,52.414 +58213,215.66,47.503 +58214,215.19,49.162 +58215,214.7,50.774 +58216,214.19,52.341 +58217,214.46,47.525 +58218,213.94,49.151 +58219,213.39,50.73 +58220,212.82,52.267 +58221,213.27,47.549 +58222,212.68,49.14 +58223,212.07,50.686 +58224,211.45,52.191 +58225,212.07,47.574 +58226,211.42,49.129 +58227,210.76,50.641 +58228,210.08,52.114 +58229,210.87,47.601 +58230,210.16,49.118 +58231,209.44,50.596 +58232,208.71,52.035 +58233,209.68,47.628 +58234,208.91,49.108 +58235,208.13,50.551 +58236,207.35,51.956 +58237,208.48,47.657 +58238,207.65,49.099 +58239,206.82,50.505 +58240,205.98,51.875 +58241,207.28,47.687 +58242,206.39,49.09 +58243,205.5,50.458 +58244,204.61,51.793 +58245,206.07,47.718 +58246,205.13,49.081 +58247,204.19,50.412 +58248,203.24,51.709 +58249,204.87,47.75 +58250,203.87,49.073 +58251,202.88,50.364 +58252,201.88,51.625 +58253,203.67,47.783 +58254,202.61,49.065 +58255,201.56,50.317 +58256,200.51,51.539 +58257,202.47,47.818 +58258,201.36,49.058 +58259,200.25,50.269 +58260,199.15,51.453 +58261,201.26,47.853 +58262,200.1,49.05 +58263,198.94,50.221 +58264,197.78,51.365 +58265,200.05,47.889 +58266,198.84,49.044 +58267,197.63,50.173 +58268,196.42,51.276 +58269,198.85,47.926 +58270,197.58,49.037 +58271,196.32,50.124 +58272,195.06,51.187 +58273,197.64,47.964 +58274,196.32,49.031 +58275,195,50.075 +58276,193.7,51.096 +58277,196.43,48.003 +58278,195.06,49.025 +58279,193.69,50.026 +58280,192.33,51.004 +58281,195.22,48.043 +58282,193.8,49.02 +58283,192.38,49.976 +58284,190.97,50.911 +58285,194,48.084 +58286,192.54,49.014 +58287,191.07,49.926 +58288,189.62,50.818 +58289,192.79,48.125 +58290,191.28,49.009 +58291,189.76,49.876 +58292,188.26,50.723 +58293,191.58,48.167 +58294,190.01,49.005 +58295,188.46,49.825 +58296,186.9,50.628 +58297,190.36,48.21 +58298,188.75,49 +58299,187.15,49.775 +58300,185.54,50.532 +58301,189.14,48.253 +58302,187.49,48.996 +58303,185.84,49.724 +58304,184.19,50.435 +58305,187.92,48.297 +58306,186.23,48.992 +58307,184.53,49.673 +58308,182.83,50.338 +58309,186.7,48.342 +58310,184.96,48.989 +58311,183.23,49.622 +58312,181.48,50.239 +58313,185.48,48.387 +58314,183.7,48.985 +58315,181.92,49.57 +58316,180.13,50.14 +58317,184.25,48.432 +58318,182.44,48.982 +58319,180.61,49.518 +58320,178.78,50.041 +58321,183.03,48.478 +58322,181.17,48.979 +58323,179.31,49.467 +58324,177.43,49.94 +58325,181.8,48.525 +58326,179.91,48.976 +58327,178,49.415 +58328,176.08,49.84 +58329,180.57,48.572 +58330,178.64,48.973 +58331,176.7,49.363 +58332,174.74,49.738 +58333,179.34,48.619 +58334,177.38,48.971 +58335,175.4,49.31 +58336,173.39,49.636 +58337,178.1,48.666 +58338,176.11,48.968 +58339,174.09,49.258 +58340,172.05,49.534 +58341,176.87,48.714 +58342,174.85,48.966 +58343,172.79,49.205 +58344,170.7,49.431 +58345,175.63,48.762 +58346,173.58,48.964 +58347,171.49,49.153 +58348,169.36,49.328 +58349,174.4,48.81 +58350,172.31,48.961 +58351,170.19,49.1 +58352,168.02,49.225 +58353,173.16,48.858 +58354,171.04,48.959 +58355,168.89,49.048 +58356,166.69,49.121 +58357,171.91,48.907 +58358,169.77,48.958 +58359,167.59,48.995 +58360,165.35,49.017 +58361,170.67,48.955 +58362,168.5,48.956 +58363,166.29,48.942 +58364,164.01,48.912 +58365,169.43,49.003 +58366,167.24,48.954 +58367,164.99,48.889 +58368,162.68,48.808 +58369,168.18,49.052 +58370,165.97,48.952 +58371,163.69,48.836 +58372,161.35,48.703 +58373,166.93,49.1 +58374,164.69,48.95 +58375,162.39,48.784 +58376,160.02,48.598 +58377,165.68,49.149 +58378,163.42,48.949 +58379,161.1,48.731 +58380,158.69,48.493 +58381,164.43,49.197 +58382,162.15,48.947 +58383,159.8,48.678 +58384,157.37,48.389 +58385,163.17,49.245 +58386,160.88,48.945 +58387,158.51,48.625 +58388,156.04,48.284 +58389,161.92,49.293 +58390,159.61,48.943 +58391,157.21,48.573 +58392,154.72,48.179 +58393,160.66,49.34 +58394,158.33,48.941 +58395,155.92,48.52 +58396,153.4,48.074 +58397,159.4,49.388 +58398,157.06,48.939 +58399,154.62,48.468 +58400,152.08,47.969 +58401,158.14,49.435 +58402,155.79,48.937 +58403,153.33,48.415 +58404,150.76,47.865 +58405,156.87,49.481 +58406,154.51,48.935 +58407,152.04,48.363 +58408,149.45,47.761 +58409,155.61,49.528 +58410,153.23,48.933 +58411,150.75,48.311 +58412,148.13,47.657 +58413,154.34,49.574 +58414,151.96,48.931 +58415,149.46,48.259 +58416,146.82,47.553 +58417,153.07,49.619 +58418,150.68,48.929 +58419,148.17,48.207 +58420,145.51,47.45 +58421,151.8,49.664 +58422,149.4,48.926 +58423,146.88,48.155 +58424,144.21,47.347 +58425,150.52,49.708 +58426,148.13,48.924 +58427,145.59,48.104 +58428,142.9,47.244 +58429,149.25,49.752 +58430,146.85,48.921 +58431,144.31,48.052 +58432,141.6,47.142 +58433,147.97,49.795 +58434,145.57,48.918 +58435,143.02,48.001 +58436,140.3,47.041 +58437,146.69,49.838 +58438,144.29,48.915 +58439,141.73,47.95 +58440,139,46.94 +58441,145.41,49.88 +58442,143.01,48.911 +58443,140.45,47.9 +58444,137.71,46.84 +58445,144.13,49.921 +58446,141.73,48.908 +58447,139.17,47.849 +58448,136.41,46.74 +58449,142.85,49.962 +58450,140.45,48.904 +58451,137.88,47.799 +58452,135.12,46.641 +58453,141.56,50.001 +58454,139.17,48.9 +58455,136.6,47.749 +58456,133.83,46.543 +58457,140.27,50.04 +58458,137.88,48.896 +58459,135.32,47.7 +58460,132.54,46.445 +58461,138.98,50.079 +58462,136.6,48.891 +58463,134.04,47.65 +58464,131.26,46.348 +58465,137.69,50.116 +58466,135.32,48.887 +58467,132.76,47.601 +58468,129.97,46.252 +58469,136.4,50.152 +58470,134.03,48.882 +58471,131.48,47.553 +58472,128.69,46.157 +58473,135.1,50.188 +58474,132.75,48.876 +58475,130.2,47.505 +58476,127.42,46.063 +58477,133.81,50.222 +58478,131.46,48.871 +58479,128.92,47.457 +58480,126.14,45.97 +58481,132.51,50.256 +58482,130.18,48.865 +58483,127.64,47.409 +58484,124.87,45.878 +58485,131.21,50.288 +58486,128.89,48.859 +58487,126.37,47.362 +58488,123.6,45.787 +58489,129.9,50.32 +58490,127.6,48.852 +58491,125.09,47.315 +58492,122.33,45.698 +58493,128.6,50.35 +58494,126.31,48.845 +58495,123.82,47.269 +58496,121.06,45.609 +58497,127.3,50.379 +58498,125.03,48.838 +58499,122.54,47.223 +58500,119.8,45.521 +58501,125.99,50.408 +58502,123.74,48.831 +58503,121.27,47.177 +58504,118.53,45.435 +58505,124.68,50.435 +58506,122.45,48.823 +58507,120,47.132 +58508,117.27,45.35 +58509,123.37,50.46 +58510,121.16,48.814 +58511,118.73,47.087 +58512,116.02,45.266 +58513,122.06,50.485 +58514,119.87,48.806 +58515,117.46,47.043 +58516,114.76,45.184 +58517,120.75,50.509 +58518,118.58,48.797 +58519,116.19,46.999 +58520,113.51,45.103 +58521,119.43,50.531 +58522,117.29,48.787 +58523,114.92,46.956 +58524,112.26,45.023 +58525,118.11,50.552 +58526,116,48.777 +58527,113.65,46.913 +58528,111.01,44.945 +58529,116.8,50.571 +58530,114.7,48.767 +58531,112.38,46.871 +58532,109.76,44.868 +58533,115.48,50.59 +58534,113.41,48.756 +58535,111.11,46.829 +58536,108.52,44.793 +58537,114.16,50.607 +58538,112.12,48.745 +58539,109.85,46.788 +58540,107.28,44.719 +58541,112.83,50.622 +58542,110.82,48.733 +58543,108.58,46.747 +58544,106.04,44.647 +58545,111.51,50.637 +58546,109.53,48.721 +58547,107.32,46.707 +58548,104.8,44.576 +58549,110.18,50.649 +58550,108.23,48.709 +58551,106.05,46.667 +58552,103.57,44.507 +58553,108.86,50.661 +58554,106.94,48.696 +58555,104.79,46.628 +58556,102.34,44.44 +58557,107.53,50.671 +58558,105.64,48.682 +58559,103.53,46.589 +58560,101.11,44.374 +58561,106.2,50.679 +58562,104.35,48.668 +58563,102.26,46.551 +58564,99.878,44.31 +58565,104.87,50.686 +58566,103.05,48.654 +58567,101,46.514 +58568,98.652,44.248 +58569,103.54,50.692 +58570,101.76,48.639 +58571,99.741,46.477 +58572,97.428,44.188 +58573,102.21,50.696 +58574,100.46,48.623 +58575,98.481,46.441 +58576,96.206,44.129 +58577,100.87,50.699 +58578,99.16,48.607 +58579,97.222,46.405 +58580,94.986,44.072 +58581,99.537,50.7 +58582,97.862,48.591 +58583,95.963,46.37 +58584,93.769,44.017 +58585,98.201,50.699 +58586,96.564,48.574 +58587,94.704,46.336 +58588,92.553,43.964 +58589,96.864,50.697 +58590,95.265,48.557 +58591,93.447,46.302 +58592,91.339,43.913 +58593,95.525,50.693 +58594,93.966,48.539 +58595,92.19,46.269 +58596,90.127,43.863 +58597,94.185,50.688 +58598,92.667,48.52 +58599,90.933,46.236 +58600,88.916,43.816 +58601,92.845,50.681 +58602,91.367,48.501 +58603,89.677,46.205 +58604,87.708,43.77 +58605,91.503,50.672 +58606,90.067,48.481 +58607,88.422,46.173 +58608,86.501,43.727 +58609,90.161,50.662 +58610,88.767,48.461 +58611,87.167,46.143 +58612,85.296,43.685 +58613,88.817,50.651 +58614,87.466,48.441 +58615,85.913,46.113 +58616,84.093,43.645 +58617,87.473,50.637 +58618,86.165,48.419 +58619,84.659,46.083 +58620,82.891,43.607 +58621,86.127,50.622 +58622,84.864,48.398 +58623,83.406,46.055 +58624,81.691,43.572 +58625,84.781,50.606 +58626,83.563,48.375 +58627,82.153,46.027 +58628,80.492,43.538 +58629,83.434,50.587 +58630,82.261,48.352 +58631,80.901,45.999 +58632,79.294,43.506 +58633,82.086,50.567 +58634,80.959,48.329 +58635,79.649,45.972 +58636,78.099,43.476 +58637,80.738,50.546 +58638,79.657,48.305 +58639,78.398,45.946 +58640,76.904,43.449 +58641,79.389,50.522 +58642,78.355,48.28 +58643,77.147,45.921 +58644,75.711,43.423 +58645,78.039,50.497 +58646,77.052,48.255 +58647,75.896,45.896 +58648,74.519,43.399 +58649,76.688,50.47 +58650,75.749,48.23 +58651,74.646,45.872 +58652,73.328,43.377 +58653,75.337,50.442 +58654,74.446,48.204 +58655,73.396,45.849 +58656,72.138,43.358 +58657,73.985,50.412 +58658,73.143,48.177 +58659,72.147,45.826 +58660,70.949,43.34 +58661,72.633,50.38 +58662,71.84,48.149 +58663,70.898,45.804 +58664,69.762,43.324 +58665,71.28,50.347 +58666,70.537,48.122 +58667,69.649,45.783 +58668,68.575,43.311 +58669,69.927,50.312 +58670,69.233,48.093 +58671,68.401,45.762 +58672,67.389,43.299 +58673,68.573,50.275 +58674,67.93,48.064 +58675,67.153,45.742 +58676,66.204,43.29 +58677,67.219,50.236 +58678,66.626,48.035 +58679,65.905,45.722 +58680,65.019,43.282 +58681,65.864,50.196 +58682,65.322,48.004 +58683,64.658,45.704 +58684,63.836,43.276 +58685,64.509,50.154 +58686,64.018,47.974 +58687,63.411,45.686 +58688,62.652,43.273 +58689,63.154,50.111 +58690,62.714,47.943 +58691,62.164,45.668 +58692,61.47,43.271 +58693,61.799,50.066 +58694,61.41,47.911 +58695,60.917,45.651 +58696,60.288,43.271 +58697,60.443,50.019 +58698,60.107,47.879 +58699,59.67,45.635 +58700,59.106,43.273 +58701,59.087,49.97 +58702,58.803,47.846 +58703,58.424,45.62 +58704,57.925,43.278 +58705,57.731,49.92 +58706,57.499,47.812 +58707,57.178,45.605 +58708,56.744,43.284 +58709,56.375,49.869 +58710,56.195,47.778 +58711,55.932,45.591 +58712,55.563,43.291 +58713,55.018,49.815 +58714,54.891,47.744 +58715,54.686,45.577 +58716,54.382,43.301 +58717,53.662,49.76 +58718,53.587,47.709 +58719,53.44,45.564 +58720,53.202,43.313 +58721,52.305,49.704 +58722,52.283,47.674 +58723,52.194,45.552 +58724,52.021,43.326 +58725,50.949,49.646 +58726,50.98,47.638 +58727,50.949,45.54 +58728,50.84,43.342 +58729,49.592,49.586 +58730,49.676,47.601 +58731,49.703,45.529 +58732,49.66,43.359 +58733,48.236,49.525 +58734,48.372,47.564 +58735,48.458,45.519 +58736,48.479,43.377 +58737,46.88,49.462 +58738,47.069,47.527 +58739,47.212,45.509 +58740,47.298,43.398 +58741,45.524,49.397 +58742,45.766,47.489 +58743,45.967,45.499 +58744,46.116,43.42 +58745,44.168,49.332 +58746,44.463,47.45 +58747,44.721,45.491 +58748,44.935,43.444 +58749,42.812,49.264 +58750,43.16,47.411 +58751,43.476,45.483 +58752,43.753,43.47 +58753,41.456,49.195 +58754,41.857,47.372 +58755,42.23,45.475 +58756,42.57,43.497 +58757,40.101,49.125 +58758,40.554,47.332 +58759,40.985,45.468 +58760,41.387,43.526 +58761,38.746,49.053 +58762,39.252,47.291 +58763,39.739,45.461 +58764,40.203,43.556 +58765,37.392,48.98 +58766,37.95,47.251 +58767,38.493,45.456 +58768,39.019,43.588 +58769,36.038,48.905 +58770,36.648,47.209 +58771,37.248,45.45 +58772,37.834,43.622 +58773,34.684,48.829 +58774,35.346,47.168 +58775,36.002,45.445 +58776,36.648,43.656 +58777,33.331,48.752 +58778,34.045,47.126 +58779,34.756,45.441 +58780,35.461,43.693 +58781,31.978,48.673 +58782,32.744,47.083 +58783,33.509,45.437 +58784,34.274,43.731 +58785,30.626,48.593 +58786,31.443,47.04 +58787,32.263,45.434 +58788,33.085,43.77 +58789,29.274,48.511 +58790,30.143,46.997 +58791,31.016,45.431 +58792,31.896,43.81 +58793,27.923,48.429 +58794,28.842,46.953 +58795,29.769,45.429 +58796,30.705,43.852 +58797,26.573,48.345 +58798,27.542,46.909 +58799,28.522,45.427 +58800,29.514,43.895 +58801,25.223,48.259 +58802,26.243,46.865 +58803,27.275,45.425 +58804,28.321,43.939 +58805,23.875,48.173 +58806,24.944,46.82 +58807,26.028,45.424 +58808,27.128,43.984 +58809,22.526,48.086 +58810,23.645,46.774 +58811,24.78,45.424 +58812,25.933,44.031 +58813,21.179,47.997 +58814,22.347,46.729 +58815,23.532,45.423 +58816,24.737,44.079 +58817,19.832,47.907 +58818,21.049,46.683 +58819,22.284,45.424 +58820,23.539,44.127 +58821,18.487,47.816 +58822,19.751,46.637 +58823,21.035,45.424 +58824,22.34,44.177 +58825,17.142,47.724 +58826,18.454,46.59 +58827,19.786,45.425 +58828,21.14,44.228 +58829,15.798,47.631 +58830,17.157,46.544 +58831,18.537,45.427 +58832,19.939,44.279 +58833,14.455,47.537 +58834,15.861,46.497 +58835,17.287,45.428 +58836,18.736,44.332 +58837,13.113,47.442 +58838,14.565,46.449 +58839,16.037,45.431 +58840,17.531,44.385 +58841,11.772,47.346 +58842,13.27,46.402 +58843,14.787,45.433 +58844,16.325,44.44 +58845,10.433,47.249 +58846,11.975,46.354 +58847,13.536,45.436 +58848,15.118,44.495 +58849,9.094,47.151 +58850,10.68,46.306 +58851,12.285,45.439 +58852,13.909,44.551 +58853,7.7565,47.053 +58854,9.3867,46.258 +58855,11.033,45.442 +58856,12.698,44.607 +58857,6.4201,46.954 +58858,8.0933,46.209 +58859,9.7814,45.446 +58860,11.486,44.664 +58861,5.085,46.853 +58862,6.8006,46.16 +58863,8.529,45.45 +58864,10.272,44.722 +58865,3.7512,46.753 +58866,5.5083,46.112 +58867,7.2762,45.454 +58868,9.056,44.78 +58869,2.4186,46.651 +58870,4.2167,46.063 +58871,6.023,45.458 +58872,7.8386,44.839 +58873,1.0874,46.549 +58874,2.9256,46.013 +58875,4.7693,45.463 +58876,6.6196,44.898 +58877,359.76,46.446 +58878,1.635,45.964 +58879,3.5152,45.468 +58880,5.3988,44.958 +58881,358.43,46.343 +58882,0.34511,45.915 +58883,2.2605,45.473 +58884,4.1762,45.018 +58885,357.1,46.239 +58886,359.06,45.865 +58887,1.0054,45.478 +58888,2.9518,45.079 +58889,355.78,46.134 +58890,357.77,45.815 +58891,359.75,45.483 +58892,1.7256,45.14 +58893,354.45,46.029 +58894,356.48,45.766 +58895,358.49,45.489 +58896,0.49764,45.201 +58897,353.13,45.924 +58898,355.19,45.716 +58899,357.24,45.495 +58900,359.27,45.262 +58901,351.81,45.818 +58902,353.9,45.666 +58903,355.98,45.501 +58904,358.04,45.324 +58905,350.49,45.712 +58906,352.62,45.616 +58907,354.72,45.507 +58908,356.8,45.385 +58909,349.17,45.606 +58910,351.33,45.566 +58911,353.46,45.513 +58912,355.57,45.447 +58913,347.85,45.499 +58914,350.05,45.516 +58915,352.21,45.519 +58916,354.33,45.509 +58917,346.54,45.392 +58918,348.76,45.466 +58919,350.95,45.525 +58920,353.09,45.571 +58921,345.23,45.285 +58922,347.48,45.416 +58923,349.69,45.531 +58924,351.85,45.632 +58925,343.92,45.178 +58926,346.2,45.366 +58927,348.43,45.538 +58928,350.61,45.694 +58929,342.61,45.071 +58930,344.92,45.316 +58931,347.17,45.544 +58932,349.36,45.756 +58933,341.3,44.964 +58934,343.63,45.266 +58935,345.9,45.55 +58936,348.12,45.817 +58937,339.99,44.856 +58938,342.35,45.217 +58939,344.64,45.557 +58940,346.87,45.878 +58941,338.69,44.749 +58942,341.07,45.167 +58943,343.38,45.563 +58944,345.62,45.939 +58945,337.39,44.642 +58946,339.79,45.117 +58947,342.12,45.569 +58948,344.36,46 +58949,336.09,44.535 +58950,338.52,45.068 +58951,340.85,45.576 +58952,343.11,46.061 +58953,334.79,44.428 +58954,337.24,45.019 +58955,339.59,45.582 +58956,341.85,46.121 +58957,333.49,44.322 +58958,335.96,44.969 +58959,338.32,45.588 +58960,340.6,46.18 +58961,332.2,44.215 +58962,334.68,44.92 +58963,337.06,45.594 +58964,339.34,46.24 +58965,330.91,44.109 +58966,333.41,44.872 +58967,335.79,45.6 +58968,338.07,46.298 +58969,329.62,44.004 +58970,332.13,44.823 +58971,334.53,45.606 +58972,336.81,46.357 +58973,328.33,43.899 +58974,330.86,44.775 +58975,333.26,45.612 +58976,335.54,46.414 +58977,327.04,43.794 +58978,329.59,44.726 +58979,331.99,45.618 +58980,334.28,46.471 +58981,325.76,43.69 +58982,328.31,44.679 +58983,330.72,45.623 +58984,333.01,46.528 +58985,324.48,43.586 +58986,327.04,44.631 +58987,329.45,45.628 +58988,331.74,46.584 +58989,323.2,43.483 +58990,325.77,44.583 +58991,328.18,45.634 +58992,330.46,46.639 +58993,321.92,43.381 +58994,324.5,44.536 +58995,326.91,45.639 +58996,329.19,46.693 +58997,320.65,43.279 +58998,323.23,44.489 +58999,325.64,45.643 +59000,327.91,46.747 +59001,319.37,43.178 +59002,321.96,44.443 +59003,324.37,45.648 +59004,326.63,46.8 +59005,318.1,43.078 +59006,320.69,44.397 +59007,323.1,45.652 +59008,325.35,46.852 +59009,316.83,42.979 +59010,319.43,44.351 +59011,321.83,45.656 +59012,324.07,46.903 +59013,315.57,42.881 +59014,318.16,44.305 +59015,320.56,45.66 +59016,322.79,46.953 +59017,314.3,42.783 +59018,316.9,44.26 +59019,319.28,45.664 +59020,321.5,47.002 +59021,313.04,42.687 +59022,315.63,44.216 +59023,318.01,45.667 +59024,320.21,47.05 +59025,311.78,42.591 +59026,314.37,44.171 +59027,316.73,45.67 +59028,318.92,47.098 +59029,310.52,42.497 +59030,313.1,44.127 +59031,315.46,45.673 +59032,317.63,47.144 +59033,309.27,42.404 +59034,311.84,44.084 +59035,314.18,45.675 +59036,316.34,47.189 +59037,308.02,42.312 +59038,310.58,44.041 +59039,312.91,45.677 +59040,315.05,47.233 +59041,306.77,42.221 +59042,309.32,43.998 +59043,311.63,45.679 +59044,313.75,47.276 +59045,305.52,42.131 +59046,308.06,43.956 +59047,310.35,45.68 +59048,312.45,47.318 +59049,304.27,42.043 +59050,306.8,43.914 +59051,309.08,45.681 +59052,311.16,47.359 +59053,303.03,41.956 +59054,305.54,43.873 +59055,307.8,45.682 +59056,309.86,47.398 +59057,301.79,41.871 +59058,304.28,43.832 +59059,306.52,45.682 +59060,308.55,47.436 +59061,300.55,41.786 +59062,303.02,43.792 +59063,305.24,45.682 +59064,307.25,47.473 +59065,299.31,41.704 +59066,301.77,43.753 +59067,303.96,45.682 +59068,305.95,47.509 +59069,298.08,41.623 +59070,300.51,43.713 +59071,302.68,45.681 +59072,304.64,47.543 +59073,296.84,41.543 +59074,299.26,43.675 +59075,301.4,45.679 +59076,303.33,47.576 +59077,295.61,41.465 +59078,298,43.637 +59079,300.12,45.678 +59080,302.02,47.608 +59081,294.38,41.389 +59082,296.75,43.599 +59083,298.84,45.675 +59084,300.71,47.638 +59085,293.16,41.314 +59086,295.49,43.563 +59087,297.55,45.673 +59088,299.4,47.666 +59089,291.93,41.241 +59090,294.24,43.526 +59091,296.27,45.67 +59092,298.09,47.694 +59093,290.71,41.17 +59094,292.99,43.491 +59095,294.99,45.666 +59096,296.77,47.72 +59097,289.49,41.1 +59098,291.74,43.456 +59099,293.7,45.662 +59100,295.46,47.744 +59101,288.28,41.033 +59102,290.49,43.421 +59103,292.42,45.658 +59104,294.14,47.767 +59105,287.06,40.967 +59106,289.24,43.388 +59107,291.14,45.653 +59108,292.82,47.789 +59109,285.85,40.903 +59110,287.99,43.354 +59111,289.85,45.647 +59112,291.5,47.808 +59113,284.64,40.841 +59114,286.74,43.322 +59115,288.57,45.641 +59116,290.18,47.827 +59117,283.43,40.781 +59118,285.49,43.29 +59119,287.28,45.635 +59120,288.86,47.843 +59121,282.22,40.723 +59122,284.25,43.259 +59123,286,45.628 +59124,287.54,47.859 +59125,281.01,40.667 +59126,283,43.229 +59127,284.71,45.621 +59128,286.21,47.872 +59129,279.81,40.613 +59130,281.75,43.199 +59131,283.42,45.613 +59132,284.89,47.884 +59133,278.61,40.561 +59134,280.51,43.17 +59135,282.14,45.604 +59136,283.56,47.894 +59137,277.41,40.511 +59138,279.26,43.141 +59139,280.85,45.595 +59140,282.23,47.903 +59141,276.21,40.463 +59142,278.02,43.114 +59143,279.56,45.585 +59144,280.91,47.91 +59145,275.01,40.417 +59146,276.78,43.087 +59147,278.27,45.575 +59148,279.58,47.915 +59149,273.82,40.374 +59150,275.53,43.06 +59151,276.99,45.565 +59152,278.25,47.919 +59153,272.62,40.332 +59154,274.29,43.035 +59155,275.7,45.553 +59156,276.92,47.921 +59157,271.43,40.293 +59158,273.05,43.01 +59159,274.41,45.542 +59160,275.59,47.921 +59161,270.24,40.256 +59162,271.81,42.986 +59163,273.12,45.529 +59164,274.25,47.92 +59165,269.05,40.221 +59166,270.56,42.962 +59167,271.83,45.516 +59168,272.92,47.917 +59169,267.87,40.188 +59170,269.32,42.94 +59171,270.54,45.503 +59172,271.59,47.912 +59173,266.68,40.158 +59174,268.08,42.918 +59175,269.25,45.489 +59176,270.25,47.905 +59177,265.5,40.13 +59178,266.84,42.897 +59179,267.96,45.474 +59180,268.92,47.897 +59181,264.31,40.104 +59182,265.6,42.876 +59183,266.67,45.459 +59184,267.58,47.886 +59185,263.13,40.08 +59186,264.36,42.857 +59187,265.38,45.443 +59188,266.25,47.875 +59189,261.95,40.059 +59190,263.12,42.838 +59191,264.09,45.427 +59192,264.91,47.861 +59193,260.77,40.039 +59194,261.89,42.82 +59195,262.8,45.41 +59196,263.57,47.845 +59197,259.59,40.023 +59198,260.65,42.802 +59199,261.51,45.393 +59200,262.23,47.828 +59201,258.41,40.008 +59202,259.41,42.785 +59203,260.22,45.375 +59204,260.9,47.809 +59205,257.23,39.996 +59206,258.17,42.77 +59207,258.93,45.356 +59208,259.56,47.788 +59209,256.06,39.986 +59210,256.93,42.754 +59211,257.64,45.337 +59212,258.22,47.766 +59213,254.88,39.978 +59214,255.7,42.74 +59215,256.35,45.317 +59216,256.88,47.742 +59217,253.71,39.972 +59218,254.46,42.726 +59219,255.06,45.297 +59220,255.54,47.716 +59221,252.53,39.969 +59222,253.22,42.714 +59223,253.77,45.276 +59224,254.2,47.688 +59225,251.36,39.968 +59226,251.99,42.701 +59227,252.48,45.254 +59228,252.86,47.658 +59229,250.18,39.969 +59230,250.75,42.69 +59231,251.18,45.232 +59232,251.52,47.627 +59233,249.01,39.973 +59234,249.51,42.679 +59235,249.89,45.21 +59236,250.18,47.594 +59237,247.84,39.978 +59238,248.28,42.67 +59239,248.6,45.186 +59240,248.84,47.559 +59241,246.67,39.986 +59242,247.04,42.66 +59243,247.31,45.163 +59244,247.5,47.522 +59245,245.49,39.996 +59246,245.81,42.652 +59247,246.02,45.138 +59248,246.16,47.484 +59249,244.32,40.009 +59250,244.57,42.644 +59251,244.73,45.113 +59252,244.82,47.443 +59253,243.15,40.023 +59254,243.34,42.637 +59255,243.44,45.088 +59256,243.47,47.402 +59257,241.98,40.039 +59258,242.1,42.631 +59259,242.15,45.062 +59260,242.13,47.358 +59261,240.8,40.058 +59262,240.87,42.626 +59263,240.86,45.035 +59264,240.79,47.313 +59265,239.63,40.079 +59266,239.63,42.621 +59267,239.56,45.008 +59268,239.45,47.266 +59269,238.46,40.102 +59270,238.4,42.617 +59271,238.27,44.981 +59272,238.11,47.217 +59273,237.29,40.126 +59274,237.16,42.613 +59275,236.98,44.953 +59276,236.77,47.167 +59277,236.11,40.153 +59278,235.92,42.611 +59279,235.69,44.924 +59280,235.43,47.115 +59281,234.94,40.182 +59282,234.69,42.609 +59283,234.4,44.895 +59284,234.09,47.061 +59285,233.76,40.213 +59286,233.45,42.607 +59287,233.11,44.865 +59288,232.75,47.006 +59289,232.59,40.246 +59290,232.22,42.607 +59291,231.82,44.835 +59292,231.41,46.949 +59293,231.41,40.28 +59294,230.98,42.607 +59295,230.53,44.804 +59296,230.07,46.89 +59297,230.24,40.317 +59298,229.75,42.608 +59299,229.24,44.773 +59300,228.73,46.83 +59301,229.06,40.355 +59302,228.51,42.609 +59303,227.96,44.741 +59304,227.4,46.768 +59305,227.88,40.396 +59306,227.28,42.611 +59307,226.67,44.709 +59308,226.06,46.705 +59309,226.71,40.438 +59310,226.04,42.613 +59311,225.38,44.676 +59312,224.72,46.64 +59313,225.53,40.481 +59314,224.8,42.617 +59315,224.09,44.643 +59316,223.39,46.574 +59317,224.35,40.527 +59318,223.57,42.621 +59319,222.8,44.609 +59320,222.05,46.506 +59321,223.17,40.574 +59322,222.33,42.625 +59323,221.51,44.575 +59324,220.71,46.437 +59325,221.98,40.622 +59326,221.09,42.63 +59327,220.23,44.541 +59328,219.38,46.366 +59329,220.8,40.673 +59330,219.86,42.636 +59331,218.94,44.506 +59332,218.04,46.293 +59333,219.62,40.725 +59334,218.62,42.642 +59335,217.65,44.47 +59336,216.71,46.22 +59337,218.43,40.778 +59338,217.38,42.649 +59339,216.36,44.435 +59340,215.38,46.145 +59341,217.24,40.833 +59342,216.14,42.656 +59343,215.08,44.398 +59344,214.05,46.068 +59345,216.06,40.889 +59346,214.9,42.664 +59347,213.79,44.362 +59348,212.72,45.991 +59349,214.87,40.947 +59350,213.67,42.672 +59351,212.51,44.325 +59352,211.39,45.911 +59353,213.68,41.006 +59354,212.43,42.681 +59355,211.22,44.288 +59356,210.06,45.831 +59357,212.48,41.066 +59358,211.19,42.691 +59359,209.94,44.25 +59360,208.73,45.749 +59361,211.29,41.127 +59362,209.95,42.7 +59363,208.65,44.212 +59364,207.4,45.667 +59365,210.09,41.19 +59366,208.71,42.711 +59367,207.37,44.174 +59368,206.07,45.583 +59369,208.9,41.254 +59370,207.47,42.722 +59371,206.09,44.135 +59372,204.75,45.497 +59373,207.7,41.319 +59374,206.23,42.733 +59375,204.8,44.096 +59376,203.42,45.411 +59377,206.5,41.385 +59378,204.98,42.745 +59379,203.52,44.056 +59380,202.1,45.323 +59381,205.3,41.452 +59382,203.74,42.757 +59383,202.24,44.017 +59384,200.78,45.235 +59385,204.09,41.52 +59386,202.5,42.769 +59387,200.96,43.977 +59388,199.46,45.145 +59389,202.89,41.589 +59390,201.26,42.782 +59391,199.68,43.937 +59392,198.14,45.054 +59393,201.68,41.659 +59394,200.02,42.796 +59395,198.4,43.896 +59396,196.82,44.963 +59397,200.47,41.73 +59398,198.77,42.809 +59399,197.12,43.856 +59400,195.5,44.87 +59401,199.26,41.802 +59402,197.53,42.823 +59403,195.84,43.815 +59404,194.19,44.777 +59405,198.05,41.874 +59406,196.28,42.838 +59407,194.56,43.774 +59408,192.87,44.682 +59409,196.84,41.947 +59410,195.04,42.853 +59411,193.28,43.732 +59412,191.56,44.587 +59413,195.62,42.021 +59414,193.79,42.868 +59415,192,43.691 +59416,190.25,44.491 +59417,194.41,42.095 +59418,192.55,42.883 +59419,190.73,43.649 +59420,188.94,44.394 +59421,193.19,42.17 +59422,191.3,42.899 +59423,189.45,43.607 +59424,187.63,44.296 +59425,191.97,42.245 +59426,190.05,42.914 +59427,188.17,43.565 +59428,186.32,44.198 +59429,190.74,42.321 +59430,188.81,42.931 +59431,186.9,43.523 +59432,185.01,44.099 +59433,189.52,42.397 +59434,187.56,42.947 +59435,185.62,43.481 +59436,183.71,44 +59437,188.29,42.474 +59438,186.31,42.963 +59439,184.35,43.439 +59440,182.41,43.899 +59441,187.06,42.551 +59442,185.06,42.98 +59443,183.08,43.396 +59444,181.1,43.799 +59445,185.83,42.628 +59446,183.81,42.997 +59447,181.8,43.354 +59448,179.8,43.698 +59449,184.6,42.705 +59450,182.56,43.014 +59451,180.53,43.311 +59452,178.51,43.596 +59453,183.37,42.783 +59454,181.31,43.032 +59455,179.26,43.269 +59456,177.21,43.494 +59457,182.13,42.861 +59458,180.06,43.049 +59459,177.99,43.226 +59460,175.91,43.392 +59461,180.89,42.939 +59462,178.81,43.067 +59463,176.72,43.184 +59464,174.62,43.289 +59465,179.65,43.017 +59466,177.56,43.084 +59467,175.45,43.141 +59468,173.33,43.186 +59469,178.41,43.095 +59470,176.3,43.102 +59471,174.18,43.098 +59472,172.04,43.083 +59473,177.16,43.172 +59474,175.05,43.12 +59475,172.91,43.056 +59476,170.75,42.979 +59477,175.92,43.25 +59478,173.79,43.138 +59479,171.64,43.013 +59480,169.47,42.876 +59481,174.67,43.328 +59482,172.54,43.156 +59483,170.38,42.971 +59484,168.18,42.772 +59485,173.42,43.405 +59486,171.28,43.174 +59487,169.11,42.929 +59488,166.9,42.669 +59489,172.17,43.482 +59490,170.03,43.192 +59491,167.85,42.886 +59492,165.62,42.565 +59493,170.91,43.559 +59494,168.77,43.21 +59495,166.58,42.844 +59496,164.34,42.461 +59497,169.66,43.636 +59498,167.51,43.228 +59499,165.32,42.802 +59500,163.07,42.358 +59501,168.4,43.712 +59502,166.26,43.246 +59503,164.05,42.76 +59504,161.79,42.254 +59505,167.14,43.788 +59506,165,43.264 +59507,162.79,42.719 +59508,160.52,42.151 +59509,165.88,43.864 +59510,163.74,43.282 +59511,161.53,42.677 +59512,159.25,42.048 +59513,164.62,43.939 +59514,162.48,43.3 +59515,160.27,42.636 +59516,157.98,41.945 +59517,163.35,44.013 +59518,161.22,43.318 +59519,159.01,42.595 +59520,156.71,41.843 +59521,162.09,44.087 +59522,159.96,43.335 +59523,157.75,42.554 +59524,155.45,41.741 +59525,160.82,44.16 +59526,158.7,43.353 +59527,156.49,42.513 +59528,154.19,41.64 +59529,159.55,44.233 +59530,157.43,43.37 +59531,155.23,42.473 +59532,152.93,41.539 +59533,158.27,44.305 +59534,156.17,43.388 +59535,153.97,42.433 +59536,151.67,41.438 +59537,157,44.376 +59538,154.91,43.405 +59539,152.72,42.393 +59540,150.41,41.338 +59541,155.72,44.447 +59542,153.64,43.422 +59543,151.46,42.354 +59544,149.16,41.239 +59545,154.45,44.516 +59546,152.38,43.438 +59547,150.21,42.315 +59548,147.9,41.14 +59549,153.17,44.585 +59550,151.12,43.455 +59551,148.95,42.276 +59552,146.65,41.042 +59553,151.89,44.653 +59554,149.85,43.471 +59555,147.7,42.237 +59556,145.41,40.945 +59557,150.6,44.72 +59558,148.58,43.487 +59559,146.44,42.199 +59560,144.16,40.849 +59561,149.32,44.787 +59562,147.32,43.503 +59563,145.19,42.161 +59564,142.92,40.754 +59565,148.03,44.852 +59566,146.05,43.519 +59567,143.94,42.124 +59568,141.68,40.659 +59569,146.75,44.916 +59570,144.78,43.534 +59571,142.69,42.087 +59572,140.44,40.566 +59573,145.46,44.979 +59574,143.51,43.55 +59575,141.44,42.051 +59576,139.2,40.474 +59577,144.17,45.041 +59578,142.25,43.564 +59579,140.19,42.015 +59580,137.97,40.382 +59581,142.87,45.102 +59582,140.98,43.579 +59583,138.94,41.979 +59584,136.73,40.292 +59585,141.58,45.162 +59586,139.71,43.593 +59587,137.69,41.944 +59588,135.5,40.203 +59589,140.28,45.221 +59590,138.44,43.607 +59591,136.44,41.909 +59592,134.27,40.115 +59593,138.99,45.278 +59594,137.16,43.621 +59595,135.2,41.875 +59596,133.05,40.029 +59597,137.69,45.335 +59598,135.89,43.634 +59599,133.95,41.841 +59600,131.82,39.944 +59601,136.39,45.39 +59602,134.62,43.647 +59603,132.7,41.808 +59604,130.6,39.86 +59605,135.09,45.443 +59606,133.35,43.659 +59607,131.46,41.776 +59608,129.38,39.778 +59609,133.79,45.496 +59610,132.08,43.671 +59611,130.21,41.744 +59612,128.16,39.697 +59613,132.48,45.547 +59614,130.8,43.683 +59615,128.97,41.712 +59616,126.94,39.618 +59617,131.18,45.597 +59618,129.53,43.694 +59619,127.73,41.682 +59620,125.73,39.54 +59621,129.87,45.645 +59622,128.25,43.705 +59623,126.49,41.651 +59624,124.52,39.464 +59625,128.56,45.692 +59626,126.98,43.715 +59627,125.24,41.622 +59628,123.31,39.389 +59629,127.25,45.738 +59630,125.7,43.725 +59631,124,41.593 +59632,122.1,39.316 +59633,125.94,45.782 +59634,124.43,43.735 +59635,122.76,41.564 +59636,120.89,39.245 +59637,124.63,45.824 +59638,123.15,43.744 +59639,121.52,41.536 +59640,119.69,39.176 +59641,123.32,45.865 +59642,121.88,43.753 +59643,120.28,41.509 +59644,118.48,39.109 +59645,122.01,45.905 +59646,120.6,43.761 +59647,119.04,41.483 +59648,117.28,39.043 +59649,120.69,45.943 +59650,119.32,43.769 +59651,117.8,41.457 +59652,116.08,38.979 +59653,119.38,45.979 +59654,118.05,43.776 +59655,116.57,41.432 +59656,114.89,38.917 +59657,118.06,46.014 +59658,116.77,43.783 +59659,115.33,41.407 +59660,113.69,38.858 +59661,116.74,46.047 +59662,115.49,43.789 +59663,114.09,41.384 +59664,112.5,38.8 +59665,115.43,46.079 +59666,114.21,43.795 +59667,112.85,41.361 +59668,111.31,38.744 +59669,114.11,46.109 +59670,112.93,43.8 +59671,111.62,41.338 +59672,110.11,38.69 +59673,112.79,46.137 +59674,111.65,43.805 +59675,110.38,41.317 +59676,108.93,38.639 +59677,111.46,46.164 +59678,110.37,43.809 +59679,109.15,41.296 +59680,107.74,38.589 +59681,110.14,46.189 +59682,109.09,43.813 +59683,107.91,41.276 +59684,106.55,38.542 +59685,108.82,46.212 +59686,107.81,43.816 +59687,106.68,41.256 +59688,105.37,38.497 +59689,107.5,46.234 +59690,106.53,43.818 +59691,105.44,41.238 +59692,104.18,38.454 +59693,106.17,46.253 +59694,105.25,43.82 +59695,104.21,41.22 +59696,103,38.413 +59697,104.85,46.271 +59698,103.97,43.822 +59699,102.98,41.203 +59700,101.82,38.375 +59701,103.52,46.288 +59702,102.69,43.823 +59703,101.74,41.186 +59704,100.64,38.339 +59705,102.2,46.302 +59706,101.41,43.823 +59707,100.51,41.171 +59708,99.461,38.305 +59709,100.87,46.315 +59710,100.13,43.823 +59711,99.279,41.156 +59712,98.283,38.273 +59713,99.545,46.326 +59714,98.847,43.822 +59715,98.047,41.142 +59716,97.107,38.244 +59717,98.217,46.335 +59718,97.565,43.821 +59719,96.816,41.129 +59720,95.931,38.218 +59721,96.89,46.343 +59722,96.283,43.819 +59723,95.584,41.117 +59724,94.757,38.193 +59725,95.561,46.349 +59726,95.001,43.816 +59727,94.353,41.105 +59728,93.583,38.171 +59729,94.233,46.352 +59730,93.719,43.813 +59731,93.122,41.094 +59732,92.41,38.152 +59733,92.904,46.354 +59734,92.437,43.81 +59735,91.892,41.084 +59736,91.237,38.135 +59737,91.574,46.355 +59738,91.154,43.805 +59739,90.661,41.075 +59740,90.066,38.12 +59741,90.245,46.353 +59742,89.872,43.801 +59743,89.431,41.067 +59744,88.894,38.108 +59745,88.915,46.35 +59746,88.589,43.795 +59747,88.201,41.059 +59748,87.724,38.098 +59749,87.585,46.344 +59750,87.307,43.789 +59751,86.971,41.053 +59752,86.553,38.09 +59753,86.255,46.337 +59754,86.024,43.783 +59755,85.741,41.047 +59756,85.384,38.085 +59757,84.924,46.329 +59758,84.741,43.775 +59759,84.511,41.042 +59760,84.214,38.083 +59761,83.594,46.318 +59762,83.459,43.768 +59763,83.281,41.037 +59764,83.045,38.083 +59765,82.263,46.305 +59766,82.176,43.759 +59767,82.052,41.034 +59768,81.876,38.085 +59769,80.933,46.291 +59770,80.893,43.75 +59771,80.822,41.031 +59772,80.707,38.09 +59773,79.602,46.275 +59774,79.61,43.741 +59775,79.593,41.029 +59776,79.538,38.097 +59777,78.272,46.257 +59778,78.328,43.731 +59779,78.363,41.028 +59780,78.369,38.107 +59781,76.942,46.237 +59782,77.045,43.72 +59783,77.134,41.028 +59784,77.199,38.119 +59785,75.611,46.216 +59786,75.763,43.709 +59787,75.904,41.029 +59788,76.03,38.133 +59789,74.281,46.192 +59790,74.48,43.697 +59791,74.674,41.03 +59792,74.861,38.15 +59793,72.951,46.167 +59794,73.198,43.685 +59795,73.445,41.032 +59796,73.691,38.169 +59797,71.621,46.14 +59798,71.916,43.672 +59799,72.215,41.035 +59800,72.521,38.191 +59801,70.292,46.111 +59802,70.634,43.658 +59803,70.985,41.039 +59804,71.35,38.214 +59805,68.963,46.081 +59806,69.352,43.644 +59807,69.755,41.043 +59808,70.179,38.241 +59809,67.634,46.048 +59810,68.07,43.63 +59811,68.525,41.049 +59812,69.007,38.269 +59813,66.306,46.014 +59814,66.788,43.614 +59815,67.295,41.055 +59816,67.835,38.3 +59817,64.978,45.979 +59818,65.507,43.599 +59819,66.065,41.061 +59820,66.662,38.333 +59821,63.65,45.941 +59822,64.225,43.582 +59823,64.834,41.069 +59824,65.488,38.368 +59825,62.323,45.902 +59826,62.944,43.566 +59827,63.604,41.077 +59828,64.313,38.405 +59829,60.996,45.861 +59830,61.663,43.548 +59831,62.373,41.086 +59832,63.138,38.444 +59833,59.67,45.818 +59834,60.383,43.53 +59835,61.141,41.096 +59836,61.961,38.486 +59837,58.345,45.774 +59838,59.102,43.512 +59839,59.91,41.107 +59840,60.784,38.53 +59841,57.02,45.728 +59842,57.822,43.493 +59843,58.678,41.118 +59844,59.605,38.576 +59845,55.696,45.681 +59846,56.542,43.474 +59847,57.446,41.13 +59848,58.426,38.623 +59849,54.372,45.631 +59850,55.263,43.454 +59851,56.214,41.143 +59852,57.245,38.673 +59853,53.049,45.581 +59854,53.983,43.433 +59855,54.982,41.156 +59856,56.063,38.725 +59857,51.727,45.528 +59858,52.704,43.412 +59859,53.749,41.17 +59860,54.88,38.779 +59861,50.406,45.474 +59862,51.426,43.391 +59863,52.515,41.185 +59864,53.695,38.834 +59865,49.085,45.419 +59866,50.147,43.369 +59867,51.282,41.2 +59868,52.509,38.892 +59869,47.766,45.362 +59870,48.869,43.347 +59871,50.048,41.216 +59872,51.322,38.951 +59873,46.447,45.303 +59874,47.592,43.324 +59875,48.814,41.233 +59876,50.134,39.012 +59877,45.129,45.243 +59878,46.314,43.301 +59879,47.579,41.25 +59880,48.943,39.075 +59881,43.813,45.182 +59882,45.038,43.277 +59883,46.344,41.268 +59884,47.752,39.139 +59885,42.497,45.119 +59886,43.761,43.253 +59887,45.108,41.287 +59888,46.558,39.205 +59889,41.182,45.055 +59890,42.485,43.229 +59891,43.872,41.306 +59892,45.363,39.273 +59893,39.868,44.989 +59894,41.209,43.204 +59895,42.635,41.326 +59896,44.167,39.342 +59897,38.556,44.922 +59898,39.934,43.178 +59899,41.399,41.346 +59900,42.969,39.413 +59901,37.244,44.853 +59902,38.659,43.153 +59903,40.161,41.367 +59904,41.769,39.485 +59905,35.934,44.784 +59906,37.385,43.127 +59907,38.923,41.389 +59908,40.567,39.558 +59909,34.624,44.713 +59910,36.111,43.1 +59911,37.685,41.411 +59912,39.364,39.633 +59913,33.316,44.64 +59914,34.838,43.074 +59915,36.446,41.433 +59916,38.159,39.71 +59917,32.01,44.567 +59918,33.565,43.047 +59919,35.206,41.456 +59920,36.952,39.787 +59921,30.704,44.492 +59922,32.292,43.019 +59923,33.966,41.48 +59924,35.743,39.866 +59925,29.4,44.417 +59926,31.02,42.991 +59927,32.726,41.504 +59928,34.532,39.946 +59929,28.097,44.34 +59930,29.749,42.963 +59931,31.485,41.528 +59932,33.32,40.027 +59933,26.796,44.262 +59934,28.478,42.935 +59935,30.243,41.553 +59936,32.105,40.109 +59937,25.496,44.182 +59938,27.208,42.907 +59939,29.001,41.578 +59940,30.889,40.192 +59941,24.197,44.102 +59942,25.938,42.878 +59943,27.758,41.604 +59944,29.671,40.276 +59945,22.9,44.021 +59946,24.669,42.849 +59947,26.515,41.63 +59948,28.45,40.362 +59949,21.604,43.939 +59950,23.4,42.819 +59951,25.271,41.657 +59952,27.228,40.448 +59953,20.31,43.856 +59954,22.132,42.79 +59955,24.026,41.683 +59956,26.004,40.534 +59957,19.017,43.772 +59958,20.864,42.76 +59959,22.781,41.711 +59960,24.778,40.622 +59961,17.726,43.687 +59962,19.597,42.73 +59963,21.535,41.738 +59964,23.55,40.71 +59965,16.437,43.602 +59966,18.331,42.7 +59967,20.289,41.766 +59968,22.32,40.799 +59969,15.149,43.516 +59970,17.065,42.67 +59971,19.042,41.795 +59972,21.087,40.889 +59973,13.863,43.428 +59974,15.799,42.639 +59975,17.794,41.823 +59976,19.853,40.979 +59977,12.578,43.341 +59978,14.535,42.609 +59979,16.546,41.852 +59980,18.617,41.07 +59981,11.295,43.252 +59982,13.271,42.578 +59983,15.297,41.881 +59984,17.379,41.161 +59985,10.014,43.163 +59986,12.007,42.547 +59987,14.048,41.91 +59988,16.139,41.252 +59989,8.7343,43.074 +59990,10.744,42.516 +59991,12.798,41.94 +59992,14.897,41.344 +59993,7.4565,42.983 +59994,9.4823,42.485 +59995,11.547,41.97 +59996,13.653,41.437 +59997,6.1806,42.893 +59998,8.2207,42.454 +59999,10.295,42 +60000,12.406,41.529 +60001,4.9064,42.802 +60002,6.9598,42.423 +60003,9.0432,42.03 +60004,11.158,41.622 +60005,3.634,42.71 +60006,5.6995,42.392 +60007,7.7904,42.06 +60008,9.9081,41.715 +60009,2.3634,42.618 +60010,4.4398,42.361 +60011,6.537,42.091 +60012,8.656,41.808 +60013,1.0947,42.526 +60014,3.1808,42.33 +60015,5.2829,42.122 +60016,7.402,41.902 +60017,359.83,42.434 +60018,1.9224,42.299 +60019,4.0282,42.152 +60020,6.146,41.995 +60021,358.56,42.341 +60022,0.66465,42.268 +60023,2.7729,42.183 +60024,4.888,42.088 +60025,357.3,42.248 +60026,359.41,42.237 +60027,1.5168,42.214 +60028,3.6281,42.181 +60029,356.04,42.155 +60030,358.15,42.206 +60031,0.26018,42.245 +60032,2.3663,42.274 +60033,354.78,42.062 +60034,356.9,42.175 +60035,359,42.277 +60036,1.1026,42.367 +60037,353.52,41.969 +60038,355.64,42.144 +60039,357.74,42.308 +60040,359.84,42.46 +60041,352.27,41.875 +60042,354.39,42.113 +60043,356.49,42.339 +60044,358.57,42.552 +60045,351.01,41.782 +60046,353.13,42.083 +60047,355.23,42.37 +60048,357.3,42.645 +60049,349.76,41.689 +60050,351.88,42.052 +60051,353.97,42.401 +60052,356.03,42.736 +60053,348.51,41.596 +60054,350.63,42.022 +60055,352.71,42.432 +60056,354.76,42.828 +60057,347.27,41.504 +60058,349.37,41.992 +60059,351.45,42.464 +60060,353.48,42.919 +60061,346.02,41.411 +60062,348.12,41.962 +60063,350.18,42.495 +60064,352.2,43.01 +60065,344.78,41.319 +60066,346.87,41.932 +60067,348.92,42.526 +60068,350.93,43.1 +60069,343.53,41.227 +60070,345.62,41.903 +60071,347.66,42.557 +60072,349.65,43.189 +60073,342.3,41.136 +60074,344.37,41.874 +60075,346.39,42.587 +60076,348.36,43.278 +60077,341.06,41.045 +60078,343.12,41.845 +60079,345.13,42.618 +60080,347.08,43.366 +60081,339.82,40.954 +60082,341.88,41.816 +60083,343.87,42.649 +60084,345.8,43.454 +60085,338.59,40.864 +60086,340.63,41.788 +60087,342.6,42.679 +60088,344.51,43.541 +60089,337.36,40.775 +60090,339.38,41.759 +60091,341.33,42.71 +60092,343.22,43.627 +60093,336.13,40.686 +60094,338.14,41.732 +60095,340.07,42.74 +60096,341.93,43.713 +60097,334.9,40.598 +60098,336.89,41.704 +60099,338.8,42.77 +60100,340.64,43.797 +60101,333.67,40.511 +60102,335.65,41.677 +60103,337.53,42.799 +60104,339.35,43.881 +60105,332.45,40.424 +60106,334.4,41.65 +60107,336.26,42.829 +60108,338.05,43.964 +60109,331.23,40.339 +60110,333.16,41.624 +60111,334.99,42.858 +60112,336.75,44.046 +60113,330.01,40.254 +60114,331.91,41.598 +60115,333.73,42.887 +60116,335.46,44.126 +60117,328.79,40.17 +60118,330.67,41.572 +60119,332.46,42.916 +60120,334.16,44.206 +60121,327.58,40.087 +60122,329.43,41.547 +60123,331.18,42.945 +60124,332.86,44.285 +60125,326.36,40.006 +60126,328.19,41.523 +60127,329.91,42.973 +60128,331.55,44.363 +60129,325.15,39.925 +60130,326.95,41.498 +60131,328.64,43.001 +60132,330.25,44.44 +60133,323.94,39.845 +60134,325.71,41.475 +60135,327.37,43.029 +60136,328.95,44.515 +60137,322.73,39.767 +60138,324.47,41.451 +60139,326.1,43.056 +60140,327.64,44.59 +60141,321.53,39.69 +60142,323.23,41.428 +60143,324.82,43.083 +60144,326.33,44.663 +60145,320.32,39.614 +60146,321.99,41.406 +60147,323.55,43.11 +60148,325.03,44.735 +60149,319.12,39.54 +60150,320.75,41.384 +60151,322.28,43.136 +60152,323.72,44.805 +60153,317.92,39.466 +60154,319.51,41.363 +60155,321,43.162 +60156,322.4,44.875 +60157,316.72,39.395 +60158,318.28,41.343 +60159,319.73,43.188 +60160,321.09,44.943 +60161,315.52,39.324 +60162,317.04,41.322 +60163,318.45,43.213 +60164,319.78,45.01 +60165,314.32,39.256 +60166,315.8,41.303 +60167,317.18,43.238 +60168,318.47,45.075 +60169,313.13,39.189 +60170,314.57,41.284 +60171,315.9,43.262 +60172,317.15,45.139 +60173,311.94,39.123 +60174,313.33,41.266 +60175,314.62,43.286 +60176,315.83,45.201 +60177,310.75,39.059 +60178,312.1,41.248 +60179,313.35,43.31 +60180,314.52,45.263 +60181,309.56,38.997 +60182,310.86,41.231 +60183,312.07,43.333 +60184,313.2,45.322 +60185,308.37,38.937 +60186,309.63,41.214 +60187,310.79,43.355 +60188,311.88,45.38 +60189,307.18,38.878 +60190,308.39,41.199 +60191,309.51,43.378 +60192,310.56,45.437 +60193,306,38.821 +60194,307.16,41.183 +60195,308.23,43.399 +60196,309.24,45.492 +60197,304.81,38.766 +60198,305.93,41.169 +60199,306.95,43.421 +60200,307.92,45.546 +60201,303.63,38.713 +60202,304.69,41.155 +60203,305.68,43.442 +60204,306.59,45.598 +60205,302.45,38.662 +60206,303.46,41.142 +60207,304.4,43.462 +60208,305.27,45.648 +60209,301.27,38.613 +60210,302.23,41.129 +60211,303.12,43.482 +60212,303.95,45.697 +60213,300.09,38.566 +60214,301,41.118 +60215,301.84,43.501 +60216,302.62,45.744 +60217,298.91,38.52 +60218,299.76,41.107 +60219,300.56,43.52 +60220,301.3,45.79 +60221,297.73,38.477 +60222,298.53,41.096 +60223,299.28,43.538 +60224,299.97,45.833 +60225,296.56,38.437 +60226,297.3,41.087 +60227,297.99,43.556 +60228,298.65,45.876 +60229,295.38,38.398 +60230,296.07,41.078 +60231,296.71,43.573 +60232,297.32,45.916 +60233,294.21,38.361 +60234,294.84,41.07 +60235,295.43,43.59 +60236,295.99,45.955 +60237,293.03,38.327 +60238,293.61,41.063 +60239,294.15,43.606 +60240,294.66,45.992 +60241,291.86,38.294 +60242,292.38,41.056 +60243,292.87,43.622 +60244,293.34,46.027 +60245,290.69,38.264 +60246,291.15,41.05 +60247,291.59,43.637 +60248,292.01,46.061 +60249,289.52,38.237 +60250,289.92,41.045 +60251,290.31,43.651 +60252,290.68,46.093 +60253,288.35,38.211 +60254,288.69,41.041 +60255,289.02,43.665 +60256,289.35,46.123 +60257,287.17,38.188 +60258,287.46,41.038 +60259,287.74,43.679 +60260,288.02,46.151 +60261,286,38.167 +60262,286.23,41.035 +60263,286.46,43.692 +60264,286.69,46.177 +60265,284.83,38.149 +60266,285,41.033 +60267,285.18,43.704 +60268,285.36,46.202 +60269,283.67,38.133 +60270,283.77,41.032 +60271,283.89,43.716 +60272,284.03,46.225 +60273,282.5,38.119 +60274,282.54,41.032 +60275,282.61,43.727 +60276,282.7,46.246 +60277,281.33,38.108 +60278,281.31,41.032 +60279,281.33,43.737 +60280,281.37,46.265 +60281,280.16,38.099 +60282,280.08,41.034 +60283,280.05,43.747 +60284,280.04,46.283 +60285,278.99,38.093 +60286,278.85,41.036 +60287,278.76,43.757 +60288,278.71,46.299 +60289,277.82,38.089 +60290,277.62,41.039 +60291,277.48,43.766 +60292,277.38,46.313 +60293,276.65,38.087 +60294,276.39,41.042 +60295,276.2,43.774 +60296,276.05,46.325 +60297,275.48,38.088 +60298,275.16,41.047 +60299,274.91,43.781 +60300,274.72,46.335 +60301,274.31,38.091 +60302,273.93,41.052 +60303,273.63,43.788 +60304,273.38,46.343 +60305,273.14,38.097 +60306,272.7,41.059 +60307,272.35,43.795 +60308,272.05,46.35 +60309,271.97,38.105 +60310,271.47,41.066 +60311,271.07,43.801 +60312,270.72,46.355 +60313,270.8,38.116 +60314,270.24,41.073 +60315,269.78,43.806 +60316,269.39,46.357 +60317,269.63,38.129 +60318,269.01,41.082 +60319,268.5,43.811 +60320,268.07,46.359 +60321,268.46,38.144 +60322,267.78,41.092 +60323,267.22,43.815 +60324,266.74,46.358 +60325,267.28,38.162 +60326,266.55,41.102 +60327,265.94,43.818 +60328,265.41,46.355 +60329,266.11,38.182 +60330,265.32,41.113 +60331,264.65,43.821 +60332,264.08,46.351 +60333,264.94,38.205 +60334,264.09,41.125 +60335,263.37,43.824 +60336,262.75,46.345 +60337,263.76,38.23 +60338,262.86,41.137 +60339,262.09,43.825 +60340,261.42,46.337 +60341,262.58,38.258 +60342,261.62,41.151 +60343,260.81,43.827 +60344,260.09,46.327 +60345,261.41,38.287 +60346,260.39,41.165 +60347,259.53,43.827 +60348,258.77,46.316 +60349,260.23,38.32 +60350,259.16,41.18 +60351,258.25,43.827 +60352,257.44,46.302 +60353,259.05,38.354 +60354,257.93,41.196 +60355,256.96,43.827 +60356,256.12,46.287 +60357,257.87,38.391 +60358,256.69,41.212 +60359,255.68,43.826 +60360,254.79,46.271 +60361,256.69,38.43 +60362,255.46,41.23 +60363,254.4,43.824 +60364,253.47,46.252 +60365,255.51,38.471 +60366,254.23,41.248 +60367,253.12,43.822 +60368,252.14,46.232 +60369,254.32,38.515 +60370,252.99,41.267 +60371,251.84,43.819 +60372,250.82,46.21 +60373,253.14,38.561 +60374,251.76,41.286 +60375,250.56,43.816 +60376,249.5,46.186 +60377,251.95,38.609 +60378,250.52,41.307 +60379,249.28,43.812 +60380,248.18,46.161 +60381,250.76,38.659 +60382,249.29,41.328 +60383,248,43.808 +60384,246.85,46.134 +60385,249.57,38.711 +60386,248.05,41.35 +60387,246.72,43.803 +60388,245.53,46.105 +60389,248.38,38.765 +60390,246.82,41.372 +60391,245.44,43.798 +60392,244.22,46.074 +60393,247.19,38.822 +60394,245.58,41.396 +60395,244.17,43.792 +60396,242.9,46.042 +60397,245.99,38.88 +60398,244.34,41.419 +60399,242.89,43.786 +60400,241.58,46.009 +60401,244.8,38.94 +60402,243.1,41.444 +60403,241.61,43.779 +60404,240.26,45.974 +60405,243.6,39.003 +60406,241.86,41.47 +60407,240.33,43.772 +60408,238.95,45.937 +60409,242.4,39.067 +60410,240.63,41.496 +60411,239.05,43.764 +60412,237.63,45.898 +60413,241.2,39.133 +60414,239.39,41.522 +60415,237.78,43.755 +60416,236.32,45.858 +60417,239.99,39.201 +60418,238.15,41.55 +60419,236.5,43.747 +60420,235.01,45.817 +60421,238.79,39.271 +60422,236.91,41.578 +60423,235.23,43.737 +60424,233.7,45.774 +60425,237.58,39.343 +60426,235.66,41.606 +60427,233.95,43.728 +60428,232.39,45.73 +60429,236.37,39.416 +60430,234.42,41.636 +60431,232.67,43.718 +60432,231.08,45.684 +60433,235.16,39.491 +60434,233.18,41.665 +60435,231.4,43.707 +60436,229.77,45.636 +60437,233.95,39.568 +60438,231.94,41.696 +60439,230.13,43.696 +60440,228.47,45.588 +60441,232.73,39.646 +60442,230.69,41.727 +60443,228.85,43.685 +60444,227.16,45.538 +60445,231.51,39.726 +60446,229.45,41.759 +60447,227.58,43.673 +60448,225.86,45.486 +60449,230.3,39.807 +60450,228.21,41.791 +60451,226.31,43.661 +60452,224.56,45.433 +60453,229.07,39.89 +60454,226.96,41.823 +60455,225.03,43.648 +60456,223.26,45.379 +60457,227.85,39.974 +60458,225.71,41.857 +60459,223.76,43.635 +60460,221.96,45.324 +60461,226.63,40.06 +60462,224.47,41.891 +60463,222.49,43.622 +60464,220.66,45.267 +60465,225.4,40.146 +60466,223.22,41.925 +60467,221.22,43.608 +60468,219.36,45.209 +60469,224.17,40.235 +60470,221.97,41.96 +60471,219.95,43.595 +60472,218.07,45.15 +60473,222.94,40.324 +60474,220.72,41.995 +60475,218.68,43.58 +60476,216.77,45.09 +60477,221.7,40.414 +60478,219.47,42.031 +60479,217.41,43.566 +60480,215.48,45.029 +60481,220.47,40.506 +60482,218.22,42.067 +60483,216.14,43.551 +60484,214.19,44.967 +60485,219.23,40.599 +60486,216.97,42.103 +60487,214.87,43.536 +60488,212.9,44.903 +60489,217.99,40.692 +60490,215.72,42.141 +60491,213.61,43.52 +60492,211.62,44.839 +60493,216.75,40.787 +60494,214.47,42.178 +60495,212.34,43.505 +60496,210.33,44.773 +60497,215.5,40.883 +60498,213.22,42.216 +60499,211.07,43.489 +60500,209.05,44.707 +60501,214.26,40.979 +60502,211.96,42.254 +60503,209.81,43.472 +60504,207.76,44.639 +60505,213.01,41.077 +60506,210.71,42.293 +60507,208.54,43.456 +60508,206.48,44.571 +60509,211.76,41.175 +60510,209.45,42.332 +60511,207.27,43.439 +60512,205.2,44.502 +60513,210.5,41.273 +60514,208.2,42.371 +60515,206.01,43.423 +60516,203.93,44.432 +60517,209.25,41.373 +60518,206.94,42.411 +60519,204.75,43.406 +60520,202.65,44.361 +60521,207.99,41.473 +60522,205.68,42.45 +60523,203.48,43.388 +60524,201.38,44.29 +60525,206.73,41.574 +60526,204.43,42.491 +60527,202.22,43.371 +60528,200.11,44.218 +60529,205.47,41.675 +60530,203.17,42.531 +60531,200.96,43.354 +60532,198.84,44.145 +60533,204.21,41.776 +60534,201.91,42.572 +60535,199.7,43.336 +60536,197.57,44.072 +60537,202.94,41.879 +60538,200.65,42.613 +60539,198.44,43.318 +60540,196.3,43.998 +60541,201.68,41.981 +60542,199.39,42.654 +60543,197.18,43.301 +60544,195.04,43.923 +60545,200.41,42.084 +60546,198.13,42.695 +60547,195.92,43.283 +60548,193.77,43.848 +60549,199.13,42.187 +60550,196.86,42.737 +60551,194.66,43.265 +60552,192.51,43.772 +60553,197.86,42.29 +60554,195.6,42.779 +60555,193.4,43.247 +60556,191.25,43.696 +60557,196.59,42.393 +60558,194.34,42.82 +60559,192.14,43.229 +60560,190,43.62 +60561,195.31,42.497 +60562,193.07,42.862 +60563,190.88,43.211 +60564,188.74,43.543 +60565,194.03,42.601 +60566,191.81,42.905 +60567,189.63,43.193 +60568,187.49,43.466 +60569,192.75,42.704 +60570,190.54,42.947 +60571,188.37,43.175 +60572,186.24,43.389 +60573,191.47,42.808 +60574,189.28,42.989 +60575,187.12,43.157 +60576,184.99,43.312 +60577,190.18,42.912 +60578,188.01,43.032 +60579,185.86,43.139 +60580,183.74,43.234 +60581,188.89,43.015 +60582,186.74,43.074 +60583,184.61,43.121 +60584,182.49,43.156 +60585,187.61,43.119 +60586,185.47,43.117 +60587,183.35,43.103 +60588,181.25,43.078 +60589,186.32,43.222 +60590,184.2,43.159 +60591,182.1,43.085 +60592,180.01,43 +60593,185.02,43.325 +60594,182.93,43.202 +60595,180.85,43.068 +60596,178.77,42.923 +60597,183.73,43.427 +60598,181.66,43.245 +60599,179.6,43.05 +60600,177.53,42.845 +60601,182.43,43.529 +60602,180.39,43.287 +60603,178.34,43.033 +60604,176.3,42.767 +60605,181.14,43.631 +60606,179.12,43.33 +60607,177.09,43.016 +60608,175.06,42.689 +60609,179.84,43.733 +60610,177.85,43.372 +60611,175.84,42.998 +60612,173.83,42.612 +60613,178.54,43.834 +60614,176.57,43.415 +60615,174.59,42.982 +60616,172.6,42.535 +60617,177.23,43.934 +60618,175.3,43.457 +60619,173.35,42.965 +60620,171.37,42.458 +60621,175.93,44.034 +60622,174.02,43.499 +60623,172.1,42.948 +60624,170.14,42.382 +60625,174.63,44.134 +60626,172.75,43.542 +60627,170.85,42.932 +60628,168.92,42.306 +60629,173.32,44.232 +60630,171.47,43.584 +60631,169.6,42.916 +60632,167.7,42.23 +60633,172.01,44.33 +60634,170.2,43.626 +60635,168.35,42.9 +60636,166.48,42.155 +60637,170.7,44.428 +60638,168.92,43.667 +60639,167.11,42.885 +60640,165.26,42.08 +60641,169.39,44.524 +60642,167.64,43.709 +60643,165.86,42.869 +60644,164.04,42.006 +60645,168.08,44.62 +60646,166.37,43.75 +60647,164.62,42.855 +60648,162.83,41.932 +60649,166.76,44.715 +60650,165.09,43.792 +60651,163.37,42.84 +60652,161.61,41.86 +60653,165.45,44.809 +60654,163.81,43.833 +60655,162.13,42.826 +60656,160.4,41.787 +60657,164.13,44.903 +60658,162.53,43.873 +60659,160.88,42.812 +60660,159.19,41.716 +60661,162.81,44.995 +60662,161.25,43.914 +60663,159.64,42.798 +60664,157.98,41.646 +60665,161.49,45.086 +60666,159.97,43.954 +60667,158.4,42.785 +60668,156.78,41.576 +60669,160.17,45.177 +60670,158.69,43.994 +60671,157.15,42.772 +60672,155.57,41.507 +60673,158.85,45.266 +60674,157.4,44.034 +60675,155.91,42.759 +60676,154.37,41.439 +60677,157.53,45.354 +60678,156.12,44.074 +60679,154.67,42.747 +60680,153.17,41.372 +60681,156.21,45.442 +60682,154.84,44.113 +60683,153.43,42.736 +60684,151.97,41.307 +60685,154.88,45.528 +60686,153.56,44.152 +60687,152.19,42.725 +60688,150.77,41.242 +60689,153.55,45.613 +60690,152.27,44.191 +60691,150.95,42.714 +60692,149.58,41.178 +60693,152.23,45.696 +60694,150.99,44.229 +60695,149.71,42.704 +60696,148.38,41.116 +60697,150.9,45.779 +60698,149.7,44.267 +60699,148.47,42.694 +60700,147.19,41.055 +60701,149.57,45.86 +60702,148.42,44.304 +60703,147.23,42.685 +60704,145.99,40.995 +60705,148.24,45.94 +60706,147.13,44.341 +60707,145.99,42.676 +60708,144.8,40.936 +60709,146.91,46.019 +60710,145.85,44.378 +60711,144.75,42.668 +60712,143.62,40.879 +60713,145.58,46.096 +60714,144.56,44.415 +60715,143.51,42.66 +60716,142.43,40.823 +60717,144.25,46.172 +60718,143.28,44.451 +60719,142.27,42.653 +60720,141.24,40.769 +60721,142.91,46.247 +60722,141.99,44.486 +60723,141.04,42.646 +60724,140.06,40.716 +60725,141.58,46.32 +60726,140.7,44.522 +60727,139.8,42.64 +60728,138.87,40.665 +60729,140.25,46.392 +60730,139.41,44.556 +60731,138.56,42.635 +60732,137.69,40.615 +60733,138.91,46.462 +60734,138.13,44.591 +60735,137.32,42.63 +60736,136.51,40.566 +60737,137.57,46.531 +60738,136.84,44.625 +60739,136.09,42.625 +60740,135.32,40.52 +60741,136.24,46.598 +60742,135.55,44.658 +60743,134.85,42.622 +60744,134.14,40.475 +60745,134.9,46.664 +60746,134.26,44.691 +60747,133.61,42.619 +60748,132.97,40.432 +60749,133.56,46.729 +60750,132.97,44.724 +60751,132.38,42.616 +60752,131.79,40.39 +60753,132.23,46.791 +60754,131.68,44.756 +60755,131.14,42.614 +60756,130.61,40.35 +60757,130.89,46.853 +60758,130.39,44.787 +60759,129.91,42.613 +60760,129.43,40.313 +60761,129.55,46.912 +60762,129.1,44.818 +60763,128.67,42.613 +60764,128.26,40.277 +60765,128.21,46.97 +60766,127.81,44.849 +60767,127.43,42.613 +60768,127.08,40.242 +60769,126.87,47.027 +60770,126.52,44.879 +60771,126.2,42.613 +60772,125.91,40.21 +60773,125.53,47.082 +60774,125.23,44.908 +60775,124.96,42.615 +60776,124.73,40.18 +60777,124.19,47.135 +60778,123.94,44.938 +60779,123.73,42.617 +60780,123.56,40.152 +60781,122.85,47.186 +60782,122.65,44.966 +60783,122.49,42.62 +60784,122.39,40.125 +60785,121.51,47.236 +60786,121.36,44.994 +60787,121.26,42.623 +60788,121.21,40.101 +60789,120.17,47.284 +60790,120.07,45.021 +60791,120.02,42.628 +60792,120.04,40.079 +60793,118.83,47.331 +60794,118.78,45.048 +60795,118.79,42.633 +60796,118.87,40.058 +60797,117.49,47.376 +60798,117.49,45.075 +60799,117.55,42.638 +60800,117.69,40.04 +60801,116.14,47.419 +60802,116.2,45.1 +60803,116.31,42.645 +60804,116.52,40.024 +60805,114.8,47.46 +60806,114.91,45.126 +60807,115.08,42.652 +60808,115.35,40.011 +60809,113.46,47.5 +60810,113.61,45.15 +60811,113.84,42.66 +60812,114.18,39.999 +60813,112.12,47.537 +60814,112.32,45.175 +60815,112.61,42.668 +60816,113,39.99 +60817,110.78,47.574 +60818,111.03,45.198 +60819,111.37,42.678 +60820,111.83,39.982 +60821,109.44,47.608 +60822,109.74,45.221 +60823,110.14,42.688 +60824,110.66,39.977 +60825,108.1,47.64 +60826,108.45,45.244 +60827,108.9,42.698 +60828,109.49,39.974 +60829,106.76,47.671 +60830,107.16,45.265 +60831,107.66,42.71 +60832,108.31,39.974 +60833,105.42,47.7 +60834,105.87,45.287 +60835,106.43,42.722 +60836,107.14,39.975 +60837,104.08,47.728 +60838,104.57,45.307 +60839,105.19,42.735 +60840,105.96,39.979 +60841,102.74,47.753 +60842,103.28,45.328 +60843,103.95,42.749 +60844,104.79,39.985 +60845,101.4,47.777 +60846,101.99,45.347 +60847,102.71,42.764 +60848,103.61,39.994 +60849,100.06,47.799 +60850,100.7,45.366 +60851,101.48,42.779 +60852,102.43,40.004 +60853,98.72,47.819 +60854,99.41,45.384 +60855,100.24,42.795 +60856,101.25,40.017 +60857,97.382,47.837 +60858,98.12,45.402 +60859,99,42.812 +60860,100.08,40.032 +60861,96.044,47.854 +60862,96.829,45.42 +60863,97.761,42.829 +60864,98.896,40.05 +60865,94.707,47.869 +60866,95.538,45.436 +60867,96.523,42.848 +60868,97.716,40.07 +60869,93.37,47.882 +60870,94.248,45.452 +60871,95.283,42.867 +60872,96.534,40.092 +60873,92.034,47.894 +60874,92.958,45.468 +60875,94.044,42.887 +60876,95.351,40.116 +60877,90.698,47.903 +60878,91.668,45.483 +60879,92.803,42.907 +60880,94.167,40.143 +60881,89.363,47.911 +60882,90.378,45.497 +60883,91.563,42.929 +60884,92.982,40.171 +60885,88.029,47.917 +60886,89.088,45.511 +60887,90.322,42.951 +60888,91.795,40.202 +60889,86.695,47.921 +60890,87.799,45.524 +60891,89.081,42.973 +60892,90.607,40.236 +60893,85.362,47.924 +60894,86.509,45.537 +60895,87.839,42.997 +60896,89.418,40.271 +60897,84.03,47.925 +60898,85.22,45.549 +60899,86.597,43.021 +60900,88.227,40.309 +60901,82.699,47.924 +60902,83.932,45.561 +60903,85.354,43.046 +60904,87.034,40.348 +60905,81.368,47.922 +60906,82.643,45.572 +60907,84.111,43.072 +60908,85.84,40.39 +60909,80.039,47.917 +60910,81.355,45.582 +60911,82.867,43.098 +60912,84.645,40.435 +60913,78.71,47.912 +60914,80.067,45.592 +60915,81.623,43.125 +60916,83.447,40.481 +60917,77.382,47.904 +60918,78.78,45.601 +60919,80.378,43.153 +60920,82.248,40.529 +60921,76.055,47.895 +60922,77.493,45.61 +60923,79.133,43.182 +60924,81.048,40.58 +60925,74.729,47.884 +60926,76.206,45.618 +60927,77.887,43.211 +60928,79.845,40.632 +60929,73.404,47.872 +60930,74.919,45.626 +60931,76.641,43.241 +60932,78.641,40.687 +60933,72.081,47.857 +60934,73.633,45.633 +60935,75.394,43.272 +60936,77.434,40.744 +60937,70.758,47.842 +60938,72.347,45.64 +60939,74.146,43.303 +60940,76.226,40.802 +60941,69.436,47.824 +60942,71.061,45.646 +60943,72.898,43.335 +60944,75.016,40.863 +60945,68.116,47.806 +60946,69.776,45.652 +60947,71.649,43.367 +60948,73.804,40.925 +60949,66.796,47.785 +60950,68.492,45.657 +60951,70.399,43.401 +60952,72.589,40.99 +60953,65.478,47.763 +60954,67.207,45.662 +60955,69.149,43.435 +60956,71.373,41.056 +60957,64.161,47.74 +60958,65.923,45.666 +60959,67.898,43.469 +60960,70.155,41.124 +60961,62.846,47.715 +60962,64.64,45.67 +60963,66.647,43.504 +60964,68.934,41.194 +60965,61.531,47.689 +60966,63.357,45.673 +60967,65.395,43.54 +60968,67.712,41.265 +60969,60.218,47.661 +60970,62.074,45.676 +60971,64.142,43.576 +60972,66.487,41.339 +60973,58.907,47.631 +60974,60.792,45.679 +60975,62.889,43.613 +60976,65.26,41.414 +60977,57.596,47.601 +60978,59.51,45.681 +60979,61.634,43.651 +60980,64.031,41.491 +60981,56.288,47.569 +60982,58.229,45.682 +60983,60.379,43.689 +60984,62.8,41.569 +60985,54.98,47.535 +60986,56.948,45.683 +60987,59.124,43.727 +60988,61.567,41.649 +60989,53.674,47.5 +60990,55.668,45.684 +60991,57.868,43.767 +60992,60.331,41.731 +60993,52.369,47.464 +60994,54.388,45.684 +60995,56.611,43.806 +60996,59.093,41.813 +60997,51.066,47.427 +60998,53.109,45.684 +60999,55.353,43.846 +61000,57.853,41.898 +61001,49.765,47.388 +61002,51.83,45.684 +61003,54.094,43.887 +61004,56.61,41.984 +61005,48.465,47.349 +61006,50.552,45.683 +61007,52.835,43.928 +61008,55.366,42.071 +61009,47.166,47.308 +61010,49.274,45.682 +61011,51.575,43.97 +61012,54.119,42.16 +61013,45.869,47.265 +61014,47.997,45.68 +61015,50.314,44.012 +61016,52.869,42.249 +61017,44.574,47.222 +61018,46.72,45.678 +61019,49.053,44.055 +61020,51.618,42.341 +61021,43.28,47.177 +61022,45.444,45.676 +61023,47.79,44.098 +61024,50.364,42.433 +61025,41.988,47.132 +61026,44.168,45.673 +61027,46.527,44.142 +61028,49.108,42.526 +61029,40.698,47.085 +61030,42.893,45.67 +61031,45.264,44.186 +61032,47.85,42.621 +61033,39.409,47.038 +61034,41.618,45.667 +61035,43.999,44.23 +61036,46.589,42.716 +61037,38.122,46.989 +61038,40.344,45.664 +61039,42.734,44.275 +61040,45.326,42.813 +61041,36.837,46.939 +61042,39.071,45.66 +61043,41.468,44.32 +61044,44.061,42.911 +61045,35.554,46.889 +61046,37.798,45.656 +61047,40.201,44.365 +61048,42.794,43.009 +61049,34.272,46.837 +61050,36.526,45.652 +61051,38.933,44.411 +61052,41.525,43.109 +61053,32.992,46.785 +61054,35.254,45.647 +61055,37.665,44.457 +61056,40.253,43.209 +61057,31.714,46.732 +61058,33.983,45.643 +61059,36.396,44.504 +61060,38.979,43.31 +61061,30.437,46.678 +61062,32.712,45.638 +61063,35.126,44.551 +61064,37.703,43.412 +61065,29.163,46.623 +61066,31.442,45.633 +61067,33.855,44.598 +61068,36.425,43.514 +61069,27.89,46.568 +61070,30.173,45.627 +61071,32.583,44.645 +61072,35.144,43.617 +61073,26.619,46.512 +61074,28.904,45.622 +61075,31.311,44.693 +61076,33.862,43.721 +61077,25.35,46.455 +61078,27.635,45.616 +61079,30.038,44.741 +61080,32.577,43.825 +61081,24.083,46.397 +61082,26.368,45.61 +61083,28.764,44.789 +61084,31.29,43.93 +61085,22.817,46.339 +61086,25.1,45.604 +61087,27.49,44.837 +61088,30.001,44.035 +61089,21.554,46.281 +61090,23.834,45.598 +61091,26.215,44.886 +61092,28.71,44.141 +61093,20.292,46.222 +61094,22.568,45.592 +61095,24.939,44.935 +61096,27.417,44.246 +61097,19.033,46.162 +61098,21.302,45.586 +61099,23.662,44.984 +61100,26.123,44.353 +61101,17.775,46.102 +61102,20.037,45.58 +61103,22.384,45.033 +61104,24.826,44.459 +61105,16.519,46.042 +61106,18.773,45.573 +61107,21.106,45.082 +61108,23.527,44.566 +61109,15.265,45.982 +61110,17.509,45.567 +61111,19.827,45.131 +61112,22.226,44.673 +61113,14.013,45.921 +61114,16.246,45.56 +61115,18.547,45.181 +61116,20.923,44.78 +61117,12.763,45.859 +61118,14.984,45.554 +61119,17.267,45.23 +61120,19.619,44.887 +61121,11.514,45.798 +61122,13.722,45.547 +61123,15.986,45.28 +61124,18.312,44.994 +61125,10.268,45.736 +61126,12.46,45.541 +61127,14.704,45.33 +61128,17.004,45.101 +61129,9.0236,45.675 +61130,11.199,45.534 +61131,13.421,45.38 +61132,15.694,45.208 +61133,7.781,45.613 +61134,9.9389,45.528 +61135,12.138,45.429 +61136,14.382,45.315 +61137,6.5403,45.551 +61138,8.6791,45.522 +61139,10.854,45.479 +61140,13.069,45.422 +61141,5.3015,45.489 +61142,7.4198,45.515 +61143,9.5696,45.529 +61144,11.753,45.529 +61145,4.0646,45.427 +61146,6.161,45.509 +61147,8.2843,45.579 +61148,10.437,45.635 +61149,2.8295,45.365 +61150,4.9028,45.503 +61151,6.9984,45.629 +61152,9.118,45.742 +61153,1.5964,45.303 +61154,3.6451,45.497 +61155,5.7118,45.679 +61156,7.7979,45.847 +61157,0.36501,45.242 +61158,2.3879,45.491 +61159,4.4245,45.728 +61160,6.4761,45.953 +61161,359.14,45.18 +61162,1.1312,45.485 +61163,3.1366,45.778 +61164,5.1528,46.058 +61165,357.91,45.119 +61166,359.88,45.479 +61167,1.8481,45.828 +61168,3.8281,46.163 +61169,356.68,45.058 +61170,358.62,45.474 +61171,0.55901,45.877 +61172,2.5018,46.267 +61173,355.46,44.998 +61174,357.36,45.469 +61175,359.27,45.927 +61176,1.1741,46.371 +61177,354.24,44.938 +61178,356.11,45.463 +61179,357.98,45.976 +61180,359.84,46.474 +61181,353.02,44.878 +61182,354.86,45.459 +61183,356.69,46.025 +61184,358.51,46.576 +61185,351.8,44.818 +61186,353.6,45.454 +61187,355.4,46.074 +61188,357.18,46.678 +61189,350.58,44.76 +61190,352.35,45.449 +61191,354.1,46.123 +61192,355.85,46.779 +61193,349.36,44.701 +61194,351.1,45.445 +61195,352.81,46.172 +61196,354.51,46.88 +61197,348.15,44.644 +61198,349.84,45.441 +61199,351.52,46.22 +61200,353.18,46.98 +61201,346.94,44.586 +61202,348.59,45.437 +61203,350.23,46.268 +61204,351.84,47.079 +61205,345.73,44.53 +61206,347.34,45.434 +61207,348.93,46.316 +61208,350.5,47.177 +61209,344.52,44.474 +61210,346.09,45.431 +61211,347.64,46.364 +61212,349.17,47.274 +61213,343.31,44.419 +61214,344.84,45.428 +61215,346.34,46.412 +61216,347.82,47.371 +61217,342.11,44.365 +61218,343.59,45.426 +61219,345.05,46.459 +61220,346.48,47.466 +61221,340.9,44.312 +61222,342.34,45.423 +61223,343.75,46.506 +61224,345.14,47.561 +61225,339.7,44.259 +61226,341.09,45.422 +61227,342.45,46.553 +61228,343.8,47.654 +61229,338.5,44.208 +61230,339.84,45.42 +61231,341.16,46.6 +61232,342.45,47.747 +61233,337.3,44.157 +61234,338.59,45.419 +61235,339.86,46.646 +61236,341.11,47.839 +61237,336.1,44.107 +61238,337.34,45.418 +61239,338.56,46.692 +61240,339.76,47.929 +61241,334.9,44.059 +61242,336.09,45.418 +61243,337.26,46.738 +61244,338.41,48.019 +61245,333.71,44.011 +61246,334.84,45.418 +61247,335.96,46.783 +61248,337.07,48.107 +61249,332.51,43.965 +61250,333.59,45.419 +61251,334.66,46.828 +61252,335.72,48.194 +61253,331.32,43.92 +61254,332.35,45.42 +61255,333.36,46.872 +61256,334.37,48.28 +61257,330.12,43.876 +61258,331.1,45.421 +61259,332.06,46.917 +61260,333.02,48.364 +61261,328.93,43.833 +61262,329.85,45.423 +61263,330.76,46.96 +61264,331.67,48.448 +61265,327.74,43.791 +61266,328.61,45.426 +61267,329.46,47.004 +61268,330.32,48.53 +61269,326.55,43.751 +61270,327.36,45.428 +61271,328.16,47.047 +61272,328.96,48.611 +61273,325.37,43.712 +61274,326.11,45.432 +61275,326.86,47.09 +61276,327.61,48.691 +61277,324.18,43.675 +61278,324.87,45.436 +61279,325.56,47.132 +61280,326.26,48.769 +61281,322.99,43.639 +61282,323.62,45.44 +61283,324.26,47.174 +61284,324.91,48.846 +61285,321.81,43.604 +61286,322.37,45.445 +61287,322.96,47.215 +61288,323.55,48.921 +61289,320.62,43.571 +61290,321.13,45.45 +61291,321.65,47.256 +61292,322.2,48.995 +61293,319.44,43.539 +61294,319.88,45.456 +61295,320.35,47.297 +61296,320.84,49.068 +61297,318.25,43.509 +61298,318.64,45.462 +61299,319.05,47.337 +61300,319.49,49.139 +61301,317.07,43.481 +61302,317.39,45.469 +61303,317.75,47.376 +61304,318.13,49.209 +61305,315.89,43.454 +61306,316.14,45.477 +61307,316.44,47.415 +61308,316.78,49.277 +61309,314.7,43.428 +61310,314.9,45.485 +61311,315.14,47.454 +61312,315.42,49.344 +61313,313.52,43.405 +61314,313.65,45.494 +61315,313.84,47.492 +61316,314.06,49.409 +61317,312.34,43.383 +61318,312.41,45.503 +61319,312.53,47.53 +61320,312.71,49.473 +61321,311.16,43.362 +61322,311.16,45.513 +61323,311.23,47.567 +61324,311.35,49.536 +61325,309.98,43.344 +61326,309.92,45.524 +61327,309.93,47.604 +61328,309.99,49.596 +61329,308.8,43.327 +61330,308.67,45.535 +61331,308.62,47.64 +61332,308.64,49.655 +61333,307.62,43.312 +61334,307.42,45.546 +61335,307.32,47.676 +61336,307.28,49.713 +61337,306.44,43.299 +61338,306.18,45.559 +61339,306.01,47.711 +61340,305.92,49.769 +61341,305.25,43.288 +61342,304.93,45.572 +61343,304.71,47.745 +61344,304.57,49.823 +61345,304.07,43.279 +61346,303.69,45.585 +61347,303.41,47.78 +61348,303.21,49.876 +61349,302.89,43.271 +61350,302.44,45.599 +61351,302.1,47.813 +61352,301.85,49.927 +61353,301.71,43.265 +61354,301.19,45.614 +61355,300.8,47.846 +61356,300.5,49.976 +61357,300.53,43.262 +61358,299.95,45.63 +61359,299.49,47.879 +61360,299.14,50.024 +61361,299.35,43.26 +61362,298.7,45.646 +61363,298.19,47.911 +61364,297.79,50.07 +61365,298.17,43.26 +61366,297.45,45.663 +61367,296.89,47.942 +61368,296.43,50.115 +61369,296.98,43.262 +61370,296.21,45.68 +61371,295.58,47.973 +61372,295.08,50.158 +61373,295.8,43.266 +61374,294.96,45.698 +61375,294.28,48.003 +61376,293.72,50.199 +61377,294.61,43.272 +61378,293.71,45.717 +61379,292.97,48.033 +61380,292.37,50.238 +61381,293.43,43.28 +61382,292.46,45.736 +61383,291.67,48.062 +61384,291.01,50.276 +61385,292.24,43.29 +61386,291.21,45.757 +61387,290.37,48.091 +61388,289.66,50.312 +61389,291.06,43.302 +61390,289.97,45.777 +61391,289.06,48.119 +61392,288.3,50.347 +61393,289.87,43.316 +61394,288.72,45.799 +61395,287.76,48.147 +61396,286.95,50.38 +61397,288.68,43.332 +61398,287.47,45.821 +61399,286.46,48.174 +61400,285.6,50.411 +61401,287.49,43.35 +61402,286.22,45.843 +61403,285.15,48.2 +61404,284.25,50.44 +61405,286.3,43.37 +61406,284.97,45.867 +61407,283.85,48.226 +61408,282.9,50.468 +61409,285.11,43.392 +61410,283.72,45.891 +61411,282.55,48.251 +61412,281.55,50.494 +61413,283.92,43.416 +61414,282.47,45.916 +61415,281.24,48.276 +61416,280.2,50.518 +61417,282.72,43.442 +61418,281.21,45.941 +61419,279.94,48.3 +61420,278.85,50.541 +61421,281.53,43.471 +61422,279.96,45.967 +61423,278.64,48.324 +61424,277.5,50.562 +61425,280.33,43.501 +61426,278.71,45.994 +61427,277.34,48.347 +61428,276.15,50.581 +61429,279.14,43.533 +61430,277.46,46.021 +61431,276.03,48.369 +61432,274.8,50.599 +61433,277.94,43.567 +61434,276.21,46.049 +61435,274.73,48.391 +61436,273.46,50.615 +61437,276.74,43.603 +61438,274.95,46.078 +61439,273.43,48.413 +61440,272.11,50.629 +61441,275.53,43.641 +61442,273.7,46.107 +61443,272.13,48.434 +61444,270.77,50.642 +61445,274.33,43.681 +61446,272.44,46.137 +61447,270.83,48.454 +61448,269.42,50.653 +61449,273.12,43.724 +61450,271.19,46.168 +61451,269.53,48.474 +61452,268.08,50.662 +61453,271.92,43.768 +61454,269.93,46.199 +61455,268.23,48.493 +61456,266.74,50.67 +61457,270.71,43.813 +61458,268.68,46.231 +61459,266.93,48.512 +61460,265.4,50.676 +61461,269.5,43.861 +61462,267.42,46.264 +61463,265.63,48.53 +61464,264.06,50.681 +61465,268.28,43.911 +61466,266.16,46.297 +61467,264.33,48.547 +61468,262.72,50.684 +61469,267.07,43.963 +61470,264.9,46.33 +61471,263.03,48.565 +61472,261.38,50.685 +61473,265.85,44.016 +61474,263.64,46.365 +61475,261.73,48.581 +61476,260.05,50.685 +61477,264.63,44.072 +61478,262.39,46.4 +61479,260.44,48.597 +61480,258.71,50.684 +61481,263.41,44.129 +61482,261.13,46.435 +61483,259.14,48.613 +61484,257.38,50.681 +61485,262.19,44.188 +61486,259.87,46.472 +61487,257.84,48.628 +61488,256.05,50.676 +61489,260.96,44.249 +61490,258.6,46.508 +61491,256.54,48.642 +61492,254.72,50.67 +61493,259.74,44.311 +61494,257.34,46.546 +61495,255.25,48.657 +61496,253.39,50.662 +61497,258.51,44.375 +61498,256.08,46.584 +61499,253.95,48.67 +61500,252.06,50.653 +61501,257.28,44.441 +61502,254.82,46.622 +61503,252.66,48.683 +61504,250.73,50.642 +61505,256.04,44.509 +61506,253.55,46.661 +61507,251.36,48.696 +61508,249.4,50.63 +61509,254.81,44.578 +61510,252.29,46.701 +61511,250.07,48.708 +61512,248.08,50.617 +61513,253.57,44.649 +61514,251.02,46.741 +61515,248.77,48.72 +61516,246.75,50.602 +61517,252.33,44.721 +61518,249.76,46.782 +61519,247.48,48.731 +61520,245.43,50.585 +61521,251.09,44.795 +61522,248.49,46.823 +61523,246.19,48.742 +61524,244.11,50.568 +61525,249.84,44.871 +61526,247.22,46.865 +61527,244.89,48.752 +61528,242.79,50.549 +61529,248.6,44.948 +61530,245.95,46.907 +61531,243.6,48.762 +61532,241.47,50.529 +61533,247.35,45.026 +61534,244.68,46.95 +61535,242.31,48.772 +61536,240.16,50.507 +61537,246.1,45.106 +61538,243.41,46.993 +61539,241.02,48.781 +61540,238.84,50.484 +61541,244.84,45.188 +61542,242.14,47.037 +61543,239.73,48.79 +61544,237.53,50.46 +61545,243.59,45.27 +61546,240.87,47.081 +61547,238.44,48.798 +61548,236.22,50.435 +61549,242.33,45.354 +61550,239.6,47.125 +61551,237.15,48.806 +61552,234.91,50.409 +61553,241.07,45.44 +61554,238.33,47.171 +61555,235.86,48.814 +61556,233.6,50.381 +61557,239.81,45.526 +61558,237.05,47.216 +61559,234.57,48.821 +61560,232.29,50.352 +61561,238.54,45.614 +61562,235.78,47.262 +61563,233.28,48.828 +61564,230.99,50.322 +61565,237.27,45.703 +61566,234.51,47.308 +61567,231.99,48.834 +61568,229.69,50.291 +61569,236,45.793 +61570,233.23,47.355 +61571,230.71,48.84 +61572,228.38,50.259 +61573,234.73,45.884 +61574,231.95,47.402 +61575,229.42,48.846 +61576,227.08,50.226 +61577,233.46,45.976 +61578,230.68,47.45 +61579,228.13,48.852 +61580,225.79,50.192 +61581,232.18,46.069 +61582,229.4,47.497 +61583,226.85,48.857 +61584,224.49,50.157 +61585,230.9,46.163 +61586,228.12,47.546 +61587,225.56,48.862 +61588,223.2,50.121 +61589,229.62,46.258 +61590,226.84,47.594 +61591,224.28,48.867 +61592,221.9,50.084 +61593,228.34,46.354 +61594,225.56,47.643 +61595,223,48.871 +61596,220.61,50.046 +61597,227.05,46.451 +61598,224.28,47.692 +61599,221.71,48.875 +61600,219.32,50.008 +61601,225.76,46.548 +61602,222.99,47.741 +61603,220.43,48.879 +61604,218.03,49.968 +61605,224.47,46.647 +61606,221.71,47.791 +61607,219.15,48.883 +61608,216.75,49.928 +61609,223.18,46.746 +61610,220.43,47.841 +61611,217.87,48.886 +61612,215.46,49.887 +61613,221.88,46.845 +61614,219.14,47.891 +61615,216.59,48.89 +61616,214.18,49.845 +61617,220.59,46.946 +61618,217.86,47.942 +61619,215.31,48.893 +61620,212.9,49.803 +61621,219.29,47.047 +61622,216.57,47.993 +61623,214.03,48.895 +61624,211.62,49.76 +61625,217.99,47.148 +61626,215.29,48.044 +61627,212.75,48.898 +61628,210.35,49.716 +61629,216.68,47.25 +61630,214,48.095 +61631,211.47,48.901 +61632,209.07,49.672 +61633,215.38,47.353 +61634,212.71,48.146 +61635,210.19,48.903 +61636,207.8,49.627 +61637,214.07,47.455 +61638,211.42,48.198 +61639,208.91,48.905 +61640,206.53,49.582 +61641,212.76,47.559 +61642,210.13,48.249 +61643,207.64,48.907 +61644,205.26,49.536 +61645,211.45,47.662 +61646,208.84,48.301 +61647,206.36,48.909 +61648,203.99,49.489 +61649,210.13,47.766 +61650,207.55,48.353 +61651,205.08,48.911 +61652,202.73,49.443 +61653,208.82,47.87 +61654,206.26,48.405 +61655,203.81,48.913 +61656,201.46,49.396 +61657,207.5,47.975 +61658,204.96,48.457 +61659,202.54,48.914 +61660,200.2,49.348 +61661,206.18,48.079 +61662,203.67,48.51 +61663,201.26,48.916 +61664,198.94,49.301 +61665,204.86,48.184 +61666,202.38,48.562 +61667,199.99,48.918 +61668,197.68,49.253 +61669,203.54,48.288 +61670,201.08,48.615 +61671,198.72,48.919 +61672,196.43,49.204 +61673,202.21,48.393 +61674,199.79,48.667 +61675,197.44,48.921 +61676,195.17,49.156 +61677,200.89,48.498 +61678,198.49,48.72 +61679,196.17,48.922 +61680,193.92,49.107 +61681,199.56,48.602 +61682,197.19,48.772 +61683,194.9,48.924 +61684,192.67,49.059 +61685,198.23,48.707 +61686,195.9,48.825 +61687,193.63,48.925 +61688,191.42,49.01 +61689,196.89,48.811 +61690,194.6,48.877 +61691,192.36,48.927 +61692,190.18,48.961 +61693,195.56,48.916 +61694,193.3,48.93 +61695,191.09,48.928 +61696,188.93,48.912 +61697,194.22,49.02 +61698,192,48.982 +61699,189.82,48.93 +61700,187.69,48.864 +61701,192.89,49.124 +61702,190.7,49.035 +61703,188.55,48.932 +61704,186.45,48.815 +61705,191.55,49.227 +61706,189.4,49.087 +61707,187.28,48.933 +61708,185.21,48.767 +61709,190.21,49.33 +61710,188.1,49.14 +61711,186.02,48.935 +61712,183.97,48.718 +61713,188.87,49.433 +61714,186.79,49.192 +61715,184.75,48.937 +61716,182.73,48.67 +61717,187.52,49.536 +61718,185.49,49.244 +61719,183.48,48.939 +61720,181.5,48.622 +61721,186.18,49.638 +61722,184.19,49.296 +61723,182.22,48.941 +61724,180.27,48.574 +61725,184.83,49.739 +61726,182.88,49.348 +61727,180.95,48.944 +61728,179.04,48.527 +61729,183.49,49.84 +61730,181.58,49.4 +61731,179.69,48.946 +61732,177.81,48.48 +61733,182.14,49.941 +61734,180.27,49.452 +61735,178.42,48.949 +61736,176.58,48.433 +61737,180.79,50.041 +61738,178.97,49.503 +61739,177.16,48.952 +61740,175.35,48.387 +61741,179.44,50.14 +61742,177.66,49.555 +61743,175.89,48.955 +61744,174.13,48.341 +61745,178.09,50.238 +61746,176.36,49.606 +61747,174.63,48.958 +61748,172.91,48.296 +61749,176.73,50.336 +61750,175.05,49.657 +61751,173.37,48.962 +61752,171.69,48.251 +61753,175.38,50.434 +61754,173.74,49.708 +61755,172.1,48.965 +61756,170.47,48.207 +61757,174.02,50.53 +61758,172.43,49.758 +61759,170.84,48.969 +61760,169.25,48.164 +61761,172.67,50.626 +61762,171.12,49.809 +61763,169.58,48.973 +61764,168.03,48.121 +61765,171.31,50.72 +61766,169.82,49.859 +61767,168.32,48.978 +61768,166.82,48.079 +61769,169.95,50.814 +61770,168.51,49.909 +61771,167.06,48.983 +61772,165.6,48.037 +61773,168.59,50.908 +61774,167.2,49.958 +61775,165.8,48.988 +61776,164.39,47.997 +61777,167.23,51 +61778,165.89,50.007 +61779,164.54,48.993 +61780,163.18,47.957 +61781,165.87,51.091 +61782,164.57,50.056 +61783,163.28,48.998 +61784,161.97,47.918 +61785,164.51,51.181 +61786,163.26,50.105 +61787,162.02,49.004 +61788,160.76,47.879 +61789,163.14,51.27 +61790,161.95,50.154 +61791,160.76,49.011 +61792,159.56,47.842 +61793,161.78,51.359 +61794,160.64,50.202 +61795,159.5,49.017 +61796,158.35,47.806 +61797,160.41,51.446 +61798,159.33,50.249 +61799,158.24,49.024 +61800,157.14,47.771 +61801,159.05,51.532 +61802,158.02,50.297 +61803,156.98,49.032 +61804,155.94,47.736 +61805,157.68,51.617 +61806,156.7,50.344 +61807,155.72,49.039 +61808,154.74,47.703 +61809,156.32,51.701 +61810,155.39,50.391 +61811,154.46,49.047 +61812,153.54,47.671 +61813,154.95,51.783 +61814,154.08,50.437 +61815,153.2,49.056 +61816,152.34,47.64 +61817,153.58,51.865 +61818,152.76,50.483 +61819,151.95,49.065 +61820,151.14,47.61 +61821,152.21,51.945 +61822,151.45,50.529 +61823,150.69,49.074 +61824,149.94,47.581 +61825,150.85,52.024 +61826,150.13,50.574 +61827,149.43,49.084 +61828,148.74,47.553 +61829,149.48,52.102 +61830,148.82,50.619 +61831,148.17,49.094 +61832,147.54,47.527 +61833,148.11,52.179 +61834,147.5,50.663 +61835,146.92,49.105 +61836,146.34,47.502 +61837,146.74,52.254 +61838,146.19,50.707 +61839,145.66,49.116 +61840,145.15,47.478 +61841,145.37,52.328 +61842,144.87,50.751 +61843,144.4,49.127 +61844,143.95,47.456 +61845,144,52.401 +61846,143.56,50.794 +61847,143.14,49.139 +61848,142.76,47.435 +61849,142.63,52.472 +61850,142.24,50.836 +61851,141.89,49.152 +61852,141.56,47.415 +61853,141.26,52.542 +61854,140.93,50.879 +61855,140.63,49.165 +61856,140.37,47.397 +61857,139.88,52.61 +61858,139.61,50.92 +61859,139.37,49.178 +61860,139.18,47.38 +61861,138.51,52.677 +61862,138.29,50.962 +61863,138.11,49.192 +61864,137.98,47.364 +61865,137.14,52.743 +61866,136.98,51.003 +61867,136.86,49.206 +61868,136.79,47.35 +61869,135.77,52.807 +61870,135.66,51.043 +61871,135.6,49.221 +61872,135.6,47.338 +61873,134.4,52.87 +61874,134.35,51.083 +61875,134.34,49.237 +61876,134.41,47.327 +61877,133.03,52.931 +61878,133.03,51.122 +61879,133.09,49.253 +61880,133.21,47.318 +61881,131.66,52.991 +61882,131.71,51.161 +61883,131.83,49.269 +61884,132.02,47.31 +61885,130.29,53.05 +61886,130.4,51.2 +61887,130.57,49.286 +61888,130.83,47.303 +61889,128.92,53.107 +61890,129.08,51.238 +61891,129.31,49.304 +61892,129.64,47.299 +61893,127.55,53.162 +61894,127.76,51.275 +61895,128.06,49.322 +61896,128.44,47.296 +61897,126.17,53.216 +61898,126.45,51.312 +61899,126.8,49.341 +61900,127.25,47.294 +61901,124.8,53.268 +61902,125.13,51.348 +61903,125.54,49.36 +61904,126.06,47.295 +61905,123.43,53.319 +61906,123.81,51.384 +61907,124.28,49.379 +61908,124.86,47.297 +61909,122.06,53.368 +61910,122.5,51.42 +61911,123.02,49.4 +61912,123.67,47.3 +61913,120.69,53.416 +61914,121.18,51.455 +61915,121.77,49.421 +61916,122.48,47.306 +61917,119.33,53.462 +61918,119.86,51.489 +61919,120.51,49.442 +61920,121.28,47.313 +61921,117.96,53.507 +61922,118.55,51.523 +61923,119.25,49.464 +61924,120.09,47.322 +61925,116.59,53.55 +61926,117.23,51.556 +61927,117.99,49.487 +61928,118.89,47.332 +61929,115.22,53.591 +61930,115.91,51.589 +61931,116.73,49.51 +61932,117.69,47.344 +61933,113.85,53.631 +61934,114.6,51.621 +61935,115.47,49.533 +61936,116.5,47.358 +61937,112.49,53.669 +61938,113.28,51.653 +61939,114.21,49.558 +61940,115.3,47.374 +61941,111.12,53.706 +61942,111.97,51.684 +61943,112.95,49.583 +61944,114.1,47.391 +61945,109.76,53.741 +61946,110.65,51.715 +61947,111.69,49.608 +61948,112.9,47.411 +61949,108.39,53.775 +61950,109.34,51.745 +61951,110.43,49.634 +61952,111.7,47.432 +61953,107.03,53.807 +61954,108.02,51.775 +61955,109.17,49.661 +61956,110.5,47.455 +61957,105.66,53.837 +61958,106.71,51.804 +61959,107.9,49.688 +61960,109.3,47.479 +61961,104.3,53.866 +61962,105.39,51.832 +61963,106.64,49.716 +61964,108.09,47.505 +61965,102.94,53.893 +61966,104.08,51.86 +61967,105.38,49.744 +61968,106.89,47.534 +61969,101.58,53.919 +61970,102.76,51.888 +61971,104.12,49.773 +61972,105.68,47.563 +61973,100.22,53.943 +61974,101.45,51.915 +61975,102.85,49.802 +61976,104.47,47.595 +61977,98.856,53.966 +61978,100.13,51.941 +61979,101.59,49.832 +61980,103.26,47.628 +61981,97.498,53.987 +61982,98.821,51.967 +61983,100.32,49.863 +61984,102.05,47.664 +61985,96.14,54.006 +61986,97.508,51.992 +61987,99.059,49.894 +61988,100.84,47.701 +61989,94.783,54.024 +61990,96.195,52.017 +61991,97.794,49.926 +61992,99.627,47.739 +61993,93.427,54.041 +61994,94.883,52.041 +61995,96.528,49.958 +61996,98.412,47.78 +61997,92.072,54.056 +61998,93.57,52.065 +61999,95.261,49.991 +62000,97.196,47.822 +62001,90.719,54.069 +62002,92.258,52.088 +62003,93.994,50.025 +62004,95.978,47.866 +62005,89.366,54.081 +62006,90.947,52.111 +62007,92.727,50.059 +62008,94.758,47.911 +62009,88.014,54.091 +62010,89.636,52.133 +62011,91.459,50.093 +62012,93.536,47.958 +62013,86.664,54.1 +62014,88.325,52.155 +62015,90.19,50.128 +62016,92.313,48.007 +62017,85.314,54.107 +62018,87.014,52.176 +62019,88.921,50.164 +62020,91.088,48.058 +62021,83.966,54.113 +62022,85.704,52.197 +62023,87.651,50.2 +62024,89.861,48.11 +62025,82.619,54.118 +62026,84.395,52.217 +62027,86.38,50.237 +62028,88.632,48.164 +62029,81.274,54.121 +62030,83.085,52.237 +62031,85.109,50.274 +62032,87.401,48.219 +62033,79.929,54.122 +62034,81.776,52.256 +62035,83.837,50.312 +62036,86.168,48.276 +62037,78.586,54.123 +62038,80.468,52.275 +62039,82.565,50.35 +62040,84.934,48.335 +62041,77.244,54.121 +62042,79.16,52.294 +62043,81.292,50.389 +62044,83.697,48.395 +62045,75.904,54.119 +62046,77.852,52.311 +62047,80.018,50.428 +62048,82.458,48.457 +62049,74.565,54.115 +62050,76.545,52.329 +62051,78.744,50.468 +62052,81.217,48.52 +62053,73.227,54.109 +62054,75.239,52.346 +62055,77.469,50.508 +62056,79.974,48.585 +62057,71.89,54.103 +62058,73.932,52.362 +62059,76.193,50.549 +62060,78.729,48.651 +62061,70.555,54.095 +62062,72.627,52.378 +62063,74.917,50.59 +62064,77.482,48.719 +62065,69.222,54.086 +62066,71.322,52.394 +62067,73.64,50.632 +62068,76.233,48.788 +62069,67.89,54.075 +62070,70.017,52.409 +62071,72.362,50.674 +62072,74.981,48.858 +62073,66.56,54.063 +62074,68.713,52.424 +62075,71.084,50.716 +62076,73.727,48.93 +62077,65.231,54.05 +62078,67.409,52.438 +62079,69.804,50.759 +62080,72.471,49.003 +62081,63.903,54.036 +62082,66.106,52.452 +62083,68.524,50.803 +62084,71.213,49.078 +62085,62.577,54.021 +62086,64.803,52.466 +62087,67.244,50.847 +62088,69.952,49.154 +62089,61.253,54.004 +62090,63.501,52.479 +62091,65.962,50.891 +62092,68.69,49.231 +62093,59.93,53.987 +62094,62.199,52.492 +62095,64.68,50.935 +62096,67.425,49.309 +62097,58.609,53.968 +62098,60.898,52.504 +62099,63.397,50.981 +62100,66.157,49.388 +62101,57.29,53.948 +62102,59.598,52.516 +62103,62.114,51.026 +62104,64.888,49.469 +62105,55.972,53.927 +62106,58.298,52.528 +62107,60.829,51.072 +62108,63.616,49.551 +62109,54.656,53.905 +62110,56.998,52.539 +62111,59.544,51.118 +62112,62.342,49.634 +62113,53.342,53.882 +62114,55.699,52.55 +62115,58.258,51.165 +62116,61.065,49.717 +62117,52.029,53.858 +62118,54.401,52.561 +62119,56.972,51.212 +62120,59.787,49.802 +62121,50.718,53.833 +62122,53.103,52.571 +62123,55.684,51.259 +62124,58.506,49.888 +62125,49.409,53.807 +62126,51.806,52.581 +62127,54.396,51.306 +62128,57.222,49.975 +62129,48.101,53.78 +62130,50.509,52.591 +62131,53.107,51.354 +62132,55.937,50.063 +62133,46.796,53.753 +62134,49.213,52.601 +62135,51.818,51.402 +62136,54.649,50.152 +62137,45.492,53.724 +62138,47.918,52.61 +62139,50.527,51.451 +62140,53.359,50.241 +62141,44.189,53.695 +62142,46.623,52.619 +62143,49.236,51.5 +62144,52.066,50.331 +62145,42.889,53.664 +62146,45.329,52.627 +62147,47.944,51.549 +62148,50.772,50.423 +62149,41.59,53.633 +62150,44.035,52.636 +62151,46.652,51.598 +62152,49.475,50.514 +62153,40.294,53.602 +62154,42.742,52.644 +62155,45.358,51.647 +62156,48.176,50.607 +62157,38.999,53.569 +62158,41.449,52.652 +62159,44.064,51.697 +62160,46.874,50.7 +62161,37.706,53.536 +62162,40.157,52.659 +62163,42.769,51.747 +62164,45.571,50.794 +62165,36.414,53.503 +62166,38.866,52.667 +62167,41.473,51.797 +62168,44.265,50.889 +62169,35.125,53.468 +62170,37.575,52.674 +62171,40.177,51.848 +62172,42.957,50.984 +62173,33.837,53.433 +62174,36.285,52.681 +62175,38.879,51.898 +62176,41.647,51.079 +62177,32.551,53.398 +62178,34.996,52.688 +62179,37.582,51.949 +62180,40.335,51.175 +62181,31.268,53.362 +62182,33.707,52.695 +62183,36.283,52 +62184,39.02,51.272 +62185,29.985,53.326 +62186,32.418,52.702 +62187,34.983,52.051 +62188,37.704,51.369 +62189,28.705,53.289 +62190,31.13,52.708 +62191,33.683,52.102 +62192,36.385,51.466 +62193,27.427,53.251 +62194,29.843,52.715 +62195,32.382,52.153 +62196,35.065,51.563 +62197,26.15,53.214 +62198,28.556,52.721 +62199,31.081,52.205 +62200,33.742,51.661 +62201,24.876,53.176 +62202,27.27,52.727 +62203,29.778,52.256 +62204,32.418,51.759 +62205,23.603,53.137 +62206,25.985,52.733 +62207,28.475,52.308 +62208,31.091,51.858 +62209,22.332,53.098 +62210,24.7,52.739 +62211,27.171,52.359 +62212,29.763,51.956 +62213,21.063,53.06 +62214,23.415,52.745 +62215,25.867,52.411 +62216,28.433,52.055 +62217,19.796,53.02 +62218,22.132,52.751 +62219,24.562,52.463 +62220,27.1,52.153 +62221,18.53,52.981 +62222,20.848,52.757 +62223,23.256,52.515 +62224,25.766,52.252 +62225,17.267,52.942 +62226,19.566,52.763 +62227,21.949,52.567 +62228,24.43,52.351 +62229,16.005,52.902 +62230,18.283,52.768 +62231,20.642,52.618 +62232,23.093,52.45 +62233,14.745,52.863 +62234,17.002,52.774 +62235,19.334,52.67 +62236,21.753,52.549 +62237,13.487,52.823 +62238,15.721,52.78 +62239,18.026,52.722 +62240,20.412,52.647 +62241,12.23,52.783 +62242,14.44,52.786 +62243,16.717,52.774 +62244,19.069,52.746 +62245,10.976,52.744 +62246,13.16,52.792 +62247,15.407,52.826 +62248,17.725,52.844 +62249,9.7231,52.704 +62250,11.881,52.797 +62251,14.097,52.878 +62252,16.378,52.942 +62253,8.472,52.664 +62254,10.602,52.803 +62255,12.786,52.929 +62256,15.031,53.04 +62257,7.2226,52.625 +62258,9.3231,52.809 +62259,11.474,52.981 +62260,13.681,53.138 +62261,5.975,52.586 +62262,8.0451,52.815 +62263,10.162,53.032 +62264,12.33,53.235 +62265,4.7291,52.547 +62266,6.7676,52.821 +62267,8.8488,53.084 +62268,10.978,53.332 +62269,3.4848,52.508 +62270,5.4906,52.828 +62271,7.5354,53.135 +62272,9.6239,53.429 +62273,2.2422,52.47 +62274,4.214,52.834 +62275,6.2214,53.186 +62276,8.2686,53.525 +62277,1.0013,52.432 +62278,2.938,52.84 +62279,4.9069,53.237 +62280,6.9119,53.621 +62281,359.76,52.394 +62282,1.6623,52.847 +62283,3.5918,53.288 +62284,5.5538,53.716 +62285,358.52,52.356 +62286,0.38716,52.854 +62287,2.2762,53.339 +62288,4.1944,53.811 +62289,357.29,52.319 +62290,359.11,52.86 +62291,0.96005,53.39 +62292,2.8337,53.905 +62293,356.05,52.283 +62294,357.84,52.868 +62295,359.64,53.44 +62296,1.4718,53.998 +62297,354.82,52.247 +62298,356.56,52.875 +62299,358.33,53.49 +62300,0.10868,54.091 +62301,353.59,52.211 +62302,355.29,52.882 +62303,357.01,53.54 +62304,358.74,54.184 +62305,352.36,52.176 +62306,354.02,52.89 +62307,355.69,53.59 +62308,357.38,54.276 +62309,351.13,52.142 +62310,352.74,52.898 +62311,354.37,53.64 +62312,356.01,54.366 +62313,349.9,52.108 +62314,351.47,52.906 +62315,353.05,53.689 +62316,354.64,54.457 +62317,348.68,52.075 +62318,350.2,52.914 +62319,351.73,53.738 +62320,353.28,54.546 +62321,347.45,52.043 +62322,348.93,52.922 +62323,350.41,53.787 +62324,351.91,54.635 +62325,346.23,52.011 +62326,347.66,52.931 +62327,349.09,53.835 +62328,350.54,54.723 +62329,345.01,51.98 +62330,346.39,52.94 +62331,347.77,53.884 +62332,349.16,54.81 +62333,343.79,51.95 +62334,345.12,52.949 +62335,346.45,53.932 +62336,347.79,54.896 +62337,342.57,51.92 +62338,343.85,52.959 +62339,345.13,53.98 +62340,346.42,54.981 +62341,341.35,51.892 +62342,342.58,52.969 +62343,343.81,54.027 +62344,345.05,55.065 +62345,340.13,51.864 +62346,341.31,52.979 +62347,342.49,54.074 +62348,343.67,55.148 +62349,338.91,51.837 +62350,340.04,52.989 +62351,341.16,54.121 +62352,342.3,55.231 +62353,337.7,51.812 +62354,338.77,53 +62355,339.84,54.167 +62356,340.92,55.312 +62357,336.49,51.787 +62358,337.5,53.011 +62359,338.52,54.214 +62360,339.54,55.392 +62361,335.27,51.763 +62362,336.23,53.023 +62363,337.19,54.259 +62364,338.16,55.472 +62365,334.06,51.74 +62366,334.96,53.035 +62367,335.87,54.305 +62368,336.79,55.55 +62369,332.85,51.718 +62370,333.69,53.047 +62371,334.55,54.35 +62372,335.41,55.627 +62373,331.64,51.697 +62374,332.42,53.059 +62375,333.22,54.395 +62376,334.03,55.702 +62377,330.43,51.678 +62378,331.16,53.072 +62379,331.9,54.439 +62380,332.65,55.777 +62381,329.22,51.659 +62382,329.89,53.086 +62383,330.57,54.483 +62384,331.27,55.851 +62385,328.01,51.642 +62386,328.62,53.099 +62387,329.25,54.526 +62388,329.89,55.923 +62389,326.8,51.626 +62390,327.35,53.113 +62391,327.92,54.569 +62392,328.51,55.994 +62393,325.6,51.611 +62394,326.09,53.128 +62395,326.6,54.612 +62396,327.13,56.064 +62397,324.39,51.597 +62398,324.82,53.143 +62399,325.27,54.654 +62400,325.75,56.133 +62401,323.18,51.585 +62402,323.55,53.158 +62403,323.95,54.696 +62404,324.37,56.2 +62405,321.98,51.573 +62406,322.28,53.174 +62407,322.62,54.738 +62408,322.99,56.266 +62409,320.77,51.564 +62410,321.02,53.19 +62411,321.29,54.779 +62412,321.6,56.331 +62413,319.57,51.555 +62414,319.75,53.206 +62415,319.97,54.819 +62416,320.22,56.395 +62417,318.36,51.548 +62418,318.48,53.223 +62419,318.64,54.859 +62420,318.84,56.457 +62421,317.16,51.542 +62422,317.21,53.241 +62423,317.32,54.899 +62424,317.46,56.518 +62425,315.95,51.537 +62426,315.95,53.259 +62427,315.99,54.938 +62428,316.08,56.577 +62429,314.75,51.534 +62430,314.68,53.277 +62431,314.66,54.977 +62432,314.69,56.636 +62433,313.55,51.532 +62434,313.41,53.296 +62435,313.34,55.015 +62436,313.31,56.692 +62437,312.34,51.532 +62438,312.14,53.315 +62439,312.01,55.053 +62440,311.93,56.748 +62441,311.14,51.533 +62442,310.88,53.335 +62443,310.68,55.091 +62444,310.55,56.802 +62445,309.93,51.536 +62446,309.61,53.355 +62447,309.36,55.128 +62448,309.17,56.854 +62449,308.73,51.54 +62450,308.34,53.376 +62451,308.03,55.164 +62452,307.79,56.905 +62453,307.52,51.545 +62454,307.07,53.397 +62455,306.7,55.2 +62456,306.41,56.955 +62457,306.32,51.552 +62458,305.81,53.419 +62459,305.38,55.235 +62460,305.03,57.003 +62461,305.11,51.561 +62462,304.54,53.441 +62463,304.05,55.27 +62464,303.65,57.05 +62465,303.91,51.571 +62466,303.27,53.464 +62467,302.73,55.305 +62468,302.27,57.096 +62469,302.7,51.582 +62470,302,53.487 +62471,301.4,55.339 +62472,300.89,57.14 +62473,301.5,51.595 +62474,300.73,53.511 +62475,300.07,55.372 +62476,299.51,57.182 +62477,300.29,51.61 +62478,299.46,53.535 +62479,298.75,55.405 +62480,298.13,57.223 +62481,299.08,51.626 +62482,298.19,53.56 +62483,297.42,55.437 +62484,296.75,57.263 +62485,297.87,51.644 +62486,296.92,53.585 +62487,296.1,55.469 +62488,295.37,57.301 +62489,296.66,51.663 +62490,295.65,53.611 +62491,294.77,55.501 +62492,294,57.337 +62493,295.45,51.684 +62494,294.38,53.637 +62495,293.45,55.532 +62496,292.62,57.373 +62497,294.24,51.706 +62498,293.11,53.664 +62499,292.12,55.562 +62500,291.25,57.406 +62501,293.03,51.73 +62502,291.84,53.691 +62503,290.8,55.592 +62504,289.87,57.438 +62505,291.82,51.756 +62506,290.57,53.719 +62507,289.47,55.622 +62508,288.5,57.469 +62509,290.61,51.783 +62510,289.3,53.747 +62511,288.15,55.651 +62512,287.12,57.498 +62513,289.39,51.811 +62514,288.03,53.776 +62515,286.82,55.679 +62516,285.75,57.526 +62517,288.18,51.842 +62518,286.76,53.805 +62519,285.5,55.707 +62520,284.38,57.553 +62521,286.96,51.873 +62522,285.48,53.835 +62523,284.17,55.734 +62524,283.01,57.577 +62525,285.74,51.907 +62526,284.21,53.865 +62527,282.85,55.761 +62528,281.64,57.601 +62529,284.52,51.942 +62530,282.94,53.896 +62531,281.53,55.788 +62532,280.27,57.623 +62533,283.3,51.978 +62534,281.66,53.927 +62535,280.21,55.814 +62536,278.9,57.643 +62537,282.08,52.016 +62538,280.39,53.959 +62539,278.88,55.839 +62540,277.53,57.662 +62541,280.86,52.056 +62542,279.11,53.991 +62543,277.56,55.864 +62544,276.16,57.68 +62545,279.63,52.097 +62546,277.84,54.024 +62547,276.24,55.888 +62548,274.8,57.696 +62549,278.41,52.139 +62550,276.56,54.057 +62551,274.92,55.912 +62552,273.43,57.711 +62553,277.18,52.183 +62554,275.29,54.091 +62555,273.6,55.936 +62556,272.07,57.724 +62557,275.95,52.229 +62558,274.01,54.125 +62559,272.27,55.959 +62560,270.71,57.736 +62561,274.72,52.276 +62562,272.73,54.16 +62563,270.95,55.981 +62564,269.35,57.747 +62565,273.49,52.324 +62566,271.45,54.195 +62567,269.63,56.003 +62568,267.99,57.756 +62569,272.25,52.374 +62570,270.18,54.23 +62571,268.31,56.025 +62572,266.63,57.764 +62573,271.02,52.426 +62574,268.9,54.266 +62575,266.99,56.046 +62576,265.27,57.77 +62577,269.78,52.479 +62578,267.62,54.303 +62579,265.68,56.067 +62580,263.91,57.776 +62581,268.54,52.533 +62582,266.34,54.34 +62583,264.36,56.087 +62584,262.56,57.779 +62585,267.3,52.589 +62586,265.06,54.377 +62587,263.04,56.107 +62588,261.21,57.782 +62589,266.06,52.646 +62590,263.78,54.415 +62591,261.72,56.126 +62592,259.85,57.783 +62593,264.81,52.704 +62594,262.49,54.454 +62595,260.4,56.145 +62596,258.5,57.783 +62597,263.57,52.764 +62598,261.21,54.492 +62599,259.09,56.163 +62600,257.15,57.782 +62601,262.32,52.825 +62602,259.93,54.532 +62603,257.77,56.181 +62604,255.8,57.779 +62605,261.07,52.888 +62606,258.64,54.571 +62607,256.46,56.199 +62608,254.46,57.775 +62609,259.81,52.951 +62610,257.36,54.611 +62611,255.14,56.216 +62612,253.11,57.77 +62613,258.56,53.016 +62614,256.08,54.652 +62615,253.83,56.232 +62616,251.77,57.764 +62617,257.3,53.083 +62618,254.79,54.693 +62619,252.51,56.249 +62620,250.42,57.756 +62621,256.04,53.15 +62622,253.5,54.734 +62623,251.2,56.265 +62624,249.08,57.748 +62625,254.78,53.219 +62626,252.22,54.775 +62627,249.88,56.28 +62628,247.74,57.738 +62629,253.52,53.288 +62630,250.93,54.817 +62631,248.57,56.295 +62632,246.4,57.727 +62633,252.26,53.359 +62634,249.64,54.86 +62635,247.26,56.31 +62636,245.07,57.715 +62637,250.99,53.431 +62638,248.35,54.903 +62639,245.95,56.324 +62640,243.73,57.702 +62641,249.72,53.505 +62642,247.06,54.946 +62643,244.64,56.338 +62644,242.4,57.688 +62645,248.45,53.579 +62646,245.77,54.989 +62647,243.32,56.352 +62648,241.07,57.673 +62649,247.17,53.654 +62650,244.48,55.033 +62651,242.01,56.365 +62652,239.74,57.656 +62653,245.9,53.73 +62654,243.19,55.077 +62655,240.7,56.378 +62656,238.41,57.639 +62657,244.62,53.808 +62658,241.9,55.121 +62659,239.4,56.391 +62660,237.08,57.621 +62661,243.34,53.886 +62662,240.6,55.166 +62663,238.09,56.403 +62664,235.76,57.602 +62665,242.06,53.965 +62666,239.31,55.211 +62667,236.78,56.415 +62668,234.43,57.582 +62669,240.77,54.045 +62670,238.01,55.256 +62671,235.47,56.427 +62672,233.11,57.561 +62673,239.49,54.126 +62674,236.72,55.302 +62675,234.17,56.438 +62676,231.79,57.539 +62677,238.2,54.207 +62678,235.42,55.348 +62679,232.86,56.449 +62680,230.47,57.517 +62681,236.91,54.29 +62682,234.12,55.394 +62683,231.55,56.46 +62684,229.16,57.493 +62685,235.61,54.373 +62686,232.83,55.44 +62687,230.25,56.471 +62688,227.84,57.469 +62689,234.32,54.457 +62690,231.53,55.487 +62691,228.94,56.481 +62692,226.53,57.444 +62693,233.02,54.542 +62694,230.23,55.534 +62695,227.64,56.491 +62696,225.22,57.418 +62697,231.72,54.627 +62698,228.93,55.581 +62699,226.34,56.501 +62700,223.91,57.392 +62701,230.42,54.713 +62702,227.63,55.628 +62703,225.03,56.511 +62704,222.6,57.365 +62705,229.11,54.8 +62706,226.33,55.676 +62707,223.73,56.52 +62708,221.29,57.337 +62709,227.81,54.887 +62710,225.03,55.723 +62711,222.43,56.529 +62712,219.99,57.309 +62713,226.5,54.975 +62714,223.72,55.771 +62715,221.13,56.538 +62716,218.69,57.28 +62717,225.19,55.063 +62718,222.42,55.819 +62719,219.83,56.547 +62720,217.39,57.25 +62721,223.87,55.152 +62722,221.12,55.867 +62723,218.53,56.556 +62724,216.09,57.22 +62725,222.56,55.241 +62726,219.81,55.916 +62727,217.23,56.564 +62728,214.79,57.19 +62729,221.24,55.331 +62730,218.51,55.964 +62731,215.93,56.572 +62732,213.49,57.159 +62733,219.92,55.42 +62734,217.2,56.013 +62735,214.63,56.58 +62736,212.2,57.127 +62737,218.6,55.511 +62738,215.89,56.061 +62739,213.34,56.588 +62740,210.91,57.095 +62741,217.28,55.601 +62742,214.58,56.11 +62743,212.04,56.596 +62744,209.62,57.063 +62745,215.95,55.692 +62746,213.28,56.159 +62747,210.74,56.604 +62748,208.33,57.03 +62749,214.62,55.783 +62750,211.97,56.208 +62751,209.45,56.612 +62752,207.05,56.998 +62753,213.29,55.874 +62754,210.66,56.257 +62755,208.15,56.619 +62756,205.76,56.964 +62757,211.96,55.966 +62758,209.35,56.306 +62759,206.86,56.627 +62760,204.48,56.931 +62761,210.63,56.057 +62762,208.04,56.355 +62763,205.56,56.634 +62764,203.2,56.897 +62765,209.29,56.149 +62766,206.72,56.404 +62767,204.27,56.641 +62768,201.92,56.863 +62769,207.96,56.241 +62770,205.41,56.453 +62771,202.98,56.649 +62772,200.64,56.829 +62773,206.62,56.332 +62774,204.1,56.502 +62775,201.69,56.656 +62776,199.37,56.795 +62777,205.28,56.424 +62778,202.78,56.552 +62779,200.39,56.663 +62780,198.1,56.761 +62781,203.94,56.516 +62782,201.47,56.601 +62783,199.1,56.67 +62784,196.82,56.727 +62785,202.59,56.607 +62786,200.15,56.65 +62787,197.81,56.677 +62788,195.55,56.693 +62789,201.24,56.699 +62790,198.84,56.699 +62791,196.52,56.685 +62792,194.29,56.658 +62793,199.9,56.79 +62794,197.52,56.748 +62795,195.23,56.692 +62796,193.02,56.624 +62797,198.55,56.881 +62798,196.21,56.797 +62799,193.95,56.699 +62800,191.76,56.59 +62801,197.2,56.972 +62802,194.89,56.846 +62803,192.66,56.706 +62804,190.49,56.556 +62805,195.84,57.063 +62806,193.57,56.895 +62807,191.37,56.714 +62808,189.23,56.522 +62809,194.49,57.153 +62810,192.25,56.944 +62811,190.08,56.721 +62812,187.97,56.488 +62813,193.13,57.243 +62814,190.93,56.992 +62815,188.8,56.729 +62816,186.72,56.454 +62817,191.78,57.333 +62818,189.61,57.041 +62819,187.51,56.736 +62820,185.46,56.421 +62821,190.42,57.422 +62822,188.29,57.089 +62823,186.22,56.744 +62824,184.21,56.388 +62825,189.06,57.511 +62826,186.97,57.137 +62827,184.94,56.751 +62828,182.95,56.355 +62829,187.69,57.6 +62830,185.65,57.186 +62831,183.65,56.759 +62832,181.7,56.323 +62833,186.33,57.688 +62834,184.33,57.234 +62835,182.37,56.767 +62836,180.45,56.291 +62837,184.97,57.775 +62838,183,57.281 +62839,181.08,56.775 +62840,179.2,56.259 +62841,183.6,57.862 +62842,181.68,57.329 +62843,179.8,56.784 +62844,177.96,56.228 +62845,182.23,57.949 +62846,180.36,57.377 +62847,178.52,56.792 +62848,176.71,56.197 +62849,180.86,58.034 +62850,179.03,57.424 +62851,177.24,56.801 +62852,175.47,56.167 +62853,179.49,58.12 +62854,177.71,57.471 +62855,175.95,56.809 +62856,174.23,56.137 +62857,178.12,58.204 +62858,176.38,57.518 +62859,174.67,56.818 +62860,172.99,56.108 +62861,176.75,58.288 +62862,175.06,57.564 +62863,173.39,56.827 +62864,171.75,56.079 +62865,175.38,58.371 +62866,173.73,57.611 +62867,172.11,56.837 +62868,170.51,56.051 +62869,174,58.453 +62870,172.41,57.657 +62871,170.83,56.846 +62872,169.27,56.024 +62873,172.63,58.535 +62874,171.08,57.703 +62875,169.55,56.856 +62876,168.04,55.997 +62877,171.25,58.616 +62878,169.75,57.748 +62879,168.27,56.866 +62880,166.8,55.971 +62881,169.88,58.696 +62882,168.42,57.794 +62883,166.99,56.876 +62884,165.57,55.946 +62885,168.5,58.775 +62886,167.1,57.839 +62887,165.71,56.887 +62888,164.34,55.921 +62889,167.12,58.854 +62890,165.77,57.883 +62891,164.43,56.898 +62892,163.11,55.897 +62893,165.74,58.931 +62894,164.44,57.928 +62895,163.15,56.909 +62896,161.88,55.874 +62897,164.36,59.008 +62898,163.11,57.972 +62899,161.87,56.92 +62900,160.65,55.852 +62901,162.98,59.083 +62902,161.78,58.016 +62903,160.6,56.931 +62904,159.43,55.831 +62905,161.59,59.158 +62906,160.45,58.059 +62907,159.32,56.943 +62908,158.2,55.811 +62909,160.21,59.231 +62910,159.12,58.103 +62911,158.04,56.956 +62912,156.98,55.791 +62913,158.83,59.304 +62914,157.79,58.146 +62915,156.76,56.968 +62916,155.75,55.773 +62917,157.44,59.376 +62918,156.46,58.188 +62919,155.49,56.981 +62920,154.53,55.755 +62921,156.06,59.446 +62922,155.13,58.23 +62923,154.21,56.994 +62924,153.31,55.739 +62925,154.67,59.516 +62926,153.8,58.272 +62927,152.93,57.007 +62928,152.09,55.723 +62929,153.29,59.584 +62930,152.47,58.313 +62931,151.66,57.021 +62932,150.87,55.709 +62933,151.9,59.652 +62934,151.13,58.354 +62935,150.38,57.035 +62936,149.65,55.695 +62937,150.52,59.718 +62938,149.8,58.395 +62939,149.11,57.05 +62940,148.43,55.683 +62941,149.13,59.783 +62942,148.47,58.435 +62943,147.83,57.065 +62944,147.21,55.672 +62945,147.74,59.847 +62946,147.14,58.475 +62947,146.55,57.08 +62948,145.99,55.662 +62949,146.36,59.909 +62950,145.81,58.515 +62951,145.28,57.096 +62952,144.77,55.653 +62953,144.97,59.971 +62954,144.47,58.554 +62955,144,57.112 +62956,143.56,55.645 +62957,143.58,60.031 +62958,143.14,58.593 +62959,142.73,57.128 +62960,142.34,55.638 +62961,142.19,60.09 +62962,141.81,58.631 +62963,141.45,57.145 +62964,141.12,55.633 +62965,140.8,60.148 +62966,140.48,58.669 +62967,140.18,57.162 +62968,139.91,55.629 +62969,139.41,60.205 +62970,139.14,58.706 +62971,138.9,57.18 +62972,138.69,55.626 +62973,138.03,60.26 +62974,137.81,58.743 +62975,137.63,57.198 +62976,137.48,55.624 +62977,136.64,60.314 +62978,136.48,58.78 +62979,136.35,57.216 +62980,136.26,55.624 +62981,135.25,60.367 +62982,135.14,58.816 +62983,135.08,57.235 +62984,135.05,55.625 +62985,133.86,60.418 +62986,133.81,58.851 +62987,133.8,57.254 +62988,133.84,55.627 +62989,132.47,60.468 +62990,132.48,58.886 +62991,132.52,57.274 +62992,132.62,55.63 +62993,131.09,60.517 +62994,131.14,58.921 +62995,131.25,57.294 +62996,131.41,55.635 +62997,129.7,60.565 +62998,129.81,58.956 +62999,129.97,57.314 +63000,130.19,55.641 +63001,128.31,60.611 +63002,128.48,58.989 +63003,128.7,57.335 +63004,128.98,55.649 +63005,126.92,60.656 +63006,127.14,59.023 +63007,127.42,57.357 +63008,127.76,55.657 +63009,125.53,60.699 +63010,125.81,59.056 +63011,126.15,57.379 +63012,126.55,55.668 +63013,124.15,60.741 +63014,124.48,59.088 +63015,124.87,57.401 +63016,125.34,55.679 +63017,122.76,60.782 +63018,123.15,59.12 +63019,123.6,57.424 +63020,124.12,55.692 +63021,121.37,60.822 +63022,121.81,59.152 +63023,122.32,57.447 +63024,122.9,55.706 +63025,119.99,60.86 +63026,120.48,59.183 +63027,121.04,57.47 +63028,121.69,55.722 +63029,118.6,60.896 +63030,119.15,59.213 +63031,119.77,57.495 +63032,120.47,55.739 +63033,117.22,60.932 +63034,117.81,59.243 +63035,118.49,57.519 +63036,119.26,55.758 +63037,115.83,60.966 +63038,116.48,59.273 +63039,117.21,57.544 +63040,118.04,55.778 +63041,114.45,60.998 +63042,115.15,59.302 +63043,115.94,57.57 +63044,116.82,55.799 +63045,113.07,61.029 +63046,113.82,59.331 +63047,114.66,57.595 +63048,115.6,55.822 +63049,111.68,61.059 +63050,112.49,59.359 +63051,113.38,57.622 +63052,114.38,55.846 +63053,110.3,61.088 +63054,111.15,59.387 +63055,112.1,57.649 +63056,113.16,55.872 +63057,108.92,61.115 +63058,109.82,59.414 +63059,110.82,57.676 +63060,111.94,55.899 +63061,107.54,61.14 +63062,108.49,59.441 +63063,109.55,57.704 +63064,110.72,55.927 +63065,106.16,61.165 +63066,107.16,59.467 +63067,108.27,57.732 +63068,109.5,55.957 +63069,104.78,61.187 +63070,105.83,59.493 +63071,106.99,57.76 +63072,108.27,55.988 +63073,103.4,61.209 +63074,104.5,59.518 +63075,105.71,57.79 +63076,107.05,56.021 +63077,102.03,61.229 +63078,103.17,59.543 +63079,104.43,57.819 +63080,105.82,56.055 +63081,100.65,61.248 +63082,101.84,59.568 +63083,103.15,57.849 +63084,104.6,56.091 +63085,99.274,61.266 +63086,100.51,59.592 +63087,101.87,57.88 +63088,103.37,56.128 +63089,97.899,61.282 +63090,99.18,59.615 +63091,100.59,57.91 +63092,102.14,56.166 +63093,96.525,61.297 +63094,97.851,59.638 +63095,99.304,57.942 +63096,100.91,56.206 +63097,95.152,61.31 +63098,96.522,59.661 +63099,98.022,57.974 +63100,99.676,56.247 +63101,93.781,61.322 +63102,95.193,59.683 +63103,96.74,58.006 +63104,98.443,56.289 +63105,92.41,61.333 +63106,93.865,59.704 +63107,95.457,58.038 +63108,97.209,56.333 +63109,91.041,61.343 +63110,92.538,59.726 +63111,94.173,58.071 +63112,95.973,56.378 +63113,89.672,61.351 +63114,91.21,59.746 +63115,92.89,58.105 +63116,94.736,56.424 +63117,88.305,61.358 +63118,89.883,59.767 +63119,91.605,58.139 +63120,93.497,56.472 +63121,86.939,61.364 +63122,88.557,59.787 +63123,90.321,58.173 +63124,92.257,56.521 +63125,85.574,61.368 +63126,87.231,59.806 +63127,89.035,58.208 +63128,91.016,56.571 +63129,84.21,61.371 +63130,85.905,59.825 +63131,87.75,58.243 +63132,89.772,56.623 +63133,82.848,61.373 +63134,84.579,59.844 +63135,86.463,58.279 +63136,88.527,56.676 +63137,81.486,61.374 +63138,83.255,59.862 +63139,85.176,58.314 +63140,87.281,56.73 +63141,80.127,61.374 +63142,81.93,59.88 +63143,83.889,58.351 +63144,86.033,56.785 +63145,78.768,61.372 +63146,80.606,59.897 +63147,82.601,58.388 +63148,84.783,56.842 +63149,77.411,61.369 +63150,79.282,59.914 +63151,81.312,58.425 +63152,83.531,56.899 +63153,76.055,61.365 +63154,77.959,59.93 +63155,80.023,58.462 +63156,82.277,56.958 +63157,74.7,61.36 +63158,76.637,59.947 +63159,78.734,58.5 +63160,81.022,57.018 +63161,73.347,61.354 +63162,75.314,59.962 +63163,77.443,58.538 +63164,79.765,57.079 +63165,71.996,61.347 +63166,73.993,59.978 +63167,76.152,58.577 +63168,78.506,57.142 +63169,70.646,61.339 +63170,72.672,59.993 +63171,74.861,58.616 +63172,77.245,57.205 +63173,69.297,61.329 +63174,71.351,60.007 +63175,73.569,58.655 +63176,75.982,57.27 +63177,67.95,61.319 +63178,70.031,60.022 +63179,72.276,58.695 +63180,74.717,57.335 +63181,66.604,61.307 +63182,68.711,60.036 +63183,70.982,58.735 +63184,73.45,57.402 +63185,65.26,61.295 +63186,67.392,60.049 +63187,69.688,58.775 +63188,72.181,57.469 +63189,63.918,61.281 +63190,66.073,60.062 +63191,68.394,58.815 +63192,70.91,57.538 +63193,62.577,61.267 +63194,64.755,60.075 +63195,67.098,58.856 +63196,69.638,57.607 +63197,61.237,61.252 +63198,63.438,60.088 +63199,65.802,58.897 +63200,68.363,57.678 +63201,59.899,61.235 +63202,62.121,60.1 +63203,64.506,58.939 +63204,67.086,57.749 +63205,58.563,61.218 +63206,60.804,60.112 +63207,63.208,58.981 +63208,65.807,57.821 +63209,57.229,61.2 +63210,59.488,60.124 +63211,61.91,59.023 +63212,64.526,57.894 +63213,55.896,61.181 +63214,58.173,60.135 +63215,60.612,59.065 +63216,63.243,57.968 +63217,54.565,61.161 +63218,56.858,60.146 +63219,59.312,59.108 +63220,61.958,58.043 +63221,53.235,61.141 +63222,55.544,60.157 +63223,58.012,59.15 +63224,60.67,58.118 +63225,51.908,61.12 +63226,54.231,60.168 +63227,56.712,59.193 +63228,59.381,58.195 +63229,50.581,61.098 +63230,52.918,60.178 +63231,55.41,59.237 +63232,58.089,58.271 +63233,49.257,61.075 +63234,51.605,60.188 +63235,54.108,59.28 +63236,56.796,58.349 +63237,47.934,61.051 +63238,50.293,60.198 +63239,52.806,59.324 +63240,55.5,58.427 +63241,46.614,61.027 +63242,48.982,60.207 +63243,51.502,59.368 +63244,54.202,58.506 +63245,45.294,61.003 +63246,47.671,60.217 +63247,50.198,59.412 +63248,52.902,58.586 +63249,43.977,60.977 +63250,46.361,60.226 +63251,48.893,59.456 +63252,51.6,58.666 +63253,42.661,60.951 +63254,45.052,60.235 +63255,47.588,59.5 +63256,50.296,58.746 +63257,41.348,60.925 +63258,43.743,60.243 +63259,46.281,59.545 +63260,48.99,58.827 +63261,40.035,60.898 +63262,42.434,60.252 +63263,44.974,59.59 +63264,47.681,58.909 +63265,38.725,60.87 +63266,41.127,60.26 +63267,43.667,59.635 +63268,46.371,58.991 +63269,37.417,60.842 +63270,39.819,60.269 +63271,42.359,59.68 +63272,45.058,59.073 +63273,36.11,60.814 +63274,38.513,60.277 +63275,41.05,59.725 +63276,43.744,59.156 +63277,34.805,60.785 +63278,37.207,60.285 +63279,39.74,59.77 +63280,42.427,59.239 +63281,33.502,60.755 +63282,35.902,60.292 +63283,38.429,59.815 +63284,41.108,59.323 +63285,32.201,60.726 +63286,34.597,60.3 +63287,37.118,59.861 +63288,39.787,59.407 +63289,30.901,60.696 +63290,33.293,60.307 +63291,35.807,59.906 +63292,38.465,59.491 +63293,29.604,60.666 +63294,31.989,60.315 +63295,34.494,59.952 +63296,37.14,59.575 +63297,28.308,60.635 +63298,30.686,60.322 +63299,33.181,59.998 +63300,35.813,59.659 +63301,27.014,60.604 +63302,29.384,60.329 +63303,31.867,60.043 +63304,34.484,59.744 +63305,25.721,60.573 +63306,28.082,60.337 +63307,30.553,60.089 +63308,33.153,59.829 +63309,24.431,60.542 +63310,26.781,60.344 +63311,29.238,60.135 +63312,31.821,59.914 +63313,23.142,60.511 +63314,25.48,60.351 +63315,27.922,60.181 +63316,30.486,59.999 +63317,21.855,60.479 +63318,24.18,60.358 +63319,26.606,60.226 +63320,29.149,60.084 +63321,20.57,60.448 +63322,22.88,60.365 +63323,25.289,60.272 +63324,27.811,60.168 +63325,19.287,60.416 +63326,21.581,60.372 +63327,23.971,60.318 +63328,26.471,60.253 +63329,18.005,60.385 +63330,20.283,60.379 +63331,22.653,60.364 +63332,25.128,60.338 +63333,16.725,60.353 +63334,18.985,60.386 +63335,21.334,60.41 +63336,23.785,60.423 +63337,15.447,60.321 +63338,17.688,60.392 +63339,20.014,60.455 +63340,22.439,60.508 +63341,14.171,60.29 +63342,16.391,60.399 +63343,18.694,60.501 +63344,21.091,60.592 +63345,12.896,60.258 +63346,15.095,60.406 +63347,17.373,60.546 +63348,19.742,60.677 +63349,11.623,60.227 +63350,13.8,60.413 +63351,16.052,60.592 +63352,18.391,60.761 +63353,10.352,60.196 +63354,12.505,60.42 +63355,14.73,60.637 +63356,17.038,60.845 +63357,9.0822,60.165 +63358,11.21,60.428 +63359,13.407,60.683 +63360,15.684,60.928 +63361,7.8143,60.134 +63362,9.916,60.435 +63363,12.084,60.728 +63364,14.328,61.011 +63365,6.548,60.104 +63366,8.6225,60.442 +63367,10.76,60.773 +63368,12.971,61.094 +63369,5.2834,60.074 +63370,7.3295,60.449 +63371,9.4361,60.818 +63372,11.612,61.177 +63373,4.0204,60.044 +63374,6.0371,60.457 +63375,8.1113,60.863 +63376,10.251,61.259 +63377,2.759,60.014 +63378,4.7451,60.464 +63379,6.7859,60.907 +63380,8.8892,61.341 +63381,1.4992,59.985 +63382,3.4536,60.472 +63383,5.46,60.952 +63384,7.5257,61.422 +63385,0.24088,59.956 +63386,2.1626,60.48 +63387,4.1336,60.996 +63388,6.1607,61.503 +63389,358.98,59.928 +63390,0.87201,60.488 +63391,2.8066,61.04 +63392,4.7944,61.583 +63393,357.73,59.9 +63394,359.58,60.496 +63395,1.4792,61.084 +63396,3.4266,61.663 +63397,356.48,59.872 +63398,358.29,60.504 +63399,0.15123,61.128 +63400,2.0576,61.742 +63401,355.22,59.845 +63402,357,60.513 +63403,358.82,61.172 +63404,0.68727,61.821 +63405,353.97,59.819 +63406,355.71,60.521 +63407,357.49,61.215 +63408,359.32,61.899 +63409,352.72,59.793 +63410,354.43,60.53 +63411,356.16,61.258 +63412,357.94,61.976 +63413,351.47,59.768 +63414,353.14,60.539 +63415,354.83,61.301 +63416,356.57,62.053 +63417,350.23,59.743 +63418,351.85,60.548 +63419,353.5,61.344 +63420,355.19,62.129 +63421,348.98,59.72 +63422,350.56,60.558 +63423,352.17,61.387 +63424,353.82,62.204 +63425,347.74,59.696 +63426,349.28,60.567 +63427,350.84,61.429 +63428,352.44,62.279 +63429,346.5,59.674 +63430,347.99,60.577 +63431,349.51,61.471 +63432,351.06,62.352 +63433,345.25,59.652 +63434,346.7,60.587 +63435,348.18,61.512 +63436,349.68,62.425 +63437,344.01,59.631 +63438,345.42,60.598 +63439,346.85,61.554 +63440,348.3,62.497 +63441,342.77,59.611 +63442,344.13,60.608 +63443,345.51,61.595 +63444,346.92,62.569 +63445,341.54,59.591 +63446,342.85,60.619 +63447,344.18,61.636 +63448,345.54,62.639 +63449,340.3,59.573 +63450,341.56,60.63 +63451,342.85,61.676 +63452,344.16,62.708 +63453,339.06,59.555 +63454,340.28,60.642 +63455,341.51,61.716 +63456,342.77,62.777 +63457,337.83,59.538 +63458,339,60.653 +63459,340.18,61.756 +63460,341.39,62.845 +63461,336.6,59.522 +63462,337.71,60.665 +63463,338.85,61.796 +63464,340,62.911 +63465,335.36,59.507 +63466,336.43,60.678 +63467,337.51,61.835 +63468,338.62,62.977 +63469,334.13,59.493 +63470,335.14,60.69 +63471,336.18,61.874 +63472,337.23,63.042 +63473,332.9,59.48 +63474,333.86,60.703 +63475,334.84,61.912 +63476,335.84,63.106 +63477,331.67,59.467 +63478,332.58,60.716 +63479,333.51,61.95 +63480,334.45,63.168 +63481,330.44,59.456 +63482,331.3,60.73 +63483,332.17,61.988 +63484,333.07,63.23 +63485,329.21,59.446 +63486,330.01,60.744 +63487,330.83,62.026 +63488,331.68,63.29 +63489,327.98,59.437 +63490,328.73,60.758 +63491,329.5,62.063 +63492,330.29,63.35 +63493,326.76,59.429 +63494,327.45,60.773 +63495,328.16,62.1 +63496,328.9,63.408 +63497,325.53,59.422 +63498,326.17,60.788 +63499,326.83,62.136 +63500,327.51,63.466 +63501,324.3,59.416 +63502,324.89,60.803 +63503,325.49,62.172 +63504,326.12,63.522 +63505,323.08,59.412 +63506,323.6,60.819 +63507,324.15,62.207 +63508,324.72,63.577 +63509,321.85,59.408 +63510,322.32,60.835 +63511,322.82,62.242 +63512,323.33,63.631 +63513,320.63,59.406 +63514,321.04,60.851 +63515,321.48,62.277 +63516,321.94,63.683 +63517,319.41,59.404 +63518,319.76,60.868 +63519,320.14,62.311 +63520,320.55,63.735 +63521,318.18,59.404 +63522,318.48,60.885 +63523,318.8,62.345 +63524,319.16,63.785 +63525,316.96,59.405 +63526,317.2,60.902 +63527,317.47,62.379 +63528,317.77,63.834 +63529,315.74,59.408 +63530,315.92,60.92 +63531,316.13,62.412 +63532,316.38,63.882 +63533,314.51,59.411 +63534,314.63,60.939 +63535,314.79,62.445 +63536,314.98,63.929 +63537,313.29,59.416 +63538,313.35,60.957 +63539,313.46,62.477 +63540,313.59,63.974 +63541,312.07,59.422 +63542,312.07,60.976 +63543,312.12,62.509 +63544,312.2,64.018 +63545,310.84,59.43 +63546,310.79,60.996 +63547,310.78,62.54 +63548,310.81,64.061 +63549,309.62,59.438 +63550,309.51,61.016 +63551,309.44,62.571 +63552,309.42,64.103 +63553,308.4,59.448 +63554,308.23,61.036 +63555,308.1,62.602 +63556,308.02,64.143 +63557,307.18,59.459 +63558,306.95,61.057 +63559,306.77,62.632 +63560,306.63,64.183 +63561,305.96,59.471 +63562,305.67,61.078 +63563,305.43,62.661 +63564,305.24,64.22 +63565,304.73,59.485 +63566,304.39,61.1 +63567,304.09,62.69 +63568,303.85,64.257 +63569,303.51,59.5 +63570,303.1,61.122 +63571,302.76,62.719 +63572,302.46,64.292 +63573,302.29,59.516 +63574,301.82,61.144 +63575,301.42,62.748 +63576,301.07,64.326 +63577,301.06,59.534 +63578,300.54,61.167 +63579,300.08,62.775 +63580,299.68,64.359 +63581,299.84,59.553 +63582,299.26,61.19 +63583,298.74,62.803 +63584,298.29,64.39 +63585,298.61,59.573 +63586,297.98,61.214 +63587,297.41,62.83 +63588,296.9,64.42 +63589,297.39,59.595 +63590,296.69,61.238 +63591,296.07,62.856 +63592,295.51,64.449 +63593,296.17,59.618 +63594,295.41,61.263 +63595,294.73,62.882 +63596,294.12,64.477 +63597,294.94,59.642 +63598,294.13,61.288 +63599,293.4,62.908 +63600,292.74,64.503 +63601,293.71,59.667 +63602,292.85,61.313 +63603,292.06,62.933 +63604,291.35,64.528 +63605,292.49,59.694 +63606,291.56,61.339 +63607,290.72,62.958 +63608,289.96,64.551 +63609,291.26,59.722 +63610,290.28,61.365 +63611,289.39,62.982 +63612,288.58,64.574 +63613,290.03,59.752 +63614,289,61.392 +63615,288.05,63.006 +63616,287.19,64.595 +63617,288.8,59.782 +63618,287.71,61.419 +63619,286.72,63.029 +63620,285.81,64.614 +63621,287.57,59.814 +63622,286.43,61.446 +63623,285.38,63.052 +63624,284.42,64.633 +63625,286.34,59.848 +63626,285.14,61.474 +63627,284.05,63.075 +63628,283.04,64.65 +63629,285.11,59.882 +63630,283.86,61.502 +63631,282.71,63.097 +63632,281.66,64.666 +63633,283.88,59.918 +63634,282.57,61.531 +63635,281.38,63.118 +63636,280.28,64.68 +63637,282.64,59.956 +63638,281.29,61.56 +63639,280.04,63.14 +63640,278.9,64.694 +63641,281.41,59.994 +63642,280,61.59 +63643,278.71,63.16 +63644,277.52,64.706 +63645,280.17,60.034 +63646,278.71,61.62 +63647,277.37,63.181 +63648,276.14,64.716 +63649,278.94,60.075 +63650,277.43,61.65 +63651,276.04,63.2 +63652,274.76,64.726 +63653,277.7,60.117 +63654,276.14,61.681 +63655,274.71,63.22 +63656,273.38,64.734 +63657,276.46,60.161 +63658,274.85,61.712 +63659,273.38,63.239 +63660,272.01,64.741 +63661,275.22,60.205 +63662,273.57,61.744 +63663,272.04,63.258 +63664,270.63,64.747 +63665,273.98,60.251 +63666,272.28,61.776 +63667,270.71,63.276 +63668,269.26,64.752 +63669,272.73,60.299 +63670,270.99,61.808 +63671,269.38,63.294 +63672,267.89,64.756 +63673,271.49,60.347 +63674,269.7,61.841 +63675,268.05,63.311 +63676,266.52,64.758 +63677,270.24,60.396 +63678,268.41,61.874 +63679,266.72,63.328 +63680,265.15,64.759 +63681,268.99,60.447 +63682,267.12,61.907 +63683,265.39,63.344 +63684,263.78,64.759 +63685,267.75,60.499 +63686,265.83,61.941 +63687,264.06,63.361 +63688,262.41,64.758 +63689,266.49,60.552 +63690,264.54,61.975 +63691,262.73,63.376 +63692,261.04,64.756 +63693,265.24,60.606 +63694,263.25,62.01 +63695,261.4,63.392 +63696,259.68,64.753 +63697,263.99,60.661 +63698,261.95,62.045 +63699,260.07,63.407 +63700,258.32,64.748 +63701,262.73,60.717 +63702,260.66,62.08 +63703,258.74,63.422 +63704,256.95,64.743 +63705,261.48,60.774 +63706,259.37,62.115 +63707,257.41,63.436 +63708,255.59,64.736 +63709,260.22,60.833 +63710,258.07,62.151 +63711,256.09,63.45 +63712,254.23,64.728 +63713,258.96,60.892 +63714,256.78,62.188 +63715,254.76,63.463 +63716,252.87,64.72 +63717,257.7,60.952 +63718,255.49,62.224 +63719,253.43,63.477 +63720,251.52,64.71 +63721,256.43,61.014 +63722,254.19,62.261 +63723,252.11,63.49 +63724,250.16,64.7 +63725,255.17,61.076 +63726,252.89,62.298 +63727,250.78,63.502 +63728,248.81,64.688 +63729,253.9,61.139 +63730,251.6,62.336 +63731,249.46,63.514 +63732,247.45,64.675 +63733,252.63,61.203 +63734,250.3,62.373 +63735,248.13,63.526 +63736,246.1,64.662 +63737,251.36,61.268 +63738,249,62.412 +63739,246.81,63.538 +63740,244.75,64.648 +63741,250.09,61.334 +63742,247.7,62.45 +63743,245.48,63.549 +63744,243.41,64.632 +63745,248.81,61.401 +63746,246.4,62.489 +63747,244.16,63.56 +63748,242.06,64.616 +63749,247.54,61.468 +63750,245.11,62.527 +63751,242.84,63.571 +63752,240.71,64.599 +63753,246.26,61.537 +63754,243.81,62.567 +63755,241.52,63.581 +63756,239.37,64.581 +63757,244.98,61.606 +63758,242.5,62.606 +63759,240.2,63.591 +63760,238.03,64.563 +63761,243.69,61.676 +63762,241.2,62.646 +63763,238.88,63.601 +63764,236.69,64.543 +63765,242.41,61.746 +63766,239.9,62.685 +63767,237.55,63.611 +63768,235.35,64.523 +63769,241.12,61.817 +63770,238.6,62.725 +63771,236.24,63.62 +63772,234.01,64.502 +63773,239.84,61.889 +63774,237.29,62.766 +63775,234.92,63.629 +63776,232.68,64.481 +63777,238.55,61.962 +63778,235.99,62.806 +63779,233.6,63.638 +63780,231.34,64.458 +63781,237.25,62.035 +63782,234.69,62.847 +63783,232.28,63.647 +63784,230.01,64.436 +63785,235.96,62.109 +63786,233.38,62.888 +63787,230.96,63.655 +63788,228.68,64.412 +63789,234.66,62.183 +63790,232.07,62.929 +63791,229.65,63.664 +63792,227.35,64.388 +63793,233.36,62.258 +63794,230.77,62.97 +63795,228.33,63.672 +63796,226.03,64.363 +63797,232.06,62.333 +63798,229.46,63.012 +63799,227.01,63.679 +63800,224.7,64.338 +63801,230.76,62.409 +63802,228.15,63.053 +63803,225.7,63.687 +63804,223.38,64.312 +63805,229.46,62.486 +63806,226.84,63.095 +63807,224.38,63.695 +63808,222.06,64.286 +63809,228.15,62.562 +63810,225.53,63.137 +63811,223.07,63.702 +63812,220.74,64.259 +63813,226.84,62.639 +63814,224.22,63.178 +63815,221.76,63.709 +63816,219.42,64.232 +63817,225.53,62.717 +63818,222.91,63.221 +63819,220.44,63.716 +63820,218.1,64.204 +63821,224.22,62.795 +63822,221.6,63.263 +63823,219.13,63.723 +63824,216.79,64.176 +63825,222.9,62.873 +63826,220.29,63.305 +63827,217.82,63.73 +63828,215.47,64.148 +63829,221.59,62.951 +63830,218.98,63.347 +63831,216.51,63.736 +63832,214.16,64.119 +63833,220.27,63.03 +63834,217.66,63.39 +63835,215.2,63.743 +63836,212.85,64.09 +63837,218.95,63.109 +63838,216.35,63.432 +63839,213.89,63.749 +63840,211.54,64.06 +63841,217.63,63.188 +63842,215.04,63.475 +63843,212.58,63.755 +63844,210.24,64.031 +63845,216.3,63.267 +63846,213.72,63.517 +63847,211.27,63.762 +63848,208.93,64.001 +63849,214.97,63.346 +63850,212.41,63.56 +63851,209.96,63.768 +63852,207.63,63.971 +63853,213.65,63.425 +63854,211.09,63.603 +63855,208.66,63.774 +63856,206.33,63.941 +63857,212.32,63.505 +63858,209.77,63.645 +63859,207.35,63.78 +63860,205.03,63.911 +63861,210.98,63.584 +63862,208.45,63.688 +63863,206.04,63.786 +63864,203.74,63.88 +63865,209.65,63.664 +63866,207.14,63.731 +63867,204.74,63.792 +63868,202.44,63.85 +63869,208.31,63.743 +63870,205.82,63.773 +63871,203.43,63.798 +63872,201.15,63.819 +63873,206.98,63.823 +63874,204.5,63.816 +63875,202.13,63.804 +63876,199.86,63.789 +63877,205.64,63.902 +63878,203.18,63.858 +63879,200.82,63.81 +63880,198.57,63.758 +63881,204.29,63.981 +63882,201.86,63.901 +63883,199.52,63.816 +63884,197.28,63.728 +63885,202.95,64.06 +63886,200.53,63.943 +63887,198.22,63.822 +63888,195.99,63.697 +63889,201.61,64.139 +63890,199.21,63.986 +63891,196.92,63.828 +63892,194.71,63.667 +63893,200.26,64.218 +63894,197.89,64.028 +63895,195.61,63.834 +63896,193.42,63.637 +63897,198.91,64.296 +63898,196.57,64.071 +63899,194.31,63.84 +63900,192.14,63.607 +63901,197.56,64.374 +63902,195.24,64.113 +63903,193.01,63.846 +63904,190.86,63.577 +63905,196.21,64.452 +63906,193.92,64.155 +63907,191.71,63.853 +63908,189.58,63.547 +63909,194.85,64.53 +63910,192.59,64.197 +63911,190.41,63.859 +63912,188.31,63.518 +63913,193.5,64.607 +63914,191.27,64.239 +63915,189.11,63.865 +63916,187.03,63.489 +63917,192.14,64.684 +63918,189.94,64.28 +63919,187.82,63.872 +63920,185.76,63.46 +63921,190.78,64.76 +63922,188.61,64.322 +63923,186.52,63.878 +63924,184.49,63.431 +63925,189.42,64.836 +63926,187.29,64.363 +63927,185.22,63.885 +63928,183.22,63.403 +63929,188.06,64.912 +63930,185.96,64.405 +63931,183.92,63.892 +63932,181.95,63.375 +63933,186.7,64.987 +63934,184.63,64.446 +63935,182.63,63.899 +63936,180.68,63.348 +63937,185.33,65.062 +63938,183.3,64.487 +63939,181.33,63.906 +63940,179.42,63.321 +63941,183.97,65.136 +63942,181.97,64.528 +63943,180.03,63.913 +63944,178.15,63.295 +63945,182.6,65.209 +63946,180.64,64.568 +63947,178.74,63.921 +63948,176.89,63.269 +63949,181.23,65.282 +63950,179.31,64.609 +63951,177.45,63.928 +63952,175.63,63.244 +63953,179.86,65.354 +63954,177.98,64.649 +63955,176.15,63.936 +63956,174.37,63.219 +63957,178.49,65.426 +63958,176.65,64.689 +63959,174.86,63.944 +63960,173.11,63.195 +63961,177.12,65.497 +63962,175.32,64.728 +63963,173.56,63.952 +63964,171.85,63.171 +63965,175.74,65.568 +63966,173.98,64.768 +63967,172.27,63.961 +63968,170.6,63.148 +63969,174.37,65.637 +63970,172.65,64.807 +63971,170.98,63.969 +63972,169.34,63.126 +63973,172.99,65.706 +63974,171.32,64.846 +63975,169.69,63.978 +63976,168.09,63.104 +63977,171.61,65.774 +63978,169.98,64.885 +63979,168.39,63.987 +63980,166.84,63.083 +63981,170.24,65.842 +63982,168.65,64.923 +63983,167.1,63.997 +63984,165.59,63.063 +63985,168.86,65.908 +63986,167.32,64.962 +63987,165.81,64.006 +63988,164.34,63.043 +63989,167.48,65.974 +63990,165.98,64.999 +63991,164.52,64.016 +63992,163.09,63.025 +63993,166.09,66.039 +63994,164.65,65.037 +63995,163.23,64.026 +63996,161.85,63.007 +63997,164.71,66.103 +63998,163.31,65.074 +63999,161.94,64.036 +64000,160.6,62.99 +64001,163.33,66.166 +64002,161.98,65.111 +64003,160.65,64.047 +64004,159.36,62.973 +64005,161.94,66.228 +64006,160.64,65.148 +64007,159.36,64.058 +64008,158.12,62.958 +64009,160.56,66.289 +64010,159.3,65.185 +64011,158.07,64.069 +64012,156.87,62.944 +64013,159.17,66.35 +64014,157.97,65.221 +64015,156.79,64.08 +64016,155.63,62.93 +64017,157.79,66.409 +64018,156.63,65.256 +64019,155.5,64.092 +64020,154.39,62.917 +64021,156.4,66.468 +64022,155.29,65.292 +64023,154.21,64.104 +64024,153.15,62.906 +64025,155.01,66.525 +64026,153.95,65.327 +64027,152.92,64.116 +64028,151.91,62.895 +64029,153.62,66.582 +64030,152.62,65.362 +64031,151.63,64.129 +64032,150.68,62.885 +64033,152.23,66.637 +64034,151.28,65.396 +64035,150.35,64.142 +64036,149.44,62.877 +64037,150.84,66.691 +64038,149.94,65.43 +64039,149.06,64.155 +64040,148.2,62.869 +64041,149.45,66.745 +64042,148.6,65.464 +64043,147.77,64.169 +64044,146.97,62.862 +64045,148.06,66.797 +64046,147.26,65.497 +64047,146.49,64.183 +64048,145.73,62.857 +64049,146.67,66.848 +64050,145.92,65.53 +64051,145.2,64.198 +64052,144.5,62.852 +64053,145.28,66.898 +64054,144.58,65.562 +64055,143.91,64.212 +64056,143.27,62.849 +64057,143.89,66.947 +64058,143.24,65.595 +64059,142.63,64.227 +64060,142.04,62.847 +64061,142.49,66.995 +64062,141.91,65.626 +64063,141.34,64.243 +64064,140.8,62.845 +64065,141.1,67.042 +64066,140.57,65.658 +64067,140.06,64.259 +64068,139.57,62.845 +64069,139.71,67.087 +64070,139.23,65.689 +64071,138.77,64.275 +64072,138.34,62.846 +64073,138.32,67.131 +64074,137.89,65.719 +64075,137.48,64.291 +64076,137.11,62.849 +64077,136.92,67.175 +64078,136.55,65.75 +64079,136.2,64.308 +64080,135.88,62.852 +64081,135.53,67.217 +64082,135.21,65.779 +64083,134.91,64.326 +64084,134.65,62.857 +64085,134.14,67.257 +64086,133.87,65.809 +64087,133.63,64.343 +64088,133.42,62.863 +64089,132.74,67.297 +64090,132.53,65.838 +64091,132.34,64.362 +64092,132.19,62.87 +64093,131.35,67.336 +64094,131.19,65.866 +64095,131.06,64.38 +64096,130.96,62.878 +64097,129.95,67.373 +64098,129.85,65.894 +64099,129.77,64.399 +64100,129.73,62.887 +64101,128.56,67.409 +64102,128.51,65.922 +64103,128.49,64.418 +64104,128.5,62.898 +64105,127.17,67.444 +64106,127.17,65.95 +64107,127.2,64.438 +64108,127.27,62.91 +64109,125.77,67.477 +64110,125.82,65.976 +64111,125.91,64.458 +64112,126.05,62.923 +64113,124.38,67.51 +64114,124.48,66.003 +64115,124.63,64.478 +64116,124.82,62.937 +64117,122.99,67.541 +64118,123.14,66.029 +64119,123.34,64.499 +64120,123.59,62.953 +64121,121.59,67.571 +64122,121.8,66.055 +64123,122.06,64.521 +64124,122.36,62.97 +64125,120.2,67.599 +64126,120.46,66.08 +64127,120.77,64.542 +64128,121.13,62.988 +64129,118.81,67.627 +64130,119.12,66.105 +64131,119.49,64.564 +64132,119.9,63.007 +64133,117.42,67.653 +64134,117.78,66.129 +64135,118.2,64.587 +64136,118.67,63.028 +64137,116.03,67.678 +64138,116.44,66.153 +64139,116.91,64.61 +64140,117.44,63.05 +64141,114.63,67.701 +64142,115.1,66.176 +64143,115.63,64.633 +64144,116.21,63.073 +64145,113.24,67.724 +64146,113.77,66.199 +64147,114.34,64.657 +64148,114.98,63.097 +64149,111.85,67.745 +64150,112.43,66.222 +64151,113.05,64.681 +64152,113.75,63.123 +64153,110.46,67.765 +64154,111.09,66.244 +64155,111.77,64.705 +64156,112.51,63.15 +64157,109.08,67.784 +64158,109.75,66.266 +64159,110.48,64.73 +64160,111.28,63.178 +64161,107.69,67.801 +64162,108.41,66.287 +64163,109.19,64.756 +64164,110.05,63.207 +64165,106.3,67.817 +64166,107.07,66.308 +64167,107.91,64.781 +64168,108.82,63.238 +64169,104.91,67.832 +64170,105.73,66.329 +64171,106.62,64.808 +64172,107.58,63.27 +64173,103.53,67.846 +64174,104.39,66.349 +64175,105.33,64.834 +64176,106.35,63.303 +64177,102.14,67.859 +64178,103.05,66.369 +64179,104.04,64.861 +64180,105.11,63.337 +64181,100.75,67.87 +64182,101.72,66.388 +64183,102.75,64.888 +64184,103.87,63.373 +64185,99.37,67.88 +64186,100.38,66.407 +64187,101.47,64.916 +64188,102.64,63.41 +64189,97.987,67.889 +64190,99.042,66.425 +64191,100.18,64.944 +64192,101.4,63.448 +64193,96.604,67.897 +64194,97.705,66.443 +64195,98.887,64.973 +64196,100.16,63.487 +64197,95.223,67.904 +64198,96.368,66.461 +64199,97.598,65.002 +64200,98.92,63.527 +64201,93.842,67.909 +64202,95.032,66.478 +64203,96.307,65.031 +64204,97.679,63.569 +64205,92.462,67.914 +64206,93.696,66.495 +64207,95.017,65.061 +64208,96.436,63.611 +64209,91.083,67.917 +64210,92.36,66.512 +64211,93.726,65.091 +64212,95.193,63.655 +64213,89.706,67.919 +64214,91.025,66.528 +64215,92.435,65.121 +64216,93.949,63.7 +64217,88.329,67.92 +64218,89.689,66.543 +64219,91.144,65.152 +64220,92.703,63.747 +64221,86.953,67.92 +64222,88.355,66.559 +64223,89.852,65.183 +64224,91.456,63.794 +64225,85.579,67.918 +64226,87.02,66.573 +64227,88.559,65.214 +64228,90.208,63.842 +64229,84.205,67.916 +64230,85.686,66.588 +64231,87.266,65.246 +64232,88.959,63.892 +64233,82.833,67.913 +64234,84.353,66.602 +64235,85.973,65.278 +64236,87.708,63.942 +64237,81.462,67.908 +64238,83.019,66.616 +64239,84.68,65.311 +64240,86.456,63.994 +64241,80.092,67.903 +64242,81.686,66.629 +64243,83.385,65.344 +64244,85.203,64.046 +64245,78.723,67.896 +64246,80.354,66.643 +64247,82.091,65.377 +64248,83.948,64.1 +64249,77.356,67.888 +64250,79.022,66.655 +64251,80.796,65.41 +64252,82.692,64.155 +64253,75.989,67.88 +64254,77.69,66.668 +64255,79.5,65.444 +64256,81.434,64.21 +64257,74.624,67.87 +64258,76.359,66.68 +64259,78.204,65.478 +64260,80.175,64.267 +64261,73.261,67.86 +64262,75.028,66.692 +64263,76.908,65.513 +64264,78.914,64.325 +64265,71.899,67.848 +64266,73.698,66.703 +64267,75.61,65.548 +64268,77.652,64.383 +64269,70.538,67.836 +64270,72.368,66.714 +64271,74.313,65.583 +64272,76.388,64.443 +64273,69.178,67.823 +64274,71.039,66.725 +64275,73.015,65.618 +64276,75.122,64.503 +64277,67.82,67.808 +64278,69.71,66.736 +64279,71.716,65.654 +64280,73.855,64.564 +64281,66.463,67.793 +64282,68.382,66.746 +64283,70.417,65.69 +64284,72.586,64.626 +64285,65.108,67.777 +64286,67.054,66.756 +64287,69.117,65.726 +64288,71.316,64.689 +64289,63.755,67.761 +64290,65.726,66.765 +64291,67.817,65.762 +64292,70.043,64.753 +64293,62.402,67.743 +64294,64.4,66.775 +64295,66.516,65.799 +64296,68.769,64.817 +64297,61.052,67.725 +64298,63.073,66.784 +64299,65.214,65.836 +64300,67.493,64.882 +64301,59.702,67.706 +64302,61.747,66.793 +64303,63.912,65.873 +64304,66.216,64.948 +64305,58.355,67.686 +64306,60.422,66.801 +64307,62.61,65.91 +64308,64.936,65.015 +64309,57.009,67.666 +64310,59.097,66.81 +64311,61.307,65.948 +64312,63.655,65.082 +64313,55.664,67.644 +64314,57.773,66.818 +64315,60.003,65.986 +64316,62.372,65.15 +64317,54.321,67.622 +64318,56.449,66.825 +64319,58.698,66.024 +64320,61.087,65.218 +64321,52.98,67.6 +64322,55.126,66.833 +64323,57.393,66.062 +64324,59.8,65.288 +64325,51.64,67.577 +64326,53.803,66.841 +64327,56.088,66.101 +64328,58.511,65.357 +64329,50.302,67.553 +64330,52.481,66.848 +64331,54.781,66.139 +64332,57.221,65.428 +64333,48.965,67.529 +64334,51.16,66.855 +64335,53.474,66.178 +64336,55.928,65.499 +64337,47.631,67.504 +64338,49.839,66.862 +64339,52.167,66.217 +64340,54.634,65.57 +64341,46.297,67.478 +64342,48.518,66.868 +64343,50.859,66.256 +64344,53.338,65.642 +64345,44.966,67.453 +64346,47.199,66.875 +64347,49.55,66.295 +64348,52.039,65.714 +64349,43.636,67.426 +64350,45.879,66.881 +64351,48.241,66.335 +64352,50.739,65.787 +64353,42.308,67.399 +64354,44.561,66.887 +64355,46.931,66.374 +64356,49.437,65.86 +64357,40.982,67.372 +64358,43.243,66.893 +64359,45.62,66.414 +64360,48.133,65.933 +64361,39.657,67.345 +64362,41.925,66.899 +64363,44.309,66.454 +64364,46.827,66.007 +64365,38.334,67.317 +64366,40.608,66.905 +64367,42.997,66.493 +64368,45.519,66.081 +64369,37.012,67.288 +64370,39.292,66.911 +64371,41.684,66.533 +64372,44.209,66.156 +64373,35.693,67.26 +64374,37.976,66.916 +64375,40.371,66.573 +64376,42.897,66.23 +64377,34.375,67.231 +64378,36.661,66.922 +64379,39.057,66.613 +64380,41.583,66.305 +64381,33.059,67.202 +64382,35.346,66.927 +64383,37.743,66.654 +64384,40.267,66.38 +64385,31.744,67.172 +64386,34.032,66.933 +64387,36.428,66.694 +64388,38.95,66.456 +64389,30.432,67.143 +64390,32.718,66.938 +64391,35.112,66.734 +64392,37.63,66.531 +64393,29.121,67.113 +64394,31.405,66.943 +64395,33.796,66.774 +64396,36.308,66.607 +64397,27.812,67.083 +64398,30.093,66.948 +64399,32.479,66.815 +64400,34.985,66.682 +64401,26.504,67.053 +64402,28.781,66.953 +64403,31.161,66.855 +64404,33.66,66.758 +64405,25.198,67.023 +64406,27.47,66.958 +64407,29.843,66.895 +64408,32.332,66.833 +64409,23.894,66.993 +64410,26.16,66.963 +64411,28.524,66.936 +64412,31.003,66.909 +64413,22.592,66.963 +64414,24.85,66.968 +64415,27.204,66.976 +64416,29.672,66.985 +64417,21.291,66.933 +64418,23.54,66.973 +64419,25.884,67.016 +64420,28.339,67.06 +64421,19.992,66.902 +64422,22.231,66.979 +64423,24.564,67.056 +64424,27.004,67.136 +64425,18.695,66.872 +64426,20.923,66.984 +64427,23.242,67.097 +64428,25.668,67.211 +64429,17.4,66.842 +64430,19.615,66.989 +64431,21.92,67.137 +64432,24.329,67.286 +64433,16.106,66.812 +64434,18.308,66.994 +64435,20.598,67.177 +64436,22.989,67.362 +64437,14.814,66.783 +64438,17.001,66.999 +64439,19.274,67.217 +64440,21.647,67.436 +64441,13.524,66.753 +64442,15.695,67.004 +64443,17.951,67.257 +64444,20.303,67.511 +64445,12.235,66.724 +64446,14.39,67.009 +64447,16.626,67.297 +64448,18.958,67.585 +64449,10.948,66.694 +64450,13.085,67.015 +64451,15.301,67.337 +64452,17.61,67.659 +64453,9.6622,66.666 +64454,11.78,67.02 +64455,13.976,67.376 +64456,16.261,67.733 +64457,8.3784,66.637 +64458,10.476,67.026 +64459,12.65,67.416 +64460,14.911,67.807 +64461,7.0962,66.609 +64462,9.173,67.031 +64463,11.323,67.455 +64464,13.558,67.88 +64465,5.8156,66.581 +64466,7.8702,67.037 +64467,9.996,67.495 +64468,12.204,67.952 +64469,4.5366,66.553 +64470,6.5678,67.043 +64471,8.6683,67.534 +64472,10.849,68.025 +64473,3.2592,66.526 +64474,5.266,67.049 +64475,7.34,67.573 +64476,9.4917,68.097 +64477,1.9833,66.499 +64478,3.9647,67.055 +64479,6.0111,67.612 +64480,8.133,68.168 +64481,0.70902,66.473 +64482,2.6638,67.061 +64483,4.6818,67.65 +64484,6.7727,68.239 +64485,359.44,66.447 +64486,1.3635,67.068 +64487,3.3519,67.689 +64488,5.4109,68.309 +64489,358.16,66.421 +64490,0.06363,67.074 +64491,2.0215,67.727 +64492,4.0477,68.379 +64493,356.9,66.396 +64494,358.76,67.081 +64495,0.69063,67.765 +64496,2.683,68.448 +64497,355.63,66.372 +64498,357.47,67.088 +64499,359.36,67.803 +64500,1.3168,68.517 +64501,354.36,66.348 +64502,356.17,67.095 +64503,358.03,67.841 +64504,359.95,68.585 +64505,353.09,66.325 +64506,354.87,67.103 +64507,356.7,67.879 +64508,358.58,68.652 +64509,351.83,66.303 +64510,353.57,67.11 +64511,355.36,67.916 +64512,357.21,68.719 +64513,350.57,66.281 +64514,352.27,67.118 +64515,354.03,67.953 +64516,355.84,68.785 +64517,349.31,66.26 +64518,350.98,67.126 +64519,352.7,67.99 +64520,354.47,68.85 +64521,348.05,66.239 +64522,349.68,67.134 +64523,351.36,68.026 +64524,353.09,68.915 +64525,346.79,66.219 +64526,348.39,67.142 +64527,350.03,68.063 +64528,351.72,68.979 +64529,345.53,66.2 +64530,347.09,67.151 +64531,348.69,68.099 +64532,350.34,69.042 +64533,344.27,66.182 +64534,345.79,67.16 +64535,347.36,68.135 +64536,348.96,69.104 +64537,343.02,66.165 +64538,344.5,67.169 +64539,346.02,68.17 +64540,347.58,69.166 +64541,341.77,66.148 +64542,343.21,67.179 +64543,344.68,68.205 +64544,346.2,69.226 +64545,340.51,66.132 +64546,341.91,67.188 +64547,343.35,68.24 +64548,344.82,69.286 +64549,339.26,66.117 +64550,340.62,67.198 +64551,342.01,68.275 +64552,343.44,69.345 +64553,338.01,66.103 +64554,339.32,67.209 +64555,340.67,68.309 +64556,342.06,69.403 +64557,336.76,66.09 +64558,338.03,67.219 +64559,339.34,68.343 +64560,340.68,69.46 +64561,335.51,66.078 +64562,336.74,67.23 +64563,338,68.377 +64564,339.29,69.516 +64565,334.27,66.066 +64566,335.45,67.241 +64567,336.66,68.41 +64568,337.91,69.572 +64569,333.02,66.056 +64570,334.15,67.253 +64571,335.32,68.443 +64572,336.52,69.626 +64573,331.77,66.047 +64574,332.86,67.265 +64575,333.98,68.476 +64576,335.13,69.679 +64577,330.53,66.038 +64578,331.57,67.277 +64579,332.64,68.509 +64580,333.75,69.731 +64581,329.29,66.031 +64582,330.28,67.289 +64583,331.3,68.541 +64584,332.36,69.783 +64585,328.04,66.024 +64586,328.99,67.302 +64587,329.96,68.572 +64588,330.97,69.833 +64589,326.8,66.019 +64590,327.7,67.315 +64591,328.62,68.604 +64592,329.58,69.882 +64593,325.56,66.015 +64594,326.41,67.329 +64595,327.28,68.635 +64596,328.19,69.93 +64597,324.32,66.012 +64598,325.12,67.343 +64599,325.94,68.665 +64600,326.8,69.977 +64601,323.08,66.009 +64602,323.83,67.357 +64603,324.6,68.696 +64604,325.41,70.023 +64605,321.84,66.008 +64606,322.54,67.372 +64607,323.26,68.725 +64608,324.01,70.068 +64609,320.6,66.009 +64610,321.25,67.387 +64611,321.92,68.755 +64612,322.62,70.112 +64613,319.36,66.01 +64614,319.96,67.402 +64615,320.58,68.784 +64616,321.23,70.155 +64617,318.13,66.012 +64618,318.67,67.417 +64619,319.24,68.813 +64620,319.84,70.197 +64621,316.89,66.016 +64622,317.38,67.434 +64623,317.9,68.841 +64624,318.44,70.237 +64625,315.65,66.02 +64626,316.09,67.45 +64627,316.56,68.869 +64628,317.05,70.276 +64629,314.42,66.026 +64630,314.8,67.467 +64631,315.21,68.897 +64632,315.66,70.315 +64633,313.18,66.033 +64634,313.51,67.484 +64635,313.87,68.924 +64636,314.26,70.352 +64637,311.94,66.041 +64638,312.22,67.501 +64639,312.53,68.951 +64640,312.87,70.388 +64641,310.71,66.05 +64642,310.93,67.519 +64643,311.19,68.977 +64644,311.47,70.422 +64645,309.47,66.061 +64646,309.64,67.538 +64647,309.85,69.003 +64648,310.08,70.456 +64649,308.24,66.073 +64650,308.36,67.556 +64651,308.51,69.029 +64652,308.69,70.488 +64653,307,66.086 +64654,307.07,67.576 +64655,307.16,69.054 +64656,307.29,70.519 +64657,305.77,66.1 +64658,305.78,67.595 +64659,305.82,69.079 +64660,305.9,70.549 +64661,304.54,66.115 +64662,304.49,67.615 +64663,304.48,69.103 +64664,304.5,70.578 +64665,303.3,66.132 +64666,303.2,67.635 +64667,303.14,69.127 +64668,303.11,70.606 +64669,302.07,66.15 +64670,301.91,67.656 +64671,301.79,69.151 +64672,301.71,70.632 +64673,300.83,66.169 +64674,300.62,67.677 +64675,300.45,69.174 +64676,300.32,70.657 +64677,299.6,66.189 +64678,299.33,67.699 +64679,299.11,69.197 +64680,298.93,70.681 +64681,298.36,66.21 +64682,298.04,67.721 +64683,297.77,69.219 +64684,297.53,70.704 +64685,297.13,66.233 +64686,296.76,67.743 +64687,296.43,69.241 +64688,296.14,70.726 +64689,295.89,66.257 +64690,295.47,67.766 +64691,295.09,69.263 +64692,294.75,70.746 +64693,294.66,66.282 +64694,294.18,67.789 +64695,293.74,69.284 +64696,293.36,70.766 +64697,293.42,66.309 +64698,292.89,67.812 +64699,292.4,69.304 +64700,291.96,70.784 +64701,292.18,66.336 +64702,291.6,67.836 +64703,291.06,69.325 +64704,290.57,70.8 +64705,290.95,66.365 +64706,290.31,67.861 +64707,289.72,69.345 +64708,289.18,70.816 +64709,289.71,66.395 +64710,289.02,67.885 +64711,288.38,69.364 +64712,287.79,70.83 +64713,288.47,66.426 +64714,287.73,67.91 +64715,287.04,69.383 +64716,286.4,70.844 +64717,287.23,66.459 +64718,286.44,67.936 +64719,285.7,69.402 +64720,285.01,70.856 +64721,286,66.493 +64722,285.15,67.962 +64723,284.36,69.42 +64724,283.62,70.867 +64725,284.76,66.527 +64726,283.86,67.988 +64727,283.02,69.438 +64728,282.23,70.876 +64729,283.52,66.564 +64730,282.56,68.015 +64731,281.68,69.456 +64732,280.85,70.885 +64733,282.28,66.601 +64734,281.27,68.042 +64735,280.34,69.473 +64736,279.46,70.892 +64737,281.03,66.639 +64738,279.98,68.069 +64739,279,69.49 +64740,278.07,70.899 +64741,279.79,66.679 +64742,278.69,68.097 +64743,277.66,69.506 +64744,276.69,70.904 +64745,278.55,66.719 +64746,277.4,68.125 +64747,276.32,69.522 +64748,275.3,70.908 +64749,277.3,66.761 +64750,276.1,68.154 +64751,274.98,69.537 +64752,273.92,70.911 +64753,276.06,66.804 +64754,274.81,68.183 +64755,273.64,69.553 +64756,272.54,70.913 +64757,274.81,66.848 +64758,273.52,68.212 +64759,272.3,69.567 +64760,271.16,70.913 +64761,273.57,66.893 +64762,272.23,68.242 +64763,270.96,69.582 +64764,269.78,70.913 +64765,272.32,66.94 +64766,270.93,68.272 +64767,269.63,69.596 +64768,268.4,70.912 +64769,271.07,66.987 +64770,269.64,68.302 +64771,268.29,69.61 +64772,267.02,70.909 +64773,269.82,67.035 +64774,268.34,68.333 +64775,266.95,69.623 +64776,265.64,70.906 +64777,268.57,67.085 +64778,267.05,68.364 +64779,265.61,69.636 +64780,264.26,70.901 +64781,267.32,67.135 +64782,265.75,68.395 +64783,264.28,69.649 +64784,262.89,70.895 +64785,266.06,67.187 +64786,264.46,68.427 +64787,262.94,69.661 +64788,261.51,70.889 +64789,264.81,67.239 +64790,263.16,68.459 +64791,261.61,69.673 +64792,260.14,70.881 +64793,263.55,67.293 +64794,261.86,68.491 +64795,260.27,69.685 +64796,258.76,70.873 +64797,262.3,67.347 +64798,260.57,68.524 +64799,258.94,69.696 +64800,257.39,70.863 +64801,261.04,67.402 +64802,259.27,68.557 +64803,257.6,69.707 +64804,256.02,70.853 +64805,259.78,67.459 +64806,257.97,68.59 +64807,256.27,69.718 +64808,254.65,70.841 +64809,258.52,67.516 +64810,256.67,68.624 +64811,254.93,69.729 +64812,253.29,70.829 +64813,257.25,67.574 +64814,255.37,68.657 +64815,253.6,69.739 +64816,251.92,70.816 +64817,255.99,67.633 +64818,254.08,68.692 +64819,252.27,69.748 +64820,250.55,70.802 +64821,254.72,67.693 +64822,252.78,68.726 +64823,250.94,69.758 +64824,249.19,70.787 +64825,253.45,67.753 +64826,251.48,68.761 +64827,249.6,69.767 +64828,247.83,70.771 +64829,252.19,67.815 +64830,250.17,68.796 +64831,248.27,69.776 +64832,246.47,70.755 +64833,250.92,67.877 +64834,248.87,68.831 +64835,246.94,69.785 +64836,245.11,70.737 +64837,249.64,67.94 +64838,247.57,68.866 +64839,245.61,69.793 +64840,243.75,70.719 +64841,248.37,68.003 +64842,246.27,68.902 +64843,244.28,69.802 +64844,242.39,70.7 +64845,247.09,68.068 +64846,244.97,68.938 +64847,242.95,69.81 +64848,241.04,70.681 +64849,245.82,68.133 +64850,243.66,68.974 +64851,241.62,69.817 +64852,239.68,70.66 +64853,244.54,68.198 +64854,242.36,69.011 +64855,240.29,69.825 +64856,238.33,70.64 +64857,243.26,68.265 +64858,241.05,69.047 +64859,238.97,69.832 +64860,236.98,70.618 +64861,241.98,68.332 +64862,239.75,69.084 +64863,237.64,69.839 +64864,235.63,70.596 +64865,240.69,68.399 +64866,238.44,69.121 +64867,236.31,69.846 +64868,234.28,70.573 +64869,239.41,68.467 +64870,237.14,69.158 +64871,234.98,69.853 +64872,232.94,70.549 +64873,238.12,68.536 +64874,235.83,69.196 +64875,233.66,69.859 +64876,231.59,70.525 +64877,236.83,68.605 +64878,234.52,69.233 +64879,232.33,69.866 +64880,230.25,70.501 +64881,235.54,68.675 +64882,233.21,69.271 +64883,231.01,69.872 +64884,228.91,70.476 +64885,234.25,68.745 +64886,231.91,69.309 +64887,229.68,69.878 +64888,227.57,70.45 +64889,232.95,68.815 +64890,230.6,69.347 +64891,228.36,69.883 +64892,226.23,70.424 +64893,231.66,68.886 +64894,229.29,69.385 +64895,227.04,69.889 +64896,224.89,70.397 +64897,230.36,68.957 +64898,227.98,69.423 +64899,225.71,69.895 +64900,223.56,70.37 +64901,229.06,69.029 +64902,226.67,69.461 +64903,224.39,69.9 +64904,222.22,70.343 +64905,227.76,69.101 +64906,225.35,69.5 +64907,223.07,69.905 +64908,220.89,70.315 +64909,226.45,69.173 +64910,224.04,69.539 +64911,221.75,69.91 +64912,219.56,70.287 +64913,225.15,69.246 +64914,222.73,69.577 +64915,220.43,69.915 +64916,218.23,70.259 +64917,223.84,69.319 +64918,221.42,69.616 +64919,219.11,69.92 +64920,216.9,70.231 +64921,222.53,69.392 +64922,220.1,69.655 +64923,217.79,69.925 +64924,215.58,70.202 +64925,221.22,69.465 +64926,218.79,69.694 +64927,216.47,69.93 +64928,214.25,70.173 +64929,219.91,69.538 +64930,217.47,69.733 +64931,215.15,69.935 +64932,212.93,70.143 +64933,218.59,69.611 +64934,216.16,69.772 +64935,213.83,69.939 +64936,211.61,70.114 +64937,217.28,69.685 +64938,214.84,69.811 +64939,212.52,69.944 +64940,210.29,70.084 +64941,215.96,69.759 +64942,213.52,69.85 +64943,211.2,69.949 +64944,208.98,70.054 +64945,214.64,69.832 +64946,212.2,69.889 +64947,209.88,69.953 +64948,207.66,70.025 +64949,213.31,69.906 +64950,210.89,69.928 +64951,208.57,69.958 +64952,206.35,69.995 +64953,211.99,69.98 +64954,209.57,69.967 +64955,207.25,69.962 +64956,205.04,69.965 +64957,210.66,70.053 +64958,208.25,70.006 +64959,205.94,69.967 +64960,203.73,69.935 +64961,209.34,70.127 +64962,206.93,70.045 +64963,204.63,69.971 +64964,202.42,69.905 +64965,208.01,70.2 +64966,205.61,70.084 +64967,203.31,69.976 +64968,201.11,69.875 +64969,206.67,70.274 +64970,204.29,70.123 +64971,202,69.98 +64972,199.81,69.845 +64973,205.34,70.347 +64974,202.96,70.162 +64975,200.69,69.985 +64976,198.5,69.815 +64977,204.01,70.42 +64978,201.64,70.201 +64979,199.38,69.99 +64980,197.2,69.786 +64981,202.67,70.493 +64982,200.32,70.24 +64983,198.07,69.994 +64984,195.9,69.756 +64985,201.33,70.565 +64986,198.99,70.279 +64987,196.76,69.999 +64988,194.6,69.727 +64989,199.99,70.638 +64990,197.67,70.317 +64991,195.45,70.004 +64992,193.3,69.698 +64993,198.65,70.71 +64994,196.34,70.356 +64995,194.14,70.009 +64996,192.01,69.669 +64997,197.3,70.781 +64998,195.02,70.394 +64999,192.83,70.014 +65000,190.72,69.641 +65001,195.96,70.853 +65002,193.69,70.433 +65003,191.52,70.019 +65004,189.42,69.612 +65005,194.61,70.924 +65006,192.37,70.471 +65007,190.21,70.024 +65008,188.13,69.585 +65009,193.26,70.994 +65010,191.04,70.509 +65011,188.9,70.03 +65012,186.84,69.557 +65013,191.91,71.065 +65014,189.71,70.547 +65015,187.6,70.035 +65016,185.56,69.53 +65017,190.56,71.134 +65018,188.38,70.585 +65019,186.29,70.041 +65020,184.27,69.503 +65021,189.2,71.204 +65022,187.05,70.622 +65023,184.99,70.047 +65024,182.99,69.477 +65025,187.85,71.273 +65026,185.72,70.66 +65027,183.68,70.052 +65028,181.71,69.451 +65029,186.49,71.341 +65030,184.39,70.697 +65031,182.38,70.059 +65032,180.42,69.425 +65033,185.13,71.409 +65034,183.06,70.734 +65035,181.07,70.065 +65036,179.14,69.4 +65037,183.77,71.476 +65038,181.73,70.771 +65039,179.77,70.071 +65040,177.87,69.376 +65041,182.41,71.542 +65042,180.4,70.808 +65043,178.47,70.078 +65044,176.59,69.352 +65045,181.05,71.608 +65046,179.07,70.845 +65047,177.16,70.085 +65048,175.31,69.329 +65049,179.68,71.674 +65050,177.74,70.881 +65051,175.86,70.092 +65052,174.04,69.306 +65053,178.32,71.738 +65054,176.4,70.917 +65055,174.56,70.099 +65056,172.77,69.284 +65057,176.95,71.803 +65058,175.07,70.953 +65059,173.26,70.106 +65060,171.5,69.263 +65061,175.58,71.866 +65062,173.74,70.989 +65063,171.96,70.114 +65064,170.23,69.242 +65065,174.21,71.928 +65066,172.4,71.024 +65067,170.66,70.122 +65068,168.96,69.222 +65069,172.84,71.99 +65070,171.07,71.059 +65071,169.36,70.13 +65072,167.69,69.203 +65073,171.47,72.051 +65074,169.73,71.094 +65075,168.06,70.138 +65076,166.43,69.184 +65077,170.09,72.112 +65078,168.4,71.129 +65079,166.76,70.147 +65080,165.16,69.167 +65081,168.72,72.171 +65082,167.06,71.164 +65083,165.46,70.156 +65084,163.9,69.15 +65085,167.34,72.23 +65086,165.72,71.198 +65087,164.16,70.165 +65088,162.64,69.134 +65089,165.96,72.288 +65090,164.39,71.232 +65091,162.86,70.175 +65092,161.38,69.118 +65093,164.59,72.345 +65094,163.05,71.265 +65095,161.56,70.184 +65096,160.12,69.104 +65097,163.21,72.401 +65098,161.71,71.298 +65099,160.27,70.195 +65100,158.86,69.09 +65101,161.83,72.456 +65102,160.37,71.331 +65103,158.97,70.205 +65104,157.6,69.078 +65105,160.44,72.51 +65106,159.04,71.364 +65107,157.67,70.216 +65108,156.35,69.066 +65109,159.06,72.564 +65110,157.7,71.396 +65111,156.38,70.227 +65112,155.09,69.055 +65113,157.68,72.616 +65114,156.36,71.428 +65115,155.08,70.238 +65116,153.84,69.045 +65117,156.29,72.667 +65118,155.02,71.46 +65119,153.78,70.249 +65120,152.59,69.037 +65121,154.91,72.718 +65122,153.68,71.491 +65123,152.49,70.261 +65124,151.33,69.029 +65125,153.52,72.767 +65126,152.34,71.523 +65127,151.19,70.274 +65128,150.08,69.022 +65129,152.14,72.816 +65130,151,71.553 +65131,149.9,70.286 +65132,148.83,69.016 +65133,150.75,72.863 +65134,149.66,71.584 +65135,148.6,70.299 +65136,147.58,69.011 +65137,149.36,72.91 +65138,148.32,71.614 +65139,147.31,70.312 +65140,146.33,69.007 +65141,147.97,72.955 +65142,146.98,71.643 +65143,146.02,70.326 +65144,145.09,69.005 +65145,146.58,72.999 +65146,145.64,71.673 +65147,144.72,70.34 +65148,143.84,69.003 +65149,145.19,73.043 +65150,144.29,71.702 +65151,143.43,70.354 +65152,142.59,69.002 +65153,143.8,73.085 +65154,142.95,71.73 +65155,142.13,70.369 +65156,141.35,69.003 +65157,142.41,73.126 +65158,141.61,71.758 +65159,140.84,70.384 +65160,140.1,69.005 +65161,141.02,73.166 +65162,140.27,71.786 +65163,139.55,70.4 +65164,138.86,69.007 +65165,139.63,73.205 +65166,138.93,71.814 +65167,138.26,70.415 +65168,137.61,69.011 +65169,138.23,73.242 +65170,137.58,71.841 +65171,136.96,70.432 +65172,136.37,69.016 +65173,136.84,73.279 +65174,136.24,71.867 +65175,135.67,70.448 +65176,135.13,69.023 +65177,135.45,73.314 +65178,134.9,71.894 +65179,134.38,70.465 +65180,133.89,69.03 +65181,134.06,73.349 +65182,133.55,71.92 +65183,133.08,70.483 +65184,132.64,69.039 +65185,132.66,73.382 +65186,132.21,71.945 +65187,131.79,70.5 +65188,131.4,69.048 +65189,131.27,73.414 +65190,130.87,71.97 +65191,130.5,70.519 +65192,130.16,69.059 +65193,129.87,73.445 +65194,129.53,71.995 +65195,129.21,70.537 +65196,128.92,69.072 +65197,128.48,73.474 +65198,128.18,72.02 +65199,127.92,70.556 +65200,127.68,69.085 +65201,127.08,73.503 +65202,126.84,72.044 +65203,126.62,70.575 +65204,126.44,69.099 +65205,125.69,73.53 +65206,125.5,72.067 +65207,125.33,70.595 +65208,125.2,69.115 +65209,124.3,73.557 +65210,124.15,72.09 +65211,124.04,70.615 +65212,123.96,69.132 +65213,122.9,73.582 +65214,122.81,72.113 +65215,122.75,70.636 +65216,122.72,69.15 +65217,121.51,73.605 +65218,121.46,72.136 +65219,121.46,70.657 +65220,121.48,69.17 +65221,120.11,73.628 +65222,120.12,72.158 +65223,120.16,70.678 +65224,120.24,69.19 +65225,118.72,73.65 +65226,118.78,72.179 +65227,118.87,70.7 +65228,119,69.212 +65229,117.32,73.67 +65230,117.43,72.201 +65231,117.58,70.722 +65232,117.76,69.235 +65233,115.93,73.689 +65234,116.09,72.221 +65235,116.29,70.744 +65236,116.52,69.26 +65237,114.54,73.707 +65238,114.75,72.242 +65239,115,70.767 +65240,115.28,69.285 +65241,113.14,73.724 +65242,113.4,72.262 +65243,113.7,70.791 +65244,114.04,69.312 +65245,111.75,73.74 +65246,112.06,72.282 +65247,112.41,70.814 +65248,112.8,69.34 +65249,110.36,73.754 +65250,110.72,72.301 +65251,111.12,70.839 +65252,111.56,69.369 +65253,108.96,73.767 +65254,109.37,72.32 +65255,109.83,70.863 +65256,110.32,69.399 +65257,107.57,73.78 +65258,108.03,72.338 +65259,108.53,70.888 +65260,109.08,69.431 +65261,106.18,73.791 +65262,106.69,72.356 +65263,107.24,70.913 +65264,107.84,69.464 +65265,104.79,73.8 +65266,105.35,72.374 +65267,105.95,70.939 +65268,106.59,69.498 +65269,103.4,73.809 +65270,104,72.391 +65271,104.65,70.965 +65272,105.35,69.533 +65273,102.01,73.817 +65274,102.66,72.408 +65275,103.36,70.992 +65276,104.11,69.569 +65277,100.62,73.823 +65278,101.32,72.425 +65279,102.07,71.019 +65280,102.86,69.606 +65281,99.232,73.828 +65282,99.978,72.441 +65283,100.77,71.046 +65284,101.62,69.645 +65285,97.844,73.833 +65286,98.636,72.457 +65287,99.478,71.073 +65288,100.37,69.685 +65289,96.456,73.836 +65290,97.294,72.472 +65291,98.184,71.101 +65292,99.128,69.726 +65293,95.07,73.838 +65294,95.953,72.487 +65295,96.889,71.13 +65296,97.882,69.768 +65297,93.684,73.839 +65298,94.612,72.502 +65299,95.594,71.159 +65300,96.634,69.811 +65301,92.299,73.839 +65302,93.271,72.516 +65303,94.299,71.188 +65304,95.386,69.855 +65305,90.914,73.838 +65306,91.93,72.53 +65307,93.004,71.217 +65308,94.138,69.9 +65309,89.531,73.835 +65310,90.59,72.544 +65311,91.708,71.247 +65312,92.888,69.947 +65313,88.148,73.832 +65314,89.25,72.557 +65315,90.412,71.277 +65316,91.638,69.994 +65317,86.766,73.828 +65318,87.91,72.57 +65319,89.115,71.308 +65320,90.386,70.043 +65321,85.386,73.823 +65322,86.571,72.583 +65323,87.819,71.339 +65324,89.134,70.092 +65325,84.006,73.816 +65326,85.232,72.595 +65327,86.522,71.37 +65328,87.88,70.143 +65329,82.627,73.809 +65330,83.893,72.607 +65331,85.224,71.401 +65332,86.626,70.195 +65333,81.249,73.801 +65334,82.554,72.618 +65335,83.926,71.433 +65336,85.371,70.247 +65337,79.872,73.792 +65338,81.216,72.63 +65339,82.628,71.465 +65340,84.114,70.301 +65341,78.496,73.782 +65342,79.879,72.641 +65343,81.33,71.498 +65344,82.856,70.355 +65345,77.122,73.771 +65346,78.541,72.651 +65347,80.031,71.531 +65348,81.597,70.411 +65349,75.748,73.759 +65350,77.204,72.662 +65351,78.731,71.564 +65352,80.337,70.467 +65353,74.376,73.746 +65354,75.867,72.672 +65355,77.432,71.597 +65356,79.076,70.524 +65357,73.005,73.732 +65358,74.531,72.682 +65359,76.131,71.631 +65360,77.813,70.582 +65361,71.635,73.718 +65362,73.195,72.691 +65363,74.831,71.665 +65364,76.549,70.641 +65365,70.266,73.702 +65366,71.86,72.7 +65367,73.53,71.699 +65368,75.284,70.701 +65369,68.898,73.686 +65370,70.525,72.709 +65371,72.228,71.734 +65372,74.017,70.761 +65373,67.532,73.669 +65374,69.19,72.718 +65375,70.926,71.768 +65376,72.749,70.823 +65377,66.167,73.652 +65378,67.856,72.726 +65379,69.624,71.804 +65380,71.48,70.885 +65381,64.804,73.633 +65382,66.522,72.735 +65383,68.321,71.839 +65384,70.209,70.948 +65385,63.441,73.614 +65386,65.188,72.743 +65387,67.017,71.874 +65388,68.937,71.012 +65389,62.08,73.594 +65390,63.856,72.75 +65391,65.713,71.91 +65392,67.663,71.076 +65393,60.721,73.574 +65394,62.523,72.758 +65395,64.409,71.946 +65396,66.388,71.141 +65397,59.362,73.552 +65398,61.191,72.765 +65399,63.104,71.982 +65400,65.111,71.206 +65401,58.006,73.531 +65402,59.86,72.772 +65403,61.799,72.019 +65404,63.833,71.273 +65405,56.65,73.508 +65406,58.528,72.779 +65407,60.493,72.056 +65408,62.553,71.34 +65409,55.296,73.485 +65410,57.198,72.786 +65411,59.186,72.092 +65412,61.271,71.407 +65413,53.944,73.462 +65414,55.868,72.792 +65415,57.879,72.129 +65416,59.988,71.475 +65417,52.593,73.437 +65418,54.538,72.799 +65419,56.572,72.167 +65420,58.703,71.544 +65421,51.243,73.413 +65422,53.209,72.805 +65423,55.263,72.204 +65424,57.417,71.613 +65425,49.895,73.388 +65426,51.881,72.811 +65427,53.955,72.242 +65428,56.129,71.682 +65429,48.549,73.362 +65430,50.552,72.817 +65431,52.646,72.279 +65432,54.839,71.752 +65433,47.204,73.336 +65434,49.225,72.822 +65435,51.336,72.317 +65436,53.547,71.822 +65437,45.86,73.309 +65438,47.898,72.828 +65439,50.025,72.355 +65440,52.254,71.893 +65441,44.518,73.282 +65442,46.571,72.833 +65443,48.714,72.393 +65444,50.959,71.964 +65445,43.178,73.255 +65446,45.245,72.839 +65447,47.403,72.431 +65448,49.663,72.036 +65449,41.839,73.228 +65450,43.92,72.844 +65451,46.091,72.47 +65452,48.364,72.108 +65453,40.502,73.2 +65454,42.595,72.849 +65455,44.778,72.508 +65456,47.064,72.18 +65457,39.167,73.171 +65458,41.27,72.854 +65459,43.465,72.547 +65460,45.762,72.252 +65461,37.833,73.143 +65462,39.947,72.859 +65463,42.151,72.585 +65464,44.459,72.325 +65465,36.5,73.114 +65466,38.623,72.864 +65467,40.837,72.624 +65468,43.153,72.397 +65469,35.169,73.085 +65470,37.3,72.869 +65471,39.522,72.663 +65472,41.846,72.47 +65473,33.84,73.056 +65474,35.978,72.873 +65475,38.206,72.702 +65476,40.537,72.543 +65477,32.513,73.027 +65478,34.656,72.878 +65479,36.89,72.741 +65480,39.226,72.617 +65481,31.187,72.997 +65482,33.335,72.883 +65483,35.573,72.779 +65484,37.913,72.69 +65485,29.863,72.968 +65486,32.015,72.887 +65487,34.256,72.818 +65488,36.599,72.763 +65489,28.54,72.938 +65490,30.695,72.892 +65491,32.938,72.857 +65492,35.282,72.837 +65493,27.219,72.909 +65494,29.375,72.896 +65495,31.619,72.896 +65496,33.964,72.91 +65497,25.9,72.879 +65498,28.056,72.901 +65499,30.3,72.935 +65500,32.644,72.983 +65501,24.582,72.849 +65502,26.738,72.906 +65503,28.98,72.974 +65504,31.323,73.057 +65505,23.266,72.82 +65506,25.42,72.91 +65507,27.66,73.013 +65508,29.999,73.13 +65509,21.951,72.79 +65510,24.102,72.915 +65511,26.339,73.052 +65512,28.674,73.203 +65513,20.639,72.761 +65514,22.786,72.919 +65515,25.017,73.091 +65516,27.347,73.276 +65517,19.327,72.731 +65518,21.469,72.924 +65519,23.695,73.13 +65520,26.018,73.349 +65521,18.018,72.702 +65522,20.154,72.929 +65523,22.372,73.168 +65524,24.688,73.422 +65525,16.71,72.673 +65526,18.838,72.934 +65527,21.049,73.207 +65528,23.355,73.494 +65529,15.404,72.644 +65530,17.524,72.939 +65531,19.725,73.246 +65532,22.021,73.567 +65533,14.099,72.616 +65534,16.21,72.944 +65535,18.401,73.284 +65536,20.685,73.639 +65537,12.796,72.587 +65538,14.896,72.949 +65539,17.076,73.323 +65540,19.348,73.71 +65541,11.494,72.559 +65542,13.583,72.954 +65543,15.75,73.361 +65544,18.008,73.782 +65545,10.194,72.532 +65546,12.27,72.959 +65547,14.424,73.399 +65548,16.667,73.853 +65549,8.8959,72.504 +65550,10.958,72.965 +65551,13.097,73.438 +65552,15.325,73.923 +65553,7.5992,72.477 +65554,9.6468,72.97 +65555,11.77,73.476 +65556,13.98,73.994 +65557,6.3039,72.45 +65558,8.3359,72.976 +65559,10.442,73.513 +65560,12.634,74.064 +65561,5.0103,72.424 +65562,7.0254,72.982 +65563,9.1134,73.551 +65564,11.286,74.133 +65565,3.7181,72.398 +65566,5.7154,72.988 +65567,7.7844,73.589 +65568,9.9369,74.202 +65569,2.4275,72.373 +65570,4.4059,72.994 +65571,6.4549,73.626 +65572,8.586,74.27 +65573,1.1384,72.348 +65574,3.097,73 +65575,5.1248,73.663 +65576,7.2334,74.338 +65577,359.85,72.324 +65578,1.7885,73.007 +65579,3.7942,73.7 +65580,5.8793,74.406 +65581,358.56,72.3 +65582,0.48049,73.013 +65583,2.4631,73.737 +65584,4.5236,74.472 +65585,357.28,72.277 +65586,359.17,73.02 +65587,1.1315,73.774 +65588,3.1663,74.539 +65589,356,72.254 +65590,357.87,73.027 +65591,359.8,73.811 +65592,1.8076,74.604 +65593,354.72,72.232 +65594,356.56,73.035 +65595,358.47,73.847 +65596,0.44737,74.669 +65597,353.43,72.211 +65598,355.25,73.042 +65599,357.13,73.883 +65600,359.09,74.733 +65601,352.16,72.19 +65602,353.95,73.05 +65603,355.8,73.919 +65604,357.72,74.797 +65605,350.88,72.17 +65606,352.64,73.058 +65607,354.47,73.954 +65608,356.36,74.86 +65609,349.6,72.151 +65610,351.34,73.066 +65611,353.13,73.99 +65612,354.99,74.922 +65613,348.33,72.132 +65614,350.03,73.075 +65615,351.8,74.025 +65616,353.62,74.983 +65617,347.05,72.114 +65618,348.73,73.083 +65619,350.46,74.06 +65620,352.26,75.044 +65621,345.78,72.097 +65622,347.43,73.092 +65623,349.12,74.094 +65624,350.89,75.104 +65625,344.51,72.081 +65626,346.12,73.101 +65627,347.79,74.129 +65628,349.52,75.163 +65629,343.24,72.066 +65630,344.82,73.111 +65631,346.45,74.163 +65632,348.14,75.221 +65633,341.97,72.051 +65634,343.52,73.121 +65635,345.11,74.197 +65636,346.77,75.278 +65637,340.7,72.037 +65638,342.22,73.131 +65639,343.78,74.23 +65640,345.39,75.335 +65641,339.44,72.025 +65642,340.91,73.141 +65643,342.44,74.263 +65644,344.02,75.391 +65645,338.17,72.013 +65646,339.61,73.152 +65647,341.1,74.296 +65648,342.64,75.445 +65649,336.91,72.002 +65650,338.31,73.163 +65651,339.76,74.329 +65652,341.26,75.499 +65653,335.65,71.992 +65654,337.01,73.174 +65655,338.42,74.361 +65656,339.88,75.552 +65657,334.38,71.983 +65658,335.71,73.186 +65659,337.08,74.393 +65660,338.5,75.604 +65661,333.12,71.975 +65662,334.41,73.198 +65663,335.74,74.425 +65664,337.12,75.655 +65665,331.86,71.967 +65666,333.11,73.21 +65667,334.4,74.456 +65668,335.74,75.705 +65669,330.6,71.961 +65670,331.81,73.223 +65671,333.06,74.487 +65672,334.36,75.754 +65673,329.35,71.956 +65674,330.51,73.236 +65675,331.72,74.518 +65676,332.97,75.802 +65677,328.09,71.952 +65678,329.22,73.249 +65679,330.38,74.549 +65680,331.59,75.849 +65681,326.83,71.949 +65682,327.92,73.263 +65683,329.04,74.579 +65684,330.2,75.894 +65685,325.58,71.947 +65686,326.62,73.277 +65687,327.7,74.608 +65688,328.81,75.939 +65689,324.32,71.947 +65690,325.32,73.292 +65691,326.35,74.638 +65692,327.43,75.983 +65693,323.07,71.947 +65694,324.02,73.306 +65695,325.01,74.666 +65696,326.04,76.026 +65697,321.82,71.948 +65698,322.73,73.322 +65699,323.67,74.695 +65700,324.65,76.067 +65701,320.57,71.951 +65702,321.43,73.337 +65703,322.33,74.723 +65704,323.26,76.108 +65705,319.31,71.954 +65706,320.13,73.353 +65707,320.98,74.751 +65708,321.87,76.148 +65709,318.06,71.959 +65710,318.83,73.369 +65711,319.64,74.779 +65712,320.48,76.186 +65713,316.81,71.965 +65714,317.54,73.386 +65715,318.3,74.806 +65716,319.09,76.223 +65717,315.56,71.972 +65718,316.24,73.403 +65719,316.95,74.833 +65720,317.7,76.259 +65721,314.31,71.981 +65722,314.95,73.421 +65723,315.61,74.859 +65724,316.31,76.294 +65725,313.07,71.99 +65726,313.65,73.439 +65727,314.26,74.885 +65728,314.91,76.328 +65729,311.82,72.001 +65730,312.35,73.457 +65731,312.92,74.911 +65732,313.52,76.361 +65733,310.57,72.013 +65734,311.06,73.475 +65735,311.58,74.936 +65736,312.13,76.392 +65737,309.32,72.026 +65738,309.76,73.495 +65739,310.23,74.961 +65740,310.73,76.423 +65741,308.08,72.04 +65742,308.47,73.514 +65743,308.89,74.985 +65744,309.34,76.452 +65745,306.83,72.055 +65746,307.17,73.534 +65747,307.54,75.009 +65748,307.95,76.48 +65749,305.58,72.072 +65750,305.87,73.554 +65751,306.2,75.033 +65752,306.55,76.507 +65753,304.34,72.09 +65754,304.58,73.575 +65755,304.85,75.056 +65756,305.16,76.533 +65757,303.09,72.109 +65758,303.28,73.596 +65759,303.51,75.079 +65760,303.76,76.557 +65761,301.85,72.13 +65762,301.99,73.617 +65763,302.16,75.101 +65764,302.37,76.58 +65765,300.6,72.151 +65766,300.69,73.639 +65767,300.82,75.124 +65768,300.97,76.603 +65769,299.35,72.174 +65770,299.4,73.662 +65771,299.47,75.145 +65772,299.58,76.624 +65773,298.11,72.198 +65774,298.1,73.684 +65775,298.13,75.167 +65776,298.19,76.644 +65777,296.86,72.223 +65778,296.81,73.707 +65779,296.78,75.188 +65780,296.79,76.662 +65781,295.62,72.25 +65782,295.51,73.731 +65783,295.44,75.208 +65784,295.4,76.68 +65785,294.37,72.277 +65786,294.21,73.755 +65787,294.09,75.228 +65788,294,76.696 +65789,293.13,72.306 +65790,292.92,73.779 +65791,292.75,75.248 +65792,292.61,76.711 +65793,291.88,72.336 +65794,291.62,73.804 +65795,291.4,75.267 +65796,291.21,76.726 +65797,290.63,72.368 +65798,290.33,73.829 +65799,290.06,75.286 +65800,289.82,76.738 +65801,289.39,72.4 +65802,289.03,73.854 +65803,288.71,75.305 +65804,288.43,76.75 +65805,288.14,72.434 +65806,287.74,73.88 +65807,287.37,75.323 +65808,287.03,76.761 +65809,286.9,72.469 +65810,286.44,73.907 +65811,286.02,75.341 +65812,285.64,76.77 +65813,285.65,72.505 +65814,285.14,73.933 +65815,284.68,75.358 +65816,284.25,76.779 +65817,284.4,72.542 +65818,283.85,73.961 +65819,283.33,75.376 +65820,282.86,76.786 +65821,283.15,72.581 +65822,282.55,73.988 +65823,281.99,75.392 +65824,281.46,76.792 +65825,281.91,72.621 +65826,281.25,74.016 +65827,280.64,75.409 +65828,280.07,76.797 +65829,280.66,72.661 +65830,279.96,74.044 +65831,279.3,75.425 +65832,278.68,76.801 +65833,279.41,72.703 +65834,278.66,74.073 +65835,277.96,75.44 +65836,277.29,76.803 +65837,278.16,72.746 +65838,277.36,74.102 +65839,276.61,75.455 +65840,275.9,76.805 +65841,276.91,72.791 +65842,276.07,74.131 +65843,275.27,75.47 +65844,274.52,76.806 +65845,275.66,72.836 +65846,274.77,74.161 +65847,273.93,75.485 +65848,273.13,76.805 +65849,274.4,72.882 +65850,273.47,74.191 +65851,272.58,75.499 +65852,271.74,76.804 +65853,273.15,72.93 +65854,272.17,74.222 +65855,271.24,75.513 +65856,270.35,76.801 +65857,271.9,72.978 +65858,270.87,74.253 +65859,269.9,75.526 +65860,268.97,76.798 +65861,270.64,73.028 +65862,269.57,74.284 +65863,268.55,75.539 +65864,267.58,76.793 +65865,269.39,73.079 +65866,268.28,74.315 +65867,267.21,75.552 +65868,266.2,76.788 +65869,268.13,73.13 +65870,266.98,74.347 +65871,265.87,75.565 +65872,264.81,76.781 +65873,266.88,73.183 +65874,265.68,74.379 +65875,264.53,75.577 +65876,263.43,76.774 +65877,265.62,73.237 +65878,264.38,74.412 +65879,263.19,75.589 +65880,262.05,76.765 +65881,264.36,73.292 +65882,263.08,74.445 +65883,261.85,75.6 +65884,260.67,76.756 +65885,263.1,73.347 +65886,261.78,74.478 +65887,260.51,75.612 +65888,259.29,76.746 +65889,261.84,73.404 +65890,260.47,74.512 +65891,259.17,75.622 +65892,257.91,76.734 +65893,260.58,73.461 +65894,259.17,74.545 +65895,257.83,75.633 +65896,256.53,76.722 +65897,259.32,73.52 +65898,257.87,74.58 +65899,256.49,75.643 +65900,255.16,76.709 +65901,258.05,73.579 +65902,256.57,74.614 +65903,255.15,75.654 +65904,253.78,76.696 +65905,256.79,73.639 +65906,255.27,74.649 +65907,253.81,75.663 +65908,252.41,76.681 +65909,255.52,73.7 +65910,253.96,74.684 +65911,252.47,75.673 +65912,251.03,76.665 +65913,254.26,73.762 +65914,252.66,74.719 +65915,251.13,75.682 +65916,249.66,76.649 +65917,252.99,73.824 +65918,251.36,74.754 +65919,249.79,75.691 +65920,248.29,76.632 +65921,251.72,73.888 +65922,250.05,74.79 +65923,248.45,75.7 +65924,246.92,76.614 +65925,250.45,73.952 +65926,248.75,74.826 +65927,247.12,75.708 +65928,245.55,76.596 +65929,249.18,74.017 +65930,247.44,74.863 +65931,245.78,75.717 +65932,244.18,76.577 +65933,247.9,74.082 +65934,246.14,74.899 +65935,244.44,75.725 +65936,242.82,76.557 +65937,246.63,74.148 +65938,244.83,74.936 +65939,243.11,75.733 +65940,241.45,76.536 +65941,245.35,74.215 +65942,243.52,74.973 +65943,241.77,75.74 +65944,240.09,76.515 +65945,244.07,74.283 +65946,242.22,75.01 +65947,240.44,75.748 +65948,238.73,76.493 +65949,242.79,74.351 +65950,240.91,75.047 +65951,239.1,75.755 +65952,237.36,76.471 +65953,241.51,74.419 +65954,239.6,75.085 +65955,237.77,75.762 +65956,236,76.448 +65957,240.23,74.489 +65958,238.29,75.123 +65959,236.43,75.769 +65960,234.65,76.424 +65961,238.95,74.558 +65962,236.98,75.161 +65963,235.1,75.775 +65964,233.29,76.4 +65965,237.66,74.629 +65966,235.68,75.199 +65967,233.77,75.782 +65968,231.93,76.375 +65969,236.38,74.699 +65970,234.37,75.237 +65971,232.44,75.788 +65972,230.58,76.35 +65973,235.09,74.771 +65974,233.06,75.276 +65975,231.1,75.795 +65976,229.23,76.324 +65977,233.8,74.842 +65978,231.74,75.314 +65979,229.77,75.801 +65980,227.87,76.298 +65981,232.51,74.914 +65982,230.43,75.353 +65983,228.44,75.807 +65984,226.52,76.272 +65985,231.21,74.987 +65986,229.12,75.392 +65987,227.11,75.812 +65988,225.18,76.245 +65989,229.92,75.059 +65990,227.81,75.431 +65991,225.78,75.818 +65992,223.83,76.218 +65993,228.62,75.132 +65994,226.49,75.47 +65995,224.45,75.824 +65996,222.48,76.191 +65997,227.33,75.206 +65998,225.18,75.51 +65999,223.12,75.829 +66000,221.14,76.163 +66001,226.03,75.279 +66002,223.87,75.549 +66003,221.79,75.835 +66004,219.8,76.135 +66005,224.72,75.353 +66006,222.55,75.588 +66007,220.47,75.84 +66008,218.46,76.106 +66009,223.42,75.427 +66010,221.24,75.628 +66011,219.14,75.845 +66012,217.12,76.078 +66013,222.12,75.501 +66014,219.92,75.667 +66015,217.81,75.851 +66016,215.78,76.049 +66017,220.81,75.576 +66018,218.6,75.707 +66019,216.48,75.856 +66020,214.44,76.02 +66021,219.5,75.65 +66022,217.29,75.747 +66023,215.16,75.861 +66024,213.11,75.991 +66025,218.19,75.725 +66026,215.97,75.786 +66027,213.83,75.866 +66028,211.78,75.962 +66029,216.88,75.799 +66030,214.65,75.826 +66031,212.51,75.871 +66032,210.44,75.933 +66033,215.57,75.874 +66034,213.33,75.866 +66035,211.18,75.876 +66036,209.11,75.903 +66037,214.25,75.949 +66038,212.01,75.906 +66039,209.86,75.881 +66040,207.78,75.874 +66041,212.94,76.023 +66042,210.69,75.945 +66043,208.54,75.886 +66044,206.46,75.844 +66045,211.62,76.098 +66046,209.37,75.985 +66047,207.21,75.892 +66048,205.13,75.815 +66049,210.3,76.173 +66050,208.05,76.025 +66051,205.89,75.897 +66052,203.81,75.786 +66053,208.98,76.247 +66054,206.73,76.065 +66055,204.57,75.902 +66056,202.49,75.756 +66057,207.65,76.321 +66058,205.41,76.104 +66059,203.25,75.907 +66060,201.17,75.727 +66061,206.33,76.395 +66062,204.08,76.144 +66063,201.93,75.912 +66064,199.85,75.698 +66065,205,76.469 +66066,202.76,76.183 +66067,200.61,75.918 +66068,198.53,75.669 +66069,203.67,76.543 +66070,201.44,76.223 +66071,199.29,75.923 +66072,197.21,75.641 +66073,202.34,76.616 +66074,200.11,76.262 +66075,197.97,75.928 +66076,195.9,75.612 +66077,201.01,76.69 +66078,198.79,76.302 +66079,196.65,75.934 +66080,194.59,75.584 +66081,199.68,76.762 +66082,197.46,76.341 +66083,195.33,75.94 +66084,193.28,75.556 +66085,198.34,76.835 +66086,196.14,76.38 +66087,194.01,75.945 +66088,191.97,75.528 +66089,197.01,76.907 +66090,194.81,76.419 +66091,192.7,75.951 +66092,190.66,75.501 +66093,195.67,76.979 +66094,193.48,76.458 +66095,191.38,75.957 +66096,189.35,75.474 +66097,194.33,77.05 +66098,192.15,76.497 +66099,190.06,75.963 +66100,188.05,75.448 +66101,192.98,77.121 +66102,190.82,76.536 +66103,188.75,75.97 +66104,186.74,75.421 +66105,191.64,77.192 +66106,189.5,76.574 +66107,187.43,75.976 +66108,185.44,75.395 +66109,190.3,77.262 +66110,188.17,76.613 +66111,186.12,75.983 +66112,184.14,75.37 +66113,188.95,77.331 +66114,186.84,76.651 +66115,184.8,75.989 +66116,182.84,75.345 +66117,187.6,77.4 +66118,185.5,76.689 +66119,183.49,75.996 +66120,181.54,75.321 +66121,186.25,77.469 +66122,184.17,76.727 +66123,182.18,76.003 +66124,180.25,75.297 +66125,184.9,77.537 +66126,182.84,76.765 +66127,180.86,76.011 +66128,178.95,75.274 +66129,183.55,77.604 +66130,181.51,76.802 +66131,179.55,76.018 +66132,177.66,75.251 +66133,182.19,77.671 +66134,180.18,76.839 +66135,178.24,76.026 +66136,176.37,75.229 +66137,180.83,77.736 +66138,178.84,76.877 +66139,176.93,76.034 +66140,175.08,75.208 +66141,179.48,77.802 +66142,177.51,76.913 +66143,175.62,76.042 +66144,173.79,75.187 +66145,178.12,77.866 +66146,176.18,76.95 +66147,174.31,76.051 +66148,172.5,75.167 +66149,176.76,77.93 +66150,174.84,76.986 +66151,173,76.059 +66152,171.22,75.147 +66153,175.39,77.993 +66154,173.5,77.023 +66155,171.69,76.068 +66156,169.93,75.129 +66157,174.03,78.056 +66158,172.17,77.059 +66159,170.38,76.077 +66160,168.65,75.111 +66161,172.67,78.117 +66162,170.83,77.094 +66163,169.07,76.087 +66164,167.37,75.093 +66165,171.3,78.178 +66166,169.5,77.13 +66167,167.76,76.096 +66168,166.08,75.077 +66169,169.93,78.238 +66170,168.16,77.165 +66171,166.45,76.106 +66172,164.81,75.061 +66173,168.56,78.297 +66174,166.82,77.2 +66175,165.15,76.117 +66176,163.53,75.047 +66177,167.19,78.355 +66178,165.48,77.234 +66179,163.84,76.127 +66180,162.25,75.033 +66181,165.82,78.412 +66182,164.14,77.269 +66183,162.53,76.138 +66184,160.97,75.02 +66185,164.45,78.469 +66186,162.81,77.303 +66187,161.23,76.149 +66188,159.7,75.008 +66189,163.07,78.524 +66190,161.47,77.336 +66191,159.92,76.161 +66192,158.43,74.997 +66193,161.7,78.579 +66194,160.13,77.37 +66195,158.61,76.172 +66196,157.15,74.986 +66197,160.32,78.633 +66198,158.79,77.403 +66199,157.31,76.184 +66200,155.88,74.977 +66201,158.95,78.685 +66202,157.45,77.436 +66203,156,76.197 +66204,154.61,74.969 +66205,157.57,78.737 +66206,156.11,77.468 +66207,154.7,76.21 +66208,153.34,74.961 +66209,156.19,78.788 +66210,154.76,77.5 +66211,153.4,76.223 +66212,152.07,74.955 +66213,154.81,78.837 +66214,153.42,77.532 +66215,152.09,76.236 +66216,150.81,74.95 +66217,153.43,78.886 +66218,152.08,77.564 +66219,150.79,76.25 +66220,149.54,74.946 +66221,152.04,78.933 +66222,150.74,77.595 +66223,149.48,76.264 +66224,148.28,74.942 +66225,150.66,78.98 +66226,149.4,77.625 +66227,148.18,76.279 +66228,147.01,74.94 +66229,149.28,79.025 +66230,148.05,77.656 +66231,146.88,76.294 +66232,145.75,74.939 +66233,147.89,79.07 +66234,146.71,77.686 +66235,145.58,76.309 +66236,144.49,74.939 +66237,146.5,79.113 +66238,145.37,77.716 +66239,144.27,76.325 +66240,143.22,74.94 +66241,145.12,79.155 +66242,144.02,77.745 +66243,142.97,76.341 +66244,141.96,74.943 +66245,143.73,79.197 +66246,142.68,77.774 +66247,141.67,76.357 +66248,140.7,74.946 +66249,142.34,79.236 +66250,141.33,77.803 +66251,140.37,76.374 +66252,139.44,74.951 +66253,140.95,79.275 +66254,139.99,77.831 +66255,139.07,76.391 +66256,138.18,74.956 +66257,139.56,79.313 +66258,138.64,77.859 +66259,137.77,76.409 +66260,136.93,74.963 +66261,138.17,79.35 +66262,137.3,77.886 +66263,136.46,76.426 +66264,135.67,74.971 +66265,136.78,79.385 +66266,135.95,77.913 +66267,135.16,76.445 +66268,134.41,74.981 +66269,135.39,79.419 +66270,134.61,77.94 +66271,133.86,76.464 +66272,133.16,74.991 +66273,134,79.452 +66274,133.26,77.966 +66275,132.56,76.483 +66276,131.9,75.003 +66277,132.61,79.484 +66278,131.92,77.992 +66279,131.26,76.502 +66280,130.64,75.016 +66281,131.21,79.515 +66282,130.57,78.018 +66283,129.96,76.522 +66284,129.39,75.03 +66285,129.82,79.545 +66286,129.22,78.043 +66287,128.66,76.543 +66288,128.14,75.045 +66289,128.43,79.573 +66290,127.88,78.068 +66291,127.36,76.563 +66292,126.88,75.062 +66293,127.03,79.6 +66294,126.53,78.092 +66295,126.06,76.585 +66296,125.63,75.079 +66297,125.64,79.626 +66298,125.18,78.116 +66299,124.76,76.606 +66300,124.38,75.098 +66301,124.25,79.651 +66302,123.84,78.14 +66303,123.46,76.628 +66304,123.12,75.119 +66305,122.85,79.675 +66306,122.49,78.163 +66307,122.16,76.651 +66308,121.87,75.14 +66309,121.46,79.697 +66310,121.14,78.186 +66311,120.86,76.674 +66312,120.62,75.163 +66313,120.06,79.719 +66314,119.8,78.208 +66315,119.56,76.697 +66316,119.36,75.187 +66317,118.67,79.739 +66318,118.45,78.23 +66319,118.26,76.721 +66320,118.11,75.212 +66321,117.27,79.758 +66322,117.1,78.252 +66323,116.97,76.745 +66324,116.86,75.238 +66325,115.88,79.775 +66326,115.75,78.273 +66327,115.67,76.769 +66328,115.61,75.266 +66329,114.48,79.792 +66330,114.41,78.294 +66331,114.37,76.794 +66332,114.36,75.295 +66333,113.09,79.807 +66334,113.06,78.314 +66335,113.07,76.82 +66336,113.1,75.325 +66337,111.69,79.822 +66338,111.71,78.334 +66339,111.77,76.845 +66340,111.85,75.357 +66341,110.3,79.835 +66342,110.37,78.354 +66343,110.47,76.871 +66344,110.6,75.389 +66345,108.9,79.847 +66346,109.02,78.373 +66347,109.17,76.898 +66348,109.35,75.423 +66349,107.51,79.857 +66350,107.67,78.392 +66351,107.87,76.925 +66352,108.1,75.458 +66353,106.11,79.867 +66354,106.32,78.41 +66355,106.57,76.952 +66356,106.84,75.495 +66357,104.72,79.875 +66358,104.98,78.428 +66359,105.27,76.98 +66360,105.59,75.532 +66361,103.33,79.882 +66362,103.63,78.446 +66363,103.97,77.008 +66364,104.34,75.571 +66365,101.93,79.889 +66366,102.28,78.463 +66367,102.67,77.037 +66368,103.09,75.611 +66369,100.54,79.894 +66370,100.94,78.48 +66371,101.37,77.066 +66372,101.83,75.652 +66373,99.146,79.898 +66374,99.59,78.497 +66375,100.07,77.095 +66376,100.58,75.694 +66377,97.754,79.9 +66378,98.243,78.513 +66379,98.766,77.125 +66380,99.324,75.737 +66381,96.362,79.902 +66382,96.897,78.529 +66383,97.465,77.155 +66384,98.069,75.782 +66385,94.971,79.903 +66386,95.55,78.545 +66387,96.164,77.186 +66388,96.814,75.828 +66389,93.58,79.902 +66390,94.204,78.56 +66391,94.863,77.217 +66392,95.559,75.875 +66393,92.189,79.901 +66394,92.858,78.574 +66395,93.562,77.248 +66396,94.303,75.923 +66397,90.8,79.898 +66398,91.512,78.589 +66399,92.26,77.279 +66400,93.046,75.972 +66401,89.411,79.895 +66402,90.166,78.603 +66403,90.959,77.311 +66404,91.788,76.022 +66405,88.022,79.89 +66406,88.821,78.617 +66407,89.656,77.344 +66408,90.53,76.073 +66409,86.635,79.885 +66410,87.476,78.63 +66411,88.354,77.377 +66412,89.272,76.125 +66413,85.248,79.878 +66414,86.131,78.643 +66415,87.052,77.41 +66416,88.012,76.179 +66417,83.862,79.87 +66418,84.786,78.656 +66419,85.749,77.443 +66420,86.752,76.233 +66421,82.476,79.862 +66422,83.441,78.668 +66423,84.446,77.477 +66424,85.491,76.288 +66425,81.091,79.852 +66426,82.097,78.681 +66427,83.142,77.511 +66428,84.23,76.345 +66429,79.708,79.842 +66430,80.753,78.692 +66431,81.838,77.545 +66432,82.967,76.402 +66433,78.325,79.831 +66434,79.409,78.704 +66435,80.534,77.58 +66436,81.704,76.461 +66437,76.943,79.818 +66438,78.065,78.715 +66439,79.23,77.615 +66440,80.439,76.52 +66441,75.561,79.805 +66442,76.722,78.726 +66443,77.925,77.65 +66444,79.174,76.58 +66445,74.181,79.791 +66446,75.379,78.737 +66447,76.62,77.686 +66448,77.908,76.641 +66449,72.802,79.777 +66450,74.036,78.747 +66451,75.315,77.722 +66452,76.641,76.703 +66453,71.424,79.761 +66454,72.694,78.757 +66455,74.009,77.758 +66456,75.373,76.766 +66457,70.047,79.745 +66458,71.352,78.767 +66459,72.703,77.795 +66460,74.103,76.83 +66461,68.67,79.727 +66462,70.01,78.777 +66463,71.397,77.831 +66464,72.833,76.894 +66465,67.295,79.71 +66466,68.669,78.786 +66467,70.09,77.868 +66468,71.562,76.959 +66469,65.921,79.691 +66470,67.327,78.795 +66471,68.782,77.906 +66472,70.289,77.025 +66473,64.548,79.671 +66474,65.987,78.804 +66475,67.475,77.943 +66476,69.015,77.092 +66477,63.177,79.651 +66478,64.646,78.812 +66479,66.167,77.981 +66480,67.74,77.16 +66481,61.806,79.631 +66482,63.307,78.821 +66483,64.858,78.019 +66484,66.464,77.228 +66485,60.437,79.609 +66486,61.967,78.829 +66487,63.549,78.057 +66488,65.187,77.297 +66489,59.068,79.587 +66490,60.628,78.837 +66491,62.24,78.096 +66492,63.908,77.366 +66493,57.701,79.565 +66494,59.289,78.845 +66495,60.93,78.135 +66496,62.628,77.437 +66497,56.336,79.541 +66498,57.951,78.852 +66499,59.62,78.174 +66500,61.347,77.507 +66501,54.971,79.518 +66502,56.613,78.86 +66503,58.309,78.213 +66504,60.064,77.579 +66505,53.608,79.493 +66506,55.275,78.867 +66507,56.998,78.252 +66508,58.78,77.651 +66509,52.246,79.468 +66510,53.938,78.874 +66511,55.686,78.291 +66512,57.495,77.723 +66513,50.886,79.443 +66514,52.601,78.881 +66515,54.374,78.331 +66516,56.208,77.796 +66517,49.526,79.417 +66518,51.265,78.888 +66519,53.061,78.371 +66520,54.92,77.869 +66521,48.169,79.391 +66522,49.929,78.894 +66523,51.748,78.411 +66524,53.63,77.943 +66525,46.812,79.364 +66526,48.593,78.901 +66527,50.434,78.451 +66528,52.339,78.017 +66529,45.457,79.338 +66530,47.258,78.907 +66531,49.12,78.491 +66532,51.047,78.092 +66533,44.103,79.31 +66534,45.924,78.913 +66535,47.805,78.531 +66536,49.753,78.167 +66537,42.751,79.282 +66538,44.59,78.92 +66539,46.49,78.572 +66540,48.457,78.242 +66541,41.4,79.254 +66542,43.256,78.926 +66543,45.174,78.612 +66544,47.16,78.318 +66545,40.05,79.226 +66546,41.923,78.932 +66547,43.858,78.653 +66548,45.862,78.394 +66549,38.702,79.198 +66550,40.59,78.937 +66551,42.541,78.694 +66552,44.562,78.47 +66553,37.356,79.169 +66554,39.258,78.943 +66555,41.224,78.735 +66556,43.26,78.546 +66557,36.01,79.14 +66558,37.926,78.949 +66559,39.906,78.776 +66560,41.957,78.622 +66561,34.667,79.111 +66562,36.595,78.955 +66563,38.588,78.817 +66564,40.652,78.699 +66565,33.325,79.082 +66566,35.264,78.96 +66567,37.269,78.858 +66568,39.346,78.776 +66569,31.984,79.052 +66570,33.934,78.966 +66571,35.949,78.899 +66572,38.038,78.853 +66573,30.645,79.023 +66574,32.604,78.972 +66575,34.629,78.94 +66576,36.728,78.93 +66577,29.307,78.993 +66578,31.275,78.977 +66579,33.309,78.981 +66580,35.417,79.007 +66581,27.97,78.964 +66582,29.946,78.983 +66583,31.988,79.022 +66584,34.104,79.084 +66585,26.636,78.934 +66586,28.618,78.989 +66587,30.666,79.063 +66588,32.789,79.161 +66589,25.302,78.905 +66590,27.29,78.994 +66591,29.344,79.104 +66592,31.473,79.238 +66593,23.971,78.875 +66594,25.962,79 +66595,28.021,79.145 +66596,30.155,79.315 +66597,22.64,78.846 +66598,24.635,79.006 +66599,26.698,79.186 +66600,28.836,79.391 +66601,21.312,78.817 +66602,23.309,79.011 +66603,25.374,79.227 +66604,27.515,79.468 +66605,19.984,78.787 +66606,21.983,79.017 +66607,24.049,79.268 +66608,26.192,79.544 +66609,18.659,78.758 +66610,20.658,79.023 +66611,22.724,79.309 +66612,24.868,79.621 +66613,17.335,78.73 +66614,19.333,79.029 +66615,21.399,79.35 +66616,23.542,79.697 +66617,16.012,78.701 +66618,18.008,79.035 +66619,20.073,79.391 +66620,22.214,79.772 +66621,14.691,78.673 +66622,16.684,79.041 +66623,18.746,79.432 +66624,20.885,79.848 +66625,13.371,78.645 +66626,15.361,79.047 +66627,17.419,79.472 +66628,19.554,79.923 +66629,12.053,78.617 +66630,14.038,79.053 +66631,16.091,79.513 +66632,18.221,79.998 +66633,10.736,78.589 +66634,12.716,79.06 +66635,14.762,79.553 +66636,16.887,80.0726 +66637,9.421,78.562 +66638,11.394,79.066 +66639,13.434,79.594 +66640,15.551,80.1467 +66641,8.1073,78.536 +66642,10.072,79.073 +66643,12.104,79.634 +66644,14.214,80.2204 +66645,6.795,78.509 +66646,8.751,79.08 +66647,10.774,79.674 +66648,12.875,80.2936 +66649,5.4843,78.483 +66650,7.4305,79.087 +66651,9.4435,79.714 +66652,11.534,80.3664 +66653,4.175,78.458 +66654,6.1104,79.094 +66655,8.1124,79.753 +66656,10.191,80.4387 +66657,2.8672,78.433 +66658,4.7908,79.101 +66659,6.7808,79.793 +66660,8.8476,80.5105 +66661,1.5608,78.409 +66662,3.4717,79.109 +66663,5.4486,79.832 +66664,7.502,80.5817 +66665,0.2558,78.385 +66666,2.1531,79.117 +66667,4.1159,79.872 +66668,6.155,80.6524 +66669,358.95,78.361 +66670,0.83488,79.124 +66671,2.7827,79.911 +66672,4.8063,80.7224 +66673,357.65,78.339 +66674,359.52,79.133 +66675,1.4489,79.949 +66676,3.4562,80.7918 +66677,356.35,78.317 +66678,358.2,79.141 +66679,0.11464,79.988 +66680,2.1045,80.8606 +66681,355.05,78.295 +66682,356.88,79.149 +66683,358.78,80.0264 +66684,0.75125,80.9287 +66685,353.75,78.274 +66686,355.57,79.158 +66687,357.44,80.0646 +66688,359.4,80.9961 +66689,352.46,78.254 +66690,354.25,79.167 +66691,356.11,80.1025 +66692,358.04,81.0628 +66693,351.16,78.235 +66694,352.94,79.176 +66695,354.77,80.1402 +66696,356.68,81.1287 +66697,349.87,78.216 +66698,351.62,79.186 +66699,353.44,80.1777 +66700,355.32,81.1939 +66701,348.57,78.198 +66702,350.31,79.196 +66703,352.1,80.2149 +66704,353.96,81.2583 +66705,347.28,78.181 +66706,348.99,79.206 +66707,350.76,80.2518 +66708,352.6,81.3218 +66709,345.99,78.165 +66710,347.68,79.216 +66711,349.42,80.2885 +66712,351.24,81.3846 +66713,344.7,78.149 +66714,346.36,79.226 +66715,348.08,80.3249 +66716,349.87,81.4465 +66717,343.42,78.135 +66718,345.05,79.237 +66719,346.74,80.361 +66720,348.51,81.5075 +66721,342.13,78.121 +66722,343.74,79.249 +66723,345.4,80.3968 +66724,347.14,81.5676 +66725,340.84,78.108 +66726,342.43,79.26 +66727,344.06,80.4324 +66728,345.77,81.6268 +66729,339.56,78.096 +66730,341.11,79.272 +66731,342.72,80.4676 +66732,344.4,81.6851 +66733,338.28,78.085 +66734,339.8,79.284 +66735,341.38,80.5025 +66736,343.03,81.7424 +66737,337,78.075 +66738,338.49,79.296 +66739,340.04,80.5371 +66740,341.66,81.7988 +66741,335.72,78.066 +66742,337.18,79.309 +66743,338.7,80.5714 +66744,340.28,81.8542 +66745,334.44,78.057 +66746,335.87,79.322 +66747,337.36,80.6053 +66748,338.91,81.9085 +66749,333.16,78.05 +66750,334.56,79.336 +66751,336.02,80.639 +66752,337.53,81.9619 +66753,331.88,78.044 +66754,333.25,79.349 +66755,334.67,80.6722 +66756,336.16,82.0142 +66757,330.6,78.039 +66758,331.94,79.363 +66759,333.33,80.7052 +66760,334.78,82.0655 +66761,329.33,78.035 +66762,330.63,79.378 +66763,331.99,80.7378 +66764,333.4,82.1158 +66765,328.05,78.032 +66766,329.32,79.393 +66767,330.64,80.77 +66768,332.02,82.1649 +66769,326.78,78.03 +66770,328.01,79.408 +66771,329.3,80.8019 +66772,330.64,82.213 +66773,325.51,78.029 +66774,326.71,79.424 +66775,327.95,80.8334 +66776,329.25,82.2599 +66777,324.24,78.03 +66778,325.4,79.44 +66779,326.61,80.8646 +66780,327.87,82.3058 +66781,322.97,78.031 +66782,324.09,79.456 +66783,325.26,80.8954 +66784,326.49,82.3505 +66785,321.7,78.034 +66786,322.78,79.473 +66787,323.92,80.9258 +66788,325.1,82.3941 +66789,320.43,78.038 +66790,321.48,79.49 +66791,322.57,80.9558 +66792,323.72,82.4365 +66793,319.16,78.043 +66794,320.17,79.507 +66795,321.22,80.9855 +66796,322.33,82.4778 +66797,317.89,78.049 +66798,318.86,79.525 +66799,319.88,81.0147 +66800,320.94,82.5179 +66801,316.62,78.056 +66802,317.55,79.543 +66803,318.53,81.0436 +66804,319.55,82.5568 +66805,315.36,78.064 +66806,316.25,79.562 +66807,317.18,81.0721 +66808,318.16,82.5946 +66809,314.09,78.074 +66810,314.94,79.581 +66811,315.84,81.1002 +66812,316.78,82.6312 +66813,312.83,78.085 +66814,313.64,79.601 +66815,314.49,81.1279 +66816,315.39,82.6666 +66817,311.56,78.097 +66818,312.33,79.621 +66819,313.14,81.1552 +66820,313.99,82.7007 +66821,310.3,78.111 +66822,311.02,79.641 +66823,311.79,81.1821 +66824,312.6,82.7337 +66825,309.03,78.125 +66826,309.72,79.662 +66827,310.44,81.2086 +66828,311.21,82.7654 +66829,307.77,78.141 +66830,308.41,79.683 +66831,309.09,81.2347 +66832,309.82,82.796 +66833,306.51,78.158 +66834,307.11,79.705 +66835,307.75,81.2603 +66836,308.43,82.8253 +66837,305.25,78.177 +66838,305.8,79.727 +66839,306.4,81.2856 +66840,307.03,82.8534 +66841,303.99,78.196 +66842,304.5,79.749 +66843,305.05,81.3105 +66844,305.64,82.8803 +66845,302.72,78.217 +66846,303.19,79.772 +66847,303.7,81.335 +66848,304.24,82.9059 +66849,301.46,78.239 +66850,301.89,79.795 +66851,302.35,81.359 +66852,302.85,82.9303 +66853,300.2,78.263 +66854,300.58,79.819 +66855,301,81.3826 +66856,301.45,82.9535 +66857,298.94,78.287 +66858,299.28,79.843 +66859,299.65,81.4059 +66860,300.06,82.9755 +66861,297.68,78.313 +66862,297.97,79.867 +66863,298.3,81.4287 +66864,298.66,82.9962 +66865,296.42,78.34 +66866,296.67,79.892 +66867,296.95,81.4511 +66868,297.27,83.0157 +66869,295.16,78.369 +66870,295.36,79.918 +66871,295.6,81.4731 +66872,295.87,83.034 +66873,293.9,78.399 +66874,294.06,79.944 +66875,294.25,81.4947 +66876,294.48,83.0511 +66877,292.64,78.43 +66878,292.76,79.97 +66879,292.9,81.5159 +66880,293.08,83.0669 +66881,291.38,78.462 +66882,291.45,79.997 +66883,291.55,81.5367 +66884,291.68,83.0815 +66885,290.12,78.496 +66886,290.15,80.0236 +66887,290.2,81.5571 +66888,290.29,83.095 +66889,288.87,78.53 +66890,288.84,80.0511 +66891,288.85,81.577 +66892,288.89,83.1072 +66893,287.61,78.566 +66894,287.54,80.079 +66895,287.5,81.5966 +66896,287.5,83.1182 +66897,286.35,78.604 +66898,286.23,80.1073 +66899,286.15,81.6158 +66900,286.1,83.128 +66901,285.09,78.642 +66902,284.93,80.136 +66903,284.8,81.6346 +66904,284.7,83.1367 +66905,283.83,78.682 +66906,283.62,80.1651 +66907,283.45,81.653 +66908,283.31,83.1442 +66909,282.57,78.723 +66910,282.32,80.1947 +66911,282.1,81.6709 +66912,281.91,83.1505 +66913,281.31,78.765 +66914,281.01,80.2246 +66915,280.75,81.6886 +66916,280.52,83.1556 +66917,280.05,78.809 +66918,279.71,80.2549 +66919,279.4,81.7058 +66920,279.12,83.1596 +66921,278.78,78.853 +66922,278.4,80.2857 +66923,278.05,81.7226 +66924,277.73,83.1625 +66925,277.52,78.899 +66926,277.1,80.3168 +66927,276.7,81.7391 +66928,276.33,83.1642 +66929,276.26,78.946 +66930,275.79,80.3483 +66931,275.35,81.7551 +66932,274.94,83.1648 +66933,275,78.994 +66934,274.49,80.3802 +66935,274,81.7708 +66936,273.55,83.1643 +66937,273.74,79.043 +66938,273.18,80.4125 +66939,272.65,81.7862 +66940,272.15,83.1627 +66941,272.48,79.094 +66942,271.87,80.4452 +66943,271.3,81.8012 +66944,270.76,83.1601 +66945,271.21,79.145 +66946,270.57,80.4782 +66947,269.95,81.8158 +66948,269.37,83.1563 +66949,269.95,79.198 +66950,269.26,80.5116 +66951,268.6,81.83 +66952,267.98,83.1515 +66953,268.68,79.252 +66954,267.95,80.5454 +66955,267.25,81.844 +66956,266.59,83.1457 +66957,267.42,79.306 +66958,266.65,80.5795 +66959,265.91,81.8575 +66960,265.2,83.1388 +66961,266.15,79.362 +66962,265.34,80.614 +66963,264.56,81.8708 +66964,263.81,83.131 +66965,264.89,79.419 +66966,264.03,80.6488 +66967,263.21,81.8836 +66968,262.42,83.1221 +66969,263.62,79.477 +66970,262.72,80.6839 +66971,261.86,81.8962 +66972,261.03,83.1123 +66973,262.35,79.536 +66974,261.42,80.7194 +66975,260.51,81.9085 +66976,259.64,83.1015 +66977,261.09,79.596 +66978,260.11,80.7553 +66979,259.16,81.9204 +66980,258.25,83.0898 +66981,259.82,79.657 +66982,258.8,80.7914 +66983,257.82,81.932 +66984,256.87,83.0771 +66985,258.55,79.719 +66986,257.49,80.8279 +66987,256.47,81.9433 +66988,255.48,83.0635 +66989,257.28,79.782 +66990,256.18,80.8647 +66991,255.12,81.9543 +66992,254.1,83.0491 +66993,256,79.846 +66994,254.87,80.9017 +66995,253.78,81.9651 +66996,252.71,83.0338 +66997,254.73,79.91 +66998,253.56,80.9391 +66999,252.43,81.9755 +67000,251.33,83.0176 +67001,253.46,79.976 +67002,252.25,80.9768 +67003,251.08,81.9857 +67004,249.95,83.0006 +67005,252.18,80.0424 +67006,250.94,81.0147 +67007,249.74,81.9955 +67008,248.57,82.9828 +67009,250.91,80.1096 +67010,249.63,81.053 +67011,248.39,82.0052 +67012,247.19,82.9642 +67013,249.63,80.1776 +67014,248.32,81.0914 +67015,247.05,82.0145 +67016,245.81,82.9449 +67017,248.36,80.2464 +67018,247.01,81.1302 +67019,245.7,82.0237 +67020,244.43,82.9248 +67021,247.08,80.316 +67022,245.7,81.1692 +67023,244.36,82.0325 +67024,243.05,82.904 +67025,245.8,80.3863 +67026,244.39,81.2084 +67027,243.01,82.0412 +67028,241.67,82.8825 +67029,244.52,80.4573 +67030,243.07,81.2479 +67031,241.67,82.0496 +67032,240.3,82.8603 +67033,243.24,80.529 +67034,241.76,81.2876 +67035,240.32,82.0578 +67036,238.93,82.8375 +67037,241.95,80.6013 +67038,240.45,81.3275 +67039,238.98,82.0658 +67040,237.55,82.814 +67041,240.67,80.6743 +67042,239.13,81.3677 +67043,237.64,82.0736 +67044,236.18,82.7899 +67045,239.38,80.7479 +67046,237.82,81.408 +67047,236.29,82.0812 +67048,234.81,82.7653 +67049,238.1,80.8221 +67050,236.5,81.4485 +67051,234.95,82.0886 +67052,233.44,82.7401 +67053,236.81,80.8968 +67054,235.19,81.4893 +67055,233.61,82.0958 +67056,232.07,82.7144 +67057,235.52,80.9721 +67058,233.87,81.5301 +67059,232.27,82.1029 +67060,230.71,82.6881 +67061,234.23,81.0479 +67062,232.56,81.5712 +67063,230.93,82.1098 +67064,229.34,82.6614 +67065,232.94,81.1241 +67066,231.24,81.6124 +67067,229.59,82.1166 +67068,227.97,82.6343 +67069,231.65,81.2007 +67070,229.92,81.6538 +67071,228.24,82.1232 +67072,226.61,82.6067 +67073,230.35,81.2778 +67074,228.61,81.6953 +67075,226.9,82.1296 +67076,225.25,82.5787 +67077,229.06,81.3553 +67078,227.29,81.7369 +67079,225.57,82.136 +67080,223.89,82.5503 +67081,227.76,81.4331 +67082,225.97,81.7786 +67083,224.23,82.1423 +67084,222.53,82.5216 +67085,226.46,81.5113 +67086,224.65,81.8205 +67087,222.89,82.1484 +67088,221.17,82.4926 +67089,225.16,81.5897 +67090,223.33,81.8624 +67091,221.55,82.1544 +67092,219.81,82.4632 +67093,223.86,81.6684 +67094,222.01,81.9045 +67095,220.21,82.1604 +67096,218.46,82.4336 +67097,222.56,81.7474 +67098,220.69,81.9466 +67099,218.87,82.1663 +67100,217.1,82.4038 +67101,221.26,81.8265 +67102,219.37,81.9888 +67103,217.54,82.1721 +67104,215.75,82.3737 +67105,219.95,81.9059 +67106,218.05,82.0311 +67107,216.2,82.1778 +67108,214.4,82.3435 +67109,218.64,81.9854 +67110,216.73,82.0734 +67111,214.86,82.1835 +67112,213.05,82.3131 +67113,217.34,82.065 +67114,215.4,82.1158 +67115,213.53,82.1892 +67116,211.7,82.2826 +67117,216.03,82.1447 +67118,214.08,82.1582 +67119,212.19,82.1948 +67120,210.35,82.252 +67121,214.71,82.2245 +67122,212.76,82.2006 +67123,210.86,82.2004 +67124,209.01,82.2213 +67125,213.4,82.3042 +67126,211.43,82.243 +67127,209.52,82.206 +67128,207.66,82.1906 +67129,212.09,82.384 +67130,210.11,82.2854 +67131,208.19,82.2116 +67132,206.32,82.1598 +67133,210.77,82.4638 +67134,208.78,82.3279 +67135,206.85,82.2172 +67136,204.98,82.1291 +67137,209.45,82.5435 +67138,207.46,82.3703 +67139,205.52,82.2228 +67140,203.64,82.0984 +67141,208.13,82.6231 +67142,206.13,82.4126 +67143,204.19,82.2285 +67144,202.3,82.0677 +67145,206.81,82.7025 +67146,204.81,82.455 +67147,202.86,82.2342 +67148,200.96,82.0372 +67149,205.49,82.7819 +67150,203.48,82.4973 +67151,201.53,82.2399 +67152,199.63,82.0068 +67153,204.17,82.861 +67154,202.15,82.5395 +67155,200.19,82.2457 +67156,198.29,81.9766 +67157,202.84,82.9399 +67158,200.82,82.5817 +67159,198.86,82.2516 +67160,196.96,81.9465 +67161,201.52,83.0186 +67162,199.49,82.6238 +67163,197.53,82.2575 +67164,195.63,81.9166 +67165,200.19,83.097 +67166,198.16,82.6658 +67167,196.2,82.2635 +67168,194.3,81.887 +67169,198.86,83.1751 +67170,196.83,82.7077 +67171,194.87,82.2696 +67172,192.97,81.8576 +67173,197.53,83.2529 +67174,195.5,82.7495 +67175,193.54,82.2758 +67176,191.64,81.8286 +67177,196.19,83.3303 +67178,194.17,82.7912 +67179,192.22,82.2821 +67180,190.32,81.7998 +67181,194.86,83.4074 +67182,192.84,82.8328 +67183,190.89,82.2886 +67184,188.99,81.7714 +67185,193.52,83.484 +67186,191.51,82.8742 +67187,189.56,82.2951 +67188,187.67,81.7434 +67189,192.19,83.5601 +67190,190.18,82.9155 +67191,188.23,82.3018 +67192,186.35,81.7158 +67193,190.85,83.6358 +67194,188.84,82.9567 +67195,186.91,82.3087 +67196,185.03,81.6886 +67197,189.51,83.711 +67198,187.51,82.9977 +67199,185.58,82.3157 +67200,183.71,81.6619 +67201,188.16,83.7856 +67202,186.18,83.0385 +67203,184.26,82.3229 +67204,182.39,81.6356 +67205,186.82,83.8597 +67206,184.84,83.0791 +67207,182.93,82.3303 +67208,181.08,81.6099 +67209,185.47,83.9332 +67210,183.51,83.1196 +67211,181.61,82.3378 +67212,179.76,81.5847 +67213,184.13,84.0061 +67214,182.17,83.1598 +67215,180.28,82.3456 +67216,178.45,81.5601 +67217,182.78,84.0784 +67218,180.83,83.1998 +67219,178.96,82.3535 +67220,177.14,81.536 +67221,181.43,84.15 +67222,179.5,83.2397 +67223,177.63,82.3617 +67224,175.83,81.5126 +67225,180.08,84.2209 +67226,178.16,83.2793 +67227,176.31,82.37 +67228,174.52,81.4898 +67229,178.72,84.2911 +67230,176.82,83.3186 +67231,174.99,82.3786 +67232,173.21,81.4677 +67233,177.37,84.3605 +67234,175.48,83.3578 +67235,173.67,82.3875 +67236,171.91,81.4463 +67237,176.01,84.4292 +67238,174.14,83.3966 +67239,172.34,82.3965 +67240,170.6,81.4256 +67241,174.66,84.4971 +67242,172.81,83.4353 +67243,171.02,82.4059 +67244,169.3,81.4056 +67245,173.3,84.5642 +67246,171.47,83.4736 +67247,169.7,82.4155 +67248,167.99,81.3864 +67249,171.94,84.6304 +67250,170.13,83.5117 +67251,168.38,82.4253 +67252,166.69,81.368 +67253,170.58,84.6958 +67254,168.78,83.5495 +67255,167.06,82.4355 +67256,165.39,81.3503 +67257,169.21,84.7603 +67258,167.44,83.587 +67259,165.74,82.4459 +67260,164.1,81.3336 +67261,167.85,84.8239 +67262,166.1,83.6242 +67263,164.42,82.4566 +67264,162.8,81.3176 +67265,166.48,84.8865 +67266,164.76,83.6611 +67267,163.1,82.4676 +67268,161.5,81.3026 +67269,165.12,84.9482 +67270,163.42,83.6978 +67271,161.78,82.4789 +67272,160.21,81.2884 +67273,163.75,85.009 +67274,162.07,83.734 +67275,160.46,82.4905 +67276,158.91,81.2752 +67277,162.38,85.0688 +67278,160.73,83.77 +67279,159.15,82.5024 +67280,157.62,81.2628 +67281,161.01,85.1275 +67282,159.39,83.8057 +67283,157.83,82.5147 +67284,156.33,81.2515 +67285,159.64,85.1853 +67286,158.04,83.841 +67287,156.51,82.5273 +67288,155.04,81.2411 +67289,158.26,85.242 +67290,156.7,83.8759 +67291,155.2,82.5402 +67292,153.75,81.2318 +67293,156.89,85.2976 +67294,155.35,83.9105 +67295,153.88,82.5534 +67296,152.46,81.2234 +67297,155.51,85.3522 +67298,154.01,83.9448 +67299,152.56,82.567 +67300,151.17,81.2161 +67301,154.14,85.4057 +67302,152.66,83.9787 +67303,151.25,82.581 +67304,149.89,81.2098 +67305,152.76,85.458 +67306,151.31,84.0122 +67307,149.93,82.5953 +67308,148.6,81.2046 +67309,151.38,85.5093 +67310,149.97,84.0454 +67311,148.62,82.61 +67312,147.32,81.2005 +67313,150,85.5594 +67314,148.62,84.0782 +67315,147.3,82.6251 +67316,146.03,81.1975 +67317,148.62,85.6083 +67318,147.27,84.1106 +67319,145.99,82.6405 +67320,144.75,81.1956 +67321,147.24,85.6561 +67322,145.93,84.1426 +67323,144.67,82.6563 +67324,143.47,81.1948 +67325,145.86,85.7027 +67326,144.58,84.1743 +67327,143.36,82.6725 +67328,142.19,81.1951 +67329,144.47,85.7482 +67330,143.23,84.2055 +67331,142.04,82.6891 +67332,140.91,81.1967 +67333,143.09,85.7924 +67334,141.88,84.2363 +67335,140.73,82.7061 +67336,139.63,81.1994 +67337,141.7,85.8354 +67338,140.53,84.2668 +67339,139.42,82.7234 +67340,138.35,81.2033 +67341,140.31,85.8772 +67342,139.18,84.2968 +67343,138.1,82.7412 +67344,137.07,81.2084 +67345,138.93,85.9177 +67346,137.83,84.3264 +67347,136.79,82.7594 +67348,135.8,81.2146 +67349,137.54,85.9571 +67350,136.48,84.3557 +67351,135.48,82.778 +67352,134.52,81.2222 +67353,136.15,85.9951 +67354,135.13,84.3845 +67355,134.16,82.797 +67356,133.24,81.2309 +67357,134.76,86.032 +67358,133.78,84.4128 +67359,132.85,82.8164 +67360,131.97,81.2409 +67361,133.37,86.0675 +67362,132.43,84.4408 +67363,131.54,82.8362 +67364,130.69,81.2521 +67365,131.98,86.1018 +67366,131.08,84.4683 +67367,130.23,82.8564 +67368,129.42,81.2646 +67369,130.59,86.1348 +67370,129.73,84.4955 +67371,128.92,82.8771 +67372,128.15,81.2783 +67373,129.2,86.1665 +67374,128.38,84.5221 +67375,127.6,82.8981 +67376,126.88,81.2933 +67377,127.8,86.197 +67378,127.02,84.5484 +67379,126.29,82.9196 +67380,125.6,81.3096 +67381,126.41,86.2262 +67382,125.67,84.5742 +67383,124.98,82.9416 +67384,124.33,81.3272 +67385,125.02,86.2541 +67386,124.32,84.5996 +67387,123.67,82.9639 +67388,123.06,81.346 +67389,123.62,86.2806 +67390,122.97,84.6246 +67391,122.36,82.9867 +67392,121.79,81.3662 +67393,122.23,86.3059 +67394,121.61,84.6491 +67395,121.05,83.0099 +67396,120.52,81.3876 +67397,120.83,86.3299 +67398,120.26,84.6732 +67399,119.74,83.0336 +67400,119.25,81.4103 +67401,119.43,86.3527 +67402,118.91,84.6969 +67403,118.43,83.0576 +67404,117.98,81.4344 +67405,118.04,86.3741 +67406,117.56,84.7201 +67407,117.11,83.0821 +67408,116.71,81.4597 +67409,116.64,86.3942 +67410,116.2,84.7429 +67411,115.8,83.1071 +67412,115.44,81.4863 +67413,115.25,86.413 +67414,114.85,84.7653 +67415,114.49,83.1324 +67416,114.17,81.5143 +67417,113.85,86.4306 +67418,113.5,84.7872 +67419,113.18,83.1582 +67420,112.9,81.5435 +67421,112.45,86.4469 +67422,112.14,84.8087 +67423,111.87,83.1844 +67424,111.64,81.574 +67425,111.06,86.4619 +67426,110.79,84.8298 +67427,110.56,83.2111 +67428,110.37,81.6059 +67429,109.66,86.4756 +67430,109.44,84.8504 +67431,109.25,83.2382 +67432,109.1,81.639 +67433,108.26,86.488 +67434,108.08,84.8706 +67435,107.94,83.2657 +67436,107.83,81.6734 +67437,106.86,86.4992 +67438,106.73,84.8904 +67439,106.63,83.2936 +67440,106.56,81.7091 +67441,105.47,86.5092 +67442,105.37,84.9098 +67443,105.32,83.3219 +67444,105.29,81.7461 +67445,104.07,86.5178 +67446,104.02,84.9287 +67447,104.01,83.3507 +67448,104.03,81.7843 +67449,102.67,86.5253 +67450,102.67,84.9472 +67451,102.7,83.3799 +67452,102.76,81.8238 +67453,101.27,86.5315 +67454,101.31,84.9653 +67455,101.39,83.4095 +67456,101.49,81.8646 +67457,99.876,86.5364 +67458,99.959,84.983 +67459,100.07,83.4395 +67460,100.22,81.9067 +67461,98.478,86.5402 +67462,98.606,85.0003 +67463,98.764,83.4699 +67464,98.952,81.95 +67465,97.081,86.5428 +67466,97.252,85.0171 +67467,97.453,83.5007 +67468,97.683,81.9945 +67469,95.685,86.5441 +67470,95.898,85.0336 +67471,96.141,83.5319 +67472,96.414,82.0402 +67473,94.288,86.5443 +67474,94.544,85.0496 +67475,94.83,83.5636 +67476,95.144,82.0872 +67477,92.892,86.5433 +67478,93.191,85.0653 +67479,93.519,83.5956 +67480,93.875,82.1354 +67481,91.496,86.5412 +67482,91.837,85.0805 +67483,92.207,83.628 +67484,92.605,82.1848 +67485,90.1,86.5379 +67486,90.484,85.0954 +67487,90.895,83.6608 +67488,91.334,82.2353 +67489,88.705,86.5335 +67490,89.13,85.1099 +67491,89.583,83.694 +67492,90.064,82.2871 +67493,87.31,86.5279 +67494,87.777,85.124 +67495,88.271,83.7275 +67496,88.792,82.34 +67497,85.916,86.5213 +67498,86.424,85.1377 +67499,86.959,83.7615 +67500,87.521,82.394 +67501,84.522,86.5136 +67502,85.07,85.151 +67503,85.646,83.7958 +67504,86.249,82.4491 +67505,83.128,86.5048 +67506,83.717,85.164 +67507,84.334,83.8304 +67508,84.976,82.5054 +67509,81.735,86.4949 +67510,82.365,85.1767 +67511,83.021,83.8655 +67512,83.703,82.5628 +67513,80.343,86.4841 +67514,81.012,85.1889 +67515,81.708,83.9008 +67516,82.429,82.6212 +67517,78.951,86.4721 +67518,79.659,85.2009 +67519,80.394,83.9365 +67520,81.155,82.6807 +67521,77.56,86.4592 +67522,78.307,85.2124 +67523,79.081,83.9726 +67524,79.88,82.7413 +67525,76.169,86.4454 +67526,76.955,85.2237 +67527,77.767,84.009 +67528,78.604,82.8029 +67529,74.779,86.4305 +67530,75.603,85.2346 +67531,76.453,84.0457 +67532,77.328,82.8655 +67533,73.39,86.4147 +67534,74.251,85.2452 +67535,75.138,84.0827 +67536,76.051,82.929 +67537,72.002,86.398 +67538,72.9,85.2554 +67539,73.824,84.1201 +67540,74.774,82.9936 +67541,70.614,86.3804 +67542,71.548,85.2654 +67543,72.509,84.1577 +67544,73.495,83.059 +67545,69.227,86.3619 +67546,70.197,85.2751 +67547,71.193,84.1957 +67548,72.216,83.1255 +67549,67.841,86.3425 +67550,68.846,85.2844 +67551,69.878,84.2339 +67552,70.936,83.1928 +67553,66.455,86.3223 +67554,67.496,85.2935 +67555,68.562,84.2724 +67556,69.655,83.261 +67557,65.071,86.3013 +67558,66.145,85.3023 +67559,67.246,84.3113 +67560,68.373,83.33 +67561,63.688,86.2794 +67562,64.795,85.3108 +67563,65.929,84.3503 +67564,67.09,83.3999 +67565,62.305,86.2569 +67566,63.445,85.319 +67567,64.613,84.3897 +67568,65.807,83.4706 +67569,60.923,86.2335 +67570,62.096,85.327 +67571,63.295,84.4292 +67572,64.522,83.5421 +67573,59.542,86.2095 +67574,60.746,85.3347 +67575,61.978,84.4691 +67576,63.236,83.6143 +67577,58.163,86.1847 +67578,59.397,85.3422 +67579,60.66,84.5091 +67580,61.95,83.6873 +67581,56.784,86.1592 +67582,58.049,85.3495 +67583,59.341,84.5494 +67584,60.662,83.761 +67585,55.406,86.1332 +67586,56.7,85.3565 +67587,58.023,84.5899 +67588,59.374,83.8353 +67589,54.03,86.1064 +67590,55.352,85.3633 +67591,56.704,84.6307 +67592,58.084,83.9104 +67593,52.654,86.0791 +67594,54.005,85.3699 +67595,55.384,84.6716 +67596,56.793,83.986 +67597,51.279,86.0512 +67598,52.657,85.3763 +67599,54.064,84.7127 +67600,55.501,84.0623 +67601,49.906,86.0228 +67602,51.31,85.3825 +67603,52.744,84.754 +67604,54.208,84.1391 +67605,48.534,85.9938 +67606,49.963,85.3885 +67607,51.423,84.7955 +67608,52.914,84.2165 +67609,47.162,85.9643 +67610,48.617,85.3944 +67611,50.102,84.8371 +67612,51.619,84.2944 +67613,45.792,85.9344 +67614,47.271,85.4001 +67615,48.781,84.8789 +67616,50.322,84.3728 +67617,44.424,85.904 +67618,45.925,85.4056 +67619,47.459,84.9208 +67620,49.024,84.4517 +67621,43.056,85.8732 +67622,44.58,85.411 +67623,46.136,84.9629 +67624,47.725,84.5309 +67625,41.689,85.842 +67626,43.235,85.4162 +67627,44.813,85.0051 +67628,46.425,84.6106 +67629,40.324,85.8105 +67630,41.89,85.4214 +67631,43.49,85.0474 +67632,45.124,84.6907 +67633,38.96,85.7786 +67634,40.546,85.4264 +67635,42.166,85.0899 +67636,43.821,84.7711 +67637,37.597,85.7464 +67638,39.203,85.4313 +67639,40.842,85.1324 +67640,42.517,84.8518 +67641,36.236,85.714 +67642,37.859,85.4361 +67643,39.517,85.175 +67644,41.211,84.9328 +67645,34.876,85.6813 +67646,36.516,85.4408 +67647,38.192,85.2177 +67648,39.905,85.0141 +67649,33.517,85.6483 +67650,35.174,85.4454 +67651,36.866,85.2604 +67652,38.596,85.0956 +67653,32.159,85.6152 +67654,33.831,85.4499 +67655,35.54,85.3032 +67656,37.287,85.1773 +67657,30.803,85.5819 +67658,32.49,85.4544 +67659,34.214,85.3461 +67660,35.976,85.2591 +67661,29.448,85.5485 +67662,31.148,85.4589 +67663,32.886,85.389 +67664,34.664,85.3411 +67665,28.094,85.515 +67666,29.807,85.4633 +67667,31.559,85.4319 +67668,33.351,85.4231 +67669,26.742,85.4814 +67670,28.467,85.4676 +67671,30.231,85.4748 +67672,32.036,85.5052 +67673,25.391,85.4478 +67674,27.127,85.472 +67675,28.902,85.5177 +67676,30.719,85.5874 +67677,24.041,85.4141 +67678,25.787,85.4763 +67679,27.573,85.5606 +67680,29.401,85.6695 +67681,22.693,85.3805 +67682,24.448,85.4806 +67683,26.243,85.6036 +67684,28.082,85.7517 +67685,21.346,85.3469 +67686,23.109,85.485 +67687,24.913,85.6464 +67688,26.762,85.8337 +67689,20,85.3133 +67690,21.77,85.4894 +67691,23.582,85.6893 +67692,25.44,85.9157 +67693,18.656,85.2799 +67694,20.432,85.4937 +67695,22.251,85.7321 +67696,24.116,85.9976 +67697,17.313,85.2466 +67698,19.095,85.4982 +67699,20.92,85.7748 +67700,22.791,86.0793 +67701,15.971,85.2134 +67702,17.758,85.5026 +67703,19.588,85.8175 +67704,21.465,86.1608 +67705,14.631,85.1804 +67706,16.421,85.5072 +67707,18.255,85.8601 +67708,20.137,86.2421 +67709,13.292,85.1477 +67710,15.085,85.5118 +67711,16.922,85.9026 +67712,18.807,86.3231 +67713,11.955,85.1151 +67714,13.749,85.5165 +67715,15.588,85.945 +67716,17.476,86.4039 +67717,10.619,85.0829 +67718,12.413,85.5212 +67719,14.254,85.9874 +67720,16.144,86.4843 +67721,9.2838,85.051 +67722,11.078,85.5261 +67723,12.919,86.0295 +67724,14.81,86.5644 +67725,7.9505,85.0193 +67726,9.7438,85.531 +67727,11.584,86.0716 +67728,13.475,86.6442 +67729,6.6184,84.9881 +67730,8.4097,85.5361 +67731,10.248,86.1135 +67732,12.138,86.7235 +67733,5.2878,84.9572 +67734,7.076,85.5413 +67735,8.9116,86.1553 +67736,10.8,86.8024 +67737,3.9585,84.9267 +67738,5.7428,85.5467 +67739,7.5747,86.1969 +67740,9.4602,86.8808 +67741,2.6306,84.8967 +67742,4.4099,85.5522 +67743,6.2374,86.2384 +67744,8.119,86.9588 +67745,1.3039,84.8672 +67746,3.0775,85.5578 +67747,4.8996,86.2796 +67748,6.7764,87.0362 +67749,359.98,84.8381 +67750,1.7455,85.5636 +67751,3.5612,86.3207 +67752,5.4322,87.113 +67753,358.65,84.8096 +67754,0.41398,85.5696 +67755,2.2224,86.3616 +67756,4.0867,87.1893 +67757,357.33,84.7816 +67758,359.08,85.5757 +67759,0.88304,86.4023 +67760,2.7396,87.265 +67761,356.01,84.7542 +67762,357.75,85.5821 +67763,359.54,86.4428 +67764,1.3912,87.34 +67765,354.69,84.7274 +67766,356.42,85.5886 +67767,358.2,86.483 +67768,0.041247,87.4144 +67769,353.37,84.7012 +67770,355.09,85.5954 +67771,356.86,86.523 +67772,358.69,87.488 +67773,352.05,84.6757 +67774,353.76,85.6023 +67775,355.52,86.5628 +67776,357.34,87.5609 +67777,350.74,84.6508 +67778,352.43,85.6095 +67779,354.18,86.6023 +67780,355.98,87.6331 +67781,349.42,84.6267 +67782,351.1,85.6169 +67783,352.84,86.6415 +67784,354.63,87.7045 +67785,348.11,84.6033 +67786,349.78,85.6246 +67787,351.49,86.6805 +67788,353.27,87.7751 +67789,346.8,84.5806 +67790,348.45,85.6325 +67791,350.15,86.7192 +67792,351.91,87.8449 +67793,345.49,84.5588 +67794,347.12,85.6407 +67795,348.81,86.7576 +67796,350.55,87.9138 +67797,344.18,84.5377 +67798,345.79,85.6491 +67799,347.46,86.7958 +67800,349.19,87.9819 +67801,342.87,84.5175 +67802,344.47,85.6579 +67803,346.12,86.8336 +67804,347.83,88.049 +67805,341.56,84.4981 +67806,343.14,85.6668 +67807,344.77,86.8711 +67808,346.46,88.1152 +67809,340.25,84.4795 +67810,341.81,85.6761 +67811,343.43,86.9083 +67812,345.1,88.1804 +67813,338.95,84.4619 +67814,340.49,85.6857 +67815,342.08,86.9452 +67816,343.73,88.2447 +67817,337.64,84.4452 +67818,339.16,85.6956 +67819,340.73,86.9817 +67820,342.37,88.308 +67821,336.34,84.4294 +67822,337.84,85.7058 +67823,339.39,87.0179 +67824,341,88.3703 +67825,335.04,84.4146 +67826,336.51,85.7163 +67827,338.04,87.0538 +67828,339.63,88.4315 +67829,333.74,84.4008 +67830,335.19,85.7271 +67831,336.69,87.0893 +67832,338.26,88.4916 +67833,332.44,84.388 +67834,333.87,85.7383 +67835,335.34,87.1244 +67836,336.88,88.5507 +67837,331.14,84.3761 +67838,332.54,85.7498 +67839,334,87.1592 +67840,335.51,88.6087 +67841,329.84,84.3654 +67842,331.22,85.7616 +67843,332.65,87.1935 +67844,334.13,88.6655 +67845,328.55,84.3557 +67846,329.9,85.7738 +67847,331.3,87.2276 +67848,332.76,88.7213 +67849,327.25,84.347 +67850,328.57,85.7864 +67851,329.95,87.2612 +67852,331.38,88.7758 +67853,325.96,84.3395 +67854,327.25,85.7993 +67855,328.6,87.2944 +67856,330,88.8292 +67857,324.66,84.333 +67858,325.93,85.8125 +67859,327.25,87.3272 +67860,328.62,88.8814 +67861,323.37,84.3277 +67862,324.61,85.8262 +67863,325.9,87.3597 +67864,327.24,88.9324 +67865,322.08,84.3235 +67866,323.29,85.8402 +67867,324.54,87.3917 +67868,325.86,88.9822 +67869,320.79,84.3205 +67870,321.96,85.8546 +67871,323.19,87.4233 +67872,324.48,89.0307 +67873,319.49,84.3186 +67874,320.64,85.8694 +67875,321.84,87.4545 +67876,323.09,89.07799 +67877,318.21,84.318 +67878,319.32,85.8846 +67879,320.49,87.4853 +67880,321.71,89.12401 +67881,316.92,84.3185 +67882,318,85.9002 +67883,319.13,87.5156 +67884,320.32,89.16876 +67885,315.63,84.3202 +67886,316.68,85.9161 +67887,317.78,87.5455 +67888,318.94,89.21222 +67889,314.34,84.3232 +67890,315.36,85.9325 +67891,316.43,87.575 +67892,317.55,89.25439 +67893,313.05,84.3274 +67894,314.04,85.9493 +67895,315.07,87.604 +67896,316.16,89.29525 +67897,311.77,84.3328 +67898,312.72,85.9665 +67899,313.72,87.6326 +67900,314.77,89.33479 +67901,310.48,84.3395 +67902,311.4,85.9841 +67903,312.37,87.6607 +67904,313.38,89.373 +67905,309.2,84.3475 +67906,310.08,86.0021 +67907,311.01,87.6884 +67908,311.99,89.40988 +67909,307.92,84.3568 +67910,308.76,86.0206 +67911,309.66,87.7157 +67912,310.6,89.44542 +67913,306.63,84.3673 +67914,307.44,86.0394 +67915,308.3,87.7425 +67916,309.21,89.4796 +67917,305.35,84.3791 +67918,306.13,86.0587 +67919,306.95,87.7688 +67920,307.82,89.51243 +67921,304.07,84.3922 +67922,304.81,86.0785 +67923,305.59,87.7947 +67924,306.43,89.54391 +67925,302.79,84.4067 +67926,303.49,86.0986 +67927,304.24,87.8201 +67928,305.03,89.57401 +67929,301.5,84.4224 +67930,302.17,86.1192 +67931,302.88,87.845 +67932,303.64,89.60275 +67933,300.22,84.4395 +67934,300.85,86.1402 +67935,301.52,87.8695 +67936,302.24,89.63011 +67937,298.94,84.4578 +67938,299.53,86.1616 +67939,300.17,87.8935 +67940,300.85,89.6561 +67941,297.66,84.4776 +67942,298.22,86.1835 +67943,298.81,87.9171 +67944,299.45,89.68071 +67945,296.38,84.4986 +67946,296.9,86.2058 +67947,297.45,87.9402 +67948,298.05,89.70394 +67949,295.1,84.5209 +67950,295.58,86.2286 +67951,296.1,87.9628 +67952,296.66,89.7258 +67953,293.82,84.5446 +67954,294.26,86.2517 +67955,294.74,87.9849 +67956,295.26,89.74628 +67957,292.55,84.5697 +67958,292.95,86.2753 +67959,293.38,88.0066 +67960,293.86,89.76538 +67961,291.27,84.596 +67962,291.63,86.2994 +67963,292.03,88.0278 +67964,292.47,89.78311 +67965,289.99,84.6237 +67966,290.31,86.3239 +67967,290.67,88.0486 +67968,291.07,89.79946 +67969,288.71,84.6528 +67970,288.99,86.3488 +67971,289.31,88.0688 +67972,289.67,89.81445 +67973,287.43,84.6831 +67974,287.67,86.3741 +67975,287.95,88.0887 +67976,288.27,89.82807 +67977,286.15,84.7148 +67978,286.36,86.3999 +67979,286.59,88.108 +67980,286.87,89.84033 +67981,284.88,84.7479 +67982,285.04,86.4261 +67983,285.24,88.1269 +67984,285.47,89.85124 +67985,283.6,84.7822 +67986,283.72,86.4528 +67987,283.88,88.1453 +67988,284.07,89.86079 +67989,282.32,84.8179 +67990,282.4,86.4799 +67991,282.52,88.1633 +67992,282.67,89.86901 +67993,281.04,84.8548 +67994,281.09,86.5074 +67995,281.16,88.1808 +67996,281.27,89.87589 +67997,279.76,84.8931 +67998,279.77,86.5353 +67999,279.81,88.1979 +68000,279.88,89.88145 +68001,278.49,84.9327 +68002,278.45,86.5636 +68003,278.45,88.2145 +68004,278.48,89.88568 +68005,277.21,84.9735 +68006,277.13,86.5924 +68007,277.09,88.2306 +68008,277.08,89.88861 +68009,275.93,85.0157 +68010,275.82,86.6216 +68011,275.73,88.2463 +68012,275.68,89.89024 +68013,274.65,85.0591 +68014,274.5,86.6511 +68015,274.37,88.2616 +68016,274.28,89.89059 +68017,273.37,85.1038 +68018,273.18,86.6811 +68019,273.01,88.2764 +68020,272.88,89.88966 +68021,272.09,85.1498 +68022,271.86,86.7115 +68023,271.66,88.2908 +68024,271.48,89.88746 +68025,270.82,85.197 +68026,270.54,86.7423 +68027,270.3,88.3047 +68028,270.08,89.88402 +68029,269.54,85.2454 +68030,269.23,86.7735 +68031,268.94,88.3183 +68032,268.68,89.87934 +68033,268.26,85.2951 +68034,267.91,86.8051 +68035,267.58,88.3314 +68036,267.29,89.87343 +68037,266.98,85.346 +68038,266.59,86.8371 +68039,266.22,88.344 +68040,265.89,89.86632 +68041,265.7,85.398 +68042,265.27,86.8695 +68043,264.87,88.3563 +68044,264.49,89.85801 +68045,264.42,85.4513 +68046,263.95,86.9022 +68047,263.51,88.3682 +68048,263.09,89.84852 +68049,263.14,85.5057 +68050,262.63,86.9353 +68051,262.15,88.3796 +68052,261.7,89.83787 +68053,261.85,85.5613 +68054,261.31,86.9688 +68055,260.79,88.3907 +68056,260.3,89.82608 +68057,260.57,85.618 +68058,259.99,87.0026 +68059,259.44,88.4013 +68060,258.9,89.81316 +68061,259.29,85.6758 +68062,258.67,87.0368 +68063,258.08,88.4116 +68064,257.51,89.79913 +68065,258.01,85.7347 +68066,257.35,87.0714 +68067,256.72,88.4215 +68068,256.11,89.78401 +68069,256.72,85.7947 +68070,256.03,87.1063 +68071,255.36,88.431 +68072,254.72,89.76782 +68073,255.44,85.8558 +68074,254.71,87.1415 +68075,254.01,88.4401 +68076,253.33,89.75057 +68077,254.15,85.918 +68078,253.39,87.1771 +68079,252.65,88.4489 +68080,251.93,89.7323 +68081,252.87,85.9811 +68082,252.07,87.213 +68083,251.29,88.4574 +68084,250.54,89.71301 +68085,251.58,86.0453 +68086,250.75,87.2492 +68087,249.94,88.4654 +68088,249.15,89.69273 +68089,250.29,86.1104 +68090,249.43,87.2857 +68091,248.58,88.4732 +68092,247.76,89.67148 +68093,249.01,86.1766 +68094,248.11,87.3225 +68095,247.23,88.4805 +68096,246.37,89.64929 +68097,247.72,86.2436 +68098,246.78,87.3596 +68099,245.87,88.4876 +68100,244.98,89.62617 +68101,246.43,86.3116 +68102,245.46,87.397 +68103,244.51,88.4944 +68104,243.59,89.60215 +68105,245.14,86.3805 +68106,244.14,87.4347 +68107,243.16,88.5008 +68108,242.2,89.57725 +68109,243.85,86.4503 +68110,242.82,87.4727 +68111,241.8,88.5069 +68112,240.81,89.5515 +68113,242.56,86.5209 +68114,241.49,87.5109 +68115,240.45,88.5127 +68116,239.43,89.52491 +68117,241.26,86.5923 +68118,240.17,87.5494 +68119,239.1,88.5183 +68120,238.04,89.49752 +68121,239.97,86.6646 +68122,238.85,87.5881 +68123,237.74,88.5235 +68124,236.65,89.46935 +68125,238.68,86.7376 +68126,237.52,87.6271 +68127,236.39,88.5285 +68128,235.27,89.44043 +68129,237.38,86.8113 +68130,236.2,87.6663 +68131,235.03,88.5333 +68132,233.89,89.41077 +68133,236.09,86.8858 +68134,234.87,87.7057 +68135,233.68,88.5377 +68136,232.51,89.38041 +68137,234.79,86.961 +68138,233.55,87.7453 +68139,232.33,88.5419 +68140,231.12,89.34938 +68141,233.49,87.0369 +68142,232.22,87.7851 +68143,230.97,88.5459 +68144,229.74,89.31769 +68145,232.19,87.1134 +68146,230.9,87.8252 +68147,229.62,88.5497 +68148,228.37,89.28538 +68149,230.89,87.1905 +68150,229.57,87.8654 +68151,228.27,88.5532 +68152,226.99,89.25247 +68153,229.59,87.2682 +68154,228.24,87.9058 +68155,226.92,88.5565 +68156,225.61,89.21899 +68157,228.29,87.3465 +68158,226.92,87.9463 +68159,225.56,88.5596 +68160,224.23,89.18497 +68161,226.98,87.4253 +68162,225.59,87.987 +68163,224.21,88.5626 +68164,222.86,89.15044 +68165,225.68,87.5046 +68166,224.26,88.0279 +68167,222.86,88.5653 +68168,221.49,89.11542 +68169,224.37,87.5844 +68170,222.93,88.0689 +68171,221.51,88.5679 +68172,220.11,89.07994 +68173,223.07,87.6646 +68174,221.6,88.11 +68175,220.16,88.5703 +68176,218.74,89.04404 +68177,221.76,87.7452 +68178,220.27,88.1512 +68179,218.81,88.5726 +68180,217.37,89.00774 +68181,220.45,87.8262 +68182,218.94,88.1925 +68183,217.46,88.5747 +68184,216,88.9711 +68185,219.14,87.9075 +68186,217.61,88.234 +68187,216.11,88.5767 +68188,214.63,88.9341 +68189,217.83,87.9892 +68190,216.28,88.2755 +68191,214.76,88.5785 +68192,213.27,88.8967 +68193,216.51,88.0711 +68194,214.95,88.3171 +68195,213.41,88.5803 +68196,211.9,88.8591 +68197,215.2,88.1533 +68198,213.62,88.3587 +68199,212.07,88.5819 +68200,210.54,88.8213 +68201,213.88,88.2358 +68202,212.29,88.4004 +68203,210.72,88.5834 +68204,209.17,88.7832 +68205,212.57,88.3184 +68206,210.96,88.4422 +68207,209.37,88.5849 +68208,207.81,88.7449 +68209,211.25,88.4011 +68210,209.62,88.484 +68211,208.02,88.5863 +68212,206.45,88.7065 +68213,209.93,88.484 +68214,208.29,88.5258 +68215,206.68,88.5876 +68216,205.09,88.6679 +68217,208.61,88.567 +68218,206.96,88.5676 +68219,205.33,88.5889 +68220,203.73,88.6292 +68221,207.29,88.6501 +68222,205.62,88.6094 +68223,203.99,88.5901 +68224,202.37,88.5905 +68225,205.96,88.7331 +68226,204.29,88.6512 +68227,202.64,88.5913 +68228,201.02,88.5517 +68229,204.64,88.8162 +68230,202.95,88.693 +68231,201.29,88.5925 +68232,199.66,88.5129 +68233,203.31,88.8992 +68234,201.62,88.7347 +68235,199.95,88.5937 +68236,198.31,88.4741 +68237,201.99,88.9822 +68238,200.28,88.7764 +68239,198.61,88.5948 +68240,196.96,88.4354 +68241,200.66,89.06505 +68242,198.94,88.8181 +68243,197.26,88.596 +68244,195.61,88.3967 +68245,199.33,89.14777 +68246,197.61,88.8597 +68247,195.92,88.5972 +68248,194.26,88.3582 +68249,198,89.23032 +68250,196.27,88.9012 +68251,194.57,88.5984 +68252,192.91,88.3197 +68253,196.66,89.31267 +68254,194.93,88.9426 +68255,193.23,88.5997 +68256,191.56,88.2815 +68257,195.33,89.39478 +68258,193.59,88.984 +68259,191.89,88.601 +68260,190.22,88.2435 +68261,194,89.47662 +68262,192.25,89.0252 +68263,190.55,88.6023 +68264,188.87,88.2056 +68265,192.66,89.55817 +68266,190.92,89.06631 +68267,189.21,88.6038 +68268,187.53,88.1681 +68269,191.32,89.63938 +68270,189.58,89.10729 +68271,187.87,88.6053 +68272,186.19,88.1308 +68273,189.98,89.72023 +68274,188.23,89.14813 +68275,186.52,88.6069 +68276,184.85,88.0938 +68277,188.64,89.80068 +68278,186.89,89.18882 +68279,185.18,88.6086 +68280,183.51,88.0572 +68281,187.3,89.8807 +68282,185.55,89.22935 +68283,183.84,88.6104 +68284,182.17,88.021 +68285,185.95,89.960257 +68286,184.21,89.26971 +68287,182.51,88.6123 +68288,180.83,87.9852 +68289,184.61,90.039322 +68290,182.87,89.30989 +68291,181.17,88.6144 +68292,179.5,87.9498 +68293,183.26,90.11786 +68294,181.53,89.34988 +68295,179.83,88.6166 +68296,178.17,87.9148 +68297,181.91,90.19585 +68298,180.18,89.38967 +68299,178.49,88.6189 +68300,176.83,87.8804 +68301,180.57,90.27324 +68302,178.84,89.42925 +68303,177.15,88.6214 +68304,175.5,87.8465 +68305,179.22,90.35002 +68306,177.49,89.46861 +68307,175.81,88.6241 +68308,174.17,87.8131 +68309,177.86,90.42615 +68310,176.15,89.50774 +68311,174.48,88.6269 +68312,172.84,87.7803 +68313,176.51,90.5016 +68314,174.8,89.54662 +68315,173.14,88.63 +68316,171.51,87.748 +68317,175.16,90.57635 +68318,173.46,89.58526 +68319,171.8,88.6332 +68320,170.19,87.7165 +68321,173.8,90.65035 +68322,172.11,89.62363 +68323,170.47,88.6366 +68324,168.86,87.6855 +68325,172.44,90.72359 +68326,170.76,89.66174 +68327,169.13,88.6403 +68328,167.54,87.6553 +68329,171.08,90.79603 +68330,169.42,89.69957 +68331,167.8,88.6442 +68332,166.22,87.6257 +68333,169.72,90.86765 +68334,168.07,89.73711 +68335,166.46,88.6483 +68336,164.89,87.5969 +68337,168.36,90.93842 +68338,166.72,89.77435 +68339,165.13,88.6526 +68340,163.57,87.5689 +68341,167,91.0083 +68342,165.37,89.81128 +68343,163.79,88.6572 +68344,162.25,87.5416 +68345,165.64,91.0773 +68346,164.02,89.84791 +68347,162.46,88.662 +68348,160.94,87.5151 +68349,164.27,91.1453 +68350,162.67,89.88421 +68351,161.13,88.6671 +68352,159.62,87.4895 +68353,162.9,91.2124 +68354,161.32,89.920172 +68355,159.79,88.6725 +68356,158.3,87.4647 +68357,161.54,91.2785 +68358,159.97,89.955798 +68359,158.46,88.6782 +68360,156.99,87.4408 +68361,160.17,91.3436 +68362,158.62,89.9910762 +68363,157.13,88.6841 +68364,155.68,87.4178 +68365,158.8,91.4077 +68366,157.27,90.025998 +68367,155.8,88.6904 +68368,154.36,87.3957 +68369,157.43,91.4707 +68370,155.92,90.060555 +68371,154.46,88.6969 +68372,153.05,87.3746 +68373,156.05,91.5326 +68374,154.57,90.094741 +68375,153.13,88.7038 +68376,151.74,87.3544 +68377,154.68,91.5934 +68378,153.22,90.12855 +68379,151.8,88.7109 +68380,150.43,87.3352 +68381,153.31,91.6531 +68382,151.86,90.16197 +68383,150.47,88.7184 +68384,149.12,87.3171 +68385,151.93,91.7116 +68386,150.51,90.19499 +68387,149.14,88.7262 +68388,147.82,87.2999 +68389,150.55,91.769 +68390,149.16,90.22762 +68391,147.81,88.7344 +68392,146.51,87.2838 +68393,149.17,91.8251 +68394,147.8,90.25983 +68395,146.48,88.7429 +68396,145.2,87.2688 +68397,147.8,91.8801 +68398,146.45,90.29164 +68399,145.15,88.7518 +68400,143.9,87.2549 +68401,146.42,91.9338 +68402,145.09,90.32302 +68403,143.82,88.761 +68404,142.6,87.242 +68405,145.03,91.9863 +68406,143.74,90.35398 +68407,142.49,88.7705 +68408,141.29,87.2303 +68409,143.65,92.0375 +68410,142.38,90.3845 +68411,141.17,88.7805 +68412,139.99,87.2198 +68413,142.27,92.0875 +68414,141.03,90.41459 +68415,139.84,88.7908 +68416,138.69,87.2104 +68417,140.88,92.1361 +68418,139.67,90.44423 +68419,138.51,88.8015 +68420,137.39,87.2021 +68421,139.5,92.1834 +68422,138.31,90.47342 +68423,137.18,88.8126 +68424,136.09,87.1951 +68425,138.11,92.2294 +68426,136.96,90.50216 +68427,135.85,88.824 +68428,134.79,87.1892 +68429,136.73,92.274 +68430,135.6,90.53044 +68431,134.53,88.8359 +68432,133.49,87.1846 +68433,135.34,92.3173 +68434,134.24,90.55826 +68435,133.2,88.8481 +68436,132.2,87.1812 +68437,133.95,92.3592 +68438,132.89,90.58561 +68439,131.87,88.8608 +68440,130.9,87.1791 +68441,132.56,92.3998 +68442,131.53,90.61248 +68443,130.54,88.8738 +68444,129.6,87.1782 +68445,131.17,92.4389 +68446,130.17,90.63888 +68447,129.22,88.8873 +68448,128.31,87.1785 +68449,129.78,92.4766 +68450,128.81,90.6648 +68451,127.89,88.9012 +68452,127.01,87.1802 +68453,128.39,92.5129 +68454,127.45,90.69024 +68455,126.57,88.9155 +68456,125.72,87.1831 +68457,126.99,92.5478 +68458,126.09,90.71519 +68459,125.24,88.9302 +68460,124.43,87.1874 +68461,125.6,92.5813 +68462,124.73,90.73965 +68463,123.91,88.9453 +68464,123.13,87.1929 +68465,124.21,92.6133 +68466,123.37,90.76362 +68467,122.59,88.9609 +68468,121.84,87.1998 +68469,122.81,92.6438 +68470,122.01,90.78709 +68471,121.26,88.9769 +68472,120.55,87.2079 +68473,121.42,92.673 +68474,120.65,90.81007 +68475,119.94,88.9933 +68476,119.26,87.2175 +68477,120.02,92.7006 +68478,119.29,90.83254 +68479,118.61,89.01013 +68480,117.97,87.2283 +68481,118.62,92.7268 +68482,117.93,90.85452 +68483,117.29,89.02741 +68484,116.68,87.2405 +68485,117.23,92.7515 +68486,116.57,90.87599 +68487,115.96,89.04512 +68488,115.39,87.2541 +68489,115.83,92.7748 +68490,115.21,90.89696 +68491,114.64,89.06326 +68492,114.1,87.269 +68493,114.43,92.7966 +68494,113.85,90.91743 +68495,113.31,89.08185 +68496,112.81,87.2852 +68497,113.03,92.8169 +68498,112.49,90.93739 +68499,111.99,89.10087 +68500,111.52,87.3029 +68501,111.63,92.8357 +68502,111.13,90.95684 +68503,110.66,89.12032 +68504,110.23,87.3218 +68505,110.24,92.8531 +68506,109.77,90.97579 +68507,109.34,89.14022 +68508,108.94,87.3422 +68509,108.84,92.8689 +68510,108.4,90.99423 +68511,108.01,89.16055 +68512,107.66,87.3639 +68513,107.44,92.8834 +68514,107.04,91.0122 +68515,106.69,89.18132 +68516,106.37,87.387 +68517,106.04,92.8963 +68518,105.68,91.0296 +68519,105.36,89.20253 +68520,105.08,87.4114 +68521,104.64,92.9078 +68522,104.32,91.0465 +68523,104.04,89.22418 +68524,103.79,87.4372 +68525,103.24,92.9178 +68526,102.96,91.0629 +68527,102.71,89.24626 +68528,102.5,87.4644 +68529,101.84,92.9264 +68530,101.59,91.0789 +68531,101.39,89.26878 +68532,101.22,87.4929 +68533,100.43,92.9335 +68534,100.23,91.0943 +68535,100.07,89.29172 +68536,99.93,87.5228 +68537,99.033,92.9392 +68538,98.87,91.1092 +68539,98.74,89.31511 +68540,98.642,87.5541 +68541,97.632,92.9435 +68542,97.507,91.1236 +68543,97.416,89.33892 +68544,97.355,87.5867 +68545,96.231,92.9463 +68546,96.145,91.1375 +68547,96.091,89.36315 +68548,96.067,87.6206 +68549,94.83,92.9477 +68550,94.782,91.1509 +68551,94.767,89.38782 +68552,94.78,87.6559 +68553,93.429,92.9477 +68554,93.42,91.1639 +68555,93.442,89.41291 +68556,93.492,87.6925 +68557,92.028,92.9462 +68558,92.057,91.1763 +68559,92.117,89.43841 +68560,92.205,87.7304 +68561,90.627,92.9434 +68562,90.695,91.1883 +68563,90.792,89.46434 +68564,90.917,87.7697 +68565,89.227,92.9393 +68566,89.332,91.1998 +68567,89.467,89.49067 +68568,89.629,87.8102 +68569,87.826,92.9337 +68570,87.97,91.2108 +68571,88.142,89.51742 +68572,88.34,87.8521 +68573,86.426,92.9268 +68574,86.607,91.2213 +68575,86.817,89.54458 +68576,87.052,87.8952 +68577,85.025,92.9186 +68578,85.245,91.2314 +68579,85.492,89.57213 +68580,85.763,87.9396 +68581,83.625,92.909 +68582,83.883,91.241 +68583,84.166,89.60009 +68584,84.474,87.9853 +68585,82.225,92.8982 +68586,82.52,91.2501 +68587,82.841,89.62844 +68588,83.185,88.0323 +68589,80.826,92.886 +68590,81.158,91.2588 +68591,81.515,89.65718 +68592,81.895,88.0804 +68593,79.427,92.8726 +68594,79.796,91.267 +68595,80.189,89.6863 +68596,80.605,88.1298 +68597,78.028,92.8579 +68598,78.434,91.2748 +68599,78.863,89.7158 +68600,79.314,88.1804 +68601,76.629,92.8419 +68602,77.072,91.2821 +68603,77.537,89.74568 +68604,78.024,88.2323 +68605,75.231,92.8247 +68606,75.71,91.289 +68607,76.211,89.77592 +68608,76.732,88.2853 +68609,73.834,92.8064 +68610,74.348,91.2955 +68611,74.884,89.80653 +68612,75.44,88.3394 +68613,72.436,92.7868 +68614,72.987,91.3015 +68615,73.558,89.8375 +68616,74.148,88.3947 +68617,71.04,92.7661 +68618,71.625,91.3071 +68619,72.231,89.86882 +68620,72.855,88.4512 +68621,69.644,92.7442 +68622,70.264,91.3124 +68623,70.903,89.900477 +68624,71.562,88.5087 +68625,68.248,92.7212 +68626,68.903,91.3172 +68627,69.576,89.932476 +68628,70.268,88.5674 +68629,66.853,92.6971 +68630,67.542,91.3216 +68631,68.249,89.964806 +68632,68.973,88.6271 +68633,65.459,92.6719 +68634,66.181,91.3256 +68635,66.921,89.997461 +68636,67.678,88.6879 +68637,64.065,92.6456 +68638,64.82,91.3293 +68639,65.593,90.030433 +68640,66.382,88.7497 +68641,62.672,92.6184 +68642,63.459,91.3325 +68643,64.264,90.063715 +68644,65.085,88.8126 +68645,61.279,92.59 +68646,62.099,91.3354 +68647,62.936,90.0973 +68648,63.788,88.8764 +68649,59.887,92.5608 +68650,60.739,91.338 +68651,61.607,90.13118 +68652,62.49,88.9412 +68653,58.496,92.5305 +68654,59.379,91.3401 +68655,60.278,90.16535 +68656,61.191,89.00698 +68657,57.106,92.4993 +68658,58.019,91.342 +68659,58.948,90.19979 +68660,59.891,89.07366 +68661,55.717,92.4672 +68662,56.66,91.3435 +68663,57.618,90.23451 +68664,58.591,89.14125 +68665,54.328,92.4342 +68666,55.301,91.3446 +68667,56.288,90.26948 +68668,57.29,89.20972 +68669,52.94,92.4003 +68670,53.942,91.3455 +68671,54.958,90.30472 +68672,55.988,89.27904 +68673,51.553,92.3656 +68674,52.583,91.346 +68675,53.627,90.34019 +68676,54.685,89.34919 +68677,50.167,92.3301 +68678,51.224,91.3463 +68679,52.296,90.37591 +68680,53.381,89.42015 +68681,48.782,92.2938 +68682,49.866,91.3462 +68683,50.965,90.41185 +68684,52.076,89.49188 +68685,47.397,92.2568 +68686,48.508,91.3459 +68687,49.633,90.44801 +68688,50.771,89.56436 +68689,46.014,92.219 +68690,47.151,91.3452 +68691,48.301,90.48438 +68692,49.464,89.63757 +68693,44.631,92.1805 +68694,45.793,91.3443 +68695,46.969,90.52094 +68696,48.157,89.71147 +68697,43.25,92.1414 +68698,44.436,91.3432 +68699,45.636,90.5577 +68700,46.848,89.78604 +68701,41.869,92.1016 +68702,43.079,91.3418 +68703,44.303,90.59464 +68704,45.539,89.86125 +68705,40.49,92.0612 +68706,41.723,91.3402 +68707,42.969,90.63175 +68708,44.228,89.937071 +68709,39.111,92.0202 +68710,40.367,91.3383 +68711,41.635,90.66902 +68712,42.916,90.013473 +68713,37.734,91.9787 +68714,39.011,91.3362 +68715,40.301,90.70643 +68716,41.604,90.090428 +68717,36.357,91.9366 +68718,37.655,91.3339 +68719,38.966,90.744 +68720,40.29,90.1679 +68721,34.982,91.894 +68722,36.3,91.3315 +68723,37.631,90.78169 +68724,38.975,90.24587 +68725,33.608,91.851 +68726,34.945,91.3288 +68727,36.296,90.8195 +68728,37.659,90.3243 +68729,32.234,91.8076 +68730,33.59,91.3259 +68731,34.96,90.85742 +68732,36.342,90.40317 +68733,30.862,91.7637 +68734,32.236,91.3229 +68735,33.624,90.89543 +68736,35.024,90.48243 +68737,29.491,91.7195 +68738,30.882,91.3197 +68739,32.287,90.93354 +68740,33.705,90.56206 +68741,28.122,91.6749 +68742,29.529,91.3164 +68743,30.95,90.97173 +68744,32.385,90.64202 +68745,26.753,91.63 +68746,28.176,91.3129 +68747,29.613,91.01 +68748,31.063,90.72229 +68749,25.386,91.5849 +68750,26.823,91.3093 +68751,28.275,91.0483 +68752,29.74,90.80283 +68753,24.019,91.5395 +68754,25.47,91.3056 +68755,26.936,91.0866 +68756,28.416,90.88361 +68757,22.654,91.4938 +68758,24.118,91.3018 +68759,25.598,91.125 +68760,27.091,90.9646 +68761,21.29,91.448 +68762,22.766,91.2979 +68763,24.258,91.1634 +68764,25.765,91.0458 +68765,19.927,91.4021 +68766,21.415,91.2939 +68767,22.919,91.2019 +68768,24.437,91.1271 +68769,18.566,91.356 +68770,20.064,91.2898 +68771,21.579,91.2403 +68772,23.108,91.2085 +68773,17.205,91.3098 +68774,18.713,91.2857 +68775,20.238,91.2787 +68776,21.778,91.29 +68777,15.846,91.2636 +68778,17.363,91.2815 +68779,18.897,91.3171 +68780,20.447,91.3715 +68781,14.488,91.2173 +68782,16.013,91.2773 +68783,17.556,91.3555 +68784,19.114,91.453 +68785,13.131,91.171 +68786,14.664,91.273 +68787,16.214,91.3938 +68788,17.781,91.5345 +68789,11.776,91.1248 +68790,13.315,91.2687 +68791,14.871,91.432 +68792,16.445,91.616 +68793,10.422,91.0787 +68794,11.966,91.2645 +68795,13.529,91.4702 +68796,15.109,91.6973 +68797,9.0685,91.0326 +68798,10.618,91.2602 +68799,12.185,91.5084 +68800,13.771,91.7785 +68801,7.7167,90.98667 +68802,9.2697,91.2559 +68803,10.842,91.5464 +68804,12.432,91.8596 +68805,6.3661,90.9409 +68806,7.9221,91.2516 +68807,9.4976,91.5843 +68808,11.092,91.9405 +68809,5.0168,90.89532 +68810,6.575,91.2474 +68811,8.1529,91.6222 +68812,9.7508,92.0211 +68813,3.6687,90.84996 +68814,5.2282,91.2432 +68815,6.8079,91.6599 +68816,8.408,92.1015 +68817,2.3218,90.80486 +68818,3.8817,91.2391 +68819,5.4623,91.6975 +68820,7.0639,92.1816 +68821,0.97617,90.76004 +68822,2.5357,91.235 +68823,4.1164,91.7349 +68824,5.7186,92.2613 +68825,359.63,90.71553 +68826,1.1901,91.231 +68827,2.7699,91.7722 +68828,4.3719,92.3407 +68829,358.29,90.67136 +68830,359.84,91.2271 +68831,1.423,91.8093 +68832,3.024,92.4197 +68833,356.95,90.62757 +68834,358.5,91.2233 +68835,0.075672,91.8462 +68836,1.6747,92.4982 +68837,355.61,90.58419 +68838,357.16,91.2196 +68839,358.73,91.883 +68840,0.32419,92.5763 +68841,354.27,90.54123 +68842,355.81,91.216 +68843,357.38,91.9195 +68844,358.97,92.6539 +68845,352.93,90.49874 +68846,354.47,91.2126 +68847,356.03,91.9559 +68848,357.62,92.7309 +68849,351.59,90.45675 +68850,353.12,91.2092 +68851,354.68,91.992 +68852,356.26,92.8074 +68853,350.26,90.41527 +68854,351.78,91.206 +68855,353.33,92.0279 +68856,354.91,92.8833 +68857,348.92,90.37435 +68858,350.44,91.203 +68859,351.98,92.0636 +68860,353.55,92.9586 +68861,347.59,90.334 +68862,349.1,91.2002 +68863,350.63,92.099 +68864,352.19,93.0332 +68865,346.25,90.29426 +68866,347.75,91.1975 +68867,349.28,92.1341 +68868,350.83,93.1071 +68869,344.92,90.25515 +68870,346.41,91.195 +68871,347.93,92.169 +68872,349.47,93.1803 +68873,343.59,90.21671 +68874,345.07,91.1926 +68875,346.58,92.2036 +68876,348.11,93.2527 +68877,342.26,90.17895 +68878,343.73,91.1905 +68879,345.23,92.2379 +68880,346.75,93.3244 +68881,340.94,90.14191 +68882,342.39,91.1886 +68883,343.87,92.2719 +68884,345.38,93.3952 +68885,339.61,90.10561 +68886,341.05,91.187 +68887,342.52,92.3056 +68888,344.02,93.4652 +68889,338.28,90.070081 +68890,339.71,91.1855 +68891,341.17,92.339 +68892,342.65,93.5343 +68893,336.96,90.035344 +68894,338.37,91.1843 +68895,339.81,92.372 +68896,341.28,93.6025 +68897,335.64,90.0014257 +68898,337.03,91.1833 +68899,338.46,92.4048 +68900,339.91,93.6698 +68901,334.31,89.968351 +68902,335.69,91.1826 +68903,337.1,92.4371 +68904,338.54,93.7361 +68905,332.99,89.936145 +68906,334.36,91.1822 +68907,335.75,92.4691 +68908,337.17,93.8015 +68909,331.67,89.904831 +68910,333.02,91.182 +68911,334.39,92.5008 +68912,335.8,93.8658 +68913,330.35,89.87443 +68914,331.68,91.1821 +68915,333.04,92.5321 +68916,334.43,93.929 +68917,329.04,89.84497 +68918,330.34,91.1825 +68919,331.68,92.563 +68920,333.05,93.9912 +68921,327.72,89.81647 +68922,329.01,91.1832 +68923,330.32,92.5935 +68924,331.68,94.0523 +68925,326.4,89.78896 +68926,327.67,91.1842 +68927,328.97,92.6236 +68928,330.3,94.1123 +68929,325.09,89.76245 +68930,326.33,91.1855 +68931,327.61,92.6533 +68932,328.92,94.1711 +68933,323.77,89.73697 +68934,325,91.1871 +68935,326.25,92.6826 +68936,327.54,94.2288 +68937,322.46,89.71253 +68938,323.66,91.1891 +68939,324.89,92.7114 +68940,326.16,94.2853 +68941,321.15,89.68916 +68942,322.32,91.1914 +68943,323.53,92.7399 +68944,324.78,94.3405 +68945,319.84,89.66688 +68946,320.99,91.194 +68947,322.17,92.7679 +68948,323.4,94.3945 +68949,318.52,89.6457 +68950,319.65,91.1969 +68951,320.82,92.7954 +68952,322.01,94.4473 +68953,317.22,89.62565 +68954,318.32,91.2002 +68955,319.46,92.8226 +68956,320.63,94.4988 +68957,315.91,89.60674 +68958,316.99,91.2039 +68959,318.1,92.8492 +68960,319.24,94.5489 +68961,314.6,89.58899 +68962,315.65,91.208 +68963,316.74,92.8754 +68964,317.86,94.5978 +68965,313.29,89.57241 +68966,314.32,91.2124 +68967,315.37,92.9011 +68968,316.47,94.6453 +68969,311.98,89.55703 +68970,312.98,91.2171 +68971,314.01,92.9264 +68972,315.08,94.6915 +68973,310.68,89.54286 +68974,311.65,91.2223 +68975,312.65,92.9512 +68976,313.69,94.7362 +68977,309.37,89.52991 +68978,310.32,91.2278 +68979,311.29,92.9755 +68980,312.3,94.7796 +68981,308.07,89.5182 +68982,308.98,91.2338 +68983,309.93,92.9993 +68984,310.91,94.8216 +68985,306.76,89.50774 +68986,307.65,91.2401 +68987,308.57,93.0226 +68988,309.52,94.8621 +68989,305.46,89.49855 +68990,306.32,91.2468 +68991,307.21,93.0454 +68992,308.13,94.9012 +68993,304.16,89.49063 +68994,304.98,91.2539 +68995,305.84,93.0677 +68996,306.74,94.9389 +68997,302.86,89.48401 +68998,303.65,91.2615 +68999,304.48,93.0895 +69000,305.34,94.9751 +69001,301.55,89.47868 +69002,302.32,91.2694 +69003,303.12,93.1108 +69004,303.95,95.0098 +69005,300.25,89.47467 +69006,300.99,91.2778 +69007,301.75,93.1315 +69008,302.56,95.043 +69009,298.95,89.47198 +69010,299.66,91.2865 +69011,300.39,93.1518 +69012,301.16,95.0748 +69013,297.65,89.47062 +69014,298.32,91.2957 +69015,299.03,93.1715 +69016,299.76,95.105 +69017,296.35,89.4706 +69018,296.99,91.3053 +69019,297.66,93.1907 +69020,298.37,95.1337 +69021,295.05,89.47193 +69022,295.66,91.3154 +69023,296.3,93.2093 +69024,296.97,95.1609 +69025,293.76,89.47461 +69026,294.33,91.3259 +69027,294.93,93.2275 +69028,295.57,95.1865 +69029,292.46,89.47866 +69030,293,91.3368 +69031,293.57,93.2451 +69032,294.17,95.2106 +69033,291.16,89.48407 +69034,291.67,91.3481 +69035,292.2,93.2621 +69036,292.78,95.2332 +69037,289.86,89.49086 +69038,290.34,91.3598 +69039,290.84,93.2787 +69040,291.38,95.2542 +69041,288.57,89.49902 +69042,289.01,91.372 +69043,289.47,93.2947 +69044,289.98,95.2736 +69045,287.27,89.50857 +69046,287.67,91.3847 +69047,288.11,93.3101 +69048,288.58,95.2915 +69049,285.97,89.5195 +69050,286.34,91.3978 +69051,286.74,93.325 +69052,287.18,95.3079 +69053,284.68,89.53182 +69054,285.01,91.4113 +69055,285.38,93.3394 +69056,285.78,95.3227 +69057,283.38,89.54553 +69058,283.68,91.4252 +69059,284.01,93.3532 +69060,284.37,95.3359 +69061,282.08,89.56064 +69062,282.35,91.4396 +69063,282.65,93.3665 +69064,282.97,95.3475 +69065,280.79,89.57713 +69066,281.02,91.4544 +69067,281.28,93.3792 +69068,281.57,95.3576 +69069,279.49,89.59502 +69070,279.69,91.4697 +69071,279.92,93.3914 +69072,280.17,95.3662 +69073,278.2,89.61429 +69074,278.36,91.4854 +69075,278.55,93.4031 +69076,278.77,95.3732 +69077,276.9,89.63496 +69078,277.03,91.5015 +69079,277.18,93.4142 +69080,277.37,95.3786 +69081,275.6,89.65701 +69082,275.7,91.5181 +69083,275.82,93.4247 +69084,275.96,95.3825 +69085,274.31,89.68044 +69086,274.37,91.5351 +69087,274.45,93.4348 +69088,274.56,95.3848 +69089,273.01,89.70526 +69090,273.04,91.5525 +69091,273.09,93.4443 +69092,273.16,95.3856 +69093,271.72,89.73145 +69094,271.71,91.5704 +69095,271.72,93.4532 +69096,271.76,95.3849 +69097,270.42,89.75901 +69098,270.38,91.5887 +69099,270.35,93.4616 +69100,270.36,95.3827 +69101,269.13,89.78794 +69102,269.05,91.6074 +69103,268.99,93.4695 +69104,268.95,95.3789 +69105,267.83,89.81822 +69106,267.71,91.6266 +69107,267.62,93.4769 +69108,267.55,95.3737 +69109,266.53,89.84986 +69110,266.38,91.6462 +69111,266.25,93.4838 +69112,266.15,95.3669 +69113,265.24,89.88284 +69114,265.05,91.6662 +69115,264.89,93.4901 +69116,264.75,95.3587 +69117,263.94,89.91715 +69118,263.72,91.6866 +69119,263.52,93.4959 +69120,263.35,95.349 +69121,262.64,89.952788 +69122,262.39,91.7074 +69123,262.16,93.5012 +69124,261.94,95.3379 +69125,261.35,89.989742 +69126,261.06,91.7286 +69127,260.79,93.5059 +69128,260.54,95.3253 +69129,260.05,90.028 +69130,259.73,91.7502 +69131,259.42,93.5102 +69132,259.14,95.3112 +69133,258.75,90.067552 +69134,258.4,91.7723 +69135,258.06,93.514 +69136,257.74,95.2958 +69137,257.45,90.10838 +69138,257.06,91.7947 +69139,256.69,93.5172 +69140,256.34,95.2789 +69141,256.16,90.15049 +69142,255.73,91.8175 +69143,255.33,93.52 +69144,254.94,95.2607 +69145,254.86,90.19384 +69146,254.4,91.8407 +69147,253.96,93.5223 +69148,253.54,95.2411 +69149,253.56,90.23844 +69150,253.07,91.8643 +69151,252.6,93.5241 +69152,252.14,95.2202 +69153,252.26,90.28427 +69154,251.74,91.8883 +69155,251.23,93.5254 +69156,250.74,95.1979 +69157,250.96,90.33131 +69158,250.4,91.9126 +69159,249.87,93.5263 +69160,249.34,95.1743 +69161,249.66,90.37954 +69162,249.07,91.9373 +69163,248.5,93.5266 +69164,247.95,95.1494 +69165,248.36,90.42895 +69166,247.74,91.9623 +69167,247.14,93.5266 +69168,246.55,95.1232 +69169,247.05,90.47953 +69170,246.41,91.9878 +69171,245.77,93.526 +69172,245.15,95.0958 +69173,245.75,90.53124 +69174,245.07,92.0135 +69175,244.41,93.5251 +69176,243.75,95.0672 +69177,244.45,90.58409 +69178,243.74,92.0396 +69179,243.04,93.5236 +69180,242.36,95.0373 +69181,243.14,90.63804 +69182,242.4,92.066 +69183,241.68,93.5218 +69184,240.96,95.0063 +69185,241.84,90.69308 +69186,241.07,92.0928 +69187,240.31,93.5195 +69188,239.57,94.9741 +69189,240.54,90.74918 +69190,239.74,92.1199 +69191,238.95,93.5168 +69192,238.17,94.9407 +69193,239.23,90.80634 +69194,238.4,92.1473 +69195,237.58,93.5137 +69196,236.78,94.9062 +69197,237.92,90.86451 +69198,237.07,92.1749 +69199,236.22,93.5102 +69200,235.39,94.8707 +69201,236.62,90.92369 +69202,235.73,92.2029 +69203,234.86,93.5063 +69204,233.99,94.834 +69205,235.31,90.98385 +69206,234.4,92.2312 +69207,233.49,93.502 +69208,232.6,94.7964 +69209,234,91.045 +69210,233.06,92.2598 +69211,232.13,93.4973 +69212,231.21,94.7577 +69213,232.69,91.107 +69214,231.73,92.2886 +69215,230.77,93.4923 +69216,229.82,94.718 +69217,231.38,91.17 +69218,230.39,92.3177 +69219,229.41,93.4869 +69220,228.43,94.6773 +69221,230.07,91.2338 +69222,229.05,92.347 +69223,228.04,93.4811 +69224,227.05,94.6357 +69225,228.76,91.2985 +69226,227.72,92.3766 +69227,226.68,93.475 +69228,225.66,94.5933 +69229,227.44,91.3641 +69230,226.38,92.4065 +69231,225.32,93.4685 +69232,224.27,94.5499 +69233,226.13,91.4304 +69234,225.04,92.4365 +69235,223.96,93.4618 +69236,222.89,94.5057 +69237,224.82,91.4976 +69238,223.7,92.4668 +69239,222.6,93.4547 +69240,221.5,94.4606 +69241,223.5,91.5655 +69242,222.37,92.4973 +69243,221.24,93.4473 +69244,220.12,94.4148 +69245,222.18,91.6341 +69246,221.03,92.528 +69247,219.88,93.4396 +69248,218.74,94.3682 +69249,220.87,91.7034 +69250,219.69,92.5589 +69251,218.52,93.4316 +69252,217.35,94.3209 +69253,219.55,91.7734 +69254,218.35,92.59 +69255,217.16,93.4233 +69256,215.97,94.2728 +69257,218.23,91.844 +69258,217.01,92.6212 +69259,215.8,93.4148 +69260,214.59,94.2241 +69261,216.91,91.9153 +69262,215.67,92.6526 +69263,214.44,93.406 +69264,213.21,94.1748 +69265,215.59,91.9871 +69266,214.33,92.6841 +69267,213.08,93.397 +69268,211.84,94.1248 +69269,214.26,92.0595 +69270,212.99,92.7158 +69271,211.72,93.3877 +69272,210.46,94.0743 +69273,212.94,92.1324 +69274,211.65,92.7476 +69275,210.36,93.3782 +69276,209.08,94.0232 +69277,211.62,92.2058 +69278,210.31,92.7796 +69279,209,93.3684 +69280,207.71,93.9716 +69281,210.29,92.2796 +69282,208.97,92.8116 +69283,207.65,93.3585 +69284,206.34,93.9195 +69285,208.96,92.3539 +69286,207.62,92.8438 +69287,206.29,93.3484 +69288,204.96,93.8669 +69289,207.63,92.4286 +69290,206.28,92.876 +69291,204.93,93.3381 +69292,203.59,93.814 +69293,206.31,92.5037 +69294,204.94,92.9083 +69295,203.58,93.3276 +69296,202.22,93.7606 +69297,204.98,92.5791 +69298,203.59,92.9407 +69299,202.22,93.3169 +69300,200.85,93.7069 +69301,203.64,92.6548 +69302,202.25,92.9732 +69303,200.86,93.3061 +69304,199.48,93.6529 +69305,202.31,92.7307 +69306,200.91,93.0056 +69307,199.51,93.2951 +69308,198.12,93.5985 +69309,200.98,92.807 +69310,199.56,93.0382 +69311,198.15,93.284 +69312,196.75,93.544 +69313,199.64,92.8834 +69314,198.22,93.0707 +69315,196.8,93.2728 +69316,195.39,93.4892 +69317,198.31,92.96 +69318,196.87,93.1032 +69319,195.44,93.2615 +69320,194.02,93.4342 +69321,196.97,93.0367 +69322,195.53,93.1358 +69323,194.09,93.2501 +69324,192.66,93.379 +69325,195.63,93.1135 +69326,194.18,93.1683 +69327,192.74,93.2386 +69328,191.3,93.3237 +69329,194.29,93.1904 +69330,192.83,93.2008 +69331,191.38,93.227 +69332,189.94,93.2683 +69333,192.95,93.2673 +69334,191.49,93.2333 +69335,190.03,93.2154 +69336,188.58,93.2129 +69337,191.61,93.3443 +69338,190.14,93.2658 +69339,188.68,93.2037 +69340,187.22,93.1574 +69341,190.27,93.4212 +69342,188.79,93.2981 +69343,187.33,93.1919 +69344,185.87,93.1019 +69345,188.92,93.498 +69346,187.44,93.3304 +69347,185.97,93.1801 +69348,184.51,93.0465 +69349,187.57,93.5748 +69350,186.09,93.3627 +69351,184.62,93.1683 +69352,183.16,92.9911 +69353,186.23,93.6514 +69354,184.75,93.3948 +69355,183.27,93.1565 +69356,181.81,92.9359 +69357,184.88,93.7278 +69358,183.4,93.4268 +69359,181.92,93.1447 +69360,180.46,92.8808 +69361,183.53,93.804 +69362,182.05,93.4588 +69363,180.57,93.1329 +69364,179.11,92.8258 +69365,182.18,93.88 +69366,180.7,93.4906 +69367,179.22,93.1211 +69368,177.76,92.771 +69369,180.83,93.9557 +69370,179.34,93.5222 +69371,177.87,93.1094 +69372,176.41,92.7165 +69373,179.48,94.0312 +69374,177.99,93.5537 +69375,176.52,93.0977 +69376,175.06,92.6622 +69377,178.12,94.1062 +69378,176.64,93.5851 +69379,175.17,93.086 +69380,173.72,92.6083 +69381,176.77,94.1809 +69382,175.29,93.6163 +69383,173.82,93.0744 +69384,172.37,92.5546 +69385,175.41,94.2552 +69386,173.94,93.6473 +69387,172.48,93.0629 +69388,171.03,92.5013 +69389,174.05,94.3291 +69390,172.58,93.6781 +69391,171.13,93.0515 +69392,169.69,92.4484 +69393,172.69,94.4025 +69394,171.23,93.7087 +69395,169.78,93.0402 +69396,168.34,92.3959 +69397,171.33,94.4753 +69398,169.88,93.7391 +69399,168.43,93.029 +69400,167.01,92.3439 +69401,169.97,94.5476 +69402,168.52,93.7692 +69403,167.09,93.0179 +69404,165.67,92.2923 +69405,168.61,94.6194 +69406,167.17,93.7992 +69407,165.74,93.0069 +69408,164.33,92.2413 +69409,167.24,94.6905 +69410,165.81,93.8289 +69411,164.4,92.9961 +69412,162.99,92.1907 +69413,165.88,94.761 +69414,164.46,93.8583 +69415,163.05,92.9854 +69416,161.66,92.1408 +69417,164.51,94.8308 +69418,163.1,93.8874 +69419,161.71,92.9749 +69420,160.32,92.0914 +69421,163.15,94.8999 +69422,161.75,93.9163 +69423,160.36,92.9645 +69424,158.99,92.0427 +69425,161.78,94.9683 +69426,160.39,93.9449 +69427,159.02,92.9544 +69428,157.66,91.9946 +69429,160.41,95.0358 +69430,159.03,93.9732 +69431,157.67,92.9444 +69432,156.33,91.9472 +69433,159.04,95.1026 +69434,157.68,94.0012 +69435,156.33,92.9346 +69436,155,91.9005 +69437,157.66,95.1686 +69438,156.32,94.0289 +69439,154.99,92.925 +69440,153.67,91.8546 +69441,156.29,95.2337 +69442,154.96,94.0562 +69443,153.64,92.9156 +69444,152.34,91.8094 +69445,154.92,95.2978 +69446,153.6,94.0832 +69447,152.3,92.9065 +69448,151.02,91.765 +69449,153.54,95.3611 +69450,152.24,94.1098 +69451,150.96,92.8976 +69452,149.69,91.7214 +69453,152.17,95.4234 +69454,150.88,94.1361 +69455,149.62,92.8889 +69456,148.37,91.6787 +69457,150.79,95.4847 +69458,149.52,94.1621 +69459,148.27,92.8805 +69460,147.04,91.6368 +69461,149.41,95.545 +69462,148.16,94.1876 +69463,146.93,92.8724 +69464,145.72,91.5958 +69465,148.03,95.6043 +69466,146.8,94.2128 +69467,145.59,92.8645 +69468,144.4,91.5558 +69469,146.65,95.6625 +69470,145.44,94.2375 +69471,144.25,92.8569 +69472,143.08,91.5166 +69473,145.27,95.7196 +69474,144.08,94.2619 +69475,142.91,92.8495 +69476,141.76,91.4785 +69477,143.89,95.7755 +69478,142.72,94.2859 +69479,141.57,92.8425 +69480,140.44,91.4413 +69481,142.5,95.8303 +69482,141.36,94.3094 +69483,140.23,92.8358 +69484,139.12,91.4051 +69485,141.12,95.884 +69486,140,94.3325 +69487,138.89,92.8294 +69488,137.8,91.37 +69489,139.73,95.9364 +69490,138.63,94.3552 +69491,137.55,92.8233 +69492,136.49,91.3359 +69493,138.35,95.9876 +69494,137.27,94.3774 +69495,136.21,92.8175 +69496,135.17,91.3028 +69497,136.96,96.0376 +69498,135.91,94.3992 +69499,134.87,92.812 +69500,133.86,91.2709 +69501,135.57,96.0863 +69502,134.54,94.4205 +69503,133.54,92.8069 +69504,132.54,91.2401 +69505,134.18,96.1337 +69506,133.18,94.4414 +69507,132.2,92.8022 +69508,131.23,91.2104 +69509,132.79,96.1797 +69510,131.82,94.4618 +69511,130.86,92.7977 +69512,129.92,91.1818 +69513,131.4,96.2245 +69514,130.45,94.4817 +69515,129.52,92.7937 +69516,128.61,91.1544 +69517,130.01,96.2679 +69518,129.09,94.5011 +69519,128.18,92.79 +69520,127.3,91.1282 +69521,128.62,96.3098 +69522,127.72,94.5201 +69523,126.85,92.7866 +69524,125.99,91.1032 +69525,127.23,96.3504 +69526,126.36,94.5385 +69527,125.51,92.7837 +69528,124.68,91.0795 +69529,125.84,96.3896 +69530,124.99,94.5564 +69531,124.17,92.7811 +69532,123.37,91.0569 +69533,124.44,96.4274 +69534,123.63,94.5739 +69535,122.84,92.7789 +69536,122.06,91.0356 +69537,123.05,96.4637 +69538,122.26,94.5908 +69539,121.5,92.7771 +69540,120.75,91.0156 +69541,121.65,96.4985 +69542,120.9,94.6072 +69543,120.16,92.7756 +69544,119.45,90.99679 +69545,120.26,96.5318 +69546,119.53,94.623 +69547,118.83,92.7746 +69548,118.14,90.97931 +69549,118.86,96.5637 +69550,118.17,94.6384 +69551,117.49,92.774 +69552,116.83,90.96312 +69553,117.46,96.594 +69554,116.8,94.6532 +69555,116.16,92.7738 +69556,115.53,90.94825 +69557,116.06,96.6228 +69558,115.43,94.6675 +69559,114.82,92.774 +69560,114.22,90.9347 +69561,114.67,96.6501 +69562,114.07,94.6812 +69563,113.48,92.7746 +69564,112.92,90.92248 +69565,113.27,96.6758 +69566,112.7,94.6944 +69567,112.15,92.7756 +69568,111.61,90.9116 +69569,111.87,96.7 +69570,111.33,94.7071 +69571,110.81,92.777 +69572,110.31,90.90208 +69573,110.47,96.7225 +69574,109.96,94.7191 +69575,109.48,92.7789 +69576,109.01,90.89392 +69577,109.07,96.7436 +69578,108.6,94.7307 +69579,108.14,92.7812 +69580,107.7,90.88712 +69581,107.67,96.763 +69582,107.23,94.7417 +69583,106.81,92.7839 +69584,106.4,90.8817 +69585,106.27,96.7808 +69586,105.86,94.7521 +69587,105.47,92.7871 +69588,105.1,90.87766 +69589,104.87,96.7971 +69590,104.49,94.762 +69591,104.14,92.7906 +69592,103.8,90.87501 +69593,103.46,96.8117 +69594,103.13,94.7713 +69595,102.8,92.7946 +69596,102.5,90.87375 +69597,102.06,96.8247 +69598,101.76,94.78 +69599,101.47,92.7991 +69600,101.19,90.87388 +69601,100.66,96.8361 +69602,100.39,94.7882 +69603,100.13,92.804 +69604,99.893,90.87541 +69605,99.259,96.8459 +69606,99.022,94.7958 +69607,98.8,92.8093 +69608,98.591,90.87835 +69609,97.857,96.8541 +69610,97.653,94.8028 +69611,97.465,92.815 +69612,97.29,90.88269 +69613,96.454,96.8606 +69614,96.285,94.8093 +69615,96.131,92.8212 +69616,95.989,90.88844 +69617,95.052,96.8656 +69618,94.917,94.8152 +69619,94.796,92.8279 +69620,94.688,90.8956 +69621,93.649,96.8689 +69622,93.548,94.8206 +69623,93.462,92.8349 +69624,93.387,90.90416 +69625,92.246,96.8706 +69626,92.18,94.8254 +69627,92.127,92.8424 +69628,92.087,90.91413 +69629,90.844,96.8707 +69630,90.811,94.8296 +69631,90.793,92.8504 +69632,90.786,90.9255 +69633,89.441,96.8692 +69634,89.443,94.8332 +69635,89.458,92.8588 +69636,89.485,90.93828 +69637,88.038,96.866 +69638,88.075,94.8363 +69639,88.124,92.8676 +69640,88.184,90.95246 +69641,86.635,96.8613 +69642,86.706,94.8388 +69643,86.789,92.8768 +69644,86.883,90.96803 +69645,85.233,96.855 +69646,85.338,94.8408 +69647,85.455,92.8865 +69648,85.582,90.985 +69649,83.83,96.847 +69650,83.969,94.8422 +69651,84.12,92.8966 +69652,84.28,91.0034 +69653,82.428,96.8375 +69654,82.601,94.843 +69655,82.785,92.9071 +69656,82.979,91.0231 +69657,81.026,96.8265 +69658,81.233,94.8433 +69659,81.45,92.9181 +69660,81.677,91.0442 +69661,79.624,96.8138 +69662,79.864,94.843 +69663,80.115,92.9295 +69664,80.375,91.0667 +69665,78.222,96.7997 +69666,78.496,94.8422 +69667,78.78,92.9413 +69668,79.073,91.0905 +69669,76.82,96.7839 +69670,77.128,94.8409 +69671,77.445,92.9535 +69672,77.771,91.1158 +69673,75.419,96.7667 +69674,75.76,94.839 +69675,76.11,92.9662 +69676,76.468,91.1423 +69677,74.018,96.7479 +69678,74.392,94.8365 +69679,74.775,92.9792 +69680,75.165,91.1702 +69681,72.617,96.7276 +69682,73.024,94.8335 +69683,73.439,92.9927 +69684,73.862,91.1994 +69685,71.217,96.7058 +69686,71.657,94.83 +69687,72.104,93.0065 +69688,72.558,91.2299 +69689,69.817,96.6826 +69690,70.289,94.826 +69691,70.768,93.0208 +69692,71.254,91.2617 +69693,68.417,96.6579 +69694,68.922,94.8215 +69695,69.432,93.0354 +69696,69.949,91.2948 +69697,67.018,96.6317 +69698,67.554,94.8164 +69699,68.096,93.0505 +69700,68.644,91.3292 +69701,65.62,96.6041 +69702,66.187,94.8108 +69703,66.76,93.0659 +69704,67.339,91.3649 +69705,64.222,96.5752 +69706,64.82,94.8047 +69707,65.424,93.0817 +69708,66.033,91.4018 +69709,62.824,96.5448 +69710,63.453,94.7982 +69711,64.087,93.0979 +69712,64.726,91.4399 +69713,61.427,96.513 +69714,62.086,94.7911 +69715,62.751,93.1144 +69716,63.419,91.4793 +69717,60.031,96.4799 +69718,60.72,94.7835 +69719,61.414,93.1314 +69720,62.112,91.5198 +69721,58.635,96.4455 +69722,59.353,94.7755 +69723,60.076,93.1486 +69724,60.804,91.5616 +69725,57.239,96.4098 +69726,57.987,94.7669 +69727,58.739,93.1663 +69728,59.495,91.6045 +69729,55.845,96.3728 +69730,56.621,94.758 +69731,57.402,93.1842 +69732,58.185,91.6486 +69733,54.451,96.3345 +69734,55.256,94.7485 +69735,56.064,93.2025 +69736,56.875,91.6937 +69737,53.058,96.295 +69738,53.89,94.7386 +69739,54.726,93.2212 +69740,55.564,91.7401 +69741,51.665,96.2542 +69742,52.525,94.7282 +69743,53.387,93.2401 +69744,54.253,91.7874 +69745,50.273,96.2123 +69746,51.16,94.7175 +69747,52.049,93.2594 +69748,52.94,91.8359 +69749,48.882,96.1692 +69750,49.795,94.7062 +69751,50.71,93.279 +69752,51.627,91.8854 +69753,47.492,96.1249 +69754,48.43,94.6946 +69755,49.371,93.2989 +69756,50.314,91.936 +69757,46.102,96.0796 +69758,47.066,94.6825 +69759,48.032,93.3191 +69760,48.999,91.9875 +69761,44.714,96.0331 +69762,45.702,94.6701 +69763,46.692,93.3396 +69764,47.684,92.0401 +69765,43.326,95.9856 +69766,44.338,94.6572 +69767,45.352,93.3603 +69768,46.367,92.0936 +69769,41.939,95.9371 +69770,42.975,94.6439 +69771,44.012,93.3813 +69772,45.05,92.148 +69773,40.553,95.8875 +69774,41.612,94.6303 +69775,42.671,93.4026 +69776,43.732,92.2034 +69777,39.168,95.837 +69778,40.249,94.6163 +69779,41.331,93.4241 +69780,42.413,92.2596 +69781,37.784,95.7855 +69782,38.886,94.6019 +69783,39.989,93.4459 +69784,41.094,92.3168 +69785,36.4,95.7331 +69786,37.524,94.5872 +69787,38.648,93.4679 +69788,39.773,92.3747 +69789,35.018,95.6799 +69790,36.162,94.5721 +69791,37.306,93.4902 +69792,38.451,92.4335 +69793,33.636,95.6257 +69794,34.8,94.5567 +69795,35.964,93.5126 +69796,37.129,92.493 +69797,32.256,95.5707 +69798,33.439,94.541 +69799,34.622,93.5353 +69800,35.805,92.5533 +69801,30.877,95.515 +69802,32.077,94.5249 +69803,33.279,93.5582 +69804,34.481,92.6144 +69805,29.498,95.4584 +69806,30.717,94.5086 +69807,31.936,93.5812 +69808,33.155,92.6761 +69809,28.121,95.4011 +69810,29.356,94.4919 +69811,30.593,93.6044 +69812,31.829,92.7385 +69813,26.744,95.3432 +69814,27.996,94.475 +69815,29.249,93.6278 +69816,30.501,92.8016 +69817,25.369,95.2845 +69818,26.637,94.4578 +69819,27.905,93.6514 +69820,29.173,92.8653 +69821,23.995,95.2252 +69822,25.277,94.4404 +69823,26.56,93.6751 +69824,27.843,92.9295 +69825,22.622,95.1653 +69826,23.918,94.4226 +69827,25.215,93.699 +69828,26.512,92.9944 +69829,21.25,95.1048 +69830,22.559,94.4047 +69831,23.87,93.7229 +69832,25.18,93.0597 +69833,19.879,95.0438 +69834,21.201,94.3865 +69835,22.524,93.747 +69836,23.847,93.1256 +69837,18.509,94.9822 +69838,19.843,94.3681 +69839,21.179,93.7712 +69840,22.513,93.1919 +69841,17.14,94.9202 +69842,18.486,94.3494 +69843,19.832,93.7955 +69844,21.178,93.2586 +69845,15.772,94.8578 +69846,17.128,94.3306 +69847,18.485,93.8199 +69848,19.842,93.3258 +69849,14.406,94.7949 +69850,15.772,94.3116 +69851,17.138,93.8443 +69852,18.505,93.3933 +69853,13.04,94.7317 +69854,14.415,94.2924 +69855,15.791,93.8688 +69856,17.166,93.4612 +69857,11.676,94.6681 +69858,13.059,94.2731 +69859,14.443,93.8934 +69860,15.827,93.5294 +69861,10.313,94.6042 +69862,11.703,94.2535 +69863,13.095,93.918 +69864,14.486,93.5978 +69865,8.9513,94.54 +69866,10.348,94.2339 +69867,11.746,93.9426 +69868,13.144,93.6665 +69869,7.5906,94.4756 +69870,8.993,94.2141 +69871,10.397,93.9673 +69872,11.801,93.7354 +69873,6.231,94.411 +69874,7.6384,94.1942 +69875,9.0475,93.992 +69876,10.457,93.8045 +69877,4.8726,94.3462 +69878,6.2842,94.1742 +69879,7.6977,94.0166 +69880,9.1114,93.8738 +69881,3.5153,94.2813 +69882,4.9304,94.1541 +69883,6.3474,94.0413 +69884,7.7648,93.9431 +69885,2.1593,94.2163 +69886,3.577,94.1339 +69887,4.9968,94.0659 +69888,6.417,94.0125 +69889,0.80441,94.1512 +69890,2.224,94.1136 +69891,3.6458,94.0905 +69892,5.0681,94.082 +69893,359.45,94.086 +69894,0.87137,94.0932 +69895,2.2943,94.115 +69896,3.718,94.1514 +69897,358.1,94.0209 +69898,359.52,94.0728 +69899,0.94252,94.1395 +69900,2.3667,94.2209 +69901,356.75,93.9557 +69902,358.17,94.0524 +69903,359.59,94.1639 +69904,1.0142,94.2902 +69905,355.4,93.8907 +69906,356.82,94.0319 +69907,358.24,94.1882 +69908,359.66,94.3595 +69909,354.05,93.8257 +69910,355.46,94.0114 +69911,356.88,94.2124 +69912,358.31,94.4287 +69913,352.7,93.7609 +69914,354.11,93.9909 +69915,355.53,94.2365 +69916,356.95,94.4977 +69917,351.35,93.6962 +69918,352.76,93.9704 +69919,354.18,94.2605 +69920,355.59,94.5665 +69921,350.01,93.6317 +69922,351.41,93.95 +69923,352.82,94.2844 +69924,354.23,94.6351 +69925,348.66,93.5675 +69926,350.06,93.9295 +69927,351.47,94.3081 +69928,352.87,94.7034 +69929,347.32,93.5035 +69930,348.72,93.9091 +69931,350.11,94.3317 +69932,351.51,94.7714 +69933,345.98,93.4398 +69934,347.37,93.8887 +69935,348.76,94.3551 +69936,350.15,94.8391 +69937,344.64,93.3765 +69938,346.02,93.8684 +69939,347.4,94.3784 +69940,348.79,94.9064 +69941,343.3,93.3135 +69942,344.67,93.8482 +69943,346.05,94.4014 +69944,347.42,94.9733 +69945,341.96,93.2508 +69946,343.32,93.828 +69947,344.69,94.4243 +69948,346.06,95.0398 +69949,340.62,93.1886 +69950,341.98,93.8079 +69951,343.33,94.4469 +69952,344.69,95.1058 +69953,339.29,93.1269 +69954,340.63,93.788 +69955,341.98,94.4694 +69956,343.33,95.1713 +69957,337.95,93.0656 +69958,339.28,93.7681 +69959,340.62,94.4916 +69960,341.96,95.2363 +69961,336.62,93.0049 +69962,337.94,93.7484 +69963,339.26,94.5135 +69964,340.59,95.3007 +69965,335.28,92.9447 +69966,336.59,93.7288 +69967,337.9,94.5352 +69968,339.22,95.3645 +69969,333.95,92.885 +69970,335.24,93.7093 +69971,336.54,94.5567 +69972,337.84,95.4276 +69973,332.62,92.826 +69974,333.9,93.69 +69975,335.18,94.5779 +69976,336.47,95.4901 +69977,331.29,92.7676 +69978,332.55,93.6709 +69979,333.82,94.5988 +69980,335.1,95.5519 +69981,329.96,92.7098 +69982,331.21,93.6519 +69983,332.46,94.6194 +69984,333.72,95.613 +69985,328.63,92.6528 +69986,329.87,93.6331 +69987,331.1,94.6397 +69988,332.34,95.6733 +69989,327.31,92.5964 +69990,328.52,93.6145 +69991,329.74,94.6597 +69992,330.97,95.7328 +69993,325.98,92.5408 +69994,327.18,93.5962 +69995,328.38,94.6794 +69996,329.59,95.7915 +69997,324.66,92.486 +69998,325.84,93.578 +69999,327.02,94.6987 +70000,328.21,95.8493 +70001,323.33,92.432 +70002,324.49,93.56 +70003,325.66,94.7177 +70004,326.83,95.9063 +70005,322.01,92.3788 +70006,323.15,93.5423 +70007,324.3,94.7363 +70008,325.45,95.9623 +70009,320.69,92.3264 +70010,321.81,93.5248 +70011,322.94,94.7546 +70012,324.06,96.0174 +70013,319.37,92.275 +70014,320.47,93.5076 +70015,321.57,94.7725 +70016,322.68,96.0715 +70017,318.05,92.2244 +70018,319.13,93.4906 +70019,320.21,94.79 +70020,321.3,96.1246 +70021,316.73,92.1747 +70022,317.79,93.4739 +70023,318.85,94.8072 +70024,319.91,96.1766 +70025,315.41,92.126 +70026,316.44,93.4575 +70027,317.48,94.8239 +70028,318.53,96.2276 +70029,314.09,92.0783 +70030,315.1,93.4414 +70031,316.12,94.8403 +70032,317.14,96.2776 +70033,312.77,92.0316 +70034,313.76,93.4255 +70035,314.76,94.8562 +70036,315.75,96.3263 +70037,311.46,91.9858 +70038,312.42,93.4099 +70039,313.39,94.8717 +70040,314.36,96.374 +70041,310.14,91.9412 +70042,311.08,93.3947 +70043,312.03,94.8867 +70044,312.97,96.4205 +70045,308.83,91.8975 +70046,309.74,93.3797 +70047,310.66,94.9014 +70048,311.58,96.4658 +70049,307.52,91.855 +70050,308.41,93.3651 +70051,309.3,94.9155 +70052,310.19,96.5098 +70053,306.2,91.8136 +70054,307.07,93.3508 +70055,307.93,94.9293 +70056,308.8,96.5526 +70057,304.89,91.7733 +70058,305.73,93.3369 +70059,306.57,94.9425 +70060,307.41,96.5942 +70061,303.58,91.7341 +70062,304.39,93.3233 +70063,305.2,94.9553 +70064,306.01,96.6345 +70065,302.27,91.6961 +70066,303.05,93.31 +70067,303.83,94.9676 +70068,304.62,96.6734 +70069,300.96,91.6592 +70070,301.71,93.2971 +70071,302.47,94.9795 +70072,303.23,96.711 +70073,299.65,91.6236 +70074,300.38,93.2845 +70075,301.1,94.9908 +70076,301.83,96.7473 +70077,298.34,91.5891 +70078,299.04,93.2723 +70079,299.74,95.0017 +70080,300.43,96.7822 +70081,297.03,91.5559 +70082,297.7,93.2605 +70083,298.37,95.012 +70084,299.04,96.8157 +70085,295.73,91.5239 +70086,296.36,93.2491 +70087,297,95.0219 +70088,297.64,96.8478 +70089,294.42,91.4932 +70090,295.03,93.238 +70091,295.63,95.0312 +70092,296.24,96.8784 +70093,293.11,91.4638 +70094,293.69,93.2274 +70095,294.27,95.04 +70096,294.85,96.9076 +70097,291.81,91.4356 +70098,292.35,93.2171 +70099,292.9,95.0483 +70100,293.45,96.9353 +70101,290.5,91.4088 +70102,291.02,93.2072 +70103,291.53,95.0561 +70104,292.05,96.9616 +70105,289.19,91.3832 +70106,289.68,93.1977 +70107,290.16,95.0633 +70108,290.65,96.9863 +70109,287.89,91.359 +70110,288.34,93.1887 +70111,288.8,95.07 +70112,289.25,97.0095 +70113,286.59,91.3361 +70114,287.01,93.18 +70115,287.43,95.0761 +70116,287.85,97.0312 +70117,285.28,91.3145 +70118,285.67,93.1718 +70119,286.06,95.0817 +70120,286.45,97.0514 +70121,283.98,91.2943 +70122,284.33,93.1639 +70123,284.69,95.0868 +70124,285.05,97.07 +70125,282.67,91.2754 +70126,283,93.1565 +70127,283.32,95.0913 +70128,283.64,97.0871 +70129,281.37,91.2579 +70130,281.66,93.1495 +70131,281.95,95.0953 +70132,282.24,97.1026 +70133,280.07,91.2418 +70134,280.33,93.143 +70135,280.59,95.0986 +70136,280.84,97.1165 +70137,278.77,91.2271 +70138,278.99,93.1368 +70139,279.22,95.1015 +70140,279.44,97.1288 +70141,277.46,91.2137 +70142,277.66,93.1311 +70143,277.85,95.1037 +70144,278.04,97.1395 +70145,276.16,91.2018 +70146,276.32,93.1258 +70147,276.48,95.1054 +70148,276.63,97.1486 +70149,274.86,91.1912 +70150,274.99,93.121 +70151,275.11,95.1066 +70152,275.23,97.156 +70153,273.56,91.1821 +70154,273.65,93.1166 +70155,273.74,95.1071 +70156,273.83,97.1619 +70157,272.25,91.1743 +70158,272.32,93.1126 +70159,272.37,95.1071 +70160,272.43,97.1662 +70161,270.95,91.168 +70162,270.98,93.109 +70163,271,95.1066 +70164,271.02,97.1688 +70165,269.65,91.1631 +70166,269.64,93.1059 +70167,269.64,95.1054 +70168,269.62,97.1698 +70169,268.35,91.1595 +70170,268.31,93.1033 +70171,268.27,95.1037 +70172,268.22,97.1691 +70173,267.05,91.1574 +70174,266.97,93.101 +70175,266.9,95.1014 +70176,266.82,97.1669 +70177,265.74,91.1567 +70178,265.64,93.0992 +70179,265.53,95.0986 +70180,265.41,97.163 +70181,264.44,91.1574 +70182,264.3,93.0979 +70183,264.16,95.0951 +70184,264.01,97.1574 +70185,263.14,91.1595 +70186,262.97,93.097 +70187,262.79,95.0911 +70188,262.61,97.1503 +70189,261.84,91.1631 +70190,261.63,93.0965 +70191,261.42,95.0866 +70192,261.21,97.1415 +70193,260.54,91.168 +70194,260.3,93.0964 +70195,260.05,95.0814 +70196,259.8,97.1311 +70197,259.23,91.1743 +70198,258.96,93.0968 +70199,258.69,95.0757 +70200,258.4,97.1191 +70201,257.93,91.182 +70202,257.63,93.0977 +70203,257.32,95.0694 +70204,257,97.1054 +70205,256.63,91.1911 +70206,256.29,93.0989 +70207,255.95,95.0626 +70208,255.6,97.0902 +70209,255.32,91.2016 +70210,254.96,93.1006 +70211,254.58,95.0552 +70212,254.2,97.0733 +70213,254.02,91.2135 +70214,253.62,93.1027 +70215,253.21,95.0472 +70216,252.8,97.0549 +70217,252.72,91.2267 +70218,252.28,93.1052 +70219,251.84,95.0387 +70220,251.4,97.0349 +70221,251.41,91.2413 +70222,250.95,93.1082 +70223,250.48,95.0296 +70224,250,97.0133 +70225,250.11,91.2573 +70226,249.61,93.1115 +70227,249.11,95.02 +70228,248.6,96.9902 +70229,248.8,91.2745 +70230,248.28,93.1153 +70231,247.74,95.0099 +70232,247.2,96.9655 +70233,247.5,91.2932 +70234,246.94,93.1195 +70235,246.37,94.9991 +70236,245.8,96.9392 +70237,246.19,91.3131 +70238,245.6,93.1241 +70239,245.01,94.9879 +70240,244.4,96.9115 +70241,244.88,91.3344 +70242,244.27,93.1291 +70243,243.64,94.9761 +70244,243,96.8822 +70245,243.58,91.3569 +70246,242.93,93.1345 +70247,242.27,94.9638 +70248,241.6,96.8514 +70249,242.27,91.3808 +70250,241.59,93.1403 +70251,240.91,94.9509 +70252,240.21,96.8192 +70253,240.96,91.4059 +70254,240.26,93.1465 +70255,239.54,94.9376 +70256,238.81,96.7854 +70257,239.65,91.4323 +70258,238.92,93.1531 +70259,238.17,94.9237 +70260,237.42,96.7503 +70261,238.35,91.4599 +70262,237.58,93.16 +70263,236.81,94.9093 +70264,236.02,96.7137 +70265,237.04,91.4888 +70266,236.24,93.1674 +70267,235.44,94.8944 +70268,234.63,96.6757 +70269,235.73,91.5189 +70270,234.9,93.1751 +70271,234.07,94.879 +70272,233.23,96.6363 +70273,234.41,91.5501 +70274,233.57,93.1831 +70275,232.71,94.8631 +70276,231.84,96.5955 +70277,233.1,91.5826 +70278,232.23,93.1916 +70279,231.34,94.8468 +70280,230.45,96.5533 +70281,231.79,91.6162 +70282,230.89,93.2003 +70283,229.98,94.8299 +70284,229.06,96.5099 +70285,230.48,91.651 +70286,229.55,93.2095 +70287,228.61,94.8126 +70288,227.67,96.4651 +70289,229.16,91.6869 +70290,228.21,93.2189 +70291,227.25,94.7948 +70292,226.28,96.419 +70293,227.85,91.7239 +70294,226.87,93.2287 +70295,225.89,94.7766 +70296,224.89,96.3717 +70297,226.53,91.762 +70298,225.53,93.2388 +70299,224.52,94.7579 +70300,223.5,96.3231 +70301,225.22,91.8011 +70302,224.19,93.2493 +70303,223.16,94.7387 +70304,222.11,96.2734 +70305,223.9,91.8413 +70306,222.85,93.26 +70307,221.79,94.7192 +70308,220.72,96.2224 +70309,222.58,91.8825 +70310,221.51,93.2711 +70311,220.43,94.6992 +70312,219.34,96.1702 +70313,221.26,91.9248 +70314,220.17,93.2824 +70315,219.07,94.6787 +70316,217.95,96.117 +70317,219.95,91.968 +70318,218.83,93.2941 +70319,217.71,94.6579 +70320,216.57,96.0626 +70321,218.63,92.0122 +70322,217.49,93.306 +70323,216.34,94.6367 +70324,215.19,96.0071 +70325,217.3,92.0573 +70326,216.15,93.3182 +70327,214.98,94.615 +70328,213.81,95.9506 +70329,215.98,92.1033 +70330,214.81,93.3306 +70331,213.62,94.593 +70332,212.43,95.893 +70333,214.66,92.1502 +70334,213.46,93.3433 +70335,212.26,94.5706 +70336,211.05,95.8344 +70337,213.33,92.1979 +70338,212.12,93.3563 +70339,210.9,94.5479 +70340,209.67,95.7749 +70341,212.01,92.2465 +70342,210.78,93.3695 +70343,209.54,94.5248 +70344,208.29,95.7144 +70345,210.68,92.2959 +70346,209.44,93.3829 +70347,208.18,94.5013 +70348,206.91,95.653 +70349,209.36,92.3461 +70350,208.09,93.3965 +70351,206.82,94.4775 +70352,205.54,95.5908 +70353,208.03,92.3971 +70354,206.75,93.4104 +70355,205.46,94.4534 +70356,204.16,95.5276 +70357,206.7,92.4488 +70358,205.4,93.4244 +70359,204.1,94.4289 +70360,202.79,95.4637 +70361,205.37,92.5011 +70362,204.06,93.4387 +70363,202.74,94.4042 +70364,201.42,95.399 +70365,204.04,92.5542 +70366,202.71,93.4531 +70367,201.38,94.3791 +70368,200.04,95.3335 +70369,202.7,92.6079 +70370,201.37,93.4677 +70371,200.03,94.3538 +70372,198.67,95.2673 +70373,201.37,92.6622 +70374,200.02,93.4824 +70375,198.67,94.3282 +70376,197.3,95.2004 +70377,200.04,92.7171 +70378,198.68,93.4973 +70379,197.31,94.3023 +70380,195.94,95.1328 +70381,198.7,92.7725 +70382,197.33,93.5124 +70383,195.95,94.2762 +70384,194.57,95.0647 +70385,197.36,92.8285 +70386,195.99,93.5276 +70387,194.6,94.2498 +70388,193.2,94.9959 +70389,196.03,92.885 +70390,194.64,93.5429 +70391,193.24,94.2232 +70392,191.84,94.9265 +70393,194.69,92.9419 +70394,193.29,93.5583 +70395,191.89,94.1963 +70396,190.48,94.8567 +70397,193.35,92.9993 +70398,191.94,93.5738 +70399,190.53,94.1693 +70400,189.11,94.7863 +70401,192.01,93.0571 +70402,190.59,93.5894 +70403,189.18,94.142 +70404,187.75,94.7155 +70405,190.66,93.1153 +70406,189.25,93.6051 +70407,187.82,94.1146 +70408,186.39,94.6443 +70409,189.32,93.1738 +70410,187.9,93.6208 +70411,186.47,94.087 +70412,185.03,94.5726 +70413,187.97,93.2326 +70414,186.55,93.6366 +70415,185.12,94.0592 +70416,183.68,94.5006 +70417,186.63,93.2917 +70418,185.2,93.6525 +70419,183.76,94.0312 +70420,182.32,94.4283 +70421,185.28,93.351 +70422,183.85,93.6683 +70423,182.41,94.0031 +70424,180.97,94.3557 +70425,183.93,93.4106 +70426,182.5,93.6842 +70427,181.06,93.9749 +70428,179.61,94.2829 +70429,182.58,93.4704 +70430,181.15,93.7002 +70431,179.71,93.9466 +70432,178.26,94.2098 +70433,181.23,93.5302 +70434,179.8,93.7161 +70435,178.35,93.9181 +70436,176.91,94.1366 +70437,179.88,93.5903 +70438,178.44,93.732 +70439,177,93.8895 +70440,175.56,94.0632 +70441,178.53,93.6504 +70442,177.09,93.7479 +70443,175.65,93.8609 +70444,174.21,93.9897 +70445,177.17,93.7105 +70446,175.74,93.7638 +70447,174.3,93.8322 +70448,172.86,93.916 +70449,175.82,93.7707 +70450,174.39,93.7796 +70451,172.95,93.8034 +70452,171.51,93.8424 +70453,174.46,93.8308 +70454,173.04,93.7953 +70455,171.6,93.7745 +70456,170.17,93.7687 +70457,173.1,93.8909 +70458,171.68,93.811 +70459,170.25,93.7456 +70460,168.82,93.6951 +70461,171.74,93.951 +70462,170.33,93.8267 +70463,168.91,93.7167 +70464,167.48,93.6215 +70465,170.38,94.0109 +70466,168.97,93.8422 +70467,167.56,93.6878 +70468,166.14,93.548 +70469,169.02,94.0706 +70470,167.62,93.8576 +70471,166.21,93.6588 +70472,164.8,93.4746 +70473,167.66,94.1302 +70474,166.26,93.873 +70475,164.86,93.6299 +70476,163.46,93.4014 +70477,166.3,94.1896 +70478,164.91,93.8882 +70479,163.52,93.6009 +70480,162.12,93.3284 +70481,164.93,94.2487 +70482,163.55,93.9032 +70483,162.17,93.572 +70484,160.78,93.2556 +70485,163.57,94.3075 +70486,162.2,93.9182 +70487,160.82,93.5432 +70488,159.45,93.183 +70489,162.2,94.3661 +70490,160.84,93.9329 +70491,159.48,93.5143 +70492,158.11,93.1108 +70493,160.83,94.4242 +70494,159.48,93.9475 +70495,158.13,93.4856 +70496,156.78,93.0388 +70497,159.46,94.482 +70498,158.13,93.962 +70499,156.79,93.4569 +70500,155.44,92.9673 +70501,158.09,94.5394 +70502,156.77,93.9762 +70503,155.44,93.4283 +70504,154.11,92.896 +70505,156.72,94.5963 +70506,155.41,93.9903 +70507,154.1,93.3997 +70508,152.78,92.8253 +70509,155.35,94.6528 +70510,154.05,94.0041 +70511,152.75,93.3713 +70512,151.45,92.7549 +70513,153.97,94.7087 +70514,152.69,94.0177 +70515,151.41,93.343 +70516,150.12,92.6851 +70517,152.6,94.7641 +70518,151.34,94.0311 +70519,150.07,93.3148 +70520,148.8,92.6157 +70521,151.22,94.8189 +70522,149.98,94.0443 +70523,148.73,93.2868 +70524,147.47,92.5469 +70525,149.85,94.8732 +70526,148.62,94.0572 +70527,147.38,93.2589 +70528,146.15,92.4787 +70529,148.47,94.9267 +70530,147.26,94.0698 +70531,146.04,93.2311 +70532,144.82,92.411 +70533,147.09,94.9796 +70534,145.9,94.0821 +70535,144.7,93.2035 +70536,143.5,92.344 +70537,145.71,95.0318 +70538,144.54,94.0942 +70539,143.36,93.1761 +70540,142.18,92.2777 +70541,144.33,95.0833 +70542,143.18,94.106 +70543,142.02,93.1489 +70544,140.85,92.212 +70545,142.95,95.134 +70546,141.81,94.1175 +70547,140.68,93.1218 +70548,139.53,92.1471 +70549,141.56,95.1839 +70550,140.45,94.1287 +70551,139.34,93.095 +70552,138.22,92.0829 +70553,140.18,95.233 +70554,139.09,94.1395 +70555,138,93.0684 +70556,136.9,92.0195 +70557,138.8,95.2812 +70558,137.73,94.15 +70559,136.66,93.042 +70560,135.58,91.9568 +70561,137.41,95.3285 +70562,136.37,94.1602 +70563,135.32,93.0158 +70564,134.26,91.895 +70565,136.02,95.3749 +70566,135,94.1701 +70567,133.98,92.9899 +70568,132.95,91.8341 +70569,134.64,95.4204 +70570,133.64,94.1795 +70571,132.64,92.9642 +70572,131.63,91.774 +70573,133.25,95.4649 +70574,132.28,94.1886 +70575,131.3,92.9388 +70576,130.32,91.7148 +70577,131.86,95.5084 +70578,130.91,94.1974 +70579,129.96,92.9136 +70580,129.01,91.6565 +70581,130.47,95.5509 +70582,129.55,94.2057 +70583,128.63,92.8888 +70584,127.69,91.5992 +70585,129.08,95.5924 +70586,128.19,94.2137 +70587,127.29,92.8642 +70588,126.38,91.5429 +70589,127.69,95.6327 +70590,126.82,94.2212 +70591,125.95,92.8399 +70592,125.07,91.4875 +70593,126.3,95.672 +70594,125.46,94.2283 +70595,124.61,92.8159 +70596,123.76,91.4332 +70597,124.9,95.7101 +70598,124.09,94.2351 +70599,123.28,92.7922 +70600,122.45,91.3799 +70601,123.51,95.7471 +70602,122.73,94.2414 +70603,121.94,92.7688 +70604,121.15,91.3277 +70605,122.11,95.7828 +70606,121.36,94.2472 +70607,120.61,92.7457 +70608,119.84,91.2766 +70609,120.72,95.8174 +70610,120,94.2526 +70611,119.27,92.723 +70612,118.53,91.2265 +70613,119.32,95.8508 +70614,118.63,94.2576 +70615,117.93,92.7006 +70616,117.22,91.1776 +70617,117.93,95.8829 +70618,117.27,94.2621 +70619,116.6,92.6785 +70620,115.92,91.1298 +70621,116.53,95.9137 +70622,115.9,94.2662 +70623,115.26,92.6568 +70624,114.61,91.0832 +70625,115.13,95.9433 +70626,114.54,94.2698 +70627,113.93,92.6355 +70628,113.31,91.0377 +70629,113.74,95.9715 +70630,113.17,94.2729 +70631,112.59,92.6145 +70632,112,90.99345 +70633,112.34,95.9984 +70634,111.8,94.2755 +70635,111.26,92.5939 +70636,110.7,90.95039 +70637,110.94,96.024 +70638,110.44,94.2776 +70639,109.92,92.5736 +70640,109.4,90.90856 +70641,109.54,96.0482 +70642,109.07,94.2793 +70643,108.59,92.5538 +70644,108.1,90.86797 +70645,108.14,96.0709 +70646,107.7,94.2804 +70647,107.26,92.5343 +70648,106.79,90.82863 +70649,106.74,96.0923 +70650,106.34,94.2811 +70651,105.92,92.5152 +70652,105.49,90.79056 +70653,105.34,96.1123 +70654,104.97,94.2812 +70655,104.59,92.4965 +70656,104.19,90.75377 +70657,103.94,96.1308 +70658,103.6,94.2809 +70659,103.25,92.4782 +70660,102.89,90.71827 +70661,102.54,96.1479 +70662,102.24,94.28 +70663,101.92,92.4603 +70664,101.59,90.68408 +70665,101.14,96.1635 +70666,100.87,94.2786 +70667,100.59,92.4428 +70668,100.29,90.65121 +70669,99.736,96.1776 +70670,99.503,94.2766 +70671,99.253,92.4257 +70672,98.988,90.61966 +70673,98.335,96.1902 +70674,98.136,94.2742 +70675,97.92,92.409 +70676,97.689,90.58944 +70677,96.933,96.2013 +70678,96.769,94.2712 +70679,96.587,92.3927 +70680,96.389,90.56058 +70681,95.531,96.2109 +70682,95.402,94.2676 +70683,95.254,92.3769 +70684,95.09,90.53306 +70685,94.128,96.2189 +70686,94.034,94.2636 +70687,93.921,92.3615 +70688,93.791,90.50691 +70689,92.726,96.2254 +70690,92.667,94.2589 +70691,92.588,92.3465 +70692,92.492,90.48213 +70693,91.324,96.2304 +70694,91.3,94.2538 +70695,91.255,92.3319 +70696,91.193,90.45872 +70697,89.921,96.2338 +70698,89.932,94.2481 +70699,89.922,92.3178 +70700,89.895,90.4367 +70701,88.519,96.2357 +70702,88.565,94.2418 +70703,88.59,92.3041 +70704,88.596,90.41606 +70705,87.116,96.2359 +70706,87.198,94.235 +70707,87.257,92.2908 +70708,87.298,90.39681 +70709,85.714,96.2346 +70710,85.83,94.2277 +70711,85.924,92.278 +70712,85.999,90.37895 +70713,84.312,96.2317 +70714,84.463,94.2197 +70715,84.592,92.2656 +70716,84.701,90.36249 +70717,82.91,96.2273 +70718,83.096,94.2113 +70719,83.259,92.2537 +70720,83.402,90.34743 +70721,81.507,96.2212 +70722,81.729,94.2022 +70723,81.926,92.2421 +70724,82.103,90.33378 +70725,80.105,96.2136 +70726,80.362,94.1927 +70727,80.593,92.2311 +70728,80.805,90.32152 +70729,78.704,96.2043 +70730,78.995,94.1825 +70731,79.261,92.2204 +70732,79.506,90.31066 +70733,77.302,96.1935 +70734,77.628,94.1718 +70735,77.928,92.2102 +70736,78.207,90.3012 +70737,75.901,96.181 +70738,76.261,94.1606 +70739,76.595,92.2004 +70740,76.908,90.29315 +70741,74.5,96.167 +70742,74.894,94.1488 +70743,75.262,92.1911 +70744,75.609,90.28649 +70745,73.099,96.1514 +70746,73.527,94.1364 +70747,73.929,92.1822 +70748,74.309,90.28122 +70749,71.699,96.1342 +70750,72.161,94.1235 +70751,72.596,92.1738 +70752,73.009,90.27735 +70753,70.299,96.1154 +70754,70.795,94.1101 +70755,71.263,92.1657 +70756,71.709,90.27486 +70757,68.899,96.0951 +70758,69.428,94.0961 +70759,69.93,92.1582 +70760,70.409,90.27375 +70761,67.5,96.0731 +70762,68.062,94.0815 +70763,68.597,92.151 +70764,69.108,90.27403 +70765,66.101,96.0496 +70766,66.696,94.0664 +70767,67.264,92.1443 +70768,67.807,90.27567 +70769,64.703,96.0246 +70770,65.331,94.0507 +70771,65.93,92.138 +70772,66.506,90.27867 +70773,63.305,95.998 +70774,63.965,94.0346 +70775,64.597,92.1321 +70776,65.204,90.28304 +70777,61.908,95.9698 +70778,62.6,94.0178 +70779,63.263,92.1267 +70780,63.902,90.28875 +70781,60.512,95.9401 +70782,61.235,94.0006 +70783,61.929,92.1216 +70784,62.599,90.2958 +70785,59.115,95.9089 +70786,59.87,93.9828 +70787,60.595,92.117 +70788,61.296,90.30417 +70789,57.72,95.8762 +70790,58.505,93.9644 +70791,59.261,92.1128 +70792,59.992,90.31387 +70793,56.325,95.8419 +70794,57.14,93.9456 +70795,57.926,92.109 +70796,58.688,90.32488 +70797,54.931,95.8062 +70798,55.776,93.9262 +70799,56.592,92.1056 +70800,57.383,90.33718 +70801,53.537,95.7691 +70802,54.412,93.9064 +70803,55.257,92.1026 +70804,56.078,90.35077 +70805,52.145,95.7304 +70806,53.048,93.886 +70807,53.922,92.1 +70808,54.772,90.36563 +70809,50.753,95.6903 +70810,51.685,93.8651 +70811,52.587,92.0978 +70812,53.465,90.38175 +70813,49.361,95.6488 +70814,50.321,93.8437 +70815,51.252,92.096 +70816,52.158,90.39912 +70817,47.971,95.6059 +70818,48.958,93.8218 +70819,49.917,92.0946 +70820,50.85,90.41771 +70821,46.581,95.5616 +70822,47.596,93.7994 +70823,48.581,92.0935 +70824,49.542,90.43752 +70825,45.192,95.5159 +70826,46.233,93.7765 +70827,47.245,92.0929 +70828,48.232,90.45853 +70829,43.804,95.4689 +70830,44.871,93.7532 +70831,45.909,92.0925 +70832,46.922,90.48072 +70833,42.417,95.4205 +70834,43.509,93.7294 +70835,44.572,92.0926 +70836,45.611,90.50407 +70837,41.031,95.3708 +70838,42.148,93.7051 +70839,43.236,92.093 +70840,44.299,90.52858 +70841,39.645,95.3198 +70842,40.786,93.6804 +70843,41.899,92.0937 +70844,42.987,90.55421 +70845,38.261,95.2676 +70846,39.425,93.6552 +70847,40.562,92.0948 +70848,41.674,90.58095 +70849,36.877,95.2141 +70850,38.065,93.6296 +70851,39.224,92.0963 +70852,40.36,90.60879 +70853,35.495,95.1593 +70854,36.705,93.6035 +70855,37.887,92.098 +70856,39.044,90.63769 +70857,34.113,95.1034 +70858,35.345,93.577 +70859,36.549,92.1001 +70860,37.729,90.66765 +70861,32.733,95.0463 +70862,33.985,93.5501 +70863,35.21,92.1025 +70864,36.412,90.69864 +70865,31.353,94.988 +70866,32.626,93.5227 +70867,33.872,92.1052 +70868,35.094,90.73064 +70869,29.975,94.9286 +70870,31.267,93.495 +70871,32.533,92.1082 +70872,33.775,90.76362 +70873,28.597,94.8681 +70874,29.909,93.4669 +70875,31.194,92.1115 +70876,32.456,90.79757 +70877,27.221,94.8066 +70878,28.551,93.4384 +70879,29.854,92.115 +70880,31.135,90.83246 +70881,25.845,94.744 +70882,27.193,93.4095 +70883,28.514,92.1189 +70884,29.813,90.86827 +70885,24.471,94.6803 +70886,25.835,93.3802 +70887,27.174,92.123 +70888,28.491,90.90497 +70889,23.098,94.6157 +70890,24.478,93.3505 +70891,25.834,92.1274 +70892,27.167,90.94254 +70893,21.726,94.5501 +70894,23.122,93.3206 +70895,24.493,92.132 +70896,25.842,90.98096 +70897,20.355,94.4836 +70898,21.766,93.2902 +70899,23.152,92.1368 +70900,24.517,91.0202 +70901,18.986,94.4162 +70902,20.41,93.2596 +70903,21.811,92.1419 +70904,23.19,91.0602 +70905,17.617,94.3479 +70906,19.055,93.2286 +70907,20.469,92.1473 +70908,21.862,91.101 +70909,16.25,94.2787 +70910,17.7,93.1973 +70911,19.127,92.1528 +70912,20.533,91.1426 +70913,14.884,94.2087 +70914,16.345,93.1656 +70915,17.784,92.1586 +70916,19.203,91.1848 +70917,13.519,94.138 +70918,14.991,93.1337 +70919,16.441,92.1645 +70920,17.872,91.2278 +70921,12.155,94.0665 +70922,13.637,93.1015 +70923,15.098,92.1706 +70924,16.539,91.2714 +70925,10.793,93.9943 +70926,12.284,93.0691 +70927,13.755,92.1769 +70928,15.206,91.3156 +70929,9.4312,93.9214 +70930,10.931,93.0363 +70931,12.411,92.1834 +70932,13.871,91.3605 +70933,8.0711,93.8478 +70934,9.5786,93.0034 +70935,11.066,92.19 +70936,12.536,91.4059 +70937,6.7122,93.7736 +70938,8.2265,92.9701 +70939,9.7218,92.1968 +70940,11.199,91.4519 +70941,5.3545,93.6989 +70942,6.8749,92.9367 +70943,8.3767,92.2037 +70944,9.8605,91.4983 +70945,3.9981,93.6235 +70946,5.5238,92.903 +70947,7.0314,92.2108 +70948,8.5212,91.5453 +70949,2.6429,93.5477 +70950,4.1731,92.8691 +70951,5.6856,92.2179 +70952,7.1808,91.5928 +70953,1.289,93.4713 +70954,2.8228,92.835 +70955,4.3394,92.2252 +70956,5.8391,91.6406 +70957,359.94,93.3945 +70958,1.4729,92.8007 +70959,2.9929,92.2326 +70960,4.4963,91.6889 +70961,358.58,93.3173 +70962,0.12353,92.7662 +70963,1.646,92.24 +70964,3.1522,91.7375 +70965,357.23,93.2397 +70966,358.77,92.7316 +70967,0.29876,92.2476 +70968,1.807,91.7865 +70969,355.89,93.1617 +70970,357.43,92.6968 +70971,358.95,92.2552 +70972,0.46057,91.8358 +70973,354.54,93.0834 +70974,356.08,92.6618 +70975,357.6,92.2628 +70976,359.11,91.8853 +70977,353.19,93.0049 +70978,354.73,92.6267 +70979,356.25,92.2705 +70980,357.76,91.9351 +70981,351.85,92.926 +70982,353.38,92.5915 +70983,354.91,92.2782 +70984,356.41,91.9851 +70985,350.5,92.847 +70986,352.04,92.5562 +70987,353.56,92.286 +70988,355.06,92.0353 +70989,349.16,92.7677 +70990,350.69,92.5208 +70991,352.21,92.2938 +70992,353.71,92.0857 +70993,347.82,92.6884 +70994,349.34,92.4853 +70995,350.86,92.3015 +70996,352.36,92.1361 +70997,346.48,92.6089 +70998,348,92.4497 +70999,349.51,92.3093 +71000,351,92.1867 +71001,345.14,92.5293 +71002,346.65,92.4141 +71003,348.16,92.317 +71004,349.65,92.2373 +71005,343.8,92.4496 +71006,345.31,92.3784 +71007,346.81,92.3247 +71008,348.29,92.2879 +71009,342.47,92.37 +71010,343.97,92.3426 +71011,345.45,92.3324 +71012,346.93,92.3385 +71013,341.13,92.2904 +71014,342.62,92.3068 +71015,344.1,92.34 +71016,345.57,92.3891 +71017,339.8,92.2108 +71018,341.28,92.271 +71019,342.75,92.3476 +71020,344.21,92.4396 +71021,338.46,92.1313 +71022,339.94,92.2352 +71023,341.4,92.355 +71024,342.85,92.49 +71025,337.13,92.0519 +71026,338.59,92.1994 +71027,340.04,92.3624 +71028,341.48,92.5403 +71029,335.8,91.9727 +71030,337.25,92.1636 +71031,338.69,92.3697 +71032,340.12,92.5903 +71033,334.47,91.8937 +71034,335.91,92.1278 +71035,337.34,92.3769 +71036,338.75,92.6402 +71037,333.14,91.8149 +71038,334.57,92.092 +71039,335.98,92.384 +71040,337.39,92.6899 +71041,331.82,91.7364 +71042,333.23,92.0563 +71043,334.63,92.3909 +71044,336.02,92.7393 +71045,330.49,91.6581 +71046,331.89,92.0207 +71047,333.27,92.3977 +71048,334.65,92.7884 +71049,329.17,91.5802 +71050,330.55,91.9851 +71051,331.92,92.4044 +71052,333.28,92.8371 +71053,327.84,91.5026 +71054,329.21,91.9496 +71055,330.56,92.4109 +71056,331.91,92.8855 +71057,326.52,91.4254 +71058,327.87,91.9141 +71059,329.21,92.4172 +71060,330.54,92.9335 +71061,325.2,91.3486 +71062,326.53,91.8788 +71063,327.85,92.4233 +71064,329.16,92.9811 +71065,323.88,91.2722 +71066,325.19,91.8436 +71067,326.49,92.4293 +71068,327.79,93.0283 +71069,322.56,91.1963 +71070,323.85,91.8085 +71071,325.14,92.435 +71072,326.41,93.0749 +71073,321.24,91.121 +71074,322.52,91.7736 +71075,323.78,92.4406 +71076,325.04,93.121 +71077,319.93,91.0461 +71078,321.18,91.7387 +71079,322.42,92.4459 +71080,323.66,93.1666 +71081,318.61,90.97189 +71082,319.84,91.7041 +71083,321.07,92.451 +71084,322.28,93.2116 +71085,317.3,90.89822 +71086,318.51,91.6696 +71087,319.71,92.4558 +71088,320.9,93.256 +71089,315.98,90.82519 +71090,317.17,91.6352 +71091,318.35,92.4604 +71092,319.52,93.2997 +71093,314.67,90.75281 +71094,315.83,91.6011 +71095,316.99,92.4647 +71096,318.14,93.3428 +71097,313.36,90.68111 +71098,314.5,91.5671 +71099,315.63,92.4687 +71100,316.75,93.3852 +71101,312.05,90.61012 +71102,313.16,91.5333 +71103,314.27,92.4725 +71104,315.37,93.4268 +71105,310.74,90.53988 +71106,311.83,91.4998 +71107,312.91,92.476 +71108,313.99,93.4677 +71109,309.43,90.4704 +71110,310.5,91.4664 +71111,311.55,92.4792 +71112,312.6,93.5078 +71113,308.12,90.40171 +71114,309.16,91.4333 +71115,310.19,92.482 +71116,311.21,93.5471 +71117,306.81,90.33384 +71118,307.83,91.4004 +71119,308.83,92.4846 +71120,309.83,93.5856 +71121,305.51,90.26682 +71122,306.49,91.3678 +71123,307.47,92.4868 +71124,308.44,93.6232 +71125,304.2,90.20066 +71126,305.16,91.3354 +71127,306.11,92.4887 +71128,307.05,93.6599 +71129,302.89,90.1354 +71130,303.83,91.3033 +71131,304.75,92.4902 +71132,305.66,93.6956 +71133,301.59,90.071061 +71134,302.5,91.2715 +71135,303.39,92.4914 +71136,304.27,93.7305 +71137,300.29,90.0076622 +71138,301.16,91.2399 +71139,302.03,92.4923 +71140,302.88,93.7643 +71141,298.99,89.945229 +71142,299.83,91.2087 +71143,300.67,92.4927 +71144,301.49,93.7971 +71145,297.68,89.88378 +71146,298.5,91.1777 +71147,299.3,92.4928 +71148,300.09,93.829 +71149,296.38,89.82335 +71150,297.17,91.147 +71151,297.94,92.4925 +71152,298.7,93.8597 +71153,295.08,89.76395 +71154,295.84,91.1167 +71155,296.58,92.4918 +71156,297.31,93.8894 +71157,293.78,89.7056 +71158,294.51,91.0866 +71159,295.22,92.4907 +71160,295.91,93.918 +71161,292.48,89.64832 +71162,293.18,91.0569 +71163,293.85,92.4892 +71164,294.52,93.9455 +71165,291.19,89.59213 +71166,291.85,91.0275 +71167,292.49,92.4873 +71168,293.12,93.9718 +71169,289.89,89.53706 +71170,290.52,90.99847 +71171,291.13,92.4849 +71172,291.72,93.997 +71173,288.59,89.48311 +71174,289.19,90.96978 +71175,289.77,92.4821 +71176,290.33,94.0209 +71177,287.29,89.43032 +71178,287.86,90.94143 +71179,288.4,92.4789 +71180,288.93,94.0437 +71181,286,89.37869 +71182,286.53,90.91345 +71183,287.04,92.4753 +71184,287.53,94.0652 +71185,284.7,89.32824 +71186,285.2,90.88583 +71187,285.68,92.4712 +71188,286.13,94.0855 +71189,283.41,89.27899 +71190,283.87,90.85858 +71191,284.31,92.4666 +71192,284.73,94.1045 +71193,282.11,89.23095 +71194,282.54,90.8317 +71195,282.95,92.4616 +71196,283.33,94.1223 +71197,280.82,89.18414 +71198,281.21,90.80521 +71199,281.58,92.4562 +71200,281.94,94.1387 +71201,279.52,89.13857 +71202,279.88,90.7791 +71203,280.22,92.4502 +71204,280.54,94.1538 +71205,278.23,89.09426 +71206,278.55,90.75339 +71207,278.86,92.4438 +71208,279.14,94.1676 +71209,276.94,89.05122 +71210,277.23,90.72806 +71211,277.49,92.4369 +71212,277.73,94.18 +71213,275.64,89.00946 +71214,275.9,90.70314 +71215,276.13,92.4296 +71216,276.33,94.1911 +71217,274.35,88.969 +71218,274.57,90.67863 +71219,274.76,92.4217 +71220,274.93,94.2007 +71221,273.06,88.9298 +71222,273.24,90.65452 +71223,273.4,92.4133 +71224,273.53,94.209 +71225,271.77,88.892 +71226,271.91,90.63082 +71227,272.04,92.4045 +71228,272.13,94.2159 +71229,270.47,88.8554 +71230,270.59,90.60754 +71231,270.67,92.3951 +71232,270.73,94.2213 +71233,269.18,88.8202 +71234,269.26,90.58468 +71235,269.31,92.3853 +71236,269.33,94.2253 +71237,267.89,88.7864 +71238,267.93,90.56224 +71239,267.94,92.3749 +71240,267.93,94.2279 +71241,266.6,88.7538 +71242,266.6,90.54022 +71243,266.58,92.364 +71244,266.53,94.229 +71245,265.31,88.7227 +71246,265.27,90.51863 +71247,265.21,92.3527 +71248,265.12,94.2286 +71249,264.02,88.6929 +71250,263.95,90.49747 +71251,263.85,92.3408 +71252,263.72,94.2268 +71253,262.72,88.6644 +71254,262.62,90.47674 +71255,262.49,92.3284 +71256,262.32,94.2234 +71257,261.43,88.6374 +71258,261.29,90.45645 +71259,261.12,92.3154 +71260,260.92,94.2186 +71261,260.14,88.6117 +71262,259.96,90.43659 +71263,259.76,92.302 +71264,259.52,94.2123 +71265,258.85,88.5873 +71266,258.64,90.41716 +71267,258.39,92.288 +71268,258.12,94.2045 +71269,257.56,88.5644 +71270,257.31,90.39818 +71271,257.03,92.2735 +71272,256.72,94.1952 +71273,256.27,88.5428 +71274,255.98,90.37963 +71275,255.67,92.2585 +71276,255.32,94.1844 +71277,254.97,88.5226 +71278,254.65,90.36152 +71279,254.3,92.243 +71280,253.92,94.1721 +71281,253.68,88.5038 +71282,253.33,90.34384 +71283,252.94,92.2269 +71284,252.52,94.1582 +71285,252.39,88.4864 +71286,252,90.32661 +71287,251.58,92.2103 +71288,251.12,94.1429 +71289,251.1,88.4703 +71290,250.67,90.30982 +71291,250.21,92.1932 +71292,249.72,94.126 +71293,249.8,88.4556 +71294,249.34,90.29347 +71295,248.85,92.1756 +71296,248.32,94.1076 +71297,248.51,88.4424 +71298,248.02,90.27755 +71299,247.49,92.1574 +71300,246.92,94.0877 +71301,247.22,88.4304 +71302,246.69,90.26207 +71303,246.12,92.1387 +71304,245.52,94.0663 +71305,245.92,88.4199 +71306,245.36,90.24703 +71307,244.76,92.1195 +71308,244.12,94.0433 +71309,244.63,88.4107 +71310,244.03,90.23242 +71311,243.4,92.0998 +71312,242.73,94.0189 +71313,243.34,88.4028 +71314,242.7,90.21825 +71315,242.04,92.0796 +71316,241.33,93.9929 +71317,242.04,88.3964 +71318,241.38,90.20451 +71319,240.68,92.0588 +71320,239.93,93.9655 +71321,240.75,88.3912 +71322,240.05,90.19119 +71323,239.31,92.0375 +71324,238.54,93.9365 +71325,239.45,88.3874 +71326,238.72,90.17831 +71327,237.95,92.0158 +71328,237.14,93.9061 +71329,238.15,88.3849 +71330,237.39,90.16585 +71331,236.59,91.9935 +71332,235.75,93.8742 +71333,236.86,88.3838 +71334,236.06,90.15381 +71335,235.23,91.9707 +71336,234.35,93.8408 +71337,235.56,88.384 +71338,234.73,90.14219 +71339,233.87,91.9474 +71340,232.96,93.8059 +71341,234.26,88.3854 +71342,233.4,90.13099 +71343,232.51,91.9236 +71344,231.57,93.7696 +71345,232.96,88.3882 +71346,232.07,90.1202 +71347,231.15,91.8993 +71348,230.18,93.7319 +71349,231.66,88.3922 +71350,230.74,90.10982 +71351,229.79,91.8745 +71352,228.79,93.6927 +71353,230.36,88.3975 +71354,229.41,90.099845 +71355,228.43,91.8492 +71356,227.4,93.6521 +71357,229.06,88.4041 +71358,228.08,90.090271 +71359,227.07,91.8235 +71360,226.01,93.6101 +71361,227.76,88.4119 +71362,226.75,90.081094 +71363,225.71,91.7972 +71364,224.62,93.5666 +71365,226.46,88.4209 +71366,225.42,90.072309 +71367,224.35,91.7705 +71368,223.23,93.5219 +71369,225.16,88.4312 +71370,224.09,90.063912 +71371,222.99,91.7433 +71372,221.84,93.4757 +71373,223.85,88.4427 +71374,222.76,90.055898 +71375,221.63,91.7157 +71376,220.46,93.4282 +71377,222.55,88.4553 +71378,221.43,90.048261 +71379,220.27,91.6876 +71380,219.07,93.3794 +71381,221.24,88.4691 +71382,220.1,90.040997 +71383,218.92,91.659 +71384,217.69,93.3292 +71385,219.94,88.4841 +71386,218.77,90.034099 +71387,217.56,91.63 +71388,216.31,93.2778 +71389,218.63,88.5002 +71390,217.44,90.027563 +71391,216.2,91.6006 +71392,214.92,93.2251 +71393,217.32,88.5174 +71394,216.1,90.021381 +71395,214.85,91.5707 +71396,213.54,93.1711 +71397,216.02,88.5357 +71398,214.77,90.015549 +71399,213.49,91.5404 +71400,212.16,93.1159 +71401,214.71,88.5551 +71402,213.44,90.010059 +71403,212.13,91.5096 +71404,210.78,93.0595 +71405,213.4,88.5755 +71406,212.11,90.0049055 +71407,210.78,91.4785 +71408,209.41,93.0019 +71409,212.08,88.597 +71410,210.77,90.0000812 +71411,209.42,91.4469 +71412,208.03,92.943 +71413,210.77,88.6196 +71414,209.44,89.9955795 +71415,208.07,91.415 +71416,206.65,92.8831 +71417,209.46,88.6431 +71418,208.11,89.9913934 +71419,206.71,91.3826 +71420,205.28,92.822 +71421,208.14,88.6676 +71422,206.77,89.987516 +71423,205.36,91.3499 +71424,203.91,92.7598 +71425,206.83,88.693 +71426,205.44,89.983939 +71427,204.01,91.3168 +71428,202.54,92.6966 +71429,205.51,88.7194 +71430,204.1,89.980655 +71431,202.65,91.2833 +71432,201.16,92.6322 +71433,204.2,88.7467 +71434,202.77,89.977657 +71435,201.3,91.2495 +71436,199.79,92.5669 +71437,202.88,88.7749 +71438,201.43,89.974937 +71439,199.95,91.2153 +71440,198.43,92.5005 +71441,201.56,88.8039 +71442,200.09,89.972487 +71443,198.6,91.1808 +71444,197.06,92.4332 +71445,200.24,88.8338 +71446,198.76,89.970299 +71447,197.25,91.1459 +71448,195.69,92.3649 +71449,198.91,88.8645 +71450,197.42,89.968363 +71451,195.89,91.1107 +71452,194.33,92.2957 +71453,197.59,88.896 +71454,196.08,89.966673 +71455,194.54,91.0752 +71456,192.96,92.2256 +71457,196.27,88.9283 +71458,194.75,89.965219 +71459,193.19,91.0394 +71460,191.6,92.1546 +71461,194.94,88.9613 +71462,193.41,89.963992 +71463,191.84,91.0033 +71464,190.24,92.0828 +71465,193.62,88.995 +71466,192.07,89.962984 +71467,190.49,90.96685 +71468,188.88,92.0102 +71469,192.29,89.02942 +71470,190.73,89.962185 +71471,189.15,90.93016 +71472,187.52,91.9368 +71473,190.96,89.06448 +71474,189.39,89.961587 +71475,187.8,90.8932 +71476,186.17,91.8627 +71477,189.63,89.10018 +71478,188.06,89.961181 +71479,186.45,90.85599 +71480,184.81,91.7878 +71481,188.3,89.13649 +71482,186.72,89.960957 +71483,185.1,90.81852 +71484,183.45,91.7123 +71485,186.97,89.17337 +71486,185.38,89.960905 +71487,183.76,90.78081 +71488,182.1,91.6361 +71489,185.63,89.21081 +71490,184.04,89.961016 +71491,182.41,90.74287 +71492,180.75,91.5592 +71493,184.3,89.24877 +71494,182.69,89.961281 +71495,181.06,90.70471 +71496,179.4,91.4818 +71497,182.96,89.28722 +71498,181.35,89.96169 +71499,179.72,90.66634 +71500,178.05,91.4038 +71501,181.62,89.32614 +71502,180.01,89.962232 +71503,178.37,90.62778 +71504,176.7,91.3253 +71505,180.28,89.3655 +71506,178.67,89.962899 +71507,177.03,90.58902 +71508,175.35,91.2463 +71509,178.94,89.40526 +71510,177.33,89.96368 +71511,175.68,90.55008 +71512,174.01,91.1668 +71513,177.6,89.4454 +71514,175.99,89.964565 +71515,174.34,90.51098 +71516,172.67,91.0869 +71517,176.26,89.48589 +71518,174.64,89.965544 +71519,173,90.47172 +71520,171.32,91.0066 +71521,174.92,89.5267 +71522,173.3,89.966608 +71523,171.65,90.43231 +71524,169.98,90.92586 +71525,173.57,89.5678 +71526,171.95,89.967744 +71527,170.31,90.39277 +71528,168.64,90.84484 +71529,172.23,89.60915 +71530,170.61,89.968945 +71531,168.97,90.3531 +71532,167.3,90.76352 +71533,170.88,89.65074 +71534,169.27,89.970198 +71535,167.63,90.31332 +71536,165.97,90.68193 +71537,169.53,89.69252 +71538,167.92,89.971495 +71539,166.29,90.27343 +71540,164.63,90.6001 +71541,168.18,89.73447 +71542,166.58,89.972824 +71543,164.95,90.23346 +71544,163.29,90.51808 +71545,166.83,89.77656 +71546,165.23,89.974175 +71547,163.61,90.1934 +71548,161.96,90.43588 +71549,165.48,89.81876 +71550,163.88,89.975538 +71551,162.27,90.15327 +71552,160.63,90.35355 +71553,164.12,89.86103 +71554,162.54,89.976901 +71555,160.93,90.11308 +71556,159.3,90.27112 +71557,162.77,89.903345 +71558,161.19,89.978256 +71559,159.59,90.072842 +71560,157.97,90.18863 +71561,161.41,89.945677 +71562,159.84,89.979591 +71563,158.25,90.032568 +71564,156.64,90.1061 +71565,160.05,89.987992 +71566,158.49,89.980896 +71567,156.92,89.9922667 +71568,155.31,90.023563 +71569,158.69,90.03026 +71570,157.15,89.982161 +71571,155.58,89.95195 +71572,153.99,89.941062 +71573,157.33,90.072451 +71574,155.8,89.983374 +71575,154.24,89.911629 +71576,152.66,89.85863 +71577,155.97,90.11453 +71578,154.45,89.984526 +71579,152.91,89.87131 +71580,151.34,89.77629 +71581,154.61,90.15648 +71582,153.1,89.985606 +71583,151.57,89.83102 +71584,150.02,89.69409 +71585,153.25,90.19825 +71586,151.75,89.986604 +71587,150.23,89.79075 +71588,148.7,89.61204 +71589,151.88,90.23982 +71590,150.4,89.987509 +71591,148.9,89.75052 +71592,147.38,89.5302 +71593,150.52,90.28116 +71594,149.05,89.988312 +71595,147.57,89.71034 +71596,146.06,89.44858 +71597,149.15,90.32224 +71598,147.7,89.989001 +71599,146.23,89.67021 +71600,144.75,89.36723 +71601,147.78,90.36303 +71602,146.35,89.989566 +71603,144.9,89.63016 +71604,143.43,89.28617 +71605,146.41,90.4035 +71606,145,89.989998 +71607,143.56,89.5902 +71608,142.12,89.20543 +71609,145.04,90.44361 +71610,143.65,89.9902861 +71611,142.23,89.55032 +71612,140.8,89.12506 +71613,143.67,90.48334 +71614,142.29,89.9904202 +71615,140.9,89.51055 +71616,139.49,89.04506 +71617,142.3,90.52266 +71618,140.94,89.9903904 +71619,139.57,89.47088 +71620,138.18,88.9655 +71621,140.92,90.56154 +71622,139.59,89.9901868 +71623,138.24,89.43135 +71624,136.87,88.8864 +71625,139.55,90.59994 +71626,138.23,89.989799 +71627,136.91,89.39194 +71628,135.56,88.8077 +71629,138.17,90.63785 +71630,136.88,89.989219 +71631,135.57,89.35268 +71632,134.25,88.7296 +71633,136.79,90.67523 +71634,135.53,89.988434 +71635,134.24,89.31357 +71636,132.95,88.652 +71637,135.41,90.71204 +71638,134.17,89.987437 +71639,132.91,89.27463 +71640,131.64,88.575 +71641,134.04,90.74827 +71642,132.82,89.986218 +71643,131.59,89.23586 +71644,130.34,88.4985 +71645,132.66,90.78389 +71646,131.46,89.984767 +71647,130.26,89.19727 +71648,129.03,88.4227 +71649,131.27,90.81886 +71650,130.11,89.983075 +71651,128.93,89.15887 +71652,127.73,88.3476 +71653,129.89,90.85317 +71654,128.75,89.981133 +71655,127.6,89.12067 +71656,126.43,88.2731 +71657,128.51,90.88677 +71658,127.4,89.978931 +71659,126.27,89.08269 +71660,125.13,88.1994 +71661,127.12,90.91965 +71662,126.04,89.976461 +71663,124.94,89.04493 +71664,123.83,88.1264 +71665,125.74,90.95178 +71666,124.69,89.973714 +71667,123.62,89.00739 +71668,122.53,88.0541 +71669,124.35,90.98312 +71670,123.33,89.970681 +71671,122.29,88.9701 +71672,121.23,87.9827 +71673,122.97,91.0137 +71674,121.97,89.967354 +71675,120.96,88.933 +71676,119.93,87.912 +71677,121.58,91.0434 +71678,120.62,89.963724 +71679,119.64,88.8963 +71680,118.64,87.8422 +71681,120.19,91.0722 +71682,119.26,89.959783 +71683,118.31,88.8597 +71684,117.34,87.7733 +71685,118.8,91.1002 +71686,117.9,89.955522 +71687,116.98,88.8235 +71688,116.05,87.7052 +71689,117.41,91.1273 +71690,116.54,89.950935 +71691,115.66,88.7875 +71692,114.76,87.6381 +71693,116.02,91.1534 +71694,115.19,89.946012 +71695,114.33,88.7518 +71696,113.46,87.5719 +71697,114.63,91.1786 +71698,113.83,89.940746 +71699,113.01,88.7164 +71700,112.17,87.5066 +71701,113.24,91.2028 +71702,112.47,89.93513 +71703,111.68,88.6813 +71704,110.88,87.4424 +71705,111.84,91.226 +71706,111.11,89.929156 +71707,110.36,88.6465 +71708,109.59,87.3791 +71709,110.45,91.2482 +71710,109.75,89.922818 +71711,109.04,88.6121 +71712,108.3,87.3169 +71713,109.06,91.2694 +71714,108.4,89.916107 +71715,107.71,88.5779 +71716,107.01,87.2557 +71717,107.66,91.2895 +71718,107.04,89.909018 +71719,106.39,88.5441 +71720,105.72,87.1955 +71721,106.27,91.3085 +71722,105.68,89.901544 +71723,105.07,88.5107 +71724,104.43,87.1365 +71725,104.87,91.3264 +71726,104.32,89.89368 +71727,103.74,88.4775 +71728,103.14,87.0785 +71729,103.48,91.3431 +71730,102.96,89.88541 +71731,102.42,88.4448 +71732,101.86,87.0217 +71733,102.08,91.3588 +71734,101.6,89.87675 +71735,101.1,88.4124 +71736,100.57,86.966 +71737,100.68,91.3732 +71738,100.24,89.86767 +71739,99.774,88.3803 +71740,99.284,86.9114 +71741,99.285,91.3865 +71742,98.88,89.85817 +71743,98.451,88.3486 +71744,97.999,86.8581 +71745,97.887,91.3986 +71746,97.521,89.84826 +71747,97.129,88.3173 +71748,96.713,86.8059 +71749,96.489,91.4095 +71750,96.161,89.83792 +71751,95.807,88.2864 +71752,95.428,86.7549 +71753,95.09,91.4191 +71754,94.801,89.82714 +71755,94.485,88.2559 +71756,94.144,86.7051 +71757,93.692,91.4275 +71758,93.441,89.81593 +71759,93.163,88.2257 +71760,92.86,86.6565 +71761,92.293,91.4346 +71762,92.081,89.80428 +71763,91.842,88.196 +71764,91.576,86.6092 +71765,90.893,91.4405 +71766,90.721,89.79219 +71767,90.52,88.1666 +71768,90.292,86.5631 +71769,89.494,91.445 +71770,89.361,89.77964 +71771,89.199,88.1376 +71772,89.009,86.5183 +71773,88.094,91.4483 +71774,88.001,89.76664 +71775,87.878,88.1091 +71776,87.726,86.4748 +71777,86.694,91.4502 +71778,86.641,89.75319 +71779,86.556,88.081 +71780,86.443,86.4325 +71781,85.295,91.4508 +71782,85.281,89.73927 +71783,85.235,88.0532 +71784,85.16,86.3916 +71785,83.895,91.4501 +71786,83.921,89.72489 +71787,83.914,88.0259 +71788,83.877,86.3519 +71789,82.495,91.448 +71790,82.561,89.71004 +71791,82.593,87.999 +71792,82.595,86.3136 +71793,81.095,91.4445 +71794,81.201,89.69472 +71795,81.272,87.9726 +71796,81.312,86.2765 +71797,79.695,91.4397 +71798,79.841,89.67893 +71799,79.952,87.9465 +71800,80.03,86.2408 +71801,78.295,91.4335 +71802,78.481,89.66266 +71803,78.631,87.9209 +71804,78.748,86.2064 +71805,76.895,91.4259 +71806,77.121,89.64592 +71807,77.31,87.8957 +71808,77.465,86.1734 +71809,75.496,91.4169 +71810,75.761,89.6287 +71811,75.989,87.871 +71812,76.183,86.1417 +71813,74.096,91.4066 +71814,74.402,89.61099 +71815,74.668,87.8467 +71816,74.9,86.1113 +71817,72.697,91.3948 +71818,73.042,89.59281 +71819,73.347,87.8228 +71820,73.618,86.0823 +71821,71.298,91.3816 +71822,71.682,89.57414 +71823,72.027,87.7994 +71824,72.335,86.0546 +71825,69.899,91.367 +71826,70.323,89.55499 +71827,70.706,87.7763 +71828,71.052,86.0283 +71829,68.5,91.351 +71830,68.964,89.53535 +71831,69.385,87.7538 +71832,69.769,86.0033 +71833,67.102,91.3335 +71834,67.605,89.51522 +71835,68.064,87.7316 +71836,68.486,85.9797 +71837,65.704,91.3147 +71838,66.246,89.49461 +71839,66.743,87.7099 +71840,67.202,85.9575 +71841,64.307,91.2944 +71842,64.887,89.47352 +71843,65.422,87.6887 +71844,65.918,85.9365 +71845,62.91,91.2727 +71846,63.528,89.45193 +71847,64.101,87.6679 +71848,64.634,85.917 +71849,61.513,91.2495 +71850,62.169,89.42987 +71851,62.78,87.6475 +71852,63.35,85.8988 +71853,60.117,91.225 +71854,60.811,89.40732 +71855,61.458,87.6275 +71856,62.065,85.8819 +71857,58.722,91.199 +71858,59.453,89.38428 +71859,60.137,87.608 +71860,60.78,85.8663 +71861,57.326,91.1716 +71862,58.095,89.36077 +71863,58.815,87.5889 +71864,59.494,85.8521 +71865,55.932,91.1428 +71866,56.737,89.33677 +71867,57.494,87.5703 +71868,58.208,85.8393 +71869,54.538,91.1125 +71870,55.38,89.31229 +71871,56.172,87.5521 +71872,56.921,85.8277 +71873,53.145,91.0809 +71874,54.022,89.28734 +71875,54.85,87.5343 +71876,55.634,85.8175 +71877,51.752,91.0479 +71878,52.665,89.26191 +71879,53.528,87.5169 +71880,54.347,85.8086 +71881,50.36,91.0134 +71882,51.309,89.23601 +71883,52.206,87.5 +71884,53.059,85.8009 +71885,48.969,90.97762 +71886,49.952,89.20964 +71887,50.883,87.4835 +71888,51.77,85.7946 +71889,47.579,90.94042 +71890,48.596,89.18281 +71891,49.561,87.4674 +71892,50.481,85.7896 +71893,46.189,90.90186 +71894,47.24,89.15551 +71895,48.238,87.4517 +71896,49.191,85.7858 +71897,44.8,90.86193 +71898,45.884,89.12775 +71899,46.915,87.4365 +71900,47.9,85.7833 +71901,43.412,90.82065 +71902,44.529,89.09953 +71903,45.592,87.4216 +71904,46.609,85.782 +71905,42.025,90.77803 +71906,43.174,89.07086 +71907,44.268,87.4072 +71908,45.317,85.782 +71909,40.639,90.73409 +71910,41.819,89.04174 +71911,42.944,87.3931 +71912,44.024,85.7833 +71913,39.253,90.68882 +71914,40.464,89.01218 +71915,41.621,87.3795 +71916,42.73,85.7857 +71917,37.869,90.64225 +71918,39.11,88.9822 +71919,40.296,87.3662 +71920,41.436,85.7893 +71921,36.485,90.59439 +71922,37.757,88.9517 +71923,38.972,87.3533 +71924,40.141,85.7942 +71925,35.103,90.54526 +71926,36.403,88.9209 +71927,37.648,87.3408 +71928,38.845,85.8002 +71929,33.721,90.49486 +71930,35.05,88.8896 +71931,36.323,87.3287 +71932,37.548,85.8073 +71933,32.341,90.44322 +71934,33.697,88.8579 +71935,34.997,87.317 +71936,36.25,85.8156 +71937,30.961,90.39035 +71938,32.345,88.8257 +71939,33.672,87.3057 +71940,34.952,85.8251 +71941,29.583,90.33627 +71942,30.993,88.7932 +71943,32.346,87.2947 +71944,33.652,85.8356 +71945,28.206,90.281 +71946,29.641,88.7602 +71947,31.02,87.284 +71948,32.352,85.8472 +71949,26.83,90.22455 +71950,28.29,88.7269 +71951,29.694,87.2737 +71952,31.05,85.86 +71953,25.455,90.16694 +71954,26.939,88.6932 +71955,28.367,87.2638 +71956,29.748,85.8737 +71957,24.081,90.1082 +71958,25.589,88.6591 +71959,27.04,87.2542 +71960,28.444,85.8885 +71961,22.708,90.048337 +71962,24.239,88.6246 +71963,25.713,87.2449 +71964,27.14,85.9043 +71965,21.337,89.987382 +71966,22.889,88.5897 +71967,24.386,87.2359 +71968,25.834,85.9211 +71969,19.967,89.925352 +71970,21.54,88.5545 +71971,23.058,87.2273 +71972,24.528,85.9389 +71973,18.598,89.86227 +71974,20.191,88.5189 +71975,21.729,87.219 +71976,23.22,85.9577 +71977,17.23,89.79816 +71978,18.843,88.483 +71979,20.401,87.211 +71980,21.911,85.9774 +71981,15.863,89.73304 +71982,17.495,88.4467 +71983,19.072,87.2033 +71984,20.601,85.998 +71985,14.498,89.66694 +71986,16.148,88.4101 +71987,17.743,87.1958 +71988,19.29,86.0194 +71989,13.134,89.59988 +71990,14.801,88.3732 +71991,16.413,87.1887 +71992,17.978,86.0418 +71993,11.772,89.53189 +71994,13.454,88.336 +71995,15.083,87.1818 +71996,16.665,86.065 +71997,10.41,89.46299 +71998,12.108,88.2984 +71999,13.753,87.1752 +72000,15.35,86.089 +72001,9.0504,89.39321 +72002,10.763,88.2606 +72003,12.422,87.1689 +72004,14.034,86.1138 +72005,7.6918,89.32257 +72006,9.4177,88.2224 +72007,11.091,87.1628 +72008,12.718,86.1394 +72009,6.3346,89.2511 +72010,8.0731,88.184 +72011,9.7591,87.1569 +72012,11.399,86.1657 +72013,4.9787,89.17882 +72014,6.7289,88.1453 +72015,8.4272,87.1513 +72016,10.08,86.1927 +72017,3.6241,89.10578 +72018,5.3852,88.1064 +72019,7.0949,87.1459 +72020,8.7595,86.2205 +72021,2.271,89.03198 +72022,4.042,88.0671 +72023,5.7622,87.1407 +72024,7.4377,86.2489 +72025,0.91921,88.9575 +72026,2.6993,88.0277 +72027,4.4291,87.1358 +72028,6.1146,86.2779 +72029,359.57,88.8823 +72030,1.3571,87.988 +72031,3.0956,87.131 +72032,4.7902,86.3076 +72033,358.22,88.8064 +72034,0.015332,87.9481 +72035,1.7617,87.1264 +72036,3.4645,86.3379 +72037,356.87,88.7299 +72038,358.67,87.9079 +72039,0.42741,87.122 +72040,2.1376,86.3687 +72041,355.53,88.6528 +72042,357.33,87.8676 +72043,359.09,87.1178 +72044,0.80937,86.4001 +72045,354.18,88.5751 +72046,355.99,87.827 +72047,357.76,87.1137 +72048,359.48,86.432 +72049,352.84,88.4969 +72050,354.65,87.7863 +72051,356.42,87.1098 +72052,358.15,86.4643 +72053,351.5,88.4182 +72054,353.31,87.7454 +72055,355.09,87.1061 +72056,356.82,86.4971 +72057,350.16,88.339 +72058,351.98,87.7043 +72059,353.75,87.1024 +72060,355.48,86.5304 +72061,348.82,88.2593 +72062,350.64,87.663 +72063,352.41,87.0989 +72064,354.15,86.564 +72065,347.48,88.1792 +72066,349.3,87.6216 +72067,351.08,87.0955 +72068,352.81,86.598 +72069,346.14,88.0988 +72070,347.96,87.5801 +72071,349.74,87.0922 +72072,351.48,86.6324 +72073,344.81,88.018 +72074,346.63,87.5384 +72075,348.4,87.089 +72076,350.14,86.667 +72077,343.48,87.9368 +72078,345.29,87.4966 +72079,347.06,87.0859 +72080,348.8,86.702 +72081,342.14,87.8554 +72082,343.95,87.4548 +72083,345.72,87.0829 +72084,347.45,86.7372 +72085,340.81,87.7737 +72086,342.62,87.4128 +72087,344.38,87.0799 +72088,346.11,86.7726 +72089,339.48,87.6917 +72090,341.28,87.3707 +72091,343.04,87.077 +72092,344.77,86.8082 +72093,338.16,87.6096 +72094,339.95,87.3286 +72095,341.7,87.0741 +72096,343.42,86.844 +72097,336.83,87.5273 +72098,338.62,87.2863 +72099,340.36,87.0713 +72100,342.08,86.8799 +72101,335.51,87.4449 +72102,337.28,87.2441 +72103,339.02,87.0685 +72104,340.73,86.9159 +72105,334.18,87.3624 +72106,335.95,87.2018 +72107,337.68,87.0657 +72108,339.38,86.952 +72109,332.86,87.2798 +72110,334.62,87.1594 +72111,336.34,87.0629 +72112,338.03,86.9882 +72113,331.54,87.1972 +72114,333.29,87.117 +72115,335,87.0601 +72116,336.68,87.0243 +72117,330.22,87.1146 +72118,331.95,87.0747 +72119,333.65,87.0573 +72120,335.32,87.0605 +72121,328.9,87.032 +72122,330.62,87.0323 +72123,332.31,87.0545 +72124,333.97,87.0966 +72125,327.59,86.9494 +72126,329.29,86.9899 +72127,330.97,87.0516 +72128,332.61,87.1326 +72129,326.27,86.867 +72130,327.96,86.9475 +72131,329.62,87.0487 +72132,331.25,87.1686 +72133,324.96,86.7847 +72134,326.63,86.9052 +72135,328.28,87.0458 +72136,329.9,87.2044 +72137,323.64,86.7025 +72138,325.3,86.8629 +72139,326.94,87.0427 +72140,328.54,87.24 +72141,322.33,86.6205 +72142,323.98,86.8207 +72143,325.59,87.0396 +72144,327.17,87.2755 +72145,321.02,86.5388 +72146,322.65,86.7785 +72147,324.25,87.0364 +72148,325.81,87.3108 +72149,319.71,86.4573 +72150,321.32,86.7364 +72151,322.9,87.0332 +72152,324.45,87.3458 +72153,318.41,86.3761 +72154,319.99,86.6944 +72155,321.55,87.0298 +72156,323.08,87.3805 +72157,317.1,86.2952 +72158,318.67,86.6524 +72159,320.21,87.0263 +72160,321.72,87.4149 +72161,315.8,86.2146 +72162,317.34,86.6106 +72163,318.86,87.0226 +72164,320.35,87.449 +72165,314.49,86.1344 +72166,316.02,86.5689 +72167,317.51,87.0189 +72168,318.98,87.4827 +72169,313.19,86.0546 +72170,314.69,86.5273 +72171,316.16,87.015 +72172,317.61,87.5161 +72173,311.89,85.9753 +72174,313.37,86.4858 +72175,314.82,87.0109 +72176,316.24,87.549 +72177,310.59,85.8964 +72178,312.04,86.4445 +72179,313.47,87.0067 +72180,314.87,87.5814 +72181,309.29,85.818 +72182,310.72,86.4033 +72183,312.12,87.0023 +72184,313.5,87.6134 +72185,307.99,85.7401 +72186,309.39,86.3623 +72187,310.77,86.9978 +72188,312.12,87.6449 +72189,306.69,85.6628 +72190,308.07,86.3214 +72191,309.42,86.993 +72192,310.75,87.6759 +72193,305.4,85.5861 +72194,306.75,86.2807 +72195,308.07,86.988 +72196,309.37,87.7063 +72197,304.1,85.51 +72198,305.42,86.2402 +72199,306.72,86.9829 +72200,308,87.7362 +72201,302.81,85.4345 +72202,304.1,86.2 +72203,305.37,86.9775 +72204,306.62,87.7654 +72205,301.52,85.3597 +72206,302.78,86.1599 +72207,304.02,86.9719 +72208,305.24,87.794 +72209,300.23,85.2855 +72210,301.46,86.12 +72211,302.67,86.966 +72212,303.86,87.8219 +72213,298.94,85.2121 +72214,300.14,86.0804 +72215,301.32,86.96 +72216,302.48,87.8492 +72217,297.65,85.1394 +72218,298.82,86.041 +72219,299.97,86.9536 +72220,301.09,87.8757 +72221,296.36,85.0675 +72222,297.5,86.0018 +72223,298.62,86.947 +72224,299.71,87.9015 +72225,295.07,84.9964 +72226,296.18,85.9629 +72227,297.26,86.9402 +72228,298.33,87.9265 +72229,293.78,84.9261 +72230,294.86,85.9243 +72231,295.91,86.933 +72232,296.94,87.9508 +72233,292.5,84.8567 +72234,293.54,85.8859 +72235,294.56,86.9256 +72236,295.56,87.9742 +72237,291.21,84.7881 +72238,292.22,85.8478 +72239,293.21,86.9179 +72240,294.17,87.9968 +72241,289.93,84.7204 +72242,290.9,85.8099 +72243,291.85,86.9099 +72244,292.78,88.0186 +72245,288.65,84.6536 +72246,289.58,85.7724 +72247,290.5,86.9015 +72248,291.39,88.0394 +72249,287.36,84.5877 +72250,288.27,85.7352 +72251,289.15,86.8929 +72252,290.01,88.0594 +72253,286.08,84.5228 +72254,286.95,85.6982 +72255,287.79,86.8839 +72256,288.62,88.0785 +72257,284.8,84.4589 +72258,285.63,85.6616 +72259,286.44,86.8747 +72260,287.23,88.0966 +72261,283.52,84.396 +72262,284.31,85.6253 +72263,285.09,86.865 +72264,285.83,88.1138 +72265,282.24,84.3341 +72266,283,85.5893 +72267,283.73,86.8551 +72268,284.44,88.1299 +72269,280.96,84.2732 +72270,281.68,85.5537 +72271,282.38,86.8448 +72272,283.05,88.1451 +72273,279.68,84.2134 +72274,280.36,85.5184 +72275,281.02,86.8341 +72276,281.66,88.1592 +72277,278.4,84.1547 +72278,279.05,85.4834 +72279,279.67,86.8231 +72280,280.26,88.1723 +72281,277.13,84.097 +72282,277.73,85.4488 +72283,278.31,86.8117 +72284,278.87,88.1844 +72285,275.85,84.0405 +72286,276.42,85.4146 +72287,276.96,86.7999 +72288,277.48,88.1953 +72289,274.57,83.9851 +72290,275.1,85.3807 +72291,275.6,86.7878 +72292,276.08,88.2052 +72293,273.3,83.9308 +72294,273.79,85.3472 +72295,274.25,86.7752 +72296,274.69,88.214 +72297,272.02,83.8777 +72298,272.47,85.314 +72299,272.89,86.7623 +72300,273.29,88.2216 +72301,270.75,83.8257 +72302,271.16,85.2813 +72303,271.54,86.749 +72304,271.89,88.2281 +72305,269.47,83.7749 +72306,269.84,85.2489 +72307,270.18,86.7353 +72308,270.5,88.2334 +72309,268.2,83.7254 +72310,268.53,85.2169 +72311,268.83,86.7212 +72312,269.1,88.2376 +72313,266.92,83.677 +72314,267.21,85.1853 +72315,267.47,86.7067 +72316,267.7,88.2405 +72317,265.65,83.6299 +72318,265.9,85.1541 +72319,266.12,86.6918 +72320,266.31,88.2423 +72321,264.37,83.5839 +72322,264.58,85.1233 +72323,264.76,86.6764 +72324,264.91,88.2428 +72325,263.1,83.5393 +72326,263.27,85.0929 +72327,263.4,86.6607 +72328,263.51,88.2422 +72329,261.83,83.4959 +72330,261.95,85.0629 +72331,262.05,86.6445 +72332,262.11,88.2403 +72333,260.56,83.4537 +72334,260.64,85.0333 +72335,260.69,86.6279 +72336,260.71,88.2371 +72337,259.28,83.4128 +72338,259.33,85.0042 +72339,259.34,86.6108 +72340,259.32,88.2327 +72341,258.01,83.3732 +72342,258.01,84.9754 +72343,257.98,86.5934 +72344,257.92,88.227 +72345,256.74,83.3349 +72346,256.7,84.9471 +72347,256.63,86.5754 +72348,256.52,88.2201 +72349,255.46,83.2979 +72350,255.38,84.9192 +72351,255.27,86.5571 +72352,255.12,88.2118 +72353,254.19,83.2622 +72354,254.07,84.8917 +72355,253.91,86.5383 +72356,253.72,88.2023 +72357,252.92,83.2277 +72358,252.76,84.8646 +72359,252.56,86.5191 +72360,252.33,88.1915 +72361,251.65,83.1946 +72362,251.44,84.838 +72363,251.2,86.4994 +72364,250.93,88.1793 +72365,250.37,83.1628 +72366,250.13,84.8118 +72367,249.85,86.4793 +72368,249.53,88.1659 +72369,249.1,83.1323 +72370,248.81,84.7861 +72371,248.49,86.4587 +72372,248.13,88.1511 +72373,247.83,83.1031 +72374,247.5,84.7607 +72375,247.14,86.4377 +72376,246.73,88.135 +72377,246.55,83.0753 +72378,246.19,84.7358 +72379,245.78,86.4163 +72380,245.34,88.1176 +72381,245.28,83.0487 +72382,244.87,84.7114 +72383,244.43,86.3944 +72384,243.94,88.0989 +72385,244.01,83.0235 +72386,243.56,84.6873 +72387,243.07,86.372 +72388,242.54,88.0788 +72389,242.73,82.9996 +72390,242.24,84.6637 +72391,241.72,86.3492 +72392,241.15,88.0574 +72393,241.46,82.977 +72394,240.93,84.6406 +72395,240.36,86.326 +72396,239.75,88.0347 +72397,240.18,82.9557 +72398,239.62,84.6178 +72399,239.01,86.3023 +72400,238.36,88.0106 +72401,238.91,82.9358 +72402,238.3,84.5955 +72403,237.66,86.2781 +72404,236.96,87.9852 +72405,237.63,82.9171 +72406,236.99,84.5737 +72407,236.3,86.2535 +72408,235.57,87.9585 +72409,236.36,82.8997 +72410,235.67,84.5522 +72411,234.95,86.2285 +72412,234.17,87.9304 +72413,235.08,82.8837 +72414,234.36,84.5312 +72415,233.59,86.203 +72416,232.78,87.901 +72417,233.8,82.8689 +72418,233.04,84.5106 +72419,232.24,86.177 +72420,231.39,87.8703 +72421,232.52,82.8555 +72422,231.73,84.4905 +72423,230.89,86.1507 +72424,230,87.8383 +72425,231.25,82.8433 +72426,230.41,84.4708 +72427,229.54,86.1239 +72428,228.6,87.8049 +72429,229.97,82.8324 +72430,229.1,84.4515 +72431,228.18,86.0966 +72432,227.21,87.7702 +72433,228.69,82.8227 +72434,227.78,84.4326 +72435,226.83,86.0689 +72436,225.82,87.7343 +72437,227.41,82.8143 +72438,226.47,84.4141 +72439,225.48,86.0408 +72440,224.43,87.697 +72441,226.13,82.8072 +72442,225.15,84.3961 +72443,224.13,86.0122 +72444,223.05,87.6585 +72445,224.85,82.8013 +72446,223.84,84.3784 +72447,222.77,85.9832 +72448,221.66,87.6186 +72449,223.57,82.7966 +72450,222.52,84.3612 +72451,221.42,85.9538 +72452,220.27,87.5775 +72453,222.28,82.7932 +72454,221.2,84.3443 +72455,220.07,85.924 +72456,218.89,87.5352 +72457,221,82.7909 +72458,219.89,84.3279 +72459,218.72,85.8937 +72460,217.5,87.4916 +72461,219.72,82.7899 +72462,218.57,84.3119 +72463,217.37,85.8631 +72464,216.12,87.4467 +72465,218.43,82.79 +72466,217.25,84.2962 +72467,216.02,85.832 +72468,214.73,87.4006 +72469,217.15,82.7913 +72470,215.93,84.281 +72471,214.67,85.8005 +72472,213.35,87.3533 +72473,215.86,82.7938 +72474,214.62,84.2661 +72475,213.32,85.7687 +72476,211.97,87.3048 +72477,214.57,82.7973 +72478,213.3,84.2516 +72479,211.97,85.7364 +72480,210.59,87.255 +72481,213.28,82.8021 +72482,211.98,84.2375 +72483,210.63,85.7037 +72484,209.21,87.2042 +72485,211.99,82.8079 +72486,210.66,84.2238 +72487,209.28,85.6707 +72488,207.83,87.1521 +72489,210.7,82.8148 +72490,209.34,84.2104 +72491,207.93,85.6372 +72492,206.45,87.0989 +72493,209.41,82.8227 +72494,208.02,84.1974 +72495,206.58,85.6034 +72496,205.08,87.0446 +72497,208.12,82.8318 +72498,206.7,84.1847 +72499,205.24,85.5693 +72500,203.7,86.9891 +72501,206.83,82.8418 +72502,205.38,84.1724 +72503,203.89,85.5347 +72504,202.33,86.9326 +72505,205.53,82.8529 +72506,204.06,84.1604 +72507,202.54,85.4998 +72508,200.96,86.8749 +72509,204.24,82.865 +72510,202.74,84.1488 +72511,201.2,85.4646 +72512,199.59,86.8162 +72513,202.94,82.8781 +72514,201.42,84.1375 +72515,199.85,85.429 +72516,198.22,86.7565 +72517,201.64,82.8921 +72518,200.1,84.1265 +72519,198.51,85.3931 +72520,196.85,86.6957 +72521,200.34,82.9071 +72522,198.78,84.1158 +72523,197.16,85.3568 +72524,195.48,86.634 +72525,199.04,82.923 +72526,197.46,84.1054 +72527,195.82,85.3202 +72528,194.11,86.5712 +72529,197.74,82.9398 +72530,196.14,84.0954 +72531,194.47,85.2833 +72532,192.75,86.5075 +72533,196.44,82.9574 +72534,194.81,84.0856 +72535,193.13,85.2461 +72536,191.39,86.4429 +72537,195.13,82.976 +72538,193.49,84.0761 +72539,191.79,85.2086 +72540,190.02,86.3773 +72541,193.83,82.9953 +72542,192.17,84.0669 +72543,190.45,85.1708 +72544,188.66,86.3108 +72545,192.52,83.0155 +72546,190.84,84.0579 +72547,189.11,85.1327 +72548,187.3,86.2435 +72549,191.22,83.0364 +72550,189.52,84.0493 +72551,187.76,85.0943 +72552,185.95,86.1753 +72553,189.91,83.0581 +72554,188.19,84.0409 +72555,186.42,85.0557 +72556,184.59,86.1063 +72557,188.6,83.0805 +72558,186.87,84.0327 +72559,185.08,85.0168 +72560,183.23,86.0365 +72561,187.29,83.1037 +72562,185.54,84.0248 +72563,183.74,84.9776 +72564,181.88,85.9659 +72565,185.97,83.1275 +72566,184.22,84.0171 +72567,182.4,84.9382 +72568,180.53,85.8946 +72569,184.66,83.152 +72570,182.89,84.0096 +72571,181.07,84.8985 +72572,179.18,85.8226 +72573,183.35,83.1772 +72574,181.56,84.0023 +72575,179.73,84.8587 +72576,177.83,85.7498 +72577,182.03,83.2029 +72578,180.24,83.9953 +72579,178.39,84.8186 +72580,176.48,85.6764 +72581,180.71,83.2293 +72582,178.91,83.9884 +72583,177.05,84.7783 +72584,175.13,85.6024 +72585,179.39,83.2562 +72586,177.58,83.9818 +72587,175.72,84.7378 +72588,173.79,85.5277 +72589,178.07,83.2836 +72590,176.25,83.9753 +72591,174.38,84.6971 +72592,172.44,85.4524 +72593,176.75,83.3115 +72594,174.92,83.969 +72595,173.04,84.6562 +72596,171.1,85.3766 +72597,175.43,83.34 +72598,173.6,83.9628 +72599,171.71,84.6151 +72600,169.76,85.3003 +72601,174.1,83.3688 +72602,172.27,83.9568 +72603,170.37,84.5739 +72604,168.42,85.2234 +72605,172.78,83.3981 +72606,170.94,83.951 +72607,169.04,84.5325 +72608,167.09,85.1461 +72609,171.45,83.4278 +72610,169.6,83.9452 +72611,167.71,84.491 +72612,165.75,85.0684 +72613,170.12,83.4579 +72614,168.27,83.9396 +72615,166.37,84.4493 +72616,164.42,84.9902 +72617,168.79,83.4883 +72618,166.94,83.9342 +72619,165.04,84.4076 +72620,163.08,84.9116 +72621,167.46,83.519 +72622,165.61,83.9288 +72623,163.71,84.3657 +72624,161.75,84.8327 +72625,166.13,83.55 +72626,164.28,83.9235 +72627,162.38,84.3237 +72628,160.42,84.7535 +72629,164.79,83.5813 +72630,162.94,83.9183 +72631,161.05,84.2816 +72632,159.09,84.674 +72633,163.46,83.6128 +72634,161.61,83.9132 +72635,159.72,84.2394 +72636,157.77,84.5942 +72637,162.12,83.6444 +72638,160.28,83.9082 +72639,158.39,84.1971 +72640,156.44,84.5141 +72641,160.78,83.6763 +72642,158.94,83.9032 +72643,157.06,84.1548 +72644,155.12,84.4339 +72645,159.44,83.7083 +72646,157.61,83.8983 +72647,155.73,84.1124 +72648,153.79,84.3535 +72649,158.1,83.7404 +72650,156.27,83.8934 +72651,154.4,84.0699 +72652,152.47,84.273 +72653,156.76,83.7726 +72654,154.94,83.8885 +72655,153.07,84.0275 +72656,151.15,84.1923 +72657,155.41,83.8049 +72658,153.6,83.8836 +72659,151.74,83.985 +72660,149.84,84.1116 +72661,154.07,83.8372 +72662,152.27,83.8788 +72663,150.42,83.9425 +72664,148.52,84.0308 +72665,152.72,83.8695 +72666,150.93,83.874 +72667,149.09,83.8999 +72668,147.21,83.95 +72669,151.37,83.9018 +72670,149.59,83.8691 +72671,147.77,83.8574 +72672,145.89,83.8692 +72673,150.02,83.934 +72674,148.25,83.8643 +72675,146.44,83.8149 +72676,144.58,83.7885 +72677,148.67,83.9661 +72678,146.92,83.8594 +72679,145.12,83.7725 +72680,143.27,83.7078 +72681,147.32,83.9981 +72682,145.58,83.8544 +72683,143.79,83.73 +72684,141.96,83.6273 +72685,145.97,84.03 +72686,144.24,83.8494 +72687,142.47,83.6876 +72688,140.65,83.5468 +72689,144.61,84.0617 +72690,142.9,83.8444 +72691,141.15,83.6453 +72692,139.35,83.4666 +72693,143.25,84.0932 +72694,141.56,83.8393 +72695,139.82,83.603 +72696,138.04,83.3865 +72697,141.9,84.1245 +72698,140.22,83.8341 +72699,138.5,83.5608 +72700,136.74,83.3067 +72701,140.54,84.1555 +72702,138.88,83.8288 +72703,137.18,83.5187 +72704,135.44,83.2272 +72705,139.18,84.1862 +72706,137.54,83.8235 +72707,135.86,83.4766 +72708,134.14,83.1479 +72709,137.82,84.2166 +72710,136.2,83.818 +72711,134.54,83.4347 +72712,132.84,83.0689 +72713,136.45,84.2467 +72714,134.85,83.8124 +72715,133.22,83.3929 +72716,131.54,82.9903 +72717,135.09,84.2765 +72718,133.51,83.8067 +72719,131.9,83.3512 +72720,130.24,82.9121 +72721,133.72,84.3058 +72722,132.17,83.8009 +72723,130.58,83.3096 +72724,128.95,82.8343 +72725,132.36,84.3347 +72726,130.83,83.7949 +72727,129.26,83.2682 +72728,127.65,82.7569 +72729,130.99,84.3632 +72730,129.48,83.7887 +72731,127.94,83.227 +72732,126.36,82.6799 +72733,129.62,84.3912 +72734,128.14,83.7824 +72735,126.62,83.1859 +72736,125.07,82.6035 +72737,128.25,84.4187 +72738,126.79,83.776 +72739,125.3,83.1449 +72740,123.78,82.5276 +72741,126.88,84.4457 +72742,125.45,83.7693 +72743,123.99,83.1042 +72744,122.49,82.4522 +72745,125.51,84.4721 +72746,124.11,83.7625 +72747,122.67,83.0636 +72748,121.2,82.3775 +72749,124.13,84.498 +72750,122.76,83.7555 +72751,121.35,83.0232 +72752,119.91,82.3033 +72753,122.76,84.5232 +72754,121.41,83.7482 +72755,120.04,82.9831 +72756,118.63,82.2297 +72757,121.38,84.5479 +72758,120.07,83.7408 +72759,118.72,82.9431 +72760,117.34,82.1568 +72761,120.01,84.5718 +72762,118.72,83.7331 +72763,117.41,82.9034 +72764,116.06,82.0846 +72765,118.63,84.5952 +72766,117.38,83.7252 +72767,116.09,82.8639 +72768,114.78,82.0131 +72769,117.25,84.6178 +72770,116.03,83.7171 +72771,114.78,82.8247 +72772,113.5,81.9424 +72773,115.87,84.6397 +72774,114.68,83.7087 +72775,113.46,82.7857 +72776,112.21,81.8724 +72777,114.49,84.6608 +72778,113.33,83.7001 +72779,112.15,82.7469 +72780,110.94,81.8031 +72781,113.11,84.6812 +72782,111.99,83.6912 +72783,110.84,82.7084 +72784,109.66,81.7347 +72785,111.72,84.7008 +72786,110.64,83.6821 +72787,109.52,82.6702 +72788,108.38,81.6671 +72789,110.34,84.7196 +72790,109.29,83.6726 +72791,108.21,82.6323 +72792,107.1,81.6004 +72793,108.96,84.7376 +72794,107.94,83.6629 +72795,106.9,82.5946 +72796,105.83,81.5345 +72797,107.57,84.7547 +72798,106.59,83.6529 +72799,105.59,82.5573 +72800,104.55,81.4696 +72801,106.18,84.771 +72802,105.24,83.6426 +72803,104.28,82.5202 +72804,103.28,81.4055 +72805,104.8,84.7863 +72806,103.9,83.632 +72807,102.96,82.4835 +72808,102,81.3424 +72809,103.41,84.8008 +72810,102.55,83.6211 +72811,101.65,82.4471 +72812,100.73,81.2803 +72813,102.02,84.8143 +72814,101.2,83.6099 +72815,100.34,82.411 +72816,99.459,81.2191 +72817,100.63,84.8268 +72818,99.846,83.5984 +72819,99.031,82.3752 +72820,98.188,81.159 +72821,99.243,84.8384 +72822,98.496,83.5865 +72823,97.721,82.3397 +72824,96.917,81.0998 +72825,97.853,84.849 +72826,97.146,83.5743 +72827,96.411,82.3046 +72828,95.647,81.0417 +72829,96.462,84.8587 +72830,95.796,83.5617 +72831,95.101,82.2699 +72832,94.378,80.9847 +72833,95.07,84.8672 +72834,94.445,83.5488 +72835,93.791,82.2355 +72836,93.109,80.9287 +72837,93.678,84.8748 +72838,93.094,83.5356 +72839,92.482,82.2014 +72840,91.841,80.8738 +72841,92.285,84.8813 +72842,91.743,83.522 +72843,91.173,82.1677 +72844,90.574,80.82 +72845,90.892,84.8867 +72846,90.392,83.508 +72847,89.864,82.1344 +72848,89.307,80.7674 +72849,89.499,84.8911 +72850,89.041,83.4937 +72851,88.555,82.1015 +72852,88.04,80.7158 +72853,88.105,84.8943 +72854,87.69,83.479 +72855,87.246,82.0689 +72856,86.774,80.6655 +72857,86.71,84.8965 +72858,86.339,83.4639 +72859,85.938,82.0367 +72860,85.508,80.6162 +72861,85.316,84.8975 +72862,84.987,83.4485 +72863,84.63,82.0049 +72864,84.243,80.5682 +72865,83.921,84.8974 +72866,83.636,83.4326 +72867,83.321,81.9735 +72868,82.977,80.5213 +72869,82.525,84.8961 +72870,82.284,83.4164 +72871,82.013,81.9425 +72872,81.713,80.4757 +72873,81.129,84.8937 +72874,80.933,83.3998 +72875,80.705,81.9119 +72876,80.448,80.4312 +72877,79.734,84.8902 +72878,79.581,83.3828 +72879,79.397,81.8817 +72880,79.184,80.3879 +72881,78.338,84.8854 +72882,78.229,83.3654 +72883,78.09,81.8519 +72884,77.92,80.3459 +72885,76.941,84.8794 +72886,76.878,83.3476 +72887,76.782,81.8225 +72888,76.656,80.3051 +72889,75.545,84.8723 +72890,75.526,83.3294 +72891,75.474,81.7935 +72892,75.392,80.2656 +72893,74.148,84.8639 +72894,74.174,83.3108 +72895,74.167,81.7649 +72896,74.128,80.2273 +72897,72.752,84.8544 +72898,72.822,83.2917 +72899,72.859,81.7368 +72900,72.864,80.1903 +72901,71.355,84.8436 +72902,71.471,83.2723 +72903,71.552,81.709 +72904,71.601,80.1545 +72905,69.959,84.8316 +72906,70.119,83.2525 +72907,70.245,81.6817 +72908,70.337,80.12 +72909,68.562,84.8183 +72910,68.768,83.2322 +72911,68.937,81.6548 +72912,69.074,80.0868 +72913,67.166,84.8038 +72914,67.416,83.2115 +72915,67.63,81.6283 +72916,67.81,80.0548 +72917,65.77,84.7881 +72918,66.064,83.1904 +72919,66.323,81.6023 +72920,66.546,80.0241 +72921,64.374,84.7711 +72922,64.713,83.1689 +72923,65.015,81.5766 +72924,65.282,79.995 +72925,62.978,84.7529 +72926,63.362,83.147 +72927,63.708,81.5514 +72928,64.018,79.967 +72929,61.582,84.7334 +72930,62.011,83.1246 +72931,62.4,81.5267 +72932,62.754,79.94 +72933,60.187,84.7127 +72934,60.659,83.1018 +72935,61.093,81.5023 +72936,61.489,79.914 +72937,58.791,84.6907 +72938,59.308,83.0786 +72939,59.785,81.4784 +72940,60.225,79.89 +72941,57.396,84.6674 +72942,57.958,83.055 +72943,58.477,81.4549 +72944,58.959,79.867 +72945,56.002,84.6429 +72946,56.607,83.031 +72947,57.17,81.4318 +72948,57.694,79.845 +72949,54.608,84.6172 +72950,55.256,83.0065 +72951,55.862,81.4092 +72952,56.428,79.825 +72953,53.214,84.5901 +72954,53.906,82.9817 +72955,54.554,81.387 +72956,55.162,79.806 +72957,51.821,84.5619 +72958,52.556,82.9564 +72959,53.246,81.3652 +72960,53.896,79.788 +72961,50.428,84.5323 +72962,51.206,82.9307 +72963,51.938,81.3438 +72964,52.629,79.771 +72965,49.036,84.5015 +72966,49.856,82.9045 +72967,50.629,81.3229 +72968,51.361,79.756 +72969,47.645,84.4695 +72970,48.507,82.878 +72971,49.321,81.3024 +72972,50.093,79.742 +72973,46.254,84.4363 +72974,47.157,82.851 +72975,48.012,81.2822 +72976,48.824,79.729 +72977,44.863,84.4018 +72978,45.808,82.8237 +72979,46.704,81.2626 +72980,47.555,79.718 +72981,43.474,84.366 +72982,44.459,82.7959 +72983,45.395,81.2433 +72984,46.286,79.707 +72985,42.085,84.3291 +72986,43.111,82.7677 +72987,44.085,81.2244 +72988,45.015,79.698 +72989,40.696,84.2909 +72990,41.762,82.7391 +72991,42.776,81.2059 +72992,43.744,79.69 +72993,39.309,84.2515 +72994,40.414,82.7101 +72995,41.466,81.1879 +72996,42.472,79.684 +72997,37.922,84.2109 +72998,39.066,82.6808 +72999,40.157,81.1702 +73000,41.2,79.678 +73001,36.536,84.1691 +73002,37.719,82.651 +73003,38.847,81.153 +73004,39.927,79.674 +73005,35.151,84.1262 +73006,36.372,82.6208 +73007,37.536,81.1361 +73008,38.653,79.671 +73009,33.767,84.082 +73010,35.025,82.5903 +73011,36.226,81.1197 +73012,37.378,79.669 +73013,32.384,84.0367 +73014,33.678,82.5593 +73015,34.915,81.1036 +73016,36.102,79.668 +73017,31.002,83.9903 +73018,32.332,82.528 +73019,33.604,81.0879 +73020,34.825,79.668 +73021,29.621,83.9427 +73022,30.986,82.4963 +73023,32.293,81.0726 +73024,33.548,79.67 +73025,28.24,83.894 +73026,29.641,82.4642 +73027,30.981,81.0576 +73028,32.27,79.672 +73029,26.861,83.8442 +73030,28.296,82.4318 +73031,29.669,81.043 +73032,30.99,79.676 +73033,25.483,83.7933 +73034,26.951,82.399 +73035,28.357,81.0288 +73036,29.71,79.681 +73037,24.106,83.7412 +73038,25.607,82.3659 +73039,27.045,81.015 +73040,28.429,79.686 +73041,22.73,83.6882 +73042,24.263,82.3324 +73043,25.732,81.0015 +73044,27.147,79.693 +73045,21.355,83.634 +73046,22.919,82.2985 +73047,24.419,80.9883 +73048,25.863,79.701 +73049,19.982,83.5789 +73050,21.576,82.2644 +73051,23.105,80.9755 +73052,24.579,79.71 +73053,18.609,83.5227 +73054,20.233,82.2298 +73055,21.791,80.9631 +73056,23.293,79.72 +73057,17.238,83.4655 +73058,18.891,82.195 +73059,20.477,80.9509 +73060,22.007,79.731 +73061,15.868,83.4073 +73062,17.549,82.1598 +73063,19.163,80.9391 +73064,20.719,79.743 +73065,14.5,83.3482 +73066,16.207,82.1244 +73067,17.848,80.9276 +73068,19.43,79.755 +73069,13.132,83.2881 +73070,14.866,82.0886 +73071,16.532,80.9164 +73072,18.14,79.769 +73073,11.766,83.227 +73074,13.526,82.0525 +73075,15.217,80.9055 +73076,16.849,79.784 +73077,10.402,83.1651 +73078,12.186,82.0161 +73079,13.901,80.8949 +73080,15.557,79.799 +73081,9.0382,83.1023 +73082,10.846,81.9794 +73083,12.584,80.8847 +73084,14.263,79.815 +73085,7.6762,83.0386 +73086,9.5068,81.9424 +73087,11.267,80.8746 +73088,12.968,79.832 +73089,6.3156,82.974 +73090,8.1681,81.9052 +73091,9.9501,80.8649 +73092,11.672,79.85 +73093,4.9564,82.9087 +73094,6.8299,81.8677 +73095,8.6324,80.8554 +73096,10.374,79.869 +73097,3.5986,82.8425 +73098,5.4921,81.83 +73099,7.3143,80.8462 +73100,9.0756,79.889 +73101,2.2423,82.7756 +73102,4.1549,81.7919 +73103,5.9958,80.8373 +73104,7.7755,79.909 +73105,0.88746,82.7079 +73106,2.8181,81.7537 +73107,4.6769,80.8286 +73108,6.4741,79.93 +73109,359.53,82.6394 +73110,1.4819,81.7152 +73111,3.3576,80.8201 +73112,5.1714,79.951 +73113,358.18,82.5703 +73114,0.14612,81.6765 +73115,2.0378,80.8119 +73116,3.8673,79.974 +73117,356.83,82.5004 +73118,358.81,81.6376 +73119,0.71754,80.8039 +73120,2.5619,79.996 +73121,355.48,82.43 +73122,357.48,81.5984 +73123,359.4,80.7961 +73124,1.255,80.02 +73125,354.14,82.3588 +73126,356.14,81.5591 +73127,358.08,80.7885 +73128,359.95,80.0441 +73129,352.79,82.2871 +73130,354.81,81.5195 +73131,356.75,80.7811 +73132,358.64,80.0688 +73133,351.45,82.2148 +73134,353.48,81.4798 +73135,355.43,80.7739 +73136,357.33,80.094 +73137,350.1,82.1419 +73138,352.14,81.4399 +73139,354.11,80.7668 +73140,356.01,80.1198 +73141,348.76,82.0685 +73142,350.81,81.3998 +73143,352.79,80.76 +73144,354.7,80.146 +73145,347.42,81.9946 +73146,349.48,81.3596 +73147,351.46,80.7533 +73148,353.38,80.1727 +73149,346.08,81.9203 +73150,348.15,81.3192 +73151,350.14,80.7467 +73152,352.07,80.1999 +73153,344.75,81.8455 +73154,346.82,81.2787 +73155,348.82,80.7403 +73156,350.75,80.2274 +73157,343.41,81.7702 +73158,345.49,81.238 +73159,347.49,80.7341 +73160,349.43,80.2553 +73161,342.08,81.6946 +73162,344.16,81.1972 +73163,346.16,80.7279 +73164,348.11,80.2836 +73165,340.75,81.6186 +73166,342.83,81.1564 +73167,344.84,80.7219 +73168,346.79,80.3122 +73169,339.42,81.5423 +73170,341.5,81.1154 +73171,343.51,80.716 +73172,345.46,80.3411 +73173,338.09,81.4656 +73174,340.17,81.0743 +73175,342.19,80.7101 +73176,344.14,80.3703 +73177,336.76,81.3887 +73178,338.85,81.0331 +73179,340.86,80.7044 +73180,342.81,80.3997 +73181,335.44,81.3115 +73182,337.52,80.9919 +73183,339.53,80.6988 +73184,341.48,80.4293 +73185,334.11,81.2342 +73186,336.19,80.9506 +73187,338.2,80.6932 +73188,340.15,80.4591 +73189,332.79,81.1566 +73190,334.87,80.9092 +73191,336.87,80.6877 +73192,338.82,80.4891 +73193,331.47,81.0789 +73194,333.54,80.8678 +73195,335.55,80.6822 +73196,337.49,80.5192 +73197,330.15,81.001 +73198,332.22,80.8263 +73199,334.22,80.6768 +73200,336.15,80.5494 +73201,328.84,80.923 +73202,330.89,80.7848 +73203,332.89,80.6714 +73204,334.82,80.5797 +73205,327.52,80.845 +73206,329.57,80.7434 +73207,331.56,80.666 +73208,333.48,80.6101 +73209,326.21,80.7669 +73210,328.25,80.7019 +73211,330.22,80.6606 +73212,332.14,80.6404 +73213,324.89,80.6888 +73214,326.93,80.6604 +73215,328.89,80.6553 +73216,330.8,80.6708 +73217,323.58,80.6107 +73218,325.6,80.6189 +73219,327.56,80.6499 +73220,329.46,80.7011 +73221,322.27,80.5327 +73222,324.28,80.5774 +73223,326.23,80.6445 +73224,328.11,80.7313 +73225,320.97,80.4547 +73226,322.96,80.536 +73227,324.9,80.6391 +73228,326.77,80.7615 +73229,319.66,80.3769 +73230,321.64,80.4946 +73231,323.56,80.6337 +73232,325.42,80.7915 +73233,318.36,80.2992 +73234,320.32,80.4532 +73235,322.23,80.6282 +73236,324.08,80.8214 +73237,317.05,80.2216 +73238,319,80.412 +73239,320.89,80.6227 +73240,322.73,80.8511 +73241,315.75,80.1443 +73242,317.69,80.3707 +73243,319.56,80.6171 +73244,321.38,80.8806 +73245,314.45,80.0672 +73246,316.37,80.3296 +73247,318.22,80.6114 +73248,320.03,80.9099 +73249,313.15,79.99 +73250,315.05,80.2886 +73251,316.89,80.6056 +73252,318.67,80.939 +73253,311.86,79.914 +73254,313.73,80.2476 +73255,315.55,80.5998 +73256,317.32,80.9677 +73257,310.56,79.837 +73258,312.42,80.2068 +73259,314.22,80.5939 +73260,315.96,80.9961 +73261,309.27,79.761 +73262,311.1,80.1661 +73263,312.88,80.5878 +73264,314.6,81.0243 +73265,307.97,79.686 +73266,309.78,80.1255 +73267,311.54,80.5817 +73268,313.25,81.052 +73269,306.68,79.611 +73270,308.47,80.085 +73271,310.2,80.5754 +73272,311.89,81.0793 +73273,305.39,79.536 +73274,307.15,80.0447 +73275,308.87,80.569 +73276,310.53,81.1063 +73277,304.1,79.462 +73278,305.84,80.0046 +73279,307.53,80.5624 +73280,309.16,81.1328 +73281,302.82,79.388 +73282,304.53,79.965 +73283,306.19,80.5557 +73284,307.8,81.1588 +73285,301.53,79.315 +73286,303.21,79.925 +73287,304.85,80.5488 +73288,306.43,81.1843 +73289,300.24,79.242 +73290,301.9,79.885 +73291,303.51,80.5417 +73292,305.07,81.2094 +73293,298.96,79.17 +73294,300.59,79.846 +73295,302.17,80.5345 +73296,303.7,81.2338 +73297,297.68,79.098 +73298,299.28,79.806 +73299,300.83,80.5271 +73300,302.33,81.2578 +73301,296.4,79.027 +73302,297.97,79.767 +73303,299.49,80.5195 +73304,300.96,81.2811 +73305,295.12,78.956 +73306,296.65,79.729 +73307,298.14,80.5117 +73308,299.59,81.3038 +73309,293.84,78.887 +73310,295.34,79.69 +73311,296.8,80.5037 +73312,298.22,81.3259 +73313,292.56,78.818 +73314,294.03,79.652 +73315,295.46,80.4954 +73316,296.84,81.3473 +73317,291.29,78.749 +73318,292.72,79.613 +73319,294.12,80.487 +73320,295.47,81.368 +73321,290.01,78.682 +73322,291.41,79.576 +73323,292.78,80.4783 +73324,294.09,81.3881 +73325,288.74,78.615 +73326,290.11,79.538 +73327,291.43,80.4693 +73328,292.72,81.4074 +73329,287.46,78.549 +73330,288.8,79.501 +73331,290.09,80.4601 +73332,291.34,81.4259 +73333,286.19,78.484 +73334,287.49,79.463 +73335,288.75,80.4507 +73336,289.96,81.4437 +73337,284.92,78.419 +73338,286.18,79.427 +73339,287.4,80.441 +73340,288.58,81.4607 +73341,283.65,78.356 +73342,284.87,79.39 +73343,286.06,80.431 +73344,287.2,81.4769 +73345,282.38,78.293 +73346,283.57,79.354 +73347,284.71,80.4208 +73348,285.82,81.4923 +73349,281.11,78.232 +73350,282.26,79.318 +73351,283.37,80.4102 +73352,284.44,81.5068 +73353,279.85,78.171 +73354,280.95,79.282 +73355,282.02,80.3994 +73356,283.05,81.5204 +73357,278.58,78.111 +73358,279.65,79.247 +73359,280.68,80.3883 +73360,281.67,81.5332 +73361,277.31,78.052 +73362,278.34,79.212 +73363,279.33,80.3768 +73364,280.29,81.545 +73365,276.05,77.994 +73366,277.04,79.177 +73367,277.99,80.3651 +73368,278.9,81.5559 +73369,274.79,77.937 +73370,275.73,79.143 +73371,276.64,80.3531 +73372,277.51,81.5659 +73373,273.52,77.881 +73374,274.43,79.109 +73375,275.29,80.3407 +73376,276.13,81.5749 +73377,272.26,77.826 +73378,273.12,79.075 +73379,273.95,80.328 +73380,274.74,81.583 +73381,271,77.772 +73382,271.82,79.042 +73383,272.6,80.315 +73384,273.35,81.59 +73385,269.74,77.719 +73386,270.51,79.009 +73387,271.25,80.3016 +73388,271.96,81.5961 +73389,268.48,77.668 +73390,269.21,78.976 +73391,269.91,80.2879 +73392,270.57,81.6011 +73393,267.22,77.617 +73394,267.9,78.944 +73395,268.56,80.2739 +73396,269.18,81.6051 +73397,265.96,77.567 +73398,266.6,78.912 +73399,267.21,80.2595 +73400,267.79,81.6081 +73401,264.7,77.519 +73402,265.3,78.881 +73403,265.86,80.2447 +73404,266.4,81.61 +73405,263.44,77.472 +73406,263.99,78.849 +73407,264.52,80.2296 +73408,265,81.6108 +73409,262.18,77.426 +73410,262.69,78.819 +73411,263.17,80.2141 +73412,263.61,81.6105 +73413,260.92,77.381 +73414,261.39,78.788 +73415,261.82,80.1983 +73416,262.22,81.6092 +73417,259.67,77.337 +73418,260.08,78.758 +73419,260.47,80.182 +73420,260.83,81.6067 +73421,258.41,77.294 +73422,258.78,78.729 +73423,259.12,80.1655 +73424,259.43,81.6031 +73425,257.15,77.253 +73426,257.48,78.699 +73427,257.77,80.1485 +73428,258.04,81.5984 +73429,255.9,77.213 +73430,256.18,78.671 +73431,256.43,80.1311 +73432,256.64,81.5925 +73433,254.64,77.173 +73434,254.87,78.642 +73435,255.08,80.1134 +73436,255.25,81.5855 +73437,253.38,77.136 +73438,253.57,78.614 +73439,253.73,80.0953 +73440,253.85,81.5774 +73441,252.13,77.099 +73442,252.27,78.587 +73443,252.38,80.0768 +73444,252.46,81.568 +73445,250.87,77.064 +73446,250.97,78.559 +73447,251.03,80.0579 +73448,251.06,81.5576 +73449,249.62,77.03 +73450,249.67,78.533 +73451,249.68,80.0386 +73452,249.67,81.5459 +73453,248.36,76.997 +73454,248.36,78.506 +73455,248.34,80.0189 +73456,248.27,81.533 +73457,247.11,76.965 +73458,247.06,78.48 +73459,246.99,79.999 +73460,246.88,81.519 +73461,245.85,76.935 +73462,245.76,78.455 +73463,245.64,79.978 +73464,245.48,81.5038 +73465,244.59,76.905 +73466,244.46,78.43 +73467,244.29,79.957 +73468,244.09,81.4874 +73469,243.34,76.877 +73470,243.16,78.405 +73471,242.94,79.936 +73472,242.69,81.4698 +73473,242.08,76.851 +73474,241.85,78.381 +73475,241.59,79.914 +73476,241.3,81.4509 +73477,240.83,76.825 +73478,240.55,78.357 +73479,240.25,79.892 +73480,239.9,81.4309 +73481,239.57,76.801 +73482,239.25,78.333 +73483,238.9,79.87 +73484,238.51,81.4097 +73485,238.31,76.778 +73486,237.95,78.31 +73487,237.55,79.847 +73488,237.11,81.3873 +73489,237.06,76.757 +73490,236.65,78.288 +73491,236.2,79.824 +73492,235.72,81.3636 +73493,235.8,76.736 +73494,235.34,78.266 +73495,234.85,79.8 +73496,234.32,81.3388 +73497,234.54,76.717 +73498,234.04,78.244 +73499,233.51,79.776 +73500,232.93,81.3127 +73501,233.29,76.699 +73502,232.74,78.223 +73503,232.16,79.751 +73504,231.54,81.2855 +73505,232.03,76.683 +73506,231.44,78.202 +73507,230.81,79.727 +73508,230.14,81.257 +73509,230.77,76.667 +73510,230.13,78.181 +73511,229.46,79.701 +73512,228.75,81.2274 +73513,229.51,76.653 +73514,228.83,78.161 +73515,228.12,79.676 +73516,227.36,81.1965 +73517,228.25,76.64 +73518,227.53,78.141 +73519,226.77,79.649 +73520,225.97,81.1645 +73521,226.99,76.629 +73522,226.23,78.122 +73523,225.42,79.623 +73524,224.58,81.1313 +73525,225.73,76.618 +73526,224.92,78.103 +73527,224.08,79.596 +73528,223.19,81.0969 +73529,224.47,76.609 +73530,223.62,78.085 +73531,222.73,79.569 +73532,221.8,81.0613 +73533,223.21,76.601 +73534,222.32,78.067 +73535,221.38,79.541 +73536,220.41,81.0246 +73537,221.94,76.594 +73538,221.01,78.049 +73539,220.04,79.513 +73540,219.02,80.9866 +73541,220.68,76.588 +73542,219.71,78.032 +73543,218.69,79.485 +73544,217.63,80.9476 +73545,219.42,76.583 +73546,218.4,78.015 +73547,217.35,79.456 +73548,216.24,80.9074 +73549,218.15,76.58 +73550,217.1,77.998 +73551,216,79.427 +73552,214.86,80.866 +73553,216.89,76.578 +73554,215.8,77.982 +73555,214.66,79.397 +73556,213.47,80.8236 +73557,215.62,76.577 +73558,214.49,77.966 +73559,213.31,79.367 +73560,212.09,80.78 +73561,214.35,76.577 +73562,213.19,77.951 +73563,211.97,79.337 +73564,210.7,80.7353 +73565,213.09,76.578 +73566,211.88,77.936 +73567,210.63,79.306 +73568,209.32,80.6895 +73569,211.82,76.58 +73570,210.57,77.921 +73571,209.28,79.275 +73572,207.94,80.6426 +73573,210.55,76.583 +73574,209.27,77.907 +73575,207.94,79.244 +73576,206.56,80.5947 +73577,209.28,76.587 +73578,207.96,77.893 +73579,206.6,79.212 +73580,205.18,80.5457 +73581,208,76.593 +73582,206.66,77.88 +73583,205.26,79.18 +73584,203.8,80.4956 +73585,206.73,76.599 +73586,205.35,77.866 +73587,203.91,79.148 +73588,202.42,80.4445 +73589,205.46,76.607 +73590,204.04,77.854 +73591,202.57,79.115 +73592,201.04,80.3925 +73593,204.18,76.615 +73594,202.73,77.841 +73595,201.23,79.082 +73596,199.67,80.3394 +73597,202.91,76.625 +73598,201.43,77.829 +73599,199.89,79.049 +73600,198.29,80.2853 +73601,201.63,76.635 +73602,200.12,77.817 +73603,198.55,79.015 +73604,196.92,80.2302 +73605,200.35,76.646 +73606,198.81,77.806 +73607,197.21,78.981 +73608,195.55,80.1742 +73609,199.07,76.658 +73610,197.5,77.794 +73611,195.87,78.947 +73612,194.17,80.1173 +73613,197.79,76.672 +73614,196.19,77.783 +73615,194.53,78.912 +73616,192.8,80.0595 +73617,196.51,76.686 +73618,194.88,77.773 +73619,193.19,78.878 +73620,191.44,80.0007 +73621,195.23,76.7 +73622,193.57,77.763 +73623,191.85,78.842 +73624,190.07,79.941 +73625,193.94,76.716 +73626,192.26,77.753 +73627,190.52,78.807 +73628,188.7,79.881 +73629,192.66,76.733 +73630,190.95,77.743 +73631,189.18,78.771 +73632,187.34,79.819 +73633,191.37,76.75 +73634,189.64,77.733 +73635,187.84,78.735 +73636,185.98,79.757 +73637,190.08,76.768 +73638,188.33,77.724 +73639,186.51,78.699 +73640,184.61,79.694 +73641,188.79,76.787 +73642,187.01,77.715 +73643,185.17,78.662 +73644,183.25,79.63 +73645,187.5,76.807 +73646,185.7,77.707 +73647,183.83,78.626 +73648,181.89,79.566 +73649,186.21,76.827 +73650,184.39,77.698 +73651,182.5,78.589 +73652,180.54,79.501 +73653,184.92,76.848 +73654,183.07,77.69 +73655,181.17,78.552 +73656,179.18,79.435 +73657,183.62,76.87 +73658,181.76,77.682 +73659,179.83,78.514 +73660,177.83,79.368 +73661,182.33,76.892 +73662,180.45,77.674 +73663,178.5,78.477 +73664,176.47,79.301 +73665,181.03,76.915 +73666,179.13,77.667 +73667,177.17,78.439 +73668,175.12,79.233 +73669,179.73,76.938 +73670,177.81,77.659 +73671,175.83,78.401 +73672,173.77,79.165 +73673,178.43,76.962 +73674,176.5,77.652 +73675,174.5,78.362 +73676,172.43,79.095 +73677,177.13,76.987 +73678,175.18,77.645 +73679,173.17,78.324 +73680,171.08,79.026 +73681,175.82,77.012 +73682,173.87,77.639 +73683,171.84,78.286 +73684,169.73,78.955 +73685,174.52,77.038 +73686,172.55,77.632 +73687,170.51,78.247 +73688,168.39,78.885 +73689,173.21,77.064 +73690,171.23,77.625 +73691,169.18,78.208 +73692,167.05,78.813 +73693,171.9,77.09 +73694,169.91,77.619 +73695,167.85,78.169 +73696,165.71,78.742 +73697,170.59,77.117 +73698,168.59,77.613 +73699,166.52,78.13 +73700,164.37,78.67 +73701,169.28,77.144 +73702,167.27,77.607 +73703,165.19,78.09 +73704,163.03,78.597 +73705,167.97,77.172 +73706,165.95,77.601 +73707,163.87,78.051 +73708,161.7,78.524 +73709,166.66,77.2 +73710,164.63,77.595 +73711,162.54,78.011 +73712,160.36,78.451 +73713,165.34,77.228 +73714,163.31,77.59 +73715,161.21,77.972 +73716,159.03,78.377 +73717,164.02,77.257 +73718,161.99,77.584 +73719,159.89,77.932 +73720,157.7,78.303 +73721,162.71,77.286 +73722,160.67,77.579 +73723,158.56,77.892 +73724,156.37,78.229 +73725,161.39,77.315 +73726,159.35,77.573 +73727,157.24,77.852 +73728,155.05,78.154 +73729,160.06,77.344 +73730,158.03,77.568 +73731,155.91,77.813 +73732,153.72,78.08 +73733,158.74,77.373 +73734,156.7,77.563 +73735,154.59,77.773 +73736,152.4,78.005 +73737,157.42,77.402 +73738,155.38,77.558 +73739,153.27,77.733 +73740,151.08,77.93 +73741,156.09,77.432 +73742,154.05,77.553 +73743,151.95,77.692 +73744,149.76,77.854 +73745,154.76,77.462 +73746,152.73,77.547 +73747,150.62,77.652 +73748,148.44,77.779 +73749,153.43,77.491 +73750,151.4,77.542 +73751,149.3,77.612 +73752,147.12,77.704 +73753,152.1,77.521 +73754,150.08,77.537 +73755,147.98,77.572 +73756,145.8,77.628 +73757,150.77,77.551 +73758,148.75,77.532 +73759,146.66,77.532 +73760,144.49,77.553 +73761,149.44,77.58 +73762,147.42,77.527 +73763,145.34,77.492 +73764,143.18,77.477 +73765,148.1,77.61 +73766,146.1,77.522 +73767,144.02,77.452 +73768,141.87,77.402 +73769,146.76,77.64 +73770,144.77,77.517 +73771,142.71,77.412 +73772,140.56,77.326 +73773,145.42,77.669 +73774,143.44,77.512 +73775,141.39,77.372 +73776,139.25,77.251 +73777,144.08,77.698 +73778,142.11,77.507 +73779,140.07,77.332 +73780,137.95,77.176 +73781,142.74,77.727 +73782,140.78,77.501 +73783,138.75,77.292 +73784,136.65,77.101 +73785,141.4,77.756 +73786,139.45,77.496 +73787,137.44,77.252 +73788,135.34,77.026 +73789,140.05,77.785 +73790,138.12,77.491 +73791,136.12,77.212 +73792,134.04,76.951 +73793,138.71,77.813 +73794,136.79,77.485 +73795,134.81,77.172 +73796,132.75,76.877 +73797,137.36,77.842 +73798,135.46,77.48 +73799,133.49,77.133 +73800,131.45,76.803 +73801,136.01,77.869 +73802,134.13,77.474 +73803,132.18,77.093 +73804,130.15,76.729 +73805,134.66,77.897 +73806,132.8,77.469 +73807,130.86,77.054 +73808,128.86,76.655 +73809,133.31,77.924 +73810,131.46,77.463 +73811,129.55,77.015 +73812,127.57,76.582 +73813,131.96,77.951 +73814,130.13,77.457 +73815,128.24,76.976 +73816,126.28,76.509 +73817,130.6,77.977 +73818,128.8,77.451 +73819,126.93,76.937 +73820,124.99,76.437 +73821,129.25,78.003 +73822,127.46,77.445 +73823,125.62,76.898 +73824,123.7,76.365 +73825,127.89,78.029 +73826,126.13,77.438 +73827,124.3,76.859 +73828,122.41,76.294 +73829,126.53,78.054 +73830,124.79,77.432 +73831,122.99,76.821 +73832,121.13,76.223 +73833,125.17,78.078 +73834,123.46,77.425 +73835,121.68,76.782 +73836,119.84,76.152 +73837,123.81,78.102 +73838,122.12,77.418 +73839,120.38,76.744 +73840,118.56,76.082 +73841,122.44,78.126 +73842,120.79,77.411 +73843,119.07,76.706 +73844,117.28,76.013 +73845,121.08,78.149 +73846,119.45,77.404 +73847,117.76,76.668 +73848,116,75.944 +73849,119.72,78.171 +73850,118.11,77.397 +73851,116.45,76.631 +73852,114.72,75.875 +73853,118.35,78.192 +73854,116.77,77.389 +73855,115.14,76.594 +73856,113.45,75.808 +73857,116.98,78.213 +73858,115.44,77.381 +73859,113.83,76.556 +73860,112.17,75.741 +73861,115.61,78.234 +73862,114.1,77.373 +73863,112.53,76.52 +73864,110.9,75.675 +73865,114.24,78.253 +73866,112.76,77.365 +73867,111.22,76.483 +73868,109.63,75.609 +73869,112.87,78.272 +73870,111.42,77.357 +73871,109.92,76.446 +73872,108.35,75.544 +73873,111.5,78.29 +73874,110.08,77.348 +73875,108.61,76.41 +73876,107.08,75.48 +73877,110.12,78.308 +73878,108.74,77.339 +73879,107.31,76.374 +73880,105.81,75.417 +73881,108.75,78.324 +73882,107.4,77.33 +73883,106,76.339 +73884,104.55,75.355 +73885,107.37,78.34 +73886,106.06,77.32 +73887,104.7,76.304 +73888,103.28,75.293 +73889,106,78.355 +73890,104.72,77.31 +73891,103.39,76.269 +73892,102.01,75.232 +73893,104.62,78.37 +73894,103.38,77.3 +73895,102.09,76.234 +73896,100.75,75.172 +73897,103.24,78.383 +73898,102.04,77.29 +73899,100.79,76.199 +73900,99.486,75.113 +73901,101.86,78.395 +73902,100.69,77.279 +73903,99.484,76.165 +73904,98.223,75.055 +73905,100.48,78.407 +73906,99.353,77.268 +73907,98.182,76.131 +73908,96.961,74.998 +73909,99.096,78.418 +73910,98.011,77.257 +73911,96.88,76.098 +73912,95.701,74.942 +73913,97.713,78.427 +73914,96.668,77.246 +73915,95.578,76.065 +73916,94.441,74.886 +73917,96.33,78.436 +73918,95.325,77.234 +73919,94.276,76.032 +73920,93.182,74.832 +73921,94.945,78.444 +73922,93.982,77.222 +73923,92.975,75.999 +73924,91.924,74.779 +73925,93.56,78.451 +73926,92.638,77.209 +73927,91.674,75.967 +73928,90.666,74.726 +73929,92.174,78.457 +73930,91.295,77.196 +73931,90.374,75.935 +73932,89.41,74.675 +73933,90.787,78.462 +73934,89.951,77.183 +73935,89.073,75.904 +73936,88.154,74.625 +73937,89.4,78.466 +73938,88.606,77.17 +73939,87.773,75.872 +73940,86.899,74.576 +73941,88.012,78.469 +73942,87.262,77.156 +73943,86.474,75.842 +73944,85.644,74.528 +73945,86.623,78.471 +73946,85.918,77.142 +73947,85.174,75.811 +73948,84.39,74.481 +73949,85.233,78.471 +73950,84.573,77.127 +73951,83.875,75.781 +73952,83.137,74.435 +73953,83.843,78.471 +73954,83.228,77.112 +73955,82.576,75.752 +73956,81.885,74.39 +73957,82.453,78.47 +73958,81.883,77.097 +73959,81.277,75.722 +73960,80.632,74.347 +73961,81.062,78.467 +73962,80.538,77.082 +73963,79.978,75.693 +73964,79.381,74.304 +73965,79.67,78.464 +73966,79.192,77.066 +73967,78.679,75.665 +73968,78.13,74.263 +73969,78.278,78.459 +73970,77.847,77.049 +73971,77.381,75.637 +73972,76.879,74.223 +73973,76.886,78.453 +73974,76.501,77.033 +73975,76.083,75.609 +73976,75.628,74.184 +73977,75.493,78.447 +73978,75.156,77.016 +73979,74.784,75.581 +73980,74.378,74.146 +73981,74.1,78.439 +73982,73.81,76.998 +73983,73.486,75.554 +73984,73.128,74.109 +73985,72.706,78.429 +73986,72.464,76.98 +73987,72.189,75.528 +73988,71.879,74.074 +73989,71.312,78.419 +73990,71.118,76.962 +73991,70.891,75.502 +73992,70.63,74.04 +73993,69.918,78.408 +73994,69.772,76.943 +73995,69.593,75.476 +73996,69.381,74.007 +73997,68.524,78.395 +73998,68.426,76.924 +73999,68.295,75.45 +74000,68.132,73.975 +74001,67.13,78.381 +74002,67.08,76.905 +74003,66.998,75.425 +74004,66.883,73.944 +74005,65.735,78.367 +74006,65.734,76.885 +74007,65.7,75.401 +74008,65.634,73.915 +74009,64.34,78.35 +74010,64.388,76.865 +74011,64.403,75.377 +74012,64.385,73.887 +74013,62.946,78.333 +74014,63.042,76.845 +74015,63.105,75.353 +74016,63.137,73.86 +74017,61.551,78.315 +74018,61.696,76.824 +74019,61.808,75.33 +74020,61.888,73.834 +74021,60.156,78.295 +74022,60.35,76.802 +74023,60.51,75.307 +74024,60.639,73.81 +74025,58.762,78.274 +74026,59.004,76.781 +74027,59.213,75.284 +74028,59.39,73.786 +74029,57.367,78.253 +74030,57.658,76.759 +74031,57.916,75.262 +74032,58.141,73.764 +74033,55.973,78.229 +74034,56.312,76.736 +74035,56.618,75.24 +74036,56.892,73.744 +74037,54.578,78.205 +74038,54.966,76.713 +74039,55.32,75.219 +74040,55.642,73.724 +74041,53.184,78.18 +74042,53.62,76.69 +74043,54.023,75.198 +74044,54.393,73.706 +74045,51.79,78.153 +74046,52.275,76.666 +74047,52.725,75.178 +74048,53.143,73.689 +74049,50.397,78.125 +74050,50.929,76.642 +74051,51.427,75.158 +74052,51.892,73.673 +74053,49.003,78.096 +74054,49.584,76.618 +74055,50.13,75.138 +74056,50.642,73.658 +74057,47.61,78.066 +74058,48.239,76.593 +74059,48.832,75.119 +74060,49.391,73.645 +74061,46.218,78.035 +74062,46.894,76.567 +74063,47.533,75.1 +74064,48.139,73.633 +74065,44.825,78.002 +74066,45.549,76.542 +74067,46.235,75.081 +74068,46.887,73.622 +74069,43.434,77.969 +74070,44.204,76.516 +74071,44.937,75.063 +74072,45.634,73.612 +74073,42.042,77.934 +74074,42.86,76.489 +74075,43.638,75.046 +74076,44.381,73.603 +74077,40.652,77.898 +74078,41.515,76.463 +74079,42.34,75.028 +74080,43.128,73.596 +74081,39.262,77.861 +74082,40.171,76.435 +74083,41.041,75.011 +74084,41.873,73.59 +74085,37.872,77.823 +74086,38.827,76.408 +74087,39.742,74.995 +74088,40.619,73.585 +74089,36.483,77.783 +74090,37.484,76.38 +74091,38.442,74.979 +74092,39.363,73.581 +74093,35.095,77.743 +74094,36.14,76.352 +74095,37.143,74.963 +74096,38.107,73.578 +74097,33.707,77.701 +74098,34.797,76.323 +74099,35.843,74.948 +74100,36.85,73.576 +74101,32.32,77.659 +74102,33.454,76.294 +74103,34.543,74.933 +74104,35.592,73.576 +74105,30.934,77.615 +74106,32.112,76.265 +74107,33.243,74.918 +74108,34.333,73.576 +74109,29.549,77.57 +74110,30.769,76.235 +74111,31.942,74.904 +74112,33.074,73.578 +74113,28.165,77.525 +74114,29.427,76.205 +74115,30.642,74.89 +74116,31.813,73.58 +74117,26.781,77.478 +74118,28.086,76.175 +74119,29.341,74.877 +74120,30.552,73.584 +74121,25.399,77.43 +74122,26.744,76.144 +74123,28.039,74.863 +74124,29.29,73.589 +74125,24.017,77.381 +74126,25.403,76.113 +74127,26.738,74.851 +74128,28.027,73.595 +74129,22.636,77.331 +74130,24.063,76.081 +74131,25.436,74.838 +74132,26.763,73.602 +74133,21.257,77.28 +74134,22.722,76.05 +74135,24.134,74.826 +74136,25.497,73.61 +74137,19.878,77.228 +74138,21.382,76.017 +74139,22.831,74.814 +74140,24.231,73.619 +74141,18.501,77.176 +74142,20.043,75.985 +74143,21.528,74.803 +74144,22.964,73.628 +74145,17.124,77.122 +74146,18.704,75.952 +74147,20.225,74.791 +74148,21.696,73.639 +74149,15.749,77.067 +74150,17.365,75.919 +74151,18.921,74.781 +74152,20.426,73.651 +74153,14.375,77.012 +74154,16.026,75.886 +74155,17.617,74.77 +74156,19.155,73.663 +74157,13.002,76.955 +74158,14.688,75.852 +74159,16.313,74.76 +74160,17.884,73.677 +74161,11.63,76.898 +74162,13.351,75.819 +74163,15.008,74.75 +74164,16.611,73.691 +74165,10.26,76.839 +74166,12.014,75.784 +74167,13.703,74.74 +74168,15.336,73.707 +74169,8.8906,76.78 +74170,10.677,75.75 +74171,12.397,74.731 +74172,14.061,73.723 +74173,7.5228,76.721 +74174,9.3408,75.715 +74175,11.091,74.722 +74176,12.784,73.739 +74177,6.1563,76.66 +74178,8.005,75.68 +74179,9.785,74.713 +74180,11.506,73.757 +74181,4.7911,76.598 +74182,6.6697,75.645 +74183,8.4782,74.704 +74184,10.227,73.776 +74185,3.4274,76.536 +74186,5.3348,75.61 +74187,7.171,74.696 +74188,8.946,73.795 +74189,2.065,76.473 +74190,4.0005,75.574 +74191,5.8633,74.688 +74192,7.6639,73.815 +74193,0.70412,76.41 +74194,2.6666,75.538 +74195,4.5552,74.68 +74196,6.3805,73.835 +74197,359.34,76.345 +74198,1.3332,75.502 +74199,3.2467,74.673 +74200,5.0956,73.856 +74201,357.99,76.28 +74202,0.00037577,75.465 +74203,1.9376,74.665 +74204,3.8094,73.878 +74205,356.63,76.214 +74206,358.67,75.429 +74207,0.62815,74.658 +74208,2.5217,73.901 +74209,355.28,76.148 +74210,357.34,75.392 +74211,359.32,74.651 +74212,1.2326,73.924 +74213,353.92,76.081 +74214,356,75.355 +74215,358.01,74.644 +74216,359.94,73.948 +74217,352.57,76.014 +74218,354.67,75.318 +74219,356.7,74.638 +74220,358.65,73.972 +74221,351.22,75.946 +74222,353.34,75.281 +74223,355.39,74.631 +74224,357.36,73.997 +74225,349.87,75.877 +74226,352.01,75.243 +74227,354.07,74.625 +74228,356.06,74.022 +74229,348.52,75.808 +74230,350.68,75.205 +74231,352.76,74.619 +74232,354.77,74.048 +74233,347.18,75.738 +74234,349.36,75.168 +74235,351.45,74.613 +74236,353.47,74.074 +74237,345.84,75.668 +74238,348.03,75.13 +74239,350.13,74.607 +74240,352.17,74.101 +74241,344.49,75.598 +74242,346.7,75.092 +74243,348.82,74.602 +74244,350.87,74.128 +74245,343.15,75.527 +74246,345.37,75.053 +74247,347.51,74.596 +74248,349.56,74.155 +74249,341.81,75.456 +74250,344.05,75.015 +74251,346.19,74.591 +74252,348.26,74.183 +74253,340.48,75.384 +74254,342.72,74.976 +74255,344.88,74.586 +74256,346.95,74.211 +74257,339.14,75.312 +74258,341.4,74.938 +74259,343.56,74.581 +74260,345.65,74.239 +74261,337.81,75.24 +74262,340.07,74.899 +74263,342.24,74.576 +74264,344.34,74.268 +74265,336.48,75.168 +74266,338.75,74.861 +74267,340.93,74.571 +74268,343.03,74.296 +74269,335.15,75.095 +74270,337.42,74.822 +74271,339.61,74.566 +74272,341.71,74.325 +74273,333.82,75.022 +74274,336.1,74.783 +74275,338.29,74.561 +74276,340.4,74.355 +74277,332.49,74.949 +74278,334.78,74.744 +74279,336.97,74.556 +74280,339.09,74.384 +74281,331.17,74.876 +74282,333.46,74.705 +74283,335.65,74.552 +74284,337.77,74.414 +74285,329.84,74.802 +74286,332.14,74.666 +74287,334.33,74.547 +74288,336.45,74.443 +74289,328.52,74.729 +74290,330.81,74.627 +74291,333.01,74.542 +74292,335.13,74.473 +74293,327.2,74.655 +74294,329.49,74.588 +74295,331.69,74.538 +74296,333.81,74.503 +74297,325.88,74.581 +74298,328.18,74.549 +74299,330.37,74.533 +74300,332.48,74.532 +74301,324.57,74.508 +74302,326.86,74.51 +74303,329.05,74.528 +74304,331.16,74.562 +74305,323.25,74.434 +74306,325.54,74.471 +74307,327.73,74.524 +74308,329.83,74.592 +74309,321.94,74.36 +74310,324.22,74.432 +74311,326.4,74.519 +74312,328.51,74.621 +74313,320.63,74.287 +74314,322.9,74.393 +74315,325.08,74.515 +74316,327.18,74.651 +74317,319.32,74.213 +74318,321.59,74.354 +74319,323.76,74.51 +74320,325.84,74.68 +74321,318.01,74.14 +74322,320.27,74.315 +74323,322.43,74.505 +74324,324.51,74.709 +74325,316.71,74.066 +74326,318.96,74.276 +74327,321.11,74.5 +74328,323.18,74.738 +74329,315.4,73.993 +74330,317.64,74.237 +74331,319.78,74.496 +74332,321.84,74.767 +74333,314.1,73.921 +74334,316.33,74.198 +74335,318.46,74.491 +74336,320.5,74.796 +74337,312.8,73.848 +74338,315.01,74.16 +74339,317.13,74.486 +74340,319.16,74.824 +74341,311.5,73.775 +74342,313.7,74.121 +74343,315.8,74.481 +74344,317.82,74.852 +74345,310.21,73.703 +74346,312.39,74.083 +74347,314.47,74.476 +74348,316.48,74.88 +74349,308.91,73.632 +74350,311.07,74.044 +74351,313.15,74.47 +74352,315.14,74.907 +74353,307.62,73.56 +74354,309.76,74.006 +74355,311.82,74.465 +74356,313.79,74.935 +74357,306.33,73.489 +74358,308.45,73.968 +74359,310.49,74.459 +74360,312.44,74.961 +74361,305.04,73.418 +74362,307.14,73.93 +74363,309.16,74.454 +74364,311.1,74.987 +74365,303.75,73.348 +74366,305.83,73.892 +74367,307.83,74.448 +74368,309.75,75.013 +74369,302.46,73.278 +74370,304.52,73.854 +74371,306.5,74.442 +74372,308.39,75.039 +74373,301.17,73.209 +74374,303.21,73.817 +74375,305.17,74.436 +74376,307.04,75.064 +74377,299.89,73.14 +74378,301.91,73.78 +74379,303.84,74.43 +74380,305.69,75.088 +74381,298.61,73.072 +74382,300.6,73.742 +74383,302.5,74.423 +74384,304.33,75.112 +74385,297.33,73.004 +74386,299.29,73.705 +74387,301.17,74.417 +74388,302.98,75.135 +74389,296.05,72.937 +74390,297.98,73.669 +74391,299.84,74.41 +74392,301.62,75.158 +74393,294.77,72.87 +74394,296.68,73.632 +74395,298.51,74.403 +74396,300.26,75.18 +74397,293.49,72.804 +74398,295.37,73.596 +74399,297.17,74.396 +74400,298.9,75.201 +74401,292.22,72.739 +74402,294.07,73.56 +74403,295.84,74.388 +74404,297.53,75.222 +74405,290.95,72.674 +74406,292.76,73.524 +74407,294.5,74.381 +74408,296.17,75.242 +74409,289.67,72.61 +74410,291.46,73.488 +74411,293.17,74.373 +74412,294.8,75.262 +74413,288.4,72.547 +74414,290.16,73.453 +74415,291.83,74.365 +74416,293.44,75.28 +74417,287.13,72.484 +74418,288.85,73.417 +74419,290.5,74.356 +74420,292.07,75.298 +74421,285.87,72.422 +74422,287.55,73.382 +74423,289.16,74.348 +74424,290.7,75.316 +74425,284.6,72.361 +74426,286.25,73.348 +74427,287.82,74.339 +74428,289.33,75.332 +74429,283.33,72.301 +74430,284.94,73.313 +74431,286.49,74.33 +74432,287.96,75.348 +74433,282.07,72.242 +74434,283.64,73.279 +74435,285.15,74.32 +74436,286.59,75.363 +74437,280.81,72.184 +74438,282.34,73.246 +74439,283.81,74.311 +74440,285.21,75.377 +74441,279.54,72.126 +74442,281.04,73.212 +74443,282.47,74.301 +74444,283.84,75.39 +74445,278.28,72.069 +74446,279.74,73.179 +74447,281.13,74.29 +74448,282.46,75.402 +74449,277.02,72.013 +74450,278.44,73.146 +74451,279.79,74.28 +74452,281.09,75.413 +74453,275.77,71.959 +74454,277.14,73.113 +74455,278.45,74.269 +74456,279.71,75.424 +74457,274.51,71.905 +74458,275.84,73.081 +74459,277.11,74.258 +74460,278.33,75.433 +74461,273.25,71.852 +74462,274.54,73.049 +74463,275.77,74.246 +74464,276.95,75.442 +74465,272,71.8 +74466,273.24,73.017 +74467,274.43,74.235 +74468,275.57,75.45 +74469,270.74,71.749 +74470,271.95,72.986 +74471,273.09,74.222 +74472,274.19,75.456 +74473,269.49,71.699 +74474,270.65,72.955 +74475,271.75,74.21 +74476,272.8,75.462 +74477,268.24,71.65 +74478,269.35,72.924 +74479,270.41,74.197 +74480,271.42,75.467 +74481,266.98,71.602 +74482,268.05,72.894 +74483,269.07,74.184 +74484,270.04,75.471 +74485,265.73,71.555 +74486,266.76,72.864 +74487,267.73,74.171 +74488,268.65,75.473 +74489,264.48,71.51 +74490,265.46,72.834 +74491,266.39,74.157 +74492,267.26,75.475 +74493,263.23,71.465 +74494,264.16,72.805 +74495,265.04,74.143 +74496,265.88,75.475 +74497,261.98,71.422 +74498,262.87,72.776 +74499,263.7,74.128 +74500,264.49,75.475 +74501,260.74,71.379 +74502,261.57,72.748 +74503,262.36,74.113 +74504,263.1,75.473 +74505,259.49,71.338 +74506,260.28,72.72 +74507,261.02,74.098 +74508,261.71,75.471 +74509,258.24,71.298 +74510,258.98,72.692 +74511,259.67,74.082 +74512,260.32,75.467 +74513,257,71.259 +74514,257.69,72.665 +74515,258.33,74.066 +74516,258.93,75.462 +74517,255.75,71.221 +74518,256.39,72.638 +74519,256.99,74.05 +74520,257.54,75.456 +74521,254.5,71.184 +74522,255.1,72.611 +74523,255.64,74.033 +74524,256.15,75.449 +74525,253.26,71.149 +74526,253.8,72.585 +74527,254.3,74.016 +74528,254.76,75.441 +74529,252.01,71.115 +74530,252.51,72.559 +74531,252.96,73.999 +74532,253.37,75.432 +74533,250.77,71.081 +74534,251.21,72.534 +74535,251.61,73.981 +74536,251.98,75.421 +74537,249.53,71.049 +74538,249.92,72.509 +74539,250.27,73.962 +74540,250.58,75.409 +74541,248.28,71.019 +74542,248.62,72.484 +74543,248.92,73.944 +74544,249.19,75.397 +74545,247.04,70.989 +74546,247.33,72.46 +74547,247.58,73.925 +74548,247.8,75.383 +74549,245.8,70.961 +74550,246.03,72.436 +74551,246.24,73.905 +74552,246.4,75.368 +74553,244.55,70.934 +74554,244.74,72.412 +74555,244.89,73.886 +74556,245.01,75.351 +74557,243.31,70.908 +74558,243.45,72.389 +74559,243.55,73.865 +74560,243.62,75.334 +74561,242.07,70.883 +74562,242.15,72.367 +74563,242.2,73.845 +74564,242.22,75.315 +74565,240.82,70.86 +74566,240.86,72.345 +74567,240.86,73.824 +74568,240.83,75.296 +74569,239.58,70.838 +74570,239.57,72.323 +74571,239.52,73.802 +74572,239.43,75.275 +74573,238.34,70.817 +74574,238.27,72.301 +74575,238.17,73.78 +74576,238.04,75.253 +74577,237.1,70.797 +74578,236.98,72.28 +74579,236.83,73.758 +74580,236.64,75.229 +74581,235.85,70.778 +74582,235.68,72.26 +74583,235.48,73.736 +74584,235.25,75.205 +74585,234.61,70.761 +74586,234.39,72.239 +74587,234.14,73.713 +74588,233.86,75.179 +74589,233.37,70.745 +74590,233.1,72.22 +74591,232.79,73.689 +74592,232.46,75.152 +74593,232.12,70.73 +74594,231.8,72.2 +74595,231.45,73.666 +74596,231.07,75.125 +74597,230.88,70.716 +74598,230.51,72.181 +74599,230.11,73.641 +74600,229.67,75.095 +74601,229.63,70.704 +74602,229.21,72.163 +74603,228.76,73.617 +74604,228.28,75.065 +74605,228.39,70.692 +74606,227.92,72.144 +74607,227.42,73.592 +74608,226.89,75.034 +74609,227.14,70.682 +74610,226.63,72.127 +74611,226.07,73.567 +74612,225.49,75.001 +74613,225.9,70.673 +74614,225.33,72.109 +74615,224.73,73.541 +74616,224.1,74.967 +74617,224.65,70.665 +74618,224.04,72.092 +74619,223.39,73.515 +74620,222.71,74.933 +74621,223.41,70.659 +74622,222.74,72.075 +74623,222.04,73.488 +74624,221.31,74.897 +74625,222.16,70.653 +74626,221.45,72.059 +74627,220.7,73.462 +74628,219.92,74.859 +74629,220.91,70.649 +74630,220.15,72.043 +74631,219.36,73.434 +74632,218.53,74.821 +74633,219.66,70.646 +74634,218.86,72.028 +74635,218.02,73.407 +74636,217.14,74.782 +74637,218.42,70.644 +74638,217.56,72.012 +74639,216.67,73.379 +74640,215.75,74.741 +74641,217.17,70.643 +74642,216.27,71.998 +74643,215.33,73.35 +74644,214.36,74.7 +74645,215.92,70.643 +74646,214.97,71.983 +74647,213.99,73.322 +74648,212.97,74.657 +74649,214.66,70.644 +74650,213.67,71.969 +74651,212.65,73.293 +74652,211.58,74.614 +74653,213.41,70.647 +74654,212.38,71.956 +74655,211.31,73.263 +74656,210.2,74.569 +74657,212.16,70.65 +74658,211.08,71.942 +74659,209.97,73.234 +74660,208.81,74.523 +74661,210.91,70.655 +74662,209.78,71.929 +74663,208.62,73.203 +74664,207.42,74.476 +74665,209.65,70.66 +74666,208.49,71.917 +74667,207.28,73.173 +74668,206.04,74.428 +74669,208.4,70.667 +74670,207.19,71.904 +74671,205.94,73.142 +74672,204.65,74.38 +74673,207.14,70.674 +74674,205.89,71.892 +74675,204.6,73.111 +74676,203.27,74.33 +74677,205.88,70.683 +74678,204.59,71.881 +74679,203.26,73.08 +74680,201.89,74.279 +74681,204.63,70.692 +74682,203.3,71.869 +74683,201.92,73.048 +74684,200.51,74.227 +74685,203.37,70.703 +74686,202,71.858 +74687,200.59,73.016 +74688,199.12,74.174 +74689,202.11,70.714 +74690,200.7,71.848 +74691,199.25,72.983 +74692,197.75,74.121 +74693,200.84,70.727 +74694,199.4,71.837 +74695,197.91,72.951 +74696,196.37,74.066 +74697,199.58,70.74 +74698,198.1,71.827 +74699,196.57,72.918 +74700,194.99,74.011 +74701,198.32,70.754 +74702,196.8,71.817 +74703,195.23,72.884 +74704,193.61,73.954 +74705,197.05,70.769 +74706,195.5,71.808 +74707,193.9,72.851 +74708,192.24,73.897 +74709,195.79,70.785 +74710,194.2,71.799 +74711,192.56,72.817 +74712,190.86,73.839 +74713,194.52,70.801 +74714,192.9,71.79 +74715,191.22,72.783 +74716,189.49,73.78 +74717,193.25,70.819 +74718,191.6,71.781 +74719,189.89,72.748 +74720,188.12,73.72 +74721,191.98,70.837 +74722,190.29,71.773 +74723,188.55,72.714 +74724,186.75,73.66 +74725,190.71,70.856 +74726,188.99,71.765 +74727,187.22,72.679 +74728,185.38,73.599 +74729,189.44,70.876 +74730,187.69,71.757 +74731,185.88,72.644 +74732,184.01,73.537 +74733,188.16,70.896 +74734,186.39,71.749 +74735,184.55,72.608 +74736,182.64,73.474 +74737,186.89,70.917 +74738,185.08,71.741 +74739,183.22,72.573 +74740,181.28,73.41 +74741,185.61,70.939 +74742,183.78,71.734 +74743,181.88,72.537 +74744,179.92,73.346 +74745,184.33,70.961 +74746,182.47,71.727 +74747,180.55,72.501 +74748,178.55,73.282 +74749,183.05,70.984 +74750,181.17,71.72 +74751,179.22,72.464 +74752,177.19,73.216 +74753,181.77,71.008 +74754,179.86,71.714 +74755,177.89,72.428 +74756,175.83,73.15 +74757,180.49,71.032 +74758,178.56,71.707 +74759,176.56,72.391 +74760,174.48,73.083 +74761,179.21,71.057 +74762,177.25,71.701 +74763,175.22,72.354 +74764,173.12,73.016 +74765,177.92,71.082 +74766,175.94,71.695 +74767,173.9,72.317 +74768,171.77,72.948 +74769,176.63,71.107 +74770,174.64,71.689 +74771,172.57,72.28 +74772,170.41,72.88 +74773,175.35,71.134 +74774,173.33,71.684 +74775,171.24,72.243 +74776,169.06,72.811 +74777,174.06,71.16 +74778,172.02,71.678 +74779,169.91,72.205 +74780,167.71,72.742 +74781,172.76,71.187 +74782,170.71,71.673 +74783,168.58,72.167 +74784,166.36,72.672 +74785,171.47,71.214 +74786,169.4,71.667 +74787,167.25,72.13 +74788,165.02,72.602 +74789,170.18,71.242 +74790,168.09,71.662 +74791,165.93,72.092 +74792,163.67,72.532 +74793,168.88,71.27 +74794,166.78,71.657 +74795,164.6,72.054 +74796,162.33,72.461 +74797,167.58,71.299 +74798,165.47,71.652 +74799,163.27,72.015 +74800,160.99,72.39 +74801,166.28,71.327 +74802,164.16,71.647 +74803,161.95,71.977 +74804,159.65,72.318 +74805,164.98,71.356 +74806,162.85,71.642 +74807,160.63,71.939 +74808,158.31,72.246 +74809,163.68,71.385 +74810,161.53,71.638 +74811,159.3,71.9 +74812,156.97,72.174 +74813,162.37,71.415 +74814,160.22,71.633 +74815,157.98,71.862 +74816,155.64,72.102 +74817,161.07,71.444 +74818,158.91,71.628 +74819,156.66,71.823 +74820,154.31,72.029 +74821,159.76,71.474 +74822,157.59,71.624 +74823,155.33,71.785 +74824,152.98,71.957 +74825,158.45,71.503 +74826,156.28,71.619 +74827,154.01,71.746 +74828,151.65,71.884 +74829,157.14,71.533 +74830,154.96,71.615 +74831,152.69,71.707 +74832,150.32,71.811 +74833,155.83,71.563 +74834,153.64,71.61 +74835,151.37,71.668 +74836,148.99,71.738 +74837,154.51,71.593 +74838,152.33,71.606 +74839,150.05,71.63 +74840,147.67,71.664 +74841,153.2,71.623 +74842,151.01,71.602 +74843,148.73,71.591 +74844,146.35,71.591 +74845,151.88,71.652 +74846,149.69,71.597 +74847,147.41,71.552 +74848,145.03,71.518 +74849,150.56,71.682 +74850,148.38,71.593 +74851,146.1,71.513 +74852,143.71,71.445 +74853,149.24,71.712 +74854,147.06,71.588 +74855,144.78,71.474 +74856,142.39,71.371 +74857,147.92,71.742 +74858,145.74,71.584 +74859,143.46,71.436 +74860,141.08,71.298 +74861,146.59,71.771 +74862,144.42,71.579 +74863,142.15,71.397 +74864,139.77,71.225 +74865,145.27,71.8 +74866,143.1,71.575 +74867,140.83,71.358 +74868,138.46,71.152 +74869,143.94,71.829 +74870,141.78,71.57 +74871,139.52,71.32 +74872,137.15,71.08 +74873,142.61,71.858 +74874,140.45,71.565 +74875,138.2,71.281 +74876,135.84,71.007 +74877,141.28,71.887 +74878,139.13,71.56 +74879,136.89,71.242 +74880,134.54,70.935 +74881,139.95,71.915 +74882,137.81,71.556 +74883,135.58,71.204 +74884,133.23,70.862 +74885,138.61,71.943 +74886,136.49,71.551 +74887,134.26,71.166 +74888,131.93,70.79 +74889,137.28,71.971 +74890,135.16,71.546 +74891,132.95,71.128 +74892,130.63,70.719 +74893,135.94,71.998 +74894,133.84,71.54 +74895,131.64,71.089 +74896,129.33,70.648 +74897,134.6,72.025 +74898,132.51,71.535 +74899,130.33,71.051 +74900,128.04,70.577 +74901,133.26,72.052 +74902,131.19,71.529 +74903,129.02,71.014 +74904,126.74,70.506 +74905,131.92,72.078 +74906,129.86,71.524 +74907,127.71,70.976 +74908,125.45,70.436 +74909,130.57,72.104 +74910,128.54,71.518 +74911,126.4,70.938 +74912,124.16,70.366 +74913,129.23,72.129 +74914,127.21,71.512 +74915,125.09,70.901 +74916,122.87,70.297 +74917,127.88,72.154 +74918,125.88,71.506 +74919,123.78,70.863 +74920,121.58,70.228 +74921,126.53,72.178 +74922,124.55,71.5 +74923,122.48,70.826 +74924,120.3,70.159 +74925,125.18,72.202 +74926,123.22,71.493 +74927,121.17,70.789 +74928,119.01,70.092 +74929,123.83,72.225 +74930,121.9,71.487 +74931,119.86,70.753 +74932,117.73,70.024 +74933,122.48,72.247 +74934,120.57,71.48 +74935,118.56,70.716 +74936,116.45,69.958 +74937,121.13,72.269 +74938,119.24,71.473 +74939,117.25,70.68 +74940,115.17,69.891 +74941,119.77,72.29 +74942,117.91,71.466 +74943,115.95,70.644 +74944,113.89,69.826 +74945,118.41,72.311 +74946,116.57,71.458 +74947,114.65,70.608 +74948,112.62,69.761 +74949,117.06,72.331 +74950,115.24,71.45 +74951,113.34,70.572 +74952,111.34,69.697 +74953,115.7,72.35 +74954,113.91,71.443 +74955,112.04,70.536 +74956,110.07,69.634 +74957,114.33,72.368 +74958,112.58,71.434 +74959,110.74,70.501 +74960,108.8,69.571 +74961,112.97,72.386 +74962,111.25,71.426 +74963,109.43,70.466 +74964,107.53,69.509 +74965,111.61,72.403 +74966,109.91,71.417 +74967,108.13,70.431 +74968,106.26,69.448 +74969,110.24,72.419 +74970,108.58,71.408 +74971,106.83,70.397 +74972,104.99,69.387 +74973,108.88,72.434 +74974,107.25,71.399 +74975,105.53,70.363 +74976,103.73,69.328 +74977,107.51,72.448 +74978,105.91,71.389 +74979,104.23,70.329 +74980,102.46,69.269 +74981,106.14,72.462 +74982,104.58,71.38 +74983,102.93,70.295 +74984,101.2,69.211 +74985,104.77,72.475 +74986,103.24,71.369 +74987,101.63,70.262 +74988,99.938,69.154 +74989,103.4,72.486 +74990,101.9,71.359 +74991,100.33,70.229 +74992,98.678,69.098 +74993,102.02,72.497 +74994,100.57,71.348 +74995,99.036,70.196 +74996,97.419,69.042 +74997,100.65,72.507 +74998,99.232,71.337 +74999,97.739,70.164 +75000,96.162,68.988 +75001,99.275,72.516 +75002,97.895,71.326 +75003,96.441,70.131 +75004,94.906,68.935 +75005,97.899,72.524 +75006,96.558,71.314 +75007,95.144,70.1 +75008,93.651,68.882 +75009,96.522,72.531 +75010,95.22,71.302 +75011,93.847,70.068 +75012,92.397,68.831 +75013,95.144,72.537 +75014,93.883,71.29 +75015,92.551,70.037 +75016,91.144,68.78 +75017,93.765,72.543 +75018,92.544,71.277 +75019,91.255,70.006 +75020,89.892,68.731 +75021,92.385,72.547 +75022,91.206,71.264 +75023,89.96,69.976 +75024,88.641,68.683 +75025,91.004,72.55 +75026,89.867,71.251 +75027,88.665,69.945 +75028,87.391,68.635 +75029,89.622,72.552 +75030,88.528,71.237 +75031,87.37,69.916 +75032,86.143,68.589 +75033,88.239,72.553 +75034,87.188,71.223 +75035,86.075,69.886 +75036,84.895,68.544 +75037,86.855,72.552 +75038,85.848,71.209 +75039,84.781,69.857 +75040,83.648,68.5 +75041,85.471,72.551 +75042,84.508,71.194 +75043,83.487,69.828 +75044,82.402,68.457 +75045,84.085,72.549 +75046,83.168,71.179 +75047,82.193,69.8 +75048,81.157,68.415 +75049,82.699,72.546 +75050,81.828,71.163 +75051,80.9,69.772 +75052,79.912,68.374 +75053,81.312,72.541 +75054,80.487,71.147 +75055,79.607,69.744 +75056,78.668,68.334 +75057,79.925,72.535 +75058,79.146,71.131 +75059,78.314,69.717 +75060,77.425,68.296 +75061,78.536,72.529 +75062,77.805,71.114 +75063,77.021,69.69 +75064,76.183,68.259 +75065,77.147,72.521 +75066,76.463,71.097 +75067,75.729,69.664 +75068,74.941,68.223 +75069,75.758,72.512 +75070,75.122,71.08 +75071,74.437,69.638 +75072,73.7,68.188 +75073,74.368,72.502 +75074,73.78,71.062 +75075,73.145,69.612 +75076,72.459,68.154 +75077,72.977,72.49 +75078,72.438,71.044 +75079,71.853,69.587 +75080,71.219,68.121 +75081,71.586,72.478 +75082,71.096,71.025 +75083,70.561,69.562 +75084,69.979,68.09 +75085,70.194,72.464 +75086,69.754,71.006 +75087,69.27,69.537 +75088,68.74,68.06 +75089,68.802,72.449 +75090,68.411,70.986 +75091,67.978,69.513 +75092,67.501,68.031 +75093,67.41,72.433 +75094,67.069,70.967 +75095,66.687,69.489 +75096,66.262,68.003 +75097,66.017,72.416 +75098,65.726,70.946 +75099,65.396,69.466 +75100,65.024,67.976 +75101,64.624,72.398 +75102,64.384,70.926 +75103,64.105,69.443 +75104,63.786,67.951 +75105,63.231,72.378 +75106,63.041,70.905 +75107,62.814,69.421 +75108,62.548,67.927 +75109,61.837,72.357 +75110,61.698,70.883 +75111,61.524,69.398 +75112,61.31,67.904 +75113,60.443,72.335 +75114,60.356,70.862 +75115,60.233,69.377 +75116,60.073,67.882 +75117,59.049,72.312 +75118,59.013,70.839 +75119,58.942,69.355 +75120,58.835,67.862 +75121,57.655,72.288 +75122,57.67,70.817 +75123,57.651,69.334 +75124,57.598,67.842 +75125,56.26,72.262 +75126,56.327,70.794 +75127,56.361,69.314 +75128,56.36,67.824 +75129,54.866,72.236 +75130,54.984,70.77 +75131,55.07,69.294 +75132,55.123,67.808 +75133,53.471,72.208 +75134,53.641,70.746 +75135,53.78,69.274 +75136,53.885,67.792 +75137,52.077,72.179 +75138,52.299,70.722 +75139,52.489,69.254 +75140,52.648,67.778 +75141,50.683,72.149 +75142,50.956,70.697 +75143,51.198,69.235 +75144,51.41,67.764 +75145,49.288,72.117 +75146,49.613,70.672 +75147,49.908,69.217 +75148,50.171,67.752 +75149,47.894,72.085 +75150,48.27,70.647 +75151,48.617,69.199 +75152,48.933,67.742 +75153,46.5,72.051 +75154,46.928,70.621 +75155,47.326,69.181 +75156,47.694,67.732 +75157,45.106,72.016 +75158,45.585,70.595 +75159,46.035,69.163 +75160,46.455,67.724 +75161,43.713,71.98 +75162,44.243,70.568 +75163,44.744,69.146 +75164,45.216,67.716 +75165,42.319,71.943 +75166,42.901,70.541 +75167,43.453,69.13 +75168,43.976,67.71 +75169,40.926,71.905 +75170,41.559,70.514 +75171,42.162,69.114 +75172,42.736,67.705 +75173,39.533,71.865 +75174,40.217,70.486 +75175,40.87,69.098 +75176,41.495,67.702 +75177,38.141,71.825 +75178,38.875,70.458 +75179,39.579,69.082 +75180,40.254,67.699 +75181,36.749,71.783 +75182,37.533,70.429 +75183,38.287,69.067 +75184,39.012,67.697 +75185,35.358,71.74 +75186,36.192,70.4 +75187,36.995,69.052 +75188,37.769,67.697 +75189,33.967,71.697 +75190,34.851,70.371 +75191,35.703,69.038 +75192,36.526,67.698 +75193,32.577,71.652 +75194,33.51,70.342 +75195,34.411,69.024 +75196,35.283,67.699 +75197,31.187,71.606 +75198,32.169,70.312 +75199,33.118,69.01 +75200,34.038,67.702 +75201,29.798,71.559 +75202,30.828,70.281 +75203,31.826,68.997 +75204,32.793,67.706 +75205,28.409,71.511 +75206,29.488,70.25 +75207,30.533,68.984 +75208,31.547,67.711 +75209,27.021,71.462 +75210,28.148,70.219 +75211,29.24,68.971 +75212,30.3,67.717 +75213,25.634,71.411 +75214,26.808,70.188 +75215,27.946,68.959 +75216,29.052,67.724 +75217,24.248,71.36 +75218,25.469,70.156 +75219,26.652,68.946 +75220,27.803,67.732 +75221,22.862,71.308 +75222,24.129,70.124 +75223,25.359,68.935 +75224,26.554,67.741 +75225,21.478,71.255 +75226,22.79,70.092 +75227,24.064,68.923 +75228,25.303,67.751 +75229,20.094,71.201 +75230,21.452,70.059 +75231,22.77,68.912 +75232,24.051,67.762 +75233,18.711,71.146 +75234,20.114,70.026 +75235,21.475,68.902 +75236,22.799,67.774 +75237,17.329,71.09 +75238,18.776,69.993 +75239,20.18,68.891 +75240,21.545,67.787 +75241,15.948,71.034 +75242,17.438,69.959 +75243,18.884,68.881 +75244,20.29,67.801 +75245,14.568,70.976 +75246,16.101,69.925 +75247,17.588,68.871 +75248,19.034,67.815 +75249,13.189,70.917 +75250,14.764,69.891 +75251,16.292,68.861 +75252,17.777,67.831 +75253,11.811,70.858 +75254,13.428,69.856 +75255,14.995,68.852 +75256,16.519,67.847 +75257,10.435,70.798 +75258,12.092,69.821 +75259,13.698,68.843 +75260,15.26,67.864 +75261,9.0591,70.737 +75262,10.756,69.786 +75263,12.401,68.834 +75264,13.999,67.882 +75265,7.6847,70.675 +75266,9.421,69.751 +75267,11.103,68.826 +75268,12.737,67.901 +75269,6.3115,70.612 +75270,8.0863,69.715 +75271,9.8046,68.818 +75272,11.474,67.92 +75273,4.9396,70.549 +75274,6.752,69.679 +75275,8.506,68.809 +75276,10.209,67.94 +75277,3.569,70.485 +75278,5.4181,69.643 +75279,7.2069,68.802 +75280,8.9434,67.961 +75281,2.1997,70.42 +75282,4.0847,69.607 +75283,5.9074,68.794 +75284,7.6762,67.982 +75285,0.83179,70.355 +75286,2.7517,69.57 +75287,4.6075,68.787 +75288,6.4075,68.005 +75289,359.47,70.289 +75290,1.4193,69.534 +75291,3.3071,68.779 +75292,5.1375,68.027 +75293,358.1,70.222 +75294,0.087297,69.497 +75295,2.0062,68.773 +75296,3.8661,68.051 +75297,356.74,70.154 +75298,358.76,69.459 +75299,0.70491,68.766 +75300,2.5931,68.075 +75301,355.37,70.087 +75302,357.42,69.422 +75303,359.4,68.759 +75304,1.3188,68.099 +75305,354.01,70.018 +75306,356.09,69.384 +75307,358.1,68.753 +75308,0.042897,68.124 +75309,352.65,69.949 +75310,354.76,69.346 +75311,356.8,68.746 +75312,358.77,68.15 +75313,351.3,69.879 +75314,353.43,69.308 +75315,355.49,68.74 +75316,357.49,68.176 +75317,349.94,69.809 +75318,352.11,69.27 +75319,354.19,68.734 +75320,356.21,68.202 +75321,348.59,69.739 +75322,350.78,69.232 +75323,352.89,68.729 +75324,354.92,68.229 +75325,347.23,69.668 +75326,349.45,69.194 +75327,351.58,68.723 +75328,353.64,68.256 +75329,345.88,69.596 +75330,348.12,69.155 +75331,350.28,68.717 +75332,352.36,68.284 +75333,344.53,69.524 +75334,346.8,69.116 +75335,348.97,68.712 +75336,351.07,68.312 +75337,343.18,69.452 +75338,345.47,69.077 +75339,347.66,68.707 +75340,349.78,68.34 +75341,341.84,69.38 +75342,344.14,69.038 +75343,346.36,68.701 +75344,348.49,68.369 +75345,340.49,69.307 +75346,342.82,68.999 +75347,345.05,68.696 +75348,347.2,68.398 +75349,339.15,69.234 +75350,341.49,68.96 +75351,343.74,68.691 +75352,345.91,68.427 +75353,337.81,69.161 +75354,340.17,68.921 +75355,342.43,68.686 +75356,344.61,68.456 +75357,336.47,69.087 +75358,338.85,68.882 +75359,341.12,68.681 +75360,343.31,68.486 +75361,335.13,69.013 +75362,337.53,68.842 +75363,339.81,68.676 +75364,342.02,68.515 +75365,333.8,68.939 +75366,336.2,68.803 +75367,338.5,68.671 +75368,340.72,68.545 +75369,332.46,68.865 +75370,334.88,68.763 +75371,337.19,68.667 +75372,339.41,68.575 +75373,331.13,68.791 +75374,333.56,68.724 +75375,335.88,68.662 +75376,338.11,68.605 +75377,329.8,68.716 +75378,332.24,68.684 +75379,334.57,68.657 +75380,336.81,68.635 +75381,328.47,68.642 +75382,330.92,68.645 +75383,333.26,68.652 +75384,335.5,68.665 +75385,327.15,68.568 +75386,329.6,68.605 +75387,331.95,68.647 +75388,334.19,68.694 +75389,325.82,68.493 +75390,328.28,68.565 +75391,330.63,68.643 +75392,332.88,68.724 +75393,324.5,68.419 +75394,326.97,68.526 +75395,329.32,68.638 +75396,331.57,68.754 +75397,323.18,68.344 +75398,325.65,68.486 +75399,328,68.633 +75400,330.26,68.784 +75401,321.86,68.27 +75402,324.33,68.447 +75403,326.69,68.628 +75404,328.94,68.813 +75405,320.54,68.196 +75406,323.02,68.407 +75407,325.37,68.623 +75408,327.62,68.843 +75409,319.23,68.122 +75410,321.7,68.367 +75411,324.06,68.618 +75412,326.3,68.872 +75413,317.91,68.048 +75414,320.39,68.328 +75415,322.74,68.613 +75416,324.98,68.901 +75417,316.6,67.974 +75418,319.07,68.289 +75419,321.42,68.608 +75420,323.66,68.93 +75421,315.29,67.9 +75422,317.76,68.249 +75423,320.1,68.602 +75424,322.34,68.958 +75425,313.98,67.827 +75426,316.45,68.21 +75427,318.78,68.597 +75428,321.01,68.987 +75429,312.68,67.754 +75430,315.13,68.171 +75431,317.46,68.591 +75432,319.69,69.014 +75433,311.37,67.681 +75434,313.82,68.132 +75435,316.14,68.586 +75436,318.36,69.042 +75437,310.07,67.609 +75438,312.51,68.093 +75439,314.82,68.58 +75440,317.03,69.069 +75441,308.77,67.537 +75442,311.2,68.054 +75443,313.5,68.574 +75444,315.69,69.096 +75445,307.47,67.465 +75446,309.89,68.015 +75447,312.18,68.568 +75448,314.36,69.122 +75449,306.18,67.394 +75450,308.58,67.977 +75451,310.86,68.562 +75452,313.03,69.148 +75453,304.88,67.323 +75454,307.27,67.938 +75455,309.54,68.556 +75456,311.69,69.174 +75457,303.59,67.253 +75458,305.97,67.9 +75459,308.21,68.549 +75460,310.35,69.198 +75461,302.3,67.183 +75462,304.66,67.862 +75463,306.89,68.542 +75464,309.01,69.223 +75465,301.01,67.114 +75466,303.35,67.824 +75467,305.57,68.536 +75468,307.67,69.247 +75469,299.73,67.045 +75470,302.05,67.786 +75471,304.24,68.529 +75472,306.32,69.27 +75473,298.44,66.977 +75474,300.74,67.749 +75475,302.92,68.521 +75476,304.98,69.292 +75477,297.16,66.909 +75478,299.44,67.711 +75479,301.59,68.514 +75480,303.63,69.314 +75481,295.88,66.842 +75482,298.13,67.674 +75483,300.26,68.506 +75484,302.28,69.336 +75485,294.6,66.776 +75486,296.83,67.637 +75487,298.94,68.498 +75488,300.93,69.356 +75489,293.32,66.71 +75490,295.53,67.601 +75491,297.61,68.49 +75492,299.58,69.376 +75493,292.04,66.645 +75494,294.22,67.564 +75495,296.28,68.481 +75496,298.23,69.396 +75497,290.77,66.58 +75498,292.92,67.528 +75499,294.95,68.473 +75500,296.88,69.414 +75501,289.49,66.517 +75502,291.62,67.492 +75503,293.62,68.464 +75504,295.52,69.432 +75505,288.22,66.454 +75506,290.32,67.456 +75507,292.29,68.455 +75508,294.16,69.449 +75509,286.95,66.392 +75510,289.02,67.42 +75511,290.96,68.445 +75512,292.8,69.465 +75513,285.68,66.331 +75514,287.72,67.385 +75515,289.63,68.435 +75516,291.44,69.48 +75517,284.42,66.27 +75518,286.42,67.35 +75519,288.3,68.425 +75520,290.08,69.495 +75521,283.15,66.211 +75522,285.12,67.315 +75523,286.97,68.415 +75524,288.72,69.509 +75525,281.89,66.152 +75526,283.82,67.281 +75527,285.64,68.404 +75528,287.36,69.521 +75529,280.63,66.094 +75530,282.52,67.247 +75531,284.31,68.393 +75532,285.99,69.533 +75533,279.37,66.037 +75534,281.23,67.213 +75535,282.97,68.382 +75536,284.62,69.544 +75537,278.11,65.981 +75538,279.93,67.179 +75539,281.64,68.371 +75540,283.26,69.554 +75541,276.85,65.926 +75542,278.63,67.146 +75543,280.31,68.359 +75544,281.89,69.563 +75545,275.6,65.872 +75546,277.34,67.113 +75547,278.97,68.346 +75548,280.52,69.571 +75549,274.34,65.819 +75550,276.04,67.08 +75551,277.64,68.334 +75552,279.15,69.578 +75553,273.09,65.767 +75554,274.75,67.048 +75555,276.31,68.321 +75556,277.77,69.584 +75557,271.83,65.716 +75558,273.45,67.016 +75559,274.97,68.308 +75560,276.4,69.589 +75561,270.58,65.666 +75562,272.16,66.985 +75563,273.63,68.294 +75564,275.02,69.593 +75565,269.33,65.617 +75566,270.86,66.953 +75567,272.3,68.28 +75568,273.65,69.596 +75569,268.09,65.569 +75570,269.57,66.922 +75571,270.96,68.266 +75572,272.27,69.598 +75573,266.84,65.523 +75574,268.28,66.892 +75575,269.63,68.251 +75576,270.89,69.599 +75577,265.59,65.477 +75578,266.98,66.862 +75579,268.29,68.236 +75580,269.51,69.599 +75581,264.35,65.432 +75582,265.69,66.832 +75583,266.95,68.22 +75584,268.13,69.597 +75585,263.1,65.389 +75586,264.4,66.802 +75587,265.61,68.205 +75588,266.75,69.595 +75589,261.86,65.346 +75590,263.11,66.773 +75591,264.28,68.188 +75592,265.37,69.591 +75593,260.62,65.305 +75594,261.82,66.744 +75595,262.94,68.172 +75596,263.99,69.586 +75597,259.38,65.265 +75598,260.53,66.716 +75599,261.6,68.155 +75600,262.6,69.58 +75601,258.14,65.226 +75602,259.24,66.688 +75603,260.26,68.137 +75604,261.22,69.573 +75605,256.9,65.189 +75606,257.95,66.66 +75607,258.92,68.12 +75608,259.83,69.565 +75609,255.66,65.152 +75610,256.66,66.633 +75611,257.58,68.101 +75612,258.45,69.556 +75613,254.42,65.117 +75614,255.37,66.606 +75615,256.24,68.083 +75616,257.06,69.545 +75617,253.18,65.083 +75618,254.08,66.58 +75619,254.91,68.064 +75620,255.67,69.533 +75621,251.94,65.05 +75622,252.79,66.554 +75623,253.57,68.044 +75624,254.29,69.521 +75625,250.71,65.018 +75626,251.5,66.528 +75627,252.23,68.025 +75628,252.9,69.506 +75629,249.47,64.988 +75630,250.21,66.503 +75631,250.89,68.004 +75632,251.51,69.491 +75633,248.24,64.958 +75634,248.92,66.478 +75635,249.55,67.984 +75636,250.12,69.475 +75637,247,64.93 +75638,247.63,66.453 +75639,248.2,67.963 +75640,248.73,69.457 +75641,245.77,64.903 +75642,246.34,66.429 +75643,246.86,67.941 +75644,247.34,69.438 +75645,244.54,64.878 +75646,245.05,66.406 +75647,245.52,67.919 +75648,245.94,69.418 +75649,243.3,64.854 +75650,243.77,66.382 +75651,244.18,67.897 +75652,244.55,69.396 +75653,242.07,64.831 +75654,242.48,66.359 +75655,242.84,67.874 +75656,243.16,69.374 +75657,240.84,64.809 +75658,241.19,66.337 +75659,241.5,67.851 +75660,241.77,69.35 +75661,239.6,64.788 +75662,239.9,66.315 +75663,240.16,67.827 +75664,240.37,69.325 +75665,238.37,64.769 +75666,238.62,66.293 +75667,238.82,67.803 +75668,238.98,69.299 +75669,237.14,64.751 +75670,237.33,66.272 +75671,237.48,67.779 +75672,237.59,69.271 +75673,235.91,64.734 +75674,236.04,66.251 +75675,236.14,67.754 +75676,236.19,69.243 +75677,234.67,64.718 +75678,234.75,66.23 +75679,234.79,67.729 +75680,234.8,69.213 +75681,233.44,64.704 +75682,233.47,66.21 +75683,233.45,67.703 +75684,233.41,69.182 +75685,232.21,64.69 +75686,232.18,66.191 +75687,232.11,67.677 +75688,232.01,69.149 +75689,230.98,64.678 +75690,230.89,66.171 +75691,230.77,67.651 +75692,230.62,69.116 +75693,229.75,64.667 +75694,229.6,66.152 +75695,229.43,67.624 +75696,229.22,69.081 +75697,228.51,64.658 +75698,228.32,66.134 +75699,228.09,67.597 +75700,227.83,69.045 +75701,227.28,64.649 +75702,227.03,66.116 +75703,226.75,67.569 +75704,226.44,69.008 +75705,226.05,64.642 +75706,225.74,66.098 +75707,225.41,67.541 +75708,225.04,68.97 +75709,224.81,64.636 +75710,224.45,66.081 +75711,224.06,67.512 +75712,223.65,68.93 +75713,223.58,64.631 +75714,223.17,66.064 +75715,222.72,67.484 +75716,222.25,68.89 +75717,222.35,64.628 +75718,221.88,66.047 +75719,221.38,67.454 +75720,220.86,68.848 +75721,221.11,64.625 +75722,220.59,66.031 +75723,220.04,67.425 +75724,219.47,68.805 +75725,219.88,64.624 +75726,219.3,66.015 +75727,218.7,67.395 +75728,218.07,68.761 +75729,218.64,64.624 +75730,218.01,65.999 +75731,217.36,67.364 +75732,216.68,68.716 +75733,217.4,64.624 +75734,216.73,65.984 +75735,216.02,67.333 +75736,215.29,68.67 +75737,216.17,64.626 +75738,215.44,65.97 +75739,214.68,67.302 +75740,213.9,68.622 +75741,214.93,64.629 +75742,214.15,65.955 +75743,213.34,67.27 +75744,212.51,68.574 +75745,213.69,64.634 +75746,212.86,65.941 +75747,212,67.238 +75748,211.12,68.524 +75749,212.45,64.639 +75750,211.57,65.927 +75751,210.66,67.206 +75752,209.72,68.474 +75753,211.21,64.645 +75754,210.28,65.914 +75755,209.32,67.173 +75756,208.34,68.422 +75757,209.97,64.652 +75758,208.99,65.901 +75759,207.98,67.14 +75760,206.95,68.369 +75761,208.73,64.66 +75762,207.7,65.888 +75763,206.64,67.107 +75764,205.56,68.315 +75765,207.49,64.67 +75766,206.41,65.876 +75767,205.31,67.073 +75768,204.17,68.261 +75769,206.25,64.68 +75770,205.12,65.864 +75771,203.97,67.039 +75772,202.78,68.205 +75773,205.01,64.691 +75774,203.83,65.852 +75775,202.63,67.005 +75776,201.4,68.148 +75777,203.76,64.703 +75778,202.54,65.84 +75779,201.29,66.97 +75780,200.01,68.091 +75781,202.51,64.716 +75782,201.25,65.829 +75783,199.95,66.935 +75784,198.63,68.032 +75785,201.27,64.73 +75786,199.96,65.818 +75787,198.62,66.9 +75788,197.24,67.972 +75789,200.02,64.745 +75790,198.67,65.808 +75791,197.28,66.864 +75792,195.86,67.912 +75793,198.77,64.761 +75794,197.37,65.797 +75795,195.94,66.828 +75796,194.48,67.851 +75797,197.52,64.777 +75798,196.08,65.787 +75799,194.61,66.792 +75800,193.1,67.789 +75801,196.27,64.795 +75802,194.79,65.778 +75803,193.27,66.755 +75804,191.72,67.725 +75805,195.02,64.813 +75806,193.5,65.768 +75807,191.94,66.718 +75808,190.34,67.662 +75809,193.76,64.832 +75810,192.2,65.759 +75811,190.6,66.681 +75812,188.96,67.597 +75813,192.51,64.852 +75814,190.91,65.75 +75815,189.27,66.644 +75816,187.58,67.531 +75817,191.25,64.872 +75818,189.61,65.741 +75819,187.93,66.606 +75820,186.21,67.465 +75821,190,64.893 +75822,188.32,65.732 +75823,186.6,66.568 +75824,184.83,67.398 +75825,188.74,64.915 +75826,187.03,65.724 +75827,185.27,66.53 +75828,183.46,67.331 +75829,187.48,64.937 +75830,185.73,65.716 +75831,183.94,66.491 +75832,182.09,67.262 +75833,186.21,64.96 +75834,184.43,65.708 +75835,182.6,66.453 +75836,180.72,67.193 +75837,184.95,64.984 +75838,183.14,65.7 +75839,181.27,66.414 +75840,179.35,67.123 +75841,183.69,65.008 +75842,181.84,65.693 +75843,179.94,66.375 +75844,177.98,67.053 +75845,182.42,65.033 +75846,180.54,65.685 +75847,178.61,66.336 +75848,176.61,66.982 +75849,181.15,65.058 +75850,179.25,65.678 +75851,177.28,66.296 +75852,175.25,66.911 +75853,179.89,65.084 +75854,177.95,65.671 +75855,175.95,66.256 +75856,173.88,66.838 +75857,178.61,65.11 +75858,176.65,65.664 +75859,174.62,66.217 +75860,172.52,66.766 +75861,177.34,65.137 +75862,175.35,65.658 +75863,173.29,66.177 +75864,171.16,66.693 +75865,176.07,65.164 +75866,174.05,65.651 +75867,171.96,66.136 +75868,169.8,66.619 +75869,174.79,65.192 +75870,172.75,65.644 +75871,170.64,66.096 +75872,168.44,66.545 +75873,173.52,65.22 +75874,171.45,65.638 +75875,169.31,66.056 +75876,167.09,66.471 +75877,172.24,65.248 +75878,170.15,65.632 +75879,167.98,66.015 +75880,165.73,66.396 +75881,170.96,65.277 +75882,168.85,65.626 +75883,166.66,65.974 +75884,164.38,66.321 +75885,169.68,65.305 +75886,167.54,65.62 +75887,165.33,65.933 +75888,163.03,66.245 +75889,168.39,65.334 +75890,166.24,65.614 +75891,164.01,65.892 +75892,161.68,66.169 +75893,167.11,65.364 +75894,164.94,65.608 +75895,162.68,65.851 +75896,160.33,66.093 +75897,165.82,65.393 +75898,163.63,65.602 +75899,161.36,65.81 +75900,158.98,66.017 +75901,164.54,65.423 +75902,162.33,65.596 +75903,160.03,65.769 +75904,157.64,65.94 +75905,163.25,65.453 +75906,161.02,65.59 +75907,158.71,65.728 +75908,156.3,65.863 +75909,161.95,65.482 +75910,159.72,65.585 +75911,157.39,65.686 +75912,154.96,65.786 +75913,160.66,65.512 +75914,158.41,65.579 +75915,156.07,65.645 +75916,153.62,65.709 +75917,159.37,65.542 +75918,157.1,65.573 +75919,154.75,65.603 +75920,152.28,65.632 +75921,158.07,65.572 +75922,155.8,65.567 +75923,153.43,65.562 +75924,150.94,65.554 +75925,156.77,65.602 +75926,154.49,65.562 +75927,152.11,65.52 +75928,149.61,65.477 +75929,155.47,65.632 +75930,153.18,65.556 +75931,150.79,65.479 +75932,148.28,65.4 +75933,154.17,65.662 +75934,151.87,65.55 +75935,149.47,65.437 +75936,146.95,65.322 +75937,152.87,65.692 +75938,150.56,65.545 +75939,148.15,65.396 +75940,145.62,65.245 +75941,151.56,65.722 +75942,149.25,65.539 +75943,146.84,65.354 +75944,144.3,65.167 +75945,150.25,65.751 +75946,147.94,65.533 +75947,145.52,65.313 +75948,142.97,65.09 +75949,148.94,65.781 +75950,146.63,65.527 +75951,144.2,65.271 +75952,141.65,65.013 +75953,147.63,65.81 +75954,145.32,65.521 +75955,142.89,65.23 +75956,140.33,64.936 +75957,146.32,65.839 +75958,144.01,65.515 +75959,141.58,65.188 +75960,139.01,64.859 +75961,145.01,65.867 +75962,142.69,65.509 +75963,140.26,65.147 +75964,137.7,64.782 +75965,143.69,65.896 +75966,141.38,65.502 +75967,138.95,65.106 +75968,136.38,64.706 +75969,142.37,65.924 +75970,140.06,65.496 +75971,137.64,65.065 +75972,135.07,64.63 +75973,141.05,65.952 +75974,138.75,65.489 +75975,136.32,65.023 +75976,133.76,64.554 +75977,139.73,65.979 +75978,137.43,65.483 +75979,135.01,64.982 +75980,132.45,64.478 +75981,138.41,66.006 +75982,136.12,65.476 +75983,133.7,64.942 +75984,131.15,64.403 +75985,137.09,66.032 +75986,134.8,65.469 +75987,132.39,64.901 +75988,129.84,64.328 +75989,135.76,66.058 +75990,133.48,65.462 +75991,131.08,64.86 +75992,128.54,64.254 +75993,134.43,66.084 +75994,132.17,65.455 +75995,129.78,64.82 +75996,127.24,64.18 +75997,133.1,66.109 +75998,130.85,65.447 +75999,128.47,64.779 +76000,125.94,64.106 +76001,131.77,66.133 +76002,129.53,65.439 +76003,127.16,64.739 +76004,124.64,64.033 +76005,130.44,66.157 +76006,128.21,65.432 +76007,125.85,64.699 +76008,123.35,63.961 +76009,129.1,66.181 +76010,126.89,65.424 +76011,124.55,64.659 +76012,122.06,63.889 +76013,127.77,66.203 +76014,125.57,65.415 +76015,123.24,64.62 +76016,120.77,63.817 +76017,126.43,66.225 +76018,124.25,65.407 +76019,121.94,64.58 +76020,119.48,63.746 +76021,125.09,66.247 +76022,122.93,65.398 +76023,120.63,64.541 +76024,118.19,63.676 +76025,123.75,66.268 +76026,121.6,65.389 +76027,119.33,64.502 +76028,116.91,63.606 +76029,122.4,66.288 +76030,120.28,65.38 +76031,118.03,64.463 +76032,115.62,63.538 +76033,121.06,66.307 +76034,118.96,65.371 +76035,116.73,64.425 +76036,114.34,63.469 +76037,119.71,66.326 +76038,117.63,65.361 +76039,115.42,64.386 +76040,113.06,63.402 +76041,118.37,66.343 +76042,116.31,65.351 +76043,114.12,64.348 +76044,111.79,63.335 +76045,117.02,66.36 +76046,114.98,65.341 +76047,112.82,64.31 +76048,110.51,63.269 +76049,115.67,66.376 +76050,113.66,65.33 +76051,111.52,64.272 +76052,109.24,63.204 +76053,114.31,66.392 +76054,112.33,65.319 +76055,110.22,64.235 +76056,107.97,63.139 +76057,112.96,66.406 +76058,111.01,65.308 +76059,108.93,64.198 +76060,106.7,63.076 +76061,111.61,66.42 +76062,109.68,65.297 +76063,107.63,64.161 +76064,105.43,63.013 +76065,110.25,66.432 +76066,108.35,65.285 +76067,106.33,64.125 +76068,104.16,62.951 +76069,108.89,66.444 +76070,107.02,65.273 +76071,105.03,64.088 +76072,102.9,62.891 +76073,107.53,66.455 +76074,105.7,65.261 +76075,103.74,64.052 +76076,101.64,62.831 +76077,106.17,66.465 +76078,104.37,65.248 +76079,102.44,64.017 +76080,100.37,62.772 +76081,104.81,66.474 +76082,103.04,65.235 +76083,101.14,63.981 +76084,99.114,62.714 +76085,103.45,66.481 +76086,101.71,65.222 +76087,99.85,63.946 +76088,97.856,62.656 +76089,102.08,66.488 +76090,100.38,65.208 +76091,98.556,63.912 +76092,96.6,62.6 +76093,100.72,66.494 +76094,99.047,65.194 +76095,97.262,63.877 +76096,95.345,62.545 +76097,99.348,66.499 +76098,97.715,65.179 +76099,95.968,63.843 +76100,94.091,62.491 +76101,97.98,66.502 +76102,96.384,65.164 +76103,94.676,63.81 +76104,92.839,62.438 +76105,96.61,66.505 +76106,95.052,65.149 +76107,93.383,63.776 +76108,91.588,62.387 +76109,95.239,66.507 +76110,93.72,65.134 +76111,92.091,63.743 +76112,90.339,62.336 +76113,93.867,66.507 +76114,92.387,65.118 +76115,90.8,63.711 +76116,89.091,62.286 +76117,92.494,66.506 +76118,91.054,65.101 +76119,89.509,63.678 +76120,87.845,62.238 +76121,91.12,66.504 +76122,89.72,65.085 +76123,88.218,63.646 +76124,86.6,62.19 +76125,89.744,66.501 +76126,88.386,65.068 +76127,86.928,63.615 +76128,85.356,62.144 +76129,88.368,66.497 +76130,87.052,65.05 +76131,85.638,63.584 +76132,84.113,62.099 +76133,86.99,66.492 +76134,85.718,65.032 +76135,84.349,63.553 +76136,82.872,62.055 +76137,85.612,66.485 +76138,84.383,65.014 +76139,83.06,63.523 +76140,81.631,62.012 +76141,84.232,66.478 +76142,83.048,64.995 +76143,81.771,63.493 +76144,80.392,61.971 +76145,82.852,66.469 +76146,81.712,64.976 +76147,80.483,63.463 +76148,79.154,61.931 +76149,81.47,66.459 +76150,80.376,64.956 +76151,79.195,63.434 +76152,77.917,61.891 +76153,80.088,66.447 +76154,79.04,64.936 +76155,77.908,63.405 +76156,76.68,61.854 +76157,78.705,66.435 +76158,77.704,64.916 +76159,76.621,63.376 +76160,75.445,61.817 +76161,77.321,66.421 +76162,76.367,64.895 +76163,75.334,63.348 +76164,74.211,61.782 +76165,75.937,66.406 +76166,75.03,64.874 +76167,74.047,63.321 +76168,72.977,61.747 +76169,74.551,66.39 +76170,73.693,64.852 +76171,72.761,63.293 +76172,71.744,61.715 +76173,73.165,66.372 +76174,72.356,64.83 +76175,71.475,63.267 +76176,70.512,61.683 +76177,71.778,66.353 +76178,71.019,64.807 +76179,70.189,63.24 +76180,69.281,61.653 +76181,70.391,66.333 +76182,69.681,64.784 +76183,68.903,63.214 +76184,68.051,61.624 +76185,69.003,66.312 +76186,68.343,64.761 +76187,67.618,63.189 +76188,66.821,61.596 +76189,67.614,66.289 +76190,67.005,64.737 +76191,66.333,63.163 +76192,65.591,61.569 +76193,66.225,66.266 +76194,65.667,64.713 +76195,65.048,63.139 +76196,64.362,61.544 +76197,64.835,66.241 +76198,64.328,64.688 +76199,63.763,63.114 +76200,63.134,61.52 +76201,63.445,66.214 +76202,62.99,64.663 +76203,62.479,63.09 +76204,61.906,61.498 +76205,62.055,66.187 +76206,61.651,64.637 +76207,61.194,63.067 +76208,60.679,61.476 +76209,60.664,66.158 +76210,60.312,64.611 +76211,59.91,63.044 +76212,59.451,61.456 +76213,59.272,66.128 +76214,58.974,64.585 +76215,58.626,63.021 +76216,58.224,61.437 +76217,57.881,66.096 +76218,57.635,64.558 +76219,57.342,62.999 +76220,56.998,61.42 +76221,56.489,66.063 +76222,56.296,64.53 +76223,56.058,62.977 +76224,55.771,61.403 +76225,55.096,66.029 +76226,54.957,64.503 +76227,54.774,62.955 +76228,54.545,61.388 +76229,53.704,65.994 +76230,53.618,64.474 +76231,53.49,62.934 +76232,53.319,61.375 +76233,52.311,65.958 +76234,52.278,64.446 +76235,52.207,62.913 +76236,52.093,61.362 +76237,50.918,65.92 +76238,50.939,64.417 +76239,50.923,62.893 +76240,50.867,61.351 +76241,49.525,65.881 +76242,49.6,64.387 +76243,49.639,62.873 +76244,49.641,61.341 +76245,48.132,65.841 +76246,48.261,64.357 +76247,48.356,62.854 +76248,48.414,61.332 +76249,46.739,65.8 +76250,46.922,64.327 +76251,47.072,62.835 +76252,47.188,61.325 +76253,45.346,65.757 +76254,45.583,64.296 +76255,45.789,62.816 +76256,45.962,61.318 +76257,43.953,65.713 +76258,44.244,64.265 +76259,44.505,62.798 +76260,44.735,61.313 +76261,42.56,65.668 +76262,42.905,64.233 +76263,43.221,62.78 +76264,43.508,61.309 +76265,41.167,65.622 +76266,41.566,64.201 +76267,41.938,62.762 +76268,42.281,61.307 +76269,39.775,65.574 +76270,40.227,64.169 +76271,40.654,62.745 +76272,41.053,61.305 +76273,38.382,65.526 +76274,38.889,64.136 +76275,39.37,62.728 +76276,39.825,61.305 +76277,36.99,65.476 +76278,37.55,64.103 +76279,38.086,62.712 +76280,38.597,61.306 +76281,35.598,65.425 +76282,36.212,64.069 +76283,36.802,62.696 +76284,37.368,61.308 +76285,34.206,65.373 +76286,34.873,64.035 +76287,35.518,62.68 +76288,36.138,61.311 +76289,32.815,65.32 +76290,33.535,64.001 +76291,34.233,62.665 +76292,34.908,61.315 +76293,31.424,65.266 +76294,32.197,63.966 +76295,32.949,62.65 +76296,33.678,61.32 +76297,30.033,65.21 +76298,30.86,63.931 +76299,31.664,62.635 +76300,32.446,61.326 +76301,28.643,65.154 +76302,29.522,63.895 +76303,30.379,62.621 +76304,31.214,61.334 +76305,27.254,65.096 +76306,28.185,63.859 +76307,29.094,62.607 +76308,29.982,61.342 +76309,25.865,65.038 +76310,26.848,63.823 +76311,27.809,62.594 +76312,28.748,61.352 +76313,24.476,64.978 +76314,25.511,63.786 +76315,26.523,62.58 +76316,27.514,61.362 +76317,23.088,64.917 +76318,24.174,63.749 +76319,25.237,62.567 +76320,26.279,61.374 +76321,21.701,64.856 +76322,22.838,63.712 +76323,23.951,62.555 +76324,25.043,61.386 +76325,20.315,64.793 +76326,21.502,63.674 +76327,22.665,62.542 +76328,23.806,61.399 +76329,18.929,64.73 +76330,20.166,63.636 +76331,21.379,62.53 +76332,22.568,61.414 +76333,17.544,64.665 +76334,18.831,63.598 +76335,20.092,62.519 +76336,21.329,61.429 +76337,16.16,64.6 +76338,17.496,63.559 +76339,18.805,62.507 +76340,20.089,61.445 +76341,14.776,64.533 +76342,16.161,63.52 +76343,17.517,62.496 +76344,18.848,61.462 +76345,13.394,64.466 +76346,14.827,63.481 +76347,16.23,62.485 +76348,17.606,61.48 +76349,12.013,64.398 +76350,13.493,63.442 +76351,14.942,62.474 +76352,16.362,61.498 +76353,10.632,64.329 +76354,12.159,63.402 +76355,13.653,62.464 +76356,15.118,61.518 +76357,9.2524,64.259 +76358,10.826,63.362 +76359,12.364,62.454 +76360,13.872,61.538 +76361,7.8739,64.189 +76362,9.4927,63.321 +76363,11.075,62.444 +76364,12.625,61.559 +76365,6.4964,64.117 +76366,8.1602,63.281 +76367,9.7856,62.434 +76368,11.377,61.58 +76369,5.1201,64.045 +76370,6.8281,63.24 +76371,8.4957,62.425 +76372,10.128,61.602 +76373,3.7449,63.972 +76374,5.4964,63.199 +76375,7.2054,62.416 +76376,8.8769,61.625 +76377,2.3708,63.899 +76378,4.1651,63.157 +76379,5.9147,62.407 +76380,7.6247,61.649 +76381,0.99803,63.825 +76382,2.8344,63.116 +76383,4.6235,62.398 +76384,6.3712,61.673 +76385,359.63,63.75 +76386,1.504,63.074 +76387,3.332,62.389 +76388,5.1162,61.698 +76389,358.26,63.674 +76390,0.17417,63.032 +76391,2.04,62.381 +76392,3.8599,61.723 +76393,356.89,63.598 +76394,358.84,62.989 +76395,0.7475,62.372 +76396,2.6021,61.749 +76397,355.52,63.522 +76398,357.52,62.947 +76399,359.45,62.364 +76400,1.3428,61.776 +76401,354.15,63.445 +76402,356.19,62.904 +76403,358.16,62.356 +76404,0.081978,61.802 +76405,352.79,63.367 +76406,354.86,62.861 +76407,356.87,62.348 +76408,358.82,61.83 +76409,351.43,63.289 +76410,353.53,62.818 +76411,355.57,62.341 +76412,357.56,61.857 +76413,350.06,63.21 +76414,352.21,62.775 +76415,354.28,62.333 +76416,356.29,61.886 +76417,348.7,63.131 +76418,350.88,62.732 +76419,352.98,62.326 +76420,355.02,61.914 +76421,347.34,63.051 +76422,349.55,62.688 +76423,351.69,62.318 +76424,353.75,61.943 +76425,345.99,62.971 +76426,348.23,62.645 +76427,350.39,62.311 +76428,352.48,61.972 +76429,344.63,62.891 +76430,346.9,62.601 +76431,349.09,62.304 +76432,351.21,62.001 +76433,343.28,62.81 +76434,345.58,62.557 +76435,347.8,62.297 +76436,349.94,62.031 +76437,341.92,62.73 +76438,344.26,62.513 +76439,346.5,62.29 +76440,348.66,62.061 +76441,340.57,62.648 +76442,342.93,62.469 +76443,345.2,62.283 +76444,347.39,62.091 +76445,339.23,62.567 +76446,341.61,62.425 +76447,343.9,62.276 +76448,346.11,62.121 +76449,337.88,62.485 +76450,340.29,62.381 +76451,342.6,62.269 +76452,344.83,62.151 +76453,336.53,62.404 +76454,338.97,62.337 +76455,341.3,62.262 +76456,343.55,62.182 +76457,335.19,62.322 +76458,337.65,62.292 +76459,340,62.255 +76460,342.26,62.212 +76461,333.85,62.24 +76462,336.33,62.248 +76463,338.7,62.248 +76464,340.98,62.243 +76465,332.51,62.157 +76466,335.01,62.204 +76467,337.4,62.242 +76468,339.69,62.273 +76469,331.17,62.075 +76470,333.69,62.159 +76471,336.1,62.235 +76472,338.4,62.304 +76473,329.83,61.993 +76474,332.37,62.115 +76475,334.79,62.228 +76476,337.11,62.334 +76477,328.5,61.911 +76478,331.05,62.07 +76479,333.49,62.221 +76480,335.82,62.365 +76481,327.17,61.829 +76482,329.74,62.026 +76483,332.19,62.214 +76484,334.52,62.395 +76485,325.84,61.746 +76486,328.42,61.981 +76487,330.88,62.207 +76488,333.23,62.425 +76489,324.51,61.664 +76490,327.11,61.937 +76491,329.58,62.2 +76492,331.93,62.455 +76493,323.18,61.583 +76494,325.79,61.893 +76495,328.27,62.193 +76496,330.63,62.485 +76497,321.86,61.501 +76498,324.48,61.848 +76499,326.96,62.186 +76500,329.33,62.514 +76501,320.53,61.419 +76502,323.16,61.804 +76503,325.66,62.178 +76504,328.03,62.544 +76505,319.21,61.338 +76506,321.85,61.76 +76507,324.35,62.171 +76508,326.72,62.573 +76509,317.89,61.257 +76510,320.54,61.716 +76511,323.04,62.163 +76512,325.41,62.601 +76513,316.58,61.176 +76514,319.23,61.672 +76515,321.73,62.156 +76516,324.11,62.63 +76517,315.26,61.095 +76518,317.92,61.628 +76519,320.42,62.148 +76520,322.8,62.657 +76521,313.95,61.015 +76522,316.61,61.584 +76523,319.11,62.14 +76524,321.48,62.685 +76525,312.64,60.935 +76526,315.3,61.54 +76527,317.8,62.132 +76528,320.17,62.712 +76529,311.33,60.856 +76530,313.99,61.497 +76531,316.49,62.124 +76532,318.85,62.739 +76533,310.02,60.777 +76534,312.68,61.453 +76535,315.18,62.115 +76536,317.54,62.765 +76537,308.72,60.699 +76538,311.38,61.41 +76539,313.87,62.107 +76540,316.22,62.791 +76541,307.42,60.621 +76542,310.07,61.367 +76543,312.55,62.098 +76544,314.9,62.816 +76545,306.12,60.543 +76546,308.76,61.324 +76547,311.24,62.089 +76548,313.57,62.84 +76549,304.82,60.466 +76550,307.46,61.281 +76551,309.93,62.08 +76552,312.25,62.864 +76553,303.52,60.39 +76554,306.15,61.238 +76555,308.61,62.071 +76556,310.92,62.887 +76557,302.23,60.314 +76558,304.85,61.196 +76559,307.3,62.061 +76560,309.6,62.91 +76561,300.94,60.239 +76562,303.55,61.154 +76563,305.98,62.051 +76564,308.27,62.932 +76565,299.65,60.164 +76566,302.24,61.112 +76567,304.66,62.041 +76568,306.94,62.953 +76569,298.36,60.091 +76570,300.94,61.07 +76571,303.35,62.031 +76572,305.6,62.974 +76573,297.07,60.017 +76574,299.64,61.028 +76575,302.03,62.02 +76576,304.27,62.994 +76577,295.79,59.945 +76578,298.34,60.987 +76579,300.71,62.009 +76580,302.93,63.013 +76581,294.51,59.874 +76582,297.04,60.946 +76583,299.39,61.998 +76584,301.59,63.031 +76585,293.23,59.803 +76586,295.74,60.905 +76587,298.07,61.987 +76588,300.26,63.048 +76589,291.95,59.733 +76590,294.44,60.865 +76591,296.75,61.975 +76592,298.91,63.065 +76593,290.67,59.664 +76594,293.14,60.824 +76595,295.43,61.963 +76596,297.57,63.081 +76597,289.4,59.595 +76598,291.85,60.784 +76599,294.11,61.951 +76600,296.23,63.095 +76601,288.13,59.528 +76602,290.55,60.744 +76603,292.79,61.938 +76604,294.88,63.109 +76605,286.86,59.462 +76606,289.25,60.705 +76607,291.47,61.925 +76608,293.53,63.122 +76609,285.59,59.396 +76610,287.96,60.666 +76611,290.15,61.912 +76612,292.19,63.134 +76613,284.32,59.332 +76614,286.66,60.627 +76615,288.82,61.898 +76616,290.84,63.145 +76617,283.06,59.268 +76618,285.37,60.589 +76619,287.5,61.884 +76620,289.48,63.155 +76621,281.8,59.205 +76622,284.07,60.55 +76623,286.18,61.87 +76624,288.13,63.165 +76625,280.54,59.144 +76626,282.78,60.512 +76627,284.85,61.855 +76628,286.78,63.173 +76629,279.28,59.083 +76630,281.49,60.475 +76631,283.53,61.84 +76632,285.42,63.179 +76633,278.02,59.024 +76634,280.2,60.438 +76635,282.2,61.824 +76636,284.06,63.185 +76637,276.77,58.966 +76638,278.91,60.401 +76639,280.88,61.809 +76640,282.7,63.19 +76641,275.51,58.909 +76642,277.61,60.364 +76643,279.55,61.793 +76644,281.34,63.194 +76645,274.26,58.852 +76646,276.32,60.328 +76647,278.22,61.776 +76648,279.98,63.196 +76649,273.01,58.798 +76650,275.03,60.293 +76651,276.9,61.759 +76652,278.62,63.198 +76653,271.76,58.744 +76654,273.75,60.257 +76655,275.57,61.742 +76656,277.25,63.198 +76657,270.51,58.691 +76658,272.46,60.222 +76659,274.24,61.724 +76660,275.89,63.197 +76661,269.27,58.64 +76662,271.17,60.187 +76663,272.91,61.706 +76664,274.52,63.195 +76665,268.02,58.59 +76666,269.88,60.153 +76667,271.58,61.687 +76668,273.15,63.192 +76669,266.78,58.541 +76670,268.59,60.119 +76671,270.25,61.668 +76672,271.79,63.188 +76673,265.54,58.493 +76674,267.31,60.086 +76675,268.92,61.649 +76676,270.42,63.182 +76677,264.3,58.446 +76678,266.02,60.053 +76679,267.59,61.629 +76680,269.04,63.175 +76681,263.06,58.401 +76682,264.73,60.02 +76683,266.26,61.608 +76684,267.67,63.167 +76685,261.83,58.357 +76686,263.45,59.988 +76687,264.93,61.588 +76688,266.3,63.157 +76689,260.59,58.315 +76690,262.16,59.956 +76691,263.6,61.567 +76692,264.92,63.147 +76693,259.36,58.273 +76694,260.88,59.925 +76695,262.27,61.545 +76696,263.55,63.135 +76697,258.12,58.233 +76698,259.6,59.894 +76699,260.94,61.523 +76700,262.17,63.122 +76701,256.89,58.194 +76702,258.31,59.863 +76703,259.61,61.5 +76704,260.79,63.107 +76705,255.66,58.157 +76706,257.03,59.833 +76707,258.28,61.478 +76708,259.42,63.091 +76709,254.43,58.121 +76710,255.75,59.803 +76711,256.94,61.454 +76712,258.04,63.074 +76713,253.2,58.086 +76714,254.46,59.774 +76715,255.61,61.43 +76716,256.66,63.056 +76717,251.97,58.053 +76718,253.18,59.745 +76719,254.28,61.406 +76720,255.28,63.036 +76721,250.75,58.021 +76722,251.9,59.717 +76723,252.94,61.381 +76724,253.89,63.015 +76725,249.52,57.99 +76726,250.62,59.689 +76727,251.61,61.356 +76728,252.51,62.993 +76729,248.29,57.961 +76730,249.34,59.661 +76731,250.28,61.33 +76732,251.13,62.969 +76733,247.07,57.933 +76734,248.05,59.634 +76735,248.94,61.304 +76736,249.75,62.944 +76737,245.85,57.906 +76738,246.77,59.607 +76739,247.61,61.278 +76740,248.36,62.918 +76741,244.62,57.881 +76742,245.49,59.581 +76743,246.27,61.251 +76744,246.98,62.89 +76745,243.4,57.857 +76746,244.21,59.555 +76747,244.94,61.223 +76748,245.59,62.861 +76749,242.18,57.834 +76750,242.93,59.53 +76751,243.6,61.195 +76752,244.2,62.831 +76753,240.96,57.813 +76754,241.65,59.505 +76755,242.27,61.167 +76756,242.82,62.799 +76757,239.74,57.793 +76758,240.37,59.48 +76759,240.93,61.138 +76760,241.43,62.766 +76761,238.52,57.775 +76762,239.09,59.456 +76763,239.6,61.108 +76764,240.04,62.731 +76765,237.3,57.758 +76766,237.81,59.433 +76767,238.26,61.079 +76768,238.65,62.696 +76769,236.08,57.742 +76770,236.53,59.409 +76771,236.93,61.048 +76772,237.26,62.659 +76773,234.86,57.727 +76774,235.26,59.387 +76775,235.59,61.018 +76776,235.88,62.62 +76777,233.64,57.714 +76778,233.98,59.364 +76779,234.26,60.986 +76780,234.49,62.581 +76781,232.42,57.702 +76782,232.7,59.342 +76783,232.92,60.955 +76784,233.1,62.54 +76785,231.2,57.692 +76786,231.42,59.321 +76787,231.59,60.923 +76788,231.71,62.497 +76789,229.98,57.683 +76790,230.14,59.3 +76791,230.25,60.89 +76792,230.32,62.454 +76793,228.76,57.675 +76794,228.86,59.279 +76795,228.92,60.857 +76796,228.93,62.409 +76797,227.54,57.668 +76798,227.58,59.259 +76799,227.58,60.824 +76800,227.54,62.363 +76801,226.32,57.663 +76802,226.3,59.239 +76803,226.24,60.79 +76804,226.15,62.315 +76805,225.11,57.659 +76806,225.03,59.22 +76807,224.91,60.756 +76808,224.76,62.266 +76809,223.89,57.656 +76810,223.75,59.201 +76811,223.57,60.721 +76812,223.36,62.216 +76813,222.67,57.655 +76814,222.47,59.182 +76815,222.24,60.686 +76816,221.97,62.165 +76817,221.45,57.654 +76818,221.19,59.164 +76819,220.9,60.65 +76820,220.58,62.113 +76821,220.23,57.655 +76822,219.91,59.146 +76823,219.57,60.614 +76824,219.19,62.059 +76825,219.01,57.657 +76826,218.63,59.128 +76827,218.23,60.578 +76828,217.8,62.004 +76829,217.79,57.661 +76830,217.35,59.111 +76831,216.9,60.541 +76832,216.41,61.948 +76833,216.57,57.665 +76834,216.08,59.095 +76835,215.56,60.504 +76836,215.02,61.89 +76837,215.34,57.671 +76838,214.8,59.078 +76839,214.23,60.466 +76840,213.63,61.832 +76841,214.12,57.678 +76842,213.52,59.063 +76843,212.89,60.428 +76844,212.24,61.772 +76845,212.9,57.685 +76846,212.24,59.047 +76847,211.56,60.389 +76848,210.86,61.711 +76849,211.68,57.694 +76850,210.96,59.032 +76851,210.22,60.351 +76852,209.47,61.649 +76853,210.45,57.705 +76854,209.68,59.017 +76855,208.89,60.311 +76856,208.08,61.586 +76857,209.23,57.716 +76858,208.4,59.002 +76859,207.55,60.272 +76860,206.69,61.522 +76861,208,57.728 +76862,207.12,58.988 +76863,206.22,60.232 +76864,205.3,61.457 +76865,206.78,57.741 +76866,205.84,58.974 +76867,204.89,60.191 +76868,203.92,61.391 +76869,205.55,57.755 +76870,204.56,58.961 +76871,203.55,60.151 +76872,202.53,61.323 +76873,204.32,57.77 +76874,203.28,58.948 +76875,202.22,60.11 +76876,201.15,61.255 +76877,203.09,57.787 +76878,202,58.935 +76879,200.89,60.068 +76880,199.76,61.185 +76881,201.86,57.804 +76882,200.72,58.922 +76883,199.56,60.027 +76884,198.38,61.115 +76885,200.63,57.822 +76886,199.44,58.91 +76887,198.22,59.984 +76888,196.99,61.043 +76889,199.4,57.841 +76890,198.16,58.898 +76891,196.89,59.942 +76892,195.61,60.971 +76893,198.17,57.86 +76894,196.87,58.886 +76895,195.56,59.899 +76896,194.23,60.898 +76897,196.94,57.881 +76898,195.59,58.875 +76899,194.23,59.856 +76900,192.85,60.824 +76901,195.7,57.902 +76902,194.31,58.864 +76903,192.9,59.813 +76904,191.47,60.749 +76905,194.46,57.924 +76906,193.03,58.853 +76907,191.57,59.77 +76908,190.09,60.673 +76909,193.23,57.947 +76910,191.74,58.842 +76911,190.24,59.726 +76912,188.71,60.596 +76913,191.99,57.971 +76914,190.46,58.832 +76915,188.91,59.682 +76916,187.33,60.519 +76917,190.75,57.995 +76918,189.18,58.822 +76919,187.58,59.637 +76920,185.95,60.44 +76921,189.51,58.02 +76922,187.89,58.812 +76923,186.25,59.593 +76924,184.58,60.361 +76925,188.26,58.046 +76926,186.61,58.802 +76927,184.92,59.548 +76928,183.2,60.282 +76929,187.02,58.072 +76930,185.32,58.792 +76931,183.59,59.503 +76932,181.83,60.201 +76933,185.77,58.099 +76934,184.04,58.783 +76935,182.27,59.457 +76936,180.46,60.12 +76937,184.53,58.126 +76938,182.75,58.774 +76939,180.94,59.412 +76940,179.09,60.038 +76941,183.28,58.154 +76942,181.47,58.765 +76943,179.61,59.366 +76944,177.72,59.956 +76945,182.03,58.182 +76946,180.18,58.756 +76947,178.29,59.32 +76948,176.35,59.873 +76949,180.78,58.211 +76950,178.89,58.747 +76951,176.96,59.274 +76952,174.98,59.789 +76953,179.53,58.241 +76954,177.6,58.738 +76955,175.64,59.227 +76956,173.62,59.705 +76957,178.27,58.27 +76958,176.32,58.73 +76959,174.31,59.181 +76960,172.25,59.62 +76961,177.02,58.301 +76962,175.03,58.722 +76963,172.99,59.134 +76964,170.89,59.535 +76965,175.76,58.331 +76966,173.74,58.714 +76967,171.66,59.087 +76968,169.53,59.45 +76969,174.5,58.362 +76970,172.45,58.706 +76971,170.34,59.04 +76972,168.17,59.364 +76973,173.24,58.393 +76974,171.16,58.698 +76975,169.02,58.993 +76976,166.81,59.278 +76977,171.98,58.424 +76978,169.87,58.69 +76979,167.7,58.946 +76980,165.45,59.191 +76981,170.71,58.456 +76982,168.58,58.682 +76983,166.38,58.899 +76984,164.1,59.104 +76985,169.45,58.487 +76986,167.29,58.674 +76987,165.06,58.851 +76988,162.74,59.017 +76989,168.18,58.519 +76990,165.99,58.666 +76991,163.74,58.804 +76992,161.39,58.929 +76993,166.91,58.551 +76994,164.7,58.659 +76995,162.42,58.756 +76996,160.04,58.841 +76997,165.64,58.584 +76998,163.41,58.651 +76999,161.1,58.708 +77000,158.69,58.753 +77001,164.37,58.616 +77002,162.12,58.643 +77003,159.78,58.661 +77004,157.35,58.665 +77005,163.09,58.648 +77006,160.82,58.636 +77007,158.46,58.613 +77008,156,58.577 +77009,161.82,58.68 +77010,159.53,58.628 +77011,157.14,58.565 +77012,154.66,58.488 +77013,160.54,58.712 +77014,158.23,58.621 +77015,155.83,58.517 +77016,153.32,58.4 +77017,159.26,58.745 +77018,156.94,58.613 +77019,154.51,58.469 +77020,151.98,58.311 +77021,157.98,58.777 +77022,155.64,58.605 +77023,153.2,58.421 +77024,150.64,58.223 +77025,156.7,58.809 +77026,154.34,58.598 +77027,151.88,58.374 +77028,149.3,58.134 +77029,155.41,58.84 +77030,153.05,58.59 +77031,150.57,58.326 +77032,147.97,58.046 +77033,154.12,58.872 +77034,151.75,58.582 +77035,149.26,58.278 +77036,146.63,57.958 +77037,152.84,58.903 +77038,150.45,58.574 +77039,147.94,58.23 +77040,145.3,57.87 +77041,151.55,58.935 +77042,149.15,58.566 +77043,146.63,58.183 +77044,143.98,57.782 +77045,150.25,58.965 +77046,147.85,58.558 +77047,145.32,58.135 +77048,142.65,57.694 +77049,148.96,58.996 +77050,146.55,58.55 +77051,144.01,58.087 +77052,141.33,57.606 +77053,147.66,59.026 +77054,145.25,58.542 +77055,142.7,58.04 +77056,140,57.519 +77057,146.37,59.056 +77058,143.95,58.533 +77059,141.39,57.993 +77060,138.68,57.432 +77061,145.07,59.085 +77062,142.64,58.525 +77063,140.08,57.945 +77064,137.37,57.345 +77065,143.77,59.115 +77066,141.34,58.516 +77067,138.78,57.898 +77068,136.05,57.259 +77069,142.46,59.143 +77070,140.04,58.507 +77071,137.47,57.851 +77072,134.74,57.173 +77073,141.16,59.171 +77074,138.73,58.498 +77075,136.16,57.804 +77076,133.42,57.087 +77077,139.85,59.199 +77078,137.43,58.489 +77079,134.86,57.757 +77080,132.11,57.002 +77081,138.54,59.226 +77082,136.12,58.479 +77083,133.55,57.711 +77084,130.81,56.918 +77085,137.23,59.252 +77086,134.82,58.47 +77087,132.25,57.664 +77088,129.5,56.833 +77089,135.92,59.278 +77090,133.51,58.46 +77091,130.95,57.618 +77092,128.2,56.75 +77093,134.61,59.303 +77094,132.2,58.45 +77095,129.64,57.572 +77096,126.9,56.667 +77097,133.29,59.328 +77098,130.9,58.44 +77099,128.34,57.526 +77100,125.6,56.585 +77101,131.97,59.352 +77102,129.59,58.429 +77103,127.04,57.481 +77104,124.3,56.503 +77105,130.65,59.375 +77106,128.28,58.418 +77107,125.74,57.435 +77108,123.01,56.422 +77109,129.33,59.397 +77110,126.97,58.407 +77111,124.44,57.39 +77112,121.71,56.342 +77113,128.01,59.419 +77114,125.66,58.396 +77115,123.14,57.345 +77116,120.42,56.262 +77117,126.69,59.44 +77118,124.35,58.385 +77119,121.84,57.3 +77120,119.13,56.184 +77121,125.36,59.46 +77122,123.04,58.373 +77123,120.55,57.256 +77124,117.85,56.106 +77125,124.03,59.479 +77126,121.73,58.361 +77127,119.25,57.212 +77128,116.56,56.028 +77129,122.7,59.497 +77130,120.42,58.348 +77131,117.95,57.168 +77132,115.28,55.952 +77133,121.37,59.515 +77134,119.1,58.336 +77135,116.66,57.124 +77136,114,55.877 +77137,120.04,59.531 +77138,117.79,58.323 +77139,115.36,57.081 +77140,112.72,55.802 +77141,118.71,59.547 +77142,116.48,58.309 +77143,114.07,57.038 +77144,111.45,55.729 +77145,117.37,59.561 +77146,115.16,58.296 +77147,112.78,56.995 +77148,110.18,55.656 +77149,116.03,59.575 +77150,113.85,58.282 +77151,111.48,56.953 +77152,108.9,55.585 +77153,114.69,59.588 +77154,112.53,58.267 +77155,110.19,56.911 +77156,107.64,55.514 +77157,113.35,59.599 +77158,111.22,58.252 +77159,108.9,56.869 +77160,106.37,55.445 +77161,112.01,59.61 +77162,109.9,58.237 +77163,107.61,56.827 +77164,105.1,55.376 +77165,110.67,59.619 +77166,108.58,58.222 +77167,106.32,56.786 +77168,103.84,55.309 +77169,109.32,59.628 +77170,107.26,58.206 +77171,105.03,56.746 +77172,102.58,55.243 +77173,107.98,59.635 +77174,105.95,58.19 +77175,103.74,56.705 +77176,101.32,55.177 +77177,106.63,59.641 +77178,104.63,58.173 +77179,102.45,56.665 +77180,100.06,55.113 +77181,105.28,59.646 +77182,103.31,58.156 +77183,101.16,56.626 +77184,98.809,55.051 +77185,103.93,59.65 +77186,101.99,58.139 +77187,99.877,56.587 +77188,97.555,54.989 +77189,102.57,59.652 +77190,100.67,58.121 +77191,98.591,56.548 +77192,96.304,54.929 +77193,101.22,59.654 +77194,99.348,58.103 +77195,97.305,56.509 +77196,95.055,54.87 +77197,99.866,59.654 +77198,98.028,58.084 +77199,96.02,56.471 +77200,93.807,54.812 +77201,98.509,59.653 +77202,96.706,58.065 +77203,94.735,56.434 +77204,92.561,54.755 +77205,97.151,59.651 +77206,95.384,58.046 +77207,93.451,56.397 +77208,91.317,54.7 +77209,95.792,59.647 +77210,94.062,58.026 +77211,92.168,56.36 +77212,90.075,54.646 +77213,94.432,59.643 +77214,92.74,58.005 +77215,90.885,56.324 +77216,88.835,54.594 +77217,93.07,59.636 +77218,91.417,57.985 +77219,89.603,56.288 +77220,87.596,54.542 +77221,91.708,59.629 +77222,90.093,57.963 +77223,88.321,56.252 +77224,86.358,54.492 +77225,90.344,59.62 +77226,88.769,57.942 +77227,87.039,56.217 +77228,85.123,54.444 +77229,88.978,59.61 +77230,87.445,57.919 +77231,85.759,56.183 +77232,83.889,54.397 +77233,87.612,59.599 +77234,86.121,57.897 +77235,84.478,56.149 +77236,82.656,54.351 +77237,86.245,59.586 +77238,84.796,57.874 +77239,83.199,56.115 +77240,81.425,54.307 +77241,84.877,59.572 +77242,83.47,57.85 +77243,81.919,56.082 +77244,80.195,54.264 +77245,83.507,59.557 +77246,82.145,57.826 +77247,80.64,56.049 +77248,78.967,54.222 +77249,82.137,59.54 +77250,80.819,57.801 +77251,79.362,56.017 +77252,77.74,54.182 +77253,80.765,59.522 +77254,79.493,57.776 +77255,78.084,55.985 +77256,76.514,54.144 +77257,79.393,59.502 +77258,78.166,57.751 +77259,76.807,55.954 +77260,75.29,54.107 +77261,78.02,59.481 +77262,76.839,57.725 +77263,75.53,55.923 +77264,74.067,54.071 +77265,76.646,59.459 +77266,75.512,57.699 +77267,74.253,55.892 +77268,72.845,54.037 +77269,75.271,59.435 +77270,74.185,57.672 +77271,72.977,55.862 +77272,71.624,54.004 +77273,73.895,59.41 +77274,72.857,57.644 +77275,71.701,55.833 +77276,70.404,53.973 +77277,72.518,59.383 +77278,71.529,57.616 +77279,70.425,55.804 +77280,69.185,53.943 +77281,71.141,59.355 +77282,70.201,57.588 +77283,69.15,55.776 +77284,67.968,53.915 +77285,69.763,59.326 +77286,68.873,57.559 +77287,67.875,55.747 +77288,66.751,53.888 +77289,68.384,59.295 +77290,67.544,57.53 +77291,66.6,55.72 +77292,65.535,53.863 +77293,67.005,59.262 +77294,66.215,57.5 +77295,65.326,55.693 +77296,64.319,53.839 +77297,65.625,59.229 +77298,64.886,57.469 +77299,64.052,55.666 +77300,63.105,53.817 +77301,64.244,59.194 +77302,63.557,57.439 +77303,62.778,55.64 +77304,61.891,53.796 +77305,62.863,59.157 +77306,62.228,57.407 +77307,61.505,55.615 +77308,60.678,53.777 +77309,61.481,59.119 +77310,60.899,57.376 +77311,60.231,55.589 +77312,59.466,53.759 +77313,60.099,59.08 +77314,59.569,57.343 +77315,58.958,55.565 +77316,58.254,53.742 +77317,58.716,59.039 +77318,58.239,57.31 +77319,57.686,55.541 +77320,57.042,53.727 +77321,57.333,58.997 +77322,56.91,57.277 +77323,56.413,55.517 +77324,55.831,53.714 +77325,55.949,58.953 +77326,55.58,57.243 +77327,55.141,55.494 +77328,54.621,53.702 +77329,54.565,58.908 +77330,54.25,57.209 +77331,53.868,55.471 +77332,53.41,53.691 +77333,53.181,58.862 +77334,52.92,57.174 +77335,52.596,55.448 +77336,52.2,53.682 +77337,51.797,58.814 +77338,51.59,57.139 +77339,51.324,55.427 +77340,50.99,53.674 +77341,50.412,58.765 +77342,50.26,57.104 +77343,50.052,55.405 +77344,49.781,53.668 +77345,49.027,58.714 +77346,48.93,57.068 +77347,48.78,55.384 +77348,48.571,53.663 +77349,47.642,58.662 +77350,47.6,57.031 +77351,47.509,55.364 +77352,47.362,53.659 +77353,46.257,58.609 +77354,46.27,56.994 +77355,46.237,55.344 +77356,46.153,53.657 +77357,44.871,58.554 +77358,44.94,56.956 +77359,44.966,55.324 +77360,44.943,53.656 +77361,43.486,58.498 +77362,43.61,56.918 +77363,43.694,55.305 +77364,43.734,53.657 +77365,42.101,58.441 +77366,42.28,56.88 +77367,42.423,55.286 +77368,42.524,53.658 +77369,40.715,58.382 +77370,40.95,56.841 +77371,41.151,55.268 +77372,41.314,53.662 +77373,39.33,58.322 +77374,39.62,56.802 +77375,39.88,55.25 +77376,40.104,53.666 +77377,37.944,58.261 +77378,38.291,56.762 +77379,38.608,55.232 +77380,38.894,53.672 +77381,36.559,58.199 +77382,36.961,56.722 +77383,37.337,55.215 +77384,37.683,53.679 +77385,35.174,58.135 +77386,35.632,56.681 +77387,36.065,55.199 +77388,36.472,53.687 +77389,33.789,58.07 +77390,34.302,56.64 +77391,34.793,55.182 +77392,35.26,53.696 +77393,32.405,58.004 +77394,32.973,56.599 +77395,33.521,55.167 +77396,34.048,53.707 +77397,31.021,57.937 +77398,31.644,56.557 +77399,32.25,55.151 +77400,32.836,53.719 +77401,29.637,57.868 +77402,30.315,56.515 +77403,30.978,55.136 +77404,31.622,53.732 +77405,28.253,57.798 +77406,28.987,56.472 +77407,29.706,55.121 +77408,30.409,53.746 +77409,26.87,57.727 +77410,27.658,56.429 +77411,28.433,55.107 +77412,29.194,53.761 +77413,25.487,57.655 +77414,26.33,56.386 +77415,27.161,55.093 +77416,27.979,53.778 +77417,24.105,57.582 +77418,25.002,56.342 +77419,25.888,55.08 +77420,26.763,53.795 +77421,22.723,57.508 +77422,23.675,56.298 +77423,24.616,55.066 +77424,25.546,53.813 +77425,21.341,57.433 +77426,22.347,56.254 +77427,23.343,55.053 +77428,24.328,53.833 +77429,19.961,57.356 +77430,21.02,56.209 +77431,22.069,55.041 +77432,23.109,53.853 +77433,18.581,57.279 +77434,19.693,56.164 +77435,20.796,55.028 +77436,21.89,53.875 +77437,17.201,57.2 +77438,18.367,56.118 +77439,19.522,55.017 +77440,20.669,53.897 +77441,15.822,57.121 +77442,17.04,56.072 +77443,18.248,55.005 +77444,19.448,53.92 +77445,14.444,57.041 +77446,15.714,56.026 +77447,16.974,54.994 +77448,18.225,53.944 +77449,13.067,56.959 +77450,14.389,55.98 +77451,15.7,54.982 +77452,17.001,53.969 +77453,11.691,56.877 +77454,13.064,55.933 +77455,14.425,54.972 +77456,15.776,53.995 +77457,10.315,56.794 +77458,11.739,55.886 +77459,13.15,54.961 +77460,14.55,54.022 +77461,8.9403,56.71 +77462,10.414,55.838 +77463,11.875,54.951 +77464,13.323,54.049 +77465,7.5665,56.625 +77466,9.0902,55.791 +77467,10.599,54.941 +77468,12.094,54.077 +77469,6.1937,56.54 +77470,7.7666,55.743 +77471,9.3227,54.931 +77472,10.864,54.106 +77473,4.8219,56.453 +77474,6.4434,55.695 +77475,8.0463,54.922 +77476,9.6328,54.136 +77477,3.4511,56.366 +77478,5.1206,55.646 +77479,6.7695,54.912 +77480,8.4002,54.166 +77481,2.0815,56.279 +77482,3.7982,55.598 +77483,5.4923,54.903 +77484,7.1662,54.197 +77485,0.7129,56.19 +77486,2.4764,55.549 +77487,4.2147,54.894 +77488,5.9307,54.228 +77489,359.35,56.101 +77490,1.155,55.5 +77491,2.9368,54.886 +77492,4.6939,54.26 +77493,357.98,56.011 +77494,359.83,55.451 +77495,1.6584,54.877 +77496,3.4556,54.292 +77497,356.61,55.921 +77498,358.51,55.401 +77499,0.37957,54.869 +77500,2.2157,54.325 +77501,355.25,55.83 +77502,357.19,55.352 +77503,359.1,54.861 +77504,0.97436,54.358 +77505,353.89,55.738 +77506,355.87,55.302 +77507,357.82,54.853 +77508,359.73,54.392 +77509,352.53,55.646 +77510,354.56,55.252 +77511,356.54,54.845 +77512,358.49,54.426 +77513,351.17,55.554 +77514,353.24,55.202 +77515,355.26,54.837 +77516,357.24,54.461 +77517,349.81,55.461 +77518,351.92,55.152 +77519,353.98,54.829 +77520,355.99,54.496 +77521,348.45,55.367 +77522,350.6,55.101 +77523,352.7,54.822 +77524,354.74,54.531 +77525,347.1,55.273 +77526,349.29,55.051 +77527,351.42,54.814 +77528,353.49,54.566 +77529,345.74,55.179 +77530,347.97,55 +77531,350.13,54.807 +77532,352.24,54.602 +77533,344.39,55.085 +77534,346.65,54.949 +77535,348.85,54.799 +77536,350.99,54.637 +77537,343.04,54.99 +77538,345.34,54.899 +77539,347.57,54.792 +77540,349.73,54.673 +77541,341.69,54.895 +77542,344.02,54.848 +77543,346.28,54.785 +77544,348.47,54.709 +77545,340.34,54.8 +77546,342.71,54.797 +77547,345,54.778 +77548,347.21,54.745 +77549,339,54.705 +77550,341.4,54.746 +77551,343.71,54.771 +77552,345.95,54.782 +77553,337.65,54.61 +77554,340.09,54.695 +77555,342.43,54.763 +77556,344.69,54.818 +77557,336.31,54.514 +77558,338.77,54.644 +77559,341.14,54.756 +77560,343.42,54.854 +77561,334.97,54.419 +77562,337.46,54.593 +77563,339.85,54.749 +77564,342.16,54.89 +77565,333.63,54.323 +77566,336.15,54.542 +77567,338.57,54.742 +77568,340.89,54.926 +77569,332.29,54.227 +77570,334.84,54.491 +77571,337.28,54.735 +77572,339.62,54.962 +77573,330.96,54.132 +77574,333.53,54.44 +77575,335.99,54.728 +77576,338.35,54.998 +77577,329.63,54.036 +77578,332.23,54.389 +77579,334.7,54.72 +77580,337.07,55.033 +77581,328.3,53.941 +77582,330.92,54.338 +77583,333.41,54.713 +77584,335.8,55.069 +77585,326.97,53.846 +77586,329.61,54.287 +77587,332.12,54.706 +77588,334.52,55.104 +77589,325.64,53.751 +77590,328.3,54.236 +77591,330.83,54.698 +77592,333.24,55.139 +77593,324.31,53.656 +77594,327,54.186 +77595,329.54,54.69 +77596,331.96,55.173 +77597,322.99,53.561 +77598,325.69,54.135 +77599,328.25,54.683 +77600,330.67,55.207 +77601,321.67,53.467 +77602,324.39,54.085 +77603,326.96,54.675 +77604,329.39,55.241 +77605,320.35,53.373 +77606,323.09,54.034 +77607,325.66,54.667 +77608,328.1,55.274 +77609,319.03,53.28 +77610,321.78,53.984 +77611,324.37,54.659 +77612,326.81,55.307 +77613,317.72,53.186 +77614,320.48,53.934 +77615,323.07,54.65 +77616,325.52,55.34 +77617,316.4,53.094 +77618,319.18,53.884 +77619,321.78,54.642 +77620,324.23,55.372 +77621,315.09,53.001 +77622,317.88,53.834 +77623,320.48,54.633 +77624,322.94,55.403 +77625,313.78,52.91 +77626,316.58,53.785 +77627,319.19,54.625 +77628,321.64,55.434 +77629,312.48,52.819 +77630,315.28,53.735 +77631,317.89,54.616 +77632,320.34,55.464 +77633,311.17,52.728 +77634,313.98,53.686 +77635,316.6,54.606 +77636,319.04,55.494 +77637,309.87,52.638 +77638,312.68,53.637 +77639,315.3,54.597 +77640,317.74,55.523 +77641,308.57,52.549 +77642,311.39,53.588 +77643,314,54.587 +77644,316.44,55.551 +77645,307.27,52.46 +77646,310.09,53.54 +77647,312.7,54.577 +77648,315.13,55.578 +77649,305.98,52.372 +77650,308.8,53.491 +77651,311.4,54.567 +77652,313.83,55.605 +77653,304.69,52.285 +77654,307.5,53.443 +77655,310.1,54.557 +77656,312.52,55.631 +77657,303.39,52.199 +77658,306.21,53.395 +77659,308.8,54.546 +77660,311.21,55.656 +77661,302.11,52.113 +77662,304.91,53.348 +77663,307.5,54.535 +77664,309.9,55.681 +77665,300.82,52.029 +77666,303.62,53.301 +77667,306.2,54.524 +77668,308.58,55.704 +77669,299.54,51.945 +77670,302.33,53.254 +77671,304.89,54.512 +77672,307.27,55.727 +77673,298.25,51.862 +77674,301.04,53.207 +77675,303.59,54.5 +77676,305.95,55.749 +77677,296.97,51.78 +77678,299.75,53.161 +77679,302.29,54.488 +77680,304.63,55.769 +77681,295.7,51.699 +77682,298.46,53.115 +77683,300.98,54.476 +77684,303.31,55.789 +77685,294.42,51.62 +77686,297.17,53.069 +77687,299.68,54.463 +77688,301.99,55.808 +77689,293.15,51.541 +77690,295.88,53.024 +77691,298.37,54.45 +77692,300.66,55.826 +77693,291.88,51.463 +77694,294.6,52.979 +77695,297.07,54.436 +77696,299.34,55.842 +77697,290.61,51.386 +77698,293.31,52.934 +77699,295.76,54.422 +77700,298.01,55.858 +77701,289.34,51.311 +77702,292.02,52.89 +77703,294.46,54.408 +77704,296.68,55.873 +77705,288.08,51.237 +77706,290.74,52.846 +77707,293.15,54.393 +77708,295.35,55.886 +77709,286.82,51.164 +77710,289.45,52.803 +77711,291.84,54.378 +77712,294.02,55.898 +77713,285.56,51.092 +77714,288.17,52.76 +77715,290.53,54.363 +77716,292.69,55.91 +77717,284.3,51.021 +77718,286.89,52.717 +77719,289.22,54.347 +77720,291.35,55.92 +77721,283.04,50.952 +77722,285.61,52.675 +77723,287.91,54.331 +77724,290.01,55.928 +77725,281.79,50.884 +77726,284.32,52.633 +77727,286.6,54.314 +77728,288.68,55.936 +77729,280.54,50.817 +77730,283.04,52.592 +77731,285.29,54.297 +77732,287.34,55.942 +77733,279.29,50.752 +77734,281.76,52.551 +77735,283.98,54.28 +77736,286,55.947 +77737,278.04,50.688 +77738,280.48,52.51 +77739,282.67,54.262 +77740,284.65,55.951 +77741,276.8,50.625 +77742,279.2,52.47 +77743,281.36,54.244 +77744,283.31,55.954 +77745,275.55,50.564 +77746,277.93,52.431 +77747,280.05,54.225 +77748,281.96,55.955 +77749,274.31,50.504 +77750,276.65,52.391 +77751,278.73,54.206 +77752,280.62,55.955 +77753,273.07,50.446 +77754,275.37,52.353 +77755,277.42,54.186 +77756,279.27,55.953 +77757,271.84,50.389 +77758,274.1,52.315 +77759,276.11,54.166 +77760,277.92,55.951 +77761,270.6,50.334 +77762,272.82,52.277 +77763,274.79,54.145 +77764,276.57,55.947 +77765,269.37,50.28 +77766,271.54,52.24 +77767,273.48,54.124 +77768,275.22,55.941 +77769,268.14,50.228 +77770,270.27,52.203 +77771,272.16,54.102 +77772,273.87,55.934 +77773,266.91,50.177 +77774,269,52.167 +77775,270.85,54.08 +77776,272.51,55.926 +77777,265.68,50.128 +77778,267.72,52.131 +77779,269.53,54.058 +77780,271.16,55.916 +77781,264.45,50.08 +77782,266.45,52.096 +77783,268.22,54.035 +77784,269.8,55.905 +77785,263.23,50.034 +77786,265.18,52.061 +77787,266.9,54.011 +77788,268.44,55.892 +77789,262.01,49.99 +77790,263.91,52.027 +77791,265.58,53.987 +77792,267.08,55.878 +77793,260.78,49.947 +77794,262.63,51.994 +77795,264.27,53.963 +77796,265.72,55.862 +77797,259.56,49.906 +77798,261.36,51.96 +77799,262.95,53.938 +77800,264.36,55.845 +77801,258.35,49.866 +77802,260.09,51.928 +77803,261.63,53.912 +77804,263,55.827 +77805,257.13,49.828 +77806,258.82,51.896 +77807,260.31,53.886 +77808,261.64,55.807 +77809,255.91,49.792 +77810,257.55,51.864 +77811,259,53.859 +77812,260.27,55.785 +77813,254.7,49.757 +77814,256.29,51.833 +77815,257.68,53.832 +77816,258.91,55.762 +77817,253.49,49.724 +77818,255.02,51.803 +77819,256.36,53.805 +77820,257.54,55.738 +77821,252.28,49.693 +77822,253.75,51.773 +77823,255.04,53.777 +77824,256.18,55.712 +77825,251.06,49.663 +77826,252.48,51.743 +77827,253.72,53.748 +77828,254.81,55.684 +77829,249.86,49.635 +77830,251.21,51.715 +77831,252.4,53.719 +77832,253.44,55.655 +77833,248.65,49.609 +77834,249.95,51.686 +77835,251.08,53.689 +77836,252.07,55.625 +77837,247.44,49.584 +77838,248.68,51.659 +77839,249.76,53.659 +77840,250.7,55.593 +77841,246.23,49.561 +77842,247.42,51.631 +77843,248.44,53.628 +77844,249.33,55.559 +77845,245.03,49.54 +77846,246.15,51.605 +77847,247.12,53.597 +77848,247.96,55.524 +77849,243.82,49.52 +77850,244.88,51.579 +77851,245.8,53.565 +77852,246.59,55.487 +77853,242.62,49.502 +77854,243.62,51.553 +77855,244.48,53.533 +77856,245.22,55.449 +77857,241.42,49.486 +77858,242.35,51.528 +77859,243.16,53.5 +77860,243.85,55.409 +77861,240.22,49.471 +77862,241.09,51.503 +77863,241.84,53.467 +77864,242.47,55.368 +77865,239.01,49.458 +77866,239.83,51.479 +77867,240.51,53.433 +77868,241.1,55.325 +77869,237.81,49.446 +77870,238.56,51.456 +77871,239.19,53.399 +77872,239.73,55.281 +77873,236.61,49.436 +77874,237.3,51.433 +77875,237.87,53.364 +77876,238.35,55.235 +77877,235.41,49.428 +77878,236.03,51.411 +77879,236.55,53.329 +77880,236.98,55.188 +77881,234.21,49.421 +77882,234.77,51.389 +77883,235.23,53.293 +77884,235.6,55.139 +77885,233.02,49.416 +77886,233.51,51.367 +77887,233.91,53.257 +77888,234.23,55.089 +77889,231.82,49.413 +77890,232.25,51.346 +77891,232.59,53.22 +77892,232.85,55.038 +77893,230.62,49.411 +77894,230.98,51.326 +77895,231.26,53.183 +77896,231.48,54.984 +77897,229.42,49.41 +77898,229.72,51.306 +77899,229.94,53.145 +77900,230.1,54.93 +77901,228.22,49.412 +77902,228.46,51.287 +77903,228.62,53.107 +77904,228.72,54.874 +77905,227.02,49.414 +77906,227.19,51.268 +77907,227.3,53.068 +77908,227.35,54.816 +77909,225.83,49.418 +77910,225.93,51.25 +77911,225.98,53.028 +77912,225.97,54.757 +77913,224.63,49.424 +77914,224.67,51.232 +77915,224.66,52.989 +77916,224.59,54.696 +77917,223.43,49.431 +77918,223.41,51.215 +77919,223.33,52.948 +77920,223.22,54.635 +77921,222.23,49.44 +77922,222.15,51.198 +77923,222.01,52.908 +77924,221.84,54.571 +77925,221.03,49.45 +77926,220.88,51.182 +77927,220.69,52.867 +77928,220.46,54.507 +77929,219.83,49.461 +77930,219.62,51.166 +77931,219.37,52.825 +77932,219.09,54.441 +77933,218.63,49.474 +77934,218.36,51.15 +77935,218.05,52.783 +77936,217.71,54.373 +77937,217.43,49.488 +77938,217.1,51.135 +77939,216.73,52.741 +77940,216.33,54.305 +77941,216.23,49.503 +77942,215.83,51.121 +77943,215.41,52.698 +77944,214.96,54.235 +77945,215.03,49.52 +77946,214.57,51.107 +77947,214.09,52.654 +77948,213.58,54.163 +77949,213.83,49.538 +77950,213.31,51.093 +77951,212.77,52.61 +77952,212.2,54.091 +77953,212.63,49.557 +77954,212.05,51.08 +77955,211.45,52.566 +77956,210.83,54.017 +77957,211.43,49.578 +77958,210.78,51.067 +77959,210.13,52.522 +77960,209.45,53.942 +77961,210.23,49.599 +77962,209.52,51.055 +77963,208.81,52.477 +77964,208.08,53.865 +77965,209.02,49.622 +77966,208.26,51.043 +77967,207.49,52.431 +77968,206.7,53.788 +77969,207.82,49.646 +77970,207,51.031 +77971,206.17,52.385 +77972,205.33,53.709 +77973,206.61,49.672 +77974,205.73,51.02 +77975,204.85,52.339 +77976,203.96,53.629 +77977,205.41,49.698 +77978,204.47,51.009 +77979,203.53,52.293 +77980,202.58,53.548 +77981,204.2,49.725 +77982,203.21,50.999 +77983,202.21,52.246 +77984,201.21,53.466 +77985,202.99,49.753 +77986,201.94,50.989 +77987,200.89,52.199 +77988,199.84,53.383 +77989,201.78,49.783 +77990,200.68,50.979 +77991,199.57,52.151 +77992,198.47,53.298 +77993,200.57,49.813 +77994,199.41,50.97 +77995,198.26,52.103 +77996,197.1,53.213 +77997,199.36,49.844 +77998,198.15,50.961 +77999,196.94,52.055 +78000,195.73,53.127 +78001,198.15,49.877 +78002,196.88,50.952 +78003,195.62,52.006 +78004,194.36,53.039 +78005,196.93,49.91 +78006,195.62,50.943 +78007,194.31,51.957 +78008,192.99,52.951 +78009,195.72,49.944 +78010,194.35,50.935 +78011,192.99,51.908 +78012,191.63,52.862 +78013,194.5,49.978 +78014,193.09,50.927 +78015,191.67,51.859 +78016,190.26,52.771 +78017,193.28,50.014 +78018,191.82,50.92 +78019,190.36,51.809 +78020,188.89,52.68 +78021,192.07,50.05 +78022,190.56,50.913 +78023,189.04,51.759 +78024,187.53,52.588 +78025,190.85,50.087 +78026,189.29,50.906 +78027,187.73,51.709 +78028,186.16,52.495 +78029,189.62,50.124 +78030,188.02,50.899 +78031,186.42,51.658 +78032,184.8,52.402 +78033,188.4,50.163 +78034,186.76,50.892 +78035,185.1,51.608 +78036,183.44,52.308 +78037,187.18,50.202 +78038,185.49,50.886 +78039,183.79,51.557 +78040,182.08,52.213 +78041,185.95,50.241 +78042,184.22,50.88 +78043,182.48,51.506 +78044,180.72,52.117 +78045,184.72,50.281 +78046,182.95,50.874 +78047,181.16,51.454 +78048,179.36,52.02 +78049,183.49,50.321 +78050,181.68,50.868 +78051,179.85,51.403 +78052,178.01,51.923 +78053,182.26,50.362 +78054,180.41,50.863 +78055,178.54,51.351 +78056,176.65,51.826 +78057,181.03,50.403 +78058,179.14,50.857 +78059,177.23,51.299 +78060,175.3,51.727 +78061,179.8,50.445 +78062,177.87,50.852 +78063,175.92,51.247 +78064,173.94,51.629 +78065,178.56,50.487 +78066,176.6,50.847 +78067,174.61,51.195 +78068,172.59,51.529 +78069,177.33,50.529 +78070,175.33,50.842 +78071,173.3,51.143 +78072,171.24,51.43 +78073,176.09,50.572 +78074,174.06,50.837 +78075,171.99,51.09 +78076,169.89,51.33 +78077,174.85,50.615 +78078,172.79,50.833 +78079,170.69,51.038 +78080,168.54,51.229 +78081,173.6,50.658 +78082,171.51,50.828 +78083,169.38,50.985 +78084,167.2,51.128 +78085,172.36,50.701 +78086,170.24,50.823 +78087,168.07,50.933 +78088,165.85,51.027 +78089,171.11,50.744 +78090,168.97,50.819 +78091,166.77,50.88 +78092,164.51,50.925 +78093,169.87,50.788 +78094,167.69,50.815 +78095,165.46,50.827 +78096,163.17,50.824 +78097,168.62,50.831 +78098,166.42,50.81 +78099,164.16,50.774 +78100,161.83,50.722 +78101,167.37,50.875 +78102,165.14,50.806 +78103,162.85,50.722 +78104,160.49,50.62 +78105,166.11,50.918 +78106,163.87,50.802 +78107,161.55,50.669 +78108,159.15,50.518 +78109,164.86,50.962 +78110,162.59,50.797 +78111,160.25,50.616 +78112,157.82,50.415 +78113,163.6,51.005 +78114,161.31,50.793 +78115,158.95,50.563 +78116,156.49,50.313 +78117,162.34,51.048 +78118,160.04,50.789 +78119,157.65,50.51 +78120,155.16,50.211 +78121,161.08,51.091 +78122,158.76,50.784 +78123,156.34,50.458 +78124,153.83,50.108 +78125,159.82,51.134 +78126,157.48,50.78 +78127,155.04,50.405 +78128,152.5,50.006 +78129,158.56,51.176 +78130,156.2,50.775 +78131,153.75,50.352 +78132,151.17,49.904 +78133,157.29,51.219 +78134,154.92,50.771 +78135,152.45,50.3 +78136,149.85,49.802 +78137,156.02,51.261 +78138,153.64,50.766 +78139,151.15,50.247 +78140,148.53,49.7 +78141,154.75,51.302 +78142,152.36,50.762 +78143,149.85,50.195 +78144,147.21,49.599 +78145,153.48,51.344 +78146,151.08,50.757 +78147,148.56,50.143 +78148,145.89,49.497 +78149,152.21,51.384 +78150,149.8,50.752 +78151,147.26,50.091 +78152,144.58,49.396 +78153,150.94,51.425 +78154,148.52,50.747 +78155,145.97,50.039 +78156,143.26,49.296 +78157,149.66,51.465 +78158,147.23,50.742 +78159,144.67,49.987 +78160,141.95,49.196 +78161,148.38,51.504 +78162,145.95,50.736 +78163,143.38,49.935 +78164,140.64,49.096 +78165,147.1,51.543 +78166,144.67,50.731 +78167,142.09,49.884 +78168,139.33,48.996 +78169,145.82,51.581 +78170,143.38,50.725 +78171,140.79,49.832 +78172,138.03,48.898 +78173,144.53,51.619 +78174,142.1,50.719 +78175,139.5,49.781 +78176,136.73,48.799 +78177,143.25,51.656 +78178,140.81,50.713 +78179,138.21,49.73 +78180,135.42,48.702 +78181,141.96,51.692 +78182,139.52,50.707 +78183,136.92,49.68 +78184,134.13,48.605 +78185,140.67,51.728 +78186,138.24,50.701 +78187,135.63,49.63 +78188,132.83,48.508 +78189,139.38,51.763 +78190,136.95,50.694 +78191,134.35,49.579 +78192,131.54,48.413 +78193,138.08,51.797 +78194,135.66,50.687 +78195,133.06,49.53 +78196,130.24,48.318 +78197,136.79,51.83 +78198,134.37,50.68 +78199,131.77,49.48 +78200,128.95,48.224 +78201,135.49,51.862 +78202,133.08,50.672 +78203,130.49,49.431 +78204,127.67,48.131 +78205,134.19,51.894 +78206,131.79,50.665 +78207,129.2,49.382 +78208,126.38,48.038 +78209,132.89,51.924 +78210,130.5,50.657 +78211,127.92,49.333 +78212,125.1,47.947 +78213,131.59,51.954 +78214,129.21,50.648 +78215,126.64,49.285 +78216,123.82,47.856 +78217,130.28,51.983 +78218,127.92,50.64 +78219,125.35,49.237 +78220,122.54,47.767 +78221,128.98,52.011 +78222,126.63,50.631 +78223,124.07,49.189 +78224,121.26,47.679 +78225,127.67,52.037 +78226,125.33,50.621 +78227,122.79,49.142 +78228,119.99,47.591 +78229,126.36,52.063 +78230,124.04,50.612 +78231,121.51,49.095 +78232,118.72,47.505 +78233,125.05,52.088 +78234,122.75,50.602 +78235,120.23,49.049 +78236,117.45,47.42 +78237,123.74,52.111 +78238,121.45,50.591 +78239,118.95,49.003 +78240,116.18,47.336 +78241,122.42,52.134 +78242,120.16,50.581 +78243,117.67,48.957 +78244,114.92,47.253 +78245,121.11,52.155 +78246,118.86,50.57 +78247,116.4,48.912 +78248,113.66,47.171 +78249,119.79,52.175 +78250,117.57,50.558 +78251,115.12,48.867 +78252,112.4,47.091 +78253,118.47,52.194 +78254,116.27,50.546 +78255,113.85,48.823 +78256,111.14,47.012 +78257,117.15,52.212 +78258,114.97,50.534 +78259,112.57,48.779 +78260,109.88,46.934 +78261,115.83,52.228 +78262,113.67,50.522 +78263,111.3,48.736 +78264,108.63,46.858 +78265,114.5,52.244 +78266,112.38,50.508 +78267,110.02,48.693 +78268,107.38,46.783 +78269,113.18,52.258 +78270,111.08,50.495 +78271,108.75,48.65 +78272,106.13,46.71 +78273,111.85,52.27 +78274,109.78,50.481 +78275,107.48,48.608 +78276,104.89,46.638 +78277,110.52,52.282 +78278,108.48,50.467 +78279,106.21,48.567 +78280,103.64,46.567 +78281,109.19,52.292 +78282,107.18,50.452 +78283,104.94,48.525 +78284,102.4,46.498 +78285,107.86,52.3 +78286,105.88,50.437 +78287,103.67,48.485 +78288,101.16,46.431 +78289,106.53,52.307 +78290,104.58,50.421 +78291,102.4,48.445 +78292,99.924,46.365 +78293,105.2,52.313 +78294,103.28,50.405 +78295,101.13,48.406 +78296,98.689,46.301 +78297,103.86,52.318 +78298,101.98,50.388 +78299,99.861,48.367 +78300,97.456,46.238 +78301,102.53,52.321 +78302,100.67,50.371 +78303,98.594,48.328 +78304,96.225,46.177 +78305,101.19,52.322 +78306,99.37,50.353 +78307,97.327,48.29 +78308,94.996,46.118 +78309,99.85,52.322 +78310,98.067,50.335 +78311,96.062,48.253 +78312,93.769,46.06 +78313,98.51,52.321 +78314,96.764,50.317 +78315,94.796,48.216 +78316,92.544,46.004 +78317,97.169,52.318 +78318,95.46,50.297 +78319,93.532,48.18 +78320,91.321,45.95 +78321,95.826,52.313 +78322,94.156,50.278 +78323,92.268,48.145 +78324,90.1,45.898 +78325,94.483,52.308 +78326,92.851,50.258 +78327,91.005,48.11 +78328,88.881,45.847 +78329,93.138,52.3 +78330,91.546,50.237 +78331,89.742,48.075 +78332,87.664,45.798 +78333,91.792,52.291 +78334,90.241,50.216 +78335,88.48,48.041 +78336,86.449,45.751 +78337,90.445,52.281 +78338,88.935,50.194 +78339,87.218,48.008 +78340,85.235,45.706 +78341,89.097,52.268 +78342,87.629,50.172 +78343,85.957,47.976 +78344,84.023,45.663 +78345,87.748,52.255 +78346,86.323,50.149 +78347,84.697,47.944 +78348,82.813,45.621 +78349,86.399,52.239 +78350,85.016,50.126 +78351,83.437,47.912 +78352,81.604,45.581 +78353,85.048,52.222 +78354,83.709,50.102 +78355,82.177,47.881 +78356,80.397,45.543 +78357,83.696,52.204 +78358,82.402,50.078 +78359,80.918,47.851 +78360,79.191,45.507 +78361,82.343,52.184 +78362,81.094,50.053 +78363,79.66,47.821 +78364,77.987,45.473 +78365,80.99,52.162 +78366,79.787,50.028 +78367,78.402,47.792 +78368,76.784,45.441 +78369,79.636,52.139 +78370,78.479,50.002 +78371,77.144,47.764 +78372,75.583,45.41 +78373,78.281,52.114 +78374,77.17,49.975 +78375,75.887,47.736 +78376,74.383,45.382 +78377,76.925,52.087 +78378,75.862,49.948 +78379,74.631,47.709 +78380,73.184,45.355 +78381,75.568,52.059 +78382,74.553,49.921 +78383,73.375,47.683 +78384,71.987,45.331 +78385,74.211,52.029 +78386,73.244,49.892 +78387,72.119,47.657 +78388,70.791,45.308 +78389,72.853,51.998 +78390,71.935,49.864 +78391,70.863,47.632 +78392,69.595,45.287 +78393,71.495,51.965 +78394,70.626,49.834 +78395,69.608,47.607 +78396,68.401,45.268 +78397,70.136,51.93 +78398,69.317,49.805 +78399,68.354,47.583 +78400,67.208,45.251 +78401,68.776,51.894 +78402,68.007,49.774 +78403,67.099,47.56 +78404,66.016,45.235 +78405,67.416,51.856 +78406,66.697,49.743 +78407,65.845,47.537 +78408,64.824,45.222 +78409,66.055,51.816 +78410,65.388,49.712 +78411,64.592,47.515 +78412,63.633,45.211 +78413,64.694,51.775 +78414,64.078,49.68 +78415,63.338,47.493 +78416,62.443,45.201 +78417,63.333,51.732 +78418,62.768,49.648 +78419,62.085,47.472 +78420,61.254,45.193 +78421,61.971,51.688 +78422,61.458,49.615 +78423,60.832,47.452 +78424,60.066,45.187 +78425,60.608,51.642 +78426,60.147,49.581 +78427,59.58,47.432 +78428,58.877,45.183 +78429,59.246,51.594 +78430,58.837,49.547 +78431,58.327,47.413 +78432,57.69,45.181 +78433,57.883,51.545 +78434,57.527,49.512 +78435,57.075,47.394 +78436,56.503,45.18 +78437,56.52,51.494 +78438,56.217,49.477 +78439,55.823,47.377 +78440,55.316,45.182 +78441,55.156,51.441 +78442,54.907,49.441 +78443,54.571,47.359 +78444,54.129,45.185 +78445,53.793,51.387 +78446,53.596,49.405 +78447,53.32,47.343 +78448,52.943,45.19 +78449,52.429,51.332 +78450,52.286,49.368 +78451,52.068,47.326 +78452,51.757,45.196 +78453,51.065,51.274 +78454,50.976,49.331 +78455,50.817,47.311 +78456,50.571,45.205 +78457,49.701,51.216 +78458,49.666,49.293 +78459,49.565,47.296 +78460,49.385,45.215 +78461,48.337,51.155 +78462,48.356,49.255 +78463,48.314,47.282 +78464,48.199,45.227 +78465,46.973,51.094 +78466,47.046,49.216 +78467,47.063,47.268 +78468,47.013,45.24 +78469,45.61,51.03 +78470,45.736,49.177 +78471,45.812,47.255 +78472,45.826,45.255 +78473,44.246,50.966 +78474,44.426,49.138 +78475,44.561,47.242 +78476,44.64,45.272 +78477,42.882,50.899 +78478,43.116,49.097 +78479,43.31,47.23 +78480,43.453,45.29 +78481,41.518,50.832 +78482,41.807,49.057 +78483,42.059,47.218 +78484,42.266,45.31 +78485,40.155,50.762 +78486,40.497,49.016 +78487,40.808,47.207 +78488,41.079,45.331 +78489,38.792,50.692 +78490,39.188,48.974 +78491,39.557,47.196 +78492,39.891,45.354 +78493,37.429,50.62 +78494,37.879,48.932 +78495,38.305,47.186 +78496,38.703,45.379 +78497,36.066,50.546 +78498,36.57,48.889 +78499,37.054,47.177 +78500,37.514,45.405 +78501,34.704,50.471 +78502,35.262,48.846 +78503,35.803,47.168 +78504,36.324,45.432 +78505,33.342,50.395 +78506,33.953,48.803 +78507,34.552,47.159 +78508,35.134,45.461 +78509,31.98,50.318 +78510,32.645,48.759 +78511,33.3,47.151 +78512,33.944,45.491 +78513,30.619,50.239 +78514,31.337,48.715 +78515,32.049,47.144 +78516,32.752,45.522 +78517,29.258,50.159 +78518,30.029,48.67 +78519,30.797,47.137 +78520,31.56,45.555 +78521,27.898,50.077 +78522,28.722,48.625 +78523,29.545,47.13 +78524,30.366,45.589 +78525,26.538,49.995 +78526,27.415,48.58 +78527,28.293,47.124 +78528,29.172,45.624 +78529,25.179,49.911 +78530,26.108,48.534 +78531,27.041,47.118 +78532,27.977,45.66 +78533,23.821,49.826 +78534,24.802,48.488 +78535,25.788,47.113 +78536,26.781,45.698 +78537,22.463,49.74 +78538,23.496,48.442 +78539,24.535,47.108 +78540,25.583,45.737 +78541,21.106,49.652 +78542,22.19,48.395 +78543,23.283,47.103 +78544,24.385,45.777 +78545,19.749,49.564 +78546,20.884,48.348 +78547,22.029,47.099 +78548,23.185,45.818 +78549,18.394,49.474 +78550,19.579,48.3 +78551,20.776,47.095 +78552,21.985,45.86 +78553,17.039,49.384 +78554,18.275,48.252 +78555,19.522,47.092 +78556,20.783,45.903 +78557,15.685,49.292 +78558,16.97,48.204 +78559,18.268,47.089 +78560,19.58,45.946 +78561,14.332,49.199 +78562,15.666,48.156 +78563,17.014,47.086 +78564,18.375,45.991 +78565,12.979,49.105 +78566,14.363,48.107 +78567,15.759,47.084 +78568,17.169,46.037 +78569,11.628,49.011 +78570,13.06,48.058 +78571,14.504,47.082 +78572,15.962,46.083 +78573,10.278,48.915 +78574,11.758,48.009 +78575,13.249,47.08 +78576,14.753,46.131 +78577,8.9282,48.819 +78578,10.455,47.959 +78579,11.993,47.079 +78580,13.543,46.179 +78581,7.5799,48.721 +78582,9.1539,47.909 +78583,10.737,47.078 +78584,12.331,46.228 +78585,6.2327,48.623 +78586,7.8528,47.859 +78587,9.4809,47.077 +78588,11.118,46.277 +78589,4.8866,48.524 +78590,6.5522,47.809 +78591,8.2241,47.076 +78592,9.9034,46.327 +78593,3.5417,48.425 +78594,5.2521,47.759 +78595,6.9669,47.076 +78596,8.6871,46.378 +78597,2.198,48.324 +78598,3.9526,47.708 +78599,5.7092,47.076 +78600,7.4692,46.429 +78601,0.85551,48.223 +78602,2.6535,47.657 +78603,4.4512,47.076 +78604,6.2496,46.481 +78605,359.51,48.122 +78606,1.3551,47.606 +78607,3.1927,47.076 +78608,5.0284,46.533 +78609,358.17,48.019 +78610,0.05719,47.555 +78611,1.9338,47.077 +78612,3.8055,46.586 +78613,356.84,47.916 +78614,358.76,47.504 +78615,0.67446,47.078 +78616,2.5809,46.639 +78617,355.5,47.813 +78618,357.46,47.453 +78619,359.41,47.079 +78620,1.3545,46.693 +78621,354.16,47.709 +78622,356.17,47.401 +78623,358.15,47.08 +78624,0.12646,46.747 +78625,352.83,47.605 +78626,354.87,47.35 +78627,356.89,47.081 +78628,358.9,46.801 +78629,351.5,47.5 +78630,353.58,47.298 +78631,355.63,47.082 +78632,357.66,46.855 +78633,350.16,47.395 +78634,352.28,47.246 +78635,354.37,47.084 +78636,356.43,46.909 +78637,348.83,47.289 +78638,350.99,47.194 +78639,353.11,47.086 +78640,355.2,46.964 +78641,347.51,47.184 +78642,349.7,47.143 +78643,351.85,47.087 +78644,353.96,47.019 +78645,346.18,47.077 +78646,348.4,47.091 +78647,350.58,47.089 +78648,352.72,47.074 +78649,344.85,46.971 +78650,347.11,47.039 +78651,349.32,47.091 +78652,351.48,47.129 +78653,343.53,46.865 +78654,345.82,46.987 +78655,348.05,47.093 +78656,350.24,47.183 +78657,342.21,46.758 +78658,344.53,46.935 +78659,346.79,47.095 +78660,348.99,47.238 +78661,340.89,46.652 +78662,343.24,46.883 +78663,345.52,47.097 +78664,347.75,47.293 +78665,339.57,46.545 +78666,341.95,46.832 +78667,344.26,47.098 +78668,346.5,47.348 +78669,338.26,46.438 +78670,340.66,46.78 +78671,342.99,47.1 +78672,345.25,47.402 +78673,336.94,46.331 +78674,339.38,46.728 +78675,341.72,47.102 +78676,344,47.456 +78677,335.63,46.225 +78678,338.09,46.677 +78679,340.46,47.104 +78680,342.74,47.51 +78681,334.32,46.118 +78682,336.8,46.625 +78683,339.19,47.106 +78684,341.49,47.564 +78685,333.01,46.012 +78686,335.52,46.574 +78687,337.92,47.108 +78688,340.23,47.617 +78689,331.7,45.906 +78690,334.23,46.522 +78691,336.65,47.11 +78692,338.97,47.67 +78693,330.4,45.8 +78694,332.95,46.471 +78695,335.38,47.111 +78696,337.71,47.723 +78697,329.09,45.694 +78698,331.67,46.42 +78699,334.11,47.113 +78700,336.44,47.775 +78701,327.79,45.589 +78702,330.38,46.37 +78703,332.84,47.114 +78704,335.18,47.827 +78705,326.49,45.485 +78706,329.1,46.319 +78707,331.57,47.116 +78708,333.91,47.878 +78709,325.2,45.38 +78710,327.82,46.269 +78711,330.3,47.117 +78712,332.64,47.929 +78713,323.9,45.276 +78714,326.54,46.219 +78715,329.02,47.118 +78716,331.37,47.979 +78717,322.61,45.173 +78718,325.26,46.169 +78719,327.75,47.119 +78720,330.1,48.028 +78721,321.32,45.07 +78722,323.98,46.119 +78723,326.48,47.119 +78724,328.83,48.077 +78725,320.03,44.968 +78726,322.7,46.069 +78727,325.2,47.12 +78728,327.55,48.125 +78729,318.75,44.867 +78730,321.43,46.02 +78731,323.93,47.12 +78732,326.27,48.173 +78733,317.46,44.766 +78734,320.15,45.971 +78735,322.65,47.12 +78736,324.99,48.219 +78737,316.18,44.666 +78738,318.88,45.923 +78739,321.37,47.12 +78740,323.71,48.265 +78741,314.9,44.567 +78742,317.6,45.875 +78743,320.1,47.12 +78744,322.43,48.31 +78745,313.62,44.468 +78746,316.33,45.827 +78747,318.82,47.119 +78748,321.14,48.354 +78749,312.35,44.371 +78750,315.05,45.779 +78751,317.54,47.118 +78752,319.85,48.397 +78753,311.08,44.274 +78754,313.78,45.732 +78755,316.26,47.117 +78756,318.56,48.44 +78757,309.81,44.179 +78758,312.51,45.685 +78759,314.98,47.116 +78760,317.27,48.481 +78761,308.54,44.084 +78762,311.24,45.638 +78763,313.7,47.114 +78764,315.98,48.521 +78765,307.27,43.99 +78766,309.97,45.592 +78767,312.42,47.112 +78768,314.69,48.561 +78769,306.01,43.898 +78770,308.7,45.547 +78771,311.14,47.11 +78772,313.39,48.599 +78773,304.75,43.807 +78774,307.43,45.501 +78775,309.86,47.107 +78776,312.09,48.636 +78777,303.49,43.717 +78778,306.16,45.456 +78779,308.58,47.104 +78780,310.79,48.672 +78781,302.23,43.628 +78782,304.9,45.412 +78783,307.3,47.101 +78784,309.49,48.707 +78785,300.98,43.54 +78786,303.63,45.368 +78787,306.02,47.097 +78788,308.19,48.741 +78789,299.73,43.454 +78790,302.37,45.325 +78791,304.73,47.093 +78792,306.89,48.774 +78793,298.48,43.369 +78794,301.1,45.282 +78795,303.45,47.088 +78796,305.58,48.805 +78797,297.23,43.286 +78798,299.84,45.239 +78799,302.16,47.084 +78800,304.27,48.835 +78801,295.99,43.204 +78802,298.57,45.197 +78803,300.88,47.078 +78804,302.97,48.864 +78805,294.74,43.123 +78806,297.31,45.155 +78807,299.59,47.073 +78808,301.66,48.892 +78809,293.5,43.044 +78810,296.05,45.114 +78811,298.31,47.067 +78812,300.34,48.918 +78813,292.26,42.967 +78814,294.79,45.074 +78815,297.02,47.06 +78816,299.03,48.943 +78817,291.03,42.891 +78818,293.53,45.034 +78819,295.74,47.053 +78820,297.72,48.967 +78821,289.8,42.816 +78822,292.27,44.995 +78823,294.45,47.046 +78824,296.4,48.989 +78825,288.56,42.744 +78826,291.01,44.956 +78827,293.16,47.038 +78828,295.08,49.01 +78829,287.33,42.673 +78830,289.75,44.918 +78831,291.87,47.03 +78832,293.76,49.029 +78833,286.11,42.603 +78834,288.49,44.88 +78835,290.58,47.021 +78836,292.44,49.047 +78837,284.88,42.536 +78838,287.24,44.843 +78839,289.29,47.012 +78840,291.12,49.064 +78841,283.66,42.47 +78842,285.98,44.807 +78843,288,47.002 +78844,289.8,49.079 +78845,282.44,42.406 +78846,284.73,44.771 +78847,286.71,46.992 +78848,288.48,49.092 +78849,281.22,42.344 +78850,283.47,44.736 +78851,285.42,46.981 +78852,287.15,49.104 +78853,280,42.284 +78854,282.22,44.701 +78855,284.13,46.97 +78856,285.83,49.115 +78857,278.79,42.225 +78858,280.96,44.667 +78859,282.84,46.958 +78860,284.5,49.124 +78861,277.58,42.169 +78862,279.71,44.634 +78863,281.55,46.946 +78864,283.17,49.131 +78865,276.37,42.115 +78866,278.46,44.601 +78867,280.26,46.933 +78868,281.84,49.137 +78869,275.16,42.062 +78870,277.21,44.569 +78871,278.97,46.92 +78872,280.51,49.141 +78873,273.95,42.011 +78874,275.96,44.538 +78875,277.67,46.906 +78876,279.18,49.143 +78877,272.75,41.963 +78878,274.71,44.507 +78879,276.38,46.892 +78880,277.84,49.144 +78881,271.54,41.916 +78882,273.46,44.477 +78883,275.09,46.877 +78884,276.51,49.143 +78885,270.34,41.872 +78886,272.21,44.448 +78887,273.8,46.862 +78888,275.18,49.141 +78889,269.14,41.83 +78890,270.96,44.419 +78891,272.5,46.846 +78892,273.84,49.137 +78893,267.94,41.789 +78894,269.71,44.391 +78895,271.21,46.829 +78896,272.5,49.131 +78897,266.75,41.751 +78898,268.46,44.364 +78899,269.91,46.812 +78900,271.17,49.124 +78901,265.55,41.715 +78902,267.22,44.337 +78903,268.62,46.795 +78904,269.83,49.115 +78905,264.36,41.681 +78906,265.97,44.312 +78907,267.32,46.777 +78908,268.49,49.104 +78909,263.17,41.649 +78910,264.72,44.286 +78911,266.03,46.758 +78912,267.15,49.091 +78913,261.98,41.619 +78914,263.48,44.262 +78915,264.73,46.739 +78916,265.81,49.077 +78917,260.79,41.592 +78918,262.23,44.238 +78919,263.44,46.719 +78920,264.47,49.061 +78921,259.6,41.566 +78922,260.99,44.215 +78923,262.14,46.698 +78924,263.12,49.044 +78925,258.41,41.543 +78926,259.74,44.193 +78927,260.85,46.677 +78928,261.78,49.024 +78929,257.23,41.522 +78930,258.5,44.171 +78931,259.55,46.656 +78932,260.44,49.003 +78933,256.04,41.502 +78934,257.25,44.15 +78935,258.25,46.634 +78936,259.1,48.981 +78937,254.86,41.486 +78938,256.01,44.13 +78939,256.96,46.611 +78940,257.75,48.956 +78941,253.68,41.471 +78942,254.77,44.111 +78943,255.66,46.588 +78944,256.41,48.93 +78945,252.5,41.458 +78946,253.53,44.092 +78947,254.36,46.564 +78948,255.06,48.902 +78949,251.32,41.448 +78950,252.28,44.074 +78951,253.07,46.54 +78952,253.71,48.872 +78953,250.14,41.44 +78954,251.04,44.056 +78955,251.77,46.515 +78956,252.37,48.84 +78957,248.96,41.434 +78958,249.8,44.04 +78959,250.47,46.489 +78960,251.02,48.807 +78961,247.78,41.43 +78962,248.56,44.024 +78963,249.18,46.463 +78964,249.68,48.772 +78965,246.6,41.428 +78966,247.32,44.009 +78967,247.88,46.437 +78968,248.33,48.736 +78969,245.42,41.428 +78970,246.07,43.994 +78971,246.58,46.409 +78972,246.98,48.697 +78973,244.25,41.43 +78974,244.83,43.98 +78975,245.29,46.382 +78976,245.63,48.657 +78977,243.07,41.435 +78978,243.59,43.967 +78979,243.99,46.353 +78980,244.29,48.615 +78981,241.89,41.441 +78982,242.35,43.955 +78983,242.69,46.324 +78984,242.94,48.572 +78985,240.72,41.45 +78986,241.11,43.943 +78987,241.39,46.295 +78988,241.59,48.527 +78989,239.54,41.46 +78990,239.87,43.932 +78991,240.1,46.265 +78992,240.24,48.48 +78993,238.37,41.473 +78994,238.63,43.922 +78995,238.8,46.235 +78996,238.89,48.431 +78997,237.19,41.487 +78998,237.39,43.912 +78999,237.5,46.203 +79000,237.55,48.381 +79001,236.01,41.504 +79002,236.15,43.903 +79003,236.21,46.172 +79004,236.2,48.329 +79005,234.84,41.522 +79006,234.91,43.895 +79007,234.91,46.14 +79008,234.85,48.276 +79009,233.66,41.543 +79010,233.67,43.887 +79011,233.61,46.107 +79012,233.5,48.22 +79013,232.49,41.565 +79014,232.43,43.88 +79015,232.32,46.074 +79016,232.15,48.164 +79017,231.31,41.589 +79018,231.19,43.874 +79019,231.02,46.04 +79020,230.8,48.105 +79021,230.13,41.615 +79022,229.95,43.868 +79023,229.72,46.006 +79024,229.46,48.045 +79025,228.96,41.643 +79026,228.71,43.863 +79027,228.43,45.972 +79028,228.11,47.984 +79029,227.78,41.673 +79030,227.47,43.858 +79031,227.13,45.936 +79032,226.76,47.92 +79033,226.6,41.704 +79034,226.23,43.854 +79035,225.84,45.901 +79036,225.42,47.856 +79037,225.42,41.737 +79038,224.99,43.851 +79039,224.54,45.865 +79040,224.07,47.789 +79041,224.24,41.772 +79042,223.75,43.849 +79043,223.24,45.828 +79044,222.72,47.722 +79045,223.06,41.809 +79046,222.51,43.846 +79047,221.95,45.791 +79048,221.38,47.652 +79049,221.88,41.847 +79050,221.27,43.845 +79051,220.65,45.753 +79052,220.03,47.582 +79053,220.7,41.887 +79054,220.03,43.844 +79055,219.36,45.715 +79056,218.69,47.509 +79057,219.52,41.928 +79058,218.79,43.844 +79059,218.07,45.677 +79060,217.34,47.436 +79061,218.33,41.971 +79062,217.55,43.844 +79063,216.77,45.638 +79064,216,47.361 +79065,217.15,42.015 +79066,216.31,43.845 +79067,215.48,45.599 +79068,214.66,47.284 +79069,215.96,42.061 +79070,215.07,43.846 +79071,214.18,45.559 +79072,213.31,47.206 +79073,214.78,42.108 +79074,213.83,43.848 +79075,212.89,45.519 +79076,211.97,47.127 +79077,213.59,42.157 +79078,212.58,43.85 +79079,211.6,45.478 +79080,210.63,47.047 +79081,212.4,42.207 +79082,211.34,43.853 +79083,210.31,45.438 +79084,209.29,46.965 +79085,211.21,42.258 +79086,210.1,43.857 +79087,209.01,45.396 +79088,207.95,46.882 +79089,210.02,42.311 +79090,208.86,43.86 +79091,207.72,45.355 +79092,206.61,46.797 +79093,208.83,42.364 +79094,207.61,43.865 +79095,206.43,45.313 +79096,205.28,46.712 +79097,207.63,42.419 +79098,206.37,43.869 +79099,205.14,45.27 +79100,203.94,46.625 +79101,206.44,42.475 +79102,205.13,43.875 +79103,203.85,45.228 +79104,202.6,46.537 +79105,205.24,42.532 +79106,203.88,43.88 +79107,202.56,45.185 +79108,201.27,46.448 +79109,204.04,42.591 +79110,202.64,43.886 +79111,201.27,45.142 +79112,199.93,46.358 +79113,202.84,42.65 +79114,201.4,43.893 +79115,199.98,45.098 +79116,198.6,46.267 +79117,201.64,42.71 +79118,200.15,43.9 +79119,198.69,45.054 +79120,197.27,46.174 +79121,200.44,42.771 +79122,198.91,43.907 +79123,197.41,45.01 +79124,195.94,46.081 +79125,199.24,42.833 +79126,197.66,43.914 +79127,196.12,44.966 +79128,194.61,45.987 +79129,198.03,42.896 +79130,196.41,43.922 +79131,194.83,44.921 +79132,193.28,45.892 +79133,196.82,42.959 +79134,195.17,43.931 +79135,193.54,44.876 +79136,191.95,45.796 +79137,195.61,43.023 +79138,193.92,43.939 +79139,192.26,44.831 +79140,190.62,45.699 +79141,194.4,43.088 +79142,192.67,43.948 +79143,190.97,44.786 +79144,189.3,45.601 +79145,193.19,43.154 +79146,191.43,43.957 +79147,189.69,44.74 +79148,187.97,45.502 +79149,191.97,43.22 +79150,190.18,43.967 +79151,188.4,44.694 +79152,186.65,45.403 +79153,190.76,43.287 +79154,188.93,43.976 +79155,187.12,44.649 +79156,185.33,45.303 +79157,189.54,43.354 +79158,187.68,43.986 +79159,185.84,44.603 +79160,184.01,45.202 +79161,188.32,43.422 +79162,186.43,43.997 +79163,184.55,44.556 +79164,182.69,45.1 +79165,187.1,43.49 +79166,185.18,44.007 +79167,183.27,44.51 +79168,181.37,44.998 +79169,185.88,43.559 +79170,183.93,44.018 +79171,181.99,44.464 +79172,180.06,44.896 +79173,184.65,43.628 +79174,182.68,44.029 +79175,180.71,44.417 +79176,178.74,44.793 +79177,183.42,43.697 +79178,181.42,44.04 +79179,179.43,44.371 +79180,177.43,44.689 +79181,182.19,43.766 +79182,180.17,44.051 +79183,178.15,44.324 +79184,176.12,44.585 +79185,180.96,43.836 +79186,178.92,44.062 +79187,176.87,44.277 +79188,174.81,44.48 +79189,179.73,43.906 +79190,177.67,44.074 +79191,175.59,44.231 +79192,173.5,44.375 +79193,178.49,43.976 +79194,176.41,44.085 +79195,174.31,44.184 +79196,172.2,44.27 +79197,177.26,44.046 +79198,175.16,44.097 +79199,173.04,44.137 +79200,170.89,44.164 +79201,176.02,44.115 +79202,173.9,44.109 +79203,171.76,44.09 +79204,169.59,44.059 +79205,174.78,44.185 +79206,172.65,44.121 +79207,170.48,44.044 +79208,168.29,43.953 +79209,173.54,44.255 +79210,171.39,44.133 +79211,169.21,43.997 +79212,166.99,43.847 +79213,172.29,44.325 +79214,170.13,44.145 +79215,167.94,43.95 +79216,165.69,43.74 +79217,171.05,44.395 +79218,168.88,44.157 +79219,166.66,43.904 +79220,164.4,43.634 +79221,169.8,44.464 +79222,167.62,44.169 +79223,165.39,43.857 +79224,163.1,43.528 +79225,168.55,44.533 +79226,166.36,44.181 +79227,164.12,43.811 +79228,161.81,43.422 +79229,167.29,44.602 +79230,165.1,44.193 +79231,162.85,43.765 +79232,160.52,43.315 +79233,166.04,44.671 +79234,163.84,44.205 +79235,161.58,43.718 +79236,159.24,43.209 +79237,164.78,44.739 +79238,162.58,44.217 +79239,160.31,43.672 +79240,157.95,43.104 +79241,163.53,44.807 +79242,161.32,44.229 +79243,159.04,43.627 +79244,156.67,42.998 +79245,162.27,44.874 +79246,160.06,44.241 +79247,157.77,43.581 +79248,155.38,42.893 +79249,161.01,44.941 +79250,158.8,44.253 +79251,156.5,43.536 +79252,154.1,42.787 +79253,159.74,45.007 +79254,157.53,44.264 +79255,155.23,43.49 +79256,152.83,42.683 +79257,158.48,45.073 +79258,156.27,44.276 +79259,153.97,43.445 +79260,151.55,42.579 +79261,157.21,45.138 +79262,155.01,44.287 +79263,152.7,43.4 +79264,150.28,42.475 +79265,155.94,45.202 +79266,153.74,44.298 +79267,151.44,43.356 +79268,149,42.371 +79269,154.67,45.266 +79270,152.48,44.31 +79271,150.17,43.312 +79272,147.73,42.269 +79273,153.4,45.329 +79274,151.21,44.321 +79275,148.91,43.268 +79276,146.47,42.167 +79277,152.12,45.392 +79278,149.95,44.331 +79279,147.65,43.224 +79280,145.2,42.065 +79281,150.85,45.453 +79282,148.68,44.342 +79283,146.38,43.181 +79284,143.94,41.964 +79285,149.57,45.514 +79286,147.41,44.352 +79287,145.12,43.138 +79288,142.68,41.864 +79289,148.29,45.574 +79290,146.15,44.362 +79291,143.86,43.095 +79292,141.42,41.765 +79293,147.01,45.633 +79294,144.88,44.372 +79295,142.6,43.053 +79296,140.16,41.667 +79297,145.72,45.691 +79298,143.61,44.382 +79299,141.35,43.011 +79300,138.91,41.569 +79301,144.44,45.748 +79302,142.34,44.391 +79303,140.09,42.969 +79304,137.65,41.473 +79305,143.15,45.804 +79306,141.07,44.4 +79307,138.83,42.928 +79308,136.4,41.378 +79309,141.87,45.859 +79310,139.8,44.409 +79311,137.57,42.887 +79312,135.16,41.283 +79313,140.58,45.913 +79314,138.53,44.418 +79315,136.32,42.847 +79316,133.91,41.19 +79317,139.28,45.966 +79318,137.26,44.426 +79319,135.06,42.807 +79320,132.67,41.098 +79321,137.99,46.018 +79322,135.98,44.434 +79323,133.81,42.768 +79324,131.42,41.007 +79325,136.7,46.068 +79326,134.71,44.442 +79327,132.55,42.729 +79328,130.19,40.917 +79329,135.4,46.118 +79330,133.44,44.449 +79331,131.3,42.69 +79332,128.95,40.828 +79333,134.1,46.166 +79334,132.16,44.456 +79335,130.05,42.653 +79336,127.71,40.741 +79337,132.8,46.213 +79338,130.89,44.462 +79339,128.8,42.615 +79340,126.48,40.656 +79341,131.5,46.259 +79342,129.61,44.468 +79343,127.55,42.578 +79344,125.25,40.571 +79345,130.2,46.303 +79346,128.34,44.474 +79347,126.3,42.542 +79348,124.02,40.488 +79349,128.9,46.346 +79350,127.06,44.48 +79351,125.05,42.506 +79352,122.8,40.407 +79353,127.59,46.388 +79354,125.79,44.485 +79355,123.8,42.471 +79356,121.57,40.327 +79357,126.29,46.428 +79358,124.51,44.489 +79359,122.55,42.436 +79360,120.35,40.249 +79361,124.98,46.467 +79362,123.23,44.493 +79363,121.3,42.402 +79364,119.13,40.173 +79365,123.67,46.505 +79366,121.96,44.497 +79367,120.06,42.369 +79368,117.91,40.098 +79369,122.36,46.541 +79370,120.68,44.5 +79371,118.81,42.336 +79372,116.7,40.025 +79373,121.05,46.575 +79374,119.4,44.503 +79375,117.56,42.304 +79376,115.48,39.953 +79377,119.74,46.609 +79378,118.12,44.505 +79379,116.32,42.272 +79380,114.27,39.884 +79381,118.42,46.64 +79382,116.84,44.507 +79383,115.08,42.241 +79384,113.06,39.816 +79385,117.11,46.67 +79386,115.56,44.508 +79387,113.83,42.211 +79388,111.85,39.75 +79389,115.79,46.699 +79390,114.28,44.509 +79391,112.59,42.181 +79392,110.65,39.686 +79393,114.48,46.726 +79394,113,44.51 +79395,111.35,42.152 +79396,109.44,39.624 +79397,113.16,46.751 +79398,111.72,44.51 +79399,110.1,42.124 +79400,108.24,39.564 +79401,111.84,46.775 +79402,110.44,44.509 +79403,108.86,42.097 +79404,107.04,39.506 +79405,110.52,46.797 +79406,109.16,44.508 +79407,107.62,42.07 +79408,105.84,39.45 +79409,109.2,46.818 +79410,107.88,44.506 +79411,106.38,42.044 +79412,104.65,39.397 +79413,107.88,46.836 +79414,106.6,44.504 +79415,105.14,42.018 +79416,103.45,39.345 +79417,106.55,46.854 +79418,105.31,44.501 +79419,103.9,41.993 +79420,102.26,39.295 +79421,105.23,46.869 +79422,104.03,44.498 +79423,102.66,41.969 +79424,101.07,39.248 +79425,103.9,46.883 +79426,102.75,44.494 +79427,101.43,41.946 +79428,99.878,39.202 +79429,102.58,46.895 +79430,101.46,44.49 +79431,100.19,41.924 +79432,98.689,39.159 +79433,101.25,46.905 +79434,100.18,44.485 +79435,98.95,41.902 +79436,97.502,39.118 +79437,99.925,46.914 +79438,98.897,44.48 +79439,97.713,41.881 +79440,96.316,39.08 +79441,98.598,46.921 +79442,97.613,44.474 +79443,96.477,41.861 +79444,95.132,39.044 +79445,97.269,46.926 +79446,96.329,44.467 +79447,95.241,41.841 +79448,93.949,39.009 +79449,95.94,46.93 +79450,95.045,44.46 +79451,94.005,41.822 +79452,92.767,38.978 +79453,94.611,46.931 +79454,93.76,44.452 +79455,92.77,41.805 +79456,91.586,38.948 +79457,93.281,46.931 +79458,92.475,44.444 +79459,91.535,41.787 +79460,90.407,38.921 +79461,91.95,46.929 +79462,91.19,44.435 +79463,90.3,41.771 +79464,89.228,38.896 +79465,90.619,46.925 +79466,89.905,44.426 +79467,89.066,41.755 +79468,88.051,38.874 +79469,89.287,46.92 +79470,88.62,44.416 +79471,87.831,41.741 +79472,86.875,38.854 +79473,87.955,46.913 +79474,87.335,44.405 +79475,86.598,41.726 +79476,85.699,38.836 +79477,86.623,46.904 +79478,86.049,44.394 +79479,85.364,41.713 +79480,84.524,38.821 +79481,85.29,46.893 +79482,84.763,44.382 +79483,84.131,41.701 +79484,83.35,38.808 +79485,83.957,46.88 +79486,83.478,44.37 +79487,82.898,41.689 +79488,82.177,38.797 +79489,82.623,46.865 +79490,82.192,44.357 +79491,81.665,41.678 +79492,81.005,38.789 +79493,81.29,46.849 +79494,80.906,44.344 +79495,80.432,41.668 +79496,79.833,38.783 +79497,79.956,46.831 +79498,79.62,44.33 +79499,79.2,41.659 +79500,78.661,38.78 +79501,78.621,46.811 +79502,78.334,44.315 +79503,77.968,41.65 +79504,77.49,38.779 +79505,77.287,46.789 +79506,77.049,44.3 +79507,76.736,41.643 +79508,76.319,38.78 +79509,75.953,46.766 +79510,75.763,44.284 +79511,75.504,41.636 +79512,75.149,38.783 +79513,74.618,46.741 +79514,74.477,44.268 +79515,74.272,41.63 +79516,73.978,38.789 +79517,73.284,46.714 +79518,73.191,44.251 +79519,73.04,41.624 +79520,72.808,38.798 +79521,71.949,46.685 +79522,71.905,44.233 +79523,71.808,41.62 +79524,71.638,38.808 +79525,70.615,46.654 +79526,70.619,44.215 +79527,70.576,41.616 +79528,70.468,38.821 +79529,69.281,46.622 +79530,69.333,44.196 +79531,69.345,41.613 +79532,69.298,38.836 +79533,67.946,46.587 +79534,68.048,44.177 +79535,68.113,41.61 +79536,68.128,38.854 +79537,66.612,46.551 +79538,66.762,44.157 +79539,66.881,41.609 +79540,66.958,38.874 +79541,65.278,46.514 +79542,65.477,44.137 +79543,65.65,41.608 +79544,65.787,38.896 +79545,63.944,46.474 +79546,64.191,44.116 +79547,64.418,41.608 +79548,64.616,38.92 +79549,62.611,46.433 +79550,62.906,44.094 +79551,63.186,41.609 +79552,63.445,38.946 +79553,61.278,46.39 +79554,61.621,44.072 +79555,61.955,41.61 +79556,62.273,38.975 +79557,59.945,46.346 +79558,60.336,44.05 +79559,60.723,41.613 +79560,61.101,39.005 +79561,58.612,46.299 +79562,59.051,44.027 +79563,59.491,41.616 +79564,59.928,39.038 +79565,57.28,46.251 +79566,57.767,44.003 +79567,58.259,41.619 +79568,58.755,39.073 +79569,55.948,46.202 +79570,56.483,43.979 +79571,57.026,41.624 +79572,57.58,39.11 +79573,54.617,46.15 +79574,55.199,43.954 +79575,55.794,41.629 +79576,56.406,39.149 +79577,53.286,46.097 +79578,53.915,43.929 +79579,54.561,41.635 +79580,55.23,39.19 +79581,51.956,46.043 +79582,52.631,43.904 +79583,53.328,41.641 +79584,54.053,39.233 +79585,50.626,45.987 +79586,51.348,43.878 +79587,52.095,41.648 +79588,52.876,39.278 +79589,49.297,45.929 +79590,50.065,43.851 +79591,50.862,41.656 +79592,51.697,39.325 +79593,47.969,45.87 +79594,48.782,43.824 +79595,49.629,41.665 +79596,50.517,39.373 +79597,46.641,45.809 +79598,47.499,43.796 +79599,48.395,41.674 +79600,49.337,39.424 +79601,45.314,45.746 +79602,46.217,43.768 +79603,47.161,41.684 +79604,48.155,39.476 +79605,43.987,45.682 +79606,44.935,43.74 +79607,45.927,41.694 +79608,46.972,39.53 +79609,42.662,45.617 +79610,43.654,43.711 +79611,44.692,41.705 +79612,45.788,39.585 +79613,41.337,45.55 +79614,42.372,43.681 +79615,43.457,41.717 +79616,44.602,39.643 +79617,40.013,45.482 +79618,41.092,43.652 +79619,42.222,41.729 +79620,43.415,39.702 +79621,38.69,45.412 +79622,39.811,43.621 +79623,40.986,41.742 +79624,42.227,39.762 +79625,37.368,45.341 +79626,38.531,43.591 +79627,39.75,41.756 +79628,41.037,39.824 +79629,36.047,45.268 +79630,37.252,43.56 +79631,38.514,41.77 +79632,39.846,39.888 +79633,34.726,45.195 +79634,35.972,43.528 +79635,37.277,41.784 +79636,38.653,39.953 +79637,33.407,45.12 +79638,34.693,43.496 +79639,36.04,41.799 +79640,37.459,40.019 +79641,32.089,45.043 +79642,33.415,43.464 +79643,34.802,41.815 +79644,36.263,40.087 +79645,30.772,44.965 +79646,32.137,43.432 +79647,33.564,41.831 +79648,35.065,40.156 +79649,29.456,44.887 +79650,30.86,43.399 +79651,32.326,41.848 +79652,33.866,40.226 +79653,28.141,44.806 +79654,29.583,43.366 +79655,31.087,41.865 +79656,32.666,40.298 +79657,26.827,44.725 +79658,28.306,43.332 +79659,29.848,41.882 +79660,31.463,40.37 +79661,25.515,44.643 +79662,27.03,43.298 +79663,28.608,41.9 +79664,30.259,40.444 +79665,24.204,44.559 +79666,25.755,43.264 +79667,27.368,41.919 +79668,29.053,40.519 +79669,22.894,44.475 +79670,24.48,43.23 +79671,26.127,41.938 +79672,27.845,40.595 +79673,21.585,44.389 +79674,23.205,43.195 +79675,24.886,41.957 +79676,26.636,40.672 +79677,20.278,44.302 +79678,21.931,43.16 +79679,23.644,41.977 +79680,25.424,40.75 +79681,18.972,44.215 +79682,20.658,43.125 +79683,22.401,41.997 +79684,24.211,40.829 +79685,17.667,44.126 +79686,19.385,43.09 +79687,21.159,42.018 +79688,22.996,40.908 +79689,16.364,44.037 +79690,18.112,43.054 +79691,19.915,42.039 +79692,21.779,40.988 +79693,15.063,43.946 +79694,16.841,43.018 +79695,18.671,42.06 +79696,20.56,41.069 +79697,13.762,43.855 +79698,15.569,42.983 +79699,17.427,42.081 +79700,19.339,41.151 +79701,12.464,43.763 +79702,14.299,42.946 +79703,16.182,42.103 +79704,18.116,41.234 +79705,11.166,43.671 +79706,13.029,42.91 +79707,14.936,42.126 +79708,16.892,41.317 +79709,9.8708,43.577 +79710,11.759,42.874 +79711,13.69,42.148 +79712,15.665,41.4 +79713,8.5768,43.483 +79714,10.491,42.837 +79715,12.443,42.171 +79716,14.437,41.484 +79717,7.2844,43.388 +79718,9.2225,42.8 +79719,11.196,42.194 +79720,13.206,41.568 +79721,5.9937,43.293 +79722,7.9549,42.764 +79723,9.9476,42.217 +79724,11.974,41.653 +79725,4.7046,43.197 +79726,6.688,42.727 +79727,8.699,42.24 +79728,10.739,41.738 +79729,3.4172,43.101 +79730,5.4217,42.69 +79731,7.4498,42.264 +79732,9.5028,41.824 +79733,2.1315,43.004 +79734,4.156,42.653 +79735,6.2,42.288 +79736,8.2644,41.91 +79737,0.84755,42.907 +79738,2.891,42.616 +79739,4.9496,42.312 +79740,7.0241,41.995 +79741,359.57,42.809 +79742,1.6266,42.579 +79743,3.6986,42.336 +79744,5.7818,42.082 +79745,358.28,42.711 +79746,0.36289,42.541 +79747,2.4469,42.36 +79748,4.5375,42.168 +79749,357.01,42.613 +79750,359.1,42.504 +79751,1.1947,42.385 +79752,3.2913,42.254 +79753,355.73,42.514 +79754,357.84,42.467 +79755,359.94,42.409 +79756,2.0431,42.34 +79757,354.45,42.416 +79758,356.58,42.43 +79759,358.69,42.434 +79760,0.79295,42.426 +79761,353.18,42.317 +79762,355.31,42.393 +79763,357.43,42.458 +79764,359.54,42.512 +79765,351.91,42.218 +79766,354.05,42.357 +79767,356.18,42.483 +79768,358.29,42.598 +79769,350.64,42.119 +79770,352.79,42.32 +79771,354.92,42.508 +79772,357.03,42.684 +79773,349.37,42.02 +79774,351.54,42.283 +79775,353.67,42.533 +79776,355.77,42.77 +79777,348.11,41.921 +79778,350.28,42.246 +79779,352.41,42.558 +79780,354.51,42.855 +79781,346.85,41.822 +79782,349.02,42.21 +79783,351.15,42.583 +79784,353.25,42.94 +79785,345.58,41.723 +79786,347.76,42.174 +79787,349.9,42.607 +79788,351.99,43.024 +79789,344.32,41.624 +79790,346.51,42.138 +79791,348.64,42.632 +79792,350.72,43.109 +79793,343.07,41.526 +79794,345.25,42.102 +79795,347.38,42.657 +79796,349.46,43.192 +79797,341.81,41.428 +79798,344,42.066 +79799,346.12,42.682 +79800,348.19,43.276 +79801,340.56,41.33 +79802,342.74,42.03 +79803,344.86,42.706 +79804,346.92,43.358 +79805,339.31,41.232 +79806,341.49,41.995 +79807,343.6,42.731 +79808,345.64,43.441 +79809,338.06,41.135 +79810,340.23,41.96 +79811,342.34,42.755 +79812,344.37,43.522 +79813,336.81,41.039 +79814,338.98,41.925 +79815,341.07,42.78 +79816,343.09,43.603 +79817,335.56,40.943 +79818,337.73,41.891 +79819,339.81,42.804 +79820,341.81,43.683 +79821,334.32,40.847 +79822,336.48,41.857 +79823,338.55,42.828 +79824,340.54,43.763 +79825,333.08,40.753 +79826,335.23,41.823 +79827,337.28,42.852 +79828,339.25,43.842 +79829,331.84,40.658 +79830,333.98,41.789 +79831,336.02,42.875 +79832,337.97,43.92 +79833,330.6,40.565 +79834,332.73,41.756 +79835,334.75,42.899 +79836,336.69,43.997 +79837,329.37,40.472 +79838,331.48,41.723 +79839,333.49,42.922 +79840,335.4,44.073 +79841,328.14,40.381 +79842,330.24,41.691 +79843,332.22,42.945 +79844,334.11,44.148 +79845,326.9,40.29 +79846,328.99,41.659 +79847,330.96,42.968 +79848,332.82,44.223 +79849,325.68,40.2 +79850,327.74,41.627 +79851,329.69,42.99 +79852,331.53,44.296 +79853,324.45,40.111 +79854,326.5,41.596 +79855,328.42,43.013 +79856,330.24,44.369 +79857,323.22,40.023 +79858,325.25,41.565 +79859,327.15,43.035 +79860,328.94,44.44 +79861,322,39.936 +79862,324.01,41.534 +79863,325.88,43.056 +79864,327.65,44.51 +79865,320.78,39.85 +79866,322.76,41.505 +79867,324.61,43.078 +79868,326.35,44.579 +79869,319.56,39.765 +79870,321.52,41.475 +79871,323.34,43.099 +79872,325.05,44.647 +79873,318.34,39.682 +79874,320.28,41.446 +79875,322.07,43.12 +79876,323.75,44.714 +79877,317.13,39.6 +79878,319.04,41.418 +79879,320.8,43.14 +79880,322.45,44.78 +79881,315.92,39.519 +79882,317.8,41.39 +79883,319.53,43.16 +79884,321.15,44.844 +79885,314.71,39.44 +79886,316.55,41.362 +79887,318.26,43.18 +79888,319.85,44.907 +79889,313.5,39.362 +79890,315.31,41.336 +79891,316.99,43.2 +79892,318.54,44.969 +79893,312.29,39.285 +79894,314.07,41.309 +79895,315.71,43.219 +79896,317.24,45.029 +79897,311.08,39.211 +79898,312.84,41.284 +79899,314.44,43.237 +79900,315.93,45.089 +79901,309.88,39.137 +79902,311.6,41.258 +79903,313.17,43.256 +79904,314.62,45.146 +79905,308.68,39.065 +79906,310.36,41.234 +79907,311.89,43.273 +79908,313.31,45.203 +79909,307.48,38.995 +79910,309.12,41.21 +79911,310.62,43.291 +79912,312,45.258 +79913,306.28,38.927 +79914,307.88,41.187 +79915,309.34,43.308 +79916,310.69,45.311 +79917,305.08,38.86 +79918,306.65,41.164 +79919,308.07,43.324 +79920,309.37,45.363 +79921,303.89,38.795 +79922,305.41,41.142 +79923,306.79,43.34 +79924,308.06,45.414 +79925,302.7,38.732 +79926,304.18,41.121 +79927,305.52,43.356 +79928,306.74,45.463 +79929,301.5,38.671 +79930,302.94,41.1 +79931,304.24,43.371 +79932,305.43,45.51 +79933,300.31,38.611 +79934,301.71,41.08 +79935,302.96,43.386 +79936,304.11,45.556 +79937,299.12,38.554 +79938,300.47,41.061 +79939,301.68,43.4 +79940,302.79,45.6 +79941,297.94,38.499 +79942,299.24,41.042 +79943,300.41,43.414 +79944,301.47,45.643 +79945,296.75,38.445 +79946,298.01,41.024 +79947,299.13,43.427 +79948,300.15,45.684 +79949,295.57,38.394 +79950,296.77,41.007 +79951,297.85,43.44 +79952,298.83,45.723 +79953,294.38,38.345 +79954,295.54,40.99 +79955,296.57,43.452 +79956,297.51,45.761 +79957,293.2,38.297 +79958,294.31,40.975 +79959,295.29,43.463 +79960,296.19,45.797 +79961,292.02,38.252 +79962,293.08,40.96 +79963,294.01,43.475 +79964,294.87,45.832 +79965,290.84,38.21 +79966,291.84,40.945 +79967,292.74,43.485 +79968,293.54,45.864 +79969,289.66,38.169 +79970,290.61,40.932 +79971,291.46,43.495 +79972,292.22,45.895 +79973,288.49,38.13 +79974,289.38,40.919 +79975,290.18,43.505 +79976,290.9,45.925 +79977,287.31,38.094 +79978,288.15,40.907 +79979,288.9,43.514 +79980,289.57,45.952 +79981,286.14,38.06 +79982,286.92,40.896 +79983,287.62,43.522 +79984,288.25,45.978 +79985,284.96,38.029 +79986,285.69,40.886 +79987,286.34,43.53 +79988,286.92,46.002 +79989,283.79,38 +79990,284.46,40.876 +79991,285.05,43.537 +79992,285.59,46.024 +79993,282.62,37.973 +79994,283.23,40.867 +79995,283.77,43.544 +79996,284.27,46.045 +79997,281.44,37.948 +79998,282,40.859 +79999,282.49,43.55 +80000,282.94,46.064 +80001,280.27,37.926 +80002,280.77,40.852 +80003,281.21,43.556 +80004,281.61,46.081 +80005,279.1,37.906 +80006,279.54,40.846 +80007,279.93,43.561 +80008,280.28,46.096 +80009,277.93,37.889 +80010,278.31,40.84 +80011,278.65,43.565 +80012,278.95,46.109 +80013,276.76,37.874 +80014,277.08,40.835 +80015,277.37,43.569 +80016,277.63,46.121 +80017,275.59,37.862 +80018,275.85,40.831 +80019,276.09,43.572 +80020,276.3,46.13 +80021,274.42,37.852 +80022,274.63,40.828 +80023,274.81,43.575 +80024,274.97,46.138 +80025,273.25,37.844 +80026,273.4,40.826 +80027,273.52,43.577 +80028,273.64,46.144 +80029,272.08,37.839 +80030,272.17,40.824 +80031,272.24,43.579 +80032,272.31,46.148 +80033,270.91,37.837 +80034,270.94,40.823 +80035,270.96,43.58 +80036,270.98,46.151 +80037,269.75,37.836 +80038,269.71,40.823 +80039,269.68,43.58 +80040,269.65,46.151 +80041,268.58,37.839 +80042,268.48,40.824 +80043,268.4,43.58 +80044,268.32,46.15 +80045,267.41,37.843 +80046,267.25,40.826 +80047,267.12,43.579 +80048,266.99,46.147 +80049,266.24,37.851 +80050,266.02,40.829 +80051,265.83,43.577 +80052,265.67,46.142 +80053,265.07,37.86 +80054,264.79,40.832 +80055,264.55,43.575 +80056,264.34,46.135 +80057,263.9,37.872 +80058,263.57,40.836 +80059,263.27,43.573 +80060,263.01,46.127 +80061,262.73,37.887 +80062,262.34,40.841 +80063,261.99,43.57 +80064,261.68,46.116 +80065,261.56,37.904 +80066,261.11,40.847 +80067,260.71,43.566 +80068,260.35,46.104 +80069,260.39,37.923 +80070,259.88,40.854 +80071,259.43,43.562 +80072,259.02,46.09 +80073,259.22,37.945 +80074,258.65,40.861 +80075,258.15,43.557 +80076,257.7,46.074 +80077,258.05,37.969 +80078,257.42,40.869 +80079,256.87,43.551 +80080,256.37,46.056 +80081,256.87,37.996 +80082,256.19,40.879 +80083,255.59,43.545 +80084,255.04,46.037 +80085,255.7,38.025 +80086,254.96,40.888 +80087,254.3,43.538 +80088,253.72,46.016 +80089,254.52,38.056 +80090,253.73,40.899 +80091,253.02,43.531 +80092,252.39,45.993 +80093,253.35,38.09 +80094,252.5,40.91 +80095,251.74,43.524 +80096,251.06,45.968 +80097,252.17,38.125 +80098,251.27,40.923 +80099,250.46,43.515 +80100,249.74,45.942 +80101,251,38.164 +80102,250.04,40.936 +80103,249.18,43.506 +80104,248.41,45.913 +80105,249.82,38.204 +80106,248.8,40.949 +80107,247.9,43.497 +80108,247.09,45.883 +80109,248.64,38.246 +80110,247.57,40.964 +80111,246.63,43.487 +80112,245.77,45.852 +80113,247.46,38.291 +80114,246.34,40.979 +80115,245.35,43.477 +80116,244.44,45.818 +80117,246.28,38.338 +80118,245.11,40.995 +80119,244.07,43.466 +80120,243.12,45.783 +80121,245.09,38.387 +80122,243.88,41.012 +80123,242.79,43.454 +80124,241.8,45.747 +80125,243.91,38.438 +80126,242.64,41.029 +80127,241.51,43.442 +80128,240.48,45.708 +80129,242.72,38.491 +80130,241.41,41.047 +80131,240.23,43.43 +80132,239.16,45.668 +80133,241.53,38.547 +80134,240.17,41.066 +80135,238.96,43.417 +80136,237.84,45.626 +80137,240.35,38.604 +80138,238.94,41.086 +80139,237.68,43.403 +80140,236.52,45.583 +80141,239.16,38.663 +80142,237.71,41.106 +80143,236.4,43.389 +80144,235.21,45.538 +80145,237.96,38.724 +80146,236.47,41.127 +80147,235.12,43.374 +80148,233.89,45.492 +80149,236.77,38.787 +80150,235.23,41.149 +80151,233.85,43.359 +80152,232.58,45.444 +80153,235.57,38.852 +80154,234,41.171 +80155,232.57,43.344 +80156,231.26,45.394 +80157,234.38,38.918 +80158,232.76,41.194 +80159,231.3,43.328 +80160,229.95,45.343 +80161,233.18,38.987 +80162,231.52,41.217 +80163,230.02,43.312 +80164,228.64,45.291 +80165,231.98,39.057 +80166,230.29,41.241 +80167,228.75,43.295 +80168,227.33,45.237 +80169,230.78,39.128 +80170,229.05,41.266 +80171,227.47,43.278 +80172,226.02,45.182 +80173,229.57,39.202 +80174,227.81,41.292 +80175,226.2,43.26 +80176,224.71,45.125 +80177,228.37,39.277 +80178,226.57,41.318 +80179,224.93,43.242 +80180,223.4,45.067 +80181,227.16,39.353 +80182,225.33,41.344 +80183,223.65,43.224 +80184,222.09,45.007 +80185,225.95,39.431 +80186,224.09,41.371 +80187,222.38,43.205 +80188,220.79,44.946 +80189,224.74,39.51 +80190,222.85,41.399 +80191,221.11,43.186 +80192,219.48,44.884 +80193,223.53,39.591 +80194,221.61,41.427 +80195,219.84,43.166 +80196,218.18,44.821 +80197,222.31,39.673 +80198,220.37,41.456 +80199,218.56,43.147 +80200,216.88,44.756 +80201,221.09,39.756 +80202,219.12,41.485 +80203,217.29,43.126 +80204,215.58,44.69 +80205,219.87,39.841 +80206,217.88,41.515 +80207,216.02,43.106 +80208,214.28,44.623 +80209,218.65,39.927 +80210,216.64,41.545 +80211,214.75,43.085 +80212,212.99,44.555 +80213,217.43,40.014 +80214,215.39,41.576 +80215,213.49,43.064 +80216,211.69,44.486 +80217,216.2,40.102 +80218,214.15,41.607 +80219,212.22,43.042 +80220,210.4,44.415 +80221,214.98,40.191 +80222,212.9,41.639 +80223,210.95,43.021 +80224,209.1,44.344 +80225,213.75,40.281 +80226,211.65,41.671 +80227,209.68,42.999 +80228,207.81,44.271 +80229,212.52,40.372 +80230,210.41,41.703 +80231,208.41,42.976 +80232,206.52,44.198 +80233,211.28,40.464 +80234,209.16,41.736 +80235,207.15,42.954 +80236,205.23,44.123 +80237,210.05,40.557 +80238,207.91,41.769 +80239,205.88,42.931 +80240,203.95,44.048 +80241,208.81,40.65 +80242,206.66,41.803 +80243,204.62,42.908 +80244,202.66,43.972 +80245,207.57,40.745 +80246,205.41,41.836 +80247,203.35,42.885 +80248,201.38,43.894 +80249,206.33,40.84 +80250,204.16,41.871 +80251,202.09,42.862 +80252,200.1,43.816 +80253,205.09,40.935 +80254,202.91,41.905 +80255,200.83,42.839 +80256,198.82,43.738 +80257,203.84,41.032 +80258,201.66,41.94 +80259,199.56,42.815 +80260,197.54,43.658 +80261,202.59,41.128 +80262,200.41,41.975 +80263,198.3,42.791 +80264,196.27,43.578 +80265,201.34,41.226 +80266,199.15,42.011 +80267,197.04,42.767 +80268,194.99,43.497 +80269,200.09,41.323 +80270,197.9,42.046 +80271,195.78,42.743 +80272,193.72,43.416 +80273,198.84,41.422 +80274,196.65,42.082 +80275,194.52,42.719 +80276,192.45,43.334 +80277,197.58,41.52 +80278,195.39,42.118 +80279,193.26,42.695 +80280,191.18,43.251 +80281,196.32,41.619 +80282,194.13,42.155 +80283,192,42.671 +80284,189.91,43.168 +80285,195.06,41.718 +80286,192.88,42.191 +80287,190.74,42.646 +80288,188.65,43.085 +80289,193.8,41.817 +80290,191.62,42.228 +80291,189.48,42.622 +80292,187.38,43.001 +80293,192.54,41.916 +80294,190.36,42.265 +80295,188.22,42.598 +80296,186.12,42.916 +80297,191.27,42.016 +80298,189.1,42.301 +80299,186.97,42.573 +80300,184.86,42.832 +80301,190,42.115 +80302,187.84,42.339 +80303,185.71,42.549 +80304,183.6,42.747 +80305,188.73,42.215 +80306,186.58,42.376 +80307,184.46,42.525 +80308,182.35,42.662 +80309,187.46,42.314 +80310,185.32,42.413 +80311,183.2,42.5 +80312,181.09,42.576 +80313,186.19,42.413 +80314,184.06,42.45 +80315,181.95,42.476 +80316,179.84,42.491 +80317,184.91,42.512 +80318,182.8,42.488 +80319,180.69,42.452 +80320,178.59,42.405 +80321,183.64,42.611 +80322,181.54,42.525 +80323,179.44,42.428 +80324,177.34,42.32 +80325,182.36,42.71 +80326,180.27,42.563 +80327,178.19,42.404 +80328,176.1,42.234 +80329,181.08,42.809 +80330,179.01,42.6 +80331,176.94,42.38 +80332,174.85,42.149 +80333,179.79,42.907 +80334,177.75,42.638 +80335,175.68,42.357 +80336,173.61,42.063 +80337,178.51,43.005 +80338,176.48,42.675 +80339,174.43,42.333 +80340,172.37,41.978 +80341,177.22,43.102 +80342,175.21,42.713 +80343,173.18,42.31 +80344,171.13,41.893 +80345,175.94,43.199 +80346,173.95,42.75 +80347,171.93,42.286 +80348,169.89,41.808 +80349,174.65,43.295 +80350,172.68,42.787 +80351,170.69,42.263 +80352,168.66,41.723 +80353,173.35,43.391 +80354,171.41,42.825 +80355,169.44,42.241 +80356,167.43,41.639 +80357,172.06,43.486 +80358,170.14,42.862 +80359,168.19,42.218 +80360,166.2,41.555 +80361,170.77,43.581 +80362,168.87,42.899 +80363,166.94,42.196 +80364,164.97,41.471 +80365,169.47,43.675 +80366,167.6,42.936 +80367,165.7,42.174 +80368,163.74,41.388 +80369,168.17,43.768 +80370,166.33,42.973 +80371,164.45,42.152 +80372,162.52,41.305 +80373,166.87,43.861 +80374,165.06,43.009 +80375,163.2,42.13 +80376,161.29,41.223 +80377,165.57,43.953 +80378,163.79,43.046 +80379,161.96,42.109 +80380,160.07,41.142 +80381,164.27,44.044 +80382,162.52,43.082 +80383,160.72,42.088 +80384,158.85,41.061 +80385,162.97,44.134 +80386,161.25,43.118 +80387,159.47,42.068 +80388,157.64,40.981 +80389,161.66,44.223 +80390,159.97,43.154 +80391,158.23,42.048 +80392,156.42,40.902 +80393,160.36,44.311 +80394,158.7,43.19 +80395,156.99,42.028 +80396,155.21,40.824 +80397,159.05,44.399 +80398,157.43,43.225 +80399,155.74,42.008 +80400,154,40.746 +80401,157.74,44.485 +80402,156.15,43.26 +80403,154.5,41.989 +80404,152.79,40.669 +80405,156.43,44.57 +80406,154.88,43.295 +80407,153.26,41.971 +80408,151.58,40.594 +80409,155.12,44.655 +80410,153.6,43.33 +80411,152.02,41.953 +80412,150.37,40.519 +80413,153.8,44.738 +80414,152.32,43.364 +80415,150.78,41.935 +80416,149.17,40.446 +80417,152.49,44.82 +80418,151.05,43.398 +80419,149.54,41.917 +80420,147.96,40.373 +80421,151.17,44.901 +80422,149.77,43.432 +80423,148.3,41.901 +80424,146.76,40.302 +80425,149.86,44.98 +80426,148.49,43.465 +80427,147.06,41.884 +80428,145.56,40.231 +80429,148.54,45.059 +80430,147.21,43.498 +80431,145.83,41.868 +80432,144.37,40.163 +80433,147.22,45.136 +80434,145.93,43.531 +80435,144.59,41.853 +80436,143.17,40.095 +80437,145.9,45.212 +80438,144.66,43.563 +80439,143.35,41.838 +80440,141.98,40.029 +80441,144.58,45.286 +80442,143.38,43.595 +80443,142.11,41.824 +80444,140.78,39.964 +80445,143.26,45.36 +80446,142.1,43.626 +80447,140.88,41.81 +80448,139.59,39.9 +80449,141.94,45.432 +80450,140.81,43.658 +80451,139.64,41.797 +80452,138.4,39.838 +80453,140.61,45.502 +80454,139.53,43.688 +80455,138.4,41.785 +80456,137.21,39.778 +80457,139.29,45.571 +80458,138.25,43.719 +80459,137.17,41.773 +80460,136.03,39.719 +80461,137.96,45.639 +80462,136.97,43.749 +80463,135.93,41.761 +80464,134.84,39.662 +80465,136.64,45.705 +80466,135.69,43.778 +80467,134.7,41.75 +80468,133.66,39.606 +80469,135.31,45.77 +80470,134.41,43.807 +80471,133.46,41.74 +80472,132.47,39.552 +80473,133.98,45.833 +80474,133.12,43.836 +80475,132.23,41.73 +80476,131.29,39.5 +80477,132.66,45.895 +80478,131.84,43.864 +80479,131,41.722 +80480,130.11,39.449 +80481,131.33,45.955 +80482,130.56,43.892 +80483,129.76,41.713 +80484,128.93,39.401 +80485,130,46.014 +80486,129.27,43.919 +80487,128.53,41.706 +80488,127.75,39.354 +80489,128.67,46.071 +80490,127.99,43.945 +80491,127.3,41.699 +80492,126.57,39.309 +80493,127.34,46.126 +80494,126.71,43.972 +80495,126.06,41.692 +80496,125.4,39.266 +80497,126,46.18 +80498,125.42,43.997 +80499,124.83,41.687 +80500,124.22,39.225 +80501,124.67,46.232 +80502,124.14,44.023 +80503,123.6,41.682 +80504,123.05,39.185 +80505,123.34,46.283 +80506,122.85,44.047 +80507,122.36,41.678 +80508,121.87,39.148 +80509,122.01,46.332 +80510,121.57,44.071 +80511,121.13,41.674 +80512,120.7,39.113 +80513,120.67,46.379 +80514,120.28,44.095 +80515,119.9,41.671 +80516,119.52,39.08 +80517,119.34,46.425 +80518,119,44.118 +80519,118.67,41.669 +80520,118.35,39.049 +80521,118.01,46.468 +80522,117.71,44.141 +80523,117.43,41.668 +80524,117.18,39.021 +80525,116.67,46.51 +80526,116.43,44.163 +80527,116.2,41.667 +80528,116.01,38.994 +80529,115.34,46.551 +80530,115.14,44.184 +80531,114.97,41.668 +80532,114.84,38.97 +80533,114,46.59 +80534,113.86,44.205 +80535,113.74,41.669 +80536,113.67,38.947 +80537,112.67,46.626 +80538,112.57,44.226 +80539,112.51,41.67 +80540,112.5,38.927 +80541,111.33,46.662 +80542,111.28,44.245 +80543,111.27,41.673 +80544,111.33,38.909 +80545,110,46.695 +80546,110,44.265 +80547,110.04,41.676 +80548,110.15,38.894 +80549,108.66,46.727 +80550,108.71,44.283 +80551,108.81,41.68 +80552,108.98,38.881 +80553,107.33,46.756 +80554,107.42,44.301 +80555,107.58,41.685 +80556,107.81,38.87 +80557,105.99,46.784 +80558,106.14,44.319 +80559,106.35,41.69 +80560,106.64,38.861 +80561,104.66,46.811 +80562,104.85,44.336 +80563,105.11,41.696 +80564,105.47,38.855 +80565,103.33,46.835 +80566,103.57,44.352 +80567,103.88,41.703 +80568,104.3,38.851 +80569,101.99,46.858 +80570,102.28,44.368 +80571,102.65,41.711 +80572,103.13,38.849 +80573,100.66,46.879 +80574,100.99,44.383 +80575,101.42,41.72 +80576,101.96,38.85 +80577,99.321,46.898 +80578,99.706,44.398 +80579,100.18,41.729 +80580,100.79,38.853 +80581,97.987,46.915 +80582,98.42,44.412 +80583,98.95,41.74 +80584,99.616,38.858 +80585,96.653,46.931 +80586,97.134,44.426 +80587,97.717,41.751 +80588,98.443,38.866 +80589,95.319,46.944 +80590,95.848,44.438 +80591,96.484,41.762 +80592,97.27,38.876 +80593,93.986,46.956 +80594,94.562,44.451 +80595,95.25,41.775 +80596,96.095,38.889 +80597,92.653,46.966 +80598,93.276,44.462 +80599,94.016,41.788 +80600,94.92,38.904 +80601,91.32,46.974 +80602,91.99,44.474 +80603,92.782,41.802 +80604,93.745,38.921 +80605,89.988,46.981 +80606,90.704,44.484 +80607,91.547,41.817 +80608,92.568,38.941 +80609,88.657,46.986 +80610,89.419,44.494 +80611,90.313,41.833 +80612,91.39,38.963 +80613,87.325,46.988 +80614,88.133,44.504 +80615,89.078,41.85 +80616,90.212,38.987 +80617,85.995,46.989 +80618,86.848,44.512 +80619,87.842,41.867 +80620,89.032,39.014 +80621,84.665,46.989 +80622,85.563,44.521 +80623,86.606,41.885 +80624,87.851,39.043 +80625,83.335,46.986 +80626,84.278,44.528 +80627,85.37,41.904 +80628,86.669,39.074 +80629,82.006,46.982 +80630,82.993,44.535 +80631,84.134,41.923 +80632,85.486,39.108 +80633,80.678,46.976 +80634,81.709,44.542 +80635,82.897,41.944 +80636,84.301,39.144 +80637,79.35,46.969 +80638,80.425,44.548 +80639,81.659,41.965 +80640,83.115,39.182 +80641,78.024,46.959 +80642,79.141,44.553 +80643,80.422,41.987 +80644,81.927,39.222 +80645,76.698,46.948 +80646,77.857,44.558 +80647,79.183,42.009 +80648,80.739,39.265 +80649,75.372,46.935 +80650,76.573,44.563 +80651,77.945,42.033 +80652,79.548,39.31 +80653,74.048,46.921 +80654,75.29,44.566 +80655,76.705,42.057 +80656,78.356,39.357 +80657,72.725,46.904 +80658,74.007,44.57 +80659,75.466,42.082 +80660,77.163,39.406 +80661,71.402,46.886 +80662,72.725,44.572 +80663,74.225,42.107 +80664,75.967,39.457 +80665,70.08,46.867 +80666,71.443,44.575 +80667,72.985,42.133 +80668,74.77,39.511 +80669,68.76,46.846 +80670,70.161,44.576 +80671,71.743,42.16 +80672,73.572,39.566 +80673,67.44,46.823 +80674,68.879,44.577 +80675,70.502,42.188 +80676,72.371,39.624 +80677,66.121,46.798 +80678,67.598,44.578 +80679,69.259,42.216 +80680,71.169,39.683 +80681,64.804,46.772 +80682,66.317,44.578 +80683,68.016,42.245 +80684,69.965,39.745 +80685,63.487,46.745 +80686,65.037,44.578 +80687,66.773,42.275 +80688,68.759,39.808 +80689,62.172,46.716 +80690,63.756,44.577 +80691,65.529,42.305 +80692,67.551,39.874 +80693,60.858,46.685 +80694,62.477,44.576 +80695,64.284,42.336 +80696,66.341,39.941 +80697,59.545,46.653 +80698,61.197,44.574 +80699,63.039,42.368 +80700,65.129,40.01 +80701,58.233,46.619 +80702,59.919,44.572 +80703,61.793,42.4 +80704,63.915,40.081 +80705,56.922,46.584 +80706,58.64,44.569 +80707,60.546,42.433 +80708,62.699,40.154 +80709,55.613,46.547 +80710,57.362,44.566 +80711,59.299,42.467 +80712,61.481,40.228 +80713,54.305,46.509 +80714,56.085,44.562 +80715,58.051,42.501 +80716,60.26,40.304 +80717,52.998,46.47 +80718,54.807,44.558 +80719,56.802,42.536 +80720,59.038,40.382 +80721,51.693,46.429 +80722,53.531,44.554 +80723,55.553,42.571 +80724,57.814,40.462 +80725,50.389,46.387 +80726,52.255,44.549 +80727,54.303,42.607 +80728,56.587,40.542 +80729,49.086,46.343 +80730,50.979,44.544 +80731,53.053,42.643 +80732,55.359,40.625 +80733,47.785,46.298 +80734,49.704,44.538 +80735,51.801,42.68 +80736,54.128,40.709 +80737,46.486,46.252 +80738,48.429,44.532 +80739,50.549,42.718 +80740,52.895,40.794 +80741,45.188,46.205 +80742,47.155,44.525 +80743,49.297,42.756 +80744,51.66,40.881 +80745,43.891,46.156 +80746,45.881,44.519 +80747,48.043,42.794 +80748,50.422,40.969 +80749,42.596,46.107 +80750,44.608,44.512 +80751,46.789,42.833 +80752,49.183,41.059 +80753,41.302,46.056 +80754,43.335,44.504 +80755,45.534,42.873 +80756,47.941,41.149 +80757,40.01,46.004 +80758,42.063,44.496 +80759,44.279,42.913 +80760,46.697,41.241 +80761,38.72,45.95 +80762,40.791,44.488 +80763,43.023,42.953 +80764,45.451,41.334 +80765,37.431,45.896 +80766,39.52,44.48 +80767,41.765,42.994 +80768,44.202,41.429 +80769,36.144,45.841 +80770,38.249,44.471 +80771,40.508,43.035 +80772,42.951,41.524 +80773,34.859,45.785 +80774,36.979,44.462 +80775,39.249,43.077 +80776,41.699,41.62 +80777,33.575,45.727 +80778,35.71,44.453 +80779,37.99,43.119 +80780,40.444,41.717 +80781,32.293,45.669 +80782,34.441,44.444 +80783,36.73,43.161 +80784,39.186,41.815 +80785,31.012,45.61 +80786,33.173,44.434 +80787,35.469,43.204 +80788,37.927,41.914 +80789,29.734,45.55 +80790,31.905,44.424 +80791,34.208,43.247 +80792,36.665,42.014 +80793,28.457,45.489 +80794,30.638,44.414 +80795,32.945,43.291 +80796,35.402,42.115 +80797,27.182,45.428 +80798,29.371,44.403 +80799,31.682,43.335 +80800,34.136,42.216 +80801,25.909,45.365 +80802,28.105,44.393 +80803,30.419,43.379 +80804,32.868,42.318 +80805,24.637,45.302 +80806,26.84,44.382 +80807,29.154,43.423 +80808,31.598,42.421 +80809,23.368,45.238 +80810,25.575,44.371 +80811,27.889,43.468 +80812,30.326,42.524 +80813,22.1,45.174 +80814,24.311,44.36 +80815,26.623,43.513 +80816,29.051,42.628 +80817,20.834,45.109 +80818,23.047,44.349 +80819,25.356,43.558 +80820,27.775,42.732 +80821,19.57,45.043 +80822,21.784,44.338 +80823,24.089,43.603 +80824,26.496,42.837 +80825,18.308,44.977 +80826,20.521,44.327 +80827,22.82,43.649 +80828,25.216,42.942 +80829,17.047,44.91 +80830,19.259,44.315 +80831,21.551,43.695 +80832,23.933,43.047 +80833,15.789,44.843 +80834,17.998,44.303 +80835,20.282,43.741 +80836,22.649,43.153 +80837,14.532,44.775 +80838,16.737,44.292 +80839,19.011,43.787 +80840,21.362,43.258 +80841,13.278,44.707 +80842,15.477,44.28 +80843,17.74,43.833 +80844,20.074,43.364 +80845,12.025,44.639 +80846,14.217,44.269 +80847,16.468,43.879 +80848,18.783,43.471 +80849,10.774,44.571 +80850,12.958,44.257 +80851,15.195,43.926 +80852,17.491,43.577 +80853,9.525,44.502 +80854,11.699,44.245 +80855,13.922,43.973 +80856,16.197,43.683 +80857,8.278,44.433 +80858,10.442,44.233 +80859,12.648,44.019 +80860,14.901,43.79 +80861,7.0329,44.363 +80862,9.1842,44.222 +80863,11.373,44.066 +80864,13.603,43.896 +80865,5.7897,44.294 +80866,7.9274,44.21 +80867,10.098,44.113 +80868,12.303,44.002 +80869,4.5485,44.225 +80870,6.6712,44.199 +80871,8.8217,44.16 +80872,11.002,44.108 +80873,3.3091,44.155 +80874,5.4155,44.187 +80875,7.5449,44.207 +80876,9.6989,44.214 +80877,2.0717,44.086 +80878,4.1604,44.176 +80879,6.2674,44.254 +80880,8.3939,44.32 +80881,0.8362,44.016 +80882,2.9059,44.164 +80883,4.9893,44.301 +80884,7.0873,44.425 +80885,359.6,43.947 +80886,1.6519,44.153 +80887,3.7104,44.348 +80888,5.7791,44.53 +80889,358.37,43.878 +80890,0.39843,44.142 +80891,2.4309,44.395 +80892,4.4692,44.635 +80893,357.14,43.809 +80894,359.15,44.131 +80895,1.1508,44.441 +80896,3.1576,44.739 +80897,355.91,43.74 +80898,357.89,44.12 +80899,359.87,44.488 +80900,1.8445,44.843 +80901,354.69,43.672 +80902,356.64,44.11 +80903,358.59,44.535 +80904,0.52992,44.946 +80905,353.46,43.603 +80906,355.39,44.099 +80907,357.31,44.582 +80908,359.21,45.049 +80909,352.24,43.536 +80910,354.14,44.089 +80911,356.02,44.628 +80912,357.9,45.152 +80913,351.02,43.468 +80914,352.89,44.079 +80915,354.74,44.674 +80916,356.58,45.253 +80917,349.8,43.401 +80918,351.64,44.069 +80919,353.46,44.721 +80920,355.26,45.355 +80921,348.58,43.335 +80922,350.39,44.06 +80923,352.17,44.767 +80924,353.93,45.455 +80925,347.37,43.269 +80926,349.14,44.051 +80927,350.89,44.813 +80928,352.61,45.555 +80929,346.16,43.204 +80930,347.89,44.042 +80931,349.6,44.858 +80932,351.29,45.654 +80933,344.94,43.139 +80934,346.64,44.033 +80935,348.32,44.904 +80936,349.96,45.752 +80937,343.73,43.075 +80938,345.4,44.025 +80939,347.03,44.949 +80940,348.63,45.849 +80941,342.53,43.012 +80942,344.15,44.016 +80943,345.74,44.994 +80944,347.31,45.945 +80945,341.32,42.949 +80946,342.9,44.009 +80947,344.45,45.039 +80948,345.98,46.041 +80949,340.11,42.887 +80950,341.66,44.001 +80951,343.17,45.084 +80952,344.65,46.136 +80953,338.91,42.826 +80954,340.41,43.994 +80955,341.88,45.128 +80956,343.31,46.229 +80957,337.71,42.766 +80958,339.17,43.988 +80959,340.59,45.172 +80960,341.98,46.322 +80961,336.51,42.707 +80962,337.92,43.981 +80963,339.3,45.216 +80964,340.65,46.414 +80965,335.31,42.649 +80966,336.68,43.975 +80967,338.01,45.26 +80968,339.31,46.504 +80969,334.11,42.592 +80970,335.43,43.97 +80971,336.72,45.303 +80972,337.98,46.594 +80973,332.92,42.536 +80974,334.19,43.965 +80975,335.43,45.346 +80976,336.64,46.682 +80977,331.72,42.482 +80978,332.94,43.96 +80979,334.14,45.388 +80980,335.3,46.769 +80981,330.53,42.428 +80982,331.7,43.956 +80983,332.84,45.431 +80984,333.96,46.855 +80985,329.34,42.375 +80986,330.46,43.952 +80987,331.55,45.473 +80988,332.62,46.94 +80989,328.15,42.324 +80990,329.21,43.949 +80991,330.26,45.514 +80992,331.28,47.023 +80993,326.96,42.274 +80994,327.97,43.946 +80995,328.97,45.555 +80996,329.94,47.106 +80997,325.77,42.226 +80998,326.73,43.944 +80999,327.67,45.596 +81000,328.6,47.187 +81001,324.58,42.178 +81002,325.49,43.942 +81003,326.38,45.636 +81004,327.26,47.266 +81005,323.39,42.132 +81006,324.24,43.941 +81007,325.08,45.676 +81008,325.91,47.345 +81009,322.21,42.088 +81010,323,43.94 +81011,323.79,45.716 +81012,324.57,47.422 +81013,321.03,42.045 +81014,321.76,43.94 +81015,322.5,45.755 +81016,323.23,47.497 +81017,319.84,42.004 +81018,320.52,43.941 +81019,321.2,45.794 +81020,321.88,47.571 +81021,318.66,41.964 +81022,319.28,43.942 +81023,319.91,45.832 +81024,320.54,47.644 +81025,317.48,41.925 +81026,318.04,43.943 +81027,318.61,45.87 +81028,319.19,47.716 +81029,316.3,41.889 +81030,316.8,43.945 +81031,317.31,45.907 +81032,317.84,47.785 +81033,315.12,41.854 +81034,315.56,43.948 +81035,316.02,45.944 +81036,316.5,47.854 +81037,313.94,41.82 +81038,314.32,43.951 +81039,314.72,45.981 +81040,315.15,47.921 +81041,312.76,41.789 +81042,313.08,43.955 +81043,313.43,46.017 +81044,313.8,47.986 +81045,311.58,41.759 +81046,311.84,43.96 +81047,312.13,46.052 +81048,312.45,48.05 +81049,310.4,41.731 +81050,310.59,43.965 +81051,310.83,46.087 +81052,311.11,48.112 +81053,309.23,41.704 +81054,309.35,43.97 +81055,309.54,46.121 +81056,309.76,48.172 +81057,308.05,41.68 +81058,308.11,43.977 +81059,308.24,46.155 +81060,308.41,48.231 +81061,306.87,41.657 +81062,306.87,43.984 +81063,306.94,46.189 +81064,307.06,48.289 +81065,305.7,41.636 +81066,305.63,43.991 +81067,305.64,46.222 +81068,305.71,48.345 +81069,304.52,41.618 +81070,304.39,44 +81071,304.35,46.254 +81072,304.36,48.399 +81073,303.34,41.601 +81074,303.15,44.009 +81075,303.05,46.286 +81076,303.01,48.451 +81077,302.17,41.586 +81078,301.91,44.018 +81079,301.75,46.317 +81080,301.67,48.502 +81081,300.99,41.573 +81082,300.67,44.029 +81083,300.45,46.348 +81084,300.32,48.551 +81085,299.82,41.562 +81086,299.43,44.04 +81087,299.16,46.379 +81088,298.97,48.599 +81089,298.64,41.553 +81090,298.19,44.051 +81091,297.86,46.408 +81092,297.62,48.645 +81093,297.46,41.546 +81094,296.95,44.064 +81095,296.56,46.437 +81096,296.27,48.689 +81097,296.29,41.541 +81098,295.71,44.077 +81099,295.26,46.466 +81100,294.92,48.731 +81101,295.11,41.539 +81102,294.47,44.091 +81103,293.97,46.494 +81104,293.57,48.772 +81105,293.93,41.538 +81106,293.22,44.105 +81107,292.67,46.522 +81108,292.23,48.811 +81109,292.75,41.539 +81110,291.98,44.12 +81111,291.37,46.549 +81112,290.88,48.848 +81113,291.57,41.543 +81114,290.74,44.136 +81115,290.07,46.575 +81116,289.53,48.884 +81117,290.39,41.548 +81118,289.5,44.153 +81119,288.77,46.601 +81120,288.18,48.918 +81121,289.21,41.556 +81122,288.25,44.17 +81123,287.48,46.626 +81124,286.84,48.95 +81125,288.03,41.566 +81126,287.01,44.188 +81127,286.18,46.651 +81128,285.49,48.98 +81129,286.85,41.578 +81130,285.77,44.207 +81131,284.88,46.675 +81132,284.14,49.009 +81133,285.67,41.592 +81134,284.52,44.226 +81135,283.59,46.698 +81136,282.8,49.036 +81137,284.48,41.609 +81138,283.28,44.246 +81139,282.29,46.721 +81140,281.45,49.061 +81141,283.3,41.627 +81142,282.04,44.267 +81143,280.99,46.744 +81144,280.11,49.085 +81145,282.11,41.648 +81146,280.79,44.288 +81147,279.69,46.766 +81148,278.76,49.106 +81149,280.93,41.671 +81150,279.55,44.311 +81151,278.4,46.787 +81152,277.42,49.126 +81153,279.74,41.695 +81154,278.3,44.334 +81155,277.1,46.808 +81156,276.08,49.145 +81157,278.55,41.722 +81158,277.06,44.357 +81159,275.81,46.828 +81160,274.74,49.161 +81161,277.36,41.752 +81162,275.81,44.382 +81163,274.51,46.847 +81164,273.39,49.176 +81165,276.17,41.783 +81166,274.56,44.407 +81167,273.21,46.866 +81168,272.05,49.189 +81169,274.97,41.816 +81170,273.32,44.432 +81171,271.92,46.885 +81172,270.71,49.201 +81173,273.78,41.852 +81174,272.07,44.459 +81175,270.62,46.903 +81176,269.37,49.211 +81177,272.58,41.889 +81178,270.82,44.486 +81179,269.33,46.92 +81180,268.04,49.219 +81181,271.38,41.929 +81182,269.57,44.514 +81183,268.03,46.937 +81184,266.7,49.225 +81185,270.18,41.971 +81186,268.32,44.542 +81187,266.74,46.953 +81188,265.36,49.23 +81189,268.98,42.015 +81190,267.07,44.572 +81191,265.44,46.969 +81192,264.03,49.233 +81193,267.78,42.061 +81194,265.82,44.601 +81195,264.15,46.984 +81196,262.69,49.234 +81197,266.57,42.109 +81198,264.57,44.632 +81199,262.86,46.998 +81200,261.36,49.234 +81201,265.36,42.158 +81202,263.32,44.663 +81203,261.56,47.013 +81204,260.03,49.232 +81205,264.16,42.21 +81206,262.07,44.695 +81207,260.27,47.026 +81208,258.69,49.229 +81209,262.95,42.264 +81210,260.81,44.728 +81211,258.98,47.039 +81212,257.36,49.224 +81213,261.73,42.32 +81214,259.56,44.761 +81215,257.69,47.052 +81216,256.03,49.217 +81217,260.52,42.378 +81218,258.31,44.794 +81219,256.39,47.064 +81220,254.71,49.209 +81221,259.3,42.437 +81222,257.05,44.829 +81223,255.1,47.075 +81224,253.38,49.199 +81225,258.08,42.499 +81226,255.8,44.864 +81227,253.81,47.086 +81228,252.05,49.188 +81229,256.86,42.562 +81230,254.54,44.9 +81231,252.52,47.096 +81232,250.73,49.175 +81233,255.64,42.627 +81234,253.29,44.936 +81235,251.23,47.106 +81236,249.4,49.161 +81237,254.41,42.694 +81238,252.03,44.973 +81239,249.94,47.116 +81240,248.08,49.145 +81241,253.19,42.763 +81242,250.77,45.01 +81243,248.65,47.125 +81244,246.76,49.127 +81245,251.96,42.833 +81246,249.51,45.048 +81247,247.36,47.133 +81248,245.44,49.109 +81249,250.73,42.905 +81250,248.25,45.087 +81251,246.07,47.142 +81252,244.12,49.088 +81253,249.49,42.979 +81254,246.99,45.126 +81255,244.79,47.149 +81256,242.81,49.067 +81257,248.26,43.054 +81258,245.73,45.166 +81259,243.5,47.156 +81260,241.49,49.044 +81261,247.02,43.131 +81262,244.47,45.206 +81263,242.21,47.163 +81264,240.18,49.019 +81265,245.78,43.209 +81266,243.21,45.247 +81267,240.93,47.169 +81268,238.87,48.994 +81269,244.53,43.289 +81270,241.95,45.288 +81271,239.64,47.175 +81272,237.55,48.967 +81273,243.29,43.371 +81274,240.68,45.33 +81275,238.35,47.181 +81276,236.24,48.938 +81277,242.04,43.454 +81278,239.42,45.373 +81279,237.07,47.186 +81280,234.94,48.909 +81281,240.79,43.538 +81282,238.15,45.415 +81283,235.78,47.191 +81284,233.63,48.878 +81285,239.54,43.624 +81286,236.89,45.459 +81287,234.5,47.195 +81288,232.33,48.846 +81289,238.29,43.711 +81290,235.62,45.503 +81291,233.22,47.199 +81292,231.02,48.813 +81293,237.03,43.799 +81294,234.35,45.547 +81295,231.93,47.202 +81296,229.72,48.778 +81297,235.77,43.888 +81298,233.08,45.592 +81299,230.65,47.206 +81300,228.42,48.743 +81301,234.51,43.979 +81302,231.82,45.637 +81303,229.37,47.209 +81304,227.12,48.706 +81305,233.25,44.071 +81306,230.55,45.682 +81307,228.09,47.211 +81308,225.82,48.668 +81309,231.98,44.164 +81310,229.27,45.728 +81311,226.81,47.213 +81312,224.53,48.629 +81313,230.71,44.258 +81314,228,45.775 +81315,225.53,47.215 +81316,223.24,48.59 +81317,229.44,44.353 +81318,226.73,45.821 +81319,224.25,47.217 +81320,221.94,48.549 +81321,228.17,44.449 +81322,225.46,45.868 +81323,222.97,47.218 +81324,220.65,48.507 +81325,226.89,44.546 +81326,224.19,45.916 +81327,221.69,47.219 +81328,219.37,48.464 +81329,225.62,44.644 +81330,222.91,45.964 +81331,220.41,47.22 +81332,218.08,48.421 +81333,224.34,44.743 +81334,221.64,46.012 +81335,219.13,47.221 +81336,216.8,48.376 +81337,223.06,44.842 +81338,220.36,46.06 +81339,217.86,47.221 +81340,215.51,48.331 +81341,221.77,44.943 +81342,219.08,46.109 +81343,216.58,47.221 +81344,214.23,48.285 +81345,220.49,45.044 +81346,217.81,46.158 +81347,215.3,47.221 +81348,212.95,48.238 +81349,219.2,45.145 +81350,216.53,46.207 +81351,214.03,47.22 +81352,211.68,48.19 +81353,217.91,45.248 +81354,215.25,46.257 +81355,212.75,47.22 +81356,210.4,48.142 +81357,216.61,45.351 +81358,213.97,46.307 +81359,211.48,47.219 +81360,209.13,48.093 +81361,215.32,45.454 +81362,212.69,46.357 +81363,210.21,47.218 +81364,207.85,48.043 +81365,214.02,45.558 +81366,211.41,46.407 +81367,208.93,47.217 +81368,206.58,47.993 +81369,212.72,45.663 +81370,210.12,46.458 +81371,207.66,47.216 +81372,205.32,47.942 +81373,211.42,45.768 +81374,208.84,46.508 +81375,206.39,47.215 +81376,204.05,47.891 +81377,210.12,45.873 +81378,207.56,46.559 +81379,205.12,47.213 +81380,202.79,47.839 +81381,208.81,45.978 +81382,206.27,46.61 +81383,203.85,47.212 +81384,201.52,47.786 +81385,207.51,46.084 +81386,204.99,46.661 +81387,202.58,47.21 +81388,200.26,47.734 +81389,206.2,46.19 +81390,203.7,46.712 +81391,201.31,47.208 +81392,199,47.681 +81393,204.89,46.296 +81394,202.42,46.764 +81395,200.04,47.207 +81396,197.75,47.627 +81397,203.57,46.403 +81398,201.13,46.815 +81399,198.77,47.205 +81400,196.49,47.574 +81401,202.26,46.509 +81402,199.84,46.867 +81403,197.5,47.203 +81404,195.24,47.52 +81405,200.94,46.615 +81406,198.55,46.918 +81407,196.24,47.201 +81408,193.99,47.466 +81409,199.62,46.722 +81410,197.26,46.97 +81411,194.97,47.199 +81412,192.74,47.411 +81413,198.3,46.828 +81414,195.97,47.022 +81415,193.7,47.197 +81416,191.49,47.357 +81417,196.98,46.935 +81418,194.68,47.074 +81419,192.44,47.195 +81420,190.25,47.302 +81421,195.66,47.041 +81422,193.39,47.125 +81423,191.17,47.194 +81424,189,47.248 +81425,194.33,47.147 +81426,192.1,47.177 +81427,189.91,47.192 +81428,187.76,47.193 +81429,193.01,47.253 +81430,190.8,47.229 +81431,188.64,47.19 +81432,186.52,47.138 +81433,191.68,47.359 +81434,189.51,47.281 +81435,187.38,47.188 +81436,185.28,47.084 +81437,190.35,47.464 +81438,188.22,47.332 +81439,186.12,47.187 +81440,184.05,47.029 +81441,189.02,47.569 +81442,186.92,47.384 +81443,184.86,47.185 +81444,182.81,46.975 +81445,187.68,47.674 +81446,185.63,47.436 +81447,183.59,47.184 +81448,181.58,46.921 +81449,186.35,47.778 +81450,184.33,47.487 +81451,182.33,47.183 +81452,180.35,46.867 +81453,185.01,47.882 +81454,183.03,47.539 +81455,181.07,47.182 +81456,179.12,46.813 +81457,183.67,47.985 +81458,181.74,47.59 +81459,179.81,47.181 +81460,177.89,46.76 +81461,182.34,48.088 +81462,180.44,47.641 +81463,178.55,47.18 +81464,176.67,46.707 +81465,181,48.19 +81466,179.14,47.692 +81467,177.29,47.18 +81468,175.44,46.654 +81469,179.65,48.292 +81470,177.84,47.743 +81471,176.03,47.179 +81472,174.22,46.602 +81473,178.31,48.393 +81474,176.54,47.794 +81475,174.77,47.179 +81476,173,46.55 +81477,176.97,48.493 +81478,175.24,47.844 +81479,173.51,47.179 +81480,171.78,46.499 +81481,175.62,48.593 +81482,173.94,47.895 +81483,172.26,47.179 +81484,170.56,46.448 +81485,174.27,48.692 +81486,172.64,47.945 +81487,171,47.18 +81488,169.35,46.398 +81489,172.93,48.79 +81490,171.34,47.995 +81491,169.74,47.181 +81492,168.14,46.348 +81493,171.58,48.887 +81494,170.04,48.044 +81495,168.49,47.182 +81496,166.92,46.299 +81497,170.23,48.984 +81498,168.73,48.094 +81499,167.23,47.183 +81500,165.71,46.251 +81501,168.88,49.079 +81502,167.43,48.143 +81503,165.97,47.184 +81504,164.5,46.204 +81505,167.53,49.174 +81506,166.13,48.192 +81507,164.72,47.186 +81508,163.29,46.157 +81509,166.17,49.268 +81510,164.82,48.241 +81511,163.46,47.189 +81512,162.09,46.112 +81513,164.82,49.361 +81514,163.52,48.289 +81515,162.21,47.191 +81516,160.88,46.067 +81517,163.47,49.452 +81518,162.21,48.337 +81519,160.95,47.194 +81520,159.68,46.023 +81521,162.11,49.543 +81522,160.91,48.385 +81523,159.7,47.197 +81524,158.47,45.98 +81525,160.75,49.633 +81526,159.6,48.433 +81527,158.44,47.201 +81528,157.27,45.937 +81529,159.4,49.721 +81530,158.3,48.48 +81531,157.19,47.205 +81532,156.07,45.896 +81533,158.04,49.809 +81534,156.99,48.527 +81535,155.94,47.209 +81536,154.87,45.856 +81537,156.68,49.895 +81538,155.68,48.573 +81539,154.68,47.214 +81540,153.68,45.817 +81541,155.32,49.981 +81542,154.38,48.619 +81543,153.43,47.219 +81544,152.48,45.78 +81545,153.96,50.065 +81546,153.07,48.665 +81547,152.18,47.225 +81548,151.28,45.743 +81549,152.6,50.147 +81550,151.76,48.71 +81551,150.92,47.231 +81552,150.09,45.707 +81553,151.24,50.229 +81554,150.45,48.756 +81555,149.67,47.238 +81556,148.89,45.673 +81557,149.88,50.309 +81558,149.15,48.8 +81559,148.42,47.245 +81560,147.7,45.64 +81561,148.52,50.388 +81562,147.84,48.844 +81563,147.17,47.252 +81564,146.51,45.608 +81565,147.16,50.466 +81566,146.53,48.888 +81567,145.92,47.26 +81568,145.32,45.578 +81569,145.79,50.542 +81570,145.22,48.931 +81571,144.66,47.268 +81572,144.12,45.549 +81573,144.43,50.617 +81574,143.91,48.974 +81575,143.41,47.277 +81576,142.93,45.521 +81577,143.07,50.691 +81578,142.6,49.017 +81579,142.16,47.286 +81580,141.75,45.495 +81581,141.7,50.763 +81582,141.29,49.059 +81583,140.91,47.296 +81584,140.56,45.47 +81585,140.34,50.834 +81586,139.98,49.101 +81587,139.66,47.307 +81588,139.37,45.447 +81589,138.98,50.904 +81590,138.67,49.142 +81591,138.4,47.318 +81592,138.18,45.425 +81593,137.61,50.972 +81594,137.36,49.182 +81595,137.15,47.329 +81596,136.99,45.405 +81597,136.25,51.038 +81598,136.05,49.223 +81599,135.9,47.341 +81600,135.8,45.386 +81601,134.88,51.103 +81602,134.74,49.262 +81603,134.65,47.353 +81604,134.62,45.369 +81605,133.52,51.167 +81606,133.43,49.302 +81607,133.4,47.366 +81608,133.43,45.354 +81609,132.15,51.229 +81610,132.12,49.34 +81611,132.15,47.38 +81612,132.24,45.34 +81613,130.79,51.289 +81614,130.81,49.379 +81615,130.89,47.394 +81616,131.06,45.327 +81617,129.42,51.348 +81618,129.5,49.416 +81619,129.64,47.409 +81620,129.87,45.317 +81621,128.06,51.406 +81622,128.19,49.454 +81623,128.39,47.424 +81624,128.68,45.308 +81625,126.7,51.462 +81626,126.88,49.49 +81627,127.14,47.44 +81628,127.5,45.301 +81629,125.33,51.516 +81630,125.57,49.527 +81631,125.89,47.456 +81632,126.31,45.295 +81633,123.97,51.569 +81634,124.26,49.562 +81635,124.63,47.473 +81636,125.12,45.292 +81637,122.6,51.62 +81638,122.95,49.598 +81639,123.38,47.491 +81640,123.94,45.29 +81641,121.24,51.67 +81642,121.63,49.632 +81643,122.13,47.509 +81644,122.75,45.29 +81645,119.88,51.718 +81646,120.32,49.666 +81647,120.88,47.528 +81648,121.56,45.291 +81649,118.51,51.764 +81650,119.01,49.7 +81651,119.62,47.548 +81652,120.37,45.295 +81653,117.15,51.809 +81654,117.7,49.733 +81655,118.37,47.568 +81656,119.18,45.3 +81657,115.79,51.852 +81658,116.39,49.766 +81659,117.12,47.588 +81660,117.99,45.307 +81661,114.43,51.894 +81662,115.08,49.798 +81663,115.86,47.609 +81664,116.8,45.316 +81665,113.07,51.934 +81666,113.77,49.829 +81667,114.61,47.631 +81668,115.61,45.327 +81669,111.7,51.972 +81670,112.46,49.86 +81671,113.35,47.654 +81672,114.42,45.34 +81673,110.34,52.009 +81674,111.15,49.89 +81675,112.1,47.677 +81676,113.23,45.354 +81677,108.98,52.044 +81678,109.84,49.92 +81679,110.84,47.701 +81680,112.03,45.371 +81681,107.62,52.077 +81682,108.53,49.949 +81683,109.59,47.725 +81684,110.84,45.389 +81685,106.27,52.109 +81686,107.22,49.978 +81687,108.33,47.75 +81688,109.64,45.41 +81689,104.91,52.139 +81690,105.91,50.006 +81691,107.08,47.775 +81692,108.45,45.432 +81693,103.55,52.168 +81694,104.6,50.034 +81695,105.82,47.802 +81696,107.25,45.456 +81697,102.19,52.195 +81698,103.29,50.061 +81699,104.56,47.828 +81700,106.05,45.482 +81701,100.84,52.22 +81702,101.98,50.088 +81703,103.3,47.856 +81704,104.85,45.509 +81705,99.483,52.244 +81706,100.68,50.114 +81707,102.05,47.884 +81708,103.65,45.539 +81709,98.129,52.266 +81710,99.367,50.139 +81711,100.79,47.913 +81712,102.45,45.571 +81713,96.776,52.286 +81714,98.059,50.164 +81715,99.53,47.942 +81716,101.24,45.604 +81717,95.423,52.305 +81718,96.751,50.188 +81719,98.271,47.972 +81720,100.04,45.639 +81721,94.072,52.322 +81722,95.444,50.212 +81723,97.011,48.002 +81724,98.829,45.676 +81725,92.721,52.338 +81726,94.136,50.235 +81727,95.75,48.033 +81728,97.62,45.715 +81729,91.371,52.352 +81730,92.829,50.258 +81731,94.49,48.065 +81732,96.41,45.756 +81733,90.022,52.364 +81734,91.523,50.28 +81735,93.228,48.097 +81736,95.198,45.799 +81737,88.675,52.375 +81738,90.216,50.302 +81739,91.966,48.13 +81740,93.984,45.843 +81741,87.328,52.385 +81742,88.91,50.323 +81743,90.704,48.164 +81744,92.769,45.89 +81745,85.983,52.392 +81746,87.605,50.344 +81747,89.44,48.198 +81748,91.551,45.938 +81749,84.638,52.399 +81750,86.299,50.364 +81751,88.177,48.232 +81752,90.332,45.988 +81753,83.295,52.403 +81754,84.995,50.384 +81755,86.912,48.268 +81756,89.111,46.039 +81757,81.953,52.407 +81758,83.69,50.403 +81759,85.648,48.303 +81760,87.888,46.093 +81761,80.612,52.408 +81762,82.386,50.421 +81763,84.382,48.34 +81764,86.664,46.148 +81765,79.272,52.409 +81766,81.082,50.439 +81767,83.116,48.377 +81768,85.437,46.205 +81769,77.933,52.408 +81770,79.779,50.457 +81771,81.849,48.414 +81772,84.208,46.263 +81773,76.596,52.405 +81774,78.476,50.474 +81775,80.582,48.452 +81776,82.977,46.324 +81777,75.26,52.401 +81778,77.173,50.491 +81779,79.313,48.491 +81780,81.744,46.385 +81781,73.926,52.395 +81782,75.871,50.507 +81783,78.045,48.53 +81784,80.509,46.449 +81785,72.593,52.388 +81786,74.57,50.523 +81787,76.775,48.569 +81788,79.272,46.514 +81789,71.261,52.38 +81790,73.269,50.538 +81791,75.505,48.61 +81792,78.032,46.581 +81793,69.93,52.37 +81794,71.968,50.553 +81795,74.234,48.65 +81796,76.791,46.649 +81797,68.601,52.359 +81798,70.668,50.567 +81799,72.963,48.691 +81800,75.547,46.719 +81801,67.274,52.347 +81802,69.368,50.581 +81803,71.69,48.733 +81804,74.301,46.79 +81805,65.948,52.333 +81806,68.069,50.595 +81807,70.417,48.775 +81808,73.053,46.863 +81809,64.623,52.318 +81810,66.77,50.608 +81811,69.144,48.818 +81812,71.803,46.937 +81813,63.3,52.302 +81814,65.472,50.62 +81815,67.869,48.861 +81816,70.55,47.012 +81817,61.978,52.285 +81818,64.174,50.632 +81819,66.594,48.904 +81820,69.295,47.089 +81821,60.658,52.266 +81822,62.877,50.644 +81823,65.318,48.948 +81824,68.038,47.167 +81825,59.34,52.246 +81826,61.581,50.656 +81827,64.041,48.993 +81828,66.778,47.247 +81829,58.023,52.225 +81830,60.284,50.667 +81831,62.764,49.038 +81832,65.516,47.328 +81833,56.708,52.203 +81834,58.989,50.677 +81835,61.486,49.083 +81836,64.252,47.41 +81837,55.394,52.18 +81838,57.694,50.688 +81839,60.207,49.129 +81840,62.986,47.493 +81841,54.082,52.155 +81842,56.399,50.697 +81843,58.927,49.175 +81844,61.717,47.578 +81845,52.772,52.13 +81846,55.105,50.707 +81847,57.646,49.221 +81848,60.446,47.663 +81849,51.464,52.103 +81850,53.812,50.716 +81851,56.365,49.268 +81852,59.172,47.75 +81853,50.157,52.076 +81854,52.519,50.725 +81855,55.083,49.315 +81856,57.897,47.838 +81857,48.852,52.047 +81858,51.227,50.734 +81859,53.8,49.363 +81860,56.618,47.927 +81861,47.548,52.018 +81862,49.935,50.742 +81863,52.517,49.411 +81864,55.338,48.016 +81865,46.247,51.987 +81866,48.644,50.75 +81867,51.232,49.459 +81868,54.055,48.107 +81869,44.947,51.956 +81870,47.353,50.758 +81871,49.947,49.508 +81872,52.77,48.199 +81873,43.649,51.924 +81874,46.063,50.765 +81875,48.661,49.557 +81876,51.483,48.291 +81877,42.352,51.891 +81878,44.774,50.772 +81879,47.375,49.606 +81880,50.194,48.385 +81881,41.058,51.857 +81882,43.485,50.779 +81883,46.087,49.655 +81884,48.902,48.479 +81885,39.765,51.822 +81886,42.197,50.786 +81887,44.799,49.705 +81888,47.608,48.574 +81889,38.474,51.787 +81890,40.909,50.792 +81891,43.51,49.755 +81892,46.311,48.67 +81893,37.185,51.75 +81894,39.622,50.798 +81895,42.22,49.805 +81896,45.013,48.766 +81897,35.898,51.714 +81898,38.335,50.804 +81899,40.93,49.856 +81900,43.712,48.863 +81901,34.613,51.676 +81902,37.049,50.81 +81903,39.639,49.907 +81904,42.409,48.961 +81905,33.329,51.638 +81906,35.764,50.815 +81907,38.347,49.957 +81908,41.104,49.059 +81909,32.047,51.599 +81910,34.479,50.821 +81911,37.054,50.009 +81912,39.797,49.158 +81913,30.767,51.56 +81914,33.195,50.826 +81915,35.76,50.06 +81916,38.488,49.257 +81917,29.49,51.52 +81918,31.911,50.831 +81919,34.466,50.111 +81920,37.176,49.357 +81921,28.213,51.48 +81922,30.628,50.836 +81923,33.171,50.163 +81924,35.863,49.457 +81925,26.939,51.439 +81926,29.346,50.841 +81927,31.875,50.215 +81928,34.547,49.557 +81929,25.667,51.398 +81930,28.064,50.845 +81931,30.579,50.267 +81932,33.23,49.658 +81933,24.396,51.356 +81934,26.782,50.85 +81935,29.281,50.319 +81936,31.91,49.759 +81937,23.128,51.314 +81938,25.502,50.854 +81939,27.983,50.371 +81940,30.589,49.861 +81941,21.861,51.272 +81942,24.222,50.859 +81943,26.685,50.423 +81944,29.265,49.962 +81945,20.596,51.229 +81946,22.942,50.863 +81947,25.385,50.475 +81948,27.94,50.064 +81949,19.333,51.186 +81950,21.663,50.867 +81951,24.085,50.528 +81952,26.612,50.166 +81953,18.072,51.143 +81954,20.384,50.871 +81955,22.784,50.58 +81956,25.283,50.267 +81957,16.812,51.1 +81958,19.106,50.876 +81959,21.483,50.633 +81960,23.952,50.369 +81961,15.555,51.057 +81962,17.829,50.88 +81963,20.181,50.685 +81964,22.619,50.471 +81965,14.299,51.013 +81966,16.552,50.884 +81967,18.878,50.738 +81968,21.285,50.573 +81969,13.045,50.97 +81970,15.276,50.888 +81971,17.574,50.79 +81972,19.948,50.675 +81973,11.793,50.926 +81974,14,50.892 +81975,16.27,50.843 +81976,18.61,50.777 +81977,10.543,50.883 +81978,12.725,50.896 +81979,14.965,50.896 +81980,17.271,50.878 +81981,9.2945,50.839 +81982,11.45,50.9 +81983,13.66,50.948 +81984,15.929,50.98 +81985,8.0478,50.796 +81986,10.176,50.905 +81987,12.353,51 +81988,14.586,51.081 +81989,6.8029,50.752 +81990,8.9022,50.909 +81991,11.047,51.053 +81992,13.242,51.182 +81993,5.5597,50.709 +81994,7.6289,50.913 +81995,9.7394,51.105 +81996,11.896,51.282 +81997,4.3183,50.666 +81998,6.3562,50.918 +81999,8.4314,51.157 +82000,10.548,51.382 +82001,3.0786,50.624 +82002,5.084,50.923 +82003,7.1229,51.209 +82004,9.199,51.482 +82005,1.8405,50.581 +82006,3.8122,50.927 +82007,5.8138,51.261 +82008,7.8485,51.582 +82009,0.60414,50.539 +82010,2.5409,50.932 +82011,4.5041,51.313 +82012,6.4966,51.681 +82013,359.37,50.497 +82014,1.27,50.937 +82015,3.1938,51.365 +82016,5.1434,51.779 +82017,358.14,50.455 +82018,360,50.942 +82019,1.883,51.417 +82020,3.7888,51.877 +82021,356.9,50.414 +82022,358.73,50.947 +82023,0.57165,51.468 +82024,2.433,51.975 +82025,355.67,50.374 +82026,357.46,50.953 +82027,359.26,51.519 +82028,1.0759,52.072 +82029,354.45,50.334 +82030,356.19,50.958 +82031,357.95,51.57 +82032,359.72,52.168 +82033,353.22,50.294 +82034,354.92,50.964 +82035,356.63,51.621 +82036,358.36,52.263 +82037,351.99,50.255 +82038,353.65,50.97 +82039,355.32,51.672 +82040,357,52.358 +82041,350.77,50.216 +82042,352.39,50.977 +82043,354.01,51.722 +82044,355.64,52.452 +82045,349.55,50.178 +82046,351.12,50.983 +82047,352.69,51.773 +82048,354.27,52.546 +82049,348.33,50.141 +82050,349.85,50.99 +82051,351.38,51.823 +82052,352.91,52.638 +82053,347.11,50.105 +82054,348.58,50.997 +82055,350.06,51.872 +82056,351.54,52.73 +82057,345.89,50.069 +82058,347.32,51.004 +82059,348.75,51.922 +82060,350.18,52.821 +82061,344.67,50.034 +82062,346.05,51.012 +82063,347.43,51.971 +82064,348.81,52.911 +82065,343.46,49.999 +82066,344.79,51.019 +82067,346.11,52.02 +82068,347.44,53 +82069,342.24,49.966 +82070,343.52,51.027 +82071,344.8,52.069 +82072,346.08,53.089 +82073,341.03,49.933 +82074,342.25,51.036 +82075,343.48,52.117 +82076,344.71,53.176 +82077,339.82,49.902 +82078,340.99,51.045 +82079,342.16,52.165 +82080,343.34,53.262 +82081,338.61,49.871 +82082,339.73,51.054 +82083,340.85,52.213 +82084,341.97,53.348 +82085,337.4,49.841 +82086,338.46,51.063 +82087,339.53,52.26 +82088,340.6,53.432 +82089,336.19,49.812 +82090,337.2,51.073 +82091,338.21,52.307 +82092,339.22,53.515 +82093,334.98,49.785 +82094,335.93,51.083 +82095,336.89,52.354 +82096,337.85,53.597 +82097,333.77,49.758 +82098,334.67,51.093 +82099,335.57,52.4 +82100,336.48,53.678 +82101,332.57,49.732 +82102,333.4,51.104 +82103,334.25,52.446 +82104,335.1,53.758 +82105,331.36,49.708 +82106,332.14,51.115 +82107,332.93,52.492 +82108,333.73,53.837 +82109,330.16,49.684 +82110,330.88,51.127 +82111,331.61,52.537 +82112,332.35,53.914 +82113,328.95,49.662 +82114,329.61,51.139 +82115,330.29,52.582 +82116,330.98,53.991 +82117,327.75,49.641 +82118,328.35,51.151 +82119,328.97,52.626 +82120,329.6,54.066 +82121,326.55,49.621 +82122,327.09,51.164 +82123,327.65,52.67 +82124,328.23,54.14 +82125,325.35,49.603 +82126,325.83,51.177 +82127,326.33,52.714 +82128,326.85,54.212 +82129,324.14,49.585 +82130,324.56,51.191 +82131,325.01,52.757 +82132,325.48,54.284 +82133,322.94,49.569 +82134,323.3,51.205 +82135,323.69,52.8 +82136,324.1,54.354 +82137,321.74,49.555 +82138,322.04,51.22 +82139,322.37,52.842 +82140,322.72,54.422 +82141,320.54,49.541 +82142,320.78,51.235 +82143,321.04,52.884 +82144,321.35,54.49 +82145,319.34,49.529 +82146,319.51,51.25 +82147,319.72,52.925 +82148,319.97,54.556 +82149,318.15,49.519 +82150,318.25,51.266 +82151,318.4,52.966 +82152,318.59,54.62 +82153,316.95,49.51 +82154,316.99,51.283 +82155,317.08,53.007 +82156,317.21,54.684 +82157,315.75,49.502 +82158,315.72,51.3 +82159,315.76,53.047 +82160,315.84,54.746 +82161,314.55,49.496 +82162,314.46,51.317 +82163,314.44,53.086 +82164,314.46,54.806 +82165,313.35,49.491 +82166,313.2,51.335 +82167,313.11,53.125 +82168,313.08,54.865 +82169,312.15,49.487 +82170,311.94,51.353 +82171,311.79,53.164 +82172,311.71,54.923 +82173,310.95,49.486 +82174,310.67,51.372 +82175,310.47,53.202 +82176,310.33,54.979 +82177,309.76,49.485 +82178,309.41,51.392 +82179,309.15,53.24 +82180,308.95,55.034 +82181,308.56,49.487 +82182,308.15,51.411 +82183,307.82,53.277 +82184,307.58,55.087 +82185,307.36,49.489 +82186,306.88,51.432 +82187,306.5,53.314 +82188,306.2,55.139 +82189,306.16,49.494 +82190,305.62,51.453 +82191,305.18,53.35 +82192,304.82,55.189 +82193,304.96,49.5 +82194,304.36,51.474 +82195,303.86,53.385 +82196,303.45,55.238 +82197,303.76,49.507 +82198,303.09,51.496 +82199,302.54,53.42 +82200,302.07,55.285 +82201,302.56,49.516 +82202,301.83,51.519 +82203,301.22,53.455 +82204,300.7,55.331 +82205,301.36,49.527 +82206,300.56,51.542 +82207,299.89,53.489 +82208,299.32,55.376 +82209,300.15,49.54 +82210,299.3,51.565 +82211,298.57,53.523 +82212,297.95,55.418 +82213,298.95,49.554 +82214,298.04,51.589 +82215,297.25,53.556 +82216,296.57,55.46 +82217,297.75,49.569 +82218,296.77,51.614 +82219,295.93,53.589 +82220,295.2,55.5 +82221,296.55,49.586 +82222,295.5,51.639 +82223,294.61,53.621 +82224,293.83,55.538 +82225,295.34,49.605 +82226,294.24,51.665 +82227,293.29,53.652 +82228,292.46,55.575 +82229,294.14,49.626 +82230,292.97,51.691 +82231,291.97,53.683 +82232,291.09,55.61 +82233,292.93,49.648 +82234,291.71,51.718 +82235,290.65,53.714 +82236,289.72,55.644 +82237,291.72,49.672 +82238,290.44,51.745 +82239,289.32,53.744 +82240,288.35,55.676 +82241,290.51,49.698 +82242,289.17,51.773 +82243,288,53.773 +82244,286.98,55.707 +82245,289.3,49.725 +82246,287.91,51.801 +82247,286.68,53.802 +82248,285.61,55.736 +82249,288.09,49.754 +82250,286.64,51.83 +82251,285.36,53.831 +82252,284.24,55.763 +82253,286.88,49.784 +82254,285.37,51.859 +82255,284.04,53.859 +82256,282.87,55.789 +82257,285.67,49.817 +82258,284.1,51.889 +82259,282.73,53.886 +82260,281.51,55.814 +82261,284.46,49.85 +82262,282.83,51.92 +82263,281.41,53.913 +82264,280.14,55.837 +82265,283.24,49.886 +82266,281.56,51.951 +82267,280.09,53.939 +82268,278.78,55.859 +82269,282.02,49.923 +82270,280.29,51.983 +82271,278.77,53.965 +82272,277.41,55.879 +82273,280.8,49.962 +82274,279.02,52.015 +82275,277.45,53.991 +82276,276.05,55.898 +82277,279.59,50.002 +82278,277.75,52.047 +82279,276.13,54.015 +82280,274.69,55.915 +82281,278.36,50.044 +82282,276.48,52.08 +82283,274.82,54.04 +82284,273.33,55.93 +82285,277.14,50.088 +82286,275.21,52.114 +82287,273.5,54.064 +82288,271.97,55.945 +82289,275.92,50.133 +82290,273.94,52.148 +82291,272.18,54.087 +82292,270.61,55.957 +82293,274.69,50.18 +82294,272.66,52.183 +82295,270.87,54.11 +82296,269.25,55.969 +82297,273.46,50.228 +82298,271.39,52.218 +82299,269.55,54.132 +82300,267.9,55.978 +82301,272.23,50.278 +82302,270.11,52.254 +82303,268.23,54.154 +82304,266.54,55.987 +82305,271,50.329 +82306,268.84,52.29 +82307,266.92,54.175 +82308,265.19,55.994 +82309,269.77,50.382 +82310,267.56,52.327 +82311,265.6,54.196 +82312,263.84,56 +82313,268.53,50.437 +82314,266.29,52.364 +82315,264.29,54.217 +82316,262.49,56.004 +82317,267.3,50.493 +82318,265.01,52.402 +82319,262.97,54.237 +82320,261.14,56.007 +82321,266.06,50.55 +82322,263.73,52.44 +82323,261.66,54.256 +82324,259.79,56.008 +82325,264.82,50.609 +82326,262.46,52.478 +82327,260.35,54.275 +82328,258.44,56.008 +82329,263.57,50.67 +82330,261.18,52.518 +82331,259.03,54.294 +82332,257.09,56.007 +82333,262.33,50.731 +82334,259.9,52.557 +82335,257.72,54.312 +82336,255.75,56.005 +82337,261.08,50.795 +82338,258.62,52.597 +82339,256.41,54.33 +82340,254.41,56.001 +82341,259.83,50.859 +82342,257.34,52.638 +82343,255.1,54.347 +82344,253.06,55.996 +82345,258.58,50.925 +82346,256.06,52.678 +82347,253.79,54.364 +82348,251.72,55.99 +82349,257.33,50.992 +82350,254.78,52.72 +82351,252.48,54.38 +82352,250.39,55.982 +82353,256.08,51.061 +82354,253.49,52.761 +82355,251.17,54.396 +82356,249.05,55.973 +82357,254.82,51.131 +82358,252.21,52.804 +82359,249.86,54.412 +82360,247.71,55.963 +82361,253.56,51.202 +82362,250.93,52.846 +82363,248.55,54.427 +82364,246.38,55.952 +82365,252.3,51.274 +82366,249.64,52.889 +82367,247.24,54.442 +82368,245.04,55.94 +82369,251.03,51.348 +82370,248.36,52.933 +82371,245.93,54.456 +82372,243.71,55.927 +82373,249.77,51.423 +82374,247.07,52.976 +82375,244.63,54.47 +82376,242.38,55.912 +82377,248.5,51.498 +82378,245.79,53.02 +82379,243.32,54.484 +82380,241.06,55.896 +82381,247.23,51.575 +82382,244.5,53.065 +82383,242.01,54.497 +82384,239.73,55.88 +82385,245.96,51.653 +82386,243.21,53.11 +82387,240.71,54.51 +82388,238.4,55.862 +82389,244.68,51.733 +82390,241.92,53.155 +82391,239.4,54.523 +82392,237.08,55.843 +82393,243.4,51.813 +82394,240.63,53.2 +82395,238.1,54.535 +82396,235.76,55.823 +82397,242.12,51.894 +82398,239.34,53.246 +82399,236.79,54.547 +82400,234.44,55.803 +82401,240.84,51.976 +82402,238.05,53.292 +82403,235.49,54.559 +82404,233.12,55.781 +82405,239.56,52.059 +82406,236.76,53.339 +82407,234.19,54.57 +82408,231.81,55.758 +82409,238.27,52.143 +82410,235.47,53.386 +82411,232.89,54.581 +82412,230.49,55.735 +82413,236.99,52.228 +82414,234.17,53.433 +82415,231.58,54.592 +82416,229.18,55.71 +82417,235.69,52.313 +82418,232.88,53.48 +82419,230.28,54.602 +82420,227.87,55.685 +82421,234.4,52.4 +82422,231.58,53.528 +82423,228.98,54.612 +82424,226.56,55.659 +82425,233.11,52.487 +82426,230.29,53.576 +82427,227.68,54.622 +82428,225.25,55.632 +82429,231.81,52.575 +82430,228.99,53.624 +82431,226.38,54.632 +82432,223.94,55.605 +82433,230.51,52.664 +82434,227.7,53.672 +82435,225.08,54.641 +82436,222.64,55.576 +82437,229.21,52.753 +82438,226.4,53.721 +82439,223.79,54.65 +82440,221.34,55.547 +82441,227.9,52.843 +82442,225.1,53.769 +82443,222.49,54.659 +82444,220.04,55.517 +82445,226.6,52.934 +82446,223.8,53.818 +82447,221.19,54.668 +82448,218.74,55.487 +82449,225.29,53.025 +82450,222.5,53.867 +82451,219.89,54.677 +82452,217.44,55.456 +82453,223.98,53.116 +82454,221.2,53.917 +82455,218.6,54.685 +82456,216.15,55.425 +82457,222.67,53.208 +82458,219.9,53.966 +82459,217.3,54.693 +82460,214.85,55.393 +82461,221.35,53.301 +82462,218.6,54.016 +82463,216.01,54.701 +82464,213.56,55.36 +82465,220.03,53.394 +82466,217.29,54.066 +82467,214.72,54.709 +82468,212.27,55.327 +82469,218.72,53.487 +82470,215.99,54.116 +82471,213.42,54.717 +82472,210.99,55.293 +82473,217.39,53.581 +82474,214.69,54.166 +82475,212.13,54.724 +82476,209.7,55.259 +82477,216.07,53.675 +82478,213.38,54.216 +82479,210.84,54.732 +82480,208.42,55.225 +82481,214.75,53.769 +82482,212.08,54.266 +82483,209.54,54.739 +82484,207.13,55.19 +82485,213.42,53.864 +82486,210.77,54.317 +82487,208.25,54.746 +82488,205.85,55.155 +82489,212.09,53.959 +82490,209.46,54.367 +82491,206.96,54.753 +82492,204.58,55.12 +82493,210.76,54.053 +82494,208.15,54.418 +82495,205.67,54.76 +82496,203.3,55.084 +82497,209.43,54.148 +82498,206.85,54.468 +82499,204.38,54.767 +82500,202.02,55.049 +82501,208.09,54.244 +82502,205.54,54.519 +82503,203.09,54.774 +82504,200.75,55.013 +82505,206.76,54.339 +82506,204.23,54.569 +82507,201.81,54.781 +82508,199.48,54.976 +82509,205.42,54.434 +82510,202.92,54.62 +82511,200.52,54.788 +82512,198.21,54.94 +82513,204.08,54.529 +82514,201.61,54.671 +82515,199.23,54.795 +82516,196.94,54.904 +82517,202.73,54.624 +82518,200.29,54.721 +82519,197.94,54.801 +82520,195.68,54.867 +82521,201.39,54.719 +82522,198.98,54.772 +82523,196.66,54.808 +82524,194.41,54.831 +82525,200.05,54.814 +82526,197.67,54.822 +82527,195.37,54.815 +82528,193.15,54.794 +82529,198.7,54.909 +82530,196.35,54.873 +82531,194.09,54.822 +82532,191.89,54.758 +82533,197.35,55.003 +82534,195.04,54.923 +82535,192.8,54.829 +82536,190.63,54.721 +82537,196,55.098 +82538,193.72,54.974 +82539,191.52,54.836 +82540,189.38,54.685 +82541,194.65,55.192 +82542,192.41,55.024 +82543,190.24,54.842 +82544,188.12,54.649 +82545,193.29,55.285 +82546,191.09,55.074 +82547,188.95,54.849 +82548,186.87,54.613 +82549,191.94,55.379 +82550,189.78,55.124 +82551,187.67,54.857 +82552,185.62,54.577 +82553,190.58,55.472 +82554,188.46,55.174 +82555,186.39,54.864 +82556,184.37,54.542 +82557,189.22,55.564 +82558,187.14,55.224 +82559,185.11,54.871 +82560,183.12,54.507 +82561,187.86,55.657 +82562,185.82,55.274 +82563,183.83,54.878 +82564,181.87,54.472 +82565,186.5,55.748 +82566,184.5,55.324 +82567,182.55,54.886 +82568,180.63,54.437 +82569,185.14,55.84 +82570,183.18,55.373 +82571,181.27,54.894 +82572,179.38,54.403 +82573,183.78,55.93 +82574,181.86,55.422 +82575,179.99,54.901 +82576,178.14,54.369 +82577,182.41,56.02 +82578,180.54,55.472 +82579,178.71,54.909 +82580,176.9,54.336 +82581,181.05,56.11 +82582,179.22,55.52 +82583,177.43,54.917 +82584,175.66,54.303 +82585,179.68,56.199 +82586,177.9,55.569 +82587,176.15,54.926 +82588,174.42,54.271 +82589,178.31,56.287 +82590,176.58,55.618 +82591,174.87,54.934 +82592,173.19,54.239 +82593,176.94,56.375 +82594,175.26,55.666 +82595,173.59,54.943 +82596,171.95,54.208 +82597,175.57,56.462 +82598,173.93,55.714 +82599,172.32,54.952 +82600,170.72,54.177 +82601,174.2,56.548 +82602,172.61,55.762 +82603,171.04,54.961 +82604,169.49,54.147 +82605,172.82,56.633 +82606,171.29,55.809 +82607,169.76,54.97 +82608,168.26,54.118 +82609,171.45,56.718 +82610,169.96,55.857 +82611,168.49,54.98 +82612,167.03,54.089 +82613,170.08,56.802 +82614,168.64,55.904 +82615,167.21,54.99 +82616,165.8,54.061 +82617,168.7,56.884 +82618,167.31,55.95 +82619,165.94,55 +82620,164.57,54.034 +82621,167.32,56.967 +82622,165.99,55.997 +82623,164.66,55.01 +82624,163.35,54.007 +82625,165.95,57.048 +82626,164.66,56.043 +82627,163.39,55.021 +82628,162.12,53.982 +82629,164.57,57.128 +82630,163.34,56.089 +82631,162.11,55.031 +82632,160.9,53.957 +82633,163.19,57.207 +82634,162.01,56.134 +82635,160.84,55.043 +82636,159.68,53.933 +82637,161.81,57.285 +82638,160.68,56.18 +82639,159.56,55.054 +82640,158.46,53.91 +82641,160.43,57.363 +82642,159.36,56.224 +82643,158.29,55.066 +82644,157.24,53.888 +82645,159.05,57.439 +82646,158.03,56.269 +82647,157.02,55.078 +82648,156.02,53.867 +82649,157.67,57.514 +82650,156.7,56.313 +82651,155.74,55.091 +82652,154.8,53.847 +82653,156.29,57.588 +82654,155.37,56.357 +82655,154.47,55.103 +82656,153.58,53.828 +82657,154.9,57.661 +82658,154.05,56.4 +82659,153.2,55.116 +82660,152.36,53.81 +82661,153.52,57.733 +82662,152.72,56.444 +82663,151.93,55.13 +82664,151.15,53.793 +82665,152.14,57.804 +82666,151.39,56.486 +82667,150.65,55.144 +82668,149.93,53.777 +82669,150.75,57.874 +82670,150.06,56.529 +82671,149.38,55.158 +82672,148.72,53.762 +82673,149.37,57.942 +82674,148.73,56.571 +82675,148.11,55.173 +82676,147.51,53.749 +82677,147.99,58.009 +82678,147.4,56.612 +82679,146.84,55.188 +82680,146.29,53.736 +82681,146.6,58.076 +82682,146.07,56.653 +82683,145.56,55.203 +82684,145.08,53.725 +82685,145.22,58.14 +82686,144.74,56.694 +82687,144.29,55.219 +82688,143.87,53.715 +82689,143.83,58.204 +82690,143.41,56.734 +82691,143.02,55.235 +82692,142.66,53.706 +82693,142.45,58.267 +82694,142.08,56.774 +82695,141.75,55.251 +82696,141.45,53.698 +82697,141.06,58.328 +82698,140.75,56.814 +82699,140.48,55.268 +82700,140.24,53.691 +82701,139.67,58.387 +82702,139.42,56.853 +82703,139.21,55.286 +82704,139.02,53.686 +82705,138.29,58.446 +82706,138.09,56.891 +82707,137.93,55.303 +82708,137.81,53.682 +82709,136.9,58.503 +82710,136.76,56.929 +82711,136.66,55.322 +82712,136.6,53.68 +82713,135.52,58.559 +82714,135.43,56.967 +82715,135.39,55.34 +82716,135.39,53.679 +82717,134.13,58.614 +82718,134.1,57.004 +82719,134.12,55.359 +82720,134.19,53.679 +82721,132.75,58.667 +82722,132.77,57.041 +82723,132.85,55.379 +82724,132.98,53.68 +82725,131.36,58.719 +82726,131.44,57.077 +82727,131.58,55.399 +82728,131.77,53.683 +82729,129.98,58.77 +82730,130.11,57.113 +82731,130.3,55.419 +82732,130.56,53.687 +82733,128.59,58.819 +82734,128.78,57.149 +82735,129.03,55.44 +82736,129.35,53.693 +82737,127.21,58.867 +82738,127.45,57.183 +82739,127.76,55.462 +82740,128.14,53.7 +82741,125.82,58.913 +82742,126.12,57.218 +82743,126.49,55.483 +82744,126.93,53.708 +82745,124.44,58.958 +82746,124.79,57.252 +82747,125.21,55.506 +82748,125.72,53.718 +82749,123.05,59.002 +82750,123.46,57.285 +82751,123.94,55.528 +82752,124.51,53.729 +82753,121.67,59.044 +82754,122.13,57.318 +82755,122.67,55.552 +82756,123.29,53.742 +82757,120.29,59.085 +82758,120.8,57.351 +82759,121.4,55.575 +82760,122.08,53.756 +82761,118.9,59.124 +82762,119.47,57.383 +82763,120.12,55.599 +82764,120.87,53.772 +82765,117.52,59.162 +82766,118.14,57.414 +82767,118.85,55.624 +82768,119.66,53.789 +82769,116.14,59.199 +82770,116.81,57.446 +82771,117.58,55.649 +82772,118.45,53.807 +82773,114.76,59.234 +82774,115.48,57.476 +82775,116.3,55.675 +82776,117.23,53.827 +82777,113.38,59.267 +82778,114.15,57.506 +82779,115.03,55.701 +82780,116.02,53.849 +82781,112,59.3 +82782,112.83,57.536 +82783,113.75,55.727 +82784,114.8,53.872 +82785,110.62,59.331 +82786,111.5,57.565 +82787,112.48,55.754 +82788,113.59,53.896 +82789,109.24,59.36 +82790,110.17,57.594 +82791,111.2,55.782 +82792,112.37,53.922 +82793,107.86,59.388 +82794,108.84,57.622 +82795,109.93,55.81 +82796,111.15,53.95 +82797,106.49,59.415 +82798,107.51,57.649 +82799,108.65,55.838 +82800,109.93,53.979 +82801,105.11,59.44 +82802,106.18,57.676 +82803,107.38,55.867 +82804,108.71,54.009 +82805,103.74,59.464 +82806,104.86,57.703 +82807,106.1,55.897 +82808,107.49,54.041 +82809,102.36,59.486 +82810,103.53,57.729 +82811,104.82,55.926 +82812,106.27,54.074 +82813,100.99,59.507 +82814,102.2,57.755 +82815,103.55,55.957 +82816,105.05,54.109 +82817,99.614,59.527 +82818,100.87,57.78 +82819,102.27,55.988 +82820,103.82,54.145 +82821,98.242,59.545 +82822,99.548,57.805 +82823,100.99,56.019 +82824,102.6,54.183 +82825,96.871,59.562 +82826,98.222,57.829 +82827,99.712,56.051 +82828,101.37,54.222 +82829,95.502,59.577 +82830,96.896,57.853 +82831,98.434,56.083 +82832,100.14,54.263 +82833,94.133,59.591 +82834,95.57,57.876 +82835,97.154,56.115 +82836,98.914,54.305 +82837,92.765,59.604 +82838,94.245,57.899 +82839,95.874,56.149 +82840,97.683,54.348 +82841,91.398,59.615 +82842,92.92,57.922 +82843,94.594,56.182 +82844,96.451,54.393 +82845,90.033,59.625 +82846,91.596,57.944 +82847,93.313,56.216 +82848,95.217,54.44 +82849,88.668,59.634 +82850,90.271,57.965 +82851,92.032,56.251 +82852,93.982,54.487 +82853,87.305,59.641 +82854,88.948,57.986 +82855,90.75,56.286 +82856,92.745,54.536 +82857,85.943,59.648 +82858,87.624,58.007 +82859,89.468,56.321 +82860,91.506,54.587 +82861,84.582,59.652 +82862,86.302,58.027 +82863,88.185,56.357 +82864,90.266,54.639 +82865,83.222,59.656 +82866,84.979,58.046 +82867,86.902,56.393 +82868,89.024,54.692 +82869,81.864,59.658 +82870,83.657,58.066 +82871,85.618,56.43 +82872,87.78,54.746 +82873,80.507,59.659 +82874,82.335,58.084 +82875,84.333,56.467 +82876,86.535,54.802 +82877,79.151,59.659 +82878,81.014,58.103 +82879,83.048,56.504 +82880,85.288,54.859 +82881,77.797,59.657 +82882,79.693,58.121 +82883,81.762,56.542 +82884,84.039,54.917 +82885,76.444,59.655 +82886,78.373,58.138 +82887,80.476,56.58 +82888,82.788,54.977 +82889,75.092,59.651 +82890,77.053,58.155 +82891,79.189,56.619 +82892,81.535,55.038 +82893,73.742,59.646 +82894,75.734,58.172 +82895,77.901,56.658 +82896,80.28,55.1 +82897,72.394,59.639 +82898,74.415,58.188 +82899,76.613,56.697 +82900,79.024,55.163 +82901,71.046,59.632 +82902,73.097,58.204 +82903,75.324,56.737 +82904,77.765,55.227 +82905,69.7,59.624 +82906,71.779,58.22 +82907,74.035,56.777 +82908,76.505,55.293 +82909,68.356,59.614 +82910,70.462,58.235 +82911,72.745,56.818 +82912,75.242,55.359 +82913,67.013,59.603 +82914,69.145,58.25 +82915,71.454,56.859 +82916,73.978,55.427 +82917,65.672,59.592 +82918,67.829,58.264 +82919,70.163,56.9 +82920,72.711,55.496 +82921,64.333,59.579 +82922,66.513,58.278 +82923,68.871,56.942 +82924,71.442,55.566 +82925,62.995,59.565 +82926,65.198,58.292 +82927,67.578,56.983 +82928,70.171,55.637 +82929,61.658,59.551 +82930,63.883,58.305 +82931,66.285,57.026 +82932,68.899,55.709 +82933,60.323,59.535 +82934,62.569,58.318 +82935,64.991,57.068 +82936,67.624,55.781 +82937,58.99,59.518 +82938,61.255,58.331 +82939,63.696,57.111 +82940,66.347,55.855 +82941,57.658,59.501 +82942,59.942,58.343 +82943,62.4,57.154 +82944,65.067,55.93 +82945,56.328,59.482 +82946,58.63,58.355 +82947,61.104,57.198 +82948,63.786,56.006 +82949,55,59.463 +82950,57.318,58.367 +82951,59.807,57.241 +82952,62.503,56.082 +82953,53.674,59.443 +82954,56.007,58.379 +82955,58.51,57.285 +82956,61.217,56.159 +82957,52.349,59.422 +82958,54.696,58.39 +82959,57.212,57.33 +82960,59.929,56.237 +82961,51.026,59.4 +82962,53.386,58.401 +82963,55.913,57.374 +82964,58.639,56.316 +82965,49.704,59.377 +82966,52.076,58.412 +82967,54.613,57.419 +82968,57.347,56.396 +82969,48.385,59.354 +82970,50.767,58.422 +82971,53.313,57.464 +82972,56.053,56.476 +82973,47.067,59.33 +82974,49.459,58.432 +82975,52.012,57.509 +82976,54.756,56.557 +82977,45.751,59.305 +82978,48.151,58.442 +82979,50.71,57.554 +82980,53.458,56.639 +82981,44.436,59.28 +82982,46.844,58.452 +82983,49.407,57.6 +82984,52.157,56.721 +82985,43.124,59.254 +82986,45.537,58.461 +82987,48.104,57.646 +82988,50.854,56.804 +82989,41.813,59.227 +82990,44.231,58.47 +82991,46.8,57.692 +82992,49.549,56.888 +82993,40.504,59.2 +82994,42.925,58.479 +82995,45.496,57.738 +82996,48.242,56.972 +82997,39.197,59.172 +82998,41.621,58.488 +82999,44.19,57.784 +83000,46.933,57.056 +83001,37.891,59.144 +83002,40.316,58.497 +83003,42.884,57.831 +83004,45.621,57.141 +83005,36.588,59.115 +83006,39.013,58.506 +83007,41.578,57.877 +83008,44.308,57.227 +83009,35.286,59.085 +83010,37.709,58.514 +83011,40.27,57.924 +83012,42.992,57.313 +83013,33.986,59.056 +83014,36.407,58.522 +83015,38.962,57.971 +83016,41.675,57.399 +83017,32.688,59.026 +83018,35.105,58.53 +83019,37.653,58.018 +83020,40.355,57.485 +83021,31.391,58.995 +83022,33.804,58.538 +83023,36.344,58.065 +83024,39.033,57.572 +83025,30.097,58.964 +83026,32.503,58.546 +83027,35.033,58.112 +83028,37.709,57.659 +83029,28.804,58.933 +83030,31.203,58.554 +83031,33.723,58.159 +83032,36.383,57.747 +83033,27.513,58.901 +83034,29.903,58.561 +83035,32.411,58.206 +83036,35.055,57.834 +83037,26.224,58.87 +83038,28.604,58.569 +83039,31.099,58.254 +83040,33.726,57.922 +83041,24.937,58.838 +83042,27.306,58.576 +83043,29.786,58.301 +83044,32.394,58.01 +83045,23.651,58.806 +83046,26.008,58.584 +83047,28.472,58.349 +83048,31.06,58.098 +83049,22.367,58.773 +83050,24.711,58.591 +83051,27.158,58.396 +83052,29.724,58.186 +83053,21.086,58.741 +83054,23.414,58.598 +83055,25.843,58.443 +83056,28.387,58.274 +83057,19.805,58.708 +83058,22.118,58.605 +83059,24.527,58.491 +83060,27.047,58.362 +83061,18.527,58.676 +83062,20.823,58.613 +83063,23.211,58.538 +83064,25.706,58.45 +83065,17.251,58.643 +83066,19.528,58.62 +83067,21.894,58.586 +83068,24.363,58.538 +83069,15.976,58.61 +83070,18.234,58.627 +83071,20.577,58.633 +83072,23.018,58.626 +83073,14.703,58.578 +83074,16.94,58.634 +83075,19.258,58.68 +83076,21.671,58.714 +83077,13.431,58.545 +83078,15.646,58.642 +83079,17.94,58.728 +83080,20.323,58.802 +83081,12.162,58.513 +83082,14.354,58.649 +83083,16.62,58.775 +83084,18.973,58.889 +83085,10.894,58.48 +83086,13.061,58.656 +83087,15.3,58.822 +83088,17.621,58.976 +83089,9.6279,58.448 +83090,11.77,58.663 +83091,13.98,58.869 +83092,16.268,59.063 +83093,8.3634,58.416 +83094,10.479,58.671 +83095,12.659,58.916 +83096,14.913,59.15 +83097,7.1006,58.384 +83098,9.188,58.678 +83099,11.337,58.963 +83100,13.556,59.237 +83101,5.8395,58.353 +83102,7.8979,58.686 +83103,10.015,59.01 +83104,12.198,59.323 +83105,4.58,58.322 +83106,6.6082,58.693 +83107,8.6918,59.056 +83108,10.838,59.408 +83109,3.3221,58.291 +83110,5.3191,58.701 +83111,7.3684,59.103 +83112,9.4769,59.494 +83113,2.0658,58.26 +83114,4.0304,58.709 +83115,6.0444,59.149 +83116,8.1142,59.578 +83117,0.81105,58.23 +83118,2.7423,58.717 +83119,4.7199,59.195 +83120,6.7502,59.663 +83121,359.56,58.2 +83122,1.4546,58.725 +83123,3.3949,59.241 +83124,5.3847,59.747 +83125,358.31,58.17 +83126,0.1673,58.733 +83127,2.0694,59.287 +83128,4.0179,59.83 +83129,357.06,58.141 +83130,358.88,58.742 +83131,0.74339,59.333 +83132,2.6497,59.913 +83133,355.81,58.113 +83134,357.59,58.75 +83135,359.42,59.378 +83136,1.2803,59.995 +83137,354.56,58.085 +83138,356.31,58.759 +83139,358.09,59.424 +83140,359.91,60.076 +83141,353.31,58.058 +83142,355.02,58.768 +83143,356.76,59.469 +83144,358.54,60.157 +83145,352.07,58.031 +83146,353.74,58.777 +83147,355.43,59.513 +83148,357.16,60.238 +83149,350.83,58.005 +83150,352.45,58.786 +83151,354.11,59.558 +83152,355.79,60.317 +83153,349.59,57.979 +83154,351.17,58.796 +83155,352.78,59.602 +83156,354.42,60.396 +83157,348.35,57.954 +83158,349.88,58.806 +83159,351.45,59.646 +83160,353.04,60.474 +83161,347.11,57.93 +83162,348.6,58.816 +83163,350.12,59.69 +83164,351.66,60.552 +83165,345.87,57.906 +83166,347.32,58.826 +83167,348.79,59.734 +83168,350.28,60.628 +83169,344.63,57.884 +83170,346.04,58.836 +83171,347.46,59.777 +83172,348.9,60.704 +83173,343.4,57.862 +83174,344.75,58.847 +83175,346.13,59.82 +83176,347.52,60.779 +83177,342.16,57.84 +83178,343.47,58.858 +83179,344.8,59.863 +83180,346.14,60.853 +83181,340.93,57.82 +83182,342.19,58.869 +83183,343.46,59.905 +83184,344.76,60.926 +83185,339.7,57.8 +83186,340.91,58.881 +83187,342.13,59.947 +83188,343.38,60.998 +83189,338.47,57.782 +83190,339.63,58.893 +83191,340.8,59.989 +83192,341.99,61.07 +83193,337.24,57.764 +83194,338.34,58.905 +83195,339.47,60.03 +83196,340.61,61.14 +83197,336.01,57.747 +83198,337.06,58.917 +83199,338.14,60.071 +83200,339.23,61.209 +83201,334.78,57.731 +83202,335.78,58.93 +83203,336.8,60.112 +83204,337.84,61.278 +83205,333.55,57.716 +83206,334.5,58.943 +83207,335.47,60.153 +83208,336.45,61.345 +83209,332.33,57.702 +83210,333.22,58.956 +83211,334.14,60.193 +83212,335.07,61.411 +83213,331.1,57.69 +83214,331.94,58.97 +83215,332.8,60.232 +83216,333.68,61.476 +83217,329.88,57.678 +83218,330.66,58.984 +83219,331.47,60.272 +83220,332.29,61.541 +83221,328.65,57.667 +83222,329.38,58.998 +83223,330.13,60.311 +83224,330.9,61.604 +83225,327.43,57.657 +83226,328.1,59.013 +83227,328.8,60.349 +83228,329.51,61.666 +83229,326.21,57.649 +83230,326.83,59.028 +83231,327.47,60.387 +83232,328.13,61.726 +83233,324.98,57.641 +83234,325.55,59.043 +83235,326.13,60.425 +83236,326.74,61.786 +83237,323.76,57.635 +83238,324.27,59.059 +83239,324.8,60.463 +83240,325.35,61.844 +83241,322.54,57.629 +83242,322.99,59.075 +83243,323.46,60.5 +83244,323.96,61.902 +83245,321.32,57.625 +83246,321.71,59.092 +83247,322.13,60.536 +83248,322.57,61.958 +83249,320.1,57.622 +83250,320.43,59.109 +83251,320.79,60.572 +83252,321.18,62.013 +83253,318.88,57.621 +83254,319.15,59.126 +83255,319.45,60.608 +83256,319.79,62.067 +83257,317.66,57.62 +83258,317.87,59.144 +83259,318.12,60.643 +83260,318.4,62.119 +83261,316.44,57.621 +83262,316.6,59.162 +83263,316.78,60.678 +83264,317.01,62.17 +83265,315.22,57.623 +83266,315.32,59.18 +83267,315.45,60.713 +83268,315.61,62.22 +83269,314,57.626 +83270,314.04,59.199 +83271,314.11,60.747 +83272,314.22,62.269 +83273,312.78,57.631 +83274,312.76,59.218 +83275,312.78,60.78 +83276,312.83,62.317 +83277,311.57,57.637 +83278,311.48,59.238 +83279,311.44,60.814 +83280,311.44,62.363 +83281,310.35,57.644 +83282,310.2,59.258 +83283,310.11,60.846 +83284,310.05,62.408 +83285,309.13,57.652 +83286,308.92,59.279 +83287,308.77,60.879 +83288,308.66,62.451 +83289,307.91,57.662 +83290,307.64,59.3 +83291,307.43,60.911 +83292,307.27,62.494 +83293,306.69,57.673 +83294,306.37,59.321 +83295,306.1,60.942 +83296,305.88,62.535 +83297,305.47,57.685 +83298,305.09,59.343 +83299,304.76,60.973 +83300,304.49,62.574 +83301,304.25,57.699 +83302,303.81,59.365 +83303,303.43,61.003 +83304,303.1,62.613 +83305,303.03,57.714 +83306,302.53,59.388 +83307,302.09,61.033 +83308,301.72,62.65 +83309,301.81,57.73 +83310,301.25,59.411 +83311,300.76,61.063 +83312,300.33,62.685 +83313,300.59,57.748 +83314,299.97,59.435 +83315,299.42,61.092 +83316,298.94,62.72 +83317,299.37,57.767 +83318,298.69,59.459 +83319,298.09,61.121 +83320,297.55,62.753 +83321,298.15,57.787 +83322,297.41,59.483 +83323,296.75,61.149 +83324,296.16,62.785 +83325,296.93,57.809 +83326,296.13,59.508 +83327,295.42,61.177 +83328,294.78,62.815 +83329,295.71,57.832 +83330,294.85,59.533 +83331,294.08,61.204 +83332,293.39,62.844 +83333,294.48,57.857 +83334,293.57,59.559 +83335,292.75,61.231 +83336,292.01,62.872 +83337,293.26,57.882 +83338,292.29,59.585 +83339,291.41,61.257 +83340,290.62,62.898 +83341,292.04,57.91 +83342,291.01,59.612 +83343,290.08,61.283 +83344,289.24,62.923 +83345,290.81,57.938 +83346,289.73,59.639 +83347,288.75,61.308 +83348,287.85,62.947 +83349,289.58,57.968 +83350,288.44,59.666 +83351,287.41,61.333 +83352,286.47,62.969 +83353,288.36,57.999 +83354,287.16,59.694 +83355,286.08,61.358 +83356,285.09,62.99 +83357,287.13,58.032 +83358,285.88,59.723 +83359,284.74,61.382 +83360,283.71,63.01 +83361,285.9,58.066 +83362,284.6,59.752 +83363,283.41,61.405 +83364,282.33,63.028 +83365,284.67,58.101 +83366,283.31,59.781 +83367,282.08,61.429 +83368,280.95,63.046 +83369,283.44,58.138 +83370,282.03,59.81 +83371,280.75,61.451 +83372,279.57,63.061 +83373,282.21,58.176 +83374,280.75,59.84 +83375,279.41,61.474 +83376,278.19,63.076 +83377,280.98,58.215 +83378,279.46,59.871 +83379,278.08,61.495 +83380,276.82,63.089 +83381,279.74,58.256 +83382,278.18,59.902 +83383,276.75,61.517 +83384,275.44,63.101 +83385,278.51,58.298 +83386,276.89,59.933 +83387,275.42,61.538 +83388,274.07,63.112 +83389,277.27,58.341 +83390,275.61,59.965 +83391,274.09,61.558 +83392,272.69,63.121 +83393,276.03,58.385 +83394,274.32,59.997 +83395,272.76,61.578 +83396,271.32,63.129 +83397,274.79,58.431 +83398,273.04,60.03 +83399,271.43,61.598 +83400,269.95,63.136 +83401,273.55,58.478 +83402,271.75,60.063 +83403,270.1,61.617 +83404,268.58,63.142 +83405,272.31,58.526 +83406,270.46,60.096 +83407,268.77,61.636 +83408,267.21,63.146 +83409,271.07,58.576 +83410,269.18,60.13 +83411,267.44,61.654 +83412,265.84,63.149 +83413,269.82,58.626 +83414,267.89,60.164 +83415,266.11,61.672 +83416,264.47,63.151 +83417,268.57,58.678 +83418,266.6,60.198 +83419,264.78,61.689 +83420,263.11,63.152 +83421,267.33,58.731 +83422,265.31,60.233 +83423,263.46,61.707 +83424,261.74,63.152 +83425,266.08,58.786 +83426,264.02,60.269 +83427,262.13,61.723 +83428,260.38,63.15 +83429,264.82,58.841 +83430,262.73,60.304 +83431,260.8,61.74 +83432,259.02,63.148 +83433,263.57,58.897 +83434,261.44,60.34 +83435,259.48,61.756 +83436,257.66,63.144 +83437,262.32,58.955 +83438,260.15,60.377 +83439,258.15,61.771 +83440,256.3,63.139 +83441,261.06,59.014 +83442,258.86,60.413 +83443,256.82,61.786 +83444,254.94,63.133 +83445,259.8,59.074 +83446,257.56,60.45 +83447,255.5,61.801 +83448,253.58,63.126 +83449,258.54,59.134 +83450,256.27,60.488 +83451,254.18,61.815 +83452,252.23,63.118 +83453,257.28,59.196 +83454,254.98,60.526 +83455,252.85,61.829 +83456,250.87,63.109 +83457,256.02,59.259 +83458,253.68,60.564 +83459,251.53,61.843 +83460,249.52,63.099 +83461,254.75,59.323 +83462,252.39,60.602 +83463,250.2,61.857 +83464,248.17,63.088 +83465,253.48,59.388 +83466,251.09,60.641 +83467,248.88,61.87 +83468,246.82,63.076 +83469,252.21,59.454 +83470,249.8,60.68 +83471,247.56,61.882 +83472,245.47,63.063 +83473,250.94,59.521 +83474,248.5,60.719 +83475,246.24,61.895 +83476,244.13,63.049 +83477,249.67,59.588 +83478,247.2,60.759 +83479,244.92,61.907 +83480,242.78,63.034 +83481,248.39,59.657 +83482,245.91,60.799 +83483,243.6,61.918 +83484,241.44,63.018 +83485,247.12,59.726 +83486,244.61,60.839 +83487,242.28,61.93 +83488,240.1,63.001 +83489,245.84,59.796 +83490,243.31,60.879 +83491,240.96,61.941 +83492,238.76,62.984 +83493,244.56,59.867 +83494,242.01,60.92 +83495,239.64,61.952 +83496,237.42,62.965 +83497,243.27,59.939 +83498,240.71,60.961 +83499,238.32,61.963 +83500,236.09,62.946 +83501,241.99,60.012 +83502,239.41,61.002 +83503,237,61.973 +83504,234.75,62.926 +83505,240.7,60.085 +83506,238.1,61.043 +83507,235.69,61.983 +83508,233.42,62.905 +83509,239.41,60.159 +83510,236.8,61.085 +83511,234.37,61.993 +83512,232.09,62.884 +83513,238.12,60.234 +83514,235.5,61.127 +83515,233.05,62.002 +83516,230.76,62.862 +83517,236.82,60.309 +83518,234.2,61.169 +83519,231.74,62.012 +83520,229.43,62.839 +83521,235.53,60.385 +83522,232.89,61.211 +83523,230.42,62.021 +83524,228.1,62.815 +83525,234.23,60.461 +83526,231.59,61.253 +83527,229.11,62.029 +83528,226.78,62.791 +83529,232.93,60.538 +83530,230.28,61.296 +83531,227.8,62.038 +83532,225.45,62.766 +83533,231.63,60.616 +83534,228.97,61.339 +83535,226.48,62.047 +83536,224.13,62.741 +83537,230.33,60.694 +83538,227.67,61.381 +83539,225.17,62.055 +83540,222.81,62.715 +83541,229.02,60.772 +83542,226.36,61.425 +83543,223.86,62.063 +83544,221.49,62.689 +83545,227.71,60.851 +83546,225.05,61.468 +83547,222.55,62.071 +83548,220.18,62.662 +83549,226.4,60.931 +83550,223.74,61.511 +83551,221.24,62.079 +83552,218.86,62.635 +83553,225.09,61.01 +83554,222.43,61.555 +83555,219.93,62.086 +83556,217.55,62.607 +83557,223.78,61.09 +83558,221.12,61.598 +83559,218.62,62.094 +83560,216.24,62.579 +83561,222.46,61.171 +83562,219.81,61.642 +83563,217.31,62.101 +83564,214.93,62.55 +83565,221.14,61.252 +83566,218.5,61.685 +83567,216,62.108 +83568,213.63,62.521 +83569,219.82,61.333 +83570,217.19,61.729 +83571,214.69,62.115 +83572,212.32,62.492 +83573,218.5,61.414 +83574,215.87,61.773 +83575,213.38,62.122 +83576,211.02,62.462 +83577,217.18,61.495 +83578,214.56,61.817 +83579,212.08,62.129 +83580,209.72,62.432 +83581,215.85,61.577 +83582,213.24,61.861 +83583,210.77,62.136 +83584,208.42,62.402 +83585,214.52,61.658 +83586,211.93,61.905 +83587,209.47,62.143 +83588,207.12,62.372 +83589,213.19,61.74 +83590,210.61,61.949 +83591,208.16,62.149 +83592,205.82,62.342 +83593,211.86,61.822 +83594,209.3,61.993 +83595,206.86,62.156 +83596,204.53,62.311 +83597,210.52,61.904 +83598,207.98,62.037 +83599,205.55,62.162 +83600,203.23,62.28 +83601,209.19,61.986 +83602,206.66,62.082 +83603,204.25,62.169 +83604,201.94,62.249 +83605,207.85,62.068 +83606,205.34,62.126 +83607,202.95,62.175 +83608,200.65,62.218 +83609,206.51,62.15 +83610,204.02,62.17 +83611,201.65,62.182 +83612,199.37,62.188 +83613,205.17,62.231 +83614,202.7,62.214 +83615,200.35,62.188 +83616,198.08,62.157 +83617,203.83,62.313 +83618,201.38,62.258 +83619,199.05,62.195 +83620,196.8,62.126 +83621,202.48,62.395 +83622,200.06,62.302 +83623,197.74,62.201 +83624,195.51,62.095 +83625,201.13,62.476 +83626,198.74,62.346 +83627,196.45,62.208 +83628,194.23,62.064 +83629,199.79,62.557 +83630,197.42,62.39 +83631,195.15,62.214 +83632,192.95,62.034 +83633,198.44,62.638 +83634,196.1,62.433 +83635,193.85,62.221 +83636,191.68,62.003 +83637,197.08,62.719 +83638,194.77,62.477 +83639,192.55,62.228 +83640,190.4,61.973 +83641,195.73,62.799 +83642,193.45,62.52 +83643,191.25,62.234 +83644,189.13,61.943 +83645,194.37,62.879 +83646,192.13,62.564 +83647,189.96,62.241 +83648,187.85,61.913 +83649,193.02,62.959 +83650,190.8,62.607 +83651,188.66,62.248 +83652,186.58,61.883 +83653,191.66,63.039 +83654,189.47,62.65 +83655,187.36,62.255 +83656,185.32,61.854 +83657,190.3,63.118 +83658,188.15,62.693 +83659,186.07,62.262 +83660,184.05,61.825 +83661,188.94,63.196 +83662,186.82,62.736 +83663,184.77,62.269 +83664,182.78,61.796 +83665,187.57,63.274 +83666,185.49,62.779 +83667,183.48,62.276 +83668,181.52,61.768 +83669,186.21,63.352 +83670,184.17,62.822 +83671,182.18,62.284 +83672,180.26,61.74 +83673,184.84,63.429 +83674,182.84,62.864 +83675,180.89,62.291 +83676,178.99,61.713 +83677,183.48,63.505 +83678,181.51,62.906 +83679,179.6,62.299 +83680,177.73,61.686 +83681,182.11,63.581 +83682,180.18,62.948 +83683,178.31,62.307 +83684,176.48,61.659 +83685,180.74,63.657 +83686,178.85,62.99 +83687,177.01,62.315 +83688,175.22,61.634 +83689,179.37,63.731 +83690,177.52,63.032 +83691,175.72,62.323 +83692,173.96,61.608 +83693,177.99,63.806 +83694,176.19,63.073 +83695,174.43,62.332 +83696,172.71,61.583 +83697,176.62,63.879 +83698,174.86,63.114 +83699,173.14,62.34 +83700,171.46,61.559 +83701,175.25,63.952 +83702,173.53,63.155 +83703,171.85,62.349 +83704,170.21,61.536 +83705,173.87,64.024 +83706,172.2,63.196 +83707,170.56,62.358 +83708,168.96,61.513 +83709,172.49,64.095 +83710,170.86,63.236 +83711,169.27,62.368 +83712,167.71,61.491 +83713,171.11,64.166 +83714,169.53,63.276 +83715,167.98,62.377 +83716,166.46,61.469 +83717,169.73,64.235 +83718,168.2,63.316 +83719,166.69,62.387 +83720,165.22,61.449 +83721,168.35,64.304 +83722,166.86,63.356 +83723,165.4,62.397 +83724,163.97,61.429 +83725,166.97,64.372 +83726,165.53,63.395 +83727,164.12,62.407 +83728,162.73,61.409 +83729,165.59,64.44 +83730,164.2,63.434 +83731,162.83,62.418 +83732,161.49,61.391 +83733,164.21,64.506 +83734,162.86,63.473 +83735,161.54,62.428 +83736,160.25,61.373 +83737,162.82,64.571 +83738,161.53,63.511 +83739,160.25,62.439 +83740,159.01,61.357 +83741,161.44,64.636 +83742,160.19,63.55 +83743,158.97,62.451 +83744,157.77,61.341 +83745,160.05,64.7 +83746,158.85,63.587 +83747,157.68,62.462 +83748,156.53,61.326 +83749,158.67,64.762 +83750,157.52,63.625 +83751,156.39,62.474 +83752,155.29,61.312 +83753,157.28,64.824 +83754,156.18,63.662 +83755,155.11,62.486 +83756,154.05,61.299 +83757,155.89,64.885 +83758,154.85,63.699 +83759,153.82,62.499 +83760,152.82,61.287 +83761,154.5,64.944 +83762,153.51,63.735 +83763,152.54,62.512 +83764,151.59,61.276 +83765,153.11,65.003 +83766,152.17,63.771 +83767,151.25,62.525 +83768,150.35,61.265 +83769,151.73,65.06 +83770,150.83,63.807 +83771,149.97,62.538 +83772,149.12,61.256 +83773,150.34,65.117 +83774,149.5,63.842 +83775,148.68,62.552 +83776,147.89,61.248 +83777,148.95,65.172 +83778,148.16,63.877 +83779,147.4,62.566 +83780,146.66,61.241 +83781,147.55,65.227 +83782,146.82,63.912 +83783,146.11,62.581 +83784,145.42,61.235 +83785,146.16,65.28 +83786,145.48,63.946 +83787,144.83,62.596 +83788,144.19,61.23 +83789,144.77,65.332 +83790,144.15,63.98 +83791,143.54,62.611 +83792,142.97,61.227 +83793,143.38,65.383 +83794,142.81,64.013 +83795,142.26,62.627 +83796,141.74,61.224 +83797,141.99,65.433 +83798,141.47,64.046 +83799,140.98,62.643 +83800,140.51,61.223 +83801,140.59,65.482 +83802,140.13,64.079 +83803,139.69,62.659 +83804,139.28,61.222 +83805,139.2,65.529 +83806,138.79,64.111 +83807,138.41,62.676 +83808,138.05,61.223 +83809,137.81,65.575 +83810,137.45,64.143 +83811,137.12,62.693 +83812,136.83,61.225 +83813,136.42,65.621 +83814,136.11,64.175 +83815,135.84,62.71 +83816,135.6,61.228 +83817,135.02,65.664 +83818,134.77,64.206 +83819,134.56,62.728 +83820,134.37,61.233 +83821,133.63,65.707 +83822,133.44,64.236 +83823,133.27,62.746 +83824,133.15,61.238 +83825,132.24,65.749 +83826,132.1,64.267 +83827,131.99,62.765 +83828,131.92,61.245 +83829,130.84,65.789 +83830,130.76,64.296 +83831,130.71,62.784 +83832,130.69,61.253 +83833,129.45,65.828 +83834,129.42,64.326 +83835,129.42,62.803 +83836,129.47,61.262 +83837,128.06,65.866 +83838,128.08,64.355 +83839,128.14,62.823 +83840,128.24,61.273 +83841,126.67,65.902 +83842,126.74,64.383 +83843,126.86,62.844 +83844,127.02,61.284 +83845,125.27,65.938 +83846,125.4,64.411 +83847,125.57,62.864 +83848,125.79,61.297 +83849,123.88,65.972 +83850,124.06,64.439 +83851,124.29,62.885 +83852,124.56,61.312 +83853,122.49,66.005 +83854,122.72,64.466 +83855,123,62.907 +83856,123.34,61.327 +83857,121.1,66.036 +83858,121.38,64.493 +83859,121.72,62.929 +83860,122.11,61.344 +83861,119.71,66.066 +83862,120.05,64.519 +83863,120.44,62.951 +83864,120.88,61.362 +83865,118.31,66.095 +83866,118.71,64.545 +83867,119.15,62.974 +83868,119.66,61.382 +83869,116.92,66.123 +83870,117.37,64.571 +83871,117.87,62.997 +83872,118.43,61.402 +83873,115.53,66.15 +83874,116.03,64.596 +83875,116.58,63.02 +83876,117.2,61.424 +83877,114.14,66.175 +83878,114.69,64.62 +83879,115.3,63.044 +83880,115.97,61.447 +83881,112.75,66.199 +83882,113.35,64.644 +83883,114.01,63.068 +83884,114.75,61.472 +83885,111.37,66.221 +83886,112.02,64.668 +83887,112.73,63.093 +83888,113.52,61.498 +83889,109.98,66.243 +83890,110.68,64.691 +83891,111.44,63.118 +83892,112.29,61.525 +83893,108.59,66.263 +83894,109.34,64.714 +83895,110.16,63.144 +83896,111.06,61.553 +83897,107.2,66.282 +83898,108,64.737 +83899,108.87,63.17 +83900,109.83,61.583 +83901,105.82,66.3 +83902,106.66,64.759 +83903,107.59,63.196 +83904,108.59,61.614 +83905,104.43,66.316 +83906,105.33,64.78 +83907,106.3,63.223 +83908,107.36,61.646 +83909,103.05,66.331 +83910,103.99,64.801 +83911,105.02,63.25 +83912,106.13,61.679 +83913,101.66,66.345 +83914,102.65,64.822 +83915,103.73,63.278 +83916,104.89,61.714 +83917,100.28,66.358 +83918,101.32,64.842 +83919,102.44,63.306 +83920,103.66,61.75 +83921,98.897,66.369 +83922,99.982,64.862 +83923,101.15,63.335 +83924,102.42,61.787 +83925,97.515,66.379 +83926,98.646,64.881 +83927,99.866,63.363 +83928,101.19,61.826 +83929,96.135,66.388 +83930,97.31,64.9 +83931,98.578,63.393 +83932,99.949,61.865 +83933,94.755,66.396 +83934,95.975,64.919 +83935,97.29,63.422 +83936,98.71,61.906 +83937,93.376,66.403 +83938,94.64,64.937 +83939,96.001,63.452 +83940,97.47,61.948 +83941,91.998,66.408 +83942,93.306,64.955 +83943,94.712,63.483 +83944,96.229,61.991 +83945,90.622,66.412 +83946,91.972,64.972 +83947,93.422,63.513 +83948,94.987,62.036 +83949,89.246,66.415 +83950,90.638,64.989 +83951,92.132,63.544 +83952,93.743,62.081 +83953,87.872,66.417 +83954,89.304,65.006 +83955,90.842,63.576 +83956,92.498,62.128 +83957,86.498,66.418 +83958,87.971,65.022 +83959,89.551,63.608 +83960,91.252,62.176 +83961,85.126,66.418 +83962,86.638,65.038 +83963,88.26,63.64 +83964,90.005,62.225 +83965,83.755,66.416 +83966,85.306,65.053 +83967,86.968,63.673 +83968,88.756,62.275 +83969,82.385,66.414 +83970,83.974,65.068 +83971,85.676,63.706 +83972,87.506,62.326 +83973,81.016,66.41 +83974,82.642,65.083 +83975,84.383,63.739 +83976,86.255,62.379 +83977,79.648,66.405 +83978,81.311,65.097 +83979,83.09,63.773 +83980,85.001,62.432 +83981,78.282,66.4 +83982,79.981,65.111 +83983,81.796,63.807 +83984,83.747,62.487 +83985,76.917,66.393 +83986,78.65,65.125 +83987,80.502,63.841 +83988,82.491,62.542 +83989,75.553,66.385 +83990,77.32,65.138 +83991,79.208,63.876 +83992,81.233,62.599 +83993,74.191,66.376 +83994,75.991,65.151 +83995,77.912,63.911 +83996,79.974,62.656 +83997,72.83,66.366 +83998,74.662,65.163 +83999,76.617,63.946 +84000,78.713,62.715 +84001,71.471,66.356 +84002,73.334,65.176 +84003,75.321,63.982 +84004,77.451,62.774 +84005,70.112,66.344 +84006,72.006,65.187 +84007,74.024,64.017 +84008,76.186,62.834 +84009,68.756,66.331 +84010,70.678,65.199 +84011,72.726,64.054 +84012,74.92,62.896 +84013,67.4,66.318 +84014,69.351,65.21 +84015,71.429,64.09 +84016,73.653,62.958 +84017,66.047,66.303 +84018,68.025,65.221 +84019,70.13,64.127 +84020,72.383,63.021 +84021,64.694,66.288 +84022,66.698,65.232 +84023,68.831,64.164 +84024,71.112,63.085 +84025,63.343,66.272 +84026,65.373,65.242 +84027,67.531,64.201 +84028,69.839,63.149 +84029,61.994,66.255 +84030,64.048,65.252 +84031,66.231,64.239 +84032,68.564,63.215 +84033,60.646,66.237 +84034,62.724,65.262 +84035,64.931,64.277 +84036,67.288,63.281 +84037,59.3,66.218 +84038,61.4,65.272 +84039,63.629,64.315 +84040,66.009,63.348 +84041,57.955,66.199 +84042,60.076,65.281 +84043,62.327,64.353 +84044,64.729,63.416 +84045,56.612,66.179 +84046,58.753,65.29 +84047,61.025,64.392 +84048,63.447,63.485 +84049,55.271,66.158 +84050,57.431,65.298 +84051,59.721,64.43 +84052,62.163,63.554 +84053,53.931,66.137 +84054,56.109,65.307 +84055,58.417,64.469 +84056,60.877,63.624 +84057,52.592,66.114 +84058,54.788,65.315 +84059,57.113,64.508 +84060,59.589,63.694 +84061,51.256,66.092 +84062,53.467,65.323 +84063,55.808,64.548 +84064,58.299,63.765 +84065,49.921,66.068 +84066,52.147,65.331 +84067,54.502,64.587 +84068,57.007,63.837 +84069,48.588,66.044 +84070,50.828,65.339 +84071,53.196,64.627 +84072,55.713,63.909 +84073,47.256,66.019 +84074,49.509,65.346 +84075,51.889,64.667 +84076,54.417,63.982 +84077,45.926,65.994 +84078,48.19,65.353 +84079,50.581,64.707 +84080,53.119,64.055 +84081,44.598,65.969 +84082,46.873,65.361 +84083,49.273,64.747 +84084,51.82,64.128 +84085,43.271,65.942 +84086,45.555,65.367 +84087,47.964,64.788 +84088,50.518,64.203 +84089,41.947,65.916 +84090,44.239,65.374 +84091,46.654,64.828 +84092,49.214,64.277 +84093,40.623,65.889 +84094,42.923,65.381 +84095,45.344,64.869 +84096,47.909,64.352 +84097,39.302,65.861 +84098,41.607,65.387 +84099,44.033,64.909 +84100,46.601,64.427 +84101,37.982,65.833 +84102,40.292,65.394 +84103,42.722,64.95 +84104,45.291,64.503 +84105,36.665,65.805 +84106,38.978,65.4 +84107,41.41,64.991 +84108,43.98,64.579 +84109,35.348,65.777 +84110,37.664,65.406 +84111,40.097,65.032 +84112,42.666,64.655 +84113,34.034,65.748 +84114,36.351,65.412 +84115,38.783,65.073 +84116,41.35,64.731 +84117,32.721,65.719 +84118,35.038,65.418 +84119,37.469,65.114 +84120,40.033,64.808 +84121,31.41,65.689 +84122,33.726,65.423 +84123,36.155,65.155 +84124,38.713,64.885 +84125,30.101,65.66 +84126,32.415,65.429 +84127,34.839,65.197 +84128,37.392,64.962 +84129,28.794,65.63 +84130,31.104,65.435 +84131,33.523,65.238 +84132,36.068,65.039 +84133,27.488,65.6 +84134,29.794,65.44 +84135,32.206,65.279 +84136,34.743,65.116 +84137,26.184,65.57 +84138,28.484,65.446 +84139,30.889,65.321 +84140,33.416,65.193 +84141,24.882,65.54 +84142,27.175,65.451 +84143,29.571,65.362 +84144,32.086,65.27 +84145,23.582,65.509 +84146,25.867,65.457 +84147,28.253,65.403 +84148,30.755,65.348 +84149,22.283,65.479 +84150,24.559,65.462 +84151,26.933,65.445 +84152,29.422,65.425 +84153,20.986,65.449 +84154,23.252,65.468 +84155,25.613,65.486 +84156,28.087,65.502 +84157,19.691,65.419 +84158,21.945,65.473 +84159,24.293,65.527 +84160,26.751,65.579 +84161,18.397,65.388 +84162,20.639,65.479 +84163,22.972,65.568 +84164,25.412,65.656 +84165,17.106,65.358 +84166,19.333,65.484 +84167,21.65,65.61 +84168,24.072,65.733 +84169,15.815,65.328 +84170,18.028,65.49 +84171,20.328,65.651 +84172,22.729,65.81 +84173,14.527,65.298 +84174,16.723,65.495 +84175,19.005,65.692 +84176,21.386,65.886 +84177,13.24,65.268 +84178,15.419,65.501 +84179,17.682,65.733 +84180,20.04,65.963 +84181,11.955,65.239 +84182,14.116,65.507 +84183,16.357,65.774 +84184,18.692,66.039 +84185,10.672,65.209 +84186,12.813,65.512 +84187,15.033,65.814 +84188,17.343,66.115 +84189,9.3903,65.18 +84190,11.511,65.518 +84191,13.708,65.855 +84192,15.992,66.19 +84193,8.1103,65.151 +84194,10.209,65.524 +84195,12.382,65.896 +84196,14.64,66.265 +84197,6.8318,65.123 +84198,8.9078,65.53 +84199,11.055,65.936 +84200,13.285,66.34 +84201,5.555,65.094 +84202,7.6071,65.536 +84203,9.7284,65.977 +84204,11.93,66.415 +84205,4.2798,65.066 +84206,6.3069,65.542 +84207,8.4009,66.017 +84208,10.572,66.489 +84209,3.0061,65.039 +84210,5.0071,65.549 +84211,7.0728,66.057 +84212,9.2131,66.562 +84213,1.734,65.012 +84214,3.7079,65.555 +84215,5.7443,66.097 +84216,7.8526,66.635 +84217,0.4635,64.985 +84218,2.4092,65.562 +84219,4.4152,66.136 +84220,6.4906,66.708 +84221,359.19,64.959 +84222,1.111,65.568 +84223,3.0856,66.176 +84224,5.127,66.78 +84225,357.93,64.933 +84226,359.81,65.575 +84227,1.7554,66.215 +84228,3.7621,66.851 +84229,356.66,64.908 +84230,358.52,65.582 +84231,0.42483,66.254 +84232,2.3957,66.922 +84233,355.4,64.883 +84234,357.22,65.59 +84235,359.09,66.293 +84236,1.0279,66.993 +84237,354.13,64.859 +84238,355.92,65.597 +84239,357.76,66.332 +84240,359.66,67.063 +84241,352.87,64.835 +84242,354.63,65.605 +84243,356.43,66.371 +84244,358.29,67.132 +84245,351.61,64.813 +84246,353.33,65.613 +84247,355.1,66.409 +84248,356.92,67.2 +84249,350.35,64.79 +84250,352.04,65.621 +84251,353.76,66.447 +84252,355.54,67.268 +84253,349.09,64.769 +84254,350.74,65.629 +84255,352.43,66.485 +84256,354.17,67.335 +84257,347.84,64.748 +84258,349.45,65.637 +84259,351.1,66.522 +84260,352.79,67.401 +84261,346.58,64.728 +84262,348.15,65.646 +84263,349.76,66.56 +84264,351.42,67.467 +84265,345.33,64.708 +84266,346.86,65.655 +84267,348.43,66.597 +84268,350.04,67.532 +84269,344.08,64.69 +84270,345.57,65.664 +84271,347.09,66.633 +84272,348.66,67.596 +84273,342.83,64.672 +84274,344.27,65.674 +84275,345.76,66.67 +84276,347.28,67.659 +84277,341.58,64.655 +84278,342.98,65.683 +84279,344.42,66.706 +84280,345.9,67.721 +84281,340.33,64.638 +84282,341.69,65.693 +84283,343.09,66.742 +84284,344.52,67.783 +84285,339.08,64.623 +84286,340.4,65.704 +84287,341.75,66.778 +84288,343.14,67.843 +84289,337.83,64.609 +84290,339.11,65.714 +84291,340.41,66.813 +84292,341.75,67.903 +84293,336.59,64.595 +84294,337.82,65.725 +84295,339.08,66.848 +84296,340.37,67.962 +84297,335.34,64.582 +84298,336.53,65.736 +84299,337.74,66.883 +84300,338.98,68.02 +84301,334.1,64.57 +84302,335.24,65.748 +84303,336.4,66.917 +84304,337.6,68.076 +84305,332.86,64.56 +84306,333.94,65.76 +84307,335.06,66.951 +84308,336.21,68.132 +84309,331.61,64.55 +84310,332.66,65.772 +84311,333.72,66.985 +84312,334.82,68.187 +84313,330.37,64.541 +84314,331.37,65.784 +84315,332.38,67.018 +84316,333.43,68.241 +84317,329.13,64.533 +84318,330.08,65.797 +84319,331.05,67.051 +84320,332.04,68.294 +84321,327.89,64.526 +84322,328.79,65.81 +84323,329.71,67.084 +84324,330.65,68.346 +84325,326.65,64.521 +84326,327.5,65.823 +84327,328.37,67.116 +84328,329.26,68.397 +84329,325.42,64.516 +84330,326.21,65.837 +84331,327.03,67.148 +84332,327.87,68.447 +84333,324.18,64.512 +84334,324.92,65.851 +84335,325.69,67.179 +84336,326.48,68.495 +84337,322.94,64.51 +84338,323.63,65.866 +84339,324.35,67.211 +84340,325.09,68.543 +84341,321.71,64.508 +84342,322.34,65.881 +84343,323.01,67.241 +84344,323.7,68.589 +84345,320.47,64.508 +84346,321.06,65.896 +84347,321.67,67.272 +84348,322.3,68.635 +84349,319.24,64.509 +84350,319.77,65.911 +84351,320.33,67.302 +84352,320.91,68.679 +84353,318,64.511 +84354,318.48,65.927 +84355,318.99,67.331 +84356,319.52,68.722 +84357,316.77,64.514 +84358,317.19,65.943 +84359,317.65,67.361 +84360,318.13,68.764 +84361,315.53,64.518 +84362,315.91,65.96 +84363,316.3,67.39 +84364,316.73,68.805 +84365,314.3,64.524 +84366,314.62,65.977 +84367,314.96,67.418 +84368,315.34,68.845 +84369,313.07,64.53 +84370,313.33,65.995 +84371,313.62,67.446 +84372,313.94,68.883 +84373,311.84,64.538 +84374,312.04,66.012 +84375,312.28,67.474 +84376,312.55,68.92 +84377,310.6,64.547 +84378,310.76,66.031 +84379,310.94,67.501 +84380,311.16,68.957 +84381,309.37,64.557 +84382,309.47,66.049 +84383,309.6,67.528 +84384,309.76,68.992 +84385,308.14,64.569 +84386,308.18,66.068 +84387,308.26,67.554 +84388,308.37,69.025 +84389,306.91,64.581 +84390,306.89,66.088 +84391,306.92,67.58 +84392,306.97,69.058 +84393,305.68,64.595 +84394,305.61,66.107 +84395,305.58,67.606 +84396,305.58,69.089 +84397,304.44,64.61 +84398,304.32,66.128 +84399,304.23,67.631 +84400,304.19,69.119 +84401,303.21,64.626 +84402,303.03,66.148 +84403,302.89,67.656 +84404,302.79,69.148 +84405,301.98,64.644 +84406,301.74,66.169 +84407,301.55,67.68 +84408,301.4,69.176 +84409,300.75,64.663 +84410,300.46,66.191 +84411,300.21,67.704 +84412,300.01,69.203 +84413,299.52,64.683 +84414,299.17,66.212 +84415,298.87,67.728 +84416,298.61,69.228 +84417,298.28,64.704 +84418,297.88,66.235 +84419,297.53,67.751 +84420,297.22,69.252 +84421,297.05,64.727 +84422,296.59,66.257 +84423,296.19,67.774 +84424,295.83,69.275 +84425,295.82,64.75 +84426,295.31,66.28 +84427,294.85,67.796 +84428,294.44,69.296 +84429,294.58,64.775 +84430,294.02,66.304 +84431,293.51,67.818 +84432,293.04,69.317 +84433,293.35,64.801 +84434,292.73,66.327 +84435,292.17,67.839 +84436,291.65,69.336 +84437,292.12,64.829 +84438,291.44,66.352 +84439,290.83,67.86 +84440,290.26,69.354 +84441,290.88,64.858 +84442,290.15,66.376 +84443,289.48,67.881 +84444,288.87,69.371 +84445,289.65,64.888 +84446,288.86,66.401 +84447,288.14,67.901 +84448,287.48,69.386 +84449,288.41,64.919 +84450,287.58,66.427 +84451,286.8,67.921 +84452,286.09,69.401 +84453,287.17,64.951 +84454,286.29,66.452 +84455,285.47,67.94 +84456,284.71,69.414 +84457,285.94,64.985 +84458,285,66.479 +84459,284.13,67.959 +84460,283.32,69.426 +84461,284.7,65.019 +84462,283.71,66.505 +84463,282.79,67.978 +84464,281.93,69.437 +84465,283.46,65.055 +84466,282.42,66.532 +84467,281.45,67.996 +84468,280.54,69.446 +84469,282.22,65.092 +84470,281.13,66.559 +84471,280.11,68.014 +84472,279.16,69.455 +84473,280.98,65.131 +84474,279.84,66.587 +84475,278.77,68.031 +84476,277.77,69.462 +84477,279.74,65.17 +84478,278.55,66.615 +84479,277.43,68.048 +84480,276.39,69.468 +84481,278.5,65.211 +84482,277.25,66.644 +84483,276.09,68.065 +84484,275.01,69.473 +84485,277.25,65.253 +84486,275.96,66.673 +84487,274.76,68.081 +84488,273.62,69.477 +84489,276.01,65.296 +84490,274.67,66.702 +84491,273.42,68.097 +84492,272.24,69.48 +84493,274.77,65.34 +84494,273.38,66.732 +84495,272.08,68.112 +84496,270.86,69.481 +84497,273.52,65.385 +84498,272.09,66.762 +84499,270.74,68.128 +84500,269.48,69.482 +84501,272.27,65.431 +84502,270.79,66.792 +84503,269.41,68.142 +84504,268.11,69.481 +84505,271.03,65.479 +84506,269.5,66.823 +84507,268.07,68.157 +84508,266.73,69.48 +84509,269.78,65.527 +84510,268.21,66.854 +84511,266.74,68.171 +84512,265.35,69.477 +84513,268.53,65.577 +84514,266.91,66.885 +84515,265.4,68.184 +84516,263.98,69.473 +84517,267.27,65.627 +84518,265.62,66.917 +84519,264.07,68.197 +84520,262.6,69.468 +84521,266.02,65.679 +84522,264.32,66.949 +84523,262.73,68.21 +84524,261.23,69.462 +84525,264.77,65.732 +84526,263.03,66.981 +84527,261.4,68.223 +84528,259.86,69.455 +84529,263.51,65.785 +84530,261.73,67.014 +84531,260.06,68.235 +84532,258.49,69.448 +84533,262.25,65.84 +84534,260.44,67.047 +84535,258.73,68.247 +84536,257.12,69.439 +84537,261,65.895 +84538,259.14,67.08 +84539,257.4,68.259 +84540,255.75,69.429 +84541,259.74,65.952 +84542,257.84,67.114 +84543,256.06,68.27 +84544,254.38,69.418 +84545,258.47,66.009 +84546,256.55,67.148 +84547,254.73,68.281 +84548,253.02,69.407 +84549,257.21,66.067 +84550,255.25,67.182 +84551,253.4,68.291 +84552,251.65,69.394 +84553,255.95,66.127 +84554,253.95,67.217 +84555,252.07,68.302 +84556,250.29,69.38 +84557,254.68,66.187 +84558,252.65,67.251 +84559,250.74,68.312 +84560,248.93,69.366 +84561,253.41,66.248 +84562,251.35,67.286 +84563,249.41,68.321 +84564,247.57,69.351 +84565,252.14,66.309 +84566,250.05,67.322 +84567,248.08,68.331 +84568,246.21,69.335 +84569,250.87,66.372 +84570,248.75,67.357 +84571,246.75,68.34 +84572,244.85,69.318 +84573,249.6,66.435 +84574,247.45,67.393 +84575,245.42,68.349 +84576,243.5,69.3 +84577,248.33,66.499 +84578,246.15,67.429 +84579,244.09,68.357 +84580,242.14,69.282 +84581,247.05,66.564 +84582,244.84,67.466 +84583,242.76,68.366 +84584,240.79,69.263 +84585,245.77,66.629 +84586,243.54,67.502 +84587,241.43,68.374 +84588,239.44,69.243 +84589,244.49,66.695 +84590,242.24,67.539 +84591,240.11,68.382 +84592,238.09,69.222 +84593,243.21,66.762 +84594,240.93,67.576 +84595,238.78,68.39 +84596,236.74,69.201 +84597,241.93,66.829 +84598,239.63,67.613 +84599,237.46,68.397 +84600,235.39,69.179 +84601,240.64,66.897 +84602,238.32,67.651 +84603,236.13,68.404 +84604,234.05,69.157 +84605,239.36,66.966 +84606,237.02,67.688 +84607,234.81,68.411 +84608,232.7,69.133 +84609,238.07,67.035 +84610,235.71,67.726 +84611,233.48,68.418 +84612,231.36,69.11 +84613,236.78,67.105 +84614,234.4,67.764 +84615,232.16,68.425 +84616,230.02,69.085 +84617,235.49,67.175 +84618,233.1,67.802 +84619,230.83,68.431 +84620,228.68,69.061 +84621,234.19,67.245 +84622,231.79,67.84 +84623,229.51,68.437 +84624,227.35,69.035 +84625,232.9,67.316 +84626,230.48,67.879 +84627,228.19,68.444 +84628,226.01,69.009 +84629,231.6,67.388 +84630,229.17,67.917 +84631,226.87,68.449 +84632,224.68,68.983 +84633,230.3,67.46 +84634,227.86,67.956 +84635,225.55,68.455 +84636,223.34,68.956 +84637,229,67.532 +84638,226.55,67.995 +84639,224.23,68.461 +84640,222.01,68.929 +84641,227.7,67.604 +84642,225.24,68.034 +84643,222.91,68.466 +84644,220.68,68.901 +84645,226.39,67.677 +84646,223.93,68.073 +84647,221.59,68.472 +84648,219.36,68.874 +84649,225.08,67.75 +84650,222.61,68.112 +84651,220.27,68.477 +84652,218.03,68.845 +84653,223.78,67.824 +84654,221.3,68.151 +84655,218.95,68.482 +84656,216.71,68.817 +84657,222.46,67.897 +84658,219.99,68.19 +84659,217.63,68.488 +84660,215.38,68.788 +84661,221.15,67.971 +84662,218.67,68.23 +84663,216.32,68.493 +84664,214.06,68.759 +84665,219.84,68.045 +84666,217.36,68.269 +84667,215,68.498 +84668,212.75,68.73 +84669,218.52,68.119 +84670,216.04,68.309 +84671,213.68,68.502 +84672,211.43,68.7 +84673,217.2,68.194 +84674,214.73,68.348 +84675,212.37,68.507 +84676,210.11,68.671 +84677,215.88,68.268 +84678,213.41,68.388 +84679,211.05,68.512 +84680,208.8,68.641 +84681,214.56,68.342 +84682,212.09,68.427 +84683,209.74,68.517 +84684,207.49,68.611 +84685,213.23,68.417 +84686,210.77,68.467 +84687,208.43,68.522 +84688,206.18,68.581 +84689,211.91,68.491 +84690,209.45,68.506 +84691,207.11,68.526 +84692,204.87,68.551 +84693,210.58,68.565 +84694,208.13,68.546 +84695,205.8,68.531 +84696,203.56,68.521 +84697,209.25,68.64 +84698,206.81,68.585 +84699,204.49,68.536 +84700,202.26,68.491 +84701,207.92,68.714 +84702,205.49,68.625 +84703,203.18,68.54 +84704,200.95,68.461 +84705,206.59,68.788 +84706,204.17,68.664 +84707,201.87,68.545 +84708,199.65,68.431 +84709,205.25,68.862 +84710,202.85,68.704 +84711,200.56,68.55 +84712,198.35,68.401 +84713,203.91,68.936 +84714,201.53,68.743 +84715,199.25,68.555 +84716,197.05,68.371 +84717,202.57,69.01 +84718,200.21,68.782 +84719,197.94,68.559 +84720,195.76,68.341 +84721,201.23,69.083 +84722,198.88,68.822 +84723,196.63,68.564 +84724,194.46,68.312 +84725,199.89,69.156 +84726,197.56,68.861 +84727,195.32,68.569 +84728,193.17,68.283 +84729,198.55,69.229 +84730,196.23,68.9 +84731,194.01,68.574 +84732,191.88,68.254 +84733,197.2,69.302 +84734,194.91,68.939 +84735,192.71,68.58 +84736,190.58,68.225 +84737,195.85,69.374 +84738,193.58,68.977 +84739,191.4,68.585 +84740,189.3,68.196 +84741,194.5,69.446 +84742,192.26,69.016 +84743,190.09,68.59 +84744,188.01,68.168 +84745,193.15,69.517 +84746,190.93,69.055 +84747,188.79,68.596 +84748,186.72,68.14 +84749,191.8,69.588 +84750,189.6,69.093 +84751,187.48,68.601 +84752,185.44,68.113 +84753,190.45,69.659 +84754,188.27,69.132 +84755,186.18,68.607 +84756,184.16,68.086 +84757,189.09,69.729 +84758,186.94,69.17 +84759,184.88,68.613 +84760,182.88,68.059 +84761,187.73,69.799 +84762,185.61,69.208 +84763,183.57,68.619 +84764,181.6,68.033 +84765,186.37,69.868 +84766,184.28,69.245 +84767,182.27,68.625 +84768,180.32,68.007 +84769,185.01,69.937 +84770,182.95,69.283 +84771,180.97,68.631 +84772,179.05,67.981 +84773,183.65,70.005 +84774,181.62,69.321 +84775,179.67,68.637 +84776,177.77,67.957 +84777,182.29,70.073 +84778,180.29,69.358 +84779,178.37,68.644 +84780,176.5,67.932 +84781,180.92,70.14 +84782,178.96,69.395 +84783,177.06,68.651 +84784,175.23,67.909 +84785,179.56,70.206 +84786,177.63,69.432 +84787,175.76,68.658 +84788,173.96,67.886 +84789,178.19,70.272 +84790,176.3,69.468 +84791,174.46,68.665 +84792,172.69,67.863 +84793,176.82,70.337 +84794,174.96,69.505 +84795,173.16,68.673 +84796,171.42,67.841 +84797,175.45,70.401 +84798,173.63,69.541 +84799,171.87,68.68 +84800,170.15,67.82 +84801,174.08,70.464 +84802,172.29,69.577 +84803,170.57,68.688 +84804,168.89,67.8 +84805,172.7,70.527 +84806,170.96,69.613 +84807,169.27,68.696 +84808,167.63,67.78 +84809,171.33,70.589 +84810,169.62,69.648 +84811,167.97,68.705 +84812,166.36,67.761 +84813,169.96,70.651 +84814,168.29,69.683 +84815,166.67,68.713 +84816,165.1,67.743 +84817,168.58,70.711 +84818,166.95,69.718 +84819,165.38,68.722 +84820,163.84,67.726 +84821,167.2,70.771 +84822,165.62,69.753 +84823,164.08,68.732 +84824,162.59,67.709 +84825,165.82,70.83 +84826,164.28,69.787 +84827,162.78,68.741 +84828,161.33,67.693 +84829,164.44,70.888 +84830,162.94,69.821 +84831,161.49,68.751 +84832,160.07,67.678 +84833,163.06,70.945 +84834,161.61,69.855 +84835,160.19,68.761 +84836,158.82,67.664 +84837,161.68,71.001 +84838,160.27,69.888 +84839,158.9,68.771 +84840,157.56,67.651 +84841,160.3,71.056 +84842,158.93,69.921 +84843,157.6,68.782 +84844,156.31,67.639 +84845,158.91,71.11 +84846,157.59,69.954 +84847,156.31,68.793 +84848,155.06,67.627 +84849,157.53,71.164 +84850,156.25,69.986 +84851,155.01,68.804 +84852,153.81,67.617 +84853,156.14,71.216 +84854,154.91,70.019 +84855,153.72,68.815 +84856,152.56,67.608 +84857,154.76,71.268 +84858,153.57,70.05 +84859,152.43,68.827 +84860,151.31,67.599 +84861,153.37,71.318 +84862,152.23,70.082 +84863,151.13,68.839 +84864,150.06,67.592 +84865,151.98,71.368 +84866,150.89,70.113 +84867,149.84,68.852 +84868,148.82,67.585 +84869,150.59,71.416 +84870,149.55,70.144 +84871,148.55,68.865 +84872,147.57,67.58 +84873,149.21,71.463 +84874,148.21,70.174 +84875,147.25,68.878 +84876,146.33,67.575 +84877,147.82,71.51 +84878,146.87,70.204 +84879,145.96,68.892 +84880,145.08,67.572 +84881,146.43,71.555 +84882,145.53,70.234 +84883,144.67,68.905 +84884,143.84,67.57 +84885,145.03,71.599 +84886,144.19,70.264 +84887,143.38,68.92 +84888,142.59,67.569 +84889,143.64,71.642 +84890,142.85,70.293 +84891,142.09,68.934 +84892,141.35,67.569 +84893,142.25,71.684 +84894,141.51,70.321 +84895,140.79,68.949 +84896,140.11,67.57 +84897,140.86,71.725 +84898,140.17,70.35 +84899,139.5,68.965 +84900,138.87,67.572 +84901,139.47,71.765 +84902,138.82,70.377 +84903,138.21,68.98 +84904,137.63,67.575 +84905,138.07,71.804 +84906,137.48,70.405 +84907,136.92,68.997 +84908,136.39,67.58 +84909,136.68,71.841 +84910,136.14,70.432 +84911,135.63,69.013 +84912,135.15,67.586 +84913,135.29,71.878 +84914,134.8,70.459 +84915,134.34,69.03 +84916,133.91,67.592 +84917,133.89,71.913 +84918,133.46,70.485 +84919,133.05,69.047 +84920,132.67,67.6 +84921,132.5,71.947 +84922,132.11,70.511 +84923,131.76,69.065 +84924,131.43,67.61 +84925,131.11,71.98 +84926,130.77,70.537 +84927,130.47,69.083 +84928,130.19,67.62 +84929,129.71,72.012 +84930,129.43,70.562 +84931,129.18,69.101 +84932,128.96,67.632 +84933,128.32,72.042 +84934,128.09,70.587 +84935,127.89,69.12 +84936,127.72,67.644 +84937,126.92,72.072 +84938,126.74,70.611 +84939,126.6,69.139 +84940,126.48,67.658 +84941,125.53,72.1 +84942,125.4,70.635 +84943,125.3,69.159 +84944,125.24,67.673 +84945,124.13,72.127 +84946,124.06,70.659 +84947,124.01,69.179 +84948,124.01,67.69 +84949,122.74,72.153 +84950,122.71,70.682 +84951,122.72,69.199 +84952,122.77,67.707 +84953,121.34,72.178 +84954,121.37,70.704 +84955,121.43,69.22 +84956,121.53,67.726 +84957,119.95,72.201 +84958,120.03,70.727 +84959,120.14,69.241 +84960,120.29,67.746 +84961,118.56,72.223 +84962,118.69,70.749 +84963,118.85,69.263 +84964,119.06,67.768 +84965,117.16,72.245 +84966,117.34,70.77 +84967,117.56,69.285 +84968,117.82,67.79 +84969,115.77,72.265 +84970,116,70.792 +84971,116.27,69.307 +84972,116.58,67.814 +84973,114.38,72.283 +84974,114.66,70.812 +84975,114.98,69.33 +84976,115.34,67.839 +84977,112.98,72.301 +84978,113.32,70.833 +84979,113.69,69.354 +84980,114.11,67.865 +84981,111.59,72.317 +84982,111.97,70.853 +84983,112.4,69.377 +84984,112.87,67.892 +84985,110.2,72.333 +84986,110.63,70.872 +84987,111.11,69.401 +84988,111.63,67.921 +84989,108.81,72.347 +84990,109.29,70.891 +84991,109.82,69.426 +84992,110.39,67.951 +84993,107.42,72.36 +84994,107.95,70.91 +84995,108.52,69.45 +84996,109.15,67.982 +84997,106.02,72.371 +84998,106.61,70.929 +84999,107.23,69.476 +85000,107.91,68.014 +85001,104.63,72.382 +85002,105.26,70.947 +85003,105.94,69.501 +85004,106.67,68.047 +85005,103.25,72.391 +85006,103.92,70.964 +85007,104.65,69.527 +85008,105.43,68.082 +85009,101.86,72.4 +85010,102.58,70.981 +85011,103.36,69.553 +85012,104.19,68.117 +85013,100.47,72.407 +85014,101.24,70.998 +85015,102.06,69.58 +85016,102.95,68.154 +85017,99.08,72.413 +85018,99.898,71.015 +85019,100.77,69.607 +85020,101.7,68.192 +85021,97.693,72.418 +85022,98.558,71.031 +85023,99.478,69.635 +85024,100.46,68.232 +85025,96.307,72.422 +85026,97.217,71.046 +85027,98.185,69.663 +85028,99.215,68.272 +85029,94.921,72.424 +85030,95.877,71.062 +85031,96.892,69.691 +85032,97.97,68.314 +85033,93.537,72.426 +85034,94.537,71.077 +85035,95.598,69.72 +85036,96.725,68.356 +85037,92.153,72.426 +85038,93.197,71.091 +85039,94.304,69.749 +85040,95.478,68.4 +85041,90.77,72.426 +85042,91.858,71.105 +85043,93.009,69.778 +85044,94.231,68.445 +85045,89.387,72.424 +85046,90.518,71.119 +85047,91.715,69.808 +85048,92.982,68.491 +85049,88.006,72.422 +85050,89.18,71.133 +85051,90.42,69.838 +85052,91.733,68.538 +85053,86.626,72.418 +85054,87.841,71.146 +85055,89.124,69.868 +85056,90.483,68.586 +85057,85.247,72.413 +85058,86.503,71.159 +85059,87.829,69.899 +85060,89.231,68.635 +85061,83.868,72.407 +85062,85.165,71.171 +85063,86.533,69.93 +85064,87.979,68.685 +85065,82.491,72.401 +85066,83.827,71.183 +85067,85.236,69.961 +85068,86.725,68.736 +85069,81.115,72.393 +85070,82.49,71.195 +85071,83.939,69.993 +85072,85.47,68.788 +85073,79.74,72.384 +85074,81.153,71.207 +85075,82.642,70.025 +85076,84.215,68.841 +85077,78.366,72.375 +85078,79.817,71.218 +85079,81.345,70.057 +85080,82.957,68.895 +85081,76.993,72.364 +85082,78.481,71.229 +85083,80.046,70.09 +85084,81.699,68.95 +85085,75.621,72.353 +85086,77.145,71.239 +85087,78.748,70.123 +85088,80.439,69.006 +85089,74.251,72.34 +85090,75.809,71.25 +85091,77.449,70.156 +85092,79.179,69.063 +85093,72.882,72.327 +85094,74.474,71.259 +85095,76.15,70.19 +85096,77.916,69.121 +85097,71.514,72.313 +85098,73.14,71.269 +85099,74.85,70.224 +85100,76.653,69.179 +85101,70.147,72.298 +85102,71.806,71.279 +85103,73.55,70.258 +85104,75.388,69.239 +85105,68.781,72.282 +85106,70.472,71.288 +85107,72.249,70.292 +85108,74.121,69.299 +85109,67.417,72.266 +85110,69.139,71.296 +85111,70.948,70.327 +85112,72.853,69.36 +85113,66.055,72.248 +85114,67.806,71.305 +85115,69.646,70.362 +85116,71.584,69.422 +85117,64.693,72.23 +85118,66.474,71.313 +85119,68.344,70.397 +85120,70.313,69.484 +85121,63.333,72.211 +85122,65.142,71.321 +85123,67.041,70.433 +85124,69.041,69.547 +85125,61.974,72.192 +85126,63.81,71.329 +85127,65.738,70.468 +85128,67.767,69.611 +85129,60.617,72.172 +85130,62.479,71.337 +85131,64.434,70.504 +85132,66.491,69.676 +85133,59.261,72.151 +85134,61.149,71.344 +85135,63.13,70.54 +85136,65.214,69.741 +85137,57.907,72.129 +85138,59.819,71.351 +85139,61.825,70.577 +85140,63.936,69.807 +85141,56.554,72.107 +85142,58.49,71.358 +85143,60.519,70.613 +85144,62.655,69.874 +85145,55.202,72.084 +85146,57.161,71.365 +85147,59.214,70.65 +85148,61.373,69.941 +85149,53.852,72.061 +85150,55.832,71.372 +85151,57.907,70.687 +85152,60.089,70.009 +85153,52.504,72.037 +85154,54.504,71.378 +85155,56.6,70.724 +85156,58.804,70.077 +85157,51.157,72.012 +85158,53.177,71.384 +85159,55.292,70.761 +85160,57.517,70.146 +85161,49.811,71.987 +85162,51.85,71.39 +85163,53.984,70.799 +85164,56.228,70.215 +85165,48.467,71.961 +85166,50.523,71.396 +85167,52.676,70.836 +85168,54.938,70.285 +85169,47.125,71.936 +85170,49.197,71.402 +85171,51.366,70.874 +85172,53.645,70.355 +85173,45.784,71.909 +85174,47.872,71.407 +85175,50.056,70.912 +85176,52.351,70.425 +85177,44.445,71.882 +85178,46.547,71.413 +85179,48.746,70.95 +85180,51.055,70.496 +85181,43.108,71.855 +85182,45.223,71.418 +85183,47.435,70.988 +85184,49.758,70.567 +85185,41.772,71.828 +85186,43.899,71.423 +85187,46.123,71.026 +85188,48.458,70.639 +85189,40.437,71.8 +85190,42.576,71.428 +85191,44.811,71.065 +85192,47.157,70.711 +85193,39.105,71.771 +85194,41.253,71.433 +85195,43.498,71.103 +85196,45.854,70.783 +85197,37.774,71.743 +85198,39.931,71.438 +85199,42.185,71.142 +85200,44.549,70.855 +85201,36.444,71.714 +85202,38.609,71.443 +85203,40.871,71.18 +85204,43.242,70.928 +85205,35.116,71.685 +85206,37.288,71.448 +85207,39.556,71.219 +85208,41.934,71.001 +85209,33.79,71.656 +85210,35.968,71.452 +85211,38.241,71.258 +85212,40.623,71.074 +85213,32.466,71.627 +85214,34.648,71.457 +85215,36.925,71.297 +85216,39.311,71.147 +85217,31.143,71.597 +85218,33.329,71.462 +85219,35.609,71.335 +85220,37.997,71.22 +85221,29.822,71.568 +85222,32.01,71.466 +85223,34.292,71.374 +85224,36.681,71.293 +85225,28.502,71.538 +85226,30.692,71.471 +85227,32.974,71.413 +85228,35.363,71.367 +85229,27.184,71.508 +85230,29.374,71.475 +85231,31.656,71.452 +85232,34.044,71.44 +85233,25.868,71.478 +85234,28.057,71.48 +85235,30.337,71.491 +85236,32.722,71.513 +85237,24.554,71.448 +85238,26.74,71.484 +85239,29.017,71.53 +85240,31.399,71.587 +85241,23.241,71.419 +85242,25.424,71.489 +85243,27.697,71.569 +85244,30.074,71.66 +85245,21.929,71.389 +85246,24.109,71.493 +85247,26.377,71.607 +85248,28.747,71.733 +85249,20.62,71.359 +85250,22.794,71.498 +85251,25.055,71.646 +85252,27.418,71.806 +85253,19.312,71.33 +85254,21.479,71.502 +85255,23.734,71.685 +85256,26.088,71.879 +85257,18.006,71.3 +85258,20.166,71.507 +85259,22.411,71.724 +85260,24.756,71.952 +85261,16.701,71.271 +85262,18.852,71.512 +85263,21.088,71.762 +85264,23.422,72.024 +85265,15.398,71.242 +85266,17.54,71.516 +85267,19.764,71.801 +85268,22.086,72.096 +85269,14.097,71.213 +85270,16.227,71.521 +85271,18.44,71.839 +85272,20.748,72.168 +85273,12.797,71.184 +85274,14.916,71.526 +85275,17.115,71.878 +85276,19.409,72.24 +85277,11.499,71.156 +85278,13.605,71.531 +85279,15.79,71.916 +85280,18.068,72.312 +85281,10.202,71.128 +85282,12.294,71.536 +85283,14.464,71.954 +85284,16.725,72.383 +85285,8.9075,71.1 +85286,10.984,71.542 +85287,13.138,71.992 +85288,15.381,72.453 +85289,7.6142,71.073 +85290,9.6745,71.547 +85291,11.81,72.03 +85292,14.034,72.524 +85293,6.3224,71.046 +85294,8.3655,71.552 +85295,10.483,72.068 +85296,12.687,72.594 +85297,5.0323,71.019 +85298,7.057,71.558 +85299,9.1546,72.106 +85300,11.337,72.663 +85301,3.7436,70.993 +85302,5.749,71.564 +85303,7.8259,72.143 +85304,9.986,72.732 +85305,2.4565,70.967 +85306,4.4415,71.57 +85307,6.4966,72.181 +85308,8.6333,72.801 +85309,1.1709,70.942 +85310,3.1345,71.576 +85311,5.1668,72.218 +85312,7.279,72.869 +85313,359.89,70.917 +85314,1.828,71.582 +85315,3.8364,72.255 +85316,5.9231,72.936 +85317,358.6,70.893 +85318,0.522,71.588 +85319,2.5056,72.292 +85320,4.5657,73.003 +85321,357.32,70.869 +85322,359.22,71.595 +85323,1.1742,72.329 +85324,3.2068,73.07 +85325,356.04,70.846 +85326,357.91,71.602 +85327,359.84,72.365 +85328,1.8464,73.135 +85329,354.77,70.823 +85330,356.61,71.609 +85331,358.51,72.401 +85332,0.48445,73.201 +85333,353.49,70.802 +85334,355.3,71.616 +85335,357.18,72.437 +85336,359.12,73.265 +85337,352.21,70.78 +85338,354,71.624 +85339,355.84,72.473 +85340,357.76,73.329 +85341,350.94,70.76 +85342,352.7,71.631 +85343,354.51,72.509 +85344,356.39,73.392 +85345,349.67,70.74 +85346,351.39,71.639 +85347,353.18,72.544 +85348,355.02,73.454 +85349,348.4,70.721 +85350,350.09,71.647 +85351,351.84,72.579 +85352,353.65,73.516 +85353,347.13,70.703 +85354,348.79,71.656 +85355,350.51,72.614 +85356,352.28,73.577 +85357,345.86,70.685 +85358,347.49,71.665 +85359,349.17,72.649 +85360,350.91,73.637 +85361,344.59,70.668 +85362,346.19,71.674 +85363,347.83,72.683 +85364,349.54,73.696 +85365,343.32,70.652 +85366,344.89,71.683 +85367,346.5,72.717 +85368,348.17,73.755 +85369,342.06,70.637 +85370,343.59,71.692 +85371,345.16,72.751 +85372,346.79,73.812 +85373,340.79,70.623 +85374,342.29,71.702 +85375,343.82,72.784 +85376,345.41,73.869 +85377,339.53,70.609 +85378,340.99,71.712 +85379,342.49,72.818 +85380,344.04,73.925 +85381,338.27,70.597 +85382,339.69,71.723 +85383,341.15,72.851 +85384,342.66,73.98 +85385,337.01,70.585 +85386,338.39,71.733 +85387,339.81,72.883 +85388,341.28,74.034 +85389,335.75,70.574 +85390,337.09,71.744 +85391,338.47,72.915 +85392,339.9,74.087 +85393,334.49,70.565 +85394,335.79,71.756 +85395,337.13,72.947 +85396,338.52,74.139 +85397,333.23,70.556 +85398,334.49,71.767 +85399,335.79,72.979 +85400,337.13,74.191 +85401,331.98,70.548 +85402,333.2,71.779 +85403,334.45,73.01 +85404,335.75,74.241 +85405,330.72,70.541 +85406,331.9,71.791 +85407,333.11,73.041 +85408,334.37,74.29 +85409,329.47,70.536 +85410,330.6,71.804 +85411,331.77,73.072 +85412,332.98,74.339 +85413,328.22,70.531 +85414,329.3,71.817 +85415,330.43,73.102 +85416,331.6,74.386 +85417,326.96,70.527 +85418,328.01,71.83 +85419,329.09,73.132 +85420,330.21,74.432 +85421,325.71,70.525 +85422,326.71,71.844 +85423,327.75,73.162 +85424,328.82,74.477 +85425,324.46,70.523 +85426,325.42,71.858 +85427,326.41,73.191 +85428,327.43,74.522 +85429,323.21,70.523 +85430,324.12,71.873 +85431,325.06,73.22 +85432,326.04,74.565 +85433,321.96,70.523 +85434,322.82,71.887 +85435,323.72,73.249 +85436,324.65,74.607 +85437,320.71,70.525 +85438,321.53,71.903 +85439,322.38,73.277 +85440,323.26,74.648 +85441,319.46,70.528 +85442,320.23,71.918 +85443,321.04,73.305 +85444,321.87,74.688 +85445,318.22,70.532 +85446,318.94,71.934 +85447,319.69,73.332 +85448,320.48,74.726 +85449,316.97,70.537 +85450,317.64,71.95 +85451,318.35,73.36 +85452,319.09,74.764 +85453,315.72,70.544 +85454,316.35,71.967 +85455,317.01,73.386 +85456,317.7,74.8 +85457,314.48,70.551 +85458,315.06,71.984 +85459,315.66,73.413 +85460,316.31,74.836 +85461,313.23,70.56 +85462,313.76,72.001 +85463,314.32,73.439 +85464,314.91,74.87 +85465,311.99,70.57 +85466,312.47,72.019 +85467,312.98,73.464 +85468,313.52,74.903 +85469,310.74,70.581 +85470,311.17,72.038 +85471,311.63,73.489 +85472,312.13,74.935 +85473,309.5,70.593 +85474,309.88,72.056 +85475,310.29,73.514 +85476,310.73,74.966 +85477,308.25,70.607 +85478,308.58,72.075 +85479,308.95,73.539 +85480,309.34,74.996 +85481,307.01,70.621 +85482,307.29,72.095 +85483,307.6,73.563 +85484,307.94,75.024 +85485,305.77,70.637 +85486,306,72.114 +85487,306.26,73.586 +85488,306.55,75.051 +85489,304.52,70.654 +85490,304.7,72.135 +85491,304.91,73.61 +85492,305.16,75.078 +85493,303.28,70.672 +85494,303.41,72.155 +85495,303.57,73.632 +85496,303.76,75.103 +85497,302.04,70.692 +85498,302.12,72.176 +85499,302.23,73.655 +85500,302.37,75.126 +85501,300.8,70.713 +85502,300.82,72.198 +85503,300.88,73.677 +85504,300.97,75.149 +85505,299.55,70.735 +85506,299.53,72.22 +85507,299.54,73.699 +85508,299.58,75.171 +85509,298.31,70.758 +85510,298.23,72.242 +85511,298.19,73.72 +85512,298.18,75.191 +85513,297.07,70.782 +85514,296.94,72.264 +85515,296.85,73.741 +85516,296.79,75.21 +85517,295.83,70.808 +85518,295.65,72.288 +85519,295.5,73.761 +85520,295.39,75.228 +85521,294.58,70.835 +85522,294.35,72.311 +85523,294.16,73.781 +85524,294,75.245 +85525,293.34,70.863 +85526,293.06,72.335 +85527,292.82,73.801 +85528,292.61,75.26 +85529,292.1,70.892 +85530,291.76,72.359 +85531,291.47,73.821 +85532,291.21,75.275 +85533,290.85,70.923 +85534,290.47,72.384 +85535,290.13,73.839 +85536,289.82,75.288 +85537,289.61,70.954 +85538,289.18,72.409 +85539,288.78,73.858 +85540,288.43,75.3 +85541,288.36,70.987 +85542,287.88,72.434 +85543,287.44,73.876 +85544,287.04,75.311 +85545,287.12,71.021 +85546,286.59,72.46 +85547,286.1,73.894 +85548,285.64,75.321 +85549,285.88,71.056 +85550,285.29,72.486 +85551,284.75,73.911 +85552,284.25,75.33 +85553,284.63,71.093 +85554,284,72.513 +85555,283.41,73.928 +85556,282.86,75.338 +85557,283.39,71.13 +85558,282.7,72.54 +85559,282.07,73.945 +85560,281.47,75.344 +85561,282.14,71.169 +85562,281.41,72.567 +85563,280.72,73.961 +85564,280.08,75.349 +85565,280.89,71.209 +85566,280.11,72.595 +85567,279.38,73.977 +85568,278.69,75.354 +85569,279.65,71.25 +85570,278.82,72.623 +85571,278.04,73.993 +85572,277.3,75.357 +85573,278.4,71.292 +85574,277.52,72.652 +85575,276.69,74.008 +85576,275.91,75.359 +85577,277.15,71.336 +85578,276.23,72.681 +85579,275.35,74.023 +85580,274.53,75.36 +85581,275.9,71.38 +85582,274.93,72.71 +85583,274.01,74.037 +85584,273.14,75.36 +85585,274.65,71.426 +85586,273.63,72.74 +85587,272.67,74.051 +85588,271.75,75.359 +85589,273.4,71.472 +85590,272.34,72.77 +85591,271.33,74.065 +85592,270.37,75.357 +85593,272.15,71.52 +85594,271.04,72.8 +85595,269.98,74.078 +85596,268.98,75.354 +85597,270.9,71.569 +85598,269.74,72.831 +85599,268.64,74.092 +85600,267.6,75.349 +85601,269.64,71.618 +85602,268.44,72.862 +85603,267.3,74.104 +85604,266.22,75.344 +85605,268.39,71.669 +85606,267.14,72.893 +85607,265.96,74.117 +85608,264.83,75.338 +85609,267.13,71.721 +85610,265.85,72.925 +85611,264.62,74.129 +85612,263.45,75.331 +85613,265.88,71.774 +85614,264.55,72.957 +85615,263.28,74.141 +85616,262.07,75.323 +85617,264.62,71.827 +85618,263.25,72.989 +85619,261.94,74.152 +85620,260.69,75.314 +85621,263.36,71.882 +85622,261.95,73.022 +85623,260.6,74.163 +85624,259.32,75.304 +85625,262.1,71.938 +85626,260.65,73.055 +85627,259.26,74.174 +85628,257.94,75.293 +85629,260.84,71.994 +85630,259.35,73.088 +85631,257.92,74.184 +85632,256.56,75.281 +85633,259.58,72.052 +85634,258.05,73.122 +85635,256.59,74.195 +85636,255.19,75.268 +85637,258.32,72.11 +85638,256.75,73.156 +85639,255.25,74.205 +85640,253.81,75.255 +85641,257.05,72.169 +85642,255.45,73.19 +85643,253.91,74.214 +85644,252.44,75.24 +85645,255.79,72.229 +85646,254.14,73.224 +85647,252.57,74.224 +85648,251.07,75.225 +85649,254.52,72.29 +85650,252.84,73.259 +85651,251.24,74.233 +85652,249.7,75.209 +85653,253.25,72.352 +85654,251.54,73.294 +85655,249.9,74.242 +85656,248.33,75.192 +85657,251.99,72.414 +85658,250.24,73.329 +85659,248.56,74.25 +85660,246.96,75.175 +85661,250.72,72.478 +85662,248.93,73.365 +85663,247.23,74.259 +85664,245.6,75.157 +85665,249.44,72.541 +85666,247.63,73.401 +85667,245.89,74.267 +85668,244.23,75.138 +85669,248.17,72.606 +85670,246.32,73.437 +85671,244.56,74.275 +85672,242.87,75.118 +85673,246.9,72.671 +85674,245.02,73.473 +85675,243.22,74.282 +85676,241.5,75.097 +85677,245.62,72.737 +85678,243.71,73.509 +85679,241.89,74.29 +85680,240.14,75.076 +85681,244.34,72.804 +85682,242.41,73.546 +85683,240.56,74.297 +85684,238.78,75.055 +85685,243.06,72.871 +85686,241.1,73.583 +85687,239.22,74.304 +85688,237.42,75.032 +85689,241.78,72.939 +85690,239.79,73.62 +85691,237.89,74.311 +85692,236.07,75.01 +85693,240.5,73.007 +85694,238.49,73.657 +85695,236.56,74.318 +85696,234.71,74.986 +85697,239.22,73.076 +85698,237.18,73.695 +85699,235.23,74.324 +85700,233.35,74.962 +85701,237.93,73.146 +85702,235.87,73.733 +85703,233.9,74.331 +85704,232,74.938 +85705,236.65,73.215 +85706,234.56,73.77 +85707,232.57,74.337 +85708,230.65,74.913 +85709,235.36,73.286 +85710,233.25,73.808 +85711,231.24,74.343 +85712,229.3,74.887 +85713,234.07,73.357 +85714,231.94,73.846 +85715,229.91,74.349 +85716,227.95,74.861 +85717,232.78,73.428 +85718,230.63,73.885 +85719,228.58,74.355 +85720,226.6,74.835 +85721,231.48,73.499 +85722,229.32,73.923 +85723,227.25,74.36 +85724,225.26,74.808 +85725,230.19,73.571 +85726,228.01,73.962 +85727,225.92,74.366 +85728,223.91,74.781 +85729,228.89,73.643 +85730,226.69,74 +85731,224.59,74.371 +85732,222.57,74.753 +85733,227.59,73.716 +85734,225.38,74.039 +85735,223.26,74.376 +85736,221.23,74.726 +85737,226.29,73.789 +85738,224.07,74.078 +85739,221.94,74.382 +85740,219.89,74.698 +85741,224.99,73.862 +85742,222.75,74.117 +85743,220.61,74.387 +85744,218.55,74.669 +85745,223.69,73.935 +85746,221.44,74.156 +85747,219.29,74.392 +85748,217.22,74.641 +85749,222.38,74.008 +85750,220.12,74.195 +85751,217.96,74.397 +85752,215.88,74.612 +85753,221.08,74.082 +85754,218.81,74.234 +85755,216.64,74.402 +85756,214.55,74.583 +85757,219.77,74.155 +85758,217.49,74.273 +85759,215.31,74.407 +85760,213.22,74.554 +85761,218.46,74.229 +85762,216.18,74.312 +85763,213.99,74.411 +85764,211.89,74.525 +85765,217.14,74.303 +85766,214.86,74.351 +85767,212.67,74.416 +85768,210.56,74.495 +85769,215.83,74.377 +85770,213.54,74.391 +85771,211.34,74.421 +85772,209.23,74.466 +85773,214.51,74.451 +85774,212.22,74.43 +85775,210.02,74.426 +85776,207.91,74.436 +85777,213.2,74.525 +85778,210.9,74.469 +85779,208.7,74.431 +85780,206.58,74.407 +85781,211.88,74.599 +85782,209.58,74.509 +85783,207.38,74.436 +85784,205.26,74.377 +85785,210.56,74.672 +85786,208.26,74.548 +85787,206.06,74.44 +85788,203.94,74.348 +85789,209.23,74.746 +85790,206.94,74.587 +85791,204.74,74.445 +85792,202.62,74.319 +85793,207.91,74.82 +85794,205.62,74.626 +85795,203.42,74.45 +85796,201.3,74.289 +85797,206.58,74.893 +85798,204.3,74.665 +85799,202.1,74.455 +85800,199.99,74.26 +85801,205.26,74.966 +85802,202.97,74.705 +85803,200.78,74.46 +85804,198.67,74.231 +85805,203.93,75.039 +85806,201.65,74.744 +85807,199.47,74.465 +85808,197.36,74.202 +85809,202.59,75.112 +85810,200.33,74.783 +85811,198.15,74.47 +85812,196.05,74.173 +85813,201.26,75.184 +85814,199,74.821 +85815,196.83,74.476 +85816,194.74,74.145 +85817,199.93,75.257 +85818,197.68,74.86 +85819,195.52,74.481 +85820,193.43,74.117 +85821,198.59,75.329 +85822,196.35,74.899 +85823,194.2,74.486 +85824,192.13,74.089 +85825,197.25,75.4 +85826,195.02,74.938 +85827,192.89,74.492 +85828,190.82,74.061 +85829,195.91,75.471 +85830,193.7,74.976 +85831,191.57,74.497 +85832,189.52,74.034 +85833,194.57,75.542 +85834,192.37,75.014 +85835,190.26,74.503 +85836,188.22,74.007 +85837,193.22,75.612 +85838,191.04,75.053 +85839,188.94,74.509 +85840,186.92,73.981 +85841,191.88,75.682 +85842,189.71,75.091 +85843,187.63,74.515 +85844,185.62,73.955 +85845,190.53,75.752 +85846,188.38,75.129 +85847,186.32,74.521 +85848,184.32,73.929 +85849,189.18,75.821 +85850,187.05,75.167 +85851,185.01,74.528 +85852,183.03,73.904 +85853,187.83,75.889 +85854,185.72,75.204 +85855,183.69,74.534 +85856,181.74,73.879 +85857,186.48,75.957 +85858,184.39,75.242 +85859,182.38,74.541 +85860,180.44,73.855 +85861,185.13,76.024 +85862,183.06,75.279 +85863,181.07,74.548 +85864,179.15,73.831 +85865,183.78,76.091 +85866,181.73,75.316 +85867,179.76,74.555 +85868,177.86,73.808 +85869,182.42,76.157 +85870,180.4,75.353 +85871,178.45,74.563 +85872,176.58,73.786 +85873,181.06,76.223 +85874,179.07,75.39 +85875,177.14,74.57 +85876,175.29,73.764 +85877,179.7,76.288 +85878,177.73,75.426 +85879,175.84,74.578 +85880,174,73.743 +85881,178.34,76.352 +85882,176.4,75.462 +85883,174.53,74.586 +85884,172.72,73.722 +85885,176.98,76.415 +85886,175.06,75.498 +85887,173.22,74.594 +85888,171.44,73.702 +85889,175.62,76.478 +85890,173.73,75.534 +85891,171.91,74.603 +85892,170.16,73.683 +85893,174.25,76.54 +85894,172.39,75.57 +85895,170.61,74.611 +85896,168.88,73.665 +85897,172.88,76.601 +85898,171.06,75.605 +85899,169.3,74.62 +85900,167.6,73.647 +85901,171.52,76.661 +85902,169.72,75.64 +85903,167.99,74.63 +85904,166.32,73.63 +85905,170.15,76.721 +85906,168.39,75.675 +85907,166.69,74.639 +85908,165.05,73.614 +85909,168.78,76.78 +85910,167.05,75.709 +85911,165.38,74.649 +85912,163.77,73.599 +85913,167.41,76.837 +85914,165.71,75.743 +85915,164.08,74.659 +85916,162.5,73.584 +85917,166.03,76.894 +85918,164.37,75.777 +85919,162.77,74.669 +85920,161.23,73.571 +85921,164.66,76.951 +85922,163.03,75.811 +85923,161.47,74.68 +85924,159.96,73.558 +85925,163.28,77.006 +85926,161.7,75.844 +85927,160.17,74.691 +85928,158.69,73.546 +85929,161.91,77.06 +85930,160.36,75.877 +85931,158.86,74.702 +85932,157.42,73.536 +85933,160.53,77.113 +85934,159.02,75.91 +85935,157.56,74.714 +85936,156.15,73.526 +85937,159.15,77.166 +85938,157.68,75.942 +85939,156.26,74.726 +85940,154.88,73.517 +85941,157.77,77.217 +85942,156.34,75.974 +85943,154.95,74.738 +85944,153.62,73.509 +85945,156.39,77.268 +85946,155,76.006 +85947,153.65,74.751 +85948,152.35,73.502 +85949,155.01,77.317 +85950,153.66,76.038 +85951,152.35,74.764 +85952,151.09,73.496 +85953,153.63,77.366 +85954,152.31,76.069 +85955,151.05,74.777 +85956,149.83,73.491 +85957,152.24,77.413 +85958,150.97,76.1 +85959,149.75,74.791 +85960,148.57,73.487 +85961,150.86,77.459 +85962,149.63,76.13 +85963,148.45,74.805 +85964,147.31,73.484 +85965,149.48,77.505 +85966,148.29,76.16 +85967,147.15,74.819 +85968,146.05,73.483 +85969,148.09,77.549 +85970,146.95,76.19 +85971,145.85,74.834 +85972,144.79,73.482 +85973,146.7,77.592 +85974,145.6,76.219 +85975,144.55,74.849 +85976,143.53,73.483 +85977,145.32,77.634 +85978,144.26,76.248 +85979,143.25,74.865 +85980,142.27,73.484 +85981,143.93,77.675 +85982,142.92,76.277 +85983,141.95,74.88 +85984,141.02,73.487 +85985,142.54,77.715 +85986,141.57,76.305 +85987,140.65,74.897 +85988,139.76,73.491 +85989,141.15,77.754 +85990,140.23,76.333 +85991,139.35,74.913 +85992,138.51,73.496 +85993,139.76,77.792 +85994,138.88,76.361 +85995,138.05,74.93 +85996,137.25,73.502 +85997,138.37,77.828 +85998,137.54,76.388 +85999,136.75,74.948 +86000,136,73.509 +86001,136.98,77.864 +86002,136.2,76.414 +86003,135.45,74.966 +86004,134.75,73.518 +86005,135.58,77.898 +86006,134.85,76.441 +86007,134.15,74.984 +86008,133.49,73.527 +86009,134.19,77.931 +86010,133.51,76.467 +86011,132.86,75.002 +86012,132.24,73.538 +86013,132.8,77.963 +86014,132.16,76.493 +86015,131.56,75.021 +86016,130.99,73.55 +86017,131.41,77.994 +86018,130.82,76.518 +86019,130.26,75.041 +86020,129.74,73.564 +86021,130.01,78.023 +86022,129.47,76.543 +86023,128.96,75.061 +86024,128.49,73.578 +86025,128.62,78.052 +86026,128.13,76.567 +86027,127.66,75.081 +86028,127.24,73.594 +86029,127.23,78.079 +86030,126.78,76.591 +86031,126.37,75.101 +86032,125.99,73.611 +86033,125.83,78.105 +86034,125.43,76.615 +86035,125.07,75.122 +86036,124.74,73.629 +86037,124.44,78.13 +86038,124.09,76.638 +86039,123.77,75.144 +86040,123.49,73.648 +86041,123.04,78.154 +86042,122.74,76.661 +86043,122.47,75.166 +86044,122.24,73.669 +86045,121.65,78.177 +86046,121.4,76.684 +86047,121.18,75.188 +86048,120.99,73.691 +86049,120.25,78.198 +86050,120.05,76.706 +86051,119.88,75.211 +86052,119.74,73.714 +86053,118.86,78.218 +86054,118.7,76.727 +86055,118.58,75.234 +86056,118.49,73.738 +86057,117.46,78.237 +86058,117.36,76.749 +86059,117.28,75.257 +86060,117.24,73.764 +86061,116.07,78.255 +86062,116.01,76.77 +86063,115.99,75.281 +86064,115.99,73.791 +86065,114.67,78.272 +86066,114.67,76.79 +86067,114.69,75.305 +86068,114.75,73.819 +86069,113.28,78.288 +86070,113.32,76.81 +86071,113.39,75.33 +86072,113.5,73.848 +86073,111.89,78.302 +86074,111.97,76.83 +86075,112.09,75.355 +86076,112.25,73.878 +86077,110.49,78.315 +86078,110.63,76.85 +86079,110.8,75.381 +86080,111,73.91 +86081,109.1,78.327 +86082,109.28,76.869 +86083,109.5,75.407 +86084,109.75,73.943 +86085,107.7,78.338 +86086,107.94,76.887 +86087,108.2,75.433 +86088,108.5,73.977 +86089,106.31,78.348 +86090,106.59,76.905 +86091,106.9,75.46 +86092,107.25,74.012 +86093,104.92,78.357 +86094,105.24,76.923 +86095,105.61,75.487 +86096,106,74.049 +86097,103.52,78.364 +86098,103.9,76.941 +86099,104.31,75.514 +86100,104.75,74.087 +86101,102.13,78.37 +86102,102.55,76.958 +86103,103.01,75.542 +86104,103.5,74.125 +86105,100.74,78.376 +86106,101.21,76.975 +86107,101.71,75.571 +86108,102.25,74.166 +86109,99.346,78.38 +86110,99.861,76.991 +86111,100.41,75.599 +86112,101,74.207 +86113,97.955,78.383 +86114,98.516,77.007 +86115,99.113,75.628 +86116,99.749,74.249 +86117,96.564,78.385 +86118,97.171,77.023 +86119,97.814,75.658 +86120,98.497,74.293 +86121,95.174,78.386 +86122,95.826,77.038 +86123,96.515,75.688 +86124,97.244,74.337 +86125,93.785,78.386 +86126,94.481,77.053 +86127,95.216,75.718 +86128,95.991,74.383 +86129,92.396,78.384 +86130,93.136,77.067 +86131,93.917,75.749 +86132,94.737,74.43 +86133,91.007,78.382 +86134,91.792,77.082 +86135,92.617,75.78 +86136,93.483,74.478 +86137,89.62,78.379 +86138,90.448,77.095 +86139,91.317,75.811 +86140,92.228,74.527 +86141,88.233,78.375 +86142,89.104,77.109 +86143,90.016,75.843 +86144,90.972,74.577 +86145,86.846,78.369 +86146,87.76,77.122 +86147,88.716,75.875 +86148,89.716,74.629 +86149,85.461,78.363 +86150,86.416,77.135 +86151,87.415,75.907 +86152,88.459,74.681 +86153,84.076,78.356 +86154,85.073,77.148 +86155,86.114,75.94 +86156,87.201,74.734 +86157,82.692,78.347 +86158,83.73,77.16 +86159,84.813,75.973 +86160,85.942,74.788 +86161,81.309,78.338 +86162,82.387,77.172 +86163,83.511,76.006 +86164,84.683,74.844 +86165,79.927,78.328 +86166,81.045,77.183 +86167,82.209,76.04 +86168,83.422,74.9 +86169,78.546,78.317 +86170,79.703,77.195 +86171,80.907,76.074 +86172,82.161,74.957 +86173,77.166,78.305 +86174,78.361,77.206 +86175,79.604,76.108 +86176,80.898,75.015 +86177,75.786,78.292 +86178,77.019,77.216 +86179,78.301,76.143 +86180,79.635,75.074 +86181,74.408,78.279 +86182,75.678,77.227 +86183,76.997,76.178 +86184,78.37,75.134 +86185,73.031,78.264 +86186,74.337,77.237 +86187,75.694,76.213 +86188,77.105,75.195 +86189,71.655,78.249 +86190,72.996,77.247 +86191,74.39,76.249 +86192,75.838,75.257 +86193,70.279,78.233 +86194,71.656,77.256 +86195,73.085,76.284 +86196,74.57,75.319 +86197,68.905,78.216 +86198,70.316,77.266 +86199,71.78,76.32 +86200,73.302,75.382 +86201,67.532,78.198 +86202,68.976,77.275 +86203,70.475,76.357 +86204,72.031,75.446 +86205,66.161,78.18 +86206,67.637,77.284 +86207,69.169,76.393 +86208,70.76,75.511 +86209,64.79,78.161 +86210,66.298,77.292 +86211,67.863,76.43 +86212,69.488,75.577 +86213,63.421,78.141 +86214,64.96,77.301 +86215,66.556,76.467 +86216,68.214,75.643 +86217,62.052,78.121 +86218,63.622,77.309 +86219,65.249,76.505 +86220,66.939,75.71 +86221,60.685,78.1 +86222,62.284,77.317 +86223,63.942,76.542 +86224,65.663,75.778 +86225,59.32,78.078 +86226,60.947,77.325 +86227,62.634,76.58 +86228,64.385,75.846 +86229,57.955,78.056 +86230,59.61,77.332 +86231,61.325,76.618 +86232,63.106,75.915 +86233,56.592,78.033 +86234,58.273,77.34 +86235,60.016,76.656 +86236,61.826,75.985 +86237,55.23,78.009 +86238,56.937,77.347 +86239,58.707,76.695 +86240,60.544,76.055 +86241,53.87,77.985 +86242,55.602,77.354 +86243,57.397,76.733 +86244,59.261,76.125 +86245,52.51,77.961 +86246,54.267,77.361 +86247,56.087,76.772 +86248,57.976,76.197 +86249,51.152,77.935 +86250,52.932,77.367 +86251,54.776,76.811 +86252,56.69,76.268 +86253,49.796,77.91 +86254,51.598,77.374 +86255,53.465,76.85 +86256,55.403,76.34 +86257,48.441,77.884 +86258,50.264,77.38 +86259,52.153,76.889 +86260,54.114,76.413 +86261,47.087,77.858 +86262,48.93,77.387 +86263,50.84,76.929 +86264,52.823,76.486 +86265,45.735,77.831 +86266,47.598,77.393 +86267,49.527,76.968 +86268,51.531,76.559 +86269,44.384,77.804 +86270,46.265,77.399 +86271,48.214,77.008 +86272,50.238,76.633 +86273,43.035,77.776 +86274,44.933,77.405 +86275,46.9,77.047 +86276,48.942,76.707 +86277,41.687,77.749 +86278,43.602,77.411 +86279,45.586,77.087 +86280,47.646,76.781 +86281,40.34,77.721 +86282,42.271,77.416 +86283,44.271,77.127 +86284,46.347,76.856 +86285,38.995,77.692 +86286,40.94,77.422 +86287,42.955,77.167 +86288,45.047,76.931 +86289,37.652,77.664 +86290,39.61,77.428 +86291,41.639,77.207 +86292,43.746,77.006 +86293,36.31,77.635 +86294,38.281,77.433 +86295,40.322,77.248 +86296,42.443,77.081 +86297,34.969,77.606 +86298,36.952,77.439 +86299,39.005,77.288 +86300,41.138,77.157 +86301,33.63,77.577 +86302,35.623,77.444 +86303,37.687,77.328 +86304,39.831,77.232 +86305,32.293,77.548 +86306,34.295,77.45 +86307,36.369,77.369 +86308,38.523,77.308 +86309,30.957,77.519 +86310,32.968,77.455 +86311,35.05,77.409 +86312,37.213,77.383 +86313,29.623,77.489 +86314,31.641,77.46 +86315,33.731,77.449 +86316,35.902,77.459 +86317,28.29,77.46 +86318,30.314,77.466 +86319,32.411,77.49 +86320,34.589,77.535 +86321,26.958,77.431 +86322,28.988,77.471 +86323,31.09,77.53 +86324,33.274,77.611 +86325,25.629,77.401 +86326,27.663,77.476 +86327,29.769,77.571 +86328,31.958,77.686 +86329,24.3,77.372 +86330,26.338,77.482 +86331,28.447,77.611 +86332,30.639,77.762 +86333,22.974,77.343 +86334,25.013,77.487 +86335,27.125,77.651 +86336,29.32,77.838 +86337,21.649,77.314 +86338,23.689,77.493 +86339,25.802,77.692 +86340,27.998,77.913 +86341,20.325,77.285 +86342,22.366,77.498 +86343,24.479,77.732 +86344,26.675,77.988 +86345,19.003,77.256 +86346,21.043,77.504 +86347,23.155,77.772 +86348,25.35,78.063 +86349,17.682,77.227 +86350,19.72,77.51 +86351,21.83,77.813 +86352,24.023,78.138 +86353,16.363,77.198 +86354,18.398,77.515 +86355,20.505,77.853 +86356,22.695,78.213 +86357,15.046,77.17 +86358,17.077,77.521 +86359,19.179,77.893 +86360,21.365,78.287 +86361,13.73,77.142 +86362,15.756,77.527 +86363,17.853,77.933 +86364,20.033,78.361 +86365,12.416,77.115 +86366,14.435,77.533 +86367,16.526,77.973 +86368,18.7,78.435 +86369,11.103,77.087 +86370,13.115,77.539 +86371,15.199,78.012 +86372,17.365,78.508 +86373,9.7914,77.06 +86374,11.796,77.546 +86375,13.871,78.052 +86376,16.028,78.581 +86377,8.4816,77.033 +86378,10.477,77.552 +86379,12.543,78.092 +86380,14.69,78.654 +86381,7.1732,77.007 +86382,9.1584,77.559 +86383,11.214,78.131 +86384,13.35,78.726 +86385,5.8664,76.981 +86386,7.8404,77.565 +86387,9.8841,78.17 +86388,12.008,78.798 +86389,4.5611,76.956 +86390,6.523,77.572 +86391,8.554,78.209 +86392,10.665,78.869 +86393,3.2572,76.931 +86394,5.2059,77.579 +86395,7.2233,78.248 +86396,9.3204,78.94 +86397,1.9548,76.907 +86398,3.8894,77.587 +86399,5.8921,78.287 +86400,7.974,79.01 +86401,0.65385,76.883 +86402,2.5733,77.594 +86403,4.5604,78.326 +86404,6.626,79.079 +86405,359.35,76.859 +86406,1.2578,77.602 +86407,3.2281,78.364 +86408,5.2765,79.149 +86409,358.06,76.837 +86410,359.94,77.609 +86411,1.8953,78.402 +86412,3.9254,79.217 +86413,356.76,76.814 +86414,358.63,77.617 +86415,0.562,78.44 +86416,2.5727,79.285 +86417,355.46,76.793 +86418,357.31,77.626 +86419,359.23,78.478 +86420,1.2185,79.352 +86421,354.17,76.772 +86422,356,77.634 +86423,357.89,78.516 +86424,359.86,79.418 +86425,352.88,76.752 +86426,354.69,77.643 +86427,356.56,78.553 +86428,358.51,79.484 +86429,351.59,76.732 +86430,353.37,77.652 +86431,355.22,78.59 +86432,357.15,79.549 +86433,350.3,76.714 +86434,352.06,77.661 +86435,353.89,78.627 +86436,355.79,79.613 +86437,349.01,76.696 +86438,350.75,77.67 +86439,352.55,78.664 +86440,354.43,79.677 +86441,347.72,76.678 +86442,349.44,77.68 +86443,351.21,78.7 +86444,353.06,79.739 +86445,346.44,76.662 +86446,348.13,77.69 +86447,349.88,78.736 +86448,351.7,79.801 +86449,345.15,76.646 +86450,346.82,77.7 +86451,348.54,78.772 +86452,350.33,79.862 +86453,343.87,76.631 +86454,345.51,77.711 +86455,347.2,78.807 +86456,348.97,79.923 +86457,342.59,76.618 +86458,344.2,77.722 +86459,345.86,78.843 +86460,347.6,79.982 +86461,341.3,76.604 +86462,342.89,77.733 +86463,344.52,78.878 +86464,346.23,80.0404 +86465,340.03,76.592 +86466,341.58,77.744 +86467,343.18,78.912 +86468,344.86,80.0979 +86469,338.75,76.581 +86470,340.27,77.756 +86471,341.84,78.947 +86472,343.48,80.1545 +86473,337.47,76.571 +86474,338.96,77.768 +86475,340.5,78.981 +86476,342.11,80.2102 +86477,336.19,76.561 +86478,337.65,77.781 +86479,339.16,79.015 +86480,340.74,80.2648 +86481,334.92,76.553 +86482,336.34,77.793 +86483,337.82,79.048 +86484,339.36,80.3185 +86485,333.64,76.546 +86486,335.04,77.806 +86487,336.48,79.081 +86488,337.98,80.3713 +86489,332.37,76.539 +86490,333.73,77.82 +86491,335.14,79.114 +86492,336.61,80.423 +86493,331.1,76.534 +86494,332.42,77.834 +86495,333.8,79.147 +86496,335.23,80.4736 +86497,329.83,76.53 +86498,331.12,77.848 +86499,332.45,79.179 +86500,333.85,80.5233 +86501,328.56,76.526 +86502,329.81,77.862 +86503,331.11,79.21 +86504,332.47,80.5719 +86505,327.29,76.524 +86506,328.5,77.877 +86507,329.77,79.242 +86508,331.08,80.6194 +86509,326.02,76.523 +86510,327.2,77.892 +86511,328.42,79.273 +86512,329.7,80.6658 +86513,324.75,76.523 +86514,325.89,77.908 +86515,327.08,79.304 +86516,328.32,80.7112 +86517,323.49,76.524 +86518,324.59,77.924 +86519,325.73,79.334 +86520,326.93,80.7554 +86521,322.22,76.527 +86522,323.28,77.94 +86523,324.39,79.364 +86524,325.55,80.7986 +86525,320.96,76.53 +86526,321.98,77.957 +86527,323.05,79.394 +86528,324.16,80.8406 +86529,319.69,76.535 +86530,320.67,77.974 +86531,321.7,79.423 +86532,322.77,80.8815 +86533,318.43,76.54 +86534,319.37,77.991 +86535,320.35,79.452 +86536,321.39,80.9212 +86537,317.16,76.547 +86538,318.07,78.009 +86539,319.01,79.48 +86540,320,80.9598 +86541,315.9,76.555 +86542,316.76,78.028 +86543,317.66,79.508 +86544,318.61,80.9972 +86545,314.64,76.565 +86546,315.46,78.046 +86547,316.32,79.536 +86548,317.22,81.0335 +86549,313.38,76.575 +86550,314.16,78.065 +86551,314.97,79.563 +86552,315.83,81.0686 +86553,312.12,76.587 +86554,312.85,78.085 +86555,313.62,79.59 +86556,314.44,81.1025 +86557,310.86,76.6 +86558,311.55,78.105 +86559,312.28,79.617 +86560,313.04,81.1352 +86561,309.6,76.614 +86562,310.25,78.125 +86563,310.93,79.643 +86564,311.65,81.1667 +86565,308.34,76.629 +86566,308.94,78.146 +86567,309.58,79.669 +86568,310.26,81.1971 +86569,307.08,76.646 +86570,307.64,78.167 +86571,308.23,79.694 +86572,308.87,81.2262 +86573,305.83,76.664 +86574,306.34,78.189 +86575,306.89,79.719 +86576,307.47,81.2542 +86577,304.57,76.683 +86578,305.04,78.211 +86579,305.54,79.744 +86580,306.08,81.2809 +86581,303.31,76.703 +86582,303.73,78.233 +86583,304.19,79.768 +86584,304.69,81.3065 +86585,302.06,76.725 +86586,302.43,78.256 +86587,302.84,79.791 +86588,303.29,81.3308 +86589,300.8,76.748 +86590,301.13,78.279 +86591,301.49,79.815 +86592,301.9,81.3539 +86593,299.54,76.772 +86594,299.83,78.303 +86595,300.15,79.838 +86596,300.5,81.3759 +86597,298.29,76.797 +86598,298.53,78.327 +86599,298.8,79.86 +86600,299.11,81.3966 +86601,297.03,76.824 +86602,297.22,78.351 +86603,297.45,79.882 +86604,297.71,81.4161 +86605,295.77,76.852 +86606,295.92,78.376 +86607,296.1,79.904 +86608,296.32,81.4344 +86609,294.52,76.881 +86610,294.62,78.402 +86611,294.75,79.926 +86612,294.92,81.4516 +86613,293.26,76.911 +86614,293.32,78.427 +86615,293.4,79.947 +86616,293.52,81.4675 +86617,292.01,76.943 +86618,292.02,78.453 +86619,292.06,79.967 +86620,292.13,81.4822 +86621,290.75,76.976 +86622,290.71,78.48 +86623,290.71,79.987 +86624,290.73,81.4958 +86625,289.5,77.01 +86626,289.41,78.507 +86627,289.36,80.007 +86628,289.34,81.5081 +86629,288.24,77.045 +86630,288.11,78.534 +86631,288.01,80.0263 +86632,287.94,81.5193 +86633,286.98,77.082 +86634,286.81,78.562 +86635,286.66,80.0453 +86636,286.55,81.5293 +86637,285.73,77.119 +86638,285.5,78.59 +86639,285.31,80.0639 +86640,285.15,81.5382 +86641,284.47,77.158 +86642,284.2,78.619 +86643,283.96,80.0821 +86644,283.76,81.5459 +86645,283.22,77.199 +86646,282.9,78.648 +86647,282.62,80.0999 +86648,282.36,81.5524 +86649,281.96,77.24 +86650,281.6,78.678 +86651,281.27,80.1173 +86652,280.97,81.5578 +86653,280.7,77.283 +86654,280.29,78.707 +86655,279.92,80.1344 +86656,279.57,81.5621 +86657,279.44,77.327 +86658,278.99,78.738 +86659,278.57,80.151 +86660,278.18,81.5652 +86661,278.19,77.372 +86662,277.69,78.768 +86663,277.22,80.1673 +86664,276.79,81.5673 +86665,276.93,77.418 +86666,276.39,78.799 +86667,275.87,80.1833 +86668,275.4,81.5682 +86669,275.67,77.465 +86670,275.08,78.831 +86671,274.53,80.1988 +86672,274,81.5681 +86673,274.41,77.513 +86674,273.78,78.862 +86675,273.18,80.214 +86676,272.61,81.5669 +86677,273.15,77.563 +86678,272.47,78.894 +86679,271.83,80.2289 +86680,271.22,81.5646 +86681,271.89,77.614 +86682,271.17,78.927 +86683,270.48,80.2434 +86684,269.83,81.5612 +86685,270.63,77.665 +86686,269.87,78.96 +86687,269.14,80.2576 +86688,268.44,81.5568 +86689,269.37,77.718 +86690,268.56,78.993 +86691,267.79,80.2714 +86692,267.05,81.5514 +86693,268.11,77.772 +86694,267.26,79.027 +86695,266.44,80.2848 +86696,265.66,81.545 +86697,266.85,77.827 +86698,265.95,79.061 +86699,265.1,80.298 +86700,264.27,81.5376 +86701,265.58,77.883 +86702,264.65,79.095 +86703,263.75,80.3108 +86704,262.88,81.5293 +86705,264.32,77.94 +86706,263.34,79.129 +86707,262.4,80.3233 +86708,261.5,81.5199 +86709,263.05,77.998 +86710,262.04,79.164 +86711,261.06,80.3355 +86712,260.11,81.5096 +86713,261.79,78.057 +86714,260.73,79.2 +86715,259.71,80.3473 +86716,258.73,81.4984 +86717,260.52,78.117 +86718,259.42,79.235 +86719,258.36,80.3589 +86720,257.34,81.4863 +86721,259.26,78.178 +86722,258.12,79.271 +86723,257.02,80.3702 +86724,255.96,81.4733 +86725,257.99,78.24 +86726,256.81,79.307 +86727,255.67,80.3811 +86728,254.57,81.4594 +86729,256.72,78.303 +86730,255.5,79.344 +86731,254.33,80.3918 +86732,253.19,81.4446 +86733,255.45,78.366 +86734,254.2,79.381 +86735,252.98,80.4022 +86736,251.81,81.429 +86737,254.18,78.431 +86738,252.89,79.418 +86739,251.64,80.4124 +86740,250.43,81.4126 +86741,252.91,78.496 +86742,251.58,79.455 +86743,250.3,80.4222 +86744,249.05,81.3954 +86745,251.63,78.562 +86746,250.27,79.493 +86747,248.95,80.4319 +86748,247.67,81.3774 +86749,250.36,78.629 +86750,248.96,79.531 +86751,247.61,80.4412 +86752,246.3,81.3587 +86753,249.08,78.697 +86754,247.65,79.569 +86755,246.27,80.4503 +86756,244.92,81.3393 +86757,247.81,78.765 +86758,246.34,79.607 +86759,244.92,80.4592 +86760,243.55,81.3191 +86761,246.53,78.834 +86762,245.03,79.646 +86763,243.58,80.4679 +86764,242.17,81.2982 +86765,245.25,78.904 +86766,243.72,79.685 +86767,242.24,80.4763 +86768,240.8,81.2767 +86769,243.97,78.975 +86770,242.41,79.724 +86771,240.9,80.4845 +86772,239.43,81.2545 +86773,242.69,79.046 +86774,241.1,79.763 +86775,239.56,80.4926 +86776,238.06,81.2317 +86777,241.41,79.118 +86778,239.79,79.803 +86779,238.22,80.5004 +86780,236.69,81.2083 +86781,240.13,79.19 +86782,238.48,79.842 +86783,236.88,80.508 +86784,235.32,81.1844 +86785,238.84,79.263 +86786,237.16,79.882 +86787,235.53,80.5155 +86788,233.95,81.1599 +86789,237.56,79.336 +86790,235.85,79.923 +86791,234.2,80.5227 +86792,232.59,81.1349 +86793,236.27,79.41 +86794,234.54,79.963 +86795,232.86,80.5299 +86796,231.23,81.1093 +86797,234.98,79.485 +86798,233.22,80.0033 +86799,231.52,80.5368 +86800,229.86,81.0833 +86801,233.69,79.56 +86802,231.91,80.0439 +86803,230.18,80.5436 +86804,228.5,81.0569 +86805,232.4,79.635 +86806,230.59,80.0846 +86807,228.84,80.5503 +86808,227.14,81.03 +86809,231.11,79.711 +86810,229.28,80.1255 +86811,227.5,80.5569 +86812,225.78,81.0027 +86813,229.81,79.787 +86814,227.96,80.1666 +86815,226.17,80.5633 +86816,224.42,80.9751 +86817,228.52,79.864 +86818,226.64,80.2077 +86819,224.83,80.5696 +86820,223.07,80.9471 +86821,227.22,79.941 +86822,225.33,80.249 +86823,223.49,80.5758 +86824,221.71,80.9188 +86825,225.92,80.0179 +86826,224.01,80.2903 +86827,222.16,80.582 +86828,220.36,80.8902 +86829,224.62,80.0953 +86830,222.69,80.3318 +86831,220.82,80.588 +86832,219.01,80.8614 +86833,223.32,80.1729 +86834,221.37,80.3733 +86835,219.49,80.594 +86836,217.66,80.8323 +86837,222.02,80.2507 +86838,220.05,80.4149 +86839,218.15,80.5999 +86840,216.31,80.803 +86841,220.71,80.3287 +86842,218.73,80.4566 +86843,216.82,80.6057 +86844,214.96,80.7735 +86845,219.41,80.4069 +86846,217.41,80.4983 +86847,215.48,80.6116 +86848,213.61,80.7439 +86849,218.1,80.4852 +86850,216.09,80.5401 +86851,214.15,80.6173 +86852,212.27,80.7141 +86853,216.79,80.5635 +86854,214.77,80.5819 +86855,212.82,80.6231 +86856,210.92,80.6842 +86857,215.48,80.6419 +86858,213.45,80.6237 +86859,211.49,80.6288 +86860,209.58,80.6543 +86861,214.17,80.7204 +86862,212.13,80.6656 +86863,210.15,80.6345 +86864,208.24,80.6243 +86865,212.85,80.7988 +86866,210.8,80.7074 +86867,208.82,80.6402 +86868,206.9,80.5943 +86869,211.54,80.8772 +86870,209.48,80.7493 +86871,207.49,80.6459 +86872,205.56,80.5643 +86873,210.22,80.9555 +86874,208.16,80.7911 +86875,206.16,80.6517 +86876,204.23,80.5344 +86877,208.9,81.0338 +86878,206.83,80.8329 +86879,204.83,80.6575 +86880,202.89,80.5045 +86881,207.58,81.1119 +86882,205.51,80.8747 +86883,203.5,80.6633 +86884,201.56,80.4747 +86885,206.26,81.1898 +86886,204.18,80.9164 +86887,202.17,80.6691 +86888,200.22,80.4451 +86889,204.94,81.2676 +86890,202.86,80.9581 +86891,200.84,80.6751 +86892,198.89,80.4155 +86893,203.61,81.3452 +86894,201.53,80.9997 +86895,199.52,80.681 +86896,197.57,80.3862 +86897,202.29,81.4225 +86898,200.2,81.0413 +86899,198.19,80.6871 +86900,196.24,80.3571 +86901,200.96,81.4996 +86902,198.87,81.0827 +86903,196.86,80.6933 +86904,194.91,80.3282 +86905,199.63,81.5763 +86906,197.55,81.1241 +86907,195.54,80.6995 +86908,193.59,80.2996 +86909,198.3,81.6528 +86910,196.22,81.1654 +86911,194.21,80.7058 +86912,192.26,80.2713 +86913,196.96,81.7289 +86914,194.89,81.2065 +86915,192.88,80.7123 +86916,190.94,80.2432 +86917,195.63,81.8046 +86918,193.56,81.2476 +86919,191.56,80.7189 +86920,189.62,80.2156 +86921,194.29,81.8798 +86922,192.23,81.2885 +86923,190.23,80.7256 +86924,188.3,80.1883 +86925,192.96,81.9547 +86926,190.9,81.3292 +86927,188.91,80.7325 +86928,186.99,80.1614 +86929,191.62,82.0291 +86930,189.56,81.3699 +86931,187.59,80.7395 +86932,185.67,80.1349 +86933,190.28,82.103 +86934,188.23,81.4103 +86935,186.26,80.7466 +86936,184.36,80.1089 +86937,188.93,82.1763 +86938,186.9,81.4506 +86939,184.94,80.754 +86940,183.04,80.0834 +86941,187.59,82.2491 +86942,185.57,81.4908 +86943,183.62,80.7615 +86944,181.73,80.0583 +86945,186.24,82.3214 +86946,184.23,81.5307 +86947,182.3,80.7692 +86948,180.42,80.0338 +86949,184.9,82.393 +86950,182.9,81.5705 +86951,180.97,80.7771 +86952,179.11,80.0099 +86953,183.55,82.464 +86954,181.56,81.61 +86955,179.65,80.7852 +86956,177.8,79.987 +86957,182.2,82.5344 +86958,180.23,81.6494 +86959,178.33,80.7935 +86960,176.5,79.964 +86961,180.85,82.6041 +86962,178.89,81.6885 +86963,177.01,80.802 +86964,175.19,79.942 +86965,179.49,82.6731 +86966,177.56,81.7274 +86967,175.69,80.8108 +86968,173.89,79.92 +86969,178.14,82.7413 +86970,176.22,81.7661 +86971,174.37,80.8197 +86972,172.59,79.899 +86973,176.78,82.8088 +86974,174.88,81.8045 +86975,173.05,80.829 +86976,171.29,79.879 +86977,175.42,82.8756 +86978,173.54,81.8427 +86979,171.74,80.8385 +86980,169.99,79.86 +86981,174.07,82.9415 +86982,172.21,81.8806 +86983,170.42,80.8482 +86984,168.69,79.842 +86985,172.7,83.0067 +86986,170.87,81.9183 +86987,169.1,80.8582 +86988,167.39,79.824 +86989,171.34,83.0709 +86990,169.53,81.9556 +86991,167.78,80.8685 +86992,166.1,79.807 +86993,169.98,83.1344 +86994,168.19,81.9928 +86995,166.47,80.8791 +86996,164.8,79.791 +86997,168.61,83.1969 +86998,166.85,82.0296 +86999,165.15,80.8899 +87000,163.51,79.775 +87001,167.25,83.2585 +87002,165.51,82.0661 +87003,163.83,80.9011 +87004,162.22,79.761 +87005,165.88,83.3192 +87006,164.17,82.1023 +87007,162.52,80.9125 +87008,160.93,79.747 +87009,164.51,83.379 +87010,162.83,82.1382 +87011,161.2,80.9243 +87012,159.64,79.735 +87013,163.14,83.4378 +87014,161.48,82.1738 +87015,159.89,80.9363 +87016,158.35,79.723 +87017,161.77,83.4956 +87018,160.14,82.2091 +87019,158.57,80.9487 +87020,157.06,79.712 +87021,160.4,83.5525 +87022,158.8,82.2441 +87023,157.26,80.9615 +87024,155.78,79.702 +87025,159.03,83.6083 +87026,157.45,82.2787 +87027,155.95,80.9745 +87028,154.49,79.693 +87029,157.65,83.6631 +87030,156.11,82.313 +87031,154.63,80.9879 +87032,153.21,79.686 +87033,156.28,83.7168 +87034,154.77,82.347 +87035,153.32,81.0017 +87036,151.93,79.679 +87037,154.9,83.7694 +87038,153.42,82.3805 +87039,152.01,81.0158 +87040,150.65,79.673 +87041,153.52,83.821 +87042,152.08,82.4138 +87043,150.69,81.0302 +87044,149.36,79.668 +87045,152.14,83.8715 +87046,150.73,82.4467 +87047,149.38,81.045 +87048,148.09,79.665 +87049,150.76,83.9209 +87050,149.39,82.4792 +87051,148.07,81.0602 +87052,146.81,79.662 +87053,149.38,83.9691 +87054,148.04,82.5113 +87055,146.76,81.0758 +87056,145.53,79.661 +87057,148,84.0163 +87058,146.69,82.5431 +87059,145.45,81.0917 +87060,144.25,79.661 +87061,146.62,84.0622 +87062,145.35,82.5745 +87063,144.14,81.1081 +87064,142.98,79.661 +87065,145.23,84.1071 +87066,144,82.6055 +87067,142.83,81.1248 +87068,141.7,79.663 +87069,143.85,84.1507 +87070,142.65,82.6361 +87071,141.52,81.1419 +87072,140.43,79.666 +87073,142.46,84.1932 +87074,141.31,82.6664 +87075,140.21,81.1593 +87076,139.15,79.671 +87077,141.07,84.2344 +87078,139.96,82.6962 +87079,138.9,81.1772 +87080,137.88,79.676 +87081,139.69,84.2745 +87082,138.61,82.7257 +87083,137.59,81.1955 +87084,136.61,79.683 +87085,138.3,84.3134 +87086,137.26,82.7547 +87087,136.28,81.2142 +87088,135.34,79.691 +87089,136.91,84.351 +87090,135.91,82.7833 +87091,134.97,81.2333 +87092,134.06,79.7 +87093,135.52,84.3875 +87094,134.56,82.8116 +87095,133.66,81.2528 +87096,132.79,79.71 +87097,134.13,84.4227 +87098,133.21,82.8394 +87099,132.35,81.2727 +87100,131.52,79.722 +87101,132.74,84.4566 +87102,131.86,82.8668 +87103,131.04,81.2931 +87104,130.26,79.735 +87105,131.35,84.4893 +87106,130.51,82.8938 +87107,129.73,81.3138 +87108,128.99,79.749 +87109,129.95,84.5208 +87110,129.16,82.9204 +87111,128.42,81.335 +87112,127.72,79.764 +87113,128.56,84.5511 +87114,127.81,82.9466 +87115,127.11,81.3566 +87116,126.45,79.781 +87117,127.17,84.58 +87118,126.46,82.9724 +87119,125.8,81.3786 +87120,125.19,79.798 +87121,125.77,84.6078 +87122,125.11,82.9977 +87123,124.5,81.4011 +87124,123.92,79.818 +87125,124.38,84.6342 +87126,123.76,83.0226 +87127,123.19,81.4239 +87128,122.65,79.838 +87129,122.99,84.6594 +87130,122.41,83.0471 +87131,121.88,81.4472 +87132,121.39,79.86 +87133,121.59,84.6834 +87134,121.06,83.0712 +87135,120.57,81.4709 +87136,120.12,79.883 +87137,120.2,84.7061 +87138,119.71,83.0948 +87139,119.26,81.4951 +87140,118.86,79.907 +87141,118.8,84.7275 +87142,118.36,83.1181 +87143,117.96,81.5196 +87144,117.59,79.932 +87145,117.4,84.7477 +87146,117.01,83.1409 +87147,116.65,81.5446 +87148,116.33,79.959 +87149,116.01,84.7666 +87150,115.66,83.1633 +87151,115.34,81.5701 +87152,115.06,79.987 +87153,114.61,84.7843 +87154,114.3,83.1853 +87155,114.03,81.5959 +87156,113.8,80.0166 +87157,113.21,84.8007 +87158,112.95,83.2068 +87159,112.73,81.6222 +87160,112.53,80.0473 +87161,111.82,84.8159 +87162,111.6,83.228 +87163,111.42,81.6489 +87164,111.27,80.0792 +87165,110.42,84.8298 +87166,110.25,83.2487 +87167,110.11,81.676 +87168,110.01,80.1125 +87169,109.02,84.8425 +87170,108.9,83.269 +87171,108.8,81.7035 +87172,108.74,80.1469 +87173,107.63,84.854 +87174,107.55,83.2889 +87175,107.5,81.7315 +87176,107.48,80.1827 +87177,106.23,84.8643 +87178,106.19,83.3084 +87179,106.19,81.7599 +87180,106.22,80.2197 +87181,104.83,84.8733 +87182,104.84,83.3274 +87183,104.88,81.7887 +87184,104.95,80.258 +87185,103.44,84.8811 +87186,103.49,83.3461 +87187,103.57,81.8179 +87188,103.69,80.2975 +87189,102.04,84.8878 +87190,102.14,83.3644 +87191,102.26,81.8475 +87192,102.42,80.3383 +87193,100.65,84.8932 +87194,100.79,83.3822 +87195,100.96,81.8776 +87196,101.16,80.3803 +87197,99.249,84.8974 +87198,99.434,83.3997 +87199,99.649,81.908 +87200,99.894,80.4236 +87201,97.853,84.9005 +87202,98.082,83.4167 +87203,98.341,81.9388 +87204,98.629,80.468 +87205,96.457,84.9024 +87206,96.73,83.4334 +87207,97.032,81.9701 +87208,97.364,80.5137 +87209,95.062,84.9032 +87210,95.378,83.4497 +87211,95.724,82.0017 +87212,96.099,80.5606 +87213,93.667,84.9028 +87214,94.026,83.4656 +87215,94.415,82.0337 +87216,94.833,80.6086 +87217,92.272,84.9013 +87218,92.675,83.4811 +87219,93.107,82.0661 +87220,93.567,80.6579 +87221,90.878,84.8987 +87222,91.323,83.4962 +87223,91.798,82.0989 +87224,92.301,80.7083 +87225,89.484,84.895 +87226,89.972,83.511 +87227,90.489,82.1321 +87228,91.034,80.7598 +87229,88.09,84.8902 +87230,88.621,83.5254 +87231,89.18,82.1657 +87232,89.767,80.8125 +87233,86.697,84.8843 +87234,87.27,83.5394 +87235,87.87,82.1996 +87236,88.499,80.8663 +87237,85.305,84.8774 +87238,85.919,83.5531 +87239,86.561,82.2339 +87240,87.231,80.9212 +87241,83.913,84.8695 +87242,84.568,83.5664 +87243,85.251,82.2685 +87244,85.962,80.9772 +87245,82.522,84.8605 +87246,83.217,83.5794 +87247,83.941,82.3035 +87248,84.693,81.0343 +87249,81.131,84.8505 +87250,81.867,83.5921 +87251,82.63,82.3388 +87252,83.423,81.0925 +87253,79.741,84.8395 +87254,80.516,83.6044 +87255,81.32,82.3745 +87256,82.152,81.1517 +87257,78.351,84.8275 +87258,79.166,83.6163 +87259,80.009,82.4105 +87260,80.881,81.2119 +87261,76.963,84.8146 +87262,77.816,83.628 +87263,78.698,82.4469 +87264,79.609,81.2731 +87265,75.575,84.8007 +87266,76.466,83.6393 +87267,77.387,82.4836 +87268,78.336,81.3353 +87269,74.187,84.7859 +87270,75.117,83.6503 +87271,76.075,82.5206 +87272,77.063,81.3985 +87273,72.801,84.7703 +87274,73.768,83.661 +87275,74.763,82.5579 +87276,75.789,81.4626 +87277,71.415,84.7537 +87278,72.418,83.6714 +87279,73.451,82.5955 +87280,74.513,81.5276 +87281,70.03,84.7363 +87282,71.07,83.6816 +87283,72.139,82.6334 +87284,73.238,81.5936 +87285,68.646,84.7181 +87286,69.721,83.6914 +87287,70.826,82.6715 +87288,71.961,81.6604 +87289,67.263,84.699 +87290,68.373,83.7009 +87291,69.513,82.71 +87292,70.683,81.7281 +87293,65.881,84.6792 +87294,67.025,83.7102 +87295,68.199,82.7488 +87296,69.404,81.7966 +87297,64.5,84.6585 +87298,65.677,83.7193 +87299,66.885,82.7878 +87300,68.125,81.8659 +87301,63.119,84.6372 +87302,64.33,83.728 +87303,65.571,82.827 +87304,66.844,81.9361 +87305,61.74,84.6151 +87306,62.982,83.7365 +87307,64.257,82.8665 +87308,65.563,82.007 +87309,60.362,84.5922 +87310,61.636,83.7448 +87311,62.942,82.9063 +87312,64.28,82.0786 +87313,58.984,84.5688 +87314,60.289,83.7529 +87315,61.626,82.9463 +87316,62.997,82.1509 +87317,57.608,84.5446 +87318,58.943,83.7607 +87319,60.311,82.9865 +87320,61.712,82.224 +87321,56.233,84.5199 +87322,57.597,83.7683 +87323,58.995,83.0269 +87324,60.426,82.2977 +87325,54.859,84.4945 +87326,56.251,83.7757 +87327,57.678,83.0676 +87328,59.139,82.372 +87329,53.486,84.4685 +87330,54.906,83.7829 +87331,56.361,83.1084 +87332,57.851,82.447 +87333,52.114,84.442 +87334,53.561,83.79 +87335,55.044,83.1495 +87336,56.562,82.5225 +87337,50.743,84.4149 +87338,52.217,83.7968 +87339,53.726,83.1907 +87340,55.272,82.5986 +87341,49.374,84.3874 +87342,50.873,83.8035 +87343,52.408,83.2321 +87344,53.98,82.6753 +87345,48.005,84.3594 +87346,49.529,83.81 +87347,51.089,83.2736 +87348,52.687,82.7524 +87349,46.638,84.3309 +87350,48.186,83.8163 +87351,49.77,83.3153 +87352,51.393,82.83 +87353,45.272,84.302 +87354,46.842,83.8225 +87355,48.451,83.3571 +87356,50.098,82.908 +87357,43.908,84.2727 +87358,45.5,83.8286 +87359,47.131,83.3991 +87360,48.801,82.9865 +87361,42.544,84.243 +87362,44.158,83.8345 +87363,45.81,83.4412 +87364,47.503,83.0653 +87365,41.182,84.2129 +87366,42.816,83.8403 +87367,44.489,83.4835 +87368,46.204,83.1445 +87369,39.821,84.1826 +87370,41.474,83.846 +87371,43.168,83.5258 +87372,44.903,83.224 +87373,38.461,84.1519 +87374,40.133,83.8517 +87375,41.846,83.5682 +87376,43.601,83.3039 +87377,37.103,84.121 +87378,38.793,83.8572 +87379,40.524,83.6107 +87380,42.298,83.384 +87381,35.746,84.0899 +87382,37.452,83.8626 +87383,39.201,83.6533 +87384,40.993,83.4643 +87385,34.39,84.0586 +87386,36.113,83.868 +87387,37.877,83.696 +87388,39.687,83.5448 +87389,33.036,84.027 +87390,34.773,83.8733 +87391,36.554,83.7387 +87392,38.38,83.6255 +87393,31.683,83.9954 +87394,33.434,83.8786 +87395,35.229,83.7814 +87396,37.071,83.7064 +87397,30.331,83.9636 +87398,32.096,83.8838 +87399,33.904,83.8242 +87400,35.76,83.7874 +87401,28.981,83.9317 +87402,30.758,83.889 +87403,32.579,83.867 +87404,34.449,83.8684 +87405,27.632,83.8997 +87406,29.42,83.8941 +87407,31.253,83.9099 +87408,33.135,83.9495 +87409,26.285,83.8677 +87410,28.083,83.8993 +87411,29.927,83.9527 +87412,31.821,84.0307 +87413,24.939,83.8357 +87414,26.746,83.9044 +87415,28.6,83.9955 +87416,30.504,84.1118 +87417,23.594,83.8038 +87418,25.41,83.9096 +87419,27.273,84.0384 +87420,29.187,84.1929 +87421,22.25,83.7718 +87422,24.074,83.9147 +87423,25.945,84.0812 +87424,27.868,84.2739 +87425,20.908,83.74 +87426,22.738,83.9199 +87427,24.616,84.1239 +87428,26.547,84.3548 +87429,19.568,83.7082 +87430,21.403,83.9252 +87431,23.287,84.1667 +87432,25.225,84.4356 +87433,18.229,83.6766 +87434,20.069,83.9304 +87435,21.958,84.2093 +87436,23.901,84.5162 +87437,16.891,83.6452 +87438,18.734,83.9358 +87439,20.628,84.2519 +87440,22.576,84.5966 +87441,15.554,83.6139 +87442,17.401,83.9412 +87443,19.297,84.2945 +87444,21.249,84.6768 +87445,14.219,83.5829 +87446,16.067,83.9466 +87447,17.966,84.3369 +87448,19.921,84.7567 +87449,12.886,83.5521 +87450,14.735,83.9522 +87451,16.635,84.3793 +87452,18.591,84.8364 +87453,11.554,83.5216 +87454,13.402,83.9578 +87455,15.302,84.4215 +87456,17.26,84.9157 +87457,10.223,83.4914 +87458,12.07,83.9636 +87459,13.97,84.4636 +87460,15.927,84.9947 +87461,8.8936,83.4615 +87462,10.739,83.9694 +87463,12.637,84.5056 +87464,14.593,85.0733 +87465,7.5656,83.432 +87466,9.4079,83.9754 +87467,11.303,84.5475 +87468,13.257,85.1515 +87469,6.239,83.4028 +87470,8.0773,83.9815 +87471,9.9687,84.5892 +87472,11.92,85.2293 +87473,4.9138,83.3741 +87474,6.7472,83.9878 +87475,8.634,84.6308 +87476,10.581,85.3066 +87477,3.5899,83.3459 +87478,5.4175,83.9942 +87479,7.2987,84.6722 +87480,9.2408,85.3834 +87481,2.2675,83.3181 +87482,4.0883,84.0008 +87483,5.9629,84.7135 +87484,7.8989,85.4597 +87485,0.94639,83.2908 +87486,2.7594,84.0075 +87487,4.6266,84.7545 +87488,6.5556,85.5355 +87489,359.63,83.264 +87490,1.431,84.0144 +87491,3.2898,84.7954 +87492,5.2107,85.6106 +87493,358.31,83.2378 +87494,0.10308,84.0215 +87495,1.9524,84.8361 +87496,3.8644,85.6852 +87497,356.99,83.2122 +87498,358.78,84.0288 +87499,0.61459,84.8766 +87500,2.5166,85.7591 +87501,355.68,83.1871 +87502,357.45,84.0363 +87503,359.28,84.9168 +87504,1.1673,85.8324 +87505,354.36,83.1627 +87506,356.12,84.044 +87507,357.94,84.9568 +87508,359.82,85.905 +87509,353.05,83.139 +87510,354.8,84.0519 +87511,356.6,84.9966 +87512,358.46,85.9768 +87513,351.74,83.1159 +87514,353.47,84.0601 +87515,355.26,85.0361 +87516,357.11,86.0479 +87517,350.43,83.0935 +87518,352.14,84.0685 +87519,353.92,85.0754 +87520,355.76,86.1183 +87521,349.12,83.0719 +87522,350.82,84.0771 +87523,352.58,85.1145 +87524,354.4,86.1878 +87525,347.81,83.051 +87526,349.49,84.086 +87527,351.24,85.1532 +87528,353.04,86.2566 +87529,346.5,83.0309 +87530,348.17,84.0951 +87531,349.89,85.1917 +87532,351.68,86.3245 +87533,345.2,83.0116 +87534,346.85,84.1046 +87535,348.55,85.2299 +87536,350.32,86.3915 +87537,343.89,82.9931 +87538,345.52,84.1142 +87539,347.21,85.2678 +87540,348.96,86.4576 +87541,342.59,82.9755 +87542,344.2,84.1242 +87543,345.87,85.3054 +87544,347.6,86.5229 +87545,341.29,82.9588 +87546,342.88,84.1345 +87547,344.52,85.3427 +87548,346.23,86.5872 +87549,339.99,82.9429 +87550,341.55,84.1451 +87551,343.18,85.3797 +87552,344.86,86.6505 +87553,338.69,82.9279 +87554,340.23,84.156 +87555,341.83,85.4163 +87556,343.5,86.7129 +87557,337.39,82.9139 +87558,338.91,84.1671 +87559,340.49,85.4526 +87560,342.13,86.7742 +87561,336.09,82.9008 +87562,337.59,84.1786 +87563,339.14,85.4886 +87564,340.76,86.8346 +87565,334.8,82.8887 +87566,336.27,84.1905 +87567,337.8,85.5243 +87568,339.39,86.8939 +87569,333.5,82.8776 +87570,334.95,84.2027 +87571,336.45,85.5596 +87572,338.02,86.9521 +87573,332.21,82.8676 +87574,333.63,84.2152 +87575,335.1,85.5945 +87576,336.64,87.0093 +87577,330.91,82.8585 +87578,332.31,84.228 +87579,333.76,85.6291 +87580,335.27,87.0654 +87581,329.62,82.8505 +87582,330.99,84.2412 +87583,332.41,85.6633 +87584,333.89,87.1203 +87585,328.33,82.8436 +87586,329.67,84.2548 +87587,331.06,85.6971 +87588,332.51,87.1742 +87589,327.04,82.8377 +87590,328.35,84.2687 +87591,329.71,85.7306 +87592,331.14,87.2269 +87593,325.75,82.833 +87594,327.03,84.283 +87595,328.36,85.7636 +87596,329.76,87.2784 +87597,324.46,82.8293 +87598,325.71,84.2976 +87599,327.01,85.7963 +87600,328.38,87.3287 +87601,323.18,82.8268 +87602,324.4,84.3127 +87603,325.67,85.8286 +87604,327,87.3779 +87605,321.89,82.8255 +87606,323.08,84.3281 +87607,324.32,85.8605 +87608,325.61,87.4259 +87609,320.6,82.8253 +87610,321.76,84.3439 +87611,322.97,85.8919 +87612,324.23,87.4726 +87613,319.32,82.8263 +87614,320.44,84.3601 +87615,321.61,85.923 +87616,322.85,87.5181 +87617,318.04,82.8284 +87618,319.13,84.3767 +87619,320.26,85.9536 +87620,321.46,87.5624 +87621,316.75,82.8318 +87622,317.81,84.3937 +87623,318.91,85.9839 +87624,320.07,87.6054 +87625,315.47,82.8364 +87626,316.49,84.4111 +87627,317.56,86.0137 +87628,318.69,87.6472 +87629,314.19,82.8422 +87630,315.18,84.4289 +87631,316.21,86.0431 +87632,317.3,87.6876 +87633,312.91,82.8493 +87634,313.86,84.4471 +87635,314.86,86.072 +87636,315.91,87.7269 +87637,311.63,82.8576 +87638,312.54,84.4657 +87639,313.51,86.1006 +87640,314.52,87.7648 +87641,310.35,82.8671 +87642,311.23,84.4847 +87643,312.15,86.1287 +87644,313.13,87.8014 +87645,309.07,82.878 +87646,309.91,84.5042 +87647,310.8,86.1563 +87648,311.74,87.8367 +87649,307.79,82.89 +87650,308.6,84.5241 +87651,309.45,86.1835 +87652,310.35,87.8707 +87653,306.51,82.9034 +87654,307.28,84.5444 +87655,308.09,86.2103 +87656,308.96,87.9034 +87657,305.23,82.9181 +87658,305.97,84.5651 +87659,306.74,86.2367 +87660,307.56,87.9348 +87661,303.96,82.934 +87662,304.65,84.5863 +87663,305.39,86.2625 +87664,306.17,87.9648 +87665,302.68,82.9513 +87666,303.34,84.6079 +87667,304.03,86.288 +87668,304.78,87.9935 +87669,301.4,82.9698 +87670,302.02,84.6299 +87671,302.68,86.313 +87672,303.38,88.0209 +87673,300.13,82.9897 +87674,300.71,84.6523 +87675,301.32,86.3375 +87676,301.99,88.047 +87677,298.85,83.0108 +87678,299.39,84.6752 +87679,299.97,86.3616 +87680,300.59,88.0717 +87681,297.58,83.0333 +87682,298.08,84.6985 +87683,298.61,86.3853 +87684,299.2,88.0951 +87685,296.3,83.0571 +87686,296.76,84.7222 +87687,297.26,86.4085 +87688,297.8,88.1171 +87689,295.03,83.0822 +87690,295.45,84.7464 +87691,295.9,86.4312 +87692,296.4,88.1378 +87693,293.76,83.1087 +87694,294.13,84.771 +87695,294.55,86.4535 +87696,295.01,88.1572 +87697,292.48,83.1364 +87698,292.82,84.7961 +87699,293.19,86.4754 +87700,293.61,88.1753 +87701,291.21,83.1655 +87702,291.51,84.8215 +87703,291.84,86.4968 +87704,292.21,88.192 +87705,289.93,83.1959 +87706,290.19,84.8474 +87707,290.48,86.5177 +87708,290.81,88.2074 +87709,288.66,83.2276 +87710,288.88,84.8738 +87711,289.13,86.5382 +87712,289.42,88.2215 +87713,287.39,83.2606 +87714,287.56,84.9005 +87715,287.77,86.5583 +87716,288.02,88.2343 +87717,286.12,83.2949 +87718,286.25,84.9277 +87719,286.42,86.5779 +87720,286.62,88.2457 +87721,284.84,83.3305 +87722,284.93,84.9554 +87723,285.06,86.5971 +87724,285.22,88.2559 +87725,283.57,83.3674 +87726,283.62,84.9834 +87727,283.7,86.6158 +87728,283.82,88.2647 +87729,282.3,83.4057 +87730,282.31,85.0119 +87731,282.35,86.6341 +87732,282.42,88.2723 +87733,281.02,83.4452 +87734,280.99,85.0408 +87735,280.99,86.6519 +87736,281.03,88.2786 +87737,279.75,83.4859 +87738,279.68,85.0701 +87739,279.64,86.6693 +87740,279.63,88.2836 +87741,278.48,83.528 +87742,278.36,85.0998 +87743,278.28,86.6863 +87744,278.23,88.2874 +87745,277.2,83.5713 +87746,277.05,85.1299 +87747,276.92,86.7029 +87748,276.83,88.2899 +87749,275.93,83.6159 +87750,275.73,85.1604 +87751,275.57,86.719 +87752,275.43,88.2911 +87753,274.65,83.6617 +87754,274.42,85.1914 +87755,274.21,86.7347 +87756,274.03,88.2912 +87757,273.38,83.7088 +87758,273.1,85.2227 +87759,272.86,86.75 +87760,272.64,88.29 +87761,272.11,83.757 +87762,271.79,85.2545 +87763,271.5,86.7649 +87764,271.24,88.2876 +87765,270.83,83.8065 +87766,270.47,85.2866 +87767,270.14,86.7794 +87768,269.84,88.284 +87769,269.56,83.8572 +87770,269.16,85.3191 +87771,268.79,86.7934 +87772,268.45,88.2792 +87773,268.28,83.9091 +87774,267.84,85.352 +87775,267.43,86.8071 +87776,267.05,88.2733 +87777,267,83.9621 +87778,266.53,85.3853 +87779,266.08,86.8204 +87780,265.65,88.2662 +87781,265.73,84.0164 +87782,265.21,85.419 +87783,264.72,86.8332 +87784,264.26,88.258 +87785,264.45,84.0717 +87786,263.9,85.453 +87787,263.37,86.8457 +87788,262.86,88.2487 +87789,263.17,84.1282 +87790,262.58,85.4874 +87791,262.01,86.8578 +87792,261.47,88.2382 +87793,261.9,84.1858 +87794,261.26,85.5222 +87795,260.66,86.8696 +87796,260.07,88.2267 +87797,260.62,84.2445 +87798,259.95,85.5573 +87799,259.3,86.8809 +87800,258.68,88.2141 +87801,259.34,84.3043 +87802,258.63,85.5927 +87803,257.95,86.8919 +87804,257.29,88.2005 +87805,258.06,84.3651 +87806,257.31,85.6285 +87807,256.59,86.9026 +87808,255.89,88.1858 +87809,256.78,84.427 +87810,256,85.6647 +87811,255.24,86.9129 +87812,254.5,88.1701 +87813,255.5,84.4899 +87814,254.68,85.7011 +87815,253.88,86.9228 +87816,253.11,88.1535 +87817,254.22,84.5538 +87818,253.36,85.7379 +87819,252.53,86.9324 +87820,251.72,88.1358 +87821,252.94,84.6186 +87822,252.04,85.775 +87823,251.17,86.9417 +87824,250.33,88.1173 +87825,251.65,84.6845 +87826,250.73,85.8124 +87827,249.82,86.9506 +87828,248.94,88.0977 +87829,250.37,84.7513 +87830,249.41,85.8501 +87831,248.47,86.9593 +87832,247.55,88.0773 +87833,249.09,84.819 +87834,248.09,85.8881 +87835,247.11,86.9676 +87836,246.16,88.056 +87837,247.8,84.8876 +87838,246.77,85.9263 +87839,245.76,86.9756 +87840,244.77,88.0338 +87841,246.51,84.957 +87842,245.45,85.9649 +87843,244.41,86.9833 +87844,243.39,88.0108 +87845,245.23,85.0273 +87846,244.13,86.0037 +87847,243.05,86.9908 +87848,242,87.987 +87849,243.94,85.0985 +87850,242.81,86.0428 +87851,241.7,86.9979 +87852,240.62,87.9624 +87853,242.65,85.1704 +87854,241.49,86.0821 +87855,240.35,87.0048 +87856,239.23,87.937 +87857,241.36,85.2431 +87858,240.17,86.1217 +87859,239,87.0115 +87860,237.85,87.9108 +87861,240.07,85.3166 +87862,238.85,86.1615 +87863,237.65,87.0178 +87864,236.47,87.884 +87865,238.78,85.3908 +87866,237.53,86.2015 +87867,236.3,87.024 +87868,235.09,87.8564 +87869,237.49,85.4657 +87870,236.2,86.2418 +87871,234.94,87.0298 +87872,233.71,87.8282 +87873,236.19,85.5413 +87874,234.88,86.2822 +87875,233.59,87.0355 +87876,232.33,87.7993 +87877,234.9,85.6175 +87878,233.56,86.3229 +87879,232.24,87.0409 +87880,230.95,87.7699 +87881,233.6,85.6943 +87882,232.24,86.3638 +87883,230.89,87.0462 +87884,229.58,87.7398 +87885,232.31,85.7717 +87886,230.91,86.4048 +87887,229.54,87.0512 +87888,228.2,87.7091 +87889,231.01,85.8497 +87890,229.59,86.446 +87891,228.19,87.056 +87892,226.83,87.678 +87893,229.71,85.9281 +87894,228.26,86.4874 +87895,226.85,87.0606 +87896,225.45,87.6463 +87897,228.41,86.0072 +87898,226.94,86.5289 +87899,225.5,87.0651 +87900,224.08,87.6141 +87901,227.11,86.0866 +87902,225.61,86.5705 +87903,224.15,87.0694 +87904,222.71,87.5815 +87905,225.8,86.1665 +87906,224.29,86.6123 +87907,222.8,87.0736 +87908,221.34,87.5484 +87909,224.5,86.2469 +87910,222.96,86.6543 +87911,221.45,87.0775 +87912,219.97,87.515 +87913,223.2,86.3276 +87914,221.64,86.6963 +87915,220.11,87.0814 +87916,218.6,87.4811 +87917,221.89,86.4087 +87918,220.31,86.7384 +87919,218.76,87.0851 +87920,217.23,87.447 +87921,220.58,86.49 +87922,218.98,86.7807 +87923,217.41,87.0888 +87924,215.87,87.4125 +87925,219.27,86.5717 +87926,217.65,86.823 +87927,216.07,87.0923 +87928,214.5,87.3777 +87929,217.96,86.6537 +87930,216.33,86.8654 +87931,214.72,87.0957 +87932,213.14,87.3427 +87933,216.65,86.7358 +87934,215,86.9078 +87935,213.37,87.099 +87936,211.78,87.3075 +87937,215.34,86.8182 +87938,213.67,86.9503 +87939,212.03,87.1022 +87940,210.42,87.272 +87941,214.03,86.9007 +87942,212.34,86.9929 +87943,210.68,87.1054 +87944,209.06,87.2364 +87945,212.71,86.9834 +87946,211.01,87.0354 +87947,209.34,87.1085 +87948,207.7,87.2006 +87949,211.39,87.0662 +87950,209.68,87.078 +87951,208,87.1116 +87952,206.35,87.1648 +87953,210.08,87.149 +87954,208.35,87.1206 +87955,206.65,87.1146 +87956,204.99,87.1288 +87957,208.76,87.2319 +87958,207.02,87.1632 +87959,205.31,87.1176 +87960,203.64,87.0928 +87961,207.44,87.3148 +87962,205.68,87.2058 +87963,203.97,87.1206 +87964,202.28,87.0568 +87965,206.11,87.3976 +87966,204.35,87.2484 +87967,202.63,87.1235 +87968,200.93,87.0208 +87969,204.79,87.4804 +87970,203.02,87.2909 +87971,201.28,87.1265 +87972,199.58,86.9848 +87973,203.47,87.5631 +87974,201.69,87.3334 +87975,199.94,87.1295 +87976,198.23,86.9489 +87977,202.14,87.6457 +87978,200.35,87.3759 +87979,198.6,87.1325 +87980,196.89,86.9131 +87981,200.81,87.7281 +87982,199.02,87.4183 +87983,197.26,87.1355 +87984,195.54,86.8774 +87985,199.48,87.8104 +87986,197.68,87.4606 +87987,195.92,87.1386 +87988,194.2,86.8419 +87989,198.15,87.8924 +87990,196.35,87.5028 +87991,194.58,87.1417 +87992,192.85,86.8066 +87993,196.82,87.9742 +87994,195.01,87.5449 +87995,193.24,87.1449 +87996,191.51,86.7714 +87997,195.49,88.0556 +87998,193.67,87.5869 +87999,191.9,87.1482 +88000,190.17,86.7366 +88001,194.15,88.1368 +88002,192.34,87.6288 +88003,190.56,87.1515 +88004,188.83,86.702 +88005,192.82,88.2176 +88006,191,87.6706 +88007,189.23,87.1549 +88008,187.49,86.6676 +88009,191.48,88.2981 +88010,189.66,87.7123 +88011,187.89,87.1585 +88012,186.15,86.6337 +88013,190.14,88.3781 +88014,188.32,87.7538 +88015,186.55,87.1621 +88016,184.82,86.6001 +88017,188.8,88.4577 +88018,186.98,87.7951 +88019,185.21,87.1659 +88020,183.48,86.5668 +88021,187.46,88.5368 +88022,185.64,87.8363 +88023,183.88,87.1698 +88024,182.15,86.534 +88025,186.11,88.6154 +88026,184.3,87.8773 +88027,182.54,87.1738 +88028,180.82,86.5017 +88029,184.77,88.6935 +88030,182.96,87.9181 +88031,181.21,87.178 +88032,179.49,86.4698 +88033,183.42,88.771 +88034,181.62,87.9587 +88035,179.87,87.1823 +88036,178.16,86.4384 +88037,182.08,88.8479 +88038,180.28,87.9991 +88039,178.54,87.1868 +88040,176.83,86.4075 +88041,180.73,88.9242 +88042,178.94,88.0393 +88043,177.2,87.1915 +88044,175.51,86.3772 +88045,179.38,88.9999 +88046,177.6,88.0792 +88047,175.87,87.1964 +88048,174.18,86.3475 +88049,178.03,89.07481 +88050,176.25,88.119 +88051,174.53,87.2014 +88052,172.86,86.3184 +88053,176.67,89.14905 +88054,174.91,88.1585 +88055,173.2,87.2067 +88056,171.54,86.2899 +88057,175.32,89.22256 +88058,173.57,88.1977 +88059,171.87,87.2122 +88060,170.21,86.2621 +88061,173.96,89.29529 +88062,172.22,88.2366 +88063,170.54,87.2179 +88064,168.89,86.2349 +88065,172.6,89.36723 +88066,170.88,88.2753 +88067,169.2,87.2238 +88068,167.57,86.2085 +88069,171.25,89.43835 +88070,169.53,88.3137 +88071,167.87,87.23 +88072,166.26,86.1829 +88073,169.89,89.50862 +88074,168.19,88.3519 +88075,166.54,87.2364 +88076,164.94,86.1579 +88077,168.52,89.57801 +88078,166.84,88.3897 +88079,165.21,87.2431 +88080,163.63,86.1338 +88081,167.16,89.6465 +88082,165.49,88.4272 +88083,163.88,87.25 +88084,162.31,86.1105 +88085,165.8,89.71406 +88086,164.15,88.4644 +88087,162.55,87.2573 +88088,161,86.088 +88089,164.43,89.78066 +88090,162.8,88.5013 +88091,161.22,87.2647 +88092,159.69,86.0664 +88093,163.07,89.84629 +88094,161.45,88.5378 +88095,159.89,87.2725 +88096,158.38,86.0457 +88097,161.7,89.910921 +88098,160.1,88.574 +88099,158.56,87.2806 +88100,157.07,86.0258 +88101,160.33,89.974526 +88102,158.75,88.6099 +88103,157.23,87.289 +88104,155.76,86.0069 +88105,158.96,90.037083 +88106,157.4,88.6454 +88107,155.9,87.2977 +88108,154.45,85.989 +88109,157.59,90.098571 +88110,156.05,88.6805 +88111,154.58,87.3066 +88112,153.14,85.972 +88113,156.22,90.15897 +88114,154.7,88.7153 +88115,153.25,87.316 +88116,151.84,85.956 +88117,154.84,90.21825 +88118,153.35,88.7497 +88119,151.92,87.3256 +88120,150.54,85.941 +88121,153.47,90.2764 +88122,152,88.7837 +88123,150.59,87.3356 +88124,149.23,85.9271 +88125,152.09,90.3334 +88126,150.65,88.8173 +88127,149.27,87.3459 +88128,147.93,85.9142 +88129,150.71,90.38923 +88130,149.3,88.8506 +88131,147.94,87.3566 +88132,146.63,85.9023 +88133,149.34,90.44386 +88134,147.95,88.8834 +88135,146.61,87.3676 +88136,145.33,85.8916 +88137,147.96,90.49729 +88138,146.59,88.9158 +88139,145.29,87.379 +88140,144.03,85.8819 +88141,146.58,90.54949 +88142,145.24,88.9478 +88143,143.96,87.3908 +88144,142.73,85.8734 +88145,145.19,90.60045 +88146,143.89,88.9794 +88147,142.64,87.4029 +88148,141.43,85.866 +88149,143.81,90.65015 +88150,142.53,89.01053 +88151,141.31,87.4154 +88152,140.14,85.8598 +88153,142.43,90.69858 +88154,141.18,89.04125 +88155,139.99,87.4283 +88156,138.84,85.8547 +88157,141.04,90.74572 +88158,139.83,89.07154 +88159,138.66,87.4416 +88160,137.55,85.8508 +88161,139.66,90.79156 +88162,138.47,89.10139 +88163,137.34,87.4552 +88164,136.25,85.8481 +88165,138.27,90.83608 +88166,137.12,89.13079 +88167,136.01,87.4693 +88168,134.96,85.8467 +88169,136.88,90.87927 +88170,135.76,89.15975 +88171,134.69,87.4838 +88172,133.67,85.8464 +88173,135.5,90.92112 +88174,134.4,89.18825 +88175,133.37,87.4986 +88176,132.37,85.8474 +88177,134.11,90.96163 +88178,133.05,89.21629 +88179,132.04,87.5139 +88180,131.08,85.8497 +88181,132.72,91.0008 +88182,131.69,89.24388 +88183,130.72,87.5296 +88184,129.79,85.8532 +88185,131.33,91.0385 +88186,130.34,89.271 +88187,129.4,87.5457 +88188,128.5,85.8579 +88189,129.94,91.0749 +88190,128.98,89.29765 +88191,128.07,87.5622 +88192,127.21,85.864 +88193,128.54,91.1099 +88194,127.62,89.32383 +88195,126.75,87.5791 +88196,125.92,85.8714 +88197,127.15,91.1435 +88198,126.26,89.34954 +88199,125.43,87.5965 +88200,124.64,85.88 +88201,125.76,91.1757 +88202,124.91,89.37477 +88203,124.11,87.6143 +88204,123.35,85.89 +88205,124.36,91.2065 +88206,123.55,89.39952 +88207,122.78,87.6325 +88208,122.06,85.9012 +88209,122.97,91.2359 +88210,122.19,89.4238 +88211,121.46,87.6511 +88212,120.77,85.9138 +88213,121.57,91.2639 +88214,120.83,89.44759 +88215,120.14,87.6702 +88216,119.49,85.9277 +88217,120.18,91.2905 +88218,119.47,89.4709 +88219,118.82,87.6897 +88220,118.2,85.943 +88221,118.78,91.3156 +88222,118.12,89.49372 +88223,117.5,87.7096 +88224,116.92,85.9596 +88225,117.39,91.3393 +88226,116.76,89.51606 +88227,116.17,87.73 +88228,115.63,85.9775 +88229,115.99,91.3616 +88230,115.4,89.53791 +88231,114.85,87.7508 +88232,114.35,85.9968 +88233,114.59,91.3824 +88234,114.04,89.55927 +88235,113.53,87.772 +88236,113.06,86.0174 +88237,113.19,91.4018 +88238,112.68,89.58015 +88239,112.21,87.7937 +88240,111.78,86.0394 +88241,111.79,91.4198 +88242,111.32,89.60054 +88243,110.89,87.8158 +88244,110.49,86.0627 +88245,110.4,91.4364 +88246,109.96,89.62044 +88247,109.57,87.8384 +88248,109.21,86.0874 +88249,109,91.4515 +88250,108.6,89.63986 +88251,108.25,87.8614 +88252,107.93,86.1134 +88253,107.6,91.4653 +88254,107.24,89.65878 +88255,106.92,87.8848 +88256,106.64,86.1408 +88257,106.2,91.4776 +88258,105.88,89.67723 +88259,105.6,87.9087 +88260,105.36,86.1695 +88261,104.8,91.4885 +88262,104.52,89.69518 +88263,104.28,87.933 +88264,104.08,86.1996 +88265,103.4,91.498 +88266,103.16,89.71266 +88267,102.96,87.9577 +88268,102.8,86.231 +88269,102,91.5061 +88270,101.8,89.72965 +88271,101.64,87.9829 +88272,101.51,86.2637 +88273,100.6,91.5128 +88274,100.44,89.74617 +88275,100.32,88.0084 +88276,100.23,86.2978 +88277,99.197,91.5181 +88278,99.08,89.7622 +88279,98.998,88.0345 +88280,98.947,86.3332 +88281,97.797,91.5221 +88282,97.72,89.77777 +88283,97.676,88.0609 +88284,97.664,86.37 +88285,96.397,91.5247 +88286,96.359,89.79285 +88287,96.355,88.0878 +88288,96.381,86.4081 +88289,94.997,91.5259 +88290,94.999,89.80747 +88291,95.033,88.1151 +88292,95.098,86.4474 +88293,93.597,91.5258 +88294,93.639,89.82163 +88295,93.712,88.1428 +88296,93.814,86.4881 +88297,92.197,91.5243 +88298,92.278,89.83531 +88299,92.39,88.1709 +88300,92.531,86.5301 +88301,90.797,91.5215 +88302,90.918,89.84854 +88303,91.069,88.1994 +88304,91.248,86.5733 +88305,89.397,91.5175 +88306,89.557,89.86131 +88307,89.747,88.2283 +88308,89.964,86.6179 +88309,87.997,91.5121 +88310,88.197,89.87363 +88311,88.425,88.2577 +88312,88.68,86.6637 +88313,86.598,91.5054 +88314,86.837,89.8855 +88315,87.103,88.2874 +88316,87.396,86.7107 +88317,85.199,91.4975 +88318,85.476,89.89693 +88319,85.781,88.3175 +88320,86.111,86.759 +88321,83.8,91.4883 +88322,84.116,89.907915 +88323,84.459,88.3481 +88324,84.826,86.8085 +88325,82.401,91.4778 +88326,82.756,89.918466 +88327,83.136,88.379 +88328,83.541,86.8593 +88329,81.003,91.4662 +88330,81.396,89.928588 +88331,81.814,88.4103 +88332,82.255,86.9112 +88333,79.605,91.4533 +88334,80.036,89.938286 +88335,80.491,88.4419 +88336,80.969,86.9644 +88337,78.208,91.4392 +88338,78.676,89.947564 +88339,79.168,88.4739 +88340,79.682,87.0187 +88341,76.811,91.424 +88342,77.316,89.956429 +88343,77.845,88.5063 +88344,78.395,87.0741 +88345,75.414,91.4076 +88346,75.957,89.964886 +88347,76.522,88.5391 +88348,77.108,87.1307 +88349,74.018,91.3901 +88350,74.597,89.972941 +88351,75.198,88.5722 +88352,75.82,87.1885 +88353,72.622,91.3715 +88354,73.238,89.980601 +88355,73.874,88.6057 +88356,74.531,87.2473 +88357,71.227,91.3517 +88358,71.879,89.987872 +88359,72.55,88.6394 +88360,73.242,87.3072 +88361,69.833,91.3309 +88362,70.519,89.9947601 +88363,71.226,88.6736 +88364,71.953,87.3682 +88365,68.439,91.3091 +88366,69.161,90.0012727 +88367,69.902,88.708 +88368,70.662,87.4302 +88369,67.046,91.2862 +88370,67.802,90.0074164 +88371,68.577,88.7428 +88372,69.371,87.4933 +88373,65.653,91.2623 +88374,66.443,90.013199 +88375,67.252,88.7779 +88376,68.079,87.5574 +88377,64.261,91.2374 +88378,65.085,90.018626 +88379,65.927,88.8133 +88380,66.787,87.6224 +88381,62.87,91.2116 +88382,63.727,90.023707 +88383,64.602,88.849 +88384,65.494,87.6885 +88385,61.48,91.1848 +88386,62.369,90.028449 +88387,63.276,88.8849 +88388,64.2,87.7554 +88389,60.09,91.1571 +88390,61.011,90.032859 +88391,61.95,88.9212 +88392,62.905,87.8233 +88393,58.701,91.1285 +88394,59.654,90.036946 +88395,60.623,88.9577 +88396,61.61,87.8921 +88397,57.313,91.0991 +88398,58.296,90.040717 +88399,59.297,88.9945 +88400,60.314,87.9617 +88401,55.926,91.0688 +88402,56.939,90.044182 +88403,57.97,89.03158 +88404,59.016,88.0322 +88405,54.539,91.0377 +88406,55.583,90.047347 +88407,56.642,89.06888 +88408,57.718,88.1036 +88409,53.154,91.0058 +88410,54.226,90.050223 +88411,55.315,89.10642 +88412,56.42,88.1757 +88413,51.769,90.97313 +88414,52.87,90.052817 +88415,53.987,89.14419 +88416,55.12,88.2486 +88417,50.385,90.93973 +88418,51.514,90.055138 +88419,52.658,89.18219 +88420,53.819,88.3222 +88421,49.003,90.90563 +88422,50.158,90.057195 +88423,51.33,89.2204 +88424,52.517,88.3966 +88425,47.621,90.87085 +88426,48.803,90.058998 +88427,50.001,89.25881 +88428,51.215,88.4716 +88429,46.24,90.83541 +88430,47.447,90.060555 +88431,48.671,89.29741 +88432,49.911,88.5473 +88433,44.86,90.79934 +88434,46.093,90.061876 +88435,47.342,89.3362 +88436,48.606,88.6237 +88437,43.481,90.76268 +88438,44.738,90.06297 +88439,46.011,89.37517 +88440,47.3,88.7006 +88441,42.103,90.72545 +88442,43.384,90.063846 +88443,44.681,89.4143 +88444,45.994,88.7782 +88445,40.727,90.68768 +88446,42.03,90.064515 +88447,43.35,89.45358 +88448,44.686,88.8562 +88449,39.351,90.6494 +88450,40.676,90.064986 +88451,42.019,89.49301 +88452,43.377,88.9348 +88453,37.976,90.61063 +88454,39.323,90.065268 +88455,40.687,89.53258 +88456,42.067,89.01391 +88457,36.603,90.57142 +88458,37.97,90.065372 +88459,39.355,89.57227 +88460,40.756,89.09346 +88461,35.23,90.53178 +88462,36.618,90.065307 +88463,38.022,89.61208 +88464,39.444,89.17343 +88465,33.859,90.49174 +88466,35.265,90.065083 +88467,36.689,89.65199 +88468,38.13,89.2538 +88469,32.489,90.45135 +88470,33.913,90.064711 +88471,35.356,89.692 +88472,36.816,89.33453 +88473,31.12,90.41062 +88474,32.562,90.064201 +88475,34.022,89.73209 +88476,35.5,89.4156 +88477,29.752,90.36958 +88478,31.211,90.063562 +88479,32.688,89.77225 +88480,34.183,89.49698 +88481,28.385,90.32828 +88482,29.86,90.062806 +88483,31.353,89.81247 +88484,32.865,89.57862 +88485,27.02,90.28673 +88486,28.509,90.061942 +88487,30.018,89.85275 +88488,31.545,89.6605 +88489,25.655,90.24497 +88490,27.159,90.06098 +88491,28.683,89.89307 +88492,30.225,89.74259 +88493,24.292,90.20303 +88494,25.81,90.059932 +88495,27.347,89.933415 +88496,28.903,89.82485 +88497,22.93,90.16094 +88498,24.46,90.058807 +88499,26.01,89.973782 +88500,27.58,89.907252 +88501,21.57,90.11873 +88502,23.111,90.057615 +88503,24.673,90.014158 +88504,26.255,89.989762 +88505,20.21,90.076426 +88506,21.763,90.056368 +88507,23.336,90.054531 +88508,24.93,90.072348 +88509,18.852,90.034069 +88510,20.414,90.055076 +88511,21.998,90.094891 +88512,23.603,90.15498 +88513,17.495,89.9916847 +88514,19.067,90.053749 +88515,20.66,90.13523 +88516,22.275,90.23761 +88517,16.139,89.949304 +88518,17.719,90.052397 +88519,19.321,90.17553 +88520,20.945,90.32022 +88521,14.785,89.906958 +88522,16.372,90.051032 +88523,17.982,90.21578 +88524,19.614,90.40278 +88525,13.432,89.86468 +88526,15.025,90.049663 +88527,16.642,90.25598 +88528,18.282,90.48524 +88529,12.08,89.82249 +88530,13.679,90.048301 +88531,15.302,90.29611 +88532,16.949,90.56758 +88533,10.729,89.78043 +88534,12.333,90.046957 +88535,13.961,90.33616 +88536,15.614,90.64976 +88537,9.3795,89.73853 +88538,10.988,90.045641 +88539,12.62,90.37611 +88540,14.278,90.73175 +88541,8.0314,89.69682 +88542,9.6425,90.044363 +88543,11.279,90.41597 +88544,12.941,90.81351 +88545,6.6844,89.65533 +88546,8.2978,90.043133 +88547,9.9368,90.45572 +88548,11.602,90.89502 +88549,5.3388,89.61408 +88550,6.9535,90.041962 +88551,8.5943,90.49534 +88552,10.262,90.97623 +88553,3.9944,89.57311 +88554,5.6096,90.040861 +88555,7.2513,90.53483 +88556,8.9209,91.0571 +88557,2.6513,89.53245 +88558,4.2661,90.039839 +88559,5.9079,90.57418 +88560,7.5782,91.1376 +88561,1.3094,89.49213 +88562,2.9229,90.038907 +88563,4.564,90.61337 +88564,6.2342,91.2178 +88565,359.97,89.45218 +88566,1.5802,90.038074 +88567,3.2196,90.65239 +88568,4.8889,91.2975 +88569,358.63,89.41262 +88570,0.23782,90.037351 +88571,1.8747,90.69124 +88572,3.5422,91.3768 +88573,357.29,89.37349 +88574,358.9,90.036748 +88575,0.52942,90.7299 +88576,2.1942,91.4555 +88577,355.95,89.33482 +88578,357.55,90.036274 +88579,359.18,90.76836 +88580,0.84484,91.5338 +88581,354.62,89.29663 +88582,356.21,90.03594 +88583,357.84,90.80662 +88584,359.49,91.6115 +88585,353.28,89.25896 +88586,354.87,90.035755 +88587,356.49,90.84466 +88588,358.14,91.6886 +88589,351.95,89.22182 +88590,353.53,90.035729 +88591,355.14,90.88247 +88592,356.79,91.7651 +88593,350.62,89.18526 +88594,352.19,90.035871 +88595,353.8,90.92004 +88596,355.43,91.8409 +88597,349.29,89.14929 +88598,350.85,90.036192 +88599,352.45,90.95736 +88600,354.08,91.9161 +88601,347.96,89.11395 +88602,349.51,90.036699 +88603,351.1,90.99442 +88604,352.72,91.9905 +88605,346.63,89.07926 +88606,348.17,90.037403 +88607,349.75,91.0312 +88608,351.36,92.0642 +88609,345.3,89.04525 +88610,346.84,90.038313 +88611,348.4,91.0677 +88612,350,92.1372 +88613,343.98,89.01194 +88614,345.5,90.039437 +88615,347.05,91.104 +88616,348.64,92.2093 +88617,342.65,88.9794 +88618,344.16,90.040785 +88619,345.7,91.1399 +88620,347.28,92.2806 +88621,341.33,88.9475 +88622,342.82,90.042365 +88623,344.35,91.1755 +88624,345.92,92.3511 +88625,340.01,88.9165 +88626,341.48,90.044186 +88627,343,91.2108 +88628,344.55,92.4206 +88629,338.68,88.8863 +88630,340.15,90.046257 +88631,341.65,91.2458 +88632,343.18,92.4893 +88633,337.36,88.8569 +88634,338.81,90.048585 +88635,340.29,91.2804 +88636,341.82,92.557 +88637,336.05,88.8283 +88638,337.48,90.05118 +88639,338.94,91.3148 +88640,340.45,92.6237 +88641,334.73,88.8007 +88642,336.14,90.054049 +88643,337.59,91.3487 +88644,339.08,92.6894 +88645,333.41,88.7739 +88646,334.8,90.0572 +88647,336.24,91.3823 +88648,337.71,92.7542 +88649,332.09,88.7481 +88650,333.47,90.06064 +88651,334.88,91.4155 +88652,336.34,92.8178 +88653,330.78,88.7232 +88654,332.13,90.064379 +88655,333.53,91.4484 +88656,334.96,92.8804 +88657,329.46,88.6993 +88658,330.8,90.068422 +88659,332.17,91.4809 +88660,333.59,92.9419 +88661,328.15,88.6764 +88662,329.47,90.072777 +88663,330.82,91.5129 +88664,332.21,93.0023 +88665,326.84,88.6545 +88666,328.13,90.077451 +88667,329.46,91.5446 +88668,330.84,93.0615 +88669,325.53,88.6336 +88670,326.8,90.082452 +88671,328.11,91.5759 +88672,329.46,93.1195 +88673,324.22,88.6138 +88674,325.47,90.087786 +88675,326.75,91.6067 +88676,328.08,93.1764 +88677,322.91,88.5951 +88678,324.13,90.093459 +88679,325.39,91.6372 +88680,326.7,93.232 +88681,321.6,88.5774 +88682,322.8,90.099479 +88683,324.04,91.6672 +88684,325.32,93.2864 +88685,320.29,88.5609 +88686,321.47,90.10585 +88687,322.68,91.6967 +88688,323.94,93.3396 +88689,318.99,88.5455 +88690,320.14,90.11258 +88691,321.32,91.7259 +88692,322.55,93.3915 +88693,317.68,88.5312 +88694,318.8,90.11967 +88695,319.96,91.7546 +88696,321.17,93.4421 +88697,316.38,88.5181 +88698,317.47,90.12714 +88699,318.61,91.7828 +88700,319.78,93.4913 +88701,315.07,88.5062 +88702,316.14,90.13497 +88703,317.25,91.8106 +88704,318.4,93.5393 +88705,313.77,88.4955 +88706,314.81,90.14319 +88707,315.89,91.8379 +88708,317.01,93.5859 +88709,312.47,88.486 +88710,313.48,90.1518 +88711,314.53,91.8647 +88712,315.62,93.6311 +88713,311.16,88.4777 +88714,312.15,90.16079 +88715,313.17,91.8911 +88716,314.24,93.675 +88717,309.86,88.4706 +88718,310.82,90.17018 +88719,311.81,91.917 +88720,312.85,93.7175 +88721,308.56,88.4649 +88722,309.49,90.17996 +88723,310.45,91.9424 +88724,311.46,93.7585 +88725,307.26,88.4603 +88726,308.16,90.19015 +88727,309.09,91.9673 +88728,310.07,93.7982 +88729,305.96,88.4571 +88730,306.83,90.20075 +88731,307.73,91.9917 +88732,308.67,93.8364 +88733,304.67,88.4551 +88734,305.5,90.21176 +88735,306.37,92.0156 +88736,307.28,93.8732 +88737,303.37,88.4544 +88738,304.17,90.22318 +88739,305.01,92.039 +88740,305.89,93.9085 +88741,302.07,88.4551 +88742,302.84,90.23502 +88743,303.65,92.062 +88744,304.49,93.9423 +88745,300.77,88.4571 +88746,301.51,90.24728 +88747,302.28,92.0844 +88748,303.1,93.9747 +88749,299.48,88.4603 +88750,300.18,90.25996 +88751,300.92,92.1063 +88752,301.7,94.0056 +88753,298.18,88.465 +88754,298.85,90.27307 +88755,299.56,92.1277 +88756,300.31,94.035 +88757,296.89,88.4709 +88758,297.52,90.2866 +88759,298.2,92.1485 +88760,298.91,94.063 +88761,295.59,88.4783 +88762,296.2,90.30057 +88763,296.84,92.1689 +88764,297.52,94.0894 +88765,294.3,88.4869 +88766,294.87,90.31497 +88767,295.47,92.1887 +88768,296.12,94.1143 +88769,293,88.497 +88770,293.54,90.3298 +88771,294.11,92.208 +88772,294.72,94.1377 +88773,291.71,88.5084 +88774,292.21,90.34506 +88775,292.75,92.2268 +88776,293.32,94.1596 +88777,290.41,88.5211 +88778,290.88,90.36077 +88779,291.38,92.2451 +88780,291.92,94.1799 +88781,289.12,88.5353 +88782,289.55,90.37691 +88783,290.02,92.2629 +88784,290.52,94.1988 +88785,287.83,88.5508 +88786,288.23,90.39348 +88787,288.66,92.2801 +88788,289.12,94.2161 +88789,286.53,88.5677 +88790,286.9,90.4105 +88791,287.29,92.2968 +88792,287.72,94.2319 +88793,285.24,88.586 +88794,285.57,90.42795 +88795,285.93,92.3129 +88796,286.32,94.2462 +88797,283.95,88.6057 +88798,284.24,90.44585 +88799,284.56,92.3286 +88800,284.92,94.259 +88801,282.66,88.6267 +88802,282.91,90.46418 +88803,283.2,92.3437 +88804,283.52,94.2702 +88805,281.37,88.6491 +88806,281.59,90.48294 +88807,281.84,92.3583 +88808,282.12,94.2799 +88809,280.07,88.6729 +88810,280.26,90.50215 +88811,280.47,92.3723 +88812,280.72,94.2882 +88813,278.78,88.6981 +88814,278.93,90.52179 +88815,279.11,92.3859 +88816,279.32,94.2949 +88817,277.49,88.7247 +88818,277.6,90.54186 +88819,277.74,92.3989 +88820,277.92,94.3001 +88821,276.2,88.7526 +88822,276.27,90.56237 +88823,276.38,92.4114 +88824,276.52,94.3038 +88825,274.91,88.7819 +88826,274.95,90.58331 +88827,275.02,92.4234 +88828,275.11,94.306 +88829,273.61,88.8125 +88830,273.62,90.60468 +88831,273.65,92.4348 +88832,273.71,94.3068 +88833,272.32,88.8445 +88834,272.29,90.62647 +88835,272.29,92.4458 +88836,272.31,94.3061 +88837,271.03,88.8779 +88838,270.96,90.64869 +88839,270.92,92.4562 +88840,270.91,94.3039 +88841,269.74,88.9125 +88842,269.63,90.67133 +88843,269.56,92.4662 +88844,269.51,94.3003 +88845,268.44,88.9486 +88846,268.31,90.69439 +88847,268.19,92.4756 +88848,268.11,94.2952 +88849,267.15,88.9859 +88850,266.98,90.71786 +88851,266.83,92.4845 +88852,266.7,94.2887 +88853,265.86,89.02456 +88854,265.65,90.74175 +88855,265.46,92.4929 +88856,265.3,94.2808 +88857,264.57,89.06453 +88858,264.32,90.76605 +88859,264.1,92.5009 +88860,263.9,94.2715 +88861,263.27,89.10579 +88862,262.99,90.79075 +88863,262.73,92.5083 +88864,262.5,94.2608 +88865,261.98,89.14833 +88866,261.66,90.81585 +88867,261.37,92.5152 +88868,261.1,94.2487 +88869,260.69,89.19215 +88870,260.33,90.84135 +88871,260.01,92.5217 +88872,259.7,94.2352 +88873,259.39,89.23723 +88874,259.01,90.86723 +88875,258.64,92.5277 +88876,258.3,94.2204 +88877,258.1,89.28355 +88878,257.68,90.89351 +88879,257.28,92.5332 +88880,256.9,94.2043 +88881,256.8,89.33111 +88882,256.35,90.92017 +88883,255.91,92.5383 +88884,255.5,94.1868 +88885,255.51,89.37988 +88886,255.02,90.9472 +88887,254.55,92.5428 +88888,254.1,94.1681 +88889,254.21,89.42986 +88890,253.69,90.97461 +88891,253.19,92.547 +88892,252.7,94.1481 +88893,252.91,89.48102 +88894,252.36,91.0024 +88895,251.82,92.5507 +88896,251.3,94.1268 +88897,251.62,89.53335 +88898,251.03,91.0305 +88899,250.46,92.5539 +88900,249.91,94.1043 +88901,250.32,89.58684 +88902,249.7,91.059 +88903,249.1,92.5567 +88904,248.51,94.0806 +88905,249.02,89.64146 +88906,248.37,91.0878 +88907,247.73,92.559 +88908,247.11,94.0557 +88909,247.72,89.6972 +88910,247.04,91.117 +88911,246.37,92.561 +88912,245.72,94.0296 +88913,246.42,89.75404 +88914,245.71,91.1465 +88915,245.01,92.5625 +88916,244.32,94.0023 +88917,245.12,89.81196 +88918,244.38,91.1763 +88919,243.64,92.5636 +88920,242.93,93.9739 +88921,243.82,89.87094 +88922,243.04,91.2065 +88923,242.28,92.5643 +88924,241.53,93.9444 +88925,242.52,89.93095 +88926,241.71,91.237 +88927,240.92,92.5646 +88928,240.14,93.9138 +88929,241.22,89.9919816 +88930,240.38,91.2677 +88931,239.56,92.5645 +88932,238.74,93.8822 +88933,239.92,90.054008 +88934,239.05,91.2988 +88935,238.19,92.5641 +88936,237.35,93.8495 +88937,238.61,90.11701 +88938,237.72,91.3302 +88939,236.83,92.5632 +88940,235.96,93.8158 +88941,237.31,90.18096 +88942,236.38,91.3618 +88943,235.47,92.562 +88944,234.57,93.7811 +88945,236,90.24583 +88946,235.05,91.3937 +88947,234.11,92.5604 +88948,233.18,93.7455 +88949,234.7,90.31161 +88950,233.72,91.4259 +88951,232.75,92.5585 +88952,231.79,93.7089 +88953,233.39,90.37826 +88954,232.38,91.4583 +88955,231.39,92.5563 +88956,230.4,93.6714 +88957,232.08,90.44577 +88958,231.05,91.491 +88959,230.03,92.5537 +88960,229.01,93.6331 +88961,230.78,90.51411 +88962,229.71,91.5239 +88963,228.67,92.5508 +88964,227.63,93.5939 +88965,229.47,90.58324 +88966,228.38,91.5571 +88967,227.31,92.5475 +88968,226.24,93.5538 +88969,228.16,90.65315 +88970,227.05,91.5905 +88971,225.95,92.544 +88972,224.86,93.513 +88973,226.84,90.72381 +88974,225.71,91.624 +88975,224.59,92.5402 +88976,223.47,93.4714 +88977,225.53,90.79519 +88978,224.37,91.6578 +88979,223.23,92.5361 +88980,222.09,93.429 +88981,224.22,90.86726 +88982,223.04,91.6918 +88983,221.87,92.5317 +88984,220.71,93.386 +88985,222.91,90.94 +88986,221.7,91.726 +88987,220.51,92.527 +88988,219.33,93.3422 +88989,221.59,91.0134 +88990,220.37,91.7603 +88991,219.15,92.5221 +88992,217.94,93.2978 +88993,220.27,91.0873 +88994,219.03,91.7948 +88995,217.79,92.517 +88996,216.57,93.2528 +88997,218.96,91.1619 +88998,217.69,91.8295 +88999,216.43,92.5116 +89000,215.19,93.2072 +89001,217.64,91.237 +89002,216.35,91.8643 +89003,215.08,92.5059 +89004,213.81,93.1611 +89005,216.32,91.3126 +89006,215.02,91.8992 +89007,213.72,92.5001 +89008,212.43,93.1144 +89009,215,91.3887 +89010,213.68,91.9342 +89011,212.36,92.4941 +89012,211.06,93.0672 +89013,213.68,91.4653 +89014,212.34,91.9694 +89015,211.01,92.4878 +89016,209.68,93.0195 +89017,212.36,91.5423 +89018,211,92.0047 +89019,209.65,92.4814 +89020,208.31,92.9714 +89021,211.03,91.6196 +89022,209.66,92.04 +89023,208.29,92.4748 +89024,206.94,92.9229 +89025,209.71,91.6974 +89026,208.32,92.0755 +89027,206.94,92.468 +89028,205.57,92.8741 +89029,208.38,91.7755 +89030,206.98,92.111 +89031,205.58,92.4611 +89032,204.2,92.8248 +89033,207.06,91.8538 +89034,205.64,92.1465 +89035,204.23,92.454 +89036,202.83,92.7753 +89037,205.73,91.9324 +89038,204.3,92.1821 +89039,202.87,92.4468 +89040,201.46,92.7255 +89041,204.4,92.0113 +89042,202.95,92.2178 +89043,201.52,92.4395 +89044,200.1,92.6755 +89045,203.07,92.0904 +89046,201.61,92.2535 +89047,200.17,92.432 +89048,198.73,92.6252 +89049,201.74,92.1696 +89050,200.27,92.2891 +89051,198.81,92.4245 +89052,197.37,92.5748 +89053,200.4,92.2489 +89054,198.93,92.3248 +89055,197.46,92.4169 +89056,196.01,92.5242 +89057,199.07,92.3284 +89058,197.58,92.3605 +89059,196.11,92.4091 +89060,194.64,92.4734 +89061,197.73,92.4079 +89062,196.24,92.3962 +89063,194.76,92.4014 +89064,193.28,92.4227 +89065,196.4,92.4875 +89066,194.89,92.4318 +89067,193.4,92.3935 +89068,191.93,92.3718 +89069,195.06,92.567 +89070,193.55,92.4674 +89071,192.05,92.3856 +89072,190.57,92.3209 +89073,193.72,92.6465 +89074,192.2,92.5029 +89075,190.7,92.3777 +89076,189.21,92.2701 +89077,192.38,92.726 +89078,190.86,92.5384 +89079,189.35,92.3698 +89080,187.86,92.2193 +89081,191.04,92.8053 +89082,189.51,92.5738 +89083,188,92.3618 +89084,186.5,92.1685 +89085,189.7,92.8845 +89086,188.17,92.6091 +89087,186.65,92.3539 +89088,185.15,92.1179 +89089,188.35,92.9635 +89090,186.82,92.6443 +89091,185.3,92.3459 +89092,183.8,92.0674 +89093,187.01,93.0423 +89094,185.47,92.6794 +89095,183.95,92.338 +89096,182.45,92.0171 +89097,185.66,93.1209 +89098,184.12,92.7144 +89099,182.6,92.3301 +89100,181.1,91.9669 +89101,184.31,93.1992 +89102,182.78,92.7492 +89103,181.25,92.3222 +89104,179.75,91.917 +89105,182.96,93.2771 +89106,181.43,92.7839 +89107,179.91,92.3144 +89108,178.4,91.8674 +89109,181.61,93.3548 +89110,180.08,92.8185 +89111,178.56,92.3066 +89112,177.06,91.8181 +89113,180.26,93.432 +89114,178.73,92.8528 +89115,177.21,92.299 +89116,175.71,91.7691 +89117,178.91,93.5089 +89118,177.38,92.887 +89119,175.86,92.2914 +89120,174.37,91.7204 +89121,177.55,93.5853 +89122,176.03,92.921 +89123,174.52,92.2838 +89124,173.03,91.6722 +89125,176.2,93.6612 +89126,174.68,92.9549 +89127,173.17,92.2764 +89128,171.68,91.6244 +89129,174.84,93.7366 +89130,173.33,92.9885 +89131,171.83,92.2691 +89132,170.34,91.577 +89133,173.49,93.8115 +89134,171.97,93.0219 +89135,170.48,92.262 +89136,169.01,91.5301 +89137,172.13,93.8857 +89138,170.62,93.055 +89139,169.14,92.2549 +89140,167.67,91.4837 +89141,170.77,93.9594 +89142,169.27,93.0879 +89143,167.79,92.2481 +89144,166.33,91.4378 +89145,169.4,94.0324 +89146,167.92,93.1206 +89147,166.45,92.2413 +89148,165,91.3925 +89149,168.04,94.1048 +89150,166.56,93.153 +89151,165.1,92.2347 +89152,163.66,91.3478 +89153,166.68,94.1764 +89154,165.21,93.1851 +89155,163.76,92.2283 +89156,162.33,91.3037 +89157,165.31,94.2473 +89158,163.85,93.2169 +89159,162.42,92.2221 +89160,161,91.2603 +89161,163.95,94.3174 +89162,162.5,93.2485 +89163,161.07,92.2161 +89164,159.67,91.2175 +89165,162.58,94.3867 +89166,161.14,93.2797 +89167,159.73,92.2103 +89168,158.34,91.1755 +89169,161.21,94.4552 +89170,159.79,93.3107 +89171,158.39,92.2047 +89172,157.01,91.1342 +89173,159.84,94.5228 +89174,158.43,93.3413 +89175,157.05,92.1993 +89176,155.68,91.0936 +89177,158.47,94.5895 +89178,157.08,93.3716 +89179,155.71,92.1941 +89180,154.36,91.0538 +89181,157.1,94.6553 +89182,155.72,93.4015 +89183,154.36,92.1892 +89184,153.03,91.0149 +89185,155.73,94.7201 +89186,154.36,93.4311 +89187,153.02,92.1845 +89188,151.71,90.97676 +89189,154.35,94.784 +89190,153,93.4603 +89191,151.68,92.1801 +89192,150.38,90.9395 +89193,152.98,94.8468 +89194,151.65,93.4892 +89195,150.34,92.1759 +89196,149.06,90.90313 +89197,151.6,94.9086 +89198,150.29,93.5176 +89199,149,92.172 +89200,147.74,90.86767 +89201,150.22,94.9694 +89202,148.93,93.5457 +89203,147.66,92.1684 +89204,146.42,90.83314 +89205,148.84,95.029 +89206,147.57,93.5734 +89207,146.32,92.1651 +89208,145.1,90.79957 +89209,147.46,95.0875 +89210,146.21,93.6007 +89211,144.99,92.1621 +89212,143.78,90.76697 +89213,146.08,95.1449 +89214,144.85,93.6276 +89215,143.65,92.1594 +89216,142.46,90.73538 +89217,144.7,95.2011 +89218,143.49,93.654 +89219,142.31,92.157 +89220,141.15,90.70481 +89221,143.32,95.2561 +89222,142.13,93.6801 +89223,140.97,92.1549 +89224,139.83,90.67529 +89225,141.94,95.3099 +89226,140.77,93.7057 +89227,139.63,92.1531 +89228,138.52,90.64683 +89229,140.55,95.3624 +89230,139.41,93.7308 +89231,138.29,92.1517 +89232,137.2,90.61945 +89233,139.17,95.4137 +89234,138.05,93.7555 +89235,136.96,92.1506 +89236,135.89,90.59318 +89237,137.78,95.4637 +89238,136.69,93.7797 +89239,135.62,92.1498 +89240,134.58,90.56803 +89241,136.39,95.5124 +89242,135.32,93.8035 +89243,134.28,92.1494 +89244,133.27,90.54402 +89245,135,95.5597 +89246,133.96,93.8268 +89247,132.95,92.1494 +89248,131.96,90.52118 +89249,133.62,95.6057 +89250,132.6,93.8497 +89251,131.61,92.1497 +89252,130.65,90.49951 +89253,132.23,95.6504 +89254,131.24,93.872 +89255,130.28,92.1504 +89256,129.34,90.47903 +89257,130.84,95.6936 +89258,129.87,93.8939 +89259,128.94,92.1515 +89260,128.03,90.45976 +89261,129.44,95.7354 +89262,128.51,93.9152 +89263,127.6,92.1529 +89264,126.72,90.44172 +89265,128.05,95.7759 +89266,127.15,93.9361 +89267,126.27,92.1548 +89268,125.42,90.42491 +89269,126.66,95.8148 +89270,125.78,93.9565 +89271,124.93,92.157 +89272,124.11,90.40936 +89273,125.27,95.8524 +89274,124.42,93.9763 +89275,123.6,92.1596 +89276,122.8,90.39508 +89277,123.87,95.8884 +89278,123.05,93.9957 +89279,122.26,92.1626 +89280,121.5,90.38208 +89281,122.48,95.923 +89282,121.69,94.0145 +89283,120.93,92.166 +89284,120.19,90.37037 +89285,121.08,95.9561 +89286,120.32,94.0328 +89287,119.59,92.1699 +89288,118.89,90.35997 +89289,119.68,95.9876 +89290,118.96,94.0505 +89291,118.26,92.1741 +89292,117.59,90.35088 +89293,118.29,96.0177 +89294,117.59,94.0678 +89295,116.93,92.1788 +89296,116.28,90.34312 +89297,116.89,96.0462 +89298,116.23,94.0845 +89299,115.59,92.1838 +89300,114.98,90.33669 +89301,115.49,96.0731 +89302,114.86,94.1006 +89303,114.26,92.1893 +89304,113.68,90.33161 +89305,114.09,96.0986 +89306,113.5,94.1162 +89307,112.92,92.1952 +89308,112.38,90.32788 +89309,112.7,96.1224 +89310,112.13,94.1313 +89311,111.59,92.2016 +89312,111.07,90.32551 +89313,111.3,96.1447 +89314,110.76,94.1458 +89315,110.26,92.2083 +89316,109.77,90.32451 +89317,109.9,96.1654 +89318,109.4,94.1598 +89319,108.92,92.2155 +89320,108.47,90.32489 +89321,108.5,96.1846 +89322,108.03,94.1732 +89323,107.59,92.2232 +89324,107.17,90.32665 +89325,107.1,96.2021 +89326,106.66,94.1861 +89327,106.26,92.2312 +89328,105.87,90.32979 +89329,105.7,96.2181 +89330,105.3,94.1984 +89331,104.92,92.2397 +89332,104.57,90.33432 +89333,104.29,96.2325 +89334,103.93,94.2102 +89335,103.59,92.2486 +89336,103.27,90.34024 +89337,102.89,96.2452 +89338,102.56,94.2214 +89339,102.26,92.258 +89340,101.97,90.34757 +89341,101.49,96.2564 +89342,101.2,94.2321 +89343,100.92,92.2678 +89344,100.67,90.35629 +89345,100.09,96.266 +89346,99.829,94.2422 +89347,99.591,92.2781 +89348,99.374,90.36641 +89349,98.688,96.274 +89350,98.461,94.2517 +89351,98.258,92.2888 +89352,98.075,90.37793 +89353,97.285,96.2804 +89354,97.094,94.2607 +89355,96.925,92.2999 +89356,96.776,90.39085 +89357,95.883,96.2852 +89358,95.727,94.2691 +89359,95.593,92.3114 +89360,95.478,90.40517 +89361,94.481,96.2884 +89362,94.359,94.277 +89363,94.26,92.3234 +89364,94.179,90.42089 +89365,93.078,96.29 +89366,92.992,94.2843 +89367,92.927,92.3359 +89368,92.88,90.43801 +89369,91.676,96.2901 +89370,91.624,94.2911 +89371,91.594,92.3487 +89372,91.581,90.45653 +89373,90.273,96.2886 +89374,90.257,94.2973 +89375,90.261,92.362 +89376,90.282,90.47643 +89377,88.87,96.2855 +89378,88.889,94.3029 +89379,88.928,92.3758 +89380,88.983,90.49772 +89381,87.468,96.2808 +89382,87.522,94.308 +89383,87.594,92.3899 +89384,87.684,90.5204 +89385,86.065,96.2746 +89386,86.154,94.3126 +89387,86.261,92.4045 +89388,86.385,90.54445 +89389,84.663,96.2668 +89390,84.787,94.3166 +89391,84.928,92.4195 +89392,85.086,90.56988 +89393,83.261,96.2575 +89394,83.419,94.3201 +89395,83.595,92.435 +89396,83.786,90.59666 +89397,81.859,96.2467 +89398,82.052,94.323 +89399,82.261,92.4508 +89400,82.487,90.62481 +89401,80.457,96.2344 +89402,80.684,94.3254 +89403,80.928,92.4671 +89404,81.187,90.6543 +89405,79.055,96.2205 +89406,79.317,94.3273 +89407,79.594,92.4838 +89408,79.886,90.68513 +89409,77.654,96.2052 +89410,77.95,94.3286 +89411,78.261,92.5009 +89412,78.586,90.71729 +89413,76.253,96.1884 +89414,76.582,94.3294 +89415,76.927,92.5184 +89416,77.285,90.75077 +89417,74.852,96.1701 +89418,75.215,94.3297 +89419,75.593,92.5363 +89420,75.984,90.78557 +89421,73.451,96.1504 +89422,73.848,94.3295 +89423,74.259,92.5546 +89424,74.683,90.82165 +89425,72.051,96.1293 +89426,72.481,94.3287 +89427,72.925,92.5733 +89428,73.381,90.85902 +89429,70.651,96.1067 +89430,71.114,94.3275 +89431,71.59,92.5924 +89432,72.078,90.89767 +89433,69.252,96.0827 +89434,69.748,94.3258 +89435,70.256,92.6119 +89436,70.776,90.93757 +89437,67.853,96.0574 +89438,68.381,94.3235 +89439,68.921,92.6317 +89440,69.472,90.97871 +89441,66.455,96.0307 +89442,67.015,94.3208 +89443,67.586,92.652 +89444,68.169,91.0211 +89445,65.057,96.0026 +89446,65.648,94.3176 +89447,66.251,92.6726 +89448,66.864,91.0647 +89449,63.659,95.9733 +89450,64.282,94.3139 +89451,64.916,92.6935 +89452,65.56,91.1095 +89453,62.262,95.9426 +89454,62.916,94.3097 +89455,63.581,92.7149 +89456,64.254,91.1554 +89457,60.866,95.9106 +89458,61.551,94.3051 +89459,62.245,92.7365 +89460,62.948,91.2026 +89461,59.47,95.8774 +89462,60.185,94.3 +89463,60.909,92.7585 +89464,61.642,91.2508 +89465,58.075,95.843 +89466,58.82,94.2945 +89467,59.573,92.7809 +89468,60.335,91.3002 +89469,56.681,95.8073 +89470,57.454,94.2885 +89471,58.237,92.8036 +89472,59.027,91.3507 +89473,55.287,95.7705 +89474,56.089,94.2821 +89475,56.9,92.8266 +89476,57.718,91.4023 +89477,53.894,95.7324 +89478,54.725,94.2752 +89479,55.563,92.8499 +89480,56.409,91.455 +89481,52.501,95.6933 +89482,53.36,94.268 +89483,54.226,92.8735 +89484,55.099,91.5087 +89485,51.11,95.653 +89486,51.996,94.2603 +89487,52.889,92.8975 +89488,53.788,91.5634 +89489,49.719,95.6117 +89490,50.632,94.2522 +89491,51.551,92.9217 +89492,52.477,91.6192 +89493,48.329,95.5692 +89494,49.268,94.2437 +89495,50.213,92.9462 +89496,51.165,91.6759 +89497,46.939,95.5258 +89498,47.904,94.2348 +89499,48.875,92.971 +89500,49.852,91.7335 +89501,45.551,95.4813 +89502,46.541,94.2256 +89503,47.537,92.9961 +89504,48.538,91.7922 +89505,44.163,95.4358 +89506,45.178,94.216 +89507,46.198,93.0214 +89508,47.223,91.8517 +89509,42.776,95.3894 +89510,43.815,94.206 +89511,44.859,93.0469 +89512,45.907,91.9121 +89513,41.391,95.3421 +89514,42.452,94.1956 +89515,43.519,93.0728 +89516,44.591,91.9733 +89517,40.006,95.2939 +89518,41.09,94.1849 +89519,42.18,93.0988 +89520,43.273,92.0354 +89521,38.622,95.2448 +89522,39.728,94.1739 +89523,40.84,93.1251 +89524,41.955,92.0983 +89525,37.238,95.1948 +89526,38.366,94.1625 +89527,39.499,93.1516 +89528,40.636,92.162 +89529,35.856,95.1441 +89530,37.005,94.1509 +89531,38.159,93.1783 +89532,39.316,92.2264 +89533,34.475,95.0926 +89534,35.644,94.1389 +89535,36.817,93.2052 +89536,37.994,92.2915 +89537,33.095,95.0403 +89538,34.283,94.1266 +89539,35.476,93.2322 +89540,36.672,92.3574 +89541,31.716,94.9873 +89542,32.923,94.1141 +89543,34.134,93.2595 +89544,35.349,92.4239 +89545,30.337,94.9336 +89546,31.563,94.1012 +89547,32.792,93.2869 +89548,34.025,92.491 +89549,28.96,94.8793 +89550,30.203,94.0881 +89551,31.45,93.3145 +89552,32.7,92.5588 +89553,27.584,94.8244 +89554,28.844,94.0748 +89555,30.107,93.3422 +89556,31.373,92.6271 +89557,26.209,94.7688 +89558,27.484,94.0612 +89559,28.764,93.3701 +89560,30.046,92.696 +89561,24.835,94.7128 +89562,26.126,94.0473 +89563,27.42,93.3981 +89564,28.718,92.7655 +89565,23.462,94.6561 +89566,24.767,94.0333 +89567,26.076,93.4262 +89568,27.388,92.8354 +89569,22.09,94.599 +89570,23.409,94.019 +89571,24.732,93.4544 +89572,26.058,92.9057 +89573,20.72,94.5415 +89574,22.051,94.0045 +89575,23.387,93.4827 +89576,24.726,92.9765 +89577,19.35,94.4835 +89578,20.694,93.9898 +89579,22.042,93.5111 +89580,23.393,93.0477 +89581,17.981,94.4251 +89582,19.337,93.975 +89583,20.697,93.5396 +89584,22.059,93.1193 +89585,16.614,94.3664 +89586,17.98,93.96 +89587,19.351,93.5681 +89588,20.724,93.1911 +89589,15.248,94.3073 +89590,16.624,93.9448 +89591,18.005,93.5966 +89592,19.388,93.2633 +89593,13.883,94.2479 +89594,15.268,93.9295 +89595,16.658,93.6253 +89596,18.051,93.3358 +89597,12.519,94.1883 +89598,13.913,93.914 +89599,15.311,93.6539 +89600,16.713,93.4085 +89601,11.156,94.1284 +89602,12.558,93.8984 +89603,13.964,93.6826 +89604,15.373,93.4813 +89605,9.7944,94.0684 +89606,11.203,93.8827 +89607,12.616,93.7112 +89608,14.032,93.5544 +89609,8.4339,94.0082 +89610,9.8484,93.8669 +89611,11.268,93.7399 +89612,12.69,93.6276 +89613,7.0747,93.9479 +89614,8.4944,93.851 +89615,9.919,93.7685 +89616,11.347,93.7009 +89617,5.7166,93.8874 +89618,7.1407,93.835 +89619,8.5699,93.7972 +89620,10.003,93.7742 +89621,4.3596,93.8269 +89622,5.7874,93.8189 +89623,7.2205,93.8257 +89624,8.6571,93.8476 +89625,3.0039,93.7664 +89626,4.4346,93.8028 +89627,5.8706,93.8543 +89628,7.3104,93.921 +89629,1.6493,93.7059 +89630,3.0821,93.7867 +89631,4.5203,93.8827 +89632,5.9625,93.9944 +89633,0.29595,93.6454 +89634,1.7299,93.7705 +89635,3.1696,93.9111 +89636,4.6134,94.0676 +89637,358.94,93.585 +89638,0.37821,93.7543 +89639,1.8185,93.9394 +89640,3.2632,94.1408 +89641,357.59,93.5248 +89642,359.03,93.738 +89643,0.46699,93.9676 +89644,1.9117,94.2138 +89645,356.24,93.4646 +89646,357.68,93.7218 +89647,359.12,93.9957 +89648,0.559,94.2867 +89649,354.89,93.4046 +89650,356.33,93.7056 +89651,357.76,94.0237 +89652,359.21,94.3594 +89653,353.55,93.3448 +89654,354.98,93.6893 +89655,356.41,94.0516 +89656,357.85,94.4318 +89657,352.2,93.2853 +89658,353.63,93.6732 +89659,355.06,94.0793 +89660,356.49,94.5039 +89661,350.86,93.226 +89662,352.28,93.657 +89663,353.7,94.1068 +89664,355.14,94.5758 +89665,349.51,93.167 +89666,350.93,93.6409 +89667,352.35,94.1342 +89668,353.78,94.6472 +89669,348.17,93.1084 +89670,349.58,93.6249 +89671,350.99,94.1614 +89672,352.42,94.7184 +89673,346.83,93.0501 +89674,348.23,93.609 +89675,349.64,94.1885 +89676,351.06,94.789 +89677,345.49,92.9922 +89678,346.88,93.5931 +89679,348.28,94.2153 +89680,349.69,94.8593 +89681,344.15,92.9348 +89682,345.53,93.5773 +89683,346.93,94.2419 +89684,348.33,94.9291 +89685,342.81,92.8778 +89686,344.19,93.5617 +89687,345.57,94.2683 +89688,346.97,94.9983 +89689,341.47,92.8213 +89690,342.84,93.5461 +89691,344.22,94.2945 +89692,345.6,95.067 +89693,340.14,92.7653 +89694,341.49,93.5307 +89695,342.86,94.3204 +89696,344.23,95.1351 +89697,338.8,92.7098 +89698,340.15,93.5154 +89699,341.5,94.3461 +89700,342.87,95.2026 +89701,337.47,92.6549 +89702,338.8,93.5003 +89703,340.15,94.3715 +89704,341.5,95.2695 +89705,336.13,92.6007 +89706,337.46,93.4853 +89707,338.79,94.3966 +89708,340.13,95.3357 +89709,334.8,92.547 +89710,336.11,93.4705 +89711,337.43,94.4215 +89712,338.76,95.4012 +89713,333.47,92.4941 +89714,334.77,93.4559 +89715,336.07,94.4461 +89716,337.38,95.4659 +89717,332.14,92.4418 +89718,333.42,93.4415 +89719,334.71,94.4703 +89720,336.01,95.5298 +89721,330.81,92.3902 +89722,332.08,93.4272 +89723,333.35,94.4943 +89724,334.64,95.593 +89725,329.49,92.3394 +89726,330.74,93.4132 +89727,331.99,94.5179 +89728,333.26,95.6553 +89729,328.16,92.2894 +89730,329.39,93.3994 +89731,330.63,94.5411 +89732,331.88,95.7167 +89733,326.83,92.2402 +89734,328.05,93.3858 +89735,329.27,94.5641 +89736,330.51,95.7772 +89737,325.51,92.1917 +89738,326.71,93.3724 +89739,327.91,94.5867 +89740,329.13,95.8368 +89741,324.19,92.1442 +89742,325.36,93.3593 +89743,326.55,94.6089 +89744,327.75,95.8954 +89745,322.86,92.0975 +89746,324.02,93.3464 +89747,325.19,94.6307 +89748,326.37,95.9531 +89749,321.54,92.0517 +89750,322.68,93.3338 +89751,323.83,94.6522 +89752,324.98,96.0097 +89753,320.22,92.0069 +89754,321.34,93.3214 +89755,322.46,94.6733 +89756,323.6,96.0653 +89757,318.9,91.9629 +89758,320,93.3094 +89759,321.1,94.6939 +89760,322.22,96.1198 +89761,317.58,91.92 +89762,318.66,93.2976 +89763,319.74,94.7142 +89764,320.83,96.1732 +89765,316.27,91.8781 +89766,317.32,93.2861 +89767,318.38,94.7341 +89768,319.45,96.2255 +89769,314.95,91.8372 +89770,315.98,93.2749 +89771,317.01,94.7535 +89772,318.06,96.2766 +89773,313.63,91.7973 +89774,314.64,93.264 +89775,315.65,94.7725 +89776,316.67,96.3265 +89777,312.32,91.7585 +89778,313.3,93.2535 +89779,314.29,94.791 +89780,315.29,96.3752 +89781,311,91.7207 +89782,311.96,93.2432 +89783,312.92,94.8091 +89784,313.9,96.4227 +89785,309.69,91.6841 +89786,310.62,93.2333 +89787,311.56,94.8268 +89788,312.51,96.469 +89789,308.37,91.6486 +89790,309.28,93.2238 +89791,310.19,94.844 +89792,311.12,96.5139 +89793,307.06,91.6142 +89794,307.94,93.2145 +89795,308.83,94.8607 +89796,309.72,96.5576 +89797,305.75,91.581 +89798,306.6,93.2056 +89799,307.46,94.8769 +89800,308.33,96.5999 +89801,304.44,91.5489 +89802,305.26,93.1971 +89803,306.1,94.8926 +89804,306.94,96.6409 +89805,303.13,91.5181 +89806,303.92,93.189 +89807,304.73,94.9079 +89808,305.55,96.6805 +89809,301.82,91.4884 +89810,302.59,93.1812 +89811,303.36,94.9227 +89812,304.15,96.7187 +89813,300.51,91.46 +89814,301.25,93.1737 +89815,302,94.9369 +89816,302.76,96.7556 +89817,299.2,91.4328 +89818,299.91,93.1667 +89819,300.63,94.9507 +89820,301.36,96.791 +89821,297.89,91.4069 +89822,298.57,93.16 +89823,299.26,94.9639 +89824,299.97,96.8249 +89825,296.58,91.3823 +89826,297.24,93.1538 +89827,297.9,94.9766 +89828,298.57,96.8574 +89829,295.28,91.3589 +89830,295.9,93.1479 +89831,296.53,94.9888 +89832,297.17,96.8884 +89833,293.97,91.3368 +89834,294.56,93.1424 +89835,295.16,95.0005 +89836,295.77,96.918 +89837,292.67,91.3161 +89838,293.23,93.1373 +89839,293.8,95.0116 +89840,294.38,96.946 +89841,291.36,91.2966 +89842,291.89,93.1327 +89843,292.43,95.0222 +89844,292.98,96.9725 +89845,290.05,91.2785 +89846,290.55,93.1284 +89847,291.06,95.0323 +89848,291.58,96.9975 +89849,288.75,91.2618 +89850,289.22,93.1246 +89851,289.69,95.0418 +89852,290.18,97.0209 +89853,287.45,91.2463 +89854,287.88,93.1211 +89855,288.33,95.0507 +89856,288.78,97.0427 +89857,286.14,91.2323 +89858,286.55,93.1181 +89859,286.96,95.0591 +89860,287.38,97.063 +89861,284.84,91.2196 +89862,285.21,93.1155 +89863,285.59,95.067 +89864,285.98,97.0818 +89865,283.53,91.2083 +89866,283.87,93.1134 +89867,284.22,95.0742 +89868,284.57,97.0989 +89869,282.23,91.1983 +89870,282.54,93.1116 +89871,282.85,95.081 +89872,283.17,97.1144 +89873,280.93,91.1898 +89874,281.2,93.1103 +89875,281.48,95.0871 +89876,281.77,97.1283 +89877,279.63,91.1826 +89878,279.87,93.1094 +89879,280.12,95.0927 +89880,280.37,97.1406 +89881,278.32,91.1768 +89882,278.53,93.109 +89883,278.75,95.0978 +89884,278.97,97.1513 +89885,277.02,91.1725 +89886,277.2,93.109 +89887,277.38,95.1022 +89888,277.56,97.1604 +89889,275.72,91.1695 +89890,275.86,93.1094 +89891,276.01,95.1061 +89892,276.16,97.1679 +89893,274.42,91.168 +89894,274.53,93.1103 +89895,274.64,95.1094 +89896,274.76,97.1737 +89897,273.11,91.1678 +89898,273.19,93.1116 +89899,273.27,95.1122 +89900,273.36,97.1779 +89901,271.81,91.1691 +89902,271.86,93.1133 +89903,271.9,95.1143 +89904,271.95,97.1804 +89905,270.51,91.1718 +89906,270.52,93.1155 +89907,270.53,95.1159 +89908,270.55,97.1814 +89909,269.21,91.1758 +89910,269.18,93.1181 +89911,269.16,95.117 +89912,269.15,97.1807 +89913,267.91,91.1813 +89914,267.85,93.1212 +89915,267.8,95.1174 +89916,267.75,97.1783 +89917,266.6,91.1882 +89918,266.51,93.1246 +89919,266.43,95.1173 +89920,266.34,97.1744 +89921,265.3,91.1966 +89922,265.18,93.1286 +89923,265.06,95.1166 +89924,264.94,97.1688 +89925,264,91.2063 +89926,263.84,93.1329 +89927,263.69,95.1154 +89928,263.54,97.1616 +89929,262.7,91.2174 +89930,262.51,93.1377 +89931,262.32,95.1136 +89932,262.14,97.1528 +89933,261.4,91.2299 +89934,261.17,93.1429 +89935,260.95,95.1112 +89936,260.73,97.1424 +89937,260.09,91.2438 +89938,259.84,93.1486 +89939,259.58,95.1082 +89940,259.33,97.1303 +89941,258.79,91.2591 +89942,258.5,93.1547 +89943,258.21,95.1047 +89944,257.93,97.1167 +89945,257.49,91.2757 +89946,257.17,93.1612 +89947,256.85,95.1006 +89948,256.53,97.1015 +89949,256.18,91.2937 +89950,255.83,93.1681 +89951,255.48,95.096 +89952,255.13,97.0847 +89953,254.88,91.3131 +89954,254.49,93.1754 +89955,254.11,95.0908 +89956,253.72,97.0664 +89957,253.57,91.3339 +89958,253.16,93.1832 +89959,252.74,95.0851 +89960,252.32,97.0464 +89961,252.27,91.356 +89962,251.82,93.1914 +89963,251.37,95.0788 +89964,250.92,97.025 +89965,250.97,91.3794 +89966,250.49,93.2 +89967,250,95.072 +89968,249.52,97.002 +89969,249.66,91.4041 +89970,249.15,93.209 +89971,248.64,95.0646 +89972,248.12,96.9775 +89973,248.35,91.4302 +89974,247.81,93.2184 +89975,247.27,95.0567 +89976,246.73,96.9515 +89977,247.05,91.4575 +89978,246.48,93.2282 +89979,245.9,95.0483 +89980,245.33,96.924 +89981,245.74,91.4862 +89982,245.14,93.2384 +89983,244.53,95.0394 +89984,243.93,96.895 +89985,244.43,91.5161 +89986,243.8,93.2489 +89987,243.17,95.0299 +89988,242.53,96.8646 +89989,243.13,91.5473 +89990,242.46,93.2599 +89991,241.8,95.0199 +89992,241.13,96.8327 +89993,241.82,91.5797 +89994,241.13,93.2712 +89995,240.43,95.0094 +89996,239.74,96.7994 +89997,240.51,91.6134 +89998,239.79,93.283 +89999,239.07,94.9984 +90000,238.34,96.7647 +90001,239.2,91.6482 +90002,238.45,93.295 +90003,237.7,94.9869 +90004,236.95,96.7286 +90005,237.89,91.6843 +90006,237.11,93.3075 +90007,236.33,94.9749 +90008,235.55,96.6912 +90009,236.58,91.7215 +90010,235.78,93.3203 +90011,234.97,94.9625 +90012,234.16,96.6524 +90013,235.27,91.76 +90014,234.44,93.3335 +90015,233.6,94.9495 +90016,232.76,96.6123 +90017,233.96,91.7995 +90018,233.1,93.3469 +90019,232.24,94.9361 +90020,231.37,96.5709 +90021,232.64,91.8402 +90022,231.76,93.3608 +90023,230.87,94.9222 +90024,229.98,96.5282 +90025,231.33,91.882 +90026,230.42,93.3749 +90027,229.51,94.9079 +90028,228.59,96.4843 +90029,230.02,91.9249 +90030,229.08,93.3894 +90031,228.14,94.8931 +90032,227.2,96.4391 +90033,228.7,91.9689 +90034,227.74,93.4042 +90035,226.78,94.8778 +90036,225.81,96.3927 +90037,227.39,92.0139 +90038,226.4,93.4194 +90039,225.41,94.8622 +90040,224.42,96.3452 +90041,226.07,92.0599 +90042,225.06,93.4348 +90043,224.05,94.8461 +90044,223.03,96.2965 +90045,224.75,92.1069 +90046,223.72,93.4505 +90047,222.68,94.8296 +90048,221.64,96.2466 +90049,223.43,92.1549 +90050,222.38,93.4665 +90051,221.32,94.8126 +90052,220.26,96.1957 +90053,222.12,92.2039 +90054,221.04,93.4827 +90055,219.96,94.7953 +90056,218.87,96.1437 +90057,220.8,92.2538 +90058,219.7,93.4993 +90059,218.59,94.7776 +90060,217.49,96.0907 +90061,219.47,92.3046 +90062,218.36,93.5161 +90063,217.23,94.7595 +90064,216.1,96.0366 +90065,218.15,92.3563 +90066,217.01,93.5331 +90067,215.87,94.741 +90068,214.72,95.9816 +90069,216.83,92.4088 +90070,215.67,93.5504 +90071,214.51,94.7222 +90072,213.34,95.9256 +90073,215.51,92.4622 +90074,214.33,93.568 +90075,213.15,94.703 +90076,211.96,95.8686 +90077,214.18,92.5164 +90078,212.99,93.5857 +90079,211.79,94.6835 +90080,210.58,95.8108 +90081,212.86,92.5714 +90082,211.64,93.6037 +90083,210.42,94.6636 +90084,209.2,95.7521 +90085,211.53,92.6271 +90086,210.3,93.6219 +90087,209.06,94.6434 +90088,207.82,95.6925 +90089,210.2,92.6835 +90090,208.96,93.6402 +90091,207.7,94.6228 +90092,206.45,95.6322 +90093,208.87,92.7407 +90094,207.61,93.6588 +90095,206.34,94.602 +90096,205.07,95.5711 +90097,207.54,92.7985 +90098,206.27,93.6775 +90099,204.98,94.5809 +90100,203.7,95.5092 +90101,206.21,92.857 +90102,204.92,93.6965 +90103,203.62,94.5595 +90104,202.32,95.4466 +90105,204.88,92.916 +90106,203.58,93.7155 +90107,202.27,94.5378 +90108,200.95,95.3834 +90109,203.55,92.9757 +90110,202.23,93.7347 +90111,200.91,94.5159 +90112,199.58,95.3195 +90113,202.21,93.0359 +90114,200.88,93.7541 +90115,199.55,94.4937 +90116,198.21,95.2549 +90117,200.88,93.0966 +90118,199.54,93.7736 +90119,198.19,94.4712 +90120,196.84,95.1898 +90121,199.54,93.1579 +90122,198.19,93.7931 +90123,196.83,94.4485 +90124,195.47,95.1242 +90125,198.21,93.2195 +90126,196.84,93.8128 +90127,195.48,94.4256 +90128,194.11,95.058 +90129,196.87,93.2817 +90130,195.5,93.8326 +90131,194.12,94.4025 +90132,192.74,94.9914 +90133,195.53,93.3442 +90134,194.15,93.8525 +90135,192.76,94.3792 +90136,191.38,94.9243 +90137,194.19,93.4071 +90138,192.8,93.8725 +90139,191.41,94.3557 +90140,190.02,94.8568 +90141,192.85,93.4703 +90142,191.45,93.8925 +90143,190.05,94.332 +90144,188.65,94.7889 +90145,191.5,93.5338 +90146,190.1,93.9126 +90147,188.7,94.3082 +90148,187.29,94.7207 +90149,190.16,93.5976 +90150,188.75,93.9327 +90151,187.34,94.2842 +90152,185.93,94.6522 +90153,188.81,93.6616 +90154,187.4,93.9528 +90155,185.99,94.26 +90156,184.57,94.5834 +90157,187.47,93.7259 +90158,186.05,93.9729 +90159,184.64,94.2357 +90160,183.22,94.5143 +90161,186.12,93.7903 +90162,184.7,93.9931 +90163,183.28,94.2113 +90164,181.86,94.4451 +90165,184.77,93.8549 +90166,183.35,94.0133 +90167,181.93,94.1868 +90168,180.51,94.3756 +90169,183.42,93.9195 +90170,182,94.0334 +90171,180.58,94.1622 +90172,179.15,94.306 +90173,182.07,93.9843 +90174,180.65,94.0535 +90175,179.22,94.1375 +90176,177.8,94.2364 +90177,180.72,94.0491 +90178,179.3,94.0736 +90179,177.87,94.1128 +90180,176.45,94.1666 +90181,179.36,94.1139 +90182,177.94,94.0936 +90183,176.52,94.0879 +90184,175.1,94.0968 +90185,178.01,94.1786 +90186,176.59,94.1136 +90187,175.17,94.063 +90188,173.75,94.027 +90189,176.65,94.2434 +90190,175.24,94.1335 +90191,173.82,94.0381 +90192,172.4,93.9573 +90193,175.3,94.308 +90194,173.88,94.1533 +90195,172.47,94.0131 +90196,171.05,93.8876 +90197,173.94,94.3725 +90198,172.53,94.1731 +90199,171.12,93.9882 +90200,169.71,93.818 +90201,172.58,94.4368 +90202,171.18,94.1927 +90203,169.77,93.9632 +90204,168.36,93.7485 +90205,171.22,94.5009 +90206,169.82,94.2122 +90207,168.42,93.9382 +90208,167.02,93.6792 +90209,169.86,94.5648 +90210,168.47,94.2315 +90211,167.07,93.9132 +90212,165.68,93.6101 +90213,168.49,94.6285 +90214,167.11,94.2508 +90215,165.72,93.8883 +90216,164.34,93.5412 +90217,167.13,94.6918 +90218,165.75,94.2699 +90219,164.38,93.8634 +90220,163,93.4726 +90221,165.77,94.7548 +90222,164.4,94.2888 +90223,163.03,93.8385 +90224,161.66,93.4043 +90225,164.4,94.8175 +90226,163.04,94.3075 +90227,161.68,93.8137 +90228,160.32,93.3363 +90229,163.03,94.8797 +90230,161.68,94.3261 +90231,160.33,93.789 +90232,158.99,93.2687 +90233,161.66,94.9416 +90234,160.33,94.3445 +90235,158.99,93.7644 +90236,157.65,93.2015 +90237,160.29,95.0029 +90238,158.97,94.3626 +90239,157.64,93.7398 +90240,156.32,93.1347 +90241,158.92,95.0638 +90242,157.61,94.3806 +90243,156.3,93.7154 +90244,154.98,93.0684 +90245,157.55,95.1241 +90246,156.25,94.3983 +90247,154.95,93.691 +90248,153.65,93.0025 +90249,156.18,95.1839 +90250,154.89,94.4158 +90251,153.61,93.6668 +90252,152.32,92.9372 +90253,154.8,95.2431 +90254,153.53,94.433 +90255,152.26,93.6427 +90256,150.99,92.8724 +90257,153.43,95.3016 +90258,152.17,94.45 +90259,150.92,93.6188 +90260,149.66,92.8081 +90261,152.05,95.3595 +90262,150.81,94.4667 +90263,149.57,93.595 +90264,148.34,92.7445 +90265,150.68,95.4167 +90266,149.45,94.4831 +90267,148.23,93.5714 +90268,147.01,92.6816 +90269,149.3,95.4732 +90270,148.09,94.4992 +90271,146.89,93.548 +90272,145.68,92.6193 +90273,147.92,95.5289 +90274,146.73,94.515 +90275,145.55,93.5247 +90276,144.36,92.5576 +90277,146.54,95.5838 +90278,145.37,94.5306 +90279,144.2,93.5017 +90280,143.03,92.4967 +90281,145.16,95.6379 +90282,144.01,94.5458 +90283,142.86,93.4788 +90284,141.71,92.4366 +90285,143.77,95.6912 +90286,142.65,94.5606 +90287,141.52,93.4562 +90288,140.39,92.3772 +90289,142.39,95.7435 +90290,141.29,94.5752 +90291,140.18,93.4338 +90292,139.07,92.3187 +90293,141.01,95.795 +90294,139.92,94.5893 +90295,138.84,93.4116 +90296,137.75,92.2609 +90297,139.62,95.8455 +90298,138.56,94.6031 +90299,137.5,93.3896 +90300,136.43,92.2041 +90301,138.24,95.8951 +90302,137.2,94.6166 +90303,136.16,93.368 +90304,135.11,92.1481 +90305,136.85,95.9437 +90306,135.83,94.6297 +90307,134.82,93.3465 +90308,133.8,92.093 +90309,135.46,95.9912 +90310,134.47,94.6424 +90311,133.48,93.3254 +90312,132.48,92.0388 +90313,134.07,96.0377 +90314,133.11,94.6547 +90315,132.14,93.3045 +90316,131.16,91.9856 +90317,132.68,96.0832 +90318,131.74,94.6665 +90319,130.8,93.2839 +90320,129.85,91.9334 +90321,131.29,96.1275 +90322,130.38,94.678 +90323,129.46,93.2636 +90324,128.54,91.8822 +90325,129.9,96.1707 +90326,129.01,94.6891 +90327,128.12,93.2435 +90328,127.22,91.832 +90329,128.51,96.2127 +90330,127.65,94.6997 +90331,126.78,93.2238 +90332,125.91,91.7828 +90333,127.12,96.2535 +90334,126.28,94.7099 +90335,125.44,93.2045 +90336,124.6,91.7347 +90337,125.73,96.2932 +90338,124.92,94.7197 +90339,124.1,93.1854 +90340,123.29,91.6877 +90341,124.33,96.3316 +90342,123.55,94.729 +90343,122.77,93.1666 +90344,121.98,91.6418 +90345,122.94,96.3688 +90346,122.19,94.7378 +90347,121.43,93.1482 +90348,120.67,91.597 +90349,121.54,96.4046 +90350,120.82,94.7462 +90351,120.09,93.1302 +90352,119.36,91.5534 +90353,120.15,96.4392 +90354,119.45,94.7541 +90355,118.76,93.1125 +90356,118.05,91.5109 +90357,118.75,96.4725 +90358,118.09,94.7615 +90359,117.42,93.0951 +90360,116.74,91.4696 +90361,117.35,96.5044 +90362,116.72,94.7684 +90363,116.08,93.0781 +90364,115.44,91.4295 +90365,115.96,96.535 +90366,115.35,94.7749 +90367,114.75,93.0615 +90368,114.13,91.3906 +90369,114.56,96.5641 +90370,113.99,94.7808 +90371,113.41,93.0452 +90372,112.82,91.353 +90373,113.16,96.5919 +90374,112.62,94.7863 +90375,112.07,93.0294 +90376,111.52,91.3166 +90377,111.76,96.6183 +90378,111.25,94.7912 +90379,110.74,93.0139 +90380,110.21,91.2814 +90381,110.36,96.6432 +90382,109.89,94.7957 +90383,109.4,92.9988 +90384,108.91,91.2475 +90385,108.96,96.6667 +90386,108.52,94.7996 +90387,108.07,92.9841 +90388,107.61,91.2149 +90389,107.56,96.6887 +90390,107.15,94.803 +90391,106.73,92.9698 +90392,106.3,91.1836 +90393,106.16,96.7092 +90394,105.78,94.8058 +90395,105.39,92.9559 +90396,105,91.1536 +90397,104.76,96.7282 +90398,104.41,94.8082 +90399,104.06,92.9423 +90400,103.7,91.125 +90401,103.36,96.7457 +90402,103.05,94.8099 +90403,102.72,92.9293 +90404,102.39,91.0977 +90405,101.96,96.7617 +90406,101.68,94.8112 +90407,101.39,92.9166 +90408,101.09,91.0717 +90409,100.56,96.7762 +90410,100.31,94.8119 +90411,100.05,92.9043 +90412,99.79,91.047 +90413,99.154,96.7891 +90414,98.943,94.8121 +90415,98.72,92.8925 +90416,98.488,91.0237 +90417,97.752,96.8004 +90418,97.574,94.8117 +90419,97.386,92.8811 +90420,97.186,91.0018 +90421,96.35,96.8102 +90422,96.206,94.8107 +90423,96.051,92.8701 +90424,95.885,90.9813 +90425,94.947,96.8184 +90426,94.838,94.8092 +90427,94.716,92.8595 +90428,94.584,90.96214 +90429,93.545,96.825 +90430,93.47,94.8072 +90431,93.382,92.8494 +90432,93.283,90.94437 +90433,92.142,96.83 +90434,92.101,94.8046 +90435,92.048,92.8397 +90436,91.982,90.92799 +90437,90.74,96.8335 +90438,90.733,94.8014 +90439,90.713,92.8304 +90440,90.681,90.91301 +90441,89.337,96.8353 +90442,89.365,94.7977 +90443,89.379,92.8215 +90444,89.381,90.89943 +90445,87.934,96.8355 +90446,87.997,94.7934 +90447,88.044,92.8131 +90448,88.08,90.88725 +90449,86.532,96.8341 +90450,86.628,94.7885 +90451,86.71,92.8052 +90452,86.779,90.87647 +90453,85.129,96.8311 +90454,85.26,94.7831 +90455,85.376,92.7977 +90456,85.479,90.8671 +90457,83.727,96.8265 +90458,83.892,94.7771 +90459,84.042,92.7906 +90460,84.178,90.85914 +90461,82.324,96.8202 +90462,82.524,94.7705 +90463,82.707,92.7839 +90464,82.877,90.85259 +90465,80.922,96.8124 +90466,81.156,94.7634 +90467,81.373,92.7777 +90468,81.576,90.84744 +90469,79.52,96.8029 +90470,79.788,94.7557 +90471,80.038,92.7719 +90472,80.275,90.8437 +90473,78.118,96.7918 +90474,78.42,94.7474 +90475,78.704,92.7666 +90476,78.974,90.84136 +90477,76.717,96.7791 +90478,77.052,94.7386 +90479,77.37,92.7617 +90480,77.673,90.84042 +90481,75.315,96.7648 +90482,75.684,94.7292 +90483,76.035,92.7572 +90484,76.371,90.84088 +90485,73.914,96.7489 +90486,74.316,94.7192 +90487,74.7,92.7532 +90488,75.069,90.84273 +90489,72.514,96.7313 +90490,72.949,94.7087 +90491,73.366,92.7496 +90492,73.767,90.84597 +90493,71.113,96.7122 +90494,71.581,94.6977 +90495,72.031,92.7464 +90496,72.465,90.8506 +90497,69.713,96.6915 +90498,70.214,94.686 +90499,70.696,92.7437 +90500,71.162,90.8566 +90501,68.314,96.6692 +90502,68.847,94.6739 +90503,69.361,92.7414 +90504,69.859,90.86397 +90505,66.915,96.6454 +90506,67.48,94.6611 +90507,68.026,92.7395 +90508,68.556,90.87271 +90509,65.516,96.62 +90510,66.113,94.6479 +90511,66.691,92.738 +90512,67.252,90.8828 +90513,64.118,96.593 +90514,64.746,94.634 +90515,65.355,92.737 +90516,65.948,90.89423 +90517,62.72,96.5645 +90518,63.38,94.6197 +90519,64.02,92.7363 +90520,64.643,90.907 +90521,61.323,96.5345 +90522,62.014,94.6048 +90523,62.684,92.7361 +90524,63.338,90.9211 +90525,59.926,96.5029 +90526,60.648,94.5894 +90527,61.348,92.7363 +90528,62.033,90.93651 +90529,58.53,96.4699 +90530,59.282,94.5734 +90531,60.013,92.7369 +90532,60.726,90.95323 +90533,57.135,96.4354 +90534,57.916,94.5569 +90535,58.676,92.7379 +90536,59.42,90.97124 +90537,55.74,96.3993 +90538,56.551,94.5399 +90539,57.34,92.7393 +90540,58.113,90.99053 +90541,54.346,96.3619 +90542,55.185,94.5224 +90543,56.004,92.741 +90544,56.805,91.0111 +90545,52.953,96.323 +90546,53.82,94.5044 +90547,54.667,92.7432 +90548,55.496,91.0329 +90549,51.56,96.2827 +90550,52.456,94.4858 +90551,53.33,92.7457 +90552,54.187,91.0559 +90553,50.169,96.2409 +90554,51.091,94.4668 +90555,51.993,92.7486 +90556,52.878,91.0802 +90557,48.777,96.1978 +90558,49.727,94.4473 +90559,50.656,92.7519 +90560,51.567,91.1056 +90561,47.387,96.1533 +90562,48.363,94.4273 +90563,49.318,92.7556 +90564,50.256,91.1323 +90565,45.998,96.1075 +90566,46.999,94.4068 +90567,47.98,92.7596 +90568,48.944,91.1601 +90569,44.609,96.0603 +90570,45.636,94.3859 +90571,46.642,92.7639 +90572,47.632,91.1891 +90573,43.221,96.0119 +90574,44.273,94.3644 +90575,45.304,92.7686 +90576,46.318,91.2192 +90577,41.834,95.9622 +90578,42.91,94.3425 +90579,43.966,92.7737 +90580,45.004,91.2505 +90581,40.448,95.9112 +90582,41.547,94.3202 +90583,42.627,92.7791 +90584,43.689,91.2828 +90585,39.063,95.8589 +90586,40.185,94.2974 +90587,41.288,92.7848 +90588,42.373,91.3162 +90589,37.678,95.8055 +90590,38.823,94.2742 +90591,39.948,92.7908 +90592,41.057,91.3507 +90593,36.295,95.7509 +90594,37.462,94.2506 +90595,38.609,92.7971 +90596,39.739,91.3862 +90597,34.913,95.6951 +90598,36.1,94.2265 +90599,37.269,92.8038 +90600,38.421,91.4227 +90601,33.531,95.6382 +90602,34.74,94.202 +90603,35.929,92.8107 +90604,37.102,91.4602 +90605,32.151,95.5802 +90606,33.379,94.1772 +90607,34.588,92.8179 +90608,35.781,91.4987 +90609,30.771,95.5211 +90610,32.019,94.1519 +90611,33.248,92.8254 +90612,34.46,91.5381 +90613,29.393,95.4609 +90614,30.659,94.1262 +90615,31.907,92.8332 +90616,33.138,91.5785 +90617,28.016,95.3998 +90618,29.299,94.1002 +90619,30.565,92.8412 +90620,31.815,91.6197 +90621,26.639,95.3376 +90622,27.94,94.0738 +90623,29.223,92.8495 +90624,30.491,91.6618 +90625,25.264,95.2745 +90626,26.581,94.047 +90627,27.881,92.8581 +90628,29.166,91.7048 +90629,23.89,95.2104 +90630,25.223,94.0199 +90631,26.539,92.8668 +90632,27.84,91.7486 +90633,22.517,95.1454 +90634,23.865,93.9924 +90635,25.196,92.8758 +90636,26.512,91.7932 +90637,21.145,95.0796 +90638,22.507,93.9646 +90639,23.853,92.8851 +90640,25.184,91.8386 +90641,19.775,95.0129 +90642,21.15,93.9365 +90643,22.51,92.8945 +90644,23.855,91.8847 +90645,18.405,94.9453 +90646,19.793,93.9081 +90647,21.166,92.9041 +90648,22.525,91.9315 +90649,17.036,94.8771 +90650,18.437,93.8793 +90651,19.822,92.914 +90652,21.193,91.979 +90653,15.669,94.808 +90654,17.081,93.8503 +90655,18.478,92.924 +90656,19.861,92.0272 +90657,14.303,94.7382 +90658,15.725,93.821 +90659,17.133,92.9342 +90660,18.527,92.0761 +90661,12.938,94.6678 +90662,14.37,93.7915 +90663,15.788,92.9445 +90664,17.192,92.1255 +90665,11.574,94.5967 +90666,13.015,93.7616 +90667,14.443,92.955 +90668,15.857,92.1755 +90669,10.211,94.525 +90670,11.661,93.7315 +90671,13.097,92.9657 +90672,14.52,92.226 +90673,8.8498,94.4526 +90674,10.307,93.7012 +90675,11.75,92.9765 +90676,13.181,92.2771 +90677,7.4896,94.3798 +90678,8.953,93.6707 +90679,10.404,92.9874 +90680,11.842,92.3287 +90681,6.1305,94.3064 +90682,7.5998,93.6399 +90683,9.0569,92.9984 +90684,10.502,92.3807 +90685,4.7727,94.2325 +90686,6.247,93.6089 +90687,7.7096,93.0095 +90688,9.1601,92.4331 +90689,3.416,94.1581 +90690,4.8947,93.5778 +90691,6.3619,93.0207 +90692,7.8173,92.486 +90693,2.0606,94.0834 +90694,3.5427,93.5464 +90695,5.0139,93.032 +90696,6.4733,92.5392 +90697,0.70638,94.0082 +90698,2.1912,93.5149 +90699,3.6654,93.0433 +90700,5.1282,92.5928 +90701,359.35,93.9328 +90702,0.84013,93.4832 +90703,2.3166,93.0548 +90704,3.7819,92.6466 +90705,358,93.8569 +90706,359.49,93.4514 +90707,0.96738,93.0662 +90708,2.4344,92.7007 +90709,356.65,93.7808 +90710,358.14,93.4194 +90711,359.62,93.0777 +90712,1.0857,92.7551 +90713,355.3,93.7045 +90714,356.79,93.3873 +90715,358.27,93.0893 +90716,359.74,92.8097 +90717,353.95,93.6279 +90718,355.44,93.3551 +90719,356.92,93.1008 +90720,358.38,92.8645 +90721,352.61,93.5512 +90722,354.09,93.3227 +90723,355.57,93.1123 +90724,357.03,92.9194 +90725,351.26,93.4743 +90726,352.74,93.2903 +90727,354.22,93.1239 +90728,355.68,92.9744 +90729,349.92,93.3973 +90730,351.39,93.2578 +90731,352.86,93.1354 +90732,354.32,93.0295 +90733,348.57,93.3202 +90734,350.05,93.2253 +90735,351.51,93.1469 +90736,352.97,93.0846 +90737,347.23,93.2431 +90738,348.7,93.1926 +90739,350.16,93.1584 +90740,351.61,93.1398 +90741,345.89,93.166 +90742,347.35,93.1599 +90743,348.81,93.1698 +90744,350.25,93.195 +90745,344.55,93.0889 +90746,346.01,93.1272 +90747,347.45,93.1811 +90748,348.89,93.2501 +90749,343.21,93.0119 +90750,344.66,93.0945 +90751,346.1,93.1924 +90752,347.53,93.3051 +90753,341.88,92.9349 +90754,343.31,93.0617 +90755,344.75,93.2036 +90756,346.17,93.36 +90757,340.54,92.8581 +90758,341.97,93.0289 +90759,343.39,93.2147 +90760,344.81,93.4147 +90761,339.2,92.7814 +90762,340.62,92.9962 +90763,342.04,93.2257 +90764,343.44,93.4693 +90765,337.87,92.705 +90766,339.28,92.9635 +90767,340.68,93.2366 +90768,342.08,93.5237 +90769,336.54,92.6287 +90770,337.94,92.9307 +90771,339.33,93.2473 +90772,340.71,93.5778 +90773,335.21,92.5527 +90774,336.59,92.8981 +90775,337.97,93.2579 +90776,339.35,93.6316 +90777,333.88,92.4771 +90778,335.25,92.8655 +90779,336.62,93.2684 +90780,337.98,93.6851 +90781,332.55,92.4017 +90782,333.91,92.8329 +90783,335.26,93.2787 +90784,336.61,93.7383 +90785,331.22,92.3267 +90786,332.57,92.8004 +90787,333.9,93.2888 +90788,335.24,93.7911 +90789,329.89,92.2521 +90790,331.22,92.7681 +90791,332.55,93.2988 +90792,333.86,93.8435 +90793,328.57,92.1779 +90794,329.88,92.7358 +90795,331.19,93.3086 +90796,332.49,93.8955 +90797,327.24,92.1041 +90798,328.54,92.7036 +90799,329.83,93.3181 +90800,331.12,93.947 +90801,325.92,92.0309 +90802,327.2,92.6715 +90803,328.47,93.3275 +90804,329.74,93.998 +90805,324.6,91.9581 +90806,325.86,92.6396 +90807,327.12,93.3366 +90808,328.37,94.0484 +90809,323.28,91.8859 +90810,324.52,92.6078 +90811,325.76,93.3455 +90812,326.99,94.0983 +90813,321.96,91.8143 +90814,323.18,92.5761 +90815,324.4,93.3541 +90816,325.61,94.1476 +90817,320.64,91.7433 +90818,321.84,92.5446 +90819,323.04,93.3625 +90820,324.23,94.1962 +90821,319.32,91.6729 +90822,320.5,92.5133 +90823,321.68,93.3706 +90824,322.85,94.2442 +90825,318,91.6031 +90826,319.16,92.4821 +90827,320.32,93.3785 +90828,321.47,94.2915 +90829,316.68,91.5341 +90830,317.83,92.4512 +90831,318.96,93.386 +90832,320.09,94.3381 +90833,315.37,91.4658 +90834,316.49,92.4204 +90835,317.6,93.3933 +90836,318.7,94.3839 +90837,314.05,91.3982 +90838,315.15,92.3899 +90839,316.24,93.4003 +90840,317.32,94.429 +90841,312.74,91.3314 +90842,313.81,92.3595 +90843,314.88,93.4069 +90844,315.93,94.4732 +90845,311.43,91.2654 +90846,312.48,92.3294 +90847,313.52,93.4133 +90848,314.55,94.5166 +90849,310.12,91.2003 +90850,311.14,92.2996 +90851,312.15,93.4193 +90852,313.16,94.5591 +90853,308.8,91.1359 +90854,309.8,92.2699 +90855,310.79,93.4249 +90856,311.77,94.6007 +90857,307.49,91.0725 +90858,308.47,92.2406 +90859,309.43,93.4302 +90860,310.38,94.6415 +90861,306.19,91.0099 +90862,307.13,92.2114 +90863,308.07,93.4352 +90864,308.99,94.6812 +90865,304.88,90.94833 +90866,305.8,92.1826 +90867,306.71,93.4398 +90868,307.6,94.72 +90869,303.57,90.88767 +90870,304.46,92.154 +90871,305.34,93.444 +90872,306.21,94.7578 +90873,302.26,90.82798 +90874,303.13,92.1258 +90875,303.98,93.4478 +90876,304.82,94.7945 +90877,300.96,90.76928 +90878,301.79,92.0978 +90879,302.62,93.4513 +90880,303.43,94.8302 +90881,299.65,90.7116 +90882,300.46,92.0701 +90883,301.25,93.4543 +90884,302.04,94.8648 +90885,298.35,90.65496 +90886,299.12,92.0427 +90887,299.89,93.4569 +90888,300.64,94.8983 +90889,297.04,90.59939 +90890,297.79,92.0157 +90891,298.53,93.4591 +90892,299.25,94.9307 +90893,295.74,90.54489 +90894,296.46,91.9889 +90895,297.16,93.4609 +90896,297.85,94.9619 +90897,294.44,90.4915 +90898,295.12,91.9625 +90899,295.8,93.4623 +90900,296.46,94.9919 +90901,293.13,90.43922 +90902,293.79,91.9365 +90903,294.43,93.4632 +90904,295.06,95.0207 +90905,291.83,90.38808 +90906,292.46,91.9108 +90907,293.07,93.4637 +90908,293.66,95.0484 +90909,290.53,90.3381 +90910,291.12,91.8854 +90911,291.7,93.4637 +90912,292.27,95.0747 +90913,289.23,90.28929 +90914,289.79,91.8604 +90915,290.34,93.4633 +90916,290.87,95.0998 +90917,287.93,90.24168 +90918,288.46,91.8358 +90919,288.97,93.4624 +90920,289.47,95.1237 +90921,286.63,90.19527 +90922,287.13,91.8115 +90923,287.61,93.4611 +90924,288.07,95.1462 +90925,285.33,90.15008 +90926,285.8,91.7876 +90927,286.24,93.4592 +90928,286.67,95.1674 +90929,284.03,90.10613 +90930,284.46,91.7641 +90931,284.88,93.4569 +90932,285.27,95.1872 +90933,282.74,90.063428 +90934,283.13,91.741 +90935,283.51,93.4541 +90936,283.87,95.2057 +90937,281.44,90.021993 +90938,281.8,91.7182 +90939,282.15,93.4508 +90940,282.47,95.2228 +90941,280.14,89.981835 +90942,280.47,91.6959 +90943,280.78,93.447 +90944,281.07,95.2385 +90945,278.84,89.942967 +90946,279.14,91.6739 +90947,279.42,93.4428 +90948,279.67,95.2529 +90949,277.55,89.905401 +90950,277.81,91.6524 +90951,278.05,93.438 +90952,278.27,95.2657 +90953,276.25,89.86915 +90954,276.48,91.6313 +90955,276.68,93.4327 +90956,276.87,95.2772 +90957,274.95,89.83421 +90958,275.15,91.6105 +90959,275.32,93.4269 +90960,275.47,95.2872 +90961,273.66,89.80061 +90962,273.82,91.5902 +90963,273.95,93.4206 +90964,274.06,95.2958 +90965,272.36,89.76835 +90966,272.49,91.5703 +90967,272.59,93.4137 +90968,272.66,95.3028 +90969,271.07,89.73744 +90970,271.15,91.5509 +90971,271.22,93.4064 +90972,271.26,95.3084 +90973,269.77,89.70789 +90974,269.82,91.5318 +90975,269.85,93.3985 +90976,269.86,95.3125 +90977,268.48,89.67969 +90978,268.49,91.5132 +90979,268.49,93.39 +90980,268.46,95.3151 +90981,267.18,89.65287 +90982,267.16,91.495 +90983,267.12,93.3811 +90984,267.05,95.3161 +90985,265.89,89.62742 +90986,265.83,91.4773 +90987,265.76,93.3716 +90988,265.65,95.3157 +90989,264.59,89.60335 +90990,264.5,91.46 +90991,264.39,93.3616 +90992,264.25,95.3137 +90993,263.29,89.58066 +90994,263.17,91.4431 +90995,263.03,93.3511 +90996,262.85,95.3102 +90997,262,89.55936 +90998,261.84,91.4266 +90999,261.66,93.34 +91000,261.45,95.3051 +91001,260.7,89.53945 +91002,260.51,91.4106 +91003,260.29,93.3283 +91004,260.05,95.2985 +91005,259.41,89.52093 +91006,259.18,91.395 +91007,258.93,93.3162 +91008,258.64,95.2903 +91009,258.11,89.5038 +91010,257.85,91.3799 +91011,257.56,93.3035 +91012,257.24,95.2806 +91013,256.82,89.48806 +91014,256.52,91.3652 +91015,256.2,93.2902 +91016,255.84,95.2694 +91017,255.52,89.47371 +91018,255.19,91.3509 +91019,254.83,93.2764 +91020,254.44,95.2565 +91021,254.23,89.46075 +91022,253.86,91.3371 +91023,253.47,93.2621 +91024,253.04,95.2421 +91025,252.93,89.44918 +91026,252.53,91.3237 +91027,252.1,93.2472 +91028,251.64,95.2262 +91029,251.63,89.439 +91030,251.2,91.3108 +91031,250.74,93.2318 +91032,250.24,95.2087 +91033,250.34,89.4302 +91034,249.87,91.2983 +91035,249.37,93.2158 +91036,248.84,95.1896 +91037,249.04,89.42279 +91038,248.54,91.2862 +91039,248.01,93.1994 +91040,247.44,95.169 +91041,247.74,89.41674 +91042,247.21,91.2746 +91043,246.64,93.1823 +91044,246.04,95.1469 +91045,246.44,89.41207 +91046,245.88,91.2634 +91047,245.28,93.1648 +91048,244.65,95.1232 +91049,245.15,89.40876 +91050,244.55,91.2526 +91051,243.91,93.1467 +91052,243.25,95.098 +91053,243.85,89.40681 +91054,243.21,91.2423 +91055,242.55,93.1281 +91056,241.85,95.0712 +91057,242.55,89.40621 +91058,241.88,91.2324 +91059,241.19,93.1089 +91060,240.45,95.0429 +91061,241.25,89.40696 +91062,240.55,91.2229 +91063,239.82,93.0892 +91064,239.06,95.0131 +91065,239.95,89.40903 +91066,239.22,91.2138 +91067,238.46,93.069 +91068,237.66,94.9818 +91069,238.65,89.41244 +91070,237.89,91.2052 +91071,237.1,93.0483 +91072,236.27,94.9489 +91073,237.35,89.41715 +91074,236.56,91.1969 +91075,235.73,93.0271 +91076,234.87,94.9146 +91077,236.05,89.42318 +91078,235.23,91.1891 +91079,234.37,93.0053 +91080,233.48,94.8789 +91081,234.74,89.43049 +91082,233.89,91.1817 +91083,233.01,92.9831 +91084,232.09,94.8416 +91085,233.44,89.43909 +91086,232.56,91.1747 +91087,231.65,92.9603 +91088,230.7,94.8029 +91089,232.14,89.44896 +91090,231.23,91.1681 +91091,230.29,92.9371 +91092,229.31,94.7627 +91093,230.83,89.46008 +91094,229.9,91.1619 +91095,228.92,92.9133 +91096,227.91,94.7212 +91097,229.53,89.47245 +91098,228.56,91.1561 +91099,227.56,92.8891 +91100,226.53,94.6782 +91101,228.22,89.48605 +91102,227.23,91.1506 +91103,226.2,92.8643 +91104,225.14,94.6338 +91105,226.92,89.50086 +91106,225.9,91.1456 +91107,224.84,92.8391 +91108,223.75,94.588 +91109,225.61,89.51687 +91110,224.56,91.1409 +91111,223.48,92.8134 +91112,222.36,94.5409 +91113,224.3,89.53406 +91114,223.23,91.1366 +91115,222.12,92.7873 +91116,220.98,94.4925 +91117,223,89.55241 +91118,221.89,91.1327 +91119,220.76,92.7607 +91120,219.59,94.4427 +91121,221.69,89.57192 +91122,220.56,91.1291 +91123,219.4,92.7336 +91124,218.21,94.3916 +91125,220.38,89.59255 +91126,219.23,91.1259 +91127,218.04,92.7061 +91128,216.82,94.3392 +91129,219.07,89.6143 +91130,217.89,91.123 +91131,216.68,92.6781 +91132,215.44,94.2855 +91133,217.75,89.63714 +91134,216.56,91.1205 +91135,215.33,92.6497 +91136,214.06,94.2306 +91137,216.44,89.66105 +91138,215.22,91.1183 +91139,213.97,92.6209 +91140,212.68,94.1745 +91141,215.13,89.68602 +91142,213.88,91.1164 +91143,212.61,92.5917 +91144,211.3,94.1172 +91145,213.81,89.71202 +91146,212.55,91.1149 +91147,211.25,92.562 +91148,209.92,94.0587 +91149,212.5,89.73903 +91150,211.21,91.1136 +91151,209.9,92.5319 +91152,208.54,93.9991 +91153,211.18,89.76704 +91154,209.87,91.1127 +91155,208.54,92.5015 +91156,207.17,93.9383 +91157,209.86,89.79601 +91158,208.54,91.1121 +91159,207.18,92.4706 +91160,205.79,93.8764 +91161,208.54,89.82593 +91162,207.2,91.1117 +91163,205.83,92.4394 +91164,204.42,93.8135 +91165,207.22,89.85678 +91166,205.86,91.1117 +91167,204.47,92.4078 +91168,203.05,93.7495 +91169,205.9,89.88852 +91170,204.53,91.1119 +91171,203.12,92.3758 +91172,201.67,93.6845 +91173,204.58,89.921141 +91174,203.19,91.1124 +91175,201.76,92.3434 +91176,200.3,93.6184 +91177,203.26,89.954614 +91178,201.85,91.1131 +91179,200.41,92.3108 +91180,198.94,93.5515 +91181,201.94,89.988914 +91182,200.51,91.1141 +91183,199.05,92.2777 +91184,197.57,93.4835 +91185,200.61,90.024016 +91186,199.17,91.1154 +91187,197.7,92.2444 +91188,196.2,93.4147 +91189,199.29,90.059895 +91190,197.83,91.1169 +91191,196.35,92.2107 +91192,194.83,93.345 +91193,197.96,90.096525 +91194,196.49,91.1186 +91195,195,92.1767 +91196,193.47,93.2744 +91197,196.63,90.13388 +91198,195.15,91.1205 +91199,193.64,92.1424 +91200,192.11,93.203 +91201,195.3,90.17193 +91202,193.81,91.1226 +91203,192.29,92.1079 +91204,190.75,93.1308 +91205,193.97,90.21066 +91206,192.47,91.1249 +91207,190.94,92.073 +91208,189.38,93.0578 +91209,192.64,90.25002 +91210,191.13,91.1274 +91211,189.59,92.0379 +91212,188.03,92.9841 +91213,191.31,90.29001 +91214,189.79,91.1301 +91215,188.24,92.0025 +91216,186.67,92.9097 +91217,189.97,90.33058 +91218,188.44,91.133 +91219,186.89,91.9668 +91220,185.31,92.8347 +91221,188.64,90.37171 +91222,187.1,91.136 +91223,185.54,91.9309 +91224,183.95,92.7589 +91225,187.3,90.41337 +91226,185.76,91.1392 +91227,184.19,91.8948 +91228,182.6,92.6826 +91229,185.96,90.45554 +91230,184.41,91.1425 +91231,182.84,91.8585 +91232,181.25,92.6058 +91233,184.62,90.49818 +91234,183.07,91.1459 +91235,181.5,91.8219 +91236,179.9,92.5283 +91237,183.28,90.54126 +91238,181.73,91.1495 +91239,180.15,91.7852 +91240,178.55,92.4504 +91241,181.94,90.58476 +91242,180.38,91.1531 +91243,178.8,91.7483 +91244,177.2,92.372 +91245,180.6,90.62864 +91246,179.04,91.1569 +91247,177.45,91.7111 +91248,175.85,92.2932 +91249,179.26,90.67288 +91250,177.69,91.1608 +91251,176.11,91.6739 +91252,174.5,92.2139 +91253,177.91,90.71744 +91254,176.35,91.1647 +91255,174.76,91.6364 +91256,173.16,92.1343 +91257,176.56,90.76229 +91258,175,91.1687 +91259,173.42,91.5988 +91260,171.81,92.0543 +91261,175.22,90.80741 +91262,173.65,91.1728 +91263,172.07,91.5611 +91264,170.47,91.974 +91265,173.87,90.85276 +91266,172.31,91.1769 +91267,170.73,91.5233 +91268,169.13,91.8935 +91269,172.52,90.89832 +91270,170.96,91.181 +91271,169.38,91.4853 +91272,167.79,91.8127 +91273,171.17,90.94404 +91274,169.61,91.1852 +91275,168.04,91.4473 +91276,166.45,91.7317 +91277,169.81,90.98991 +91278,168.27,91.1894 +91279,166.7,91.4091 +91280,165.11,91.6505 +91281,168.46,91.0359 +91282,166.92,91.1936 +91283,165.35,91.3709 +91284,163.78,91.5692 +91285,167.11,91.0819 +91286,165.57,91.1978 +91287,164.01,91.3326 +91288,162.44,91.4878 +91289,165.75,91.128 +91290,164.22,91.2019 +91291,162.67,91.2943 +91292,161.11,91.4063 +91293,164.39,91.1741 +91294,162.87,91.2061 +91295,161.33,91.2559 +91296,159.77,91.3248 +91297,163.03,91.2202 +91298,161.52,91.2102 +91299,159.99,91.2175 +91300,158.44,91.2433 +91301,161.67,91.2663 +91302,160.17,91.2142 +91303,158.65,91.179 +91304,157.11,91.1618 +91305,160.31,91.3123 +91306,158.82,91.2182 +91307,157.31,91.1406 +91308,155.78,91.0803 +91309,158.95,91.3581 +91310,157.47,91.2222 +91311,155.97,91.1021 +91312,154.46,90.99902 +91313,157.59,91.4038 +91314,156.12,91.226 +91315,154.63,91.0636 +91316,153.13,90.91782 +91317,156.22,91.4494 +91318,154.77,91.2298 +91319,153.29,91.0252 +91320,151.81,90.83678 +91321,154.86,91.4947 +91322,153.41,91.2334 +91323,151.95,90.98681 +91324,150.48,90.75594 +91325,153.49,91.5398 +91326,152.06,91.237 +91327,150.62,90.94846 +91328,149.16,90.67533 +91329,152.12,91.5846 +91330,150.71,91.2404 +91331,149.28,90.91016 +91332,147.84,90.59499 +91333,150.75,91.6292 +91334,149.35,91.2437 +91335,147.94,90.87192 +91336,146.52,90.51493 +91337,149.38,91.6734 +91338,148,91.2469 +91339,146.61,90.83376 +91340,145.2,90.43521 +91341,148.01,91.7172 +91342,146.65,91.2499 +91343,145.27,90.79568 +91344,143.88,90.35584 +91345,146.64,91.7607 +91346,145.29,91.2527 +91347,143.93,90.7577 +91348,142.56,90.27686 +91349,145.26,91.8037 +91350,143.94,91.2554 +91351,142.6,90.71983 +91352,141.25,90.1983 +91353,143.89,91.8463 +91354,142.58,91.2578 +91355,141.26,90.68208 +91356,139.93,90.12019 +91357,142.51,91.8884 +91358,141.23,91.2601 +91359,139.93,90.64445 +91360,138.62,90.042572 +91361,141.14,91.93 +91362,139.87,91.2622 +91363,138.6,90.60697 +91364,137.31,89.965463 +91365,139.76,91.971 +91366,138.52,91.2641 +91367,137.26,90.56963 +91368,136,89.8889 +91369,138.38,92.0115 +91370,137.16,91.2657 +91371,135.93,90.53245 +91372,134.68,89.8129 +91373,137,92.0514 +91374,135.81,91.2671 +91375,134.6,90.49543 +91376,133.38,89.73751 +91377,135.62,92.0906 +91378,134.45,91.2683 +91379,133.26,90.4586 +91380,132.07,89.66275 +91381,134.24,92.1292 +91382,133.09,91.2692 +91383,131.93,90.42195 +91384,130.76,89.58865 +91385,132.85,92.1671 +91386,131.73,91.2698 +91387,130.6,90.38551 +91388,129.45,89.51523 +91389,131.47,92.2043 +91390,130.38,91.2702 +91391,129.27,90.34927 +91392,128.15,89.44254 +91393,130.09,92.2407 +91394,129.02,91.2703 +91395,127.94,90.31324 +91396,126.84,89.37058 +91397,128.7,92.2764 +91398,127.66,91.2701 +91399,126.61,90.27744 +91400,125.54,89.29939 +91401,127.31,92.3112 +91402,126.3,91.2696 +91403,125.28,90.24188 +91404,124.24,89.229 +91405,125.93,92.3453 +91406,124.94,91.2688 +91407,123.95,90.20655 +91408,122.94,89.15943 +91409,124.54,92.3784 +91410,123.59,91.2677 +91411,122.62,90.17148 +91412,121.63,89.09071 +91413,123.15,92.4108 +91414,122.23,91.2663 +91415,121.29,90.13668 +91416,120.33,89.02285 +91417,121.76,92.4422 +91418,120.87,91.2645 +91419,119.96,90.10214 +91420,119.04,88.9559 +91421,120.37,92.4726 +91422,119.51,91.2624 +91423,118.63,90.067873 +91424,117.74,88.8899 +91425,118.98,92.5021 +91426,118.15,91.2599 +91427,117.3,90.033896 +91428,116.44,88.8248 +91429,117.59,92.5307 +91430,116.79,91.2571 +91431,115.97,90.00021227 +91432,115.14,88.7606 +91433,116.19,92.5582 +91434,115.43,91.2539 +91435,114.64,89.966829 +91436,113.85,88.6975 +91437,114.8,92.5847 +91438,114.07,91.2504 +91439,113.32,89.933755 +91440,112.55,88.6354 +91441,113.41,92.6102 +91442,112.71,91.2465 +91443,111.99,89.900997 +91444,111.25,88.5743 +91445,112.01,92.6346 +91446,111.35,91.2421 +91447,110.66,89.86856 +91448,109.96,88.5142 +91449,110.62,92.6579 +91450,109.99,91.2374 +91451,109.34,89.83646 +91452,108.67,88.4552 +91453,109.22,92.68 +91454,108.62,91.2323 +91455,108.01,89.80469 +91456,107.37,88.3973 +91457,107.82,92.7011 +91458,107.26,91.2268 +91459,106.68,89.77326 +91460,106.08,88.3406 +91461,106.43,92.7209 +91462,105.9,91.2208 +91463,105.36,89.74219 +91464,104.79,88.2849 +91465,105.03,92.7397 +91466,104.54,91.2145 +91467,104.03,89.71147 +91468,103.5,88.2304 +91469,103.63,92.7572 +91470,103.18,91.2077 +91471,102.7,89.68111 +91472,102.21,88.1771 +91473,102.23,92.7734 +91474,101.82,91.2005 +91475,101.38,89.65112 +91476,100.92,88.1249 +91477,100.84,92.7885 +91478,100.46,91.1928 +91479,100.05,89.62151 +91480,99.626,88.0739 +91481,99.437,92.8023 +91482,99.094,91.1847 +91483,98.726,89.59227 +91484,98.336,88.0242 +91485,98.038,92.8148 +91486,97.732,91.1762 +91487,97.401,89.56342 +91488,97.047,87.9756 +91489,96.638,92.8261 +91490,96.37,91.1672 +91491,96.076,89.53495 +91492,95.758,87.9283 +91493,95.238,92.836 +91494,95.008,91.1578 +91495,94.751,89.50688 +91496,94.469,87.8823 +91497,93.838,92.8446 +91498,93.646,91.1478 +91499,93.426,89.47921 +91500,93.181,87.8375 +91501,92.438,92.8519 +91502,92.284,91.1375 +91503,92.101,89.45194 +91504,91.893,87.7939 +91505,91.038,92.8579 +91506,90.922,91.1266 +91507,90.777,89.42508 +91508,90.605,87.7517 +91509,89.637,92.8625 +91510,89.56,91.1153 +91511,89.452,89.39862 +91512,89.317,87.7108 +91513,88.237,92.8657 +91514,88.197,91.1035 +91515,88.128,89.37258 +91516,88.03,87.6711 +91517,86.836,92.8676 +91518,86.835,91.0912 +91519,86.803,89.34696 +91520,86.743,87.6328 +91521,85.435,92.868 +91522,85.473,91.0784 +91523,85.479,89.32176 +91524,85.455,87.5958 +91525,84.034,92.8671 +91526,84.111,91.0651 +91527,84.155,89.29698 +91528,84.168,87.5601 +91529,82.634,92.8647 +91530,82.749,91.0514 +91531,82.83,89.27262 +91532,82.881,87.5258 +91533,81.233,92.8609 +91534,81.387,91.0371 +91535,81.506,89.24869 +91536,81.594,87.4928 +91537,79.832,92.8557 +91538,80.025,91.0224 +91539,80.182,89.2252 +91540,80.307,87.4611 +91541,78.432,92.849 +91542,78.663,91.0072 +91543,78.858,89.20213 +91544,79.021,87.4309 +91545,77.032,92.8409 +91546,77.301,90.99141 +91547,77.534,89.1795 +91548,77.734,87.4019 +91549,75.631,92.8314 +91550,75.939,90.97517 +91551,76.21,89.1573 +91552,76.446,87.3743 +91553,74.231,92.8204 +91554,74.578,90.95843 +91555,74.885,89.13555 +91556,75.159,87.3481 +91557,72.832,92.8079 +91558,73.216,90.94119 +91559,73.561,89.11422 +91560,73.872,87.3233 +91561,71.432,92.794 +91562,71.855,90.92344 +91563,72.237,89.09334 +91564,72.585,87.2998 +91565,70.033,92.7786 +91566,70.493,90.90519 +91567,70.913,89.07289 +91568,71.297,87.2777 +91569,68.634,92.7617 +91570,69.132,90.88643 +91571,69.589,89.05289 +91572,70.009,87.2569 +91573,67.235,92.7434 +91574,67.771,90.86717 +91575,68.264,89.03332 +91576,68.721,87.2375 +91577,65.837,92.7236 +91578,66.41,90.8474 +91579,66.94,89.01419 +91580,67.432,87.2195 +91581,64.44,92.7023 +91582,65.049,90.82713 +91583,65.615,88.9955 +91584,66.144,87.2028 +91585,63.042,92.6796 +91586,63.689,90.80636 +91587,64.291,88.9772 +91588,64.855,87.1875 +91589,61.646,92.6554 +91590,62.328,90.78508 +91591,62.966,88.9594 +91592,63.565,87.1736 +91593,60.249,92.6297 +91594,60.968,90.7633 +91595,61.641,88.942 +91596,62.276,87.161 +91597,58.854,92.6026 +91598,59.608,90.74103 +91599,60.316,88.9251 +91600,60.985,87.1497 +91601,57.458,92.574 +91602,58.248,90.71825 +91603,58.991,88.9086 +91604,59.695,87.1398 +91605,56.064,92.5439 +91606,56.889,90.69498 +91607,57.666,88.8925 +91608,58.404,87.1313 +91609,54.67,92.5125 +91610,55.529,90.67122 +91611,56.341,88.8768 +91612,57.112,87.124 +91613,53.277,92.4795 +91614,54.17,90.64697 +91615,55.016,88.8616 +91616,55.82,87.1181 +91617,51.884,92.4452 +91618,52.811,90.62222 +91619,53.69,88.8468 +91620,54.527,87.1135 +91621,50.492,92.4094 +91622,51.453,90.59699 +91623,52.364,88.8324 +91624,53.234,87.1101 +91625,49.101,92.3722 +91626,50.094,90.57128 +91627,51.038,88.8185 +91628,51.94,87.1081 +91629,47.711,92.3336 +91630,48.736,90.54509 +91631,49.712,88.8049 +91632,50.646,87.1074 +91633,46.321,92.2936 +91634,47.379,90.51842 +91635,48.386,88.7918 +91636,49.351,87.1079 +91637,44.933,92.2522 +91638,46.021,90.49129 +91639,47.059,88.779 +91640,48.055,87.1097 +91641,43.545,92.2094 +91642,44.664,90.46368 +91643,45.733,88.7667 +91644,46.758,87.1127 +91645,42.158,92.1653 +91646,43.307,90.43561 +91647,44.406,88.7548 +91648,45.461,87.117 +91649,40.771,92.1198 +91650,41.95,90.40708 +91651,43.078,88.7432 +91652,44.163,87.1225 +91653,39.386,92.073 +91654,40.594,90.3781 +91655,41.751,88.7321 +91656,42.864,87.1292 +91657,38.002,92.0249 +91658,39.238,90.34867 +91659,40.423,88.7213 +91660,41.565,87.1371 +91661,36.619,91.9755 +91662,37.883,90.3188 +91663,39.095,88.7109 +91664,40.264,87.1462 +91665,35.236,91.9248 +91666,36.528,90.28849 +91667,37.767,88.7009 +91668,38.963,87.1564 +91669,33.855,91.8728 +91670,35.173,90.25774 +91671,36.439,88.6913 +91672,37.661,87.1678 +91673,32.475,91.8196 +91674,33.818,90.22657 +91675,35.11,88.682 +91676,36.358,87.1803 +91677,31.096,91.7651 +91678,32.464,90.19498 +91679,33.781,88.6731 +91680,35.054,87.1939 +91681,29.718,91.7095 +91682,31.11,90.16297 +91683,32.452,88.6645 +91684,33.75,87.2086 +91685,28.341,91.6526 +91686,29.757,90.13056 +91687,31.122,88.6563 +91688,32.444,87.2244 +91689,26.965,91.5945 +91690,28.404,90.097741 +91691,29.792,88.6484 +91692,31.137,87.2412 +91693,25.59,91.5354 +91694,27.051,90.064531 +91695,28.462,88.6409 +91696,29.829,87.2591 +91697,24.216,91.475 +91698,25.699,90.030934 +91699,27.131,88.6337 +91700,28.521,87.278 +91701,22.844,91.4136 +91702,24.347,89.9969571 +91703,25.801,88.6268 +91704,27.211,87.2979 +91705,21.473,91.3511 +91706,22.996,89.962607 +91707,24.469,88.6202 +91708,25.9,87.3188 +91709,20.103,91.2875 +91710,21.645,89.927892 +91711,23.138,88.6139 +91712,24.588,87.3406 +91713,18.734,91.2228 +91714,20.295,89.89282 +91715,21.806,88.608 +91716,23.275,87.3634 +91717,17.366,91.1572 +91718,18.945,89.8574 +91719,20.474,88.6023 +91720,21.961,87.387 +91721,16,91.0905 +91722,17.595,89.82164 +91723,19.142,88.5969 +91724,20.646,87.4116 +91725,14.635,91.0229 +91726,16.246,89.78554 +91727,17.809,88.5917 +91728,19.33,87.437 +91729,13.271,90.9544 +91730,14.897,89.74912 +91731,16.475,88.5869 +91732,18.013,87.4632 +91733,11.908,90.88494 +91734,13.549,89.71239 +91735,15.142,88.5823 +91736,16.694,87.4903 +91737,10.547,90.8146 +91738,12.201,89.67534 +91739,13.808,88.5779 +91740,15.374,87.5181 +91741,9.1872,90.7434 +91742,10.853,89.638 +91743,12.474,88.5738 +91744,14.053,87.5467 +91745,7.8285,90.67137 +91746,9.5065,89.60037 +91747,11.139,88.57 +91748,12.731,87.5761 +91749,6.4712,90.59853 +91750,8.16,89.56246 +91751,9.8038,88.5663 +91752,11.408,87.6062 +91753,5.1153,90.52492 +91754,6.814,89.52428 +91755,8.4684,88.5629 +91756,10.084,87.6369 +91757,3.7607,90.45056 +91758,5.4684,89.48584 +91759,7.1326,88.5597 +91760,8.7579,87.6683 +91761,2.4074,90.37549 +91762,4.1234,89.44714 +91763,5.7963,88.5566 +91764,7.4309,87.7004 +91765,1.0555,90.29973 +91766,2.7788,89.40821 +91767,4.4597,88.5538 +91768,6.1028,87.7331 +91769,359.7,90.22332 +91770,1.4347,89.36904 +91771,3.1227,88.5512 +91772,4.7733,87.7663 +91773,358.36,90.14628 +91774,0.091042,89.32964 +91775,1.7853,88.5487 +91776,3.4426,87.8001 +91777,357.01,90.068641 +91778,358.75,89.29004 +91779,0.44755,88.5464 +91780,2.1107,87.8345 +91781,355.66,89.9904399 +91782,357.41,89.25023 +91783,359.11,88.5442 +91784,0.77746,87.8693 +91785,354.32,89.911706 +91786,356.06,89.21023 +91787,357.77,88.5422 +91788,359.44,87.9046 +91789,352.97,89.83247 +91790,354.72,89.17005 +91791,356.43,88.5403 +91792,358.11,87.9403 +91793,351.63,89.75276 +91794,353.38,89.1297 +91795,355.09,88.5385 +91796,356.77,87.9765 +91797,350.29,89.67262 +91798,352.04,89.08918 +91799,353.75,88.5369 +91800,355.43,88.013 +91801,348.95,89.59207 +91802,350.7,89.04851 +91803,352.41,88.5353 +91804,354.09,88.0499 +91805,347.61,89.51114 +91806,349.36,89.0077 +91807,351.07,88.5339 +91808,352.75,88.0871 +91809,346.28,89.42988 +91810,348.02,88.9668 +91811,349.73,88.5325 +91812,351.41,88.1246 +91813,344.94,89.3483 +91814,346.68,88.9257 +91815,348.39,88.5312 +91816,350.07,88.1624 +91817,343.61,89.26645 +91818,345.34,88.8845 +91819,347.05,88.53 +91820,348.72,88.2005 +91821,342.27,89.18435 +91822,344.01,88.8433 +91823,345.71,88.5288 +91824,347.37,88.2387 +91825,340.94,89.10204 +91826,342.67,88.8019 +91827,344.36,88.5276 +91828,346.03,88.2771 +91829,339.61,89.01956 +91830,341.33,88.7605 +91831,343.02,88.5265 +91832,344.68,88.3157 +91833,338.28,88.9369 +91834,339.99,88.719 +91835,341.68,88.5255 +91836,343.33,88.3543 +91837,336.96,88.8542 +91838,338.66,88.6774 +91839,340.33,88.5244 +91840,341.98,88.3931 +91841,335.63,88.7714 +91842,337.32,88.6358 +91843,338.99,88.5233 +91844,340.62,88.4319 +91845,334.31,88.6885 +91846,335.99,88.5942 +91847,337.64,88.5223 +91848,339.27,88.4708 +91849,332.98,88.6056 +91850,334.65,88.5526 +91851,336.3,88.5212 +91852,337.92,88.5096 +91853,331.66,88.5227 +91854,333.32,88.5109 +91855,334.95,88.52 +91856,336.56,88.5484 +91857,330.34,88.4399 +91858,331.99,88.4692 +91859,333.61,88.5189 +91860,335.2,88.5872 +91861,329.02,88.3572 +91862,330.65,88.4276 +91863,332.26,88.5177 +91864,333.84,88.6258 +91865,327.7,88.2746 +91866,329.32,88.3859 +91867,330.91,88.5164 +91868,332.48,88.6644 +91869,326.39,88.1921 +91870,327.99,88.3443 +91871,329.57,88.5151 +91872,331.12,88.7028 +91873,325.07,88.1098 +91874,326.66,88.3027 +91875,328.22,88.5137 +91876,329.76,88.741 +91877,323.76,88.0277 +91878,325.33,88.2612 +91879,326.87,88.5122 +91880,328.39,88.779 +91881,322.44,87.9459 +91882,324,88.2198 +91883,325.52,88.5106 +91884,327.03,88.8167 +91885,321.13,87.8643 +91886,322.67,88.1784 +91887,324.18,88.5089 +91888,325.66,88.8542 +91889,319.82,87.7831 +91890,321.34,88.1371 +91891,322.83,88.507 +91892,324.3,88.8914 +91893,318.51,87.7022 +91894,320.01,88.0959 +91895,321.48,88.5051 +91896,322.93,88.9282 +91897,317.21,87.6216 +91898,318.68,88.0548 +91899,320.13,88.503 +91900,321.56,88.9647 +91901,315.9,87.5415 +91902,317.35,88.0138 +91903,318.78,88.5007 +91904,320.19,89.00081 +91905,314.59,87.4618 +91906,316.02,87.9729 +91907,317.43,88.4983 +91908,318.81,89.03649 +91909,313.29,87.3826 +91910,314.69,87.9322 +91911,316.08,88.4957 +91912,317.44,89.07172 +91913,311.99,87.3038 +91914,313.37,87.8916 +91915,314.73,88.493 +91916,316.07,89.10648 +91917,310.68,87.2256 +91918,312.04,87.8511 +91919,313.38,88.49 +91920,314.69,89.14074 +91921,309.38,87.1479 +91922,310.71,87.8109 +91923,312.02,88.4869 +91924,313.31,89.17446 +91925,308.08,87.0708 +91926,309.39,87.7708 +91927,310.67,88.4836 +91928,311.94,89.20762 +91929,306.78,86.9943 +91930,308.06,87.7309 +91931,309.32,88.48 +91932,310.56,89.2402 +91933,305.48,86.9184 +91934,306.74,87.6911 +91935,307.97,88.4762 +91936,309.18,89.27217 +91937,304.19,86.8432 +91938,305.41,87.6516 +91939,306.61,88.4722 +91940,307.8,89.30349 +91941,302.89,86.7687 +91942,304.09,87.6123 +91943,305.26,88.4679 +91944,306.42,89.33414 +91945,301.6,86.6949 +91946,302.76,87.5732 +91947,303.91,88.4634 +91948,305.03,89.3641 +91949,300.3,86.6219 +91950,301.44,87.5343 +91951,302.55,88.4587 +91952,303.65,89.39334 +91953,299.01,86.5496 +91954,300.11,87.4957 +91955,301.2,88.4536 +91956,302.27,89.42184 +91957,297.72,86.4781 +91958,298.79,87.4573 +91959,299.85,88.4483 +91960,300.88,89.44956 +91961,296.43,86.4074 +91962,297.47,87.4192 +91963,298.49,88.4427 +91964,299.49,89.47649 +91965,295.13,86.3376 +91966,296.15,87.3813 +91967,297.14,88.4368 +91968,298.11,89.50259 +91969,293.85,86.2687 +91970,294.82,87.3437 +91971,295.78,88.4306 +91972,296.72,89.52785 +91973,292.56,86.2006 +91974,293.5,87.3064 +91975,294.43,88.4241 +91976,295.33,89.55225 +91977,291.27,86.1335 +91978,292.18,87.2694 +91979,293.07,88.4173 +91980,293.94,89.57575 +91981,289.98,86.0672 +91982,290.86,87.2327 +91983,291.72,88.4101 +91984,292.55,89.59833 +91985,288.69,86.002 +91986,289.54,87.1962 +91987,290.36,88.4026 +91988,291.16,89.61997 +91989,287.41,85.9377 +91990,288.22,87.1601 +91991,289,88.3948 +91992,289.77,89.64066 +91993,286.12,85.8745 +91994,286.9,87.1243 +91995,287.65,88.3867 +91996,288.38,89.66036 +91997,284.84,85.8122 +91998,285.58,87.0888 +91999,286.29,88.3781 +92000,286.99,89.67906 +92001,283.55,85.751 +92002,284.26,87.0537 +92003,284.94,88.3693 +92004,285.59,89.69674 +92005,282.27,85.6909 +92006,282.94,87.0188 +92007,283.58,88.36 +92008,284.2,89.71337 +92009,280.99,85.6318 +92010,281.62,86.9844 +92011,282.22,88.3504 +92012,282.8,89.72894 +92013,279.71,85.5739 +92014,280.3,86.9503 +92015,280.87,88.3404 +92016,281.41,89.74343 +92017,278.42,85.5171 +92018,278.98,86.9165 +92019,279.51,88.33 +92020,280.01,89.75681 +92021,277.14,85.4613 +92022,277.66,86.8831 +92023,278.15,88.3193 +92024,278.62,89.76908 +92025,275.86,85.4068 +92026,276.34,86.85 +92027,276.79,88.3081 +92028,277.22,89.78021 +92029,274.58,85.3534 +92030,275.02,86.8174 +92031,275.44,88.2965 +92032,275.82,89.79018 +92033,273.3,85.3012 +92034,273.7,86.7851 +92035,274.08,88.2845 +92036,274.43,89.79898 +92037,272.02,85.2501 +92038,272.38,86.7532 +92039,272.72,88.2721 +92040,273.03,89.8066 +92041,270.74,85.2003 +92042,271.07,86.7217 +92043,271.36,88.2593 +92044,271.63,89.81301 +92045,269.46,85.1517 +92046,269.75,86.6905 +92047,270.01,88.2461 +92048,270.23,89.81821 +92049,268.19,85.1044 +92050,268.43,86.6598 +92051,268.65,88.2325 +92052,268.84,89.82218 +92053,266.91,85.0582 +92054,267.11,86.6295 +92055,267.29,88.2184 +92056,267.44,89.8249 +92057,265.63,85.0134 +92058,265.8,86.5996 +92059,265.93,88.2039 +92060,266.04,89.82636 +92061,264.35,84.9698 +92062,264.48,86.57 +92063,264.57,88.1889 +92064,264.64,89.82656 +92065,263.07,84.9274 +92066,263.16,86.5409 +92067,263.22,88.1735 +92068,263.24,89.82547 +92069,261.8,84.8864 +92070,261.84,86.5122 +92071,261.86,88.1577 +92072,261.84,89.82309 +92073,260.52,84.8466 +92074,260.53,86.484 +92075,260.5,88.1414 +92076,260.44,89.81941 +92077,259.24,84.8082 +92078,259.21,86.4561 +92079,259.14,88.1247 +92080,259.04,89.81442 +92081,257.96,84.771 +92082,257.89,86.4287 +92083,257.79,88.1075 +92084,257.65,89.8081 +92085,256.69,84.7352 +92086,256.57,86.4017 +92087,256.43,88.0898 +92088,256.25,89.80046 +92089,255.41,84.7006 +92090,255.26,86.3751 +92091,255.07,88.0717 +92092,254.85,89.79148 +92093,254.13,84.6674 +92094,253.94,86.349 +92095,253.71,88.0532 +92096,253.45,89.78115 +92097,252.85,84.6355 +92098,252.62,86.3233 +92099,252.36,88.0341 +92100,252.05,89.76948 +92101,251.58,84.605 +92102,251.31,86.298 +92103,251,88.0146 +92104,250.65,89.75644 +92105,250.3,84.5758 +92106,249.99,86.2731 +92107,249.64,87.9947 +92108,249.25,89.74205 +92109,249.02,84.5479 +92110,248.67,86.2487 +92111,248.28,87.9743 +92112,247.86,89.72629 +92113,247.74,84.5213 +92114,247.35,86.2247 +92115,246.93,87.9534 +92116,246.46,89.70916 +92117,246.46,84.4961 +92118,246.04,86.2012 +92119,245.57,87.9321 +92120,245.06,89.69067 +92121,245.19,84.4722 +92122,244.72,86.1781 +92123,244.21,87.9103 +92124,243.66,89.67079 +92125,243.91,84.4497 +92126,243.4,86.1554 +92127,242.86,87.888 +92128,242.27,89.64955 +92129,242.63,84.4284 +92130,242.08,86.1332 +92131,241.5,87.8652 +92132,240.87,89.62692 +92133,241.35,84.4086 +92134,240.77,86.1114 +92135,240.14,87.842 +92136,239.47,89.60292 +92137,240.07,84.39 +92138,239.45,86.09 +92139,238.79,87.8184 +92140,238.08,89.57755 +92141,238.79,84.3727 +92142,238.13,86.0691 +92143,237.43,87.7942 +92144,236.68,89.5508 +92145,237.51,84.3568 +92146,236.81,86.0486 +92147,236.08,87.7696 +92148,235.29,89.52269 +92149,236.23,84.3422 +92150,235.49,86.0286 +92151,234.72,87.7446 +92152,233.9,89.4932 +92153,234.94,84.3289 +92154,234.18,86.0089 +92155,233.37,87.719 +92156,232.5,89.46235 +92157,233.66,84.3169 +92158,232.86,85.9897 +92159,232.01,87.693 +92160,231.11,89.43014 +92161,232.38,84.3062 +92162,231.54,85.9709 +92163,230.66,87.6666 +92164,229.72,89.39657 +92165,231.1,84.2968 +92166,230.22,85.9526 +92167,229.3,87.6397 +92168,228.33,89.36166 +92169,229.81,84.2887 +92170,228.9,85.9346 +92171,227.95,87.6124 +92172,226.94,89.3254 +92173,228.53,84.2818 +92174,227.58,85.9171 +92175,226.59,87.5846 +92176,225.55,89.28781 +92177,227.24,84.2762 +92178,226.26,85.9 +92179,225.24,87.5563 +92180,224.16,89.2489 +92181,225.96,84.2718 +92182,224.94,85.8833 +92183,223.89,87.5277 +92184,222.77,89.20866 +92185,224.67,84.2687 +92186,223.62,85.867 +92187,222.53,87.4986 +92188,221.38,89.16711 +92189,223.38,84.2668 +92190,222.31,85.8512 +92191,221.18,87.469 +92192,220,89.12427 +92193,222.09,84.2661 +92194,220.98,85.8357 +92195,219.83,87.439 +92196,218.61,89.08014 +92197,220.8,84.2667 +92198,219.66,85.8206 +92199,218.48,87.4086 +92200,217.23,89.03473 +92201,219.52,84.2684 +92202,218.34,85.8059 +92203,217.12,87.3778 +92204,215.85,88.9881 +92205,218.22,84.2713 +92206,217.02,85.7916 +92207,215.77,87.3465 +92208,214.46,88.9401 +92209,216.93,84.2753 +92210,215.7,85.7777 +92211,214.42,87.3148 +92212,213.08,88.891 +92213,215.64,84.2805 +92214,214.38,85.7642 +92215,213.07,87.2828 +92216,211.7,88.8406 +92217,214.35,84.2868 +92218,213.06,85.751 +92219,211.72,87.2503 +92220,210.32,88.789 +92221,213.05,84.2943 +92222,211.74,85.7382 +92223,210.37,87.2174 +92224,208.94,88.7362 +92225,211.76,84.3028 +92226,210.41,85.7258 +92227,209.02,87.1841 +92228,207.57,88.6823 +92229,210.46,84.3124 +92230,209.09,85.7137 +92231,207.67,87.1505 +92232,206.19,88.6271 +92233,209.17,84.3231 +92234,207.77,85.702 +92235,206.32,87.1164 +92236,204.81,88.5709 +92237,207.87,84.3349 +92238,206.45,85.6906 +92239,204.97,87.082 +92240,203.44,88.5135 +92241,206.57,84.3476 +92242,205.12,85.6796 +92243,203.63,87.0472 +92244,202.07,88.455 +92245,205.27,84.3614 +92246,203.8,85.6689 +92247,202.28,87.0121 +92248,200.7,88.3954 +92249,203.97,84.3761 +92250,202.47,85.6585 +92251,200.93,86.9766 +92252,199.33,88.3348 +92253,202.66,84.3918 +92254,201.15,85.6484 +92255,199.58,86.9407 +92256,197.96,88.2731 +92257,201.36,84.4084 +92258,199.83,85.6387 +92259,198.24,86.9045 +92260,196.59,88.2104 +92261,200.06,84.426 +92262,198.5,85.6293 +92263,196.89,86.868 +92264,195.22,88.1467 +92265,198.75,84.4445 +92266,197.17,85.6201 +92267,195.55,86.8312 +92268,193.86,88.082 +92269,197.44,84.4638 +92270,195.85,85.6113 +92271,194.2,86.794 +92272,192.49,88.0163 +92273,196.14,84.4841 +92274,194.52,85.6027 +92275,192.86,86.7565 +92276,191.13,87.9497 +92277,194.83,84.5051 +92278,193.2,85.5944 +92279,191.51,86.7187 +92280,189.77,87.8822 +92281,193.52,84.527 +92282,191.87,85.5864 +92283,190.17,86.6806 +92284,188.41,87.8139 +92285,192.2,84.5496 +92286,190.54,85.5787 +92287,188.83,86.6423 +92288,187.05,87.7446 +92289,190.89,84.573 +92290,189.21,85.5711 +92291,187.48,86.6036 +92292,185.69,87.6745 +92293,189.58,84.5971 +92294,187.89,85.5639 +92295,186.14,86.5647 +92296,184.34,87.6036 +92297,188.26,84.622 +92298,186.56,85.5569 +92299,184.8,86.5255 +92300,182.99,87.532 +92301,186.95,84.6475 +92302,185.23,85.5501 +92303,183.46,86.4861 +92304,181.63,87.4595 +92305,185.63,84.6738 +92306,183.9,85.5435 +92307,182.12,86.4464 +92308,180.28,87.3864 +92309,184.31,84.7006 +92310,182.57,85.5371 +92311,180.78,86.4065 +92312,178.93,87.3125 +92313,182.99,84.7281 +92314,181.24,85.531 +92315,179.44,86.3664 +92316,177.58,87.238 +92317,181.67,84.7561 +92318,179.91,85.525 +92319,178.1,86.326 +92320,176.24,87.1628 +92321,180.34,84.7847 +92322,178.58,85.5192 +92323,176.76,86.2854 +92324,174.89,87.087 +92325,179.02,84.8138 +92326,177.24,85.5136 +92327,175.42,86.2447 +92328,173.55,87.0106 +92329,177.69,84.8435 +92330,175.91,85.5082 +92331,174.08,86.2037 +92332,172.2,86.9336 +92333,176.36,84.8736 +92334,174.58,85.5029 +92335,172.75,86.1626 +92336,170.86,86.8561 +92337,175.04,84.9041 +92338,173.25,85.4977 +92339,171.41,86.1213 +92340,169.52,86.7781 +92341,173.71,84.9351 +92342,171.91,85.4927 +92343,170.07,86.0798 +92344,168.18,86.6997 +92345,172.37,84.9665 +92346,170.58,85.4879 +92347,168.74,86.0382 +92348,166.85,86.6208 +92349,171.04,84.9982 +92350,169.25,85.4831 +92351,167.4,85.9965 +92352,165.51,86.5414 +92353,169.71,85.0303 +92354,167.91,85.4785 +92355,166.07,85.9546 +92356,164.18,86.4617 +92357,168.37,85.0627 +92358,166.58,85.4739 +92359,164.74,85.9126 +92360,162.84,86.3817 +92361,167.04,85.0954 +92362,165.24,85.4695 +92363,163.4,85.8705 +92364,161.51,86.3013 +92365,165.7,85.1283 +92366,163.91,85.4651 +92367,162.07,85.8283 +92368,160.18,86.2206 +92369,164.36,85.1614 +92370,162.57,85.4608 +92371,160.74,85.786 +92372,158.86,86.1397 +92373,163.02,85.1948 +92374,161.23,85.4566 +92375,159.4,85.7436 +92376,157.53,86.0586 +92377,161.68,85.2283 +92378,159.9,85.4524 +92379,158.07,85.7011 +92380,156.2,85.9772 +92381,160.33,85.2619 +92382,158.56,85.4482 +92383,156.74,85.6586 +92384,154.88,85.8957 +92385,158.99,85.2956 +92386,157.22,85.4441 +92387,155.41,85.6161 +92388,153.56,85.8141 +92389,157.64,85.3295 +92390,155.88,85.44 +92391,154.08,85.5735 +92392,152.24,85.7323 +92393,156.29,85.3633 +92394,154.54,85.4359 +92395,152.75,85.5308 +92396,150.92,85.6505 +92397,154.94,85.3972 +92398,153.2,85.4319 +92399,151.42,85.4882 +92400,149.6,85.5687 +92401,153.59,85.4311 +92402,151.86,85.4278 +92403,150.09,85.4456 +92404,148.28,85.4868 +92405,152.24,85.465 +92406,150.52,85.4237 +92407,148.77,85.4029 +92408,146.97,85.405 +92409,150.89,85.4987 +92410,149.18,85.4195 +92411,147.44,85.3603 +92412,145.66,85.3232 +92413,149.53,85.5324 +92414,147.84,85.4154 +92415,146.11,85.3177 +92416,144.34,85.2415 +92417,148.18,85.566 +92418,146.5,85.4112 +92419,144.79,85.2751 +92420,143.03,85.16 +92421,146.82,85.5994 +92422,145.16,85.4069 +92423,143.46,85.2326 +92424,141.72,85.0786 +92425,145.46,85.6326 +92426,143.82,85.4025 +92427,142.13,85.1901 +92428,140.42,84.9973 +92429,144.1,85.6656 +92430,142.47,85.3981 +92431,140.81,85.1477 +92432,139.11,84.9163 +92433,142.74,85.6984 +92434,141.13,85.3936 +92435,139.49,85.1053 +92436,137.8,84.8355 +92437,141.38,85.7309 +92438,139.79,85.389 +92439,138.16,85.0631 +92440,136.5,84.755 +92441,140.02,85.7631 +92442,138.44,85.3843 +92443,136.84,85.0209 +92444,135.2,84.6748 +92445,138.65,85.795 +92446,137.1,85.3795 +92447,135.51,84.9788 +92448,133.89,84.595 +92449,137.29,85.8265 +92450,135.76,85.3746 +92451,134.19,84.9369 +92452,132.59,84.5155 +92453,135.92,85.8577 +92454,134.41,85.3695 +92455,132.87,84.8951 +92456,131.3,84.4364 +92457,134.55,85.8885 +92458,133.07,85.3643 +92459,131.55,84.8534 +92460,130,84.3577 +92461,133.18,85.9188 +92462,131.72,85.3589 +92463,130.23,84.8119 +92464,128.7,84.2795 +92465,131.81,85.9486 +92466,130.37,85.3534 +92467,128.91,84.7705 +92468,127.41,84.2018 +92469,130.44,85.978 +92470,129.03,85.3477 +92471,127.58,84.7292 +92472,126.11,84.1245 +92473,129.07,86.0068 +92474,127.68,85.3418 +92475,126.26,84.6882 +92476,124.82,84.0478 +92477,127.69,86.0351 +92478,126.33,85.3357 +92479,124.94,84.6473 +92480,123.53,83.9717 +92481,126.32,86.0629 +92482,124.99,85.3295 +92483,123.63,84.6066 +92484,122.24,83.8962 +92485,124.94,86.09 +92486,123.64,85.323 +92487,122.31,84.5661 +92488,120.95,83.8213 +92489,123.57,86.1166 +92490,122.29,85.3163 +92491,120.99,84.5259 +92492,119.66,83.7471 +92493,122.19,86.1425 +92494,120.94,85.3094 +92495,119.67,84.4858 +92496,118.37,83.6735 +92497,120.81,86.1677 +92498,119.59,85.3022 +92499,118.35,84.446 +92500,117.08,83.6006 +92501,119.43,86.1922 +92502,118.24,85.2949 +92503,117.04,84.4064 +92504,115.8,83.5285 +92505,118.05,86.216 +92506,116.9,85.2872 +92507,115.72,84.367 +92508,114.51,83.4571 +92509,116.66,86.2391 +92510,115.55,85.2793 +92511,114.4,84.3279 +92512,113.23,83.3865 +92513,115.28,86.2614 +92514,114.2,85.2712 +92515,113.09,84.289 +92516,111.95,83.3167 +92517,113.9,86.2829 +92518,112.85,85.2628 +92519,111.77,84.2505 +92520,110.67,83.2477 +92521,112.51,86.3036 +92522,111.5,85.2541 +92523,110.45,84.2121 +92524,109.39,83.1796 +92525,111.13,86.3235 +92526,110.15,85.2451 +92527,109.14,84.1741 +92528,108.11,83.1123 +92529,109.74,86.3425 +92530,108.79,85.2358 +92531,107.82,84.1364 +92532,106.83,83.046 +92533,108.35,86.3607 +92534,107.44,85.2262 +92535,106.51,84.0989 +92536,105.55,82.9806 +92537,106.97,86.3779 +92538,106.09,85.2163 +92539,105.19,84.0618 +92540,104.27,82.9161 +92541,105.58,86.3943 +92542,104.74,85.2061 +92543,103.88,84.025 +92544,102.99,82.8525 +92545,104.19,86.4096 +92546,103.39,85.1956 +92547,102.57,83.9885 +92548,101.72,82.79 +92549,102.8,86.4241 +92550,102.04,85.1847 +92551,101.25,83.9523 +92552,100.44,82.7284 +92553,101.41,86.4376 +92554,100.69,85.1735 +92555,99.939,83.9165 +92556,99.167,82.6679 +92557,100.01,86.45 +92558,99.334,85.162 +92559,98.626,83.881 +92560,97.893,82.6084 +92561,98.623,86.4615 +92562,97.981,85.1501 +92563,97.313,83.8458 +92564,96.619,82.55 +92565,97.23,86.4719 +92566,96.629,85.1379 +92567,96.001,83.811 +92568,95.346,82.4926 +92569,95.837,86.4813 +92570,95.276,85.1253 +92571,94.688,83.7765 +92572,94.074,82.4363 +92573,94.444,86.4896 +92574,93.923,85.1124 +92575,93.376,83.7424 +92576,92.802,82.3812 +92577,93.049,86.4968 +92578,92.57,85.099 +92579,92.064,83.7087 +92580,91.531,82.3271 +92581,91.655,86.503 +92582,91.217,85.0853 +92583,90.752,83.6753 +92584,90.26,82.2742 +92585,90.26,86.508 +92586,89.864,85.0713 +92587,89.44,83.6424 +92588,88.989,82.2225 +92589,88.865,86.5119 +92590,88.511,85.0568 +92591,88.129,83.6098 +92592,87.719,82.1719 +92593,87.469,86.5147 +92594,87.158,85.042 +92595,86.818,83.5775 +92596,86.449,82.1225 +92597,86.073,86.5163 +92598,85.804,85.0267 +92599,85.506,83.5457 +92600,85.18,82.0743 +92601,84.677,86.5167 +92602,84.451,85.0111 +92603,84.195,83.5143 +92604,83.911,82.0273 +92605,83.28,86.516 +92606,83.097,84.9951 +92607,82.884,83.4833 +92608,82.642,81.9815 +92609,81.884,86.5141 +92610,81.744,84.9786 +92611,81.573,83.4526 +92612,81.373,81.9369 +92613,80.487,86.5109 +92614,80.39,84.9618 +92615,80.263,83.4224 +92616,80.105,81.8936 +92617,79.09,86.5066 +92618,79.037,84.9445 +92619,78.952,83.3926 +92620,78.836,81.8515 +92621,77.693,86.501 +92622,77.683,84.9269 +92623,77.641,83.3632 +92624,77.568,81.8107 +92625,76.295,86.4943 +92626,76.33,84.9088 +92627,76.331,83.3342 +92628,76.3,81.7711 +92629,74.898,86.4862 +92630,74.976,84.8903 +92631,75.02,83.3056 +92632,75.032,81.7328 +92633,73.501,86.477 +92634,73.623,84.8713 +92635,73.71,83.2775 +92636,73.764,81.6958 +92637,72.104,86.4664 +92638,72.269,84.852 +92639,72.399,83.2498 +92640,72.496,81.6601 +92641,70.706,86.4547 +92642,70.916,84.8322 +92643,71.089,83.2225 +92644,71.229,81.6256 +92645,69.309,86.4416 +92646,69.562,84.812 +92647,69.779,83.1956 +92648,69.961,81.5924 +92649,67.912,86.4273 +92650,68.209,84.7914 +92651,68.468,83.1691 +92652,68.692,81.5606 +92653,66.516,86.4117 +92654,66.856,84.7703 +92655,67.158,83.1431 +92656,67.424,81.53 +92657,65.119,86.3948 +92658,65.503,84.7488 +92659,65.847,83.1175 +92660,66.156,81.5007 +92661,63.723,86.3766 +92662,64.15,84.7269 +92663,64.537,83.0923 +92664,64.887,81.4727 +92665,62.326,86.3572 +92666,62.797,84.7045 +92667,63.226,83.0676 +92668,63.619,81.446 +92669,60.931,86.3364 +92670,61.444,84.6817 +92671,61.916,83.0433 +92672,62.35,81.4207 +92673,59.535,86.3144 +92674,60.091,84.6585 +92675,60.605,83.0194 +92676,61.08,81.3966 +92677,58.14,86.2911 +92678,58.739,84.6348 +92679,59.295,82.996 +92680,59.811,81.3738 +92681,56.745,86.2665 +92682,57.387,84.6107 +92683,57.984,82.9729 +92684,58.541,81.3523 +92685,55.351,86.2406 +92686,56.034,84.5862 +92687,56.673,82.9504 +92688,57.271,81.3321 +92689,53.957,86.2134 +92690,54.683,84.5613 +92691,55.362,82.9282 +92692,56,81.3132 +92693,52.564,86.1849 +92694,53.331,84.5359 +92695,54.051,82.9065 +92696,54.729,81.2956 +92697,51.171,86.1551 +92698,51.979,84.5101 +92699,52.739,82.8852 +92700,53.457,81.2793 +92701,49.779,86.1241 +92702,50.628,84.4838 +92703,51.428,82.8643 +92704,52.185,81.2642 +92705,48.387,86.0917 +92706,49.277,84.4571 +92707,50.117,82.8438 +92708,50.913,81.2505 +92709,46.996,86.0581 +92710,47.926,84.43 +92711,48.805,82.8238 +92712,49.639,81.2379 +92713,45.606,86.0233 +92714,46.575,84.4025 +92715,47.493,82.8042 +92716,48.366,81.2267 +92717,44.216,85.9871 +92718,45.225,84.3746 +92719,46.181,82.785 +92720,47.091,81.2167 +92721,42.827,85.9497 +92722,43.875,84.3462 +92723,44.869,82.7662 +92724,45.816,81.2079 +92725,41.439,85.9111 +92726,42.525,84.3174 +92727,43.556,82.7478 +92728,44.541,81.2004 +92729,40.052,85.8712 +92730,41.175,84.2883 +92731,42.244,82.7299 +92732,43.264,81.1941 +92733,38.665,85.8301 +92734,39.826,84.2587 +92735,40.931,82.7123 +92736,41.987,81.189 +92737,37.28,85.7878 +92738,38.477,84.2287 +92739,39.618,82.6951 +92740,40.709,81.1851 +92741,35.895,85.7442 +92742,37.128,84.1983 +92743,38.304,82.6784 +92744,39.431,81.1823 +92745,34.511,85.6995 +92746,35.78,84.1675 +92747,36.991,82.662 +92748,38.151,81.1808 +92749,33.128,85.6535 +92750,34.432,84.1363 +92751,35.677,82.646 +92752,36.871,81.1804 +92753,31.746,85.6064 +92754,33.084,84.1047 +92755,34.363,82.6304 +92756,35.59,81.1812 +92757,30.365,85.5581 +92758,31.737,84.0727 +92759,33.048,82.6152 +92760,34.308,81.1831 +92761,28.985,85.5086 +92762,30.39,84.0404 +92763,31.734,82.6004 +92764,33.025,81.1861 +92765,27.607,85.4581 +92766,29.044,84.0076 +92767,30.419,82.5859 +92768,31.741,81.1903 +92769,26.229,85.4063 +92770,27.697,83.9745 +92771,29.103,82.5718 +92772,30.456,81.1955 +92773,24.852,85.3535 +92774,26.352,83.9411 +92775,27.788,82.5581 +92776,29.17,81.2018 +92777,23.477,85.2996 +92778,25.006,83.9072 +92779,26.472,82.5447 +92780,27.883,81.2092 +92781,22.102,85.2446 +92782,23.661,83.873 +92783,25.156,82.5317 +92784,26.596,81.2175 +92785,20.729,85.1885 +92786,22.316,83.8385 +92787,23.839,82.519 +92788,25.307,81.227 +92789,19.357,85.1314 +92790,20.972,83.8036 +92791,22.522,82.5066 +92792,24.017,81.2374 +92793,17.986,85.0733 +92794,19.629,83.7684 +92795,21.205,82.4946 +92796,22.725,81.2488 +92797,16.617,85.0141 +92798,18.285,83.7329 +92799,19.887,82.4829 +92800,21.433,81.2611 +92801,15.249,84.954 +92802,16.942,83.697 +92803,18.569,82.4716 +92804,20.14,81.2744 +92805,13.882,84.8929 +92806,15.6,83.6608 +92807,17.251,82.4605 +92808,18.845,81.2887 +92809,12.516,84.8308 +92810,14.258,83.6243 +92811,15.932,82.4498 +92812,17.55,81.3038 +92813,11.152,84.7678 +92814,12.916,83.5875 +92815,14.613,82.4393 +92816,16.253,81.3198 +92817,9.7887,84.7039 +92818,11.575,83.5504 +92819,13.294,82.4291 +92820,14.955,81.3367 +92821,8.4271,84.6391 +92822,10.235,83.5131 +92823,11.974,82.4193 +92824,13.655,81.3544 +92825,7.0669,84.5735 +92826,8.8945,83.4754 +92827,10.654,82.4097 +92828,12.355,81.3729 +92829,5.7081,84.507 +92830,7.5548,83.4374 +92831,9.3332,82.4003 +92832,11.053,81.3923 +92833,4.3507,84.4397 +92834,6.2157,83.3992 +92835,8.0121,82.3913 +92836,9.7499,81.4124 +92837,2.9947,84.3716 +92838,4.877,83.3608 +92839,6.6907,82.3824 +92840,8.4455,81.4332 +92841,1.6402,84.3027 +92842,3.5388,83.322 +92843,5.3688,82.3739 +92844,7.1398,81.4548 +92845,0.28715,84.233 +92846,2.2011,83.2831 +92847,4.0465,82.3655 +92848,5.8327,81.477 +92849,358.94,84.1627 +92850,0.86396,83.2439 +92851,2.7237,82.3574 +92852,4.5244,81.4999 +92853,357.59,84.0916 +92854,359.53,83.2045 +92855,1.4006,82.3496 +92856,3.2147,81.5235 +92857,356.24,84.0199 +92858,358.19,83.1648 +92859,0.076968,82.3419 +92860,1.9036,81.5477 +92861,354.89,83.9475 +92862,356.86,83.125 +92863,358.75,82.3344 +92864,0.59118,81.5725 +92865,353.54,83.8745 +92866,355.52,83.0849 +92867,357.43,82.3272 +92868,359.28,81.5979 +92869,352.2,83.801 +92870,354.19,83.0447 +92871,356.1,82.3201 +92872,357.96,81.6238 +92873,350.86,83.7268 +92874,352.85,83.0043 +92875,354.78,82.3132 +92876,356.65,81.6502 +92877,349.52,83.6521 +92878,351.52,82.9637 +92879,353.45,82.3065 +92880,355.33,81.6772 +92881,348.18,83.5769 +92882,350.19,82.9229 +92883,352.13,82.2999 +92884,354.01,81.7046 +92885,346.84,83.5012 +92886,348.85,82.882 +92887,350.8,82.2935 +92888,352.69,81.7324 +92889,345.5,83.4251 +92890,347.52,82.841 +92891,349.47,82.2872 +92892,351.37,81.7606 +92893,344.17,83.3485 +92894,346.19,82.7998 +92895,348.14,82.2811 +92896,350.04,81.7893 +92897,342.84,83.2716 +92898,344.86,82.7584 +92899,346.82,82.275 +92900,348.72,81.8182 +92901,341.5,83.1942 +92902,343.53,82.717 +92903,345.49,82.2692 +92904,347.39,81.8476 +92905,340.17,83.1166 +92906,342.2,82.6755 +92907,344.16,82.2634 +92908,346.06,81.8772 +92909,338.84,83.0386 +92910,340.87,82.6338 +92911,342.83,82.2577 +92912,344.73,81.9071 +92913,337.52,82.9603 +92914,339.54,82.5921 +92915,341.5,82.2521 +92916,343.4,81.9372 +92917,336.19,82.8818 +92918,338.21,82.5503 +92919,340.17,82.2465 +92920,342.07,81.9676 +92921,334.87,82.8031 +92922,336.88,82.5084 +92923,338.84,82.2411 +92924,340.74,81.9981 +92925,333.55,82.7241 +92926,335.56,82.4665 +92927,337.51,82.2357 +92928,339.4,82.0288 +92929,332.23,82.645 +92930,334.23,82.4245 +92931,336.17,82.2303 +92932,338.06,82.0596 +92933,330.91,82.5658 +92934,332.9,82.3824 +92935,334.84,82.225 +92936,336.73,82.0906 +92937,329.59,82.4865 +92938,331.58,82.3404 +92939,333.51,82.2197 +92940,335.39,82.1216 +92941,328.27,82.4071 +92942,330.25,82.2983 +92943,332.18,82.2144 +92944,334.05,82.1527 +92945,326.96,82.3277 +92946,328.93,82.2562 +92947,330.84,82.2092 +92948,332.7,82.1838 +92949,325.65,82.2482 +92950,327.61,82.2141 +92951,329.51,82.2039 +92952,331.36,82.2149 +92953,324.33,82.1688 +92954,326.28,82.1721 +92955,328.17,82.1987 +92956,330.01,82.2459 +92957,323.02,82.0894 +92958,324.96,82.13 +92959,326.84,82.1934 +92960,328.67,82.2769 +92961,321.72,82.0102 +92962,323.64,82.088 +92963,325.5,82.1881 +92964,327.32,82.3078 +92965,320.41,81.931 +92966,322.32,82.046 +92967,324.17,82.1827 +92968,325.97,82.3385 +92969,319.1,81.8519 +92970,320.99,82.0041 +92971,322.83,82.1773 +92972,324.62,82.3692 +92973,317.8,81.7731 +92974,319.67,81.9622 +92975,321.49,82.1719 +92976,323.27,82.3996 +92977,316.5,81.6944 +92978,318.35,81.9204 +92979,320.16,82.1664 +92980,321.91,82.4299 +92981,315.2,81.6159 +92982,317.03,81.8787 +92983,318.82,82.1608 +92984,320.56,82.4599 +92985,313.9,81.5378 +92986,315.71,81.837 +92987,317.48,82.1551 +92988,319.2,82.4896 +92989,312.6,81.4599 +92990,314.4,81.7955 +92991,316.14,82.1494 +92992,317.85,82.5191 +92993,311.3,81.3823 +92994,313.08,81.7541 +92995,314.8,82.1435 +92996,316.49,82.5483 +92997,310,81.3051 +92998,311.76,81.7127 +92999,313.47,82.1375 +93000,315.13,82.5771 +93001,308.71,81.2282 +93002,310.44,81.6716 +93003,312.13,82.1314 +93004,313.76,82.6055 +93005,307.42,81.1518 +93006,309.12,81.6305 +93007,310.79,82.1252 +93008,312.4,82.6336 +93009,306.13,81.0758 +93010,307.81,81.5896 +93011,309.44,82.1188 +93012,311.04,82.6612 +93013,304.84,81.0002 +93014,306.49,81.5488 +93015,308.1,82.1123 +93016,309.67,82.6884 +93017,303.55,80.9252 +93018,305.18,81.5083 +93019,306.76,82.1056 +93020,308.31,82.7151 +93021,302.26,80.8507 +93022,303.86,81.4678 +93023,305.42,82.0988 +93024,306.94,82.7413 +93025,300.97,80.7767 +93026,302.55,81.4276 +93027,304.08,82.0918 +93028,305.57,82.767 +93029,299.69,80.7033 +93030,301.23,81.3876 +93031,302.74,82.0846 +93032,304.2,82.7922 +93033,298.4,80.6304 +93034,299.92,81.3477 +93035,301.39,82.0772 +93036,302.83,82.8168 +93037,297.12,80.5582 +93038,298.61,81.3081 +93039,300.05,82.0696 +93040,301.46,82.8408 +93041,295.84,80.4867 +93042,297.29,81.2687 +93043,298.71,82.0618 +93044,300.08,82.8641 +93045,294.56,80.4158 +93046,295.98,81.2295 +93047,297.36,82.0538 +93048,298.71,82.8869 +93049,293.28,80.3457 +93050,294.67,81.1905 +93051,296.02,82.0456 +93052,297.33,82.9089 +93053,292,80.2763 +93054,293.36,81.1518 +93055,294.67,82.0371 +93056,295.95,82.9303 +93057,290.72,80.2076 +93058,292.04,81.1133 +93059,293.33,82.0284 +93060,294.58,82.9509 +93061,289.45,80.1397 +93062,290.73,81.0751 +93063,291.98,82.0195 +93064,293.2,82.9708 +93065,288.17,80.0726 +93066,289.42,81.0372 +93067,290.64,82.0103 +93068,291.82,82.99 +93069,286.9,80.0063 +93070,288.11,80.9995 +93071,289.29,82.0008 +93072,290.44,83.0084 +93073,285.62,79.941 +93074,286.8,80.9621 +93075,287.95,81.9911 +93076,289.06,83.0259 +93077,284.35,79.876 +93078,285.49,80.925 +93079,286.6,81.9811 +93080,287.67,83.0427 +93081,283.08,79.813 +93082,284.18,80.8882 +93083,285.25,81.9708 +93084,286.29,83.0586 +93085,281.81,79.75 +93086,282.88,80.8516 +93087,283.91,81.9602 +93088,284.91,83.0737 +93089,280.54,79.688 +93090,281.57,80.8154 +93091,282.56,81.9493 +93092,283.52,83.0878 +93093,279.27,79.627 +93094,280.26,80.7795 +93095,281.21,81.9382 +93096,282.13,83.1011 +93097,278,79.567 +93098,278.95,80.744 +93099,279.86,81.9267 +93100,280.75,83.1135 +93101,276.74,79.508 +93102,277.64,80.7087 +93103,278.52,81.9149 +93104,279.36,83.1249 +93105,275.47,79.45 +93106,276.33,80.6738 +93107,277.17,81.9028 +93108,277.97,83.1354 +93109,274.2,79.393 +93110,275.03,80.6393 +93111,275.82,81.8903 +93112,276.58,83.1448 +93113,272.94,79.338 +93114,273.72,80.605 +93115,274.47,81.8775 +93116,275.19,83.1534 +93117,271.67,79.283 +93118,272.41,80.5712 +93119,273.12,81.8644 +93120,273.8,83.1609 +93121,270.41,79.229 +93122,271.11,80.5376 +93123,271.78,81.8509 +93124,272.41,83.1673 +93125,269.14,79.177 +93126,269.8,80.5045 +93127,270.43,81.8371 +93128,271.02,83.1728 +93129,267.88,79.125 +93130,268.49,80.4717 +93131,269.08,81.823 +93132,269.63,83.1772 +93133,266.62,79.075 +93134,267.19,80.4393 +93135,267.73,81.8084 +93136,268.24,83.1805 +93137,265.36,79.025 +93138,265.88,80.4072 +93139,266.38,81.7936 +93140,266.84,83.1828 +93141,264.09,78.977 +93142,264.58,80.3756 +93143,265.03,81.7783 +93144,265.45,83.1839 +93145,262.83,78.93 +93146,263.27,80.3443 +93147,263.68,81.7627 +93148,264.06,83.184 +93149,261.57,78.885 +93150,261.97,80.3134 +93151,262.33,81.7467 +93152,262.66,83.1829 +93153,260.31,78.84 +93154,260.66,80.2829 +93155,260.98,81.7303 +93156,261.27,83.1808 +93157,259.05,78.797 +93158,259.36,80.2528 +93159,259.63,81.7136 +93160,259.87,83.1774 +93161,257.79,78.754 +93162,258.05,80.2231 +93163,258.28,81.6964 +93164,258.48,83.173 +93165,256.53,78.713 +93166,256.75,80.1938 +93167,256.93,81.6789 +93168,257.08,83.1674 +93169,255.27,78.674 +93170,255.44,80.1649 +93171,255.58,81.661 +93172,255.69,83.1606 +93173,254.01,78.635 +93174,254.14,80.1364 +93175,254.23,81.6427 +93176,254.29,83.1526 +93177,252.75,78.598 +93178,252.83,80.1083 +93179,252.88,81.624 +93180,252.9,83.1435 +93181,251.49,78.562 +93182,251.53,80.0807 +93183,251.53,81.6049 +93184,251.5,83.1332 +93185,250.23,78.527 +93186,250.22,80.0534 +93187,250.18,81.5854 +93188,250.11,83.1216 +93189,248.97,78.493 +93190,248.92,80.0266 +93191,248.83,81.5654 +93192,248.71,83.1089 +93193,247.72,78.461 +93194,247.61,80.0002 +93195,247.48,81.5451 +93196,247.31,83.095 +93197,246.46,78.43 +93198,246.31,79.974 +93199,246.13,81.5244 +93200,245.92,83.0799 +93201,245.2,78.4 +93202,245.01,79.949 +93203,244.78,81.5033 +93204,244.52,83.0635 +93205,243.94,78.372 +93206,243.7,79.923 +93207,243.43,81.4817 +93208,243.13,83.0459 +93209,242.68,78.345 +93210,242.4,79.899 +93211,242.08,81.4598 +93212,241.73,83.0271 +93213,241.42,78.319 +93214,241.09,79.874 +93215,240.73,81.4375 +93216,240.34,83.0071 +93217,240.16,78.294 +93218,239.79,79.851 +93219,239.38,81.4147 +93220,238.94,82.9858 +93221,238.9,78.27 +93222,238.48,79.827 +93223,238.03,81.3915 +93224,237.55,82.9634 +93225,237.64,78.248 +93226,237.18,79.804 +93227,236.68,81.3679 +93228,236.15,82.9397 +93229,236.38,78.227 +93230,235.87,79.781 +93231,235.34,81.3439 +93232,234.76,82.9147 +93233,235.11,78.208 +93234,234.57,79.759 +93235,233.99,81.3195 +93236,233.36,82.8886 +93237,233.85,78.189 +93238,233.26,79.737 +93239,232.64,81.2947 +93240,231.97,82.8612 +93241,232.59,78.172 +93242,231.96,79.716 +93243,231.29,81.2695 +93244,230.58,82.8326 +93245,231.33,78.156 +93246,230.65,79.695 +93247,229.94,81.2439 +93248,229.18,82.8027 +93249,230.06,78.142 +93250,229.35,79.675 +93251,228.59,81.2179 +93252,227.79,82.7717 +93253,228.8,78.128 +93254,228.04,79.654 +93255,227.24,81.1914 +93256,226.4,82.7394 +93257,227.54,78.116 +93258,226.74,79.635 +93259,225.9,81.1646 +93260,225.01,82.7059 +93261,226.27,78.105 +93262,225.43,79.616 +93263,224.55,81.1374 +93264,223.62,82.6713 +93265,225.01,78.096 +93266,224.13,79.597 +93267,223.2,81.1098 +93268,222.23,82.6354 +93269,223.74,78.087 +93270,222.82,79.578 +93271,221.85,81.0817 +93272,220.84,82.5983 +93273,222.47,78.08 +93274,221.51,79.56 +93275,220.51,81.0533 +93276,219.45,82.5601 +93277,221.21,78.074 +93278,220.21,79.542 +93279,219.16,81.0245 +93280,218.07,82.5206 +93281,219.94,78.069 +93282,218.9,79.525 +93283,217.82,80.9953 +93284,216.68,82.48 +93285,218.67,78.065 +93286,217.59,79.508 +93287,216.47,80.9657 +93288,215.29,82.4383 +93289,217.4,78.063 +93290,216.29,79.492 +93291,215.12,80.9358 +93292,213.91,82.3954 +93293,216.13,78.061 +93294,214.98,79.476 +93295,213.78,80.9055 +93296,212.52,82.3513 +93297,214.86,78.061 +93298,213.67,79.46 +93299,212.43,80.8748 +93300,211.14,82.3062 +93301,213.59,78.062 +93302,212.36,79.445 +93303,211.09,80.8437 +93304,209.76,82.2599 +93305,212.31,78.064 +93306,211.05,79.43 +93307,209.74,80.8123 +93308,208.38,82.2125 +93309,211.04,78.067 +93310,209.74,79.415 +93311,208.4,80.7805 +93312,207,82.164 +93313,209.76,78.071 +93314,208.44,79.401 +93315,207.06,80.7483 +93316,205.62,82.1144 +93317,208.49,78.076 +93318,207.13,79.387 +93319,205.71,80.7158 +93320,204.24,82.0638 +93321,207.21,78.082 +93322,205.82,79.373 +93323,204.37,80.683 +93324,202.86,82.0121 +93325,205.93,78.089 +93326,204.51,79.36 +93327,203.03,80.6498 +93328,201.49,81.9594 +93329,204.65,78.097 +93330,203.2,79.347 +93331,201.69,80.6163 +93332,200.11,81.9056 +93333,203.37,78.107 +93334,201.89,79.335 +93335,200.34,80.5825 +93336,198.74,81.8509 +93337,202.09,78.117 +93338,200.58,79.323 +93339,199,80.5483 +93340,197.36,81.7951 +93341,200.81,78.128 +93342,199.26,79.311 +93343,197.66,80.5138 +93344,195.99,81.7384 +93345,199.53,78.14 +93346,197.95,79.299 +93347,196.32,80.479 +93348,194.62,81.6807 +93349,198.24,78.153 +93350,196.64,79.288 +93351,194.98,80.4439 +93352,193.25,81.6221 +93353,196.96,78.167 +93354,195.33,79.277 +93355,193.64,80.4085 +93356,191.89,81.5626 +93357,195.67,78.182 +93358,194.01,79.267 +93359,192.3,80.3729 +93360,190.52,81.5022 +93361,194.38,78.197 +93362,192.7,79.256 +93363,190.96,80.3369 +93364,189.16,81.4409 +93365,193.09,78.214 +93366,191.39,79.246 +93367,189.63,80.3006 +93368,187.79,81.3787 +93369,191.8,78.231 +93370,190.07,79.237 +93371,188.29,80.2641 +93372,186.43,81.3157 +93373,190.51,78.249 +93374,188.76,79.227 +93375,186.95,80.2273 +93376,185.07,81.2519 +93377,189.21,78.268 +93378,187.44,79.218 +93379,185.61,80.1903 +93380,183.71,81.1873 +93381,187.92,78.287 +93382,186.13,79.209 +93383,184.28,80.153 +93384,182.35,81.1219 +93385,186.62,78.308 +93386,184.81,79.2 +93387,182.94,80.1155 +93388,181,81.0558 +93389,185.33,78.329 +93390,183.5,79.192 +93391,181.61,80.0777 +93392,179.64,80.989 +93393,184.03,78.35 +93394,182.18,79.184 +93395,180.27,80.0397 +93396,178.29,80.9214 +93397,182.73,78.373 +93398,180.86,79.175 +93399,178.94,80.0015 +93400,176.94,80.8532 +93401,181.42,78.395 +93402,179.55,79.168 +93403,177.6,79.963 +93404,175.59,80.7842 +93405,180.12,78.419 +93406,178.23,79.16 +93407,176.27,79.924 +93408,174.24,80.7147 +93409,178.82,78.443 +93410,176.91,79.153 +93411,174.94,79.886 +93412,172.89,80.6446 +93413,177.51,78.468 +93414,175.59,79.146 +93415,173.61,79.847 +93416,171.54,80.5738 +93417,176.2,78.493 +93418,174.27,79.138 +93419,172.27,79.808 +93420,170.2,80.5026 +93421,174.89,78.518 +93422,172.95,79.132 +93423,170.94,79.768 +93424,168.86,80.4308 +93425,173.58,78.545 +93426,171.63,79.125 +93427,169.61,79.729 +93428,167.52,80.3584 +93429,172.27,78.571 +93430,170.31,79.118 +93431,168.28,79.689 +93432,166.18,80.2856 +93433,170.96,78.598 +93434,168.99,79.112 +93435,166.95,79.649 +93436,164.84,80.2124 +93437,169.64,78.625 +93438,167.67,79.106 +93439,165.62,79.609 +93440,163.5,80.1387 +93441,168.33,78.653 +93442,166.35,79.1 +93443,164.3,79.569 +93444,162.17,80.0646 +93445,167.01,78.681 +93446,165.02,79.094 +93447,162.97,79.529 +93448,160.84,79.99 +93449,165.69,78.709 +93450,163.7,79.088 +93451,161.64,79.489 +93452,159.5,79.915 +93453,164.37,78.738 +93454,162.38,79.082 +93455,160.31,79.449 +93456,158.17,79.84 +93457,163.05,78.767 +93458,161.05,79.076 +93459,158.99,79.408 +93460,156.85,79.765 +93461,161.72,78.796 +93462,159.73,79.071 +93463,157.66,79.368 +93464,155.52,79.689 +93465,160.4,78.825 +93466,158.4,79.065 +93467,156.34,79.327 +93468,154.2,79.613 +93469,159.07,78.855 +93470,157.08,79.06 +93471,155.01,79.286 +93472,152.87,79.537 +93473,157.74,78.884 +93474,155.75,79.054 +93475,153.69,79.246 +93476,151.55,79.461 +93477,156.41,78.914 +93478,154.42,79.049 +93479,152.37,79.205 +93480,150.23,79.385 +93481,155.08,78.944 +93482,153.1,79.044 +93483,151.04,79.164 +93484,148.91,79.308 +93485,153.75,78.974 +93486,151.77,79.038 +93487,149.72,79.123 +93488,147.6,79.232 +93489,152.42,79.004 +93490,150.44,79.033 +93491,148.4,79.083 +93492,146.28,79.155 +93493,151.08,79.034 +93494,149.11,79.028 +93495,147.08,79.042 +93496,144.97,79.078 +93497,149.74,79.064 +93498,147.78,79.023 +93499,145.76,79.001 +93500,143.66,79.002 +93501,148.4,79.093 +93502,146.45,79.017 +93503,144.44,78.96 +93504,142.35,78.925 +93505,147.06,79.123 +93506,145.12,79.012 +93507,143.12,78.92 +93508,141.04,78.848 +93509,145.72,79.153 +93510,143.79,79.007 +93511,141.8,78.879 +93512,139.73,78.772 +93513,144.38,79.182 +93514,142.46,79.001 +93515,140.48,78.838 +93516,138.43,78.695 +93517,143.03,79.212 +93518,141.13,78.996 +93519,139.16,78.798 +93520,137.12,78.619 +93521,141.69,79.241 +93522,139.8,78.991 +93523,137.84,78.757 +93524,135.82,78.543 +93525,140.34,79.27 +93526,138.47,78.985 +93527,136.53,78.717 +93528,134.52,78.467 +93529,138.99,79.298 +93530,137.13,78.979 +93531,135.21,78.676 +93532,133.22,78.392 +93533,137.64,79.327 +93534,135.8,78.974 +93535,133.9,78.636 +93536,131.93,78.316 +93537,136.29,79.355 +93538,134.47,78.968 +93539,132.58,78.596 +93540,130.63,78.241 +93541,134.94,79.383 +93542,133.13,78.962 +93543,131.27,78.556 +93544,129.34,78.167 +93545,133.58,79.41 +93546,131.8,78.956 +93547,129.95,78.516 +93548,128.04,78.092 +93549,132.23,79.437 +93550,130.46,78.95 +93551,128.64,78.476 +93552,126.75,78.018 +93553,130.87,79.464 +93554,129.13,78.944 +93555,127.33,78.436 +93556,125.46,77.944 +93557,129.51,79.49 +93558,127.79,78.937 +93559,126.01,78.397 +93560,124.17,77.871 +93561,128.15,79.516 +93562,126.45,78.931 +93563,124.7,78.358 +93564,122.89,77.799 +93565,126.79,79.541 +93566,125.12,78.924 +93567,123.39,78.318 +93568,121.6,77.726 +93569,125.42,79.566 +93570,123.78,78.917 +93571,122.08,78.279 +93572,120.32,77.655 +93573,124.06,79.59 +93574,122.44,78.91 +93575,120.77,78.24 +93576,119.03,77.583 +93577,122.7,79.614 +93578,121.1,78.903 +93579,119.46,78.202 +93580,117.75,77.513 +93581,121.33,79.637 +93582,119.76,78.896 +93583,118.15,78.163 +93584,116.47,77.443 +93585,119.96,79.66 +93586,118.42,78.888 +93587,116.84,78.125 +93588,115.19,77.373 +93589,118.59,79.682 +93590,117.09,78.88 +93591,115.53,78.087 +93592,113.92,77.305 +93593,117.22,79.703 +93594,115.75,78.872 +93595,114.22,78.049 +93596,112.64,77.236 +93597,115.85,79.724 +93598,114.41,78.864 +93599,112.91,78.012 +93600,111.36,77.169 +93601,114.48,79.744 +93602,113.07,78.856 +93603,111.6,77.975 +93604,110.09,77.102 +93605,113.1,79.763 +93606,111.72,78.847 +93607,110.3,77.937 +93608,108.82,77.036 +93609,111.73,79.782 +93610,110.38,78.838 +93611,108.99,77.901 +93612,107.55,76.971 +93613,110.35,79.799 +93614,109.04,78.829 +93615,107.68,77.864 +93616,106.28,76.907 +93617,108.98,79.816 +93618,107.7,78.82 +93619,106.38,77.828 +93620,105.01,76.843 +93621,107.6,79.832 +93622,106.36,78.81 +93623,105.07,77.792 +93624,103.74,76.78 +93625,106.22,79.848 +93626,105.01,78.8 +93627,103.77,77.756 +93628,102.47,76.718 +93629,104.84,79.862 +93630,103.67,78.79 +93631,102.46,77.721 +93632,101.2,76.657 +93633,103.46,79.876 +93634,102.33,78.779 +93635,101.16,77.686 +93636,99.939,76.597 +93637,102.08,79.889 +93638,100.99,78.768 +93639,99.852,77.651 +93640,98.674,76.538 +93641,100.69,79.901 +93642,99.642,78.757 +93643,98.548,77.616 +93644,97.411,76.48 +93645,99.311,79.912 +93646,98.298,78.746 +93647,97.244,77.582 +93648,96.148,76.422 +93649,97.927,79.922 +93650,96.954,78.734 +93651,95.941,77.548 +93652,94.886,76.366 +93653,96.542,79.931 +93654,95.609,78.722 +93655,94.637,77.515 +93656,93.625,76.311 +93657,95.156,79.939 +93658,94.264,78.71 +93659,93.335,77.482 +93660,92.365,76.256 +93661,93.769,79.946 +93662,92.919,78.697 +93663,92.032,77.449 +93664,91.106,76.203 +93665,92.382,79.953 +93666,91.574,78.684 +93667,90.73,77.416 +93668,89.847,76.151 +93669,90.994,79.958 +93670,90.229,78.671 +93671,89.428,77.384 +93672,88.589,76.099 +93673,89.605,79.962 +93674,88.883,78.657 +93675,88.126,77.352 +93676,87.331,76.049 +93677,88.216,79.965 +93678,87.538,78.643 +93679,86.824,77.321 +93680,86.074,76 +93681,86.826,79.968 +93682,86.192,78.629 +93683,85.523,77.29 +93684,84.818,75.952 +93685,85.435,79.969 +93686,84.846,78.614 +93687,84.222,77.259 +93688,83.562,75.905 +93689,84.044,79.969 +93690,83.499,78.599 +93691,82.921,77.229 +93692,82.307,75.859 +93693,82.652,79.968 +93694,82.153,78.584 +93695,81.62,77.199 +93696,81.052,75.815 +93697,81.26,79.965 +93698,80.807,78.568 +93699,80.319,77.169 +93700,79.798,75.771 +93701,79.868,79.962 +93702,79.46,78.552 +93703,79.019,77.14 +93704,78.544,75.729 +93705,78.475,79.958 +93706,78.113,78.535 +93707,77.719,77.111 +93708,77.291,75.688 +93709,77.082,79.952 +93710,76.766,78.518 +93711,76.419,77.083 +93712,76.037,75.648 +93713,75.688,79.946 +93714,75.42,78.501 +93715,75.118,77.055 +93716,74.784,75.609 +93717,74.294,79.938 +93718,74.073,78.483 +93719,73.819,77.027 +93720,73.532,75.572 +93721,72.9,79.929 +93722,72.726,78.465 +93723,72.519,77 +93724,72.279,75.535 +93725,71.506,79.919 +93726,71.378,78.447 +93727,71.219,76.973 +93728,71.027,75.5 +93729,70.111,79.908 +93730,70.031,78.428 +93731,69.919,76.947 +93732,69.775,75.466 +93733,68.716,79.896 +93734,68.684,78.409 +93735,68.62,76.921 +93736,68.523,75.434 +93737,67.321,79.882 +93738,67.337,78.389 +93739,67.32,76.896 +93740,67.271,75.402 +93741,65.926,79.867 +93742,65.99,78.369 +93743,66.021,76.87 +93744,66.019,75.372 +93745,64.532,79.851 +93746,64.643,78.349 +93747,64.721,76.846 +93748,64.767,75.343 +93749,63.137,79.834 +93750,63.296,78.328 +93751,63.422,76.821 +93752,63.515,75.315 +93753,61.742,79.816 +93754,61.948,78.307 +93755,62.122,76.797 +93756,62.263,75.289 +93757,60.347,79.797 +93758,60.601,78.285 +93759,60.823,76.774 +93760,61.011,75.263 +93761,58.952,79.776 +93762,59.254,78.263 +93763,59.523,76.751 +93764,59.759,75.239 +93765,57.557,79.754 +93766,57.908,78.241 +93767,58.224,76.728 +93768,58.507,75.216 +93769,56.163,79.731 +93770,56.561,78.218 +93771,56.924,76.706 +93772,57.254,75.195 +93773,54.768,79.707 +93774,55.214,78.195 +93775,55.624,76.684 +93776,56.001,75.175 +93777,53.374,79.682 +93778,53.867,78.172 +93779,54.325,76.663 +93780,54.748,75.156 +93781,51.981,79.655 +93782,52.521,78.148 +93783,53.025,76.642 +93784,53.495,75.138 +93785,50.587,79.627 +93786,51.175,78.123 +93787,51.725,76.621 +93788,52.241,75.121 +93789,49.194,79.599 +93790,49.828,78.099 +93791,50.425,76.601 +93792,50.987,75.106 +93793,47.801,79.568 +93794,48.482,78.074 +93795,49.125,76.581 +93796,49.732,75.092 +93797,46.409,79.537 +93798,47.136,78.048 +93799,47.825,76.562 +93800,48.477,75.079 +93801,45.017,79.505 +93802,45.791,78.022 +93803,46.524,76.543 +93804,47.221,75.067 +93805,43.626,79.471 +93806,44.445,77.996 +93807,45.224,76.524 +93808,45.965,75.056 +93809,42.235,79.436 +93810,43.1,77.969 +93811,43.923,76.506 +93812,44.708,75.047 +93813,40.845,79.4 +93814,41.755,77.942 +93815,42.622,76.488 +93816,43.451,75.039 +93817,39.456,79.363 +93818,40.41,77.915 +93819,41.321,76.471 +93820,42.193,75.032 +93821,38.067,79.325 +93822,39.065,77.887 +93823,40.02,76.454 +93824,40.934,75.026 +93825,36.678,79.286 +93826,37.721,77.859 +93827,38.718,76.437 +93828,39.675,75.022 +93829,35.291,79.245 +93830,36.377,77.83 +93831,37.417,76.421 +93832,38.415,75.018 +93833,33.904,79.204 +93834,35.033,77.801 +93835,36.115,76.405 +93836,37.154,75.016 +93837,32.518,79.161 +93838,33.689,77.772 +93839,34.812,76.39 +93840,35.893,75.015 +93841,31.133,79.117 +93842,32.346,77.742 +93843,33.51,76.375 +93844,34.63,75.015 +93845,29.749,79.073 +93846,31.003,77.712 +93847,32.207,76.36 +93848,33.367,75.016 +93849,28.365,79.027 +93850,29.66,77.682 +93851,30.904,76.345 +93852,32.103,75.018 +93853,26.983,78.98 +93854,28.318,77.651 +93855,29.601,76.332 +93856,30.838,75.021 +93857,25.601,78.932 +93858,26.976,77.62 +93859,28.298,76.318 +93860,29.572,75.025 +93861,24.22,78.883 +93862,25.634,77.589 +93863,26.994,76.305 +93864,28.305,75.03 +93865,22.841,78.833 +93866,24.293,77.557 +93867,25.69,76.292 +93868,27.037,75.037 +93869,21.462,78.781 +93870,22.952,77.525 +93871,24.385,76.279 +93872,25.768,75.044 +93873,20.085,78.729 +93874,21.612,77.492 +93875,23.08,76.267 +93876,24.498,75.052 +93877,18.708,78.676 +93878,20.272,77.46 +93879,21.775,76.255 +93880,23.227,75.062 +93881,17.333,78.622 +93882,18.932,77.427 +93883,20.47,76.243 +93884,21.955,75.072 +93885,15.959,78.567 +93886,17.592,77.393 +93887,19.164,76.232 +93888,20.682,75.083 +93889,14.586,78.512 +93890,16.253,77.36 +93891,17.858,76.221 +93892,19.407,75.095 +93893,13.215,78.455 +93894,14.915,77.326 +93895,16.551,76.211 +93896,18.132,75.108 +93897,11.844,78.397 +93898,13.577,77.292 +93899,15.244,76.2 +93900,16.855,75.122 +93901,10.475,78.339 +93902,12.239,77.257 +93903,13.937,76.19 +93904,15.577,75.137 +93905,9.1072,78.279 +93906,10.902,77.222 +93907,12.629,76.18 +93908,14.297,75.153 +93909,7.7407,78.219 +93910,9.5652,77.187 +93911,11.321,76.171 +93912,13.017,75.169 +93913,6.3755,78.158 +93914,8.2289,77.152 +93915,10.012,76.162 +93916,11.735,75.186 +93917,5.0118,78.096 +93918,6.893,77.116 +93919,8.703,76.153 +93920,10.452,75.204 +93921,3.6494,78.034 +93922,5.5577,77.081 +93923,7.3935,76.144 +93924,9.1673,75.223 +93925,2.2885,77.97 +93926,4.2228,77.044 +93927,6.0836,76.136 +93928,7.8815,75.242 +93929,0.92897,77.906 +93930,2.8884,77.008 +93931,4.7733,76.127 +93932,6.5943,75.263 +93933,359.57,77.841 +93934,1.5545,76.972 +93935,3.4625,76.119 +93936,5.3057,75.284 +93937,358.21,77.776 +93938,0.22116,76.935 +93939,2.1513,76.112 +93940,4.0158,75.305 +93941,356.86,77.71 +93942,358.89,76.898 +93943,0.83959,76.104 +93944,2.7244,75.327 +93945,355.51,77.643 +93946,357.56,76.861 +93947,359.53,76.097 +93948,1.4316,75.35 +93949,354.15,77.576 +93950,356.22,76.823 +93951,358.21,76.09 +93952,0.13737,75.374 +93953,352.8,77.508 +93954,354.89,76.786 +93955,356.9,76.083 +93956,358.84,75.397 +93957,351.45,77.439 +93958,353.56,76.748 +93959,355.59,76.076 +93960,357.54,75.422 +93961,350.11,77.37 +93962,352.23,76.71 +93963,354.27,76.07 +93964,356.25,75.447 +93965,348.76,77.3 +93966,350.9,76.672 +93967,352.96,76.063 +93968,354.95,75.472 +93969,347.42,77.23 +93970,349.57,76.634 +93971,351.64,76.057 +93972,353.64,75.498 +93973,346.08,77.16 +93974,348.24,76.596 +93975,350.33,76.051 +93976,352.34,75.525 +93977,344.73,77.089 +93978,346.92,76.557 +93979,349.01,76.045 +93980,351.04,75.552 +93981,343.4,77.017 +93982,345.59,76.518 +93983,347.7,76.04 +93984,349.73,75.579 +93985,342.06,76.945 +93986,344.26,76.48 +93987,346.38,76.034 +93988,348.42,75.606 +93989,340.72,76.873 +93990,342.94,76.441 +93991,345.06,76.028 +93992,347.11,75.634 +93993,339.39,76.801 +93994,341.61,76.402 +93995,343.74,76.023 +93996,345.8,75.662 +93997,338.06,76.728 +93998,340.28,76.363 +93999,342.43,76.018 +94000,344.49,75.691 +94001,336.73,76.655 +94002,338.96,76.324 +94003,341.11,76.012 +94004,343.18,75.719 +94005,335.4,76.581 +94006,337.64,76.284 +94007,339.79,76.007 +94008,341.86,75.748 +94009,334.07,76.508 +94010,336.31,76.245 +94011,338.47,76.002 +94012,340.54,75.777 +94013,332.74,76.434 +94014,334.99,76.206 +94015,337.15,75.997 +94016,339.22,75.807 +94017,331.42,76.36 +94018,333.67,76.166 +94019,335.82,75.992 +94020,337.9,75.836 +94021,330.1,76.286 +94022,332.35,76.127 +94023,334.5,75.987 +94024,336.58,75.866 +94025,328.78,76.212 +94026,331.02,76.087 +94027,333.18,75.983 +94028,335.26,75.895 +94029,327.46,76.137 +94030,329.7,76.048 +94031,331.86,75.978 +94032,333.93,75.925 +94033,326.14,76.063 +94034,328.38,76.008 +94035,330.53,75.973 +94036,332.61,75.954 +94037,324.83,75.988 +94038,327.06,75.969 +94039,329.21,75.968 +94040,331.28,75.984 +94041,323.51,75.914 +94042,325.74,75.929 +94043,327.89,75.963 +94044,329.95,76.014 +94045,322.2,75.84 +94046,324.43,75.89 +94047,326.56,75.959 +94048,328.62,76.043 +94049,320.89,75.765 +94050,323.11,75.85 +94051,325.24,75.954 +94052,327.29,76.073 +94053,319.59,75.691 +94054,321.79,75.811 +94055,323.91,75.949 +94056,325.95,76.102 +94057,318.28,75.617 +94058,320.47,75.772 +94059,322.58,75.944 +94060,324.62,76.131 +94061,316.97,75.543 +94062,319.16,75.732 +94063,321.26,75.939 +94064,323.28,76.161 +94065,315.67,75.469 +94066,317.84,75.693 +94067,319.93,75.934 +94068,321.94,76.189 +94069,314.37,75.395 +94070,316.53,75.654 +94071,318.6,75.929 +94072,320.6,76.218 +94073,313.07,75.322 +94074,315.21,75.615 +94075,317.27,75.924 +94076,319.26,76.247 +94077,311.77,75.249 +94078,313.9,75.576 +94079,315.94,75.919 +94080,317.91,76.275 +94081,310.47,75.176 +94082,312.59,75.537 +94083,314.61,75.913 +94084,316.57,76.303 +94085,309.18,75.103 +94086,311.27,75.498 +94087,313.28,75.908 +94088,315.22,76.33 +94089,307.89,75.031 +94090,309.96,75.459 +94091,311.95,75.902 +94092,313.87,76.357 +94093,306.6,74.959 +94094,308.65,75.421 +94095,310.62,75.897 +94096,312.52,76.384 +94097,305.3,74.888 +94098,307.34,75.382 +94099,309.29,75.891 +94100,311.17,76.411 +94101,304.02,74.816 +94102,306.03,75.344 +94103,307.96,75.885 +94104,309.82,76.437 +94105,302.73,74.746 +94106,304.72,75.306 +94107,306.63,75.879 +94108,308.47,76.462 +94109,301.44,74.676 +94110,303.41,75.268 +94111,305.3,75.873 +94112,307.11,76.487 +94113,300.16,74.606 +94114,302.1,75.23 +94115,303.96,75.866 +94116,305.75,76.512 +94117,298.88,74.537 +94118,300.79,75.193 +94119,302.63,75.86 +94120,304.4,76.536 +94121,297.6,74.468 +94122,299.48,75.155 +94123,301.29,75.853 +94124,303.04,76.559 +94125,296.32,74.4 +94126,298.18,75.118 +94127,299.96,75.846 +94128,301.68,76.582 +94129,295.04,74.333 +94130,296.87,75.081 +94131,298.62,75.839 +94132,300.31,76.605 +94133,293.76,74.266 +94134,295.56,75.044 +94135,297.29,75.832 +94136,298.95,76.626 +94137,292.49,74.2 +94138,294.26,75.007 +94139,295.95,75.824 +94140,297.58,76.647 +94141,291.21,74.134 +94142,292.95,74.971 +94143,294.62,75.816 +94144,296.22,76.668 +94145,289.94,74.069 +94146,291.65,74.935 +94147,293.28,75.808 +94148,294.85,76.687 +94149,288.67,74.005 +94150,290.34,74.899 +94151,291.94,75.8 +94152,293.48,76.706 +94153,287.4,73.942 +94154,289.04,74.863 +94155,290.61,75.792 +94156,292.11,76.725 +94157,286.13,73.879 +94158,287.73,74.828 +94159,289.27,75.783 +94160,290.74,76.742 +94161,284.86,73.817 +94162,286.43,74.793 +94163,287.93,75.774 +94164,289.37,76.759 +94165,283.6,73.756 +94166,285.13,74.758 +94167,286.59,75.765 +94168,288,76.775 +94169,282.33,73.696 +94170,283.82,74.724 +94171,285.25,75.756 +94172,286.62,76.79 +94173,281.07,73.637 +94174,282.52,74.689 +94175,283.91,75.746 +94176,285.25,76.804 +94177,279.81,73.578 +94178,281.22,74.655 +94179,282.57,75.736 +94180,283.87,76.818 +94181,278.54,73.521 +94182,279.92,74.622 +94183,281.23,75.725 +94184,282.49,76.831 +94185,277.28,73.464 +94186,278.62,74.588 +94187,279.89,75.715 +94188,281.11,76.842 +94189,276.02,73.409 +94190,277.32,74.555 +94191,278.55,75.704 +94192,279.73,76.853 +94193,274.77,73.354 +94194,276.02,74.522 +94195,277.21,75.693 +94196,278.35,76.863 +94197,273.51,73.3 +94198,274.72,74.49 +94199,275.87,75.681 +94200,276.97,76.872 +94201,272.25,73.247 +94202,273.42,74.458 +94203,274.53,75.669 +94204,275.59,76.88 +94205,271,73.195 +94206,272.12,74.426 +94207,273.19,75.657 +94208,274.21,76.887 +94209,269.74,73.145 +94210,270.82,74.395 +94211,271.84,75.645 +94212,272.82,76.893 +94213,268.49,73.095 +94214,269.52,74.364 +94215,270.5,75.632 +94216,271.44,76.898 +94217,267.23,73.046 +94218,268.22,74.333 +94219,269.16,75.619 +94220,270.05,76.903 +94221,265.98,72.999 +94222,266.92,74.302 +94223,267.82,75.605 +94224,268.67,76.906 +94225,264.73,72.952 +94226,265.62,74.272 +94227,266.47,75.592 +94228,267.28,76.908 +94229,263.48,72.907 +94230,264.33,74.243 +94231,265.13,75.577 +94232,265.89,76.909 +94233,262.23,72.862 +94234,263.03,74.213 +94235,263.79,75.563 +94236,264.5,76.909 +94237,260.98,72.819 +94238,261.73,74.184 +94239,262.44,75.548 +94240,263.11,76.908 +94241,259.73,72.777 +94242,260.43,74.156 +94243,261.1,75.533 +94244,261.72,76.905 +94245,258.48,72.736 +94246,259.14,74.128 +94247,259.75,75.517 +94248,260.33,76.902 +94249,257.23,72.696 +94250,257.84,74.1 +94251,258.41,75.501 +94252,258.94,76.898 +94253,255.98,72.658 +94254,256.54,74.073 +94255,257.07,75.485 +94256,257.55,76.892 +94257,254.73,72.62 +94258,255.25,74.046 +94259,255.72,75.468 +94260,256.16,76.886 +94261,253.49,72.584 +94262,253.95,74.019 +94263,254.38,75.451 +94264,254.77,76.878 +94265,252.24,72.549 +94266,252.65,73.993 +94267,253.03,75.433 +94268,253.37,76.869 +94269,250.99,72.515 +94270,251.36,73.967 +94271,251.69,75.415 +94272,251.98,76.859 +94273,249.75,72.482 +94274,250.06,73.941 +94275,250.34,75.397 +94276,250.59,76.848 +94277,248.5,72.45 +94278,248.77,73.916 +94279,249,75.379 +94280,249.19,76.836 +94281,247.25,72.42 +94282,247.47,73.892 +94283,247.65,75.36 +94284,247.8,76.822 +94285,246.01,72.391 +94286,246.17,73.868 +94287,246.31,75.34 +94288,246.41,76.807 +94289,244.76,72.363 +94290,244.88,73.844 +94291,244.96,75.32 +94292,245.01,76.792 +94293,243.52,72.337 +94294,243.58,73.82 +94295,243.62,75.3 +94296,243.62,76.775 +94297,242.27,72.311 +94298,242.29,73.797 +94299,242.27,75.28 +94300,242.22,76.757 +94301,241.03,72.287 +94302,240.99,73.775 +94303,240.93,75.259 +94304,240.83,76.737 +94305,239.78,72.264 +94306,239.7,73.752 +94307,239.58,75.237 +94308,239.43,76.717 +94309,238.53,72.242 +94310,238.4,73.731 +94311,238.24,75.215 +94312,238.04,76.695 +94313,237.29,72.222 +94314,237.11,73.709 +94315,236.89,75.193 +94316,236.65,76.673 +94317,236.04,72.202 +94318,235.81,73.688 +94319,235.55,75.171 +94320,235.25,76.649 +94321,234.8,72.184 +94322,234.52,73.668 +94323,234.2,75.148 +94324,233.86,76.623 +94325,233.55,72.167 +94326,233.22,73.647 +94327,232.86,75.124 +94328,232.46,76.597 +94329,232.3,72.152 +94330,231.92,73.628 +94331,231.51,75.101 +94332,231.07,76.57 +94333,231.06,72.137 +94334,230.63,73.608 +94335,230.17,75.077 +94336,229.67,76.541 +94337,229.81,72.124 +94338,229.33,73.589 +94339,228.82,75.052 +94340,228.28,76.511 +94341,228.56,72.112 +94342,228.04,73.571 +94343,227.48,75.027 +94344,226.89,76.48 +94345,227.31,72.101 +94346,226.74,73.552 +94347,226.13,75.002 +94348,225.5,76.448 +94349,226.06,72.091 +94350,225.44,73.535 +94351,224.79,74.976 +94352,224.1,76.415 +94353,224.82,72.083 +94354,224.15,73.517 +94355,223.45,74.95 +94356,222.71,76.381 +94357,223.57,72.076 +94358,222.85,73.5 +94359,222.1,74.924 +94360,221.32,76.345 +94361,222.32,72.069 +94362,221.55,73.484 +94363,220.76,74.897 +94364,219.93,76.308 +94365,221.06,72.064 +94366,220.26,73.467 +94367,219.42,74.87 +94368,218.54,76.271 +94369,219.81,72.061 +94370,218.96,73.452 +94371,218.07,74.842 +94372,217.15,76.232 +94373,218.56,72.058 +94374,217.66,73.436 +94375,216.73,74.814 +94376,215.76,76.192 +94377,217.31,72.056 +94378,216.37,73.421 +94379,215.39,74.786 +94380,214.37,76.151 +94381,216.05,72.056 +94382,215.07,73.406 +94383,214.05,74.757 +94384,212.98,76.108 +94385,214.8,72.057 +94386,213.77,73.392 +94387,212.7,74.728 +94388,211.59,76.065 +94389,213.55,72.058 +94390,212.47,73.378 +94391,211.36,74.699 +94392,210.21,76.021 +94393,212.29,72.061 +94394,211.17,73.364 +94395,210.02,74.669 +94396,208.82,75.975 +94397,211.03,72.065 +94398,209.88,73.351 +94399,208.68,74.639 +94400,207.44,75.929 +94401,209.77,72.07 +94402,208.58,73.338 +94403,207.34,74.609 +94404,206.05,75.882 +94405,208.52,72.076 +94406,207.28,73.325 +94407,206,74.578 +94408,204.67,75.833 +94409,207.26,72.083 +94410,205.98,73.313 +94411,204.66,74.547 +94412,203.29,75.784 +94413,206,72.091 +94414,204.68,73.301 +94415,203.32,74.516 +94416,201.9,75.733 +94417,204.73,72.1 +94418,203.38,73.29 +94419,201.98,74.484 +94420,200.52,75.682 +94421,203.47,72.11 +94422,202.08,73.278 +94423,200.64,74.452 +94424,199.14,75.63 +94425,202.21,72.12 +94426,200.78,73.267 +94427,199.3,74.42 +94428,197.77,75.576 +94429,200.94,72.132 +94430,199.47,73.257 +94431,197.96,74.387 +94432,196.39,75.522 +94433,199.68,72.145 +94434,198.17,73.246 +94435,196.62,74.354 +94436,195.01,75.467 +94437,198.41,72.158 +94438,196.87,73.236 +94439,195.28,74.321 +94440,193.64,75.411 +94441,197.14,72.173 +94442,195.57,73.227 +94443,193.95,74.287 +94444,192.26,75.354 +94445,195.87,72.188 +94446,194.27,73.217 +94447,192.61,74.253 +94448,190.89,75.296 +94449,194.6,72.204 +94450,192.96,73.208 +94451,191.27,74.219 +94452,189.52,75.238 +94453,193.33,72.221 +94454,191.66,73.199 +94455,189.94,74.185 +94456,188.15,75.178 +94457,192.05,72.239 +94458,190.36,73.191 +94459,188.6,74.15 +94460,186.78,75.118 +94461,190.78,72.258 +94462,189.05,73.182 +94463,187.27,74.115 +94464,185.41,75.057 +94465,189.5,72.277 +94466,187.75,73.174 +94467,185.93,74.08 +94468,184.05,74.995 +94469,188.23,72.297 +94470,186.44,73.166 +94471,184.6,74.045 +94472,182.68,74.933 +94473,186.95,72.317 +94474,185.14,73.159 +94475,183.26,74.009 +94476,181.32,74.87 +94477,185.67,72.339 +94478,183.83,73.151 +94479,181.93,73.973 +94480,179.96,74.806 +94481,184.38,72.361 +94482,182.52,73.144 +94483,180.6,73.937 +94484,178.6,74.741 +94485,183.1,72.383 +94486,181.22,73.137 +94487,179.26,73.901 +94488,177.24,74.676 +94489,181.82,72.406 +94490,179.91,73.13 +94491,177.93,73.865 +94492,175.88,74.61 +94493,180.53,72.43 +94494,178.6,73.124 +94495,176.6,73.828 +94496,174.52,74.544 +94497,179.24,72.455 +94498,177.29,73.117 +94499,175.27,73.791 +94500,173.17,74.477 +94501,177.96,72.479 +94502,175.98,73.111 +94503,173.94,73.754 +94504,171.82,74.409 +94505,176.66,72.505 +94506,174.67,73.105 +94507,172.61,73.717 +94508,170.47,74.341 +94509,175.37,72.531 +94510,173.36,73.099 +94511,171.28,73.68 +94512,169.12,74.273 +94513,174.08,72.557 +94514,172.05,73.093 +94515,169.95,73.642 +94516,167.77,74.203 +94517,172.78,72.584 +94518,170.74,73.088 +94519,168.63,73.604 +94520,166.42,74.134 +94521,171.49,72.611 +94522,169.43,73.082 +94523,167.3,73.567 +94524,165.08,74.064 +94525,170.19,72.638 +94526,168.12,73.077 +94527,165.97,73.529 +94528,163.73,73.994 +94529,168.89,72.666 +94530,166.81,73.072 +94531,164.64,73.491 +94532,162.39,73.923 +94533,167.59,72.694 +94534,165.49,73.067 +94535,163.32,73.452 +94536,161.05,73.852 +94537,166.29,72.722 +94538,164.18,73.062 +94539,161.99,73.414 +94540,159.72,73.78 +94541,164.98,72.751 +94542,162.87,73.057 +94543,160.67,73.376 +94544,158.38,73.709 +94545,163.68,72.78 +94546,161.55,73.052 +94547,159.35,73.337 +94548,157.04,73.637 +94549,162.37,72.809 +94550,160.24,73.047 +94551,158.02,73.299 +94552,155.71,73.564 +94553,161.06,72.838 +94554,158.92,73.043 +94555,156.7,73.26 +94556,154.38,73.492 +94557,159.75,72.868 +94558,157.6,73.038 +94559,155.38,73.221 +94560,153.05,73.419 +94561,158.43,72.898 +94562,156.29,73.034 +94563,154.05,73.183 +94564,151.72,73.346 +94565,157.12,72.927 +94566,154.97,73.029 +94567,152.73,73.144 +94568,150.4,73.273 +94569,155.8,72.957 +94570,153.65,73.025 +94571,151.41,73.105 +94572,149.07,73.2 +94573,154.49,72.987 +94574,152.33,73.02 +94575,150.09,73.066 +94576,147.75,73.127 +94577,153.17,73.017 +94578,151.01,73.016 +94579,148.77,73.028 +94580,146.43,73.054 +94581,151.85,73.046 +94582,149.7,73.011 +94583,147.46,72.989 +94584,145.11,72.98 +94585,150.53,73.076 +94586,148.38,73.007 +94587,146.14,72.95 +94588,143.8,72.907 +94589,149.2,73.106 +94590,147.05,73.002 +94591,144.82,72.911 +94592,142.48,72.834 +94593,147.88,73.135 +94594,145.73,72.998 +94595,143.5,72.872 +94596,141.17,72.761 +94597,146.55,73.165 +94598,144.41,72.993 +94599,142.19,72.834 +94600,139.86,72.688 +94601,145.22,73.194 +94602,143.09,72.989 +94603,140.87,72.795 +94604,138.55,72.615 +94605,143.89,73.223 +94606,141.77,72.984 +94607,139.56,72.756 +94608,137.24,72.542 +94609,142.56,73.252 +94610,140.44,72.98 +94611,138.24,72.718 +94612,135.94,72.469 +94613,141.22,73.281 +94614,139.12,72.975 +94615,136.93,72.679 +94616,134.63,72.396 +94617,139.89,73.309 +94618,137.8,72.97 +94619,135.61,72.641 +94620,133.33,72.324 +94621,138.55,73.337 +94622,136.47,72.965 +94623,134.3,72.603 +94624,132.03,72.252 +94625,137.21,73.365 +94626,135.15,72.96 +94627,132.99,72.564 +94628,130.73,72.18 +94629,135.87,73.393 +94630,133.82,72.955 +94631,131.68,72.526 +94632,129.43,72.109 +94633,134.53,73.42 +94634,132.49,72.95 +94635,130.37,72.488 +94636,128.14,72.038 +94637,133.19,73.447 +94638,131.17,72.944 +94639,129.05,72.45 +94640,126.84,71.967 +94641,131.84,73.473 +94642,129.84,72.939 +94643,127.74,72.412 +94644,125.55,71.897 +94645,130.5,73.499 +94646,128.51,72.933 +94647,126.44,72.375 +94648,124.26,71.827 +94649,129.15,73.524 +94650,127.18,72.927 +94651,125.13,72.337 +94652,122.97,71.757 +94653,127.8,73.549 +94654,125.85,72.921 +94655,123.82,72.3 +94656,121.69,71.688 +94657,126.45,73.574 +94658,124.52,72.915 +94659,122.51,72.263 +94660,120.4,71.62 +94661,125.1,73.598 +94662,123.19,72.909 +94663,121.2,72.226 +94664,119.12,71.551 +94665,123.74,73.621 +94666,121.86,72.902 +94667,119.9,72.189 +94668,117.84,71.484 +94669,122.39,73.644 +94670,120.53,72.896 +94671,118.59,72.153 +94672,116.56,71.417 +94673,121.03,73.666 +94674,119.2,72.889 +94675,117.28,72.116 +94676,115.28,71.351 +94677,119.67,73.688 +94678,117.87,72.882 +94679,115.98,72.08 +94680,114,71.285 +94681,118.31,73.708 +94682,116.54,72.874 +94683,114.68,72.044 +94684,112.72,71.22 +94685,116.95,73.729 +94686,115.2,72.867 +94687,113.37,72.008 +94688,111.45,71.155 +94689,115.59,73.748 +94690,113.87,72.859 +94691,112.07,71.973 +94692,110.18,71.092 +94693,114.23,73.767 +94694,112.54,72.851 +94695,110.76,71.937 +94696,108.91,71.029 +94697,112.86,73.785 +94698,111.2,72.843 +94699,109.46,71.902 +94700,107.64,70.966 +94701,111.5,73.802 +94702,109.87,72.834 +94703,108.16,71.868 +94704,106.37,70.905 +94705,110.13,73.819 +94706,108.53,72.825 +94707,106.86,71.833 +94708,105.1,70.844 +94709,108.76,73.834 +94710,107.2,72.816 +94711,105.56,71.799 +94712,103.83,70.784 +94713,107.39,73.849 +94714,105.86,72.807 +94715,104.26,71.765 +94716,102.57,70.725 +94717,106.02,73.863 +94718,104.52,72.797 +94719,102.96,71.731 +94720,101.31,70.667 +94721,104.65,73.877 +94722,103.19,72.788 +94723,101.66,71.698 +94724,100.05,70.609 +94725,103.27,73.889 +94726,101.85,72.777 +94727,100.36,71.665 +94728,98.785,70.553 +94729,101.9,73.9 +94730,100.51,72.767 +94731,99.057,71.632 +94732,97.526,70.497 +94733,100.52,73.911 +94734,99.175,72.756 +94735,97.758,71.599 +94736,96.268,70.442 +94737,99.148,73.92 +94738,97.837,72.745 +94739,96.46,71.567 +94740,95.011,70.389 +94741,97.77,73.929 +94742,96.498,72.734 +94743,95.162,71.535 +94744,93.755,70.336 +94745,96.391,73.937 +94746,95.159,72.722 +94747,93.864,71.504 +94748,92.5,70.284 +94749,95.012,73.943 +94750,93.82,72.71 +94751,92.567,71.472 +94752,91.246,70.233 +94753,93.631,73.949 +94754,92.481,72.697 +94755,91.27,71.442 +94756,89.994,70.183 +94757,92.249,73.954 +94758,91.141,72.685 +94759,89.974,71.411 +94760,88.742,70.135 +94761,90.867,73.957 +94762,89.801,72.672 +94763,88.677,71.381 +94764,87.491,70.087 +94765,89.484,73.96 +94766,88.461,72.658 +94767,87.381,71.351 +94768,86.241,70.04 +94769,88.099,73.962 +94770,87.12,72.644 +94771,86.086,71.321 +94772,84.992,69.995 +94773,86.714,73.962 +94774,85.779,72.63 +94775,84.791,71.292 +94776,83.744,69.95 +94777,85.328,73.962 +94778,84.438,72.616 +94779,83.495,71.264 +94780,82.496,69.907 +94781,83.942,73.96 +94782,83.097,72.601 +94783,82.201,71.235 +94784,81.25,69.864 +94785,82.555,73.958 +94786,81.755,72.586 +94787,80.906,71.207 +94788,80.004,69.823 +94789,81.167,73.954 +94790,80.414,72.57 +94791,79.612,71.179 +94792,78.758,69.783 +94793,79.778,73.949 +94794,79.072,72.554 +94795,78.318,71.152 +94796,77.514,69.744 +94797,78.389,73.943 +94798,77.73,72.538 +94799,77.024,71.125 +94800,76.269,69.706 +94801,76.999,73.936 +94802,76.387,72.521 +94803,75.73,71.099 +94804,75.026,69.67 +94805,75.609,73.928 +94806,75.045,72.504 +94807,74.437,71.073 +94808,73.783,69.634 +94809,74.218,73.918 +94810,73.702,72.487 +94811,73.144,71.047 +94812,72.54,69.6 +94813,72.826,73.908 +94814,72.359,72.469 +94815,71.851,71.021 +94816,71.298,69.567 +94817,71.434,73.896 +94818,71.016,72.451 +94819,70.558,70.996 +94820,70.056,69.535 +94821,70.042,73.883 +94822,69.673,72.432 +94823,69.265,70.972 +94824,68.815,69.505 +94825,68.649,73.869 +94826,68.33,72.413 +94827,67.972,70.948 +94828,67.574,69.475 +94829,67.256,73.854 +94830,66.987,72.393 +94831,66.68,70.924 +94832,66.333,69.447 +94833,65.863,73.838 +94834,65.643,72.374 +94835,65.387,70.9 +94836,65.093,69.42 +94837,64.469,73.82 +94838,64.3,72.353 +94839,64.095,70.877 +94840,63.852,69.394 +94841,63.076,73.802 +94842,62.957,72.333 +94843,62.803,70.855 +94844,62.612,69.369 +94845,61.682,73.782 +94846,61.613,72.312 +94847,61.51,70.833 +94848,61.372,69.346 +94849,60.287,73.761 +94850,60.27,72.29 +94851,60.218,70.811 +94852,60.132,69.324 +94853,58.893,73.739 +94854,58.926,72.269 +94855,58.926,70.789 +94856,58.892,69.303 +94857,57.499,73.715 +94858,57.583,72.246 +94859,57.634,70.768 +94860,57.652,69.283 +94861,56.104,73.691 +94862,56.239,72.224 +94863,56.342,70.748 +94864,56.412,69.264 +94865,54.71,73.665 +94866,54.895,72.201 +94867,55.05,70.728 +94868,55.172,69.247 +94869,53.315,73.638 +94870,53.552,72.177 +94871,53.757,70.708 +94872,53.931,69.231 +94873,51.921,73.61 +94874,52.209,72.153 +94875,52.465,70.688 +94876,52.691,69.216 +94877,50.527,73.581 +94878,50.865,72.129 +94879,51.173,70.669 +94880,51.45,69.202 +94881,49.132,73.55 +94882,49.522,72.105 +94883,49.881,70.651 +94884,50.209,69.19 +94885,47.738,73.519 +94886,48.179,72.08 +94887,48.588,70.633 +94888,48.968,69.178 +94889,46.345,73.486 +94890,46.836,72.054 +94891,47.296,70.615 +94892,47.726,69.168 +94893,44.951,73.452 +94894,45.493,72.029 +94895,46.003,70.597 +94896,46.484,69.159 +94897,43.558,73.417 +94898,44.15,72.002 +94899,44.711,70.58 +94900,45.242,69.152 +94901,42.165,73.381 +94902,42.807,71.976 +94903,43.418,70.564 +94904,43.999,69.145 +94905,40.772,73.344 +94906,41.464,71.949 +94907,42.125,70.547 +94908,42.756,69.14 +94909,39.38,73.305 +94910,40.122,71.922 +94911,40.832,70.531 +94912,41.512,69.135 +94913,37.988,73.266 +94914,38.78,71.894 +94915,39.539,70.516 +94916,40.267,69.132 +94917,36.597,73.225 +94918,37.438,71.866 +94919,38.245,70.501 +94920,39.022,69.13 +94921,35.206,73.183 +94922,36.096,71.838 +94923,36.952,70.486 +94924,37.777,69.129 +94925,33.816,73.141 +94926,34.754,71.809 +94927,35.658,70.471 +94928,36.53,69.129 +94929,32.427,73.097 +94930,33.413,71.78 +94931,34.364,70.457 +94932,35.283,69.131 +94933,31.038,73.052 +94934,32.072,71.75 +94935,33.07,70.444 +94936,34.036,69.133 +94937,29.649,73.006 +94938,30.731,71.72 +94939,31.775,70.43 +94940,32.787,69.137 +94941,28.262,72.959 +94942,29.39,71.69 +94943,30.481,70.417 +94944,31.538,69.141 +94945,26.875,72.911 +94946,28.05,71.66 +94947,29.186,70.405 +94948,30.287,69.147 +94949,25.489,72.862 +94950,26.709,71.629 +94951,27.89,70.392 +94952,29.036,69.153 +94953,24.104,72.812 +94954,25.37,71.598 +94955,26.595,70.38 +94956,27.784,69.161 +94957,22.719,72.761 +94958,24.03,71.566 +94959,25.299,70.369 +94960,26.531,69.169 +94961,21.336,72.709 +94962,22.691,71.534 +94963,24.003,70.357 +94964,25.277,69.179 +94965,19.953,72.656 +94966,21.352,71.502 +94967,22.707,70.346 +94968,24.022,69.189 +94969,18.572,72.602 +94970,20.014,71.469 +94971,21.41,70.335 +94972,22.766,69.201 +94973,17.191,72.547 +94974,18.675,71.437 +94975,20.113,70.325 +94976,21.509,69.213 +94977,15.811,72.491 +94978,17.338,71.403 +94979,18.815,70.315 +94980,20.251,69.227 +94981,14.433,72.435 +94982,16,71.37 +94983,17.518,70.305 +94984,18.991,69.241 +94985,13.055,72.377 +94986,14.663,71.336 +94987,16.22,70.296 +94988,17.731,69.256 +94989,11.679,72.319 +94990,13.327,71.302 +94991,14.921,70.286 +94992,16.469,69.272 +94993,10.304,72.26 +94994,11.99,71.268 +94995,13.622,70.277 +94996,15.206,69.288 +94997,8.9296,72.2 +94998,10.654,71.233 +94999,12.323,70.269 +95000,13.942,69.306 +95001,7.5568,72.139 +95002,9.3191,71.199 +95003,11.023,70.26 +95004,12.676,69.324 +95005,6.1852,72.077 +95006,7.9842,71.164 +95007,9.723,70.252 +95008,11.41,69.343 +95009,4.815,72.015 +95010,6.6497,71.128 +95011,8.4225,70.244 +95012,10.142,69.363 +95013,3.446,71.952 +95014,5.3156,71.093 +95015,7.1215,70.236 +95016,8.8723,69.383 +95017,2.0785,71.888 +95018,3.9821,71.057 +95019,5.8201,70.229 +95020,7.6015,69.404 +95021,0.71223,71.824 +95022,2.649,71.021 +95023,4.5183,70.221 +95024,6.3293,69.426 +95025,359.35,71.759 +95026,1.3163,70.985 +95027,3.216,70.214 +95028,5.0558,69.448 +95029,357.98,71.693 +95030,359.98,70.948 +95031,1.9132,70.207 +95032,3.7808,69.471 +95033,356.62,71.627 +95034,358.65,70.911 +95035,0.60999,70.201 +95036,2.5044,69.495 +95037,355.26,71.56 +95038,357.32,70.875 +95039,359.31,70.194 +95040,1.2265,69.519 +95041,353.9,71.492 +95042,355.99,70.837 +95043,358,70.188 +95044,359.95,69.544 +95045,352.55,71.424 +95046,354.66,70.8 +95047,356.7,70.182 +95048,358.67,69.569 +95049,351.19,71.355 +95050,353.33,70.763 +95051,355.39,70.176 +95052,357.38,69.595 +95053,349.84,71.286 +95054,352,70.725 +95055,354.09,70.17 +95056,356.1,69.621 +95057,348.48,71.217 +95058,350.67,70.687 +95059,352.78,70.164 +95060,354.81,69.648 +95061,347.13,71.147 +95062,349.35,70.649 +95063,351.47,70.159 +95064,353.53,69.675 +95065,345.78,71.076 +95066,348.02,70.611 +95067,350.17,70.153 +95068,352.24,69.702 +95069,344.43,71.005 +95070,346.69,70.573 +95071,348.86,70.148 +95072,350.95,69.73 +95073,343.09,70.934 +95074,345.37,70.535 +95075,347.55,70.143 +95076,349.66,69.758 +95077,341.74,70.862 +95078,344.04,70.497 +95079,346.24,70.138 +95080,348.36,69.787 +95081,340.4,70.791 +95082,342.71,70.458 +95083,344.93,70.133 +95084,347.07,69.815 +95085,339.06,70.718 +95086,341.39,70.419 +95087,343.62,70.128 +95088,345.77,69.844 +95089,337.72,70.646 +95090,340.07,70.381 +95091,342.31,70.123 +95092,344.47,69.873 +95093,336.38,70.573 +95094,338.74,70.342 +95095,341,70.119 +95096,343.17,69.903 +95097,335.05,70.5 +95098,337.42,70.303 +95099,339.69,70.114 +95100,341.87,69.932 +95101,333.71,70.427 +95102,336.1,70.264 +95103,338.38,70.109 +95104,340.57,69.962 +95105,332.38,70.354 +95106,334.78,70.225 +95107,337.06,70.105 +95108,339.26,69.992 +95109,331.05,70.28 +95110,333.46,70.186 +95111,335.75,70.1 +95112,337.96,70.022 +95113,329.72,70.207 +95114,332.13,70.147 +95115,334.44,70.096 +95116,336.65,70.051 +95117,328.4,70.133 +95118,330.81,70.108 +95119,333.12,70.091 +95120,335.34,70.081 +95121,327.07,70.06 +95122,329.5,70.069 +95123,331.81,70.086 +95124,334.03,70.111 +95125,325.75,69.986 +95126,328.18,70.03 +95127,330.49,70.082 +95128,332.71,70.141 +95129,324.43,69.912 +95130,326.86,69.991 +95131,329.18,70.077 +95132,331.4,70.171 +95133,323.11,69.839 +95134,325.54,69.952 +95135,327.86,70.073 +95136,330.08,70.201 +95137,321.79,69.765 +95138,324.23,69.913 +95139,326.54,70.068 +95140,328.76,70.23 +95141,320.48,69.692 +95142,322.91,69.874 +95143,325.23,70.063 +95144,327.44,70.26 +95145,319.16,69.618 +95146,321.59,69.835 +95147,323.91,70.059 +95148,326.12,70.289 +95149,317.85,69.545 +95150,320.28,69.796 +95151,322.59,70.054 +95152,324.8,70.318 +95153,316.54,69.472 +95154,318.96,69.757 +95155,321.27,70.049 +95156,323.47,70.347 +95157,315.24,69.399 +95158,317.65,69.718 +95159,319.95,70.044 +95160,322.15,70.376 +95161,313.93,69.327 +95162,316.34,69.679 +95163,318.63,70.039 +95164,320.82,70.404 +95165,312.62,69.254 +95166,315.03,69.641 +95167,317.31,70.034 +95168,319.49,70.432 +95169,311.32,69.182 +95170,313.71,69.602 +95171,315.99,70.029 +95172,318.16,70.46 +95173,310.02,69.111 +95174,312.4,69.564 +95175,314.66,70.023 +95176,316.82,70.487 +95177,308.72,69.039 +95178,311.09,69.526 +95179,313.34,70.018 +95180,315.49,70.514 +95181,307.43,68.968 +95182,309.78,69.487 +95183,312.02,70.012 +95184,314.15,70.541 +95185,306.13,68.898 +95186,308.47,69.449 +95187,310.69,70.006 +95188,312.81,70.567 +95189,304.84,68.827 +95190,307.16,69.411 +95191,309.37,70 +95192,311.47,70.593 +95193,303.55,68.758 +95194,305.86,69.374 +95195,308.05,69.994 +95196,310.13,70.618 +95197,302.26,68.688 +95198,304.55,69.336 +95199,306.72,69.988 +95200,308.79,70.643 +95201,300.97,68.619 +95202,303.24,69.299 +95203,305.39,69.982 +95204,307.44,70.667 +95205,299.68,68.551 +95206,301.93,69.261 +95207,304.07,69.975 +95208,306.1,70.691 +95209,298.4,68.483 +95210,300.63,69.224 +95211,302.74,69.968 +95212,304.75,70.714 +95213,297.12,68.416 +95214,299.32,69.187 +95215,301.41,69.961 +95216,303.4,70.736 +95217,295.84,68.35 +95218,298.02,69.151 +95219,300.08,69.954 +95220,302.05,70.758 +95221,294.56,68.284 +95222,296.71,69.114 +95223,298.76,69.946 +95224,300.7,70.779 +95225,293.28,68.218 +95226,295.41,69.078 +95227,297.43,69.939 +95228,299.34,70.799 +95229,292.01,68.154 +95230,294.11,69.042 +95231,296.1,69.931 +95232,297.99,70.819 +95233,290.73,68.09 +95234,292.8,69.006 +95235,294.77,69.923 +95236,296.63,70.838 +95237,289.46,68.027 +95238,291.5,68.97 +95239,293.44,69.914 +95240,295.27,70.857 +95241,288.19,67.964 +95242,290.2,68.935 +95243,292.11,69.905 +95244,293.91,70.874 +95245,286.92,67.903 +95246,288.9,68.9 +95247,290.77,69.897 +95248,292.55,70.891 +95249,285.65,67.842 +95250,287.6,68.865 +95251,289.44,69.887 +95252,291.19,70.907 +95253,284.38,67.782 +95254,286.3,68.83 +95255,288.11,69.878 +95256,289.83,70.922 +95257,283.12,67.722 +95258,285,68.796 +95259,286.78,69.868 +95260,288.46,70.936 +95261,281.86,67.664 +95262,283.7,68.762 +95263,285.44,69.858 +95264,287.1,70.95 +95265,280.59,67.607 +95266,282.4,68.728 +95267,284.11,69.848 +95268,285.73,70.962 +95269,279.33,67.55 +95270,281.1,68.695 +95271,282.78,69.837 +95272,284.36,70.974 +95273,278.07,67.494 +95274,279.81,68.662 +95275,281.44,69.826 +95276,282.99,70.984 +95277,276.82,67.439 +95278,278.51,68.629 +95279,280.11,69.815 +95280,281.62,70.994 +95281,275.56,67.386 +95282,277.21,68.597 +95283,278.77,69.803 +95284,280.25,71.003 +95285,274.31,67.333 +95286,275.92,68.564 +95287,277.44,69.791 +95288,278.87,71.011 +95289,273.05,67.281 +95290,274.62,68.532 +95291,276.1,69.779 +95292,277.5,71.018 +95293,271.8,67.23 +95294,273.33,68.501 +95295,274.76,69.766 +95296,276.12,71.024 +95297,270.55,67.18 +95298,272.03,68.47 +95299,273.43,69.753 +95300,274.75,71.028 +95301,269.3,67.131 +95302,270.74,68.439 +95303,272.09,69.74 +95304,273.37,71.032 +95305,268.05,67.084 +95306,269.44,68.408 +95307,270.75,69.726 +95308,271.99,71.035 +95309,266.8,67.037 +95310,268.15,68.378 +95311,269.41,69.712 +95312,270.61,71.037 +95313,265.55,66.991 +95314,266.85,68.348 +95315,268.08,69.698 +95316,269.23,71.037 +95317,264.31,66.947 +95318,265.56,68.319 +95319,266.74,69.683 +95320,267.85,71.037 +95321,263.06,66.903 +95322,264.27,68.29 +95323,265.4,69.668 +95324,266.46,71.036 +95325,261.82,66.861 +95326,262.97,68.261 +95327,264.06,69.652 +95328,265.08,71.033 +95329,260.57,66.82 +95330,261.68,68.233 +95331,262.72,69.636 +95332,263.7,71.029 +95333,259.33,66.78 +95334,260.39,68.205 +95335,261.38,69.62 +95336,262.31,71.024 +95337,258.09,66.741 +95338,259.1,68.177 +95339,260.04,69.603 +95340,260.92,71.018 +95341,256.85,66.703 +95342,257.81,68.15 +95343,258.7,69.586 +95344,259.54,71.011 +95345,255.61,66.667 +95346,256.52,68.123 +95347,257.36,69.569 +95348,258.15,71.003 +95349,254.37,66.632 +95350,255.22,68.096 +95351,256.02,69.551 +95352,256.76,70.994 +95353,253.13,66.597 +95354,253.93,68.07 +95355,254.68,69.533 +95356,255.37,70.983 +95357,251.89,66.564 +95358,252.64,68.045 +95359,253.34,69.514 +95360,253.98,70.971 +95361,250.65,66.533 +95362,251.35,68.019 +95363,252,69.495 +95364,252.59,70.958 +95365,249.41,66.502 +95366,250.06,67.994 +95367,250.66,69.476 +95368,251.2,70.944 +95369,248.18,66.473 +95370,248.77,67.97 +95371,249.32,69.456 +95372,249.81,70.929 +95373,246.94,66.445 +95374,247.48,67.946 +95375,247.97,69.435 +95376,248.42,70.912 +95377,245.7,66.418 +95378,246.19,67.922 +95379,246.63,69.415 +95380,247.03,70.895 +95381,244.47,66.392 +95382,244.9,67.899 +95383,245.29,69.394 +95384,245.64,70.876 +95385,243.23,66.368 +95386,243.61,67.876 +95387,243.95,69.372 +95388,244.24,70.856 +95389,242,66.344 +95390,242.32,67.853 +95391,242.61,69.35 +95392,242.85,70.834 +95393,240.76,66.322 +95394,241.03,67.831 +95395,241.27,69.328 +95396,241.46,70.812 +95397,239.53,66.302 +95398,239.75,67.809 +95399,239.92,69.305 +95400,240.06,70.788 +95401,238.29,66.282 +95402,238.46,67.788 +95403,238.58,69.282 +95404,238.67,70.763 +95405,237.06,66.264 +95406,237.17,67.767 +95407,237.24,69.259 +95408,237.28,70.737 +95409,235.82,66.247 +95410,235.88,67.746 +95411,235.9,69.235 +95412,235.88,70.71 +95413,234.59,66.231 +95414,234.59,67.726 +95415,234.56,69.21 +95416,234.49,70.682 +95417,233.35,66.216 +95418,233.3,67.707 +95419,233.21,69.186 +95420,233.09,70.652 +95421,232.12,66.203 +95422,232.01,67.687 +95423,231.87,69.16 +95424,231.7,70.621 +95425,230.88,66.19 +95426,230.72,67.668 +95427,230.53,69.135 +95428,230.31,70.589 +95429,229.65,66.179 +95430,229.43,67.65 +95431,229.19,69.109 +95432,228.91,70.556 +95433,228.41,66.169 +95434,228.14,67.631 +95435,227.85,69.083 +95436,227.52,70.521 +95437,227.18,66.161 +95438,226.85,67.614 +95439,226.5,69.056 +95440,226.12,70.486 +95441,225.94,66.153 +95442,225.57,67.596 +95443,225.16,69.029 +95444,224.73,70.449 +95445,224.7,66.147 +95446,224.28,67.579 +95447,223.82,69.001 +95448,223.34,70.411 +95449,223.47,66.142 +95450,222.99,67.563 +95451,222.48,68.973 +95452,221.94,70.372 +95453,222.23,66.138 +95454,221.7,67.546 +95455,221.14,68.945 +95456,220.55,70.332 +95457,220.99,66.135 +95458,220.41,67.53 +95459,219.8,68.916 +95460,219.16,70.291 +95461,219.75,66.133 +95462,219.12,67.515 +95463,218.45,68.887 +95464,217.76,70.248 +95465,218.52,66.133 +95466,217.83,67.5 +95467,217.11,68.858 +95468,216.37,70.205 +95469,217.28,66.133 +95470,216.54,67.485 +95471,215.77,68.828 +95472,214.98,70.16 +95473,216.04,66.135 +95474,215.25,67.47 +95475,214.43,68.797 +95476,213.59,70.114 +95477,214.8,66.138 +95478,213.96,67.456 +95479,213.09,68.767 +95480,212.2,70.067 +95481,213.55,66.141 +95482,212.67,67.443 +95483,211.75,68.736 +95484,210.81,70.02 +95485,212.31,66.146 +95486,211.38,67.429 +95487,210.41,68.705 +95488,209.42,69.971 +95489,211.07,66.152 +95490,210.08,67.416 +95491,209.07,68.673 +95492,208.03,69.921 +95493,209.83,66.159 +95494,208.79,67.403 +95495,207.73,68.641 +95496,206.64,69.87 +95497,208.58,66.167 +95498,207.5,67.391 +95499,206.39,68.608 +95500,205.25,69.818 +95501,207.34,66.176 +95502,206.21,67.379 +95503,205.05,68.576 +95504,203.86,69.764 +95505,206.09,66.186 +95506,204.92,67.367 +95507,203.71,68.543 +95508,202.48,69.71 +95509,204.84,66.197 +95510,203.63,67.356 +95511,202.38,68.509 +95512,201.09,69.655 +95513,203.59,66.208 +95514,202.33,67.345 +95515,201.04,68.476 +95516,199.71,69.6 +95517,202.34,66.221 +95518,201.04,67.334 +95519,199.7,68.442 +95520,198.32,69.543 +95521,201.09,66.235 +95522,199.75,67.323 +95523,198.36,68.407 +95524,196.94,69.485 +95525,199.84,66.249 +95526,198.45,67.313 +95527,197.03,68.373 +95528,195.56,69.426 +95529,198.59,66.265 +95530,197.16,67.303 +95531,195.69,68.338 +95532,194.18,69.367 +95533,197.34,66.281 +95534,195.86,67.293 +95535,194.35,68.302 +95536,192.8,69.306 +95537,196.08,66.298 +95538,194.57,67.284 +95539,193.02,68.267 +95540,191.42,69.245 +95541,194.82,66.316 +95542,193.27,67.275 +95543,191.68,68.231 +95544,190.04,69.183 +95545,193.57,66.334 +95546,191.98,67.266 +95547,190.35,68.195 +95548,188.67,69.12 +95549,192.31,66.354 +95550,190.68,67.257 +95551,189.01,68.159 +95552,187.29,69.056 +95553,191.05,66.374 +95554,189.39,67.249 +95555,187.68,68.122 +95556,185.92,68.992 +95557,189.79,66.394 +95558,188.09,67.241 +95559,186.34,68.085 +95560,184.54,68.927 +95561,188.52,66.416 +95562,186.79,67.233 +95563,185.01,68.048 +95564,183.17,68.861 +95565,187.26,66.438 +95566,185.49,67.225 +95567,183.68,68.011 +95568,181.8,68.794 +95569,186,66.461 +95570,184.2,67.217 +95571,182.34,67.973 +95572,180.43,68.727 +95573,184.73,66.484 +95574,182.9,67.21 +95575,181.01,67.935 +95576,179.06,68.659 +95577,183.46,66.508 +95578,181.6,67.203 +95579,179.68,67.897 +95580,177.7,68.59 +95581,182.19,66.533 +95582,180.3,67.196 +95583,178.35,67.859 +95584,176.33,68.521 +95585,180.92,66.558 +95586,179,67.189 +95587,177.02,67.821 +95588,174.97,68.452 +95589,179.65,66.583 +95590,177.7,67.182 +95591,175.69,67.782 +95592,173.61,68.381 +95593,178.37,66.609 +95594,176.4,67.176 +95595,174.36,67.743 +95596,172.25,68.311 +95597,177.1,66.636 +95598,175.1,67.17 +95599,173.03,67.704 +95600,170.89,68.239 +95601,175.82,66.662 +95602,173.8,67.163 +95603,171.7,67.665 +95604,169.53,68.167 +95605,174.54,66.69 +95606,172.49,67.157 +95607,170.37,67.626 +95608,168.17,68.095 +95609,173.26,66.717 +95610,171.19,67.151 +95611,169.05,67.587 +95612,166.82,68.023 +95613,171.98,66.745 +95614,169.89,67.146 +95615,167.72,67.547 +95616,165.47,67.95 +95617,170.69,66.774 +95618,168.58,67.14 +95619,166.39,67.507 +95620,164.12,67.876 +95621,169.41,66.802 +95622,167.28,67.134 +95623,165.07,67.468 +95624,162.77,67.802 +95625,168.12,66.831 +95626,165.97,67.129 +95627,163.74,67.428 +95628,161.42,67.728 +95629,166.83,66.86 +95630,164.67,67.123 +95631,162.42,67.388 +95632,160.07,67.654 +95633,165.54,66.89 +95634,163.36,67.118 +95635,161.09,67.348 +95636,158.73,67.579 +95637,164.25,66.919 +95638,162.06,67.112 +95639,159.77,67.308 +95640,157.39,67.504 +95641,162.96,66.949 +95642,160.75,67.107 +95643,158.45,67.267 +95644,156.05,67.429 +95645,161.66,66.979 +95646,159.44,67.102 +95647,157.13,67.227 +95648,154.71,67.354 +95649,160.37,67.008 +95650,158.13,67.097 +95651,155.8,67.187 +95652,153.37,67.278 +95653,159.07,67.038 +95654,156.82,67.091 +95655,154.48,67.146 +95656,152.03,67.203 +95657,157.77,67.068 +95658,155.51,67.086 +95659,153.16,67.106 +95660,150.7,67.127 +95661,156.47,67.098 +95662,154.2,67.081 +95663,151.84,67.065 +95664,149.37,67.052 +95665,155.16,67.128 +95666,152.89,67.076 +95667,150.52,67.025 +95668,148.04,66.976 +95669,153.86,67.158 +95670,151.58,67.07 +95671,149.21,66.984 +95672,146.71,66.9 +95673,152.55,67.188 +95674,150.27,67.065 +95675,147.89,66.944 +95676,145.39,66.824 +95677,151.24,67.218 +95678,148.96,67.06 +95679,146.57,66.904 +95680,144.06,66.748 +95681,149.93,67.247 +95682,147.64,67.055 +95683,145.25,66.863 +95684,142.74,66.673 +95685,148.62,67.277 +95686,146.33,67.049 +95687,143.94,66.823 +95688,141.42,66.597 +95689,147.3,67.306 +95690,145.02,67.044 +95691,142.62,66.782 +95692,140.1,66.522 +95693,145.99,67.335 +95694,143.7,67.038 +95695,141.31,66.742 +95696,138.79,66.447 +95697,144.67,67.364 +95698,142.39,67.033 +95699,139.99,66.702 +95700,137.47,66.372 +95701,143.35,67.392 +95702,141.07,67.027 +95703,138.68,66.662 +95704,136.16,66.297 +95705,142.03,67.42 +95706,139.76,67.021 +95707,137.37,66.621 +95708,134.85,66.222 +95709,140.71,67.448 +95710,138.44,67.015 +95711,136.06,66.581 +95712,133.54,66.148 +95713,139.38,67.476 +95714,137.12,67.009 +95715,134.74,66.541 +95716,132.23,66.074 +95717,138.05,67.503 +95718,135.8,67.003 +95719,133.43,66.502 +95720,130.93,66 +95721,136.73,67.53 +95722,134.48,66.996 +95723,132.12,66.462 +95724,129.63,65.927 +95725,135.4,67.556 +95726,133.16,66.99 +95727,130.81,66.422 +95728,128.33,65.854 +95729,134.07,67.582 +95730,131.84,66.983 +95731,129.5,66.383 +95732,127.03,65.781 +95733,132.73,67.607 +95734,130.52,66.976 +95735,128.2,66.344 +95736,125.73,65.709 +95737,131.4,67.632 +95738,129.2,66.969 +95739,126.89,66.304 +95740,124.44,65.637 +95741,130.06,67.656 +95742,127.88,66.962 +95743,125.58,66.265 +95744,123.14,65.566 +95745,128.72,67.68 +95746,126.56,66.955 +95747,124.28,66.227 +95748,121.85,65.495 +95749,127.38,67.703 +95750,125.24,66.947 +95751,122.97,66.188 +95752,120.56,65.425 +95753,126.04,67.725 +95754,123.91,66.94 +95755,121.66,66.149 +95756,119.28,65.356 +95757,124.7,67.747 +95758,122.59,66.932 +95759,120.36,66.111 +95760,117.99,65.287 +95761,123.36,67.768 +95762,121.27,66.923 +95763,119.06,66.073 +95764,116.71,65.219 +95765,122.01,67.789 +95766,119.94,66.915 +95767,117.75,66.035 +95768,115.42,65.151 +95769,120.66,67.809 +95770,118.62,66.906 +95771,116.45,65.998 +95772,114.14,65.084 +95773,119.31,67.828 +95774,117.29,66.897 +95775,115.15,65.96 +95776,112.87,65.018 +95777,117.96,67.846 +95778,115.96,66.888 +95779,113.85,65.923 +95780,111.59,64.952 +95781,116.61,67.864 +95782,114.64,66.878 +95783,112.54,65.886 +95784,110.32,64.887 +95785,115.26,67.881 +95786,113.31,66.869 +95787,111.24,65.849 +95788,109.04,64.823 +95789,113.9,67.896 +95790,111.98,66.859 +95791,109.94,65.813 +95792,107.77,64.76 +95793,112.55,67.912 +95794,110.65,66.848 +95795,108.64,65.777 +95796,106.5,64.697 +95797,111.19,67.926 +95798,109.32,66.838 +95799,107.35,65.741 +95800,105.23,64.636 +95801,109.83,67.939 +95802,108,66.827 +95803,106.05,65.705 +95804,103.97,64.575 +95805,108.47,67.952 +95806,106.67,66.816 +95807,104.75,65.67 +95808,102.7,64.515 +95809,107.11,67.963 +95810,105.34,66.804 +95811,103.45,65.635 +95812,101.44,64.456 +95813,105.74,67.974 +95814,104,66.792 +95815,102.15,65.6 +95816,100.18,64.398 +95817,104.38,67.983 +95818,102.67,66.78 +95819,100.86,65.565 +95820,98.92,64.341 +95821,103.01,67.992 +95822,101.34,66.768 +95823,99.563,65.531 +95824,97.662,64.285 +95825,101.65,68 +95826,100.01,66.755 +95827,98.267,65.498 +95828,96.405,64.23 +95829,100.28,68.007 +95830,98.677,66.741 +95831,96.973,65.464 +95832,95.15,64.175 +95833,98.908,68.012 +95834,97.344,66.728 +95835,95.678,65.431 +95836,93.896,64.122 +95837,97.537,68.017 +95838,96.011,66.714 +95839,94.384,65.398 +95840,92.644,64.07 +95841,96.165,68.02 +95842,94.677,66.7 +95843,93.091,65.366 +95844,91.393,64.019 +95845,94.791,68.023 +95846,93.343,66.685 +95847,91.798,65.333 +95848,90.143,63.969 +95849,93.417,68.024 +95850,92.009,66.67 +95851,90.505,65.302 +95852,88.895,63.92 +95853,92.041,68.025 +95854,90.674,66.655 +95855,89.213,65.27 +95856,87.647,63.872 +95857,90.665,68.024 +95858,89.339,66.639 +95859,87.921,65.239 +95860,86.401,63.825 +95861,89.287,68.022 +95862,88.003,66.623 +95863,86.63,65.208 +95864,85.156,63.78 +95865,87.909,68.019 +95866,86.668,66.606 +95867,85.339,65.178 +95868,83.913,63.735 +95869,86.529,68.015 +95870,85.331,66.589 +95871,84.049,65.148 +95872,82.67,63.692 +95873,85.148,68.009 +95874,83.995,66.572 +95875,82.758,65.118 +95876,81.429,63.65 +95877,83.767,68.003 +95878,82.658,66.554 +95879,81.468,65.089 +95880,80.188,63.609 +95881,82.385,67.995 +95882,81.321,66.536 +95883,80.179,65.06 +95884,78.948,63.569 +95885,81.001,67.986 +95886,79.984,66.517 +95887,78.89,65.032 +95888,77.71,63.531 +95889,79.617,67.976 +95890,78.646,66.498 +95891,77.601,65.004 +95892,76.472,63.493 +95893,78.232,67.965 +95894,77.308,66.479 +95895,76.312,64.976 +95896,75.235,63.457 +95897,76.847,67.953 +95898,75.97,66.459 +95899,75.024,64.949 +95900,73.999,63.422 +95901,75.46,67.939 +95902,74.632,66.439 +95903,73.736,64.922 +95904,72.764,63.388 +95905,74.073,67.924 +95906,73.294,66.419 +95907,72.448,64.895 +95908,71.529,63.356 +95909,72.686,67.908 +95910,71.955,66.397 +95911,71.16,64.869 +95912,70.295,63.324 +95913,71.297,67.891 +95914,70.616,66.376 +95915,69.873,64.844 +95916,69.062,63.294 +95917,69.908,67.872 +95918,69.277,66.354 +95919,68.586,64.818 +95920,67.829,63.265 +95921,68.519,67.852 +95922,67.937,66.332 +95923,67.299,64.793 +95924,66.597,63.238 +95925,67.129,67.831 +95926,66.598,66.309 +95927,66.012,64.769 +95928,65.366,63.212 +95929,65.738,67.809 +95930,65.258,66.286 +95931,64.725,64.745 +95932,64.135,63.187 +95933,64.347,67.786 +95934,63.919,66.262 +95935,63.439,64.721 +95936,62.904,63.163 +95937,62.956,67.761 +95938,62.579,66.238 +95939,62.153,64.698 +95940,61.673,63.14 +95941,61.564,67.735 +95942,61.239,66.214 +95943,60.867,64.675 +95944,60.443,63.119 +95945,60.172,67.708 +95946,59.899,66.189 +95947,59.581,64.652 +95948,59.213,63.099 +95949,58.779,67.679 +95950,58.559,66.164 +95951,58.295,64.63 +95952,57.984,63.08 +95953,57.386,67.65 +95954,57.219,66.138 +95955,57.009,64.609 +95956,56.754,63.063 +95957,55.993,67.619 +95958,55.878,66.112 +95959,55.723,64.587 +95960,55.525,63.046 +95961,54.6,67.586 +95962,54.538,66.085 +95963,54.438,64.567 +95964,54.296,63.031 +95965,53.206,67.553 +95966,53.198,66.058 +95967,53.152,64.546 +95968,53.067,63.018 +95969,51.813,67.518 +95970,51.857,66.031 +95971,51.866,64.526 +95972,51.838,63.005 +95973,50.419,67.483 +95974,50.517,66.003 +95975,50.581,64.506 +95976,50.609,62.994 +95977,49.026,67.445 +95978,49.177,65.975 +95979,49.295,64.487 +95980,49.379,62.984 +95981,47.632,67.407 +95982,47.837,65.946 +95983,48.01,64.468 +95984,48.15,62.975 +95985,46.238,67.368 +95986,46.496,65.917 +95987,46.724,64.45 +95988,46.92,62.967 +95989,44.844,67.327 +95990,45.156,65.888 +95991,45.438,64.432 +95992,45.69,62.961 +95993,43.451,67.285 +95994,43.816,65.858 +95995,44.153,64.414 +95996,44.46,62.955 +95997,42.057,67.242 +95998,42.476,65.827 +95999,42.867,64.397 +96000,43.23,62.951 +96001,40.664,67.198 +96002,41.136,65.797 +96003,41.581,64.38 +96004,41.999,62.948 +96005,39.271,67.153 +96006,39.796,65.766 +96007,40.295,64.363 +96008,40.768,62.947 +96009,37.878,67.106 +96010,38.457,65.734 +96011,39.009,64.347 +96012,39.536,62.946 +96013,36.486,67.058 +96014,37.117,65.702 +96015,37.723,64.331 +96016,38.304,62.947 +96017,35.094,67.01 +96018,35.778,65.67 +96019,36.437,64.316 +96020,37.072,62.948 +96021,33.702,66.96 +96022,34.438,65.637 +96023,35.15,64.301 +96024,35.839,62.951 +96025,32.31,66.909 +96026,33.099,65.604 +96027,33.864,64.286 +96028,34.605,62.955 +96029,30.919,66.857 +96030,31.76,65.571 +96031,32.577,64.271 +96032,33.37,62.96 +96033,29.529,66.803 +96034,30.422,65.537 +96035,31.29,64.257 +96036,32.135,62.966 +96037,28.139,66.749 +96038,29.083,65.503 +96039,30.003,64.244 +96040,30.899,62.973 +96041,26.75,66.694 +96042,27.745,65.468 +96043,28.716,64.23 +96044,29.663,62.981 +96045,25.361,66.637 +96046,26.407,65.433 +96047,27.428,64.217 +96048,28.425,62.99 +96049,23.973,66.58 +96050,25.069,65.398 +96051,26.14,64.204 +96052,27.187,63 +96053,22.585,66.522 +96054,23.732,65.363 +96055,24.852,64.192 +96056,25.948,63.011 +96057,21.198,66.462 +96058,22.395,65.327 +96059,23.564,64.18 +96060,24.708,63.023 +96061,19.812,66.402 +96062,21.058,65.291 +96063,22.275,64.168 +96064,23.466,63.036 +96065,18.427,66.341 +96066,19.721,65.254 +96067,20.986,64.156 +96068,22.224,63.05 +96069,17.042,66.279 +96070,18.385,65.217 +96071,19.697,64.145 +96072,20.981,63.065 +96073,15.659,66.216 +96074,17.049,65.18 +96075,18.408,64.134 +96076,19.737,63.08 +96077,14.276,66.152 +96078,15.714,65.142 +96079,17.118,64.124 +96080,18.492,63.097 +96081,12.894,66.087 +96082,14.378,65.105 +96083,15.828,64.113 +96084,17.246,63.114 +96085,11.514,66.021 +96086,13.044,65.067 +96087,14.537,64.103 +96088,15.998,63.132 +96089,10.134,65.955 +96090,11.709,65.028 +96091,13.246,64.093 +96092,14.749,63.151 +96093,8.7552,65.887 +96094,10.375,64.99 +96095,11.955,64.084 +96096,13.499,63.171 +96097,7.3776,65.819 +96098,9.0413,64.951 +96099,10.663,64.074 +96100,12.248,63.191 +96101,6.0011,65.75 +96102,7.708,64.912 +96103,9.3711,64.065 +96104,10.996,63.212 +96105,4.6258,65.681 +96106,6.3752,64.872 +96107,8.0787,64.056 +96108,9.7418,63.234 +96109,3.2516,65.61 +96110,5.0427,64.832 +96111,6.7858,64.047 +96112,8.4867,63.257 +96113,1.8787,65.539 +96114,3.7108,64.793 +96115,5.4926,64.039 +96116,7.2302,63.28 +96117,0.50701,65.468 +96118,2.3793,64.752 +96119,4.1989,64.03 +96120,5.9723,63.303 +96121,359.14,65.395 +96122,1.0482,64.712 +96123,2.9047,64.022 +96124,4.713,63.328 +96125,357.77,65.322 +96126,359.72,64.671 +96127,1.6101,64.014 +96128,3.4522,63.353 +96129,356.4,65.249 +96130,358.39,64.631 +96131,0.31509,64.006 +96132,2.19,63.378 +96133,355.03,65.175 +96134,357.06,64.59 +96135,359.02,63.999 +96136,0.92636,63.404 +96137,353.67,65.1 +96138,355.73,64.549 +96139,357.72,63.991 +96140,359.66,63.43 +96141,352.31,65.025 +96142,354.4,64.507 +96143,356.43,63.984 +96144,358.39,63.457 +96145,350.94,64.949 +96146,353.07,64.466 +96147,355.13,63.977 +96148,357.13,63.484 +96149,349.58,64.873 +96150,351.74,64.424 +96151,353.83,63.97 +96152,355.86,63.512 +96153,348.22,64.797 +96154,350.42,64.382 +96155,352.53,63.963 +96156,354.58,63.54 +96157,346.87,64.72 +96158,349.09,64.34 +96159,351.24,63.956 +96160,353.31,63.568 +96161,345.51,64.642 +96162,347.77,64.298 +96163,349.94,63.949 +96164,352.04,63.597 +96165,344.16,64.565 +96166,346.44,64.256 +96167,348.64,63.943 +96168,350.76,63.626 +96169,342.8,64.487 +96170,345.12,64.214 +96171,347.34,63.936 +96172,349.48,63.655 +96173,341.45,64.408 +96174,343.79,64.171 +96175,346.04,63.93 +96176,348.2,63.685 +96177,340.1,64.33 +96178,342.47,64.129 +96179,344.74,63.923 +96180,346.92,63.714 +96181,338.76,64.251 +96182,341.14,64.086 +96183,343.43,63.917 +96184,345.64,63.744 +96185,337.41,64.172 +96186,339.82,64.043 +96187,342.13,63.91 +96188,344.35,63.774 +96189,336.07,64.093 +96190,338.5,64.001 +96191,340.83,63.904 +96192,343.07,63.804 +96193,334.73,64.013 +96194,337.18,63.958 +96195,339.53,63.898 +96196,341.78,63.834 +96197,333.39,63.934 +96198,335.86,63.915 +96199,338.22,63.891 +96200,340.49,63.864 +96201,332.05,63.854 +96202,334.54,63.872 +96203,336.92,63.885 +96204,339.2,63.895 +96205,330.71,63.774 +96206,333.22,63.829 +96207,335.61,63.879 +96208,337.91,63.925 +96209,329.38,63.695 +96210,331.9,63.786 +96211,334.31,63.873 +96212,336.61,63.955 +96213,328.04,63.615 +96214,330.58,63.743 +96215,333,63.866 +96216,335.31,63.985 +96217,326.71,63.535 +96218,329.27,63.7 +96219,331.69,63.86 +96220,334.02,64.015 +96221,325.38,63.456 +96222,327.95,63.657 +96223,330.39,63.853 +96224,332.72,64.045 +96225,324.06,63.376 +96226,326.63,63.615 +96227,329.08,63.847 +96228,331.41,64.074 +96229,322.73,63.297 +96230,325.32,63.572 +96231,327.77,63.84 +96232,330.11,64.104 +96233,321.41,63.217 +96234,324,63.529 +96235,326.46,63.834 +96236,328.8,64.133 +96237,320.09,63.138 +96238,322.69,63.486 +96239,325.15,63.827 +96240,327.5,64.162 +96241,318.77,63.059 +96242,321.38,63.443 +96243,323.84,63.82 +96244,326.19,64.191 +96245,317.45,62.981 +96246,320.06,63.401 +96247,322.53,63.813 +96248,324.88,64.22 +96249,316.14,62.902 +96250,318.75,63.358 +96251,321.22,63.806 +96252,323.56,64.248 +96253,314.82,62.824 +96254,317.44,63.316 +96255,319.91,63.799 +96256,322.25,64.276 +96257,313.51,62.746 +96258,316.13,63.273 +96259,318.59,63.792 +96260,320.93,64.303 +96261,312.2,62.669 +96262,314.82,63.231 +96263,317.28,63.784 +96264,319.62,64.33 +96265,310.9,62.592 +96266,313.51,63.189 +96267,315.97,63.777 +96268,318.3,64.357 +96269,309.59,62.515 +96270,312.2,63.147 +96271,314.65,63.769 +96272,316.97,64.383 +96273,308.29,62.439 +96274,310.89,63.105 +96275,313.34,63.761 +96276,315.65,64.408 +96277,306.99,62.363 +96278,309.58,63.063 +96279,312.02,63.753 +96280,314.33,64.434 +96281,305.69,62.288 +96282,308.28,63.022 +96283,310.71,63.745 +96284,313,64.458 +96285,304.39,62.213 +96286,306.97,62.98 +96287,309.39,63.736 +96288,311.67,64.482 +96289,303.1,62.139 +96290,305.67,62.939 +96291,308.07,63.728 +96292,310.34,64.505 +96293,301.8,62.065 +96294,304.36,62.898 +96295,306.75,63.719 +96296,309.01,64.528 +96297,300.51,61.992 +96298,303.06,62.857 +96299,305.44,63.71 +96300,307.68,64.55 +96301,299.23,61.92 +96302,301.75,62.816 +96303,304.12,63.7 +96304,306.34,64.572 +96305,297.94,61.848 +96306,300.45,62.776 +96307,302.8,63.691 +96308,305.01,64.593 +96309,296.65,61.777 +96310,299.15,62.736 +96311,301.48,63.681 +96312,303.67,64.613 +96313,295.37,61.707 +96314,297.85,62.696 +96315,300.16,63.671 +96316,302.33,64.632 +96317,294.09,61.637 +96318,296.54,62.656 +96319,298.84,63.66 +96320,300.99,64.65 +96321,292.81,61.568 +96322,295.24,62.616 +96323,297.51,63.65 +96324,299.64,64.668 +96325,291.53,61.5 +96326,293.94,62.577 +96327,296.19,63.639 +96328,298.3,64.685 +96329,290.26,61.433 +96330,292.65,62.538 +96331,294.87,63.628 +96332,296.95,64.701 +96333,288.98,61.366 +96334,291.35,62.499 +96335,293.55,63.616 +96336,295.6,64.716 +96337,287.71,61.301 +96338,290.05,62.461 +96339,292.22,63.604 +96340,294.25,64.731 +96341,286.44,61.236 +96342,288.75,62.423 +96343,290.9,63.592 +96344,292.9,64.744 +96345,285.18,61.172 +96346,287.45,62.385 +96347,289.57,63.58 +96348,291.55,64.756 +96349,283.91,61.109 +96350,286.16,62.347 +96351,288.25,63.567 +96352,290.2,64.768 +96353,282.65,61.048 +96354,284.86,62.31 +96355,286.92,63.554 +96356,288.84,64.779 +96357,281.38,60.987 +96358,283.57,62.273 +96359,285.59,63.54 +96360,287.49,64.788 +96361,280.12,60.927 +96362,282.27,62.236 +96363,284.27,63.526 +96364,286.13,64.797 +96365,278.86,60.868 +96366,280.98,62.2 +96367,282.94,63.512 +96368,284.77,64.804 +96369,277.61,60.81 +96370,279.69,62.164 +96371,281.61,63.498 +96372,283.41,64.811 +96373,276.35,60.753 +96374,278.39,62.128 +96375,280.28,63.483 +96376,282.05,64.816 +96377,275.1,60.697 +96378,277.1,62.093 +96379,278.96,63.467 +96380,280.68,64.821 +96381,273.84,60.642 +96382,275.81,62.058 +96383,277.63,63.452 +96384,279.32,64.824 +96385,272.59,60.589 +96386,274.52,62.023 +96387,276.3,63.436 +96388,277.95,64.826 +96389,271.34,60.536 +96390,273.23,61.989 +96391,274.97,63.419 +96392,276.58,64.827 +96393,270.1,60.485 +96394,271.94,61.955 +96395,273.64,63.403 +96396,275.21,64.827 +96397,268.85,60.435 +96398,270.65,61.922 +96399,272.31,63.385 +96400,273.85,64.826 +96401,267.61,60.386 +96402,269.36,61.889 +96403,270.97,63.368 +96404,272.47,64.824 +96405,266.36,60.338 +96406,268.07,61.856 +96407,269.64,63.35 +96408,271.1,64.82 +96409,265.12,60.291 +96410,266.78,61.823 +96411,268.31,63.331 +96412,269.73,64.816 +96413,263.88,60.246 +96414,265.49,61.791 +96415,266.98,63.313 +96416,268.35,64.81 +96417,262.64,60.202 +96418,264.2,61.76 +96419,265.65,63.293 +96420,266.98,64.803 +96421,261.4,60.159 +96422,262.92,61.728 +96423,264.31,63.274 +96424,265.6,64.794 +96425,260.16,60.117 +96426,261.63,61.698 +96427,262.98,63.254 +96428,264.23,64.785 +96429,258.93,60.077 +96430,260.34,61.667 +96431,261.65,63.233 +96432,262.85,64.774 +96433,257.69,60.037 +96434,259.06,61.637 +96435,260.31,63.212 +96436,261.47,64.762 +96437,256.46,59.999 +96438,257.77,61.608 +96439,258.98,63.191 +96440,260.09,64.749 +96441,255.22,59.963 +96442,256.49,61.578 +96443,257.64,63.169 +96444,258.71,64.734 +96445,253.99,59.927 +96446,255.2,61.55 +96447,256.31,63.147 +96448,257.32,64.718 +96449,252.76,59.893 +96450,253.92,61.521 +96451,254.97,63.124 +96452,255.94,64.701 +96453,251.53,59.86 +96454,252.63,61.493 +96455,253.64,63.101 +96456,254.56,64.683 +96457,250.3,59.829 +96458,251.35,61.466 +96459,252.3,63.077 +96460,253.17,64.663 +96461,249.07,59.799 +96462,250.06,61.439 +96463,250.97,63.053 +96464,251.79,64.642 +96465,247.85,59.77 +96466,248.78,61.412 +96467,249.63,63.029 +96468,250.4,64.62 +96469,246.62,59.742 +96470,247.5,61.386 +96471,248.29,63.004 +96472,249.02,64.597 +96473,245.39,59.716 +96474,246.22,61.36 +96475,246.96,62.978 +96476,247.63,64.572 +96477,244.17,59.691 +96478,244.93,61.334 +96479,245.62,62.953 +96480,246.24,64.546 +96481,242.94,59.667 +96482,243.65,61.309 +96483,244.29,62.926 +96484,244.86,64.518 +96485,241.72,59.645 +96486,242.37,61.285 +96487,242.95,62.9 +96488,243.47,64.489 +96489,240.49,59.624 +96490,241.09,61.261 +96491,241.61,62.872 +96492,242.08,64.459 +96493,239.27,59.604 +96494,239.8,61.237 +96495,240.27,62.845 +96496,240.69,64.428 +96497,238.04,59.586 +96498,238.52,61.214 +96499,238.94,62.817 +96500,239.3,64.395 +96501,236.82,59.569 +96502,237.24,61.191 +96503,237.6,62.788 +96504,237.91,64.362 +96505,235.6,59.553 +96506,235.96,61.168 +96507,236.26,62.759 +96508,236.52,64.326 +96509,234.37,59.539 +96510,234.68,61.146 +96511,234.93,62.73 +96512,235.13,64.29 +96513,233.15,59.526 +96514,233.39,61.124 +96515,233.59,62.7 +96516,233.74,64.252 +96517,231.93,59.514 +96518,232.11,61.103 +96519,232.25,62.67 +96520,232.34,64.213 +96521,230.71,59.503 +96522,230.83,61.082 +96523,230.91,62.639 +96524,230.95,64.173 +96525,229.48,59.494 +96526,229.55,61.062 +96527,229.58,62.608 +96528,229.56,64.131 +96529,228.26,59.486 +96530,228.27,61.042 +96531,228.24,62.576 +96532,228.17,64.088 +96533,227.04,59.479 +96534,226.99,61.022 +96535,226.9,62.544 +96536,226.78,64.044 +96537,225.82,59.473 +96538,225.71,61.003 +96539,225.56,62.512 +96540,225.38,63.999 +96541,224.59,59.469 +96542,224.43,60.984 +96543,224.23,62.479 +96544,223.99,63.952 +96545,223.37,59.466 +96546,223.15,60.966 +96547,222.89,62.446 +96548,222.6,63.904 +96549,222.15,59.464 +96550,221.86,60.948 +96551,221.55,62.412 +96552,221.21,63.855 +96553,220.92,59.463 +96554,220.58,60.93 +96555,220.21,62.378 +96556,219.82,63.805 +96557,219.7,59.464 +96558,219.3,60.913 +96559,218.88,62.343 +96560,218.43,63.753 +96561,218.47,59.465 +96562,218.02,60.896 +96563,217.54,62.308 +96564,217.03,63.701 +96565,217.25,59.468 +96566,216.74,60.88 +96567,216.2,62.273 +96568,215.64,63.647 +96569,216.02,59.472 +96570,215.46,60.864 +96571,214.87,62.237 +96572,214.25,63.592 +96573,214.8,59.477 +96574,214.17,60.848 +96575,213.53,62.201 +96576,212.86,63.536 +96577,213.57,59.483 +96578,212.89,60.832 +96579,212.19,62.164 +96580,211.47,63.478 +96581,212.35,59.491 +96582,211.61,60.817 +96583,210.86,62.127 +96584,210.08,63.42 +96585,211.12,59.499 +96586,210.33,60.803 +96587,209.52,62.09 +96588,208.69,63.36 +96589,209.89,59.509 +96590,209.05,60.788 +96591,208.18,62.052 +96592,207.3,63.3 +96593,208.66,59.519 +96594,207.76,60.774 +96595,206.85,62.014 +96596,205.91,63.238 +96597,207.43,59.53 +96598,206.48,60.76 +96599,205.51,61.976 +96600,204.53,63.175 +96601,206.2,59.543 +96602,205.2,60.747 +96603,204.18,61.937 +96604,203.14,63.112 +96605,204.97,59.556 +96606,203.91,60.734 +96607,202.84,61.898 +96608,201.75,63.047 +96609,203.73,59.571 +96610,202.63,60.721 +96611,201.51,61.859 +96612,200.37,62.981 +96613,202.5,59.586 +96614,201.35,60.709 +96615,200.17,61.819 +96616,198.98,62.914 +96617,201.27,59.602 +96618,200.06,60.697 +96619,198.84,61.779 +96620,197.6,62.847 +96621,200.03,59.619 +96622,198.78,60.685 +96623,197.51,61.738 +96624,196.21,62.778 +96625,198.79,59.637 +96626,197.49,60.673 +96627,196.17,61.697 +96628,194.83,62.709 +96629,197.56,59.656 +96630,196.21,60.662 +96631,194.84,61.656 +96632,193.45,62.638 +96633,196.32,59.676 +96634,194.92,60.651 +96635,193.51,61.615 +96636,192.06,62.567 +96637,195.08,59.696 +96638,193.64,60.64 +96639,192.18,61.573 +96640,190.68,62.495 +96641,193.84,59.717 +96642,192.35,60.629 +96643,190.84,61.531 +96644,189.3,62.422 +96645,192.59,59.739 +96646,191.07,60.619 +96647,189.51,61.489 +96648,187.93,62.348 +96649,191.35,59.762 +96650,189.78,60.609 +96651,188.18,61.447 +96652,186.55,62.273 +96653,190.1,59.785 +96654,188.49,60.599 +96655,186.85,61.404 +96656,185.17,62.198 +96657,188.86,59.809 +96658,187.21,60.59 +96659,185.52,61.361 +96660,183.8,62.122 +96661,187.61,59.834 +96662,185.92,60.58 +96663,184.19,61.318 +96664,182.42,62.045 +96665,186.36,59.859 +96666,184.63,60.571 +96667,182.86,61.274 +96668,181.05,61.967 +96669,185.11,59.885 +96670,183.34,60.562 +96671,181.53,61.231 +96672,179.68,61.889 +96673,183.86,59.911 +96674,182.05,60.553 +96675,180.2,61.187 +96676,178.31,61.811 +96677,182.61,59.938 +96678,180.76,60.544 +96679,178.87,61.143 +96680,176.94,61.731 +96681,181.35,59.965 +96682,179.47,60.536 +96683,177.55,61.098 +96684,175.57,61.651 +96685,180.09,59.993 +96686,178.18,60.527 +96687,176.22,61.054 +96688,174.2,61.571 +96689,178.84,60.021 +96690,176.89,60.519 +96691,174.89,61.009 +96692,172.84,61.49 +96693,177.58,60.05 +96694,175.6,60.511 +96695,173.57,60.964 +96696,171.47,61.408 +96697,176.32,60.079 +96698,174.31,60.503 +96699,172.24,60.919 +96700,170.11,61.326 +96701,175.05,60.109 +96702,173.02,60.495 +96703,170.92,60.874 +96704,168.75,61.244 +96705,173.79,60.138 +96706,171.72,60.487 +96707,169.59,60.829 +96708,167.39,61.161 +96709,172.52,60.168 +96710,170.43,60.48 +96711,168.27,60.783 +96712,166.03,61.078 +96713,171.26,60.199 +96714,169.14,60.472 +96715,166.95,60.738 +96716,164.68,60.994 +96717,169.99,60.229 +96718,167.84,60.464 +96719,165.62,60.692 +96720,163.32,60.911 +96721,168.72,60.26 +96722,166.55,60.457 +96723,164.3,60.647 +96724,161.97,60.826 +96725,167.44,60.29 +96726,165.25,60.45 +96727,162.98,60.601 +96728,160.62,60.742 +96729,166.17,60.321 +96730,163.95,60.442 +96731,161.66,60.555 +96732,159.27,60.657 +96733,164.89,60.353 +96734,162.66,60.435 +96735,160.34,60.509 +96736,157.92,60.573 +96737,163.62,60.384 +96738,161.36,60.427 +96739,159.02,60.463 +96740,156.57,60.488 +96741,162.34,60.415 +96742,160.06,60.42 +96743,157.7,60.417 +96744,155.23,60.403 +96745,161.06,60.446 +96746,158.76,60.413 +96747,156.38,60.371 +96748,153.89,60.317 +96749,159.77,60.477 +96750,157.47,60.405 +96751,155.06,60.324 +96752,152.55,60.232 +96753,158.49,60.508 +96754,156.17,60.398 +96755,153.75,60.278 +96756,151.21,60.147 +96757,157.2,60.539 +96758,154.87,60.391 +96759,152.43,60.232 +96760,149.87,60.061 +96761,155.91,60.57 +96762,153.57,60.383 +96763,151.11,60.186 +96764,148.54,59.976 +96765,154.62,60.601 +96766,152.27,60.376 +96767,149.8,60.14 +96768,147.2,59.891 +96769,153.33,60.632 +96770,150.96,60.368 +96771,148.48,60.094 +96772,145.87,59.806 +96773,152.04,60.662 +96774,149.66,60.361 +96775,147.17,60.047 +96776,144.54,59.721 +96777,150.74,60.693 +96778,148.36,60.353 +96779,145.86,60.001 +96780,143.22,59.636 +96781,149.44,60.722 +96782,147.06,60.345 +96783,144.54,59.955 +96784,141.89,59.551 +96785,148.15,60.752 +96786,145.75,60.337 +96787,143.23,59.91 +96788,140.57,59.467 +96789,146.85,60.781 +96790,144.45,60.329 +96791,141.92,59.864 +96792,139.25,59.383 +96793,145.54,60.81 +96794,143.14,60.321 +96795,140.61,59.818 +96796,137.93,59.299 +96797,144.24,60.839 +96798,141.84,60.313 +96799,139.3,59.772 +96800,136.61,59.215 +96801,142.93,60.867 +96802,140.53,60.305 +96803,137.99,59.727 +96804,135.29,59.132 +96805,141.62,60.895 +96806,139.22,60.296 +96807,136.68,59.681 +96808,133.98,59.049 +96809,140.31,60.922 +96810,137.92,60.287 +96811,135.38,59.636 +96812,132.67,58.966 +96813,139,60.949 +96814,136.61,60.278 +96815,134.07,59.591 +96816,131.36,58.884 +96817,137.69,60.975 +96818,135.3,60.269 +96819,132.76,59.546 +96820,130.05,58.803 +96821,136.37,61.001 +96822,133.99,60.26 +96823,131.46,59.501 +96824,128.75,58.721 +96825,135.06,61.026 +96826,132.68,60.251 +96827,130.15,59.456 +96828,127.45,58.641 +96829,133.74,61.051 +96830,131.37,60.241 +96831,128.85,59.412 +96832,126.15,58.561 +96833,132.42,61.075 +96834,130.06,60.231 +96835,127.54,59.367 +96836,124.85,58.481 +96837,131.1,61.098 +96838,128.75,60.221 +96839,126.24,59.323 +96840,123.55,58.403 +96841,129.77,61.12 +96842,127.43,60.211 +96843,124.94,59.279 +96844,122.26,58.324 +96845,128.45,61.142 +96846,126.12,60.2 +96847,123.64,59.236 +96848,120.97,58.247 +96849,127.12,61.163 +96850,124.81,60.189 +96851,122.34,59.192 +96852,119.68,58.17 +96853,125.79,61.184 +96854,123.49,60.178 +96855,121.04,59.149 +96856,118.39,58.094 +96857,124.46,61.203 +96858,122.18,60.167 +96859,119.74,59.106 +96860,117.1,58.019 +96861,123.13,61.222 +96862,120.86,60.155 +96863,118.44,59.063 +96864,115.82,57.944 +96865,121.79,61.24 +96866,119.55,60.143 +96867,117.14,59.021 +96868,114.54,57.871 +96869,120.46,61.257 +96870,118.23,60.131 +96871,115.84,58.978 +96872,113.26,57.798 +96873,119.12,61.273 +96874,116.91,60.118 +96875,114.55,58.936 +96876,111.98,57.726 +96877,117.78,61.288 +96878,115.6,60.105 +96879,113.25,58.895 +96880,110.71,57.655 +96881,116.44,61.303 +96882,114.28,60.092 +96883,111.95,58.853 +96884,109.43,57.585 +96885,115.1,61.316 +96886,112.96,60.078 +96887,110.66,58.812 +96888,108.16,57.515 +96889,113.76,61.328 +96890,111.64,60.065 +96891,109.36,58.772 +96892,106.89,57.447 +96893,112.41,61.34 +96894,110.32,60.05 +96895,108.07,58.731 +96896,105.62,57.38 +96897,111.06,61.35 +96898,109,60.036 +96899,106.78,58.691 +96900,104.36,57.314 +96901,109.72,61.359 +96902,107.68,60.021 +96903,105.49,58.651 +96904,103.1,57.249 +96905,108.37,61.368 +96906,106.36,60.006 +96907,104.19,58.612 +96908,101.83,57.185 +96909,107.01,61.375 +96910,105.04,59.99 +96911,102.9,58.573 +96912,100.57,57.122 +96913,105.66,61.381 +96914,103.72,59.974 +96915,101.61,58.534 +96916,99.317,57.06 +96917,104.31,61.386 +96918,102.4,59.957 +96919,100.32,58.496 +96920,98.061,56.999 +96921,102.95,61.39 +96922,101.07,59.941 +96923,99.034,58.458 +96924,96.807,56.939 +96925,101.6,61.392 +96926,99.749,59.923 +96927,97.746,58.42 +96928,95.555,56.881 +96929,100.24,61.394 +96930,98.426,59.906 +96931,96.458,58.383 +96932,94.305,56.823 +96933,98.878,61.394 +96934,97.101,59.888 +96935,95.17,58.346 +96936,93.056,56.767 +96937,97.518,61.393 +96938,95.777,59.869 +96939,93.883,58.31 +96940,91.809,56.713 +96941,96.156,61.391 +96942,94.451,59.85 +96943,92.597,58.274 +96944,90.564,56.659 +96945,94.792,61.388 +96946,93.126,59.831 +96947,91.311,58.238 +96948,89.32,56.607 +96949,93.428,61.384 +96950,91.8,59.811 +96951,90.025,58.203 +96952,88.078,56.555 +96953,92.062,61.378 +96954,90.473,59.791 +96955,88.741,58.168 +96956,86.837,56.506 +96957,90.695,61.371 +96958,89.147,59.771 +96959,87.456,58.133 +96960,85.598,56.457 +96961,89.327,61.362 +96962,87.82,59.749 +96963,86.172,58.099 +96964,84.361,56.41 +96965,87.958,61.353 +96966,86.492,59.728 +96967,84.889,58.066 +96968,83.125,56.364 +96969,86.588,61.342 +96970,85.164,59.706 +96971,83.606,58.033 +96972,81.89,56.32 +96973,85.217,61.33 +96974,83.836,59.684 +96975,82.324,58 +96976,80.657,56.276 +96977,83.844,61.316 +96978,82.507,59.661 +96979,81.042,57.968 +96980,79.425,56.235 +96981,82.471,61.301 +96982,81.178,59.638 +96983,79.76,57.936 +96984,78.194,56.194 +96985,81.097,61.285 +96986,79.849,59.614 +96987,78.479,57.904 +96988,76.965,56.155 +96989,79.721,61.268 +96990,78.52,59.59 +96991,77.198,57.873 +96992,75.737,56.117 +96993,78.345,61.249 +96994,77.19,59.565 +96995,75.918,57.843 +96996,74.51,56.081 +96997,76.968,61.229 +96998,75.86,59.54 +96999,74.638,57.813 +97000,73.284,56.046 +97001,75.59,61.207 +97002,74.529,59.514 +97003,73.358,57.783 +97004,72.059,56.013 +97005,74.212,61.184 +97006,73.199,59.488 +97007,72.079,57.754 +97008,70.835,55.981 +97009,72.832,61.16 +97010,71.868,59.461 +97011,70.8,57.725 +97012,69.612,55.95 +97013,71.452,61.134 +97014,70.537,59.434 +97015,69.522,57.697 +97016,68.39,55.921 +97017,70.071,61.107 +97018,69.206,59.407 +97019,68.243,57.669 +97020,67.169,55.893 +97021,68.689,61.079 +97022,67.874,59.379 +97023,66.966,57.642 +97024,65.949,55.866 +97025,67.307,61.049 +97026,66.542,59.35 +97027,65.688,57.615 +97028,64.729,55.841 +97029,65.924,61.018 +97030,65.21,59.321 +97031,64.41,57.588 +97032,63.511,55.818 +97033,64.54,60.985 +97034,63.878,59.292 +97035,63.133,57.563 +97036,62.292,55.795 +97037,63.156,60.951 +97038,62.546,59.262 +97039,61.856,57.537 +97040,61.075,55.775 +97041,61.771,60.916 +97042,61.214,59.232 +97043,60.58,57.512 +97044,59.858,55.755 +97045,60.386,60.879 +97046,59.881,59.201 +97047,59.303,57.487 +97048,58.642,55.737 +97049,59.001,60.841 +97050,58.549,59.17 +97051,58.027,57.463 +97052,57.426,55.721 +97053,57.615,60.802 +97054,57.216,59.138 +97055,56.751,57.439 +97056,56.21,55.706 +97057,56.228,60.761 +97058,55.883,59.106 +97059,55.475,57.416 +97060,54.995,55.692 +97061,54.841,60.719 +97062,54.55,59.073 +97063,54.199,57.393 +97064,53.78,55.68 +97065,53.454,60.676 +97066,53.217,59.04 +97067,52.923,57.371 +97068,52.565,55.669 +97069,52.067,60.631 +97070,51.884,59.006 +97071,51.648,57.349 +97072,51.351,55.659 +97073,50.679,60.584 +97074,50.551,58.972 +97075,50.372,57.327 +97076,50.137,55.651 +97077,49.292,60.537 +97078,49.218,58.937 +97079,49.097,57.306 +97080,48.922,55.644 +97081,47.904,60.488 +97082,47.885,58.902 +97083,47.822,57.286 +97084,47.708,55.638 +97085,46.516,60.438 +97086,46.552,58.867 +97087,46.546,57.266 +97088,46.494,55.634 +97089,45.127,60.386 +97090,45.219,58.831 +97091,45.271,57.246 +97092,45.28,55.631 +97093,43.739,60.334 +97094,43.886,58.795 +97095,43.996,57.226 +97096,44.066,55.629 +97097,42.351,60.28 +97098,42.553,58.758 +97099,42.721,57.208 +97100,42.851,55.629 +97101,40.963,60.224 +97102,41.22,58.721 +97103,41.446,57.189 +97104,41.636,55.63 +97105,39.574,60.168 +97106,39.887,58.683 +97107,40.171,57.171 +97108,40.422,55.632 +97109,38.186,60.11 +97110,38.555,58.645 +97111,38.895,57.153 +97112,39.206,55.635 +97113,36.798,60.051 +97114,37.222,58.606 +97115,37.62,57.136 +97116,37.991,55.64 +97117,35.411,59.99 +97118,35.89,58.567 +97119,36.345,57.119 +97120,36.775,55.646 +97121,34.023,59.929 +97122,34.557,58.528 +97123,35.069,57.102 +97124,35.558,55.653 +97125,32.636,59.866 +97126,33.225,58.488 +97127,33.794,57.086 +97128,34.341,55.661 +97129,31.249,59.802 +97130,31.893,58.448 +97131,32.518,57.071 +97132,33.124,55.671 +97133,29.862,59.737 +97134,30.561,58.407 +97135,31.243,57.055 +97136,31.906,55.681 +97137,28.476,59.671 +97138,29.229,58.366 +97139,29.967,57.04 +97140,30.687,55.693 +97141,27.09,59.603 +97142,27.898,58.325 +97143,28.691,57.025 +97144,29.468,55.705 +97145,25.704,59.535 +97146,26.567,58.283 +97147,27.415,57.011 +97148,28.248,55.719 +97149,24.319,59.465 +97150,25.236,58.241 +97151,26.138,56.997 +97152,27.027,55.734 +97153,22.934,59.394 +97154,23.905,58.199 +97155,24.862,56.984 +97156,25.805,55.75 +97157,21.55,59.323 +97158,22.574,58.156 +97159,23.585,56.97 +97160,24.582,55.767 +97161,20.167,59.25 +97162,21.244,58.113 +97163,22.308,56.957 +97164,23.359,55.784 +97165,18.784,59.176 +97166,19.914,58.069 +97167,21.031,56.945 +97168,22.135,55.803 +97169,17.402,59.101 +97170,18.584,58.025 +97171,19.753,56.932 +97172,20.909,55.823 +97173,16.021,59.026 +97174,17.255,57.981 +97175,18.475,56.92 +97176,19.683,55.844 +97177,14.64,58.949 +97178,15.926,57.937 +97179,17.197,56.908 +97180,18.455,55.865 +97181,13.26,58.871 +97182,14.597,57.892 +97183,15.919,56.897 +97184,17.227,55.887 +97185,11.881,58.793 +97186,13.269,57.847 +97187,14.64,56.886 +97188,15.997,55.91 +97189,10.503,58.713 +97190,11.941,57.802 +97191,13.361,56.875 +97192,14.766,55.934 +97193,9.1258,58.633 +97194,10.613,57.756 +97195,12.082,56.864 +97196,13.534,55.959 +97197,7.7494,58.552 +97198,9.2862,57.71 +97199,10.803,56.854 +97200,12.301,55.984 +97201,6.3741,58.47 +97202,7.9594,57.664 +97203,9.5227,56.843 +97204,11.066,56.011 +97205,4.9997,58.388 +97206,6.633,57.617 +97207,8.2423,56.833 +97208,9.8303,56.037 +97209,3.6264,58.304 +97210,5.3071,57.571 +97211,6.9617,56.823 +97212,8.5931,56.065 +97213,2.2543,58.22 +97214,3.9815,57.524 +97215,5.6806,56.814 +97216,7.3545,56.093 +97217,0.88319,58.135 +97218,2.6565,57.476 +97219,4.3991,56.805 +97220,6.1145,56.122 +97221,359.51,58.05 +97222,1.3319,57.429 +97223,3.1173,56.795 +97224,4.8731,56.151 +97225,358.14,57.964 +97226,0.0077377,57.381 +97227,1.835,56.786 +97228,3.6303,56.181 +97229,356.78,57.877 +97230,358.68,57.334 +97231,0.55226,56.777 +97232,2.3859,56.211 +97233,355.41,57.79 +97234,357.36,57.286 +97235,359.27,56.769 +97236,1.1401,56.242 +97237,354.05,57.702 +97238,356.04,57.237 +97239,357.99,56.76 +97240,359.89,56.273 +97241,352.68,57.614 +97242,354.72,57.189 +97243,356.7,56.752 +97244,358.64,56.304 +97245,351.32,57.525 +97246,353.39,57.141 +97247,355.42,56.744 +97248,357.39,56.336 +97249,349.96,57.436 +97250,352.07,57.092 +97251,354.13,56.735 +97252,356.14,56.369 +97253,348.6,57.346 +97254,350.75,57.043 +97255,352.85,56.727 +97256,354.89,56.401 +97257,347.24,57.256 +97258,349.43,56.994 +97259,351.56,56.719 +97260,353.63,56.434 +97261,345.89,57.166 +97262,348.11,56.945 +97263,350.27,56.712 +97264,352.38,56.467 +97265,344.53,57.075 +97266,346.8,56.896 +97267,348.99,56.704 +97268,351.12,56.501 +97269,343.18,56.984 +97270,345.48,56.847 +97271,347.7,56.696 +97272,349.86,56.534 +97273,341.83,56.893 +97274,344.16,56.798 +97275,346.41,56.688 +97276,348.59,56.568 +97277,340.48,56.801 +97278,342.84,56.748 +97279,345.12,56.681 +97280,347.33,56.602 +97281,339.13,56.71 +97282,341.53,56.699 +97283,343.83,56.673 +97284,346.06,56.635 +97285,337.78,56.618 +97286,340.21,56.649 +97287,342.54,56.666 +97288,344.8,56.669 +97289,336.44,56.526 +97290,338.9,56.6 +97291,341.25,56.658 +97292,343.53,56.703 +97293,335.09,56.434 +97294,337.58,56.55 +97295,339.96,56.65 +97296,342.26,56.737 +97297,333.75,56.342 +97298,336.27,56.501 +97299,338.67,56.643 +97300,340.98,56.771 +97301,332.41,56.25 +97302,334.95,56.451 +97303,337.38,56.635 +97304,339.71,56.805 +97305,331.08,56.158 +97306,333.64,56.401 +97307,336.09,56.627 +97308,338.43,56.839 +97309,329.74,56.066 +97310,332.33,56.352 +97311,334.8,56.62 +97312,337.16,56.872 +97313,328.41,55.974 +97314,331.02,56.302 +97315,333.5,56.612 +97316,335.88,56.905 +97317,327.08,55.882 +97318,329.71,56.253 +97319,332.21,56.604 +97320,334.59,56.939 +97321,325.75,55.79 +97322,328.4,56.203 +97323,330.91,56.596 +97324,333.31,56.971 +97325,324.42,55.698 +97326,327.09,56.154 +97327,329.62,56.588 +97328,332.03,57.004 +97329,323.09,55.607 +97330,325.78,56.105 +97331,328.32,56.58 +97332,330.74,57.036 +97333,321.77,55.516 +97334,324.47,56.056 +97335,327.03,56.572 +97336,329.45,57.068 +97337,320.45,55.425 +97338,323.17,56.006 +97339,325.73,56.564 +97340,328.16,57.1 +97341,319.13,55.335 +97342,321.86,55.957 +97343,324.43,56.555 +97344,326.87,57.131 +97345,317.81,55.245 +97346,320.55,55.909 +97347,323.13,56.547 +97348,325.57,57.162 +97349,316.49,55.155 +97350,319.25,55.86 +97351,321.83,56.538 +97352,324.28,57.192 +97353,315.18,55.066 +97354,317.94,55.811 +97355,320.53,56.529 +97356,322.98,57.222 +97357,313.87,54.977 +97358,316.64,55.763 +97359,319.23,56.52 +97360,321.68,57.251 +97361,312.56,54.889 +97362,315.34,55.714 +97363,317.93,56.51 +97364,320.38,57.28 +97365,311.25,54.801 +97366,314.04,55.666 +97367,316.63,56.501 +97368,319.07,57.308 +97369,309.95,54.714 +97370,312.74,55.618 +97371,315.33,56.491 +97372,317.77,57.336 +97373,308.65,54.627 +97374,311.43,55.571 +97375,314.03,56.481 +97376,316.46,57.363 +97377,307.35,54.541 +97378,310.13,55.523 +97379,312.73,56.471 +97380,315.15,57.389 +97381,306.05,54.456 +97382,308.84,55.476 +97383,311.42,56.461 +97384,313.84,57.415 +97385,304.75,54.371 +97386,307.54,55.429 +97387,310.12,56.45 +97388,312.53,57.439 +97389,303.46,54.287 +97390,306.24,55.382 +97391,308.81,56.439 +97392,311.21,57.464 +97393,302.17,54.204 +97394,304.94,55.335 +97395,307.51,56.428 +97396,309.9,57.487 +97397,300.88,54.121 +97398,303.65,55.289 +97399,306.2,56.417 +97400,308.58,57.509 +97401,299.59,54.04 +97402,302.35,55.243 +97403,304.9,56.405 +97404,307.26,57.531 +97405,298.3,53.959 +97406,301.06,55.197 +97407,303.59,56.393 +97408,305.94,57.552 +97409,297.02,53.879 +97410,299.76,55.152 +97411,302.28,56.381 +97412,304.62,57.572 +97413,295.74,53.8 +97414,298.47,55.106 +97415,300.97,56.368 +97416,303.29,57.591 +97417,294.46,53.723 +97418,297.18,55.061 +97419,299.67,56.355 +97420,301.97,57.609 +97421,293.19,53.646 +97422,295.89,55.017 +97423,298.36,56.342 +97424,300.64,57.626 +97425,291.91,53.57 +97426,294.59,54.973 +97427,297.05,56.328 +97428,299.31,57.642 +97429,290.64,53.495 +97430,293.3,54.929 +97431,295.74,56.314 +97432,297.98,57.657 +97433,289.37,53.421 +97434,292.01,54.885 +97435,294.43,56.3 +97436,296.65,57.671 +97437,288.1,53.348 +97438,290.72,54.842 +97439,293.11,56.286 +97440,295.31,57.684 +97441,286.84,53.276 +97442,289.44,54.799 +97443,291.8,56.271 +97444,293.98,57.696 +97445,285.57,53.206 +97446,288.15,54.757 +97447,290.49,56.255 +97448,292.64,57.707 +97449,284.31,53.136 +97450,286.86,54.714 +97451,289.18,56.239 +97452,291.3,57.717 +97453,283.05,53.068 +97454,285.58,54.673 +97455,287.86,56.223 +97456,289.96,57.725 +97457,281.8,53.001 +97458,284.29,54.631 +97459,286.55,56.207 +97460,288.62,57.733 +97461,280.54,52.935 +97462,283.01,54.59 +97463,285.23,56.19 +97464,287.27,57.739 +97465,279.29,52.871 +97466,281.72,54.55 +97467,283.92,56.172 +97468,285.93,57.744 +97469,278.04,52.808 +97470,280.44,54.51 +97471,282.6,56.155 +97472,284.58,57.748 +97473,276.79,52.746 +97474,279.15,54.47 +97475,281.29,56.136 +97476,283.23,57.751 +97477,275.54,52.685 +97478,277.87,54.431 +97479,279.97,56.118 +97480,281.88,57.752 +97481,274.3,52.626 +97482,276.59,54.392 +97483,278.65,56.099 +97484,280.53,57.752 +97485,273.05,52.568 +97486,275.31,54.353 +97487,277.34,56.079 +97488,279.18,57.751 +97489,271.81,52.512 +97490,274.03,54.315 +97491,276.02,56.059 +97492,277.83,57.748 +97493,270.57,52.456 +97494,272.75,54.278 +97495,274.7,56.039 +97496,276.47,57.745 +97497,269.33,52.403 +97498,271.47,54.241 +97499,273.38,56.018 +97500,275.12,57.739 +97501,268.1,52.351 +97502,270.19,54.204 +97503,272.06,55.996 +97504,273.76,57.733 +97505,266.86,52.3 +97506,268.91,54.168 +97507,270.74,55.975 +97508,272.4,57.725 +97509,265.63,52.25 +97510,267.63,54.132 +97511,269.42,55.952 +97512,271.04,57.716 +97513,264.4,52.202 +97514,266.36,54.097 +97515,268.1,55.93 +97516,269.68,57.706 +97517,263.17,52.156 +97518,265.08,54.062 +97519,266.78,55.906 +97520,268.32,57.694 +97521,261.94,52.111 +97522,263.8,54.028 +97523,265.46,55.883 +97524,266.96,57.68 +97525,260.72,52.068 +97526,262.53,53.994 +97527,264.14,55.859 +97528,265.59,57.665 +97529,259.49,52.026 +97530,261.25,53.961 +97531,262.82,55.834 +97532,264.23,57.649 +97533,258.27,51.986 +97534,259.98,53.928 +97535,261.5,55.809 +97536,262.86,57.632 +97537,257.05,51.947 +97538,258.7,53.896 +97539,260.18,55.783 +97540,261.5,57.613 +97541,255.83,51.909 +97542,257.43,53.864 +97543,258.85,55.757 +97544,260.13,57.592 +97545,254.61,51.874 +97546,256.16,53.833 +97547,257.53,55.73 +97548,258.76,57.57 +97549,253.39,51.84 +97550,254.88,53.802 +97551,256.21,55.703 +97552,257.39,57.547 +97553,252.17,51.807 +97554,253.61,53.772 +97555,254.88,55.675 +97556,256.02,57.522 +97557,250.96,51.776 +97558,252.34,53.742 +97559,253.56,55.647 +97560,254.65,57.496 +97561,249.74,51.747 +97562,251.07,53.713 +97563,252.24,55.619 +97564,253.27,57.468 +97565,248.53,51.719 +97566,249.8,53.684 +97567,250.91,55.589 +97568,251.9,57.439 +97569,247.32,51.692 +97570,248.53,53.656 +97571,249.59,55.56 +97572,250.53,57.408 +97573,246.11,51.668 +97574,247.26,53.628 +97575,248.26,55.53 +97576,249.15,57.376 +97577,244.9,51.644 +97578,245.99,53.601 +97579,246.94,55.499 +97580,247.78,57.342 +97581,243.69,51.623 +97582,244.72,53.574 +97583,245.61,55.468 +97584,246.4,57.307 +97585,242.48,51.603 +97586,243.45,53.548 +97587,244.29,55.436 +97588,245.03,57.271 +97589,241.27,51.584 +97590,242.18,53.522 +97591,242.96,55.404 +97592,243.65,57.233 +97593,240.06,51.567 +97594,240.91,53.497 +97595,241.64,55.371 +97596,242.27,57.193 +97597,238.85,51.552 +97598,239.64,53.472 +97599,240.31,55.338 +97600,240.89,57.152 +97601,237.65,51.538 +97602,238.37,53.448 +97603,238.99,55.304 +97604,239.52,57.11 +97605,236.44,51.526 +97606,237.1,53.425 +97607,237.66,55.27 +97608,238.14,57.066 +97609,235.24,51.515 +97610,235.83,53.401 +97611,236.34,55.236 +97612,236.76,57.02 +97613,234.03,51.506 +97614,234.57,53.379 +97615,235.01,55.2 +97616,235.38,56.974 +97617,232.83,51.498 +97618,233.3,53.356 +97619,233.68,55.165 +97620,234,56.925 +97621,231.62,51.491 +97622,232.03,53.335 +97623,232.36,55.129 +97624,232.62,56.876 +97625,230.42,51.487 +97626,230.76,53.313 +97627,231.03,55.092 +97628,231.24,56.825 +97629,229.21,51.483 +97630,229.49,53.293 +97631,229.71,55.055 +97632,229.86,56.772 +97633,228.01,51.482 +97634,228.23,53.272 +97635,228.38,55.017 +97636,228.47,56.718 +97637,226.81,51.481 +97638,226.96,53.253 +97639,227.05,54.979 +97640,227.09,56.663 +97641,225.6,51.482 +97642,225.69,53.233 +97643,225.73,54.941 +97644,225.71,56.606 +97645,224.4,51.485 +97646,224.43,53.214 +97647,224.4,54.902 +97648,224.33,56.548 +97649,223.2,51.488 +97650,223.16,53.196 +97651,223.07,54.862 +97652,222.95,56.488 +97653,221.99,51.494 +97654,221.89,53.178 +97655,221.75,54.822 +97656,221.57,56.427 +97657,220.79,51.5 +97658,220.63,53.161 +97659,220.42,54.782 +97660,220.19,56.365 +97661,219.58,51.508 +97662,219.36,53.144 +97663,219.1,54.741 +97664,218.8,56.302 +97665,218.38,51.517 +97666,218.09,53.127 +97667,217.77,54.7 +97668,217.42,56.237 +97669,217.17,51.528 +97670,216.82,53.111 +97671,216.45,54.658 +97672,216.04,56.171 +97673,215.97,51.54 +97674,215.56,53.095 +97675,215.12,54.616 +97676,214.66,56.103 +97677,214.76,51.553 +97678,214.29,53.08 +97679,213.8,54.573 +97680,213.28,56.034 +97681,213.55,51.567 +97682,213.02,53.065 +97683,212.47,54.53 +97684,211.9,55.964 +97685,212.35,51.583 +97686,211.76,53.05 +97687,211.15,54.487 +97688,210.52,55.893 +97689,211.14,51.599 +97690,210.49,53.036 +97691,209.82,54.443 +97692,209.14,55.821 +97693,209.93,51.617 +97694,209.22,53.022 +97695,208.5,54.399 +97696,207.76,55.747 +97697,208.72,51.636 +97698,207.95,53.009 +97699,207.17,54.355 +97700,206.38,55.672 +97701,207.51,51.656 +97702,206.68,52.996 +97703,205.85,54.31 +97704,205,55.597 +97705,206.3,51.678 +97706,205.42,52.984 +97707,204.52,54.264 +97708,203.62,55.519 +97709,205.09,51.7 +97710,204.15,52.971 +97711,203.2,54.219 +97712,202.25,55.441 +97713,203.88,51.723 +97714,202.88,52.959 +97715,201.88,54.173 +97716,200.87,55.362 +97717,202.66,51.748 +97718,201.61,52.948 +97719,200.55,54.126 +97720,199.49,55.282 +97721,201.45,51.773 +97722,200.34,52.937 +97723,199.23,54.079 +97724,198.12,55.2 +97725,200.23,51.799 +97726,199.07,52.926 +97727,197.91,54.032 +97728,196.74,55.118 +97729,199.02,51.826 +97730,197.8,52.915 +97731,196.59,53.985 +97732,195.37,55.034 +97733,197.8,51.854 +97734,196.53,52.905 +97735,195.27,53.937 +97736,193.99,54.95 +97737,196.58,51.883 +97738,195.26,52.895 +97739,193.95,53.889 +97740,192.62,54.865 +97741,195.36,51.913 +97742,193.99,52.885 +97743,192.62,53.841 +97744,191.25,54.778 +97745,194.14,51.943 +97746,192.72,52.876 +97747,191.3,53.792 +97748,189.88,54.691 +97749,192.92,51.975 +97750,191.45,52.867 +97751,189.98,53.743 +97752,188.51,54.603 +97753,191.69,52.007 +97754,190.18,52.858 +97755,188.66,53.694 +97756,187.14,54.514 +97757,190.47,52.039 +97758,188.91,52.849 +97759,187.34,53.645 +97760,185.77,54.425 +97761,189.24,52.073 +97762,187.64,52.841 +97763,186.03,53.595 +97764,184.4,54.334 +97765,188.01,52.107 +97766,186.37,52.833 +97767,184.71,53.545 +97768,183.03,54.243 +97769,186.78,52.141 +97770,185.09,52.825 +97771,183.39,53.495 +97772,181.67,54.151 +97773,185.55,52.176 +97774,183.82,52.817 +97775,182.07,53.445 +97776,180.3,54.059 +97777,184.32,52.212 +97778,182.55,52.809 +97779,180.76,53.394 +97780,178.94,53.965 +97781,183.09,52.248 +97782,181.27,52.802 +97783,179.44,53.344 +97784,177.58,53.871 +97785,181.85,52.285 +97786,180,52.795 +97787,178.12,53.293 +97788,176.22,53.777 +97789,180.61,52.322 +97790,178.72,52.788 +97791,176.81,53.242 +97792,174.86,53.682 +97793,179.38,52.36 +97794,177.45,52.781 +97795,175.49,53.19 +97796,173.5,53.586 +97797,178.14,52.397 +97798,176.17,52.774 +97799,174.18,53.139 +97800,172.14,53.49 +97801,176.89,52.435 +97802,174.9,52.767 +97803,172.86,53.088 +97804,170.79,53.394 +97805,175.65,52.474 +97806,173.62,52.761 +97807,171.55,53.036 +97808,169.43,53.297 +97809,174.41,52.513 +97810,172.34,52.754 +97811,170.24,52.984 +97812,168.08,53.2 +97813,173.16,52.552 +97814,171.07,52.748 +97815,168.93,52.932 +97816,166.73,53.102 +97817,171.91,52.591 +97818,169.79,52.742 +97819,167.61,52.88 +97820,165.38,53.004 +97821,170.66,52.63 +97822,168.51,52.736 +97823,166.3,52.828 +97824,164.03,52.906 +97825,169.41,52.669 +97826,167.23,52.73 +97827,164.99,52.776 +97828,162.69,52.807 +97829,168.15,52.709 +97830,165.95,52.723 +97831,163.68,52.724 +97832,161.34,52.708 +97833,166.9,52.748 +97834,164.67,52.717 +97835,162.38,52.672 +97836,160,52.609 +97837,165.64,52.788 +97838,163.39,52.711 +97839,161.07,52.62 +97840,158.66,52.51 +97841,164.38,52.827 +97842,162.11,52.705 +97843,159.76,52.568 +97844,157.32,52.411 +97845,163.12,52.866 +97846,160.83,52.699 +97847,158.45,52.515 +97848,155.98,52.312 +97849,161.86,52.906 +97850,159.55,52.693 +97851,157.15,52.463 +97852,154.64,52.213 +97853,160.59,52.945 +97854,158.26,52.687 +97855,155.84,52.411 +97856,153.31,52.114 +97857,159.33,52.984 +97858,156.98,52.681 +97859,154.54,52.359 +97860,151.98,52.014 +97861,158.06,53.023 +97862,155.7,52.675 +97863,153.23,52.307 +97864,150.65,51.915 +97865,156.79,53.061 +97866,154.41,52.669 +97867,151.93,52.255 +97868,149.32,51.816 +97869,155.52,53.099 +97870,153.13,52.662 +97871,150.62,52.203 +97872,147.99,51.718 +97873,154.24,53.137 +97874,151.84,52.656 +97875,149.32,52.151 +97876,146.67,51.619 +97877,152.97,53.175 +97878,150.56,52.649 +97879,148.02,52.099 +97880,145.34,51.521 +97881,151.69,53.212 +97882,149.27,52.643 +97883,146.72,52.047 +97884,144.02,51.422 +97885,150.41,53.249 +97886,147.98,52.636 +97887,145.42,51.996 +97888,142.7,51.325 +97889,149.13,53.285 +97890,146.69,52.629 +97891,144.12,51.944 +97892,141.39,51.227 +97893,147.85,53.321 +97894,145.41,52.622 +97895,142.82,51.893 +97896,140.07,51.13 +97897,146.56,53.357 +97898,144.12,52.615 +97899,141.52,51.842 +97900,138.76,51.034 +97901,145.28,53.392 +97902,142.83,52.608 +97903,140.23,51.791 +97904,137.45,50.938 +97905,143.99,53.426 +97906,141.54,52.6 +97907,138.93,51.74 +97908,136.14,50.842 +97909,142.7,53.46 +97910,140.25,52.592 +97911,137.64,51.69 +97912,134.84,50.747 +97913,141.41,53.493 +97914,138.95,52.584 +97915,136.34,51.639 +97916,133.53,50.652 +97917,140.11,53.525 +97918,137.66,52.576 +97919,135.05,51.589 +97920,132.23,50.558 +97921,138.82,53.557 +97922,136.37,52.568 +97923,133.75,51.539 +97924,130.93,50.465 +97925,137.52,53.588 +97926,135.08,52.559 +97927,132.46,51.49 +97928,129.63,50.373 +97929,136.22,53.618 +97930,133.78,52.55 +97931,131.17,51.44 +97932,128.34,50.281 +97933,134.92,53.647 +97934,132.49,52.541 +97935,129.88,51.391 +97936,127.05,50.19 +97937,133.61,53.676 +97938,131.19,52.532 +97939,128.59,51.342 +97940,125.76,50.1 +97941,132.31,53.704 +97942,129.9,52.522 +97943,127.3,51.294 +97944,124.47,50.01 +97945,131,53.731 +97946,128.6,52.512 +97947,126.01,51.245 +97948,123.18,49.922 +97949,129.69,53.757 +97950,127.31,52.502 +97951,124.72,51.197 +97952,121.9,49.834 +97953,128.38,53.782 +97954,126.01,52.492 +97955,123.43,51.15 +97956,120.62,49.748 +97957,127.07,53.806 +97958,124.71,52.481 +97959,122.15,51.102 +97960,119.34,49.662 +97961,125.76,53.829 +97962,123.41,52.47 +97963,120.86,51.055 +97964,118.06,49.578 +97965,124.44,53.851 +97966,122.11,52.458 +97967,119.58,51.009 +97968,116.79,49.494 +97969,123.13,53.872 +97970,120.81,52.446 +97971,118.29,50.962 +97972,115.52,49.412 +97973,121.81,53.892 +97974,119.51,52.434 +97975,117.01,50.917 +97976,114.25,49.33 +97977,120.49,53.911 +97978,118.21,52.422 +97979,115.73,50.871 +97980,112.98,49.25 +97981,119.17,53.929 +97982,116.91,52.409 +97983,114.45,50.826 +97984,111.71,49.171 +97985,117.84,53.945 +97986,115.61,52.395 +97987,113.16,50.781 +97988,110.45,49.093 +97989,116.52,53.961 +97990,114.31,52.382 +97991,111.88,50.737 +97992,109.19,49.017 +97993,115.19,53.975 +97994,113.01,52.368 +97995,110.6,50.693 +97996,107.93,48.942 +97997,113.86,53.988 +97998,111.7,52.353 +97999,109.33,50.65 +98000,106.67,48.868 +98001,112.53,54 +98002,110.4,52.338 +98003,108.05,50.607 +98004,105.42,48.795 +98005,111.2,54.011 +98006,109.1,52.323 +98007,106.77,50.564 +98008,104.17,48.724 +98009,109.87,54.02 +98010,107.79,52.307 +98011,105.49,50.522 +98012,102.92,48.654 +98013,108.54,54.028 +98014,106.49,52.291 +98015,104.22,50.48 +98016,101.67,48.585 +98017,107.2,54.035 +98018,105.18,52.274 +98019,102.94,50.439 +98020,100.43,48.518 +98021,105.86,54.041 +98022,103.87,52.257 +98023,101.67,50.398 +98024,99.183,48.453 +98025,104.53,54.045 +98026,102.57,52.24 +98027,100.39,50.358 +98028,97.942,48.389 +98029,103.19,54.048 +98030,101.26,52.222 +98031,99.119,50.319 +98032,96.703,48.326 +98033,101.84,54.049 +98034,99.953,52.203 +98035,97.846,50.279 +98036,95.466,48.265 +98037,100.5,54.049 +98038,98.645,52.185 +98039,96.574,50.241 +98040,94.231,48.206 +98041,99.158,54.048 +98042,97.337,52.165 +98043,95.302,50.203 +98044,92.998,48.148 +98045,97.814,54.045 +98046,96.028,52.145 +98047,94.031,50.165 +98048,91.767,48.092 +98049,96.467,54.041 +98050,94.719,52.125 +98051,92.761,50.128 +98052,90.538,48.037 +98053,95.12,54.035 +98054,93.41,52.104 +98055,91.492,50.091 +98056,89.311,47.984 +98057,93.772,54.028 +98058,92.1,52.083 +98059,90.223,50.055 +98060,88.086,47.933 +98061,92.422,54.019 +98062,90.789,52.061 +98063,88.954,50.02 +98064,86.862,47.883 +98065,91.071,54.009 +98066,89.479,52.039 +98067,87.686,49.985 +98068,85.641,47.835 +98069,89.719,53.997 +98070,88.168,52.016 +98071,86.419,49.95 +98072,84.421,47.789 +98073,88.366,53.984 +98074,86.856,51.992 +98075,85.152,49.916 +98076,83.202,47.744 +98077,87.012,53.97 +98078,85.545,51.969 +98079,83.886,49.883 +98080,81.986,47.701 +98081,85.657,53.954 +98082,84.233,51.944 +98083,82.62,49.85 +98084,80.771,47.66 +98085,84.301,53.936 +98086,82.92,51.919 +98087,81.355,49.818 +98088,79.558,47.62 +98089,82.944,53.917 +98090,81.608,51.894 +98091,80.091,49.786 +98092,78.346,47.583 +98093,81.586,53.896 +98094,80.295,51.868 +98095,78.827,49.755 +98096,77.135,47.547 +98097,80.227,53.873 +98098,78.981,51.841 +98099,77.563,49.725 +98100,75.926,47.513 +98101,78.867,53.849 +98102,77.668,51.814 +98103,76.3,49.695 +98104,74.719,47.48 +98105,77.507,53.824 +98106,76.354,51.787 +98107,75.037,49.666 +98108,73.513,47.45 +98109,76.145,53.797 +98110,75.04,51.759 +98111,73.775,49.637 +98112,72.307,47.421 +98113,74.783,53.768 +98114,73.726,51.73 +98115,72.513,49.609 +98116,71.104,47.394 +98117,73.42,53.738 +98118,72.412,51.701 +98119,71.251,49.581 +98120,69.901,47.368 +98121,72.057,53.706 +98122,71.097,51.671 +98123,69.99,49.554 +98124,68.699,47.345 +98125,70.693,53.673 +98126,69.782,51.641 +98127,68.729,49.528 +98128,67.499,47.323 +98129,69.328,53.638 +98130,68.467,51.61 +98131,67.469,49.502 +98132,66.299,47.303 +98133,67.962,53.601 +98134,67.152,51.579 +98135,66.209,49.477 +98136,65.101,47.285 +98137,66.596,53.563 +98138,65.837,51.547 +98139,64.949,49.452 +98140,63.903,47.268 +98141,65.23,53.524 +98142,64.521,51.515 +98143,63.69,49.428 +98144,62.706,47.254 +98145,63.862,53.482 +98146,63.206,51.482 +98147,62.431,49.404 +98148,61.51,47.241 +98149,62.495,53.44 +98150,61.89,51.449 +98151,61.172,49.382 +98152,60.315,47.23 +98153,61.127,53.395 +98154,60.574,51.415 +98155,59.913,49.359 +98156,59.12,47.22 +98157,59.758,53.349 +98158,59.258,51.38 +98159,58.655,49.337 +98160,57.925,47.212 +98161,58.39,53.302 +98162,57.942,51.345 +98163,57.397,49.316 +98164,56.732,47.206 +98165,57.02,53.253 +98166,56.626,51.31 +98167,56.139,49.295 +98168,55.538,47.202 +98169,55.651,53.202 +98170,55.31,51.274 +98171,54.882,49.275 +98172,54.346,47.2 +98173,54.281,53.15 +98174,53.994,51.237 +98175,53.624,49.256 +98176,53.153,47.199 +98177,52.911,53.096 +98178,52.678,51.2 +98179,52.367,49.237 +98180,51.961,47.199 +98181,51.541,53.041 +98182,51.362,51.163 +98183,51.11,49.218 +98184,50.769,47.202 +98185,50.171,52.984 +98186,50.046,51.125 +98187,49.853,49.2 +98188,49.577,47.206 +98189,48.8,52.926 +98190,48.73,51.086 +98191,48.596,49.183 +98192,48.385,47.211 +98193,47.43,52.866 +98194,47.414,51.047 +98195,47.339,49.166 +98196,47.193,47.219 +98197,46.059,52.805 +98198,46.098,51.008 +98199,46.082,49.15 +98200,46.001,47.227 +98201,44.688,52.743 +98202,44.782,50.968 +98203,44.825,49.134 +98204,44.809,47.238 +98205,43.318,52.678 +98206,43.466,50.927 +98207,43.569,49.119 +98208,43.617,47.25 +98209,41.947,52.613 +98210,42.15,50.886 +98211,42.312,49.104 +98212,42.425,47.263 +98213,40.576,52.546 +98214,40.835,50.845 +98215,41.056,49.09 +98216,41.232,47.278 +98217,39.206,52.478 +98218,39.519,50.803 +98219,39.799,49.076 +98220,40.039,47.294 +98221,37.836,52.408 +98222,38.204,50.76 +98223,38.542,49.063 +98224,38.846,47.312 +98225,36.466,52.337 +98226,36.889,50.718 +98227,37.286,49.05 +98228,37.652,47.331 +98229,35.096,52.264 +98230,35.574,50.674 +98231,36.029,49.038 +98232,36.458,47.352 +98233,33.726,52.19 +98234,34.259,50.631 +98235,34.772,49.026 +98236,35.263,47.374 +98237,32.357,52.115 +98238,32.944,50.587 +98239,33.516,49.015 +98240,34.068,47.397 +98241,30.988,52.039 +98242,31.63,50.542 +98243,32.259,49.004 +98244,32.872,47.422 +98245,29.62,51.961 +98246,30.316,50.497 +98247,31.002,48.993 +98248,31.675,47.448 +98249,28.252,51.882 +98250,29.002,50.452 +98251,29.744,48.983 +98252,30.478,47.475 +98253,26.884,51.802 +98254,27.688,50.406 +98255,28.487,48.974 +98256,29.28,47.504 +98257,25.517,51.72 +98258,26.375,50.36 +98259,27.23,48.965 +98260,28.081,47.533 +98261,24.15,51.638 +98262,25.062,50.314 +98263,25.972,48.956 +98264,26.881,47.564 +98265,22.784,51.554 +98266,23.749,50.267 +98267,24.714,48.948 +98268,25.68,47.596 +98269,21.419,51.469 +98270,22.436,50.22 +98271,23.456,48.94 +98272,24.478,47.629 +98273,20.054,51.383 +98274,21.124,50.172 +98275,22.198,48.932 +98276,23.275,47.663 +98277,18.69,51.296 +98278,19.812,50.124 +98279,20.939,48.925 +98280,22.071,47.698 +98281,17.326,51.207 +98282,18.501,50.076 +98283,19.68,48.918 +98284,20.866,47.734 +98285,15.964,51.118 +98286,17.19,50.027 +98287,18.421,48.912 +98288,19.659,47.771 +98289,14.602,51.028 +98290,15.879,49.979 +98291,17.162,48.905 +98292,18.452,47.809 +98293,13.241,50.937 +98294,14.569,49.929 +98295,15.902,48.9 +98296,17.243,47.847 +98297,11.881,50.844 +98298,13.259,49.88 +98299,14.642,48.894 +98300,16.033,47.887 +98301,10.521,50.751 +98302,11.949,49.83 +98303,13.382,48.889 +98304,14.821,47.928 +98305,9.1629,50.657 +98306,10.64,49.78 +98307,12.122,48.884 +98308,13.609,47.969 +98309,7.8055,50.562 +98310,9.3315,49.73 +98311,10.861,48.879 +98312,12.394,48.011 +98313,6.4491,50.467 +98314,8.0233,49.68 +98315,9.5995,48.875 +98316,11.179,48.053 +98317,5.0938,50.37 +98318,6.7156,49.629 +98319,8.3379,48.871 +98320,9.9617,48.097 +98321,3.7396,50.273 +98322,5.4084,49.578 +98323,7.0759,48.867 +98324,8.7431,48.141 +98325,2.3865,50.175 +98326,4.1017,49.527 +98327,5.8135,48.863 +98328,7.523,48.185 +98329,1.0345,50.076 +98330,2.7955,49.475 +98331,4.5507,48.86 +98332,6.3013,48.231 +98333,359.68,49.977 +98334,1.4898,49.424 +98335,3.2875,48.857 +98336,5.0781,48.276 +98337,358.33,49.876 +98338,0.18467,49.372 +98339,2.0238,48.854 +98340,3.8533,48.322 +98341,356.99,49.776 +98342,358.88,49.32 +98343,0.75978,48.851 +98344,2.6268,48.369 +98345,355.64,49.675 +98346,357.58,49.268 +98347,359.5,48.848 +98348,1.3987,48.416 +98349,354.29,49.573 +98350,356.27,49.216 +98351,358.23,48.846 +98352,0.16894,48.463 +98353,352.95,49.471 +98354,354.97,49.164 +98355,356.96,48.843 +98356,358.94,48.511 +98357,351.61,49.368 +98358,353.67,49.112 +98359,355.7,48.841 +98360,357.7,48.559 +98361,350.27,49.265 +98362,352.37,49.059 +98363,354.43,48.839 +98364,356.47,48.607 +98365,348.93,49.162 +98366,351.06,49.006 +98367,353.17,48.837 +98368,355.23,48.655 +98369,347.59,49.058 +98370,349.76,48.954 +98371,351.9,48.835 +98372,353.99,48.704 +98373,346.25,48.954 +98374,348.46,48.901 +98375,350.63,48.834 +98376,352.75,48.753 +98377,344.91,48.849 +98378,347.16,48.848 +98379,349.36,48.832 +98380,351.51,48.801 +98381,343.58,48.745 +98382,345.87,48.796 +98383,348.09,48.83 +98384,350.27,48.85 +98385,342.25,48.64 +98386,344.57,48.743 +98387,346.82,48.829 +98388,349.02,48.899 +98389,340.92,48.535 +98390,343.27,48.69 +98391,345.55,48.827 +98392,347.77,48.948 +98393,339.59,48.43 +98394,341.97,48.637 +98395,344.28,48.825 +98396,346.53,48.997 +98397,338.26,48.325 +98398,340.68,48.585 +98399,343.01,48.824 +98400,345.27,49.045 +98401,336.94,48.22 +98402,339.38,48.532 +98403,341.74,48.822 +98404,344.02,49.094 +98405,335.62,48.115 +98406,338.09,48.479 +98407,340.47,48.821 +98408,342.77,49.142 +98409,334.29,48.01 +98410,336.8,48.427 +98411,339.2,48.819 +98412,341.51,49.19 +98413,332.97,47.905 +98414,335.5,48.374 +98415,337.92,48.817 +98416,340.25,49.238 +98417,331.66,47.801 +98418,334.21,48.322 +98419,336.65,48.816 +98420,338.99,49.286 +98421,330.34,47.696 +98422,332.92,48.269 +98423,335.38,48.814 +98424,337.73,49.333 +98425,329.03,47.592 +98426,331.63,48.217 +98427,334.1,48.812 +98428,336.46,49.38 +98429,327.72,47.488 +98430,330.34,48.165 +98431,332.82,48.81 +98432,335.2,49.426 +98433,326.41,47.384 +98434,329.05,48.113 +98435,331.55,48.808 +98436,333.93,49.472 +98437,325.1,47.281 +98438,327.76,48.061 +98439,330.27,48.806 +98440,332.66,49.518 +98441,323.79,47.178 +98442,326.47,48.01 +98443,329,48.804 +98444,331.39,49.563 +98445,322.49,47.075 +98446,325.18,47.958 +98447,327.72,48.801 +98448,330.11,49.608 +98449,321.19,46.973 +98450,323.9,47.907 +98451,326.44,48.798 +98452,328.84,49.652 +98453,319.89,46.872 +98454,322.61,47.856 +98455,325.16,48.796 +98456,327.56,49.695 +98457,318.59,46.771 +98458,321.33,47.806 +98459,323.88,48.793 +98460,326.28,49.738 +98461,317.3,46.671 +98462,320.04,47.755 +98463,322.6,48.789 +98464,325,49.78 +98465,316.01,46.571 +98466,318.76,47.705 +98467,321.32,48.786 +98468,323.72,49.821 +98469,314.71,46.473 +98470,317.48,47.655 +98471,320.04,48.782 +98472,322.43,49.862 +98473,313.43,46.374 +98474,316.2,47.605 +98475,318.76,48.779 +98476,321.15,49.901 +98477,312.14,46.277 +98478,314.91,47.556 +98479,317.47,48.774 +98480,319.86,49.94 +98481,310.86,46.181 +98482,313.63,47.507 +98483,316.19,48.77 +98484,318.57,49.978 +98485,309.58,46.085 +98486,312.35,47.458 +98487,314.91,48.765 +98488,317.28,50.016 +98489,308.3,45.99 +98490,311.08,47.409 +98491,313.62,48.761 +98492,315.98,50.052 +98493,307.02,45.897 +98494,309.8,47.361 +98495,312.34,48.755 +98496,314.69,50.087 +98497,305.75,45.804 +98498,308.52,47.314 +98499,311.05,48.75 +98500,313.39,50.122 +98501,304.47,45.712 +98502,307.25,47.266 +98503,309.77,48.744 +98504,312.09,50.155 +98505,303.2,45.622 +98506,305.97,47.219 +98507,308.48,48.738 +98508,310.79,50.188 +98509,301.94,45.532 +98510,304.7,47.173 +98511,307.2,48.731 +98512,309.49,50.219 +98513,300.67,45.444 +98514,303.42,47.127 +98515,305.91,48.725 +98516,308.18,50.249 +98517,299.41,45.357 +98518,302.15,47.081 +98519,304.62,48.718 +98520,306.88,50.278 +98521,298.15,45.271 +98522,300.88,47.036 +98523,303.33,48.71 +98524,305.57,50.307 +98525,296.89,45.186 +98526,299.6,46.991 +98527,302.04,48.702 +98528,304.26,50.333 +98529,295.63,45.103 +98530,298.33,46.946 +98531,300.75,48.694 +98532,302.95,50.359 +98533,294.38,45.021 +98534,297.06,46.902 +98535,299.46,48.685 +98536,301.64,50.384 +98537,293.13,44.94 +98538,295.79,46.859 +98539,298.17,48.676 +98540,300.33,50.407 +98541,291.88,44.861 +98542,294.53,46.816 +98543,296.88,48.667 +98544,299.01,50.429 +98545,290.63,44.783 +98546,293.26,46.773 +98547,295.59,48.657 +98548,297.69,50.45 +98549,289.39,44.707 +98550,291.99,46.731 +98551,294.3,48.647 +98552,296.38,50.469 +98553,288.15,44.632 +98554,290.72,46.69 +98555,293.01,48.636 +98556,295.06,50.487 +98557,286.91,44.559 +98558,289.46,46.649 +98559,291.71,48.625 +98560,293.73,50.504 +98561,285.67,44.488 +98562,288.19,46.608 +98563,290.42,48.613 +98564,292.41,50.519 +98565,284.43,44.418 +98566,286.93,46.569 +98567,289.12,48.601 +98568,291.09,50.533 +98569,283.2,44.349 +98570,285.67,46.529 +98571,287.83,48.589 +98572,289.76,50.546 +98573,281.97,44.283 +98574,284.4,46.49 +98575,286.54,48.576 +98576,288.44,50.557 +98577,280.74,44.218 +98578,283.14,46.452 +98579,285.24,48.562 +98580,287.11,50.566 +98581,279.51,44.154 +98582,281.88,46.415 +98583,283.94,48.548 +98584,285.78,50.574 +98585,278.29,44.093 +98586,280.62,46.378 +98587,282.65,48.534 +98588,284.45,50.581 +98589,277.07,44.033 +98590,279.36,46.341 +98591,281.35,48.519 +98592,283.12,50.586 +98593,275.84,43.975 +98594,278.1,46.305 +98595,280.05,48.503 +98596,281.78,50.59 +98597,274.63,43.919 +98598,276.84,46.27 +98599,278.76,48.487 +98600,280.45,50.592 +98601,273.41,43.865 +98602,275.58,46.235 +98603,277.46,48.471 +98604,279.11,50.593 +98605,272.19,43.813 +98606,274.32,46.201 +98607,276.16,48.454 +98608,277.78,50.592 +98609,270.98,43.762 +98610,273.07,46.168 +98611,274.86,48.437 +98612,276.44,50.589 +98613,269.77,43.714 +98614,271.81,46.135 +98615,273.56,48.418 +98616,275.1,50.585 +98617,268.56,43.667 +98618,270.55,46.103 +98619,272.27,48.4 +98620,273.76,50.58 +98621,267.35,43.622 +98622,269.3,46.071 +98623,270.97,48.381 +98624,272.42,50.572 +98625,266.15,43.58 +98626,268.04,46.041 +98627,269.67,48.361 +98628,271.08,50.563 +98629,264.95,43.539 +98630,266.79,46.01 +98631,268.37,48.341 +98632,269.74,50.553 +98633,263.74,43.5 +98634,265.54,45.981 +98635,267.07,48.32 +98636,268.39,50.541 +98637,262.54,43.463 +98638,264.28,45.952 +98639,265.77,48.299 +98640,267.05,50.527 +98641,261.34,43.428 +98642,263.03,45.924 +98643,264.46,48.277 +98644,265.7,50.511 +98645,260.15,43.395 +98646,261.78,45.896 +98647,263.16,48.255 +98648,264.36,50.494 +98649,258.95,43.365 +98650,260.53,45.869 +98651,261.86,48.232 +98652,263.01,50.475 +98653,257.75,43.336 +98654,259.28,45.843 +98655,260.56,48.209 +98656,261.66,50.455 +98657,256.56,43.309 +98658,258.03,45.817 +98659,259.26,48.185 +98660,260.31,50.433 +98661,255.37,43.284 +98662,256.78,45.792 +98663,257.96,48.16 +98664,258.97,50.409 +98665,254.18,43.262 +98666,255.53,45.768 +98667,256.65,48.135 +98668,257.62,50.383 +98669,252.99,43.241 +98670,254.28,45.744 +98671,255.35,48.109 +98672,256.27,50.356 +98673,251.8,43.222 +98674,253.03,45.721 +98675,254.05,48.083 +98676,254.91,50.327 +98677,250.61,43.206 +98678,251.78,45.699 +98679,252.75,48.056 +98680,253.56,50.297 +98681,249.42,43.191 +98682,250.53,45.678 +98683,251.44,48.029 +98684,252.21,50.264 +98685,248.24,43.178 +98686,249.28,45.657 +98687,250.14,48.001 +98688,250.86,50.23 +98689,247.05,43.168 +98690,248.03,45.636 +98691,248.84,47.972 +98692,249.51,50.195 +98693,245.87,43.159 +98694,246.79,45.617 +98695,247.53,47.943 +98696,248.15,50.157 +98697,244.68,43.153 +98698,245.54,45.598 +98699,246.23,47.914 +98700,246.8,50.118 +98701,243.5,43.148 +98702,244.29,45.58 +98703,244.93,47.883 +98704,245.44,50.078 +98705,242.32,43.146 +98706,243.04,45.562 +98707,243.62,47.853 +98708,244.09,50.035 +98709,241.14,43.145 +98710,241.8,45.545 +98711,242.32,47.822 +98712,242.73,49.991 +98713,239.95,43.146 +98714,240.55,45.529 +98715,241.02,47.79 +98716,241.38,49.946 +98717,238.77,43.149 +98718,239.31,45.513 +98719,239.71,47.757 +98720,240.02,49.898 +98721,237.59,43.155 +98722,238.06,45.498 +98723,238.41,47.725 +98724,238.67,49.849 +98725,236.41,43.162 +98726,236.81,45.484 +98727,237.11,47.691 +98728,237.31,49.799 +98729,235.23,43.171 +98730,235.57,45.47 +98731,235.8,47.657 +98732,235.96,49.747 +98733,234.05,43.182 +98734,234.32,45.457 +98735,234.5,47.623 +98736,234.6,49.693 +98737,232.87,43.194 +98738,233.08,45.444 +98739,233.2,47.588 +98740,233.25,49.637 +98741,231.69,43.209 +98742,231.83,45.433 +98743,231.89,47.552 +98744,231.89,49.58 +98745,230.51,43.225 +98746,230.59,45.421 +98747,230.59,47.516 +98748,230.53,49.522 +98749,229.33,43.243 +98750,229.34,45.411 +98751,229.29,47.48 +98752,229.18,49.461 +98753,228.15,43.263 +98754,228.1,45.401 +98755,227.98,47.443 +98756,227.82,49.399 +98757,226.97,43.285 +98758,226.85,45.391 +98759,226.68,47.405 +98760,226.47,49.336 +98761,225.79,43.308 +98762,225.61,45.383 +98763,225.38,47.367 +98764,225.11,49.271 +98765,224.61,43.333 +98766,224.36,45.374 +98767,224.08,47.329 +98768,223.76,49.205 +98769,223.42,43.36 +98770,223.12,45.367 +98771,222.77,47.29 +98772,222.4,49.137 +98773,222.24,43.388 +98774,221.87,45.36 +98775,221.47,47.25 +98776,221.05,49.068 +98777,221.06,43.418 +98778,220.63,45.353 +98779,220.17,47.21 +98780,219.69,48.997 +98781,219.87,43.449 +98782,219.38,45.347 +98783,218.87,47.17 +98784,218.34,48.924 +98785,218.69,43.482 +98786,218.14,45.342 +98787,217.57,47.129 +98788,216.98,48.851 +98789,217.51,43.517 +98790,216.89,45.337 +98791,216.26,47.088 +98792,215.63,48.775 +98793,216.32,43.552 +98794,215.64,45.332 +98795,214.96,47.046 +98796,214.28,48.699 +98797,215.13,43.59 +98798,214.4,45.328 +98799,213.66,47.004 +98800,212.92,48.621 +98801,213.95,43.629 +98802,213.15,45.325 +98803,212.36,46.961 +98804,211.57,48.542 +98805,212.76,43.669 +98806,211.91,45.322 +98807,211.06,46.918 +98808,210.22,48.461 +98809,211.57,43.71 +98810,210.66,45.32 +98811,209.76,46.875 +98812,208.87,48.379 +98813,210.38,43.753 +98814,209.41,45.318 +98815,208.46,46.831 +98816,207.52,48.296 +98817,209.18,43.797 +98818,208.17,45.317 +98819,207.16,46.787 +98820,206.17,48.212 +98821,207.99,43.842 +98822,206.92,45.316 +98823,205.86,46.743 +98824,204.82,48.126 +98825,206.8,43.888 +98826,205.67,45.315 +98827,204.57,46.698 +98828,203.47,48.039 +98829,205.6,43.936 +98830,204.43,45.315 +98831,203.27,46.653 +98832,202.13,47.951 +98833,204.41,43.984 +98834,203.18,45.315 +98835,201.97,46.607 +98836,200.78,47.862 +98837,203.21,44.034 +98838,201.93,45.316 +98839,200.67,46.562 +98840,199.43,47.772 +98841,202.01,44.084 +98842,200.68,45.317 +98843,199.38,46.516 +98844,198.09,47.681 +98845,200.81,44.136 +98846,199.43,45.318 +98847,198.08,46.469 +98848,196.75,47.588 +98849,199.61,44.188 +98850,198.18,45.32 +98851,196.78,46.422 +98852,195.4,47.495 +98853,198.4,44.242 +98854,196.93,45.322 +98855,195.49,46.375 +98856,194.06,47.401 +98857,197.2,44.296 +98858,195.68,45.325 +98859,194.19,46.328 +98860,192.72,47.305 +98861,195.99,44.351 +98862,194.43,45.328 +98863,192.9,46.281 +98864,191.38,47.209 +98865,194.78,44.407 +98866,193.18,45.331 +98867,191.6,46.233 +98868,190.04,47.112 +98869,193.57,44.464 +98870,191.93,45.335 +98871,190.31,46.185 +98872,188.71,47.014 +98873,192.36,44.521 +98874,190.68,45.338 +98875,189.02,46.137 +98876,187.37,46.915 +98877,191.15,44.579 +98878,189.43,45.342 +98879,187.72,46.088 +98880,186.03,46.815 +98881,189.94,44.637 +98882,188.18,45.347 +98883,186.43,46.04 +98884,184.7,46.715 +98885,188.72,44.696 +98886,186.92,45.351 +98887,185.14,45.991 +98888,183.37,46.614 +98889,187.5,44.756 +98890,185.67,45.356 +98891,183.85,45.942 +98892,182.04,46.512 +98893,186.28,44.816 +98894,184.42,45.361 +98895,182.56,45.893 +98896,180.71,46.41 +98897,185.06,44.876 +98898,183.16,45.367 +98899,181.27,45.844 +98900,179.38,46.307 +98901,183.84,44.937 +98902,181.91,45.372 +98903,179.98,45.794 +98904,178.05,46.203 +98905,182.61,44.998 +98906,180.65,45.378 +98907,178.69,45.745 +98908,176.72,46.099 +98909,181.39,45.06 +98910,179.4,45.383 +98911,177.4,45.695 +98912,175.4,45.994 +98913,180.16,45.121 +98914,178.14,45.389 +98915,176.12,45.646 +98916,174.08,45.889 +98917,178.93,45.183 +98918,176.89,45.395 +98919,174.83,45.596 +98920,172.76,45.784 +98921,177.69,45.245 +98922,175.63,45.402 +98923,173.54,45.546 +98924,171.44,45.678 +98925,176.46,45.308 +98926,174.37,45.408 +98927,172.26,45.496 +98928,170.12,45.572 +98929,175.22,45.37 +98930,173.11,45.414 +98931,170.97,45.447 +98932,168.8,45.465 +98933,173.99,45.432 +98934,171.85,45.421 +98935,169.69,45.397 +98936,167.49,45.358 +98937,172.75,45.494 +98938,170.6,45.428 +98939,168.41,45.347 +98940,166.17,45.252 +98941,171.5,45.557 +98942,169.34,45.434 +98943,167.12,45.297 +98944,164.86,45.145 +98945,170.26,45.619 +98946,168.08,45.441 +98947,165.84,45.248 +98948,163.55,45.037 +98949,169.02,45.681 +98950,166.82,45.448 +98951,164.56,45.198 +98952,162.25,44.93 +98953,167.77,45.743 +98954,165.55,45.454 +98955,163.28,45.148 +98956,160.94,44.823 +98957,166.52,45.804 +98958,164.29,45.461 +98959,162,45.099 +98960,159.64,44.716 +98961,165.27,45.866 +98962,163.03,45.468 +98963,160.72,45.049 +98964,158.33,44.608 +98965,164.01,45.927 +98966,161.77,45.474 +98967,159.44,45 +98968,157.03,44.501 +98969,162.76,45.988 +98970,160.5,45.481 +98971,158.16,44.951 +98972,155.73,44.394 +98973,161.5,46.048 +98974,159.24,45.488 +98975,156.89,44.902 +98976,154.44,44.288 +98977,160.24,46.108 +98978,157.97,45.494 +98979,155.61,44.853 +98980,153.14,44.181 +98981,158.98,46.168 +98982,156.71,45.5 +98983,154.34,44.804 +98984,151.85,44.075 +98985,157.72,46.227 +98986,155.44,45.507 +98987,153.06,44.755 +98988,150.56,43.969 +98989,156.46,46.285 +98990,154.18,45.513 +98991,151.79,44.707 +98992,149.27,43.864 +98993,155.19,46.343 +98994,152.91,45.519 +98995,150.51,44.659 +98996,147.99,43.759 +98997,153.92,46.401 +98998,151.64,45.525 +98999,149.24,44.611 +99000,146.7,43.655 +99001,152.65,46.457 +99002,150.37,45.531 +99003,147.97,44.563 +99004,145.42,43.551 +99005,151.38,46.513 +99006,149.1,45.536 +99007,146.7,44.516 +99008,144.14,43.447 +99009,150.11,46.569 +99010,147.83,45.542 +99011,145.43,44.469 +99012,142.86,43.345 +99013,148.83,46.623 +99014,146.56,45.547 +99015,144.16,44.422 +99016,141.58,43.243 +99017,147.55,46.677 +99018,145.29,45.552 +99019,142.89,44.376 +99020,140.31,43.141 +99021,146.27,46.73 +99022,144.02,45.557 +99023,141.62,44.329 +99024,139.04,43.041 +99025,144.99,46.782 +99026,142.75,45.561 +99027,140.35,44.283 +99028,137.77,42.941 +99029,143.71,46.833 +99030,141.48,45.566 +99031,139.09,44.238 +99032,136.5,42.842 +99033,142.43,46.884 +99034,140.21,45.57 +99035,137.82,44.193 +99036,135.24,42.744 +99037,141.14,46.933 +99038,138.93,45.574 +99039,136.56,44.148 +99040,133.98,42.647 +99041,139.85,46.981 +99042,137.66,45.577 +99043,135.29,44.104 +99044,132.72,42.551 +99045,138.56,47.029 +99046,136.38,45.58 +99047,134.03,44.06 +99048,131.46,42.456 +99049,137.27,47.075 +99050,135.11,45.583 +99051,132.77,44.016 +99052,130.2,42.362 +99053,135.98,47.12 +99054,133.83,45.586 +99055,131.51,43.973 +99056,128.95,42.27 +99057,134.68,47.164 +99058,132.56,45.588 +99059,130.25,43.93 +99060,127.7,42.178 +99061,133.39,47.207 +99062,131.28,45.59 +99063,128.99,43.888 +99064,126.45,42.088 +99065,132.09,47.249 +99066,130,45.592 +99067,127.73,43.846 +99068,125.2,41.999 +99069,130.79,47.289 +99070,128.73,45.593 +99071,126.47,43.805 +99072,123.96,41.911 +99073,129.49,47.329 +99074,127.45,45.594 +99075,125.21,43.764 +99076,122.72,41.825 +99077,128.19,47.367 +99078,126.17,45.594 +99079,123.95,43.724 +99080,121.48,41.74 +99081,126.88,47.404 +99082,124.89,45.594 +99083,122.7,43.684 +99084,120.24,41.656 +99085,125.58,47.439 +99086,123.61,45.594 +99087,121.44,43.645 +99088,119,41.574 +99089,124.27,47.473 +99090,122.33,45.593 +99091,120.18,43.606 +99092,117.77,41.494 +99093,122.96,47.506 +99094,121.05,45.592 +99095,118.93,43.568 +99096,116.54,41.415 +99097,121.65,47.538 +99098,119.77,45.591 +99099,117.68,43.531 +99100,115.31,41.338 +99101,120.34,47.568 +99102,118.49,45.588 +99103,116.42,43.494 +99104,114.08,41.262 +99105,119.03,47.596 +99106,117.21,45.586 +99107,115.17,43.458 +99108,112.86,41.188 +99109,117.72,47.624 +99110,115.92,45.583 +99111,113.92,43.422 +99112,111.64,41.116 +99113,116.4,47.649 +99114,114.64,45.58 +99115,112.67,43.387 +99116,110.42,41.046 +99117,115.09,47.674 +99118,113.36,45.576 +99119,111.42,43.352 +99120,109.2,40.977 +99121,113.77,47.696 +99122,112.07,45.572 +99123,110.17,43.318 +99124,107.98,40.91 +99125,112.45,47.717 +99126,110.79,45.567 +99127,108.92,43.285 +99128,106.77,40.845 +99129,111.13,47.737 +99130,109.51,45.561 +99131,107.67,43.252 +99132,105.56,40.782 +99133,109.81,47.755 +99134,108.22,45.556 +99135,106.42,43.22 +99136,104.35,40.721 +99137,108.49,47.772 +99138,106.94,45.549 +99139,105.18,43.189 +99140,103.14,40.662 +99141,107.16,47.787 +99142,105.65,45.543 +99143,103.93,43.158 +99144,101.93,40.605 +99145,105.84,47.8 +99146,104.36,45.535 +99147,102.68,43.128 +99148,100.73,40.55 +99149,104.52,47.812 +99150,103.08,45.527 +99151,101.44,43.099 +99152,99.526,40.497 +99153,103.19,47.822 +99154,101.79,45.519 +99155,100.19,43.071 +99156,98.325,40.446 +99157,101.86,47.83 +99158,100.5,45.51 +99159,98.949,43.043 +99160,97.126,40.397 +99161,100.53,47.837 +99162,99.217,45.501 +99163,97.705,43.016 +99164,95.929,40.35 +99165,99.205,47.842 +99166,97.929,45.491 +99167,96.462,42.989 +99168,94.734,40.305 +99169,97.875,47.845 +99170,96.642,45.48 +99171,95.219,42.963 +99172,93.54,40.263 +99173,96.545,47.847 +99174,95.353,45.469 +99175,93.977,42.939 +99176,92.348,40.222 +99177,95.213,47.847 +99178,94.065,45.457 +99179,92.735,42.914 +99180,91.158,40.184 +99181,93.881,47.845 +99182,92.777,45.445 +99183,91.494,42.891 +99184,89.969,40.148 +99185,92.548,47.841 +99186,91.488,45.432 +99187,90.253,42.868 +99188,88.781,40.114 +99189,91.214,47.836 +99190,90.199,45.419 +99191,89.013,42.846 +99192,87.594,40.083 +99193,89.88,47.829 +99194,88.909,45.405 +99195,87.773,42.825 +99196,86.409,40.053 +99197,88.545,47.82 +99198,87.62,45.39 +99199,86.533,42.804 +99200,85.226,40.026 +99201,87.21,47.81 +99202,86.33,45.375 +99203,85.294,42.784 +99204,84.043,40.002 +99205,85.873,47.798 +99206,85.041,45.36 +99207,84.055,42.765 +99208,82.862,39.979 +99209,84.537,47.784 +99210,83.751,45.344 +99211,82.817,42.747 +99212,81.681,39.959 +99213,83.2,47.768 +99214,82.46,45.327 +99215,81.579,42.729 +99216,80.502,39.941 +99217,81.862,47.75 +99218,81.17,45.309 +99219,80.341,42.712 +99220,79.323,39.925 +99221,80.524,47.731 +99222,79.88,45.291 +99223,79.104,42.696 +99224,78.146,39.912 +99225,79.186,47.71 +99226,78.589,45.273 +99227,77.866,42.681 +99228,76.969,39.901 +99229,77.847,47.687 +99230,77.299,45.254 +99231,76.629,42.667 +99232,75.793,39.892 +99233,76.508,47.662 +99234,76.008,45.234 +99235,75.393,42.653 +99236,74.618,39.885 +99237,75.168,47.636 +99238,74.718,45.214 +99239,74.156,42.64 +99240,73.443,39.881 +99241,73.829,47.607 +99242,73.427,45.193 +99243,72.92,42.628 +99244,72.269,39.879 +99245,72.489,47.577 +99246,72.136,45.172 +99247,71.684,42.616 +99248,71.096,39.879 +99249,71.149,47.546 +99250,70.845,45.15 +99251,70.448,42.605 +99252,69.923,39.882 +99253,69.809,47.512 +99254,69.555,45.127 +99255,69.212,42.595 +99256,68.75,39.886 +99257,68.468,47.477 +99258,68.264,45.104 +99259,67.977,42.586 +99260,67.577,39.893 +99261,67.128,47.44 +99262,66.973,45.08 +99263,66.741,42.578 +99264,66.405,39.902 +99265,65.787,47.401 +99266,65.682,45.056 +99267,65.506,42.57 +99268,65.233,39.914 +99269,64.447,47.36 +99270,64.392,45.031 +99271,64.271,42.563 +99272,64.061,39.927 +99273,63.106,47.318 +99274,63.101,45.006 +99275,63.036,42.556 +99276,62.889,39.943 +99277,61.766,47.274 +99278,61.811,44.98 +99279,61.801,42.551 +99280,61.717,39.961 +99281,60.426,47.229 +99282,60.52,44.954 +99283,60.566,42.546 +99284,60.544,39.98 +99285,59.086,47.181 +99286,59.23,44.927 +99287,59.331,42.542 +99288,59.372,40.002 +99289,57.746,47.132 +99290,57.94,44.899 +99291,58.096,42.538 +99292,58.199,40.026 +99293,56.406,47.081 +99294,56.65,44.871 +99295,56.861,42.536 +99296,57.026,40.052 +99297,55.066,47.029 +99298,55.36,44.843 +99299,55.625,42.534 +99300,55.853,40.081 +99301,53.727,46.975 +99302,54.07,44.813 +99303,54.39,42.532 +99304,54.679,40.111 +99305,52.388,46.919 +99306,52.781,44.784 +99307,53.155,42.532 +99308,53.505,40.143 +99309,51.05,46.862 +99310,51.491,44.754 +99311,51.92,42.532 +99312,52.33,40.177 +99313,49.711,46.803 +99314,50.202,44.723 +99315,50.684,42.532 +99316,51.154,40.213 +99317,48.374,46.743 +99318,48.913,44.692 +99319,49.449,42.534 +99320,49.978,40.25 +99321,47.036,46.68 +99322,47.624,44.66 +99323,48.213,42.536 +99324,48.801,40.29 +99325,45.699,46.617 +99326,46.336,44.628 +99327,46.977,42.538 +99328,47.623,40.331 +99329,44.363,46.552 +99330,45.048,44.596 +99331,45.741,42.541 +99332,46.445,40.374 +99333,43.027,46.485 +99334,43.76,44.563 +99335,44.505,42.545 +99336,45.265,40.419 +99337,41.692,46.417 +99338,42.472,44.529 +99339,43.269,42.55 +99340,44.085,40.466 +99341,40.358,46.347 +99342,41.185,44.495 +99343,42.032,42.555 +99344,42.903,40.514 +99345,39.024,46.276 +99346,39.898,44.461 +99347,40.795,42.561 +99348,41.72,40.564 +99349,37.691,46.203 +99350,38.611,44.426 +99351,39.558,42.567 +99352,40.537,40.615 +99353,36.358,46.13 +99354,37.325,44.391 +99355,38.321,42.574 +99356,39.352,40.668 +99357,35.027,46.054 +99358,36.039,44.355 +99359,37.083,42.581 +99360,38.166,40.723 +99361,33.696,45.978 +99362,34.753,44.319 +99363,35.845,42.589 +99364,36.978,40.779 +99365,32.366,45.899 +99366,33.468,44.283 +99367,34.607,42.597 +99368,35.789,40.836 +99369,31.037,45.82 +99370,32.183,44.246 +99371,33.369,42.606 +99372,34.599,40.895 +99373,29.708,45.74 +99374,30.899,44.209 +99375,32.13,42.616 +99376,33.408,40.955 +99377,28.381,45.658 +99378,29.615,44.171 +99379,30.891,42.626 +99380,32.215,41.016 +99381,27.055,45.575 +99382,28.331,44.134 +99383,29.651,42.636 +99384,31.02,41.078 +99385,25.729,45.49 +99386,27.048,44.095 +99387,28.411,42.647 +99388,29.824,41.142 +99389,24.405,45.405 +99390,25.765,44.057 +99391,27.17,42.659 +99392,28.627,41.207 +99393,23.082,45.318 +99394,24.483,44.018 +99395,25.93,42.671 +99396,27.427,41.273 +99397,21.76,45.231 +99398,23.202,43.979 +99399,24.688,42.683 +99400,26.227,41.34 +99401,20.439,45.142 +99402,21.92,43.939 +99403,23.447,42.696 +99404,25.024,41.408 +99405,19.119,45.052 +99406,20.64,43.9 +99407,22.205,42.709 +99408,23.82,41.477 +99409,17.801,44.961 +99410,19.359,43.86 +99411,20.962,42.722 +99412,22.615,41.547 +99413,16.483,44.869 +99414,18.08,43.82 +99415,19.719,42.736 +99416,21.407,41.618 +99417,15.167,44.777 +99418,16.8,43.779 +99419,18.476,42.75 +99420,20.198,41.689 +99421,13.853,44.683 +99422,15.522,43.738 +99423,17.232,42.765 +99424,18.987,41.762 +99425,12.539,44.588 +99426,14.244,43.698 +99427,15.987,42.78 +99428,17.774,41.835 +99429,11.227,44.493 +99430,12.966,43.657 +99431,14.742,42.795 +99432,16.559,41.909 +99433,9.9167,44.397 +99434,11.689,43.615 +99435,13.497,42.811 +99436,15.343,41.983 +99437,8.6075,44.3 +99438,10.413,43.574 +99439,12.251,42.827 +99440,14.124,42.058 +99441,7.2998,44.202 +99442,9.1371,43.532 +99443,11.005,42.843 +99444,12.904,42.134 +99445,5.9936,44.104 +99446,7.862,43.491 +99447,9.7576,42.859 +99448,11.682,42.21 +99449,4.6889,44.005 +99450,6.5874,43.449 +99451,8.51,42.876 +99452,10.458,42.287 +99453,3.3857,43.906 +99454,5.3135,43.407 +99455,7.2619,42.893 +99456,9.2323,42.364 +99457,2.0842,43.805 +99458,4.0401,43.365 +99459,6.0132,42.91 +99460,8.0045,42.441 +99461,0.7842,43.705 +99462,2.7674,43.323 +99463,4.764,42.927 +99464,6.7748,42.518 +99465,359.49,43.604 +99466,1.4954,43.281 +99467,3.5143,42.945 +99468,5.5431,42.596 +99469,358.19,43.502 +99470,0.22399,43.238 +99471,2.2639,42.962 +99472,4.3095,42.674 +99473,356.89,43.4 +99474,358.95,43.196 +99475,1.013,42.98 +99476,3.074,42.753 +99477,355.6,43.298 +99478,357.68,43.154 +99479,359.76,42.998 +99480,1.8366,42.831 +99481,354.31,43.195 +99482,356.41,43.112 +99483,358.51,43.016 +99484,0.59716,42.909 +99485,353.02,43.093 +99486,355.14,43.069 +99487,357.26,43.034 +99488,359.36,42.988 +99489,351.73,42.99 +99490,353.88,43.027 +99491,356,43.052 +99492,358.11,43.066 +99493,350.45,42.886 +99494,352.61,42.985 +99495,354.75,43.071 +99496,356.87,43.145 +99497,349.16,42.783 +99498,351.34,42.943 +99499,353.5,43.089 +99500,355.62,43.223 +99501,347.88,42.68 +99502,350.08,42.901 +99503,352.24,43.108 +99504,354.37,43.301 +99505,346.6,42.576 +99506,348.81,42.859 +99507,350.98,43.126 +99508,353.12,43.379 +99509,345.32,42.473 +99510,347.55,42.817 +99511,349.73,43.144 +99512,351.87,43.457 +99513,344.04,42.369 +99514,346.28,42.775 +99515,348.47,43.163 +99516,350.61,43.534 +99517,342.77,42.266 +99518,345.02,42.733 +99519,347.21,43.181 +99520,349.36,43.611 +99521,341.5,42.163 +99522,343.76,42.692 +99523,345.96,43.2 +99524,348.1,43.688 +99525,340.22,42.06 +99526,342.5,42.651 +99527,344.7,43.218 +99528,346.84,43.764 +99529,338.96,41.958 +99530,341.23,42.61 +99531,343.44,43.237 +99532,345.57,43.84 +99533,337.69,41.855 +99534,339.97,42.569 +99535,342.18,43.255 +99536,344.31,43.915 +99537,336.42,41.753 +99538,338.71,42.528 +99539,340.92,43.273 +99540,343.04,43.99 +99541,335.16,41.652 +99542,337.46,42.488 +99543,339.66,43.291 +99544,341.78,44.064 +99545,333.9,41.551 +99546,336.2,42.447 +99547,338.4,43.309 +99548,340.51,44.138 +99549,332.64,41.45 +99550,334.94,42.408 +99551,337.13,43.327 +99552,339.23,44.211 +99553,331.39,41.35 +99554,333.68,42.368 +99555,335.87,43.344 +99556,337.96,44.283 +99557,330.13,41.251 +99558,332.43,42.329 +99559,334.61,43.362 +99560,336.69,44.354 +99561,328.88,41.152 +99562,331.17,42.29 +99563,333.34,43.379 +99564,335.41,44.425 +99565,327.63,41.054 +99566,329.92,42.251 +99567,332.08,43.396 +99568,334.13,44.495 +99569,326.38,40.957 +99570,328.66,42.213 +99571,330.81,43.413 +99572,332.85,44.564 +99573,325.13,40.86 +99574,327.41,42.175 +99575,329.55,43.43 +99576,331.57,44.632 +99577,323.89,40.764 +99578,326.16,42.137 +99579,328.28,43.446 +99580,330.28,44.699 +99581,322.65,40.67 +99582,324.91,42.1 +99583,327.01,43.463 +99584,329,44.766 +99585,321.41,40.576 +99586,323.65,42.063 +99587,325.75,43.479 +99588,327.71,44.831 +99589,320.17,40.483 +99590,322.4,42.026 +99591,324.48,43.494 +99592,326.42,44.895 +99593,318.94,40.392 +99594,321.15,41.99 +99595,323.21,43.51 +99596,325.13,44.959 +99597,317.7,40.301 +99598,319.91,41.955 +99599,321.94,43.525 +99600,323.84,45.021 +99601,316.47,40.212 +99602,318.66,41.92 +99603,320.67,43.54 +99604,322.55,45.082 +99605,315.24,40.123 +99606,317.41,41.885 +99607,319.4,43.554 +99608,321.25,45.142 +99609,314.01,40.036 +99610,316.16,41.851 +99611,318.13,43.568 +99612,319.96,45.201 +99613,312.79,39.951 +99614,314.92,41.818 +99615,316.86,43.582 +99616,318.66,45.258 +99617,311.57,39.866 +99618,313.67,41.785 +99619,315.59,43.596 +99620,317.36,45.314 +99621,310.35,39.783 +99622,312.42,41.752 +99623,314.32,43.609 +99624,316.06,45.369 +99625,309.13,39.702 +99626,311.18,41.72 +99627,313.04,43.622 +99628,314.76,45.423 +99629,307.91,39.622 +99630,309.94,41.689 +99631,311.77,43.634 +99632,313.46,45.476 +99633,306.7,39.544 +99634,308.69,41.658 +99635,310.5,43.646 +99636,312.15,45.527 +99637,305.48,39.467 +99638,307.45,41.628 +99639,309.22,43.658 +99640,310.85,45.576 +99641,304.27,39.391 +99642,306.21,41.598 +99643,307.95,43.669 +99644,309.54,45.625 +99645,303.06,39.318 +99646,304.97,41.569 +99647,306.67,43.679 +99648,308.23,45.671 +99649,301.86,39.246 +99650,303.73,41.54 +99651,305.4,43.69 +99652,306.92,45.717 +99653,300.65,39.176 +99654,302.49,41.513 +99655,304.12,43.7 +99656,305.61,45.761 +99657,299.45,39.108 +99658,301.25,41.485 +99659,302.85,43.709 +99660,304.3,45.803 +99661,298.25,39.041 +99662,300.01,41.459 +99663,301.57,43.718 +99664,302.99,45.844 +99665,297.05,38.976 +99666,298.77,41.433 +99667,300.29,43.726 +99668,301.67,45.884 +99669,295.85,38.914 +99670,297.53,41.408 +99671,299.02,43.734 +99672,300.36,45.921 +99673,294.65,38.853 +99674,296.29,41.383 +99675,297.74,43.742 +99676,299.04,45.958 +99677,293.46,38.794 +99678,295.06,41.36 +99679,296.46,43.749 +99680,297.72,45.992 +99681,292.27,38.738 +99682,293.82,41.337 +99683,295.18,43.755 +99684,296.41,46.025 +99685,291.08,38.683 +99686,292.58,41.314 +99687,293.91,43.761 +99688,295.09,46.057 +99689,289.89,38.63 +99690,291.35,41.293 +99691,292.63,43.767 +99692,293.77,46.087 +99693,288.7,38.58 +99694,290.11,41.272 +99695,291.35,43.772 +99696,292.45,46.115 +99697,287.51,38.532 +99698,288.88,41.251 +99699,290.07,43.776 +99700,291.13,46.141 +99701,286.33,38.485 +99702,287.64,41.232 +99703,288.79,43.78 +99704,289.8,46.166 +99705,285.14,38.442 +99706,286.41,41.213 +99707,287.51,43.783 +99708,288.48,46.189 +99709,283.96,38.4 +99710,285.18,41.195 +99711,286.23,43.786 +99712,287.16,46.21 +99713,282.78,38.36 +99714,283.94,41.178 +99715,284.95,43.788 +99716,285.83,46.23 +99717,281.6,38.323 +99718,282.71,41.162 +99719,283.67,43.79 +99720,284.51,46.248 +99721,280.42,38.288 +99722,281.48,41.146 +99723,282.39,43.791 +99724,283.18,46.264 +99725,279.24,38.256 +99726,280.25,41.131 +99727,281.1,43.792 +99728,281.86,46.278 +99729,278.06,38.226 +99730,279.01,41.117 +99731,279.82,43.792 +99732,280.53,46.291 +99733,276.89,38.198 +99734,277.78,41.104 +99735,278.54,43.791 +99736,279.2,46.301 +99737,275.71,38.172 +99738,276.55,41.092 +99739,277.26,43.79 +99740,277.88,46.31 +99741,274.54,38.149 +99742,275.32,41.08 +99743,275.98,43.788 +99744,276.55,46.318 +99745,273.37,38.129 +99746,274.09,41.069 +99747,274.7,43.786 +99748,275.22,46.323 +99749,272.19,38.11 +99750,272.86,41.059 +99751,273.41,43.783 +99752,273.89,46.327 +99753,271.02,38.095 +99754,271.63,41.05 +99755,272.13,43.78 +99756,272.56,46.328 +99757,269.85,38.081 +99758,270.4,41.041 +99759,270.85,43.776 +99760,271.23,46.328 +99761,268.68,38.07 +99762,269.17,41.034 +99763,269.57,43.771 +99764,269.9,46.326 +99765,267.51,38.062 +99766,267.94,41.027 +99767,268.28,43.766 +99768,268.57,46.323 +99769,266.34,38.056 +99770,266.71,41.021 +99771,267,43.76 +99772,267.24,46.317 +99773,265.17,38.052 +99774,265.48,41.016 +99775,265.72,43.754 +99776,265.91,46.31 +99777,264,38.051 +99778,264.25,41.011 +99779,264.44,43.747 +99780,264.58,46.301 +99781,262.83,38.052 +99782,263.02,41.008 +99783,263.15,43.739 +99784,263.25,46.29 +99785,261.66,38.056 +99786,261.79,41.005 +99787,261.87,43.731 +99788,261.92,46.277 +99789,260.49,38.062 +99790,260.56,41.003 +99791,260.59,43.722 +99792,260.59,46.262 +99793,259.32,38.07 +99794,259.33,41.002 +99795,259.31,43.713 +99796,259.26,46.246 +99797,258.16,38.081 +99798,258.1,41.002 +99799,258.02,43.703 +99800,257.93,46.228 +99801,256.99,38.095 +99802,256.87,41.002 +99803,256.74,43.692 +99804,256.6,46.208 +99805,255.82,38.11 +99806,255.64,41.003 +99807,255.46,43.681 +99808,255.27,46.186 +99809,254.65,38.128 +99810,254.41,41.005 +99811,254.18,43.67 +99812,253.94,46.162 +99813,253.48,38.149 +99814,253.18,41.008 +99815,252.89,43.658 +99816,252.61,46.137 +99817,252.31,38.172 +99818,251.95,41.012 +99819,251.61,43.645 +99820,251.28,46.109 +99821,251.14,38.197 +99822,250.72,41.016 +99823,250.33,43.632 +99824,249.95,46.08 +99825,249.96,38.224 +99826,249.49,41.022 +99827,249.05,43.618 +99828,248.63,46.05 +99829,248.79,38.254 +99830,248.26,41.028 +99831,247.77,43.603 +99832,247.3,46.017 +99833,247.62,38.286 +99834,247.03,41.034 +99835,246.49,43.588 +99836,245.97,45.983 +99837,246.45,38.32 +99838,245.8,41.042 +99839,245.2,43.573 +99840,244.64,45.947 +99841,245.27,38.357 +99842,244.57,41.05 +99843,243.92,43.557 +99844,243.31,45.909 +99845,244.1,38.395 +99846,243.34,41.059 +99847,242.64,43.54 +99848,241.99,45.869 +99849,242.92,38.436 +99850,242.11,41.069 +99851,241.36,43.523 +99852,240.66,45.828 +99853,241.74,38.479 +99854,240.88,41.08 +99855,240.08,43.505 +99856,239.34,45.786 +99857,240.56,38.524 +99858,239.65,41.091 +99859,238.8,43.487 +99860,238.01,45.741 +99861,239.39,38.571 +99862,238.42,41.103 +99863,237.52,43.468 +99864,236.69,45.695 +99865,238.21,38.62 +99866,237.18,41.116 +99867,236.24,43.449 +99868,235.36,45.647 +99869,237.02,38.671 +99870,235.95,41.129 +99871,234.96,43.429 +99872,234.04,45.598 +99873,235.84,38.724 +99874,234.72,41.143 +99875,233.68,43.409 +99876,232.72,45.547 +99877,234.66,38.779 +99878,233.49,41.158 +99879,232.41,43.389 +99880,231.4,45.494 +99881,233.47,38.835 +99882,232.25,41.173 +99883,231.13,43.367 +99884,230.08,45.44 +99885,232.28,38.894 +99886,231.02,41.189 +99887,229.85,43.346 +99888,228.76,45.384 +99889,231.1,38.954 +99890,229.78,41.206 +99891,228.57,43.324 +99892,227.44,45.327 +99893,229.91,39.016 +99894,228.55,41.223 +99895,227.29,43.301 +99896,226.12,45.268 +99897,228.72,39.08 +99898,227.31,41.241 +99899,226.02,43.278 +99900,224.8,45.208 +99901,227.52,39.146 +99902,226.08,41.26 +99903,224.74,43.255 +99904,223.49,45.147 +99905,226.33,39.213 +99906,224.84,41.279 +99907,223.47,43.231 +99908,222.17,45.084 +99909,225.13,39.282 +99910,223.61,41.299 +99911,222.19,43.207 +99912,220.86,45.019 +99913,223.93,39.352 +99914,222.37,41.32 +99915,220.91,43.182 +99916,219.55,44.953 +99917,222.73,39.424 +99918,221.13,41.341 +99919,219.64,43.157 +99920,218.23,44.886 +99921,221.53,39.497 +99922,219.89,41.362 +99923,218.36,43.132 +99924,216.92,44.818 +99925,220.33,39.571 +99926,218.66,41.384 +99927,217.09,43.106 +99928,215.61,44.748 +99929,219.13,39.647 +99930,217.42,41.407 +99931,215.82,43.08 +99932,214.31,44.677 +99933,217.92,39.724 +99934,216.18,41.43 +99935,214.54,43.054 +99936,213,44.605 +99937,216.71,39.803 +99938,214.94,41.453 +99939,213.27,43.027 +99940,211.69,44.531 +99941,215.5,39.883 +99942,213.7,41.478 +99943,212,43 +99944,210.39,44.456 +99945,214.29,39.964 +99946,212.46,41.502 +99947,210.73,42.972 +99948,209.09,44.381 +99949,213.07,40.045 +99950,211.22,41.527 +99951,209.46,42.945 +99952,207.78,44.304 +99953,211.86,40.128 +99954,209.97,41.553 +99955,208.19,42.917 +99956,206.48,44.226 +99957,210.64,40.213 +99958,208.73,41.579 +99959,206.92,42.888 +99960,205.19,44.146 +99961,209.42,40.297 +99962,207.49,41.605 +99963,205.65,42.86 +99964,203.89,44.066 +99965,208.2,40.383 +99966,206.24,41.632 +99967,204.38,42.831 +99968,202.59,43.985 +99969,206.98,40.47 +99970,205,41.659 +99971,203.11,42.802 +99972,201.3,43.903 +99973,205.75,40.558 +99974,203.76,41.686 +99975,201.84,42.773 +99976,200,43.82 +99977,204.52,40.646 +99978,202.51,41.714 +99979,200.58,42.744 +99980,198.71,43.737 +99981,203.29,40.735 +99982,201.26,41.742 +99983,199.31,42.714 +99984,197.42,43.652 +99985,202.06,40.825 +99986,200.02,41.771 +99987,198.04,42.684 +99988,196.13,43.567 +99989,200.83,40.915 +99990,198.77,41.8 +99991,196.78,42.654 +99992,194.85,43.48 +99993,199.59,41.006 +99994,197.52,41.829 +99995,195.51,42.624 +99996,193.56,43.393 +99997,198.35,41.097 +99998,196.27,41.858 +99999,194.25,42.594 +100000,192.28,43.306 +100001,197.11,41.189 +100002,195.02,41.888 +100003,192.99,42.564 +100004,191,43.218 +100005,195.87,41.281 +100006,193.77,41.918 +100007,191.72,42.533 +100008,189.72,43.129 +100009,194.63,41.374 +100010,192.52,41.948 +100011,190.46,42.503 +100012,188.44,43.039 +100013,193.38,41.467 +100014,191.27,41.978 +100015,189.2,42.472 +100016,187.16,42.949 +100017,192.14,41.56 +100018,190.02,42.009 +100019,187.94,42.442 +100020,185.89,42.859 +100021,190.89,41.653 +100022,188.77,42.039 +100023,186.68,42.411 +100024,184.62,42.768 +100025,189.63,41.747 +100026,187.51,42.07 +100027,185.42,42.38 +100028,183.35,42.677 +100029,188.38,41.84 +100030,186.26,42.101 +100031,184.16,42.349 +100032,182.08,42.585 +100033,187.13,41.934 +100034,185,42.132 +100035,182.9,42.319 +100036,180.81,42.493 +100037,185.87,42.028 +100038,183.75,42.164 +100039,181.64,42.288 +100040,179.54,42.401 +100041,184.61,42.121 +100042,182.49,42.195 +100043,180.38,42.257 +100044,178.28,42.309 +100045,183.35,42.215 +100046,181.24,42.226 +100047,179.13,42.227 +100048,177.02,42.216 +100049,182.08,42.308 +100050,179.98,42.258 +100051,177.87,42.196 +100052,175.76,42.124 +100053,180.82,42.402 +100054,178.72,42.289 +100055,176.62,42.166 +100056,174.5,42.031 +100057,179.55,42.495 +100058,177.46,42.321 +100059,175.36,42.136 +100060,173.25,41.938 +100061,178.28,42.588 +100062,176.2,42.353 +100063,174.11,42.105 +100064,171.99,41.846 +100065,177.01,42.68 +100066,174.94,42.384 +100067,172.85,42.075 +100068,170.74,41.753 +100069,175.74,42.772 +100070,173.68,42.416 +100071,171.6,42.045 +100072,169.49,41.661 +100073,174.46,42.864 +100074,172.42,42.447 +100075,170.35,42.016 +100076,168.24,41.568 +100077,173.19,42.955 +100078,171.16,42.479 +100079,169.1,41.986 +100080,167,41.476 +100081,171.91,43.046 +100082,169.9,42.511 +100083,167.85,41.957 +100084,165.75,41.384 +100085,170.63,43.136 +100086,168.64,42.542 +100087,166.6,41.927 +100088,164.51,41.293 +100089,169.35,43.226 +100090,167.37,42.573 +100091,165.35,41.898 +100092,163.27,41.201 +100093,168.07,43.315 +100094,166.11,42.604 +100095,164.1,41.87 +100096,162.03,41.111 +100097,166.78,43.404 +100098,164.84,42.636 +100099,162.85,41.841 +100100,160.8,41.02 +100101,165.49,43.492 +100102,163.58,42.667 +100103,161.6,41.813 +100104,159.56,40.93 +100105,164.21,43.579 +100106,162.31,42.697 +100107,160.36,41.785 +100108,158.33,40.841 +100109,162.92,43.665 +100110,161.05,42.728 +100111,159.11,41.758 +100112,157.1,40.752 +100113,161.63,43.751 +100114,159.78,42.759 +100115,157.86,41.731 +100116,155.87,40.664 +100117,160.33,43.835 +100118,158.51,42.789 +100119,156.62,41.704 +100120,154.65,40.577 +100121,159.04,43.919 +100122,157.24,42.819 +100123,155.37,41.677 +100124,153.42,40.491 +100125,157.74,44.002 +100126,155.97,42.849 +100127,154.13,41.651 +100128,152.2,40.405 +100129,156.44,44.084 +100130,154.7,42.878 +100131,152.89,41.625 +100132,150.98,40.32 +100133,155.15,44.165 +100134,153.43,42.908 +100135,151.64,41.6 +100136,149.76,40.236 +100137,153.85,44.245 +100138,152.16,42.937 +100139,150.4,41.575 +100140,148.55,40.153 +100141,152.54,44.324 +100142,150.89,42.966 +100143,149.16,41.55 +100144,147.33,40.071 +100145,151.24,44.401 +100146,149.62,42.994 +100147,147.92,41.526 +100148,146.12,39.99 +100149,149.94,44.478 +100150,148.35,43.023 +100151,146.68,41.503 +100152,144.91,39.91 +100153,148.63,44.553 +100154,147.08,43.051 +100155,145.44,41.479 +100156,143.7,39.832 +100157,147.32,44.628 +100158,145.8,43.078 +100159,144.2,41.457 +100160,142.49,39.754 +100161,146.01,44.701 +100162,144.53,43.106 +100163,142.96,41.435 +100164,141.29,39.678 +100165,144.71,44.773 +100166,143.26,43.133 +100167,141.72,41.413 +100168,140.08,39.603 +100169,143.39,44.843 +100170,141.98,43.159 +100171,140.48,41.392 +100172,138.88,39.53 +100173,142.08,44.913 +100174,140.71,43.185 +100175,139.25,41.371 +100176,137.68,39.458 +100177,140.77,44.981 +100178,139.43,43.211 +100179,138.01,41.351 +100180,136.48,39.387 +100181,139.46,45.047 +100182,138.16,43.237 +100183,136.77,41.332 +100184,135.29,39.318 +100185,138.14,45.113 +100186,136.88,43.262 +100187,135.54,41.313 +100188,134.09,39.25 +100189,136.82,45.176 +100190,135.6,43.287 +100191,134.3,41.295 +100192,132.9,39.184 +100193,135.51,45.239 +100194,134.33,43.311 +100195,133.07,41.277 +100196,131.71,39.12 +100197,134.19,45.3 +100198,133.05,43.335 +100199,131.83,41.26 +100200,130.52,39.057 +100201,132.87,45.359 +100202,131.77,43.358 +100203,130.6,41.243 +100204,129.33,38.996 +100205,131.55,45.417 +100206,130.49,43.381 +100207,129.36,41.228 +100208,128.14,38.937 +100209,130.23,45.474 +100210,129.21,43.403 +100211,128.13,41.213 +100212,126.96,38.879 +100213,128.91,45.529 +100214,127.93,43.425 +100215,126.89,41.198 +100216,125.77,38.823 +100217,127.59,45.582 +100218,126.66,43.447 +100219,125.66,41.184 +100220,124.59,38.77 +100221,126.26,45.634 +100222,125.38,43.468 +100223,124.43,41.171 +100224,123.41,38.718 +100225,124.94,45.684 +100226,124.1,43.489 +100227,123.2,41.159 +100228,122.23,38.668 +100229,123.61,45.732 +100230,122.82,43.509 +100231,121.96,41.147 +100232,121.05,38.62 +100233,122.29,45.779 +100234,121.54,43.528 +100235,120.73,41.136 +100236,119.87,38.574 +100237,120.96,45.825 +100238,120.25,43.547 +100239,119.5,41.126 +100240,118.69,38.53 +100241,119.64,45.868 +100242,118.97,43.566 +100243,118.27,41.116 +100244,117.51,38.488 +100245,118.31,45.91 +100246,117.69,43.584 +100247,117.04,41.107 +100248,116.34,38.449 +100249,116.98,45.95 +100250,116.41,43.601 +100251,115.81,41.099 +100252,115.16,38.411 +100253,115.66,45.989 +100254,115.13,43.618 +100255,114.58,41.092 +100256,113.99,38.376 +100257,114.33,46.026 +100258,113.85,43.635 +100259,113.35,41.085 +100260,112.82,38.343 +100261,113,46.061 +100262,112.57,43.65 +100263,112.12,41.079 +100264,111.64,38.312 +100265,111.67,46.094 +100266,111.28,43.666 +100267,110.89,41.074 +100268,110.47,38.283 +100269,110.34,46.126 +100270,110,43.68 +100271,109.66,41.07 +100272,109.3,38.257 +100273,109.01,46.155 +100274,108.72,43.695 +100275,108.43,41.066 +100276,108.13,38.232 +100277,107.68,46.183 +100278,107.44,43.708 +100279,107.2,41.064 +100280,106.96,38.211 +100281,106.35,46.21 +100282,106.15,43.721 +100283,105.97,41.062 +100284,105.79,38.191 +100285,105.02,46.234 +100286,104.87,43.734 +100287,104.74,41.061 +100288,104.62,38.174 +100289,103.69,46.257 +100290,103.59,43.746 +100291,103.51,41.06 +100292,103.45,38.159 +100293,102.36,46.278 +100294,102.31,43.757 +100295,102.28,41.061 +100296,102.28,38.147 +100297,101.03,46.297 +100298,101.02,43.768 +100299,101.05,41.062 +100300,101.11,38.137 +100301,99.696,46.314 +100302,99.74,43.778 +100303,99.818,41.064 +100304,99.944,38.13 +100305,98.365,46.329 +100306,98.457,43.787 +100307,98.588,41.067 +100308,98.775,38.124 +100309,97.035,46.343 +100310,97.174,43.796 +100311,97.359,41.07 +100312,97.605,38.122 +100313,95.704,46.355 +100314,95.892,43.805 +100315,96.129,41.075 +100316,96.436,38.122 +100317,94.373,46.364 +100318,94.609,43.813 +100319,94.899,41.08 +100320,95.266,38.124 +100321,93.043,46.373 +100322,93.326,43.82 +100323,93.669,41.086 +100324,94.096,38.128 +100325,91.712,46.379 +100326,92.043,43.826 +100327,92.438,41.093 +100328,92.926,38.135 +100329,90.382,46.383 +100330,90.76,43.833 +100331,91.208,41.101 +100332,91.755,38.145 +100333,89.052,46.386 +100334,89.477,43.838 +100335,89.977,41.11 +100336,90.584,38.157 +100337,87.723,46.387 +100338,88.195,43.843 +100339,88.747,41.119 +100340,89.412,38.171 +100341,86.394,46.386 +100342,86.912,43.847 +100343,87.516,41.129 +100344,88.239,38.188 +100345,85.065,46.383 +100346,85.63,43.851 +100347,86.285,41.14 +100348,87.066,38.207 +100349,83.736,46.378 +100350,84.347,43.854 +100351,85.053,41.152 +100352,85.892,38.228 +100353,82.408,46.372 +100354,83.065,43.857 +100355,83.822,41.164 +100356,84.717,38.252 +100357,81.08,46.364 +100358,81.783,43.859 +100359,82.59,41.178 +100360,83.541,38.279 +100361,79.753,46.354 +100362,80.501,43.86 +100363,81.358,41.192 +100364,82.364,38.308 +100365,78.426,46.342 +100366,79.219,43.861 +100367,80.125,41.207 +100368,81.186,38.339 +100369,77.1,46.329 +100370,77.938,43.861 +100371,78.892,41.222 +100372,80.008,38.372 +100373,75.775,46.313 +100374,76.657,43.861 +100375,77.659,41.239 +100376,78.828,38.408 +100377,74.45,46.296 +100378,75.376,43.86 +100379,76.426,41.256 +100380,77.646,38.446 +100381,73.126,46.277 +100382,74.095,43.859 +100383,75.192,41.274 +100384,76.464,38.486 +100385,71.802,46.257 +100386,72.814,43.857 +100387,73.957,41.293 +100388,75.28,38.529 +100389,70.479,46.235 +100390,71.534,43.854 +100391,72.723,41.313 +100392,74.095,38.573 +100393,69.157,46.211 +100394,70.254,43.851 +100395,71.488,41.333 +100396,72.908,38.62 +100397,67.836,46.185 +100398,68.974,43.848 +100399,70.252,41.354 +100400,71.72,38.669 +100401,66.516,46.158 +100402,67.695,43.844 +100403,69.016,41.376 +100404,70.531,38.721 +100405,65.196,46.129 +100406,66.415,43.839 +100407,67.78,41.398 +100408,69.34,38.774 +100409,63.878,46.098 +100410,65.137,43.834 +100411,66.543,41.421 +100412,68.147,38.829 +100413,62.56,46.066 +100414,63.858,43.828 +100415,65.306,41.445 +100416,66.953,38.887 +100417,61.243,46.032 +100418,62.58,43.822 +100419,64.068,41.47 +100420,65.757,38.946 +100421,59.927,45.997 +100422,61.302,43.815 +100423,62.829,41.495 +100424,64.559,39.008 +100425,58.613,45.96 +100426,60.025,43.808 +100427,61.59,41.521 +100428,63.36,39.071 +100429,57.299,45.921 +100430,58.748,43.801 +100431,60.351,41.548 +100432,62.158,39.137 +100433,55.986,45.881 +100434,57.471,43.793 +100435,59.111,41.575 +100436,60.955,39.204 +100437,54.675,45.84 +100438,56.195,43.784 +100439,57.87,41.603 +100440,59.75,39.273 +100441,53.365,45.797 +100442,54.919,43.775 +100443,56.629,41.632 +100444,58.543,39.344 +100445,52.056,45.752 +100446,53.643,43.766 +100447,55.387,41.661 +100448,57.335,39.416 +100449,50.748,45.706 +100450,52.368,43.756 +100451,54.145,41.691 +100452,56.124,39.491 +100453,49.441,45.659 +100454,51.094,43.746 +100455,52.902,41.721 +100456,54.911,39.567 +100457,48.136,45.61 +100458,49.82,43.735 +100459,51.659,41.752 +100460,53.697,39.644 +100461,46.832,45.56 +100462,48.546,43.724 +100463,50.415,41.784 +100464,52.48,39.723 +100465,45.529,45.508 +100466,47.273,43.712 +100467,49.17,41.816 +100468,51.261,39.804 +100469,44.228,45.456 +100470,46,43.7 +100471,47.924,41.849 +100472,50.04,39.886 +100473,42.928,45.402 +100474,44.728,43.688 +100475,46.678,41.882 +100476,48.818,39.97 +100477,41.629,45.346 +100478,43.456,43.676 +100479,45.431,41.916 +100480,47.593,40.055 +100481,40.332,45.29 +100482,42.185,43.663 +100483,44.184,41.95 +100484,46.366,40.141 +100485,39.036,45.232 +100486,40.914,43.649 +100487,42.936,41.985 +100488,45.137,40.228 +100489,37.742,45.173 +100490,39.644,43.636 +100491,41.687,42.021 +100492,43.905,40.317 +100493,36.449,45.113 +100494,38.374,43.622 +100495,40.438,42.056 +100496,42.672,40.407 +100497,35.158,45.051 +100498,37.105,43.607 +100499,39.188,42.093 +100500,41.437,40.499 +100501,33.869,44.989 +100502,35.836,43.593 +100503,37.937,42.129 +100504,40.199,40.591 +100505,32.581,44.926 +100506,34.568,43.578 +100507,36.685,42.167 +100508,38.959,40.684 +100509,31.294,44.861 +100510,33.3,43.563 +100511,35.433,42.204 +100512,37.717,40.779 +100513,30.01,44.796 +100514,32.033,43.547 +100515,34.18,42.242 +100516,36.473,40.874 +100517,28.727,44.73 +100518,30.767,43.532 +100519,32.927,42.28 +100520,35.227,40.97 +100521,27.445,44.663 +100522,29.501,43.516 +100523,31.672,42.319 +100524,33.979,41.067 +100525,26.166,44.595 +100526,28.236,43.5 +100527,30.417,42.358 +100528,32.729,41.165 +100529,24.888,44.526 +100530,26.971,43.484 +100531,29.161,42.398 +100532,31.476,41.264 +100533,23.611,44.456 +100534,25.707,43.467 +100535,27.905,42.437 +100536,30.222,41.363 +100537,22.337,44.386 +100538,24.443,43.451 +100539,26.648,42.477 +100540,28.965,41.463 +100541,21.064,44.314 +100542,23.18,43.434 +100543,25.39,42.518 +100544,27.706,41.563 +100545,19.793,44.242 +100546,21.918,43.417 +100547,24.131,42.558 +100548,26.445,41.664 +100549,18.524,44.17 +100550,20.656,43.4 +100551,22.872,42.599 +100552,25.182,41.766 +100553,17.257,44.097 +100554,19.395,43.383 +100555,21.612,42.64 +100556,23.917,41.868 +100557,15.992,44.023 +100558,18.134,43.365 +100559,20.351,42.682 +100560,22.65,41.971 +100561,14.728,43.949 +100562,16.874,43.348 +100563,19.089,42.723 +100564,21.381,42.073 +100565,13.466,43.874 +100566,15.614,43.331 +100567,17.827,42.765 +100568,20.11,42.177 +100569,12.206,43.799 +100570,14.356,43.313 +100571,16.564,42.807 +100572,18.837,42.28 +100573,10.948,43.723 +100574,13.097,43.295 +100575,15.3,42.849 +100576,17.562,42.383 +100577,9.6923,43.647 +100578,11.84,43.278 +100579,14.036,42.892 +100580,16.285,42.487 +100581,8.4382,43.571 +100582,10.583,43.26 +100583,12.771,42.934 +100584,15.006,42.591 +100585,7.1859,43.494 +100586,9.3261,43.243 +100587,11.505,42.976 +100588,13.725,42.695 +100589,5.9356,43.418 +100590,8.0702,43.225 +100591,10.239,43.019 +100592,12.443,42.799 +100593,4.6872,43.341 +100594,6.8149,43.208 +100595,8.9713,43.062 +100596,11.158,42.903 +100597,3.4408,43.263 +100598,5.5603,43.19 +100599,7.7034,43.105 +100600,9.8715,43.006 +100601,2.1962,43.186 +100602,4.3061,43.173 +100603,6.4348,43.147 +100604,8.5832,43.11 +100605,0.95361,43.109 +100606,3.0526,43.155 +100607,5.1655,43.19 +100608,7.2931,43.214 +100609,359.71,43.031 +100610,1.7997,43.138 +100611,3.8955,43.233 +100612,6.0012,43.317 +100613,358.47,42.954 +100614,0.54734,43.121 +100615,2.6249,43.276 +100616,4.7075,43.42 +100617,357.24,42.877 +100618,359.3,43.104 +100619,1.3536,43.319 +100620,3.4121,43.523 +100621,356,42.8 +100622,358.04,43.087 +100623,0.081644,43.362 +100624,2.115,43.625 +100625,354.77,42.723 +100626,356.79,43.07 +100627,358.81,43.405 +100628,0.81624,43.727 +100629,353.54,42.646 +100630,355.54,43.053 +100631,357.54,43.448 +100632,359.52,43.828 +100633,352.31,42.57 +100634,354.29,43.037 +100635,356.26,43.49 +100636,358.21,43.93 +100637,351.08,42.494 +100638,353.05,43.021 +100639,354.99,43.533 +100640,356.91,44.03 +100641,349.86,42.418 +100642,351.8,43.005 +100643,353.71,43.576 +100644,355.6,44.13 +100645,348.63,42.342 +100646,350.55,42.989 +100647,352.44,43.618 +100648,354.3,44.229 +100649,347.41,42.267 +100650,349.3,42.973 +100651,351.16,43.66 +100652,352.99,44.328 +100653,346.19,42.193 +100654,348.05,42.958 +100655,349.88,43.703 +100656,351.68,44.426 +100657,344.97,42.119 +100658,346.81,42.943 +100659,348.61,43.745 +100660,350.37,44.523 +100661,343.76,42.046 +100662,345.56,42.928 +100663,347.33,43.786 +100664,349.06,44.62 +100665,342.54,41.973 +100666,344.32,42.914 +100667,346.05,43.828 +100668,347.74,44.716 +100669,341.33,41.901 +100670,343.07,42.9 +100671,344.77,43.87 +100672,346.43,44.811 +100673,340.12,41.83 +100674,341.83,42.886 +100675,343.49,43.911 +100676,345.11,44.905 +100677,338.91,41.759 +100678,340.58,42.873 +100679,342.21,43.952 +100680,343.79,44.998 +100681,337.71,41.69 +100682,339.34,42.86 +100683,340.93,43.993 +100684,342.47,45.09 +100685,336.5,41.621 +100686,338.1,42.847 +100687,339.65,44.033 +100688,341.15,45.181 +100689,335.3,41.553 +100690,336.86,42.835 +100691,338.36,44.073 +100692,339.83,45.271 +100693,334.1,41.486 +100694,335.61,42.823 +100695,337.08,44.113 +100696,338.51,45.361 +100697,332.89,41.42 +100698,334.37,42.811 +100699,335.8,44.153 +100700,337.18,45.449 +100701,331.7,41.355 +100702,333.13,42.8 +100703,334.52,44.193 +100704,335.86,45.536 +100705,330.5,41.292 +100706,331.89,42.79 +100707,333.23,44.232 +100708,334.53,45.622 +100709,329.3,41.229 +100710,330.65,42.78 +100711,331.95,44.27 +100712,333.21,45.706 +100713,328.11,41.168 +100714,329.41,42.77 +100715,330.66,44.309 +100716,331.88,45.79 +100717,326.92,41.107 +100718,328.17,42.761 +100719,329.38,44.347 +100720,330.55,45.872 +100721,325.73,41.049 +100722,326.93,42.752 +100723,328.09,44.385 +100724,329.22,45.953 +100725,324.54,40.991 +100726,325.69,42.744 +100727,326.81,44.422 +100728,327.89,46.033 +100729,323.35,40.935 +100730,324.45,42.736 +100731,325.52,44.459 +100732,326.56,46.111 +100733,322.16,40.88 +100734,323.21,42.729 +100735,324.23,44.496 +100736,325.22,46.188 +100737,320.97,40.827 +100738,321.98,42.723 +100739,322.95,44.532 +100740,323.89,46.264 +100741,319.79,40.775 +100742,320.74,42.717 +100743,321.66,44.568 +100744,322.56,46.338 +100745,318.6,40.725 +100746,319.5,42.711 +100747,320.37,44.603 +100748,321.22,46.411 +100749,317.42,40.676 +100750,318.26,42.706 +100751,319.08,44.638 +100752,319.89,46.483 +100753,316.24,40.629 +100754,317.03,42.702 +100755,317.79,44.672 +100756,318.55,46.553 +100757,315.06,40.583 +100758,315.79,42.698 +100759,316.51,44.706 +100760,317.21,46.621 +100761,313.88,40.539 +100762,314.55,42.695 +100763,315.22,44.74 +100764,315.88,46.688 +100765,312.7,40.497 +100766,313.31,42.693 +100767,313.93,44.773 +100768,314.54,46.754 +100769,311.52,40.457 +100770,312.08,42.691 +100771,312.64,44.806 +100772,313.2,46.818 +100773,310.35,40.418 +100774,310.84,42.69 +100775,311.35,44.838 +100776,311.86,46.88 +100777,309.17,40.382 +100778,309.61,42.689 +100779,310.06,44.87 +100780,310.52,46.941 +100781,307.99,40.347 +100782,308.37,42.689 +100783,308.77,44.901 +100784,309.18,47.001 +100785,306.82,40.314 +100786,307.13,42.69 +100787,307.48,44.931 +100788,307.84,47.058 +100789,305.64,40.283 +100790,305.9,42.691 +100791,306.19,44.962 +100792,306.5,47.114 +100793,304.47,40.254 +100794,304.66,42.693 +100795,304.9,44.991 +100796,305.16,47.169 +100797,303.3,40.227 +100798,303.43,42.696 +100799,303.61,45.02 +100800,303.82,47.222 +100801,302.12,40.202 +100802,302.19,42.7 +100803,302.31,45.049 +100804,302.48,47.273 +100805,300.95,40.179 +100806,300.95,42.704 +100807,301.02,45.077 +100808,301.14,47.322 +100809,299.78,40.158 +100810,299.72,42.709 +100811,299.73,45.105 +100812,299.8,47.37 +100813,298.6,40.139 +100814,298.48,42.714 +100815,298.44,45.132 +100816,298.46,47.416 +100817,297.43,40.122 +100818,297.25,42.721 +100819,297.15,45.158 +100820,297.12,47.46 +100821,296.26,40.107 +100822,296.01,42.728 +100823,295.86,45.184 +100824,295.77,47.503 +100825,295.09,40.094 +100826,294.77,42.735 +100827,294.57,45.209 +100828,294.43,47.544 +100829,293.91,40.084 +100830,293.54,42.744 +100831,293.27,45.234 +100832,293.09,47.583 +100833,292.74,40.076 +100834,292.3,42.753 +100835,291.98,45.258 +100836,291.75,47.621 +100837,291.57,40.07 +100838,291.07,42.763 +100839,290.69,45.282 +100840,290.41,47.656 +100841,290.39,40.066 +100842,289.83,42.774 +100843,289.4,45.305 +100844,289.07,47.69 +100845,289.22,40.064 +100846,288.59,42.785 +100847,288.11,45.328 +100848,287.73,47.723 +100849,288.05,40.065 +100850,287.36,42.797 +100851,286.82,45.35 +100852,286.38,47.753 +100853,286.87,40.068 +100854,286.12,42.81 +100855,285.52,45.371 +100856,285.04,47.782 +100857,285.69,40.073 +100858,284.88,42.824 +100859,284.23,45.392 +100860,283.7,47.809 +100861,284.52,40.08 +100862,283.64,42.838 +100863,282.94,45.412 +100864,282.36,47.834 +100865,283.34,40.09 +100866,282.41,42.853 +100867,281.65,45.432 +100868,281.02,47.857 +100869,282.16,40.102 +100870,281.17,42.869 +100871,280.36,45.451 +100872,279.68,47.879 +100873,280.99,40.116 +100874,279.93,42.886 +100875,279.07,45.469 +100876,278.35,47.898 +100877,279.81,40.132 +100878,278.69,42.903 +100879,277.78,45.487 +100880,277.01,47.917 +100881,278.63,40.151 +100882,277.45,42.921 +100883,276.48,45.504 +100884,275.67,47.933 +100885,277.44,40.172 +100886,276.21,42.94 +100887,275.19,45.521 +100888,274.33,47.947 +100889,276.26,40.195 +100890,274.97,42.96 +100891,273.9,45.537 +100892,272.99,47.96 +100893,275.08,40.22 +100894,273.73,42.98 +100895,272.61,45.553 +100896,271.66,47.971 +100897,273.89,40.248 +100898,272.49,43.002 +100899,271.32,45.568 +100900,270.32,47.98 +100901,272.71,40.278 +100902,271.25,43.024 +100903,270.03,45.582 +100904,268.99,47.988 +100905,271.52,40.31 +100906,270.01,43.046 +100907,268.74,45.596 +100908,267.65,47.994 +100909,270.33,40.344 +100910,268.77,43.07 +100911,267.45,45.61 +100912,266.32,47.998 +100913,269.14,40.381 +100914,267.52,43.094 +100915,266.16,45.622 +100916,264.99,48 +100917,267.95,40.419 +100918,266.28,43.118 +100919,264.87,45.635 +100920,263.65,48.001 +100921,266.75,40.46 +100922,265.04,43.144 +100923,263.58,45.646 +100924,262.32,47.999 +100925,265.56,40.503 +100926,263.79,43.17 +100927,262.3,45.657 +100928,260.99,47.997 +100929,264.36,40.549 +100930,262.55,43.197 +100931,261.01,45.668 +100932,259.66,47.992 +100933,263.16,40.596 +100934,261.31,43.225 +100935,259.72,45.678 +100936,258.33,47.986 +100937,261.96,40.645 +100938,260.06,43.253 +100939,258.43,45.687 +100940,257.01,47.978 +100941,260.76,40.697 +100942,258.81,43.282 +100943,257.14,45.696 +100944,255.68,47.969 +100945,259.56,40.75 +100946,257.57,43.312 +100947,255.86,45.705 +100948,254.35,47.957 +100949,258.35,40.806 +100950,256.32,43.343 +100951,254.57,45.713 +100952,253.03,47.945 +100953,257.14,40.863 +100954,255.07,43.374 +100955,253.28,45.72 +100956,251.71,47.93 +100957,255.93,40.923 +100958,253.82,43.406 +100959,252,45.727 +100960,250.38,47.914 +100961,254.72,40.984 +100962,252.58,43.438 +100963,250.71,45.733 +100964,249.06,47.897 +100965,253.51,41.048 +100966,251.33,43.471 +100967,249.43,45.739 +100968,247.74,47.878 +100969,252.29,41.113 +100970,250.08,43.505 +100971,248.14,45.744 +100972,246.42,47.857 +100973,251.07,41.18 +100974,248.82,43.539 +100975,246.86,45.749 +100976,245.1,47.835 +100977,249.86,41.249 +100978,247.57,43.574 +100979,245.57,45.754 +100980,243.79,47.811 +100981,248.63,41.32 +100982,246.32,43.61 +100983,244.29,45.758 +100984,242.47,47.786 +100985,247.41,41.392 +100986,245.07,43.646 +100987,243.01,45.761 +100988,241.16,47.76 +100989,246.18,41.466 +100990,243.81,43.683 +100991,241.72,45.764 +100992,239.85,47.732 +100993,244.95,41.542 +100994,242.56,43.72 +100995,240.44,45.767 +100996,238.54,47.702 +100997,243.72,41.62 +100998,241.31,43.758 +100999,239.16,45.769 +101000,237.23,47.671 +101001,242.49,41.699 +101002,240.05,43.797 +101003,237.88,45.771 +101004,235.92,47.639 +101005,241.26,41.779 +101006,238.79,43.836 +101007,236.6,45.772 +101008,234.61,47.606 +101009,240.02,41.861 +101010,237.54,43.875 +101011,235.32,45.773 +101012,233.3,47.571 +101013,238.78,41.945 +101014,236.28,43.915 +101015,234.04,45.773 +101016,232,47.535 +101017,237.54,42.03 +101018,235.02,43.956 +101019,232.76,45.773 +101020,230.7,47.497 +101021,236.29,42.117 +101022,233.76,43.997 +101023,231.48,45.773 +101024,229.4,47.459 +101025,235.05,42.204 +101026,232.5,44.039 +101027,230.2,45.772 +101028,228.1,47.419 +101029,233.8,42.294 +101030,231.24,44.081 +101031,228.92,45.771 +101032,226.8,47.378 +101033,232.55,42.384 +101034,229.98,44.124 +101035,227.65,45.77 +101036,225.5,47.335 +101037,231.29,42.476 +101038,228.72,44.167 +101039,226.37,45.768 +101040,224.21,47.292 +101041,230.04,42.568 +101042,227.45,44.21 +101043,225.09,45.766 +101044,222.91,47.247 +101045,228.78,42.662 +101046,226.19,44.254 +101047,223.82,45.764 +101048,221.62,47.202 +101049,227.52,42.757 +101050,224.92,44.298 +101051,222.54,45.761 +101052,220.33,47.155 +101053,226.26,42.853 +101054,223.66,44.343 +101055,221.27,45.758 +101056,219.04,47.108 +101057,224.99,42.95 +101058,222.39,44.388 +101059,219.99,45.755 +101060,217.76,47.059 +101061,223.73,43.048 +101062,221.13,44.434 +101063,218.72,45.751 +101064,216.47,47.009 +101065,222.46,43.147 +101066,219.86,44.479 +101067,217.45,45.748 +101068,215.19,46.959 +101069,221.19,43.247 +101070,218.59,44.526 +101071,216.17,45.744 +101072,213.91,46.908 +101073,219.91,43.348 +101074,217.32,44.572 +101075,214.9,45.739 +101076,212.63,46.855 +101077,218.64,43.449 +101078,216.05,44.619 +101079,213.63,45.735 +101080,211.35,46.802 +101081,217.36,43.551 +101082,214.78,44.666 +101083,212.36,45.73 +101084,210.08,46.749 +101085,216.08,43.654 +101086,213.51,44.714 +101087,211.09,45.725 +101088,208.8,46.694 +101089,214.8,43.757 +101090,212.24,44.761 +101091,209.82,45.72 +101092,207.53,46.639 +101093,213.52,43.861 +101094,210.96,44.809 +101095,208.55,45.715 +101096,206.26,46.583 +101097,212.23,43.965 +101098,209.69,44.857 +101099,207.28,45.71 +101100,204.99,46.526 +101101,210.94,44.07 +101102,208.41,44.906 +101103,206.01,45.704 +101104,203.73,46.469 +101105,209.65,44.176 +101106,207.14,44.954 +101107,204.75,45.699 +101108,202.46,46.412 +101109,208.36,44.281 +101110,205.86,45.003 +101111,203.48,45.693 +101112,201.2,46.353 +101113,207.06,44.387 +101114,204.59,45.052 +101115,202.21,45.687 +101116,199.94,46.295 +101117,205.77,44.494 +101118,203.31,45.101 +101119,200.95,45.681 +101120,198.68,46.235 +101121,204.47,44.6 +101122,202.03,45.151 +101123,199.68,45.675 +101124,197.42,46.176 +101125,203.17,44.707 +101126,200.75,45.2 +101127,198.42,45.669 +101128,196.17,46.116 +101129,201.87,44.814 +101130,199.47,45.25 +101131,197.16,45.663 +101132,194.91,46.056 +101133,200.56,44.921 +101134,198.19,45.299 +101135,195.89,45.657 +101136,193.66,45.995 +101137,199.26,45.028 +101138,196.91,45.349 +101139,194.63,45.651 +101140,192.41,45.934 +101141,197.95,45.136 +101142,195.63,45.399 +101143,193.37,45.644 +101144,191.16,45.873 +101145,196.64,45.243 +101146,194.34,45.449 +101147,192.11,45.638 +101148,189.92,45.812 +101149,195.33,45.35 +101150,193.06,45.499 +101151,190.85,45.632 +101152,188.68,45.751 +101153,194.01,45.457 +101154,191.78,45.549 +101155,189.59,45.626 +101156,187.43,45.689 +101157,192.7,45.564 +101158,190.49,45.599 +101159,188.33,45.62 +101160,186.19,45.628 +101161,191.38,45.67 +101162,189.21,45.649 +101163,187.07,45.614 +101164,184.96,45.566 +101165,190.06,45.776 +101166,187.92,45.699 +101167,185.81,45.608 +101168,183.72,45.505 +101169,188.74,45.883 +101170,186.63,45.749 +101171,184.55,45.602 +101172,182.48,45.444 +101173,187.42,45.988 +101174,185.35,45.799 +101175,183.29,45.597 +101176,181.25,45.383 +101177,186.1,46.094 +101178,184.06,45.849 +101179,182.03,45.591 +101180,180.02,45.322 +101181,184.77,46.199 +101182,182.77,45.899 +101183,180.78,45.586 +101184,178.79,45.261 +101185,183.45,46.303 +101186,181.48,45.948 +101187,179.52,45.58 +101188,177.57,45.2 +101189,182.12,46.407 +101190,180.19,45.998 +101191,178.26,45.575 +101192,176.34,45.14 +101193,180.79,46.511 +101194,178.9,46.047 +101195,177.01,45.57 +101196,175.12,45.08 +101197,179.46,46.614 +101198,177.61,46.097 +101199,175.75,45.566 +101200,173.89,45.02 +101201,178.13,46.716 +101202,176.32,46.146 +101203,174.5,45.561 +101204,172.67,44.961 +101205,176.8,46.817 +101206,175.03,46.195 +101207,173.25,45.557 +101208,171.46,44.903 +101209,175.46,46.918 +101210,173.73,46.244 +101211,171.99,45.553 +101212,170.24,44.845 +101213,174.13,47.019 +101214,172.44,46.293 +101215,170.74,45.549 +101216,169.03,44.787 +101217,172.79,47.118 +101218,171.15,46.342 +101219,169.49,45.545 +101220,167.81,44.73 +101221,171.45,47.217 +101222,169.85,46.39 +101223,168.24,45.542 +101224,166.6,44.674 +101225,170.11,47.315 +101226,168.56,46.438 +101227,166.98,45.539 +101228,165.39,44.618 +101229,168.77,47.412 +101230,167.26,46.486 +101231,165.73,45.536 +101232,164.18,44.563 +101233,167.43,47.508 +101234,165.97,46.534 +101235,164.48,45.534 +101236,162.98,44.509 +101237,166.09,47.603 +101238,164.67,46.581 +101239,163.23,45.532 +101240,161.77,44.455 +101241,164.74,47.697 +101242,163.37,46.628 +101243,161.98,45.53 +101244,160.57,44.403 +101245,163.4,47.791 +101246,162.07,46.675 +101247,160.73,45.529 +101248,159.36,44.351 +101249,162.05,47.883 +101250,160.78,46.722 +101251,159.48,45.528 +101252,158.16,44.301 +101253,160.71,47.974 +101254,159.48,46.768 +101255,158.23,45.527 +101256,156.96,44.251 +101257,159.36,48.064 +101258,158.18,46.814 +101259,156.98,45.527 +101260,155.76,44.202 +101261,158.01,48.153 +101262,156.88,46.859 +101263,155.73,45.527 +101264,154.57,44.154 +101265,156.66,48.241 +101266,155.58,46.905 +101267,154.49,45.528 +101268,153.37,44.108 +101269,155.31,48.328 +101270,154.28,46.95 +101271,153.24,45.529 +101272,152.18,44.062 +101273,153.96,48.413 +101274,152.98,46.994 +101275,151.99,45.53 +101276,150.98,44.018 +101277,152.61,48.497 +101278,151.68,47.039 +101279,150.74,45.532 +101280,149.79,43.975 +101281,151.26,48.58 +101282,150.38,47.082 +101283,149.49,45.534 +101284,148.6,43.933 +101285,149.91,48.662 +101286,149.08,47.126 +101287,148.25,45.537 +101288,147.41,43.892 +101289,148.56,48.742 +101290,147.78,47.169 +101291,147,45.541 +101292,146.22,43.853 +101293,147.2,48.822 +101294,146.48,47.212 +101295,145.75,45.544 +101296,145.03,43.815 +101297,145.85,48.899 +101298,145.17,47.254 +101299,144.51,45.549 +101300,143.85,43.779 +101301,144.49,48.976 +101302,143.87,47.296 +101303,143.26,45.553 +101304,142.66,43.744 +101305,143.14,49.051 +101306,142.57,47.337 +101307,142.01,45.559 +101308,141.47,43.71 +101309,141.78,49.124 +101310,141.27,47.378 +101311,140.77,45.565 +101312,140.29,43.678 +101313,140.43,49.197 +101314,139.96,47.418 +101315,139.52,45.571 +101316,139.1,43.647 +101317,139.07,49.267 +101318,138.66,47.458 +101319,138.27,45.578 +101320,137.92,43.618 +101321,137.72,49.337 +101322,137.36,47.498 +101323,137.03,45.585 +101324,136.74,43.591 +101325,136.36,49.404 +101326,136.05,47.537 +101327,135.78,45.593 +101328,135.55,43.565 +101329,135,49.471 +101330,134.75,47.576 +101331,134.54,45.602 +101332,134.37,43.54 +101333,133.65,49.536 +101334,133.45,47.614 +101335,133.29,45.611 +101336,133.19,43.518 +101337,132.29,49.599 +101338,132.14,47.652 +101339,132.04,45.621 +101340,132.01,43.497 +101341,130.93,49.661 +101342,130.84,47.689 +101343,130.8,45.631 +101344,130.83,43.478 +101345,129.58,49.721 +101346,129.53,47.725 +101347,129.55,45.642 +101348,129.65,43.46 +101349,128.22,49.779 +101350,128.23,47.762 +101351,128.31,45.654 +101352,128.46,43.445 +101353,126.86,49.836 +101354,126.93,47.797 +101355,127.06,45.666 +101356,127.28,43.431 +101357,125.5,49.892 +101358,125.62,47.832 +101359,125.81,45.679 +101360,126.1,43.419 +101361,124.15,49.945 +101362,124.32,47.867 +101363,124.57,45.692 +101364,124.92,43.408 +101365,122.79,49.998 +101366,123.01,47.901 +101367,123.32,45.706 +101368,123.74,43.4 +101369,121.43,50.048 +101370,121.71,47.934 +101371,122.07,45.721 +101372,122.56,43.394 +101373,120.08,50.097 +101374,120.4,47.967 +101375,120.83,45.736 +101376,121.38,43.389 +101377,118.72,50.144 +101378,119.1,48 +101379,119.58,45.752 +101380,120.19,43.386 +101381,117.36,50.19 +101382,117.79,48.032 +101383,118.33,45.769 +101384,119.01,43.386 +101385,116.01,50.234 +101386,116.49,48.063 +101387,117.08,45.786 +101388,117.83,43.387 +101389,114.65,50.276 +101390,115.18,48.094 +101391,115.84,45.804 +101392,116.64,43.39 +101393,113.3,50.317 +101394,113.88,48.124 +101395,114.59,45.823 +101396,115.46,43.395 +101397,111.94,50.356 +101398,112.58,48.154 +101399,113.34,45.842 +101400,114.28,43.402 +101401,110.59,50.393 +101402,111.27,48.183 +101403,112.09,45.862 +101404,113.09,43.411 +101405,109.23,50.429 +101406,109.97,48.212 +101407,110.84,45.882 +101408,111.9,43.422 +101409,107.88,50.463 +101410,108.66,48.24 +101411,109.59,45.904 +101412,110.72,43.435 +101413,106.53,50.495 +101414,107.36,48.267 +101415,108.34,45.925 +101416,109.53,43.45 +101417,105.17,50.526 +101418,106.06,48.294 +101419,107.09,45.948 +101420,108.34,43.467 +101421,103.82,50.554 +101422,104.75,48.321 +101423,105.84,45.971 +101424,107.15,43.486 +101425,102.47,50.582 +101426,103.45,48.346 +101427,104.59,45.995 +101428,105.96,43.507 +101429,101.12,50.607 +101430,102.15,48.372 +101431,103.34,46.019 +101432,104.77,43.53 +101433,99.77,50.631 +101434,100.84,48.396 +101435,102.09,46.045 +101436,103.57,43.555 +101437,98.421,50.653 +101438,99.539,48.42 +101439,100.84,46.07 +101440,102.38,43.582 +101441,97.072,50.674 +101442,98.237,48.444 +101443,99.587,46.097 +101444,101.18,43.612 +101445,95.725,50.693 +101446,96.934,48.467 +101447,98.334,46.124 +101448,99.984,43.643 +101449,94.378,50.71 +101450,95.632,48.49 +101451,97.081,46.152 +101452,98.785,43.676 +101453,93.031,50.725 +101454,94.33,48.511 +101455,95.827,46.18 +101456,97.584,43.711 +101457,91.686,50.739 +101458,93.029,48.533 +101459,94.573,46.209 +101460,96.382,43.748 +101461,90.342,50.751 +101462,91.727,48.554 +101463,93.318,46.239 +101464,95.179,43.787 +101465,88.998,50.762 +101466,90.426,48.574 +101467,92.063,46.27 +101468,93.973,43.828 +101469,87.656,50.771 +101470,89.126,48.594 +101471,90.807,46.301 +101472,92.766,43.871 +101473,86.314,50.778 +101474,87.825,48.613 +101475,89.551,46.332 +101476,91.558,43.916 +101477,84.974,50.784 +101478,86.525,48.632 +101479,88.294,46.365 +101480,90.347,43.963 +101481,83.634,50.788 +101482,85.225,48.65 +101483,87.036,46.398 +101484,89.135,44.011 +101485,82.296,50.791 +101486,83.926,48.667 +101487,85.778,46.431 +101488,87.921,44.062 +101489,80.959,50.792 +101490,82.627,48.684 +101491,84.519,46.465 +101492,86.705,44.114 +101493,79.623,50.792 +101494,81.328,48.701 +101495,83.26,46.5 +101496,85.487,44.169 +101497,78.288,50.79 +101498,80.03,48.717 +101499,82,46.535 +101500,84.267,44.225 +101501,76.954,50.786 +101502,78.732,48.733 +101503,80.739,46.571 +101504,83.045,44.283 +101505,75.621,50.781 +101506,77.435,48.748 +101507,79.478,46.608 +101508,81.821,44.342 +101509,74.29,50.774 +101510,76.138,48.762 +101511,78.216,46.645 +101512,80.595,44.404 +101513,72.96,50.766 +101514,74.841,48.776 +101515,76.954,46.683 +101516,79.367,44.467 +101517,71.631,50.757 +101518,73.545,48.79 +101519,75.69,46.721 +101520,78.137,44.532 +101521,70.304,50.746 +101522,72.249,48.803 +101523,74.426,46.76 +101524,76.905,44.598 +101525,68.978,50.733 +101526,70.954,48.816 +101527,73.162,46.799 +101528,75.67,44.667 +101529,67.653,50.72 +101530,69.659,48.828 +101531,71.896,46.839 +101532,74.433,44.737 +101533,66.33,50.705 +101534,68.365,48.84 +101535,70.63,46.88 +101536,73.194,44.808 +101537,65.008,50.688 +101538,67.071,48.851 +101539,69.364,46.921 +101540,71.953,44.881 +101541,63.688,50.67 +101542,65.777,48.862 +101543,68.096,46.962 +101544,70.709,44.956 +101545,62.369,50.651 +101546,64.484,48.872 +101547,66.828,47.004 +101548,69.464,45.032 +101549,61.052,50.63 +101550,63.192,48.882 +101551,65.559,47.047 +101552,68.216,45.109 +101553,59.736,50.609 +101554,61.9,48.892 +101555,64.289,47.09 +101556,66.965,45.188 +101557,58.422,50.586 +101558,60.608,48.901 +101559,63.019,47.133 +101560,65.712,45.269 +101561,57.109,50.561 +101562,59.317,48.91 +101563,61.747,47.177 +101564,64.457,45.351 +101565,55.798,50.536 +101566,58.027,48.918 +101567,60.475,47.222 +101568,63.2,45.434 +101569,54.488,50.509 +101570,56.737,48.926 +101571,59.203,47.267 +101572,61.94,45.518 +101573,53.18,50.482 +101574,55.448,48.934 +101575,57.929,47.312 +101576,60.678,45.604 +101577,51.874,50.453 +101578,54.159,48.941 +101579,56.655,47.358 +101580,59.414,45.691 +101581,50.57,50.423 +101582,52.871,48.948 +101583,55.38,47.404 +101584,58.148,45.779 +101585,49.267,50.391 +101586,51.583,48.955 +101587,54.104,47.45 +101588,56.879,45.868 +101589,47.965,50.359 +101590,50.296,48.961 +101591,52.827,47.497 +101592,55.607,45.958 +101593,46.666,50.326 +101594,49.009,48.967 +101595,51.55,47.544 +101596,54.334,46.05 +101597,45.368,50.292 +101598,47.723,48.973 +101599,50.272,47.592 +101600,53.058,46.142 +101601,44.072,50.257 +101602,46.438,48.978 +101603,48.993,47.64 +101604,51.78,46.236 +101605,42.778,50.221 +101606,45.153,48.983 +101607,47.713,47.689 +101608,50.499,46.33 +101609,41.485,50.184 +101610,43.868,48.988 +101611,46.432,47.737 +101612,49.216,46.425 +101613,40.194,50.146 +101614,42.585,48.992 +101615,45.151,47.786 +101616,47.931,46.521 +101617,38.906,50.107 +101618,41.301,48.996 +101619,43.869,47.836 +101620,46.644,46.618 +101621,37.618,50.068 +101622,40.019,49 +101623,42.586,47.885 +101624,45.354,46.716 +101625,36.333,50.028 +101626,38.737,49.004 +101627,41.302,47.935 +101628,44.062,46.814 +101629,35.05,49.987 +101630,37.455,49.008 +101631,40.018,47.985 +101632,42.768,46.914 +101633,33.768,49.945 +101634,36.174,49.011 +101635,38.733,48.036 +101636,41.472,47.013 +101637,32.488,49.903 +101638,34.894,49.014 +101639,37.447,48.086 +101640,40.174,47.114 +101641,31.21,49.86 +101642,33.614,49.017 +101643,36.16,48.137 +101644,38.873,47.215 +101645,29.934,49.816 +101646,32.335,49.02 +101647,34.873,48.188 +101648,37.571,47.316 +101649,28.66,49.772 +101650,31.056,49.023 +101651,33.584,48.239 +101652,36.266,47.418 +101653,27.388,49.727 +101654,29.778,49.025 +101655,32.295,48.291 +101656,34.959,47.521 +101657,26.117,49.682 +101658,28.501,49.027 +101659,31.006,48.343 +101660,33.65,47.624 +101661,24.848,49.636 +101662,27.224,49.03 +101663,29.715,48.394 +101664,32.339,47.727 +101665,23.582,49.59 +101666,25.948,49.032 +101667,28.424,48.446 +101668,31.026,47.831 +101669,22.317,49.544 +101670,24.672,49.034 +101671,27.132,48.498 +101672,29.711,47.934 +101673,21.054,49.497 +101674,23.397,49.036 +101675,25.839,48.55 +101676,28.394,48.038 +101677,19.793,49.45 +101678,22.122,49.038 +101679,24.546,48.603 +101680,27.075,48.143 +101681,18.534,49.402 +101682,20.848,49.039 +101683,23.251,48.655 +101684,25.754,48.247 +101685,17.276,49.355 +101686,19.575,49.041 +101687,21.956,48.708 +101688,24.432,48.352 +101689,16.021,49.307 +101690,18.302,49.043 +101691,20.661,48.76 +101692,23.107,48.456 +101693,14.767,49.259 +101694,17.03,49.045 +101695,19.365,48.813 +101696,21.781,48.561 +101697,13.515,49.21 +101698,15.758,49.046 +101699,18.068,48.865 +101700,20.453,48.665 +101701,12.265,49.162 +101702,14.486,49.048 +101703,16.77,48.918 +101704,19.123,48.77 +101705,11.017,49.114 +101706,13.216,49.05 +101707,15.472,48.97 +101708,17.792,48.874 +101709,9.7712,49.065 +101710,11.945,49.051 +101711,14.173,49.023 +101712,16.458,48.978 +101713,8.5267,49.017 +101714,10.676,49.053 +101715,12.873,49.076 +101716,15.124,49.082 +101717,7.2841,48.969 +101718,9.4066,49.055 +101719,11.573,49.128 +101720,13.787,49.186 +101721,6.0433,48.92 +101722,8.1379,49.057 +101723,10.272,49.181 +101724,12.449,49.29 +101725,4.8042,48.872 +101726,6.8697,49.059 +101727,8.9703,49.233 +101728,11.109,49.393 +101729,3.5669,48.824 +101730,5.602,49.061 +101731,7.6681,49.285 +101732,9.7682,49.496 +101733,2.3314,48.777 +101734,4.3348,49.063 +101735,6.3653,49.338 +101736,8.4256,49.598 +101737,1.0976,48.729 +101738,3.0681,49.066 +101739,5.0619,49.39 +101740,7.0816,49.701 +101741,359.87,48.682 +101742,1.8018,49.068 +101743,3.758,49.442 +101744,5.7361,49.802 +101745,358.64,48.635 +101746,0.53605,49.071 +101747,2.4535,49.494 +101748,4.3893,49.903 +101749,357.41,48.588 +101750,359.27,49.073 +101751,1.1484,49.546 +101752,3.0411,50.004 +101753,356.18,48.542 +101754,358.01,49.076 +101755,359.84,49.597 +101756,1.6916,50.104 +101757,354.95,48.497 +101758,356.74,49.079 +101759,358.54,49.649 +101760,0.34087,50.204 +101761,353.73,48.452 +101762,355.48,49.083 +101763,357.23,49.7 +101764,358.99,50.303 +101765,352.51,48.407 +101766,354.21,49.086 +101767,355.92,49.751 +101768,357.64,50.401 +101769,351.29,48.363 +101770,352.95,49.09 +101771,354.61,49.802 +101772,356.28,50.498 +101773,350.07,48.319 +101774,351.69,49.094 +101775,353.31,49.853 +101776,354.93,50.595 +101777,348.85,48.276 +101778,350.43,49.098 +101779,352,49.903 +101780,353.57,50.691 +101781,347.63,48.234 +101782,349.16,49.103 +101783,350.69,49.954 +101784,352.21,50.786 +101785,346.42,48.193 +101786,347.9,49.107 +101787,349.38,50.004 +101788,350.85,50.881 +101789,345.21,48.152 +101790,346.64,49.112 +101791,348.07,50.053 +101792,349.49,50.974 +101793,343.99,48.112 +101794,345.38,49.118 +101795,346.76,50.103 +101796,348.13,51.067 +101797,342.78,48.073 +101798,344.12,49.123 +101799,345.45,50.152 +101800,346.77,51.158 +101801,341.57,48.034 +101802,342.86,49.129 +101803,344.14,50.201 +101804,345.41,51.249 +101805,340.36,47.997 +101806,341.6,49.135 +101807,342.82,50.25 +101808,344.05,51.339 +101809,339.16,47.96 +101810,340.34,49.142 +101811,341.51,50.298 +101812,342.68,51.428 +101813,337.95,47.925 +101814,339.08,49.149 +101815,340.2,50.346 +101816,341.32,51.515 +101817,336.75,47.89 +101818,337.82,49.156 +101819,338.89,50.394 +101820,339.95,51.602 +101821,335.54,47.856 +101822,336.56,49.164 +101823,337.57,50.441 +101824,338.59,51.687 +101825,334.34,47.824 +101826,335.3,49.172 +101827,336.26,50.488 +101828,337.22,51.772 +101829,333.14,47.793 +101830,334.04,49.18 +101831,334.95,50.534 +101832,335.85,51.855 +101833,331.94,47.762 +101834,332.78,49.189 +101835,333.63,50.581 +101836,334.49,51.937 +101837,330.74,47.733 +101838,331.52,49.198 +101839,332.32,50.626 +101840,333.12,52.018 +101841,329.54,47.705 +101842,330.27,49.208 +101843,331,50.672 +101844,331.75,52.098 +101845,328.34,47.678 +101846,329.01,49.218 +101847,329.69,50.717 +101848,330.38,52.176 +101849,327.14,47.653 +101850,327.75,49.229 +101851,328.37,50.762 +101852,329.01,52.254 +101853,325.95,47.629 +101854,326.49,49.24 +101855,327.06,50.806 +101856,327.64,52.33 +101857,324.75,47.606 +101858,325.23,49.251 +101859,325.74,50.85 +101860,326.27,52.404 +101861,323.55,47.584 +101862,323.98,49.263 +101863,324.43,50.893 +101864,324.9,52.477 +101865,322.36,47.564 +101866,322.72,49.275 +101867,323.11,50.936 +101868,323.53,52.549 +101869,321.16,47.545 +101870,321.46,49.288 +101871,321.79,50.979 +101872,322.16,52.62 +101873,319.97,47.527 +101874,320.2,49.301 +101875,320.48,51.021 +101876,320.79,52.689 +101877,318.78,47.511 +101878,318.95,49.315 +101879,319.16,51.062 +101880,319.41,52.757 +101881,317.58,47.497 +101882,317.69,49.329 +101883,317.85,51.103 +101884,318.04,52.824 +101885,316.39,47.484 +101886,316.43,49.344 +101887,316.53,51.144 +101888,316.67,52.889 +101889,315.2,47.472 +101890,315.17,49.359 +101891,315.21,51.184 +101892,315.3,52.952 +101893,314,47.462 +101894,313.92,49.375 +101895,313.9,51.224 +101896,313.93,53.015 +101897,312.81,47.454 +101898,312.66,49.391 +101899,312.58,51.263 +101900,312.56,53.075 +101901,311.62,47.447 +101902,311.4,49.408 +101903,311.26,51.302 +101904,311.19,53.135 +101905,310.43,47.441 +101906,310.14,49.425 +101907,309.94,51.34 +101908,309.81,53.192 +101909,309.23,47.438 +101910,308.89,49.443 +101911,308.63,51.378 +101912,308.44,53.248 +101913,308.04,47.435 +101914,307.63,49.462 +101915,307.31,51.416 +101916,307.07,53.303 +101917,306.85,47.435 +101918,306.37,49.481 +101919,305.99,51.452 +101920,305.7,53.356 +101921,305.65,47.436 +101922,305.11,49.5 +101923,304.68,51.489 +101924,304.33,53.408 +101925,304.46,47.439 +101926,303.85,49.52 +101927,303.36,51.524 +101928,302.96,53.458 +101929,303.27,47.443 +101930,302.59,49.541 +101931,302.04,51.56 +101932,301.59,53.507 +101933,302.07,47.45 +101934,301.34,49.562 +101935,300.73,51.594 +101936,300.22,53.554 +101937,300.88,47.458 +101938,300.08,49.584 +101939,299.41,51.628 +101940,298.85,53.6 +101941,299.68,47.467 +101942,298.82,49.606 +101943,298.09,51.662 +101944,297.48,53.644 +101945,298.48,47.479 +101946,297.56,49.629 +101947,296.78,51.695 +101948,296.11,53.686 +101949,297.29,47.492 +101950,296.3,49.653 +101951,295.46,51.728 +101952,294.75,53.727 +101953,296.09,47.506 +101954,295.04,49.677 +101955,294.14,51.76 +101956,293.38,53.766 +101957,294.89,47.523 +101958,293.78,49.701 +101959,292.83,51.792 +101960,292.01,53.804 +101961,293.69,47.541 +101962,292.52,49.726 +101963,291.51,51.823 +101964,290.64,53.84 +101965,292.49,47.561 +101966,291.25,49.752 +101967,290.2,51.853 +101968,289.28,53.874 +101969,291.29,47.583 +101970,289.99,49.778 +101971,288.88,51.883 +101972,287.91,53.907 +101973,290.09,47.607 +101974,288.73,49.805 +101975,287.56,51.912 +101976,286.55,53.939 +101977,288.88,47.632 +101978,287.47,49.833 +101979,286.25,51.941 +101980,285.19,53.969 +101981,287.68,47.659 +101982,286.21,49.861 +101983,284.93,51.97 +101984,283.82,53.997 +101985,286.47,47.688 +101986,284.94,49.889 +101987,283.62,51.998 +101988,282.46,54.023 +101989,285.26,47.719 +101990,283.68,49.919 +101991,282.3,52.025 +101992,281.1,54.049 +101993,284.06,47.751 +101994,282.41,49.948 +101995,280.99,52.052 +101996,279.74,54.072 +101997,282.85,47.786 +101998,281.15,49.979 +101999,279.68,52.078 +102000,278.38,54.094 +102001,281.63,47.822 +102002,279.89,50.01 +102003,278.36,52.104 +102004,277.02,54.115 +102005,280.42,47.859 +102006,278.62,50.041 +102007,277.05,52.129 +102008,275.66,54.133 +102009,279.21,47.899 +102010,277.35,50.073 +102011,275.74,52.153 +102012,274.31,54.151 +102013,277.99,47.94 +102014,276.09,50.106 +102015,274.42,52.178 +102016,272.95,54.167 +102017,276.77,47.983 +102018,274.82,50.139 +102019,273.11,52.201 +102020,271.6,54.181 +102021,275.55,48.027 +102022,273.55,50.173 +102023,271.8,52.224 +102024,270.24,54.194 +102025,274.33,48.073 +102026,272.28,50.207 +102027,270.49,52.247 +102028,268.89,54.205 +102029,273.11,48.121 +102030,271.02,50.242 +102031,269.18,52.269 +102032,267.54,54.215 +102033,271.89,48.171 +102034,269.75,50.277 +102035,267.86,52.291 +102036,266.19,54.223 +102037,270.66,48.222 +102038,268.48,50.313 +102039,266.55,52.312 +102040,264.84,54.23 +102041,269.43,48.275 +102042,267.21,50.349 +102043,265.24,52.332 +102044,263.49,54.235 +102045,268.2,48.329 +102046,265.93,50.386 +102047,263.93,52.352 +102048,262.14,54.239 +102049,266.97,48.386 +102050,264.66,50.424 +102051,262.62,52.372 +102052,260.8,54.242 +102053,265.74,48.443 +102054,263.39,50.462 +102055,261.32,52.391 +102056,259.45,54.243 +102057,264.5,48.502 +102058,262.12,50.5 +102059,260.01,52.41 +102060,258.11,54.243 +102061,263.26,48.563 +102062,260.84,50.539 +102063,258.7,52.428 +102064,256.77,54.241 +102065,262.02,48.625 +102066,259.57,50.579 +102067,257.39,52.446 +102068,255.43,54.238 +102069,260.78,48.689 +102070,258.3,50.619 +102071,256.08,52.463 +102072,254.09,54.234 +102073,259.54,48.755 +102074,257.02,50.659 +102075,254.78,52.48 +102076,252.75,54.228 +102077,258.29,48.821 +102078,255.74,50.7 +102079,253.47,52.496 +102080,251.42,54.221 +102081,257.04,48.889 +102082,254.47,50.741 +102083,252.16,52.512 +102084,250.08,54.213 +102085,255.79,48.959 +102086,253.19,50.783 +102087,250.86,52.528 +102088,248.75,54.203 +102089,254.54,49.03 +102090,251.91,50.825 +102091,249.55,52.543 +102092,247.42,54.192 +102093,253.28,49.102 +102094,250.63,50.868 +102095,248.25,52.558 +102096,246.09,54.18 +102097,252.03,49.176 +102098,249.35,50.911 +102099,246.95,52.572 +102100,244.76,54.167 +102101,250.77,49.251 +102102,248.07,50.955 +102103,245.64,52.586 +102104,243.43,54.152 +102105,249.5,49.327 +102106,246.79,50.999 +102107,244.34,52.599 +102108,242.1,54.136 +102109,248.24,49.404 +102110,245.51,51.043 +102111,243.04,52.612 +102112,240.78,54.119 +102113,246.97,49.483 +102114,244.22,51.088 +102115,241.74,52.625 +102116,239.46,54.101 +102117,245.71,49.563 +102118,242.94,51.133 +102119,240.43,52.637 +102120,238.14,54.082 +102121,244.44,49.644 +102122,241.66,51.179 +102123,239.13,52.649 +102124,236.82,54.062 +102125,243.16,49.726 +102126,240.37,51.225 +102127,237.83,52.661 +102128,235.5,54.041 +102129,241.89,49.809 +102130,239.09,51.271 +102131,236.53,52.672 +102132,234.19,54.019 +102133,240.61,49.893 +102134,237.8,51.318 +102135,235.24,52.683 +102136,232.87,53.995 +102137,239.33,49.978 +102138,236.51,51.365 +102139,233.94,52.694 +102140,231.56,53.971 +102141,238.05,50.064 +102142,235.22,51.412 +102143,232.64,52.704 +102144,230.25,53.946 +102145,236.76,50.151 +102146,233.94,51.46 +102147,231.34,52.714 +102148,228.94,53.92 +102149,235.48,50.239 +102150,232.65,51.508 +102151,230.05,52.724 +102152,227.63,53.893 +102153,234.19,50.328 +102154,231.36,51.556 +102155,228.75,52.733 +102156,226.33,53.865 +102157,232.9,50.418 +102158,230.06,51.605 +102159,227.45,52.742 +102160,225.02,53.836 +102161,231.6,50.508 +102162,228.77,51.654 +102163,226.16,52.751 +102164,223.72,53.807 +102165,230.31,50.599 +102166,227.48,51.703 +102167,224.86,52.76 +102168,222.42,53.777 +102169,229.01,50.691 +102170,226.19,51.752 +102171,223.57,52.768 +102172,221.12,53.745 +102173,227.71,50.784 +102174,224.89,51.802 +102175,222.28,52.776 +102176,219.83,53.714 +102177,226.41,50.877 +102178,223.6,51.851 +102179,220.98,52.784 +102180,218.53,53.681 +102181,225.1,50.971 +102182,222.3,51.901 +102183,219.69,52.792 +102184,217.24,53.648 +102185,223.79,51.066 +102186,221.01,51.952 +102187,218.4,52.8 +102188,215.95,53.614 +102189,222.48,51.161 +102190,219.71,52.002 +102191,217.11,52.807 +102192,214.66,53.58 +102193,221.17,51.256 +102194,218.41,52.052 +102195,215.82,52.814 +102196,213.37,53.545 +102197,219.86,51.352 +102198,217.11,52.103 +102199,214.53,52.821 +102200,212.09,53.51 +102201,218.54,51.449 +102202,215.81,52.154 +102203,213.24,52.828 +102204,210.8,53.474 +102205,217.23,51.545 +102206,214.51,52.205 +102207,211.95,52.835 +102208,209.52,53.437 +102209,215.91,51.643 +102210,213.21,52.256 +102211,210.66,52.841 +102212,208.24,53.4 +102213,214.59,51.74 +102214,211.91,52.308 +102215,209.38,52.847 +102216,206.96,53.363 +102217,213.26,51.838 +102218,210.61,52.359 +102219,208.09,52.854 +102220,205.69,53.325 +102221,211.94,51.936 +102222,209.31,52.411 +102223,206.8,52.86 +102224,204.41,53.287 +102225,210.61,52.034 +102226,208,52.462 +102227,205.52,52.866 +102228,203.14,53.249 +102229,209.28,52.132 +102230,206.7,52.514 +102231,204.23,52.872 +102232,201.87,53.211 +102233,207.95,52.231 +102234,205.39,52.565 +102235,202.95,52.878 +102236,200.6,53.172 +102237,206.62,52.329 +102238,204.09,52.617 +102239,201.67,52.884 +102240,199.34,53.133 +102241,205.28,52.428 +102242,202.78,52.669 +102243,200.38,52.89 +102244,198.07,53.094 +102245,203.94,52.526 +102246,201.47,52.721 +102247,199.1,52.896 +102248,196.81,53.054 +102249,202.61,52.625 +102250,200.17,52.773 +102251,197.82,52.902 +102252,195.55,53.015 +102253,201.26,52.723 +102254,198.86,52.824 +102255,196.53,52.908 +102256,194.29,52.976 +102257,199.92,52.822 +102258,197.55,52.876 +102259,195.25,52.913 +102260,193.03,52.936 +102261,198.58,52.92 +102262,196.24,52.928 +102263,193.97,52.919 +102264,191.77,52.897 +102265,197.23,53.018 +102266,194.93,52.98 +102267,192.69,52.925 +102268,190.52,52.857 +102269,195.89,53.116 +102270,193.62,53.031 +102271,191.41,52.931 +102272,189.27,52.818 +102273,194.54,53.213 +102274,192.31,53.083 +102275,190.13,52.937 +102276,188.02,52.779 +102277,193.19,53.311 +102278,190.99,53.134 +102279,188.86,52.943 +102280,186.77,52.74 +102281,191.84,53.408 +102282,189.68,53.186 +102283,187.58,52.949 +102284,185.52,52.701 +102285,190.48,53.504 +102286,188.37,53.237 +102287,186.3,52.956 +102288,184.27,52.662 +102289,189.13,53.601 +102290,187.05,53.288 +102291,185.02,52.962 +102292,183.03,52.624 +102293,187.77,53.696 +102294,185.74,53.339 +102295,183.75,52.968 +102296,181.79,52.586 +102297,186.41,53.792 +102298,184.42,53.39 +102299,182.47,52.975 +102300,180.55,52.548 +102301,185.05,53.886 +102302,183.11,53.441 +102303,181.19,52.982 +102304,179.31,52.511 +102305,183.69,53.981 +102306,181.79,53.491 +102307,179.92,52.989 +102308,178.07,52.474 +102309,182.33,54.075 +102310,180.48,53.542 +102311,178.64,52.996 +102312,176.83,52.437 +102313,180.97,54.168 +102314,179.16,53.592 +102315,177.37,53.003 +102316,175.6,52.401 +102317,179.61,54.26 +102318,177.84,53.642 +102319,176.1,53.01 +102320,174.37,52.365 +102321,178.24,54.352 +102322,176.52,53.692 +102323,174.82,53.018 +102324,173.14,52.33 +102325,176.88,54.443 +102326,175.2,53.742 +102327,173.55,53.025 +102328,171.91,52.296 +102329,175.51,54.534 +102330,173.89,53.791 +102331,172.28,53.033 +102332,170.68,52.262 +102333,174.14,54.623 +102334,172.57,53.84 +102335,171,53.042 +102336,169.45,52.229 +102337,172.77,54.712 +102338,171.25,53.889 +102339,169.73,53.05 +102340,168.22,52.196 +102341,171.4,54.8 +102342,169.93,53.938 +102343,168.46,53.059 +102344,167,52.164 +102345,170.03,54.888 +102346,168.6,53.986 +102347,167.19,53.068 +102348,165.78,52.133 +102349,168.66,54.974 +102350,167.28,54.035 +102351,165.92,53.077 +102352,164.56,52.103 +102353,167.28,55.06 +102354,165.96,54.082 +102355,164.65,53.086 +102356,163.33,52.073 +102357,165.91,55.144 +102358,164.64,54.13 +102359,163.38,53.096 +102360,162.12,52.044 +102361,164.54,55.228 +102362,163.32,54.177 +102363,162.1,53.106 +102364,160.9,52.016 +102365,163.16,55.311 +102366,162,54.224 +102367,160.83,53.117 +102368,159.68,51.989 +102369,161.78,55.392 +102370,160.67,54.271 +102371,159.57,53.127 +102372,158.46,51.963 +102373,160.41,55.473 +102374,159.35,54.317 +102375,158.3,53.138 +102376,157.25,51.938 +102377,159.03,55.553 +102378,158.03,54.363 +102379,157.03,53.149 +102380,156.03,51.913 +102381,157.65,55.631 +102382,156.7,54.408 +102383,155.76,53.161 +102384,154.82,51.89 +102385,156.27,55.709 +102386,155.38,54.454 +102387,154.49,53.173 +102388,153.61,51.868 +102389,154.9,55.785 +102390,154.05,54.498 +102391,153.22,53.186 +102392,152.4,51.847 +102393,153.52,55.86 +102394,152.73,54.543 +102395,151.95,53.198 +102396,151.19,51.827 +102397,152.14,55.934 +102398,151.4,54.587 +102399,150.68,53.211 +102400,149.98,51.808 +102401,150.76,56.007 +102402,150.08,54.631 +102403,149.42,53.225 +102404,148.77,51.79 +102405,149.38,56.079 +102406,148.75,54.674 +102407,148.15,53.239 +102408,147.56,51.773 +102409,147.99,56.149 +102410,147.43,54.717 +102411,146.88,53.253 +102412,146.35,51.758 +102413,146.61,56.219 +102414,146.1,54.759 +102415,145.61,53.268 +102416,145.14,51.744 +102417,145.23,56.287 +102418,144.78,54.801 +102419,144.34,53.283 +102420,143.94,51.73 +102421,143.85,56.353 +102422,143.45,54.843 +102423,143.08,53.298 +102424,142.73,51.719 +102425,142.47,56.419 +102426,142.12,54.884 +102427,141.81,53.314 +102428,141.53,51.708 +102429,141.09,56.483 +102430,140.8,54.925 +102431,140.54,53.331 +102432,140.32,51.699 +102433,139.71,56.546 +102434,139.47,54.965 +102435,139.27,53.348 +102436,139.11,51.691 +102437,138.32,56.607 +102438,138.14,55.005 +102439,138.01,53.365 +102440,137.91,51.685 +102441,136.94,56.667 +102442,136.82,55.045 +102443,136.74,53.382 +102444,136.7,51.679 +102445,135.56,56.726 +102446,135.49,55.084 +102447,135.47,53.401 +102448,135.5,51.676 +102449,134.18,56.784 +102450,134.17,55.122 +102451,134.2,53.419 +102452,134.3,51.673 +102453,132.79,56.84 +102454,132.84,55.16 +102455,132.93,53.438 +102456,133.09,51.672 +102457,131.41,56.894 +102458,131.51,55.198 +102459,131.67,53.458 +102460,131.89,51.672 +102461,130.03,56.948 +102462,130.19,55.235 +102463,130.4,53.478 +102464,130.68,51.674 +102465,128.65,57 +102466,128.86,55.272 +102467,129.13,53.498 +102468,129.48,51.678 +102469,127.27,57.05 +102470,127.53,55.308 +102471,127.86,53.519 +102472,128.27,51.682 +102473,125.89,57.099 +102474,126.21,55.343 +102475,126.59,53.541 +102476,127.07,51.689 +102477,124.51,57.147 +102478,124.88,55.379 +102479,125.33,53.563 +102480,125.86,51.696 +102481,123.13,57.193 +102482,123.55,55.413 +102483,124.06,53.585 +102484,124.66,51.706 +102485,121.75,57.238 +102486,122.23,55.447 +102487,122.79,53.608 +102488,123.45,51.716 +102489,120.37,57.281 +102490,120.9,55.481 +102491,121.52,53.632 +102492,122.24,51.729 +102493,118.99,57.323 +102494,119.57,55.514 +102495,120.25,53.655 +102496,121.04,51.742 +102497,117.61,57.363 +102498,118.25,55.547 +102499,118.98,53.68 +102500,119.83,51.758 +102501,116.23,57.402 +102502,116.92,55.579 +102503,117.71,53.705 +102504,118.62,51.775 +102505,114.85,57.439 +102506,115.6,55.611 +102507,116.44,53.73 +102508,117.41,51.793 +102509,113.48,57.475 +102510,114.27,55.642 +102511,115.17,53.756 +102512,116.2,51.813 +102513,112.1,57.51 +102514,112.94,55.673 +102515,113.9,53.783 +102516,114.99,51.834 +102517,110.73,57.543 +102518,111.62,55.703 +102519,112.63,53.809 +102520,113.78,51.858 +102521,109.35,57.574 +102522,110.29,55.733 +102523,111.36,53.837 +102524,112.57,51.882 +102525,107.98,57.604 +102526,108.97,55.762 +102527,110.09,53.865 +102528,111.36,51.908 +102529,106.6,57.633 +102530,107.64,55.791 +102531,108.82,53.893 +102532,110.14,51.936 +102533,105.23,57.66 +102534,106.32,55.819 +102535,107.54,53.922 +102536,108.93,51.966 +102537,103.86,57.685 +102538,105,55.846 +102539,106.27,53.952 +102540,107.71,51.996 +102541,102.49,57.71 +102542,103.67,55.874 +102543,105,53.982 +102544,106.49,52.029 +102545,101.12,57.732 +102546,102.35,55.9 +102547,103.72,54.012 +102548,105.27,52.063 +102549,99.747,57.754 +102550,101.02,55.926 +102551,102.45,54.043 +102552,104.05,52.098 +102553,98.379,57.774 +102554,99.702,55.952 +102555,101.18,54.075 +102556,102.83,52.135 +102557,97.012,57.792 +102558,98.379,55.977 +102559,99.901,54.106 +102560,101.61,52.174 +102561,95.645,57.809 +102562,97.057,56.002 +102563,98.626,54.139 +102564,100.39,52.214 +102565,94.28,57.825 +102566,95.735,56.026 +102567,97.35,54.172 +102568,99.161,52.256 +102569,92.915,57.839 +102570,94.413,56.05 +102571,96.074,54.205 +102572,97.934,52.299 +102573,91.552,57.852 +102574,93.091,56.073 +102575,94.797,54.239 +102576,96.706,52.344 +102577,90.19,57.863 +102578,91.77,56.096 +102579,93.52,54.273 +102580,95.476,52.39 +102581,88.829,57.873 +102582,90.45,56.118 +102583,92.242,54.308 +102584,94.244,52.437 +102585,87.469,57.882 +102586,89.129,56.14 +102587,90.964,54.344 +102588,93.011,52.487 +102589,86.11,57.889 +102590,87.81,56.161 +102591,89.685,54.379 +102592,91.776,52.537 +102593,84.753,57.895 +102594,86.49,56.182 +102595,88.406,54.416 +102596,90.539,52.589 +102597,83.397,57.899 +102598,85.171,56.203 +102599,87.126,54.452 +102600,89.301,52.642 +102601,82.042,57.903 +102602,83.852,56.223 +102603,85.845,54.489 +102604,88.061,52.697 +102605,80.688,57.904 +102606,82.534,56.242 +102607,84.564,54.527 +102608,86.819,52.753 +102609,79.336,57.905 +102610,81.216,56.261 +102611,83.282,54.565 +102612,85.575,52.811 +102613,77.985,57.904 +102614,79.899,56.28 +102615,82,54.604 +102616,84.329,52.87 +102617,76.635,57.903 +102618,78.582,56.298 +102619,80.717,54.642 +102620,83.082,52.93 +102621,75.287,57.899 +102622,77.266,56.316 +102623,79.433,54.682 +102624,81.832,52.992 +102625,73.94,57.895 +102626,75.95,56.333 +102627,78.149,54.722 +102628,80.58,53.055 +102629,72.595,57.89 +102630,74.634,56.35 +102631,76.864,54.762 +102632,79.327,53.119 +102633,71.251,57.883 +102634,73.319,56.367 +102635,75.579,54.802 +102636,78.071,53.184 +102637,69.909,57.875 +102638,72.005,56.383 +102639,74.293,54.843 +102640,76.814,53.251 +102641,68.568,57.866 +102642,70.691,56.399 +102643,73.006,54.885 +102644,75.554,53.319 +102645,67.228,57.856 +102646,69.378,56.414 +102647,71.718,54.926 +102648,74.292,53.388 +102649,65.89,57.844 +102650,68.065,56.429 +102651,70.43,54.968 +102652,73.028,53.458 +102653,64.554,57.832 +102654,66.752,56.443 +102655,69.141,55.011 +102656,71.762,53.529 +102657,63.219,57.818 +102658,65.441,56.458 +102659,67.852,55.054 +102660,70.494,53.601 +102661,61.886,57.804 +102662,64.129,56.472 +102663,66.562,55.097 +102664,69.224,53.675 +102665,60.555,57.788 +102666,62.819,56.485 +102667,65.271,55.14 +102668,67.951,53.749 +102669,59.225,57.772 +102670,61.508,56.498 +102671,63.979,55.184 +102672,66.677,53.825 +102673,57.897,57.754 +102674,60.199,56.511 +102675,62.687,55.228 +102676,65.4,53.901 +102677,56.57,57.736 +102678,58.89,56.523 +102679,61.393,55.273 +102680,64.121,53.979 +102681,55.245,57.716 +102682,57.581,56.536 +102683,60.1,55.317 +102684,62.839,54.057 +102685,53.922,57.696 +102686,56.273,56.548 +102687,58.805,55.363 +102688,61.556,54.137 +102689,52.601,57.675 +102690,54.966,56.559 +102691,57.51,55.408 +102692,60.27,54.217 +102693,51.281,57.653 +102694,53.659,56.57 +102695,56.214,55.453 +102696,58.983,54.298 +102697,49.963,57.63 +102698,52.353,56.581 +102699,54.917,55.499 +102700,57.693,54.38 +102701,48.647,57.606 +102702,51.047,56.592 +102703,53.62,55.546 +102704,56.4,54.462 +102705,47.332,57.582 +102706,49.742,56.603 +102707,52.322,55.592 +102708,55.106,54.546 +102709,46.019,57.556 +102710,48.437,56.613 +102711,51.023,55.639 +102712,53.809,54.63 +102713,44.708,57.531 +102714,47.134,56.623 +102715,49.723,55.685 +102716,52.51,54.715 +102717,43.399,57.504 +102718,45.83,56.633 +102719,48.423,55.732 +102720,51.209,54.8 +102721,42.092,57.477 +102722,44.527,56.642 +102723,47.122,55.78 +102724,49.906,54.886 +102725,40.786,57.449 +102726,43.225,56.651 +102727,45.82,55.827 +102728,48.601,54.973 +102729,39.482,57.42 +102730,41.924,56.66 +102731,44.518,55.875 +102732,47.293,55.06 +102733,38.18,57.391 +102734,40.623,56.669 +102735,43.215,55.923 +102736,45.984,55.148 +102737,36.88,57.361 +102738,39.323,56.678 +102739,41.911,55.971 +102740,44.672,55.236 +102741,35.582,57.331 +102742,38.023,56.687 +102743,40.606,56.019 +102744,43.358,55.325 +102745,34.285,57.301 +102746,36.724,56.695 +102747,39.301,56.067 +102748,42.042,55.414 +102749,32.991,57.27 +102750,35.425,56.703 +102751,37.995,56.115 +102752,40.724,55.503 +102753,31.698,57.238 +102754,34.127,56.711 +102755,36.688,56.164 +102756,39.404,55.593 +102757,30.407,57.206 +102758,32.83,56.719 +102759,35.381,56.212 +102760,38.081,55.683 +102761,29.118,57.174 +102762,31.533,56.727 +102763,34.072,56.261 +102764,36.757,55.774 +102765,27.83,57.141 +102766,30.237,56.735 +102767,32.763,56.31 +102768,35.431,55.864 +102769,26.545,57.108 +102770,28.941,56.742 +102771,31.454,56.359 +102772,34.102,55.955 +102773,25.261,57.075 +102774,27.646,56.75 +102775,30.144,56.408 +102776,32.772,56.046 +102777,23.979,57.042 +102778,26.352,56.757 +102779,28.833,56.457 +102780,31.44,56.138 +102781,22.699,57.008 +102782,25.058,56.765 +102783,27.521,56.506 +102784,30.106,56.229 +102785,21.421,56.974 +102786,23.764,56.772 +102787,26.209,56.555 +102788,28.77,56.32 +102789,20.144,56.94 +102790,22.472,56.779 +102791,24.896,56.604 +102792,27.432,56.412 +102793,18.87,56.906 +102794,21.18,56.786 +102795,23.582,56.653 +102796,26.092,56.503 +102797,17.597,56.872 +102798,19.888,56.794 +102799,22.268,56.702 +102800,24.75,56.595 +102801,16.326,56.838 +102802,18.597,56.801 +102803,20.953,56.751 +102804,23.407,56.686 +102805,15.057,56.804 +102806,17.306,56.808 +102807,19.637,56.8 +102808,22.061,56.777 +102809,13.789,56.77 +102810,16.016,56.815 +102811,18.321,56.849 +102812,20.715,56.868 +102813,12.523,56.736 +102814,14.727,56.823 +102815,17.004,56.898 +102816,19.366,56.959 +102817,11.259,56.702 +102818,13.438,56.83 +102819,15.687,56.947 +102820,18.016,57.05 +102821,9.9967,56.668 +102822,12.15,56.837 +102823,14.369,56.996 +102824,16.664,57.141 +102825,8.7361,56.634 +102826,10.862,56.845 +102827,13.05,57.044 +102828,15.31,57.231 +102829,7.4771,56.6 +102830,9.5746,56.852 +102831,11.731,57.093 +102832,13.955,57.321 +102833,6.2198,56.567 +102834,8.2878,56.859 +102835,10.411,57.141 +102836,12.598,57.411 +102837,4.9642,56.534 +102838,7.0014,56.867 +102839,9.091,57.19 +102840,11.24,57.5 +102841,3.7102,56.501 +102842,5.7156,56.875 +102843,7.7701,57.238 +102844,9.8801,57.589 +102845,2.4578,56.469 +102846,4.4303,56.882 +102847,6.4486,57.286 +102848,8.5189,57.678 +102849,1.207,56.437 +102850,3.1454,56.89 +102851,5.1266,57.334 +102852,7.1563,57.766 +102853,359.96,56.405 +102854,1.861,56.898 +102855,3.8041,57.382 +102856,5.7923,57.853 +102857,358.71,56.373 +102858,0.577,56.907 +102859,2.4811,57.43 +102860,4.427,57.94 +102861,357.46,56.342 +102862,359.29,56.915 +102863,1.1575,57.477 +102864,3.0604,58.027 +102865,356.22,56.312 +102866,358.01,56.923 +102867,359.83,57.524 +102868,1.6925,58.113 +102869,354.98,56.282 +102870,356.73,56.932 +102871,358.51,57.571 +102872,0.3234,58.198 +102873,353.73,56.253 +102874,355.45,56.941 +102875,357.18,57.618 +102876,358.95,58.283 +102877,352.49,56.224 +102878,354.16,56.95 +102879,355.86,57.665 +102880,357.58,58.367 +102881,351.26,56.196 +102882,352.88,56.959 +102883,354.53,57.711 +102884,356.21,58.45 +102885,350.02,56.168 +102886,351.6,56.969 +102887,353.21,57.757 +102888,354.84,58.533 +102889,348.78,56.141 +102890,350.32,56.978 +102891,351.88,57.803 +102892,353.46,58.615 +102893,347.55,56.115 +102894,349.04,56.988 +102895,350.55,57.849 +102896,352.08,58.696 +102897,346.31,56.089 +102898,347.76,56.998 +102899,349.22,57.894 +102900,350.71,58.776 +102901,345.08,56.064 +102902,346.48,57.009 +102903,347.9,57.939 +102904,349.33,58.855 +102905,343.85,56.04 +102906,345.2,57.019 +102907,346.57,57.984 +102908,347.95,58.934 +102909,342.62,56.017 +102910,343.92,57.03 +102911,345.24,58.029 +102912,346.57,59.012 +102913,341.39,55.994 +102914,342.64,57.041 +102915,343.91,58.073 +102916,345.19,59.089 +102917,340.16,55.973 +102918,341.37,57.053 +102919,342.58,58.117 +102920,343.81,59.165 +102921,338.94,55.952 +102922,340.09,57.064 +102923,341.25,58.161 +102924,342.43,59.24 +102925,337.71,55.932 +102926,338.81,57.076 +102927,339.92,58.204 +102928,341.05,59.314 +102929,336.49,55.913 +102930,337.53,57.089 +102931,338.59,58.247 +102932,339.66,59.387 +102933,335.26,55.895 +102934,336.25,57.101 +102935,337.26,58.289 +102936,338.28,59.459 +102937,334.04,55.878 +102938,334.98,57.114 +102939,335.93,58.332 +102940,336.9,59.53 +102941,332.82,55.862 +102942,333.7,57.127 +102943,334.6,58.374 +102944,335.51,59.6 +102945,331.6,55.847 +102946,332.42,57.141 +102947,333.27,58.415 +102948,334.13,59.668 +102949,330.38,55.833 +102950,331.15,57.155 +102951,331.94,58.456 +102952,332.74,59.736 +102953,329.16,55.82 +102954,329.87,57.169 +102955,330.6,58.497 +102956,331.35,59.803 +102957,327.94,55.809 +102958,328.59,57.184 +102959,329.27,58.537 +102960,329.97,59.868 +102961,326.72,55.798 +102962,327.32,57.199 +102963,327.94,58.577 +102964,328.58,59.933 +102965,325.5,55.789 +102966,326.04,57.214 +102967,326.61,58.617 +102968,327.19,59.996 +102969,324.28,55.78 +102970,324.77,57.23 +102971,325.27,58.656 +102972,325.8,60.058 +102973,323.07,55.773 +102974,323.49,57.246 +102975,323.94,58.695 +102976,324.42,60.119 +102977,321.85,55.767 +102978,322.22,57.263 +102979,322.61,58.733 +102980,323.03,60.178 +102981,320.63,55.762 +102982,320.94,57.28 +102983,321.28,58.771 +102984,321.64,60.237 +102985,319.42,55.759 +102986,319.66,57.297 +102987,319.94,58.809 +102988,320.25,60.294 +102989,318.2,55.756 +102990,318.39,57.315 +102991,318.61,58.846 +102992,318.86,60.35 +102993,316.99,55.755 +102994,317.11,57.333 +102995,317.28,58.883 +102996,317.47,60.404 +102997,315.77,55.755 +102998,315.84,57.352 +102999,315.94,58.919 +103000,316.09,60.458 +103001,314.56,55.757 +103002,314.56,57.371 +103003,314.61,58.955 +103004,314.7,60.51 +103005,313.34,55.76 +103006,313.29,57.39 +103007,313.28,58.99 +103008,313.31,60.56 +103009,312.13,55.764 +103010,312.01,57.41 +103011,311.94,59.025 +103012,311.92,60.61 +103013,310.91,55.769 +103014,310.74,57.43 +103015,310.61,59.06 +103016,310.53,60.658 +103017,309.7,55.776 +103018,309.46,57.451 +103019,309.28,59.094 +103020,309.14,60.705 +103021,308.49,55.784 +103022,308.18,57.472 +103023,307.94,59.127 +103024,307.76,60.75 +103025,307.27,55.794 +103026,306.91,57.494 +103027,306.61,59.16 +103028,306.37,60.794 +103029,306.06,55.804 +103030,305.63,57.516 +103031,305.28,59.193 +103032,304.98,60.837 +103033,304.84,55.817 +103034,304.36,57.538 +103035,303.94,59.225 +103036,303.59,60.879 +103037,303.62,55.83 +103038,303.08,57.561 +103039,302.61,59.257 +103040,302.21,60.919 +103041,302.41,55.845 +103042,301.8,57.584 +103043,301.28,59.288 +103044,300.82,60.957 +103045,301.19,55.862 +103046,300.53,57.608 +103047,299.94,59.319 +103048,299.44,60.995 +103049,299.98,55.879 +103050,299.25,57.632 +103051,298.61,59.349 +103052,298.05,61.031 +103053,298.76,55.898 +103054,297.97,57.657 +103055,297.28,59.379 +103056,296.67,61.065 +103057,297.54,55.919 +103058,296.7,57.682 +103059,295.95,59.408 +103060,295.28,61.098 +103061,296.32,55.941 +103062,295.42,57.708 +103063,294.61,59.437 +103064,293.9,61.13 +103065,295.1,55.964 +103066,294.14,57.734 +103067,293.28,59.465 +103068,292.51,61.161 +103069,293.88,55.989 +103070,292.86,57.76 +103071,291.95,59.493 +103072,291.13,61.19 +103073,292.66,56.015 +103074,291.58,57.787 +103075,290.62,59.521 +103076,289.75,61.217 +103077,291.44,56.043 +103078,290.31,57.815 +103079,289.29,59.548 +103080,288.37,61.244 +103081,290.22,56.072 +103082,289.03,57.843 +103083,287.96,59.574 +103084,286.99,61.269 +103085,288.99,56.103 +103086,287.75,57.871 +103087,286.62,59.6 +103088,285.61,61.292 +103089,287.77,56.135 +103090,286.47,57.9 +103091,285.29,59.626 +103092,284.23,61.315 +103093,286.54,56.168 +103094,285.19,57.929 +103095,283.96,59.651 +103096,282.85,61.336 +103097,285.32,56.202 +103098,283.91,57.959 +103099,282.63,59.676 +103100,281.47,61.355 +103101,284.09,56.239 +103102,282.63,57.989 +103103,281.3,59.7 +103104,280.1,61.373 +103105,282.86,56.276 +103106,281.35,58.019 +103107,279.97,59.723 +103108,278.72,61.39 +103109,281.63,56.315 +103110,280.06,58.05 +103111,278.64,59.747 +103112,277.35,61.406 +103113,280.4,56.355 +103114,278.78,58.082 +103115,277.31,59.769 +103116,275.97,61.42 +103117,279.17,56.397 +103118,277.5,58.114 +103119,275.99,59.792 +103120,274.6,61.433 +103121,277.94,56.439 +103122,276.22,58.146 +103123,274.66,59.814 +103124,273.23,61.444 +103125,276.7,56.484 +103126,274.93,58.179 +103127,273.33,59.835 +103128,271.86,61.454 +103129,275.46,56.529 +103130,273.65,58.212 +103131,272,59.856 +103132,270.49,61.463 +103133,274.23,56.576 +103134,272.37,58.246 +103135,270.67,59.876 +103136,269.12,61.471 +103137,272.99,56.624 +103138,271.08,58.28 +103139,269.35,59.897 +103140,267.75,61.477 +103141,271.75,56.674 +103142,269.8,58.314 +103143,268.02,59.916 +103144,266.39,61.482 +103145,270.5,56.725 +103146,268.51,58.349 +103147,266.69,59.935 +103148,265.02,61.486 +103149,269.26,56.777 +103150,267.22,58.384 +103151,265.37,59.954 +103152,263.66,61.489 +103153,268.01,56.83 +103154,265.94,58.42 +103155,264.04,59.973 +103156,262.3,61.49 +103157,266.77,56.885 +103158,264.65,58.456 +103159,262.72,59.99 +103160,260.94,61.491 +103161,265.52,56.94 +103162,263.36,58.492 +103163,261.39,60.008 +103164,259.58,61.49 +103165,264.27,56.997 +103166,262.07,58.529 +103167,260.07,60.025 +103168,258.22,61.488 +103169,263.01,57.055 +103170,260.79,58.566 +103171,258.75,60.042 +103172,256.86,61.484 +103173,261.76,57.115 +103174,259.5,58.604 +103175,257.42,60.058 +103176,255.51,61.48 +103177,260.5,57.175 +103178,258.21,58.642 +103179,256.1,60.074 +103180,254.15,61.474 +103181,259.24,57.237 +103182,256.92,58.68 +103183,254.78,60.09 +103184,252.8,61.468 +103185,257.98,57.299 +103186,255.62,58.719 +103187,253.46,60.105 +103188,251.45,61.46 +103189,256.72,57.363 +103190,254.33,58.758 +103191,252.13,60.12 +103192,250.1,61.451 +103193,255.46,57.428 +103194,253.04,58.797 +103195,250.81,60.134 +103196,248.75,61.441 +103197,254.19,57.494 +103198,251.75,58.837 +103199,249.49,60.148 +103200,247.4,61.43 +103201,252.93,57.561 +103202,250.45,58.877 +103203,248.17,60.162 +103204,246.06,61.418 +103205,251.66,57.629 +103206,249.16,58.917 +103207,246.85,60.175 +103208,244.72,61.405 +103209,250.38,57.697 +103210,247.86,58.958 +103211,245.54,60.188 +103212,243.37,61.391 +103213,249.11,57.767 +103214,246.57,58.999 +103215,244.22,60.201 +103216,242.03,61.377 +103217,247.83,57.838 +103218,245.27,59.04 +103219,242.9,60.213 +103220,240.69,61.361 +103221,246.56,57.909 +103222,243.97,59.081 +103223,241.58,60.226 +103224,239.36,61.344 +103225,245.28,57.982 +103226,242.68,59.123 +103227,240.27,60.237 +103228,238.02,61.327 +103229,244,58.055 +103230,241.38,59.165 +103231,238.95,60.249 +103232,236.69,61.308 +103233,242.71,58.129 +103234,240.08,59.207 +103235,237.64,60.26 +103236,235.35,61.289 +103237,241.43,58.204 +103238,238.78,59.25 +103239,236.32,60.271 +103240,234.02,61.269 +103241,240.14,58.28 +103242,237.48,59.293 +103243,235.01,60.282 +103244,232.69,61.248 +103245,238.85,58.356 +103246,236.18,59.336 +103247,233.69,60.292 +103248,231.37,61.226 +103249,237.55,58.433 +103250,234.88,59.379 +103251,232.38,60.302 +103252,230.04,61.204 +103253,236.26,58.511 +103254,233.57,59.423 +103255,231.07,60.312 +103256,228.72,61.181 +103257,234.96,58.589 +103258,232.27,59.466 +103259,229.76,60.322 +103260,227.4,61.157 +103261,233.66,58.668 +103262,230.97,59.51 +103263,228.45,60.331 +103264,226.08,61.133 +103265,232.36,58.748 +103266,229.66,59.554 +103267,227.13,60.34 +103268,224.76,61.108 +103269,231.06,58.828 +103270,228.36,59.598 +103271,225.82,60.349 +103272,223.44,61.082 +103273,229.76,58.908 +103274,227.05,59.643 +103275,224.52,60.358 +103276,222.12,61.056 +103277,228.45,58.989 +103278,225.74,59.687 +103279,223.21,60.367 +103280,220.81,61.029 +103281,227.14,59.071 +103282,224.44,59.732 +103283,221.9,60.375 +103284,219.5,61.002 +103285,225.83,59.153 +103286,223.13,59.777 +103287,220.59,60.383 +103288,218.19,60.974 +103289,224.51,59.235 +103290,221.82,59.822 +103291,219.28,60.391 +103292,216.88,60.946 +103293,223.2,59.318 +103294,220.51,59.867 +103295,217.98,60.399 +103296,215.58,60.918 +103297,221.88,59.401 +103298,219.2,59.912 +103299,216.67,60.407 +103300,214.27,60.889 +103301,220.56,59.485 +103302,217.89,59.957 +103303,215.37,60.415 +103304,212.97,60.859 +103305,219.24,59.568 +103306,216.58,60.003 +103307,214.06,60.422 +103308,211.67,60.829 +103309,217.92,59.652 +103310,215.27,60.048 +103311,212.76,60.43 +103312,210.37,60.799 +103313,216.59,59.736 +103314,213.95,60.094 +103315,211.45,60.437 +103316,209.07,60.769 +103317,215.26,59.821 +103318,212.64,60.139 +103319,210.15,60.445 +103320,207.78,60.738 +103321,213.93,59.905 +103322,211.33,60.185 +103323,208.85,60.452 +103324,206.48,60.708 +103325,212.6,59.99 +103326,210.01,60.231 +103327,207.55,60.459 +103328,205.19,60.677 +103329,211.27,60.075 +103330,208.69,60.276 +103331,206.24,60.466 +103332,203.9,60.645 +103333,209.93,60.159 +103334,207.38,60.322 +103335,204.94,60.473 +103336,202.61,60.614 +103337,208.6,60.244 +103338,206.06,60.368 +103339,203.64,60.48 +103340,201.33,60.583 +103341,207.26,60.329 +103342,204.74,60.413 +103343,202.34,60.487 +103344,200.04,60.551 +103345,205.92,60.414 +103346,203.43,60.459 +103347,201.05,60.494 +103348,198.76,60.52 +103349,204.57,60.498 +103350,202.11,60.505 +103351,199.75,60.501 +103352,197.48,60.488 +103353,203.23,60.583 +103354,200.79,60.55 +103355,198.45,60.507 +103356,196.2,60.456 +103357,201.88,60.667 +103358,199.47,60.596 +103359,197.15,60.514 +103360,194.92,60.425 +103361,200.53,60.751 +103362,198.15,60.641 +103363,195.86,60.521 +103364,193.64,60.393 +103365,199.18,60.835 +103366,196.83,60.687 +103367,194.56,60.528 +103368,192.37,60.362 +103369,197.83,60.919 +103370,195.51,60.732 +103371,193.26,60.535 +103372,191.1,60.331 +103373,196.48,61.003 +103374,194.18,60.777 +103375,191.97,60.542 +103376,189.83,60.3 +103377,195.12,61.086 +103378,192.86,60.822 +103379,190.67,60.55 +103380,188.56,60.269 +103381,193.77,61.169 +103382,191.54,60.867 +103383,189.38,60.557 +103384,187.29,60.239 +103385,192.41,61.251 +103386,190.21,60.912 +103387,188.09,60.564 +103388,186.02,60.208 +103389,191.05,61.334 +103390,188.89,60.957 +103391,186.79,60.571 +103392,184.76,60.178 +103393,189.69,61.415 +103394,187.56,61.002 +103395,185.5,60.579 +103396,183.5,60.149 +103397,188.33,61.497 +103398,186.24,61.046 +103399,184.21,60.587 +103400,182.24,60.119 +103401,186.96,61.578 +103402,184.91,61.091 +103403,182.92,60.594 +103404,180.98,60.09 +103405,185.6,61.658 +103406,183.58,61.135 +103407,181.63,60.602 +103408,179.72,60.062 +103409,184.23,61.738 +103410,182.26,61.179 +103411,180.34,60.61 +103412,178.46,60.034 +103413,182.86,61.817 +103414,180.93,61.223 +103415,179.05,60.618 +103416,177.21,60.006 +103417,181.49,61.896 +103418,179.6,61.266 +103419,177.76,60.627 +103420,175.95,59.979 +103421,180.12,61.974 +103422,178.27,61.31 +103423,176.47,60.635 +103424,174.7,59.952 +103425,178.75,62.052 +103426,176.94,61.353 +103427,175.18,60.644 +103428,173.45,59.926 +103429,177.37,62.128 +103430,175.61,61.396 +103431,173.89,60.653 +103432,172.2,59.901 +103433,176,62.205 +103434,174.28,61.438 +103435,172.6,60.662 +103436,170.95,59.876 +103437,174.62,62.28 +103438,172.95,61.481 +103439,171.32,60.671 +103440,169.71,59.852 +103441,173.25,62.355 +103442,171.62,61.523 +103443,170.03,60.68 +103444,168.46,59.828 +103445,171.87,62.429 +103446,170.29,61.565 +103447,168.74,60.69 +103448,167.22,59.805 +103449,170.49,62.502 +103450,168.96,61.607 +103451,167.45,60.7 +103452,165.98,59.783 +103453,169.11,62.574 +103454,167.63,61.648 +103455,166.17,60.71 +103456,164.74,59.762 +103457,167.73,62.646 +103458,166.29,61.689 +103459,164.88,60.721 +103460,163.5,59.741 +103461,166.35,62.716 +103462,164.96,61.73 +103463,163.6,60.731 +103464,162.26,59.721 +103465,164.97,62.786 +103466,163.63,61.771 +103467,162.31,60.742 +103468,161.02,59.702 +103469,163.58,62.855 +103470,162.29,61.811 +103471,161.03,60.753 +103472,159.78,59.684 +103473,162.2,62.923 +103474,160.96,61.851 +103475,159.74,60.765 +103476,158.55,59.666 +103477,160.81,62.99 +103478,159.63,61.891 +103479,158.46,60.777 +103480,157.31,59.65 +103481,159.43,63.056 +103482,158.29,61.93 +103483,157.18,60.789 +103484,156.08,59.634 +103485,158.04,63.121 +103486,156.96,61.969 +103487,155.89,60.801 +103488,154.85,59.62 +103489,156.65,63.185 +103490,155.62,62.007 +103491,154.61,60.814 +103492,153.61,59.606 +103493,155.27,63.249 +103494,154.29,62.046 +103495,153.33,60.827 +103496,152.38,59.594 +103497,153.88,63.311 +103498,152.95,62.084 +103499,152.04,60.84 +103500,151.15,59.582 +103501,152.49,63.372 +103502,151.62,62.121 +103503,150.76,60.854 +103504,149.92,59.571 +103505,151.1,63.432 +103506,150.28,62.158 +103507,149.48,60.868 +103508,148.69,59.562 +103509,149.71,63.49 +103510,148.94,62.195 +103511,148.19,60.882 +103512,147.47,59.553 +103513,148.32,63.548 +103514,147.61,62.232 +103515,146.91,60.897 +103516,146.24,59.546 +103517,146.93,63.605 +103518,146.27,62.268 +103519,145.63,60.912 +103520,145.01,59.539 +103521,145.54,63.66 +103522,144.93,62.303 +103523,144.35,60.927 +103524,143.79,59.534 +103525,144.15,63.715 +103526,143.6,62.339 +103527,143.07,60.943 +103528,142.56,59.53 +103529,142.76,63.768 +103530,142.26,62.373 +103531,141.79,60.959 +103532,141.34,59.527 +103533,141.37,63.82 +103534,140.92,62.408 +103535,140.5,60.976 +103536,140.11,59.525 +103537,139.97,63.871 +103538,139.58,62.442 +103539,139.22,60.993 +103540,138.89,59.524 +103541,138.58,63.92 +103542,138.25,62.476 +103543,137.94,61.01 +103544,137.66,59.525 +103545,137.19,63.969 +103546,136.91,62.509 +103547,136.66,61.028 +103548,136.44,59.526 +103549,135.8,64.016 +103550,135.57,62.542 +103551,135.38,61.046 +103552,135.22,59.529 +103553,134.41,64.062 +103554,134.23,62.574 +103555,134.1,61.064 +103556,133.99,59.533 +103557,133.01,64.107 +103558,132.9,62.606 +103559,132.82,61.083 +103560,132.77,59.539 +103561,131.62,64.15 +103562,131.56,62.637 +103563,131.53,61.102 +103564,131.55,59.545 +103565,130.23,64.192 +103566,130.22,62.669 +103567,130.25,61.122 +103568,130.33,59.553 +103569,128.84,64.233 +103570,128.88,62.699 +103571,128.97,61.142 +103572,129.1,59.562 +103573,127.45,64.273 +103574,127.55,62.729 +103575,127.69,61.163 +103576,127.88,59.573 +103577,126.06,64.311 +103578,126.21,62.759 +103579,126.41,61.183 +103580,126.66,59.585 +103581,124.66,64.348 +103582,124.87,62.789 +103583,125.13,61.205 +103584,125.44,59.598 +103585,123.27,64.384 +103586,123.53,62.817 +103587,123.85,61.226 +103588,124.21,59.612 +103589,121.88,64.419 +103590,122.2,62.846 +103591,122.56,61.249 +103592,122.99,59.627 +103593,120.49,64.452 +103594,120.86,62.874 +103595,121.28,61.271 +103596,121.77,59.644 +103597,119.1,64.484 +103598,119.52,62.902 +103599,120,61.294 +103600,120.54,59.662 +103601,117.71,64.515 +103602,118.18,62.929 +103603,118.72,61.318 +103604,119.32,59.682 +103605,116.32,64.544 +103606,116.85,62.955 +103607,117.44,61.341 +103608,118.09,59.703 +103609,114.93,64.572 +103610,115.51,62.982 +103611,116.15,61.366 +103612,116.87,59.725 +103613,113.55,64.599 +103614,114.17,63.007 +103615,114.87,61.39 +103616,115.64,59.748 +103617,112.16,64.625 +103618,112.84,63.033 +103619,113.59,61.415 +103620,114.42,59.773 +103621,110.77,64.649 +103622,111.5,63.058 +103623,112.3,61.441 +103624,113.19,59.799 +103625,109.39,64.672 +103626,110.16,63.082 +103627,111.02,61.467 +103628,111.96,59.827 +103629,108,64.693 +103630,108.83,63.106 +103631,109.74,61.493 +103632,110.73,59.855 +103633,106.62,64.714 +103634,107.49,63.129 +103635,108.45,61.52 +103636,109.51,59.885 +103637,105.23,64.733 +103638,106.16,63.153 +103639,107.17,61.547 +103640,108.28,59.917 +103641,103.85,64.75 +103642,104.82,63.175 +103643,105.88,61.575 +103644,107.05,59.949 +103645,102.46,64.767 +103646,103.49,63.197 +103647,104.6,61.603 +103648,105.81,59.983 +103649,101.08,64.782 +103650,102.15,63.219 +103651,103.31,61.631 +103652,104.58,60.018 +103653,99.702,64.796 +103654,100.82,63.241 +103655,102.03,61.66 +103656,103.35,60.055 +103657,98.322,64.809 +103658,99.483,63.261 +103659,100.74,61.689 +103660,102.11,60.092 +103661,96.942,64.82 +103662,98.149,63.282 +103663,99.457,61.719 +103664,100.88,60.131 +103665,95.564,64.83 +103666,96.815,63.302 +103667,98.17,61.749 +103668,99.643,60.172 +103669,94.187,64.839 +103670,95.482,63.322 +103671,96.883,61.78 +103672,98.405,60.213 +103673,92.811,64.847 +103674,94.149,63.341 +103675,95.596,61.811 +103676,97.167,60.256 +103677,91.435,64.853 +103678,92.816,63.36 +103679,94.308,61.842 +103680,95.927,60.3 +103681,90.061,64.859 +103682,91.484,63.378 +103683,93.02,61.873 +103684,94.685,60.345 +103685,88.688,64.863 +103686,90.152,63.396 +103687,91.731,61.906 +103688,93.443,60.392 +103689,87.316,64.866 +103690,88.821,63.413 +103691,90.442,61.938 +103692,92.199,60.439 +103693,85.945,64.868 +103694,87.489,63.431 +103695,89.153,61.971 +103696,90.954,60.488 +103697,84.575,64.868 +103698,86.158,63.447 +103699,87.863,62.004 +103700,89.707,60.538 +103701,83.207,64.868 +103702,84.828,63.464 +103703,86.572,62.037 +103704,88.459,60.589 +103705,81.84,64.866 +103706,83.498,63.48 +103707,85.281,62.071 +103708,87.209,60.641 +103709,80.474,64.863 +103710,82.168,63.495 +103711,83.99,62.106 +103712,85.958,60.695 +103713,79.109,64.859 +103714,80.839,63.51 +103715,82.698,62.14 +103716,84.705,60.749 +103717,77.745,64.854 +103718,79.511,63.525 +103719,81.405,62.175 +103720,83.451,60.805 +103721,76.383,64.848 +103722,78.182,63.54 +103723,80.112,62.211 +103724,82.195,60.861 +103725,75.022,64.841 +103726,76.854,63.554 +103727,78.819,62.246 +103728,80.938,60.919 +103729,73.663,64.833 +103730,75.527,63.567 +103731,77.525,62.282 +103732,79.678,60.978 +103733,72.305,64.824 +103734,74.2,63.581 +103735,76.23,62.319 +103736,78.417,61.037 +103737,70.948,64.814 +103738,72.874,63.594 +103739,74.935,62.355 +103740,77.155,61.098 +103741,69.593,64.803 +103742,71.548,63.606 +103743,73.639,62.392 +103744,75.89,61.16 +103745,68.24,64.791 +103746,70.222,63.619 +103747,72.343,62.429 +103748,74.624,61.222 +103749,66.887,64.778 +103750,68.898,63.631 +103751,71.046,62.467 +103752,73.356,61.286 +103753,65.537,64.764 +103754,67.573,63.643 +103755,69.749,62.505 +103756,72.086,61.35 +103757,64.187,64.749 +103758,66.249,63.654 +103759,68.45,62.543 +103760,70.814,61.415 +103761,62.84,64.733 +103762,64.926,63.665 +103763,67.152,62.581 +103764,69.541,61.482 +103765,61.494,64.717 +103766,63.603,63.676 +103767,65.852,62.62 +103768,68.265,61.549 +103769,60.149,64.699 +103770,62.281,63.686 +103771,64.552,62.659 +103772,66.988,61.616 +103773,58.806,64.681 +103774,60.959,63.697 +103775,63.252,62.698 +103776,65.709,61.685 +103777,57.465,64.662 +103778,59.638,63.707 +103779,61.951,62.737 +103780,64.427,61.754 +103781,56.125,64.642 +103782,58.317,63.716 +103783,60.649,62.777 +103784,63.144,61.824 +103785,54.787,64.622 +103786,56.997,63.726 +103787,59.346,62.817 +103788,61.859,61.895 +103789,53.45,64.601 +103790,55.677,63.735 +103791,58.043,62.857 +103792,60.572,61.966 +103793,52.116,64.579 +103794,54.358,63.744 +103795,56.74,62.897 +103796,59.283,62.039 +103797,50.782,64.556 +103798,53.04,63.753 +103799,55.435,62.938 +103800,57.991,62.111 +103801,49.451,64.533 +103802,51.722,63.761 +103803,54.13,62.979 +103804,56.698,62.185 +103805,48.121,64.509 +103806,50.405,63.769 +103807,52.824,63.019 +103808,55.403,62.258 +103809,46.793,64.485 +103810,49.088,63.778 +103811,51.518,63.06 +103812,54.106,62.333 +103813,45.467,64.46 +103814,47.772,63.785 +103815,50.211,63.102 +103816,52.807,62.408 +103817,44.142,64.434 +103818,46.456,63.793 +103819,48.903,63.143 +103820,51.506,62.483 +103821,42.819,64.408 +103822,45.141,63.801 +103823,47.595,63.185 +103824,50.202,62.559 +103825,41.498,64.382 +103826,43.827,63.808 +103827,46.286,63.226 +103828,48.897,62.636 +103829,40.178,64.355 +103830,42.513,63.815 +103831,44.976,63.268 +103832,47.59,62.712 +103833,38.861,64.327 +103834,41.2,63.822 +103835,43.666,63.31 +103836,46.28,62.789 +103837,37.545,64.299 +103838,39.888,63.829 +103839,42.355,63.352 +103840,44.969,62.867 +103841,36.231,64.271 +103842,38.575,63.836 +103843,41.044,63.394 +103844,43.656,62.945 +103845,34.918,64.243 +103846,37.264,63.843 +103847,39.731,63.436 +103848,42.34,63.023 +103849,33.607,64.214 +103850,35.953,63.849 +103851,38.418,63.478 +103852,41.023,63.101 +103853,32.299,64.185 +103854,34.643,63.856 +103855,37.105,63.521 +103856,39.704,63.18 +103857,30.991,64.155 +103858,33.333,63.862 +103859,35.79,63.563 +103860,38.382,63.258 +103861,29.686,64.125 +103862,32.024,63.868 +103863,34.476,63.606 +103864,37.059,63.337 +103865,28.382,64.095 +103866,30.716,63.874 +103867,33.16,63.648 +103868,35.734,63.416 +103869,27.081,64.065 +103870,29.408,63.88 +103871,31.844,63.691 +103872,34.407,63.495 +103873,25.781,64.035 +103874,28.101,63.886 +103875,30.527,63.733 +103876,33.077,63.575 +103877,24.482,64.005 +103878,26.794,63.892 +103879,29.209,63.776 +103880,31.746,63.654 +103881,23.186,63.974 +103882,25.488,63.898 +103883,27.891,63.818 +103884,30.413,63.733 +103885,21.891,63.944 +103886,24.182,63.904 +103887,26.573,63.861 +103888,29.078,63.813 +103889,20.598,63.913 +103890,22.877,63.91 +103891,25.253,63.904 +103892,27.742,63.892 +103893,19.307,63.883 +103894,21.573,63.916 +103895,23.933,63.946 +103896,26.403,63.971 +103897,18.017,63.852 +103898,20.269,63.922 +103899,22.612,63.989 +103900,25.063,64.05 +103901,16.729,63.822 +103902,18.965,63.928 +103903,21.291,64.031 +103904,23.72,64.129 +103905,15.443,63.792 +103906,17.663,63.934 +103907,19.969,64.073 +103908,22.376,64.208 +103909,14.159,63.761 +103910,16.361,63.94 +103911,18.647,64.116 +103912,21.03,64.287 +103913,12.876,63.731 +103914,15.059,63.946 +103915,17.324,64.158 +103916,19.683,64.365 +103917,11.595,63.701 +103918,13.758,63.952 +103919,16,64.2 +103920,18.334,64.443 +103921,10.315,63.672 +103922,12.457,63.958 +103923,14.676,64.242 +103924,16.982,64.521 +103925,9.0377,63.642 +103926,11.157,63.965 +103927,13.351,64.284 +103928,15.63,64.599 +103929,7.7616,63.613 +103930,9.8579,63.971 +103931,12.025,64.326 +103932,14.275,64.676 +103933,6.4872,63.584 +103934,8.5589,63.977 +103935,10.699,64.368 +103936,12.919,64.753 +103937,5.2144,63.555 +103938,7.2605,63.984 +103939,9.373,64.409 +103940,11.562,64.829 +103941,3.9432,63.527 +103942,5.9626,63.991 +103943,8.0459,64.451 +103944,10.203,64.906 +103945,2.6735,63.499 +103946,4.6651,63.997 +103947,6.7183,64.492 +103948,8.8421,64.981 +103949,1.4055,63.472 +103950,3.3682,64.004 +103951,5.3901,64.533 +103952,7.4799,65.057 +103953,0.13893,63.445 +103954,2.0718,64.011 +103955,4.0614,64.574 +103956,6.1162,65.131 +103957,358.87,63.418 +103958,0.77583,64.018 +103959,2.7322,64.615 +103960,4.7511,65.205 +103961,357.61,63.392 +103962,359.48,64.026 +103963,1.4026,64.655 +103964,3.3846,65.279 +103965,356.35,63.366 +103966,358.19,64.033 +103967,0.072366,64.696 +103968,2.0166,65.352 +103969,355.09,63.341 +103970,356.89,64.041 +103971,358.74,64.736 +103972,0.64735,65.425 +103973,353.83,63.316 +103974,355.6,64.049 +103975,357.41,64.776 +103976,359.28,65.497 +103977,352.57,63.293 +103978,354.3,64.057 +103979,356.08,64.816 +103980,357.9,65.568 +103981,351.31,63.269 +103982,353.01,64.065 +103983,354.75,64.855 +103984,356.53,65.638 +103985,350.06,63.247 +103986,351.72,64.073 +103987,353.41,64.895 +103988,355.16,65.708 +103989,348.81,63.225 +103990,350.42,64.082 +103991,352.08,64.934 +103992,353.78,65.777 +103993,347.55,63.203 +103994,349.13,64.091 +103995,350.75,64.972 +103996,352.41,65.846 +103997,346.3,63.183 +103998,347.84,64.1 +103999,349.41,65.011 +104000,351.03,65.913 +104001,345.05,63.163 +104002,346.55,64.109 +104003,348.08,65.049 +104004,349.65,65.98 +104005,343.8,63.144 +104006,345.26,64.119 +104007,346.75,65.087 +104008,348.27,66.046 +104009,342.56,63.125 +104010,343.97,64.129 +104011,345.41,65.125 +104012,346.89,66.111 +104013,341.31,63.108 +104014,342.68,64.139 +104015,344.08,65.162 +104016,345.51,66.176 +104017,340.07,63.091 +104018,341.39,64.149 +104019,342.74,65.199 +104020,344.12,66.239 +104021,338.82,63.075 +104022,340.1,64.16 +104023,341.4,65.236 +104024,342.74,66.302 +104025,337.58,63.06 +104026,338.81,64.171 +104027,340.07,65.273 +104028,341.35,66.364 +104029,336.34,63.046 +104030,337.52,64.182 +104031,338.73,65.309 +104032,339.97,66.424 +104033,335.1,63.033 +104034,336.23,64.194 +104035,337.39,65.345 +104036,338.58,66.484 +104037,333.86,63.021 +104038,334.94,64.206 +104039,336.06,65.38 +104040,337.2,66.543 +104041,332.62,63.01 +104042,333.66,64.218 +104043,334.72,65.415 +104044,335.81,66.601 +104045,331.38,63 +104046,332.37,64.23 +104047,333.38,65.45 +104048,334.42,66.658 +104049,330.14,62.991 +104050,331.08,64.243 +104051,332.04,65.485 +104052,333.03,66.714 +104053,328.9,62.982 +104054,329.79,64.256 +104055,330.7,65.519 +104056,331.64,66.768 +104057,327.67,62.975 +104058,328.51,64.27 +104059,329.37,65.553 +104060,330.25,66.822 +104061,326.43,62.969 +104062,327.22,64.284 +104063,328.03,65.586 +104064,328.86,66.875 +104065,325.2,62.964 +104066,325.93,64.298 +104067,326.69,65.619 +104068,327.47,66.926 +104069,323.97,62.96 +104070,324.65,64.312 +104071,325.35,65.652 +104072,326.08,66.977 +104073,322.73,62.957 +104074,323.36,64.327 +104075,324.01,65.684 +104076,324.69,67.026 +104077,321.5,62.955 +104078,322.07,64.342 +104079,322.67,65.716 +104080,323.29,67.075 +104081,320.27,62.955 +104082,320.79,64.358 +104083,321.33,65.747 +104084,321.9,67.122 +104085,319.04,62.955 +104086,319.5,64.374 +104087,319.99,65.779 +104088,320.51,67.168 +104089,317.81,62.957 +104090,318.21,64.39 +104091,318.65,65.809 +104092,319.12,67.213 +104093,316.57,62.96 +104094,316.93,64.407 +104095,317.31,65.84 +104096,317.72,67.256 +104097,315.34,62.964 +104098,315.64,64.424 +104099,315.97,65.87 +104100,316.33,67.299 +104101,314.11,62.969 +104102,314.36,64.441 +104103,314.63,65.899 +104104,314.94,67.34 +104105,312.88,62.975 +104106,313.07,64.459 +104107,313.29,65.928 +104108,313.54,67.381 +104109,311.65,62.983 +104110,311.79,64.478 +104111,311.95,65.957 +104112,312.15,67.42 +104113,310.43,62.991 +104114,310.5,64.496 +104115,310.61,65.985 +104116,310.75,67.457 +104117,309.2,63.001 +104118,309.22,64.515 +104119,309.27,66.013 +104120,309.36,67.494 +104121,307.97,63.013 +104122,307.93,64.535 +104123,307.93,66.041 +104124,307.97,67.529 +104125,306.74,63.025 +104126,306.64,64.554 +104127,306.59,66.068 +104128,306.57,67.563 +104129,305.51,63.039 +104130,305.36,64.575 +104131,305.25,66.094 +104132,305.18,67.596 +104133,304.28,63.054 +104134,304.07,64.595 +104135,303.91,66.12 +104136,303.79,67.628 +104137,303.05,63.07 +104138,302.79,64.616 +104139,302.57,66.146 +104140,302.39,67.658 +104141,301.82,63.087 +104142,301.5,64.638 +104143,301.23,66.172 +104144,301,67.688 +104145,300.59,63.106 +104146,300.22,64.66 +104147,299.89,66.197 +104148,299.61,67.716 +104149,299.36,63.126 +104150,298.93,64.682 +104151,298.55,66.221 +104152,298.22,67.742 +104153,298.13,63.147 +104154,297.64,64.704 +104155,297.21,66.245 +104156,296.82,67.768 +104157,296.9,63.169 +104158,296.36,64.728 +104159,295.87,66.269 +104160,295.43,67.792 +104161,295.67,63.193 +104162,295.07,64.751 +104163,294.53,66.292 +104164,294.04,67.815 +104165,294.44,63.218 +104166,293.78,64.775 +104167,293.19,66.315 +104168,292.65,67.837 +104169,293.21,63.244 +104170,292.5,64.799 +104171,291.85,66.337 +104172,291.26,67.857 +104173,291.98,63.272 +104174,291.21,64.824 +104175,290.51,66.359 +104176,289.87,67.877 +104177,290.74,63.3 +104178,289.92,64.849 +104179,289.17,66.381 +104180,288.48,67.895 +104181,289.51,63.33 +104182,288.64,64.874 +104183,287.83,66.402 +104184,287.09,67.912 +104185,288.27,63.361 +104186,287.35,64.9 +104187,286.49,66.423 +104188,285.71,67.927 +104189,287.04,63.394 +104190,286.06,64.927 +104191,285.16,66.443 +104192,284.32,67.942 +104193,285.8,63.428 +104194,284.77,64.953 +104195,283.82,66.463 +104196,282.93,67.955 +104197,284.57,63.462 +104198,283.48,64.98 +104199,282.48,66.482 +104200,281.55,67.967 +104201,283.33,63.499 +104202,282.2,65.008 +104203,281.14,66.501 +104204,280.16,67.978 +104205,282.09,63.536 +104206,280.91,65.036 +104207,279.8,66.52 +104208,278.78,67.987 +104209,280.86,63.574 +104210,279.62,65.064 +104211,278.47,66.538 +104212,277.4,67.996 +104213,279.62,63.614 +104214,278.33,65.093 +104215,277.13,66.556 +104216,276.01,68.003 +104217,278.37,63.655 +104218,277.04,65.122 +104219,275.79,66.573 +104220,274.63,68.009 +104221,277.13,63.697 +104222,275.75,65.151 +104223,274.46,66.59 +104224,273.25,68.014 +104225,275.89,63.74 +104226,274.46,65.181 +104227,273.12,66.607 +104228,271.87,68.018 +104229,274.65,63.785 +104230,273.17,65.211 +104231,271.78,66.623 +104232,270.49,68.02 +104233,273.4,63.83 +104234,271.87,65.241 +104235,270.45,66.639 +104236,269.12,68.022 +104237,272.16,63.877 +104238,270.58,65.272 +104239,269.11,66.654 +104240,267.74,68.022 +104241,270.91,63.925 +104242,269.29,65.304 +104243,267.78,66.669 +104244,266.36,68.021 +104245,269.66,63.973 +104246,268,65.335 +104247,266.45,66.684 +104248,264.99,68.019 +104249,268.41,64.023 +104250,266.7,65.367 +104251,265.11,66.698 +104252,263.62,68.016 +104253,267.16,64.074 +104254,265.41,65.399 +104255,263.78,66.712 +104256,262.25,68.012 +104257,265.91,64.126 +104258,264.12,65.432 +104259,262.44,66.726 +104260,260.87,68.007 +104261,264.65,64.179 +104262,262.82,65.465 +104263,261.11,66.739 +104264,259.51,68.001 +104265,263.4,64.233 +104266,261.53,65.498 +104267,259.78,66.752 +104268,258.14,67.994 +104269,262.14,64.289 +104270,260.23,65.532 +104271,258.45,66.765 +104272,256.77,67.986 +104273,260.88,64.345 +104274,258.94,65.566 +104275,257.12,66.777 +104276,255.4,67.977 +104277,259.62,64.402 +104278,257.64,65.6 +104279,255.78,66.789 +104280,254.04,67.967 +104281,258.36,64.46 +104282,256.34,65.635 +104283,254.45,66.8 +104284,252.68,67.956 +104285,257.1,64.518 +104286,255.05,65.669 +104287,253.12,66.812 +104288,251.31,67.944 +104289,255.83,64.578 +104290,253.75,65.705 +104291,251.79,66.823 +104292,249.95,67.931 +104293,254.57,64.639 +104294,252.45,65.74 +104295,250.46,66.833 +104296,248.6,67.918 +104297,253.3,64.7 +104298,251.15,65.776 +104299,249.14,66.844 +104300,247.24,67.903 +104301,252.03,64.763 +104302,249.85,65.812 +104303,247.81,66.854 +104304,245.88,67.887 +104305,250.76,64.826 +104306,248.55,65.848 +104307,246.48,66.863 +104308,244.53,67.871 +104309,249.48,64.89 +104310,247.25,65.884 +104311,245.15,66.873 +104312,243.17,67.854 +104313,248.21,64.954 +104314,245.95,65.921 +104315,243.83,66.882 +104316,241.82,67.836 +104317,246.93,65.02 +104318,244.65,65.958 +104319,242.5,66.891 +104320,240.47,67.817 +104321,245.65,65.086 +104322,243.34,65.995 +104323,241.17,66.9 +104324,239.12,67.798 +104325,244.37,65.153 +104326,242.04,66.033 +104327,239.85,66.908 +104328,237.78,67.778 +104329,243.09,65.22 +104330,240.74,66.07 +104331,238.52,66.916 +104332,236.43,67.757 +104333,241.81,65.289 +104334,239.43,66.108 +104335,237.2,66.924 +104336,235.09,67.735 +104337,240.52,65.357 +104338,238.13,66.146 +104339,235.88,66.932 +104340,233.74,67.713 +104341,239.23,65.427 +104342,236.82,66.185 +104343,234.55,66.939 +104344,232.4,67.69 +104345,237.94,65.497 +104346,235.52,66.223 +104347,233.23,66.947 +104348,231.06,67.667 +104349,236.65,65.567 +104350,234.21,66.262 +104351,231.91,66.954 +104352,229.73,67.643 +104353,235.36,65.638 +104354,232.9,66.301 +104355,230.59,66.961 +104356,228.39,67.618 +104357,234.06,65.71 +104358,231.6,66.339 +104359,229.27,66.968 +104360,227.06,67.593 +104361,232.77,65.782 +104362,230.29,66.379 +104363,227.95,66.974 +104364,225.72,67.568 +104365,231.47,65.854 +104366,228.98,66.418 +104367,226.63,66.98 +104368,224.39,67.542 +104369,230.17,65.927 +104370,227.67,66.457 +104371,225.31,66.987 +104372,223.06,67.515 +104373,228.86,66 +104374,226.36,66.497 +104375,223.99,66.993 +104376,221.74,67.488 +104377,227.56,66.074 +104378,225.05,66.536 +104379,222.67,66.999 +104380,220.41,67.461 +104381,226.25,66.148 +104382,223.74,66.576 +104383,221.35,67.005 +104384,219.08,67.433 +104385,224.94,66.222 +104386,222.42,66.616 +104387,220.04,67.01 +104388,217.76,67.405 +104389,223.63,66.296 +104390,221.11,66.656 +104391,218.72,67.016 +104392,216.44,67.376 +104393,222.32,66.371 +104394,219.8,66.696 +104395,217.4,67.021 +104396,215.12,67.347 +104397,221.01,66.446 +104398,218.48,66.736 +104399,216.09,67.027 +104400,213.81,67.318 +104401,219.69,66.521 +104402,217.17,66.776 +104403,214.77,67.032 +104404,212.49,67.289 +104405,218.37,66.596 +104406,215.85,66.816 +104407,213.46,67.037 +104408,211.18,67.26 +104409,217.05,66.671 +104410,214.54,66.856 +104411,212.15,67.043 +104412,209.86,67.23 +104413,215.73,66.747 +104414,213.22,66.897 +104415,210.83,67.048 +104416,208.55,67.2 +104417,214.4,66.822 +104418,211.9,66.937 +104419,209.52,67.053 +104420,207.24,67.17 +104421,213.08,66.898 +104422,210.59,66.977 +104423,208.21,67.058 +104424,205.94,67.14 +104425,211.75,66.973 +104426,209.27,67.017 +104427,206.9,67.063 +104428,204.63,67.11 +104429,210.42,67.049 +104430,207.95,67.058 +104431,205.59,67.068 +104432,203.33,67.08 +104433,209.09,67.125 +104434,206.63,67.098 +104435,204.28,67.073 +104436,202.03,67.05 +104437,207.76,67.2 +104438,205.31,67.138 +104439,202.97,67.078 +104440,200.73,67.02 +104441,206.42,67.275 +104442,203.99,67.178 +104443,201.66,67.083 +104444,199.43,66.99 +104445,205.08,67.351 +104446,202.67,67.218 +104447,200.35,67.088 +104448,198.13,66.96 +104449,203.74,67.426 +104450,201.34,67.259 +104451,199.05,67.093 +104452,196.84,66.93 +104453,202.4,67.5 +104454,200.02,67.299 +104455,197.74,67.098 +104456,195.54,66.9 +104457,201.06,67.575 +104458,198.7,67.339 +104459,196.43,67.103 +104460,194.25,66.87 +104461,199.72,67.65 +104462,197.37,67.378 +104463,195.13,67.109 +104464,192.96,66.841 +104465,198.37,67.724 +104466,196.05,67.418 +104467,193.82,67.114 +104468,191.67,66.811 +104469,197.02,67.798 +104470,194.72,67.458 +104471,192.52,67.119 +104472,190.39,66.782 +104473,195.67,67.871 +104474,193.4,67.497 +104475,191.21,67.125 +104476,189.1,66.753 +104477,194.32,67.944 +104478,192.07,67.537 +104479,189.91,67.13 +104480,187.82,66.725 +104481,192.97,68.017 +104482,190.74,67.576 +104483,188.6,67.136 +104484,186.54,66.697 +104485,191.61,68.089 +104486,189.42,67.615 +104487,187.3,67.142 +104488,185.26,66.669 +104489,190.26,68.161 +104490,188.09,67.654 +104491,186,67.148 +104492,183.98,66.642 +104493,188.9,68.233 +104494,186.76,67.693 +104495,184.7,67.154 +104496,182.7,66.615 +104497,187.54,68.304 +104498,185.43,67.732 +104499,183.4,67.16 +104500,181.43,66.588 +104501,186.18,68.375 +104502,184.1,67.771 +104503,182.1,67.166 +104504,180.15,66.562 +104505,184.82,68.445 +104506,182.77,67.809 +104507,180.8,67.173 +104508,178.88,66.536 +104509,183.45,68.514 +104510,181.44,67.847 +104511,179.5,67.179 +104512,177.61,66.511 +104513,182.09,68.583 +104514,180.11,67.885 +104515,178.2,67.186 +104516,176.34,66.487 +104517,180.72,68.651 +104518,178.78,67.923 +104519,176.9,67.193 +104520,175.07,66.462 +104521,179.35,68.719 +104522,177.45,67.961 +104523,175.6,67.2 +104524,173.81,66.439 +104525,177.98,68.786 +104526,176.11,67.998 +104527,174.3,67.208 +104528,172.54,66.416 +104529,176.61,68.852 +104530,174.78,68.035 +104531,173,67.215 +104532,171.28,66.394 +104533,175.24,68.918 +104534,173.45,68.072 +104535,171.71,67.223 +104536,170.01,66.372 +104537,173.87,68.983 +104538,172.11,68.109 +104539,170.41,67.231 +104540,168.75,66.352 +104541,172.49,69.047 +104542,170.78,68.145 +104543,169.11,67.239 +104544,167.49,66.331 +104545,171.12,69.11 +104546,169.44,68.181 +104547,167.82,67.248 +104548,166.24,66.312 +104549,169.74,69.173 +104550,168.11,68.217 +104551,166.52,67.257 +104552,164.98,66.293 +104553,168.36,69.235 +104554,166.77,68.253 +104555,165.23,67.266 +104556,163.72,66.276 +104557,166.98,69.296 +104558,165.44,68.288 +104559,163.93,67.275 +104560,162.47,66.258 +104561,165.6,69.356 +104562,164.1,68.323 +104563,162.64,67.285 +104564,161.21,66.242 +104565,164.22,69.415 +104566,162.76,68.358 +104567,161.34,67.295 +104568,159.96,66.227 +104569,162.84,69.474 +104570,161.43,68.392 +104571,160.05,67.305 +104572,158.71,66.212 +104573,161.46,69.531 +104574,160.09,68.426 +104575,158.76,67.315 +104576,157.46,66.199 +104577,160.07,69.588 +104578,158.75,68.46 +104579,157.46,67.326 +104580,156.21,66.186 +104581,158.69,69.643 +104582,157.41,68.494 +104583,156.17,67.337 +104584,154.96,66.174 +104585,157.3,69.698 +104586,156.07,68.527 +104587,154.88,67.348 +104588,153.72,66.163 +104589,155.92,69.752 +104590,154.74,68.56 +104591,153.59,67.36 +104592,152.47,66.153 +104593,154.53,69.804 +104594,153.4,68.592 +104595,152.3,67.372 +104596,151.22,66.144 +104597,153.14,69.856 +104598,152.06,68.624 +104599,151,67.384 +104600,149.98,66.136 +104601,151.75,69.907 +104602,150.72,68.656 +104603,149.71,67.397 +104604,148.74,66.13 +104605,150.36,69.957 +104606,149.38,68.688 +104607,148.42,67.41 +104608,147.49,66.124 +104609,148.97,70.005 +104610,148.04,68.719 +104611,147.13,67.423 +104612,146.25,66.119 +104613,147.58,70.053 +104614,146.7,68.75 +104615,145.84,67.437 +104616,145.01,66.115 +104617,146.19,70.099 +104618,145.36,68.78 +104619,144.55,67.451 +104620,143.77,66.112 +104621,144.8,70.145 +104622,144.02,68.81 +104623,143.26,67.465 +104624,142.53,66.111 +104625,143.41,70.189 +104626,142.68,68.84 +104627,141.97,67.48 +104628,141.29,66.11 +104629,142.02,70.232 +104630,141.33,68.869 +104631,140.68,67.495 +104632,140.05,66.111 +104633,140.62,70.275 +104634,139.99,68.898 +104635,139.39,67.51 +104636,138.81,66.113 +104637,139.23,70.316 +104638,138.65,68.927 +104639,138.1,67.526 +104640,137.58,66.115 +104641,137.84,70.355 +104642,137.31,68.955 +104643,136.81,67.542 +104644,136.34,66.119 +104645,136.44,70.394 +104646,135.97,68.982 +104647,135.52,67.559 +104648,135.1,66.125 +104649,135.05,70.432 +104650,134.63,69.01 +104651,134.23,67.576 +104652,133.87,66.131 +104653,133.66,70.468 +104654,133.29,69.037 +104655,132.94,67.593 +104656,132.63,66.138 +104657,132.26,70.504 +104658,131.94,69.063 +104659,131.65,67.611 +104660,131.4,66.147 +104661,130.87,70.538 +104662,130.6,69.09 +104663,130.37,67.629 +104664,130.16,66.157 +104665,129.47,70.571 +104666,129.26,69.115 +104667,129.08,67.647 +104668,128.92,66.168 +104669,128.08,70.602 +104670,127.92,69.141 +104671,127.79,67.666 +104672,127.69,66.18 +104673,126.69,70.633 +104674,126.58,69.166 +104675,126.5,67.686 +104676,126.46,66.194 +104677,125.29,70.662 +104678,125.23,69.19 +104679,125.21,67.705 +104680,125.22,66.209 +104681,123.9,70.69 +104682,123.89,69.214 +104683,123.92,67.725 +104684,123.99,66.225 +104685,122.5,70.717 +104686,122.55,69.238 +104687,122.63,67.746 +104688,122.75,66.242 +104689,121.11,70.743 +104690,121.21,69.262 +104691,121.34,67.767 +104692,121.52,66.26 +104693,119.72,70.768 +104694,119.87,69.284 +104695,120.05,67.788 +104696,120.28,66.28 +104697,118.32,70.791 +104698,118.52,69.307 +104699,118.76,67.81 +104700,119.05,66.301 +104701,116.93,70.813 +104702,117.18,69.329 +104703,117.47,67.832 +104704,117.81,66.323 +104705,115.54,70.834 +104706,115.84,69.351 +104707,116.19,67.854 +104708,116.58,66.346 +104709,114.14,70.854 +104710,114.5,69.372 +104711,114.9,67.877 +104712,115.34,66.371 +104713,112.75,70.873 +104714,113.16,69.393 +104715,113.61,67.9 +104716,114.1,66.396 +104717,111.36,70.89 +104718,111.81,69.414 +104719,112.32,67.924 +104720,112.87,66.423 +104721,109.97,70.906 +104722,110.47,69.434 +104723,111.03,67.948 +104724,111.63,66.451 +104725,108.58,70.921 +104726,109.13,69.453 +104727,109.74,67.973 +104728,110.39,66.481 +104729,107.19,70.935 +104730,107.79,69.473 +104731,108.45,67.998 +104732,109.16,66.512 +104733,105.8,70.948 +104734,106.45,69.491 +104735,107.16,68.023 +104736,107.92,66.543 +104737,104.41,70.959 +104738,105.11,69.51 +104739,105.87,68.048 +104740,106.68,66.576 +104741,103.02,70.97 +104742,103.77,69.528 +104743,104.57,68.075 +104744,105.44,66.611 +104745,101.63,70.979 +104746,102.43,69.546 +104747,103.28,68.101 +104748,104.2,66.646 +104749,100.24,70.987 +104750,101.09,69.563 +104751,101.99,68.128 +104752,102.96,66.683 +104753,98.857,70.994 +104754,99.748,69.58 +104755,100.7,68.155 +104756,101.72,66.72 +104757,97.471,71 +104758,98.409,69.596 +104759,99.409,68.183 +104760,100.48,66.759 +104761,96.086,71.004 +104762,97.069,69.613 +104763,98.117,68.211 +104764,99.236,66.799 +104765,94.702,71.008 +104766,95.73,69.628 +104767,96.825,68.239 +104768,97.992,66.841 +104769,93.318,71.01 +104770,94.391,69.644 +104771,95.532,68.268 +104772,96.748,66.883 +104773,91.936,71.011 +104774,93.053,69.659 +104775,94.239,68.297 +104776,95.502,66.926 +104777,90.554,71.011 +104778,91.714,69.673 +104779,92.946,68.326 +104780,94.256,66.971 +104781,89.174,71.01 +104782,90.376,69.688 +104783,91.652,68.356 +104784,93.008,67.017 +104785,87.794,71.009 +104786,89.039,69.702 +104787,90.358,68.386 +104788,91.76,67.063 +104789,86.415,71.005 +104790,87.701,69.715 +104791,89.064,68.416 +104792,90.511,67.111 +104793,85.038,71.001 +104794,86.364,69.728 +104795,87.769,68.447 +104796,89.26,67.16 +104797,83.661,70.996 +104798,85.027,69.741 +104799,86.474,68.478 +104800,88.008,67.21 +104801,82.286,70.99 +104802,83.691,69.754 +104803,85.178,68.51 +104804,86.755,67.261 +104805,80.911,70.983 +104806,82.355,69.766 +104807,83.882,68.542 +104808,85.501,67.313 +104809,79.538,70.975 +104810,81.02,69.778 +104811,82.586,68.574 +104812,84.246,67.366 +104813,78.166,70.966 +104814,79.684,69.789 +104815,81.289,68.606 +104816,82.989,67.42 +104817,76.795,70.956 +104818,78.35,69.8 +104819,79.992,68.639 +104820,81.731,67.475 +104821,75.425,70.945 +104822,77.015,69.811 +104823,78.694,68.672 +104824,80.472,67.53 +104825,74.057,70.933 +104826,75.681,69.822 +104827,77.396,68.706 +104828,79.211,67.587 +104829,72.689,70.921 +104830,74.348,69.832 +104831,76.097,68.739 +104832,77.949,67.645 +104833,71.323,70.907 +104834,73.014,69.842 +104835,74.798,68.773 +104836,76.686,67.703 +104837,69.959,70.893 +104838,71.682,69.852 +104839,73.499,68.808 +104840,75.421,67.762 +104841,68.595,70.877 +104842,70.349,69.861 +104843,72.199,68.842 +104844,74.154,67.822 +104845,67.233,70.861 +104846,69.018,69.87 +104847,70.898,68.877 +104848,72.886,67.883 +104849,65.873,70.844 +104850,67.686,69.879 +104851,69.597,68.912 +104852,71.617,67.945 +104853,64.514,70.826 +104854,66.355,69.888 +104855,68.295,68.947 +104856,70.346,68.008 +104857,63.156,70.808 +104858,65.025,69.896 +104859,66.993,68.983 +104860,69.073,68.071 +104861,61.799,70.789 +104862,63.695,69.904 +104863,65.691,69.019 +104864,67.799,68.135 +104865,60.444,70.769 +104866,62.366,69.912 +104867,64.387,69.055 +104868,66.523,68.199 +104869,59.091,70.748 +104870,61.037,69.919 +104871,63.084,69.091 +104872,65.245,68.265 +104873,57.739,70.727 +104874,59.708,69.927 +104875,61.779,69.128 +104876,63.966,68.331 +104877,56.389,70.705 +104878,58.38,69.934 +104879,60.475,69.164 +104880,62.685,68.397 +104881,55.04,70.682 +104882,57.053,69.941 +104883,59.169,69.201 +104884,61.402,68.464 +104885,53.692,70.659 +104886,55.726,69.948 +104887,57.863,69.238 +104888,60.118,68.532 +104889,52.346,70.636 +104890,54.4,69.954 +104891,56.557,69.275 +104892,58.831,68.601 +104893,51.002,70.611 +104894,53.074,69.961 +104895,55.25,69.313 +104896,57.543,68.669 +104897,49.659,70.586 +104898,51.749,69.967 +104899,53.942,69.35 +104900,56.254,68.739 +104901,48.318,70.561 +104902,50.424,69.973 +104903,52.634,69.388 +104904,54.962,68.809 +104905,46.978,70.535 +104906,49.1,69.979 +104907,51.325,69.426 +104908,53.669,68.879 +104909,45.64,70.509 +104910,47.776,69.984 +104911,50.015,69.464 +104912,52.374,68.949 +104913,44.304,70.482 +104914,46.453,69.99 +104915,48.705,69.502 +104916,51.076,69.02 +104917,42.969,70.455 +104918,45.13,69.995 +104919,47.394,69.541 +104920,49.778,69.092 +104921,41.636,70.428 +104922,43.808,70.001 +104923,46.083,69.579 +104924,48.477,69.164 +104925,40.305,70.4 +104926,42.487,70.006 +104927,44.771,69.618 +104928,47.174,69.236 +104929,38.975,70.372 +104930,41.166,70.011 +104931,43.459,69.656 +104932,45.87,69.308 +104933,37.647,70.343 +104934,39.845,70.016 +104935,42.146,69.695 +104936,44.564,69.381 +104937,36.32,70.314 +104938,38.525,70.021 +104939,40.832,69.734 +104940,43.255,69.453 +104941,34.996,70.286 +104942,37.206,70.026 +104943,39.518,69.772 +104944,41.945,69.527 +104945,33.672,70.256 +104946,35.887,70.031 +104947,38.203,69.811 +104948,40.634,69.6 +104949,32.351,70.227 +104950,34.569,70.035 +104951,36.887,69.85 +104952,39.32,69.673 +104953,31.031,70.197 +104954,33.252,70.04 +104955,35.571,69.889 +104956,38.004,69.747 +104957,29.713,70.168 +104958,31.935,70.044 +104959,34.254,69.928 +104960,36.687,69.82 +104961,28.397,70.138 +104962,30.618,70.049 +104963,32.937,69.967 +104964,35.367,69.894 +104965,27.082,70.108 +104966,29.302,70.054 +104967,31.619,70.006 +104968,34.046,69.967 +104969,25.769,70.078 +104970,27.987,70.058 +104971,30.3,70.045 +104972,32.723,70.041 +104973,24.458,70.048 +104974,26.672,70.063 +104975,28.981,70.085 +104976,31.398,70.115 +104977,23.148,70.018 +104978,25.358,70.067 +104979,27.661,70.124 +104980,30.071,70.188 +104981,21.84,69.988 +104982,24.045,70.072 +104983,26.341,70.163 +104984,28.742,70.262 +104985,20.534,69.958 +104986,22.732,70.076 +104987,25.019,70.202 +104988,27.412,70.335 +104989,19.229,69.929 +104990,21.419,70.081 +104991,23.698,70.241 +104992,26.08,70.408 +104993,17.926,69.899 +104994,20.107,70.085 +104995,22.376,70.279 +104996,24.746,70.481 +104997,16.625,69.87 +104998,18.796,70.09 +104999,21.053,70.318 +105000,23.41,70.554 +105001,15.325,69.84 +105002,17.485,70.095 +105003,19.729,70.357 +105004,22.072,70.627 +105005,14.027,69.811 +105006,16.175,70.1 +105007,18.405,70.396 +105008,20.733,70.699 +105009,12.731,69.782 +105010,14.865,70.105 +105011,17.081,70.434 +105012,19.391,70.771 +105013,11.436,69.753 +105014,13.556,70.11 +105015,15.755,70.473 +105016,18.049,70.843 +105017,10.143,69.725 +105018,12.247,70.115 +105019,14.43,70.511 +105020,16.704,70.915 +105021,8.8514,69.697 +105022,10.939,70.12 +105023,13.103,70.549 +105024,15.358,70.986 +105025,7.5615,69.669 +105026,9.6312,70.125 +105027,11.776,70.588 +105028,14.01,71.057 +105029,6.2732,69.642 +105030,8.3241,70.13 +105031,10.449,70.626 +105032,12.66,71.127 +105033,4.9865,69.615 +105034,7.0175,70.136 +105035,9.1209,70.664 +105036,11.309,71.197 +105037,3.7013,69.588 +105038,5.7114,70.142 +105039,7.7923,70.701 +105040,9.9556,71.267 +105041,2.4177,69.562 +105042,4.4059,70.148 +105043,6.4632,70.739 +105044,8.601,71.336 +105045,1.1356,69.536 +105046,3.1008,70.154 +105047,5.1336,70.776 +105048,7.2449,71.404 +105049,359.85,69.511 +105050,1.7962,70.16 +105051,3.8034,70.814 +105052,5.8872,71.472 +105053,358.58,69.487 +105054,0.49215,70.166 +105055,2.4727,70.851 +105056,4.528,71.54 +105057,357.3,69.463 +105058,359.19,70.173 +105059,1.1415,70.887 +105060,3.1672,71.607 +105061,356.02,69.439 +105062,357.89,70.179 +105063,359.81,70.924 +105064,1.805,71.673 +105065,354.75,69.416 +105066,356.58,70.186 +105067,358.48,70.961 +105068,0.4414,71.739 +105069,353.47,69.394 +105070,355.28,70.193 +105071,357.14,70.997 +105072,359.08,71.804 +105073,352.2,69.372 +105074,353.98,70.201 +105075,355.81,71.033 +105076,357.71,71.868 +105077,350.93,69.351 +105078,352.68,70.208 +105079,354.48,71.069 +105080,356.34,71.932 +105081,349.66,69.331 +105082,351.38,70.216 +105083,353.14,71.104 +105084,354.97,71.995 +105085,348.39,69.311 +105086,350.08,70.224 +105087,351.81,71.139 +105088,353.6,72.057 +105089,347.13,69.292 +105090,348.78,70.232 +105091,350.47,71.175 +105092,352.23,72.118 +105093,345.86,69.274 +105094,347.48,70.241 +105095,349.14,71.209 +105096,350.86,72.179 +105097,344.6,69.257 +105098,346.18,70.249 +105099,347.8,71.244 +105100,349.48,72.239 +105101,343.34,69.24 +105102,344.88,70.259 +105103,346.47,71.278 +105104,348.11,72.298 +105105,342.08,69.224 +105106,343.58,70.268 +105107,345.13,71.312 +105108,346.73,72.356 +105109,340.81,69.21 +105110,342.28,70.277 +105111,343.79,71.346 +105112,345.35,72.414 +105113,339.56,69.196 +105114,340.98,70.287 +105115,342.46,71.379 +105116,343.97,72.47 +105117,338.3,69.182 +105118,339.69,70.298 +105119,341.12,71.412 +105120,342.6,72.526 +105121,337.04,69.17 +105122,338.39,70.308 +105123,339.78,71.445 +105124,341.21,72.581 +105125,335.79,69.159 +105126,337.09,70.319 +105127,338.44,71.478 +105128,339.83,72.634 +105129,334.53,69.149 +105130,335.8,70.33 +105131,337.1,71.51 +105132,338.45,72.687 +105133,333.28,69.139 +105134,334.5,70.341 +105135,335.76,71.542 +105136,337.07,72.739 +105137,332.02,69.131 +105138,333.21,70.353 +105139,334.42,71.573 +105140,335.68,72.79 +105141,330.77,69.123 +105142,331.91,70.365 +105143,333.08,71.605 +105144,334.3,72.84 +105145,329.52,69.117 +105146,330.61,70.378 +105147,331.74,71.635 +105148,332.91,72.889 +105149,328.27,69.112 +105150,329.32,70.39 +105151,330.4,71.666 +105152,331.52,72.937 +105153,327.02,69.107 +105154,328.03,70.404 +105155,329.06,71.696 +105156,330.13,72.984 +105157,325.77,69.104 +105158,326.73,70.417 +105159,327.72,71.726 +105160,328.75,73.03 +105161,324.53,69.102 +105162,325.44,70.431 +105163,326.38,71.755 +105164,327.36,73.075 +105165,323.28,69.101 +105166,324.14,70.445 +105167,325.04,71.785 +105168,325.97,73.118 +105169,322.03,69.101 +105170,322.85,70.459 +105171,323.7,71.813 +105172,324.58,73.161 +105173,320.79,69.102 +105174,321.56,70.474 +105175,322.35,71.842 +105176,323.19,73.203 +105177,319.54,69.104 +105178,320.26,70.49 +105179,321.01,71.87 +105180,321.8,73.243 +105181,318.3,69.107 +105182,318.97,70.505 +105183,319.67,71.897 +105184,320.4,73.283 +105185,317.05,69.112 +105186,317.68,70.521 +105187,318.33,71.925 +105188,319.01,73.321 +105189,315.81,69.118 +105190,316.38,70.538 +105191,316.99,71.952 +105192,317.62,73.358 +105193,314.57,69.124 +105194,315.09,70.554 +105195,315.64,71.978 +105196,316.23,73.394 +105197,313.33,69.132 +105198,313.8,70.572 +105199,314.3,72.004 +105200,314.83,73.429 +105201,312.08,69.142 +105202,312.51,70.589 +105203,312.96,72.03 +105204,313.44,73.463 +105205,310.84,69.152 +105206,311.21,70.607 +105207,311.61,72.055 +105208,312.04,73.495 +105209,309.6,69.163 +105210,309.92,70.625 +105211,310.27,72.08 +105212,310.65,73.527 +105213,308.36,69.176 +105214,308.63,70.644 +105215,308.93,72.105 +105216,309.26,73.557 +105217,307.12,69.19 +105218,307.34,70.663 +105219,307.58,72.129 +105220,307.86,73.586 +105221,305.88,69.205 +105222,306.04,70.683 +105223,306.24,72.153 +105224,306.47,73.614 +105225,304.64,69.222 +105226,304.75,70.703 +105227,304.9,72.176 +105228,305.07,73.641 +105229,303.4,69.239 +105230,303.46,70.723 +105231,303.55,72.199 +105232,303.68,73.667 +105233,302.16,69.258 +105234,302.17,70.744 +105235,302.21,72.222 +105236,302.28,73.691 +105237,300.92,69.278 +105238,300.88,70.765 +105239,300.87,72.244 +105240,300.89,73.714 +105241,299.68,69.299 +105242,299.58,70.786 +105243,299.52,72.266 +105244,299.5,73.736 +105245,298.44,69.322 +105246,298.29,70.808 +105247,298.18,72.287 +105248,298.1,73.757 +105249,297.2,69.345 +105250,297,70.831 +105251,296.84,72.308 +105252,296.71,73.777 +105253,295.96,69.37 +105254,295.71,70.853 +105255,295.49,72.329 +105256,295.31,73.796 +105257,294.72,69.396 +105258,294.41,70.877 +105259,294.15,72.349 +105260,293.92,73.813 +105261,293.48,69.424 +105262,293.12,70.9 +105263,292.81,72.369 +105264,292.53,73.829 +105265,292.24,69.452 +105266,291.83,70.924 +105267,291.46,72.389 +105268,291.13,73.844 +105269,291,69.482 +105270,290.54,70.948 +105271,290.12,72.408 +105272,289.74,73.858 +105273,289.75,69.513 +105274,289.24,70.973 +105275,288.78,72.426 +105276,288.35,73.871 +105277,288.51,69.545 +105278,287.95,70.998 +105279,287.43,72.445 +105280,286.96,73.883 +105281,287.27,69.578 +105282,286.66,71.024 +105283,286.09,72.463 +105284,285.57,73.893 +105285,286.03,69.613 +105286,285.36,71.05 +105287,284.75,72.48 +105288,284.18,73.902 +105289,284.78,69.648 +105290,284.07,71.076 +105291,283.41,72.497 +105292,282.78,73.911 +105293,283.54,69.685 +105294,282.78,71.103 +105295,282.06,72.514 +105296,281.4,73.918 +105297,282.3,69.723 +105298,281.48,71.13 +105299,280.72,72.53 +105300,280.01,73.923 +105301,281.05,69.763 +105302,280.19,71.157 +105303,279.38,72.546 +105304,278.62,73.928 +105305,279.81,69.803 +105306,278.9,71.185 +105307,278.04,72.562 +105308,277.23,73.932 +105309,278.56,69.844 +105310,277.6,71.213 +105311,276.7,72.577 +105312,275.84,73.935 +105313,277.31,69.887 +105314,276.31,71.242 +105315,275.35,72.592 +105316,274.46,73.936 +105317,276.07,69.931 +105318,275.01,71.271 +105319,274.01,72.607 +105320,273.07,73.937 +105321,274.82,69.975 +105322,273.72,71.3 +105323,272.67,72.621 +105324,271.69,73.936 +105325,273.57,70.021 +105326,272.42,71.33 +105327,271.33,72.635 +105328,270.3,73.934 +105329,272.32,70.068 +105330,271.12,71.36 +105331,269.99,72.648 +105332,268.92,73.932 +105333,271.07,70.116 +105334,269.83,71.39 +105335,268.65,72.661 +105336,267.54,73.928 +105337,269.82,70.165 +105338,268.53,71.421 +105339,267.31,72.674 +105340,266.15,73.923 +105341,268.56,70.215 +105342,267.23,71.452 +105343,265.97,72.686 +105344,264.77,73.917 +105345,267.31,70.266 +105346,265.94,71.483 +105347,264.63,72.698 +105348,263.39,73.911 +105349,266.05,70.318 +105350,264.64,71.515 +105351,263.29,72.71 +105352,262.02,73.903 +105353,264.8,70.371 +105354,263.34,71.547 +105355,261.96,72.722 +105356,260.64,73.894 +105357,263.54,70.425 +105358,262.04,71.579 +105359,260.62,72.733 +105360,259.26,73.885 +105361,262.28,70.48 +105362,260.74,71.612 +105363,259.28,72.744 +105364,257.89,73.874 +105365,261.02,70.536 +105366,259.44,71.645 +105367,257.94,72.754 +105368,256.51,73.863 +105369,259.76,70.593 +105370,258.14,71.678 +105371,256.61,72.764 +105372,255.14,73.85 +105373,258.5,70.651 +105374,256.84,71.712 +105375,255.27,72.774 +105376,253.77,73.837 +105377,257.24,70.709 +105378,255.54,71.745 +105379,253.93,72.784 +105380,252.4,73.823 +105381,255.97,70.768 +105382,254.24,71.78 +105383,252.6,72.793 +105384,251.03,73.808 +105385,254.71,70.829 +105386,252.94,71.814 +105387,251.26,72.803 +105388,249.66,73.792 +105389,253.44,70.89 +105390,251.64,71.849 +105391,249.93,72.811 +105392,248.29,73.776 +105393,252.17,70.951 +105394,250.34,71.884 +105395,248.59,72.82 +105396,246.93,73.759 +105397,250.9,71.014 +105398,249.04,71.919 +105399,247.26,72.828 +105400,245.56,73.741 +105401,249.63,71.077 +105402,247.73,71.954 +105403,245.92,72.836 +105404,244.2,73.722 +105405,248.36,71.141 +105406,246.43,71.99 +105407,244.59,72.844 +105408,242.84,73.702 +105409,247.08,71.206 +105410,245.12,72.026 +105411,243.26,72.852 +105412,241.48,73.682 +105413,245.81,71.271 +105414,243.82,72.062 +105415,241.93,72.859 +105416,240.12,73.661 +105417,244.53,71.337 +105418,242.51,72.098 +105419,240.59,72.867 +105420,238.76,73.64 +105421,243.25,71.404 +105422,241.21,72.135 +105423,239.26,72.874 +105424,237.4,73.618 +105425,241.97,71.471 +105426,239.9,72.172 +105427,237.93,72.88 +105428,236.05,73.595 +105429,240.69,71.539 +105430,238.6,72.209 +105431,236.6,72.887 +105432,234.69,73.572 +105433,239.4,71.607 +105434,237.29,72.246 +105435,235.27,72.893 +105436,233.34,73.548 +105437,238.12,71.676 +105438,235.98,72.283 +105439,233.94,72.9 +105440,231.99,73.523 +105441,236.83,71.745 +105442,234.67,72.32 +105443,232.61,72.906 +105444,230.64,73.498 +105445,235.54,71.815 +105446,233.36,72.358 +105447,231.28,72.912 +105448,229.29,73.473 +105449,234.25,71.885 +105450,232.05,72.396 +105451,229.96,72.917 +105452,227.95,73.447 +105453,232.96,71.955 +105454,230.74,72.434 +105455,228.63,72.923 +105456,226.6,73.421 +105457,231.66,72.026 +105458,229.43,72.472 +105459,227.3,72.929 +105460,225.26,73.394 +105461,230.37,72.098 +105462,228.12,72.51 +105463,225.98,72.934 +105464,223.92,73.367 +105465,229.07,72.169 +105466,226.81,72.548 +105467,224.65,72.939 +105468,222.58,73.34 +105469,227.77,72.241 +105470,225.5,72.587 +105471,223.32,72.944 +105472,221.24,73.312 +105473,226.47,72.313 +105474,224.18,72.625 +105475,222,72.949 +105476,219.9,73.284 +105477,225.17,72.386 +105478,222.87,72.664 +105479,220.68,72.954 +105480,218.57,73.256 +105481,223.86,72.459 +105482,221.56,72.702 +105483,219.35,72.959 +105484,217.24,73.227 +105485,222.56,72.531 +105486,220.24,72.741 +105487,218.03,72.964 +105488,215.9,73.198 +105489,221.25,72.604 +105490,218.93,72.78 +105491,216.71,72.969 +105492,214.57,73.169 +105493,219.94,72.678 +105494,217.61,72.819 +105495,215.38,72.974 +105496,213.25,73.14 +105497,218.63,72.751 +105498,216.29,72.858 +105499,214.06,72.978 +105500,211.92,73.111 +105501,217.32,72.824 +105502,214.98,72.897 +105503,212.74,72.983 +105504,210.59,73.081 +105505,216,72.898 +105506,213.66,72.936 +105507,211.42,72.988 +105508,209.27,73.052 +105509,214.68,72.971 +105510,212.34,72.975 +105511,210.1,72.992 +105512,207.95,73.022 +105513,213.36,73.045 +105514,211.02,73.014 +105515,208.78,72.997 +105516,206.63,72.992 +105517,212.04,73.118 +105518,209.7,73.053 +105519,207.46,73.001 +105520,205.31,72.963 +105521,210.72,73.191 +105522,208.38,73.092 +105523,206.14,73.006 +105524,203.99,72.933 +105525,209.4,73.265 +105526,207.06,73.13 +105527,204.83,73.011 +105528,202.68,72.904 +105529,208.07,73.338 +105530,205.74,73.169 +105531,203.51,73.015 +105532,201.36,72.874 +105533,206.74,73.411 +105534,204.42,73.208 +105535,202.19,73.02 +105536,200.05,72.845 +105537,205.41,73.484 +105538,203.1,73.247 +105539,200.88,73.025 +105540,198.74,72.815 +105541,204.08,73.556 +105542,201.77,73.286 +105543,199.56,73.03 +105544,197.43,72.786 +105545,202.75,73.629 +105546,200.45,73.324 +105547,198.25,73.034 +105548,196.12,72.757 +105549,201.42,73.701 +105550,199.13,73.363 +105551,196.93,73.039 +105552,194.82,72.729 +105553,200.08,73.773 +105554,197.8,73.402 +105555,195.62,73.044 +105556,193.51,72.7 +105557,198.74,73.844 +105558,196.48,73.44 +105559,194.3,73.05 +105560,192.21,72.672 +105561,197.4,73.915 +105562,195.15,73.478 +105563,192.99,73.055 +105564,190.91,72.644 +105565,196.06,73.986 +105566,193.82,73.517 +105567,191.68,73.06 +105568,189.61,72.616 +105569,194.72,74.057 +105570,192.5,73.555 +105571,190.37,73.066 +105572,188.31,72.589 +105573,193.37,74.127 +105574,191.17,73.593 +105575,189.05,73.071 +105576,187.01,72.562 +105577,192.02,74.197 +105578,189.84,73.63 +105579,187.74,73.077 +105580,185.72,72.536 +105581,190.68,74.266 +105582,188.51,73.668 +105583,186.43,73.083 +105584,184.43,72.51 +105585,189.33,74.334 +105586,187.18,73.706 +105587,185.12,73.089 +105588,183.13,72.484 +105589,187.97,74.403 +105590,185.85,73.743 +105591,183.81,73.095 +105592,181.84,72.459 +105593,186.62,74.47 +105594,184.52,73.78 +105595,182.5,73.102 +105596,180.56,72.435 +105597,185.27,74.537 +105598,183.19,73.817 +105599,181.2,73.108 +105600,179.27,72.41 +105601,183.91,74.604 +105602,181.86,73.854 +105603,179.89,73.115 +105604,177.98,72.387 +105605,182.55,74.67 +105606,180.53,73.891 +105607,178.58,73.122 +105608,176.7,72.364 +105609,181.19,74.735 +105610,179.2,73.927 +105611,177.27,73.129 +105612,175.42,72.342 +105613,179.83,74.8 +105614,177.86,73.963 +105615,175.97,73.137 +105616,174.13,72.32 +105617,178.47,74.864 +105618,176.53,73.999 +105619,174.66,73.144 +105620,172.85,72.299 +105621,177.11,74.927 +105622,175.2,74.035 +105623,173.36,73.152 +105624,171.58,72.279 +105625,175.74,74.99 +105626,173.86,74.071 +105627,172.05,73.16 +105628,170.3,72.259 +105629,174.37,75.051 +105630,172.53,74.106 +105631,170.75,73.169 +105632,169.02,72.24 +105633,173.01,75.112 +105634,171.19,74.141 +105635,169.44,73.177 +105636,167.75,72.222 +105637,171.64,75.173 +105638,169.86,74.176 +105639,168.14,73.186 +105640,166.48,72.204 +105641,170.27,75.232 +105642,168.52,74.21 +105643,166.83,73.195 +105644,165.2,72.188 +105645,168.9,75.291 +105646,167.18,74.244 +105647,165.53,73.205 +105648,163.93,72.172 +105649,167.52,75.349 +105650,165.85,74.278 +105651,164.23,73.214 +105652,162.66,72.157 +105653,166.15,75.406 +105654,164.51,74.312 +105655,162.93,73.224 +105656,161.39,72.143 +105657,164.77,75.462 +105658,163.17,74.345 +105659,161.62,73.235 +105660,160.13,72.13 +105661,163.4,75.517 +105662,161.83,74.379 +105663,160.32,73.245 +105664,158.86,72.117 +105665,162.02,75.571 +105666,160.49,74.411 +105667,159.02,73.256 +105668,157.6,72.106 +105669,160.64,75.625 +105670,159.15,74.444 +105671,157.72,73.267 +105672,156.33,72.095 +105673,159.26,75.677 +105674,157.82,74.476 +105675,156.42,73.279 +105676,155.07,72.086 +105677,157.88,75.728 +105678,156.48,74.508 +105679,155.12,73.291 +105680,153.81,72.077 +105681,156.5,75.779 +105682,155.14,74.539 +105683,153.82,73.303 +105684,152.55,72.069 +105685,155.12,75.828 +105686,153.79,74.571 +105687,152.52,73.315 +105688,151.29,72.063 +105689,153.73,75.877 +105690,152.45,74.602 +105691,151.22,73.328 +105692,150.03,72.057 +105693,152.35,75.924 +105694,151.11,74.632 +105695,149.92,73.341 +105696,148.77,72.053 +105697,150.96,75.971 +105698,149.77,74.662 +105699,148.62,73.355 +105700,147.52,72.049 +105701,149.58,76.016 +105702,148.43,74.692 +105703,147.33,73.369 +105704,146.26,72.047 +105705,148.19,76.061 +105706,147.09,74.722 +105707,146.03,73.383 +105708,145,72.045 +105709,146.8,76.104 +105710,145.75,74.751 +105711,144.73,73.398 +105712,143.75,72.045 +105713,145.41,76.146 +105714,144.4,74.78 +105715,143.43,73.413 +105716,142.5,72.046 +105717,144.02,76.187 +105718,143.06,74.808 +105719,142.13,73.428 +105720,141.24,72.048 +105721,142.64,76.227 +105722,141.72,74.836 +105723,140.84,73.444 +105724,139.99,72.051 +105725,141.25,76.266 +105726,140.37,74.864 +105727,139.54,73.46 +105728,138.74,72.055 +105729,139.85,76.304 +105730,139.03,74.891 +105731,138.24,73.476 +105732,137.49,72.061 +105733,138.46,76.341 +105734,137.69,74.918 +105735,136.95,73.493 +105736,136.24,72.067 +105737,137.07,76.376 +105738,136.34,74.945 +105739,135.65,73.511 +105740,134.99,72.075 +105741,135.68,76.411 +105742,135,74.971 +105743,134.35,73.528 +105744,133.74,72.084 +105745,134.29,76.444 +105746,133.65,74.997 +105747,133.06,73.546 +105748,132.49,72.094 +105749,132.89,76.476 +105750,132.31,75.022 +105751,131.76,73.565 +105752,131.24,72.105 +105753,131.5,76.507 +105754,130.97,75.047 +105755,130.47,73.584 +105756,130,72.117 +105757,130.11,76.537 +105758,129.62,75.072 +105759,129.17,73.603 +105760,128.75,72.131 +105761,128.71,76.566 +105762,128.28,75.096 +105763,127.87,73.623 +105764,127.5,72.146 +105765,127.32,76.593 +105766,126.93,75.12 +105767,126.58,73.643 +105768,126.25,72.162 +105769,125.92,76.62 +105770,125.59,75.144 +105771,125.28,73.663 +105772,125.01,72.179 +105773,124.53,76.645 +105774,124.24,75.167 +105775,123.99,73.684 +105776,123.76,72.198 +105777,123.14,76.669 +105778,122.9,75.19 +105779,122.69,73.705 +105780,122.52,72.218 +105781,121.74,76.692 +105782,121.55,75.212 +105783,121.4,73.727 +105784,121.27,72.239 +105785,120.35,76.713 +105786,120.21,75.234 +105787,120.1,73.749 +105788,120.02,72.261 +105789,118.95,76.734 +105790,118.86,75.255 +105791,118.8,73.772 +105792,118.78,72.284 +105793,117.56,76.753 +105794,117.52,75.277 +105795,117.51,73.795 +105796,117.53,72.309 +105797,116.16,76.771 +105798,116.17,75.297 +105799,116.21,73.818 +105800,116.29,72.335 +105801,114.77,76.788 +105802,114.83,75.318 +105803,114.92,73.842 +105804,115.04,72.362 +105805,113.37,76.804 +105806,113.48,75.338 +105807,113.62,73.866 +105808,113.8,72.39 +105809,111.98,76.819 +105810,112.14,75.357 +105811,112.33,73.89 +105812,112.55,72.42 +105813,110.59,76.832 +105814,110.79,75.377 +105815,111.03,73.915 +105816,111.3,72.45 +105817,109.19,76.845 +105818,109.45,75.395 +105819,109.73,73.941 +105820,110.06,72.482 +105821,107.8,76.856 +105822,108.1,75.414 +105823,108.44,73.966 +105824,108.81,72.515 +105825,106.41,76.866 +105826,106.76,75.432 +105827,107.14,73.993 +105828,107.57,72.55 +105829,105.01,76.875 +105830,105.41,75.449 +105831,105.85,74.019 +105832,106.32,72.585 +105833,103.62,76.883 +105834,104.07,75.467 +105835,104.55,74.046 +105836,105.07,72.622 +105837,102.23,76.89 +105838,102.72,75.484 +105839,103.25,74.073 +105840,103.82,72.66 +105841,100.84,76.895 +105842,101.38,75.5 +105843,101.96,74.101 +105844,102.57,72.699 +105845,99.447,76.9 +105846,100.03,75.516 +105847,100.66,74.129 +105848,101.33,72.739 +105849,98.057,76.903 +105850,98.689,75.532 +105851,99.362,74.158 +105852,100.08,72.781 +105853,96.667,76.905 +105854,97.346,75.548 +105855,98.065,74.186 +105856,98.827,72.823 +105857,95.278,76.906 +105858,96.002,75.563 +105859,96.768,74.216 +105860,97.577,72.867 +105861,93.889,76.907 +105862,94.658,75.578 +105863,95.47,74.245 +105864,96.326,72.912 +105865,92.502,76.906 +105866,93.315,75.592 +105867,94.172,74.275 +105868,95.075,72.958 +105869,91.114,76.904 +105870,91.972,75.606 +105871,92.874,74.306 +105872,93.822,73.005 +105873,89.728,76.901 +105874,90.629,75.62 +105875,91.575,74.336 +105876,92.57,73.053 +105877,88.342,76.897 +105878,89.286,75.633 +105879,90.277,74.367 +105880,91.316,73.102 +105881,86.958,76.892 +105882,87.944,75.646 +105883,88.978,74.399 +105884,90.061,73.152 +105885,85.574,76.886 +105886,86.602,75.659 +105887,87.678,74.43 +105888,88.806,73.203 +105889,84.19,76.879 +105890,85.26,75.671 +105891,86.379,74.463 +105892,87.55,73.255 +105893,82.808,76.871 +105894,83.918,75.683 +105895,85.079,74.495 +105896,86.293,73.309 +105897,81.427,76.862 +105898,82.577,75.695 +105899,83.779,74.528 +105900,85.035,73.363 +105901,80.046,76.852 +105902,81.236,75.706 +105903,82.478,74.561 +105904,83.776,73.418 +105905,78.667,76.841 +105906,79.895,75.717 +105907,81.177,74.594 +105908,82.516,73.474 +105909,77.288,76.83 +105910,78.555,75.728 +105911,79.876,74.628 +105912,81.255,73.531 +105913,75.911,76.817 +105914,77.215,75.739 +105915,78.574,74.662 +105916,79.993,73.589 +105917,74.534,76.804 +105918,75.875,75.749 +105919,77.272,74.696 +105920,78.73,73.648 +105921,73.159,76.79 +105922,74.536,75.759 +105923,75.97,74.731 +105924,77.466,73.708 +105925,71.785,76.775 +105926,73.196,75.769 +105927,74.667,74.766 +105928,76.201,73.768 +105929,70.412,76.759 +105930,71.858,75.778 +105931,73.364,74.801 +105932,74.934,73.83 +105933,69.04,76.742 +105934,70.519,75.787 +105935,72.06,74.836 +105936,73.666,73.892 +105937,67.669,76.725 +105938,69.182,75.796 +105939,70.756,74.872 +105940,72.397,73.955 +105941,66.299,76.707 +105942,67.844,75.805 +105943,69.452,74.908 +105944,71.127,74.018 +105945,64.931,76.688 +105946,66.507,75.813 +105947,68.147,74.944 +105948,69.856,74.083 +105949,63.564,76.668 +105950,65.17,75.821 +105951,66.841,74.981 +105952,68.583,74.148 +105953,62.198,76.648 +105954,63.834,75.829 +105955,65.536,75.017 +105956,67.309,74.214 +105957,60.833,76.627 +105958,62.498,75.837 +105959,64.229,75.054 +105960,66.033,74.281 +105961,59.47,76.605 +105962,61.162,75.845 +105963,62.922,75.091 +105964,64.756,74.348 +105965,58.108,76.583 +105966,59.827,75.852 +105967,61.615,75.129 +105968,63.478,74.416 +105969,56.747,76.561 +105970,58.493,75.859 +105971,60.308,75.166 +105972,62.198,74.484 +105973,55.388,76.537 +105974,57.158,75.866 +105975,58.999,75.204 +105976,60.917,74.553 +105977,54.03,76.513 +105978,55.825,75.873 +105979,57.691,75.242 +105980,59.634,74.623 +105981,52.673,76.489 +105982,54.491,75.879 +105983,56.381,75.28 +105984,58.35,74.693 +105985,51.318,76.464 +105986,53.159,75.886 +105987,55.072,75.318 +105988,57.064,74.763 +105989,49.964,76.439 +105990,51.826,75.892 +105991,53.761,75.357 +105992,55.777,74.834 +105993,48.612,76.413 +105994,50.494,75.898 +105995,52.451,75.395 +105996,54.488,74.906 +105997,47.261,76.387 +105998,49.163,75.904 +105999,51.139,75.434 +106000,53.197,74.978 +106001,45.911,76.36 +106002,47.832,75.91 +106003,49.827,75.473 +106004,51.905,75.05 +106005,44.563,76.333 +106006,46.502,75.916 +106007,48.515,75.512 +106008,50.612,75.123 +106009,43.217,76.306 +106010,45.172,75.922 +106011,47.202,75.551 +106012,49.316,75.195 +106013,41.872,76.278 +106014,43.842,75.927 +106015,45.889,75.59 +106016,48.02,75.269 +106017,40.528,76.25 +106018,42.513,75.933 +106019,44.575,75.629 +106020,46.721,75.342 +106021,39.186,76.222 +106022,41.185,75.938 +106023,43.26,75.669 +106024,45.421,75.416 +106025,37.846,76.194 +106026,39.857,75.944 +106027,41.945,75.708 +106028,44.119,75.49 +106029,36.507,76.165 +106030,38.529,75.949 +106031,40.629,75.748 +106032,42.816,75.564 +106033,35.17,76.136 +106034,37.203,75.954 +106035,39.313,75.788 +106036,41.51,75.639 +106037,33.834,76.107 +106038,35.876,75.959 +106039,37.996,75.827 +106040,40.203,75.713 +106041,32.5,76.078 +106042,34.55,75.965 +106043,36.679,75.867 +106044,38.895,75.788 +106045,31.167,76.049 +106046,33.225,75.97 +106047,35.361,75.907 +106048,37.584,75.862 +106049,29.836,76.02 +106050,31.9,75.975 +106051,34.042,75.946 +106052,36.272,75.937 +106053,28.506,75.99 +106054,30.576,75.98 +106055,32.723,75.986 +106056,34.959,76.012 +106057,27.178,75.961 +106058,29.252,75.985 +106059,31.403,76.026 +106060,33.643,76.086 +106061,25.852,75.931 +106062,27.928,75.99 +106063,30.083,76.066 +106064,32.326,76.161 +106065,24.527,75.902 +106066,26.606,75.995 +106067,28.762,76.106 +106068,31.007,76.236 +106069,23.204,75.873 +106070,25.283,76 +106071,27.441,76.145 +106072,29.686,76.31 +106073,21.882,75.844 +106074,23.962,76.006 +106075,26.119,76.185 +106076,28.364,76.385 +106077,20.562,75.815 +106078,22.64,76.011 +106079,24.796,76.225 +106080,27.04,76.459 +106081,19.243,75.786 +106082,21.32,76.016 +106083,23.473,76.265 +106084,25.714,76.533 +106085,17.926,75.757 +106086,20,76.021 +106087,22.149,76.304 +106088,24.387,76.607 +106089,16.611,75.728 +106090,18.68,76.027 +106091,20.825,76.344 +106092,23.057,76.681 +106093,15.297,75.7 +106094,17.361,76.032 +106095,19.5,76.383 +106096,21.726,76.754 +106097,13.985,75.672 +106098,16.042,76.038 +106099,18.175,76.422 +106100,20.394,76.827 +106101,12.674,75.644 +106102,14.724,76.044 +106103,16.848,76.462 +106104,19.059,76.9 +106105,11.365,75.616 +106106,13.406,76.05 +106107,15.522,76.501 +106108,17.723,76.972 +106109,10.057,75.589 +106110,12.089,76.056 +106111,14.195,76.54 +106112,16.386,77.044 +106113,8.7512,75.562 +106114,10.773,76.062 +106115,12.867,76.579 +106116,15.046,77.116 +106117,7.4466,75.536 +106118,9.4565,76.068 +106119,11.539,76.618 +106120,13.705,77.187 +106121,6.1435,75.51 +106122,8.1409,76.074 +106123,10.21,76.656 +106124,12.362,77.258 +106125,4.842,75.484 +106126,6.8258,76.081 +106127,8.8806,76.695 +106128,11.018,77.329 +106129,3.542,75.459 +106130,5.5112,76.087 +106131,7.5507,76.733 +106132,9.672,77.398 +106133,2.2434,75.435 +106134,4.197,76.094 +106135,6.2202,76.771 +106136,8.3244,77.468 +106137,0.94633,75.411 +106138,2.8834,76.101 +106139,4.8892,76.809 +106140,6.9753,77.536 +106141,359.65,75.387 +106142,1.5702,76.109 +106143,3.5577,76.847 +106144,5.6245,77.605 +106145,358.36,75.364 +106146,0.25752,76.116 +106147,2.2257,76.885 +106148,4.2722,77.672 +106149,357.06,75.342 +106150,358.95,76.124 +106151,0.8931,76.922 +106152,2.9183,77.739 +106153,355.77,75.32 +106154,357.63,76.132 +106155,359.56,76.96 +106156,1.563,77.806 +106157,354.48,75.299 +106158,356.32,76.14 +106159,358.23,76.997 +106160,0.20608,77.871 +106161,353.19,75.278 +106162,355.01,76.148 +106163,356.89,77.034 +106164,358.85,77.936 +106165,351.91,75.258 +106166,353.7,76.156 +106167,355.56,77.07 +106168,357.49,78.001 +106169,350.62,75.239 +106170,352.39,76.165 +106171,354.22,77.106 +106172,356.13,78.064 +106173,349.34,75.221 +106174,351.08,76.174 +106175,352.89,77.143 +106176,354.76,78.127 +106177,348.05,75.203 +106178,349.77,76.184 +106179,351.55,77.178 +106180,353.4,78.189 +106181,346.77,75.187 +106182,348.46,76.193 +106183,350.21,77.214 +106184,352.03,78.25 +106185,345.49,75.171 +106186,347.16,76.203 +106187,348.88,77.249 +106188,350.67,78.311 +106189,344.21,75.156 +106190,345.85,76.213 +106191,347.54,77.284 +106192,349.3,78.37 +106193,342.93,75.141 +106194,344.54,76.224 +106195,346.2,77.319 +106196,347.93,78.429 +106197,341.66,75.128 +106198,343.23,76.234 +106199,344.86,77.354 +106200,346.56,78.487 +106201,340.38,75.115 +106202,341.93,76.245 +106203,343.53,77.388 +106204,345.19,78.544 +106205,339.11,75.104 +106206,340.62,76.257 +106207,342.19,77.422 +106208,343.81,78.6 +106209,337.83,75.093 +106210,339.31,76.268 +106211,340.85,77.455 +106212,342.44,78.655 +106213,336.56,75.083 +106214,338.01,76.28 +106215,339.51,77.489 +106216,341.06,78.709 +106217,335.29,75.074 +106218,336.7,76.292 +106219,338.17,77.522 +106220,339.69,78.762 +106221,334.02,75.066 +106222,335.4,76.305 +106223,336.83,77.554 +106224,338.31,78.815 +106225,332.75,75.06 +106226,334.09,76.318 +106227,335.48,77.587 +106228,336.93,78.866 +106229,331.48,75.054 +106230,332.79,76.331 +106231,334.14,77.619 +106232,335.55,78.916 +106233,330.22,75.049 +106234,331.49,76.345 +106235,332.8,77.65 +106236,334.17,78.965 +106237,328.95,75.045 +106238,330.18,76.359 +106239,331.46,77.682 +106240,332.79,79.014 +106241,327.69,75.042 +106242,328.88,76.373 +106243,330.12,77.713 +106244,331.41,79.061 +106245,326.42,75.041 +106246,327.58,76.388 +106247,328.77,77.743 +106248,330.02,79.107 +106249,325.16,75.04 +106250,326.27,76.403 +106251,327.43,77.774 +106252,328.64,79.152 +106253,323.9,75.041 +106254,324.97,76.419 +106255,326.09,77.804 +106256,327.25,79.196 +106257,322.63,75.043 +106258,323.67,76.434 +106259,324.74,77.833 +106260,325.87,79.238 +106261,321.37,75.045 +106262,322.37,76.451 +106263,323.4,77.862 +106264,324.48,79.28 +106265,320.11,75.049 +106266,321.06,76.467 +106267,322.05,77.891 +106268,323.09,79.321 +106269,318.85,75.055 +106270,319.76,76.484 +106271,320.71,77.92 +106272,321.7,79.36 +106273,317.59,75.061 +106274,318.46,76.502 +106275,319.37,77.948 +106276,320.31,79.399 +106277,316.34,75.068 +106278,317.16,76.519 +106279,318.02,77.976 +106280,318.92,79.436 +106281,315.08,75.077 +106282,315.86,76.538 +106283,316.67,78.003 +106284,317.53,79.472 +106285,313.82,75.087 +106286,314.56,76.556 +106287,315.33,78.03 +106288,316.14,79.507 +106289,312.57,75.098 +106290,313.26,76.575 +106291,313.98,78.056 +106292,314.75,79.541 +106293,311.31,75.11 +106294,311.96,76.595 +106295,312.64,78.083 +106296,313.36,79.573 +106297,310.06,75.124 +106298,310.66,76.614 +106299,311.29,78.108 +106300,311.97,79.605 +106301,308.8,75.138 +106302,309.36,76.635 +106303,309.95,78.134 +106304,310.57,79.635 +106305,307.55,75.154 +106306,308.06,76.655 +106307,308.6,78.159 +106308,309.18,79.664 +106309,306.29,75.171 +106310,306.76,76.676 +106311,307.25,78.183 +106312,307.79,79.692 +106313,305.04,75.19 +106314,305.46,76.698 +106315,305.91,78.208 +106316,306.39,79.719 +106317,303.78,75.209 +106318,304.16,76.72 +106319,304.56,78.231 +106320,305,79.744 +106321,302.53,75.23 +106322,302.86,76.742 +106323,303.21,78.255 +106324,303.6,79.768 +106325,301.28,75.252 +106326,301.56,76.764 +106327,301.87,78.278 +106328,302.21,79.791 +106329,300.03,75.276 +106330,300.26,76.788 +106331,300.52,78.3 +106332,300.81,79.813 +106333,298.77,75.3 +106334,298.96,76.811 +106335,299.17,78.323 +106336,299.42,79.834 +106337,297.52,75.326 +106338,297.66,76.835 +106339,297.82,78.345 +106340,298.02,79.854 +106341,296.27,75.353 +106342,296.36,76.859 +106343,296.48,78.366 +106344,296.63,79.872 +106345,295.02,75.382 +106346,295.06,76.884 +106347,295.13,78.387 +106348,295.23,79.889 +106349,293.77,75.411 +106350,293.76,76.909 +106351,293.78,78.408 +106352,293.84,79.905 +106353,292.51,75.442 +106354,292.46,76.935 +106355,292.43,78.428 +106356,292.44,79.92 +106357,291.26,75.474 +106358,291.16,76.961 +106359,291.09,78.448 +106360,291.05,79.934 +106361,290.01,75.507 +106362,289.86,76.987 +106363,289.74,78.467 +106364,289.65,79.946 +106365,288.76,75.542 +106366,288.56,77.014 +106367,288.39,78.486 +106368,288.26,79.958 +106369,287.5,75.577 +106370,287.26,77.041 +106371,287.05,78.505 +106372,286.86,79.968 +106373,286.25,75.614 +106374,285.96,77.069 +106375,285.7,78.523 +106376,285.47,79.977 +106377,285,75.652 +106378,284.66,77.097 +106379,284.35,78.541 +106380,284.08,79.985 +106381,283.74,75.692 +106382,283.36,77.125 +106383,283,78.559 +106384,282.68,79.992 +106385,282.49,75.732 +106386,282.06,77.154 +106387,281.66,78.576 +106388,281.29,79.997 +106389,281.24,75.774 +106390,280.76,77.183 +106391,280.31,78.593 +106392,279.9,80.0017 +106393,279.98,75.817 +106394,279.46,77.213 +106395,278.96,78.609 +106396,278.5,80.0051 +106397,278.73,75.861 +106398,278.16,77.243 +106399,277.62,78.625 +106400,277.11,80.0074 +106401,277.47,75.906 +106402,276.85,77.273 +106403,276.27,78.641 +106404,275.72,80.0086 +106405,276.22,75.952 +106406,275.55,77.304 +106407,274.92,78.657 +106408,274.33,80.0088 +106409,274.96,76 +106410,274.25,77.335 +106411,273.58,78.672 +106412,272.94,80.0078 +106413,273.71,76.048 +106414,272.95,77.366 +106415,272.23,78.686 +106416,271.55,80.0058 +106417,272.45,76.098 +106418,271.65,77.398 +106419,270.89,78.7 +106420,270.16,80.0028 +106421,271.19,76.149 +106422,270.35,77.43 +106423,269.54,78.714 +106424,268.77,79.999 +106425,269.93,76.2 +106426,269.04,77.463 +106427,268.19,78.728 +106428,267.38,79.994 +106429,268.67,76.253 +106430,267.74,77.496 +106431,266.85,78.741 +106432,265.99,79.988 +106433,267.41,76.307 +106434,266.44,77.529 +106435,265.5,78.754 +106436,264.61,79.981 +106437,266.15,76.362 +106438,265.14,77.563 +106439,264.16,78.767 +106440,263.22,79.973 +106441,264.89,76.418 +106442,263.83,77.597 +106443,262.81,78.779 +106444,261.84,79.964 +106445,263.63,76.475 +106446,262.53,77.631 +106447,261.47,78.791 +106448,260.45,79.954 +106449,262.37,76.533 +106450,261.22,77.666 +106451,260.13,78.803 +106452,259.07,79.943 +106453,261.1,76.592 +106454,259.92,77.7 +106455,258.78,78.814 +106456,257.69,79.931 +106457,259.84,76.651 +106458,258.62,77.736 +106459,257.44,78.825 +106460,256.3,79.918 +106461,258.57,76.712 +106462,257.31,77.771 +106463,256.1,78.836 +106464,254.92,79.905 +106465,257.3,76.774 +106466,256.01,77.807 +106467,254.75,78.847 +106468,253.54,79.891 +106469,256.04,76.836 +106470,254.7,77.843 +106471,253.41,78.857 +106472,252.16,79.875 +106473,254.77,76.899 +106474,253.39,77.88 +106475,252.07,78.867 +106476,250.79,79.859 +106477,253.5,76.963 +106478,252.09,77.916 +106479,250.73,78.877 +106480,249.41,79.843 +106481,252.23,77.028 +106482,250.78,77.953 +106483,249.38,78.886 +106484,248.03,79.825 +106485,250.95,77.094 +106486,249.47,77.99 +106487,248.04,78.895 +106488,246.66,79.807 +106489,249.68,77.161 +106490,248.17,78.028 +106491,246.7,78.904 +106492,245.29,79.788 +106493,248.41,77.228 +106494,246.86,78.066 +106495,245.36,78.913 +106496,243.91,79.768 +106497,247.13,77.296 +106498,245.55,78.104 +106499,244.02,78.922 +106500,242.54,79.748 +106501,245.85,77.364 +106502,244.24,78.142 +106503,242.68,78.93 +106504,241.17,79.727 +106505,244.58,77.434 +106506,242.93,78.18 +106507,241.34,78.938 +106508,239.8,79.705 +106509,243.3,77.503 +106510,241.62,78.219 +106511,240,78.946 +106512,238.43,79.683 +106513,242.02,77.574 +106514,240.31,78.258 +106515,238.66,78.954 +106516,237.07,79.66 +106517,240.73,77.645 +106518,239,78.297 +106519,237.32,78.961 +106520,235.7,79.636 +106521,239.45,77.717 +106522,237.69,78.336 +106523,235.99,78.969 +106524,234.34,79.612 +106525,238.17,77.789 +106526,236.38,78.375 +106527,234.65,78.976 +106528,232.98,79.588 +106529,236.88,77.862 +106530,235.07,78.415 +106531,233.31,78.983 +106532,231.61,79.562 +106533,235.59,77.935 +106534,233.75,78.455 +106535,231.97,78.99 +106536,230.25,79.537 +106537,234.3,78.009 +106538,232.44,78.495 +106539,230.64,78.996 +106540,228.89,79.511 +106541,233.01,78.083 +106542,231.13,78.535 +106543,229.3,79.003 +106544,227.54,79.485 +106545,231.72,78.157 +106546,229.81,78.575 +106547,227.97,79.009 +106548,226.18,79.458 +106549,230.43,78.232 +106550,228.5,78.615 +106551,226.63,79.016 +106552,224.83,79.431 +106553,229.13,78.307 +106554,227.18,78.656 +106555,225.3,79.022 +106556,223.47,79.403 +106557,227.84,78.383 +106558,225.87,78.696 +106559,223.96,79.028 +106560,222.12,79.375 +106561,226.54,78.459 +106562,224.55,78.737 +106563,222.63,79.034 +106564,220.77,79.347 +106565,225.24,78.535 +106566,223.24,78.778 +106567,221.3,79.04 +106568,219.42,79.319 +106569,223.94,78.611 +106570,221.92,78.819 +106571,219.96,79.046 +106572,218.07,79.29 +106573,222.64,78.687 +106574,220.6,78.859 +106575,218.63,79.052 +106576,216.73,79.261 +106577,221.33,78.764 +106578,219.28,78.9 +106579,217.3,79.057 +106580,215.38,79.232 +106581,220.03,78.841 +106582,217.96,78.941 +106583,215.97,79.063 +106584,214.04,79.203 +106585,218.72,78.918 +106586,216.64,78.983 +106587,214.64,79.069 +106588,212.7,79.174 +106589,217.41,78.995 +106590,215.32,79.024 +106591,213.31,79.074 +106592,211.36,79.144 +106593,216.1,79.072 +106594,214,79.065 +106595,211.98,79.08 +106596,210.02,79.115 +106597,214.79,79.149 +106598,212.68,79.106 +106599,210.65,79.086 +106600,208.68,79.085 +106601,213.48,79.226 +106602,211.36,79.147 +106603,209.32,79.091 +106604,207.35,79.056 +106605,212.16,79.303 +106606,210.04,79.188 +106607,207.99,79.097 +106608,206.01,79.026 +106609,210.84,79.38 +106610,208.72,79.229 +106611,206.66,79.103 +106612,204.68,78.996 +106613,209.53,79.457 +106614,207.39,79.271 +106615,205.34,79.108 +106616,203.35,78.967 +106617,208.21,79.534 +106618,206.07,79.312 +106619,204.01,79.114 +106620,202.02,78.938 +106621,206.88,79.61 +106622,204.75,79.353 +106623,202.68,79.12 +106624,200.69,78.908 +106625,205.56,79.687 +106626,203.42,79.394 +106627,201.36,79.126 +106628,199.36,78.879 +106629,204.24,79.763 +106630,202.1,79.435 +106631,200.03,79.131 +106632,198.04,78.85 +106633,202.91,79.839 +106634,200.77,79.476 +106635,198.71,79.137 +106636,196.71,78.822 +106637,201.58,79.915 +106638,199.44,79.516 +106639,197.38,79.143 +106640,195.39,78.793 +106641,200.25,79.99 +106642,198.12,79.557 +106643,196.06,79.15 +106644,194.07,78.765 +106645,198.92,80.0655 +106646,196.79,79.598 +106647,194.74,79.156 +106648,192.75,78.737 +106649,197.59,80.1403 +106650,195.46,79.638 +106651,193.41,79.162 +106652,191.43,78.709 +106653,196.25,80.2147 +106654,194.13,79.679 +106655,192.09,79.169 +106656,190.12,78.682 +106657,194.91,80.2887 +106658,192.8,79.719 +106659,190.77,79.175 +106660,188.8,78.655 +106661,193.58,80.3623 +106662,191.47,79.759 +106663,189.45,79.182 +106664,187.49,78.628 +106665,192.24,80.4354 +106666,190.14,79.799 +106667,188.13,79.189 +106668,186.18,78.602 +106669,190.89,80.5081 +106670,188.81,79.839 +106671,186.81,79.196 +106672,184.87,78.577 +106673,189.55,80.5802 +106674,187.48,79.879 +106675,185.49,79.203 +106676,183.56,78.551 +106677,188.21,80.6518 +106678,186.15,79.918 +106679,184.17,79.211 +106680,182.25,78.527 +106681,186.86,80.7229 +106682,184.82,79.958 +106683,182.85,79.218 +106684,180.94,78.503 +106685,185.51,80.7933 +106686,183.48,79.997 +106687,181.53,79.226 +106688,179.64,78.479 +106689,184.16,80.8632 +106690,182.15,80.0357 +106691,180.21,79.234 +106692,178.34,78.456 +106693,182.81,80.9324 +106694,180.82,80.0745 +106695,178.89,79.242 +106696,177.03,78.433 +106697,181.46,81.0009 +106698,179.48,80.113 +106699,177.58,79.251 +106700,175.73,78.412 +106701,180.11,81.0688 +106702,178.15,80.1514 +106703,176.26,79.259 +106704,174.44,78.39 +106705,178.75,81.136 +106706,176.81,80.1895 +106707,174.94,79.268 +106708,173.14,78.37 +106709,177.39,81.2024 +106710,175.47,80.2274 +106711,173.63,79.277 +106712,171.84,78.35 +106713,176.04,81.268 +106714,174.14,80.265 +106715,172.31,79.287 +106716,170.55,78.331 +106717,174.68,81.3329 +106718,172.8,80.3024 +106719,171,79.296 +106720,169.25,78.313 +106721,173.32,81.397 +106722,171.46,80.3395 +106723,169.68,79.306 +106724,167.96,78.295 +106725,171.95,81.4603 +106726,170.12,80.3764 +106727,168.37,79.316 +106728,166.67,78.278 +106729,170.59,81.5227 +106730,168.79,80.413 +106731,167.05,79.327 +106732,165.38,78.262 +106733,169.22,81.5843 +106734,167.45,80.4493 +106735,165.74,79.338 +106736,164.09,78.247 +106737,167.86,81.6449 +106738,166.11,80.4853 +106739,164.43,79.349 +106740,162.8,78.233 +106741,166.49,81.7047 +106742,164.77,80.521 +106743,163.11,79.36 +106744,161.52,78.22 +106745,165.12,81.7636 +106746,163.43,80.5564 +106747,161.8,79.372 +106748,160.23,78.207 +106749,163.75,81.8215 +106750,162.09,80.5916 +106751,160.49,79.383 +106752,158.95,78.195 +106753,162.38,81.8784 +106754,160.75,80.6264 +106755,159.18,79.396 +106756,157.67,78.185 +106757,161.01,81.9344 +106758,159.4,80.6609 +106759,157.87,79.408 +106760,156.38,78.175 +106761,159.63,81.9894 +106762,158.06,80.695 +106763,156.56,79.421 +106764,155.1,78.166 +106765,158.26,82.0434 +106766,156.72,80.7289 +106767,155.25,79.435 +106768,153.82,78.159 +106769,156.88,82.0964 +106770,155.38,80.7624 +106771,153.94,79.448 +106772,152.55,78.152 +106773,155.5,82.1483 +106774,154.03,80.7956 +106775,152.63,79.462 +106776,151.27,78.146 +106777,154.12,82.1991 +106778,152.69,80.8284 +106779,151.32,79.476 +106780,149.99,78.142 +106781,152.74,82.2489 +106782,151.35,80.8608 +106783,150.01,79.491 +106784,148.72,78.138 +106785,151.36,82.2976 +106786,150,80.893 +106787,148.7,79.506 +106788,147.44,78.136 +106789,149.98,82.3452 +106790,148.66,80.9247 +106791,147.39,79.521 +106792,146.17,78.134 +106793,148.6,82.3917 +106794,147.31,80.9561 +106795,146.08,79.537 +106796,144.9,78.134 +106797,147.22,82.4371 +106798,145.97,80.9871 +106799,144.77,79.553 +106800,143.63,78.135 +106801,145.83,82.4814 +106802,144.62,81.0178 +106803,143.46,79.57 +106804,142.36,78.137 +106805,144.45,82.5245 +106806,143.27,81.048 +106807,142.16,79.587 +106808,141.09,78.14 +106809,143.06,82.5664 +106810,141.93,81.0779 +106811,140.85,79.604 +106812,139.82,78.144 +106813,141.67,82.6072 +106814,140.58,81.1074 +106815,139.54,79.622 +106816,138.55,78.15 +106817,140.28,82.6468 +106818,139.23,81.1365 +106819,138.24,79.64 +106820,137.28,78.157 +106821,138.9,82.6853 +106822,137.89,81.1653 +106823,136.93,79.658 +106824,136.01,78.164 +106825,137.51,82.7225 +106826,136.54,81.1936 +106827,135.62,79.677 +106828,134.75,78.173 +106829,136.12,82.7586 +106830,135.19,81.2215 +106831,134.32,79.697 +106832,133.48,78.184 +106833,134.73,82.7934 +106834,133.84,81.2491 +106835,133.01,79.716 +106836,132.22,78.195 +106837,133.33,82.8271 +106838,132.5,81.2762 +106839,131.7,79.737 +106840,130.95,78.208 +106841,131.94,82.8595 +106842,131.15,81.303 +106843,130.4,79.757 +106844,129.69,78.222 +106845,130.55,82.8907 +106846,129.8,81.3293 +106847,129.09,79.778 +106848,128.42,78.237 +106849,129.16,82.9208 +106850,128.45,81.3552 +106851,127.79,79.799 +106852,127.16,78.253 +106853,127.76,82.9495 +106854,127.1,81.3808 +106855,126.48,79.821 +106856,125.9,78.271 +106857,126.37,82.9771 +106858,125.75,81.4059 +106859,125.18,79.843 +106860,124.64,78.29 +106861,124.98,83.0034 +106862,124.4,81.4306 +106863,123.87,79.866 +106864,123.38,78.31 +106865,123.58,83.0285 +106866,123.05,81.4549 +106867,122.57,79.889 +106868,122.11,78.332 +106869,122.19,83.0524 +106870,121.71,81.4788 +106871,121.26,79.913 +106872,120.85,78.355 +106873,120.79,83.075 +106874,120.36,81.5022 +106875,119.96,79.937 +106876,119.59,78.379 +106877,119.4,83.0964 +106878,119.01,81.5253 +106879,118.65,79.961 +106880,118.33,78.404 +106881,118,83.1166 +106882,117.66,81.5479 +106883,117.35,79.986 +106884,117.07,78.43 +106885,116.61,83.1356 +106886,116.31,81.5702 +106887,116.04,80.0108 +106888,115.81,78.458 +106889,115.21,83.1533 +106890,114.96,81.592 +106891,114.74,80.0364 +106892,114.55,78.487 +106893,113.81,83.1698 +106894,113.61,81.6135 +106895,113.43,80.0624 +106896,113.29,78.518 +106897,112.42,83.1851 +106898,112.26,81.6345 +106899,112.13,80.0889 +106900,112.03,78.549 +106901,111.02,83.1992 +106902,110.91,81.6551 +106903,110.82,80.1157 +106904,110.77,78.582 +106905,109.63,83.2121 +106906,109.56,81.6753 +106907,109.52,80.143 +106908,109.51,78.616 +106909,108.23,83.2238 +106910,108.21,81.6951 +106911,108.21,80.1707 +106912,108.25,78.652 +106913,106.83,83.2342 +106914,106.85,81.7145 +106915,106.91,80.1988 +106916,106.99,78.688 +106917,105.44,83.2435 +106918,105.5,81.7335 +106919,105.6,80.2274 +106920,105.73,78.726 +106921,104.04,83.2516 +106922,104.15,81.7521 +106923,104.3,80.2563 +106924,104.47,78.765 +106925,102.65,83.2586 +106926,102.8,81.7703 +106927,102.99,80.2856 +106928,103.21,78.806 +106929,101.25,83.2643 +106930,101.45,81.7882 +106931,101.69,80.3154 +106932,101.95,78.847 +106933,99.856,83.2689 +106934,100.1,81.8056 +106935,100.38,80.3455 +106936,100.69,78.89 +106937,98.462,83.2724 +106938,98.754,81.8227 +106939,99.077,80.3761 +106940,99.43,78.934 +106941,97.067,83.2747 +106942,97.404,81.8393 +106943,97.771,80.407 +106944,98.169,78.979 +106945,95.673,83.2759 +106946,96.054,81.8556 +106947,96.466,80.4383 +106948,96.908,79.026 +106949,94.279,83.276 +106950,94.704,81.8715 +106951,95.16,80.4701 +106952,95.646,79.073 +106953,92.885,83.275 +106954,93.354,81.8871 +106955,93.854,80.5022 +106956,94.383,79.122 +106957,91.492,83.2729 +106958,92.005,81.9023 +106959,92.548,80.5347 +106960,93.121,79.172 +106961,90.1,83.2697 +106962,90.655,81.9171 +106963,91.241,80.5675 +106964,91.857,79.223 +106965,88.708,83.2655 +106966,89.306,81.9315 +106967,89.935,80.6007 +106968,90.594,79.275 +106969,87.316,83.2602 +106970,87.957,81.9457 +106971,88.628,80.6343 +106972,89.33,79.328 +106973,85.925,83.2539 +106974,86.608,81.9594 +106975,87.321,80.6683 +106976,88.065,79.382 +106977,84.535,83.2465 +106978,85.259,81.9728 +106979,86.014,80.7026 +106980,86.8,79.438 +106981,83.145,83.2382 +106982,83.91,81.9859 +106983,84.706,80.7373 +106984,85.534,79.494 +106985,81.756,83.2288 +106986,82.562,81.9987 +106987,83.399,80.7723 +106988,84.267,79.551 +106989,80.368,83.2185 +106990,81.214,82.0111 +106991,82.091,80.8076 +106992,83,79.61 +106993,78.98,83.2073 +106994,79.865,82.0232 +106995,80.782,80.8433 +106996,81.732,79.669 +106997,77.593,83.1951 +106998,78.518,82.035 +106999,79.474,80.8793 +107000,80.463,79.73 +107001,76.207,83.182 +107002,77.17,82.0464 +107003,78.165,80.9156 +107004,79.193,79.791 +107005,74.822,83.1679 +107006,75.823,82.0576 +107007,76.856,80.9523 +107008,77.923,79.854 +107009,73.437,83.1531 +107010,74.475,82.0685 +107011,75.547,80.9892 +107012,76.652,79.917 +107013,72.054,83.1373 +107014,73.129,82.0791 +107015,74.237,81.0265 +107016,75.38,79.981 +107017,70.671,83.1207 +107018,71.782,82.0894 +107019,72.927,81.064 +107020,74.107,80.0465 +107021,69.289,83.1033 +107022,70.436,82.0994 +107023,71.616,81.1018 +107024,72.833,80.1125 +107025,67.908,83.0851 +107026,69.089,82.1092 +107027,70.306,81.1399 +107028,71.558,80.1793 +107029,66.528,83.0661 +107030,67.744,82.1187 +107031,68.995,81.1783 +107032,70.282,80.247 +107033,65.149,83.0464 +107034,66.398,82.128 +107035,67.683,81.217 +107036,69.005,80.3154 +107037,63.771,83.0259 +107038,65.053,82.137 +107039,66.371,81.2559 +107040,67.727,80.3846 +107041,62.394,83.0048 +107042,63.708,82.1457 +107043,65.059,81.295 +107044,66.448,80.4546 +107045,61.018,82.9829 +107046,62.364,82.1543 +107047,63.747,81.3344 +107048,65.168,80.5253 +107049,59.643,82.9604 +107050,61.02,82.1626 +107051,62.434,81.374 +107052,63.887,80.5967 +107053,58.27,82.9372 +107054,59.676,82.1707 +107055,61.12,81.4138 +107056,62.605,80.6688 +107057,56.897,82.9134 +107058,58.332,82.1786 +107059,59.807,81.4539 +107060,61.322,80.7415 +107061,55.526,82.889 +107062,56.989,82.1862 +107063,58.492,81.4941 +107064,60.037,80.8148 +107065,54.155,82.8641 +107066,55.646,82.1937 +107067,57.178,81.5346 +107068,58.751,80.8888 +107069,52.786,82.8386 +107070,54.304,82.2011 +107071,55.863,81.5753 +107072,57.464,80.9633 +107073,51.418,82.8125 +107074,52.962,82.2082 +107075,54.547,81.6161 +107076,56.176,81.0383 +107077,50.052,82.786 +107078,51.62,82.2152 +107079,53.231,81.6571 +107080,54.886,81.1139 +107081,48.686,82.7591 +107082,50.279,82.222 +107083,51.915,81.6982 +107084,53.596,81.19 +107085,47.322,82.7316 +107086,48.938,82.2287 +107087,50.598,81.7396 +107088,52.304,81.2665 +107089,45.959,82.7038 +107090,47.598,82.2352 +107091,49.281,81.781 +107092,51.01,81.3434 +107093,44.597,82.6756 +107094,46.258,82.2417 +107095,47.963,81.8226 +107096,49.715,81.4207 +107097,43.237,82.647 +107098,44.918,82.2479 +107099,46.644,81.8643 +107100,48.419,81.4985 +107101,41.878,82.6181 +107102,43.579,82.2541 +107103,45.326,81.9062 +107104,47.122,81.5765 +107105,40.52,82.5888 +107106,42.24,82.2602 +107107,44.006,81.9481 +107108,45.823,81.6549 +107109,39.164,82.5593 +107110,40.901,82.2662 +107111,42.687,81.9901 +107112,44.523,81.7336 +107113,37.809,82.5295 +107114,39.563,82.2721 +107115,41.366,82.0322 +107116,43.221,81.8125 +107117,36.455,82.4995 +107118,38.226,82.2779 +107119,40.046,82.0744 +107120,41.918,81.8916 +107121,35.103,82.4693 +107122,36.889,82.2837 +107123,38.724,82.1167 +107124,40.613,81.9709 +107125,33.752,82.439 +107126,35.552,82.2894 +107127,37.403,82.159 +107128,39.307,82.0504 +107129,32.402,82.4085 +107130,34.216,82.2951 +107131,36.08,82.2014 +107132,37.999,82.1301 +107133,31.054,82.3778 +107134,32.88,82.3007 +107135,34.758,82.2438 +107136,36.69,82.2098 +107137,29.707,82.3471 +107138,31.545,82.3063 +107139,33.434,82.2863 +107140,35.38,82.2897 +107141,28.362,82.3163 +107142,30.21,82.3119 +107143,32.11,82.3287 +107144,34.068,82.3695 +107145,27.018,82.2855 +107146,28.875,82.3175 +107147,30.786,82.3712 +107148,32.754,82.4494 +107149,25.675,82.2547 +107150,27.541,82.323 +107151,29.461,82.4136 +107152,31.439,82.5293 +107153,24.334,82.2239 +107154,26.208,82.3286 +107155,28.136,82.4561 +107156,30.122,82.6091 +107157,22.994,82.1932 +107158,24.875,82.3342 +107159,26.81,82.4985 +107160,28.804,82.6888 +107161,21.656,82.1625 +107162,23.542,82.3399 +107163,25.483,82.5409 +107164,27.485,82.7685 +107165,20.319,82.132 +107166,22.21,82.3456 +107167,24.156,82.5833 +107168,26.163,82.848 +107169,18.984,82.1016 +107170,20.878,82.3513 +107171,22.829,82.6256 +107172,24.84,82.9273 +107173,17.65,82.0713 +107174,19.547,82.3571 +107175,21.5,82.6678 +107176,23.516,83.0065 +107177,16.317,82.0413 +107178,18.216,82.363 +107179,20.172,82.71 +107180,22.19,83.0854 +107181,14.986,82.0114 +107182,16.886,82.3689 +107183,18.843,82.7521 +107184,20.863,83.164 +107185,13.657,81.9819 +107186,15.556,82.3749 +107187,17.513,82.7941 +107188,19.534,83.2424 +107189,12.328,81.9526 +107190,14.227,82.3811 +107191,16.183,82.836 +107192,18.203,83.3204 +107193,11.002,81.9236 +107194,12.898,82.3873 +107195,14.852,82.8778 +107196,16.871,83.3982 +107197,9.6763,81.8949 +107198,11.57,82.3937 +107199,13.521,82.9195 +107200,15.537,83.4755 +107201,8.3524,81.8666 +107202,10.242,82.4001 +107203,12.189,82.961 +107204,14.202,83.5524 +107205,7.0299,81.8387 +107206,8.914,82.4068 +107207,10.856,83.0024 +107208,12.865,83.6289 +107209,5.7089,81.8112 +107210,7.5869,82.4135 +107211,9.5234,83.0437 +107212,11.526,83.705 +107213,4.3892,81.7842 +107214,6.2603,82.4204 +107215,8.1899,83.0848 +107216,10.187,83.7805 +107217,3.071,81.7576 +107218,4.9341,82.4275 +107219,6.8559,83.1257 +107220,8.845,83.8556 +107221,1.7541,81.7315 +107222,3.6084,82.4347 +107223,5.5214,83.1665 +107224,7.502,83.9301 +107225,0.43863,81.706 +107226,2.2831,82.4422 +107227,4.1863,83.207 +107228,6.1574,84.004 +107229,359.12,81.681 +107230,0.95821,82.4498 +107231,2.8508,83.2474 +107232,4.8113,84.0773 +107233,357.81,81.6565 +107234,359.63,82.4576 +107235,1.5147,83.2876 +107236,3.4637,84.15 +107237,356.5,81.6327 +107238,358.31,82.4656 +107239,0.17809,83.3276 +107240,2.1146,84.222 +107241,355.19,81.6095 +107242,356.99,82.4738 +107243,358.84,83.3673 +107244,0.76399,84.2934 +107245,353.88,81.5869 +107246,355.66,82.4823 +107247,357.5,83.4069 +107248,359.41,84.3641 +107249,352.57,81.5651 +107250,354.34,82.491 +107251,356.17,83.4461 +107252,358.06,84.434 +107253,351.27,81.5439 +107254,353.02,82.4999 +107255,354.83,83.4852 +107256,356.7,84.5032 +107257,349.96,81.5234 +107258,351.7,82.509 +107259,353.49,83.524 +107260,355.35,84.5716 +107261,348.66,81.5037 +107262,350.37,82.5185 +107263,352.15,83.5625 +107264,353.99,84.6392 +107265,347.36,81.4848 +107266,349.05,82.5282 +107267,350.81,83.6008 +107268,352.63,84.706 +107269,346.06,81.4667 +107270,347.73,82.5381 +107271,349.47,83.6387 +107272,351.27,84.7719 +107273,344.76,81.4494 +107274,346.41,82.5483 +107275,348.13,83.6764 +107276,349.91,84.837 +107277,343.46,81.4329 +107278,345.09,82.5589 +107279,346.78,83.7138 +107280,348.54,84.9012 +107281,342.16,81.4173 +107282,343.77,82.5697 +107283,345.44,83.7509 +107284,347.18,84.9644 +107285,340.87,81.4026 +107286,342.45,82.5808 +107287,344.1,83.7877 +107288,345.81,85.0267 +107289,339.57,81.3888 +107290,341.14,82.5922 +107291,342.76,83.8242 +107292,344.45,85.0881 +107293,338.28,81.3759 +107294,339.82,82.6039 +107295,341.41,83.8604 +107296,343.08,85.1485 +107297,336.98,81.364 +107298,338.5,82.616 +107299,340.07,83.8962 +107300,341.71,85.2079 +107301,335.69,81.353 +107302,337.18,82.6284 +107303,338.73,83.9318 +107304,340.34,85.2662 +107305,334.4,81.343 +107306,335.86,82.6411 +107307,337.38,83.9669 +107308,338.96,85.3236 +107309,333.11,81.334 +107310,334.55,82.6541 +107311,336.04,84.0017 +107312,337.59,85.3799 +107313,331.82,81.3261 +107314,333.23,82.6675 +107315,334.69,84.0362 +107316,336.21,85.4351 +107317,330.54,81.3192 +107318,331.91,82.6813 +107319,333.35,84.0703 +107320,334.84,85.4892 +107321,329.25,81.3133 +107322,330.6,82.6954 +107323,332,84.1041 +107324,333.46,85.5423 +107325,327.97,81.3085 +107326,329.28,82.7098 +107327,330.65,84.1375 +107328,332.08,85.5942 +107329,326.68,81.3049 +107330,327.97,82.7247 +107331,329.31,84.1705 +107332,330.7,85.645 +107333,325.4,81.3023 +107334,326.65,82.7399 +107335,327.96,84.2031 +107336,329.32,85.6946 +107337,324.12,81.3008 +107338,325.34,82.7554 +107339,326.61,84.2354 +107340,327.94,85.7431 +107341,322.83,81.3005 +107342,324.02,82.7714 +107343,325.26,84.2672 +107344,326.56,85.7904 +107345,321.55,81.3014 +107346,322.71,82.7877 +107347,323.91,84.2987 +107348,325.18,85.8365 +107349,320.27,81.3034 +107350,321.39,82.8045 +107351,322.56,84.3297 +107352,323.79,85.8815 +107353,318.99,81.3065 +107354,320.08,82.8216 +107355,321.22,84.3604 +107356,322.41,85.9252 +107357,317.72,81.3109 +107358,318.77,82.8391 +107359,319.87,84.3907 +107360,321.02,85.9677 +107361,316.44,81.3165 +107362,317.45,82.8571 +107363,318.52,84.4205 +107364,319.63,86.0089 +107365,315.16,81.3233 +107366,316.14,82.8754 +107367,317.17,84.45 +107368,318.25,86.049 +107369,313.89,81.3313 +107370,314.83,82.8941 +107371,315.82,84.479 +107372,316.86,86.0878 +107373,312.61,81.3406 +107374,313.52,82.9133 +107375,314.47,84.5076 +107376,315.47,86.1253 +107377,311.34,81.351 +107378,312.2,82.9329 +107379,313.12,84.5358 +107380,314.08,86.1616 +107381,310.06,81.3628 +107382,310.89,82.9529 +107383,311.76,84.5636 +107384,312.69,86.1966 +107385,308.79,81.3758 +107386,309.58,82.9733 +107387,310.41,84.591 +107388,311.3,86.2303 +107389,307.51,81.3901 +107390,308.27,82.9941 +107391,309.06,84.6179 +107392,309.9,86.2628 +107393,306.24,81.4056 +107394,306.95,83.0153 +107395,307.71,84.6444 +107396,308.51,86.294 +107397,304.97,81.4224 +107398,305.64,83.037 +107399,306.36,84.6704 +107400,307.12,86.3239 +107401,303.7,81.4405 +107402,304.33,83.0591 +107403,305.01,84.6961 +107404,305.73,86.3525 +107405,302.43,81.4599 +107406,303.02,83.0816 +107407,303.65,84.7213 +107408,304.33,86.3798 +107409,301.16,81.4806 +107410,301.71,83.1046 +107411,302.3,84.746 +107412,302.94,86.4058 +107413,299.89,81.5026 +107414,300.4,83.128 +107415,300.95,84.7704 +107416,301.54,86.4305 +107417,298.61,81.5259 +107418,299.09,83.1518 +107419,299.59,84.7943 +107420,300.15,86.4539 +107421,297.35,81.5505 +107422,297.77,83.176 +107423,298.24,84.8177 +107424,298.75,86.4761 +107425,296.08,81.5763 +107426,296.46,83.2007 +107427,296.89,84.8408 +107428,297.35,86.4969 +107429,294.81,81.6035 +107430,295.15,83.2258 +107431,295.53,84.8634 +107432,295.96,86.5165 +107433,293.54,81.632 +107434,293.84,83.2513 +107435,294.18,84.8855 +107436,294.56,86.5347 +107437,292.27,81.6618 +107438,292.53,83.2773 +107439,292.83,84.9072 +107440,293.16,86.5517 +107441,291,81.6929 +107442,291.22,83.3037 +107443,291.47,84.9285 +107444,291.77,86.5674 +107445,289.73,81.7253 +107446,289.91,83.3305 +107447,290.12,84.9494 +107448,290.37,86.5818 +107449,288.46,81.7589 +107450,288.6,83.3578 +107451,288.77,84.9698 +107452,288.97,86.5949 +107453,287.19,81.7939 +107454,287.29,83.3854 +107455,287.41,84.9898 +107456,287.57,86.6068 +107457,285.92,81.8301 +107458,285.98,83.4135 +107459,286.06,85.0094 +107460,286.18,86.6174 +107461,284.66,81.8677 +107462,284.66,83.4421 +107463,284.71,85.0285 +107464,284.78,86.6267 +107465,283.39,81.9065 +107466,283.35,83.471 +107467,283.35,85.0473 +107468,283.38,86.6348 +107469,282.12,81.9466 +107470,282.04,83.5003 +107471,282,85.0656 +107472,281.98,86.6416 +107473,280.85,81.9879 +107474,280.73,83.5301 +107475,280.64,85.0835 +107476,280.59,86.6473 +107477,279.58,82.0305 +107478,279.42,83.5603 +107479,279.29,85.1009 +107480,279.19,86.6516 +107481,278.31,82.0743 +107482,278.11,83.5909 +107483,277.94,85.118 +107484,277.79,86.6548 +107485,277.04,82.1194 +107486,276.8,83.6219 +107487,276.58,85.1346 +107488,276.4,86.6568 +107489,275.77,82.1657 +107490,275.49,83.6533 +107491,275.23,85.1509 +107492,275,86.6576 +107493,274.5,82.2132 +107494,274.17,83.685 +107495,273.87,85.1667 +107496,273.6,86.6572 +107497,273.23,82.2619 +107498,272.86,83.7172 +107499,272.52,85.1822 +107500,272.21,86.6556 +107501,271.96,82.3118 +107502,271.55,83.7498 +107503,271.17,85.1972 +107504,270.81,86.6529 +107505,270.69,82.3629 +107506,270.24,83.7828 +107507,269.81,85.2119 +107508,269.41,86.6491 +107509,269.42,82.4151 +107510,268.93,83.8161 +107511,268.46,85.2262 +107512,268.02,86.6441 +107513,268.15,82.4685 +107514,267.61,83.8498 +107515,267.11,85.2401 +107516,266.62,86.638 +107517,266.88,82.523 +107518,266.3,83.8839 +107519,265.75,85.2536 +107520,265.23,86.6308 +107521,265.6,82.5787 +107522,264.99,83.9183 +107523,264.4,85.2668 +107524,263.84,86.6226 +107525,264.33,82.6355 +107526,263.68,83.9532 +107527,263.05,85.2795 +107528,262.44,86.6132 +107529,263.06,82.6933 +107530,262.36,83.9883 +107531,261.69,85.292 +107532,261.05,86.6028 +107533,261.78,82.7523 +107534,261.05,84.0238 +107535,260.34,85.3041 +107536,259.66,86.5914 +107537,260.51,82.8122 +107538,259.74,84.0597 +107539,258.99,85.3158 +107540,258.27,86.579 +107541,259.23,82.8733 +107542,258.42,84.0959 +107543,257.64,85.3272 +107544,256.88,86.5656 +107545,257.96,82.9353 +107546,257.11,84.1324 +107547,256.28,85.3382 +107548,255.48,86.5512 +107549,256.68,82.9983 +107550,255.79,84.1693 +107551,254.93,85.349 +107552,254.1,86.5358 +107553,255.4,83.0624 +107554,254.48,84.2064 +107555,253.58,85.3594 +107556,252.71,86.5195 +107557,254.12,83.1273 +107558,253.16,84.2439 +107559,252.23,85.3694 +107560,251.32,86.5023 +107561,252.85,83.1932 +107562,251.85,84.2817 +107563,250.88,85.3792 +107564,249.93,86.4842 +107565,251.57,83.2601 +107566,250.53,84.3197 +107567,249.53,85.3887 +107568,248.54,86.4652 +107569,250.28,83.3278 +107570,249.22,84.3581 +107571,248.17,85.3979 +107572,247.16,86.4454 +107573,249,83.3964 +107574,247.9,84.3967 +107575,246.82,85.4068 +107576,245.77,86.4247 +107577,247.72,83.4658 +107578,246.58,84.4357 +107579,245.47,85.4154 +107580,244.39,86.4032 +107581,246.44,83.5361 +107582,245.27,84.4748 +107583,244.12,85.4237 +107584,243.01,86.381 +107585,245.15,83.6072 +107586,243.95,84.5143 +107587,242.77,85.4318 +107588,241.62,86.358 +107589,243.87,83.679 +107590,242.63,84.554 +107591,241.42,85.4396 +107592,240.24,86.3342 +107593,242.58,83.7516 +107594,241.31,84.5939 +107595,240.07,85.4472 +107596,238.86,86.3097 +107597,241.29,83.825 +107598,240,84.6341 +107599,238.73,85.4545 +107600,237.48,86.2845 +107601,240.01,83.899 +107602,238.68,84.6744 +107603,237.38,85.4616 +107604,236.1,86.2587 +107605,238.72,83.9737 +107606,237.36,84.715 +107607,236.03,85.4685 +107608,234.73,86.2322 +107609,237.43,84.049 +107610,236.04,84.7559 +107611,234.68,85.4752 +107612,233.35,86.2051 +107613,236.13,84.125 +107614,234.72,84.7969 +107615,233.33,85.4816 +107616,231.97,86.1774 +107617,234.84,84.2016 +107618,233.4,84.838 +107619,231.98,85.4879 +107620,230.6,86.1492 +107621,233.55,84.2787 +107622,232.08,84.8794 +107623,230.64,85.4939 +107624,229.23,86.1204 +107625,232.25,84.3563 +107626,230.76,84.921 +107627,229.29,85.4998 +107628,227.85,86.0911 +107629,230.96,84.4345 +107630,229.44,84.9627 +107631,227.94,85.5055 +107632,226.48,86.0613 +107633,229.66,84.5132 +107634,228.11,85.0045 +107635,226.6,85.5111 +107636,225.11,86.031 +107637,228.36,84.5923 +107638,226.79,85.0465 +107639,225.25,85.5165 +107640,223.75,86.0003 +107641,227.06,84.6718 +107642,225.47,85.0886 +107643,223.91,85.5218 +107644,222.38,85.9692 +107645,225.76,84.7517 +107646,224.15,85.1309 +107647,222.56,85.5269 +107648,221.01,85.9378 +107649,224.46,84.832 +107650,222.82,85.1732 +107651,221.22,85.5319 +107652,219.65,85.9059 +107653,223.16,84.9126 +107654,221.5,85.2157 +107655,219.87,85.5368 +107656,218.28,85.8738 +107657,221.85,84.9935 +107658,220.17,85.2582 +107659,218.53,85.5416 +107660,216.92,85.8414 +107661,220.54,85.0746 +107662,218.85,85.3009 +107663,217.19,85.5462 +107664,215.56,85.8087 +107665,219.24,85.1561 +107666,217.52,85.3436 +107667,215.84,85.5508 +107668,214.2,85.7757 +107669,217.93,85.2377 +107670,216.2,85.3864 +107671,214.5,85.5554 +107672,212.84,85.7426 +107673,216.62,85.3195 +107674,214.87,85.4292 +107675,213.16,85.5598 +107676,211.48,85.7093 +107677,215.31,85.4014 +107678,213.54,85.472 +107679,211.82,85.5642 +107680,210.13,85.6758 +107681,213.99,85.4835 +107682,212.21,85.5149 +107683,210.48,85.5686 +107684,208.77,85.6422 +107685,212.68,85.5656 +107686,210.89,85.5578 +107687,209.13,85.5729 +107688,207.42,85.6085 +107689,211.36,85.6478 +107690,209.56,85.6008 +107691,207.79,85.5772 +107692,206.07,85.5748 +107693,210.05,85.7301 +107694,208.23,85.6437 +107695,206.45,85.5814 +107696,204.72,85.541 +107697,208.73,85.8123 +107698,206.9,85.6866 +107699,205.11,85.5857 +107700,203.37,85.5072 +107701,207.41,85.8944 +107702,205.57,85.7295 +107703,203.77,85.59 +107704,202.02,85.4734 +107705,206.09,85.9765 +107706,204.24,85.7724 +107707,202.44,85.5942 +107708,200.67,85.4397 +107709,204.76,86.0585 +107710,202.91,85.8152 +107711,201.1,85.5985 +107712,199.33,85.4061 +107713,203.44,86.1404 +107714,201.58,85.8579 +107715,199.76,85.6029 +107716,197.98,85.3725 +107717,202.11,86.2221 +107718,200.24,85.9007 +107719,198.42,85.6073 +107720,196.64,85.3391 +107721,200.79,86.3035 +107722,198.91,85.9433 +107723,197.08,85.6117 +107724,195.3,85.3059 +107725,199.46,86.3848 +107726,197.58,85.9858 +107727,195.75,85.6162 +107728,193.96,85.2729 +107729,198.13,86.4658 +107730,196.25,86.0283 +107731,194.41,85.6207 +107732,192.62,85.2401 +107733,196.8,86.5465 +107734,194.91,86.0707 +107735,193.08,85.6254 +107736,191.28,85.2076 +107737,195.46,86.6269 +107738,193.58,86.1129 +107739,191.74,85.6301 +107740,189.95,85.1753 +107741,194.13,86.7069 +107742,192.24,86.155 +107743,190.41,85.6349 +107744,188.61,85.1434 +107745,192.79,86.7865 +107746,190.91,86.197 +107747,189.07,85.6398 +107748,187.28,85.1118 +107749,191.45,86.8657 +107750,189.57,86.2389 +107751,187.74,85.6449 +107752,185.95,85.0805 +107753,190.12,86.9445 +107754,188.23,86.2806 +107755,186.4,85.6501 +107756,184.62,85.0497 +107757,188.78,87.0227 +107758,186.9,86.3221 +107759,185.07,85.6554 +107760,183.29,85.0193 +107761,187.43,87.1005 +107762,185.56,86.3635 +107763,183.74,85.6609 +107764,181.96,84.9893 +107765,186.09,87.1777 +107766,184.22,86.4046 +107767,182.4,85.6665 +107768,180.64,84.9599 +107769,184.74,87.2544 +107770,182.88,86.4456 +107771,181.07,85.6723 +107772,179.31,84.9309 +107773,183.4,87.3305 +107774,181.54,86.4864 +107775,179.74,85.6783 +107776,177.99,84.9024 +107777,182.05,87.4059 +107778,180.2,86.527 +107779,178.41,85.6844 +107780,176.67,84.8746 +107781,180.7,87.4807 +107782,178.86,86.5673 +107783,177.08,85.6908 +107784,175.35,84.8473 +107785,179.35,87.5548 +107786,177.52,86.6075 +107787,175.75,85.6973 +107788,174.03,84.8206 +107789,178,87.6282 +107790,176.18,86.6474 +107791,174.42,85.7041 +107792,172.71,84.7946 +107793,176.65,87.7009 +107794,174.84,86.687 +107795,173.09,85.7111 +107796,171.39,84.7692 +107797,175.29,87.7728 +107798,173.5,86.7264 +107799,171.76,85.7183 +107800,170.07,84.7445 +107801,173.93,87.8439 +107802,172.15,86.7655 +107803,170.43,85.7257 +107804,168.76,84.7206 +107805,172.58,87.9142 +107806,170.81,86.8043 +107807,169.1,85.7334 +107808,167.45,84.6974 +107809,171.22,87.9837 +107810,169.47,86.8429 +107811,167.77,85.7414 +107812,166.13,84.6749 +107813,169.86,88.0523 +107814,168.12,86.8812 +107815,166.45,85.7496 +107816,164.82,84.6533 +107817,168.5,88.12 +107818,166.78,86.9191 +107819,165.12,85.7581 +107820,163.51,84.6324 +107821,167.13,88.1868 +107822,165.43,86.9568 +107823,163.79,85.7668 +107824,162.2,84.6124 +107825,165.77,88.2526 +107826,164.09,86.9942 +107827,162.47,85.7758 +107828,160.9,84.5933 +107829,164.4,88.3175 +107830,162.74,87.0312 +107831,161.14,85.7852 +107832,159.59,84.575 +107833,163.04,88.3814 +107834,161.39,87.0679 +107835,159.81,85.7948 +107836,158.29,84.5576 +107837,161.67,88.4442 +107838,160.05,87.1043 +107839,158.49,85.8047 +107840,156.98,84.5412 +107841,160.3,88.5061 +107842,158.7,87.1403 +107843,157.16,85.815 +107844,155.68,84.5257 +107845,158.93,88.5669 +107846,157.35,87.176 +107847,155.84,85.8255 +107848,154.38,84.5112 +107849,157.55,88.6266 +107850,156,87.2113 +107851,154.52,85.8364 +107852,153.08,84.4977 +107853,156.18,88.6853 +107854,154.66,87.2462 +107855,153.19,85.8477 +107856,151.78,84.4851 +107857,154.81,88.7428 +107858,153.31,87.2808 +107859,151.87,85.8592 +107860,150.48,84.4736 +107861,153.43,88.7992 +107862,151.96,87.315 +107863,150.54,85.8711 +107864,149.18,84.4632 +107865,152.06,88.8544 +107866,150.61,87.3488 +107867,149.22,85.8834 +107868,147.88,84.4538 +107869,150.68,88.9085 +107870,149.26,87.3822 +107871,147.9,85.896 +107872,146.59,84.4455 +107873,149.3,88.9614 +107874,147.91,87.4152 +107875,146.58,85.909 +107876,145.29,84.4383 +107877,147.92,89.0131 +107878,146.56,87.4479 +107879,145.25,85.9224 +107880,144,84.4322 +107881,146.54,89.06359 +107882,145.21,87.4801 +107883,143.93,85.9361 +107884,142.71,84.4273 +107885,145.16,89.11284 +107886,143.85,87.5119 +107887,142.61,85.9502 +107888,141.42,84.4235 +107889,143.77,89.16086 +107890,142.5,87.5433 +107891,141.29,85.9647 +107892,140.12,84.4208 +107893,142.39,89.20761 +107894,141.15,87.5742 +107895,139.97,85.9795 +107896,138.83,84.4194 +107897,141,89.2531 +107898,139.8,87.6048 +107899,138.65,85.9948 +107900,137.54,84.4191 +107901,139.62,89.2973 +107902,138.44,87.6349 +107903,137.33,86.0105 +107904,136.26,84.42 +107905,138.23,89.34021 +107906,137.09,87.6646 +107907,136.01,86.0265 +107908,134.97,84.4222 +107909,136.84,89.38181 +107910,135.74,87.6938 +107911,134.69,86.043 +107912,133.68,84.4256 +107913,135.46,89.4221 +107914,134.38,87.7226 +107915,133.37,86.0599 +107916,132.39,84.4302 +107917,134.07,89.46106 +107918,133.03,87.751 +107919,132.05,86.0772 +107920,131.11,84.436 +107921,132.68,89.49869 +107922,131.67,87.7789 +107923,130.73,86.0949 +107924,129.82,84.4432 +107925,131.29,89.53498 +107926,130.32,87.8063 +107927,129.41,86.113 +107928,128.54,84.4516 +107929,129.89,89.56993 +107930,128.96,87.8333 +107931,128.09,86.1316 +107932,127.25,84.4613 +107933,128.5,89.60351 +107934,127.61,87.8598 +107935,126.77,86.1505 +107936,125.97,84.4723 +107937,127.11,89.63574 +107938,126.25,87.8859 +107939,125.45,86.1699 +107940,124.69,84.4845 +107941,125.72,89.6666 +107942,124.9,87.9115 +107943,124.13,86.1897 +107944,123.41,84.4981 +107945,124.32,89.69609 +107946,123.54,87.9367 +107947,122.81,86.21 +107948,122.12,84.513 +107949,122.93,89.72421 +107950,122.19,87.9614 +107951,121.49,86.2307 +107952,120.84,84.5292 +107953,121.53,89.75095 +107954,120.83,87.9856 +107955,120.17,86.2518 +107956,119.56,84.5467 +107957,120.14,89.77631 +107958,119.47,88.0094 +107959,118.86,86.2733 +107960,118.28,84.5656 +107961,118.74,89.80029 +107962,118.12,88.0327 +107963,117.54,86.2953 +107964,117,84.5857 +107965,117.34,89.82289 +107966,116.76,88.0555 +107967,116.22,86.3177 +107968,115.72,84.6072 +107969,115.95,89.8441 +107970,115.4,88.0778 +107971,114.9,86.3406 +107972,114.44,84.6301 +107973,114.55,89.86394 +107974,114.04,88.0997 +107975,113.58,86.3638 +107976,113.16,84.6542 +107977,113.15,89.8824 +107978,112.69,88.1211 +107979,112.27,86.3876 +107980,111.88,84.6797 +107981,111.75,89.89948 +107982,111.33,88.1421 +107983,110.95,86.4117 +107984,110.6,84.7066 +107985,110.35,89.915192 +107986,109.97,88.1626 +107987,109.63,86.4363 +107988,109.32,84.7348 +107989,108.96,89.929529 +107990,108.61,88.1826 +107991,108.31,86.4613 +107992,108.05,84.7643 +107993,107.56,89.942501 +107994,107.26,88.2021 +107995,106.99,86.4868 +107996,106.77,84.7951 +107997,106.16,89.954112 +107998,105.9,88.2212 +107999,105.68,86.5127 +108000,105.49,84.8273 +108001,104.76,89.964367 +108002,104.54,88.2398 +108003,104.36,86.539 +108004,104.21,84.8608 +108005,103.36,89.973274 +108006,103.18,88.258 +108007,103.04,86.5658 +108008,102.93,84.8956 +108009,101.96,89.980838 +108010,101.82,88.2757 +108011,101.72,86.5929 +108012,101.66,84.9317 +108013,100.56,89.987068 +108014,100.47,88.2929 +108015,100.41,86.6205 +108016,100.38,84.9692 +108017,99.161,89.991973 +108018,99.108,88.3097 +108019,99.088,86.6486 +108020,99.099,85.0079 +108021,97.762,89.995561 +108022,97.749,88.326 +108023,97.77,86.677 +108024,97.821,85.048 +108025,96.363,89.9978423 +108026,96.391,88.3419 +108027,96.452,86.7059 +108028,96.542,85.0893 +108029,94.963,89.9988272 +108030,95.033,88.3573 +108031,95.133,86.7351 +108032,95.264,85.1319 +108033,93.564,89.9985268 +108034,93.674,88.3723 +108035,93.815,86.7648 +108036,93.985,85.1758 +108037,92.165,89.9969529 +108038,92.316,88.3869 +108039,92.497,86.7949 +108040,92.706,85.221 +108041,90.767,89.9941178 +108042,90.958,88.401 +108043,91.179,86.8254 +108044,91.427,85.2674 +108045,89.368,89.9900346 +108046,89.6,88.4147 +108047,89.86,86.8563 +108048,90.147,85.3151 +108049,87.97,89.984717 +108050,88.242,88.4279 +108051,88.541,86.8876 +108052,88.868,85.364 +108053,86.572,89.978179 +108054,86.884,88.4408 +108055,87.223,86.9193 +108056,87.588,85.4141 +108057,85.174,89.970435 +108058,85.525,88.4532 +108059,85.904,86.9513 +108060,86.307,85.4654 +108061,83.777,89.961502 +108062,84.168,88.4652 +108063,84.585,86.9838 +108064,85.026,85.5179 +108065,82.379,89.951394 +108066,82.81,88.4768 +108067,83.265,87.0166 +108068,83.745,85.5716 +108069,80.983,89.940129 +108070,81.452,88.4879 +108071,81.946,87.0498 +108072,82.464,85.6264 +108073,79.587,89.927724 +108074,80.094,88.4987 +108075,80.626,87.0834 +108076,81.182,85.6824 +108077,78.191,89.914196 +108078,78.737,88.5091 +108079,79.306,87.1173 +108080,79.899,85.7395 +108081,76.796,89.89956 +108082,77.379,88.5191 +108083,77.986,87.1515 +108084,78.616,85.7978 +108085,75.401,89.88385 +108086,76.022,88.5288 +108087,76.666,87.1862 +108088,77.332,85.8571 +108089,74.007,89.86706 +108090,74.665,88.538 +108091,75.346,87.2211 +108092,76.048,85.9175 +108093,72.613,89.84923 +108094,73.308,88.5469 +108095,74.025,87.2564 +108096,74.763,85.979 +108097,71.22,89.83038 +108098,71.951,88.5554 +108099,72.704,87.2921 +108100,73.478,86.0415 +108101,69.828,89.81051 +108102,70.595,88.5636 +108103,71.383,87.328 +108104,72.192,86.1051 +108105,68.436,89.78967 +108106,69.238,88.5714 +108107,70.061,87.3643 +108108,70.905,86.1696 +108109,67.045,89.76786 +108110,67.882,88.5789 +108111,68.74,87.4009 +108112,69.617,86.2351 +108113,65.655,89.74511 +108114,66.526,88.586 +108115,67.418,87.4377 +108116,68.329,86.3016 +108117,64.265,89.72145 +108118,65.17,88.5928 +108119,66.095,87.4749 +108120,67.04,86.369 +108121,62.876,89.69689 +108122,63.815,88.5993 +108123,64.773,87.5123 +108124,65.75,86.4373 +108125,61.488,89.67146 +108126,62.459,88.6055 +108127,63.45,87.5501 +108128,64.46,86.5065 +108129,60.101,89.64519 +108130,61.104,88.6114 +108131,62.127,87.5881 +108132,63.168,86.5766 +108133,58.715,89.61809 +108134,59.749,88.617 +108135,60.803,87.6263 +108136,61.876,86.6476 +108137,57.329,89.5902 +108138,58.394,88.6223 +108139,59.479,87.6648 +108140,60.583,86.7193 +108141,55.945,89.56153 +108142,57.04,88.6273 +108143,58.155,87.7036 +108144,59.289,86.7918 +108145,54.561,89.53212 +108146,55.686,88.6321 +108147,56.83,87.7426 +108148,57.994,86.8651 +108149,53.178,89.50198 +108150,54.332,88.6366 +108151,55.506,87.7818 +108152,56.698,86.9392 +108153,51.796,89.47115 +108154,52.979,88.6408 +108155,54.18,87.8212 +108156,55.401,87.014 +108157,50.416,89.43965 +108158,51.625,88.6448 +108159,52.855,87.8609 +108160,54.103,87.0894 +108161,49.036,89.40752 +108162,50.272,88.6486 +108163,51.529,87.9007 +108164,52.804,87.1655 +108165,47.657,89.37476 +108166,48.92,88.6521 +108167,50.202,87.9408 +108168,51.504,87.2423 +108169,46.279,89.34142 +108170,47.567,88.6554 +108171,48.876,87.981 +108172,50.203,87.3196 +108173,44.902,89.30752 +108174,46.215,88.6585 +108175,47.549,88.0214 +108176,48.901,87.3975 +108177,43.527,89.27309 +108178,44.864,88.6614 +108179,46.221,88.0619 +108180,47.598,87.476 +108181,42.152,89.23816 +108182,43.512,88.6642 +108183,44.893,88.1026 +108184,46.294,87.555 +108185,40.778,89.20275 +108186,42.161,88.6667 +108187,43.565,88.1434 +108188,44.989,87.6345 +108189,39.406,89.16689 +108190,40.81,88.6691 +108191,42.236,88.1844 +108192,43.682,87.7144 +108193,38.035,89.13062 +108194,39.46,88.6713 +108195,40.907,88.2255 +108196,42.374,87.7948 +108197,36.665,89.09396 +108198,38.11,88.6734 +108199,39.577,88.2667 +108200,41.066,87.8755 +108201,35.296,89.05694 +108202,36.76,88.6753 +108203,38.247,88.308 +108204,39.756,87.9567 +108205,33.928,89.01959 +108206,35.411,88.6771 +108207,36.917,88.3494 +108208,38.444,88.0381 +108209,32.561,88.9819 +108210,34.062,88.6787 +108211,35.586,88.3909 +108212,37.132,88.1199 +108213,31.196,88.944 +108214,32.713,88.6803 +108215,34.254,88.4324 +108216,35.818,88.2019 +108217,29.832,88.9059 +108218,31.365,88.6818 +108219,32.922,88.474 +108220,34.503,88.2842 +108221,28.469,88.8675 +108222,30.017,88.6831 +108223,31.59,88.5157 +108224,33.187,88.3667 +108225,27.107,88.8289 +108226,28.67,88.6844 +108227,30.257,88.5574 +108228,31.87,88.4494 +108229,25.746,88.7902 +108230,27.323,88.6857 +108231,28.924,88.5991 +108232,30.551,88.5322 +108233,24.387,88.7514 +108234,25.976,88.6868 +108235,27.591,88.6408 +108236,29.231,88.6151 +108237,23.029,88.7125 +108238,24.63,88.6879 +108239,26.256,88.6826 +108240,27.91,88.6981 +108241,21.672,88.6735 +108242,23.284,88.689 +108243,24.922,88.7243 +108244,26.587,88.7812 +108245,20.317,88.6345 +108246,21.938,88.69 +108247,23.587,88.766 +108248,25.263,88.8642 +108249,18.963,88.5955 +108250,20.593,88.6911 +108251,22.251,88.8077 +108252,23.938,88.9473 +108253,17.61,88.5565 +108254,19.248,88.6921 +108255,20.915,88.8494 +108256,22.611,89.03029 +108257,16.258,88.5176 +108258,17.904,88.6931 +108259,19.579,88.891 +108260,21.283,89.1132 +108261,14.908,88.4787 +108262,16.56,88.6941 +108263,18.242,88.9326 +108264,19.954,89.196 +108265,13.558,88.44 +108266,15.217,88.6952 +108267,16.904,88.974 +108268,18.623,89.27865 +108269,12.211,88.4015 +108270,13.873,88.6963 +108271,15.566,89.01544 +108272,17.291,89.36112 +108273,10.864,88.3631 +108274,12.531,88.6974 +108275,14.228,89.05676 +108276,15.958,89.44337 +108277,9.5189,88.3249 +108278,11.188,88.6986 +108279,12.889,89.09797 +108280,14.623,89.52537 +108281,8.175,88.287 +108282,9.8464,88.6998 +108283,11.55,89.13907 +108284,13.287,89.60709 +108285,6.8324,88.2493 +108286,8.5049,88.7011 +108287,10.21,89.18005 +108288,11.949,89.6885 +108289,5.491,88.212 +108290,7.1638,88.7025 +108291,8.8694,89.2209 +108292,10.61,89.76956 +108293,4.151,88.1749 +108294,5.8231,88.704 +108295,7.5285,89.2616 +108296,9.2698,89.85025 +108297,2.8122,88.1383 +108298,4.4828,88.7056 +108299,6.1872,89.30215 +108300,7.9282,89.930518 +108301,1.4748,88.102 +108302,3.1429,88.7073 +108303,4.8453,89.34253 +108304,6.5851,90.010347 +108305,0.13858,88.0661 +108306,1.8033,88.7092 +108307,3.503,89.38274 +108308,5.2407,90.089702 +108309,358.8,88.0307 +108310,0.46424,88.7111 +108311,2.1602,89.42276 +108312,3.8949,90.16855 +108313,357.47,87.9957 +108314,359.13,88.7132 +108315,0.81688,89.46259 +108316,2.5477,90.24686 +108317,356.14,87.9613 +108318,357.79,88.7155 +108319,359.47,89.50221 +108320,1.1992,90.3246 +108321,354.81,87.9273 +108322,356.45,88.7179 +108323,358.13,89.54161 +108324,359.85,90.40174 +108325,353.48,87.894 +108326,355.11,88.7205 +108327,356.78,89.58079 +108328,358.5,90.47825 +108329,352.15,87.8612 +108330,353.77,88.7233 +108331,355.44,89.61974 +108332,357.15,90.5541 +108333,350.82,87.829 +108334,352.44,88.7262 +108335,354.09,89.65843 +108336,355.79,90.62925 +108337,349.49,87.7975 +108338,351.1,88.7294 +108339,352.75,89.69688 +108340,354.44,90.70369 +108341,348.17,87.7666 +108342,349.77,88.7328 +108343,351.4,89.73506 +108344,353.08,90.77737 +108345,346.85,87.7364 +108346,348.43,88.7363 +108347,350.05,89.77296 +108348,351.72,90.85028 +108349,345.52,87.707 +108350,347.09,88.7402 +108351,348.71,89.81058 +108352,350.36,90.92238 +108353,344.2,87.6782 +108354,345.76,88.7442 +108355,347.36,89.84791 +108356,349,90.99364 +108357,342.88,87.6503 +108358,344.43,88.7485 +108359,346.01,89.88494 +108360,347.64,91.064 +108361,341.56,87.6231 +108362,343.09,88.753 +108363,344.66,89.921661 +108364,346.28,91.1335 +108365,340.24,87.5968 +108366,341.76,88.7578 +108367,343.31,89.958059 +108368,344.91,91.2021 +108369,338.93,87.5713 +108370,340.42,88.7629 +108371,341.96,89.9941304 +108372,343.55,91.2698 +108373,337.61,87.5466 +108374,339.09,88.7682 +108375,340.61,90.029865 +108376,342.18,91.3364 +108377,336.3,87.5229 +108378,337.76,88.7738 +108379,339.26,90.065256 +108380,340.81,91.4021 +108381,334.98,87.5001 +108382,336.43,88.7797 +108383,337.91,90.10029 +108384,339.44,91.4667 +108385,333.67,87.4781 +108386,335.09,88.7859 +108387,336.56,90.13497 +108388,338.07,91.5304 +108389,332.36,87.4572 +108390,333.76,88.7924 +108391,335.21,90.16928 +108392,336.7,91.5929 +108393,331.05,87.4372 +108394,332.43,88.7993 +108395,333.85,90.20321 +108396,335.33,91.6543 +108397,329.74,87.4183 +108398,331.1,88.8064 +108399,332.5,90.23676 +108400,333.95,91.7146 +108401,328.43,87.4003 +108402,329.77,88.8139 +108403,331.15,90.26992 +108404,332.58,91.7738 +108405,327.13,87.3834 +108406,328.44,88.8217 +108407,329.79,90.30268 +108408,331.2,91.8319 +108409,325.82,87.3675 +108410,327.11,88.8298 +108411,328.44,90.33504 +108412,329.82,91.8887 +108413,324.51,87.3527 +108414,325.78,88.8383 +108415,327.09,90.36699 +108416,328.44,91.9443 +108417,323.21,87.3391 +108418,324.45,88.8472 +108419,325.73,90.39852 +108420,327.06,91.9988 +108421,321.91,87.3265 +108422,323.12,88.8564 +108423,324.38,90.42962 +108424,325.68,92.052 +108425,320.6,87.315 +108426,321.79,88.8659 +108427,323.02,90.46029 +108428,324.3,92.1039 +108429,319.3,87.3047 +108430,320.46,88.8759 +108431,321.66,90.49053 +108432,322.92,92.1545 +108433,318,87.2956 +108434,319.13,88.8862 +108435,320.31,90.52033 +108436,321.53,92.2039 +108437,316.7,87.2877 +108438,317.81,88.8969 +108439,318.95,90.54968 +108440,320.15,92.2519 +108441,315.4,87.2809 +108442,316.48,88.9079 +108443,317.6,90.57858 +108444,318.76,92.2987 +108445,314.1,87.2754 +108446,315.15,88.9194 +108447,316.24,90.60702 +108448,317.38,92.3441 +108449,312.8,87.271 +108450,313.82,88.9312 +108451,314.88,90.635 +108452,315.99,92.3881 +108453,311.51,87.268 +108454,312.49,88.9435 +108455,313.52,90.66251 +108456,314.6,92.4307 +108457,310.21,87.2661 +108458,311.17,88.9562 +108459,312.16,90.68955 +108460,313.21,92.472 +108461,308.92,87.2655 +108462,309.84,88.9692 +108463,310.81,90.71611 +108464,311.82,92.5119 +108465,307.62,87.2662 +108466,308.51,88.9827 +108467,309.45,90.7422 +108468,310.43,92.5504 +108469,306.33,87.2682 +108470,307.19,88.9966 +108471,308.09,90.76781 +108472,309.04,92.5875 +108473,305.03,87.2715 +108474,305.86,89.01089 +108475,306.73,90.79292 +108476,307.65,92.6232 +108477,303.74,87.2761 +108478,304.53,89.02562 +108479,305.37,90.81755 +108480,306.25,92.6574 +108481,302.45,87.282 +108482,303.21,89.04076 +108483,304.01,90.84169 +108484,304.86,92.6902 +108485,301.15,87.2892 +108486,301.88,89.05634 +108487,302.65,90.86533 +108488,303.47,92.7215 +108489,299.86,87.2977 +108490,300.56,89.07234 +108491,301.29,90.88848 +108492,302.07,92.7514 +108493,298.57,87.3076 +108494,299.23,89.08877 +108495,299.93,90.91113 +108496,300.68,92.7798 +108497,297.28,87.3188 +108498,297.91,89.10563 +108499,298.57,90.93327 +108500,299.28,92.8068 +108501,295.99,87.3314 +108502,296.58,89.12293 +108503,297.21,90.95492 +108504,297.88,92.8323 +108505,294.7,87.3453 +108506,295.25,89.14066 +108507,295.85,90.97605 +108508,296.49,92.8563 +108509,293.41,87.3606 +108510,293.93,89.15882 +108511,294.49,90.99669 +108512,295.09,92.8789 +108513,292.12,87.3772 +108514,292.6,89.17742 +108515,293.13,91.0168 +108516,293.69,92.9 +108517,290.83,87.3952 +108518,291.28,89.19646 +108519,291.76,91.0364 +108520,292.29,92.9196 +108521,289.54,87.4145 +108522,289.95,89.21594 +108523,290.4,91.0555 +108524,290.89,92.9377 +108525,288.25,87.4353 +108526,288.63,89.23585 +108527,289.04,91.0741 +108528,289.49,92.9543 +108529,286.97,87.4574 +108530,287.3,89.25621 +108531,287.68,91.0922 +108532,288.09,92.9695 +108533,285.68,87.4808 +108534,285.98,89.277 +108535,286.32,91.1098 +108536,286.69,92.9832 +108537,284.39,87.5057 +108538,284.66,89.29823 +108539,284.96,91.1269 +108540,285.29,92.9955 +108541,283.1,87.5318 +108542,283.33,89.31989 +108543,283.59,91.1435 +108544,283.89,93.0062 +108545,281.81,87.5594 +108546,282.01,89.34199 +108547,282.23,91.1596 +108548,282.49,93.0155 +108549,280.53,87.5883 +108550,280.68,89.36452 +108551,280.87,91.1751 +108552,281.09,93.0234 +108553,279.24,87.6186 +108554,279.36,89.38749 +108555,279.51,91.1902 +108556,279.69,93.0298 +108557,277.95,87.6502 +108558,278.03,89.41089 +108559,278.14,91.2048 +108560,278.29,93.0347 +108561,276.66,87.6832 +108562,276.71,89.43472 +108563,276.78,91.2188 +108564,276.89,93.0383 +108565,275.37,87.7175 +108566,275.38,89.45897 +108567,275.42,91.2324 +108568,275.49,93.0403 +108569,274.09,87.7532 +108570,274.06,89.48365 +108571,274.06,91.2455 +108572,274.09,93.041 +108573,272.8,87.7901 +108574,272.73,89.50875 +108575,272.69,91.258 +108576,272.69,93.0403 +108577,271.51,87.8284 +108578,271.41,89.53427 +108579,271.33,91.2701 +108580,271.28,93.0381 +108581,270.22,87.8681 +108582,270.08,89.5602 +108583,269.97,91.2818 +108584,269.88,93.0346 +108585,268.93,87.909 +108586,268.76,89.58655 +108587,268.61,91.2929 +108588,268.48,93.0297 +108589,267.65,87.9512 +108590,267.43,89.61331 +108591,267.24,91.3035 +108592,267.08,93.0235 +108593,266.36,87.9947 +108594,266.11,89.64047 +108595,265.88,91.3137 +108596,265.68,93.0159 +108597,265.07,88.0395 +108598,264.78,89.66803 +108599,264.52,91.3234 +108600,264.28,93.0069 +108601,263.78,88.0855 +108602,263.45,89.69599 +108603,263.16,91.3327 +108604,262.88,92.9966 +108605,262.49,88.1328 +108606,262.13,89.72434 +108607,261.79,91.3414 +108608,261.48,92.9851 +108609,261.2,88.1813 +108610,260.8,89.75308 +108611,260.43,91.3498 +108612,260.08,92.9722 +108613,259.91,88.231 +108614,259.48,89.7822 +108615,259.07,91.3577 +108616,258.68,92.9581 +108617,258.62,88.282 +108618,258.15,89.8117 +108619,257.71,91.3651 +108620,257.28,92.9427 +108621,257.32,88.3341 +108622,256.82,89.84157 +108623,256.34,91.3721 +108624,255.89,92.926 +108625,256.03,88.3875 +108626,255.5,89.87181 +108627,254.98,91.3786 +108628,254.49,92.9082 +108629,254.74,88.4419 +108630,254.17,89.902404 +108631,253.62,91.3848 +108632,253.09,92.8891 +108633,253.45,88.4976 +108634,252.84,89.933357 +108635,252.26,91.3905 +108636,251.69,92.8689 +108637,252.15,88.5543 +108638,251.52,89.964658 +108639,250.9,91.3957 +108640,250.3,92.8475 +108641,250.86,88.6122 +108642,250.19,89.9963008 +108643,249.54,91.4006 +108644,248.9,92.8249 +108645,249.57,88.6711 +108646,248.86,90.028279 +108647,248.17,91.4051 +108648,247.51,92.8013 +108649,248.27,88.7311 +108650,247.53,90.060586 +108651,246.81,91.4092 +108652,246.11,92.7765 +108653,246.97,88.7922 +108654,246.2,90.093215 +108655,245.45,91.4129 +108656,244.72,92.7507 +108657,245.68,88.8543 +108658,244.88,90.12616 +108659,244.09,91.4162 +108660,243.32,92.7238 +108661,244.38,88.9174 +108662,243.55,90.15941 +108663,242.73,91.4191 +108664,241.93,92.6959 +108665,243.08,88.9815 +108666,242.22,90.19296 +108667,241.37,91.4217 +108668,240.54,92.6669 +108669,241.78,89.04658 +108670,240.89,90.2268 +108671,240.01,91.4239 +108672,239.15,92.637 +108673,240.48,89.11258 +108674,239.56,90.26092 +108675,238.65,91.4257 +108676,237.76,92.6062 +108677,239.18,89.1795 +108678,238.23,90.29532 +108679,237.29,91.4272 +108680,236.37,92.5744 +108681,237.88,89.24731 +108682,236.9,90.32999 +108683,235.93,91.4284 +108684,234.98,92.5416 +108685,236.58,89.316 +108686,235.57,90.36492 +108687,234.57,91.4293 +108688,233.59,92.5081 +108689,235.28,89.38553 +108690,234.24,90.40009 +108691,233.21,91.4298 +108692,232.2,92.4736 +108693,233.98,89.45588 +108694,232.91,90.43551 +108695,231.85,91.43 +108696,230.81,92.4383 +108697,232.67,89.52702 +108698,231.58,90.47117 +108699,230.5,91.4299 +108700,229.43,92.4023 +108701,231.37,89.59893 +108702,230.24,90.50704 +108703,229.14,91.4296 +108704,228.04,92.3654 +108705,230.06,89.67158 +108706,228.91,90.54313 +108707,227.78,91.4289 +108708,226.66,92.3278 +108709,228.75,89.74495 +108710,227.58,90.57942 +108711,226.42,91.428 +108712,225.28,92.2895 +108713,227.44,89.819 +108714,226.25,90.61592 +108715,225.06,91.4268 +108716,223.89,92.2505 +108717,226.13,89.89371 +108718,224.91,90.65259 +108719,223.71,91.4254 +108720,222.51,92.2108 +108721,224.82,89.969045 +108722,223.58,90.68944 +108723,222.35,91.4237 +108724,221.13,92.1705 +108725,223.51,90.044983 +108726,222.25,90.72646 +108727,220.99,91.4217 +108728,219.75,92.1296 +108729,222.2,90.12149 +108730,220.91,90.76364 +108731,219.64,91.4196 +108732,218.38,92.0882 +108733,220.89,90.19854 +108734,219.58,90.80096 +108735,218.28,91.4172 +108736,217,92.0462 +108737,219.57,90.2761 +108738,218.24,90.83842 +108739,216.93,91.4146 +108740,215.62,92.0036 +108741,218.26,90.35415 +108742,216.91,90.87601 +108743,215.57,91.4119 +108744,214.25,91.9606 +108745,216.94,90.43264 +108746,215.57,90.91371 +108747,214.22,91.4089 +108748,212.87,91.9171 +108749,215.62,90.51155 +108750,214.24,90.95151 +108751,212.86,91.4058 +108752,211.5,91.8733 +108753,214.3,90.59085 +108754,212.9,90.98941 +108755,211.51,91.4025 +108756,210.13,91.829 +108757,212.98,90.67051 +108758,211.56,91.0274 +108759,210.15,91.399 +108760,208.76,91.7843 +108761,211.66,90.75049 +108762,210.22,91.0655 +108763,208.8,91.3954 +108764,207.39,91.7394 +108765,210.34,90.83076 +108766,208.89,91.1036 +108767,207.45,91.3917 +108768,206.02,91.6941 +108769,209.02,90.9113 +108770,207.55,91.1417 +108771,206.09,91.3879 +108772,204.65,91.6486 +108773,207.69,90.99206 +108774,206.21,91.18 +108775,204.74,91.3839 +108776,203.29,91.6028 +108777,206.37,91.073 +108778,204.87,91.2182 +108779,203.39,91.3798 +108780,201.92,91.5568 +108781,205.04,91.1541 +108782,203.53,91.2565 +108783,202.04,91.3757 +108784,200.56,91.5107 +108785,203.71,91.2354 +108786,202.19,91.2947 +108787,200.69,91.3714 +108788,199.2,91.4644 +108789,202.38,91.3167 +108790,200.85,91.333 +108791,199.34,91.3671 +108792,197.84,91.418 +108793,201.05,91.3981 +108794,199.51,91.3713 +108795,197.98,91.3627 +108796,196.48,91.3715 +108797,199.72,91.4795 +108798,198.17,91.4095 +108799,196.63,91.3583 +108800,195.12,91.3249 +108801,198.38,91.561 +108802,196.83,91.4477 +108803,195.28,91.3539 +108804,193.76,91.2784 +108805,197.05,91.6423 +108806,195.48,91.4858 +108807,193.93,91.3494 +108808,192.4,91.2318 +108809,195.71,91.7237 +108810,194.14,91.5239 +108811,192.59,91.3449 +108812,191.05,91.1854 +108813,194.38,91.8049 +108814,192.8,91.5619 +108815,191.24,91.3404 +108816,189.69,91.139 +108817,193.04,91.8859 +108818,191.45,91.5998 +108819,189.89,91.3358 +108820,188.34,91.0927 +108821,191.7,91.9668 +108822,190.11,91.6377 +108823,188.54,91.3314 +108824,186.99,91.0465 +108825,190.36,92.0475 +108826,188.77,91.6754 +108827,187.19,91.3269 +108828,185.64,91.0005 +108829,189.02,92.1279 +108830,187.42,91.713 +108831,185.85,91.3225 +108832,184.29,90.95472 +108833,187.67,92.2081 +108834,186.08,91.7505 +108835,184.5,91.3181 +108836,182.94,90.90917 +108837,186.33,92.2879 +108838,184.73,91.7879 +108839,183.15,91.3137 +108840,181.6,90.86389 +108841,184.98,92.3675 +108842,183.38,91.8251 +108843,181.81,91.3095 +108844,180.25,90.8189 +108845,183.63,92.4466 +108846,182.04,91.8622 +108847,180.46,91.3053 +108848,178.91,90.77423 +108849,182.28,92.5253 +108850,180.69,91.899 +108851,179.12,91.3012 +108852,177.56,90.72992 +108853,180.93,92.6036 +108854,179.34,91.9357 +108855,177.77,91.2972 +108856,176.22,90.686 +108857,179.58,92.6814 +108858,177.99,91.9723 +108859,176.43,91.2933 +108860,174.88,90.64249 +108861,178.23,92.7586 +108862,176.64,92.0086 +108863,175.08,91.2895 +108864,173.54,90.59943 +108865,176.88,92.8354 +108866,175.3,92.0447 +108867,173.74,91.2859 +108868,172.21,90.55684 +108869,175.52,92.9115 +108870,173.95,92.0805 +108871,172.4,91.2824 +108872,170.87,90.51476 +108873,174.17,92.9871 +108874,172.6,92.1162 +108875,171.05,91.279 +108876,169.53,90.4732 +108877,172.81,93.062 +108878,171.25,92.1516 +108879,169.71,91.2759 +108880,168.2,90.43221 +108881,171.45,93.1363 +108882,169.89,92.1867 +108883,168.37,91.2728 +108884,166.87,90.39181 +108885,170.09,93.2098 +108886,168.54,92.2216 +108887,167.03,91.27 +108888,165.53,90.35203 +108889,168.73,93.2826 +108890,167.19,92.2562 +108891,165.68,91.2673 +108892,164.2,90.31289 +108893,167.36,93.3546 +108894,165.84,92.2905 +108895,164.34,91.2649 +108896,162.87,90.27443 +108897,166,93.4259 +108898,164.49,92.3245 +108899,163,91.2626 +108900,161.54,90.23666 +108901,164.64,93.4963 +108902,163.13,92.3583 +108903,161.66,91.2605 +108904,160.22,90.19962 +108905,163.27,93.5658 +108906,161.78,92.3917 +108907,160.32,91.2587 +108908,158.89,90.16333 +108909,161.9,93.6345 +108910,160.43,92.4248 +108911,158.98,91.2571 +108912,157.57,90.12782 +108913,160.53,93.7022 +108914,159.07,92.4575 +108915,157.64,91.2558 +108916,156.24,90.093119 +108917,159.16,93.769 +108918,157.72,92.4899 +108919,156.3,91.2547 +108920,154.92,90.059243 +108921,157.79,93.8349 +108922,156.36,92.522 +108923,154.97,91.2539 +108924,153.6,90.026221 +108925,156.42,93.8997 +108926,155.01,92.5537 +108927,153.63,91.2533 +108928,152.28,89.9940767 +108929,155.05,93.9635 +108930,153.65,92.585 +108931,152.29,91.253 +108932,150.96,89.962834 +108933,153.67,94.0262 +108934,152.29,92.616 +108935,150.95,91.253 +108936,149.64,89.932517 +108937,152.3,94.0879 +108938,150.94,92.6465 +108939,149.61,91.2532 +108940,148.32,89.903147 +108941,150.92,94.1484 +108942,149.58,92.6767 +108943,148.28,91.2538 +108944,147,89.87475 +108945,149.54,94.2079 +108946,148.22,92.7065 +108947,146.94,91.2547 +108948,145.69,89.84734 +108949,148.16,94.2661 +108950,146.87,92.7358 +108951,145.6,91.2559 +108952,144.37,89.82095 +108953,146.78,94.3232 +108954,145.51,92.7648 +108955,144.27,91.2574 +108956,143.06,89.79559 +108957,145.4,94.3791 +108958,144.15,92.7933 +108959,142.93,91.2593 +108960,141.74,89.77129 +108961,144.02,94.4338 +108962,142.79,92.8214 +108963,141.6,91.2614 +108964,140.43,89.74806 +108965,142.64,94.4872 +108966,141.43,92.849 +108967,140.26,91.264 +108968,139.12,89.72593 +108969,141.25,94.5393 +108970,140.07,92.8763 +108971,138.93,91.2668 +108972,137.81,89.70492 +108973,139.87,94.5902 +108974,138.71,92.903 +108975,137.59,91.27 +108976,136.5,89.68503 +108977,138.48,94.6397 +108978,137.35,92.9293 +108979,136.26,91.2736 +108980,135.19,89.66629 +108981,137.1,94.6879 +108982,135.99,92.9551 +108983,134.92,91.2776 +108984,133.88,89.64872 +108985,135.71,94.7348 +108986,134.63,92.9805 +108987,133.59,91.2819 +108988,132.58,89.63234 +108989,134.32,94.7803 +108990,133.27,93.0054 +108991,132.25,91.2866 +108992,131.27,89.61715 +108993,132.93,94.8244 +108994,131.91,93.0298 +108995,130.92,91.2916 +108996,129.96,89.60318 +108997,131.54,94.8671 +108998,130.55,93.0537 +108999,129.59,91.2971 +109000,128.66,89.59044 +109001,130.15,94.9084 +109002,129.18,93.0771 +109003,128.25,91.3029 +109004,127.35,89.57895 +109005,128.76,94.9482 +109006,127.82,93.1 +109007,126.92,91.3092 +109008,126.05,89.56871 +109009,127.37,94.9866 +109010,126.46,93.1224 +109011,125.59,91.3158 +109012,124.75,89.55974 +109013,125.97,95.0236 +109014,125.1,93.1444 +109015,124.25,91.3229 +109016,123.44,89.55205 +109017,124.58,95.0591 +109018,123.73,93.1658 +109019,122.92,91.3303 +109020,122.14,89.54566 +109021,123.18,95.0931 +109022,122.37,93.1866 +109023,121.59,91.3382 +109024,120.84,89.54058 +109025,121.79,95.1256 +109026,121.01,93.207 +109027,120.26,91.3465 +109028,119.54,89.53681 +109029,120.39,95.1566 +109030,119.64,93.2268 +109031,118.93,91.3552 +109032,118.24,89.53437 +109033,119,95.186 +109034,118.28,93.2462 +109035,117.59,91.3643 +109036,116.94,89.53326 +109037,117.6,95.214 +109038,116.91,93.265 +109039,116.26,91.3738 +109040,115.64,89.5335 +109041,116.2,95.2404 +109042,115.55,93.2832 +109043,114.93,91.3838 +109044,114.34,89.53509 +109045,114.81,95.2653 +109046,114.18,93.3009 +109047,113.6,91.3942 +109048,113.04,89.53804 +109049,113.41,95.2887 +109050,112.82,93.3181 +109051,112.27,91.405 +109052,111.74,89.54235 +109053,112.01,95.3105 +109054,111.46,93.3348 +109055,110.94,91.4163 +109056,110.45,89.54804 +109057,110.61,95.3307 +109058,110.09,93.3509 +109059,109.61,91.428 +109060,109.15,89.5551 +109061,109.21,95.3494 +109062,108.73,93.3665 +109063,108.27,91.4401 +109064,107.85,89.56354 +109065,107.81,95.3665 +109066,107.36,93.3815 +109067,106.94,91.4527 +109068,106.55,89.57337 +109069,106.41,95.3821 +109070,105.99,93.396 +109071,105.61,91.4657 +109072,105.26,89.58458 +109073,105.01,95.3961 +109074,104.63,93.4099 +109075,104.28,91.4791 +109076,103.96,89.59718 +109077,103.61,95.4085 +109078,103.26,93.4233 +109079,102.95,91.493 +109080,102.66,89.61118 +109081,102.2,95.4194 +109082,101.9,93.4362 +109083,101.62,91.5073 +109084,101.37,89.62656 +109085,100.8,95.4287 +109086,100.53,93.4485 +109087,100.29,91.5221 +109088,100.07,89.64334 +109089,99.402,95.4365 +109090,99.165,93.4603 +109091,98.958,91.5373 +109092,98.777,89.66151 +109093,98,95.4427 +109094,97.799,93.4715 +109095,97.628,91.5529 +109096,97.481,89.68107 +109097,96.598,95.4473 +109098,96.433,93.4822 +109099,96.297,91.569 +109100,96.185,89.70202 +109101,95.196,95.4504 +109102,95.067,93.4923 +109103,94.966,91.5855 +109104,94.889,89.72436 +109105,93.793,95.452 +109106,93.701,93.5019 +109107,93.635,91.6024 +109108,93.593,89.74808 +109109,92.391,95.452 +109110,92.335,93.511 +109111,92.304,91.6198 +109112,92.297,89.77318 +109113,90.989,95.4505 +109114,90.968,93.5196 +109115,90.973,91.6376 +109116,91.001,89.79965 +109117,89.587,95.4475 +109118,89.602,93.5276 +109119,89.643,91.6558 +109120,89.705,89.82749 +109121,88.184,95.4429 +109122,88.236,93.535 +109123,88.312,91.6745 +109124,88.409,89.85669 +109125,86.782,95.4369 +109126,86.87,93.542 +109127,86.981,91.6936 +109128,87.113,89.88725 +109129,85.38,95.4294 +109130,85.503,93.5484 +109131,85.649,91.7131 +109132,85.816,89.919164 +109133,83.978,95.4204 +109134,84.137,93.5543 +109135,84.318,91.733 +109136,84.519,89.952414 +109137,82.577,95.4099 +109138,82.771,93.5596 +109139,82.987,91.7533 +109140,83.223,89.986996 +109141,81.175,95.3979 +109142,81.405,93.5645 +109143,81.656,91.7741 +109144,81.925,90.0229 +109145,79.774,95.3846 +109146,80.039,93.5689 +109147,80.324,91.7952 +109148,80.628,90.060116 +109149,78.373,95.3698 +109150,78.673,93.5727 +109151,78.992,91.8168 +109152,79.33,90.098633 +109153,76.972,95.3535 +109154,77.307,93.576 +109155,77.661,91.8387 +109156,78.032,90.13844 +109157,75.572,95.3359 +109158,75.941,93.5789 +109159,76.329,91.8611 +109160,76.734,90.17952 +109161,74.172,95.3169 +109162,74.575,93.5812 +109163,74.997,91.8838 +109164,75.435,90.22187 +109165,72.772,95.2966 +109166,73.209,93.5831 +109167,73.664,91.9069 +109168,74.135,90.26547 +109169,71.373,95.2749 +109170,71.844,93.5845 +109171,72.332,91.9304 +109172,72.836,90.31031 +109173,69.974,95.2518 +109174,70.478,93.5854 +109175,70.999,91.9543 +109176,71.536,90.35636 +109177,68.575,95.2275 +109178,69.113,93.5858 +109179,69.667,91.9785 +109180,70.235,90.40363 +109181,67.177,95.2019 +109182,67.748,93.5858 +109183,68.334,92.0031 +109184,68.934,90.45208 +109185,65.78,95.175 +109186,66.383,93.5853 +109187,67.001,92.0281 +109188,67.632,90.50171 +109189,64.383,95.1468 +109190,65.018,93.5843 +109191,65.667,92.0534 +109192,66.33,90.55249 +109193,62.986,95.1175 +109194,63.653,93.583 +109195,64.334,92.079 +109196,65.027,90.60441 +109197,61.591,95.0869 +109198,62.289,93.5811 +109199,63,92.105 +109200,63.723,90.65745 +109201,60.195,95.0551 +109202,60.924,93.5789 +109203,61.666,92.1313 +109204,62.419,90.71159 +109205,58.801,95.0222 +109206,59.56,93.5762 +109207,60.332,92.158 +109208,61.114,90.76681 +109209,57.407,94.9881 +109210,58.196,93.5731 +109211,58.997,92.185 +109212,59.809,90.82309 +109213,56.014,94.953 +109214,56.832,93.5696 +109215,57.662,92.2122 +109216,58.503,90.88041 +109217,54.621,94.9167 +109218,55.469,93.5657 +109219,56.327,92.2398 +109220,57.196,90.93875 +109221,53.23,94.8794 +109222,54.106,93.5613 +109223,54.992,92.2677 +109224,55.888,90.99808 +109225,51.839,94.8411 +109226,52.742,93.5567 +109227,53.657,92.2958 +109228,54.58,91.0584 +109229,50.448,94.8017 +109230,51.38,93.5516 +109231,52.321,92.3242 +109232,53.271,91.1196 +109233,49.059,94.7614 +109234,50.017,93.5461 +109235,50.985,92.3529 +109236,51.961,91.1818 +109237,47.67,94.7201 +109238,48.655,93.5403 +109239,49.648,92.3819 +109240,50.65,91.2449 +109241,46.282,94.6779 +109242,47.292,93.5342 +109243,48.311,92.4111 +109244,49.338,91.3088 +109245,44.896,94.6348 +109246,45.931,93.5277 +109247,46.974,92.4406 +109248,48.026,91.3737 +109249,43.51,94.5908 +109250,44.569,93.5209 +109251,45.637,92.4703 +109252,46.712,91.4393 +109253,42.124,94.5459 +109254,43.208,93.5137 +109255,44.299,92.5002 +109256,45.398,91.5057 +109257,40.74,94.5003 +109258,41.847,93.5063 +109259,42.961,92.5303 +109260,44.082,91.5729 +109261,39.357,94.4539 +109262,40.486,93.4985 +109263,41.623,92.5606 +109264,42.766,91.6409 +109265,37.975,94.4067 +109266,39.125,93.4904 +109267,40.284,92.5912 +109268,41.449,91.7095 +109269,36.593,94.3588 +109270,37.765,93.4821 +109271,38.945,92.6219 +109272,40.131,91.7789 +109273,35.213,94.3102 +109274,36.405,93.4734 +109275,37.606,92.6528 +109276,38.812,91.8489 +109277,33.833,94.2609 +109278,35.046,93.4645 +109279,36.266,92.6838 +109280,37.492,91.9196 +109281,32.455,94.211 +109282,33.687,93.4554 +109283,34.926,92.7151 +109284,36.17,91.9908 +109285,31.078,94.1606 +109286,32.328,93.446 +109287,33.585,92.7464 +109288,34.848,92.0627 +109289,29.701,94.1095 +109290,30.969,93.4363 +109291,32.244,92.7779 +109292,33.525,92.135 +109293,28.326,94.0579 +109294,29.611,93.4265 +109295,30.903,92.8096 +109296,32.201,92.2079 +109297,26.952,94.0058 +109298,28.253,93.4164 +109299,29.561,92.8413 +109300,30.875,92.2813 +109301,25.579,93.9532 +109302,26.896,93.4061 +109303,28.219,92.8732 +109304,29.549,92.3551 +109305,24.207,93.9002 +109306,25.538,93.3957 +109307,26.877,92.9051 +109308,28.221,92.4293 +109309,22.836,93.8468 +109310,24.182,93.385 +109311,25.534,92.9372 +109312,26.892,92.5039 +109313,21.466,93.793 +109314,22.825,93.3742 +109315,24.191,92.9693 +109316,25.562,92.5789 +109317,20.098,93.7388 +109318,21.469,93.3632 +109319,22.847,93.0014 +109320,24.231,92.6542 +109321,18.73,93.6843 +109322,20.113,93.3521 +109323,21.503,93.0337 +109324,22.899,92.7298 +109325,17.364,93.6296 +109326,18.758,93.3408 +109327,20.159,93.0659 +109328,21.566,92.8057 +109329,15.999,93.5746 +109330,17.403,93.3294 +109331,18.814,93.0982 +109332,20.231,92.8818 +109333,14.635,93.5194 +109334,16.048,93.3179 +109335,17.469,93.1305 +109336,18.896,92.958 +109337,13.272,93.464 +109338,14.694,93.3062 +109339,16.123,93.1628 +109340,17.559,93.0345 +109341,11.91,93.4085 +109342,13.34,93.2945 +109343,14.777,93.1951 +109344,16.221,93.111 +109345,10.55,93.3528 +109346,11.986,93.2827 +109347,13.431,93.2274 +109348,14.882,93.1877 +109349,9.1901,93.2971 +109350,10.633,93.2708 +109351,12.084,93.2597 +109352,13.541,93.2644 +109353,7.832,93.2413 +109354,9.2799,93.2589 +109355,10.736,93.2919 +109356,12.2,93.3411 +109357,6.475,93.1855 +109358,7.9275,93.2469 +109359,9.3886,93.3241 +109360,10.857,93.4178 +109361,5.1192,93.1297 +109362,6.5754,93.2348 +109363,8.0405,93.3562 +109364,9.5131,93.4945 +109365,3.7646,93.074 +109366,5.2237,93.2228 +109367,6.6919,93.3883 +109368,8.1679,93.5711 +109369,2.4112,93.0184 +109370,3.8724,93.2107 +109371,5.3429,93.4202 +109372,6.8215,93.6476 +109373,1.059,92.9628 +109374,2.5214,93.1986 +109375,3.9934,93.4521 +109376,5.4739,93.7239 +109377,359.71,92.9074 +109378,1.1709,93.1865 +109379,2.6436,93.4838 +109380,4.125,93.8001 +109381,358.36,92.8522 +109382,359.82,93.1744 +109383,1.2933,93.5155 +109384,2.7749,93.8761 +109385,357.01,92.7972 +109386,358.47,93.1624 +109387,359.94,93.547 +109388,1.4236,93.9517 +109389,355.66,92.7424 +109390,357.12,93.1504 +109391,358.59,93.5784 +109392,0.071118,94.0272 +109393,354.32,92.6879 +109394,355.77,93.1384 +109395,357.24,93.6096 +109396,358.72,94.1022 +109397,352.97,92.6338 +109398,354.42,93.1265 +109399,355.89,93.6406 +109400,357.36,94.177 +109401,351.63,92.5799 +109402,353.08,93.1147 +109403,354.54,93.6715 +109404,356.01,94.2513 +109405,350.28,92.5264 +109406,351.73,93.1029 +109407,353.18,93.7022 +109408,354.65,94.3253 +109409,348.94,92.4734 +109410,350.38,93.0912 +109411,351.83,93.7327 +109412,353.29,94.3987 +109413,347.6,92.4207 +109414,349.03,93.0797 +109415,350.48,93.763 +109416,351.93,94.4717 +109417,346.26,92.3685 +109418,347.69,93.0682 +109419,349.12,93.7931 +109420,350.57,94.5442 +109421,344.92,92.3168 +109422,346.34,93.0569 +109423,347.77,93.8229 +109424,349.21,94.6161 +109425,343.59,92.2656 +109426,344.99,93.0457 +109427,346.41,93.8525 +109428,347.84,94.6874 +109429,342.25,92.215 +109430,343.65,93.0346 +109431,345.06,93.8818 +109432,346.48,94.7581 +109433,340.92,92.1649 +109434,342.3,93.0237 +109435,343.7,93.9109 +109436,345.11,94.8281 +109437,339.58,92.1155 +109438,340.96,93.013 +109439,342.35,93.9397 +109440,343.75,94.8975 +109441,338.25,92.0667 +109442,339.61,93.0024 +109443,340.99,93.9683 +109444,342.38,94.9661 +109445,336.92,92.0185 +109446,338.27,92.992 +109447,339.63,93.9965 +109448,341.01,95.034 +109449,335.59,91.9711 +109450,336.92,92.9818 +109451,338.27,94.0245 +109452,339.64,95.1011 +109453,334.26,91.9243 +109454,335.58,92.9718 +109455,336.92,94.0521 +109456,338.27,95.1673 +109457,332.93,91.8783 +109458,334.24,92.962 +109459,335.56,94.0794 +109460,336.9,95.2328 +109461,331.6,91.8331 +109462,332.9,92.9525 +109463,334.2,94.1063 +109464,335.52,95.2973 +109465,330.28,91.7887 +109466,331.55,92.9431 +109467,332.84,94.133 +109468,334.15,95.3609 +109469,328.95,91.7451 +109470,330.21,92.934 +109471,331.48,94.1592 +109472,332.77,95.4237 +109473,327.63,91.7024 +109474,328.87,92.9252 +109475,330.12,94.1852 +109476,331.39,95.4854 +109477,326.31,91.6605 +109478,327.53,92.9166 +109479,328.76,94.2107 +109480,330.02,95.5461 +109481,324.98,91.6195 +109482,326.19,92.9082 +109483,327.4,94.2359 +109484,328.64,95.6058 +109485,323.66,91.5795 +109486,324.84,92.9002 +109487,326.04,94.2606 +109488,327.26,95.6645 +109489,322.34,91.5404 +109490,323.5,92.8924 +109491,324.68,94.285 +109492,325.88,95.7221 +109493,321.02,91.5023 +109494,322.16,92.8849 +109495,323.32,94.309 +109496,324.49,95.7786 +109497,319.7,91.4651 +109498,320.82,92.8777 +109499,321.96,94.3325 +109500,323.11,95.8339 +109501,318.39,91.429 +109502,319.48,92.8708 +109503,320.6,94.3557 +109504,321.73,95.8881 +109505,317.07,91.3939 +109506,318.14,92.8642 +109507,319.23,94.3784 +109508,320.34,95.9411 +109509,315.75,91.3599 +109510,316.8,92.8579 +109511,317.87,94.4006 +109512,318.96,95.9928 +109513,314.44,91.327 +109514,315.47,92.852 +109515,316.51,94.4224 +109516,317.57,96.0434 +109517,313.12,91.2951 +109518,314.13,92.8464 +109519,315.15,94.4438 +109520,316.18,96.0927 +109521,311.81,91.2644 +109522,312.79,92.8411 +109523,313.78,94.4647 +109524,314.79,96.1407 +109525,310.5,91.2348 +109526,311.45,92.8362 +109527,312.42,94.4851 +109528,313.41,96.1874 +109529,309.19,91.2064 +109530,310.11,92.8316 +109531,311.05,94.5051 +109532,312.02,96.2328 +109533,307.88,91.1791 +109534,308.77,92.8274 +109535,309.69,94.5246 +109536,310.62,96.2768 +109537,306.57,91.1531 +109538,307.44,92.8235 +109539,308.33,94.5436 +109540,309.23,96.3194 +109541,305.26,91.1282 +109542,306.1,92.82 +109543,306.96,94.5621 +109544,307.84,96.3607 +109545,303.95,91.1046 +109546,304.76,92.8169 +109547,305.6,94.5801 +109548,306.45,96.4006 +109549,302.64,91.0822 +109550,303.43,92.8142 +109551,304.23,94.5976 +109552,305.05,96.439 +109553,301.33,91.061 +109554,302.09,92.8118 +109555,302.86,94.6146 +109556,303.66,96.476 +109557,300.02,91.0411 +109558,300.75,92.8099 +109559,301.5,94.631 +109560,302.26,96.5115 +109561,298.72,91.0225 +109562,299.42,92.8083 +109563,300.13,94.647 +109564,300.87,96.5456 +109565,297.41,91.0052 +109566,298.08,92.8072 +109567,298.77,94.6624 +109568,299.47,96.5782 +109569,296.1,90.98919 +109570,296.74,92.8064 +109571,297.4,94.6773 +109572,298.08,96.6093 +109573,294.8,90.9745 +109574,295.41,92.8061 +109575,296.03,94.6917 +109576,296.68,96.6388 +109577,293.49,90.96113 +109578,294.07,92.8061 +109579,294.67,94.7055 +109580,295.28,96.6668 +109581,292.19,90.9491 +109582,292.74,92.8066 +109583,293.3,94.7188 +109584,293.88,96.6933 +109585,290.88,90.93842 +109586,291.4,92.8075 +109587,291.93,94.7315 +109588,292.48,96.7182 +109589,289.58,90.92909 +109590,290.07,92.8088 +109591,290.57,94.7437 +109592,291.08,96.7416 +109593,288.28,90.92113 +109594,288.73,92.8105 +109595,289.2,94.7553 +109596,289.68,96.7634 +109597,286.98,90.91453 +109598,287.4,92.8127 +109599,287.83,94.7664 +109600,288.28,96.7836 +109601,285.67,90.90932 +109602,286.06,92.8153 +109603,286.46,94.7769 +109604,286.88,96.8022 +109605,284.37,90.90549 +109606,284.73,92.8183 +109607,285.1,94.7869 +109608,285.48,96.8192 +109609,283.07,90.90304 +109610,283.39,92.8217 +109611,283.73,94.7963 +109612,284.08,96.8347 +109613,281.77,90.90199 +109614,282.06,92.8256 +109615,282.36,94.8051 +109616,282.68,96.8485 +109617,280.46,90.90234 +109618,280.72,92.8299 +109619,280.99,94.8134 +109620,281.28,96.8607 +109621,279.16,90.90409 +109622,279.39,92.8347 +109623,279.62,94.8211 +109624,279.88,96.8713 +109625,277.86,90.90725 +109626,278.05,92.8399 +109627,278.26,94.8282 +109628,278.47,96.8802 +109629,276.56,90.91181 +109630,276.72,92.8455 +109631,276.89,94.8348 +109632,277.07,96.8876 +109633,275.26,90.91777 +109634,275.38,92.8516 +109635,275.52,94.8408 +109636,275.67,96.8933 +109637,273.96,90.92515 +109638,274.05,92.8581 +109639,274.15,94.8462 +109640,274.27,96.8974 +109641,272.66,90.93393 +109642,272.71,92.865 +109643,272.78,94.8511 +109644,272.86,96.8999 +109645,271.36,90.94412 +109646,271.38,92.8724 +109647,271.41,94.8554 +109648,271.46,96.9008 +109649,270.06,90.95571 +109650,270.04,92.8802 +109651,270.04,94.8591 +109652,270.06,96.9 +109653,268.75,90.9687 +109654,268.71,92.8885 +109655,268.68,94.8623 +109656,268.65,96.8977 +109657,267.45,90.9831 +109658,267.38,92.8972 +109659,267.31,94.8649 +109660,267.25,96.8937 +109661,266.15,90.99889 +109662,266.04,92.9063 +109663,265.94,94.8669 +109664,265.85,96.8881 +109665,264.85,91.0161 +109666,264.71,92.9158 +109667,264.57,94.8684 +109668,264.45,96.881 +109669,263.55,91.0346 +109670,263.37,92.9258 +109671,263.2,94.8694 +109672,263.04,96.8722 +109673,262.25,91.0546 +109674,262.04,92.9362 +109675,261.83,94.8697 +109676,261.64,96.8619 +109677,260.95,91.0759 +109678,260.7,92.9471 +109679,260.47,94.8695 +109680,260.24,96.85 +109681,259.64,91.0986 +109682,259.37,92.9583 +109683,259.1,94.8688 +109684,258.84,96.8366 +109685,258.34,91.1227 +109686,258.03,92.97 +109687,257.73,94.8675 +109688,257.44,96.8215 +109689,257.04,91.1481 +109690,256.7,92.9821 +109691,256.36,94.8657 +109692,256.03,96.805 +109693,255.74,91.1748 +109694,255.36,92.9946 +109695,254.99,94.8633 +109696,254.63,96.7869 +109697,254.43,91.2029 +109698,254.03,93.0075 +109699,253.63,94.8604 +109700,253.23,96.7673 +109701,253.13,91.2323 +109702,252.69,93.0208 +109703,252.26,94.857 +109704,251.83,96.7462 +109705,251.83,91.263 +109706,251.35,93.0345 +109707,250.89,94.853 +109708,250.43,96.7237 +109709,250.52,91.295 +109710,250.02,93.0486 +109711,249.52,94.8485 +109712,249.03,96.6996 +109713,249.22,91.3283 +109714,248.68,93.0632 +109715,248.15,94.8435 +109716,247.63,96.6741 +109717,247.91,91.3628 +109718,247.35,93.0781 +109719,246.79,94.8379 +109720,246.23,96.6472 +109721,246.6,91.3987 +109722,246.01,93.0933 +109723,245.42,94.8319 +109724,244.84,96.6188 +109725,245.3,91.4357 +109726,244.67,93.109 +109727,244.05,94.8254 +109728,243.44,96.5891 +109729,243.99,91.474 +109730,243.34,93.125 +109731,242.69,94.8183 +109732,242.04,96.5579 +109733,242.68,91.5135 +109734,242,93.1414 +109735,241.32,94.8108 +109736,240.64,96.5254 +109737,241.38,91.5542 +109738,240.66,93.1582 +109739,239.95,94.8028 +109740,239.25,96.4915 +109741,240.07,91.5961 +109742,239.33,93.1753 +109743,238.59,94.7943 +109744,237.85,96.4564 +109745,238.76,91.6391 +109746,237.99,93.1928 +109747,237.22,94.7853 +109748,236.46,96.4199 +109749,237.45,91.6833 +109750,236.65,93.2106 +109751,235.86,94.7758 +109752,235.06,96.3821 +109753,236.14,91.7286 +109754,235.31,93.2287 +109755,234.49,94.7659 +109756,233.67,96.3431 +109757,234.83,91.7751 +109758,233.97,93.2472 +109759,233.12,94.7556 +109760,232.28,96.3028 +109761,233.51,91.8226 +109762,232.64,93.266 +109763,231.76,94.7448 +109764,230.88,96.2614 +109765,232.2,91.8711 +109766,231.3,93.2851 +109767,230.39,94.7336 +109768,229.49,96.2187 +109769,230.89,91.9207 +109770,229.96,93.3045 +109771,229.03,94.7219 +109772,228.1,96.1749 +109773,229.57,91.9714 +109774,228.62,93.3242 +109775,227.66,94.7098 +109776,226.71,96.13 +109777,228.26,92.023 +109778,227.28,93.3442 +109779,226.3,94.6973 +109780,225.32,96.084 +109781,226.94,92.0756 +109782,225.94,93.3645 +109783,224.94,94.6844 +109784,223.94,96.0368 +109785,225.63,92.1292 +109786,224.6,93.3851 +109787,223.57,94.6711 +109788,222.55,95.9887 +109789,224.31,92.1836 +109790,223.26,93.4059 +109791,222.21,94.6575 +109792,221.16,95.9395 +109793,222.99,92.239 +109794,221.92,93.427 +109795,220.85,94.6434 +109796,219.78,95.8893 +109797,221.67,92.2953 +109798,220.58,93.4484 +109799,219.48,94.629 +109800,218.39,95.8381 +109801,220.35,92.3524 +109802,219.24,93.4699 +109803,218.12,94.6142 +109804,217.01,95.786 +109805,219.03,92.4104 +109806,217.89,93.4917 +109807,216.76,94.599 +109808,215.62,95.733 +109809,217.71,92.4692 +109810,216.55,93.5138 +109811,215.4,94.5836 +109812,214.24,95.6791 +109813,216.38,92.5287 +109814,215.21,93.536 +109815,214.04,94.5678 +109816,212.86,95.6243 +109817,215.06,92.589 +109818,213.87,93.5585 +109819,212.67,94.5516 +109820,211.48,95.5688 +109821,213.73,92.65 +109822,212.52,93.5811 +109823,211.31,94.5352 +109824,210.1,95.5124 +109825,212.41,92.7117 +109826,211.18,93.604 +109827,209.95,94.5184 +109828,208.73,95.4553 +109829,211.08,92.7741 +109830,209.84,93.627 +109831,208.59,94.5014 +109832,207.35,95.3974 +109833,209.75,92.8371 +109834,208.49,93.6501 +109835,207.23,94.4841 +109836,205.97,95.3389 +109837,208.42,92.9007 +109838,207.15,93.6735 +109839,205.87,94.4665 +109840,204.6,95.2797 +109841,207.09,92.9649 +109842,205.8,93.6969 +109843,204.51,94.4486 +109844,203.22,95.2199 +109845,205.76,93.0296 +109846,204.46,93.7205 +109847,203.15,94.4305 +109848,201.85,95.1595 +109849,204.43,93.0948 +109850,203.11,93.7443 +109851,201.8,94.4122 +109852,200.48,95.0985 +109853,203.1,93.1606 +109854,201.77,93.7681 +109855,200.44,94.3936 +109856,199.11,95.037 +109857,201.76,93.2268 +109858,200.42,93.7921 +109859,199.08,94.3749 +109860,197.74,94.9749 +109861,200.43,93.2934 +109862,199.07,93.8161 +109863,197.72,94.3559 +109864,196.37,94.9125 +109865,199.09,93.3604 +109866,197.73,93.8402 +109867,196.37,94.3367 +109868,195,94.8495 +109869,197.75,93.4277 +109870,196.38,93.8644 +109871,195.01,94.3173 +109872,193.64,94.7862 +109873,196.41,93.4954 +109874,195.03,93.8887 +109875,193.65,94.2978 +109876,192.27,94.7226 +109877,195.07,93.5634 +109878,193.68,93.913 +109879,192.3,94.2781 +109880,190.91,94.6585 +109881,193.73,93.6317 +109882,192.34,93.9373 +109883,190.94,94.2582 +109884,189.55,94.5942 +109885,192.39,93.7002 +109886,190.99,93.9616 +109887,189.59,94.2382 +109888,188.19,94.5297 +109889,191.04,93.7689 +109890,189.64,93.986 +109891,188.23,94.2181 +109892,186.83,94.4649 +109893,189.7,93.8377 +109894,188.29,94.0104 +109895,186.88,94.1978 +109896,185.47,94.3999 +109897,188.35,93.9067 +109898,186.94,94.0348 +109899,185.52,94.1775 +109900,184.11,94.3347 +109901,187.01,93.9758 +109902,185.59,94.0591 +109903,184.17,94.1571 +109904,182.75,94.2694 +109905,185.66,94.0449 +109906,184.24,94.0834 +109907,182.82,94.1365 +109908,181.4,94.2041 +109909,184.31,94.1141 +109910,182.89,94.1077 +109911,181.46,94.1159 +109912,180.04,94.1386 +109913,182.96,94.1833 +109914,181.53,94.1319 +109915,180.11,94.0953 +109916,178.69,94.0732 +109917,181.61,94.2524 +109918,180.18,94.1561 +109919,178.76,94.0746 +109920,177.34,94.0077 +109921,180.25,94.3215 +109922,178.83,94.1802 +109923,177.41,94.0538 +109924,175.99,93.9423 +109925,178.9,94.3904 +109926,177.48,94.2042 +109927,176.06,94.033 +109928,174.64,93.877 +109929,177.54,94.4593 +109930,176.12,94.2281 +109931,174.71,94.0123 +109932,173.29,93.8117 +109933,176.19,94.5279 +109934,174.77,94.2519 +109935,173.35,93.9915 +109936,171.94,93.7467 +109937,174.83,94.5963 +109938,173.42,94.2755 +109939,172,93.9707 +109940,170.6,93.6817 +109941,173.47,94.6645 +109942,172.06,94.2991 +109943,170.66,93.9499 +109944,169.25,93.617 +109945,172.11,94.7324 +109946,170.71,94.3225 +109947,169.31,93.9292 +109948,167.91,93.5526 +109949,170.75,94.8001 +109950,169.35,94.3457 +109951,167.96,93.9085 +109952,166.57,93.4884 +109953,169.38,94.8673 +109954,168,94.3688 +109955,166.61,93.8878 +109956,165.22,93.4245 +109957,168.02,94.9342 +109958,166.64,94.3917 +109959,165.26,93.8673 +109960,163.88,93.3609 +109961,166.66,95.0007 +109962,165.28,94.4144 +109963,163.91,93.8468 +109964,162.54,93.2977 +109965,165.29,95.0667 +109966,163.93,94.4369 +109967,162.56,93.8263 +109968,161.21,93.235 +109969,163.92,95.1323 +109970,162.57,94.4592 +109971,161.22,93.806 +109972,159.87,93.1726 +109973,162.55,95.1973 +109974,161.21,94.4812 +109975,159.87,93.7858 +109976,158.53,93.1107 +109977,161.19,95.2618 +109978,159.85,94.5031 +109979,158.52,93.7657 +109980,157.2,93.0493 +109981,159.81,95.3257 +109982,158.5,94.5247 +109983,157.18,93.7457 +109984,155.87,92.9885 +109985,158.44,95.389 +109986,157.14,94.546 +109987,155.83,93.7258 +109988,154.53,92.9281 +109989,157.07,95.4516 +109990,155.78,94.5671 +109991,154.49,93.7061 +109992,153.2,92.8684 +109993,155.7,95.5136 +109994,154.42,94.5879 +109995,153.14,93.6866 +109996,151.87,92.8093 +109997,154.32,95.5749 +109998,153.06,94.6084 +109999,151.8,93.6672 +110000,150.54,92.7508 +110001,152.95,95.6354 +110002,151.7,94.6286 +110003,150.45,93.648 +110004,149.21,92.693 +110005,151.57,95.6951 +110006,150.34,94.6485 +110007,149.11,93.629 +110008,147.89,92.6359 +110009,150.19,95.7541 +110010,148.98,94.6681 +110011,147.77,93.6102 +110012,146.56,92.5795 +110013,148.81,95.8122 +110014,147.62,94.6874 +110015,146.42,93.5916 +110016,145.24,92.5239 +110017,147.43,95.8694 +110018,146.26,94.7063 +110019,145.08,93.5732 +110020,143.91,92.469 +110021,146.05,95.9257 +110022,144.89,94.7249 +110023,143.74,93.5551 +110024,142.59,92.415 +110025,144.67,95.9811 +110026,143.53,94.7431 +110027,142.4,93.5372 +110028,141.27,92.3618 +110029,143.29,96.0356 +110030,142.17,94.761 +110031,141.05,93.5195 +110032,139.94,92.3094 +110033,141.9,96.089 +110034,140.81,94.7784 +110035,139.71,93.502 +110036,138.62,92.258 +110037,140.52,96.1415 +110038,139.44,94.7956 +110039,138.37,93.4849 +110040,137.3,92.2074 +110041,139.13,96.1929 +110042,138.08,94.8123 +110043,137.03,93.468 +110044,135.99,92.1578 +110045,137.75,96.2432 +110046,136.72,94.8286 +110047,135.69,93.4513 +110048,134.67,92.1091 +110049,136.36,96.2925 +110050,135.35,94.8445 +110051,134.35,93.435 +110052,133.35,92.0614 +110053,134.97,96.3406 +110054,133.99,94.86 +110055,133.01,93.4189 +110056,132.03,92.0148 +110057,133.58,96.3875 +110058,132.62,94.875 +110059,131.67,93.4032 +110060,130.72,91.9691 +110061,132.19,96.4333 +110062,131.26,94.8896 +110063,130.33,93.3878 +110064,129.4,91.9245 +110065,130.8,96.4779 +110066,129.89,94.9038 +110067,128.99,93.3726 +110068,128.09,91.881 +110069,129.41,96.5212 +110070,128.53,94.9176 +110071,127.65,93.3579 +110072,126.78,91.8385 +110073,128.02,96.5633 +110074,127.16,94.9308 +110075,126.31,93.3434 +110076,125.47,91.7972 +110077,126.62,96.6042 +110078,125.8,94.9437 +110079,124.97,93.3293 +110080,124.15,91.757 +110081,125.23,96.6437 +110082,124.43,94.956 +110083,123.64,93.3155 +110084,122.84,91.7179 +110085,123.84,96.6819 +110086,123.07,94.9679 +110087,122.3,93.302 +110088,121.53,91.68 +110089,122.44,96.7188 +110090,121.7,94.9792 +110091,120.96,93.289 +110092,120.22,91.6433 +110093,121.04,96.7543 +110094,120.33,94.9901 +110095,119.62,93.2762 +110096,118.91,91.6078 +110097,119.65,96.7884 +110098,118.97,95.0005 +110099,118.29,93.2639 +110100,117.6,91.5735 +110101,118.25,96.8211 +110102,117.6,95.0104 +110103,116.95,93.2519 +110104,116.3,91.5404 +110105,116.85,96.8524 +110106,116.23,95.0198 +110107,115.61,93.2403 +110108,114.99,91.5086 +110109,115.46,96.8823 +110110,114.86,95.0286 +110111,114.27,93.2291 +110112,113.68,91.478 +110113,114.06,96.9107 +110114,113.5,95.037 +110115,112.94,93.2183 +110116,112.38,91.4487 +110117,112.66,96.9376 +110118,112.13,95.0448 +110119,111.6,93.2079 +110120,111.07,91.4207 +110121,111.26,96.963 +110122,110.76,95.0521 +110123,110.26,93.1978 +110124,109.77,91.394 +110125,109.86,96.987 +110126,109.39,95.0588 +110127,108.93,93.1882 +110128,108.46,91.3687 +110129,108.46,97.0094 +110130,108.03,95.0651 +110131,107.59,93.179 +110132,107.16,91.3446 +110133,107.06,97.0303 +110134,106.66,95.0707 +110135,106.26,93.1702 +110136,105.85,91.3219 +110137,105.66,97.0497 +110138,105.29,95.0759 +110139,104.92,93.1618 +110140,104.55,91.3005 +110141,104.26,97.0674 +110142,103.92,95.0804 +110143,103.58,93.1538 +110144,103.24,91.2805 +110145,102.86,97.0837 +110146,102.55,95.0845 +110147,102.25,93.1463 +110148,101.94,91.2618 +110149,101.45,97.0983 +110150,101.18,95.0879 +110151,100.91,93.1391 +110152,100.64,91.2445 +110153,100.05,97.1114 +110154,99.816,95.0908 +110155,99.577,93.1324 +110156,99.335,91.2286 +110157,98.65,97.1229 +110158,98.447,95.0932 +110159,98.241,93.1261 +110160,98.032,91.2141 +110161,97.248,97.1327 +110162,97.079,95.095 +110163,96.906,93.1203 +110164,96.73,91.2009 +110165,95.846,97.141 +110166,95.71,95.0962 +110167,95.571,93.1149 +110168,95.427,91.1892 +110169,94.443,97.1477 +110170,94.341,95.0968 +110171,94.235,93.1099 +110172,94.125,91.1788 +110173,93.04,97.1527 +110174,92.972,95.0969 +110175,92.9,93.1053 +110176,92.823,91.1699 +110177,91.638,97.1561 +110178,91.604,95.0964 +110179,91.565,93.1012 +110180,91.521,91.1623 +110181,90.235,97.1579 +110182,90.235,95.0954 +110183,90.229,93.0975 +110184,90.219,91.1562 +110185,88.832,97.158 +110186,88.866,95.0938 +110187,88.894,93.0943 +110188,88.918,91.1514 +110189,87.429,97.1566 +110190,87.497,95.0916 +110191,87.559,93.0915 +110192,87.616,91.1481 +110193,86.026,97.1534 +110194,86.128,95.0888 +110195,86.224,93.0891 +110196,86.314,91.1462 +110197,84.624,97.1487 +110198,84.76,95.0854 +110199,84.889,93.0872 +110200,85.012,91.1457 +110201,83.221,97.1423 +110202,83.391,95.0815 +110203,83.553,93.0857 +110204,83.71,91.1466 +110205,81.819,97.1343 +110206,82.022,95.077 +110207,82.218,93.0847 +110208,82.408,91.149 +110209,80.417,97.1247 +110210,80.654,95.072 +110211,80.883,93.084 +110212,81.105,91.1527 +110213,79.015,97.1135 +110214,79.285,95.0664 +110215,79.547,93.0839 +110216,79.803,91.1578 +110217,77.613,97.1006 +110218,77.916,95.0602 +110219,78.212,93.0841 +110220,78.5,91.1643 +110221,76.211,97.0862 +110222,76.548,95.0534 +110223,76.876,93.0848 +110224,77.197,91.1722 +110225,74.81,97.0701 +110226,75.18,95.0461 +110227,75.541,93.0859 +110228,75.894,91.1815 +110229,73.409,97.0524 +110230,73.812,95.0382 +110231,74.205,93.0874 +110232,74.591,91.1922 +110233,72.008,97.0332 +110234,72.444,95.0298 +110235,72.869,93.0894 +110236,73.287,91.2043 +110237,70.608,97.0124 +110238,71.076,95.0208 +110239,71.533,93.0918 +110240,71.983,91.2177 +110241,69.208,96.99 +110242,69.708,95.0113 +110243,70.197,93.0946 +110244,70.679,91.2325 +110245,67.809,96.966 +110246,68.34,95.0012 +110247,68.861,93.0978 +110248,69.374,91.2486 +110249,66.409,96.9405 +110250,66.973,94.9905 +110251,67.525,93.1015 +110252,68.069,91.2661 +110253,65.011,96.9135 +110254,65.605,94.9793 +110255,66.189,93.1055 +110256,66.763,91.2849 +110257,63.613,96.8849 +110258,64.238,94.9676 +110259,64.852,93.11 +110260,65.457,91.305 +110261,62.215,96.8549 +110262,62.871,94.9554 +110263,63.515,93.1148 +110264,64.151,91.3264 +110265,60.818,96.8233 +110266,61.504,94.9426 +110267,62.179,93.1201 +110268,62.844,91.3491 +110269,59.422,96.7903 +110270,60.137,94.9293 +110271,60.842,93.1257 +110272,61.536,91.3731 +110273,58.026,96.7558 +110274,58.771,94.9155 +110275,59.504,93.1318 +110276,60.228,91.3984 +110277,56.631,96.7199 +110278,57.405,94.9011 +110279,58.167,93.1382 +110280,58.92,91.4249 +110281,55.236,96.6825 +110282,56.039,94.8863 +110283,56.829,93.145 +110284,57.61,91.4527 +110285,53.842,96.6437 +110286,54.673,94.8709 +110287,55.492,93.1522 +110288,56.301,91.4817 +110289,52.449,96.6036 +110290,53.307,94.8551 +110291,54.154,93.1597 +110292,54.99,91.5119 +110293,51.057,96.5621 +110294,51.942,94.8388 +110295,52.815,93.1676 +110296,53.679,91.5433 +110297,49.665,96.5192 +110298,50.577,94.8219 +110299,51.477,93.1759 +110300,52.367,91.5759 +110301,48.274,96.475 +110302,49.212,94.8047 +110303,50.138,93.1845 +110304,51.054,91.6096 +110305,46.884,96.4296 +110306,47.848,94.7869 +110307,48.799,93.1934 +110308,49.741,91.6444 +110309,45.494,96.3828 +110310,46.483,94.7687 +110311,47.46,93.2027 +110312,48.427,91.6804 +110313,44.106,96.3348 +110314,45.119,94.75 +110315,46.121,93.2123 +110316,47.112,91.7175 +110317,42.718,96.2855 +110318,43.756,94.7309 +110319,44.781,93.2223 +110320,45.797,91.7557 +110321,41.331,96.2351 +110322,42.392,94.7113 +110323,43.441,93.2325 +110324,44.48,91.7949 +110325,39.945,96.1834 +110326,41.029,94.6913 +110327,42.101,93.2431 +110328,43.163,91.8352 +110329,38.56,96.1306 +110330,39.666,94.6709 +110331,40.761,93.254 +110332,41.845,91.8764 +110333,37.176,96.0767 +110334,38.304,94.65 +110335,39.42,93.2651 +110336,40.526,91.9187 +110337,35.793,96.0217 +110338,36.941,94.6288 +110339,38.079,93.2766 +110340,39.206,91.962 +110341,34.411,95.9656 +110342,35.58,94.6071 +110343,36.737,93.2883 +110344,37.885,92.0062 +110345,33.029,95.9084 +110346,34.218,94.5851 +110347,35.396,93.3003 +110348,36.563,92.0513 +110349,31.649,95.8502 +110350,32.857,94.5627 +110351,34.054,93.3125 +110352,35.241,92.0973 +110353,30.27,95.7911 +110354,31.496,94.5399 +110355,32.711,93.325 +110356,33.917,92.1442 +110357,28.891,95.731 +110358,30.135,94.5167 +110359,31.369,93.3378 +110360,32.592,92.192 +110361,27.514,95.6699 +110362,28.775,94.4932 +110363,30.026,93.3508 +110364,31.267,92.2405 +110365,26.138,95.6079 +110366,27.415,94.4694 +110367,28.683,93.364 +110368,29.94,92.2899 +110369,24.763,95.5451 +110370,26.056,94.4452 +110371,27.339,93.3774 +110372,28.613,92.3401 +110373,23.389,95.4815 +110374,24.697,94.4207 +110375,25.995,93.391 +110376,27.284,92.3909 +110377,22.016,95.417 +110378,23.338,94.3959 +110379,24.651,93.4049 +110380,25.954,92.4426 +110381,20.644,95.3517 +110382,21.98,94.3707 +110383,23.306,93.4189 +110384,24.623,92.4949 +110385,19.273,95.2857 +110386,20.622,94.3453 +110387,21.961,93.4331 +110388,23.292,92.5478 +110389,17.904,95.219 +110390,19.264,94.3196 +110391,20.616,93.4474 +110392,21.959,92.6014 +110393,16.535,95.1517 +110394,17.907,94.2936 +110395,19.27,93.4619 +110396,20.625,92.6556 +110397,15.168,95.0836 +110398,16.55,94.2674 +110399,17.924,93.4766 +110400,19.29,92.7104 +110401,13.802,95.015 +110402,15.194,94.2409 +110403,16.578,93.4914 +110404,17.953,92.7657 +110405,12.437,94.9457 +110406,13.838,94.2142 +110407,15.231,93.5063 +110408,16.616,92.8216 +110409,11.073,94.876 +110410,12.482,94.1872 +110411,13.884,93.5214 +110412,15.278,92.8779 +110413,9.7101,94.8057 +110414,11.127,94.16 +110415,12.537,93.5365 +110416,13.938,92.9347 +110417,8.3485,94.7349 +110418,9.7721,94.1326 +110419,11.189,93.5518 +110420,12.597,92.9919 +110421,6.9881,94.6637 +110422,8.4177,94.105 +110423,9.8405,93.5671 +110424,11.256,93.0495 +110425,5.629,94.5921 +110426,7.0637,94.0773 +110427,8.4919,93.5826 +110428,9.9125,93.1075 +110429,4.271,94.5201 +110430,5.71,94.0493 +110431,7.1429,93.598 +110432,8.5684,93.1658 +110433,2.9142,94.4477 +110434,4.3568,94.0212 +110435,5.7935,93.6136 +110436,7.223,93.2244 +110437,1.5586,94.375 +110438,3.004,93.9929 +110439,4.4438,93.6291 +110440,5.8765,93.2832 +110441,0.20414,94.3021 +110442,1.6517,93.9645 +110443,3.0936,93.6447 +110444,4.5288,93.3423 +110445,358.85,94.2289 +110446,0.29968,93.936 +110447,1.7431,93.6604 +110448,3.1799,93.4017 +110449,357.5,94.1555 +110450,358.95,93.9073 +110451,0.39224,93.676 +110452,1.8299,93.4611 +110453,356.15,94.082 +110454,357.6,93.8786 +110455,359.04,93.6916 +110456,0.47864,93.5208 +110457,354.8,94.0083 +110458,356.25,93.8497 +110459,357.69,93.7072 +110460,359.13,93.5805 +110461,353.45,93.9345 +110462,354.9,93.8208 +110463,356.34,93.7228 +110464,357.77,93.6403 +110465,352.1,93.8606 +110466,353.55,93.7918 +110467,354.98,93.7384 +110468,356.42,93.7001 +110469,350.76,93.7867 +110470,352.2,93.7627 +110471,353.63,93.7539 +110472,355.06,93.76 +110473,349.41,93.7128 +110474,350.85,93.7336 +110475,352.28,93.7694 +110476,353.7,93.8198 +110477,348.07,93.6389 +110478,349.5,93.7044 +110479,350.93,93.7847 +110480,352.35,93.8795 +110481,346.73,93.5651 +110482,348.15,93.6752 +110483,349.57,93.8 +110484,350.99,93.9392 +110485,345.38,93.4914 +110486,346.8,93.646 +110487,348.22,93.8153 +110488,349.63,93.9987 +110489,344.04,93.4179 +110490,345.46,93.6168 +110491,346.86,93.8304 +110492,348.26,94.0581 +110493,342.71,93.3445 +110494,344.11,93.5876 +110495,345.51,93.8454 +110496,346.9,94.1173 +110497,341.37,93.2713 +110498,342.76,93.5584 +110499,344.15,93.8602 +110500,345.54,94.1762 +110501,340.03,93.1983 +110502,341.42,93.5293 +110503,342.8,93.875 +110504,344.17,94.2349 +110505,338.7,93.1256 +110506,340.07,93.5002 +110507,341.44,93.8896 +110508,342.81,94.2934 +110509,337.36,93.0532 +110510,338.72,93.4711 +110511,340.08,93.904 +110512,341.44,94.3514 +110513,336.03,92.9812 +110514,337.38,93.4421 +110515,338.73,93.9183 +110516,340.07,94.4092 +110517,334.7,92.9095 +110518,336.03,93.4132 +110519,337.37,93.9323 +110520,338.7,94.4665 +110521,333.37,92.8382 +110522,334.69,93.3843 +110523,336.01,93.9462 +110524,337.33,94.5234 +110525,332.04,92.7673 +110526,333.35,93.3556 +110527,334.65,93.9599 +110528,335.96,94.5798 +110529,330.71,92.6969 +110530,332,93.3269 +110531,333.3,93.9734 +110532,334.58,94.6358 +110533,329.38,92.627 +110534,330.66,93.2984 +110535,331.94,93.9867 +110536,333.21,94.6912 +110537,328.05,92.5575 +110538,329.32,93.27 +110539,330.58,93.9997 +110540,331.83,94.7461 +110541,326.73,92.4887 +110542,327.97,93.2417 +110543,329.22,94.0124 +110544,330.46,94.8004 +110545,325.4,92.4204 +110546,326.63,93.2136 +110547,327.86,94.025 +110548,329.08,94.854 +110549,324.08,92.3528 +110550,325.29,93.1857 +110551,326.5,94.0372 +110552,327.7,94.9071 +110553,322.76,92.2858 +110554,323.95,93.1579 +110555,325.14,94.0492 +110556,326.32,94.9594 +110557,321.43,92.2194 +110558,322.61,93.1303 +110559,323.78,94.0609 +110560,324.94,95.011 +110561,320.11,92.1538 +110562,321.27,93.1029 +110563,322.42,94.0723 +110564,323.56,95.0619 +110565,318.79,92.0888 +110566,319.93,93.0756 +110567,321.06,94.0834 +110568,322.18,95.112 +110569,317.48,92.0247 +110570,318.59,93.0486 +110571,319.69,94.0942 +110572,320.8,95.1613 +110573,316.16,91.9613 +110574,317.25,93.0218 +110575,318.33,94.1046 +110576,319.41,95.2098 +110577,314.84,91.8987 +110578,315.91,92.9952 +110579,316.97,94.1148 +110580,318.03,95.2574 +110581,313.53,91.8369 +110582,314.57,92.9689 +110583,315.61,94.1245 +110584,316.64,95.3041 +110585,312.21,91.7761 +110586,313.23,92.9428 +110587,314.25,94.134 +110588,315.25,95.3499 +110589,310.9,91.7161 +110590,311.89,92.917 +110591,312.88,94.143 +110592,313.87,95.3947 +110593,309.58,91.657 +110594,310.55,92.8914 +110595,311.52,94.1517 +110596,312.48,95.4385 +110597,308.27,91.5988 +110598,309.22,92.8661 +110599,310.16,94.16 +110600,311.09,95.4814 +110601,306.96,91.5416 +110602,307.88,92.8411 +110603,308.79,94.168 +110604,309.7,95.5232 +110605,305.65,91.4854 +110606,306.54,92.8163 +110607,307.43,94.1755 +110608,308.31,95.564 +110609,304.34,91.4301 +110610,305.21,92.7919 +110611,306.06,94.1826 +110612,306.91,95.6036 +110613,303.03,91.3759 +110614,303.87,92.7677 +110615,304.7,94.1894 +110616,305.52,95.6422 +110617,301.72,91.3228 +110618,302.53,92.7439 +110619,303.33,94.1956 +110620,304.13,95.6796 +110621,300.41,91.2707 +110622,301.2,92.7204 +110623,301.97,94.2015 +110624,302.73,95.7158 +110625,299.11,91.2197 +110626,299.86,92.6972 +110627,300.6,94.2069 +110628,301.34,95.7509 +110629,297.8,91.1698 +110630,298.52,92.6743 +110631,299.24,94.2119 +110632,299.95,95.7848 +110633,296.49,91.1211 +110634,297.19,92.6518 +110635,297.87,94.2165 +110636,298.55,95.8174 +110637,295.19,91.0734 +110638,295.85,92.6296 +110639,296.51,94.2206 +110640,297.15,95.8488 +110641,293.88,91.027 +110642,294.52,92.6077 +110643,295.14,94.2242 +110644,295.76,95.8789 +110645,292.58,90.98171 +110646,293.18,92.5863 +110647,293.78,94.2273 +110648,294.36,95.9077 +110649,291.28,90.93763 +110650,291.85,92.5652 +110651,292.41,94.23 +110652,292.96,95.9351 +110653,289.97,90.89477 +110654,290.51,92.5444 +110655,291.04,94.2322 +110656,291.56,95.9613 +110657,288.67,90.85314 +110658,289.18,92.5241 +110659,289.68,94.2339 +110660,290.16,95.986 +110661,287.37,90.81275 +110662,287.85,92.5041 +110663,288.31,94.2351 +110664,288.76,96.0095 +110665,286.07,90.77363 +110666,286.51,92.4845 +110667,286.95,94.2358 +110668,287.36,96.0315 +110669,284.76,90.73577 +110670,285.18,92.4653 +110671,285.58,94.236 +110672,285.96,96.0521 +110673,283.46,90.6992 +110674,283.84,92.4464 +110675,284.21,94.2357 +110676,284.56,96.0712 +110677,282.16,90.66392 +110678,282.51,92.428 +110679,282.84,94.2349 +110680,283.16,96.089 +110681,280.86,90.62996 +110682,281.18,92.41 +110683,281.48,94.2336 +110684,281.76,96.1052 +110685,279.56,90.59731 +110686,279.84,92.3924 +110687,280.11,94.2317 +110688,280.36,96.12 +110689,278.26,90.566 +110690,278.51,92.3752 +110691,278.74,94.2293 +110692,278.96,96.1333 +110693,276.96,90.53602 +110694,277.18,92.3584 +110695,277.38,94.2264 +110696,277.56,96.1452 +110697,275.66,90.50739 +110698,275.85,92.3421 +110699,276.01,94.223 +110700,276.16,96.1555 +110701,274.37,90.48012 +110702,274.51,92.3261 +110703,274.64,94.219 +110704,274.75,96.1642 +110705,273.07,90.45422 +110706,273.18,92.3106 +110707,273.28,94.2145 +110708,273.35,96.1715 +110709,271.77,90.42968 +110710,271.85,92.2955 +110711,271.91,94.2094 +110712,271.95,96.1772 +110713,270.47,90.40652 +110714,270.51,92.2809 +110715,270.54,94.2038 +110716,270.55,96.1814 +110717,269.17,90.38475 +110718,269.18,92.2666 +110719,269.17,94.1976 +110720,269.14,96.184 +110721,267.87,90.36436 +110722,267.85,92.2528 +110723,267.81,94.1909 +110724,267.74,96.185 +110725,266.57,90.34536 +110726,266.52,92.2395 +110727,266.44,94.1837 +110728,266.34,96.1845 +110729,265.28,90.32776 +110730,265.18,92.2266 +110731,265.07,94.1759 +110732,264.94,96.1823 +110733,263.98,90.31155 +110734,263.85,92.2141 +110735,263.7,94.1675 +110736,263.53,96.1787 +110737,262.68,90.29674 +110738,262.52,92.202 +110739,262.34,94.1586 +110740,262.13,96.1734 +110741,261.38,90.28334 +110742,261.19,92.1904 +110743,260.97,94.1491 +110744,260.73,96.1665 +110745,260.08,90.27133 +110746,259.85,92.1792 +110747,259.6,94.1391 +110748,259.33,96.158 +110749,258.78,90.26073 +110750,258.52,92.1685 +110751,258.24,94.1285 +110752,257.93,96.148 +110753,257.49,90.25152 +110754,257.19,92.1582 +110755,256.87,94.1174 +110756,256.53,96.1364 +110757,256.19,90.24371 +110758,255.86,92.1483 +110759,255.5,94.1057 +110760,255.12,96.1231 +110761,254.89,90.2373 +110762,254.52,92.1389 +110763,254.14,94.0934 +110764,253.72,96.1083 +110765,253.59,90.23228 +110766,253.19,92.1299 +110767,252.77,94.0806 +110768,252.32,96.0919 +110769,252.29,90.22865 +110770,251.86,92.1214 +110771,251.4,94.0673 +110772,250.92,96.0739 +110773,250.99,90.22641 +110774,250.52,92.1133 +110775,250.04,94.0534 +110776,249.52,96.0543 +110777,249.69,90.22554 +110778,249.19,92.1056 +110779,248.67,94.0389 +110780,248.12,96.0332 +110781,248.39,90.22605 +110782,247.86,92.0983 +110783,247.31,94.0239 +110784,246.72,96.0105 +110785,247.09,90.22793 +110786,246.52,92.0915 +110787,245.94,94.0084 +110788,245.33,95.9862 +110789,245.78,90.23116 +110790,245.19,92.0851 +110791,244.57,93.9923 +110792,243.93,95.9604 +110793,244.48,90.23575 +110794,243.86,92.0791 +110795,243.21,93.9757 +110796,242.53,95.933 +110797,243.18,90.24169 +110798,242.52,92.0736 +110799,241.84,93.9585 +110800,241.13,95.9041 +110801,241.88,90.24895 +110802,241.19,92.0684 +110803,240.48,93.9408 +110804,239.74,95.8736 +110805,240.57,90.25755 +110806,239.86,92.0637 +110807,239.11,93.9226 +110808,238.34,95.8417 +110809,239.27,90.26746 +110810,238.52,92.0594 +110811,237.75,93.9039 +110812,236.95,95.8082 +110813,237.97,90.27867 +110814,237.19,92.0555 +110815,236.39,93.8846 +110816,235.55,95.7732 +110817,236.66,90.29117 +110818,235.85,92.052 +110819,235.02,93.8648 +110820,234.16,95.7368 +110821,235.36,90.30496 +110822,234.52,92.0489 +110823,233.66,93.8445 +110824,232.77,95.6989 +110825,234.05,90.32001 +110826,233.18,92.0462 +110827,232.29,93.8237 +110828,231.37,95.6595 +110829,232.74,90.33631 +110830,231.85,92.0439 +110831,230.93,93.8024 +110832,229.98,95.6187 +110833,231.44,90.35385 +110834,230.51,92.042 +110835,229.57,93.7806 +110836,228.59,95.5765 +110837,230.13,90.37261 +110838,229.18,92.0404 +110839,228.2,93.7583 +110840,227.2,95.5329 +110841,228.82,90.39259 +110842,227.84,92.0393 +110843,226.84,93.7356 +110844,225.81,95.4879 +110845,227.51,90.41375 +110846,226.51,92.0385 +110847,225.48,93.7123 +110848,224.42,95.4416 +110849,226.2,90.43609 +110850,225.17,92.038 +110851,224.12,93.6886 +110852,223.04,95.3938 +110853,224.89,90.45959 +110854,223.83,92.038 +110855,222.76,93.6644 +110856,221.65,95.3448 +110857,223.58,90.48423 +110858,222.5,92.0382 +110859,221.39,93.6397 +110860,220.26,95.2945 +110861,222.26,90.50999 +110862,221.16,92.0388 +110863,220.03,93.6146 +110864,218.88,95.2428 +110865,220.95,90.53686 +110866,219.82,92.0398 +110867,218.67,93.589 +110868,217.49,95.19 +110869,219.64,90.5648 +110870,218.49,92.0411 +110871,217.31,93.563 +110872,216.11,95.1358 +110873,218.32,90.59382 +110874,217.15,92.0427 +110875,215.95,93.5366 +110876,214.73,95.0805 +110877,217,90.62387 +110878,215.81,92.0447 +110879,214.59,93.5097 +110880,213.35,95.024 +110881,215.69,90.65494 +110882,214.47,92.0469 +110883,213.23,93.4824 +110884,211.97,94.9663 +110885,214.37,90.68702 +110886,213.13,92.0495 +110887,211.88,93.4547 +110888,210.59,94.9074 +110889,213.05,90.72007 +110890,211.8,92.0523 +110891,210.52,93.4266 +110892,209.21,94.8474 +110893,211.73,90.75408 +110894,210.46,92.0554 +110895,209.16,93.3981 +110896,207.83,94.7864 +110897,210.41,90.78902 +110898,209.12,92.0589 +110899,207.8,93.3693 +110900,206.46,94.7243 +110901,209.09,90.82487 +110902,207.78,92.0626 +110903,206.44,93.34 +110904,205.08,94.6611 +110905,207.76,90.86161 +110906,206.44,92.0665 +110907,205.09,93.3104 +110908,203.71,94.597 +110909,206.44,90.8992 +110910,205.1,92.0707 +110911,203.73,93.2804 +110912,202.34,94.5318 +110913,205.12,90.93763 +110914,203.76,92.0752 +110915,202.37,93.2501 +110916,200.97,94.4657 +110917,203.79,90.97687 +110918,202.41,92.0799 +110919,201.02,93.2194 +110920,199.6,94.3987 +110921,202.46,91.0169 +110922,201.07,92.0848 +110923,199.66,93.1884 +110924,198.23,94.3308 +110925,201.13,91.0577 +110926,199.73,92.09 +110927,198.31,93.1571 +110928,196.86,94.262 +110929,199.8,91.0992 +110930,198.39,92.0953 +110931,196.95,93.1255 +110932,195.49,94.1924 +110933,198.47,91.1414 +110934,197.05,92.1009 +110935,195.6,93.0936 +110936,194.13,94.122 +110937,197.14,91.1843 +110938,195.7,92.1067 +110939,194.24,93.0613 +110940,192.76,94.0508 +110941,195.81,91.2279 +110942,194.36,92.1126 +110943,192.89,93.0288 +110944,191.4,93.9789 +110945,194.48,91.272 +110946,193.02,92.1187 +110947,191.54,92.9961 +110948,190.04,93.9063 +110949,193.14,91.3168 +110950,191.67,92.125 +110951,190.19,92.963 +110952,188.68,93.833 +110953,191.8,91.3621 +110954,190.33,92.1314 +110955,188.83,92.9297 +110956,187.32,93.759 +110957,190.47,91.408 +110958,188.98,92.138 +110959,187.48,92.8962 +110960,185.96,93.6845 +110961,189.13,91.4544 +110962,187.64,92.1447 +110963,186.13,92.8625 +110964,184.6,93.6093 +110965,187.79,91.5012 +110966,186.29,92.1516 +110967,184.78,92.8285 +110968,183.25,93.5337 +110969,186.45,91.5485 +110970,184.95,92.1585 +110971,183.43,92.7943 +110972,181.89,93.4575 +110973,185.11,91.5962 +110974,183.6,92.1656 +110975,182.08,92.76 +110976,180.54,93.3808 +110977,183.76,91.6443 +110978,182.25,92.1727 +110979,180.73,92.7254 +110980,179.19,93.3037 +110981,182.42,91.6928 +110982,180.91,92.18 +110983,179.38,92.6907 +110984,177.84,93.2262 +110985,181.07,91.7415 +110986,179.56,92.1873 +110987,178.03,92.6558 +110988,176.49,93.1483 +110989,179.73,91.7906 +110990,178.21,92.1946 +110991,176.68,92.6207 +110992,175.14,93.07 +110993,178.38,91.84 +110994,176.86,92.2021 +110995,175.34,92.5855 +110996,173.79,92.9915 +110997,177.03,91.8895 +110998,175.52,92.2095 +110999,173.99,92.5502 +111000,172.45,92.9127 +111001,175.68,91.9393 +111002,174.17,92.217 +111003,172.64,92.5148 +111004,171.1,92.8336 +111005,174.33,91.9893 +111006,172.82,92.2245 +111007,171.3,92.4792 +111008,169.76,92.7543 +111009,172.97,92.0394 +111010,171.47,92.2321 +111011,169.95,92.4436 +111012,168.42,92.6749 +111013,171.62,92.0896 +111014,170.12,92.2396 +111015,168.6,92.4079 +111016,167.08,92.5953 +111017,170.26,92.1398 +111018,168.77,92.2471 +111019,167.26,92.372 +111020,165.74,92.5156 +111021,168.91,92.1901 +111022,167.42,92.2546 +111023,165.91,92.3362 +111024,164.4,92.4359 +111025,167.55,92.2405 +111026,166.07,92.262 +111027,164.57,92.3003 +111028,163.06,92.3561 +111029,166.19,92.2908 +111030,164.71,92.2694 +111031,163.23,92.2643 +111032,161.73,92.2763 +111033,164.83,92.341 +111034,163.36,92.2768 +111035,161.88,92.2283 +111036,160.39,92.1965 +111037,163.47,92.3912 +111038,162.01,92.2841 +111039,160.54,92.1923 +111040,159.06,92.1168 +111041,162.11,92.4412 +111042,160.66,92.2913 +111043,159.2,92.1563 +111044,157.73,92.0372 +111045,160.74,92.4911 +111046,159.31,92.2984 +111047,157.86,92.1203 +111048,156.4,91.9578 +111049,159.38,92.5408 +111050,157.95,92.3054 +111051,156.51,92.0843 +111052,155.07,91.8785 +111053,158.01,92.5903 +111054,156.6,92.3123 +111055,155.17,92.0483 +111056,153.74,91.7994 +111057,156.64,92.6396 +111058,155.24,92.3191 +111059,153.83,92.0124 +111060,152.41,91.7206 +111061,155.28,92.6886 +111062,153.89,92.3257 +111063,152.49,91.9765 +111064,151.08,91.642 +111065,153.91,92.7373 +111066,152.53,92.3322 +111067,151.15,91.9407 +111068,149.76,91.5637 +111069,152.54,92.7856 +111070,151.18,92.3386 +111071,149.81,91.905 +111072,148.44,91.4857 +111073,151.16,92.8336 +111074,149.82,92.3448 +111075,148.47,91.8693 +111076,147.11,91.4081 +111077,149.79,92.8811 +111078,148.47,92.3508 +111079,147.13,91.8337 +111080,145.79,91.3309 +111081,148.42,92.9282 +111082,147.11,92.3566 +111083,145.8,91.7983 +111084,144.47,91.2541 +111085,147.04,92.9749 +111086,145.76,92.3623 +111087,144.46,91.7629 +111088,143.15,91.1778 +111089,145.67,93.021 +111090,144.4,92.3677 +111091,143.12,91.7277 +111092,141.83,91.102 +111093,144.29,93.0667 +111094,143.04,92.3729 +111095,141.78,91.6926 +111096,140.52,91.0266 +111097,142.91,93.1118 +111098,141.68,92.3779 +111099,140.45,91.6576 +111100,139.2,90.95187 +111101,141.53,93.1562 +111102,140.33,92.3827 +111103,139.11,91.6228 +111104,137.89,90.87768 +111105,140.15,93.2001 +111106,138.97,92.3872 +111107,137.77,91.5882 +111108,136.57,90.8041 +111109,138.77,93.2433 +111110,137.61,92.3914 +111111,136.44,91.5537 +111112,135.26,90.73116 +111113,137.39,93.2858 +111114,136.25,92.3954 +111115,135.1,91.5195 +111116,133.95,90.65888 +111117,136.01,93.3277 +111118,134.89,92.3991 +111119,133.77,91.4854 +111120,132.63,90.58729 +111121,134.62,93.3688 +111122,133.53,92.4026 +111123,132.43,91.4515 +111124,131.32,90.51643 +111125,133.24,93.4091 +111126,132.17,92.4057 +111127,131.1,91.4178 +111128,130.02,90.44631 +111129,131.85,93.4486 +111130,130.81,92.4086 +111131,129.77,91.3844 +111132,128.71,90.37697 +111133,130.46,93.4873 +111134,129.45,92.4111 +111135,128.43,91.3512 +111136,127.4,90.30843 +111137,129.08,93.5252 +111138,128.09,92.4133 +111139,127.1,91.3182 +111140,126.09,90.24072 +111141,127.69,93.5622 +111142,126.73,92.4152 +111143,125.77,91.2855 +111144,124.79,90.17387 +111145,126.3,93.5982 +111146,125.37,92.4167 +111147,124.43,91.2531 +111148,123.48,90.10789 +111149,124.91,93.6334 +111150,124.01,92.4179 +111151,123.1,91.2209 +111152,122.18,90.042818 +111153,123.52,93.6675 +111154,122.65,92.4187 +111155,121.77,91.1889 +111156,120.87,89.978672 +111157,122.13,93.7008 +111158,121.29,92.4192 +111159,120.44,91.1573 +111160,119.57,89.915477 +111161,120.73,93.7329 +111162,119.93,92.4193 +111163,119.11,91.126 +111164,118.27,89.85326 +111165,119.34,93.7641 +111166,118.56,92.419 +111167,117.77,91.0949 +111168,116.97,89.79203 +111169,117.95,93.7942 +111170,117.2,92.4183 +111171,116.44,91.0642 +111172,115.67,89.73182 +111173,116.55,93.8232 +111174,115.84,92.4173 +111175,115.11,91.0338 +111176,114.37,89.67265 +111177,115.16,93.8511 +111178,114.48,92.4158 +111179,113.78,91.0037 +111180,113.07,89.61454 +111181,113.76,93.8779 +111182,113.12,92.4139 +111183,112.45,90.97389 +111184,111.77,89.55751 +111185,112.37,93.9036 +111186,111.75,92.4116 +111187,111.12,90.94445 +111188,110.47,89.50158 +111189,110.97,93.928 +111190,110.39,92.4089 +111191,109.79,90.91535 +111192,109.18,89.44677 +111193,109.57,93.9513 +111194,109.03,92.4058 +111195,108.46,90.88661 +111196,107.88,89.39309 +111197,108.18,93.9734 +111198,107.66,92.4022 +111199,107.13,90.85821 +111200,106.58,89.34057 +111201,106.78,93.9942 +111202,106.3,92.3982 +111203,105.8,90.83018 +111204,105.29,89.28922 +111205,105.38,94.0138 +111206,104.94,92.3937 +111207,104.47,90.80252 +111208,103.99,89.23906 +111209,103.98,94.0321 +111210,103.57,92.3888 +111211,103.15,90.77523 +111212,102.7,89.1901 +111213,102.58,94.0491 +111214,102.21,92.3834 +111215,101.82,90.74831 +111216,101.4,89.14236 +111217,101.18,94.0648 +111218,100.85,92.3775 +111219,100.49,90.72178 +111220,100.11,89.09585 +111221,99.781,94.0792 +111222,99.482,92.3712 +111223,99.16,90.69564 +111224,98.816,89.05059 +111225,98.381,94.0922 +111226,98.118,92.3644 +111227,97.832,90.66989 +111228,97.523,89.00658 +111229,96.98,94.1039 +111230,96.754,92.3571 +111231,96.504,90.64453 +111232,96.23,88.9639 +111233,95.579,94.1142 +111234,95.39,92.3494 +111235,95.176,90.61958 +111236,94.938,88.9224 +111237,94.178,94.1231 +111238,94.026,92.3411 +111239,93.848,90.59504 +111240,93.645,88.8823 +111241,92.777,94.1307 +111242,92.662,92.3324 +111243,92.52,90.5709 +111244,92.353,88.8434 +111245,91.376,94.1368 +111246,91.298,92.3232 +111247,91.192,90.54718 +111248,91.061,88.8059 +111249,89.975,94.1415 +111250,89.934,92.3134 +111251,89.865,90.52387 +111252,89.77,88.7697 +111253,88.573,94.1447 +111254,88.57,92.3032 +111255,88.537,90.50099 +111256,88.478,88.7348 +111257,87.172,94.1465 +111258,87.206,92.2924 +111259,87.21,90.47852 +111260,87.187,88.7013 +111261,85.771,94.1469 +111262,85.842,92.2812 +111263,85.882,90.45649 +111264,85.895,88.6691 +111265,84.369,94.1458 +111266,84.478,92.2694 +111267,84.555,90.43488 +111268,84.604,88.6383 +111269,82.968,94.1432 +111270,83.114,92.2572 +111271,83.228,90.4137 +111272,83.313,88.6088 +111273,81.566,94.1391 +111274,81.75,92.2444 +111275,81.9,90.39295 +111276,82.022,88.5807 +111277,80.165,94.1335 +111278,80.386,92.2311 +111279,80.573,90.37264 +111280,80.73,88.554 +111281,78.764,94.1265 +111282,79.022,92.2172 +111283,79.246,90.35276 +111284,79.439,88.5286 +111285,77.363,94.1179 +111286,77.659,92.2029 +111287,77.919,90.33332 +111288,78.148,88.5046 +111289,75.963,94.1079 +111290,76.295,92.188 +111291,76.591,90.31431 +111292,76.856,88.482 +111293,74.562,94.0963 +111294,74.931,92.1726 +111295,75.264,90.29575 +111296,75.565,88.4608 +111297,73.162,94.0832 +111298,73.568,92.1567 +111299,73.937,90.27762 +111300,74.273,88.4409 +111301,71.762,94.0687 +111302,72.205,92.1403 +111303,72.609,90.25993 +111304,72.981,88.4224 +111305,70.362,94.0526 +111306,70.841,92.1233 +111307,71.282,90.24268 +111308,71.689,88.4053 +111309,68.963,94.0349 +111310,69.478,92.1058 +111311,69.954,90.22587 +111312,70.397,88.3896 +111313,67.564,94.0158 +111314,68.115,92.0878 +111315,68.627,90.2095 +111316,69.104,88.3753 +111317,66.166,93.9952 +111318,66.753,92.0693 +111319,67.299,90.19357 +111320,67.811,88.3623 +111321,64.768,93.973 +111322,65.39,92.0502 +111323,65.971,90.17807 +111324,66.518,88.3507 +111325,63.37,93.9494 +111326,64.028,92.0307 +111327,64.644,90.16301 +111328,65.224,88.3405 +111329,61.973,93.9242 +111330,62.665,92.0106 +111331,63.316,90.14839 +111332,63.93,88.3316 +111333,60.577,93.8975 +111334,61.303,91.99 +111335,61.988,90.1342 +111336,62.636,88.3241 +111337,59.181,93.8694 +111338,59.942,91.9689 +111339,60.659,90.12043 +111340,61.341,88.3179 +111341,57.786,93.8397 +111342,58.58,91.9472 +111343,59.331,90.1071 +111344,60.046,88.3131 +111345,56.391,93.8086 +111346,57.219,91.9251 +111347,58.003,90.094195 +111348,58.75,88.3096 +111349,54.997,93.776 +111350,55.857,91.9024 +111351,56.674,90.081713 +111352,57.454,88.3075 +111353,53.604,93.7419 +111354,54.497,91.8793 +111355,55.345,90.069652 +111356,56.157,88.3066 +111357,52.211,93.7063 +111358,53.136,91.8556 +111359,54.017,90.058008 +111360,54.86,88.3071 +111361,50.819,93.6694 +111362,51.775,91.8315 +111363,52.687,90.04678 +111364,53.562,88.3088 +111365,49.428,93.631 +111366,50.415,91.8069 +111367,51.358,90.035963 +111368,52.263,88.3119 +111369,48.037,93.5911 +111370,49.056,91.7817 +111371,50.029,90.025554 +111372,50.964,88.3162 +111373,46.648,93.5499 +111374,47.696,91.7561 +111375,48.699,90.015548 +111376,49.664,88.3218 +111377,45.259,93.5072 +111378,46.337,91.73 +111379,47.369,90.0059419 +111380,48.364,88.3286 +111381,43.871,93.4632 +111382,44.978,91.7034 +111383,46.039,89.9967311 +111384,47.062,88.3367 +111385,42.484,93.4177 +111386,43.619,91.6764 +111387,44.709,89.987911 +111388,45.76,88.346 +111389,41.097,93.371 +111390,42.261,91.6489 +111391,43.378,89.979477 +111392,44.457,88.3565 +111393,39.712,93.3229 +111394,40.903,91.6209 +111395,42.047,89.971423 +111396,43.154,88.3682 +111397,38.328,93.2734 +111398,39.545,91.5925 +111399,40.716,89.963746 +111400,41.849,88.3811 +111401,36.944,93.2227 +111402,38.188,91.5636 +111403,39.385,89.956438 +111404,40.544,88.3951 +111405,35.562,93.1707 +111406,36.831,91.5343 +111407,38.054,89.949495 +111408,39.238,88.4103 +111409,34.181,93.1174 +111410,35.474,91.5045 +111411,36.722,89.942911 +111412,37.931,88.4266 +111413,32.8,93.0628 +111414,34.118,91.4743 +111415,35.39,89.93668 +111416,36.624,88.444 +111417,31.421,93.0071 +111418,32.762,91.4437 +111419,34.057,89.930795 +111420,35.315,88.4625 +111421,30.043,92.9501 +111422,31.406,91.4127 +111423,32.725,89.925251 +111424,34.005,88.4821 +111425,28.666,92.8919 +111426,30.051,91.3813 +111427,31.392,89.92004 +111428,32.695,88.5028 +111429,27.29,92.8326 +111430,28.696,91.3494 +111431,30.058,89.915157 +111432,31.383,88.5244 +111433,25.915,92.7722 +111434,27.342,91.3172 +111435,28.725,89.910593 +111436,30.071,88.5471 +111437,24.541,92.7106 +111438,25.988,91.2845 +111439,27.391,89.906342 +111440,28.757,88.5708 +111441,23.168,92.6479 +111442,24.634,91.2515 +111443,26.057,89.902397 +111444,27.442,88.5954 +111445,21.797,92.5841 +111446,23.281,91.2182 +111447,24.722,89.89875 +111448,26.127,88.621 +111449,20.427,92.5194 +111450,21.928,91.1844 +111451,23.387,89.89539 +111452,24.81,88.6475 +111453,19.057,92.4535 +111454,20.576,91.1503 +111455,22.052,89.89232 +111456,23.492,88.675 +111457,17.69,92.3867 +111458,19.224,91.1158 +111459,20.717,89.88952 +111460,22.174,88.7032 +111461,16.323,92.319 +111462,17.872,91.0811 +111463,19.381,89.88699 +111464,20.854,88.7324 +111465,14.957,92.2503 +111466,16.521,91.0459 +111467,18.045,89.88472 +111468,19.533,88.7624 +111469,13.593,92.1807 +111470,15.17,91.0105 +111471,16.708,89.88269 +111472,18.211,88.7932 +111473,12.23,92.1102 +111474,13.82,90.97473 +111475,15.371,89.88091 +111476,16.887,88.8247 +111477,10.869,92.0388 +111478,12.471,90.93867 +111479,14.034,89.87936 +111480,15.563,88.857 +111481,9.5084,91.9666 +111482,11.121,90.90231 +111483,12.696,89.87804 +111484,14.237,88.8901 +111485,8.1493,91.8936 +111486,9.7723,90.86567 +111487,11.358,89.87693 +111488,12.91,88.9238 +111489,6.7915,91.8199 +111490,8.4239,90.82875 +111491,10.02,89.87603 +111492,11.582,88.9583 +111493,5.435,91.7454 +111494,7.076,90.79157 +111495,8.6809,89.87532 +111496,10.253,88.9933 +111497,4.0798,91.6702 +111498,5.7285,90.75413 +111499,7.3417,89.87481 +111500,8.9229,89.02905 +111501,2.726,91.5944 +111502,4.3815,90.71645 +111503,6.0022,89.87447 +111504,7.5914,89.06534 +111505,1.3734,91.5179 +111506,3.0349,90.67853 +111507,4.6623,89.8743 +111508,6.2586,89.10221 +111509,0.02221,91.4407 +111510,1.6888,90.64039 +111511,3.322,89.87429 +111512,4.9245,89.13961 +111513,358.67,91.363 +111514,0.34317,90.60203 +111515,1.9813,89.87443 +111516,3.5892,89.17752 +111517,357.32,91.2848 +111518,359,90.56346 +111519,0.64023,89.87471 +111520,2.2527,89.21592 +111521,355.98,91.206 +111522,357.65,90.5247 +111523,359.3,89.87512 +111524,0.91497,89.25477 +111525,354.63,91.1268 +111526,356.31,90.48576 +111527,357.96,89.87565 +111528,359.58,89.29405 +111529,353.29,91.0471 +111530,354.97,90.44664 +111531,356.61,89.8763 +111532,358.24,89.33372 +111533,351.94,90.96695 +111534,353.62,90.40736 +111535,355.27,89.87704 +111536,356.89,89.37376 +111537,350.6,90.88644 +111538,352.28,90.36793 +111539,353.93,89.87787 +111540,355.55,89.41414 +111541,349.26,90.80557 +111542,350.94,90.32836 +111543,352.59,89.87879 +111544,354.21,89.45482 +111545,347.92,90.72438 +111546,349.6,90.28865 +111547,351.24,89.87977 +111548,352.86,89.49578 +111549,346.58,90.64291 +111550,348.25,90.24882 +111551,349.9,89.88082 +111552,351.52,89.53698 +111553,345.25,90.56118 +111554,346.91,90.20889 +111555,348.55,89.88191 +111556,350.17,89.57841 +111557,343.91,90.47922 +111558,345.57,90.16886 +111559,347.21,89.88304 +111560,348.82,89.62002 +111561,342.58,90.39708 +111562,344.23,90.12874 +111563,345.86,89.88421 +111564,347.47,89.66178 +111565,341.25,90.31479 +111566,342.89,90.088538 +111567,344.52,89.88539 +111568,346.12,89.70367 +111569,339.91,90.23237 +111570,341.55,90.048276 +111571,343.17,89.88658 +111572,344.76,89.74566 +111573,338.58,90.14987 +111574,340.22,90.0079585 +111575,341.82,89.88776 +111576,343.41,89.78771 +111577,337.26,90.067306 +111578,338.88,89.967598 +111579,340.48,89.88894 +111580,342.05,89.82979 +111581,335.93,89.984726 +111582,337.54,89.927204 +111583,339.13,89.89009 +111584,340.7,89.87188 +111585,334.6,89.902157 +111586,336.2,89.88679 +111587,337.78,89.8912 +111588,339.34,89.913937 +111589,333.28,89.81963 +111590,334.87,89.84636 +111591,336.43,89.89228 +111592,337.98,89.955937 +111593,331.95,89.73719 +111594,333.53,89.80594 +111595,335.09,89.8933 +111596,336.62,89.9978473 +111597,330.63,89.65485 +111598,332.19,89.76552 +111599,333.74,89.89425 +111600,335.26,90.039637 +111601,329.31,89.57266 +111602,330.86,89.72513 +111603,332.39,89.89513 +111604,333.9,90.081277 +111605,327.99,89.49065 +111606,329.52,89.68477 +111607,331.04,89.89592 +111608,332.53,90.12273 +111609,326.67,89.40885 +111610,328.19,89.64445 +111611,329.69,89.89662 +111612,331.17,90.16398 +111613,325.36,89.32728 +111614,326.86,89.60419 +111615,328.34,89.89721 +111616,329.8,90.20498 +111617,324.04,89.24599 +111618,325.52,89.56399 +111619,326.99,89.89768 +111620,328.43,90.24571 +111621,322.72,89.16501 +111622,324.19,89.52386 +111623,325.64,89.89803 +111624,327.06,90.28614 +111625,321.41,89.08436 +111626,322.86,89.48383 +111627,324.28,89.89824 +111628,325.69,90.32624 +111629,320.1,89.00408 +111630,321.52,89.44389 +111631,322.93,89.8983 +111632,324.32,90.36597 +111633,318.79,88.9242 +111634,320.19,89.40405 +111635,321.58,89.89821 +111636,322.95,90.4053 +111637,317.48,88.8448 +111638,318.86,89.36434 +111639,320.23,89.89795 +111640,321.58,90.44422 +111641,316.17,88.7658 +111642,317.53,89.32475 +111643,318.87,89.89751 +111644,320.2,90.48268 +111645,314.86,88.6873 +111646,316.2,89.2853 +111647,317.52,89.89688 +111648,318.83,90.52066 +111649,313.55,88.6093 +111650,314.87,89.24599 +111651,316.17,89.89606 +111652,317.45,90.55813 +111653,312.25,88.5319 +111654,313.54,89.20685 +111655,314.81,89.89503 +111656,316.07,90.59506 +111657,310.94,88.455 +111658,312.21,89.16787 +111659,313.46,89.89379 +111660,314.69,90.63142 +111661,309.64,88.3788 +111662,310.88,89.12906 +111663,312.11,89.89232 +111664,313.31,90.66719 +111665,308.34,88.3032 +111666,309.55,89.09045 +111667,310.75,89.89062 +111668,311.93,90.70233 +111669,307.03,88.2283 +111670,308.22,89.05203 +111671,309.4,89.88867 +111672,310.55,90.73682 +111673,305.73,88.154 +111674,306.89,89.01382 +111675,308.04,89.88647 +111676,309.17,90.77063 +111677,304.43,88.0805 +111678,305.57,88.9758 +111679,306.69,89.88401 +111680,307.79,90.80373 +111681,303.13,88.0077 +111682,304.24,88.938 +111683,305.33,89.88128 +111684,306.4,90.83609 +111685,301.84,87.9357 +111686,302.91,88.9005 +111687,303.97,89.87826 +111688,305.02,90.8677 +111689,300.54,87.8645 +111690,301.59,88.8632 +111691,302.62,89.87496 +111692,303.63,90.89852 +111693,299.24,87.7941 +111694,300.26,88.8261 +111695,301.26,89.87137 +111696,302.24,90.92852 +111697,297.95,87.7246 +111698,298.93,88.7894 +111699,299.9,89.86746 +111700,300.86,90.95769 +111701,296.65,87.656 +111702,297.61,88.7528 +111703,298.55,89.86325 +111704,299.47,90.98599 +111705,295.36,87.5882 +111706,296.28,88.7166 +111707,297.19,89.85871 +111708,298.08,91.0134 +111709,294.07,87.5214 +111710,294.96,88.6806 +111711,295.83,89.85384 +111712,296.69,91.0399 +111713,292.77,87.4555 +111714,293.63,88.6449 +111715,294.47,89.84864 +111716,295.3,91.0655 +111717,291.48,87.3906 +111718,292.31,88.6096 +111719,293.12,89.84309 +111720,293.91,91.0901 +111721,290.19,87.3266 +111722,290.98,88.5745 +111723,291.76,89.83719 +111724,292.51,91.1137 +111725,288.9,87.2637 +111726,289.66,88.5397 +111727,290.4,89.83093 +111728,291.12,91.1363 +111729,287.61,87.2018 +111730,288.34,88.5053 +111731,289.04,89.8243 +111732,289.73,91.1579 +111733,286.32,87.1409 +111734,287.01,88.4712 +111735,287.68,89.8173 +111736,288.33,91.1784 +111737,285.03,87.0812 +111738,285.69,88.4374 +111739,286.32,89.80992 +111740,286.94,91.1979 +111741,283.75,87.0225 +111742,284.37,88.404 +111743,284.97,89.80216 +111744,285.54,91.2163 +111745,282.46,86.9649 +111746,283.04,88.3709 +111747,283.61,89.794 +111748,284.15,91.2336 +111749,281.17,86.9084 +111750,281.72,88.3382 +111751,282.25,89.78544 +111752,282.75,91.2497 +111753,279.89,86.8531 +111754,280.4,88.3058 +111755,280.89,89.77647 +111756,281.35,91.2647 +111757,278.6,86.7989 +111758,279.08,88.2738 +111759,279.53,89.7671 +111760,279.96,91.2785 +111761,277.32,86.746 +111762,277.75,88.2422 +111763,278.17,89.7573 +111764,278.56,91.2911 +111765,276.03,86.6942 +111766,276.43,88.2109 +111767,276.81,89.74709 +111768,277.16,91.3026 +111769,274.75,86.6436 +111770,275.11,88.1801 +111771,275.45,89.73645 +111772,275.76,91.3128 +111773,273.46,86.5942 +111774,273.79,88.1496 +111775,274.09,89.72537 +111776,274.36,91.3217 +111777,272.18,86.546 +111778,272.47,88.1195 +111779,272.73,89.71386 +111780,272.97,91.3295 +111781,270.9,86.4991 +111782,271.15,88.0898 +111783,271.37,89.70191 +111784,271.57,91.3359 +111785,269.61,86.4535 +111786,269.83,88.0605 +111787,270.01,89.68951 +111788,270.17,91.3411 +111789,268.33,86.4091 +111790,268.5,88.0316 +111791,268.65,89.67666 +111792,268.77,91.345 +111793,267.05,86.366 +111794,267.18,88.0031 +111795,267.29,89.66336 +111796,267.37,91.3476 +111797,265.76,86.3242 +111798,265.86,87.975 +111799,265.93,89.6496 +111800,265.97,91.3488 +111801,264.48,86.2836 +111802,264.54,87.9474 +111803,264.57,89.63538 +111804,264.57,91.3487 +111805,263.2,86.2444 +111806,263.22,87.9201 +111807,263.21,89.62069 +111808,263.17,91.3473 +111809,261.92,86.2065 +111810,261.9,87.8933 +111811,261.85,89.60554 +111812,261.77,91.3446 +111813,260.64,86.1699 +111814,260.58,87.8669 +111815,260.49,89.58992 +111816,260.37,91.3404 +111817,259.35,86.1346 +111818,259.26,87.841 +111819,259.13,89.57383 +111820,258.97,91.3349 +111821,258.07,86.1007 +111822,257.94,87.8154 +111823,257.77,89.55726 +111824,257.57,91.3281 +111825,256.79,86.0681 +111826,256.62,87.7903 +111827,256.41,89.54021 +111828,256.17,91.3198 +111829,255.51,86.0368 +111830,255.3,87.7656 +111831,255.05,89.52269 +111832,254.77,91.3101 +111833,254.22,86.0069 +111834,253.98,87.7414 +111835,253.69,89.50468 +111836,253.37,91.2991 +111837,252.94,85.9783 +111838,252.66,87.7176 +111839,252.33,89.4862 +111840,251.97,91.2866 +111841,251.66,85.9511 +111842,251.34,87.6942 +111843,250.97,89.46723 +111844,250.57,91.2728 +111845,250.38,85.9252 +111846,250.01,87.6713 +111847,249.61,89.44778 +111848,249.17,91.2575 +111849,249.09,85.9006 +111850,248.69,87.6488 +111851,248.26,89.42784 +111852,247.78,91.2408 +111853,247.81,85.8775 +111854,247.37,87.6267 +111855,246.9,89.40742 +111856,246.38,91.2227 +111857,246.53,85.8556 +111858,246.05,87.6051 +111859,245.54,89.38651 +111860,244.98,91.2031 +111861,245.24,85.8352 +111862,244.73,87.5839 +111863,244.18,89.36512 +111864,243.58,91.1822 +111865,243.96,85.816 +111866,243.41,87.5631 +111867,242.82,89.34325 +111868,242.19,91.1598 +111869,242.68,85.7982 +111870,242.09,87.5428 +111871,241.46,89.32089 +111872,240.79,91.136 +111873,241.39,85.7818 +111874,240.77,87.5229 +111875,240.1,89.29805 +111876,239.39,91.1108 +111877,240.11,85.7667 +111878,239.45,87.5035 +111879,238.75,89.27473 +111880,238,91.0842 +111881,238.82,85.7529 +111882,238.13,87.4845 +111883,237.39,89.25093 +111884,236.6,91.0561 +111885,237.53,85.7404 +111886,236.8,87.4659 +111887,236.03,89.22665 +111888,235.21,91.0267 +111889,236.25,85.7293 +111890,235.48,87.4478 +111891,234.67,89.20189 +111892,233.82,90.9958 +111893,234.96,85.7195 +111894,234.16,87.4301 +111895,233.32,89.17666 +111896,232.42,90.96354 +111897,233.67,85.711 +111898,232.84,87.4128 +111899,231.96,89.15096 +111900,231.03,90.92988 +111901,232.39,85.7037 +111902,231.52,87.3959 +111903,230.6,89.12478 +111904,229.64,90.89483 +111905,231.1,85.6978 +111906,230.19,87.3794 +111907,229.25,89.09814 +111908,228.25,90.8584 +111909,229.81,85.6932 +111910,228.87,87.3634 +111911,227.89,89.07104 +111912,226.86,90.8206 +111913,228.52,85.6898 +111914,227.55,87.3478 +111915,226.54,89.04347 +111916,225.47,90.78144 +111917,227.23,85.6877 +111918,226.23,87.3326 +111919,225.18,89.01544 +111920,224.08,90.74092 +111921,225.94,85.6868 +111922,224.9,87.3178 +111923,223.83,88.987 +111924,222.69,90.69905 +111925,224.64,85.6871 +111926,223.58,87.3034 +111927,222.47,88.958 +111928,221.31,90.65586 +111929,223.35,85.6887 +111930,222.26,87.2894 +111931,221.12,88.9287 +111932,219.92,90.61134 +111933,222.06,85.6915 +111934,220.93,87.2758 +111935,219.76,88.8988 +111936,218.54,90.56551 +111937,220.76,85.6955 +111938,219.61,87.2626 +111939,218.41,88.8686 +111940,217.15,90.51838 +111941,219.47,85.7007 +111942,218.28,87.2498 +111943,217.05,88.8379 +111944,215.77,90.46998 +111945,218.17,85.707 +111946,216.96,87.2374 +111947,215.7,88.8068 +111948,214.39,90.42031 +111949,216.88,85.7145 +111950,215.64,87.2253 +111951,214.35,88.7753 +111952,213.01,90.36938 +111953,215.58,85.7231 +111954,214.31,87.2136 +111955,213,88.7433 +111956,211.63,90.31722 +111957,214.28,85.7329 +111958,212.99,87.2023 +111959,211.64,88.7109 +111960,210.25,90.26384 +111961,212.98,85.7437 +111962,211.66,87.1913 +111963,210.29,88.6782 +111964,208.87,90.20926 +111965,211.68,85.7557 +111966,210.33,87.1807 +111967,208.94,88.645 +111968,207.49,90.15349 +111969,210.38,85.7687 +111970,209.01,87.1705 +111971,207.59,88.6114 +111972,206.12,90.096558 +111973,209.07,85.7827 +111974,207.68,87.1606 +111975,206.24,88.5775 +111976,204.74,90.03848 +111977,207.77,85.7978 +111978,206.35,87.151 +111979,204.89,88.5432 +111980,203.37,89.979275 +111981,206.47,85.8139 +111982,205.03,87.1417 +111983,203.54,88.5085 +111984,202,89.918964 +111985,205.16,85.8309 +111986,203.7,87.1328 +111987,202.19,88.4734 +111988,200.63,89.85757 +111989,203.85,85.849 +111990,202.37,87.1242 +111991,200.84,88.438 +111992,199.26,89.79511 +111993,202.55,85.868 +111994,201.04,87.1159 +111995,199.49,88.4022 +111996,197.89,89.73161 +111997,201.24,85.8879 +111998,199.71,87.1079 +111999,198.15,88.3661 +112000,196.52,89.66709 +112001,199.93,85.9087 +112002,198.39,87.1002 +112003,196.8,88.3296 +112004,195.15,89.60158 +112005,198.62,85.9304 +112006,197.06,87.0928 +112007,195.45,88.2928 +112008,193.79,89.53509 +112009,197.3,85.9529 +112010,195.73,87.0856 +112011,194.1,88.2557 +112012,192.43,89.46766 +112013,195.99,85.9763 +112014,194.4,87.0788 +112015,192.76,88.2183 +112016,191.06,89.39931 +112017,194.67,86.0005 +112018,193.07,87.0722 +112019,191.41,88.1806 +112020,189.7,89.33006 +112021,193.36,86.0254 +112022,191.74,87.0658 +112023,190.07,88.1426 +112024,188.35,89.25994 +112025,192.04,86.0512 +112026,190.41,87.0597 +112027,188.72,88.1043 +112028,186.99,89.18898 +112029,190.72,86.0776 +112030,189.07,87.0539 +112031,187.38,88.0657 +112032,185.63,89.1172 +112033,189.4,86.1048 +112034,187.74,87.0482 +112035,186.03,88.0268 +112036,184.28,89.04462 +112037,188.08,86.1327 +112038,186.41,87.0428 +112039,184.69,87.9877 +112040,182.92,88.9713 +112041,186.76,86.1612 +112042,185.08,87.0376 +112043,183.35,87.9484 +112044,181.57,88.8972 +112045,185.44,86.1903 +112046,183.74,87.0326 +112047,182.01,87.9087 +112048,180.22,88.8224 +112049,184.11,86.2201 +112050,182.41,87.0278 +112051,180.66,87.8689 +112052,178.87,88.747 +112053,182.79,86.2504 +112054,181.08,87.0232 +112055,179.32,87.8288 +112056,177.52,88.6709 +112057,181.46,86.2813 +112058,179.74,87.0188 +112059,177.98,87.7886 +112060,176.17,88.5942 +112061,180.13,86.3128 +112062,178.41,87.0145 +112063,176.64,87.7481 +112064,174.83,88.5169 +112065,178.8,86.3447 +112066,177.07,87.0104 +112067,175.3,87.7074 +112068,173.48,88.439 +112069,177.47,86.3771 +112070,175.74,87.0065 +112071,173.96,87.6666 +112072,172.14,88.3606 +112073,176.14,86.4099 +112074,174.4,87.0026 +112075,172.62,87.6255 +112076,170.8,88.2817 +112077,174.8,86.4431 +112078,173.06,86.999 +112079,171.29,87.5843 +112080,169.46,88.2023 +112081,173.47,86.4768 +112082,171.73,86.9954 +112083,169.95,87.543 +112084,168.12,88.1225 +112085,172.13,86.5107 +112086,170.39,86.9919 +112087,168.61,87.5015 +112088,166.79,88.0423 +112089,170.79,86.5451 +112090,169.05,86.9886 +112091,167.27,87.4599 +112092,165.45,87.9617 +112093,169.45,86.5797 +112094,167.72,86.9853 +112095,165.94,87.4181 +112096,164.12,87.8808 +112097,168.11,86.6146 +112098,166.38,86.9821 +112099,164.6,87.3763 +112100,162.78,87.7996 +112101,166.77,86.6497 +112102,165.04,86.979 +112103,163.27,87.3343 +112104,161.45,87.7181 +112105,165.43,86.685 +112106,163.7,86.976 +112107,161.93,87.2922 +112108,160.12,87.6363 +112109,164.08,86.7205 +112110,162.36,86.973 +112111,160.6,87.2501 +112112,158.79,87.5543 +112113,162.74,86.7562 +112114,161.02,86.97 +112115,159.26,87.2079 +112116,157.47,87.4722 +112117,161.39,86.792 +112118,159.68,86.9671 +112119,157.93,87.1656 +112120,156.14,87.3899 +112121,160.04,86.8279 +112122,158.34,86.9642 +112123,156.6,87.1233 +112124,154.82,87.3074 +112125,158.69,86.8639 +112126,157,86.9613 +112127,155.26,87.0809 +112128,153.5,87.2249 +112129,157.34,86.8998 +112130,155.65,86.9584 +112131,153.93,87.0386 +112132,152.17,87.1424 +112133,155.99,86.9358 +112134,154.31,86.9555 +112135,152.6,86.9961 +112136,150.85,87.0598 +112137,154.64,86.9718 +112138,152.97,86.9526 +112139,151.27,86.9537 +112140,149.54,86.9772 +112141,153.28,87.0077 +112142,151.63,86.9497 +112143,149.94,86.9113 +112144,148.22,86.8946 +112145,151.93,87.0436 +112146,150.28,86.9467 +112147,148.61,86.8689 +112148,146.9,86.8122 +112149,150.57,87.0793 +112150,148.94,86.9437 +112151,147.28,86.8265 +112152,145.59,86.7298 +112153,149.21,87.1149 +112154,147.6,86.9406 +112155,145.95,86.7842 +112156,144.28,86.6476 +112157,147.85,87.1503 +112158,146.25,86.9374 +112159,144.62,86.7419 +112160,142.96,86.5655 +112161,146.49,87.1855 +112162,144.91,86.9342 +112163,143.29,86.6996 +112164,141.65,86.4837 +112165,145.12,87.2205 +112166,143.56,86.9309 +112167,141.97,86.6575 +112168,140.34,86.4021 +112169,143.76,87.2553 +112170,142.21,86.9275 +112171,140.64,86.6154 +112172,139.04,86.3207 +112173,142.4,87.2897 +112174,140.87,86.9239 +112175,139.31,86.5733 +112176,137.73,86.2397 +112177,141.03,87.3238 +112178,139.52,86.9203 +112179,137.99,86.5314 +112180,136.42,86.1589 +112181,139.66,87.3576 +112182,138.18,86.9165 +112183,136.66,86.4896 +112184,135.12,86.0785 +112185,138.29,87.391 +112186,136.83,86.9126 +112187,135.34,86.4479 +112188,133.82,85.9985 +112189,136.92,87.424 +112190,135.48,86.9086 +112191,134.01,86.4063 +112192,132.52,85.919 +112193,135.55,87.4566 +112194,134.13,86.9044 +112195,132.69,86.3649 +112196,131.21,85.8398 +112197,134.18,87.4887 +112198,132.78,86.9 +112199,131.36,86.3236 +112200,129.92,85.7612 +112201,132.81,87.5204 +112202,131.44,86.8954 +112203,130.04,86.2824 +112204,128.62,85.683 +112205,131.43,87.5515 +112206,130.09,86.8907 +112207,128.72,86.2414 +112208,127.32,85.6054 +112209,130.06,87.5821 +112210,128.74,86.8858 +112211,127.39,86.2006 +112212,126.02,85.5284 +112213,128.68,87.6121 +112214,127.39,86.8806 +112215,126.07,86.16 +112216,124.73,85.4519 +112217,127.3,87.6415 +112218,126.04,86.8753 +112219,124.75,86.1196 +112220,123.44,85.3761 +112221,125.92,87.6704 +112222,124.69,86.8697 +112223,123.43,86.0794 +112224,122.14,85.3009 +112225,124.55,87.6985 +112226,123.34,86.8639 +112227,122.11,86.0393 +112228,120.85,85.2264 +112229,123.16,87.726 +112230,121.99,86.8579 +112231,120.78,85.9995 +112232,119.56,85.1526 +112233,121.78,87.7528 +112234,120.64,86.8517 +112235,119.46,85.96 +112236,118.27,85.0795 +112237,120.4,87.7789 +112238,119.28,86.8451 +112239,118.14,85.9206 +112240,116.98,85.0071 +112241,119.02,87.8043 +112242,117.93,86.8383 +112243,116.82,85.8816 +112244,115.69,84.9356 +112245,117.63,87.8288 +112246,116.58,86.8313 +112247,115.5,85.8427 +112248,114.41,84.8648 +112249,116.25,87.8526 +112250,115.23,86.8239 +112251,114.19,85.8042 +112252,113.12,84.7949 +112253,114.86,87.8756 +112254,113.88,86.8163 +112255,112.87,85.7659 +112256,111.83,84.7258 +112257,113.47,87.8977 +112258,112.52,86.8084 +112259,111.55,85.7278 +112260,110.55,84.6576 +112261,112.09,87.9189 +112262,111.17,86.8002 +112263,110.23,85.6901 +112264,109.27,84.5903 +112265,110.7,87.9393 +112266,109.82,86.7917 +112267,108.91,85.6527 +112268,107.98,84.5239 +112269,109.31,87.9588 +112270,108.46,86.7828 +112271,107.59,85.6155 +112272,106.7,84.4584 +112273,107.92,87.9773 +112274,107.11,86.7736 +112275,106.28,85.5787 +112276,105.42,84.394 +112277,106.53,87.9949 +112278,105.76,86.7641 +112279,104.96,85.5422 +112280,104.14,84.3305 +112281,105.14,88.0115 +112282,104.4,86.7543 +112283,103.64,85.506 +112284,102.86,84.268 +112285,103.75,88.0272 +112286,103.05,86.7441 +112287,102.33,85.4701 +112288,101.58,84.2065 +112289,102.35,88.0418 +112290,101.69,86.7336 +112291,101.01,85.4346 +112292,100.3,84.1461 +112293,100.96,88.0554 +112294,100.34,86.7227 +112295,99.694,85.3994 +112296,99.024,84.0867 +112297,99.567,88.0679 +112298,98.985,86.7115 +112299,98.378,85.3646 +112300,97.747,84.0284 +112301,98.173,88.0794 +112302,97.631,86.6999 +112303,97.063,85.3301 +112304,96.47,83.9712 +112305,96.778,88.0898 +112306,96.276,86.6879 +112307,95.747,85.296 +112308,95.193,83.9152 +112309,95.383,88.0991 +112310,94.921,86.6755 +112311,94.432,85.2622 +112312,93.917,83.8602 +112313,93.988,88.1073 +112314,93.566,86.6628 +112315,93.117,85.2288 +112316,92.642,83.8064 +112317,92.592,88.1143 +112318,92.211,86.6496 +112319,91.802,85.1958 +112320,91.367,83.7538 +112321,91.196,88.1202 +112322,90.855,86.6361 +112323,90.487,85.1632 +112324,90.092,83.7023 +112325,89.799,88.1249 +112326,89.5,86.6222 +112327,89.173,85.1309 +112328,88.818,83.652 +112329,88.402,88.1285 +112330,88.145,86.6078 +112331,87.858,85.099 +112332,87.544,83.603 +112333,87.005,88.1309 +112334,86.789,86.5931 +112335,86.544,85.0676 +112336,86.27,83.5551 +112337,85.608,88.132 +112338,85.434,86.5779 +112339,85.23,85.0365 +112340,84.997,83.5085 +112341,84.21,88.132 +112342,84.078,86.5623 +112343,83.915,85.0059 +112344,83.723,83.4631 +112345,82.813,88.1307 +112346,82.723,86.5463 +112347,82.601,84.9756 +112348,82.45,83.4189 +112349,81.415,88.1282 +112350,81.367,86.5299 +112351,81.288,84.9457 +112352,81.178,83.376 +112353,80.017,88.1244 +112354,80.012,86.5131 +112355,79.974,84.9163 +112356,79.905,83.3344 +112357,78.619,88.1194 +112358,78.656,86.4958 +112359,78.66,84.8873 +112360,78.632,83.294 +112361,77.221,88.1131 +112362,77.301,86.4781 +112363,77.346,84.8587 +112364,77.36,83.2549 +112365,75.822,88.1056 +112366,75.945,86.46 +112367,76.033,84.8305 +112368,76.087,83.2171 +112369,74.424,88.0967 +112370,74.59,86.4414 +112371,74.719,84.8027 +112372,74.815,83.1806 +112373,73.026,88.0866 +112374,73.234,86.4224 +112375,73.405,84.7754 +112376,73.543,83.1454 +112377,71.628,88.0751 +112378,71.879,86.4029 +112379,72.092,84.7485 +112380,72.27,83.1115 +112381,70.231,88.0624 +112382,70.524,86.383 +112383,70.778,84.722 +112384,70.998,83.0789 +112385,68.833,88.0483 +112386,69.168,86.3627 +112387,69.465,84.696 +112388,69.725,83.0476 +112389,67.436,88.0329 +112390,67.813,86.3419 +112391,68.151,84.6704 +112392,68.452,83.0177 +112393,66.038,88.0162 +112394,66.458,86.3206 +112395,66.837,84.6452 +112396,67.179,82.989 +112397,64.642,87.9982 +112398,65.103,86.299 +112399,65.524,84.6204 +112400,65.906,82.9617 +112401,63.245,87.9789 +112402,63.749,86.2768 +112403,64.21,84.5961 +112404,64.633,82.9356 +112405,61.849,87.9582 +112406,62.394,86.2542 +112407,62.896,84.5722 +112408,63.359,82.9109 +112409,60.453,87.9362 +112410,61.04,86.2312 +112411,61.582,84.5488 +112412,62.085,82.8876 +112413,59.057,87.9128 +112414,59.685,86.2077 +112415,60.268,84.5258 +112416,60.811,82.8655 +112417,57.662,87.8882 +112418,58.331,86.1838 +112419,58.954,84.5032 +112420,59.536,82.8447 +112421,56.268,87.8622 +112422,56.977,86.1594 +112423,57.64,84.481 +112424,58.261,82.8253 +112425,54.873,87.8349 +112426,55.624,86.1346 +112427,56.326,84.4593 +112428,56.986,82.8071 +112429,53.48,87.8062 +112430,54.27,86.1094 +112431,55.011,84.438 +112432,55.71,82.7903 +112433,52.087,87.7762 +112434,52.917,86.0837 +112435,53.697,84.4172 +112436,54.434,82.7747 +112437,50.694,87.7449 +112438,51.564,86.0575 +112439,52.382,84.3967 +112440,53.157,82.7605 +112441,49.303,87.7123 +112442,50.211,86.0309 +112443,51.067,84.3767 +112444,51.88,82.7475 +112445,47.912,87.6784 +112446,48.858,86.0039 +112447,49.753,84.3571 +112448,50.602,82.7358 +112449,46.521,87.6432 +112450,47.506,85.9764 +112451,48.437,84.338 +112452,49.323,82.7254 +112453,45.131,87.6067 +112454,46.154,85.9485 +112455,47.122,84.3192 +112456,48.044,82.7162 +112457,43.742,87.5689 +112458,44.802,85.9202 +112459,45.807,84.3009 +112460,46.764,82.7083 +112461,42.354,87.5298 +112462,43.45,85.8914 +112463,44.491,84.283 +112464,45.484,82.7017 +112465,40.967,87.4894 +112466,42.099,85.8622 +112467,43.175,84.2655 +112468,44.203,82.6963 +112469,39.58,87.4478 +112470,40.748,85.8326 +112471,41.859,84.2484 +112472,42.921,82.692 +112473,38.195,87.4049 +112474,39.397,85.8026 +112475,40.542,84.2317 +112476,41.638,82.6891 +112477,36.81,87.3607 +112478,38.047,85.7722 +112479,39.226,84.2154 +112480,40.355,82.6873 +112481,35.426,87.3154 +112482,36.697,85.7413 +112483,37.909,84.1995 +112484,39.071,82.6866 +112485,34.043,87.2688 +112486,35.347,85.7101 +112487,36.592,84.184 +112488,37.786,82.6872 +112489,32.661,87.221 +112490,33.998,85.6784 +112491,35.274,84.1688 +112492,36.5,82.6889 +112493,31.281,87.1719 +112494,32.649,85.6463 +112495,33.957,84.1541 +112496,35.213,82.6918 +112497,29.901,87.1217 +112498,31.3,85.6139 +112499,32.639,84.1397 +112500,33.926,82.6958 +112501,28.522,87.0704 +112502,29.952,85.5811 +112503,31.321,84.1257 +112504,32.637,82.7009 +112505,27.144,87.0179 +112506,28.604,85.5478 +112507,30.002,84.1121 +112508,31.347,82.7071 +112509,25.768,86.9642 +112510,27.257,85.5142 +112511,28.683,84.0988 +112512,30.057,82.7144 +112513,24.392,86.9094 +112514,25.91,85.4803 +112515,27.364,84.0859 +112516,28.765,82.7228 +112517,23.018,86.8535 +112518,24.563,85.4459 +112519,26.045,84.0734 +112520,27.473,82.7322 +112521,21.645,86.7966 +112522,23.217,85.4112 +112523,24.725,84.0612 +112524,26.179,82.7426 +112525,20.273,86.7385 +112526,21.871,85.3762 +112527,23.405,84.0493 +112528,24.885,82.7541 +112529,18.903,86.6794 +112530,20.526,85.3408 +112531,22.085,84.0377 +112532,23.589,82.7665 +112533,17.533,86.6193 +112534,19.181,85.305 +112535,20.764,84.0265 +112536,22.292,82.7799 +112537,16.165,86.5581 +112538,17.836,85.269 +112539,19.443,84.0156 +112540,20.994,82.7943 +112541,14.798,86.496 +112542,16.492,85.2326 +112543,18.121,84.005 +112544,19.695,82.8096 +112545,13.433,86.4329 +112546,15.148,85.1958 +112547,16.799,83.9948 +112548,18.395,82.8258 +112549,12.068,86.3688 +112550,13.805,85.1588 +112551,15.477,83.9848 +112552,17.094,82.8429 +112553,10.705,86.3038 +112554,12.462,85.1215 +112555,14.154,83.9751 +112556,15.791,82.8608 +112557,9.3438,86.2379 +112558,11.12,85.0838 +112559,12.831,83.9657 +112560,14.487,82.8796 +112561,7.9837,86.1712 +112562,9.7783,85.0459 +112563,11.508,83.9565 +112564,13.182,82.8993 +112565,6.6249,86.1035 +112566,8.437,85.0077 +112567,10.184,83.9477 +112568,11.876,82.9197 +112569,5.2675,86.0351 +112570,7.0961,84.9692 +112571,8.86,83.9391 +112572,10.568,82.9409 +112573,3.9115,85.9658 +112574,5.7558,84.9304 +112575,7.5354,83.9307 +112576,9.2595,82.9628 +112577,2.557,85.8957 +112578,4.4159,84.8914 +112579,6.2104,83.9226 +112580,7.9494,82.9855 +112581,1.2039,85.8249 +112582,3.0766,84.8522 +112583,4.885,83.9147 +112584,6.6381,83.0088 +112585,359.85,85.7533 +112586,1.7377,84.8127 +112587,3.5592,83.9071 +112588,5.3254,83.0329 +112589,358.5,85.681 +112590,0.39933,84.7729 +112591,2.233,83.8997 +112592,4.0114,83.0576 +112593,357.15,85.608 +112594,359.06,84.733 +112595,0.90631,83.8925 +112596,2.696,83.0829 +112597,355.81,85.5344 +112598,357.72,84.6928 +112599,359.58,83.8855 +112600,1.3794,83.1088 +112601,354.46,85.4602 +112602,356.39,84.6524 +112603,358.25,83.8787 +112604,0.061358,83.1353 +112605,353.12,85.3853 +112606,355.05,84.6118 +112607,356.92,83.872 +112608,358.74,83.1624 +112609,351.77,85.3099 +112610,353.72,84.5711 +112611,355.6,83.8656 +112612,357.42,83.1899 +112613,350.43,85.2339 +112614,352.38,84.5301 +112615,354.27,83.8593 +112616,356.1,83.218 +112617,349.09,85.1575 +112618,351.05,84.489 +112619,352.94,83.8532 +112620,354.78,83.2465 +112621,347.75,85.0805 +112622,349.71,84.4477 +112623,351.61,83.8472 +112624,353.45,83.2755 +112625,346.42,85.003 +112626,348.38,84.4063 +112627,350.28,83.8414 +112628,352.12,83.3049 +112629,345.08,84.9252 +112630,347.04,84.3647 +112631,348.95,83.8356 +112632,350.8,83.3346 +112633,343.75,84.8469 +112634,345.71,84.3231 +112635,347.62,83.8301 +112636,349.47,83.3648 +112637,342.42,84.7683 +112638,344.38,84.2812 +112639,346.28,83.8246 +112640,348.14,83.3952 +112641,341.09,84.6893 +112642,343.05,84.2393 +112643,344.95,83.8192 +112644,346.81,83.426 +112645,339.76,84.61 +112646,341.72,84.1973 +112647,343.62,83.8139 +112648,345.47,83.457 +112649,338.43,84.5305 +112650,340.39,84.1551 +112651,342.29,83.8087 +112652,344.14,83.4883 +112653,337.1,84.4506 +112654,339.06,84.1129 +112655,340.95,83.8036 +112656,342.8,83.5198 +112657,335.78,84.3706 +112658,337.73,84.0707 +112659,339.62,83.7986 +112660,341.46,83.5514 +112661,334.46,84.2904 +112662,336.4,84.0283 +112663,338.29,83.7936 +112664,340.13,83.5833 +112665,333.13,84.21 +112666,335.07,83.9859 +112667,336.95,83.7886 +112668,338.78,83.6152 +112669,331.81,84.1295 +112670,333.74,83.9435 +112671,335.62,83.7837 +112672,337.44,83.6473 +112673,330.5,84.0489 +112674,332.41,83.901 +112675,334.28,83.7788 +112676,336.1,83.6794 +112677,329.18,83.9682 +112678,331.09,83.8586 +112679,332.94,83.7739 +112680,334.76,83.7116 +112681,327.86,83.8875 +112682,329.76,83.8161 +112683,331.61,83.769 +112684,333.41,83.7438 +112685,326.55,83.8068 +112686,328.43,83.7736 +112687,330.27,83.7642 +112688,332.06,83.776 +112689,325.24,83.7261 +112690,327.11,83.7311 +112691,328.93,83.7593 +112692,330.71,83.8082 +112693,323.92,83.6455 +112694,325.78,83.6886 +112695,327.6,83.7544 +112696,329.36,83.8403 +112697,322.61,83.5649 +112698,324.46,83.6461 +112699,326.26,83.7494 +112700,328.01,83.8723 +112701,321.31,83.4845 +112702,323.14,83.6037 +112703,324.92,83.7444 +112704,326.66,83.9041 +112705,320,83.4042 +112706,321.81,83.5614 +112707,323.58,83.7394 +112708,325.31,83.9358 +112709,318.69,83.3242 +112710,320.49,83.5191 +112711,322.24,83.7343 +112712,323.95,83.9673 +112713,317.39,83.2443 +112714,319.17,83.4769 +112715,320.9,83.7291 +112716,322.59,83.9987 +112717,316.09,83.1646 +112718,317.85,83.4347 +112719,319.56,83.7238 +112720,321.24,84.0297 +112721,314.79,83.0853 +112722,316.52,83.3927 +112723,318.22,83.7185 +112724,319.88,84.0605 +112725,313.49,83.0062 +112726,315.2,83.3507 +112727,316.88,83.713 +112728,318.52,84.0911 +112729,312.19,82.9275 +112730,313.88,83.3088 +112731,315.54,83.7075 +112732,317.15,84.1213 +112733,310.89,82.8491 +112734,312.56,83.2671 +112735,314.2,83.7018 +112736,315.79,84.1511 +112737,309.59,82.7711 +112738,311.24,83.2255 +112739,312.85,83.696 +112740,314.43,84.1806 +112741,308.3,82.6936 +112742,309.93,83.184 +112743,311.51,83.6901 +112744,313.06,84.2096 +112745,307.01,82.6164 +112746,308.61,83.1427 +112747,310.17,83.684 +112748,311.69,84.2383 +112749,305.71,82.5398 +112750,307.29,83.1015 +112751,308.82,83.6778 +112752,310.32,84.2665 +112753,304.42,82.4637 +112754,305.97,83.0605 +112755,307.48,83.6714 +112756,308.96,84.2942 +112757,303.13,82.3881 +112758,304.65,83.0197 +112759,306.14,83.6648 +112760,307.58,84.3214 +112761,301.85,82.313 +112762,303.34,82.979 +112763,304.79,83.658 +112764,306.21,84.348 +112765,300.56,82.2386 +112766,302.02,82.9386 +112767,303.45,83.6511 +112768,304.84,84.3741 +112769,299.27,82.1647 +112770,300.7,82.8983 +112771,302.1,83.6439 +112772,303.47,84.3996 +112773,297.99,82.0915 +112774,299.39,82.8583 +112775,300.76,83.6366 +112776,302.09,84.4245 +112777,296.7,82.019 +112778,298.07,82.8184 +112779,299.41,83.629 +112780,300.72,84.4488 +112781,295.42,81.9472 +112782,296.76,82.7788 +112783,298.06,83.6212 +112784,299.34,84.4724 +112785,294.14,81.8761 +112786,295.44,82.7395 +112787,296.72,83.6132 +112788,297.96,84.4954 +112789,292.86,81.8057 +112790,294.13,82.7003 +112791,295.37,83.6049 +112792,296.58,84.5176 +112793,291.58,81.7361 +112794,292.82,82.6615 +112795,294.02,83.5964 +112796,295.2,84.5391 +112797,290.3,81.6673 +112798,291.5,82.6228 +112799,292.68,83.5877 +112800,293.82,84.5599 +112801,289.02,81.5993 +112802,290.19,82.5845 +112803,291.33,83.5786 +112804,292.44,84.5798 +112805,287.74,81.5321 +112806,288.88,82.5464 +112807,289.98,83.5694 +112808,291.06,84.599 +112809,286.47,81.4658 +112810,287.56,82.5086 +112811,288.63,83.5598 +112812,289.67,84.6174 +112813,285.19,81.4004 +112814,286.25,82.4711 +112815,287.28,83.5499 +112816,288.29,84.6349 +112817,283.92,81.3359 +112818,284.94,82.4339 +112819,285.94,83.5398 +112820,286.9,84.6516 +112821,282.64,81.2723 +112822,283.63,82.397 +112823,284.59,83.5293 +112824,285.52,84.6674 +112825,281.37,81.2097 +112826,282.32,82.3605 +112827,283.24,83.5186 +112828,284.13,84.6823 +112829,280.1,81.148 +112830,281.01,82.3242 +112831,281.89,83.5075 +112832,282.74,84.6962 +112833,278.83,81.0874 +112834,279.7,82.2883 +112835,280.54,83.4961 +112836,281.35,84.7093 +112837,277.56,81.0277 +112838,278.39,82.2526 +112839,279.19,83.4844 +112840,279.96,84.7213 +112841,276.29,80.9691 +112842,277.08,82.2174 +112843,277.84,83.4724 +112844,278.57,84.7324 +112845,275.02,80.9115 +112846,275.77,82.1824 +112847,276.49,83.46 +112848,277.18,84.7426 +112849,273.75,80.8549 +112850,274.46,82.1478 +112851,275.14,83.4473 +112852,275.79,84.7517 +112853,272.48,80.7995 +112854,273.15,82.1136 +112855,273.79,83.4342 +112856,274.4,84.7597 +112857,271.21,80.7451 +112858,271.84,82.0798 +112859,272.44,83.4208 +112860,273.01,84.7668 +112861,269.95,80.6919 +112862,270.53,82.0462 +112863,271.09,83.4071 +112864,271.61,84.7728 +112865,268.68,80.6397 +112866,269.22,82.0131 +112867,269.74,83.3929 +112868,270.22,84.7777 +112869,267.41,80.5888 +112870,267.91,81.9804 +112871,268.38,83.3784 +112872,268.83,84.7815 +112873,266.15,80.5389 +112874,266.6,81.948 +112875,267.03,83.3635 +112876,267.43,84.7842 +112877,264.88,80.4902 +112878,265.3,81.916 +112879,265.68,83.3483 +112880,266.04,84.7858 +112881,263.62,80.4427 +112882,263.99,81.8844 +112883,264.33,83.3327 +112884,264.64,84.7863 +112885,262.35,80.3964 +112886,262.68,81.8531 +112887,262.98,83.3166 +112888,263.25,84.7857 +112889,261.09,80.3513 +112890,261.37,81.8223 +112891,261.63,83.3002 +112892,261.85,84.7839 +112893,259.82,80.3074 +112894,260.06,81.7919 +112895,260.28,83.2835 +112896,260.46,84.7809 +112897,258.56,80.2648 +112898,258.76,81.7619 +112899,258.93,83.2663 +112900,259.06,84.7768 +112901,257.3,80.2233 +112902,257.45,81.7323 +112903,257.57,83.2487 +112904,257.67,84.7714 +112905,256.03,80.1831 +112906,256.14,81.7031 +112907,256.22,83.2307 +112908,256.27,84.7649 +112909,254.77,80.1441 +112910,254.83,81.6743 +112911,254.87,83.2123 +112912,254.87,84.7572 +112913,253.5,80.1064 +112914,253.53,81.6459 +112915,253.52,83.1935 +112916,253.48,84.7483 +112917,252.24,80.07 +112918,252.22,81.6179 +112919,252.17,83.1743 +112920,252.08,84.7382 +112921,250.98,80.0348 +112922,250.91,81.5904 +112923,250.82,83.1547 +112924,250.68,84.7268 +112925,249.71,80.0009 +112926,249.61,81.5633 +112927,249.46,83.1346 +112928,249.29,84.7143 +112929,248.45,79.968 +112930,248.3,81.5366 +112931,248.11,83.1142 +112932,247.89,84.7004 +112933,247.19,79.937 +112934,246.99,81.5103 +112935,246.76,83.0933 +112936,246.49,84.6854 +112937,245.92,79.907 +112938,245.68,81.4845 +112939,245.41,83.0721 +112940,245.1,84.6691 +112941,244.66,79.878 +112942,244.38,81.459 +112943,244.06,83.0504 +112944,243.7,84.6516 +112945,243.4,79.85 +112946,243.07,81.434 +112947,242.71,83.0282 +112948,242.31,84.6328 +112949,242.13,79.824 +112950,241.76,81.4095 +112951,241.36,83.0057 +112952,240.91,84.6127 +112953,240.87,79.799 +112954,240.46,81.3853 +112955,240.01,82.9828 +112956,239.52,84.5914 +112957,239.6,79.776 +112958,239.15,81.3616 +112959,238.65,82.9594 +112960,238.12,84.5689 +112961,238.34,79.753 +112962,237.84,81.3383 +112963,237.3,82.9356 +112964,236.73,84.5451 +112965,237.07,79.732 +112966,236.53,81.3154 +112967,235.95,82.9114 +112968,235.33,84.52 +112969,235.81,79.712 +112970,235.23,81.293 +112971,234.6,82.8867 +112972,233.94,84.4937 +112973,234.54,79.694 +112974,233.92,81.271 +112975,233.25,82.8617 +112976,232.54,84.4661 +112977,233.28,79.676 +112978,232.61,81.2494 +112979,231.9,82.8362 +112980,231.15,84.4373 +112981,232.01,79.66 +112982,231.3,81.2282 +112983,230.55,82.8103 +112984,229.76,84.4072 +112985,230.74,79.646 +112986,229.99,81.2074 +112987,229.2,82.784 +112988,228.37,84.3759 +112989,229.47,79.632 +112990,228.68,81.1871 +112991,227.85,82.7573 +112992,226.98,84.3433 +112993,228.2,79.62 +112994,227.38,81.1672 +112995,226.51,82.7302 +112996,225.59,84.3095 +112997,226.94,79.609 +112998,226.07,81.1477 +112999,225.16,82.7027 +113000,224.2,84.2745 +113001,225.67,79.599 +113002,224.76,81.1286 +113003,223.81,82.6747 +113004,222.81,84.2383 +113005,224.4,79.59 +113006,223.45,81.1099 +113007,222.46,82.6464 +113008,221.42,84.2008 +113009,223.12,79.583 +113010,222.14,81.0917 +113011,221.11,82.6176 +113012,220.03,84.1621 +113013,221.85,79.577 +113014,220.83,81.0738 +113015,219.76,82.5885 +113016,218.64,84.1222 +113017,220.58,79.572 +113018,219.52,81.0563 +113019,218.42,82.559 +113020,217.26,84.0811 +113021,219.31,79.568 +113022,218.21,81.0392 +113023,217.07,82.529 +113024,215.87,84.0388 +113025,218.03,79.566 +113026,216.9,81.0226 +113027,215.72,82.4987 +113028,214.49,83.9954 +113029,216.76,79.564 +113030,215.59,81.0063 +113031,214.37,82.468 +113032,213.1,83.9508 +113033,215.48,79.564 +113034,214.28,80.9904 +113035,213.03,82.4369 +113036,211.72,83.905 +113037,214.21,79.565 +113038,212.97,80.9749 +113039,211.68,82.4055 +113040,210.34,83.8581 +113041,212.93,79.567 +113042,211.66,80.9597 +113043,210.34,82.3736 +113044,208.96,83.8101 +113045,211.65,79.57 +113046,210.35,80.9449 +113047,208.99,82.3414 +113048,207.58,83.7609 +113049,210.37,79.574 +113050,209.03,80.9305 +113051,207.65,82.3089 +113052,206.2,83.7106 +113053,209.09,79.579 +113054,207.72,80.9165 +113055,206.3,82.2759 +113056,204.82,83.6593 +113057,207.81,79.585 +113058,206.41,80.9028 +113059,204.96,82.2427 +113060,203.44,83.6068 +113061,206.53,79.592 +113062,205.1,80.8894 +113063,203.61,82.209 +113064,202.07,83.5533 +113065,205.24,79.601 +113066,203.78,80.8765 +113067,202.27,82.1751 +113068,200.69,83.4988 +113069,203.96,79.61 +113070,202.47,80.8638 +113071,200.93,82.1408 +113072,199.32,83.4432 +113073,202.67,79.62 +113074,201.16,80.8515 +113075,199.59,82.1061 +113076,197.95,83.3866 +113077,201.39,79.632 +113078,199.84,80.8395 +113079,198.24,82.0712 +113080,196.58,83.3291 +113081,200.1,79.644 +113082,198.53,80.8278 +113083,196.9,82.0359 +113084,195.21,83.2705 +113085,198.81,79.657 +113086,197.21,80.8165 +113087,195.56,82.0003 +113088,193.84,83.211 +113089,197.52,79.671 +113090,195.9,80.8054 +113091,194.22,81.9644 +113092,192.47,83.1506 +113093,196.23,79.686 +113094,194.58,80.7947 +113095,192.88,81.9282 +113096,191.11,83.0892 +113097,194.93,79.702 +113098,193.27,80.7842 +113099,191.54,81.8917 +113100,189.74,83.0269 +113101,193.64,79.718 +113102,191.95,80.7741 +113103,190.2,81.855 +113104,188.38,82.9638 +113105,192.34,79.736 +113106,190.63,80.7642 +113107,188.86,81.8179 +113108,187.02,82.8998 +113109,191.05,79.754 +113110,189.32,80.7546 +113111,187.52,81.7806 +113112,185.66,82.8349 +113113,189.75,79.773 +113114,188,80.7452 +113115,186.19,81.743 +113116,184.3,82.7693 +113117,188.45,79.793 +113118,186.68,80.7361 +113119,184.85,81.7052 +113120,182.94,82.7029 +113121,187.15,79.813 +113122,185.36,80.7273 +113123,183.51,81.6671 +113124,181.59,82.6356 +113125,185.85,79.835 +113126,184.04,80.7187 +113127,182.17,81.6288 +113128,180.23,82.5677 +113129,184.55,79.856 +113130,182.72,80.7103 +113131,180.84,81.5902 +113132,178.88,82.499 +113133,183.24,79.879 +113134,181.4,80.7022 +113135,179.5,81.5514 +113136,177.53,82.4296 +113137,181.94,79.902 +113138,180.08,80.6943 +113139,178.17,81.5124 +113140,176.18,82.3596 +113141,180.63,79.926 +113142,178.76,80.6866 +113143,176.83,81.4732 +113144,174.83,82.2889 +113145,179.32,79.95 +113146,177.44,80.6791 +113147,175.5,81.4338 +113148,173.49,82.2176 +113149,178.01,79.975 +113150,176.12,80.6718 +113151,174.17,81.3943 +113152,172.14,82.1457 +113153,176.7,80.0007 +113154,174.8,80.6646 +113155,172.83,81.3545 +113156,170.8,82.0732 +113157,175.39,80.0266 +113158,173.48,80.6577 +113159,171.5,81.3145 +113160,169.46,82.0002 +113161,174.07,80.053 +113162,172.15,80.6509 +113163,170.17,81.2744 +113164,168.11,81.9267 +113165,172.76,80.0799 +113166,170.83,80.6443 +113167,168.84,81.2342 +113168,166.78,81.8526 +113169,171.44,80.1072 +113170,169.51,80.6378 +113171,167.51,81.1938 +113172,165.44,81.7781 +113173,170.12,80.1348 +113174,168.18,80.6314 +113175,166.18,81.1532 +113176,164.1,81.7032 +113177,168.8,80.1629 +113178,166.86,80.6252 +113179,164.85,81.1126 +113180,162.77,81.6279 +113181,167.48,80.1913 +113182,165.53,80.6191 +113183,163.52,81.0718 +113184,161.44,81.5522 +113185,166.16,80.22 +113186,164.21,80.6132 +113187,162.19,81.0309 +113188,160.11,81.4761 +113189,164.83,80.249 +113190,162.88,80.6073 +113191,160.86,80.9899 +113192,158.78,81.3998 +113193,163.51,80.2782 +113194,161.55,80.6015 +113195,159.54,80.9488 +113196,157.45,81.3231 +113197,162.18,80.3077 +113198,160.22,80.5958 +113199,158.21,80.9076 +113200,156.12,81.2461 +113201,160.85,80.3374 +113202,158.9,80.5902 +113203,156.88,80.8664 +113204,154.8,81.169 +113205,159.52,80.3672 +113206,157.57,80.5846 +113207,155.56,80.8251 +113208,153.48,81.0916 +113209,158.19,80.3972 +113210,156.24,80.5791 +113211,154.23,80.7838 +113212,152.15,81.014 +113213,156.85,80.4273 +113214,154.91,80.5737 +113215,152.91,80.7424 +113216,150.83,80.9363 +113217,155.52,80.4576 +113218,153.58,80.5683 +113219,151.58,80.701 +113220,149.52,80.8585 +113221,154.18,80.4878 +113222,152.25,80.5629 +113223,150.26,80.6595 +113224,148.2,80.7806 +113225,152.84,80.5181 +113226,150.92,80.5575 +113227,148.94,80.6181 +113228,146.89,80.7026 +113229,151.51,80.5485 +113230,149.59,80.5521 +113231,147.61,80.5766 +113232,145.57,80.6246 +113233,150.16,80.5788 +113234,148.26,80.5468 +113235,146.29,80.5352 +113236,144.26,80.5466 +113237,148.82,80.609 +113238,146.93,80.5414 +113239,144.97,80.4937 +113240,142.95,80.4687 +113241,147.48,80.6392 +113242,145.59,80.536 +113243,143.65,80.4523 +113244,141.64,80.3908 +113245,146.13,80.6692 +113246,144.26,80.5306 +113247,142.33,80.411 +113248,140.33,80.3129 +113249,144.79,80.6992 +113250,142.93,80.5252 +113251,141.01,80.3696 +113252,139.03,80.2352 +113253,143.44,80.729 +113254,141.59,80.5197 +113255,139.69,80.3284 +113256,137.73,80.1577 +113257,142.09,80.7586 +113258,140.26,80.5141 +113259,138.37,80.2872 +113260,136.42,80.0803 +113261,140.74,80.7879 +113262,138.92,80.5085 +113263,137.05,80.246 +113264,135.12,80.0032 +113265,139.39,80.8171 +113266,137.59,80.5028 +113267,135.74,80.205 +113268,133.82,79.926 +113269,138.03,80.8459 +113270,136.25,80.497 +113271,134.42,80.164 +113272,132.52,79.85 +113273,136.68,80.8745 +113274,134.92,80.4911 +113275,133.1,80.1232 +113276,131.23,79.773 +113277,135.32,80.9028 +113278,133.58,80.4851 +113279,131.79,80.0824 +113280,129.93,79.697 +113281,133.97,80.9307 +113282,132.24,80.479 +113283,130.47,80.0418 +113284,128.64,79.621 +113285,132.61,80.9582 +113286,130.91,80.4728 +113287,129.15,80.0013 +113288,127.35,79.546 +113289,131.25,80.9853 +113290,129.57,80.4665 +113291,127.84,79.961 +113292,126.06,79.471 +113293,129.88,81.012 +113294,128.23,80.46 +113295,126.53,79.921 +113296,124.77,79.397 +113297,128.52,81.0383 +113298,126.89,80.4534 +113299,125.21,79.881 +113300,123.48,79.323 +113301,127.16,81.0641 +113302,125.55,80.4466 +113303,123.9,79.841 +113304,122.19,79.249 +113305,125.79,81.0893 +113306,124.21,80.4396 +113307,122.59,79.801 +113308,120.91,79.176 +113309,124.43,81.1141 +113310,122.87,80.4325 +113311,121.27,79.762 +113312,119.62,79.104 +113313,123.06,81.1383 +113314,121.53,80.4252 +113315,119.96,79.722 +113316,118.34,79.032 +113317,121.69,81.1619 +113318,120.19,80.4177 +113319,118.65,79.683 +113320,117.06,78.961 +113321,120.32,81.1849 +113322,118.85,80.41 +113323,117.34,79.644 +113324,115.78,78.89 +113325,118.95,81.2073 +113326,117.51,80.4021 +113327,116.03,79.606 +113328,114.5,78.82 +113329,117.57,81.229 +113330,116.17,80.394 +113331,114.72,79.567 +113332,113.22,78.751 +113333,116.2,81.2501 +113334,114.83,80.3857 +113335,113.41,79.529 +113336,111.95,78.682 +113337,114.83,81.2705 +113338,113.48,80.3771 +113339,112.1,79.491 +113340,110.67,78.614 +113341,113.45,81.2902 +113342,112.14,80.3683 +113343,110.79,79.453 +113344,109.4,78.547 +113345,112.07,81.3091 +113346,110.8,80.3593 +113347,109.48,79.416 +113348,108.12,78.481 +113349,110.69,81.3273 +113350,109.45,80.35 +113351,108.17,79.379 +113352,106.85,78.415 +113353,109.32,81.3447 +113354,108.11,80.3404 +113355,106.86,79.342 +113356,105.58,78.35 +113357,107.94,81.3613 +113358,106.77,80.3306 +113359,105.56,79.305 +113360,104.31,78.286 +113361,106.56,81.3771 +113362,105.42,80.3205 +113363,104.25,79.269 +113364,103.04,78.223 +113365,105.17,81.392 +113366,104.08,80.3101 +113367,102.94,79.233 +113368,101.77,78.161 +113369,103.79,81.4061 +113370,102.73,80.2995 +113371,101.64,79.197 +113372,100.5,78.1 +113373,102.41,81.4193 +113374,101.39,80.2885 +113375,100.33,79.161 +113376,99.236,78.04 +113377,101.02,81.4317 +113378,100.04,80.2773 +113379,99.024,79.126 +113380,97.97,77.98 +113381,99.638,81.4431 +113382,98.696,80.2657 +113383,97.719,79.091 +113384,96.705,77.922 +113385,98.252,81.4535 +113386,97.35,80.2538 +113387,96.414,79.057 +113388,95.441,77.864 +113389,96.865,81.4631 +113390,96.004,80.2417 +113391,95.108,79.023 +113392,94.177,77.808 +113393,95.477,81.4716 +113394,94.658,80.2292 +113395,93.804,78.989 +113396,92.914,77.752 +113397,94.089,81.4792 +113398,93.311,80.2163 +113399,92.499,78.955 +113400,91.652,77.698 +113401,92.7,81.4858 +113402,91.964,80.2032 +113403,91.195,78.922 +113404,90.391,77.645 +113405,91.311,81.4914 +113406,90.617,80.1897 +113407,89.891,78.889 +113408,89.13,77.592 +113409,89.921,81.4959 +113410,89.27,80.1758 +113411,88.587,78.857 +113412,87.87,77.541 +113413,88.53,81.4994 +113414,87.923,80.1616 +113415,87.283,78.825 +113416,86.611,77.491 +113417,87.139,81.5019 +113418,86.576,80.1471 +113419,85.98,78.793 +113420,85.352,77.442 +113421,85.747,81.5033 +113422,85.228,80.1322 +113423,84.677,78.762 +113424,84.093,77.394 +113425,84.355,81.5036 +113426,83.88,80.1169 +113427,83.374,78.731 +113428,82.835,77.348 +113429,82.962,81.5028 +113430,82.532,80.1013 +113431,82.071,78.7 +113432,81.577,77.302 +113433,81.569,81.5009 +113434,81.185,80.0853 +113435,80.768,78.67 +113436,80.32,77.258 +113437,80.176,81.4979 +113438,79.836,80.0689 +113439,79.466,78.641 +113440,79.063,77.214 +113441,78.782,81.4938 +113442,78.488,80.0522 +113443,78.163,78.611 +113444,77.806,77.172 +113445,77.388,81.4886 +113446,77.14,80.035 +113447,76.861,78.582 +113448,76.55,77.132 +113449,75.993,81.4822 +113450,75.792,80.0175 +113451,75.559,78.554 +113452,75.294,77.092 +113453,74.599,81.4747 +113454,74.444,80 +113455,74.257,78.525 +113456,74.038,77.053 +113457,73.204,81.466 +113458,73.095,79.981 +113459,72.955,78.498 +113460,72.782,77.016 +113461,71.809,81.4561 +113462,71.747,79.963 +113463,71.653,78.47 +113464,71.527,76.98 +113465,70.414,81.4451 +113466,70.398,79.944 +113467,70.351,78.443 +113468,70.271,76.946 +113469,69.018,81.4329 +113470,69.05,79.924 +113471,69.049,78.417 +113472,69.016,76.912 +113473,67.623,81.4195 +113474,67.702,79.904 +113475,67.747,78.391 +113476,67.761,76.88 +113477,66.228,81.4049 +113478,66.353,79.884 +113479,66.445,78.365 +113480,66.505,76.849 +113481,64.832,81.3892 +113482,65.005,79.863 +113483,65.144,78.34 +113484,65.25,76.819 +113485,63.437,81.3722 +113486,63.657,79.842 +113487,63.842,78.315 +113488,63.995,76.79 +113489,62.042,81.354 +113490,62.308,79.821 +113491,62.54,78.29 +113492,62.739,76.763 +113493,60.647,81.3347 +113494,60.96,79.799 +113495,61.238,78.266 +113496,61.484,76.737 +113497,59.252,81.3141 +113498,59.612,79.777 +113499,59.937,78.243 +113500,60.228,76.712 +113501,57.857,81.2924 +113502,58.264,79.754 +113503,58.635,78.219 +113504,58.972,76.689 +113505,56.463,81.2694 +113506,56.916,79.731 +113507,57.333,78.197 +113508,57.715,76.666 +113509,55.068,81.2452 +113510,55.568,79.708 +113511,56.031,78.174 +113512,56.459,76.645 +113513,53.674,81.2198 +113514,54.221,79.684 +113515,54.729,78.152 +113516,55.202,76.626 +113517,52.281,81.1933 +113518,52.873,79.66 +113519,53.427,78.131 +113520,53.945,76.607 +113521,50.887,81.1655 +113522,51.526,79.635 +113523,52.125,78.109 +113524,52.687,76.59 +113525,49.495,81.1365 +113526,50.178,79.61 +113527,50.822,78.089 +113528,51.429,76.574 +113529,48.102,81.1063 +113530,48.831,79.584 +113531,49.52,78.068 +113532,50.171,76.559 +113533,46.71,81.075 +113534,47.484,79.559 +113535,48.217,78.049 +113536,48.912,76.545 +113537,45.319,81.0424 +113538,46.138,79.532 +113539,46.914,78.029 +113540,47.652,76.533 +113541,43.928,81.0087 +113542,44.791,79.506 +113543,45.611,78.01 +113544,46.392,76.522 +113545,42.537,80.9737 +113546,43.445,79.479 +113547,44.308,77.991 +113548,45.132,76.512 +113549,41.148,80.9377 +113550,42.099,79.451 +113551,43.005,77.973 +113552,43.87,76.503 +113553,39.759,80.9004 +113554,40.753,79.424 +113555,41.702,77.955 +113556,42.609,76.496 +113557,38.37,80.862 +113558,39.408,79.395 +113559,40.398,77.938 +113560,41.346,76.489 +113561,36.983,80.8224 +113562,38.062,79.367 +113563,39.094,77.921 +113564,40.083,76.484 +113565,35.596,80.7817 +113566,36.717,79.338 +113567,37.79,77.904 +113568,38.819,76.48 +113569,34.21,80.7399 +113570,35.373,79.309 +113571,36.486,77.888 +113572,37.554,76.477 +113573,32.824,80.697 +113574,34.028,79.279 +113575,35.181,77.872 +113576,36.289,76.475 +113577,31.44,80.6529 +113578,32.684,79.249 +113579,33.876,77.856 +113580,35.022,76.475 +113581,30.056,80.6078 +113582,31.34,79.218 +113583,32.571,77.841 +113584,33.755,76.475 +113585,28.674,80.5615 +113586,29.997,79.188 +113587,31.266,77.826 +113588,32.487,76.477 +113589,27.292,80.5142 +113590,28.654,79.157 +113591,29.96,77.812 +113592,31.218,76.48 +113593,25.911,80.4658 +113594,27.311,79.125 +113595,28.654,77.798 +113596,29.948,76.483 +113597,24.532,80.4164 +113598,25.969,79.093 +113599,27.348,77.784 +113600,28.677,76.488 +113601,23.153,80.3659 +113602,24.626,79.061 +113603,26.041,77.771 +113604,27.405,76.494 +113605,21.775,80.3144 +113606,23.285,79.029 +113607,24.734,77.758 +113608,26.132,76.501 +113609,20.399,80.2619 +113610,21.943,78.996 +113611,23.427,77.745 +113612,24.858,76.509 +113613,19.024,80.2084 +113614,20.603,78.963 +113615,22.119,77.733 +113616,23.583,76.518 +113617,17.649,80.1539 +113618,19.262,78.929 +113619,20.812,77.721 +113620,22.307,76.528 +113621,16.276,80.0985 +113622,17.922,78.895 +113623,19.503,77.709 +113624,21.03,76.539 +113625,14.905,80.0421 +113626,16.582,78.861 +113627,18.195,77.698 +113628,19.751,76.55 +113629,13.534,79.985 +113630,15.243,78.827 +113631,16.886,77.687 +113632,18.471,76.563 +113633,12.165,79.927 +113634,13.904,78.792 +113635,15.576,77.676 +113636,17.191,76.577 +113637,10.797,79.868 +113638,12.566,78.757 +113639,14.266,77.665 +113640,15.909,76.591 +113641,9.4302,79.808 +113642,11.228,78.722 +113643,12.956,77.655 +113644,14.625,76.606 +113645,8.0649,79.747 +113646,9.8903,78.686 +113647,11.646,77.645 +113648,13.341,76.622 +113649,6.701,79.685 +113650,8.5533,78.651 +113651,10.335,77.636 +113652,12.055,76.639 +113653,5.3384,79.623 +113654,7.2168,78.615 +113655,9.0231,77.627 +113656,10.768,76.657 +113657,3.9773,79.559 +113658,5.8807,78.578 +113659,7.7113,77.618 +113660,9.4795,76.675 +113661,2.6176,79.495 +113662,4.5451,78.542 +113663,6.399,77.609 +113664,8.1898,76.695 +113665,1.2593,79.431 +113666,3.2101,78.505 +113667,5.0863,77.6 +113668,6.8987,76.715 +113669,359.9,79.365 +113670,1.8755,78.468 +113671,3.7731,77.592 +113672,5.6063,76.735 +113673,358.55,79.299 +113674,0.54142,78.431 +113675,2.4595,77.584 +113676,4.3125,76.757 +113677,357.19,79.232 +113678,359.21,78.393 +113679,1.1455,77.576 +113680,3.0173,76.779 +113681,355.84,79.165 +113682,357.87,78.356 +113683,359.83,77.568 +113684,1.7206,76.801 +113685,354.49,79.096 +113686,356.54,78.318 +113687,358.52,77.561 +113688,0.42258,76.824 +113689,353.14,79.028 +113690,355.21,78.28 +113691,357.2,77.554 +113692,359.12,76.848 +113693,351.79,78.958 +113694,353.88,78.241 +113695,355.88,77.547 +113696,357.82,76.872 +113697,350.45,78.889 +113698,352.55,78.203 +113699,354.57,77.54 +113700,356.52,76.897 +113701,349.1,78.818 +113702,351.22,78.164 +113703,353.25,77.533 +113704,355.22,76.923 +113705,347.76,78.747 +113706,349.89,78.126 +113707,351.93,77.527 +113708,353.91,76.948 +113709,346.42,78.676 +113710,348.56,78.087 +113711,350.62,77.52 +113712,352.6,76.975 +113713,345.08,78.604 +113714,347.23,78.048 +113715,349.3,77.514 +113716,351.3,77.001 +113717,343.74,78.532 +113718,345.9,78.008 +113719,347.98,77.508 +113720,349.99,77.028 +113721,342.41,78.459 +113722,344.57,77.969 +113723,346.66,77.502 +113724,348.67,77.056 +113725,341.07,78.386 +113726,343.25,77.93 +113727,345.34,77.496 +113728,347.36,77.084 +113729,339.74,78.312 +113730,341.92,77.89 +113731,344.02,77.491 +113732,346.05,77.112 +113733,338.41,78.239 +113734,340.59,77.85 +113735,342.7,77.485 +113736,344.73,77.14 +113737,337.08,78.165 +113738,339.27,77.811 +113739,341.38,77.48 +113740,343.41,77.169 +113741,335.75,78.09 +113742,337.94,77.771 +113743,340.06,77.474 +113744,342.09,77.197 +113745,334.42,78.016 +113746,336.62,77.731 +113747,338.73,77.469 +113748,340.77,77.227 +113749,333.1,77.941 +113750,335.3,77.691 +113751,337.41,77.464 +113752,339.45,77.256 +113753,331.78,77.866 +113754,333.97,77.651 +113755,336.09,77.458 +113756,338.13,77.285 +113757,330.45,77.791 +113758,332.65,77.611 +113759,334.76,77.453 +113760,336.8,77.315 +113761,329.14,77.716 +113762,331.33,77.571 +113763,333.44,77.448 +113764,335.48,77.344 +113765,327.82,77.641 +113766,330.01,77.531 +113767,332.11,77.443 +113768,334.15,77.374 +113769,326.5,77.565 +113770,328.69,77.491 +113771,330.79,77.438 +113772,332.82,77.404 +113773,325.19,77.49 +113774,327.37,77.451 +113775,329.46,77.433 +113776,331.49,77.433 +113777,323.87,77.415 +113778,326.05,77.411 +113779,328.14,77.428 +113780,330.15,77.463 +113781,322.56,77.339 +113782,324.73,77.371 +113783,326.81,77.423 +113784,328.82,77.493 +113785,321.25,77.264 +113786,323.41,77.331 +113787,325.48,77.418 +113788,327.48,77.522 +113789,319.95,77.189 +113790,322.09,77.291 +113791,324.15,77.413 +113792,326.15,77.552 +113793,318.64,77.113 +113794,320.77,77.251 +113795,322.83,77.408 +113796,324.81,77.581 +113797,317.34,77.038 +113798,319.46,77.211 +113799,321.5,77.402 +113800,323.47,77.61 +113801,316.03,76.963 +113802,318.14,77.171 +113803,320.17,77.397 +113804,322.12,77.639 +113805,314.73,76.889 +113806,316.82,77.131 +113807,318.84,77.392 +113808,320.78,77.668 +113809,313.43,76.814 +113810,315.51,77.092 +113811,317.51,77.387 +113812,319.44,77.697 +113813,312.13,76.74 +113814,314.19,77.052 +113815,316.18,77.381 +113816,318.09,77.725 +113817,310.84,76.666 +113818,312.88,77.012 +113819,314.84,77.376 +113820,316.74,77.753 +113821,309.54,76.593 +113822,311.57,76.973 +113823,313.51,77.37 +113824,315.39,77.781 +113825,308.25,76.519 +113826,310.25,76.934 +113827,312.18,77.364 +113828,314.04,77.808 +113829,306.96,76.446 +113830,308.94,76.895 +113831,310.85,77.358 +113832,312.69,77.835 +113833,305.67,76.374 +113834,307.63,76.856 +113835,309.51,77.352 +113836,311.33,77.862 +113837,304.38,76.302 +113838,306.32,76.817 +113839,308.18,77.346 +113840,309.98,77.888 +113841,303.09,76.23 +113842,305,76.778 +113843,306.85,77.34 +113844,308.62,77.913 +113845,301.81,76.159 +113846,303.69,76.739 +113847,305.51,77.334 +113848,307.27,77.939 +113849,300.52,76.088 +113850,302.38,76.701 +113851,304.18,77.327 +113852,305.91,77.963 +113853,299.24,76.018 +113854,301.07,76.663 +113855,302.84,77.32 +113856,304.55,77.988 +113857,297.96,75.948 +113858,299.77,76.625 +113859,301.51,77.313 +113860,303.18,78.011 +113861,296.68,75.879 +113862,298.46,76.587 +113863,300.17,77.306 +113864,301.82,78.035 +113865,295.4,75.81 +113866,297.15,76.549 +113867,298.83,77.299 +113868,300.46,78.057 +113869,294.12,75.743 +113870,295.84,76.512 +113871,297.49,77.292 +113872,299.09,78.079 +113873,292.85,75.675 +113874,294.53,76.475 +113875,296.16,77.284 +113876,297.72,78.1 +113877,291.57,75.609 +113878,293.23,76.438 +113879,294.82,77.276 +113880,296.35,78.121 +113881,290.3,75.543 +113882,291.92,76.401 +113883,293.48,77.268 +113884,294.98,78.141 +113885,289.03,75.478 +113886,290.61,76.365 +113887,292.14,77.26 +113888,293.61,78.16 +113889,287.76,75.413 +113890,289.31,76.328 +113891,290.8,77.251 +113892,292.24,78.179 +113893,286.49,75.35 +113894,288,76.292 +113895,289.46,77.242 +113896,290.87,78.197 +113897,285.22,75.287 +113898,286.7,76.257 +113899,288.12,77.233 +113900,289.5,78.214 +113901,283.95,75.225 +113902,285.39,76.221 +113903,286.78,77.224 +113904,288.12,78.23 +113905,282.68,75.164 +113906,284.09,76.186 +113907,285.44,77.214 +113908,286.74,78.246 +113909,281.42,75.103 +113910,282.79,76.151 +113911,284.1,77.204 +113912,285.37,78.26 +113913,280.16,75.044 +113914,281.48,76.117 +113915,282.76,77.194 +113916,283.99,78.274 +113917,278.89,74.985 +113918,280.18,76.082 +113919,281.42,77.184 +113920,282.61,78.287 +113921,277.63,74.928 +113922,278.88,76.048 +113923,280.08,77.173 +113924,281.23,78.299 +113925,276.37,74.871 +113926,277.58,76.015 +113927,278.74,77.162 +113928,279.85,78.31 +113929,275.11,74.815 +113930,276.27,75.981 +113931,277.39,77.15 +113932,278.47,78.32 +113933,273.85,74.761 +113934,274.97,75.948 +113935,276.05,77.139 +113936,277.08,78.33 +113937,272.59,74.707 +113938,273.67,75.916 +113939,274.71,77.127 +113940,275.7,78.338 +113941,271.33,74.654 +113942,272.37,75.883 +113943,273.36,77.115 +113944,274.31,78.346 +113945,270.08,74.602 +113946,271.07,75.851 +113947,272.02,77.102 +113948,272.93,78.352 +113949,268.82,74.552 +113950,269.77,75.82 +113951,270.68,77.089 +113952,271.54,78.358 +113953,267.56,74.502 +113954,268.47,75.788 +113955,269.33,77.076 +113956,270.15,78.362 +113957,266.31,74.453 +113958,267.17,75.758 +113959,267.99,77.062 +113960,268.77,78.365 +113961,265.06,74.406 +113962,265.87,75.727 +113963,266.64,77.048 +113964,267.38,78.368 +113965,263.8,74.359 +113966,264.57,75.697 +113967,265.3,77.034 +113968,265.99,78.369 +113969,262.55,74.314 +113970,263.27,75.667 +113971,263.95,77.019 +113972,264.6,78.369 +113973,261.3,74.27 +113974,261.97,75.637 +113975,262.61,77.004 +113976,263.21,78.369 +113977,260.05,74.227 +113978,260.67,75.608 +113979,261.27,76.989 +113980,261.82,78.367 +113981,258.79,74.185 +113982,259.38,75.58 +113983,259.92,76.973 +113984,260.43,78.364 +113985,257.54,74.144 +113986,258.08,75.551 +113987,258.57,76.957 +113988,259.04,78.36 +113989,256.29,74.105 +113990,256.78,75.523 +113991,257.23,76.941 +113992,257.64,78.355 +113993,255.04,74.066 +113994,255.48,75.496 +113995,255.88,76.924 +113996,256.25,78.348 +113997,253.79,74.029 +113998,254.18,75.469 +113999,254.54,76.906 +114000,254.86,78.341 +114001,252.54,73.993 +114002,252.89,75.442 +114003,253.19,76.889 +114004,253.47,78.333 +114005,251.29,73.958 +114006,251.59,75.415 +114007,251.85,76.871 +114008,252.07,78.323 +114009,250.05,73.925 +114010,250.29,75.389 +114011,250.5,76.852 +114012,250.68,78.312 +114013,248.8,73.892 +114014,248.99,75.364 +114015,249.15,76.834 +114016,249.28,78.3 +114017,247.55,73.861 +114018,247.69,75.339 +114019,247.81,76.815 +114020,247.89,78.287 +114021,246.3,73.831 +114022,246.4,75.314 +114023,246.46,76.795 +114024,246.5,78.273 +114025,245.05,73.802 +114026,245.1,75.29 +114027,245.12,76.775 +114028,245.1,78.257 +114029,243.8,73.775 +114030,243.8,75.266 +114031,243.77,76.755 +114032,243.71,78.241 +114033,242.55,73.748 +114034,242.51,75.242 +114035,242.42,76.734 +114036,242.31,78.223 +114037,241.31,73.723 +114038,241.21,75.219 +114039,241.08,76.713 +114040,240.92,78.204 +114041,240.06,73.699 +114042,239.91,75.196 +114043,239.73,76.691 +114044,239.52,78.184 +114045,238.81,73.677 +114046,238.61,75.174 +114047,238.39,76.67 +114048,238.13,78.162 +114049,237.56,73.656 +114050,237.32,75.152 +114051,237.04,76.647 +114052,236.73,78.14 +114053,236.31,73.635 +114054,236.02,75.131 +114055,235.7,76.625 +114056,235.34,78.116 +114057,235.06,73.616 +114058,234.72,75.109 +114059,234.35,76.602 +114060,233.94,78.091 +114061,233.81,73.599 +114062,233.42,75.089 +114063,233,76.578 +114064,232.55,78.065 +114065,232.56,73.582 +114066,232.13,75.069 +114067,231.66,76.554 +114068,231.16,78.038 +114069,231.31,73.567 +114070,230.83,75.049 +114071,230.31,76.53 +114072,229.76,78.01 +114073,230.06,73.553 +114074,229.53,75.029 +114075,228.97,76.505 +114076,228.37,77.98 +114077,228.81,73.54 +114078,228.23,75.01 +114079,227.62,76.48 +114080,226.98,77.95 +114081,227.56,73.529 +114082,226.93,74.992 +114083,226.28,76.455 +114084,225.58,77.918 +114085,226.31,73.518 +114086,225.64,74.973 +114087,224.93,76.429 +114088,224.19,77.885 +114089,225.05,73.509 +114090,224.34,74.955 +114091,223.59,76.403 +114092,222.8,77.851 +114093,223.8,73.501 +114094,223.04,74.938 +114095,222.24,76.376 +114096,221.41,77.815 +114097,222.55,73.494 +114098,221.74,74.921 +114099,220.9,76.349 +114100,220.02,77.779 +114101,221.29,73.489 +114102,220.44,74.904 +114103,219.56,76.322 +114104,218.63,77.741 +114105,220.04,73.484 +114106,219.14,74.888 +114107,218.21,76.294 +114108,217.24,77.703 +114109,218.78,73.481 +114110,217.84,74.872 +114111,216.87,76.266 +114112,215.85,77.663 +114113,217.53,73.478 +114114,216.54,74.856 +114115,215.53,76.238 +114116,214.46,77.622 +114117,216.27,73.477 +114118,215.25,74.841 +114119,214.18,76.209 +114120,213.08,77.58 +114121,215.01,73.477 +114122,213.95,74.827 +114123,212.84,76.18 +114124,211.69,77.537 +114125,213.75,73.478 +114126,212.64,74.812 +114127,211.5,76.151 +114128,210.3,77.493 +114129,212.49,73.48 +114130,211.34,74.798 +114131,210.16,76.121 +114132,208.92,77.448 +114133,211.23,73.484 +114134,210.04,74.784 +114135,208.81,76.09 +114136,207.53,77.401 +114137,209.97,73.488 +114138,208.74,74.771 +114139,207.47,76.06 +114140,206.15,77.354 +114141,208.71,73.493 +114142,207.44,74.758 +114143,206.13,76.029 +114144,204.77,77.306 +114145,207.44,73.5 +114146,206.14,74.745 +114147,204.79,75.998 +114148,203.39,77.256 +114149,206.18,73.507 +114150,204.84,74.733 +114151,203.45,75.966 +114152,202.01,77.206 +114153,204.91,73.515 +114154,203.54,74.721 +114155,202.11,75.934 +114156,200.63,77.155 +114157,203.65,73.525 +114158,202.23,74.71 +114159,200.77,75.902 +114160,199.25,77.102 +114161,202.38,73.535 +114162,200.93,74.698 +114163,199.43,75.87 +114164,197.87,77.049 +114165,201.11,73.546 +114166,199.63,74.687 +114167,198.09,75.837 +114168,196.5,76.995 +114169,199.84,73.558 +114170,198.32,74.677 +114171,196.75,75.804 +114172,195.12,76.94 +114173,198.57,73.571 +114174,197.02,74.666 +114175,195.41,75.77 +114176,193.75,76.884 +114177,197.3,73.585 +114178,195.71,74.656 +114179,194.08,75.737 +114180,192.38,76.827 +114181,196.03,73.6 +114182,194.41,74.646 +114183,192.74,75.703 +114184,191,76.769 +114185,194.75,73.616 +114186,193.1,74.637 +114187,191.4,75.668 +114188,189.63,76.711 +114189,193.48,73.632 +114190,191.8,74.628 +114191,190.07,75.634 +114192,188.27,76.651 +114193,192.2,73.649 +114194,190.49,74.619 +114195,188.73,75.599 +114196,186.9,76.591 +114197,190.92,73.667 +114198,189.19,74.61 +114199,187.39,75.564 +114200,185.53,76.53 +114201,189.64,73.686 +114202,187.88,74.602 +114203,186.06,75.529 +114204,184.17,76.468 +114205,188.36,73.706 +114206,186.57,74.593 +114207,184.72,75.493 +114208,182.8,76.406 +114209,187.08,73.726 +114210,185.27,74.585 +114211,183.39,75.457 +114212,181.44,76.342 +114213,185.79,73.747 +114214,183.96,74.578 +114215,182.06,75.421 +114216,180.08,76.278 +114217,184.51,73.768 +114218,182.65,74.57 +114219,180.72,75.385 +114220,178.72,76.214 +114221,183.22,73.791 +114222,181.34,74.563 +114223,179.39,75.349 +114224,177.37,76.149 +114225,181.93,73.814 +114226,180.03,74.556 +114227,178.06,75.312 +114228,176.01,76.083 +114229,180.64,73.837 +114230,178.72,74.549 +114231,176.73,75.275 +114232,174.66,76.016 +114233,179.35,73.861 +114234,177.41,74.542 +114235,175.4,75.238 +114236,173.3,75.949 +114237,178.06,73.885 +114238,176.1,74.536 +114239,174.07,75.201 +114240,171.95,75.881 +114241,176.77,73.91 +114242,174.79,74.53 +114243,172.74,75.163 +114244,170.6,75.813 +114245,175.47,73.936 +114246,173.47,74.524 +114247,171.41,75.126 +114248,169.25,75.744 +114249,174.17,73.962 +114250,172.16,74.518 +114251,170.08,75.088 +114252,167.91,75.675 +114253,172.88,73.988 +114254,170.85,74.512 +114255,168.75,75.05 +114256,166.56,75.605 +114257,171.58,74.015 +114258,169.54,74.506 +114259,167.42,75.012 +114260,165.22,75.535 +114261,170.27,74.042 +114262,168.22,74.501 +114263,166.09,74.974 +114264,163.88,75.464 +114265,168.97,74.07 +114266,166.91,74.495 +114267,164.77,74.936 +114268,162.54,75.393 +114269,167.67,74.098 +114270,165.59,74.49 +114271,163.44,74.897 +114272,161.2,75.322 +114273,166.36,74.126 +114274,164.28,74.485 +114275,162.12,74.859 +114276,159.86,75.25 +114277,165.05,74.154 +114278,162.96,74.48 +114279,160.79,74.82 +114280,158.53,75.178 +114281,163.74,74.183 +114282,161.64,74.475 +114283,159.47,74.782 +114284,157.2,75.106 +114285,162.43,74.212 +114286,160.33,74.47 +114287,158.14,74.743 +114288,155.87,75.033 +114289,161.12,74.241 +114290,159.01,74.465 +114291,156.82,74.704 +114292,154.54,74.961 +114293,159.8,74.271 +114294,157.69,74.46 +114295,155.5,74.665 +114296,153.21,74.888 +114297,158.49,74.3 +114298,156.37,74.456 +114299,154.17,74.626 +114300,151.88,74.814 +114301,157.17,74.33 +114302,155.05,74.451 +114303,152.85,74.587 +114304,150.56,74.741 +114305,155.85,74.359 +114306,153.73,74.446 +114307,151.53,74.548 +114308,149.24,74.668 +114309,154.53,74.389 +114310,152.41,74.442 +114311,150.21,74.509 +114312,147.92,74.594 +114313,153.21,74.419 +114314,151.09,74.437 +114315,148.89,74.47 +114316,146.6,74.52 +114317,151.89,74.448 +114318,149.77,74.432 +114319,147.57,74.431 +114320,145.28,74.447 +114321,150.56,74.478 +114322,148.45,74.428 +114323,146.25,74.392 +114324,143.96,74.373 +114325,149.23,74.508 +114326,147.13,74.423 +114327,144.94,74.353 +114328,142.65,74.299 +114329,147.9,74.537 +114330,145.8,74.419 +114331,143.62,74.314 +114332,141.34,74.226 +114333,146.57,74.567 +114334,144.48,74.414 +114335,142.3,74.275 +114336,140.03,74.152 +114337,145.24,74.596 +114338,143.16,74.409 +114339,140.99,74.236 +114340,138.72,74.079 +114341,143.91,74.625 +114342,141.83,74.405 +114343,139.67,74.197 +114344,137.41,74.006 +114345,142.57,74.654 +114346,140.51,74.4 +114347,138.35,74.159 +114348,136.11,73.932 +114349,141.24,74.683 +114350,139.18,74.395 +114351,137.04,74.12 +114352,134.81,73.86 +114353,139.9,74.711 +114354,137.85,74.39 +114355,135.73,74.081 +114356,133.5,73.787 +114357,138.56,74.74 +114358,136.53,74.385 +114359,134.41,74.043 +114360,132.2,73.714 +114361,137.22,74.767 +114362,135.2,74.38 +114363,133.1,74.004 +114364,130.91,73.642 +114365,135.88,74.795 +114366,133.87,74.375 +114367,131.79,73.966 +114368,129.61,73.57 +114369,134.53,74.822 +114370,132.54,74.369 +114371,130.48,73.927 +114372,128.32,73.498 +114373,133.19,74.849 +114374,131.22,74.364 +114375,129.17,73.889 +114376,127.02,73.427 +114377,131.84,74.876 +114378,129.89,74.359 +114379,127.85,73.851 +114380,125.73,73.356 +114381,130.49,74.902 +114382,128.56,74.353 +114383,126.54,73.813 +114384,124.44,73.286 +114385,129.14,74.927 +114386,127.23,74.347 +114387,125.24,73.776 +114388,123.15,73.216 +114389,127.79,74.953 +114390,125.9,74.341 +114391,123.93,73.738 +114392,121.87,73.146 +114393,126.43,74.977 +114394,124.57,74.335 +114395,122.62,73.701 +114396,120.58,73.077 +114397,125.08,75.001 +114398,123.23,74.328 +114399,121.31,73.663 +114400,119.3,73.009 +114401,123.72,75.025 +114402,121.9,74.322 +114403,120,73.626 +114404,118.02,72.94 +114405,122.37,75.048 +114406,120.57,74.315 +114407,118.7,73.59 +114408,116.74,72.873 +114409,121.01,75.07 +114410,119.24,74.308 +114411,117.39,73.553 +114412,115.46,72.806 +114413,119.65,75.092 +114414,117.9,74.301 +114415,116.08,73.516 +114416,114.18,72.74 +114417,118.28,75.113 +114418,116.57,74.294 +114419,114.78,73.48 +114420,112.91,72.674 +114421,116.92,75.134 +114422,115.23,74.286 +114423,113.47,73.444 +114424,111.63,72.609 +114425,115.56,75.154 +114426,113.9,74.279 +114427,112.17,73.408 +114428,110.36,72.545 +114429,114.19,75.173 +114430,112.56,74.271 +114431,110.86,73.373 +114432,109.09,72.481 +114433,112.82,75.191 +114434,111.23,74.263 +114435,109.56,73.338 +114436,107.82,72.418 +114437,111.46,75.209 +114438,109.89,74.254 +114439,108.26,73.303 +114440,106.55,72.356 +114441,110.09,75.226 +114442,108.56,74.245 +114443,106.96,73.268 +114444,105.28,72.295 +114445,108.72,75.242 +114446,107.22,74.236 +114447,105.65,73.233 +114448,104.02,72.234 +114449,107.34,75.257 +114450,105.88,74.227 +114451,104.35,73.199 +114452,102.75,72.175 +114453,105.97,75.271 +114454,104.54,74.218 +114455,103.05,73.165 +114456,101.49,72.116 +114457,104.6,75.285 +114458,103.21,74.208 +114459,101.75,73.131 +114460,100.22,72.058 +114461,103.22,75.298 +114462,101.87,74.198 +114463,100.45,73.098 +114464,98.964,72.001 +114465,101.85,75.31 +114466,100.53,74.187 +114467,99.149,73.065 +114468,97.704,71.944 +114469,100.47,75.32 +114470,99.19,74.177 +114471,97.849,73.032 +114472,96.445,71.889 +114473,99.091,75.331 +114474,97.85,74.166 +114475,96.55,73 +114476,95.187,71.835 +114477,97.712,75.34 +114478,96.51,74.154 +114479,95.251,72.968 +114480,93.93,71.781 +114481,96.332,75.348 +114482,95.17,74.143 +114483,93.952,72.936 +114484,92.674,71.729 +114485,94.951,75.355 +114486,93.83,74.131 +114487,92.654,72.904 +114488,91.419,71.677 +114489,93.568,75.361 +114490,92.489,74.119 +114491,91.356,72.873 +114492,90.165,71.627 +114493,92.186,75.366 +114494,91.148,74.106 +114495,90.059,72.842 +114496,88.912,71.577 +114497,90.802,75.371 +114498,89.807,74.093 +114499,88.761,72.812 +114500,87.66,71.529 +114501,89.417,75.374 +114502,88.466,74.08 +114503,87.464,72.782 +114504,86.409,71.482 +114505,88.032,75.376 +114506,87.124,74.066 +114507,86.167,72.752 +114508,85.158,71.436 +114509,86.645,75.377 +114510,85.782,74.052 +114511,84.871,72.723 +114512,83.908,71.39 +114513,85.258,75.377 +114514,84.44,74.038 +114515,83.575,72.694 +114516,82.659,71.346 +114517,83.871,75.376 +114518,83.098,74.023 +114519,82.279,72.665 +114520,81.411,71.303 +114521,82.482,75.374 +114522,81.755,74.008 +114523,80.983,72.637 +114524,80.163,71.261 +114525,81.093,75.371 +114526,80.412,73.993 +114527,79.687,72.609 +114528,78.916,71.221 +114529,79.704,75.367 +114530,79.069,73.977 +114531,78.392,72.581 +114532,77.67,71.181 +114533,78.314,75.361 +114534,77.726,73.961 +114535,77.097,72.554 +114536,76.424,71.143 +114537,76.923,75.355 +114538,76.383,73.944 +114539,75.802,72.527 +114540,75.178,71.105 +114541,75.532,75.347 +114542,75.039,73.927 +114543,74.507,72.501 +114544,73.933,71.069 +114545,74.14,75.338 +114546,73.696,73.91 +114547,73.213,72.475 +114548,72.688,71.034 +114549,72.748,75.329 +114550,72.352,73.892 +114551,71.918,72.449 +114552,71.444,71.001 +114553,71.355,75.318 +114554,71.008,73.874 +114555,70.624,72.424 +114556,70.2,70.968 +114557,69.963,75.305 +114558,69.664,73.856 +114559,69.33,72.399 +114560,68.957,70.937 +114561,68.569,75.292 +114562,68.32,73.837 +114563,68.035,72.375 +114564,67.713,70.907 +114565,67.176,75.278 +114566,66.976,73.818 +114567,66.741,72.351 +114568,66.47,70.878 +114569,65.782,75.262 +114570,65.632,73.798 +114571,65.448,72.327 +114572,65.227,70.85 +114573,64.388,75.245 +114574,64.288,73.778 +114575,64.154,72.304 +114576,63.984,70.824 +114577,62.994,75.227 +114578,62.944,73.758 +114579,62.86,72.281 +114580,62.742,70.798 +114581,61.6,75.208 +114582,61.6,73.737 +114583,61.566,72.258 +114584,61.499,70.774 +114585,60.205,75.188 +114586,60.255,73.716 +114587,60.272,72.236 +114588,60.256,70.751 +114589,58.811,75.166 +114590,58.911,73.694 +114591,58.979,72.215 +114592,59.014,70.73 +114593,57.416,75.143 +114594,57.567,73.672 +114595,57.685,72.194 +114596,57.771,70.709 +114597,56.022,75.12 +114598,56.223,73.65 +114599,56.391,72.173 +114600,56.528,70.69 +114601,54.627,75.095 +114602,54.878,73.627 +114603,55.098,72.152 +114604,55.285,70.672 +114605,53.233,75.068 +114606,53.534,73.604 +114607,53.804,72.132 +114608,54.042,70.655 +114609,51.839,75.041 +114610,52.19,73.58 +114611,52.51,72.113 +114612,52.799,70.64 +114613,50.445,75.013 +114614,50.846,73.556 +114615,51.216,72.093 +114616,51.555,70.626 +114617,49.051,74.983 +114618,49.502,73.532 +114619,49.922,72.075 +114620,50.311,70.612 +114621,47.657,74.952 +114622,48.159,73.507 +114623,48.628,72.056 +114624,49.067,70.6 +114625,46.264,74.92 +114626,46.815,73.482 +114627,47.334,72.038 +114628,47.823,70.59 +114629,44.87,74.887 +114630,45.471,73.457 +114631,46.04,72.021 +114632,46.578,70.58 +114633,43.478,74.853 +114634,44.128,73.431 +114635,44.746,72.003 +114636,45.332,70.572 +114637,42.085,74.817 +114638,42.785,73.404 +114639,43.451,71.986 +114640,44.086,70.565 +114641,40.693,74.781 +114642,41.442,73.378 +114643,42.157,71.97 +114644,42.84,70.559 +114645,39.302,74.743 +114646,40.099,73.351 +114647,40.862,71.954 +114648,41.593,70.554 +114649,37.91,74.704 +114650,38.756,73.323 +114651,39.567,71.938 +114652,40.345,70.55 +114653,36.52,74.664 +114654,37.414,73.296 +114655,38.272,71.923 +114656,39.097,70.547 +114657,35.13,74.623 +114658,36.071,73.267 +114659,36.976,71.908 +114660,37.848,70.546 +114661,33.741,74.581 +114662,34.729,73.239 +114663,35.681,71.893 +114664,36.599,70.545 +114665,32.352,74.538 +114666,33.387,73.21 +114667,34.385,71.879 +114668,35.348,70.546 +114669,30.964,74.494 +114670,32.046,73.181 +114671,33.089,71.865 +114672,34.097,70.548 +114673,29.576,74.449 +114674,30.704,73.151 +114675,31.793,71.852 +114676,32.845,70.551 +114677,28.19,74.402 +114678,29.363,73.121 +114679,30.496,71.838 +114680,31.592,70.555 +114681,26.804,74.355 +114682,28.023,73.091 +114683,29.2,71.826 +114684,30.339,70.56 +114685,25.419,74.307 +114686,26.682,73.061 +114687,27.902,71.813 +114688,29.084,70.566 +114689,24.035,74.258 +114690,25.342,73.03 +114691,26.605,71.801 +114692,27.829,70.573 +114693,22.652,74.207 +114694,24.002,72.998 +114695,25.307,71.789 +114696,26.572,70.581 +114697,21.269,74.156 +114698,22.663,72.967 +114699,24.01,71.778 +114700,25.315,70.59 +114701,19.888,74.104 +114702,21.324,72.935 +114703,22.711,71.767 +114704,24.057,70.6 +114705,18.508,74.05 +114706,19.985,72.903 +114707,21.413,71.756 +114708,22.797,70.611 +114709,17.128,73.996 +114710,18.646,72.87 +114711,20.114,71.745 +114712,21.536,70.623 +114713,15.75,73.941 +114714,17.308,72.837 +114715,18.814,71.735 +114716,20.275,70.636 +114717,14.373,73.885 +114718,15.971,72.804 +114719,17.515,71.725 +114720,19.012,70.649 +114721,12.997,73.829 +114722,14.633,72.771 +114723,16.215,71.715 +114724,17.748,70.664 +114725,11.622,73.771 +114726,13.297,72.737 +114727,14.914,71.706 +114728,16.483,70.679 +114729,10.248,73.713 +114730,11.96,72.703 +114731,13.614,71.697 +114732,15.216,70.695 +114733,8.8759,73.653 +114734,10.624,72.669 +114735,12.312,71.688 +114736,13.949,70.712 +114737,7.5047,73.593 +114738,9.2886,72.634 +114739,11.011,71.68 +114740,12.68,70.73 +114741,6.1348,73.532 +114742,7.9535,72.599 +114743,9.7088,71.671 +114744,11.409,70.749 +114745,4.7662,73.471 +114746,6.6188,72.564 +114747,8.4064,71.663 +114748,10.138,70.768 +114749,3.3989,73.408 +114750,5.2845,72.529 +114751,7.1035,71.655 +114752,8.865,70.788 +114753,2.033,73.345 +114754,3.9508,72.493 +114755,5.8002,71.648 +114756,7.5907,70.809 +114757,0.66849,73.281 +114758,2.6175,72.458 +114759,4.4965,71.641 +114760,6.315,70.83 +114761,359.31,73.217 +114762,1.2847,72.422 +114763,3.1922,71.633 +114764,5.038,70.852 +114765,357.94,73.152 +114766,359.95,72.386 +114767,1.8876,71.627 +114768,3.7595,70.875 +114769,356.58,73.086 +114770,358.62,72.349 +114771,0.58244,71.62 +114772,2.4796,70.898 +114773,355.22,73.02 +114774,357.29,72.313 +114775,359.28,71.613 +114776,1.1982,70.922 +114777,353.87,72.953 +114778,355.96,72.276 +114779,357.97,71.607 +114780,359.92,70.946 +114781,352.51,72.885 +114782,354.63,72.239 +114783,356.66,71.601 +114784,358.63,70.971 +114785,351.16,72.817 +114786,353.3,72.202 +114787,355.36,71.595 +114788,357.35,70.997 +114789,349.81,72.749 +114790,351.97,72.164 +114791,354.05,71.589 +114792,356.06,71.023 +114793,348.46,72.68 +114794,350.64,72.127 +114795,352.74,71.583 +114796,354.77,71.049 +114797,347.11,72.61 +114798,349.31,72.089 +114799,351.43,71.578 +114800,353.48,71.076 +114801,345.76,72.54 +114802,347.99,72.052 +114803,350.12,71.573 +114804,352.19,71.103 +114805,344.41,72.47 +114806,346.66,72.014 +114807,348.81,71.567 +114808,350.89,71.131 +114809,343.07,72.399 +114810,345.33,71.976 +114811,347.5,71.562 +114812,349.6,71.158 +114813,341.73,72.328 +114814,344.01,71.937 +114815,346.19,71.557 +114816,348.3,71.187 +114817,340.39,72.257 +114818,342.68,71.899 +114819,344.88,71.552 +114820,347,71.215 +114821,339.05,72.185 +114822,341.36,71.861 +114823,343.57,71.547 +114824,345.7,71.244 +114825,337.71,72.113 +114826,340.03,71.822 +114827,342.26,71.543 +114828,344.4,71.273 +114829,336.37,72.041 +114830,338.71,71.784 +114831,340.95,71.538 +114832,343.1,71.302 +114833,335.04,71.968 +114834,337.39,71.745 +114835,339.63,71.533 +114836,341.79,71.332 +114837,333.71,71.896 +114838,336.06,71.707 +114839,338.32,71.529 +114840,340.49,71.361 +114841,332.38,71.823 +114842,334.74,71.668 +114843,337,71.524 +114844,339.18,71.391 +114845,331.05,71.75 +114846,333.42,71.629 +114847,335.69,71.52 +114848,337.87,71.42 +114849,329.72,71.677 +114850,332.1,71.591 +114851,334.37,71.515 +114852,336.56,71.45 +114853,328.4,71.604 +114854,330.78,71.552 +114855,333.06,71.511 +114856,335.24,71.48 +114857,327.08,71.531 +114858,329.46,71.513 +114859,331.74,71.506 +114860,333.93,71.51 +114861,325.75,71.457 +114862,328.14,71.474 +114863,330.42,71.502 +114864,332.61,71.54 +114865,324.43,71.384 +114866,326.82,71.435 +114867,329.1,71.498 +114868,331.29,71.57 +114869,323.12,71.311 +114870,325.51,71.396 +114871,327.79,71.493 +114872,329.97,71.599 +114873,321.8,71.238 +114874,324.19,71.358 +114875,326.47,71.489 +114876,328.65,71.629 +114877,320.49,71.164 +114878,322.87,71.319 +114879,325.15,71.484 +114880,327.33,71.659 +114881,319.18,71.091 +114882,321.56,71.28 +114883,323.83,71.48 +114884,326,71.688 +114885,317.87,71.019 +114886,320.24,71.242 +114887,322.51,71.475 +114888,324.68,71.717 +114889,316.56,70.946 +114890,318.93,71.203 +114891,321.19,71.47 +114892,323.35,71.746 +114893,315.25,70.873 +114894,317.61,71.164 +114895,319.86,71.466 +114896,322.02,71.775 +114897,313.95,70.801 +114898,316.3,71.126 +114899,318.54,71.461 +114900,320.69,71.803 +114901,312.64,70.729 +114902,314.99,71.088 +114903,317.22,71.456 +114904,319.36,71.832 +114905,311.34,70.657 +114906,313.67,71.049 +114907,315.9,71.451 +114908,318.02,71.86 +114909,310.04,70.586 +114910,312.36,71.011 +114911,314.57,71.446 +114912,316.68,71.887 +114913,308.75,70.515 +114914,311.05,70.973 +114915,313.25,71.44 +114916,315.35,71.914 +114917,307.45,70.444 +114918,309.74,70.935 +114919,311.92,71.435 +114920,314.01,71.941 +114921,306.16,70.373 +114922,308.43,70.897 +114923,310.6,71.429 +114924,312.67,71.968 +114925,304.87,70.303 +114926,307.12,70.86 +114927,309.27,71.424 +114928,311.32,71.993 +114929,303.57,70.234 +114930,305.81,70.822 +114931,307.95,71.418 +114932,309.98,72.019 +114933,302.29,70.165 +114934,304.51,70.785 +114935,306.62,71.412 +114936,308.63,72.044 +114937,301,70.096 +114938,303.2,70.747 +114939,305.29,71.406 +114940,307.29,72.068 +114941,299.71,70.028 +114942,301.89,70.71 +114943,303.96,71.399 +114944,305.94,72.092 +114945,298.43,69.96 +114946,300.59,70.674 +114947,302.63,71.393 +114948,304.59,72.116 +114949,297.15,69.893 +114950,299.28,70.637 +114951,301.3,71.386 +114952,303.24,72.139 +114953,295.87,69.827 +114954,297.97,70.6 +114955,299.98,71.379 +114956,301.88,72.161 +114957,294.59,69.761 +114958,296.67,70.564 +114959,298.65,71.372 +114960,300.53,72.182 +114961,293.31,69.696 +114962,295.37,70.528 +114963,297.31,71.365 +114964,299.17,72.203 +114965,292.04,69.631 +114966,294.06,70.492 +114967,295.98,71.357 +114968,297.81,72.223 +114969,290.77,69.567 +114970,292.76,70.457 +114971,294.65,71.349 +114972,296.46,72.243 +114973,289.49,69.504 +114974,291.46,70.421 +114975,293.32,71.341 +114976,295.09,72.262 +114977,288.22,69.442 +114978,290.15,70.386 +114979,291.99,71.333 +114980,293.73,72.28 +114981,286.95,69.38 +114982,288.85,70.351 +114983,290.65,71.324 +114984,292.37,72.297 +114985,285.69,69.319 +114986,287.55,70.317 +114987,289.32,71.315 +114988,291.01,72.313 +114989,284.42,69.259 +114990,286.25,70.282 +114991,287.99,71.306 +114992,289.64,72.329 +114993,283.15,69.2 +114994,284.95,70.248 +114995,286.65,71.297 +114996,288.27,72.344 +114997,281.89,69.142 +114998,283.65,70.214 +114999,285.32,71.287 +115000,286.9,72.358 +115001,280.63,69.084 +115002,282.35,70.181 +115003,283.98,71.277 +115004,285.54,72.371 +115005,279.37,69.027 +115006,281.05,70.148 +115007,282.65,71.267 +115008,284.16,72.383 +115009,278.11,68.972 +115010,279.75,70.115 +115011,281.31,71.256 +115012,282.79,72.395 +115013,276.85,68.917 +115014,278.46,70.082 +115015,279.98,71.245 +115016,281.42,72.405 +115017,275.59,68.863 +115018,277.16,70.05 +115019,278.64,71.234 +115020,280.05,72.414 +115021,274.34,68.81 +115022,275.86,70.018 +115023,277.3,71.223 +115024,278.67,72.423 +115025,273.08,68.758 +115026,274.56,69.986 +115027,275.97,71.211 +115028,277.29,72.431 +115029,271.83,68.707 +115030,273.27,69.955 +115031,274.63,71.199 +115032,275.92,72.437 +115033,270.58,68.657 +115034,271.97,69.924 +115035,273.29,71.186 +115036,274.54,72.443 +115037,269.33,68.608 +115038,270.68,69.893 +115039,271.95,71.173 +115040,273.16,72.447 +115041,268.08,68.56 +115042,269.38,69.863 +115043,270.61,71.16 +115044,271.78,72.451 +115045,266.83,68.514 +115046,268.09,69.833 +115047,269.27,71.146 +115048,270.4,72.453 +115049,265.58,68.468 +115050,266.79,69.803 +115051,267.93,71.133 +115052,269.01,72.455 +115053,264.33,68.423 +115054,265.5,69.774 +115055,266.59,71.118 +115056,267.63,72.455 +115057,263.09,68.38 +115058,264.2,69.745 +115059,265.26,71.104 +115060,266.25,72.455 +115061,261.84,68.337 +115062,262.91,69.716 +115063,263.92,71.089 +115064,264.86,72.453 +115065,260.59,68.296 +115066,261.62,69.688 +115067,262.57,71.073 +115068,263.48,72.45 +115069,259.35,68.256 +115070,260.32,69.66 +115071,261.23,71.058 +115072,262.09,72.446 +115073,258.11,68.216 +115074,259.03,69.633 +115075,259.89,71.041 +115076,260.7,72.441 +115077,256.86,68.179 +115078,257.74,69.606 +115079,258.55,71.025 +115080,259.32,72.435 +115081,255.62,68.142 +115082,256.44,69.579 +115083,257.21,71.008 +115084,257.93,72.428 +115085,254.38,68.106 +115086,255.15,69.553 +115087,255.87,70.991 +115088,256.54,72.419 +115089,253.14,68.072 +115090,253.86,69.527 +115091,254.53,70.973 +115092,255.15,72.409 +115093,251.9,68.039 +115094,252.57,69.501 +115095,253.19,70.955 +115096,253.76,72.399 +115097,250.66,68.007 +115098,251.28,69.476 +115099,251.84,70.937 +115100,252.37,72.387 +115101,249.42,67.976 +115102,249.99,69.451 +115103,250.5,70.918 +115104,250.98,72.374 +115105,248.18,67.946 +115106,248.69,69.427 +115107,249.16,70.899 +115108,249.58,72.359 +115109,246.94,67.918 +115110,247.4,69.403 +115111,247.82,70.879 +115112,248.19,72.344 +115113,245.7,67.89 +115114,246.11,69.379 +115115,246.48,70.859 +115116,246.8,72.327 +115117,244.47,67.864 +115118,244.82,69.356 +115119,245.13,70.838 +115120,245.41,72.31 +115121,243.23,67.84 +115122,243.53,69.333 +115123,243.79,70.818 +115124,244.01,72.291 +115125,241.99,67.816 +115126,242.24,69.311 +115127,242.45,70.796 +115128,242.62,72.27 +115129,240.75,67.794 +115130,240.95,69.289 +115131,241.1,70.775 +115132,241.23,72.249 +115133,239.52,67.773 +115134,239.66,69.267 +115135,239.76,70.753 +115136,239.83,72.227 +115137,238.28,67.753 +115138,238.37,69.246 +115139,238.42,70.73 +115140,238.44,72.203 +115141,237.04,67.734 +115142,237.08,69.225 +115143,237.08,70.707 +115144,237.04,72.178 +115145,235.8,67.717 +115146,235.79,69.205 +115147,235.73,70.684 +115148,235.65,72.152 +115149,234.57,67.7 +115150,234.5,69.185 +115151,234.39,70.66 +115152,234.25,72.125 +115153,233.33,67.685 +115154,233.21,69.165 +115155,233.05,70.636 +115156,232.86,72.096 +115157,232.09,67.671 +115158,231.91,69.146 +115159,231.71,70.612 +115160,231.47,72.066 +115161,230.85,67.659 +115162,230.62,69.127 +115163,230.36,70.587 +115164,230.07,72.036 +115165,229.62,67.647 +115166,229.33,69.109 +115167,229.02,70.562 +115168,228.68,72.004 +115169,228.38,67.637 +115170,228.04,69.091 +115171,227.68,70.536 +115172,227.28,71.971 +115173,227.14,67.628 +115174,226.75,69.073 +115175,226.34,70.51 +115176,225.89,71.936 +115177,225.9,67.62 +115178,225.46,69.056 +115179,224.99,70.483 +115180,224.49,71.901 +115181,224.66,67.614 +115182,224.17,69.039 +115183,223.65,70.457 +115184,223.1,71.864 +115185,223.42,67.608 +115186,222.88,69.023 +115187,222.31,70.429 +115188,221.71,71.826 +115189,222.18,67.604 +115190,221.59,69.007 +115191,220.97,70.402 +115192,220.32,71.788 +115193,220.94,67.6 +115194,220.3,68.991 +115195,219.62,70.374 +115196,218.92,71.748 +115197,219.7,67.598 +115198,219,68.976 +115199,218.28,70.345 +115200,217.53,71.706 +115201,218.46,67.597 +115202,217.71,68.961 +115203,216.94,70.317 +115204,216.14,71.664 +115205,217.21,67.597 +115206,216.42,68.946 +115207,215.6,70.288 +115208,214.75,71.621 +115209,215.97,67.599 +115210,215.13,68.932 +115211,214.26,70.258 +115212,213.36,71.577 +115213,214.73,67.601 +115214,213.84,68.918 +115215,212.92,70.228 +115216,211.97,71.531 +115217,213.48,67.604 +115218,212.54,68.904 +115219,211.58,70.198 +115220,210.58,71.485 +115221,212.24,67.609 +115222,211.25,68.891 +115223,210.24,70.168 +115224,209.19,71.437 +115225,210.99,67.614 +115226,209.96,68.878 +115227,208.9,70.137 +115228,207.8,71.388 +115229,209.74,67.621 +115230,208.67,68.866 +115231,207.56,70.105 +115232,206.41,71.339 +115233,208.5,67.628 +115234,207.37,68.853 +115235,206.22,70.074 +115236,205.03,71.288 +115237,207.25,67.637 +115238,206.08,68.841 +115239,204.88,70.042 +115240,203.64,71.236 +115241,206,67.646 +115242,204.78,68.83 +115243,203.54,70.01 +115244,202.25,71.184 +115245,204.75,67.657 +115246,203.49,68.819 +115247,202.2,69.977 +115248,200.87,71.13 +115249,203.49,67.668 +115250,202.2,68.808 +115251,200.86,69.944 +115252,199.49,71.076 +115253,202.24,67.681 +115254,200.9,68.797 +115255,199.52,69.911 +115256,198.1,71.02 +115257,200.99,67.694 +115258,199.61,68.787 +115259,198.19,69.877 +115260,196.72,70.964 +115261,199.73,67.708 +115262,198.31,68.777 +115263,196.85,69.843 +115264,195.34,70.907 +115265,198.48,67.723 +115266,197.01,68.767 +115267,195.51,69.809 +115268,193.96,70.848 +115269,197.22,67.739 +115270,195.72,68.758 +115271,194.17,69.775 +115272,192.58,70.789 +115273,195.96,67.755 +115274,194.42,68.748 +115275,192.84,69.74 +115276,191.21,70.73 +115277,194.7,67.773 +115278,193.12,68.739 +115279,191.5,69.705 +115280,189.83,70.669 +115281,193.44,67.791 +115282,191.83,68.731 +115283,190.17,69.67 +115284,188.45,70.608 +115285,192.18,67.81 +115286,190.53,68.722 +115287,188.83,69.634 +115288,187.08,70.545 +115289,190.91,67.83 +115290,189.23,68.714 +115291,187.5,69.599 +115292,185.71,70.482 +115293,189.65,67.85 +115294,187.93,68.706 +115295,186.16,69.563 +115296,184.34,70.419 +115297,188.38,67.871 +115298,186.63,68.698 +115299,184.83,69.526 +115300,182.97,70.354 +115301,187.12,67.893 +115302,185.33,68.691 +115303,183.5,69.49 +115304,181.6,70.289 +115305,185.85,67.916 +115306,184.03,68.684 +115307,182.16,69.453 +115308,180.23,70.223 +115309,184.58,67.939 +115310,182.73,68.676 +115311,180.83,69.416 +115312,178.86,70.157 +115313,183.3,67.962 +115314,181.43,68.67 +115315,179.5,69.379 +115316,177.5,70.089 +115317,182.03,67.987 +115318,180.13,68.663 +115319,178.17,69.342 +115320,176.14,70.022 +115321,180.76,68.011 +115322,178.83,68.656 +115323,176.84,69.304 +115324,174.77,69.953 +115325,179.48,68.037 +115326,177.53,68.65 +115327,175.51,69.266 +115328,173.41,69.885 +115329,178.2,68.062 +115330,176.22,68.644 +115331,174.18,69.228 +115332,172.06,69.815 +115333,176.92,68.089 +115334,174.92,68.638 +115335,172.85,69.19 +115336,170.7,69.745 +115337,175.64,68.115 +115338,173.62,68.632 +115339,171.52,69.152 +115340,169.34,69.675 +115341,174.36,68.142 +115342,172.31,68.626 +115343,170.19,69.113 +115344,167.99,69.604 +115345,173.08,68.17 +115346,171.01,68.62 +115347,168.86,69.075 +115348,166.64,69.533 +115349,171.79,68.198 +115350,169.7,68.615 +115351,167.54,69.036 +115352,165.29,69.461 +115353,170.5,68.226 +115354,168.4,68.609 +115355,166.21,68.997 +115356,163.94,69.389 +115357,169.21,68.254 +115358,167.09,68.604 +115359,164.89,68.958 +115360,162.59,69.317 +115361,167.92,68.283 +115362,165.78,68.599 +115363,163.56,68.919 +115364,161.24,69.244 +115365,166.63,68.312 +115366,164.47,68.594 +115367,162.24,68.88 +115368,159.9,69.171 +115369,165.34,68.341 +115370,163.17,68.589 +115371,160.91,68.841 +115372,158.56,69.098 +115373,164.04,68.371 +115374,161.86,68.584 +115375,159.59,68.802 +115376,157.22,69.024 +115377,162.74,68.4 +115378,160.55,68.579 +115379,158.26,68.762 +115380,155.88,68.95 +115381,161.45,68.43 +115382,159.24,68.574 +115383,156.94,68.723 +115384,154.54,68.876 +115385,160.15,68.46 +115386,157.93,68.569 +115387,155.62,68.683 +115388,153.21,68.802 +115389,158.84,68.489 +115390,156.62,68.564 +115391,154.3,68.644 +115392,151.87,68.728 +115393,157.54,68.519 +115394,155.31,68.559 +115395,152.98,68.604 +115396,150.54,68.654 +115397,156.23,68.549 +115398,153.99,68.555 +115399,151.66,68.564 +115400,149.21,68.579 +115401,154.93,68.579 +115402,152.68,68.55 +115403,150.34,68.525 +115404,147.88,68.505 +115405,153.62,68.609 +115406,151.37,68.545 +115407,149.02,68.485 +115408,146.56,68.43 +115409,152.31,68.639 +115410,150.05,68.54 +115411,147.7,68.445 +115412,145.23,68.356 +115413,150.99,68.669 +115414,148.74,68.535 +115415,146.39,68.406 +115416,143.91,68.281 +115417,149.68,68.698 +115418,147.43,68.53 +115419,145.07,68.366 +115420,142.59,68.207 +115421,148.36,68.728 +115422,146.11,68.525 +115423,143.75,68.327 +115424,141.27,68.132 +115425,147.05,68.757 +115426,144.79,68.52 +115427,142.44,68.287 +115428,139.96,68.058 +115429,145.73,68.786 +115430,143.48,68.515 +115431,141.12,68.247 +115432,138.64,67.984 +115433,144.41,68.815 +115434,142.16,68.51 +115435,139.81,68.208 +115436,137.33,67.91 +115437,143.08,68.844 +115438,140.84,68.505 +115439,138.49,68.169 +115440,136.02,67.836 +115441,141.76,68.872 +115442,139.52,68.499 +115443,137.18,68.129 +115444,134.71,67.763 +115445,140.43,68.9 +115446,138.21,68.494 +115447,135.87,68.09 +115448,133.41,67.69 +115449,139.11,68.928 +115450,136.89,68.488 +115451,134.56,68.051 +115452,132.1,67.617 +115453,137.78,68.955 +115454,135.57,68.483 +115455,133.25,68.012 +115456,130.8,67.544 +115457,136.45,68.982 +115458,134.25,68.477 +115459,131.93,67.973 +115460,129.5,67.472 +115461,135.11,69.009 +115462,132.92,68.471 +115463,130.62,67.934 +115464,128.2,67.4 +115465,133.78,69.035 +115466,131.6,68.465 +115467,129.32,67.895 +115468,126.9,67.328 +115469,132.44,69.061 +115470,130.28,68.458 +115471,128.01,67.857 +115472,125.6,67.257 +115473,131.11,69.086 +115474,128.96,68.452 +115475,126.7,67.818 +115476,124.31,67.187 +115477,129.77,69.11 +115478,127.63,68.445 +115479,125.39,67.78 +115480,123.02,67.116 +115481,128.43,69.135 +115482,126.31,68.439 +115483,124.08,67.742 +115484,121.73,67.047 +115485,127.08,69.158 +115486,124.99,68.432 +115487,122.78,67.704 +115488,120.44,66.977 +115489,125.74,69.181 +115490,123.66,68.424 +115491,121.47,67.667 +115492,119.15,66.909 +115493,124.39,69.203 +115494,122.34,68.417 +115495,120.17,67.629 +115496,117.87,66.841 +115497,123.05,69.225 +115498,121.01,68.409 +115499,118.86,67.592 +115500,116.59,66.773 +115501,121.7,69.246 +115502,119.68,68.401 +115503,117.56,67.555 +115504,115.31,66.707 +115505,120.35,69.266 +115506,118.36,68.393 +115507,116.25,67.518 +115508,114.03,66.64 +115509,119,69.286 +115510,117.03,68.385 +115511,114.95,67.481 +115512,112.75,66.575 +115513,117.64,69.305 +115514,115.7,68.376 +115515,113.65,67.444 +115516,111.47,66.51 +115517,116.29,69.323 +115518,114.37,68.368 +115519,112.35,67.408 +115520,110.2,66.446 +115521,114.93,69.34 +115522,113.04,68.359 +115523,111.05,67.372 +115524,108.93,66.383 +115525,113.57,69.357 +115526,111.71,68.349 +115527,109.75,67.337 +115528,107.66,66.32 +115529,112.22,69.373 +115530,110.38,68.34 +115531,108.45,67.301 +115532,106.39,66.259 +115533,110.85,69.388 +115534,109.05,68.33 +115535,107.15,67.266 +115536,105.12,66.198 +115537,109.49,69.402 +115538,107.72,68.319 +115539,105.85,67.231 +115540,103.86,66.138 +115541,108.13,69.415 +115542,106.39,68.309 +115543,104.55,67.196 +115544,102.59,66.078 +115545,106.77,69.427 +115546,105.06,68.298 +115547,103.25,67.162 +115548,101.33,66.02 +115549,105.4,69.438 +115550,103.73,68.287 +115551,101.95,67.128 +115552,100.07,65.963 +115553,104.03,69.449 +115554,102.39,68.275 +115555,100.66,67.094 +115556,98.808,65.906 +115557,102.66,69.458 +115558,101.06,68.264 +115559,99.36,67.061 +115560,97.55,65.851 +115561,101.3,69.467 +115562,99.727,68.252 +115563,98.063,67.027 +115564,96.293,65.796 +115565,99.924,69.474 +115566,98.393,68.239 +115567,96.768,66.995 +115568,95.038,65.742 +115569,98.552,69.481 +115570,97.059,68.226 +115571,95.473,66.962 +115572,93.783,65.69 +115573,97.179,69.487 +115574,95.724,68.213 +115575,94.178,66.93 +115576,92.531,65.638 +115577,95.805,69.491 +115578,94.389,68.2 +115579,92.883,66.898 +115580,91.279,65.588 +115581,94.43,69.495 +115582,93.053,68.186 +115583,91.589,66.867 +115584,90.029,65.538 +115585,93.053,69.497 +115586,91.717,68.172 +115587,90.296,66.835 +115588,88.78,65.489 +115589,91.676,69.498 +115590,90.381,68.157 +115591,89.003,66.805 +115592,87.532,65.442 +115593,90.297,69.499 +115594,89.044,68.142 +115595,87.71,66.774 +115596,86.285,65.396 +115597,88.918,69.498 +115598,87.707,68.127 +115599,86.417,66.744 +115600,85.039,65.35 +115601,87.537,69.496 +115602,86.37,68.111 +115603,85.125,66.714 +115604,83.794,65.306 +115605,86.156,69.493 +115606,85.033,68.095 +115607,83.834,66.685 +115608,82.551,65.263 +115609,84.774,69.488 +115610,83.695,68.079 +115611,82.542,66.656 +115612,81.308,65.222 +115613,83.39,69.483 +115614,82.357,68.062 +115615,81.251,66.627 +115616,80.066,65.181 +115617,82.006,69.477 +115618,81.018,68.045 +115619,79.96,66.599 +115620,78.825,65.141 +115621,80.622,69.469 +115622,79.68,68.027 +115623,78.67,66.571 +115624,77.585,65.103 +115625,79.236,69.46 +115626,78.341,68.009 +115627,77.38,66.544 +115628,76.346,65.066 +115629,77.85,69.45 +115630,77.002,67.991 +115631,76.09,66.517 +115632,75.108,65.03 +115633,76.462,69.439 +115634,75.662,67.972 +115635,74.8,66.49 +115636,73.87,64.995 +115637,75.075,69.427 +115638,74.323,67.952 +115639,73.511,66.464 +115640,72.633,64.961 +115641,73.686,69.413 +115642,72.983,67.933 +115643,72.222,66.438 +115644,71.397,64.929 +115645,72.297,69.398 +115646,71.643,67.913 +115647,70.933,66.412 +115648,70.161,64.898 +115649,70.908,69.382 +115650,70.303,67.892 +115651,69.644,66.387 +115652,68.926,64.868 +115653,69.517,69.365 +115654,68.963,67.871 +115655,68.355,66.362 +115656,67.691,64.839 +115657,68.127,69.347 +115658,67.622,67.85 +115659,67.067,66.338 +115660,66.457,64.812 +115661,66.735,69.327 +115662,66.282,67.828 +115663,65.779,66.314 +115664,65.223,64.786 +115665,65.344,69.307 +115666,64.941,67.806 +115667,64.491,66.29 +115668,63.989,64.761 +115669,63.952,69.285 +115670,63.6,67.784 +115671,63.203,66.267 +115672,62.756,64.737 +115673,62.559,69.261 +115674,62.259,67.761 +115675,61.915,66.245 +115676,61.524,64.714 +115677,61.167,69.237 +115678,60.918,67.737 +115679,60.627,66.222 +115680,60.291,64.693 +115681,59.774,69.211 +115682,59.577,67.713 +115683,59.34,66.2 +115684,59.059,64.673 +115685,58.38,69.184 +115686,58.236,67.689 +115687,58.052,66.179 +115688,57.827,64.654 +115689,56.987,69.156 +115690,56.895,67.665 +115691,56.765,66.158 +115692,56.595,64.637 +115693,55.593,69.127 +115694,55.554,67.639 +115695,55.477,66.137 +115696,55.363,64.62 +115697,54.199,69.096 +115698,54.212,67.614 +115699,54.19,66.116 +115700,54.131,64.605 +115701,52.805,69.065 +115702,52.871,67.588 +115703,52.903,66.097 +115704,52.899,64.591 +115705,51.411,69.032 +115706,51.53,67.562 +115707,51.616,66.077 +115708,51.667,64.579 +115709,50.017,68.997 +115710,50.189,67.535 +115711,50.328,66.058 +115712,50.435,64.567 +115713,48.623,68.962 +115714,48.847,67.508 +115715,49.041,66.039 +115716,49.202,64.557 +115717,47.229,68.926 +115718,47.506,67.48 +115719,47.754,66.021 +115720,47.97,64.548 +115721,45.835,68.888 +115722,46.165,67.452 +115723,46.466,66.003 +115724,46.737,64.54 +115725,44.441,68.849 +115726,44.824,67.424 +115727,45.179,65.985 +115728,45.504,64.533 +115729,43.047,68.809 +115730,43.483,67.395 +115731,43.891,65.968 +115732,44.271,64.528 +115733,41.653,68.768 +115734,42.142,67.366 +115735,42.604,65.951 +115736,43.037,64.524 +115737,40.26,68.725 +115738,40.802,67.337 +115739,41.316,65.935 +115740,41.803,64.52 +115741,38.867,68.682 +115742,39.461,67.307 +115743,40.028,65.918 +115744,40.569,64.518 +115745,37.474,68.637 +115746,38.12,67.276 +115747,38.74,65.903 +115748,39.334,64.517 +115749,36.082,68.591 +115750,36.78,67.246 +115751,37.452,65.887 +115752,38.098,64.518 +115753,34.69,68.544 +115754,35.44,67.215 +115755,36.164,65.872 +115756,36.862,64.519 +115757,33.298,68.496 +115758,34.1,67.183 +115759,34.875,65.858 +115760,35.625,64.522 +115761,31.907,68.447 +115762,32.76,67.151 +115763,33.587,65.843 +115764,34.388,64.525 +115765,30.516,68.397 +115766,31.421,67.119 +115767,32.298,65.829 +115768,33.15,64.53 +115769,29.126,68.346 +115770,30.081,67.087 +115771,31.009,65.816 +115772,31.911,64.535 +115773,27.737,68.294 +115774,28.742,67.054 +115775,29.72,65.803 +115776,30.672,64.542 +115777,26.348,68.24 +115778,27.403,67.02 +115779,28.43,65.79 +115780,29.431,64.55 +115781,24.96,68.186 +115782,26.065,66.987 +115783,27.141,65.777 +115784,28.19,64.559 +115785,23.572,68.131 +115786,24.726,66.953 +115787,25.851,65.765 +115788,26.948,64.568 +115789,22.185,68.074 +115790,23.388,66.918 +115791,24.561,65.753 +115792,25.705,64.579 +115793,20.799,68.017 +115794,22.05,66.884 +115795,23.27,65.741 +115796,24.461,64.591 +115797,19.414,67.959 +115798,20.713,66.849 +115799,21.979,65.73 +115800,23.216,64.603 +115801,18.029,67.9 +115802,19.376,66.814 +115803,20.688,65.719 +115804,21.971,64.617 +115805,16.646,67.84 +115806,18.039,66.778 +115807,19.397,65.708 +115808,20.724,64.631 +115809,15.263,67.779 +115810,16.702,66.742 +115811,18.105,65.697 +115812,19.476,64.646 +115813,13.881,67.717 +115814,15.366,66.706 +115815,16.813,65.687 +115816,18.226,64.663 +115817,12.5,67.654 +115818,14.03,66.669 +115819,15.521,65.677 +115820,16.976,64.679 +115821,11.121,67.591 +115822,12.695,66.633 +115823,14.228,65.668 +115824,15.725,64.697 +115825,9.7421,67.526 +115826,11.36,66.595 +115827,12.935,65.658 +115828,14.472,64.716 +115829,8.3645,67.461 +115830,10.025,66.558 +115831,11.641,65.649 +115832,13.218,64.735 +115833,6.9881,67.395 +115834,8.6912,66.52 +115835,10.348,65.64 +115836,11.963,64.755 +115837,5.6129,67.328 +115838,7.3575,66.483 +115839,9.0533,65.631 +115840,10.706,64.776 +115841,4.2388,67.261 +115842,6.0241,66.445 +115843,7.7585,65.623 +115844,9.4483,64.797 +115845,2.866,67.193 +115846,4.6912,66.406 +115847,6.4634,65.615 +115848,8.1891,64.819 +115849,1.4944,67.124 +115850,3.3588,66.368 +115851,5.1679,65.606 +115852,6.9286,64.842 +115853,0.12414,67.054 +115854,2.0268,66.329 +115855,3.8719,65.599 +115856,5.6667,64.865 +115857,358.76,66.984 +115858,0.69526,66.29 +115859,2.5754,65.591 +115860,4.4033,64.889 +115861,357.39,66.913 +115862,359.36,66.25 +115863,1.2785,65.583 +115864,3.1385,64.914 +115865,356.02,66.842 +115866,358.03,66.211 +115867,359.98,65.576 +115868,1.8722,64.939 +115869,354.66,66.77 +115870,356.7,66.171 +115871,358.68,65.569 +115872,0.60448,64.965 +115873,353.29,66.698 +115874,355.37,66.131 +115875,357.38,65.562 +115876,359.34,64.991 +115877,351.93,66.625 +115878,354.05,66.091 +115879,356.09,65.555 +115880,358.06,65.017 +115881,350.57,66.551 +115882,352.72,66.051 +115883,354.79,65.548 +115884,356.79,65.044 +115885,349.21,66.477 +115886,351.39,66.011 +115887,353.49,65.542 +115888,355.52,65.071 +115889,347.86,66.403 +115890,350.06,65.97 +115891,352.19,65.535 +115892,354.24,65.099 +115893,346.5,66.328 +115894,348.73,65.93 +115895,350.89,65.529 +115896,352.97,65.127 +115897,345.15,66.253 +115898,347.41,65.889 +115899,349.58,65.523 +115900,351.69,65.156 +115901,343.79,66.178 +115902,346.08,65.848 +115903,348.28,65.517 +115904,350.41,65.184 +115905,342.44,66.102 +115906,344.76,65.807 +115907,346.98,65.511 +115908,349.12,65.213 +115909,341.09,66.026 +115910,343.43,65.766 +115911,345.68,65.505 +115912,347.84,65.242 +115913,339.75,65.949 +115914,342.11,65.725 +115915,344.37,65.499 +115916,346.56,65.272 +115917,338.4,65.873 +115918,340.79,65.684 +115919,343.07,65.493 +115920,345.27,65.301 +115921,337.06,65.796 +115922,339.46,65.642 +115923,341.77,65.487 +115924,343.98,65.331 +115925,335.72,65.719 +115926,338.14,65.601 +115927,340.46,65.481 +115928,342.69,65.361 +115929,334.38,65.641 +115930,336.82,65.559 +115931,339.15,65.475 +115932,341.4,65.391 +115933,333.04,65.564 +115934,335.5,65.518 +115935,337.85,65.47 +115936,340.1,65.421 +115937,331.7,65.487 +115938,334.18,65.476 +115939,336.54,65.464 +115940,338.81,65.451 +115941,330.37,65.409 +115942,332.86,65.435 +115943,335.23,65.458 +115944,337.51,65.481 +115945,329.03,65.332 +115946,331.54,65.393 +115947,333.93,65.452 +115948,336.21,65.511 +115949,327.7,65.254 +115950,330.22,65.351 +115951,332.62,65.447 +115952,334.91,65.541 +115953,326.37,65.176 +115954,328.9,65.31 +115955,331.31,65.441 +115956,333.61,65.571 +115957,325.05,65.099 +115958,327.58,65.268 +115959,330,65.435 +115960,332.31,65.6 +115961,323.72,65.021 +115962,326.27,65.226 +115963,328.69,65.429 +115964,331,65.63 +115965,322.4,64.944 +115966,324.95,65.185 +115967,327.38,65.423 +115968,329.69,65.659 +115969,321.08,64.867 +115970,323.64,65.143 +115971,326.07,65.417 +115972,328.38,65.689 +115973,319.76,64.79 +115974,322.32,65.102 +115975,324.75,65.411 +115976,327.07,65.718 +115977,318.44,64.713 +115978,321.01,65.06 +115979,323.44,65.405 +115980,325.76,65.747 +115981,317.13,64.636 +115982,319.7,65.019 +115983,322.13,65.399 +115984,324.44,65.775 +115985,315.81,64.56 +115986,318.38,64.978 +115987,320.81,65.392 +115988,323.13,65.803 +115989,314.5,64.484 +115990,317.07,64.937 +115991,319.5,65.386 +115992,321.81,65.831 +115993,313.19,64.408 +115994,315.76,64.896 +115995,318.18,65.379 +115996,320.49,65.859 +115997,311.88,64.332 +115998,314.45,64.855 +115999,316.87,65.372 +116000,319.17,65.886 +116001,310.58,64.257 +116002,313.14,64.814 +116003,315.55,65.365 +116004,317.84,65.913 +116005,309.28,64.182 +116006,311.83,64.773 +116007,314.24,65.358 +116008,316.52,65.939 +116009,307.97,64.108 +116010,310.52,64.732 +116011,312.92,65.351 +116012,315.19,65.965 +116013,306.67,64.034 +116014,309.21,64.692 +116015,311.6,65.344 +116016,313.86,65.99 +116017,305.38,63.961 +116018,307.9,64.651 +116019,310.28,65.336 +116020,312.53,66.015 +116021,304.08,63.888 +116022,306.6,64.611 +116023,308.96,65.328 +116024,311.2,66.039 +116025,302.79,63.815 +116026,305.29,64.571 +116027,307.64,65.32 +116028,309.87,66.063 +116029,301.5,63.743 +116030,303.99,64.531 +116031,306.32,65.312 +116032,308.53,66.086 +116033,300.21,63.672 +116034,302.68,64.492 +116035,305,65.304 +116036,307.2,66.108 +116037,298.92,63.601 +116038,301.38,64.452 +116039,303.68,65.295 +116040,305.86,66.13 +116041,297.63,63.531 +116042,300.07,64.413 +116043,302.36,65.286 +116044,304.52,66.151 +116045,296.35,63.462 +116046,298.77,64.374 +116047,301.04,65.277 +116048,303.18,66.171 +116049,295.07,63.393 +116050,297.47,64.335 +116051,299.71,65.268 +116052,301.83,66.191 +116053,293.79,63.325 +116054,296.16,64.297 +116055,298.39,65.258 +116056,300.49,66.21 +116057,292.51,63.258 +116058,294.86,64.258 +116059,297.07,65.248 +116060,299.14,66.228 +116061,291.23,63.191 +116062,293.56,64.22 +116063,295.74,65.238 +116064,297.79,66.245 +116065,289.96,63.126 +116066,292.26,64.182 +116067,294.42,65.228 +116068,296.44,66.262 +116069,288.69,63.061 +116070,290.96,64.145 +116071,293.09,65.217 +116072,295.09,66.278 +116073,287.41,62.997 +116074,289.66,64.107 +116075,291.77,65.206 +116076,293.74,66.293 +116077,286.15,62.933 +116078,288.37,64.07 +116079,290.44,65.195 +116080,292.39,66.307 +116081,284.88,62.871 +116082,287.07,64.034 +116083,289.11,65.183 +116084,291.03,66.32 +116085,283.61,62.81 +116086,285.77,63.997 +116087,287.78,65.171 +116088,289.67,66.332 +116089,282.35,62.749 +116090,284.47,63.961 +116091,286.46,65.159 +116092,288.32,66.343 +116093,281.09,62.689 +116094,283.18,63.925 +116095,285.13,65.147 +116096,286.96,66.354 +116097,279.83,62.631 +116098,281.88,63.889 +116099,283.8,65.134 +116100,285.59,66.363 +116101,278.57,62.573 +116102,280.59,63.854 +116103,282.47,65.12 +116104,284.23,66.371 +116105,277.31,62.516 +116106,279.29,63.819 +116107,281.14,65.107 +116108,282.87,66.379 +116109,276.05,62.461 +116110,278,63.785 +116111,279.81,65.093 +116112,281.5,66.385 +116113,274.8,62.406 +116114,276.71,63.75 +116115,278.48,65.078 +116116,280.14,66.39 +116117,273.55,62.352 +116118,275.41,63.716 +116119,277.15,65.064 +116120,278.77,66.394 +116121,272.3,62.3 +116122,274.12,63.683 +116123,275.82,65.049 +116124,277.4,66.397 +116125,271.05,62.248 +116126,272.83,63.649 +116127,274.48,65.033 +116128,276.03,66.399 +116129,269.8,62.198 +116130,271.54,63.617 +116131,273.15,65.017 +116132,274.66,66.4 +116133,268.55,62.149 +116134,270.24,63.584 +116135,271.82,65.001 +116136,273.29,66.4 +116137,267.3,62.101 +116138,268.95,63.552 +116139,270.49,64.985 +116140,271.91,66.399 +116141,266.06,62.054 +116142,267.66,63.52 +116143,269.15,64.968 +116144,270.54,66.396 +116145,264.82,62.008 +116146,266.37,63.489 +116147,267.82,64.95 +116148,269.16,66.393 +116149,263.57,61.964 +116150,265.08,63.458 +116151,266.48,64.933 +116152,267.79,66.388 +116153,262.33,61.92 +116154,263.8,63.427 +116155,265.15,64.914 +116156,266.41,66.382 +116157,261.09,61.878 +116158,262.51,63.397 +116159,263.81,64.896 +116160,265.03,66.375 +116161,259.85,61.837 +116162,261.22,63.367 +116163,262.48,64.877 +116164,263.65,66.367 +116165,258.62,61.797 +116166,259.93,63.337 +116167,261.14,64.857 +116168,262.27,66.357 +116169,257.38,61.759 +116170,258.64,63.308 +116171,259.81,64.838 +116172,260.89,66.346 +116173,256.14,61.721 +116174,257.36,63.279 +116175,258.47,64.817 +116176,259.5,66.334 +116177,254.91,61.685 +116178,256.07,63.251 +116179,257.14,64.797 +116180,258.12,66.321 +116181,253.68,61.65 +116182,254.78,63.223 +116183,255.8,64.775 +116184,256.74,66.307 +116185,252.44,61.617 +116186,253.5,63.196 +116187,254.46,64.754 +116188,255.35,66.291 +116189,251.21,61.584 +116190,252.21,63.168 +116191,253.13,64.732 +116192,253.97,66.274 +116193,249.98,61.553 +116194,250.92,63.142 +116195,251.79,64.71 +116196,252.58,66.256 +116197,248.75,61.524 +116198,249.64,63.115 +116199,250.45,64.687 +116200,251.19,66.237 +116201,247.52,61.495 +116202,248.35,63.09 +116203,249.11,64.663 +116204,249.81,66.216 +116205,246.29,61.468 +116206,247.07,63.064 +116207,247.77,64.64 +116208,248.42,66.194 +116209,245.06,61.442 +116210,245.78,63.039 +116211,246.44,64.616 +116212,247.03,66.171 +116213,243.83,61.417 +116214,244.5,63.014 +116215,245.1,64.591 +116216,245.64,66.146 +116217,242.6,61.394 +116218,243.21,62.99 +116219,243.76,64.566 +116220,244.25,66.12 +116221,241.38,61.372 +116222,241.93,62.966 +116223,242.42,64.541 +116224,242.86,66.093 +116225,240.15,61.351 +116226,240.64,62.943 +116227,241.08,64.515 +116228,241.47,66.065 +116229,238.92,61.331 +116230,239.36,62.92 +116231,239.74,64.488 +116232,240.08,66.035 +116233,237.69,61.313 +116234,238.08,62.897 +116235,238.41,64.462 +116236,238.69,66.005 +116237,236.47,61.296 +116238,236.79,62.875 +116239,237.07,64.434 +116240,237.29,65.972 +116241,235.24,61.28 +116242,235.51,62.853 +116243,235.73,64.407 +116244,235.9,65.939 +116245,234.02,61.266 +116246,234.23,62.832 +116247,234.39,64.379 +116248,234.51,65.904 +116249,232.79,61.253 +116250,232.94,62.811 +116251,233.05,64.35 +116252,233.12,65.869 +116253,231.56,61.241 +116254,231.66,62.791 +116255,231.71,64.321 +116256,231.72,65.831 +116257,230.34,61.23 +116258,230.37,62.77 +116259,230.37,64.292 +116260,230.33,65.793 +116261,229.11,61.221 +116262,229.09,62.751 +116263,229.03,64.262 +116264,228.94,65.753 +116265,227.89,61.213 +116266,227.81,62.731 +116267,227.69,64.232 +116268,227.55,65.713 +116269,226.66,61.206 +116270,226.52,62.712 +116271,226.35,64.201 +116272,226.15,65.67 +116273,225.43,61.2 +116274,225.24,62.694 +116275,225.02,64.17 +116276,224.76,65.627 +116277,224.21,61.195 +116278,223.96,62.676 +116279,223.68,64.139 +116280,223.37,65.583 +116281,222.98,61.192 +116282,222.67,62.658 +116283,222.34,64.107 +116284,221.97,65.537 +116285,221.75,61.19 +116286,221.39,62.641 +116287,221,64.074 +116288,220.58,65.49 +116289,220.53,61.189 +116290,220.11,62.624 +116291,219.66,64.042 +116292,219.19,65.442 +116293,219.3,61.189 +116294,218.82,62.607 +116295,218.32,64.008 +116296,217.8,65.393 +116297,218.07,61.19 +116298,217.54,62.591 +116299,216.98,63.975 +116300,216.4,65.342 +116301,216.84,61.193 +116302,216.26,62.575 +116303,215.65,63.941 +116304,215.01,65.291 +116305,215.61,61.196 +116306,214.97,62.559 +116307,214.31,63.907 +116308,213.62,65.238 +116309,214.38,61.201 +116310,213.69,62.544 +116311,212.97,63.872 +116312,212.23,65.184 +116313,213.15,61.207 +116314,212.4,62.529 +116315,211.63,63.837 +116316,210.84,65.129 +116317,211.92,61.214 +116318,211.12,62.515 +116319,210.29,63.802 +116320,209.45,65.073 +116321,210.69,61.222 +116322,209.83,62.5 +116323,208.96,63.766 +116324,208.06,65.016 +116325,209.45,61.23 +116326,208.55,62.487 +116327,207.62,63.73 +116328,206.67,64.958 +116329,208.22,61.24 +116330,207.26,62.473 +116331,206.28,63.693 +116332,205.28,64.899 +116333,206.99,61.251 +116334,205.98,62.46 +116335,204.95,63.656 +116336,203.89,64.838 +116337,205.75,61.263 +116338,204.69,62.447 +116339,203.61,63.619 +116340,202.51,64.777 +116341,204.52,61.276 +116342,203.41,62.435 +116343,202.27,63.581 +116344,201.12,64.715 +116345,203.28,61.29 +116346,202.12,62.422 +116347,200.94,63.543 +116348,199.73,64.652 +116349,202.04,61.305 +116350,200.83,62.41 +116351,199.6,63.505 +116352,198.35,64.588 +116353,200.8,61.32 +116354,199.55,62.399 +116355,198.27,63.467 +116356,196.96,64.522 +116357,199.56,61.337 +116358,198.26,62.387 +116359,196.93,63.428 +116360,195.58,64.456 +116361,198.32,61.354 +116362,196.97,62.376 +116363,195.6,63.389 +116364,194.2,64.39 +116365,197.08,61.372 +116366,195.68,62.365 +116367,194.26,63.349 +116368,192.81,64.322 +116369,195.83,61.391 +116370,194.4,62.355 +116371,192.93,63.309 +116372,191.43,64.253 +116373,194.59,61.411 +116374,193.11,62.345 +116375,191.6,63.269 +116376,190.05,64.184 +116377,193.34,61.432 +116378,191.82,62.334 +116379,190.26,63.229 +116380,188.67,64.113 +116381,192.1,61.453 +116382,190.53,62.325 +116383,188.93,63.188 +116384,187.29,64.042 +116385,190.85,61.475 +116386,189.24,62.315 +116387,187.6,63.147 +116388,185.92,63.97 +116389,189.6,61.497 +116390,187.95,62.306 +116391,186.27,63.106 +116392,184.54,63.898 +116393,188.35,61.521 +116394,186.66,62.296 +116395,184.94,63.065 +116396,183.17,63.824 +116397,187.09,61.545 +116398,185.37,62.287 +116399,183.6,63.023 +116400,181.79,63.75 +116401,185.84,61.569 +116402,184.08,62.279 +116403,182.27,62.982 +116404,180.42,63.676 +116405,184.59,61.594 +116406,182.79,62.27 +116407,180.94,62.939 +116408,179.05,63.6 +116409,183.33,61.62 +116410,181.49,62.262 +116411,179.61,62.897 +116412,177.68,63.524 +116413,182.07,61.646 +116414,180.2,62.253 +116415,178.28,62.855 +116416,176.31,63.448 +116417,180.81,61.673 +116418,178.91,62.245 +116419,176.96,62.812 +116420,174.94,63.371 +116421,179.55,61.7 +116422,177.62,62.237 +116423,175.63,62.769 +116424,173.58,63.293 +116425,178.29,61.727 +116426,176.32,62.23 +116427,174.3,62.726 +116428,172.22,63.215 +116429,177.02,61.755 +116430,175.03,62.222 +116431,172.97,62.683 +116432,170.85,63.136 +116433,175.76,61.783 +116434,173.73,62.214 +116435,171.65,62.64 +116436,169.49,63.057 +116437,174.49,61.812 +116438,172.44,62.207 +116439,170.32,62.596 +116440,168.13,62.978 +116441,173.22,61.841 +116442,171.14,62.2 +116443,169,62.552 +116444,166.77,62.898 +116445,171.95,61.87 +116446,169.84,62.192 +116447,167.67,62.509 +116448,165.42,62.818 +116449,170.68,61.9 +116450,168.55,62.185 +116451,166.35,62.465 +116452,164.06,62.737 +116453,169.4,61.93 +116454,167.25,62.178 +116455,165.02,62.421 +116456,162.71,62.656 +116457,168.13,61.96 +116458,165.95,62.171 +116459,163.7,62.377 +116460,161.36,62.575 +116461,166.85,61.99 +116462,164.65,62.164 +116463,162.38,62.333 +116464,160.01,62.493 +116465,165.57,62.02 +116466,163.36,62.157 +116467,161.06,62.288 +116468,158.66,62.412 +116469,164.29,62.051 +116470,162.06,62.15 +116471,159.73,62.244 +116472,157.31,62.33 +116473,163.01,62.081 +116474,160.76,62.143 +116475,158.41,62.2 +116476,155.97,62.248 +116477,161.72,62.112 +116478,159.45,62.136 +116479,157.09,62.155 +116480,154.62,62.166 +116481,160.44,62.142 +116482,158.15,62.13 +116483,155.77,62.111 +116484,153.28,62.083 +116485,159.15,62.173 +116486,156.85,62.123 +116487,154.45,62.066 +116488,151.94,62.001 +116489,157.86,62.203 +116490,155.55,62.116 +116491,153.14,62.022 +116492,150.61,61.919 +116493,156.57,62.234 +116494,154.25,62.109 +116495,151.82,61.977 +116496,149.27,61.836 +116497,155.28,62.264 +116498,152.94,62.102 +116499,150.5,61.932 +116500,147.94,61.754 +116501,153.98,62.294 +116502,151.64,62.095 +116503,149.19,61.888 +116504,146.6,61.671 +116505,152.69,62.324 +116506,150.33,62.088 +116507,147.87,61.843 +116508,145.27,61.589 +116509,151.39,62.354 +116510,149.03,62.081 +116511,146.55,61.799 +116512,143.95,61.507 +116513,150.09,62.384 +116514,147.72,62.074 +116515,145.24,61.754 +116516,142.62,61.425 +116517,148.79,62.413 +116518,146.42,62.066 +116519,143.93,61.71 +116520,141.3,61.343 +116521,147.48,62.443 +116522,145.11,62.059 +116523,142.61,61.666 +116524,139.98,61.261 +116525,146.18,62.471 +116526,143.8,62.051 +116527,141.3,61.621 +116528,138.66,61.18 +116529,144.87,62.5 +116530,142.49,62.044 +116531,139.99,61.577 +116532,137.34,61.099 +116533,143.56,62.528 +116534,141.18,62.036 +116535,138.68,61.533 +116536,136.02,61.018 +116537,142.25,62.556 +116538,139.87,62.028 +116539,137.37,61.489 +116540,134.71,60.938 +116541,140.94,62.583 +116542,138.56,62.02 +116543,136.06,61.445 +116544,133.4,60.857 +116545,139.62,62.61 +116546,137.25,62.012 +116547,134.75,61.402 +116548,132.09,60.778 +116549,138.31,62.637 +116550,135.94,62.004 +116551,133.44,61.358 +116552,130.78,60.698 +116553,136.99,62.663 +116554,134.63,61.995 +116555,132.13,61.314 +116556,129.47,60.619 +116557,135.67,62.688 +116558,133.32,61.986 +116559,130.83,61.271 +116560,128.17,60.541 +116561,134.35,62.713 +116562,132.01,61.977 +116563,129.52,61.228 +116564,126.87,60.463 +116565,133.03,62.737 +116566,130.69,61.968 +116567,128.22,61.185 +116568,125.57,60.385 +116569,131.7,62.761 +116570,129.38,61.959 +116571,126.91,61.142 +116572,124.27,60.309 +116573,130.37,62.784 +116574,128.06,61.95 +116575,125.61,61.099 +116576,122.98,60.232 +116577,129.05,62.806 +116578,126.75,61.94 +116579,124.3,61.057 +116580,121.68,60.157 +116581,127.72,62.828 +116582,125.43,61.93 +116583,123,61.015 +116584,120.39,60.082 +116585,126.38,62.849 +116586,124.12,61.92 +116587,121.7,60.973 +116588,119.1,60.007 +116589,125.05,62.869 +116590,122.8,61.909 +116591,120.4,60.931 +116592,117.82,59.934 +116593,123.72,62.888 +116594,121.48,61.898 +116595,119.1,60.889 +116596,116.53,59.861 +116597,122.38,62.907 +116598,120.16,61.887 +116599,117.8,60.848 +116600,115.25,59.789 +116601,121.04,62.925 +116602,118.84,61.876 +116603,116.5,60.807 +116604,113.97,59.717 +116605,119.7,62.942 +116606,117.53,61.864 +116607,115.2,60.766 +116608,112.69,59.647 +116609,118.36,62.958 +116610,116.21,61.852 +116611,113.9,60.726 +116612,111.41,59.577 +116613,117.02,62.973 +116614,114.88,61.84 +116615,112.6,60.685 +116616,110.14,59.508 +116617,115.67,62.988 +116618,113.56,61.828 +116619,111.3,60.645 +116620,108.86,59.44 +116621,114.33,63.001 +116622,112.24,61.815 +116623,110.01,60.606 +116624,107.59,59.373 +116625,112.98,63.014 +116626,110.92,61.802 +116627,108.71,60.566 +116628,106.32,59.307 +116629,111.63,63.025 +116630,109.6,61.788 +116631,107.42,60.527 +116632,105.06,59.242 +116633,110.28,63.036 +116634,108.28,61.774 +116635,106.12,60.488 +116636,103.79,59.177 +116637,108.93,63.046 +116638,106.95,61.76 +116639,104.83,60.45 +116640,102.53,59.114 +116641,107.57,63.054 +116642,105.63,61.745 +116643,103.53,60.412 +116644,101.27,59.052 +116645,106.22,63.062 +116646,104.3,61.731 +116647,102.24,60.374 +116648,100.01,58.991 +116649,104.86,63.068 +116650,102.98,61.715 +116651,100.95,60.337 +116652,98.748,58.931 +116653,103.5,63.073 +116654,101.65,61.7 +116655,99.658,60.299 +116656,97.492,58.872 +116657,102.14,63.078 +116658,100.33,61.684 +116659,98.367,60.263 +116660,96.238,58.814 +116661,100.78,63.081 +116662,99.001,61.667 +116663,97.077,60.226 +116664,94.985,58.757 +116665,99.422,63.083 +116666,97.675,61.65 +116667,95.787,60.19 +116668,93.734,58.701 +116669,98.059,63.084 +116670,96.347,61.633 +116671,94.497,60.154 +116672,92.484,58.647 +116673,96.694,63.083 +116674,95.02,61.616 +116675,93.208,60.119 +116676,91.236,58.593 +116677,95.328,63.082 +116678,93.692,61.598 +116679,91.92,60.084 +116680,89.99,58.541 +116681,93.962,63.079 +116682,92.363,61.579 +116683,90.632,60.05 +116684,88.745,58.49 +116685,92.593,63.075 +116686,91.035,61.56 +116687,89.345,60.016 +116688,87.502,58.44 +116689,91.224,63.07 +116690,89.705,61.541 +116691,88.058,59.982 +116692,86.26,58.392 +116693,89.854,63.064 +116694,88.376,61.521 +116695,86.771,59.948 +116696,85.02,58.345 +116697,88.482,63.057 +116698,87.046,61.501 +116699,85.485,59.916 +116700,83.781,58.299 +116701,87.11,63.048 +116702,85.716,61.481 +116703,84.2,59.883 +116704,82.543,58.254 +116705,85.736,63.038 +116706,84.385,61.46 +116707,82.915,59.851 +116708,81.307,58.211 +116709,84.361,63.027 +116710,83.054,61.438 +116711,81.63,59.819 +116712,80.071,58.168 +116713,82.985,63.014 +116714,81.723,61.416 +116715,80.346,59.788 +116716,78.838,58.128 +116717,81.609,63 +116718,80.391,61.394 +116719,79.062,59.757 +116720,77.605,58.088 +116721,80.231,62.985 +116722,79.059,61.371 +116723,77.779,59.727 +116724,76.373,58.05 +116725,78.853,62.968 +116726,77.727,61.348 +116727,76.496,59.697 +116728,75.143,58.013 +116729,77.473,62.951 +116730,76.394,61.324 +116731,75.213,59.667 +116732,73.914,57.977 +116733,76.093,62.932 +116734,75.061,61.3 +116735,73.93,59.638 +116736,72.685,57.943 +116737,74.712,62.911 +116738,73.728,61.276 +116739,72.648,59.609 +116740,71.458,57.91 +116741,73.33,62.889 +116742,72.395,61.251 +116743,71.367,59.581 +116744,70.231,57.879 +116745,71.947,62.866 +116746,71.062,61.225 +116747,70.085,59.553 +116748,69.006,57.849 +116749,70.564,62.842 +116750,69.728,61.199 +116751,68.804,59.525 +116752,67.781,57.82 +116753,69.18,62.816 +116754,68.394,61.173 +116755,67.523,59.498 +116756,66.557,57.793 +116757,67.795,62.789 +116758,67.06,61.146 +116759,66.243,59.472 +116760,65.333,57.767 +116761,66.41,62.761 +116762,65.725,61.119 +116763,64.962,59.446 +116764,64.111,57.742 +116765,65.024,62.731 +116766,64.391,61.091 +116767,63.682,59.42 +116768,62.889,57.718 +116769,63.638,62.7 +116770,63.056,61.063 +116771,62.403,59.395 +116772,61.667,57.697 +116773,62.251,62.668 +116774,61.721,61.034 +116775,61.123,59.37 +116776,60.446,57.676 +116777,60.864,62.634 +116778,60.387,61.005 +116779,59.843,59.346 +116780,59.226,57.657 +116781,59.476,62.599 +116782,59.051,60.975 +116783,58.564,59.322 +116784,58.006,57.639 +116785,58.087,62.562 +116786,57.716,60.945 +116787,57.285,59.298 +116788,56.786,57.622 +116789,56.699,62.525 +116790,56.381,60.914 +116791,56.006,59.275 +116792,55.567,57.607 +116793,55.31,62.486 +116794,55.046,60.883 +116795,54.727,59.252 +116796,54.348,57.593 +116797,53.921,62.445 +116798,53.71,60.852 +116799,53.449,59.23 +116800,53.129,57.581 +116801,52.531,62.403 +116802,52.375,60.82 +116803,52.17,59.208 +116804,51.911,57.569 +116805,51.141,62.36 +116806,51.04,60.787 +116807,50.891,59.187 +116808,50.692,57.56 +116809,49.751,62.316 +116810,49.704,60.755 +116811,49.613,59.166 +116812,49.474,57.551 +116813,48.361,62.271 +116814,48.369,60.721 +116815,48.335,59.146 +116816,48.255,57.544 +116817,46.971,62.224 +116818,47.033,60.688 +116819,47.056,59.126 +116820,47.037,57.538 +116821,45.581,62.175 +116822,45.698,60.653 +116823,45.778,59.106 +116824,45.818,57.533 +116825,44.19,62.126 +116826,44.362,60.619 +116827,44.5,59.087 +116828,44.6,57.53 +116829,42.8,62.075 +116830,43.027,60.584 +116831,43.221,59.068 +116832,43.381,57.527 +116833,41.41,62.023 +116834,41.692,60.548 +116835,41.943,59.049 +116836,42.162,57.526 +116837,40.019,61.97 +116838,40.356,60.513 +116839,40.665,59.031 +116840,40.943,57.527 +116841,38.629,61.916 +116842,39.021,60.476 +116843,39.386,59.013 +116844,39.723,57.528 +116845,37.239,61.86 +116846,37.686,60.439 +116847,38.108,58.996 +116848,38.503,57.531 +116849,35.849,61.803 +116850,36.351,60.402 +116851,36.829,58.979 +116852,37.283,57.535 +116853,34.46,61.745 +116854,35.016,60.365 +116855,35.551,58.963 +116856,36.062,57.54 +116857,33.07,61.686 +116858,33.682,60.327 +116859,34.272,58.947 +116860,34.84,57.546 +116861,31.681,61.625 +116862,32.347,60.289 +116863,32.993,58.931 +116864,33.618,57.553 +116865,30.293,61.564 +116866,31.013,60.25 +116867,31.714,58.915 +116868,32.396,57.562 +116869,28.904,61.501 +116870,29.679,60.211 +116871,30.435,58.9 +116872,31.173,57.571 +116873,27.516,61.438 +116874,28.345,60.171 +116875,29.156,58.886 +116876,29.949,57.582 +116877,26.129,61.373 +116878,27.011,60.131 +116879,27.876,58.871 +116880,28.725,57.594 +116881,24.742,61.307 +116882,25.678,60.091 +116883,26.597,58.857 +116884,27.499,57.606 +116885,23.355,61.24 +116886,24.344,60.05 +116887,25.317,58.843 +116888,26.273,57.62 +116889,21.97,61.172 +116890,23.011,60.01 +116891,24.037,58.83 +116892,25.046,57.635 +116893,20.584,61.103 +116894,21.679,59.968 +116895,22.756,58.817 +116896,23.818,57.651 +116897,19.2,61.033 +116898,20.346,59.927 +116899,21.476,58.804 +116900,22.59,57.667 +116901,17.816,60.962 +116902,19.014,59.885 +116903,20.195,58.792 +116904,21.36,57.685 +116905,16.432,60.89 +116906,17.682,59.842 +116907,18.914,58.78 +116908,20.129,57.703 +116909,15.05,60.817 +116910,16.351,59.8 +116911,17.633,58.768 +116912,18.897,57.722 +116913,13.668,60.743 +116914,15.02,59.757 +116915,16.351,58.756 +116916,17.664,57.743 +116917,12.288,60.668 +116918,13.689,59.713 +116919,15.069,58.745 +116920,16.43,57.764 +116921,10.908,60.592 +116922,12.358,59.67 +116923,13.787,58.734 +116924,15.195,57.785 +116925,9.5286,60.516 +116926,11.028,59.626 +116927,12.504,58.723 +116928,13.959,57.808 +116929,8.1505,60.439 +116930,9.6984,59.582 +116931,11.221,58.712 +116932,12.721,57.831 +116933,6.7735,60.361 +116934,8.3691,59.538 +116935,9.9377,58.702 +116936,11.482,57.855 +116937,5.3974,60.282 +116938,7.0402,59.493 +116939,8.654,58.692 +116940,10.242,57.88 +116941,4.0225,60.202 +116942,5.7117,59.448 +116943,7.3699,58.682 +116944,9.0006,57.905 +116945,2.6486,60.122 +116946,4.3836,59.403 +116947,6.0855,58.672 +116948,7.7578,57.931 +116949,1.2759,60.041 +116950,3.056,59.358 +116951,4.8006,58.663 +116952,6.5136,57.958 +116953,359.9,59.959 +116954,1.7289,59.312 +116955,3.5153,58.653 +116956,5.268,57.985 +116957,358.53,59.877 +116958,0.40218,59.266 +116959,2.2296,58.644 +116960,4.021,58.013 +116961,357.16,59.794 +116962,359.08,59.22 +116963,0.94353,58.635 +116964,2.7725,58.041 +116965,355.8,59.711 +116966,357.75,59.174 +116967,359.66,58.627 +116968,1.5225,58.07 +116969,354.43,59.627 +116970,356.43,59.128 +116971,358.37,58.618 +116972,0.27107,58.099 +116973,353.07,59.542 +116974,355.1,59.081 +116975,357.08,58.609 +116976,359.02,58.128 +116977,351.7,59.457 +116978,353.78,59.035 +116979,355.79,58.601 +116980,357.76,58.158 +116981,350.34,59.371 +116982,352.45,58.988 +116983,354.51,58.593 +116984,356.51,58.189 +116985,348.98,59.286 +116986,351.13,58.941 +116987,353.22,58.585 +116988,355.25,58.22 +116989,347.62,59.199 +116990,349.81,58.893 +116991,351.93,58.577 +116992,353.99,58.251 +116993,346.26,59.112 +116994,348.48,58.846 +116995,350.64,58.569 +116996,352.73,58.282 +116997,344.91,59.025 +116998,347.16,58.799 +116999,349.35,58.561 +117000,351.47,58.313 +117001,343.55,58.938 +117002,345.84,58.751 +117003,348.06,58.553 +117004,350.2,58.345 +117005,342.2,58.85 +117006,344.52,58.704 +117007,346.77,58.545 +117008,348.94,58.377 +117009,340.85,58.762 +117010,343.2,58.656 +117011,345.47,58.537 +117012,347.67,58.409 +117013,339.5,58.674 +117014,341.88,58.608 +117015,344.18,58.53 +117016,346.4,58.441 +117017,338.15,58.586 +117018,340.57,58.56 +117019,342.89,58.522 +117020,345.13,58.473 +117021,336.8,58.498 +117022,339.25,58.513 +117023,341.59,58.515 +117024,343.86,58.506 +117025,335.46,58.409 +117026,337.93,58.465 +117027,340.3,58.507 +117028,342.58,58.538 +117029,334.11,58.32 +117030,336.61,58.417 +117031,339.01,58.499 +117032,341.3,58.57 +117033,332.77,58.232 +117034,335.3,58.369 +117035,337.71,58.492 +117036,340.03,58.603 +117037,331.43,58.143 +117038,333.98,58.321 +117039,336.41,58.484 +117040,338.75,58.635 +117041,330.1,58.054 +117042,332.67,58.273 +117043,335.12,58.476 +117044,337.46,58.667 +117045,328.76,57.966 +117046,331.35,58.225 +117047,333.82,58.469 +117048,336.18,58.699 +117049,327.43,57.877 +117050,330.04,58.177 +117051,332.52,58.461 +117052,334.9,58.731 +117053,326.1,57.788 +117054,328.73,58.129 +117055,331.23,58.453 +117056,333.61,58.762 +117057,324.77,57.7 +117058,327.42,58.081 +117059,329.93,58.445 +117060,332.32,58.794 +117061,323.44,57.612 +117062,326.11,58.034 +117063,328.63,58.437 +117064,331.03,58.825 +117065,322.12,57.524 +117066,324.79,57.986 +117067,327.33,58.429 +117068,329.74,58.856 +117069,320.79,57.436 +117070,323.48,57.938 +117071,326.03,58.421 +117072,328.44,58.886 +117073,319.47,57.349 +117074,322.18,57.891 +117075,324.73,58.412 +117076,327.15,58.916 +117077,318.15,57.262 +117078,320.87,57.843 +117079,323.42,58.404 +117080,325.85,58.946 +117081,316.83,57.175 +117082,319.56,57.796 +117083,322.12,58.395 +117084,324.55,58.975 +117085,315.52,57.089 +117086,318.25,57.749 +117087,320.82,58.386 +117088,323.25,59.004 +117089,314.21,57.003 +117090,316.95,57.702 +117091,319.52,58.377 +117092,321.94,59.033 +117093,312.89,56.917 +117094,315.64,57.655 +117095,318.21,58.368 +117096,320.64,59.061 +117097,311.59,56.832 +117098,314.34,57.608 +117099,316.91,58.359 +117100,319.33,59.088 +117101,310.28,56.747 +117102,313.03,57.561 +117103,315.6,58.349 +117104,318.02,59.115 +117105,308.97,56.663 +117106,311.73,57.515 +117107,314.3,58.34 +117108,316.71,59.141 +117109,307.67,56.58 +117110,310.42,57.468 +117111,312.99,58.33 +117112,315.4,59.167 +117113,306.37,56.497 +117114,309.12,57.422 +117115,311.68,58.32 +117116,314.08,59.192 +117117,305.07,56.415 +117118,307.82,57.377 +117119,310.38,58.309 +117120,312.77,59.216 +117121,303.78,56.333 +117122,306.52,57.331 +117123,309.07,58.299 +117124,311.45,59.24 +117125,302.48,56.252 +117126,305.22,57.285 +117127,307.76,58.288 +117128,310.13,59.263 +117129,301.19,56.172 +117130,303.92,57.24 +117131,306.45,58.277 +117132,308.81,59.285 +117133,299.9,56.093 +117134,302.62,57.195 +117135,305.14,58.265 +117136,307.49,59.306 +117137,298.62,56.014 +117138,301.32,57.151 +117139,303.83,58.254 +117140,306.16,59.327 +117141,297.33,55.937 +117142,300.03,57.106 +117143,302.52,58.242 +117144,304.84,59.346 +117145,296.05,55.86 +117146,298.73,57.062 +117147,301.21,58.229 +117148,303.51,59.365 +117149,294.77,55.784 +117150,297.44,57.018 +117151,299.89,58.217 +117152,302.18,59.383 +117153,293.49,55.708 +117154,296.14,56.975 +117155,298.58,58.204 +117156,300.85,59.4 +117157,292.21,55.634 +117158,294.85,56.931 +117159,297.27,58.191 +117160,299.51,59.416 +117161,290.94,55.561 +117162,293.55,56.888 +117163,295.95,58.177 +117164,298.18,59.432 +117165,289.66,55.489 +117166,292.26,56.846 +117167,294.64,58.163 +117168,296.84,59.446 +117169,288.39,55.417 +117170,290.97,56.803 +117171,293.32,58.149 +117172,295.5,59.459 +117173,287.13,55.347 +117174,289.68,56.761 +117175,292.01,58.135 +117176,294.16,59.471 +117177,285.86,55.278 +117178,288.38,56.72 +117179,290.69,58.12 +117180,292.82,59.482 +117181,284.6,55.21 +117182,287.09,56.678 +117183,289.38,58.105 +117184,291.48,59.492 +117185,283.33,55.143 +117186,285.8,56.637 +117187,288.06,58.089 +117188,290.14,59.501 +117189,282.07,55.077 +117190,284.52,56.597 +117191,286.74,58.073 +117192,288.79,59.509 +117193,280.82,55.012 +117194,283.23,56.556 +117195,285.42,58.056 +117196,287.44,59.516 +117197,279.56,54.948 +117198,281.94,56.516 +117199,284.11,58.04 +117200,286.1,59.522 +117201,278.31,54.886 +117202,280.65,56.477 +117203,282.79,58.022 +117204,284.75,59.526 +117205,277.05,54.825 +117206,279.37,56.438 +117207,281.47,58.005 +117208,283.4,59.53 +117209,275.8,54.765 +117210,278.08,56.399 +117211,280.15,57.987 +117212,282.04,59.532 +117213,274.55,54.706 +117214,276.79,56.361 +117215,278.83,57.968 +117216,280.69,59.533 +117217,273.31,54.649 +117218,275.51,56.323 +117219,277.51,57.95 +117220,279.33,59.532 +117221,272.06,54.593 +117222,274.23,56.286 +117223,276.19,57.93 +117224,277.98,59.531 +117225,270.82,54.538 +117226,272.94,56.249 +117227,274.86,57.911 +117228,276.62,59.528 +117229,269.58,54.485 +117230,271.66,56.212 +117231,273.54,57.89 +117232,275.26,59.524 +117233,268.34,54.433 +117234,270.38,56.176 +117235,272.22,57.87 +117236,273.9,59.518 +117237,267.1,54.382 +117238,269.09,56.14 +117239,270.9,57.849 +117240,272.54,59.512 +117241,265.86,54.332 +117242,267.81,56.105 +117243,269.57,57.827 +117244,271.17,59.504 +117245,264.63,54.284 +117246,266.53,56.07 +117247,268.25,57.805 +117248,269.81,59.494 +117249,263.4,54.238 +117250,265.25,56.035 +117251,266.92,57.783 +117252,268.44,59.484 +117253,262.16,54.193 +117254,263.97,56.001 +117255,265.6,57.76 +117256,267.08,59.472 +117257,260.93,54.149 +117258,262.69,55.968 +117259,264.28,57.737 +117260,265.71,59.458 +117261,259.71,54.107 +117262,261.41,55.935 +117263,262.95,57.713 +117264,264.34,59.444 +117265,258.48,54.066 +117266,260.14,55.902 +117267,261.62,57.688 +117268,262.97,59.428 +117269,257.25,54.026 +117270,258.86,55.87 +117271,260.3,57.664 +117272,261.6,59.41 +117273,256.03,53.988 +117274,257.58,55.839 +117275,258.97,57.638 +117276,260.23,59.391 +117277,254.8,53.952 +117278,256.3,55.807 +117279,257.65,57.613 +117280,258.86,59.371 +117281,253.58,53.917 +117282,255.03,55.777 +117283,256.32,57.586 +117284,257.48,59.349 +117285,252.36,53.883 +117286,253.75,55.746 +117287,254.99,57.56 +117288,256.11,59.326 +117289,251.14,53.851 +117290,252.47,55.717 +117291,253.67,57.532 +117292,254.73,59.302 +117293,249.92,53.821 +117294,251.2,55.687 +117295,252.34,57.505 +117296,253.36,59.276 +117297,248.7,53.791 +117298,249.92,55.659 +117299,251.01,57.477 +117300,251.98,59.249 +117301,247.49,53.764 +117302,248.65,55.63 +117303,249.68,57.448 +117304,250.6,59.22 +117305,246.27,53.738 +117306,247.37,55.602 +117307,248.35,57.419 +117308,249.23,59.19 +117309,245.05,53.713 +117310,246.1,55.575 +117311,247.03,57.389 +117312,247.85,59.158 +117313,243.84,53.69 +117314,244.83,55.548 +117315,245.7,57.359 +117316,246.47,59.125 +117317,242.62,53.668 +117318,243.55,55.522 +117319,244.37,57.328 +117320,245.09,59.091 +117321,241.41,53.648 +117322,242.28,55.496 +117323,243.04,57.297 +117324,243.71,59.055 +117325,240.2,53.629 +117326,241.01,55.47 +117327,241.71,57.266 +117328,242.33,59.018 +117329,238.99,53.612 +117330,239.73,55.445 +117331,240.38,57.234 +117332,240.94,58.979 +117333,237.78,53.596 +117334,238.46,55.421 +117335,239.05,57.201 +117336,239.56,58.939 +117337,236.56,53.582 +117338,237.19,55.397 +117339,237.72,57.168 +117340,238.18,58.897 +117341,235.35,53.569 +117342,235.92,55.373 +117343,236.39,57.134 +117344,236.8,58.854 +117345,234.14,53.558 +117346,234.64,55.35 +117347,235.06,57.1 +117348,235.41,58.81 +117349,232.93,53.548 +117350,233.37,55.328 +117351,233.73,57.066 +117352,234.03,58.764 +117353,231.72,53.539 +117354,232.1,55.306 +117355,232.4,57.031 +117356,232.65,58.717 +117357,230.52,53.532 +117358,230.83,55.284 +117359,231.07,56.996 +117360,231.26,58.669 +117361,229.31,53.527 +117362,229.56,55.263 +117363,229.74,56.96 +117364,229.88,58.619 +117365,228.1,53.522 +117366,228.28,55.242 +117367,228.41,56.923 +117368,228.49,58.567 +117369,226.89,53.519 +117370,227.01,55.222 +117371,227.08,56.886 +117372,227.11,58.515 +117373,225.68,53.518 +117374,225.74,55.202 +117375,225.75,56.849 +117376,225.72,58.461 +117377,224.47,53.518 +117378,224.47,55.182 +117379,224.42,56.811 +117380,224.34,58.406 +117381,223.26,53.519 +117382,223.2,55.163 +117383,223.09,56.773 +117384,222.95,58.349 +117385,222.05,53.521 +117386,221.93,55.145 +117387,221.77,56.734 +117388,221.57,58.291 +117389,220.84,53.525 +117390,220.66,55.127 +117391,220.44,56.695 +117392,220.18,58.232 +117393,219.63,53.53 +117394,219.39,55.109 +117395,219.11,56.656 +117396,218.8,58.171 +117397,218.42,53.537 +117398,218.11,55.092 +117399,217.78,56.616 +117400,217.41,58.109 +117401,217.21,53.544 +117402,216.84,55.075 +117403,216.45,56.575 +117404,216.03,58.046 +117405,216,53.553 +117406,215.57,55.058 +117407,215.12,56.534 +117408,214.64,57.982 +117409,214.79,53.563 +117410,214.3,55.042 +117411,213.79,56.493 +117412,213.26,57.916 +117413,213.58,53.575 +117414,213.03,55.027 +117415,212.46,56.452 +117416,211.87,57.849 +117417,212.36,53.587 +117418,211.76,55.011 +117419,211.13,56.409 +117420,210.49,57.781 +117421,211.15,53.601 +117422,210.49,54.996 +117423,209.8,56.367 +117424,209.1,57.712 +117425,209.94,53.615 +117426,209.21,54.982 +117427,208.47,56.324 +117428,207.72,57.641 +117429,208.72,53.631 +117430,207.94,54.968 +117431,207.15,56.281 +117432,206.34,57.57 +117433,207.51,53.648 +117434,206.67,54.954 +117435,205.82,56.237 +117436,204.96,57.497 +117437,206.29,53.666 +117438,205.4,54.941 +117439,204.49,56.193 +117440,203.57,57.423 +117441,205.08,53.685 +117442,204.12,54.927 +117443,203.16,56.149 +117444,202.19,57.348 +117445,203.86,53.705 +117446,202.85,54.915 +117447,201.84,56.104 +117448,200.81,57.272 +117449,202.64,53.726 +117450,201.58,54.902 +117451,200.51,56.059 +117452,199.43,57.195 +117453,201.42,53.748 +117454,200.31,54.89 +117455,199.18,56.014 +117456,198.05,57.117 +117457,200.2,53.771 +117458,199.03,54.878 +117459,197.86,55.968 +117460,196.67,57.038 +117461,198.98,53.795 +117462,197.76,54.867 +117463,196.53,55.922 +117464,195.29,56.958 +117465,197.75,53.82 +117466,196.48,54.856 +117467,195.21,55.875 +117468,193.92,56.877 +117469,196.53,53.845 +117470,195.21,54.845 +117471,193.88,55.829 +117472,192.54,56.795 +117473,195.3,53.871 +117474,193.94,54.834 +117475,192.56,55.782 +117476,191.16,56.713 +117477,194.08,53.898 +117478,192.66,54.824 +117479,191.23,55.734 +117480,189.79,56.629 +117481,192.85,53.926 +117482,191.39,54.814 +117483,189.91,55.687 +117484,188.42,56.544 +117485,191.62,53.955 +117486,190.11,54.804 +117487,188.58,55.639 +117488,187.04,56.459 +117489,190.39,53.984 +117490,188.83,54.794 +117491,187.26,55.591 +117492,185.67,56.373 +117493,189.16,54.014 +117494,187.56,54.785 +117495,185.94,55.543 +117496,184.3,56.286 +117497,187.93,54.045 +117498,186.28,54.776 +117499,184.62,55.494 +117500,182.93,56.198 +117501,186.69,54.076 +117502,185,54.767 +117503,183.29,55.445 +117504,181.56,56.11 +117505,185.46,54.108 +117506,183.73,54.758 +117507,181.97,55.396 +117508,180.19,56.021 +117509,184.22,54.14 +117510,182.45,54.749 +117511,180.65,55.347 +117512,178.82,55.931 +117513,182.98,54.173 +117514,181.17,54.741 +117515,179.33,55.298 +117516,177.46,55.841 +117517,181.74,54.206 +117518,179.89,54.733 +117519,178.01,55.248 +117520,176.09,55.75 +117521,180.5,54.24 +117522,178.61,54.725 +117523,176.69,55.198 +117524,174.73,55.659 +117525,179.26,54.274 +117526,177.33,54.717 +117527,175.37,55.148 +117528,173.37,55.567 +117529,178.01,54.308 +117530,176.05,54.709 +117531,174.05,55.098 +117532,172.01,55.474 +117533,176.77,54.343 +117534,174.77,54.701 +117535,172.74,55.048 +117536,170.65,55.381 +117537,175.52,54.378 +117538,173.49,54.694 +117539,171.42,54.997 +117540,169.29,55.288 +117541,174.27,54.414 +117542,172.21,54.686 +117543,170.1,54.947 +117544,167.94,55.194 +117545,173.02,54.449 +117546,170.93,54.679 +117547,168.79,54.896 +117548,166.58,55.1 +117549,171.76,54.485 +117550,169.65,54.671 +117551,167.47,54.846 +117552,165.23,55.006 +117553,170.51,54.521 +117554,168.36,54.664 +117555,166.15,54.795 +117556,163.88,54.911 +117557,169.25,54.557 +117558,167.08,54.657 +117559,164.84,54.744 +117560,162.53,54.816 +117561,168,54.594 +117562,165.8,54.65 +117563,163.53,54.693 +117564,161.18,54.721 +117565,166.74,54.63 +117566,164.51,54.643 +117567,162.21,54.642 +117568,159.83,54.625 +117569,165.47,54.666 +117570,163.23,54.636 +117571,160.9,54.591 +117572,158.49,54.53 +117573,164.21,54.703 +117574,161.94,54.628 +117575,159.59,54.54 +117576,157.15,54.434 +117577,162.94,54.739 +117578,160.65,54.621 +117579,158.28,54.489 +117580,155.8,54.338 +117581,161.68,54.775 +117582,159.37,54.614 +117583,156.97,54.438 +117584,154.46,54.242 +117585,160.41,54.811 +117586,158.08,54.607 +117587,155.66,54.386 +117588,153.13,54.146 +117589,159.14,54.847 +117590,156.79,54.6 +117591,154.35,54.335 +117592,151.79,54.051 +117593,157.87,54.883 +117594,155.5,54.593 +117595,153.04,54.284 +117596,150.46,53.955 +117597,156.59,54.919 +117598,154.22,54.586 +117599,151.73,54.233 +117600,149.12,53.859 +117601,155.32,54.954 +117602,152.93,54.578 +117603,150.42,54.182 +117604,147.79,53.764 +117605,154.04,54.99 +117606,151.64,54.571 +117607,149.12,54.131 +117608,146.46,53.668 +117609,152.76,55.024 +117610,150.35,54.563 +117611,147.81,54.081 +117612,145.14,53.573 +117613,151.48,55.059 +117614,149.05,54.556 +117615,146.51,54.03 +117616,143.81,53.478 +117617,150.19,55.093 +117618,147.76,54.548 +117619,145.2,53.979 +117620,142.49,53.383 +117621,148.91,55.127 +117622,146.47,54.54 +117623,143.9,53.929 +117624,141.17,53.289 +117625,147.62,55.16 +117626,145.18,54.532 +117627,142.6,53.878 +117628,139.85,53.195 +117629,146.33,55.193 +117630,143.88,54.524 +117631,141.29,53.828 +117632,138.54,53.102 +117633,145.04,55.226 +117634,142.59,54.516 +117635,139.99,53.778 +117636,137.22,53.008 +117637,143.75,55.257 +117638,141.29,54.507 +117639,138.69,53.728 +117640,135.91,52.916 +117641,142.45,55.289 +117642,140,54.499 +117643,137.39,53.678 +117644,134.6,52.823 +117645,141.16,55.32 +117646,138.7,54.49 +117647,136.09,53.629 +117648,133.29,52.732 +117649,139.86,55.35 +117650,137.41,54.481 +117651,134.79,53.579 +117652,131.99,52.641 +117653,138.56,55.379 +117654,136.11,54.471 +117655,133.5,53.53 +117656,130.68,52.55 +117657,137.26,55.408 +117658,134.81,54.462 +117659,132.2,53.481 +117660,129.38,52.46 +117661,135.95,55.436 +117662,133.51,54.452 +117663,130.9,53.432 +117664,128.09,52.371 +117665,134.65,55.463 +117666,132.22,54.442 +117667,129.61,53.384 +117668,126.79,52.282 +117669,133.34,55.49 +117670,130.92,54.432 +117671,128.31,53.335 +117672,125.49,52.195 +117673,132.03,55.516 +117674,129.62,54.422 +117675,127.02,53.287 +117676,124.2,52.108 +117677,130.72,55.541 +117678,128.32,54.411 +117679,125.73,53.24 +117680,122.91,52.021 +117681,129.41,55.565 +117682,127.01,54.4 +117683,124.43,53.192 +117684,121.62,51.936 +117685,128.09,55.588 +117686,125.71,54.388 +117687,123.14,53.145 +117688,120.34,51.852 +117689,126.78,55.61 +117690,124.41,54.377 +117691,121.85,53.098 +117692,119.06,51.768 +117693,125.46,55.632 +117694,123.11,54.365 +117695,120.56,53.051 +117696,117.77,51.685 +117697,124.14,55.652 +117698,121.8,54.353 +117699,119.27,53.005 +117700,116.5,51.604 +117701,122.82,55.672 +117702,120.5,54.34 +117703,117.98,52.959 +117704,115.22,51.523 +117705,121.5,55.69 +117706,119.2,54.327 +117707,116.69,52.914 +117708,113.95,51.444 +117709,120.17,55.708 +117710,117.89,54.314 +117711,115.41,52.869 +117712,112.67,51.365 +117713,118.85,55.724 +117714,116.58,54.3 +117715,114.12,52.824 +117716,111.4,51.288 +117717,117.52,55.739 +117718,115.28,54.286 +117719,112.83,52.779 +117720,110.14,51.211 +117721,116.19,55.754 +117722,113.97,54.272 +117723,111.55,52.735 +117724,108.87,51.136 +117725,114.86,55.767 +117726,112.66,54.257 +117727,110.26,52.691 +117728,107.61,51.062 +117729,113.53,55.779 +117730,111.36,54.242 +117731,108.98,52.648 +117732,106.35,50.99 +117733,112.19,55.789 +117734,110.05,54.226 +117735,107.7,52.605 +117736,105.09,50.918 +117737,110.86,55.799 +117738,108.74,54.21 +117739,106.41,52.563 +117740,103.83,50.848 +117741,109.52,55.807 +117742,107.43,54.194 +117743,105.13,52.521 +117744,102.58,50.779 +117745,108.18,55.815 +117746,106.12,54.177 +117747,103.85,52.479 +117748,101.33,50.711 +117749,106.84,55.82 +117750,104.81,54.16 +117751,102.57,52.438 +117752,100.08,50.645 +117753,105.5,55.825 +117754,103.5,54.142 +117755,101.29,52.397 +117756,98.828,50.58 +117757,104.16,55.828 +117758,102.19,54.124 +117759,100.01,52.357 +117760,97.582,50.517 +117761,102.81,55.831 +117762,100.88,54.106 +117763,98.734,52.317 +117764,96.338,50.455 +117765,101.47,55.831 +117766,99.564,54.087 +117767,97.457,52.277 +117768,95.096,50.394 +117769,100.12,55.831 +117770,98.252,54.067 +117771,96.18,52.238 +117772,93.857,50.335 +117773,98.774,55.829 +117774,96.939,54.048 +117775,94.903,52.2 +117776,92.619,50.277 +117777,97.425,55.825 +117778,95.625,54.027 +117779,93.627,52.162 +117780,91.383,50.221 +117781,96.074,55.821 +117782,94.311,54.006 +117783,92.352,52.124 +117784,90.148,50.166 +117785,94.722,55.815 +117786,92.997,53.985 +117787,91.078,52.087 +117788,88.916,50.113 +117789,93.369,55.807 +117790,91.682,53.963 +117791,89.804,52.051 +117792,87.686,50.061 +117793,92.015,55.798 +117794,90.367,53.941 +117795,88.53,52.015 +117796,86.457,50.011 +117797,90.659,55.788 +117798,89.052,53.918 +117799,87.257,51.979 +117800,85.23,49.962 +117801,89.303,55.776 +117802,87.736,53.895 +117803,85.985,51.945 +117804,84.004,49.915 +117805,87.945,55.763 +117806,86.42,53.871 +117807,84.713,51.91 +117808,82.781,49.87 +117809,86.586,55.748 +117810,85.103,53.847 +117811,83.442,51.876 +117812,81.559,49.826 +117813,85.226,55.732 +117814,83.786,53.823 +117815,82.171,51.843 +117816,80.338,49.784 +117817,83.865,55.715 +117818,82.469,53.797 +117819,80.901,51.81 +117820,79.119,49.744 +117821,82.503,55.695 +117822,81.152,53.772 +117823,79.631,51.777 +117824,77.902,49.705 +117825,81.141,55.675 +117826,79.834,53.745 +117827,78.362,51.746 +117828,76.686,49.668 +117829,79.777,55.653 +117830,78.516,53.719 +117831,77.093,51.714 +117832,75.471,49.632 +117833,78.412,55.629 +117834,77.197,53.691 +117835,75.825,51.684 +117836,74.258,49.598 +117837,77.047,55.604 +117838,75.879,53.664 +117839,74.557,51.653 +117840,73.046,49.566 +117841,75.68,55.577 +117842,74.56,53.635 +117843,73.289,51.624 +117844,71.835,49.535 +117845,74.313,55.549 +117846,73.241,53.606 +117847,72.022,51.595 +117848,70.626,49.506 +117849,72.945,55.52 +117850,71.921,53.577 +117851,70.756,51.566 +117852,69.417,49.479 +117853,71.577,55.488 +117854,70.602,53.547 +117855,69.489,51.538 +117856,68.21,49.453 +117857,70.207,55.456 +117858,69.282,53.517 +117859,68.224,51.51 +117860,67.003,49.429 +117861,68.837,55.421 +117862,67.962,53.486 +117863,66.958,51.483 +117864,65.798,49.407 +117865,67.467,55.386 +117866,66.642,53.454 +117867,65.693,51.457 +117868,64.593,49.387 +117869,66.095,55.348 +117870,65.321,53.423 +117871,64.428,51.431 +117872,63.39,49.368 +117873,64.724,55.309 +117874,64.001,53.39 +117875,63.163,51.406 +117876,62.187,49.35 +117877,63.351,55.269 +117878,62.68,53.357 +117879,61.899,51.381 +117880,60.985,49.335 +117881,61.978,55.227 +117882,61.359,53.324 +117883,60.635,51.357 +117884,59.783,49.321 +117885,60.605,55.184 +117886,60.038,53.29 +117887,59.371,51.333 +117888,58.583,49.308 +117889,59.231,55.139 +117890,58.717,53.255 +117891,58.108,51.31 +117892,57.382,49.298 +117893,57.857,55.092 +117894,57.396,53.22 +117895,56.844,51.287 +117896,56.183,49.289 +117897,56.482,55.044 +117898,56.075,53.184 +117899,55.581,51.265 +117900,54.983,49.281 +117901,55.107,54.995 +117902,54.754,53.148 +117903,54.318,51.243 +117904,53.784,49.275 +117905,53.732,54.944 +117906,53.433,53.112 +117907,53.056,51.222 +117908,52.586,49.271 +117909,52.356,54.892 +117910,52.111,53.075 +117911,51.793,51.202 +117912,51.388,49.268 +117913,50.98,54.838 +117914,50.79,53.037 +117915,50.531,51.182 +117916,50.19,49.267 +117917,49.604,54.782 +117918,49.469,52.999 +117919,49.268,51.162 +117920,48.992,49.268 +117921,48.228,54.726 +117922,48.147,52.961 +117923,48.006,51.143 +117924,47.794,49.269 +117925,46.852,54.667 +117926,46.826,52.922 +117927,46.744,51.125 +117928,46.596,49.273 +117929,45.476,54.608 +117930,45.505,52.882 +117931,45.482,51.107 +117932,45.399,49.278 +117933,44.099,54.547 +117934,44.184,52.842 +117935,44.22,51.089 +117936,44.201,49.284 +117937,42.723,54.484 +117938,42.862,52.802 +117939,42.958,51.072 +117940,43.003,49.292 +117941,41.346,54.42 +117942,41.541,52.761 +117943,41.696,51.056 +117944,41.805,49.302 +117945,39.97,54.355 +117946,40.22,52.72 +117947,40.434,51.04 +117948,40.606,49.312 +117949,38.594,54.288 +117950,38.9,52.678 +117951,39.173,51.024 +117952,39.408,49.324 +117953,37.218,54.22 +117954,37.579,52.636 +117955,37.911,51.009 +117956,38.209,49.338 +117957,35.842,54.151 +117958,36.258,52.593 +117959,36.649,50.994 +117960,37.009,49.353 +117961,34.466,54.08 +117962,34.938,52.55 +117963,35.387,50.98 +117964,35.81,49.369 +117965,33.09,54.008 +117966,33.618,52.506 +117967,34.125,50.966 +117968,34.609,49.387 +117969,31.715,53.935 +117970,32.298,52.462 +117971,32.863,50.953 +117972,33.408,49.405 +117973,30.34,53.861 +117974,30.978,52.418 +117975,31.601,50.94 +117976,32.207,49.425 +117977,28.966,53.785 +117978,29.658,52.373 +117979,30.338,50.927 +117980,31.005,49.447 +117981,27.591,53.708 +117982,28.339,52.328 +117983,29.076,50.915 +117984,29.802,49.469 +117985,26.218,53.63 +117986,27.02,52.282 +117987,27.813,50.903 +117988,28.598,49.493 +117989,24.844,53.55 +117990,25.701,52.236 +117991,26.551,50.892 +117992,27.394,49.517 +117993,23.471,53.47 +117994,24.382,52.19 +117995,25.288,50.881 +117996,26.188,49.543 +117997,22.099,53.388 +117998,23.064,52.143 +117999,24.025,50.871 +118000,24.982,49.57 +118001,20.727,53.305 +118002,21.745,52.096 +118003,22.761,50.861 +118004,23.775,49.598 +118005,19.356,53.221 +118006,20.428,52.049 +118007,21.498,50.851 +118008,22.567,49.627 +118009,17.986,53.136 +118010,19.11,52.001 +118011,20.234,50.841 +118012,21.358,49.657 +118013,16.616,53.051 +118014,17.793,51.953 +118015,18.97,50.832 +118016,20.147,49.689 +118017,15.247,52.964 +118018,16.476,51.905 +118019,17.706,50.823 +118020,18.936,49.72 +118021,13.879,52.876 +118022,15.16,51.856 +118023,16.441,50.815 +118024,17.723,49.753 +118025,12.511,52.787 +118026,13.844,51.807 +118027,15.176,50.807 +118028,16.51,49.787 +118029,11.145,52.697 +118030,12.528,51.758 +118031,13.911,50.799 +118032,15.295,49.821 +118033,9.7791,52.606 +118034,11.213,51.708 +118035,12.646,50.791 +118036,14.078,49.857 +118037,8.4142,52.514 +118038,9.8983,51.658 +118039,11.38,50.784 +118040,12.861,49.893 +118041,7.0504,52.422 +118042,8.5839,51.608 +118043,10.114,50.777 +118044,11.642,49.93 +118045,5.6875,52.329 +118046,7.27,51.558 +118047,8.8475,50.77 +118048,10.421,49.967 +118049,4.3257,52.235 +118050,5.9565,51.507 +118051,7.5807,50.764 +118052,9.1996,50.005 +118053,2.9649,52.14 +118054,4.6435,51.456 +118055,6.3136,50.757 +118056,7.9764,50.044 +118057,1.6053,52.044 +118058,3.331,51.405 +118059,5.046,50.751 +118060,6.7518,50.084 +118061,0.24674,51.948 +118062,2.019,51.354 +118063,3.778,50.745 +118064,5.5256,50.123 +118065,358.89,51.851 +118066,0.70747,51.303 +118067,2.5097,50.74 +118068,4.2979,50.164 +118069,357.53,51.754 +118070,359.4,51.251 +118071,1.2409,50.734 +118072,3.0686,50.205 +118073,356.18,51.656 +118074,358.09,51.199 +118075,359.97,50.729 +118076,1.8378,50.246 +118077,354.82,51.557 +118078,356.78,51.147 +118079,358.7,50.724 +118080,0.60531,50.288 +118081,353.47,51.458 +118082,355.47,51.095 +118083,357.43,50.719 +118084,359.37,50.33 +118085,352.12,51.358 +118086,354.16,51.043 +118087,356.16,50.714 +118088,358.14,50.372 +118089,350.77,51.258 +118090,352.85,50.991 +118091,354.89,50.709 +118092,356.9,50.415 +118093,349.42,51.158 +118094,351.54,50.938 +118095,353.62,50.704 +118096,355.66,50.458 +118097,348.08,51.057 +118098,350.23,50.886 +118099,352.35,50.7 +118100,354.42,50.501 +118101,346.73,50.956 +118102,348.93,50.833 +118103,351.07,50.695 +118104,353.18,50.545 +118105,345.39,50.854 +118106,347.62,50.78 +118107,349.8,50.691 +118108,351.93,50.588 +118109,344.05,50.752 +118110,346.32,50.727 +118111,348.53,50.687 +118112,350.69,50.632 +118113,342.71,50.65 +118114,345.01,50.675 +118115,347.25,50.682 +118116,349.44,50.676 +118117,341.37,50.548 +118118,343.71,50.622 +118119,345.98,50.678 +118120,348.19,50.72 +118121,340.03,50.446 +118122,342.41,50.569 +118123,344.7,50.674 +118124,346.94,50.763 +118125,338.7,50.343 +118126,341.1,50.516 +118127,343.43,50.67 +118128,345.68,50.807 +118129,337.36,50.241 +118130,339.8,50.463 +118131,342.15,50.666 +118132,344.43,50.851 +118133,336.03,50.138 +118134,338.5,50.41 +118135,340.88,50.662 +118136,343.17,50.894 +118137,334.7,50.036 +118138,337.2,50.358 +118139,339.6,50.657 +118140,341.91,50.938 +118141,333.37,49.933 +118142,335.9,50.305 +118143,338.32,50.653 +118144,340.65,50.981 +118145,332.05,49.831 +118146,334.6,50.252 +118147,337.04,50.649 +118148,339.39,51.024 +118149,330.72,49.729 +118150,333.3,50.2 +118151,335.76,50.645 +118152,338.12,51.067 +118153,329.4,49.627 +118154,332,50.147 +118155,334.48,50.64 +118156,336.86,51.109 +118157,328.08,49.525 +118158,330.71,50.095 +118159,333.2,50.636 +118160,335.59,51.152 +118161,326.76,49.423 +118162,329.41,50.042 +118163,331.92,50.631 +118164,334.32,51.193 +118165,325.44,49.322 +118166,328.11,49.99 +118167,330.64,50.626 +118168,333.05,51.235 +118169,324.13,49.221 +118170,326.82,49.938 +118171,329.36,50.622 +118172,331.77,51.276 +118173,322.82,49.12 +118174,325.53,49.886 +118175,328.08,50.617 +118176,330.5,51.316 +118177,321.51,49.02 +118178,324.23,49.834 +118179,326.8,50.612 +118180,329.22,51.356 +118181,320.2,48.92 +118182,322.94,49.783 +118183,325.51,50.606 +118184,327.94,51.396 +118185,318.89,48.821 +118186,321.65,49.731 +118187,324.23,50.601 +118188,326.66,51.435 +118189,317.59,48.722 +118190,320.36,49.68 +118191,322.94,50.595 +118192,325.38,51.473 +118193,316.29,48.624 +118194,319.07,49.629 +118195,321.66,50.59 +118196,324.09,51.51 +118197,314.99,48.526 +118198,317.78,49.578 +118199,320.37,50.584 +118200,322.81,51.547 +118201,313.69,48.429 +118202,316.49,49.528 +118203,319.09,50.577 +118204,321.52,51.584 +118205,312.39,48.333 +118206,315.2,49.478 +118207,317.8,50.571 +118208,320.23,51.619 +118209,311.1,48.238 +118210,313.91,49.428 +118211,316.51,50.564 +118212,318.94,51.654 +118213,309.81,48.143 +118214,312.63,49.378 +118215,315.22,50.557 +118216,317.64,51.688 +118217,308.52,48.049 +118218,311.34,49.329 +118219,313.94,50.55 +118220,316.35,51.721 +118221,307.24,47.956 +118222,310.06,49.279 +118223,312.65,50.543 +118224,315.05,51.754 +118225,305.95,47.864 +118226,308.77,49.231 +118227,311.36,50.535 +118228,313.75,51.785 +118229,304.67,47.773 +118230,307.49,49.182 +118231,310.07,50.527 +118232,312.45,51.816 +118233,303.39,47.682 +118234,306.21,49.134 +118235,308.78,50.519 +118236,311.15,51.845 +118237,302.11,47.593 +118238,304.92,49.086 +118239,307.48,50.51 +118240,309.84,51.874 +118241,300.84,47.505 +118242,303.64,49.039 +118243,306.19,50.501 +118244,308.53,51.901 +118245,299.57,47.418 +118246,302.36,48.992 +118247,304.9,50.492 +118248,307.23,51.928 +118249,298.3,47.332 +118250,301.08,48.945 +118251,303.61,50.482 +118252,305.92,51.953 +118253,297.03,47.247 +118254,299.8,48.899 +118255,302.31,50.472 +118256,304.61,51.978 +118257,295.76,47.164 +118258,298.53,48.853 +118259,301.02,50.462 +118260,303.29,52.001 +118261,294.5,47.081 +118262,297.25,48.808 +118263,299.72,50.451 +118264,301.98,52.023 +118265,293.24,47 +118266,295.97,48.763 +118267,298.43,50.44 +118268,300.66,52.045 +118269,291.98,46.92 +118270,294.7,48.718 +118271,297.13,50.429 +118272,299.34,52.064 +118273,290.73,46.842 +118274,293.42,48.674 +118275,295.84,50.417 +118276,298.03,52.083 +118277,289.47,46.764 +118278,292.15,48.63 +118279,294.54,50.405 +118280,296.7,52.101 +118281,288.22,46.689 +118282,290.87,48.587 +118283,293.24,50.392 +118284,295.38,52.117 +118285,286.97,46.614 +118286,289.6,48.544 +118287,291.94,50.379 +118288,294.06,52.132 +118289,285.72,46.541 +118290,288.33,48.502 +118291,290.65,50.365 +118292,292.73,52.145 +118293,284.48,46.47 +118294,287.06,48.46 +118295,289.35,50.352 +118296,291.41,52.158 +118297,283.24,46.4 +118298,285.79,48.419 +118299,288.05,50.337 +118300,290.08,52.169 +118301,282,46.332 +118302,284.52,48.378 +118303,286.75,50.322 +118304,288.75,52.178 +118305,280.76,46.265 +118306,283.25,48.338 +118307,285.45,50.307 +118308,287.42,52.186 +118309,279.52,46.199 +118310,281.98,48.298 +118311,284.15,50.291 +118312,286.08,52.193 +118313,278.29,46.136 +118314,280.71,48.259 +118315,282.85,50.275 +118316,284.75,52.199 +118317,277.06,46.074 +118318,279.45,48.22 +118319,281.54,50.258 +118320,283.41,52.203 +118321,275.83,46.014 +118322,278.18,48.182 +118323,280.24,50.241 +118324,282.08,52.205 +118325,274.6,45.955 +118326,276.91,48.145 +118327,278.94,50.223 +118328,280.74,52.206 +118329,273.37,45.898 +118330,275.65,48.108 +118331,277.64,50.205 +118332,279.4,52.206 +118333,272.15,45.843 +118334,274.38,48.071 +118335,276.33,50.187 +118336,278.06,52.204 +118337,270.93,45.789 +118338,273.12,48.036 +118339,275.03,50.167 +118340,276.72,52.201 +118341,269.71,45.738 +118342,271.86,48 +118343,273.73,50.148 +118344,275.38,52.196 +118345,268.49,45.688 +118346,270.59,47.966 +118347,272.42,50.127 +118348,274.03,52.19 +118349,267.27,45.64 +118350,269.33,47.932 +118351,271.12,50.107 +118352,272.69,52.182 +118353,266.06,45.593 +118354,268.07,47.898 +118355,269.81,50.085 +118356,271.34,52.172 +118357,264.85,45.549 +118358,266.81,47.865 +118359,268.51,50.064 +118360,270,52.161 +118361,263.64,45.506 +118362,265.55,47.833 +118363,267.2,50.041 +118364,268.65,52.149 +118365,262.43,45.465 +118366,264.29,47.801 +118367,265.89,50.019 +118368,267.3,52.134 +118369,261.22,45.426 +118370,263.03,47.77 +118371,264.59,49.995 +118372,265.95,52.119 +118373,260.01,45.389 +118374,261.77,47.74 +118375,263.28,49.971 +118376,264.6,52.101 +118377,258.81,45.354 +118378,260.51,47.71 +118379,261.97,49.947 +118380,263.25,52.082 +118381,257.61,45.321 +118382,259.25,47.68 +118383,260.67,49.922 +118384,261.89,52.062 +118385,256.4,45.289 +118386,258,47.652 +118387,259.36,49.896 +118388,260.54,52.039 +118389,255.2,45.26 +118390,256.74,47.624 +118391,258.05,49.87 +118392,259.19,52.015 +118393,254,45.232 +118394,255.48,47.596 +118395,256.74,49.844 +118396,257.83,51.99 +118397,252.81,45.207 +118398,254.23,47.57 +118399,255.44,49.817 +118400,256.48,51.963 +118401,251.61,45.183 +118402,252.97,47.544 +118403,254.13,49.789 +118404,255.12,51.934 +118405,250.41,45.161 +118406,251.72,47.518 +118407,252.82,49.761 +118408,253.76,51.904 +118409,249.22,45.141 +118410,250.46,47.493 +118411,251.51,49.732 +118412,252.41,51.872 +118413,248.03,45.123 +118414,249.21,47.469 +118415,250.2,49.702 +118416,251.05,51.838 +118417,246.83,45.107 +118418,247.95,47.445 +118419,248.89,49.673 +118420,249.69,51.803 +118421,245.64,45.092 +118422,246.7,47.422 +118423,247.58,49.642 +118424,248.33,51.766 +118425,244.45,45.08 +118426,245.45,47.4 +118427,246.27,49.611 +118428,246.97,51.727 +118429,243.26,45.069 +118430,244.19,47.378 +118431,244.96,49.58 +118432,245.61,51.687 +118433,242.07,45.061 +118434,242.94,47.357 +118435,243.65,49.548 +118436,244.25,51.645 +118437,240.88,45.054 +118438,241.69,47.337 +118439,242.34,49.515 +118440,242.89,51.602 +118441,239.7,45.049 +118442,240.44,47.317 +118443,241.04,49.482 +118444,241.52,51.557 +118445,238.51,45.046 +118446,239.18,47.297 +118447,239.73,49.448 +118448,240.16,51.51 +118449,237.32,45.045 +118450,237.93,47.279 +118451,238.42,49.414 +118452,238.8,51.462 +118453,236.14,45.045 +118454,236.68,47.261 +118455,237.11,49.379 +118456,237.44,51.412 +118457,234.95,45.047 +118458,235.43,47.243 +118459,235.8,49.344 +118460,236.08,51.361 +118461,233.76,45.051 +118462,234.18,47.226 +118463,234.49,49.308 +118464,234.71,51.307 +118465,232.58,45.057 +118466,232.93,47.21 +118467,233.18,49.272 +118468,233.35,51.253 +118469,231.39,45.065 +118470,231.67,47.194 +118471,231.87,49.235 +118472,231.99,51.197 +118473,230.21,45.074 +118474,230.42,47.179 +118475,230.56,49.198 +118476,230.62,51.139 +118477,229.02,45.085 +118478,229.17,47.165 +118479,229.25,49.16 +118480,229.26,51.08 +118481,227.83,45.098 +118482,227.92,47.151 +118483,227.94,49.121 +118484,227.9,51.019 +118485,226.65,45.112 +118486,226.67,47.137 +118487,226.63,49.083 +118488,226.53,50.956 +118489,225.46,45.129 +118490,225.42,47.124 +118491,225.32,49.043 +118492,225.17,50.892 +118493,224.28,45.146 +118494,224.17,47.112 +118495,224.01,49.003 +118496,223.81,50.827 +118497,223.09,45.165 +118498,222.92,47.1 +118499,222.7,48.963 +118500,222.44,50.76 +118501,221.9,45.186 +118502,221.67,47.089 +118503,221.39,48.922 +118504,221.08,50.692 +118505,220.72,45.209 +118506,220.42,47.078 +118507,220.08,48.881 +118508,219.72,50.622 +118509,219.53,45.232 +118510,219.17,47.068 +118511,218.77,48.839 +118512,218.35,50.551 +118513,218.34,45.258 +118514,217.92,47.059 +118515,217.47,48.797 +118516,216.99,50.478 +118517,217.15,45.285 +118518,216.67,47.05 +118519,216.16,48.755 +118520,215.63,50.404 +118521,215.96,45.313 +118522,215.41,47.041 +118523,214.85,48.712 +118524,214.27,50.329 +118525,214.77,45.343 +118526,214.16,47.033 +118527,213.54,48.668 +118528,212.91,50.252 +118529,213.58,45.374 +118530,212.91,47.025 +118531,212.23,48.624 +118532,211.55,50.174 +118533,212.39,45.406 +118534,211.66,47.018 +118535,210.93,48.58 +118536,210.19,50.095 +118537,211.2,45.439 +118538,210.41,47.011 +118539,209.62,48.535 +118540,208.83,50.014 +118541,210,45.474 +118542,209.16,47.005 +118543,208.31,48.49 +118544,207.47,49.933 +118545,208.81,45.51 +118546,207.91,46.999 +118547,207.01,48.445 +118548,206.11,49.849 +118549,207.61,45.548 +118550,206.65,46.994 +118551,205.7,48.399 +118552,204.75,49.765 +118553,206.42,45.586 +118554,205.4,46.989 +118555,204.39,48.353 +118556,203.39,49.679 +118557,205.22,45.626 +118558,204.15,46.984 +118559,203.09,48.306 +118560,202.03,49.593 +118561,204.02,45.667 +118562,202.9,46.98 +118563,201.78,48.259 +118564,200.68,49.505 +118565,202.82,45.708 +118566,201.64,46.977 +118567,200.48,48.212 +118568,199.32,49.416 +118569,201.62,45.751 +118570,200.39,46.973 +118571,199.17,48.165 +118572,197.97,49.326 +118573,200.42,45.795 +118574,199.14,46.97 +118575,197.87,48.117 +118576,196.61,49.235 +118577,199.22,45.84 +118578,197.88,46.968 +118579,196.57,48.069 +118580,195.26,49.143 +118581,198.01,45.885 +118582,196.63,46.965 +118583,195.26,48.02 +118584,193.91,49.049 +118585,196.81,45.932 +118586,195.38,46.963 +118587,193.96,47.971 +118588,192.56,48.955 +118589,195.6,45.979 +118590,194.12,46.962 +118591,192.66,47.922 +118592,191.21,48.86 +118593,194.39,46.027 +118594,192.87,46.96 +118595,191.36,47.873 +118596,189.86,48.764 +118597,193.18,46.076 +118598,191.61,46.959 +118599,190.05,47.823 +118600,188.51,48.667 +118601,191.97,46.125 +118602,190.35,46.959 +118603,188.75,47.774 +118604,187.16,48.57 +118605,190.75,46.176 +118606,189.1,46.958 +118607,187.45,47.724 +118608,185.81,48.471 +118609,189.54,46.226 +118610,187.84,46.958 +118611,186.15,47.674 +118612,184.47,48.372 +118613,188.32,46.278 +118614,186.58,46.958 +118615,184.85,47.623 +118616,183.13,48.272 +118617,187.1,46.33 +118618,185.33,46.958 +118619,183.55,47.573 +118620,181.78,48.171 +118621,185.88,46.382 +118622,184.07,46.959 +118623,182.26,47.522 +118624,180.44,48.07 +118625,184.66,46.435 +118626,182.81,46.96 +118627,180.96,47.471 +118628,179.1,47.968 +118629,183.44,46.488 +118630,181.55,46.96 +118631,179.66,47.42 +118632,177.76,47.865 +118633,182.21,46.542 +118634,180.29,46.962 +118635,178.36,47.369 +118636,176.43,47.762 +118637,180.99,46.596 +118638,179.03,46.963 +118639,177.07,47.317 +118640,175.09,47.658 +118641,179.76,46.651 +118642,177.77,46.964 +118643,175.77,47.266 +118644,173.76,47.554 +118645,178.53,46.705 +118646,176.51,46.966 +118647,174.48,47.214 +118648,172.42,47.45 +118649,177.29,46.76 +118650,175.25,46.967 +118651,173.18,47.163 +118652,171.09,47.345 +118653,176.06,46.815 +118654,173.99,46.969 +118655,171.89,47.111 +118656,169.76,47.239 +118657,174.83,46.87 +118658,172.73,46.971 +118659,170.6,47.059 +118660,168.43,47.134 +118661,173.59,46.926 +118662,171.47,46.973 +118663,169.31,47.008 +118664,167.1,47.028 +118665,172.35,46.981 +118666,170.2,46.975 +118667,168.01,46.956 +118668,165.78,46.921 +118669,171.11,47.036 +118670,168.94,46.977 +118671,166.72,46.904 +118672,164.46,46.815 +118673,169.86,47.091 +118674,167.67,46.979 +118675,165.43,46.852 +118676,163.13,46.708 +118677,168.62,47.147 +118678,166.41,46.982 +118679,164.14,46.801 +118680,161.81,46.602 +118681,167.37,47.202 +118682,165.14,46.984 +118683,162.85,46.749 +118684,160.49,46.495 +118685,166.12,47.257 +118686,163.88,46.986 +118687,161.57,46.697 +118688,159.18,46.388 +118689,164.87,47.312 +118690,162.61,46.988 +118691,160.28,46.646 +118692,157.86,46.281 +118693,163.62,47.366 +118694,161.34,46.991 +118695,158.99,46.594 +118696,156.55,46.175 +118697,162.37,47.421 +118698,160.08,46.993 +118699,157.71,46.543 +118700,155.24,46.068 +118701,161.11,47.475 +118702,158.81,46.995 +118703,156.42,46.491 +118704,153.93,45.961 +118705,159.85,47.528 +118706,157.54,46.997 +118707,155.14,46.44 +118708,152.62,45.855 +118709,158.59,47.582 +118710,156.27,46.999 +118711,153.85,46.389 +118712,151.32,45.749 +118713,157.33,47.634 +118714,155,47.001 +118715,152.57,46.338 +118716,150.01,45.643 +118717,156.06,47.687 +118718,153.73,47.003 +118719,151.29,46.287 +118720,148.71,45.538 +118721,154.8,47.739 +118722,152.46,47.004 +118723,150,46.237 +118724,147.41,45.433 +118725,153.53,47.79 +118726,151.19,47.006 +118727,148.72,46.186 +118728,146.12,45.328 +118729,152.26,47.841 +118730,149.92,47.007 +118731,147.44,46.136 +118732,144.82,45.224 +118733,150.99,47.891 +118734,148.64,47.008 +118735,146.16,46.086 +118736,143.53,45.12 +118737,149.72,47.941 +118738,147.37,47.01 +118739,144.89,46.036 +118740,142.24,45.017 +118741,148.44,47.99 +118742,146.1,47.01 +118743,143.61,45.987 +118744,140.95,44.914 +118745,147.17,48.038 +118746,144.82,47.011 +118747,142.33,45.938 +118748,139.66,44.812 +118749,145.89,48.086 +118750,143.55,47.012 +118751,141.05,45.889 +118752,138.38,44.711 +118753,144.61,48.132 +118754,142.27,47.012 +118755,139.78,45.84 +118756,137.09,44.61 +118757,143.32,48.178 +118758,141,47.012 +118759,138.5,45.792 +118760,135.81,44.511 +118761,142.04,48.223 +118762,139.72,47.012 +118763,137.23,45.744 +118764,134.54,44.412 +118765,140.75,48.267 +118766,138.44,47.011 +118767,135.96,45.696 +118768,133.26,44.314 +118769,139.47,48.311 +118770,137.16,47.011 +118771,134.68,45.649 +118772,131.99,44.216 +118773,138.18,48.353 +118774,135.89,47.01 +118775,133.41,45.602 +118776,130.72,44.12 +118777,136.89,48.394 +118778,134.61,47.009 +118779,132.14,45.555 +118780,129.45,44.025 +118781,135.59,48.435 +118782,133.33,47.007 +118783,130.87,45.509 +118784,128.18,43.931 +118785,134.3,48.474 +118786,132.05,47.005 +118787,129.6,45.463 +118788,126.92,43.838 +118789,133,48.512 +118790,130.77,47.003 +118791,128.33,45.418 +118792,125.65,43.746 +118793,131.7,48.55 +118794,129.49,47 +118795,127.07,45.373 +118796,124.4,43.655 +118797,130.4,48.586 +118798,128.2,46.998 +118799,125.8,45.328 +118800,123.14,43.565 +118801,129.1,48.621 +118802,126.92,46.994 +118803,124.53,45.284 +118804,121.88,43.477 +118805,127.8,48.654 +118806,125.64,46.991 +118807,123.27,45.241 +118808,120.63,43.39 +118809,126.5,48.687 +118810,124.36,46.987 +118811,122,45.198 +118812,119.38,43.304 +118813,125.19,48.718 +118814,123.07,46.982 +118815,120.74,45.155 +118816,118.13,43.22 +118817,123.88,48.748 +118818,121.79,46.978 +118819,119.48,45.113 +118820,116.89,43.137 +118821,122.57,48.777 +118822,120.5,46.973 +118823,118.21,45.071 +118824,115.64,43.056 +118825,121.26,48.804 +118826,119.22,46.967 +118827,116.95,45.03 +118828,114.4,42.976 +118829,119.95,48.831 +118830,117.93,46.961 +118831,115.69,44.989 +118832,113.16,42.897 +118833,118.64,48.855 +118834,116.65,46.955 +118835,114.43,44.949 +118836,111.93,42.82 +118837,117.32,48.879 +118838,115.36,46.948 +118839,113.17,44.91 +118840,110.69,42.745 +118841,116.01,48.901 +118842,114.07,46.941 +118843,111.91,44.871 +118844,109.46,42.671 +118845,114.69,48.921 +118846,112.79,46.933 +118847,110.66,44.832 +118848,108.23,42.599 +118849,113.37,48.941 +118850,111.5,46.925 +118851,109.4,44.795 +118852,107,42.529 +118853,112.05,48.958 +118854,110.21,46.916 +118855,108.14,44.757 +118856,105.78,42.461 +118857,110.73,48.975 +118858,108.92,46.907 +118859,106.89,44.721 +118860,104.55,42.394 +118861,109.41,48.989 +118862,107.63,46.897 +118863,105.63,44.685 +118864,103.33,42.329 +118865,108.08,49.002 +118866,106.34,46.887 +118867,104.38,44.649 +118868,102.11,42.266 +118869,106.76,49.014 +118870,105.05,46.876 +118871,103.12,44.615 +118872,100.9,42.204 +118873,105.43,49.024 +118874,103.76,46.865 +118875,101.87,44.58 +118876,99.68,42.145 +118877,104.1,49.033 +118878,102.47,46.854 +118879,100.62,44.547 +118880,98.467,42.087 +118881,102.77,49.04 +118882,101.18,46.842 +118883,99.364,44.514 +118884,97.256,42.032 +118885,101.44,49.045 +118886,99.887,46.829 +118887,98.113,44.482 +118888,96.047,41.978 +118889,100.11,49.049 +118890,98.595,46.816 +118891,96.862,44.45 +118892,94.84,41.927 +118893,98.781,49.051 +118894,97.303,46.802 +118895,95.612,44.42 +118896,93.634,41.877 +118897,97.448,49.052 +118898,96.01,46.788 +118899,94.362,44.389 +118900,92.431,41.829 +118901,96.114,49.051 +118902,94.717,46.773 +118903,93.113,44.36 +118904,91.229,41.784 +118905,94.779,49.048 +118906,93.424,46.758 +118907,91.864,44.331 +118908,90.028,41.74 +118909,93.443,49.044 +118910,92.131,46.742 +118911,90.616,44.303 +118912,88.83,41.699 +118913,92.107,49.037 +118914,90.837,46.725 +118915,89.368,44.275 +118916,87.633,41.66 +118917,90.769,49.03 +118918,89.543,46.708 +118919,88.121,44.249 +118920,86.438,41.622 +118921,89.431,49.02 +118922,88.249,46.691 +118923,86.875,44.223 +118924,85.244,41.587 +118925,88.092,49.009 +118926,86.954,46.673 +118927,85.629,44.197 +118928,84.052,41.554 +118929,86.752,48.996 +118930,85.659,46.654 +118931,84.383,44.173 +118932,82.861,41.523 +118933,85.412,48.982 +118934,84.364,46.635 +118935,83.138,44.149 +118936,81.671,41.495 +118937,84.071,48.965 +118938,83.069,46.615 +118939,81.893,44.125 +118940,80.483,41.468 +118941,82.729,48.947 +118942,81.774,46.595 +118943,80.649,44.103 +118944,79.296,41.444 +118945,81.386,48.927 +118946,80.478,46.574 +118947,79.405,44.081 +118948,78.11,41.421 +118949,80.043,48.906 +118950,79.182,46.552 +118951,78.161,44.06 +118952,76.926,41.401 +118953,78.7,48.883 +118954,77.886,46.53 +118955,76.918,44.04 +118956,75.742,41.383 +118957,77.356,48.858 +118958,76.59,46.507 +118959,75.675,44.02 +118960,74.559,41.368 +118961,76.011,48.831 +118962,75.294,46.484 +118963,74.433,44.001 +118964,73.378,41.354 +118965,74.666,48.803 +118966,73.998,46.46 +118967,73.191,43.983 +118968,72.197,41.343 +118969,73.321,48.772 +118970,72.701,46.436 +118971,71.949,43.965 +118972,71.017,41.333 +118973,71.975,48.74 +118974,71.405,46.411 +118975,70.707,43.948 +118976,69.838,41.326 +118977,70.629,48.707 +118978,70.108,46.386 +118979,69.466,43.932 +118980,68.659,41.321 +118981,69.282,48.671 +118982,68.812,46.36 +118983,68.225,43.917 +118984,67.481,41.318 +118985,67.935,48.634 +118986,67.515,46.333 +118987,66.984,43.902 +118988,66.304,41.318 +118989,66.588,48.595 +118990,66.219,46.306 +118991,65.743,43.888 +118992,65.127,41.319 +118993,65.241,48.555 +118994,64.922,46.278 +118995,64.503,43.875 +118996,63.951,41.323 +118997,63.894,48.513 +118998,63.625,46.25 +118999,63.262,43.863 +119000,62.774,41.328 +119001,62.546,48.469 +119002,62.329,46.221 +119003,62.022,43.851 +119004,61.599,41.336 +119005,61.199,48.423 +119006,61.032,46.192 +119007,60.782,43.84 +119008,60.423,41.345 +119009,59.851,48.376 +119010,59.735,46.162 +119011,59.542,43.829 +119012,59.247,41.357 +119013,58.503,48.327 +119014,58.439,46.131 +119015,58.303,43.819 +119016,58.072,41.371 +119017,57.156,48.276 +119018,57.142,46.1 +119019,57.063,43.81 +119020,56.897,41.387 +119021,55.808,48.224 +119022,55.846,46.069 +119023,55.823,43.802 +119024,55.721,41.404 +119025,54.46,48.17 +119026,54.55,46.037 +119027,54.584,43.794 +119028,54.546,41.424 +119029,53.113,48.114 +119030,53.253,46.004 +119031,53.344,43.787 +119032,53.37,41.445 +119033,51.766,48.057 +119034,51.957,45.971 +119035,52.105,43.78 +119036,52.194,41.469 +119037,50.418,47.998 +119038,50.661,45.937 +119039,50.865,43.775 +119040,51.018,41.494 +119041,49.072,47.938 +119042,49.366,45.903 +119043,49.626,43.769 +119044,49.841,41.521 +119045,47.725,47.875 +119046,48.07,45.869 +119047,48.386,43.765 +119048,48.664,41.551 +119049,46.378,47.812 +119050,46.775,45.833 +119051,47.147,43.761 +119052,47.486,41.581 +119053,45.032,47.747 +119054,45.479,45.798 +119055,45.907,43.758 +119056,46.308,41.614 +119057,43.687,47.68 +119058,44.184,45.762 +119059,44.667,43.755 +119060,45.13,41.648 +119061,42.341,47.612 +119062,42.89,45.725 +119063,43.427,43.753 +119064,43.95,41.684 +119065,40.997,47.542 +119066,41.595,45.688 +119067,42.187,43.752 +119068,42.77,41.722 +119069,39.652,47.471 +119070,40.301,45.651 +119071,40.947,43.751 +119072,41.589,41.761 +119073,38.308,47.398 +119074,39.007,45.613 +119075,39.707,43.75 +119076,40.407,41.802 +119077,36.965,47.324 +119078,37.713,45.574 +119079,38.466,43.751 +119080,39.224,41.844 +119081,35.622,47.249 +119082,36.42,45.536 +119083,37.226,43.751 +119084,38.041,41.888 +119085,34.28,47.172 +119086,35.127,45.496 +119087,35.985,43.753 +119088,36.856,41.934 +119089,32.938,47.094 +119090,33.834,45.457 +119091,34.744,43.755 +119092,35.67,41.981 +119093,31.598,47.014 +119094,32.541,45.417 +119095,33.503,43.757 +119096,34.484,42.029 +119097,30.257,46.933 +119098,31.249,45.376 +119099,32.261,43.76 +119100,33.296,42.079 +119101,28.918,46.851 +119102,29.957,45.336 +119103,31.019,43.763 +119104,32.107,42.129 +119105,27.58,46.768 +119106,28.666,45.294 +119107,29.777,43.767 +119108,30.916,42.182 +119109,26.242,46.683 +119110,27.375,45.253 +119111,28.535,43.772 +119112,29.724,42.235 +119113,24.905,46.597 +119114,26.085,45.211 +119115,27.292,43.776 +119116,28.531,42.29 +119117,23.569,46.51 +119118,24.794,45.169 +119119,26.049,43.782 +119120,27.337,42.346 +119121,22.234,46.422 +119122,23.505,45.126 +119123,24.806,43.787 +119124,26.141,42.403 +119125,20.9,46.333 +119126,22.215,45.083 +119127,23.562,43.794 +119128,24.944,42.461 +119129,19.566,46.242 +119130,20.926,45.04 +119131,22.318,43.8 +119132,23.745,42.52 +119133,18.234,46.151 +119134,19.638,44.997 +119135,21.074,43.807 +119136,22.545,42.58 +119137,16.903,46.058 +119138,18.35,44.953 +119139,19.829,43.814 +119140,21.343,42.641 +119141,15.573,45.965 +119142,17.063,44.909 +119143,18.584,43.822 +119144,20.14,42.703 +119145,14.245,45.87 +119146,15.776,44.865 +119147,17.338,43.83 +119148,18.935,42.766 +119149,12.917,45.775 +119150,14.489,44.82 +119151,16.092,43.839 +119152,17.728,42.829 +119153,11.591,45.679 +119154,13.204,44.776 +119155,14.846,43.847 +119156,16.52,42.894 +119157,10.265,45.581 +119158,11.918,44.731 +119159,13.599,43.857 +119160,15.31,42.959 +119161,8.9414,45.483 +119162,10.633,44.686 +119163,12.351,43.866 +119164,14.098,43.025 +119165,7.6187,45.385 +119166,9.3491,44.64 +119167,11.104,43.876 +119168,12.884,43.091 +119169,6.2974,45.285 +119170,8.0654,44.595 +119171,9.8554,43.886 +119172,11.669,43.158 +119173,4.9775,45.185 +119174,6.7823,44.549 +119175,8.6067,43.896 +119176,10.452,43.226 +119177,3.659,45.084 +119178,5.4998,44.503 +119179,7.3574,43.906 +119180,9.2332,43.294 +119181,2.3419,44.982 +119182,4.2178,44.457 +119183,6.1077,43.917 +119184,8.0125,43.362 +119185,1.0263,44.88 +119186,2.9365,44.411 +119187,4.8574,43.928 +119188,6.79,43.431 +119189,359.71,44.777 +119190,1.6558,44.365 +119191,3.6067,43.939 +119192,5.5656,43.5 +119193,358.4,44.674 +119194,0.3757,44.319 +119195,2.3554,43.95 +119196,4.3394,43.57 +119197,357.09,44.57 +119198,359.1,44.272 +119199,1.1036,43.962 +119200,3.1113,43.64 +119201,355.78,44.466 +119202,357.82,44.226 +119203,359.85,43.974 +119204,1.8813,43.71 +119205,354.47,44.362 +119206,356.54,44.18 +119207,358.6,43.985 +119208,0.64942,43.78 +119209,353.16,44.257 +119210,355.26,44.133 +119211,357.34,43.997 +119212,359.42,43.85 +119213,351.86,44.151 +119214,353.98,44.087 +119215,356.09,44.009 +119216,358.18,43.921 +119217,350.56,44.046 +119218,352.71,44.04 +119219,354.84,44.021 +119220,356.94,43.991 +119221,349.26,43.94 +119222,351.43,43.994 +119223,353.58,44.034 +119224,355.7,44.062 +119225,347.96,43.834 +119226,350.16,43.947 +119227,352.33,44.046 +119228,354.46,44.132 +119229,346.66,43.728 +119230,348.88,43.901 +119231,351.07,44.058 +119232,353.22,44.202 +119233,345.36,43.622 +119234,347.61,43.854 +119235,349.81,44.071 +119236,351.97,44.273 +119237,344.07,43.516 +119238,346.34,43.808 +119239,348.56,44.083 +119240,350.73,44.343 +119241,342.78,43.41 +119242,345.07,43.762 +119243,347.3,44.096 +119244,349.48,44.413 +119245,341.49,43.304 +119246,343.79,43.716 +119247,346.04,44.108 +119248,348.23,44.482 +119249,340.2,43.198 +119250,342.52,43.67 +119251,344.78,44.121 +119252,346.97,44.551 +119253,338.91,43.092 +119254,341.25,43.624 +119255,343.52,44.133 +119256,345.72,44.62 +119257,337.63,42.986 +119258,339.99,43.578 +119259,342.26,44.145 +119260,344.46,44.689 +119261,336.35,42.881 +119262,338.72,43.533 +119263,341,44.158 +119264,343.2,44.757 +119265,335.07,42.776 +119266,337.45,43.488 +119267,339.74,44.17 +119268,341.94,44.825 +119269,333.79,42.671 +119270,336.18,43.442 +119271,338.48,44.182 +119272,340.68,44.892 +119273,332.51,42.567 +119274,334.92,43.398 +119275,337.21,44.194 +119276,339.41,44.959 +119277,331.24,42.463 +119278,333.65,43.353 +119279,335.95,44.206 +119280,338.15,45.025 +119281,329.97,42.359 +119282,332.39,43.308 +119283,334.69,44.218 +119284,336.88,45.09 +119285,328.7,42.256 +119286,331.12,43.264 +119287,333.42,44.229 +119288,335.61,45.155 +119289,327.43,42.154 +119290,329.86,43.22 +119291,332.16,44.241 +119292,334.34,45.219 +119293,326.16,42.052 +119294,328.6,43.177 +119295,330.89,44.252 +119296,333.07,45.282 +119297,324.9,41.951 +119298,327.33,43.134 +119299,329.62,44.263 +119300,331.79,45.345 +119301,323.64,41.851 +119302,326.07,43.091 +119303,328.36,44.274 +119304,330.51,45.407 +119305,322.38,41.751 +119306,324.81,43.048 +119307,327.09,44.285 +119308,329.23,45.467 +119309,321.12,41.652 +119310,323.55,43.006 +119311,325.82,44.295 +119312,327.95,45.527 +119313,319.86,41.555 +119314,322.3,42.964 +119315,324.55,44.305 +119316,326.67,45.587 +119317,318.61,41.458 +119318,321.04,42.922 +119319,323.29,44.315 +119320,325.39,45.645 +119321,317.36,41.362 +119322,319.78,42.881 +119323,322.02,44.325 +119324,324.1,45.702 +119325,316.11,41.267 +119326,318.52,42.841 +119327,320.75,44.334 +119328,322.82,45.758 +119329,314.87,41.173 +119330,317.27,42.8 +119331,319.48,44.344 +119332,321.53,45.813 +119333,313.62,41.08 +119334,316.01,42.76 +119335,318.2,44.352 +119336,320.24,45.867 +119337,312.38,40.989 +119338,314.76,42.721 +119339,316.93,44.361 +119340,318.94,45.92 +119341,311.14,40.898 +119342,313.5,42.682 +119343,315.66,44.369 +119344,317.65,45.972 +119345,309.9,40.809 +119346,312.25,42.644 +119347,314.39,44.377 +119348,316.35,46.023 +119349,308.67,40.722 +119350,311,42.606 +119351,313.12,44.384 +119352,315.06,46.072 +119353,307.43,40.635 +119354,309.75,42.568 +119355,311.84,44.392 +119356,313.76,46.12 +119357,306.2,40.55 +119358,308.5,42.531 +119359,310.57,44.398 +119360,312.46,46.167 +119361,304.97,40.467 +119362,307.25,42.495 +119363,309.29,44.405 +119364,311.16,46.213 +119365,303.75,40.385 +119366,306,42.459 +119367,308.02,44.411 +119368,309.86,46.257 +119369,302.52,40.304 +119370,304.75,42.424 +119371,306.74,44.416 +119372,308.55,46.3 +119373,301.3,40.225 +119374,303.5,42.389 +119375,305.47,44.422 +119376,307.25,46.342 +119377,300.08,40.148 +119378,302.25,42.355 +119379,304.19,44.426 +119380,305.94,46.382 +119381,298.86,40.072 +119382,301.01,42.322 +119383,302.91,44.431 +119384,304.63,46.421 +119385,297.65,39.998 +119386,299.76,42.289 +119387,301.63,44.435 +119388,303.32,46.458 +119389,296.43,39.926 +119390,298.52,42.257 +119391,300.36,44.438 +119392,302.01,46.494 +119393,295.22,39.855 +119394,297.27,42.225 +119395,299.08,44.441 +119396,300.7,46.529 +119397,294.01,39.787 +119398,296.03,42.194 +119399,297.8,44.444 +119400,299.39,46.562 +119401,292.8,39.72 +119402,294.78,42.164 +119403,296.52,44.446 +119404,298.07,46.593 +119405,291.6,39.655 +119406,293.54,42.134 +119407,295.24,44.447 +119408,296.76,46.623 +119409,290.39,39.592 +119410,292.3,42.105 +119411,293.96,44.448 +119412,295.44,46.652 +119413,289.19,39.531 +119414,291.06,42.077 +119415,292.68,44.449 +119416,294.13,46.678 +119417,287.99,39.472 +119418,289.81,42.049 +119419,291.4,44.449 +119420,292.81,46.704 +119421,286.79,39.415 +119422,288.57,42.022 +119423,290.12,44.449 +119424,291.49,46.727 +119425,285.59,39.36 +119426,287.33,41.996 +119427,288.84,44.448 +119428,290.17,46.749 +119429,284.4,39.308 +119430,286.09,41.97 +119431,287.56,44.446 +119432,288.85,46.769 +119433,283.2,39.257 +119434,284.85,41.945 +119435,286.27,44.444 +119436,287.52,46.788 +119437,282.01,39.208 +119438,283.62,41.921 +119439,284.99,44.442 +119440,286.2,46.805 +119441,280.82,39.162 +119442,282.38,41.898 +119443,283.71,44.439 +119444,284.88,46.82 +119445,279.63,39.118 +119446,281.14,41.875 +119447,282.43,44.435 +119448,283.55,46.834 +119449,278.44,39.076 +119450,279.9,41.853 +119451,281.14,44.431 +119452,282.23,46.846 +119453,277.26,39.036 +119454,278.67,41.832 +119455,279.86,44.426 +119456,280.9,46.856 +119457,276.07,38.999 +119458,277.43,41.812 +119459,278.58,44.421 +119460,279.57,46.864 +119461,274.89,38.964 +119462,276.19,41.792 +119463,277.29,44.415 +119464,278.24,46.871 +119465,273.71,38.931 +119466,274.96,41.773 +119467,276.01,44.409 +119468,276.92,46.876 +119469,272.53,38.9 +119470,273.72,41.755 +119471,274.72,44.402 +119472,275.59,46.879 +119473,271.35,38.872 +119474,272.49,41.738 +119475,273.44,44.394 +119476,274.26,46.88 +119477,270.17,38.846 +119478,271.25,41.721 +119479,272.16,44.386 +119480,272.93,46.88 +119481,268.99,38.822 +119482,270.02,41.706 +119483,270.87,44.377 +119484,271.6,46.877 +119485,267.81,38.801 +119486,268.78,41.691 +119487,269.59,44.368 +119488,270.27,46.873 +119489,266.64,38.782 +119490,267.55,41.677 +119491,268.3,44.358 +119492,268.93,46.868 +119493,265.46,38.766 +119494,266.32,41.663 +119495,267.02,44.348 +119496,267.6,46.86 +119497,264.29,38.752 +119498,265.08,41.651 +119499,265.73,44.337 +119500,266.27,46.851 +119501,263.12,38.74 +119502,263.85,41.639 +119503,264.44,44.325 +119504,264.94,46.839 +119505,261.94,38.731 +119506,262.62,41.628 +119507,263.16,44.313 +119508,263.6,46.826 +119509,260.77,38.724 +119510,261.39,41.618 +119511,261.87,44.3 +119512,262.27,46.812 +119513,259.6,38.719 +119514,260.15,41.608 +119515,260.59,44.287 +119516,260.94,46.795 +119517,258.43,38.717 +119518,258.92,41.6 +119519,259.3,44.273 +119520,259.6,46.777 +119521,257.26,38.717 +119522,257.69,41.592 +119523,258.02,44.259 +119524,258.27,46.756 +119525,256.09,38.72 +119526,256.46,41.585 +119527,256.73,44.244 +119528,256.94,46.734 +119529,254.92,38.725 +119530,255.23,41.579 +119531,255.45,44.228 +119532,255.6,46.711 +119533,253.75,38.732 +119534,253.99,41.573 +119535,254.16,44.212 +119536,254.27,46.685 +119537,252.58,38.742 +119538,252.76,41.568 +119539,252.87,44.195 +119540,252.93,46.657 +119541,251.41,38.754 +119542,251.53,41.565 +119543,251.59,44.177 +119544,251.6,46.628 +119545,250.24,38.768 +119546,250.3,41.561 +119547,250.3,44.16 +119548,250.27,46.597 +119549,249.07,38.784 +119550,249.07,41.559 +119551,249.02,44.141 +119552,248.93,46.565 +119553,247.9,38.803 +119554,247.84,41.558 +119555,247.73,44.122 +119556,247.6,46.53 +119557,246.73,38.824 +119558,246.61,41.557 +119559,246.45,44.102 +119560,246.26,46.494 +119561,245.56,38.847 +119562,245.37,41.557 +119563,245.16,44.082 +119564,244.93,46.456 +119565,244.39,38.873 +119566,244.14,41.557 +119567,243.88,44.061 +119568,243.6,46.416 +119569,243.21,38.901 +119570,242.91,41.559 +119571,242.59,44.04 +119572,242.26,46.374 +119573,242.04,38.93 +119574,241.68,41.561 +119575,241.31,44.018 +119576,240.93,46.331 +119577,240.87,38.962 +119578,240.45,41.564 +119579,240.02,43.996 +119580,239.6,46.286 +119581,239.7,38.996 +119582,239.22,41.568 +119583,238.74,43.973 +119584,238.27,46.24 +119585,238.52,39.033 +119586,237.98,41.572 +119587,237.45,43.95 +119588,236.94,46.191 +119589,237.35,39.071 +119590,236.75,41.577 +119591,236.17,43.926 +119592,235.6,46.142 +119593,236.17,39.111 +119594,235.52,41.583 +119595,234.89,43.901 +119596,234.27,46.09 +119597,235,39.153 +119598,234.29,41.589 +119599,233.6,43.876 +119600,232.94,46.037 +119601,233.82,39.197 +119602,233.05,41.597 +119603,232.32,43.851 +119604,231.61,45.982 +119605,232.64,39.243 +119606,231.82,41.604 +119607,231.04,43.825 +119608,230.28,45.925 +119609,231.46,39.291 +119610,230.59,41.613 +119611,229.75,43.798 +119612,228.96,45.867 +119613,230.28,39.341 +119614,229.35,41.622 +119615,228.47,43.771 +119616,227.63,45.808 +119617,229.1,39.393 +119618,228.12,41.632 +119619,227.19,43.744 +119620,226.3,45.747 +119621,227.92,39.446 +119622,226.89,41.642 +119623,225.91,43.716 +119624,224.98,45.684 +119625,226.73,39.501 +119626,225.65,41.654 +119627,224.63,43.688 +119628,223.65,45.62 +119629,225.55,39.558 +119630,224.42,41.665 +119631,223.35,43.659 +119632,222.33,45.554 +119633,224.36,39.616 +119634,223.18,41.678 +119635,222.07,43.63 +119636,221,45.487 +119637,223.17,39.676 +119638,221.95,41.691 +119639,220.79,43.6 +119640,219.68,45.419 +119641,221.98,39.738 +119642,220.71,41.704 +119643,219.51,43.57 +119644,218.36,45.349 +119645,220.79,39.801 +119646,219.47,41.718 +119647,218.23,43.54 +119648,217.04,45.278 +119649,219.6,39.866 +119650,218.24,41.733 +119651,216.95,43.509 +119652,215.72,45.205 +119653,218.41,39.932 +119654,217,41.748 +119655,215.67,43.478 +119656,214.4,45.131 +119657,217.21,39.999 +119658,215.76,41.764 +119659,214.39,43.446 +119660,213.08,45.056 +119661,216.02,40.068 +119662,214.53,41.78 +119663,213.11,43.414 +119664,211.76,44.979 +119665,214.82,40.138 +119666,213.29,41.797 +119667,211.83,43.382 +119668,210.44,44.901 +119669,213.62,40.209 +119670,212.05,41.814 +119671,210.56,43.35 +119672,209.13,44.822 +119673,212.42,40.282 +119674,210.81,41.832 +119675,209.28,43.317 +119676,207.82,44.742 +119677,211.21,40.356 +119678,209.57,41.85 +119679,208.01,43.283 +119680,206.5,44.661 +119681,210.01,40.43 +119682,208.33,41.869 +119683,206.73,43.25 +119684,205.19,44.578 +119685,208.8,40.506 +119686,207.09,41.888 +119687,205.45,43.216 +119688,203.88,44.495 +119689,207.59,40.583 +119690,205.85,41.907 +119691,204.18,43.182 +119692,202.57,44.41 +119693,206.38,40.661 +119694,204.61,41.927 +119695,202.91,43.148 +119696,201.27,44.324 +119697,205.17,40.739 +119698,203.37,41.948 +119699,201.63,43.113 +119700,199.96,44.238 +119701,203.95,40.819 +119702,202.12,41.968 +119703,200.36,43.078 +119704,198.66,44.15 +119705,202.74,40.899 +119706,200.88,41.99 +119707,199.09,43.043 +119708,197.35,44.061 +119709,201.52,40.981 +119710,199.64,42.011 +119711,197.82,43.008 +119712,196.05,43.972 +119713,200.3,41.062 +119714,198.39,42.033 +119715,196.54,42.972 +119716,194.75,43.882 +119717,199.08,41.145 +119718,197.15,42.055 +119719,195.27,42.937 +119720,193.45,43.791 +119721,197.85,41.228 +119722,195.9,42.077 +119723,194,42.901 +119724,192.15,43.699 +119725,196.63,41.312 +119726,194.66,42.1 +119727,192.74,42.865 +119728,190.86,43.606 +119729,195.4,41.396 +119730,193.41,42.123 +119731,191.47,42.829 +119732,189.56,43.513 +119733,194.17,41.481 +119734,192.16,42.146 +119735,190.2,42.792 +119736,188.27,43.419 +119737,192.94,41.566 +119738,190.92,42.17 +119739,188.93,42.756 +119740,186.98,43.324 +119741,191.7,41.651 +119742,189.67,42.194 +119743,187.66,42.72 +119744,185.69,43.229 +119745,190.47,41.737 +119746,188.42,42.218 +119747,186.4,42.683 +119748,184.4,43.133 +119749,189.23,41.823 +119750,187.17,42.242 +119751,185.13,42.647 +119752,183.12,43.037 +119753,187.99,41.909 +119754,185.92,42.266 +119755,183.87,42.61 +119756,181.83,42.94 +119757,186.75,41.996 +119758,184.67,42.291 +119759,182.6,42.573 +119760,180.55,42.843 +119761,185.5,42.082 +119762,183.42,42.315 +119763,181.34,42.537 +119764,179.27,42.746 +119765,184.26,42.169 +119766,182.16,42.34 +119767,180.08,42.5 +119768,177.99,42.648 +119769,183.01,42.256 +119770,180.91,42.365 +119771,178.81,42.463 +119772,176.71,42.55 +119773,181.76,42.343 +119774,179.66,42.39 +119775,177.55,42.427 +119776,175.44,42.452 +119777,180.51,42.429 +119778,178.4,42.415 +119779,176.29,42.39 +119780,174.17,42.354 +119781,179.26,42.516 +119782,177.15,42.44 +119783,175.03,42.353 +119784,172.89,42.255 +119785,178,42.602 +119786,175.9,42.465 +119787,173.77,42.317 +119788,171.62,42.156 +119789,176.74,42.688 +119790,174.64,42.491 +119791,172.51,42.281 +119792,170.36,42.058 +119793,175.49,42.774 +119794,173.38,42.516 +119795,171.25,42.244 +119796,169.09,41.959 +119797,174.22,42.86 +119798,172.13,42.541 +119799,169.99,42.208 +119800,167.83,41.86 +119801,172.96,42.945 +119802,170.87,42.567 +119803,168.74,42.172 +119804,166.57,41.762 +119805,171.7,43.03 +119806,169.61,42.592 +119807,167.48,42.136 +119808,165.31,41.663 +119809,170.43,43.115 +119810,168.35,42.617 +119811,166.23,42.101 +119812,164.05,41.565 +119813,169.16,43.199 +119814,167.09,42.642 +119815,164.97,42.065 +119816,162.79,41.467 +119817,167.89,43.282 +119818,165.83,42.667 +119819,163.72,42.03 +119820,161.54,41.37 +119821,166.62,43.366 +119822,164.57,42.692 +119823,162.46,41.995 +119824,160.29,41.272 +119825,165.35,43.448 +119826,163.31,42.717 +119827,161.21,41.96 +119828,159.04,41.175 +119829,164.07,43.53 +119830,162.05,42.742 +119831,159.96,41.926 +119832,157.79,41.079 +119833,162.79,43.611 +119834,160.79,42.767 +119835,158.71,41.891 +119836,156.54,40.983 +119837,161.51,43.691 +119838,159.52,42.791 +119839,157.45,41.857 +119840,155.3,40.887 +119841,160.23,43.771 +119842,158.26,42.816 +119843,156.2,41.824 +119844,154.06,40.793 +119845,158.95,43.85 +119846,156.99,42.84 +119847,154.96,41.79 +119848,152.82,40.698 +119849,157.67,43.928 +119850,155.73,42.864 +119851,153.71,41.757 +119852,151.58,40.605 +119853,156.38,44.006 +119854,154.46,42.888 +119855,152.46,41.725 +119856,150.35,40.512 +119857,155.09,44.082 +119858,153.2,42.912 +119859,151.21,41.692 +119860,149.11,40.42 +119861,153.8,44.157 +119862,151.93,42.935 +119863,149.96,41.66 +119864,147.88,40.329 +119865,152.51,44.232 +119866,150.66,42.958 +119867,148.72,41.629 +119868,146.65,40.239 +119869,151.22,44.305 +119870,149.4,42.981 +119871,147.47,41.598 +119872,145.42,40.15 +119873,149.93,44.378 +119874,148.13,43.004 +119875,146.23,41.567 +119876,144.2,40.061 +119877,148.63,44.449 +119878,146.86,43.026 +119879,144.98,41.537 +119880,142.98,39.974 +119881,147.34,44.52 +119882,145.59,43.048 +119883,143.74,41.507 +119884,141.75,39.888 +119885,146.04,44.589 +119886,144.32,43.07 +119887,142.49,41.478 +119888,140.53,39.803 +119889,144.74,44.657 +119890,143.05,43.091 +119891,141.25,41.449 +119892,139.32,39.719 +119893,143.44,44.724 +119894,141.78,43.112 +119895,140.01,41.421 +119896,138.1,39.637 +119897,142.14,44.789 +119898,140.51,43.133 +119899,138.77,41.393 +119900,136.89,39.556 +119901,140.83,44.854 +119902,139.24,43.154 +119903,137.53,41.365 +119904,135.68,39.476 +119905,139.53,44.917 +119906,137.96,43.174 +119907,136.29,41.339 +119908,134.47,39.398 +119909,138.22,44.978 +119910,136.69,43.193 +119911,135.05,41.312 +119912,133.26,39.321 +119913,136.91,45.039 +119914,135.42,43.213 +119915,133.81,41.287 +119916,132.05,39.245 +119917,135.61,45.098 +119918,134.15,43.232 +119919,132.57,41.262 +119920,130.85,39.171 +119921,134.3,45.155 +119922,132.87,43.25 +119923,131.33,41.237 +119924,129.65,39.099 +119925,132.99,45.212 +119926,131.6,43.268 +119927,130.09,41.213 +119928,128.45,39.028 +119929,131.67,45.267 +119930,130.32,43.286 +119931,128.86,41.19 +119932,127.25,38.959 +119933,130.36,45.32 +119934,129.05,43.303 +119935,127.62,41.167 +119936,126.05,38.891 +119937,129.05,45.372 +119938,127.77,43.32 +119939,126.38,41.145 +119940,124.86,38.826 +119941,127.73,45.422 +119942,126.49,43.336 +119943,125.15,41.124 +119944,123.66,38.762 +119945,126.42,45.471 +119946,125.22,43.352 +119947,123.91,41.103 +119948,122.47,38.7 +119949,125.1,45.518 +119950,123.94,43.367 +119951,122.68,41.083 +119952,121.28,38.64 +119953,123.78,45.564 +119954,122.66,43.382 +119955,121.45,41.064 +119956,120.09,38.582 +119957,122.46,45.608 +119958,121.39,43.397 +119959,120.21,41.045 +119960,118.9,38.525 +119961,121.14,45.651 +119962,120.11,43.411 +119963,118.98,41.027 +119964,117.72,38.471 +119965,119.82,45.691 +119966,118.83,43.424 +119967,117.74,41.01 +119968,116.53,38.419 +119969,118.5,45.731 +119970,117.55,43.437 +119971,116.51,40.994 +119972,115.35,38.369 +119973,117.18,45.768 +119974,116.27,43.45 +119975,115.28,40.978 +119976,114.17,38.321 +119977,115.86,45.804 +119978,115,43.461 +119979,114.05,40.963 +119980,112.99,38.275 +119981,114.54,45.838 +119982,113.72,43.473 +119983,112.82,40.949 +119984,111.81,38.231 +119985,113.21,45.871 +119986,112.44,43.484 +119987,111.58,40.935 +119988,110.63,38.189 +119989,111.89,45.902 +119990,111.16,43.494 +119991,110.35,40.922 +119992,109.45,38.15 +119993,110.56,45.931 +119994,109.88,43.504 +119995,109.12,40.91 +119996,108.28,38.113 +119997,109.24,45.958 +119998,108.6,43.513 +119999,107.89,40.899 +120000,107.1,38.078 +120001,107.91,45.984 +120002,107.32,43.521 +120003,106.66,40.889 +120004,105.93,38.045 +120005,106.58,46.008 +120006,106.04,43.53 +120007,105.43,40.879 +120008,104.75,38.015 +120009,105.26,46.03 +120010,104.76,43.537 +120011,104.2,40.87 +120012,103.58,37.987 +120013,103.93,46.05 +120014,103.47,43.544 +120015,102.97,40.862 +120016,102.41,37.962 +120017,102.6,46.068 +120018,102.19,43.55 +120019,101.74,40.855 +120020,101.23,37.938 +120021,101.28,46.085 +120022,100.91,43.556 +120023,100.51,40.848 +120024,100.06,37.918 +120025,99.947,46.1 +120026,99.631,43.561 +120027,99.284,40.842 +120028,98.893,37.899 +120029,98.619,46.113 +120030,98.35,43.566 +120031,98.055,40.838 +120032,97.723,37.883 +120033,97.29,46.124 +120034,97.068,43.57 +120035,96.826,40.833 +120036,96.553,37.87 +120037,95.961,46.133 +120038,95.787,43.574 +120039,95.597,40.83 +120040,95.384,37.858 +120041,94.632,46.141 +120042,94.505,43.576 +120043,94.368,40.828 +120044,94.215,37.85 +120045,93.303,46.147 +120046,93.224,43.579 +120047,93.139,40.826 +120048,93.046,37.844 +120049,91.974,46.151 +120050,91.942,43.581 +120051,91.91,40.825 +120052,91.877,37.84 +120053,90.645,46.153 +120054,90.661,43.582 +120055,90.681,40.825 +120056,90.708,37.839 +120057,89.316,46.153 +120058,89.379,43.582 +120059,89.452,40.826 +120060,89.54,37.84 +120061,87.987,46.152 +120062,88.098,43.582 +120063,88.224,40.828 +120064,88.371,37.843 +120065,86.658,46.148 +120066,86.816,43.582 +120067,86.995,40.83 +120068,87.202,37.849 +120069,85.329,46.143 +120070,85.535,43.58 +120071,85.766,40.834 +120072,86.033,37.858 +120073,84,46.136 +120074,84.253,43.579 +120075,84.537,40.838 +120076,84.863,37.869 +120077,82.672,46.127 +120078,82.972,43.576 +120079,83.308,40.843 +120080,83.693,37.882 +120081,81.343,46.116 +120082,81.69,43.573 +120083,82.078,40.848 +120084,82.523,37.898 +120085,80.015,46.104 +120086,80.409,43.57 +120087,80.849,40.855 +120088,81.352,37.917 +120089,78.687,46.09 +120090,79.128,43.565 +120091,79.619,40.862 +120092,80.181,37.937 +120093,77.36,46.074 +120094,77.847,43.561 +120095,78.39,40.871 +120096,79.009,37.96 +120097,76.033,46.056 +120098,76.566,43.556 +120099,77.16,40.88 +120100,77.836,37.986 +120101,74.706,46.036 +120102,75.286,43.55 +120103,75.93,40.889 +120104,76.663,38.014 +120105,73.38,46.015 +120106,74.005,43.543 +120107,74.699,40.9 +120108,75.488,38.044 +120109,72.054,45.991 +120110,72.725,43.536 +120111,73.469,40.911 +120112,74.313,38.076 +120113,70.729,45.966 +120114,71.445,43.529 +120115,72.238,40.923 +120116,73.137,38.111 +120117,69.404,45.94 +120118,70.165,43.521 +120119,71.007,40.936 +120120,71.96,38.148 +120121,68.08,45.911 +120122,68.885,43.512 +120123,69.776,40.95 +120124,70.782,38.188 +120125,66.757,45.881 +120126,67.606,43.503 +120127,68.544,40.964 +120128,69.603,38.229 +120129,65.434,45.849 +120130,66.327,43.493 +120131,67.312,40.98 +120132,68.422,38.273 +120133,64.112,45.815 +120134,65.048,43.483 +120135,66.079,40.996 +120136,67.241,38.319 +120137,62.79,45.78 +120138,63.769,43.472 +120139,64.847,41.012 +120140,66.058,38.367 +120141,61.47,45.743 +120142,62.49,43.461 +120143,63.614,41.03 +120144,64.874,38.418 +120145,60.15,45.705 +120146,61.212,43.449 +120147,62.38,41.048 +120148,63.688,38.47 +120149,58.831,45.664 +120150,59.935,43.437 +120151,61.146,41.067 +120152,62.501,38.524 +120153,57.512,45.623 +120154,58.657,43.424 +120155,59.912,41.086 +120156,61.313,38.581 +120157,56.195,45.579 +120158,57.38,43.411 +120159,58.677,41.106 +120160,60.123,38.639 +120161,54.878,45.534 +120162,56.103,43.397 +120163,57.442,41.127 +120164,58.931,38.699 +120165,53.563,45.488 +120166,54.827,43.383 +120167,56.207,41.149 +120168,57.738,38.761 +120169,52.248,45.44 +120170,53.551,43.368 +120171,54.97,41.171 +120172,56.543,38.825 +120173,50.935,45.39 +120174,52.275,43.353 +120175,53.734,41.194 +120176,55.347,38.891 +120177,49.623,45.339 +120178,51,43.337 +120179,52.497,41.218 +120180,54.149,38.959 +120181,48.311,45.286 +120182,49.725,43.321 +120183,51.259,41.242 +120184,52.949,39.028 +120185,47.001,45.232 +120186,48.45,43.305 +120187,50.021,41.267 +120188,51.747,39.099 +120189,45.692,45.177 +120190,47.176,43.288 +120191,48.783,41.292 +120192,50.544,39.172 +120193,44.384,45.12 +120194,45.903,43.27 +120195,47.543,41.318 +120196,49.338,39.246 +120197,43.077,45.062 +120198,44.629,43.253 +120199,46.304,41.345 +120200,48.131,39.322 +120201,41.772,45.002 +120202,43.357,43.235 +120203,45.063,41.372 +120204,46.922,39.4 +120205,40.467,44.941 +120206,42.084,43.216 +120207,43.823,41.4 +120208,45.711,39.478 +120209,39.165,44.879 +120210,40.813,43.197 +120211,42.581,41.428 +120212,44.499,39.559 +120213,37.863,44.816 +120214,39.541,43.178 +120215,41.339,41.457 +120216,43.284,39.64 +120217,36.563,44.751 +120218,38.271,43.158 +120219,40.096,41.486 +120220,42.067,39.723 +120221,35.264,44.685 +120222,37,43.139 +120223,38.853,41.516 +120224,40.848,39.807 +120225,33.966,44.618 +120226,35.73,43.118 +120227,37.609,41.546 +120228,39.628,39.893 +120229,32.67,44.55 +120230,34.461,43.098 +120231,36.365,41.577 +120232,38.405,39.979 +120233,31.376,44.481 +120234,33.192,43.077 +120235,35.12,41.608 +120236,37.18,40.067 +120237,30.083,44.41 +120238,31.924,43.056 +120239,33.874,41.64 +120240,35.953,40.156 +120241,28.791,44.339 +120242,30.656,43.035 +120243,32.628,41.672 +120244,34.724,40.246 +120245,27.501,44.266 +120246,29.389,43.013 +120247,31.381,41.705 +120248,33.493,40.337 +120249,26.213,44.193 +120250,28.123,42.991 +120251,30.133,41.738 +120252,32.26,40.428 +120253,24.926,44.119 +120254,26.857,42.969 +120255,28.884,41.771 +120256,31.025,40.521 +120257,23.641,44.043 +120258,25.591,42.947 +120259,27.635,41.805 +120260,29.788,40.615 +120261,22.357,43.967 +120262,24.326,42.924 +120263,26.386,41.839 +120264,28.549,40.709 +120265,21.075,43.89 +120266,23.062,42.901 +120267,25.135,41.873 +120268,27.308,40.804 +120269,19.795,43.812 +120270,21.798,42.878 +120271,23.884,41.908 +120272,26.065,40.899 +120273,18.517,43.734 +120274,20.535,42.855 +120275,22.633,41.943 +120276,24.819,40.996 +120277,17.24,43.655 +120278,19.273,42.832 +120279,21.38,41.979 +120280,23.572,41.092 +120281,15.965,43.575 +120282,18.011,42.809 +120283,20.127,42.014 +120284,22.322,41.19 +120285,14.692,43.494 +120286,16.749,42.785 +120287,18.873,42.05 +120288,21.071,41.288 +120289,13.42,43.413 +120290,15.489,42.762 +120291,17.619,42.086 +120292,19.817,41.386 +120293,12.151,43.331 +120294,14.228,42.738 +120295,16.364,42.123 +120296,18.562,41.484 +120297,10.883,43.249 +120298,12.969,42.714 +120299,15.108,42.159 +120300,17.304,41.583 +120301,9.6167,43.166 +120302,11.71,42.69 +120303,13.851,42.196 +120304,16.045,41.682 +120305,8.3525,43.083 +120306,10.452,42.666 +120307,12.594,42.233 +120308,14.783,41.782 +120309,7.0902,43 +120310,9.1939,42.643 +120311,11.336,42.27 +120312,13.52,41.881 +120313,5.8298,42.916 +120314,7.9368,42.619 +120315,10.078,42.307 +120316,12.254,41.981 +120317,4.5712,42.831 +120318,6.6804,42.595 +120319,8.8183,42.345 +120320,10.987,42.081 +120321,3.3146,42.747 +120322,5.4245,42.571 +120323,7.5583,42.382 +120324,9.7172,42.181 +120325,2.0599,42.662 +120326,4.1693,42.547 +120327,6.2977,42.42 +120328,8.4459,42.28 +120329,0.80708,42.577 +120330,2.9147,42.523 +120331,5.0363,42.457 +120332,7.1727,42.38 +120333,359.56,42.492 +120334,1.6607,42.499 +120335,3.7743,42.495 +120336,5.8976,42.48 +120337,358.31,42.407 +120338,0.40734,42.476 +120339,2.5117,42.533 +120340,4.6207,42.579 +120341,357.06,42.322 +120342,359.15,42.452 +120343,1.2483,42.571 +120344,3.3419,42.678 +120345,355.82,42.237 +120346,357.9,42.429 +120347,359.98,42.609 +120348,2.0613,42.777 +120349,354.57,42.152 +120350,356.65,42.405 +120351,358.72,42.647 +120352,0.77886,42.876 +120353,353.33,42.067 +120354,355.4,42.382 +120355,357.45,42.685 +120356,359.49,42.974 +120357,352.09,41.982 +120358,354.15,42.359 +120359,356.19,42.722 +120360,358.21,43.072 +120361,350.85,41.898 +120362,352.9,42.336 +120363,354.92,42.76 +120364,356.92,43.17 +120365,349.62,41.814 +120366,351.65,42.313 +120367,353.65,42.798 +120368,355.63,43.267 +120369,348.39,41.729 +120370,350.4,42.291 +120371,352.39,42.836 +120372,354.34,43.364 +120373,347.16,41.646 +120374,349.15,42.269 +120375,351.12,42.873 +120376,353.05,43.46 +120377,345.93,41.562 +120378,347.91,42.247 +120379,349.85,42.911 +120380,351.75,43.555 +120381,344.7,41.48 +120382,346.66,42.225 +120383,348.58,42.948 +120384,350.46,43.65 +120385,343.47,41.397 +120386,345.41,42.203 +120387,347.31,42.985 +120388,349.16,43.744 +120389,342.25,41.315 +120390,344.17,42.182 +120391,346.04,43.022 +120392,347.86,43.837 +120393,341.03,41.234 +120394,342.92,42.161 +120395,344.77,43.059 +120396,346.56,43.93 +120397,339.81,41.154 +120398,341.68,42.141 +120399,343.49,43.096 +120400,345.26,44.022 +120401,338.59,41.074 +120402,340.43,42.12 +120403,342.22,43.133 +120404,343.95,44.113 +120405,337.37,40.995 +120406,339.19,42.1 +120407,340.95,43.169 +120408,342.65,44.203 +120409,336.16,40.916 +120410,337.95,42.081 +120411,339.67,43.205 +120412,341.34,44.292 +120413,334.95,40.839 +120414,336.71,42.061 +120415,338.4,43.241 +120416,340.04,44.38 +120417,333.74,40.762 +120418,335.46,42.043 +120419,337.12,43.277 +120420,338.73,44.467 +120421,332.53,40.686 +120422,334.22,42.024 +120423,335.85,43.312 +120424,337.42,44.554 +120425,331.32,40.611 +120426,332.98,42.006 +120427,334.57,43.347 +120428,336.1,44.639 +120429,330.12,40.538 +120430,331.74,41.989 +120431,333.3,43.382 +120432,334.79,44.723 +120433,328.91,40.465 +120434,330.5,41.971 +120435,332.02,43.417 +120436,333.48,44.806 +120437,327.71,40.393 +120438,329.26,41.955 +120439,330.74,43.451 +120440,332.16,44.888 +120441,326.51,40.323 +120442,328.02,41.939 +120443,329.46,43.485 +120444,330.85,44.969 +120445,325.31,40.254 +120446,326.78,41.923 +120447,328.19,43.519 +120448,329.53,45.048 +120449,324.12,40.186 +120450,325.55,41.908 +120451,326.91,43.552 +120452,328.21,45.127 +120453,322.92,40.119 +120454,324.31,41.893 +120455,325.63,43.585 +120456,326.89,45.204 +120457,321.73,40.054 +120458,323.07,41.879 +120459,324.35,43.617 +120460,325.57,45.279 +120461,320.54,39.99 +120462,321.83,41.865 +120463,323.07,43.649 +120464,324.25,45.354 +120465,319.35,39.928 +120466,320.6,41.852 +120467,321.79,43.681 +120468,322.92,45.427 +120469,318.16,39.867 +120470,319.36,41.839 +120471,320.51,43.713 +120472,321.6,45.499 +120473,316.97,39.808 +120474,318.13,41.827 +120475,319.22,43.744 +120476,320.28,45.569 +120477,315.78,39.75 +120478,316.89,41.816 +120479,317.94,43.774 +120480,318.95,45.638 +120481,314.6,39.694 +120482,315.66,41.805 +120483,316.66,43.804 +120484,317.62,45.705 +120485,313.41,39.639 +120486,314.42,41.795 +120487,315.38,43.834 +120488,316.3,45.771 +120489,312.23,39.586 +120490,313.19,41.786 +120491,314.1,43.863 +120492,314.97,45.836 +120493,311.05,39.535 +120494,311.95,41.777 +120495,312.81,43.892 +120496,313.64,45.899 +120497,309.87,39.486 +120498,310.72,41.768 +120499,311.53,43.92 +120500,312.31,45.96 +120501,308.69,39.438 +120502,309.48,41.761 +120503,310.25,43.948 +120504,310.98,46.02 +120505,307.51,39.393 +120506,308.25,41.754 +120507,308.96,43.976 +120508,309.65,46.079 +120509,306.34,39.349 +120510,307.02,41.748 +120511,307.68,44.002 +120512,308.32,46.135 +120513,305.16,39.307 +120514,305.78,41.742 +120515,306.39,44.029 +120516,306.99,46.191 +120517,303.98,39.267 +120518,304.55,41.737 +120519,305.11,44.055 +120520,305.66,46.244 +120521,302.81,39.229 +120522,303.32,41.733 +120523,303.82,44.08 +120524,304.33,46.296 +120525,301.63,39.194 +120526,302.09,41.729 +120527,302.54,44.105 +120528,302.99,46.346 +120529,300.46,39.16 +120530,300.85,41.726 +120531,301.25,44.129 +120532,301.66,46.395 +120533,299.29,39.128 +120534,299.62,41.724 +120535,299.97,44.153 +120536,300.33,46.442 +120537,298.12,39.098 +120538,298.39,41.723 +120539,298.68,44.176 +120540,298.99,46.487 +120541,296.94,39.071 +120542,297.16,41.722 +120543,297.4,44.199 +120544,297.66,46.531 +120545,295.77,39.045 +120546,295.92,41.722 +120547,296.11,44.221 +120548,296.32,46.572 +120549,294.6,39.022 +120550,294.69,41.723 +120551,294.82,44.243 +120552,294.99,46.612 +120553,293.43,39.001 +120554,293.46,41.725 +120555,293.54,44.264 +120556,293.65,46.651 +120557,292.26,38.983 +120558,292.23,41.727 +120559,292.25,44.284 +120560,292.32,46.687 +120561,291.09,38.966 +120562,290.99,41.73 +120563,290.96,44.304 +120564,290.98,46.722 +120565,289.92,38.952 +120566,289.76,41.734 +120567,289.68,44.324 +120568,289.65,46.755 +120569,288.75,38.94 +120570,288.53,41.739 +120571,288.39,44.343 +120572,288.31,46.786 +120573,287.58,38.93 +120574,287.3,41.744 +120575,287.1,44.361 +120576,286.98,46.816 +120577,286.41,38.923 +120578,286.06,41.75 +120579,285.82,44.379 +120580,285.64,46.844 +120581,285.24,38.918 +120582,284.83,41.757 +120583,284.53,44.396 +120584,284.31,46.87 +120585,284.07,38.915 +120586,283.6,41.765 +120587,283.24,44.412 +120588,282.97,46.894 +120589,282.9,38.915 +120590,282.37,41.774 +120591,281.96,44.428 +120592,281.64,46.916 +120593,281.72,38.917 +120594,281.13,41.783 +120595,280.67,44.444 +120596,280.3,46.937 +120597,280.55,38.921 +120598,279.9,41.793 +120599,279.38,44.458 +120600,278.97,46.955 +120601,279.38,38.928 +120602,278.67,41.804 +120603,278.1,44.473 +120604,277.63,46.972 +120605,278.21,38.937 +120606,277.43,41.816 +120607,276.81,44.486 +120608,276.3,46.987 +120609,277.03,38.948 +120610,276.2,41.828 +120611,275.53,44.499 +120612,274.96,47.001 +120613,275.86,38.962 +120614,274.97,41.841 +120615,274.24,44.512 +120616,273.63,47.012 +120617,274.68,38.978 +120618,273.73,41.855 +120619,272.95,44.524 +120620,272.3,47.022 +120621,273.5,38.997 +120622,272.5,41.87 +120623,271.67,44.535 +120624,270.96,47.03 +120625,272.33,39.018 +120626,271.26,41.886 +120627,270.38,44.546 +120628,269.63,47.036 +120629,271.15,39.041 +120630,270.03,41.902 +120631,269.1,44.556 +120632,268.3,47.04 +120633,269.97,39.067 +120634,268.79,41.919 +120635,267.81,44.565 +120636,266.97,47.043 +120637,268.79,39.094 +120638,267.56,41.937 +120639,266.52,44.574 +120640,265.64,47.044 +120641,267.61,39.125 +120642,266.32,41.956 +120643,265.24,44.583 +120644,264.31,47.043 +120645,266.42,39.157 +120646,265.08,41.975 +120647,263.95,44.59 +120648,262.98,47.04 +120649,265.24,39.192 +120650,263.85,41.996 +120651,262.67,44.598 +120652,261.65,47.036 +120653,264.05,39.229 +120654,262.61,42.017 +120655,261.38,44.604 +120656,260.32,47.029 +120657,262.87,39.268 +120658,261.37,42.038 +120659,260.1,44.611 +120660,258.99,47.021 +120661,261.68,39.31 +120662,260.13,42.061 +120663,258.82,44.616 +120664,257.67,47.012 +120665,260.49,39.354 +120666,258.89,42.084 +120667,257.53,44.621 +120668,256.34,47 +120669,259.3,39.399 +120670,257.65,42.108 +120671,256.25,44.626 +120672,255.02,46.987 +120673,258.1,39.448 +120674,256.41,42.133 +120675,254.97,44.63 +120676,253.69,46.972 +120677,256.91,39.498 +120678,255.17,42.158 +120679,253.68,44.633 +120680,252.37,46.956 +120681,255.71,39.55 +120682,253.93,42.184 +120683,252.4,44.636 +120684,251.05,46.938 +120685,254.51,39.605 +120686,252.69,42.211 +120687,251.12,44.638 +120688,249.73,46.918 +120689,253.31,39.661 +120690,251.45,42.239 +120691,249.84,44.64 +120692,248.41,46.897 +120693,252.11,39.72 +120694,250.21,42.267 +120695,248.55,44.642 +120696,247.09,46.874 +120697,250.91,39.78 +120698,248.96,42.296 +120699,247.27,44.642 +120700,245.77,46.849 +120701,249.7,39.843 +120702,247.72,42.326 +120703,245.99,44.643 +120704,244.45,46.823 +120705,248.49,39.907 +120706,246.48,42.356 +120707,244.71,44.643 +120708,243.13,46.795 +120709,247.28,39.974 +120710,245.23,42.387 +120711,243.43,44.642 +120712,241.82,46.766 +120713,246.07,40.042 +120714,243.99,42.418 +120715,242.15,44.641 +120716,240.51,46.735 +120717,244.86,40.112 +120718,242.74,42.45 +120719,240.87,44.639 +120720,239.19,46.702 +120721,243.64,40.184 +120722,241.49,42.483 +120723,239.59,44.637 +120724,237.88,46.669 +120725,242.43,40.257 +120726,240.25,42.517 +120727,238.31,44.635 +120728,236.57,46.633 +120729,241.21,40.333 +120730,239,42.551 +120731,237.04,44.632 +120732,235.26,46.597 +120733,239.99,40.41 +120734,237.75,42.586 +120735,235.76,44.628 +120736,233.96,46.558 +120737,238.76,40.488 +120738,236.5,42.621 +120739,234.48,44.624 +120740,232.65,46.519 +120741,237.54,40.568 +120742,235.25,42.657 +120743,233.2,44.62 +120744,231.34,46.478 +120745,236.31,40.65 +120746,234,42.693 +120747,231.93,44.616 +120748,230.04,46.436 +120749,235.08,40.733 +120750,232.75,42.73 +120751,230.65,44.611 +120752,228.74,46.392 +120753,233.84,40.818 +120754,231.5,42.767 +120755,229.38,44.605 +120756,227.44,46.347 +120757,232.61,40.904 +120758,230.24,42.805 +120759,228.1,44.599 +120760,226.14,46.301 +120761,231.37,40.992 +120762,228.99,42.844 +120763,226.83,44.593 +120764,224.84,46.254 +120765,230.13,41.08 +120766,227.74,42.883 +120767,225.55,44.587 +120768,223.55,46.205 +120769,228.89,41.171 +120770,226.48,42.922 +120771,224.28,44.58 +120772,222.25,46.155 +120773,227.65,41.262 +120774,225.23,42.962 +120775,223.01,44.573 +120776,220.96,46.105 +120777,226.4,41.354 +120778,223.97,43.003 +120779,221.74,44.565 +120780,219.67,46.053 +120781,225.16,41.448 +120782,222.71,43.044 +120783,220.46,44.557 +120784,218.38,45.999 +120785,223.91,41.543 +120786,221.45,43.085 +120787,219.19,44.549 +120788,217.09,45.945 +120789,222.65,41.638 +120790,220.2,43.126 +120791,217.92,44.541 +120792,215.8,45.89 +120793,221.4,41.735 +120794,218.94,43.169 +120795,216.65,44.532 +120796,214.52,45.834 +120797,220.14,41.833 +120798,217.68,43.211 +120799,215.38,44.523 +120800,213.24,45.777 +120801,218.88,41.932 +120802,216.42,43.254 +120803,214.11,44.514 +120804,211.95,45.719 +120805,217.62,42.031 +120806,215.15,43.297 +120807,212.85,44.505 +120808,210.67,45.66 +120809,216.36,42.131 +120810,213.89,43.341 +120811,211.58,44.495 +120812,209.4,45.6 +120813,215.09,42.232 +120814,212.63,43.385 +120815,210.31,44.485 +120816,208.12,45.539 +120817,213.83,42.334 +120818,211.36,43.429 +120819,209.05,44.475 +120820,206.85,45.478 +120821,212.56,42.436 +120822,210.1,43.473 +120823,207.78,44.465 +120824,205.57,45.416 +120825,211.28,42.539 +120826,208.83,43.518 +120827,206.51,44.455 +120828,204.3,45.353 +120829,210.01,42.643 +120830,207.57,43.563 +120831,205.25,44.444 +120832,203.03,45.289 +120833,208.73,42.747 +120834,206.3,43.608 +120835,203.98,44.433 +120836,201.77,45.225 +120837,207.46,42.851 +120838,205.03,43.654 +120839,202.72,44.422 +120840,200.5,45.16 +120841,206.18,42.956 +120842,203.77,43.699 +120843,201.46,44.412 +120844,199.24,45.095 +120845,204.89,43.061 +120846,202.5,43.745 +120847,200.2,44.401 +120848,197.98,45.029 +120849,203.61,43.167 +120850,201.23,43.792 +120851,198.93,44.389 +120852,196.72,44.963 +120853,202.32,43.273 +120854,199.96,43.838 +120855,197.67,44.378 +120856,195.46,44.896 +120857,201.04,43.379 +120858,198.69,43.884 +120859,196.41,44.367 +120860,194.2,44.829 +120861,199.75,43.485 +120862,197.41,43.931 +120863,195.15,44.356 +120864,192.95,44.761 +120865,198.45,43.591 +120866,196.14,43.978 +120867,193.89,44.344 +120868,191.7,44.693 +120869,197.16,43.698 +120870,194.87,44.024 +120871,192.63,44.333 +120872,190.45,44.625 +120873,195.86,43.804 +120874,193.59,44.071 +120875,191.37,44.322 +120876,189.2,44.557 +120877,194.57,43.911 +120878,192.32,44.118 +120879,190.12,44.31 +120880,187.95,44.488 +120881,193.27,44.017 +120882,191.04,44.165 +120883,188.86,44.299 +120884,186.71,44.419 +120885,191.97,44.123 +120886,189.77,44.213 +120887,187.6,44.288 +120888,185.47,44.35 +120889,190.66,44.23 +120890,188.49,44.26 +120891,186.35,44.277 +120892,184.23,44.282 +120893,189.36,44.335 +120894,187.21,44.307 +120895,185.09,44.266 +120896,182.99,44.213 +120897,188.05,44.441 +120898,185.93,44.354 +120899,183.83,44.255 +120900,181.75,44.144 +120901,186.74,44.546 +120902,184.65,44.401 +120903,182.58,44.244 +120904,180.52,44.075 +120905,185.43,44.652 +120906,183.38,44.448 +120907,181.33,44.233 +120908,179.29,44.006 +120909,184.12,44.756 +120910,182.09,44.495 +120911,180.07,44.222 +120912,178.05,43.938 +120913,182.81,44.86 +120914,180.81,44.543 +120915,178.82,44.212 +120916,176.83,43.869 +120917,181.49,44.964 +120918,179.53,44.59 +120919,177.57,44.201 +120920,175.6,43.801 +120921,180.18,45.068 +120922,178.25,44.636 +120923,176.32,44.191 +120924,174.37,43.733 +120925,178.86,45.17 +120926,176.97,44.683 +120927,175.06,44.181 +120928,173.15,43.666 +120929,177.54,45.273 +120930,175.68,44.73 +120931,173.81,44.172 +120932,171.93,43.599 +120933,176.22,45.374 +120934,174.4,44.776 +120935,172.56,44.162 +120936,170.71,43.532 +120937,174.9,45.475 +120938,173.12,44.823 +120939,171.31,44.153 +120940,169.49,43.466 +120941,173.58,45.575 +120942,171.83,44.869 +120943,170.06,44.144 +120944,168.27,43.4 +120945,172.25,45.675 +120946,170.54,44.915 +120947,168.81,44.135 +120948,167.06,43.335 +120949,170.93,45.774 +120950,169.26,44.961 +120951,167.57,44.126 +120952,165.85,43.27 +120953,169.6,45.872 +120954,167.97,45.007 +120955,166.32,44.118 +120956,164.64,43.206 +120957,168.27,45.969 +120958,166.68,45.052 +120959,165.07,44.11 +120960,163.43,43.143 +120961,166.94,46.065 +120962,165.4,45.097 +120963,163.82,44.103 +120964,162.22,43.081 +120965,165.61,46.16 +120966,164.11,45.142 +120967,162.58,44.096 +120968,161.01,43.019 +120969,164.28,46.255 +120970,162.82,45.187 +120971,161.33,44.089 +120972,159.81,42.958 +120973,162.95,46.348 +120974,161.53,45.232 +120975,160.08,44.082 +120976,158.61,42.898 +120977,161.61,46.44 +120978,160.24,45.276 +120979,158.84,44.076 +120980,157.4,42.839 +120981,160.28,46.532 +120982,158.95,45.32 +120983,157.59,44.07 +120984,156.2,42.781 +120985,158.94,46.622 +120986,157.66,45.364 +120987,156.35,44.065 +120988,155.01,42.724 +120989,157.6,46.711 +120990,156.37,45.407 +120991,155.1,44.06 +120992,153.81,42.668 +120993,156.27,46.799 +120994,155.08,45.45 +120995,153.86,44.055 +120996,152.61,42.613 +120997,154.93,46.886 +120998,153.78,45.493 +120999,152.62,44.051 +121000,151.42,42.559 +121001,153.59,46.972 +121002,152.49,45.535 +121003,151.37,44.048 +121004,150.23,42.506 +121005,152.25,47.056 +121006,151.2,45.577 +121007,150.13,44.044 +121008,149.04,42.454 +121009,150.91,47.139 +121010,149.9,45.618 +121011,148.89,44.042 +121012,147.85,42.404 +121013,149.56,47.221 +121014,148.61,45.66 +121015,147.64,44.039 +121016,146.66,42.355 +121017,148.22,47.302 +121018,147.32,45.701 +121019,146.4,44.038 +121020,145.47,42.308 +121021,146.88,47.381 +121022,146.02,45.741 +121023,145.16,44.037 +121024,144.28,42.261 +121025,145.53,47.459 +121026,144.73,45.781 +121027,143.92,44.036 +121028,143.1,42.217 +121029,144.19,47.536 +121030,143.43,45.821 +121031,142.67,44.036 +121032,141.91,42.173 +121033,142.84,47.611 +121034,142.14,45.86 +121035,141.43,44.036 +121036,140.73,42.131 +121037,141.5,47.685 +121038,140.84,45.899 +121039,140.19,44.037 +121040,139.54,42.091 +121041,140.15,47.757 +121042,139.55,45.937 +121043,138.95,44.038 +121044,138.36,42.052 +121045,138.8,47.828 +121046,138.25,45.975 +121047,137.71,44.041 +121048,137.18,42.015 +121049,137.46,47.897 +121050,136.95,46.012 +121051,136.47,44.043 +121052,136,41.979 +121053,136.11,47.965 +121054,135.66,46.049 +121055,135.23,44.046 +121056,134.82,41.945 +121057,134.76,48.032 +121058,134.36,46.086 +121059,133.99,44.05 +121060,133.64,41.913 +121061,133.41,48.096 +121062,133.06,46.122 +121063,132.74,44.055 +121064,132.46,41.883 +121065,132.07,48.16 +121066,131.77,46.157 +121067,131.5,44.06 +121068,131.28,41.854 +121069,130.72,48.221 +121070,130.47,46.192 +121071,130.26,44.065 +121072,130.11,41.827 +121073,129.37,48.282 +121074,129.17,46.227 +121075,129.02,44.072 +121076,128.93,41.802 +121077,128.02,48.34 +121078,127.87,46.261 +121079,127.78,44.079 +121080,127.75,41.778 +121081,126.67,48.397 +121082,126.58,46.294 +121083,126.54,44.086 +121084,126.58,41.757 +121085,125.32,48.452 +121086,125.28,46.327 +121087,125.3,44.094 +121088,125.4,41.737 +121089,123.97,48.506 +121090,123.98,46.36 +121091,124.06,44.103 +121092,124.22,41.72 +121093,122.62,48.558 +121094,122.68,46.391 +121095,122.82,44.113 +121096,123.05,41.704 +121097,121.27,48.609 +121098,121.39,46.423 +121099,121.58,44.123 +121100,121.87,41.69 +121101,119.92,48.657 +121102,120.09,46.454 +121103,120.34,44.134 +121104,120.69,41.678 +121105,118.57,48.704 +121106,118.79,46.484 +121107,119.09,44.145 +121108,119.52,41.668 +121109,117.22,48.75 +121110,117.49,46.514 +121111,117.85,44.158 +121112,118.34,41.661 +121113,115.87,48.794 +121114,116.19,46.543 +121115,116.61,44.171 +121116,117.16,41.655 +121117,114.53,48.835 +121118,114.89,46.572 +121119,115.37,44.184 +121120,115.98,41.651 +121121,113.18,48.876 +121122,113.6,46.6 +121123,114.13,44.198 +121124,114.81,41.65 +121125,111.83,48.914 +121126,112.3,46.627 +121127,112.89,44.213 +121128,113.63,41.65 +121129,110.48,48.951 +121130,111,46.654 +121131,111.64,44.229 +121132,112.45,41.653 +121133,109.13,48.986 +121134,109.7,46.681 +121135,110.4,44.246 +121136,111.27,41.657 +121137,107.78,49.02 +121138,108.4,46.706 +121139,109.16,44.263 +121140,110.09,41.664 +121141,106.44,49.051 +121142,107.11,46.732 +121143,107.91,44.28 +121144,108.91,41.673 +121145,105.09,49.081 +121146,105.81,46.756 +121147,106.67,44.299 +121148,107.73,41.684 +121149,103.74,49.11 +121150,104.51,46.78 +121151,105.43,44.318 +121152,106.54,41.697 +121153,102.4,49.136 +121154,103.21,46.804 +121155,104.18,44.338 +121156,105.36,41.712 +121157,101.05,49.161 +121158,101.92,46.827 +121159,102.94,44.359 +121160,104.18,41.73 +121161,99.708,49.184 +121162,100.62,46.849 +121163,101.69,44.38 +121164,102.99,41.749 +121165,98.364,49.205 +121166,99.321,46.871 +121167,100.45,44.402 +121168,101.8,41.771 +121169,97.02,49.225 +121170,98.024,46.893 +121171,99.203,44.425 +121172,100.62,41.795 +121173,95.677,49.243 +121174,96.728,46.913 +121175,97.957,44.448 +121176,99.427,41.821 +121177,94.335,49.259 +121178,95.431,46.933 +121179,96.711,44.472 +121180,98.236,41.849 +121181,92.993,49.273 +121182,94.135,46.953 +121183,95.464,44.497 +121184,97.044,41.879 +121185,91.653,49.286 +121186,92.839,46.972 +121187,94.216,44.523 +121188,95.851,41.911 +121189,90.313,49.297 +121190,91.543,46.991 +121191,92.969,44.549 +121192,94.656,41.946 +121193,88.974,49.306 +121194,90.247,47.008 +121195,91.72,44.576 +121196,93.46,41.982 +121197,87.635,49.314 +121198,88.952,47.026 +121199,90.471,44.604 +121200,92.262,42.021 +121201,86.298,49.32 +121202,87.657,47.043 +121203,89.222,44.632 +121204,91.063,42.062 +121205,84.961,49.324 +121206,86.362,47.059 +121207,87.972,44.661 +121208,89.862,42.104 +121209,83.626,49.327 +121210,85.068,47.075 +121211,86.722,44.691 +121212,88.659,42.149 +121213,82.291,49.328 +121214,83.774,47.09 +121215,85.471,44.721 +121216,87.454,42.196 +121217,80.958,49.328 +121218,82.48,47.104 +121219,84.219,44.752 +121220,86.248,42.245 +121221,79.625,49.325 +121222,81.186,47.119 +121223,82.967,44.784 +121224,85.04,42.296 +121225,78.294,49.322 +121226,79.893,47.132 +121227,81.714,44.816 +121228,83.83,42.348 +121229,76.963,49.316 +121230,78.6,47.145 +121231,80.461,44.849 +121232,82.618,42.403 +121233,75.634,49.309 +121234,77.308,47.158 +121235,79.207,44.883 +121236,81.404,42.46 +121237,74.306,49.301 +121238,76.016,47.17 +121239,77.952,44.917 +121240,80.188,42.518 +121241,72.979,49.291 +121242,74.724,47.181 +121243,76.697,44.952 +121244,78.97,42.579 +121245,71.653,49.279 +121246,73.433,47.192 +121247,75.441,44.987 +121248,77.75,42.641 +121249,70.329,49.266 +121250,72.142,47.203 +121251,74.185,45.023 +121252,76.528,42.705 +121253,69.005,49.251 +121254,70.852,47.213 +121255,72.928,45.06 +121256,75.303,42.771 +121257,67.683,49.235 +121258,69.562,47.222 +121259,71.67,45.097 +121260,74.077,42.838 +121261,66.363,49.218 +121262,68.272,47.232 +121263,70.411,45.135 +121264,72.848,42.908 +121265,65.043,49.199 +121266,66.983,47.24 +121267,69.152,45.174 +121268,71.618,42.979 +121269,63.725,49.178 +121270,65.695,47.248 +121271,67.892,45.213 +121272,70.385,43.052 +121273,62.409,49.156 +121274,64.407,47.256 +121275,66.631,45.252 +121276,69.149,43.126 +121277,61.094,49.133 +121278,63.119,47.263 +121279,65.37,45.292 +121280,67.912,43.202 +121281,59.78,49.109 +121282,61.832,47.27 +121283,64.107,45.333 +121284,66.672,43.279 +121285,58.468,49.083 +121286,60.545,47.277 +121287,62.845,45.374 +121288,65.43,43.359 +121289,57.157,49.055 +121290,59.259,47.283 +121291,61.581,45.416 +121292,64.186,43.439 +121293,55.848,49.027 +121294,57.973,47.288 +121295,60.317,45.458 +121296,62.939,43.521 +121297,54.54,48.997 +121298,56.688,47.293 +121299,59.051,45.501 +121300,61.69,43.605 +121301,53.234,48.966 +121302,55.403,47.298 +121303,57.785,45.544 +121304,60.439,43.689 +121305,51.93,48.934 +121306,54.119,47.303 +121307,56.519,45.588 +121308,59.186,43.776 +121309,50.627,48.901 +121310,52.835,47.307 +121311,55.251,45.632 +121312,57.93,43.863 +121313,49.326,48.866 +121314,51.552,47.31 +121315,53.983,45.676 +121316,56.672,43.952 +121317,48.026,48.831 +121318,50.269,47.314 +121319,52.714,45.721 +121320,55.411,44.042 +121321,46.728,48.794 +121322,48.987,47.317 +121323,51.445,45.767 +121324,54.148,44.133 +121325,45.432,48.756 +121326,47.706,47.319 +121327,50.174,45.813 +121328,52.883,44.225 +121329,44.137,48.717 +121330,46.425,47.322 +121331,48.903,45.859 +121332,51.616,44.318 +121333,42.844,48.677 +121334,45.144,47.324 +121335,47.631,45.905 +121336,50.346,44.413 +121337,41.553,48.636 +121338,43.864,47.326 +121339,46.358,45.952 +121340,49.074,44.508 +121341,40.264,48.595 +121342,42.585,47.327 +121343,45.084,46 +121344,47.8,44.605 +121345,38.976,48.552 +121346,41.306,47.328 +121347,43.81,46.048 +121348,46.524,44.702 +121349,37.69,48.508 +121350,40.028,47.329 +121351,42.535,46.096 +121352,45.245,44.8 +121353,36.406,48.464 +121354,38.75,47.33 +121355,41.259,46.144 +121356,43.964,44.899 +121357,35.124,48.419 +121358,37.473,47.33 +121359,39.982,46.193 +121360,42.681,44.999 +121361,33.843,48.373 +121362,36.197,47.331 +121363,38.704,46.242 +121364,41.395,45.099 +121365,32.565,48.326 +121366,34.921,47.331 +121367,37.426,46.291 +121368,40.107,45.201 +121369,31.288,48.278 +121370,33.646,47.331 +121371,36.147,46.34 +121372,38.818,45.303 +121373,30.013,48.23 +121374,32.371,47.33 +121375,34.867,46.39 +121376,37.526,45.405 +121377,28.74,48.181 +121378,31.097,47.33 +121379,33.586,46.44 +121380,36.231,45.508 +121381,27.469,48.132 +121382,29.823,47.329 +121383,32.305,46.49 +121384,34.935,45.612 +121385,26.199,48.082 +121386,28.55,47.328 +121387,31.023,46.541 +121388,33.637,45.716 +121389,24.932,48.031 +121390,27.278,47.327 +121391,29.74,46.591 +121392,32.336,45.82 +121393,23.666,47.98 +121394,26.006,47.326 +121395,28.456,46.642 +121396,31.034,45.925 +121397,22.402,47.928 +121398,24.735,47.325 +121399,27.172,46.693 +121400,29.729,46.03 +121401,21.14,47.876 +121402,23.464,47.324 +121403,25.887,46.744 +121404,28.423,46.136 +121405,19.88,47.824 +121406,22.194,47.322 +121407,24.601,46.796 +121408,27.115,46.242 +121409,18.622,47.771 +121410,20.924,47.321 +121411,23.314,46.847 +121412,25.804,46.348 +121413,17.366,47.718 +121414,19.655,47.319 +121415,22.027,46.899 +121416,24.492,46.454 +121417,16.112,47.665 +121418,18.387,47.318 +121419,20.739,46.95 +121420,23.178,46.56 +121421,14.859,47.611 +121422,17.119,47.316 +121423,19.45,47.002 +121424,21.862,46.667 +121425,13.609,47.557 +121426,15.851,47.314 +121427,18.16,47.054 +121428,20.544,46.773 +121429,12.36,47.503 +121430,14.585,47.313 +121431,16.87,47.105 +121432,19.224,46.879 +121433,11.113,47.449 +121434,13.318,47.311 +121435,15.579,47.157 +121436,17.903,46.986 +121437,9.8685,47.395 +121438,12.053,47.31 +121439,14.288,47.209 +121440,16.579,47.092 +121441,8.6255,47.341 +121442,10.787,47.308 +121443,12.996,47.261 +121444,15.254,47.198 +121445,7.3843,47.287 +121446,9.5227,47.306 +121447,11.703,47.313 +121448,13.928,47.304 +121449,6.1449,47.232 +121450,8.2586,47.305 +121451,10.409,47.365 +121452,12.6,47.41 +121453,4.9074,47.178 +121454,6.9949,47.304 +121455,9.1148,47.416 +121456,11.27,47.515 +121457,3.6717,47.124 +121458,5.7318,47.302 +121459,7.8199,47.468 +121460,9.9385,47.62 +121461,2.4378,47.07 +121462,4.4692,47.301 +121463,6.5244,47.52 +121464,8.6056,47.725 +121465,1.2057,47.017 +121466,3.2071,47.3 +121467,5.2283,47.572 +121468,7.2712,47.83 +121469,359.98,46.963 +121470,1.9454,47.299 +121471,3.9315,47.623 +121472,5.9353,47.934 +121473,358.75,46.91 +121474,0.68425,47.299 +121475,2.6342,47.675 +121476,4.598,48.037 +121477,357.52,46.857 +121478,359.42,47.298 +121479,1.3362,47.726 +121480,3.2593,48.14 +121481,356.29,46.805 +121482,358.16,47.297 +121483,0.037711,47.777 +121484,1.9192,48.243 +121485,355.07,46.753 +121486,356.9,47.297 +121487,358.74,47.828 +121488,0.57776,48.345 +121489,353.85,46.701 +121490,355.64,47.297 +121491,357.44,47.879 +121492,359.24,48.446 +121493,352.63,46.65 +121494,354.39,47.297 +121495,356.14,47.93 +121496,357.89,48.547 +121497,351.41,46.6 +121498,353.13,47.298 +121499,354.84,47.98 +121500,356.55,48.647 +121501,350.19,46.55 +121502,351.87,47.298 +121503,353.54,48.031 +121504,355.2,48.746 +121505,348.98,46.5 +121506,350.61,47.299 +121507,352.24,48.081 +121508,353.85,48.844 +121509,347.76,46.451 +121510,349.35,47.3 +121511,350.93,48.131 +121512,352.5,48.942 +121513,346.55,46.403 +121514,348.1,47.302 +121515,349.63,48.181 +121516,351.15,49.039 +121517,345.34,46.356 +121518,346.84,47.303 +121519,348.33,48.23 +121520,349.8,49.135 +121521,344.13,46.309 +121522,345.58,47.305 +121523,347.02,48.279 +121524,348.45,49.23 +121525,342.92,46.263 +121526,344.33,47.308 +121527,345.72,48.328 +121528,347.1,49.325 +121529,341.72,46.218 +121530,343.07,47.31 +121531,344.41,48.377 +121532,345.74,49.418 +121533,340.51,46.174 +121534,341.82,47.313 +121535,343.11,48.425 +121536,344.39,49.51 +121537,339.31,46.131 +121538,340.56,47.316 +121539,341.8,48.473 +121540,343.03,49.602 +121541,338.11,46.089 +121542,339.31,47.32 +121543,340.5,48.521 +121544,341.68,49.692 +121545,336.91,46.047 +121546,338.05,47.324 +121547,339.19,48.569 +121548,340.32,49.781 +121549,335.7,46.007 +121550,336.8,47.328 +121551,337.89,48.616 +121552,338.96,49.869 +121553,334.51,45.968 +121554,335.55,47.333 +121555,336.58,48.662 +121556,337.6,49.956 +121557,333.31,45.93 +121558,334.29,47.338 +121559,335.27,48.709 +121560,336.25,50.042 +121561,332.11,45.893 +121562,333.04,47.344 +121563,333.96,48.755 +121564,334.89,50.127 +121565,330.91,45.857 +121566,331.79,47.35 +121567,332.66,48.801 +121568,333.53,50.21 +121569,329.72,45.822 +121570,330.53,47.356 +121571,331.35,48.846 +121572,332.16,50.293 +121573,328.53,45.789 +121574,329.28,47.363 +121575,330.04,48.891 +121576,330.8,50.374 +121577,327.33,45.757 +121578,328.03,47.371 +121579,328.73,48.935 +121580,329.44,50.453 +121581,326.14,45.726 +121582,326.77,47.378 +121583,327.42,48.98 +121584,328.08,50.532 +121585,324.95,45.696 +121586,325.52,47.387 +121587,326.11,49.023 +121588,326.72,50.609 +121589,323.76,45.668 +121590,324.27,47.395 +121591,324.8,49.066 +121592,325.35,50.685 +121593,322.57,45.642 +121594,323.02,47.405 +121595,323.49,49.109 +121596,323.99,50.759 +121597,321.38,45.616 +121598,321.77,47.414 +121599,322.18,49.152 +121600,322.62,50.832 +121601,320.19,45.592 +121602,320.51,47.425 +121603,320.87,49.194 +121604,321.26,50.904 +121605,319,45.57 +121606,319.26,47.435 +121607,319.56,49.235 +121608,319.9,50.974 +121609,317.81,45.549 +121610,318.01,47.447 +121611,318.25,49.276 +121612,318.53,51.043 +121613,316.62,45.53 +121614,316.76,47.459 +121615,316.94,49.317 +121616,317.17,51.111 +121617,315.44,45.512 +121618,315.51,47.471 +121619,315.63,49.357 +121620,315.8,51.177 +121621,314.25,45.496 +121622,314.25,47.484 +121623,314.32,49.397 +121624,314.44,51.241 +121625,313.06,45.481 +121626,313,47.497 +121627,313.01,49.436 +121628,313.07,51.304 +121629,311.87,45.468 +121630,311.75,47.511 +121631,311.7,49.474 +121632,311.71,51.366 +121633,310.69,45.457 +121634,310.5,47.526 +121635,310.39,49.513 +121636,310.34,51.426 +121637,309.5,45.448 +121638,309.24,47.541 +121639,309.08,49.55 +121640,308.98,51.484 +121641,308.31,45.44 +121642,307.99,47.557 +121643,307.76,49.587 +121644,307.61,51.541 +121645,307.13,45.433 +121646,306.74,47.573 +121647,306.45,49.624 +121648,306.25,51.596 +121649,305.94,45.429 +121650,305.49,47.59 +121651,305.14,49.66 +121652,304.88,51.65 +121653,304.75,45.426 +121654,304.23,47.607 +121655,303.83,49.696 +121656,303.52,51.702 +121657,303.56,45.425 +121658,302.98,47.625 +121659,302.52,49.731 +121660,302.15,51.753 +121661,302.38,45.426 +121662,301.73,47.644 +121663,301.21,49.765 +121664,300.79,51.802 +121665,301.19,45.429 +121666,300.47,47.663 +121667,299.9,49.799 +121668,299.43,51.849 +121669,300,45.433 +121670,299.22,47.683 +121671,298.59,49.833 +121672,298.06,51.895 +121673,298.81,45.439 +121674,297.97,47.703 +121675,297.27,49.866 +121676,296.7,51.939 +121677,297.62,45.448 +121678,296.71,47.724 +121679,295.96,49.898 +121680,295.34,51.982 +121681,296.43,45.457 +121682,295.46,47.746 +121683,294.65,49.93 +121684,293.98,52.023 +121685,295.23,45.469 +121686,294.2,47.768 +121687,293.34,49.961 +121688,292.61,52.062 +121689,294.04,45.483 +121690,292.95,47.791 +121691,292.03,49.992 +121692,291.25,52.1 +121693,292.85,45.498 +121694,291.69,47.814 +121695,290.72,50.022 +121696,289.89,52.136 +121697,291.65,45.516 +121698,290.44,47.838 +121699,289.41,50.052 +121700,288.53,52.171 +121701,290.46,45.535 +121702,289.18,47.863 +121703,288.1,50.081 +121704,287.17,52.203 +121705,289.26,45.556 +121706,287.93,47.888 +121707,286.79,50.11 +121708,285.81,52.235 +121709,288.07,45.579 +121710,286.67,47.914 +121711,285.48,50.138 +121712,284.46,52.264 +121713,286.87,45.604 +121714,285.41,47.941 +121715,284.17,50.165 +121716,283.1,52.292 +121717,285.67,45.631 +121718,284.15,47.968 +121719,282.86,50.192 +121720,281.74,52.319 +121721,284.47,45.66 +121722,282.9,47.996 +121723,281.55,50.219 +121724,280.39,52.343 +121725,283.26,45.69 +121726,281.64,48.024 +121727,280.24,50.245 +121728,279.03,52.366 +121729,282.06,45.723 +121730,280.38,48.053 +121731,278.94,50.27 +121732,277.68,52.388 +121733,280.85,45.757 +121734,279.12,48.083 +121735,277.63,50.295 +121736,276.32,52.408 +121737,279.65,45.793 +121738,277.86,48.113 +121739,276.32,50.319 +121740,274.97,52.426 +121741,278.44,45.831 +121742,276.6,48.144 +121743,275.01,50.343 +121744,273.62,52.443 +121745,277.23,45.871 +121746,275.34,48.175 +121747,273.7,50.366 +121748,272.27,52.458 +121749,276.02,45.912 +121750,274.08,48.207 +121751,272.4,50.389 +121752,270.92,52.472 +121753,274.81,45.956 +121754,272.81,48.24 +121755,271.09,50.411 +121756,269.57,52.484 +121757,273.59,46.001 +121758,271.55,48.273 +121759,269.78,50.432 +121760,268.22,52.494 +121761,272.37,46.048 +121762,270.29,48.307 +121763,268.48,50.453 +121764,266.88,52.503 +121765,271.16,46.097 +121766,269.03,48.341 +121767,267.17,50.474 +121768,265.53,52.51 +121769,269.93,46.148 +121770,267.76,48.376 +121771,265.86,50.494 +121772,264.19,52.516 +121773,268.71,46.2 +121774,266.5,48.412 +121775,264.56,50.514 +121776,262.84,52.52 +121777,267.49,46.254 +121778,265.23,48.448 +121779,263.25,50.533 +121780,261.5,52.523 +121781,266.26,46.31 +121782,263.96,48.485 +121783,261.95,50.551 +121784,260.16,52.524 +121785,265.03,46.368 +121786,262.7,48.522 +121787,260.65,50.569 +121788,258.82,52.524 +121789,263.8,46.427 +121790,261.43,48.56 +121791,259.34,50.587 +121792,257.48,52.523 +121793,262.57,46.488 +121794,260.16,48.598 +121795,258.04,50.604 +121796,256.14,52.519 +121797,261.34,46.55 +121798,258.89,48.637 +121799,256.74,50.62 +121800,254.81,52.515 +121801,260.1,46.614 +121802,257.62,48.676 +121803,255.44,50.636 +121804,253.47,52.509 +121805,258.86,46.68 +121806,256.35,48.716 +121807,254.13,50.652 +121808,252.14,52.502 +121809,257.62,46.747 +121810,255.08,48.756 +121811,252.83,50.667 +121812,250.81,52.493 +121813,256.38,46.816 +121814,253.81,48.797 +121815,251.53,50.682 +121816,249.48,52.483 +121817,255.14,46.886 +121818,252.54,48.839 +121819,250.23,50.696 +121820,248.15,52.472 +121821,253.89,46.958 +121822,251.27,48.881 +121823,248.93,50.71 +121824,246.82,52.459 +121825,252.64,47.031 +121826,249.99,48.923 +121827,247.63,50.724 +121828,245.5,52.445 +121829,251.39,47.106 +121830,248.72,48.966 +121831,246.33,50.737 +121832,244.17,52.43 +121833,250.13,47.182 +121834,247.44,49.009 +121835,245.03,50.749 +121836,242.85,52.413 +121837,248.88,47.259 +121838,246.17,49.053 +121839,243.74,50.761 +121840,241.53,52.396 +121841,247.62,47.338 +121842,244.89,49.097 +121843,242.44,50.773 +121844,240.21,52.377 +121845,246.36,47.418 +121846,243.61,49.142 +121847,241.14,50.784 +121848,238.89,52.357 +121849,245.09,47.499 +121850,242.33,49.187 +121851,239.85,50.795 +121852,237.57,52.335 +121853,243.83,47.581 +121854,241.06,49.232 +121855,238.55,50.806 +121856,236.26,52.313 +121857,242.56,47.665 +121858,239.78,49.278 +121859,237.26,50.816 +121860,234.95,52.289 +121861,241.29,47.75 +121862,238.5,49.324 +121863,235.96,50.826 +121864,233.63,52.265 +121865,240.02,47.836 +121866,237.21,49.371 +121867,234.67,50.836 +121868,232.33,52.239 +121869,238.74,47.923 +121870,235.93,49.418 +121871,233.37,50.845 +121872,231.02,52.212 +121873,237.47,48.011 +121874,234.65,49.465 +121875,232.08,50.854 +121876,229.71,52.185 +121877,236.19,48.1 +121878,233.37,49.513 +121879,230.79,50.863 +121880,228.41,52.156 +121881,234.91,48.19 +121882,232.08,49.561 +121883,229.5,50.871 +121884,227.1,52.126 +121885,233.62,48.281 +121886,230.8,49.61 +121887,228.2,50.879 +121888,225.8,52.096 +121889,232.34,48.373 +121890,229.51,49.658 +121891,226.91,50.887 +121892,224.5,52.064 +121893,231.05,48.465 +121894,228.22,49.707 +121895,225.62,50.894 +121896,223.2,52.032 +121897,229.76,48.559 +121898,226.94,49.757 +121899,224.33,50.901 +121900,221.91,51.999 +121901,228.46,48.653 +121902,225.65,49.806 +121903,223.04,50.908 +121904,220.61,51.965 +121905,227.17,48.749 +121906,224.36,49.856 +121907,221.76,50.915 +121908,219.32,51.93 +121909,225.87,48.844 +121910,223.07,49.906 +121911,220.47,50.921 +121912,218.03,51.894 +121913,224.57,48.941 +121914,221.78,49.957 +121915,219.18,50.927 +121916,216.74,51.858 +121917,223.27,49.038 +121918,220.49,50.007 +121919,217.89,50.933 +121920,215.46,51.821 +121921,221.96,49.136 +121922,219.2,50.058 +121923,216.61,50.939 +121924,214.17,51.784 +121925,220.66,49.234 +121926,217.9,50.109 +121927,215.32,50.945 +121928,212.89,51.746 +121929,219.35,49.333 +121930,216.61,50.16 +121931,214.04,50.95 +121932,211.61,51.707 +121933,218.04,49.432 +121934,215.32,50.212 +121935,212.75,50.955 +121936,210.33,51.668 +121937,216.73,49.532 +121938,214.02,50.263 +121939,211.47,50.961 +121940,209.05,51.628 +121941,215.41,49.632 +121942,212.73,50.315 +121943,210.19,50.966 +121944,207.77,51.588 +121945,214.1,49.732 +121946,211.43,50.367 +121947,208.9,50.97 +121948,206.5,51.547 +121949,212.78,49.833 +121950,210.13,50.419 +121951,207.62,50.975 +121952,205.23,51.506 +121953,211.46,49.934 +121954,208.83,50.471 +121955,206.34,50.98 +121956,203.96,51.465 +121957,210.13,50.035 +121958,207.54,50.523 +121959,205.06,50.984 +121960,202.69,51.423 +121961,208.81,50.136 +121962,206.24,50.575 +121963,203.78,50.989 +121964,201.42,51.381 +121965,207.48,50.238 +121966,204.94,50.627 +121967,202.5,50.993 +121968,200.16,51.338 +121969,206.15,50.34 +121970,203.64,50.68 +121971,201.22,50.998 +121972,198.9,51.296 +121973,204.82,50.441 +121974,202.33,50.732 +121975,199.94,51.002 +121976,197.64,51.253 +121977,203.49,50.543 +121978,201.03,50.785 +121979,198.66,51.006 +121980,196.38,51.21 +121981,202.16,50.645 +121982,199.73,50.837 +121983,197.39,51.01 +121984,195.12,51.167 +121985,200.82,50.746 +121986,198.43,50.89 +121987,196.11,51.015 +121988,193.86,51.124 +121989,199.48,50.848 +121990,197.12,50.942 +121991,194.83,51.019 +121992,192.61,51.08 +121993,198.14,50.949 +121994,195.82,50.995 +121995,193.56,51.023 +121996,191.36,51.037 +121997,196.8,51.051 +121998,194.51,51.047 +121999,192.28,51.028 +122000,190.11,50.994 +122001,195.46,51.152 +122002,193.21,51.1 +122003,191.01,51.032 +122004,188.86,50.951 +122005,194.12,51.253 +122006,191.9,51.152 +122007,189.73,51.036 +122008,187.61,50.908 +122009,192.77,51.353 +122010,190.59,51.204 +122011,188.46,51.041 +122012,186.37,50.865 +122013,191.43,51.453 +122014,189.28,51.257 +122015,187.19,51.045 +122016,185.13,50.822 +122017,190.08,51.553 +122018,187.97,51.309 +122019,185.91,51.05 +122020,183.89,50.779 +122021,188.73,51.653 +122022,186.67,51.361 +122023,184.64,51.055 +122024,182.65,50.737 +122025,187.38,51.752 +122026,185.36,51.413 +122027,183.37,51.06 +122028,181.41,50.695 +122029,186.02,51.85 +122030,184.05,51.464 +122031,182.1,51.065 +122032,180.17,50.653 +122033,184.67,51.949 +122034,182.73,51.516 +122035,180.83,51.07 +122036,178.94,50.611 +122037,183.31,52.046 +122038,181.42,51.568 +122039,179.55,51.075 +122040,177.71,50.57 +122041,181.96,52.143 +122042,180.11,51.619 +122043,178.28,51.081 +122044,176.47,50.53 +122045,180.6,52.24 +122046,178.8,51.67 +122047,177.02,51.086 +122048,175.25,50.49 +122049,179.24,52.335 +122050,177.49,51.721 +122051,175.75,51.092 +122052,174.02,50.45 +122053,177.88,52.43 +122054,176.17,51.772 +122055,174.48,51.098 +122056,172.79,50.411 +122057,176.52,52.525 +122058,174.86,51.822 +122059,173.21,51.104 +122060,171.57,50.372 +122061,175.16,52.618 +122062,173.54,51.873 +122063,171.94,51.111 +122064,170.34,50.334 +122065,173.79,52.711 +122066,172.23,51.923 +122067,170.67,51.118 +122068,169.12,50.297 +122069,172.43,52.804 +122070,170.91,51.973 +122071,169.41,51.125 +122072,167.9,50.26 +122073,171.06,52.895 +122074,169.6,52.022 +122075,168.14,51.132 +122076,166.68,50.224 +122077,169.69,52.985 +122078,168.28,52.072 +122079,166.87,51.139 +122080,165.46,50.189 +122081,168.33,53.075 +122082,166.97,52.121 +122083,165.6,51.147 +122084,164.24,50.155 +122085,166.96,53.163 +122086,165.65,52.169 +122087,164.34,51.155 +122088,163.03,50.121 +122089,165.59,53.251 +122090,164.33,52.218 +122091,163.07,51.163 +122092,161.81,50.088 +122093,164.22,53.338 +122094,163.01,52.266 +122095,161.81,51.172 +122096,160.6,50.056 +122097,162.85,53.424 +122098,161.7,52.314 +122099,160.54,51.181 +122100,159.39,50.025 +122101,161.48,53.508 +122102,160.38,52.362 +122103,159.28,51.19 +122104,158.18,49.995 +122105,160.11,53.592 +122106,159.06,52.409 +122107,158.01,51.2 +122108,156.97,49.966 +122109,158.73,53.675 +122110,157.74,52.456 +122111,156.75,51.21 +122112,155.76,49.938 +122113,157.36,53.756 +122114,156.42,52.502 +122115,155.48,51.22 +122116,154.55,49.911 +122117,155.99,53.837 +122118,155.1,52.548 +122119,154.22,51.231 +122120,153.34,49.885 +122121,154.61,53.916 +122122,153.78,52.594 +122123,152.96,51.242 +122124,152.14,49.86 +122125,153.24,53.994 +122126,152.46,52.639 +122127,151.69,51.253 +122128,150.93,49.836 +122129,151.86,54.071 +122130,151.14,52.684 +122131,150.43,51.265 +122132,149.73,49.813 +122133,150.49,54.147 +122134,149.82,52.729 +122135,149.16,51.278 +122136,148.53,49.792 +122137,149.11,54.221 +122138,148.5,52.773 +122139,147.9,51.29 +122140,147.32,49.771 +122141,147.74,54.294 +122142,147.18,52.817 +122143,146.64,51.303 +122144,146.12,49.752 +122145,146.36,54.366 +122146,145.86,52.86 +122147,145.37,51.317 +122148,144.92,49.735 +122149,144.98,54.437 +122150,144.53,52.903 +122151,144.11,51.331 +122152,143.72,49.718 +122153,143.6,54.506 +122154,143.21,52.946 +122155,142.85,51.345 +122156,142.52,49.703 +122157,142.23,54.574 +122158,141.89,52.988 +122159,141.59,51.36 +122160,141.32,49.689 +122161,140.85,54.641 +122162,140.57,53.03 +122163,140.32,51.375 +122164,140.12,49.676 +122165,139.47,54.706 +122166,139.25,53.071 +122167,139.06,51.391 +122168,138.92,49.665 +122169,138.1,54.77 +122170,137.93,53.112 +122171,137.8,51.407 +122172,137.72,49.655 +122173,136.72,54.833 +122174,136.6,53.152 +122175,136.53,51.424 +122176,136.52,49.647 +122177,135.34,54.894 +122178,135.28,53.192 +122179,135.27,51.441 +122180,135.32,49.64 +122181,133.96,54.954 +122182,133.96,53.231 +122183,134.01,51.459 +122184,134.12,49.634 +122185,132.59,55.012 +122186,132.64,53.27 +122187,132.74,51.477 +122188,132.92,49.63 +122189,131.21,55.069 +122190,131.31,53.308 +122191,131.48,51.496 +122192,131.72,49.628 +122193,129.83,55.125 +122194,129.99,53.346 +122195,130.22,51.515 +122196,130.52,49.627 +122197,128.45,55.179 +122198,128.67,53.384 +122199,128.95,51.534 +122200,129.32,49.627 +122201,127.08,55.232 +122202,127.35,53.421 +122203,127.69,51.555 +122204,128.12,49.63 +122205,125.7,55.283 +122206,126.02,53.457 +122207,126.43,51.575 +122208,126.92,49.633 +122209,124.32,55.332 +122210,124.7,53.493 +122211,125.16,51.596 +122212,125.72,49.638 +122213,122.95,55.381 +122214,123.38,53.528 +122215,123.9,51.618 +122216,124.52,49.645 +122217,121.57,55.427 +122218,122.06,53.563 +122219,122.64,51.64 +122220,123.32,49.653 +122221,120.2,55.472 +122222,120.74,53.598 +122223,121.37,51.663 +122224,122.12,49.663 +122225,118.82,55.516 +122226,119.41,53.632 +122227,120.11,51.686 +122228,120.92,49.675 +122229,117.45,55.558 +122230,118.09,53.665 +122231,118.84,51.71 +122232,119.72,49.688 +122233,116.07,55.599 +122234,116.77,53.698 +122235,117.58,51.735 +122236,118.52,49.703 +122237,114.7,55.638 +122238,115.45,53.73 +122239,116.31,51.759 +122240,117.31,49.719 +122241,113.33,55.676 +122242,114.13,53.762 +122243,115.04,51.785 +122244,116.11,49.737 +122245,111.96,55.712 +122246,112.81,53.793 +122247,113.78,51.811 +122248,114.9,49.757 +122249,110.59,55.746 +122250,111.48,53.824 +122251,112.51,51.837 +122252,113.7,49.778 +122253,109.21,55.779 +122254,110.16,53.855 +122255,111.25,51.864 +122256,112.49,49.801 +122257,107.84,55.811 +122258,108.84,53.884 +122259,109.98,51.892 +122260,111.28,49.826 +122261,106.48,55.841 +122262,107.52,53.914 +122263,108.71,51.92 +122264,110.07,49.852 +122265,105.11,55.869 +122266,106.2,53.942 +122267,107.44,51.948 +122268,108.86,49.88 +122269,103.74,55.896 +122270,104.88,53.971 +122271,106.17,51.978 +122272,107.65,49.91 +122273,102.37,55.922 +122274,103.56,53.998 +122275,104.91,52.007 +122276,106.44,49.941 +122277,101.01,55.946 +122278,102.24,54.026 +122279,103.64,52.037 +122280,105.22,49.974 +122281,99.641,55.968 +122282,100.92,54.052 +122283,102.37,52.068 +122284,104.01,50.009 +122285,98.276,55.989 +122286,99.605,54.078 +122287,101.1,52.099 +122288,102.79,50.045 +122289,96.913,56.009 +122290,98.286,54.104 +122291,99.827,52.131 +122292,101.58,50.083 +122293,95.551,56.027 +122294,96.968,54.129 +122295,98.556,52.164 +122296,100.36,50.122 +122297,94.189,56.043 +122298,95.649,54.154 +122299,97.284,52.196 +122300,99.135,50.163 +122301,92.829,56.059 +122302,94.332,54.178 +122303,96.012,52.23 +122304,97.913,50.206 +122305,91.47,56.072 +122306,93.014,54.202 +122307,94.74,52.264 +122308,96.689,50.25 +122309,90.111,56.084 +122310,91.697,54.225 +122311,93.467,52.298 +122312,95.464,50.296 +122313,88.754,56.095 +122314,90.381,54.248 +122315,92.193,52.333 +122316,94.237,50.343 +122317,87.398,56.104 +122318,89.065,54.27 +122319,90.919,52.368 +122320,93.008,50.392 +122321,86.044,56.112 +122322,87.749,54.291 +122323,89.645,52.404 +122324,91.777,50.443 +122325,84.69,56.119 +122326,86.433,54.313 +122327,88.369,52.441 +122328,90.545,50.495 +122329,83.338,56.124 +122330,85.118,54.333 +122331,87.093,52.478 +122332,89.311,50.548 +122333,81.987,56.128 +122334,83.803,54.354 +122335,85.817,52.515 +122336,88.075,50.603 +122337,80.637,56.13 +122338,82.489,54.373 +122339,84.54,52.553 +122340,86.837,50.66 +122341,79.289,56.131 +122342,81.175,54.393 +122343,83.262,52.591 +122344,85.597,50.718 +122345,77.942,56.131 +122346,79.862,54.412 +122347,81.984,52.63 +122348,84.355,50.777 +122349,76.596,56.129 +122350,78.549,54.43 +122351,80.705,52.669 +122352,83.112,50.838 +122353,75.251,56.126 +122354,77.237,54.448 +122355,79.425,52.709 +122356,81.866,50.9 +122357,73.908,56.122 +122358,75.925,54.466 +122359,78.145,52.749 +122360,80.618,50.964 +122361,72.567,56.116 +122362,74.613,54.483 +122363,76.864,52.79 +122364,79.368,51.029 +122365,71.227,56.11 +122366,73.302,54.499 +122367,75.583,52.831 +122368,78.116,51.096 +122369,69.888,56.102 +122370,71.992,54.516 +122371,74.3,52.872 +122372,76.862,51.163 +122373,68.551,56.092 +122374,70.682,54.532 +122375,73.018,52.914 +122376,75.606,51.232 +122377,67.216,56.082 +122378,69.372,54.547 +122379,71.734,52.956 +122380,74.348,51.302 +122381,65.881,56.07 +122382,68.064,54.562 +122383,70.45,52.999 +122384,73.087,51.374 +122385,64.549,56.058 +122386,66.755,54.577 +122387,69.165,53.042 +122388,71.825,51.447 +122389,63.218,56.044 +122390,65.447,54.591 +122391,67.879,53.086 +122392,70.56,51.52 +122393,61.889,56.029 +122394,64.14,54.605 +122395,66.592,53.129 +122396,69.293,51.596 +122397,60.561,56.013 +122398,62.833,54.619 +122399,65.305,53.174 +122400,68.023,51.672 +122401,59.235,55.996 +122402,61.527,54.632 +122403,64.017,53.218 +122404,66.752,51.749 +122405,57.91,55.978 +122406,60.221,54.645 +122407,62.729,53.263 +122408,65.478,51.827 +122409,56.588,55.959 +122410,58.916,54.657 +122411,61.439,53.308 +122412,64.202,51.907 +122413,55.266,55.939 +122414,57.611,54.669 +122415,60.149,53.354 +122416,62.924,51.987 +122417,53.947,55.918 +122418,56.307,54.681 +122419,58.859,53.4 +122420,61.644,52.068 +122421,52.629,55.896 +122422,55.003,54.693 +122423,57.567,53.446 +122424,60.361,52.151 +122425,51.313,55.873 +122426,53.701,54.704 +122427,56.275,53.493 +122428,59.076,52.234 +122429,49.999,55.849 +122430,52.398,54.715 +122431,54.982,53.54 +122432,57.789,52.318 +122433,48.687,55.824 +122434,51.096,54.725 +122435,53.688,53.587 +122436,56.499,52.403 +122437,47.376,55.799 +122438,49.795,54.736 +122439,52.393,53.634 +122440,55.208,52.489 +122441,46.067,55.773 +122442,48.495,54.746 +122443,51.098,53.682 +122444,53.914,52.576 +122445,44.76,55.746 +122446,47.195,54.756 +122447,49.802,53.73 +122448,52.618,52.663 +122449,43.454,55.718 +122450,45.895,54.765 +122451,48.505,53.778 +122452,51.319,52.751 +122453,42.151,55.689 +122454,44.596,54.774 +122455,47.208,53.826 +122456,50.019,52.84 +122457,40.849,55.66 +122458,43.298,54.784 +122459,45.91,53.875 +122460,48.716,52.929 +122461,39.549,55.63 +122462,42,54.792 +122463,44.611,53.923 +122464,47.411,53.019 +122465,38.251,55.6 +122466,40.703,54.801 +122467,43.311,53.972 +122468,46.104,53.11 +122469,36.954,55.569 +122470,39.407,54.81 +122471,42.011,54.022 +122472,44.794,53.201 +122473,35.66,55.537 +122474,38.111,54.818 +122475,40.71,54.071 +122476,43.483,53.292 +122477,34.367,55.505 +122478,36.816,54.826 +122479,39.408,54.12 +122480,42.169,53.384 +122481,33.076,55.472 +122482,35.521,54.834 +122483,38.105,54.17 +122484,40.853,53.477 +122485,31.787,55.439 +122486,34.227,54.842 +122487,36.802,54.22 +122488,39.536,53.57 +122489,30.5,55.406 +122490,32.933,54.85 +122491,35.498,54.27 +122492,38.216,53.663 +122493,29.215,55.372 +122494,31.64,54.857 +122495,34.193,54.32 +122496,36.894,53.757 +122497,27.931,55.337 +122498,30.348,54.864 +122499,32.887,54.37 +122500,35.57,53.851 +122501,26.65,55.303 +122502,29.056,54.872 +122503,31.581,54.42 +122504,34.244,53.945 +122505,25.37,55.268 +122506,27.765,54.879 +122507,30.274,54.47 +122508,32.916,54.039 +122509,24.092,55.232 +122510,26.474,54.886 +122511,28.966,54.521 +122512,31.586,54.134 +122513,22.816,55.197 +122514,25.184,54.893 +122515,27.658,54.571 +122516,30.254,54.228 +122517,21.542,55.161 +122518,23.895,54.9 +122519,26.349,54.622 +122520,28.92,54.323 +122521,20.269,55.125 +122522,22.606,54.907 +122523,25.039,54.672 +122524,27.585,54.418 +122525,18.998,55.089 +122526,21.318,54.914 +122527,23.729,54.723 +122528,26.247,54.513 +122529,17.73,55.053 +122530,20.03,54.921 +122531,22.418,54.773 +122532,24.908,54.608 +122533,16.463,55.017 +122534,18.742,54.928 +122535,21.106,54.824 +122536,23.566,54.703 +122537,15.197,54.98 +122538,17.456,54.934 +122539,19.794,54.874 +122540,22.224,54.798 +122541,13.934,54.944 +122542,16.17,54.941 +122543,18.481,54.925 +122544,20.879,54.892 +122545,12.672,54.908 +122546,14.884,54.948 +122547,17.168,54.975 +122548,19.532,54.987 +122549,11.412,54.872 +122550,13.599,54.955 +122551,15.853,55.026 +122552,18.184,55.081 +122553,10.154,54.835 +122554,12.314,54.962 +122555,14.539,55.076 +122556,16.835,55.176 +122557,8.8974,54.799 +122558,11.03,54.969 +122559,13.223,55.126 +122560,15.483,55.27 +122561,7.6426,54.764 +122562,9.7469,54.976 +122563,11.907,55.176 +122564,14.13,55.363 +122565,6.3895,54.728 +122566,8.4638,54.983 +122567,10.59,55.227 +122568,12.776,55.457 +122569,5.1381,54.692 +122570,7.1813,54.99 +122571,9.2733,55.277 +122572,11.42,55.55 +122573,3.8883,54.657 +122574,5.8993,54.997 +122575,7.9555,55.326 +122576,10.063,55.642 +122577,2.6402,54.622 +122578,4.6177,55.005 +122579,6.6372,55.376 +122580,8.7037,55.734 +122581,1.3937,54.588 +122582,3.3366,55.012 +122583,5.3183,55.426 +122584,7.3435,55.826 +122585,0.14877,54.553 +122586,2.056,55.02 +122587,3.9989,55.475 +122588,5.9818,55.918 +122589,358.91,54.52 +122590,0.77582,55.028 +122591,2.679,55.524 +122592,4.6188,56.008 +122593,357.66,54.486 +122594,359.5,55.035 +122595,1.3585,55.574 +122596,3.2545,56.099 +122597,356.42,54.453 +122598,358.22,55.044 +122599,0.037541,55.623 +122600,1.889,56.188 +122601,355.18,54.421 +122602,356.94,55.052 +122603,358.72,55.671 +122604,0.5222,56.277 +122605,353.95,54.389 +122606,355.66,55.06 +122607,357.39,55.72 +122608,359.15,56.366 +122609,352.71,54.357 +122610,354.38,55.069 +122611,356.07,55.768 +122612,357.79,56.454 +122613,351.48,54.327 +122614,353.1,55.078 +122615,354.75,55.816 +122616,356.41,56.541 +122617,350.24,54.296 +122618,351.83,55.087 +122619,353.43,55.864 +122620,355.04,56.627 +122621,349.01,54.267 +122622,350.55,55.096 +122623,352.1,55.912 +122624,353.67,56.713 +122625,347.78,54.238 +122626,349.27,55.105 +122627,350.78,55.959 +122628,352.3,56.797 +122629,346.55,54.21 +122630,348,55.115 +122631,349.45,56.006 +122632,350.92,56.881 +122633,345.32,54.182 +122634,346.72,55.125 +122635,348.13,56.053 +122636,349.55,56.965 +122637,344.1,54.156 +122638,345.45,55.135 +122639,346.8,56.099 +122640,348.17,57.047 +122641,342.87,54.13 +122642,344.17,55.146 +122643,345.48,56.146 +122644,346.8,57.128 +122645,341.65,54.105 +122646,342.9,55.156 +122647,344.15,56.192 +122648,345.42,57.209 +122649,340.43,54.08 +122650,341.62,55.167 +122651,342.82,56.237 +122652,344.04,57.288 +122653,339.2,54.057 +122654,340.35,55.179 +122655,341.5,56.282 +122656,342.66,57.367 +122657,337.98,54.035 +122658,339.07,55.19 +122659,340.17,56.327 +122660,341.28,57.445 +122661,336.76,54.013 +122662,337.8,55.202 +122663,338.84,56.372 +122664,339.9,57.521 +122665,335.54,53.993 +122666,336.52,55.215 +122667,337.52,56.416 +122668,338.52,57.597 +122669,334.32,53.973 +122670,335.25,55.227 +122671,336.19,56.46 +122672,337.14,57.672 +122673,333.11,53.955 +122674,333.98,55.24 +122675,334.86,56.504 +122676,335.75,57.745 +122677,331.89,53.937 +122678,332.7,55.253 +122679,333.53,56.547 +122680,334.37,57.817 +122681,330.68,53.921 +122682,331.43,55.267 +122683,332.2,56.59 +122684,332.99,57.889 +122685,329.46,53.906 +122686,330.16,55.281 +122687,330.87,56.632 +122688,331.6,57.959 +122689,328.25,53.891 +122690,328.89,55.296 +122691,329.54,56.675 +122692,330.22,58.028 +122693,327.03,53.878 +122694,327.61,55.31 +122695,328.22,56.716 +122696,328.84,58.096 +122697,325.82,53.866 +122698,326.34,55.325 +122699,326.89,56.757 +122700,327.45,58.162 +122701,324.61,53.856 +122702,325.07,55.341 +122703,325.56,56.798 +122704,326.07,58.228 +122705,323.39,53.846 +122706,323.8,55.357 +122707,324.23,56.839 +122708,324.68,58.292 +122709,322.18,53.838 +122710,322.53,55.373 +122711,322.9,56.879 +122712,323.29,58.355 +122713,320.97,53.831 +122714,321.25,55.39 +122715,321.57,56.918 +122716,321.91,58.417 +122717,319.76,53.825 +122718,319.98,55.407 +122719,320.24,56.958 +122720,320.52,58.477 +122721,318.55,53.82 +122722,318.71,55.425 +122723,318.91,56.996 +122724,319.14,58.536 +122725,317.34,53.817 +122726,317.44,55.443 +122727,317.58,57.035 +122728,317.75,58.594 +122729,316.13,53.815 +122730,316.17,55.461 +122731,316.25,57.073 +122732,316.37,58.651 +122733,314.92,53.815 +122734,314.89,55.48 +122735,314.92,57.11 +122736,314.98,58.706 +122737,313.71,53.815 +122738,313.62,55.499 +122739,313.58,57.147 +122740,313.59,58.76 +122741,312.5,53.818 +122742,312.35,55.519 +122743,312.25,57.183 +122744,312.21,58.812 +122745,311.29,53.821 +122746,311.08,55.539 +122747,310.92,57.219 +122748,310.82,58.863 +122749,310.08,53.826 +122750,309.8,55.56 +122751,309.59,57.255 +122752,309.44,58.913 +122753,308.87,53.832 +122754,308.53,55.581 +122755,308.26,57.29 +122756,308.05,58.962 +122757,307.66,53.84 +122758,307.26,55.602 +122759,306.93,57.325 +122760,306.67,59.009 +122761,306.45,53.849 +122762,305.99,55.624 +122763,305.6,57.359 +122764,305.28,59.054 +122765,305.24,53.859 +122766,304.71,55.647 +122767,304.27,57.393 +122768,303.9,59.099 +122769,304.03,53.871 +122770,303.44,55.67 +122771,302.94,57.426 +122772,302.51,59.142 +122773,302.82,53.885 +122774,302.17,55.693 +122775,301.61,57.459 +122776,301.13,59.183 +122777,301.6,53.9 +122778,300.9,55.717 +122779,300.28,57.491 +122780,299.75,59.223 +122781,300.39,53.916 +122782,299.62,55.741 +122783,298.95,57.523 +122784,298.37,59.262 +122785,299.18,53.934 +122786,298.35,55.766 +122787,297.62,57.554 +122788,296.98,59.299 +122789,297.96,53.953 +122790,297.07,55.791 +122791,296.29,57.585 +122792,295.6,59.335 +122793,296.75,53.974 +122794,295.8,55.817 +122795,294.96,57.615 +122796,294.22,59.37 +122797,295.53,53.996 +122798,294.53,55.843 +122799,293.63,57.645 +122800,292.84,59.403 +122801,294.32,54.019 +122802,293.25,55.87 +122803,292.3,57.674 +122804,291.46,59.434 +122805,293.1,54.044 +122806,291.98,55.897 +122807,290.98,57.703 +122808,290.08,59.464 +122809,291.88,54.071 +122810,290.7,55.925 +122811,289.65,57.731 +122812,288.7,59.493 +122813,290.67,54.099 +122814,289.42,55.953 +122815,288.32,57.759 +122816,287.33,59.52 +122817,289.45,54.129 +122818,288.15,55.982 +122819,286.99,57.787 +122820,285.95,59.546 +122821,288.23,54.16 +122822,286.87,56.011 +122823,285.66,57.813 +122824,284.57,59.571 +122825,287.01,54.192 +122826,285.6,56.04 +122827,284.33,57.84 +122828,283.2,59.594 +122829,285.78,54.226 +122830,284.32,56.07 +122831,283.01,57.866 +122832,281.82,59.616 +122833,284.56,54.262 +122834,283.04,56.101 +122835,281.68,57.891 +122836,280.45,59.636 +122837,283.33,54.298 +122838,281.76,56.132 +122839,280.35,57.916 +122840,279.08,59.655 +122841,282.11,54.337 +122842,280.48,56.163 +122843,279.03,57.941 +122844,277.7,59.673 +122845,280.88,54.377 +122846,279.21,56.195 +122847,277.7,57.965 +122848,276.33,59.689 +122849,279.65,54.418 +122850,277.93,56.227 +122851,276.37,57.988 +122852,274.96,59.704 +122853,278.42,54.46 +122854,276.65,56.26 +122855,275.05,58.011 +122856,273.6,59.717 +122857,277.19,54.504 +122858,275.37,56.293 +122859,273.72,58.034 +122860,272.23,59.729 +122861,275.96,54.55 +122862,274.09,56.327 +122863,272.4,58.056 +122864,270.86,59.74 +122865,274.72,54.597 +122866,272.8,56.361 +122867,271.07,58.078 +122868,269.5,59.749 +122869,273.49,54.645 +122870,271.52,56.396 +122871,269.75,58.099 +122872,268.13,59.757 +122873,272.25,54.695 +122874,270.24,56.431 +122875,268.43,58.12 +122876,266.77,59.764 +122877,271.01,54.746 +122878,268.96,56.466 +122879,267.1,58.14 +122880,265.41,59.77 +122881,269.77,54.798 +122882,267.67,56.502 +122883,265.78,58.16 +122884,264.05,59.774 +122885,268.52,54.851 +122886,266.39,56.539 +122887,264.46,58.179 +122888,262.69,59.777 +122889,267.28,54.906 +122890,265.11,56.575 +122891,263.13,58.198 +122892,261.33,59.778 +122893,266.03,54.963 +122894,263.82,56.613 +122895,261.81,58.217 +122896,259.97,59.779 +122897,264.79,55.02 +122898,262.54,56.65 +122899,260.49,58.235 +122900,258.62,59.778 +122901,263.54,55.079 +122902,261.25,56.688 +122903,259.17,58.253 +122904,257.26,59.776 +122905,262.28,55.139 +122906,259.96,56.727 +122907,257.85,58.27 +122908,255.91,59.773 +122909,261.03,55.2 +122910,258.68,56.765 +122911,256.53,58.287 +122912,254.56,59.768 +122913,259.77,55.262 +122914,257.39,56.804 +122915,255.21,58.303 +122916,253.21,59.763 +122917,258.52,55.326 +122918,256.1,56.844 +122919,253.89,58.319 +122920,251.86,59.756 +122921,257.26,55.391 +122922,254.81,56.884 +122923,252.57,58.335 +122924,250.51,59.748 +122925,256,55.457 +122926,253.52,56.924 +122927,251.26,58.351 +122928,249.17,59.739 +122929,254.73,55.523 +122930,252.23,56.965 +122931,249.94,58.366 +122932,247.82,59.729 +122933,253.47,55.592 +122934,250.94,57.006 +122935,248.62,58.38 +122936,246.48,59.718 +122937,252.2,55.661 +122938,249.65,57.047 +122939,247.31,58.394 +122940,245.14,59.706 +122941,250.93,55.731 +122942,248.35,57.089 +122943,245.99,58.408 +122944,243.8,59.693 +122945,249.66,55.802 +122946,247.06,57.131 +122947,244.67,58.422 +122948,242.46,59.679 +122949,248.38,55.874 +122950,245.77,57.173 +122951,243.36,58.435 +122952,241.13,59.664 +122953,247.11,55.947 +122954,244.47,57.215 +122955,242.05,58.448 +122956,239.79,59.648 +122957,245.83,56.021 +122958,243.18,57.258 +122959,240.73,58.46 +122960,238.46,59.631 +122961,244.55,56.096 +122962,241.88,57.302 +122963,239.42,58.473 +122964,237.13,59.613 +122965,243.27,56.172 +122966,240.58,57.345 +122967,238.11,58.485 +122968,235.8,59.594 +122969,241.98,56.249 +122970,239.29,57.389 +122971,236.79,58.496 +122972,234.47,59.574 +122973,240.7,56.326 +122974,237.99,57.433 +122975,235.48,58.507 +122976,233.15,59.554 +122977,239.41,56.404 +122978,236.69,57.477 +122979,234.17,58.519 +122980,231.82,59.532 +122981,238.12,56.483 +122982,235.39,57.521 +122983,232.86,58.529 +122984,230.5,59.51 +122985,236.82,56.563 +122986,234.09,57.566 +122987,231.55,58.54 +122988,229.18,59.487 +122989,235.53,56.644 +122990,232.79,57.611 +122991,230.24,58.55 +122992,227.86,59.464 +122993,234.23,56.725 +122994,231.49,57.656 +122995,228.94,58.56 +122996,226.54,59.439 +122997,232.93,56.807 +122998,230.19,57.702 +122999,227.63,58.57 +123000,225.23,59.414 +123001,231.63,56.889 +123002,228.88,57.747 +123003,226.32,58.58 +123004,223.91,59.389 +123005,230.33,56.972 +123006,227.58,57.793 +123007,225.01,58.589 +123008,222.6,59.362 +123009,229.02,57.056 +123010,226.28,57.839 +123011,223.71,58.598 +123012,221.29,59.336 +123013,227.71,57.14 +123014,224.97,57.885 +123015,222.4,58.607 +123016,219.98,59.308 +123017,226.4,57.224 +123018,223.66,57.931 +123019,221.1,58.616 +123020,218.67,59.28 +123021,225.09,57.309 +123022,222.36,57.978 +123023,219.79,58.624 +123024,217.37,59.252 +123025,223.78,57.395 +123026,221.05,58.024 +123027,218.49,58.633 +123028,216.07,59.223 +123029,222.46,57.48 +123030,219.74,58.071 +123031,217.19,58.641 +123032,214.76,59.193 +123033,221.14,57.566 +123034,218.43,58.118 +123035,215.88,58.649 +123036,213.47,59.163 +123037,219.82,57.653 +123038,217.13,58.165 +123039,214.58,58.657 +123040,212.17,59.133 +123041,218.5,57.74 +123042,215.82,58.212 +123043,213.28,58.665 +123044,210.87,59.103 +123045,217.17,57.827 +123046,214.5,58.259 +123047,211.98,58.673 +123048,209.58,59.072 +123049,215.85,57.914 +123050,213.19,58.306 +123051,210.68,58.681 +123052,208.29,59.04 +123053,214.52,58.001 +123054,211.88,58.353 +123055,209.38,58.688 +123056,206.99,59.009 +123057,213.19,58.089 +123058,210.57,58.4 +123059,208.08,58.696 +123060,205.71,58.977 +123061,211.85,58.177 +123062,209.26,58.448 +123063,206.78,58.703 +123064,204.42,58.945 +123065,210.52,58.264 +123066,207.94,58.495 +123067,205.49,58.71 +123068,203.13,58.913 +123069,209.18,58.352 +123070,206.63,58.542 +123071,204.19,58.718 +123072,201.85,58.881 +123073,207.84,58.44 +123074,205.31,58.59 +123075,202.89,58.725 +123076,200.57,58.848 +123077,206.5,58.528 +123078,204,58.637 +123079,201.6,58.732 +123080,199.29,58.816 +123081,205.16,58.616 +123082,202.68,58.684 +123083,200.3,58.739 +123084,198.01,58.783 +123085,203.82,58.704 +123086,201.36,58.731 +123087,199,58.746 +123088,196.74,58.751 +123089,202.47,58.791 +123090,200.04,58.779 +123091,197.71,58.754 +123092,195.46,58.718 +123093,201.13,58.879 +123094,198.72,58.826 +123095,196.42,58.761 +123096,194.19,58.686 +123097,199.78,58.966 +123098,197.41,58.873 +123099,195.12,58.768 +123100,192.92,58.653 +123101,198.43,59.053 +123102,196.09,58.92 +123103,193.83,58.775 +123104,191.65,58.621 +123105,197.07,59.14 +123106,194.77,58.967 +123107,192.54,58.783 +123108,190.38,58.589 +123109,195.72,59.227 +123110,193.44,59.014 +123111,191.25,58.79 +123112,189.12,58.557 +123113,194.36,59.313 +123114,192.12,59.061 +123115,189.96,58.797 +123116,187.85,58.525 +123117,193.01,59.399 +123118,190.8,59.108 +123119,188.66,58.805 +123120,186.59,58.493 +123121,191.65,59.485 +123122,189.48,59.154 +123123,187.37,58.812 +123124,185.33,58.462 +123125,190.29,59.57 +123126,188.16,59.201 +123127,186.09,58.82 +123128,184.07,58.431 +123129,188.93,59.655 +123130,186.83,59.247 +123131,184.8,58.828 +123132,182.81,58.4 +123133,187.56,59.739 +123134,185.51,59.293 +123135,183.51,58.836 +123136,181.56,58.37 +123137,186.2,59.823 +123138,184.18,59.339 +123139,182.22,58.844 +123140,180.3,58.34 +123141,184.83,59.907 +123142,182.86,59.385 +123143,180.93,58.852 +123144,179.05,58.31 +123145,183.46,59.99 +123146,181.53,59.431 +123147,179.64,58.86 +123148,177.8,58.281 +123149,182.1,60.072 +123150,180.2,59.476 +123151,178.36,58.869 +123152,176.55,58.252 +123153,180.73,60.154 +123154,178.88,59.521 +123155,177.07,58.877 +123156,175.3,58.224 +123157,179.35,60.235 +123158,177.55,59.566 +123159,175.78,58.886 +123160,174.05,58.196 +123161,177.98,60.315 +123162,176.22,59.611 +123163,174.5,58.895 +123164,172.81,58.169 +123165,176.61,60.395 +123166,174.89,59.656 +123167,173.21,58.904 +123168,171.56,58.143 +123169,175.23,60.474 +123170,173.57,59.7 +123171,171.93,58.914 +123172,170.32,58.117 +123173,173.86,60.552 +123174,172.24,59.744 +123175,170.64,58.923 +123176,169.08,58.092 +123177,172.48,60.63 +123178,170.91,59.788 +123179,169.36,58.933 +123180,167.84,58.067 +123181,171.1,60.707 +123182,169.58,59.832 +123183,168.08,58.943 +123184,166.6,58.043 +123185,169.72,60.783 +123186,168.25,59.875 +123187,166.79,58.953 +123188,165.36,58.02 +123189,168.34,60.858 +123190,166.92,59.918 +123191,165.51,58.964 +123192,164.13,57.998 +123193,166.96,60.932 +123194,165.59,59.961 +123195,164.23,58.975 +123196,162.89,57.976 +123197,165.58,61.006 +123198,164.25,60.003 +123199,162.95,58.986 +123200,161.66,57.956 +123201,164.2,61.078 +123202,162.92,60.045 +123203,161.66,58.997 +123204,160.42,57.936 +123205,162.82,61.15 +123206,161.59,60.087 +123207,160.38,59.009 +123208,159.19,57.917 +123209,161.43,61.221 +123210,160.26,60.129 +123211,159.1,59.021 +123212,157.96,57.899 +123213,160.05,61.29 +123214,158.93,60.17 +123215,157.82,59.033 +123216,156.73,57.881 +123217,158.66,61.359 +123218,157.59,60.211 +123219,156.54,59.045 +123220,155.5,57.865 +123221,157.28,61.427 +123222,156.26,60.251 +123223,155.26,59.058 +123224,154.27,57.85 +123225,155.89,61.493 +123226,154.93,60.291 +123227,153.98,59.071 +123228,153.05,57.835 +123229,154.5,61.559 +123230,153.59,60.331 +123231,152.7,59.085 +123232,151.82,57.822 +123233,153.12,61.624 +123234,152.26,60.37 +123235,151.42,59.099 +123236,150.59,57.809 +123237,151.73,61.687 +123238,150.92,60.409 +123239,150.14,59.113 +123240,149.37,57.798 +123241,150.34,61.749 +123242,149.59,60.448 +123243,148.86,59.127 +123244,148.15,57.788 +123245,148.95,61.811 +123246,148.25,60.486 +123247,147.58,59.142 +123248,146.92,57.778 +123249,147.56,61.871 +123250,146.92,60.524 +123251,146.3,59.157 +123252,145.7,57.77 +123253,146.17,61.93 +123254,145.59,60.562 +123255,145.02,59.173 +123256,144.48,57.763 +123257,144.78,61.988 +123258,144.25,60.599 +123259,143.74,59.189 +123260,143.26,57.758 +123261,143.39,62.044 +123262,142.91,60.636 +123263,142.46,59.205 +123264,142.03,57.753 +123265,142,62.1 +123266,141.58,60.672 +123267,141.18,59.222 +123268,140.81,57.749 +123269,140.61,62.154 +123270,140.24,60.708 +123271,139.9,59.239 +123272,139.59,57.747 +123273,139.22,62.207 +123274,138.91,60.743 +123275,138.63,59.256 +123276,138.37,57.746 +123277,137.83,62.259 +123278,137.57,60.778 +123279,137.35,59.274 +123280,137.15,57.746 +123281,136.44,62.309 +123282,136.24,60.813 +123283,136.07,59.292 +123284,135.93,57.747 +123285,135.05,62.359 +123286,134.9,60.847 +123287,134.79,59.311 +123288,134.72,57.75 +123289,133.66,62.407 +123290,133.57,60.881 +123291,133.51,59.33 +123292,133.5,57.754 +123293,132.27,62.453 +123294,132.23,60.914 +123295,132.23,59.349 +123296,132.28,57.759 +123297,130.88,62.499 +123298,130.89,60.947 +123299,130.95,59.369 +123300,131.06,57.765 +123301,129.49,62.543 +123302,129.56,60.98 +123303,129.67,59.39 +123304,129.84,57.773 +123305,128.1,62.586 +123306,128.22,61.012 +123307,128.4,59.41 +123308,128.62,57.782 +123309,126.71,62.628 +123310,126.89,61.043 +123311,127.12,59.431 +123312,127.4,57.792 +123313,125.32,62.668 +123314,125.55,61.074 +123315,125.84,59.453 +123316,126.18,57.804 +123317,123.93,62.707 +123318,124.22,61.105 +123319,124.56,59.475 +123320,124.96,57.817 +123321,122.54,62.744 +123322,122.88,61.135 +123323,123.28,59.497 +123324,123.74,57.831 +123325,121.15,62.781 +123326,121.54,61.165 +123327,122,59.52 +123328,122.52,57.847 +123329,119.76,62.816 +123330,120.21,61.194 +123331,120.72,59.543 +123332,121.3,57.864 +123333,118.37,62.849 +123334,118.87,61.223 +123335,119.44,59.567 +123336,120.08,57.882 +123337,116.99,62.882 +123338,117.54,61.251 +123339,118.16,59.591 +123340,118.86,57.902 +123341,115.6,62.913 +123342,116.2,61.279 +123343,116.88,59.616 +123344,117.64,57.923 +123345,114.21,62.942 +123346,114.87,61.307 +123347,115.6,59.641 +123348,116.42,57.945 +123349,112.83,62.971 +123350,113.53,61.334 +123351,114.32,59.666 +123352,115.19,57.969 +123353,111.44,62.998 +123354,112.2,61.36 +123355,113.04,59.692 +123356,113.97,57.994 +123357,110.06,63.024 +123358,110.86,61.386 +123359,111.76,59.719 +123360,112.75,58.02 +123361,108.67,63.048 +123362,109.53,61.412 +123363,110.48,59.745 +123364,111.52,58.048 +123365,107.29,63.071 +123366,108.2,61.437 +123367,109.19,59.773 +123368,110.3,58.077 +123369,105.91,63.093 +123370,106.86,61.462 +123371,107.91,59.8 +123372,109.07,58.108 +123373,104.52,63.113 +123374,105.53,61.486 +123375,106.63,59.828 +123376,107.84,58.139 +123377,103.14,63.132 +123378,104.2,61.51 +123379,105.35,59.857 +123380,106.61,58.173 +123381,101.76,63.15 +123382,102.86,61.533 +123383,104.06,59.886 +123384,105.38,58.207 +123385,100.38,63.166 +123386,101.53,61.556 +123387,102.78,59.915 +123388,104.15,58.243 +123389,99.006,63.181 +123390,100.2,61.578 +123391,101.5,59.945 +123392,102.92,58.28 +123393,97.628,63.195 +123394,98.865,61.6 +123395,100.21,59.975 +123396,101.69,58.319 +123397,96.252,63.208 +123398,97.534,61.622 +123399,98.929,60.006 +123400,100.46,58.359 +123401,94.876,63.219 +123402,96.202,61.643 +123403,97.645,60.037 +123404,99.222,58.4 +123405,93.502,63.229 +123406,94.871,61.663 +123407,96.359,60.068 +123408,97.986,58.442 +123409,92.128,63.238 +123410,93.54,61.684 +123411,95.074,60.1 +123412,96.749,58.486 +123413,90.756,63.245 +123414,92.21,61.703 +123415,93.788,60.132 +123416,95.51,58.531 +123417,89.384,63.252 +123418,90.88,61.723 +123419,92.501,60.165 +123420,94.27,58.577 +123421,88.014,63.257 +123422,89.55,61.742 +123423,91.214,60.198 +123424,93.028,58.624 +123425,86.645,63.26 +123426,88.221,61.76 +123427,89.927,60.231 +123428,91.786,58.673 +123429,85.277,63.263 +123430,86.892,61.778 +123431,88.639,60.265 +123432,90.541,58.723 +123433,83.911,63.265 +123434,85.563,61.796 +123435,87.35,60.299 +123436,89.295,58.774 +123437,82.545,63.265 +123438,84.235,61.813 +123439,86.061,60.334 +123440,88.048,58.826 +123441,81.181,63.264 +123442,82.907,61.83 +123443,84.772,60.369 +123444,86.799,58.88 +123445,79.818,63.262 +123446,81.58,61.847 +123447,83.482,60.404 +123448,85.548,58.935 +123449,78.457,63.259 +123450,80.253,61.863 +123451,82.191,60.44 +123452,84.296,58.99 +123453,77.096,63.254 +123454,78.927,61.878 +123455,80.9,60.476 +123456,83.042,59.047 +123457,75.738,63.249 +123458,77.601,61.894 +123459,79.609,60.513 +123460,81.786,59.105 +123461,74.38,63.243 +123462,76.275,61.909 +123463,78.317,60.55 +123464,80.529,59.164 +123465,73.024,63.235 +123466,74.951,61.923 +123467,77.024,60.587 +123468,79.27,59.224 +123469,71.669,63.226 +123470,73.626,61.937 +123471,75.73,60.624 +123472,78.009,59.286 +123473,70.316,63.217 +123474,72.302,61.951 +123475,74.437,60.662 +123476,76.746,59.348 +123477,68.964,63.206 +123478,70.979,61.965 +123479,73.142,60.7 +123480,75.481,59.411 +123481,67.614,63.195 +123482,69.656,61.978 +123483,71.847,60.739 +123484,74.215,59.475 +123485,66.265,63.182 +123486,68.333,61.991 +123487,70.551,60.777 +123488,72.946,59.541 +123489,64.918,63.169 +123490,67.011,62.003 +123491,69.255,60.816 +123492,71.676,59.607 +123493,63.572,63.154 +123494,65.69,62.015 +123495,67.958,60.856 +123496,70.404,59.674 +123497,62.228,63.139 +123498,64.369,62.027 +123499,66.66,60.895 +123500,69.13,59.742 +123501,60.886,63.123 +123502,63.048,62.039 +123503,65.362,60.935 +123504,67.854,59.81 +123505,59.545,63.105 +123506,61.729,62.05 +123507,64.063,60.975 +123508,66.576,59.88 +123509,58.206,63.088 +123510,60.409,62.061 +123511,62.764,61.016 +123512,65.295,59.95 +123513,56.868,63.069 +123514,59.091,62.072 +123515,61.463,61.056 +123516,64.013,60.022 +123517,55.532,63.049 +123518,57.773,62.082 +123519,60.163,61.097 +123520,62.729,60.094 +123521,54.197,63.029 +123522,56.455,62.092 +123523,58.861,61.139 +123524,61.443,60.166 +123525,52.865,63.008 +123526,55.138,62.102 +123527,57.559,61.18 +123528,60.155,60.24 +123529,51.534,62.986 +123530,53.821,62.112 +123531,56.256,61.222 +123532,58.865,60.314 +123533,50.204,62.964 +123534,52.506,62.121 +123535,54.953,61.263 +123536,57.572,60.389 +123537,48.877,62.94 +123538,51.19,62.13 +123539,53.649,61.305 +123540,56.278,60.464 +123541,47.551,62.917 +123542,49.876,62.139 +123543,52.344,61.348 +123544,54.982,60.54 +123545,46.226,62.892 +123546,48.561,62.148 +123547,51.038,61.39 +123548,53.683,60.617 +123549,44.904,62.867 +123550,47.248,62.157 +123551,49.732,61.433 +123552,52.383,60.694 +123553,43.583,62.842 +123554,45.935,62.165 +123555,48.426,61.475 +123556,51.08,60.771 +123557,42.264,62.816 +123558,44.622,62.173 +123559,47.118,61.518 +123560,49.775,60.849 +123561,40.947,62.789 +123562,43.311,62.181 +123563,45.81,61.561 +123564,48.469,60.928 +123565,39.631,62.762 +123566,41.999,62.189 +123567,44.501,61.604 +123568,47.16,61.007 +123569,38.318,62.734 +123570,40.689,62.197 +123571,43.192,61.648 +123572,45.849,61.086 +123573,37.006,62.706 +123574,39.379,62.204 +123575,41.881,61.691 +123576,44.536,61.166 +123577,35.696,62.678 +123578,38.069,62.211 +123579,40.57,61.734 +123580,43.221,61.246 +123581,34.387,62.649 +123582,36.761,62.219 +123583,39.259,61.778 +123584,41.904,61.326 +123585,33.081,62.62 +123586,35.452,62.226 +123587,37.947,61.822 +123588,40.585,61.407 +123589,31.776,62.591 +123590,34.145,62.233 +123591,36.634,61.866 +123592,39.264,61.488 +123593,30.473,62.561 +123594,32.838,62.24 +123595,35.32,61.909 +123596,37.941,61.569 +123597,29.172,62.531 +123598,31.531,62.246 +123599,34.006,61.953 +123600,36.616,61.65 +123601,27.872,62.501 +123602,30.225,62.253 +123603,32.691,61.997 +123604,35.289,61.732 +123605,26.575,62.471 +123606,28.92,62.26 +123607,31.376,62.041 +123608,33.96,61.813 +123609,25.279,62.44 +123610,27.615,62.266 +123611,30.06,62.085 +123612,32.629,61.895 +123613,23.984,62.41 +123614,26.311,62.273 +123615,28.743,62.129 +123616,31.296,61.977 +123617,22.692,62.379 +123618,25.008,62.279 +123619,27.425,62.173 +123620,29.962,62.059 +123621,21.402,62.348 +123622,23.705,62.286 +123623,26.107,62.217 +123624,28.625,62.14 +123625,20.113,62.317 +123626,22.402,62.292 +123627,24.788,62.261 +123628,27.287,62.222 +123629,18.826,62.286 +123630,21.1,62.299 +123631,23.469,62.305 +123632,25.946,62.304 +123633,17.54,62.255 +123634,19.799,62.305 +123635,22.149,62.349 +123636,24.604,62.385 +123637,16.257,62.225 +123638,18.499,62.312 +123639,20.828,62.393 +123640,23.26,62.467 +123641,14.975,62.194 +123642,17.198,62.318 +123643,19.507,62.437 +123644,21.914,62.548 +123645,13.695,62.163 +123646,15.899,62.325 +123647,18.185,62.48 +123648,20.567,62.629 +123649,12.416,62.133 +123650,14.6,62.331 +123651,16.863,62.524 +123652,19.218,62.71 +123653,11.14,62.102 +123654,13.301,62.338 +123655,15.54,62.568 +123656,17.867,62.791 +123657,9.8645,62.072 +123658,12.003,62.344 +123659,14.216,62.611 +123660,16.514,62.871 +123661,8.591,62.042 +123662,10.706,62.351 +123663,12.892,62.655 +123664,15.16,62.951 +123665,7.3193,62.012 +123666,9.4091,62.358 +123667,11.567,62.698 +123668,13.804,63.031 +123669,6.0492,61.983 +123670,8.1127,62.365 +123671,10.242,62.741 +123672,12.446,63.11 +123673,4.7807,61.954 +123674,6.8169,62.372 +123675,8.916,62.784 +123676,11.087,63.189 +123677,3.5137,61.925 +123678,5.5215,62.379 +123679,7.5895,62.827 +123680,9.7265,63.268 +123681,2.2484,61.897 +123682,4.2267,62.386 +123683,6.2625,62.87 +123684,8.3644,63.346 +123685,0.98465,61.869 +123686,2.9323,62.393 +123687,4.935,62.912 +123688,7.0008,63.424 +123689,359.72,61.841 +123690,1.6384,62.401 +123691,3.607,62.955 +123692,5.6357,63.501 +123693,358.46,61.814 +123694,0.34499,62.408 +123695,2.2785,62.997 +123696,4.2692,63.578 +123697,357.2,61.787 +123698,359.05,62.416 +123699,0.94944,63.039 +123700,2.9014,63.654 +123701,355.94,61.761 +123702,357.76,62.424 +123703,359.62,63.081 +123704,1.5322,63.729 +123705,354.69,61.735 +123706,356.47,62.432 +123707,358.29,63.122 +123708,0.16168,63.804 +123709,353.43,61.71 +123710,355.18,62.44 +123711,356.96,63.164 +123712,358.79,63.878 +123713,352.18,61.686 +123714,353.88,62.449 +123715,355.63,63.205 +123716,357.42,63.952 +123717,350.93,61.662 +123718,352.59,62.458 +123719,354.3,63.246 +123720,356.04,64.025 +123721,349.68,61.639 +123722,351.3,62.467 +123723,352.97,63.287 +123724,354.67,64.097 +123725,348.43,61.616 +123726,350.01,62.476 +123727,351.63,63.327 +123728,353.29,64.169 +123729,347.18,61.595 +123730,348.72,62.485 +123731,350.3,63.367 +123732,351.91,64.24 +123733,345.93,61.573 +123734,347.43,62.495 +123735,348.97,63.407 +123736,350.53,64.31 +123737,344.69,61.553 +123738,346.15,62.504 +123739,347.63,63.447 +123740,349.15,64.379 +123741,343.44,61.533 +123742,344.86,62.514 +123743,346.3,63.486 +123744,347.77,64.447 +123745,342.2,61.515 +123746,343.57,62.525 +123747,344.97,63.525 +123748,346.39,64.515 +123749,340.96,61.497 +123750,342.28,62.535 +123751,343.63,63.564 +123752,345.01,64.581 +123753,339.72,61.48 +123754,340.99,62.546 +123755,342.3,63.603 +123756,343.63,64.647 +123757,338.48,61.463 +123758,339.71,62.557 +123759,340.96,63.641 +123760,342.24,64.712 +123761,337.24,61.448 +123762,338.42,62.569 +123763,339.63,63.679 +123764,340.86,64.776 +123765,336,61.433 +123766,337.13,62.58 +123767,338.29,63.716 +123768,339.47,64.839 +123769,334.76,61.42 +123770,335.85,62.592 +123771,336.95,63.753 +123772,338.08,64.901 +123773,333.53,61.407 +123774,334.56,62.605 +123775,335.62,63.79 +123776,336.7,64.962 +123777,332.29,61.396 +123778,333.28,62.617 +123779,334.28,63.827 +123780,335.31,65.022 +123781,331.06,61.385 +123782,331.99,62.63 +123783,332.94,63.863 +123784,333.92,65.081 +123785,329.82,61.375 +123786,330.7,62.644 +123787,331.61,63.899 +123788,332.53,65.139 +123789,328.59,61.367 +123790,329.42,62.657 +123791,330.27,63.934 +123792,331.14,65.196 +123793,327.36,61.359 +123794,328.13,62.671 +123795,328.93,63.969 +123796,329.75,65.252 +123797,326.13,61.353 +123798,326.85,62.686 +123799,327.59,64.004 +123800,328.36,65.307 +123801,324.9,61.347 +123802,325.57,62.7 +123803,326.26,64.038 +123804,326.97,65.361 +123805,323.67,61.343 +123806,324.28,62.715 +123807,324.92,64.072 +123808,325.58,65.413 +123809,322.44,61.34 +123810,323,62.731 +123811,323.58,64.106 +123812,324.19,65.465 +123813,321.21,61.337 +123814,321.71,62.746 +123815,322.24,64.139 +123816,322.79,65.515 +123817,319.98,61.336 +123818,320.43,62.762 +123819,320.9,64.172 +123820,321.4,65.564 +123821,318.75,61.337 +123822,319.14,62.779 +123823,319.56,64.204 +123824,320.01,65.612 +123825,317.53,61.338 +123826,317.86,62.796 +123827,318.22,64.236 +123828,318.62,65.659 +123829,316.3,61.341 +123830,316.58,62.813 +123831,316.89,64.268 +123832,317.22,65.705 +123833,315.07,61.344 +123834,315.29,62.83 +123835,315.55,64.299 +123836,315.83,65.749 +123837,313.84,61.349 +123838,314.01,62.848 +123839,314.21,64.33 +123840,314.44,65.792 +123841,312.62,61.355 +123842,312.73,62.867 +123843,312.87,64.36 +123844,313.04,65.834 +123845,311.39,61.363 +123846,311.44,62.886 +123847,311.53,64.39 +123848,311.65,65.875 +123849,310.17,61.371 +123850,310.16,62.905 +123851,310.19,64.42 +123852,310.26,65.915 +123853,308.94,61.381 +123854,308.87,62.924 +123855,308.85,64.449 +123856,308.86,65.953 +123857,307.71,61.392 +123858,307.59,62.944 +123859,307.51,64.477 +123860,307.47,65.99 +123861,306.49,61.405 +123862,306.31,62.965 +123863,306.17,64.506 +123864,306.08,66.026 +123865,305.26,61.418 +123866,305.02,62.985 +123867,304.83,64.533 +123868,304.69,66.061 +123869,304.03,61.433 +123870,303.74,63.007 +123871,303.49,64.561 +123872,303.29,66.094 +123873,302.81,61.449 +123874,302.46,63.028 +123875,302.16,64.588 +123876,301.9,66.126 +123877,301.58,61.466 +123878,301.17,63.05 +123879,300.82,64.614 +123880,300.51,66.157 +123881,300.35,61.485 +123882,299.89,63.073 +123883,299.48,64.64 +123884,299.12,66.187 +123885,299.13,61.505 +123886,298.6,63.096 +123887,298.14,64.666 +123888,297.73,66.215 +123889,297.9,61.526 +123890,297.32,63.119 +123891,296.8,64.691 +123892,296.34,66.242 +123893,296.67,61.549 +123894,296.03,63.142 +123895,295.46,64.716 +123896,294.95,66.268 +123897,295.44,61.573 +123898,294.75,63.167 +123899,294.12,64.74 +123900,293.56,66.292 +123901,294.21,61.598 +123902,293.46,63.191 +123903,292.78,64.764 +123904,292.17,66.316 +123905,292.98,61.624 +123906,292.18,63.216 +123907,291.45,64.787 +123908,290.78,66.338 +123909,291.75,61.652 +123910,290.89,63.241 +123911,290.11,64.81 +123912,289.39,66.358 +123913,290.52,61.681 +123914,289.61,63.267 +123915,288.77,64.833 +123916,288,66.378 +123917,289.29,61.711 +123918,288.32,63.293 +123919,287.43,64.855 +123920,286.62,66.396 +123921,288.06,61.742 +123922,287.04,63.32 +123923,286.1,64.877 +123924,285.23,66.413 +123925,286.83,61.775 +123926,285.75,63.347 +123927,284.76,64.898 +123928,283.85,66.429 +123929,285.59,61.809 +123930,284.46,63.374 +123931,283.42,64.919 +123932,282.46,66.443 +123933,284.36,61.844 +123934,283.18,63.402 +123935,282.09,64.939 +123936,281.08,66.457 +123937,283.12,61.881 +123938,281.89,63.43 +123939,280.75,64.959 +123940,279.7,66.469 +123941,281.89,61.918 +123942,280.6,63.458 +123943,279.41,64.979 +123944,278.31,66.479 +123945,280.65,61.957 +123946,279.31,63.487 +123947,278.08,64.998 +123948,276.93,66.489 +123949,279.41,61.997 +123950,278.02,63.517 +123951,276.74,65.017 +123952,275.55,66.497 +123953,278.17,62.039 +123954,276.74,63.546 +123955,275.41,65.035 +123956,274.17,66.505 +123957,276.93,62.081 +123958,275.45,63.577 +123959,274.07,65.053 +123960,272.79,66.511 +123961,275.69,62.125 +123962,274.16,63.607 +123963,272.74,65.071 +123964,271.42,66.515 +123965,274.45,62.17 +123966,272.87,63.638 +123967,271.4,65.088 +123968,270.04,66.519 +123969,273.2,62.216 +123970,271.58,63.669 +123971,270.07,65.105 +123972,268.66,66.522 +123973,271.96,62.263 +123974,270.29,63.701 +123975,268.74,65.121 +123976,267.29,66.523 +123977,270.71,62.312 +123978,269,63.733 +123979,267.4,65.137 +123980,265.92,66.523 +123981,269.46,62.361 +123982,267.7,63.765 +123983,266.07,65.152 +123984,264.55,66.522 +123985,268.21,62.412 +123986,266.41,63.798 +123987,264.74,65.168 +123988,263.17,66.52 +123989,266.96,62.463 +123990,265.12,63.831 +123991,263.41,65.182 +123992,261.8,66.517 +123993,265.71,62.516 +123994,263.83,63.864 +123995,262.07,65.197 +123996,260.44,66.513 +123997,264.46,62.57 +123998,262.53,63.898 +123999,260.74,65.211 +124000,259.07,66.508 +124001,263.2,62.625 +124002,261.24,63.932 +124003,259.41,65.225 +124004,257.7,66.501 +124005,261.94,62.681 +124006,259.95,63.967 +124007,258.08,65.238 +124008,256.34,66.494 +124009,260.69,62.737 +124010,258.65,64.001 +124011,256.75,65.251 +124012,254.98,66.486 +124013,259.43,62.795 +124014,257.35,64.036 +124015,255.42,65.264 +124016,253.61,66.476 +124017,258.16,62.854 +124018,256.06,64.072 +124019,254.09,65.276 +124020,252.25,66.466 +124021,256.9,62.914 +124022,254.76,64.107 +124023,252.77,65.288 +124024,250.89,66.455 +124025,255.64,62.975 +124026,253.47,64.143 +124027,251.44,65.3 +124028,249.54,66.443 +124029,254.37,63.036 +124030,252.17,64.18 +124031,250.11,65.311 +124032,248.18,66.43 +124033,253.1,63.099 +124034,250.87,64.216 +124035,248.78,65.322 +124036,246.82,66.416 +124037,251.83,63.162 +124038,249.57,64.253 +124039,247.46,65.333 +124040,245.47,66.401 +124041,250.56,63.226 +124042,248.27,64.29 +124043,246.13,65.343 +124044,244.12,66.385 +124045,249.28,63.291 +124046,246.97,64.327 +124047,244.81,65.353 +124048,242.77,66.368 +124049,248.01,63.357 +124050,245.67,64.365 +124051,243.48,65.363 +124052,241.42,66.351 +124053,246.73,63.424 +124054,244.37,64.403 +124055,242.16,65.373 +124056,240.07,66.333 +124057,245.45,63.491 +124058,243.07,64.441 +124059,240.83,65.382 +124060,238.73,66.314 +124061,244.17,63.559 +124062,241.77,64.479 +124063,239.51,65.391 +124064,237.38,66.294 +124065,242.89,63.628 +124066,240.46,64.518 +124067,238.19,65.4 +124068,236.04,66.274 +124069,241.6,63.697 +124070,239.16,64.557 +124071,236.86,65.409 +124072,234.7,66.252 +124073,240.32,63.767 +124074,237.85,64.596 +124075,235.54,65.417 +124076,233.36,66.231 +124077,239.03,63.838 +124078,236.55,64.635 +124079,234.22,65.425 +124080,232.02,66.208 +124081,237.74,63.909 +124082,235.24,64.674 +124083,232.9,65.433 +124084,230.69,66.185 +124085,236.44,63.981 +124086,233.94,64.714 +124087,231.58,65.441 +124088,229.35,66.161 +124089,235.15,64.053 +124090,232.63,64.754 +124091,230.26,65.448 +124092,228.02,66.137 +124093,233.85,64.126 +124094,231.32,64.793 +124095,228.94,65.456 +124096,226.69,66.112 +124097,232.56,64.199 +124098,230.02,64.833 +124099,227.62,65.463 +124100,225.36,66.087 +124101,231.25,64.273 +124102,228.71,64.874 +124103,226.31,65.47 +124104,224.03,66.061 +124105,229.95,64.347 +124106,227.4,64.914 +124107,224.99,65.476 +124108,222.7,66.034 +124109,228.65,64.421 +124110,226.09,64.954 +124111,223.67,65.483 +124112,221.38,66.008 +124113,227.34,64.496 +124114,224.78,64.995 +124115,222.36,65.49 +124116,220.06,65.98 +124117,226.03,64.572 +124118,223.47,65.036 +124119,221.04,65.496 +124120,218.74,65.953 +124121,224.72,64.647 +124122,222.16,65.076 +124123,219.73,65.502 +124124,217.42,65.925 +124125,223.41,64.723 +124126,220.84,65.117 +124127,218.41,65.508 +124128,216.1,65.896 +124129,222.1,64.799 +124130,219.53,65.158 +124131,217.1,65.514 +124132,214.79,65.868 +124133,220.78,64.876 +124134,218.22,65.199 +124135,215.79,65.52 +124136,213.47,65.839 +124137,219.46,64.952 +124138,216.9,65.24 +124139,214.47,65.526 +124140,212.16,65.809 +124141,218.14,65.029 +124142,215.59,65.282 +124143,213.16,65.532 +124144,210.85,65.78 +124145,216.82,65.106 +124146,214.27,65.323 +124147,211.85,65.537 +124148,209.54,65.75 +124149,215.49,65.183 +124150,212.95,65.364 +124151,210.54,65.543 +124152,208.23,65.72 +124153,214.17,65.26 +124154,211.64,65.405 +124155,209.23,65.548 +124156,206.93,65.69 +124157,212.84,65.337 +124158,210.32,65.446 +124159,207.92,65.554 +124160,205.62,65.66 +124161,211.51,65.414 +124162,209,65.488 +124163,206.61,65.559 +124164,204.32,65.63 +124165,210.18,65.491 +124166,207.68,65.529 +124167,205.3,65.565 +124168,203.02,65.6 +124169,208.84,65.569 +124170,206.36,65.57 +124171,204,65.57 +124172,201.73,65.569 +124173,207.51,65.646 +124174,205.04,65.611 +124175,202.69,65.576 +124176,200.43,65.539 +124177,206.17,65.723 +124178,203.72,65.653 +124179,201.38,65.581 +124180,199.13,65.509 +124181,204.83,65.799 +124182,202.4,65.694 +124183,200.08,65.587 +124184,197.84,65.479 +124185,203.49,65.876 +124186,201.08,65.735 +124187,198.77,65.592 +124188,196.55,65.449 +124189,202.15,65.953 +124190,199.76,65.776 +124191,197.46,65.597 +124192,195.26,65.419 +124193,200.8,66.029 +124194,198.43,65.817 +124195,196.16,65.603 +124196,193.97,65.389 +124197,199.46,66.105 +124198,197.11,65.858 +124199,194.86,65.609 +124200,192.69,65.359 +124201,198.11,66.181 +124202,195.78,65.898 +124203,193.55,65.614 +124204,191.4,65.329 +124205,196.76,66.256 +124206,194.46,65.939 +124207,192.25,65.62 +124208,190.12,65.3 +124209,195.41,66.332 +124210,193.13,65.98 +124211,190.95,65.626 +124212,188.84,65.271 +124213,194.05,66.407 +124214,191.81,66.02 +124215,189.65,65.632 +124216,187.56,65.242 +124217,192.7,66.481 +124218,190.48,66.061 +124219,188.35,65.638 +124220,186.28,65.214 +124221,191.34,66.555 +124222,189.15,66.101 +124223,187.04,65.644 +124224,185,65.186 +124225,189.99,66.629 +124226,187.83,66.141 +124227,185.74,65.65 +124228,183.73,65.158 +124229,188.63,66.702 +124230,186.5,66.181 +124231,184.44,65.656 +124232,182.46,65.131 +124233,187.26,66.775 +124234,185.17,66.22 +124235,183.15,65.663 +124236,181.18,65.104 +124237,185.9,66.847 +124238,183.84,66.26 +124239,181.85,65.67 +124240,179.91,65.077 +124241,184.54,66.919 +124242,182.51,66.299 +124243,180.55,65.676 +124244,178.65,65.051 +124245,183.17,66.99 +124246,181.18,66.338 +124247,179.25,65.683 +124248,177.38,65.026 +124249,181.81,67.061 +124250,179.85,66.377 +124251,177.95,65.69 +124252,176.11,65.001 +124253,180.44,67.131 +124254,178.52,66.416 +124255,176.66,65.698 +124256,174.85,64.976 +124257,179.07,67.2 +124258,177.19,66.455 +124259,175.36,65.705 +124260,173.59,64.953 +124261,177.7,67.269 +124262,175.85,66.493 +124263,174.07,65.713 +124264,172.32,64.929 +124265,176.32,67.337 +124266,174.52,66.531 +124267,172.77,65.721 +124268,171.06,64.907 +124269,174.95,67.404 +124270,173.19,66.569 +124271,171.47,65.729 +124272,169.81,64.885 +124273,173.58,67.471 +124274,171.85,66.607 +124275,170.18,65.737 +124276,168.55,64.864 +124277,172.2,67.536 +124278,170.52,66.644 +124279,168.89,65.746 +124280,167.29,64.843 +124281,170.82,67.602 +124282,169.19,66.681 +124283,167.59,65.755 +124284,166.04,64.823 +124285,169.44,67.666 +124286,167.85,66.718 +124287,166.3,65.764 +124288,164.78,64.804 +124289,168.07,67.729 +124290,166.52,66.755 +124291,165.01,65.773 +124292,163.53,64.786 +124293,166.69,67.792 +124294,165.18,66.791 +124295,163.71,65.783 +124296,162.28,64.768 +124297,165.3,67.854 +124298,163.84,66.827 +124299,162.42,65.792 +124300,161.03,64.752 +124301,163.92,67.915 +124302,162.51,66.863 +124303,161.13,65.803 +124304,159.78,64.736 +124305,162.54,67.975 +124306,161.17,66.898 +124307,159.84,65.813 +124308,158.53,64.721 +124309,161.15,68.034 +124310,159.83,66.933 +124311,158.55,65.824 +124312,157.29,64.707 +124313,159.77,68.092 +124314,158.5,66.968 +124315,157.25,65.835 +124316,156.04,64.694 +124317,158.38,68.15 +124318,157.16,67.002 +124319,155.96,65.846 +124320,154.8,64.682 +124321,157,68.206 +124322,155.82,67.037 +124323,154.67,65.857 +124324,153.55,64.67 +124325,155.61,68.261 +124326,154.48,67.07 +124327,153.38,65.869 +124328,152.31,64.66 +124329,154.22,68.316 +124330,153.14,67.104 +124331,152.09,65.882 +124332,151.07,64.651 +124333,152.83,68.369 +124334,151.8,67.137 +124335,150.8,65.894 +124336,149.83,64.642 +124337,151.44,68.421 +124338,150.47,67.17 +124339,149.51,65.907 +124340,148.59,64.635 +124341,150.05,68.472 +124342,149.13,67.202 +124343,148.23,65.92 +124344,147.35,64.629 +124345,148.66,68.523 +124346,147.79,67.234 +124347,146.94,65.934 +124348,146.11,64.623 +124349,147.27,68.572 +124350,146.45,67.266 +124351,145.65,65.948 +124352,144.87,64.619 +124353,145.88,68.62 +124354,145.11,67.297 +124355,144.36,65.962 +124356,143.64,64.616 +124357,144.49,68.667 +124358,143.77,67.328 +124359,143.07,65.977 +124360,142.4,64.614 +124361,143.1,68.713 +124362,142.43,67.359 +124363,141.78,65.991 +124364,141.16,64.613 +124365,141.71,68.758 +124366,141.09,67.389 +124367,140.49,66.007 +124368,139.93,64.613 +124369,140.31,68.801 +124370,139.75,67.419 +124371,139.21,66.023 +124372,138.69,64.615 +124373,138.92,68.844 +124374,138.41,67.448 +124375,137.92,66.039 +124376,137.46,64.617 +124377,137.53,68.885 +124378,137.06,67.477 +124379,136.63,66.055 +124380,136.23,64.621 +124381,136.13,68.925 +124382,135.72,67.506 +124383,135.34,66.072 +124384,134.99,64.626 +124385,134.74,68.964 +124386,134.38,67.534 +124387,134.06,66.089 +124388,133.76,64.632 +124389,133.34,69.002 +124390,133.04,67.562 +124391,132.77,66.107 +124392,132.53,64.639 +124393,131.95,69.039 +124394,131.7,67.589 +124395,131.48,66.125 +124396,131.29,64.647 +124397,130.56,69.074 +124398,130.36,67.616 +124399,130.19,66.143 +124400,130.06,64.657 +124401,129.16,69.109 +124402,129.02,67.643 +124403,128.91,66.162 +124404,128.83,64.667 +124405,127.77,69.142 +124406,127.68,67.669 +124407,127.62,66.181 +124408,127.6,64.679 +124409,126.37,69.174 +124410,126.33,67.695 +124411,126.33,66.2 +124412,126.36,64.693 +124413,124.98,69.204 +124414,124.99,67.72 +124415,125.04,66.22 +124416,125.13,64.707 +124417,123.59,69.234 +124418,123.65,67.745 +124419,123.76,66.241 +124420,123.9,64.723 +124421,122.19,69.262 +124422,122.31,67.769 +124423,122.47,66.261 +124424,122.67,64.739 +124425,120.8,69.289 +124426,120.97,67.794 +124427,121.18,66.283 +124428,121.44,64.758 +124429,119.41,69.315 +124430,119.63,67.817 +124431,119.89,66.304 +124432,120.2,64.777 +124433,118.01,69.34 +124434,118.29,67.841 +124435,118.61,66.326 +124436,118.97,64.798 +124437,116.62,69.363 +124438,116.95,67.863 +124439,117.32,66.348 +124440,117.74,64.819 +124441,115.23,69.386 +124442,115.61,67.886 +124443,116.03,66.371 +124444,116.5,64.842 +124445,113.84,69.407 +124446,114.26,67.908 +124447,114.74,66.394 +124448,115.27,64.867 +124449,112.44,69.426 +124450,112.92,67.93 +124451,113.45,66.418 +124452,114.04,64.892 +124453,111.05,69.445 +124454,111.58,67.951 +124455,112.17,66.442 +124456,112.8,64.919 +124457,109.66,69.462 +124458,110.24,67.972 +124459,110.88,66.466 +124460,111.57,64.947 +124461,108.27,69.478 +124462,108.9,67.992 +124463,109.59,66.491 +124464,110.33,64.976 +124465,106.88,69.493 +124466,107.56,68.012 +124467,108.3,66.516 +124468,109.1,65.007 +124469,105.49,69.507 +124470,106.22,68.032 +124471,107.01,66.542 +124472,107.86,65.038 +124473,104.11,69.52 +124474,104.88,68.051 +124475,105.72,66.568 +124476,106.63,65.071 +124477,102.72,69.531 +124478,103.54,68.07 +124479,104.43,66.594 +124480,105.39,65.105 +124481,101.33,69.541 +124482,102.2,68.088 +124483,103.14,66.621 +124484,104.15,65.141 +124485,99.946,69.55 +124486,100.87,68.106 +124487,101.85,66.648 +124488,102.91,65.177 +124489,98.561,69.558 +124490,99.527,68.123 +124491,100.56,66.675 +124492,101.67,65.215 +124493,97.177,69.565 +124494,98.188,68.141 +124495,99.27,66.703 +124496,100.43,65.254 +124497,95.793,69.57 +124498,96.85,68.157 +124499,97.979,66.731 +124500,99.189,65.294 +124501,94.41,69.575 +124502,95.512,68.174 +124503,96.688,66.76 +124504,97.946,65.335 +124505,93.028,69.578 +124506,94.174,68.19 +124507,95.396,66.789 +124508,96.703,65.377 +124509,91.647,69.58 +124510,92.837,68.205 +124511,94.104,66.818 +124512,95.459,65.421 +124513,90.267,69.581 +124514,91.5,68.221 +124515,92.812,66.848 +124516,94.213,65.465 +124517,88.888,69.581 +124518,90.163,68.235 +124519,91.519,66.878 +124520,92.967,65.511 +124521,87.511,69.58 +124522,88.826,68.25 +124523,90.226,66.909 +124524,91.719,65.558 +124525,86.134,69.578 +124526,87.49,68.264 +124527,88.933,66.94 +124528,90.471,65.606 +124529,84.758,69.575 +124530,86.155,68.278 +124531,87.639,66.971 +124532,89.221,65.655 +124533,83.383,69.57 +124534,84.819,68.291 +124535,86.345,67.002 +124536,87.97,65.705 +124537,82.009,69.565 +124538,83.484,68.304 +124539,85.05,67.034 +124540,86.717,65.756 +124541,80.637,69.558 +124542,82.15,68.317 +124543,83.755,67.066 +124544,85.464,65.808 +124545,79.265,69.551 +124546,80.815,68.329 +124547,82.459,67.099 +124548,84.209,65.861 +124549,77.895,69.543 +124550,79.481,68.341 +124551,81.163,67.132 +124552,82.952,65.915 +124553,76.526,69.533 +124554,78.148,68.353 +124555,79.867,67.165 +124556,81.695,65.97 +124557,75.159,69.523 +124558,76.815,68.364 +124559,78.57,67.198 +124560,80.436,66.026 +124561,73.792,69.512 +124562,75.483,68.375 +124563,77.272,67.232 +124564,79.175,66.083 +124565,72.427,69.5 +124566,74.15,68.386 +124567,75.975,67.266 +124568,77.913,66.14 +124569,71.063,69.487 +124570,72.819,68.397 +124571,74.676,67.3 +124572,76.649,66.199 +124573,69.701,69.473 +124574,71.487,68.407 +124575,73.377,67.335 +124576,75.384,66.259 +124577,68.34,69.458 +124578,70.157,68.417 +124579,72.078,67.37 +124580,74.117,66.319 +124581,66.98,69.442 +124582,68.826,68.426 +124583,70.778,67.405 +124584,72.849,66.38 +124585,65.622,69.426 +124586,67.497,68.435 +124587,69.478,67.44 +124588,71.579,66.442 +124589,64.265,69.409 +124590,66.167,68.444 +124591,68.177,67.476 +124592,70.308,66.505 +124593,62.91,69.391 +124594,64.838,68.453 +124595,66.875,67.512 +124596,69.035,66.568 +124597,61.556,69.372 +124598,63.51,68.462 +124599,65.573,67.548 +124600,67.76,66.633 +124601,60.204,69.353 +124602,62.182,68.47 +124603,64.27,67.585 +124604,66.483,66.698 +124605,58.853,69.332 +124606,60.855,68.478 +124607,62.967,67.621 +124608,65.205,66.763 +124609,57.503,69.311 +124610,59.528,68.486 +124611,61.663,67.658 +124612,63.925,66.83 +124613,56.155,69.29 +124614,58.202,68.493 +124615,60.359,67.695 +124616,62.643,66.897 +124617,54.809,69.268 +124618,56.876,68.501 +124619,59.054,67.732 +124620,61.359,66.964 +124621,53.464,69.245 +124622,55.551,68.508 +124623,57.749,67.77 +124624,60.074,67.033 +124625,52.121,69.221 +124626,54.226,68.515 +124627,56.442,67.807 +124628,58.787,67.101 +124629,50.779,69.197 +124630,52.902,68.521 +124631,55.136,67.845 +124632,57.498,67.171 +124633,49.439,69.173 +124634,51.578,68.528 +124635,53.828,67.883 +124636,56.207,67.24 +124637,48.101,69.148 +124638,50.255,68.534 +124639,52.521,67.921 +124640,54.914,67.311 +124641,46.764,69.122 +124642,48.933,68.54 +124643,51.212,67.96 +124644,53.619,67.381 +124645,45.429,69.096 +124646,47.611,68.546 +124647,49.903,67.998 +124648,52.323,67.453 +124649,44.096,69.069 +124650,46.289,68.552 +124651,48.593,68.037 +124652,51.025,67.524 +124653,42.764,69.042 +124654,44.968,68.558 +124655,47.283,68.075 +124656,49.724,67.596 +124657,41.434,69.015 +124658,43.648,68.563 +124659,45.972,68.114 +124660,48.422,67.668 +124661,40.105,68.987 +124662,42.328,68.569 +124663,44.66,68.153 +124664,47.118,67.741 +124665,38.778,68.959 +124666,41.009,68.574 +124667,43.348,68.192 +124668,45.812,67.814 +124669,37.453,68.931 +124670,39.69,68.58 +124671,42.035,68.231 +124672,44.504,67.887 +124673,36.13,68.902 +124674,38.372,68.585 +124675,40.722,68.271 +124676,43.195,67.961 +124677,34.808,68.873 +124678,37.055,68.59 +124679,39.408,68.31 +124680,41.883,68.034 +124681,33.488,68.844 +124682,35.738,68.595 +124683,38.093,68.349 +124684,40.569,68.108 +124685,32.17,68.815 +124686,34.422,68.6 +124687,36.778,68.389 +124688,39.254,68.182 +124689,30.853,68.785 +124690,33.106,68.604 +124691,35.462,68.428 +124692,37.937,68.256 +124693,29.538,68.755 +124694,31.791,68.609 +124695,34.145,68.467 +124696,36.617,68.33 +124697,28.225,68.726 +124698,30.476,68.614 +124699,32.828,68.507 +124700,35.296,68.405 +124701,26.914,68.696 +124702,29.162,68.619 +124703,31.51,68.546 +124704,33.973,68.479 +124705,25.604,68.666 +124706,27.849,68.623 +124707,30.192,68.586 +124708,32.648,68.553 +124709,24.296,68.636 +124710,26.536,68.628 +124711,28.873,68.625 +124712,31.321,68.628 +124713,22.989,68.605 +124714,25.224,68.633 +124715,27.553,68.665 +124716,29.993,68.702 +124717,21.685,68.575 +124718,23.912,68.637 +124719,26.233,68.704 +124720,28.662,68.776 +124721,20.382,68.545 +124722,22.601,68.642 +124723,24.912,68.744 +124724,27.33,68.85 +124725,19.08,68.515 +124726,21.29,68.647 +124727,23.59,68.783 +124728,25.996,68.924 +124729,17.781,68.486 +124730,19.98,68.652 +124731,22.268,68.823 +124732,24.66,68.998 +124733,16.483,68.456 +124734,18.671,68.656 +124735,20.946,68.862 +124736,23.322,69.072 +124737,15.187,68.426 +124738,17.362,68.661 +124739,19.622,68.901 +124740,21.982,69.145 +124741,13.892,68.397 +124742,16.053,68.666 +124743,18.298,68.94 +124744,20.641,69.219 +124745,12.599,68.368 +124746,14.745,68.671 +124747,16.974,68.979 +124748,19.298,69.292 +124749,11.308,68.339 +124750,13.438,68.676 +124751,15.649,69.018 +124752,17.953,69.364 +124753,10.018,68.31 +124754,12.131,68.681 +124755,14.323,69.057 +124756,16.606,69.437 +124757,8.73,68.282 +124758,10.825,68.687 +124759,12.997,69.096 +124760,15.258,69.509 +124761,7.4436,68.254 +124762,9.5194,68.692 +124763,11.67,69.134 +124764,13.908,69.58 +124765,6.1587,68.226 +124766,8.2142,68.698 +124767,10.343,69.173 +124768,12.556,69.652 +124769,4.8755,68.199 +124770,6.9096,68.703 +124771,9.015,69.211 +124772,11.203,69.723 +124773,3.5938,68.172 +124774,5.6054,68.709 +124775,7.6866,69.249 +124776,9.8484,69.793 +124777,2.3137,68.145 +124778,4.3018,68.715 +124779,6.3576,69.288 +124780,8.492,69.863 +124781,1.0351,68.119 +124782,2.9987,68.721 +124783,5.0281,69.325 +124784,7.134,69.932 +124785,359.76,68.094 +124786,1.696,68.727 +124787,3.6981,69.363 +124788,5.7744,70.001 +124789,358.48,68.069 +124790,0.39385,68.733 +124791,2.3675,69.401 +124792,4.4134,70.07 +124793,357.21,68.044 +124794,359.09,68.74 +124795,1.0365,69.438 +124796,3.0509,70.137 +124797,355.94,68.02 +124798,357.79,68.747 +124799,359.7,69.475 +124800,1.6869,70.205 +124801,354.66,67.997 +124802,356.49,68.754 +124803,358.37,69.512 +124804,0.32145,70.271 +124805,353.39,67.974 +124806,355.19,68.761 +124807,357.04,69.549 +124808,358.95,70.337 +124809,352.13,67.952 +124810,353.89,68.768 +124811,355.71,69.585 +124812,357.59,70.402 +124813,350.86,67.931 +124814,352.59,68.776 +124815,354.37,69.621 +124816,356.22,70.467 +124817,349.59,67.91 +124818,351.29,68.783 +124819,353.04,69.657 +124820,354.85,70.531 +124821,348.33,67.89 +124822,349.99,68.791 +124823,351.71,69.693 +124824,353.47,70.594 +124825,347.07,67.87 +124826,348.7,68.8 +124827,350.37,69.729 +124828,352.1,70.656 +124829,345.81,67.852 +124830,347.4,68.808 +124831,349.04,69.764 +124832,350.73,70.718 +124833,344.54,67.834 +124834,346.1,68.817 +124835,347.7,69.799 +124836,349.35,70.779 +124837,343.29,67.817 +124838,344.8,68.826 +124839,346.36,69.834 +124840,347.97,70.839 +124841,342.03,67.801 +124842,343.51,68.835 +124843,345.03,69.868 +124844,346.6,70.898 +124845,340.77,67.785 +124846,342.21,68.845 +124847,343.69,69.902 +124848,345.22,70.957 +124849,339.52,67.771 +124850,340.91,68.855 +124851,342.35,69.936 +124852,343.84,71.014 +124853,338.26,67.757 +124854,339.62,68.865 +124855,341.02,69.97 +124856,342.46,71.071 +124857,337.01,67.744 +124858,338.32,68.875 +124859,339.68,70.003 +124860,341.07,71.126 +124861,335.75,67.733 +124862,337.03,68.886 +124863,338.34,70.036 +124864,339.69,71.181 +124865,334.5,67.722 +124866,335.73,68.897 +124867,337,70.068 +124868,338.31,71.235 +124869,333.25,67.712 +124870,334.44,68.908 +124871,335.66,70.101 +124872,336.92,71.288 +124873,332,67.703 +124874,333.15,68.92 +124875,334.32,70.133 +124876,335.54,71.34 +124877,330.76,67.695 +124878,331.85,68.932 +124879,332.98,70.164 +124880,334.15,71.391 +124881,329.51,67.688 +124882,330.56,68.944 +124883,331.64,70.196 +124884,332.76,71.441 +124885,328.26,67.682 +124886,329.27,68.957 +124887,330.3,70.227 +124888,331.37,71.489 +124889,327.02,67.677 +124890,327.97,68.97 +124891,328.96,70.257 +124892,329.99,71.537 +124893,325.77,67.673 +124894,326.68,68.983 +124895,327.62,70.288 +124896,328.6,71.584 +124897,324.53,67.67 +124898,325.39,68.997 +124899,326.28,70.317 +124900,327.21,71.63 +124901,323.28,67.669 +124902,324.1,69.011 +124903,324.94,70.347 +124904,325.82,71.675 +124905,322.04,67.668 +124906,322.8,69.026 +124907,323.6,70.376 +124908,324.42,71.718 +124909,320.8,67.669 +124910,321.51,69.04 +124911,322.26,70.405 +124912,323.03,71.761 +124913,319.55,67.67 +124914,320.22,69.056 +124915,320.92,70.433 +124916,321.64,71.802 +124917,318.31,67.673 +124918,318.93,69.071 +124919,319.57,70.461 +124920,320.25,71.843 +124921,317.07,67.677 +124922,317.64,69.087 +124923,318.23,70.489 +124924,318.86,71.882 +124925,315.83,67.682 +124926,316.35,69.103 +124927,316.89,70.516 +124928,317.46,71.92 +124929,314.59,67.688 +124930,315.06,69.12 +124931,315.55,70.543 +124932,316.07,71.957 +124933,313.35,67.696 +124934,313.77,69.137 +124935,314.21,70.57 +124936,314.68,71.993 +124937,312.12,67.704 +124938,312.47,69.155 +124939,312.86,70.596 +124940,313.28,72.027 +124941,310.88,67.714 +124942,311.18,69.172 +124943,311.52,70.622 +124944,311.89,72.061 +124945,309.64,67.725 +124946,309.89,69.191 +124947,310.18,70.647 +124948,310.49,72.093 +124949,308.4,67.737 +124950,308.6,69.209 +124951,308.84,70.672 +124952,309.1,72.124 +124953,307.16,67.75 +124954,307.31,69.228 +124955,307.49,70.697 +124956,307.7,72.154 +124957,305.92,67.765 +124958,306.02,69.248 +124959,306.15,70.721 +124960,306.31,72.183 +124961,304.69,67.781 +124962,304.73,69.267 +124963,304.81,70.745 +124964,304.92,72.211 +124965,303.45,67.798 +124966,303.44,69.288 +124967,303.46,70.768 +124968,303.52,72.237 +124969,302.21,67.816 +124970,302.15,69.308 +124971,302.12,70.791 +124972,302.13,72.263 +124973,300.97,67.835 +124974,300.86,69.329 +124975,300.78,70.813 +124976,300.73,72.287 +124977,299.74,67.856 +124978,299.57,69.351 +124979,299.44,70.836 +124980,299.34,72.31 +124981,298.5,67.878 +124982,298.28,69.372 +124983,298.09,70.857 +124984,297.95,72.331 +124985,297.26,67.901 +124986,296.99,69.395 +124987,296.75,70.879 +124988,296.55,72.352 +124989,296.02,67.925 +124990,295.7,69.417 +124991,295.41,70.9 +124992,295.16,72.371 +124993,294.79,67.951 +124994,294.4,69.44 +124995,294.06,70.92 +124996,293.77,72.39 +124997,293.55,67.977 +124998,293.11,69.464 +124999,292.72,70.94 +125000,292.37,72.407 +125001,292.31,68.005 +125002,291.82,69.487 +125003,291.38,70.96 +125004,290.98,72.422 +125005,291.07,68.034 +125006,290.53,69.512 +125007,290.04,70.98 +125008,289.59,72.437 +125009,289.83,68.065 +125010,289.24,69.536 +125011,288.7,70.999 +125012,288.2,72.451 +125013,288.59,68.096 +125014,287.95,69.561 +125015,287.35,71.017 +125016,286.81,72.463 +125017,287.35,68.129 +125018,286.66,69.586 +125019,286.01,71.035 +125020,285.41,72.474 +125021,286.11,68.163 +125022,285.36,69.612 +125023,284.67,71.053 +125024,284.02,72.484 +125025,284.87,68.198 +125026,284.07,69.638 +125027,283.33,71.07 +125028,282.64,72.493 +125029,283.63,68.234 +125030,282.78,69.665 +125031,281.99,71.087 +125032,281.25,72.501 +125033,282.39,68.272 +125034,281.49,69.692 +125035,280.65,71.104 +125036,279.86,72.507 +125037,281.14,68.311 +125038,280.19,69.719 +125039,279.31,71.12 +125040,278.47,72.513 +125041,279.9,68.35 +125042,278.9,69.747 +125043,277.96,71.136 +125044,277.08,72.517 +125045,278.65,68.391 +125046,277.61,69.775 +125047,276.62,71.152 +125048,275.7,72.52 +125049,277.41,68.433 +125050,276.31,69.803 +125051,275.28,71.167 +125052,274.31,72.523 +125053,276.16,68.476 +125054,275.02,69.832 +125055,273.94,71.182 +125056,272.93,72.524 +125057,274.91,68.521 +125058,273.73,69.861 +125059,272.6,71.196 +125060,271.54,72.524 +125061,273.67,68.566 +125062,272.43,69.891 +125063,271.26,71.21 +125064,270.16,72.522 +125065,272.42,68.612 +125066,271.14,69.921 +125067,269.93,71.224 +125068,268.78,72.52 +125069,271.17,68.66 +125070,269.84,69.951 +125071,268.59,71.237 +125072,267.4,72.517 +125073,269.92,68.708 +125074,268.55,69.981 +125075,267.25,71.25 +125076,266.02,72.513 +125077,268.67,68.758 +125078,267.25,70.012 +125079,265.91,71.263 +125080,264.64,72.508 +125081,267.41,68.809 +125082,265.95,70.043 +125083,264.57,71.275 +125084,263.26,72.502 +125085,266.16,68.86 +125086,264.66,70.075 +125087,263.23,71.287 +125088,261.89,72.494 +125089,264.9,68.913 +125090,263.36,70.107 +125091,261.9,71.299 +125092,260.51,72.486 +125093,263.65,68.966 +125094,262.06,70.139 +125095,260.56,71.31 +125096,259.14,72.477 +125097,262.39,69.021 +125098,260.76,70.172 +125099,259.22,71.321 +125100,257.76,72.467 +125101,261.13,69.076 +125102,259.47,70.204 +125103,257.89,71.332 +125104,256.39,72.456 +125105,259.87,69.133 +125106,258.17,70.238 +125107,256.55,71.342 +125108,255.02,72.444 +125109,258.61,69.19 +125110,256.87,70.271 +125111,255.22,71.352 +125112,253.65,72.431 +125113,257.35,69.248 +125114,255.57,70.305 +125115,253.88,71.362 +125116,252.28,72.418 +125117,256.08,69.307 +125118,254.27,70.339 +125119,252.55,71.371 +125120,250.91,72.403 +125121,254.82,69.367 +125122,252.97,70.373 +125123,251.21,71.381 +125124,249.55,72.388 +125125,253.55,69.427 +125126,251.67,70.408 +125127,249.88,71.39 +125128,248.18,72.372 +125129,252.28,69.489 +125130,250.36,70.442 +125131,248.55,71.398 +125132,246.82,72.355 +125133,251.01,69.551 +125134,249.06,70.477 +125135,247.21,71.407 +125136,245.45,72.337 +125137,249.74,69.614 +125138,247.76,70.513 +125139,245.88,71.415 +125140,244.09,72.318 +125141,248.47,69.677 +125142,246.46,70.548 +125143,244.55,71.423 +125144,242.73,72.299 +125145,247.19,69.741 +125146,245.15,70.584 +125147,243.22,71.431 +125148,241.38,72.279 +125149,245.91,69.806 +125150,243.85,70.62 +125151,241.89,71.438 +125152,240.02,72.259 +125153,244.64,69.872 +125154,242.55,70.656 +125155,240.56,71.445 +125156,238.66,72.238 +125157,243.36,69.938 +125158,241.24,70.693 +125159,239.23,71.452 +125160,237.31,72.216 +125161,242.08,70.005 +125162,239.93,70.729 +125163,237.9,71.459 +125164,235.96,72.193 +125165,240.79,70.072 +125166,238.63,70.766 +125167,236.57,71.466 +125168,234.61,72.17 +125169,239.51,70.14 +125170,237.32,70.803 +125171,235.24,71.472 +125172,233.26,72.146 +125173,238.22,70.209 +125174,236.01,70.84 +125175,233.91,71.479 +125176,231.91,72.122 +125177,236.93,70.278 +125178,234.71,70.878 +125179,232.59,71.485 +125180,230.56,72.097 +125181,235.65,70.347 +125182,233.4,70.915 +125183,231.26,71.491 +125184,229.22,72.072 +125185,234.35,70.417 +125186,232.09,70.953 +125187,229.93,71.497 +125188,227.87,72.046 +125189,233.06,70.488 +125190,230.78,70.991 +125191,228.61,71.502 +125192,226.53,72.02 +125193,231.77,70.558 +125194,229.47,71.029 +125195,227.28,71.508 +125196,225.19,71.994 +125197,230.47,70.629 +125198,228.16,71.067 +125199,225.96,71.513 +125200,223.85,71.967 +125201,229.17,70.701 +125202,226.85,71.105 +125203,224.63,71.518 +125204,222.52,71.939 +125205,227.87,70.773 +125206,225.54,71.143 +125207,223.31,71.523 +125208,221.18,71.911 +125209,226.57,70.845 +125210,224.22,71.182 +125211,221.99,71.528 +125212,219.85,71.883 +125213,225.27,70.917 +125214,222.91,71.22 +125215,220.66,71.533 +125216,218.51,71.855 +125217,223.96,70.989 +125218,221.6,71.259 +125219,219.34,71.538 +125220,217.18,71.826 +125221,222.65,71.062 +125222,220.28,71.297 +125223,218.02,71.543 +125224,215.85,71.798 +125225,221.34,71.135 +125226,218.97,71.336 +125227,216.7,71.548 +125228,214.53,71.769 +125229,220.03,71.208 +125230,217.65,71.375 +125231,215.38,71.552 +125232,213.2,71.739 +125233,218.72,71.281 +125234,216.33,71.414 +125235,214.06,71.557 +125236,211.88,71.71 +125237,217.4,71.354 +125238,215.02,71.452 +125239,212.74,71.562 +125240,210.56,71.68 +125241,216.09,71.428 +125242,213.7,71.491 +125243,211.42,71.566 +125244,209.23,71.651 +125245,214.77,71.501 +125246,212.38,71.53 +125247,210.1,71.571 +125248,207.92,71.621 +125249,213.45,71.574 +125250,211.06,71.569 +125251,208.79,71.575 +125252,206.6,71.591 +125253,212.13,71.648 +125254,209.75,71.608 +125255,207.47,71.58 +125256,205.28,71.561 +125257,210.8,71.721 +125258,208.43,71.647 +125259,206.15,71.584 +125260,203.97,71.532 +125261,209.48,71.794 +125262,207.11,71.686 +125263,204.84,71.589 +125264,202.66,71.502 +125265,208.15,71.867 +125266,205.78,71.724 +125267,203.52,71.593 +125268,201.35,71.472 +125269,206.82,71.94 +125270,204.46,71.763 +125271,202.21,71.598 +125272,200.04,71.442 +125273,205.49,72.013 +125274,203.14,71.802 +125275,200.89,71.602 +125276,198.73,71.413 +125277,204.16,72.085 +125278,201.82,71.841 +125279,199.58,71.607 +125280,197.42,71.384 +125281,202.82,72.158 +125282,200.49,71.879 +125283,198.27,71.612 +125284,196.12,71.354 +125285,201.48,72.23 +125286,199.17,71.918 +125287,196.95,71.616 +125288,194.82,71.325 +125289,200.15,72.302 +125290,197.85,71.956 +125291,195.64,71.621 +125292,193.52,71.297 +125293,198.81,72.373 +125294,196.52,71.995 +125295,194.33,71.626 +125296,192.22,71.268 +125297,197.46,72.445 +125298,195.2,72.033 +125299,193.02,71.631 +125300,190.92,71.24 +125301,196.12,72.516 +125302,193.87,72.071 +125303,191.71,71.637 +125304,189.62,71.212 +125305,194.78,72.586 +125306,192.54,72.109 +125307,190.4,71.642 +125308,188.33,71.184 +125309,193.43,72.656 +125310,191.22,72.147 +125311,189.09,71.647 +125312,187.04,71.157 +125313,192.08,72.726 +125314,189.89,72.185 +125315,187.78,71.653 +125316,185.74,71.13 +125317,190.73,72.795 +125318,188.56,72.222 +125319,186.47,71.659 +125320,184.45,71.104 +125321,189.38,72.864 +125322,187.23,72.26 +125323,185.16,71.664 +125324,183.17,71.078 +125325,188.03,72.932 +125326,185.9,72.297 +125327,183.86,71.67 +125328,181.88,71.052 +125329,186.67,73 +125330,184.57,72.334 +125331,182.55,71.677 +125332,180.6,71.027 +125333,185.31,73.067 +125334,183.24,72.371 +125335,181.24,71.683 +125336,179.31,71.003 +125337,183.96,73.134 +125338,181.91,72.408 +125339,179.94,71.689 +125340,178.03,70.979 +125341,182.6,73.2 +125342,180.58,72.444 +125343,178.63,71.696 +125344,176.75,70.956 +125345,181.24,73.266 +125346,179.24,72.481 +125347,177.33,71.703 +125348,175.47,70.933 +125349,179.87,73.33 +125350,177.91,72.517 +125351,176.02,71.71 +125352,174.19,70.911 +125353,178.51,73.395 +125354,176.58,72.553 +125355,174.72,71.718 +125356,172.92,70.889 +125357,177.14,73.458 +125358,175.25,72.589 +125359,173.41,71.725 +125360,171.64,70.868 +125361,175.78,73.521 +125362,173.91,72.624 +125363,172.11,71.733 +125364,170.37,70.848 +125365,174.41,73.583 +125366,172.58,72.659 +125367,170.81,71.741 +125368,169.09,70.828 +125369,173.04,73.644 +125370,171.24,72.694 +125371,169.51,71.749 +125372,167.82,70.81 +125373,171.67,73.705 +125374,169.91,72.729 +125375,168.2,71.758 +125376,166.55,70.792 +125377,170.3,73.764 +125378,168.57,72.764 +125379,166.9,71.767 +125380,165.29,70.775 +125381,168.92,73.823 +125382,167.23,72.798 +125383,165.6,71.776 +125384,164.02,70.758 +125385,167.55,73.881 +125386,165.9,72.832 +125387,164.3,71.785 +125388,162.75,70.743 +125389,166.17,73.938 +125390,164.56,72.865 +125391,163,71.795 +125392,161.49,70.728 +125393,164.8,73.995 +125394,163.22,72.899 +125395,161.7,71.805 +125396,160.22,70.714 +125397,163.42,74.05 +125398,161.88,72.932 +125399,160.4,71.815 +125400,158.96,70.701 +125401,162.04,74.105 +125402,160.55,72.965 +125403,159.1,71.826 +125404,157.7,70.689 +125405,160.66,74.159 +125406,159.21,72.997 +125407,157.8,71.836 +125408,156.44,70.678 +125409,159.28,74.211 +125410,157.87,73.029 +125411,156.5,71.848 +125412,155.18,70.668 +125413,157.9,74.263 +125414,156.53,73.061 +125415,155.21,71.859 +125416,153.92,70.658 +125417,156.52,74.314 +125418,155.19,73.093 +125419,153.91,71.871 +125420,152.67,70.65 +125421,155.13,74.364 +125422,153.85,73.124 +125423,152.61,71.883 +125424,151.41,70.643 +125425,153.75,74.412 +125426,152.51,73.155 +125427,151.31,71.896 +125428,150.15,70.637 +125429,152.36,74.46 +125430,151.17,73.185 +125431,150.02,71.908 +125432,148.9,70.631 +125433,150.98,74.507 +125434,149.83,73.215 +125435,148.72,71.922 +125436,147.65,70.627 +125437,149.59,74.553 +125438,148.49,73.245 +125439,147.42,71.935 +125440,146.39,70.624 +125441,148.2,74.598 +125442,147.14,73.275 +125443,146.13,71.949 +125444,145.14,70.622 +125445,146.81,74.641 +125446,145.8,73.304 +125447,144.83,71.963 +125448,143.89,70.621 +125449,145.42,74.684 +125450,144.46,73.332 +125451,143.53,71.978 +125452,142.64,70.621 +125453,144.03,74.725 +125454,143.12,73.361 +125455,142.24,71.993 +125456,141.39,70.622 +125457,142.64,74.766 +125458,141.78,73.389 +125459,140.94,72.008 +125460,140.14,70.624 +125461,141.25,74.805 +125462,140.43,73.417 +125463,139.65,72.024 +125464,138.9,70.628 +125465,139.86,74.843 +125466,139.09,73.444 +125467,138.35,72.04 +125468,137.65,70.633 +125469,138.47,74.88 +125470,137.75,73.471 +125471,137.06,72.056 +125472,136.4,70.638 +125473,137.08,74.916 +125474,136.4,73.497 +125475,135.76,72.073 +125476,135.16,70.645 +125477,135.68,74.951 +125478,135.06,73.524 +125479,134.47,72.091 +125480,133.91,70.653 +125481,134.29,74.985 +125482,133.72,73.549 +125483,133.18,72.108 +125484,132.66,70.663 +125485,132.9,75.017 +125486,132.37,73.575 +125487,131.88,72.126 +125488,131.42,70.673 +125489,131.5,75.049 +125490,131.03,73.6 +125491,130.59,72.145 +125492,130.17,70.685 +125493,130.11,75.079 +125494,129.69,73.624 +125495,129.29,72.163 +125496,128.93,70.698 +125497,128.72,75.108 +125498,128.34,73.649 +125499,128,72.183 +125500,127.69,70.712 +125501,127.32,75.136 +125502,127,73.673 +125503,126.7,72.202 +125504,126.44,70.727 +125505,125.93,75.163 +125506,125.65,73.696 +125507,125.41,72.222 +125508,125.2,70.743 +125509,124.53,75.189 +125510,124.31,73.719 +125511,124.12,72.243 +125512,123.96,70.761 +125513,123.14,75.213 +125514,122.97,73.742 +125515,122.82,72.264 +125516,122.71,70.78 +125517,121.74,75.236 +125518,121.62,73.764 +125519,121.53,72.285 +125520,121.47,70.8 +125521,120.35,75.258 +125522,120.28,73.786 +125523,120.24,72.307 +125524,120.23,70.821 +125525,118.96,75.279 +125526,118.93,73.807 +125527,118.94,72.329 +125528,118.98,70.844 +125529,117.56,75.299 +125530,117.59,73.829 +125531,117.65,72.351 +125532,117.74,70.868 +125533,116.17,75.318 +125534,116.24,73.849 +125535,116.35,72.374 +125536,116.5,70.893 +125537,114.77,75.335 +125538,114.9,73.87 +125539,115.06,72.397 +125540,115.26,70.919 +125541,113.38,75.351 +125542,113.55,73.89 +125543,113.77,72.421 +125544,114.01,70.946 +125545,111.99,75.366 +125546,112.21,73.909 +125547,112.47,72.445 +125548,112.77,70.975 +125549,110.59,75.38 +125550,110.87,73.928 +125551,111.18,72.469 +125552,111.53,71.005 +125553,109.2,75.393 +125554,109.52,73.947 +125555,109.88,72.494 +125556,110.28,71.036 +125557,107.81,75.405 +125558,108.18,73.965 +125559,108.59,72.519 +125560,109.04,71.068 +125561,106.41,75.415 +125562,106.83,73.983 +125563,107.29,72.545 +125564,107.79,71.102 +125565,105.02,75.424 +125566,105.49,74.001 +125567,106,72.571 +125568,106.55,71.136 +125569,103.63,75.433 +125570,104.15,74.018 +125571,104.7,72.598 +125572,105.3,71.172 +125573,102.24,75.44 +125574,102.8,74.035 +125575,103.41,72.624 +125576,104.06,71.209 +125577,100.85,75.446 +125578,101.46,74.052 +125579,102.11,72.652 +125580,102.81,71.247 +125581,99.459,75.451 +125582,100.12,74.068 +125583,100.82,72.679 +125584,101.57,71.287 +125585,98.07,75.454 +125586,98.775,74.083 +125587,99.524,72.707 +125588,100.32,71.327 +125589,96.681,75.457 +125590,97.432,74.099 +125591,98.228,72.736 +125592,99.072,71.369 +125593,95.293,75.459 +125594,96.089,74.114 +125595,96.932,72.764 +125596,97.824,71.412 +125597,93.906,75.459 +125598,94.747,74.128 +125599,95.636,72.793 +125600,96.575,71.455 +125601,92.519,75.458 +125602,93.405,74.143 +125603,94.339,72.823 +125604,95.325,71.5 +125605,91.133,75.457 +125606,92.063,74.157 +125607,93.042,72.853 +125608,94.075,71.546 +125609,89.748,75.454 +125610,90.721,74.17 +125611,91.745,72.883 +125612,92.824,71.594 +125613,88.364,75.451 +125614,89.38,74.184 +125615,90.448,72.913 +125616,91.572,71.642 +125617,86.98,75.446 +125618,88.039,74.196 +125619,89.15,72.944 +125620,90.319,71.691 +125621,85.598,75.44 +125622,86.698,74.209 +125623,87.852,72.975 +125624,89.065,71.741 +125625,84.216,75.434 +125626,85.357,74.221 +125627,86.554,73.007 +125628,87.81,71.793 +125629,82.835,75.426 +125630,84.017,74.233 +125631,85.255,73.039 +125632,86.555,71.845 +125633,81.455,75.417 +125634,82.677,74.245 +125635,83.956,73.071 +125636,85.298,71.898 +125637,80.077,75.408 +125638,81.337,74.256 +125639,82.657,73.104 +125640,84.041,71.952 +125641,78.699,75.398 +125642,79.998,74.267 +125643,81.357,73.137 +125644,82.782,72.008 +125645,77.322,75.386 +125646,78.659,74.278 +125647,80.057,73.17 +125648,81.522,72.064 +125649,75.946,75.374 +125650,77.32,74.288 +125651,78.757,73.203 +125652,80.261,72.121 +125653,74.572,75.361 +125654,75.982,74.298 +125655,77.456,73.237 +125656,78.999,72.179 +125657,73.198,75.347 +125658,74.644,74.308 +125659,76.155,73.271 +125660,77.736,72.237 +125661,71.826,75.332 +125662,73.306,74.318 +125663,74.853,73.305 +125664,76.471,72.297 +125665,70.455,75.317 +125666,71.969,74.327 +125667,73.551,73.34 +125668,75.206,72.358 +125669,69.085,75.3 +125670,70.632,74.336 +125671,72.248,73.375 +125672,73.939,72.419 +125673,67.716,75.283 +125674,69.296,74.345 +125675,70.945,73.41 +125676,72.671,72.481 +125677,66.349,75.265 +125678,67.96,74.353 +125679,69.642,73.446 +125680,71.401,72.544 +125681,64.982,75.247 +125682,66.625,74.362 +125683,68.338,73.481 +125684,70.13,72.607 +125685,63.617,75.227 +125686,65.289,74.37 +125687,67.034,73.517 +125688,68.858,72.672 +125689,62.254,75.207 +125690,63.955,74.378 +125691,65.729,73.553 +125692,67.584,72.737 +125693,60.891,75.186 +125694,62.62,74.385 +125695,64.424,73.59 +125696,66.309,72.802 +125697,59.53,75.165 +125698,61.287,74.393 +125699,63.118,73.626 +125700,65.032,72.869 +125701,58.171,75.143 +125702,59.953,74.4 +125703,61.812,73.663 +125704,63.754,72.936 +125705,56.812,75.121 +125706,58.62,74.407 +125707,60.505,73.7 +125708,62.474,73.003 +125709,55.456,75.097 +125710,57.288,74.413 +125711,59.198,73.737 +125712,61.193,73.071 +125713,54.1,75.074 +125714,55.956,74.42 +125715,57.89,73.775 +125716,59.911,73.14 +125717,52.746,75.049 +125718,54.624,74.427 +125719,56.581,73.812 +125720,58.626,73.209 +125721,51.393,75.025 +125722,53.293,74.433 +125723,55.273,73.85 +125724,57.34,73.279 +125725,50.042,74.999 +125726,51.963,74.439 +125727,53.963,73.888 +125728,56.053,73.349 +125729,48.693,74.974 +125730,50.633,74.445 +125731,52.653,73.926 +125732,54.764,73.419 +125733,47.344,74.948 +125734,49.303,74.451 +125735,51.343,73.964 +125736,53.473,73.49 +125737,45.998,74.921 +125738,47.974,74.456 +125739,50.032,74.003 +125740,52.181,73.562 +125741,44.653,74.894 +125742,46.645,74.462 +125743,48.72,74.041 +125744,50.887,73.633 +125745,43.309,74.867 +125746,45.317,74.467 +125747,47.408,74.08 +125748,49.591,73.706 +125749,41.967,74.839 +125750,43.99,74.473 +125751,46.095,74.118 +125752,48.294,73.778 +125753,40.626,74.811 +125754,42.663,74.478 +125755,44.782,74.157 +125756,46.995,73.851 +125757,39.287,74.783 +125758,41.336,74.483 +125759,43.468,74.196 +125760,45.694,73.924 +125761,37.95,74.755 +125762,40.01,74.488 +125763,42.154,74.235 +125764,44.392,73.997 +125765,36.614,74.726 +125766,38.685,74.493 +125767,40.839,74.274 +125768,43.088,74.07 +125769,35.28,74.697 +125770,37.36,74.498 +125771,39.523,74.313 +125772,41.782,74.144 +125773,33.947,74.668 +125774,36.035,74.503 +125775,38.207,74.352 +125776,40.474,74.217 +125777,32.616,74.639 +125778,34.711,74.508 +125779,36.89,74.392 +125780,39.165,74.291 +125781,31.286,74.61 +125782,33.388,74.513 +125783,35.573,74.431 +125784,37.853,74.365 +125785,29.958,74.58 +125786,32.065,74.518 +125787,34.255,74.47 +125788,36.541,74.439 +125789,28.632,74.551 +125790,30.743,74.523 +125791,32.937,74.509 +125792,35.226,74.513 +125793,27.307,74.521 +125794,29.421,74.528 +125795,31.618,74.549 +125796,33.909,74.587 +125797,25.984,74.492 +125798,28.1,74.532 +125799,30.298,74.588 +125800,32.591,74.66 +125801,24.662,74.463 +125802,26.779,74.537 +125803,28.978,74.627 +125804,31.271,74.734 +125805,23.342,74.433 +125806,25.459,74.542 +125807,27.657,74.667 +125808,29.949,74.808 +125809,22.024,74.404 +125810,24.139,74.547 +125811,26.336,74.706 +125812,28.626,74.882 +125813,20.707,74.375 +125814,22.82,74.552 +125815,25.014,74.745 +125816,27.301,74.955 +125817,19.392,74.345 +125818,21.501,74.557 +125819,23.691,74.784 +125820,25.974,75.029 +125821,18.079,74.316 +125822,20.183,74.562 +125823,22.368,74.823 +125824,24.645,75.102 +125825,16.767,74.288 +125826,18.866,74.567 +125827,21.044,74.862 +125828,23.314,75.175 +125829,15.456,74.259 +125830,17.549,74.572 +125831,19.72,74.901 +125832,21.982,75.247 +125833,14.148,74.231 +125834,16.232,74.578 +125835,18.395,74.94 +125836,20.648,75.32 +125837,12.84,74.203 +125838,14.916,74.583 +125839,17.07,74.979 +125840,19.313,75.392 +125841,11.535,74.175 +125842,13.601,74.589 +125843,15.744,75.018 +125844,17.975,75.464 +125845,10.231,74.148 +125846,12.286,74.594 +125847,14.417,75.056 +125848,16.636,75.535 +125849,8.9282,74.12 +125850,10.972,74.6 +125851,13.09,75.095 +125852,15.295,75.606 +125853,7.6272,74.094 +125854,9.6577,74.606 +125855,11.762,75.133 +125856,13.953,75.677 +125857,6.3278,74.067 +125858,8.3443,74.612 +125859,10.434,75.171 +125860,12.609,75.747 +125861,5.03,74.042 +125862,7.0314,74.618 +125863,9.1052,75.209 +125864,11.263,75.817 +125865,3.7336,74.016 +125866,5.719,74.624 +125867,7.7758,75.247 +125868,9.9157,75.886 +125869,2.4388,73.991 +125870,4.4072,74.631 +125871,6.4459,75.285 +125872,8.5668,75.955 +125873,1.1454,73.967 +125874,3.0957,74.637 +125875,5.1155,75.323 +125876,7.2162,76.023 +125877,359.85,73.943 +125878,1.7848,74.644 +125879,3.7845,75.36 +125880,5.864,76.091 +125881,358.56,73.919 +125882,0.47439,74.651 +125883,2.453,75.397 +125884,4.5103,76.158 +125885,357.27,73.897 +125886,359.16,74.659 +125887,1.121,75.434 +125888,3.155,76.224 +125889,355.99,73.874 +125890,357.85,74.666 +125891,359.79,75.471 +125892,1.7982,76.29 +125893,354.7,73.853 +125894,356.55,74.674 +125895,358.46,75.508 +125896,0.43994,76.355 +125897,353.42,73.832 +125898,355.24,74.682 +125899,357.12,75.544 +125900,359.08,76.42 +125901,352.13,73.812 +125902,353.93,74.69 +125903,355.79,75.58 +125904,357.72,76.484 +125905,350.85,73.792 +125906,352.62,74.698 +125907,354.45,75.616 +125908,356.36,76.547 +125909,349.57,73.774 +125910,351.31,74.707 +125911,353.12,75.652 +125912,354.99,76.609 +125913,348.29,73.755 +125914,350.01,74.716 +125915,351.78,75.687 +125916,353.63,76.671 +125917,347.01,73.738 +125918,348.7,74.725 +125919,350.45,75.722 +125920,352.26,76.732 +125921,345.74,73.722 +125922,347.4,74.734 +125923,349.11,75.757 +125924,350.89,76.792 +125925,344.46,73.706 +125926,346.09,74.744 +125927,347.77,75.792 +125928,349.52,76.851 +125929,343.19,73.691 +125930,344.78,74.754 +125931,346.44,75.826 +125932,348.15,76.909 +125933,341.91,73.677 +125934,343.48,74.764 +125935,345.1,75.86 +125936,346.78,76.967 +125937,340.64,73.664 +125938,342.18,74.775 +125939,343.76,75.894 +125940,345.41,77.023 +125941,339.37,73.652 +125942,340.87,74.785 +125943,342.42,75.928 +125944,344.03,77.079 +125945,338.1,73.641 +125946,339.57,74.797 +125947,341.08,75.961 +125948,342.66,77.134 +125949,336.83,73.63 +125950,338.26,74.808 +125951,339.74,75.994 +125952,341.28,77.188 +125953,335.57,73.621 +125954,336.96,74.82 +125955,338.4,76.027 +125956,339.9,77.241 +125957,334.3,73.612 +125958,335.66,74.832 +125959,337.06,76.059 +125960,338.52,77.293 +125961,333.04,73.605 +125962,334.36,74.844 +125963,335.72,76.091 +125964,337.14,77.344 +125965,331.77,73.599 +125966,333.05,74.857 +125967,334.38,76.122 +125968,335.76,77.394 +125969,330.51,73.593 +125970,331.75,74.87 +125971,333.04,76.154 +125972,334.38,77.443 +125973,329.25,73.589 +125974,330.45,74.884 +125975,331.7,76.185 +125976,333,77.491 +125977,327.98,73.585 +125978,329.15,74.898 +125979,330.36,76.215 +125980,331.61,77.538 +125981,326.72,73.583 +125982,327.85,74.912 +125983,329.02,76.246 +125984,330.23,77.584 +125985,325.46,73.582 +125986,326.55,74.927 +125987,327.67,76.276 +125988,328.84,77.629 +125989,324.21,73.582 +125990,325.25,74.942 +125991,326.33,76.305 +125992,327.46,77.672 +125993,322.95,73.583 +125994,323.95,74.957 +125995,324.99,76.334 +125996,326.07,77.715 +125997,321.69,73.585 +125998,322.65,74.973 +125999,323.64,76.363 +126000,324.68,77.757 +126001,320.44,73.588 +126002,321.35,74.989 +126003,322.3,76.392 +126004,323.29,77.797 +126005,319.18,73.593 +126006,320.05,75.005 +126007,320.96,76.42 +126008,321.91,77.837 +126009,317.92,73.598 +126010,318.75,75.022 +126011,319.61,76.448 +126012,320.52,77.875 +126013,316.67,73.605 +126014,317.45,75.039 +126015,318.27,76.475 +126016,319.13,77.912 +126017,315.42,73.613 +126018,316.15,75.057 +126019,316.92,76.502 +126020,317.73,77.948 +126021,314.16,73.622 +126022,314.85,75.075 +126023,315.58,76.529 +126024,316.34,77.983 +126025,312.91,73.632 +126026,313.56,75.093 +126027,314.23,76.555 +126028,314.95,78.017 +126029,311.66,73.644 +126030,312.26,75.112 +126031,312.89,76.581 +126032,313.56,78.049 +126033,310.41,73.657 +126034,310.96,75.131 +126035,311.54,76.606 +126036,312.17,78.081 +126037,309.16,73.67 +126038,309.66,75.151 +126039,310.2,76.631 +126040,310.77,78.111 +126041,307.91,73.685 +126042,308.36,75.171 +126043,308.85,76.656 +126044,309.38,78.14 +126045,306.65,73.702 +126046,307.07,75.191 +126047,307.51,76.68 +126048,307.99,78.168 +126049,305.4,73.719 +126050,305.77,75.212 +126051,306.16,76.704 +126052,306.59,78.195 +126053,304.15,73.738 +126054,304.47,75.233 +126055,304.82,76.728 +126056,305.2,78.22 +126057,302.91,73.758 +126058,303.17,75.255 +126059,303.47,76.751 +126060,303.8,78.245 +126061,301.66,73.779 +126062,301.87,75.277 +126063,302.12,76.774 +126064,302.41,78.268 +126065,300.41,73.802 +126066,300.58,75.3 +126067,300.78,76.796 +126068,301.01,78.29 +126069,299.16,73.826 +126070,299.28,75.323 +126071,299.43,76.818 +126072,299.62,78.311 +126073,297.91,73.85 +126074,297.98,75.346 +126075,298.09,76.84 +126076,298.22,78.331 +126077,296.66,73.877 +126078,296.68,75.37 +126079,296.74,76.861 +126080,296.83,78.349 +126081,295.41,73.904 +126082,295.39,75.394 +126083,295.39,76.882 +126084,295.43,78.366 +126085,294.16,73.933 +126086,294.09,75.418 +126087,294.05,76.902 +126088,294.04,78.383 +126089,292.91,73.963 +126090,292.79,75.443 +126091,292.7,76.922 +126092,292.64,78.398 +126093,291.66,73.994 +126094,291.49,75.469 +126095,291.36,76.942 +126096,291.25,78.412 +126097,290.42,74.026 +126098,290.2,75.494 +126099,290.01,76.961 +126100,289.86,78.424 +126101,289.17,74.059 +126102,288.9,75.52 +126103,288.66,76.98 +126104,288.46,78.436 +126105,287.92,74.094 +126106,287.6,75.547 +126107,287.32,76.998 +126108,287.07,78.446 +126109,286.67,74.13 +126110,286.3,75.574 +126111,285.97,77.016 +126112,285.67,78.455 +126113,285.42,74.167 +126114,285,75.601 +126115,284.63,77.034 +126116,284.28,78.464 +126117,284.17,74.206 +126118,283.71,75.629 +126119,283.28,77.051 +126120,282.89,78.47 +126121,282.92,74.245 +126122,282.41,75.657 +126123,281.93,77.068 +126124,281.5,78.476 +126125,281.66,74.286 +126126,281.11,75.686 +126127,280.59,77.085 +126128,280.1,78.481 +126129,280.41,74.328 +126130,279.81,75.715 +126131,279.24,77.101 +126132,278.71,78.485 +126133,279.16,74.371 +126134,278.51,75.744 +126135,277.9,77.117 +126136,277.32,78.487 +126137,277.91,74.415 +126138,277.21,75.774 +126139,276.55,77.132 +126140,275.93,78.489 +126141,276.66,74.46 +126142,275.91,75.804 +126143,275.21,77.147 +126144,274.54,78.489 +126145,275.4,74.506 +126146,274.61,75.834 +126147,273.86,77.162 +126148,273.15,78.489 +126149,274.15,74.554 +126150,273.31,75.865 +126151,272.52,77.177 +126152,271.76,78.487 +126153,272.89,74.602 +126154,272.01,75.896 +126155,271.17,77.191 +126156,270.37,78.484 +126157,271.64,74.652 +126158,270.71,75.928 +126159,269.83,77.204 +126160,268.99,78.48 +126161,270.38,74.703 +126162,269.41,75.96 +126163,268.49,77.218 +126164,267.6,78.476 +126165,269.13,74.754 +126166,268.11,75.992 +126167,267.14,77.231 +126168,266.21,78.47 +126169,267.87,74.807 +126170,266.81,76.024 +126171,265.8,77.244 +126172,264.83,78.463 +126173,266.61,74.861 +126174,265.51,76.057 +126175,264.45,77.256 +126176,263.44,78.455 +126177,265.35,74.916 +126178,264.21,76.091 +126179,263.11,77.268 +126180,262.06,78.447 +126181,264.09,74.972 +126182,262.91,76.124 +126183,261.77,77.28 +126184,260.68,78.437 +126185,262.83,75.028 +126186,261.6,76.158 +126187,260.43,77.291 +126188,259.3,78.426 +126189,261.57,75.086 +126190,260.3,76.192 +126191,259.08,77.303 +126192,257.92,78.415 +126193,260.3,75.145 +126194,259,76.227 +126195,257.74,77.313 +126196,256.54,78.403 +126197,259.04,75.204 +126198,257.69,76.262 +126199,256.4,77.324 +126200,255.16,78.39 +126201,257.77,75.265 +126202,256.39,76.297 +126203,255.06,77.334 +126204,253.78,78.375 +126205,256.51,75.326 +126206,255.09,76.332 +126207,253.72,77.344 +126208,252.4,78.361 +126209,255.24,75.388 +126210,253.78,76.368 +126211,252.38,77.354 +126212,251.03,78.345 +126213,253.97,75.451 +126214,252.48,76.404 +126215,251.04,77.364 +126216,249.65,78.328 +126217,252.7,75.515 +126218,251.17,76.44 +126219,249.7,77.373 +126220,248.28,78.311 +126221,251.43,75.579 +126222,249.87,76.477 +126223,248.36,77.382 +126224,246.9,78.293 +126225,250.16,75.644 +126226,248.56,76.513 +126227,247.02,77.391 +126228,245.53,78.275 +126229,248.89,75.71 +126230,247.25,76.55 +126231,245.68,77.399 +126232,244.16,78.255 +126233,247.61,75.777 +126234,245.95,76.588 +126235,244.34,77.408 +126236,242.79,78.235 +126237,246.34,75.844 +126238,244.64,76.625 +126239,243,77.416 +126240,241.43,78.214 +126241,245.06,75.912 +126242,243.33,76.663 +126243,241.67,77.424 +126244,240.06,78.193 +126245,243.78,75.981 +126246,242.02,76.701 +126247,240.33,77.431 +126248,238.69,78.171 +126249,242.5,76.05 +126250,240.71,76.739 +126251,238.99,77.439 +126252,237.33,78.148 +126253,241.22,76.12 +126254,239.41,76.777 +126255,237.66,77.446 +126256,235.97,78.125 +126257,239.94,76.191 +126258,238.1,76.816 +126259,236.32,77.453 +126260,234.61,78.101 +126261,238.66,76.262 +126262,236.79,76.854 +126263,234.98,77.46 +126264,233.25,78.077 +126265,237.37,76.333 +126266,235.48,76.893 +126267,233.65,77.467 +126268,231.89,78.052 +126269,236.08,76.405 +126270,234.16,76.932 +126271,232.31,77.474 +126272,230.53,78.027 +126273,234.8,76.478 +126274,232.85,76.971 +126275,230.98,77.48 +126276,229.17,78.001 +126277,233.51,76.55 +126278,231.54,77.011 +126279,229.65,77.487 +126280,227.82,77.975 +126281,232.21,76.624 +126282,230.23,77.05 +126283,228.31,77.493 +126284,226.47,77.948 +126285,230.92,76.697 +126286,228.91,77.09 +126287,226.98,77.499 +126288,225.11,77.922 +126289,229.63,76.771 +126290,227.6,77.13 +126291,225.65,77.505 +126292,223.76,77.894 +126293,228.33,76.845 +126294,226.29,77.17 +126295,224.32,77.511 +126296,222.41,77.867 +126297,227.03,76.92 +126298,224.97,77.209 +126299,222.98,77.517 +126300,221.07,77.839 +126301,225.74,76.995 +126302,223.66,77.25 +126303,221.65,77.522 +126304,219.72,77.811 +126305,224.43,77.07 +126306,222.34,77.29 +126307,220.32,77.528 +126308,218.38,77.782 +126309,223.13,77.145 +126310,221.02,77.33 +126311,218.99,77.534 +126312,217.03,77.754 +126313,221.83,77.22 +126314,219.71,77.37 +126315,217.66,77.539 +126316,215.69,77.725 +126317,220.52,77.296 +126318,218.39,77.411 +126319,216.33,77.545 +126320,214.35,77.696 +126321,219.22,77.372 +126322,217.07,77.451 +126323,215.01,77.55 +126324,213.01,77.667 +126325,217.91,77.447 +126326,215.75,77.491 +126327,213.68,77.556 +126328,211.68,77.638 +126329,216.6,77.523 +126330,214.43,77.532 +126331,212.35,77.561 +126332,210.34,77.608 +126333,215.28,77.599 +126334,213.11,77.572 +126335,211.02,77.566 +126336,209.01,77.579 +126337,213.97,77.675 +126338,211.79,77.613 +126339,209.7,77.572 +126340,207.67,77.549 +126341,212.65,77.751 +126342,210.47,77.653 +126343,208.37,77.577 +126344,206.34,77.52 +126345,211.34,77.827 +126346,209.15,77.694 +126347,207.05,77.583 +126348,205.01,77.491 +126349,210.02,77.902 +126350,207.83,77.734 +126351,205.72,77.588 +126352,203.69,77.461 +126353,208.7,77.978 +126354,206.51,77.775 +126355,204.4,77.594 +126356,202.36,77.432 +126357,207.38,78.053 +126358,205.18,77.815 +126359,203.07,77.599 +126360,201.04,77.403 +126361,206.05,78.128 +126362,203.86,77.855 +126363,201.75,77.605 +126364,199.71,77.374 +126365,204.73,78.204 +126366,202.54,77.896 +126367,200.43,77.61 +126368,198.39,77.345 +126369,203.4,78.278 +126370,201.21,77.936 +126371,199.1,77.616 +126372,197.07,77.317 +126373,202.07,78.353 +126374,199.88,77.976 +126375,197.78,77.622 +126376,195.75,77.288 +126377,200.74,78.427 +126378,198.56,78.016 +126379,196.46,77.628 +126380,194.43,77.26 +126381,199.41,78.501 +126382,197.23,78.056 +126383,195.14,77.634 +126384,193.12,77.232 +126385,198.07,78.575 +126386,195.91,78.096 +126387,193.82,77.64 +126388,191.81,77.205 +126389,196.74,78.648 +126390,194.58,78.136 +126391,192.5,77.646 +126392,190.49,77.178 +126393,195.4,78.721 +126394,193.25,78.175 +126395,191.18,77.652 +126396,189.18,77.151 +126397,194.06,78.794 +126398,191.92,78.215 +126399,189.86,77.659 +126400,187.87,77.124 +126401,192.72,78.866 +126402,190.59,78.254 +126403,188.54,77.666 +126404,186.56,77.098 +126405,191.38,78.937 +126406,189.26,78.293 +126407,187.23,77.672 +126408,185.26,77.072 +126409,190.03,79.008 +126410,187.93,78.332 +126411,185.91,77.679 +126412,183.95,77.047 +126413,188.69,79.079 +126414,186.6,78.371 +126415,184.59,77.687 +126416,182.65,77.023 +126417,187.34,79.149 +126418,185.27,78.41 +126419,183.27,77.694 +126420,181.35,76.998 +126421,185.99,79.218 +126422,183.94,78.448 +126423,181.96,77.701 +126424,180.05,76.975 +126425,184.64,79.287 +126426,182.6,78.487 +126427,180.64,77.709 +126428,178.75,76.952 +126429,183.29,79.355 +126430,181.27,78.525 +126431,179.33,77.717 +126432,177.45,76.929 +126433,181.94,79.423 +126434,179.94,78.563 +126435,178.01,77.725 +126436,176.15,76.907 +126437,180.58,79.49 +126438,178.6,78.601 +126439,176.7,77.734 +126440,174.86,76.886 +126441,179.23,79.556 +126442,177.27,78.638 +126443,175.38,77.742 +126444,173.57,76.866 +126445,177.87,79.621 +126446,175.93,78.676 +126447,174.07,77.751 +126448,172.27,76.846 +126449,176.51,79.686 +126450,174.6,78.713 +126451,172.76,77.76 +126452,170.98,76.827 +126453,175.15,79.75 +126454,173.26,78.749 +126455,171.45,77.769 +126456,169.69,76.808 +126457,173.79,79.813 +126458,171.92,78.786 +126459,170.13,77.779 +126460,168.41,76.791 +126461,172.42,79.875 +126462,170.59,78.822 +126463,168.82,77.789 +126464,167.12,76.774 +126465,171.06,79.937 +126466,169.25,78.858 +126467,167.51,77.799 +126468,165.83,76.758 +126469,169.69,79.998 +126470,167.91,78.894 +126471,166.2,77.809 +126472,164.55,76.742 +126473,168.32,80.0576 +126474,166.57,78.93 +126475,164.89,77.82 +126476,163.27,76.728 +126477,166.96,80.1166 +126478,165.23,78.965 +126479,163.58,77.831 +126480,161.98,76.714 +126481,165.59,80.1747 +126482,163.9,79 +126483,162.27,77.842 +126484,160.7,76.702 +126485,164.21,80.2318 +126486,162.56,79.034 +126487,160.96,77.854 +126488,159.42,76.69 +126489,162.84,80.2881 +126490,161.22,79.068 +126491,159.65,77.866 +126492,158.14,76.679 +126493,161.47,80.3433 +126494,159.88,79.102 +126495,158.34,77.878 +126496,156.87,76.669 +126497,160.09,80.3976 +126498,158.53,79.136 +126499,157.04,77.891 +126500,155.59,76.66 +126501,158.72,80.4509 +126502,157.19,79.17 +126503,155.73,77.904 +126504,154.32,76.653 +126505,157.34,80.5032 +126506,155.85,79.203 +126507,154.42,77.917 +126508,153.04,76.646 +126509,155.96,80.5545 +126510,154.51,79.235 +126511,153.11,77.931 +126512,151.77,76.64 +126513,154.58,80.6048 +126514,153.17,79.268 +126515,151.81,77.944 +126516,150.5,76.635 +126517,153.2,80.654 +126518,151.82,79.3 +126519,150.5,77.959 +126520,149.23,76.631 +126521,151.82,80.7021 +126522,150.48,79.331 +126523,149.19,77.973 +126524,147.96,76.628 +126525,150.44,80.7492 +126526,149.14,79.363 +126527,147.89,77.988 +126528,146.69,76.627 +126529,149.05,80.7952 +126530,147.79,79.393 +126531,146.58,78.004 +126532,145.42,76.626 +126533,147.67,80.8401 +126534,146.45,79.424 +126535,145.28,78.02 +126536,144.15,76.627 +126537,146.29,80.8838 +126538,145.1,79.454 +126539,143.97,78.036 +126540,142.89,76.628 +126541,144.9,80.9265 +126542,143.76,79.484 +126543,142.67,78.052 +126544,141.62,76.631 +126545,143.51,80.968 +126546,142.41,79.514 +126547,141.36,78.069 +126548,140.36,76.635 +126549,142.13,81.0084 +126550,141.07,79.543 +126551,140.06,78.087 +126552,139.09,76.64 +126553,140.74,81.0477 +126554,139.72,79.571 +126555,138.75,78.104 +126556,137.83,76.647 +126557,139.35,81.0858 +126558,138.38,79.6 +126559,137.45,78.122 +126560,136.57,76.654 +126561,137.96,81.1227 +126562,137.03,79.628 +126563,136.15,78.141 +126564,135.3,76.663 +126565,136.57,81.1584 +126566,135.68,79.655 +126567,134.84,78.16 +126568,134.04,76.673 +126569,135.18,81.193 +126570,134.34,79.682 +126571,133.54,78.179 +126572,132.78,76.684 +126573,133.79,81.2264 +126574,132.99,79.709 +126575,132.24,78.199 +126576,131.52,76.696 +126577,132.39,81.2586 +126578,131.64,79.736 +126579,130.93,78.219 +126580,130.26,76.709 +126581,131,81.2896 +126582,130.3,79.762 +126583,129.63,78.24 +126584,129,76.724 +126585,129.61,81.3194 +126586,128.95,79.787 +126587,128.33,78.261 +126588,127.74,76.74 +126589,128.22,81.3481 +126590,127.6,79.812 +126591,127.02,78.282 +126592,126.48,76.757 +126593,126.82,81.3755 +126594,126.25,79.837 +126595,125.72,78.304 +126596,125.23,76.776 +126597,125.43,81.4017 +126598,124.9,79.862 +126599,124.42,78.326 +126600,123.97,76.796 +126601,124.03,81.4267 +126602,123.56,79.886 +126603,123.12,78.349 +126604,122.71,76.816 +126605,122.64,81.4505 +126606,122.21,79.909 +126607,121.81,78.372 +126608,121.45,76.839 +126609,121.24,81.4731 +126610,120.86,79.932 +126611,120.51,78.395 +126612,120.2,76.862 +126613,119.85,81.4945 +126614,119.51,79.955 +126615,119.21,78.419 +126616,118.94,76.887 +126617,118.45,81.5147 +126618,118.16,79.978 +126619,117.91,78.443 +126620,117.69,76.913 +126621,117.06,81.5336 +126622,116.82,80 +126623,116.61,78.468 +126624,116.43,76.94 +126625,115.66,81.5514 +126626,115.47,80.0211 +126627,115.3,78.493 +126628,115.17,76.969 +126629,114.27,81.568 +126630,114.12,80.0423 +126631,114,78.519 +126632,113.92,76.998 +126633,112.87,81.5834 +126634,112.77,80.0631 +126635,112.7,78.545 +126636,112.66,77.029 +126637,111.48,81.5976 +126638,111.42,80.0835 +126639,111.4,78.571 +126640,111.41,77.062 +126641,110.08,81.6106 +126642,110.07,80.1035 +126643,110.09,78.598 +126644,110.15,77.095 +126645,108.69,81.6224 +126646,108.72,80.1231 +126647,108.79,78.625 +126648,108.89,77.13 +126649,107.29,81.6331 +126650,107.37,80.1423 +126651,107.49,78.653 +126652,107.64,77.166 +126653,105.9,81.6425 +126654,106.03,80.1611 +126655,106.19,78.681 +126656,106.38,77.203 +126657,104.5,81.6509 +126658,104.68,80.1795 +126659,104.88,78.709 +126660,105.12,77.241 +126661,103.11,81.658 +126662,103.33,80.1975 +126663,103.58,78.738 +126664,103.87,77.281 +126665,101.71,81.664 +126666,101.98,80.2152 +126667,102.28,78.767 +126668,102.61,77.322 +126669,100.32,81.6689 +126670,100.63,80.2325 +126671,100.98,78.797 +126672,101.35,77.364 +126673,98.923,81.6727 +126674,99.283,80.2494 +126675,99.674,78.827 +126676,100.1,77.407 +126677,97.53,81.6753 +126678,97.934,80.2659 +126679,98.371,78.857 +126680,98.839,77.451 +126681,96.136,81.6768 +126682,96.586,80.282 +126683,97.068,78.888 +126684,97.581,77.497 +126685,94.744,81.6773 +126686,95.238,80.2978 +126687,95.764,78.919 +126688,96.323,77.544 +126689,93.352,81.6766 +126690,93.89,80.3132 +126691,94.461,78.951 +126692,95.064,77.592 +126693,91.96,81.6749 +126694,92.542,80.3283 +126695,93.157,78.983 +126696,93.804,77.641 +126697,90.569,81.6721 +126698,91.194,80.343 +126699,91.853,79.015 +126700,92.544,77.691 +126701,89.178,81.6683 +126702,89.847,80.3574 +126703,90.549,79.048 +126704,91.284,77.742 +126705,87.788,81.6634 +126706,88.5,80.3714 +126707,89.244,79.081 +126708,90.023,77.794 +126709,86.398,81.6575 +126710,87.152,80.385 +126711,87.94,79.114 +126712,88.761,77.848 +126713,85.01,81.6506 +126714,85.805,80.3984 +126715,86.635,79.148 +126716,87.499,77.902 +126717,83.622,81.6428 +126718,84.459,80.4114 +126719,85.33,79.182 +126720,86.236,77.958 +126721,82.234,81.6339 +126722,83.112,80.4241 +126723,84.024,79.217 +126724,84.972,78.014 +126725,80.847,81.6241 +126726,81.766,80.4364 +126727,82.719,79.252 +126728,83.708,78.072 +126729,79.462,81.6134 +126730,80.419,80.4485 +126731,81.413,79.287 +126732,82.443,78.13 +126733,78.077,81.6017 +126734,79.073,80.4602 +126735,80.106,79.322 +126736,81.177,78.19 +126737,76.692,81.5892 +126738,77.728,80.4716 +126739,78.8,79.358 +126740,79.91,78.25 +126741,75.309,81.5757 +126742,76.382,80.4828 +126743,77.493,79.394 +126744,78.642,78.312 +126745,73.926,81.5614 +126746,75.037,80.4936 +126747,76.186,79.43 +126748,77.374,78.374 +126749,72.545,81.5462 +126750,73.692,80.5042 +126751,74.878,79.467 +126752,76.104,78.437 +126753,71.164,81.5303 +126754,72.348,80.5145 +126755,73.571,79.504 +126756,74.834,78.501 +126757,69.784,81.5135 +126758,71.004,80.5245 +126759,72.262,79.541 +126760,73.562,78.566 +126761,68.406,81.4959 +126762,69.66,80.5343 +126763,70.954,79.579 +126764,72.29,78.632 +126765,67.028,81.4775 +126766,68.316,80.5438 +126767,69.645,79.617 +126768,71.016,78.698 +126769,65.651,81.4584 +126770,66.973,80.553 +126771,68.336,79.655 +126772,69.742,78.766 +126773,64.276,81.4386 +126774,65.63,80.5621 +126775,67.026,79.693 +126776,68.466,78.834 +126777,62.901,81.4181 +126778,64.287,80.5708 +126779,65.716,79.732 +126780,67.189,78.903 +126781,61.528,81.3969 +126782,62.945,80.5794 +126783,64.405,79.77 +126784,65.911,78.972 +126785,60.155,81.375 +126786,61.603,80.5878 +126787,63.094,79.81 +126788,64.632,79.043 +126789,58.784,81.3525 +126790,60.261,80.5959 +126791,61.783,79.849 +126792,63.352,79.113 +126793,57.414,81.3294 +126794,58.92,80.6038 +126795,60.471,79.888 +126796,62.071,79.185 +126797,56.045,81.3058 +126798,57.579,80.6116 +126799,59.159,79.928 +126800,60.788,79.257 +126801,54.678,81.2815 +126802,56.238,80.6191 +126803,57.846,79.968 +126804,59.504,79.33 +126805,53.311,81.2567 +126806,54.898,80.6265 +126807,56.533,80.0079 +126808,58.219,79.403 +126809,51.946,81.2314 +126810,53.559,80.6337 +126811,55.22,80.0481 +126812,56.932,79.477 +126813,50.582,81.2056 +126814,52.219,80.6408 +126815,53.906,80.0885 +126816,55.644,79.551 +126817,49.22,81.1794 +126818,50.881,80.6477 +126819,52.591,80.1291 +126820,54.355,79.626 +126821,47.858,81.1527 +126822,49.542,80.6544 +126823,51.276,80.1698 +126824,53.064,79.701 +126825,46.498,81.1256 +126826,48.204,80.661 +126827,49.961,80.2107 +126828,51.772,79.777 +126829,45.14,81.0982 +126830,46.866,80.6675 +126831,48.645,80.2517 +126832,50.479,79.853 +126833,43.782,81.0703 +126834,45.529,80.6739 +126835,47.329,80.2928 +126836,49.184,79.93 +126837,42.426,81.0421 +126838,44.192,80.6802 +126839,46.012,80.3341 +126840,47.888,80.0063 +126841,41.072,81.0137 +126842,42.856,80.6864 +126843,44.694,80.3754 +126844,46.59,80.0833 +126845,39.719,80.9849 +126846,41.52,80.6925 +126847,43.376,80.4169 +126848,45.291,80.1607 +126849,38.367,80.9559 +126850,40.185,80.6985 +126851,42.058,80.4584 +126852,43.991,80.2383 +126853,37.016,80.9267 +126854,38.85,80.7044 +126855,40.739,80.5 +126856,42.688,80.3161 +126857,35.667,80.8973 +126858,37.515,80.7103 +126859,39.419,80.5417 +126860,41.385,80.3941 +126861,34.32,80.8677 +126862,36.181,80.7161 +126863,38.099,80.5834 +126864,40.08,80.4723 +126865,32.974,80.8379 +126866,34.847,80.7219 +126867,36.779,80.6252 +126868,38.773,80.5506 +126869,31.629,80.8081 +126870,33.514,80.7277 +126871,35.458,80.6671 +126872,37.465,80.629 +126873,30.285,80.7781 +126874,32.182,80.7334 +126875,34.136,80.7089 +126876,36.155,80.7075 +126877,28.944,80.7481 +126878,30.849,80.7391 +126879,32.814,80.7508 +126880,34.844,80.786 +126881,27.603,80.7181 +126882,29.518,80.7448 +126883,31.491,80.7927 +126884,33.531,80.8645 +126885,26.264,80.688 +126886,28.186,80.7505 +126887,30.168,80.8346 +126888,32.216,80.943 +126889,24.927,80.658 +126890,26.856,80.7563 +126891,28.844,80.8765 +126892,30.9,81.0215 +126893,23.591,80.6281 +126894,25.525,80.762 +126895,27.52,80.9183 +126896,29.583,81.0999 +126897,22.256,80.5982 +126898,24.195,80.7678 +126899,26.195,80.9602 +126900,28.263,81.1782 +126901,20.923,80.5684 +126902,22.866,80.7737 +126903,24.87,81.002 +126904,26.942,81.2563 +126905,19.591,80.5388 +126906,21.537,80.7795 +126907,23.544,81.0437 +126908,25.62,81.3343 +126909,18.261,80.5093 +126910,20.209,80.7855 +126911,22.218,81.0854 +126912,24.296,81.4121 +126913,16.933,80.48 +126914,18.881,80.7915 +126915,20.891,81.1271 +126916,22.97,81.4896 +126917,15.606,80.451 +126918,17.553,80.7976 +126919,19.563,81.1686 +126920,21.643,81.567 +126921,14.28,80.4222 +126922,16.226,80.8038 +126923,18.235,81.2101 +126924,20.314,81.644 +126925,12.956,80.3936 +126926,14.9,80.8101 +126927,16.906,81.2514 +126928,18.984,81.7207 +126929,11.633,80.3654 +126930,13.574,80.8165 +126931,15.577,81.2927 +126932,17.652,81.7971 +126933,10.311,80.3375 +126934,12.248,80.823 +126935,14.247,81.3338 +126936,16.318,81.8731 +126937,8.9916,80.31 +126938,10.923,80.8296 +126939,12.917,81.3749 +126940,14.983,81.9487 +126941,7.6732,80.2828 +126942,9.5982,80.8364 +126943,11.586,81.4158 +126944,13.646,82.0239 +126945,6.3563,80.2561 +126946,8.274,80.8433 +126947,10.255,81.4565 +126948,12.307,82.0986 +126949,5.0408,80.2298 +126950,6.9503,80.8504 +126951,8.9227,81.4971 +126952,10.967,82.1728 +126953,3.7267,80.2039 +126954,5.6271,80.8577 +126955,7.5903,81.5375 +126956,9.6258,82.2466 +126957,2.414,80.1786 +126958,4.3043,80.8651 +126959,6.2573,81.5778 +126960,8.2826,82.3198 +126961,1.1028,80.1538 +126962,2.982,80.8727 +126963,4.9237,81.6179 +126964,6.9379,82.3924 +126965,359.79,80.1295 +126966,1.6601,80.8804 +126967,3.5897,81.6578 +126968,5.5916,82.4645 +126969,358.48,80.1058 +126970,0.33865,80.8884 +126971,2.2551,81.6975 +126972,4.2438,82.536 +126973,357.18,80.0827 +126974,359.02,80.8966 +126975,0.92,81.737 +126976,2.8945,82.6068 +126977,355.87,80.0602 +126978,357.7,80.905 +126979,359.58,81.7763 +126980,1.5437,82.6769 +126981,354.57,80.0383 +126982,356.38,80.9136 +126983,358.25,81.8153 +126984,0.19134,82.7464 +126985,353.26,80.0171 +126986,355.06,80.9225 +126987,356.91,81.8542 +126988,358.84,82.8151 +126989,351.96,79.997 +126990,353.74,80.9316 +126991,355.57,81.8928 +126992,357.48,82.8831 +126993,350.66,79.977 +126994,352.42,80.9409 +126995,354.24,81.9311 +126996,356.13,82.9504 +126997,349.36,79.958 +126998,351.1,80.9505 +126999,352.9,81.9692 +127000,354.77,83.0168 +127001,348.07,79.94 +127002,349.78,80.9604 +127003,351.56,82.0071 +127004,353.41,83.0825 +127005,346.77,79.922 +127006,348.47,80.9705 +127007,350.22,82.0446 +127008,352.05,83.1473 +127009,345.47,79.905 +127010,347.15,80.9809 +127011,348.88,82.0819 +127012,350.68,83.2113 +127013,344.18,79.89 +127014,345.83,80.9916 +127015,347.54,82.1189 +127016,349.32,83.2744 +127017,342.89,79.875 +127018,344.52,81.0026 +127019,346.2,82.1557 +127020,347.96,83.3366 +127021,341.6,79.861 +127022,343.2,81.0139 +127023,344.86,82.1921 +127024,346.59,83.3979 +127025,340.31,79.847 +127026,341.88,81.0255 +127027,343.52,82.2282 +127028,345.22,83.4582 +127029,339.02,79.835 +127030,340.57,81.0374 +127031,342.18,82.264 +127032,343.85,83.5176 +127033,337.73,79.824 +127034,339.25,81.0496 +127035,340.83,82.2995 +127036,342.48,83.5761 +127037,336.44,79.813 +127038,337.94,81.0621 +127039,339.49,82.3347 +127040,341.11,83.6335 +127041,335.16,79.804 +127042,336.62,81.075 +127043,338.15,82.3695 +127044,339.74,83.69 +127045,333.87,79.796 +127046,335.31,81.0882 +127047,336.8,82.404 +127048,338.36,83.7454 +127049,332.59,79.788 +127050,334,81.1018 +127051,335.46,82.4382 +127052,336.99,83.7997 +127053,331.31,79.782 +127054,332.68,81.1157 +127055,334.12,82.472 +127056,335.61,83.853 +127057,330.02,79.777 +127058,331.37,81.1299 +127059,332.77,82.5055 +127060,334.23,83.9053 +127061,328.74,79.772 +127062,330.06,81.1446 +127063,331.43,82.5386 +127064,332.86,83.9564 +127065,327.46,79.769 +127066,328.75,81.1595 +127067,330.08,82.5713 +127068,331.48,84.0065 +127069,326.18,79.767 +127070,327.43,81.1749 +127071,328.74,82.6037 +127072,330.1,84.0554 +127073,324.91,79.766 +127074,326.12,81.1906 +127075,327.39,82.6357 +127076,328.71,84.1032 +127077,323.63,79.766 +127078,324.81,81.2067 +127079,326.04,82.6673 +127080,327.33,84.1498 +127081,322.35,79.768 +127082,323.5,81.2232 +127083,324.7,82.6986 +127084,325.95,84.1953 +127085,321.08,79.77 +127086,322.19,81.2401 +127087,323.35,82.7294 +127088,324.56,84.2396 +127089,319.8,79.774 +127090,320.88,81.2574 +127091,322,82.7599 +127092,323.18,84.2828 +127093,318.53,79.779 +127094,319.57,81.2751 +127095,320.65,82.79 +127096,321.79,84.3248 +127097,317.26,79.785 +127098,318.26,81.2931 +127099,319.3,82.8197 +127100,320.4,84.3655 +127101,315.99,79.792 +127102,316.95,81.3116 +127103,317.96,82.8489 +127104,319.02,84.4051 +127105,314.71,79.8 +127106,315.64,81.3305 +127107,316.61,82.8778 +127108,317.63,84.4435 +127109,313.44,79.81 +127110,314.33,81.3498 +127111,315.26,82.9063 +127112,316.24,84.4806 +127113,312.17,79.821 +127114,313.02,81.3695 +127115,313.91,82.9344 +127116,314.85,84.5165 +127117,310.9,79.833 +127118,311.71,81.3896 +127119,312.56,82.962 +127120,313.46,84.5512 +127121,309.63,79.846 +127122,310.4,81.4101 +127123,311.21,82.9893 +127124,312.07,84.5846 +127125,308.37,79.861 +127126,309.09,81.431 +127127,309.86,83.0161 +127128,310.68,84.6168 +127129,307.1,79.877 +127130,307.78,81.4524 +127131,308.51,83.0425 +127132,309.28,84.6477 +127133,305.83,79.894 +127134,306.47,81.4742 +127135,307.16,83.0685 +127136,307.89,84.6774 +127137,304.56,79.912 +127138,305.17,81.4964 +127139,305.81,83.0941 +127140,306.5,84.7058 +127141,303.3,79.932 +127142,303.86,81.519 +127143,304.46,83.1193 +127144,305.1,84.733 +127145,302.03,79.953 +127146,302.55,81.5421 +127147,303.11,83.144 +127148,303.71,84.7589 +127149,300.76,79.975 +127150,301.24,81.5656 +127151,301.76,83.1683 +127152,302.31,84.7836 +127153,299.5,79.999 +127154,299.93,81.5895 +127155,300.41,83.1922 +127156,300.92,84.807 +127157,298.23,80.0237 +127158,298.63,81.6138 +127159,299.05,83.2157 +127160,299.52,84.8291 +127161,296.97,80.0498 +127162,297.32,81.6386 +127163,297.7,83.2387 +127164,298.13,84.85 +127165,295.7,80.0772 +127166,296.01,81.6638 +127167,296.35,83.2614 +127168,296.73,84.8696 +127169,294.44,80.1058 +127170,294.7,81.6894 +127171,295,83.2836 +127172,295.33,84.8879 +127173,293.17,80.1358 +127174,293.39,81.7155 +127175,293.65,83.3054 +127176,293.94,84.9051 +127177,291.91,80.167 +127178,292.09,81.7419 +127179,292.3,83.3267 +127180,292.54,84.9209 +127181,290.65,80.1996 +127182,290.78,81.7688 +127183,290.94,83.3477 +127184,291.14,84.9355 +127185,289.38,80.2333 +127186,289.47,81.7962 +127187,289.59,83.3682 +127188,289.75,84.9489 +127189,288.12,80.2684 +127190,288.16,81.8239 +127191,288.24,83.3884 +127192,288.35,84.961 +127193,286.85,80.3047 +127194,286.85,81.8521 +127195,286.89,83.4081 +127196,286.95,84.9719 +127197,285.59,80.3423 +127198,285.55,81.8806 +127199,285.54,83.4274 +127200,285.56,84.9816 +127201,284.33,80.3812 +127202,284.24,81.9096 +127203,284.18,83.4462 +127204,284.16,84.9901 +127205,283.06,80.4213 +127206,282.93,81.939 +127207,282.83,83.4647 +127208,282.76,84.9974 +127209,281.8,80.4627 +127210,281.62,81.9689 +127211,281.48,83.4828 +127212,281.37,85.0034 +127213,280.53,80.5052 +127214,280.31,81.9991 +127215,280.13,83.5005 +127216,279.97,85.0083 +127217,279.27,80.549 +127218,279.01,82.0297 +127219,278.78,83.5177 +127220,278.58,85.012 +127221,278,80.5941 +127222,277.7,82.0607 +127223,277.42,83.5346 +127224,277.18,85.0145 +127225,276.74,80.6403 +127226,276.39,82.0922 +127227,276.07,83.5511 +127228,275.78,85.0159 +127229,275.47,80.6877 +127230,275.08,82.124 +127231,274.72,83.5672 +127232,274.39,85.0161 +127233,274.2,80.7363 +127234,273.77,82.1562 +127235,273.37,83.5829 +127236,272.99,85.0152 +127237,272.94,80.7861 +127238,272.46,82.1888 +127239,272.02,83.5983 +127240,271.6,85.0131 +127241,271.67,80.8371 +127242,271.15,82.2218 +127243,270.66,83.6132 +127244,270.2,85.01 +127245,270.4,80.8892 +127246,269.84,82.2551 +127247,269.31,83.6278 +127248,268.81,85.0058 +127249,269.14,80.9424 +127250,268.54,82.2889 +127251,267.96,83.642 +127252,267.42,85.0004 +127253,267.87,80.9967 +127254,267.23,82.3229 +127255,266.61,83.6559 +127256,266.02,84.994 +127257,266.6,81.0522 +127258,265.92,82.3574 +127259,265.26,83.6694 +127260,264.63,84.9866 +127261,265.33,81.1087 +127262,264.61,82.3922 +127263,263.91,83.6826 +127264,263.24,84.9781 +127265,264.06,81.1663 +127266,263.29,82.4274 +127267,262.56,83.6954 +127268,261.85,84.9686 +127269,262.79,81.2249 +127270,261.98,82.4629 +127271,261.21,83.7078 +127272,260.46,84.9581 +127273,261.52,81.2846 +127274,260.67,82.4987 +127275,259.86,83.72 +127276,259.07,84.9466 +127277,260.25,81.3453 +127278,259.36,82.5349 +127279,258.51,83.7318 +127280,257.68,84.9342 +127281,258.97,81.407 +127282,258.05,82.5714 +127283,257.16,83.7433 +127284,256.29,84.9208 +127285,257.7,81.4697 +127286,256.74,82.6083 +127287,255.81,83.7544 +127288,254.9,84.9064 +127289,256.43,81.5333 +127290,255.43,82.6454 +127291,254.46,83.7653 +127292,253.52,84.8912 +127293,255.15,81.5979 +127294,254.12,82.6828 +127295,253.11,83.7758 +127296,252.13,84.8751 +127297,253.88,81.6634 +127298,252.8,82.7206 +127299,251.76,83.7861 +127300,250.74,84.8581 +127301,252.6,81.7298 +127302,251.49,82.7586 +127303,250.41,83.7961 +127304,249.36,84.8402 +127305,251.32,81.7971 +127306,250.18,82.797 +127307,249.06,83.8057 +127308,247.98,84.8215 +127309,250.04,81.8652 +127310,248.86,82.8356 +127311,247.71,83.8152 +127312,246.59,84.802 +127313,248.76,81.9341 +127314,247.55,82.8745 +127315,246.37,83.8243 +127316,245.21,84.7818 +127317,247.48,82.0039 +127318,246.24,82.9136 +127319,245.02,83.8332 +127320,243.83,84.7607 +127321,246.2,82.0744 +127322,244.92,82.953 +127323,243.67,83.8418 +127324,242.45,84.7389 +127325,244.92,82.1457 +127326,243.61,82.9926 +127327,242.32,83.8502 +127328,241.07,84.7164 +127329,243.64,82.2177 +127330,242.29,83.0325 +127331,240.98,83.8583 +127332,239.69,84.6933 +127333,242.35,82.2904 +127334,240.98,83.0726 +127335,239.63,83.8663 +127336,238.32,84.6694 +127337,241.07,82.3638 +127338,239.66,83.1129 +127339,238.28,83.874 +127340,236.94,84.6449 +127341,239.78,82.4378 +127342,238.34,83.1535 +127343,236.94,83.8815 +127344,235.57,84.6198 +127345,238.49,82.5125 +127346,237.03,83.1942 +127347,235.59,83.8887 +127348,234.19,84.594 +127349,237.21,82.5878 +127350,235.71,83.2352 +127351,234.25,83.8958 +127352,232.82,84.5678 +127353,235.92,82.6637 +127354,234.39,83.2763 +127355,232.9,83.9027 +127356,231.45,84.5409 +127357,234.62,82.7401 +127358,233.07,83.3176 +127359,231.56,83.9095 +127360,230.08,84.5135 +127361,233.33,82.817 +127362,231.75,83.3591 +127363,230.21,83.916 +127364,228.71,84.4857 +127365,232.04,82.8944 +127366,230.44,83.4007 +127367,228.87,83.9224 +127368,227.34,84.4574 +127369,230.74,82.9723 +127370,229.12,83.4425 +127371,227.53,83.9287 +127372,225.97,84.4286 +127373,229.45,83.0506 +127374,227.8,83.4844 +127375,226.18,83.9348 +127376,224.61,84.3994 +127377,228.15,83.1293 +127378,226.48,83.5265 +127379,224.84,83.9407 +127380,223.24,84.3698 +127381,226.85,83.2083 +127382,225.15,83.5687 +127383,223.5,83.9466 +127384,221.88,84.3399 +127385,225.55,83.2878 +127386,223.83,83.611 +127387,222.16,83.9523 +127388,220.52,84.3096 +127389,224.25,83.3675 +127390,222.51,83.6533 +127391,220.81,83.9579 +127392,219.16,84.2791 +127393,222.95,83.4475 +127394,221.19,83.6958 +127395,219.47,83.9635 +127396,217.8,84.2482 +127397,221.64,83.5278 +127398,219.87,83.7384 +127399,218.13,83.9689 +127400,216.44,84.2171 +127401,220.34,83.6083 +127402,218.54,83.781 +127403,216.79,83.9743 +127404,215.08,84.1858 +127405,219.03,83.689 +127406,217.22,83.8237 +127407,215.45,83.9796 +127408,213.73,84.1543 +127409,217.72,83.7698 +127410,215.9,83.8665 +127411,214.11,83.9848 +127412,212.37,84.1226 +127413,216.41,83.8508 +127414,214.57,83.9093 +127415,212.77,83.99 +127416,211.02,84.0907 +127417,215.1,83.9319 +127418,213.25,83.9521 +127419,211.44,83.9952 +127420,209.67,84.0588 +127421,213.79,84.0131 +127422,211.92,83.9949 +127423,210.1,84.0003 +127424,208.32,84.0268 +127425,212.48,84.0943 +127426,210.59,84.0378 +127427,208.76,84.0054 +127428,206.97,83.9947 +127429,211.16,84.1755 +127430,209.27,84.0806 +127431,207.42,84.0105 +127432,205.62,83.9626 +127433,209.84,84.2567 +127434,207.94,84.1235 +127435,206.09,84.0157 +127436,204.28,83.9305 +127437,208.52,84.3378 +127438,206.61,84.1663 +127439,204.75,84.0208 +127440,202.93,83.8985 +127441,207.2,84.4189 +127442,205.28,84.2091 +127443,203.41,84.0259 +127444,201.59,83.8665 +127445,205.88,84.4998 +127446,203.95,84.2519 +127447,202.08,84.0311 +127448,200.25,83.8345 +127449,204.56,84.5806 +127450,202.63,84.2946 +127451,200.74,84.0363 +127452,198.91,83.8028 +127453,203.24,84.6612 +127454,201.3,84.3373 +127455,199.41,84.0415 +127456,197.57,83.7711 +127457,201.91,84.7416 +127458,199.97,84.3798 +127459,198.07,84.0468 +127460,196.23,83.7396 +127461,200.58,84.8218 +127462,198.63,84.4223 +127463,196.74,84.0522 +127464,194.9,83.7084 +127465,199.25,84.9017 +127466,197.3,84.4648 +127467,195.41,84.0577 +127468,193.56,83.6773 +127469,197.92,84.9813 +127470,195.97,84.5071 +127471,194.07,84.0632 +127472,192.23,83.6466 +127473,196.59,85.0605 +127474,194.64,84.5493 +127475,192.74,84.0689 +127476,190.9,83.6161 +127477,195.26,85.1394 +127478,193.31,84.5914 +127479,191.41,84.0746 +127480,189.57,83.5859 +127481,193.92,85.218 +127482,191.97,84.6333 +127483,190.08,84.0805 +127484,188.24,83.5561 +127485,192.59,85.2961 +127486,190.64,84.6752 +127487,188.75,84.0865 +127488,186.91,83.5267 +127489,191.25,85.3737 +127490,189.3,84.7169 +127491,187.42,84.0926 +127492,185.58,83.4976 +127493,189.91,85.4509 +127494,187.97,84.7584 +127495,186.09,84.0989 +127496,184.26,83.469 +127497,188.57,85.5276 +127498,186.63,84.7997 +127499,184.76,84.1053 +127500,182.94,83.4409 +127501,187.23,85.6037 +127502,185.3,84.8409 +127503,183.43,84.1119 +127504,181.61,83.4132 +127505,185.88,85.6793 +127506,183.96,84.8819 +127507,182.1,84.1187 +127508,180.29,83.386 +127509,184.54,85.7543 +127510,182.62,84.9227 +127511,180.77,84.1256 +127512,178.97,83.3594 +127513,183.19,85.8286 +127514,181.28,84.9633 +127515,179.44,84.1327 +127516,177.66,83.3333 +127517,181.84,85.9023 +127518,179.95,85.0037 +127519,178.12,84.1401 +127520,176.34,83.3079 +127521,180.49,85.9754 +127522,178.61,85.0438 +127523,176.79,84.1476 +127524,175.02,83.283 +127525,179.14,86.0477 +127526,177.27,85.0837 +127527,175.46,84.1553 +127528,173.71,83.2588 +127529,177.79,86.1193 +127530,175.93,85.1234 +127531,174.14,84.1633 +127532,172.4,83.2352 +127533,176.43,86.1901 +127534,174.59,85.1629 +127535,172.81,84.1715 +127536,171.09,83.2124 +127537,175.08,86.2602 +127538,173.25,85.202 +127539,171.48,84.18 +127540,169.77,83.1902 +127541,173.72,86.3295 +127542,171.91,85.2409 +127543,170.16,84.1887 +127544,168.47,83.1688 +127545,172.36,86.3979 +127546,170.56,85.2796 +127547,168.83,84.1976 +127548,167.16,83.1482 +127549,171,86.4655 +127550,169.22,85.3179 +127551,167.51,84.2068 +127552,165.85,83.1283 +127553,169.64,86.5322 +127554,167.88,85.356 +127555,166.19,84.2163 +127556,164.55,83.1093 +127557,168.28,86.598 +127558,166.54,85.3938 +127559,164.86,84.2261 +127560,163.24,83.0911 +127561,166.91,86.6629 +127562,165.19,85.4312 +127563,163.54,84.2362 +127564,161.94,83.0737 +127565,165.55,86.7269 +127566,163.85,85.4684 +127567,162.22,84.2465 +127568,160.64,83.0573 +127569,164.18,86.7898 +127570,162.5,85.5052 +127571,160.89,84.2572 +127572,159.34,83.0417 +127573,162.81,86.8518 +127574,161.16,85.5417 +127575,159.57,84.2681 +127576,158.04,83.0271 +127577,161.44,86.9128 +127578,159.81,85.5779 +127579,158.25,84.2794 +127580,156.74,83.0134 +127581,160.07,86.9727 +127582,158.47,85.6138 +127583,156.93,84.291 +127584,155.44,83.0006 +127585,158.7,87.0316 +127586,157.12,85.6492 +127587,155.61,84.3029 +127588,154.15,82.9889 +127589,157.33,87.0894 +127590,155.78,85.6844 +127591,154.29,84.3152 +127592,152.85,82.9781 +127593,155.95,87.1462 +127594,154.43,85.7191 +127595,152.97,84.3278 +127596,151.56,82.9684 +127597,154.58,87.2018 +127598,153.08,85.7535 +127599,151.65,84.3408 +127600,150.27,82.9597 +127601,153.2,87.2563 +127602,151.73,85.7876 +127603,150.33,84.3541 +127604,148.97,82.9521 +127605,151.82,87.3097 +127606,150.39,85.8212 +127607,149.01,84.3677 +127608,147.68,82.9456 +127609,150.45,87.3619 +127610,149.04,85.8545 +127611,147.69,84.3818 +127612,146.39,82.9401 +127613,149.07,87.413 +127614,147.69,85.8874 +127615,146.37,84.3962 +127616,145.1,82.9358 +127617,147.69,87.4628 +127618,146.34,85.9199 +127619,145.05,84.4109 +127620,143.82,82.9325 +127621,146.3,87.5115 +127622,144.99,85.952 +127623,143.73,84.4261 +127624,142.53,82.9305 +127625,144.92,87.559 +127626,143.64,85.9837 +127627,142.42,84.4416 +127628,141.24,82.9295 +127629,143.54,87.6052 +127630,142.29,86.0149 +127631,141.1,84.4576 +127632,139.96,82.9298 +127633,142.15,87.6502 +127634,140.94,86.0458 +127635,139.78,84.4739 +127636,138.67,82.9312 +127637,140.77,87.6939 +127638,139.59,86.0763 +127639,138.46,84.4906 +127640,137.39,82.9338 +127641,139.38,87.7364 +127642,138.23,86.1063 +127643,137.15,84.5077 +127644,136.1,82.9377 +127645,137.99,87.7776 +127646,136.88,86.1359 +127647,135.83,84.5252 +127648,134.82,82.9427 +127649,136.6,87.8176 +127650,135.53,86.1651 +127651,134.51,84.5432 +127652,133.54,82.949 +127653,135.22,87.8562 +127654,134.18,86.1938 +127655,133.2,84.5615 +127656,132.26,82.9565 +127657,133.83,87.8936 +127658,132.83,86.2222 +127659,131.88,84.5803 +127660,130.98,82.9653 +127661,132.44,87.9297 +127662,131.47,86.25 +127663,130.56,84.5994 +127664,129.7,82.9753 +127665,131.04,87.9644 +127666,130.12,86.2775 +127667,129.25,84.619 +127668,128.42,82.9866 +127669,129.65,87.9978 +127670,128.77,86.3045 +127671,127.93,84.6391 +127672,127.14,82.9992 +127673,128.26,88.0299 +127674,127.41,86.3311 +127675,126.62,84.6595 +127676,125.86,83.013 +127677,126.87,88.0607 +127678,126.06,86.3572 +127679,125.3,84.6804 +127680,124.59,83.0282 +127681,125.47,88.0902 +127682,124.71,86.3828 +127683,123.99,84.7017 +127684,123.31,83.0446 +127685,124.08,88.1183 +127686,123.35,86.4081 +127687,122.67,84.7234 +127688,122.03,83.0624 +127689,122.68,88.1451 +127690,122,86.4328 +127691,121.36,84.7455 +127692,120.76,83.0815 +127693,121.29,88.1706 +127694,120.64,86.4571 +127695,120.04,84.7681 +127696,119.48,83.1018 +127697,119.89,88.1947 +127698,119.29,86.481 +127699,118.73,84.7911 +127700,118.21,83.1235 +127701,118.5,88.2175 +127702,117.93,86.5044 +127703,117.41,84.8146 +127704,116.93,83.1465 +127705,117.1,88.2389 +127706,116.58,86.5274 +127707,116.1,84.8385 +127708,115.66,83.1708 +127709,115.7,88.259 +127710,115.22,86.5499 +127711,114.78,84.8628 +127712,114.38,83.1964 +127713,114.31,88.2778 +127714,113.87,86.572 +127715,113.47,84.8875 +127716,113.11,83.2234 +127717,112.91,88.2952 +127718,112.51,86.5936 +127719,112.15,84.9127 +127720,111.83,83.2517 +127721,111.51,88.3113 +127722,111.16,86.6148 +127723,110.84,84.9383 +127724,110.56,83.2812 +127725,110.11,88.3261 +127726,109.8,86.6355 +127727,109.52,84.9644 +127728,109.28,83.3121 +127729,108.72,88.3396 +127730,108.44,86.6557 +127731,108.21,84.9909 +127732,108.01,83.3444 +127733,107.32,88.3517 +127734,107.09,86.6756 +127735,106.9,85.0178 +127736,106.74,83.3779 +127737,105.92,88.3626 +127738,105.73,86.6949 +127739,105.58,85.0451 +127740,105.46,83.4127 +127741,104.52,88.3721 +127742,104.38,86.7139 +127743,104.27,85.0729 +127744,104.19,83.4489 +127745,103.12,88.3803 +127746,103.02,86.7323 +127747,102.95,85.101 +127748,102.92,83.4863 +127749,101.72,88.3873 +127750,101.66,86.7504 +127751,101.64,85.1296 +127752,101.64,83.525 +127753,100.33,88.393 +127754,100.31,86.768 +127755,100.32,85.1587 +127756,100.37,83.565 +127757,98.927,88.3974 +127758,98.952,86.7852 +127759,99.009,85.1881 +127760,99.096,83.6063 +127761,97.529,88.4005 +127762,97.596,86.8019 +127763,97.694,85.218 +127764,97.823,83.6489 +127765,96.131,88.4024 +127766,96.239,86.8182 +127767,96.379,85.2482 +127768,96.549,83.6927 +127769,94.733,88.403 +127770,94.883,86.8341 +127771,95.064,85.2789 +127772,95.275,83.7378 +127773,93.335,88.4025 +127774,93.527,86.8496 +127775,93.75,85.31 +127776,94,83.7841 +127777,91.937,88.4007 +127778,92.171,86.8647 +127779,92.434,85.3415 +127780,92.726,83.8317 +127781,90.54,88.3977 +127782,90.815,86.8793 +127783,91.119,85.3733 +127784,91.451,83.8804 +127785,89.142,88.3935 +127786,89.459,86.8935 +127787,89.804,85.4056 +127788,90.175,83.9304 +127789,87.746,88.3881 +127790,88.103,86.9074 +127791,88.488,85.4382 +127792,88.9,83.9816 +127793,86.349,88.3816 +127794,86.748,86.9208 +127795,87.173,85.4713 +127796,87.624,84.034 +127797,84.953,88.3739 +127798,85.392,86.9338 +127799,85.857,85.5047 +127800,86.348,84.0875 +127801,83.557,88.3651 +127802,84.036,86.9465 +127803,84.541,85.5385 +127804,85.071,84.1422 +127805,82.162,88.3552 +127806,82.681,86.9587 +127807,83.225,85.5726 +127808,83.794,84.198 +127809,80.767,88.3442 +127810,81.325,86.9706 +127811,81.908,85.6071 +127812,82.516,84.2549 +127813,79.373,88.3321 +127814,79.97,86.9821 +127815,80.592,85.642 +127816,81.238,84.313 +127817,77.979,88.319 +127818,78.615,86.9933 +127819,79.275,85.6772 +127820,79.959,84.3721 +127821,76.586,88.3048 +127822,77.26,87.004 +127823,77.958,85.7128 +127824,78.679,84.4323 +127825,75.194,88.2895 +127826,75.905,87.0144 +127827,76.641,85.7487 +127828,77.399,84.4936 +127829,73.802,88.2733 +127830,74.551,87.0245 +127831,75.323,85.7849 +127832,76.119,84.5559 +127833,72.41,88.2561 +127834,73.196,87.0342 +127835,74.005,85.8215 +127836,74.837,84.6192 +127837,71.02,88.2379 +127838,71.842,87.0436 +127839,72.687,85.8583 +127840,73.555,84.6835 +127841,69.63,88.2188 +127842,70.488,87.0527 +127843,71.369,85.8955 +127844,72.273,84.7488 +127845,68.24,88.1988 +127846,69.134,87.0614 +127847,70.05,85.933 +127848,70.989,84.8151 +127849,66.852,88.1779 +127850,67.78,87.0698 +127851,68.732,85.9708 +127852,69.705,84.8822 +127853,65.464,88.156 +127854,66.427,87.078 +127855,67.412,86.0089 +127856,68.42,84.9503 +127857,64.077,88.1334 +127858,65.074,87.0858 +127859,66.093,86.0472 +127860,67.134,85.0193 +127861,62.691,88.1099 +127862,63.721,87.0933 +127863,64.773,86.0858 +127864,65.848,85.0891 +127865,61.306,88.0856 +127866,62.368,87.1005 +127867,63.453,86.1247 +127868,64.56,85.1598 +127869,59.922,88.0605 +127870,61.016,87.1075 +127871,62.132,86.1639 +127872,63.272,85.2313 +127873,58.538,88.0346 +127874,59.664,87.1142 +127875,60.812,86.2033 +127876,61.982,85.3036 +127877,57.156,88.008 +127878,58.312,87.1206 +127879,59.49,86.2429 +127880,60.692,85.3766 +127881,55.774,87.9807 +127882,56.96,87.1268 +127883,58.169,86.2828 +127884,59.401,85.4504 +127885,54.394,87.9527 +127886,55.609,87.1327 +127887,56.847,86.3229 +127888,58.108,85.5249 +127889,53.014,87.9241 +127890,54.258,87.1384 +127891,55.525,86.3632 +127892,56.815,85.6001 +127893,51.635,87.8948 +127894,52.907,87.1439 +127895,54.202,86.4037 +127896,55.521,85.6759 +127897,50.258,87.8649 +127898,51.557,87.1491 +127899,52.879,86.4444 +127900,54.225,85.7524 +127901,48.881,87.8344 +127902,50.207,87.1542 +127903,51.556,86.4853 +127904,52.929,85.8295 +127905,47.506,87.8034 +127906,48.857,87.159 +127907,50.232,86.5264 +127908,51.631,85.9071 +127909,46.132,87.7718 +127910,47.507,87.1637 +127911,48.908,86.5676 +127912,50.333,85.9854 +127913,44.758,87.7398 +127914,46.158,87.1682 +127915,47.583,86.609 +127916,49.033,86.0641 +127917,43.386,87.7073 +127918,44.81,87.1725 +127919,46.258,86.6506 +127920,47.732,86.1433 +127921,42.015,87.6743 +127922,43.461,87.1766 +127923,44.933,86.6923 +127924,46.43,86.223 +127925,40.646,87.6409 +127926,42.113,87.1806 +127927,43.607,86.7341 +127928,45.127,86.3031 +127929,39.277,87.6071 +127930,40.765,87.1844 +127931,42.28,86.776 +127932,43.822,86.3836 +127933,37.909,87.573 +127934,39.418,87.1881 +127935,40.954,86.818 +127936,42.516,86.4645 +127937,36.543,87.5385 +127938,38.071,87.1917 +127939,39.626,86.8602 +127940,41.209,86.5457 +127941,35.178,87.5037 +127942,36.724,87.1952 +127943,38.299,86.9024 +127944,39.901,86.6273 +127945,33.814,87.4687 +127946,35.378,87.1985 +127947,36.971,86.9447 +127948,38.592,86.7091 +127949,32.452,87.4334 +127950,34.032,87.2018 +127951,35.642,86.9871 +127952,37.281,86.7912 +127953,31.09,87.3979 +127954,32.687,87.205 +127955,34.313,87.0295 +127956,35.969,86.8735 +127957,29.73,87.3622 +127958,31.342,87.2081 +127959,32.983,87.072 +127960,34.656,86.9559 +127961,28.371,87.3264 +127962,29.997,87.2111 +127963,31.653,87.1145 +127964,33.341,87.0385 +127965,27.014,87.2904 +127966,28.653,87.2141 +127967,30.323,87.1571 +127968,32.025,87.1213 +127969,25.658,87.2543 +127970,27.309,87.217 +127971,28.992,87.1996 +127972,30.708,87.2041 +127973,24.303,87.2182 +127974,25.966,87.2199 +127975,27.661,87.2422 +127976,29.389,87.287 +127977,22.949,87.182 +127978,24.622,87.2228 +127979,26.329,87.2848 +127980,28.069,87.3699 +127981,21.596,87.1458 +127982,23.28,87.2257 +127983,24.996,87.3273 +127984,26.747,87.4528 +127985,20.245,87.1096 +127986,21.938,87.2285 +127987,23.663,87.3698 +127988,25.425,87.5357 +127989,18.896,87.0735 +127990,20.596,87.2314 +127991,22.33,87.4123 +127992,24.101,87.6185 +127993,17.547,87.0374 +127994,19.254,87.2343 +127995,20.996,87.4548 +127996,22.775,87.7012 +127997,16.2,87.0015 +127998,17.913,87.2372 +127999,19.662,87.4971 +128000,21.448,87.7837 +128001,14.854,86.9657 +128002,16.573,87.2401 +128003,18.327,87.5394 +128004,20.12,87.8661 +128005,13.51,86.9301 +128006,15.232,87.2431 +128007,16.992,87.5817 +128008,18.79,87.9483 +128009,12.167,86.8947 +128010,13.893,87.2462 +128011,15.656,87.6238 +128012,17.459,88.0302 +128013,10.825,86.8595 +128014,12.553,87.2493 +128015,14.319,87.6659 +128016,16.126,88.1119 +128017,9.4844,86.8245 +128018,11.214,87.2524 +128019,12.982,87.7078 +128020,14.792,88.1933 +128021,8.1452,86.7898 +128022,9.8758,87.2557 +128023,11.645,87.7496 +128024,13.456,88.2744 +128025,6.8074,86.7555 +128026,8.5377,87.2591 +128027,10.307,87.7913 +128028,12.12,88.3551 +128029,5.4708,86.7215 +128030,7.2,87.2625 +128031,8.9689,87.8328 +128032,10.781,88.4354 +128033,4.1356,86.6879 +128034,5.8627,87.2661 +128035,7.63,87.8742 +128036,9.4416,88.5152 +128037,2.8018,86.6546 +128038,4.5258,87.2698 +128039,6.2906,87.9154 +128040,8.1004,88.5947 +128041,1.4692,86.6218 +128042,3.1894,87.2736 +128043,4.9508,87.9565 +128044,6.7578,88.6736 +128045,0.13794,86.5895 +128046,1.8533,87.2776 +128047,3.6104,87.9974 +128048,5.4138,88.752 +128049,358.81,86.5576 +128050,0.5177,87.2818 +128051,2.2695,88.038 +128052,4.0684,88.8299 +128053,357.48,86.5263 +128054,359.18,87.2861 +128055,0.92817,88.0785 +128056,2.7216,88.9072 +128057,356.15,86.4955 +128058,357.85,87.2905 +128059,359.59,88.1188 +128060,1.3734,88.9839 +128061,354.83,86.4652 +128062,356.51,87.2952 +128063,358.24,88.1588 +128064,0.023714,89.05993 +128065,353.5,86.4356 +128066,355.18,87.3 +128067,356.9,88.1986 +128068,358.67,89.13531 +128069,352.18,86.4066 +128070,353.85,87.305 +128071,355.56,88.2382 +128072,357.32,89.21 +128073,350.86,86.3782 +128074,352.51,87.3103 +128075,354.21,88.2775 +128076,355.97,89.28396 +128077,349.53,86.3505 +128078,351.18,87.3157 +128079,352.87,88.3166 +128080,354.61,89.35717 +128081,348.21,86.3235 +128082,349.85,87.3214 +128083,351.52,88.3554 +128084,353.25,89.4296 +128085,346.9,86.2972 +128086,348.52,87.3273 +128087,350.18,88.3939 +128088,351.9,89.50122 +128089,345.58,86.2717 +128090,347.18,87.3335 +128091,348.83,88.4322 +128092,350.54,89.57201 +128093,344.26,86.2469 +128094,345.85,87.3399 +128095,347.49,88.4701 +128096,349.18,89.64193 +128097,342.95,86.2229 +128098,344.52,87.3466 +128099,346.14,88.5077 +128100,347.82,89.71096 +128101,341.63,86.1998 +128102,343.19,87.3535 +128103,344.79,88.5451 +128104,346.45,89.77908 +128105,340.32,86.1775 +128106,341.86,87.3607 +128107,343.45,88.5821 +128108,345.09,89.84626 +128109,339.01,86.1561 +128110,340.53,87.3682 +128111,342.1,88.6188 +128112,343.72,89.912476 +128113,337.7,86.1356 +128114,339.2,87.376 +128115,340.75,88.6551 +128116,342.35,89.977703 +128117,336.39,86.116 +128118,337.87,87.3841 +128119,339.4,88.6911 +128120,340.99,90.041917 +128121,335.08,86.0973 +128122,336.54,87.3924 +128123,338.05,88.7268 +128124,339.62,90.10509 +128125,333.77,86.0796 +128126,335.21,87.4011 +128127,336.7,88.762 +128128,338.25,90.16722 +128129,332.47,86.0628 +128130,333.89,87.4101 +128131,335.35,88.797 +128132,336.87,90.22825 +128133,331.16,86.0471 +128134,332.56,87.4195 +128135,334,88.8315 +128136,335.5,90.28819 +128137,329.86,86.0324 +128138,331.23,87.4292 +128139,332.65,88.8657 +128140,334.13,90.34701 +128141,328.56,86.0187 +128142,329.9,87.4392 +128143,331.3,88.8995 +128144,332.75,90.40468 +128145,327.25,86.006 +128146,328.58,87.4495 +128147,329.95,88.9329 +128148,331.37,90.46119 +128149,325.95,85.9945 +128150,327.25,87.4602 +128151,328.6,88.9659 +128152,330,90.51651 +128153,324.65,85.984 +128154,325.92,87.4713 +128155,327.24,88.9984 +128156,328.62,90.57064 +128157,323.35,85.9747 +128158,324.6,87.4827 +128159,325.89,89.03061 +128160,327.24,90.62355 +128161,322.06,85.9665 +128162,323.27,87.4945 +128163,324.54,89.06236 +128164,325.86,90.67522 +128165,320.76,85.9594 +128166,321.95,87.5067 +128167,323.18,89.09369 +128168,324.47,90.72565 +128169,319.46,85.9535 +128170,320.62,87.5192 +128171,321.83,89.1246 +128172,323.09,90.7748 +128173,318.17,85.9488 +128174,319.3,87.5321 +128175,320.47,89.15507 +128176,321.71,90.82267 +128177,316.87,85.9452 +128178,317.97,87.5454 +128179,319.12,89.1851 +128180,320.32,90.86925 +128181,315.58,85.9429 +128182,316.65,87.5592 +128183,317.76,89.21468 +128184,318.94,90.91451 +128185,314.28,85.9418 +128186,315.32,87.5733 +128187,316.41,89.24382 +128188,317.55,90.95845 +128189,312.99,85.9419 +128190,314,87.5878 +128191,315.05,89.27251 +128192,316.16,91.0011 +128193,311.7,85.9433 +128194,312.68,87.6027 +128195,313.7,89.30074 +128196,314.77,91.0423 +128197,310.41,85.9459 +128198,311.35,87.618 +128199,312.34,89.32851 +128200,313.38,91.0822 +128201,309.12,85.9498 +128202,310.03,87.6337 +128203,310.99,89.35582 +128204,311.99,91.1208 +128205,307.83,85.9549 +128206,308.71,87.6499 +128207,309.63,89.38266 +128208,310.6,91.1579 +128209,306.54,85.9614 +128210,307.38,87.6665 +128211,308.27,89.40903 +128212,309.21,91.1937 +128213,305.25,85.9691 +128214,306.06,87.6834 +128215,306.91,89.43492 +128216,307.82,91.2281 +128217,303.96,85.9782 +128218,304.74,87.7009 +128219,305.56,89.46035 +128220,306.43,91.261 +128221,302.67,85.9885 +128222,303.41,87.7187 +128223,304.2,89.48529 +128224,305.03,91.2926 +128225,301.38,86.0002 +128226,302.09,87.737 +128227,302.84,89.50975 +128228,303.64,91.3227 +128229,300.1,86.0132 +128230,300.77,87.7557 +128231,301.48,89.53374 +128232,302.24,91.3515 +128233,298.81,86.0275 +128234,299.45,87.7748 +128235,300.12,89.55723 +128236,300.85,91.3788 +128237,297.53,86.0432 +128238,298.13,87.7943 +128239,298.77,89.58025 +128240,299.45,91.4047 +128241,296.24,86.0602 +128242,296.8,87.8143 +128243,297.41,89.60277 +128244,298.06,91.4292 +128245,294.96,86.0785 +128246,295.48,87.8348 +128247,296.05,89.62481 +128248,296.66,91.4522 +128249,293.67,86.0982 +128250,294.16,87.8556 +128251,294.69,89.64636 +128252,295.26,91.4738 +128253,292.39,86.1193 +128254,292.84,87.877 +128255,293.33,89.66742 +128256,293.86,91.494 +128257,291.1,86.1417 +128258,291.52,87.8987 +128259,291.97,89.688 +128260,292.46,91.5127 +128261,289.82,86.1654 +128262,290.19,87.9209 +128263,290.61,89.70808 +128264,291.07,91.53 +128265,288.53,86.1905 +128266,288.87,87.9435 +128267,289.25,89.72768 +128268,289.67,91.5459 +128269,287.25,86.217 +128270,287.55,87.9666 +128271,287.89,89.74678 +128272,288.27,91.5604 +128273,285.97,86.2448 +128274,286.23,87.99 +128275,286.53,89.7654 +128276,286.87,91.5734 +128277,284.68,86.2739 +128278,284.91,88.014 +128279,285.17,89.78354 +128280,285.47,91.5851 +128281,283.4,86.3044 +128282,283.59,88.0383 +128283,283.81,89.80119 +128284,284.07,91.5953 +128285,282.12,86.3363 +128286,282.27,88.0631 +128287,282.45,89.81835 +128288,282.67,91.6041 +128289,280.83,86.3695 +128290,280.94,88.0883 +128291,281.09,89.83503 +128292,281.27,91.6115 +128293,279.55,86.404 +128294,279.62,88.114 +128295,279.73,89.85124 +128296,279.87,91.6175 +128297,278.27,86.4398 +128298,278.3,88.1401 +128299,278.37,89.86696 +128300,278.47,91.6222 +128301,276.98,86.477 +128302,276.98,88.1666 +128303,277.01,89.88221 +128304,277.07,91.6254 +128305,275.7,86.5155 +128306,275.66,88.1935 +128307,275.65,89.89699 +128308,275.67,91.6273 +128309,274.42,86.5553 +128310,274.34,88.2208 +128311,274.29,89.911292 +128312,274.27,91.6279 +128313,273.13,86.5964 +128314,273.01,88.2486 +128315,272.93,89.925131 +128316,272.87,91.6271 +128317,271.85,86.6388 +128318,271.69,88.2768 +128319,271.56,89.938507 +128320,271.47,91.6249 +128321,270.57,86.6824 +128322,270.37,88.3053 +128323,270.2,89.951422 +128324,270.07,91.6215 +128325,269.28,86.7274 +128326,269.05,88.3343 +128327,268.84,89.963881 +128328,268.67,91.6167 +128329,268,86.7736 +128330,267.73,88.3637 +128331,267.48,89.975888 +128332,267.27,91.6106 +128333,266.71,86.8211 +128334,266.4,88.3935 +128335,266.12,89.987447 +128336,265.87,91.6033 +128337,265.43,86.8697 +128338,265.08,88.4237 +128339,264.76,89.9985622 +128340,264.47,91.5947 +128341,264.14,86.9197 +128342,263.76,88.4542 +128343,263.4,90.0092385 +128344,263.07,91.5848 +128345,262.86,86.9708 +128346,262.44,88.4852 +128347,262.04,90.019481 +128348,261.67,91.5737 +128349,261.57,87.0231 +128350,261.11,88.5165 +128351,260.68,90.029294 +128352,260.27,91.5614 +128353,260.28,87.0766 +128354,259.79,88.5482 +128355,259.32,90.038684 +128356,258.88,91.5479 +128357,259,87.1313 +128358,258.47,88.5803 +128359,257.96,90.047655 +128360,257.48,91.5332 +128361,257.71,87.1872 +128362,257.14,88.6127 +128363,256.6,90.056215 +128364,256.08,91.5173 +128365,256.42,87.2441 +128366,255.82,88.6455 +128367,255.24,90.064367 +128368,254.69,91.5002 +128369,255.13,87.3022 +128370,254.5,88.6786 +128371,253.88,90.072119 +128372,253.29,91.4821 +128373,253.84,87.3614 +128374,253.17,88.7121 +128375,252.52,90.079477 +128376,251.89,91.4628 +128377,252.55,87.4217 +128378,251.85,88.7459 +128379,251.16,90.086448 +128380,250.5,91.4425 +128381,251.26,87.483 +128382,250.52,88.7801 +128383,249.8,90.093037 +128384,249.11,91.4211 +128385,249.97,87.5454 +128386,249.2,88.8145 +128387,248.45,90.099252 +128388,247.71,91.3986 +128389,248.68,87.6087 +128390,247.87,88.8493 +128391,247.09,90.1051 +128392,246.32,91.3751 +128393,247.39,87.6731 +128394,246.55,88.8844 +128395,245.73,90.11059 +128396,244.93,91.3506 +128397,246.09,87.7385 +128398,245.22,88.9198 +128399,244.37,90.11572 +128400,243.53,91.3251 +128401,244.8,87.8048 +128402,243.9,88.9555 +128403,243.01,90.12052 +128404,242.14,91.2987 +128405,243.51,87.8721 +128406,242.57,88.9915 +128407,241.65,90.12497 +128408,240.75,91.2714 +128409,242.21,87.9403 +128410,241.25,89.02776 +128411,240.3,90.12909 +128412,239.36,91.2431 +128413,240.92,88.0093 +128414,239.92,89.06428 +128415,238.94,90.1329 +128416,237.98,91.2139 +128417,239.62,88.0792 +128418,238.59,89.10107 +128419,237.58,90.13639 +128420,236.59,91.1839 +128421,238.32,88.15 +128422,237.26,89.13812 +128423,236.22,90.13957 +128424,235.2,91.1531 +128425,237.02,88.2216 +128426,235.94,89.1754 +128427,234.87,90.14246 +128428,233.81,91.1214 +128429,235.72,88.2939 +128430,234.61,89.21293 +128431,233.51,90.14506 +128432,232.43,91.089 +128433,234.42,88.3671 +128434,233.28,89.25068 +128435,232.15,90.14738 +128436,231.04,91.0558 +128437,233.12,88.4409 +128438,231.95,89.28865 +128439,230.8,90.14943 +128440,229.66,91.0219 +128441,231.82,88.5155 +128442,230.62,89.32683 +128443,229.44,90.15122 +128444,228.28,90.98733 +128445,230.51,88.5907 +128446,229.29,89.36521 +128447,228.09,90.15276 +128448,226.9,90.95205 +128449,229.21,88.6666 +128450,227.96,89.40378 +128451,226.73,90.15406 +128452,225.52,90.91613 +128453,227.9,88.7431 +128454,226.63,89.44253 +128455,225.38,90.15512 +128456,224.14,90.87959 +128457,226.6,88.8203 +128458,225.3,89.48145 +128459,224.02,90.15596 +128460,222.76,90.84246 +128461,225.29,88.898 +128462,223.97,89.52053 +128463,222.67,90.15658 +128464,221.38,90.80478 +128465,223.98,88.9762 +128466,222.64,89.55976 +128467,221.31,90.157 +128468,220,90.76656 +128469,222.67,89.05491 +128470,221.31,89.59914 +128471,219.96,90.15722 +128472,218.63,90.72784 +128473,221.36,89.13412 +128474,219.98,89.63864 +128475,218.61,90.15726 +128476,217.25,90.68866 +128477,220.05,89.21378 +128478,218.64,89.67827 +128479,217.25,90.15713 +128480,215.88,90.64903 +128481,218.74,89.29385 +128482,217.31,89.71801 +128483,215.9,90.15682 +128484,214.51,90.60898 +128485,217.42,89.37431 +128486,215.98,89.75784 +128487,214.55,90.15637 +128488,213.14,90.56856 +128489,216.11,89.45513 +128490,214.64,89.79777 +128491,213.2,90.15576 +128492,211.77,90.52778 +128493,214.79,89.53626 +128494,213.31,89.83778 +128495,211.85,90.15502 +128496,210.4,90.48668 +128497,213.47,89.61769 +128498,211.98,89.87785 +128499,210.49,90.15416 +128500,209.03,90.44529 +128501,212.15,89.69937 +128502,210.64,89.917984 +128503,209.14,90.15318 +128504,207.67,90.40364 +128505,210.83,89.78128 +128506,209.3,89.958164 +128507,207.79,90.1521 +128508,206.3,90.36175 +128509,209.51,89.86339 +128510,207.97,89.9983807 +128511,206.44,90.15092 +128512,204.94,90.31967 +128513,208.19,89.945653 +128514,206.63,90.038623 +128515,205.09,90.14966 +128516,203.57,90.27742 +128517,206.87,90.028047 +128518,205.3,90.078879 +128519,203.74,90.14833 +128520,202.21,90.23502 +128521,205.54,90.11054 +128522,203.96,90.11914 +128523,202.4,90.14693 +128524,200.85,90.19252 +128525,204.21,90.19309 +128526,202.62,90.15939 +128527,201.05,90.14549 +128528,199.49,90.14995 +128529,202.89,90.27567 +128530,201.28,90.19963 +128531,199.7,90.144 +128532,198.14,90.10732 +128533,201.56,90.35825 +128534,199.94,90.23983 +128535,198.35,90.14248 +128536,196.78,90.064685 +128537,200.23,90.44079 +128538,198.6,90.28 +128539,197,90.14093 +128540,195.42,90.022063 +128541,198.9,90.52326 +128542,197.26,90.32012 +128543,195.66,90.13938 +128544,194.07,89.979486 +128545,197.56,90.60562 +128546,195.92,90.36017 +128547,194.31,90.13783 +128548,192.72,89.936987 +128549,196.23,90.68785 +128550,194.58,90.40015 +128551,192.96,90.13629 +128552,191.37,89.8946 +128553,194.89,90.7699 +128554,193.24,90.44005 +128555,191.62,90.13477 +128556,190.01,89.85234 +128557,193.56,90.85176 +128558,191.9,90.47985 +128559,190.27,90.13328 +128560,188.67,89.81026 +128561,192.22,90.93337 +128562,190.56,90.51954 +128563,188.93,90.13183 +128564,187.32,89.76838 +128565,190.88,91.0147 +128566,189.22,90.55912 +128567,187.58,90.13044 +128568,185.97,89.72672 +128569,189.54,91.0957 +128570,187.87,90.59857 +128571,186.24,90.1291 +128572,184.63,89.68533 +128573,188.2,91.1764 +128574,186.53,90.63789 +128575,184.89,90.12784 +128576,183.28,89.64422 +128577,186.85,91.2568 +128578,185.19,90.67705 +128579,183.55,90.12667 +128580,181.94,89.60344 +128581,185.51,91.3367 +128582,183.84,90.71605 +128583,182.21,90.12558 +128584,180.6,89.56301 +128585,184.16,91.4162 +128586,182.5,90.75488 +128587,180.86,90.1246 +128588,179.26,89.52296 +128589,182.81,91.4952 +128590,181.15,90.79354 +128591,179.52,90.12374 +128592,177.92,89.48331 +128593,181.47,91.5737 +128594,179.81,90.832 +128595,178.18,90.12299 +128596,176.58,89.44411 +128597,180.12,91.6517 +128598,178.46,90.87025 +128599,176.84,90.12238 +128600,175.24,89.40537 +128601,178.76,91.7291 +128602,177.11,90.9083 +128603,175.5,90.12191 +128604,173.91,89.36713 +128605,177.41,91.8059 +128606,175.77,90.94612 +128607,174.16,90.1216 +128608,172.58,89.32941 +128609,176.06,91.8821 +128610,174.42,90.98371 +128611,172.82,90.12144 +128612,171.24,89.29224 +128613,174.7,91.9576 +128614,173.07,91.0211 +128615,171.48,90.12146 +128616,169.91,89.25566 +128617,173.35,92.0324 +128618,171.72,91.0581 +128619,170.14,90.12166 +128620,168.58,89.21968 +128621,171.99,92.1065 +128622,170.37,91.095 +128623,168.8,90.12205 +128624,167.25,89.18435 +128625,170.63,92.1799 +128626,169.02,91.1315 +128627,167.46,90.12264 +128628,165.92,89.14967 +128629,169.27,92.2525 +128630,167.68,91.1678 +128631,166.12,90.12344 +128632,164.6,89.11568 +128633,167.91,92.3242 +128634,166.32,91.2038 +128635,164.78,90.12446 +128636,163.27,89.08241 +128637,166.54,92.3951 +128638,164.97,91.2395 +128639,163.44,90.12571 +128640,161.95,89.04988 +128641,165.18,92.4652 +128642,163.62,91.2748 +128643,162.11,90.12718 +128644,160.62,89.01812 +128645,163.81,92.5343 +128646,162.27,91.3099 +128647,160.77,90.12891 +128648,159.3,88.9872 +128649,162.45,92.6025 +128650,160.92,91.3446 +128651,159.43,90.13088 +128652,157.98,88.957 +128653,161.08,92.6698 +128654,159.57,91.379 +128655,158.1,90.13312 +128656,156.66,88.9277 +128657,159.71,92.7361 +128658,158.21,91.413 +128659,156.76,90.13563 +128660,155.34,88.8992 +128661,158.34,92.8013 +128662,156.86,91.4467 +128663,155.42,90.13841 +128664,154.02,88.8717 +128665,156.97,92.8656 +128666,155.51,91.48 +128667,154.09,90.14148 +128668,152.71,88.8451 +128669,155.59,92.9287 +128670,154.15,91.5129 +128671,152.75,90.14484 +128672,151.39,88.8194 +128673,154.22,92.9908 +128674,152.8,91.5455 +128675,151.42,90.1485 +128676,150.07,88.7946 +128677,152.85,93.0518 +128678,151.44,91.5777 +128679,150.08,90.15247 +128680,148.76,88.7708 +128681,151.47,93.1116 +128682,150.09,91.6094 +128683,148.75,90.15675 +128684,147.45,88.7481 +128685,150.09,93.1703 +128686,148.73,91.6408 +128687,147.42,90.16136 +128688,146.14,88.7263 +128689,148.71,93.2278 +128690,147.38,91.6718 +128691,146.08,90.16629 +128692,144.83,88.7057 +128693,147.33,93.2841 +128694,146.02,91.7023 +128695,144.75,90.17156 +128696,143.52,88.686 +128697,145.95,93.3392 +128698,144.66,91.7325 +128699,143.42,90.17717 +128700,142.21,88.6675 +128701,144.57,93.393 +128702,143.31,91.7621 +128703,142.08,90.18313 +128704,140.9,88.65 +128705,143.19,93.4456 +128706,141.95,91.7914 +128707,140.75,90.18945 +128708,139.59,88.6337 +128709,141.81,93.4969 +128710,140.59,91.8202 +128711,139.42,90.19612 +128712,138.28,88.6185 +128713,140.42,93.5469 +128714,139.23,91.8486 +128715,138.09,90.20316 +128716,136.98,88.6045 +128717,139.04,93.5955 +128718,137.87,91.8765 +128719,136.76,90.21057 +128720,135.67,88.5916 +128721,137.65,93.6429 +128722,136.51,91.9039 +128723,135.42,90.21836 +128724,134.37,88.5799 +128725,136.26,93.6888 +128726,135.16,91.9309 +128727,134.09,90.22653 +128728,133.07,88.5694 +128729,134.87,93.7334 +128730,133.8,91.9574 +128731,132.76,90.23509 +128732,131.76,88.5602 +128733,133.49,93.7767 +128734,132.44,91.9834 +128735,131.43,90.24404 +128736,130.46,88.5521 +128737,132.1,93.8185 +128738,131.08,92.0089 +128739,130.1,90.25339 +128740,129.16,88.5453 +128741,130.71,93.8589 +128742,129.72,92.034 +128743,128.77,90.26313 +128744,127.86,88.5398 +128745,129.31,93.8979 +128746,128.36,92.0585 +128747,127.44,90.27328 +128748,126.56,88.5356 +128749,127.92,93.9354 +128750,126.99,92.0826 +128751,126.11,90.28384 +128752,125.26,88.5326 +128753,126.53,93.9715 +128754,125.63,92.1062 +128755,124.78,90.29481 +128756,123.96,88.5309 +128757,125.14,94.0061 +128758,124.27,92.1292 +128759,123.45,90.3062 +128760,122.67,88.5305 +128761,123.74,94.0393 +128762,122.91,92.1518 +128763,122.12,90.318 +128764,121.37,88.5315 +128765,122.35,94.071 +128766,121.55,92.1738 +128767,120.79,90.33023 +128768,120.07,88.5337 +128769,120.95,94.1012 +128770,120.19,92.1954 +128771,119.46,90.34288 +128772,118.77,88.5373 +128773,119.55,94.1299 +128774,118.82,92.2164 +128775,118.13,90.35596 +128776,117.48,88.5422 +128777,118.16,94.1571 +128778,117.46,92.2369 +128779,116.8,90.36947 +128780,116.18,88.5485 +128781,116.76,94.1828 +128782,116.1,92.2569 +128783,115.48,90.3834 +128784,114.89,88.5561 +128785,115.36,94.207 +128786,114.74,92.2764 +128787,114.15,90.39777 +128788,113.59,88.5651 +128789,113.97,94.2296 +128790,113.37,92.2953 +128791,112.82,90.41258 +128792,112.3,88.5755 +128793,112.57,94.2508 +128794,112.01,92.3137 +128795,111.49,90.42782 +128796,111,88.5872 +128797,111.17,94.2704 +128798,110.65,92.3316 +128799,110.16,90.44349 +128800,109.71,88.6003 +128801,109.77,94.2885 +128802,109.28,92.349 +128803,108.83,90.4596 +128804,108.42,88.6148 +128805,108.37,94.3051 +128806,107.92,92.3658 +128807,107.51,90.47616 +128808,107.12,88.6306 +128809,106.97,94.3201 +128810,106.55,92.3821 +128811,106.18,90.49314 +128812,105.83,88.6479 +128813,105.57,94.3337 +128814,105.19,92.3979 +128815,104.85,90.51057 +128816,104.54,88.6665 +128817,104.17,94.3457 +128818,103.83,92.4131 +128819,103.52,90.52844 +128820,103.25,88.6865 +128821,102.77,94.3562 +128822,102.46,92.4279 +128823,102.19,90.54674 +128824,101.95,88.7078 +128825,101.36,94.3652 +128826,101.1,92.4421 +128827,100.86,90.56548 +128828,100.66,88.7306 +128829,99.964,94.3726 +128830,99.733,92.4557 +128831,99.537,90.58466 +128832,99.369,88.7547 +128833,98.562,94.3786 +128834,98.369,92.4689 +128835,98.209,90.60427 +128836,98.077,88.7802 +128837,97.161,94.383 +128838,97.005,92.4815 +128839,96.88,90.62432 +128840,96.785,88.8071 +128841,95.759,94.386 +128842,95.64,92.4936 +128843,95.552,90.6448 +128844,95.492,88.8353 +128845,94.357,94.3875 +128846,94.275,92.5052 +128847,94.224,90.66571 +128848,94.2,88.865 +128849,92.955,94.3875 +128850,92.911,92.5163 +128851,92.896,90.68704 +128852,92.908,88.8959 +128853,91.554,94.386 +128854,91.546,92.5269 +128855,91.568,90.70881 +128856,91.615,88.9282 +128857,90.152,94.3831 +128858,90.181,92.5369 +128859,90.239,90.73099 +128860,90.323,88.9619 +128861,88.75,94.3787 +128862,88.817,92.5464 +128863,88.911,90.7536 +128864,89.03,88.9969 +128865,87.349,94.3728 +128866,87.452,92.5555 +128867,87.583,90.77662 +128868,87.737,89.03326 +128869,85.947,94.3656 +128870,86.088,92.564 +128871,86.254,90.80006 +128872,86.444,89.07092 +128873,84.546,94.3569 +128874,84.723,92.572 +128875,84.926,90.82391 +128876,85.151,89.10989 +128877,83.145,94.3468 +128878,83.358,92.5796 +128879,83.597,90.84817 +128880,83.858,89.15016 +128881,81.744,94.3354 +128882,81.994,92.5866 +128883,82.268,90.87283 +128884,82.564,89.19173 +128885,80.343,94.3225 +128886,80.629,92.5932 +128887,80.939,90.89789 +128888,81.27,89.23458 +128889,78.943,94.3083 +128890,79.265,92.5992 +128891,79.61,90.92334 +128892,79.975,89.27869 +128893,77.543,94.2928 +128894,77.901,92.6048 +128895,78.281,90.94919 +128896,78.681,89.32406 +128897,76.143,94.2759 +128898,76.537,92.61 +128899,76.951,90.97541 +128900,77.385,89.37067 +128901,74.744,94.2578 +128902,75.172,92.6146 +128903,75.622,91.002 +128904,76.09,89.41851 +128905,73.345,94.2383 +128906,73.808,92.6188 +128907,74.292,91.029 +128908,74.794,89.46757 +128909,71.946,94.2176 +128910,72.444,92.6226 +128911,72.962,91.0564 +128912,73.497,89.51782 +128913,70.548,94.1956 +128914,71.081,92.6259 +128915,71.632,91.0841 +128916,72.2,89.56925 +128917,69.151,94.1724 +128918,69.717,92.6287 +128919,70.302,91.1121 +128920,70.903,89.62184 +128921,67.754,94.1479 +128922,68.354,92.6311 +128923,68.971,91.1406 +128924,69.605,89.67559 +128925,66.357,94.1223 +128926,66.99,92.6331 +128927,67.64,91.1693 +128928,68.306,89.73046 +128929,64.961,94.0955 +128930,65.627,92.6347 +128931,66.309,91.1984 +128932,67.007,89.78644 +128933,63.566,94.0676 +128934,64.264,92.6358 +128935,64.978,91.2279 +128936,65.707,89.84352 +128937,62.171,94.0385 +128938,62.901,92.6365 +128939,63.647,91.2576 +128940,64.407,89.901667 +128941,60.777,94.0083 +128942,61.538,92.6369 +128943,62.315,91.2877 +128944,63.106,89.960867 +128945,59.383,93.9771 +128946,60.176,92.6368 +128947,60.983,91.3181 +128948,61.804,90.021097 +128949,57.99,93.9448 +128950,58.814,92.6363 +128951,59.651,91.3488 +128952,60.501,90.082336 +128953,56.598,93.9114 +128954,57.452,92.6355 +128955,58.318,91.3798 +128956,59.198,90.14456 +128957,55.207,93.8771 +128958,56.09,92.6343 +128959,56.986,91.4111 +128960,57.894,90.20775 +128961,53.816,93.8418 +128962,54.728,92.6327 +128963,55.653,91.4426 +128964,56.589,90.27189 +128965,52.426,93.8055 +128966,53.367,92.6308 +128967,54.319,91.4744 +128968,55.283,90.33694 +128969,51.037,93.7683 +128970,52.005,92.6285 +128971,52.986,91.5065 +128972,53.977,90.40288 +128973,49.649,93.7302 +128974,50.645,92.6259 +128975,51.652,91.5388 +128976,52.67,90.46969 +128977,48.262,93.6912 +128978,49.284,92.623 +128979,50.318,91.5714 +128980,51.362,90.53735 +128981,46.875,93.6514 +128982,47.923,92.6197 +128983,48.983,91.6042 +128984,50.053,90.60582 +128985,45.49,93.6108 +128986,46.563,92.6161 +128987,47.648,91.6373 +128988,48.743,90.67509 +128989,44.105,93.5694 +128990,45.203,92.6123 +128991,46.313,91.6706 +128992,47.432,90.74512 +128993,42.721,93.5272 +128994,43.844,92.6081 +128995,44.977,91.704 +128996,46.12,90.81589 +128997,41.338,93.4843 +128998,42.485,92.6036 +128999,43.641,91.7377 +129000,44.807,90.88737 +129001,39.956,93.4407 +129002,41.126,92.5989 +129003,42.305,91.7715 +129004,43.494,90.95953 +129005,38.575,93.3964 +129006,39.767,92.5939 +129007,40.968,91.8056 +129008,42.179,91.0323 +129009,37.196,93.3515 +129010,38.408,92.5887 +129011,39.631,91.8398 +129012,40.863,91.1058 +129013,35.817,93.3059 +129014,37.05,92.5832 +129015,38.294,91.8742 +129016,39.547,91.1798 +129017,34.439,93.2598 +129018,35.693,92.5774 +129019,36.956,91.9087 +129020,38.229,91.2544 +129021,33.062,93.2132 +129022,34.335,92.5715 +129023,35.618,91.9433 +129024,36.91,91.3296 +129025,31.686,93.166 +129026,32.978,92.5653 +129027,34.28,91.9781 +129028,35.59,91.4052 +129029,30.311,93.1183 +129030,31.621,92.559 +129031,32.941,92.013 +129032,34.269,91.4813 +129033,28.938,93.0702 +129034,30.265,92.5524 +129035,31.602,92.048 +129036,32.947,91.5579 +129037,27.565,93.0216 +129038,28.909,92.5457 +129039,30.262,92.0831 +129040,31.624,91.6349 +129041,26.194,92.9727 +129042,27.553,92.5388 +129043,28.922,92.1183 +129044,30.3,91.7122 +129045,24.824,92.9234 +129046,26.197,92.5317 +129047,27.581,92.1536 +129048,28.974,91.7899 +129049,23.455,92.8737 +129050,24.842,92.5244 +129051,26.24,92.1889 +129052,27.648,91.868 +129053,22.087,92.8238 +129054,23.488,92.5171 +129055,24.899,92.2243 +129056,26.32,91.9463 +129057,20.72,92.7736 +129058,22.133,92.5096 +129059,23.557,92.2597 +129060,24.991,92.0248 +129061,19.354,92.7231 +129062,20.779,92.502 +129063,22.215,92.2952 +129064,23.661,92.1036 +129065,17.989,92.6725 +129066,19.426,92.4942 +129067,20.873,92.3306 +129068,22.33,92.1826 +129069,16.626,92.6217 +129070,18.072,92.4864 +129071,19.53,92.3661 +129072,20.997,92.2617 +129073,15.264,92.5707 +129074,16.719,92.4785 +129075,18.186,92.4016 +129076,19.664,92.3409 +129077,13.903,92.5197 +129078,15.367,92.4705 +129079,16.843,92.4371 +129080,18.329,92.4203 +129081,12.543,92.4686 +129082,14.015,92.4625 +129083,15.498,92.4725 +129084,16.993,92.4996 +129085,11.184,92.4174 +129086,12.663,92.4543 +129087,14.154,92.5079 +129088,15.655,92.579 +129089,9.827,92.3662 +129090,11.311,92.4462 +129091,12.808,92.5433 +129092,14.317,92.6584 +129093,8.4707,92.315 +129094,9.9604,92.438 +129095,11.463,92.5786 +129096,12.977,92.7377 +129097,7.1157,92.2639 +129098,8.6098,92.4298 +129099,10.117,92.6139 +129100,11.636,92.817 +129101,5.7619,92.2129 +129102,7.2595,92.4216 +129103,8.7704,92.649 +129104,10.294,92.8961 +129105,4.4093,92.162 +129106,5.9096,92.4134 +129107,7.4235,92.6841 +129108,8.9502,92.9751 +129109,3.0579,92.1113 +129110,4.5601,92.4052 +129111,6.0762,92.7191 +129112,7.6055,93.0539 +129113,1.7078,92.0607 +129114,3.2109,92.397 +129115,4.7284,92.7539 +129116,6.2595,93.1324 +129117,0.35879,92.0104 +129118,1.8622,92.3888 +129119,3.3802,92.7886 +129120,4.9123,93.2107 +129121,359.01,91.9603 +129122,0.51382,92.3807 +129123,2.0315,92.8232 +129124,3.5638,93.2888 +129125,357.66,91.9104 +129126,359.17,92.3727 +129127,0.68247,92.8577 +129128,2.2141,93.3665 +129129,356.32,91.8609 +129130,357.82,92.3647 +129131,359.33,92.8919 +129132,0.86309,93.4438 +129133,354.97,91.8117 +129134,356.47,92.3568 +129135,357.98,92.926 +129136,359.51,93.5208 +129137,353.63,91.7629 +129138,355.12,92.349 +129139,356.63,92.96 +129140,358.16,93.5973 +129141,352.29,91.7145 +129142,353.78,92.3412 +129143,355.28,92.9937 +129144,356.8,93.6733 +129145,350.95,91.6665 +129146,352.43,92.3336 +129147,353.93,93.0272 +129148,355.45,93.7489 +129149,349.61,91.619 +129150,351.09,92.3261 +129151,352.58,93.0606 +129152,354.09,93.824 +129153,348.27,91.572 +129154,349.74,92.3187 +129155,351.23,93.0936 +129156,352.73,93.8985 +129157,346.93,91.5255 +129158,348.4,92.3115 +129159,349.87,93.1265 +129160,351.37,93.9723 +129161,345.6,91.4795 +129162,347.05,92.3044 +129163,348.52,93.1591 +129164,350.01,94.0456 +129165,344.26,91.4341 +129166,345.71,92.2975 +129167,347.17,93.1915 +129168,348.65,94.1182 +129169,342.93,91.3893 +129170,344.36,92.2907 +129171,345.81,93.2236 +129172,347.29,94.1901 +129173,341.6,91.3452 +129174,343.02,92.2841 +129175,344.46,93.2554 +129176,345.92,94.2613 +129177,340.27,91.3017 +129178,341.68,92.2777 +129179,343.1,93.2869 +129180,344.56,94.3318 +129181,338.94,91.2589 +129182,340.33,92.2715 +129183,341.75,93.3181 +129184,343.19,94.4014 +129185,337.61,91.2168 +129186,338.99,92.2655 +129187,340.39,93.349 +129188,341.82,94.4703 +129189,336.28,91.1755 +129190,337.65,92.2597 +129191,339.04,93.3796 +129192,340.45,94.5383 +129193,334.95,91.1349 +129194,336.31,92.2541 +129195,337.68,93.4099 +129196,339.08,94.6054 +129197,333.63,91.0951 +129198,334.97,92.2488 +129199,336.33,93.4398 +129200,337.71,94.6716 +129201,332.3,91.0562 +129202,333.62,92.2437 +129203,334.97,93.4694 +129204,336.34,94.7369 +129205,330.98,91.0181 +129206,332.28,92.2388 +129207,333.61,93.4987 +129208,334.96,94.8012 +129209,329.65,90.98083 +129210,330.94,92.2343 +129211,332.25,93.5275 +129212,333.59,94.8645 +129213,328.33,90.94449 +129214,329.6,92.2299 +129215,330.89,93.556 +129216,332.21,94.9268 +129217,327.01,90.90908 +129218,328.26,92.2259 +129219,329.54,93.5841 +129220,330.83,94.988 +129221,325.69,90.8746 +129222,326.92,92.2221 +129223,328.18,93.6119 +129224,329.46,95.0482 +129225,324.37,90.84109 +129226,325.58,92.2187 +129227,326.82,93.6392 +129228,328.08,95.1073 +129229,323.06,90.80857 +129230,324.25,92.2155 +129231,325.46,93.6661 +129232,326.7,95.1652 +129233,321.74,90.77706 +129234,322.91,92.2126 +129235,324.1,93.6926 +129236,325.32,95.222 +129237,320.42,90.74658 +129238,321.57,92.2101 +129239,322.74,93.7187 +129240,323.93,95.2776 +129241,319.11,90.71715 +129242,320.23,92.2078 +129243,321.38,93.7443 +129244,322.55,95.3319 +129245,317.79,90.68879 +129246,318.89,92.2059 +129247,320.02,93.7695 +129248,321.17,95.3851 +129249,316.48,90.66153 +129250,317.56,92.2044 +129251,318.65,93.7943 +129252,319.78,95.437 +129253,315.17,90.63538 +129254,316.22,92.2031 +129255,317.29,93.8186 +129256,318.4,95.4876 +129257,313.85,90.61036 +129258,314.88,92.2023 +129259,315.93,93.8424 +129260,317.01,95.537 +129261,312.54,90.58649 +129262,313.54,92.2017 +129263,314.57,93.8658 +129264,315.62,95.585 +129265,311.23,90.56379 +129266,312.21,92.2016 +129267,313.21,93.8887 +129268,314.23,95.6316 +129269,309.92,90.54227 +129270,310.87,92.2018 +129271,311.84,93.9112 +129272,312.84,95.677 +129273,308.61,90.52195 +129274,309.54,92.2023 +129275,310.48,93.9331 +129276,311.45,95.7209 +129277,307.31,90.50284 +129278,308.2,92.2033 +129279,309.12,93.9546 +129280,310.06,95.7634 +129281,306,90.48497 +129282,306.86,92.2046 +129283,307.75,93.9755 +129284,308.67,95.8046 +129285,304.69,90.46834 +129286,305.53,92.2063 +129287,306.39,93.996 +129288,307.28,95.8443 +129289,303.38,90.45297 +129290,304.19,92.2084 +129291,305.03,94.0159 +129292,305.88,95.8825 +129293,302.08,90.43888 +129294,302.86,92.2109 +129295,303.66,94.0353 +129296,304.49,95.9193 +129297,300.77,90.42607 +129298,301.52,92.2138 +129299,302.3,94.0542 +129300,303.1,95.9546 +129301,299.47,90.41456 +129302,300.19,92.2171 +129303,300.93,94.0726 +129304,301.7,95.9885 +129305,298.17,90.40436 +129306,298.85,92.2208 +129307,299.57,94.0905 +129308,300.31,96.0208 +129309,296.86,90.39548 +129310,297.52,92.225 +129311,298.2,94.1078 +129312,298.91,96.0516 +129313,295.56,90.38792 +129314,296.19,92.2295 +129315,296.83,94.1246 +129316,297.51,96.0809 +129317,294.26,90.38171 +129318,294.85,92.2345 +129319,295.47,94.1409 +129320,296.11,96.1086 +129321,292.95,90.37685 +129322,293.52,92.2398 +129323,294.1,94.1566 +129324,294.72,96.1348 +129325,291.65,90.37335 +129326,292.18,92.2457 +129327,292.74,94.1718 +129328,293.32,96.1594 +129329,290.35,90.37121 +129330,290.85,92.2519 +129331,291.37,94.1864 +129332,291.92,96.1825 +129333,289.05,90.37044 +129334,289.52,92.2585 +129335,290,94.2005 +129336,290.52,96.204 +129337,287.75,90.37104 +129338,288.18,92.2656 +129339,288.64,94.214 +129340,289.12,96.2239 +129341,286.45,90.37304 +129342,286.85,92.2732 +129343,287.27,94.227 +129344,287.72,96.2423 +129345,285.15,90.37641 +129346,285.52,92.2811 +129347,285.9,94.2395 +129348,286.32,96.259 +129349,283.85,90.38118 +129350,284.18,92.2895 +129351,284.54,94.2513 +129352,284.92,96.2742 +129353,282.55,90.38735 +129354,282.85,92.2983 +129355,283.17,94.2626 +129356,283.52,96.2878 +129357,281.25,90.39491 +129358,281.52,92.3076 +129359,281.8,94.2734 +129360,282.11,96.2998 +129361,279.95,90.40388 +129362,280.18,92.3173 +129363,280.44,94.2836 +129364,280.71,96.3101 +129365,278.65,90.41424 +129366,278.85,92.3275 +129367,279.07,94.2932 +129368,279.31,96.3189 +129369,277.35,90.42601 +129370,277.52,92.338 +129371,277.7,94.3023 +129372,277.91,96.3261 +129373,276.05,90.43917 +129374,276.18,92.3491 +129375,276.33,94.3109 +129376,276.51,96.3317 +129377,274.75,90.45374 +129378,274.85,92.3605 +129379,274.97,94.3188 +129380,275.1,96.3357 +129381,273.45,90.46971 +129382,273.52,92.3724 +129383,273.6,94.3262 +129384,273.7,96.3381 +129385,272.16,90.48707 +129386,272.18,92.3847 +129387,272.23,94.3331 +129388,272.3,96.3389 +129389,270.86,90.50583 +129390,270.85,92.3975 +129391,270.86,94.3394 +129392,270.9,96.3381 +129393,269.56,90.52598 +129394,269.52,92.4107 +129395,269.5,94.3452 +129396,269.49,96.3358 +129397,268.26,90.54751 +129398,268.19,92.4243 +129399,268.13,94.3504 +129400,268.09,96.3319 +129401,266.96,90.57043 +129402,266.85,92.4384 +129403,266.76,94.355 +129404,266.69,96.3264 +129405,265.66,90.59472 +129406,265.52,92.4529 +129407,265.39,94.3591 +129408,265.29,96.3194 +129409,264.36,90.62038 +129410,264.19,92.4678 +129411,264.03,94.3627 +129412,263.88,96.3108 +129413,263.06,90.6474 +129414,262.85,92.4831 +129415,262.66,94.3657 +129416,262.48,96.3007 +129417,261.76,90.67578 +129418,261.52,92.4989 +129419,261.29,94.3682 +129420,261.08,96.2891 +129421,260.46,90.7055 +129422,260.18,92.515 +129423,259.92,94.3701 +129424,259.68,96.2759 +129425,259.16,90.73655 +129426,258.85,92.5316 +129427,258.56,94.3715 +129428,258.28,96.2613 +129429,257.86,90.76894 +129430,257.52,92.5486 +129431,257.19,94.3724 +129432,256.87,96.2451 +129433,256.56,90.80264 +129434,256.18,92.566 +129435,255.82,94.3728 +129436,255.47,96.2275 +129437,255.26,90.83764 +129438,254.85,92.5838 +129439,254.45,94.3726 +129440,254.07,96.2085 +129441,253.95,90.87394 +129442,253.51,92.602 +129443,253.09,94.3719 +129444,252.67,96.188 +129445,252.65,90.91152 +129446,252.18,92.6206 +129447,251.72,94.3707 +129448,251.27,96.166 +129449,251.35,90.95036 +129450,250.85,92.6395 +129451,250.35,94.3691 +129452,249.87,96.1427 +129453,250.05,90.99046 +129454,249.51,92.6589 +129455,248.99,94.3669 +129456,248.47,96.1179 +129457,248.74,91.0318 +129458,248.18,92.6786 +129459,247.62,94.3642 +129460,247.08,96.0918 +129461,247.44,91.0744 +129462,246.84,92.6987 +129463,246.25,94.361 +129464,245.68,96.0644 +129465,246.13,91.1181 +129466,245.51,92.7192 +129467,244.89,94.3574 +129468,244.28,96.0355 +129469,244.83,91.1631 +129470,244.17,92.74 +129471,243.52,94.3532 +129472,242.88,96.0054 +129473,243.52,91.2092 +129474,242.83,92.7612 +129475,242.16,94.3486 +129476,241.49,95.974 +129477,242.22,91.2565 +129478,241.5,92.7827 +129479,240.79,94.3436 +129480,240.09,95.9413 +129481,240.91,91.3049 +129482,240.16,92.8046 +129483,239.42,94.338 +129484,238.69,95.9073 +129485,239.6,91.3545 +129486,238.83,92.8268 +129487,238.06,94.3321 +129488,237.3,95.8722 +129489,238.29,91.4051 +129490,237.49,92.8494 +129491,236.69,94.3257 +129492,235.91,95.8358 +129493,236.98,91.4569 +129494,236.15,92.8722 +129495,235.33,94.3188 +129496,234.51,95.7982 +129497,235.67,91.5097 +129498,234.82,92.8954 +129499,233.96,94.3115 +129500,233.12,95.7595 +129501,234.36,91.5635 +129502,233.48,92.9189 +129503,232.6,94.3038 +129504,231.73,95.7196 +129505,233.05,91.6183 +129506,232.14,92.9426 +129507,231.23,94.2957 +129508,230.34,95.6787 +129509,231.74,91.6742 +129510,230.8,92.9667 +129511,229.87,94.2872 +129512,228.94,95.6366 +129513,230.43,91.731 +129514,229.46,92.9911 +129515,228.51,94.2783 +129516,227.56,95.5935 +129517,229.11,91.7887 +129518,228.13,93.0157 +129519,227.14,94.269 +129520,226.17,95.5494 +129521,227.8,91.8474 +129522,226.79,93.0406 +129523,225.78,94.2593 +129524,224.78,95.5042 +129525,226.48,91.907 +129526,225.45,93.0657 +129527,224.42,94.2493 +129528,223.39,95.4581 +129529,225.17,91.9674 +129530,224.11,93.0911 +129531,223.05,94.2389 +129532,222,95.4111 +129533,223.85,92.0287 +129534,222.77,93.1168 +129535,221.69,94.2281 +129536,220.62,95.3631 +129537,222.53,92.0909 +129538,221.43,93.1426 +129539,220.33,94.2171 +129540,219.23,95.3143 +129541,221.21,92.1538 +129542,220.09,93.1687 +129543,218.97,94.2056 +129544,217.85,95.2645 +129545,219.89,92.2175 +129546,218.75,93.195 +129547,217.61,94.1939 +129548,216.47,95.214 +129549,218.57,92.2819 +129550,217.41,93.2215 +129551,216.25,94.1818 +129552,215.09,95.1627 +129553,217.25,92.3471 +129554,216.07,93.2482 +129555,214.88,94.1694 +129556,213.71,95.1106 +129557,215.93,92.4129 +129558,214.72,93.2751 +129559,213.52,94.1568 +129560,212.33,95.0577 +129561,214.61,92.4794 +129562,213.38,93.3022 +129563,212.16,94.1438 +129564,210.95,95.0042 +129565,213.28,92.5465 +129566,212.04,93.3294 +129567,210.8,94.1306 +129568,209.57,94.9499 +129569,211.95,92.6142 +129570,210.7,93.3567 +129571,209.44,94.1171 +129572,208.19,94.8951 +129573,210.63,92.6825 +129574,209.35,93.3843 +129575,208.08,94.1034 +129576,206.82,94.8396 +129577,209.3,92.7514 +129578,208.01,93.4119 +129579,206.73,94.0894 +129580,205.44,94.7836 +129581,207.97,92.8207 +129582,206.67,93.4397 +129583,205.37,94.0752 +129584,204.07,94.727 +129585,206.64,92.8905 +129586,205.32,93.4676 +129587,204.01,94.0608 +129588,202.7,94.6698 +129589,205.31,92.9608 +129590,203.98,93.4955 +129591,202.65,94.0462 +129592,201.33,94.6122 +129593,203.98,93.0315 +129594,202.63,93.5236 +129595,201.29,94.0313 +129596,199.96,94.5542 +129597,202.64,93.1026 +129598,201.29,93.5518 +129599,199.94,94.0163 +129600,198.59,94.4957 +129601,201.31,93.174 +129602,199.94,93.58 +129603,198.58,94.0011 +129604,197.22,94.4369 +129605,199.97,93.2457 +129606,198.6,93.6083 +129607,197.22,93.9857 +129608,195.85,94.3777 +129609,198.64,93.3178 +129610,197.25,93.6366 +129611,195.87,93.9702 +129612,194.49,94.3182 +129613,197.3,93.39 +129614,195.9,93.6649 +129615,194.51,93.9545 +129616,193.12,94.2584 +129617,195.96,93.4626 +129618,194.56,93.6933 +129619,193.15,93.9387 +129620,191.76,94.1984 +129621,194.62,93.5352 +129622,193.21,93.7217 +129623,191.8,93.9228 +129624,190.4,94.1381 +129625,193.28,93.6081 +129626,191.86,93.7501 +129627,190.45,93.9068 +129628,189.03,94.0777 +129629,191.93,93.6811 +129630,190.51,93.7785 +129631,189.09,93.8907 +129632,187.67,94.0171 +129633,190.59,93.7541 +129634,189.16,93.8069 +129635,187.74,93.8744 +129636,186.32,93.9564 +129637,189.25,93.8273 +129638,187.81,93.8352 +129639,186.38,93.8581 +129640,184.96,93.8957 +129641,187.9,93.9004 +129642,186.46,93.8635 +129643,185.03,93.8418 +129644,183.6,93.8348 +129645,186.55,93.9735 +129646,185.11,93.8917 +129647,183.68,93.8253 +129648,182.25,93.774 +129649,185.2,94.0466 +129650,183.76,93.9199 +129651,182.33,93.8089 +129652,180.89,93.7132 +129653,183.85,94.1196 +129654,182.41,93.948 +129655,180.97,93.7924 +129656,179.54,93.6524 +129657,182.5,94.1925 +129658,181.06,93.976 +129659,179.62,93.7759 +129660,178.19,93.5917 +129661,181.15,94.2652 +129662,179.71,94.0039 +129663,178.27,93.7593 +129664,176.84,93.5311 +129665,179.8,94.3377 +129666,178.36,94.0317 +129667,176.92,93.7428 +129668,175.49,93.4707 +129669,178.44,94.41 +129670,177,94.0594 +129671,175.57,93.7263 +129672,174.14,93.4105 +129673,177.09,94.4821 +129674,175.65,94.0869 +129675,174.22,93.7098 +129676,172.79,93.3505 +129677,175.73,94.5539 +129678,174.3,94.1143 +129679,172.87,93.6933 +129680,171.45,93.2907 +129681,174.37,94.6254 +129682,172.94,94.1415 +129683,171.52,93.6769 +129684,170.1,93.2312 +129685,173.01,94.6965 +129686,171.59,94.1686 +129687,170.17,93.6606 +129688,168.76,93.172 +129689,171.65,94.7672 +129690,170.23,94.1955 +129691,168.82,93.6443 +129692,167.42,93.1132 +129693,170.29,94.8374 +129694,168.88,94.2222 +129695,167.47,93.6281 +129696,166.08,93.0547 +129697,168.93,94.9073 +129698,167.52,94.2486 +129699,166.13,93.6119 +129700,164.74,92.9966 +129701,167.56,94.9766 +129702,166.17,94.2749 +129703,164.78,93.5959 +129704,163.4,92.939 +129705,166.2,95.0454 +129706,164.81,94.301 +129707,163.43,93.58 +129708,162.06,92.8819 +129709,164.83,95.1137 +129710,163.46,94.3268 +129711,162.09,93.5642 +129712,160.72,92.8252 +129713,163.46,95.1813 +129714,162.1,94.3524 +129715,160.74,93.5485 +129716,159.39,92.7691 +129717,162.1,95.2483 +129718,160.74,94.3777 +129719,159.39,93.533 +129720,158.05,92.7135 +129721,160.73,95.3147 +129722,159.38,94.4027 +129723,158.05,93.5177 +129724,156.72,92.6585 +129725,159.36,95.3804 +129726,158.02,94.4275 +129727,156.7,93.5024 +129728,155.39,92.6042 +129729,157.98,95.4453 +129730,156.67,94.452 +129731,155.36,93.4874 +129732,154.06,92.5505 +129733,156.61,95.5095 +129734,155.31,94.4761 +129735,154.01,93.4725 +129736,152.73,92.4974 +129737,155.24,95.5729 +129738,153.95,94.5 +129739,152.67,93.4579 +129740,151.4,92.4451 +129741,153.86,95.6355 +129742,152.59,94.5236 +129743,151.33,93.4434 +129744,150.07,92.3935 +129745,152.48,95.6973 +129746,151.23,94.5468 +129747,149.98,93.4292 +129748,148.74,92.3426 +129749,151.11,95.7581 +129750,149.87,94.5697 +129751,148.64,93.4151 +129752,147.42,92.2925 +129753,149.73,95.8181 +129754,148.51,94.5922 +129755,147.3,93.4013 +129756,146.09,92.2433 +129757,148.35,95.8771 +129758,147.15,94.6144 +129759,145.95,93.3877 +129760,144.77,92.1948 +129761,146.97,95.9351 +129762,145.79,94.6362 +129763,144.61,93.3744 +129764,143.44,92.1473 +129765,145.59,95.9921 +129766,144.42,94.6576 +129767,143.27,93.3613 +129768,142.12,92.1006 +129769,144.21,96.0481 +129770,143.06,94.6787 +129771,141.93,93.3485 +129772,140.8,92.0548 +129773,142.82,96.1031 +129774,141.7,94.6994 +129775,140.59,93.336 +129776,139.48,92.01 +129777,141.44,96.1569 +129778,140.34,94.7196 +129779,139.24,93.3237 +129780,138.16,91.9661 +129781,140.05,96.2097 +129782,138.97,94.7394 +129783,137.9,93.3118 +129784,136.84,91.9232 +129785,138.67,96.2613 +129786,137.61,94.7589 +129787,136.56,93.3001 +129788,135.53,91.8813 +129789,137.28,96.3117 +129790,136.25,94.7779 +129791,135.22,93.2887 +129792,134.21,91.8405 +129793,135.89,96.361 +129794,134.88,94.7964 +129795,133.88,93.2777 +129796,132.89,91.8007 +129797,134.5,96.409 +129798,133.52,94.8145 +129799,132.54,93.2669 +129800,131.58,91.7619 +129801,133.11,96.4558 +129802,132.15,94.8322 +129803,131.2,93.2565 +129804,130.26,91.7243 +129805,131.72,96.5013 +129806,130.79,94.8494 +129807,129.87,93.2464 +129808,128.95,91.6877 +129809,130.33,96.5456 +129810,129.42,94.8661 +129811,128.53,93.2367 +129812,127.64,91.6523 +129813,128.94,96.5885 +129814,128.06,94.8824 +129815,127.19,93.2273 +129816,126.32,91.618 +129817,127.55,96.6301 +129818,126.69,94.8982 +129819,125.85,93.2182 +129820,125.01,91.5849 +129821,126.16,96.6704 +129822,125.33,94.9135 +129823,124.51,93.2095 +129824,123.7,91.553 +129825,124.76,96.7092 +129826,123.96,94.9283 +129827,123.17,93.2012 +129828,122.39,91.5223 +129829,123.37,96.7467 +129830,122.6,94.9426 +129831,121.84,93.1932 +129832,121.08,91.4928 +129833,121.97,96.7828 +129834,121.23,94.9564 +129835,120.5,93.1857 +129836,119.77,91.4645 +129837,120.58,96.8174 +129838,119.86,94.9697 +129839,119.16,93.1785 +129840,118.47,91.4375 +129841,119.18,96.8506 +129842,118.5,94.9825 +129843,117.82,93.1716 +129844,117.16,91.4117 +129845,117.78,96.8823 +129846,117.13,94.9947 +129847,116.49,93.1652 +129848,115.85,91.3872 +129849,116.38,96.9125 +129850,115.76,95.0065 +129851,115.15,93.1592 +129852,114.54,91.364 +129853,114.99,96.9413 +129854,114.4,95.0177 +129855,113.81,93.1536 +129856,113.24,91.3421 +129857,113.59,96.9685 +129858,113.03,95.0283 +129859,112.48,93.1483 +129860,111.93,91.3215 +129861,112.19,96.9942 +129862,111.66,95.0384 +129863,111.14,93.1435 +129864,110.63,91.3022 +129865,110.79,97.0184 +129866,110.29,95.048 +129867,109.8,93.1391 +129868,109.32,91.2843 +129869,109.39,97.041 +129870,108.92,95.057 +129871,108.47,93.1351 +129872,108.02,91.2677 +129873,107.99,97.062 +129874,107.56,95.0655 +129875,107.13,93.1315 +129876,106.71,91.2524 +129877,106.59,97.0815 +129878,106.19,95.0734 +129879,105.8,93.1284 +129880,105.41,91.2386 +129881,105.19,97.0994 +129882,104.82,95.0808 +129883,104.46,93.1256 +129884,104.1,91.2261 +129885,103.79,97.1157 +129886,103.45,95.0876 +129887,103.12,93.1233 +129888,102.8,91.2149 +129889,102.38,97.1304 +129890,102.08,95.0939 +129891,101.79,93.1215 +129892,101.5,91.2052 +129893,100.98,97.1435 +129894,100.71,95.0995 +129895,100.45,93.12 +129896,100.2,91.1968 +129897,99.58,97.155 +129898,99.346,95.1047 +129899,99.117,93.119 +129900,98.893,91.1899 +129901,98.178,97.1648 +129902,97.977,95.1092 +129903,97.781,93.1184 +129904,97.59,91.1843 +129905,96.776,97.1731 +129906,96.608,95.1132 +129907,96.446,93.1183 +129908,96.288,91.1801 +129909,95.373,97.1797 +129910,95.239,95.1166 +129911,95.111,93.1186 +129912,94.986,91.1774 +129913,93.97,97.1847 +129914,93.871,95.1194 +129915,93.775,93.1193 +129916,93.684,91.176 +129917,92.568,97.188 +129918,92.502,95.1217 +129919,92.44,93.1204 +129920,92.382,91.1761 +129921,91.165,97.1898 +129922,91.133,95.1234 +129923,91.105,93.122 +129924,91.08,91.1776 +129925,89.762,97.1899 +129926,89.764,95.1245 +129927,89.769,93.1241 +129928,89.778,91.1804 +129929,88.359,97.1883 +129930,88.395,95.125 +129931,88.434,93.1266 +129932,88.476,91.1847 +129933,86.956,97.1851 +129934,87.026,95.125 +129935,87.099,93.1295 +129936,87.174,91.1904 +129937,85.553,97.1804 +129938,85.657,95.1244 +129939,85.763,93.1328 +129940,85.872,91.1976 +129941,84.151,97.1739 +129942,84.288,95.1232 +129943,84.428,93.1366 +129944,84.569,91.2061 +129945,82.748,97.1659 +129946,82.919,95.1215 +129947,83.092,93.1408 +129948,83.267,91.216 +129949,81.346,97.1562 +129950,81.551,95.1192 +129951,81.757,93.1455 +129952,81.964,91.2273 +129953,79.944,97.145 +129954,80.182,95.1163 +129955,80.421,93.1506 +129956,80.662,91.24 +129957,78.542,97.1321 +129958,78.813,95.1129 +129959,79.086,93.1561 +129960,79.359,91.2541 +129961,77.14,97.1177 +129962,77.445,95.1089 +129963,77.75,93.162 +129964,78.056,91.2696 +129965,75.738,97.1016 +129966,76.076,95.1043 +129967,76.414,93.1684 +129968,76.752,91.2864 +129969,74.337,97.084 +129970,74.708,95.0992 +129971,75.078,93.1752 +129972,75.449,91.3046 +129973,72.936,97.0648 +129974,73.34,95.0936 +129975,73.742,93.1824 +129976,74.145,91.3242 +129977,71.536,97.0441 +129978,71.971,95.0874 +129979,72.406,93.19 +129980,72.84,91.3451 +129981,70.136,97.0219 +129982,70.603,95.0806 +129983,71.07,93.198 +129984,71.536,91.3674 +129985,68.736,96.9981 +129986,69.235,95.0733 +129987,69.734,93.2065 +129988,70.231,91.391 +129989,67.337,96.9727 +129990,67.868,95.0655 +129991,68.397,93.2153 +129992,68.925,91.4159 +129993,65.938,96.9459 +129994,66.5,95.0571 +129995,67.06,93.2245 +129996,67.619,91.4421 +129997,64.539,96.9176 +129998,65.133,95.0482 +129999,65.724,93.2342 +130000,66.313,91.4696 +130001,63.141,96.8879 +130002,63.765,95.0388 +130003,64.387,93.2442 +130004,65.006,91.4984 +130005,61.744,96.8567 +130006,62.398,95.0288 +130007,63.049,93.2547 +130008,63.699,91.5285 +130009,60.347,96.824 +130010,61.031,95.0184 +130011,61.712,93.2655 +130012,62.391,91.5598 +130013,58.951,96.7899 +130014,59.664,95.0074 +130015,60.375,93.2766 +130016,61.082,91.5924 +130017,57.555,96.7545 +130018,58.298,94.996 +130019,59.037,93.2882 +130020,59.773,91.6262 +130021,56.16,96.7176 +130022,56.931,94.984 +130023,57.699,93.3001 +130024,58.464,91.6612 +130025,54.766,96.6795 +130026,55.565,94.9716 +130027,56.361,93.3124 +130028,57.154,91.6974 +130029,53.372,96.6399 +130030,54.199,94.9587 +130031,55.023,93.325 +130032,55.843,91.7347 +130033,51.979,96.5991 +130034,52.834,94.9453 +130035,53.684,93.338 +130036,54.531,91.7733 +130037,50.587,96.5569 +130038,51.468,94.9314 +130039,52.345,93.3513 +130040,53.219,91.8129 +130041,49.196,96.5135 +130042,50.103,94.917 +130043,51.006,93.365 +130044,51.906,91.8537 +130045,47.805,96.4689 +130046,48.738,94.9023 +130047,49.667,93.379 +130048,50.592,91.8956 +130049,46.415,96.423 +130050,47.373,94.887 +130051,48.327,93.3933 +130052,49.277,91.9386 +130053,45.026,96.3759 +130054,46.009,94.8713 +130055,46.987,93.4079 +130056,47.962,91.9826 +130057,43.637,96.3277 +130058,44.645,94.8552 +130059,45.647,93.4228 +130060,46.646,92.0277 +130061,42.25,96.2783 +130062,43.281,94.8387 +130063,44.307,93.4381 +130064,45.329,92.0737 +130065,40.863,96.2278 +130066,41.917,94.8218 +130067,42.966,93.4536 +130068,44.011,92.1208 +130069,39.478,96.1762 +130070,40.554,94.8044 +130071,41.625,93.4694 +130072,42.693,92.1689 +130073,38.093,96.1236 +130074,39.191,94.7867 +130075,40.284,93.4855 +130076,41.373,92.2179 +130077,36.709,96.0699 +130078,37.828,94.7685 +130079,38.943,93.5018 +130080,40.053,92.2678 +130081,35.326,96.0152 +130082,36.466,94.75 +130083,37.601,93.5184 +130084,38.731,92.3186 +130085,33.944,95.9595 +130086,35.104,94.7311 +130087,36.259,93.5352 +130088,37.409,92.3703 +130089,32.563,95.9029 +130090,33.742,94.7119 +130091,34.916,93.5523 +130092,36.086,92.4228 +130093,31.183,95.8454 +130094,32.381,94.6923 +130095,33.574,93.5696 +130096,34.762,92.4762 +130097,29.804,95.7869 +130098,31.02,94.6723 +130099,32.231,93.5872 +130100,33.437,92.5304 +130101,28.426,95.7277 +130102,29.659,94.652 +130103,30.887,93.6049 +130104,32.111,92.5853 +130105,27.049,95.6675 +130106,28.298,94.6314 +130107,29.543,93.6229 +130108,30.784,92.641 +130109,25.673,95.6066 +130110,26.938,94.6105 +130111,28.199,93.641 +130112,29.455,92.6974 +130113,24.298,95.545 +130114,25.579,94.5893 +130115,26.855,93.6594 +130116,28.126,92.7544 +130117,22.925,95.4825 +130118,24.219,94.5678 +130119,25.51,93.6779 +130120,26.796,92.8122 +130121,21.552,95.4194 +130122,22.86,94.546 +130123,24.165,93.6966 +130124,25.465,92.8706 +130125,20.18,95.3557 +130126,21.502,94.5239 +130127,22.819,93.7154 +130128,24.133,92.9295 +130129,18.81,95.2913 +130130,20.144,94.5016 +130131,21.474,93.7343 +130132,22.799,92.9891 +130133,17.44,95.2263 +130134,18.786,94.479 +130135,20.127,93.7534 +130136,21.465,93.0492 +130137,16.072,95.1607 +130138,17.428,94.4562 +130139,18.781,93.7727 +130140,20.129,93.1098 +130141,14.705,95.0946 +130142,16.071,94.4332 +130143,17.434,93.792 +130144,18.792,93.1708 +130145,13.339,95.0279 +130146,14.714,94.4099 +130147,16.086,93.8114 +130148,17.454,93.2324 +130149,11.974,94.9609 +130150,13.358,94.3864 +130151,14.739,93.831 +130152,16.115,93.2943 +130153,10.611,94.8933 +130154,12.002,94.3628 +130155,13.391,93.8506 +130156,14.775,93.3567 +130157,9.248,94.8254 +130158,10.646,94.3389 +130159,12.042,93.8703 +130160,13.434,93.4194 +130161,7.8867,94.7571 +130162,9.2913,94.3149 +130163,10.693,93.89 +130164,12.092,93.4824 +130165,6.5265,94.6885 +130166,7.9365,94.2907 +130167,9.3442,93.9098 +130168,10.748,93.5457 +130169,5.1675,94.6196 +130170,6.5821,94.2664 +130171,7.9946,93.9296 +130172,9.4035,93.6093 +130173,3.8096,94.5504 +130174,5.2281,94.2419 +130175,6.6446,93.9495 +130176,8.0577,93.6731 +130177,2.453,94.481 +130178,3.8745,94.2173 +130179,5.2943,93.9693 +130180,6.7107,93.7371 +130181,1.0975,94.4114 +130182,2.5213,94.1926 +130183,3.9435,93.9892 +130184,5.3625,93.8012 +130185,359.74,94.3416 +130186,1.1685,94.1677 +130187,2.5924,94.0091 +130188,4.0131,93.8655 +130189,358.39,94.2717 +130190,359.82,94.1428 +130191,1.2408,94.0289 +130192,2.6625,93.9299 +130193,357.04,94.2017 +130194,358.46,94.1178 +130195,359.89,94.0487 +130196,1.3108,93.9944 +130197,355.69,94.1317 +130198,357.11,94.0927 +130199,358.54,94.0685 +130200,359.96,94.0589 +130201,354.34,94.0616 +130202,355.76,94.0676 +130203,357.18,94.0882 +130204,358.6,94.1233 +130205,352.99,93.9915 +130206,354.41,94.0424 +130207,355.83,94.1079 +130208,357.25,94.1878 +130209,351.64,93.9215 +130210,353.06,94.0172 +130211,354.48,94.1274 +130212,355.89,94.2521 +130213,350.3,93.8516 +130214,351.71,93.9919 +130215,353.12,94.1469 +130216,354.53,94.3164 +130217,348.95,93.7817 +130218,350.36,93.9667 +130219,351.77,94.1663 +130220,353.18,94.3805 +130221,347.61,93.712 +130222,349.01,93.9414 +130223,350.41,94.1856 +130224,351.82,94.4445 +130225,346.27,93.6425 +130226,347.66,93.9161 +130227,349.06,94.2048 +130228,350.45,94.5082 +130229,344.92,93.5732 +130230,346.31,93.8909 +130231,347.7,94.2238 +130232,349.09,94.5717 +130233,343.58,93.5041 +130234,344.97,93.8657 +130235,346.35,94.2427 +130236,347.73,94.6349 +130237,342.24,93.4353 +130238,343.62,93.8405 +130239,344.99,94.2614 +130240,346.36,94.6979 +130241,340.91,93.3669 +130242,342.27,93.8154 +130243,343.64,94.28 +130244,345,94.7604 +130245,339.57,93.2987 +130246,340.92,93.7903 +130247,342.28,94.2984 +130248,343.63,94.8226 +130249,338.23,93.231 +130250,339.58,93.7654 +130251,340.92,94.3166 +130252,342.26,94.8844 +130253,336.9,93.1636 +130254,338.23,93.7405 +130255,339.56,94.3346 +130256,340.89,94.9458 +130257,335.57,93.0967 +130258,336.89,93.7157 +130259,338.21,94.3524 +130260,339.52,95.0067 +130261,334.23,93.0302 +130262,335.54,93.691 +130263,336.85,94.37 +130264,338.15,95.067 +130265,332.9,92.9643 +130266,334.2,93.6664 +130267,335.49,94.3873 +130268,336.78,95.1269 +130269,331.57,92.8988 +130270,332.85,93.642 +130271,334.13,94.4044 +130272,335.41,95.1861 +130273,330.24,92.834 +130274,331.51,93.6176 +130275,332.77,94.4213 +130276,334.03,95.2448 +130277,328.92,92.7697 +130278,330.16,93.5935 +130279,331.41,94.4379 +130280,332.66,95.3028 +130281,327.59,92.706 +130282,328.82,93.5695 +130283,330.05,94.4542 +130284,331.28,95.3601 +130285,326.26,92.643 +130286,327.48,93.5457 +130287,328.69,94.4702 +130288,329.9,95.4167 +130289,324.94,92.5807 +130290,326.13,93.522 +130291,327.33,94.4859 +130292,328.52,95.4726 +130293,323.61,92.519 +130294,324.79,93.4985 +130295,325.97,94.5014 +130296,327.14,95.5277 +130297,322.29,92.4581 +130298,323.45,93.4753 +130299,324.61,94.5165 +130300,325.76,95.5821 +130301,320.97,92.398 +130302,322.11,93.4522 +130303,323.25,94.5313 +130304,324.38,95.6356 +130305,319.65,92.3386 +130306,320.77,93.4294 +130307,321.88,94.5457 +130308,323,95.6882 +130309,318.33,92.2801 +130310,319.42,93.4068 +130311,320.52,94.5598 +130312,321.62,95.74 +130313,317.01,92.2223 +130314,318.08,93.3844 +130315,319.16,94.5736 +130316,320.23,95.7908 +130317,315.69,92.1655 +130318,316.74,93.3623 +130319,317.8,94.587 +130320,318.85,95.8407 +130321,314.37,92.1095 +130322,315.4,93.3404 +130323,316.43,94.6 +130324,317.46,95.8896 +130325,313.06,92.0545 +130326,314.06,93.3188 +130327,315.07,94.6127 +130328,316.07,95.9376 +130329,311.74,92.0004 +130330,312.72,93.2974 +130331,313.71,94.625 +130332,314.68,95.9844 +130333,310.42,91.9473 +130334,311.38,93.2764 +130335,312.34,94.6368 +130336,313.3,96.0303 +130337,309.11,91.8951 +130338,310.05,93.2556 +130339,310.98,94.6483 +130340,311.91,96.075 +130341,307.8,91.844 +130342,308.71,93.2351 +130343,309.61,94.6593 +130344,310.52,96.1186 +130345,306.49,91.7939 +130346,307.37,93.2149 +130347,308.25,94.6699 +130348,309.12,96.1611 +130349,305.17,91.7448 +130350,306.03,93.195 +130351,306.88,94.6801 +130352,307.73,96.2024 +130353,303.86,91.6968 +130354,304.69,93.1755 +130355,305.52,94.6899 +130356,306.34,96.2426 +130357,302.55,91.6499 +130358,303.35,93.1562 +130359,304.15,94.6992 +130360,304.95,96.2815 +130361,301.24,91.6041 +130362,302.02,93.1373 +130363,302.79,94.7081 +130364,303.55,96.3192 +130365,299.93,91.5595 +130366,300.68,93.1188 +130367,301.42,94.7164 +130368,302.16,96.3556 +130369,298.62,91.516 +130370,299.34,93.1006 +130371,300.05,94.7244 +130372,300.76,96.3907 +130373,297.32,91.4737 +130374,298.01,93.0827 +130375,298.69,94.7318 +130376,299.37,96.4245 +130377,296.01,91.4325 +130378,296.67,93.0652 +130379,297.32,94.7388 +130380,297.97,96.457 +130381,294.7,91.3926 +130382,295.33,93.0481 +130383,295.95,94.7453 +130384,296.57,96.4882 +130385,293.4,91.3538 +130386,294,93.0313 +130387,294.59,94.7513 +130388,295.17,96.518 +130389,292.09,91.3164 +130390,292.66,93.0149 +130391,293.22,94.7568 +130392,293.78,96.5464 +130393,290.79,91.2801 +130394,291.32,92.9989 +130395,291.85,94.7618 +130396,292.38,96.5734 +130397,289.48,91.2451 +130398,289.99,92.9833 +130399,290.49,94.7662 +130400,290.98,96.5989 +130401,288.18,91.2115 +130402,288.65,92.968 +130403,289.12,94.7702 +130404,289.58,96.6231 +130405,286.87,91.179 +130406,287.32,92.9532 +130407,287.75,94.7737 +130408,288.18,96.6458 +130409,285.57,91.1479 +130410,285.98,92.9387 +130411,286.38,94.7766 +130412,286.78,96.667 +130413,284.27,91.1182 +130414,284.65,92.9247 +130415,285.02,94.779 +130416,285.38,96.6867 +130417,282.97,91.0897 +130418,283.31,92.911 +130419,283.65,94.7808 +130420,283.98,96.7049 +130421,281.66,91.0626 +130422,281.98,92.8978 +130423,282.28,94.7822 +130424,282.57,96.7216 +130425,280.36,91.0368 +130426,280.64,92.885 +130427,280.91,94.7829 +130428,281.17,96.7368 +130429,279.06,91.0123 +130430,279.31,92.8726 +130431,279.54,94.7832 +130432,279.77,96.7504 +130433,277.76,90.98928 +130434,277.97,92.8607 +130435,278.18,94.7829 +130436,278.37,96.7625 +130437,276.46,90.96758 +130438,276.64,92.8491 +130439,276.81,94.782 +130440,276.97,96.773 +130441,275.16,90.94726 +130442,275.3,92.838 +130443,275.44,94.7806 +130444,275.56,96.782 +130445,273.85,90.92832 +130446,273.97,92.8273 +130447,274.07,94.7786 +130448,274.16,96.7893 +130449,272.55,90.91077 +130450,272.63,92.817 +130451,272.7,94.7761 +130452,272.76,96.7951 +130453,271.25,90.89461 +130454,271.3,92.8072 +130455,271.34,94.773 +130456,271.36,96.7993 +130457,269.95,90.87985 +130458,269.97,92.7978 +130459,269.97,94.7694 +130460,269.95,96.8019 +130461,268.65,90.86649 +130462,268.63,92.7889 +130463,268.6,94.7652 +130464,268.55,96.8029 +130465,267.35,90.85453 +130466,267.3,92.7803 +130467,267.23,94.7604 +130468,267.15,96.8023 +130469,266.05,90.84398 +130470,265.96,92.7723 +130471,265.86,94.7551 +130472,265.75,96.8001 +130473,264.75,90.83484 +130474,264.63,92.7646 +130475,264.49,94.7492 +130476,264.34,96.7962 +130477,263.45,90.8271 +130478,263.29,92.7574 +130479,263.13,94.7427 +130480,262.94,96.7908 +130481,262.15,90.82077 +130482,261.96,92.7506 +130483,261.76,94.7357 +130484,261.54,96.7837 +130485,260.85,90.81584 +130486,260.63,92.7443 +130487,260.39,94.7281 +130488,260.14,96.775 +130489,259.55,90.81232 +130490,259.29,92.7384 +130491,259.02,94.7199 +130492,258.74,96.7647 +130493,258.25,90.8102 +130494,257.96,92.733 +130495,257.65,94.7112 +130496,257.33,96.7528 +130497,256.94,90.80948 +130498,256.62,92.7279 +130499,256.29,94.7019 +130500,255.93,96.7393 +130501,255.64,90.81016 +130502,255.29,92.7234 +130503,254.92,94.692 +130504,254.53,96.7242 +130505,254.34,90.81223 +130506,253.95,92.7192 +130507,253.55,94.6816 +130508,253.13,96.7074 +130509,253.04,90.81568 +130510,252.62,92.7155 +130511,252.18,94.6706 +130512,251.73,96.6891 +130513,251.74,90.82052 +130514,251.28,92.7122 +130515,250.82,94.6591 +130516,250.33,96.6692 +130517,250.43,90.82673 +130518,249.95,92.7093 +130519,249.45,94.647 +130520,248.93,96.6477 +130521,249.13,90.8343 +130522,248.62,92.7069 +130523,248.08,94.6344 +130524,247.53,96.6246 +130525,247.83,90.84324 +130526,247.28,92.7049 +130527,246.72,94.6212 +130528,246.13,96.6 +130529,246.52,90.85353 +130530,245.94,92.7033 +130531,245.35,94.6075 +130532,244.73,96.5738 +130533,245.22,90.86515 +130534,244.61,92.7021 +130535,243.98,94.5932 +130536,243.34,96.546 +130537,243.91,90.87812 +130538,243.27,92.7013 +130539,242.62,94.5784 +130540,241.94,96.5168 +130541,242.61,90.8924 +130542,241.94,92.701 +130543,241.25,94.563 +130544,240.54,96.486 +130545,241.3,90.90799 +130546,240.6,92.701 +130547,239.88,94.5472 +130548,239.15,96.4536 +130549,240,90.92488 +130550,239.27,92.7015 +130551,238.52,94.5308 +130552,237.75,96.4198 +130553,238.69,90.94306 +130554,237.93,92.7023 +130555,237.15,94.5138 +130556,236.35,96.3845 +130557,237.38,90.96251 +130558,236.59,92.7036 +130559,235.79,94.4964 +130560,234.96,96.3478 +130561,236.08,90.98322 +130562,235.26,92.7052 +130563,234.42,94.4784 +130564,233.57,96.3096 +130565,234.77,91.0052 +130566,233.92,92.7072 +130567,233.06,94.46 +130568,232.17,96.2699 +130569,233.46,91.0284 +130570,232.58,92.7096 +130571,231.69,94.441 +130572,230.78,96.2289 +130573,232.15,91.0528 +130574,231.25,92.7124 +130575,230.33,94.4216 +130576,229.39,96.1864 +130577,230.84,91.0784 +130578,229.91,92.7155 +130579,228.97,94.4016 +130580,228,96.1426 +130581,229.53,91.1052 +130582,228.57,92.719 +130583,227.6,94.3812 +130584,226.61,96.0974 +130585,228.21,91.1331 +130586,227.23,92.7229 +130587,226.24,94.3603 +130588,225.22,96.0509 +130589,226.9,91.1622 +130590,225.9,92.7271 +130591,224.87,94.3389 +130592,223.83,96.0031 +130593,225.59,91.1924 +130594,224.56,92.7317 +130595,223.51,94.3171 +130596,222.44,95.9539 +130597,224.27,91.2238 +130598,223.22,92.7365 +130599,222.15,94.2948 +130600,221.06,95.9035 +130601,222.96,91.2562 +130602,221.88,92.7418 +130603,220.79,94.272 +130604,219.67,95.8519 +130605,221.64,91.2897 +130606,220.54,92.7473 +130607,219.43,94.2489 +130608,218.29,95.799 +130609,220.32,91.3242 +130610,219.2,92.7532 +130611,218.06,94.2252 +130612,216.9,95.7449 +130613,219.01,91.3598 +130614,217.86,92.7593 +130615,216.7,94.2012 +130616,215.52,95.6897 +130617,217.69,91.3964 +130618,216.52,92.7658 +130619,215.34,94.1767 +130620,214.14,95.6333 +130621,216.37,91.4339 +130622,215.18,92.7725 +130623,213.98,94.1519 +130624,212.76,95.5758 +130625,215.05,91.4724 +130626,213.84,92.7796 +130627,212.62,94.1266 +130628,211.38,95.5171 +130629,213.73,91.5119 +130630,212.5,92.7869 +130631,211.26,94.1009 +130632,210,95.4575 +130633,212.4,91.5523 +130634,211.16,92.7945 +130635,209.9,94.0749 +130636,208.62,95.3967 +130637,211.08,91.5935 +130638,209.82,92.8024 +130639,208.54,94.0485 +130640,207.25,95.335 +130641,209.76,91.6356 +130642,208.48,92.8105 +130643,207.18,94.0217 +130644,205.87,95.2723 +130645,208.43,91.6786 +130646,207.14,92.8188 +130647,205.82,93.9945 +130648,204.5,95.2086 +130649,207.1,91.7224 +130650,205.79,92.8274 +130651,204.47,93.9671 +130652,203.12,95.144 +130653,205.78,91.767 +130654,204.45,92.8362 +130655,203.11,93.9392 +130656,201.75,95.0785 +130657,204.45,91.8123 +130658,203.11,92.8452 +130659,201.75,93.9111 +130660,200.38,95.0121 +130661,203.12,91.8584 +130662,201.76,92.8545 +130663,200.39,93.8826 +130664,199.01,94.9449 +130665,201.79,91.9051 +130666,200.42,92.8639 +130667,199.04,93.8538 +130668,197.64,94.8769 +130669,200.45,91.9526 +130670,199.08,92.8735 +130671,197.68,93.8248 +130672,196.27,94.8081 +130673,199.12,92.0007 +130674,197.73,92.8833 +130675,196.33,93.7954 +130676,194.91,94.7386 +130677,197.79,92.0494 +130678,196.39,92.8933 +130679,194.97,93.7658 +130680,193.54,94.6684 +130681,196.45,92.0987 +130682,195.04,92.9034 +130683,193.62,93.7359 +130684,192.18,94.5975 +130685,195.12,92.1486 +130686,193.7,92.9137 +130687,192.26,93.7057 +130688,190.81,94.526 +130689,193.78,92.1991 +130690,192.35,92.9241 +130691,190.91,93.6753 +130692,189.45,94.4538 +130693,192.44,92.25 +130694,191,92.9347 +130695,189.55,93.6447 +130696,188.09,94.3811 +130697,191.1,92.3014 +130698,189.66,92.9454 +130699,188.2,93.6138 +130700,186.73,94.3078 +130701,189.76,92.3533 +130702,188.31,92.9561 +130703,186.85,93.5827 +130704,185.37,94.2341 +130705,188.42,92.4056 +130706,186.96,92.967 +130707,185.49,93.5514 +130708,184.01,94.1598 +130709,187.07,92.4582 +130710,185.61,92.978 +130711,184.14,93.52 +130712,182.66,94.0851 +130713,185.73,92.5113 +130714,184.27,92.989 +130715,182.79,93.4883 +130716,181.3,94.01 +130717,184.38,92.5646 +130718,182.92,93.0001 +130719,181.44,93.4565 +130720,179.95,93.9346 +130721,183.04,92.6182 +130722,181.57,93.0113 +130723,180.09,93.4245 +130724,178.6,93.8587 +130725,181.69,92.6722 +130726,180.22,93.0225 +130727,178.74,93.3924 +130728,177.25,93.7826 +130729,180.34,92.7263 +130730,178.87,93.0337 +130731,177.39,93.3601 +130732,175.9,93.7062 +130733,178.99,92.7806 +130734,177.52,93.045 +130735,176.04,93.3278 +130736,174.55,93.6296 +130737,177.64,92.8351 +130738,176.17,93.0563 +130739,174.69,93.2953 +130740,173.2,93.5528 +130741,176.29,92.8897 +130742,174.82,93.0675 +130743,173.34,93.2627 +130744,171.86,93.4758 +130745,174.93,92.9445 +130746,173.47,93.0788 +130747,171.99,93.23 +130748,170.51,93.3987 +130749,173.58,92.9993 +130750,172.12,93.0901 +130751,170.65,93.1972 +130752,169.17,93.3214 +130753,172.22,93.0541 +130754,170.76,93.1013 +130755,169.3,93.1644 +130756,167.82,93.2441 +130757,170.86,93.109 +130758,169.41,93.1125 +130759,167.95,93.1315 +130760,166.48,93.1668 +130761,169.5,93.1638 +130762,168.06,93.1236 +130763,166.6,93.0986 +130764,165.14,93.0895 +130765,168.14,93.2185 +130766,166.71,93.1346 +130767,165.26,93.0656 +130768,163.8,93.0122 +130769,166.78,93.2732 +130770,165.35,93.1456 +130771,163.91,93.0327 +130772,162.47,92.935 +130773,165.42,93.3277 +130774,164,93.1565 +130775,162.57,92.9997 +130776,161.13,92.8579 +130777,164.06,93.3821 +130778,162.64,93.1673 +130779,161.22,92.9667 +130780,159.79,92.781 +130781,162.69,93.4363 +130782,161.29,93.178 +130783,159.88,92.9337 +130784,158.46,92.7042 +130785,161.33,93.4902 +130786,159.93,93.1885 +130787,158.53,92.9008 +130788,157.13,92.6276 +130789,159.96,93.5439 +130790,158.58,93.199 +130791,157.19,92.8678 +130792,155.8,92.5512 +130793,158.59,93.5974 +130794,157.22,93.2093 +130795,155.85,92.835 +130796,154.47,92.4752 +130797,157.22,93.6504 +130798,155.87,93.2194 +130799,154.51,92.8021 +130800,153.14,92.3994 +130801,155.85,93.7032 +130802,154.51,93.2294 +130803,153.16,92.7694 +130804,151.81,92.324 +130805,154.48,93.7555 +130806,153.15,93.2392 +130807,151.82,92.7367 +130808,150.48,92.2489 +130809,153.11,93.8075 +130810,151.8,93.2488 +130811,150.48,92.7041 +130812,149.15,92.1742 +130813,151.74,93.8589 +130814,150.44,93.2582 +130815,149.14,92.6717 +130816,147.83,92.1 +130817,150.36,93.9099 +130818,149.08,93.2675 +130819,147.8,92.6393 +130820,146.51,92.0262 +130821,148.99,93.9604 +130822,147.72,93.2765 +130823,146.46,92.6071 +130824,145.18,91.953 +130825,147.61,94.0103 +130826,146.37,93.2852 +130827,145.12,92.5749 +130828,143.86,91.8802 +130829,146.23,94.0597 +130830,145.01,93.2938 +130831,143.78,92.543 +130832,142.54,91.808 +130833,144.85,94.1084 +130834,143.65,93.3021 +130835,142.44,92.5111 +130836,141.22,91.7364 +130837,143.47,94.1565 +130838,142.29,93.3101 +130839,141.1,92.4795 +130840,139.9,91.6654 +130841,142.09,94.204 +130842,140.93,93.3179 +130843,139.76,92.448 +130844,138.58,91.5951 +130845,140.71,94.2507 +130846,139.57,93.3253 +130847,138.42,92.4167 +130848,137.27,91.5254 +130849,139.33,94.2967 +130850,138.21,93.3326 +130851,137.08,92.3856 +130852,135.95,91.4564 +130853,137.94,94.3419 +130854,136.85,93.3395 +130855,135.75,92.3547 +130856,134.64,91.3882 +130857,136.56,94.3864 +130858,135.49,93.3461 +130859,134.41,92.324 +130860,133.32,91.3207 +130861,135.17,94.43 +130862,134.13,93.3523 +130863,133.07,92.2935 +130864,132.01,91.254 +130865,133.79,94.4728 +130866,132.77,93.3583 +130867,131.74,92.2633 +130868,130.7,91.1881 +130869,132.4,94.5147 +130870,131.4,93.3639 +130871,130.4,92.2333 +130872,129.39,91.123 +130873,131.01,94.5557 +130874,130.04,93.3692 +130875,129.06,92.2035 +130876,128.08,91.0588 +130877,129.62,94.5958 +130878,128.68,93.3741 +130879,127.73,92.174 +130880,126.77,90.99549 +130881,128.23,94.6349 +130882,127.32,93.3787 +130883,126.39,92.1448 +130884,125.46,90.93308 +130885,126.84,94.673 +130886,125.96,93.3829 +130887,125.06,92.1158 +130888,124.15,90.87161 +130889,125.45,94.7101 +130890,124.59,93.3867 +130891,123.72,92.0871 +130892,122.84,90.8111 +130893,124.06,94.7462 +130894,123.23,93.3902 +130895,122.39,92.0587 +130896,121.54,90.75157 +130897,122.67,94.7812 +130898,121.87,93.3932 +130899,121.05,92.0306 +130900,120.23,90.69305 +130901,121.27,94.8151 +130902,120.5,93.3958 +130903,119.72,92.0028 +130904,118.93,90.63555 +130905,119.88,94.8479 +130906,119.14,93.3981 +130907,118.39,91.9754 +130908,117.62,90.57909 +130909,118.48,94.8796 +130910,117.77,93.3999 +130911,117.05,91.9482 +130912,116.32,90.52371 +130913,117.09,94.9101 +130914,116.41,93.4013 +130915,115.72,91.9214 +130916,115.02,90.46941 +130917,115.69,94.9394 +130918,115.05,93.4022 +130919,114.39,91.8949 +130920,113.71,90.41622 +130921,114.29,94.9676 +130922,113.68,93.4027 +130923,113.05,91.8687 +130924,112.41,90.36416 +130925,112.9,94.9944 +130926,112.32,93.4028 +130927,111.72,91.8429 +130928,111.11,90.31324 +130929,111.5,95.0201 +130930,110.95,93.4024 +130931,110.39,91.8175 +130932,109.81,90.26348 +130933,110.1,95.0445 +130934,109.59,93.4016 +130935,109.06,91.7924 +130936,108.51,90.2149 +130937,108.7,95.0675 +130938,108.22,93.4003 +130939,107.73,91.7677 +130940,107.21,90.16752 +130941,107.3,95.0893 +130942,106.86,93.3985 +130943,106.39,91.7433 +130944,105.91,90.12136 +130945,105.91,95.1097 +130946,105.49,93.3963 +130947,105.06,91.7193 +130948,104.61,90.076415 +130949,104.51,95.1288 +130950,104.13,93.3936 +130951,103.73,91.6957 +130952,103.32,90.032716 +130953,103.11,95.1466 +130954,102.76,93.3904 +130955,102.4,91.6725 +130956,102.02,89.990273 +130957,101.71,95.1629 +130958,101.4,93.3867 +130959,101.07,91.6497 +130960,100.72,89.949099 +130961,100.3,95.1779 +130962,100.03,93.3825 +130963,99.737,91.6273 +130964,99.424,89.909206 +130965,98.903,95.1914 +130966,98.666,93.3778 +130967,98.406,91.6053 +130968,98.127,89.87061 +130969,97.502,95.2036 +130970,97.3,93.3726 +130971,97.076,91.5837 +130972,96.831,89.83331 +130973,96.101,95.2142 +130974,95.934,93.3669 +130975,95.745,91.5625 +130976,95.535,89.79733 +130977,94.699,95.2235 +130978,94.569,93.3606 +130979,94.414,91.5417 +130980,94.239,89.76268 +130981,93.297,95.2312 +130982,93.203,93.3539 +130983,93.084,91.5213 +130984,92.943,89.72936 +130985,91.896,95.2375 +130986,91.837,93.3466 +130987,91.753,91.5014 +130988,91.648,89.69739 +130989,90.494,95.2423 +130990,90.471,93.3389 +130991,90.423,91.4818 +130992,90.352,89.66676 +130993,89.092,95.2456 +130994,89.106,93.3305 +130995,89.093,91.4627 +130996,89.057,89.6375 +130997,87.69,95.2474 +130998,87.74,93.3217 +130999,87.763,91.4441 +131000,87.762,89.60959 +131001,86.288,95.2477 +131002,86.374,93.3123 +131003,86.433,91.4258 +131004,86.467,89.58306 +131005,84.886,95.2465 +131006,85.008,93.3024 +131007,85.102,91.408 +131008,85.172,89.5579 +131009,83.484,95.2437 +131010,83.643,93.292 +131011,83.772,91.3906 +131012,83.877,89.53413 +131013,82.082,95.2394 +131014,82.277,93.281 +131015,82.442,91.3737 +131016,82.582,89.51173 +131017,80.68,95.2336 +131018,80.911,93.2695 +131019,81.112,91.3572 +131020,81.287,89.49073 +131021,79.279,95.2262 +131022,79.546,93.2575 +131023,79.782,91.3411 +131024,79.992,89.47111 +131025,77.877,95.2172 +131026,78.18,93.2449 +131027,78.452,91.3255 +131028,78.696,89.45288 +131029,76.476,95.2067 +131030,76.815,93.2318 +131031,77.122,91.3103 +131032,77.401,89.43604 +131033,75.076,95.1947 +131034,75.45,93.2181 +131035,75.792,91.2955 +131036,76.106,89.4206 +131037,73.675,95.1811 +131038,74.085,93.2039 +131039,74.462,91.2812 +131040,74.81,89.40654 +131041,72.275,95.1659 +131042,72.72,93.1892 +131043,73.131,91.2673 +131044,73.514,89.39388 +131045,70.875,95.1492 +131046,71.355,93.1739 +131047,71.801,91.2539 +131048,72.218,89.3826 +131049,69.475,95.131 +131050,69.99,93.1581 +131051,70.471,91.2409 +131052,70.922,89.37271 +131053,68.076,95.1112 +131054,68.626,93.1417 +131055,69.14,91.2283 +131056,69.625,89.36419 +131057,66.677,95.0898 +131058,67.261,93.1248 +131059,67.81,91.2162 +131060,68.328,89.35706 +131061,65.279,95.0669 +131062,65.897,93.1074 +131063,66.479,91.2045 +131064,67.031,89.3513 +131065,63.881,95.0424 +131066,64.533,93.0894 +131067,65.148,91.1932 +131068,65.733,89.3469 +131069,62.484,95.0165 +131070,63.169,93.0709 +131071,63.817,91.1824 +131072,64.435,89.34387 +131073,61.087,94.989 +131074,61.805,93.0519 +131075,62.486,91.172 +131076,63.137,89.34219 +131077,59.691,94.9599 +131078,60.442,93.0324 +131079,61.155,91.162 +131080,61.838,89.34186 +131081,58.295,94.9294 +131082,59.078,93.0123 +131083,59.824,91.1525 +131084,60.538,89.34286 +131085,56.9,94.8973 +131086,57.715,92.9917 +131087,58.493,91.1433 +131088,59.238,89.3452 +131089,55.506,94.8638 +131090,56.352,92.9706 +131091,57.161,91.1346 +131092,57.938,89.34886 +131093,54.112,94.8288 +131094,54.99,92.949 +131095,55.829,91.1263 +131096,56.637,89.35383 +131097,52.719,94.7923 +131098,53.628,92.9269 +131099,54.498,91.1184 +131100,55.336,89.3601 +131101,51.327,94.7543 +131102,52.265,92.9042 +131103,53.166,91.111 +131104,54.033,89.36765 +131105,49.935,94.715 +131106,50.904,92.8811 +131107,51.833,91.1039 +131108,52.731,89.37649 +131109,48.545,94.6741 +131110,49.542,92.8575 +131111,50.501,91.0972 +131112,51.427,89.38658 +131113,47.155,94.6319 +131114,48.181,92.8333 +131115,49.168,91.0909 +131116,50.123,89.39793 +131117,45.766,94.5882 +131118,46.82,92.8087 +131119,47.835,91.085 +131120,48.818,89.41052 +131121,44.377,94.5432 +131122,45.459,92.7836 +131123,46.502,91.0795 +131124,47.513,89.42432 +131125,42.99,94.4968 +131126,44.099,92.758 +131127,45.169,91.0744 +131128,46.207,89.43934 +131129,41.603,94.449 +131130,42.739,92.732 +131131,43.835,91.0696 +131132,44.9,89.45554 +131133,40.218,94.3999 +131134,41.379,92.7055 +131135,42.501,91.0653 +131136,43.592,89.47292 +131137,38.833,94.3495 +131138,40.019,92.6785 +131139,41.167,91.0612 +131140,42.283,89.49146 +131141,37.449,94.2978 +131142,38.66,92.6511 +131143,39.833,91.0576 +131144,40.974,89.51114 +131145,36.067,94.2448 +131146,37.301,92.6232 +131147,38.499,91.0543 +131148,39.663,89.53194 +131149,34.685,94.1905 +131150,35.943,92.5949 +131151,37.164,91.0513 +131152,38.352,89.55385 +131153,33.304,94.1351 +131154,34.585,92.5662 +131155,35.829,91.0487 +131156,37.04,89.57684 +131157,31.924,94.0784 +131158,33.227,92.537 +131159,34.493,91.0464 +131160,35.727,89.6009 +131161,30.546,94.0205 +131162,31.87,92.5075 +131163,33.157,91.0444 +131164,34.413,89.626 +131165,29.168,93.9614 +131166,30.513,92.4775 +131167,31.821,91.0428 +131168,33.099,89.65213 +131169,27.792,93.9013 +131170,29.156,92.4471 +131171,30.485,91.0414 +131172,31.783,89.67926 +131173,26.416,93.84 +131174,27.8,92.4163 +131175,29.149,91.0404 +131176,30.466,89.70738 +131177,25.042,93.7776 +131178,26.444,92.3851 +131179,27.812,91.0397 +131180,29.148,89.73645 +131181,23.669,93.7141 +131182,25.089,92.3536 +131183,26.474,91.0392 +131184,27.83,89.76646 +131185,22.297,93.6496 +131186,23.734,92.3216 +131187,25.137,91.039 +131188,26.51,89.79738 +131189,20.926,93.5841 +131190,22.379,92.2894 +131191,23.799,91.0392 +131192,25.189,89.8292 +131193,19.556,93.5176 +131194,21.025,92.2567 +131195,22.461,91.0395 +131196,23.867,89.86188 +131197,18.187,93.4501 +131198,19.671,92.2237 +131199,21.122,91.0401 +131200,22.544,89.8954 +131201,16.82,93.3817 +131202,18.318,92.1904 +131203,19.783,91.041 +131204,21.22,89.929743 +131205,15.454,93.3125 +131206,16.965,92.1568 +131207,18.444,91.0421 +131208,19.895,89.964876 +131209,14.089,93.2423 +131210,15.612,92.1228 +131211,17.104,91.0435 +131212,18.568,90.00077488 +131213,12.725,93.1713 +131214,14.26,92.0886 +131215,15.764,91.045 +131216,17.241,90.037414 +131217,11.363,93.0995 +131218,12.909,92.054 +131219,14.424,91.0468 +131220,15.912,90.074768 +131221,10.002,93.0269 +131222,11.557,92.0191 +131223,13.083,91.0488 +131224,14.583,90.11281 +131225,8.6417,92.9536 +131226,10.207,91.984 +131227,11.742,91.051 +131228,13.252,90.15151 +131229,7.283,92.8795 +131230,8.8562,91.9486 +131231,10.401,91.0533 +131232,11.92,90.19084 +131233,5.9256,92.8047 +131234,7.5063,91.913 +131235,9.0592,91.0559 +131236,10.586,90.23078 +131237,4.5694,92.7293 +131238,6.1569,91.8771 +131239,7.7171,91.0586 +131240,9.252,90.2713 +131241,3.2146,92.6533 +131242,4.8078,91.8409 +131243,6.3745,91.0614 +131244,7.9164,90.31236 +131245,1.861,92.5767 +131246,3.4593,91.8046 +131247,5.0316,91.0644 +131248,6.5795,90.35395 +131249,0.50865,92.4995 +131250,2.1112,91.768 +131251,3.6883,91.0676 +131252,5.2415,90.39602 +131253,359.16,92.4218 +131254,0.76353,91.7312 +131255,2.3447,91.0709 +131256,3.9023,90.43856 +131257,357.81,92.3436 +131258,359.42,91.6942 +131259,1.0006,91.0742 +131260,2.5618,90.48153 +131261,356.46,92.2649 +131262,358.07,91.6571 +131263,359.66,91.0777 +131264,1.2201,90.5249 +131265,355.11,92.1858 +131266,356.72,91.6198 +131267,358.31,91.0813 +131268,359.88,90.56864 +131269,353.77,92.1063 +131270,355.38,91.5823 +131271,356.97,91.085 +131272,358.53,90.61273 +131273,352.42,92.0264 +131274,354.03,91.5446 +131275,355.62,91.0887 +131276,357.19,90.65713 +131277,351.08,91.9463 +131278,352.69,91.5068 +131279,354.27,91.0925 +131280,355.84,90.70182 +131281,349.74,91.8658 +131282,351.34,91.4689 +131283,352.93,91.0964 +131284,354.49,90.74675 +131285,348.4,91.785 +131286,350,91.4309 +131287,351.58,91.1003 +131288,353.14,90.79191 +131289,347.06,91.7041 +131290,348.66,91.3927 +131291,350.23,91.1043 +131292,351.79,90.83726 +131293,345.72,91.6229 +131294,347.31,91.3545 +131295,348.89,91.1082 +131296,350.44,90.88276 +131297,344.38,91.5416 +131298,345.97,91.3162 +131299,347.54,91.1122 +131300,349.09,90.9284 +131301,343.05,91.4601 +131302,344.63,91.2778 +131303,346.19,91.1162 +131304,347.74,90.97413 +131305,341.71,91.3786 +131306,343.29,91.2393 +131307,344.84,91.1202 +131308,346.38,91.0199 +131309,340.38,91.297 +131310,341.94,91.2008 +131311,343.49,91.1241 +131312,345.02,91.0658 +131313,339.05,91.2154 +131314,340.6,91.1622 +131315,342.14,91.128 +131316,343.67,91.1116 +131317,337.72,91.1338 +131318,339.26,91.1236 +131319,340.79,91.1319 +131320,342.31,91.1574 +131321,336.39,91.0522 +131322,337.92,91.085 +131323,339.44,91.1357 +131324,340.95,91.2031 +131325,335.06,90.97074 +131326,336.58,91.0464 +131327,338.09,91.1395 +131328,339.59,91.2488 +131329,333.73,90.88936 +131330,335.25,91.0078 +131331,336.74,91.1432 +131332,338.22,91.2943 +131333,332.41,90.80813 +131334,333.91,90.96924 +131335,335.39,91.1468 +131336,336.86,91.3397 +131337,331.08,90.72707 +131338,332.57,90.93067 +131339,334.04,91.1503 +131340,335.49,91.3849 +131341,329.76,90.64622 +131342,331.23,90.89214 +131343,332.69,91.1537 +131344,334.13,91.4299 +131345,328.44,90.56561 +131346,329.89,90.85366 +131347,331.33,91.157 +131348,332.76,91.4746 +131349,327.12,90.48528 +131350,328.56,90.81524 +131351,329.98,91.1602 +131352,331.39,91.5191 +131353,325.8,90.40525 +131354,327.22,90.77688 +131355,328.63,91.1633 +131356,330.02,91.5632 +131357,324.48,90.32557 +131358,325.88,90.73861 +131359,327.28,91.1661 +131360,328.65,91.607 +131361,323.16,90.24625 +131362,324.55,90.70042 +131363,325.92,91.1689 +131364,327.28,91.6504 +131365,321.85,90.16733 +131366,323.21,90.66234 +131367,324.57,91.1714 +131368,325.91,91.6935 +131369,320.53,90.088847 +131370,321.88,90.62437 +131371,323.21,91.1738 +131372,324.53,91.7361 +131373,319.22,90.010827 +131374,320.54,90.58652 +131375,321.86,91.176 +131376,323.16,91.7782 +131377,317.9,89.933301 +131378,319.21,90.54881 +131379,320.5,91.178 +131380,321.78,91.8198 +131381,316.59,89.8563 +131382,317.88,90.51123 +131383,319.15,91.1799 +131384,320.4,91.861 +131385,315.28,89.77985 +131386,316.54,90.47381 +131387,317.79,91.1814 +131388,319.03,91.9015 +131389,313.97,89.70399 +131390,315.21,90.43655 +131391,316.44,91.1828 +131392,317.65,91.9415 +131393,312.66,89.62873 +131394,313.88,90.39946 +131395,315.08,91.1839 +131396,316.27,91.9809 +131397,311.36,89.55412 +131398,312.55,90.36256 +131399,313.72,91.1848 +131400,314.88,92.0196 +131401,310.05,89.48018 +131402,311.21,90.32585 +131403,312.37,91.1854 +131404,313.5,92.0577 +131405,308.74,89.40694 +131406,309.88,90.28934 +131407,311.01,91.1858 +131408,312.12,92.095 +131409,307.44,89.33442 +131410,308.55,90.25304 +131411,309.65,91.1858 +131412,310.74,92.1317 +131413,306.14,89.26266 +131414,307.22,90.21696 +131415,308.29,91.1856 +131416,309.35,92.1676 +131417,304.83,89.19167 +131418,305.89,90.1811 +131419,306.93,91.1851 +131420,307.96,92.2027 +131421,303.53,89.12149 +131422,304.56,90.14549 +131423,305.58,91.1843 +131424,306.58,92.237 +131425,302.23,89.05214 +131426,303.23,90.11012 +131427,304.22,91.1832 +131428,305.19,92.2704 +131429,300.93,88.9836 +131430,301.9,90.075014 +131431,302.86,91.1818 +131432,303.8,92.303 +131433,299.63,88.916 +131434,300.57,90.040167 +131435,301.5,91.1801 +131436,302.41,92.3348 +131437,298.33,88.8493 +131438,299.24,90.005593 +131439,300.14,91.178 +131440,301.02,92.3656 +131441,297.03,88.7835 +131442,297.92,89.971299 +131443,298.78,91.1755 +131444,299.63,92.3954 +131445,295.74,88.7187 +131446,296.59,89.937294 +131447,297.42,91.1728 +131448,298.24,92.4243 +131449,294.44,88.6548 +131450,295.26,89.903586 +131451,296.06,91.1696 +131452,296.85,92.4523 +131453,293.14,88.592 +131454,293.93,89.87018 +131455,294.7,91.1661 +131456,295.45,92.4792 +131457,291.85,88.5301 +131458,292.6,89.83709 +131459,293.34,91.1622 +131460,294.06,92.5051 +131461,290.55,88.4693 +131462,291.28,89.80431 +131463,291.98,91.158 +131464,292.67,92.5299 +131465,289.26,88.4096 +131466,289.95,89.77187 +131467,290.62,91.1533 +131468,291.27,92.5536 +131469,287.97,88.3509 +131470,288.62,89.73975 +131471,289.26,91.1483 +131472,289.88,92.5762 +131473,286.68,88.2933 +131474,287.3,89.70797 +131475,287.9,91.1428 +131476,288.48,92.5978 +131477,285.38,88.2369 +131478,285.97,89.67654 +131479,286.54,91.137 +131480,287.08,92.6181 +131481,284.09,88.1815 +131482,284.64,89.64547 +131483,285.18,91.1307 +131484,285.69,92.6374 +131485,282.8,88.1274 +131486,283.32,89.61475 +131487,283.82,91.124 +131488,284.29,92.6554 +131489,281.51,88.0744 +131490,281.99,89.58439 +131491,282.45,91.1169 +131492,282.89,92.6722 +131493,280.22,88.0225 +131494,280.67,89.55441 +131495,281.09,91.1094 +131496,281.49,92.6878 +131497,278.93,87.9719 +131498,279.34,89.5248 +131499,279.73,91.1014 +131500,280.1,92.7022 +131501,277.64,87.9225 +131502,278.02,89.49557 +131503,278.37,91.0929 +131504,278.7,92.7153 +131505,276.35,87.8743 +131506,276.69,89.46673 +131507,277.01,91.084 +131508,277.3,92.7271 +131509,275.06,87.8274 +131510,275.37,89.43827 +131511,275.65,91.0747 +131512,275.9,92.7377 +131513,273.78,87.7817 +131514,274.04,89.41022 +131515,274.28,91.0649 +131516,274.5,92.7469 +131517,272.49,87.7372 +131518,272.72,89.38256 +131519,272.92,91.0547 +131520,273.1,92.7548 +131521,271.2,87.6941 +131522,271.39,89.35531 +131523,271.56,91.0439 +131524,271.7,92.7614 +131525,269.91,87.6522 +131526,270.07,89.32846 +131527,270.2,91.0327 +131528,270.3,92.7667 +131529,268.63,87.6117 +131530,268.74,89.30203 +131531,268.84,91.0211 +131532,268.9,92.7706 +131533,267.34,87.5724 +131534,267.42,89.27601 +131535,267.47,91.0089 +131536,267.5,92.7731 +131537,266.05,87.5345 +131538,266.1,89.25041 +131539,266.11,90.99628 +131540,266.1,92.7742 +131541,264.76,87.4978 +131542,264.77,89.22523 +131543,264.75,90.98317 +131544,264.69,92.774 +131545,263.48,87.4626 +131546,263.45,89.20047 +131547,263.39,90.96956 +131548,263.29,92.7723 +131549,262.19,87.4286 +131550,262.12,89.17614 +131551,262.03,90.95547 +131552,261.89,92.7692 +131553,260.9,87.396 +131554,260.8,89.15224 +131555,260.66,90.94088 +131556,260.49,92.7647 +131557,259.62,87.3647 +131558,259.48,89.12877 +131559,259.3,90.9258 +131560,259.09,92.7588 +131561,258.33,87.3348 +131562,258.15,89.10574 +131563,257.94,90.91022 +131564,257.69,92.7514 +131565,257.04,87.3063 +131566,256.83,89.08313 +131567,256.58,90.89414 +131568,256.29,92.7426 +131569,255.76,87.2791 +131570,255.5,89.06097 +131571,255.22,90.87756 +131572,254.89,92.7323 +131573,254.47,87.2533 +131574,254.18,89.03924 +131575,253.86,90.86048 +131576,253.49,92.7206 +131577,253.18,87.2288 +131578,252.86,89.01794 +131579,252.49,90.8429 +131580,252.09,92.7074 +131581,251.9,87.2057 +131582,251.53,88.9971 +131583,251.13,90.82481 +131584,250.69,92.6928 +131585,250.61,87.184 +131586,250.21,88.9767 +131587,249.77,90.80623 +131588,249.29,92.6767 +131589,249.32,87.1636 +131590,248.88,88.9567 +131591,248.41,90.78713 +131592,247.89,92.6591 +131593,248.03,87.1446 +131594,247.56,88.9372 +131595,247.05,90.76754 +131596,246.5,92.6401 +131597,246.75,87.127 +131598,246.24,88.9181 +131599,245.69,90.74744 +131600,245.1,92.6196 +131601,245.46,87.1107 +131602,244.91,88.8994 +131603,244.33,90.72684 +131604,243.7,92.5976 +131605,244.17,87.0958 +131606,243.59,88.8812 +131607,242.97,90.70574 +131608,242.3,92.5742 +131609,242.88,87.0822 +131610,242.26,88.8634 +131611,241.61,90.68414 +131612,240.91,92.5493 +131613,241.59,87.07 +131614,240.94,88.846 +131615,240.25,90.66204 +131616,239.51,92.523 +131617,240.3,87.0591 +131618,239.61,88.8291 +131619,238.89,90.63944 +131620,238.12,92.4952 +131621,239.01,87.0496 +131622,238.29,88.8126 +131623,237.53,90.61635 +131624,236.72,92.4659 +131625,237.72,87.0414 +131626,236.96,88.7966 +131627,236.17,90.59276 +131628,235.33,92.4352 +131629,236.43,87.0345 +131630,235.64,88.7809 +131631,234.81,90.56868 +131632,233.93,92.403 +131633,235.13,87.0289 +131634,234.31,88.7657 +131635,233.45,90.54411 +131636,232.54,92.3694 +131637,233.84,87.0247 +131638,232.99,88.7509 +131639,232.09,90.51906 +131640,231.15,92.3344 +131641,232.55,87.0217 +131642,231.66,88.7366 +131643,230.73,90.49352 +131644,229.76,92.298 +131645,231.25,87.02 +131646,230.34,88.7226 +131647,229.38,90.4675 +131648,228.37,92.2602 +131649,229.96,87.0196 +131650,229.01,88.7091 +131651,228.02,90.44101 +131652,226.98,92.2209 +131653,228.66,87.0205 +131654,227.68,88.696 +131655,226.66,90.41404 +131656,225.59,92.1803 +131657,227.37,87.0226 +131658,226.36,88.6832 +131659,225.3,90.3866 +131660,224.2,92.1383 +131661,226.07,87.0259 +131662,225.03,88.6709 +131663,223.95,90.3587 +131664,222.81,92.0949 +131665,224.78,87.0305 +131666,223.7,88.659 +131667,222.59,90.33034 +131668,221.43,92.0502 +131669,223.48,87.0363 +131670,222.38,88.6475 +131671,221.23,90.30152 +131672,220.04,92.0042 +131673,222.18,87.0433 +131674,221.05,88.6363 +131675,219.88,90.27226 +131676,218.65,91.9568 +131677,220.88,87.0515 +131678,219.72,88.6256 +131679,218.52,90.24254 +131680,217.27,91.9081 +131681,219.58,87.0609 +131682,218.39,88.6152 +131683,217.17,90.21239 +131684,215.89,91.8581 +131685,218.28,87.0714 +131686,217.07,88.6052 +131687,215.81,90.1818 +131688,214.51,91.8068 +131689,216.97,87.083 +131690,215.74,88.5956 +131691,214.46,90.15079 +131692,213.13,91.7543 +131693,215.67,87.0958 +131694,214.41,88.5863 +131695,213.1,90.11934 +131696,211.75,91.7005 +131697,214.37,87.1097 +131698,213.08,88.5774 +131699,211.75,90.087487 +131700,210.37,91.6456 +131701,213.06,87.1247 +131702,211.75,88.5688 +131703,210.4,90.055218 +131704,208.99,91.5894 +131705,211.76,87.1407 +131706,210.42,88.5606 +131707,209.04,90.022545 +131708,207.61,91.532 +131709,210.45,87.1578 +131710,209.09,88.5527 +131711,207.69,89.989475 +131712,206.24,91.4734 +131713,209.14,87.1759 +131714,207.76,88.5451 +131715,206.34,89.956015 +131716,204.86,91.4138 +131717,207.83,87.195 +131718,206.43,88.5379 +131719,204.99,89.92217 +131720,203.49,91.353 +131721,206.52,87.2151 +131722,205.1,88.531 +131723,203.64,89.88795 +131724,202.12,91.291 +131725,205.21,87.2361 +131726,203.77,88.5244 +131727,202.28,89.85336 +131728,200.75,91.2281 +131729,203.9,87.2581 +131730,202.44,88.5181 +131731,200.93,89.81841 +131732,199.38,91.164 +131733,202.59,87.2811 +131734,201.11,88.5121 +131735,199.58,89.78311 +131736,198.01,91.099 +131737,201.27,87.3049 +131738,199.77,88.5064 +131739,198.23,89.74746 +131740,196.64,91.0329 +131741,199.96,87.3296 +131742,198.44,88.5009 +131743,196.88,89.71148 +131744,195.28,90.96585 +131745,198.64,87.3551 +131746,197.11,88.4958 +131747,195.54,89.67516 +131748,193.91,90.89785 +131749,197.32,87.3815 +131750,195.78,88.4909 +131751,194.19,89.63853 +131752,192.55,90.82892 +131753,196,87.4087 +131754,194.44,88.4862 +131755,192.84,89.60158 +131756,191.19,90.75909 +131757,194.68,87.4367 +131758,193.11,88.4818 +131759,191.49,89.56434 +131760,189.83,90.68839 +131761,193.36,87.4654 +131762,191.77,88.4777 +131763,190.14,89.52679 +131764,188.47,90.61683 +131765,192.04,87.4948 +131766,190.44,88.4738 +131767,188.8,89.48897 +131768,187.11,90.54446 +131769,190.72,87.525 +131770,189.1,88.4701 +131771,187.45,89.45087 +131772,185.75,90.4713 +131773,189.39,87.5558 +131774,187.77,88.4666 +131775,186.11,89.4125 +131776,184.4,90.39738 +131777,188.07,87.5873 +131778,186.43,88.4633 +131779,184.76,89.37387 +131780,183.05,90.32273 +131781,186.74,87.6194 +131782,185.1,88.4602 +131783,183.42,89.335 +131784,181.69,90.24737 +131785,185.41,87.6521 +131786,183.76,88.4573 +131787,182.07,89.29589 +131788,180.34,90.17134 +131789,184.08,87.6854 +131790,182.42,88.4546 +131791,180.73,89.25655 +131792,178.99,90.094661 +131793,182.75,87.7192 +131794,181.09,88.452 +131795,179.39,89.217 +131796,177.64,90.017372 +131797,181.42,87.7535 +131798,179.75,88.4496 +131799,178.04,89.17723 +131800,176.3,89.939502 +131801,180.08,87.7884 +131802,178.41,88.4474 +131803,176.7,89.13727 +131804,174.95,89.86108 +131805,178.75,87.8236 +131806,177.07,88.4453 +131807,175.36,89.09712 +131808,173.61,89.78214 +131809,177.41,87.8594 +131810,175.73,88.4433 +131811,174.02,89.0568 +131812,172.26,89.70271 +131813,176.08,87.8955 +131814,174.39,88.4414 +131815,172.68,89.0163 +131816,170.92,89.62282 +131817,174.74,87.9319 +131818,173.05,88.4397 +131819,171.34,88.9757 +131820,169.58,89.54251 +131821,173.4,87.9688 +131822,171.71,88.438 +131823,170,88.9349 +131824,168.24,89.4618 +131825,172.06,88.0059 +131826,170.37,88.4365 +131827,168.66,88.8939 +131828,166.91,89.38074 +131829,170.71,88.0433 +131830,169.03,88.435 +131831,167.32,88.8529 +131832,165.57,89.29934 +131833,169.37,88.081 +131834,167.69,88.4336 +131835,165.98,88.8117 +131836,164.23,89.21765 +131837,168.02,88.1189 +131838,166.35,88.4322 +131839,164.64,88.7704 +131840,162.9,89.1357 +131841,166.68,88.157 +131842,165.01,88.4309 +131843,163.3,88.729 +131844,161.57,89.05351 +131845,165.33,88.1953 +131846,163.66,88.4297 +131847,161.97,88.6876 +131848,160.24,88.9711 +131849,163.98,88.2337 +131850,162.32,88.4284 +131851,160.63,88.6461 +131852,158.91,88.8886 +131853,162.63,88.2722 +131854,160.98,88.4272 +131855,159.3,88.6045 +131856,157.58,88.8059 +131857,161.28,88.3108 +131858,159.63,88.426 +131859,157.96,88.5628 +131860,156.26,88.7231 +131861,159.93,88.3494 +131862,158.29,88.4248 +131863,156.62,88.5211 +131864,154.93,88.6403 +131865,158.57,88.3881 +131866,156.94,88.4236 +131867,155.29,88.4794 +131868,153.61,88.5574 +131869,157.22,88.4267 +131870,155.6,88.4224 +131871,153.96,88.4377 +131872,152.29,88.4745 +131873,155.86,88.4653 +131874,154.25,88.4211 +131875,152.62,88.396 +131876,150.96,88.3917 +131877,154.5,88.5038 +131878,152.91,88.4198 +131879,151.29,88.3542 +131880,149.64,88.3089 +131881,153.14,88.5422 +131882,151.56,88.4184 +131883,149.96,88.3125 +131884,148.33,88.2262 +131885,151.78,88.5805 +131886,150.22,88.417 +131887,148.63,88.2708 +131888,147.01,88.1436 +131889,150.42,88.6186 +131890,148.87,88.4155 +131891,147.29,88.2292 +131892,145.69,88.0612 +131893,149.06,88.6566 +131894,147.52,88.414 +131895,145.96,88.1876 +131896,144.38,87.979 +131897,147.69,88.6943 +131898,146.17,88.4123 +131899,144.63,88.146 +131900,143.07,87.897 +131901,146.33,88.7317 +131902,144.83,88.4105 +131903,143.3,88.1045 +131904,141.75,87.8153 +131905,144.96,88.7689 +131906,143.48,88.4086 +131907,141.97,88.0631 +131908,140.44,87.7339 +131909,143.59,88.8057 +131910,142.13,88.4066 +131911,140.64,88.0218 +131912,139.13,87.6527 +131913,142.22,88.8422 +131914,140.78,88.4045 +131915,139.31,87.9805 +131916,137.82,87.572 +131917,140.85,88.8784 +131918,139.43,88.4022 +131919,137.98,87.9394 +131920,136.52,87.4916 +131921,139.48,88.9141 +131922,138.08,88.3998 +131923,136.66,87.8984 +131924,135.21,87.4116 +131925,138.11,88.9494 +131926,136.73,88.3972 +131927,135.33,87.8575 +131928,133.91,87.3321 +131929,136.74,88.9843 +131930,135.38,88.3944 +131931,134,87.8168 +131932,132.6,87.253 +131933,135.36,89.01863 +131934,134.03,88.3914 +131935,132.67,87.7762 +131936,131.3,87.1745 +131937,133.99,89.05248 +131938,132.68,88.3883 +131939,131.35,87.7358 +131940,130,87.0965 +131941,132.61,89.08579 +131942,131.33,88.3849 +131943,130.02,87.6955 +131944,128.7,87.019 +131945,131.23,89.11853 +131946,129.97,88.3814 +131947,128.7,87.6554 +131948,127.4,86.9421 +131949,129.85,89.15067 +131950,128.62,88.3776 +131951,127.37,87.6155 +131952,126.1,86.8659 +131953,128.47,89.1822 +131954,127.27,88.3736 +131955,126.05,87.5758 +131956,124.8,86.7903 +131957,127.09,89.21307 +131958,125.92,88.3694 +131959,124.72,87.5363 +131960,123.51,86.7153 +131961,125.71,89.24326 +131962,124.56,88.3649 +131963,123.4,87.497 +131964,122.21,86.6411 +131965,124.33,89.27275 +131966,123.21,88.3602 +131967,122.07,87.458 +131968,120.92,86.5676 +131969,122.94,89.30151 +131970,121.86,88.3552 +131971,120.75,87.4191 +131972,119.62,86.4948 +131973,121.56,89.32951 +131974,120.5,88.3499 +131975,119.43,87.3805 +131976,118.33,86.4229 +131977,120.17,89.35674 +131978,119.15,88.3444 +131979,118.1,87.3422 +131980,117.04,86.3517 +131981,118.79,89.38316 +131982,117.79,88.3385 +131983,116.78,87.3041 +131984,115.75,86.2813 +131985,117.4,89.40875 +131986,116.44,88.3324 +131987,115.46,87.2663 +131988,114.46,86.2119 +131989,116.01,89.43349 +131990,115.08,88.326 +131991,114.14,87.2288 +131992,113.17,86.1432 +131993,114.62,89.45735 +131994,113.73,88.3192 +131995,112.82,87.1915 +131996,111.88,86.0755 +131997,113.23,89.48032 +131998,112.37,88.3122 +131999,111.49,87.1545 +132000,110.59,86.0087 +132001,111.84,89.50236 +132002,111.02,88.3048 +132003,110.17,87.1179 +132004,109.31,85.9429 +132005,110.45,89.52345 +132006,109.66,88.2971 +132007,108.85,87.0815 +132008,108.02,85.878 +132009,109.06,89.54358 +132010,108.31,88.289 +132011,107.53,87.0454 +132012,106.74,85.8142 +132013,107.67,89.56272 +132014,106.95,88.2806 +132015,106.21,87.0097 +132016,105.45,85.7513 +132017,106.28,89.58084 +132018,105.59,88.2718 +132019,104.89,86.9743 +132020,104.17,85.6894 +132021,104.88,89.59794 +132022,104.24,88.2627 +132023,103.57,86.9392 +132024,102.88,85.6286 +132025,103.49,89.61399 +132026,102.88,88.2532 +132027,102.25,86.9045 +132028,101.6,85.5689 +132029,102.09,89.62897 +132030,101.53,88.2433 +132031,100.93,86.8701 +132032,100.32,85.5103 +132033,100.7,89.64287 +132034,100.17,88.2331 +132035,99.614,86.8361 +132036,99.036,85.4527 +132037,99.303,89.65565 +132038,98.811,88.2224 +132039,98.295,86.8024 +132040,97.755,85.3963 +132041,97.907,89.66731 +132042,97.454,88.2114 +132043,96.977,86.7691 +132044,96.475,85.341 +132045,96.511,89.67783 +132046,96.097,88.2 +132047,95.658,86.7361 +132048,95.194,85.2869 +132049,95.114,89.68719 +132050,94.74,88.1881 +132051,94.34,86.7035 +132052,93.914,85.234 +132053,93.717,89.69538 +132054,93.383,88.1759 +132055,93.022,86.6713 +132056,92.635,85.1822 +132057,92.319,89.70237 +132058,92.025,88.1633 +132059,91.704,86.6395 +132060,91.356,85.1316 +132061,90.921,89.70816 +132062,90.668,88.1502 +132063,90.386,86.6081 +132064,90.077,85.0823 +132065,89.523,89.71273 +132066,89.31,88.1367 +132067,89.068,86.5771 +132068,88.799,85.0341 +132069,88.125,89.71607 +132070,87.953,88.1228 +132071,87.751,86.5465 +132072,87.52,84.9872 +132073,86.727,89.71815 +132074,86.595,88.1084 +132075,86.433,86.5162 +132076,86.242,84.9416 +132077,85.328,89.71898 +132078,85.237,88.0937 +132079,85.116,86.4864 +132080,84.965,84.8972 +132081,83.929,89.71854 +132082,83.88,88.0784 +132083,83.798,86.457 +132084,83.687,84.854 +132085,82.53,89.71682 +132086,82.522,88.0628 +132087,82.481,86.428 +132088,82.41,84.8122 +132089,81.131,89.7138 +132090,81.164,88.0467 +132091,81.164,86.3994 +132092,81.133,84.7716 +132093,79.732,89.70947 +132094,79.807,88.0301 +132095,79.847,86.3713 +132096,79.855,84.7323 +132097,78.333,89.70384 +132098,78.449,88.0131 +132099,78.53,86.3435 +132100,78.578,84.6944 +132101,76.934,89.69688 +132102,77.092,87.9957 +132103,77.213,86.3162 +132104,77.301,84.6577 +132105,75.536,89.68859 +132106,75.734,87.9778 +132107,75.896,86.2893 +132108,76.024,84.6223 +132109,74.137,89.67897 +132110,74.377,87.9594 +132111,74.579,86.2629 +132112,74.747,84.5883 +132113,72.738,89.668 +132114,73.019,87.9406 +132115,73.262,86.2368 +132116,73.47,84.5556 +132117,71.34,89.65568 +132118,71.662,87.9213 +132119,71.945,86.2112 +132120,72.193,84.5242 +132121,69.941,89.642 +132122,70.305,87.9015 +132123,70.628,86.1861 +132124,70.915,84.4941 +132125,68.543,89.62697 +132126,68.948,87.8813 +132127,69.311,86.1613 +132128,69.638,84.4654 +132129,67.145,89.61057 +132130,67.591,87.8607 +132131,67.994,86.137 +132132,68.36,84.438 +132133,65.748,89.59281 +132134,66.234,87.8395 +132135,66.677,86.1132 +132136,67.082,84.4119 +132137,64.351,89.57367 +132138,64.877,87.8179 +132139,65.36,86.0897 +132140,65.804,84.3872 +132141,62.954,89.55317 +132142,63.521,87.7958 +132143,64.043,86.0668 +132144,64.526,84.3638 +132145,61.558,89.53129 +132146,62.164,87.7733 +132147,62.726,86.0442 +132148,63.247,84.3417 +132149,60.162,89.50804 +132150,60.808,87.7503 +132151,61.408,86.0221 +132152,61.968,84.3209 +132153,58.766,89.48342 +132154,59.452,87.7269 +132155,60.091,86.0004 +132156,60.689,84.3015 +132157,57.371,89.45743 +132158,58.096,87.7029 +132159,58.773,85.9791 +132160,59.409,84.2834 +132161,55.977,89.43006 +132162,56.741,87.6785 +132163,57.456,85.9583 +132164,58.129,84.2667 +132165,54.583,89.40133 +132166,55.385,87.6537 +132167,56.138,85.9379 +132168,56.848,84.2512 +132169,53.189,89.37124 +132170,54.03,87.6284 +132171,54.82,85.918 +132172,55.567,84.2371 +132173,51.796,89.33979 +132174,52.675,87.6026 +132175,53.502,85.8985 +132176,54.285,84.2242 +132177,50.404,89.30698 +132178,51.32,87.5764 +132179,52.184,85.8794 +132180,53.003,84.2127 +132181,49.013,89.27282 +132182,49.966,87.5497 +132183,50.866,85.8607 +132184,51.721,84.2024 +132185,47.622,89.23732 +132186,48.611,87.5226 +132187,49.547,85.8424 +132188,50.437,84.1935 +132189,46.232,89.20048 +132190,47.257,87.495 +132191,48.228,85.8246 +132192,49.153,84.1858 +132193,44.843,89.16232 +132194,45.904,87.467 +132195,46.91,85.8072 +132196,47.869,84.1794 +132197,43.455,89.12283 +132198,44.55,87.4385 +132199,45.59,85.7902 +132200,46.584,84.1742 +132201,42.067,89.08203 +132202,43.197,87.4096 +132203,44.271,85.7736 +132204,45.298,84.1703 +132205,40.68,89.03993 +132206,41.844,87.3803 +132207,42.952,85.7574 +132208,44.011,84.1676 +132209,39.294,88.9965 +132210,40.492,87.3505 +132211,41.632,85.7416 +132212,42.724,84.1661 +132213,37.909,88.9519 +132214,39.139,87.3203 +132215,40.312,85.7263 +132216,41.436,84.1658 +132217,36.525,88.9059 +132218,37.788,87.2897 +132219,38.992,85.7113 +132220,40.147,84.1667 +132221,35.142,88.8587 +132222,36.436,87.2586 +132223,37.671,85.6967 +132224,38.857,84.1689 +132225,33.76,88.8103 +132226,35.085,87.2271 +132227,36.351,85.6825 +132228,37.566,84.1721 +132229,32.379,88.7606 +132230,33.734,87.1953 +132231,35.03,85.6687 +132232,36.275,84.1766 +132233,30.999,88.7097 +132234,32.384,87.163 +132235,33.708,85.6552 +132236,34.982,84.1822 +132237,29.62,88.6577 +132238,31.033,87.1303 +132239,32.387,85.6421 +132240,33.689,84.1888 +132241,28.243,88.6044 +132242,29.684,87.0972 +132243,31.065,85.6294 +132244,32.395,84.1967 +132245,26.866,88.55 +132246,28.334,87.0638 +132247,29.743,85.6171 +132248,31.1,84.2055 +132249,25.49,88.4944 +132250,26.985,87.0299 +132251,28.42,85.6051 +132252,29.804,84.2155 +132253,24.116,88.4377 +132254,25.637,86.9957 +132255,27.097,85.5934 +132256,28.506,84.2265 +132257,22.742,88.3798 +132258,24.289,86.9611 +132259,25.774,85.5821 +132260,27.208,84.2386 +132261,21.37,88.3209 +132262,22.941,86.9261 +132263,24.451,85.5711 +132264,25.909,84.2516 +132265,19.999,88.2609 +132266,21.594,86.8908 +132267,23.127,85.5605 +132268,24.609,84.2657 +132269,18.63,88.1998 +132270,20.247,86.8551 +132271,21.803,85.5502 +132272,23.307,84.2807 +132273,17.261,88.1378 +132274,18.901,86.8191 +132275,20.479,85.5402 +132276,22.005,84.2967 +132277,15.894,88.0747 +132278,17.555,86.7827 +132279,19.154,85.5305 +132280,20.701,84.3137 +132281,14.528,88.0106 +132282,16.209,86.7461 +132283,17.829,85.5211 +132284,19.396,84.3315 +132285,13.164,87.9455 +132286,14.864,86.709 +132287,16.503,85.5121 +132288,18.09,84.3502 +132289,11.801,87.8795 +132290,13.519,86.6717 +132291,15.177,85.5033 +132292,16.783,84.3698 +132293,10.439,87.8126 +132294,12.175,86.6341 +132295,13.851,85.4947 +132296,15.475,84.3903 +132297,9.0783,87.7447 +132298,10.832,86.5962 +132299,12.524,85.4865 +132300,14.165,84.4116 +132301,7.7191,87.676 +132302,9.4883,86.5579 +132303,11.197,85.4785 +132304,12.855,84.4336 +132305,6.3613,87.6065 +132306,8.1456,86.5194 +132307,9.87,85.4708 +132308,11.543,84.4565 +132309,5.0049,87.5361 +132310,6.8033,86.4806 +132311,8.5422,85.4633 +132312,10.23,84.4801 +132313,3.6499,87.4649 +132314,5.4616,86.4416 +132315,7.214,85.4561 +132316,8.9153,84.5044 +132317,2.2963,87.393 +132318,4.1203,86.4023 +132319,5.8854,85.4491 +132320,7.5996,84.5295 +132321,0.94416,87.3203 +132322,2.7795,86.3627 +132323,4.5564,85.4423 +132324,6.2826,84.5552 +132325,359.59,87.2469 +132326,1.4392,86.323 +132327,3.227,85.4358 +132328,4.9643,84.5815 +132329,358.24,87.1728 +132330,0.09937,86.2829 +132331,1.8972,85.4294 +132332,3.6447,84.6085 +132333,356.9,87.098 +132334,358.76,86.2427 +132335,0.56694,85.4233 +132336,2.3238,84.6361 +132337,355.55,87.0226 +132338,357.42,86.2022 +132339,359.24,85.4173 +132340,1.0016,84.6642 +132341,354.2,86.9466 +132342,356.08,86.1616 +132343,357.91,85.4115 +132344,359.68,84.6929 +132345,352.86,86.87 +132346,354.75,86.1207 +132347,356.57,85.4059 +132348,358.35,84.7222 +132349,351.52,86.7929 +132350,353.41,86.0797 +132351,355.24,85.4005 +132352,357.03,84.7519 +132353,350.18,86.7153 +132354,352.07,86.0385 +132355,353.91,85.3952 +132356,355.7,84.7821 +132357,348.84,86.6371 +132358,350.73,85.9971 +132359,352.58,85.39 +132360,354.37,84.8127 +132361,347.5,86.5585 +132362,349.4,85.9555 +132363,351.24,85.385 +132364,353.04,84.8437 +132365,346.17,86.4795 +132366,348.06,85.9139 +132367,349.91,85.3801 +132368,351.71,84.8751 +132369,344.83,86.4001 +132370,346.73,85.8721 +132371,348.58,85.3754 +132372,350.38,84.9069 +132373,343.5,86.3203 +132374,345.4,85.8301 +132375,347.24,85.3707 +132376,349.04,84.939 +132377,342.17,86.2402 +132378,344.06,85.7881 +132379,345.91,85.3661 +132380,347.71,84.9714 +132381,340.84,86.1597 +132382,342.73,85.7459 +132383,344.57,85.3616 +132384,346.37,85.004 +132385,339.51,86.079 +132386,341.4,85.7036 +132387,343.24,85.3572 +132388,345.03,85.0369 +132389,338.18,85.998 +132390,340.06,85.6613 +132391,341.9,85.3529 +132392,343.69,85.07 +132393,336.85,85.9169 +132394,338.73,85.6189 +132395,340.56,85.3486 +132396,342.35,85.1033 +132397,335.53,85.8355 +132398,337.4,85.5764 +132399,339.22,85.3444 +132400,341.01,85.1367 +132401,334.21,85.754 +132402,336.07,85.5339 +132403,337.89,85.3402 +132404,339.66,85.1703 +132405,332.89,85.6724 +132406,334.74,85.4913 +132407,336.55,85.336 +132408,338.32,85.2039 +132409,331.57,85.5907 +132410,333.41,85.4487 +132411,335.21,85.3318 +132412,336.97,85.2377 +132413,330.25,85.5089 +132414,332.08,85.406 +132415,333.87,85.3277 +132416,335.62,85.2714 +132417,328.93,85.4271 +132418,330.75,85.3634 +132419,332.53,85.3236 +132420,334.27,85.3052 +132421,327.61,85.3454 +132422,329.42,85.3207 +132423,331.19,85.3194 +132424,332.92,85.3389 +132425,326.3,85.2636 +132426,328.1,85.2781 +132427,329.85,85.3152 +132428,331.57,85.3726 +132429,324.99,85.1819 +132430,326.77,85.2355 +132431,328.51,85.311 +132432,330.22,85.4063 +132433,323.68,85.1004 +132434,325.44,85.1929 +132435,327.17,85.3068 +132436,328.86,85.4398 +132437,322.37,85.0189 +132438,324.12,85.1503 +132439,325.83,85.3025 +132440,327.51,85.4731 +132441,321.06,84.9376 +132442,322.79,85.1078 +132443,324.49,85.2981 +132444,326.15,85.5063 +132445,319.75,84.8566 +132446,321.47,85.0654 +132447,323.15,85.2937 +132448,324.79,85.5394 +132449,318.44,84.7757 +132450,320.14,85.023 +132451,321.8,85.2891 +132452,323.43,85.5722 +132453,317.14,84.6951 +132454,318.82,84.9807 +132455,320.46,85.2845 +132456,322.07,85.6047 +132457,315.84,84.6148 +132458,317.49,84.9384 +132459,319.12,85.2798 +132460,320.71,85.637 +132461,314.53,84.5348 +132462,316.17,84.8963 +132463,317.77,85.275 +132464,319.34,85.6689 +132465,313.23,84.4551 +132466,314.85,84.8543 +132467,316.43,85.2701 +132468,317.98,85.7005 +132469,311.93,84.3759 +132470,313.53,84.8124 +132471,315.09,85.2651 +132472,316.61,85.7318 +132473,310.64,84.297 +132474,312.2,84.7707 +132475,313.74,85.2599 +132476,315.24,85.7627 +132477,309.34,84.2186 +132478,310.88,84.729 +132479,312.4,85.2545 +132480,313.88,85.7931 +132481,308.04,84.1406 +132482,309.56,84.6876 +132483,311.05,85.249 +132484,312.51,85.8231 +132485,306.75,84.0632 +132486,308.24,84.6462 +132487,309.7,85.2434 +132488,311.14,85.8526 +132489,305.45,83.9862 +132490,306.92,84.6051 +132491,308.36,85.2375 +132492,309.76,85.8817 +132493,304.16,83.9098 +132494,305.6,84.5641 +132495,307.01,85.2315 +132496,308.39,85.9102 +132497,302.87,83.834 +132498,304.28,84.5233 +132499,305.66,85.2253 +132500,307.02,85.9381 +132501,301.58,83.7588 +132502,302.96,84.4827 +132503,304.32,85.2189 +132504,305.64,85.9655 +132505,300.29,83.6842 +132506,301.64,84.4423 +132507,302.97,85.2123 +132508,304.26,85.9923 +132509,299,83.6103 +132510,300.33,84.4021 +132511,301.62,85.2054 +132512,302.89,86.0184 +132513,297.72,83.5371 +132514,299.01,84.3622 +132515,300.27,85.1984 +132516,301.51,86.0439 +132517,296.43,83.4646 +132518,297.69,84.3224 +132519,298.92,85.1911 +132520,300.13,86.0687 +132521,295.15,83.3928 +132522,296.37,84.2829 +132523,297.57,85.1836 +132524,298.75,86.0929 +132525,293.86,83.3218 +132526,295.06,84.2437 +132527,296.23,85.1758 +132528,297.37,86.1163 +132529,292.58,83.2516 +132530,293.74,84.2047 +132531,294.88,85.1677 +132532,295.98,86.1389 +132533,291.3,83.1822 +132534,292.43,84.166 +132535,293.53,85.1594 +132536,294.6,86.1608 +132537,290.02,83.1136 +132538,291.11,84.1275 +132539,292.18,85.1508 +132540,293.22,86.1818 +132541,288.74,83.0459 +132542,289.79,84.0893 +132543,290.83,85.1419 +132544,291.83,86.2021 +132545,287.46,82.979 +132546,288.48,84.0514 +132547,289.48,85.1328 +132548,290.45,86.2215 +132549,286.18,82.9131 +132550,287.17,84.0138 +132551,288.13,85.1233 +132552,289.06,86.24 +132553,284.9,82.8481 +132554,285.85,83.9765 +132555,286.77,85.1136 +132556,287.67,86.2577 +132557,283.62,82.7841 +132558,284.54,83.9395 +132559,285.42,85.1035 +132560,286.28,86.2745 +132561,282.35,82.721 +132562,283.22,83.9028 +132563,284.07,85.0931 +132564,284.89,86.2903 +132565,281.07,82.6589 +132566,281.91,83.8664 +132567,282.72,85.0824 +132568,283.51,86.3052 +132569,279.8,82.5978 +132570,280.6,83.8304 +132571,281.37,85.0714 +132572,282.11,86.3192 +132573,278.52,82.5378 +132574,279.28,83.7947 +132575,280.02,85.06 +132576,280.72,86.3321 +132577,277.25,82.4787 +132578,277.97,83.7593 +132579,278.66,85.0483 +132580,279.33,86.3441 +132581,275.98,82.4208 +132582,276.66,83.7243 +132583,277.31,85.0362 +132584,277.94,86.355 +132585,274.7,82.3639 +132586,275.35,83.6897 +132587,275.96,85.0238 +132588,276.55,86.3649 +132589,273.43,82.3082 +132590,274.03,83.6554 +132591,274.61,85.011 +132592,275.15,86.3737 +132593,272.16,82.2535 +132594,272.72,83.6214 +132595,273.25,84.9979 +132596,273.76,86.3815 +132597,270.89,82.2 +132598,271.41,83.5878 +132599,271.9,84.9843 +132600,272.37,86.3882 +132601,269.62,82.1476 +132602,270.1,83.5546 +132603,270.55,84.9705 +132604,270.97,86.3938 +132605,268.35,82.0964 +132606,268.79,83.5218 +132607,269.2,84.9562 +132608,269.58,86.3983 +132609,267.08,82.0463 +132610,267.48,83.4894 +132611,267.84,84.9415 +132612,268.18,86.4016 +132613,265.81,81.9975 +132614,266.16,83.4573 +132615,266.49,84.9265 +132616,266.79,86.4038 +132617,264.54,81.9498 +132618,264.85,83.4257 +132619,265.14,84.911 +132620,265.39,86.4048 +132621,263.27,81.9033 +132622,263.54,83.3944 +132623,263.78,84.8952 +132624,263.99,86.4047 +132625,262,81.8581 +132626,262.23,83.3636 +132627,262.43,84.879 +132628,262.6,86.4034 +132629,260.74,81.8141 +132630,260.92,83.3331 +132631,261.08,84.8623 +132632,261.2,86.4009 +132633,259.47,81.7713 +132634,259.61,83.3031 +132635,259.72,84.8453 +132636,259.8,86.3972 +132637,258.2,81.7297 +132638,258.3,83.2734 +132639,258.37,84.8278 +132640,258.41,86.3923 +132641,256.93,81.6895 +132642,256.99,83.2442 +132643,257.02,84.81 +132644,257.01,86.3862 +132645,255.66,81.6504 +132646,255.68,83.2154 +132647,255.66,84.7917 +132648,255.61,86.3788 +132649,254.4,81.6127 +132650,254.37,83.187 +132651,254.31,84.773 +132652,254.21,86.3702 +132653,253.13,81.5762 +132654,253.06,83.159 +132655,252.96,84.7538 +132656,252.82,86.3603 +132657,251.86,81.5411 +132658,251.75,83.1315 +132659,251.6,84.7343 +132660,251.42,86.3492 +132661,250.59,81.5072 +132662,250.44,83.1043 +132663,250.25,84.7143 +132664,250.02,86.3369 +132665,249.33,81.4745 +132666,249.13,83.0776 +132667,248.9,84.6939 +132668,248.63,86.3232 +132669,248.06,81.4432 +132670,247.82,83.0513 +132671,247.54,84.6731 +132672,247.23,86.3083 +132673,246.79,81.4132 +132674,246.51,83.0255 +132675,246.19,84.6518 +132676,245.83,86.2921 +132677,245.52,81.3845 +132678,245.2,83.0001 +132679,244.84,84.6301 +132680,244.44,86.2747 +132681,244.25,81.3571 +132682,243.89,82.9751 +132683,243.48,84.608 +132684,243.04,86.2559 +132685,242.99,81.3309 +132686,242.58,82.9505 +132687,242.13,84.5854 +132688,241.64,86.2359 +132689,241.72,81.3061 +132690,241.27,82.9264 +132691,240.78,84.5624 +132692,240.25,86.2146 +132693,240.45,81.2826 +132694,239.96,82.9027 +132695,239.43,84.539 +132696,238.85,86.192 +132697,239.18,81.2604 +132698,238.65,82.8794 +132699,238.07,84.5151 +132700,237.46,86.1681 +132701,237.91,81.2394 +132702,237.34,82.8566 +132703,236.72,84.4908 +132704,236.06,86.1429 +132705,236.64,81.2198 +132706,236.02,82.8342 +132707,235.37,84.4661 +132708,234.67,86.1164 +132709,235.37,81.2014 +132710,234.71,82.8122 +132711,234.02,84.441 +132712,233.28,86.0886 +132713,234.1,81.1844 +132714,233.4,82.7907 +132715,232.67,84.4154 +132716,231.88,86.0596 +132717,232.83,81.1686 +132718,232.09,82.7695 +132719,231.31,84.3894 +132720,230.49,86.0293 +132721,231.55,81.1541 +132722,230.78,82.7488 +132723,229.96,84.3629 +132724,229.1,85.9977 +132725,230.28,81.1408 +132726,229.47,82.7285 +132727,228.61,84.3361 +132728,227.71,85.9648 +132729,229.01,81.1288 +132730,228.16,82.7087 +132731,227.26,84.3088 +132732,226.32,85.9306 +132733,227.73,81.1181 +132734,226.85,82.6892 +132735,225.91,84.2811 +132736,224.93,85.8952 +132737,226.46,81.1086 +132738,225.53,82.6702 +132739,224.56,84.253 +132740,223.54,85.8585 +132741,225.18,81.1003 +132742,224.22,82.6516 +132743,223.21,84.2244 +132744,222.15,85.8206 +132745,223.91,81.0933 +132746,222.91,82.6334 +132747,221.86,84.1955 +132748,220.76,85.7815 +132749,222.63,81.0875 +132750,221.6,82.6156 +132751,220.51,84.1661 +132752,219.37,85.7411 +132753,221.36,81.0829 +132754,220.28,82.5982 +132755,219.16,84.1364 +132756,217.99,85.6994 +132757,220.08,81.0795 +132758,218.97,82.5812 +132759,217.82,84.1062 +132760,216.6,85.6566 +132761,218.8,81.0773 +132762,217.66,82.5646 +132763,216.47,84.0756 +132764,215.22,85.6125 +132765,217.52,81.0762 +132766,216.34,82.5484 +132767,215.12,84.0446 +132768,213.83,85.5673 +132769,216.24,81.0763 +132770,215.03,82.5326 +132771,213.77,84.0133 +132772,212.45,85.5209 +132773,214.96,81.0775 +132774,213.72,82.5171 +132775,212.42,83.9815 +132776,211.07,85.4733 +132777,213.68,81.0799 +132778,212.4,82.5021 +132779,211.08,83.9494 +132780,209.69,85.4245 +132781,212.39,81.0834 +132782,211.09,82.4874 +132783,209.73,83.9169 +132784,208.31,85.3746 +132785,211.11,81.088 +132786,209.77,82.4731 +132787,208.38,83.884 +132788,206.93,85.3236 +132789,209.82,81.0936 +132790,208.46,82.4591 +132791,207.04,83.8508 +132792,205.55,85.2714 +132793,208.54,81.1003 +132794,207.14,82.4455 +132795,205.69,83.8172 +132796,204.18,85.2181 +132797,207.25,81.1081 +132798,205.83,82.4323 +132799,204.35,83.7832 +132800,202.8,85.1638 +132801,205.96,81.1169 +132802,204.51,82.4194 +132803,203,83.7489 +132804,201.43,85.1084 +132805,204.67,81.1267 +132806,203.19,82.4068 +132807,201.66,83.7142 +132808,200.06,85.0519 +132809,203.38,81.1375 +132810,201.88,82.3946 +132811,200.31,83.6792 +132812,198.69,84.9944 +132813,202.09,81.1493 +132814,200.56,82.3827 +132815,198.97,83.6439 +132816,197.32,84.9359 +132817,200.8,81.1621 +132818,199.24,82.3711 +132819,197.63,83.6082 +132820,195.95,84.8763 +132821,199.51,81.1757 +132822,197.92,82.3599 +132823,196.28,83.5722 +132824,194.58,84.8158 +132825,198.21,81.1903 +132826,196.61,82.3489 +132827,194.94,83.5359 +132828,193.21,84.7544 +132829,196.92,81.2058 +132830,195.29,82.3383 +132831,193.6,83.4993 +132832,191.85,84.692 +132833,195.62,81.2221 +132834,193.97,82.328 +132835,192.26,83.4624 +132836,190.48,84.6286 +132837,194.32,81.2393 +132838,192.65,82.3179 +132839,190.92,83.4252 +132840,189.12,84.5644 +132841,193.02,81.2574 +132842,191.33,82.3081 +132843,189.58,83.3877 +132844,187.76,84.4993 +132845,191.72,81.2762 +132846,190.01,82.2986 +132847,188.24,83.3499 +132848,186.4,84.4333 +132849,190.42,81.2958 +132850,188.69,82.2894 +132851,186.9,83.3119 +132852,185.04,84.3666 +132853,189.11,81.3162 +132854,187.37,82.2804 +132855,185.56,83.2736 +132856,183.69,84.299 +132857,187.81,81.3373 +132858,186.05,82.2717 +132859,184.22,83.235 +132860,182.33,84.2306 +132861,186.5,81.3591 +132862,184.72,82.2632 +132863,182.88,83.1962 +132864,180.98,84.1614 +132865,185.2,81.3816 +132866,183.4,82.255 +132867,181.55,83.1572 +132868,179.62,84.0916 +132869,183.89,81.4048 +132870,182.08,82.247 +132871,180.21,83.1179 +132872,178.27,84.021 +132873,182.58,81.4286 +132874,180.76,82.2392 +132875,178.87,83.0784 +132876,176.92,83.9497 +132877,181.27,81.453 +132878,179.43,82.2316 +132879,177.54,83.0387 +132880,175.58,83.8778 +132881,179.95,81.478 +132882,178.11,82.2242 +132883,176.2,82.9988 +132884,174.23,83.8052 +132885,178.64,81.5035 +132886,176.78,82.217 +132887,174.87,82.9587 +132888,172.88,83.732 +132889,177.32,81.5296 +132890,175.46,82.21 +132891,173.53,82.9184 +132892,171.54,83.6583 +132893,176.01,81.5562 +132894,174.13,82.2031 +132895,172.2,82.878 +132896,170.2,83.584 +132897,174.69,81.5833 +132898,172.81,82.1965 +132899,170.87,82.8373 +132900,168.86,83.5091 +132901,173.37,81.6108 +132902,171.48,82.1899 +132903,169.53,82.7965 +132904,167.52,83.4338 +132905,172.05,81.6388 +132906,170.15,82.1836 +132907,168.2,82.7556 +132908,166.18,83.358 +132909,170.73,81.6671 +132910,168.83,82.1773 +132911,166.87,82.7145 +132912,164.85,83.2818 +132913,169.4,81.6959 +132914,167.5,82.1712 +132915,165.54,82.6733 +132916,163.51,83.2051 +132917,168.08,81.7249 +132918,166.17,82.1653 +132919,164.21,82.6319 +132920,162.18,83.1281 +132921,166.75,81.7543 +132922,164.84,82.1594 +132923,162.88,82.5905 +132924,160.85,83.0507 +132925,165.42,81.784 +132926,163.51,82.1536 +132927,161.55,82.5489 +132928,159.52,82.973 +132929,164.09,81.814 +132930,162.18,82.148 +132931,160.22,82.5073 +132932,158.19,82.8949 +132933,162.76,81.8441 +132934,160.85,82.1424 +132935,158.89,82.4655 +132936,156.87,82.8167 +132937,161.43,81.8745 +132938,159.52,82.1368 +132939,157.56,82.4237 +132940,155.54,82.7381 +132941,160.09,81.9051 +132942,158.19,82.1314 +132943,156.24,82.3819 +132944,154.22,82.6594 +132945,158.76,81.9358 +132946,156.86,82.126 +132947,154.91,82.3399 +132948,152.9,82.5805 +132949,157.42,81.9666 +132950,155.53,82.1206 +132951,153.58,82.298 +132952,151.58,82.5014 +132953,156.08,81.9975 +132954,154.2,82.1153 +132955,152.26,82.256 +132956,150.26,82.4223 +132957,154.74,82.0285 +132958,152.86,82.11 +132959,150.93,82.2139 +132960,148.94,82.343 +132961,153.4,82.0595 +132962,151.53,82.1048 +132963,149.61,82.1719 +132964,147.63,82.2637 +132965,152.06,82.0906 +132966,150.2,82.0995 +132967,148.28,82.1298 +132968,146.31,82.1843 +132969,150.71,82.1216 +132970,148.86,82.0942 +132971,146.96,82.0878 +132972,145,82.105 +132973,149.37,82.1525 +132974,147.53,82.0889 +132975,145.64,82.0458 +132976,143.69,82.0257 +132977,148.02,82.1834 +132978,146.19,82.0836 +132979,144.32,82.0038 +132980,142.38,81.9464 +132981,146.67,82.2142 +132982,144.86,82.0783 +132983,142.99,81.9618 +132984,141.07,81.8673 +132985,145.32,82.2448 +132986,143.52,82.0729 +132987,141.67,81.9199 +132988,139.77,81.7882 +132989,143.97,82.2753 +132990,142.19,82.0675 +132991,140.35,81.878 +132992,138.46,81.7093 +132993,142.62,82.3056 +132994,140.85,82.062 +132995,139.03,81.8362 +132996,137.16,81.6306 +132997,141.27,82.3357 +132998,139.51,82.0564 +132999,137.71,81.7944 +133000,135.86,81.5522 +133001,139.91,82.3655 +133002,138.17,82.0508 +133003,136.39,81.7528 +133004,134.56,81.4739 +133005,138.55,82.3951 +133006,136.84,82.0451 +133007,135.07,81.7112 +133008,133.26,81.396 +133009,137.2,82.4244 +133010,135.5,82.0393 +133011,133.75,81.6698 +133012,131.96,81.3183 +133013,135.84,82.4533 +133014,134.16,82.0333 +133015,132.44,81.6284 +133016,130.66,81.241 +133017,134.48,82.4819 +133018,132.82,82.0273 +133019,131.12,81.5872 +133020,129.37,81.164 +133021,133.11,82.5102 +133022,131.48,82.0211 +133023,129.8,81.5461 +133024,128.08,81.0874 +133025,131.75,82.538 +133026,130.14,82.0148 +133027,128.48,81.5052 +133028,126.78,81.0112 +133029,130.39,82.5653 +133030,128.8,82.0084 +133031,127.17,81.4644 +133032,125.49,80.9355 +133033,129.02,82.5923 +133034,127.46,82.0018 +133035,125.85,81.4237 +133036,124.2,80.8603 +133037,127.65,82.6187 +133038,126.12,81.995 +133039,124.54,81.3832 +133040,122.91,80.7855 +133041,126.29,82.6447 +133042,124.78,81.9881 +133043,123.22,81.3429 +133044,121.63,80.7113 +133045,124.92,82.6701 +133046,123.43,81.981 +133047,121.91,81.3028 +133048,120.34,80.6377 +133049,123.55,82.6949 +133050,122.09,81.9737 +133051,120.6,81.2629 +133052,119.06,80.5646 +133053,122.17,82.7192 +133054,120.75,81.9663 +133055,119.28,81.2232 +133056,117.77,80.4921 +133057,120.8,82.7428 +133058,119.4,81.9586 +133059,117.97,81.1837 +133060,116.49,80.4203 +133061,119.43,82.7659 +133062,118.06,81.9507 +133063,116.66,81.1444 +133064,115.21,80.3491 +133065,118.05,82.7882 +133066,116.72,81.9426 +133067,115.34,81.1054 +133068,113.93,80.2787 +133069,116.68,82.8099 +133070,115.37,81.9342 +133071,114.03,81.0665 +133072,112.65,80.2089 +133073,115.3,82.8309 +133074,114.03,81.9257 +133075,112.72,81.028 +133076,111.37,80.1399 +133077,113.92,82.8512 +133078,112.68,81.9168 +133079,111.41,80.9896 +133080,110.1,80.0716 +133081,112.54,82.8707 +133082,111.34,81.9078 +133083,110.1,80.9516 +133084,108.82,80.0041 +133085,111.16,82.8895 +133086,109.99,81.8985 +133087,108.79,80.9138 +133088,107.55,79.937 +133089,109.78,82.9075 +133090,108.65,81.8889 +133091,107.48,80.8763 +133092,106.27,79.872 +133093,108.4,82.9246 +133094,107.3,81.879 +133095,106.17,80.839 +133096,105,79.807 +133097,107.02,82.941 +133098,105.95,81.8689 +133099,104.86,80.8021 +133100,103.73,79.743 +133101,105.63,82.9565 +133102,104.61,81.8585 +133103,103.55,80.7654 +133104,102.46,79.679 +133105,104.25,82.9711 +133106,103.26,81.8477 +133107,102.24,80.7291 +133108,101.19,79.617 +133109,102.86,82.9848 +133110,101.91,81.8367 +133111,100.93,80.6931 +133112,99.919,79.556 +133113,101.48,82.9976 +133114,100.57,81.8254 +133115,99.625,80.6574 +133116,98.651,79.495 +133117,100.09,83.0095 +133118,99.219,81.8138 +133119,98.318,80.622 +133120,97.383,79.436 +133121,98.702,83.0205 +133122,97.872,81.8018 +133123,97.01,80.5869 +133124,96.116,79.377 +133125,97.313,83.0305 +133126,96.524,81.7896 +133127,95.703,80.5522 +133128,94.85,79.32 +133129,95.924,83.0395 +133130,95.176,81.777 +133131,94.396,80.5178 +133132,93.584,79.264 +133133,94.535,83.0475 +133134,93.827,81.764 +133135,93.089,80.4838 +133136,92.32,79.208 +133137,93.144,83.0545 +133138,92.479,81.7508 +133139,91.783,80.4501 +133140,91.055,79.154 +133141,91.753,83.0605 +133142,91.13,81.7372 +133143,90.476,80.4168 +133144,89.791,79.101 +133145,90.362,83.0655 +133146,89.781,81.7232 +133147,89.17,80.3838 +133148,88.528,79.049 +133149,88.97,83.0693 +133150,88.432,81.7089 +133151,87.864,80.3512 +133152,87.266,78.998 +133153,87.577,83.0722 +133154,87.083,81.6942 +133155,86.559,80.319 +133156,86.003,78.948 +133157,86.184,83.0739 +133158,85.734,81.6792 +133159,85.253,80.2872 +133160,84.742,78.899 +133161,84.791,83.0746 +133162,84.385,81.6638 +133163,83.948,80.2557 +133164,83.48,78.852 +133165,83.397,83.0741 +133166,83.035,81.648 +133167,82.642,80.2246 +133168,82.219,78.806 +133169,82.003,83.0725 +133170,81.686,81.6318 +133171,81.337,80.1939 +133172,80.959,78.76 +133173,80.609,83.0698 +133174,80.336,81.6153 +133175,80.032,80.1636 +133176,79.698,78.716 +133177,79.214,83.066 +133178,78.986,81.5984 +133179,78.728,80.1338 +133180,78.438,78.674 +133181,77.819,83.061 +133182,77.636,81.5811 +133183,77.423,80.1043 +133184,77.178,78.632 +133185,76.424,83.0548 +133186,76.287,81.5634 +133187,76.118,80.0752 +133188,75.919,78.592 +133189,75.028,83.0475 +133190,74.937,81.5453 +133191,74.814,80.0465 +133192,74.659,78.552 +133193,73.633,83.039 +133194,73.587,81.5268 +133195,73.509,80.0182 +133196,73.4,78.514 +133197,72.237,83.0293 +133198,72.237,81.5079 +133199,72.205,79.99 +133200,72.141,78.478 +133201,70.841,83.0184 +133202,70.887,81.4887 +133203,70.901,79.963 +133204,70.882,78.442 +133205,69.445,83.0064 +133206,69.538,81.469 +133207,69.596,79.936 +133208,69.623,78.408 +133209,68.05,82.9931 +133210,68.188,81.4489 +133211,68.292,79.909 +133212,68.364,78.375 +133213,66.654,82.9786 +133214,66.838,81.4284 +133215,66.988,79.883 +133216,67.105,78.343 +133217,65.258,82.9629 +133218,65.488,81.4075 +133219,65.684,79.857 +133220,65.846,78.313 +133221,63.862,82.946 +133222,64.139,81.3862 +133223,64.379,79.832 +133224,64.587,78.284 +133225,62.467,82.9279 +133226,62.789,81.3645 +133227,63.075,79.807 +133228,63.327,78.256 +133229,61.071,82.9085 +133230,61.439,81.3424 +133231,61.771,79.782 +133232,62.068,78.229 +133233,59.676,82.888 +133234,60.09,81.3199 +133235,60.466,79.758 +133236,60.808,78.204 +133237,58.281,82.8662 +133238,58.741,81.297 +133239,59.162,79.735 +133240,59.548,78.18 +133241,56.887,82.8431 +133242,57.392,81.2736 +133243,57.858,79.711 +133244,58.288,78.157 +133245,55.492,82.8189 +133246,56.042,81.2499 +133247,56.553,79.689 +133248,57.027,78.135 +133249,54.098,82.7934 +133250,54.694,81.2257 +133251,55.248,79.666 +133252,55.766,78.115 +133253,52.705,82.7667 +133254,53.345,81.2012 +133255,53.944,79.644 +133256,54.505,78.096 +133257,51.312,82.7388 +133258,51.996,81.1762 +133259,52.639,79.623 +133260,53.244,78.078 +133261,49.919,82.7096 +133262,50.648,81.1508 +133263,51.334,79.601 +133264,51.981,78.062 +133265,48.527,82.6793 +133266,49.3,81.125 +133267,50.029,79.581 +133268,50.719,78.047 +133269,47.135,82.6477 +133270,47.951,81.0989 +133271,48.724,79.56 +133272,49.456,78.032 +133273,45.744,82.6149 +133274,46.604,81.0723 +133275,47.418,79.541 +133276,48.192,78.02 +133277,44.353,82.5809 +133278,45.256,81.0453 +133279,46.113,79.521 +133280,46.928,78.008 +133281,42.963,82.5457 +133282,43.909,81.0179 +133283,44.807,79.502 +133284,45.664,77.998 +133285,41.574,82.5093 +133286,42.562,80.9901 +133287,43.501,79.483 +133288,44.398,77.989 +133289,40.185,82.4718 +133290,41.215,80.9619 +133291,42.195,79.465 +133292,43.132,77.981 +133293,38.797,82.433 +133294,39.868,80.9334 +133295,40.889,79.447 +133296,41.866,77.974 +133297,37.41,82.3931 +133298,38.522,80.9044 +133299,39.582,79.43 +133300,40.598,77.968 +133301,36.024,82.352 +133302,37.176,80.8751 +133303,38.276,79.413 +133304,39.33,77.964 +133305,34.638,82.3098 +133306,35.83,80.8454 +133307,36.969,79.396 +133308,38.061,77.961 +133309,33.253,82.2664 +133310,34.484,80.8153 +133311,35.661,79.38 +133312,36.791,77.959 +133313,31.869,82.2219 +133314,33.139,80.7848 +133315,34.354,79.364 +133316,35.521,77.958 +133317,30.487,82.1762 +133318,31.794,80.754 +133319,33.046,79.348 +133320,34.249,77.958 +133321,29.105,82.1295 +133322,30.45,80.7228 +133323,31.738,79.333 +133324,32.977,77.959 +133325,27.724,82.0816 +133326,29.106,80.6912 +133327,30.43,79.318 +133328,31.704,77.962 +133329,26.344,82.0327 +133330,27.762,80.6593 +133331,29.121,79.304 +133332,30.43,77.965 +133333,24.965,81.9827 +133334,26.419,80.627 +133335,27.812,79.29 +133336,29.154,77.97 +133337,23.587,81.9316 +133338,25.076,80.5944 +133339,26.503,79.276 +133340,27.878,77.975 +133341,22.21,81.8795 +133342,23.733,80.5614 +133343,25.194,79.263 +133344,26.601,77.982 +133345,20.835,81.8264 +133346,22.391,80.5282 +133347,23.884,79.25 +133348,25.323,77.99 +133349,19.46,81.7722 +133350,21.049,80.4945 +133351,22.574,79.237 +133352,24.044,77.998 +133353,18.087,81.7171 +133354,19.707,80.4606 +133355,21.263,79.225 +133356,22.763,78.008 +133357,16.715,81.661 +133358,18.366,80.4263 +133359,19.952,79.213 +133360,21.482,78.019 +133361,15.344,81.6039 +133362,17.026,80.3917 +133363,18.641,79.201 +133364,20.199,78.03 +133365,13.974,81.5459 +133366,15.685,80.3568 +133367,17.329,79.19 +133368,18.915,78.043 +133369,12.606,81.4869 +133370,14.346,80.3216 +133371,16.017,79.179 +133372,17.63,78.056 +133373,11.239,81.427 +133374,13.006,80.2861 +133375,14.705,79.168 +133376,16.344,78.071 +133377,9.8734,81.3663 +133378,11.667,80.2504 +133379,13.392,79.157 +133380,15.057,78.086 +133381,8.5091,81.3047 +133382,10.329,80.2143 +133383,12.079,79.147 +133384,13.768,78.102 +133385,7.1461,81.2422 +133386,8.9912,80.178 +133387,10.765,79.137 +133388,12.478,78.118 +133389,5.7846,81.1789 +133390,7.6537,80.1414 +133391,9.4511,79.128 +133392,11.187,78.136 +133393,4.4244,81.1148 +133394,6.3168,80.1045 +133395,8.1367,79.118 +133396,9.8946,78.154 +133397,3.0657,81.0499 +133398,4.9803,80.0674 +133399,6.8218,79.109 +133400,8.6008,78.174 +133401,1.7084,80.9842 +133402,3.6443,80.03 +133403,5.5065,79.101 +133404,7.3057,78.193 +133405,0.35264,80.9179 +133406,2.3088,79.992 +133407,4.1908,79.092 +133408,6.0092,78.214 +133409,359,80.8507 +133410,0.97384,79.955 +133411,2.8746,79.084 +133412,4.7114,78.235 +133413,357.65,80.7829 +133414,359.64,79.917 +133415,1.558,79.075 +133416,3.4122,78.257 +133417,356.29,80.7145 +133418,358.31,79.878 +133419,0.24095,79.068 +133420,2.1116,78.28 +133421,354.94,80.6454 +133422,356.97,79.84 +133423,358.92,79.06 +133424,0.80954,78.303 +133425,353.6,80.5756 +133426,355.64,79.801 +133427,357.61,79.052 +133428,359.51,78.327 +133429,352.25,80.5053 +133430,354.31,79.762 +133431,356.29,79.045 +133432,358.2,78.351 +133433,350.9,80.4344 +133434,352.97,79.723 +133435,354.97,79.038 +133436,356.89,78.376 +133437,349.56,80.3629 +133438,351.64,79.684 +133439,353.65,79.031 +133440,355.59,78.401 +133441,348.22,80.291 +133442,350.31,79.645 +133443,352.33,79.024 +133444,354.28,78.427 +133445,346.88,80.2185 +133446,348.98,79.605 +133447,351.01,79.018 +133448,352.97,78.453 +133449,345.54,80.1456 +133450,347.65,79.566 +133451,349.69,79.011 +133452,351.66,78.48 +133453,344.2,80.0722 +133454,346.32,79.526 +133455,348.37,79.005 +133456,350.34,78.507 +133457,342.87,79.998 +133458,345,79.486 +133459,347.04,78.999 +133460,349.03,78.535 +133461,341.53,79.924 +133462,343.67,79.446 +133463,345.72,78.993 +133464,347.71,78.563 +133465,340.2,79.85 +133466,342.34,79.406 +133467,344.4,78.987 +133468,346.39,78.591 +133469,338.87,79.775 +133470,341.01,79.365 +133471,343.08,78.981 +133472,345.07,78.619 +133473,337.54,79.7 +133474,339.69,79.325 +133475,341.75,78.975 +133476,343.75,78.648 +133477,336.22,79.624 +133478,338.36,79.285 +133479,340.43,78.97 +133480,342.43,78.677 +133481,334.89,79.549 +133482,337.04,79.244 +133483,339.1,78.964 +133484,341.1,78.706 +133485,333.57,79.473 +133486,335.71,79.204 +133487,337.78,78.959 +133488,339.78,78.735 +133489,332.24,79.397 +133490,334.39,79.163 +133491,336.45,78.953 +133492,338.45,78.765 +133493,330.92,79.321 +133494,333.06,79.122 +133495,335.13,78.948 +133496,337.12,78.795 +133497,329.6,79.244 +133498,331.74,79.082 +133499,333.8,78.943 +133500,335.79,78.824 +133501,328.29,79.168 +133502,330.42,79.041 +133503,332.47,78.937 +133504,334.46,78.854 +133505,326.97,79.091 +133506,329.1,79 +133507,331.14,78.932 +133508,333.13,78.884 +133509,325.66,79.015 +133510,327.77,78.959 +133511,329.82,78.927 +133512,331.79,78.914 +133513,324.34,78.938 +133514,326.45,78.919 +133515,328.49,78.921 +133516,330.46,78.944 +133517,323.03,78.861 +133518,325.13,78.878 +133519,327.16,78.916 +133520,329.12,78.974 +133521,321.72,78.785 +133522,323.81,78.837 +133523,325.83,78.911 +133524,327.78,79.003 +133525,320.42,78.708 +133526,322.49,78.797 +133527,324.5,78.906 +133528,326.44,79.033 +133529,319.11,78.632 +133530,321.18,78.756 +133531,323.17,78.9 +133532,325.1,79.063 +133533,317.81,78.556 +133534,319.86,78.715 +133535,321.84,78.895 +133536,323.75,79.092 +133537,316.5,78.48 +133538,318.54,78.675 +133539,320.51,78.89 +133540,322.41,79.121 +133541,315.2,78.404 +133542,317.22,78.634 +133543,319.17,78.884 +133544,321.06,79.15 +133545,313.9,78.328 +133546,315.91,78.594 +133547,317.84,78.878 +133548,319.71,79.179 +133549,312.6,78.253 +133550,314.59,78.554 +133551,316.51,78.873 +133552,318.36,79.208 +133553,311.31,78.178 +133554,313.28,78.514 +133555,315.17,78.867 +133556,317.01,79.236 +133557,310.01,78.103 +133558,311.96,78.473 +133559,313.84,78.861 +133560,315.66,79.264 +133561,308.72,78.028 +133562,310.65,78.433 +133563,312.51,78.855 +133564,314.31,79.292 +133565,307.43,77.954 +133566,309.33,78.394 +133567,311.17,78.849 +133568,312.95,79.319 +133569,306.14,77.88 +133570,308.02,78.354 +133571,309.84,78.843 +133572,311.59,79.346 +133573,304.85,77.807 +133574,306.71,78.314 +133575,308.5,78.837 +133576,310.24,79.372 +133577,303.56,77.734 +133578,305.39,78.275 +133579,307.16,78.831 +133580,308.88,79.398 +133581,302.27,77.662 +133582,304.08,78.236 +133583,305.83,78.824 +133584,307.52,79.424 +133585,300.99,77.59 +133586,302.77,78.197 +133587,304.49,78.817 +133588,306.16,79.449 +133589,299.71,77.518 +133590,301.46,78.158 +133591,303.15,78.81 +133592,304.79,79.473 +133593,298.42,77.448 +133594,300.15,78.119 +133595,301.82,78.803 +133596,303.43,79.497 +133597,297.14,77.377 +133598,298.84,78.081 +133599,300.48,78.796 +133600,302.06,79.521 +133601,295.86,77.308 +133602,297.53,78.042 +133603,299.14,78.788 +133604,300.7,79.544 +133605,294.59,77.239 +133606,296.22,78.004 +133607,297.8,78.781 +133608,299.33,79.566 +133609,293.31,77.17 +133610,294.91,77.966 +133611,296.46,78.773 +133612,297.96,79.588 +133613,292.03,77.102 +133614,293.6,77.929 +133615,295.12,78.765 +133616,296.59,79.609 +133617,290.76,77.035 +133618,292.3,77.891 +133619,293.78,78.757 +133620,295.22,79.629 +133621,289.48,76.969 +133622,290.99,77.854 +133623,292.44,78.748 +133624,293.84,79.649 +133625,288.21,76.904 +133626,289.68,77.817 +133627,291.1,78.739 +133628,292.47,79.667 +133629,286.94,76.839 +133630,288.37,77.781 +133631,289.76,78.73 +133632,291.09,79.686 +133633,285.67,76.775 +133634,287.07,77.744 +133635,288.42,78.721 +133636,289.72,79.703 +133637,284.4,76.712 +133638,285.76,77.708 +133639,287.07,78.712 +133640,288.34,79.72 +133641,283.13,76.649 +133642,284.46,77.672 +133643,285.73,78.702 +133644,286.96,79.735 +133645,281.87,76.588 +133646,283.15,77.637 +133647,284.39,78.692 +133648,285.58,79.75 +133649,280.6,76.527 +133650,281.85,77.602 +133651,283.05,78.681 +133652,284.2,79.764 +133653,279.34,76.468 +133654,280.54,77.567 +133655,281.7,78.671 +133656,282.82,79.778 +133657,278.07,76.409 +133658,279.24,77.532 +133659,280.36,78.66 +133660,281.44,79.79 +133661,276.81,76.351 +133662,277.93,77.498 +133663,279.02,78.649 +133664,280.06,79.802 +133665,275.55,76.294 +133666,276.63,77.464 +133667,277.67,78.637 +133668,278.67,79.812 +133669,274.29,76.238 +133670,275.33,77.43 +133671,276.33,78.625 +133672,277.29,79.822 +133673,273.03,76.184 +133674,274.03,77.397 +133675,274.98,78.613 +133676,275.9,79.831 +133677,271.77,76.13 +133678,272.72,77.364 +133679,273.64,78.601 +133680,274.52,79.838 +133681,270.51,76.077 +133682,271.42,77.331 +133683,272.29,78.588 +133684,273.13,79.845 +133685,269.25,76.025 +133686,270.12,77.299 +133687,270.95,78.575 +133688,271.74,79.851 +133689,267.99,75.974 +133690,268.82,77.267 +133691,269.6,78.561 +133692,270.35,79.856 +133693,266.73,75.925 +133694,267.51,77.235 +133695,268.26,78.547 +133696,268.96,79.859 +133697,265.48,75.876 +133698,266.21,77.204 +133699,266.91,78.533 +133700,267.58,79.862 +133701,264.22,75.829 +133702,264.91,77.173 +133703,265.57,78.519 +133704,266.18,79.864 +133705,262.97,75.783 +133706,263.61,77.143 +133707,264.22,78.504 +133708,264.79,79.864 +133709,261.71,75.737 +133710,262.31,77.113 +133711,262.87,78.489 +133712,263.4,79.864 +133713,260.46,75.693 +133714,261.01,77.083 +133715,261.53,78.473 +133716,262.01,79.862 +133717,259.2,75.651 +133718,259.71,77.054 +133719,260.18,78.457 +133720,260.62,79.86 +133721,257.95,75.609 +133722,258.41,77.025 +133723,258.83,78.441 +133724,259.23,79.856 +133725,256.7,75.568 +133726,257.11,76.996 +133727,257.49,78.424 +133728,257.83,79.851 +133729,255.44,75.529 +133730,255.81,76.968 +133731,256.14,78.407 +133732,256.44,79.845 +133733,254.19,75.491 +133734,254.51,76.94 +133735,254.79,78.39 +133736,255.05,79.838 +133737,252.94,75.454 +133738,253.21,76.913 +133739,253.45,78.372 +133740,253.65,79.83 +133741,251.69,75.418 +133742,251.91,76.886 +133743,252.1,78.354 +133744,252.26,79.82 +133745,250.44,75.384 +133746,250.61,76.859 +133747,250.75,78.335 +133748,250.86,79.81 +133749,249.18,75.35 +133750,249.31,76.833 +133751,249.41,78.316 +133752,249.47,79.798 +133753,247.93,75.318 +133754,248.01,76.807 +133755,248.06,78.297 +133756,248.07,79.785 +133757,246.68,75.287 +133758,246.71,76.782 +133759,246.71,78.277 +133760,246.68,79.771 +133761,245.43,75.258 +133762,245.41,76.757 +133763,245.37,78.257 +133764,245.28,79.756 +133765,244.18,75.229 +133766,244.11,76.733 +133767,244.02,78.236 +133768,243.89,79.739 +133769,242.93,75.202 +133770,242.81,76.709 +133771,242.67,78.215 +133772,242.49,79.722 +133773,241.67,75.176 +133774,241.51,76.685 +133775,241.32,78.194 +133776,241.1,79.703 +133777,240.42,75.152 +133778,240.22,76.662 +133779,239.98,78.172 +133780,239.7,79.683 +133781,239.17,75.128 +133782,238.92,76.639 +133783,238.63,78.15 +133784,238.31,79.662 +133785,237.92,75.106 +133786,237.62,76.616 +133787,237.28,78.128 +133788,236.92,79.639 +133789,236.66,75.085 +133790,236.32,76.594 +133791,235.94,78.105 +133792,235.52,79.616 +133793,235.41,75.065 +133794,235.02,76.573 +133795,234.59,78.082 +133796,234.13,79.591 +133797,234.16,75.047 +133798,233.72,76.551 +133799,233.24,78.058 +133800,232.73,79.565 +133801,232.91,75.03 +133802,232.42,76.531 +133803,231.9,78.034 +133804,231.34,79.538 +133805,231.65,75.014 +133806,231.12,76.51 +133807,230.55,78.009 +133808,229.95,79.51 +133809,230.4,74.999 +133810,229.82,76.49 +133811,229.2,77.984 +133812,228.55,79.48 +133813,229.14,74.985 +133814,228.52,76.471 +133815,227.86,77.959 +133816,227.16,79.45 +133817,227.89,74.973 +133818,227.22,76.451 +133819,226.51,77.933 +133820,225.77,79.418 +133821,226.63,74.962 +133822,225.92,76.433 +133823,225.17,77.907 +133824,224.38,79.385 +133825,225.38,74.952 +133826,224.62,76.414 +133827,223.82,77.881 +133828,222.99,79.351 +133829,224.12,74.943 +133830,223.32,76.396 +133831,222.48,77.854 +133832,221.6,79.316 +133833,222.86,74.936 +133834,222.02,76.379 +133835,221.13,77.827 +133836,220.21,79.279 +133837,221.6,74.929 +133838,220.72,76.362 +133839,219.79,77.799 +133840,218.82,79.242 +133841,220.35,74.924 +133842,219.41,76.345 +133843,218.44,77.771 +133844,217.43,79.203 +133845,219.09,74.92 +133846,218.11,76.328 +133847,217.1,77.743 +133848,216.04,79.163 +133849,217.83,74.917 +133850,216.81,76.312 +133851,215.75,77.714 +133852,214.65,79.122 +133853,216.57,74.915 +133854,215.51,76.297 +133855,214.41,77.685 +133856,213.27,79.08 +133857,215.3,74.915 +133858,214.21,76.282 +133859,213.07,77.656 +133860,211.88,79.037 +133861,214.04,74.915 +133862,212.9,76.267 +133863,211.72,77.626 +133864,210.5,78.993 +133865,212.78,74.917 +133866,211.6,76.252 +133867,210.38,77.596 +133868,209.11,78.947 +133869,211.51,74.919 +133870,210.3,76.238 +133871,209.04,77.565 +133872,207.73,78.901 +133873,210.25,74.923 +133874,209,76.224 +133875,207.7,77.535 +133876,206.35,78.854 +133877,208.98,74.928 +133878,207.69,76.211 +133879,206.36,77.503 +133880,204.96,78.805 +133881,207.71,74.933 +133882,206.39,76.198 +133883,205.01,77.472 +133884,203.58,78.756 +133885,206.45,74.94 +133886,205.08,76.185 +133887,203.67,77.44 +133888,202.21,78.705 +133889,205.18,74.948 +133890,203.78,76.173 +133891,202.33,77.408 +133892,200.83,78.654 +133893,203.91,74.957 +133894,202.48,76.161 +133895,200.99,77.375 +133896,199.45,78.601 +133897,202.64,74.967 +133898,201.17,76.149 +133899,199.65,77.342 +133900,198.07,78.548 +133901,201.36,74.977 +133902,199.86,76.137 +133903,198.31,77.309 +133904,196.7,78.493 +133905,200.09,74.989 +133906,198.56,76.126 +133907,196.97,77.276 +133908,195.33,78.438 +133909,198.82,75.002 +133910,197.25,76.116 +133911,195.63,77.242 +133912,193.95,78.382 +133913,197.54,75.015 +133914,195.95,76.105 +133915,194.3,77.208 +133916,192.58,78.325 +133917,196.26,75.029 +133918,194.64,76.095 +133919,192.96,77.174 +133920,191.21,78.267 +133921,194.98,75.044 +133922,193.33,76.085 +133923,191.62,77.139 +133924,189.84,78.208 +133925,193.7,75.06 +133926,192.02,76.075 +133927,190.28,77.104 +133928,188.48,78.148 +133929,192.42,75.077 +133930,190.72,76.066 +133931,188.95,77.069 +133932,187.11,78.088 +133933,191.14,75.095 +133934,189.41,76.057 +133935,187.61,77.034 +133936,185.75,78.026 +133937,189.86,75.113 +133938,188.1,76.048 +133939,186.28,76.998 +133940,184.38,77.964 +133941,188.57,75.132 +133942,186.79,76.04 +133943,184.94,76.962 +133944,183.02,77.901 +133945,187.29,75.152 +133946,185.48,76.031 +133947,183.61,76.926 +133948,181.66,77.837 +133949,186,75.173 +133950,184.17,76.023 +133951,182.27,76.89 +133952,180.3,77.773 +133953,184.71,75.194 +133954,182.86,76.015 +133955,180.94,76.853 +133956,178.94,77.708 +133957,183.42,75.216 +133958,181.55,76.008 +133959,179.61,76.816 +133960,177.59,77.642 +133961,182.13,75.238 +133962,180.23,76 +133963,178.27,76.779 +133964,176.23,77.576 +133965,180.84,75.261 +133966,178.92,75.993 +133967,176.94,76.742 +133968,174.88,77.509 +133969,179.54,75.285 +133970,177.61,75.986 +133971,175.61,76.705 +133972,173.53,77.441 +133973,178.24,75.309 +133974,176.3,75.98 +133975,174.28,76.667 +133976,172.18,77.373 +133977,176.95,75.334 +133978,174.98,75.973 +133979,172.95,76.629 +133980,170.83,77.304 +133981,175.65,75.359 +133982,173.67,75.966 +133983,171.62,76.591 +133984,169.48,77.235 +133985,174.35,75.385 +133986,172.35,75.96 +133987,170.29,76.553 +133988,168.14,77.165 +133989,173.05,75.411 +133990,171.04,75.954 +133991,168.96,76.515 +133992,166.8,77.095 +133993,171.74,75.438 +133994,169.72,75.948 +133995,167.63,76.476 +133996,165.45,77.024 +133997,170.44,75.465 +133998,168.41,75.942 +133999,166.3,76.438 +134000,164.11,76.953 +134001,169.13,75.492 +134002,167.09,75.937 +134003,164.98,76.399 +134004,162.78,76.882 +134005,167.82,75.52 +134006,165.77,75.931 +134007,163.65,76.36 +134008,161.44,76.81 +134009,166.51,75.548 +134010,164.46,75.926 +134011,162.32,76.322 +134012,160.1,76.737 +134013,165.2,75.576 +134014,163.14,75.92 +134015,161,76.283 +134016,158.77,76.665 +134017,163.89,75.605 +134018,161.82,75.915 +134019,159.67,76.243 +134020,157.44,76.592 +134021,162.57,75.633 +134022,160.5,75.91 +134023,158.35,76.204 +134024,156.11,76.519 +134025,161.26,75.662 +134026,159.18,75.905 +134027,157.02,76.165 +134028,154.78,76.445 +134029,159.94,75.692 +134030,157.86,75.9 +134031,155.7,76.126 +134032,153.46,76.372 +134033,158.62,75.721 +134034,156.54,75.895 +134035,154.38,76.086 +134036,152.13,76.298 +134037,157.3,75.75 +134038,155.22,75.89 +134039,153.06,76.047 +134040,150.81,76.224 +134041,155.98,75.78 +134042,153.9,75.885 +134043,151.74,76.008 +134044,149.49,76.15 +134045,154.65,75.81 +134046,152.57,75.88 +134047,150.41,75.968 +134048,148.17,76.075 +134049,153.33,75.839 +134050,151.25,75.876 +134051,149.09,75.929 +134052,146.85,76.001 +134053,152,75.869 +134054,149.93,75.871 +134055,147.77,75.889 +134056,145.53,75.927 +134057,150.67,75.899 +134058,148.6,75.866 +134059,146.46,75.85 +134060,144.22,75.852 +134061,149.34,75.928 +134062,147.28,75.861 +134063,145.14,75.81 +134064,142.91,75.778 +134065,148.01,75.958 +134066,145.95,75.856 +134067,143.82,75.771 +134068,141.59,75.704 +134069,146.68,75.987 +134070,144.63,75.852 +134071,142.5,75.732 +134072,140.29,75.63 +134073,145.34,76.016 +134074,143.3,75.847 +134075,141.18,75.692 +134076,138.98,75.555 +134077,144.01,76.046 +134078,141.98,75.842 +134079,139.87,75.653 +134080,137.67,75.481 +134081,142.67,76.075 +134082,140.65,75.837 +134083,138.55,75.614 +134084,136.37,75.407 +134085,141.33,76.103 +134086,139.32,75.832 +134087,137.24,75.574 +134088,135.07,75.334 +134089,139.99,76.132 +134090,137.99,75.827 +134091,135.92,75.535 +134092,133.76,75.26 +134093,138.65,76.16 +134094,136.66,75.822 +134095,134.61,75.496 +134096,132.47,75.187 +134097,137.3,76.188 +134098,135.34,75.816 +134099,133.29,75.457 +134100,131.17,75.114 +134101,135.96,76.216 +134102,134.01,75.811 +134103,131.98,75.418 +134104,129.87,75.041 +134105,134.61,76.243 +134106,132.68,75.805 +134107,130.67,75.38 +134108,128.58,74.969 +134109,133.26,76.27 +134110,131.35,75.8 +134111,129.36,75.341 +134112,127.29,74.897 +134113,131.91,76.297 +134114,130.01,75.794 +134115,128.05,75.303 +134116,126,74.825 +134117,130.56,76.323 +134118,128.68,75.788 +134119,126.74,75.264 +134120,124.71,74.754 +134121,129.21,76.349 +134122,127.35,75.782 +134123,125.42,75.226 +134124,123.42,74.683 +134125,127.85,76.374 +134126,126.02,75.776 +134127,124.12,75.188 +134128,122.13,74.613 +134129,126.5,76.399 +134130,124.69,75.77 +134131,122.81,75.15 +134132,120.85,74.543 +134133,125.14,76.424 +134134,123.35,75.764 +134135,121.5,75.113 +134136,119.56,74.473 +134137,123.78,76.447 +134138,122.02,75.757 +134139,120.19,75.075 +134140,118.28,74.404 +134141,122.42,76.471 +134142,120.68,75.75 +134143,118.88,75.038 +134144,117,74.336 +134145,121.06,76.493 +134146,119.35,75.743 +134147,117.57,75.001 +134148,115.72,74.268 +134149,119.7,76.515 +134150,118.02,75.736 +134151,116.27,74.964 +134152,114.45,74.201 +134153,118.33,76.537 +134154,116.68,75.729 +134155,114.96,74.927 +134156,113.17,74.135 +134157,116.97,76.557 +134158,115.34,75.721 +134159,113.65,74.891 +134160,111.9,74.069 +134161,115.6,76.577 +134162,114.01,75.713 +134163,112.35,74.854 +134164,110.62,74.004 +134165,114.23,76.597 +134166,112.67,75.705 +134167,111.04,74.819 +134168,109.35,73.939 +134169,112.86,76.616 +134170,111.33,75.697 +134171,109.74,74.783 +134172,108.08,73.876 +134173,111.49,76.633 +134174,110,75.688 +134175,108.44,74.747 +134176,106.81,73.813 +134177,110.12,76.651 +134178,108.66,75.679 +134179,107.13,74.712 +134180,105.54,73.751 +134181,108.75,76.667 +134182,107.32,75.67 +134183,105.83,74.677 +134184,104.28,73.689 +134185,107.38,76.683 +134186,105.98,75.661 +134187,104.53,74.642 +134188,103.01,73.629 +134189,106,76.697 +134190,104.64,75.652 +134191,103.22,74.608 +134192,101.75,73.569 +134193,104.63,76.711 +134194,103.3,75.642 +134195,101.92,74.574 +134196,100.48,73.51 +134197,103.25,76.724 +134198,101.96,75.632 +134199,100.62,74.54 +134200,99.22,73.452 +134201,101.87,76.737 +134202,100.62,75.621 +134203,99.319,74.507 +134204,97.958,73.395 +134205,100.49,76.748 +134206,99.282,75.61 +134207,98.019,74.473 +134208,96.698,73.339 +134209,99.112,76.758 +134210,97.941,75.599 +134211,96.718,74.44 +134212,95.439,73.284 +134213,97.731,76.768 +134214,96.6,75.588 +134215,95.418,74.408 +134216,94.181,73.229 +134217,96.349,76.776 +134218,95.259,75.576 +134219,94.118,74.376 +134220,92.924,73.176 +134221,94.966,76.784 +134222,93.917,75.564 +134223,92.818,74.344 +134224,91.668,73.124 +134225,93.583,76.791 +134226,92.575,75.552 +134227,91.519,74.312 +134228,90.412,73.073 +134229,92.199,76.796 +134230,91.233,75.539 +134231,90.22,74.281 +134232,89.158,73.022 +134233,90.813,76.801 +134234,89.891,75.527 +134235,88.922,74.25 +134236,87.904,72.973 +134237,89.427,76.805 +134238,88.548,75.513 +134239,87.623,74.219 +134240,86.651,72.925 +134241,88.041,76.807 +134242,87.205,75.5 +134243,86.325,74.189 +134244,85.399,72.878 +134245,86.653,76.809 +134246,85.862,75.486 +134247,85.027,74.159 +134248,84.147,72.832 +134249,85.265,76.809 +134250,84.519,75.471 +134251,83.73,74.13 +134252,82.896,72.787 +134253,83.877,76.809 +134254,83.175,75.457 +134255,82.432,74.101 +134256,81.646,72.743 +134257,82.487,76.807 +134258,81.832,75.442 +134259,81.135,74.072 +134260,80.396,72.701 +134261,81.097,76.804 +134262,80.488,75.426 +134263,79.838,74.044 +134264,79.147,72.659 +134265,79.707,76.8 +134266,79.144,75.41 +134267,78.542,74.016 +134268,77.899,72.619 +134269,78.316,76.796 +134270,77.799,75.394 +134271,77.245,73.988 +134272,76.651,72.579 +134273,76.924,76.79 +134274,76.455,75.378 +134275,75.949,73.961 +134276,75.403,72.541 +134277,75.532,76.782 +134278,75.111,75.361 +134279,74.652,73.934 +134280,74.156,72.504 +134281,74.14,76.774 +134282,73.766,75.344 +134283,73.356,73.908 +134284,72.909,72.469 +134285,72.747,76.765 +134286,72.422,75.326 +134287,72.06,73.882 +134288,71.662,72.434 +134289,71.354,76.754 +134290,71.077,75.308 +134291,70.764,73.856 +134292,70.416,72.401 +134293,69.961,76.743 +134294,69.732,75.289 +134295,69.469,73.831 +134296,69.17,72.369 +134297,68.567,76.73 +134298,68.387,75.271 +134299,68.173,73.806 +134300,67.924,72.338 +134301,67.173,76.716 +134302,67.042,75.251 +134303,66.877,73.782 +134304,66.678,72.308 +134305,65.779,76.701 +134306,65.697,75.232 +134307,65.582,73.758 +134308,65.433,72.28 +134309,64.385,76.684 +134310,64.352,75.212 +134311,64.286,73.734 +134312,64.188,72.252 +134313,62.99,76.667 +134314,63.007,75.191 +134315,62.991,73.711 +134316,62.942,72.226 +134317,61.596,76.648 +134318,61.662,75.171 +134319,61.696,73.688 +134320,61.697,72.201 +134321,60.201,76.628 +134322,60.317,75.15 +134323,60.4,73.666 +134324,60.451,72.178 +134325,58.807,76.607 +134326,58.972,75.128 +134327,59.105,73.644 +134328,59.206,72.155 +134329,57.412,76.585 +134330,57.627,75.106 +134331,57.81,73.622 +134332,57.96,72.134 +134333,56.018,76.562 +134334,56.282,75.084 +134335,56.514,73.601 +134336,56.715,72.114 +134337,54.623,76.537 +134338,54.937,75.061 +134339,55.219,73.58 +134340,55.469,72.096 +134341,53.229,76.512 +134342,53.592,75.038 +134343,53.923,73.56 +134344,54.223,72.078 +134345,51.835,76.485 +134346,52.248,75.014 +134347,52.628,73.54 +134348,52.976,72.062 +134349,50.441,76.457 +134350,50.903,74.99 +134351,51.332,73.52 +134352,51.73,72.047 +134353,49.047,76.427 +134354,49.558,74.966 +134355,50.037,73.501 +134356,50.483,72.033 +134357,47.654,76.397 +134358,48.214,74.942 +134359,48.741,73.482 +134360,49.236,72.02 +134361,46.261,76.366 +134362,46.87,74.916 +134363,47.445,73.464 +134364,47.988,72.009 +134365,44.868,76.333 +134366,45.526,74.891 +134367,46.149,73.446 +134368,46.74,71.999 +134369,43.476,76.299 +134370,44.182,74.865 +134371,44.853,73.428 +134372,45.491,71.989 +134373,42.084,76.264 +134374,42.838,74.839 +134375,43.556,73.411 +134376,44.242,71.982 +134377,40.692,76.228 +134378,41.494,74.812 +134379,42.26,73.394 +134380,42.992,71.975 +134381,39.301,76.191 +134382,40.151,74.785 +134383,40.963,73.378 +134384,41.742,71.969 +134385,37.911,76.153 +134386,38.808,74.758 +134387,39.667,73.362 +134388,40.491,71.965 +134389,36.521,76.113 +134390,37.465,74.73 +134391,38.37,73.346 +134392,39.24,71.962 +134393,35.132,76.073 +134394,36.122,74.702 +134395,37.072,73.331 +134396,37.987,71.959 +134397,33.743,76.031 +134398,34.779,74.674 +134399,35.775,73.316 +134400,36.734,71.958 +134401,32.356,75.989 +134402,33.437,74.645 +134403,34.477,73.301 +134404,35.481,71.958 +134405,30.968,75.945 +134406,32.095,74.616 +134407,33.18,73.287 +134408,34.226,71.96 +134409,29.582,75.9 +134410,30.753,74.586 +134411,31.881,73.273 +134412,32.971,71.962 +134413,28.196,75.854 +134414,29.412,74.556 +134415,30.583,73.26 +134416,31.715,71.965 +134417,26.812,75.807 +134418,28.071,74.526 +134419,29.284,73.247 +134420,30.458,71.97 +134421,25.428,75.759 +134422,26.73,74.496 +134423,27.985,73.234 +134424,29.2,71.975 +134425,24.045,75.71 +134426,25.389,74.465 +134427,26.686,73.222 +134428,27.941,71.981 +134429,22.663,75.661 +134430,24.049,74.434 +134431,25.387,73.21 +134432,26.681,71.989 +134433,21.282,75.61 +134434,22.709,74.402 +134435,24.087,73.198 +134436,25.42,71.997 +134437,19.902,75.558 +134438,21.37,74.37 +134439,22.786,73.186 +134440,24.158,72.007 +134441,18.522,75.505 +134442,20.031,74.338 +134443,21.486,73.175 +134444,22.895,72.017 +134445,17.144,75.451 +134446,18.692,74.306 +134447,20.185,73.164 +134448,21.631,72.028 +134449,15.768,75.397 +134450,17.354,74.273 +134451,18.884,73.154 +134452,20.366,72.041 +134453,14.392,75.341 +134454,16.016,74.24 +134455,17.582,73.144 +134456,19.099,72.054 +134457,13.017,75.285 +134458,14.678,74.206 +134459,16.28,73.134 +134460,17.832,72.068 +134461,11.644,75.227 +134462,13.341,74.173 +134463,14.978,73.124 +134464,16.563,72.083 +134465,10.272,75.169 +134466,12.004,74.139 +134467,13.675,73.115 +134468,15.293,72.098 +134469,8.9007,75.11 +134470,10.668,74.105 +134471,12.372,73.106 +134472,14.022,72.115 +134473,7.5311,75.05 +134474,9.3321,74.07 +134475,11.069,73.097 +134476,12.749,72.132 +134477,6.1627,74.99 +134478,7.9967,74.035 +134479,9.7645,73.089 +134480,11.475,72.15 +134481,4.7957,74.929 +134482,6.6617,74 +134483,8.4601,73.081 +134484,10.2,72.169 +134485,3.4301,74.867 +134486,5.3272,73.965 +134487,7.1553,73.073 +134488,8.9239,72.189 +134489,2.0658,74.804 +134490,3.9932,73.93 +134491,5.85,73.065 +134492,7.6461,72.209 +134493,0.70298,74.74 +134494,2.6597,73.894 +134495,4.5443,73.057 +134496,6.3669,72.23 +134497,359.34,74.676 +134498,1.3267,73.858 +134499,3.2382,73.05 +134500,5.0864,72.252 +134501,357.98,74.611 +134502,359.99,73.822 +134503,1.9315,73.043 +134504,3.8044,72.274 +134505,356.62,74.546 +134506,358.66,73.785 +134507,0.62444,73.036 +134508,2.5209,72.297 +134509,355.27,74.48 +134510,357.33,73.749 +134511,359.32,73.029 +134512,1.2361,72.32 +134513,353.91,74.413 +134514,356,73.712 +134515,358.01,73.023 +134516,359.95,72.345 +134517,352.56,74.346 +134518,354.67,73.675 +134519,356.7,73.017 +134520,358.66,72.369 +134521,351.2,74.278 +134522,353.34,73.638 +134523,355.39,73.01 +134524,357.37,72.394 +134525,349.85,74.21 +134526,352.01,73.601 +134527,354.08,73.005 +134528,356.08,72.42 +134529,348.51,74.141 +134530,350.68,73.563 +134531,352.77,72.999 +134532,354.79,72.446 +134533,347.16,74.071 +134534,349.35,73.526 +134535,351.46,72.993 +134536,353.5,72.472 +134537,345.81,74.002 +134538,348.02,73.488 +134539,350.15,72.988 +134540,352.2,72.499 +134541,344.47,73.932 +134542,346.7,73.45 +134543,348.84,72.982 +134544,350.9,72.527 +134545,343.13,73.861 +134546,345.37,73.412 +134547,347.53,72.977 +134548,349.6,72.554 +134549,341.78,73.79 +134550,344.05,73.374 +134551,346.21,72.972 +134552,348.3,72.582 +134553,340.45,73.719 +134554,342.72,73.336 +134555,344.9,72.967 +134556,347,72.61 +134557,339.11,73.647 +134558,341.39,73.298 +134559,343.59,72.962 +134560,345.7,72.639 +134561,337.77,73.575 +134562,340.07,73.259 +134563,342.27,72.957 +134564,344.39,72.668 +134565,336.44,73.503 +134566,338.75,73.221 +134567,340.96,72.952 +134568,343.09,72.697 +134569,335.11,73.431 +134570,337.42,73.182 +134571,339.64,72.948 +134572,341.78,72.726 +134573,333.78,73.358 +134574,336.1,73.144 +134575,338.33,72.943 +134576,340.47,72.755 +134577,332.45,73.285 +134578,334.78,73.105 +134579,337.01,72.939 +134580,339.16,72.785 +134581,331.12,73.213 +134582,333.46,73.066 +134583,335.69,72.934 +134584,337.84,72.815 +134585,329.8,73.14 +134586,332.14,73.027 +134587,334.38,72.93 +134588,336.53,72.844 +134589,328.47,73.066 +134590,330.82,72.989 +134591,333.06,72.925 +134592,335.21,72.874 +134593,327.15,72.993 +134594,329.5,72.95 +134595,331.74,72.921 +134596,333.9,72.904 +134597,325.83,72.92 +134598,328.18,72.911 +134599,330.42,72.916 +134600,332.58,72.934 +134601,324.52,72.847 +134602,326.86,72.872 +134603,329.1,72.912 +134604,331.26,72.963 +134605,323.2,72.773 +134606,325.54,72.833 +134607,327.78,72.907 +134608,329.93,72.993 +134609,321.89,72.7 +134610,324.22,72.795 +134611,326.46,72.903 +134612,328.61,73.023 +134613,320.57,72.627 +134614,322.91,72.756 +134615,325.14,72.898 +134616,327.28,73.052 +134617,319.26,72.554 +134618,321.59,72.717 +134619,323.82,72.894 +134620,325.95,73.082 +134621,317.95,72.481 +134622,320.28,72.679 +134623,322.5,72.889 +134624,324.62,73.111 +134625,316.65,72.408 +134626,318.96,72.64 +134627,321.17,72.885 +134628,323.29,73.14 +134629,315.34,72.336 +134630,317.65,72.601 +134631,319.85,72.88 +134632,321.96,73.169 +134633,314.04,72.263 +134634,316.33,72.563 +134635,318.52,72.875 +134636,320.63,73.197 +134637,312.74,72.191 +134638,315.02,72.525 +134639,317.2,72.87 +134640,319.29,73.226 +134641,311.44,72.119 +134642,313.71,72.486 +134643,315.88,72.865 +134644,317.95,73.254 +134645,310.14,72.048 +134646,312.4,72.448 +134647,314.55,72.86 +134648,316.61,73.281 +134649,308.84,71.976 +134650,311.08,72.41 +134651,313.22,72.855 +134652,315.27,73.309 +134653,307.55,71.905 +134654,309.77,72.372 +134655,311.9,72.85 +134656,313.93,73.336 +134657,306.25,71.835 +134658,308.46,72.334 +134659,310.57,72.844 +134660,312.59,73.362 +134661,304.96,71.765 +134662,307.15,72.297 +134663,309.24,72.839 +134664,311.24,73.388 +134665,303.67,71.695 +134666,305.84,72.259 +134667,307.91,72.833 +134668,309.9,73.414 +134669,302.39,71.626 +134670,304.54,72.222 +134671,306.59,72.827 +134672,308.55,73.439 +134673,301.1,71.557 +134674,303.23,72.184 +134675,305.26,72.821 +134676,307.2,73.464 +134677,299.82,71.488 +134678,301.92,72.147 +134679,303.93,72.815 +134680,305.85,73.488 +134681,298.53,71.421 +134682,300.61,72.11 +134683,302.6,72.808 +134684,304.49,73.512 +134685,297.25,71.353 +134686,299.31,72.074 +134687,301.27,72.802 +134688,303.14,73.535 +134689,295.97,71.287 +134690,298,72.037 +134691,299.93,72.795 +134692,301.78,73.557 +134693,294.69,71.221 +134694,296.7,72.001 +134695,298.6,72.788 +134696,300.43,73.579 +134697,293.42,71.155 +134698,295.39,71.965 +134699,297.27,72.781 +134700,299.07,73.601 +134701,292.14,71.091 +134702,294.09,71.929 +134703,295.94,72.773 +134704,297.71,73.621 +134705,290.87,71.026 +134706,292.78,71.893 +134707,294.61,72.766 +134708,296.35,73.641 +134709,289.6,70.963 +134710,291.48,71.858 +134711,293.27,72.758 +134712,294.98,73.66 +134713,288.33,70.9 +134714,290.18,71.823 +134715,291.94,72.75 +134716,293.62,73.679 +134717,287.06,70.838 +134718,288.87,71.788 +134719,290.6,72.741 +134720,292.26,73.696 +134721,285.79,70.777 +134722,287.57,71.753 +134723,289.27,72.733 +134724,290.89,73.713 +134725,284.52,70.717 +134726,286.27,71.719 +134727,287.93,72.724 +134728,289.52,73.729 +134729,283.26,70.657 +134730,284.97,71.685 +134731,286.6,72.714 +134732,288.15,73.745 +134733,281.99,70.599 +134734,283.67,71.651 +134735,285.26,72.705 +134736,286.78,73.759 +134737,280.73,70.541 +134738,282.37,71.617 +134739,283.93,72.695 +134740,285.41,73.773 +134741,279.47,70.484 +134742,281.07,71.584 +134743,282.59,72.685 +134744,284.04,73.785 +134745,278.21,70.428 +134746,279.77,71.551 +134747,281.25,72.675 +134748,282.66,73.797 +134749,276.95,70.373 +134750,278.47,71.518 +134751,279.91,72.664 +134752,281.29,73.808 +134753,275.69,70.318 +134754,277.17,71.486 +134755,278.58,72.653 +134756,279.91,73.818 +134757,274.44,70.265 +134758,275.87,71.454 +134759,277.24,72.642 +134760,278.54,73.827 +134761,273.18,70.213 +134762,274.58,71.422 +134763,275.9,72.631 +134764,277.16,73.836 +134765,271.93,70.161 +134766,273.28,71.391 +134767,274.56,72.619 +134768,275.78,73.843 +134769,270.68,70.111 +134770,271.98,71.36 +134771,273.22,72.606 +134772,274.4,73.849 +134773,269.42,70.062 +134774,270.69,71.329 +134775,271.88,72.594 +134776,273.02,73.854 +134777,268.17,70.013 +134778,269.39,71.299 +134779,270.54,72.581 +134780,271.64,73.858 +134781,266.92,69.966 +134782,268.09,71.269 +134783,269.2,72.568 +134784,270.25,73.862 +134785,265.67,69.92 +134786,266.8,71.239 +134787,267.86,72.554 +134788,268.87,73.864 +134789,264.42,69.875 +134790,265.5,71.21 +134791,266.52,72.54 +134792,267.49,73.865 +134793,263.18,69.831 +134794,264.21,71.181 +134795,265.18,72.526 +134796,266.1,73.865 +134797,261.93,69.788 +134798,262.91,71.152 +134799,263.84,72.511 +134800,264.71,73.864 +134801,260.68,69.746 +134802,261.62,71.124 +134803,262.5,72.496 +134804,263.33,73.862 +134805,259.44,69.706 +134806,260.32,71.096 +134807,261.16,72.481 +134808,261.94,73.859 +134809,258.19,69.666 +134810,259.03,71.069 +134811,259.81,72.465 +134812,260.55,73.854 +134813,256.95,69.628 +134814,257.74,71.041 +134815,258.47,72.449 +134816,259.16,73.849 +134817,255.7,69.591 +134818,256.44,71.015 +134819,257.13,72.432 +134820,257.77,73.842 +134821,254.46,69.555 +134822,255.15,70.988 +134823,255.79,72.416 +134824,256.38,73.835 +134825,253.22,69.52 +134826,253.86,70.962 +134827,254.45,72.398 +134828,254.99,73.826 +134829,251.98,69.486 +134830,252.56,70.937 +134831,253.1,72.381 +134832,253.6,73.816 +134833,250.73,69.454 +134834,251.27,70.912 +134835,251.76,72.363 +134836,252.21,73.805 +134837,249.49,69.422 +134838,249.98,70.887 +134839,250.42,72.344 +134840,250.82,73.793 +134841,248.25,69.392 +134842,248.68,70.862 +134843,249.07,72.325 +134844,249.43,73.779 +134845,247.01,69.363 +134846,247.39,70.838 +134847,247.73,72.306 +134848,248.03,73.765 +134849,245.77,69.336 +134850,246.1,70.815 +134851,246.39,72.286 +134852,246.64,73.749 +134853,244.53,69.309 +134854,244.81,70.792 +134855,245.04,72.266 +134856,245.25,73.732 +134857,243.29,69.284 +134858,243.51,70.769 +134859,243.7,72.246 +134860,243.85,73.714 +134861,242.05,69.26 +134862,242.22,70.746 +134863,242.36,72.225 +134864,242.46,73.695 +134865,240.81,69.237 +134866,240.93,70.724 +134867,241.01,72.204 +134868,241.07,73.674 +134869,239.57,69.215 +134870,239.64,70.703 +134871,239.67,72.182 +134872,239.67,73.653 +134873,238.33,69.195 +134874,238.35,70.681 +134875,238.33,72.16 +134876,238.28,73.63 +134877,237.09,69.176 +134878,237.05,70.661 +134879,236.98,72.138 +134880,236.88,73.606 +134881,235.85,69.158 +134882,235.76,70.64 +134883,235.64,72.115 +134884,235.49,73.581 +134885,234.61,69.141 +134886,234.47,70.62 +134887,234.3,72.092 +134888,234.09,73.554 +134889,233.37,69.125 +134890,233.18,70.601 +134891,232.95,72.068 +134892,232.7,73.527 +134893,232.13,69.111 +134894,231.89,70.581 +134895,231.61,72.044 +134896,231.3,73.498 +134897,230.89,69.098 +134898,230.59,70.563 +134899,230.27,72.02 +134900,229.91,73.469 +134901,229.65,69.086 +134902,229.3,70.544 +134903,228.92,71.995 +134904,228.52,73.438 +134905,228.41,69.075 +134906,228.01,70.526 +134907,227.58,71.97 +134908,227.12,73.405 +134909,227.17,69.066 +134910,226.72,70.508 +134911,226.24,71.944 +134912,225.73,73.372 +134913,225.92,69.057 +134914,225.42,70.491 +134915,224.89,71.918 +134916,224.33,73.338 +134917,224.68,69.05 +134918,224.13,70.474 +134919,223.55,71.892 +134920,222.94,73.302 +134921,223.44,69.044 +134922,222.84,70.458 +134923,222.21,71.865 +134924,221.55,73.265 +134925,222.19,69.039 +134926,221.55,70.442 +134927,220.87,71.838 +134928,220.16,73.228 +134929,220.95,69.036 +134930,220.25,70.426 +134931,219.52,71.811 +134932,218.76,73.189 +134933,219.71,69.033 +134934,218.96,70.411 +134935,218.18,71.783 +134936,217.37,73.148 +134937,218.46,69.031 +134938,217.67,70.396 +134939,216.84,71.755 +134940,215.98,73.107 +134941,217.22,69.031 +134942,216.37,70.381 +134943,215.5,71.726 +134944,214.59,73.065 +134945,215.97,69.032 +134946,215.08,70.367 +134947,214.16,71.697 +134948,213.2,73.022 +134949,214.72,69.034 +134950,213.79,70.353 +134951,212.82,71.668 +134952,211.81,72.977 +134953,213.47,69.037 +134954,212.49,70.339 +134955,211.47,71.638 +134956,210.42,72.932 +134957,212.23,69.041 +134958,211.2,70.326 +134959,210.13,71.608 +134960,209.04,72.885 +134961,210.98,69.046 +134962,209.9,70.313 +134963,208.79,71.578 +134964,207.65,72.838 +134965,209.73,69.052 +134966,208.61,70.301 +134967,207.45,71.547 +134968,206.26,72.789 +134969,208.47,69.059 +134970,207.31,70.288 +134971,206.11,71.516 +134972,204.88,72.74 +134973,207.22,69.067 +134974,206.02,70.277 +134975,204.77,71.484 +134976,203.49,72.689 +134977,205.97,69.076 +134978,204.72,70.265 +134979,203.43,71.453 +134980,202.11,72.638 +134981,204.71,69.086 +134982,203.42,70.254 +134983,202.1,71.421 +134984,200.72,72.585 +134985,203.46,69.097 +134986,202.13,70.243 +134987,200.76,71.388 +134988,199.34,72.532 +134989,202.2,69.109 +134990,200.83,70.232 +134991,199.42,71.356 +134992,197.96,72.477 +134993,200.95,69.121 +134994,199.53,70.222 +134995,198.08,71.323 +134996,196.58,72.422 +134997,199.69,69.135 +134998,198.24,70.212 +134999,196.74,71.289 +135000,195.2,72.366 +135001,198.43,69.15 +135002,196.94,70.202 +135003,195.41,71.256 +135004,193.82,72.309 +135005,197.17,69.165 +135006,195.64,70.193 +135007,194.07,71.222 +135008,192.44,72.251 +135009,195.9,69.181 +135010,194.34,70.184 +135011,192.73,71.188 +135012,191.07,72.192 +135013,194.64,69.198 +135014,193.04,70.175 +135015,191.4,71.153 +135016,189.69,72.132 +135017,193.38,69.216 +135018,191.74,70.166 +135019,190.06,71.119 +135020,188.32,72.072 +135021,192.11,69.235 +135022,190.44,70.158 +135023,188.73,71.084 +135024,186.95,72.011 +135025,190.84,69.254 +135026,189.14,70.15 +135027,187.39,71.048 +135028,185.58,71.949 +135029,189.58,69.274 +135030,187.84,70.142 +135031,186.06,71.013 +135032,184.21,71.886 +135033,188.31,69.295 +135034,186.54,70.134 +135035,184.72,70.977 +135036,182.84,71.823 +135037,187.03,69.317 +135038,185.24,70.127 +135039,183.39,70.941 +135040,181.47,71.759 +135041,185.76,69.339 +135042,183.94,70.12 +135043,182.06,70.905 +135044,180.11,71.694 +135045,184.49,69.361 +135046,182.64,70.113 +135047,180.72,70.869 +135048,178.74,71.628 +135049,183.21,69.385 +135050,181.33,70.106 +135051,179.39,70.832 +135052,177.38,71.562 +135053,181.94,69.409 +135054,180.03,70.1 +135055,178.06,70.795 +135056,176.02,71.496 +135057,180.66,69.433 +135058,178.73,70.093 +135059,176.73,70.758 +135060,174.66,71.428 +135061,179.38,69.458 +135062,177.42,70.087 +135063,175.4,70.721 +135064,173.3,71.36 +135065,178.1,69.484 +135066,176.12,70.081 +135067,174.07,70.684 +135068,171.94,71.292 +135069,176.81,69.51 +135070,174.81,70.075 +135071,172.74,70.646 +135072,170.59,71.223 +135073,175.53,69.536 +135074,173.51,70.069 +135075,171.41,70.609 +135076,169.23,71.154 +135077,174.24,69.563 +135078,172.2,70.064 +135079,170.08,70.571 +135080,167.88,71.084 +135081,172.96,69.59 +135082,170.89,70.058 +135083,168.76,70.533 +135084,166.53,71.014 +135085,171.67,69.618 +135086,169.59,70.053 +135087,167.43,70.495 +135088,165.18,70.943 +135089,170.38,69.646 +135090,168.28,70.048 +135091,166.1,70.456 +135092,163.83,70.872 +135093,169.08,69.674 +135094,166.97,70.042 +135095,164.78,70.418 +135096,162.49,70.8 +135097,167.79,69.702 +135098,165.66,70.037 +135099,163.45,70.379 +135100,161.15,70.729 +135101,166.49,69.731 +135102,164.35,70.032 +135103,162.13,70.341 +135104,159.8,70.657 +135105,165.2,69.76 +135106,163.04,70.028 +135107,160.8,70.302 +135108,158.46,70.584 +135109,163.9,69.79 +135110,161.73,70.023 +135111,159.48,70.263 +135112,157.13,70.512 +135113,162.6,69.819 +135114,160.42,70.018 +135115,158.15,70.225 +135116,155.79,70.439 +135117,161.3,69.849 +135118,159.11,70.013 +135119,156.83,70.186 +135120,154.45,70.366 +135121,159.99,69.878 +135122,157.8,70.009 +135123,155.51,70.147 +135124,153.12,70.292 +135125,158.69,69.908 +135126,156.48,70.004 +135127,154.19,70.108 +135128,151.79,70.219 +135129,157.38,69.938 +135130,155.17,70 +135131,152.87,70.069 +135132,150.46,70.146 +135133,156.07,69.968 +135134,153.86,69.995 +135135,151.55,70.029 +135136,149.13,70.072 +135137,154.76,69.998 +135138,152.54,69.99 +135139,150.23,69.99 +135140,147.81,69.998 +135141,153.45,70.028 +135142,151.23,69.986 +135143,148.91,69.951 +135144,146.48,69.925 +135145,152.13,70.058 +135146,149.91,69.981 +135147,147.59,69.912 +135148,145.16,69.851 +135149,150.82,70.087 +135150,148.59,69.977 +135151,146.27,69.873 +135152,143.84,69.777 +135153,149.5,70.117 +135154,147.28,69.972 +135155,144.96,69.834 +135156,142.52,69.704 +135157,148.18,70.147 +135158,145.96,69.967 +135159,143.64,69.795 +135160,141.21,69.63 +135161,146.86,70.176 +135162,144.64,69.963 +135163,142.32,69.756 +135164,139.89,69.557 +135165,145.54,70.205 +135166,143.32,69.958 +135167,141.01,69.717 +135168,138.58,69.483 +135169,144.21,70.234 +135170,142.01,69.953 +135171,139.69,69.678 +135172,137.27,69.41 +135173,142.89,70.263 +135174,140.69,69.948 +135175,138.38,69.639 +135176,135.96,69.337 +135177,141.56,70.292 +135178,139.37,69.943 +135179,137.07,69.6 +135180,134.65,69.264 +135181,140.23,70.32 +135182,138.05,69.938 +135183,135.75,69.562 +135184,133.35,69.192 +135185,138.9,70.348 +135186,136.72,69.933 +135187,134.44,69.523 +135188,132.04,69.12 +135189,137.57,70.375 +135190,135.4,69.928 +135191,133.13,69.485 +135192,130.74,69.048 +135193,136.24,70.403 +135194,134.08,69.922 +135195,131.82,69.446 +135196,129.44,68.976 +135197,134.9,70.429 +135198,132.76,69.917 +135199,130.51,69.408 +135200,128.14,68.905 +135201,133.56,70.456 +135202,131.43,69.911 +135203,129.2,69.37 +135204,126.85,68.834 +135205,132.22,70.482 +135206,130.11,69.905 +135207,127.89,69.332 +135208,125.55,68.763 +135209,130.88,70.507 +135210,128.79,69.899 +135211,126.58,69.294 +135212,124.26,68.693 +135213,129.54,70.532 +135214,127.46,69.893 +135215,125.27,69.256 +135216,122.97,68.624 +135217,128.2,70.557 +135218,126.13,69.886 +135219,123.97,69.218 +135220,121.68,68.555 +135221,126.85,70.58 +135222,124.81,69.88 +135223,122.66,69.181 +135224,120.39,68.486 +135225,125.51,70.604 +135226,123.48,69.873 +135227,121.35,69.144 +135228,119.11,68.418 +135229,124.16,70.627 +135230,122.15,69.866 +135231,120.05,69.107 +135232,117.83,68.35 +135233,122.81,70.649 +135234,120.83,69.859 +135235,118.74,69.07 +135236,116.54,68.283 +135237,121.46,70.67 +135238,119.5,69.852 +135239,117.44,69.033 +135240,115.26,68.217 +135241,120.1,70.691 +135242,118.17,69.844 +135243,116.14,68.997 +135244,113.99,68.152 +135245,118.75,70.711 +135246,116.84,69.836 +135247,114.83,68.961 +135248,112.71,68.087 +135249,117.39,70.73 +135250,115.51,69.828 +135251,113.53,68.925 +135252,111.43,68.022 +135253,116.04,70.749 +135254,114.18,69.82 +135255,112.23,68.889 +135256,110.16,67.959 +135257,114.68,70.767 +135258,112.85,69.811 +135259,110.92,68.853 +135260,108.89,67.896 +135261,113.32,70.784 +135262,111.52,69.802 +135263,109.62,68.818 +135264,107.62,67.834 +135265,111.96,70.801 +135266,110.19,69.793 +135267,108.32,68.783 +135268,106.35,67.772 +135269,110.59,70.816 +135270,108.86,69.784 +135271,107.02,68.748 +135272,105.08,67.712 +135273,109.23,70.831 +135274,107.52,69.774 +135275,105.72,68.714 +135276,103.82,67.652 +135277,107.87,70.845 +135278,106.19,69.764 +135279,104.42,68.68 +135280,102.55,67.593 +135281,106.5,70.858 +135282,104.86,69.754 +135283,103.12,68.646 +135284,101.29,67.535 +135285,105.13,70.87 +135286,103.52,69.743 +135287,101.83,68.612 +135288,100.03,67.478 +135289,103.76,70.881 +135290,102.19,69.733 +135291,100.53,68.579 +135292,98.769,67.422 +135293,102.39,70.891 +135294,100.86,69.721 +135295,99.231,68.546 +135296,97.511,67.367 +135297,101.02,70.9 +135298,99.52,69.71 +135299,97.934,68.513 +135300,96.254,67.312 +135301,99.647,70.909 +135302,98.185,69.698 +135303,96.638,68.481 +135304,94.998,67.259 +135305,98.273,70.916 +135306,96.849,69.686 +135307,95.342,68.449 +135308,93.743,67.206 +135309,96.898,70.922 +135310,95.513,69.673 +135311,94.046,68.417 +135312,92.49,67.155 +135313,95.522,70.928 +135314,94.176,69.661 +135315,92.751,68.386 +135316,91.238,67.105 +135317,94.145,70.932 +135318,92.839,69.647 +135319,91.456,68.355 +135320,89.987,67.055 +135321,92.767,70.935 +135322,91.502,69.634 +135323,90.162,68.324 +135324,88.737,67.007 +135325,91.388,70.938 +135326,90.165,69.62 +135327,88.867,68.293 +135328,87.488,66.96 +135329,90.007,70.939 +135330,88.827,69.606 +135331,87.574,68.263 +135332,86.24,66.913 +135333,88.626,70.939 +135334,87.489,69.591 +135335,86.28,68.234 +135336,84.994,66.868 +135337,87.244,70.938 +135338,86.15,69.576 +135339,84.987,68.204 +135340,83.748,66.824 +135341,85.861,70.936 +135342,84.812,69.561 +135343,83.694,68.175 +135344,82.503,66.781 +135345,84.477,70.933 +135346,83.473,69.545 +135347,82.402,68.147 +135348,81.259,66.74 +135349,83.093,70.928 +135350,82.133,69.529 +135351,81.11,68.119 +135352,80.016,66.699 +135353,81.707,70.923 +135354,80.794,69.512 +135355,79.818,68.091 +135356,78.774,66.659 +135357,80.321,70.916 +135358,79.454,69.496 +135359,78.526,68.063 +135360,77.533,66.621 +135361,78.934,70.909 +135362,78.114,69.478 +135363,77.235,68.036 +135364,76.292,66.584 +135365,77.547,70.9 +135366,76.774,69.461 +135367,75.944,68.009 +135368,75.052,66.548 +135369,76.158,70.89 +135370,75.433,69.443 +135371,74.653,67.983 +135372,73.813,66.513 +135373,74.769,70.879 +135374,74.093,69.424 +135375,73.362,67.957 +135376,72.574,66.48 +135377,73.38,70.866 +135378,72.752,69.405 +135379,72.072,67.932 +135380,71.336,66.447 +135381,71.99,70.853 +135382,71.411,69.386 +135383,70.782,67.907 +135384,70.098,66.416 +135385,70.599,70.838 +135386,70.07,69.366 +135387,69.492,67.882 +135388,68.861,66.386 +135389,69.208,70.822 +135390,68.728,69.346 +135391,68.202,67.857 +135392,67.624,66.357 +135393,67.816,70.805 +135394,67.387,69.326 +135395,66.912,67.833 +135396,66.388,66.33 +135397,66.424,70.787 +135398,66.045,69.305 +135399,65.622,67.81 +135400,65.152,66.303 +135401,65.032,70.767 +135402,64.704,69.284 +135403,64.333,67.787 +135404,63.917,66.278 +135405,63.639,70.747 +135406,63.362,69.262 +135407,63.044,67.764 +135408,62.681,66.254 +135409,62.246,70.725 +135410,62.02,69.24 +135411,61.754,67.741 +135412,61.446,66.231 +135413,60.852,70.702 +135414,60.678,69.217 +135415,60.465,67.72 +135416,60.211,66.21 +135417,59.459,70.677 +135418,59.336,69.194 +135419,59.176,67.698 +135420,58.977,66.19 +135421,58.065,70.652 +135422,57.994,69.171 +135423,57.887,67.677 +135424,57.742,66.171 +135425,56.671,70.625 +135426,56.652,69.147 +135427,56.598,67.656 +135428,56.507,66.153 +135429,55.277,70.597 +135430,55.31,69.123 +135431,55.309,67.636 +135432,55.273,66.136 +135433,53.883,70.568 +135434,53.968,69.098 +135435,54.02,67.616 +135436,54.038,66.121 +135437,52.488,70.538 +135438,52.626,69.073 +135439,52.732,67.596 +135440,52.804,66.107 +135441,51.094,70.506 +135442,51.284,69.048 +135443,51.443,67.577 +135444,51.569,66.094 +135445,49.7,70.474 +135446,49.942,69.022 +135447,50.154,67.558 +135448,50.334,66.082 +135449,48.305,70.44 +135450,48.6,68.996 +135451,48.865,67.54 +135452,49.099,66.072 +135453,46.911,70.405 +135454,47.258,68.969 +135455,47.576,67.522 +135456,47.863,66.063 +135457,45.517,70.369 +135458,45.916,68.942 +135459,46.287,67.504 +135460,46.628,66.055 +135461,44.123,70.331 +135462,44.575,68.915 +135463,44.998,67.487 +135464,45.392,66.048 +135465,42.729,70.293 +135466,43.233,68.887 +135467,43.708,67.47 +135468,44.155,66.042 +135469,41.336,70.253 +135470,41.892,68.859 +135471,42.419,67.453 +135472,42.919,66.037 +135473,39.943,70.212 +135474,40.55,68.83 +135475,41.129,67.437 +135476,41.681,66.034 +135477,38.55,70.17 +135478,39.209,68.801 +135479,39.84,67.421 +135480,40.444,66.032 +135481,37.158,70.127 +135482,37.868,68.772 +135483,38.55,67.406 +135484,39.205,66.03 +135485,35.766,70.083 +135486,36.527,68.742 +135487,37.26,67.391 +135488,37.967,66.03 +135489,34.374,70.038 +135490,35.186,68.712 +135491,35.97,67.376 +135492,36.727,66.031 +135493,32.983,69.992 +135494,33.846,68.682 +135495,34.68,67.362 +135496,35.487,66.033 +135497,31.592,69.944 +135498,32.505,68.651 +135499,33.39,67.348 +135500,34.246,66.037 +135501,30.202,69.896 +135502,31.165,68.62 +135503,32.099,67.334 +135504,33.005,66.041 +135505,28.812,69.846 +135506,29.825,68.588 +135507,30.808,67.321 +135508,31.763,66.046 +135509,27.424,69.796 +135510,28.486,68.556 +135511,29.517,67.308 +135512,30.52,66.053 +135513,26.035,69.744 +135514,27.146,68.524 +135515,28.226,67.296 +135516,29.276,66.06 +135517,24.648,69.691 +135518,25.807,68.491 +135519,26.934,67.283 +135520,28.031,66.068 +135521,23.261,69.638 +135522,24.468,68.459 +135523,25.642,67.271 +135524,26.786,66.078 +135525,21.875,69.583 +135526,23.13,68.425 +135527,24.35,67.26 +135528,25.539,66.088 +135529,20.49,69.528 +135530,21.792,68.392 +135531,23.058,67.248 +135532,24.292,66.1 +135533,19.106,69.471 +135534,20.454,68.358 +135535,21.765,67.237 +135536,23.043,66.112 +135537,17.722,69.414 +135538,19.116,68.324 +135539,20.472,67.227 +135540,21.793,66.125 +135541,16.34,69.356 +135542,17.779,68.289 +135543,19.178,67.216 +135544,20.543,66.139 +135545,14.958,69.296 +135546,16.442,68.254 +135547,17.885,67.206 +135548,19.291,66.154 +135549,13.578,69.236 +135550,15.105,68.219 +135551,16.591,67.196 +135552,18.038,66.17 +135553,12.198,69.175 +135554,13.769,68.184 +135555,15.296,67.187 +135556,16.784,66.186 +135557,10.82,69.114 +135558,12.434,68.148 +135559,14.001,67.177 +135560,15.529,66.204 +135561,9.4424,69.051 +135562,11.098,68.112 +135563,12.706,67.168 +135564,14.272,66.222 +135565,8.0662,68.988 +135566,9.7632,68.076 +135567,11.411,67.159 +135568,13.015,66.241 +135569,6.6911,68.924 +135570,8.4286,68.039 +135571,10.115,67.151 +135572,11.756,66.26 +135573,5.3173,68.859 +135574,7.0945,68.002 +135575,8.8183,67.143 +135576,10.495,66.281 +135577,3.9447,68.793 +135578,5.7609,67.965 +135579,7.5215,67.134 +135580,9.2338,66.302 +135581,2.5734,68.727 +135582,4.4276,67.928 +135583,6.2243,67.127 +135584,7.9708,66.324 +135585,1.2034,68.66 +135586,3.0949,67.89 +135587,4.9267,67.119 +135588,6.7065,66.346 +135589,359.83,68.592 +135590,1.7626,67.853 +135591,3.6286,67.111 +135592,5.4407,66.369 +135593,358.47,68.524 +135594,0.43078,67.815 +135595,2.33,67.104 +135596,4.1735,66.393 +135597,357.1,68.455 +135598,359.1,67.777 +135599,1.031,67.097 +135600,2.9049,66.417 +135601,355.74,68.385 +135602,357.77,67.738 +135603,359.73,67.09 +135604,1.6348,66.442 +135605,354.37,68.315 +135606,356.44,67.7 +135607,358.43,67.083 +135608,0.36323,66.467 +135609,353.01,68.245 +135610,355.11,67.661 +135611,357.13,67.077 +135612,359.09,66.493 +135613,351.65,68.173 +135614,353.78,67.622 +135615,355.83,67.07 +135616,357.82,66.519 +135617,350.29,68.102 +135618,352.45,67.583 +135619,354.53,67.064 +135620,356.54,66.546 +135621,348.94,68.03 +135622,351.12,67.544 +135623,353.23,67.058 +135624,355.26,66.573 +135625,347.58,67.957 +135626,349.79,67.504 +135627,351.92,67.052 +135628,353.98,66.6 +135629,346.23,67.884 +135630,348.47,67.465 +135631,350.62,67.046 +135632,352.7,66.628 +135633,344.88,67.811 +135634,347.14,67.425 +135635,349.32,67.04 +135636,351.42,66.656 +135637,343.53,67.737 +135638,345.81,67.385 +135639,348.01,67.034 +135640,350.13,66.685 +135641,342.18,67.663 +135642,344.49,67.346 +135643,346.71,67.029 +135644,348.85,66.714 +135645,340.83,67.589 +135646,343.16,67.306 +135647,345.4,67.023 +135648,347.56,66.743 +135649,339.48,67.514 +135650,341.84,67.265 +135651,344.1,67.018 +135652,346.27,66.772 +135653,338.14,67.439 +135654,340.52,67.225 +135655,342.79,67.012 +135656,344.98,66.801 +135657,336.8,67.364 +135658,339.19,67.185 +135659,341.49,67.007 +135660,343.69,66.831 +135661,335.46,67.289 +135662,337.87,67.145 +135663,340.18,67.002 +135664,342.4,66.861 +135665,334.12,67.214 +135666,336.55,67.104 +135667,338.87,66.996 +135668,341.1,66.89 +135669,332.78,67.138 +135670,335.23,67.064 +135671,337.56,66.991 +135672,339.8,66.92 +135673,331.45,67.062 +135674,333.91,67.023 +135675,336.25,66.986 +135676,338.5,66.95 +135677,330.12,66.986 +135678,332.59,66.983 +135679,334.94,66.981 +135680,337.2,66.98 +135681,328.79,66.911 +135682,331.27,66.942 +135683,333.63,66.975 +135684,335.9,67.01 +135685,327.46,66.835 +135686,329.95,66.902 +135687,332.32,66.97 +135688,334.6,67.04 +135689,326.13,66.759 +135690,328.63,66.861 +135691,331.01,66.965 +135692,333.29,67.07 +135693,324.81,66.683 +135694,327.31,66.821 +135695,329.7,66.96 +135696,331.98,67.1 +135697,323.48,66.607 +135698,326,66.78 +135699,328.39,66.954 +135700,330.67,67.129 +135701,322.16,66.531 +135702,324.68,66.74 +135703,327.07,66.949 +135704,329.36,67.159 +135705,320.84,66.456 +135706,323.36,66.699 +135707,325.76,66.943 +135708,328.05,67.188 +135709,319.52,66.38 +135710,322.05,66.659 +135711,324.45,66.938 +135712,326.73,67.217 +135713,318.21,66.305 +135714,320.74,66.618 +135715,323.13,66.932 +135716,325.42,67.246 +135717,316.9,66.23 +135718,319.42,66.578 +135719,321.82,66.926 +135720,324.1,67.275 +135721,315.58,66.155 +135722,318.11,66.538 +135723,320.5,66.921 +135724,322.78,67.303 +135725,314.27,66.081 +135726,316.8,66.498 +135727,319.18,66.915 +135728,321.46,67.331 +135729,312.97,66.006 +135730,315.48,66.458 +135731,317.87,66.909 +135732,320.13,67.359 +135733,311.66,65.932 +135734,314.17,66.418 +135735,316.55,66.903 +135736,318.81,67.386 +135737,310.36,65.859 +135738,312.86,66.378 +135739,315.23,66.896 +135740,317.48,67.413 +135741,309.06,65.785 +135742,311.55,66.338 +135743,313.91,66.89 +135744,316.15,67.44 +135745,307.76,65.713 +135746,310.24,66.299 +135747,312.59,66.883 +135748,314.82,67.466 +135749,306.46,65.64 +135750,308.93,66.259 +135751,311.27,66.876 +135752,313.49,67.491 +135753,305.16,65.568 +135754,307.63,66.22 +135755,309.95,66.869 +135756,312.16,67.516 +135757,303.87,65.497 +135758,306.32,66.181 +135759,308.63,66.862 +135760,310.82,67.541 +135761,302.58,65.425 +135762,305.01,66.142 +135763,307.31,66.855 +135764,309.49,67.565 +135765,301.28,65.355 +135766,303.71,66.103 +135767,305.99,66.848 +135768,308.15,67.588 +135769,300,65.285 +135770,302.4,66.064 +135771,304.66,66.84 +135772,306.81,67.611 +135773,298.71,65.216 +135774,301.1,66.026 +135775,303.34,66.832 +135776,305.47,67.633 +135777,297.43,65.147 +135778,299.79,65.988 +135779,302.02,66.824 +135780,304.12,67.655 +135781,296.14,65.079 +135782,298.49,65.949 +135783,300.69,66.815 +135784,302.78,67.676 +135785,294.86,65.011 +135786,297.18,65.912 +135787,299.37,66.807 +135788,301.43,67.696 +135789,293.58,64.945 +135790,295.88,65.874 +135791,298.04,66.798 +135792,300.08,67.715 +135793,292.3,64.879 +135794,294.58,65.837 +135795,296.72,66.789 +135796,298.73,67.734 +135797,291.03,64.813 +135798,293.28,65.799 +135799,295.39,66.779 +135800,297.38,67.752 +135801,289.76,64.749 +135802,291.98,65.763 +135803,294.06,66.77 +135804,296.03,67.769 +135805,288.48,64.685 +135806,290.68,65.726 +135807,292.74,66.76 +135808,294.68,67.786 +135809,287.21,64.622 +135810,289.38,65.69 +135811,291.41,66.75 +135812,293.32,67.801 +135813,285.94,64.56 +135814,288.08,65.653 +135815,290.08,66.739 +135816,291.96,67.816 +135817,284.68,64.499 +135818,286.78,65.618 +135819,288.75,66.728 +135820,290.61,67.83 +135821,283.41,64.438 +135822,285.48,65.582 +135823,287.42,66.717 +135824,289.25,67.842 +135825,282.15,64.379 +135826,284.18,65.547 +135827,286.09,66.706 +135828,287.89,67.854 +135829,280.89,64.32 +135830,282.89,65.512 +135831,284.76,66.694 +135832,286.52,67.866 +135833,279.63,64.262 +135834,281.59,65.477 +135835,283.43,66.682 +135836,285.16,67.876 +135837,278.37,64.205 +135838,280.29,65.443 +135839,282.1,66.67 +135840,283.79,67.885 +135841,277.11,64.15 +135842,279,65.409 +135843,280.77,66.657 +135844,282.43,67.893 +135845,275.85,64.095 +135846,277.7,65.375 +135847,279.43,66.644 +135848,281.06,67.9 +135849,274.6,64.041 +135850,276.41,65.342 +135851,278.1,66.63 +135852,279.69,67.906 +135853,273.35,63.988 +135854,275.12,65.309 +135855,276.77,66.617 +135856,278.32,67.912 +135857,272.09,63.937 +135858,273.82,65.276 +135859,275.44,66.602 +135860,276.95,67.916 +135861,270.84,63.886 +135862,272.53,65.243 +135863,274.1,66.588 +135864,275.58,67.919 +135865,269.59,63.836 +135866,271.24,65.211 +135867,272.77,66.573 +135868,274.2,67.921 +135869,268.35,63.788 +135870,269.94,65.18 +135871,271.43,66.558 +135872,272.83,67.921 +135873,267.1,63.741 +135874,268.65,65.148 +135875,270.1,66.542 +135876,271.45,67.921 +135877,265.85,63.694 +135878,267.36,65.117 +135879,268.76,66.526 +135880,270.08,67.92 +135881,264.61,63.649 +135882,266.07,65.087 +135883,267.43,66.51 +135884,268.7,67.917 +135885,263.37,63.605 +135886,264.78,65.056 +135887,266.09,66.493 +135888,267.32,67.914 +135889,262.12,63.562 +135890,263.49,65.027 +135891,264.76,66.476 +135892,265.94,67.909 +135893,260.88,63.521 +135894,262.2,64.997 +135895,263.42,66.458 +135896,264.56,67.903 +135897,259.64,63.48 +135898,260.91,64.968 +135899,262.08,66.44 +135900,263.18,67.896 +135901,258.4,63.441 +135902,259.62,64.939 +135903,260.75,66.422 +135904,261.79,67.888 +135905,257.17,63.403 +135906,258.33,64.911 +135907,259.41,66.403 +135908,260.41,67.878 +135909,255.93,63.366 +135910,257.04,64.883 +135911,258.07,66.384 +135912,259.03,67.868 +135913,254.69,63.33 +135914,255.75,64.855 +135915,256.73,66.364 +135916,257.64,67.856 +135917,253.46,63.296 +135918,254.46,64.828 +135919,255.39,66.344 +135920,256.26,67.843 +135921,252.22,63.263 +135922,253.18,64.801 +135923,254.06,66.324 +135924,254.87,67.828 +135925,250.99,63.231 +135926,251.89,64.775 +135927,252.72,66.303 +135928,253.48,67.813 +135929,249.75,63.2 +135930,250.6,64.749 +135931,251.38,66.282 +135932,252.09,67.796 +135933,248.52,63.17 +135934,249.31,64.724 +135935,250.04,66.26 +135936,250.7,67.778 +135937,247.29,63.142 +135938,248.03,64.698 +135939,248.7,66.238 +135940,249.32,67.759 +135941,246.06,63.115 +135942,246.74,64.674 +135943,247.36,66.215 +135944,247.93,67.738 +135945,244.83,63.089 +135946,245.45,64.649 +135947,246.02,66.192 +135948,246.54,67.717 +135949,243.6,63.065 +135950,244.17,64.625 +135951,244.68,66.169 +135952,245.15,67.694 +135953,242.37,63.042 +135954,242.88,64.602 +135955,243.34,66.145 +135956,243.75,67.67 +135957,241.14,63.02 +135958,241.6,64.579 +135959,242,66.121 +135960,242.36,67.644 +135961,239.91,62.999 +135962,240.31,64.556 +135963,240.66,66.096 +135964,240.97,67.618 +135965,238.68,62.979 +135966,239.02,64.534 +135967,239.32,66.071 +135968,239.58,67.59 +135969,237.45,62.961 +135970,237.74,64.512 +135971,237.98,66.045 +135972,238.19,67.561 +135973,236.22,62.944 +135974,236.45,64.49 +135975,236.64,66.019 +135976,236.79,67.53 +135977,234.99,62.929 +135978,235.17,64.469 +135979,235.3,65.993 +135980,235.4,67.499 +135981,233.76,62.914 +135982,233.88,64.448 +135983,233.96,65.966 +135984,234.01,67.466 +135985,232.53,62.901 +135986,232.6,64.428 +135987,232.62,65.939 +135988,232.61,67.432 +135989,231.3,62.889 +135990,231.31,64.408 +135991,231.28,65.911 +135992,231.22,67.396 +135993,230.07,62.878 +135994,230.03,64.389 +135995,229.94,65.883 +135996,229.83,67.36 +135997,228.84,62.869 +135998,228.74,64.369 +135999,228.6,65.854 +136000,228.43,67.322 +136001,227.61,62.86 +136002,227.45,64.351 +136003,227.26,65.825 +136004,227.04,67.283 +136005,226.38,62.853 +136006,226.17,64.332 +136007,225.92,65.796 +136008,225.64,67.243 +136009,225.15,62.847 +136010,224.88,64.314 +136011,224.58,65.766 +136012,224.25,67.202 +136013,223.92,62.843 +136014,223.6,64.297 +136015,223.24,65.736 +136016,222.86,67.159 +136017,222.69,62.839 +136018,222.31,64.28 +136019,221.9,65.706 +136020,221.46,67.116 +136021,221.46,62.837 +136022,221.03,64.263 +136023,220.56,65.675 +136024,220.07,67.071 +136025,220.23,62.835 +136026,219.74,64.246 +136027,219.22,65.643 +136028,218.68,67.025 +136029,219,62.835 +136030,218.45,64.23 +136031,217.88,65.611 +136032,217.29,66.977 +136033,217.77,62.836 +136034,217.17,64.215 +136035,216.54,65.579 +136036,215.89,66.929 +136037,216.54,62.839 +136038,215.88,64.199 +136039,215.2,65.547 +136040,214.5,66.88 +136041,215.3,62.842 +136042,214.6,64.184 +136043,213.86,65.514 +136044,213.11,66.829 +136045,214.07,62.846 +136046,213.31,64.17 +136047,212.53,65.481 +136048,211.72,66.777 +136049,212.84,62.852 +136050,212.02,64.155 +136051,211.19,65.447 +136052,210.33,66.725 +136053,211.6,62.858 +136054,210.74,64.141 +136055,209.85,65.413 +136056,208.94,66.671 +136057,210.36,62.866 +136058,209.45,64.128 +136059,208.51,65.378 +136060,207.55,66.616 +136061,209.13,62.874 +136062,208.16,64.114 +136063,207.17,65.344 +136064,206.16,66.56 +136065,207.89,62.884 +136066,206.87,64.102 +136067,205.83,65.309 +136068,204.77,66.503 +136069,206.65,62.894 +136070,205.59,64.089 +136071,204.5,65.273 +136072,203.38,66.445 +136073,205.41,62.906 +136074,204.3,64.077 +136075,203.16,65.237 +136076,201.99,66.386 +136077,204.17,62.918 +136078,203.01,64.065 +136079,201.82,65.201 +136080,200.61,66.326 +136081,202.93,62.932 +136082,201.72,64.053 +136083,200.49,65.165 +136084,199.22,66.266 +136085,201.69,62.946 +136086,200.43,64.041 +136087,199.15,65.128 +136088,197.84,66.204 +136089,200.44,62.961 +136090,199.14,64.03 +136091,197.81,65.091 +136092,196.45,66.141 +136093,199.2,62.977 +136094,197.85,64.019 +136095,196.48,65.053 +136096,195.07,66.077 +136097,197.95,62.994 +136098,196.56,64.009 +136099,195.14,65.016 +136100,193.69,66.013 +136101,196.71,63.012 +136102,195.27,63.998 +136103,193.81,64.978 +136104,192.31,65.948 +136105,195.46,63.03 +136106,193.98,63.988 +136107,192.47,64.939 +136108,190.93,65.881 +136109,194.21,63.049 +136110,192.69,63.979 +136111,191.14,64.901 +136112,189.55,65.814 +136113,192.96,63.07 +136114,191.4,63.969 +136115,189.8,64.862 +136116,188.17,65.746 +136117,191.71,63.09 +136118,190.11,63.96 +136119,188.47,64.823 +136120,186.79,65.678 +136121,190.46,63.112 +136122,188.82,63.951 +136123,187.14,64.783 +136124,185.41,65.608 +136125,189.2,63.134 +136126,187.52,63.942 +136127,185.81,64.744 +136128,184.04,65.538 +136129,187.95,63.157 +136130,186.23,63.933 +136131,184.47,64.704 +136132,182.67,65.468 +136133,186.69,63.18 +136134,184.94,63.925 +136135,183.14,64.664 +136136,181.29,65.396 +136137,185.43,63.204 +136138,183.64,63.916 +136139,181.81,64.623 +136140,179.92,65.324 +136141,184.17,63.229 +136142,182.35,63.908 +136143,180.48,64.583 +136144,178.55,65.251 +136145,182.91,63.254 +136146,181.06,63.9 +136147,179.15,64.542 +136148,177.18,65.178 +136149,181.65,63.279 +136150,179.76,63.892 +136151,177.82,64.501 +136152,175.82,65.104 +136153,180.39,63.306 +136154,178.47,63.885 +136155,176.49,64.46 +136156,174.45,65.029 +136157,179.12,63.332 +136158,177.17,63.877 +136159,175.16,64.419 +136160,173.09,64.954 +136161,177.85,63.359 +136162,175.87,63.87 +136163,173.83,64.377 +136164,171.72,64.879 +136165,176.58,63.387 +136166,174.58,63.863 +136167,172.51,64.335 +136168,170.36,64.803 +136169,175.31,63.415 +136170,173.28,63.856 +136171,171.18,64.294 +136172,169,64.726 +136173,174.04,63.443 +136174,171.98,63.849 +136175,169.85,64.252 +136176,167.64,64.649 +136177,172.77,63.471 +136178,170.68,63.842 +136179,168.53,64.21 +136180,166.29,64.572 +136181,171.49,63.5 +136182,169.38,63.835 +136183,167.2,64.167 +136184,164.93,64.494 +136185,170.22,63.529 +136186,168.08,63.829 +136187,165.87,64.125 +136188,163.58,64.416 +136189,168.94,63.559 +136190,166.78,63.822 +136191,164.55,64.082 +136192,162.23,64.338 +136193,167.66,63.588 +136194,165.48,63.816 +136195,163.23,64.04 +136196,160.88,64.259 +136197,166.38,63.618 +136198,164.18,63.809 +136199,161.9,63.997 +136200,159.53,64.18 +136201,165.09,63.648 +136202,162.88,63.803 +136203,160.58,63.954 +136204,158.18,64.101 +136205,163.81,63.678 +136206,161.58,63.796 +136207,159.26,63.912 +136208,156.84,64.022 +136209,162.52,63.708 +136210,160.27,63.79 +136211,157.94,63.869 +136212,155.49,63.942 +136213,161.23,63.738 +136214,158.97,63.784 +136215,156.62,63.826 +136216,154.15,63.863 +136217,159.94,63.768 +136218,157.67,63.777 +136219,155.3,63.783 +136220,152.81,63.783 +136221,158.65,63.798 +136222,156.36,63.771 +136223,153.98,63.74 +136224,151.48,63.703 +136225,157.36,63.829 +136226,155.06,63.765 +136227,152.66,63.697 +136228,150.14,63.624 +136229,156.06,63.859 +136230,153.75,63.758 +136231,151.34,63.654 +136232,148.81,63.544 +136233,154.76,63.889 +136234,152.45,63.752 +136235,150.02,63.611 +136236,147.47,63.464 +136237,153.46,63.919 +136238,151.14,63.746 +136239,148.7,63.568 +136240,146.14,63.384 +136241,152.16,63.949 +136242,149.83,63.739 +136243,147.39,63.525 +136244,144.82,63.304 +136245,150.86,63.978 +136246,148.52,63.733 +136247,146.07,63.482 +136248,143.49,63.225 +136249,149.56,64.008 +136250,147.21,63.726 +136251,144.76,63.439 +136252,142.17,63.145 +136253,148.25,64.037 +136254,145.91,63.719 +136255,143.44,63.396 +136256,140.84,63.066 +136257,146.94,64.066 +136258,144.6,63.712 +136259,142.13,63.353 +136260,139.52,62.986 +136261,145.63,64.094 +136262,143.29,63.706 +136263,140.82,63.31 +136264,138.2,62.907 +136265,144.32,64.123 +136266,141.97,63.699 +136267,139.5,63.267 +136268,136.89,62.829 +136269,143.01,64.151 +136270,140.66,63.691 +136271,138.19,63.225 +136272,135.57,62.75 +136273,141.69,64.178 +136274,139.35,63.684 +136275,136.88,63.182 +136276,134.26,62.672 +136277,140.38,64.206 +136278,138.04,63.677 +136279,135.57,63.14 +136280,132.95,62.594 +136281,139.06,64.233 +136282,136.72,63.669 +136283,134.26,63.098 +136284,131.64,62.517 +136285,137.74,64.259 +136286,135.41,63.662 +136287,132.95,63.055 +136288,130.34,62.44 +136289,136.42,64.285 +136290,134.1,63.654 +136291,131.64,63.013 +136292,129.03,62.363 +136293,135.09,64.31 +136294,132.78,63.646 +136295,130.33,62.971 +136296,127.73,62.287 +136297,133.77,64.335 +136298,131.47,63.637 +136299,129.03,62.93 +136300,126.43,62.211 +136301,132.44,64.359 +136302,130.15,63.629 +136303,127.72,62.888 +136304,125.13,62.136 +136305,131.11,64.383 +136306,128.83,63.62 +136307,126.42,62.847 +136308,123.84,62.061 +136309,129.78,64.406 +136310,127.51,63.612 +136311,125.11,62.805 +136312,122.54,61.987 +136313,128.45,64.429 +136314,126.2,63.602 +136315,123.81,62.764 +136316,121.25,61.914 +136317,127.12,64.45 +136318,124.88,63.593 +136319,122.5,62.724 +136320,119.96,61.841 +136321,125.78,64.472 +136322,123.56,63.584 +136323,121.2,62.683 +136324,118.67,61.769 +136325,124.44,64.492 +136326,122.24,63.574 +136327,119.9,62.642 +136328,117.39,61.697 +136329,123.1,64.512 +136330,120.92,63.564 +136331,118.59,62.602 +136332,116.1,61.626 +136333,121.76,64.531 +136334,119.6,63.554 +136335,117.29,62.562 +136336,114.82,61.556 +136337,120.42,64.549 +136338,118.28,63.543 +136339,115.99,62.523 +136340,113.54,61.487 +136341,119.08,64.566 +136342,116.96,63.532 +136343,114.69,62.483 +136344,112.26,61.418 +136345,117.73,64.582 +136346,115.63,63.521 +136347,113.39,62.444 +136348,110.99,61.35 +136349,116.39,64.598 +136350,114.31,63.51 +136351,112.09,62.405 +136352,109.71,61.283 +136353,115.04,64.613 +136354,112.99,63.498 +136355,110.8,62.366 +136356,108.44,61.217 +136357,113.69,64.627 +136358,111.66,63.486 +136359,109.5,62.328 +136360,107.17,61.152 +136361,112.34,64.64 +136362,110.34,63.474 +136363,108.2,62.29 +136364,105.9,61.087 +136365,110.98,64.652 +136366,109.01,63.461 +136367,106.9,62.252 +136368,104.63,61.024 +136369,109.63,64.663 +136370,107.69,63.448 +136371,105.61,62.214 +136372,103.37,60.961 +136373,108.27,64.673 +136374,106.36,63.435 +136375,104.31,62.177 +136376,102.1,60.9 +136377,106.92,64.682 +136378,105.04,63.421 +136379,103.02,62.14 +136380,100.84,60.839 +136381,105.56,64.69 +136382,103.71,63.407 +136383,101.72,62.103 +136384,99.583,60.78 +136385,104.2,64.697 +136386,102.38,63.392 +136387,100.43,62.067 +136388,98.325,60.721 +136389,102.84,64.703 +136390,101.05,63.378 +136391,99.137,62.031 +136392,97.068,60.664 +136393,101.48,64.708 +136394,99.725,63.363 +136395,97.845,61.996 +136396,95.813,60.607 +136397,100.11,64.712 +136398,98.397,63.347 +136399,96.553,61.96 +136400,94.56,60.552 +136401,98.747,64.715 +136402,97.067,63.331 +136403,95.261,61.925 +136404,93.308,60.497 +136405,97.38,64.716 +136406,95.738,63.315 +136407,93.97,61.891 +136408,92.058,60.444 +136409,96.012,64.717 +136410,94.408,63.298 +136411,92.68,61.857 +136412,90.81,60.392 +136413,94.643,64.716 +136414,93.077,63.281 +136415,91.39,61.823 +136416,89.563,60.341 +136417,93.273,64.715 +136418,91.747,63.264 +136419,90.1,61.789 +136420,88.317,60.292 +136421,91.902,64.712 +136422,90.415,63.246 +136423,88.811,61.756 +136424,87.073,60.243 +136425,90.53,64.708 +136426,89.084,63.228 +136427,87.523,61.724 +136428,85.83,60.196 +136429,89.156,64.702 +136430,87.752,63.209 +136431,86.235,61.691 +136432,84.588,60.149 +136433,87.782,64.696 +136434,86.42,63.19 +136435,84.947,61.66 +136436,83.348,60.105 +136437,86.406,64.688 +136438,85.087,63.17 +136439,83.66,61.628 +136440,82.109,60.061 +136441,85.03,64.679 +136442,83.754,63.15 +136443,82.373,61.597 +136444,80.871,60.018 +136445,83.652,64.669 +136446,82.421,63.13 +136447,81.086,61.566 +136448,79.634,59.977 +136449,82.273,64.657 +136450,81.087,63.109 +136451,79.8,61.536 +136452,78.398,59.937 +136453,80.894,64.645 +136454,79.753,63.088 +136455,78.514,61.506 +136456,77.164,59.898 +136457,79.514,64.631 +136458,78.419,63.066 +136459,77.229,61.476 +136460,75.931,59.861 +136461,78.132,64.616 +136462,77.084,63.044 +136463,75.944,61.447 +136464,74.698,59.825 +136465,76.75,64.599 +136466,75.75,63.022 +136467,74.659,61.419 +136468,73.467,59.79 +136469,75.367,64.581 +136470,74.415,62.999 +136471,73.375,61.39 +136472,72.236,59.756 +136473,73.984,64.562 +136474,73.079,62.975 +136475,72.091,61.363 +136476,71.006,59.724 +136477,72.599,64.542 +136478,71.744,62.952 +136479,70.807,61.335 +136480,69.778,59.693 +136481,71.214,64.52 +136482,70.408,62.927 +136483,69.523,61.308 +136484,68.549,59.664 +136485,69.828,64.498 +136486,69.072,62.903 +136487,68.24,61.282 +136488,67.322,59.635 +136489,68.442,64.473 +136490,67.736,62.877 +136491,66.957,61.256 +136492,66.095,59.608 +136493,67.055,64.448 +136494,66.4,62.852 +136495,65.674,61.23 +136496,64.869,59.582 +136497,65.667,64.421 +136498,65.063,62.826 +136499,64.392,61.205 +136500,63.644,59.558 +136501,64.279,64.393 +136502,63.727,62.799 +136503,63.109,61.18 +136504,62.419,59.535 +136505,62.891,64.363 +136506,62.39,62.772 +136507,61.827,61.155 +136508,61.194,59.513 +136509,61.501,64.333 +136510,61.053,62.745 +136511,60.545,61.131 +136512,59.97,59.493 +136513,60.112,64.301 +136514,59.716,62.717 +136515,59.263,61.108 +136516,58.747,59.474 +136517,58.722,64.267 +136518,58.379,62.688 +136519,57.982,61.084 +136520,57.524,59.456 +136521,57.332,64.233 +136522,57.042,62.659 +136523,56.7,61.062 +136524,56.301,59.44 +136525,55.941,64.197 +136526,55.705,62.63 +136527,55.419,61.039 +136528,55.078,59.424 +136529,54.55,64.16 +136530,54.367,62.601 +136531,54.137,61.017 +136532,53.855,59.41 +136533,53.159,64.121 +136534,53.03,62.57 +136535,52.856,60.996 +136536,52.633,59.398 +136537,51.768,64.081 +136538,51.693,62.54 +136539,51.575,60.975 +136540,51.411,59.387 +136541,50.376,64.04 +136542,50.355,62.509 +136543,50.294,60.954 +136544,50.188,59.377 +136545,48.984,63.998 +136546,49.018,62.477 +136547,49.013,60.934 +136548,48.966,59.368 +136549,47.593,63.954 +136550,47.68,62.445 +136551,47.732,60.914 +136552,47.744,59.36 +136553,46.201,63.909 +136554,46.343,62.413 +136555,46.451,60.894 +136556,46.522,59.354 +136557,44.809,63.863 +136558,45.006,62.38 +136559,45.17,60.875 +136560,45.299,59.349 +136561,43.417,63.816 +136562,43.668,62.347 +136563,43.889,60.857 +136564,44.076,59.345 +136565,42.025,63.768 +136566,42.331,62.314 +136567,42.608,60.838 +136568,42.853,59.343 +136569,40.633,63.718 +136570,40.994,62.28 +136571,41.327,60.82 +136572,41.63,59.341 +136573,39.242,63.667 +136574,39.657,62.245 +136575,40.046,60.803 +136576,40.407,59.341 +136577,37.85,63.615 +136578,38.32,62.21 +136579,38.764,60.786 +136580,39.183,59.342 +136581,36.459,63.561 +136582,36.983,62.175 +136583,37.483,60.769 +136584,37.958,59.345 +136585,35.068,63.507 +136586,35.646,62.139 +136587,36.202,60.753 +136588,36.734,59.348 +136589,33.677,63.451 +136590,34.31,62.103 +136591,34.92,60.737 +136592,35.508,59.352 +136593,32.287,63.394 +136594,32.973,62.067 +136595,33.639,60.721 +136596,34.282,59.358 +136597,30.897,63.336 +136598,31.637,62.03 +136599,32.357,60.706 +136600,33.056,59.365 +136601,29.507,63.277 +136602,30.301,61.993 +136603,31.075,60.691 +136604,31.829,59.373 +136605,28.118,63.217 +136606,28.965,61.955 +136607,29.793,60.676 +136608,30.601,59.381 +136609,26.729,63.156 +136610,27.629,61.917 +136611,28.511,60.662 +136612,29.373,59.391 +136613,25.341,63.094 +136614,26.294,61.879 +136615,27.228,60.648 +136616,28.143,59.402 +136617,23.953,63.03 +136618,24.959,61.84 +136619,25.945,60.635 +136620,26.913,59.414 +136621,22.566,62.966 +136622,23.624,61.801 +136623,24.662,60.621 +136624,25.682,59.427 +136625,21.179,62.9 +136626,22.289,61.762 +136627,23.379,60.608 +136628,24.451,59.441 +136629,19.793,62.834 +136630,20.955,61.722 +136631,22.096,60.596 +136632,23.218,59.456 +136633,18.408,62.767 +136634,19.621,61.682 +136635,20.812,60.583 +136636,21.984,59.472 +136637,17.024,62.698 +136638,18.287,61.642 +136639,19.528,60.571 +136640,20.749,59.488 +136641,15.64,62.629 +136642,16.953,61.601 +136643,18.244,60.559 +136644,19.514,59.506 +136645,14.257,62.559 +136646,15.62,61.56 +136647,16.959,60.548 +136648,18.277,59.524 +136649,12.875,62.488 +136650,14.288,61.519 +136651,15.675,60.537 +136652,17.039,59.544 +136653,11.494,62.416 +136654,12.955,61.477 +136655,14.389,60.526 +136656,15.8,59.564 +136657,10.114,62.343 +136658,11.623,61.435 +136659,13.104,60.515 +136660,14.56,59.584 +136661,8.7352,62.27 +136662,10.291,61.393 +136663,11.818,60.505 +136664,13.318,59.606 +136665,7.357,62.195 +136666,8.9601,61.351 +136667,10.532,60.494 +136668,12.075,59.628 +136669,5.9799,62.12 +136670,7.6292,61.308 +136671,9.2451,60.484 +136672,10.831,59.651 +136673,4.6039,62.044 +136674,6.2987,61.265 +136675,7.9581,60.475 +136676,9.5861,59.675 +136677,3.229,61.968 +136678,4.9686,61.222 +136679,6.6707,60.465 +136680,8.3395,59.699 +136681,1.8553,61.89 +136682,3.639,61.178 +136683,5.3829,60.456 +136684,7.0915,59.724 +136685,0.48272,61.812 +136686,2.3099,61.135 +136687,4.0947,60.446 +136688,5.8421,59.75 +136689,359.11,61.734 +136690,0.98121,61.091 +136691,2.8061,60.437 +136692,4.5913,59.776 +136693,357.74,61.655 +136694,359.65,61.047 +136695,1.517,60.429 +136696,3.3391,59.802 +136697,356.37,61.575 +136698,358.33,61.002 +136699,0.22754,60.42 +136700,2.0854,59.83 +136701,355.01,61.494 +136702,357,60.958 +136703,358.94,60.411 +136704,0.83018,59.857 +136705,353.64,61.413 +136706,355.67,60.913 +136707,357.65,60.403 +136708,359.57,59.885 +136709,352.27,61.332 +136710,354.35,60.868 +136711,356.36,60.395 +136712,358.32,59.914 +136713,350.91,61.25 +136714,353.02,60.823 +136715,355.06,60.387 +136716,357.06,59.943 +136717,349.55,61.168 +136718,351.69,60.778 +136719,353.77,60.379 +136720,355.79,59.972 +136721,348.19,61.085 +136722,350.37,60.733 +136723,352.48,60.371 +136724,354.53,60.002 +136725,346.83,61.002 +136726,349.05,60.687 +136727,351.19,60.363 +136728,353.27,60.032 +136729,345.47,60.918 +136730,347.72,60.642 +136731,349.89,60.355 +136732,352,60.062 +136733,344.12,60.834 +136734,346.4,60.596 +136735,348.6,60.348 +136736,350.73,60.092 +136737,342.76,60.75 +136738,345.08,60.55 +136739,347.31,60.34 +136740,349.46,60.123 +136741,341.41,60.666 +136742,343.76,60.504 +136743,346.01,60.333 +136744,348.19,60.154 +136745,340.06,60.581 +136746,342.43,60.458 +136747,344.72,60.325 +136748,346.92,60.185 +136749,338.71,60.496 +136750,341.11,60.412 +136751,343.42,60.318 +136752,345.64,60.216 +136753,337.36,60.411 +136754,339.79,60.366 +136755,342.12,60.311 +136756,344.37,60.247 +136757,336.02,60.326 +136758,338.47,60.32 +136759,340.83,60.303 +136760,343.09,60.278 +136761,334.68,60.24 +136762,337.16,60.274 +136763,339.53,60.296 +136764,341.81,60.309 +136765,333.33,60.155 +136766,335.84,60.227 +136767,338.23,60.289 +136768,340.53,60.341 +136769,331.99,60.069 +136770,334.52,60.181 +136771,336.93,60.281 +136772,339.24,60.372 +136773,330.66,59.984 +136774,333.2,60.135 +136775,335.63,60.274 +136776,337.96,60.403 +136777,329.32,59.898 +136778,331.89,60.088 +136779,334.33,60.266 +136780,336.67,60.434 +136781,327.99,59.813 +136782,330.57,60.042 +136783,333.03,60.259 +136784,335.38,60.465 +136785,326.65,59.727 +136786,329.26,59.996 +136787,331.73,60.251 +136788,334.09,60.496 +136789,325.32,59.642 +136790,327.94,59.95 +136791,330.43,60.244 +136792,332.8,60.526 +136793,323.99,59.557 +136794,326.63,59.904 +136795,329.13,60.236 +136796,331.51,60.557 +136797,322.67,59.472 +136798,325.32,59.857 +136799,327.82,60.228 +136800,330.21,60.587 +136801,321.34,59.387 +136802,324,59.811 +136803,326.52,60.22 +136804,328.91,60.617 +136805,320.02,59.303 +136806,322.69,59.765 +136807,325.22,60.213 +136808,327.61,60.646 +136809,318.7,59.218 +136810,321.38,59.719 +136811,323.91,60.204 +136812,326.31,60.676 +136813,317.38,59.134 +136814,320.07,59.674 +136815,322.61,60.196 +136816,325.01,60.704 +136817,316.07,59.051 +136818,318.76,59.628 +136819,321.3,60.188 +136820,323.7,60.733 +136821,314.75,58.967 +136822,317.45,59.582 +136823,319.99,60.179 +136824,322.4,60.761 +136825,313.44,58.884 +136826,316.15,59.537 +136827,318.69,60.171 +136828,321.09,60.788 +136829,312.13,58.802 +136830,314.84,59.491 +136831,317.38,60.162 +136832,319.78,60.816 +136833,310.82,58.72 +136834,313.53,59.446 +136835,316.07,60.153 +136836,318.47,60.842 +136837,309.52,58.638 +136838,312.23,59.401 +136839,314.76,60.144 +136840,317.15,60.868 +136841,308.21,58.557 +136842,310.92,59.356 +136843,313.45,60.134 +136844,315.84,60.894 +136845,306.91,58.477 +136846,309.62,59.311 +136847,312.14,60.125 +136848,314.52,60.919 +136849,305.61,58.397 +136850,308.31,59.267 +136851,310.83,60.115 +136852,313.2,60.943 +136853,304.31,58.317 +136854,307.01,59.223 +136855,309.52,60.105 +136856,311.88,60.967 +136857,303.02,58.239 +136858,305.71,59.178 +136859,308.21,60.095 +136860,310.56,60.99 +136861,301.72,58.161 +136862,304.4,59.134 +136863,306.9,60.084 +136864,309.23,61.012 +136865,300.43,58.083 +136866,303.1,59.091 +136867,305.59,60.073 +136868,307.91,61.033 +136869,299.14,58.007 +136870,301.8,59.047 +136871,304.27,60.062 +136872,306.58,61.054 +136873,297.86,57.931 +136874,300.5,59.004 +136875,302.96,60.051 +136876,305.25,61.074 +136877,296.57,57.856 +136878,299.2,58.961 +136879,301.64,60.04 +136880,303.92,61.093 +136881,295.29,57.781 +136882,297.91,58.918 +136883,300.33,60.028 +136884,302.59,61.112 +136885,294.01,57.708 +136886,296.61,58.876 +136887,299.01,60.016 +136888,301.25,61.129 +136889,292.73,57.635 +136890,295.31,58.834 +136891,297.7,60.003 +136892,299.92,61.146 +136893,291.45,57.563 +136894,294.01,58.792 +136895,296.38,59.99 +136896,298.58,61.162 +136897,290.18,57.493 +136898,292.72,58.75 +136899,295.06,59.977 +136900,297.24,61.176 +136901,288.91,57.423 +136902,291.42,58.709 +136903,293.74,59.964 +136904,295.9,61.19 +136905,287.64,57.354 +136906,290.13,58.668 +136907,292.43,59.95 +136908,294.56,61.203 +136909,286.37,57.286 +136910,288.84,58.627 +136911,291.11,59.936 +136912,293.21,61.215 +136913,285.1,57.219 +136914,287.54,58.587 +136915,289.79,59.922 +136916,291.87,61.226 +136917,283.84,57.153 +136918,286.25,58.547 +136919,288.47,59.907 +136920,290.52,61.236 +136921,282.58,57.088 +136922,284.96,58.507 +136923,287.15,59.892 +136924,289.17,61.245 +136925,281.31,57.024 +136926,283.67,58.468 +136927,285.83,59.876 +136928,287.82,61.253 +136929,280.06,56.962 +136930,282.38,58.429 +136931,284.5,59.86 +136932,286.47,61.259 +136933,278.8,56.9 +136934,281.09,58.39 +136935,283.18,59.844 +136936,285.12,61.265 +136937,277.54,56.84 +136938,279.8,58.352 +136939,281.86,59.827 +136940,283.76,61.269 +136941,276.29,56.781 +136942,278.51,58.314 +136943,280.54,59.81 +136944,282.41,61.273 +136945,275.04,56.723 +136946,277.22,58.276 +136947,279.21,59.793 +136948,281.05,61.275 +136949,273.79,56.666 +136950,275.93,58.239 +136951,277.89,59.775 +136952,279.69,61.276 +136953,272.54,56.61 +136954,274.65,58.202 +136955,276.57,59.757 +136956,278.33,61.276 +136957,271.3,56.556 +136958,273.36,58.166 +136959,275.24,59.738 +136960,276.97,61.274 +136961,270.05,56.503 +136962,272.07,58.13 +136963,273.92,59.719 +136964,275.61,61.271 +136965,268.81,56.451 +136966,270.79,58.094 +136967,272.59,59.699 +136968,274.24,61.268 +136969,267.57,56.4 +136970,269.5,58.059 +136971,271.26,59.679 +136972,272.88,61.263 +136973,266.33,56.351 +136974,268.22,58.025 +136975,269.94,59.659 +136976,271.51,61.256 +136977,265.09,56.303 +136978,266.93,57.99 +136979,268.61,59.638 +136980,270.15,61.249 +136981,263.85,56.256 +136982,265.65,57.956 +136983,267.28,59.617 +136984,268.78,61.24 +136985,262.62,56.211 +136986,264.37,57.923 +136987,265.96,59.595 +136988,267.41,61.229 +136989,261.38,56.167 +136990,263.09,57.89 +136991,264.63,59.573 +136992,266.04,61.218 +136993,260.15,56.124 +136994,261.8,57.857 +136995,263.3,59.55 +136996,264.67,61.205 +136997,258.92,56.083 +136998,260.52,57.825 +136999,261.97,59.527 +137000,263.29,61.191 +137001,257.69,56.043 +137002,259.24,57.793 +137003,260.64,59.504 +137004,261.92,61.175 +137005,256.46,56.004 +137006,257.96,57.762 +137007,259.31,59.48 +137008,260.55,61.159 +137009,255.23,55.967 +137010,256.68,57.731 +137011,257.98,59.455 +137012,259.17,61.14 +137013,254.01,55.931 +137014,255.4,57.701 +137015,256.65,59.43 +137016,257.79,61.121 +137017,252.78,55.897 +137018,254.12,57.671 +137019,255.32,59.405 +137020,256.42,61.1 +137021,251.56,55.864 +137022,252.84,57.642 +137023,253.99,59.379 +137024,255.04,61.078 +137025,250.34,55.833 +137026,251.56,57.613 +137027,252.66,59.352 +137028,253.66,61.054 +137029,249.11,55.803 +137030,250.28,57.584 +137031,251.33,59.326 +137032,252.28,61.029 +137033,247.89,55.774 +137034,249,57.556 +137035,250,59.298 +137036,250.9,61.003 +137037,246.67,55.747 +137038,247.73,57.528 +137039,248.67,59.27 +137040,249.52,60.975 +137041,245.45,55.721 +137042,246.45,57.501 +137043,247.34,59.242 +137044,248.14,60.946 +137045,244.23,55.696 +137046,245.17,57.474 +137047,246.01,59.213 +137048,246.76,60.915 +137049,243.01,55.673 +137050,243.89,57.448 +137051,244.68,59.184 +137052,245.37,60.884 +137053,241.8,55.652 +137054,242.62,57.422 +137055,243.34,59.155 +137056,243.99,60.85 +137057,240.58,55.632 +137058,241.34,57.397 +137059,242.01,59.124 +137060,242.6,60.816 +137061,239.36,55.613 +137062,240.06,57.372 +137063,240.68,59.094 +137064,241.22,60.78 +137065,238.15,55.596 +137066,238.79,57.347 +137067,239.35,59.063 +137068,239.83,60.742 +137069,236.93,55.58 +137070,237.51,57.323 +137071,238.02,59.031 +137072,238.45,60.703 +137073,235.72,55.565 +137074,236.24,57.3 +137075,236.68,58.999 +137076,237.06,60.663 +137077,234.5,55.552 +137078,234.96,57.277 +137079,235.35,58.966 +137080,235.68,60.622 +137081,233.29,55.54 +137082,233.69,57.254 +137083,234.02,58.933 +137084,234.29,60.579 +137085,232.07,55.53 +137086,232.41,57.232 +137087,232.68,58.9 +137088,232.9,60.535 +137089,230.86,55.521 +137090,231.13,57.21 +137091,231.35,58.866 +137092,231.52,60.489 +137093,229.64,55.513 +137094,229.86,57.189 +137095,230.02,58.832 +137096,230.13,60.442 +137097,228.43,55.507 +137098,228.58,57.168 +137099,228.69,58.797 +137100,228.74,60.394 +137101,227.22,55.502 +137102,227.31,57.147 +137103,227.35,58.761 +137104,227.35,60.344 +137105,226,55.498 +137106,226.03,57.127 +137107,226.02,58.726 +137108,225.96,60.293 +137109,224.79,55.496 +137110,224.76,57.108 +137111,224.69,58.689 +137112,224.58,60.241 +137113,223.58,55.495 +137114,223.48,57.089 +137115,223.35,58.653 +137116,223.19,60.188 +137117,222.36,55.495 +137118,222.21,57.07 +137119,222.02,58.616 +137120,221.8,60.133 +137121,221.15,55.497 +137122,220.93,57.051 +137123,220.69,58.578 +137124,220.41,60.077 +137125,219.93,55.5 +137126,219.66,57.033 +137127,219.36,58.54 +137128,219.02,60.02 +137129,218.72,55.504 +137130,218.39,57.016 +137131,218.02,58.502 +137132,217.64,59.961 +137133,217.5,55.509 +137134,217.11,56.999 +137135,216.69,58.463 +137136,216.25,59.901 +137137,216.29,55.516 +137138,215.83,56.982 +137139,215.36,58.424 +137140,214.86,59.84 +137141,215.07,55.523 +137142,214.56,56.966 +137143,214.03,58.384 +137144,213.47,59.778 +137145,213.85,55.532 +137146,213.28,56.95 +137147,212.7,58.344 +137148,212.09,59.714 +137149,212.64,55.542 +137150,212.01,56.934 +137151,211.36,58.304 +137152,210.7,59.65 +137153,211.42,55.553 +137154,210.73,56.919 +137155,210.03,58.263 +137156,209.31,59.584 +137157,210.2,55.565 +137158,209.46,56.904 +137159,208.7,58.222 +137160,207.93,59.517 +137161,208.98,55.578 +137162,208.18,56.889 +137163,207.37,58.18 +137164,206.54,59.449 +137165,207.76,55.593 +137166,206.91,56.875 +137167,206.04,58.138 +137168,205.16,59.38 +137169,206.54,55.608 +137170,205.63,56.861 +137171,204.71,58.096 +137172,203.77,59.31 +137173,205.32,55.625 +137174,204.35,56.848 +137175,203.38,58.053 +137176,202.39,59.238 +137177,204.09,55.642 +137178,203.08,56.835 +137179,202.05,58.01 +137180,201,59.166 +137181,202.87,55.66 +137182,201.8,56.822 +137183,200.72,57.966 +137184,199.62,59.092 +137185,201.65,55.68 +137186,200.52,56.809 +137187,199.39,57.923 +137188,198.24,59.018 +137189,200.42,55.7 +137190,199.25,56.797 +137191,198.06,57.879 +137192,196.86,58.943 +137193,199.19,55.721 +137194,197.97,56.785 +137195,196.73,57.834 +137196,195.48,58.866 +137197,197.97,55.743 +137198,196.69,56.774 +137199,195.4,57.789 +137200,194.1,58.789 +137201,196.74,55.766 +137202,195.41,56.762 +137203,194.07,57.744 +137204,192.72,58.711 +137205,195.51,55.789 +137206,194.13,56.751 +137207,192.74,57.699 +137208,191.34,58.632 +137209,194.28,55.814 +137210,192.85,56.74 +137211,191.42,57.653 +137212,189.96,58.552 +137213,193.04,55.839 +137214,191.58,56.73 +137215,190.09,57.608 +137216,188.58,58.471 +137217,191.81,55.865 +137218,190.3,56.719 +137219,188.76,57.561 +137220,187.21,58.389 +137221,190.58,55.891 +137222,189.02,56.709 +137223,187.44,57.515 +137224,185.83,58.307 +137225,189.34,55.918 +137226,187.74,56.699 +137227,186.11,57.468 +137228,184.46,58.224 +137229,188.1,55.946 +137230,186.46,56.69 +137231,184.78,57.421 +137232,183.09,58.14 +137233,186.86,55.975 +137234,185.17,56.68 +137235,183.46,57.374 +137236,181.71,58.055 +137237,185.62,56.004 +137238,183.89,56.671 +137239,182.13,57.327 +137240,180.34,57.97 +137241,184.38,56.033 +137242,182.61,56.662 +137243,180.81,57.279 +137244,178.97,57.884 +137245,183.14,56.064 +137246,181.33,56.653 +137247,179.49,57.231 +137248,177.61,57.797 +137249,181.89,56.094 +137250,180.05,56.644 +137251,178.16,57.183 +137252,176.24,57.71 +137253,180.65,56.125 +137254,178.76,56.635 +137255,176.84,57.135 +137256,174.87,57.623 +137257,179.4,56.157 +137258,177.48,56.627 +137259,175.52,57.087 +137260,173.51,57.534 +137261,178.15,56.189 +137262,176.2,56.619 +137263,174.2,57.038 +137264,172.15,57.446 +137265,176.9,56.221 +137266,174.91,56.61 +137267,172.88,56.99 +137268,170.79,57.356 +137269,175.65,56.253 +137270,173.63,56.602 +137271,171.55,56.941 +137272,169.43,57.267 +137273,174.39,56.286 +137274,172.34,56.594 +137275,170.23,56.892 +137276,168.07,57.177 +137277,173.14,56.319 +137278,171.06,56.586 +137279,168.91,56.843 +137280,166.71,57.086 +137281,171.88,56.353 +137282,169.77,56.579 +137283,167.6,56.794 +137284,165.35,56.996 +137285,170.62,56.386 +137286,168.48,56.571 +137287,166.28,56.744 +137288,164,56.904 +137289,169.36,56.42 +137290,167.19,56.563 +137291,164.96,56.695 +137292,162.65,56.813 +137293,168.1,56.454 +137294,165.91,56.555 +137295,163.64,56.645 +137296,161.3,56.721 +137297,166.83,56.488 +137298,164.62,56.548 +137299,162.33,56.596 +137300,159.95,56.63 +137301,165.57,56.522 +137302,163.33,56.54 +137303,161.01,56.546 +137304,158.6,56.538 +137305,164.3,56.556 +137306,162.04,56.533 +137307,159.69,56.497 +137308,157.26,56.446 +137309,163.03,56.59 +137310,160.75,56.525 +137311,158.38,56.447 +137312,155.91,56.353 +137313,161.76,56.624 +137314,159.46,56.518 +137315,157.07,56.397 +137316,154.57,56.261 +137317,160.49,56.658 +137318,158.17,56.51 +137319,155.75,56.348 +137320,153.23,56.169 +137321,159.21,56.692 +137322,156.88,56.502 +137323,154.44,56.298 +137324,151.89,56.076 +137325,157.94,56.726 +137326,155.58,56.495 +137327,153.13,56.248 +137328,150.55,55.984 +137329,156.66,56.759 +137330,154.29,56.487 +137331,151.82,56.199 +137332,149.22,55.892 +137333,155.38,56.793 +137334,153,56.479 +137335,150.51,56.149 +137336,147.89,55.799 +137337,154.1,56.826 +137338,151.7,56.471 +137339,149.2,56.1 +137340,146.56,55.707 +137341,152.81,56.859 +137342,150.41,56.463 +137343,147.89,56.05 +137344,145.23,55.615 +137345,151.53,56.891 +137346,149.11,56.455 +137347,146.58,56.001 +137348,143.9,55.524 +137349,150.24,56.924 +137350,147.82,56.447 +137351,145.27,55.951 +137352,142.57,55.432 +137353,148.95,56.955 +137354,146.52,56.439 +137355,143.96,55.902 +137356,141.25,55.341 +137357,147.66,56.987 +137358,145.22,56.431 +137359,142.66,55.853 +137360,139.93,55.25 +137361,146.37,57.018 +137362,143.93,56.422 +137363,141.35,55.804 +137364,138.61,55.16 +137365,145.07,57.049 +137366,142.63,56.413 +137367,140.05,55.755 +137368,137.3,55.07 +137369,143.77,57.079 +137370,141.33,56.405 +137371,138.74,55.706 +137372,135.98,54.98 +137373,142.48,57.109 +137374,140.03,56.396 +137375,137.44,55.657 +137376,134.67,54.891 +137377,141.17,57.138 +137378,138.73,56.386 +137379,136.13,55.609 +137380,133.36,54.802 +137381,139.87,57.167 +137382,137.43,56.377 +137383,134.83,55.561 +137384,132.05,54.713 +137385,138.57,57.195 +137386,136.13,56.368 +137387,133.53,55.512 +137388,130.74,54.626 +137389,137.26,57.222 +137390,134.83,56.358 +137391,132.23,55.465 +137392,129.44,54.538 +137393,135.96,57.249 +137394,133.53,56.348 +137395,130.93,55.417 +137396,128.14,54.452 +137397,134.65,57.275 +137398,132.22,56.338 +137399,129.63,55.369 +137400,126.84,54.366 +137401,133.34,57.3 +137402,130.92,56.327 +137403,128.33,55.322 +137404,125.54,54.281 +137405,132.02,57.325 +137406,129.61,56.316 +137407,127.03,55.275 +137408,124.25,54.196 +137409,130.71,57.349 +137410,128.31,56.305 +137411,125.74,55.228 +137412,122.95,54.112 +137413,129.39,57.372 +137414,127,56.294 +137415,124.44,55.181 +137416,121.66,54.029 +137417,128.07,57.394 +137418,125.7,56.283 +137419,123.15,55.135 +137420,120.37,53.947 +137421,126.75,57.415 +137422,124.39,56.271 +137423,121.85,55.089 +137424,119.09,53.866 +137425,125.43,57.436 +137426,123.09,56.259 +137427,120.56,55.043 +137428,117.8,53.785 +137429,124.11,57.455 +137430,121.78,56.246 +137431,119.26,54.998 +137432,116.52,53.706 +137433,122.78,57.474 +137434,120.47,56.234 +137435,117.97,54.953 +137436,115.24,53.627 +137437,121.46,57.492 +137438,119.16,56.22 +137439,116.68,54.908 +137440,113.97,53.549 +137441,120.13,57.509 +137442,117.85,56.207 +137443,115.39,54.863 +137444,112.69,53.472 +137445,118.8,57.524 +137446,116.54,56.193 +137447,114.1,54.819 +137448,111.42,53.397 +137449,117.47,57.539 +137450,115.23,56.179 +137451,112.81,54.775 +137452,110.15,53.322 +137453,116.13,57.553 +137454,113.92,56.165 +137455,111.52,54.732 +137456,108.88,53.249 +137457,114.8,57.565 +137458,112.61,56.15 +137459,110.23,54.689 +137460,107.61,53.176 +137461,113.46,57.577 +137462,111.3,56.135 +137463,108.94,54.646 +137464,106.35,53.105 +137465,112.13,57.587 +137466,109.99,56.119 +137467,107.65,54.604 +137468,105.08,53.034 +137469,110.79,57.597 +137470,108.67,56.103 +137471,106.37,54.562 +137472,103.82,52.965 +137473,109.45,57.605 +137474,107.36,56.087 +137475,105.08,54.52 +137476,102.57,52.898 +137477,108.1,57.612 +137478,106.05,56.07 +137479,103.8,54.479 +137480,101.31,52.831 +137481,106.76,57.618 +137482,104.73,56.053 +137483,102.51,54.438 +137484,100.06,52.766 +137485,105.41,57.622 +137486,103.42,56.036 +137487,101.23,54.397 +137488,98.805,52.702 +137489,104.07,57.625 +137490,102.1,56.018 +137491,99.945,54.357 +137492,97.555,52.639 +137493,102.72,57.628 +137494,100.79,55.999 +137495,98.662,54.318 +137496,96.307,52.577 +137497,101.37,57.628 +137498,99.469,55.98 +137499,97.38,54.279 +137500,95.061,52.517 +137501,100.02,57.628 +137502,98.152,55.961 +137503,96.099,54.24 +137504,93.817,52.459 +137505,98.666,57.626 +137506,96.835,55.941 +137507,94.818,54.202 +137508,92.574,52.401 +137509,97.313,57.623 +137510,95.517,55.921 +137511,93.538,54.164 +137512,91.334,52.345 +137513,95.958,57.619 +137514,94.199,55.901 +137515,92.259,54.126 +137516,90.095,52.291 +137517,94.602,57.613 +137518,92.881,55.879 +137519,90.98,54.09 +137520,88.859,52.237 +137521,93.245,57.606 +137522,91.562,55.858 +137523,89.701,54.053 +137524,87.624,52.186 +137525,91.886,57.598 +137526,90.243,55.836 +137527,88.424,54.017 +137528,86.39,52.135 +137529,90.527,57.588 +137530,88.923,55.813 +137531,87.146,53.982 +137532,85.159,52.087 +137533,89.166,57.577 +137534,87.603,55.79 +137535,85.87,53.947 +137536,83.929,52.039 +137537,87.804,57.564 +137538,86.283,55.767 +137539,84.594,53.912 +137540,82.7,51.993 +137541,86.441,57.551 +137542,84.962,55.743 +137543,83.318,53.878 +137544,81.474,51.949 +137545,85.077,57.535 +137546,83.641,55.719 +137547,82.043,53.844 +137548,80.248,51.906 +137549,83.712,57.518 +137550,82.319,55.694 +137551,80.768,53.811 +137552,79.025,51.865 +137553,82.346,57.5 +137554,80.997,55.668 +137555,79.494,53.779 +137556,77.802,51.825 +137557,80.979,57.48 +137558,79.675,55.642 +137559,78.22,53.747 +137560,76.581,51.787 +137561,79.611,57.459 +137562,78.353,55.616 +137563,76.947,53.715 +137564,75.361,51.751 +137565,78.242,57.437 +137566,77.03,55.589 +137567,75.674,53.684 +137568,74.143,51.716 +137569,76.872,57.413 +137570,75.707,55.562 +137571,74.402,53.653 +137572,72.926,51.682 +137573,75.501,57.387 +137574,74.384,55.534 +137575,73.13,53.623 +137576,71.71,51.65 +137577,74.13,57.36 +137578,73.061,55.506 +137579,71.858,53.594 +137580,70.495,51.62 +137581,72.757,57.332 +137582,71.737,55.477 +137583,70.587,53.565 +137584,69.281,51.591 +137585,71.384,57.302 +137586,70.413,55.447 +137587,69.316,53.536 +137588,68.069,51.564 +137589,70.011,57.271 +137590,69.089,55.417 +137591,68.046,53.508 +137592,66.857,51.538 +137593,68.636,57.238 +137594,67.764,55.387 +137595,66.775,53.481 +137596,65.646,51.514 +137597,67.261,57.204 +137598,66.44,55.356 +137599,65.506,53.454 +137600,64.436,51.492 +137601,65.885,57.168 +137602,65.115,55.325 +137603,64.236,53.427 +137604,63.227,51.471 +137605,64.509,57.131 +137606,63.79,55.293 +137607,62.967,53.401 +137608,62.019,51.451 +137609,63.132,57.092 +137610,62.465,55.26 +137611,61.698,53.376 +137612,60.811,51.434 +137613,61.755,57.052 +137614,61.14,55.227 +137615,60.429,53.351 +137616,59.604,51.417 +137617,60.377,57.01 +137618,59.815,55.194 +137619,59.161,53.326 +137620,58.398,51.403 +137621,58.998,56.967 +137622,58.489,55.16 +137623,57.892,53.302 +137624,57.192,51.39 +137625,57.619,56.922 +137626,57.164,55.126 +137627,56.624,53.279 +137628,55.987,51.378 +137629,56.24,56.876 +137630,55.838,55.091 +137631,55.357,53.256 +137632,54.782,51.368 +137633,54.861,56.829 +137634,54.512,55.055 +137635,54.089,53.233 +137636,53.577,51.359 +137637,53.481,56.78 +137638,53.187,55.019 +137639,52.821,53.211 +137640,52.373,51.352 +137641,52.1,56.729 +137642,51.861,54.983 +137643,51.554,53.19 +137644,51.169,51.347 +137645,50.72,56.677 +137646,50.535,54.946 +137647,50.287,53.169 +137648,49.966,51.343 +137649,49.339,56.624 +137650,49.209,54.909 +137651,49.02,53.148 +137652,48.762,51.34 +137653,47.959,56.569 +137654,47.883,54.871 +137655,47.753,53.128 +137656,47.559,51.339 +137657,46.578,56.513 +137658,46.558,54.833 +137659,46.486,53.109 +137660,46.355,51.339 +137661,45.196,56.456 +137662,45.232,54.794 +137663,45.219,53.089 +137664,45.152,51.341 +137665,43.815,56.397 +137666,43.906,54.755 +137667,43.953,53.071 +137668,43.948,51.344 +137669,42.434,56.337 +137670,42.58,54.715 +137671,42.686,53.053 +137672,42.745,51.349 +137673,41.053,56.275 +137674,41.255,54.675 +137675,41.419,53.035 +137676,41.541,51.355 +137677,39.672,56.212 +137678,39.929,54.634 +137679,40.153,53.018 +137680,40.337,51.362 +137681,38.291,56.148 +137682,38.604,54.593 +137683,38.886,53.001 +137684,39.133,51.371 +137685,36.91,56.083 +137686,37.279,54.551 +137687,37.619,52.984 +137688,37.928,51.381 +137689,35.529,56.016 +137690,35.953,54.51 +137691,36.353,52.969 +137692,36.723,51.392 +137693,34.148,55.948 +137694,34.628,54.467 +137695,35.086,52.953 +137696,35.518,51.405 +137697,32.768,55.878 +137698,33.304,54.424 +137699,33.819,52.938 +137700,34.312,51.418 +137701,31.388,55.808 +137702,31.979,54.381 +137703,32.552,52.923 +137704,33.105,51.433 +137705,30.008,55.736 +137706,30.654,54.338 +137707,31.285,52.909 +137708,31.898,51.45 +137709,28.628,55.663 +137710,29.33,54.294 +137711,30.018,52.895 +137712,30.69,51.467 +137713,27.249,55.588 +137714,28.006,54.249 +137715,28.75,52.881 +137716,29.482,51.486 +137717,25.871,55.513 +137718,26.682,54.204 +137719,27.483,52.868 +137720,28.273,51.505 +137721,24.492,55.436 +137722,25.358,54.159 +137723,26.215,52.856 +137724,27.063,51.526 +137725,23.115,55.359 +137726,24.035,54.114 +137727,24.948,52.843 +137728,25.852,51.548 +137729,21.737,55.28 +137730,22.712,54.068 +137731,23.68,52.831 +137732,24.641,51.571 +137733,20.361,55.2 +137734,21.389,54.021 +137735,22.412,52.82 +137736,23.428,51.595 +137737,18.985,55.119 +137738,20.067,53.975 +137739,21.143,52.808 +137740,22.215,51.62 +137741,17.609,55.037 +137742,18.744,53.928 +137743,19.874,52.797 +137744,21,51.646 +137745,16.235,54.954 +137746,17.423,53.881 +137747,18.606,52.787 +137748,19.785,51.673 +137749,14.861,54.87 +137750,16.101,53.833 +137751,17.336,52.776 +137752,18.568,51.7 +137753,13.487,54.785 +137754,14.78,53.785 +137755,16.067,52.766 +137756,17.35,51.729 +137757,12.115,54.699 +137758,13.459,53.737 +137759,14.797,52.756 +137760,16.131,51.758 +137761,10.743,54.612 +137762,12.139,53.688 +137763,13.527,52.747 +137764,14.911,51.789 +137765,9.3726,54.524 +137766,10.818,53.64 +137767,12.257,52.738 +137768,13.69,51.82 +137769,8.0028,54.436 +137770,9.4988,53.591 +137771,10.986,52.729 +137772,12.467,51.852 +137773,6.6339,54.346 +137774,8.1796,53.541 +137775,9.7155,52.72 +137776,11.243,51.884 +137777,5.266,54.256 +137778,6.8608,53.492 +137779,8.4442,52.712 +137780,10.018,51.917 +137781,3.8992,54.165 +137782,5.5424,53.442 +137783,7.1725,52.703 +137784,8.791,51.951 +137785,2.5334,54.074 +137786,4.2245,53.392 +137787,5.9004,52.695 +137788,7.5629,51.986 +137789,1.1687,53.981 +137790,2.9071,53.342 +137791,4.628,52.688 +137792,6.3334,52.021 +137793,359.81,53.888 +137794,1.5901,53.291 +137795,3.3551,52.68 +137796,5.1024,52.056 +137797,358.44,53.794 +137798,0.27368,53.24 +137799,2.0819,52.673 +137800,3.8698,52.092 +137801,357.08,53.7 +137802,358.96,53.19 +137803,0.80822,52.665 +137804,2.6358,52.129 +137805,355.72,53.605 +137806,357.64,53.139 +137807,359.53,52.658 +137808,1.4002,52.166 +137809,354.36,53.51 +137810,356.33,53.087 +137811,358.26,52.651 +137812,0.16302,52.204 +137813,353.01,53.414 +137814,355.01,53.036 +137815,356.98,52.645 +137816,358.92,52.241 +137817,351.65,53.317 +137818,353.7,52.984 +137819,355.71,52.638 +137820,357.68,52.28 +137821,350.3,53.22 +137822,352.39,52.933 +137823,354.43,52.631 +137824,356.44,52.318 +137825,348.94,53.123 +137826,351.07,52.881 +137827,353.16,52.625 +137828,355.2,52.357 +137829,347.59,53.025 +137830,349.76,52.829 +137831,351.88,52.619 +137832,353.95,52.396 +137833,346.24,52.927 +137834,348.45,52.777 +137835,350.6,52.613 +137836,352.71,52.435 +137837,344.89,52.829 +137838,347.14,52.725 +137839,349.32,52.606 +137840,351.46,52.475 +137841,343.54,52.73 +137842,345.83,52.673 +137843,348.05,52.6 +137844,350.21,52.514 +137845,342.2,52.632 +137846,344.52,52.621 +137847,346.77,52.594 +137848,348.95,52.554 +137849,340.86,52.533 +137850,343.21,52.569 +137851,345.49,52.588 +137852,347.7,52.594 +137853,339.51,52.433 +137854,341.9,52.517 +137855,344.21,52.582 +137856,346.44,52.633 +137857,338.17,52.334 +137858,340.59,52.464 +137859,342.93,52.576 +137860,345.19,52.673 +137861,336.83,52.235 +137862,339.29,52.412 +137863,341.65,52.57 +137864,343.93,52.713 +137865,335.5,52.135 +137866,337.98,52.36 +137867,340.37,52.565 +137868,342.67,52.752 +137869,334.16,52.036 +137870,336.67,52.307 +137871,339.08,52.559 +137872,341.4,52.792 +137873,332.83,51.936 +137874,335.37,52.255 +137875,337.8,52.553 +137876,340.14,52.831 +137877,331.5,51.837 +137878,334.06,52.203 +137879,336.52,52.547 +137880,338.87,52.87 +137881,330.17,51.738 +137882,332.76,52.151 +137883,335.23,52.54 +137884,337.6,52.909 +137885,328.84,51.638 +137886,331.46,52.099 +137887,333.95,52.534 +137888,336.33,52.948 +137889,327.51,51.539 +137890,330.16,52.047 +137891,332.66,52.528 +137892,335.06,52.986 +137893,326.19,51.441 +137894,328.85,51.995 +137895,331.38,52.522 +137896,333.79,53.024 +137897,324.87,51.342 +137898,327.55,51.943 +137899,330.09,52.515 +137900,332.51,53.062 +137901,323.55,51.244 +137902,326.25,51.891 +137903,328.81,52.509 +137904,331.23,53.099 +137905,322.23,51.146 +137906,324.95,51.84 +137907,327.52,52.502 +137908,329.95,53.136 +137909,320.92,51.049 +137910,323.66,51.788 +137911,326.23,52.495 +137912,328.67,53.172 +137913,319.6,50.952 +137914,322.36,51.737 +137915,324.94,52.488 +137916,327.39,53.208 +137917,318.29,50.855 +137918,321.06,51.686 +137919,323.65,52.481 +137920,326.1,53.244 +137921,316.98,50.759 +137922,319.76,51.635 +137923,322.36,52.474 +137924,324.81,53.279 +137925,315.68,50.663 +137926,318.47,51.584 +137927,321.07,52.466 +137928,323.53,53.313 +137929,314.37,50.568 +137930,317.17,51.534 +137931,319.78,52.458 +137932,322.24,53.347 +137933,313.07,50.474 +137934,315.88,51.484 +137935,318.49,52.45 +137936,320.94,53.38 +137937,311.77,50.38 +137938,314.59,51.434 +137939,317.2,52.442 +137940,319.65,53.412 +137941,310.47,50.287 +137942,313.29,51.384 +137943,315.91,52.434 +137944,318.35,53.444 +137945,309.17,50.195 +137946,312,51.334 +137947,314.62,52.425 +137948,317.05,53.474 +137949,307.88,50.103 +137950,310.71,51.285 +137951,313.32,52.417 +137952,315.75,53.504 +137953,306.59,50.012 +137954,309.42,51.236 +137955,312.03,52.407 +137956,314.45,53.534 +137957,305.3,49.922 +137958,308.13,51.187 +137959,310.73,52.398 +137960,313.15,53.562 +137961,304.01,49.833 +137962,306.84,51.138 +137963,309.44,52.388 +137964,311.84,53.59 +137965,302.73,49.745 +137966,305.55,51.09 +137967,308.14,52.379 +137968,310.54,53.617 +137969,301.44,49.657 +137970,304.27,51.042 +137971,306.85,52.368 +137972,309.23,53.642 +137973,300.16,49.571 +137974,302.98,50.995 +137975,305.55,52.358 +137976,307.92,53.667 +137977,298.89,49.485 +137978,301.69,50.948 +137979,304.25,52.347 +137980,306.61,53.691 +137981,297.61,49.401 +137982,300.41,50.901 +137983,302.95,52.336 +137984,305.29,53.714 +137985,296.34,49.318 +137986,299.12,50.854 +137987,301.65,52.324 +137988,303.98,53.736 +137989,295.07,49.236 +137990,297.84,50.808 +137991,300.35,52.312 +137992,302.66,53.757 +137993,293.8,49.155 +137994,296.56,50.762 +137995,299.05,52.3 +137996,301.34,53.776 +137997,292.53,49.075 +137998,295.28,50.717 +137999,297.75,52.287 +138000,300.02,53.795 +138001,291.27,48.996 +138002,293.99,50.672 +138003,296.45,52.274 +138004,298.7,53.812 +138005,290.01,48.919 +138006,292.71,50.627 +138007,295.15,52.261 +138008,297.37,53.829 +138009,288.75,48.843 +138010,291.43,50.583 +138011,293.85,52.247 +138012,296.05,53.844 +138013,287.49,48.768 +138014,290.15,50.54 +138015,292.55,52.233 +138016,294.72,53.858 +138017,286.23,48.694 +138018,288.88,50.496 +138019,291.24,52.218 +138020,293.39,53.871 +138021,284.98,48.622 +138022,287.6,50.454 +138023,289.94,52.204 +138024,292.06,53.882 +138025,283.73,48.551 +138026,286.32,50.411 +138027,288.64,52.188 +138028,290.73,53.893 +138029,282.48,48.482 +138030,285.05,50.369 +138031,287.33,52.172 +138032,289.4,53.902 +138033,281.24,48.414 +138034,283.77,50.328 +138035,286.03,52.156 +138036,288.06,53.909 +138037,279.99,48.348 +138038,282.5,50.287 +138039,284.72,52.139 +138040,286.73,53.916 +138041,278.75,48.283 +138042,281.22,50.246 +138043,283.42,52.122 +138044,285.39,53.921 +138045,277.51,48.219 +138046,279.95,50.207 +138047,282.11,52.104 +138048,284.05,53.925 +138049,276.27,48.157 +138050,278.68,50.167 +138051,280.8,52.086 +138052,282.71,53.927 +138053,275.04,48.097 +138054,277.4,50.128 +138055,279.5,52.068 +138056,281.37,53.928 +138057,273.8,48.038 +138058,276.13,50.09 +138059,278.19,52.049 +138060,280.03,53.927 +138061,272.57,47.981 +138062,274.86,50.052 +138063,276.88,52.029 +138064,278.69,53.926 +138065,271.34,47.925 +138066,273.59,50.014 +138067,275.57,52.009 +138068,277.34,53.922 +138069,270.11,47.871 +138070,272.32,49.977 +138071,274.26,51.989 +138072,275.99,53.918 +138073,268.89,47.819 +138074,271.05,49.941 +138075,272.95,51.968 +138076,274.65,53.911 +138077,267.66,47.768 +138078,269.78,49.905 +138079,271.64,51.946 +138080,273.3,53.904 +138081,266.44,47.719 +138082,268.52,49.87 +138083,270.33,51.924 +138084,271.95,53.895 +138085,265.22,47.672 +138086,267.25,49.835 +138087,269.02,51.902 +138088,270.6,53.884 +138089,264,47.626 +138090,265.98,49.801 +138091,267.71,51.879 +138092,269.25,53.872 +138093,262.78,47.582 +138094,264.72,49.768 +138095,266.4,51.855 +138096,267.89,53.858 +138097,261.57,47.54 +138098,263.45,49.734 +138099,265.09,51.831 +138100,266.54,53.843 +138101,260.35,47.499 +138102,262.18,49.702 +138103,263.78,51.807 +138104,265.18,53.826 +138105,259.14,47.461 +138106,260.92,49.67 +138107,262.47,51.782 +138108,263.83,53.808 +138109,257.93,47.424 +138110,259.66,49.639 +138111,261.15,51.756 +138112,262.47,53.788 +138113,256.72,47.389 +138114,258.39,49.608 +138115,259.84,51.73 +138116,261.11,53.767 +138117,255.51,47.355 +138118,257.13,49.578 +138119,258.53,51.704 +138120,259.75,53.744 +138121,254.31,47.324 +138122,255.87,49.548 +138123,257.21,51.676 +138124,258.39,53.719 +138125,253.1,47.294 +138126,254.6,49.519 +138127,255.9,51.649 +138128,257.03,53.693 +138129,251.9,47.266 +138130,253.34,49.491 +138131,254.59,51.62 +138132,255.67,53.666 +138133,250.69,47.239 +138134,252.08,49.463 +138135,253.27,51.592 +138136,254.31,53.636 +138137,249.49,47.215 +138138,250.82,49.436 +138139,251.96,51.562 +138140,252.95,53.606 +138141,248.29,47.192 +138142,249.56,49.409 +138143,250.64,51.532 +138144,251.58,53.573 +138145,247.09,47.171 +138146,248.3,49.383 +138147,249.33,51.502 +138148,250.22,53.539 +138149,245.89,47.152 +138150,247.04,49.357 +138151,248.02,51.471 +138152,248.86,53.504 +138153,244.7,47.135 +138154,245.78,49.333 +138155,246.7,51.44 +138156,247.49,53.466 +138157,243.5,47.119 +138158,244.52,49.308 +138159,245.39,51.408 +138160,246.12,53.428 +138161,242.3,47.105 +138162,243.26,49.284 +138163,244.07,51.375 +138164,244.76,53.387 +138165,241.11,47.093 +138166,242,49.261 +138167,242.76,51.342 +138168,243.39,53.346 +138169,239.91,47.083 +138170,240.75,49.239 +138171,241.44,51.309 +138172,242.02,53.302 +138173,238.72,47.074 +138174,239.49,49.217 +138175,240.12,51.275 +138176,240.66,53.257 +138177,237.52,47.068 +138178,238.23,49.195 +138179,238.81,51.24 +138180,239.29,53.21 +138181,236.33,47.063 +138182,236.97,49.174 +138183,237.49,51.205 +138184,237.92,53.162 +138185,235.14,47.059 +138186,235.71,49.154 +138187,236.18,51.169 +138188,236.55,53.113 +138189,233.95,47.057 +138190,234.46,49.134 +138191,234.86,51.133 +138192,235.18,53.061 +138193,232.75,47.057 +138194,233.2,49.115 +138195,233.55,51.096 +138196,233.81,53.009 +138197,231.56,47.059 +138198,231.94,49.096 +138199,232.23,51.059 +138200,232.44,52.954 +138201,230.37,47.062 +138202,230.69,49.078 +138203,230.91,51.021 +138204,231.07,52.898 +138205,229.18,47.067 +138206,229.43,49.061 +138207,229.6,50.983 +138208,229.7,52.841 +138209,227.99,47.074 +138210,228.17,49.044 +138211,228.28,50.944 +138212,228.33,52.782 +138213,226.8,47.082 +138214,226.92,49.027 +138215,226.97,50.905 +138216,226.96,52.722 +138217,225.61,47.092 +138218,225.66,49.011 +138219,225.65,50.866 +138220,225.59,52.66 +138221,224.41,47.103 +138222,224.4,48.996 +138223,224.34,50.825 +138224,224.22,52.597 +138225,223.22,47.116 +138226,223.15,48.981 +138227,223.02,50.785 +138228,222.85,52.532 +138229,222.03,47.13 +138230,221.89,48.966 +138231,221.71,50.744 +138232,221.48,52.466 +138233,220.84,47.146 +138234,220.64,48.953 +138235,220.39,50.702 +138236,220.11,52.398 +138237,219.64,47.163 +138238,219.38,48.939 +138239,219.08,50.66 +138240,218.74,52.329 +138241,218.45,47.182 +138242,218.12,48.926 +138243,217.76,50.618 +138244,217.37,52.259 +138245,217.26,47.202 +138246,216.87,48.914 +138247,216.45,50.575 +138248,216,52.187 +138249,216.06,47.223 +138250,215.61,48.902 +138251,215.13,50.531 +138252,214.63,52.114 +138253,214.87,47.246 +138254,214.35,48.89 +138255,213.82,50.488 +138256,213.26,52.04 +138257,213.67,47.27 +138258,213.1,48.879 +138259,212.5,50.443 +138260,211.89,51.964 +138261,212.48,47.296 +138262,211.84,48.869 +138263,211.19,50.399 +138264,210.53,51.887 +138265,211.28,47.322 +138266,210.58,48.859 +138267,209.88,50.354 +138268,209.16,51.808 +138269,210.08,47.35 +138270,209.33,48.849 +138271,208.56,50.308 +138272,207.79,51.729 +138273,208.89,47.38 +138274,208.07,48.84 +138275,207.25,50.262 +138276,206.42,51.648 +138277,207.69,47.41 +138278,206.81,48.831 +138279,205.94,50.216 +138280,205.06,51.566 +138281,206.49,47.442 +138282,205.56,48.823 +138283,204.62,50.17 +138284,203.69,51.483 +138285,205.29,47.474 +138286,204.3,48.815 +138287,203.31,50.123 +138288,202.33,51.398 +138289,204.08,47.508 +138290,203.04,48.807 +138291,202,50.075 +138292,200.96,51.313 +138293,202.88,47.543 +138294,201.78,48.8 +138295,200.69,50.028 +138296,199.6,51.226 +138297,201.68,47.579 +138298,200.52,48.793 +138299,199.38,49.98 +138300,198.23,51.139 +138301,200.47,47.615 +138302,199.27,48.786 +138303,198.07,49.931 +138304,196.87,51.05 +138305,199.27,47.653 +138306,198.01,48.78 +138307,196.76,49.883 +138308,195.51,50.96 +138309,198.06,47.692 +138310,196.75,48.774 +138311,195.45,49.834 +138312,194.15,50.869 +138313,196.85,47.731 +138314,195.49,48.769 +138315,194.14,49.784 +138316,192.79,50.778 +138317,195.64,47.772 +138318,194.23,48.764 +138319,192.83,49.735 +138320,191.43,50.685 +138321,194.43,47.813 +138322,192.97,48.759 +138323,191.52,49.685 +138324,190.07,50.591 +138325,193.21,47.855 +138326,191.71,48.754 +138327,190.21,49.635 +138328,188.71,50.497 +138329,192,47.897 +138330,190.45,48.75 +138331,188.9,49.585 +138332,187.36,50.401 +138333,190.78,47.941 +138334,189.19,48.746 +138335,187.59,49.534 +138336,186,50.305 +138337,189.57,47.985 +138338,187.93,48.742 +138339,186.29,49.483 +138340,184.65,50.208 +138341,188.35,48.029 +138342,186.66,48.738 +138343,184.98,49.432 +138344,183.29,50.111 +138345,187.13,48.074 +138346,185.4,48.735 +138347,183.67,49.381 +138348,181.94,50.012 +138349,185.91,48.12 +138350,184.14,48.732 +138351,182.37,49.33 +138352,180.59,49.913 +138353,184.68,48.166 +138354,182.88,48.729 +138355,181.06,49.278 +138356,179.24,49.813 +138357,183.46,48.213 +138358,181.61,48.726 +138359,179.76,49.226 +138360,177.89,49.713 +138361,182.23,48.26 +138362,180.35,48.724 +138363,178.45,49.175 +138364,176.54,49.612 +138365,181,48.308 +138366,179.08,48.721 +138367,177.15,49.123 +138368,175.2,49.51 +138369,179.77,48.356 +138370,177.82,48.719 +138371,175.85,49.07 +138372,173.85,49.408 +138373,178.54,48.404 +138374,176.55,48.717 +138375,174.55,49.018 +138376,172.51,49.306 +138377,177.31,48.452 +138378,175.29,48.715 +138379,173.24,48.966 +138380,171.17,49.203 +138381,176.07,48.501 +138382,174.02,48.713 +138383,171.94,48.913 +138384,169.83,49.099 +138385,174.83,48.55 +138386,172.76,48.711 +138387,170.64,48.861 +138388,168.49,48.996 +138389,173.59,48.599 +138390,171.49,48.71 +138391,169.34,48.808 +138392,167.15,48.891 +138393,172.35,48.648 +138394,170.22,48.708 +138395,168.04,48.755 +138396,165.82,48.787 +138397,171.11,48.697 +138398,168.95,48.707 +138399,166.75,48.703 +138400,164.48,48.683 +138401,169.87,48.746 +138402,167.68,48.705 +138403,165.45,48.65 +138404,163.15,48.578 +138405,168.62,48.795 +138406,166.41,48.704 +138407,164.15,48.597 +138408,161.82,48.473 +138409,167.37,48.845 +138410,165.14,48.703 +138411,162.85,48.544 +138412,160.49,48.368 +138413,166.12,48.894 +138414,163.87,48.701 +138415,161.56,48.492 +138416,159.16,48.263 +138417,164.87,48.943 +138418,162.6,48.7 +138419,160.26,48.439 +138420,157.84,48.157 +138421,163.62,48.992 +138422,161.33,48.699 +138423,158.97,48.386 +138424,156.51,48.052 +138425,162.36,49.04 +138426,160.06,48.697 +138427,157.67,48.334 +138428,155.19,47.947 +138429,161.11,49.089 +138430,158.79,48.696 +138431,156.38,48.281 +138432,153.87,47.842 +138433,159.85,49.137 +138434,157.51,48.694 +138435,155.09,48.229 +138436,152.55,47.737 +138437,158.58,49.185 +138438,156.24,48.693 +138439,153.8,48.176 +138440,151.24,47.632 +138441,157.32,49.232 +138442,154.97,48.691 +138443,152.51,48.124 +138444,149.92,47.528 +138445,156.06,49.279 +138446,153.69,48.69 +138447,151.22,48.072 +138448,148.61,47.423 +138449,154.79,49.326 +138450,152.42,48.688 +138451,149.93,48.02 +138452,147.3,47.319 +138453,153.52,49.372 +138454,151.14,48.686 +138455,148.64,47.968 +138456,145.99,47.216 +138457,152.25,49.418 +138458,149.86,48.684 +138459,147.35,47.917 +138460,144.69,47.112 +138461,150.98,49.463 +138462,148.59,48.682 +138463,146.06,47.865 +138464,143.38,47.01 +138465,149.71,49.508 +138466,147.31,48.679 +138467,144.78,47.814 +138468,142.08,46.907 +138469,148.43,49.552 +138470,146.03,48.677 +138471,143.49,47.763 +138472,140.78,46.805 +138473,147.15,49.595 +138474,144.75,48.674 +138475,142.21,47.712 +138476,139.48,46.704 +138477,145.87,49.638 +138478,143.47,48.671 +138479,140.92,47.662 +138480,138.19,46.603 +138481,144.59,49.68 +138482,142.19,48.668 +138483,139.64,47.611 +138484,136.89,46.503 +138485,143.31,49.721 +138486,140.91,48.665 +138487,138.36,47.561 +138488,135.6,46.404 +138489,142.02,49.762 +138490,139.63,48.661 +138491,137.07,47.511 +138492,134.31,46.305 +138493,140.73,49.802 +138494,138.35,48.658 +138495,135.79,47.462 +138496,133.03,46.207 +138497,139.45,49.841 +138498,137.07,48.654 +138499,134.51,47.413 +138500,131.74,46.11 +138501,138.16,49.879 +138502,135.79,48.649 +138503,133.23,47.364 +138504,130.46,46.014 +138505,136.86,49.916 +138506,134.5,48.645 +138507,131.95,47.315 +138508,129.18,45.918 +138509,135.57,49.952 +138510,133.22,48.64 +138511,130.68,47.267 +138512,127.9,45.824 +138513,134.27,49.988 +138514,131.93,48.635 +138515,129.4,47.219 +138516,126.63,45.731 +138517,132.97,50.022 +138518,130.65,48.63 +138519,128.12,47.172 +138520,125.35,45.638 +138521,131.68,50.056 +138522,129.36,48.624 +138523,126.85,47.124 +138524,124.08,45.547 +138525,130.37,50.088 +138526,128.08,48.618 +138527,125.57,47.078 +138528,122.81,45.456 +138529,129.07,50.119 +138530,126.79,48.612 +138531,124.3,47.031 +138532,121.55,45.367 +138533,127.77,50.149 +138534,125.5,48.605 +138535,123.03,46.985 +138536,120.28,45.279 +138537,126.46,50.178 +138538,124.22,48.598 +138539,121.75,46.94 +138540,119.02,45.193 +138541,125.15,50.206 +138542,122.93,48.59 +138543,120.48,46.895 +138544,117.76,45.107 +138545,123.84,50.233 +138546,121.64,48.583 +138547,119.21,46.85 +138548,116.51,45.023 +138549,122.53,50.258 +138550,120.35,48.574 +138551,117.94,46.806 +138552,115.25,44.94 +138553,121.22,50.283 +138554,119.06,48.566 +138555,116.67,46.762 +138556,114,44.859 +138557,119.91,50.306 +138558,117.77,48.557 +138559,115.4,46.719 +138560,112.75,44.779 +138561,118.59,50.327 +138562,116.48,48.547 +138563,114.14,46.677 +138564,111.5,44.7 +138565,117.27,50.348 +138566,115.19,48.538 +138567,112.87,46.634 +138568,110.26,44.623 +138569,115.96,50.367 +138570,113.89,48.527 +138571,111.6,46.593 +138572,109.01,44.547 +138573,114.64,50.385 +138574,112.6,48.517 +138575,110.34,46.552 +138576,107.77,44.473 +138577,113.32,50.401 +138578,111.31,48.505 +138579,109.07,46.511 +138580,106.53,44.4 +138581,111.99,50.416 +138582,110.02,48.494 +138583,107.81,46.471 +138584,105.3,44.329 +138585,110.67,50.43 +138586,108.72,48.482 +138587,106.54,46.431 +138588,104.06,44.26 +138589,109.34,50.442 +138590,107.43,48.469 +138591,105.28,46.392 +138592,102.83,44.192 +138593,108.02,50.453 +138594,106.13,48.456 +138595,104.02,46.354 +138596,101.6,44.127 +138597,106.69,50.462 +138598,104.84,48.443 +138599,102.76,46.316 +138600,100.38,44.062 +138601,105.36,50.47 +138602,103.54,48.429 +138603,101.5,46.279 +138604,99.15,44 +138605,104.03,50.477 +138606,102.25,48.415 +138607,100.24,46.242 +138608,97.926,43.939 +138609,102.7,50.482 +138610,100.95,48.4 +138611,98.977,46.206 +138612,96.705,43.88 +138613,101.36,50.485 +138614,99.654,48.384 +138615,97.718,46.17 +138616,95.486,43.823 +138617,100.03,50.487 +138618,98.357,48.368 +138619,96.46,46.136 +138620,94.268,43.768 +138621,98.693,50.487 +138622,97.059,48.352 +138623,95.203,46.101 +138624,93.053,43.714 +138625,97.356,50.486 +138626,95.761,48.335 +138627,93.946,46.068 +138628,91.84,43.663 +138629,96.019,50.483 +138630,94.463,48.317 +138631,92.69,46.035 +138632,90.628,43.613 +138633,94.68,50.478 +138634,93.165,48.299 +138635,91.434,46.002 +138636,89.419,43.565 +138637,93.34,50.472 +138638,91.866,48.281 +138639,90.179,45.97 +138640,88.211,43.52 +138641,92,50.464 +138642,90.567,48.262 +138643,88.924,45.939 +138644,87.004,43.476 +138645,90.658,50.455 +138646,89.267,48.242 +138647,87.67,45.909 +138648,85.8,43.434 +138649,89.315,50.444 +138650,87.968,48.222 +138651,86.416,45.879 +138652,84.597,43.394 +138653,87.972,50.431 +138654,86.668,48.201 +138655,85.163,45.85 +138656,83.396,43.356 +138657,86.627,50.417 +138658,85.367,48.18 +138659,83.911,45.822 +138660,82.196,43.32 +138661,85.282,50.401 +138662,84.067,48.158 +138663,82.659,45.794 +138664,80.998,43.286 +138665,83.936,50.383 +138666,82.766,48.135 +138667,81.407,45.767 +138668,79.802,43.254 +138669,82.589,50.364 +138670,81.465,48.113 +138671,80.156,45.74 +138672,78.606,43.225 +138673,81.242,50.343 +138674,80.163,48.089 +138675,78.906,45.714 +138676,77.412,43.197 +138677,79.894,50.321 +138678,78.862,48.065 +138679,77.656,45.689 +138680,76.22,43.171 +138681,78.545,50.296 +138682,77.56,48.04 +138683,76.406,45.665 +138684,75.028,43.147 +138685,77.195,50.27 +138686,76.258,48.015 +138687,75.157,45.641 +138688,73.838,43.125 +138689,75.845,50.243 +138690,74.956,47.989 +138691,73.908,45.618 +138692,72.649,43.106 +138693,74.494,50.213 +138694,73.654,47.963 +138695,72.659,45.595 +138696,71.461,43.088 +138697,73.143,50.182 +138698,72.352,47.936 +138699,71.411,45.573 +138700,70.274,43.073 +138701,71.791,50.149 +138702,71.049,47.909 +138703,70.163,45.552 +138704,69.088,43.059 +138705,70.439,50.115 +138706,69.747,47.881 +138707,68.915,45.532 +138708,67.903,43.047 +138709,69.086,50.079 +138710,68.444,47.852 +138711,67.668,45.512 +138712,66.718,43.038 +138713,67.733,50.041 +138714,67.141,47.823 +138715,66.421,45.493 +138716,65.534,43.03 +138717,66.379,50.001 +138718,65.838,47.794 +138719,65.174,45.474 +138720,64.351,43.025 +138721,65.026,49.96 +138722,64.535,47.764 +138723,63.928,45.457 +138724,63.169,43.021 +138725,63.671,49.917 +138726,63.232,47.733 +138727,62.682,45.439 +138728,61.987,43.02 +138729,62.317,49.873 +138730,61.929,47.701 +138731,61.436,45.423 +138732,60.806,43.02 +138733,60.962,49.827 +138734,60.626,47.67 +138735,60.19,45.407 +138736,59.625,43.023 +138737,59.607,49.779 +138738,59.323,47.637 +138739,58.944,45.392 +138740,58.444,43.027 +138741,58.252,49.729 +138742,58.02,47.604 +138743,57.699,45.378 +138744,57.264,43.033 +138745,56.897,49.678 +138746,56.717,47.571 +138747,56.454,45.364 +138748,56.083,43.041 +138749,55.542,49.625 +138750,55.414,47.537 +138751,55.209,45.35 +138752,54.903,43.051 +138753,54.186,49.571 +138754,54.111,47.502 +138755,53.964,45.338 +138756,53.723,43.063 +138757,52.831,49.515 +138758,52.808,47.467 +138759,52.719,45.326 +138760,52.544,43.077 +138761,51.475,49.457 +138762,51.505,47.432 +138763,51.474,45.315 +138764,51.364,43.093 +138765,50.12,49.398 +138766,50.203,47.396 +138767,50.229,45.304 +138768,50.184,43.11 +138769,48.765,49.337 +138770,48.9,47.359 +138771,48.984,45.294 +138772,49.004,43.129 +138773,47.41,49.275 +138774,47.598,47.322 +138775,47.74,45.284 +138776,47.823,43.15 +138777,46.055,49.211 +138778,46.295,47.285 +138779,46.495,45.275 +138780,46.642,43.173 +138781,44.7,49.146 +138782,44.993,47.247 +138783,45.25,45.267 +138784,45.461,43.197 +138785,43.345,49.079 +138786,43.691,47.208 +138787,44.005,45.259 +138788,44.28,43.223 +138789,41.991,49.011 +138790,42.389,47.169 +138791,42.761,45.252 +138792,43.098,43.251 +138793,40.637,48.941 +138794,41.088,47.13 +138795,41.516,45.245 +138796,41.916,43.28 +138797,39.283,48.869 +138798,39.786,47.09 +138799,40.271,45.239 +138800,40.733,43.311 +138801,37.929,48.797 +138802,38.485,47.049 +138803,39.026,45.234 +138804,39.549,43.344 +138805,36.576,48.722 +138806,37.184,47.008 +138807,37.781,45.229 +138808,38.364,43.378 +138809,35.224,48.647 +138810,35.883,46.967 +138811,36.536,45.225 +138812,37.179,43.413 +138813,33.872,48.57 +138814,34.583,46.926 +138815,35.29,45.221 +138816,35.993,43.45 +138817,32.52,48.491 +138818,33.282,46.883 +138819,34.045,45.217 +138820,34.807,43.488 +138821,31.169,48.412 +138822,31.982,46.841 +138823,32.799,45.214 +138824,33.619,43.528 +138825,29.819,48.331 +138826,30.683,46.798 +138827,31.553,45.212 +138828,32.43,43.569 +138829,28.469,48.248 +138830,29.384,46.755 +138831,30.307,45.21 +138832,31.24,43.612 +138833,27.12,48.165 +138834,28.085,46.711 +138835,29.061,45.209 +138836,30.05,43.655 +138837,25.771,48.08 +138838,26.786,46.667 +138839,27.814,45.208 +138840,28.858,43.7 +138841,24.423,47.994 +138842,25.488,46.622 +138843,26.568,45.207 +138844,27.664,43.746 +138845,23.076,47.907 +138846,24.19,46.578 +138847,25.321,45.207 +138848,26.47,43.793 +138849,21.73,47.818 +138850,22.892,46.533 +138851,24.073,45.208 +138852,25.275,43.842 +138853,20.385,47.729 +138854,21.595,46.487 +138855,22.826,45.208 +138856,24.078,43.891 +138857,19.04,47.638 +138858,20.299,46.441 +138859,21.578,45.209 +138860,22.88,43.942 +138861,17.696,47.547 +138862,19.002,46.395 +138863,20.329,45.211 +138864,21.68,43.993 +138865,16.354,47.454 +138866,17.706,46.349 +138867,19.081,45.213 +138868,20.479,44.046 +138869,15.012,47.36 +138870,16.411,46.302 +138871,17.832,45.215 +138872,19.277,44.099 +138873,13.671,47.265 +138874,15.116,46.255 +138875,16.583,45.218 +138876,18.073,44.153 +138877,12.331,47.17 +138878,13.822,46.208 +138879,15.333,45.221 +138880,16.868,44.208 +138881,10.993,47.073 +138882,12.528,46.161 +138883,14.083,45.224 +138884,15.661,44.264 +138885,9.6554,46.976 +138886,11.234,46.113 +138887,12.833,45.228 +138888,14.452,44.321 +138889,8.3191,46.877 +138890,9.9415,46.065 +138891,11.582,45.232 +138892,13.242,44.378 +138893,6.9839,46.778 +138894,8.6491,46.017 +138895,10.331,45.236 +138896,12.03,44.436 +138897,5.65,46.678 +138898,7.3572,45.969 +138899,9.0791,45.241 +138900,10.817,44.495 +138901,4.3173,46.578 +138902,6.0659,45.92 +138903,7.827,45.245 +138904,9.6019,44.554 +138905,2.9859,46.476 +138906,4.7751,45.871 +138907,6.5745,45.25 +138908,8.3851,44.614 +138909,1.6558,46.374 +138910,3.4849,45.823 +138911,5.3215,45.256 +138912,7.1666,44.674 +138913,0.3271,46.272 +138914,2.1953,45.774 +138915,4.0681,45.261 +138916,5.9463,44.735 +138917,359,46.168 +138918,0.90631,45.725 +138919,2.8142,45.267 +138920,4.7243,44.796 +138921,357.67,46.065 +138922,359.62,45.675 +138923,1.5598,45.273 +138924,3.5005,44.857 +138925,356.35,45.96 +138926,358.33,45.626 +138927,0.30489,45.279 +138928,2.2749,44.919 +138929,355.03,45.856 +138930,357.04,45.577 +138931,359.05,45.285 +138932,1.0474,44.981 +138933,353.71,45.75 +138934,355.76,45.527 +138935,357.79,45.291 +138936,359.82,45.043 +138937,352.39,45.645 +138938,354.47,45.478 +138939,356.54,45.298 +138940,358.59,45.106 +138941,351.07,45.539 +138942,353.19,45.428 +138943,355.28,45.304 +138944,357.35,45.169 +138945,349.75,45.432 +138946,351.9,45.378 +138947,354.02,45.311 +138948,356.12,45.231 +138949,348.44,45.326 +138950,350.62,45.329 +138951,352.76,45.318 +138952,354.88,45.294 +138953,347.12,45.219 +138954,349.33,45.279 +138955,351.51,45.325 +138956,353.64,45.357 +138957,345.81,45.112 +138958,348.05,45.229 +138959,350.25,45.332 +138960,352.4,45.42 +138961,344.5,45.005 +138962,346.77,45.18 +138963,348.99,45.339 +138964,351.16,45.483 +138965,343.19,44.898 +138966,345.49,45.13 +138967,347.73,45.346 +138968,349.92,45.545 +138969,341.89,44.791 +138970,344.21,45.081 +138971,346.47,45.353 +138972,348.67,45.608 +138973,340.58,44.683 +138974,342.93,45.031 +138975,345.21,45.36 +138976,347.42,45.67 +138977,339.28,44.576 +138978,341.65,44.982 +138979,343.94,45.367 +138980,346.17,45.732 +138981,337.98,44.469 +138982,340.37,44.933 +138983,342.68,45.374 +138984,344.92,45.794 +138985,336.68,44.362 +138986,339.09,44.884 +138987,341.42,45.381 +138988,343.67,45.855 +138989,335.38,44.255 +138990,337.82,44.835 +138991,340.15,45.388 +138992,342.41,45.916 +138993,334.09,44.149 +138994,336.54,44.786 +138995,338.89,45.395 +138996,341.15,45.977 +138997,332.79,44.042 +138998,335.26,44.737 +138999,337.63,45.401 +139000,339.89,46.037 +139001,331.5,43.936 +139002,333.99,44.689 +139003,336.36,45.408 +139004,338.63,46.097 +139005,330.21,43.831 +139006,332.71,44.641 +139007,335.09,45.415 +139008,337.37,46.157 +139009,328.93,43.726 +139010,331.44,44.592 +139011,333.83,45.421 +139012,336.1,46.215 +139013,327.64,43.621 +139014,330.17,44.545 +139015,332.56,45.428 +139016,334.84,46.274 +139017,326.36,43.517 +139018,328.9,44.497 +139019,331.29,45.434 +139020,333.57,46.331 +139021,325.08,43.413 +139022,327.63,44.45 +139023,330.03,45.44 +139024,332.3,46.388 +139025,323.8,43.31 +139026,326.36,44.403 +139027,328.76,45.446 +139028,331.02,46.444 +139029,322.52,43.207 +139030,325.09,44.356 +139031,327.49,45.451 +139032,329.75,46.5 +139033,321.25,43.106 +139034,323.82,44.309 +139035,326.22,45.457 +139036,328.47,46.555 +139037,319.98,43.005 +139038,322.55,44.263 +139039,324.95,45.462 +139040,327.2,46.609 +139041,318.71,42.905 +139042,321.28,44.217 +139043,323.68,45.467 +139044,325.92,46.662 +139045,317.44,42.805 +139046,320.02,44.172 +139047,322.4,45.472 +139048,324.63,46.714 +139049,316.18,42.707 +139050,318.75,44.127 +139051,321.13,45.477 +139052,323.35,46.765 +139053,314.91,42.609 +139054,317.49,44.082 +139055,319.86,45.481 +139056,322.07,46.816 +139057,313.65,42.513 +139058,316.22,44.037 +139059,318.59,45.485 +139060,320.78,46.865 +139061,312.39,42.417 +139062,314.96,43.993 +139063,317.31,45.489 +139064,319.49,46.913 +139065,311.14,42.323 +139066,313.7,43.95 +139067,316.04,45.492 +139068,318.2,46.961 +139069,309.88,42.229 +139070,312.44,43.907 +139071,314.76,45.495 +139072,316.91,47.007 +139073,308.63,42.137 +139074,311.17,43.864 +139075,313.49,45.498 +139076,315.62,47.052 +139077,307.38,42.046 +139078,309.91,43.822 +139079,312.21,45.501 +139080,314.32,47.096 +139081,306.13,41.956 +139082,308.66,43.78 +139083,310.94,45.503 +139084,313.02,47.139 +139085,304.89,41.868 +139086,307.4,43.738 +139087,309.66,45.505 +139088,311.73,47.181 +139089,303.65,41.781 +139090,306.14,43.698 +139091,308.38,45.506 +139092,310.43,47.222 +139093,302.41,41.695 +139094,304.88,43.657 +139095,307.1,45.507 +139096,309.12,47.261 +139097,301.17,41.611 +139098,303.62,43.617 +139099,305.82,45.508 +139100,307.82,47.299 +139101,299.93,41.528 +139102,302.37,43.578 +139103,304.54,45.508 +139104,306.52,47.336 +139105,298.7,41.447 +139106,301.11,43.539 +139107,303.27,45.508 +139108,305.21,47.371 +139109,297.47,41.367 +139110,299.86,43.501 +139111,301.99,45.507 +139112,303.9,47.405 +139113,296.24,41.289 +139114,298.61,43.464 +139115,300.7,45.506 +139116,302.6,47.438 +139117,295.01,41.212 +139118,297.35,43.426 +139119,299.42,45.505 +139120,301.29,47.469 +139121,293.78,41.138 +139122,296.1,43.39 +139123,298.14,45.503 +139124,299.97,47.499 +139125,292.56,41.064 +139126,294.85,43.354 +139127,296.86,45.501 +139128,298.66,47.528 +139129,291.34,40.993 +139130,293.6,43.319 +139131,295.58,45.498 +139132,297.35,47.555 +139133,290.12,40.924 +139134,292.35,43.284 +139135,294.3,45.495 +139136,296.03,47.58 +139137,288.91,40.856 +139138,291.1,43.25 +139139,293.01,45.491 +139140,294.72,47.604 +139141,287.69,40.79 +139142,289.85,43.217 +139143,291.73,45.487 +139144,293.4,47.627 +139145,286.48,40.726 +139146,288.6,43.184 +139147,290.45,45.482 +139148,292.08,47.648 +139149,285.27,40.664 +139150,287.35,43.152 +139151,289.16,45.477 +139152,290.76,47.667 +139153,284.06,40.603 +139154,286.11,43.12 +139155,287.88,45.471 +139156,289.44,47.685 +139157,282.85,40.545 +139158,284.86,43.09 +139159,286.59,45.465 +139160,288.12,47.701 +139161,281.65,40.489 +139162,283.61,43.06 +139163,285.31,45.459 +139164,286.79,47.716 +139165,280.45,40.435 +139166,282.37,43.03 +139167,284.02,45.451 +139168,285.47,47.729 +139169,279.24,40.383 +139170,281.12,43.001 +139171,282.73,45.444 +139172,284.14,47.74 +139173,278.05,40.333 +139174,279.88,42.973 +139175,281.45,45.435 +139176,282.82,47.75 +139177,276.85,40.285 +139178,278.64,42.946 +139179,280.16,45.427 +139180,281.49,47.758 +139181,275.65,40.239 +139182,277.39,42.92 +139183,278.87,45.417 +139184,280.16,47.765 +139185,274.46,40.195 +139186,276.15,42.894 +139187,277.59,45.407 +139188,278.83,47.769 +139189,273.27,40.154 +139190,274.91,42.869 +139191,276.3,45.397 +139192,277.5,47.772 +139193,272.07,40.115 +139194,273.67,42.844 +139195,275.01,45.386 +139196,276.17,47.774 +139197,270.89,40.077 +139198,272.43,42.82 +139199,273.72,45.374 +139200,274.84,47.773 +139201,269.7,40.043 +139202,271.19,42.798 +139203,272.43,45.362 +139204,273.51,47.771 +139205,268.51,40.01 +139206,269.94,42.775 +139207,271.15,45.35 +139208,272.18,47.767 +139209,267.32,39.98 +139210,268.7,42.754 +139211,269.86,45.336 +139212,270.84,47.762 +139213,266.14,39.951 +139214,267.47,42.733 +139215,268.57,45.323 +139216,269.51,47.755 +139217,264.96,39.925 +139218,266.23,42.713 +139219,267.28,45.308 +139220,268.17,47.745 +139221,263.78,39.902 +139222,264.99,42.694 +139223,265.99,45.293 +139224,266.84,47.735 +139225,262.6,39.881 +139226,263.75,42.676 +139227,264.7,45.278 +139228,265.5,47.722 +139229,261.42,39.861 +139230,262.51,42.658 +139231,263.41,45.262 +139232,264.17,47.707 +139233,260.24,39.845 +139234,261.27,42.641 +139235,262.12,45.245 +139236,262.83,47.691 +139237,259.06,39.83 +139238,260.04,42.625 +139239,260.83,45.228 +139240,261.49,47.673 +139241,257.88,39.818 +139242,258.8,42.609 +139243,259.54,45.21 +139244,260.15,47.654 +139245,256.71,39.808 +139246,257.56,42.595 +139247,258.25,45.191 +139248,258.82,47.632 +139249,255.53,39.8 +139250,256.33,42.581 +139251,256.96,45.172 +139252,257.48,47.609 +139253,254.36,39.795 +139254,255.09,42.568 +139255,255.67,45.153 +139256,256.14,47.584 +139257,253.18,39.792 +139258,253.85,42.555 +139259,254.38,45.133 +139260,254.8,47.557 +139261,252.01,39.791 +139262,252.62,42.544 +139263,253.09,45.112 +139264,253.46,47.528 +139265,250.84,39.793 +139266,251.38,42.533 +139267,251.8,45.091 +139268,252.12,47.498 +139269,249.66,39.796 +139270,250.15,42.523 +139271,250.51,45.069 +139272,250.78,47.466 +139273,248.49,39.802 +139274,248.91,42.513 +139275,249.22,45.046 +139276,249.44,47.432 +139277,247.32,39.81 +139278,247.68,42.505 +139279,247.93,45.023 +139280,248.1,47.396 +139281,246.15,39.821 +139282,246.44,42.497 +139283,246.64,45 +139284,246.76,47.359 +139285,244.97,39.833 +139286,245.21,42.49 +139287,245.35,44.976 +139288,245.42,47.32 +139289,243.8,39.848 +139290,243.97,42.483 +139291,244.06,44.951 +139292,244.08,47.279 +139293,242.63,39.865 +139294,242.74,42.478 +139295,242.77,44.926 +139296,242.74,47.236 +139297,241.46,39.884 +139298,241.5,42.473 +139299,241.48,44.9 +139300,241.4,47.192 +139301,240.29,39.905 +139302,240.27,42.468 +139303,240.19,44.874 +139304,240.06,47.146 +139305,239.11,39.928 +139306,239.03,42.465 +139307,238.9,44.847 +139308,238.72,47.098 +139309,237.94,39.954 +139310,237.8,42.462 +139311,237.61,44.819 +139312,237.38,47.049 +139313,236.77,39.981 +139314,236.56,42.46 +139315,236.32,44.791 +139316,236.04,46.998 +139317,235.6,40.01 +139318,235.33,42.459 +139319,235.03,44.763 +139320,234.7,46.945 +139321,234.42,40.041 +139322,234.09,42.458 +139323,233.74,44.734 +139324,233.37,46.89 +139325,233.25,40.075 +139326,232.86,42.458 +139327,232.45,44.704 +139328,232.03,46.834 +139329,232.07,40.11 +139330,231.62,42.458 +139331,231.16,44.674 +139332,230.69,46.777 +139333,230.9,40.147 +139334,230.39,42.46 +139335,229.87,44.644 +139336,229.35,46.717 +139337,229.72,40.186 +139338,229.15,42.462 +139339,228.58,44.613 +139340,228.01,46.657 +139341,228.54,40.227 +139342,227.92,42.464 +139343,227.3,44.581 +139344,226.68,46.594 +139345,227.36,40.269 +139346,226.68,42.468 +139347,226.01,44.549 +139348,225.34,46.53 +139349,226.19,40.313 +139350,225.45,42.471 +139351,224.72,44.517 +139352,224.01,46.465 +139353,225.01,40.36 +139354,224.21,42.476 +139355,223.43,44.484 +139356,222.67,46.398 +139357,223.82,40.407 +139358,222.97,42.481 +139359,222.15,44.451 +139360,221.34,46.329 +139361,222.64,40.457 +139362,221.74,42.487 +139363,220.86,44.417 +139364,220,46.259 +139365,221.46,40.508 +139366,220.5,42.493 +139367,219.57,44.383 +139368,218.67,46.188 +139369,220.27,40.56 +139370,219.26,42.5 +139371,218.29,44.348 +139372,217.34,46.115 +139373,219.09,40.614 +139374,218.03,42.507 +139375,217,44.313 +139376,216.01,46.041 +139377,217.9,40.67 +139378,216.79,42.515 +139379,215.72,44.278 +139380,214.68,45.965 +139381,216.71,40.727 +139382,215.55,42.524 +139383,214.43,44.242 +139384,213.35,45.888 +139385,215.52,40.785 +139386,214.31,42.533 +139387,213.15,44.206 +139388,212.02,45.81 +139389,214.33,40.845 +139390,213.07,42.543 +139391,211.86,44.169 +139392,210.69,45.73 +139393,213.14,40.906 +139394,211.83,42.553 +139395,210.58,44.132 +139396,209.36,45.65 +139397,211.95,40.968 +139398,210.6,42.563 +139399,209.29,44.095 +139400,208.04,45.567 +139401,210.75,41.032 +139402,209.36,42.574 +139403,208.01,44.057 +139404,206.71,45.484 +139405,209.56,41.096 +139406,208.12,42.586 +139407,206.73,44.019 +139408,205.39,45.4 +139409,208.36,41.162 +139410,206.88,42.598 +139411,205.45,43.981 +139412,204.06,45.314 +139413,207.16,41.229 +139414,205.63,42.61 +139415,204.16,43.942 +139416,202.74,45.227 +139417,205.96,41.297 +139418,204.39,42.623 +139419,202.88,43.903 +139420,201.42,45.139 +139421,204.75,41.366 +139422,203.15,42.637 +139423,201.6,43.864 +139424,200.1,45.05 +139425,203.55,41.436 +139426,201.91,42.65 +139427,200.32,43.824 +139428,198.78,44.96 +139429,202.34,41.507 +139430,200.67,42.664 +139431,199.04,43.785 +139432,197.47,44.869 +139433,201.13,41.578 +139434,199.42,42.679 +139435,197.76,43.745 +139436,196.15,44.778 +139437,199.92,41.651 +139438,198.18,42.694 +139439,196.49,43.705 +139440,194.83,44.685 +139441,198.71,41.724 +139442,196.94,42.709 +139443,195.21,43.664 +139444,193.52,44.591 +139445,197.5,41.798 +139446,195.69,42.724 +139447,193.93,43.623 +139448,192.21,44.496 +139449,196.28,41.873 +139450,194.45,42.74 +139451,192.65,43.583 +139452,190.9,44.401 +139453,195.06,41.948 +139454,193.2,42.756 +139455,191.38,43.542 +139456,189.59,44.305 +139457,193.84,42.024 +139458,191.96,42.773 +139459,190.1,43.501 +139460,188.28,44.208 +139461,192.62,42.1 +139462,190.71,42.789 +139463,188.83,43.459 +139464,186.97,44.11 +139465,191.4,42.177 +139466,189.46,42.806 +139467,187.55,43.418 +139468,185.67,44.012 +139469,190.17,42.254 +139470,188.21,42.823 +139471,186.28,43.376 +139472,184.37,43.913 +139473,188.95,42.332 +139474,186.97,42.841 +139475,185.01,43.335 +139476,183.07,43.813 +139477,187.72,42.41 +139478,185.72,42.858 +139479,183.73,43.293 +139480,181.77,43.713 +139481,186.49,42.488 +139482,184.47,42.876 +139483,182.46,43.251 +139484,180.47,43.613 +139485,185.25,42.567 +139486,183.22,42.894 +139487,181.19,43.209 +139488,179.17,43.512 +139489,184.02,42.645 +139490,181.97,42.912 +139491,179.92,43.167 +139492,177.87,43.41 +139493,182.78,42.724 +139494,180.72,42.93 +139495,178.65,43.125 +139496,176.58,43.309 +139497,181.54,42.803 +139498,179.46,42.949 +139499,177.38,43.083 +139500,175.29,43.206 +139501,180.3,42.882 +139502,178.21,42.967 +139503,176.11,43.041 +139504,174,43.104 +139505,179.06,42.961 +139506,176.96,42.986 +139507,174.84,43 +139508,172.71,43.001 +139509,177.82,43.04 +139510,175.71,43.005 +139511,173.58,42.958 +139512,171.43,42.898 +139513,176.57,43.119 +139514,174.45,43.023 +139515,172.31,42.916 +139516,170.14,42.795 +139517,175.32,43.198 +139518,173.2,43.042 +139519,171.04,42.874 +139520,168.86,42.692 +139521,174.07,43.276 +139522,171.94,43.061 +139523,169.78,42.832 +139524,167.58,42.589 +139525,172.82,43.355 +139526,170.69,43.08 +139527,168.51,42.791 +139528,166.3,42.486 +139529,171.57,43.433 +139530,169.43,43.099 +139531,167.25,42.749 +139532,165.02,42.383 +139533,170.31,43.511 +139534,168.17,43.118 +139535,165.99,42.708 +139536,163.75,42.28 +139537,169.05,43.588 +139538,166.92,43.137 +139539,164.72,42.667 +139540,162.47,42.177 +139541,167.79,43.665 +139542,165.66,43.156 +139543,163.46,42.626 +139544,161.2,42.074 +139545,166.53,43.742 +139546,164.4,43.174 +139547,162.2,42.585 +139548,159.93,41.971 +139549,165.27,43.818 +139550,163.14,43.193 +139551,160.94,42.544 +139552,158.67,41.869 +139553,164,43.893 +139554,161.88,43.212 +139555,159.68,42.504 +139556,157.4,41.767 +139557,162.74,43.969 +139558,160.62,43.23 +139559,158.42,42.463 +139560,156.14,41.666 +139561,161.47,44.043 +139562,159.36,43.249 +139563,157.16,42.423 +139564,154.88,41.565 +139565,160.2,44.117 +139566,158.09,43.267 +139567,155.91,42.384 +139568,153.62,41.464 +139569,158.92,44.19 +139570,156.83,43.285 +139571,154.65,42.344 +139572,152.36,41.364 +139573,157.65,44.263 +139574,155.57,43.303 +139575,153.39,42.305 +139576,151.11,41.264 +139577,156.37,44.334 +139578,154.31,43.321 +139579,152.14,42.266 +139580,149.85,41.165 +139581,155.09,44.405 +139582,153.04,43.339 +139583,150.88,42.228 +139584,148.6,41.067 +139585,153.82,44.475 +139586,151.78,43.356 +139587,149.63,42.189 +139588,147.35,40.97 +139589,152.53,44.545 +139590,150.51,43.374 +139591,148.38,42.152 +139592,146.11,40.873 +139593,151.25,44.613 +139594,149.25,43.391 +139595,147.12,42.114 +139596,144.86,40.777 +139597,149.97,44.68 +139598,147.98,43.407 +139599,145.87,42.077 +139600,143.62,40.682 +139601,148.68,44.747 +139602,146.71,43.424 +139603,144.62,42.04 +139604,142.38,40.588 +139605,147.39,44.812 +139606,145.44,43.44 +139607,143.37,42.004 +139608,141.14,40.495 +139609,146.1,44.877 +139610,144.18,43.456 +139611,142.12,41.968 +139612,139.91,40.403 +139613,144.81,44.94 +139614,142.91,43.472 +139615,140.87,41.933 +139616,138.67,40.312 +139617,143.52,45.002 +139618,141.64,43.488 +139619,139.62,41.898 +139620,137.44,40.222 +139621,142.23,45.063 +139622,140.37,43.503 +139623,138.38,41.863 +139624,136.21,40.133 +139625,140.93,45.123 +139626,139.1,43.518 +139627,137.13,41.829 +139628,134.98,40.046 +139629,139.63,45.182 +139630,137.83,43.532 +139631,135.88,41.796 +139632,133.76,39.96 +139633,138.33,45.24 +139634,136.56,43.546 +139635,134.64,41.763 +139636,132.54,39.875 +139637,137.04,45.296 +139638,135.29,43.56 +139639,133.39,41.73 +139640,131.31,39.791 +139641,135.73,45.351 +139642,134.01,43.573 +139643,132.15,41.698 +139644,130.1,39.709 +139645,134.43,45.405 +139646,132.74,43.586 +139647,130.9,41.667 +139648,128.88,39.629 +139649,133.13,45.457 +139650,131.47,43.599 +139651,129.66,41.636 +139652,127.66,39.549 +139653,131.82,45.508 +139654,130.19,43.611 +139655,128.42,41.606 +139656,126.45,39.472 +139657,130.52,45.558 +139658,128.92,43.623 +139659,127.18,41.576 +139660,125.24,39.396 +139661,129.21,45.606 +139662,127.65,43.635 +139663,125.93,41.547 +139664,124.03,39.322 +139665,127.9,45.653 +139666,126.37,43.645 +139667,124.69,41.518 +139668,122.82,39.249 +139669,126.59,45.698 +139670,125.1,43.656 +139671,123.45,41.491 +139672,121.62,39.178 +139673,125.28,45.742 +139674,123.82,43.666 +139675,122.21,41.463 +139676,120.41,39.109 +139677,123.97,45.784 +139678,122.54,43.676 +139679,120.97,41.437 +139680,119.21,39.042 +139681,122.65,45.825 +139682,121.27,43.685 +139683,119.74,41.411 +139684,118.01,38.976 +139685,121.34,45.864 +139686,119.99,43.694 +139687,118.5,41.386 +139688,116.81,38.913 +139689,120.02,45.902 +139690,118.71,43.702 +139691,117.26,41.361 +139692,115.62,38.851 +139693,118.71,45.938 +139694,117.44,43.71 +139695,116.02,41.337 +139696,114.42,38.791 +139697,117.39,45.972 +139698,116.16,43.717 +139699,114.79,41.314 +139700,113.23,38.734 +139701,116.07,46.005 +139702,114.88,43.723 +139703,113.55,41.292 +139704,112.04,38.678 +139705,114.75,46.036 +139706,113.6,43.73 +139707,112.31,41.27 +139708,110.85,38.625 +139709,113.43,46.066 +139710,112.32,43.735 +139711,111.08,41.249 +139712,109.66,38.573 +139713,112.11,46.094 +139714,111.04,43.741 +139715,109.84,41.229 +139716,108.47,38.524 +139717,110.79,46.12 +139718,109.76,43.745 +139719,108.61,41.209 +139720,107.29,38.477 +139721,109.47,46.145 +139722,108.48,43.749 +139723,107.38,41.191 +139724,106.1,38.432 +139725,108.14,46.168 +139726,107.2,43.753 +139727,106.14,41.173 +139728,104.92,38.389 +139729,106.82,46.189 +139730,105.92,43.756 +139731,104.91,41.155 +139732,103.74,38.349 +139733,105.49,46.208 +139734,104.64,43.758 +139735,103.68,41.139 +139736,102.56,38.31 +139737,104.17,46.226 +139738,103.36,43.76 +139739,102.44,41.123 +139740,101.38,38.274 +139741,102.84,46.241 +139742,102.08,43.761 +139743,101.21,41.108 +139744,100.2,38.241 +139745,101.52,46.256 +139746,100.8,43.762 +139747,99.98,41.094 +139748,99.023,38.21 +139749,100.19,46.268 +139750,99.518,43.762 +139751,98.749,41.081 +139752,97.847,38.181 +139753,98.864,46.278 +139754,98.236,43.762 +139755,97.517,41.068 +139756,96.672,38.154 +139757,97.536,46.287 +139758,96.955,43.761 +139759,96.286,41.056 +139760,95.498,38.13 +139761,96.208,46.294 +139762,95.673,43.76 +139763,95.056,41.046 +139764,94.324,38.108 +139765,94.88,46.299 +139766,94.391,43.758 +139767,93.825,41.035 +139768,93.152,38.089 +139769,93.551,46.302 +139770,93.109,43.755 +139771,92.595,41.026 +139772,91.98,38.072 +139773,92.222,46.304 +139774,91.827,43.752 +139775,91.364,41.017 +139776,90.808,38.057 +139777,90.893,46.304 +139778,90.545,43.748 +139779,90.134,41.01 +139780,89.637,38.045 +139781,89.563,46.302 +139782,89.262,43.743 +139783,88.905,41.003 +139784,88.467,38.036 +139785,88.233,46.298 +139786,87.98,43.738 +139787,87.675,40.997 +139788,87.297,38.028 +139789,86.904,46.292 +139790,86.698,43.733 +139791,86.445,40.991 +139792,86.127,38.024 +139793,85.574,46.284 +139794,85.415,43.727 +139795,85.216,40.987 +139796,84.958,38.021 +139797,84.243,46.275 +139798,84.133,43.72 +139799,83.986,40.983 +139800,83.789,38.022 +139801,82.913,46.263 +139802,82.85,43.712 +139803,82.757,40.981 +139804,82.62,38.024 +139805,81.583,46.25 +139806,81.568,43.704 +139807,81.527,40.979 +139808,81.451,38.029 +139809,80.253,46.235 +139810,80.285,43.696 +139811,80.298,40.977 +139812,80.282,38.037 +139813,78.923,46.219 +139814,79.003,43.687 +139815,79.069,40.977 +139816,79.113,38.046 +139817,77.593,46.2 +139818,77.721,43.677 +139819,77.839,40.977 +139820,77.944,38.059 +139821,76.263,46.18 +139822,76.439,43.667 +139823,76.61,40.979 +139824,76.775,38.073 +139825,74.933,46.158 +139826,75.156,43.656 +139827,75.381,40.981 +139828,75.605,38.09 +139829,73.604,46.134 +139830,73.874,43.645 +139831,74.151,40.983 +139832,74.435,38.11 +139833,72.275,46.108 +139834,72.592,43.633 +139835,72.922,40.987 +139836,73.265,38.132 +139837,70.946,46.08 +139838,71.311,43.62 +139839,71.692,40.991 +139840,72.094,38.156 +139841,69.617,46.051 +139842,70.029,43.607 +139843,70.462,40.997 +139844,70.923,38.182 +139845,68.289,46.02 +139846,68.747,43.593 +139847,69.232,41.002 +139848,69.751,38.211 +139849,66.961,45.987 +139850,67.466,43.579 +139851,68.002,41.009 +139852,68.578,38.242 +139853,65.633,45.953 +139854,66.185,43.564 +139855,66.772,41.017 +139856,67.405,38.275 +139857,64.306,45.917 +139858,64.904,43.549 +139859,65.541,41.025 +139860,66.231,38.311 +139861,62.979,45.879 +139862,63.623,43.533 +139863,64.311,41.034 +139864,65.056,38.348 +139865,61.653,45.839 +139866,62.343,43.517 +139867,63.08,41.044 +139868,63.88,38.388 +139869,60.328,45.797 +139870,61.062,43.5 +139871,61.849,41.054 +139872,62.703,38.43 +139873,59.003,45.754 +139874,59.782,43.482 +139875,60.617,41.065 +139876,61.525,38.474 +139877,57.679,45.71 +139878,58.502,43.464 +139879,59.385,41.077 +139880,60.346,38.52 +139881,56.355,45.663 +139882,57.223,43.446 +139883,58.153,41.09 +139884,59.166,38.569 +139885,55.032,45.615 +139886,55.944,43.427 +139887,56.921,41.103 +139888,57.985,38.619 +139889,53.71,45.566 +139890,54.665,43.407 +139891,55.689,41.118 +139892,56.802,38.671 +139893,52.389,45.515 +139894,53.386,43.387 +139895,54.456,41.132 +139896,55.619,38.725 +139897,51.068,45.462 +139898,52.108,43.367 +139899,53.222,41.148 +139900,54.434,38.781 +139901,49.748,45.407 +139902,50.83,43.346 +139903,51.989,41.164 +139904,53.247,38.839 +139905,48.429,45.352 +139906,49.552,43.325 +139907,50.755,41.181 +139908,52.059,38.899 +139909,47.111,45.294 +139910,48.275,43.303 +139911,49.52,41.198 +139912,50.87,38.96 +139913,45.794,45.235 +139914,46.998,43.281 +139915,48.285,41.216 +139916,49.679,39.024 +139917,44.478,45.175 +139918,45.721,43.258 +139919,47.05,41.235 +139920,48.487,39.089 +139921,43.163,45.113 +139922,44.445,43.235 +139923,45.814,41.254 +139924,47.293,39.155 +139925,41.849,45.05 +139926,43.17,43.211 +139927,44.578,41.274 +139928,46.097,39.223 +139929,40.536,44.986 +139930,41.894,43.187 +139931,43.342,41.295 +139932,44.9,39.293 +139933,39.224,44.92 +139934,40.619,43.163 +139935,42.104,41.316 +139936,43.701,39.364 +139937,37.914,44.852 +139938,39.345,43.138 +139939,40.867,41.337 +139940,42.5,39.437 +139941,36.604,44.784 +139942,38.071,43.113 +139943,39.629,41.359 +139944,41.298,39.511 +139945,35.296,44.714 +139946,36.797,43.088 +139947,38.39,41.382 +139948,40.093,39.587 +139949,33.988,44.643 +139950,35.524,43.062 +139951,37.151,41.405 +139952,38.887,39.664 +139953,32.682,44.571 +139954,34.252,43.036 +139955,35.911,41.429 +139956,37.68,39.742 +139957,31.378,44.497 +139958,32.98,43.009 +139959,34.671,41.453 +139960,36.47,39.821 +139961,30.075,44.422 +139962,31.708,42.982 +139963,33.43,41.478 +139964,35.258,39.902 +139965,28.773,44.347 +139966,30.437,42.955 +139967,32.189,41.503 +139968,34.045,39.984 +139969,27.472,44.27 +139970,29.167,42.928 +139971,30.947,41.529 +139972,32.829,40.067 +139973,26.173,44.192 +139974,27.897,42.9 +139975,29.705,41.555 +139976,31.612,40.15 +139977,24.875,44.113 +139978,26.627,42.872 +139979,28.462,41.581 +139980,30.393,40.235 +139981,23.579,44.032 +139982,25.358,42.844 +139983,27.218,41.608 +139984,29.172,40.321 +139985,22.284,43.951 +139986,24.09,42.816 +139987,25.974,41.636 +139988,27.948,40.408 +139989,20.991,43.87 +139990,22.822,42.787 +139991,24.729,41.663 +139992,26.723,40.495 +139993,19.699,43.787 +139994,21.555,42.758 +139995,23.484,41.691 +139996,25.496,40.584 +139997,18.409,43.703 +139998,20.288,42.729 +139999,22.238,41.72 +140000,24.267,40.673 +140001,17.12,43.619 +140002,19.022,42.7 +140003,20.991,41.749 +140004,23.036,40.762 +140005,15.833,43.533 +140006,17.756,42.671 +140007,19.744,41.778 +140008,21.803,40.853 +140009,14.548,43.447 +140010,16.492,42.641 +140011,18.496,41.807 +140012,20.567,40.944 +140013,13.264,43.36 +140014,15.227,42.611 +140015,17.247,41.837 +140016,19.33,41.035 +140017,11.982,43.273 +140018,13.964,42.582 +140019,15.998,41.867 +140020,18.091,41.127 +140021,10.702,43.185 +140022,12.7,42.552 +140023,14.748,41.897 +140024,16.85,41.22 +140025,9.4237,43.096 +140026,11.438,42.522 +140027,13.498,41.927 +140028,15.607,41.312 +140029,8.1469,43.007 +140030,10.176,42.491 +140031,12.247,41.958 +140032,14.361,41.406 +140033,6.8719,42.918 +140034,8.9149,42.461 +140035,10.995,41.989 +140036,13.114,41.499 +140037,5.5987,42.827 +140038,7.6543,42.431 +140039,9.7424,42.02 +140040,11.865,41.593 +140041,4.3274,42.737 +140042,6.3943,42.401 +140043,8.4893,42.051 +140044,10.614,41.687 +140045,3.0578,42.646 +140046,5.135,42.371 +140047,7.2355,42.082 +140048,9.3606,41.781 +140049,1.7901,42.555 +140050,3.8763,42.34 +140051,5.9811,42.114 +140052,8.1054,41.875 +140053,0.52433,42.463 +140054,2.6182,42.31 +140055,4.726,42.145 +140056,6.8483,41.969 +140057,359.26,42.371 +140058,1.3608,42.28 +140059,3.4703,42.177 +140060,5.5893,42.063 +140061,358,42.279 +140062,0.10403,42.25 +140063,2.2139,42.209 +140064,4.3283,42.157 +140065,356.74,42.187 +140066,358.85,42.219 +140067,0.95687,42.241 +140068,3.0654,42.251 +140069,355.48,42.095 +140070,357.59,42.189 +140071,359.7,42.273 +140072,1.8006,42.345 +140073,354.22,42.003 +140074,356.34,42.159 +140075,358.44,42.305 +140076,0.53396,42.438 +140077,352.97,41.911 +140078,355.08,42.13 +140079,357.18,42.337 +140080,359.27,42.532 +140081,351.72,41.818 +140082,353.83,42.1 +140083,355.92,42.369 +140084,357.99,42.625 +140085,350.47,41.726 +140086,352.58,42.07 +140087,354.66,42.401 +140088,356.72,42.718 +140089,349.22,41.634 +140090,351.32,42.041 +140091,353.4,42.433 +140092,355.45,42.81 +140093,347.97,41.542 +140094,350.07,42.012 +140095,352.14,42.465 +140096,354.17,42.902 +140097,346.73,41.451 +140098,348.82,41.982 +140099,350.88,42.497 +140100,352.9,42.994 +140101,345.48,41.36 +140102,347.57,41.954 +140103,349.61,42.529 +140104,351.62,43.085 +140105,344.24,41.269 +140106,346.32,41.925 +140107,348.35,42.56 +140108,350.33,43.175 +140109,343.01,41.178 +140110,345.07,41.897 +140111,347.09,42.592 +140112,349.05,43.265 +140113,341.77,41.088 +140114,343.82,41.868 +140115,345.82,42.624 +140116,347.77,43.355 +140117,340.53,40.998 +140118,342.58,41.84 +140119,344.56,42.655 +140120,346.48,43.443 +140121,339.3,40.909 +140122,341.33,41.813 +140123,343.29,42.687 +140124,345.19,43.531 +140125,338.07,40.82 +140126,340.08,41.786 +140127,342.02,42.718 +140128,343.9,43.619 +140129,336.84,40.732 +140130,338.84,41.759 +140131,340.76,42.749 +140132,342.61,43.705 +140133,335.62,40.645 +140134,337.59,41.732 +140135,339.49,42.78 +140136,341.32,43.791 +140137,334.39,40.559 +140138,336.35,41.706 +140139,338.22,42.81 +140140,340.03,43.875 +140141,333.17,40.473 +140142,335.1,41.68 +140143,336.95,42.841 +140144,338.73,43.959 +140145,331.95,40.388 +140146,333.86,41.654 +140147,335.68,42.871 +140148,337.43,44.042 +140149,330.73,40.304 +140150,332.62,41.629 +140151,334.41,42.901 +140152,336.13,44.124 +140153,329.51,40.221 +140154,331.37,41.604 +140155,333.14,42.931 +140156,334.83,44.205 +140157,328.3,40.139 +140158,330.13,41.58 +140159,331.87,42.96 +140160,333.53,44.285 +140161,327.09,40.058 +140162,328.89,41.556 +140163,330.6,42.989 +140164,332.23,44.364 +140165,325.87,39.978 +140166,327.65,41.532 +140167,329.33,43.018 +140168,330.93,44.442 +140169,324.67,39.899 +140170,326.41,41.509 +140171,328.06,43.047 +140172,329.62,44.518 +140173,323.46,39.821 +140174,325.17,41.487 +140175,326.78,43.075 +140176,328.31,44.594 +140177,322.25,39.745 +140178,323.93,41.465 +140179,325.51,43.103 +140180,327,44.668 +140181,321.05,39.669 +140182,322.69,41.443 +140183,324.24,43.13 +140184,325.7,44.741 +140185,319.85,39.595 +140186,321.45,41.422 +140187,322.96,43.158 +140188,324.38,44.813 +140189,318.65,39.523 +140190,320.22,41.402 +140191,321.69,43.185 +140192,323.07,44.883 +140193,317.45,39.452 +140194,318.98,41.382 +140195,320.41,43.211 +140196,321.76,44.953 +140197,316.25,39.382 +140198,317.74,41.362 +140199,319.13,43.237 +140200,320.45,45.02 +140201,315.06,39.314 +140202,316.51,41.344 +140203,317.86,43.263 +140204,319.13,45.087 +140205,313.86,39.247 +140206,315.27,41.325 +140207,316.58,43.288 +140208,317.82,45.152 +140209,312.67,39.182 +140210,314.03,41.308 +140211,315.3,43.313 +140212,316.5,45.216 +140213,311.48,39.119 +140214,312.8,41.291 +140215,314.03,43.338 +140216,315.18,45.278 +140217,310.29,39.058 +140218,311.57,41.274 +140219,312.75,43.362 +140220,313.86,45.339 +140221,309.1,38.998 +140222,310.33,41.259 +140223,311.47,43.385 +140224,312.54,45.398 +140225,307.92,38.939 +140226,309.1,41.243 +140227,310.19,43.409 +140228,311.22,45.456 +140229,306.73,38.883 +140230,307.86,41.229 +140231,308.91,43.431 +140232,309.9,45.512 +140233,305.55,38.829 +140234,306.63,41.215 +140235,307.63,43.454 +140236,308.58,45.567 +140237,304.37,38.776 +140238,305.4,41.202 +140239,306.35,43.475 +140240,307.25,45.62 +140241,303.18,38.725 +140242,304.16,41.19 +140243,305.08,43.497 +140244,305.93,45.672 +140245,302,38.677 +140246,302.93,41.178 +140247,303.79,43.517 +140248,304.61,45.722 +140249,300.83,38.63 +140250,301.7,41.167 +140251,302.51,43.538 +140252,303.28,45.77 +140253,299.65,38.585 +140254,300.47,41.157 +140255,301.23,43.557 +140256,301.95,45.817 +140257,298.47,38.542 +140258,299.24,41.147 +140259,299.95,43.577 +140260,300.63,45.862 +140261,297.3,38.502 +140262,298.01,41.138 +140263,298.67,43.595 +140264,299.3,45.905 +140265,296.12,38.463 +140266,296.78,41.13 +140267,297.39,43.614 +140268,297.97,45.947 +140269,294.95,38.427 +140270,295.54,41.123 +140271,296.11,43.631 +140272,296.65,45.987 +140273,293.77,38.393 +140274,294.31,41.116 +140275,294.83,43.648 +140276,295.32,46.025 +140277,292.6,38.361 +140278,293.08,41.11 +140279,293.54,43.665 +140280,293.99,46.061 +140281,291.43,38.332 +140282,291.85,41.105 +140283,292.26,43.681 +140284,292.66,46.096 +140285,290.26,38.304 +140286,290.62,41.1 +140287,290.98,43.697 +140288,291.33,46.129 +140289,289.09,38.279 +140290,289.39,41.097 +140291,289.7,43.711 +140292,290,46.161 +140293,287.92,38.256 +140294,288.16,41.094 +140295,288.42,43.726 +140296,288.67,46.19 +140297,286.74,38.236 +140298,286.93,41.092 +140299,287.13,43.74 +140300,287.34,46.218 +140301,285.58,38.218 +140302,285.7,41.091 +140303,285.85,43.753 +140304,286.01,46.244 +140305,284.41,38.202 +140306,284.47,41.09 +140307,284.57,43.766 +140308,284.68,46.268 +140309,283.24,38.189 +140310,283.24,41.091 +140311,283.28,43.778 +140312,283.35,46.29 +140313,282.07,38.178 +140314,282.01,41.092 +140315,282,43.789 +140316,282.02,46.311 +140317,280.9,38.169 +140318,280.78,41.094 +140319,280.72,43.8 +140320,280.69,46.329 +140321,279.73,38.163 +140322,279.55,41.097 +140323,279.43,43.81 +140324,279.35,46.346 +140325,278.56,38.159 +140326,278.32,41.1 +140327,278.15,43.82 +140328,278.02,46.362 +140329,277.39,38.158 +140330,277.09,41.105 +140331,276.87,43.829 +140332,276.69,46.375 +140333,276.22,38.159 +140334,275.86,41.11 +140335,275.59,43.838 +140336,275.36,46.386 +140337,275.05,38.162 +140338,274.63,41.116 +140339,274.3,43.846 +140340,274.03,46.396 +140341,273.88,38.168 +140342,273.4,41.123 +140343,273.02,43.853 +140344,272.7,46.404 +140345,272.71,38.176 +140346,272.17,41.13 +140347,271.74,43.86 +140348,271.37,46.41 +140349,271.54,38.187 +140350,270.94,41.139 +140351,270.45,43.866 +140352,270.04,46.414 +140353,270.37,38.2 +140354,269.71,41.148 +140355,269.17,43.872 +140356,268.71,46.416 +140357,269.19,38.216 +140358,268.48,41.158 +140359,267.89,43.877 +140360,267.38,46.417 +140361,268.02,38.234 +140362,267.25,41.169 +140363,266.6,43.882 +140364,266.05,46.416 +140365,266.85,38.255 +140366,266.02,41.181 +140367,265.32,43.886 +140368,264.72,46.412 +140369,265.67,38.277 +140370,264.79,41.193 +140371,264.04,43.889 +140372,263.39,46.408 +140373,264.5,38.303 +140374,263.55,41.206 +140375,262.76,43.892 +140376,262.07,46.401 +140377,263.32,38.33 +140378,262.32,41.22 +140379,261.48,43.894 +140380,260.74,46.392 +140381,262.14,38.36 +140382,261.09,41.235 +140383,260.19,43.895 +140384,259.41,46.382 +140385,260.96,38.393 +140386,259.86,41.251 +140387,258.91,43.896 +140388,258.08,46.37 +140389,259.78,38.427 +140390,258.62,41.267 +140391,257.63,43.897 +140392,256.76,46.356 +140393,258.6,38.464 +140394,257.39,41.284 +140395,256.35,43.897 +140396,255.43,46.341 +140397,257.42,38.503 +140398,256.16,41.302 +140399,255.07,43.896 +140400,254.11,46.324 +140401,256.24,38.545 +140402,254.92,41.321 +140403,253.79,43.895 +140404,252.78,46.305 +140405,255.05,38.589 +140406,253.69,41.34 +140407,252.51,43.893 +140408,251.46,46.284 +140409,253.87,38.634 +140410,252.45,41.361 +140411,251.23,43.891 +140412,250.14,46.261 +140413,252.68,38.683 +140414,251.22,41.382 +140415,249.95,43.888 +140416,248.82,46.237 +140417,251.49,38.733 +140418,249.98,41.403 +140419,248.67,43.885 +140420,247.5,46.211 +140421,250.3,38.785 +140422,248.74,41.426 +140423,247.39,43.881 +140424,246.18,46.184 +140425,249.11,38.84 +140426,247.51,41.449 +140427,246.11,43.877 +140428,244.86,46.155 +140429,247.91,38.896 +140430,246.27,41.473 +140431,244.83,43.872 +140432,243.54,46.124 +140433,246.72,38.955 +140434,245.03,41.497 +140435,243.55,43.866 +140436,242.22,46.092 +140437,245.52,39.015 +140438,243.79,41.523 +140439,242.27,43.86 +140440,240.91,46.058 +140441,244.32,39.078 +140442,242.55,41.549 +140443,240.99,43.854 +140444,239.59,46.022 +140445,243.12,39.142 +140446,241.31,41.575 +140447,239.72,43.847 +140448,238.28,45.985 +140449,241.92,39.209 +140450,240.07,41.602 +140451,238.44,43.84 +140452,236.96,45.946 +140453,240.71,39.277 +140454,238.83,41.63 +140455,237.16,43.832 +140456,235.65,45.906 +140457,239.51,39.347 +140458,237.59,41.659 +140459,235.89,43.824 +140460,234.34,45.864 +140461,238.3,39.419 +140462,236.35,41.688 +140463,234.61,43.815 +140464,233.03,45.821 +140465,237.09,39.492 +140466,235.11,41.718 +140467,233.34,43.806 +140468,231.72,45.777 +140469,235.87,39.568 +140470,233.87,41.749 +140471,232.06,43.796 +140472,230.41,45.731 +140473,234.66,39.644 +140474,232.62,41.78 +140475,230.79,43.786 +140476,229.11,45.683 +140477,233.44,39.723 +140478,231.38,41.811 +140479,229.51,43.776 +140480,227.8,45.634 +140481,232.23,39.803 +140482,230.13,41.843 +140483,228.24,43.765 +140484,226.5,45.584 +140485,231.01,39.884 +140486,228.89,41.876 +140487,226.97,43.754 +140488,225.2,45.533 +140489,229.78,39.967 +140490,227.64,41.91 +140491,225.69,43.742 +140492,223.9,45.48 +140493,228.56,40.052 +140494,226.39,41.943 +140495,224.42,43.73 +140496,222.6,45.426 +140497,227.33,40.137 +140498,225.15,41.978 +140499,223.15,43.718 +140500,221.3,45.37 +140501,226.1,40.224 +140502,223.9,42.013 +140503,221.88,43.705 +140504,220,45.314 +140505,224.87,40.313 +140506,222.65,42.048 +140507,220.61,43.692 +140508,218.71,45.256 +140509,223.64,40.402 +140510,221.4,42.084 +140511,219.34,43.679 +140512,217.42,45.197 +140513,222.41,40.493 +140514,220.15,42.12 +140515,218.07,43.665 +140516,216.12,45.137 +140517,221.17,40.585 +140518,218.9,42.157 +140519,216.8,43.651 +140520,214.83,45.076 +140521,219.93,40.678 +140522,217.65,42.194 +140523,215.53,43.637 +140524,213.55,45.014 +140525,218.69,40.772 +140526,216.4,42.232 +140527,214.26,43.622 +140528,212.26,44.95 +140529,217.44,40.867 +140530,215.14,42.27 +140531,212.99,43.607 +140532,210.97,44.886 +140533,216.2,40.963 +140534,213.89,42.308 +140535,211.73,43.592 +140536,209.69,44.821 +140537,214.95,41.06 +140538,212.64,42.347 +140539,210.46,43.577 +140540,208.41,44.755 +140541,213.7,41.157 +140542,211.38,42.386 +140543,209.2,43.562 +140544,207.13,44.688 +140545,212.45,41.256 +140546,210.12,42.426 +140547,207.93,43.546 +140548,205.85,44.62 +140549,211.19,41.355 +140550,208.87,42.466 +140551,206.67,43.53 +140552,204.57,44.551 +140553,209.94,41.454 +140554,207.61,42.506 +140555,205.4,43.514 +140556,203.3,44.482 +140557,208.68,41.555 +140558,206.35,42.547 +140559,204.14,43.498 +140560,202.02,44.411 +140561,207.42,41.656 +140562,205.09,42.587 +140563,202.88,43.481 +140564,200.75,44.341 +140565,206.16,41.757 +140566,203.83,42.628 +140567,201.61,43.465 +140568,199.48,44.269 +140569,204.89,41.859 +140570,202.57,42.67 +140571,200.35,43.448 +140572,198.21,44.197 +140573,203.62,41.962 +140574,201.31,42.711 +140575,199.09,43.431 +140576,196.95,44.124 +140577,202.36,42.065 +140578,200.05,42.753 +140579,197.83,43.414 +140580,195.68,44.05 +140581,201.09,42.168 +140582,198.79,42.795 +140583,196.57,43.397 +140584,194.42,43.976 +140585,199.81,42.271 +140586,197.53,42.837 +140587,195.31,43.38 +140588,193.16,43.902 +140589,198.54,42.375 +140590,196.26,42.879 +140591,194.05,43.363 +140592,191.9,43.827 +140593,197.26,42.479 +140594,195,42.922 +140595,192.79,43.346 +140596,190.64,43.752 +140597,195.98,42.583 +140598,193.73,42.965 +140599,191.54,43.329 +140600,189.39,43.676 +140601,194.7,42.687 +140602,192.47,43.007 +140603,190.28,43.312 +140604,188.13,43.601 +140605,193.42,42.791 +140606,191.2,43.05 +140607,189.02,43.294 +140608,186.88,43.524 +140609,192.13,42.895 +140610,189.93,43.093 +140611,187.77,43.277 +140612,185.63,43.448 +140613,190.85,42.999 +140614,188.67,43.136 +140615,186.51,43.26 +140616,184.39,43.372 +140617,189.56,43.103 +140618,187.4,43.179 +140619,185.26,43.243 +140620,183.14,43.295 +140621,188.27,43.207 +140622,186.13,43.223 +140623,184,43.226 +140624,181.9,43.218 +140625,186.98,43.311 +140626,184.86,43.266 +140627,182.75,43.209 +140628,180.66,43.141 +140629,185.69,43.414 +140630,183.59,43.309 +140631,181.5,43.192 +140632,179.42,43.065 +140633,184.39,43.517 +140634,182.32,43.352 +140635,180.25,43.176 +140636,178.18,42.988 +140637,183.09,43.62 +140638,181.04,43.396 +140639,178.99,43.159 +140640,176.94,42.911 +140641,181.79,43.722 +140642,179.77,43.439 +140643,177.74,43.143 +140644,175.71,42.835 +140645,180.49,43.824 +140646,178.5,43.482 +140647,176.49,43.126 +140648,174.48,42.758 +140649,179.19,43.926 +140650,177.22,43.525 +140651,175.24,43.11 +140652,173.25,42.682 +140653,177.89,44.027 +140654,175.95,43.568 +140655,173.99,43.094 +140656,172.02,42.606 +140657,176.58,44.128 +140658,174.67,43.611 +140659,172.74,43.079 +140660,170.79,42.531 +140661,175.28,44.228 +140662,173.4,43.654 +140663,171.5,43.063 +140664,169.57,42.456 +140665,173.97,44.327 +140666,172.12,43.696 +140667,170.25,43.048 +140668,168.35,42.381 +140669,172.66,44.426 +140670,170.84,43.739 +140671,169,43.033 +140672,167.13,42.307 +140673,171.35,44.524 +140674,169.57,43.781 +140675,167.75,43.018 +140676,165.91,42.233 +140677,170.04,44.621 +140678,168.29,43.824 +140679,166.51,43.004 +140680,164.69,42.16 +140681,168.72,44.717 +140682,167.01,43.866 +140683,165.26,42.989 +140684,163.48,42.088 +140685,167.41,44.813 +140686,165.73,43.908 +140687,164.02,42.975 +140688,162.26,42.016 +140689,166.09,44.908 +140690,164.45,43.949 +140691,162.77,42.962 +140692,161.05,41.945 +140693,164.77,45.002 +140694,163.17,43.991 +140695,161.53,42.949 +140696,159.84,41.874 +140697,163.45,45.095 +140698,161.89,44.032 +140699,160.28,42.936 +140700,158.63,41.805 +140701,162.13,45.187 +140702,160.61,44.073 +140703,159.04,42.923 +140704,157.43,41.736 +140705,160.81,45.278 +140706,159.32,44.114 +140707,157.8,42.911 +140708,156.22,41.668 +140709,159.49,45.368 +140710,158.04,44.154 +140711,156.55,42.899 +140712,155.02,41.601 +140713,158.16,45.457 +140714,156.76,44.195 +140715,155.31,42.888 +140716,153.82,41.535 +140717,156.84,45.545 +140718,155.48,44.234 +140719,154.07,42.877 +140720,152.62,41.47 +140721,155.51,45.631 +140722,154.19,44.274 +140723,152.83,42.867 +140724,151.42,41.406 +140725,154.18,45.717 +140726,152.91,44.313 +140727,151.59,42.857 +140728,150.22,41.343 +140729,152.86,45.802 +140730,151.62,44.352 +140731,150.35,42.847 +140732,149.03,41.282 +140733,151.53,45.885 +140734,150.34,44.391 +140735,149.11,42.838 +140736,147.84,41.221 +140737,150.2,45.967 +140738,149.05,44.429 +140739,147.87,42.83 +140740,146.64,41.162 +140741,148.87,46.047 +140742,147.76,44.467 +140743,146.63,42.821 +140744,145.45,41.104 +140745,147.53,46.127 +140746,146.48,44.504 +140747,145.39,42.814 +140748,144.26,41.048 +140749,146.2,46.205 +140750,145.19,44.542 +140751,144.15,42.807 +140752,143.08,40.993 +140753,144.87,46.282 +140754,143.9,44.578 +140755,142.91,42.8 +140756,141.89,40.939 +140757,143.53,46.357 +140758,142.62,44.615 +140759,141.67,42.794 +140760,140.7,40.887 +140761,142.2,46.431 +140762,141.33,44.651 +140763,140.44,42.789 +140764,139.52,40.836 +140765,140.86,46.504 +140766,140.04,44.686 +140767,139.2,42.784 +140768,138.34,40.787 +140769,139.53,46.575 +140770,138.75,44.721 +140771,137.96,42.78 +140772,137.15,40.739 +140773,138.19,46.645 +140774,137.46,44.756 +140775,136.72,42.776 +140776,135.97,40.693 +140777,136.85,46.713 +140778,136.17,44.79 +140779,135.49,42.773 +140780,134.79,40.649 +140781,135.51,46.78 +140782,134.88,44.824 +140783,134.25,42.77 +140784,133.61,40.606 +140785,134.18,46.845 +140786,133.59,44.857 +140787,133.01,42.769 +140788,132.44,40.565 +140789,132.84,46.909 +140790,132.3,44.89 +140791,131.78,42.767 +140792,131.26,40.526 +140793,131.5,46.971 +140794,131.01,44.922 +140795,130.54,42.767 +140796,130.08,40.489 +140797,130.16,47.031 +140798,129.72,44.954 +140799,129.3,42.767 +140800,128.9,40.453 +140801,128.82,47.09 +140802,128.43,44.985 +140803,128.07,42.768 +140804,127.73,40.42 +140805,127.48,47.148 +140806,127.14,45.016 +140807,126.83,42.769 +140808,126.55,40.388 +140809,126.14,47.203 +140810,125.85,45.046 +140811,125.59,42.771 +140812,125.38,40.358 +140813,124.79,47.257 +140814,124.56,45.076 +140815,124.36,42.774 +140816,124.21,40.33 +140817,123.45,47.31 +140818,123.27,45.105 +140819,123.12,42.777 +140820,123.03,40.304 +140821,122.11,47.361 +140822,121.98,45.134 +140823,121.89,42.781 +140824,121.86,40.28 +140825,120.77,47.41 +140826,120.68,45.162 +140827,120.65,42.786 +140828,120.69,40.258 +140829,119.43,47.457 +140830,119.39,45.189 +140831,119.41,42.791 +140832,119.51,40.239 +140833,118.09,47.503 +140834,118.1,45.217 +140835,118.18,42.798 +140836,118.34,40.221 +140837,116.74,47.547 +140838,116.81,45.243 +140839,116.94,42.805 +140840,117.17,40.205 +140841,115.4,47.589 +140842,115.52,45.269 +140843,115.7,42.812 +140844,115.99,40.192 +140845,114.06,47.629 +140846,114.22,45.294 +140847,114.47,42.821 +140848,114.82,40.18 +140849,112.72,47.668 +140850,112.93,45.319 +140851,113.23,42.83 +140852,113.65,40.171 +140853,111.38,47.705 +140854,111.64,45.344 +140855,112,42.84 +140856,112.47,40.164 +140857,110.03,47.741 +140858,110.35,45.367 +140859,110.76,42.85 +140860,111.3,40.159 +140861,108.69,47.774 +140862,109.06,45.391 +140863,109.52,42.861 +140864,110.13,40.157 +140865,107.35,47.806 +140866,107.76,45.413 +140867,108.28,42.873 +140868,108.95,40.156 +140869,106.01,47.836 +140870,106.47,45.435 +140871,107.05,42.886 +140872,107.78,40.158 +140873,104.67,47.864 +140874,105.18,45.457 +140875,105.81,42.9 +140876,106.6,40.162 +140877,103.33,47.891 +140878,103.89,45.478 +140879,104.57,42.914 +140880,105.43,40.169 +140881,101.99,47.916 +140882,102.6,45.498 +140883,103.33,42.929 +140884,104.25,40.177 +140885,100.65,47.939 +140886,101.3,45.518 +140887,102.1,42.945 +140888,103.07,40.188 +140889,99.308,47.96 +140890,100.01,45.537 +140891,100.86,42.961 +140892,101.89,40.201 +140893,97.969,47.979 +140894,98.72,45.555 +140895,99.618,42.979 +140896,100.71,40.216 +140897,96.63,47.997 +140898,97.429,45.573 +140899,98.378,42.997 +140900,99.533,40.234 +140901,95.292,48.013 +140902,96.138,45.591 +140903,97.139,43.015 +140904,98.352,40.254 +140905,93.954,48.027 +140906,94.846,45.608 +140907,95.899,43.035 +140908,97.169,40.276 +140909,92.617,48.039 +140910,93.555,45.624 +140911,94.658,43.055 +140912,95.986,40.3 +140913,91.281,48.05 +140914,92.265,45.64 +140915,93.417,43.076 +140916,94.801,40.326 +140917,89.945,48.059 +140918,90.974,45.655 +140919,92.176,43.098 +140920,93.615,40.355 +140921,88.61,48.066 +140922,89.684,45.669 +140923,90.935,43.12 +140924,92.428,40.386 +140925,87.276,48.071 +140926,88.393,45.683 +140927,89.693,43.143 +140928,91.239,40.419 +140929,85.942,48.075 +140930,87.104,45.697 +140931,88.45,43.167 +140932,90.049,40.455 +140933,84.609,48.077 +140934,85.814,45.709 +140935,87.207,43.192 +140936,88.857,40.492 +140937,83.277,48.077 +140938,84.524,45.722 +140939,85.964,43.217 +140940,87.664,40.532 +140941,81.946,48.076 +140942,83.235,45.734 +140943,84.72,43.244 +140944,86.469,40.574 +140945,80.615,48.073 +140946,81.946,45.745 +140947,83.475,43.27 +140948,85.273,40.618 +140949,79.286,48.068 +140950,80.658,45.755 +140951,82.23,43.298 +140952,84.075,40.664 +140953,77.957,48.061 +140954,79.369,45.766 +140955,80.985,43.326 +140956,82.875,40.713 +140957,76.63,48.053 +140958,78.081,45.775 +140959,79.739,43.355 +140960,81.673,40.763 +140961,75.303,48.043 +140962,76.794,45.784 +140963,78.492,43.385 +140964,80.47,40.816 +140965,73.978,48.032 +140966,75.506,45.793 +140967,77.245,43.415 +140968,79.265,40.87 +140969,72.653,48.019 +140970,74.22,45.801 +140971,75.997,43.446 +140972,78.058,40.927 +140973,71.33,48.004 +140974,72.933,45.808 +140975,74.749,43.478 +140976,76.849,40.985 +140977,70.008,47.988 +140978,71.647,45.815 +140979,73.5,43.51 +140980,75.638,41.045 +140981,68.686,47.97 +140982,70.361,45.822 +140983,72.25,43.543 +140984,74.425,41.108 +140985,67.366,47.951 +140986,69.075,45.828 +140987,71,43.576 +140988,73.21,41.172 +140989,66.048,47.93 +140990,67.79,45.833 +140991,69.749,43.611 +140992,71.993,41.238 +140993,64.73,47.908 +140994,66.506,45.838 +140995,68.497,43.645 +140996,70.773,41.306 +140997,63.414,47.884 +140998,65.222,45.843 +140999,67.245,43.681 +141000,69.552,41.376 +141001,62.099,47.859 +141002,63.938,45.847 +141003,65.992,43.717 +141004,68.329,41.447 +141005,60.785,47.832 +141006,62.654,45.85 +141007,64.738,43.754 +141008,67.103,41.521 +141009,59.473,47.804 +141010,61.372,45.853 +141011,63.484,43.791 +141012,65.875,41.595 +141013,58.162,47.774 +141014,60.089,45.856 +141015,62.229,43.829 +141016,64.645,41.672 +141017,56.853,47.743 +141018,58.807,45.858 +141019,60.973,43.867 +141020,63.413,41.75 +141021,55.544,47.711 +141022,57.526,45.86 +141023,59.717,43.906 +141024,62.179,41.83 +141025,54.238,47.677 +141026,56.245,45.862 +141027,58.46,43.946 +141028,60.942,41.911 +141029,52.933,47.642 +141030,54.964,45.863 +141031,57.202,43.986 +141032,59.703,41.994 +141033,51.629,47.606 +141034,53.684,45.863 +141035,55.943,44.026 +141036,58.462,42.078 +141037,50.327,47.569 +141038,52.405,45.864 +141039,54.684,44.067 +141040,57.219,42.164 +141041,49.026,47.53 +141042,51.126,45.864 +141043,53.424,44.109 +141044,55.973,42.251 +141045,47.727,47.49 +141046,49.847,45.863 +141047,52.163,44.151 +141048,54.725,42.339 +141049,46.43,47.449 +141050,48.569,45.862 +141051,50.901,44.193 +141052,53.475,42.429 +141053,45.134,47.407 +141054,47.292,45.861 +141055,49.639,44.236 +141056,52.222,42.52 +141057,43.839,47.363 +141058,46.015,45.86 +141059,48.376,44.28 +141060,50.968,42.612 +141061,42.547,47.319 +141062,44.739,45.858 +141063,47.112,44.324 +141064,49.711,42.705 +141065,41.256,47.273 +141066,43.463,45.856 +141067,45.847,44.368 +141068,48.451,42.8 +141069,39.967,47.227 +141070,42.187,45.853 +141071,44.582,44.413 +141072,47.19,42.895 +141073,38.679,47.179 +141074,40.913,45.85 +141075,43.316,44.458 +141076,45.926,42.992 +141077,37.393,47.131 +141078,39.639,45.847 +141079,42.049,44.503 +141080,44.66,43.089 +141081,36.109,47.081 +141082,38.365,45.844 +141083,40.781,44.549 +141084,43.391,43.188 +141085,34.827,47.031 +141086,37.092,45.841 +141087,39.513,44.595 +141088,42.121,43.287 +141089,33.547,46.979 +141090,35.819,45.837 +141091,38.243,44.641 +141092,40.848,43.387 +141093,32.268,46.927 +141094,34.547,45.833 +141095,36.973,44.688 +141096,39.573,43.488 +141097,30.991,46.875 +141098,33.276,45.829 +141099,35.702,44.735 +141100,38.296,43.589 +141101,29.716,46.821 +141102,32.005,45.824 +141103,34.431,44.783 +141104,37.016,43.692 +141105,28.443,46.767 +141106,30.735,45.82 +141107,33.159,44.831 +141108,35.735,43.795 +141109,27.171,46.711 +141110,29.466,45.815 +141111,31.885,44.878 +141112,34.451,43.898 +141113,25.902,46.656 +141114,28.197,45.81 +141115,30.612,44.927 +141116,33.166,44.002 +141117,24.634,46.599 +141118,26.928,45.805 +141119,29.337,44.975 +141120,31.878,44.107 +141121,23.368,46.543 +141122,25.66,45.8 +141123,28.061,45.024 +141124,30.588,44.212 +141125,22.104,46.485 +141126,24.393,45.794 +141127,26.785,45.073 +141128,29.296,44.318 +141129,20.842,46.427 +141130,23.126,45.789 +141131,25.508,45.122 +141132,28.002,44.424 +141133,19.582,46.369 +141134,21.86,45.783 +141135,24.231,45.171 +141136,26.706,44.53 +141137,18.323,46.31 +141138,20.594,45.777 +141139,22.952,45.22 +141140,25.408,44.636 +141141,17.067,46.251 +141142,19.329,45.772 +141143,21.673,45.27 +141144,24.108,44.743 +141145,15.812,46.191 +141146,18.065,45.766 +141147,20.393,45.32 +141148,22.806,44.85 +141149,14.56,46.131 +141150,16.801,45.76 +141151,19.113,45.369 +141152,21.502,44.957 +141153,13.309,46.071 +141154,15.538,45.754 +141155,17.831,45.419 +141156,20.196,45.064 +141157,12.06,46.011 +141158,14.275,45.749 +141159,16.549,45.469 +141160,18.889,45.171 +141161,10.813,45.95 +141162,13.013,45.743 +141163,15.267,45.519 +141164,17.579,45.278 +141165,9.5681,45.889 +141166,11.751,45.737 +141167,13.983,45.569 +141168,16.268,45.385 +141169,8.325,45.828 +141170,10.49,45.731 +141171,12.699,45.62 +141172,14.955,45.492 +141173,7.0837,45.767 +141174,9.2296,45.725 +141175,11.414,45.67 +141176,13.641,45.599 +141177,5.8444,45.706 +141178,7.9696,45.72 +141179,10.129,45.72 +141180,12.324,45.706 +141181,4.6069,45.646 +141182,6.7101,45.714 +141183,8.8425,45.77 +141184,11.006,45.812 +141185,3.3713,45.585 +141186,5.4512,45.708 +141187,7.5556,45.82 +141188,9.6866,45.919 +141189,2.1375,45.524 +141190,4.1928,45.703 +141191,6.2681,45.87 +141192,8.3653,46.025 +141193,0.90558,45.463 +141194,2.9348,45.698 +141195,4.98,45.92 +141196,7.0424,46.13 +141197,359.68,45.403 +141198,1.6775,45.692 +141199,3.6912,45.97 +141200,5.718,46.235 +141201,358.45,45.343 +141202,0.42056,45.687 +141203,2.4018,46.02 +141204,4.392,46.34 +141205,357.22,45.283 +141206,359.16,45.683 +141207,1.1118,46.07 +141208,3.0646,46.445 +141209,356,45.223 +141210,357.91,45.678 +141211,359.82,46.12 +141212,1.7357,46.548 +141213,354.77,45.164 +141214,356.65,45.673 +141215,358.53,46.17 +141216,0.40547,46.652 +141217,353.55,45.105 +141218,355.4,45.669 +141219,357.24,46.219 +141220,359.07,46.754 +141221,352.33,45.046 +141222,354.14,45.665 +141223,355.95,46.268 +141224,357.74,46.856 +141225,351.12,44.988 +141226,352.89,45.661 +141227,354.65,46.318 +141228,356.41,46.958 +141229,349.9,44.931 +141230,351.64,45.657 +141231,353.36,46.367 +141232,355.07,47.058 +141233,348.68,44.874 +141234,350.38,45.654 +141235,352.07,46.415 +141236,353.73,47.158 +141237,347.47,44.818 +141238,349.13,45.651 +141239,350.77,46.464 +141240,352.4,47.258 +141241,346.26,44.762 +141242,347.88,45.648 +141243,349.48,46.513 +141244,351.06,47.356 +141245,345.05,44.707 +141246,346.63,45.645 +141247,348.18,46.561 +141248,349.72,47.454 +141249,343.84,44.653 +141250,345.37,45.643 +141251,346.88,46.609 +141252,348.38,47.55 +141253,342.64,44.6 +141254,344.12,45.641 +141255,345.59,46.656 +141256,347.03,47.646 +141257,341.43,44.547 +141258,342.87,45.639 +141259,344.29,46.704 +141260,345.69,47.741 +141261,340.23,44.495 +141262,341.62,45.638 +141263,342.99,46.751 +141264,344.34,47.835 +141265,339.03,44.445 +141266,340.37,45.637 +141267,341.69,46.798 +141268,343,47.928 +141269,337.83,44.395 +141270,339.12,45.637 +141271,340.4,46.845 +141272,341.65,48.019 +141273,336.63,44.346 +141274,337.87,45.636 +141275,339.1,46.891 +141276,340.31,48.11 +141277,335.43,44.298 +141278,336.62,45.637 +141279,337.8,46.937 +141280,338.96,48.2 +141281,334.23,44.251 +141282,335.37,45.637 +141283,336.5,46.982 +141284,337.61,48.288 +141285,333.04,44.206 +141286,334.13,45.638 +141287,335.2,47.028 +141288,336.26,48.376 +141289,331.84,44.161 +141290,332.88,45.64 +141291,333.9,47.073 +141292,334.91,48.462 +141293,330.65,44.118 +141294,331.63,45.642 +141295,332.6,47.117 +141296,333.56,48.547 +141297,329.46,44.075 +141298,330.38,45.644 +141299,331.3,47.162 +141300,332.2,48.631 +141301,328.27,44.035 +141302,329.13,45.647 +141303,329.99,47.205 +141304,330.85,48.714 +141305,327.08,43.995 +141306,327.89,45.65 +141307,328.69,47.249 +141308,329.5,48.795 +141309,325.89,43.957 +141310,326.64,45.654 +141311,327.39,47.292 +141312,328.15,48.875 +141313,324.7,43.92 +141314,325.39,45.658 +141315,326.09,47.335 +141316,326.79,48.953 +141317,323.51,43.884 +141318,324.14,45.663 +141319,324.79,47.377 +141320,325.44,49.031 +141321,322.33,43.85 +141322,322.9,45.668 +141323,323.48,47.419 +141324,324.08,49.107 +141325,321.14,43.817 +141326,321.65,45.674 +141327,322.18,47.46 +141328,322.73,49.181 +141329,319.95,43.786 +141330,320.4,45.68 +141331,320.88,47.501 +141332,321.37,49.254 +141333,318.77,43.757 +141334,319.16,45.687 +141335,319.57,47.541 +141336,320.01,49.326 +141337,317.59,43.728 +141338,317.91,45.695 +141339,318.27,47.581 +141340,318.66,49.396 +141341,316.4,43.702 +141342,316.66,45.703 +141343,316.97,47.621 +141344,317.3,49.465 +141345,315.22,43.677 +141346,315.42,45.711 +141347,315.66,47.66 +141348,315.94,49.532 +141349,314.04,43.654 +141350,314.17,45.72 +141351,314.36,47.698 +141352,314.59,49.598 +141353,312.85,43.632 +141354,312.92,45.73 +141355,313.05,47.737 +141356,313.23,49.662 +141357,311.67,43.612 +141358,311.68,45.74 +141359,311.75,47.774 +141360,311.87,49.725 +141361,310.49,43.594 +141362,310.43,45.751 +141363,310.44,47.811 +141364,310.51,49.786 +141365,309.31,43.578 +141366,309.19,45.762 +141367,309.14,47.848 +141368,309.16,49.846 +141369,308.13,43.563 +141370,307.94,45.774 +141371,307.83,47.884 +141372,307.8,49.904 +141373,306.95,43.55 +141374,306.69,45.787 +141375,306.53,47.92 +141376,306.44,49.96 +141377,305.77,43.539 +141378,305.44,45.8 +141379,305.22,47.955 +141380,305.08,50.015 +141381,304.58,43.53 +141382,304.2,45.814 +141383,303.92,47.989 +141384,303.73,50.069 +141385,303.4,43.523 +141386,302.95,45.829 +141387,302.61,48.023 +141388,302.37,50.12 +141389,302.22,43.518 +141390,301.7,45.844 +141391,301.31,48.057 +141392,301.01,50.17 +141393,301.04,43.514 +141394,300.46,45.86 +141395,300,48.09 +141396,299.65,50.219 +141397,299.85,43.512 +141398,299.21,45.876 +141399,298.7,48.122 +141400,298.3,50.265 +141401,298.67,43.513 +141402,297.96,45.893 +141403,297.39,48.154 +141404,296.94,50.31 +141405,297.49,43.515 +141406,296.71,45.911 +141407,296.09,48.185 +141408,295.58,50.354 +141409,296.3,43.519 +141410,295.46,45.929 +141411,294.78,48.216 +141412,294.23,50.396 +141413,295.12,43.525 +141414,294.22,45.948 +141415,293.48,48.246 +141416,292.87,50.436 +141417,293.93,43.533 +141418,292.97,45.968 +141419,292.18,48.276 +141420,291.52,50.474 +141421,292.75,43.543 +141422,291.72,45.988 +141423,290.87,48.305 +141424,290.16,50.511 +141425,291.56,43.555 +141426,290.47,46.009 +141427,289.57,48.333 +141428,288.81,50.546 +141429,290.37,43.569 +141430,289.22,46.031 +141431,288.26,48.361 +141432,287.45,50.579 +141433,289.18,43.585 +141434,287.97,46.053 +141435,286.96,48.389 +141436,286.1,50.611 +141437,287.99,43.603 +141438,286.72,46.076 +141439,285.65,48.416 +141440,284.75,50.641 +141441,286.8,43.624 +141442,285.47,46.1 +141443,284.35,48.442 +141444,283.4,50.67 +141445,285.61,43.646 +141446,284.22,46.124 +141447,283.05,48.468 +141448,282.04,50.696 +141449,284.42,43.67 +141450,282.97,46.149 +141451,281.74,48.493 +141452,280.69,50.721 +141453,283.22,43.696 +141454,281.71,46.175 +141455,280.44,48.518 +141456,279.34,50.745 +141457,282.03,43.724 +141458,280.46,46.201 +141459,279.14,48.542 +141460,277.99,50.766 +141461,280.83,43.754 +141462,279.21,46.228 +141463,277.83,48.565 +141464,276.64,50.786 +141465,279.63,43.786 +141466,277.95,46.255 +141467,276.53,48.588 +141468,275.3,50.805 +141469,278.43,43.82 +141470,276.7,46.284 +141471,275.23,48.611 +141472,273.95,50.822 +141473,277.23,43.856 +141474,275.45,46.313 +141475,273.93,48.632 +141476,272.6,50.837 +141477,276.03,43.894 +141478,274.19,46.342 +141479,272.62,48.654 +141480,271.26,50.85 +141481,274.82,43.934 +141482,272.94,46.372 +141483,271.32,48.675 +141484,269.91,50.862 +141485,273.62,43.976 +141486,271.68,46.403 +141487,270.02,48.695 +141488,268.57,50.872 +141489,272.41,44.019 +141490,270.42,46.434 +141491,268.72,48.715 +141492,267.23,50.88 +141493,271.2,44.065 +141494,269.17,46.466 +141495,267.42,48.734 +141496,265.89,50.887 +141497,269.99,44.113 +141498,267.91,46.499 +141499,266.12,48.752 +141500,264.55,50.893 +141501,268.77,44.162 +141502,266.65,46.532 +141503,264.82,48.77 +141504,263.21,50.897 +141505,267.56,44.214 +141506,265.39,46.566 +141507,263.52,48.788 +141508,261.87,50.899 +141509,266.34,44.267 +141510,264.13,46.601 +141511,262.22,48.805 +141512,260.53,50.899 +141513,265.12,44.322 +141514,262.87,46.636 +141515,260.92,48.822 +141516,259.2,50.899 +141517,263.9,44.379 +141518,261.61,46.672 +141519,259.62,48.838 +141520,257.86,50.896 +141521,262.68,44.437 +141522,260.35,46.708 +141523,258.32,48.853 +141524,256.53,50.892 +141525,261.45,44.498 +141526,259.09,46.745 +141527,257.03,48.868 +141528,255.19,50.887 +141529,260.22,44.56 +141530,257.83,46.782 +141531,255.73,48.883 +141532,253.86,50.88 +141533,258.99,44.624 +141534,256.56,46.82 +141535,254.43,48.897 +141536,252.53,50.871 +141537,257.76,44.689 +141538,255.3,46.859 +141539,253.14,48.911 +141540,251.2,50.862 +141541,256.53,44.757 +141542,254.03,46.898 +141543,251.84,48.924 +141544,249.88,50.85 +141545,255.29,44.826 +141546,252.77,46.938 +141547,250.54,48.936 +141548,248.55,50.838 +141549,254.05,44.896 +141550,251.5,46.978 +141551,249.25,48.949 +141552,247.23,50.823 +141553,252.81,44.968 +141554,250.24,47.019 +141555,247.95,48.96 +141556,245.9,50.808 +141557,251.57,45.042 +141558,248.97,47.06 +141559,246.66,48.972 +141560,244.58,50.791 +141561,250.33,45.117 +141562,247.7,47.102 +141563,245.37,48.983 +141564,243.26,50.773 +141565,249.08,45.194 +141566,246.43,47.144 +141567,244.07,48.993 +141568,241.94,50.754 +141569,247.83,45.272 +141570,245.16,47.187 +141571,242.78,49.003 +141572,240.63,50.733 +141573,246.58,45.351 +141574,243.89,47.231 +141575,241.49,49.013 +141576,239.31,50.711 +141577,245.32,45.432 +141578,242.62,47.274 +141579,240.2,49.022 +141580,238,50.688 +141581,244.07,45.514 +141582,241.35,47.319 +141583,238.91,49.031 +141584,236.69,50.663 +141585,242.81,45.598 +141586,240.08,47.363 +141587,237.62,49.039 +141588,235.37,50.638 +141589,241.55,45.683 +141590,238.8,47.408 +141591,236.33,49.047 +141592,234.07,50.611 +141593,240.28,45.769 +141594,237.53,47.454 +141595,235.04,49.055 +141596,232.76,50.583 +141597,239.02,45.856 +141598,236.25,47.5 +141599,233.75,49.062 +141600,231.45,50.554 +141601,237.75,45.945 +141602,234.98,47.546 +141603,232.46,49.069 +141604,230.15,50.524 +141605,236.48,46.034 +141606,233.7,47.593 +141607,231.17,49.076 +141608,228.85,50.492 +141609,235.21,46.125 +141610,232.42,47.64 +141611,229.88,49.082 +141612,227.54,50.46 +141613,233.93,46.216 +141614,231.14,47.688 +141615,228.6,49.088 +141616,226.25,50.427 +141617,232.66,46.309 +141618,229.87,47.736 +141619,227.31,49.094 +141620,224.95,50.393 +141621,231.38,46.403 +141622,228.59,47.784 +141623,226.03,49.099 +141624,223.65,50.357 +141625,230.09,46.497 +141626,227.31,47.832 +141627,224.74,49.104 +141628,222.36,50.321 +141629,228.81,46.593 +141630,226.02,47.881 +141631,223.46,49.109 +141632,221.07,50.284 +141633,227.52,46.689 +141634,224.74,47.93 +141635,222.17,49.114 +141636,219.78,50.247 +141637,226.23,46.786 +141638,223.46,47.98 +141639,220.89,49.118 +141640,218.49,50.208 +141641,224.94,46.884 +141642,222.18,48.03 +141643,219.61,49.122 +141644,217.2,50.168 +141645,223.65,46.983 +141646,220.89,48.08 +141647,218.32,49.126 +141648,215.92,50.128 +141649,222.36,47.082 +141650,219.61,48.13 +141651,217.04,49.13 +141652,214.63,50.087 +141653,221.06,47.182 +141654,218.32,48.18 +141655,215.76,49.133 +141656,213.35,50.046 +141657,219.76,47.283 +141658,217.03,48.231 +141659,214.48,49.137 +141660,212.07,50.003 +141661,218.46,47.384 +141662,215.75,48.282 +141663,213.2,49.14 +141664,210.79,49.961 +141665,217.15,47.485 +141666,214.46,48.333 +141667,211.92,49.143 +141668,209.52,49.917 +141669,215.85,47.587 +141670,213.17,48.385 +141671,210.64,49.145 +141672,208.25,49.873 +141673,214.54,47.69 +141674,211.88,48.436 +141675,209.36,49.148 +141676,206.97,49.828 +141677,213.23,47.793 +141678,210.59,48.488 +141679,208.09,49.15 +141680,205.7,49.783 +141681,211.92,47.896 +141682,209.3,48.54 +141683,206.81,49.153 +141684,204.44,49.738 +141685,210.6,47.999 +141686,208.01,48.592 +141687,205.53,49.155 +141688,203.17,49.692 +141689,209.28,48.103 +141690,206.71,48.644 +141691,204.26,49.157 +141692,201.9,49.646 +141693,207.97,48.207 +141694,205.42,48.696 +141695,202.98,49.159 +141696,200.64,49.599 +141697,206.65,48.311 +141698,204.12,48.749 +141699,201.71,49.161 +141700,199.38,49.552 +141701,205.32,48.416 +141702,202.83,48.801 +141703,200.43,49.163 +141704,198.12,49.505 +141705,204,48.52 +141706,201.53,48.854 +141707,199.16,49.165 +141708,196.87,49.457 +141709,202.68,48.624 +141710,200.24,48.906 +141711,197.89,49.167 +141712,195.61,49.41 +141713,201.35,48.729 +141714,198.94,48.959 +141715,196.61,49.169 +141716,194.36,49.362 +141717,200.02,48.833 +141718,197.64,49.011 +141719,195.34,49.171 +141720,193.11,49.314 +141721,198.69,48.937 +141722,196.34,49.064 +141723,194.07,49.173 +141724,191.86,49.266 +141725,197.35,49.042 +141726,195.05,49.117 +141727,192.8,49.175 +141728,190.61,49.218 +141729,196.02,49.146 +141730,193.75,49.169 +141731,191.53,49.177 +141732,189.36,49.17 +141733,194.68,49.249 +141734,192.45,49.222 +141735,190.26,49.179 +141736,188.12,49.122 +141737,193.35,49.353 +141738,191.15,49.274 +141739,188.99,49.181 +141740,186.88,49.074 +141741,192.01,49.456 +141742,189.84,49.327 +141743,187.72,49.183 +141744,185.64,49.026 +141745,190.67,49.559 +141746,188.54,49.379 +141747,186.45,49.185 +141748,184.4,48.979 +141749,189.32,49.662 +141750,187.24,49.432 +141751,185.18,49.187 +141752,183.16,48.931 +141753,187.98,49.764 +141754,185.93,49.484 +141755,183.92,49.19 +141756,181.93,48.884 +141757,186.64,49.866 +141758,184.63,49.536 +141759,182.65,49.192 +141760,180.69,48.837 +141761,185.29,49.967 +141762,183.33,49.588 +141763,181.38,49.195 +141764,179.46,48.79 +141765,183.94,50.068 +141766,182.02,49.64 +141767,180.12,49.198 +141768,178.23,48.744 +141769,182.59,50.168 +141770,180.72,49.692 +141771,178.85,49.201 +141772,177,48.698 +141773,181.24,50.268 +141774,179.41,49.743 +141775,177.59,49.204 +141776,175.78,48.652 +141777,179.89,50.367 +141778,178.1,49.795 +141779,176.32,49.208 +141780,174.55,48.607 +141781,178.54,50.466 +141782,176.79,49.846 +141783,175.06,49.211 +141784,173.33,48.562 +141785,177.18,50.563 +141786,175.49,49.897 +141787,173.79,49.215 +141788,172.11,48.518 +141789,175.83,50.66 +141790,174.18,49.948 +141791,172.53,49.219 +141792,170.88,48.475 +141793,174.47,50.757 +141794,172.87,49.998 +141795,171.27,49.223 +141796,169.67,48.432 +141797,173.11,50.852 +141798,171.56,50.049 +141799,170.01,49.228 +141800,168.45,48.39 +141801,171.76,50.947 +141802,170.25,50.099 +141803,168.74,49.232 +141804,167.23,48.348 +141805,170.4,51.041 +141806,168.94,50.149 +141807,167.48,49.237 +141808,166.02,48.307 +141809,169.04,51.134 +141810,167.63,50.199 +141811,166.22,49.243 +141812,164.8,48.267 +141813,167.67,51.226 +141814,166.32,50.248 +141815,164.96,49.248 +141816,163.59,48.228 +141817,166.31,51.317 +141818,165.01,50.297 +141819,163.7,49.254 +141820,162.38,48.189 +141821,164.95,51.407 +141822,163.7,50.346 +141823,162.44,49.26 +141824,161.17,48.152 +141825,163.59,51.497 +141826,162.38,50.394 +141827,161.18,49.267 +141828,159.96,48.115 +141829,162.22,51.585 +141830,161.07,50.443 +141831,159.92,49.274 +141832,158.76,48.079 +141833,160.86,51.672 +141834,159.76,50.49 +141835,158.66,49.281 +141836,157.55,48.044 +141837,159.49,51.758 +141838,158.44,50.538 +141839,157.4,49.289 +141840,156.35,48.01 +141841,158.12,51.843 +141842,157.13,50.585 +141843,156.14,49.297 +141844,155.14,47.978 +141845,156.76,51.927 +141846,155.82,50.632 +141847,154.88,49.305 +141848,153.94,47.946 +141849,155.39,52.01 +141850,154.5,50.678 +141851,153.62,49.314 +141852,152.74,47.915 +141853,154.02,52.091 +141854,153.19,50.725 +141855,152.36,49.323 +141856,151.54,47.886 +141857,152.65,52.171 +141858,151.87,50.77 +141859,151.1,49.332 +141860,150.34,47.857 +141861,151.28,52.251 +141862,150.56,50.816 +141863,149.84,49.342 +141864,149.14,47.83 +141865,149.91,52.328 +141866,149.24,50.86 +141867,148.58,49.353 +141868,147.94,47.804 +141869,148.54,52.405 +141870,147.93,50.905 +141871,147.33,49.364 +141872,146.74,47.779 +141873,147.17,52.48 +141874,146.61,50.949 +141875,146.07,49.375 +141876,145.55,47.756 +141877,145.8,52.554 +141878,145.29,50.993 +141879,144.81,49.387 +141880,144.35,47.734 +141881,144.43,52.627 +141882,143.98,51.036 +141883,143.55,49.399 +141884,143.15,47.713 +141885,143.06,52.699 +141886,142.66,51.079 +141887,142.29,49.411 +141888,141.96,47.694 +141889,141.69,52.769 +141890,141.35,51.121 +141891,141.04,49.425 +141892,140.76,47.676 +141893,140.31,52.837 +141894,140.03,51.163 +141895,139.78,49.438 +141896,139.57,47.659 +141897,138.94,52.904 +141898,138.71,51.205 +141899,138.52,49.452 +141900,138.38,47.644 +141901,137.57,52.97 +141902,137.4,51.246 +141903,137.26,49.467 +141904,137.18,47.63 +141905,136.2,53.035 +141906,136.08,51.286 +141907,136.01,49.482 +141908,135.99,47.618 +141909,134.83,53.098 +141910,134.76,51.326 +141911,134.75,49.497 +141912,134.79,47.607 +141913,133.45,53.159 +141914,133.44,51.366 +141915,133.49,49.514 +141916,133.6,47.598 +141917,132.08,53.219 +141918,132.13,51.405 +141919,132.23,49.53 +141920,132.41,47.59 +141921,130.71,53.278 +141922,130.81,51.443 +141923,130.97,49.547 +141924,131.22,47.584 +141925,129.34,53.335 +141926,129.49,51.482 +141927,129.71,49.565 +141928,130.02,47.58 +141929,127.97,53.391 +141930,128.17,51.519 +141931,128.46,49.583 +141932,128.83,47.577 +141933,126.6,53.445 +141934,126.86,51.556 +141935,127.2,49.602 +141936,127.64,47.576 +141937,125.22,53.497 +141938,125.54,51.593 +141939,125.94,49.621 +141940,126.44,47.576 +141941,123.85,53.548 +141942,124.22,51.629 +141943,124.68,49.641 +141944,125.25,47.578 +141945,122.48,53.598 +141946,122.91,51.664 +141947,123.42,49.662 +141948,124.05,47.582 +141949,121.11,53.646 +141950,121.59,51.7 +141951,122.16,49.682 +141952,122.86,47.587 +141953,119.74,53.692 +141954,120.27,51.734 +141955,120.9,49.704 +141956,121.66,47.594 +141957,118.37,53.737 +141958,118.95,51.768 +141959,119.64,49.726 +141960,120.47,47.603 +141961,117,53.78 +141962,117.64,51.802 +141963,118.38,49.749 +141964,119.27,47.613 +141965,115.64,53.822 +141966,116.32,51.835 +141967,117.12,49.772 +141968,118.07,47.626 +141969,114.27,53.862 +141970,115,51.867 +141971,115.86,49.796 +141972,116.88,47.64 +141973,112.9,53.901 +141974,113.69,51.899 +141975,114.6,49.82 +141976,115.68,47.655 +141977,111.53,53.938 +141978,112.37,51.93 +141979,113.34,49.845 +141980,114.48,47.673 +141981,110.17,53.974 +141982,111.05,51.961 +141983,112.08,49.87 +141984,113.28,47.692 +141985,108.8,54.007 +141986,109.74,51.991 +141987,110.82,49.896 +141988,112.08,47.713 +141989,107.44,54.04 +141990,108.42,52.021 +141991,109.56,49.923 +141992,110.87,47.735 +141993,106.07,54.071 +141994,107.11,52.05 +141995,108.29,49.95 +141996,109.67,47.76 +141997,104.71,54.1 +141998,105.79,52.079 +141999,107.03,49.978 +142000,108.47,47.786 +142001,103.34,54.127 +142002,104.48,52.107 +142003,105.77,50.006 +142004,107.26,47.814 +142005,101.98,54.153 +142006,103.16,52.135 +142007,104.5,50.035 +142008,106.05,47.844 +142009,100.62,54.178 +142010,101.85,52.162 +142011,103.24,50.065 +142012,104.85,47.875 +142013,99.26,54.201 +142014,100.53,52.189 +142015,101.97,50.095 +142016,103.64,47.908 +142017,97.901,54.222 +142018,99.217,52.215 +142019,100.71,50.126 +142020,102.42,47.943 +142021,96.542,54.242 +142022,97.903,52.24 +142023,99.444,50.157 +142024,101.21,47.98 +142025,95.184,54.261 +142026,96.589,52.265 +142027,98.178,50.188 +142028,99.999,48.018 +142029,93.827,54.277 +142030,95.276,52.29 +142031,96.912,50.221 +142032,98.783,48.059 +142033,92.472,54.293 +142034,93.963,52.314 +142035,95.644,50.254 +142036,97.566,48.1 +142037,91.117,54.306 +142038,92.65,52.337 +142039,94.377,50.287 +142040,96.348,48.144 +142041,89.763,54.319 +142042,91.338,52.36 +142043,93.109,50.321 +142044,95.128,48.189 +142045,88.411,54.329 +142046,90.026,52.383 +142047,91.84,50.355 +142048,93.906,48.236 +142049,87.059,54.339 +142050,88.714,52.405 +142051,90.571,50.391 +142052,92.682,48.285 +142053,85.709,54.346 +142054,87.403,52.426 +142055,89.301,50.426 +142056,91.456,48.335 +142057,84.36,54.353 +142058,86.092,52.447 +142059,88.03,50.462 +142060,90.229,48.387 +142061,83.012,54.358 +142062,84.781,52.468 +142063,86.759,50.499 +142064,89,48.44 +142065,81.665,54.361 +142066,83.471,52.488 +142067,85.488,50.536 +142068,87.769,48.495 +142069,80.32,54.363 +142070,82.162,52.507 +142071,84.215,50.574 +142072,86.536,48.552 +142073,78.976,54.364 +142074,80.853,52.526 +142075,82.942,50.612 +142076,85.301,48.61 +142077,77.633,54.363 +142078,79.544,52.545 +142079,81.669,50.651 +142080,84.064,48.67 +142081,76.292,54.361 +142082,78.235,52.563 +142083,80.395,50.69 +142084,82.825,48.731 +142085,74.952,54.357 +142086,76.928,52.58 +142087,79.12,50.729 +142088,81.584,48.794 +142089,73.613,54.353 +142090,75.62,52.598 +142091,77.844,50.77 +142092,80.341,48.859 +142093,72.276,54.346 +142094,74.313,52.614 +142095,76.568,50.81 +142096,79.095,48.924 +142097,70.94,54.339 +142098,73.007,52.631 +142099,75.291,50.851 +142100,77.848,48.992 +142101,69.605,54.33 +142102,71.701,52.646 +142103,74.013,50.893 +142104,76.598,49.06 +142105,68.272,54.32 +142106,70.395,52.662 +142107,72.735,50.935 +142108,75.347,49.13 +142109,66.941,54.309 +142110,69.09,52.677 +142111,71.456,50.977 +142112,74.093,49.202 +142113,65.611,54.296 +142114,67.786,52.691 +142115,70.176,51.02 +142116,72.837,49.274 +142117,64.283,54.283 +142118,66.482,52.705 +142119,68.896,51.064 +142120,71.578,49.348 +142121,62.956,54.268 +142122,65.178,52.719 +142123,67.615,51.107 +142124,70.318,49.424 +142125,61.631,54.252 +142126,63.875,52.733 +142127,66.333,51.152 +142128,69.055,49.5 +142129,60.307,54.235 +142130,62.573,52.746 +142131,65.05,51.196 +142132,67.79,49.578 +142133,58.985,54.216 +142134,61.271,52.758 +142135,63.767,51.241 +142136,66.522,49.657 +142137,57.664,54.197 +142138,59.97,52.771 +142139,62.483,51.287 +142140,65.253,49.737 +142141,56.346,54.177 +142142,58.669,52.782 +142143,61.198,51.332 +142144,63.981,49.818 +142145,55.029,54.155 +142146,57.369,52.794 +142147,59.912,51.378 +142148,62.706,49.9 +142149,53.713,54.133 +142150,56.069,52.805 +142151,58.626,51.425 +142152,61.43,49.984 +142153,52.4,54.109 +142154,54.77,52.816 +142155,57.339,51.472 +142156,60.151,50.068 +142157,51.088,54.085 +142158,53.472,52.827 +142159,56.051,51.519 +142160,58.87,50.154 +142161,49.777,54.059 +142162,52.174,52.837 +142163,54.762,51.566 +142164,57.586,50.24 +142165,48.469,54.033 +142166,50.876,52.847 +142167,53.473,51.614 +142168,56.301,50.327 +142169,47.162,54.006 +142170,49.579,52.857 +142171,52.183,51.662 +142172,55.013,50.415 +142173,45.857,53.978 +142174,48.283,52.866 +142175,50.892,51.71 +142176,53.723,50.504 +142177,44.554,53.949 +142178,46.987,52.875 +142179,49.6,51.759 +142180,52.43,50.594 +142181,43.253,53.919 +142182,45.692,52.884 +142183,48.308,51.808 +142184,51.135,50.685 +142185,41.953,53.889 +142186,44.398,52.893 +142187,47.015,51.857 +142188,49.838,50.776 +142189,40.655,53.858 +142190,43.104,52.901 +142191,45.721,51.906 +142192,48.539,50.868 +142193,39.359,53.826 +142194,41.811,52.909 +142195,44.426,51.956 +142196,47.238,50.961 +142197,38.065,53.793 +142198,40.518,52.917 +142199,43.131,52.006 +142200,45.934,51.054 +142201,36.773,53.76 +142202,39.226,52.925 +142203,41.834,52.056 +142204,44.628,51.148 +142205,35.483,53.726 +142206,37.934,52.932 +142207,40.538,52.106 +142208,43.32,51.243 +142209,34.194,53.692 +142210,36.643,52.94 +142211,39.24,52.156 +142212,42.01,51.338 +142213,32.907,53.657 +142214,35.353,52.947 +142215,37.941,52.207 +142216,40.698,51.433 +142217,31.622,53.621 +142218,34.063,52.954 +142219,36.642,52.258 +142220,39.384,51.529 +142221,30.339,53.585 +142222,32.774,52.961 +142223,35.342,52.309 +142224,38.067,51.626 +142225,29.058,53.549 +142226,31.485,52.967 +142227,34.042,52.36 +142228,36.749,51.722 +142229,27.779,53.512 +142230,30.197,52.974 +142231,32.74,52.411 +142232,35.428,51.819 +142233,26.501,53.475 +142234,28.91,52.98 +142235,31.438,52.462 +142236,34.106,51.917 +142237,25.225,53.437 +142238,27.623,52.987 +142239,30.135,52.513 +142240,32.781,52.014 +142241,23.952,53.4 +142242,26.337,52.993 +142243,28.832,52.565 +142244,31.454,52.112 +142245,22.68,53.361 +142246,25.051,52.999 +142247,27.528,52.616 +142248,30.126,52.21 +142249,21.409,53.323 +142250,23.766,53.005 +142251,26.223,52.668 +142252,28.795,52.308 +142253,20.141,53.284 +142254,22.481,53.011 +142255,24.917,52.72 +142256,27.463,52.407 +142257,18.875,53.245 +142258,21.197,53.017 +142259,23.611,52.771 +142260,26.129,52.505 +142261,17.61,53.207 +142262,19.914,53.023 +142263,22.304,52.823 +142264,24.793,52.603 +142265,16.347,53.167 +142266,18.631,53.029 +142267,20.996,52.875 +142268,23.455,52.702 +142269,15.086,53.128 +142270,17.348,53.035 +142271,19.688,52.927 +142272,22.115,52.8 +142273,13.827,53.089 +142274,16.067,53.041 +142275,18.379,52.978 +142276,20.774,52.898 +142277,12.57,53.05 +142278,14.785,53.047 +142279,17.069,53.03 +142280,19.431,52.996 +142281,11.314,53.011 +142282,13.504,53.053 +142283,15.759,53.082 +142284,18.086,53.094 +142285,10.06,52.972 +142286,12.224,53.059 +142287,14.448,53.133 +142288,16.74,53.192 +142289,8.8081,52.933 +142290,10.944,53.065 +142291,13.137,53.185 +142292,15.392,53.289 +142293,7.5577,52.894 +142294,9.6652,53.071 +142295,11.825,53.236 +142296,14.042,53.387 +142297,6.3091,52.855 +142298,8.3864,53.077 +142299,10.512,53.288 +142300,12.691,53.484 +142301,5.0621,52.816 +142302,7.1082,53.084 +142303,9.1986,53.339 +142304,11.339,53.58 +142305,3.8168,52.778 +142306,5.8304,53.09 +142307,7.8847,53.39 +142308,9.9844,53.676 +142309,2.5732,52.74 +142310,4.5532,53.096 +142311,6.5703,53.441 +142312,8.6289,53.772 +142313,1.3312,52.702 +142314,3.2763,53.103 +142315,5.2553,53.492 +142316,7.2719,53.868 +142317,0.090881,52.665 +142318,2,53.11 +142319,3.9397,53.543 +142320,5.9136,53.962 +142321,358.85,52.628 +142322,0.72408,53.117 +142323,2.6236,53.594 +142324,4.554,54.057 +142325,357.61,52.591 +142326,359.45,53.124 +142327,1.307,53.644 +142328,3.1931,54.151 +142329,356.38,52.555 +142330,358.17,53.131 +142331,359.99,53.694 +142332,1.8309,54.244 +142333,355.15,52.519 +142334,356.9,53.138 +142335,358.67,53.744 +142336,0.46751,54.337 +142337,353.91,52.484 +142338,355.62,53.146 +142339,357.35,53.794 +142340,359.1,54.429 +142341,352.68,52.45 +142342,354.35,53.153 +142343,356.04,53.844 +142344,357.74,54.52 +142345,351.45,52.416 +142346,353.08,53.161 +142347,354.72,53.893 +142348,356.37,54.611 +142349,350.22,52.382 +142350,351.8,53.169 +142351,353.4,53.943 +142352,355,54.701 +142353,349,52.349 +142354,350.53,53.178 +142355,352.08,53.992 +142356,353.63,54.79 +142357,347.77,52.317 +142358,349.26,53.186 +142359,350.76,54.04 +142360,352.26,54.878 +142361,346.55,52.286 +142362,347.99,53.195 +142363,349.44,54.089 +142364,350.89,54.966 +142365,345.32,52.255 +142366,346.72,53.204 +142367,348.11,54.137 +142368,349.52,55.053 +142369,344.1,52.225 +142370,345.44,53.214 +142371,346.79,54.185 +142372,348.15,55.138 +142373,342.88,52.196 +142374,344.17,53.223 +142375,345.47,54.233 +142376,346.77,55.223 +142377,341.66,52.168 +142378,342.9,53.233 +142379,344.15,54.28 +142380,345.4,55.307 +142381,340.44,52.141 +142382,341.63,53.244 +142383,342.83,54.327 +142384,344.03,55.39 +142385,339.23,52.114 +142386,340.36,53.254 +142387,341.5,54.374 +142388,342.65,55.473 +142389,338.01,52.089 +142390,339.09,53.265 +142391,340.18,54.42 +142392,341.27,55.554 +142393,336.8,52.064 +142394,337.82,53.276 +142395,338.86,54.466 +142396,339.9,55.634 +142397,335.58,52.04 +142398,336.55,53.288 +142399,337.53,54.512 +142400,338.52,55.713 +142401,334.37,52.018 +142402,335.28,53.3 +142403,336.21,54.557 +142404,337.14,55.791 +142405,333.16,51.996 +142406,334.01,53.312 +142407,334.88,54.602 +142408,335.76,55.867 +142409,331.94,51.976 +142410,332.75,53.324 +142411,333.56,54.647 +142412,334.38,55.943 +142413,330.73,51.956 +142414,331.48,53.337 +142415,332.23,54.691 +142416,333,56.018 +142417,329.52,51.938 +142418,330.21,53.351 +142419,330.91,54.735 +142420,331.62,56.091 +142421,328.31,51.921 +142422,328.94,53.364 +142423,329.58,54.779 +142424,330.24,56.163 +142425,327.11,51.905 +142426,327.67,53.378 +142427,328.26,54.822 +142428,328.86,56.234 +142429,325.9,51.89 +142430,326.4,53.393 +142431,326.93,54.864 +142432,327.48,56.304 +142433,324.69,51.876 +142434,325.14,53.408 +142435,325.61,54.906 +142436,326.1,56.373 +142437,323.48,51.864 +142438,323.87,53.423 +142439,324.28,54.948 +142440,324.72,56.44 +142441,322.28,51.853 +142442,322.6,53.439 +142443,322.95,54.99 +142444,323.33,56.506 +142445,321.07,51.843 +142446,321.33,53.455 +142447,321.63,55.031 +142448,321.95,56.571 +142449,319.87,51.835 +142450,320.06,53.472 +142451,320.3,55.071 +142452,320.57,56.634 +142453,318.66,51.827 +142454,318.8,53.489 +142455,318.97,55.111 +142456,319.19,56.697 +142457,317.45,51.822 +142458,317.53,53.506 +142459,317.65,55.151 +142460,317.8,56.757 +142461,316.25,51.817 +142462,316.26,53.524 +142463,316.32,55.19 +142464,316.42,56.817 +142465,315.04,51.814 +142466,314.99,53.542 +142467,314.99,55.229 +142468,315.04,56.875 +142469,313.84,51.812 +142470,313.72,53.561 +142471,313.67,55.267 +142472,313.66,56.932 +142473,312.64,51.812 +142474,312.46,53.581 +142475,312.34,55.305 +142476,312.28,56.987 +142477,311.43,51.813 +142478,311.19,53.6 +142479,311.01,55.342 +142480,310.89,57.041 +142481,310.23,51.816 +142482,309.92,53.621 +142483,309.68,55.379 +142484,309.51,57.094 +142485,309.02,51.82 +142486,308.65,53.641 +142487,308.36,55.415 +142488,308.13,57.145 +142489,307.81,51.825 +142490,307.38,53.662 +142491,307.03,55.451 +142492,306.75,57.194 +142493,306.61,51.832 +142494,306.11,53.684 +142495,305.7,55.487 +142496,305.37,57.243 +142497,305.4,51.841 +142498,304.85,53.706 +142499,304.38,55.522 +142500,303.99,57.29 +142501,304.2,51.851 +142502,303.58,53.729 +142503,303.05,55.556 +142504,302.61,57.335 +142505,302.99,51.862 +142506,302.31,53.752 +142507,301.72,55.59 +142508,301.23,57.379 +142509,301.78,51.875 +142510,301.04,53.776 +142511,300.4,55.623 +142512,299.85,57.422 +142513,300.58,51.89 +142514,299.77,53.8 +142515,299.07,55.656 +142516,298.47,57.463 +142517,299.37,51.906 +142518,298.5,53.824 +142519,297.74,55.689 +142520,297.09,57.502 +142521,298.16,51.923 +142522,297.23,53.85 +142523,296.42,55.721 +142524,295.71,57.54 +142525,296.95,51.942 +142526,295.96,53.875 +142527,295.09,55.752 +142528,294.33,57.577 +142529,295.74,51.963 +142530,294.69,53.901 +142531,293.77,55.783 +142532,292.96,57.612 +142533,294.53,51.985 +142534,293.42,53.928 +142535,292.44,55.814 +142536,291.58,57.646 +142537,293.32,52.009 +142538,292.15,53.955 +142539,291.12,55.844 +142540,290.2,57.678 +142541,292.1,52.034 +142542,290.87,53.983 +142543,289.79,55.873 +142544,288.83,57.709 +142545,290.89,52.061 +142546,289.6,54.011 +142547,288.47,55.902 +142548,287.45,57.739 +142549,289.67,52.09 +142550,288.33,54.04 +142551,287.14,55.93 +142552,286.08,57.767 +142553,288.46,52.12 +142554,287.06,54.069 +142555,285.82,55.958 +142556,284.71,57.793 +142557,287.24,52.151 +142558,285.78,54.098 +142559,284.49,55.986 +142560,283.34,57.818 +142561,286.02,52.184 +142562,284.51,54.129 +142563,283.17,56.013 +142564,281.97,57.842 +142565,284.8,52.219 +142566,283.24,54.159 +142567,281.84,56.039 +142568,280.6,57.864 +142569,283.58,52.255 +142570,281.96,54.19 +142571,280.52,56.065 +142572,279.23,57.884 +142573,282.36,52.293 +142574,280.69,54.222 +142575,279.2,56.09 +142576,277.86,57.904 +142577,281.14,52.332 +142578,279.41,54.254 +142579,277.87,56.115 +142580,276.49,57.921 +142581,279.91,52.373 +142582,278.14,54.287 +142583,276.55,56.14 +142584,275.12,57.938 +142585,278.69,52.415 +142586,276.86,54.32 +142587,275.23,56.164 +142588,273.76,57.953 +142589,277.46,52.459 +142590,275.58,54.353 +142591,273.91,56.187 +142592,272.39,57.966 +142593,276.23,52.504 +142594,274.31,54.387 +142595,272.59,56.21 +142596,271.03,57.978 +142597,275,52.551 +142598,273.03,54.422 +142599,271.26,56.233 +142600,269.67,57.989 +142601,273.77,52.599 +142602,271.75,54.457 +142603,269.94,56.255 +142604,268.31,57.999 +142605,272.53,52.649 +142606,270.47,54.492 +142607,268.62,56.277 +142608,266.95,58.007 +142609,271.3,52.7 +142610,269.19,54.528 +142611,267.3,56.298 +142612,265.59,58.013 +142613,270.06,52.752 +142614,267.91,54.565 +142615,265.98,56.318 +142616,264.23,58.019 +142617,268.82,52.806 +142618,266.63,54.602 +142619,264.66,56.339 +142620,262.88,58.023 +142621,267.58,52.861 +142622,265.35,54.639 +142623,263.35,56.358 +142624,261.52,58.025 +142625,266.34,52.918 +142626,264.07,54.677 +142627,262.03,56.378 +142628,260.17,58.027 +142629,265.09,52.976 +142630,262.79,54.715 +142631,260.71,56.397 +142632,258.82,58.027 +142633,263.84,53.036 +142634,261.5,54.753 +142635,259.39,56.415 +142636,257.47,58.026 +142637,262.6,53.096 +142638,260.22,54.792 +142639,258.08,56.433 +142640,256.12,58.023 +142641,261.34,53.158 +142642,258.94,54.832 +142643,256.76,56.451 +142644,254.77,58.02 +142645,260.09,53.222 +142646,257.65,54.872 +142647,255.44,56.468 +142648,253.42,58.015 +142649,258.84,53.286 +142650,256.37,54.912 +142651,254.13,56.484 +142652,252.08,58.009 +142653,257.58,53.352 +142654,255.08,54.953 +142655,252.81,56.501 +142656,250.73,58.002 +142657,256.32,53.419 +142658,253.79,54.994 +142659,251.5,56.517 +142660,249.39,57.993 +142661,255.06,53.487 +142662,252.51,55.035 +142663,250.18,56.532 +142664,248.05,57.984 +142665,253.8,53.556 +142666,251.22,55.077 +142667,248.87,56.547 +142668,246.71,57.973 +142669,252.53,53.627 +142670,249.93,55.119 +142671,247.56,56.562 +142672,245.38,57.961 +142673,251.27,53.698 +142674,248.64,55.162 +142675,246.25,56.577 +142676,244.04,57.949 +142677,250,53.771 +142678,247.35,55.205 +142679,244.93,56.591 +142680,242.7,57.935 +142681,248.73,53.845 +142682,246.06,55.248 +142683,243.62,56.604 +142684,241.37,57.92 +142685,247.45,53.92 +142686,244.77,55.291 +142687,242.31,56.618 +142688,240.04,57.904 +142689,246.18,53.995 +142690,243.48,55.335 +142691,241,56.631 +142692,238.71,57.887 +142693,244.9,54.072 +142694,242.18,55.379 +142695,239.69,56.643 +142696,237.38,57.869 +142697,243.62,54.15 +142698,240.89,55.424 +142699,238.38,56.656 +142700,236.06,57.85 +142701,242.34,54.228 +142702,239.6,55.469 +142703,237.07,56.668 +142704,234.73,57.83 +142705,241.05,54.308 +142706,238.3,55.514 +142707,235.77,56.68 +142708,233.41,57.81 +142709,239.77,54.388 +142710,237.01,55.559 +142711,234.46,56.691 +142712,232.09,57.788 +142713,238.48,54.47 +142714,235.71,55.605 +142715,233.15,56.702 +142716,230.77,57.766 +142717,237.19,54.552 +142718,234.41,55.651 +142719,231.85,56.713 +142720,229.45,57.743 +142721,235.89,54.634 +142722,233.11,55.697 +142723,230.54,56.724 +142724,228.14,57.719 +142725,234.6,54.718 +142726,231.82,55.743 +142727,229.23,56.734 +142728,226.82,57.694 +142729,233.3,54.802 +142730,230.52,55.79 +142731,227.93,56.744 +142732,225.51,57.669 +142733,232,54.887 +142734,229.22,55.837 +142735,226.63,56.754 +142736,224.2,57.643 +142737,230.7,54.972 +142738,227.91,55.884 +142739,225.32,56.764 +142740,222.89,57.616 +142741,229.39,55.059 +142742,226.61,55.931 +142743,224.02,56.773 +142744,221.58,57.588 +142745,228.09,55.145 +142746,225.31,55.979 +142747,222.72,56.782 +142748,220.28,57.56 +142749,226.78,55.232 +142750,224.01,56.026 +142751,221.42,56.791 +142752,218.98,57.532 +142753,225.47,55.32 +142754,222.7,56.074 +142755,220.12,56.8 +142756,217.67,57.502 +142757,224.16,55.408 +142758,221.4,56.122 +142759,218.81,56.809 +142760,216.37,57.473 +142761,222.84,55.497 +142762,220.09,56.17 +142763,217.52,56.817 +142764,215.08,57.442 +142765,221.52,55.586 +142766,218.79,56.218 +142767,216.22,56.826 +142768,213.78,57.412 +142769,220.2,55.676 +142770,217.48,56.267 +142771,214.92,56.834 +142772,212.49,57.38 +142773,218.88,55.765 +142774,216.18,56.315 +142775,213.62,56.842 +142776,211.19,57.349 +142777,217.56,55.855 +142778,214.87,56.364 +142779,212.32,56.85 +142780,209.9,57.317 +142781,216.24,55.946 +142782,213.56,56.412 +142783,211.03,56.857 +142784,208.61,57.284 +142785,214.91,56.036 +142786,212.25,56.461 +142787,209.73,56.865 +142788,207.33,57.252 +142789,213.58,56.127 +142790,210.94,56.51 +142791,208.43,56.873 +142792,206.04,57.219 +142793,212.25,56.218 +142794,209.63,56.559 +142795,207.14,56.88 +142796,204.76,57.186 +142797,210.91,56.309 +142798,208.32,56.607 +142799,205.84,56.888 +142800,203.48,57.152 +142801,209.58,56.4 +142802,207.01,56.656 +142803,204.55,56.895 +142804,202.2,57.119 +142805,208.24,56.491 +142806,205.69,56.705 +142807,203.26,56.902 +142808,200.92,57.085 +142809,206.9,56.583 +142810,204.38,56.754 +142811,201.96,56.91 +142812,199.64,57.051 +142813,205.56,56.674 +142814,203.06,56.803 +142815,200.67,56.917 +142816,198.37,57.017 +142817,204.22,56.765 +142818,201.75,56.852 +142819,199.38,56.924 +142820,197.1,56.983 +142821,202.88,56.856 +142822,200.43,56.901 +142823,198.09,56.931 +142824,195.83,56.949 +142825,201.53,56.947 +142826,199.12,56.95 +142827,196.8,56.939 +142828,194.56,56.915 +142829,200.18,57.038 +142830,197.8,56.999 +142831,195.51,56.946 +142832,193.29,56.881 +142833,198.83,57.129 +142834,196.48,57.048 +142835,194.22,56.953 +142836,192.02,56.847 +142837,197.48,57.219 +142838,195.17,57.096 +142839,192.93,56.96 +142840,190.76,56.813 +142841,196.13,57.309 +142842,193.85,57.145 +142843,191.64,56.968 +142844,189.5,56.78 +142845,194.78,57.399 +142846,192.53,57.193 +142847,190.35,56.975 +142848,188.24,56.746 +142849,193.42,57.489 +142850,191.21,57.242 +142851,189.07,56.983 +142852,186.98,56.713 +142853,192.06,57.578 +142854,189.89,57.29 +142855,187.78,56.99 +142856,185.72,56.68 +142857,190.7,57.667 +142858,188.57,57.338 +142859,186.49,56.998 +142860,184.47,56.647 +142861,189.34,57.756 +142862,187.25,57.387 +142863,185.21,57.005 +142864,183.21,56.614 +142865,187.98,57.844 +142866,185.93,57.435 +142867,183.92,57.013 +142868,181.96,56.582 +142869,186.62,57.931 +142870,184.6,57.482 +142871,182.64,57.021 +142872,180.71,56.55 +142873,185.25,58.018 +142874,183.28,57.53 +142875,181.35,57.029 +142876,179.46,56.519 +142877,183.89,58.105 +142878,181.96,57.577 +142879,180.07,57.038 +142880,178.22,56.488 +142881,182.52,58.191 +142882,180.63,57.625 +142883,178.78,57.046 +142884,176.97,56.457 +142885,181.15,58.276 +142886,179.31,57.672 +142887,177.5,57.055 +142888,175.73,56.427 +142889,179.78,58.361 +142890,177.98,57.719 +142891,176.22,57.063 +142892,174.48,56.397 +142893,178.41,58.445 +142894,176.66,57.765 +142895,174.94,57.072 +142896,173.24,56.368 +142897,177.04,58.529 +142898,175.33,57.812 +142899,173.65,57.081 +142900,172,56.34 +142901,175.67,58.612 +142902,174.01,57.858 +142903,172.37,57.091 +142904,170.76,56.312 +142905,174.29,58.694 +142906,172.68,57.904 +142907,171.09,57.1 +142908,169.53,56.285 +142909,172.92,58.775 +142910,171.35,57.949 +142911,169.81,57.11 +142912,168.29,56.258 +142913,171.54,58.856 +142914,170.03,57.995 +142915,168.53,57.12 +142916,167.05,56.232 +142917,170.16,58.935 +142918,168.7,58.04 +142919,167.25,57.13 +142920,165.82,56.207 +142921,168.78,59.014 +142922,167.37,58.085 +142923,165.97,57.141 +142924,164.59,56.183 +142925,167.41,59.092 +142926,166.04,58.13 +142927,164.69,57.151 +142928,163.36,56.159 +142929,166.03,59.17 +142930,164.71,58.174 +142931,163.41,57.162 +142932,162.13,56.136 +142933,164.64,59.246 +142934,163.38,58.218 +142935,162.13,57.173 +142936,160.9,56.114 +142937,163.26,59.321 +142938,162.05,58.262 +142939,160.85,57.185 +142940,159.67,56.093 +142941,161.88,59.395 +142942,160.72,58.305 +142943,159.58,57.197 +142944,158.44,56.073 +142945,160.5,59.469 +142946,159.39,58.348 +142947,158.3,57.209 +142948,157.22,56.053 +142949,159.11,59.541 +142950,158.06,58.391 +142951,157.02,57.221 +142952,155.99,56.035 +142953,157.73,59.613 +142954,156.73,58.433 +142955,155.74,57.234 +142956,154.77,56.018 +142957,156.35,59.683 +142958,155.4,58.475 +142959,154.47,57.247 +142960,153.55,56.001 +142961,154.96,59.752 +142962,154.07,58.517 +142963,153.19,57.261 +142964,152.33,55.986 +142965,153.57,59.82 +142966,152.74,58.558 +142967,151.91,57.274 +142968,151.1,55.971 +142969,152.19,59.887 +142970,151.4,58.599 +142971,150.64,57.289 +142972,149.88,55.958 +142973,150.8,59.953 +142974,150.07,58.639 +142975,149.36,57.303 +142976,148.66,55.946 +142977,149.41,60.018 +142978,148.74,58.679 +142979,148.08,57.318 +142980,147.44,55.934 +142981,148.03,60.082 +142982,147.41,58.719 +142983,146.81,57.333 +142984,146.23,55.924 +142985,146.64,60.144 +142986,146.07,58.758 +142987,145.53,57.349 +142988,145.01,55.915 +142989,145.25,60.206 +142990,144.74,58.797 +142991,144.25,57.365 +142992,143.79,55.908 +142993,143.86,60.266 +142994,143.41,58.836 +142995,142.98,57.381 +142996,142.57,55.901 +142997,142.48,60.325 +142998,142.08,58.874 +142999,141.7,57.398 +143000,141.36,55.896 +143001,141.09,60.382 +143002,140.74,58.912 +143003,140.43,57.415 +143004,140.14,55.891 +143005,139.7,60.439 +143006,139.41,58.949 +143007,139.15,57.432 +143008,138.93,55.888 +143009,138.31,60.494 +143010,138.08,58.986 +143011,137.88,57.45 +143012,137.71,55.887 +143013,136.92,60.548 +143014,136.74,59.022 +143015,136.6,57.468 +143016,136.49,55.886 +143017,135.53,60.601 +143018,135.41,59.058 +143019,135.32,57.487 +143020,135.28,55.887 +143021,134.14,60.652 +143022,134.08,59.094 +143023,134.05,57.506 +143024,134.06,55.889 +143025,132.75,60.702 +143026,132.74,59.129 +143027,132.77,57.526 +143028,132.85,55.893 +143029,131.37,60.751 +143030,131.41,59.163 +143031,131.5,57.546 +143032,131.64,55.897 +143033,129.98,60.798 +143034,130.08,59.198 +143035,130.22,57.566 +143036,130.42,55.903 +143037,128.59,60.844 +143038,128.74,59.231 +143039,128.94,57.587 +143040,129.21,55.911 +143041,127.2,60.889 +143042,127.41,59.265 +143043,127.67,57.608 +143044,127.99,55.92 +143045,125.81,60.932 +143046,126.07,59.297 +143047,126.39,57.63 +143048,126.78,55.93 +143049,124.43,60.974 +143050,124.74,59.33 +143051,125.12,57.652 +143052,125.56,55.941 +143053,123.04,61.015 +143054,123.41,59.362 +143055,123.84,57.675 +143056,124.34,55.954 +143057,121.65,61.054 +143058,122.07,59.393 +143059,122.56,57.698 +143060,123.13,55.968 +143061,120.27,61.092 +143062,120.74,59.424 +143063,121.29,57.721 +143064,121.91,55.984 +143065,118.88,61.129 +143066,119.41,59.454 +143067,120.01,57.745 +143068,120.69,56.001 +143069,117.5,61.164 +143070,118.08,59.484 +143071,118.73,57.77 +143072,119.48,56.019 +143073,116.11,61.198 +143074,116.74,59.514 +143075,117.46,57.795 +143076,118.26,56.039 +143077,114.73,61.231 +143078,115.41,59.543 +143079,116.18,57.82 +143080,117.04,56.06 +143081,113.34,61.262 +143082,114.08,59.572 +143083,114.9,57.846 +143084,115.82,56.083 +143085,111.96,61.291 +143086,112.75,59.6 +143087,113.62,57.872 +143088,114.6,56.107 +143089,110.58,61.32 +143090,111.41,59.627 +143091,112.34,57.899 +143092,113.38,56.132 +143093,109.2,61.347 +143094,110.08,59.655 +143095,111.06,57.926 +143096,112.16,56.159 +143097,107.81,61.372 +143098,108.75,59.681 +143099,109.79,57.953 +143100,110.94,56.187 +143101,106.43,61.397 +143102,107.42,59.707 +143103,108.51,57.981 +143104,109.72,56.217 +143105,105.05,61.42 +143106,106.09,59.733 +143107,107.23,58.01 +143108,108.49,56.248 +143109,103.68,61.441 +143110,104.76,59.758 +143111,105.95,58.039 +143112,107.27,56.28 +143113,102.3,61.461 +143114,103.43,59.783 +143115,104.67,58.068 +143116,106.04,56.314 +143117,100.92,61.48 +143118,102.09,59.808 +143119,103.39,58.098 +143120,104.81,56.35 +143121,99.544,61.498 +143122,100.76,59.831 +143123,102.11,58.128 +143124,103.59,56.386 +143125,98.169,61.514 +143126,99.435,59.855 +143127,100.82,58.159 +143128,102.36,56.424 +143129,96.795,61.529 +143130,98.106,59.878 +143131,99.542,58.19 +143132,101.13,56.464 +143133,95.421,61.542 +143134,96.776,59.9 +143135,98.26,58.222 +143136,99.894,56.504 +143137,94.049,61.555 +143138,95.447,59.922 +143139,96.977,58.254 +143140,98.661,56.546 +143141,92.678,61.565 +143142,94.119,59.944 +143143,95.694,58.286 +143144,97.426,56.59 +143145,91.308,61.575 +143146,92.791,59.965 +143147,94.41,58.319 +143148,96.191,56.635 +143149,89.938,61.583 +143150,91.463,59.986 +143151,93.126,58.352 +143152,94.953,56.681 +143153,88.571,61.59 +143154,90.136,60.006 +143155,91.842,58.386 +143156,93.715,56.728 +143157,87.204,61.596 +143158,88.809,60.026 +143159,90.557,58.42 +143160,92.475,56.777 +143161,85.838,61.601 +143162,87.482,60.045 +143163,89.271,58.455 +143164,91.233,56.827 +143165,84.474,61.604 +143166,86.156,60.064 +143167,87.985,58.49 +143168,89.99,56.878 +143169,83.111,61.606 +143170,84.83,60.083 +143171,86.699,58.525 +143172,88.745,56.931 +143173,81.749,61.607 +143174,83.505,60.101 +143175,85.412,58.561 +143176,87.498,56.984 +143177,80.388,61.607 +143178,82.18,60.119 +143179,84.124,58.597 +143180,86.25,57.039 +143181,79.029,61.605 +143182,80.855,60.136 +143183,82.836,58.633 +143184,85,57.095 +143185,77.671,61.602 +143186,79.531,60.153 +143187,81.547,58.67 +143188,83.748,57.153 +143189,76.315,61.599 +143190,78.207,60.169 +143191,80.258,58.708 +143192,82.495,57.211 +143193,74.96,61.594 +143194,76.884,60.185 +143195,78.968,58.745 +143196,81.24,57.271 +143197,73.606,61.588 +143198,75.562,60.201 +143199,77.677,58.783 +143200,79.983,57.332 +143201,72.253,61.58 +143202,74.24,60.216 +143203,76.386,58.822 +143204,78.724,57.394 +143205,70.903,61.572 +143206,72.918,60.231 +143207,75.094,58.86 +143208,77.463,57.457 +143209,69.553,61.563 +143210,71.597,60.246 +143211,73.802,58.899 +143212,76.2,57.521 +143213,68.205,61.552 +143214,70.276,60.26 +143215,72.509,58.939 +143216,74.935,57.586 +143217,66.859,61.541 +143218,68.956,60.274 +143219,71.216,58.979 +143220,73.669,57.652 +143221,65.514,61.529 +143222,67.636,60.288 +143223,69.921,59.019 +143224,72.4,57.719 +143225,64.171,61.515 +143226,66.317,60.301 +143227,68.626,59.059 +143228,71.13,57.787 +143229,62.829,61.501 +143230,64.999,60.314 +143231,67.331,59.1 +143232,69.857,57.857 +143233,61.489,61.486 +143234,63.681,60.326 +143235,66.035,59.141 +143236,68.583,57.927 +143237,60.15,61.47 +143238,62.363,60.338 +143239,64.738,59.182 +143240,67.306,57.997 +143241,58.814,61.452 +143242,61.046,60.35 +143243,63.441,59.223 +143244,66.027,58.069 +143245,57.478,61.435 +143246,59.73,60.362 +143247,62.142,59.265 +143248,64.746,58.142 +143249,56.145,61.416 +143250,58.414,60.373 +143251,60.844,59.307 +143252,63.464,58.215 +143253,54.813,61.396 +143254,57.099,60.384 +143255,59.544,59.35 +143256,62.179,58.29 +143257,53.482,61.376 +143258,55.784,60.395 +143259,58.244,59.392 +143260,60.892,58.365 +143261,52.154,61.355 +143262,54.47,60.406 +143263,56.943,59.435 +143264,59.603,58.44 +143265,50.827,61.333 +143266,53.156,60.416 +143267,55.642,59.478 +143268,58.312,58.517 +143269,49.502,61.31 +143270,51.843,60.426 +143271,54.339,59.521 +143272,57.018,58.594 +143273,48.178,61.287 +143274,50.531,60.436 +143275,53.036,59.565 +143276,55.723,58.672 +143277,46.857,61.263 +143278,49.219,60.445 +143279,51.733,59.608 +143280,54.425,58.75 +143281,45.537,61.238 +143282,47.908,60.454 +143283,50.429,59.652 +143284,53.126,58.829 +143285,44.219,61.213 +143286,46.597,60.463 +143287,49.124,59.696 +143288,51.824,58.909 +143289,42.902,61.187 +143290,45.287,60.472 +143291,47.818,59.74 +143292,50.52,58.989 +143293,41.588,61.161 +143294,43.978,60.481 +143295,46.512,59.785 +143296,49.214,59.07 +143297,40.275,61.134 +143298,42.669,60.49 +143299,45.205,59.829 +143300,47.906,59.151 +143301,38.964,61.106 +143302,41.361,60.498 +143303,43.897,59.874 +143304,46.596,59.233 +143305,37.654,61.078 +143306,40.053,60.506 +143307,42.589,59.919 +143308,45.284,59.315 +143309,36.347,61.05 +143310,38.746,60.514 +143311,41.279,59.964 +143312,43.97,59.397 +143313,35.041,61.021 +143314,37.44,60.522 +143315,39.97,60.009 +143316,42.653,59.48 +143317,33.737,60.992 +143318,36.134,60.53 +143319,38.659,60.054 +143320,41.335,59.563 +143321,32.435,60.963 +143322,34.829,60.537 +143323,37.348,60.099 +143324,40.015,59.646 +143325,31.135,60.933 +143326,33.524,60.545 +143327,36.036,60.144 +143328,38.692,59.73 +143329,29.836,60.903 +143330,32.22,60.552 +143331,34.724,60.19 +143332,37.368,59.814 +143333,28.539,60.872 +143334,30.916,60.559 +143335,33.41,60.235 +143336,36.041,59.898 +143337,27.244,60.842 +143338,29.614,60.566 +143339,32.097,60.281 +143340,34.713,59.982 +143341,25.951,60.811 +143342,28.311,60.574 +143343,30.782,60.326 +143344,33.382,60.066 +143345,24.66,60.78 +143346,27.009,60.581 +143347,29.467,60.372 +143348,32.05,60.151 +143349,23.37,60.748 +143350,25.708,60.588 +143351,28.151,60.417 +143352,30.716,60.235 +143353,22.083,60.717 +143354,24.408,60.595 +143355,26.835,60.463 +143356,29.38,60.32 +143357,20.797,60.686 +143358,23.108,60.602 +143359,25.517,60.508 +143360,28.042,60.404 +143361,19.512,60.654 +143362,21.808,60.608 +143363,24.2,60.554 +143364,26.702,60.489 +143365,18.23,60.623 +143366,20.509,60.615 +143367,22.881,60.599 +143368,25.36,60.573 +143369,16.949,60.591 +143370,19.211,60.622 +143371,21.562,60.645 +143372,24.016,60.658 +143373,15.67,60.56 +143374,17.913,60.629 +143375,20.243,60.69 +143376,22.671,60.742 +143377,14.393,60.528 +143378,16.616,60.636 +143379,18.922,60.736 +143380,21.324,60.826 +143381,13.118,60.497 +143382,15.32,60.643 +143383,17.601,60.781 +143384,19.975,60.91 +143385,11.844,60.466 +143386,14.024,60.65 +143387,16.28,60.826 +143388,18.624,60.994 +143389,10.572,60.435 +143390,12.728,60.657 +143391,14.958,60.872 +143392,17.272,61.077 +143393,9.3012,60.404 +143394,11.433,60.664 +143395,13.635,60.917 +143396,15.918,61.16 +143397,8.0324,60.373 +143398,10.138,60.671 +143399,12.312,60.962 +143400,14.562,61.243 +143401,6.7653,60.343 +143402,8.8445,60.678 +143403,10.988,61.007 +143404,13.205,61.326 +143405,5.4999,60.313 +143406,7.551,60.686 +143407,9.6636,61.051 +143408,11.846,61.408 +143409,4.236,60.283 +143410,6.2581,60.693 +143411,8.3387,61.096 +143412,10.486,61.49 +143413,2.9738,60.253 +143414,4.9656,60.701 +143415,7.0132,61.14 +143416,9.1244,61.571 +143417,1.7131,60.224 +143418,3.6736,60.708 +143419,5.6872,61.185 +143420,7.7611,61.652 +143421,0.454,60.196 +143422,2.3822,60.716 +143423,4.3607,61.229 +143424,6.3964,61.733 +143425,359.2,60.167 +143426,1.0911,60.724 +143427,3.0336,61.273 +143428,5.0303,61.812 +143429,357.94,60.139 +143430,359.8,60.732 +143431,1.706,61.317 +143432,3.6629,61.892 +143433,356.69,60.112 +143434,358.51,60.74 +143435,0.37797,61.36 +143436,2.2941,61.971 +143437,355.43,60.085 +143438,357.22,60.748 +143439,359.05,61.404 +143440,0.92394,62.049 +143441,354.18,60.059 +143442,355.93,60.757 +143443,357.72,61.447 +143444,359.55,62.127 +143445,352.93,60.033 +143446,354.64,60.766 +143447,356.39,61.49 +143448,358.18,62.204 +143449,351.68,60.008 +143450,353.35,60.775 +143451,355.06,61.533 +143452,356.81,62.28 +143453,350.43,59.983 +143454,352.07,60.784 +143455,353.73,61.575 +143456,355.43,62.356 +143457,349.19,59.96 +143458,350.78,60.793 +143459,352.4,61.617 +143460,354.06,62.431 +143461,347.94,59.936 +143462,349.49,60.803 +143463,351.07,61.659 +143464,352.68,62.505 +143465,346.7,59.914 +143466,348.2,60.812 +143467,349.74,61.701 +143468,351.3,62.578 +143469,345.46,59.892 +143470,346.92,60.822 +143471,348.4,61.743 +143472,349.92,62.651 +143473,344.22,59.871 +143474,345.63,60.833 +143475,347.07,61.784 +143476,348.54,62.723 +143477,342.98,59.851 +143478,344.35,60.843 +143479,345.74,61.825 +143480,347.16,62.794 +143481,341.74,59.831 +143482,343.06,60.854 +143483,344.41,61.865 +143484,345.78,62.864 +143485,340.5,59.813 +143486,341.78,60.865 +143487,343.07,61.906 +143488,344.39,62.933 +143489,339.26,59.795 +143490,340.49,60.876 +143491,341.74,61.946 +143492,343.01,63.001 +143493,338.03,59.778 +143494,339.21,60.888 +143495,340.41,61.985 +143496,341.63,63.069 +143497,336.79,59.762 +143498,337.92,60.9 +143499,339.07,62.025 +143500,340.24,63.135 +143501,335.56,59.747 +143502,336.64,60.912 +143503,337.74,62.064 +143504,338.85,63.201 +143505,334.33,59.733 +143506,335.35,60.924 +143507,336.4,62.102 +143508,337.47,63.265 +143509,333.1,59.72 +143510,334.07,60.937 +143511,335.07,62.141 +143512,336.08,63.329 +143513,331.87,59.708 +143514,332.79,60.95 +143515,333.73,62.179 +143516,334.69,63.391 +143517,330.64,59.696 +143518,331.51,60.964 +143519,332.39,62.216 +143520,333.3,63.452 +143521,329.41,59.686 +143522,330.22,60.978 +143523,331.06,62.254 +143524,331.91,63.513 +143525,328.18,59.677 +143526,328.94,60.992 +143527,329.72,62.291 +143528,330.53,63.572 +143529,326.95,59.669 +143530,327.66,61.006 +143531,328.39,62.327 +143532,329.14,63.63 +143533,325.72,59.662 +143534,326.37,61.021 +143535,327.05,62.363 +143536,327.75,63.687 +143537,324.5,59.656 +143538,325.09,61.036 +143539,325.71,62.399 +143540,326.35,63.743 +143541,323.27,59.651 +143542,323.81,61.052 +143543,324.38,62.434 +143544,324.96,63.798 +143545,322.04,59.648 +143546,322.53,61.068 +143547,323.04,62.469 +143548,323.57,63.852 +143549,320.82,59.645 +143550,321.25,61.084 +143551,321.7,62.504 +143552,322.18,63.904 +143553,319.59,59.644 +143554,319.97,61.101 +143555,320.36,62.538 +143556,320.79,63.956 +143557,318.37,59.644 +143558,318.68,61.118 +143559,319.03,62.572 +143560,319.4,64.006 +143561,317.15,59.645 +143562,317.4,61.135 +143563,317.69,62.605 +143564,318.01,64.055 +143565,315.92,59.647 +143566,316.12,61.153 +143567,316.35,62.638 +143568,316.61,64.102 +143569,314.7,59.651 +143570,314.84,61.171 +143571,315.01,62.671 +143572,315.22,64.149 +143573,313.48,59.655 +143574,313.56,61.19 +143575,313.68,62.703 +143576,313.83,64.194 +143577,312.25,59.661 +143578,312.28,61.209 +143579,312.34,62.734 +143580,312.44,64.238 +143581,311.03,59.669 +143582,310.99,61.228 +143583,311,62.766 +143584,311.04,64.281 +143585,309.81,59.677 +143586,309.71,61.248 +143587,309.66,62.797 +143588,309.65,64.322 +143589,308.58,59.687 +143590,308.43,61.268 +143591,308.33,62.827 +143592,308.26,64.363 +143593,307.36,59.698 +143594,307.15,61.289 +143595,306.99,62.857 +143596,306.87,64.402 +143597,306.14,59.71 +143598,305.87,61.31 +143599,305.65,62.886 +143600,305.48,64.439 +143601,304.92,59.724 +143602,304.59,61.331 +143603,304.31,62.915 +143604,304.09,64.476 +143605,303.69,59.738 +143606,303.31,61.353 +143607,302.97,62.944 +143608,302.7,64.511 +143609,302.47,59.755 +143610,302.02,61.375 +143611,301.64,62.972 +143612,301.3,64.545 +143613,301.24,59.772 +143614,300.74,61.398 +143615,300.3,63 +143616,299.91,64.578 +143617,300.02,59.791 +143618,299.46,61.421 +143619,298.96,63.027 +143620,298.52,64.609 +143621,298.8,59.811 +143622,298.18,61.445 +143623,297.62,63.054 +143624,297.13,64.639 +143625,297.57,59.832 +143626,296.89,61.469 +143627,296.29,63.08 +143628,295.75,64.667 +143629,296.35,59.855 +143630,295.61,61.493 +143631,294.95,63.106 +143632,294.36,64.695 +143633,295.12,59.879 +143634,294.33,61.518 +143635,293.61,63.132 +143636,292.97,64.721 +143637,293.89,59.904 +143638,293.04,61.543 +143639,292.28,63.157 +143640,291.58,64.746 +143641,292.67,59.931 +143642,291.76,61.569 +143643,290.94,63.181 +143644,290.2,64.769 +143645,291.44,59.959 +143646,290.48,61.595 +143647,289.6,63.206 +143648,288.81,64.792 +143649,290.21,59.988 +143650,289.19,61.621 +143651,288.27,63.229 +143652,287.42,64.812 +143653,288.98,60.019 +143654,287.91,61.648 +143655,286.93,63.253 +143656,286.04,64.832 +143657,287.75,60.051 +143658,286.63,61.675 +143659,285.6,63.275 +143660,284.65,64.85 +143661,286.52,60.084 +143662,285.34,61.703 +143663,284.26,63.298 +143664,283.27,64.868 +143665,285.29,60.118 +143666,284.06,61.731 +143667,282.93,63.32 +143668,281.89,64.883 +143669,284.05,60.154 +143670,282.77,61.76 +143671,281.59,63.341 +143672,280.51,64.898 +143673,282.82,60.191 +143674,281.48,61.789 +143675,280.26,63.362 +143676,279.13,64.911 +143677,281.59,60.229 +143678,280.2,61.818 +143679,278.92,63.383 +143680,277.75,64.923 +143681,280.35,60.269 +143682,278.91,61.848 +143683,277.59,63.403 +143684,276.37,64.934 +143685,279.11,60.309 +143686,277.62,61.878 +143687,276.26,63.423 +143688,274.99,64.944 +143689,277.87,60.351 +143690,276.34,61.909 +143691,274.92,63.442 +143692,273.61,64.952 +143693,276.64,60.395 +143694,275.05,61.94 +143695,273.59,63.461 +143696,272.24,64.959 +143697,275.39,60.439 +143698,273.76,61.971 +143699,272.26,63.48 +143700,270.86,64.965 +143701,274.15,60.485 +143702,272.47,62.003 +143703,270.92,63.498 +143704,269.49,64.97 +143705,272.91,60.532 +143706,271.18,62.035 +143707,269.59,63.516 +143708,268.11,64.973 +143709,271.66,60.58 +143710,269.9,62.068 +143711,268.26,63.533 +143712,266.74,64.975 +143713,270.42,60.629 +143714,268.61,62.101 +143715,266.93,63.55 +143716,265.37,64.977 +143717,269.17,60.68 +143718,267.32,62.134 +143719,265.6,63.566 +143720,264,64.977 +143721,267.92,60.731 +143722,266.02,62.168 +143723,264.27,63.582 +143724,262.63,64.976 +143725,266.67,60.784 +143726,264.73,62.202 +143727,262.94,63.598 +143728,261.27,64.973 +143729,265.42,60.838 +143730,263.44,62.236 +143731,261.61,63.613 +143732,259.9,64.97 +143733,264.17,60.892 +143734,262.15,62.271 +143735,260.28,63.628 +143736,258.54,64.966 +143737,262.91,60.948 +143738,260.86,62.306 +143739,258.95,63.643 +143740,257.17,64.96 +143741,261.66,61.005 +143742,259.56,62.341 +143743,257.62,63.657 +143744,255.81,64.953 +143745,260.4,61.063 +143746,258.27,62.377 +143747,256.29,63.671 +143748,254.45,64.946 +143749,259.14,61.122 +143750,256.97,62.413 +143751,254.97,63.685 +143752,253.09,64.937 +143753,257.88,61.182 +143754,255.68,62.449 +143755,253.64,63.698 +143756,251.74,64.928 +143757,256.61,61.243 +143758,254.38,62.486 +143759,252.31,63.71 +143760,250.38,64.917 +143761,255.35,61.305 +143762,253.09,62.523 +143763,250.99,63.723 +143764,249.03,64.905 +143765,254.08,61.368 +143766,251.79,62.56 +143767,249.66,63.735 +143768,247.67,64.893 +143769,252.81,61.432 +143770,250.49,62.598 +143771,248.34,63.747 +143772,246.32,64.88 +143773,251.54,61.497 +143774,249.2,62.636 +143775,247.01,63.758 +143776,244.97,64.865 +143777,250.27,61.562 +143778,247.9,62.674 +143779,245.69,63.77 +143780,243.62,64.85 +143781,248.99,61.629 +143782,246.6,62.712 +143783,244.37,63.781 +143784,242.27,64.834 +143785,247.72,61.696 +143786,245.3,62.751 +143787,243.04,63.791 +143788,240.93,64.817 +143789,246.44,61.764 +143790,244,62.79 +143791,241.72,63.802 +143792,239.58,64.799 +143793,245.16,61.833 +143794,242.7,62.829 +143795,240.4,63.812 +143796,238.24,64.78 +143797,243.88,61.902 +143798,241.4,62.869 +143799,239.08,63.821 +143800,236.9,64.761 +143801,242.59,61.973 +143802,240.09,62.908 +143803,237.76,63.831 +143804,235.56,64.741 +143805,241.31,62.043 +143806,238.79,62.948 +143807,236.44,63.84 +143808,234.22,64.72 +143809,240.02,62.115 +143810,237.49,62.988 +143811,235.12,63.849 +143812,232.89,64.699 +143813,238.73,62.187 +143814,236.18,63.029 +143815,233.8,63.858 +143816,231.55,64.676 +143817,237.44,62.26 +143818,234.88,63.069 +143819,232.48,63.867 +143820,230.22,64.654 +143821,236.14,62.334 +143822,233.57,63.11 +143823,231.16,63.875 +143824,228.89,64.63 +143825,234.85,62.408 +143826,232.27,63.151 +143827,229.85,63.883 +143828,227.56,64.606 +143829,233.55,62.482 +143830,230.96,63.192 +143831,228.53,63.891 +143832,226.23,64.581 +143833,232.25,62.557 +143834,229.65,63.233 +143835,227.21,63.899 +143836,224.91,64.556 +143837,230.95,62.633 +143838,228.35,63.274 +143839,225.9,63.906 +143840,223.58,64.53 +143841,229.64,62.709 +143842,227.04,63.316 +143843,224.58,63.914 +143844,222.26,64.504 +143845,228.34,62.785 +143846,225.73,63.357 +143847,223.27,63.921 +143848,220.94,64.477 +143849,227.03,62.862 +143850,224.42,63.399 +143851,221.96,63.928 +143852,219.62,64.45 +143853,225.72,62.939 +143854,223.11,63.441 +143855,220.64,63.935 +143856,218.3,64.422 +143857,224.41,63.016 +143858,221.8,63.483 +143859,219.33,63.942 +143860,216.99,64.394 +143861,223.09,63.094 +143862,220.48,63.525 +143863,218.02,63.949 +143864,215.67,64.366 +143865,221.78,63.172 +143866,219.17,63.567 +143867,216.71,63.955 +143868,214.36,64.337 +143869,220.46,63.251 +143870,217.86,63.609 +143871,215.4,63.962 +143872,213.05,64.308 +143873,219.14,63.329 +143874,216.54,63.652 +143875,214.09,63.968 +143876,211.74,64.279 +143877,217.82,63.408 +143878,215.23,63.694 +143879,212.78,63.974 +143880,210.44,64.249 +143881,216.49,63.487 +143882,213.91,63.736 +143883,211.47,63.98 +143884,209.13,64.22 +143885,215.17,63.566 +143886,212.6,63.779 +143887,210.16,63.986 +143888,207.83,64.19 +143889,213.84,63.645 +143890,211.28,63.821 +143891,208.85,63.993 +143892,206.53,64.16 +143893,212.51,63.724 +143894,209.96,63.864 +143895,207.54,63.999 +143896,205.23,64.129 +143897,211.18,63.803 +143898,208.65,63.906 +143899,206.24,64.005 +143900,203.93,64.099 +143901,209.84,63.882 +143902,207.33,63.949 +143903,204.93,64.01 +143904,202.64,64.069 +143905,208.51,63.961 +143906,206.01,63.991 +143907,203.63,64.016 +143908,201.34,64.038 +143909,207.17,64.04 +143910,204.69,64.034 +143911,202.32,64.022 +143912,200.05,64.008 +143913,205.83,64.119 +143914,203.37,64.076 +143915,201.02,64.028 +143916,198.76,63.977 +143917,204.49,64.198 +143918,202.05,64.118 +143919,199.71,64.034 +143920,197.47,63.947 +143921,203.15,64.277 +143922,200.73,64.161 +143923,198.41,64.04 +143924,196.18,63.916 +143925,201.8,64.355 +143926,199.4,64.203 +143927,197.11,64.046 +143928,194.9,63.886 +143929,200.45,64.434 +143930,198.08,64.245 +143931,195.8,64.052 +143932,193.61,63.856 +143933,199.11,64.512 +143934,196.76,64.287 +143935,194.5,64.058 +143936,192.33,63.826 +143937,197.76,64.59 +143938,195.43,64.329 +143939,193.2,64.064 +143940,191.05,63.796 +143941,196.4,64.668 +143942,194.11,64.371 +143943,191.9,64.07 +143944,189.77,63.766 +143945,195.05,64.745 +143946,192.78,64.413 +143947,190.6,64.077 +143948,188.49,63.737 +143949,193.7,64.822 +143950,191.46,64.455 +143951,189.3,64.083 +143952,187.22,63.708 +143953,192.34,64.898 +143954,190.13,64.496 +143955,188,64.089 +143956,185.94,63.679 +143957,190.98,64.975 +143958,188.81,64.538 +143959,186.71,64.096 +143960,184.67,63.651 +143961,189.62,65.05 +143962,187.48,64.579 +143963,185.41,64.102 +143964,183.4,63.623 +143965,188.26,65.126 +143966,186.15,64.62 +143967,184.11,64.109 +143968,182.13,63.595 +143969,186.9,65.201 +143970,184.82,64.661 +143971,182.81,64.116 +143972,180.86,63.568 +143973,185.53,65.275 +143974,183.49,64.702 +143975,181.52,64.123 +143976,179.6,63.541 +143977,184.17,65.349 +143978,182.16,64.742 +143979,180.22,64.13 +143980,178.33,63.514 +143981,182.8,65.422 +143982,180.83,64.783 +143983,178.93,64.138 +143984,177.07,63.488 +143985,181.43,65.495 +143986,179.5,64.823 +143987,177.63,64.145 +143988,175.81,63.463 +143989,180.06,65.567 +143990,178.17,64.863 +143991,176.34,64.153 +143992,174.55,63.438 +143993,178.69,65.638 +143994,176.84,64.903 +143995,175.04,64.161 +143996,173.29,63.414 +143997,177.32,65.709 +143998,175.51,64.942 +143999,173.75,64.169 +144000,172.03,63.39 +144001,175.95,65.779 +144002,174.18,64.982 +144003,172.46,64.177 +144004,170.77,63.367 +144005,174.57,65.848 +144006,172.84,65.021 +144007,171.16,64.186 +144008,169.52,63.345 +144009,173.19,65.917 +144010,171.51,65.06 +144011,169.87,64.195 +144012,168.27,63.323 +144013,171.82,65.985 +144014,170.18,65.098 +144015,168.58,64.203 +144016,167.01,63.302 +144017,170.44,66.052 +144018,168.84,65.137 +144019,167.29,64.213 +144020,165.76,63.282 +144021,169.06,66.118 +144022,167.51,65.175 +144023,166,64.222 +144024,164.51,63.263 +144025,167.68,66.184 +144026,166.17,65.212 +144027,164.7,64.232 +144028,163.27,63.244 +144029,166.3,66.249 +144030,164.84,65.25 +144031,163.41,64.242 +144032,162.02,63.226 +144033,164.92,66.312 +144034,163.5,65.287 +144035,162.12,64.252 +144036,160.77,63.209 +144037,163.53,66.375 +144038,162.17,65.324 +144039,160.83,64.262 +144040,159.53,63.193 +144041,162.15,66.437 +144042,160.83,65.36 +144043,159.54,64.273 +144044,158.28,63.177 +144045,160.76,66.498 +144046,159.49,65.397 +144047,158.26,64.284 +144048,157.04,63.163 +144049,159.38,66.559 +144050,158.16,65.433 +144051,156.97,64.296 +144052,155.8,63.149 +144053,157.99,66.618 +144054,156.82,65.468 +144055,155.68,64.307 +144056,154.56,63.137 +144057,156.6,66.676 +144058,155.48,65.504 +144059,154.39,64.319 +144060,153.32,63.125 +144061,155.22,66.733 +144062,154.15,65.539 +144063,153.1,64.332 +144064,152.08,63.114 +144065,153.83,66.79 +144066,152.81,65.573 +144067,151.81,64.344 +144068,150.84,63.104 +144069,152.44,66.845 +144070,151.47,65.607 +144071,150.53,64.357 +144072,149.61,63.096 +144073,151.05,66.899 +144074,150.13,65.641 +144075,149.24,64.37 +144076,148.37,63.088 +144077,149.66,66.952 +144078,148.79,65.675 +144079,147.95,64.384 +144080,147.13,63.081 +144081,148.27,67.004 +144082,147.45,65.708 +144083,146.66,64.398 +144084,145.9,63.076 +144085,146.88,67.055 +144086,146.11,65.741 +144087,145.38,64.412 +144088,144.66,63.071 +144089,145.49,67.105 +144090,144.78,65.773 +144091,144.09,64.427 +144092,143.43,63.068 +144093,144.09,67.154 +144094,143.44,65.805 +144095,142.8,64.442 +144096,142.2,63.065 +144097,142.7,67.202 +144098,142.1,65.837 +144099,141.52,64.457 +144100,140.96,63.064 +144101,141.31,67.248 +144102,140.76,65.868 +144103,140.23,64.473 +144104,139.73,63.064 +144105,139.91,67.294 +144106,139.42,65.899 +144107,138.95,64.489 +144108,138.5,63.065 +144109,138.52,67.338 +144110,138.08,65.929 +144111,137.66,64.505 +144112,137.27,63.067 +144113,137.13,67.381 +144114,136.74,65.96 +144115,136.37,64.522 +144116,136.04,63.07 +144117,135.73,67.423 +144118,135.4,65.989 +144119,135.09,64.539 +144120,134.81,63.075 +144121,134.34,67.464 +144122,134.06,66.018 +144123,133.8,64.557 +144124,133.58,63.081 +144125,132.95,67.503 +144126,132.72,66.047 +144127,132.52,64.575 +144128,132.35,63.087 +144129,131.55,67.541 +144130,131.38,66.076 +144131,131.23,64.593 +144132,131.12,63.096 +144133,130.16,67.578 +144134,130.04,66.104 +144135,129.94,64.612 +144136,129.89,63.105 +144137,128.77,67.614 +144138,128.7,66.131 +144139,128.66,64.631 +144140,128.66,63.115 +144141,127.37,67.649 +144142,127.35,66.159 +144143,127.37,64.651 +144144,127.43,63.127 +144145,125.98,67.683 +144146,126.01,66.185 +144147,126.09,64.671 +144148,126.2,63.14 +144149,124.59,67.715 +144150,124.67,66.212 +144151,124.8,64.691 +144152,124.97,63.154 +144153,123.19,67.746 +144154,123.33,66.238 +144155,123.52,64.712 +144156,123.74,63.17 +144157,121.8,67.776 +144158,121.99,66.263 +144159,122.23,64.733 +144160,122.51,63.187 +144161,120.41,67.804 +144162,120.65,66.288 +144163,120.94,64.755 +144164,121.28,63.205 +144165,119.01,67.832 +144166,119.31,66.313 +144167,119.66,64.777 +144168,120.05,63.224 +144169,117.62,67.858 +144170,117.97,66.337 +144171,118.37,64.799 +144172,118.82,63.244 +144173,116.23,67.882 +144174,116.63,66.361 +144175,117.09,64.822 +144176,117.59,63.266 +144177,114.84,67.906 +144178,115.29,66.384 +144179,115.8,64.845 +144180,116.36,63.289 +144181,113.45,67.928 +144182,113.95,66.407 +144183,114.51,64.869 +144184,115.13,63.313 +144185,112.06,67.95 +144186,112.61,66.43 +144187,113.23,64.893 +144188,113.9,63.339 +144189,110.67,67.969 +144190,111.27,66.452 +144191,111.94,64.917 +144192,112.67,63.366 +144193,109.28,67.988 +144194,109.94,66.474 +144195,110.65,64.942 +144196,111.43,63.394 +144197,107.89,68.006 +144198,108.6,66.495 +144199,109.36,64.967 +144200,110.2,63.423 +144201,106.5,68.022 +144202,107.26,66.516 +144203,108.08,64.993 +144204,108.97,63.453 +144205,105.11,68.037 +144206,105.92,66.536 +144207,106.79,65.019 +144208,107.73,63.485 +144209,103.73,68.05 +144210,104.58,66.556 +144211,105.5,65.045 +144212,106.5,63.518 +144213,102.34,68.063 +144214,103.24,66.576 +144215,104.21,65.072 +144216,105.26,63.552 +144217,100.96,68.074 +144218,101.9,66.595 +144219,102.92,65.099 +144220,104.03,63.588 +144221,99.572,68.085 +144222,100.57,66.614 +144223,101.64,65.127 +144224,102.79,63.624 +144225,98.188,68.094 +144226,99.228,66.632 +144227,100.35,65.155 +144228,101.55,63.662 +144229,96.805,68.101 +144230,97.891,66.65 +144231,99.056,65.183 +144232,100.31,63.701 +144233,95.423,68.108 +144234,96.554,66.668 +144235,97.767,65.212 +144236,99.07,63.741 +144237,94.042,68.113 +144238,95.217,66.685 +144239,96.476,65.241 +144240,97.829,63.783 +144241,92.662,68.118 +144242,93.881,66.702 +144243,95.186,65.271 +144244,96.587,63.825 +144245,91.283,68.121 +144246,92.545,66.718 +144247,93.895,65.301 +144248,95.344,63.869 +144249,89.905,68.123 +144250,91.209,66.734 +144251,92.604,65.331 +144252,94.099,63.914 +144253,88.527,68.124 +144254,89.874,66.75 +144255,91.312,65.362 +144256,92.854,63.96 +144257,87.151,68.124 +144258,88.539,66.765 +144259,90.02,65.393 +144260,91.607,64.007 +144261,85.776,68.122 +144262,87.204,66.78 +144263,88.728,65.424 +144264,90.359,64.055 +144265,84.402,68.12 +144266,85.87,66.794 +144267,87.435,65.456 +144268,89.11,64.105 +144269,83.03,68.116 +144270,84.536,66.809 +144271,86.141,65.488 +144272,87.859,64.155 +144273,81.658,68.112 +144274,83.202,66.822 +144275,84.848,65.52 +144276,86.607,64.206 +144277,80.288,68.106 +144278,81.869,66.836 +144279,83.553,65.553 +144280,85.354,64.259 +144281,78.919,68.1 +144282,80.536,66.849 +144283,82.259,65.586 +144284,84.099,64.312 +144285,77.551,68.092 +144286,79.204,66.861 +144287,80.963,65.619 +144288,82.843,64.367 +144289,76.184,68.084 +144290,77.872,66.874 +144291,79.668,65.653 +144292,81.586,64.422 +144293,74.819,68.074 +144294,76.541,66.886 +144295,78.372,65.687 +144296,80.326,64.479 +144297,73.455,68.063 +144298,75.21,66.897 +144299,77.075,65.721 +144300,79.066,64.536 +144301,72.092,68.052 +144302,73.879,66.909 +144303,75.778,65.756 +144304,77.804,64.594 +144305,70.73,68.04 +144306,72.549,66.92 +144307,74.48,65.791 +144308,76.54,64.654 +144309,69.37,68.026 +144310,71.22,66.931 +144311,73.182,65.826 +144312,75.275,64.714 +144313,68.012,68.012 +144314,69.89,66.941 +144315,71.883,65.862 +144316,74.008,64.775 +144317,66.655,67.997 +144318,68.562,66.951 +144319,70.584,65.897 +144320,72.739,64.836 +144321,65.299,67.981 +144322,67.234,66.961 +144323,69.284,65.933 +144324,71.468,64.899 +144325,63.945,67.964 +144326,65.906,66.971 +144327,67.984,65.97 +144328,70.196,64.963 +144329,62.592,67.947 +144330,64.579,66.98 +144331,66.683,66.006 +144332,68.923,65.027 +144333,61.241,67.929 +144334,63.252,66.989 +144335,65.382,66.043 +144336,67.647,65.092 +144337,59.891,67.91 +144338,61.926,66.998 +144339,64.08,66.08 +144340,66.37,65.157 +144341,58.543,67.89 +144342,60.6,67.006 +144343,62.777,66.117 +144344,65.091,65.224 +144345,57.196,67.869 +144346,59.275,67.015 +144347,61.474,66.155 +144348,63.81,65.291 +144349,55.851,67.848 +144350,57.951,67.023 +144351,60.17,66.193 +144352,62.527,65.359 +144353,54.507,67.826 +144354,56.627,67.03 +144355,58.865,66.23 +144356,61.242,65.427 +144357,53.166,67.804 +144358,55.303,67.038 +144359,57.56,66.269 +144360,59.956,65.496 +144361,51.825,67.781 +144362,53.98,67.045 +144363,56.255,66.307 +144364,58.667,65.566 +144365,50.486,67.757 +144366,52.658,67.053 +144367,54.948,66.345 +144368,57.377,65.636 +144369,49.149,67.733 +144370,51.336,67.06 +144371,53.642,66.384 +144372,56.085,65.706 +144373,47.814,67.708 +144374,50.015,67.066 +144375,52.334,66.423 +144376,54.791,65.778 +144377,46.48,67.682 +144378,48.694,67.073 +144379,51.026,66.462 +144380,53.495,65.849 +144381,45.148,67.657 +144382,47.374,67.08 +144383,49.717,66.501 +144384,52.197,65.921 +144385,43.818,67.63 +144386,46.054,67.086 +144387,48.408,66.54 +144388,50.897,65.994 +144389,42.489,67.603 +144390,44.735,67.092 +144391,47.098,66.58 +144392,49.596,66.067 +144393,41.162,67.576 +144394,43.417,67.098 +144395,45.787,66.619 +144396,48.292,66.14 +144397,39.837,67.549 +144398,42.099,67.104 +144399,44.476,66.659 +144400,46.986,66.214 +144401,38.513,67.521 +144402,40.781,67.11 +144403,43.164,66.698 +144404,45.679,66.288 +144405,37.191,67.492 +144406,39.465,67.115 +144407,41.851,66.738 +144408,44.369,66.362 +144409,35.871,67.464 +144410,38.149,67.121 +144411,40.538,66.778 +144412,43.058,66.436 +144413,34.552,67.435 +144414,36.833,67.126 +144415,39.225,66.818 +144416,41.745,66.511 +144417,33.235,67.406 +144418,35.518,67.131 +144419,37.91,66.858 +144420,40.429,66.586 +144421,31.92,67.376 +144422,34.204,67.137 +144423,36.595,66.898 +144424,39.112,66.661 +144425,30.607,67.347 +144426,32.89,67.142 +144427,35.279,66.938 +144428,37.793,66.736 +144429,29.295,67.317 +144430,31.577,67.147 +144431,33.963,66.978 +144432,36.472,66.811 +144433,27.986,67.287 +144434,30.264,67.152 +144435,32.646,67.019 +144436,35.149,66.887 +144437,26.677,67.257 +144438,28.952,67.157 +144439,31.328,67.059 +144440,33.824,66.962 +144441,25.371,67.227 +144442,27.64,67.162 +144443,30.01,67.099 +144444,32.497,67.038 +144445,24.066,67.197 +144446,26.329,67.167 +144447,28.691,67.139 +144448,31.168,67.113 +144449,22.763,67.167 +144450,25.019,67.172 +144451,27.372,67.179 +144452,29.838,67.189 +144453,21.462,67.137 +144454,23.709,67.177 +144455,26.052,67.22 +144456,28.505,67.264 +144457,20.162,67.107 +144458,22.4,67.182 +144459,24.731,67.26 +144460,27.171,67.339 +144461,18.865,67.077 +144462,21.091,67.187 +144463,23.41,67.3 +144464,25.835,67.414 +144465,17.569,67.047 +144466,19.783,67.192 +144467,22.088,67.34 +144468,24.497,67.49 +144469,16.274,67.017 +144470,18.476,67.197 +144471,20.765,67.38 +144472,23.157,67.564 +144473,14.981,66.987 +144474,17.169,67.202 +144475,19.442,67.42 +144476,21.815,67.639 +144477,13.69,66.957 +144478,15.862,67.208 +144479,18.118,67.46 +144480,20.472,67.714 +144481,12.401,66.928 +144482,14.557,67.213 +144483,16.794,67.5 +144484,19.127,67.788 +144485,11.113,66.899 +144486,13.251,67.218 +144487,15.469,67.539 +144488,17.78,67.862 +144489,9.8269,66.87 +144490,11.946,67.223 +144491,14.144,67.579 +144492,16.431,67.935 +144493,8.5424,66.841 +144494,10.642,67.229 +144495,12.818,67.618 +144496,15.081,68.009 +144497,7.2595,66.813 +144498,9.3384,67.234 +144499,11.491,67.658 +144500,13.729,68.081 +144501,5.9783,66.785 +144502,8.0352,67.24 +144503,10.164,67.697 +144504,12.376,68.154 +144505,4.6986,66.757 +144506,6.7326,67.246 +144507,8.8362,67.736 +144508,11.021,68.226 +144509,3.4205,66.73 +144510,5.4304,67.252 +144511,7.508,67.775 +144512,9.6639,68.298 +144513,2.144,66.703 +144514,4.1287,67.258 +144515,6.1792,67.814 +144516,8.3056,68.369 +144517,0.86902,66.677 +144518,2.8276,67.264 +144519,4.8498,67.852 +144520,6.9457,68.44 +144521,359.6,66.651 +144522,1.5269,67.271 +144523,3.52,67.891 +144524,5.5844,68.51 +144525,358.32,66.626 +144526,0.22671,67.277 +144527,2.1896,67.929 +144528,4.2215,68.58 +144529,357.05,66.601 +144530,358.93,67.284 +144531,0.85874,67.967 +144532,2.8572,68.649 +144533,355.78,66.577 +144534,357.63,67.291 +144535,359.53,68.005 +144536,1.4914,68.717 +144537,354.52,66.553 +144538,356.33,67.298 +144539,358.2,68.042 +144540,0.12429,68.785 +144541,353.25,66.53 +144542,355.03,67.305 +144543,356.86,68.08 +144544,358.76,68.852 +144545,351.99,66.507 +144546,353.73,67.313 +144547,355.53,68.117 +144548,357.39,68.919 +144549,350.72,66.485 +144550,352.44,67.32 +144551,354.2,68.154 +144552,356.01,68.985 +144553,349.46,66.464 +144554,351.14,67.328 +144555,352.86,68.191 +144556,354.64,69.05 +144557,348.2,66.444 +144558,349.84,67.336 +144559,351.53,68.227 +144560,353.27,69.115 +144561,346.94,66.424 +144562,348.55,67.345 +144563,350.19,68.263 +144564,351.89,69.178 +144565,345.68,66.405 +144566,347.25,67.353 +144567,348.86,68.299 +144568,350.52,69.241 +144569,344.43,66.386 +144570,345.95,67.362 +144571,347.52,68.335 +144572,349.14,69.303 +144573,343.17,66.369 +144574,344.66,67.371 +144575,346.19,68.37 +144576,347.76,69.365 +144577,341.92,66.352 +144578,343.36,67.381 +144579,344.85,68.406 +144580,346.38,69.425 +144581,340.66,66.336 +144582,342.07,67.39 +144583,343.52,68.44 +144584,345,69.485 +144585,339.41,66.321 +144586,340.78,67.4 +144587,342.18,68.475 +144588,343.62,69.544 +144589,338.16,66.307 +144590,339.48,67.411 +144591,340.84,68.509 +144592,342.24,69.602 +144593,336.91,66.294 +144594,338.19,67.421 +144595,339.5,68.543 +144596,340.86,69.659 +144597,335.66,66.282 +144598,336.9,67.432 +144599,338.17,68.577 +144600,339.47,69.715 +144601,334.41,66.27 +144602,335.6,67.443 +144603,336.83,68.61 +144604,338.09,69.77 +144605,333.17,66.26 +144606,334.31,67.455 +144607,335.49,68.643 +144608,336.7,69.824 +144609,331.92,66.251 +144610,333.02,67.466 +144611,334.15,68.676 +144612,335.31,69.877 +144613,330.67,66.242 +144614,331.73,67.479 +144615,332.81,68.708 +144616,333.93,69.929 +144617,329.43,66.235 +144618,330.44,67.491 +144619,331.47,68.74 +144620,332.54,69.98 +144621,328.19,66.228 +144622,329.15,67.504 +144623,330.13,68.772 +144624,331.15,70.031 +144625,326.94,66.223 +144626,327.85,67.517 +144627,328.79,68.803 +144628,329.76,70.08 +144629,325.7,66.219 +144630,326.56,67.53 +144631,327.45,68.834 +144632,328.37,70.128 +144633,324.46,66.215 +144634,325.27,67.544 +144635,326.11,68.864 +144636,326.98,70.175 +144637,323.22,66.213 +144638,323.98,67.558 +144639,324.77,68.895 +144640,325.59,70.221 +144641,321.98,66.212 +144642,322.69,67.573 +144643,323.43,68.924 +144644,324.2,70.266 +144645,320.74,66.212 +144646,321.4,67.588 +144647,322.09,68.954 +144648,322.8,70.309 +144649,319.5,66.213 +144650,320.11,67.603 +144651,320.75,68.983 +144652,321.41,70.352 +144653,318.27,66.215 +144654,318.82,67.618 +144655,319.41,69.012 +144656,320.02,70.394 +144657,317.03,66.219 +144658,317.53,67.634 +144659,318.07,69.04 +144660,318.63,70.434 +144661,315.79,66.223 +144662,316.24,67.651 +144663,316.72,69.068 +144664,317.23,70.473 +144665,314.55,66.229 +144666,314.95,67.667 +144667,315.38,69.095 +144668,315.84,70.512 +144669,313.32,66.236 +144670,313.66,67.685 +144671,314.04,69.123 +144672,314.44,70.548 +144673,312.08,66.244 +144674,312.38,67.702 +144675,312.7,69.149 +144676,313.05,70.584 +144677,310.85,66.253 +144678,311.09,67.72 +144679,311.36,69.176 +144680,311.66,70.619 +144681,309.61,66.264 +144682,309.8,67.738 +144683,310.01,69.202 +144684,310.26,70.652 +144685,308.38,66.275 +144686,308.51,67.757 +144687,308.67,69.227 +144688,308.87,70.685 +144689,307.14,66.288 +144690,307.22,67.776 +144691,307.33,69.252 +144692,307.47,70.716 +144693,305.91,66.302 +144694,305.93,67.795 +144695,305.99,69.277 +144696,306.08,70.746 +144697,304.67,66.318 +144698,304.64,67.815 +144699,304.65,69.301 +144700,304.69,70.775 +144701,303.44,66.334 +144702,303.35,67.836 +144703,303.3,69.325 +144704,303.29,70.802 +144705,302.2,66.352 +144706,302.06,67.856 +144707,301.96,69.349 +144708,301.9,70.829 +144709,300.97,66.371 +144710,300.77,67.877 +144711,300.62,69.372 +144712,300.5,70.854 +144713,299.73,66.391 +144714,299.48,67.899 +144715,299.28,69.395 +144716,299.11,70.878 +144717,298.5,66.413 +144718,298.19,67.921 +144719,297.94,69.417 +144720,297.72,70.9 +144721,297.26,66.435 +144722,296.91,67.943 +144723,296.59,69.439 +144724,296.32,70.922 +144725,296.02,66.459 +144726,295.62,67.965 +144727,295.25,69.46 +144728,294.93,70.942 +144729,294.79,66.484 +144730,294.33,67.989 +144731,293.91,69.481 +144732,293.54,70.962 +144733,293.55,66.511 +144734,293.04,68.012 +144735,292.57,69.502 +144736,292.15,70.98 +144737,292.32,66.538 +144738,291.75,68.036 +144739,291.23,69.522 +144740,290.75,70.996 +144741,291.08,66.567 +144742,290.46,68.06 +144743,289.89,69.542 +144744,289.36,71.012 +144745,289.84,66.597 +144746,289.17,68.085 +144747,288.54,69.562 +144748,287.97,71.026 +144749,288.6,66.628 +144750,287.88,68.11 +144751,287.2,69.581 +144752,286.58,71.04 +144753,287.37,66.66 +144754,286.59,68.135 +144755,285.86,69.599 +144756,285.19,71.052 +144757,286.13,66.694 +144758,285.29,68.161 +144759,284.52,69.618 +144760,283.8,71.063 +144761,284.89,66.729 +144762,284,68.187 +144763,283.18,69.636 +144764,282.41,71.072 +144765,283.65,66.765 +144766,282.71,68.214 +144767,281.84,69.653 +144768,281.03,71.081 +144769,282.41,66.802 +144770,281.42,68.241 +144771,280.5,69.67 +144772,279.64,71.088 +144773,281.16,66.84 +144774,280.13,68.268 +144775,279.16,69.687 +144776,278.25,71.095 +144777,279.92,66.88 +144778,278.84,68.296 +144779,277.82,69.703 +144780,276.87,71.1 +144781,278.68,66.92 +144782,277.54,68.324 +144783,276.48,69.719 +144784,275.48,71.104 +144785,277.43,66.962 +144786,276.25,68.353 +144787,275.14,69.735 +144788,274.1,71.107 +144789,276.19,67.005 +144790,274.96,68.381 +144791,273.8,69.75 +144792,272.72,71.109 +144793,274.94,67.049 +144794,273.67,68.411 +144795,272.46,69.765 +144796,271.33,71.109 +144797,273.7,67.094 +144798,272.37,68.44 +144799,271.13,69.779 +144800,269.95,71.109 +144801,272.45,67.14 +144802,271.08,68.47 +144803,269.79,69.793 +144804,268.57,71.108 +144805,271.2,67.187 +144806,269.78,68.5 +144807,268.45,69.807 +144808,267.19,71.105 +144809,269.95,67.236 +144810,268.49,68.531 +144811,267.11,69.82 +144812,265.81,71.102 +144813,268.7,67.285 +144814,267.19,68.562 +144815,265.78,69.833 +144816,264.44,71.097 +144817,267.45,67.335 +144818,265.9,68.593 +144819,264.44,69.846 +144820,263.06,71.091 +144821,266.19,67.387 +144822,264.6,68.625 +144823,263.1,69.858 +144824,261.69,71.085 +144825,264.94,67.439 +144826,263.31,68.657 +144827,261.77,69.87 +144828,260.31,71.077 +144829,263.68,67.492 +144830,262.01,68.689 +144831,260.43,69.882 +144832,258.94,71.069 +144833,262.43,67.547 +144834,260.71,68.722 +144835,259.1,69.893 +144836,257.57,71.059 +144837,261.17,67.602 +144838,259.42,68.755 +144839,257.76,69.904 +144840,256.2,71.049 +144841,259.91,67.658 +144842,258.12,68.788 +144843,256.43,69.915 +144844,254.83,71.037 +144845,258.65,67.715 +144846,256.82,68.821 +144847,255.09,69.925 +144848,253.46,71.025 +144849,257.38,67.773 +144850,255.52,68.855 +144851,253.76,69.935 +144852,252.09,71.012 +144853,256.12,67.832 +144854,254.22,68.889 +144855,252.43,69.945 +144856,250.73,70.998 +144857,254.85,67.892 +144858,252.92,68.924 +144859,251.1,69.955 +144860,249.36,70.983 +144861,253.59,67.952 +144862,251.62,68.958 +144863,249.76,69.964 +144864,248,70.967 +144865,252.32,68.013 +144866,250.32,68.993 +144867,248.43,69.973 +144868,246.64,70.951 +144869,251.05,68.075 +144870,249.02,69.028 +144871,247.1,69.982 +144872,245.28,70.933 +144873,249.78,68.138 +144874,247.72,69.064 +144875,245.77,69.99 +144876,243.92,70.915 +144877,248.5,68.202 +144878,246.41,69.1 +144879,244.44,69.998 +144880,242.56,70.897 +144881,247.23,68.266 +144882,245.11,69.135 +144883,243.11,70.006 +144884,241.21,70.877 +144885,245.95,68.331 +144886,243.81,69.172 +144887,241.78,70.014 +144888,239.85,70.857 +144889,244.67,68.397 +144890,242.5,69.208 +144891,240.45,70.021 +144892,238.5,70.836 +144893,243.39,68.463 +144894,241.2,69.244 +144895,239.12,70.029 +144896,237.15,70.814 +144897,242.11,68.53 +144898,239.89,69.281 +144899,237.8,70.036 +144900,235.8,70.792 +144901,240.83,68.597 +144902,238.59,69.318 +144903,236.47,70.043 +144904,234.45,70.769 +144905,239.54,68.665 +144906,237.28,69.355 +144907,235.14,70.049 +144908,233.1,70.746 +144909,238.25,68.734 +144910,235.98,69.393 +144911,233.81,70.056 +144912,231.76,70.722 +144913,236.97,68.803 +144914,234.67,69.43 +144915,232.49,70.062 +144916,230.41,70.697 +144917,235.68,68.872 +144918,233.36,69.468 +144919,231.16,70.068 +144920,229.07,70.672 +144921,234.38,68.942 +144922,232.05,69.505 +144923,229.84,70.074 +144924,227.73,70.646 +144925,233.09,69.013 +144926,230.74,69.543 +144927,228.51,70.08 +144928,226.39,70.62 +144929,231.79,69.084 +144930,229.43,69.582 +144931,227.19,70.085 +144932,225.05,70.594 +144933,230.5,69.155 +144934,228.12,69.62 +144935,225.87,70.091 +144936,223.72,70.567 +144937,229.2,69.226 +144938,226.81,69.658 +144939,224.55,70.096 +144940,222.38,70.54 +144941,227.89,69.298 +144942,225.5,69.696 +144943,223.22,70.102 +144944,221.05,70.512 +144945,226.59,69.37 +144946,224.19,69.735 +144947,221.9,70.107 +144948,219.72,70.484 +144949,225.29,69.443 +144950,222.88,69.774 +144951,220.58,70.112 +144952,218.39,70.456 +144953,223.98,69.515 +144954,221.56,69.812 +144955,219.26,70.117 +144956,217.06,70.427 +144957,222.67,69.588 +144958,220.25,69.851 +144959,217.94,70.122 +144960,215.74,70.398 +144961,221.36,69.661 +144962,218.93,69.89 +144963,216.62,70.126 +144964,214.41,70.369 +144965,220.05,69.735 +144966,217.62,69.929 +144967,215.3,70.131 +144968,213.09,70.34 +144969,218.73,69.808 +144970,216.3,69.968 +144971,213.99,70.136 +144972,211.77,70.311 +144973,217.42,69.881 +144974,214.99,70.007 +144975,212.67,70.14 +144976,210.45,70.281 +144977,216.1,69.955 +144978,213.67,70.046 +144979,211.35,70.145 +144980,209.13,70.251 +144981,214.78,70.029 +144982,212.35,70.085 +144983,210.04,70.149 +144984,207.82,70.221 +144985,213.46,70.102 +144986,211.03,70.124 +144987,208.72,70.154 +144988,206.5,70.191 +144989,212.13,70.176 +144990,209.71,70.163 +144991,207.4,70.158 +144992,205.19,70.162 +144993,210.81,70.249 +144994,208.39,70.202 +144995,206.09,70.163 +144996,203.88,70.132 +144997,209.48,70.323 +144998,207.07,70.241 +144999,204.78,70.167 +145000,202.57,70.102 +145001,208.15,70.396 +145002,205.75,70.28 +145003,203.46,70.172 +145004,201.26,70.072 +145005,206.82,70.47 +145006,204.43,70.319 +145007,202.15,70.177 +145008,199.96,70.042 +145009,205.48,70.543 +145010,203.11,70.358 +145011,200.84,70.181 +145012,198.65,70.012 +145013,204.15,70.616 +145014,201.79,70.397 +145015,199.53,70.186 +145016,197.35,69.983 +145017,202.81,70.688 +145018,200.46,70.435 +145019,198.21,70.191 +145020,196.05,69.953 +145021,201.48,70.761 +145022,199.14,70.474 +145023,196.9,70.195 +145024,194.75,69.924 +145025,200.14,70.833 +145026,197.82,70.513 +145027,195.59,70.2 +145028,193.45,69.895 +145029,198.79,70.905 +145030,196.49,70.551 +145031,194.28,70.205 +145032,192.16,69.866 +145033,197.45,70.977 +145034,195.17,70.59 +145035,192.97,70.21 +145036,190.86,69.838 +145037,196.1,71.048 +145038,193.84,70.628 +145039,191.67,70.215 +145040,189.57,69.809 +145041,194.76,71.119 +145042,192.51,70.666 +145043,190.36,70.22 +145044,188.28,69.782 +145045,193.41,71.19 +145046,191.19,70.704 +145047,189.05,70.226 +145048,186.99,69.754 +145049,192.06,71.26 +145050,189.86,70.742 +145051,187.74,70.231 +145052,185.7,69.727 +145053,190.71,71.33 +145054,188.53,70.78 +145055,186.44,70.237 +145056,184.42,69.7 +145057,189.35,71.399 +145058,187.2,70.818 +145059,185.13,70.243 +145060,183.13,69.674 +145061,188,71.468 +145062,185.87,70.855 +145063,183.83,70.248 +145064,181.85,69.648 +145065,186.64,71.536 +145066,184.54,70.893 +145067,182.52,70.255 +145068,180.57,69.622 +145069,185.28,71.604 +145070,183.21,70.93 +145071,181.22,70.261 +145072,179.29,69.597 +145073,183.92,71.671 +145074,181.88,70.967 +145075,179.91,70.267 +145076,178.01,69.573 +145077,182.56,71.737 +145078,180.55,71.003 +145079,178.61,70.274 +145080,176.73,69.549 +145081,181.2,71.803 +145082,179.22,71.04 +145083,177.31,70.281 +145084,175.45,69.526 +145085,179.84,71.869 +145086,177.88,71.076 +145087,176,70.288 +145088,174.18,69.503 +145089,178.47,71.933 +145090,176.55,71.112 +145091,174.7,70.295 +145092,172.91,69.481 +145093,177.1,71.997 +145094,175.22,71.148 +145095,173.4,70.302 +145096,171.64,69.46 +145097,175.73,72.061 +145098,173.88,71.184 +145099,172.1,70.31 +145100,170.37,69.439 +145101,174.36,72.123 +145102,172.55,71.219 +145103,170.8,70.318 +145104,169.1,69.419 +145105,172.99,72.185 +145106,171.22,71.255 +145107,169.5,70.326 +145108,167.83,69.4 +145109,171.62,72.246 +145110,169.88,71.29 +145111,168.2,70.334 +145112,166.56,69.381 +145113,170.25,72.306 +145114,168.54,71.324 +145115,166.9,70.343 +145116,165.3,69.364 +145117,168.87,72.366 +145118,167.21,71.359 +145119,165.6,70.352 +145120,164.03,69.347 +145121,167.5,72.425 +145122,165.87,71.393 +145123,164.3,70.361 +145124,162.77,69.331 +145125,166.12,72.482 +145126,164.54,71.427 +145127,163,70.37 +145128,161.51,69.315 +145129,164.74,72.539 +145130,163.2,71.46 +145131,161.7,70.38 +145132,160.25,69.301 +145133,163.36,72.595 +145134,161.86,71.493 +145135,160.41,70.39 +145136,158.99,69.287 +145137,161.98,72.651 +145138,160.52,71.526 +145139,159.11,70.401 +145140,157.73,69.275 +145141,160.6,72.705 +145142,159.18,71.559 +145143,157.81,70.411 +145144,156.48,69.263 +145145,159.22,72.758 +145146,157.85,71.591 +145147,156.51,70.422 +145148,155.22,69.252 +145149,157.84,72.811 +145150,156.51,71.623 +145151,155.22,70.433 +145152,153.97,69.242 +145153,156.45,72.862 +145154,155.17,71.655 +145155,153.92,70.445 +145156,152.71,69.233 +145157,155.07,72.912 +145158,153.83,71.686 +145159,152.63,70.457 +145160,151.46,69.225 +145161,153.68,72.962 +145162,152.49,71.717 +145163,151.33,70.469 +145164,150.21,69.218 +145165,152.3,73.01 +145166,151.15,71.748 +145167,150.04,70.482 +145168,148.96,69.213 +145169,150.91,73.058 +145170,149.81,71.778 +145171,148.74,70.495 +145172,147.71,69.208 +145173,149.52,73.104 +145174,148.47,71.809 +145175,147.45,70.508 +145176,146.46,69.204 +145177,148.13,73.15 +145178,147.12,71.838 +145179,146.15,70.522 +145180,145.21,69.201 +145181,146.74,73.194 +145182,145.78,71.867 +145183,144.86,70.536 +145184,143.96,69.2 +145185,145.35,73.237 +145186,144.44,71.896 +145187,143.56,70.55 +145188,142.72,69.199 +145189,143.96,73.279 +145190,143.1,71.925 +145191,142.27,70.565 +145192,141.47,69.199 +145193,142.57,73.32 +145194,141.76,71.953 +145195,140.98,70.58 +145196,140.23,69.201 +145197,141.18,73.36 +145198,140.42,71.981 +145199,139.68,70.595 +145200,138.98,69.204 +145201,139.79,73.399 +145202,139.07,72.009 +145203,138.39,70.611 +145204,137.74,69.208 +145205,138.4,73.437 +145206,137.73,72.036 +145207,137.1,70.627 +145208,136.49,69.213 +145209,137,73.473 +145210,136.39,72.062 +145211,135.8,70.644 +145212,135.25,69.219 +145213,135.61,73.509 +145214,135.04,72.089 +145215,134.51,70.661 +145216,134.01,69.226 +145217,134.22,73.543 +145218,133.7,72.115 +145219,133.22,70.678 +145220,132.76,69.235 +145221,132.82,73.576 +145222,132.36,72.14 +145223,131.93,70.696 +145224,131.52,69.245 +145225,131.43,73.609 +145226,131.02,72.165 +145227,130.63,70.714 +145228,130.28,69.256 +145229,130.03,73.639 +145230,129.67,72.19 +145231,129.34,70.732 +145232,129.04,69.268 +145233,128.64,73.669 +145234,128.33,72.215 +145235,128.05,70.751 +145236,127.8,69.281 +145237,127.25,73.698 +145238,126.99,72.239 +145239,126.76,70.771 +145240,126.56,69.296 +145241,125.85,73.725 +145242,125.64,72.262 +145243,125.46,70.79 +145244,125.32,69.311 +145245,124.46,73.751 +145246,124.3,72.285 +145247,124.17,70.811 +145248,124.08,69.328 +145249,123.06,73.776 +145250,122.95,72.308 +145251,122.88,70.831 +145252,122.84,69.346 +145253,121.67,73.8 +145254,121.61,72.331 +145255,121.59,70.852 +145256,121.6,69.366 +145257,120.27,73.823 +145258,120.27,72.353 +145259,120.29,70.873 +145260,120.36,69.386 +145261,118.88,73.844 +145262,118.92,72.374 +145263,119,70.895 +145264,119.12,69.408 +145265,117.48,73.865 +145266,117.58,72.396 +145267,117.71,70.917 +145268,117.88,69.431 +145269,116.09,73.884 +145270,116.24,72.416 +145271,116.42,70.94 +145272,116.64,69.456 +145273,114.7,73.902 +145274,114.89,72.437 +145275,115.13,70.963 +145276,115.4,69.481 +145277,113.3,73.919 +145278,113.55,72.457 +145279,113.83,70.986 +145280,114.16,69.508 +145281,111.91,73.934 +145282,112.21,72.476 +145283,112.54,71.01 +145284,112.91,69.536 +145285,110.52,73.949 +145286,110.86,72.496 +145287,111.25,71.034 +145288,111.67,69.565 +145289,109.13,73.962 +145290,109.52,72.515 +145291,109.95,71.058 +145292,110.43,69.595 +145293,107.73,73.975 +145294,108.18,72.533 +145295,108.66,71.083 +145296,109.19,69.627 +145297,106.34,73.986 +145298,106.83,72.551 +145299,107.37,71.109 +145300,107.95,69.659 +145301,104.95,73.995 +145302,105.49,72.569 +145303,106.08,71.134 +145304,106.71,69.693 +145305,103.56,74.004 +145306,104.15,72.586 +145307,104.78,71.16 +145308,105.46,69.728 +145309,102.17,74.012 +145310,102.81,72.603 +145311,103.49,71.187 +145312,104.22,69.765 +145313,100.78,74.018 +145314,101.46,72.62 +145315,102.19,71.214 +145316,102.98,69.802 +145317,99.391,74.024 +145318,100.12,72.636 +145319,100.9,71.241 +145320,101.73,69.841 +145321,98.003,74.028 +145322,98.78,72.652 +145323,99.606,71.269 +145324,100.49,69.88 +145325,96.615,74.031 +145326,97.438,72.667 +145327,98.312,71.297 +145328,99.239,69.921 +145329,95.228,74.033 +145330,96.097,72.682 +145331,97.017,71.325 +145332,97.993,69.963 +145333,93.842,74.034 +145334,94.755,72.697 +145335,95.722,71.354 +145336,96.746,70.006 +145337,92.456,74.034 +145338,93.414,72.711 +145339,94.427,71.383 +145340,95.498,70.05 +145341,91.072,74.033 +145342,92.074,72.725 +145343,93.131,71.412 +145344,94.249,70.096 +145345,89.688,74.031 +145346,90.733,72.739 +145347,91.835,71.442 +145348,92.999,70.142 +145349,88.305,74.028 +145350,89.393,72.752 +145351,90.539,71.472 +145352,91.748,70.19 +145353,86.923,74.023 +145354,88.053,72.765 +145355,89.243,71.503 +145356,90.497,70.238 +145357,85.542,74.018 +145358,86.713,72.778 +145359,87.946,71.534 +145360,89.245,70.288 +145361,84.162,74.012 +145362,85.374,72.79 +145363,86.649,71.565 +145364,87.991,70.338 +145365,82.783,74.005 +145366,84.035,72.802 +145367,85.351,71.596 +145368,86.737,70.39 +145369,81.404,73.996 +145370,82.696,72.814 +145371,84.053,71.628 +145372,85.481,70.442 +145373,80.027,73.987 +145374,81.358,72.825 +145375,82.755,71.661 +145376,84.224,70.496 +145377,78.651,73.977 +145378,80.02,72.836 +145379,81.456,71.693 +145380,82.967,70.55 +145381,77.276,73.966 +145382,78.682,72.847 +145383,80.157,71.726 +145384,81.708,70.606 +145385,75.902,73.954 +145386,77.345,72.857 +145387,78.858,71.759 +145388,80.448,70.662 +145389,74.53,73.942 +145390,76.008,72.867 +145391,77.558,71.792 +145392,79.186,70.719 +145393,73.158,73.928 +145394,74.671,72.877 +145395,76.258,71.826 +145396,77.924,70.777 +145397,71.788,73.914 +145398,73.335,72.887 +145399,74.957,71.86 +145400,76.66,70.836 +145401,70.418,73.898 +145402,72,72.896 +145403,73.656,71.894 +145404,75.395,70.896 +145405,69.05,73.882 +145406,70.664,72.905 +145407,72.354,71.929 +145408,74.128,70.957 +145409,67.684,73.865 +145410,69.329,72.914 +145411,71.052,71.964 +145412,72.86,71.018 +145413,66.318,73.848 +145414,67.995,72.922 +145415,69.75,71.999 +145416,71.591,71.08 +145417,64.954,73.829 +145418,66.661,72.93 +145419,68.447,72.034 +145420,70.321,71.143 +145421,63.592,73.81 +145422,65.327,72.938 +145423,67.143,72.07 +145424,69.048,71.207 +145425,62.23,73.79 +145426,63.994,72.946 +145427,65.839,72.105 +145428,67.775,71.271 +145429,60.87,73.77 +145430,62.661,72.954 +145431,64.535,72.141 +145432,66.5,71.336 +145433,59.511,73.749 +145434,61.329,72.961 +145435,63.23,72.178 +145436,65.223,71.402 +145437,58.154,73.727 +145438,59.997,72.968 +145439,61.924,72.214 +145440,63.945,71.468 +145441,56.798,73.705 +145442,58.666,72.975 +145443,60.618,72.251 +145444,62.665,71.535 +145445,55.444,73.682 +145446,57.335,72.982 +145447,59.312,72.288 +145448,61.384,71.602 +145449,54.091,73.658 +145450,56.005,72.988 +145451,58.005,72.325 +145452,60.101,71.67 +145453,52.739,73.634 +145454,54.675,72.994 +145455,56.697,72.362 +145456,58.816,71.739 +145457,51.389,73.609 +145458,53.345,73.001 +145459,55.389,72.399 +145460,57.53,71.808 +145461,50.041,73.584 +145462,52.017,73.007 +145463,54.08,72.437 +145464,56.242,71.877 +145465,48.694,73.558 +145466,50.688,73.012 +145467,52.771,72.475 +145468,54.953,71.947 +145469,47.348,73.532 +145470,49.36,73.018 +145471,51.461,72.513 +145472,53.662,72.018 +145473,46.004,73.506 +145474,48.033,73.024 +145475,50.151,72.551 +145476,52.369,72.088 +145477,44.662,73.479 +145478,46.706,73.029 +145479,48.84,72.589 +145480,51.074,72.16 +145481,43.321,73.452 +145482,45.38,73.035 +145483,47.528,72.627 +145484,49.778,72.231 +145485,41.982,73.424 +145486,44.054,73.04 +145487,46.216,72.665 +145488,48.48,72.303 +145489,40.644,73.396 +145490,42.729,73.045 +145491,44.904,72.704 +145492,47.18,72.375 +145493,39.308,73.368 +145494,41.404,73.05 +145495,43.59,72.742 +145496,45.878,72.447 +145497,37.973,73.34 +145498,40.08,73.055 +145499,42.276,72.781 +145500,44.575,72.52 +145501,36.64,73.311 +145502,38.756,73.06 +145503,40.962,72.82 +145504,43.27,72.593 +145505,35.309,73.282 +145506,37.433,73.065 +145507,39.647,72.858 +145508,41.963,72.666 +145509,33.979,73.253 +145510,36.111,73.069 +145511,38.331,72.897 +145512,40.654,72.739 +145513,32.651,73.224 +145514,34.789,73.074 +145515,37.015,72.936 +145516,39.343,72.812 +145517,31.325,73.194 +145518,33.467,73.079 +145519,35.698,72.975 +145520,38.031,72.885 +145521,30,73.165 +145522,32.146,73.083 +145523,34.381,73.014 +145524,36.717,72.959 +145525,28.676,73.135 +145526,30.826,73.088 +145527,33.063,73.053 +145528,35.401,73.032 +145529,27.355,73.106 +145530,29.506,73.093 +145531,31.744,73.092 +145532,34.083,73.106 +145533,26.035,73.076 +145534,28.187,73.097 +145535,30.425,73.131 +145536,32.764,73.179 +145537,24.717,73.046 +145538,26.868,73.102 +145539,29.106,73.17 +145540,31.443,73.253 +145541,23.4,73.017 +145542,25.55,73.106 +145543,27.785,73.209 +145544,30.12,73.326 +145545,22.085,72.987 +145546,24.232,73.111 +145547,26.464,73.248 +145548,28.795,73.399 +145549,20.771,72.958 +145550,22.915,73.116 +145551,25.143,73.287 +145552,27.468,73.472 +145553,19.46,72.929 +145554,21.598,73.121 +145555,23.821,73.326 +145556,26.14,73.545 +145557,18.149,72.899 +145558,20.282,73.125 +145559,22.498,73.364 +145560,24.809,73.618 +145561,16.841,72.87 +145562,18.967,73.13 +145563,21.175,73.403 +145564,23.477,73.69 +145565,15.534,72.842 +145566,17.652,73.135 +145567,19.851,73.442 +145568,22.144,73.763 +145569,14.228,72.813 +145570,16.337,73.14 +145571,18.526,73.48 +145572,20.808,73.835 +145573,12.925,72.785 +145574,15.023,73.145 +145575,17.201,73.519 +145576,19.471,73.907 +145577,11.623,72.757 +145578,13.71,73.15 +145579,15.876,73.557 +145580,18.132,73.978 +145581,10.322,72.729 +145582,12.397,73.156 +145583,14.549,73.596 +145584,16.792,74.049 +145585,9.023,72.701 +145586,11.085,73.161 +145587,13.223,73.634 +145588,15.449,74.12 +145589,7.7256,72.674 +145590,9.7729,73.167 +145591,11.895,73.672 +145592,14.105,74.19 +145593,6.4298,72.648 +145594,8.4615,73.173 +145595,10.567,73.71 +145596,12.76,74.26 +145597,5.1355,72.621 +145598,7.1507,73.178 +145599,9.239,73.747 +145600,11.412,74.33 +145601,3.8427,72.596 +145602,5.8404,73.184 +145603,7.91,73.785 +145604,10.063,74.398 +145605,2.5514,72.57 +145606,4.5306,73.191 +145607,6.5805,73.823 +145608,8.7127,74.467 +145609,1.2617,72.545 +145610,3.2213,73.197 +145611,5.2504,73.86 +145612,7.3605,74.535 +145613,359.97,72.521 +145614,1.9125,73.203 +145615,3.9199,73.897 +145616,6.0068,74.602 +145617,358.69,72.497 +145618,0.60419,73.21 +145619,2.5888,73.934 +145620,4.6514,74.669 +145621,357.4,72.474 +145622,359.3,73.217 +145623,1.2571,73.971 +145624,3.2946,74.735 +145625,356.12,72.451 +145626,357.99,73.224 +145627,359.92,74.007 +145628,1.9362,74.801 +145629,354.84,72.429 +145630,356.68,73.231 +145631,358.59,74.044 +145632,0.5764,74.866 +145633,353.55,72.408 +145634,355.38,73.239 +145635,357.26,74.08 +145636,359.22,74.93 +145637,352.27,72.387 +145638,354.07,73.247 +145639,355.93,74.116 +145640,357.85,74.994 +145641,351,72.367 +145642,352.76,73.255 +145643,354.59,74.151 +145644,356.49,75.057 +145645,349.72,72.348 +145646,351.46,73.263 +145647,353.26,74.187 +145648,355.12,75.119 +145649,348.44,72.329 +145650,350.15,73.271 +145651,351.92,74.222 +145652,353.76,75.181 +145653,347.17,72.312 +145654,348.85,73.28 +145655,350.59,74.257 +145656,352.39,75.241 +145657,345.9,72.295 +145658,347.55,73.289 +145659,349.25,74.291 +145660,351.02,75.301 +145661,344.62,72.278 +145662,346.24,73.298 +145663,347.91,74.326 +145664,349.65,75.361 +145665,343.35,72.263 +145666,344.94,73.308 +145667,346.58,74.36 +145668,348.27,75.419 +145669,342.09,72.248 +145670,343.64,73.318 +145671,345.24,74.394 +145672,346.9,75.476 +145673,340.82,72.235 +145674,342.33,73.328 +145675,343.9,74.427 +145676,345.53,75.533 +145677,339.55,72.222 +145678,341.03,73.338 +145679,342.56,74.461 +145680,344.15,75.588 +145681,338.28,72.21 +145682,339.73,73.349 +145683,341.23,74.494 +145684,342.77,75.643 +145685,337.02,72.199 +145686,338.43,73.36 +145687,339.89,74.526 +145688,341.4,75.697 +145689,335.76,72.189 +145690,337.13,73.372 +145691,338.55,74.559 +145692,340.02,75.75 +145693,334.49,72.18 +145694,335.83,73.383 +145695,337.21,74.591 +145696,338.64,75.802 +145697,333.23,72.172 +145698,334.53,73.395 +145699,335.87,74.623 +145700,337.26,75.853 +145701,331.97,72.165 +145702,333.23,73.408 +145703,334.53,74.654 +145704,335.87,75.903 +145705,330.71,72.159 +145706,331.93,73.42 +145707,333.19,74.685 +145708,334.49,75.952 +145709,329.45,72.153 +145710,330.63,73.433 +145711,331.85,74.716 +145712,333.11,76 +145713,328.2,72.149 +145714,329.33,73.447 +145715,330.5,74.746 +145716,331.72,76.047 +145717,326.94,72.146 +145718,328.03,73.46 +145719,329.16,74.776 +145720,330.34,76.093 +145721,325.68,72.145 +145722,326.73,73.475 +145723,327.82,74.806 +145724,328.95,76.138 +145725,324.43,72.144 +145726,325.44,73.489 +145727,326.48,74.835 +145728,327.56,76.182 +145729,323.18,72.144 +145730,324.14,73.504 +145731,325.14,74.864 +145732,326.18,76.225 +145733,321.92,72.145 +145734,322.84,73.519 +145735,323.79,74.893 +145736,324.79,76.267 +145737,320.67,72.148 +145738,321.54,73.535 +145739,322.45,74.921 +145740,323.4,76.307 +145741,319.42,72.152 +145742,320.25,73.551 +145743,321.11,74.949 +145744,322.01,76.347 +145745,318.17,72.156 +145746,318.95,73.567 +145747,319.76,74.977 +145748,320.62,76.385 +145749,316.92,72.162 +145750,317.65,73.584 +145751,318.42,75.004 +145752,319.23,76.422 +145753,315.66,72.169 +145754,316.35,73.601 +145755,317.08,75.031 +145756,317.84,76.459 +145757,314.42,72.178 +145758,315.06,73.618 +145759,315.73,75.057 +145760,316.44,76.494 +145761,313.17,72.187 +145762,313.76,73.636 +145763,314.39,75.083 +145764,315.05,76.528 +145765,311.92,72.198 +145766,312.46,73.654 +145767,313.04,75.109 +145768,313.66,76.56 +145769,310.67,72.21 +145770,311.17,73.673 +145771,311.7,75.134 +145772,312.27,76.592 +145773,309.42,72.223 +145774,309.87,73.692 +145775,310.36,75.159 +145776,310.87,76.622 +145777,308.17,72.237 +145778,308.58,73.712 +145779,309.01,75.184 +145780,309.48,76.652 +145781,306.93,72.252 +145782,307.28,73.731 +145783,307.67,75.208 +145784,308.08,76.68 +145785,305.68,72.269 +145786,305.98,73.752 +145787,306.32,75.231 +145788,306.69,76.707 +145789,304.43,72.287 +145790,304.69,73.772 +145791,304.98,75.255 +145792,305.3,76.733 +145793,303.19,72.306 +145794,303.39,73.794 +145795,303.63,75.278 +145796,303.9,76.757 +145797,301.94,72.326 +145798,302.1,73.815 +145799,302.29,75.3 +145800,302.51,76.781 +145801,300.7,72.348 +145802,300.8,73.837 +145803,300.94,75.322 +145804,301.11,76.803 +145805,299.45,72.371 +145806,299.51,73.859 +145807,299.6,75.344 +145808,299.72,76.824 +145809,298.2,72.395 +145810,298.21,73.882 +145811,298.25,75.366 +145812,298.32,76.844 +145813,296.96,72.42 +145814,296.92,73.905 +145815,296.91,75.387 +145816,296.93,76.863 +145817,295.71,72.447 +145818,295.62,73.929 +145819,295.56,75.407 +145820,295.53,76.88 +145821,294.47,72.474 +145822,294.32,73.953 +145823,294.21,75.427 +145824,294.14,76.897 +145825,293.22,72.503 +145826,293.03,73.977 +145827,292.87,75.447 +145828,292.75,76.912 +145829,291.97,72.533 +145830,291.73,74.002 +145831,291.52,75.467 +145832,291.35,76.926 +145833,290.73,72.565 +145834,290.44,74.027 +145835,290.18,75.486 +145836,289.96,76.939 +145837,289.48,72.597 +145838,289.14,74.053 +145839,288.83,75.504 +145840,288.56,76.951 +145841,288.23,72.631 +145842,287.84,74.078 +145843,287.49,75.523 +145844,287.17,76.962 +145845,286.99,72.666 +145846,286.55,74.105 +145847,286.14,75.541 +145848,285.78,76.971 +145849,285.74,72.702 +145850,285.25,74.132 +145851,284.8,75.558 +145852,284.39,76.98 +145853,284.49,72.739 +145854,283.95,74.159 +145855,283.46,75.575 +145856,282.99,76.987 +145857,283.24,72.778 +145858,282.66,74.186 +145859,282.11,75.592 +145860,281.6,76.993 +145861,282,72.818 +145862,281.36,74.214 +145863,280.77,75.608 +145864,280.21,76.998 +145865,280.75,72.858 +145866,280.06,74.243 +145867,279.42,75.624 +145868,278.82,77.002 +145869,279.5,72.9 +145870,278.77,74.271 +145871,278.08,75.64 +145872,277.43,77.005 +145873,278.25,72.944 +145874,277.47,74.3 +145875,276.73,75.655 +145876,276.04,77.007 +145877,277,72.988 +145878,276.17,74.33 +145879,275.39,75.67 +145880,274.65,77.007 +145881,275.74,73.033 +145882,274.87,74.36 +145883,274.05,75.685 +145884,273.26,77.007 +145885,274.49,73.08 +145886,273.58,74.39 +145887,272.7,75.699 +145888,271.88,77.006 +145889,273.24,73.127 +145890,272.28,74.42 +145891,271.36,75.713 +145892,270.49,77.003 +145893,271.99,73.176 +145894,270.98,74.451 +145895,270.02,75.726 +145896,269.1,77 +145897,270.73,73.225 +145898,269.68,74.482 +145899,268.67,75.74 +145900,267.72,76.995 +145901,269.48,73.276 +145902,268.38,74.514 +145903,267.33,75.753 +145904,266.33,76.99 +145905,268.22,73.328 +145906,267.08,74.546 +145907,265.99,75.765 +145908,264.95,76.983 +145909,266.97,73.38 +145910,265.78,74.578 +145911,264.65,75.777 +145912,263.57,76.976 +145913,265.71,73.434 +145914,264.48,74.611 +145915,263.31,75.789 +145916,262.18,76.968 +145917,264.45,73.489 +145918,263.18,74.644 +145919,261.97,75.801 +145920,260.8,76.958 +145921,263.19,73.545 +145922,261.88,74.677 +145923,260.62,75.812 +145924,259.42,76.948 +145925,261.93,73.601 +145926,260.58,74.711 +145927,259.28,75.823 +145928,258.04,76.937 +145929,260.67,73.659 +145930,259.28,74.744 +145931,257.94,75.834 +145932,256.67,76.925 +145933,259.41,73.717 +145934,257.97,74.779 +145935,256.6,75.844 +145936,255.29,76.912 +145937,258.14,73.776 +145938,256.67,74.813 +145939,255.26,75.854 +145940,253.91,76.898 +145941,256.88,73.837 +145942,255.37,74.848 +145943,253.92,75.864 +145944,252.54,76.884 +145945,255.61,73.898 +145946,254.07,74.883 +145947,252.59,75.874 +145948,251.16,76.868 +145949,254.34,73.959 +145950,252.76,74.918 +145951,251.25,75.883 +145952,249.79,76.852 +145953,253.08,74.022 +145954,251.46,74.954 +145955,249.91,75.892 +145956,248.42,76.835 +145957,251.81,74.085 +145958,250.16,74.99 +145959,248.57,75.901 +145960,247.05,76.817 +145961,250.54,74.15 +145962,248.85,75.026 +145963,247.23,75.91 +145964,245.68,76.799 +145965,249.26,74.215 +145966,247.55,75.062 +145967,245.9,75.918 +145968,244.31,76.779 +145969,247.99,74.28 +145970,246.24,75.099 +145971,244.56,75.926 +145972,242.94,76.76 +145973,246.71,74.346 +145974,244.93,75.136 +145975,243.22,75.934 +145976,241.58,76.739 +145977,245.44,74.413 +145978,243.63,75.173 +145979,241.89,75.942 +145980,240.21,76.718 +145981,244.16,74.481 +145982,242.32,75.21 +145983,240.55,75.949 +145984,238.85,76.696 +145985,242.88,74.549 +145986,241.01,75.247 +145987,239.22,75.956 +145988,237.49,76.674 +145989,241.6,74.618 +145990,239.7,75.285 +145991,237.88,75.963 +145992,236.13,76.651 +145993,240.32,74.687 +145994,238.4,75.323 +145995,236.55,75.97 +145996,234.77,76.627 +145997,239.04,74.757 +145998,237.09,75.361 +145999,235.21,75.977 +146000,233.41,76.603 +146001,237.75,74.827 +146002,235.78,75.399 +146003,233.88,75.984 +146004,232.06,76.578 +146005,236.46,74.898 +146006,234.47,75.438 +146007,232.55,75.99 +146008,230.7,76.553 +146009,235.18,74.97 +146010,233.16,75.476 +146011,231.22,75.996 +146012,229.35,76.528 +146013,233.89,75.041 +146014,231.85,75.515 +146015,229.88,76.002 +146016,228,76.502 +146017,232.6,75.113 +146018,230.53,75.554 +146019,228.55,76.008 +146020,226.65,76.475 +146021,231.3,75.186 +146022,229.22,75.593 +146023,227.22,76.014 +146024,225.3,76.449 +146025,230.01,75.259 +146026,227.91,75.632 +146027,225.89,76.02 +146028,223.95,76.421 +146029,228.71,75.332 +146030,226.6,75.671 +146031,224.56,76.026 +146032,222.6,76.394 +146033,227.42,75.405 +146034,225.28,75.71 +146035,223.23,76.031 +146036,221.26,76.366 +146037,226.12,75.479 +146038,223.97,75.75 +146039,221.9,76.037 +146040,219.92,76.338 +146041,224.82,75.553 +146042,222.65,75.789 +146043,220.58,76.042 +146044,218.58,76.31 +146045,223.51,75.627 +146046,221.34,75.829 +146047,219.25,76.047 +146048,217.24,76.281 +146049,222.21,75.701 +146050,220.02,75.868 +146051,217.92,76.053 +146052,215.9,76.252 +146053,220.9,75.776 +146054,218.7,75.908 +146055,216.59,76.058 +146056,214.56,76.224 +146057,219.59,75.85 +146058,217.39,75.948 +146059,215.27,76.063 +146060,213.22,76.195 +146061,218.29,75.925 +146062,216.07,75.987 +146063,213.94,76.068 +146064,211.89,76.165 +146065,216.97,76 +146066,214.75,76.027 +146067,212.62,76.073 +146068,210.56,76.136 +146069,215.66,76.075 +146070,213.43,76.067 +146071,211.29,76.079 +146072,209.23,76.107 +146073,214.35,76.149 +146074,212.11,76.107 +146075,209.97,76.084 +146076,207.9,76.077 +146077,213.03,76.224 +146078,210.79,76.147 +146079,208.64,76.089 +146080,206.57,76.048 +146081,211.71,76.299 +146082,209.47,76.187 +146083,207.32,76.094 +146084,205.25,76.019 +146085,210.39,76.374 +146086,208.15,76.226 +146087,206,76.099 +146088,203.92,75.989 +146089,209.07,76.448 +146090,206.83,76.266 +146091,204.68,76.104 +146092,202.6,75.96 +146093,207.75,76.523 +146094,205.51,76.306 +146095,203.35,76.11 +146096,201.28,75.931 +146097,206.42,76.597 +146098,204.18,76.346 +146099,202.03,76.115 +146100,199.96,75.902 +146101,205.1,76.671 +146102,202.86,76.385 +146103,200.71,76.12 +146104,198.64,75.873 +146105,203.77,76.745 +146106,201.54,76.425 +146107,199.39,76.126 +146108,197.32,75.844 +146109,202.44,76.818 +146110,200.21,76.465 +146111,198.07,76.131 +146112,196.01,75.816 +146113,201.11,76.892 +146114,198.89,76.504 +146115,196.75,76.137 +146116,194.69,75.788 +146117,199.77,76.965 +146118,197.56,76.543 +146119,195.43,76.142 +146120,193.38,75.76 +146121,198.44,77.037 +146122,196.24,76.583 +146123,194.12,76.148 +146124,192.07,75.732 +146125,197.1,77.11 +146126,194.91,76.622 +146127,192.8,76.154 +146128,190.76,75.705 +146129,195.76,77.182 +146130,193.58,76.661 +146131,191.48,76.16 +146132,189.46,75.678 +146133,194.42,77.253 +146134,192.25,76.7 +146135,190.17,76.166 +146136,188.15,75.651 +146137,193.08,77.324 +146138,190.92,76.738 +146139,188.85,76.173 +146140,186.85,75.625 +146141,191.74,77.395 +146142,189.6,76.777 +146143,187.53,76.179 +146144,185.54,75.599 +146145,190.39,77.465 +146146,188.27,76.816 +146147,186.22,76.186 +146148,184.24,75.574 +146149,189.05,77.535 +146150,186.94,76.854 +146151,184.9,76.192 +146152,182.94,75.549 +146153,187.7,77.604 +146154,185.6,76.892 +146155,183.59,76.199 +146156,181.64,75.524 +146157,186.35,77.673 +146158,184.27,76.93 +146159,182.28,76.207 +146160,180.35,75.501 +146161,185,77.741 +146162,182.94,76.968 +146163,180.96,76.214 +146164,179.05,75.477 +146165,183.65,77.808 +146166,181.61,77.005 +146167,179.65,76.221 +146168,177.76,75.455 +146169,182.29,77.875 +146170,180.28,77.043 +146171,178.34,76.229 +146172,176.47,75.432 +146173,180.93,77.941 +146174,178.94,77.08 +146175,177.03,76.237 +146176,175.18,75.411 +146177,179.58,78.006 +146178,177.61,77.117 +146179,175.72,76.245 +146180,173.89,75.39 +146181,178.22,78.071 +146182,176.27,77.154 +146183,174.4,76.254 +146184,172.6,75.37 +146185,176.86,78.135 +146186,174.94,77.19 +146187,173.09,76.263 +146188,171.31,75.351 +146189,175.5,78.198 +146190,173.6,77.227 +146191,171.78,76.271 +146192,170.03,75.332 +146193,174.13,78.261 +146194,172.27,77.263 +146195,170.47,76.281 +146196,168.74,75.314 +146197,172.77,78.322 +146198,170.93,77.298 +146199,169.17,76.29 +146200,167.46,75.297 +146201,171.4,78.383 +146202,169.6,77.334 +146203,167.86,76.3 +146204,166.18,75.28 +146205,170.04,78.443 +146206,168.26,77.369 +146207,166.55,76.31 +146208,164.9,75.265 +146209,168.67,78.503 +146210,166.92,77.404 +146211,165.24,76.32 +146212,163.62,75.25 +146213,167.3,78.561 +146214,165.58,77.439 +146215,163.93,76.331 +146216,162.34,75.236 +146217,165.93,78.619 +146218,164.24,77.473 +146219,162.63,76.342 +146220,161.06,75.223 +146221,164.55,78.675 +146222,162.9,77.507 +146223,161.32,76.353 +146224,159.79,75.211 +146225,163.18,78.731 +146226,161.57,77.541 +146227,160.01,76.364 +146228,158.51,75.2 +146229,161.8,78.786 +146230,160.23,77.575 +146231,158.71,76.376 +146232,157.24,75.189 +146233,160.43,78.839 +146234,158.89,77.608 +146235,157.4,76.388 +146236,155.97,75.18 +146237,159.05,78.892 +146238,157.54,77.641 +146239,156.1,76.401 +146240,154.7,75.172 +146241,157.67,78.944 +146242,156.2,77.673 +146243,154.79,76.413 +146244,153.43,75.164 +146245,156.29,78.995 +146246,154.86,77.705 +146247,153.49,76.427 +146248,152.16,75.158 +146249,154.91,79.045 +146250,153.52,77.737 +146251,152.18,76.44 +146252,150.89,75.153 +146253,153.53,79.093 +146254,152.18,77.769 +146255,150.88,76.454 +146256,149.63,75.148 +146257,152.15,79.141 +146258,150.84,77.8 +146259,149.57,76.468 +146260,148.36,75.145 +146261,150.77,79.188 +146262,149.49,77.831 +146263,148.27,76.483 +146264,147.09,75.143 +146265,149.38,79.233 +146266,148.15,77.862 +146267,146.97,76.498 +146268,145.83,75.142 +146269,148,79.278 +146270,146.81,77.892 +146271,145.67,76.513 +146272,144.57,75.142 +146273,146.61,79.321 +146274,145.46,77.921 +146275,144.36,76.529 +146276,143.3,75.143 +146277,145.23,79.364 +146278,144.12,77.951 +146279,143.06,76.545 +146280,142.04,75.145 +146281,143.84,79.405 +146282,142.78,77.98 +146283,141.76,76.561 +146284,140.78,75.149 +146285,142.45,79.445 +146286,141.43,78.009 +146287,140.46,76.578 +146288,139.52,75.153 +146289,141.06,79.484 +146290,140.09,78.037 +146291,139.15,76.595 +146292,138.26,75.159 +146293,139.67,79.522 +146294,138.74,78.065 +146295,137.85,76.613 +146296,137,75.166 +146297,138.28,79.559 +146298,137.4,78.092 +146299,136.55,76.631 +146300,135.75,75.174 +146301,136.89,79.594 +146302,136.05,78.12 +146303,135.25,76.649 +146304,134.49,75.183 +146305,135.5,79.629 +146306,134.7,78.146 +146307,133.95,76.668 +146308,133.23,75.194 +146309,134.11,79.662 +146310,133.36,78.173 +146311,132.65,76.687 +146312,131.98,75.205 +146313,132.72,79.694 +146314,132.01,78.199 +146315,131.35,76.707 +146316,130.72,75.218 +146317,131.32,79.725 +146318,130.67,78.225 +146319,130.05,76.727 +146320,129.46,75.232 +146321,129.93,79.755 +146322,129.32,78.25 +146323,128.75,76.747 +146324,128.21,75.247 +146325,128.54,79.783 +146326,127.97,78.275 +146327,127.45,76.768 +146328,126.96,75.264 +146329,127.14,79.81 +146330,126.63,78.299 +146331,126.15,76.789 +146332,125.7,75.282 +146333,125.75,79.837 +146334,125.28,78.323 +146335,124.85,76.811 +146336,124.45,75.301 +146337,124.36,79.862 +146338,123.93,78.347 +146339,123.55,76.833 +146340,123.19,75.321 +146341,122.96,79.885 +146342,122.59,78.37 +146343,122.25,76.855 +146344,121.94,75.342 +146345,121.57,79.908 +146346,121.24,78.393 +146347,120.95,76.878 +146348,120.69,75.365 +146349,120.17,79.929 +146350,119.89,78.415 +146351,119.65,76.902 +146352,119.43,75.389 +146353,118.78,79.95 +146354,118.54,78.438 +146355,118.35,76.925 +146356,118.18,75.414 +146357,117.38,79.969 +146358,117.2,78.459 +146359,117.05,76.95 +146360,116.93,75.441 +146361,115.99,79.986 +146362,115.85,78.481 +146363,115.75,76.974 +146364,115.68,75.468 +146365,114.59,80.0031 +146366,114.5,78.501 +146367,114.45,76.999 +146368,114.42,75.497 +146369,113.2,80.0186 +146370,113.16,78.522 +146371,113.15,77.024 +146372,113.17,75.528 +146373,111.8,80.0329 +146374,111.81,78.542 +146375,111.85,77.05 +146376,111.92,75.559 +146377,110.41,80.046 +146378,110.46,78.562 +146379,110.55,77.076 +146380,110.67,75.592 +146381,109.01,80.058 +146382,109.11,78.581 +146383,109.25,77.103 +146384,109.42,75.625 +146385,107.62,80.0688 +146386,107.77,78.6 +146387,107.95,77.13 +146388,108.16,75.661 +146389,106.22,80.0785 +146390,106.42,78.619 +146391,106.65,77.158 +146392,106.91,75.697 +146393,104.83,80.087 +146394,105.07,78.637 +146395,105.35,77.185 +146396,105.66,75.734 +146397,103.43,80.0944 +146398,103.72,78.655 +146399,104.05,77.214 +146400,104.4,75.773 +146401,102.04,80.1006 +146402,102.38,78.672 +146403,102.75,77.242 +146404,103.15,75.813 +146405,100.65,80.1057 +146406,101.03,78.689 +146407,101.45,77.271 +146408,101.9,75.854 +146409,99.254,80.1097 +146410,99.683,78.706 +146411,100.15,77.301 +146412,100.64,75.896 +146413,97.861,80.1126 +146414,98.336,78.722 +146415,98.845,77.33 +146416,99.387,75.94 +146417,96.469,80.1144 +146418,96.989,78.738 +146419,97.544,77.361 +146420,98.132,75.984 +146421,95.078,80.1151 +146422,95.643,78.753 +146423,96.242,77.391 +146424,96.877,76.03 +146425,93.687,80.1147 +146426,94.297,78.769 +146427,94.941,77.422 +146428,95.621,76.077 +146429,92.296,80.1133 +146430,92.95,78.783 +146431,93.639,77.453 +146432,94.364,76.125 +146433,90.906,80.1108 +146434,91.604,78.798 +146435,92.337,77.485 +146436,93.107,76.174 +146437,89.517,80.1073 +146438,90.258,78.812 +146439,91.035,77.517 +146440,91.85,76.224 +146441,88.128,80.1028 +146442,88.912,78.826 +146443,89.733,77.55 +146444,90.591,76.276 +146445,86.74,80.0973 +146446,87.567,78.839 +146447,88.43,77.582 +146448,89.332,76.328 +146449,85.353,80.0907 +146450,86.222,78.853 +146451,87.128,77.616 +146452,88.073,76.381 +146453,83.967,80.0832 +146454,84.877,78.865 +146455,85.825,77.649 +146456,86.812,76.436 +146457,82.581,80.0747 +146458,83.532,78.878 +146459,84.521,77.683 +146460,85.551,76.491 +146461,81.196,80.0653 +146462,82.187,78.89 +146463,83.218,77.717 +146464,84.289,76.548 +146465,79.812,80.055 +146466,80.843,78.902 +146467,81.914,77.751 +146468,83.027,76.605 +146469,78.429,80.0437 +146470,79.499,78.914 +146471,80.609,77.786 +146472,81.763,76.664 +146473,77.046,80.0315 +146474,78.155,78.925 +146475,79.305,77.821 +146476,80.498,76.723 +146477,75.665,80.0185 +146478,76.811,78.936 +146479,78,77.857 +146480,79.233,76.783 +146481,74.284,80.0046 +146482,75.468,78.947 +146483,76.695,77.892 +146484,77.967,76.844 +146485,72.904,79.99 +146486,74.125,78.957 +146487,75.389,77.928 +146488,76.699,76.906 +146489,71.526,79.974 +146490,72.782,78.967 +146491,74.083,77.965 +146492,75.431,76.969 +146493,70.148,79.958 +146494,71.44,78.977 +146495,72.777,78.001 +146496,74.162,77.033 +146497,68.772,79.941 +146498,70.098,78.987 +146499,71.47,78.038 +146500,72.891,77.098 +146501,67.396,79.923 +146502,68.756,78.996 +146503,70.163,78.075 +146504,71.619,77.163 +146505,66.022,79.904 +146506,67.415,79.005 +146507,68.856,78.113 +146508,70.347,77.229 +146509,64.648,79.885 +146510,66.074,79.014 +146511,67.548,78.15 +146512,69.073,77.296 +146513,63.276,79.865 +146514,64.733,79.023 +146515,66.239,78.188 +146516,67.798,77.364 +146517,61.905,79.844 +146518,63.393,79.031 +146519,64.931,78.226 +146520,66.522,77.432 +146521,60.535,79.823 +146522,62.053,79.039 +146523,63.622,78.265 +146524,65.244,77.501 +146525,59.167,79.801 +146526,60.713,79.047 +146527,62.312,78.303 +146528,63.966,77.571 +146529,57.799,79.778 +146530,59.374,79.055 +146531,61.002,78.342 +146532,62.686,77.641 +146533,56.433,79.755 +146534,58.036,79.063 +146535,59.692,78.381 +146536,61.404,77.712 +146537,55.068,79.731 +146538,56.697,79.07 +146539,58.381,78.42 +146540,60.122,77.783 +146541,53.704,79.707 +146542,55.359,79.077 +146543,57.069,78.459 +146544,58.838,77.855 +146545,52.342,79.682 +146546,54.022,79.085 +146547,55.757,78.499 +146548,57.552,77.928 +146549,50.981,79.657 +146550,52.685,79.092 +146551,54.445,78.539 +146552,56.266,78.001 +146553,49.621,79.631 +146554,51.348,79.098 +146555,53.132,78.579 +146556,54.978,78.074 +146557,48.263,79.605 +146558,50.012,79.105 +146559,51.819,78.619 +146560,53.688,78.148 +146561,46.906,79.578 +146562,48.676,79.112 +146563,50.505,78.659 +146564,52.397,78.223 +146565,45.55,79.551 +146566,47.341,79.118 +146567,49.191,78.699 +146568,51.105,78.297 +146569,44.196,79.524 +146570,46.006,79.124 +146571,47.876,78.74 +146572,49.811,78.372 +146573,42.843,79.496 +146574,44.671,79.13 +146575,46.56,78.78 +146576,48.515,78.448 +146577,41.491,79.468 +146578,43.337,79.136 +146579,45.245,78.821 +146580,47.218,78.524 +146581,40.141,79.44 +146582,42.004,79.142 +146583,43.928,78.862 +146584,45.92,78.6 +146585,38.792,79.411 +146586,40.671,79.148 +146587,42.611,78.902 +146588,44.62,78.676 +146589,37.445,79.382 +146590,39.338,79.154 +146591,41.294,78.943 +146592,43.318,78.752 +146593,36.1,79.353 +146594,38.006,79.16 +146595,39.976,78.984 +146596,42.015,78.829 +146597,34.755,79.324 +146598,36.674,79.166 +146599,38.657,79.025 +146600,40.711,78.906 +146601,33.412,79.295 +146602,35.343,79.171 +146603,37.338,79.067 +146604,39.404,78.983 +146605,32.071,79.266 +146606,34.013,79.177 +146607,36.019,79.108 +146608,38.096,79.06 +146609,30.731,79.236 +146610,32.682,79.183 +146611,34.699,79.149 +146612,36.787,79.137 +146613,29.393,79.207 +146614,31.353,79.188 +146615,33.378,79.19 +146616,35.476,79.214 +146617,28.056,79.177 +146618,30.023,79.194 +146619,32.057,79.231 +146620,34.163,79.291 +146621,26.72,79.147 +146622,28.695,79.2 +146623,30.735,79.272 +146624,32.849,79.368 +146625,25.386,79.118 +146626,27.366,79.205 +146627,29.413,79.314 +146628,31.533,79.446 +146629,24.054,79.088 +146630,26.039,79.211 +146631,28.09,79.355 +146632,30.215,79.523 +146633,22.723,79.059 +146634,24.711,79.217 +146635,26.766,79.396 +146636,28.896,79.6 +146637,21.394,79.03 +146638,23.385,79.223 +146639,25.442,79.437 +146640,27.575,79.676 +146641,20.066,79 +146642,22.058,79.228 +146643,24.118,79.478 +146644,26.253,79.753 +146645,18.74,78.971 +146646,20.732,79.234 +146647,22.792,79.519 +146648,24.929,79.829 +146649,17.415,78.942 +146650,19.407,79.24 +146651,21.467,79.56 +146652,23.603,79.906 +146653,16.091,78.914 +146654,18.082,79.246 +146655,20.141,79.601 +146656,22.275,79.982 +146657,14.769,78.885 +146658,16.758,79.252 +146659,18.814,79.642 +146660,20.946,80.0574 +146661,13.449,78.857 +146662,15.434,79.258 +146663,17.486,79.683 +146664,19.615,80.1328 +146665,12.13,78.829 +146666,14.111,79.265 +146667,16.158,79.723 +146668,18.283,80.2079 +146669,10.813,78.802 +146670,12.788,79.271 +146671,14.83,79.764 +146672,16.949,80.2826 +146673,9.497,78.775 +146674,11.466,79.278 +146675,13.501,79.804 +146676,15.613,80.357 +146677,8.1826,78.748 +146678,10.144,79.284 +146679,12.171,79.845 +146680,14.276,80.4309 +146681,6.8696,78.722 +146682,8.8222,79.291 +146683,10.841,79.885 +146684,12.937,80.5043 +146685,5.5582,78.696 +146686,7.5012,79.298 +146687,9.5107,79.925 +146688,11.597,80.5773 +146689,4.2482,78.67 +146690,6.1807,79.305 +146691,8.1795,79.964 +146692,10.255,80.6499 +146693,2.9396,78.645 +146694,4.8607,79.313 +146695,6.8477,80.0042 +146696,8.9111,80.7218 +146697,1.6325,78.621 +146698,3.5412,79.32 +146699,5.5155,80.0436 +146700,7.5659,80.7933 +146701,0.32687,78.597 +146702,2.2221,79.328 +146703,4.1827,80.0829 +146704,6.2191,80.8641 +146705,359.02,78.573 +146706,0.90351,79.336 +146707,2.8493,80.1221 +146708,4.8707,80.9344 +146709,357.72,78.55 +146710,359.59,79.344 +146711,1.5155,80.161 +146712,3.5208,81.004 +146713,356.42,78.528 +146714,358.27,79.352 +146715,0.1811,80.1997 +146716,2.1693,81.073 +146717,355.12,78.507 +146718,356.95,79.361 +146719,358.85,80.2382 +146720,0.81638,81.1413 +146721,353.82,78.486 +146722,355.63,79.37 +146723,357.51,80.2765 +146724,359.46,81.209 +146725,352.52,78.466 +146726,354.32,79.379 +146727,356.17,80.3145 +146728,358.11,81.2759 +146729,351.23,78.446 +146730,353,79.388 +146731,354.84,80.3523 +146732,356.75,81.342 +146733,349.93,78.427 +146734,351.69,79.397 +146735,353.5,80.3899 +146736,355.39,81.4074 +146737,348.64,78.409 +146738,350.37,79.407 +146739,352.16,80.4272 +146740,354.03,81.472 +146741,347.35,78.392 +146742,349.06,79.417 +146743,350.83,80.4642 +146744,352.67,81.5358 +146745,346.06,78.376 +146746,347.74,79.427 +146747,349.49,80.501 +146748,351.3,81.5987 +146749,344.77,78.36 +146750,346.43,79.438 +146751,348.15,80.5375 +146752,349.94,81.6609 +146753,343.48,78.345 +146754,345.11,79.449 +146755,346.81,80.5737 +146756,348.57,81.7221 +146757,342.19,78.332 +146758,343.8,79.46 +146759,345.47,80.6097 +146760,347.21,81.7824 +146761,340.9,78.319 +146762,342.49,79.471 +146763,344.13,80.6453 +146764,345.84,81.8418 +146765,339.62,78.306 +146766,341.18,79.483 +146767,342.79,80.6806 +146768,344.47,81.9003 +146769,338.34,78.295 +146770,339.86,79.495 +146771,341.45,80.7156 +146772,343.1,81.9579 +146773,337.05,78.285 +146774,338.55,79.508 +146775,340.11,80.7504 +146776,341.73,82.0145 +146777,335.77,78.276 +146778,337.24,79.521 +146779,338.76,80.7847 +146780,340.35,82.0701 +146781,334.49,78.268 +146782,335.93,79.534 +146783,337.42,80.8188 +146784,338.98,82.1246 +146785,333.21,78.26 +146786,334.62,79.547 +146787,336.08,80.8525 +146788,337.6,82.1782 +146789,331.94,78.254 +146790,333.31,79.561 +146791,334.74,80.8859 +146792,336.23,82.2308 +146793,330.66,78.249 +146794,332,79.575 +146795,333.39,80.9189 +146796,334.85,82.2822 +146797,329.38,78.245 +146798,330.69,79.589 +146799,332.05,80.9516 +146800,333.47,82.3327 +146801,328.11,78.242 +146802,329.38,79.604 +146803,330.71,80.984 +146804,332.09,82.382 +146805,326.83,78.24 +146806,328.07,79.62 +146807,329.36,81.016 +146808,330.71,82.4303 +146809,325.56,78.239 +146810,326.76,79.635 +146811,328.02,81.0476 +146812,329.32,82.4774 +146813,324.29,78.239 +146814,325.45,79.651 +146815,326.67,81.0788 +146816,327.94,82.5235 +146817,323.02,78.241 +146818,324.15,79.667 +146819,325.33,81.1097 +146820,326.56,82.5684 +146821,321.74,78.243 +146822,322.84,79.684 +146823,323.98,81.1402 +146824,325.17,82.6122 +146825,320.48,78.247 +146826,321.53,79.701 +146827,322.63,81.1703 +146828,323.79,82.6548 +146829,319.21,78.252 +146830,320.22,79.719 +146831,321.29,81.2001 +146832,322.4,82.6963 +146833,317.94,78.258 +146834,318.92,79.737 +146835,319.94,81.2294 +146836,321.01,82.7365 +146837,316.67,78.265 +146838,317.61,79.755 +146839,318.59,81.2584 +146840,319.63,82.7757 +146841,315.4,78.273 +146842,316.3,79.774 +146843,317.25,81.287 +146844,318.24,82.8136 +146845,314.14,78.283 +146846,315,79.793 +146847,315.9,81.3152 +146848,316.85,82.8503 +146849,312.87,78.294 +146850,313.69,79.812 +146851,314.55,81.343 +146852,315.46,82.8859 +146853,311.61,78.306 +146854,312.38,79.832 +146855,313.2,81.3703 +146856,314.07,82.9202 +146857,310.34,78.319 +146858,311.08,79.853 +146859,311.85,81.3973 +146860,312.67,82.9534 +146861,309.08,78.333 +146862,309.77,79.873 +146863,310.5,81.4239 +146864,311.28,82.9853 +146865,307.81,78.349 +146866,308.47,79.894 +146867,309.16,81.4501 +146868,309.89,83.016 +146869,306.55,78.366 +146870,307.16,79.916 +146871,307.81,81.4758 +146872,308.5,83.0454 +146873,305.29,78.385 +146874,305.85,79.938 +146875,306.46,81.5012 +146876,307.1,83.0737 +146877,304.03,78.404 +146878,304.55,79.961 +146879,305.11,81.5262 +146880,305.71,83.1007 +146881,302.76,78.425 +146882,303.24,79.983 +146883,303.76,81.5507 +146884,304.32,83.1265 +146885,301.5,78.447 +146886,301.94,80.0067 +146887,302.41,81.5748 +146888,302.92,83.151 +146889,300.24,78.47 +146890,300.63,80.0304 +146891,301.06,81.5985 +146892,301.53,83.1744 +146893,298.98,78.495 +146894,299.33,80.0545 +146895,299.71,81.6219 +146896,300.13,83.1965 +146897,297.72,78.521 +146898,298.02,80.079 +146899,298.36,81.6447 +146900,298.74,83.2173 +146901,296.46,78.548 +146902,296.72,80.104 +146903,297.01,81.6672 +146904,297.34,83.237 +146905,295.2,78.576 +146906,295.41,80.1294 +146907,295.66,81.6893 +146908,295.94,83.2554 +146909,293.94,78.606 +146910,294.11,80.1552 +146911,294.31,81.711 +146912,294.55,83.2725 +146913,292.68,78.637 +146914,292.8,80.1814 +146915,292.96,81.7322 +146916,293.15,83.2885 +146917,291.42,78.669 +146918,291.5,80.2081 +146919,291.61,81.7531 +146920,291.76,83.3032 +146921,290.16,78.703 +146922,290.19,80.2352 +146923,290.26,81.7735 +146924,290.36,83.3168 +146925,288.9,78.737 +146926,288.89,80.2627 +146927,288.91,81.7936 +146928,288.96,83.3291 +146929,287.64,78.773 +146930,287.58,80.2906 +146931,287.56,81.8132 +146932,287.57,83.3402 +146933,286.38,78.811 +146934,286.28,80.3189 +146935,286.21,81.8324 +146936,286.17,83.3502 +146937,285.12,78.849 +146938,284.97,80.3476 +146939,284.86,81.8513 +146940,284.78,83.3589 +146941,283.86,78.889 +146942,283.67,80.3768 +146943,283.51,81.8697 +146944,283.38,83.3665 +146945,282.6,78.93 +146946,282.36,80.4063 +146947,282.16,81.8878 +146948,281.98,83.3728 +146949,281.34,78.972 +146950,281.06,80.4363 +146951,280.81,81.9054 +146952,280.59,83.3781 +146953,280.08,79.015 +146954,279.75,80.4666 +146955,279.46,81.9227 +146956,279.19,83.3821 +146957,278.81,79.06 +146958,278.45,80.4974 +146959,278.11,81.9396 +146960,277.8,83.3851 +146961,277.55,79.106 +146962,277.14,80.5285 +146963,276.76,81.9561 +146964,276.4,83.3869 +146965,276.29,79.153 +146966,275.83,80.5601 +146967,275.41,81.9722 +146968,275.01,83.3875 +146969,275.03,79.201 +146970,274.53,80.592 +146971,274.06,81.988 +146972,273.62,83.3871 +146973,273.77,79.25 +146974,273.22,80.6243 +146975,272.71,82.0034 +146976,272.22,83.3856 +146977,272.5,79.3 +146978,271.91,80.657 +146979,271.36,82.0184 +146980,270.83,83.383 +146981,271.24,79.352 +146982,270.61,80.69 +146983,270.01,82.033 +146984,269.44,83.3793 +146985,269.97,79.404 +146986,269.3,80.7235 +146987,268.66,82.0473 +146988,268.05,83.3745 +146989,268.71,79.458 +146990,267.99,80.7572 +146991,267.31,82.0613 +146992,266.65,83.3687 +146993,267.44,79.513 +146994,266.69,80.7914 +146995,265.96,82.0749 +146996,265.26,83.3619 +146997,266.18,79.569 +146998,265.38,80.8259 +146999,264.61,82.0882 +147000,263.87,83.3541 +147001,264.91,79.626 +147002,264.07,80.8607 +147003,263.26,82.1011 +147004,262.48,83.3452 +147005,263.65,79.684 +147006,262.76,80.8959 +147007,261.91,82.1137 +147008,261.1,83.3354 +147009,262.38,79.743 +147010,261.46,80.9315 +147011,260.57,82.126 +147012,259.71,83.3246 +147013,261.11,79.803 +147014,260.15,80.9673 +147015,259.22,82.1379 +147016,258.32,83.3129 +147017,259.84,79.864 +147018,258.84,81.0035 +147019,257.87,82.1496 +147020,256.93,83.3003 +147021,258.57,79.926 +147022,257.53,81.04 +147023,256.52,82.1609 +147024,255.55,83.2867 +147025,257.3,79.989 +147026,256.22,81.0768 +147027,255.17,82.1719 +147028,254.16,83.2723 +147029,256.03,80.0525 +147030,254.91,81.1139 +147031,253.83,82.1827 +147032,252.78,83.2569 +147033,254.75,80.1172 +147034,253.6,81.1513 +147035,252.48,82.1932 +147036,251.39,83.2408 +147037,253.48,80.1828 +147038,252.29,81.189 +147039,251.13,82.2033 +147040,250.01,83.2238 +147041,252.21,80.2492 +147042,250.98,81.227 +147043,249.79,82.2132 +147044,248.63,83.2059 +147045,250.93,80.3165 +147046,249.67,81.2653 +147047,248.44,82.2229 +147048,247.25,83.1873 +147049,249.65,80.3846 +147050,248.36,81.3038 +147051,247.1,82.2323 +147052,245.87,83.168 +147053,248.38,80.4535 +147054,247.04,81.3426 +147055,245.75,82.2414 +147056,244.49,83.1478 +147057,247.1,80.5231 +147058,245.73,81.3816 +147059,244.41,82.2503 +147060,243.11,83.127 +147061,245.82,80.5935 +147062,244.42,81.4209 +147063,243.06,82.2589 +147064,241.74,83.1055 +147065,244.54,80.6646 +147066,243.11,81.4604 +147067,241.72,82.2673 +147068,240.36,83.0832 +147069,243.26,80.7363 +147070,241.79,81.5002 +147071,240.37,82.2756 +147072,238.99,83.0604 +147073,241.97,80.8088 +147074,240.48,81.5402 +147075,239.03,82.2835 +147076,237.61,83.0368 +147077,240.69,80.8819 +147078,239.17,81.5803 +147079,237.68,82.2913 +147080,236.24,83.0127 +147081,239.4,80.9555 +147082,237.85,81.6207 +147083,236.34,82.2989 +147084,234.87,82.988 +147085,238.12,81.0298 +147086,236.54,81.6613 +147087,235,82.3063 +147088,233.5,82.9628 +147089,236.83,81.1047 +147090,235.22,81.7021 +147091,233.66,82.3136 +147092,232.13,82.937 +147093,235.54,81.18 +147094,233.91,81.743 +147095,232.31,82.3206 +147096,230.76,82.9107 +147097,234.25,81.2559 +147098,232.59,81.7841 +147099,230.97,82.3275 +147100,229.4,82.8839 +147101,232.96,81.3322 +147102,231.27,81.8254 +147103,229.63,82.3343 +147104,228.03,82.8566 +147105,231.67,81.409 +147106,229.96,81.8668 +147107,228.29,82.3409 +147108,226.67,82.829 +147109,230.37,81.4862 +147110,228.64,81.9083 +147111,226.95,82.3473 +147112,225.31,82.8009 +147113,229.08,81.5638 +147114,227.32,81.95 +147115,225.61,82.3537 +147116,223.94,82.7724 +147117,227.78,81.6418 +147118,226,81.9918 +147119,224.27,82.3599 +147120,222.58,82.7436 +147121,226.48,81.7201 +147122,224.68,82.0337 +147123,222.93,82.366 +147124,221.23,82.7145 +147125,225.18,81.7986 +147126,223.36,82.0758 +147127,221.59,82.372 +147128,219.87,82.6851 +147129,223.88,81.8775 +147130,222.04,82.1179 +147131,220.25,82.378 +147132,218.51,82.6554 +147133,222.58,81.9566 +147134,220.72,82.1601 +147135,218.92,82.3838 +147136,217.16,82.6254 +147137,221.27,82.0359 +147138,219.4,82.2023 +147139,217.58,82.3896 +147140,215.8,82.5953 +147141,219.97,82.1154 +147142,218.08,82.2447 +147143,216.24,82.3953 +147144,214.45,82.5649 +147145,218.66,82.1951 +147146,216.76,82.287 +147147,214.9,82.401 +147148,213.1,82.5344 +147149,217.35,82.2749 +147150,215.43,82.3295 +147151,213.57,82.4066 +147152,211.75,82.5038 +147153,216.04,82.3548 +147154,214.11,82.3719 +147155,212.23,82.4122 +147156,210.4,82.473 +147157,214.73,82.4347 +147158,212.79,82.4144 +147159,210.9,82.4178 +147160,209.06,82.4422 +147161,213.42,82.5147 +147162,211.46,82.4569 +147163,209.56,82.4234 +147164,207.71,82.4114 +147165,212.11,82.5946 +147166,210.14,82.4994 +147167,208.23,82.4289 +147168,206.37,82.3805 +147169,210.79,82.6746 +147170,208.81,82.5419 +147171,206.89,82.4345 +147172,205.03,82.3496 +147173,209.47,82.7544 +147174,207.49,82.5844 +147175,205.56,82.4401 +147176,203.69,82.3188 +147177,208.15,82.8342 +147178,206.16,82.6268 +147179,204.23,82.4457 +147180,202.35,82.288 +147181,206.83,82.9139 +147182,204.83,82.6692 +147183,202.89,82.4513 +147184,201.01,82.2573 +147185,205.51,82.9934 +147186,203.51,82.7116 +147187,201.56,82.457 +147188,199.67,82.2268 +147189,204.19,83.0728 +147190,202.18,82.7539 +147191,200.23,82.4627 +147192,198.34,82.1963 +147193,202.86,83.1519 +147194,200.85,82.7961 +147195,198.9,82.4686 +147196,197,82.1661 +147197,201.54,83.2308 +147198,199.52,82.8383 +147199,197.57,82.4744 +147200,195.67,82.1361 +147201,200.21,83.3094 +147202,198.19,82.8804 +147203,196.24,82.4804 +147204,194.34,82.1063 +147205,198.88,83.3878 +147206,196.86,82.9224 +147207,194.91,82.4864 +147208,193.01,82.0768 +147209,197.55,83.4658 +147210,195.53,82.9643 +147211,193.58,82.4926 +147212,191.68,82.0476 +147213,196.21,83.5434 +147214,194.2,83.006 +147215,192.25,82.4989 +147216,190.36,82.0186 +147217,194.88,83.6206 +147218,192.87,83.0477 +147219,190.92,82.5052 +147220,189.03,81.9901 +147221,193.54,83.6975 +147222,191.54,83.0892 +147223,189.59,82.5118 +147224,187.71,81.9619 +147225,192.21,83.7739 +147226,190.2,83.1306 +147227,188.27,82.5184 +147228,186.39,81.9341 +147229,190.87,83.8498 +147230,188.87,83.1718 +147231,186.94,82.5252 +147232,185.07,81.9067 +147233,189.53,83.9252 +147234,187.54,83.2129 +147235,185.61,82.5322 +147236,183.75,81.8798 +147237,188.18,84.0001 +147238,186.2,83.2537 +147239,184.29,82.5393 +147240,182.43,81.8534 +147241,186.84,84.0744 +147242,184.87,83.2945 +147243,182.96,82.5466 +147244,181.11,81.8275 +147245,185.49,84.1482 +147246,183.53,83.335 +147247,181.64,82.5541 +147248,179.8,81.8021 +147249,184.15,84.2213 +147250,182.2,83.3753 +147251,180.31,82.5618 +147252,178.48,81.7773 +147253,182.8,84.2938 +147254,180.86,83.4154 +147255,178.99,82.5696 +147256,177.17,81.753 +147257,181.45,84.3656 +147258,179.52,83.4553 +147259,177.66,82.5777 +147260,175.86,81.7294 +147261,180.1,84.4368 +147262,178.18,83.495 +147263,176.34,82.586 +147264,174.55,81.7064 +147265,178.75,84.5072 +147266,176.85,83.5344 +147267,175.02,82.5945 +147268,173.24,81.6841 +147269,177.39,84.5769 +147270,175.51,83.5736 +147271,173.69,82.6033 +147272,171.94,81.6625 +147273,176.04,84.6458 +147274,174.17,83.6126 +147275,172.37,82.6123 +147276,170.63,81.6416 +147277,174.68,84.7139 +147278,172.83,83.6513 +147279,171.05,82.6216 +147280,169.33,81.6214 +147281,173.32,84.7812 +147282,171.49,83.6897 +147283,169.73,82.6311 +147284,168.02,81.602 +147285,171.96,84.8477 +147286,170.15,83.7279 +147287,168.41,82.6409 +147288,166.72,81.5833 +147289,170.6,84.9133 +147290,168.81,83.7657 +147291,167.09,82.6509 +147292,165.42,81.5655 +147293,169.24,84.9781 +147294,167.47,83.8033 +147295,165.76,82.6613 +147296,164.12,81.5485 +147297,167.87,85.0419 +147298,166.13,83.8406 +147299,164.44,82.6719 +147300,162.82,81.5324 +147301,166.51,85.1048 +147302,164.78,83.8776 +147303,163.13,82.6828 +147304,161.53,81.5171 +147305,165.14,85.1668 +147306,163.44,83.9143 +147307,161.81,82.694 +147308,160.23,81.5027 +147309,163.77,85.2278 +147310,162.1,83.9506 +147311,160.49,82.7056 +147312,158.93,81.4893 +147313,162.4,85.2878 +147314,160.75,83.9867 +147315,159.17,82.7174 +147316,157.64,81.4767 +147317,161.03,85.3468 +147318,159.41,84.0224 +147319,157.85,82.7296 +147320,156.35,81.4652 +147321,159.66,85.4048 +147322,158.06,84.0578 +147323,156.53,82.7421 +147324,155.06,81.4546 +147325,158.29,85.4617 +147326,156.72,84.0928 +147327,155.22,82.7549 +147328,153.77,81.445 +147329,156.91,85.5176 +147330,155.37,84.1275 +147331,153.9,82.7681 +147332,152.48,81.4364 +147333,155.54,85.5724 +147334,154.03,84.1618 +147335,152.58,82.7816 +147336,151.19,81.4289 +147337,154.16,85.6261 +147338,152.68,84.1958 +147339,151.27,82.7955 +147340,149.9,81.4224 +147341,152.78,85.6787 +147342,151.34,84.2294 +147343,149.95,82.8098 +147344,148.62,81.417 +147345,151.41,85.7301 +147346,149.99,84.2626 +147347,148.63,82.8244 +147348,147.33,81.4126 +147349,150.03,85.7805 +147350,148.64,84.2955 +147351,147.32,82.8393 +147352,146.05,81.4094 +147353,148.65,85.8296 +147354,147.29,84.3279 +147355,146,82.8547 +147356,144.76,81.4072 +147357,147.26,85.8776 +147358,145.95,84.36 +147359,144.69,82.8704 +147360,143.48,81.4063 +147361,145.88,85.9245 +147362,144.6,84.3917 +147363,143.37,82.8865 +147364,142.2,81.4064 +147365,144.5,85.9701 +147366,143.25,84.423 +147367,142.06,82.903 +147368,140.92,81.4077 +147369,143.11,86.0145 +147370,141.9,84.4539 +147371,140.74,82.9199 +147372,139.64,81.4102 +147373,141.73,86.0577 +147374,140.55,84.4844 +147375,139.43,82.9372 +147376,138.36,81.4139 +147377,140.34,86.0997 +147378,139.2,84.5145 +147379,138.12,82.9549 +147380,137.08,81.4187 +147381,138.95,86.1405 +147382,137.85,84.5442 +147383,136.8,82.973 +147384,135.8,81.4248 +147385,137.56,86.18 +147386,136.5,84.5734 +147387,135.49,82.9914 +147388,134.53,81.4321 +147389,136.18,86.2182 +147390,135.15,84.6023 +147391,134.18,83.0103 +147392,133.25,81.4406 +147393,134.79,86.2552 +147394,133.8,84.6307 +147395,132.86,83.0297 +147396,131.98,81.4504 +147397,133.4,86.291 +147398,132.45,84.6587 +147399,131.55,83.0494 +147400,130.7,81.4614 +147401,132.01,86.3254 +147402,131.1,84.6863 +147403,130.24,83.0695 +147404,129.43,81.4736 +147405,130.61,86.3586 +147406,129.75,84.7135 +147407,128.93,83.0901 +147408,128.15,81.4872 +147409,129.22,86.3905 +147410,128.39,84.7402 +147411,127.62,83.1111 +147412,126.88,81.5019 +147413,127.83,86.4211 +147414,127.04,84.7665 +147415,126.3,83.1325 +147416,125.61,81.518 +147417,126.43,86.4505 +147418,125.69,84.7924 +147419,124.99,83.1544 +147420,124.33,81.5354 +147421,125.04,86.4785 +147422,124.34,84.8178 +147423,123.68,83.1766 +147424,123.06,81.554 +147425,123.65,86.5052 +147426,122.98,84.8428 +147427,122.37,83.1993 +147428,121.79,81.574 +147429,122.25,86.5307 +147430,121.63,84.8674 +147431,121.06,83.2225 +147432,120.52,81.5952 +147433,120.86,86.5548 +147434,120.28,84.8915 +147435,119.74,83.246 +147436,119.25,81.6177 +147437,119.46,86.5777 +147438,118.93,84.9152 +147439,118.43,83.27 +147440,117.98,81.6415 +147441,118.06,86.5992 +147442,117.57,84.9384 +147443,117.12,83.2944 +147444,116.71,81.6667 +147445,116.67,86.6195 +147446,116.22,84.9613 +147447,115.81,83.3193 +147448,115.44,81.6931 +147449,115.27,86.6384 +147450,114.87,84.9836 +147451,114.5,83.3446 +147452,114.17,81.7208 +147453,113.88,86.6561 +147454,113.51,85.0056 +147455,113.19,83.3703 +147456,112.9,81.7499 +147457,112.48,86.6725 +147458,112.16,85.0271 +147459,111.88,83.3964 +147460,111.63,81.7802 +147461,111.08,86.6876 +147462,110.8,85.0482 +147463,110.57,83.423 +147464,110.36,81.8118 +147465,109.68,86.7014 +147466,109.45,85.0689 +147467,109.25,83.45 +147468,109.09,81.8448 +147469,108.29,86.7139 +147470,108.1,85.0891 +147471,107.94,83.4774 +147472,107.82,81.879 +147473,106.89,86.7252 +147474,106.74,85.1089 +147475,106.63,83.5052 +147476,106.56,81.9145 +147477,105.49,86.7352 +147478,105.39,85.1282 +147479,105.32,83.5335 +147480,105.29,81.9513 +147481,104.09,86.7439 +147482,104.03,85.1472 +147483,104.01,83.5622 +147484,104.02,81.9894 +147485,102.7,86.7514 +147486,102.68,85.1657 +147487,102.7,83.5913 +147488,102.75,82.0288 +147489,101.3,86.7577 +147490,101.33,85.1838 +147491,101.39,83.6208 +147492,101.48,82.0694 +147493,99.9,86.7627 +147494,99.972,85.2015 +147495,100.08,83.6507 +147496,100.21,82.1113 +147497,98.503,86.7665 +147498,98.618,85.2187 +147499,98.765,83.6811 +147500,98.941,82.1544 +147501,97.106,86.7691 +147502,97.264,85.2356 +147503,97.453,83.7118 +147504,97.672,82.1988 +147505,95.709,86.7705 +147506,95.91,85.252 +147507,96.142,83.743 +147508,96.402,82.2444 +147509,94.312,86.7707 +147510,94.556,85.268 +147511,94.83,83.7745 +147512,95.132,82.2912 +147513,92.916,86.7698 +147514,93.202,85.2837 +147515,93.518,83.8065 +147516,93.862,82.3392 +147517,91.519,86.7676 +147518,91.848,85.2989 +147519,92.206,83.8388 +147520,92.591,82.3885 +147521,90.124,86.7644 +147522,90.495,85.3138 +147523,90.894,83.8716 +147524,91.32,82.4389 +147525,88.728,86.76 +147526,89.141,85.3282 +147527,89.581,83.9047 +147528,90.049,82.4905 +147529,87.333,86.7544 +147530,87.787,85.3423 +147531,88.269,83.9382 +147532,88.777,82.5432 +147533,85.938,86.7478 +147534,86.434,85.356 +147535,86.956,83.972 +147536,87.505,82.5971 +147537,84.544,86.74 +147538,85.08,85.3693 +147539,85.643,84.0063 +147540,86.233,82.6522 +147541,83.15,86.7312 +147542,83.727,85.3823 +147543,84.33,84.0409 +147544,84.96,82.7083 +147545,81.757,86.7213 +147546,82.374,85.3949 +147547,83.017,84.0758 +147548,83.686,82.7656 +147549,80.364,86.7104 +147550,81.021,85.4071 +147551,81.703,84.1111 +147552,82.412,82.8239 +147553,78.972,86.6985 +147554,79.668,85.419 +147555,80.39,84.1468 +147556,81.137,82.8833 +147557,77.581,86.6855 +147558,78.315,85.4305 +147559,79.076,84.1828 +147560,79.862,82.9438 +147561,76.19,86.6716 +147562,76.963,85.4417 +147563,77.761,84.2191 +147564,78.586,83.0053 +147565,74.8,86.6567 +147566,75.611,85.4526 +147567,76.447,84.2558 +147568,77.309,83.0678 +147569,73.41,86.6408 +147570,74.258,85.4631 +147571,75.132,84.2927 +147572,76.031,83.1313 +147573,72.021,86.624 +147574,72.907,85.4733 +147575,73.817,84.33 +147576,74.753,83.1957 +147577,70.633,86.6063 +147578,71.555,85.4832 +147579,72.502,84.3676 +147580,73.474,83.2611 +147581,69.246,86.5877 +147582,70.203,85.4928 +147583,71.186,84.4055 +147584,72.195,83.3275 +147585,67.859,86.5683 +147586,68.852,85.5021 +147587,69.87,84.4437 +147588,70.914,83.3947 +147589,66.474,86.548 +147590,67.501,85.5111 +147591,68.554,84.4822 +147592,69.633,83.4629 +147593,65.089,86.5268 +147594,66.15,85.5199 +147595,67.238,84.5209 +147596,68.351,83.5318 +147597,63.705,86.5049 +147598,64.8,85.5283 +147599,65.921,84.56 +147600,67.068,83.6017 +147601,62.322,86.4822 +147602,63.45,85.5365 +147603,64.604,84.5993 +147604,65.784,83.6723 +147605,60.94,86.4587 +147606,62.1,85.5444 +147607,63.286,84.6388 +147608,64.499,83.7438 +147609,59.559,86.4346 +147610,60.75,85.552 +147611,61.968,84.6786 +147612,63.213,83.816 +147613,58.179,86.4097 +147614,59.401,85.5594 +147615,60.65,84.7186 +147616,61.926,83.8889 +147617,56.799,86.3841 +147618,58.052,85.5666 +147619,59.331,84.7589 +147620,60.638,83.9626 +147621,55.421,86.3578 +147622,56.703,85.5736 +147623,58.012,84.7993 +147624,59.349,84.037 +147625,54.044,86.331 +147626,55.354,85.5803 +147627,56.693,84.84 +147628,58.059,84.112 +147629,52.668,86.3035 +147630,54.006,85.5868 +147631,55.373,84.8809 +147632,56.768,84.1877 +147633,51.293,86.2754 +147634,52.658,85.5931 +147635,54.053,84.922 +147636,55.476,84.2639 +147637,49.919,86.2468 +147638,51.311,85.5992 +147639,52.732,84.9632 +147640,54.182,84.3408 +147641,48.546,86.2177 +147642,49.964,85.6051 +147643,51.411,85.0047 +147644,52.888,84.4182 +147645,47.175,86.188 +147646,48.617,85.6109 +147647,50.09,85.0463 +147648,51.592,84.4961 +147649,45.804,86.1579 +147650,47.271,85.6165 +147651,48.768,85.088 +147652,50.295,84.5745 +147653,44.435,86.1273 +147654,45.925,85.6219 +147655,47.445,85.13 +147656,48.997,84.6534 +147657,43.066,86.0963 +147658,44.579,85.6272 +147659,46.123,85.172 +147660,47.698,84.7328 +147661,41.699,86.065 +147662,43.234,85.6323 +147663,44.799,85.2142 +147664,46.398,84.8125 +147665,40.334,86.0332 +147666,41.889,85.6373 +147667,43.476,85.2565 +147668,45.096,84.8926 +147669,38.969,86.0011 +147670,40.544,85.6422 +147671,42.152,85.2989 +147672,43.793,84.9731 +147673,37.606,85.9687 +147674,39.2,85.647 +147675,40.827,85.3413 +147676,42.489,85.0539 +147677,36.244,85.936 +147678,37.856,85.6516 +147679,39.502,85.3839 +147680,41.183,85.135 +147681,34.883,85.9031 +147682,36.513,85.6562 +147683,38.177,85.4266 +147684,39.876,85.2163 +147685,33.524,85.8699 +147686,35.17,85.6607 +147687,36.851,85.4693 +147688,38.568,85.2979 +147689,32.165,85.8366 +147690,33.827,85.6651 +147691,35.524,85.5121 +147692,37.258,85.3796 +147693,30.808,85.8031 +147694,32.485,85.6695 +147695,34.197,85.5549 +147696,35.948,85.4616 +147697,29.453,85.7694 +147698,31.143,85.6738 +147699,32.87,85.5978 +147700,34.635,85.5436 +147701,28.098,85.7356 +147702,29.801,85.6781 +147703,31.542,85.6407 +147704,33.322,85.6258 +147705,26.745,85.7018 +147706,28.46,85.6823 +147707,30.214,85.6836 +147708,32.006,85.708 +147709,25.394,85.6679 +147710,27.12,85.6865 +147711,28.885,85.7265 +147712,30.69,85.7903 +147713,24.043,85.6339 +147714,25.78,85.6907 +147715,27.555,85.7694 +147716,29.372,85.8726 +147717,22.694,85.6 +147718,24.44,85.6949 +147719,26.225,85.8123 +147720,28.053,85.9548 +147721,21.347,85.5661 +147722,23.101,85.6991 +147723,24.895,85.8552 +147724,26.732,86.037 +147725,20.001,85.5323 +147726,21.762,85.7033 +147727,23.564,85.898 +147728,25.41,86.1191 +147729,18.656,85.4986 +147730,20.423,85.7075 +147731,22.233,85.9408 +147732,24.086,86.2011 +147733,17.312,85.465 +147734,19.085,85.7118 +147735,20.901,85.9836 +147736,22.761,86.283 +147737,15.97,85.4315 +147738,17.748,85.7161 +147739,19.568,86.0262 +147740,21.435,86.3646 +147741,14.629,85.3982 +147742,16.411,85.7205 +147743,18.235,86.0688 +147744,20.107,86.4461 +147745,13.289,85.3652 +147746,15.074,85.7249 +147747,16.902,86.1113 +147748,18.777,86.5273 +147749,11.951,85.3323 +147750,13.738,85.7294 +147751,15.568,86.1537 +147752,17.446,86.6082 +147753,10.615,85.2998 +147754,12.402,85.734 +147755,14.233,86.196 +147756,16.114,86.6888 +147757,9.2791,85.2675 +147758,11.066,85.7387 +147759,12.898,86.2382 +147760,14.78,86.7691 +147761,7.9451,85.2356 +147762,9.7312,85.7435 +147763,11.563,86.2803 +147764,13.445,86.849 +147765,6.6124,85.204 +147766,8.3966,85.7484 +147767,10.227,86.3222 +147768,12.108,86.9285 +147769,5.2811,85.1728 +147770,7.0624,85.7535 +147771,8.8902,86.364 +147772,10.77,87.0076 +147773,3.9511,85.142 +147774,5.7287,85.7586 +147775,7.5531,86.4056 +147776,9.43,87.0862 +147777,2.6224,85.1116 +147778,4.3954,85.7639 +147779,6.2156,86.447 +147780,8.0888,87.1643 +147781,1.2951,85.0817 +147782,3.0625,85.7694 +147783,4.8775,86.4883 +147784,6.7462,87.2419 +147785,359.97,85.0523 +147786,1.73,85.775 +147787,3.5389,86.5294 +147788,5.4021,87.319 +147789,358.64,85.0235 +147790,0.39796,85.7808 +147791,2.1998,86.5702 +147792,4.0565,87.3955 +147793,357.32,84.9951 +147794,359.07,85.7868 +147795,0.8602,86.6109 +147796,2.7095,87.4713 +147797,356,84.9674 +147798,357.74,85.7929 +147799,359.52,86.6514 +147800,1.361,87.5465 +147801,354.68,84.9402 +147802,356.4,85.7993 +147803,358.18,86.6916 +147804,0.01114,87.6211 +147805,353.36,84.9137 +147806,355.07,85.8058 +147807,356.84,86.7316 +147808,358.66,87.695 +147809,352.04,84.8878 +147810,353.74,85.8126 +147811,355.5,86.7714 +147812,357.31,87.7681 +147813,350.72,84.8626 +147814,352.41,85.8196 +147815,354.15,86.8109 +147816,355.95,87.8405 +147817,349.41,84.8381 +147818,351.09,85.8268 +147819,352.81,86.8501 +147820,354.6,87.9121 +147821,348.09,84.8143 +147822,349.76,85.8343 +147823,351.47,86.8891 +147824,353.24,87.9829 +147825,346.78,84.7913 +147826,348.43,85.842 +147827,350.13,86.9278 +147828,351.88,88.0529 +147829,345.47,84.769 +147830,347.1,85.85 +147831,348.78,86.9662 +147832,350.52,88.1221 +147833,344.16,84.7476 +147834,345.77,85.8582 +147835,347.44,87.0044 +147836,349.16,88.1903 +147837,342.85,84.727 +147838,344.44,85.8667 +147839,346.09,87.0422 +147840,347.8,88.2577 +147841,341.54,84.7072 +147842,343.12,85.8755 +147843,344.75,87.0797 +147844,346.44,88.3241 +147845,340.23,84.6883 +147846,341.79,85.8846 +147847,343.4,87.1169 +147848,345.07,88.3896 +147849,338.93,84.6703 +147850,340.47,85.894 +147851,342.05,87.1537 +147852,343.7,88.4541 +147853,337.62,84.6532 +147854,339.14,85.9036 +147855,340.71,87.1903 +147856,342.34,88.5176 +147857,336.32,84.637 +147858,337.81,85.9136 +147859,339.36,87.2265 +147860,340.97,88.58 +147861,335.02,84.6218 +147862,336.49,85.9239 +147863,338.01,87.2623 +147864,339.6,88.6415 +147865,333.71,84.6076 +147866,335.16,85.9345 +147867,336.67,87.2978 +147868,338.23,88.7018 +147869,332.41,84.5944 +147870,333.84,85.9455 +147871,335.32,87.3329 +147872,336.85,88.7611 +147873,331.11,84.5821 +147874,332.52,85.9568 +147875,333.97,87.3677 +147876,335.48,88.8193 +147877,329.82,84.571 +147878,331.19,85.9684 +147879,332.62,87.402 +147880,334.1,88.8764 +147881,328.52,84.5609 +147882,329.87,85.9804 +147883,331.27,87.436 +147884,332.73,88.9323 +147885,327.22,84.5518 +147886,328.55,85.9927 +147887,329.92,87.4696 +147888,331.35,88.9871 +147889,325.93,84.5438 +147890,327.22,86.0054 +147891,328.57,87.5029 +147892,329.97,89.04069 +147893,324.63,84.537 +147894,325.9,86.0185 +147895,327.22,87.5357 +147896,328.59,89.0931 +147897,323.34,84.5313 +147898,324.58,86.0319 +147899,325.87,87.5681 +147900,327.21,89.1443 +147901,322.05,84.5267 +147902,323.26,86.0457 +147903,324.51,87.6001 +147904,325.83,89.19427 +147905,320.75,84.5233 +147906,321.93,86.0599 +147907,323.16,87.6317 +147908,324.45,89.243 +147909,319.46,84.521 +147910,320.61,86.0744 +147911,321.81,87.6628 +147912,323.07,89.29049 +147913,318.17,84.5199 +147914,319.29,86.0894 +147915,320.46,87.6936 +147916,321.68,89.33671 +147917,316.88,84.5201 +147918,317.97,86.1047 +147919,319.1,87.7239 +147920,320.3,89.38164 +147921,315.59,84.5214 +147922,316.65,86.1205 +147923,317.75,87.7538 +147924,318.91,89.42529 +147925,314.31,84.5239 +147926,315.33,86.1366 +147927,316.4,87.7832 +147928,317.52,89.46764 +147929,313.02,84.5277 +147930,314.01,86.1532 +147931,315.04,87.8122 +147932,316.13,89.50868 +147933,311.73,84.5328 +147934,312.69,86.1702 +147935,313.69,87.8408 +147936,314.75,89.54839 +147937,310.45,84.5391 +147938,311.37,86.1876 +147939,312.34,87.8689 +147940,313.36,89.58678 +147941,309.16,84.5466 +147942,310.05,86.2054 +147943,310.98,87.8965 +147944,311.97,89.62382 +147945,307.88,84.5555 +147946,308.73,86.2236 +147947,309.63,87.9237 +147948,310.57,89.65952 +147949,306.59,84.5656 +147950,307.41,86.2422 +147951,308.27,87.9505 +147952,309.18,89.69386 +147953,305.31,84.577 +147954,306.09,86.2613 +147955,306.91,87.9768 +147956,307.79,89.72684 +147957,304.03,84.5898 +147958,304.77,86.2808 +147959,305.56,88.0026 +147960,306.4,89.75846 +147961,302.74,84.6038 +147962,303.45,86.3007 +147963,304.2,88.028 +147964,305,89.78871 +147965,301.46,84.6191 +147966,302.13,86.3211 +147967,302.85,88.0529 +147968,303.61,89.81758 +147969,300.18,84.6358 +147970,300.81,86.3418 +147971,301.49,88.0773 +147972,302.21,89.84507 +147973,298.9,84.6538 +147974,299.5,86.363 +147975,300.13,88.1013 +147976,300.82,89.87118 +147977,297.62,84.6731 +147978,298.18,86.3847 +147979,298.78,88.1248 +147980,299.42,89.89591 +147981,296.34,84.6937 +147982,296.86,86.4068 +147983,297.42,88.1478 +147984,298.03,89.919258 +147985,295.06,84.7157 +147986,295.54,86.4293 +147987,296.06,88.1704 +147988,296.63,89.941219 +147989,293.78,84.739 +147990,294.22,86.4522 +147991,294.71,88.1924 +147992,295.23,89.961797 +147993,292.5,84.7636 +147994,292.9,86.4756 +147995,293.35,88.2141 +147996,293.83,89.980991 +147997,291.22,84.7896 +147998,291.59,86.4995 +147999,291.99,88.2352 +148000,292.44,89.998804 +148001,289.94,84.8169 +148002,290.27,86.5237 +148003,290.63,88.2559 +148004,291.04,90.015238 +148005,288.66,84.8456 +148006,288.95,86.5484 +148007,289.27,88.2761 +148008,289.64,90.030297 +148009,287.38,84.8756 +148010,287.63,86.5735 +148011,287.92,88.2958 +148012,288.24,90.043984 +148013,286.1,84.9069 +148014,286.31,86.5991 +148015,286.56,88.3151 +148016,286.84,90.056303 +148017,284.82,84.9395 +148018,285,86.6251 +148019,285.2,88.3339 +148020,285.44,90.067261 +148021,283.55,84.9735 +148022,283.68,86.6515 +148023,283.84,88.3523 +148024,284.04,90.076863 +148025,282.27,85.0088 +148026,282.36,86.6784 +148027,282.48,88.3701 +148028,282.64,90.085116 +148029,280.99,85.0454 +148030,281.04,86.7056 +148031,281.13,88.3876 +148032,281.25,90.092027 +148033,279.71,85.0833 +148034,279.72,86.7333 +148035,279.77,88.4045 +148036,279.85,90.097604 +148037,278.43,85.1225 +148038,278.4,86.7615 +148039,278.41,88.421 +148040,278.45,90.10186 +148041,277.15,85.1631 +148042,277.09,86.79 +148043,277.05,88.4371 +148044,277.05,90.10479 +148045,275.87,85.2049 +148046,275.77,86.819 +148047,275.69,88.4527 +148048,275.65,90.10642 +148049,274.6,85.248 +148050,274.45,86.8483 +148051,274.33,88.4678 +148052,274.25,90.10676 +148053,273.32,85.2923 +148054,273.13,86.8781 +148055,272.98,88.4826 +148056,272.85,90.10581 +148057,272.04,85.3379 +148058,271.81,86.9083 +148059,271.62,88.4968 +148060,271.45,90.10359 +148061,270.76,85.3848 +148062,270.49,86.9389 +148063,270.26,88.5107 +148064,270.05,90.10012 +148065,269.48,85.4329 +148066,269.18,86.9699 +148067,268.9,88.5241 +148068,268.65,90.095393 +148069,268.2,85.4822 +148070,267.86,87.0012 +148071,267.54,88.5371 +148072,267.25,90.089439 +148073,266.92,85.5328 +148074,266.54,87.033 +148075,266.18,88.5496 +148076,265.86,90.082267 +148077,265.64,85.5845 +148078,265.22,87.0652 +148079,264.83,88.5618 +148080,264.46,90.073894 +148081,264.35,85.6375 +148082,263.9,87.0977 +148083,263.47,88.5735 +148084,263.06,90.064334 +148085,263.07,85.6916 +148086,262.58,87.1306 +148087,262.11,88.5848 +148088,261.66,90.053605 +148089,261.79,85.7469 +148090,261.26,87.1639 +148091,260.75,88.5957 +148092,260.27,90.041722 +148093,260.51,85.8033 +148094,259.94,87.1975 +148095,259.39,88.6062 +148096,258.87,90.028704 +148097,259.23,85.8608 +148098,258.62,87.2315 +148099,258.04,88.6164 +148100,257.48,90.014568 +148101,257.94,85.9195 +148102,257.3,87.2658 +148103,256.68,88.6261 +148104,256.08,89.99933328 +148105,256.66,85.9792 +148106,255.98,87.3005 +148107,255.32,88.6355 +148108,254.69,89.983018 +148109,255.37,86.04 +148110,254.66,87.3356 +148111,253.96,88.6445 +148112,253.29,89.965643 +148113,254.09,86.1019 +148114,253.34,87.3709 +148115,252.61,88.6531 +148116,251.9,89.947227 +148117,252.8,86.1648 +148118,252.02,87.4066 +148119,251.25,88.6614 +148120,250.51,89.927791 +148121,251.51,86.2287 +148122,250.69,87.4426 +148123,249.89,88.6693 +148124,249.11,89.907357 +148125,250.23,86.2936 +148126,249.37,87.4789 +148127,248.54,88.6768 +148128,247.72,89.88595 +148129,248.94,86.3595 +148130,248.05,87.5156 +148131,247.18,88.6841 +148132,246.33,89.86358 +148133,247.65,86.4263 +148134,246.73,87.5525 +148135,245.82,88.6909 +148136,244.94,89.84028 +148137,246.36,86.494 +148138,245.4,87.5897 +148139,244.47,88.6975 +148140,243.55,89.81607 +148141,245.07,86.5627 +148142,244.08,87.6272 +148143,243.11,88.7038 +148144,242.16,89.79098 +148145,243.78,86.6322 +148146,242.76,87.665 +148147,241.76,88.7097 +148148,240.78,89.76502 +148149,242.49,86.7026 +148150,241.44,87.703 +148151,240.4,88.7153 +148152,239.39,89.73822 +148153,241.19,86.7739 +148154,240.11,87.7413 +148155,239.05,88.7207 +148156,238,89.71061 +148157,239.9,86.8459 +148158,238.79,87.7798 +148159,237.69,88.7258 +148160,236.62,89.68221 +148161,238.61,86.9187 +148162,237.46,87.8186 +148163,236.34,88.7305 +148164,235.23,89.65305 +148165,237.31,86.9923 +148166,236.14,87.8576 +148167,234.98,88.7351 +148168,233.85,89.62315 +148169,236.01,87.0666 +148170,234.81,87.8969 +148171,233.63,88.7393 +148172,232.47,89.59253 +148173,234.72,87.1417 +148174,233.49,87.9363 +148175,232.28,88.7433 +148176,231.09,89.56124 +148177,233.42,87.2174 +148178,232.16,87.976 +148179,230.92,88.7471 +148180,229.71,89.52928 +148181,232.12,87.2937 +148182,230.83,88.0158 +148183,229.57,88.7506 +148184,228.33,89.49669 +148185,230.82,87.3707 +148186,229.51,88.0559 +148187,228.22,88.754 +148188,226.95,89.4635 +148189,229.52,87.4482 +148190,228.18,88.0961 +148191,226.87,88.7571 +148192,225.57,89.42973 +148193,228.21,87.5264 +148194,226.85,88.1364 +148195,225.51,88.76 +148196,224.19,89.39541 +148197,226.91,87.605 +148198,225.53,88.177 +148199,224.16,88.7627 +148200,222.82,89.36056 +148201,225.6,87.6842 +148202,224.2,88.2177 +148203,222.81,88.7652 +148204,221.44,89.32523 +148205,224.3,87.7639 +148206,222.87,88.2585 +148207,221.46,88.7675 +148208,220.07,89.28943 +148209,222.99,87.844 +148210,221.54,88.2994 +148211,220.11,88.7697 +148212,218.7,89.2532 +148213,221.68,87.9245 +148214,220.21,88.3405 +148215,218.76,88.7717 +148216,217.33,89.21656 +148217,220.37,88.0054 +148218,218.88,88.3817 +148219,217.41,88.7736 +148220,215.96,89.17954 +148221,219.06,88.0866 +148222,217.55,88.4229 +148223,216.06,88.7753 +148224,214.59,89.14217 +148225,217.75,88.1682 +148226,216.22,88.4643 +148227,214.71,88.7769 +148228,213.22,89.10449 +148229,216.44,88.2501 +148230,214.89,88.5057 +148231,213.36,88.7784 +148232,211.86,89.06651 +148233,215.12,88.3322 +148234,213.55,88.5472 +148235,212.01,88.7798 +148236,210.49,89.02828 +148237,213.81,88.4146 +148238,212.22,88.5888 +148239,210.66,88.781 +148240,209.13,88.9898 +148241,212.49,88.4971 +148242,210.89,88.6304 +148243,209.32,88.7822 +148244,207.76,88.9512 +148245,211.17,88.5798 +148246,209.56,88.672 +148247,207.97,88.7834 +148248,206.4,88.9123 +148249,209.85,88.6627 +148250,208.22,88.7136 +148251,206.62,88.7844 +148252,205.04,88.8733 +148253,208.53,88.7456 +148254,206.89,88.7553 +148255,205.27,88.7854 +148256,203.68,88.8343 +148257,207.21,88.8286 +148258,205.55,88.797 +148259,203.93,88.7864 +148260,202.33,88.7951 +148261,205.88,88.9117 +148262,204.22,88.8386 +148263,202.58,88.7873 +148264,200.97,88.7559 +148265,204.56,88.9948 +148266,202.88,88.8803 +148267,201.24,88.7882 +148268,199.61,88.7167 +148269,203.23,89.07778 +148270,201.55,88.9219 +148271,199.89,88.789 +148272,198.26,88.6774 +148273,201.91,89.16074 +148274,200.21,88.9634 +148275,198.55,88.7899 +148276,196.91,88.6383 +148277,200.58,89.24361 +148278,198.87,89.00494 +148279,197.2,88.7908 +148280,195.56,88.5992 +148281,199.25,89.32634 +148282,197.54,89.04639 +148283,195.86,88.7917 +148284,194.21,88.5602 +148285,197.92,89.40891 +148286,196.2,89.08777 +148287,194.51,88.7926 +148288,192.86,88.5213 +148289,196.58,89.49128 +148290,194.86,89.12906 +148291,193.17,88.7935 +148292,191.51,88.4826 +148293,195.25,89.57343 +148294,193.52,89.17025 +148295,191.83,88.7945 +148296,190.16,88.4441 +148297,193.91,89.65531 +148298,192.18,89.21134 +148299,190.49,88.7956 +148300,188.82,88.4058 +148301,192.58,89.7369 +148302,190.84,89.25231 +148303,189.14,88.7967 +148304,187.48,88.3677 +148305,191.24,89.81817 +148306,189.5,89.29315 +148307,187.8,88.7979 +148308,186.13,88.33 +148309,189.9,89.89907 +148310,188.16,89.33386 +148311,186.46,88.7992 +148312,184.79,88.2925 +148313,188.56,89.979581 +148314,186.82,89.37442 +148315,185.12,88.8006 +148316,183.45,88.2554 +148317,187.22,90.059669 +148318,185.48,89.41482 +148319,183.78,88.8021 +148320,182.11,88.2187 +148321,185.87,90.1393 +148322,184.14,89.45505 +148323,182.44,88.8037 +148324,180.78,88.1823 +148325,184.53,90.21844 +148326,182.79,89.4951 +148327,181.1,88.8054 +148328,179.44,88.1464 +148329,183.18,90.29707 +148330,181.45,89.53495 +148331,179.76,88.8073 +148332,178.11,88.111 +148333,181.83,90.37514 +148334,180.11,89.57461 +148335,178.42,88.8093 +148336,176.77,88.076 +148337,180.48,90.45263 +148338,178.76,89.61406 +148339,177.08,88.8115 +148340,175.44,88.0415 +148341,179.13,90.5295 +148342,177.42,89.65329 +148343,175.75,88.8138 +148344,174.11,88.0076 +148345,177.78,90.60574 +148346,176.07,89.69229 +148347,174.41,88.8163 +148348,172.78,87.9743 +148349,176.43,90.68129 +148350,174.73,89.73104 +148351,173.07,88.819 +148352,171.45,87.9415 +148353,175.07,90.75615 +148354,173.38,89.76955 +148355,171.74,88.8219 +148356,170.13,87.9094 +148357,173.72,90.83027 +148358,172.04,89.8078 +148359,170.4,88.825 +148360,168.8,87.8779 +148361,172.36,90.90362 +148362,170.69,89.84578 +148363,169.06,88.8282 +148364,167.48,87.8471 +148365,171,90.97619 +148366,169.34,89.88348 +148367,167.73,88.8318 +148368,166.15,87.817 +148369,169.64,91.0479 +148370,167.99,89.920888 +148371,166.39,88.8355 +148372,164.83,87.7876 +148373,168.28,91.1188 +148374,166.64,89.958004 +148375,165.06,88.8395 +148376,163.51,87.759 +148377,166.92,91.1888 +148378,165.3,89.9948129 +148379,163.72,88.8437 +148380,162.19,87.7311 +148381,165.55,91.258 +148382,163.95,90.031307 +148383,162.39,88.8482 +148384,160.87,87.7041 +148385,164.19,91.3261 +148386,162.6,90.067479 +148387,161.05,88.8529 +148388,159.55,87.6779 +148389,162.82,91.3934 +148390,161.25,90.10332 +148391,159.72,88.8579 +148392,158.24,87.6525 +148393,161.45,91.4596 +148394,159.9,90.13882 +148395,158.39,88.8632 +148396,156.92,87.628 +148397,160.08,91.5248 +148398,158.55,90.17397 +148399,157.05,88.8688 +148400,155.61,87.6044 +148401,158.71,91.589 +148402,157.19,90.20876 +148403,155.72,88.8747 +148404,154.29,87.5818 +148405,157.34,91.6522 +148406,155.84,90.24319 +148407,154.39,88.8809 +148408,152.98,87.56 +148409,155.97,91.7142 +148410,154.49,90.27725 +148411,153.06,88.8873 +148412,151.67,87.5393 +148413,154.6,91.7752 +148414,153.14,90.31092 +148415,151.73,88.8941 +148416,150.36,87.5195 +148417,153.22,91.835 +148418,151.78,90.34421 +148419,150.4,88.9012 +148420,149.05,87.5007 +148421,151.85,91.8937 +148422,150.43,90.37711 +148423,149.07,88.9087 +148424,147.74,87.483 +148425,150.47,91.9512 +148426,149.08,90.4096 +148427,147.73,88.9165 +148428,146.44,87.4663 +148429,149.09,92.0075 +148430,147.72,90.44168 +148431,146.4,88.9246 +148432,145.13,87.4507 +148433,147.71,92.0627 +148434,146.37,90.47336 +148435,145.07,88.9331 +148436,143.82,87.4361 +148437,146.33,92.1165 +148438,145.01,90.5046 +148439,143.74,88.9419 +148440,142.52,87.4227 +148441,144.95,92.1692 +148442,143.66,90.53543 +148443,142.42,88.9511 +148444,141.22,87.4104 +148445,143.57,92.2205 +148446,142.3,90.56581 +148447,141.09,88.9606 +148448,139.91,87.3992 +148449,142.18,92.2706 +148450,140.95,90.59576 +148451,139.76,88.9706 +148452,138.61,87.3892 +148453,140.8,92.3194 +148454,139.59,90.62527 +148455,138.43,88.9809 +148456,137.31,87.3803 +148457,139.41,92.3668 +148458,138.23,90.65432 +148459,137.1,88.9915 +148460,136.01,87.3726 +148461,138.03,92.413 +148462,136.87,90.68292 +148463,135.77,89.0026 +148464,134.71,87.3662 +148465,136.64,92.4578 +148466,135.52,90.71105 +148467,134.44,89.01407 +148468,133.41,87.3609 +148469,135.25,92.5012 +148470,134.16,90.73873 +148471,133.12,89.02592 +148472,132.12,87.3569 +148473,133.86,92.5432 +148474,132.8,90.76593 +148475,131.79,89.03818 +148476,130.82,87.3541 +148477,132.47,92.5839 +148478,131.44,90.79266 +148479,130.46,89.05084 +148480,129.52,87.3526 +148481,131.08,92.6231 +148482,130.08,90.81891 +148483,129.13,89.06391 +148484,128.23,87.3524 +148485,129.69,92.661 +148486,128.73,90.84468 +148487,127.81,89.07739 +148488,126.93,87.3534 +148489,128.3,92.6974 +148490,127.37,90.86997 +148491,126.48,89.09129 +148492,125.64,87.3557 +148493,126.91,92.7324 +148494,126.01,90.89476 +148495,125.15,89.1056 +148496,124.34,87.3593 +148497,125.51,92.766 +148498,124.65,90.91907 +148499,123.83,89.12034 +148500,123.05,87.3642 +148501,124.12,92.7981 +148502,123.29,90.94288 +148503,122.5,89.13549 +148504,121.76,87.3705 +148505,122.73,92.8288 +148506,121.93,90.9662 +148507,121.18,89.15108 +148508,120.46,87.378 +148509,121.33,92.858 +148510,120.57,90.98901 +148511,119.85,89.16709 +148512,119.17,87.3869 +148513,119.93,92.8857 +148514,119.21,91.0113 +148515,118.52,89.18354 +148516,117.88,87.3971 +148517,118.54,92.912 +148518,117.85,91.0331 +148519,117.2,89.20041 +148520,116.59,87.4087 +148521,117.14,92.9368 +148522,116.49,91.0544 +148523,115.87,89.21772 +148524,115.3,87.4217 +148525,115.74,92.9601 +148526,115.12,91.0752 +148527,114.55,89.23547 +148528,114.01,87.4359 +148529,114.35,92.982 +148530,113.76,91.0955 +148531,113.22,89.25365 +148532,112.72,87.4516 +148533,112.95,93.0023 +148534,112.4,91.1153 +148535,111.9,89.27227 +148536,111.43,87.4686 +148537,111.55,93.0212 +148538,111.04,91.1346 +148539,110.57,89.29132 +148540,110.14,87.4869 +148541,110.15,93.0386 +148542,109.68,91.1534 +148543,109.25,89.31082 +148544,108.85,87.5067 +148545,108.75,93.0546 +148546,108.32,91.1716 +148547,107.92,89.33075 +148548,107.56,87.5278 +148549,107.35,93.069 +148550,106.95,91.1894 +148551,106.6,89.35112 +148552,106.27,87.5502 +148553,105.95,93.082 +148554,105.59,91.2066 +148555,105.27,89.37193 +148556,104.99,87.5741 +148557,104.55,93.0935 +148558,104.23,91.2233 +148559,103.95,89.39317 +148560,103.7,87.5993 +148561,103.15,93.1036 +148562,102.87,91.2396 +148563,102.62,89.41485 +148564,102.41,87.6259 +148565,101.75,93.1122 +148566,101.5,91.2553 +148567,101.3,89.43697 +148568,101.12,87.6538 +148569,100.35,93.1193 +148570,100.14,91.2705 +148571,99.972,89.45952 +148572,99.832,87.6831 +148573,98.947,93.125 +148574,98.779,91.2852 +148575,98.647,89.4825 +148576,98.544,87.7137 +148577,97.546,93.1292 +148578,97.417,91.2994 +148579,97.321,89.50591 +148580,97.256,87.7457 +148581,96.145,93.132 +148582,96.054,91.3131 +148583,95.996,89.52975 +148584,95.968,87.7791 +148585,94.744,93.1333 +148586,94.691,91.3263 +148587,94.671,89.55401 +148588,94.68,87.8138 +148589,93.343,93.1333 +148590,93.329,91.3391 +148591,93.346,89.5787 +148592,93.392,87.8498 +148593,91.941,93.1318 +148594,91.966,91.3513 +148595,92.021,89.60381 +148596,92.104,87.8871 +148597,90.54,93.129 +148598,90.603,91.363 +148599,90.696,89.62934 +148600,90.815,87.9258 +148601,89.14,93.1247 +148602,89.24,91.3743 +148603,89.37,89.65528 +148604,89.527,87.9658 +148605,87.739,93.1191 +148606,87.878,91.3851 +148607,88.045,89.68164 +148608,88.238,88.0071 +148609,86.338,93.1121 +148610,86.515,91.3954 +148611,86.719,89.7084 +148612,86.949,88.0497 +148613,84.938,93.1038 +148614,85.152,91.4052 +148615,85.393,89.73556 +148616,85.659,88.0935 +148617,83.537,93.0942 +148618,83.79,91.4145 +148619,84.068,89.76313 +148620,84.37,88.1386 +148621,82.138,93.0832 +148622,82.427,91.4234 +148623,82.742,89.79109 +148624,83.08,88.185 +148625,80.738,93.0709 +148626,81.064,91.4319 +148627,81.416,89.81943 +148628,81.789,88.2326 +148629,79.338,93.0573 +148630,79.702,91.4398 +148631,80.089,89.84817 +148632,80.499,88.2815 +148633,77.939,93.0425 +148634,78.34,91.4474 +148635,78.763,89.87729 +148636,79.208,88.3316 +148637,76.541,93.0264 +148638,76.977,91.4544 +148639,77.436,89.906776 +148640,77.916,88.3829 +148641,75.143,93.0091 +148642,75.615,91.4611 +148643,76.11,89.936637 +148644,76.624,88.4353 +148645,73.745,92.9905 +148646,74.253,91.4673 +148647,74.783,89.966862 +148648,75.332,88.489 +148649,72.347,92.9708 +148650,72.891,91.4731 +148651,73.456,89.9974447 +148652,74.039,88.5438 +148653,70.951,92.9499 +148654,71.529,91.4784 +148655,72.128,90.02838 +148656,72.746,88.5997 +148657,69.554,92.9278 +148658,70.168,91.4834 +148659,70.801,90.059662 +148660,71.452,88.6567 +148661,68.158,92.9046 +148662,68.806,91.4879 +148663,69.473,90.091282 +148664,70.157,88.7149 +148665,66.763,92.8803 +148666,67.445,91.492 +148667,68.145,90.12324 +148668,68.862,88.7741 +148669,65.369,92.8549 +148670,66.084,91.4958 +148671,66.817,90.15552 +148672,67.566,88.8344 +148673,63.975,92.8284 +148674,64.723,91.4991 +148675,65.488,90.18811 +148676,66.27,88.8958 +148677,62.581,92.8008 +148678,63.362,91.5021 +148679,64.159,90.22102 +148680,64.973,88.9582 +148681,61.189,92.7723 +148682,62.001,91.5047 +148683,62.83,90.25424 +148684,63.675,89.02152 +148685,59.797,92.7427 +148686,60.641,91.5069 +148687,61.501,90.28775 +148688,62.376,89.08587 +148689,58.405,92.7122 +148690,59.281,91.5088 +148691,60.172,90.32154 +148692,61.077,89.15117 +148693,57.015,92.6807 +148694,57.921,91.5103 +148695,58.842,90.35562 +148696,59.777,89.21741 +148697,55.625,92.6483 +148698,56.561,91.5115 +148699,57.512,90.38998 +148700,58.476,89.28455 +148701,54.236,92.615 +148702,55.201,91.5124 +148703,56.181,90.42459 +148704,57.174,89.35258 +148705,52.848,92.5808 +148706,53.842,91.5129 +148707,54.85,90.45946 +148708,55.872,89.42148 +148709,51.461,92.5458 +148710,52.483,91.5131 +148711,53.519,90.49458 +148712,54.569,89.49121 +148713,50.074,92.51 +148714,51.124,91.513 +148715,52.188,90.52994 +148716,53.264,89.56175 +148717,48.689,92.4733 +148718,49.766,91.5126 +148719,50.856,90.56552 +148720,51.959,89.63307 +148721,47.304,92.4359 +148722,48.407,91.5119 +148723,49.524,90.60133 +148724,50.653,89.70516 +148725,45.92,92.3978 +148726,47.049,91.511 +148727,48.192,90.63734 +148728,49.346,89.77797 +148729,44.538,92.3589 +148730,45.692,91.5098 +148731,46.859,90.67356 +148732,48.038,89.85149 +148733,43.156,92.3194 +148734,44.334,91.5083 +148735,45.526,90.70997 +148736,46.729,89.92568 +148737,41.775,92.2792 +148738,42.977,91.5065 +148739,44.192,90.74656 +148740,45.419,90.00051978 +148741,40.395,92.2384 +148742,41.62,91.5045 +148743,42.858,90.78332 +148744,44.108,90.075979 +148745,39.016,92.197 +148746,40.264,91.5023 +148747,41.524,90.82025 +148748,42.796,90.15203 +148749,37.639,92.1551 +148750,38.908,91.4999 +148751,40.19,90.85733 +148752,41.483,90.22864 +148753,36.262,92.1126 +148754,37.552,91.4972 +148755,38.855,90.89455 +148756,40.169,90.30577 +148757,34.886,92.0696 +148758,36.196,91.4943 +148759,37.519,90.9319 +148760,38.854,90.38341 +148761,33.512,92.0261 +148762,34.841,91.4913 +148763,36.183,90.96937 +148764,37.538,90.46152 +148765,32.138,91.9822 +148766,33.486,91.4881 +148767,34.847,91.007 +148768,36.22,90.54007 +148769,30.766,91.9379 +148770,32.131,91.4846 +148771,33.511,91.0446 +148772,34.902,90.61902 +148773,29.394,91.8932 +148774,30.777,91.4811 +148775,32.174,91.0824 +148776,33.582,90.69836 +148777,28.024,91.8482 +148778,29.423,91.4774 +148779,30.836,91.1203 +148780,32.261,90.77803 +148781,26.655,91.8028 +148782,28.07,91.4735 +148783,29.498,91.1582 +148784,30.939,90.85802 +148785,25.287,91.7571 +148786,26.717,91.4695 +148787,28.16,91.1962 +148788,29.616,90.93829 +148789,23.921,91.7112 +148790,25.364,91.4654 +148791,26.821,91.2342 +148792,28.292,91.0188 +148793,22.555,91.6651 +148794,24.011,91.4612 +148795,25.482,91.2723 +148796,26.966,91.0995 +148797,21.191,91.6187 +148798,22.659,91.4568 +148799,24.143,91.3104 +148800,25.64,91.1804 +148801,19.828,91.5722 +148802,21.308,91.4524 +148803,22.803,91.3485 +148804,24.312,91.2615 +148805,18.466,91.5256 +148806,19.956,91.4479 +148807,21.462,91.3866 +148808,22.983,91.3427 +148809,17.105,91.4789 +148810,18.605,91.4434 +148811,20.121,91.4247 +148812,21.652,91.424 +148813,15.745,91.4321 +148814,17.255,91.4388 +148815,18.78,91.4628 +148816,20.321,91.5053 +148817,14.387,91.3853 +148818,15.905,91.4341 +148819,17.438,91.5008 +148820,18.988,91.5866 +148821,13.03,91.3384 +148822,14.555,91.4294 +148823,16.096,91.5388 +148824,17.654,91.6679 +148825,11.674,91.2916 +148826,13.205,91.4247 +148827,14.754,91.5768 +148828,16.318,91.7491 +148829,10.319,91.2449 +148830,11.856,91.42 +148831,13.41,91.6147 +148832,14.982,91.8303 +148833,8.9659,91.1982 +148834,10.507,91.4152 +148835,12.067,91.6525 +148836,13.644,91.9114 +148837,7.6137,91.1517 +148838,9.1592,91.4105 +148839,10.723,91.6903 +148840,12.304,91.9923 +148841,6.2627,91.1053 +148842,7.8112,91.4058 +148843,9.3784,91.7279 +148844,10.964,92.073 +148845,4.913,91.0591 +148846,6.4637,91.4011 +148847,8.0335,91.7654 +148848,9.6222,92.1535 +148849,3.5644,91.0131 +148850,5.1166,91.3965 +148851,6.6881,91.8028 +148852,8.2791,92.2337 +148853,2.2172,90.96737 +148854,3.7698,91.3919 +148855,5.3423,91.8401 +148856,6.9348,92.3136 +148857,0.87109,90.92191 +148858,2.4234,91.3874 +148859,3.996,91.8773 +148860,5.5892,92.3932 +148861,359.53,90.87675 +148862,1.0774,91.3829 +148863,2.6493,91.9142 +148864,4.2423,92.4725 +148865,358.18,90.83193 +148866,359.73,91.3785 +148867,1.3021,91.9511 +148868,2.8941,92.5514 +148869,356.84,90.78748 +148870,358.39,91.3742 +148871,359.95,91.9877 +148872,1.5446,92.6298 +148873,355.5,90.74343 +148874,357.04,91.37 +148875,358.61,92.0242 +148876,0.19385,92.7078 +148877,354.16,90.6998 +148878,355.7,91.366 +148879,357.26,92.0605 +148880,358.84,92.7853 +148881,352.82,90.65663 +148882,354.35,91.362 +148883,355.91,92.0965 +148884,357.49,92.8623 +148885,351.48,90.61394 +148886,353.01,91.3582 +148887,354.56,92.1324 +148888,356.13,92.9387 +148889,350.15,90.57177 +148890,351.67,91.3545 +148891,353.21,92.168 +148892,354.78,93.0145 +148893,348.81,90.53015 +148894,350.32,91.351 +148895,351.86,92.2034 +148896,353.42,93.0897 +148897,347.48,90.4891 +148898,348.98,91.3476 +148899,350.51,92.2385 +148900,352.06,93.1643 +148901,346.14,90.44864 +148902,347.64,91.3445 +148903,349.16,92.2734 +148904,350.7,93.2381 +148905,344.81,90.40882 +148906,346.3,91.3414 +148907,347.81,92.308 +148908,349.34,93.3113 +148909,343.48,90.36965 +148910,344.96,91.3386 +148911,346.45,92.3423 +148912,347.98,93.3837 +148913,342.15,90.33117 +148914,343.61,91.336 +148915,345.1,92.3763 +148916,346.62,93.4553 +148917,340.82,90.29339 +148918,342.27,91.3336 +148919,343.75,92.41 +148920,345.25,93.5261 +148921,339.5,90.25636 +148922,340.93,91.3314 +148923,342.39,92.4435 +148924,343.89,93.5961 +148925,338.17,90.22008 +148926,339.59,91.3294 +148927,341.04,92.4766 +148928,342.52,93.6652 +148929,336.85,90.1846 +148930,338.25,91.3277 +148931,339.69,92.5094 +148932,341.15,93.7334 +148933,335.52,90.14993 +148934,336.91,91.3262 +148935,338.33,92.5418 +148936,339.78,93.8007 +148937,334.2,90.11609 +148938,335.57,91.325 +148939,336.98,92.5739 +148940,338.41,93.867 +148941,332.88,90.083126 +148942,334.24,91.324 +148943,335.62,92.6056 +148944,337.04,93.9323 +148945,331.56,90.051045 +148946,332.9,91.3233 +148947,334.27,92.637 +148948,335.67,93.9966 +148949,330.24,90.019875 +148950,331.56,91.3229 +148951,332.91,92.668 +148952,334.29,94.0599 +148953,328.92,89.98964 +148954,330.22,91.3228 +148955,331.55,92.6987 +148956,332.92,94.1221 +148957,327.6,89.960363 +148958,328.88,91.3229 +148959,330.2,92.7289 +148960,331.54,94.1833 +148961,326.29,89.932065 +148962,327.55,91.3234 +148963,328.84,92.7587 +148964,330.16,94.2433 +148965,324.97,89.904768 +148966,326.21,91.3241 +148967,327.48,92.7882 +148968,328.79,94.3021 +148969,323.66,89.87849 +148970,324.87,91.3252 +148971,326.12,92.8172 +148972,327.41,94.3598 +148973,322.34,89.85326 +148974,323.54,91.3266 +148975,324.76,92.8458 +148976,326.03,94.4163 +148977,321.03,89.8291 +148978,322.2,91.3284 +148979,323.41,92.874 +148980,324.64,94.4716 +148981,319.72,89.80602 +148982,320.87,91.3304 +148983,322.05,92.9017 +148984,323.26,94.5257 +148985,318.41,89.78404 +148986,319.53,91.3329 +148987,320.69,92.929 +148988,321.88,94.5785 +148989,317.09,89.76318 +148990,318.2,91.3356 +148991,319.33,92.9558 +148992,320.49,94.63 +148993,315.79,89.74346 +148994,316.86,91.3387 +148995,317.97,92.9822 +148996,319.11,94.6802 +148997,314.48,89.7249 +148998,315.53,91.3422 +148999,316.61,93.0082 +149000,317.72,94.7291 +149001,313.17,89.70751 +149002,314.19,91.3461 +149003,315.25,93.0336 +149004,316.34,94.7767 +149005,311.86,89.69131 +149006,312.86,91.3503 +149007,313.88,93.0586 +149008,314.95,94.8229 +149009,310.55,89.67632 +149010,311.52,91.3549 +149011,312.52,93.0831 +149012,313.56,94.8677 +149013,309.25,89.66255 +149014,310.19,91.3599 +149015,311.16,93.1071 +149016,312.17,94.9111 +149017,307.94,89.65002 +149018,308.86,91.3652 +149019,309.8,93.1307 +149020,310.78,94.9531 +149021,306.64,89.63874 +149022,307.52,91.371 +149023,308.44,93.1537 +149024,309.39,94.9937 +149025,305.34,89.62872 +149026,306.19,91.3772 +149027,307.07,93.1762 +149028,307.99,95.0329 +149029,304.03,89.61997 +149030,304.86,91.3837 +149031,305.71,93.1983 +149032,306.6,95.0706 +149033,302.73,89.61252 +149034,303.52,91.3907 +149035,304.35,93.2198 +149036,305.21,95.1069 +149037,301.43,89.60636 +149038,302.19,91.3981 +149039,302.98,93.2408 +149040,303.81,95.1416 +149041,300.13,89.60152 +149042,300.86,91.4059 +149043,301.62,93.2613 +149044,302.42,95.1749 +149045,298.83,89.598 +149046,299.53,91.4141 +149047,300.26,93.2812 +149048,301.02,95.2067 +149049,297.53,89.59581 +149050,298.19,91.4227 +149051,298.89,93.3007 +149052,299.63,95.2369 +149053,296.23,89.59495 +149054,296.86,91.4317 +149055,297.53,93.3196 +149056,298.23,95.2657 +149057,294.93,89.59545 +149058,295.53,91.4412 +149059,296.16,93.338 +149060,296.83,95.2929 +149061,293.63,89.5973 +149062,294.2,91.4511 +149063,294.8,93.3558 +149064,295.44,95.3186 +149065,292.33,89.60051 +149066,292.87,91.4614 +149067,293.44,93.3731 +149068,294.04,95.3427 +149069,291.03,89.60509 +149070,291.54,91.4722 +149071,292.07,93.3899 +149072,292.64,95.3653 +149073,289.73,89.61104 +149074,290.2,91.4834 +149075,290.71,93.4061 +149076,291.24,95.3863 +149077,288.43,89.61838 +149078,288.87,91.495 +149079,289.34,93.4218 +149080,289.84,95.4058 +149081,287.14,89.62709 +149082,287.54,91.5071 +149083,287.98,93.437 +149084,288.44,95.4237 +149085,285.84,89.63719 +149086,286.21,91.5196 +149087,286.61,93.4516 +149088,287.04,95.4401 +149089,284.54,89.64868 +149090,284.88,91.5325 +149091,285.24,93.4657 +149092,285.64,95.4548 +149093,283.25,89.66157 +149094,283.55,91.5459 +149095,283.88,93.4792 +149096,284.24,95.4681 +149097,281.95,89.67584 +149098,282.22,91.5597 +149099,282.51,93.4922 +149100,282.84,95.4797 +149101,280.65,89.69151 +149102,280.89,91.574 +149103,281.15,93.5046 +149104,281.44,95.4898 +149105,279.36,89.70857 +149106,279.56,91.5886 +149107,279.78,93.5165 +149108,280.03,95.4983 +149109,278.06,89.72702 +149110,278.23,91.6038 +149111,278.41,93.5279 +149112,278.63,95.5053 +149113,276.76,89.74686 +149114,276.89,91.6193 +149115,277.05,93.5387 +149116,277.23,95.5107 +149117,275.47,89.76809 +149118,275.56,91.6353 +149119,275.68,93.5489 +149120,275.83,95.5146 +149121,274.17,89.79071 +149122,274.23,91.6518 +149123,274.32,93.5586 +149124,274.43,95.5169 +149125,272.88,89.81471 +149126,272.9,91.6686 +149127,272.95,93.5678 +149128,273.02,95.5176 +149129,271.58,89.84009 +149130,271.57,91.6859 +149131,271.58,93.5765 +149132,271.62,95.5169 +149133,270.28,89.86684 +149134,270.24,91.7037 +149135,270.22,93.5846 +149136,270.22,95.5146 +149137,268.99,89.89496 +149138,268.91,91.7218 +149139,268.85,93.5921 +149140,268.82,95.5108 +149141,267.69,89.924438 +149142,267.58,91.7404 +149143,267.48,93.5992 +149144,267.41,95.5054 +149145,266.39,89.955271 +149146,266.25,91.7594 +149147,266.12,93.6057 +149148,266.01,95.4986 +149149,265.1,89.987451 +149150,264.91,91.7788 +149151,264.75,93.6117 +149152,264.61,95.4903 +149153,263.8,90.020968 +149154,263.58,91.7987 +149155,263.38,93.6171 +149156,263.21,95.4805 +149157,262.5,90.055814 +149158,262.25,91.8189 +149159,262.02,93.6221 +149160,261.81,95.4692 +149161,261.21,90.09198 +149162,260.92,91.8396 +149163,260.65,93.6265 +149164,260.41,95.4565 +149165,259.91,90.12945 +149166,259.59,91.8606 +149167,259.29,93.6304 +149168,259,95.4424 +149169,258.61,90.16822 +149170,258.26,91.8821 +149171,257.92,93.6339 +149172,257.6,95.4268 +149173,257.31,90.20828 +149174,256.92,91.904 +149175,256.55,93.6368 +149176,256.2,95.4098 +149177,256.01,90.24961 +149178,255.59,91.9262 +149179,255.19,93.6392 +149180,254.8,95.3914 +149181,254.71,90.2922 +149182,254.26,91.9489 +149183,253.82,93.6411 +149184,253.4,95.3717 +149185,253.41,90.33604 +149186,252.93,91.9719 +149187,252.46,93.6426 +149188,252,95.3505 +149189,252.11,90.3811 +149190,251.59,91.9953 +149191,251.09,93.6435 +149192,250.6,95.3281 +149193,250.81,90.42739 +149194,250.26,92.0191 +149195,249.73,93.644 +149196,249.2,95.3043 +149197,249.51,90.47487 +149198,248.93,92.0432 +149199,248.36,93.644 +149200,247.81,95.2792 +149201,248.21,90.52354 +149202,247.6,92.0677 +149203,246.99,93.6436 +149204,246.41,95.2528 +149205,246.91,90.57338 +149206,246.26,92.0926 +149207,245.63,93.6427 +149208,245.01,95.2252 +149209,245.61,90.62436 +149210,244.93,92.1178 +149211,244.27,93.6413 +149212,243.61,95.1963 +149213,244.3,90.67648 +149214,243.6,92.1433 +149215,242.9,93.6395 +149216,242.22,95.1662 +149217,243,90.72971 +149218,242.26,92.1692 +149219,241.54,93.6373 +149220,240.82,95.1349 +149221,241.69,90.78403 +149222,240.93,92.1954 +149223,240.17,93.6346 +149224,239.43,95.1025 +149225,240.39,90.83943 +149226,239.59,92.222 +149227,238.81,93.6315 +149228,238.03,95.0688 +149229,239.08,90.89588 +149230,238.26,92.2488 +149231,237.44,93.628 +149232,236.64,95.0341 +149233,237.78,90.95336 +149234,236.92,92.2759 +149235,236.08,93.6241 +149236,235.25,94.9982 +149237,236.47,91.0118 +149238,235.59,92.3034 +149239,234.72,93.6197 +149240,233.86,94.9613 +149241,235.16,91.0713 +149242,234.25,92.3311 +149243,233.35,93.615 +149244,232.46,94.9233 +149245,233.85,91.1318 +149246,232.92,92.3592 +149247,231.99,93.61 +149248,231.07,94.8843 +149249,232.54,91.1931 +149250,231.58,92.3875 +149251,230.63,93.6045 +149252,229.68,94.8443 +149253,231.23,91.2554 +149254,230.24,92.416 +149255,229.26,93.5987 +149256,228.29,94.8033 +149257,229.92,91.3186 +149258,228.91,92.4448 +149259,227.9,93.5925 +149260,226.91,94.7614 +149261,228.61,91.3827 +149262,227.57,92.4739 +149263,226.54,93.5859 +149264,225.52,94.7185 +149265,227.29,91.4476 +149266,226.23,92.5032 +149267,225.18,93.579 +149268,224.13,94.6748 +149269,225.98,91.5133 +149270,224.89,92.5328 +149271,223.82,93.5718 +149272,222.75,94.6302 +149273,224.66,91.5798 +149274,223.56,92.5625 +149275,222.46,93.5643 +149276,221.36,94.5848 +149277,223.35,91.6471 +149278,222.22,92.5925 +149279,221.09,93.5565 +149280,219.98,94.5385 +149281,222.03,91.7151 +149282,220.88,92.6227 +149283,219.73,93.5483 +149284,218.59,94.4915 +149285,220.71,91.7838 +149286,219.54,92.653 +149287,218.37,93.5399 +149288,217.21,94.4437 +149289,219.39,91.8532 +149290,218.2,92.6836 +149291,217.01,93.5311 +149292,215.83,94.3953 +149293,218.07,91.9232 +149294,216.86,92.7143 +149295,215.65,93.5222 +149296,214.45,94.3461 +149297,216.75,91.9939 +149298,215.52,92.7452 +149299,214.29,93.5129 +149300,213.07,94.2963 +149301,215.43,92.0652 +149302,214.18,92.7762 +149303,212.93,93.5034 +149304,211.7,94.2459 +149305,214.11,92.137 +149306,212.84,92.8074 +149307,211.58,93.4936 +149308,210.32,94.1949 +149309,212.79,92.2093 +149310,211.5,92.8387 +149311,210.22,93.4836 +149312,208.94,94.1433 +149313,211.46,92.2822 +149314,210.16,92.8702 +149315,208.86,93.4734 +149316,207.57,94.0912 +149317,210.13,92.3555 +149318,208.81,92.9017 +149319,207.5,93.463 +149320,206.19,94.0386 +149321,208.81,92.4293 +149322,207.47,92.9334 +149323,206.14,93.4524 +149324,204.82,93.9855 +149325,207.48,92.5034 +149326,206.13,92.9651 +149327,204.79,93.4416 +149328,203.45,93.932 +149329,206.15,92.578 +149330,204.79,92.997 +149331,203.43,93.4306 +149332,202.08,93.8781 +149333,204.82,92.6529 +149334,203.44,93.0289 +149335,202.07,93.4194 +149336,200.71,93.8239 +149337,203.49,92.7281 +149338,202.1,93.0608 +149339,200.72,93.4081 +149340,199.34,93.7693 +149341,202.15,92.8036 +149342,200.75,93.0928 +149343,199.36,93.3966 +149344,197.98,93.7144 +149345,200.82,92.8793 +149346,199.41,93.1249 +149347,198.01,93.385 +149348,196.61,93.6592 +149349,199.48,92.9552 +149350,198.07,93.1569 +149351,196.65,93.3733 +149352,195.24,93.6038 +149353,198.15,93.0314 +149354,196.72,93.189 +149355,195.3,93.3615 +149356,193.88,93.5483 +149357,196.81,93.1076 +149358,195.37,93.2211 +149359,193.94,93.3495 +149360,192.52,93.4925 +149361,195.47,93.184 +149362,194.03,93.2531 +149363,192.59,93.3375 +149364,191.16,93.4366 +149365,194.13,93.2605 +149366,192.68,93.2852 +149367,191.23,93.3254 +149368,189.8,93.3806 +149369,192.79,93.337 +149370,191.33,93.3172 +149371,189.88,93.3132 +149372,188.44,93.3245 +149373,191.45,93.4135 +149374,189.99,93.3492 +149375,188.53,93.301 +149376,187.08,93.2684 +149377,190.11,93.49 +149378,188.64,93.3811 +149379,187.18,93.2887 +149380,185.72,93.2123 +149381,188.76,93.5665 +149382,187.29,93.4129 +149383,185.82,93.2764 +149384,184.37,93.1562 +149385,187.41,93.6428 +149386,185.94,93.4447 +149387,184.47,93.264 +149388,183.02,93.1001 +149389,186.07,93.7191 +149390,184.59,93.4764 +149391,183.12,93.2516 +149392,181.66,93.0442 +149393,184.72,93.7951 +149394,183.24,93.508 +149395,181.77,93.2393 +149396,180.31,92.9884 +149397,183.37,93.871 +149398,181.89,93.5395 +149399,180.42,93.2269 +149400,178.96,92.9327 +149401,182.02,93.9466 +149402,180.54,93.5708 +149403,179.07,93.2146 +149404,177.61,92.8773 +149405,180.67,94.022 +149406,179.19,93.602 +149407,177.72,93.2022 +149408,176.26,92.822 +149409,179.31,94.0971 +149410,177.84,93.6331 +149411,176.37,93.19 +149412,174.92,92.767 +149413,177.96,94.1719 +149414,176.49,93.664 +149415,175.02,93.1777 +149416,173.57,92.7123 +149417,176.6,94.2463 +149418,175.13,93.6948 +149419,173.67,93.1656 +149420,172.23,92.6579 +149421,175.25,94.3202 +149422,173.78,93.7253 +149423,172.33,93.1535 +149424,170.88,92.6039 +149425,173.89,94.3938 +149426,172.43,93.7557 +149427,170.98,93.1415 +149428,169.54,92.5502 +149429,172.53,94.4669 +149430,171.07,93.7859 +149431,169.63,93.1296 +149432,168.2,92.497 +149433,171.17,94.5395 +149434,169.72,93.8159 +149435,168.28,93.1178 +149436,166.86,92.4442 +149437,169.81,94.6115 +149438,168.37,93.8456 +149439,166.94,93.1061 +149440,165.52,92.3918 +149441,168.44,94.683 +149442,167.01,93.8751 +149443,165.59,93.0945 +149444,164.18,92.34 +149445,167.08,94.7539 +149446,165.66,93.9044 +149447,164.24,93.0831 +149448,162.85,92.2887 +149449,165.71,94.8241 +149450,164.3,93.9334 +149451,162.9,93.0718 +149452,161.51,92.2379 +149453,164.35,94.8937 +149454,162.94,93.9621 +149455,161.55,93.0607 +149456,160.18,92.1878 +149457,162.98,94.9626 +149458,161.59,93.9906 +149459,160.21,93.0497 +149460,158.84,92.1382 +149461,161.61,95.0307 +149462,160.23,94.0188 +149463,158.86,93.0389 +149464,157.51,92.0893 +149465,160.24,95.0981 +149466,158.87,94.0466 +149467,157.52,93.0283 +149468,156.18,92.0411 +149469,158.87,95.1647 +149470,157.52,94.0742 +149471,156.18,93.0179 +149472,154.85,91.9936 +149473,157.5,95.2305 +149474,156.16,94.1015 +149475,154.83,93.0077 +149476,153.52,91.9468 +149477,156.13,95.2954 +149478,154.8,94.1284 +149479,153.49,92.9977 +149480,152.19,91.9008 +149481,154.75,95.3594 +149482,153.44,94.155 +149483,152.15,92.9879 +149484,150.87,91.8555 +149485,153.38,95.4225 +149486,152.08,94.1813 +149487,150.8,92.9784 +149488,149.54,91.8111 +149489,152,95.4846 +149490,150.72,94.2072 +149491,149.46,92.9691 +149492,148.22,91.7675 +149493,150.62,95.5458 +149494,149.36,94.2327 +149495,148.12,92.96 +149496,146.89,91.7248 +149497,149.24,95.6059 +149498,148,94.2578 +149499,146.78,92.9513 +149500,145.57,91.6829 +149501,147.86,95.665 +149502,146.64,94.2826 +149503,145.44,92.9427 +149504,144.25,91.6419 +149505,146.48,95.7231 +149506,145.28,94.307 +149507,144.1,92.9345 +149508,142.93,91.6019 +149509,145.1,95.7801 +149510,143.92,94.331 +149511,142.76,92.9265 +149512,141.61,91.5629 +149513,143.72,95.8359 +149514,142.56,94.3545 +149515,141.42,92.9188 +149516,140.29,91.5248 +149517,142.34,95.8906 +149518,141.2,94.3777 +149519,140.08,92.9115 +149520,138.97,91.4877 +149521,140.95,95.9442 +149522,139.83,94.4004 +149523,138.74,92.9044 +149524,137.65,91.4517 +149525,139.57,95.9965 +149526,138.47,94.4227 +149527,137.4,92.8976 +149528,136.34,91.4167 +149529,138.18,96.0476 +149530,137.11,94.4445 +149531,136.06,92.8912 +149532,135.02,91.3827 +149533,136.79,96.0975 +149534,135.75,94.4659 +149535,134.72,92.8851 +149536,133.71,91.3499 +149537,135.41,96.1461 +149538,134.38,94.4869 +149539,133.38,92.8793 +149540,132.39,91.3181 +149541,134.02,96.1934 +149542,133.02,94.5074 +149543,132.04,92.8739 +149544,131.08,91.2875 +149545,132.63,96.2394 +149546,131.66,94.5274 +149547,130.7,92.8688 +149548,129.77,91.258 +149549,131.24,96.2841 +149550,130.29,94.5469 +149551,129.36,92.8641 +149552,128.45,91.2297 +149553,129.84,96.3274 +149554,128.93,94.5659 +149555,128.03,92.8597 +149556,127.14,91.2026 +149557,128.45,96.3693 +149558,127.56,94.5845 +149559,126.69,92.8557 +149560,125.83,91.1766 +149561,127.06,96.4099 +149562,126.2,94.6026 +149563,125.35,92.852 +149564,124.52,91.1519 +149565,125.67,96.449 +149566,124.83,94.6201 +149567,124.02,92.8488 +149568,123.21,91.1284 +149569,124.27,96.4867 +149570,123.47,94.6372 +149571,122.68,92.8459 +149572,121.91,91.1062 +149573,122.88,96.5229 +149574,122.1,94.6537 +149575,121.34,92.8434 +149576,120.6,91.0852 +149577,121.48,96.5577 +149578,120.73,94.6697 +149579,120.01,92.8413 +149580,119.29,91.0654 +149581,120.09,96.591 +149582,119.37,94.6852 +149583,118.67,92.8396 +149584,117.98,91.047 +149585,118.69,96.6228 +149586,118,94.7002 +149587,117.33,92.8383 +149588,116.68,91.0299 +149589,117.29,96.6531 +149590,116.64,94.7146 +149591,116,92.8374 +149592,115.37,91.014 +149593,115.89,96.6819 +149594,115.27,94.7285 +149595,114.66,92.8369 +149596,114.07,90.99951 +149597,114.5,96.7091 +149598,113.9,94.7419 +149599,113.33,92.8369 +149600,112.76,90.98633 +149601,113.1,96.7348 +149602,112.53,94.7547 +149603,111.99,92.8372 +149604,111.46,90.97449 +149605,111.7,96.7589 +149606,111.17,94.767 +149607,110.65,92.838 +149608,110.15,90.964 +149609,110.3,96.7815 +149610,109.8,94.7787 +149611,109.32,92.8391 +149612,108.85,90.95487 +149613,108.9,96.8025 +149614,108.43,94.7899 +149615,107.98,92.8407 +149616,107.55,90.9471 +149617,107.5,96.8219 +149618,107.07,94.8005 +149619,106.65,92.8428 +149620,106.25,90.94071 +149621,106.1,96.8397 +149622,105.7,94.8105 +149623,105.31,92.8452 +149624,104.94,90.9357 +149625,104.7,96.8559 +149626,104.33,94.82 +149627,103.98,92.8481 +149628,103.64,90.93208 +149629,103.29,96.8705 +149630,102.96,94.829 +149631,102.64,92.8514 +149632,102.34,90.92984 +149633,101.89,96.8835 +149634,101.59,94.8373 +149635,101.31,92.8552 +149636,101.04,90.92901 +149637,100.49,96.8949 +149638,100.23,94.8451 +149639,99.974,92.8594 +149640,99.735,90.92957 +149641,99.089,96.9046 +149642,98.857,94.8524 +149643,98.639,92.864 +149644,98.433,90.93153 +149645,97.687,96.9128 +149646,97.489,94.859 +149647,97.304,92.8691 +149648,97.132,90.9349 +149649,96.284,96.9193 +149650,96.12,94.8651 +149651,95.97,92.8746 +149652,95.831,90.93968 +149653,94.882,96.9242 +149654,94.752,94.8706 +149655,94.635,92.8805 +149656,94.53,90.94586 +149657,93.479,96.9274 +149658,93.383,94.8756 +149659,93.3,92.8869 +149660,93.229,90.95345 +149661,92.076,96.9291 +149662,92.015,94.88 +149663,91.966,92.8937 +149664,91.928,90.96245 +149665,90.674,96.9291 +149666,90.646,94.8838 +149667,90.631,92.901 +149668,90.626,90.97286 +149669,89.271,96.9276 +149670,89.278,94.8871 +149671,89.296,92.9087 +149672,89.325,90.98467 +149673,87.868,96.9244 +149674,87.909,94.8898 +149675,87.962,92.9168 +149676,88.024,90.99788 +149677,86.465,96.9196 +149678,86.541,94.8919 +149679,86.627,92.9253 +149680,86.723,91.0125 +149681,85.063,96.9132 +149682,85.172,94.8935 +149683,85.292,92.9343 +149684,85.422,91.0285 +149685,83.66,96.9052 +149686,83.804,94.8945 +149687,83.957,92.9438 +149688,84.12,91.0459 +149689,82.258,96.8956 +149690,82.435,94.8949 +149691,82.623,92.9536 +149692,82.818,91.0647 +149693,80.856,96.8845 +149694,81.067,94.8948 +149695,81.288,92.9639 +149696,81.517,91.0848 +149697,79.454,96.8718 +149698,79.699,94.8942 +149699,79.953,92.9746 +149700,80.215,91.1064 +149701,78.052,96.8575 +149702,78.33,94.893 +149703,78.617,92.9857 +149704,78.912,91.1293 +149705,76.65,96.8417 +149706,76.962,94.8912 +149707,77.282,92.9972 +149708,77.61,91.1535 +149709,75.249,96.8243 +149710,75.594,94.8889 +149711,75.947,93.0092 +149712,76.307,91.1791 +149713,73.848,96.8054 +149714,74.226,94.886 +149715,74.611,93.0216 +149716,75.004,91.206 +149717,72.447,96.785 +149718,72.858,94.8827 +149719,73.276,93.0343 +149720,73.7,91.2343 +149721,71.047,96.7631 +149722,71.49,94.8788 +149723,71.94,93.0475 +149724,72.396,91.2639 +149725,69.647,96.7397 +149726,70.123,94.8743 +149727,70.604,93.0611 +149728,71.092,91.2948 +149729,68.248,96.7149 +149730,68.755,94.8694 +149731,69.268,93.0751 +149732,69.787,91.327 +149733,66.849,96.6886 +149734,67.388,94.8639 +149735,67.932,93.0894 +149736,68.482,91.3604 +149737,65.45,96.6609 +149738,66.02,94.8579 +149739,66.596,93.1042 +149740,67.176,91.3952 +149741,64.052,96.6317 +149742,64.653,94.8514 +149743,65.259,93.1193 +149744,65.87,91.4311 +149745,62.654,96.6012 +149746,63.286,94.8444 +149747,63.923,93.1348 +149748,64.563,91.4684 +149749,61.257,96.5693 +149750,61.92,94.8369 +149751,62.586,93.1507 +149752,63.256,91.5068 +149753,59.861,96.536 +149754,60.553,94.8289 +149755,61.249,93.167 +149756,61.948,91.5465 +149757,58.465,96.5014 +149758,59.187,94.8204 +149759,59.912,93.1836 +149760,60.64,91.5873 +149761,57.07,96.4655 +149762,57.82,94.8114 +149763,58.574,93.2005 +149764,59.331,91.6293 +149765,55.675,96.4282 +149766,56.454,94.802 +149767,57.236,93.2178 +149768,58.021,91.6725 +149769,54.281,96.3897 +149770,55.089,94.7921 +149771,55.898,93.2355 +149772,56.711,91.7168 +149773,52.888,96.35 +149774,53.723,94.7818 +149775,54.56,93.2535 +149776,55.4,91.7622 +149777,51.496,96.309 +149778,52.358,94.771 +149779,53.222,93.2718 +149780,54.088,91.8087 +149781,50.104,96.2668 +149782,50.993,94.7597 +149783,51.883,93.2904 +149784,52.776,91.8563 +149785,48.713,96.2235 +149786,49.628,94.7481 +149787,50.544,93.3093 +149788,51.462,91.905 +149789,47.323,96.179 +149790,48.263,94.736 +149791,49.205,93.3286 +149792,50.148,91.9547 +149793,45.933,96.1334 +149794,46.899,94.7235 +149795,47.866,93.3481 +149796,48.834,92.0054 +149797,44.544,96.0866 +149798,45.535,94.7105 +149799,46.526,93.3679 +149800,47.518,92.0571 +149801,43.157,96.0388 +149802,44.171,94.6972 +149803,45.186,93.388 +149804,46.202,92.1097 +149805,41.77,95.99 +149806,42.807,94.6835 +149807,43.846,93.4084 +149808,44.884,92.1633 +149809,40.384,95.9401 +149810,41.444,94.6694 +149811,42.505,93.429 +149812,43.566,92.2179 +149813,38.999,95.8893 +149814,40.081,94.6549 +149815,41.164,93.4499 +149816,42.247,92.2733 +149817,37.614,95.8375 +149818,38.718,94.6401 +149819,39.823,93.4711 +149820,40.927,92.3296 +149821,36.231,95.7847 +149822,37.356,94.6249 +149823,38.481,93.4925 +149824,39.607,92.3867 +149825,34.849,95.7311 +149826,35.994,94.6093 +149827,37.139,93.5141 +149828,38.285,92.4447 +149829,33.467,95.6766 +149830,34.632,94.5934 +149831,35.797,93.5359 +149832,36.962,92.5035 +149833,32.087,95.6212 +149834,33.271,94.5772 +149835,34.455,93.5579 +149836,35.638,92.563 +149837,30.708,95.5651 +149838,31.91,94.5607 +149839,33.112,93.5802 +149840,34.314,92.6232 +149841,29.329,95.5082 +149842,30.549,94.5438 +149843,31.769,93.6026 +149844,32.988,92.6842 +149845,27.952,95.4505 +149846,29.188,94.5267 +149847,30.425,93.6252 +149848,31.661,92.7459 +149849,26.576,95.3921 +149850,27.828,94.5093 +149851,29.081,93.648 +149852,30.334,92.8082 +149853,25.2,95.333 +149854,26.469,94.4916 +149855,27.737,93.6709 +149856,29.005,92.8711 +149857,23.826,95.2733 +149858,25.109,94.4736 +149859,26.392,93.694 +149860,27.675,92.9346 +149861,22.453,95.2129 +149862,23.75,94.4553 +149863,25.048,93.7173 +149864,26.344,92.9987 +149865,21.081,95.152 +149866,22.391,94.4369 +149867,23.702,93.7406 +149868,25.012,93.0634 +149869,19.71,95.0905 +149870,21.033,94.4182 +149871,22.357,93.7641 +149872,23.679,93.1285 +149873,18.34,95.0285 +149874,19.675,94.3992 +149875,21.01,93.7877 +149876,22.345,93.1941 +149877,16.972,94.966 +149878,18.318,94.3801 +149879,19.664,93.8114 +149880,21.01,93.2602 +149881,15.604,94.9031 +149882,16.96,94.3607 +149883,18.317,93.8352 +149884,19.673,93.3266 +149885,14.238,94.8397 +149886,15.603,94.3412 +149887,16.97,93.859 +149888,18.336,93.3935 +149889,12.872,94.7759 +149890,14.247,94.3215 +149891,15.622,93.883 +149892,16.997,93.4607 +149893,11.508,94.7118 +149894,12.891,94.3016 +149895,14.275,93.907 +149896,15.657,93.5282 +149897,10.145,94.6474 +149898,11.535,94.2815 +149899,12.926,93.931 +149900,14.317,93.596 +149901,8.7832,94.5827 +149902,10.18,94.2613 +149903,11.577,93.955 +149904,12.975,93.6641 +149905,7.4226,94.5177 +149906,8.8248,94.241 +149907,10.228,93.9791 +149908,11.631,93.7323 +149909,6.063,94.4525 +149910,7.4703,94.2205 +149911,8.8788,94.0032 +149912,10.287,93.8008 +149913,4.7047,94.3872 +149914,6.1161,94.1999 +149915,7.5288,94.0273 +149916,8.9414,93.8694 +149917,3.3475,94.3217 +149918,4.7623,94.1793 +149919,6.1785,94.0514 +149920,7.5947,93.9381 +149921,1.9915,94.256 +149922,3.4089,94.1585 +149923,4.8278,94.0754 +149924,6.2468,94.0069 +149925,0.6367,94.1903 +149926,2.0558,94.1376 +149927,3.4767,94.0994 +149928,4.8977,94.0758 +149929,359.28,94.1246 +149930,0.70321,94.1167 +149931,2.1252,94.1234 +149932,3.5475,94.1447 +149933,357.93,94.0588 +149934,359.35,94.0958 +149935,0.77333,94.1473 +149936,2.196,94.2136 +149937,356.58,93.993 +149938,358,94.0747 +149939,359.42,94.1712 +149940,0.84343,94.2824 +149941,355.23,93.9273 +149942,356.65,94.0537 +149943,358.07,94.195 +149944,359.49,94.3511 +149945,353.88,93.8617 +149946,355.3,94.0326 +149947,356.72,94.2186 +149948,358.13,94.4198 +149949,352.53,93.7962 +149950,353.95,94.0115 +149951,355.36,94.2422 +149952,356.78,94.4882 +149953,351.19,93.7309 +149954,352.6,93.9905 +149955,354.01,94.2657 +149956,355.42,94.5565 +149957,349.84,93.6657 +149958,351.25,93.9694 +149959,352.65,94.289 +149960,354.06,94.6246 +149961,348.5,93.6008 +149962,349.9,93.9483 +149963,351.3,94.3122 +149964,352.7,94.6924 +149965,347.15,93.5361 +149966,348.55,93.9273 +149967,349.94,94.3353 +149968,351.34,94.7599 +149969,345.81,93.4717 +149970,347.2,93.9063 +149971,348.59,94.3581 +149972,349.98,94.8271 +149973,344.47,93.4076 +149974,345.85,93.8854 +149975,347.23,94.3809 +149976,348.62,94.894 +149977,343.13,93.3439 +149978,344.5,93.8646 +149979,345.88,94.4034 +149980,347.25,94.9604 +149981,341.79,93.2806 +149982,343.15,93.8438 +149983,344.52,94.4257 +149984,345.89,95.0264 +149985,340.45,93.2176 +149986,341.81,93.8231 +149987,343.16,94.4479 +149988,344.52,95.092 +149989,339.12,93.1551 +149990,340.46,93.8025 +149991,341.81,94.4698 +149992,343.15,95.1571 +149993,337.78,93.0931 +149994,339.11,93.7821 +149995,340.45,94.4915 +149996,341.78,95.2216 +149997,336.45,93.0316 +149998,337.77,93.7617 +149999,339.09,94.513 +150000,340.41,95.2856 +150001,335.12,92.9706 +150002,336.42,93.7415 +150003,337.73,94.5342 +150004,339.04,95.349 +150005,333.78,92.9102 +150006,335.08,93.7214 +150007,336.37,94.5551 +150008,337.67,95.4118 +150009,332.45,92.8503 +150010,333.73,93.7015 +150011,335.01,94.5758 +150012,336.3,95.4739 +150013,331.12,92.7911 +150014,332.39,93.6817 +150015,333.65,94.5962 +150016,334.92,95.5354 +150017,329.79,92.7326 +150018,331.04,93.6621 +150019,332.29,94.6164 +150020,333.55,95.5961 +150021,328.47,92.6747 +150022,329.7,93.6427 +150023,330.93,94.6362 +150024,332.17,95.656 +150025,327.14,92.6176 +150026,328.36,93.6234 +150027,329.57,94.6557 +150028,330.79,95.7152 +150029,325.81,92.5611 +150030,327.01,93.6044 +150031,328.21,94.6749 +150032,329.42,95.7736 +150033,324.49,92.5055 +150034,325.67,93.5856 +150035,326.85,94.6937 +150036,328.04,95.8311 +150037,323.17,92.4506 +150038,324.33,93.567 +150039,325.49,94.7123 +150040,326.66,95.8877 +150041,321.84,92.3966 +150042,322.98,93.5486 +150043,324.13,94.7304 +150044,325.27,95.9434 +150045,320.52,92.3434 +150046,321.64,93.5305 +150047,322.76,94.7483 +150048,323.89,95.9982 +150049,319.2,92.291 +150050,320.3,93.5126 +150051,321.4,94.7657 +150052,322.51,96.0521 +150053,317.88,92.2396 +150054,318.96,93.495 +150055,320.04,94.7828 +150056,321.12,96.1049 +150057,316.56,92.1891 +150058,317.62,93.4776 +150059,318.68,94.7994 +150060,319.74,96.1567 +150061,315.24,92.1395 +150062,316.28,93.4605 +150063,317.31,94.8157 +150064,318.35,96.2074 +150065,313.93,92.0909 +150066,314.94,93.4437 +150067,315.95,94.8316 +150068,316.96,96.2571 +150069,312.61,92.0432 +150070,313.6,93.4271 +150071,314.59,94.8471 +150072,315.58,96.3056 +150073,311.29,91.9966 +150074,312.26,93.4109 +150075,313.22,94.8621 +150076,314.19,96.3531 +150077,309.98,91.951 +150078,310.92,93.395 +150079,311.86,94.8767 +150080,312.8,96.3993 +150081,308.66,91.9065 +150082,309.58,93.3794 +150083,310.49,94.8909 +150084,311.41,96.4444 +150085,307.35,91.8631 +150086,308.24,93.3641 +150087,309.13,94.9047 +150088,310.02,96.4883 +150089,306.04,91.8207 +150090,306.9,93.3491 +150091,307.76,94.918 +150092,308.63,96.5309 +150093,304.73,91.7795 +150094,305.56,93.3345 +150095,306.4,94.9308 +150096,307.23,96.5723 +150097,303.42,91.7394 +150098,304.22,93.3202 +150099,305.03,94.9431 +150100,305.84,96.6124 +150101,302.1,91.7004 +150102,302.88,93.3062 +150103,303.66,94.955 +150104,304.45,96.6511 +150105,300.79,91.6626 +150106,301.55,93.2926 +150107,302.3,94.9664 +150108,303.05,96.6886 +150109,299.49,91.626 +150110,300.21,93.2794 +150111,300.93,94.9774 +150112,301.66,96.7247 +150113,298.18,91.5907 +150114,298.87,93.2665 +150115,299.56,94.9878 +150116,300.26,96.7594 +150117,296.87,91.5565 +150118,297.53,93.254 +150119,298.2,94.9977 +150120,298.86,96.7928 +150121,295.56,91.5236 +150122,296.2,93.2418 +150123,296.83,95.0071 +150124,297.47,96.8247 +150125,294.25,91.4919 +150126,294.86,93.2301 +150127,295.46,95.016 +150128,296.07,96.8553 +150129,292.95,91.4615 +150130,293.52,93.2187 +150131,294.1,95.0244 +150132,294.67,96.8843 +150133,291.64,91.4324 +150134,292.19,93.2078 +150135,292.73,95.0323 +150136,293.27,96.9119 +150137,290.34,91.4045 +150138,290.85,93.1972 +150139,291.36,95.0397 +150140,291.87,96.9381 +150141,289.03,91.378 +150142,289.51,93.187 +150143,289.99,95.0465 +150144,290.47,96.9627 +150145,287.73,91.3528 +150146,288.18,93.1772 +150147,288.63,95.0528 +150148,289.07,96.9859 +150149,286.42,91.3289 +150150,286.84,93.1679 +150151,287.26,95.0585 +150152,287.67,97.0075 +150153,285.12,91.3064 +150154,285.5,93.1589 +150155,285.89,95.0637 +150156,286.27,97.0276 +150157,283.81,91.2852 +150158,284.17,93.1504 +150159,284.52,95.0683 +150160,284.87,97.0461 +150161,282.51,91.2654 +150162,282.83,93.1423 +150163,283.15,95.0724 +150164,283.47,97.0631 +150165,281.21,91.2469 +150166,281.5,93.1346 +150167,281.78,95.076 +150168,282.07,97.0785 +150169,279.9,91.2298 +150170,280.16,93.1273 +150171,280.42,95.079 +150172,280.67,97.0923 +150173,278.6,91.2141 +150174,278.83,93.1204 +150175,279.05,95.0814 +150176,279.26,97.1045 +150177,277.3,91.1997 +150178,277.49,93.114 +150179,277.68,95.0833 +150180,277.86,97.1152 +150181,276,91.1868 +150182,276.16,93.108 +150183,276.31,95.0846 +150184,276.46,97.1242 +150185,274.69,91.1752 +150186,274.82,93.1025 +150187,274.94,95.0853 +150188,275.06,97.1316 +150189,273.39,91.1651 +150190,273.48,93.0974 +150191,273.57,95.0855 +150192,273.65,97.1374 +150193,272.09,91.1563 +150194,272.15,93.0927 +150195,272.2,95.0851 +150196,272.25,97.1416 +150197,270.79,91.149 +150198,270.81,93.0884 +150199,270.83,95.0841 +150200,270.85,97.1442 +150201,269.49,91.1431 +150202,269.48,93.0846 +150203,269.47,95.0826 +150204,269.45,97.1452 +150205,268.19,91.1386 +150206,268.14,93.0812 +150207,268.1,95.0805 +150208,268.04,97.1445 +150209,266.88,91.1354 +150210,266.81,93.0783 +150211,266.73,95.0778 +150212,266.64,97.1422 +150213,265.58,91.1337 +150214,265.47,93.0758 +150215,265.36,95.0745 +150216,265.24,97.1382 +150217,264.28,91.1335 +150218,264.14,93.0737 +150219,263.99,95.0707 +150220,263.83,97.1326 +150221,262.98,91.1346 +150222,262.8,93.0721 +150223,262.62,95.0663 +150224,262.43,97.1254 +150225,261.68,91.1371 +150226,261.47,93.0709 +150227,261.25,95.0613 +150228,261.03,97.1166 +150229,260.37,91.141 +150230,260.13,93.0702 +150231,259.88,95.0558 +150232,259.63,97.1062 +150233,259.07,91.1464 +150234,258.8,93.0698 +150235,258.52,95.0497 +150236,258.23,97.0941 +150237,257.77,91.1531 +150238,257.46,93.0699 +150239,257.15,95.043 +150240,256.82,97.0804 +150241,256.47,91.1612 +150242,256.13,93.0705 +150243,255.78,95.0358 +150244,255.42,97.0651 +150245,255.16,91.1707 +150246,254.79,93.0715 +150247,254.41,95.028 +150248,254.02,97.0482 +150249,253.86,91.1816 +150250,253.45,93.0729 +150251,253.04,95.0196 +150252,252.62,97.0297 +150253,252.55,91.1938 +150254,252.12,93.0747 +150255,251.67,95.0107 +150256,251.22,97.0097 +150257,251.25,91.2074 +150258,250.78,93.0769 +150259,250.31,95.0013 +150260,249.82,96.988 +150261,249.95,91.2224 +150262,249.45,93.0796 +150263,248.94,94.9912 +150264,248.42,96.9648 +150265,248.64,91.2387 +150266,248.11,93.0827 +150267,247.57,94.9807 +150268,247.02,96.9401 +150269,247.34,91.2563 +150270,246.77,93.0862 +150271,246.2,94.9696 +150272,245.62,96.9138 +150273,246.03,91.2753 +150274,245.44,93.0901 +150275,244.84,94.9579 +150276,244.22,96.886 +150277,244.72,91.2956 +150278,244.1,93.0944 +150279,243.47,94.9457 +150280,242.83,96.8566 +150281,243.42,91.3172 +150282,242.76,93.0991 +150283,242.1,94.933 +150284,241.43,96.8258 +150285,242.11,91.3401 +150286,241.43,93.1042 +150287,240.74,94.9198 +150288,240.03,96.7934 +150289,240.8,91.3642 +150290,240.09,93.1097 +150291,239.37,94.906 +150292,238.64,96.7596 +150293,239.49,91.3896 +150294,238.75,93.1156 +150295,238,94.8917 +150296,237.24,96.7244 +150297,238.19,91.4163 +150298,237.42,93.1218 +150299,236.64,94.8769 +150300,235.85,96.6877 +150301,236.88,91.4442 +150302,236.08,93.1285 +150303,235.27,94.8616 +150304,234.45,96.6496 +150305,235.57,91.4733 +150306,234.74,93.1355 +150307,233.91,94.8459 +150308,233.06,96.6101 +150309,234.25,91.5036 +150310,233.4,93.1429 +150311,232.54,94.8296 +150312,231.67,96.5692 +150313,232.94,91.5351 +150314,232.06,93.1506 +150315,231.18,94.8128 +150316,230.27,96.5269 +150317,231.63,91.5678 +150318,230.73,93.1587 +150319,229.81,94.7955 +150320,228.88,96.4834 +150321,230.32,91.6017 +150322,229.39,93.1671 +150323,228.45,94.7778 +150324,227.49,96.4385 +150325,229,91.6366 +150326,228.05,93.1759 +150327,227.08,94.7596 +150328,226.1,96.3923 +150329,227.69,91.6727 +150330,226.71,93.185 +150331,225.72,94.7409 +150332,224.71,96.3448 +150333,226.37,91.7098 +150334,225.37,93.1945 +150335,224.35,94.7218 +150336,223.33,96.2961 +150337,225.06,91.7481 +150338,224.03,93.2042 +150339,222.99,94.7023 +150340,221.94,96.2462 +150341,223.74,91.7874 +150342,222.69,93.2143 +150343,221.63,94.6823 +150344,220.55,96.195 +150345,222.42,91.8277 +150346,221.35,93.2247 +150347,220.26,94.6618 +150348,219.17,96.1427 +150349,221.11,91.869 +150350,220.01,93.2354 +150351,218.9,94.641 +150352,217.78,96.0893 +150353,219.79,91.9113 +150354,218.67,93.2464 +150355,217.54,94.6197 +150356,216.4,96.0347 +150357,218.47,91.9546 +150358,217.33,93.2576 +150359,216.18,94.5981 +150360,215.02,95.9791 +150361,217.15,91.9988 +150362,215.99,93.2691 +150363,214.82,94.576 +150364,213.63,95.9223 +150365,215.82,92.044 +150366,214.64,93.2809 +150367,213.45,94.5536 +150368,212.25,95.8646 +150369,214.5,92.09 +150370,213.3,93.293 +150371,212.09,94.5308 +150372,210.87,95.8058 +150373,213.18,92.1369 +150374,211.96,93.3053 +150375,210.73,94.5076 +150376,209.49,95.746 +150377,211.85,92.1846 +150378,210.62,93.3178 +150379,209.37,94.484 +150380,208.12,95.6853 +150381,210.52,92.2332 +150382,209.27,93.3306 +150383,208.01,94.4601 +150384,206.74,95.6237 +150385,209.2,92.2825 +150386,207.93,93.3436 +150387,206.65,94.4359 +150388,205.36,95.5612 +150389,207.87,92.3326 +150390,206.59,93.3568 +150391,205.29,94.4113 +150392,203.99,95.4978 +150393,206.54,92.3834 +150394,205.24,93.3702 +150395,203.93,94.3864 +150396,202.62,95.4336 +150397,205.21,92.435 +150398,203.9,93.3838 +150399,202.58,94.3612 +150400,201.24,95.3686 +150401,203.88,92.4872 +150402,202.55,93.3976 +150403,201.22,94.3357 +150404,199.87,95.3029 +150405,202.55,92.5401 +150406,201.21,93.4116 +150407,199.86,94.3099 +150408,198.5,95.2364 +150409,201.21,92.5936 +150410,199.86,93.4257 +150411,198.5,94.2839 +150412,197.13,95.1692 +150413,199.88,92.6477 +150414,198.52,93.44 +150415,197.15,94.2575 +150416,195.77,95.1013 +150417,198.54,92.7023 +150418,197.17,93.4544 +150419,195.79,94.2309 +150420,194.4,95.0328 +150421,197.21,92.7575 +150422,195.82,93.469 +150423,194.43,94.2041 +150424,193.03,94.9637 +150425,195.87,92.8132 +150426,194.48,93.4837 +150427,193.08,94.177 +150428,191.67,94.894 +150429,194.53,92.8694 +150430,193.13,93.4985 +150431,191.72,94.1497 +150432,190.31,94.8238 +150433,193.19,92.926 +150434,191.78,93.5134 +150435,190.37,94.1222 +150436,188.94,94.7531 +150437,191.85,92.9831 +150438,190.43,93.5284 +150439,189.01,94.0945 +150440,187.58,94.6819 +150441,190.51,93.0405 +150442,189.09,93.5434 +150443,187.66,94.0665 +150444,186.22,94.6103 +150445,189.16,93.0982 +150446,187.74,93.5586 +150447,186.3,94.0384 +150448,184.87,94.5383 +150449,187.82,93.1563 +150450,186.39,93.5738 +150451,184.95,94.0102 +150452,183.51,94.4659 +150453,186.47,93.2147 +150454,185.04,93.589 +150455,183.6,93.9817 +150456,182.15,94.3932 +150457,185.12,93.2733 +150458,183.69,93.6043 +150459,182.25,93.9532 +150460,180.8,94.3202 +150461,183.78,93.3322 +150462,182.34,93.6197 +150463,180.89,93.9244 +150464,179.44,94.2469 +150465,182.43,93.3913 +150466,180.99,93.635 +150467,179.54,93.8956 +150468,178.09,94.1734 +150469,181.08,93.4505 +150470,179.64,93.6503 +150471,178.19,93.8667 +150472,176.74,94.0997 +150473,179.72,93.5098 +150474,178.29,93.6657 +150475,176.84,93.8376 +150476,175.39,94.0259 +150477,178.37,93.5692 +150478,176.93,93.681 +150479,175.49,93.8084 +150480,174.04,93.9519 +150481,177.02,93.6287 +150482,175.58,93.6963 +150483,174.14,93.7792 +150484,172.69,93.8778 +150485,175.66,93.6882 +150486,174.23,93.7116 +150487,172.79,93.7499 +150488,171.35,93.8037 +150489,174.31,93.7478 +150490,172.88,93.7268 +150491,171.44,93.7206 +150492,170,93.7296 +150493,172.95,93.8072 +150494,171.52,93.7419 +150495,170.09,93.6912 +150496,168.66,93.6554 +150497,171.59,93.8666 +150498,170.17,93.757 +150499,168.74,93.6617 +150500,167.31,93.5813 +150501,170.23,93.9259 +150502,168.82,93.772 +150503,167.4,93.6323 +150504,165.97,93.5073 +150505,168.87,93.9851 +150506,167.46,93.7869 +150507,166.05,93.6028 +150508,164.63,93.4334 +150509,167.51,94.0441 +150510,166.11,93.8016 +150511,164.7,93.5733 +150512,163.29,93.3597 +150513,166.14,94.1029 +150514,164.75,93.8163 +150515,163.35,93.5439 +150516,161.95,93.2861 +150517,164.78,94.1614 +150518,163.4,93.8308 +150519,162.01,93.5145 +150520,160.62,93.2127 +150521,163.41,94.2197 +150522,162.04,93.8452 +150523,160.66,93.4851 +150524,159.28,93.1396 +150525,162.04,94.2777 +150526,160.68,93.8595 +150527,159.32,93.4557 +150528,157.95,93.0668 +150529,160.68,94.3353 +150530,159.33,93.8736 +150531,157.97,93.4264 +150532,156.61,92.9943 +150533,159.31,94.3926 +150534,157.97,93.8875 +150535,156.63,93.3972 +150536,155.28,92.9221 +150537,157.94,94.4494 +150538,156.61,93.9012 +150539,155.28,93.368 +150540,153.95,92.8503 +150541,156.57,94.5058 +150542,155.25,93.9148 +150543,153.94,93.3389 +150544,152.62,92.7789 +150545,155.19,94.5618 +150546,153.9,93.9281 +150547,152.59,93.31 +150548,151.29,92.7079 +150549,153.82,94.6172 +150550,152.54,93.9412 +150551,151.25,93.2811 +150552,149.96,92.6375 +150553,152.44,94.6722 +150554,151.18,93.9541 +150555,149.91,93.2524 +150556,148.63,92.5675 +150557,151.07,94.7265 +150558,149.82,93.9668 +150559,148.57,93.2238 +150560,147.31,92.498 +150561,149.69,94.7803 +150562,148.46,93.9792 +150563,147.22,93.1953 +150564,145.98,92.4291 +150565,148.31,94.8334 +150566,147.1,93.9913 +150567,145.88,93.167 +150568,144.66,92.3609 +150569,146.94,94.8859 +150570,145.74,94.0032 +150571,144.54,93.1388 +150572,143.34,92.2932 +150573,145.56,94.9376 +150574,144.38,94.0148 +150575,143.2,93.1109 +150576,142.02,92.2262 +150577,144.17,94.9887 +150578,143.02,94.0261 +150579,141.86,93.0831 +150580,140.69,92.1598 +150581,142.79,95.039 +150582,141.66,94.0371 +150583,140.52,93.0555 +150584,139.37,92.0942 +150585,141.41,95.0885 +150586,140.3,94.0478 +150587,139.18,93.0281 +150588,138.06,92.0293 +150589,140.03,95.1372 +150590,138.94,94.0582 +150591,137.84,93.0009 +150592,136.74,91.9652 +150593,138.64,95.185 +150594,137.57,94.0683 +150595,136.5,92.9739 +150596,135.42,91.9018 +150597,137.26,95.232 +150598,136.21,94.078 +150599,135.16,92.9471 +150600,134.1,91.8393 +150601,135.87,95.2781 +150602,134.85,94.0874 +150603,133.82,92.9206 +150604,132.79,91.7776 +150605,134.48,95.3232 +150606,133.49,94.0964 +150607,132.48,92.8944 +150608,131.47,91.7168 +150609,133.09,95.3674 +150610,132.12,94.1051 +150611,131.15,92.8684 +150612,130.16,91.6569 +150613,131.71,95.4106 +150614,130.76,94.1134 +150615,129.81,92.8426 +150616,128.85,91.5979 +150617,130.32,95.4527 +150618,129.4,94.1213 +150619,128.47,92.8172 +150620,127.54,91.5398 +150621,128.93,95.4939 +150622,128.03,94.1288 +150623,127.13,92.792 +150624,126.23,91.4827 +150625,127.53,95.5339 +150626,126.67,94.1359 +150627,125.8,92.7671 +150628,124.92,91.4266 +150629,126.14,95.5729 +150630,125.3,94.1426 +150631,124.46,92.7425 +150632,123.61,91.3715 +150633,124.75,95.6108 +150634,123.94,94.1489 +150635,123.12,92.7182 +150636,122.3,91.3174 +150637,123.36,95.6475 +150638,122.58,94.1548 +150639,121.79,92.6942 +150640,120.99,91.2644 +150641,121.96,95.683 +150642,121.21,94.1602 +150643,120.45,92.6706 +150644,119.68,91.2125 +150645,120.57,95.7174 +150646,119.85,94.1652 +150647,119.12,92.6472 +150648,118.38,91.1616 +150649,119.17,95.7505 +150650,118.48,94.1698 +150651,117.78,92.6243 +150652,117.07,91.1119 +150653,117.77,95.7824 +150654,117.12,94.1739 +150655,116.44,92.6016 +150656,115.76,91.0633 +150657,116.38,95.813 +150658,115.75,94.1775 +150659,115.11,92.5793 +150660,114.46,91.0159 +150661,114.98,95.8424 +150662,114.38,94.1807 +150663,113.77,92.5573 +150664,113.15,90.96961 +150665,113.58,95.8704 +150666,113.02,94.1834 +150667,112.44,92.5357 +150668,111.85,90.92452 +150669,112.19,95.8971 +150670,111.65,94.1857 +150671,111.11,92.5145 +150672,110.55,90.88064 +150673,110.79,95.9225 +150674,110.29,94.1874 +150675,109.77,92.4936 +150676,109.24,90.83798 +150677,109.39,95.9465 +150678,108.92,94.1887 +150679,108.44,92.4732 +150680,107.94,90.79655 +150681,107.99,95.9691 +150682,107.55,94.1895 +150683,107.1,92.4531 +150684,106.64,90.75638 +150685,106.59,95.9904 +150686,106.19,94.1897 +150687,105.77,92.4334 +150688,105.34,90.71746 +150689,105.19,96.0102 +150690,104.82,94.1895 +150691,104.44,92.414 +150692,104.04,90.67982 +150693,103.79,96.0286 +150694,103.45,94.1887 +150695,103.1,92.3951 +150696,102.74,90.64348 +150697,102.39,96.0455 +150698,102.09,94.1875 +150699,101.77,92.3766 +150700,101.44,90.60843 +150701,100.98,96.061 +150702,100.72,94.1857 +150703,100.44,92.3585 +150704,100.14,90.57469 +150705,99.584,96.075 +150706,99.352,94.1834 +150707,99.103,92.3408 +150708,98.838,90.54228 +150709,98.182,96.0875 +150710,97.985,94.1806 +150711,97.77,92.3235 +150712,97.539,90.5112 +150713,96.78,96.0985 +150714,96.618,94.1772 +150715,96.437,92.3066 +150716,96.24,90.48147 +150717,95.378,96.108 +150718,95.251,94.1733 +150719,95.105,92.2901 +150720,94.941,90.45308 +150721,93.976,96.116 +150722,93.884,94.1689 +150723,93.772,92.2741 +150724,93.642,90.42606 +150725,92.573,96.1224 +150726,92.517,94.1639 +150727,92.439,92.2585 +150728,92.344,90.4004 +150729,91.171,96.1273 +150730,91.149,94.1584 +150731,91.107,92.2433 +150732,91.045,90.37611 +150733,89.769,96.1307 +150734,89.782,94.1523 +150735,89.774,92.2285 +150736,89.747,90.35321 +150737,88.366,96.1325 +150738,88.415,94.1457 +150739,88.442,92.2142 +150740,88.449,90.33168 +150741,86.964,96.1327 +150742,87.048,94.1386 +150743,87.109,92.2003 +150744,87.151,90.31155 +150745,85.562,96.1314 +150746,85.681,94.1309 +150747,85.777,92.1869 +150748,85.853,90.29281 +150749,84.159,96.1285 +150750,84.314,94.1226 +150751,84.444,92.1738 +150752,84.555,90.27546 +150753,82.757,96.1239 +150754,82.947,94.1138 +150755,83.112,92.1613 +150756,83.256,90.25951 +150757,81.355,96.1179 +150758,81.58,94.1044 +150759,81.779,92.1491 +150760,81.958,90.24496 +150761,79.953,96.1102 +150762,80.213,94.0945 +150763,80.447,92.1374 +150764,80.66,90.2318 +150765,78.552,96.1009 +150766,78.846,94.0841 +150767,79.115,92.1261 +150768,79.362,90.22005 +150769,77.15,96.0901 +150770,77.479,94.073 +150771,77.782,92.1153 +150772,78.063,90.2097 +150773,75.749,96.0776 +150774,76.112,94.0614 +150775,76.45,92.1049 +150776,76.764,90.20075 +150777,74.348,96.0636 +150778,74.746,94.0493 +150779,75.117,92.095 +150780,75.465,90.19319 +150781,72.947,96.048 +150782,73.379,94.0366 +150783,73.784,92.0855 +150784,74.166,90.18703 +150785,71.547,96.0308 +150786,72.013,94.0234 +150787,72.452,92.0764 +150788,72.867,90.18226 +150789,70.147,96.012 +150790,70.647,94.0096 +150791,71.119,92.0677 +150792,71.567,90.17888 +150793,68.748,95.9917 +150794,69.281,93.9953 +150795,69.786,92.0595 +150796,70.267,90.17688 +150797,67.348,95.9697 +150798,67.915,93.9804 +150799,68.453,92.0517 +150800,68.967,90.17625 +150801,65.95,95.9462 +150802,66.549,93.965 +150803,67.12,92.0444 +150804,67.666,90.177 +150805,64.552,95.9212 +150806,65.184,93.949 +150807,65.787,92.0375 +150808,66.365,90.17911 +150809,63.154,95.8946 +150810,63.818,93.9325 +150811,64.454,92.031 +150812,65.064,90.18258 +150813,61.757,95.8665 +150814,62.453,93.9154 +150815,63.12,92.0249 +150816,63.762,90.18739 +150817,60.36,95.8368 +150818,61.088,93.8979 +150819,61.787,92.0193 +150820,62.46,90.19355 +150821,58.964,95.8056 +150822,59.724,93.8797 +150823,60.453,92.014 +150824,61.157,90.20104 +150825,57.569,95.7729 +150826,58.359,93.8611 +150827,59.119,92.0092 +150828,59.854,90.20985 +150829,56.174,95.7387 +150830,56.995,93.8419 +150831,57.785,92.0048 +150832,58.55,90.21996 +150833,54.78,95.703 +150834,55.631,93.8223 +150835,56.451,92.0008 +150836,57.245,90.23138 +150837,53.387,95.6658 +150838,54.267,93.8021 +150839,55.116,91.9972 +150840,55.94,90.24408 +150841,51.994,95.6272 +150842,52.903,93.7814 +150843,53.782,91.994 +150844,54.635,90.25806 +150845,50.602,95.5871 +150846,51.54,93.7602 +150847,52.447,91.9912 +150848,53.329,90.2733 +150849,49.211,95.5456 +150850,50.177,93.7384 +150851,51.112,91.9888 +150852,52.022,90.28979 +150853,47.82,95.5027 +150854,48.814,93.7162 +150855,49.777,91.9867 +150856,50.714,90.3075 +150857,46.431,95.4584 +150858,47.451,93.6935 +150859,48.441,91.9851 +150860,49.406,90.32644 +150861,45.042,95.4127 +150862,46.089,93.6704 +150863,47.106,91.9838 +150864,48.097,90.34658 +150865,43.654,95.3657 +150866,44.727,93.6467 +150867,45.77,91.9829 +150868,46.787,90.3679 +150869,42.267,95.3173 +150870,43.365,93.6226 +150871,44.434,91.9823 +150872,45.477,90.39039 +150873,40.881,95.2677 +150874,42.004,93.598 +150875,43.097,91.9821 +150876,44.165,90.41403 +150877,39.495,95.2167 +150878,40.643,93.5729 +150879,41.761,91.9822 +150880,42.853,90.43881 +150881,38.111,95.1644 +150882,39.282,93.5474 +150883,40.424,91.9827 +150884,41.54,90.46469 +150885,36.728,95.1109 +150886,37.922,93.5215 +150887,39.087,91.9836 +150888,40.227,90.49168 +150889,35.345,95.0561 +150890,36.562,93.4951 +150891,37.749,91.9847 +150892,38.912,90.51974 +150893,33.964,95.0002 +150894,35.202,93.4683 +150895,36.412,91.9862 +150896,37.596,90.54885 +150897,32.583,94.9431 +150898,33.843,93.4411 +150899,35.074,91.988 +150900,36.28,90.579 +150901,31.204,94.8848 +150902,32.484,93.4134 +150903,33.736,91.9901 +150904,34.963,90.61016 +150905,29.826,94.8254 +150906,31.125,93.3854 +150907,32.397,91.9925 +150908,33.644,90.64231 +150909,28.448,94.7648 +150910,29.767,93.3569 +150911,31.058,91.9952 +150912,32.325,90.67544 +150913,27.072,94.7032 +150914,28.409,93.3281 +150915,29.719,91.9982 +150916,31.005,90.7095 +150917,25.697,94.6406 +150918,27.052,93.2988 +150919,28.379,92.0015 +150920,29.684,90.74449 +150921,24.323,94.5769 +150922,25.695,93.2692 +150923,27.04,92.005 +150924,28.361,90.78038 +150925,22.95,94.5122 +150926,24.338,93.2393 +150927,25.7,92.0088 +150928,27.038,90.81715 +150929,21.578,94.4465 +150930,22.982,93.209 +150931,24.359,92.0129 +150932,25.714,90.85476 +150933,20.208,94.3799 +150934,21.626,93.1783 +150935,23.018,92.0172 +150936,24.388,90.89321 +150937,18.838,94.3124 +150938,20.27,93.1473 +150939,21.677,92.0217 +150940,23.062,90.93245 +150941,17.47,94.244 +150942,18.915,93.116 +150943,20.336,92.0265 +150944,21.734,90.97246 +150945,16.103,94.1748 +150946,17.56,93.0844 +150947,18.994,92.0315 +150948,20.406,91.0132 +150949,14.737,94.1048 +150950,16.206,93.0524 +150951,17.652,92.0367 +150952,19.076,91.0547 +150953,13.372,94.0339 +150954,14.852,93.0202 +150955,16.309,92.042 +150956,17.745,91.0969 +150957,12.009,93.9623 +150958,13.498,92.9877 +150959,14.966,92.0476 +150960,16.413,91.1397 +150961,10.646,93.89 +150962,12.145,92.9549 +150963,13.623,92.0534 +150964,15.08,91.1832 +150965,9.2852,93.8169 +150966,10.793,92.9218 +150967,12.279,92.0593 +150968,13.746,91.2273 +150969,7.9253,93.7432 +150970,9.4406,92.8885 +150971,10.935,92.0654 +150972,12.41,91.272 +150973,6.5666,93.6689 +150974,8.0889,92.8549 +150975,9.591,92.0716 +150976,11.074,91.3172 +150977,5.2092,93.594 +150978,6.7375,92.8211 +150979,8.2463,92.078 +150980,9.7362,91.363 +150981,3.853,93.5185 +150982,5.3866,92.7871 +150983,6.9012,92.0845 +150984,8.3972,91.4092 +150985,2.4981,93.4425 +150986,4.0362,92.7528 +150987,5.5557,92.0912 +150988,7.0571,91.4559 +150989,1.1444,93.366 +150990,2.6862,92.7184 +150991,4.2099,92.0979 +150992,5.7158,91.5031 +150993,359.79,93.289 +150994,1.3366,92.6837 +150995,2.8637,92.1048 +150996,4.3733,91.5507 +150997,358.44,93.2116 +150998,359.99,92.6489 +150999,1.5171,92.1117 +151000,3.0297,91.5986 +151001,357.09,93.1338 +151002,358.64,92.6139 +151003,0.17009,92.1187 +151004,1.6848,91.6469 +151005,355.74,93.0556 +151006,357.29,92.5788 +151007,358.82,92.1258 +151008,0.33865,91.6955 +151009,354.39,92.9771 +151010,355.94,92.5435 +151011,357.47,92.133 +151012,358.99,91.7443 +151013,353.05,92.8983 +151014,354.6,92.508 +151015,356.13,92.1401 +151016,357.64,91.7935 +151017,351.7,92.8192 +151018,353.25,92.4725 +151019,354.78,92.1474 +151020,356.29,91.8428 +151021,350.36,92.74 +151022,351.9,92.4368 +151023,353.43,92.1546 +151024,354.94,91.8924 +151025,349.02,92.6605 +151026,350.56,92.401 +151027,352.08,92.1619 +151028,353.59,91.9421 +151029,347.68,92.5808 +151030,349.21,92.3652 +151031,350.73,92.1692 +151032,352.24,91.9919 +151033,346.34,92.5011 +151034,347.87,92.3292 +151035,349.38,92.1765 +151036,350.88,92.0418 +151037,345,92.4212 +151038,346.52,92.2932 +151039,348.03,92.1837 +151040,349.53,92.0918 +151041,343.66,92.3413 +151042,345.18,92.2571 +151043,346.68,92.1909 +151044,348.17,92.1418 +151045,342.32,92.2614 +151046,343.83,92.221 +151047,345.33,92.1981 +151048,346.81,92.1918 +151049,340.99,92.1814 +151050,342.49,92.1848 +151051,343.98,92.2053 +151052,345.45,92.2418 +151053,339.66,92.1016 +151054,341.15,92.1487 +151055,342.62,92.2124 +151056,344.09,92.2918 +151057,338.32,92.0218 +151058,339.8,92.1125 +151059,341.27,92.2194 +151060,342.73,92.3416 +151061,336.99,91.9421 +151062,338.46,92.0763 +151063,339.92,92.2263 +151064,341.37,92.3913 +151065,335.66,91.8625 +151066,337.12,92.0401 +151067,338.57,92.2331 +151068,340,92.4408 +151069,334.33,91.7832 +151070,335.78,92.0039 +151071,337.21,92.2399 +151072,338.64,92.4902 +151073,333.01,91.704 +151074,334.44,91.9678 +151075,335.86,92.2465 +151076,337.27,92.5393 +151077,331.68,91.6251 +151078,333.1,91.9317 +151079,334.51,92.253 +151080,335.9,92.5881 +151081,330.35,91.5465 +151082,331.76,91.8956 +151083,333.15,92.2594 +151084,334.53,92.6367 +151085,329.03,91.4682 +151086,330.42,91.8597 +151087,331.8,92.2656 +151088,333.16,92.685 +151089,327.71,91.3902 +151090,329.08,91.8237 +151091,330.44,92.2716 +151092,331.79,92.7329 +151093,326.38,91.3126 +151094,327.74,91.7879 +151095,329.09,92.2775 +151096,330.42,92.7804 +151097,325.06,91.2354 +151098,326.4,91.7522 +151099,327.73,92.2832 +151100,329.05,92.8275 +151101,323.74,91.1586 +151102,325.06,91.7166 +151103,326.37,92.2888 +151104,327.67,92.8741 +151105,322.43,91.0823 +151106,323.73,91.6811 +151107,325.02,92.2941 +151108,326.3,92.9203 +151109,321.11,91.0065 +151110,322.39,91.6457 +151111,323.66,92.2992 +151112,324.92,92.966 +151113,319.79,90.93128 +151114,321.05,91.6105 +151115,322.3,92.3041 +151116,323.54,93.0111 +151117,318.48,90.85658 +151118,319.72,91.5754 +151119,320.95,92.3088 +151120,322.16,93.0557 +151121,317.16,90.78247 +151122,318.38,91.5405 +151123,319.59,92.3132 +151124,320.79,93.0996 +151125,315.85,90.70897 +151126,317.04,91.5058 +151127,318.23,92.3174 +151128,319.4,93.143 +151129,314.54,90.63613 +151130,315.71,91.4712 +151131,316.87,92.3214 +151132,318.02,93.1857 +151133,313.22,90.56396 +151134,314.37,91.4368 +151135,315.51,92.325 +151136,316.64,93.2277 +151137,311.91,90.49249 +151138,313.04,91.4026 +151139,314.15,92.3284 +151140,315.26,93.2689 +151141,310.6,90.42175 +151142,311.7,91.3686 +151143,312.79,92.3315 +151144,313.87,93.3094 +151145,309.3,90.35178 +151146,310.37,91.3349 +151147,311.44,92.3343 +151148,312.49,93.3492 +151149,307.99,90.28259 +151150,309.04,91.3013 +151151,310.08,92.3368 +151152,311.1,93.3881 +151153,306.68,90.21421 +151154,307.7,91.268 +151155,308.72,92.339 +151156,309.71,93.4263 +151157,305.38,90.14666 +151158,306.37,91.235 +151159,307.35,92.3408 +151160,308.33,93.4635 +151161,304.07,90.079984 +151162,305.04,91.2022 +151163,305.99,92.3424 +151164,306.94,93.4999 +151165,302.77,90.014192 +151166,303.71,91.1696 +151167,304.63,92.3435 +151168,305.55,93.5353 +151169,301.46,89.949312 +151170,302.37,91.1374 +151171,303.27,92.3444 +151172,304.16,93.5698 +151173,300.16,89.88537 +151174,301.04,91.1054 +151175,301.91,92.3449 +151176,302.77,93.6034 +151177,298.86,89.82238 +151178,299.71,91.0737 +151179,300.55,92.345 +151180,301.37,93.636 +151181,297.56,89.76038 +151182,298.38,91.0423 +151183,299.19,92.3447 +151184,299.98,93.6675 +151185,296.26,89.69938 +151186,297.05,91.0111 +151187,297.83,92.3441 +151188,298.59,93.698 +151189,294.96,89.6394 +151190,295.72,90.98035 +151191,296.46,92.343 +151192,297.2,93.7274 +151193,293.66,89.58048 +151194,294.39,90.94986 +151195,295.1,92.3416 +151196,295.8,93.7558 +151197,292.36,89.52261 +151198,293.06,90.9197 +151199,293.74,92.3398 +151200,294.41,93.783 +151201,291.06,89.46584 +151202,291.73,90.88988 +151203,292.38,92.3375 +151204,293.01,93.8091 +151205,289.76,89.41017 +151206,290.4,90.86039 +151207,291.01,92.3349 +151208,291.61,93.8341 +151209,288.47,89.35562 +151210,289.07,90.83124 +151211,289.65,92.3318 +151212,290.22,93.8579 +151213,287.17,89.30222 +151214,287.74,90.80245 +151215,288.29,92.3283 +151216,288.82,93.8804 +151217,285.87,89.24998 +151218,286.41,90.77401 +151219,286.93,92.3243 +151220,287.42,93.9018 +151221,284.58,89.19891 +151222,285.08,90.74594 +151223,285.56,92.3199 +151224,286.02,93.9219 +151225,283.28,89.14904 +151226,283.75,90.71823 +151227,284.2,92.3151 +151228,284.63,93.9408 +151229,281.99,89.10038 +151230,282.42,90.69091 +151231,282.84,92.3098 +151232,283.23,93.9584 +151233,280.7,89.05294 +151234,281.09,90.66396 +151235,281.47,92.304 +151236,281.83,93.9746 +151237,279.4,89.00673 +151238,279.77,90.63739 +151239,280.11,92.2978 +151240,280.43,93.9896 +151241,278.11,88.9618 +151242,278.44,90.61122 +151243,278.74,92.2911 +151244,279.03,94.0033 +151245,276.82,88.9181 +151246,277.11,90.58544 +151247,277.38,92.2839 +151248,277.63,94.0156 +151249,275.52,88.8757 +151250,275.78,90.56005 +151251,276.02,92.2763 +151252,276.23,94.0265 +151253,274.23,88.8346 +151254,274.45,90.53508 +151255,274.65,92.2681 +151256,274.83,94.0361 +151257,272.94,88.7947 +151258,273.13,90.51051 +151259,273.29,92.2595 +151260,273.42,94.0443 +151261,271.65,88.7562 +151262,271.8,90.48635 +151263,271.93,92.2504 +151264,272.02,94.0511 +151265,270.36,88.719 +151266,270.47,90.4626 +151267,270.56,92.2408 +151268,270.62,94.0564 +151269,269.07,88.6831 +151270,269.14,90.43927 +151271,269.2,92.2307 +151272,269.22,94.0604 +151273,267.77,88.6486 +151274,267.82,90.41637 +151275,267.83,92.22 +151276,267.82,94.0629 +151277,266.48,88.6154 +151278,266.49,90.39389 +151279,266.47,92.2089 +151280,266.42,94.0639 +151281,265.19,88.5836 +151282,265.16,90.37183 +151283,265.11,92.1973 +151284,265.02,94.0635 +151285,263.9,88.5531 +151286,263.84,90.3502 +151287,263.74,92.1851 +151288,263.62,94.0617 +151289,262.61,88.524 +151290,262.51,90.32901 +151291,262.38,92.1725 +151292,262.21,94.0583 +151293,261.32,88.4962 +151294,261.18,90.30825 +151295,261.01,92.1593 +151296,260.81,94.0535 +151297,260.03,88.4698 +151298,259.85,90.28792 +151299,259.65,92.1456 +151300,259.41,94.0472 +151301,258.74,88.4448 +151302,258.53,90.26802 +151303,258.29,92.1314 +151304,258.01,94.0394 +151305,257.45,88.4211 +151306,257.2,90.24857 +151307,256.92,92.1167 +151308,256.61,94.0301 +151309,256.16,88.3989 +151310,255.87,90.22955 +151311,255.56,92.1014 +151312,255.21,94.0193 +151313,254.86,88.378 +151314,254.55,90.21097 +151315,254.2,92.0857 +151316,253.81,94.007 +151317,253.57,88.3585 +151318,253.22,90.19283 +151319,252.83,92.0694 +151320,252.41,93.9932 +151321,252.28,88.3403 +151322,251.89,90.17513 +151323,251.47,92.0526 +151324,251.01,93.9779 +151325,250.99,88.3236 +151326,250.56,90.15787 +151327,250.11,92.0352 +151328,249.61,93.961 +151329,249.7,88.3082 +151330,249.24,90.14104 +151331,248.74,92.0174 +151332,248.21,93.9427 +151333,248.4,88.2942 +151334,247.91,90.12466 +151335,247.38,91.999 +151336,246.81,93.9228 +151337,247.11,88.2816 +151338,246.58,90.10871 +151339,246.02,91.9801 +151340,245.41,93.9015 +151341,245.82,88.2703 +151342,245.26,90.093202 +151343,244.66,91.9607 +151344,244.02,93.8786 +151345,244.53,88.2604 +151346,243.93,90.078127 +151347,243.29,91.9408 +151348,242.62,93.8542 +151349,243.23,88.2519 +151350,242.6,90.063486 +151351,241.93,91.9203 +151352,241.22,93.8283 +151353,241.94,88.2447 +151354,241.27,90.049276 +151355,240.57,91.8994 +151356,239.83,93.801 +151357,240.64,88.2388 +151358,239.94,90.035497 +151359,239.21,91.8779 +151360,238.43,93.7721 +151361,239.35,88.2343 +151362,238.62,90.022146 +151363,237.85,91.8559 +151364,237.04,93.7417 +151365,238.05,88.2311 +151366,237.29,90.0092209 +151367,236.49,91.8334 +151368,235.64,93.7099 +151369,236.76,88.2293 +151370,235.96,89.9967183 +151371,235.13,91.8104 +151372,234.25,93.6766 +151373,235.46,88.2287 +151374,234.63,89.984636 +151375,233.76,91.7869 +151376,232.85,93.6419 +151377,234.16,88.2295 +151378,233.3,89.97297 +151379,232.4,91.7629 +151380,231.46,93.6056 +151381,232.86,88.2316 +151382,231.97,89.961718 +151383,231.04,91.7384 +151384,230.07,93.568 +151385,231.56,88.2349 +151386,230.64,89.950876 +151387,229.68,91.7134 +151388,228.68,93.5289 +151389,230.27,88.2395 +151390,229.31,89.94044 +151391,228.32,91.688 +151392,227.29,93.4884 +151393,228.97,88.2453 +151394,227.98,89.930406 +151395,226.97,91.662 +151396,225.9,93.4465 +151397,227.66,88.2525 +151398,226.65,89.92077 +151399,225.61,91.6356 +151400,224.51,93.4032 +151401,226.36,88.2608 +151402,225.32,89.911528 +151403,224.25,91.6087 +151404,223.12,93.3586 +151405,225.06,88.2703 +151406,223.99,89.902675 +151407,222.89,91.5813 +151408,221.74,93.3125 +151409,223.76,88.2811 +151410,222.66,89.89421 +151411,221.53,91.5535 +151412,220.35,93.2651 +151413,222.45,88.293 +151414,221.33,89.88612 +151415,220.17,91.5252 +151416,218.97,93.2164 +151417,221.15,88.3062 +151418,220,89.8784 +151419,218.82,91.4965 +151420,217.58,93.1664 +151421,219.84,88.3204 +151422,218.67,89.87105 +151423,217.46,91.4673 +151424,216.2,93.1151 +151425,218.54,88.3358 +151426,217.34,89.86406 +151427,216.1,91.4376 +151428,214.82,93.0625 +151429,217.23,88.3524 +151430,216.01,89.85743 +151431,214.75,91.4076 +151432,213.44,93.0086 +151433,215.92,88.37 +151434,214.68,89.85116 +151435,213.39,91.3771 +151436,212.06,92.9535 +151437,214.61,88.3887 +151438,213.34,89.84522 +151439,212.03,91.3462 +151440,210.68,92.8972 +151441,213.3,88.4085 +151442,212.01,89.83962 +151443,210.68,91.3148 +151444,209.3,92.8397 +151445,211.99,88.4293 +151446,210.68,89.83436 +151447,209.32,91.2831 +151448,207.93,92.781 +151449,210.68,88.4511 +151450,209.35,89.82942 +151451,207.97,91.251 +151452,206.55,92.7212 +151453,209.37,88.474 +151454,208.01,89.82479 +151455,206.62,91.2184 +151456,205.18,92.6602 +151457,208.06,88.4978 +151458,206.68,89.82048 +151459,205.26,91.1855 +151460,203.8,92.5981 +151461,206.74,88.5226 +151462,205.34,89.81647 +151463,203.91,91.1522 +151464,202.43,92.5349 +151465,205.43,88.5483 +151466,204.01,89.81275 +151467,202.56,91.1186 +151468,201.06,92.4707 +151469,204.11,88.575 +151470,202.67,89.80932 +151471,201.2,91.0846 +151472,199.69,92.4055 +151473,202.79,88.6025 +151474,201.34,89.80618 +151475,199.85,91.0502 +151476,198.32,92.3392 +151477,201.47,88.6309 +151478,200,89.8033 +151479,198.5,91.0155 +151480,196.95,92.272 +151481,200.15,88.6601 +151482,198.67,89.80069 +151483,197.15,90.98045 +151484,195.59,92.2038 +151485,198.83,88.6902 +151486,197.33,89.79833 +151487,195.8,90.94508 +151488,194.22,92.1346 +151489,197.51,88.7211 +151490,196,89.79622 +151491,194.45,90.90938 +151492,192.86,92.0646 +151493,196.18,88.7527 +151494,194.66,89.79435 +151495,193.1,90.87338 +151496,191.5,91.9937 +151497,194.86,88.7851 +151498,193.32,89.79271 +151499,191.75,90.83708 +151500,190.14,91.922 +151501,193.53,88.8182 +151502,191.98,89.79129 +151503,190.4,90.8005 +151504,188.78,91.8495 +151505,192.21,88.8519 +151506,190.65,89.79008 +151507,189.05,90.76363 +151508,187.42,91.7761 +151509,190.88,88.8864 +151510,189.31,89.78908 +151511,187.7,90.72649 +151512,186.06,91.702 +151513,189.55,88.9215 +151514,187.97,89.78827 +151515,186.36,90.68909 +151516,184.71,91.6272 +151517,188.22,88.9572 +151518,186.63,89.78764 +151519,185.01,90.65143 +151520,183.35,91.5517 +151521,186.89,88.9935 +151522,185.29,89.78719 +151523,183.66,90.61354 +151524,182,91.4756 +151525,185.55,89.03031 +151526,183.95,89.78691 +151527,182.32,90.57542 +151528,180.65,91.3988 +151529,184.22,89.06768 +151530,182.61,89.78678 +151531,180.97,90.53707 +151532,179.3,91.3214 +151533,182.88,89.10554 +151534,181.27,89.7868 +151535,179.62,90.49852 +151536,177.95,91.2434 +151537,181.55,89.14388 +151538,179.93,89.78695 +151539,178.28,90.45976 +151540,176.6,91.1649 +151541,180.21,89.18267 +151542,178.59,89.78723 +151543,176.94,90.42081 +151544,175.25,91.0859 +151545,178.87,89.22186 +151546,177.24,89.78763 +151547,175.59,90.38169 +151548,173.91,91.0064 +151549,177.53,89.26144 +151550,175.9,89.78814 +151551,174.25,90.34239 +151552,172.56,90.92652 +151553,176.19,89.30138 +151554,174.56,89.78874 +151555,172.91,90.30294 +151556,171.22,90.84619 +151557,174.84,89.34164 +151558,173.22,89.78943 +151559,171.56,90.26334 +151560,169.88,90.7655 +151561,173.5,89.38219 +151562,171.87,89.7902 +151563,170.22,90.2236 +151564,168.54,90.68446 +151565,172.15,89.42301 +151566,170.53,89.79103 +151567,168.88,90.18374 +151568,167.2,90.60311 +151569,170.81,89.46406 +151570,169.19,89.79192 +151571,167.54,90.14376 +151572,165.87,90.52149 +151573,169.46,89.50532 +151574,167.84,89.79286 +151575,166.2,90.10368 +151576,164.53,90.43963 +151577,168.11,89.54676 +151578,166.5,89.79383 +151579,164.86,90.063503 +151580,163.2,90.35755 +151581,166.76,89.58833 +151582,165.15,89.79483 +151583,163.52,90.023244 +151584,161.86,90.27531 +151585,165.41,89.63002 +151586,163.8,89.79584 +151587,162.18,89.982914 +151588,160.53,90.19292 +151589,164.05,89.6718 +151590,162.46,89.79685 +151591,160.84,89.942522 +151592,159.2,90.11042 +151593,162.7,89.71362 +151594,161.11,89.79786 +151595,159.5,89.902081 +151596,157.87,90.027853 +151597,161.34,89.75547 +151598,159.76,89.79886 +151599,158.16,89.8616 +151600,156.54,89.945241 +151601,159.98,89.79731 +151602,158.42,89.79983 +151603,156.83,89.82109 +151604,155.22,89.86262 +151605,158.63,89.83911 +151606,157.07,89.80076 +151607,155.49,89.78057 +151608,153.89,89.78002 +151609,157.27,89.88084 +151610,155.72,89.80164 +151611,154.15,89.74004 +151612,152.57,89.69749 +151613,155.91,89.922467 +151614,154.37,89.80246 +151615,152.82,89.69951 +151616,151.24,89.61504 +151617,154.54,89.963963 +151618,153.02,89.80322 +151619,151.48,89.659 +151620,149.92,89.53271 +151621,153.18,90.005297 +151622,151.67,89.8039 +151623,150.15,89.61851 +151624,148.6,89.45055 +151625,151.82,90.046438 +151626,150.33,89.80449 +151627,148.81,89.57807 +151628,147.28,89.36857 +151629,150.45,90.087355 +151630,148.98,89.80498 +151631,147.48,89.53767 +151632,145.97,89.28681 +151633,149.08,90.12802 +151634,147.62,89.80536 +151635,146.15,89.49733 +151636,144.65,89.20531 +151637,147.72,90.1684 +151638,146.27,89.80562 +151639,144.81,89.45706 +151640,143.33,89.12409 +151641,146.35,90.20846 +151642,144.92,89.80574 +151643,143.48,89.41686 +151644,142.02,89.04319 +151645,144.98,90.24818 +151646,143.57,89.80573 +151647,142.15,89.37676 +151648,140.71,88.9626 +151649,143.61,90.28753 +151650,142.22,89.80557 +151651,140.82,89.33676 +151652,139.4,88.8825 +151653,142.23,90.32647 +151654,140.87,89.80525 +151655,139.48,89.29687 +151656,138.09,88.8027 +151657,140.86,90.36498 +151658,139.52,89.80476 +151659,138.15,89.25711 +151660,136.78,88.7234 +151661,139.48,90.40303 +151662,138.16,89.80409 +151663,136.82,89.21747 +151664,135.47,88.6446 +151665,138.11,90.44058 +151666,136.81,89.80323 +151667,135.49,89.17798 +151668,134.16,88.5662 +151669,136.73,90.47761 +151670,135.46,89.80217 +151671,134.16,89.13864 +151672,132.85,88.4884 +151673,135.35,90.5141 +151674,134.1,89.8009 +151675,132.83,89.09946 +151676,131.55,88.4112 +151677,133.97,90.55 +151678,132.75,89.79941 +151679,131.5,89.06045 +151680,130.24,88.3345 +151681,132.59,90.5853 +151682,131.39,89.79769 +151683,130.18,89.02162 +151684,128.94,88.2585 +151685,131.21,90.61996 +151686,130.04,89.79574 +151687,128.85,88.983 +151688,127.64,88.1831 +151689,129.83,90.65397 +151690,128.68,89.79354 +151691,127.52,88.9445 +151692,126.34,88.1083 +151693,128.45,90.68728 +151694,127.33,89.79108 +151695,126.19,88.9063 +151696,125.04,88.0343 +151697,127.07,90.71987 +151698,125.97,89.78836 +151699,124.86,88.8683 +151700,123.74,87.9611 +151701,125.68,90.75173 +151702,124.62,89.78537 +151703,123.54,88.8305 +151704,122.44,87.8885 +151705,124.3,90.78281 +151706,123.26,89.78209 +151707,122.21,88.793 +151708,121.14,87.8168 +151709,122.91,90.8131 +151710,121.91,89.77853 +151711,120.88,88.7557 +151712,119.85,87.7459 +151713,121.52,90.84256 +151714,120.55,89.77466 +151715,119.56,88.7186 +151716,118.55,87.6758 +151717,120.13,90.87118 +151718,119.19,89.77049 +151719,118.23,88.6818 +151720,117.26,87.6065 +151721,118.74,90.89893 +151722,117.84,89.766 +151723,116.91,88.6453 +151724,115.96,87.5381 +151725,117.35,90.92578 +151726,116.48,89.76119 +151727,115.58,88.6091 +151728,114.67,87.4707 +151729,115.96,90.95171 +151730,115.12,89.75604 +151731,114.26,88.5732 +151732,113.38,87.4042 +151733,114.57,90.97669 +151734,113.76,89.75056 +151735,112.93,88.5375 +151736,112.09,87.3386 +151737,113.18,91.0007 +151738,112.41,89.74473 +151739,111.61,88.5021 +151740,110.79,87.274 +151741,111.79,91.0237 +151742,111.05,89.73855 +151743,110.29,88.4671 +151744,109.5,87.2104 +151745,110.4,91.0458 +151746,109.69,89.732 +151747,108.96,88.4324 +151748,108.21,87.1478 +151749,109,91.0667 +151750,108.33,89.72509 +151751,107.64,88.398 +151752,106.93,87.0863 +151753,107.61,91.0867 +151754,106.97,89.7178 +151755,106.32,88.3639 +151756,105.64,87.0258 +151757,106.21,91.1055 +151758,105.61,89.71013 +151759,104.99,88.3302 +151760,104.35,86.9664 +151761,104.82,91.1233 +151762,104.25,89.70208 +151763,103.67,88.2968 +151764,103.06,86.908 +151765,103.42,91.1399 +151766,102.9,89.69363 +151767,102.35,88.2637 +151768,101.78,86.8508 +151769,102.03,91.1554 +151770,101.54,89.68477 +151771,101.02,88.2311 +151772,100.49,86.7947 +151773,100.63,91.1698 +151774,100.18,89.67551 +151775,99.703,88.1987 +151776,99.205,86.7398 +151777,99.231,91.1829 +151778,98.818,89.66584 +151779,98.381,88.1668 +151780,97.919,86.686 +151781,97.834,91.1949 +151782,97.459,89.65575 +151783,97.059,88.1352 +151784,96.635,86.6335 +151785,96.436,91.2057 +151786,96.099,89.64524 +151787,95.737,88.104 +151788,95.35,86.5821 +151789,95.037,91.2153 +151790,94.74,89.6343 +151791,94.416,88.0732 +151792,94.067,86.5319 +151793,93.639,91.2236 +151794,93.38,89.62293 +151795,93.095,88.0428 +151796,92.783,86.4829 +151797,92.24,91.2306 +151798,92.021,89.61112 +151799,91.773,88.0127 +151800,91.5,86.4352 +151801,90.841,91.2364 +151802,90.661,89.59887 +151803,90.452,87.9831 +151804,90.217,86.3887 +151805,89.441,91.2409 +151806,89.301,89.58617 +151807,89.131,87.9539 +151808,88.934,86.3434 +151809,88.042,91.2442 +151810,87.941,89.57302 +151811,87.811,87.925 +151812,87.651,86.2995 +151813,86.642,91.2461 +151814,86.582,89.55941 +151815,86.49,87.8966 +151816,86.369,86.2568 +151817,85.242,91.2466 +151818,85.222,89.54535 +151819,85.169,87.8686 +151820,85.087,86.2154 +151821,83.843,91.2459 +151822,83.862,89.53083 +151823,83.849,87.841 +151824,83.805,86.1753 +151825,82.443,91.2438 +151826,82.502,89.51585 +151827,82.528,87.8138 +151828,82.523,86.1365 +151829,81.043,91.2404 +151830,81.143,89.50039 +151831,81.208,87.7871 +151832,81.241,86.099 +151833,79.643,91.2356 +151834,79.783,89.48447 +151835,79.887,87.7608 +151836,79.959,86.0629 +151837,78.243,91.2294 +151838,78.423,89.46808 +151839,78.567,87.7349 +151840,78.678,86.028 +151841,76.844,91.2218 +151842,77.064,89.45121 +151843,77.247,87.7094 +151844,77.396,85.9945 +151845,75.444,91.2129 +151846,75.704,89.43386 +151847,75.926,87.6844 +151848,76.114,85.9624 +151849,74.045,91.2026 +151850,74.345,89.41604 +151851,74.606,87.6598 +151852,74.832,85.9316 +151853,72.646,91.1908 +151854,72.985,89.39774 +151855,73.286,87.6356 +151856,73.55,85.9021 +151857,71.247,91.1777 +151858,71.626,89.37895 +151859,71.965,87.6118 +151860,72.268,85.8739 +151861,69.848,91.1632 +151862,70.267,89.35969 +151863,70.645,87.5886 +151864,70.986,85.8472 +151865,68.449,91.1472 +151866,68.908,89.33994 +151867,69.324,87.5657 +151868,69.704,85.8217 +151869,67.051,91.1298 +151870,67.549,89.31971 +151871,68.004,87.5433 +151872,68.421,85.7976 +151873,65.653,91.1111 +151874,66.19,89.299 +151875,66.683,87.5213 +151876,67.138,85.7749 +151877,64.256,91.0909 +151878,64.832,89.2778 +151879,65.363,87.4997 +151880,65.855,85.7535 +151881,62.859,91.0692 +151882,63.473,89.25612 +151883,64.042,87.4786 +151884,64.571,85.7334 +151885,61.463,91.0462 +151886,62.115,89.23396 +151887,62.721,87.4579 +151888,63.288,85.7147 +151889,60.066,91.0218 +151890,60.757,89.21131 +151891,61.401,87.4377 +151892,62.004,85.6974 +151893,58.671,90.9959 +151894,59.399,89.18819 +151895,60.08,87.4179 +151896,60.719,85.6814 +151897,57.276,90.96862 +151898,58.041,89.16458 +151899,58.759,87.3985 +151900,59.434,85.6667 +151901,55.881,90.93994 +151902,56.684,89.1405 +151903,57.437,87.3796 +151904,58.149,85.6533 +151905,54.487,90.90984 +151906,55.327,89.11594 +151907,56.116,87.3611 +151908,56.863,85.6413 +151909,53.094,90.87835 +151910,53.97,89.0909 +151911,54.795,87.343 +151912,55.576,85.6306 +151913,51.702,90.84546 +151914,52.613,89.0654 +151915,53.473,87.3254 +151916,54.29,85.6212 +151917,50.31,90.81118 +151918,51.256,89.03942 +151919,52.151,87.3081 +151920,53.002,85.613 +151921,48.919,90.77552 +151922,49.9,89.01297 +151923,50.829,87.2913 +151924,51.714,85.6062 +151925,47.528,90.73848 +151926,48.544,88.9861 +151927,49.507,87.275 +151928,50.426,85.6007 +151929,46.138,90.70008 +151930,47.188,88.9587 +151931,48.185,87.259 +151932,49.136,85.5964 +151933,44.75,90.66032 +151934,45.833,88.9309 +151935,46.862,87.2434 +151936,47.846,85.5934 +151937,43.362,90.61921 +151938,44.478,88.9026 +151939,45.54,87.2283 +151940,46.556,85.5917 +151941,41.974,90.57676 +151942,43.123,88.8738 +151943,44.217,87.2136 +151944,45.264,85.5912 +151945,40.588,90.53299 +151946,41.768,88.8447 +151947,42.894,87.1992 +151948,43.972,85.5919 +151949,39.203,90.48791 +151950,40.414,88.815 +151951,41.57,87.1853 +151952,42.679,85.5939 +151953,37.818,90.44152 +151954,39.06,88.785 +151955,40.247,87.1718 +151956,41.386,85.597 +151957,36.435,90.39385 +151958,37.707,88.7545 +151959,38.923,87.1586 +151960,40.091,85.6014 +151961,35.052,90.3449 +151962,36.354,88.7235 +151963,37.599,87.1458 +151964,38.796,85.6069 +151965,33.671,90.29469 +151966,35.001,88.6922 +151967,36.274,87.1335 +151968,37.5,85.6136 +151969,32.29,90.24325 +151970,33.648,88.6604 +151971,34.95,87.1214 +151972,36.203,85.6214 +151973,30.911,90.19057 +151974,32.296,88.6282 +151975,33.625,87.1098 +151976,34.905,85.6304 +151977,29.532,90.13668 +151978,30.944,88.5956 +151979,32.299,87.0985 +151980,33.606,85.6404 +151981,28.155,90.081607 +151982,29.593,88.5626 +151983,30.974,87.0876 +151984,32.306,85.6516 +151985,26.779,90.025354 +151986,28.242,88.5292 +151987,29.648,87.077 +151988,31.006,85.6638 +151989,25.404,89.967947 +151990,26.892,88.4955 +151991,28.322,87.0668 +151992,29.704,85.6771 +151993,24.03,89.909403 +151994,25.541,88.4613 +151995,26.996,87.0569 +151996,28.401,85.6914 +151997,22.658,89.84974 +151998,24.192,88.4268 +151999,25.669,87.0474 +152000,27.098,85.7068 +152001,21.286,89.78899 +152002,22.842,88.3918 +152003,24.342,87.0382 +152004,25.793,85.7231 +152005,19.916,89.72716 +152006,21.493,88.3566 +152007,23.014,87.0293 +152008,24.487,85.7404 +152009,18.547,89.66428 +152010,20.145,88.3209 +152011,21.686,87.0207 +152012,23.18,85.7587 +152013,17.179,89.60036 +152014,18.797,88.285 +152015,20.358,87.0124 +152016,21.872,85.7779 +152017,15.813,89.53545 +152018,17.449,88.2487 +152019,19.03,87.0044 +152020,20.563,85.798 +152021,14.447,89.46954 +152022,16.102,88.212 +152023,17.701,86.9967 +152024,19.252,85.8191 +152025,13.083,89.40268 +152026,14.755,88.175 +152027,16.372,86.9893 +152028,17.941,85.841 +152029,11.721,89.33489 +152030,13.409,88.1378 +152031,15.042,86.9822 +152032,16.628,85.8637 +152033,10.36,89.26618 +152034,12.063,88.1002 +152035,13.713,86.9753 +152036,15.314,85.8873 +152037,8.9996,89.19659 +152038,10.718,88.0623 +152039,12.382,86.9687 +152040,13.999,85.9116 +152041,7.6409,89.12614 +152042,9.3732,88.0241 +152043,11.052,86.9624 +152044,12.683,85.9367 +152045,6.2837,89.05486 +152046,8.0288,87.9856 +152047,9.7205,86.9563 +152048,11.366,85.9626 +152049,4.9278,88.9828 +152050,6.6849,87.9469 +152051,8.3891,86.9504 +152052,10.047,85.9892 +152053,3.5733,88.9099 +152054,5.3415,87.9079 +152055,7.0573,86.9448 +152056,8.7272,86.0165 +152057,2.2202,88.8363 +152058,3.9985,87.8686 +152059,5.7251,86.9393 +152060,7.406,86.0445 +152061,0.86843,88.762 +152062,2.6561,87.8291 +152063,4.3924,86.9341 +152064,6.0836,86.0732 +152065,359.52,88.6869 +152066,1.3141,87.7894 +152067,3.0594,86.9291 +152068,4.7599,86.1024 +152069,358.17,88.6112 +152070,359.97,87.7494 +152071,1.726,86.9243 +152072,3.435,86.1322 +152073,356.82,88.5349 +152074,358.63,87.7092 +152075,0.39218,86.9196 +152076,2.1087,86.1627 +152077,355.48,88.458 +152078,357.29,87.6688 +152079,359.06,86.9152 +152080,0.78114,86.1936 +152081,354.13,88.3805 +152082,355.95,87.6282 +152083,357.72,86.9109 +152084,359.45,86.2251 +152085,352.79,88.3024 +152086,354.61,87.5874 +152087,356.39,86.9067 +152088,358.12,86.257 +152089,351.45,88.2238 +152090,353.27,87.5465 +152091,355.05,86.9027 +152092,356.79,86.2894 +152093,350.11,88.1448 +152094,351.93,87.5053 +152095,353.72,86.8989 +152096,355.46,86.3223 +152097,348.77,88.0653 +152098,350.6,87.464 +152099,352.38,86.8951 +152100,354.12,86.3555 +152101,347.43,87.9853 +152102,349.26,87.4226 +152103,351.04,86.8915 +152104,352.79,86.3892 +152105,346.09,87.905 +152106,347.92,87.381 +152107,349.71,86.888 +152108,351.45,86.4231 +152109,344.76,87.8243 +152110,346.59,87.3393 +152111,348.37,86.8846 +152112,350.11,86.4574 +152113,343.43,87.7433 +152114,345.25,87.2974 +152115,347.03,86.8812 +152116,348.77,86.492 +152117,342.09,87.662 +152118,343.91,87.2555 +152119,345.69,86.878 +152120,347.43,86.5268 +152121,340.76,87.5804 +152122,342.58,87.2135 +152123,344.35,86.8748 +152124,346.09,86.5618 +152125,339.43,87.4986 +152126,341.24,87.1713 +152127,343.01,86.8717 +152128,344.75,86.5971 +152129,338.11,87.4166 +152130,339.91,87.1291 +152131,341.67,86.8686 +152132,343.4,86.6325 +152133,336.78,87.3344 +152134,338.58,87.0869 +152135,340.33,86.8656 +152136,342.06,86.6681 +152137,335.46,87.252 +152138,337.24,87.0445 +152139,338.99,86.8626 +152140,340.71,86.7038 +152141,334.13,87.1696 +152142,335.91,87.0022 +152143,337.65,86.8596 +152144,339.36,86.7395 +152145,332.81,87.0871 +152146,334.58,86.9598 +152147,336.31,86.8566 +152148,338.01,86.7753 +152149,331.49,87.0046 +152150,333.25,86.9173 +152151,334.97,86.8536 +152152,336.66,86.8112 +152153,330.17,86.922 +152154,331.92,86.8749 +152155,333.63,86.8506 +152156,335.31,86.847 +152157,328.85,86.8395 +152158,330.59,86.8325 +152159,332.29,86.8476 +152160,333.95,86.8828 +152161,327.54,86.757 +152162,329.26,86.79 +152163,330.94,86.8445 +152164,332.6,86.9185 +152165,326.22,86.6746 +152166,327.93,86.7476 +152167,329.6,86.8414 +152168,331.24,86.9542 +152169,324.91,86.5923 +152170,326.6,86.7052 +152171,328.26,86.8383 +152172,329.88,86.9897 +152173,323.6,86.5102 +152174,325.27,86.6628 +152175,326.91,86.8351 +152176,328.52,87.025 +152177,322.29,86.4283 +152178,323.94,86.6205 +152179,325.57,86.8318 +152180,327.16,87.0602 +152181,320.98,86.3466 +152182,322.61,86.5783 +152183,324.22,86.8284 +152184,325.8,87.0952 +152185,319.67,86.2651 +152186,321.29,86.5361 +152187,322.88,86.825 +152188,324.44,87.1299 +152189,318.36,86.1839 +152190,319.96,86.494 +152191,321.53,86.8214 +152192,323.07,87.1644 +152193,317.05,86.103 +152194,318.63,86.452 +152195,320.18,86.8178 +152196,321.71,87.1985 +152197,315.75,86.0224 +152198,317.31,86.4101 +152199,318.84,86.814 +152200,320.34,87.2323 +152201,314.45,85.9422 +152202,315.98,86.3683 +152203,317.49,86.8101 +152204,318.97,87.2658 +152205,313.14,85.8625 +152206,314.66,86.3266 +152207,316.14,86.806 +152208,317.6,87.2989 +152209,311.84,85.7831 +152210,313.33,86.2851 +152211,314.8,86.8018 +152212,316.23,87.3316 +152213,310.54,85.7042 +152214,312.01,86.2436 +152215,313.45,86.7974 +152216,314.86,87.3638 +152217,309.24,85.6258 +152218,310.69,86.2024 +152219,312.1,86.7929 +152220,313.49,87.3956 +152221,307.95,85.5479 +152222,309.36,86.1613 +152223,310.75,86.7882 +152224,312.12,87.4269 +152225,306.65,85.4705 +152226,308.04,86.1204 +152227,309.4,86.7833 +152228,310.74,87.4576 +152229,305.35,85.3937 +152230,306.72,86.0796 +152231,308.05,86.7782 +152232,309.37,87.4878 +152233,304.06,85.3176 +152234,305.39,86.039 +152235,306.7,86.7729 +152236,307.99,87.5175 +152237,302.77,85.242 +152238,304.07,85.9987 +152239,305.35,86.7674 +152240,306.61,87.5465 +152241,301.48,85.1671 +152242,302.75,85.9585 +152243,304,86.7616 +152244,305.23,87.5749 +152245,300.18,85.0929 +152246,301.43,85.9185 +152247,302.65,86.7557 +152248,303.85,87.6027 +152249,298.89,85.0194 +152250,300.11,85.8788 +152251,301.3,86.7495 +152252,302.47,87.6297 +152253,297.61,84.9467 +152254,298.79,85.8393 +152255,299.95,86.743 +152256,301.09,87.6561 +152257,296.32,84.8747 +152258,297.47,85.8001 +152259,298.6,86.7363 +152260,299.71,87.6817 +152261,295.03,84.8035 +152262,296.15,85.7611 +152263,297.25,86.7293 +152264,298.32,87.7066 +152265,293.74,84.7331 +152266,294.83,85.7223 +152267,295.9,86.7221 +152268,296.94,87.7307 +152269,292.46,84.6635 +152270,293.51,85.6838 +152271,294.55,86.7145 +152272,295.55,87.754 +152273,291.17,84.5948 +152274,292.19,85.6456 +152275,293.19,86.7067 +152276,294.17,87.7765 +152277,289.89,84.527 +152278,290.88,85.6077 +152279,291.84,86.6986 +152280,292.78,87.7981 +152281,288.61,84.4601 +152282,289.56,85.5701 +152283,290.49,86.6902 +152284,291.39,87.8189 +152285,287.32,84.3941 +152286,288.24,85.5327 +152287,289.13,86.6814 +152288,290,87.8387 +152289,286.04,84.329 +152290,286.92,85.4957 +152291,287.78,86.6724 +152292,288.61,87.8577 +152293,284.76,84.265 +152294,285.61,85.459 +152295,286.43,86.663 +152296,287.22,87.8757 +152297,283.48,84.2019 +152298,284.29,85.4225 +152299,285.07,86.6533 +152300,285.83,87.8928 +152301,282.2,84.1398 +152302,282.97,85.3865 +152303,283.72,86.6433 +152304,284.44,87.9089 +152305,280.92,84.0788 +152306,281.66,85.3507 +152307,282.37,86.6329 +152308,283.05,87.9239 +152309,279.65,84.0188 +152310,280.34,85.3153 +152311,281.01,86.6221 +152312,281.66,87.938 +152313,278.37,83.9599 +152314,279.03,85.2802 +152315,279.66,86.611 +152316,280.27,87.9511 +152317,277.09,83.9021 +152318,277.71,85.2455 +152319,278.3,86.5996 +152320,278.87,87.963 +152321,275.82,83.8454 +152322,276.39,85.2111 +152323,276.95,86.5877 +152324,277.48,87.974 +152325,274.54,83.7898 +152326,275.08,85.1771 +152327,275.59,86.5755 +152328,276.08,87.9838 +152329,273.26,83.7353 +152330,273.76,85.1435 +152331,274.24,86.5629 +152332,274.69,87.9925 +152333,271.99,83.682 +152334,272.45,85.1103 +152335,272.88,86.55 +152336,273.29,88.0001 +152337,270.71,83.6298 +152338,271.13,85.0774 +152339,271.53,86.5366 +152340,271.9,88.0066 +152341,269.44,83.5789 +152342,269.82,85.0449 +152343,270.17,86.5228 +152344,270.5,88.0119 +152345,268.17,83.5291 +152346,268.51,85.0128 +152347,268.82,86.5087 +152348,269.1,88.016 +152349,266.89,83.4805 +152350,267.19,84.981 +152351,267.46,86.4941 +152352,267.71,88.019 +152353,265.62,83.4332 +152354,265.88,84.9497 +152355,266.11,86.4791 +152356,266.31,88.0208 +152357,264.35,83.387 +152358,264.56,84.9188 +152359,264.75,86.4638 +152360,264.91,88.0214 +152361,263.07,83.3421 +152362,263.25,84.8883 +152363,263.4,86.448 +152364,263.51,88.0207 +152365,261.8,83.2985 +152366,261.94,84.8581 +152367,262.04,86.4317 +152368,262.12,88.0188 +152369,260.53,83.2561 +152370,260.62,84.8284 +152371,260.69,86.4151 +152372,260.72,88.0157 +152373,259.26,83.215 +152374,259.31,84.7992 +152375,259.33,86.398 +152376,259.32,88.0114 +152377,257.98,83.1752 +152378,258,84.7703 +152379,257.98,86.3805 +152380,257.92,88.0057 +152381,256.71,83.1366 +152382,256.68,84.7418 +152383,256.62,86.3626 +152384,256.52,87.9988 +152385,255.44,83.0993 +152386,255.37,84.7138 +152387,255.27,86.3442 +152388,255.13,87.9906 +152389,254.17,83.0634 +152390,254.06,84.6862 +152391,253.91,86.3254 +152392,253.73,87.9812 +152393,252.9,83.0287 +152394,252.74,84.659 +152395,252.55,86.3062 +152396,252.33,87.9704 +152397,251.62,82.9953 +152398,251.43,84.6322 +152399,251.2,86.2865 +152400,250.93,87.9584 +152401,250.35,82.9632 +152402,250.12,84.6059 +152403,249.84,86.2663 +152404,249.53,87.945 +152405,249.08,82.9325 +152406,248.8,84.58 +152407,248.49,86.2458 +152408,248.14,87.9303 +152409,247.81,82.903 +152410,247.49,84.5546 +152411,247.13,86.2247 +152412,246.74,87.9143 +152413,246.53,82.8749 +152414,246.17,84.5295 +152415,245.78,86.2033 +152416,245.34,87.897 +152417,245.26,82.8481 +152418,244.86,84.5049 +152419,244.42,86.1814 +152420,243.95,87.8784 +152421,243.99,82.8226 +152422,243.55,84.4808 +152423,243.07,86.159 +152424,242.55,87.8585 +152425,242.71,82.7984 +152426,242.23,84.457 +152427,241.72,86.1362 +152428,241.15,87.8372 +152429,241.44,82.7756 +152430,240.92,84.4337 +152431,240.36,86.113 +152432,239.76,87.8146 +152433,240.17,82.754 +152434,239.61,84.4109 +152435,239.01,86.0893 +152436,238.36,87.7906 +152437,238.89,82.7338 +152438,238.29,84.3884 +152439,237.65,86.0651 +152440,236.97,87.7654 +152441,237.62,82.7148 +152442,236.98,84.3664 +152443,236.3,86.0405 +152444,235.57,87.7388 +152445,236.34,82.6972 +152446,235.67,84.3449 +152447,234.95,86.0155 +152448,234.18,87.7109 +152449,235.07,82.6809 +152450,234.35,84.3237 +152451,233.59,85.99 +152452,232.79,87.6817 +152453,233.79,82.6658 +152454,233.04,84.303 +152455,232.24,85.9641 +152456,231.39,87.6511 +152457,232.51,82.6521 +152458,231.72,84.2827 +152459,230.89,85.9377 +152460,230,87.6192 +152461,231.24,82.6396 +152462,230.41,84.2628 +152463,229.53,85.9109 +152464,228.61,87.5861 +152465,229.96,82.6284 +152466,229.09,84.2434 +152467,228.18,85.8837 +152468,227.22,87.5516 +152469,228.68,82.6185 +152470,227.78,84.2244 +152471,226.83,85.856 +152472,225.83,87.5158 +152473,227.4,82.6098 +152474,226.46,84.2058 +152475,225.48,85.8279 +152476,224.44,87.4787 +152477,226.12,82.6024 +152478,225.15,84.1876 +152479,224.13,85.7994 +152480,223.05,87.4404 +152481,224.84,82.5962 +152482,223.83,84.1698 +152483,222.78,85.7704 +152484,221.66,87.4007 +152485,223.56,82.5912 +152486,222.52,84.1524 +152487,221.42,85.741 +152488,220.28,87.3598 +152489,222.28,82.5875 +152490,221.2,84.1355 +152491,220.07,85.7112 +152492,218.89,87.3177 +152493,220.99,82.585 +152494,219.88,84.1189 +152495,218.72,85.681 +152496,217.5,87.2742 +152497,219.71,82.5836 +152498,218.57,84.1028 +152499,217.37,85.6504 +152500,216.12,87.2296 +152501,218.43,82.5834 +152502,217.25,84.087 +152503,216.02,85.6193 +152504,214.74,87.1837 +152505,217.14,82.5845 +152506,215.93,84.0716 +152507,214.67,85.5879 +152508,213.35,87.1366 +152509,215.86,82.5866 +152510,214.62,84.0566 +152511,213.32,85.5561 +152512,211.97,87.0883 +152513,214.57,82.5899 +152514,213.3,84.042 +152515,211.98,85.5238 +152516,210.59,87.0388 +152517,213.28,82.5943 +152518,211.98,84.0277 +152519,210.63,85.4912 +152520,209.21,86.9881 +152521,211.99,82.5998 +152522,210.66,84.0139 +152523,209.28,85.4582 +152524,207.84,86.9363 +152525,210.7,82.6065 +152526,209.34,84.0003 +152527,207.93,85.4248 +152528,206.46,86.8833 +152529,209.41,82.6141 +152530,208.03,83.9872 +152531,206.59,85.391 +152532,205.08,86.8292 +152533,208.12,82.6229 +152534,206.71,83.9744 +152535,205.24,85.3569 +152536,203.71,86.774 +152537,206.83,82.6327 +152538,205.39,83.9619 +152539,203.89,85.3224 +152540,202.33,86.7177 +152541,205.53,82.6435 +152542,204.07,83.9498 +152543,202.55,85.2876 +152544,200.96,86.6603 +152545,204.24,82.6553 +152546,202.75,83.9381 +152547,201.2,85.2524 +152548,199.59,86.6018 +152549,202.94,82.6681 +152550,201.43,83.9266 +152551,199.86,85.2168 +152552,198.22,86.5423 +152553,201.65,82.6818 +152554,200.11,83.9155 +152555,198.51,85.1809 +152556,196.85,86.4818 +152557,200.35,82.6965 +152558,198.79,83.9047 +152559,197.17,85.1447 +152560,195.48,86.4203 +152561,199.05,82.7121 +152562,197.46,83.8942 +152563,195.82,85.1082 +152564,194.12,86.3578 +152565,197.75,82.7286 +152566,196.14,83.884 +152567,194.48,85.0713 +152568,192.75,86.2943 +152569,196.45,82.746 +152570,194.82,83.8741 +152571,193.14,85.0342 +152572,191.39,86.2299 +152573,195.14,82.7643 +152574,193.5,83.8645 +152575,191.79,84.9967 +152576,190.03,86.1646 +152577,193.84,82.7833 +152578,192.17,83.8552 +152579,190.45,84.9589 +152580,188.67,86.0984 +152581,192.53,82.8032 +152582,190.85,83.8461 +152583,189.11,84.9209 +152584,187.31,86.0313 +152585,191.23,82.8239 +152586,189.53,83.8373 +152587,187.77,84.8826 +152588,185.95,85.9633 +152589,189.92,82.8453 +152590,188.2,83.8288 +152591,186.43,84.844 +152592,184.59,85.8946 +152593,188.61,82.8675 +152594,186.88,83.8205 +152595,185.09,84.8051 +152596,183.24,85.825 +152597,187.3,82.8904 +152598,185.55,83.8125 +152599,183.75,84.766 +152600,181.88,85.7547 +152601,185.99,82.914 +152602,184.23,83.8047 +152603,182.41,84.7266 +152604,180.53,85.6836 +152605,184.68,82.9382 +152606,182.9,83.7971 +152607,181.07,84.687 +152608,179.18,85.6118 +152609,183.36,82.9631 +152610,181.58,83.7897 +152611,179.73,84.6472 +152612,177.83,85.5393 +152613,182.05,82.9886 +152614,180.25,83.7825 +152615,178.4,84.6072 +152616,176.48,85.4661 +152617,180.73,83.0147 +152618,178.92,83.7756 +152619,177.06,84.5669 +152620,175.13,85.3923 +152621,179.41,83.0414 +152622,177.59,83.7688 +152623,175.72,84.5265 +152624,173.79,85.3179 +152625,178.09,83.0686 +152626,176.27,83.7622 +152627,174.39,84.4858 +152628,172.45,85.2428 +152629,176.77,83.0963 +152630,174.94,83.7558 +152631,173.05,84.445 +152632,171.1,85.1672 +152633,175.45,83.1244 +152634,173.61,83.7496 +152635,171.72,84.404 +152636,169.76,85.0911 +152637,174.12,83.1531 +152638,172.28,83.7435 +152639,170.38,84.3628 +152640,168.42,85.0145 +152641,172.8,83.1821 +152642,170.95,83.7375 +152643,169.05,84.3215 +152644,167.09,84.9374 +152645,171.47,83.2116 +152646,169.62,83.7317 +152647,167.72,84.28 +152648,165.75,84.8599 +152649,170.14,83.2414 +152650,168.29,83.726 +152651,166.38,84.2384 +152652,164.42,84.7819 +152653,168.81,83.2716 +152654,166.96,83.7204 +152655,165.05,84.1967 +152656,163.08,84.7036 +152657,167.48,83.3021 +152658,165.63,83.7149 +152659,163.72,84.1548 +152660,161.75,84.6248 +152661,166.15,83.3329 +152662,164.3,83.7096 +152663,162.39,84.1129 +152664,160.42,84.5458 +152665,164.82,83.3639 +152666,162.96,83.7043 +152667,161.06,84.0708 +152668,159.09,84.4665 +152669,163.48,83.3952 +152670,161.63,83.6991 +152671,159.73,84.0287 +152672,157.77,84.3869 +152673,162.15,83.4267 +152674,160.3,83.694 +152675,158.4,83.9865 +152676,156.44,84.3071 +152677,160.81,83.4583 +152678,158.96,83.6889 +152679,157.07,83.9442 +152680,155.12,84.227 +152681,159.47,83.4902 +152682,157.63,83.6839 +152683,155.74,83.9018 +152684,153.79,84.1468 +152685,158.13,83.5221 +152686,156.29,83.6789 +152687,154.41,83.8594 +152688,152.47,84.0664 +152689,156.79,83.5541 +152690,154.96,83.674 +152691,153.08,83.817 +152692,151.15,83.986 +152693,155.44,83.5862 +152694,153.62,83.669 +152695,151.76,83.7746 +152696,149.84,83.9054 +152697,154.1,83.6183 +152698,152.29,83.6641 +152699,150.43,83.7321 +152700,148.52,83.8248 +152701,152.75,83.6504 +152702,150.95,83.6592 +152703,149.1,83.6896 +152704,147.21,83.7442 +152705,151.4,83.6825 +152706,149.61,83.6543 +152707,147.78,83.6471 +152708,145.89,83.6636 +152709,150.06,83.7145 +152710,148.28,83.6494 +152711,146.45,83.6047 +152712,144.58,83.583 +152713,148.71,83.7465 +152714,146.94,83.6444 +152715,145.13,83.5622 +152716,143.27,83.5025 +152717,147.35,83.7783 +152718,145.6,83.6394 +152719,143.8,83.5198 +152720,141.96,83.4221 +152721,146,83.81 +152722,144.26,83.6343 +152723,142.48,83.4775 +152724,140.65,83.3418 +152725,144.65,83.8416 +152726,142.92,83.6292 +152727,141.16,83.4351 +152728,139.35,83.2617 +152729,143.29,83.8729 +152730,141.58,83.6241 +152731,139.84,83.3929 +152732,138.04,83.1817 +152733,141.93,83.904 +152734,140.24,83.6188 +152735,138.51,83.3507 +152736,136.74,83.1021 +152737,140.57,83.9349 +152738,138.9,83.6135 +152739,137.19,83.3086 +152740,135.44,83.0226 +152741,139.21,83.9655 +152742,137.56,83.6081 +152743,135.87,83.2666 +152744,134.14,82.9434 +152745,137.85,83.9958 +152746,136.22,83.6026 +152747,134.55,83.2247 +152748,132.84,82.8646 +152749,136.49,84.0258 +152750,134.88,83.5969 +152751,133.23,83.183 +152752,131.54,82.7861 +152753,135.13,84.0554 +152754,133.54,83.5912 +152755,131.91,83.1413 +152756,130.24,82.708 +152757,133.76,84.0846 +152758,132.2,83.5853 +152759,130.59,83.0998 +152760,128.95,82.6302 +152761,132.4,84.1134 +152762,130.85,83.5792 +152763,129.27,83.0584 +152764,127.65,82.5529 +152765,131.03,84.1417 +152766,129.51,83.5731 +152767,127.96,83.0172 +152768,126.36,82.4761 +152769,129.66,84.1696 +152770,128.17,83.5667 +152771,126.64,82.9761 +152772,125.07,82.3998 +152773,128.29,84.197 +152774,126.82,83.5602 +152775,125.32,82.9352 +152776,123.78,82.3239 +152777,126.92,84.2239 +152778,125.48,83.5535 +152779,124,82.8944 +152780,122.49,82.2486 +152781,125.55,84.2502 +152782,124.14,83.5467 +152783,122.69,82.8539 +152784,121.2,82.1739 +152785,124.18,84.276 +152786,122.79,83.5396 +152787,121.37,82.8135 +152788,119.92,82.0998 +152789,122.8,84.3012 +152790,121.45,83.5323 +152791,120.06,82.7734 +152792,118.63,82.0263 +152793,121.43,84.3257 +152794,120.1,83.5249 +152795,118.74,82.7335 +152796,117.35,81.9535 +152797,120.05,84.3496 +152798,118.75,83.5172 +152799,117.43,82.6938 +152800,116.06,81.8813 +152801,118.67,84.3729 +152802,117.41,83.5093 +152803,116.11,82.6543 +152804,114.78,81.8099 +152805,117.29,84.3954 +152806,116.06,83.5011 +152807,114.8,82.615 +152808,113.5,81.7391 +152809,115.91,84.4173 +152810,114.71,83.4927 +152811,113.48,82.5761 +152812,112.22,81.6691 +152813,114.53,84.4384 +152814,113.37,83.4841 +152815,112.17,82.5373 +152816,110.94,81.5999 +152817,113.15,84.4587 +152818,112.02,83.4752 +152819,110.86,82.4988 +152820,109.66,81.5316 +152821,111.77,84.4783 +152822,110.67,83.466 +152823,109.54,82.4606 +152824,108.38,81.464 +152825,110.39,84.497 +152826,109.32,83.4566 +152827,108.23,82.4227 +152828,107.11,81.3973 +152829,109,84.515 +152830,107.98,83.4469 +152831,106.92,82.3851 +152832,105.83,81.3314 +152833,107.62,84.5321 +152834,106.63,83.4369 +152835,105.61,82.3477 +152836,104.56,81.2664 +152837,106.23,84.5483 +152838,105.28,83.4266 +152839,104.3,82.3107 +152840,103.28,81.2024 +152841,104.85,84.5636 +152842,103.93,83.416 +152843,102.99,82.2739 +152844,102.01,81.1393 +152845,103.46,84.578 +152846,102.58,83.4051 +152847,101.67,82.2375 +152848,100.74,81.0771 +152849,102.07,84.5915 +152850,101.23,83.3938 +152851,100.36,82.2014 +152852,99.467,81.016 +152853,100.68,84.6041 +152854,99.883,83.3823 +152855,99.054,82.1656 +152856,98.196,80.9558 +152857,99.293,84.6157 +152858,98.533,83.3704 +152859,97.744,82.1302 +152860,96.926,80.8966 +152861,97.903,84.6263 +152862,97.183,83.3582 +152863,96.434,82.0951 +152864,95.656,80.8385 +152865,96.513,84.6359 +152866,95.833,83.3457 +152867,95.125,82.0603 +152868,94.388,80.7814 +152869,95.121,84.6445 +152870,94.483,83.3328 +152871,93.815,82.0259 +152872,93.119,80.7254 +152873,93.729,84.6521 +152874,93.132,83.3196 +152875,92.506,81.9919 +152876,91.852,80.6705 +152877,92.337,84.6586 +152878,91.782,83.306 +152879,91.197,81.9582 +152880,90.584,80.6166 +152881,90.944,84.6641 +152882,90.431,83.2921 +152883,89.889,81.9248 +152884,89.318,80.5639 +152885,89.551,84.6684 +152886,89.08,83.2778 +152887,88.58,81.8919 +152888,88.052,80.5123 +152889,88.157,84.6717 +152890,87.729,83.2631 +152891,87.272,81.8593 +152892,86.786,80.4619 +152893,86.763,84.6739 +152894,86.378,83.248 +152895,85.964,81.8271 +152896,85.521,80.4126 +152897,85.368,84.675 +152898,85.027,83.2326 +152899,84.656,81.7953 +152900,84.256,80.3645 +152901,83.973,84.675 +152902,83.676,83.2168 +152903,83.348,81.7639 +152904,82.991,80.3175 +152905,82.578,84.6738 +152906,82.324,83.2006 +152907,82.04,81.7329 +152908,81.727,80.2718 +152909,81.183,84.6714 +152910,80.973,83.184 +152911,80.733,81.7022 +152912,80.463,80.2273 +152913,79.787,84.6679 +152914,79.622,83.1671 +152915,79.425,81.672 +152916,79.199,80.1839 +152917,78.391,84.6632 +152918,78.27,83.1497 +152919,78.118,81.6422 +152920,77.935,80.1418 +152921,76.995,84.6573 +152922,76.919,83.1319 +152923,76.811,81.6128 +152924,76.672,80.101 +152925,75.599,84.6503 +152926,75.567,83.1138 +152927,75.503,81.5838 +152928,75.409,80.0613 +152929,74.202,84.642 +152930,74.216,83.0952 +152931,74.196,81.5552 +152932,74.145,80.0229 +152933,72.806,84.6325 +152934,72.864,83.0762 +152935,72.889,81.527 +152936,72.882,79.986 +152937,71.41,84.6218 +152938,71.513,83.0568 +152939,71.582,81.4992 +152940,71.619,79.95 +152941,70.013,84.6099 +152942,70.161,83.037 +152943,70.275,81.4719 +152944,70.356,79.915 +152945,68.617,84.5968 +152946,68.81,83.0168 +152947,68.968,81.445 +152948,69.093,79.882 +152949,67.22,84.5824 +152950,67.459,82.9962 +152951,67.661,81.4185 +152952,67.83,79.85 +152953,65.824,84.5668 +152954,66.107,82.9751 +152955,66.354,81.3924 +152956,66.567,79.819 +152957,64.428,84.5499 +152958,64.756,82.9537 +152959,65.047,81.3668 +152960,65.304,79.79 +152961,63.032,84.5318 +152962,63.405,82.9318 +152963,63.74,81.3415 +152964,64.04,79.761 +152965,61.636,84.5125 +152966,62.054,82.9095 +152967,62.433,81.3167 +152968,62.776,79.734 +152969,60.241,84.4919 +152970,60.703,82.8868 +152971,61.126,81.2924 +152972,61.512,79.709 +152973,58.846,84.47 +152974,59.352,82.8637 +152975,59.819,81.2684 +152976,60.248,79.684 +152977,57.451,84.4469 +152978,58.002,82.8401 +152979,58.512,81.2449 +152980,58.984,79.661 +152981,56.057,84.4225 +152982,56.651,82.8161 +152983,57.204,81.2218 +152984,57.719,79.64 +152985,54.662,84.3969 +152986,55.301,82.7917 +152987,55.897,81.1991 +152988,56.454,79.619 +152989,53.269,84.3701 +152990,53.951,82.7669 +152991,54.589,81.1769 +152992,55.189,79.6 +152993,51.876,84.3419 +152994,52.601,82.7417 +152995,53.282,81.1551 +152996,53.923,79.582 +152997,50.483,84.3126 +152998,51.251,82.7161 +152999,51.974,81.1337 +153000,52.656,79.565 +153001,49.091,84.2819 +153002,49.901,82.69 +153003,50.666,81.1127 +153004,51.389,79.55 +153005,47.699,84.2501 +153006,48.552,82.6635 +153007,49.358,81.0921 +153008,50.122,79.535 +153009,46.308,84.217 +153010,47.203,82.6367 +153011,48.05,81.072 +153012,48.854,79.522 +153013,44.917,84.1827 +153014,45.854,82.6094 +153015,46.741,81.0523 +153016,47.586,79.511 +153017,43.528,84.1471 +153018,44.505,82.5817 +153019,45.433,81.033 +153020,46.317,79.5 +153021,42.139,84.1103 +153022,43.157,82.5536 +153023,44.124,81.0141 +153024,45.047,79.491 +153025,40.75,84.0724 +153026,41.809,82.5251 +153027,42.815,80.9956 +153028,43.777,79.483 +153029,39.363,84.0332 +153030,40.461,82.4962 +153031,41.506,80.9775 +153032,42.505,79.476 +153033,37.976,83.9928 +153034,39.113,82.4669 +153035,40.197,80.9598 +153036,41.234,79.47 +153037,36.59,83.9512 +153038,37.766,82.4372 +153039,38.887,80.9425 +153040,39.961,79.466 +153041,35.205,83.9084 +153042,36.419,82.4071 +153043,37.577,80.9256 +153044,38.688,79.463 +153045,33.82,83.8645 +153046,35.072,82.3766 +153047,36.267,80.9091 +153048,37.414,79.461 +153049,32.437,83.8194 +153050,33.726,82.3458 +153051,34.957,80.893 +153052,36.139,79.46 +153053,31.055,83.7732 +153054,32.38,82.3145 +153055,33.646,80.8773 +153056,34.863,79.46 +153057,29.673,83.7258 +153058,31.034,82.2829 +153059,32.335,80.862 +153060,33.586,79.461 +153061,28.293,83.6773 +153062,29.689,82.251 +153063,31.024,80.847 +153064,32.308,79.464 +153065,26.914,83.6277 +153066,28.344,82.2186 +153067,29.713,80.8324 +153068,31.03,79.467 +153069,25.535,83.577 +153070,26.999,82.1859 +153071,28.401,80.8181 +153072,29.75,79.472 +153073,24.158,83.5252 +153074,25.655,82.1529 +153075,27.089,80.8043 +153076,28.47,79.477 +153077,22.782,83.4723 +153078,24.311,82.1195 +153079,25.777,80.7907 +153080,27.188,79.484 +153081,21.407,83.4184 +153082,22.967,82.0857 +153083,24.464,80.7776 +153084,25.906,79.492 +153085,20.033,83.3635 +153086,21.624,82.0516 +153087,23.151,80.7647 +153088,24.622,79.501 +153089,18.661,83.3075 +153090,20.282,82.0172 +153091,21.838,80.7522 +153092,23.337,79.51 +153093,17.289,83.2506 +153094,18.94,81.9824 +153095,20.524,80.74 +153096,22.051,79.521 +153097,15.919,83.1926 +153098,17.598,81.9474 +153099,19.21,80.7282 +153100,20.764,79.533 +153101,14.55,83.1337 +153102,16.256,81.912 +153103,17.895,80.7167 +153104,19.476,79.545 +153105,13.183,83.0738 +153106,14.916,81.8763 +153107,16.58,80.7055 +153108,18.187,79.559 +153109,11.816,83.013 +153110,13.575,81.8403 +153111,15.265,80.6946 +153112,16.897,79.573 +153113,10.451,82.9513 +153114,12.235,81.804 +153115,13.95,80.6839 +153116,15.605,79.589 +153117,9.0879,82.8887 +153118,10.896,81.7674 +153119,12.634,80.6736 +153120,14.312,79.605 +153121,7.7257,82.8253 +153122,9.5565,81.7306 +153123,11.317,80.6636 +153124,13.018,79.622 +153125,6.3648,82.761 +153126,8.2179,81.6934 +153127,10,80.6538 +153128,11.722,79.639 +153129,5.0054,82.6958 +153130,6.8798,81.656 +153131,8.6831,80.6443 +153132,10.426,79.658 +153133,3.6474,82.6299 +153134,5.5422,81.6184 +153135,7.3655,80.6351 +153136,9.1275,79.677 +153137,2.2909,82.5632 +153138,4.2051,81.5804 +153139,6.0474,80.6261 +153140,7.8282,79.697 +153141,0.93583,82.4957 +153142,2.8685,81.5423 +153143,4.7289,80.6174 +153144,6.5275,79.718 +153145,359.58,82.4275 +153146,1.5323,81.5039 +153147,3.41,80.6089 +153148,5.2255,79.74 +153149,358.23,82.3586 +153150,0.19673,81.4653 +153151,2.0906,80.6007 +153152,3.9221,79.762 +153153,356.88,82.289 +153154,358.86,81.4264 +153155,0.77085,80.5926 +153156,2.6174,79.785 +153157,355.53,82.2188 +153158,357.53,81.3874 +153159,359.45,80.5848 +153160,1.3113,79.808 +153161,354.18,82.1479 +153162,356.19,81.3481 +153163,358.13,80.5772 +153164,0.0037864,79.832 +153165,352.84,82.0764 +153166,354.86,81.3087 +153167,356.81,80.5698 +153168,358.69,79.857 +153169,351.49,82.0043 +153170,353.53,81.2691 +153171,355.49,80.5626 +153172,357.38,79.882 +153173,350.15,81.9317 +153174,352.19,81.2293 +153175,354.17,80.5555 +153176,356.07,79.907 +153177,348.81,81.8585 +153178,350.86,81.1893 +153179,352.84,80.5486 +153180,354.76,79.934 +153181,347.47,81.7848 +153182,349.53,81.1492 +153183,351.52,80.5419 +153184,353.44,79.96 +153185,346.13,81.7107 +153186,348.2,81.1089 +153187,350.2,80.5354 +153188,352.13,79.987 +153189,344.79,81.6361 +153190,346.87,81.0684 +153191,348.87,80.5289 +153192,350.81,80.0146 +153193,343.46,81.5611 +153194,345.54,81.0279 +153195,347.55,80.5227 +153196,349.49,80.0424 +153197,342.13,81.4857 +153198,344.21,80.9872 +153199,346.22,80.5165 +153200,348.17,80.0706 +153201,340.79,81.4099 +153202,342.88,80.9464 +153203,344.9,80.5105 +153204,346.85,80.0991 +153205,339.46,81.3338 +153206,341.55,80.9055 +153207,343.57,80.5045 +153208,345.53,80.1279 +153209,338.13,81.2573 +153210,340.23,80.8645 +153211,342.25,80.4987 +153212,344.2,80.157 +153213,336.81,81.1806 +153214,338.9,80.8234 +153215,340.92,80.493 +153216,342.88,80.1863 +153217,335.48,81.1037 +153218,337.57,80.7823 +153219,339.59,80.4873 +153220,341.55,80.2158 +153221,334.16,81.0265 +153222,336.25,80.7411 +153223,338.26,80.4817 +153224,340.22,80.2455 +153225,332.84,80.9491 +153226,334.92,80.6998 +153227,336.94,80.4762 +153228,338.89,80.2754 +153229,331.52,80.8716 +153230,333.6,80.6585 +153231,335.61,80.4707 +153232,337.56,80.3055 +153233,330.2,80.7939 +153234,332.27,80.6171 +153235,334.28,80.4653 +153236,336.22,80.3356 +153237,328.88,80.7162 +153238,330.95,80.5757 +153239,332.95,80.4599 +153240,334.89,80.3658 +153241,327.56,80.6383 +153242,329.62,80.5343 +153243,331.62,80.4545 +153244,333.55,80.3961 +153245,326.25,80.5604 +153246,328.3,80.4929 +153247,330.29,80.4492 +153248,332.21,80.4263 +153249,324.94,80.4825 +153250,326.98,80.4515 +153251,328.96,80.4438 +153252,330.87,80.4566 +153253,323.63,80.4046 +153254,325.66,80.4101 +153255,327.62,80.4384 +153256,329.53,80.4868 +153257,322.32,80.3268 +153258,324.34,80.3687 +153259,326.29,80.4331 +153260,328.19,80.517 +153261,321.01,80.249 +153262,323.02,80.3274 +153263,324.96,80.4277 +153264,326.84,80.5471 +153265,319.7,80.1713 +153266,321.7,80.2861 +153267,323.63,80.4222 +153268,325.5,80.5771 +153269,318.4,80.0938 +153270,320.38,80.2448 +153271,322.29,80.4168 +153272,324.15,80.6069 +153273,317.1,80.0164 +153274,319.06,80.2036 +153275,320.96,80.4112 +153276,322.8,80.6366 +153277,315.79,79.939 +153278,317.74,80.1625 +153279,319.63,80.4056 +153280,321.45,80.666 +153281,314.49,79.862 +153282,316.42,80.1215 +153283,318.29,80.4 +153284,320.1,80.6953 +153285,313.2,79.786 +153286,315.1,80.0805 +153287,316.95,80.3943 +153288,318.75,80.7243 +153289,311.9,79.709 +153290,313.79,80.0396 +153291,315.62,80.3884 +153292,317.4,80.753 +153293,310.6,79.633 +153294,312.47,79.999 +153295,314.28,80.3825 +153296,316.04,80.7814 +153297,309.31,79.557 +153298,311.16,79.958 +153299,312.95,80.3765 +153300,314.68,80.8094 +153301,308.02,79.482 +153302,309.84,79.918 +153303,311.61,80.3703 +153304,313.33,80.8371 +153305,306.72,79.407 +153306,308.53,79.877 +153307,310.27,80.3641 +153308,311.97,80.8644 +153309,305.43,79.332 +153310,307.21,79.837 +153311,308.93,80.3577 +153312,310.61,80.8913 +153313,304.15,79.258 +153314,305.9,79.797 +153315,307.6,80.3511 +153316,309.24,80.9178 +153317,302.86,79.184 +153318,304.58,79.757 +153319,306.26,80.3444 +153320,307.88,80.9438 +153321,301.57,79.111 +153322,303.27,79.717 +153323,304.92,80.3376 +153324,306.52,80.9693 +153325,300.29,79.038 +153326,301.96,79.678 +153327,303.58,80.3306 +153328,305.15,80.9943 +153329,299,78.966 +153330,300.65,79.638 +153331,302.24,80.3234 +153332,303.78,81.0188 +153333,297.72,78.895 +153334,299.33,79.599 +153335,300.9,80.316 +153336,302.41,81.0427 +153337,296.44,78.824 +153338,298.02,79.56 +153339,299.56,80.3084 +153340,301.05,81.066 +153341,295.16,78.753 +153342,296.71,79.521 +153343,298.22,80.3006 +153344,299.67,81.0887 +153345,293.88,78.684 +153346,295.4,79.483 +153347,296.88,80.2926 +153348,298.3,81.1108 +153349,292.61,78.615 +153350,294.09,79.445 +153351,295.53,80.2844 +153352,296.93,81.1322 +153353,291.33,78.547 +153354,292.78,79.407 +153355,294.19,80.276 +153356,295.56,81.1529 +153357,290.05,78.479 +153358,291.47,79.369 +153359,292.85,80.2673 +153360,294.18,81.173 +153361,288.78,78.413 +153362,290.17,79.331 +153363,291.51,80.2584 +153364,292.8,81.1923 +153365,287.51,78.347 +153366,288.86,79.294 +153367,290.16,80.2493 +153368,291.43,81.2108 +153369,286.24,78.281 +153370,287.55,79.257 +153371,288.82,80.2399 +153372,290.05,81.2286 +153373,284.97,78.217 +153374,286.24,79.22 +153375,287.48,80.2302 +153376,288.67,81.2457 +153377,283.7,78.154 +153378,284.93,79.184 +153379,286.13,80.2203 +153380,287.29,81.2619 +153381,282.43,78.091 +153382,283.63,79.147 +153383,284.79,80.2101 +153384,285.91,81.2772 +153385,281.16,78.029 +153386,282.32,79.111 +153387,283.44,80.1996 +153388,284.53,81.2918 +153389,279.89,77.969 +153390,281.01,79.076 +153391,282.1,80.1888 +153392,283.14,81.3054 +153393,278.63,77.909 +153394,279.71,79.041 +153395,280.75,80.1777 +153396,281.76,81.3182 +153397,277.36,77.85 +153398,278.4,79.006 +153399,279.41,80.1663 +153400,280.38,81.3301 +153401,276.1,77.792 +153402,277.1,78.971 +153403,278.06,80.1547 +153404,278.99,81.3411 +153405,274.83,77.735 +153406,275.79,78.937 +153407,276.72,80.1427 +153408,277.6,81.3511 +153409,273.57,77.679 +153410,274.49,78.903 +153411,275.37,80.1303 +153412,276.22,81.3602 +153413,272.31,77.624 +153414,273.18,78.869 +153415,274.02,80.1177 +153416,274.83,81.3683 +153417,271.05,77.57 +153418,271.88,78.836 +153419,272.68,80.1047 +153420,273.44,81.3754 +153421,269.78,77.518 +153422,270.57,78.803 +153423,271.33,80.0914 +153424,272.05,81.3815 +153425,268.52,77.466 +153426,269.27,78.77 +153427,269.98,80.0778 +153428,270.66,81.3866 +153429,267.26,77.415 +153430,267.97,78.738 +153431,268.64,80.0638 +153432,269.27,81.3906 +153433,266.01,77.366 +153434,266.66,78.706 +153435,267.29,80.0494 +153436,267.88,81.3936 +153437,264.75,77.317 +153438,265.36,78.675 +153439,265.94,80.0348 +153440,266.49,81.3956 +153441,263.49,77.27 +153442,264.06,78.644 +153443,264.59,80.0197 +153444,265.1,81.3965 +153445,262.23,77.224 +153446,262.75,78.613 +153447,263.25,80.0043 +153448,263.71,81.3963 +153449,260.97,77.179 +153450,261.45,78.583 +153451,261.9,79.989 +153452,262.31,81.395 +153453,259.72,77.135 +153454,260.15,78.553 +153455,260.55,79.972 +153456,260.92,81.3926 +153457,258.46,77.092 +153458,258.85,78.523 +153459,259.2,79.956 +153460,259.53,81.3891 +153461,257.2,77.051 +153462,257.55,78.494 +153463,257.85,79.939 +153464,258.13,81.3845 +153465,255.95,77.011 +153466,256.24,78.465 +153467,256.51,79.922 +153468,256.74,81.3787 +153469,254.69,76.972 +153470,254.94,78.437 +153471,255.16,79.904 +153472,255.34,81.3718 +153473,253.44,76.934 +153474,253.64,78.409 +153475,253.81,79.886 +153476,253.95,81.3637 +153477,252.18,76.897 +153478,252.34,78.381 +153479,252.46,79.867 +153480,252.55,81.3545 +153481,250.93,76.862 +153482,251.04,78.354 +153483,251.11,79.849 +153484,251.16,81.3441 +153485,249.67,76.828 +153486,249.73,78.327 +153487,249.76,79.829 +153488,249.76,81.3325 +153489,248.42,76.795 +153490,248.43,78.301 +153491,248.42,79.81 +153492,248.37,81.3198 +153493,247.16,76.763 +153494,247.13,78.275 +153495,247.07,79.79 +153496,246.97,81.3059 +153497,245.91,76.733 +153498,245.83,78.25 +153499,245.72,79.769 +153500,245.58,81.2908 +153501,244.65,76.703 +153502,244.53,78.225 +153503,244.37,79.749 +153504,244.18,81.2745 +153505,243.4,76.676 +153506,243.23,78.2 +153507,243.02,79.727 +153508,242.79,81.257 +153509,242.14,76.649 +153510,241.92,78.176 +153511,241.68,79.706 +153512,241.39,81.2383 +153513,240.88,76.623 +153514,240.62,78.152 +153515,240.33,79.684 +153516,240,81.2184 +153517,239.63,76.599 +153518,239.32,78.128 +153519,238.98,79.661 +153520,238.6,81.1973 +153521,238.37,76.576 +153522,238.02,78.105 +153523,237.63,79.639 +153524,237.21,81.175 +153525,237.12,76.555 +153526,236.72,78.083 +153527,236.28,79.615 +153528,235.81,81.1515 +153529,235.86,76.534 +153530,235.42,78.061 +153531,234.94,79.592 +153532,234.42,81.1267 +153533,234.6,76.515 +153534,234.11,78.039 +153535,233.59,79.568 +153536,233.03,81.1008 +153537,233.35,76.497 +153538,232.81,78.018 +153539,232.24,79.543 +153540,231.63,81.0737 +153541,232.09,76.48 +153542,231.51,77.997 +153543,230.89,79.519 +153544,230.24,81.0454 +153545,230.83,76.465 +153546,230.21,77.976 +153547,229.55,79.493 +153548,228.85,81.0159 +153549,229.57,76.451 +153550,228.91,77.956 +153551,228.2,79.468 +153552,227.45,80.9852 +153553,228.31,76.438 +153554,227.6,77.936 +153555,226.85,79.442 +153556,226.06,80.9533 +153557,227.05,76.426 +153558,226.3,77.917 +153559,225.51,79.415 +153560,224.67,80.9202 +153561,225.79,76.415 +153562,225,77.898 +153563,224.16,79.389 +153564,223.28,80.886 +153565,224.53,76.406 +153566,223.69,77.88 +153567,222.81,79.361 +153568,221.89,80.8506 +153569,223.27,76.398 +153570,222.39,77.862 +153571,221.47,79.334 +153572,220.5,80.814 +153573,222.01,76.391 +153574,221.09,77.844 +153575,220.12,79.306 +153576,219.11,80.7762 +153577,220.75,76.385 +153578,219.78,77.827 +153579,218.78,79.278 +153580,217.72,80.7373 +153581,219.49,76.381 +153582,218.48,77.81 +153583,217.43,79.249 +153584,216.34,80.6973 +153585,218.22,76.377 +153586,217.18,77.794 +153587,216.09,79.22 +153588,214.95,80.6561 +153589,216.96,76.375 +153590,215.87,77.777 +153591,214.74,79.19 +153592,213.56,80.6138 +153593,215.69,76.374 +153594,214.57,77.762 +153595,213.4,79.161 +153596,212.18,80.5704 +153597,214.42,76.374 +153598,213.26,77.746 +153599,212.05,79.13 +153600,210.79,80.5258 +153601,213.16,76.375 +153602,211.96,77.731 +153603,210.71,79.1 +153604,209.41,80.4802 +153605,211.89,76.377 +153606,210.65,77.717 +153607,209.37,79.069 +153608,208.03,80.4335 +153609,210.62,76.38 +153610,209.35,77.703 +153611,208.03,79.038 +153612,206.65,80.3857 +153613,209.35,76.384 +153614,208.04,77.689 +153615,206.68,79.006 +153616,205.27,80.3369 +153617,208.08,76.39 +153618,206.73,77.675 +153619,205.34,78.974 +153620,203.89,80.287 +153621,206.81,76.396 +153622,205.43,77.662 +153623,204,78.942 +153624,202.51,80.2361 +153625,205.53,76.403 +153626,204.12,77.649 +153627,202.66,78.909 +153628,201.13,80.1842 +153629,204.26,76.412 +153630,202.81,77.637 +153631,201.32,78.876 +153632,199.76,80.1313 +153633,202.98,76.421 +153634,201.51,77.625 +153635,199.98,78.843 +153636,198.38,80.0774 +153637,201.71,76.431 +153638,200.2,77.613 +153639,198.63,78.809 +153640,197.01,80.0225 +153641,200.43,76.443 +153642,198.89,77.601 +153643,197.3,78.776 +153644,195.64,79.967 +153645,199.15,76.455 +153646,197.58,77.59 +153647,195.96,78.741 +153648,194.26,79.91 +153649,197.87,76.468 +153650,196.27,77.579 +153651,194.62,78.707 +153652,192.89,79.852 +153653,196.59,76.482 +153654,194.96,77.569 +153655,193.28,78.672 +153656,191.53,79.794 +153657,195.31,76.497 +153658,193.65,77.558 +153659,191.94,78.637 +153660,190.16,79.734 +153661,194.02,76.512 +153662,192.34,77.548 +153663,190.6,78.602 +153664,188.79,79.674 +153665,192.74,76.529 +153666,191.03,77.539 +153667,189.27,78.566 +153668,187.43,79.613 +153669,191.45,76.546 +153670,189.72,77.529 +153671,187.93,78.53 +153672,186.06,79.551 +153673,190.17,76.564 +153674,188.41,77.52 +153675,186.59,78.494 +153676,184.7,79.488 +153677,188.88,76.583 +153678,187.1,77.511 +153679,185.26,78.458 +153680,183.34,79.425 +153681,187.59,76.603 +153682,185.79,77.502 +153683,183.92,78.421 +153684,181.98,79.36 +153685,186.3,76.623 +153686,184.47,77.494 +153687,182.59,78.384 +153688,180.62,79.295 +153689,185,76.644 +153690,183.16,77.486 +153691,181.25,78.347 +153692,179.27,79.23 +153693,183.71,76.665 +153694,181.85,77.478 +153695,179.92,78.31 +153696,177.91,79.163 +153697,182.41,76.688 +153698,180.53,77.47 +153699,178.58,78.272 +153700,176.56,79.096 +153701,181.12,76.711 +153702,179.22,77.463 +153703,177.25,78.235 +153704,175.21,79.028 +153705,179.82,76.734 +153706,177.9,77.455 +153707,175.92,78.197 +153708,173.86,78.96 +153709,178.52,76.758 +153710,176.59,77.448 +153711,174.59,78.159 +153712,172.51,78.891 +153713,177.22,76.783 +153714,175.27,77.441 +153715,173.26,78.12 +153716,171.16,78.821 +153717,175.91,76.808 +153718,173.95,77.435 +153719,171.93,78.082 +153720,169.82,78.751 +153721,174.61,76.833 +153722,172.64,77.428 +153723,170.6,78.043 +153724,168.47,78.681 +153725,173.3,76.859 +153726,171.32,77.422 +153727,169.27,78.004 +153728,167.13,78.61 +153729,172,76.886 +153730,170,77.415 +153731,167.94,77.965 +153732,165.79,78.538 +153733,170.69,76.912 +153734,168.68,77.409 +153735,166.61,77.926 +153736,164.45,78.466 +153737,169.38,76.94 +153738,167.36,77.403 +153739,165.28,77.887 +153740,163.12,78.394 +153741,168.07,76.967 +153742,166.05,77.397 +153743,163.95,77.848 +153744,161.78,78.321 +153745,166.75,76.995 +153746,164.73,77.392 +153747,162.63,77.808 +153748,160.45,78.248 +153749,165.44,77.023 +153750,163.41,77.386 +153751,161.3,77.769 +153752,159.11,78.174 +153753,164.12,77.052 +153754,162.08,77.38 +153755,159.98,77.729 +153756,157.78,78.101 +153757,162.8,77.081 +153758,160.76,77.375 +153759,158.65,77.69 +153760,156.45,78.027 +153761,161.48,77.11 +153762,159.44,77.37 +153763,157.33,77.65 +153764,155.13,77.952 +153765,160.16,77.139 +153766,158.12,77.364 +153767,156,77.61 +153768,153.8,77.878 +153769,158.84,77.168 +153770,156.8,77.359 +153771,154.68,77.57 +153772,152.48,77.803 +153773,157.52,77.197 +153774,155.47,77.354 +153775,153.36,77.53 +153776,151.16,77.728 +153777,156.19,77.227 +153778,154.15,77.349 +153779,152.03,77.49 +153780,149.84,77.653 +153781,154.86,77.257 +153782,152.82,77.344 +153783,150.71,77.45 +153784,148.52,77.578 +153785,153.53,77.286 +153786,151.5,77.339 +153787,149.39,77.41 +153788,147.2,77.503 +153789,152.2,77.316 +153790,150.17,77.334 +153791,148.07,77.37 +153792,145.88,77.427 +153793,150.87,77.346 +153794,148.85,77.329 +153795,146.75,77.33 +153796,144.57,77.352 +153797,149.54,77.375 +153798,147.52,77.324 +153799,145.43,77.29 +153800,143.26,77.277 +153801,148.2,77.405 +153802,146.19,77.319 +153803,144.11,77.25 +153804,141.95,77.201 +153805,146.87,77.434 +153806,144.87,77.314 +153807,142.79,77.21 +153808,140.64,77.126 +153809,145.53,77.464 +153810,143.54,77.309 +153811,141.48,77.17 +153812,139.33,77.051 +153813,144.19,77.493 +153814,142.21,77.303 +153815,140.16,77.13 +153816,138.03,76.976 +153817,142.85,77.522 +153818,140.88,77.298 +153819,138.84,77.09 +153820,136.72,76.901 +153821,141.51,77.551 +153822,139.55,77.293 +153823,137.53,77.05 +153824,135.42,76.826 +153825,140.16,77.58 +153826,138.22,77.288 +153827,136.21,77.011 +153828,134.12,76.752 +153829,138.82,77.608 +153830,136.89,77.282 +153831,134.9,76.971 +153832,132.82,76.677 +153833,137.47,77.636 +153834,135.56,77.277 +153835,133.58,76.932 +153836,131.52,76.603 +153837,136.12,77.664 +153838,134.23,77.271 +153839,132.27,76.892 +153840,130.23,76.53 +153841,134.77,77.692 +153842,132.9,77.266 +153843,130.95,76.853 +153844,128.94,76.456 +153845,133.42,77.719 +153846,131.56,77.26 +153847,129.64,76.814 +153848,127.64,76.383 +153849,132.07,77.746 +153850,130.23,77.254 +153851,128.33,76.775 +153852,126.35,76.311 +153853,130.71,77.772 +153854,128.9,77.248 +153855,127.02,76.736 +153856,125.06,76.238 +153857,129.36,77.798 +153858,127.56,77.242 +153859,125.71,76.697 +153860,123.77,76.166 +153861,128,77.824 +153862,126.23,77.235 +153863,124.39,76.658 +153864,122.49,76.095 +153865,126.64,77.849 +153866,124.9,77.229 +153867,123.08,76.62 +153868,121.2,76.024 +153869,125.28,77.873 +153870,123.56,77.222 +153871,121.77,76.582 +153872,119.92,75.954 +153873,123.92,77.897 +153874,122.22,77.216 +153875,120.46,76.544 +153876,118.64,75.884 +153877,122.56,77.921 +153878,120.89,77.209 +153879,119.16,76.506 +153880,117.36,75.814 +153881,121.2,77.944 +153882,119.55,77.202 +153883,117.85,76.468 +153884,116.08,75.746 +153885,119.83,77.966 +153886,118.22,77.194 +153887,116.54,76.431 +153888,114.8,75.677 +153889,118.46,77.988 +153890,116.88,77.187 +153891,115.23,76.393 +153892,113.52,75.61 +153893,117.1,78.009 +153894,115.54,77.179 +153895,113.93,76.356 +153896,112.25,75.543 +153897,115.73,78.029 +153898,114.2,77.171 +153899,112.62,76.319 +153900,110.97,75.477 +153901,114.36,78.049 +153902,112.86,77.163 +153903,111.31,76.283 +153904,109.7,75.411 +153905,112.99,78.067 +153906,111.52,77.154 +153907,110.01,76.247 +153908,108.43,75.347 +153909,111.62,78.086 +153910,110.19,77.146 +153911,108.7,76.21 +153912,107.16,75.283 +153913,110.24,78.103 +153914,108.85,77.137 +153915,107.4,76.175 +153916,105.89,75.22 +153917,108.87,78.12 +153918,107.51,77.127 +153919,106.09,76.139 +153920,104.62,75.157 +153921,107.49,78.136 +153922,106.17,77.118 +153923,104.79,76.104 +153924,103.36,75.096 +153925,106.12,78.151 +153926,104.83,77.108 +153927,103.48,76.069 +153928,102.09,75.035 +153929,104.74,78.165 +153930,103.48,77.098 +153931,102.18,76.034 +153932,100.83,74.975 +153933,103.36,78.178 +153934,102.14,77.088 +153935,100.88,76 +153936,99.562,74.916 +153937,101.98,78.191 +153938,100.8,77.077 +153939,99.576,75.966 +153940,98.299,74.858 +153941,100.6,78.203 +153942,99.46,77.067 +153943,98.274,75.932 +153944,97.038,74.801 +153945,99.217,78.213 +153946,98.118,77.055 +153947,96.972,75.898 +153948,95.777,74.745 +153949,97.835,78.223 +153950,96.775,77.044 +153951,95.67,75.865 +153952,94.517,74.689 +153953,96.451,78.232 +153954,95.433,77.032 +153955,94.369,75.832 +153956,93.259,74.635 +153957,95.067,78.24 +153958,94.09,77.02 +153959,93.068,75.8 +153960,92.001,74.582 +153961,93.682,78.247 +153962,92.746,77.008 +153963,91.767,75.768 +153964,90.744,74.53 +153965,92.297,78.253 +153966,91.403,76.995 +153967,90.467,75.736 +153968,89.487,74.478 +153969,90.91,78.258 +153970,90.059,76.982 +153971,89.167,75.705 +153972,88.232,74.428 +153973,89.523,78.262 +153974,88.715,76.968 +153975,87.867,75.673 +153976,86.977,74.379 +153977,88.135,78.265 +153978,87.371,76.955 +153979,86.567,75.643 +153980,85.722,74.331 +153981,86.746,78.267 +153982,86.027,76.941 +153983,85.268,75.612 +153984,84.469,74.284 +153985,85.357,78.268 +153986,84.682,76.926 +153987,83.969,75.582 +153988,83.216,74.238 +153989,83.967,78.267 +153990,83.338,76.911 +153991,82.67,75.553 +153992,81.963,74.194 +153993,82.577,78.266 +153994,81.993,76.896 +153995,81.371,75.523 +153996,80.712,74.15 +153997,81.186,78.264 +153998,80.648,76.881 +153999,80.073,75.495 +154000,79.46,74.107 +154001,79.795,78.26 +154002,79.302,76.865 +154003,78.774,75.466 +154004,78.209,74.066 +154005,78.403,78.256 +154006,77.957,76.848 +154007,77.476,75.438 +154008,76.959,74.026 +154009,77.011,78.25 +154010,76.612,76.832 +154011,76.178,75.41 +154012,75.709,73.987 +154013,75.618,78.243 +154014,75.266,76.815 +154015,74.88,75.383 +154016,74.459,73.949 +154017,74.225,78.235 +154018,73.921,76.797 +154019,73.582,75.356 +154020,73.209,73.913 +154021,72.831,78.226 +154022,72.575,76.78 +154023,72.285,75.329 +154024,71.96,73.877 +154025,71.438,78.216 +154026,71.229,76.761 +154027,70.987,75.303 +154028,70.711,73.843 +154029,70.044,78.205 +154030,69.883,76.743 +154031,69.69,75.277 +154032,69.463,73.81 +154033,68.65,78.192 +154034,68.537,76.724 +154035,68.392,75.252 +154036,68.214,73.778 +154037,67.255,78.179 +154038,67.192,76.705 +154039,67.095,75.227 +154040,66.966,73.748 +154041,65.861,78.164 +154042,65.846,76.685 +154043,65.798,75.203 +154044,65.717,73.718 +154045,64.466,78.148 +154046,64.5,76.665 +154047,64.501,75.178 +154048,64.469,73.69 +154049,63.072,78.131 +154050,63.154,76.644 +154051,63.203,75.155 +154052,63.221,73.663 +154053,61.677,78.112 +154054,61.808,76.624 +154055,61.906,75.131 +154056,61.972,73.637 +154057,60.282,78.093 +154058,60.462,76.602 +154059,60.609,75.109 +154060,60.724,73.613 +154061,58.888,78.072 +154062,59.116,76.581 +154063,59.312,75.086 +154064,59.476,73.59 +154065,57.493,78.05 +154066,57.77,76.559 +154067,58.015,75.064 +154068,58.227,73.568 +154069,56.098,78.027 +154070,56.424,76.536 +154071,56.717,75.042 +154072,56.978,73.547 +154073,54.704,78.003 +154074,55.079,76.513 +154075,55.42,75.021 +154076,55.729,73.528 +154077,53.31,77.978 +154078,53.733,76.49 +154079,54.123,75 +154080,54.48,73.509 +154081,51.916,77.951 +154082,52.388,76.466 +154083,52.825,74.98 +154084,53.23,73.492 +154085,50.522,77.923 +154086,51.042,76.442 +154087,51.528,74.96 +154088,51.981,73.476 +154089,49.129,77.895 +154090,49.697,76.418 +154091,50.23,74.94 +154092,50.73,73.462 +154093,47.736,77.865 +154094,48.352,76.393 +154095,48.933,74.921 +154096,49.48,73.448 +154097,46.343,77.833 +154098,47.007,76.368 +154099,47.635,74.902 +154100,48.229,73.436 +154101,44.951,77.801 +154102,45.662,76.342 +154103,46.337,74.883 +154104,46.977,73.425 +154105,43.559,77.767 +154106,44.318,76.316 +154107,45.039,74.865 +154108,45.725,73.415 +154109,42.168,77.733 +154110,42.973,76.29 +154111,43.741,74.848 +154112,44.473,73.407 +154113,40.777,77.697 +154114,41.629,76.263 +154115,42.442,74.831 +154116,43.22,73.399 +154117,39.386,77.66 +154118,40.285,76.236 +154119,41.144,74.814 +154120,41.966,73.393 +154121,37.997,77.622 +154122,38.941,76.209 +154123,39.845,74.797 +154124,40.712,73.388 +154125,36.608,77.583 +154126,37.597,76.181 +154127,38.546,74.781 +154128,39.457,73.384 +154129,35.219,77.542 +154130,36.254,76.153 +154131,37.247,74.765 +154132,38.201,73.381 +154133,33.831,77.501 +154134,34.911,76.124 +154135,35.947,74.75 +154136,36.944,73.379 +154137,32.444,77.458 +154138,33.568,76.095 +154139,34.648,74.735 +154140,35.687,73.379 +154141,31.058,77.415 +154142,32.226,76.066 +154143,33.348,74.721 +154144,34.429,73.379 +154145,29.673,77.37 +154146,30.883,76.036 +154147,32.047,74.706 +154148,33.17,73.381 +154149,28.288,77.325 +154150,29.541,76.006 +154151,30.747,74.692 +154152,31.911,73.383 +154153,26.904,77.278 +154154,28.2,75.976 +154155,29.446,74.679 +154156,30.65,73.387 +154157,25.522,77.23 +154158,26.858,75.945 +154159,28.145,74.666 +154160,29.388,73.392 +154161,24.14,77.181 +154162,25.517,75.914 +154163,26.844,74.653 +154164,28.126,73.398 +154165,22.759,77.132 +154166,24.177,75.883 +154167,25.542,74.641 +154168,26.862,73.405 +154169,21.379,77.081 +154170,22.837,75.851 +154171,24.241,74.628 +154172,25.598,73.412 +154173,20,77.029 +154174,21.497,75.819 +154175,22.938,74.617 +154176,24.332,73.421 +154177,18.622,76.976 +154178,20.157,75.787 +154179,21.636,74.605 +154180,23.065,73.431 +154181,17.245,76.923 +154182,18.818,75.754 +154183,20.333,74.594 +154184,21.798,73.442 +154185,15.87,76.868 +154186,17.479,75.721 +154187,19.03,74.583 +154188,20.529,73.454 +154189,14.495,76.813 +154190,16.141,75.688 +154191,17.726,74.573 +154192,19.259,73.466 +154193,13.122,76.756 +154194,14.803,75.655 +154195,16.422,74.562 +154196,17.988,73.48 +154197,11.75,76.699 +154198,13.465,75.621 +154199,15.117,74.553 +154200,16.715,73.494 +154201,10.379,76.641 +154202,12.128,75.587 +154203,13.813,74.543 +154204,15.442,73.509 +154205,9.01,76.582 +154206,10.791,75.552 +154207,12.507,74.534 +154208,14.167,73.525 +154209,7.6418,76.522 +154210,9.4553,75.518 +154211,11.202,74.525 +154212,12.891,73.542 +154213,6.275,76.462 +154214,8.1195,75.483 +154215,9.8957,74.516 +154216,11.613,73.56 +154217,4.9095,76.4 +154218,6.7842,75.448 +154219,8.5893,74.507 +154220,10.335,73.578 +154221,3.5454,76.338 +154222,5.4494,75.412 +154223,7.2824,74.499 +154224,9.0545,73.597 +154225,2.1827,76.275 +154226,4.115,75.377 +154227,5.9751,74.491 +154228,7.7731,73.617 +154229,0.82145,76.212 +154230,2.7812,75.341 +154231,4.6673,74.483 +154232,6.4903,73.638 +154233,359.46,76.147 +154234,1.4478,75.305 +154235,3.3591,74.475 +154236,5.2061,73.659 +154237,358.1,76.082 +154238,0.11495,75.268 +154239,2.0504,74.468 +154240,3.9205,73.681 +154241,356.75,76.017 +154242,358.78,75.232 +154243,0.74125,74.461 +154244,2.6335,73.703 +154245,355.39,75.951 +154246,357.45,75.195 +154247,359.43,74.454 +154248,1.3451,73.726 +154249,354.04,75.884 +154250,356.12,75.158 +154251,358.12,74.447 +154252,0.055155,73.75 +154253,352.69,75.817 +154254,354.79,75.121 +154255,356.81,74.441 +154256,358.76,73.774 +154257,351.33,75.749 +154258,353.46,75.084 +154259,355.5,74.434 +154260,357.47,73.799 +154261,349.99,75.68 +154262,352.13,75.046 +154263,354.19,74.428 +154264,356.18,73.824 +154265,348.64,75.611 +154266,350.8,75.009 +154267,352.88,74.422 +154268,354.88,73.85 +154269,347.29,75.542 +154270,349.47,74.971 +154271,351.56,74.416 +154272,353.58,73.876 +154273,345.95,75.472 +154274,348.14,74.933 +154275,350.25,74.411 +154276,352.28,73.903 +154277,344.61,75.401 +154278,346.82,74.895 +154279,348.94,74.405 +154280,350.98,73.93 +154281,343.27,75.331 +154282,345.49,74.857 +154283,347.62,74.4 +154284,349.68,73.957 +154285,341.93,75.259 +154286,344.16,74.819 +154287,346.31,74.394 +154288,348.38,73.985 +154289,340.59,75.188 +154290,342.84,74.78 +154291,344.99,74.389 +154292,347.07,74.013 +154293,339.25,75.116 +154294,341.51,74.742 +154295,343.68,74.384 +154296,345.77,74.041 +154297,337.92,75.044 +154298,340.19,74.703 +154299,342.36,74.379 +154300,344.46,74.07 +154301,336.59,74.972 +154302,338.86,74.664 +154303,341.04,74.374 +154304,343.15,74.099 +154305,335.26,74.899 +154306,337.54,74.626 +154307,339.73,74.369 +154308,341.84,74.128 +154309,333.93,74.826 +154310,336.22,74.587 +154311,338.41,74.364 +154312,340.52,74.157 +154313,332.6,74.753 +154314,334.89,74.548 +154315,337.09,74.36 +154316,339.21,74.187 +154317,331.28,74.68 +154318,333.57,74.509 +154319,335.77,74.355 +154320,337.89,74.216 +154321,329.95,74.607 +154322,332.25,74.47 +154323,334.45,74.35 +154324,336.57,74.246 +154325,328.63,74.533 +154326,330.93,74.431 +154327,333.13,74.346 +154328,335.26,74.275 +154329,327.31,74.46 +154330,329.61,74.392 +154331,331.81,74.341 +154332,333.93,74.305 +154333,325.99,74.386 +154334,328.29,74.353 +154335,330.49,74.337 +154336,332.61,74.335 +154337,324.68,74.312 +154338,326.97,74.314 +154339,329.17,74.332 +154340,331.29,74.364 +154341,323.36,74.239 +154342,325.65,74.275 +154343,327.85,74.327 +154344,329.96,74.394 +154345,322.05,74.165 +154346,324.33,74.236 +154347,326.53,74.323 +154348,328.63,74.424 +154349,320.74,74.092 +154350,323.02,74.197 +154351,325.2,74.318 +154352,327.3,74.453 +154353,319.43,74.018 +154354,321.7,74.158 +154355,323.88,74.314 +154356,325.97,74.483 +154357,318.12,73.945 +154358,320.39,74.119 +154359,322.56,74.309 +154360,324.64,74.512 +154361,316.81,73.872 +154362,319.07,74.08 +154363,321.23,74.304 +154364,323.31,74.541 +154365,315.51,73.799 +154366,317.76,74.042 +154367,319.91,74.299 +154368,321.97,74.57 +154369,314.21,73.726 +154370,316.44,74.003 +154371,318.58,74.294 +154372,320.63,74.598 +154373,312.91,73.653 +154374,315.13,73.964 +154375,317.25,74.29 +154376,319.3,74.627 +154377,311.61,73.581 +154378,313.81,73.926 +154379,315.93,74.284 +154380,317.96,74.655 +154381,310.31,73.509 +154382,312.5,73.887 +154383,314.6,74.279 +154384,316.61,74.683 +154385,309.01,73.437 +154386,311.19,73.849 +154387,313.27,74.274 +154388,315.27,74.71 +154389,307.72,73.366 +154390,309.88,73.811 +154391,311.94,74.269 +154392,313.93,74.737 +154393,306.43,73.295 +154394,308.57,73.773 +154395,310.61,74.263 +154396,312.58,74.764 +154397,305.14,73.224 +154398,307.26,73.735 +154399,309.29,74.258 +154400,311.23,74.79 +154401,303.85,73.154 +154402,305.95,73.697 +154403,307.96,74.252 +154404,309.88,74.816 +154405,302.56,73.084 +154406,304.64,73.659 +154407,306.62,74.246 +154408,308.53,74.842 +154409,301.28,73.014 +154410,303.33,73.622 +154411,305.29,74.24 +154412,307.18,74.866 +154413,299.99,72.946 +154414,302.02,73.585 +154415,303.96,74.234 +154416,305.83,74.891 +154417,298.71,72.877 +154418,300.71,73.547 +154419,302.63,74.227 +154420,304.47,74.915 +154421,297.43,72.81 +154422,299.41,73.51 +154423,301.3,74.221 +154424,303.11,74.938 +154425,296.15,72.742 +154426,298.1,73.474 +154427,299.97,74.214 +154428,301.76,74.961 +154429,294.87,72.676 +154430,296.79,73.437 +154431,298.63,74.207 +154432,300.4,74.983 +154433,293.59,72.61 +154434,295.49,73.401 +154435,297.3,74.2 +154436,299.04,75.004 +154437,292.32,72.545 +154438,294.18,73.365 +154439,295.97,74.192 +154440,297.67,75.025 +154441,291.05,72.48 +154442,292.88,73.329 +154443,294.63,74.185 +154444,296.31,75.045 +154445,289.77,72.416 +154446,291.57,73.293 +154447,293.3,74.177 +154448,294.94,75.065 +154449,288.5,72.353 +154450,290.27,73.258 +154451,291.96,74.169 +154452,293.58,75.084 +154453,287.23,72.29 +154454,288.97,73.223 +154455,290.62,74.161 +154456,292.21,75.102 +154457,285.97,72.228 +154458,287.67,73.188 +154459,289.29,74.152 +154460,290.84,75.119 +154461,284.7,72.168 +154462,286.36,73.153 +154463,287.95,74.143 +154464,289.47,75.135 +154465,283.43,72.107 +154466,285.06,73.119 +154467,286.62,74.134 +154468,288.1,75.151 +154469,282.17,72.048 +154470,283.76,73.085 +154471,285.28,74.125 +154472,286.73,75.166 +154473,280.91,71.99 +154474,282.46,73.051 +154475,283.94,74.115 +154476,285.36,75.18 +154477,279.64,71.932 +154478,281.16,73.017 +154479,282.6,74.105 +154480,283.98,75.193 +154481,278.38,71.875 +154482,279.86,72.984 +154483,281.26,74.095 +154484,282.61,75.205 +154485,277.12,71.82 +154486,278.56,72.951 +154487,279.92,74.084 +154488,281.23,75.217 +154489,275.87,71.765 +154490,277.26,72.919 +154491,278.59,74.073 +154492,279.85,75.227 +154493,274.61,71.711 +154494,275.96,72.886 +154495,277.25,74.062 +154496,278.47,75.237 +154497,273.35,71.658 +154498,274.66,72.854 +154499,275.91,74.051 +154500,277.1,75.246 +154501,272.1,71.606 +154502,273.36,72.823 +154503,274.57,74.039 +154504,275.71,75.253 +154505,270.84,71.555 +154506,272.06,72.791 +154507,273.23,74.027 +154508,274.33,75.26 +154509,269.59,71.505 +154510,270.77,72.76 +154511,271.89,74.015 +154512,272.95,75.266 +154513,268.34,71.456 +154514,269.47,72.73 +154515,270.54,74.002 +154516,271.57,75.271 +154517,267.08,71.408 +154518,268.17,72.699 +154519,269.2,73.989 +154520,270.18,75.274 +154521,265.83,71.362 +154522,266.87,72.67 +154523,267.86,73.975 +154524,268.8,75.277 +154525,264.58,71.316 +154526,265.58,72.64 +154527,266.52,73.962 +154528,267.41,75.279 +154529,263.33,71.271 +154530,264.28,72.611 +154531,265.18,73.947 +154532,266.03,75.279 +154533,262.09,71.228 +154534,262.99,72.582 +154535,263.84,73.933 +154536,264.64,75.279 +154537,260.84,71.185 +154538,261.69,72.553 +154539,262.49,73.918 +154540,263.25,75.277 +154541,259.59,71.144 +154542,260.39,72.525 +154543,261.15,73.903 +154544,261.86,75.275 +154545,258.34,71.104 +154546,259.1,72.498 +154547,259.81,73.887 +154548,260.47,75.271 +154549,257.1,71.065 +154550,257.8,72.47 +154551,258.47,73.871 +154552,259.08,75.266 +154553,255.85,71.027 +154554,256.51,72.443 +154555,257.12,73.855 +154556,257.69,75.26 +154557,254.61,70.99 +154558,255.21,72.417 +154559,255.78,73.838 +154560,256.3,75.253 +154561,253.36,70.955 +154562,253.92,72.39 +154563,254.44,73.821 +154564,254.91,75.245 +154565,252.12,70.92 +154566,252.63,72.365 +154567,253.09,73.804 +154568,253.52,75.236 +154569,250.87,70.887 +154570,251.33,72.339 +154571,251.75,73.786 +154572,252.13,75.225 +154573,249.63,70.855 +154574,250.04,72.314 +154575,250.4,73.768 +154576,250.73,75.214 +154577,248.39,70.825 +154578,248.74,72.29 +154579,249.06,73.749 +154580,249.34,75.201 +154581,247.14,70.795 +154582,247.45,72.265 +154583,247.72,73.73 +154584,247.95,75.187 +154585,245.9,70.767 +154586,246.15,72.242 +154587,246.37,73.711 +154588,246.55,75.172 +154589,244.66,70.74 +154590,244.86,72.218 +154591,245.03,73.691 +154592,245.16,75.156 +154593,243.42,70.714 +154594,243.57,72.195 +154595,243.68,73.671 +154596,243.77,75.139 +154597,242.17,70.689 +154598,242.27,72.172 +154599,242.34,73.65 +154600,242.37,75.12 +154601,240.93,70.666 +154602,240.98,72.15 +154603,241,73.629 +154604,240.98,75.1 +154605,239.69,70.643 +154606,239.69,72.128 +154607,239.65,73.608 +154608,239.58,75.079 +154609,238.45,70.622 +154610,238.39,72.107 +154611,238.31,73.586 +154612,238.19,75.057 +154613,237.2,70.602 +154614,237.1,72.086 +154615,236.96,73.564 +154616,236.79,75.034 +154617,235.96,70.584 +154618,235.81,72.065 +154619,235.62,73.541 +154620,235.4,75.01 +154621,234.72,70.566 +154622,234.51,72.045 +154623,234.27,73.518 +154624,234.01,74.984 +154625,233.48,70.55 +154626,233.22,72.025 +154627,232.93,73.495 +154628,232.61,74.957 +154629,232.23,70.535 +154630,231.92,72.006 +154631,231.59,73.471 +154632,231.22,74.929 +154633,230.99,70.522 +154634,230.63,71.987 +154635,230.24,73.447 +154636,229.82,74.9 +154637,229.74,70.509 +154638,229.34,71.968 +154639,228.9,73.422 +154640,228.43,74.87 +154641,228.5,70.498 +154642,228.04,71.95 +154643,227.56,73.397 +154644,227.04,74.839 +154645,227.26,70.488 +154646,226.75,71.932 +154647,226.21,73.372 +154648,225.64,74.806 +154649,226.01,70.479 +154650,225.46,71.915 +154651,224.87,73.346 +154652,224.25,74.772 +154653,224.77,70.471 +154654,224.16,71.898 +154655,223.52,73.32 +154656,222.86,74.738 +154657,223.52,70.464 +154658,222.87,71.881 +154659,222.18,73.294 +154660,221.46,74.702 +154661,222.27,70.459 +154662,221.57,71.865 +154663,220.84,73.267 +154664,220.07,74.665 +154665,221.03,70.454 +154666,220.28,71.849 +154667,219.5,73.24 +154668,218.68,74.626 +154669,219.78,70.451 +154670,218.98,71.833 +154671,218.15,73.212 +154672,217.29,74.587 +154673,218.53,70.449 +154674,217.69,71.818 +154675,216.81,73.184 +154676,215.9,74.547 +154677,217.28,70.448 +154678,216.39,71.803 +154679,215.47,73.156 +154680,214.51,74.505 +154681,216.03,70.448 +154682,215.1,71.789 +154683,214.13,73.127 +154684,213.12,74.463 +154685,214.78,70.45 +154686,213.8,71.775 +154687,212.79,73.098 +154688,211.73,74.419 +154689,213.53,70.452 +154690,212.5,71.761 +154691,211.44,73.069 +154692,210.34,74.374 +154693,212.28,70.455 +154694,211.21,71.748 +154695,210.1,73.039 +154696,208.96,74.329 +154697,211.02,70.46 +154698,209.91,71.735 +154699,208.76,73.009 +154700,207.57,74.282 +154701,209.77,70.465 +154702,208.61,71.722 +154703,207.42,72.979 +154704,206.19,74.234 +154705,208.52,70.472 +154706,207.32,71.71 +154707,206.08,72.948 +154708,204.8,74.185 +154709,207.26,70.479 +154710,206.02,71.698 +154711,204.74,72.917 +154712,203.42,74.135 +154713,206,70.488 +154714,204.72,71.686 +154715,203.4,72.885 +154716,202.03,74.084 +154717,204.75,70.497 +154718,203.43,71.675 +154719,202.06,72.854 +154720,200.65,74.033 +154721,203.49,70.508 +154722,202.13,71.664 +154723,200.72,72.822 +154724,199.27,73.98 +154725,202.23,70.519 +154726,200.83,71.653 +154727,199.38,72.789 +154728,197.89,73.926 +154729,200.97,70.531 +154730,199.53,71.643 +154731,198.05,72.757 +154732,196.51,73.872 +154733,199.71,70.545 +154734,198.23,71.633 +154735,196.71,72.724 +154736,195.13,73.816 +154737,198.44,70.559 +154738,196.93,71.623 +154739,195.37,72.69 +154740,193.76,73.76 +154741,197.18,70.574 +154742,195.63,71.613 +154743,194.03,72.657 +154744,192.38,73.703 +154745,195.91,70.589 +154746,194.33,71.604 +154747,192.7,72.623 +154748,191.01,73.645 +154749,194.65,70.606 +154750,193.03,71.595 +154751,191.36,72.589 +154752,189.63,73.586 +154753,193.38,70.623 +154754,191.73,71.587 +154755,190.03,72.554 +154756,188.26,73.526 +154757,192.11,70.642 +154758,190.43,71.578 +154759,188.69,72.52 +154760,186.89,73.466 +154761,190.84,70.661 +154762,189.12,71.57 +154763,187.35,72.485 +154764,185.52,73.404 +154765,189.57,70.68 +154766,187.82,71.562 +154767,186.02,72.45 +154768,184.15,73.342 +154769,188.29,70.701 +154770,186.52,71.554 +154771,184.69,72.414 +154772,182.79,73.28 +154773,187.02,70.722 +154774,185.22,71.547 +154775,183.35,72.379 +154776,181.42,73.216 +154777,185.74,70.743 +154778,183.91,71.54 +154779,182.02,72.343 +154780,180.06,73.152 +154781,184.46,70.766 +154782,182.61,71.533 +154783,180.69,72.307 +154784,178.7,73.087 +154785,183.19,70.789 +154786,181.3,71.526 +154787,179.36,72.27 +154788,177.33,73.022 +154789,181.91,70.812 +154790,180,71.519 +154791,178.02,72.234 +154792,175.97,72.956 +154793,180.62,70.836 +154794,178.69,71.513 +154795,176.69,72.197 +154796,174.62,72.889 +154797,179.34,70.861 +154798,177.39,71.507 +154799,175.36,72.16 +154800,173.26,72.822 +154801,178.06,70.886 +154802,176.08,71.501 +154803,174.03,72.123 +154804,171.9,72.754 +154805,176.77,70.912 +154806,174.77,71.495 +154807,172.7,72.086 +154808,170.55,72.686 +154809,175.48,70.938 +154810,173.46,71.489 +154811,171.37,72.049 +154812,169.2,72.617 +154813,174.19,70.965 +154814,172.16,71.483 +154815,170.05,72.011 +154816,167.85,72.548 +154817,172.9,70.992 +154818,170.85,71.478 +154819,168.72,71.973 +154820,166.5,72.478 +154821,171.61,71.019 +154822,169.54,71.473 +154823,167.39,71.935 +154824,165.15,72.408 +154825,170.31,71.047 +154826,168.23,71.467 +154827,166.06,71.898 +154828,163.81,72.338 +154829,169.02,71.075 +154830,166.92,71.462 +154831,164.74,71.859 +154832,162.47,72.267 +154833,167.72,71.103 +154834,165.61,71.457 +154835,163.41,71.821 +154836,161.12,72.195 +154837,166.42,71.132 +154838,164.3,71.452 +154839,162.09,71.783 +154840,159.78,72.124 +154841,165.12,71.161 +154842,162.98,71.448 +154843,160.76,71.745 +154844,158.44,72.052 +154845,163.82,71.19 +154846,161.67,71.443 +154847,159.44,71.706 +154848,157.11,71.98 +154849,162.52,71.219 +154850,160.36,71.438 +154851,158.12,71.668 +154852,155.77,71.908 +154853,161.21,71.249 +154854,159.04,71.434 +154855,156.79,71.629 +154856,154.44,71.835 +154857,159.9,71.278 +154858,157.73,71.429 +154859,155.47,71.59 +154860,153.11,71.762 +154861,158.59,71.308 +154862,156.42,71.425 +154863,154.15,71.552 +154864,151.78,71.689 +154865,157.28,71.338 +154866,155.1,71.42 +154867,152.83,71.513 +154868,150.45,71.616 +154869,155.97,71.367 +154870,153.79,71.416 +154871,151.51,71.474 +154872,149.13,71.543 +154873,154.66,71.397 +154874,152.47,71.411 +154875,150.19,71.435 +154876,147.8,71.47 +154877,153.34,71.427 +154878,151.15,71.407 +154879,148.87,71.396 +154880,146.48,71.397 +154881,152.03,71.457 +154882,149.83,71.402 +154883,147.55,71.357 +154884,145.16,71.323 +154885,150.71,71.487 +154886,148.52,71.398 +154887,146.23,71.319 +154888,143.84,71.25 +154889,149.39,71.517 +154890,147.2,71.394 +154891,144.92,71.28 +154892,142.52,71.177 +154893,148.06,71.546 +154894,145.88,71.389 +154895,143.6,71.241 +154896,141.21,71.104 +154897,146.74,71.576 +154898,144.56,71.385 +154899,142.28,71.202 +154900,139.9,71.031 +154901,145.42,71.605 +154902,143.24,71.38 +154903,140.97,71.164 +154904,138.59,70.958 +154905,144.09,71.634 +154906,141.92,71.375 +154907,139.65,71.125 +154908,137.28,70.885 +154909,142.76,71.663 +154910,140.6,71.371 +154911,138.34,71.086 +154912,135.97,70.812 +154913,141.43,71.692 +154914,139.28,71.366 +154915,137.02,71.048 +154916,134.66,70.74 +154917,140.1,71.72 +154918,137.95,71.361 +154919,135.71,71.009 +154920,133.36,70.668 +154921,138.76,71.748 +154922,136.63,71.356 +154923,134.4,70.971 +154924,132.06,70.596 +154925,137.43,71.776 +154926,135.31,71.351 +154927,133.09,70.933 +154928,130.76,70.524 +154929,136.09,71.803 +154930,133.98,71.345 +154931,131.78,70.895 +154932,129.46,70.453 +154933,134.75,71.83 +154934,132.66,71.34 +154935,130.47,70.857 +154936,128.16,70.382 +154937,133.41,71.857 +154938,131.33,71.335 +154939,129.16,70.819 +154940,126.87,70.311 +154941,132.07,71.883 +154942,130.01,71.329 +154943,127.85,70.781 +154944,125.57,70.241 +154945,130.73,71.909 +154946,128.68,71.323 +154947,126.54,70.743 +154948,124.28,70.171 +154949,129.38,71.934 +154950,127.36,71.317 +154951,125.23,70.706 +154952,122.99,70.101 +154953,128.04,71.959 +154954,126.03,71.311 +154955,123.92,70.669 +154956,121.71,70.033 +154957,126.69,71.983 +154958,124.7,71.305 +154959,122.61,70.631 +154960,120.42,69.964 +154961,125.34,72.007 +154962,123.37,71.299 +154963,121.31,70.594 +154964,119.13,69.896 +154965,123.99,72.03 +154966,122.04,71.292 +154967,120,70.558 +154968,117.85,69.829 +154969,122.64,72.052 +154970,120.71,71.285 +154971,118.7,70.521 +154972,116.57,69.762 +154973,121.28,72.074 +154974,119.38,71.278 +154975,117.39,70.485 +154976,115.29,69.696 +154977,119.93,72.095 +154978,118.05,71.271 +154979,116.09,70.448 +154980,114.01,69.63 +154981,118.57,72.116 +154982,116.72,71.263 +154983,114.78,70.413 +154984,112.74,69.566 +154985,117.22,72.136 +154986,115.39,71.256 +154987,113.48,70.377 +154988,111.46,69.501 +154989,115.86,72.155 +154990,114.06,71.248 +154991,112.18,70.341 +154992,110.19,69.438 +154993,114.49,72.173 +154994,112.73,71.239 +154995,110.87,70.306 +154996,108.92,69.375 +154997,113.13,72.191 +154998,111.4,71.231 +154999,109.57,70.271 +155000,107.65,69.313 +155001,111.77,72.208 +155002,110.06,71.222 +155003,108.27,70.236 +155004,106.38,69.252 +155005,110.4,72.224 +155006,108.73,71.213 +155007,106.97,70.202 +155008,105.11,69.191 +155009,109.04,72.239 +155010,107.4,71.204 +155011,105.67,70.167 +155012,103.85,69.132 +155013,107.67,72.253 +155014,106.06,71.194 +155015,104.37,70.133 +155016,102.58,69.073 +155017,106.3,72.267 +155018,104.73,71.185 +155019,103.07,70.1 +155020,101.32,69.015 +155021,104.93,72.28 +155022,103.39,71.174 +155023,101.77,70.066 +155024,100.06,68.958 +155025,103.56,72.292 +155026,102.06,71.164 +155027,100.47,70.033 +155028,98.799,68.901 +155029,102.19,72.302 +155030,100.72,71.153 +155031,99.173,70 +155032,97.54,68.846 +155033,100.82,72.312 +155034,99.384,71.142 +155035,97.876,69.968 +155036,96.283,68.792 +155037,99.441,72.321 +155038,98.047,71.131 +155039,96.578,69.936 +155040,95.026,68.738 +155041,98.065,72.329 +155042,96.71,71.119 +155043,95.281,69.904 +155044,93.771,68.686 +155045,96.688,72.337 +155046,95.373,71.107 +155047,93.985,69.872 +155048,92.517,68.634 +155049,95.311,72.343 +155050,94.035,71.095 +155051,92.689,69.841 +155052,91.264,68.584 +155053,93.932,72.348 +155054,92.697,71.082 +155055,91.393,69.81 +155056,90.013,68.534 +155057,92.552,72.352 +155058,91.359,71.069 +155059,90.097,69.78 +155060,88.762,68.486 +155061,91.171,72.355 +155062,90.02,71.056 +155063,88.802,69.75 +155064,87.512,68.438 +155065,89.79,72.357 +155066,88.681,71.042 +155067,87.507,69.72 +155068,86.263,68.392 +155069,88.407,72.358 +155070,87.342,71.028 +155071,86.213,69.69 +155072,85.016,68.347 +155073,87.023,72.358 +155074,86.002,71.013 +155075,84.919,69.661 +155076,83.769,68.303 +155077,85.639,72.357 +155078,84.662,70.999 +155079,83.625,69.632 +155080,82.523,68.26 +155081,84.254,72.354 +155082,83.322,70.983 +155083,82.332,69.604 +155084,81.278,68.218 +155085,82.868,72.351 +155086,81.982,70.968 +155087,81.038,69.576 +155088,80.033,68.177 +155089,81.481,72.346 +155090,80.641,70.952 +155091,79.745,69.548 +155092,78.79,68.137 +155093,80.094,72.341 +155094,79.3,70.936 +155095,78.453,69.521 +155096,77.547,68.099 +155097,78.706,72.334 +155098,77.959,70.919 +155099,77.16,69.494 +155100,76.305,68.061 +155101,77.317,72.326 +155102,76.618,70.902 +155103,75.868,69.467 +155104,75.063,68.025 +155105,75.928,72.317 +155106,75.277,70.884 +155107,74.576,69.441 +155108,73.822,67.99 +155109,74.538,72.307 +155110,73.935,70.866 +155111,73.284,69.416 +155112,72.581,67.956 +155113,73.147,72.296 +155114,72.593,70.848 +155115,71.992,69.39 +155116,71.341,67.923 +155117,71.757,72.283 +155118,71.251,70.829 +155119,70.701,69.365 +155120,70.102,67.892 +155121,70.365,72.269 +155122,69.909,70.81 +155123,69.409,69.341 +155124,68.863,67.862 +155125,68.973,72.254 +155126,68.567,70.791 +155127,68.118,69.316 +155128,67.624,67.833 +155129,67.581,72.238 +155130,67.225,70.771 +155131,66.827,69.293 +155132,66.386,67.805 +155133,66.188,72.221 +155134,65.882,70.751 +155135,65.536,69.269 +155136,65.148,67.778 +155137,64.795,72.203 +155138,64.54,70.73 +155139,64.245,69.246 +155140,63.91,67.753 +155141,63.402,72.183 +155142,63.197,70.709 +155143,62.955,69.224 +155144,62.672,67.728 +155145,62.008,72.163 +155146,61.855,70.688 +155147,61.664,69.201 +155148,61.435,67.705 +155149,60.614,72.141 +155150,60.512,70.666 +155151,60.374,69.18 +155152,60.198,67.684 +155153,59.22,72.117 +155154,59.169,70.643 +155155,59.083,69.158 +155156,58.961,67.663 +155157,57.826,72.093 +155158,57.826,70.621 +155159,57.793,69.137 +155160,57.723,67.644 +155161,56.432,72.068 +155162,56.484,70.598 +155163,56.502,69.117 +155164,56.486,67.626 +155165,55.037,72.041 +155166,55.141,70.574 +155167,55.212,69.096 +155168,55.249,67.609 +155169,53.643,72.013 +155170,53.798,70.55 +155171,53.921,69.077 +155172,54.012,67.593 +155173,52.248,71.984 +155174,52.455,70.526 +155175,52.631,69.057 +155176,52.775,67.579 +155177,50.854,71.954 +155178,51.113,70.501 +155179,51.341,69.038 +155180,51.537,67.565 +155181,49.46,71.922 +155182,49.77,70.476 +155183,50.05,69.019 +155184,50.299,67.553 +155185,48.065,71.89 +155186,48.427,70.451 +155187,48.759,69.001 +155188,49.061,67.543 +155189,46.671,71.856 +155190,47.085,70.425 +155191,47.469,68.983 +155192,47.823,67.533 +155193,45.278,71.821 +155194,45.743,70.399 +155195,46.178,68.966 +155196,46.585,67.524 +155197,43.884,71.785 +155198,44.4,70.372 +155199,44.887,68.949 +155200,45.346,67.517 +155201,42.49,71.748 +155202,43.058,70.345 +155203,43.597,68.932 +155204,44.106,67.511 +155205,41.097,71.709 +155206,41.716,70.317 +155207,42.306,68.916 +155208,42.866,67.506 +155209,39.705,71.67 +155210,40.374,70.29 +155211,41.014,68.9 +155212,41.626,67.502 +155213,38.312,71.629 +155214,39.032,70.261 +155215,39.723,68.884 +155216,40.385,67.499 +155217,36.92,71.588 +155218,37.691,70.233 +155219,38.432,68.869 +155220,39.144,67.498 +155221,35.529,71.545 +155222,36.349,70.204 +155223,37.14,68.854 +155224,37.902,67.497 +155225,34.138,71.501 +155226,35.008,70.175 +155227,35.848,68.84 +155228,36.659,67.498 +155229,32.747,71.456 +155230,33.667,70.145 +155231,34.556,68.826 +155232,35.416,67.5 +155233,31.357,71.41 +155234,32.326,70.115 +155235,33.264,68.812 +155236,34.172,67.503 +155237,29.968,71.363 +155238,30.986,70.084 +155239,31.972,68.798 +155240,32.927,67.507 +155241,28.579,71.315 +155242,29.646,70.054 +155243,30.679,68.785 +155244,31.682,67.511 +155245,27.191,71.266 +155246,28.306,70.023 +155247,29.386,68.773 +155248,30.435,67.517 +155249,25.804,71.216 +155250,26.966,69.991 +155251,28.093,68.76 +155252,29.188,67.524 +155253,24.417,71.164 +155254,25.626,69.959 +155255,26.8,68.748 +155256,27.94,67.532 +155257,23.031,71.112 +155258,24.287,69.927 +155259,25.506,68.736 +155260,26.691,67.541 +155261,21.646,71.059 +155262,22.948,69.895 +155263,24.212,68.725 +155264,25.441,67.551 +155265,20.262,71.005 +155266,21.61,69.862 +155267,22.918,68.714 +155268,24.19,67.562 +155269,18.879,70.95 +155270,20.271,69.829 +155271,21.623,68.703 +155272,22.938,67.574 +155273,17.497,70.894 +155274,18.934,69.795 +155275,20.328,68.693 +155276,21.685,67.587 +155277,16.116,70.837 +155278,17.596,69.762 +155279,19.033,68.682 +155280,20.431,67.601 +155281,14.735,70.779 +155282,16.259,69.728 +155283,17.737,68.672 +155284,19.175,67.615 +155285,13.356,70.721 +155286,14.922,69.693 +155287,16.441,68.663 +155288,17.919,67.631 +155289,11.978,70.661 +155290,13.586,69.659 +155291,15.145,68.653 +155292,16.661,67.647 +155293,10.601,70.601 +155294,12.25,69.624 +155295,13.848,68.644 +155296,15.402,67.664 +155297,9.2251,70.54 +155298,10.914,69.589 +155299,12.551,68.636 +155300,14.142,67.682 +155301,7.8504,70.478 +155302,9.5788,69.553 +155303,11.253,68.627 +155304,12.881,67.7 +155305,6.4769,70.415 +155306,8.244,69.518 +155307,9.9555,68.619 +155308,11.618,67.72 +155309,5.1047,70.352 +155310,6.9097,69.482 +155311,8.6571,68.61 +155312,10.354,67.74 +155313,3.7337,70.288 +155314,5.5758,69.445 +155315,7.3584,68.603 +155316,9.0892,67.76 +155317,2.3641,70.223 +155318,4.2424,69.409 +155319,6.0592,68.595 +155320,7.8226,67.782 +155321,0.99572,70.157 +155322,2.9094,69.372 +155323,4.7596,68.588 +155324,6.5546,67.804 +155325,359.63,70.091 +155326,1.5769,69.335 +155327,3.4595,68.58 +155328,5.2852,67.827 +155329,358.26,70.024 +155330,0.2449,69.298 +155331,2.1589,68.573 +155332,4.0144,67.85 +155333,356.9,69.957 +155334,358.91,69.261 +155335,0.85793,68.566 +155336,2.7421,67.874 +155337,355.54,69.889 +155338,357.58,69.224 +155339,359.56,68.56 +155340,1.4684,67.899 +155341,354.18,69.82 +155342,356.25,69.186 +155343,358.25,68.553 +155344,0.19317,67.924 +155345,352.82,69.751 +155346,354.92,69.148 +155347,356.95,68.547 +155348,358.92,67.949 +155349,351.46,69.681 +155350,353.59,69.11 +155351,355.65,68.541 +155352,357.64,67.975 +155353,350.1,69.611 +155354,352.26,69.072 +155355,354.35,68.535 +155356,356.36,68.002 +155357,348.75,69.54 +155358,350.94,69.033 +155359,353.04,68.529 +155360,355.08,68.028 +155361,347.39,69.469 +155362,349.61,68.995 +155363,351.74,68.523 +155364,353.79,68.056 +155365,346.04,69.398 +155366,348.28,68.956 +155367,350.43,68.518 +155368,352.51,68.083 +155369,344.69,69.326 +155370,346.95,68.917 +155371,349.13,68.512 +155372,351.22,68.111 +155373,343.34,69.253 +155374,345.63,68.878 +155375,347.82,68.507 +155376,349.94,68.14 +155377,342,69.181 +155378,344.3,68.839 +155379,346.51,68.502 +155380,348.65,68.168 +155381,340.65,69.108 +155382,342.98,68.8 +155383,345.21,68.496 +155384,347.36,68.197 +155385,339.31,69.035 +155386,341.65,68.761 +155387,343.9,68.491 +155388,346.06,68.226 +155389,337.97,68.961 +155390,340.33,68.722 +155391,342.59,68.486 +155392,344.77,68.255 +155393,336.63,68.887 +155394,339,68.682 +155395,341.28,68.481 +155396,343.47,68.285 +155397,335.29,68.813 +155398,337.68,68.643 +155399,339.97,68.476 +155400,342.18,68.314 +155401,333.95,68.739 +155402,336.36,68.603 +155403,338.66,68.471 +155404,340.88,68.344 +155405,332.62,68.665 +155406,335.04,68.563 +155407,337.35,68.466 +155408,339.57,68.374 +155409,331.28,68.591 +155410,333.72,68.524 +155411,336.04,68.462 +155412,338.27,68.404 +155413,329.95,68.516 +155414,332.4,68.484 +155415,334.73,68.457 +155416,336.97,68.434 +155417,328.63,68.442 +155418,331.08,68.444 +155419,333.42,68.452 +155420,335.66,68.464 +155421,327.3,68.367 +155422,329.76,68.405 +155423,332.11,68.447 +155424,334.35,68.494 +155425,325.97,68.292 +155426,328.44,68.365 +155427,330.79,68.442 +155428,333.04,68.524 +155429,324.65,68.218 +155430,327.12,68.325 +155431,329.48,68.437 +155432,331.73,68.553 +155433,323.33,68.143 +155434,325.81,68.286 +155435,328.16,68.432 +155436,330.42,68.583 +155437,322.01,68.069 +155438,324.49,68.246 +155439,326.85,68.427 +155440,329.11,68.613 +155441,320.69,67.994 +155442,323.17,68.206 +155443,325.53,68.422 +155444,327.79,68.642 +155445,319.38,67.92 +155446,321.86,68.167 +155447,324.22,68.417 +155448,326.47,68.671 +155449,318.06,67.846 +155450,320.54,68.127 +155451,322.9,68.412 +155452,325.15,68.7 +155453,316.75,67.772 +155454,319.23,68.088 +155455,321.58,68.407 +155456,323.83,68.729 +155457,315.44,67.699 +155458,317.92,68.048 +155459,320.27,68.402 +155460,322.51,68.758 +155461,314.13,67.625 +155462,316.6,68.009 +155463,318.95,68.396 +155464,321.18,68.786 +155465,312.83,67.552 +155466,315.29,67.97 +155467,317.63,68.391 +155468,319.86,68.814 +155469,311.52,67.479 +155470,313.98,67.931 +155471,316.31,68.385 +155472,318.53,68.841 +155473,310.22,67.407 +155474,312.67,67.892 +155475,314.99,68.379 +155476,317.2,68.869 +155477,308.92,67.334 +155478,311.36,67.853 +155479,313.67,68.373 +155480,315.87,68.895 +155481,307.62,67.263 +155482,310.05,67.814 +155483,312.35,68.367 +155484,314.53,68.922 +155485,306.32,67.191 +155486,308.74,67.775 +155487,311.02,68.361 +155488,313.2,68.948 +155489,305.03,67.12 +155490,307.43,67.737 +155491,309.7,68.355 +155492,311.86,68.973 +155493,303.74,67.05 +155494,306.12,67.698 +155495,308.38,68.348 +155496,310.52,68.998 +155497,302.45,66.98 +155498,304.82,67.66 +155499,307.06,68.341 +155500,309.18,69.022 +155501,301.16,66.91 +155502,303.51,67.622 +155503,305.73,68.334 +155504,307.84,69.046 +155505,299.87,66.841 +155506,302.2,67.584 +155507,304.41,68.327 +155508,306.5,69.069 +155509,298.58,66.773 +155510,300.9,67.546 +155511,303.08,68.32 +155512,305.15,69.092 +155513,297.3,66.705 +155514,299.59,67.509 +155515,301.76,68.312 +155516,303.81,69.114 +155517,296.02,66.638 +155518,298.29,67.472 +155519,300.43,68.305 +155520,302.46,69.135 +155521,294.74,66.571 +155522,296.98,67.435 +155523,299.1,68.297 +155524,301.11,69.156 +155525,293.46,66.505 +155526,295.68,67.398 +155527,297.78,68.288 +155528,299.76,69.176 +155529,292.18,66.44 +155530,294.38,67.361 +155531,296.45,68.28 +155532,298.41,69.195 +155533,290.91,66.376 +155534,293.08,67.325 +155535,295.12,68.271 +155536,297.06,69.214 +155537,289.64,66.312 +155538,291.78,67.289 +155539,293.79,68.262 +155540,295.7,69.231 +155541,288.36,66.249 +155542,290.47,67.253 +155543,292.46,68.253 +155544,294.34,69.248 +155545,287.09,66.187 +155546,289.17,67.217 +155547,291.13,68.243 +155548,292.99,69.265 +155549,285.83,66.125 +155550,287.87,67.182 +155551,289.8,68.234 +155552,291.63,69.28 +155553,284.56,66.065 +155554,286.58,67.146 +155555,288.47,68.224 +155556,290.27,69.294 +155557,283.29,66.005 +155558,285.28,67.112 +155559,287.14,68.213 +155560,288.9,69.308 +155561,282.03,65.946 +155562,283.98,67.077 +155563,285.81,68.202 +155564,287.54,69.321 +155565,280.77,65.888 +155566,282.68,67.043 +155567,284.48,68.191 +155568,286.17,69.333 +155569,279.51,65.831 +155570,281.38,67.009 +155571,283.15,68.18 +155572,284.81,69.343 +155573,278.25,65.775 +155574,280.09,66.975 +155575,281.81,68.168 +155576,283.44,69.353 +155577,276.99,65.72 +155578,278.79,66.942 +155579,280.48,68.156 +155580,282.07,69.362 +155581,275.74,65.666 +155582,277.49,66.909 +155583,279.15,68.144 +155584,280.7,69.37 +155585,274.48,65.612 +155586,276.2,66.876 +155587,277.81,68.132 +155588,279.33,69.378 +155589,273.23,65.56 +155590,274.9,66.844 +155591,276.48,68.119 +155592,277.96,69.384 +155593,271.97,65.509 +155594,273.61,66.812 +155595,275.14,68.105 +155596,276.59,69.389 +155597,270.72,65.459 +155598,272.32,66.78 +155599,273.81,68.092 +155600,275.21,69.393 +155601,269.47,65.41 +155602,271.02,66.748 +155603,272.47,68.077 +155604,273.84,69.395 +155605,268.23,65.362 +155606,269.73,66.717 +155607,271.14,68.063 +155608,272.46,69.397 +155609,266.98,65.315 +155610,268.44,66.687 +155611,269.8,68.048 +155612,271.08,69.398 +155613,265.73,65.269 +155614,267.14,66.656 +155615,268.46,68.033 +155616,269.7,69.398 +155617,264.49,65.224 +155618,265.85,66.626 +155619,267.13,68.018 +155620,268.32,69.396 +155621,263.24,65.18 +155622,264.56,66.597 +155623,265.79,68.002 +155624,266.94,69.394 +155625,262,65.138 +155626,263.27,66.568 +155627,264.45,67.985 +155628,265.56,69.39 +155629,260.76,65.097 +155630,261.98,66.539 +155631,263.11,67.969 +155632,264.18,69.385 +155633,259.52,65.056 +155634,260.69,66.51 +155635,261.78,67.952 +155636,262.79,69.38 +155637,258.28,65.017 +155638,259.39,66.482 +155639,260.44,67.934 +155640,261.41,69.372 +155641,257.04,64.98 +155642,258.1,66.454 +155643,259.1,67.916 +155644,260.02,69.364 +155645,255.8,64.943 +155646,256.81,66.427 +155647,257.76,67.898 +155648,258.64,69.355 +155649,254.56,64.907 +155650,255.52,66.4 +155651,256.42,67.879 +155652,257.25,69.344 +155653,253.32,64.873 +155654,254.24,66.373 +155655,255.08,67.86 +155656,255.86,69.332 +155657,252.09,64.84 +155658,252.95,66.347 +155659,253.74,67.841 +155660,254.48,69.319 +155661,250.85,64.808 +155662,251.66,66.321 +155663,252.4,67.821 +155664,253.09,69.305 +155665,249.61,64.778 +155666,250.37,66.296 +155667,251.06,67.801 +155668,251.7,69.29 +155669,248.38,64.748 +155670,249.08,66.271 +155671,249.72,67.78 +155672,250.31,69.273 +155673,247.14,64.72 +155674,247.79,66.246 +155675,248.38,67.759 +155676,248.92,69.255 +155677,245.91,64.693 +155678,246.5,66.222 +155679,247.04,67.737 +155680,247.53,69.236 +155681,244.68,64.668 +155682,245.21,66.198 +155683,245.7,67.715 +155684,246.14,69.216 +155685,243.44,64.643 +155686,243.93,66.175 +155687,244.36,67.693 +155688,244.74,69.195 +155689,242.21,64.62 +155690,242.64,66.152 +155691,243.02,67.67 +155692,243.35,69.172 +155693,240.98,64.598 +155694,241.35,66.13 +155695,241.68,67.647 +155696,241.96,69.148 +155697,239.75,64.577 +155698,240.06,66.107 +155699,240.34,67.623 +155700,240.57,69.123 +155701,238.51,64.558 +155702,238.78,66.086 +155703,239,67.599 +155704,239.17,69.097 +155705,237.28,64.54 +155706,237.49,66.064 +155707,237.65,67.574 +155708,237.78,69.069 +155709,236.05,64.522 +155710,236.2,66.043 +155711,236.31,67.55 +155712,236.39,69.041 +155713,234.82,64.507 +155714,234.91,66.023 +155715,234.97,67.524 +155716,234.99,69.011 +155717,233.59,64.492 +155718,233.63,66.002 +155719,233.63,67.498 +155720,233.6,68.979 +155721,232.36,64.479 +155722,232.34,65.983 +155723,232.29,67.472 +155724,232.21,68.947 +155725,231.12,64.467 +155726,231.05,65.963 +155727,230.95,67.446 +155728,230.81,68.913 +155729,229.89,64.456 +155730,229.77,65.944 +155731,229.61,67.419 +155732,229.42,68.879 +155733,228.66,64.446 +155734,228.48,65.926 +155735,228.27,67.391 +155736,228.02,68.843 +155737,227.43,64.438 +155738,227.19,65.907 +155739,226.93,67.364 +155740,226.63,68.805 +155741,226.19,64.43 +155742,225.9,65.889 +155743,225.58,67.335 +155744,225.23,68.767 +155745,224.96,64.424 +155746,224.62,65.872 +155747,224.24,67.307 +155748,223.84,68.727 +155749,223.73,64.419 +155750,223.33,65.855 +155751,222.9,67.278 +155752,222.45,68.687 +155753,222.5,64.416 +155754,222.04,65.838 +155755,221.56,67.248 +155756,221.05,68.645 +155757,221.26,64.413 +155758,220.75,65.822 +155759,220.22,67.219 +155760,219.66,68.602 +155761,220.03,64.411 +155762,219.47,65.806 +155763,218.88,67.188 +155764,218.27,68.558 +155765,218.79,64.411 +155766,218.18,65.79 +155767,217.54,67.158 +155768,216.88,68.512 +155769,217.56,64.412 +155770,216.89,65.775 +155771,216.2,67.127 +155772,215.48,68.466 +155773,216.32,64.414 +155774,215.6,65.76 +155775,214.86,67.096 +155776,214.09,68.418 +155777,215.08,64.417 +155778,214.31,65.746 +155779,213.52,67.064 +155780,212.7,68.37 +155781,213.85,64.421 +155782,213.03,65.732 +155783,212.18,67.032 +155784,211.31,68.32 +155785,212.61,64.426 +155786,211.74,65.718 +155787,210.84,66.999 +155788,209.92,68.269 +155789,211.37,64.432 +155790,210.45,65.704 +155791,209.5,66.967 +155792,208.53,68.218 +155793,210.13,64.439 +155794,209.16,65.691 +155795,208.16,66.933 +155796,207.14,68.165 +155797,208.89,64.448 +155798,207.87,65.678 +155799,206.82,66.9 +155800,205.75,68.111 +155801,207.65,64.457 +155802,206.58,65.666 +155803,205.49,66.866 +155804,204.36,68.056 +155805,206.41,64.467 +155806,205.29,65.654 +155807,204.15,66.832 +155808,202.97,68 +155809,205.16,64.478 +155810,204,65.642 +155811,202.81,66.797 +155812,201.59,67.943 +155813,203.92,64.49 +155814,202.71,65.63 +155815,201.47,66.762 +155816,200.2,67.885 +155817,202.67,64.503 +155818,201.42,65.619 +155819,200.13,66.727 +155820,198.82,67.827 +155821,201.43,64.517 +155822,200.13,65.608 +155823,198.8,66.692 +155824,197.43,67.767 +155825,200.18,64.532 +155826,198.84,65.597 +155827,197.46,66.656 +155828,196.05,67.706 +155829,198.93,64.548 +155830,197.54,65.587 +155831,196.12,66.62 +155832,194.67,67.645 +155833,197.68,64.564 +155834,196.25,65.577 +155835,194.79,66.583 +155836,193.29,67.582 +155837,196.43,64.581 +155838,194.96,65.567 +155839,193.45,66.547 +155840,191.91,67.519 +155841,195.18,64.6 +155842,193.67,65.557 +155843,192.12,66.51 +155844,190.53,67.455 +155845,193.93,64.618 +155846,192.37,65.548 +155847,190.78,66.472 +155848,189.15,67.39 +155849,192.67,64.638 +155850,191.08,65.539 +155851,189.45,66.435 +155852,187.77,67.325 +155853,191.42,64.658 +155854,189.79,65.53 +155855,188.11,66.397 +155856,186.4,67.258 +155857,190.16,64.68 +155858,188.49,65.521 +155859,186.78,66.359 +155860,185.02,67.191 +155861,188.9,64.701 +155862,187.2,65.513 +155863,185.45,66.321 +155864,183.65,67.123 +155865,187.64,64.724 +155866,185.9,65.505 +155867,184.12,66.282 +155868,182.27,67.054 +155869,186.38,64.747 +155870,184.61,65.497 +155871,182.78,66.243 +155872,180.9,66.985 +155873,185.12,64.77 +155874,183.31,65.489 +155875,181.45,66.204 +155876,179.53,66.915 +155877,183.86,64.795 +155878,182.01,65.481 +155879,180.12,66.165 +155880,178.17,66.845 +155881,182.59,64.819 +155882,180.72,65.474 +155883,178.79,66.126 +155884,176.8,66.773 +155885,181.32,64.845 +155886,179.42,65.467 +155887,177.46,66.086 +155888,175.43,66.702 +155889,180.06,64.871 +155890,178.12,65.459 +155891,176.13,66.046 +155892,174.07,66.629 +155893,178.79,64.897 +155894,176.82,65.452 +155895,174.8,66.006 +155896,172.71,66.557 +155897,177.51,64.923 +155898,175.52,65.446 +155899,173.47,65.966 +155900,171.34,66.483 +155901,176.24,64.951 +155902,174.23,65.439 +155903,172.14,65.926 +155904,169.98,66.41 +155905,174.97,64.978 +155906,172.93,65.432 +155907,170.82,65.885 +155908,168.63,66.335 +155909,173.69,65.006 +155910,171.62,65.426 +155911,169.49,65.845 +155912,167.27,66.261 +155913,172.41,65.034 +155914,170.32,65.42 +155915,168.16,65.804 +155916,165.91,66.185 +155917,171.13,65.063 +155918,169.02,65.413 +155919,166.84,65.763 +155920,164.56,66.11 +155921,169.85,65.092 +155922,167.72,65.407 +155923,165.51,65.722 +155924,163.21,66.034 +155925,168.57,65.121 +155926,166.42,65.401 +155927,164.19,65.681 +155928,161.86,65.958 +155929,167.29,65.15 +155930,165.12,65.395 +155931,162.86,65.639 +155932,160.51,65.882 +155933,166,65.179 +155934,163.81,65.389 +155935,161.54,65.598 +155936,159.16,65.805 +155937,164.71,65.209 +155938,162.51,65.383 +155939,160.21,65.557 +155940,157.82,65.728 +155941,163.43,65.239 +155942,161.2,65.378 +155943,158.89,65.515 +155944,156.48,65.651 +155945,162.13,65.269 +155946,159.9,65.372 +155947,157.57,65.474 +155948,155.14,65.574 +155949,160.84,65.299 +155950,158.59,65.366 +155951,156.25,65.432 +155952,153.8,65.496 +155953,159.55,65.329 +155954,157.29,65.36 +155955,154.93,65.391 +155956,152.46,65.419 +155957,158.25,65.359 +155958,155.98,65.354 +155959,153.61,65.349 +155960,151.12,65.341 +155961,156.95,65.389 +155962,154.67,65.349 +155963,152.29,65.307 +155964,149.79,65.264 +155965,155.65,65.419 +155966,153.36,65.343 +155967,150.97,65.265 +155968,148.46,65.186 +155969,154.35,65.449 +155970,152.05,65.337 +155971,149.65,65.224 +155972,147.13,65.108 +155973,153.05,65.479 +155974,150.74,65.331 +155975,148.33,65.182 +155976,145.8,65.03 +155977,151.75,65.508 +155978,149.43,65.325 +155979,147.02,65.14 +155980,144.47,64.953 +155981,150.44,65.538 +155982,148.12,65.319 +155983,145.7,65.099 +155984,143.15,64.875 +155985,149.13,65.567 +155986,146.81,65.313 +155987,144.38,65.057 +155988,141.83,64.798 +155989,147.82,65.596 +155990,145.5,65.307 +155991,143.07,65.015 +155992,140.51,64.72 +155993,146.51,65.625 +155994,144.19,65.301 +155995,141.76,64.974 +155996,139.19,64.643 +155997,145.2,65.654 +155998,142.88,65.295 +155999,140.44,64.932 +156000,137.87,64.566 +156001,143.88,65.682 +156002,141.56,65.288 +156003,139.13,64.891 +156004,136.56,64.49 +156005,142.56,65.71 +156006,140.25,65.282 +156007,137.82,64.85 +156008,135.24,64.413 +156009,141.24,65.738 +156010,138.94,65.275 +156011,136.5,64.808 +156012,133.93,64.337 +156013,139.92,65.766 +156014,137.62,65.269 +156015,135.19,64.767 +156016,132.62,64.261 +156017,138.6,65.792 +156018,136.3,65.262 +156019,133.88,64.726 +156020,131.32,64.186 +156021,137.28,65.819 +156022,134.99,65.255 +156023,132.57,64.685 +156024,130.01,64.111 +156025,135.95,65.845 +156026,133.67,65.247 +156027,131.26,64.644 +156028,128.71,64.036 +156029,134.63,65.871 +156030,132.35,65.24 +156031,129.96,64.604 +156032,127.41,63.962 +156033,133.3,65.896 +156034,131.04,65.233 +156035,128.65,64.563 +156036,126.11,63.888 +156037,131.97,65.92 +156038,129.72,65.225 +156039,127.34,64.523 +156040,124.81,63.815 +156041,130.63,65.944 +156042,128.4,65.217 +156043,126.03,64.483 +156044,123.52,63.742 +156045,129.3,65.967 +156046,127.08,65.209 +156047,124.73,64.443 +156048,122.23,63.669 +156049,127.96,65.99 +156050,125.76,65.201 +156051,123.42,64.403 +156052,120.94,63.598 +156053,126.63,66.012 +156054,124.44,65.192 +156055,122.12,64.363 +156056,119.65,63.527 +156057,125.29,66.034 +156058,123.12,65.183 +156059,120.81,64.324 +156060,118.36,63.456 +156061,123.95,66.054 +156062,121.79,65.174 +156063,119.51,64.285 +156064,117.08,63.386 +156065,122.6,66.075 +156066,120.47,65.165 +156067,118.21,64.246 +156068,115.79,63.317 +156069,121.26,66.094 +156070,119.15,65.155 +156071,116.91,64.207 +156072,114.51,63.248 +156073,119.92,66.112 +156074,117.83,65.146 +156075,115.6,64.168 +156076,113.23,63.181 +156077,118.57,66.13 +156078,116.5,65.136 +156079,114.3,64.13 +156080,111.95,63.114 +156081,117.22,66.147 +156082,115.18,65.125 +156083,113,64.092 +156084,110.68,63.047 +156085,115.87,66.163 +156086,113.85,65.115 +156087,111.7,64.054 +156088,109.4,62.982 +156089,114.52,66.179 +156090,112.53,65.104 +156091,110.4,64.017 +156092,108.13,62.917 +156093,113.17,66.193 +156094,111.2,65.093 +156095,109.11,63.979 +156096,106.86,62.854 +156097,111.81,66.207 +156098,109.87,65.081 +156099,107.81,63.942 +156100,105.59,62.791 +156101,110.46,66.219 +156102,108.55,65.069 +156103,106.51,63.906 +156104,104.33,62.729 +156105,109.1,66.231 +156106,107.22,65.057 +156107,105.21,63.869 +156108,103.06,62.667 +156109,107.74,66.242 +156110,105.89,65.045 +156111,103.92,63.833 +156112,101.8,62.607 +156113,106.38,66.252 +156114,104.56,65.032 +156115,102.62,63.797 +156116,100.54,62.548 +156117,105.02,66.26 +156118,103.23,65.019 +156119,101.33,63.762 +156120,99.278,62.49 +156121,103.65,66.268 +156122,101.9,65.005 +156123,100.03,63.726 +156124,98.02,62.432 +156125,102.29,66.275 +156126,100.57,64.991 +156127,98.737,63.692 +156128,96.763,62.376 +156129,100.92,66.281 +156130,99.243,64.977 +156131,97.443,63.657 +156132,95.508,62.321 +156133,99.558,66.286 +156134,97.912,64.963 +156135,96.15,63.623 +156136,94.255,62.266 +156137,98.19,66.289 +156138,96.58,64.948 +156139,94.857,63.589 +156140,93.003,62.213 +156141,96.821,66.292 +156142,95.249,64.933 +156143,93.565,63.555 +156144,91.752,62.161 +156145,95.45,66.293 +156146,93.917,64.917 +156147,92.273,63.522 +156148,90.503,62.11 +156149,94.079,66.294 +156150,92.584,64.901 +156151,90.981,63.49 +156152,89.255,62.06 +156153,92.706,66.293 +156154,91.251,64.884 +156155,89.691,63.457 +156156,88.008,62.012 +156157,91.332,66.291 +156158,89.918,64.868 +156159,88.4,63.425 +156160,86.763,61.964 +156161,89.957,66.288 +156162,88.585,64.85 +156163,87.11,63.393 +156164,85.519,61.917 +156165,88.581,66.284 +156166,87.251,64.833 +156167,85.821,63.362 +156168,84.276,61.872 +156169,87.204,66.278 +156170,85.917,64.815 +156171,84.531,63.331 +156172,83.035,61.828 +156173,85.826,66.272 +156174,84.582,64.796 +156175,83.242,63.3 +156176,81.795,61.785 +156177,84.447,66.264 +156178,83.247,64.777 +156179,81.954,63.27 +156180,80.555,61.743 +156181,83.067,66.255 +156182,81.912,64.758 +156183,80.666,63.241 +156184,79.317,61.703 +156185,81.686,66.245 +156186,80.576,64.738 +156187,79.378,63.211 +156188,78.08,61.664 +156189,80.304,66.234 +156190,79.241,64.718 +156191,78.091,63.182 +156192,76.844,61.626 +156193,78.921,66.221 +156194,77.904,64.698 +156195,76.804,63.154 +156196,75.609,61.589 +156197,77.538,66.207 +156198,76.568,64.677 +156199,75.517,63.125 +156200,74.375,61.553 +156201,76.153,66.192 +156202,75.232,64.656 +156203,74.231,63.098 +156204,73.141,61.519 +156205,74.768,66.176 +156206,73.895,64.634 +156207,72.944,63.07 +156208,71.909,61.486 +156209,73.383,66.158 +156210,72.558,64.611 +156211,71.659,63.043 +156212,70.677,61.454 +156213,71.996,66.139 +156214,71.22,64.589 +156215,70.373,63.017 +156216,69.446,61.423 +156217,70.609,66.119 +156218,69.883,64.566 +156219,69.088,62.99 +156220,68.216,61.394 +156221,69.221,66.098 +156222,68.545,64.542 +156223,67.803,62.965 +156224,66.986,61.366 +156225,67.833,66.075 +156226,67.207,64.518 +156227,66.518,62.939 +156228,65.757,61.34 +156229,66.444,66.051 +156230,65.869,64.494 +156231,65.233,62.914 +156232,64.528,61.314 +156233,65.055,66.026 +156234,64.531,64.469 +156235,63.948,62.89 +156236,63.3,61.29 +156237,63.665,66 +156238,63.193,64.444 +156239,62.664,62.866 +156240,62.073,61.267 +156241,62.274,65.972 +156242,61.855,64.418 +156243,61.38,62.842 +156244,60.845,61.246 +156245,60.884,65.943 +156246,60.516,64.392 +156247,60.096,62.819 +156248,59.618,61.225 +156249,59.492,65.913 +156250,59.177,64.365 +156251,58.812,62.796 +156252,58.392,61.207 +156253,58.101,65.881 +156254,57.839,64.338 +156255,57.528,62.774 +156256,57.166,61.189 +156257,56.709,65.848 +156258,56.5,64.31 +156259,56.245,62.752 +156260,55.94,61.172 +156261,55.317,65.814 +156262,55.161,64.282 +156263,54.961,62.73 +156264,54.714,61.157 +156265,53.925,65.779 +156266,53.822,64.254 +156267,53.678,62.709 +156268,53.488,61.143 +156269,52.532,65.742 +156270,52.483,64.225 +156271,52.394,62.688 +156272,52.262,61.131 +156273,51.14,65.704 +156274,51.144,64.196 +156275,51.111,62.667 +156276,51.037,61.119 +156277,49.747,65.665 +156278,49.805,64.166 +156279,49.828,62.647 +156280,49.811,61.109 +156281,48.354,65.625 +156282,48.466,64.136 +156283,48.544,62.628 +156284,48.585,61.1 +156285,46.961,65.584 +156286,47.127,64.106 +156287,47.261,62.609 +156288,47.359,61.093 +156289,45.568,65.541 +156290,45.789,64.075 +156291,45.978,62.59 +156292,46.133,61.086 +156293,44.175,65.497 +156294,44.45,64.044 +156295,44.694,62.571 +156296,44.907,61.081 +156297,42.782,65.452 +156298,43.111,64.012 +156299,43.411,62.553 +156300,43.681,61.077 +156301,41.389,65.405 +156302,41.772,63.98 +156303,42.128,62.536 +156304,42.454,61.074 +156305,39.997,65.358 +156306,40.434,63.947 +156307,40.844,62.518 +156308,41.227,61.073 +156309,38.604,65.309 +156310,39.095,63.914 +156311,39.56,62.502 +156312,40,61.072 +156313,37.212,65.259 +156314,37.757,63.881 +156315,38.277,62.485 +156316,38.772,61.073 +156317,35.82,65.208 +156318,36.418,63.847 +156319,36.993,62.469 +156320,37.543,61.075 +156321,34.428,65.156 +156322,35.08,63.813 +156323,35.709,62.453 +156324,36.315,61.078 +156325,33.037,65.102 +156326,33.742,63.778 +156327,34.425,62.438 +156328,35.085,61.082 +156329,31.646,65.048 +156330,32.405,63.743 +156331,33.141,62.423 +156332,33.855,61.087 +156333,30.256,64.992 +156334,31.067,63.708 +156335,31.857,62.408 +156336,32.624,61.094 +156337,28.865,64.935 +156338,29.73,63.672 +156339,30.572,62.393 +156340,31.393,61.101 +156341,27.476,64.878 +156342,28.393,63.636 +156343,29.287,62.379 +156344,30.161,61.109 +156345,26.087,64.819 +156346,27.056,63.6 +156347,28.002,62.366 +156348,28.928,61.119 +156349,24.698,64.759 +156350,25.719,63.563 +156351,26.717,62.352 +156352,27.695,61.129 +156353,23.31,64.698 +156354,24.382,63.526 +156355,25.432,62.339 +156356,26.46,61.14 +156357,21.923,64.636 +156358,23.046,63.488 +156359,24.146,62.327 +156360,25.225,61.153 +156361,20.536,64.573 +156362,21.71,63.45 +156363,22.86,62.314 +156364,23.988,61.166 +156365,19.151,64.51 +156366,20.375,63.412 +156367,21.574,62.302 +156368,22.751,61.18 +156369,17.766,64.445 +156370,19.039,63.374 +156371,20.288,62.29 +156372,21.513,61.196 +156373,16.381,64.379 +156374,17.704,63.335 +156375,19.001,62.279 +156376,20.274,61.212 +156377,14.998,64.313 +156378,16.37,63.296 +156379,17.714,62.267 +156380,19.033,61.229 +156381,13.615,64.245 +156382,15.035,63.256 +156383,16.427,62.256 +156384,17.792,61.246 +156385,12.233,64.177 +156386,13.701,63.217 +156387,15.139,62.245 +156388,16.549,61.265 +156389,10.853,64.108 +156390,12.368,63.177 +156391,13.851,62.235 +156392,15.306,61.284 +156393,9.473,64.037 +156394,11.035,63.136 +156395,12.563,62.225 +156396,14.061,61.304 +156397,8.0943,63.967 +156398,9.7017,63.096 +156399,11.274,62.215 +156400,12.814,61.325 +156401,6.7166,63.895 +156402,8.3693,63.055 +156403,9.9847,62.205 +156404,11.567,61.347 +156405,5.34,63.823 +156406,7.0373,63.014 +156407,8.6952,62.195 +156408,10.318,61.369 +156409,3.9646,63.75 +156410,5.7057,62.973 +156411,7.4053,62.186 +156412,9.0683,61.392 +156413,2.5903,63.676 +156414,4.3745,62.931 +156415,6.115,62.177 +156416,7.8169,61.416 +156417,1.2172,63.601 +156418,3.0438,62.889 +156419,4.8243,62.168 +156420,6.5642,61.44 +156421,359.85,63.526 +156422,1.7136,62.847 +156423,3.5332,62.159 +156424,5.31,61.465 +156425,358.47,63.45 +156426,0.38378,62.805 +156427,2.2416,62.151 +156428,4.0544,61.49 +156429,357.11,63.374 +156430,359.05,62.762 +156431,0.94955,62.142 +156432,2.7974,61.516 +156433,355.74,63.297 +156434,357.73,62.72 +156435,359.66,62.134 +156436,1.5389,61.542 +156437,354.37,63.219 +156438,356.4,62.677 +156439,358.36,62.126 +156440,0.27888,61.569 +156441,353.01,63.141 +156442,355.07,62.634 +156443,357.07,62.118 +156444,359.02,61.597 +156445,351.64,63.063 +156446,353.74,62.59 +156447,355.78,62.11 +156448,357.75,61.624 +156449,350.28,62.984 +156450,352.42,62.547 +156451,354.48,62.103 +156452,356.49,61.653 +156453,348.92,62.904 +156454,351.09,62.504 +156455,353.19,62.095 +156456,355.22,61.681 +156457,347.56,62.824 +156458,349.76,62.46 +156459,351.89,62.088 +156460,353.96,61.71 +156461,346.2,62.744 +156462,348.44,62.416 +156463,350.6,62.08 +156464,352.69,61.739 +156465,344.85,62.664 +156466,347.11,62.372 +156467,349.3,62.073 +156468,351.42,61.769 +156469,343.49,62.583 +156470,345.79,62.328 +156471,348,62.066 +156472,350.14,61.798 +156473,342.14,62.501 +156474,344.47,62.284 +156475,346.71,62.059 +156476,348.87,61.828 +156477,340.79,62.42 +156478,343.14,62.24 +156479,345.41,62.052 +156480,347.59,61.858 +156481,339.44,62.338 +156482,341.82,62.195 +156483,344.11,62.045 +156484,346.31,61.889 +156485,338.09,62.256 +156486,340.5,62.151 +156487,342.81,62.038 +156488,345.03,61.919 +156489,336.75,62.174 +156490,339.18,62.106 +156491,341.51,62.031 +156492,343.75,61.949 +156493,335.4,62.092 +156494,337.86,62.062 +156495,340.21,62.024 +156496,342.47,61.98 +156497,334.06,62.009 +156498,336.54,62.017 +156499,338.91,62.017 +156500,341.19,62.011 +156501,332.72,61.927 +156502,335.22,61.973 +156503,337.61,62.01 +156504,339.9,62.041 +156505,331.38,61.844 +156506,333.9,61.928 +156507,336.31,62.003 +156508,338.61,62.072 +156509,330.04,61.762 +156510,332.58,61.883 +156511,335,61.996 +156512,337.32,62.102 +156513,328.71,61.679 +156514,331.27,61.839 +156515,333.7,61.99 +156516,336.03,62.133 +156517,327.38,61.596 +156518,329.95,61.794 +156519,332.4,61.982 +156520,334.74,62.163 +156521,326.04,61.514 +156522,328.63,61.75 +156523,331.09,61.975 +156524,333.44,62.193 +156525,324.72,61.431 +156526,327.32,61.705 +156527,329.79,61.968 +156528,332.14,62.223 +156529,323.39,61.349 +156530,326,61.66 +156531,328.48,61.961 +156532,330.85,62.253 +156533,322.06,61.267 +156534,324.69,61.616 +156535,327.18,61.954 +156536,329.55,62.283 +156537,320.74,61.185 +156538,323.38,61.571 +156539,325.87,61.946 +156540,328.24,62.312 +156541,319.42,61.103 +156542,322.06,61.527 +156543,324.56,61.939 +156544,326.94,62.341 +156545,318.1,61.022 +156546,320.75,61.483 +156547,323.26,61.931 +156548,325.63,62.37 +156549,316.78,60.941 +156550,319.44,61.438 +156551,321.95,61.924 +156552,324.33,62.398 +156553,315.47,60.86 +156554,318.13,61.394 +156555,320.64,61.916 +156556,323.02,62.426 +156557,314.16,60.779 +156558,316.82,61.35 +156559,319.33,61.908 +156560,321.7,62.454 +156561,312.84,60.699 +156562,315.51,61.306 +156563,318.02,61.9 +156564,320.39,62.481 +156565,311.54,60.619 +156566,314.2,61.262 +156567,316.71,61.891 +156568,319.08,62.508 +156569,310.23,60.54 +156570,312.89,61.219 +156571,315.4,61.883 +156572,317.76,62.534 +156573,308.92,60.461 +156574,311.59,61.175 +156575,314.08,61.874 +156576,316.44,62.56 +156577,307.62,60.383 +156578,310.28,61.132 +156579,312.77,61.865 +156580,315.12,62.585 +156581,306.32,60.305 +156582,308.97,61.089 +156583,311.46,61.856 +156584,313.8,62.609 +156585,305.02,60.227 +156586,307.67,61.046 +156587,310.15,61.847 +156588,312.48,62.633 +156589,303.73,60.151 +156590,306.36,61.003 +156591,308.83,61.838 +156592,311.15,62.657 +156593,302.43,60.074 +156594,305.06,60.96 +156595,307.52,61.828 +156596,309.82,62.68 +156597,301.14,59.999 +156598,303.76,60.918 +156599,306.2,61.818 +156600,308.5,62.702 +156601,299.85,59.924 +156602,302.46,60.875 +156603,304.89,61.808 +156604,307.17,62.723 +156605,298.56,59.85 +156606,301.15,60.833 +156607,303.57,61.798 +156608,305.83,62.744 +156609,297.27,59.776 +156610,299.85,60.792 +156611,302.25,61.787 +156612,304.5,62.764 +156613,295.99,59.704 +156614,298.55,60.75 +156615,300.93,61.776 +156616,303.16,62.783 +156617,294.71,59.632 +156618,297.25,60.709 +156619,299.62,61.765 +156620,301.83,62.801 +156621,293.43,59.56 +156622,295.95,60.668 +156623,298.3,61.753 +156624,300.49,62.818 +156625,292.15,59.49 +156626,294.65,60.627 +156627,296.98,61.741 +156628,299.15,62.835 +156629,290.87,59.421 +156630,293.36,60.586 +156631,295.66,61.729 +156632,297.81,62.851 +156633,289.6,59.352 +156634,292.06,60.546 +156635,294.34,61.717 +156636,296.46,62.866 +156637,288.33,59.284 +156638,290.76,60.506 +156639,293.02,61.704 +156640,295.12,62.88 +156641,287.06,59.217 +156642,289.47,60.467 +156643,291.7,61.691 +156644,293.77,62.893 +156645,285.79,59.152 +156646,288.17,60.427 +156647,290.37,61.678 +156648,292.42,62.905 +156649,284.52,59.087 +156650,286.88,60.388 +156651,289.05,61.664 +156652,291.07,62.916 +156653,283.26,59.023 +156654,285.58,60.349 +156655,287.73,61.65 +156656,289.72,62.926 +156657,282,58.96 +156658,284.29,60.311 +156659,286.4,61.636 +156660,288.37,62.935 +156661,280.74,58.898 +156662,283,60.273 +156663,285.08,61.621 +156664,287.02,62.943 +156665,279.48,58.837 +156666,281.7,60.235 +156667,283.76,61.606 +156668,285.66,62.95 +156669,278.22,58.777 +156670,280.41,60.198 +156671,282.43,61.59 +156672,284.3,62.956 +156673,276.96,58.719 +156674,279.12,60.161 +156675,281.11,61.574 +156676,282.95,62.961 +156677,275.71,58.661 +156678,277.83,60.124 +156679,279.78,61.558 +156680,281.59,62.965 +156681,274.46,58.605 +156682,276.54,60.088 +156683,278.45,61.541 +156684,280.22,62.967 +156685,273.21,58.55 +156686,275.25,60.052 +156687,277.13,61.524 +156688,278.86,62.969 +156689,271.96,58.496 +156690,273.96,60.016 +156691,275.8,61.507 +156692,277.5,62.969 +156693,270.71,58.443 +156694,272.67,59.981 +156695,274.47,61.489 +156696,276.13,62.968 +156697,269.47,58.391 +156698,271.38,59.946 +156699,273.14,61.471 +156700,274.77,62.966 +156701,268.22,58.34 +156702,270.1,59.912 +156703,271.82,61.452 +156704,273.4,62.963 +156705,266.98,58.291 +156706,268.81,59.878 +156707,270.49,61.433 +156708,272.03,62.958 +156709,265.74,58.243 +156710,267.52,59.844 +156711,269.16,61.413 +156712,270.66,62.953 +156713,264.5,58.196 +156714,266.24,59.811 +156715,267.83,61.394 +156716,269.29,62.946 +156717,263.26,58.151 +156718,264.95,59.778 +156719,266.5,61.373 +156720,267.92,62.938 +156721,262.02,58.107 +156722,263.67,59.745 +156723,265.17,61.352 +156724,266.55,62.928 +156725,260.79,58.064 +156726,262.38,59.713 +156727,263.84,61.331 +156728,265.17,62.918 +156729,259.55,58.022 +156730,261.1,59.682 +156731,262.51,61.309 +156732,263.8,62.906 +156733,258.32,57.982 +156734,259.81,59.651 +156735,261.17,61.287 +156736,262.42,62.892 +156737,257.09,57.943 +156738,258.53,59.62 +156739,259.84,61.265 +156740,261.05,62.878 +156741,255.86,57.905 +156742,257.25,59.59 +156743,258.51,61.242 +156744,259.67,62.862 +156745,254.63,57.869 +156746,255.96,59.56 +156747,257.18,61.218 +156748,258.29,62.845 +156749,253.4,57.834 +156750,254.68,59.53 +156751,255.85,61.194 +156752,256.91,62.827 +156753,252.17,57.8 +156754,253.4,59.501 +156755,254.51,61.17 +156756,255.53,62.807 +156757,250.94,57.768 +156758,252.12,59.473 +156759,253.18,61.145 +156760,254.15,62.786 +156761,249.72,57.737 +156762,250.84,59.444 +156763,251.85,61.12 +156764,252.77,62.763 +156765,248.49,57.707 +156766,249.56,59.417 +156767,250.51,61.094 +156768,251.38,62.74 +156769,247.27,57.679 +156770,248.27,59.389 +156771,249.18,61.068 +156772,250,62.714 +156773,246.05,57.652 +156774,246.99,59.363 +156775,247.85,61.041 +156776,248.62,62.688 +156777,244.82,57.627 +156778,245.71,59.336 +156779,246.51,61.014 +156780,247.23,62.66 +156781,243.6,57.603 +156782,244.43,59.31 +156783,245.18,60.986 +156784,245.85,62.631 +156785,242.38,57.58 +156786,243.15,59.285 +156787,243.84,60.958 +156788,244.46,62.601 +156789,241.16,57.559 +156790,241.87,59.259 +156791,242.51,60.929 +156792,243.07,62.569 +156793,239.94,57.539 +156794,240.59,59.235 +156795,241.17,60.9 +156796,241.69,62.536 +156797,238.72,57.52 +156798,239.32,59.211 +156799,239.84,60.871 +156800,240.3,62.501 +156801,237.5,57.503 +156802,238.04,59.187 +156803,238.5,60.841 +156804,238.91,62.466 +156805,236.28,57.487 +156806,236.76,59.163 +156807,237.17,60.811 +156808,237.52,62.428 +156809,235.06,57.472 +156810,235.48,59.14 +156811,235.83,60.78 +156812,236.13,62.39 +156813,233.84,57.459 +156814,234.2,59.118 +156815,234.5,60.748 +156816,234.75,62.35 +156817,232.62,57.447 +156818,232.92,59.096 +156819,233.16,60.717 +156820,233.36,62.309 +156821,231.4,57.436 +156822,231.64,59.074 +156823,231.83,60.684 +156824,231.97,62.267 +156825,230.19,57.427 +156826,230.37,59.053 +156827,230.49,60.652 +156828,230.58,62.223 +156829,228.97,57.419 +156830,229.09,59.032 +156831,229.16,60.619 +156832,229.19,62.178 +156833,227.75,57.412 +156834,227.81,59.012 +156835,227.82,60.585 +156836,227.8,62.132 +156837,226.53,57.407 +156838,226.53,58.992 +156839,226.49,60.551 +156840,226.41,62.084 +156841,225.31,57.403 +156842,225.25,58.972 +156843,225.15,60.517 +156844,225.02,62.035 +156845,224.09,57.4 +156846,223.97,58.953 +156847,223.82,60.482 +156848,223.63,61.985 +156849,222.88,57.398 +156850,222.7,58.935 +156851,222.48,60.446 +156852,222.24,61.933 +156853,221.66,57.398 +156854,221.42,58.916 +156855,221.15,60.411 +156856,220.85,61.881 +156857,220.44,57.399 +156858,220.14,58.898 +156859,219.81,60.374 +156860,219.46,61.827 +156861,219.22,57.401 +156862,218.86,58.881 +156863,218.48,60.338 +156864,218.07,61.772 +156865,218,57.404 +156866,217.58,58.864 +156867,217.14,60.301 +156868,216.68,61.715 +156869,216.78,57.409 +156870,216.31,58.847 +156871,215.81,60.263 +156872,215.29,61.658 +156873,215.56,57.414 +156874,215.03,58.83 +156875,214.47,60.226 +156876,213.9,61.599 +156877,214.34,57.421 +156878,213.75,58.814 +156879,213.14,60.187 +156880,212.51,61.539 +156881,213.12,57.429 +156882,212.47,58.799 +156883,211.8,60.149 +156884,211.12,61.478 +156885,211.89,57.438 +156886,211.19,58.784 +156887,210.47,60.11 +156888,209.73,61.416 +156889,210.67,57.448 +156890,209.91,58.769 +156891,209.14,60.07 +156892,208.34,61.353 +156893,209.45,57.459 +156894,208.63,58.754 +156895,207.8,60.031 +156896,206.95,61.288 +156897,208.22,57.472 +156898,207.35,58.74 +156899,206.47,59.99 +156900,205.57,61.223 +156901,207,57.485 +156902,206.07,58.726 +156903,205.14,59.95 +156904,204.18,61.156 +156905,205.77,57.499 +156906,204.79,58.712 +156907,203.8,59.909 +156908,202.79,61.088 +156909,204.54,57.514 +156910,203.51,58.699 +156911,202.47,59.868 +156912,201.41,61.02 +156913,203.31,57.53 +156914,202.23,58.686 +156915,201.14,59.826 +156916,200.02,60.95 +156917,202.09,57.548 +156918,200.95,58.673 +156919,199.81,59.784 +156920,198.64,60.879 +156921,200.86,57.566 +156922,199.67,58.661 +156923,198.47,59.742 +156924,197.26,60.808 +156925,199.63,57.584 +156926,198.39,58.649 +156927,197.14,59.7 +156928,195.87,60.735 +156929,198.39,57.604 +156930,197.11,58.637 +156931,195.81,59.657 +156932,194.49,60.661 +156933,197.16,57.625 +156934,195.83,58.626 +156935,194.48,59.614 +156936,193.11,60.587 +156937,195.93,57.646 +156938,194.55,58.614 +156939,193.15,59.57 +156940,191.73,60.512 +156941,194.69,57.668 +156942,193.26,58.603 +156943,191.82,59.526 +156944,190.35,60.435 +156945,193.45,57.691 +156946,191.98,58.593 +156947,190.49,59.482 +156948,188.97,60.358 +156949,192.22,57.715 +156950,190.7,58.582 +156951,189.16,59.438 +156952,187.59,60.281 +156953,190.98,57.74 +156954,189.42,58.572 +156955,187.83,59.393 +156956,186.22,60.202 +156957,189.74,57.765 +156958,188.13,58.562 +156959,186.5,59.349 +156960,184.84,60.123 +156961,188.5,57.79 +156962,186.85,58.552 +156963,185.17,59.303 +156964,183.47,60.042 +156965,187.25,57.817 +156966,185.56,58.542 +156967,183.85,59.258 +156968,182.09,59.962 +156969,186.01,57.844 +156970,184.28,58.533 +156971,182.52,59.213 +156972,180.72,59.88 +156973,184.76,57.871 +156974,182.99,58.524 +156975,181.19,59.167 +156976,179.35,59.798 +156977,183.51,57.899 +156978,181.71,58.515 +156979,179.87,59.121 +156980,177.98,59.715 +156981,182.27,57.928 +156982,180.42,58.506 +156983,178.54,59.075 +156984,176.61,59.632 +156985,181.02,57.957 +156986,179.14,58.497 +156987,177.21,59.028 +156988,175.25,59.548 +156989,179.76,57.986 +156990,177.85,58.488 +156991,175.89,58.982 +156992,173.88,59.463 +156993,178.51,58.016 +156994,176.56,58.48 +156995,174.57,58.935 +156996,172.52,59.378 +156997,177.26,58.046 +156998,175.27,58.472 +156999,173.24,58.888 +157000,171.15,59.293 +157001,176,58.077 +157002,173.99,58.463 +157003,171.92,58.841 +157004,169.79,59.207 +157005,174.74,58.108 +157006,172.7,58.455 +157007,170.6,58.794 +157008,168.43,59.121 +157009,173.48,58.139 +157010,171.41,58.447 +157011,169.27,58.746 +157012,167.07,59.034 +157013,172.22,58.171 +157014,170.12,58.439 +157015,167.95,58.699 +157016,165.71,58.947 +157017,170.96,58.202 +157018,168.83,58.432 +157019,166.63,58.651 +157020,164.36,58.859 +157021,169.69,58.234 +157022,167.54,58.424 +157023,165.31,58.604 +157024,163,58.772 +157025,168.43,58.266 +157026,166.24,58.416 +157027,163.99,58.556 +157028,161.65,58.684 +157029,167.16,58.299 +157030,164.95,58.408 +157031,162.67,58.508 +157032,160.3,58.595 +157033,165.89,58.331 +157034,163.66,58.401 +157035,161.35,58.46 +157036,158.95,58.507 +157037,164.62,58.363 +157038,162.37,58.393 +157039,160.03,58.412 +157040,157.61,58.418 +157041,163.34,58.396 +157042,161.07,58.385 +157043,158.72,58.364 +157044,156.26,58.33 +157045,162.07,58.428 +157046,159.78,58.378 +157047,157.4,58.316 +157048,154.92,58.241 +157049,160.79,58.46 +157050,158.48,58.37 +157051,156.08,58.268 +157052,153.57,58.152 +157053,159.51,58.493 +157054,157.19,58.363 +157055,154.77,58.22 +157056,152.23,58.063 +157057,158.23,58.525 +157058,155.89,58.355 +157059,153.45,58.172 +157060,150.9,57.974 +157061,156.95,58.557 +157062,154.6,58.347 +157063,152.14,58.124 +157064,149.56,57.885 +157065,155.67,58.589 +157066,153.3,58.339 +157067,150.83,58.076 +157068,148.23,57.796 +157069,154.38,58.621 +157070,152,58.332 +157071,149.51,58.028 +157072,146.89,57.707 +157073,153.09,58.653 +157074,150.7,58.324 +157075,148.2,57.98 +157076,145.56,57.619 +157077,151.8,58.684 +157078,149.41,58.316 +157079,146.89,57.932 +157080,144.23,57.53 +157081,150.51,58.715 +157082,148.11,58.308 +157083,145.58,57.884 +157084,142.91,57.442 +157085,149.22,58.746 +157086,146.81,58.299 +157087,144.27,57.836 +157088,141.58,57.354 +157089,147.92,58.776 +157090,145.51,58.291 +157091,142.96,57.789 +157092,140.26,57.266 +157093,146.63,58.806 +157094,144.21,58.283 +157095,141.65,57.741 +157096,138.94,57.179 +157097,145.33,58.836 +157098,142.9,58.274 +157099,140.34,57.693 +157100,137.62,57.091 +157101,144.03,58.865 +157102,141.6,58.265 +157103,139.04,57.646 +157104,136.3,57.005 +157105,142.73,58.894 +157106,140.3,58.256 +157107,137.73,57.599 +157108,134.99,56.918 +157109,141.42,58.922 +157110,139,58.247 +157111,136.42,57.552 +157112,133.68,56.832 +157113,140.12,58.95 +157114,137.69,58.238 +157115,135.12,57.505 +157116,132.37,56.747 +157117,138.81,58.977 +157118,136.39,58.229 +157119,133.81,57.458 +157120,131.06,56.661 +157121,137.5,59.004 +157122,135.08,58.219 +157123,132.51,57.411 +157124,129.75,56.577 +157125,136.19,59.03 +157126,133.78,58.209 +157127,131.21,57.365 +157128,128.45,56.493 +157129,134.88,59.055 +157130,132.47,58.199 +157131,129.9,57.318 +157132,127.15,56.41 +157133,133.56,59.08 +157134,131.16,58.189 +157135,128.6,57.272 +157136,125.85,56.327 +157137,132.25,59.104 +157138,129.85,58.179 +157139,127.3,57.226 +157140,124.55,56.245 +157141,130.93,59.127 +157142,128.55,58.168 +157143,126,57.181 +157144,123.26,56.163 +157145,129.61,59.15 +157146,127.24,58.157 +157147,124.7,57.135 +157148,121.96,56.082 +157149,128.29,59.172 +157150,125.93,58.146 +157151,123.4,57.09 +157152,120.67,56.002 +157153,126.96,59.193 +157154,124.62,58.134 +157155,122.1,57.045 +157156,119.39,55.923 +157157,125.64,59.213 +157158,123.31,58.122 +157159,120.81,57.001 +157160,118.1,55.845 +157161,124.31,59.233 +157162,122,58.11 +157163,119.51,56.956 +157164,116.81,55.767 +157165,122.98,59.251 +157166,120.69,58.098 +157167,118.21,56.912 +157168,115.53,55.69 +157169,121.65,59.269 +157170,119.37,58.085 +157171,116.92,56.868 +157172,114.25,55.615 +157173,120.32,59.285 +157174,118.06,58.072 +157175,115.62,56.825 +157176,112.98,55.54 +157177,118.99,59.301 +157178,116.75,58.059 +157179,114.33,56.781 +157180,111.7,55.466 +157181,117.65,59.316 +157182,115.43,58.045 +157183,113.04,56.738 +157184,110.43,55.393 +157185,116.31,59.33 +157186,114.12,58.031 +157187,111.75,56.696 +157188,109.15,55.321 +157189,114.98,59.343 +157190,112.8,58.017 +157191,110.45,56.654 +157192,107.89,55.25 +157193,113.64,59.354 +157194,111.49,58.002 +157195,109.16,56.612 +157196,106.62,55.18 +157197,112.3,59.365 +157198,110.17,57.987 +157199,107.87,56.57 +157200,105.35,55.111 +157201,110.95,59.375 +157202,108.86,57.971 +157203,106.58,56.529 +157204,104.09,55.043 +157205,109.61,59.383 +157206,107.54,57.956 +157207,105.29,56.488 +157208,102.83,54.976 +157209,108.26,59.391 +157210,106.22,57.939 +157211,104,56.447 +157212,101.57,54.911 +157213,106.91,59.397 +157214,104.9,57.923 +157215,102.72,56.407 +157216,100.31,54.846 +157217,105.57,59.402 +157218,103.59,57.906 +157219,101.43,56.367 +157220,99.058,54.783 +157221,104.22,59.406 +157222,102.27,57.888 +157223,100.14,56.328 +157224,97.804,54.721 +157225,102.86,59.409 +157226,100.95,57.87 +157227,98.856,56.289 +157228,96.553,54.66 +157229,101.51,59.41 +157230,99.628,57.852 +157231,97.57,56.25 +157232,95.304,54.601 +157233,100.16,59.411 +157234,98.307,57.834 +157235,96.286,56.212 +157236,94.056,54.543 +157237,98.801,59.41 +157238,96.986,57.814 +157239,95.001,56.174 +157240,92.81,54.486 +157241,97.444,59.408 +157242,95.665,57.795 +157243,93.718,56.137 +157244,91.566,54.43 +157245,96.086,59.404 +157246,94.344,57.775 +157247,92.435,56.1 +157248,90.324,54.376 +157249,94.726,59.4 +157250,93.022,57.755 +157251,91.152,56.064 +157252,89.084,54.323 +157253,93.365,59.394 +157254,91.699,57.734 +157255,89.87,56.028 +157256,87.845,54.271 +157257,92.003,59.387 +157258,90.376,57.712 +157259,88.589,55.992 +157260,86.608,54.221 +157261,90.64,59.378 +157262,89.053,57.691 +157263,87.308,55.957 +157264,85.372,54.172 +157265,89.276,59.368 +157266,87.729,57.669 +157267,86.027,55.922 +157268,84.138,54.125 +157269,87.91,59.357 +157270,86.405,57.646 +157271,84.747,55.888 +157272,82.906,54.079 +157273,86.543,59.344 +157274,85.081,57.623 +157275,83.468,55.854 +157276,81.675,54.034 +157277,85.176,59.33 +157278,83.756,57.599 +157279,82.189,55.821 +157280,80.445,53.991 +157281,83.807,59.315 +157282,82.431,57.575 +157283,80.91,55.788 +157284,79.217,53.949 +157285,82.437,59.298 +157286,81.106,57.55 +157287,79.632,55.755 +157288,77.99,53.909 +157289,81.067,59.28 +157290,79.78,57.525 +157291,78.355,55.723 +157292,76.765,53.87 +157293,79.695,59.26 +157294,78.454,57.5 +157295,77.078,55.692 +157296,75.541,53.833 +157297,78.322,59.24 +157298,77.127,57.474 +157299,75.801,55.661 +157300,74.318,53.797 +157301,76.949,59.217 +157302,75.801,57.447 +157303,74.525,55.63 +157304,73.096,53.762 +157305,75.575,59.193 +157306,74.474,57.42 +157307,73.249,55.6 +157308,71.876,53.73 +157309,74.199,59.168 +157310,73.147,57.393 +157311,71.973,55.571 +157312,70.656,53.698 +157313,72.823,59.142 +157314,71.819,57.365 +157315,70.698,55.542 +157316,69.438,53.668 +157317,71.447,59.114 +157318,70.492,57.337 +157319,69.423,55.513 +157320,68.22,53.64 +157321,70.069,59.084 +157322,69.164,57.308 +157323,68.149,55.485 +157324,67.004,53.613 +157325,68.691,59.054 +157326,67.836,57.278 +157327,66.875,55.457 +157328,65.788,53.587 +157329,67.312,59.021 +157330,66.508,57.248 +157331,65.601,55.43 +157332,64.573,53.563 +157333,65.933,58.988 +157334,65.179,57.218 +157335,64.327,55.403 +157336,63.359,53.541 +157337,64.553,58.952 +157338,63.851,57.187 +157339,63.054,55.377 +157340,62.146,53.52 +157341,63.172,58.916 +157342,62.522,57.156 +157343,61.781,55.351 +157344,60.934,53.5 +157345,61.791,58.878 +157346,61.193,57.124 +157347,60.508,55.326 +157348,59.722,53.482 +157349,60.409,58.839 +157350,59.864,57.091 +157351,59.235,55.301 +157352,58.51,53.466 +157353,59.027,58.798 +157354,58.535,57.059 +157355,57.963,55.277 +157356,57.299,53.45 +157357,57.645,58.755 +157358,57.206,57.025 +157359,56.691,55.253 +157360,56.089,53.437 +157361,56.262,58.712 +157362,55.876,56.991 +157363,55.419,55.23 +157364,54.879,53.425 +157365,54.878,58.667 +157366,54.547,56.957 +157367,54.147,55.207 +157368,53.669,53.414 +157369,53.495,58.62 +157370,53.217,56.922 +157371,52.876,55.184 +157372,52.46,53.405 +157373,52.111,58.572 +157374,51.888,56.887 +157375,51.604,55.162 +157376,51.251,53.397 +157377,50.726,58.523 +157378,50.558,56.851 +157379,50.333,55.141 +157380,50.042,53.39 +157381,49.342,58.473 +157382,49.229,56.815 +157383,49.061,55.12 +157384,48.833,53.385 +157385,47.957,58.421 +157386,47.899,56.779 +157387,47.79,55.099 +157388,47.624,53.382 +157389,46.573,58.367 +157390,46.57,56.741 +157391,46.519,55.079 +157392,46.415,53.38 +157393,45.188,58.312 +157394,45.24,56.704 +157395,45.248,55.06 +157396,45.207,53.379 +157397,43.803,58.256 +157398,43.91,56.666 +157399,43.977,55.04 +157400,43.998,53.379 +157401,42.418,58.199 +157402,42.581,56.627 +157403,42.706,55.022 +157404,42.789,53.381 +157405,41.033,58.14 +157406,41.252,56.588 +157407,41.435,55.003 +157408,41.58,53.384 +157409,39.648,58.08 +157410,39.922,56.549 +157411,40.164,54.985 +157412,40.371,53.389 +157413,38.263,58.019 +157414,38.593,56.509 +157415,38.893,54.968 +157416,39.161,53.395 +157417,36.878,57.956 +157418,37.264,56.469 +157419,37.622,54.951 +157420,37.951,53.402 +157421,35.494,57.893 +157422,35.935,56.428 +157423,36.351,54.934 +157424,36.741,53.41 +157425,34.109,57.827 +157426,34.606,56.387 +157427,35.08,54.918 +157428,35.53,53.419 +157429,32.725,57.761 +157430,33.277,56.346 +157431,33.809,54.902 +157432,34.319,53.43 +157433,31.341,57.694 +157434,31.949,56.304 +157435,32.538,54.886 +157436,33.107,53.442 +157437,29.958,57.625 +157438,30.62,56.261 +157439,31.266,54.871 +157440,31.895,53.455 +157441,28.574,57.555 +157442,29.292,56.219 +157443,29.995,54.857 +157444,30.682,53.469 +157445,27.191,57.484 +157446,27.964,56.176 +157447,28.723,54.842 +157448,29.468,53.485 +157449,25.809,57.412 +157450,26.636,56.132 +157451,27.451,54.828 +157452,28.254,53.501 +157453,24.427,57.338 +157454,25.309,56.088 +157455,26.179,54.815 +157456,27.038,53.519 +157457,23.045,57.264 +157458,23.982,56.044 +157459,24.907,54.801 +157460,25.822,53.537 +157461,21.664,57.188 +157462,22.655,55.999 +157463,23.635,54.789 +157464,24.606,53.557 +157465,20.284,57.112 +157466,21.328,55.954 +157467,22.362,54.776 +157468,23.388,53.578 +157469,18.904,57.034 +157470,20.001,55.909 +157471,21.09,54.764 +157472,22.169,53.599 +157473,17.525,56.955 +157474,18.675,55.863 +157475,19.817,54.752 +157476,20.95,53.622 +157477,16.146,56.876 +157478,17.349,55.817 +157479,18.543,54.74 +157480,19.729,53.645 +157481,14.769,56.795 +157482,16.024,55.771 +157483,17.27,54.729 +157484,18.507,53.67 +157485,13.392,56.714 +157486,14.699,55.724 +157487,15.996,54.718 +157488,17.284,53.695 +157489,12.015,56.631 +157490,13.374,55.678 +157491,14.722,54.707 +157492,16.06,53.721 +157493,10.64,56.548 +157494,12.049,55.63 +157495,13.447,54.697 +157496,14.835,53.748 +157497,9.2655,56.463 +157498,10.725,55.583 +157499,12.173,54.686 +157500,13.609,53.775 +157501,7.8919,56.378 +157502,9.4018,55.535 +157503,10.898,54.676 +157504,12.381,53.804 +157505,6.5193,56.292 +157506,8.0785,55.487 +157507,9.6222,54.667 +157508,11.152,53.833 +157509,5.1477,56.206 +157510,6.7557,55.439 +157511,8.3464,54.657 +157512,9.9218,53.862 +157513,3.7771,56.118 +157514,5.4333,55.39 +157515,7.0703,54.648 +157516,8.6901,53.893 +157517,2.4076,56.03 +157518,4.1113,55.342 +157519,5.7937,54.639 +157520,7.4571,53.924 +157521,1.0392,55.941 +157522,2.7899,55.293 +157523,4.5168,54.63 +157524,6.2227,53.955 +157525,359.67,55.852 +157526,1.4688,55.243 +157527,3.2395,54.621 +157528,4.9869,53.988 +157529,358.31,55.762 +157530,0.14829,55.194 +157531,1.9618,54.613 +157532,3.7496,54.02 +157533,356.94,55.671 +157534,358.83,55.144 +157535,0.68371,54.605 +157536,2.5107,54.053 +157537,355.58,55.579 +157538,357.51,55.095 +157539,359.41,54.596 +157540,1.2704,54.087 +157541,354.21,55.488 +157542,356.19,55.045 +157543,358.13,54.588 +157544,0.028487,54.121 +157545,352.85,55.395 +157546,354.87,54.994 +157547,356.85,54.581 +157548,358.79,54.156 +157549,351.49,55.302 +157550,353.55,54.944 +157551,355.57,54.573 +157552,357.54,54.19 +157553,350.14,55.209 +157554,352.24,54.894 +157555,354.29,54.565 +157556,356.29,54.226 +157557,348.78,55.115 +157558,350.92,54.843 +157559,353.01,54.558 +157560,355.04,54.261 +157561,347.42,55.021 +157562,349.6,54.793 +157563,351.72,54.55 +157564,353.79,54.297 +157565,346.07,54.926 +157566,348.29,54.742 +157567,350.44,54.543 +157568,352.54,54.333 +157569,344.72,54.832 +157570,346.97,54.691 +157571,349.16,54.536 +157572,351.29,54.369 +157573,343.37,54.737 +157574,345.66,54.64 +157575,347.88,54.529 +157576,350.03,54.405 +157577,342.02,54.641 +157578,344.34,54.589 +157579,346.59,54.522 +157580,348.78,54.441 +157581,340.67,54.546 +157582,343.03,54.538 +157583,345.31,54.515 +157584,347.52,54.478 +157585,339.32,54.45 +157586,341.72,54.487 +157587,344.03,54.508 +157588,346.26,54.514 +157589,337.98,54.354 +157590,340.41,54.436 +157591,342.74,54.5 +157592,345,54.551 +157593,336.64,54.258 +157594,339.09,54.384 +157595,341.46,54.493 +157596,343.73,54.588 +157597,335.3,54.162 +157598,337.78,54.333 +157599,340.17,54.486 +157600,342.47,54.624 +157601,333.96,54.066 +157602,336.47,54.282 +157603,338.88,54.479 +157604,341.2,54.66 +157605,332.62,53.97 +157606,335.16,54.231 +157607,337.6,54.472 +157608,339.93,54.697 +157609,331.29,53.874 +157610,333.86,54.18 +157611,336.31,54.465 +157612,338.66,54.733 +157613,329.95,53.778 +157614,332.55,54.129 +157615,335.02,54.458 +157616,337.39,54.769 +157617,328.62,53.682 +157618,331.24,54.077 +157619,333.73,54.451 +157620,336.11,54.805 +157621,327.29,53.586 +157622,329.93,54.026 +157623,332.44,54.443 +157624,334.84,54.84 +157625,325.97,53.491 +157626,328.63,53.976 +157627,331.15,54.436 +157628,333.56,54.875 +157629,324.64,53.395 +157630,327.32,53.925 +157631,329.86,54.429 +157632,332.28,54.91 +157633,323.32,53.3 +157634,326.02,53.874 +157635,328.57,54.421 +157636,331,54.945 +157637,322,53.205 +157638,324.71,53.823 +157639,327.28,54.413 +157640,329.71,54.979 +157641,320.68,53.111 +157642,323.41,53.773 +157643,325.99,54.405 +157644,328.43,55.013 +157645,319.36,53.017 +157646,322.11,53.722 +157647,324.69,54.397 +157648,327.14,55.046 +157649,318.04,52.923 +157650,320.81,53.672 +157651,323.4,54.389 +157652,325.85,55.079 +157653,316.73,52.83 +157654,319.51,53.622 +157655,322.11,54.381 +157656,324.56,55.111 +157657,315.42,52.737 +157658,318.21,53.572 +157659,320.81,54.372 +157660,323.26,55.143 +157661,314.11,52.645 +157662,316.91,53.522 +157663,319.52,54.364 +157664,321.97,55.174 +157665,312.8,52.553 +157666,315.61,53.472 +157667,318.22,54.355 +157668,320.67,55.205 +157669,311.5,52.462 +157670,314.31,53.423 +157671,316.92,54.346 +157672,319.37,55.235 +157673,310.2,52.372 +157674,313.01,53.374 +157675,315.63,54.336 +157676,318.07,55.264 +157677,308.9,52.282 +157678,311.72,53.325 +157679,314.33,54.327 +157680,316.77,55.293 +157681,307.6,52.193 +157682,310.42,53.276 +157683,313.03,54.317 +157684,315.47,55.321 +157685,306.3,52.104 +157686,309.13,53.228 +157687,311.73,54.307 +157688,314.16,55.348 +157689,305.01,52.017 +157690,307.83,53.179 +157691,310.43,54.297 +157692,312.85,55.374 +157693,303.72,51.93 +157694,306.54,53.131 +157695,309.13,54.286 +157696,311.54,55.4 +157697,302.43,51.844 +157698,305.24,53.084 +157699,307.83,54.275 +157700,310.23,55.425 +157701,301.14,51.759 +157702,303.95,53.036 +157703,306.53,54.264 +157704,308.92,55.449 +157705,299.86,51.675 +157706,302.66,52.989 +157707,305.23,54.253 +157708,307.61,55.472 +157709,298.58,51.591 +157710,301.37,52.942 +157711,303.93,54.241 +157712,306.29,55.494 +157713,297.3,51.509 +157714,300.08,52.896 +157715,302.62,54.229 +157716,304.97,55.515 +157717,296.02,51.427 +157718,298.79,52.85 +157719,301.32,54.217 +157720,303.65,55.535 +157721,294.75,51.347 +157722,297.5,52.804 +157723,300.02,54.204 +157724,302.33,55.554 +157725,293.47,51.268 +157726,296.22,52.758 +157727,298.71,54.191 +157728,301.01,55.572 +157729,292.2,51.19 +157730,294.93,52.713 +157731,297.41,54.178 +157732,299.68,55.59 +157733,290.93,51.112 +157734,293.64,52.669 +157735,296.1,54.164 +157736,298.36,55.606 +157737,289.67,51.037 +157738,292.36,52.624 +157739,294.8,54.15 +157740,297.03,55.621 +157741,288.4,50.962 +157742,291.07,52.58 +157743,293.49,54.135 +157744,295.7,55.634 +157745,287.14,50.888 +157746,289.79,52.537 +157747,292.18,54.121 +157748,294.37,55.647 +157749,285.88,50.816 +157750,288.51,52.493 +157751,290.87,54.105 +157752,293.04,55.659 +157753,284.62,50.745 +157754,287.22,52.451 +157755,289.57,54.09 +157756,291.7,55.669 +157757,283.37,50.675 +157758,285.94,52.408 +157759,288.26,54.073 +157760,290.37,55.678 +157761,282.12,50.606 +157762,284.66,52.366 +157763,286.95,54.057 +157764,289.03,55.686 +157765,280.86,50.539 +157766,283.38,52.325 +157767,285.64,54.04 +157768,287.69,55.693 +157769,279.62,50.473 +157770,282.1,52.284 +157771,284.33,54.023 +157772,286.35,55.698 +157773,278.37,50.409 +157774,280.82,52.243 +157775,283.02,54.005 +157776,285.01,55.703 +157777,277.12,50.346 +157778,279.54,52.203 +157779,281.71,53.987 +157780,283.67,55.706 +157781,275.88,50.284 +157782,278.27,52.163 +157783,280.4,53.968 +157784,282.32,55.707 +157785,274.64,50.224 +157786,276.99,52.124 +157787,279.08,53.949 +157788,280.98,55.707 +157789,273.4,50.166 +157790,275.71,52.085 +157791,277.77,53.929 +157792,279.63,55.706 +157793,272.16,50.108 +157794,274.44,52.047 +157795,276.46,53.909 +157796,278.28,55.704 +157797,270.93,50.053 +157798,273.16,52.009 +157799,275.14,53.889 +157800,276.93,55.7 +157801,269.7,49.999 +157802,271.89,51.972 +157803,273.83,53.868 +157804,275.58,55.695 +157805,268.46,49.946 +157806,270.61,51.935 +157807,272.52,53.846 +157808,274.23,55.688 +157809,267.24,49.895 +157810,269.34,51.899 +157811,271.2,53.824 +157812,272.87,55.68 +157813,266.01,49.845 +157814,268.07,51.863 +157815,269.89,53.802 +157816,271.52,55.671 +157817,264.78,49.797 +157818,266.79,51.828 +157819,268.57,53.779 +157820,270.16,55.66 +157821,263.56,49.751 +157822,265.52,51.793 +157823,267.26,53.756 +157824,268.81,55.648 +157825,262.33,49.706 +157826,264.25,51.759 +157827,265.94,53.732 +157828,267.45,55.634 +157829,261.11,49.663 +157830,262.98,51.725 +157831,264.62,53.707 +157832,266.09,55.619 +157833,259.89,49.622 +157834,261.71,51.692 +157835,263.31,53.682 +157836,264.73,55.602 +157837,258.68,49.582 +157838,260.44,51.659 +157839,261.99,53.657 +157840,263.37,55.584 +157841,257.46,49.544 +157842,259.17,51.627 +157843,260.67,53.631 +157844,262.01,55.564 +157845,256.24,49.507 +157846,257.9,51.596 +157847,259.36,53.605 +157848,260.64,55.543 +157849,255.03,49.472 +157850,256.63,51.565 +157851,258.04,53.578 +157852,259.28,55.52 +157853,253.82,49.439 +157854,255.37,51.534 +157855,256.72,53.55 +157856,257.92,55.496 +157857,252.61,49.408 +157858,254.1,51.504 +157859,255.4,53.522 +157860,256.55,55.47 +157861,251.4,49.378 +157862,252.83,51.475 +157863,254.08,53.494 +157864,255.18,55.443 +157865,250.19,49.349 +157866,251.56,51.446 +157867,252.76,53.465 +157868,253.82,55.414 +157869,248.98,49.323 +157870,250.3,51.418 +157871,251.44,53.435 +157872,252.45,55.384 +157873,247.77,49.298 +157874,249.03,51.39 +157875,250.12,53.405 +157876,251.08,55.352 +157877,246.57,49.275 +157878,247.77,51.362 +157879,248.81,53.374 +157880,249.71,55.318 +157881,245.36,49.253 +157882,246.5,51.336 +157883,247.49,53.343 +157884,248.34,55.283 +157885,244.16,49.234 +157886,245.24,51.31 +157887,246.17,53.312 +157888,246.97,55.247 +157889,242.96,49.216 +157890,243.97,51.284 +157891,244.85,53.28 +157892,245.6,55.209 +157893,241.75,49.199 +157894,242.71,51.259 +157895,243.53,53.247 +157896,244.23,55.169 +157897,240.55,49.184 +157898,241.45,51.234 +157899,242.2,53.214 +157900,242.86,55.128 +157901,239.35,49.171 +157902,240.18,51.21 +157903,240.88,53.18 +157904,241.48,55.086 +157905,238.15,49.16 +157906,238.92,51.187 +157907,239.56,53.146 +157908,240.11,55.042 +157909,236.95,49.15 +157910,237.66,51.164 +157911,238.24,53.111 +157912,238.74,54.996 +157913,235.75,49.141 +157914,236.39,51.142 +157915,236.92,53.076 +157916,237.36,54.949 +157917,234.55,49.135 +157918,235.13,51.12 +157919,235.6,53.04 +157920,235.99,54.9 +157921,233.36,49.13 +157922,233.87,51.099 +157923,234.28,53.004 +157924,234.61,54.85 +157925,232.16,49.126 +157926,232.6,51.078 +157927,232.96,52.967 +157928,233.24,54.799 +157929,230.96,49.124 +157930,231.34,51.057 +157931,231.64,52.93 +157932,231.86,54.746 +157933,229.76,49.124 +157934,230.08,51.038 +157935,230.32,52.892 +157936,230.49,54.691 +157937,228.57,49.125 +157938,228.82,51.018 +157939,229,52.854 +157940,229.11,54.635 +157941,227.37,49.128 +157942,227.56,51 +157943,227.68,52.815 +157944,227.74,54.578 +157945,226.17,49.132 +157946,226.3,50.982 +157947,226.35,52.776 +157948,226.36,54.519 +157949,224.97,49.138 +157950,225.03,50.964 +157951,225.03,52.736 +157952,224.98,54.458 +157953,223.78,49.145 +157954,223.77,50.947 +157955,223.71,52.696 +157956,223.61,54.397 +157957,222.58,49.154 +157958,222.51,50.93 +157959,222.39,52.655 +157960,222.23,54.333 +157961,221.38,49.164 +157962,221.25,50.914 +157963,221.07,52.614 +157964,220.86,54.269 +157965,220.18,49.176 +157966,219.99,50.898 +157967,219.75,52.573 +157968,219.48,54.203 +157969,218.98,49.188 +157970,218.73,50.882 +157971,218.43,52.531 +157972,218.1,54.136 +157973,217.79,49.203 +157974,217.46,50.868 +157975,217.11,52.488 +157976,216.73,54.067 +157977,216.59,49.218 +157978,216.2,50.853 +157979,215.79,52.445 +157980,215.35,53.997 +157981,215.39,49.235 +157982,214.94,50.839 +157983,214.47,52.402 +157984,213.98,53.926 +157985,214.19,49.254 +157986,213.68,50.826 +157987,213.15,52.358 +157988,212.6,53.853 +157989,212.99,49.273 +157990,212.42,50.813 +157991,211.83,52.314 +157992,211.23,53.779 +157993,211.78,49.294 +157994,211.16,50.8 +157995,210.51,52.27 +157996,209.85,53.704 +157997,210.58,49.316 +157998,209.89,50.788 +157999,209.19,52.225 +158000,208.48,53.628 +158001,209.38,49.339 +158002,208.63,50.776 +158003,207.87,52.179 +158004,207.11,53.55 +158005,208.18,49.364 +158006,207.37,50.764 +158007,206.55,52.134 +158008,205.73,53.471 +158009,206.97,49.389 +158010,206.11,50.753 +158011,205.24,52.087 +158012,204.36,53.391 +158013,205.77,49.416 +158014,204.84,50.743 +158015,203.92,52.041 +158016,202.99,53.31 +158017,204.56,49.443 +158018,203.58,50.733 +158019,202.6,51.994 +158020,201.62,53.228 +158021,203.35,49.472 +158022,202.32,50.723 +158023,201.28,51.947 +158024,200.24,53.144 +158025,202.15,49.502 +158026,201.06,50.713 +158027,199.96,51.899 +158028,198.87,53.06 +158029,200.94,49.533 +158030,199.79,50.704 +158031,198.65,51.851 +158032,197.5,52.975 +158033,199.73,49.564 +158034,198.53,50.695 +158035,197.33,51.803 +158036,196.13,52.888 +158037,198.51,49.597 +158038,197.26,50.686 +158039,196.02,51.755 +158040,194.77,52.8 +158041,197.3,49.63 +158042,196,50.678 +158043,194.7,51.706 +158044,193.4,52.712 +158045,196.09,49.665 +158046,194.74,50.67 +158047,193.38,51.657 +158048,192.03,52.623 +158049,194.87,49.7 +158050,193.47,50.663 +158051,192.07,51.607 +158052,190.67,52.532 +158053,193.66,49.736 +158054,192.21,50.655 +158055,190.75,51.557 +158056,189.3,52.441 +158057,192.44,49.773 +158058,190.94,50.648 +158059,189.44,51.507 +158060,187.94,52.349 +158061,191.22,49.81 +158062,189.67,50.641 +158063,188.13,51.457 +158064,186.57,52.256 +158065,190,49.848 +158066,188.41,50.635 +158067,186.81,51.407 +158068,185.21,52.162 +158069,188.78,49.887 +158070,187.14,50.629 +158071,185.5,51.356 +158072,183.85,52.067 +158073,187.55,49.926 +158074,185.87,50.622 +158075,184.19,51.305 +158076,182.49,51.972 +158077,186.33,49.966 +158078,184.61,50.617 +158079,182.88,51.254 +158080,181.13,51.876 +158081,185.1,50.006 +158082,183.34,50.611 +158083,181.56,51.202 +158084,179.77,51.779 +158085,183.87,50.047 +158086,182.07,50.605 +158087,180.25,51.151 +158088,178.42,51.682 +158089,182.64,50.089 +158090,180.8,50.6 +158091,178.94,51.099 +158092,177.06,51.584 +158093,181.41,50.131 +158094,179.53,50.595 +158095,177.63,51.047 +158096,175.71,51.486 +158097,180.18,50.173 +158098,178.26,50.59 +158099,176.32,50.995 +158100,174.36,51.387 +158101,178.95,50.215 +158102,176.99,50.585 +158103,175.01,50.943 +158104,173.01,51.287 +158105,177.71,50.258 +158106,175.72,50.581 +158107,173.71,50.891 +158108,171.66,51.187 +158109,176.47,50.302 +158110,174.45,50.576 +158111,172.4,50.838 +158112,170.31,51.087 +158113,175.23,50.345 +158114,173.18,50.572 +158115,171.09,50.786 +158116,168.96,50.986 +158117,173.99,50.389 +158118,171.91,50.567 +158119,169.78,50.733 +158120,167.61,50.885 +158121,172.75,50.432 +158122,170.64,50.563 +158123,168.48,50.681 +158124,166.27,50.783 +158125,171.5,50.476 +158126,169.36,50.559 +158127,167.17,50.628 +158128,164.93,50.681 +158129,170.26,50.52 +158130,168.09,50.555 +158131,165.87,50.575 +158132,163.59,50.579 +158133,169.01,50.565 +158134,166.82,50.551 +158135,164.57,50.522 +158136,162.25,50.477 +158137,167.76,50.609 +158138,165.54,50.547 +158139,163.26,50.469 +158140,160.91,50.375 +158141,166.51,50.653 +158142,164.27,50.543 +158143,161.96,50.417 +158144,159.57,50.272 +158145,165.25,50.697 +158146,162.99,50.539 +158147,160.66,50.364 +158148,158.24,50.169 +158149,164,50.741 +158150,161.72,50.535 +158151,159.36,50.311 +158152,156.91,50.067 +158153,162.74,50.785 +158154,160.44,50.531 +158155,158.06,50.258 +158156,155.58,49.964 +158157,161.48,50.828 +158158,159.16,50.527 +158159,156.76,50.205 +158160,154.25,49.861 +158161,160.22,50.872 +158162,157.89,50.522 +158163,155.46,50.152 +158164,152.92,49.759 +158165,158.96,50.915 +158166,156.61,50.518 +158167,154.16,50.1 +158168,151.59,49.656 +158169,157.69,50.958 +158170,155.33,50.514 +158171,152.86,50.047 +158172,150.27,49.554 +158173,156.43,51 +158174,154.05,50.51 +158175,151.56,49.995 +158176,148.95,49.451 +158177,155.16,51.043 +158178,152.77,50.506 +158179,150.27,49.942 +158180,147.63,49.349 +158181,153.89,51.085 +158182,151.49,50.501 +158183,148.97,49.89 +158184,146.31,49.248 +158185,152.62,51.126 +158186,150.21,50.496 +158187,147.68,49.838 +158188,145,49.146 +158189,151.34,51.167 +158190,148.93,50.492 +158191,146.38,49.786 +158192,143.69,49.045 +158193,150.06,51.208 +158194,147.64,50.487 +158195,145.09,49.734 +158196,142.37,48.945 +158197,148.79,51.248 +158198,146.36,50.482 +158199,143.8,49.682 +158200,141.06,48.844 +158201,147.51,51.288 +158202,145.08,50.477 +158203,142.5,49.631 +158204,139.76,48.745 +158205,146.23,51.326 +158206,143.79,50.471 +158207,141.21,49.579 +158208,138.45,48.645 +158209,144.94,51.365 +158210,142.51,50.466 +158211,139.92,49.528 +158212,137.15,48.547 +158213,143.66,51.402 +158214,141.22,50.46 +158215,138.63,49.477 +158216,135.85,48.449 +158217,142.37,51.439 +158218,139.94,50.454 +158219,137.34,49.427 +158220,134.55,48.351 +158221,141.08,51.476 +158222,138.65,50.448 +158223,136.06,49.376 +158224,133.25,48.254 +158225,139.79,51.511 +158226,137.37,50.442 +158227,134.77,49.326 +158228,131.96,48.158 +158229,138.5,51.546 +158230,136.08,50.435 +158231,133.48,49.276 +158232,130.67,48.063 +158233,137.2,51.58 +158234,134.79,50.428 +158235,132.2,49.227 +158236,129.38,47.968 +158237,135.91,51.613 +158238,133.5,50.421 +158239,130.91,49.178 +158240,128.09,47.875 +158241,134.61,51.645 +158242,132.21,50.414 +158243,129.63,49.129 +158244,126.81,47.782 +158245,133.31,51.677 +158246,130.92,50.406 +158247,128.34,49.08 +158248,125.53,47.69 +158249,132.01,51.707 +158250,129.63,50.398 +158251,127.06,49.032 +158252,124.25,47.599 +158253,130.71,51.736 +158254,128.34,50.39 +158255,125.78,48.984 +158256,122.97,47.509 +158257,129.4,51.765 +158258,127.05,50.381 +158259,124.5,48.936 +158260,121.69,47.42 +158261,128.09,51.792 +158262,125.76,50.372 +158263,123.22,48.889 +158264,120.42,47.332 +158265,126.79,51.819 +158266,124.47,50.363 +158267,121.94,48.842 +158268,119.15,47.245 +158269,125.48,51.844 +158270,123.17,50.354 +158271,120.66,48.795 +158272,117.88,47.16 +158273,124.16,51.868 +158274,121.88,50.344 +158275,119.38,48.749 +158276,116.61,47.075 +158277,122.85,51.891 +158278,120.59,50.333 +158279,118.1,48.704 +158280,115.35,46.992 +158281,121.54,51.913 +158282,119.29,50.323 +158283,116.83,48.658 +158284,114.09,46.91 +158285,120.22,51.934 +158286,118,50.312 +158287,115.55,48.614 +158288,112.83,46.829 +158289,118.9,51.954 +158290,116.7,50.3 +158291,114.28,48.569 +158292,111.57,46.75 +158293,117.58,51.972 +158294,115.4,50.288 +158295,113,48.525 +158296,110.32,46.672 +158297,116.26,51.989 +158298,114.11,50.276 +158299,111.73,48.482 +158300,109.06,46.595 +158301,114.94,52.005 +158302,112.81,50.263 +158303,110.46,48.439 +158304,107.81,46.52 +158305,113.61,52.02 +158306,111.51,50.25 +158307,109.18,48.396 +158308,106.56,46.446 +158309,112.29,52.033 +158310,110.21,50.237 +158311,107.91,48.354 +158312,105.32,46.373 +158313,110.96,52.045 +158314,108.92,50.223 +158315,106.64,48.313 +158316,104.08,46.303 +158317,109.63,52.056 +158318,107.62,50.208 +158319,105.37,48.272 +158320,102.83,46.233 +158321,108.3,52.065 +158322,106.32,50.193 +158323,104.1,48.231 +158324,101.6,46.165 +158325,106.97,52.073 +158326,105.02,50.178 +158327,102.83,48.192 +158328,100.36,46.099 +158329,105.64,52.08 +158330,103.72,50.162 +158331,101.57,48.152 +158332,99.123,46.034 +158333,104.3,52.085 +158334,102.42,50.146 +158335,100.3,48.113 +158336,97.891,45.971 +158337,102.97,52.088 +158338,101.11,50.129 +158339,99.033,48.075 +158340,96.66,45.91 +158341,101.63,52.09 +158342,99.812,50.112 +158343,97.767,48.037 +158344,95.432,45.85 +158345,100.29,52.091 +158346,98.51,50.094 +158347,96.502,48 +158348,94.205,45.792 +158349,98.955,52.09 +158350,97.208,50.076 +158351,95.238,47.963 +158352,92.981,45.736 +158353,97.615,52.088 +158354,95.905,50.057 +158355,93.974,47.927 +158356,91.758,45.682 +158357,96.273,52.084 +158358,94.601,50.038 +158359,92.711,47.892 +158360,90.538,45.629 +158361,94.931,52.079 +158362,93.297,50.018 +158363,91.448,47.857 +158364,89.319,45.578 +158365,93.587,52.072 +158366,91.993,49.998 +158367,90.186,47.822 +158368,88.102,45.529 +158369,92.242,52.064 +158370,90.689,49.977 +158371,88.924,47.788 +158372,86.887,45.482 +158373,90.896,52.054 +158374,89.384,49.956 +158375,87.664,47.755 +158376,85.674,45.436 +158377,89.549,52.042 +158378,88.079,49.934 +158379,86.403,47.723 +158380,84.463,45.392 +158381,88.201,52.029 +158382,86.773,49.911 +158383,85.143,47.691 +158384,83.253,45.351 +158385,86.852,52.014 +158386,85.467,49.888 +158387,83.884,47.659 +158388,82.045,45.311 +158389,85.502,51.998 +158390,84.161,49.865 +158391,82.626,47.629 +158392,80.838,45.272 +158393,84.152,51.98 +158394,82.855,49.841 +158395,81.367,47.599 +158396,79.633,45.236 +158397,82.8,51.961 +158398,81.548,49.816 +158399,80.11,47.569 +158400,78.43,45.202 +158401,81.448,51.94 +158402,80.241,49.791 +158403,78.852,47.54 +158404,77.227,45.169 +158405,80.094,51.917 +158406,78.934,49.766 +158407,77.596,47.512 +158408,76.027,45.139 +158409,78.74,51.892 +158410,77.627,49.74 +158411,76.339,47.484 +158412,74.827,45.11 +158413,77.385,51.866 +158414,76.319,49.713 +158415,75.083,47.457 +158416,73.629,45.084 +158417,76.03,51.839 +158418,75.011,49.686 +158419,73.828,47.431 +158420,72.432,45.059 +158421,74.674,51.809 +158422,73.703,49.658 +158423,72.573,47.405 +158424,71.237,45.036 +158425,73.317,51.778 +158426,72.395,49.629 +158427,71.318,47.38 +158428,70.042,45.015 +158429,71.959,51.746 +158430,71.087,49.601 +158431,70.064,47.356 +158432,68.848,44.996 +158433,70.601,51.712 +158434,69.778,49.571 +158435,68.81,47.332 +158436,67.656,44.979 +158437,69.242,51.676 +158438,68.47,49.541 +158439,67.556,47.309 +158440,66.464,44.964 +158441,67.883,51.638 +158442,67.161,49.511 +158443,66.303,47.286 +158444,65.273,44.95 +158445,66.524,51.599 +158446,65.852,49.48 +158447,65.05,47.264 +158448,64.083,44.939 +158449,65.163,51.558 +158450,64.543,49.448 +158451,63.797,47.243 +158452,62.894,44.929 +158453,63.803,51.516 +158454,63.234,49.416 +158455,62.545,47.222 +158456,61.706,44.921 +158457,62.442,51.472 +158458,61.924,49.383 +158459,61.293,47.202 +158460,60.518,44.916 +158461,61.081,51.426 +158462,60.615,49.35 +158463,60.041,47.182 +158464,59.33,44.912 +158465,59.719,51.379 +158466,59.306,49.316 +158467,58.789,47.163 +158468,58.143,44.909 +158469,58.357,51.33 +158470,57.996,49.282 +158471,57.538,47.145 +158472,56.957,44.909 +158473,56.995,51.28 +158474,56.687,49.247 +158475,56.287,47.127 +158476,55.771,44.911 +158477,55.633,51.228 +158478,55.378,49.211 +158479,55.036,47.11 +158480,54.585,44.914 +158481,54.27,51.174 +158482,54.068,49.176 +158483,53.785,47.094 +158484,53.399,44.919 +158485,52.907,51.119 +158486,52.759,49.139 +158487,52.534,47.078 +158488,52.214,44.926 +158489,51.545,51.062 +158490,51.45,49.102 +158491,51.283,47.063 +158492,51.029,44.935 +158493,50.182,51.004 +158494,50.14,49.065 +158495,50.033,47.048 +158496,49.844,44.945 +158497,48.819,50.944 +158498,48.831,49.027 +158499,48.782,47.034 +158500,48.658,44.957 +158501,47.456,50.883 +158502,47.522,48.988 +158503,47.532,47.02 +158504,47.473,44.971 +158505,46.093,50.82 +158506,46.213,48.949 +158507,46.282,47.007 +158508,46.288,44.986 +158509,44.73,50.755 +158510,44.904,48.91 +158511,45.031,46.995 +158512,45.102,45.003 +158513,43.367,50.689 +158514,43.595,48.87 +158515,43.781,46.983 +158516,43.916,45.022 +158517,42.005,50.622 +158518,42.286,48.83 +158519,42.531,46.972 +158520,42.73,45.042 +158521,40.642,50.553 +158522,40.978,48.789 +158523,41.281,46.961 +158524,41.543,45.064 +158525,39.28,50.483 +158526,39.669,48.748 +158527,40.03,46.951 +158528,40.356,45.087 +158529,37.918,50.411 +158530,38.361,48.706 +158531,38.78,46.941 +158532,39.169,45.112 +158533,36.556,50.338 +158534,37.053,48.664 +158535,37.53,46.932 +158536,37.981,45.138 +158537,35.195,50.263 +158538,35.745,48.621 +158539,36.279,46.923 +158540,36.792,45.166 +158541,33.834,50.187 +158542,34.438,48.578 +158543,35.028,46.915 +158544,35.603,45.195 +158545,32.473,50.11 +158546,33.131,48.534 +158547,33.778,46.907 +158548,34.413,45.226 +158549,31.113,50.032 +158550,31.823,48.49 +158551,32.527,46.9 +158552,33.222,45.258 +158553,29.753,49.952 +158554,30.517,48.446 +158555,31.276,46.893 +158556,32.031,45.291 +158557,28.394,49.871 +158558,29.21,48.401 +158559,30.025,46.887 +158560,30.838,45.325 +158561,27.036,49.788 +158562,27.904,48.356 +158563,28.774,46.881 +158564,29.645,45.361 +158565,25.677,49.704 +158566,26.598,48.311 +158567,27.522,46.876 +158568,28.45,45.398 +158569,24.32,49.62 +158570,25.292,48.265 +158571,26.27,46.871 +158572,27.255,45.436 +158573,22.963,49.534 +158574,23.987,48.218 +158575,25.019,46.866 +158576,26.059,45.476 +158577,21.607,49.446 +158578,22.682,48.172 +158579,23.766,46.862 +158580,24.861,45.516 +158581,20.251,49.358 +158582,21.377,48.125 +158583,22.514,46.858 +158584,23.662,45.558 +158585,18.897,49.269 +158586,20.073,48.078 +158587,21.261,46.855 +158588,22.463,45.6 +158589,17.543,49.178 +158590,18.769,48.03 +158591,20.008,46.852 +158592,21.261,45.644 +158593,16.19,49.086 +158594,17.466,47.982 +158595,18.755,46.849 +158596,20.059,45.688 +158597,14.838,48.994 +158598,16.163,47.934 +158599,17.502,46.847 +158600,18.855,45.734 +158601,13.486,48.9 +158602,14.86,47.885 +158603,16.248,46.845 +158604,17.65,45.78 +158605,12.136,48.806 +158606,13.558,47.837 +158607,14.994,46.844 +158608,16.444,45.828 +158609,10.787,48.71 +158610,12.257,47.788 +158611,13.739,46.843 +158612,15.236,45.876 +158613,9.4382,48.614 +158614,10.955,47.738 +158615,12.484,46.842 +158616,14.027,45.924 +158617,8.0909,48.517 +158618,9.6546,47.689 +158619,11.229,46.841 +158620,12.816,45.974 +158621,6.7447,48.419 +158622,8.3543,47.639 +158623,9.9735,46.841 +158624,11.603,46.024 +158625,5.3996,48.32 +158626,7.0546,47.589 +158627,8.7175,46.84 +158628,10.389,46.075 +158629,4.0557,48.22 +158630,5.7554,47.539 +158631,7.4611,46.841 +158632,9.1739,46.127 +158633,2.7129,48.12 +158634,4.4567,47.488 +158635,6.2043,46.841 +158636,7.9568,46.179 +158637,1.3714,48.019 +158638,3.1585,47.438 +158639,4.947,46.842 +158640,6.738,46.231 +158641,0.031151,47.917 +158642,1.8609,47.387 +158643,3.6893,46.843 +158644,5.5176,46.284 +158645,358.69,47.815 +158646,0.56385,47.336 +158647,2.4312,46.844 +158648,4.2955,46.338 +158649,357.35,47.712 +158650,359.27,47.285 +158651,1.1727,46.845 +158652,3.0717,46.392 +158653,356.02,47.609 +158654,357.97,47.234 +158655,359.91,46.846 +158656,1.8462,46.446 +158657,354.68,47.505 +158658,356.68,47.183 +158659,358.65,46.848 +158660,0.61887,46.501 +158661,353.35,47.4 +158662,355.38,47.132 +158663,357.39,46.85 +158664,359.39,46.556 +158665,352.02,47.295 +158666,354.09,47.08 +158667,356.13,46.851 +158668,358.16,46.611 +158669,350.69,47.19 +158670,352.79,47.029 +158671,354.87,46.853 +158672,356.93,46.666 +158673,349.36,47.085 +158674,351.5,46.977 +158675,353.61,46.856 +158676,355.69,46.722 +158677,348.03,46.979 +158678,350.21,46.925 +158679,352.35,46.858 +158680,354.46,46.778 +158681,346.71,46.872 +158682,348.92,46.874 +158683,351.09,46.86 +158684,353.22,46.833 +158685,345.38,46.766 +158686,347.63,46.822 +158687,349.82,46.862 +158688,351.98,46.889 +158689,344.06,46.66 +158690,346.34,46.77 +158691,348.56,46.865 +158692,350.74,46.945 +158693,342.74,46.553 +158694,345.05,46.719 +158695,347.3,46.867 +158696,349.49,47.001 +158697,341.42,46.446 +158698,343.76,46.667 +158699,346.03,46.87 +158700,348.25,47.056 +158701,340.1,46.339 +158702,342.47,46.615 +158703,344.77,46.872 +158704,347,47.112 +158705,338.79,46.232 +158706,341.18,46.564 +158707,343.5,46.875 +158708,345.75,47.167 +158709,337.47,46.125 +158710,339.9,46.512 +158711,342.23,46.877 +158712,344.5,47.222 +158713,336.16,46.019 +158714,338.61,46.461 +158715,340.97,46.88 +158716,343.25,47.277 +158717,334.85,45.912 +158718,337.32,46.41 +158719,339.7,46.882 +158720,341.99,47.332 +158721,333.54,45.805 +158722,336.04,46.359 +158723,338.43,46.885 +158724,340.73,47.386 +158725,332.24,45.699 +158726,334.76,46.308 +158727,337.16,46.887 +158728,339.47,47.44 +158729,330.93,45.593 +158730,333.47,46.257 +158731,335.89,46.889 +158732,338.21,47.494 +158733,329.63,45.487 +158734,332.19,46.206 +158735,334.62,46.891 +158736,336.95,47.547 +158737,328.33,45.382 +158738,330.91,46.155 +158739,333.35,46.893 +158740,335.69,47.6 +158741,327.03,45.277 +158742,329.63,46.105 +158743,332.08,46.895 +158744,334.42,47.652 +158745,325.74,45.172 +158746,328.35,46.055 +158747,330.81,46.897 +158748,333.15,47.703 +158749,324.45,45.068 +158750,327.07,46.005 +158751,329.54,46.899 +158752,331.88,47.755 +158753,323.15,44.965 +158754,325.79,45.955 +158755,328.27,46.9 +158756,330.61,47.805 +158757,321.86,44.862 +158758,324.51,45.906 +158759,327,46.901 +158760,329.34,47.855 +158761,320.58,44.759 +158762,323.24,45.856 +158763,325.72,46.903 +158764,328.06,47.904 +158765,319.29,44.658 +158766,321.96,45.807 +158767,324.45,46.904 +158768,326.78,47.952 +158769,318.01,44.557 +158770,320.68,45.759 +158771,323.17,46.904 +158772,325.5,48 +158773,316.73,44.456 +158774,319.41,45.71 +158775,321.9,46.905 +158776,324.22,48.047 +158777,315.45,44.357 +158778,318.14,45.662 +158779,320.62,46.905 +158780,322.94,48.093 +158781,314.17,44.258 +158782,316.86,45.614 +158783,319.34,46.905 +158784,321.66,48.138 +158785,312.9,44.16 +158786,315.59,45.567 +158787,318.07,46.905 +158788,320.37,48.182 +158789,311.63,44.063 +158790,314.32,45.52 +158791,316.79,46.904 +158792,319.08,48.225 +158793,310.36,43.968 +158794,313.05,45.473 +158795,315.51,46.903 +158796,317.79,48.268 +158797,309.09,43.873 +158798,311.78,45.427 +158799,314.23,46.902 +158800,316.5,48.309 +158801,307.83,43.779 +158802,310.51,45.381 +158803,312.95,46.901 +158804,315.21,48.349 +158805,306.56,43.686 +158806,309.24,45.336 +158807,311.67,46.899 +158808,313.91,48.389 +158809,305.3,43.595 +158810,307.97,45.29 +158811,310.39,46.897 +158812,312.61,48.427 +158813,304.04,43.504 +158814,306.71,45.246 +158815,309.11,46.895 +158816,311.32,48.464 +158817,302.79,43.415 +158818,305.44,45.202 +158819,307.83,46.892 +158820,310.02,48.5 +158821,301.54,43.327 +158822,304.17,45.158 +158823,306.55,46.889 +158824,308.71,48.535 +158825,300.28,43.241 +158826,302.91,45.115 +158827,305.27,46.886 +158828,307.41,48.568 +158829,299.04,43.156 +158830,301.65,45.072 +158831,303.98,46.882 +158832,306.11,48.601 +158833,297.79,43.072 +158834,300.38,45.029 +158835,302.7,46.878 +158836,304.8,48.632 +158837,296.55,42.99 +158838,299.12,44.988 +158839,301.42,46.873 +158840,303.49,48.662 +158841,295.3,42.909 +158842,297.86,44.946 +158843,300.13,46.868 +158844,302.18,48.691 +158845,294.06,42.829 +158846,296.6,44.906 +158847,298.85,46.862 +158848,300.87,48.718 +158849,292.83,42.752 +158850,295.34,44.865 +158851,297.56,46.857 +158852,299.56,48.744 +158853,291.59,42.675 +158854,294.08,44.826 +158855,296.27,46.85 +158856,298.25,48.768 +158857,290.36,42.601 +158858,292.82,44.787 +158859,294.99,46.844 +158860,296.93,48.792 +158861,289.13,42.528 +158862,291.56,44.748 +158863,293.7,46.836 +158864,295.61,48.814 +158865,287.9,42.457 +158866,290.3,44.71 +158867,292.41,46.829 +158868,294.3,48.834 +158869,286.67,42.387 +158870,289.05,44.673 +158871,291.13,46.821 +158872,292.98,48.853 +158873,285.45,42.319 +158874,287.79,44.636 +158875,289.84,46.812 +158876,291.66,48.87 +158877,284.23,42.253 +158878,286.54,44.6 +158879,288.55,46.803 +158880,290.33,48.886 +158881,283.01,42.189 +158882,285.28,44.564 +158883,287.26,46.793 +158884,289.01,48.901 +158885,281.79,42.127 +158886,284.03,44.529 +158887,285.97,46.783 +158888,287.69,48.914 +158889,280.57,42.066 +158890,282.78,44.495 +158891,284.68,46.773 +158892,286.36,48.925 +158893,279.36,42.008 +158894,281.52,44.461 +158895,283.39,46.762 +158896,285.04,48.935 +158897,278.15,41.951 +158898,280.27,44.428 +158899,282.1,46.75 +158900,283.71,48.943 +158901,276.94,41.896 +158902,279.02,44.396 +158903,280.81,46.738 +158904,282.38,48.95 +158905,275.73,41.844 +158906,277.77,44.364 +158907,279.52,46.726 +158908,281.05,48.955 +158909,274.52,41.793 +158910,276.52,44.333 +158911,278.23,46.713 +158912,279.72,48.959 +158913,273.32,41.744 +158914,275.27,44.303 +158915,276.93,46.699 +158916,278.39,48.96 +158917,272.12,41.698 +158918,274.02,44.273 +158919,275.64,46.685 +158920,277.05,48.961 +158921,270.92,41.653 +158922,272.77,44.244 +158923,274.35,46.67 +158924,275.72,48.959 +158925,269.72,41.611 +158926,271.52,44.216 +158927,273.06,46.655 +158928,274.38,48.956 +158929,268.52,41.57 +158930,270.28,44.188 +158931,271.76,46.639 +158932,273.05,48.951 +158933,267.32,41.532 +158934,269.03,44.161 +158935,270.47,46.622 +158936,271.71,48.945 +158937,266.13,41.496 +158938,267.78,44.135 +158939,269.17,46.605 +158940,270.37,48.937 +158941,264.94,41.461 +158942,266.54,44.109 +158943,267.88,46.588 +158944,269.04,48.927 +158945,263.75,41.429 +158946,265.29,44.084 +158947,266.59,46.57 +158948,267.7,48.915 +158949,262.56,41.4 +158950,264.05,44.06 +158951,265.29,46.551 +158952,266.36,48.902 +158953,261.37,41.372 +158954,262.8,44.037 +158955,264,46.532 +158956,265.02,48.887 +158957,260.18,41.347 +158958,261.56,44.014 +158959,262.7,46.512 +158960,263.68,48.87 +158961,258.99,41.323 +158962,260.31,43.992 +158963,261.41,46.492 +158964,262.33,48.852 +158965,257.81,41.302 +158966,259.07,43.971 +158967,260.11,46.471 +158968,260.99,48.831 +158969,256.63,41.283 +158970,257.83,43.95 +158971,258.82,46.45 +158972,259.65,48.81 +158973,255.44,41.266 +158974,256.58,43.93 +158975,257.52,46.428 +158976,258.31,48.786 +158977,254.26,41.252 +158978,255.34,43.911 +158979,256.23,46.405 +158980,256.96,48.76 +158981,253.08,41.239 +158982,254.1,43.893 +158983,254.93,46.382 +158984,255.62,48.733 +158985,251.9,41.229 +158986,252.86,43.875 +158987,253.63,46.358 +158988,254.27,48.704 +158989,250.72,41.221 +158990,251.62,43.858 +158991,252.34,46.334 +158992,252.93,48.674 +158993,249.54,41.215 +158994,250.38,43.842 +158995,251.04,46.309 +158996,251.58,48.641 +158997,248.36,41.211 +158998,249.13,43.826 +158999,249.75,46.283 +159000,250.24,48.607 +159001,247.19,41.209 +159002,247.89,43.812 +159003,248.45,46.257 +159004,248.89,48.572 +159005,246.01,41.21 +159006,246.65,43.798 +159007,247.15,46.231 +159008,247.54,48.534 +159009,244.83,41.212 +159010,245.41,43.784 +159011,245.86,46.204 +159012,246.2,48.495 +159013,243.66,41.217 +159014,244.17,43.772 +159015,244.56,46.176 +159016,244.85,48.454 +159017,242.48,41.224 +159018,242.93,43.76 +159019,243.26,46.148 +159020,243.5,48.411 +159021,241.31,41.232 +159022,241.69,43.748 +159023,241.97,46.119 +159024,242.16,48.367 +159025,240.13,41.243 +159026,240.45,43.738 +159027,240.67,46.09 +159028,240.81,48.321 +159029,238.96,41.256 +159030,239.22,43.728 +159031,239.38,46.06 +159032,239.46,48.273 +159033,237.78,41.271 +159034,237.98,43.719 +159035,238.08,46.029 +159036,238.12,48.223 +159037,236.61,41.288 +159038,236.74,43.71 +159039,236.78,45.998 +159040,236.77,48.172 +159041,235.43,41.307 +159042,235.5,43.702 +159043,235.49,45.967 +159044,235.42,48.119 +159045,234.26,41.328 +159046,234.26,43.695 +159047,234.19,45.935 +159048,234.07,48.065 +159049,233.08,41.35 +159050,233.02,43.688 +159051,232.9,45.902 +159052,232.73,48.009 +159053,231.9,41.375 +159054,231.78,43.683 +159055,231.6,45.869 +159056,231.38,47.951 +159057,230.73,41.401 +159058,230.54,43.677 +159059,230.31,45.836 +159060,230.03,47.892 +159061,229.55,41.43 +159062,229.3,43.673 +159063,229.01,45.802 +159064,228.69,47.831 +159065,228.37,41.46 +159066,228.06,43.669 +159067,227.71,45.767 +159068,227.34,47.769 +159069,227.2,41.492 +159070,226.82,43.665 +159071,226.42,45.732 +159072,226,47.705 +159073,226.02,41.526 +159074,225.58,43.663 +159075,225.13,45.696 +159076,224.65,47.639 +159077,224.84,41.561 +159078,224.34,43.661 +159079,223.83,45.66 +159080,223.31,47.572 +159081,223.66,41.598 +159082,223.1,43.659 +159083,222.54,45.624 +159084,221.96,47.503 +159085,222.48,41.637 +159086,221.86,43.658 +159087,221.24,45.587 +159088,220.62,47.433 +159089,221.3,41.677 +159090,220.62,43.658 +159091,219.95,45.55 +159092,219.27,47.362 +159093,220.12,41.719 +159094,219.38,43.658 +159095,218.66,45.512 +159096,217.93,47.289 +159097,218.93,41.763 +159098,218.14,43.659 +159099,217.36,45.473 +159100,216.59,47.214 +159101,217.75,41.808 +159102,216.9,43.66 +159103,216.07,45.435 +159104,215.25,47.138 +159105,216.56,41.854 +159106,215.66,43.662 +159107,214.78,45.396 +159108,213.9,47.061 +159109,215.38,41.902 +159110,214.42,43.665 +159111,213.48,45.356 +159112,212.56,46.983 +159113,214.19,41.951 +159114,213.18,43.668 +159115,212.19,45.316 +159116,211.22,46.903 +159117,213,42.002 +159118,211.94,43.671 +159119,210.9,45.276 +159120,209.89,46.822 +159121,211.81,42.054 +159122,210.7,43.675 +159123,209.61,45.235 +159124,208.55,46.739 +159125,210.62,42.107 +159126,209.46,43.679 +159127,208.32,45.194 +159128,207.21,46.655 +159129,209.43,42.162 +159130,208.21,43.684 +159131,207.03,45.153 +159132,205.87,46.57 +159133,208.24,42.217 +159134,206.97,43.69 +159135,205.74,45.111 +159136,204.54,46.484 +159137,207.04,42.274 +159138,205.73,43.696 +159139,204.45,45.069 +159140,203.2,46.397 +159141,205.85,42.332 +159142,204.49,43.702 +159143,203.16,45.026 +159144,201.87,46.308 +159145,204.65,42.391 +159146,203.24,43.709 +159147,201.87,44.984 +159148,200.53,46.219 +159149,203.45,42.451 +159150,202,43.716 +159151,200.58,44.941 +159152,199.2,46.128 +159153,202.25,42.512 +159154,200.75,43.723 +159155,199.3,44.897 +159156,197.87,46.036 +159157,201.05,42.574 +159158,199.51,43.731 +159159,198.01,44.854 +159160,196.54,45.944 +159161,199.84,42.637 +159162,198.26,43.739 +159163,196.72,44.81 +159164,195.21,45.85 +159165,198.64,42.701 +159166,197.02,43.748 +159167,195.44,44.766 +159168,193.89,45.755 +159169,197.43,42.765 +159170,195.77,43.757 +159171,194.15,44.721 +159172,192.56,45.659 +159173,196.22,42.83 +159174,194.53,43.766 +159175,192.87,44.677 +159176,191.23,45.563 +159177,195.01,42.896 +159178,193.28,43.776 +159179,191.58,44.632 +159180,189.91,45.466 +159181,193.8,42.963 +159182,192.03,43.786 +159183,190.3,44.587 +159184,188.59,45.367 +159185,192.58,43.03 +159186,190.78,43.796 +159187,189.01,44.542 +159188,187.27,45.268 +159189,191.37,43.098 +159190,189.54,43.806 +159191,187.73,44.497 +159192,185.95,45.169 +159193,190.15,43.166 +159194,188.29,43.817 +159195,186.45,44.451 +159196,184.63,45.068 +159197,188.93,43.235 +159198,187.04,43.828 +159199,185.17,44.406 +159200,183.31,44.967 +159201,187.71,43.304 +159202,185.79,43.839 +159203,183.88,44.36 +159204,181.99,44.866 +159205,186.48,43.373 +159206,184.54,43.85 +159207,182.6,44.314 +159208,180.68,44.763 +159209,185.26,43.443 +159210,183.29,43.862 +159211,181.32,44.268 +159212,179.37,44.66 +159213,184.03,43.514 +159214,182.04,43.874 +159215,180.05,44.222 +159216,178.06,44.557 +159217,182.8,43.584 +159218,180.78,43.886 +159219,178.77,44.176 +159220,176.75,44.453 +159221,181.57,43.655 +159222,179.53,43.898 +159223,177.49,44.13 +159224,175.44,44.349 +159225,180.34,43.726 +159226,178.28,43.91 +159227,176.21,44.083 +159228,174.13,44.245 +159229,179.1,43.796 +159230,177.03,43.923 +159231,174.93,44.037 +159232,172.83,44.14 +159233,177.87,43.867 +159234,175.77,43.935 +159235,173.66,43.991 +159236,171.53,44.034 +159237,176.63,43.939 +159238,174.52,43.948 +159239,172.38,43.945 +159240,170.22,43.929 +159241,175.39,44.01 +159242,173.26,43.96 +159243,171.11,43.898 +159244,168.92,43.823 +159245,174.15,44.081 +159246,172.01,43.973 +159247,169.83,43.852 +159248,167.63,43.718 +159249,172.9,44.151 +159250,170.75,43.986 +159251,168.56,43.806 +159252,166.33,43.612 +159253,171.65,44.222 +159254,169.49,43.999 +159255,167.29,43.76 +159256,165.04,43.506 +159257,170.41,44.293 +159258,168.24,44.011 +159259,166.02,43.714 +159260,163.74,43.4 +159261,169.16,44.363 +159262,166.98,44.024 +159263,164.75,43.668 +159264,162.45,43.294 +159265,167.9,44.433 +159266,165.72,44.037 +159267,163.47,43.622 +159268,161.17,43.188 +159269,166.65,44.503 +159270,164.46,44.05 +159271,162.2,43.577 +159272,159.88,43.082 +159273,165.4,44.572 +159274,163.2,44.063 +159275,160.94,43.531 +159276,158.59,42.976 +159277,164.14,44.641 +159278,161.94,44.075 +159279,159.67,43.486 +159280,157.31,42.871 +159281,162.88,44.709 +159282,160.68,44.088 +159283,158.4,43.441 +159284,156.03,42.766 +159285,161.62,44.777 +159286,159.42,44.101 +159287,157.13,43.396 +159288,154.75,42.661 +159289,160.35,44.845 +159290,158.16,44.113 +159291,155.87,43.351 +159292,153.48,42.556 +159293,159.09,44.912 +159294,156.89,44.125 +159295,154.6,43.307 +159296,152.2,42.452 +159297,157.82,44.978 +159298,155.63,44.138 +159299,153.34,43.262 +159300,150.93,42.349 +159301,156.55,45.044 +159302,154.37,44.15 +159303,152.07,43.218 +159304,149.66,42.245 +159305,155.28,45.109 +159306,153.1,44.162 +159307,150.81,43.174 +159308,148.39,42.143 +159309,154.01,45.173 +159310,151.84,44.174 +159311,149.55,43.131 +159312,147.12,42.041 +159313,152.73,45.237 +159314,150.57,44.185 +159315,148.29,43.088 +159316,145.86,41.94 +159317,151.46,45.299 +159318,149.3,44.197 +159319,147.02,43.045 +159320,144.6,41.839 +159321,150.18,45.361 +159322,148.04,44.208 +159323,145.76,43.002 +159324,143.34,41.739 +159325,148.9,45.422 +159326,146.77,44.219 +159327,144.51,42.96 +159328,142.08,41.64 +159329,147.62,45.483 +159330,145.5,44.23 +159331,143.25,42.918 +159332,140.82,41.542 +159333,146.34,45.542 +159334,144.23,44.24 +159335,141.99,42.877 +159336,139.57,41.444 +159337,145.05,45.6 +159338,142.97,44.25 +159339,140.73,42.836 +159340,138.32,41.348 +159341,143.77,45.657 +159342,141.7,44.26 +159343,139.47,42.795 +159344,137.07,41.253 +159345,142.48,45.714 +159346,140.43,44.27 +159347,138.22,42.755 +159348,135.82,41.158 +159349,141.19,45.769 +159350,139.16,44.28 +159351,136.96,42.715 +159352,134.58,41.065 +159353,139.9,45.823 +159354,137.88,44.289 +159355,135.71,42.676 +159356,133.34,40.973 +159357,138.6,45.876 +159358,136.61,44.297 +159359,134.46,42.637 +159360,132.1,40.882 +159361,137.31,45.928 +159362,135.34,44.306 +159363,133.2,42.598 +159364,130.86,40.792 +159365,136.01,45.978 +159366,134.07,44.314 +159367,131.95,42.56 +159368,129.62,40.704 +159369,134.72,46.028 +159370,132.79,44.322 +159371,130.7,42.523 +159372,128.39,40.617 +159373,133.42,46.076 +159374,131.52,44.329 +159375,129.45,42.486 +159376,127.16,40.531 +159377,132.12,46.123 +159378,130.25,44.336 +159379,128.2,42.45 +159380,125.93,40.447 +159381,130.82,46.169 +159382,128.97,44.343 +159383,126.95,42.414 +159384,124.7,40.364 +159385,129.51,46.213 +159386,127.7,44.349 +159387,125.7,42.379 +159388,123.48,40.283 +159389,128.21,46.256 +159390,126.42,44.355 +159391,124.45,42.344 +159392,122.25,40.203 +159393,126.9,46.297 +159394,125.14,44.36 +159395,123.21,42.31 +159396,121.03,40.125 +159397,125.6,46.338 +159398,123.87,44.365 +159399,121.96,42.276 +159400,119.81,40.048 +159401,124.29,46.376 +159402,122.59,44.37 +159403,120.71,42.243 +159404,118.6,39.974 +159405,122.98,46.414 +159406,121.31,44.374 +159407,119.47,42.211 +159408,117.38,39.901 +159409,121.67,46.45 +159410,120.04,44.378 +159411,118.22,42.179 +159412,116.17,39.829 +159413,120.35,46.484 +159414,118.76,44.381 +159415,116.98,42.148 +159416,114.96,39.76 +159417,119.04,46.517 +159418,117.48,44.384 +159419,115.73,42.118 +159420,113.75,39.692 +159421,117.73,46.548 +159422,116.2,44.386 +159423,114.49,42.088 +159424,112.54,39.626 +159425,116.41,46.578 +159426,114.92,44.388 +159427,113.25,42.059 +159428,111.34,39.562 +159429,115.09,46.606 +159430,113.64,44.389 +159431,112.01,42.03 +159432,110.14,39.5 +159433,113.78,46.633 +159434,112.36,44.39 +159435,110.77,42.003 +159436,108.94,39.44 +159437,112.46,46.658 +159438,111.08,44.39 +159439,109.53,41.976 +159440,107.74,39.382 +159441,111.14,46.681 +159442,109.8,44.39 +159443,108.29,41.949 +159444,106.54,39.327 +159445,109.82,46.703 +159446,108.52,44.389 +159447,107.05,41.924 +159448,105.34,39.273 +159449,108.5,46.723 +159450,107.24,44.388 +159451,105.81,41.899 +159452,104.15,39.221 +159453,107.17,46.741 +159454,105.95,44.386 +159455,104.57,41.874 +159456,102.96,39.171 +159457,105.85,46.758 +159458,104.67,44.384 +159459,103.33,41.851 +159460,101.77,39.124 +159461,104.53,46.773 +159462,103.39,44.381 +159463,102.09,41.828 +159464,100.58,39.079 +159465,103.2,46.786 +159466,102.11,44.377 +159467,100.86,41.806 +159468,99.388,39.036 +159469,101.87,46.798 +159470,100.82,44.373 +159471,99.619,41.785 +159472,98.202,38.995 +159473,100.55,46.808 +159474,99.54,44.369 +159475,98.382,41.765 +159476,97.017,38.956 +159477,99.221,46.816 +159478,98.257,44.364 +159479,97.146,41.745 +159480,95.833,38.92 +159481,97.893,46.822 +159482,96.973,44.358 +159483,95.911,41.726 +159484,94.651,38.886 +159485,96.564,46.827 +159486,95.689,44.352 +159487,94.675,41.708 +159488,93.469,38.854 +159489,95.235,46.83 +159490,94.405,44.345 +159491,93.441,41.69 +159492,92.289,38.825 +159493,93.905,46.831 +159494,93.121,44.338 +159495,92.206,41.674 +159496,91.111,38.798 +159497,92.575,46.83 +159498,91.837,44.33 +159499,90.972,41.658 +159500,89.933,38.773 +159501,91.245,46.827 +159502,90.552,44.321 +159503,89.738,41.643 +159504,88.756,38.751 +159505,89.913,46.823 +159506,89.267,44.312 +159507,88.505,41.628 +159508,87.58,38.731 +159509,88.582,46.817 +159510,87.982,44.303 +159511,87.271,41.615 +159512,86.405,38.714 +159513,87.25,46.809 +159514,86.697,44.292 +159515,86.038,41.602 +159516,85.231,38.698 +159517,85.918,46.799 +159518,85.412,44.281 +159519,84.806,41.59 +159520,84.057,38.686 +159521,84.585,46.788 +159522,84.127,44.27 +159523,83.573,41.579 +159524,82.885,38.675 +159525,83.252,46.775 +159526,82.842,44.258 +159527,82.341,41.569 +159528,81.712,38.667 +159529,81.919,46.759 +159530,81.557,44.245 +159531,81.109,41.56 +159532,80.541,38.661 +159533,80.586,46.743 +159534,80.271,44.232 +159535,79.877,41.551 +159536,79.369,38.658 +159537,79.252,46.724 +159538,78.986,44.219 +159539,78.645,41.543 +159540,78.199,38.657 +159541,77.919,46.703 +159542,77.701,44.204 +159543,77.413,41.536 +159544,77.028,38.659 +159545,76.585,46.681 +159546,76.415,44.189 +159547,76.181,41.529 +159548,75.858,38.663 +159549,75.251,46.657 +159550,75.13,44.174 +159551,74.95,41.524 +159552,74.688,38.669 +159553,73.918,46.631 +159554,73.845,44.158 +159555,73.719,41.519 +159556,73.518,38.677 +159557,72.584,46.603 +159558,72.559,44.141 +159559,72.487,41.515 +159560,72.348,38.688 +159561,71.25,46.574 +159562,71.274,44.124 +159563,71.256,41.512 +159564,71.179,38.702 +159565,69.916,46.542 +159566,69.989,44.106 +159567,70.025,41.509 +159568,70.009,38.717 +159569,68.583,46.509 +159570,68.704,44.088 +159571,68.793,41.508 +159572,68.839,38.735 +159573,67.249,46.474 +159574,67.419,44.069 +159575,67.562,41.507 +159576,67.668,38.755 +159577,65.916,46.438 +159578,66.134,44.049 +159579,66.331,41.507 +159580,66.498,38.777 +159581,64.583,46.399 +159582,64.849,44.029 +159583,65.1,41.507 +159584,65.327,38.802 +159585,63.25,46.359 +159586,63.565,44.009 +159587,63.868,41.509 +159588,64.156,38.829 +159589,61.918,46.318 +159590,62.28,43.988 +159591,62.637,41.511 +159592,62.984,38.857 +159593,60.586,46.274 +159594,60.996,43.966 +159595,61.405,41.514 +159596,61.812,38.889 +159597,59.254,46.229 +159598,59.712,43.944 +159599,60.173,41.517 +159600,60.639,38.922 +159601,57.923,46.182 +159602,58.428,43.921 +159603,58.942,41.522 +159604,59.465,38.957 +159605,56.592,46.133 +159606,57.144,43.898 +159607,57.71,41.527 +159608,58.291,38.995 +159609,55.261,46.083 +159610,55.86,43.874 +159611,56.477,41.533 +159612,57.116,39.034 +159613,53.931,46.031 +159614,54.577,43.85 +159615,55.245,41.539 +159616,55.94,39.075 +159617,52.602,45.978 +159618,53.294,43.825 +159619,54.012,41.546 +159620,54.763,39.119 +159621,51.273,45.923 +159622,52.011,43.8 +159623,52.78,41.554 +159624,53.586,39.164 +159625,49.945,45.866 +159626,50.729,43.774 +159627,51.547,41.563 +159628,52.407,39.212 +159629,48.617,45.808 +159630,49.447,43.748 +159631,50.313,41.572 +159632,51.227,39.261 +159633,47.291,45.748 +159634,48.165,43.721 +159635,49.08,41.582 +159636,50.046,39.312 +159637,45.964,45.687 +159638,46.883,43.694 +159639,47.846,41.592 +159640,48.864,39.364 +159641,44.639,45.624 +159642,45.602,43.666 +159643,46.612,41.603 +159644,47.681,39.419 +159645,43.314,45.559 +159646,44.321,43.638 +159647,45.378,41.615 +159648,46.496,39.475 +159649,41.991,45.494 +159650,43.04,43.609 +159651,44.143,41.628 +159652,45.31,39.533 +159653,40.668,45.426 +159654,41.76,43.581 +159655,42.908,41.641 +159656,44.123,39.593 +159657,39.346,45.358 +159658,40.48,43.551 +159659,41.672,41.654 +159660,42.934,39.654 +159661,38.024,45.287 +159662,39.201,43.521 +159663,40.436,41.668 +159664,41.744,39.717 +159665,36.704,45.216 +159666,37.922,43.491 +159667,39.2,41.683 +159668,40.552,39.781 +159669,35.385,45.143 +159670,36.643,43.461 +159671,37.964,41.698 +159672,39.359,39.846 +159673,34.067,45.069 +159674,35.365,43.43 +159675,36.727,41.714 +159676,38.165,39.914 +159677,32.75,44.994 +159678,34.087,43.398 +159679,35.489,41.731 +159680,36.968,39.982 +159681,31.434,44.917 +159682,32.81,43.367 +159683,34.251,41.748 +159684,35.77,40.052 +159685,30.119,44.839 +159686,31.533,43.335 +159687,33.013,41.765 +159688,34.571,40.123 +159689,28.805,44.76 +159690,30.257,43.302 +159691,31.774,41.783 +159692,33.369,40.195 +159693,27.493,44.68 +159694,28.981,43.27 +159695,30.535,41.801 +159696,32.166,40.269 +159697,26.181,44.598 +159698,27.705,43.237 +159699,29.295,41.82 +159700,30.962,40.343 +159701,24.871,44.516 +159702,26.43,43.203 +159703,28.055,41.839 +159704,29.755,40.419 +159705,23.562,44.432 +159706,25.156,43.17 +159707,26.814,41.859 +159708,28.547,40.496 +159709,22.255,44.347 +159710,23.882,43.136 +159711,25.573,41.879 +159712,27.337,40.573 +159713,20.949,44.261 +159714,22.609,43.102 +159715,24.331,41.9 +159716,26.125,40.652 +159717,19.644,44.175 +159718,21.336,43.068 +159719,23.089,41.921 +159720,24.911,40.732 +159721,18.34,44.087 +159722,20.064,43.033 +159723,21.846,41.942 +159724,23.695,40.812 +159725,17.039,43.999 +159726,18.792,42.998 +159727,20.603,41.964 +159728,22.478,40.893 +159729,15.738,43.909 +159730,17.521,42.963 +159731,19.359,41.986 +159732,21.258,40.975 +159733,14.439,43.819 +159734,16.25,42.928 +159735,18.114,42.008 +159736,20.037,41.058 +159737,13.142,43.728 +159738,14.98,42.893 +159739,16.869,42.031 +159740,18.813,41.141 +159741,11.846,43.636 +159742,13.711,42.857 +159743,15.624,42.054 +159744,17.588,41.225 +159745,10.551,43.544 +159746,12.442,42.822 +159747,14.377,42.077 +159748,16.361,41.309 +159749,9.2584,43.45 +159750,11.174,42.786 +159751,13.131,42.101 +159752,15.131,41.394 +159753,7.9672,43.356 +159754,9.9065,42.75 +159755,11.883,42.124 +159756,13.9,41.48 +159757,6.6777,43.262 +159758,8.6395,42.714 +159759,10.635,42.148 +159760,12.667,41.565 +159761,5.3899,43.167 +159762,7.3732,42.678 +159763,9.3866,42.173 +159764,11.432,41.651 +159765,4.1037,43.071 +159766,6.1075,42.642 +159767,8.1374,42.197 +159768,10.195,41.738 +159769,2.8193,42.975 +159770,4.8425,42.606 +159771,6.8876,42.222 +159772,8.9557,41.825 +159773,1.5366,42.879 +159774,3.5781,42.569 +159775,5.6371,42.247 +159776,7.7147,41.911 +159777,0.25571,42.782 +159778,2.3143,42.533 +159779,4.3861,42.272 +159780,6.4717,41.998 +159781,358.98,42.685 +159782,1.0512,42.497 +159783,3.1344,42.297 +159784,5.2267,42.086 +159785,357.7,42.587 +159786,359.79,42.46 +159787,1.8821,42.322 +159788,3.9797,42.173 +159789,356.42,42.49 +159790,358.53,42.424 +159791,0.62915,42.348 +159792,2.7308,42.26 +159793,355.15,42.392 +159794,357.27,42.388 +159795,359.38,42.373 +159796,1.48,42.347 +159797,353.88,42.294 +159798,356.01,42.352 +159799,358.12,42.399 +159800,0.22721,42.434 +159801,352.61,42.195 +159802,354.75,42.316 +159803,356.87,42.424 +159804,358.97,42.521 +159805,351.34,42.097 +159806,353.49,42.28 +159807,355.61,42.45 +159808,357.72,42.608 +159809,350.07,41.999 +159810,352.23,42.244 +159811,354.36,42.476 +159812,356.46,42.695 +159813,348.81,41.9 +159814,350.97,42.208 +159815,353.1,42.501 +159816,355.2,42.781 +159817,347.55,41.802 +159818,349.71,42.172 +159819,351.84,42.527 +159820,353.93,42.867 +159821,346.29,41.704 +159822,348.46,42.137 +159823,350.58,42.553 +159824,352.67,42.953 +159825,345.03,41.606 +159826,347.2,42.101 +159827,349.32,42.579 +159828,351.4,43.038 +159829,343.77,41.508 +159830,345.95,42.066 +159831,348.07,42.604 +159832,350.14,43.123 +159833,342.52,41.411 +159834,344.69,42.031 +159835,346.81,42.63 +159836,348.87,43.208 +159837,341.27,41.314 +159838,343.44,41.996 +159839,345.55,42.655 +159840,347.6,43.291 +159841,340.02,41.217 +159842,342.18,41.962 +159843,344.28,42.681 +159844,346.32,43.375 +159845,338.77,41.12 +159846,340.93,41.928 +159847,343.02,42.706 +159848,345.05,43.457 +159849,337.52,41.025 +159850,339.68,41.894 +159851,341.76,42.731 +159852,343.77,43.54 +159853,336.28,40.929 +159854,338.43,41.86 +159855,340.5,42.756 +159856,342.49,43.621 +159857,335.04,40.834 +159858,337.18,41.826 +159859,339.23,42.781 +159860,341.21,43.702 +159861,333.8,40.74 +159862,335.93,41.793 +159863,337.97,42.806 +159864,339.93,43.782 +159865,332.56,40.647 +159866,334.68,41.76 +159867,336.71,42.831 +159868,338.65,43.861 +159869,331.32,40.554 +159870,333.43,41.728 +159871,335.44,42.855 +159872,337.36,43.939 +159873,330.09,40.462 +159874,332.18,41.696 +159875,334.17,42.879 +159876,336.07,44.016 +159877,328.86,40.37 +159878,330.94,41.664 +159879,332.91,42.903 +159880,334.78,44.093 +159881,327.63,40.28 +159882,329.69,41.633 +159883,331.64,42.927 +159884,333.49,44.168 +159885,326.4,40.191 +159886,328.45,41.602 +159887,330.37,42.95 +159888,332.2,44.243 +159889,325.17,40.102 +159890,327.2,41.571 +159891,329.11,42.974 +159892,330.91,44.317 +159893,323.95,40.015 +159894,325.96,41.541 +159895,327.84,42.997 +159896,329.62,44.389 +159897,322.73,39.928 +159898,324.71,41.511 +159899,326.57,43.019 +159900,328.32,44.461 +159901,321.51,39.843 +159902,323.47,41.482 +159903,325.3,43.042 +159904,327.02,44.531 +159905,320.29,39.759 +159906,322.23,41.453 +159907,324.03,43.064 +159908,325.72,44.6 +159909,319.08,39.676 +159910,320.98,41.425 +159911,322.76,43.086 +159912,324.42,44.668 +159913,317.86,39.595 +159914,319.74,41.397 +159915,321.49,43.107 +159916,323.12,44.735 +159917,316.65,39.514 +159918,318.5,41.37 +159919,320.22,43.128 +159920,321.82,44.801 +159921,315.44,39.435 +159922,317.26,41.343 +159923,318.94,43.149 +159924,320.51,44.865 +159925,314.23,39.358 +159926,316.02,41.317 +159927,317.67,43.169 +159928,319.21,44.928 +159929,313.03,39.282 +159930,314.78,41.292 +159931,316.4,43.189 +159932,317.9,44.99 +159933,311.82,39.207 +159934,313.54,41.267 +159935,315.12,43.209 +159936,316.59,45.05 +159937,310.62,39.134 +159938,312.31,41.242 +159939,313.85,43.228 +159940,315.28,45.109 +159941,309.42,39.063 +159942,311.07,41.218 +159943,312.58,43.247 +159944,313.97,45.166 +159945,308.22,38.993 +159946,309.83,41.195 +159947,311.3,43.265 +159948,312.66,45.223 +159949,307.02,38.925 +159950,308.59,41.173 +159951,310.03,43.283 +159952,311.35,45.277 +159953,305.83,38.859 +159954,307.36,41.151 +159955,308.75,43.301 +159956,310.04,45.331 +159957,304.63,38.794 +159958,306.12,41.129 +159959,307.47,43.318 +159960,308.72,45.382 +159961,303.44,38.731 +159962,304.89,41.109 +159963,306.2,43.334 +159964,307.41,45.433 +159965,302.25,38.671 +159966,303.65,41.089 +159967,304.92,43.35 +159968,306.09,45.481 +159969,301.06,38.612 +159970,302.42,41.069 +159971,303.64,43.366 +159972,304.77,45.528 +159973,299.87,38.554 +159974,301.18,41.051 +159975,302.37,43.381 +159976,303.45,45.574 +159977,298.68,38.499 +159978,299.95,41.033 +159979,301.09,43.396 +159980,302.13,45.618 +159981,297.5,38.446 +159982,298.72,41.015 +159983,299.81,43.41 +159984,300.81,45.66 +159985,296.32,38.395 +159986,297.48,40.999 +159987,298.53,43.424 +159988,299.49,45.701 +159989,295.13,38.346 +159990,296.25,40.983 +159991,297.25,43.437 +159992,298.17,45.74 +159993,293.95,38.299 +159994,295.02,40.968 +159995,295.98,43.45 +159996,296.85,45.777 +159997,292.77,38.255 +159998,293.79,40.954 +159999,294.7,43.462 +160000,295.53,45.813 +160001,291.59,38.212 +160002,292.56,40.94 +160003,293.42,43.473 +160004,294.2,45.847 +160005,290.42,38.172 +160006,291.33,40.927 +160007,292.14,43.484 +160008,292.88,45.879 +160009,289.24,38.134 +160010,290.09,40.915 +160011,290.86,43.495 +160012,291.55,45.91 +160013,288.06,38.098 +160014,288.86,40.904 +160015,289.58,43.505 +160016,290.23,45.939 +160017,286.89,38.064 +160018,287.63,40.893 +160019,288.3,43.514 +160020,288.9,45.966 +160021,285.71,38.033 +160022,286.4,40.884 +160023,287.02,43.523 +160024,287.58,45.991 +160025,284.54,38.004 +160026,285.17,40.875 +160027,285.74,43.531 +160028,286.25,46.015 +160029,283.37,37.977 +160030,283.94,40.866 +160031,284.46,43.539 +160032,284.92,46.036 +160033,282.2,37.953 +160034,282.71,40.859 +160035,283.17,43.546 +160036,283.59,46.056 +160037,281.03,37.931 +160038,281.48,40.853 +160039,281.89,43.553 +160040,282.27,46.075 +160041,279.86,37.912 +160042,280.26,40.847 +160043,280.61,43.559 +160044,280.94,46.091 +160045,278.69,37.895 +160046,279.03,40.842 +160047,279.33,43.564 +160048,279.61,46.106 +160049,277.52,37.88 +160050,277.8,40.838 +160051,278.05,43.569 +160052,278.28,46.118 +160053,276.35,37.868 +160054,276.57,40.834 +160055,276.77,43.573 +160056,276.95,46.129 +160057,275.18,37.858 +160058,275.34,40.832 +160059,275.49,43.577 +160060,275.62,46.139 +160061,274.01,37.851 +160062,274.11,40.83 +160063,274.21,43.58 +160064,274.3,46.146 +160065,272.84,37.846 +160066,272.88,40.829 +160067,272.92,43.583 +160068,272.97,46.151 +160069,271.67,37.843 +160070,271.65,40.829 +160071,271.64,43.585 +160072,271.64,46.155 +160073,270.5,37.843 +160074,270.42,40.83 +160075,270.36,43.586 +160076,270.31,46.157 +160077,269.33,37.846 +160078,269.19,40.832 +160079,269.08,43.587 +160080,268.98,46.157 +160081,268.16,37.851 +160082,267.97,40.834 +160083,267.8,43.587 +160084,267.65,46.155 +160085,266.99,37.858 +160086,266.74,40.837 +160087,266.52,43.586 +160088,266.32,46.151 +160089,265.83,37.868 +160090,265.51,40.841 +160091,265.23,43.585 +160092,264.99,46.146 +160093,264.66,37.881 +160094,264.28,40.846 +160095,263.95,43.584 +160096,263.66,46.139 +160097,263.49,37.895 +160098,263.05,40.852 +160099,262.67,43.582 +160100,262.33,46.129 +160101,262.31,37.913 +160102,261.82,40.858 +160103,261.39,43.579 +160104,261.01,46.119 +160105,261.14,37.932 +160106,260.59,40.865 +160107,260.11,43.575 +160108,259.68,46.106 +160109,259.97,37.954 +160110,259.36,40.874 +160111,258.83,43.572 +160112,258.35,46.091 +160113,258.8,37.979 +160114,258.13,40.882 +160115,257.55,43.567 +160116,257.02,46.075 +160117,257.63,38.005 +160118,256.9,40.892 +160119,256.27,43.562 +160120,255.7,46.057 +160121,256.45,38.035 +160122,255.67,40.903 +160123,254.99,43.556 +160124,254.37,46.037 +160125,255.28,38.066 +160126,254.44,40.914 +160127,253.71,43.55 +160128,253.04,46.015 +160129,254.1,38.1 +160130,253.21,40.926 +160131,252.43,43.543 +160132,251.72,45.992 +160133,252.92,38.136 +160134,251.98,40.939 +160135,251.15,43.536 +160136,250.39,45.966 +160137,251.75,38.174 +160138,250.75,40.952 +160139,249.87,43.528 +160140,249.07,45.939 +160141,250.57,38.215 +160142,249.52,40.967 +160143,248.59,43.52 +160144,247.75,45.911 +160145,249.39,38.258 +160146,248.28,40.982 +160147,247.31,43.511 +160148,246.42,45.88 +160149,248.21,38.303 +160150,247.05,40.998 +160151,246.03,43.501 +160152,245.1,45.848 +160153,247.02,38.35 +160154,245.82,41.014 +160155,244.75,43.491 +160156,243.78,45.814 +160157,245.84,38.399 +160158,244.59,41.032 +160159,243.47,43.481 +160160,242.46,45.779 +160161,244.65,38.451 +160162,243.35,41.05 +160163,242.19,43.47 +160164,241.14,45.742 +160165,243.47,38.504 +160166,242.12,41.069 +160167,240.91,43.458 +160168,239.82,45.703 +160169,242.28,38.56 +160170,240.88,41.088 +160171,239.64,43.446 +160172,238.5,45.663 +160173,241.09,38.617 +160174,239.65,41.109 +160175,238.36,43.434 +160176,237.18,45.621 +160177,239.9,38.677 +160178,238.41,41.129 +160179,237.08,43.421 +160180,235.87,45.577 +160181,238.71,38.738 +160182,237.18,41.151 +160183,235.81,43.407 +160184,234.55,45.532 +160185,237.51,38.801 +160186,235.94,41.173 +160187,234.53,43.393 +160188,233.24,45.485 +160189,236.32,38.867 +160190,234.71,41.196 +160191,233.25,43.379 +160192,231.92,45.437 +160193,235.12,38.933 +160194,233.47,41.22 +160195,231.98,43.364 +160196,230.61,45.387 +160197,233.92,39.002 +160198,232.23,41.244 +160199,230.7,43.348 +160200,229.3,45.336 +160201,232.72,39.072 +160202,230.99,41.269 +160203,229.43,43.333 +160204,227.99,45.283 +160205,231.51,39.145 +160206,229.75,41.294 +160207,228.15,43.316 +160208,226.68,45.229 +160209,230.31,39.218 +160210,228.52,41.32 +160211,226.88,43.3 +160212,225.37,45.174 +160213,229.1,39.294 +160214,227.28,41.347 +160215,225.61,43.283 +160216,224.06,45.117 +160217,227.89,39.37 +160218,226.04,41.374 +160219,224.33,43.265 +160220,222.76,45.059 +160221,226.68,39.449 +160222,224.79,41.402 +160223,223.06,43.247 +160224,221.45,44.999 +160225,225.47,39.528 +160226,223.55,41.431 +160227,221.79,43.229 +160228,220.15,44.938 +160229,224.26,39.61 +160230,222.31,41.459 +160231,220.52,43.211 +160232,218.85,44.876 +160233,223.04,39.692 +160234,221.07,41.489 +160235,219.25,43.192 +160236,217.54,44.812 +160237,221.82,39.776 +160238,219.83,41.519 +160239,217.98,43.173 +160240,216.25,44.748 +160241,220.6,39.861 +160242,218.58,41.549 +160243,216.71,43.153 +160244,214.95,44.682 +160245,219.38,39.947 +160246,217.34,41.58 +160247,215.44,43.133 +160248,213.65,44.615 +160249,218.15,40.035 +160250,216.09,41.612 +160251,214.17,43.113 +160252,212.36,44.547 +160253,216.93,40.123 +160254,214.85,41.643 +160255,212.9,43.092 +160256,211.06,44.478 +160257,215.7,40.213 +160258,213.6,41.676 +160259,211.63,43.072 +160260,209.77,44.407 +160261,214.47,40.303 +160262,212.35,41.708 +160263,210.36,43.051 +160264,208.48,44.336 +160265,213.24,40.395 +160266,211.11,41.741 +160267,209.1,43.029 +160268,207.19,44.264 +160269,212,40.487 +160270,209.86,41.775 +160271,207.83,43.008 +160272,205.9,44.19 +160273,210.77,40.581 +160274,208.61,41.809 +160275,206.56,42.986 +160276,204.62,44.116 +160277,209.53,40.675 +160278,207.36,41.843 +160279,205.3,42.964 +160280,203.33,44.041 +160281,208.29,40.77 +160282,206.11,41.878 +160283,204.03,42.942 +160284,202.05,43.965 +160285,207.04,40.865 +160286,204.86,41.913 +160287,202.77,42.919 +160288,200.77,43.888 +160289,205.8,40.961 +160290,203.61,41.948 +160291,201.51,42.897 +160292,199.49,43.811 +160293,204.55,41.058 +160294,202.35,41.983 +160295,200.24,42.874 +160296,198.21,43.732 +160297,203.3,41.155 +160298,201.1,42.019 +160299,198.98,42.851 +160300,196.94,43.653 +160301,202.05,41.253 +160302,199.85,42.055 +160303,197.72,42.828 +160304,195.66,43.574 +160305,200.8,41.352 +160306,198.59,42.092 +160307,196.46,42.805 +160308,194.39,43.493 +160309,199.54,41.45 +160310,197.34,42.128 +160311,195.2,42.782 +160312,193.12,43.412 +160313,198.29,41.549 +160314,196.08,42.165 +160315,193.94,42.759 +160316,191.85,43.331 +160317,197.03,41.649 +160318,194.82,42.202 +160319,192.68,42.735 +160320,190.59,43.249 +160321,195.76,41.748 +160322,193.57,42.24 +160323,191.42,42.712 +160324,189.32,43.167 +160325,194.5,41.848 +160326,192.31,42.277 +160327,190.16,42.689 +160328,188.06,43.084 +160329,193.24,41.948 +160330,191.05,42.314 +160331,188.91,42.665 +160332,186.8,43.001 +160333,191.97,42.048 +160334,189.79,42.352 +160335,187.65,42.642 +160336,185.54,42.917 +160337,190.7,42.148 +160338,188.53,42.39 +160339,186.39,42.618 +160340,184.28,42.833 +160341,189.43,42.249 +160342,187.27,42.428 +160343,185.14,42.595 +160344,183.03,42.749 +160345,188.16,42.349 +160346,186.01,42.466 +160347,183.88,42.571 +160348,181.77,42.665 +160349,186.88,42.449 +160350,184.75,42.504 +160351,182.63,42.548 +160352,180.52,42.581 +160353,185.6,42.549 +160354,183.49,42.542 +160355,181.37,42.525 +160356,179.27,42.496 +160357,184.33,42.648 +160358,182.22,42.58 +160359,180.12,42.501 +160360,178.02,42.412 +160361,183.05,42.748 +160362,180.96,42.619 +160363,178.87,42.478 +160364,176.78,42.327 +160365,181.76,42.847 +160366,179.69,42.657 +160367,177.62,42.455 +160368,175.53,42.242 +160369,180.48,42.946 +160370,178.43,42.695 +160371,176.37,42.433 +160372,174.29,42.158 +160373,179.19,43.044 +160374,177.16,42.733 +160375,175.12,42.41 +160376,173.05,42.074 +160377,177.91,43.142 +160378,175.9,42.772 +160379,173.87,42.387 +160380,171.82,41.989 +160381,176.62,43.24 +160382,174.63,42.81 +160383,172.62,42.365 +160384,170.58,41.905 +160385,175.33,43.337 +160386,173.36,42.848 +160387,171.37,42.343 +160388,169.35,41.822 +160389,174.03,43.434 +160390,172.09,42.886 +160391,170.12,42.321 +160392,168.11,41.738 +160393,172.74,43.53 +160394,170.82,42.924 +160395,168.87,42.299 +160396,166.88,41.655 +160397,171.44,43.626 +160398,169.55,42.962 +160399,167.62,42.277 +160400,165.66,41.573 +160401,170.15,43.72 +160402,168.28,42.999 +160403,166.38,42.256 +160404,164.43,41.491 +160405,168.85,43.815 +160406,167.01,43.037 +160407,165.13,42.235 +160408,163.2,41.409 +160409,167.55,43.908 +160410,165.74,43.074 +160411,163.89,42.215 +160412,161.98,41.328 +160413,166.25,44.001 +160414,164.47,43.112 +160415,162.64,42.194 +160416,160.76,41.247 +160417,164.94,44.092 +160418,163.19,43.149 +160419,161.4,42.174 +160420,159.54,41.168 +160421,163.64,44.183 +160422,161.92,43.186 +160423,160.15,42.154 +160424,158.33,41.089 +160425,162.33,44.273 +160426,160.65,43.222 +160427,158.91,42.135 +160428,157.11,41.01 +160429,161.02,44.363 +160430,159.37,43.259 +160431,157.67,42.116 +160432,155.9,40.933 +160433,159.71,44.451 +160434,158.1,43.295 +160435,156.43,42.097 +160436,154.69,40.856 +160437,158.4,44.538 +160438,156.82,43.331 +160439,155.18,42.079 +160440,153.48,40.78 +160441,157.09,44.624 +160442,155.55,43.366 +160443,153.94,42.061 +160444,152.27,40.705 +160445,155.78,44.709 +160446,154.27,43.402 +160447,152.7,42.044 +160448,151.07,40.631 +160449,154.46,44.793 +160450,152.99,43.437 +160451,151.46,42.027 +160452,149.86,40.559 +160453,153.15,44.876 +160454,151.71,43.472 +160455,150.22,42.01 +160456,148.66,40.487 +160457,151.83,44.958 +160458,150.44,43.506 +160459,148.98,41.994 +160460,147.46,40.416 +160461,150.52,45.039 +160462,149.16,43.54 +160463,147.74,41.979 +160464,146.26,40.347 +160465,149.2,45.118 +160466,147.88,43.574 +160467,146.5,41.964 +160468,145.06,40.279 +160469,147.88,45.196 +160470,146.6,43.608 +160471,145.27,41.949 +160472,143.87,40.212 +160473,146.56,45.273 +160474,145.32,43.641 +160475,144.03,41.935 +160476,142.67,40.146 +160477,145.23,45.349 +160478,144.04,43.674 +160479,142.79,41.921 +160480,141.48,40.082 +160481,143.91,45.423 +160482,142.76,43.706 +160483,141.56,41.908 +160484,140.29,40.019 +160485,142.59,45.496 +160486,141.48,43.738 +160487,140.32,41.896 +160488,139.1,39.958 +160489,141.26,45.567 +160490,140.2,43.77 +160491,139.08,41.884 +160492,137.91,39.898 +160493,139.94,45.637 +160494,138.91,43.801 +160495,137.85,41.873 +160496,136.72,39.84 +160497,138.61,45.706 +160498,137.63,43.832 +160499,136.61,41.862 +160500,135.54,39.783 +160501,137.28,45.773 +160502,136.35,43.862 +160503,135.38,41.852 +160504,134.36,39.728 +160505,135.96,45.839 +160506,135.07,43.892 +160507,134.14,41.842 +160508,133.17,39.675 +160509,134.63,45.903 +160510,133.78,43.921 +160511,132.91,41.833 +160512,131.99,39.623 +160513,133.3,45.966 +160514,132.5,43.95 +160515,131.67,41.825 +160516,130.81,39.573 +160517,131.97,46.027 +160518,131.22,43.979 +160519,130.44,41.818 +160520,129.63,39.525 +160521,130.64,46.087 +160522,129.93,44.007 +160523,129.2,41.811 +160524,128.45,39.479 +160525,129.31,46.145 +160526,128.65,44.034 +160527,127.97,41.804 +160528,127.27,39.434 +160529,127.98,46.202 +160530,127.36,44.061 +160531,126.74,41.799 +160532,126.1,39.392 +160533,126.64,46.256 +160534,126.08,44.088 +160535,125.5,41.794 +160536,124.92,39.351 +160537,125.31,46.31 +160538,124.79,44.114 +160539,124.27,41.789 +160540,123.75,39.313 +160541,123.98,46.361 +160542,123.51,44.139 +160543,123.04,41.786 +160544,122.57,39.276 +160545,122.64,46.411 +160546,122.22,44.164 +160547,121.81,41.783 +160548,121.4,39.241 +160549,121.31,46.46 +160550,120.94,44.189 +160551,120.57,41.781 +160552,120.22,39.209 +160553,119.98,46.506 +160554,119.65,44.213 +160555,119.34,41.779 +160556,119.05,39.178 +160557,118.64,46.551 +160558,118.36,44.236 +160559,118.11,41.779 +160560,117.88,39.15 +160561,117.31,46.594 +160562,117.08,44.259 +160563,116.87,41.779 +160564,116.71,39.124 +160565,115.97,46.636 +160566,115.79,44.281 +160567,115.64,41.78 +160568,115.54,39.099 +160569,114.64,46.676 +160570,114.5,44.303 +160571,114.41,41.781 +160572,114.37,39.078 +160573,113.3,46.714 +160574,113.22,44.325 +160575,113.18,41.783 +160576,113.19,39.058 +160577,111.96,46.75 +160578,111.93,44.345 +160579,111.95,41.786 +160580,112.02,39.04 +160581,110.63,46.784 +160582,110.64,44.365 +160583,110.71,41.79 +160584,110.85,39.025 +160585,109.29,46.817 +160586,109.36,44.385 +160587,109.48,41.795 +160588,109.68,39.012 +160589,107.96,46.848 +160590,108.07,44.404 +160591,108.25,41.8 +160592,108.51,39.002 +160593,106.62,46.877 +160594,106.78,44.422 +160595,107.02,41.806 +160596,107.34,38.993 +160597,105.29,46.904 +160598,105.5,44.44 +160599,105.78,41.813 +160600,106.17,38.987 +160601,103.95,46.93 +160602,104.21,44.457 +160603,104.55,41.821 +160604,105,38.983 +160605,102.61,46.954 +160606,102.92,44.474 +160607,103.32,41.829 +160608,103.83,38.982 +160609,101.28,46.976 +160610,101.64,44.49 +160611,102.08,41.838 +160612,102.66,38.983 +160613,99.944,46.996 +160614,100.35,44.506 +160615,100.85,41.848 +160616,101.48,38.986 +160617,98.609,47.014 +160618,99.062,44.521 +160619,99.617,41.859 +160620,100.31,38.992 +160621,97.275,47.031 +160622,97.775,44.535 +160623,98.383,41.871 +160624,99.139,39 +160625,95.94,47.046 +160626,96.489,44.549 +160627,97.149,41.883 +160628,97.965,39.01 +160629,94.606,47.059 +160630,95.202,44.562 +160631,95.915,41.896 +160632,96.79,39.023 +160633,93.273,47.07 +160634,93.915,44.574 +160635,94.68,41.91 +160636,95.615,39.038 +160637,91.94,47.079 +160638,92.629,44.586 +160639,93.445,41.925 +160640,94.438,39.055 +160641,90.607,47.087 +160642,91.343,44.598 +160643,92.21,41.94 +160644,93.261,39.075 +160645,89.275,47.093 +160646,90.056,44.609 +160647,90.975,41.956 +160648,92.083,39.097 +160649,87.943,47.097 +160650,88.77,44.619 +160651,89.739,41.973 +160652,90.904,39.122 +160653,86.612,47.099 +160654,87.485,44.629 +160655,88.503,41.991 +160656,89.723,39.148 +160657,85.281,47.1 +160658,86.199,44.638 +160659,87.267,42.01 +160660,88.542,39.177 +160661,83.951,47.098 +160662,84.914,44.646 +160663,86.03,42.029 +160664,87.359,39.209 +160665,82.621,47.095 +160666,83.628,44.654 +160667,84.793,42.049 +160668,86.175,39.243 +160669,81.293,47.091 +160670,82.343,44.662 +160671,83.555,42.07 +160672,84.99,39.278 +160673,79.965,47.084 +160674,81.059,44.669 +160675,82.317,42.092 +160676,83.803,39.317 +160677,78.637,47.076 +160678,79.774,44.675 +160679,81.079,42.114 +160680,82.615,39.357 +160681,77.311,47.066 +160682,78.49,44.681 +160683,79.84,42.137 +160684,81.425,39.4 +160685,75.985,47.054 +160686,77.206,44.686 +160687,78.601,42.161 +160688,80.234,39.445 +160689,74.66,47.041 +160690,75.922,44.691 +160691,77.361,42.186 +160692,79.041,39.492 +160693,73.337,47.026 +160694,74.639,44.695 +160695,76.12,42.211 +160696,77.847,39.541 +160697,72.014,47.009 +160698,73.355,44.698 +160699,74.879,42.237 +160700,76.65,39.592 +160701,70.691,46.991 +160702,72.073,44.701 +160703,73.638,42.264 +160704,75.453,39.646 +160705,69.37,46.971 +160706,70.79,44.704 +160707,72.396,42.291 +160708,74.253,39.701 +160709,68.05,46.949 +160710,69.508,44.706 +160711,71.154,42.319 +160712,73.052,39.759 +160713,66.731,46.926 +160714,68.226,44.707 +160715,69.911,42.348 +160716,71.848,39.818 +160717,65.413,46.901 +160718,66.945,44.708 +160719,68.667,42.378 +160720,70.643,39.88 +160721,64.096,46.875 +160722,65.664,44.709 +160723,67.423,42.408 +160724,69.436,39.943 +160725,62.781,46.847 +160726,64.383,44.709 +160727,66.178,42.439 +160728,68.227,40.009 +160729,61.466,46.817 +160730,63.103,44.709 +160731,64.932,42.47 +160732,67.016,40.076 +160733,60.153,46.786 +160734,61.823,44.708 +160735,63.686,42.502 +160736,65.803,40.145 +160737,58.84,46.754 +160738,60.544,44.706 +160739,62.44,42.535 +160740,64.588,40.216 +160741,57.529,46.72 +160742,59.265,44.704 +160743,61.192,42.568 +160744,63.371,40.289 +160745,56.22,46.684 +160746,57.986,44.702 +160747,59.944,42.602 +160748,62.152,40.363 +160749,54.911,46.648 +160750,56.708,44.699 +160751,58.696,42.637 +160752,60.931,40.439 +160753,53.604,46.609 +160754,55.43,44.696 +160755,57.446,42.672 +160756,59.708,40.517 +160757,52.299,46.57 +160758,54.153,44.693 +160759,56.196,42.708 +160760,58.482,40.596 +160761,50.995,46.529 +160762,52.877,44.689 +160763,54.946,42.744 +160764,57.255,40.677 +160765,49.692,46.486 +160766,51.6,44.684 +160767,53.694,42.781 +160768,56.025,40.76 +160769,48.39,46.443 +160770,50.325,44.679 +160771,52.442,42.818 +160772,54.793,40.844 +160773,47.09,46.398 +160774,49.049,44.674 +160775,51.189,42.856 +160776,53.559,40.929 +160777,45.792,46.352 +160778,47.774,44.669 +160779,49.936,42.895 +160780,52.322,41.016 +160781,44.495,46.304 +160782,46.5,44.663 +160783,48.682,42.934 +160784,51.084,41.104 +160785,43.2,46.256 +160786,45.226,44.656 +160787,47.427,42.973 +160788,49.843,41.194 +160789,41.906,46.206 +160790,43.953,44.65 +160791,46.171,43.013 +160792,48.6,41.284 +160793,40.613,46.155 +160794,42.681,44.643 +160795,44.915,43.054 +160796,47.355,41.376 +160797,39.323,46.103 +160798,41.408,44.636 +160799,43.657,43.095 +160800,46.107,41.469 +160801,38.034,46.05 +160802,40.137,44.628 +160803,42.399,43.136 +160804,44.858,41.563 +160805,36.746,45.996 +160806,38.866,44.62 +160807,41.141,43.178 +160808,43.606,41.659 +160809,35.461,45.941 +160810,37.595,44.612 +160811,39.881,43.22 +160812,42.352,41.755 +160813,34.177,45.885 +160814,36.325,44.604 +160815,38.621,43.262 +160816,41.096,41.852 +160817,32.894,45.828 +160818,35.056,44.595 +160819,37.361,43.305 +160820,39.837,41.95 +160821,31.614,45.77 +160822,33.787,44.586 +160823,36.099,43.348 +160824,38.577,42.05 +160825,30.335,45.711 +160826,32.519,44.577 +160827,34.837,43.392 +160828,37.314,42.149 +160829,29.058,45.651 +160830,31.251,44.568 +160831,33.573,43.436 +160832,36.049,42.25 +160833,27.783,45.591 +160834,29.984,44.558 +160835,32.31,43.48 +160836,34.782,42.351 +160837,26.509,45.53 +160838,28.717,44.548 +160839,31.045,43.525 +160840,33.512,42.454 +160841,25.238,45.468 +160842,27.451,44.539 +160843,29.779,43.569 +160844,32.241,42.556 +160845,23.968,45.405 +160846,26.186,44.529 +160847,28.513,43.615 +160848,30.967,42.66 +160849,22.7,45.342 +160850,24.921,44.518 +160851,27.246,43.66 +160852,29.692,42.763 +160853,21.434,45.278 +160854,23.657,44.508 +160855,25.979,43.706 +160856,28.414,42.868 +160857,20.169,45.213 +160858,22.393,44.497 +160859,24.71,43.751 +160860,27.134,42.972 +160861,18.907,45.148 +160862,21.13,44.487 +160863,23.441,43.797 +160864,25.853,43.078 +160865,17.646,45.083 +160866,19.867,44.476 +160867,22.171,43.844 +160868,24.569,43.183 +160869,16.388,45.017 +160870,18.605,44.465 +160871,20.901,43.89 +160872,23.283,43.289 +160873,15.131,44.95 +160874,17.344,44.455 +160875,19.629,43.937 +160876,21.995,43.395 +160877,13.876,44.883 +160878,16.083,44.444 +160879,18.357,43.983 +160880,20.705,43.501 +160881,12.623,44.816 +160882,14.823,44.433 +160883,17.085,44.03 +160884,19.414,43.607 +160885,11.372,44.749 +160886,13.563,44.422 +160887,15.811,44.077 +160888,18.12,43.714 +160889,10.123,44.681 +160890,12.304,44.411 +160891,14.537,44.124 +160892,16.824,43.82 +160893,8.8754,44.613 +160894,11.046,44.4 +160895,13.262,44.172 +160896,15.527,43.927 +160897,7.6301,44.545 +160898,9.788,44.389 +160899,11.986,44.219 +160900,14.228,44.034 +160901,6.3867,44.477 +160902,8.5307,44.378 +160903,10.71,44.266 +160904,12.927,44.14 +160905,5.1452,44.408 +160906,7.2739,44.367 +160907,9.4329,44.314 +160908,11.624,44.246 +160909,3.9056,44.34 +160910,6.0177,44.357 +160911,8.1551,44.361 +160912,10.32,44.352 +160913,2.668,44.272 +160914,4.762,44.346 +160915,6.8767,44.408 +160916,9.0135,44.458 +160917,1.4322,44.203 +160918,3.5069,44.335 +160919,5.5976,44.456 +160920,7.7055,44.564 +160921,0.19833,44.135 +160922,2.2524,44.325 +160923,4.3179,44.503 +160924,6.396,44.669 +160925,358.97,44.067 +160926,0.99833,44.315 +160927,3.0375,44.551 +160928,5.0847,44.774 +160929,357.74,43.999 +160930,359.74,44.304 +160931,1.7564,44.598 +160932,3.7719,44.879 +160933,356.51,43.931 +160934,358.49,44.294 +160935,0.47476,44.645 +160936,2.4575,44.983 +160937,355.28,43.864 +160938,357.24,44.284 +160939,359.19,44.692 +160940,1.1416,45.087 +160941,354.06,43.797 +160942,355.99,44.275 +160943,357.91,44.739 +160944,359.82,45.19 +160945,352.83,43.73 +160946,354.74,44.265 +160947,356.63,44.786 +160948,358.51,45.293 +160949,351.61,43.663 +160950,353.49,44.256 +160951,355.34,44.833 +160952,357.18,45.395 +160953,350.39,43.597 +160954,352.23,44.247 +160955,354.06,44.88 +160956,355.86,45.496 +160957,349.18,43.532 +160958,350.98,44.238 +160959,352.77,44.927 +160960,354.54,45.597 +160961,347.96,43.467 +160962,349.74,44.229 +160963,351.49,44.973 +160964,353.22,45.697 +160965,346.75,43.402 +160966,348.49,44.221 +160967,350.2,45.019 +160968,351.89,45.796 +160969,345.54,43.339 +160970,347.24,44.213 +160971,348.91,45.065 +160972,350.56,45.895 +160973,344.33,43.276 +160974,345.99,44.205 +160975,347.62,45.111 +160976,349.23,45.993 +160977,343.12,43.213 +160978,344.74,44.198 +160979,346.34,45.157 +160980,347.9,46.09 +160981,341.91,43.151 +160982,343.49,44.191 +160983,345.05,45.202 +160984,346.57,46.186 +160985,340.7,43.091 +160986,342.25,44.184 +160987,343.76,45.247 +160988,345.24,46.281 +160989,339.5,43.031 +160990,341,44.178 +160991,342.47,45.292 +160992,343.91,46.375 +160993,338.3,42.971 +160994,339.75,44.172 +160995,341.18,45.337 +160996,342.57,46.468 +160997,337.1,42.913 +160998,338.51,44.166 +160999,339.89,45.381 +161000,341.24,46.56 +161001,335.9,42.856 +161002,337.26,44.161 +161003,338.6,45.425 +161004,339.9,46.651 +161005,334.7,42.8 +161006,336.02,44.156 +161007,337.31,45.469 +161008,338.57,46.741 +161009,333.5,42.745 +161010,334.77,44.151 +161011,336.01,45.512 +161012,337.23,46.83 +161013,332.31,42.691 +161014,333.53,44.147 +161015,334.72,45.555 +161016,335.89,46.917 +161017,331.12,42.638 +161018,332.29,44.144 +161019,333.43,45.598 +161020,334.55,47.004 +161021,329.92,42.586 +161022,331.04,44.141 +161023,332.14,45.641 +161024,333.21,47.089 +161025,328.73,42.535 +161026,329.8,44.138 +161027,330.84,45.683 +161028,331.87,47.173 +161029,327.54,42.486 +161030,328.56,44.136 +161031,329.55,45.724 +161032,330.52,47.256 +161033,326.35,42.438 +161034,327.31,44.134 +161035,328.25,45.766 +161036,329.18,47.338 +161037,325.17,42.392 +161038,326.07,44.133 +161039,326.96,45.806 +161040,327.84,47.418 +161041,323.98,42.346 +161042,324.83,44.132 +161043,325.66,45.847 +161044,326.49,47.497 +161045,322.79,42.303 +161046,323.58,44.132 +161047,324.37,45.887 +161048,325.15,47.575 +161049,321.61,42.26 +161050,322.34,44.132 +161051,323.07,45.927 +161052,323.8,47.651 +161053,320.43,42.219 +161054,321.1,44.133 +161055,321.78,45.966 +161056,322.46,47.726 +161057,319.24,42.18 +161058,319.86,44.135 +161059,320.48,46.005 +161060,321.11,47.799 +161061,318.06,42.142 +161062,318.62,44.137 +161063,319.19,46.043 +161064,319.76,47.871 +161065,316.88,42.106 +161066,317.38,44.139 +161067,317.89,46.081 +161068,318.42,47.941 +161069,315.7,42.072 +161070,316.13,44.143 +161071,316.59,46.119 +161072,317.07,48.01 +161073,314.52,42.039 +161074,314.89,44.146 +161075,315.3,46.156 +161076,315.72,48.078 +161077,313.34,42.008 +161078,313.65,44.151 +161079,314,46.192 +161080,314.37,48.144 +161081,312.16,41.978 +161082,312.41,44.156 +161083,312.7,46.228 +161084,313.02,48.208 +161085,310.98,41.951 +161086,311.17,44.161 +161087,311.4,46.264 +161088,311.67,48.271 +161089,309.81,41.925 +161090,309.93,44.168 +161091,310.11,46.299 +161092,310.32,48.332 +161093,308.63,41.901 +161094,308.69,44.174 +161095,308.81,46.333 +161096,308.97,48.392 +161097,307.45,41.879 +161098,307.45,44.182 +161099,307.51,46.367 +161100,307.62,48.45 +161101,306.28,41.858 +161102,306.21,44.19 +161103,306.21,46.401 +161104,306.27,48.507 +161105,305.1,41.84 +161106,304.96,44.199 +161107,304.91,46.434 +161108,304.92,48.561 +161109,303.92,41.823 +161110,303.72,44.208 +161111,303.61,46.466 +161112,303.57,48.615 +161113,302.74,41.809 +161114,302.48,44.218 +161115,302.32,46.498 +161116,302.22,48.666 +161117,301.57,41.796 +161118,301.24,44.229 +161119,301.02,46.529 +161120,300.87,48.716 +161121,300.39,41.785 +161122,300,44.24 +161123,299.72,46.56 +161124,299.52,48.764 +161125,299.21,41.777 +161126,298.76,44.253 +161127,298.42,46.591 +161128,298.17,48.811 +161129,298.04,41.77 +161130,297.51,44.265 +161131,297.12,46.62 +161132,296.83,48.856 +161133,296.86,41.765 +161134,296.27,44.279 +161135,295.82,46.65 +161136,295.48,48.899 +161137,295.68,41.763 +161138,295.03,44.293 +161139,294.52,46.678 +161140,294.13,48.941 +161141,294.5,41.762 +161142,293.79,44.308 +161143,293.23,46.706 +161144,292.78,48.98 +161145,293.32,41.764 +161146,292.55,44.323 +161147,291.93,46.734 +161148,291.43,49.019 +161149,292.14,41.768 +161150,291.3,44.34 +161151,290.63,46.761 +161152,290.08,49.055 +161153,290.96,41.773 +161154,290.06,44.357 +161155,289.33,46.787 +161156,288.73,49.09 +161157,289.78,41.781 +161158,288.82,44.374 +161159,288.03,46.813 +161160,287.38,49.123 +161161,288.6,41.791 +161162,287.57,44.392 +161163,286.73,46.838 +161164,286.04,49.154 +161165,287.42,41.803 +161166,286.33,44.412 +161167,285.44,46.863 +161168,284.69,49.183 +161169,286.24,41.818 +161170,285.08,44.431 +161171,284.14,46.887 +161172,283.34,49.211 +161173,285.05,41.834 +161174,283.84,44.452 +161175,282.84,46.911 +161176,282,49.237 +161177,283.87,41.853 +161178,282.59,44.473 +161179,281.54,46.934 +161180,280.65,49.261 +161181,282.68,41.873 +161182,281.35,44.495 +161183,280.24,46.956 +161184,279.31,49.284 +161185,281.49,41.896 +161186,280.1,44.517 +161187,278.95,46.978 +161188,277.96,49.305 +161189,280.3,41.921 +161190,278.86,44.541 +161191,277.65,46.999 +161192,276.62,49.324 +161193,279.11,41.948 +161194,277.61,44.564 +161195,276.35,47.02 +161196,275.27,49.341 +161197,277.92,41.977 +161198,276.36,44.589 +161199,275.06,47.04 +161200,273.93,49.357 +161201,276.73,42.008 +161202,275.12,44.614 +161203,273.76,47.06 +161204,272.59,49.371 +161205,275.53,42.041 +161206,273.87,44.641 +161207,272.46,47.079 +161208,271.25,49.384 +161209,274.34,42.077 +161210,272.62,44.667 +161211,271.17,47.098 +161212,269.91,49.394 +161213,273.14,42.114 +161214,271.37,44.695 +161215,269.87,47.115 +161216,268.57,49.403 +161217,271.94,42.154 +161218,270.12,44.723 +161219,268.57,47.133 +161220,267.23,49.41 +161221,270.74,42.196 +161222,268.87,44.752 +161223,267.28,47.15 +161224,265.9,49.416 +161225,269.54,42.239 +161226,267.62,44.781 +161227,265.98,47.166 +161228,264.56,49.42 +161229,268.33,42.285 +161230,266.37,44.811 +161231,264.69,47.182 +161232,263.22,49.422 +161233,267.13,42.333 +161234,265.12,44.842 +161235,263.4,47.197 +161236,261.89,49.423 +161237,265.92,42.382 +161238,263.87,44.873 +161239,262.1,47.212 +161240,260.56,49.422 +161241,264.71,42.434 +161242,262.61,44.905 +161243,260.81,47.226 +161244,259.22,49.42 +161245,263.5,42.488 +161246,261.36,44.938 +161247,259.51,47.239 +161248,257.89,49.415 +161249,262.29,42.543 +161250,260.11,44.972 +161251,258.22,47.252 +161252,256.56,49.41 +161253,261.07,42.601 +161254,258.85,45.006 +161255,256.93,47.265 +161256,255.23,49.402 +161257,259.85,42.66 +161258,257.6,45.04 +161259,255.64,47.277 +161260,253.9,49.394 +161261,258.64,42.721 +161262,256.34,45.076 +161263,254.34,47.289 +161264,252.58,49.383 +161265,257.41,42.784 +161266,255.08,45.112 +161267,253.05,47.3 +161268,251.25,49.371 +161269,256.19,42.849 +161270,253.83,45.148 +161271,251.76,47.31 +161272,249.93,49.358 +161273,254.96,42.916 +161274,252.57,45.185 +161275,250.47,47.32 +161276,248.6,49.343 +161277,253.74,42.984 +161278,251.31,45.223 +161279,249.18,47.33 +161280,247.28,49.326 +161281,252.51,43.054 +161282,250.05,45.261 +161283,247.89,47.339 +161284,245.96,49.309 +161285,251.27,43.126 +161286,248.79,45.3 +161287,246.6,47.348 +161288,244.64,49.289 +161289,250.04,43.199 +161290,247.53,45.339 +161291,245.31,47.356 +161292,243.33,49.269 +161293,248.8,43.274 +161294,246.27,45.379 +161295,244.02,47.364 +161296,242.01,49.247 +161297,247.56,43.351 +161298,245.01,45.42 +161299,242.74,47.371 +161300,240.69,49.223 +161301,246.32,43.429 +161302,243.74,45.461 +161303,241.45,47.378 +161304,239.38,49.199 +161305,245.08,43.509 +161306,242.48,45.502 +161307,240.16,47.385 +161308,238.07,49.172 +161309,243.83,43.59 +161310,241.21,45.544 +161311,238.88,47.391 +161312,236.76,49.145 +161313,242.59,43.673 +161314,239.95,45.587 +161315,237.59,47.397 +161316,235.45,49.116 +161317,241.34,43.757 +161318,238.68,45.63 +161319,236.3,47.402 +161320,234.14,49.087 +161321,240.08,43.842 +161322,237.42,45.673 +161323,235.02,47.407 +161324,232.84,49.055 +161325,238.83,43.929 +161326,236.15,45.717 +161327,233.74,47.411 +161328,231.53,49.023 +161329,237.57,44.016 +161330,234.88,45.762 +161331,232.45,47.415 +161332,230.23,48.99 +161333,236.31,44.106 +161334,233.61,45.807 +161335,231.17,47.419 +161336,228.93,48.955 +161337,235.05,44.196 +161338,232.34,45.852 +161339,229.89,47.423 +161340,227.63,48.919 +161341,233.78,44.288 +161342,231.07,45.898 +161343,228.6,47.426 +161344,226.33,48.883 +161345,232.52,44.38 +161346,229.8,45.944 +161347,227.32,47.429 +161348,225.04,48.845 +161349,231.25,44.474 +161350,228.53,45.99 +161351,226.04,47.431 +161352,223.74,48.806 +161353,229.98,44.569 +161354,227.26,46.037 +161355,224.76,47.433 +161356,222.45,48.766 +161357,228.7,44.664 +161358,225.98,46.085 +161359,223.48,47.435 +161360,221.16,48.725 +161361,227.43,44.761 +161362,224.71,46.132 +161363,222.2,47.437 +161364,219.87,48.683 +161365,226.15,44.859 +161366,223.43,46.18 +161367,220.92,47.438 +161368,218.58,48.641 +161369,224.87,44.957 +161370,222.16,46.228 +161371,219.64,47.439 +161372,217.3,48.597 +161373,223.59,45.056 +161374,220.88,46.277 +161375,218.37,47.44 +161376,216.01,48.553 +161377,222.3,45.156 +161378,219.6,46.326 +161379,217.09,47.441 +161380,214.73,48.508 +161381,221.02,45.257 +161382,218.32,46.375 +161383,215.81,47.441 +161384,213.45,48.462 +161385,219.73,45.359 +161386,217.04,46.425 +161387,214.54,47.442 +161388,212.17,48.415 +161389,218.44,45.461 +161390,215.76,46.474 +161391,213.26,47.442 +161392,210.9,48.368 +161393,217.14,45.563 +161394,214.48,46.524 +161395,211.99,47.441 +161396,209.62,48.319 +161397,215.85,45.666 +161398,213.2,46.575 +161399,210.71,47.441 +161400,208.35,48.271 +161401,214.55,45.77 +161402,211.92,46.625 +161403,209.44,47.441 +161404,207.08,48.221 +161405,213.25,45.874 +161406,210.64,46.676 +161407,208.16,47.44 +161408,205.81,48.172 +161409,211.95,45.979 +161410,209.35,46.726 +161411,206.89,47.439 +161412,204.55,48.121 +161413,210.64,46.084 +161414,208.07,46.777 +161415,205.62,47.438 +161416,203.28,48.07 +161417,209.34,46.189 +161418,206.78,46.828 +161419,204.35,47.437 +161420,202.02,48.019 +161421,208.03,46.295 +161422,205.5,46.88 +161423,203.08,47.436 +161424,200.76,47.967 +161425,206.72,46.401 +161426,204.21,46.931 +161427,201.81,47.435 +161428,199.5,47.915 +161429,205.41,46.506 +161430,202.92,46.983 +161431,200.54,47.434 +161432,198.24,47.863 +161433,204.09,46.613 +161434,201.64,47.034 +161435,199.27,47.433 +161436,196.98,47.81 +161437,202.78,46.719 +161438,200.35,47.086 +161439,198,47.431 +161440,195.73,47.757 +161441,201.46,46.825 +161442,199.06,47.138 +161443,196.73,47.43 +161444,194.48,47.704 +161445,200.14,46.931 +161446,197.77,47.19 +161447,195.46,47.429 +161448,193.23,47.65 +161449,198.82,47.038 +161450,196.48,47.242 +161451,194.2,47.427 +161452,191.98,47.596 +161453,197.5,47.144 +161454,195.18,47.294 +161455,192.93,47.426 +161456,190.73,47.543 +161457,196.17,47.25 +161458,193.89,47.345 +161459,191.67,47.425 +161460,189.49,47.489 +161461,194.85,47.356 +161462,192.6,47.397 +161463,190.4,47.423 +161464,188.25,47.435 +161465,193.52,47.462 +161466,191.31,47.449 +161467,189.14,47.422 +161468,187.01,47.381 +161469,192.19,47.567 +161470,190.01,47.501 +161471,187.87,47.421 +161472,185.77,47.328 +161473,190.86,47.672 +161474,188.72,47.553 +161475,186.61,47.42 +161476,184.53,47.274 +161477,189.53,47.777 +161478,187.42,47.605 +161479,185.34,47.419 +161480,183.29,47.221 +161481,188.19,47.882 +161482,186.12,47.657 +161483,184.08,47.418 +161484,182.06,47.167 +161485,186.86,47.986 +161486,184.83,47.708 +161487,182.82,47.417 +161488,180.83,47.114 +161489,185.52,48.09 +161490,183.53,47.76 +161491,181.56,47.417 +161492,179.6,47.061 +161493,184.18,48.193 +161494,182.23,47.811 +161495,180.3,47.416 +161496,178.37,47.009 +161497,182.84,48.296 +161498,180.93,47.863 +161499,179.03,47.416 +161500,177.14,46.956 +161501,181.5,48.398 +161502,179.63,47.914 +161503,177.77,47.416 +161504,175.92,46.905 +161505,180.16,48.5 +161506,178.33,47.965 +161507,176.51,47.416 +161508,174.7,46.853 +161509,178.81,48.601 +161510,177.03,48.016 +161511,175.25,47.416 +161512,173.48,46.802 +161513,177.47,48.701 +161514,175.73,48.067 +161515,174,47.417 +161516,172.26,46.752 +161517,176.12,48.801 +161518,174.43,48.117 +161519,172.74,47.417 +161520,171.04,46.702 +161521,174.78,48.9 +161522,173.13,48.168 +161523,171.48,47.418 +161524,169.82,46.652 +161525,173.43,48.998 +161526,171.83,48.218 +161527,170.22,47.419 +161528,168.61,46.603 +161529,172.08,49.095 +161530,170.52,48.268 +161531,168.96,47.421 +161532,167.39,46.555 +161533,170.73,49.192 +161534,169.22,48.317 +161535,167.71,47.423 +161536,166.18,46.508 +161537,169.37,49.287 +161538,167.92,48.367 +161539,166.45,47.425 +161540,164.97,46.461 +161541,168.02,49.382 +161542,166.61,48.416 +161543,165.19,47.427 +161544,163.76,46.415 +161545,166.67,49.476 +161546,165.31,48.465 +161547,163.94,47.43 +161548,162.55,46.37 +161549,165.31,49.569 +161550,164,48.514 +161551,162.68,47.433 +161552,161.35,46.326 +161553,163.96,49.661 +161554,162.7,48.562 +161555,161.43,47.436 +161556,160.14,46.283 +161557,162.6,49.751 +161558,161.39,48.61 +161559,160.17,47.439 +161560,158.94,46.24 +161561,161.24,49.841 +161562,160.08,48.658 +161563,158.92,47.443 +161564,157.74,46.199 +161565,159.89,49.93 +161566,158.78,48.705 +161567,157.66,47.448 +161568,156.54,46.158 +161569,158.53,50.018 +161570,157.47,48.752 +161571,156.41,47.453 +161572,155.34,46.119 +161573,157.17,50.104 +161574,156.16,48.799 +161575,155.15,47.458 +161576,154.14,46.08 +161577,155.81,50.19 +161578,154.86,48.845 +161579,153.9,47.463 +161580,152.94,46.043 +161581,154.45,50.274 +161582,153.55,48.891 +161583,152.65,47.469 +161584,151.74,46.007 +161585,153.09,50.357 +161586,152.24,48.937 +161587,151.39,47.476 +161588,150.55,45.972 +161589,151.73,50.438 +161590,150.93,48.982 +161591,150.14,47.483 +161592,149.35,45.938 +161593,150.36,50.519 +161594,149.62,49.027 +161595,148.89,47.49 +161596,148.16,45.906 +161597,149,50.598 +161598,148.31,49.071 +161599,147.63,47.498 +161600,146.96,45.874 +161601,147.64,50.676 +161602,147,49.115 +161603,146.38,47.506 +161604,145.77,45.844 +161605,146.27,50.753 +161606,145.69,49.159 +161607,145.13,47.514 +161608,144.58,45.816 +161609,144.91,50.828 +161610,144.38,49.202 +161611,143.87,47.524 +161612,143.39,45.789 +161613,143.55,50.902 +161614,143.07,49.245 +161615,142.62,47.533 +161616,142.2,45.763 +161617,142.18,50.974 +161618,141.76,49.287 +161619,141.37,47.543 +161620,141.01,45.738 +161621,140.82,51.046 +161622,140.45,49.329 +161623,140.12,47.554 +161624,139.82,45.716 +161625,139.45,51.115 +161626,139.14,49.37 +161627,138.86,47.565 +161628,138.63,45.694 +161629,138.09,51.184 +161630,137.83,49.411 +161631,137.61,47.577 +161632,137.44,45.674 +161633,136.72,51.25 +161634,136.52,49.452 +161635,136.36,47.589 +161636,136.25,45.656 +161637,135.36,51.316 +161638,135.21,49.492 +161639,135.11,47.602 +161640,135.07,45.639 +161641,133.99,51.38 +161642,133.9,49.531 +161643,133.85,47.615 +161644,133.88,45.624 +161645,132.62,51.442 +161646,132.58,49.57 +161647,132.6,47.629 +161648,132.69,45.61 +161649,131.26,51.503 +161650,131.27,49.609 +161651,131.35,47.643 +161652,131.5,45.598 +161653,129.89,51.562 +161654,129.96,49.647 +161655,130.1,47.658 +161656,130.32,45.588 +161657,128.53,51.62 +161658,128.65,49.684 +161659,128.84,47.674 +161660,129.13,45.579 +161661,127.16,51.676 +161662,127.34,49.722 +161663,127.59,47.69 +161664,127.94,45.572 +161665,125.8,51.731 +161666,126.03,49.758 +161667,126.34,47.706 +161668,126.75,45.567 +161669,124.43,51.784 +161670,124.71,49.794 +161671,125.09,47.724 +161672,125.57,45.563 +161673,123.07,51.836 +161674,123.4,49.829 +161675,123.83,47.741 +161676,124.38,45.562 +161677,121.7,51.886 +161678,122.09,49.864 +161679,122.58,47.76 +161680,123.19,45.562 +161681,120.34,51.934 +161682,120.78,49.899 +161683,121.33,47.779 +161684,122,45.563 +161685,118.97,51.981 +161686,119.47,49.933 +161687,120.07,47.798 +161688,120.81,45.567 +161689,117.61,52.026 +161690,118.16,49.966 +161691,118.82,47.819 +161692,119.62,45.572 +161693,116.25,52.07 +161694,116.85,49.999 +161695,117.56,47.839 +161696,118.43,45.58 +161697,114.88,52.112 +161698,115.53,50.031 +161699,116.31,47.861 +161700,117.24,45.589 +161701,113.52,52.152 +161702,114.22,50.063 +161703,115.05,47.883 +161704,116.05,45.6 +161705,112.16,52.191 +161706,112.91,50.094 +161707,113.8,47.906 +161708,114.86,45.612 +161709,110.8,52.228 +161710,111.6,50.125 +161711,112.54,47.929 +161712,113.66,45.627 +161713,109.44,52.264 +161714,110.29,50.155 +161715,111.29,47.953 +161716,112.47,45.643 +161717,108.08,52.298 +161718,108.98,50.184 +161719,110.03,47.977 +161720,111.27,45.662 +161721,106.72,52.33 +161722,107.67,50.214 +161723,108.77,48.002 +161724,110.08,45.682 +161725,105.36,52.361 +161726,106.36,50.242 +161727,107.52,48.028 +161728,108.88,45.704 +161729,104,52.39 +161730,105.05,50.27 +161731,106.26,48.054 +161732,107.68,45.728 +161733,102.64,52.417 +161734,103.74,50.297 +161735,105,48.081 +161736,106.48,45.754 +161737,101.29,52.443 +161738,102.43,50.324 +161739,103.74,48.109 +161740,105.28,45.781 +161741,99.931,52.467 +161742,101.12,50.35 +161743,102.49,48.137 +161744,104.08,45.811 +161745,98.576,52.49 +161746,99.81,50.376 +161747,101.23,48.165 +161748,102.88,45.842 +161749,97.221,52.511 +161750,98.501,50.401 +161751,99.967,48.195 +161752,101.67,45.875 +161753,95.868,52.53 +161754,97.192,50.426 +161755,98.707,48.225 +161756,100.46,45.91 +161757,94.515,52.548 +161758,95.884,50.45 +161759,97.446,48.255 +161760,99.256,45.947 +161761,93.164,52.564 +161762,94.576,50.474 +161763,96.185,48.286 +161764,98.047,45.986 +161765,91.813,52.579 +161766,93.268,50.497 +161767,94.923,48.318 +161768,96.836,46.027 +161769,90.463,52.592 +161770,91.961,50.52 +161771,93.661,48.351 +161772,95.624,46.069 +161773,89.115,52.603 +161774,90.653,50.542 +161775,92.399,48.383 +161776,94.409,46.113 +161777,87.767,52.613 +161778,89.347,50.563 +161779,91.136,48.417 +161780,93.194,46.16 +161781,86.42,52.621 +161782,88.04,50.584 +161783,89.872,48.451 +161784,91.976,46.207 +161785,85.075,52.628 +161786,86.734,50.604 +161787,88.607,48.486 +161788,90.756,46.257 +161789,83.731,52.634 +161790,85.428,50.624 +161791,87.342,48.521 +161792,89.535,46.308 +161793,82.388,52.637 +161794,84.123,50.644 +161795,86.077,48.557 +161796,88.311,46.361 +161797,81.046,52.64 +161798,82.818,50.663 +161799,84.811,48.593 +161800,87.086,46.416 +161801,79.705,52.641 +161802,81.513,50.681 +161803,83.544,48.63 +161804,85.859,46.473 +161805,78.366,52.64 +161806,80.209,50.699 +161807,82.276,48.668 +161808,84.63,46.531 +161809,77.027,52.638 +161810,78.905,50.717 +161811,81.008,48.706 +161812,83.399,46.591 +161813,75.691,52.634 +161814,77.602,50.734 +161815,79.74,48.744 +161816,82.165,46.652 +161817,74.355,52.63 +161818,76.299,50.75 +161819,78.47,48.783 +161820,80.93,46.715 +161821,73.021,52.623 +161822,74.997,50.766 +161823,77.2,48.823 +161824,79.692,46.78 +161825,71.688,52.616 +161826,73.695,50.782 +161827,75.929,48.863 +161828,78.453,46.846 +161829,70.357,52.607 +161830,72.393,50.797 +161831,74.658,48.904 +161832,77.211,46.914 +161833,69.027,52.596 +161834,71.092,50.812 +161835,73.385,48.945 +161836,75.967,46.983 +161837,67.698,52.584 +161838,69.792,50.826 +161839,72.113,48.987 +161840,74.72,47.054 +161841,66.371,52.571 +161842,68.492,50.84 +161843,70.839,49.029 +161844,73.472,47.126 +161845,65.045,52.557 +161846,67.192,50.853 +161847,69.565,49.071 +161848,72.221,47.2 +161849,63.721,52.542 +161850,65.893,50.866 +161851,68.289,49.114 +161852,70.968,47.275 +161853,62.399,52.525 +161854,64.595,50.879 +161855,67.014,49.158 +161856,69.713,47.351 +161857,61.078,52.507 +161858,63.297,50.891 +161859,65.737,49.202 +161860,68.455,47.429 +161861,59.758,52.487 +161862,61.999,50.902 +161863,64.46,49.246 +161864,67.196,47.508 +161865,58.441,52.467 +161866,60.702,50.914 +161867,63.182,49.291 +161868,65.934,47.589 +161869,57.125,52.446 +161870,59.406,50.925 +161871,61.903,49.336 +161872,64.669,47.67 +161873,55.81,52.423 +161874,58.11,50.935 +161875,60.623,49.382 +161876,63.402,47.753 +161877,54.497,52.399 +161878,56.815,50.946 +161879,59.343,49.428 +161880,62.133,47.837 +161881,53.186,52.374 +161882,55.52,50.955 +161883,58.062,49.475 +161884,60.862,47.922 +161885,51.876,52.348 +161886,54.226,50.965 +161887,56.78,49.521 +161888,59.588,48.008 +161889,50.569,52.321 +161890,52.932,50.974 +161891,55.497,49.569 +161892,58.312,48.096 +161893,49.262,52.294 +161894,51.639,50.983 +161895,54.214,49.616 +161896,57.034,48.184 +161897,47.958,52.265 +161898,50.346,50.992 +161899,52.93,49.664 +161900,55.753,48.273 +161901,46.656,52.235 +161902,49.054,51 +161903,51.645,49.712 +161904,54.47,48.364 +161905,45.355,52.204 +161906,47.763,51.008 +161907,50.359,49.761 +161908,53.185,48.455 +161909,44.056,52.173 +161910,46.472,51.016 +161911,49.073,49.809 +161912,51.898,48.547 +161913,42.758,52.14 +161914,45.182,51.023 +161915,47.785,49.859 +161916,50.608,48.64 +161917,41.463,52.107 +161918,43.892,51.03 +161919,46.497,49.908 +161920,49.316,48.734 +161921,40.169,52.073 +161922,42.603,51.037 +161923,45.209,49.958 +161924,48.021,48.828 +161925,38.877,52.038 +161926,41.314,51.044 +161927,43.919,50.008 +161928,46.725,48.923 +161929,37.587,52.003 +161930,40.026,51.051 +161931,42.629,50.058 +161932,45.426,49.019 +161933,36.299,51.967 +161934,38.739,51.057 +161935,41.338,50.108 +161936,44.125,49.116 +161937,35.012,51.93 +161938,37.452,51.063 +161939,40.046,50.159 +161940,42.822,49.213 +161941,33.728,51.892 +161942,36.166,51.069 +161943,38.753,50.21 +161944,41.517,49.311 +161945,32.445,51.854 +161946,34.88,51.074 +161947,37.46,50.261 +161948,40.209,49.409 +161949,31.164,51.815 +161950,33.595,51.08 +161951,36.166,50.312 +161952,38.9,49.508 +161953,29.885,51.776 +161954,32.311,51.085 +161955,34.871,50.364 +161956,37.588,49.607 +161957,28.608,51.737 +161958,31.027,51.09 +161959,33.575,50.415 +161960,36.274,49.707 +161961,27.333,51.696 +161962,29.744,51.096 +161963,32.279,50.467 +161964,34.958,49.807 +161965,26.06,51.656 +161966,28.461,51.1 +161967,30.982,50.519 +161968,33.64,49.907 +161969,24.788,51.615 +161970,27.179,51.105 +161971,29.684,50.571 +161972,32.32,50.008 +161973,23.519,51.574 +161974,25.897,51.11 +161975,28.385,50.623 +161976,30.999,50.109 +161977,22.251,51.532 +161978,24.616,51.115 +161979,27.086,50.675 +161980,29.675,50.21 +161981,20.985,51.49 +161982,23.336,51.119 +161983,25.786,50.727 +161984,28.349,50.311 +161985,19.721,51.448 +161986,22.056,51.124 +161987,24.485,50.78 +161988,27.021,50.412 +161989,18.459,51.405 +161990,20.777,51.128 +161991,23.184,50.832 +161992,25.692,50.514 +161993,17.198,51.363 +161994,19.498,51.133 +161995,21.882,50.884 +161996,24.361,50.615 +161997,15.94,51.32 +161998,18.22,51.137 +161999,20.579,50.937 +162000,23.027,50.717 +162001,14.683,51.277 +162002,16.942,51.141 +162003,19.276,50.989 +162004,21.692,50.818 +162005,13.428,51.234 +162006,15.665,51.146 +162007,17.971,51.042 +162008,20.356,50.92 +162009,12.175,51.191 +162010,14.388,51.15 +162011,16.667,51.094 +162012,19.017,51.021 +162013,10.924,51.148 +162014,13.112,51.155 +162015,15.361,51.147 +162016,17.677,51.122 +162017,9.6742,51.105 +162018,11.837,51.159 +162019,14.055,51.199 +162020,16.336,51.223 +162021,8.4265,51.062 +162022,10.562,51.164 +162023,12.748,51.252 +162024,14.992,51.324 +162025,7.1806,51.02 +162026,9.2873,51.168 +162027,11.441,51.304 +162028,13.647,51.425 +162029,5.9364,50.977 +162030,8.0133,51.173 +162031,10.133,51.356 +162032,12.301,51.525 +162033,4.6939,50.935 +162034,6.7398,51.178 +162035,8.8246,51.408 +162036,10.953,51.625 +162037,3.4532,50.892 +162038,5.4667,51.182 +162039,7.5155,51.46 +162040,9.6034,51.724 +162041,2.2141,50.85 +162042,4.1941,51.187 +162043,6.2058,51.512 +162044,8.2525,51.823 +162045,0.9767,50.809 +162046,2.9221,51.192 +162047,4.8955,51.564 +162048,6.9002,51.922 +162049,359.74,50.767 +162050,1.6504,51.198 +162051,3.5847,51.616 +162052,5.5465,52.02 +162053,358.51,50.726 +162054,0.37922,51.203 +162055,2.2733,51.667 +162056,4.1915,52.118 +162057,357.27,50.686 +162058,359.11,51.208 +162059,0.96134,51.719 +162060,2.8353,52.215 +162061,356.04,50.646 +162062,357.84,51.214 +162063,359.65,51.77 +162064,1.4777,52.312 +162065,354.81,50.606 +162066,356.57,51.22 +162067,358.34,51.821 +162068,0.11895,52.408 +162069,353.59,50.567 +162070,355.3,51.226 +162071,357.02,51.872 +162072,358.76,52.503 +162073,352.36,50.528 +162074,354.03,51.232 +162075,355.71,51.922 +162076,357.4,52.598 +162077,351.14,50.49 +162078,352.76,51.239 +162079,354.39,51.973 +162080,356.04,52.691 +162081,349.91,50.453 +162082,351.49,51.245 +162083,353.08,52.023 +162084,354.67,52.785 +162085,348.69,50.416 +162086,350.22,51.252 +162087,351.76,52.073 +162088,353.31,52.877 +162089,347.47,50.38 +162090,348.96,51.259 +162091,350.45,52.123 +162092,351.94,52.969 +162093,346.25,50.345 +162094,347.69,51.267 +162095,349.13,52.172 +162096,350.58,53.059 +162097,345.03,50.31 +162098,346.42,51.275 +162099,347.82,52.221 +162100,349.21,53.149 +162101,343.82,50.276 +162102,345.16,51.283 +162103,346.5,52.27 +162104,347.84,53.238 +162105,342.6,50.243 +162106,343.89,51.291 +162107,345.18,52.319 +162108,346.47,53.326 +162109,341.39,50.211 +162110,342.62,51.299 +162111,343.86,52.367 +162112,345.1,53.414 +162113,340.17,50.18 +162114,341.36,51.308 +162115,342.54,52.415 +162116,343.73,53.5 +162117,338.96,50.149 +162118,340.09,51.318 +162119,341.23,52.463 +162120,342.36,53.585 +162121,337.75,50.12 +162122,338.83,51.327 +162123,339.91,52.51 +162124,340.99,53.669 +162125,336.54,50.091 +162126,337.56,51.337 +162127,338.59,52.557 +162128,339.62,53.752 +162129,335.33,50.064 +162130,336.3,51.347 +162131,337.27,52.604 +162132,338.24,53.834 +162133,334.12,50.037 +162134,335.03,51.358 +162135,335.95,52.65 +162136,336.87,53.915 +162137,332.92,50.012 +162138,333.77,51.369 +162139,334.63,52.696 +162140,335.5,53.995 +162141,331.71,49.988 +162142,332.5,51.38 +162143,333.31,52.742 +162144,334.12,54.073 +162145,330.5,49.965 +162146,331.24,51.392 +162147,331.99,52.787 +162148,332.75,54.151 +162149,329.3,49.943 +162150,329.98,51.404 +162151,330.67,52.832 +162152,331.37,54.227 +162153,328.1,49.922 +162154,328.71,51.416 +162155,329.35,52.876 +162156,329.99,54.302 +162157,326.89,49.902 +162158,327.45,51.429 +162159,328.02,52.92 +162160,328.62,54.376 +162161,325.69,49.884 +162162,326.19,51.443 +162163,326.7,52.964 +162164,327.24,54.449 +162165,324.49,49.867 +162166,324.92,51.457 +162167,325.38,53.007 +162168,325.86,54.52 +162169,323.29,49.851 +162170,323.66,51.471 +162171,324.06,53.05 +162172,324.49,54.59 +162173,322.09,49.837 +162174,322.4,51.485 +162175,322.74,53.092 +162176,323.11,54.659 +162177,320.88,49.824 +162178,321.13,51.5 +162179,321.42,53.134 +162180,321.73,54.726 +162181,319.68,49.812 +162182,319.87,51.516 +162183,320.09,53.176 +162184,320.35,54.792 +162185,318.48,49.801 +162186,318.61,51.532 +162187,318.77,53.217 +162188,318.98,54.857 +162189,317.28,49.792 +162190,317.34,51.549 +162191,317.45,53.257 +162192,317.6,54.92 +162193,316.09,49.785 +162194,316.08,51.566 +162195,316.13,53.297 +162196,316.22,54.982 +162197,314.89,49.779 +162198,314.82,51.583 +162199,314.8,53.337 +162200,314.84,55.043 +162201,313.69,49.774 +162202,313.55,51.601 +162203,313.48,53.376 +162204,313.46,55.102 +162205,312.49,49.771 +162206,312.29,51.619 +162207,312.16,53.415 +162208,312.09,55.16 +162209,311.29,49.769 +162210,311.02,51.638 +162211,310.84,53.453 +162212,310.71,55.216 +162213,310.09,49.769 +162214,309.76,51.658 +162215,309.51,53.49 +162216,309.33,55.271 +162217,308.89,49.77 +162218,308.5,51.678 +162219,308.19,53.528 +162220,307.95,55.324 +162221,307.69,49.773 +162222,307.23,51.698 +162223,306.87,53.564 +162224,306.58,55.376 +162225,306.49,49.777 +162226,305.97,51.719 +162227,305.54,53.601 +162228,305.2,55.426 +162229,305.29,49.783 +162230,304.71,51.74 +162231,304.22,53.636 +162232,303.82,55.475 +162233,304.09,49.791 +162234,303.44,51.762 +162235,302.9,53.671 +162236,302.45,55.523 +162237,302.89,49.8 +162238,302.18,51.785 +162239,301.58,53.706 +162240,301.07,55.569 +162241,301.68,49.811 +162242,300.91,51.808 +162243,300.25,53.74 +162244,299.7,55.613 +162245,300.48,49.823 +162246,299.65,51.831 +162247,298.93,53.774 +162248,298.32,55.656 +162249,299.28,49.837 +162250,298.38,51.855 +162251,297.61,53.807 +162252,296.95,55.698 +162253,298.08,49.852 +162254,297.11,51.88 +162255,296.29,53.84 +162256,295.57,55.738 +162257,296.87,49.87 +162258,295.85,51.905 +162259,294.97,53.872 +162260,294.2,55.776 +162261,295.67,49.888 +162262,294.58,51.931 +162263,293.64,53.904 +162264,292.83,55.813 +162265,294.46,49.909 +162266,293.32,51.957 +162267,292.32,53.935 +162268,291.46,55.849 +162269,293.25,49.931 +162270,292.05,51.984 +162271,291,53.965 +162272,290.08,55.883 +162273,292.05,49.955 +162274,290.78,52.011 +162275,289.68,53.995 +162276,288.71,55.915 +162277,290.84,49.98 +162278,289.51,52.039 +162279,288.36,54.025 +162280,287.34,55.946 +162281,289.63,50.007 +162282,288.25,52.067 +162283,287.04,54.054 +162284,285.97,55.975 +162285,288.42,50.036 +162286,286.98,52.096 +162287,285.72,54.083 +162288,284.6,56.003 +162289,287.2,50.066 +162290,285.71,52.125 +162291,284.4,54.111 +162292,283.24,56.029 +162293,285.99,50.098 +162294,284.44,52.155 +162295,283.08,54.138 +162296,281.87,56.054 +162297,284.78,50.132 +162298,283.17,52.186 +162299,281.76,54.165 +162300,280.5,56.078 +162301,283.56,50.167 +162302,281.9,52.217 +162303,280.44,54.192 +162304,279.14,56.099 +162305,282.34,50.204 +162306,280.63,52.248 +162307,279.12,54.218 +162308,277.77,56.12 +162309,281.13,50.242 +162310,279.36,52.28 +162311,277.8,54.243 +162312,276.41,56.139 +162313,279.9,50.282 +162314,278.09,52.313 +162315,276.48,54.268 +162316,275.05,56.156 +162317,278.68,50.324 +162318,276.82,52.346 +162319,275.16,54.292 +162320,273.69,56.172 +162321,277.46,50.367 +162322,275.54,52.379 +162323,273.85,54.316 +162324,272.33,56.187 +162325,276.24,50.412 +162326,274.27,52.413 +162327,272.53,54.34 +162328,270.97,56.2 +162329,275.01,50.459 +162330,273,52.448 +162331,271.21,54.363 +162332,269.61,56.211 +162333,273.78,50.507 +162334,271.72,52.483 +162335,269.89,54.385 +162336,268.25,56.221 +162337,272.55,50.556 +162338,270.45,52.519 +162339,268.58,54.407 +162340,266.9,56.23 +162341,271.32,50.608 +162342,269.17,52.555 +162343,267.26,54.429 +162344,265.54,56.237 +162345,270.09,50.66 +162346,267.9,52.591 +162347,265.95,54.45 +162348,264.19,56.243 +162349,268.85,50.714 +162350,266.62,52.628 +162351,264.63,54.47 +162352,262.84,56.248 +162353,267.61,50.77 +162354,265.34,52.666 +162355,263.32,54.49 +162356,261.49,56.251 +162357,266.38,50.827 +162358,264.07,52.704 +162359,262,54.51 +162360,260.14,56.253 +162361,265.13,50.885 +162362,262.79,52.742 +162363,260.69,54.529 +162364,258.79,56.253 +162365,263.89,50.945 +162366,261.51,52.781 +162367,259.38,54.548 +162368,257.44,56.253 +162369,262.65,51.007 +162370,260.23,52.821 +162371,258.06,54.566 +162372,256.1,56.25 +162373,261.4,51.07 +162374,258.95,52.861 +162375,256.75,54.584 +162376,254.75,56.247 +162377,260.15,51.134 +162378,257.67,52.901 +162379,255.44,54.601 +162380,253.41,56.242 +162381,258.9,51.199 +162382,256.39,52.942 +162383,254.13,54.618 +162384,252.07,56.236 +162385,257.65,51.266 +162386,255.11,52.983 +162387,252.81,54.635 +162388,250.73,56.229 +162389,256.39,51.334 +162390,253.82,53.025 +162391,251.5,54.651 +162392,249.39,56.221 +162393,255.13,51.403 +162394,252.54,53.067 +162395,250.19,54.667 +162396,248.05,56.211 +162397,253.88,51.474 +162398,251.25,53.109 +162399,248.88,54.682 +162400,246.72,56.2 +162401,252.61,51.546 +162402,249.97,53.152 +162403,247.58,54.697 +162404,245.38,56.188 +162405,251.35,51.619 +162406,248.68,53.195 +162407,246.27,54.712 +162408,244.05,56.175 +162409,250.08,51.693 +162410,247.4,53.239 +162411,244.96,54.726 +162412,242.72,56.161 +162413,248.82,51.769 +162414,246.11,53.282 +162415,243.65,54.739 +162416,241.39,56.146 +162417,247.55,51.845 +162418,244.82,53.327 +162419,242.34,54.753 +162420,240.07,56.13 +162421,246.27,51.923 +162422,243.53,53.371 +162423,241.04,54.766 +162424,238.74,56.112 +162425,245,52.001 +162426,242.25,53.416 +162427,239.73,54.779 +162428,237.42,56.094 +162429,243.72,52.081 +162430,240.96,53.462 +162431,238.43,54.791 +162432,236.09,56.074 +162433,242.44,52.161 +162434,239.67,53.508 +162435,237.12,54.803 +162436,234.77,56.054 +162437,241.16,52.243 +162438,238.37,53.554 +162439,235.82,54.815 +162440,233.45,56.033 +162441,239.88,52.326 +162442,237.08,53.6 +162443,234.51,54.826 +162444,232.14,56.01 +162445,238.59,52.409 +162446,235.79,53.646 +162447,233.21,54.837 +162448,230.82,55.987 +162449,237.3,52.493 +162450,234.5,53.693 +162451,231.91,54.848 +162452,229.51,55.963 +162453,236.01,52.578 +162454,233.2,53.74 +162455,230.61,54.859 +162456,228.19,55.938 +162457,234.72,52.664 +162458,231.91,53.788 +162459,229.31,54.869 +162460,226.88,55.913 +162461,233.42,52.751 +162462,230.61,53.836 +162463,228.01,54.879 +162464,225.58,55.886 +162465,232.13,52.839 +162466,229.31,53.883 +162467,226.71,54.889 +162468,224.27,55.859 +162469,230.83,52.927 +162470,228.02,53.932 +162471,225.41,54.898 +162472,222.96,55.831 +162473,229.53,53.015 +162474,226.72,53.98 +162475,224.11,54.908 +162476,221.66,55.802 +162477,228.22,53.105 +162478,225.42,54.029 +162479,222.81,54.917 +162480,220.36,55.773 +162481,226.92,53.195 +162482,224.12,54.077 +162483,221.51,54.925 +162484,219.06,55.743 +162485,225.61,53.285 +162486,222.82,54.126 +162487,220.21,54.934 +162488,217.76,55.713 +162489,224.3,53.377 +162490,221.52,54.176 +162491,218.92,54.943 +162492,216.47,55.681 +162493,222.98,53.468 +162494,220.22,54.225 +162495,217.62,54.951 +162496,215.17,55.65 +162497,221.67,53.56 +162498,218.91,54.274 +162499,216.33,54.959 +162500,213.88,55.618 +162501,220.35,53.653 +162502,217.61,54.324 +162503,215.03,54.967 +162504,212.59,55.585 +162505,219.03,53.746 +162506,216.31,54.374 +162507,213.74,54.975 +162508,211.3,55.552 +162509,217.71,53.839 +162510,215,54.424 +162511,212.44,54.982 +162512,210.01,55.518 +162513,216.39,53.932 +162514,213.7,54.474 +162515,211.15,54.99 +162516,208.73,55.484 +162517,215.07,54.026 +162518,212.39,54.524 +162519,209.86,54.997 +162520,207.45,55.45 +162521,213.74,54.12 +162522,211.08,54.574 +162523,208.57,55.005 +162524,206.16,55.415 +162525,212.41,54.214 +162526,209.78,54.624 +162527,207.27,55.012 +162528,204.89,55.38 +162529,211.08,54.309 +162530,208.47,54.674 +162531,205.98,55.019 +162532,203.61,55.345 +162533,209.75,54.403 +162534,207.16,54.725 +162535,204.69,55.026 +162536,202.33,55.309 +162537,208.41,54.498 +162538,205.85,54.775 +162539,203.4,55.033 +162540,201.06,55.274 +162541,207.08,54.593 +162542,204.54,54.826 +162543,202.12,55.04 +162544,199.79,55.238 +162545,205.74,54.687 +162546,203.23,54.876 +162547,200.83,55.047 +162548,198.52,55.202 +162549,204.4,54.782 +162550,201.92,54.926 +162551,199.54,55.054 +162552,197.25,55.166 +162553,203.05,54.876 +162554,200.61,54.977 +162555,198.25,55.061 +162556,195.98,55.13 +162557,201.71,54.971 +162558,199.29,55.027 +162559,196.97,55.067 +162560,194.72,55.094 +162561,200.37,55.065 +162562,197.98,55.078 +162563,195.68,55.074 +162564,193.45,55.058 +162565,199.02,55.16 +162566,196.67,55.128 +162567,194.39,55.081 +162568,192.19,55.021 +162569,197.67,55.254 +162570,195.35,55.178 +162571,193.11,55.088 +162572,190.93,54.985 +162573,196.32,55.348 +162574,194.04,55.229 +162575,191.82,55.095 +162576,189.67,54.949 +162577,194.97,55.441 +162578,192.72,55.279 +162579,190.54,55.102 +162580,188.42,54.914 +162581,193.61,55.535 +162582,191.4,55.329 +162583,189.26,55.109 +162584,187.16,54.878 +162585,192.26,55.628 +162586,190.09,55.379 +162587,187.97,55.116 +162588,185.91,54.843 +162589,190.9,55.72 +162590,188.77,55.428 +162591,186.69,55.124 +162592,184.66,54.807 +162593,189.54,55.812 +162594,187.45,55.478 +162595,185.41,55.131 +162596,183.41,54.773 +162597,188.18,55.904 +162598,186.13,55.528 +162599,184.13,55.138 +162600,182.16,54.738 +162601,186.82,55.996 +162602,184.81,55.577 +162603,182.85,55.146 +162604,180.92,54.704 +162605,185.46,56.086 +162606,183.49,55.626 +162607,181.56,55.154 +162608,179.67,54.67 +162609,184.1,56.177 +162610,182.17,55.676 +162611,180.28,55.161 +162612,178.43,54.636 +162613,182.73,56.266 +162614,180.85,55.725 +162615,179,55.169 +162616,177.19,54.603 +162617,181.36,56.356 +162618,179.53,55.773 +162619,177.72,55.178 +162620,175.95,54.571 +162621,180,56.444 +162622,178.21,55.822 +162623,176.45,55.186 +162624,174.71,54.539 +162625,178.63,56.532 +162626,176.89,55.87 +162627,175.17,55.194 +162628,173.47,54.507 +162629,177.26,56.619 +162630,175.56,55.918 +162631,173.89,55.203 +162632,172.24,54.476 +162633,175.89,56.706 +162634,174.24,55.966 +162635,172.61,55.212 +162636,171,54.446 +162637,174.52,56.792 +162638,172.92,56.014 +162639,171.33,55.221 +162640,169.77,54.416 +162641,173.14,56.877 +162642,171.59,56.061 +162643,170.06,55.231 +162644,168.54,54.387 +162645,171.77,56.961 +162646,170.27,56.108 +162647,168.78,55.24 +162648,167.31,54.358 +162649,170.39,57.045 +162650,168.94,56.155 +162651,167.5,55.25 +162652,166.08,54.331 +162653,169.02,57.127 +162654,167.62,56.202 +162655,166.23,55.26 +162656,164.85,54.304 +162657,167.64,57.209 +162658,166.29,56.248 +162659,164.95,55.27 +162660,163.62,54.277 +162661,166.26,57.29 +162662,164.97,56.294 +162663,163.68,55.281 +162664,162.4,54.252 +162665,164.89,57.37 +162666,163.64,56.34 +162667,162.4,55.292 +162668,161.17,54.228 +162669,163.51,57.449 +162670,162.31,56.385 +162671,161.13,55.303 +162672,159.95,54.204 +162673,162.13,57.527 +162674,160.98,56.43 +162675,159.85,55.315 +162676,158.73,54.181 +162677,160.75,57.604 +162678,159.66,56.475 +162679,158.58,55.326 +162680,157.51,54.159 +162681,159.37,57.68 +162682,158.33,56.519 +162683,157.3,55.339 +162684,156.29,54.138 +162685,157.98,57.755 +162686,157,56.564 +162687,156.03,55.351 +162688,155.07,54.118 +162689,156.6,57.829 +162690,155.67,56.607 +162691,154.76,55.364 +162692,153.85,54.099 +162693,155.22,57.901 +162694,154.34,56.651 +162695,153.48,55.377 +162696,152.63,54.081 +162697,153.84,57.973 +162698,153.02,56.694 +162699,152.21,55.39 +162700,151.42,54.065 +162701,152.45,58.044 +162702,151.69,56.736 +162703,150.94,55.404 +162704,150.2,54.049 +162705,151.07,58.113 +162706,150.36,56.778 +162707,149.66,55.418 +162708,148.99,54.034 +162709,149.68,58.182 +162710,149.03,56.82 +162711,148.39,55.433 +162712,147.77,54.021 +162713,148.3,58.249 +162714,147.7,56.862 +162715,147.12,55.448 +162716,146.56,54.008 +162717,146.91,58.315 +162718,146.37,56.903 +162719,145.85,55.463 +162720,145.34,53.997 +162721,145.53,58.379 +162722,145.04,56.943 +162723,144.57,55.479 +162724,144.13,53.987 +162725,144.14,58.443 +162726,143.71,56.983 +162727,143.3,55.495 +162728,142.92,53.978 +162729,142.76,58.505 +162730,142.38,57.023 +162731,142.03,55.511 +162732,141.71,53.97 +162733,141.37,58.566 +162734,141.05,57.062 +162735,140.76,55.528 +162736,140.5,53.964 +162737,139.99,58.626 +162738,139.72,57.101 +162739,139.48,55.546 +162740,139.28,53.959 +162741,138.6,58.684 +162742,138.39,57.14 +162743,138.21,55.563 +162744,138.07,53.955 +162745,137.21,58.741 +162746,137.06,57.178 +162747,136.94,55.582 +162748,136.86,53.952 +162749,135.83,58.797 +162750,135.73,57.216 +162751,135.67,55.6 +162752,135.65,53.951 +162753,134.44,58.852 +162754,134.4,57.253 +162755,134.39,55.619 +162756,134.44,53.951 +162757,133.06,58.905 +162758,133.07,57.289 +162759,133.12,55.639 +162760,133.23,53.952 +162761,131.67,58.957 +162762,131.73,57.326 +162763,131.85,55.659 +162764,132.02,53.955 +162765,130.28,59.007 +162766,130.4,57.361 +162767,130.58,55.679 +162768,130.81,53.959 +162769,128.9,59.056 +162770,129.07,57.397 +162771,129.31,55.7 +162772,129.6,53.965 +162773,127.51,59.104 +162774,127.74,57.431 +162775,128.03,55.721 +162776,128.39,53.972 +162777,126.13,59.15 +162778,126.41,57.466 +162779,126.76,55.743 +162780,127.18,53.98 +162781,124.74,59.195 +162782,125.08,57.5 +162783,125.49,55.765 +162784,125.97,53.99 +162785,123.36,59.239 +162786,123.75,57.533 +162787,124.21,55.788 +162788,124.76,54.001 +162789,121.98,59.281 +162790,122.42,57.566 +162791,122.94,55.811 +162792,123.55,54.014 +162793,120.59,59.322 +162794,121.09,57.598 +162795,121.67,55.834 +162796,122.33,54.028 +162797,119.21,59.361 +162798,119.76,57.63 +162799,120.39,55.858 +162800,121.12,54.043 +162801,117.83,59.399 +162802,118.43,57.662 +162803,119.12,55.883 +162804,119.91,54.06 +162805,116.44,59.436 +162806,117.1,57.693 +162807,117.85,55.908 +162808,118.7,54.078 +162809,115.06,59.471 +162810,115.77,57.723 +162811,116.57,55.933 +162812,117.48,54.098 +162813,113.68,59.505 +162814,114.44,57.753 +162815,115.3,55.959 +162816,116.27,54.12 +162817,112.3,59.537 +162818,113.11,57.783 +162819,114.02,55.986 +162820,115.05,54.143 +162821,110.92,59.568 +162822,111.78,57.812 +162823,112.75,56.012 +162824,113.83,54.167 +162825,109.54,59.598 +162826,110.45,57.841 +162827,111.47,56.04 +162828,112.62,54.193 +162829,108.16,59.626 +162830,109.12,57.869 +162831,110.2,56.068 +162832,111.4,54.22 +162833,106.79,59.652 +162834,107.8,57.896 +162835,108.92,56.096 +162836,110.18,54.249 +162837,105.41,59.677 +162838,106.47,57.923 +162839,107.64,56.125 +162840,108.96,54.279 +162841,104.03,59.701 +162842,105.14,57.95 +162843,106.37,56.154 +162844,107.74,54.31 +162845,102.66,59.724 +162846,103.81,57.976 +162847,105.09,56.184 +162848,106.52,54.343 +162849,101.28,59.745 +162850,102.48,58.002 +162851,103.81,56.214 +162852,105.29,54.378 +162853,99.91,59.764 +162854,101.16,58.027 +162855,102.53,56.245 +162856,104.07,54.414 +162857,98.538,59.783 +162858,99.829,58.052 +162859,101.26,56.276 +162860,102.84,54.452 +162861,97.166,59.8 +162862,98.502,58.076 +162863,99.977,56.307 +162864,101.62,54.49 +162865,95.796,59.815 +162866,97.176,58.1 +162867,98.698,56.339 +162868,100.39,54.531 +162869,94.426,59.829 +162870,95.85,58.123 +162871,97.418,56.372 +162872,99.158,54.573 +162873,93.058,59.842 +162874,94.524,58.146 +162875,96.138,56.405 +162876,97.927,54.616 +162877,91.69,59.854 +162878,93.199,58.168 +162879,94.857,56.438 +162880,96.695,54.66 +162881,90.324,59.864 +162882,91.874,58.19 +162883,93.576,56.472 +162884,95.461,54.706 +162885,88.959,59.873 +162886,90.549,58.211 +162887,92.295,56.506 +162888,94.225,54.754 +162889,87.595,59.88 +162890,89.225,58.232 +162891,91.013,56.541 +162892,92.988,54.802 +162893,86.232,59.886 +162894,87.901,58.253 +162895,89.73,56.576 +162896,91.75,54.853 +162897,84.87,59.891 +162898,86.578,58.273 +162899,88.447,56.612 +162900,90.51,54.904 +162901,83.51,59.895 +162902,85.255,58.293 +162903,87.163,56.648 +162904,89.268,54.957 +162905,82.151,59.897 +162906,83.932,58.312 +162907,85.879,56.684 +162908,88.024,55.011 +162909,80.793,59.898 +162910,82.61,58.331 +162911,84.594,56.721 +162912,86.779,55.066 +162913,79.437,59.898 +162914,81.288,58.349 +162915,83.308,56.758 +162916,85.531,55.123 +162917,78.082,59.897 +162918,79.967,58.367 +162919,82.022,56.796 +162920,84.282,55.181 +162921,76.728,59.894 +162922,78.646,58.384 +162923,80.736,56.834 +162924,83.032,55.24 +162925,75.376,59.89 +162926,77.326,58.401 +162927,79.449,56.873 +162928,81.779,55.3 +162929,74.025,59.885 +162930,76.006,58.418 +162931,78.161,56.912 +162932,80.524,55.362 +162933,72.675,59.879 +162934,74.687,58.434 +162935,76.872,56.951 +162936,79.268,55.425 +162937,71.327,59.872 +162938,73.368,58.45 +162939,75.583,56.99 +162940,78.009,55.489 +162941,69.981,59.864 +162942,72.049,58.466 +162943,74.294,57.03 +162944,76.749,55.554 +162945,68.635,59.855 +162946,70.732,58.481 +162947,73.003,57.071 +162948,75.486,55.62 +162949,67.292,59.844 +162950,69.414,58.496 +162951,71.712,57.111 +162952,74.222,55.687 +162953,65.95,59.833 +162954,68.097,58.51 +162955,70.421,57.152 +162956,72.956,55.756 +162957,64.609,59.82 +162958,66.781,58.524 +162959,69.128,57.194 +162960,71.687,55.825 +162961,63.271,59.806 +162962,65.465,58.538 +162963,67.835,57.235 +162964,70.416,55.896 +162965,61.933,59.792 +162966,64.15,58.551 +162967,66.542,57.277 +162968,69.144,55.967 +162969,60.598,59.776 +162970,62.835,58.564 +162971,65.248,57.32 +162972,67.869,56.039 +162973,59.264,59.76 +162974,61.521,58.577 +162975,63.953,57.362 +162976,66.592,56.113 +162977,57.931,59.743 +162978,60.208,58.589 +162979,62.657,57.405 +162980,65.313,56.187 +162981,56.6,59.724 +162982,58.895,58.601 +162983,61.361,57.448 +162984,64.032,56.262 +162985,55.271,59.705 +162986,57.582,58.613 +162987,60.063,57.492 +162988,62.749,56.338 +162989,53.944,59.685 +162990,56.27,58.625 +162991,58.766,57.536 +162992,61.464,56.415 +162993,52.618,59.664 +162994,54.959,58.636 +162995,57.467,57.58 +162996,60.176,56.493 +162997,51.294,59.643 +162998,53.648,58.647 +162999,56.168,57.624 +163000,58.886,56.571 +163001,49.972,59.62 +163002,52.338,58.658 +163003,54.868,57.669 +163004,57.595,56.65 +163005,48.652,59.597 +163006,51.029,58.668 +163007,53.568,57.713 +163008,56.301,56.73 +163009,47.333,59.573 +163010,49.72,58.678 +163011,52.267,57.758 +163012,55.004,56.811 +163013,46.016,59.549 +163014,48.411,58.688 +163015,50.965,57.803 +163016,53.706,56.892 +163017,44.701,59.523 +163018,47.103,58.698 +163019,49.662,57.849 +163020,52.406,56.974 +163021,43.387,59.497 +163022,45.796,58.707 +163023,48.359,57.894 +163024,51.103,57.056 +163025,42.075,59.471 +163026,44.489,58.716 +163027,47.054,57.94 +163028,49.798,57.139 +163029,40.765,59.444 +163030,43.183,58.725 +163031,45.75,57.986 +163032,48.492,57.223 +163033,39.457,59.416 +163034,41.878,58.734 +163035,44.444,58.032 +163036,47.183,57.307 +163037,38.151,59.388 +163038,40.573,58.743 +163039,43.138,58.078 +163040,45.872,57.391 +163041,36.847,59.36 +163042,39.269,58.751 +163043,41.831,58.125 +163044,44.558,57.476 +163045,35.544,59.33 +163046,37.965,58.76 +163047,40.523,58.171 +163048,43.243,57.562 +163049,34.243,59.301 +163050,36.662,58.768 +163051,39.215,58.218 +163052,41.926,57.647 +163053,32.944,59.271 +163054,35.36,58.776 +163055,37.906,58.264 +163056,40.606,57.734 +163057,31.647,59.241 +163058,34.058,58.784 +163059,36.596,58.311 +163060,39.285,57.82 +163061,30.351,59.21 +163062,32.757,58.792 +163063,35.286,58.358 +163064,37.961,57.907 +163065,29.058,59.179 +163066,31.456,58.799 +163067,33.975,58.405 +163068,36.636,57.993 +163069,27.766,59.148 +163070,30.156,58.807 +163071,32.663,58.452 +163072,35.308,58.081 +163073,26.476,59.116 +163074,28.856,58.815 +163075,31.351,58.499 +163076,33.979,58.168 +163077,25.188,59.084 +163078,27.557,58.822 +163079,30.038,58.546 +163080,32.647,58.255 +163081,23.901,59.052 +163082,26.259,58.829 +163083,28.724,58.594 +163084,31.314,58.343 +163085,22.617,59.02 +163086,24.961,58.837 +163087,27.409,58.641 +163088,29.978,58.43 +163089,21.334,58.988 +163090,23.664,58.844 +163091,26.094,58.688 +163092,28.641,58.518 +163093,20.053,58.956 +163094,22.367,58.851 +163095,24.779,58.735 +163096,27.302,58.606 +163097,18.774,58.923 +163098,21.071,58.858 +163099,23.462,58.782 +163100,25.961,58.693 +163101,17.496,58.891 +163102,19.776,58.865 +163103,22.145,58.83 +163104,24.618,58.781 +163105,16.22,58.858 +163106,18.481,58.873 +163107,20.828,58.877 +163108,23.273,58.868 +163109,14.946,58.826 +163110,17.186,58.88 +163111,19.509,58.924 +163112,21.927,58.956 +163113,13.674,58.793 +163114,15.893,58.887 +163115,18.19,58.971 +163116,20.579,59.043 +163117,12.404,58.761 +163118,14.599,58.894 +163119,16.871,59.018 +163120,19.229,59.13 +163121,11.135,58.729 +163122,13.307,58.902 +163123,15.551,59.065 +163124,17.878,59.217 +163125,9.868,58.697 +163126,12.014,58.909 +163127,14.23,59.112 +163128,16.524,59.303 +163129,8.6026,58.665 +163130,10.723,58.916 +163131,12.909,59.159 +163132,15.17,59.39 +163133,7.3389,58.633 +163134,9.4315,58.924 +163135,11.587,59.205 +163136,13.813,59.476 +163137,6.0769,58.602 +163138,8.1408,58.931 +163139,10.264,59.252 +163140,12.455,59.561 +163141,4.8165,58.571 +163142,6.8506,58.939 +163143,8.9412,59.298 +163144,11.096,59.647 +163145,3.5577,58.54 +163146,5.561,58.946 +163147,7.6176,59.344 +163148,9.7348,59.732 +163149,2.3005,58.509 +163150,4.2718,58.954 +163151,6.2935,59.391 +163152,8.3723,59.816 +163153,1.0449,58.479 +163154,2.9831,58.962 +163155,4.9688,59.437 +163156,7.0084,59.9 +163157,359.79,58.449 +163158,1.6948,58.97 +163159,3.6436,59.482 +163160,5.6431,59.983 +163161,358.54,58.42 +163162,0.40705,58.979 +163163,2.3179,59.528 +163164,4.2765,60.066 +163165,357.29,58.391 +163166,359.12,58.987 +163167,0.99175,59.573 +163168,2.9085,60.149 +163169,356.04,58.363 +163170,357.83,58.995 +163171,359.67,59.619 +163172,1.5392,60.231 +163173,354.79,58.335 +163174,356.55,59.004 +163175,358.34,59.664 +163176,0.1687,60.312 +163177,353.54,58.308 +163178,355.26,59.013 +163179,357.01,59.709 +163180,358.8,60.393 +163181,352.3,58.281 +163182,353.97,59.022 +163183,355.68,59.753 +163184,357.42,60.472 +163185,351.05,58.255 +163186,352.69,59.031 +163187,354.35,59.797 +163188,356.05,60.552 +163189,349.81,58.229 +163190,351.4,59.041 +163191,353.02,59.842 +163192,354.67,60.63 +163193,348.57,58.205 +163194,350.12,59.05 +163195,351.7,59.886 +163196,353.3,60.708 +163197,347.33,58.18 +163198,348.84,59.06 +163199,350.37,59.929 +163200,351.92,60.785 +163201,346.09,58.157 +163202,347.55,59.07 +163203,349.04,59.972 +163204,350.54,60.861 +163205,344.85,58.134 +163206,346.27,59.081 +163207,347.7,60.016 +163208,349.16,60.937 +163209,343.62,58.112 +163210,344.99,59.091 +163211,346.37,60.058 +163212,347.78,61.011 +163213,342.38,58.091 +163214,343.7,59.102 +163215,345.04,60.101 +163216,346.4,61.085 +163217,341.15,58.071 +163218,342.42,59.114 +163219,343.71,60.143 +163220,345.02,61.158 +163221,339.92,58.051 +163222,341.14,59.125 +163223,342.38,60.185 +163224,343.64,61.23 +163225,338.68,58.033 +163226,339.86,59.137 +163227,341.05,60.227 +163228,342.25,61.301 +163229,337.45,58.015 +163230,338.58,59.149 +163231,339.71,60.268 +163232,340.87,61.371 +163233,336.22,57.998 +163234,337.29,59.161 +163235,338.38,60.309 +163236,339.48,61.44 +163237,335,57.982 +163238,336.01,59.174 +163239,337.05,60.349 +163240,338.1,61.508 +163241,333.77,57.968 +163242,334.73,59.187 +163243,335.71,60.389 +163244,336.71,61.575 +163245,332.54,57.954 +163246,333.45,59.2 +163247,334.38,60.429 +163248,335.33,61.641 +163249,331.31,57.941 +163250,332.17,59.213 +163251,333.05,60.469 +163252,333.94,61.706 +163253,330.09,57.929 +163254,330.89,59.227 +163255,331.71,60.508 +163256,332.55,61.77 +163257,328.86,57.918 +163258,329.61,59.242 +163259,330.38,60.547 +163260,331.16,61.833 +163261,327.64,57.908 +163262,328.33,59.256 +163263,329.04,60.585 +163264,329.77,61.895 +163265,326.42,57.9 +163266,327.05,59.271 +163267,327.71,60.623 +163268,328.39,61.955 +163269,325.19,57.892 +163270,325.77,59.286 +163271,326.37,60.661 +163272,327,62.015 +163273,323.97,57.886 +163274,324.49,59.302 +163275,325.04,60.698 +163276,325.61,62.073 +163277,322.75,57.88 +163278,323.21,59.318 +163279,323.7,60.735 +163280,324.22,62.13 +163281,321.53,57.876 +163282,321.93,59.335 +163283,322.37,60.771 +163284,322.83,62.186 +163285,320.31,57.873 +163286,320.66,59.351 +163287,321.03,60.807 +163288,321.44,62.241 +163289,319.09,57.872 +163290,319.38,59.369 +163291,319.7,60.843 +163292,320.04,62.294 +163293,317.87,57.871 +163294,318.1,59.386 +163295,318.36,60.878 +163296,318.65,62.347 +163297,316.65,57.872 +163298,316.82,59.404 +163299,317.03,60.913 +163300,317.26,62.398 +163301,315.43,57.874 +163302,315.54,59.422 +163303,315.69,60.947 +163304,315.87,62.448 +163305,314.21,57.877 +163306,314.26,59.441 +163307,314.35,60.981 +163308,314.48,62.496 +163309,312.99,57.881 +163310,312.98,59.46 +163311,313.02,61.015 +163312,313.09,62.543 +163313,311.77,57.887 +163314,311.7,59.48 +163315,311.68,61.048 +163316,311.7,62.59 +163317,310.55,57.894 +163318,310.42,59.5 +163319,310.35,61.08 +163320,310.31,62.634 +163321,309.33,57.902 +163322,309.15,59.521 +163323,309.01,61.112 +163324,308.92,62.678 +163325,308.11,57.912 +163326,307.87,59.541 +163327,307.67,61.144 +163328,307.53,62.72 +163329,306.89,57.923 +163330,306.59,59.563 +163331,306.34,61.175 +163332,306.14,62.761 +163333,305.67,57.935 +163334,305.31,59.584 +163335,305,61.206 +163336,304.75,62.8 +163337,304.45,57.949 +163338,304.03,59.606 +163339,303.67,61.237 +163340,303.36,62.839 +163341,303.23,57.963 +163342,302.75,59.629 +163343,302.33,61.266 +163344,301.97,62.876 +163345,302.01,57.98 +163346,301.47,59.652 +163347,300.99,61.296 +163348,300.58,62.911 +163349,300.79,57.997 +163350,300.19,59.675 +163351,299.66,61.325 +163352,299.19,62.946 +163353,299.57,58.016 +163354,298.91,59.699 +163355,298.32,61.353 +163356,297.81,62.978 +163357,298.35,58.036 +163358,297.63,59.724 +163359,296.99,61.381 +163360,296.42,63.01 +163361,297.13,58.058 +163362,296.35,59.748 +163363,295.65,61.409 +163364,295.03,63.04 +163365,295.9,58.081 +163366,295.07,59.773 +163367,294.32,61.436 +163368,293.64,63.069 +163369,294.68,58.105 +163370,293.79,59.799 +163371,292.98,61.463 +163372,292.26,63.097 +163373,293.46,58.131 +163374,292.51,59.825 +163375,291.65,61.489 +163376,290.87,63.123 +163377,292.23,58.158 +163378,291.22,59.852 +163379,290.31,61.515 +163380,289.49,63.148 +163381,291.01,58.186 +163382,289.94,59.878 +163383,288.98,61.54 +163384,288.11,63.172 +163385,289.78,58.216 +163386,288.66,59.906 +163387,287.65,61.565 +163388,286.72,63.194 +163389,288.55,58.247 +163390,287.38,59.934 +163391,286.31,61.59 +163392,285.34,63.215 +163393,287.33,58.279 +163394,286.1,59.962 +163395,284.98,61.613 +163396,283.96,63.235 +163397,286.1,58.313 +163398,284.81,59.99 +163399,283.65,61.637 +163400,282.58,63.253 +163401,284.87,58.348 +163402,283.53,60.019 +163403,282.31,61.66 +163404,281.2,63.27 +163405,283.64,58.385 +163406,282.25,60.049 +163407,280.98,61.683 +163408,279.82,63.286 +163409,282.4,58.422 +163410,280.96,60.079 +163411,279.65,61.705 +163412,278.44,63.301 +163413,281.17,58.461 +163414,279.68,60.109 +163415,278.32,61.726 +163416,277.06,63.314 +163417,279.94,58.502 +163418,278.39,60.14 +163419,276.98,61.748 +163420,275.69,63.326 +163421,278.7,58.543 +163422,277.11,60.171 +163423,275.65,61.769 +163424,274.31,63.337 +163425,277.46,58.586 +163426,275.82,60.203 +163427,274.32,61.789 +163428,272.94,63.346 +163429,276.23,58.63 +163430,274.54,60.235 +163431,272.99,61.809 +163432,271.56,63.354 +163433,274.99,58.676 +163434,273.25,60.267 +163435,271.66,61.828 +163436,270.19,63.361 +163437,273.75,58.723 +163438,271.96,60.3 +163439,270.33,61.847 +163440,268.82,63.367 +163441,272.5,58.77 +163442,270.68,60.333 +163443,269,61.866 +163444,267.45,63.371 +163445,271.26,58.82 +163446,269.39,60.366 +163447,267.67,61.884 +163448,266.08,63.374 +163449,270.02,58.87 +163450,268.1,60.4 +163451,266.34,61.902 +163452,264.71,63.376 +163453,268.77,58.922 +163454,266.81,60.435 +163455,265.01,61.92 +163456,263.35,63.377 +163457,267.52,58.974 +163458,265.52,60.469 +163459,263.68,61.937 +163460,261.98,63.377 +163461,266.27,59.028 +163462,264.23,60.505 +163463,262.36,61.953 +163464,260.62,63.375 +163465,265.02,59.083 +163466,262.94,60.54 +163467,261.03,61.97 +163468,259.26,63.373 +163469,263.77,59.139 +163470,261.65,60.576 +163471,259.7,61.985 +163472,257.9,63.369 +163473,262.51,59.197 +163474,260.36,60.612 +163475,258.38,62.001 +163476,256.54,63.364 +163477,261.26,59.255 +163478,259.07,60.649 +163479,257.05,62.016 +163480,255.18,63.358 +163481,260,59.315 +163482,257.78,60.685 +163483,255.73,62.031 +163484,253.82,63.351 +163485,258.74,59.375 +163486,256.48,60.723 +163487,254.4,62.045 +163488,252.46,63.343 +163489,257.48,59.437 +163490,255.19,60.76 +163491,253.08,62.059 +163492,251.11,63.334 +163493,256.21,59.499 +163494,253.89,60.798 +163495,251.75,62.073 +163496,249.76,63.324 +163497,254.95,59.563 +163498,252.6,60.836 +163499,250.43,62.086 +163500,248.41,63.313 +163501,253.68,59.627 +163502,251.3,60.875 +163503,249.11,62.099 +163504,247.06,63.301 +163505,252.41,59.693 +163506,250.01,60.913 +163507,247.78,62.112 +163508,245.71,63.288 +163509,251.14,59.759 +163510,248.71,60.953 +163511,246.46,62.124 +163512,244.36,63.274 +163513,249.87,59.826 +163514,247.41,60.992 +163515,245.14,62.136 +163516,243.02,63.259 +163517,248.59,59.895 +163518,246.12,61.032 +163519,243.82,62.147 +163520,241.67,63.243 +163521,247.31,59.964 +163522,244.82,61.072 +163523,242.5,62.159 +163524,240.33,63.227 +163525,246.03,60.034 +163526,243.52,61.112 +163527,241.18,62.17 +163528,238.99,63.209 +163529,244.75,60.104 +163530,242.22,61.152 +163531,239.86,62.181 +163532,237.65,63.191 +163533,243.47,60.176 +163534,240.92,61.193 +163535,238.54,62.191 +163536,236.31,63.172 +163537,242.19,60.248 +163538,239.62,61.234 +163539,237.22,62.202 +163540,234.98,63.152 +163541,240.9,60.321 +163542,238.31,61.275 +163543,235.91,62.211 +163544,233.64,63.131 +163545,239.61,60.394 +163546,237.01,61.316 +163547,234.59,62.221 +163548,232.31,63.11 +163549,238.32,60.468 +163550,235.71,61.358 +163551,233.27,62.231 +163552,230.98,63.088 +163553,237.03,60.543 +163554,234.41,61.4 +163555,231.96,62.24 +163556,229.65,63.065 +163557,235.73,60.619 +163558,233.1,61.442 +163559,230.64,62.249 +163560,228.33,63.042 +163561,234.43,60.695 +163562,231.8,61.484 +163563,229.33,62.258 +163564,227,63.018 +163565,233.13,60.772 +163566,230.49,61.526 +163567,228.01,62.266 +163568,225.68,62.993 +163569,231.83,60.849 +163570,229.18,61.569 +163571,226.7,62.275 +163572,224.35,62.968 +163573,230.53,60.926 +163574,227.88,61.612 +163575,225.39,62.283 +163576,223.03,62.942 +163577,229.22,61.005 +163578,226.57,61.654 +163579,224.07,62.291 +163580,221.72,62.916 +163581,227.92,61.083 +163582,225.26,61.697 +163583,222.76,62.299 +163584,220.4,62.889 +163585,226.61,61.162 +163586,223.95,61.741 +163587,221.45,62.307 +163588,219.08,62.861 +163589,225.29,61.242 +163590,222.64,61.784 +163591,220.14,62.314 +163592,217.77,62.834 +163593,223.98,61.321 +163594,221.33,61.827 +163595,218.83,62.321 +163596,216.46,62.806 +163597,222.66,61.401 +163598,220.02,61.871 +163599,217.52,62.329 +163600,215.15,62.777 +163601,221.35,61.482 +163602,218.71,61.914 +163603,216.21,62.336 +163604,213.84,62.748 +163605,220.03,61.562 +163606,217.39,61.958 +163607,214.9,62.343 +163608,212.54,62.719 +163609,218.71,61.643 +163610,216.08,62.001 +163611,213.6,62.35 +163612,211.23,62.69 +163613,217.38,61.724 +163614,214.77,62.045 +163615,212.29,62.357 +163616,209.93,62.66 +163617,216.06,61.805 +163618,213.45,62.089 +163619,210.98,62.363 +163620,208.63,62.63 +163621,214.73,61.887 +163622,212.14,62.133 +163623,209.68,62.37 +163624,207.33,62.6 +163625,213.4,61.968 +163626,210.82,62.177 +163627,208.37,62.376 +163628,206.03,62.569 +163629,212.07,62.05 +163630,209.51,62.221 +163631,207.07,62.383 +163632,204.74,62.539 +163633,210.73,62.131 +163634,208.19,62.264 +163635,205.76,62.39 +163636,203.44,62.508 +163637,209.4,62.213 +163638,206.87,62.308 +163639,204.46,62.396 +163640,202.15,62.477 +163641,208.06,62.294 +163642,205.55,62.352 +163643,203.16,62.402 +163644,200.86,62.446 +163645,206.72,62.376 +163646,204.23,62.396 +163647,201.85,62.409 +163648,199.57,62.415 +163649,205.38,62.457 +163650,202.91,62.44 +163651,200.55,62.415 +163652,198.29,62.385 +163653,204.04,62.539 +163654,201.59,62.484 +163655,199.25,62.422 +163656,197,62.354 +163657,202.69,62.62 +163658,200.27,62.527 +163659,197.95,62.428 +163660,195.72,62.323 +163661,201.35,62.701 +163662,198.95,62.571 +163663,196.65,62.434 +163664,194.44,62.292 +163665,200,62.782 +163666,197.63,62.615 +163667,195.35,62.441 +163668,193.16,62.262 +163669,198.65,62.862 +163670,196.31,62.658 +163671,194.05,62.447 +163672,191.88,62.231 +163673,197.3,62.943 +163674,194.98,62.702 +163675,192.75,62.454 +163676,190.6,62.201 +163677,195.94,63.023 +163678,193.66,62.745 +163679,191.46,62.461 +163680,189.33,62.171 +163681,194.59,63.102 +163682,192.33,62.788 +163683,190.16,62.467 +163684,188.05,62.141 +163685,193.23,63.182 +163686,191.01,62.832 +163687,188.86,62.474 +163688,186.78,62.112 +163689,191.87,63.261 +163690,189.68,62.875 +163691,187.57,62.481 +163692,185.51,62.082 +163693,190.51,63.339 +163694,188.36,62.917 +163695,186.27,62.488 +163696,184.25,62.053 +163697,189.15,63.418 +163698,187.03,62.96 +163699,184.97,62.495 +163700,182.98,62.025 +163701,187.79,63.495 +163702,185.7,63.003 +163703,183.68,62.502 +163704,181.71,61.997 +163705,186.43,63.573 +163706,184.37,63.045 +163707,182.39,62.51 +163708,180.45,61.969 +163709,185.06,63.65 +163710,183.05,63.087 +163711,181.09,62.517 +163712,179.19,61.942 +163713,183.69,63.726 +163714,181.72,63.129 +163715,179.8,62.525 +163716,177.93,61.915 +163717,182.32,63.801 +163718,180.39,63.171 +163719,178.51,62.533 +163720,176.67,61.888 +163721,180.96,63.877 +163722,179.06,63.213 +163723,177.21,62.541 +163724,175.41,61.862 +163725,179.58,63.951 +163726,177.73,63.254 +163727,175.92,62.549 +163728,174.16,61.837 +163729,178.21,64.025 +163730,176.4,63.295 +163731,174.63,62.557 +163732,172.9,61.812 +163733,176.84,64.098 +163734,175.07,63.336 +163735,173.34,62.566 +163736,171.65,61.788 +163737,175.46,64.17 +163738,173.73,63.377 +163739,172.05,62.575 +163740,170.4,61.765 +163741,174.09,64.242 +163742,172.4,63.418 +163743,170.76,62.583 +163744,169.15,61.742 +163745,172.71,64.313 +163746,171.07,63.458 +163747,169.47,62.593 +163748,167.9,61.72 +163749,171.33,64.384 +163750,169.74,63.498 +163751,168.18,62.602 +163752,166.65,61.698 +163753,169.95,64.453 +163754,168.4,63.537 +163755,166.89,62.612 +163756,165.4,61.677 +163757,168.57,64.522 +163758,167.07,63.577 +163759,165.6,62.622 +163760,164.16,61.657 +163761,167.19,64.59 +163762,165.74,63.616 +163763,164.31,62.632 +163764,162.91,61.638 +163765,165.81,64.656 +163766,164.4,63.655 +163767,163.02,62.642 +163768,161.67,61.62 +163769,164.43,64.723 +163770,163.07,63.693 +163771,161.74,62.653 +163772,160.43,61.602 +163773,163.04,64.788 +163774,161.73,63.732 +163775,160.45,62.664 +163776,159.19,61.586 +163777,161.66,64.852 +163778,160.4,63.77 +163779,159.16,62.675 +163780,157.95,61.57 +163781,160.27,64.915 +163782,159.06,63.807 +163783,157.87,62.686 +163784,156.71,61.555 +163785,158.89,64.978 +163786,157.72,63.845 +163787,156.59,62.698 +163788,155.47,61.541 +163789,157.5,65.039 +163790,156.39,63.882 +163791,155.3,62.71 +163792,154.23,61.528 +163793,156.11,65.1 +163794,155.05,63.918 +163795,154.01,62.723 +163796,153,61.515 +163797,154.72,65.159 +163798,153.72,63.954 +163799,152.73,62.736 +163800,151.76,61.504 +163801,153.34,65.218 +163802,152.38,63.99 +163803,151.44,62.749 +163804,150.53,61.494 +163805,151.95,65.275 +163806,151.04,64.026 +163807,150.16,62.762 +163808,149.3,61.485 +163809,150.56,65.331 +163810,149.7,64.061 +163811,148.87,62.776 +163812,148.06,61.477 +163813,149.17,65.387 +163814,148.37,64.096 +163815,147.59,62.79 +163816,146.83,61.47 +163817,147.77,65.441 +163818,147.03,64.13 +163819,146.3,62.804 +163820,145.6,61.464 +163821,146.38,65.494 +163822,145.69,64.164 +163823,145.02,62.819 +163824,144.37,61.459 +163825,144.99,65.546 +163826,144.35,64.198 +163827,143.73,62.834 +163828,143.14,61.455 +163829,143.6,65.597 +163830,143.01,64.231 +163831,142.45,62.85 +163832,141.91,61.452 +163833,142.21,65.646 +163834,141.67,64.264 +163835,141.16,62.866 +163836,140.68,61.451 +163837,140.82,65.695 +163838,140.33,64.297 +163839,139.88,62.882 +163840,139.45,61.45 +163841,139.42,65.742 +163842,139,64.329 +163843,138.6,62.898 +163844,138.22,61.451 +163845,138.03,65.788 +163846,137.66,64.361 +163847,137.31,62.915 +163848,137,61.453 +163849,136.64,65.833 +163850,136.32,64.392 +163851,136.03,62.933 +163852,135.77,61.456 +163853,135.24,65.877 +163854,134.98,64.423 +163855,134.74,62.95 +163856,134.54,61.46 +163857,133.85,65.92 +163858,133.64,64.453 +163859,133.46,62.969 +163860,133.32,61.466 +163861,132.46,65.961 +163862,132.3,64.484 +163863,132.18,62.987 +163864,132.09,61.472 +163865,131.06,66.001 +163866,130.96,64.513 +163867,130.89,63.006 +163868,130.86,61.48 +163869,129.67,66.04 +163870,129.62,64.542 +163871,129.61,63.025 +163872,129.64,61.49 +163873,128.28,66.078 +163874,128.28,64.571 +163875,128.33,63.045 +163876,128.41,61.5 +163877,126.88,66.114 +163878,126.94,64.6 +163879,127.04,63.065 +163880,127.18,61.512 +163881,125.49,66.149 +163882,125.6,64.628 +163883,125.76,63.086 +163884,125.96,61.525 +163885,124.1,66.183 +163886,124.27,64.655 +163887,124.47,63.107 +163888,124.73,61.539 +163889,122.71,66.216 +163890,122.93,64.682 +163891,123.19,63.128 +163892,123.5,61.554 +163893,121.32,66.247 +163894,121.59,64.709 +163895,121.91,63.15 +163896,122.28,61.571 +163897,119.92,66.278 +163898,120.25,64.735 +163899,120.62,63.172 +163900,121.05,61.589 +163901,118.53,66.307 +163902,118.91,64.761 +163903,119.34,63.194 +163904,119.82,61.608 +163905,117.14,66.334 +163906,117.57,64.786 +163907,118.05,63.217 +163908,118.6,61.628 +163909,115.75,66.361 +163910,116.23,64.811 +163911,116.77,63.241 +163912,117.37,61.65 +163913,114.36,66.386 +163914,114.89,64.836 +163915,115.48,63.264 +163916,116.14,61.673 +163917,112.97,66.41 +163918,113.55,64.86 +163919,114.2,63.289 +163920,114.91,61.698 +163921,111.58,66.432 +163922,112.22,64.883 +163923,112.91,63.313 +163924,113.68,61.723 +163925,110.19,66.453 +163926,110.88,64.906 +163927,111.63,63.338 +163928,112.45,61.75 +163929,108.81,66.474 +163930,109.54,64.929 +163931,110.34,63.364 +163932,111.22,61.778 +163933,107.42,66.492 +163934,108.2,64.951 +163935,109.06,63.39 +163936,109.99,61.808 +163937,106.03,66.51 +163938,106.86,64.973 +163939,107.77,63.416 +163940,108.76,61.839 +163941,104.65,66.526 +163942,105.53,64.995 +163943,106.48,63.443 +163944,107.52,61.871 +163945,103.26,66.541 +163946,104.19,65.016 +163947,105.2,63.47 +163948,106.29,61.904 +163949,101.88,66.555 +163950,102.85,65.036 +163951,103.91,63.497 +163952,105.06,61.938 +163953,100.49,66.568 +163954,101.52,65.056 +163955,102.62,63.525 +163956,103.82,61.974 +163957,99.111,66.579 +163958,100.18,65.076 +163959,101.34,63.553 +163960,102.59,62.011 +163961,97.729,66.589 +163962,98.844,65.096 +163963,100.05,63.582 +163964,101.35,62.049 +163965,96.348,66.598 +163966,97.509,65.114 +163967,98.759,63.611 +163968,100.11,62.089 +163969,94.968,66.606 +163970,96.173,65.133 +163971,97.471,63.641 +163972,98.873,62.129 +163973,93.589,66.613 +163974,94.838,65.151 +163975,96.182,63.67 +163976,97.632,62.171 +163977,92.21,66.618 +163978,93.503,65.169 +163979,94.893,63.701 +163980,96.391,62.214 +163981,90.833,66.622 +163982,92.169,65.186 +163983,93.603,63.731 +163984,95.149,62.259 +163985,89.457,66.625 +163986,90.835,65.203 +163987,92.313,63.762 +163988,93.906,62.304 +163989,88.082,66.627 +163990,89.501,65.219 +163991,91.022,63.794 +163992,92.661,62.35 +163993,86.708,66.628 +163994,88.167,65.235 +163995,89.731,63.825 +163996,91.415,62.398 +163997,85.336,66.628 +163998,86.834,65.251 +163999,88.44,63.857 +164000,90.167,62.447 +164001,83.964,66.626 +164002,85.502,65.267 +164003,87.148,63.89 +164004,88.919,62.497 +164005,82.594,66.624 +164006,84.169,65.281 +164007,85.856,63.923 +164008,87.669,62.548 +164009,81.224,66.62 +164010,82.838,65.296 +164011,84.563,63.956 +164012,86.417,62.6 +164013,79.856,66.615 +164014,81.506,65.31 +164015,83.27,63.989 +164016,85.164,62.653 +164017,78.49,66.609 +164018,80.175,65.324 +164019,81.976,64.023 +164020,83.91,62.707 +164021,77.124,66.603 +164022,78.844,65.338 +164023,80.682,64.057 +164024,82.654,62.763 +164025,75.76,66.595 +164026,77.514,65.351 +164027,79.387,64.092 +164028,81.396,62.819 +164029,74.397,66.586 +164030,76.185,65.364 +164031,78.092,64.127 +164032,80.137,62.876 +164033,73.036,66.576 +164034,74.855,65.376 +164035,76.796,64.162 +164036,78.877,62.934 +164037,71.676,66.565 +164038,73.527,65.388 +164039,75.5,64.197 +164040,77.614,62.994 +164041,70.317,66.554 +164042,72.198,65.4 +164043,74.203,64.233 +164044,76.35,63.054 +164045,68.96,66.541 +164046,70.87,65.411 +164047,72.906,64.269 +164048,75.085,63.115 +164049,67.604,66.528 +164050,69.543,65.423 +164051,71.608,64.305 +164052,73.817,63.177 +164053,66.249,66.513 +164054,68.216,65.433 +164055,70.309,64.342 +164056,72.548,63.239 +164057,64.896,66.498 +164058,66.89,65.444 +164059,69.01,64.379 +164060,71.277,63.303 +164061,63.545,66.482 +164062,65.564,65.454 +164063,67.711,64.416 +164064,70.004,63.367 +164065,62.195,66.465 +164066,64.239,65.464 +164067,66.41,64.453 +164068,68.73,63.433 +164069,60.847,66.447 +164070,62.914,65.474 +164071,65.11,64.491 +164072,67.454,63.499 +164073,59.5,66.428 +164074,61.59,65.483 +164075,63.808,64.529 +164076,66.175,63.566 +164077,58.154,66.409 +164078,60.266,65.493 +164079,62.506,64.567 +164080,64.895,63.633 +164081,56.811,66.389 +164082,58.943,65.501 +164083,61.203,64.605 +164084,63.614,63.701 +164085,55.469,66.368 +164086,57.62,65.51 +164087,59.9,64.644 +164088,62.33,63.77 +164089,54.128,66.347 +164090,56.298,65.519 +164091,58.596,64.683 +164092,61.044,63.84 +164093,52.789,66.324 +164094,54.976,65.527 +164095,57.292,64.722 +164096,59.756,63.91 +164097,51.452,66.302 +164098,53.655,65.535 +164099,55.987,64.761 +164100,58.467,63.981 +164101,50.117,66.278 +164102,52.335,65.543 +164103,54.681,64.8 +164104,57.175,64.052 +164105,48.783,66.254 +164106,51.015,65.55 +164107,53.375,64.84 +164108,55.882,64.124 +164109,47.45,66.23 +164110,49.696,65.557 +164111,52.068,64.88 +164112,54.587,64.196 +164113,46.12,66.204 +164114,48.377,65.565 +164115,50.76,64.92 +164116,53.289,64.269 +164117,44.791,66.179 +164118,47.059,65.572 +164119,49.452,64.96 +164120,51.99,64.343 +164121,43.464,66.153 +164122,45.741,65.579 +164123,48.143,65 +164124,50.689,64.417 +164125,42.138,66.126 +164126,44.424,65.585 +164127,46.833,65.04 +164128,49.385,64.491 +164129,40.815,66.099 +164130,43.108,65.592 +164131,45.523,65.081 +164132,48.08,64.566 +164133,39.493,66.072 +164134,41.792,65.598 +164135,44.212,65.121 +164136,46.773,64.641 +164137,38.172,66.044 +164138,40.477,65.604 +164139,42.901,65.162 +164140,45.463,64.716 +164141,36.854,66.016 +164142,39.162,65.61 +164143,41.588,65.203 +164144,44.152,64.792 +164145,35.537,65.987 +164146,37.848,65.616 +164147,40.276,65.243 +164148,42.839,64.867 +164149,34.222,65.958 +164150,36.534,65.622 +164151,38.962,65.284 +164152,41.524,64.944 +164153,32.908,65.929 +164154,35.222,65.628 +164155,37.648,65.325 +164156,40.207,65.02 +164157,31.597,65.9 +164158,33.909,65.634 +164159,36.333,65.366 +164160,38.888,65.096 +164161,30.287,65.87 +164162,32.597,65.64 +164163,35.018,65.407 +164164,37.567,65.173 +164165,28.979,65.84 +164166,31.286,65.645 +164167,33.702,65.449 +164168,36.244,65.25 +164169,27.673,65.81 +164170,29.976,65.651 +164171,32.385,65.49 +164172,34.919,65.327 +164173,26.368,65.78 +164174,28.666,65.656 +164175,31.068,65.531 +164176,33.592,65.404 +164177,25.065,65.75 +164178,27.356,65.662 +164179,29.75,65.572 +164180,32.263,65.481 +164181,23.764,65.72 +164182,26.047,65.667 +164183,28.431,65.613 +164184,30.933,65.558 +164185,22.465,65.69 +164186,24.739,65.672 +164187,27.112,65.654 +164188,29.6,65.635 +164189,21.167,65.66 +164190,23.431,65.678 +164191,25.792,65.696 +164192,28.266,65.712 +164193,19.871,65.629 +164194,22.124,65.683 +164195,24.472,65.737 +164196,26.929,65.789 +164197,18.577,65.599 +164198,20.818,65.689 +164199,23.151,65.778 +164200,25.591,65.866 +164201,17.284,65.569 +164202,19.512,65.694 +164203,21.829,65.819 +164204,24.251,65.942 +164205,15.994,65.539 +164206,18.206,65.699 +164207,20.507,65.86 +164208,22.909,66.019 +164209,14.705,65.509 +164210,16.902,65.705 +164211,19.184,65.901 +164212,21.566,66.095 +164213,13.417,65.479 +164214,15.597,65.71 +164215,17.861,65.942 +164216,20.221,66.171 +164217,12.131,65.449 +164218,14.293,65.716 +164219,16.537,65.982 +164220,18.874,66.247 +164221,10.847,65.42 +164222,12.99,65.722 +164223,15.212,66.023 +164224,17.525,66.323 +164225,9.5649,65.391 +164226,11.688,65.727 +164227,13.887,66.064 +164228,16.174,66.398 +164229,8.2842,65.362 +164230,10.385,65.733 +164231,12.561,66.104 +164232,14.822,66.473 +164233,7.005,65.333 +164234,9.0838,65.739 +164235,11.234,66.144 +164236,13.468,66.547 +164237,5.7275,65.305 +164238,7.7827,65.745 +164239,9.9075,66.184 +164240,12.113,66.622 +164241,4.4516,65.277 +164242,6.4821,65.751 +164243,8.5801,66.225 +164244,10.756,66.695 +164245,3.1773,65.25 +164246,5.182,65.758 +164247,7.252,66.264 +164248,9.3974,66.769 +164249,1.9045,65.222 +164250,3.8824,65.764 +164251,5.9235,66.304 +164252,8.0373,66.842 +164253,0.63325,65.196 +164254,2.5834,65.771 +164255,4.5944,66.344 +164256,6.6756,66.914 +164257,359.36,65.17 +164258,1.2848,65.777 +164259,3.2648,66.383 +164260,5.3125,66.986 +164261,358.1,65.144 +164262,359.99,65.784 +164263,1.9347,66.422 +164264,3.9479,67.057 +164265,356.83,65.119 +164266,358.69,65.791 +164267,0.60407,66.461 +164268,2.5819,67.128 +164269,355.56,65.094 +164270,357.39,65.798 +164271,359.27,66.5 +164272,1.2145,67.198 +164273,354.3,65.07 +164274,356.1,65.806 +164275,357.94,66.539 +164276,359.85,67.268 +164277,353.04,65.046 +164278,354.8,65.813 +164279,356.61,66.577 +164280,358.48,67.337 +164281,351.78,65.023 +164282,353.5,65.821 +164283,355.28,66.615 +164284,357.1,67.405 +164285,350.52,65.001 +164286,352.21,65.829 +164287,353.94,66.653 +164288,355.73,67.473 +164289,349.26,64.979 +164290,350.91,65.837 +164291,352.61,66.691 +164292,354.36,67.539 +164293,348,64.959 +164294,349.62,65.846 +164295,351.28,66.728 +164296,352.98,67.606 +164297,346.75,64.938 +164298,348.32,65.854 +164299,349.94,66.766 +164300,351.61,67.671 +164301,345.49,64.919 +164302,347.03,65.863 +164303,348.61,66.803 +164304,350.23,67.736 +164305,344.24,64.9 +164306,345.74,65.872 +164307,347.27,66.839 +164308,348.85,67.799 +164309,342.99,64.882 +164310,344.44,65.882 +164311,345.94,66.876 +164312,347.47,67.862 +164313,341.74,64.865 +164314,343.15,65.891 +164315,344.6,66.912 +164316,346.09,67.925 +164317,340.49,64.849 +164318,341.86,65.901 +164319,343.26,66.947 +164320,344.71,67.986 +164321,339.24,64.834 +164322,340.57,65.911 +164323,341.93,66.983 +164324,343.33,68.046 +164325,337.99,64.819 +164326,339.28,65.922 +164327,340.59,67.018 +164328,341.94,68.106 +164329,336.74,64.805 +164330,337.98,65.933 +164331,339.25,67.053 +164332,340.56,68.165 +164333,335.5,64.793 +164334,336.69,65.944 +164335,337.92,67.088 +164336,339.17,68.222 +164337,334.25,64.781 +164338,335.4,65.955 +164339,336.58,67.122 +164340,337.79,68.279 +164341,333.01,64.77 +164342,334.11,65.967 +164343,335.24,67.156 +164344,336.4,68.335 +164345,331.77,64.76 +164346,332.82,65.979 +164347,333.9,67.189 +164348,335.01,68.389 +164349,330.53,64.751 +164350,331.53,65.991 +164351,332.56,67.223 +164352,333.62,68.443 +164353,329.29,64.743 +164354,330.24,66.004 +164355,331.22,67.255 +164356,332.23,68.496 +164357,328.05,64.737 +164358,328.95,66.017 +164359,329.89,67.288 +164360,330.85,68.548 +164361,326.81,64.731 +164362,327.66,66.03 +164363,328.55,67.32 +164364,329.46,68.598 +164365,325.57,64.726 +164366,326.37,66.044 +164367,327.21,67.352 +164368,328.06,68.648 +164369,324.33,64.722 +164370,325.09,66.058 +164371,325.87,67.383 +164372,326.67,68.697 +164373,323.09,64.72 +164374,323.8,66.072 +164375,324.53,67.414 +164376,325.28,68.744 +164377,321.86,64.718 +164378,322.51,66.087 +164379,323.19,67.445 +164380,323.89,68.791 +164381,320.62,64.718 +164382,321.22,66.102 +164383,321.85,67.475 +164384,322.5,68.836 +164385,319.39,64.719 +164386,319.93,66.118 +164387,320.51,67.505 +164388,321.1,68.88 +164389,318.15,64.72 +164390,318.64,66.134 +164391,319.16,67.535 +164392,319.71,68.923 +164393,316.92,64.723 +164394,317.36,66.15 +164395,317.82,67.564 +164396,318.32,68.965 +164397,315.68,64.728 +164398,316.07,66.166 +164399,316.48,67.593 +164400,316.92,69.006 +164401,314.45,64.733 +164402,314.78,66.183 +164403,315.14,67.621 +164404,315.53,69.045 +164405,313.22,64.739 +164406,313.49,66.201 +164407,313.8,67.649 +164408,314.14,69.084 +164409,311.98,64.747 +164410,312.21,66.218 +164411,312.46,67.677 +164412,312.74,69.121 +164413,310.75,64.756 +164414,310.92,66.237 +164415,311.12,67.704 +164416,311.35,69.157 +164417,309.52,64.766 +164418,309.63,66.255 +164419,309.78,67.731 +164420,309.95,69.192 +164421,308.28,64.778 +164422,308.34,66.274 +164423,308.44,67.757 +164424,308.56,69.225 +164425,307.05,64.79 +164426,307.06,66.293 +164427,307.09,67.783 +164428,307.17,69.258 +164429,305.82,64.804 +164430,305.77,66.313 +164431,305.75,67.809 +164432,305.77,69.289 +164433,304.59,64.819 +164434,304.48,66.333 +164435,304.41,67.834 +164436,304.38,69.319 +164437,303.36,64.835 +164438,303.19,66.354 +164439,303.07,67.858 +164440,302.98,69.348 +164441,302.12,64.853 +164442,301.91,66.375 +164443,301.73,67.883 +164444,301.59,69.376 +164445,300.89,64.871 +164446,300.62,66.396 +164447,300.39,67.907 +164448,300.2,69.402 +164449,299.66,64.891 +164450,299.33,66.418 +164451,299.05,67.93 +164452,298.8,69.427 +164453,298.43,64.912 +164454,298.04,66.44 +164455,297.7,67.953 +164456,297.41,69.451 +164457,297.19,64.935 +164458,296.75,66.462 +164459,296.36,67.976 +164460,296.02,69.474 +164461,295.96,64.958 +164462,295.47,66.485 +164463,295.02,67.998 +164464,294.63,69.496 +164465,294.73,64.983 +164466,294.18,66.508 +164467,293.68,68.02 +164468,293.24,69.516 +164469,293.49,65.009 +164470,292.89,66.532 +164471,292.34,68.041 +164472,291.84,69.535 +164473,292.26,65.037 +164474,291.6,66.556 +164475,291,68.062 +164476,290.45,69.553 +164477,291.02,65.065 +164478,290.31,66.581 +164479,289.66,68.083 +164480,289.06,69.57 +164481,289.79,65.095 +164482,289.02,66.606 +164483,288.32,68.103 +164484,287.67,69.586 +164485,288.55,65.126 +164486,287.73,66.631 +164487,286.98,68.123 +164488,286.28,69.6 +164489,287.31,65.158 +164490,286.44,66.657 +164491,285.64,68.142 +164492,284.9,69.613 +164493,286.08,65.192 +164494,285.15,66.683 +164495,284.3,68.161 +164496,283.51,69.625 +164497,284.84,65.226 +164498,283.87,66.709 +164499,282.96,68.179 +164500,282.12,69.636 +164501,283.6,65.262 +164502,282.58,66.736 +164503,281.62,68.197 +164504,280.73,69.645 +164505,282.36,65.299 +164506,281.28,66.763 +164507,280.28,68.215 +164508,279.35,69.654 +164509,281.12,65.337 +164510,279.99,66.791 +164511,278.94,68.233 +164512,277.96,69.661 +164513,279.88,65.377 +164514,278.7,66.819 +164515,277.61,68.249 +164516,276.58,69.667 +164517,278.64,65.417 +164518,277.41,66.847 +164519,276.27,68.266 +164520,275.2,69.672 +164521,277.39,65.459 +164522,276.12,66.876 +164523,274.93,68.282 +164524,273.81,69.676 +164525,276.15,65.502 +164526,274.83,66.905 +164527,273.59,68.298 +164528,272.43,69.679 +164529,274.91,65.546 +164530,273.54,66.935 +164531,272.25,68.313 +164532,271.05,69.68 +164533,273.66,65.591 +164534,272.24,66.965 +164535,270.92,68.328 +164536,269.67,69.681 +164537,272.41,65.637 +164538,270.95,66.995 +164539,269.58,68.343 +164540,268.29,69.68 +164541,271.16,65.684 +164542,269.66,67.025 +164543,268.24,68.357 +164544,266.91,69.678 +164545,269.92,65.733 +164546,268.36,67.056 +164547,266.91,68.371 +164548,265.54,69.676 +164549,268.66,65.782 +164550,267.07,67.088 +164551,265.57,68.385 +164552,264.16,69.672 +164553,267.41,65.832 +164554,265.78,67.119 +164555,264.24,68.398 +164556,262.79,69.667 +164557,266.16,65.884 +164558,264.48,67.151 +164559,262.9,68.411 +164560,261.42,69.661 +164561,264.91,65.936 +164562,263.19,67.184 +164563,261.57,68.423 +164564,260.04,69.654 +164565,263.65,65.99 +164566,261.89,67.216 +164567,260.23,68.435 +164568,258.67,69.646 +164569,262.39,66.044 +164570,260.59,67.249 +164571,258.9,68.447 +164572,257.3,69.638 +164573,261.14,66.1 +164574,259.3,67.282 +164575,257.57,68.459 +164576,255.93,69.628 +164577,259.88,66.156 +164578,258,67.316 +164579,256.23,68.47 +164580,254.57,69.617 +164581,258.61,66.213 +164582,256.7,67.35 +164583,254.9,68.481 +164584,253.2,69.605 +164585,257.35,66.271 +164586,255.4,67.384 +164587,253.57,68.491 +164588,251.84,69.593 +164589,256.09,66.33 +164590,254.1,67.418 +164591,252.24,68.502 +164592,250.47,69.579 +164593,254.82,66.39 +164594,252.81,67.453 +164595,250.91,68.512 +164596,249.11,69.565 +164597,253.55,66.451 +164598,251.51,67.488 +164599,249.58,68.521 +164600,247.75,69.55 +164601,252.29,66.513 +164602,250.21,67.523 +164603,248.25,68.531 +164604,246.39,69.534 +164605,251.01,66.575 +164606,248.9,67.559 +164607,246.92,68.54 +164608,245.03,69.517 +164609,249.74,66.638 +164610,247.6,67.595 +164611,245.59,68.549 +164612,243.68,69.499 +164613,248.47,66.702 +164614,246.3,67.631 +164615,244.26,68.557 +164616,242.32,69.481 +164617,247.19,66.766 +164618,245,67.667 +164619,242.93,68.566 +164620,240.97,69.462 +164621,245.92,66.832 +164622,243.7,67.703 +164623,241.6,68.574 +164624,239.62,69.442 +164625,244.64,66.898 +164626,242.39,67.74 +164627,240.27,68.582 +164628,238.27,69.421 +164629,243.36,66.964 +164630,241.09,67.777 +164631,238.95,68.589 +164632,236.92,69.4 +164633,242.07,67.032 +164634,239.78,67.814 +164635,237.62,68.597 +164636,235.57,69.378 +164637,240.79,67.099 +164638,238.48,67.851 +164639,236.3,68.604 +164640,234.22,69.356 +164641,239.5,67.168 +164642,237.17,67.889 +164643,234.97,68.611 +164644,232.88,69.332 +164645,238.21,67.237 +164646,235.87,67.927 +164647,233.65,68.618 +164648,231.54,69.309 +164649,236.92,67.306 +164650,234.56,67.964 +164651,232.32,68.624 +164652,230.2,69.284 +164653,235.63,67.376 +164654,233.25,68.002 +164655,231,68.631 +164656,228.86,69.26 +164657,234.34,67.447 +164658,231.94,68.041 +164659,229.68,68.637 +164660,227.52,69.234 +164661,233.04,67.517 +164662,230.64,68.079 +164663,228.35,68.643 +164664,226.18,69.208 +164665,231.75,67.589 +164666,229.33,68.117 +164667,227.03,68.649 +164668,224.85,69.182 +164669,230.45,67.661 +164670,228.02,68.156 +164671,225.71,68.655 +164672,223.51,69.155 +164673,229.15,67.733 +164674,226.71,68.195 +164675,224.39,68.66 +164676,222.18,69.128 +164677,227.84,67.805 +164678,225.39,68.234 +164679,223.07,68.666 +164680,220.85,69.101 +164681,226.54,67.878 +164682,224.08,68.273 +164683,221.75,68.671 +164684,219.53,69.073 +164685,225.23,67.951 +164686,222.77,68.312 +164687,220.43,68.676 +164688,218.2,69.045 +164689,223.92,68.024 +164690,221.46,68.351 +164691,219.11,68.682 +164692,216.88,69.016 +164693,222.61,68.097 +164694,220.14,68.39 +164695,217.79,68.687 +164696,215.55,68.987 +164697,221.3,68.171 +164698,218.83,68.429 +164699,216.48,68.692 +164700,214.23,68.958 +164701,219.99,68.245 +164702,217.51,68.468 +164703,215.16,68.697 +164704,212.91,68.929 +164705,218.67,68.319 +164706,216.2,68.508 +164707,213.84,68.702 +164708,211.59,68.899 +164709,217.35,68.393 +164710,214.88,68.547 +164711,212.53,68.706 +164712,210.28,68.87 +164713,216.03,68.467 +164714,213.56,68.587 +164715,211.21,68.711 +164716,208.96,68.84 +164717,214.71,68.542 +164718,212.25,68.626 +164719,209.9,68.716 +164720,207.65,68.81 +164721,213.39,68.616 +164722,210.93,68.666 +164723,208.59,68.72 +164724,206.34,68.78 +164725,212.06,68.69 +164726,209.61,68.705 +164727,207.27,68.725 +164728,205.03,68.75 +164729,210.73,68.764 +164730,208.29,68.744 +164731,205.96,68.73 +164732,203.72,68.72 +164733,209.4,68.839 +164734,206.97,68.784 +164735,204.65,68.735 +164736,202.42,68.69 +164737,208.07,68.913 +164738,205.65,68.823 +164739,203.34,68.739 +164740,201.11,68.66 +164741,206.74,68.987 +164742,204.33,68.863 +164743,202.02,68.744 +164744,199.81,68.63 +164745,205.41,69.061 +164746,203.01,68.902 +164747,200.71,68.749 +164748,198.51,68.6 +164749,204.07,69.134 +164750,201.69,68.941 +164751,199.4,68.753 +164752,197.21,68.57 +164753,202.73,69.208 +164754,200.36,68.981 +164755,198.09,68.758 +164756,195.91,68.541 +164757,201.39,69.281 +164758,199.04,69.02 +164759,196.79,68.763 +164760,194.62,68.511 +164761,200.05,69.354 +164762,197.71,69.059 +164763,195.48,68.768 +164764,193.32,68.482 +164765,198.7,69.427 +164766,196.39,69.098 +164767,194.17,68.773 +164768,192.03,68.453 +164769,197.36,69.499 +164770,195.06,69.137 +164771,192.86,68.778 +164772,190.74,68.424 +164773,196.01,69.572 +164774,193.74,69.175 +164775,191.56,68.783 +164776,189.45,68.396 +164777,194.66,69.643 +164778,192.41,69.214 +164779,190.25,68.789 +164780,188.16,68.368 +164781,193.31,69.715 +164782,191.08,69.253 +164783,188.94,68.794 +164784,186.88,68.34 +164785,191.96,69.786 +164786,189.76,69.291 +164787,187.64,68.8 +164788,185.59,68.312 +164789,190.61,69.856 +164790,188.43,69.329 +164791,186.33,68.805 +164792,184.31,68.285 +164793,189.25,69.927 +164794,187.1,69.367 +164795,185.03,68.811 +164796,183.03,68.258 +164797,187.89,69.996 +164798,185.77,69.405 +164799,183.73,68.817 +164800,181.75,68.232 +164801,186.53,70.065 +164802,184.44,69.443 +164803,182.42,68.823 +164804,180.47,68.206 +164805,185.17,70.134 +164806,183.11,69.48 +164807,181.12,68.829 +164808,179.19,68.181 +164809,183.81,70.202 +164810,181.78,69.518 +164811,179.82,68.836 +164812,177.92,68.156 +164813,182.45,70.269 +164814,180.45,69.555 +164815,178.52,68.842 +164816,176.65,68.132 +164817,181.09,70.336 +164818,179.12,69.592 +164819,177.22,68.849 +164820,175.37,68.108 +164821,179.72,70.402 +164822,177.79,69.629 +164823,175.92,68.856 +164824,174.1,68.085 +164825,178.35,70.468 +164826,176.45,69.665 +164827,174.62,68.863 +164828,172.83,68.063 +164829,176.98,70.533 +164830,175.12,69.702 +164831,173.32,68.871 +164832,171.57,68.041 +164833,175.61,70.597 +164834,173.79,69.738 +164835,172.02,68.878 +164836,170.3,68.02 +164837,174.24,70.661 +164838,172.45,69.774 +164839,170.72,68.886 +164840,169.03,67.999 +164841,172.87,70.723 +164842,171.12,69.809 +164843,169.42,68.894 +164844,167.77,67.98 +164845,171.5,70.785 +164846,169.78,69.845 +164847,168.12,68.903 +164848,166.51,67.961 +164849,170.12,70.847 +164850,168.45,69.88 +164851,166.82,68.911 +164852,165.25,67.942 +164853,168.74,70.907 +164854,167.11,69.915 +164855,165.53,68.92 +164856,163.99,67.925 +164857,167.37,70.967 +164858,165.77,69.949 +164859,164.23,68.929 +164860,162.73,67.908 +164861,165.99,71.025 +164862,164.44,69.983 +164863,162.93,68.939 +164864,161.47,67.893 +164865,164.61,71.083 +164866,163.1,70.017 +164867,161.64,68.948 +164868,160.21,67.878 +164869,163.23,71.14 +164870,161.76,70.051 +164871,160.34,68.958 +164872,158.96,67.864 +164873,161.85,71.196 +164874,160.43,70.084 +164875,159.05,68.969 +164876,157.7,67.85 +164877,160.47,71.252 +164878,159.09,70.118 +164879,157.75,68.979 +164880,156.45,67.838 +164881,159.08,71.306 +164882,157.75,70.15 +164883,156.46,68.99 +164884,155.2,67.827 +164885,157.7,71.359 +164886,156.41,70.183 +164887,155.16,69.001 +164888,153.95,67.816 +164889,156.31,71.412 +164890,155.07,70.215 +164891,153.87,69.013 +164892,152.7,67.807 +164893,154.93,71.463 +164894,153.73,70.247 +164895,152.57,69.025 +164896,151.45,67.798 +164897,153.54,71.513 +164898,152.39,70.278 +164899,151.28,69.037 +164900,150.2,67.791 +164901,152.15,71.563 +164902,151.05,70.309 +164903,149.99,69.049 +164904,148.95,67.784 +164905,150.76,71.611 +164906,149.71,70.34 +164907,148.69,69.062 +164908,147.7,67.779 +164909,149.38,71.658 +164910,148.37,70.37 +164911,147.4,69.075 +164912,146.46,67.775 +164913,147.99,71.705 +164914,147.03,70.401 +164915,146.11,69.089 +164916,145.21,67.771 +164917,146.6,71.75 +164918,145.69,70.43 +164919,144.82,69.103 +164920,143.97,67.769 +164921,145.2,71.794 +164922,144.35,70.46 +164923,143.52,69.117 +164924,142.73,67.768 +164925,143.81,71.837 +164926,143.01,70.489 +164927,142.23,69.132 +164928,141.48,67.768 +164929,142.42,71.879 +164930,141.67,70.517 +164931,140.94,69.147 +164932,140.24,67.769 +164933,141.03,71.92 +164934,140.32,70.545 +164935,139.65,69.162 +164936,139,67.771 +164937,139.64,71.96 +164938,138.98,70.573 +164939,138.36,69.178 +164940,137.76,67.774 +164941,138.24,71.998 +164942,137.64,70.601 +164943,137.06,69.194 +164944,136.52,67.779 +164945,136.85,72.036 +164946,136.3,70.628 +164947,135.77,69.21 +164948,135.28,67.784 +164949,135.46,72.072 +164950,134.96,70.655 +164951,134.48,69.227 +164952,134.04,67.791 +164953,134.06,72.107 +164954,133.61,70.681 +164955,133.19,69.244 +164956,132.8,67.799 +164957,132.67,72.142 +164958,132.27,70.707 +164959,131.9,69.262 +164960,131.56,67.808 +164961,131.28,72.174 +164962,130.93,70.732 +164963,130.61,69.28 +164964,130.32,67.818 +164965,129.88,72.206 +164966,129.58,70.757 +164967,129.32,69.298 +164968,129.08,67.83 +164969,128.49,72.237 +164970,128.24,70.782 +164971,128.03,69.317 +164972,127.84,67.843 +164973,127.09,72.266 +164974,126.9,70.807 +164975,126.74,69.336 +164976,126.61,67.857 +164977,125.7,72.295 +164978,125.56,70.831 +164979,125.45,69.356 +164980,125.37,67.872 +164981,124.3,72.322 +164982,124.21,70.854 +164983,124.16,69.376 +164984,124.13,67.888 +164985,122.91,72.347 +164986,122.87,70.877 +164987,122.86,69.396 +164988,122.89,67.906 +164989,121.52,72.372 +164990,121.53,70.9 +164991,121.57,69.417 +164992,121.66,67.924 +164993,120.12,72.396 +164994,120.18,70.922 +164995,120.28,69.438 +164996,120.42,67.944 +164997,118.73,72.418 +164998,118.84,70.944 +164999,118.99,69.46 +165000,119.18,67.966 +165001,117.33,72.439 +165002,117.5,70.966 +165003,117.7,69.482 +165004,117.94,67.988 +165005,115.94,72.459 +165006,116.16,70.987 +165007,116.41,69.504 +165008,116.71,68.012 +165009,114.55,72.478 +165010,114.81,71.008 +165011,115.12,69.527 +165012,115.47,68.037 +165013,113.15,72.496 +165014,113.47,71.028 +165015,113.83,69.55 +165016,114.23,68.063 +165017,111.76,72.512 +165018,112.13,71.048 +165019,112.54,69.574 +165020,112.99,68.09 +165021,110.37,72.527 +165022,110.79,71.068 +165023,111.25,69.598 +165024,111.75,68.118 +165025,108.98,72.541 +165026,109.44,71.087 +165027,109.95,69.622 +165028,110.51,68.148 +165029,107.59,72.554 +165030,108.1,71.106 +165031,108.66,69.647 +165032,109.27,68.179 +165033,106.19,72.566 +165034,106.76,71.124 +165035,107.37,69.672 +165036,108.03,68.211 +165037,104.8,72.577 +165038,105.42,71.142 +165039,106.08,69.697 +165040,106.79,68.245 +165041,103.41,72.586 +165042,104.08,71.159 +165043,104.79,69.723 +165044,105.55,68.279 +165045,102.03,72.594 +165046,102.73,71.177 +165047,103.49,69.75 +165048,104.31,68.315 +165049,100.64,72.601 +165050,101.39,71.193 +165051,102.2,69.776 +165052,103.07,68.352 +165053,99.249,72.608 +165054,100.05,71.21 +165055,100.91,69.803 +165056,101.82,68.39 +165057,97.862,72.612 +165058,98.711,71.226 +165059,99.616,69.831 +165060,100.58,68.429 +165061,96.475,72.616 +165062,97.371,71.242 +165063,98.323,69.859 +165064,99.336,68.469 +165065,95.089,72.619 +165066,96.03,71.257 +165067,97.029,69.887 +165068,98.091,68.511 +165069,93.704,72.621 +165070,94.69,71.272 +165071,95.735,69.916 +165072,96.845,68.553 +165073,92.32,72.621 +165074,93.35,71.286 +165075,94.441,69.944 +165076,95.599,68.597 +165077,90.937,72.621 +165078,92.01,71.301 +165079,93.147,69.974 +165080,94.351,68.642 +165081,89.554,72.619 +165082,90.671,71.315 +165083,91.852,70.003 +165084,93.103,68.687 +165085,88.173,72.616 +165086,89.332,71.328 +165087,90.557,70.033 +165088,91.853,68.734 +165089,86.792,72.613 +165090,87.993,71.341 +165091,89.261,70.064 +165092,90.603,68.782 +165093,85.413,72.608 +165094,86.655,71.354 +165095,87.966,70.095 +165096,89.351,68.831 +165097,84.034,72.602 +165098,85.317,71.366 +165099,86.669,70.126 +165100,88.099,68.881 +165101,82.657,72.595 +165102,83.979,71.379 +165103,85.373,70.157 +165104,86.845,68.933 +165105,81.28,72.588 +165106,82.641,71.39 +165107,84.076,70.189 +165108,85.591,68.985 +165109,79.905,72.579 +165110,81.304,71.402 +165111,82.779,70.221 +165112,84.335,69.038 +165113,78.53,72.57 +165114,79.968,71.413 +165115,81.481,70.253 +165116,83.078,69.092 +165117,77.157,72.559 +165118,78.631,71.424 +165119,80.183,70.286 +165120,81.819,69.147 +165121,75.785,72.548 +165122,77.295,71.434 +165123,78.884,70.319 +165124,80.56,69.202 +165125,74.414,72.535 +165126,75.96,71.445 +165127,77.585,70.352 +165128,79.299,69.259 +165129,73.044,72.522 +165130,74.625,71.455 +165131,76.286,70.386 +165132,78.037,69.317 +165133,71.676,72.508 +165134,73.29,71.464 +165135,74.986,70.419 +165136,76.773,69.375 +165137,70.309,72.493 +165138,71.955,71.474 +165139,73.686,70.454 +165140,75.509,69.435 +165141,68.943,72.477 +165142,70.622,71.483 +165143,72.385,70.488 +165144,74.242,69.495 +165145,67.578,72.461 +165146,69.288,71.492 +165147,71.084,70.523 +165148,72.975,69.556 +165149,66.215,72.443 +165150,67.955,71.5 +165151,69.782,70.557 +165152,71.705,69.617 +165153,64.853,72.425 +165154,66.622,71.509 +165155,68.48,70.593 +165156,70.435,69.68 +165157,63.493,72.407 +165158,65.29,71.517 +165159,67.177,70.628 +165160,69.162,69.743 +165161,62.133,72.387 +165162,63.959,71.524 +165163,65.874,70.664 +165164,67.889,69.807 +165165,60.776,72.367 +165166,62.627,71.532 +165167,64.57,70.7 +165168,66.613,69.872 +165169,59.419,72.346 +165170,61.297,71.539 +165171,63.265,70.736 +165172,65.337,69.937 +165173,58.064,72.324 +165174,59.966,71.547 +165175,61.961,70.772 +165176,64.058,70.003 +165177,56.711,72.302 +165178,58.637,71.553 +165179,60.655,70.809 +165180,62.778,70.069 +165181,55.359,72.279 +165182,57.307,71.56 +165183,59.349,70.845 +165184,61.496,70.136 +165185,54.009,72.256 +165186,55.979,71.567 +165187,58.043,70.882 +165188,60.213,70.204 +165189,52.66,72.232 +165190,54.65,71.573 +165191,56.736,70.919 +165192,58.928,70.272 +165193,51.312,72.208 +165194,53.323,71.579 +165195,55.428,70.957 +165196,57.641,70.341 +165197,49.966,72.183 +165198,51.995,71.585 +165199,54.12,70.994 +165200,56.352,70.41 +165201,48.622,72.157 +165202,50.669,71.591 +165203,52.811,71.032 +165204,55.062,70.48 +165205,47.279,72.131 +165206,49.343,71.597 +165207,51.502,71.069 +165208,53.77,70.55 +165209,45.938,72.105 +165210,48.017,71.603 +165211,50.192,71.107 +165212,52.476,70.621 +165213,44.598,72.078 +165214,46.692,71.608 +165215,48.882,71.145 +165216,51.181,70.691 +165217,43.26,72.051 +165218,45.367,71.613 +165219,47.571,71.183 +165220,49.883,70.763 +165221,41.923,72.023 +165222,44.043,71.618 +165223,46.259,71.222 +165224,48.584,70.834 +165225,40.588,71.995 +165226,42.72,71.624 +165227,44.947,71.26 +165228,47.283,70.906 +165229,39.255,71.967 +165230,41.397,71.629 +165231,43.634,71.298 +165232,45.981,70.978 +165233,37.924,71.939 +165234,40.074,71.633 +165235,42.32,71.337 +165236,44.676,71.051 +165237,36.594,71.91 +165238,38.752,71.638 +165239,41.006,71.375 +165240,43.37,71.123 +165241,35.265,71.881 +165242,37.431,71.643 +165243,39.692,71.414 +165244,42.062,71.196 +165245,33.938,71.852 +165246,36.11,71.648 +165247,38.377,71.453 +165248,40.752,71.269 +165249,32.613,71.823 +165250,34.79,71.652 +165251,37.061,71.492 +165252,39.44,71.342 +165253,31.29,71.793 +165254,33.47,71.657 +165255,35.744,71.53 +165256,38.126,71.415 +165257,29.968,71.763 +165258,32.151,71.661 +165259,34.427,71.569 +165260,36.811,71.488 +165261,28.648,71.734 +165262,30.833,71.666 +165263,33.11,71.608 +165264,35.493,71.562 +165265,27.33,71.704 +165266,29.515,71.67 +165267,31.791,71.647 +165268,34.174,71.635 +165269,26.013,71.674 +165270,28.197,71.675 +165271,30.473,71.686 +165272,32.853,71.708 +165273,24.698,71.644 +165274,26.88,71.679 +165275,29.153,71.725 +165276,31.53,71.782 +165277,23.384,71.615 +165278,25.564,71.684 +165279,27.833,71.764 +165280,30.206,71.855 +165281,22.072,71.585 +165282,24.248,71.688 +165283,26.513,71.802 +165284,28.879,71.928 +165285,20.762,71.555 +165286,22.933,71.693 +165287,25.191,71.841 +165288,27.551,72.001 +165289,19.454,71.526 +165290,21.618,71.698 +165291,23.869,71.88 +165292,26.221,72.074 +165293,18.147,71.496 +165294,20.304,71.702 +165295,22.547,71.919 +165296,24.889,72.147 +165297,16.841,71.467 +165298,18.991,71.707 +165299,21.224,71.957 +165300,23.555,72.219 +165301,15.538,71.438 +165302,17.678,71.712 +165303,19.9,71.996 +165304,22.22,72.291 +165305,14.236,71.409 +165306,16.365,71.717 +165307,18.576,72.034 +165308,20.883,72.363 +165309,12.935,71.38 +165310,15.053,71.722 +165311,17.251,72.073 +165312,19.544,72.435 +165313,11.637,71.352 +165314,13.742,71.727 +165315,15.926,72.111 +165316,18.203,72.507 +165317,10.34,71.324 +165318,12.431,71.732 +165319,14.6,72.149 +165320,16.861,72.578 +165321,9.044,71.296 +165322,11.12,71.737 +165323,13.274,72.187 +165324,15.517,72.648 +165325,7.75,71.269 +165326,9.8105,71.742 +165327,11.947,72.225 +165328,14.171,72.719 +165329,6.4576,71.242 +165330,8.5011,71.748 +165331,10.619,72.263 +165332,12.824,72.789 +165333,5.1668,71.215 +165334,7.1923,71.753 +165335,9.2909,72.301 +165336,11.475,72.858 +165337,3.8775,71.189 +165338,5.884,71.759 +165339,7.9622,72.339 +165340,10.124,72.927 +165341,2.5898,71.163 +165342,4.5762,71.765 +165343,6.633,72.376 +165344,8.7716,72.996 +165345,1.3036,71.138 +165346,3.2689,71.771 +165347,5.3032,72.413 +165348,7.4177,73.064 +165349,0.018841,71.113 +165350,1.9621,71.777 +165351,3.9728,72.45 +165352,6.0623,73.131 +165353,358.74,71.089 +165354,0.65573,71.784 +165355,2.642,72.487 +165356,4.7052,73.198 +165357,357.45,71.065 +165358,359.35,71.791 +165359,1.3106,72.524 +165360,3.3467,73.265 +165361,356.17,71.042 +165362,358.04,71.797 +165363,359.98,72.56 +165364,1.9867,73.331 +165365,354.89,71.02 +165366,356.74,71.804 +165367,358.65,72.596 +165368,0.62514,73.396 +165369,353.62,70.998 +165370,355.44,71.812 +165371,357.31,72.633 +165372,359.26,73.46 +165373,352.34,70.977 +165374,354.13,71.819 +165375,355.98,72.668 +165376,357.9,73.524 +165377,351.07,70.956 +165378,352.83,71.827 +165379,354.65,72.704 +165380,356.53,73.587 +165381,349.79,70.936 +165382,351.52,71.835 +165383,353.31,72.739 +165384,355.16,73.65 +165385,348.52,70.917 +165386,350.22,71.843 +165387,351.98,72.774 +165388,353.8,73.711 +165389,347.25,70.899 +165390,348.92,71.851 +165391,350.64,72.809 +165392,352.43,73.772 +165393,345.98,70.881 +165394,347.62,71.86 +165395,349.31,72.844 +165396,351.06,73.832 +165397,344.71,70.864 +165398,346.32,71.869 +165399,347.97,72.878 +165400,349.68,73.892 +165401,343.45,70.848 +165402,345.02,71.878 +165403,346.63,72.912 +165404,348.31,73.95 +165405,342.18,70.833 +165406,343.71,71.888 +165407,345.3,72.946 +165408,346.93,74.008 +165409,340.92,70.819 +165410,342.41,71.898 +165411,343.96,72.98 +165412,345.56,74.065 +165413,339.65,70.806 +165414,341.11,71.908 +165415,342.62,73.013 +165416,344.18,74.12 +165417,338.39,70.793 +165418,339.81,71.918 +165419,341.28,73.046 +165420,342.8,74.175 +165421,337.13,70.781 +165422,338.52,71.929 +165423,339.95,73.078 +165424,341.42,74.23 +165425,335.87,70.771 +165426,337.22,71.94 +165427,338.61,73.111 +165428,340.04,74.283 +165429,334.61,70.761 +165430,335.92,71.951 +165431,337.27,73.143 +165432,338.66,74.335 +165433,333.35,70.752 +165434,334.62,71.963 +165435,335.93,73.175 +165436,337.28,74.386 +165437,332.1,70.744 +165438,333.32,71.975 +165439,334.59,73.206 +165440,335.9,74.437 +165441,330.84,70.738 +165442,332.02,71.987 +165443,333.25,73.237 +165444,334.51,74.486 +165445,329.59,70.732 +165446,330.73,72 +165447,331.91,73.268 +165448,333.13,74.534 +165449,328.33,70.727 +165450,329.43,72.013 +165451,330.57,73.298 +165452,331.74,74.582 +165453,327.08,70.723 +165454,328.13,72.026 +165455,329.22,73.328 +165456,330.36,74.628 +165457,325.83,70.721 +165458,326.84,72.04 +165459,327.88,73.358 +165460,328.97,74.673 +165461,324.58,70.719 +165462,325.54,72.054 +165463,326.54,73.387 +165464,327.58,74.718 +165465,323.32,70.719 +165466,324.24,72.068 +165467,325.2,73.416 +165468,326.19,74.761 +165469,322.07,70.719 +165470,322.95,72.083 +165471,323.86,73.445 +165472,324.8,74.803 +165473,320.82,70.721 +165474,321.65,72.098 +165475,322.52,73.473 +165476,323.41,74.844 +165477,319.58,70.724 +165478,320.36,72.114 +165479,321.17,73.501 +165480,322.02,74.884 +165481,318.33,70.728 +165482,319.06,72.13 +165483,319.83,73.528 +165484,320.63,74.922 +165485,317.08,70.733 +165486,317.77,72.146 +165487,318.49,73.555 +165488,319.24,74.96 +165489,315.83,70.74 +165490,316.47,72.163 +165491,317.14,73.582 +165492,317.85,74.997 +165493,314.59,70.747 +165494,315.18,72.18 +165495,315.8,73.609 +165496,316.46,75.032 +165497,313.34,70.756 +165498,313.88,72.197 +165499,314.46,73.635 +165500,315.06,75.066 +165501,312.1,70.766 +165502,312.59,72.215 +165503,313.11,73.66 +165504,313.67,75.1 +165505,310.85,70.777 +165506,311.29,72.233 +165507,311.77,73.685 +165508,312.28,75.132 +165509,309.61,70.789 +165510,310,72.252 +165511,310.43,73.71 +165512,310.88,75.162 +165513,308.36,70.802 +165514,308.71,72.271 +165515,309.08,73.735 +165516,309.49,75.192 +165517,307.12,70.817 +165518,307.41,72.29 +165519,307.74,73.759 +165520,308.09,75.221 +165521,305.87,70.833 +165522,306.12,72.31 +165523,306.39,73.782 +165524,306.7,75.248 +165525,304.63,70.85 +165526,304.82,72.33 +165527,305.05,73.806 +165528,305.31,75.274 +165529,303.39,70.868 +165530,303.53,72.351 +165531,303.7,73.829 +165532,303.91,75.299 +165533,302.14,70.888 +165534,302.24,72.372 +165535,302.36,73.851 +165536,302.52,75.323 +165537,300.9,70.908 +165538,300.94,72.394 +165539,301.02,73.873 +165540,301.12,75.346 +165541,299.66,70.93 +165542,299.65,72.415 +165543,299.67,73.895 +165544,299.73,75.367 +165545,298.42,70.954 +165546,298.35,72.438 +165547,298.33,73.916 +165548,298.33,75.388 +165549,297.17,70.978 +165550,297.06,72.46 +165551,296.98,73.937 +165552,296.94,75.407 +165553,295.93,71.004 +165554,295.77,72.483 +165555,295.64,73.958 +165556,295.54,75.425 +165557,294.69,71.03 +165558,294.47,72.507 +165559,294.29,73.978 +165560,294.15,75.442 +165561,293.44,71.058 +165562,293.18,72.531 +165563,292.95,73.998 +165564,292.76,75.458 +165565,292.2,71.088 +165566,291.88,72.555 +165567,291.61,74.017 +165568,291.36,75.472 +165569,290.96,71.118 +165570,290.59,72.58 +165571,290.26,74.036 +165572,289.97,75.485 +165573,289.71,71.15 +165574,289.3,72.605 +165575,288.92,74.055 +165576,288.58,75.498 +165577,288.47,71.183 +165578,288,72.63 +165579,287.57,74.073 +165580,287.18,75.509 +165581,287.22,71.217 +165582,286.71,72.656 +165583,286.23,74.091 +165584,285.79,75.519 +165585,285.98,71.252 +165586,285.41,72.682 +165587,284.89,74.108 +165588,284.4,75.527 +165589,284.73,71.288 +165590,284.12,72.709 +165591,283.54,74.125 +165592,283.01,75.535 +165593,283.49,71.326 +165594,282.82,72.736 +165595,282.2,74.142 +165596,281.62,75.542 +165597,282.24,71.365 +165598,281.53,72.763 +165599,280.86,74.158 +165600,280.23,75.547 +165601,280.99,71.405 +165602,280.23,72.791 +165603,279.51,74.174 +165604,278.84,75.551 +165605,279.75,71.446 +165606,278.93,72.819 +165607,278.17,74.19 +165608,277.45,75.555 +165609,278.5,71.488 +165610,277.64,72.848 +165611,276.83,74.205 +165612,276.06,75.557 +165613,277.25,71.531 +165614,276.34,72.877 +165615,275.48,74.22 +165616,274.67,75.558 +165617,276,71.576 +165618,275.05,72.906 +165619,274.14,74.234 +165620,273.29,75.558 +165621,274.75,71.621 +165622,273.75,72.936 +165623,272.8,74.248 +165624,271.9,75.557 +165625,273.5,71.668 +165626,272.45,72.966 +165627,271.46,74.262 +165628,270.51,75.555 +165629,272.25,71.715 +165630,271.15,72.996 +165631,270.12,74.276 +165632,269.13,75.552 +165633,271,71.764 +165634,269.86,73.027 +165635,268.77,74.289 +165636,267.74,75.548 +165637,269.74,71.814 +165638,268.56,73.058 +165639,267.43,74.301 +165640,266.36,75.542 +165641,268.49,71.865 +165642,267.26,73.089 +165643,266.09,74.314 +165644,264.98,75.536 +165645,267.23,71.916 +165646,265.96,73.121 +165647,264.75,74.326 +165648,263.6,75.529 +165649,265.98,71.969 +165650,264.66,73.153 +165651,263.41,74.338 +165652,262.22,75.521 +165653,264.72,72.023 +165654,263.36,73.186 +165655,262.07,74.349 +165656,260.84,75.512 +165657,263.46,72.078 +165658,262.06,73.218 +165659,260.73,74.36 +165660,259.46,75.502 +165661,262.2,72.133 +165662,260.76,73.251 +165663,259.39,74.371 +165664,258.08,75.491 +165665,260.94,72.19 +165666,259.46,73.285 +165667,258.05,74.382 +165668,256.71,75.479 +165669,259.68,72.247 +165670,258.16,73.318 +165671,256.72,74.392 +165672,255.33,75.467 +165673,258.42,72.306 +165674,256.86,73.352 +165675,255.38,74.402 +165676,253.96,75.453 +165677,257.15,72.365 +165678,255.56,73.387 +165679,254.04,74.412 +165680,252.58,75.439 +165681,255.89,72.425 +165682,254.26,73.421 +165683,252.7,74.421 +165684,251.21,75.424 +165685,254.62,72.486 +165686,252.96,73.456 +165687,251.36,74.43 +165688,249.84,75.408 +165689,253.35,72.548 +165690,251.65,73.491 +165691,250.03,74.439 +165692,248.47,75.391 +165693,252.09,72.61 +165694,250.35,73.526 +165695,248.69,74.448 +165696,247.1,75.374 +165697,250.82,72.673 +165698,249.05,73.562 +165699,247.36,74.456 +165700,245.74,75.355 +165701,249.54,72.737 +165702,247.74,73.598 +165703,246.02,74.465 +165704,244.37,75.336 +165705,248.27,72.802 +165706,246.44,73.634 +165707,244.69,74.473 +165708,243,75.317 +165709,247,72.867 +165710,245.13,73.67 +165711,243.35,74.48 +165712,241.64,75.296 +165713,245.72,72.933 +165714,243.83,73.706 +165715,242.02,74.488 +165716,240.28,75.275 +165717,244.44,73 +165718,242.52,73.743 +165719,240.68,74.495 +165720,238.92,75.254 +165721,243.16,73.067 +165722,241.22,73.78 +165723,239.35,74.502 +165724,237.56,75.232 +165725,241.88,73.135 +165726,239.91,73.817 +165727,238.02,74.509 +165728,236.2,75.209 +165729,240.6,73.204 +165730,238.6,73.855 +165731,236.68,74.516 +165732,234.85,75.185 +165733,239.32,73.273 +165734,237.29,73.892 +165735,235.35,74.522 +165736,233.49,75.161 +165737,238.03,73.342 +165738,235.98,73.93 +165739,234.02,74.529 +165740,232.14,75.137 +165741,236.75,73.412 +165742,234.67,73.968 +165743,232.69,74.535 +165744,230.78,75.112 +165745,235.46,73.482 +165746,233.36,74.006 +165747,231.36,74.541 +165748,229.43,75.086 +165749,234.17,73.553 +165750,232.05,74.044 +165751,230.03,74.547 +165752,228.09,75.06 +165753,232.88,73.624 +165754,230.74,74.082 +165755,228.7,74.553 +165756,226.74,75.034 +165757,231.59,73.696 +165758,229.43,74.12 +165759,227.37,74.558 +165760,225.39,75.007 +165761,230.29,73.768 +165762,228.12,74.159 +165763,226.04,74.564 +165764,224.05,74.98 +165765,228.99,73.84 +165766,226.81,74.198 +165767,224.71,74.569 +165768,222.7,74.953 +165769,227.7,73.913 +165770,225.5,74.237 +165771,223.39,74.575 +165772,221.36,74.925 +165773,226.4,73.986 +165774,224.18,74.275 +165775,222.06,74.58 +165776,220.02,74.897 +165777,225.09,74.059 +165778,222.87,74.314 +165779,220.73,74.585 +165780,218.68,74.869 +165781,223.79,74.132 +165782,221.55,74.353 +165783,219.41,74.59 +165784,217.35,74.84 +165785,222.49,74.205 +165786,220.24,74.392 +165787,218.08,74.595 +165788,216.01,74.812 +165789,221.18,74.279 +165790,218.92,74.432 +165791,216.76,74.6 +165792,214.68,74.783 +165793,219.87,74.353 +165794,217.61,74.471 +165795,215.43,74.605 +165796,213.34,74.754 +165797,218.56,74.427 +165798,216.29,74.51 +165799,214.11,74.61 +165800,212.01,74.724 +165801,217.25,74.501 +165802,214.97,74.549 +165803,212.79,74.615 +165804,210.68,74.695 +165805,215.94,74.575 +165806,213.65,74.589 +165807,211.46,74.62 +165808,209.36,74.666 +165809,214.62,74.649 +165810,212.33,74.628 +165811,210.14,74.625 +165812,208.03,74.636 +165813,213.3,74.722 +165814,211.01,74.667 +165815,208.82,74.63 +165816,206.71,74.607 +165817,211.98,74.796 +165818,209.69,74.707 +165819,207.5,74.634 +165820,205.38,74.577 +165821,210.66,74.87 +165822,208.37,74.746 +165823,206.18,74.639 +165824,204.06,74.548 +165825,209.34,74.944 +165826,207.05,74.785 +165827,204.86,74.644 +165828,202.74,74.518 +165829,208.02,75.018 +165830,205.73,74.825 +165831,203.54,74.649 +165832,201.43,74.489 +165833,206.69,75.091 +165834,204.41,74.864 +165835,202.22,74.654 +165836,200.11,74.46 +165837,205.36,75.165 +165838,203.09,74.903 +165839,200.9,74.659 +165840,198.8,74.431 +165841,204.03,75.238 +165842,201.76,74.942 +165843,199.58,74.664 +165844,197.48,74.402 +165845,202.7,75.31 +165846,200.44,74.981 +165847,198.27,74.669 +165848,196.17,74.373 +165849,201.37,75.383 +165850,199.11,75.02 +165851,196.95,74.675 +165852,194.86,74.345 +165853,200.04,75.455 +165854,197.79,75.059 +165855,195.63,74.68 +165856,193.55,74.317 +165857,198.7,75.527 +165858,196.46,75.098 +165859,194.32,74.685 +165860,192.25,74.289 +165861,197.36,75.599 +165862,195.14,75.136 +165863,193,74.691 +165864,190.94,74.261 +165865,196.02,75.67 +165866,193.81,75.175 +165867,191.69,74.697 +165868,189.64,74.234 +165869,194.68,75.741 +165870,192.48,75.213 +165871,190.37,74.703 +165872,188.34,74.207 +165873,193.34,75.812 +165874,191.15,75.252 +165875,189.06,74.708 +165876,187.03,74.181 +165877,191.99,75.882 +165878,189.83,75.29 +165879,187.74,74.715 +165880,185.74,74.154 +165881,190.65,75.951 +165882,188.5,75.328 +165883,186.43,74.721 +165884,184.44,74.129 +165885,189.3,76.02 +165886,187.17,75.366 +165887,185.12,74.727 +165888,183.14,74.104 +165889,187.95,76.089 +165890,185.84,75.404 +165891,183.81,74.734 +165892,181.85,74.079 +165893,186.6,76.157 +165894,184.51,75.441 +165895,182.5,74.741 +165896,180.56,74.055 +165897,185.24,76.224 +165898,183.18,75.478 +165899,181.19,74.748 +165900,179.26,74.031 +165901,183.89,76.291 +165902,181.84,75.516 +165903,179.87,74.755 +165904,177.97,74.008 +165905,182.53,76.358 +165906,180.51,75.552 +165907,178.57,74.762 +165908,176.69,73.986 +165909,181.18,76.423 +165910,179.18,75.589 +165911,177.26,74.77 +165912,175.4,73.964 +165913,179.82,76.488 +165914,177.84,75.626 +165915,175.95,74.777 +165916,174.11,73.942 +165917,178.46,76.552 +165918,176.51,75.662 +165919,174.64,74.785 +165920,172.83,73.922 +165921,177.1,76.616 +165922,175.18,75.698 +165923,173.33,74.794 +165924,171.54,73.902 +165925,175.73,76.679 +165926,173.84,75.734 +165927,172.02,74.802 +165928,170.26,73.883 +165929,174.37,76.741 +165930,172.51,75.77 +165931,170.72,74.811 +165932,168.98,73.864 +165933,173,76.802 +165934,171.17,75.805 +165935,169.41,74.82 +165936,167.7,73.847 +165937,171.63,76.862 +165938,169.83,75.84 +165939,168.1,74.829 +165940,166.43,73.83 +165941,170.27,76.922 +165942,168.5,75.875 +165943,166.8,74.839 +165944,165.15,73.814 +165945,168.9,76.981 +165946,167.16,75.909 +165947,165.49,74.849 +165948,163.88,73.799 +165949,167.52,77.039 +165950,165.82,75.944 +165951,164.19,74.859 +165952,162.6,73.784 +165953,166.15,77.096 +165954,164.49,75.978 +165955,162.88,74.869 +165956,161.33,73.771 +165957,164.78,77.152 +165958,163.15,76.011 +165959,161.58,74.88 +165960,160.06,73.758 +165961,163.4,77.208 +165962,161.81,76.045 +165963,160.27,74.891 +165964,158.79,73.746 +165965,162.03,77.262 +165966,160.47,76.078 +165967,158.97,74.902 +165968,157.52,73.735 +165969,160.65,77.316 +165970,159.13,76.111 +165971,157.67,74.914 +165972,156.25,73.725 +165973,159.27,77.368 +165974,157.79,76.143 +165975,156.36,74.926 +165976,154.98,73.717 +165977,157.89,77.42 +165978,156.45,76.175 +165979,155.06,74.938 +165980,153.72,73.709 +165981,156.51,77.47 +165982,155.11,76.207 +165983,153.76,74.951 +165984,152.45,73.702 +165985,155.13,77.52 +165986,153.77,76.239 +165987,152.46,74.964 +165988,151.19,73.696 +165989,153.75,77.568 +165990,152.43,76.27 +165991,151.15,74.977 +165992,149.92,73.691 +165993,152.37,77.616 +165994,151.08,76.301 +165995,149.85,74.991 +165996,148.66,73.687 +165997,150.98,77.662 +165998,149.74,76.331 +165999,148.55,75.005 +166000,147.4,73.684 +166001,149.6,77.708 +166002,148.4,76.361 +166003,147.25,75.019 +166004,146.14,73.682 +166005,148.21,77.752 +166006,147.06,76.391 +166007,145.95,75.034 +166008,144.88,73.682 +166009,146.83,77.796 +166010,145.72,76.421 +166011,144.65,75.049 +166012,143.62,73.682 +166013,145.44,77.838 +166014,144.37,76.45 +166015,143.35,75.065 +166016,142.37,73.684 +166017,144.05,77.879 +166018,143.03,76.479 +166019,142.05,75.081 +166020,141.11,73.686 +166021,142.66,77.919 +166022,141.68,76.507 +166023,140.75,75.097 +166024,139.85,73.69 +166025,141.27,77.958 +166026,140.34,76.535 +166027,139.45,75.114 +166028,138.6,73.695 +166029,139.88,77.996 +166030,139,76.563 +166031,138.15,75.131 +166032,137.34,73.701 +166033,138.49,78.032 +166034,137.65,76.59 +166035,136.85,75.148 +166036,136.09,73.709 +166037,137.1,78.068 +166038,136.31,76.617 +166039,135.55,75.166 +166040,134.83,73.717 +166041,135.71,78.102 +166042,134.96,76.643 +166043,134.25,75.184 +166044,133.58,73.727 +166045,134.32,78.135 +166046,133.62,76.669 +166047,132.96,75.203 +166048,132.33,73.738 +166049,132.92,78.167 +166050,132.27,76.695 +166051,131.66,75.222 +166052,131.08,73.75 +166053,131.53,78.198 +166054,130.93,76.72 +166055,130.36,75.241 +166056,129.82,73.763 +166057,130.14,78.228 +166058,129.58,76.745 +166059,129.06,75.261 +166060,128.57,73.778 +166061,128.74,78.257 +166062,128.24,76.77 +166063,127.76,75.282 +166064,127.32,73.793 +166065,127.35,78.284 +166066,126.89,76.794 +166067,126.46,75.302 +166068,126.07,73.81 +166069,125.96,78.31 +166070,125.54,76.818 +166071,125.17,75.323 +166072,124.82,73.828 +166073,124.56,78.335 +166074,124.2,76.841 +166075,123.87,75.345 +166076,123.57,73.848 +166077,123.17,78.359 +166078,122.85,76.864 +166079,122.57,75.367 +166080,122.32,73.868 +166081,121.77,78.382 +166082,121.51,76.887 +166083,121.27,75.389 +166084,121.07,73.89 +166085,120.38,78.403 +166086,120.16,76.909 +166087,119.98,75.412 +166088,119.82,73.913 +166089,118.98,78.424 +166090,118.81,76.931 +166091,118.68,75.435 +166092,118.57,73.938 +166093,117.59,78.443 +166094,117.47,76.952 +166095,117.38,75.458 +166096,117.33,73.963 +166097,116.19,78.461 +166098,116.12,76.973 +166099,116.08,75.482 +166100,116.08,73.99 +166101,114.8,78.478 +166102,114.78,76.994 +166103,114.79,75.507 +166104,114.83,74.018 +166105,113.4,78.493 +166106,113.43,77.014 +166107,113.49,75.531 +166108,113.58,74.047 +166109,112.01,78.508 +166110,112.08,77.034 +166111,112.19,75.557 +166112,112.33,74.078 +166113,110.61,78.521 +166114,110.74,77.053 +166115,110.89,75.582 +166116,111.08,74.109 +166117,109.22,78.533 +166118,109.39,77.072 +166119,109.59,75.608 +166120,109.83,74.142 +166121,107.83,78.544 +166122,108.04,77.091 +166123,108.3,75.634 +166124,108.58,74.176 +166125,106.43,78.554 +166126,106.7,77.109 +166127,107,75.661 +166128,107.33,74.212 +166129,105.04,78.563 +166130,105.35,77.127 +166131,105.7,75.688 +166132,106.08,74.248 +166133,103.65,78.57 +166134,104.01,77.145 +166135,104.4,75.716 +166136,104.83,74.286 +166137,102.25,78.577 +166138,102.66,77.162 +166139,103.1,75.744 +166140,103.58,74.325 +166141,100.86,78.582 +166142,101.31,77.179 +166143,101.8,75.772 +166144,102.33,74.365 +166145,99.469,78.586 +166146,99.969,77.195 +166147,100.5,75.801 +166148,101.08,74.406 +166149,98.078,78.59 +166150,98.624,77.211 +166151,99.206,75.83 +166152,99.826,74.449 +166153,96.687,78.592 +166154,97.278,77.227 +166155,97.907,75.86 +166156,98.573,74.492 +166157,95.296,78.593 +166158,95.933,77.242 +166159,96.608,75.89 +166160,97.32,74.537 +166161,93.906,78.593 +166162,94.588,77.257 +166163,95.308,75.92 +166164,96.067,74.583 +166165,92.517,78.591 +166166,93.243,77.272 +166167,94.008,75.951 +166168,94.813,74.63 +166169,91.128,78.589 +166170,91.899,77.286 +166171,92.708,75.982 +166172,93.559,74.678 +166173,89.74,78.586 +166174,90.554,77.3 +166175,91.408,76.013 +166176,92.303,74.727 +166177,88.353,78.582 +166178,89.21,77.314 +166179,90.108,76.045 +166180,91.048,74.777 +166181,86.967,78.576 +166182,87.866,77.327 +166183,88.807,76.077 +166184,89.791,74.828 +166185,85.581,78.57 +166186,86.522,77.34 +166187,87.506,76.109 +166188,88.534,74.881 +166189,84.196,78.563 +166190,85.179,77.352 +166191,86.205,76.142 +166192,87.275,74.934 +166193,82.812,78.555 +166194,83.835,77.365 +166195,84.903,76.175 +166196,86.016,74.988 +166197,81.428,78.546 +166198,82.492,77.377 +166199,83.601,76.209 +166200,84.757,75.044 +166201,80.046,78.536 +166202,81.15,77.388 +166203,82.299,76.242 +166204,83.496,75.1 +166205,78.665,78.525 +166206,79.807,77.4 +166207,80.996,76.276 +166208,82.234,75.157 +166209,77.284,78.513 +166210,78.465,77.411 +166211,79.693,76.311 +166212,80.972,75.215 +166213,75.904,78.5 +166214,77.123,77.421 +166215,78.39,76.346 +166216,79.708,75.274 +166217,74.526,78.487 +166218,75.782,77.432 +166219,77.087,76.381 +166220,78.444,75.334 +166221,73.148,78.472 +166222,74.44,77.442 +166223,75.783,76.416 +166224,77.178,75.395 +166225,71.771,78.457 +166226,73.099,77.452 +166227,74.478,76.451 +166228,75.911,75.457 +166229,70.396,78.441 +166230,71.759,77.462 +166231,73.174,76.487 +166232,74.644,75.52 +166233,69.021,78.424 +166234,70.419,77.471 +166235,71.869,76.523 +166236,73.375,75.583 +166237,67.648,78.406 +166238,69.079,77.48 +166239,70.563,76.56 +166240,72.105,75.647 +166241,66.276,78.388 +166242,67.739,77.489 +166243,69.257,76.597 +166244,70.833,75.712 +166245,64.905,78.369 +166246,66.4,77.498 +166247,67.951,76.633 +166248,69.561,75.778 +166249,63.535,78.349 +166250,65.061,77.506 +166251,66.644,76.671 +166252,68.287,75.844 +166253,62.166,78.329 +166254,63.723,77.515 +166255,65.337,76.708 +166256,67.012,75.911 +166257,60.799,78.308 +166258,62.385,77.523 +166259,64.029,76.746 +166260,65.736,75.979 +166261,59.433,78.286 +166262,61.047,77.531 +166263,62.721,76.783 +166264,64.458,76.047 +166265,58.068,78.264 +166266,59.71,77.538 +166267,61.413,76.822 +166268,63.179,76.116 +166269,56.704,78.241 +166270,58.373,77.546 +166271,60.104,76.86 +166272,61.899,76.186 +166273,55.342,78.217 +166274,57.037,77.553 +166275,58.794,76.898 +166276,60.617,76.256 +166277,53.981,78.193 +166278,55.701,77.56 +166279,57.484,76.937 +166280,59.334,76.327 +166281,52.621,78.169 +166282,54.366,77.567 +166283,56.174,76.976 +166284,58.05,76.398 +166285,51.262,78.144 +166286,53.031,77.574 +166287,54.863,77.015 +166288,56.764,76.47 +166289,49.905,78.118 +166290,51.696,77.58 +166291,53.551,77.054 +166292,55.476,76.542 +166293,48.55,78.092 +166294,50.362,77.587 +166295,52.239,77.093 +166296,54.187,76.615 +166297,47.196,78.066 +166298,49.028,77.593 +166299,50.927,77.133 +166300,52.897,76.688 +166301,45.843,78.039 +166302,47.695,77.599 +166303,49.614,77.172 +166304,51.605,76.762 +166305,44.491,78.012 +166306,46.362,77.605 +166307,48.3,77.212 +166308,50.312,76.835 +166309,43.142,77.985 +166310,45.03,77.611 +166311,46.986,77.252 +166312,49.017,76.91 +166313,41.793,77.957 +166314,43.698,77.617 +166315,45.672,77.292 +166316,47.72,76.984 +166317,40.446,77.929 +166318,42.367,77.623 +166319,44.357,77.332 +166320,46.422,77.059 +166321,39.1,77.901 +166322,41.036,77.629 +166323,43.041,77.372 +166324,45.122,77.134 +166325,37.756,77.872 +166326,39.706,77.634 +166327,41.725,77.412 +166328,43.821,77.209 +166329,36.414,77.844 +166330,38.376,77.64 +166331,40.408,77.453 +166332,42.518,77.284 +166333,35.073,77.815 +166334,37.047,77.645 +166335,39.091,77.493 +166336,41.213,77.36 +166337,33.733,77.786 +166338,35.718,77.651 +166339,37.773,77.533 +166340,39.907,77.436 +166341,32.395,77.756 +166342,34.389,77.656 +166343,36.454,77.574 +166344,38.599,77.512 +166345,31.059,77.727 +166346,33.061,77.662 +166347,35.135,77.614 +166348,37.289,77.587 +166349,29.724,77.698 +166350,31.734,77.667 +166351,33.816,77.655 +166352,35.978,77.663 +166353,28.39,77.668 +166354,30.407,77.673 +166355,32.496,77.695 +166356,34.665,77.739 +166357,27.058,77.639 +166358,29.081,77.678 +166359,31.175,77.736 +166360,33.35,77.815 +166361,25.728,77.61 +166362,27.755,77.683 +166363,29.854,77.776 +166364,32.034,77.891 +166365,24.399,77.58 +166366,26.43,77.689 +166367,28.532,77.817 +166368,30.716,77.967 +166369,23.071,77.551 +166370,25.105,77.694 +166371,27.21,77.857 +166372,29.397,78.043 +166373,21.746,77.522 +166374,23.78,77.7 +166375,25.887,77.898 +166376,28.075,78.118 +166377,20.421,77.493 +166378,22.456,77.705 +166379,24.563,77.938 +166380,26.752,78.194 +166381,19.099,77.464 +166382,21.133,77.711 +166383,23.239,77.979 +166384,25.428,78.269 +166385,17.777,77.435 +166386,19.81,77.717 +166387,21.915,78.019 +166388,24.101,78.344 +166389,16.458,77.407 +166390,18.488,77.723 +166391,20.59,78.059 +166392,22.773,78.419 +166393,15.14,77.378 +166394,17.166,77.728 +166395,19.264,78.099 +166396,21.444,78.493 +166397,13.823,77.35 +166398,15.845,77.734 +166399,17.938,78.139 +166400,20.112,78.567 +166401,12.508,77.323 +166402,14.524,77.74 +166403,16.611,78.179 +166404,18.779,78.641 +166405,11.194,77.295 +166406,13.203,77.747 +166407,15.283,78.219 +166408,17.445,78.715 +166409,9.8824,77.268 +166410,11.884,77.753 +166411,13.955,78.259 +166412,16.108,78.788 +166413,8.5719,77.242 +166414,10.564,77.759 +166415,12.627,78.298 +166416,14.77,78.861 +166417,7.2629,77.215 +166418,9.2454,77.766 +166419,11.298,78.338 +166420,13.431,78.933 +166421,5.9554,77.189 +166422,7.9271,77.773 +166423,9.968,78.377 +166424,12.089,79.005 +166425,4.6494,77.164 +166426,6.6092,77.78 +166427,8.6378,78.416 +166428,10.746,79.076 +166429,3.3448,77.139 +166430,5.2918,77.787 +166431,7.3071,78.456 +166432,9.4019,79.147 +166433,2.0417,77.114 +166434,3.9748,77.794 +166435,5.9758,78.494 +166436,8.0558,79.218 +166437,0.74008,77.091 +166438,2.6584,77.801 +166439,4.644,78.533 +166440,6.7081,79.288 +166441,359.44,77.067 +166442,1.3424,77.809 +166443,3.3117,78.572 +166444,5.3589,79.357 +166445,358.14,77.044 +166446,0.026882,77.817 +166447,1.9789,78.61 +166448,4.0081,79.425 +166449,356.84,77.022 +166450,358.71,77.825 +166451,0.64548,78.648 +166452,2.6557,79.493 +166453,355.55,77.001 +166454,357.4,77.833 +166455,359.31,78.686 +166456,1.3018,79.561 +166457,354.25,76.98 +166458,356.08,77.842 +166459,357.98,78.724 +166460,359.95,79.627 +166461,352.96,76.959 +166462,354.77,77.85 +166463,356.64,78.761 +166464,358.59,79.693 +166465,351.67,76.94 +166466,353.46,77.859 +166467,355.31,78.798 +166468,357.23,79.758 +166469,350.38,76.921 +166470,352.14,77.869 +166471,353.97,78.835 +166472,355.87,79.823 +166473,349.09,76.903 +166474,350.83,77.878 +166475,352.63,78.872 +166476,354.51,79.887 +166477,347.8,76.886 +166478,349.52,77.888 +166479,351.3,78.908 +166480,353.15,79.949 +166481,346.51,76.869 +166482,348.21,77.898 +166483,349.96,78.945 +166484,351.78,80.0115 +166485,345.23,76.854 +166486,346.9,77.908 +166487,348.62,78.981 +166488,350.42,80.0728 +166489,343.94,76.839 +166490,345.59,77.919 +166491,347.28,79.016 +166492,349.05,80.1332 +166493,342.66,76.825 +166494,344.28,77.929 +166495,345.95,79.052 +166496,347.68,80.1927 +166497,341.38,76.812 +166498,342.97,77.941 +166499,344.61,79.087 +166500,346.31,80.2513 +166501,340.1,76.799 +166502,341.66,77.952 +166503,343.27,79.122 +166504,344.94,80.309 +166505,338.82,76.788 +166506,340.35,77.964 +166507,341.93,79.156 +166508,343.57,80.3658 +166509,337.54,76.778 +166510,339.04,77.976 +166511,340.59,79.19 +166512,342.2,80.4216 +166513,336.27,76.768 +166514,337.73,77.988 +166515,339.25,79.224 +166516,340.82,80.4765 +166517,334.99,76.76 +166518,336.42,78.001 +166519,337.9,79.258 +166520,339.45,80.5304 +166521,333.72,76.752 +166522,335.11,78.014 +166523,336.56,79.291 +166524,338.07,80.5833 +166525,332.44,76.746 +166526,333.81,78.028 +166527,335.22,79.324 +166528,336.69,80.6352 +166529,331.17,76.741 +166530,332.5,78.042 +166531,333.88,79.356 +166532,335.32,80.6861 +166533,329.9,76.736 +166534,331.19,78.056 +166535,332.54,79.389 +166536,333.94,80.7359 +166537,328.63,76.733 +166538,329.88,78.07 +166539,331.19,79.421 +166540,332.56,80.7846 +166541,327.36,76.731 +166542,328.58,78.085 +166543,329.85,79.452 +166544,331.17,80.8323 +166545,326.09,76.73 +166546,327.27,78.1 +166547,328.5,79.483 +166548,329.79,80.879 +166549,324.82,76.73 +166550,325.97,78.116 +166551,327.16,79.514 +166552,328.41,80.9245 +166553,323.55,76.731 +166554,324.66,78.132 +166555,325.82,79.545 +166556,327.02,80.9689 +166557,322.29,76.733 +166558,323.36,78.148 +166559,324.47,79.575 +166560,325.64,81.0122 +166561,321.02,76.736 +166562,322.05,78.165 +166563,323.13,79.604 +166564,324.25,81.0544 +166565,319.76,76.741 +166566,320.75,78.182 +166567,321.78,79.634 +166568,322.86,81.0954 +166569,318.49,76.746 +166570,319.44,78.2 +166571,320.44,79.663 +166572,321.48,81.1353 +166573,317.23,76.753 +166574,318.14,78.218 +166575,319.09,79.691 +166576,320.09,81.1741 +166577,315.97,76.761 +166578,316.83,78.236 +166579,317.74,79.719 +166580,318.7,81.2117 +166581,314.7,76.77 +166582,315.53,78.255 +166583,316.4,79.747 +166584,317.31,81.2481 +166585,313.44,76.781 +166586,314.23,78.274 +166587,315.05,79.775 +166588,315.92,81.2833 +166589,312.18,76.793 +166590,312.92,78.293 +166591,313.7,79.802 +166592,314.53,81.3174 +166593,310.92,76.805 +166594,311.62,78.313 +166595,312.36,79.828 +166596,313.14,81.3503 +166597,309.66,76.82 +166598,310.32,78.334 +166599,311.01,79.854 +166600,311.74,81.382 +166601,308.4,76.835 +166602,309.01,78.354 +166603,309.66,79.88 +166604,310.35,81.4125 +166605,307.14,76.851 +166606,307.71,78.375 +166607,308.31,79.906 +166608,308.96,81.4418 +166609,305.88,76.869 +166610,306.41,78.397 +166611,306.97,79.931 +166612,307.56,81.4698 +166613,304.63,76.888 +166614,305.1,78.419 +166615,305.62,79.955 +166616,306.17,81.4967 +166617,303.37,76.909 +166618,303.8,78.442 +166619,304.27,79.98 +166620,304.78,81.5224 +166621,302.11,76.93 +166622,302.5,78.464 +166623,302.92,80.0035 +166624,303.38,81.5469 +166625,300.85,76.953 +166626,301.2,78.488 +166627,301.57,80.027 +166628,301.99,81.5701 +166629,299.6,76.977 +166630,299.89,78.511 +166631,300.23,80.05 +166632,300.59,81.5922 +166633,298.34,77.002 +166634,298.59,78.535 +166635,298.88,80.0726 +166636,299.2,81.613 +166637,297.08,77.029 +166638,297.29,78.56 +166639,297.53,80.0949 +166640,297.8,81.6327 +166641,295.83,77.057 +166642,295.99,78.585 +166643,296.18,80.1167 +166644,296.41,81.6511 +166645,294.57,77.086 +166646,294.68,78.61 +166647,294.83,80.1381 +166648,295.01,81.6684 +166649,293.31,77.116 +166650,293.38,78.636 +166651,293.48,80.1591 +166652,293.62,81.6844 +166653,292.06,77.148 +166654,292.08,78.662 +166655,292.13,80.1797 +166656,292.22,81.6992 +166657,290.8,77.181 +166658,290.78,78.689 +166659,290.78,80.2 +166660,290.82,81.7129 +166661,289.55,77.215 +166662,289.48,78.716 +166663,289.44,80.2198 +166664,289.43,81.7253 +166665,288.29,77.25 +166666,288.17,78.743 +166667,288.09,80.2392 +166668,288.03,81.7366 +166669,287.03,77.287 +166670,286.87,78.771 +166671,286.74,80.2583 +166672,286.64,81.7467 +166673,285.78,77.325 +166674,285.57,78.799 +166675,285.39,80.2769 +166676,285.24,81.7557 +166677,284.52,77.364 +166678,284.26,78.828 +166679,284.04,80.2952 +166680,283.85,81.7635 +166681,283.26,77.404 +166682,282.96,78.857 +166683,282.69,80.3131 +166684,282.45,81.7701 +166685,282.01,77.445 +166686,281.66,78.887 +166687,281.34,80.3306 +166688,281.06,81.7756 +166689,280.75,77.488 +166690,280.36,78.916 +166691,279.99,80.3477 +166692,279.66,81.78 +166693,279.49,77.532 +166694,279.05,78.947 +166695,278.65,80.3644 +166696,278.27,81.7832 +166697,278.23,77.577 +166698,277.75,78.977 +166699,277.3,80.3808 +166700,276.88,81.7853 +166701,276.97,77.623 +166702,276.45,79.008 +166703,275.95,80.3968 +166704,275.48,81.7863 +166705,275.72,77.67 +166706,275.14,79.04 +166707,274.6,80.4124 +166708,274.09,81.7862 +166709,274.46,77.719 +166710,273.84,79.072 +166711,273.25,80.4277 +166712,272.7,81.7851 +166713,273.2,77.768 +166714,272.53,79.104 +166715,271.91,80.4426 +166716,271.31,81.7829 +166717,271.94,77.819 +166718,271.23,79.136 +166719,270.56,80.4572 +166720,269.92,81.7796 +166721,270.68,77.871 +166722,269.93,79.169 +166723,269.21,80.4714 +166724,268.53,81.7753 +166725,269.41,77.924 +166726,268.62,79.203 +166727,267.86,80.4853 +166728,267.14,81.7699 +166729,268.15,77.977 +166730,267.32,79.236 +166731,266.52,80.4988 +166732,265.75,81.7636 +166733,266.89,78.032 +166734,266.01,79.27 +166735,265.17,80.512 +166736,264.36,81.7562 +166737,265.63,78.088 +166738,264.71,79.304 +166739,263.82,80.5249 +166740,262.97,81.7479 +166741,264.36,78.146 +166742,263.4,79.339 +166743,262.47,80.5374 +166744,261.58,81.7386 +166745,263.1,78.204 +166746,262.09,79.374 +166747,261.13,80.5496 +166748,260.2,81.7283 +166749,261.83,78.263 +166750,260.79,79.409 +166751,259.78,80.5615 +166752,258.81,81.7171 +166753,260.56,78.323 +166754,259.48,79.445 +166755,258.44,80.5732 +166756,257.43,81.705 +166757,259.3,78.384 +166758,258.17,79.481 +166759,257.09,80.5845 +166760,256.04,81.692 +166761,258.03,78.445 +166762,256.87,79.517 +166763,255.75,80.5955 +166764,254.66,81.6782 +166765,256.76,78.508 +166766,255.56,79.554 +166767,254.4,80.6062 +166768,253.28,81.6634 +166769,255.49,78.572 +166770,254.25,79.591 +166771,253.06,80.6167 +166772,251.9,81.6479 +166773,254.22,78.636 +166774,252.94,79.628 +166775,251.71,80.6268 +166776,250.52,81.6315 +166777,252.95,78.702 +166778,251.64,79.665 +166779,250.37,80.6367 +166780,249.14,81.6143 +166781,251.67,78.768 +166782,250.33,79.703 +166783,249.02,80.6464 +166784,247.76,81.5963 +166785,250.4,78.835 +166786,249.02,79.741 +166787,247.68,80.6558 +166788,246.38,81.5776 +166789,249.12,78.903 +166790,247.71,79.779 +166791,246.34,80.665 +166792,245,81.5581 +166793,247.85,78.971 +166794,246.4,79.818 +166795,244.99,80.6739 +166796,243.63,81.5379 +166797,246.57,79.041 +166798,245.09,79.856 +166799,243.65,80.6826 +166800,242.25,81.5171 +166801,245.29,79.111 +166802,243.78,79.895 +166803,242.31,80.691 +166804,240.88,81.4955 +166805,244.01,79.181 +166806,242.47,79.934 +166807,240.97,80.6993 +166808,239.51,81.4734 +166809,242.73,79.252 +166810,241.15,79.974 +166811,239.62,80.7073 +166812,238.14,81.4506 +166813,241.45,79.324 +166814,239.84,80.0135 +166815,238.28,80.7152 +166816,236.77,81.4272 +166817,240.17,79.397 +166818,238.53,80.0533 +166819,236.94,80.7228 +166820,235.4,81.4032 +166821,238.88,79.47 +166822,237.22,80.0933 +166823,235.6,80.7303 +166824,234.03,81.3786 +166825,237.59,79.544 +166826,235.9,80.1335 +166827,234.26,80.7376 +166828,232.67,81.3536 +166829,236.31,79.618 +166830,234.59,80.1739 +166831,232.92,80.7448 +166832,231.3,81.328 +166833,235.02,79.692 +166834,233.27,80.2144 +166835,231.58,80.7517 +166836,229.94,81.302 +166837,233.73,79.767 +166838,231.96,80.2551 +166839,230.24,80.7586 +166840,228.58,81.2755 +166841,232.44,79.843 +166842,230.64,80.2959 +166843,228.9,80.7653 +166844,227.22,81.2486 +166845,231.14,79.919 +166846,229.33,80.3369 +166847,227.57,80.7718 +166848,225.86,81.2213 +166849,229.85,79.995 +166850,228.01,80.378 +166851,226.23,80.7783 +166852,224.5,81.1936 +166853,228.56,80.0719 +166854,226.7,80.4192 +166855,224.89,80.7846 +166856,223.14,81.1656 +166857,227.26,80.1489 +166858,225.38,80.4606 +166859,223.56,80.7908 +166860,221.79,81.1372 +166861,225.96,80.2262 +166862,224.06,80.502 +166863,222.22,80.797 +166864,220.43,81.1086 +166865,224.66,80.3037 +166866,222.74,80.5435 +166867,220.88,80.803 +166868,219.08,81.0797 +166869,223.36,80.3815 +166870,221.42,80.5852 +166871,219.55,80.809 +166872,217.73,81.0505 +166873,222.06,80.4595 +166874,220.1,80.6269 +166875,218.21,80.8149 +166876,216.38,81.0211 +166877,220.75,80.5377 +166878,218.78,80.6686 +166879,216.88,80.8208 +166880,215.03,80.9916 +166881,219.45,80.616 +166882,217.46,80.7104 +166883,215.54,80.8266 +166884,213.68,80.9619 +166885,218.14,80.6945 +166886,216.14,80.7523 +166887,214.21,80.8324 +166888,212.34,80.932 +166889,216.83,80.773 +166890,214.82,80.7942 +166891,212.88,80.8381 +166892,210.99,80.9021 +166893,215.52,80.8516 +166894,213.5,80.8361 +166895,211.54,80.8438 +166896,209.65,80.8721 +166897,214.21,80.9302 +166898,212.18,80.878 +166899,210.21,80.8495 +166900,208.31,80.842 +166901,212.89,81.0088 +166902,210.85,80.9199 +166903,208.88,80.8553 +166904,206.97,80.812 +166905,211.58,81.0874 +166906,209.53,80.9619 +166907,207.55,80.861 +166908,205.63,80.7819 +166909,210.26,81.166 +166910,208.21,81.0038 +166911,206.22,80.8667 +166912,204.29,80.7518 +166913,208.94,81.2444 +166914,206.88,81.0457 +166915,204.89,80.8725 +166916,202.96,80.7219 +166917,207.62,81.3227 +166918,205.56,81.0876 +166919,203.56,80.8783 +166920,201.62,80.692 +166921,206.3,81.4009 +166922,204.23,81.1294 +166923,202.23,80.8841 +166924,200.29,80.6623 +166925,204.98,81.4789 +166926,202.9,81.1712 +166927,200.9,80.8901 +166928,198.96,80.6326 +166929,203.65,81.5567 +166930,201.58,81.2129 +166931,199.57,80.896 +166932,197.63,80.6032 +166933,202.33,81.6342 +166934,200.25,81.2545 +166935,198.24,80.9021 +166936,196.3,80.574 +166937,201,81.7115 +166938,198.92,81.296 +166939,196.92,80.9082 +166940,194.97,80.545 +166941,199.67,81.7885 +166942,197.59,81.3375 +166943,195.59,80.9145 +166944,193.65,80.5163 +166945,198.34,81.8651 +166946,196.27,81.3789 +166947,194.26,80.9208 +166948,192.32,80.4878 +166949,197.01,81.9414 +166950,194.94,81.4201 +166951,192.94,80.9272 +166952,191,80.4597 +166953,195.67,82.0173 +166954,193.61,81.4613 +166955,191.61,80.9338 +166956,189.68,80.4319 +166957,194.33,82.0929 +166958,192.27,81.5023 +166959,190.29,80.9405 +166960,188.36,80.4045 +166961,193,82.1679 +166962,190.94,81.5431 +166963,188.96,80.9473 +166964,187.04,80.3775 +166965,191.66,82.2425 +166966,189.61,81.5838 +166967,187.64,80.9543 +166968,185.73,80.3509 +166969,190.32,82.3166 +166970,188.28,81.6244 +166971,186.31,80.9615 +166972,184.41,80.3248 +166973,188.98,82.3902 +166974,186.95,81.6648 +166975,184.99,80.9688 +166976,183.1,80.2991 +166977,187.63,82.4633 +166978,185.61,81.705 +166979,183.67,80.9763 +166980,181.78,80.274 +166981,186.29,82.5358 +166982,184.28,81.7451 +166983,182.35,80.984 +166984,180.47,80.2494 +166985,184.94,82.6076 +166986,182.95,81.7849 +166987,181.02,80.9918 +166988,179.16,80.2253 +166989,183.59,82.6789 +166990,181.61,81.8246 +166991,179.7,80.9999 +166992,177.86,80.2018 +166993,182.24,82.7495 +166994,180.27,81.864 +166995,178.38,81.0082 +166996,176.55,80.1789 +166997,180.89,82.8194 +166998,178.94,81.9032 +166999,177.06,81.0167 +167000,175.24,80.1567 +167001,179.54,82.8886 +167002,177.6,81.9422 +167003,175.74,81.0254 +167004,173.94,80.1351 +167005,178.18,82.9571 +167006,176.27,81.981 +167007,174.42,81.0344 +167008,172.64,80.1142 +167009,176.83,83.0249 +167010,174.93,82.0195 +167011,173.1,81.0436 +167012,171.34,80.094 +167013,175.47,83.0919 +167014,173.59,82.0578 +167015,171.78,81.053 +167016,170.04,80.0745 +167017,174.11,83.158 +167018,172.25,82.0958 +167019,170.46,81.0627 +167020,168.74,80.0558 +167021,172.75,83.2234 +167022,170.91,82.1336 +167023,169.15,81.0727 +167024,167.44,80.0379 +167025,171.39,83.2879 +167026,169.57,82.1711 +167027,167.83,81.0829 +167028,166.14,80.0207 +167029,170.02,83.3516 +167030,168.23,82.2083 +167031,166.51,81.0935 +167032,164.85,80.0044 +167033,168.66,83.4144 +167034,166.89,82.2452 +167035,165.19,81.1043 +167036,163.56,79.989 +167037,167.29,83.4762 +167038,165.55,82.2818 +167039,163.88,81.1154 +167040,162.26,79.974 +167041,165.93,83.5372 +167042,164.21,82.3181 +167043,162.56,81.1268 +167044,160.97,79.961 +167045,164.56,83.5972 +167046,162.87,82.3541 +167047,161.25,81.1386 +167048,159.68,79.948 +167049,163.19,83.6562 +167050,161.53,82.3898 +167051,159.93,81.1506 +167052,158.39,79.936 +167053,161.82,83.7143 +167054,160.18,82.4252 +167055,158.62,81.163 +167056,157.1,79.925 +167057,160.45,83.7713 +167058,158.84,82.4603 +167059,157.3,81.1756 +167060,155.82,79.915 +167061,159.07,83.8273 +167062,157.5,82.495 +167063,155.99,81.1887 +167064,154.53,79.906 +167065,157.7,83.8824 +167066,156.15,82.5293 +167067,154.67,81.202 +167068,153.25,79.898 +167069,156.32,83.9363 +167070,154.81,82.5634 +167071,153.36,81.2157 +167072,151.96,79.891 +167073,154.95,83.9892 +167074,153.47,82.5971 +167075,152.05,81.2298 +167076,150.68,79.885 +167077,153.57,84.041 +167078,152.12,82.6304 +167079,150.73,81.2442 +167080,149.4,79.88 +167081,152.19,84.0917 +167082,150.78,82.6634 +167083,149.42,81.259 +167084,148.12,79.877 +167085,150.81,84.1413 +167086,149.43,82.696 +167087,148.11,81.2742 +167088,146.84,79.874 +167089,149.43,84.1897 +167090,148.08,82.7282 +167091,146.8,81.2897 +167092,145.56,79.872 +167093,148.05,84.2371 +167094,146.74,82.76 +167095,145.49,81.3056 +167096,144.28,79.872 +167097,146.66,84.2833 +167098,145.39,82.7915 +167099,144.17,81.3219 +167100,143.01,79.873 +167101,145.28,84.3283 +167102,144.04,82.8226 +167103,142.86,81.3385 +167104,141.73,79.874 +167105,143.89,84.3721 +167106,142.7,82.8533 +167107,141.55,81.3556 +167108,140.46,79.877 +167109,142.51,84.4148 +167110,141.35,82.8836 +167111,140.24,81.373 +167112,139.18,79.882 +167113,141.12,84.4562 +167114,140,82.9136 +167115,138.93,81.3909 +167116,137.91,79.887 +167117,139.74,84.4965 +167118,138.65,82.9431 +167119,137.62,81.4091 +167120,136.64,79.893 +167121,138.35,84.5356 +167122,137.3,82.9722 +167123,136.31,81.4278 +167124,135.36,79.901 +167125,136.96,84.5734 +167126,135.95,83.0009 +167127,135,81.4469 +167128,134.09,79.91 +167129,135.57,84.61 +167130,134.6,83.0292 +167131,133.69,81.4663 +167132,132.82,79.92 +167133,134.18,84.6454 +167134,133.25,83.0571 +167135,132.38,81.4862 +167136,131.55,79.932 +167137,132.79,84.6795 +167138,131.91,83.0846 +167139,131.07,81.5065 +167140,130.28,79.944 +167141,131.4,84.7124 +167142,130.56,83.1117 +167143,129.76,81.5272 +167144,129.01,79.958 +167145,130,84.7441 +167146,129.21,83.1383 +167147,128.45,81.5484 +167148,127.74,79.974 +167149,128.61,84.7745 +167150,127.85,83.1646 +167151,127.14,81.5699 +167152,126.48,79.99 +167153,127.22,84.8036 +167154,126.5,83.1904 +167155,125.84,81.5919 +167156,125.21,80.0077 +167157,125.82,84.8315 +167158,125.15,83.2158 +167159,124.53,81.6143 +167160,123.94,80.0267 +167161,124.43,84.8581 +167162,123.8,83.2408 +167163,123.22,81.6371 +167164,122.67,80.0469 +167165,123.03,84.8834 +167166,122.45,83.2653 +167167,121.91,81.6604 +167168,121.41,80.0685 +167169,121.64,84.9075 +167170,121.1,83.2895 +167171,120.6,81.6841 +167172,120.14,80.0913 +167173,120.24,84.9304 +167174,119.75,83.3132 +167175,119.29,81.7082 +167176,118.88,80.1154 +167177,118.85,84.9519 +167178,118.4,83.3365 +167179,117.99,81.7327 +167180,117.61,80.1408 +167181,117.45,84.9722 +167182,117.05,83.3594 +167183,116.68,81.7577 +167184,116.34,80.1674 +167185,116.06,84.9913 +167186,115.69,83.3818 +167187,115.37,81.7831 +167188,115.08,80.1954 +167189,114.66,85.0091 +167190,114.34,83.4038 +167191,114.06,81.8089 +167192,113.81,80.2247 +167193,113.26,85.0256 +167194,112.99,83.4254 +167195,112.75,81.8351 +167196,112.55,80.2552 +167197,111.87,85.0409 +167198,111.64,83.4466 +167199,111.45,81.8618 +167200,111.29,80.287 +167201,110.47,85.0549 +167202,110.29,83.4674 +167203,110.14,81.8889 +167204,110.02,80.3201 +167205,109.07,85.0678 +167206,108.93,83.4877 +167207,108.83,81.9164 +167208,108.76,80.3545 +167209,107.68,85.0793 +167210,107.58,83.5077 +167211,107.52,81.9444 +167212,107.49,80.3901 +167213,106.28,85.0897 +167214,106.23,83.5272 +167215,106.21,81.9727 +167216,106.23,80.427 +167217,104.88,85.0988 +167218,104.88,83.5463 +167219,104.9,82.0015 +167220,104.96,80.4652 +167221,103.49,85.1067 +167222,103.53,83.565 +167223,103.6,82.0307 +167224,103.7,80.5046 +167225,102.09,85.1134 +167226,102.17,83.5833 +167227,102.29,82.0603 +167228,102.43,80.5453 +167229,100.69,85.1189 +167230,100.82,83.6012 +167231,100.98,82.0903 +167232,101.17,80.5872 +167233,99.297,85.1232 +167234,99.469,83.6187 +167235,99.671,82.1207 +167236,99.904,80.6304 +167237,97.901,85.1263 +167238,98.117,83.6358 +167239,98.363,82.1515 +167240,98.639,80.6747 +167241,96.505,85.1283 +167242,96.765,83.6525 +167243,97.054,82.1827 +167244,97.373,80.7203 +167245,95.11,85.1291 +167246,95.413,83.6688 +167247,95.745,82.2143 +167248,96.107,80.7671 +167249,93.714,85.1288 +167250,94.061,83.6847 +167251,94.436,82.2463 +167252,94.841,80.8151 +167253,92.319,85.1273 +167254,92.709,83.7002 +167255,93.127,82.2787 +167256,93.575,80.8643 +167257,90.925,85.1248 +167258,91.357,83.7154 +167259,91.818,82.3115 +167260,92.308,80.9146 +167261,89.531,85.1211 +167262,90.005,83.7301 +167263,90.509,82.3447 +167264,91.041,80.9661 +167265,88.137,85.1163 +167266,88.654,83.7446 +167267,89.199,82.3782 +167268,89.773,81.0187 +167269,86.744,85.1104 +167270,87.302,83.7586 +167271,87.889,82.4121 +167272,88.505,81.0724 +167273,85.351,85.1035 +167274,85.951,83.7723 +167275,86.579,82.4464 +167276,87.236,81.1273 +167277,83.959,85.0956 +167278,84.6,83.7856 +167279,85.269,82.481 +167280,85.967,81.1833 +167281,82.567,85.0866 +167282,83.249,83.7986 +167283,83.959,82.516 +167284,84.697,81.2403 +167285,81.176,85.0766 +167286,81.898,83.8112 +167287,82.648,82.5513 +167288,83.426,81.2984 +167289,79.786,85.0656 +167290,80.548,83.8235 +167291,81.337,82.587 +167292,82.155,81.3576 +167293,78.396,85.0536 +167294,79.197,83.8355 +167295,80.026,82.623 +167296,80.884,81.4177 +167297,77.007,85.0406 +167298,77.847,83.8471 +167299,78.715,82.6593 +167300,79.611,81.4789 +167301,75.618,85.0268 +167302,76.497,83.8585 +167303,77.403,82.696 +167304,78.338,81.5411 +167305,74.231,85.012 +167306,75.147,83.8695 +167307,76.091,82.733 +167308,77.064,81.6043 +167309,72.844,84.9963 +167310,73.797,83.8802 +167311,74.779,82.7703 +167312,75.79,81.6684 +167313,71.458,84.9797 +167314,72.448,83.8906 +167315,73.467,82.8079 +167316,74.514,81.7334 +167317,70.073,84.9622 +167318,71.099,83.9007 +167319,72.154,82.8458 +167320,73.238,81.7993 +167321,68.688,84.9439 +167322,69.75,83.9105 +167323,70.841,82.884 +167324,71.961,81.8662 +167325,67.305,84.9248 +167326,68.401,83.92 +167327,69.527,82.9224 +167328,70.683,81.9339 +167329,65.922,84.9049 +167330,67.053,83.9293 +167331,68.213,82.9612 +167332,69.404,82.0024 +167333,64.54,84.8842 +167334,65.705,83.9383 +167335,66.899,83.0002 +167336,68.124,82.0717 +167337,63.16,84.8627 +167338,64.357,83.947 +167339,65.585,83.0394 +167340,66.843,82.1419 +167341,61.78,84.8406 +167342,63.009,83.9555 +167343,64.27,83.079 +167344,65.561,82.2128 +167345,60.401,84.8177 +167346,61.662,83.9638 +167347,62.954,83.1187 +167348,64.279,82.2845 +167349,59.023,84.7941 +167350,60.315,83.9718 +167351,61.639,83.1587 +167352,62.995,82.3569 +167353,57.647,84.7699 +167354,58.969,83.9796 +167355,60.323,83.199 +167356,61.71,82.4299 +167357,56.271,84.745 +167358,57.622,83.9871 +167359,59.006,83.2394 +167360,60.424,82.5037 +167361,54.897,84.7195 +167362,56.277,83.9945 +167363,57.69,83.28 +167364,59.137,82.5781 +167365,53.523,84.6935 +167366,54.931,84.0017 +167367,56.372,83.3209 +167368,57.848,82.6531 +167369,52.151,84.6668 +167370,53.586,84.0086 +167371,55.055,83.3619 +167372,56.559,82.7287 +167373,50.78,84.6397 +167374,52.241,84.0154 +167375,53.737,83.4032 +167376,55.268,82.8049 +167377,49.409,84.612 +167378,50.896,84.0221 +167379,52.418,83.4446 +167380,53.976,82.8816 +167381,48.041,84.5838 +167382,49.552,84.0285 +167383,51.099,83.4861 +167384,52.683,82.9588 +167385,46.673,84.5552 +167386,48.208,84.0348 +167387,49.78,83.5278 +167388,51.389,83.0364 +167389,45.306,84.5262 +167390,46.865,84.0409 +167391,48.46,83.5697 +167392,50.093,83.1146 +167393,43.941,84.4967 +167394,45.522,84.0469 +167395,47.14,83.6117 +167396,48.797,83.1931 +167397,42.577,84.4669 +167398,44.179,84.0528 +167399,45.819,83.6538 +167400,47.499,83.2721 +167401,41.214,84.4367 +167402,42.837,84.0586 +167403,44.498,83.6961 +167404,46.199,83.3514 +167405,39.853,84.4062 +167406,41.495,84.0642 +167407,43.176,83.7384 +167408,44.898,83.431 +167409,38.493,84.3754 +167410,40.154,84.0698 +167411,41.854,83.7809 +167412,43.596,83.5109 +167413,37.134,84.3443 +167414,38.813,84.0752 +167415,40.532,83.8234 +167416,42.293,83.5911 +167417,35.776,84.313 +167418,37.472,84.0806 +167419,39.208,83.866 +167420,40.988,83.6716 +167421,34.42,84.2815 +167422,36.132,84.0859 +167423,37.885,83.9087 +167424,39.682,83.7523 +167425,33.065,84.2498 +167426,34.792,84.0911 +167427,36.561,83.9514 +167428,38.374,83.8331 +167429,31.712,84.218 +167430,33.452,84.0963 +167431,35.236,83.9942 +167432,37.065,83.9141 +167433,30.359,84.186 +167434,32.113,84.1014 +167435,33.911,84.037 +167436,35.755,83.9952 +167437,29.008,84.1539 +167438,30.775,84.1065 +167439,32.586,84.0799 +167440,34.443,84.0764 +167441,27.659,84.1218 +167442,29.437,84.1116 +167443,31.259,84.1228 +167444,33.13,84.1577 +167445,26.311,84.0896 +167446,28.099,84.1167 +167447,29.933,84.1656 +167448,31.815,84.239 +167449,24.964,84.0574 +167450,26.762,84.1217 +167451,28.606,84.2085 +167452,30.499,84.3202 +167453,23.618,84.0252 +167454,25.425,84.1268 +167455,27.278,84.2514 +167456,29.181,84.4015 +167457,22.274,83.9931 +167458,24.089,84.1319 +167459,25.95,84.2942 +167460,27.862,84.4827 +167461,20.932,83.961 +167462,22.753,84.137 +167463,24.621,84.337 +167464,26.541,84.5638 +167465,19.591,83.929 +167466,21.417,84.1421 +167467,23.292,84.3797 +167468,25.219,84.6447 +167469,18.251,83.8972 +167470,20.082,84.1473 +167471,21.962,84.4224 +167472,23.895,84.7255 +167473,16.912,83.8655 +167474,18.748,84.1525 +167475,20.632,84.4651 +167476,22.57,84.8061 +167477,15.575,83.834 +167478,17.414,84.1578 +167479,19.301,84.5077 +167480,21.244,84.8865 +167481,14.239,83.8028 +167482,16.08,84.1632 +167483,17.97,84.5501 +167484,19.915,84.9666 +167485,12.905,83.7717 +167486,14.747,84.1686 +167487,16.638,84.5925 +167488,18.586,85.0465 +167489,11.572,83.741 +167490,13.414,84.1742 +167491,15.306,84.6348 +167492,17.254,85.126 +167493,10.241,83.7106 +167494,12.081,84.1798 +167495,13.973,84.677 +167496,15.922,85.2052 +167497,8.9108,83.6804 +167498,10.749,84.1856 +167499,12.64,84.719 +167500,14.588,85.284 +167501,7.5821,83.6507 +167502,9.418,84.1914 +167503,11.306,84.7609 +167504,13.252,85.3625 +167505,6.2548,83.6213 +167506,8.0869,84.1974 +167507,9.9713,84.8027 +167508,11.915,85.4405 +167509,4.9289,83.5923 +167510,6.7563,84.2036 +167511,8.6363,84.8443 +167512,10.576,85.518 +167513,3.6043,83.5638 +167514,5.4262,84.2099 +167515,7.3008,84.8858 +167516,9.2355,85.595 +167517,2.2811,83.5358 +167518,4.0964,84.2163 +167519,5.9648,84.9271 +167520,7.8937,85.6715 +167521,0.95934,83.5082 +167522,2.7671,84.2229 +167523,4.6283,84.9682 +167524,6.5504,85.7475 +167525,359.64,83.4812 +167526,1.4383,84.2297 +167527,3.2913,85.0091 +167528,5.2057,85.8229 +167529,358.32,83.4547 +167530,0.10982,84.2367 +167531,1.9537,85.0498 +167532,3.8594,85.8977 +167533,357,83.4288 +167534,358.78,84.2439 +167535,0.61568,85.0903 +167536,2.5117,85.9718 +167537,355.69,83.4035 +167538,357.45,84.2512 +167539,359.28,85.1306 +167540,1.1625,86.0453 +167541,354.37,83.3788 +167542,356.13,84.2588 +167543,357.94,85.1707 +167544,359.81,86.1181 +167545,353.06,83.3548 +167546,354.8,84.2666 +167547,356.6,85.2105 +167548,358.46,86.1902 +167549,351.74,83.3314 +167550,353.47,84.2746 +167551,355.26,85.2501 +167552,357.11,86.2616 +167553,350.43,83.3088 +167554,352.15,84.2829 +167555,353.92,85.2894 +167556,355.75,86.3321 +167557,349.12,83.2869 +167558,350.82,84.2914 +167559,352.58,85.3285 +167560,354.39,86.4019 +167561,347.81,83.2657 +167562,349.5,84.3002 +167563,351.24,85.3673 +167564,353.04,86.4709 +167565,346.51,83.2453 +167566,348.17,84.3092 +167567,349.89,85.4058 +167568,351.68,86.539 +167569,345.2,83.2257 +167570,346.85,84.3185 +167571,348.55,85.444 +167572,350.32,86.6063 +167573,343.9,83.2069 +167574,345.52,84.328 +167575,347.21,85.4819 +167576,348.96,86.6727 +167577,342.59,83.189 +167578,344.2,84.3379 +167579,345.86,85.5196 +167580,347.59,86.7381 +167581,341.29,83.172 +167582,342.88,84.348 +167583,344.52,85.5569 +167584,346.23,86.8027 +167585,339.99,83.1558 +167586,341.55,84.3584 +167587,343.18,85.5939 +167588,344.86,86.8663 +167589,338.69,83.1405 +167590,340.23,84.3692 +167591,341.83,85.6306 +167592,343.49,86.9289 +167593,337.39,83.1262 +167594,338.91,84.3802 +167595,340.49,85.667 +167596,342.13,86.9905 +167597,336.09,83.1128 +167598,337.59,84.3916 +167599,339.14,85.703 +167600,340.76,87.051 +167601,334.79,83.1004 +167602,336.27,84.4033 +167603,337.79,85.7387 +167604,339.38,87.1106 +167605,333.5,83.089 +167606,334.95,84.4153 +167607,336.45,85.774 +167608,338.01,87.169 +167609,332.2,83.0786 +167610,333.63,84.4276 +167611,335.1,85.809 +167612,336.64,87.2264 +167613,330.91,83.0693 +167614,332.3,84.4404 +167615,333.75,85.8436 +167616,335.26,87.2827 +167617,329.62,83.061 +167618,330.98,84.4534 +167619,332.41,85.8778 +167620,333.89,87.3379 +167621,328.32,83.0537 +167622,329.66,84.4668 +167623,331.06,85.9117 +167624,332.51,87.392 +167625,327.03,83.0476 +167626,328.35,84.4806 +167627,329.71,85.9451 +167628,331.13,87.4449 +167629,325.74,83.0425 +167630,327.03,84.4947 +167631,328.36,85.9782 +167632,329.75,87.4967 +167633,324.45,83.0386 +167634,325.71,84.5092 +167635,327.01,86.0109 +167636,328.37,87.5472 +167637,323.17,83.0358 +167638,324.39,84.5241 +167639,325.66,86.0432 +167640,326.99,87.5966 +167641,321.88,83.0341 +167642,323.07,84.5394 +167643,324.31,86.0751 +167644,325.61,87.6448 +167645,320.59,83.0336 +167646,321.75,84.5551 +167647,322.96,86.1066 +167648,324.23,87.6917 +167649,319.31,83.0343 +167650,320.43,84.5711 +167651,321.61,86.1377 +167652,322.84,87.7374 +167653,318.02,83.0361 +167654,319.12,84.5875 +167655,320.26,86.1684 +167656,321.46,87.7819 +167657,316.74,83.0392 +167658,317.8,84.6044 +167659,318.91,86.1987 +167660,320.07,87.8251 +167661,315.46,83.0435 +167662,316.48,84.6216 +167663,317.56,86.2285 +167664,318.69,87.8671 +167665,314.17,83.049 +167666,315.17,84.6393 +167667,316.2,86.2579 +167668,317.3,87.9078 +167669,312.89,83.0557 +167670,313.85,84.6573 +167671,314.85,86.2869 +167672,315.91,87.9471 +167673,311.61,83.0637 +167674,312.53,84.6758 +167675,313.5,86.3154 +167676,314.52,87.9852 +167677,310.33,83.073 +167678,311.22,84.6947 +167679,312.15,86.3435 +167680,313.13,88.022 +167681,309.05,83.0835 +167682,309.9,84.714 +167683,310.79,86.3712 +167684,311.74,88.0575 +167685,307.77,83.0953 +167686,308.58,84.7337 +167687,309.44,86.3984 +167688,310.35,88.0917 +167689,306.49,83.1083 +167690,307.27,84.7539 +167691,308.09,86.4252 +167692,308.96,88.1245 +167693,305.21,83.1227 +167694,305.95,84.7745 +167695,306.73,86.4515 +167696,307.56,88.1561 +167697,303.94,83.1383 +167698,304.64,84.7955 +167699,305.38,86.4774 +167700,306.17,88.1863 +167701,302.66,83.1553 +167702,303.32,84.8169 +167703,304.02,86.5028 +167704,304.78,88.2151 +167705,301.38,83.1735 +167706,302.01,84.8387 +167707,302.67,86.5278 +167708,303.38,88.2427 +167709,300.11,83.1931 +167710,300.69,84.861 +167711,301.32,86.5524 +167712,301.99,88.2689 +167713,298.83,83.2139 +167714,299.38,84.8838 +167715,299.96,86.5765 +167716,300.59,88.2937 +167717,297.56,83.2361 +167718,298.06,84.9069 +167719,298.61,86.6001 +167720,299.19,88.3172 +167721,296.28,83.2596 +167722,296.75,84.9305 +167723,297.25,86.6233 +167724,297.8,88.3394 +167725,295.01,83.2845 +167726,295.43,84.9545 +167727,295.89,86.646 +167728,296.4,88.3602 +167729,293.73,83.3106 +167730,294.12,84.979 +167731,294.54,86.6683 +167732,295,88.3797 +167733,292.46,83.3381 +167734,292.8,85.0039 +167735,293.18,86.6901 +167736,293.61,88.3979 +167737,291.18,83.3669 +167738,291.49,85.0292 +167739,291.83,86.7115 +167740,292.21,88.4147 +167741,289.91,83.397 +167742,290.17,85.055 +167743,290.47,86.7324 +167744,290.81,88.4302 +167745,288.63,83.4284 +167746,288.86,85.0811 +167747,289.12,86.7529 +167748,289.41,88.4443 +167749,287.36,83.4611 +167750,287.54,85.1078 +167751,287.76,86.7729 +167752,288.02,88.4572 +167753,286.09,83.4952 +167754,286.23,85.1348 +167755,286.4,86.7925 +167756,286.62,88.4687 +167757,284.81,83.5305 +167758,284.91,85.1623 +167759,285.05,86.8116 +167760,285.22,88.4789 +167761,283.54,83.5672 +167762,283.6,85.1902 +167763,283.69,86.8303 +167764,283.82,88.4878 +167765,282.26,83.6051 +167766,282.28,85.2185 +167767,282.34,86.8486 +167768,282.42,88.4955 +167769,280.99,83.6443 +167770,280.97,85.2472 +167771,280.98,86.8664 +167772,281.02,88.5018 +167773,279.72,83.6849 +167774,279.65,85.2764 +167775,279.62,86.8838 +167776,279.62,88.5068 +167777,278.44,83.7267 +167778,278.34,85.306 +167779,278.27,86.9007 +167780,278.23,88.5106 +167781,277.17,83.7697 +167782,277.02,85.336 +167783,276.91,86.9172 +167784,276.83,88.5132 +167785,275.89,83.8141 +167786,275.71,85.3664 +167787,275.55,86.9333 +167788,275.43,88.5144 +167789,274.62,83.8596 +167790,274.39,85.3972 +167791,274.2,86.9489 +167792,274.03,88.5145 +167793,273.34,83.9065 +167794,273.08,85.4284 +167795,272.84,86.9642 +167796,272.63,88.5133 +167797,272.07,83.9545 +167798,271.76,85.46 +167799,271.49,86.979 +167800,271.24,88.5109 +167801,270.79,84.0038 +167802,270.45,85.492 +167803,270.13,86.9934 +167804,269.84,88.5073 +167805,269.52,84.0542 +167806,269.13,85.5244 +167807,268.77,87.0074 +167808,268.44,88.5025 +167809,268.24,84.1059 +167810,267.82,85.5571 +167811,267.42,87.021 +167812,267.04,88.4965 +167813,266.97,84.1587 +167814,266.5,85.5903 +167815,266.06,87.0342 +167816,265.65,88.4894 +167817,265.69,84.2127 +167818,265.18,85.6238 +167819,264.71,87.047 +167820,264.25,88.4811 +167821,264.41,84.2679 +167822,263.87,85.6577 +167823,263.35,87.0594 +167824,262.86,88.4718 +167825,263.13,84.3241 +167826,262.55,85.692 +167827,261.99,87.0714 +167828,261.46,88.4613 +167829,261.86,84.3815 +167830,261.24,85.7266 +167831,260.64,87.083 +167832,260.07,88.4497 +167833,260.58,84.44 +167834,259.92,85.7616 +167835,259.28,87.0943 +167836,258.67,88.437 +167837,259.3,84.4996 +167838,258.6,85.7969 +167839,257.93,87.1052 +167840,257.28,88.4233 +167841,258.02,84.5603 +167842,257.28,85.8326 +167843,256.57,87.1158 +167844,255.89,88.4086 +167845,256.74,84.622 +167846,255.97,85.8686 +167847,255.22,87.126 +167848,254.49,88.3928 +167849,255.46,84.6847 +167850,254.65,85.9049 +167851,253.86,87.1358 +167852,253.1,88.376 +167853,254.17,84.7484 +167854,253.33,85.9415 +167855,252.51,87.1453 +167856,251.71,88.3583 +167857,252.89,84.8132 +167858,252.01,85.9785 +167859,251.15,87.1545 +167860,250.32,88.3396 +167861,251.61,84.8788 +167862,250.69,86.0158 +167863,249.8,87.1633 +167864,248.93,88.3199 +167865,250.32,84.9455 +167866,249.37,86.0534 +167867,248.45,87.1718 +167868,247.54,88.2994 +167869,249.04,85.013 +167870,248.06,86.0912 +167871,247.09,87.1801 +167872,246.15,88.2779 +167873,247.75,85.0815 +167874,246.74,86.1294 +167875,245.74,87.188 +167876,244.77,88.2556 +167877,246.47,85.1508 +167878,245.42,86.1678 +167879,244.39,87.1956 +167880,243.38,88.2324 +167881,245.18,85.221 +167882,244.1,86.2065 +167883,243.03,87.2029 +167884,241.99,88.2085 +167885,243.89,85.292 +167886,242.78,86.2455 +167887,241.68,87.2099 +167888,240.61,88.1837 +167889,242.6,85.3639 +167890,241.45,86.2847 +167891,240.33,87.2167 +167892,239.22,88.1581 +167893,241.31,85.4365 +167894,240.13,86.3242 +167895,238.98,87.2231 +167896,237.84,88.1318 +167897,240.02,85.5098 +167898,238.81,86.3639 +167899,237.62,87.2294 +167900,236.46,88.1047 +167901,238.73,85.5839 +167902,237.49,86.4038 +167903,236.27,87.2354 +167904,235.08,88.077 +167905,237.44,85.6587 +167906,236.17,86.4439 +167907,234.92,87.2411 +167908,233.7,88.0486 +167909,236.14,85.7342 +167910,234.84,86.4843 +167911,233.57,87.2466 +167912,232.32,88.0195 +167913,234.85,85.8104 +167914,233.52,86.5249 +167915,232.22,87.2519 +167916,230.94,87.9898 +167917,233.55,85.8871 +167918,232.2,86.5656 +167919,230.87,87.257 +167920,229.56,87.9595 +167921,232.25,85.9644 +167922,230.87,86.6065 +167923,229.52,87.2618 +167924,228.19,87.9286 +167925,230.96,86.0424 +167926,229.55,86.6477 +167927,228.17,87.2665 +167928,226.81,87.8972 +167929,229.66,86.1208 +167930,228.23,86.6889 +167931,226.82,87.271 +167932,225.44,87.8653 +167933,228.36,86.1998 +167934,226.9,86.7303 +167935,225.47,87.2753 +167936,224.06,87.8329 +167937,227.05,86.2792 +167938,225.58,86.7719 +167939,224.12,87.2794 +167940,222.69,87.8 +167941,225.75,86.3591 +167942,224.25,86.8136 +167943,222.77,87.2834 +167944,221.32,87.7667 +167945,224.45,86.4394 +167946,222.92,86.8554 +167947,221.42,87.2872 +167948,219.95,87.7329 +167949,223.14,86.5201 +167950,221.6,86.8974 +167951,220.08,87.2909 +167952,218.58,87.6988 +167953,221.84,86.6012 +167954,220.27,86.9394 +167955,218.73,87.2944 +167956,217.22,87.6644 +167957,220.53,86.6825 +167958,218.94,86.9816 +167959,217.38,87.2979 +167960,215.85,87.6296 +167961,219.22,86.7642 +167962,217.61,87.0238 +167963,216.04,87.3012 +167964,214.49,87.5945 +167965,217.91,86.8462 +167966,216.29,87.0661 +167967,214.69,87.3044 +167968,213.12,87.5592 +167969,216.6,86.9283 +167970,214.96,87.1085 +167971,213.34,87.3075 +167972,211.76,87.5237 +167973,215.28,87.0107 +167974,213.63,87.1509 +167975,212,87.3106 +167976,210.4,87.4879 +167977,213.97,87.0933 +167978,212.3,87.1933 +167979,210.65,87.3135 +167980,209.04,87.452 +167981,212.66,87.176 +167982,210.97,87.2358 +167983,209.31,87.3164 +167984,207.68,87.4159 +167985,211.34,87.2588 +167986,209.64,87.2783 +167987,207.96,87.3193 +167988,206.32,87.3797 +167989,210.02,87.3417 +167990,208.3,87.3209 +167991,206.62,87.3221 +167992,204.97,87.3434 +167993,208.7,87.4246 +167994,206.97,87.3634 +167995,205.28,87.3249 +167996,203.61,87.3071 +167997,207.38,87.5076 +167998,205.64,87.4059 +167999,203.93,87.3276 +168000,202.26,87.2707 +168001,206.06,87.5905 +168002,204.31,87.4484 +168003,202.59,87.3304 +168004,200.91,87.2343 +168005,204.73,87.6733 +168006,202.97,87.4909 +168007,201.25,87.3331 +168008,199.56,87.198 +168009,203.41,87.7561 +168010,201.64,87.5333 +168011,199.91,87.3359 +168012,198.21,87.1617 +168013,202.08,87.8388 +168014,200.31,87.5757 +168015,198.57,87.3387 +168016,196.86,87.1255 +168017,200.76,87.9213 +168018,198.97,87.618 +168019,197.22,87.3415 +168020,195.51,87.0895 +168021,199.43,88.0036 +168022,197.64,87.6602 +168023,195.88,87.3443 +168024,194.17,87.0536 +168025,198.1,88.0858 +168026,196.3,87.7024 +168027,194.54,87.3472 +168028,192.82,87.0179 +168029,196.76,88.1676 +168030,194.96,87.7444 +168031,193.2,87.3502 +168032,191.48,86.9823 +168033,195.43,88.2492 +168034,193.63,87.7864 +168035,191.86,87.3532 +168036,190.14,86.9471 +168037,194.1,88.3305 +168038,192.29,87.8282 +168039,190.53,87.3563 +168040,188.8,86.9121 +168041,192.76,88.4114 +168042,190.95,87.8699 +168043,189.19,87.3595 +168044,187.46,86.8773 +168045,191.42,88.492 +168046,189.61,87.9115 +168047,187.85,87.3628 +168048,186.12,86.843 +168049,190.08,88.5722 +168050,188.28,87.9529 +168051,186.51,87.3662 +168052,184.79,86.8089 +168053,188.74,88.6519 +168054,186.94,87.9942 +168055,185.17,87.3697 +168056,183.45,86.7753 +168057,187.4,88.7311 +168058,185.6,88.0353 +168059,183.84,87.3733 +168060,182.12,86.7421 +168061,186.06,88.8099 +168062,184.26,88.0762 +168063,182.5,87.3771 +168064,180.79,86.7093 +168065,184.71,88.8881 +168066,182.92,88.117 +168067,181.16,87.381 +168068,179.46,86.6769 +168069,183.37,88.9658 +168070,181.57,88.1575 +168071,179.83,87.3851 +168072,178.13,86.6451 +168073,182.02,89.04285 +168074,180.23,88.1979 +168075,178.49,87.3894 +168076,176.8,86.6138 +168077,180.67,89.1193 +168078,178.89,88.238 +168079,177.16,87.3938 +168080,175.47,86.5831 +168081,179.32,89.1951 +168082,177.55,88.2779 +168083,175.82,87.3984 +168084,174.14,86.5529 +168085,177.97,89.27022 +168086,176.2,88.3175 +168087,174.49,87.4032 +168088,172.82,86.5233 +168089,176.61,89.34463 +168090,174.86,88.357 +168091,173.16,87.4082 +168092,171.5,86.4944 +168093,175.26,89.4183 +168094,173.52,88.3961 +168095,171.82,87.4134 +168096,170.17,86.4661 +168097,173.9,89.49121 +168098,172.17,88.435 +168099,170.49,87.4188 +168100,168.85,86.4385 +168101,172.55,89.56333 +168102,170.83,88.4737 +168103,169.16,87.4245 +168104,167.53,86.4116 +168105,171.19,89.63462 +168106,169.48,88.512 +168107,167.83,87.4304 +168108,166.22,86.3855 +168109,169.83,89.70507 +168110,168.13,88.5501 +168111,166.49,87.4365 +168112,164.9,86.3601 +168113,168.47,89.77464 +168114,166.79,88.5878 +168115,165.16,87.4429 +168116,163.58,86.3355 +168117,167.1,89.84331 +168118,165.44,88.6253 +168119,163.83,87.4496 +168120,162.27,86.3117 +168121,165.74,89.91105 +168122,164.09,88.6624 +168123,162.5,87.4565 +168124,160.95,86.2887 +168125,164.37,89.977843 +168126,162.75,88.6992 +168127,161.17,87.4637 +168128,159.64,86.2666 +168129,163.01,90.043659 +168130,161.4,88.7357 +168131,159.84,87.4712 +168132,158.33,86.2454 +168133,161.64,90.10848 +168134,160.05,88.7718 +168135,158.51,87.479 +168136,157.02,86.2251 +168137,160.27,90.17227 +168138,158.7,88.8076 +168139,157.18,87.4871 +168140,155.71,86.2057 +168141,158.9,90.23501 +168142,157.35,88.8431 +168143,155.85,87.4955 +168144,154.4,86.1873 +168145,157.53,90.29669 +168146,156,88.8781 +168147,154.52,87.5042 +168148,153.1,86.1698 +168149,156.16,90.35727 +168150,154.65,88.9128 +168151,153.2,87.5132 +168152,151.79,86.1533 +168153,154.78,90.41675 +168154,153.3,88.9472 +168155,151.87,87.5225 +168156,150.49,86.1378 +168157,153.41,90.47509 +168158,151.95,88.9811 +168159,150.54,87.5322 +168160,149.18,86.1233 +168161,152.03,90.53227 +168162,150.6,89.01466 +168163,149.21,87.5423 +168164,147.88,86.1099 +168165,150.66,90.58828 +168166,149.24,89.04781 +168167,147.89,87.5526 +168168,146.58,86.0976 +168169,149.28,90.6431 +168170,147.89,89.08056 +168171,146.56,87.5634 +168172,145.28,86.0863 +168173,147.9,90.69672 +168174,146.54,89.11291 +168175,145.23,87.5744 +168176,143.98,86.0762 +168177,146.52,90.7491 +168178,145.18,89.14483 +168179,143.91,87.5859 +168180,142.68,86.0671 +168181,145.14,90.80024 +168182,143.83,89.17634 +168183,142.58,87.5977 +168184,141.38,86.0592 +168185,143.75,90.85012 +168186,142.48,89.20741 +168187,141.26,87.6099 +168188,140.08,86.0525 +168189,142.37,90.89872 +168190,141.12,89.23806 +168191,139.93,87.6225 +168192,138.78,86.0469 +168193,140.99,90.94603 +168194,139.77,89.26827 +168195,138.61,87.6355 +168196,137.49,86.0425 +168197,139.6,90.99204 +168198,138.41,89.29804 +168199,137.28,87.6488 +168200,136.19,86.0393 +168201,138.21,91.0367 +168202,137.06,89.32736 +168203,135.96,87.6626 +168204,134.9,86.0373 +168205,136.83,91.0801 +168206,135.7,89.35623 +168207,134.63,87.6767 +168208,133.61,86.0366 +168209,135.44,91.1221 +168210,134.35,89.38464 +168211,133.31,87.6913 +168212,132.31,86.037 +168213,134.05,91.1628 +168214,132.99,89.4126 +168215,131.98,87.7062 +168216,131.02,86.0388 +168217,132.66,91.202 +168218,131.63,89.4401 +168219,130.66,87.7216 +168220,129.73,86.0417 +168221,131.27,91.24 +168222,130.28,89.46712 +168223,129.34,87.7374 +168224,128.44,86.046 +168225,129.88,91.2765 +168226,128.92,89.49368 +168227,128.01,87.7536 +168228,127.15,86.0515 +168229,128.49,91.3116 +168230,127.56,89.51977 +168231,126.69,87.7702 +168232,125.86,86.0584 +168233,127.09,91.3454 +168234,126.2,89.54538 +168235,125.37,87.7873 +168236,124.57,86.0665 +168237,125.7,91.3777 +168238,124.85,89.57051 +168239,124.04,87.8047 +168240,123.28,86.0759 +168241,124.31,91.4086 +168242,123.49,89.59516 +168243,122.72,87.8226 +168244,122,86.0867 +168245,122.91,91.4382 +168246,122.13,89.61933 +168247,121.4,87.8409 +168248,120.71,86.0988 +168249,121.52,91.4662 +168250,120.77,89.64302 +168251,120.08,87.8597 +168252,119.42,86.1122 +168253,120.12,91.4929 +168254,119.41,89.66622 +168255,118.75,87.8789 +168256,118.13,86.1269 +168257,118.72,91.5181 +168258,118.05,89.68893 +168259,117.43,87.8985 +168260,116.85,86.143 +168261,117.33,91.5419 +168262,116.7,89.71116 +168263,116.11,87.9186 +168264,115.56,86.1604 +168265,115.93,91.5643 +168266,115.34,89.73289 +168267,114.79,87.9391 +168268,114.28,86.1792 +168269,114.53,91.5852 +168270,113.98,89.75414 +168271,113.47,87.96 +168272,112.99,86.1993 +168273,113.13,91.6047 +168274,112.62,89.7749 +168275,112.14,87.9813 +168276,111.71,86.2208 +168277,111.74,91.6228 +168278,111.26,89.79516 +168279,110.82,88.0032 +168280,110.42,86.2436 +168281,110.34,91.6394 +168282,109.9,89.81494 +168283,109.5,88.0254 +168284,109.14,86.2678 +168285,108.94,91.6546 +168286,108.54,89.83422 +168287,108.18,88.0481 +168288,107.85,86.2933 +168289,107.54,91.6684 +168290,107.18,89.85302 +168291,106.86,88.0712 +168292,106.57,86.3202 +168293,106.14,91.6808 +168294,105.82,89.87133 +168295,105.53,88.0947 +168296,105.29,86.3484 +168297,104.74,91.6917 +168298,104.46,89.88915 +168299,104.21,88.1187 +168300,104,86.378 +168301,103.34,91.7012 +168302,103.1,89.906488 +168303,102.89,88.1431 +168304,102.72,86.4089 +168305,101.94,91.7094 +168306,101.74,89.923339 +168307,101.57,88.168 +168308,101.44,86.4412 +168309,100.54,91.7161 +168310,100.38,89.939708 +168311,100.25,88.1933 +168312,100.15,86.4748 +168313,99.138,91.7214 +168314,99.015,89.955596 +168315,98.926,88.219 +168316,98.869,86.5097 +168317,97.738,91.7254 +168318,97.654,89.971006 +168319,97.605,88.2451 +168320,97.586,86.546 +168321,96.338,91.7279 +168322,96.294,89.98594 +168323,96.283,88.2717 +168324,96.302,86.5836 +168325,94.937,91.7291 +168326,94.933,90.00040058 +168327,94.961,88.2986 +168328,95.018,86.6225 +168329,93.537,91.729 +168330,93.572,90.014391 +168331,93.639,88.326 +168332,93.735,86.6627 +168333,92.137,91.7275 +168334,92.212,90.027915 +168335,92.317,88.3538 +168336,92.451,86.7042 +168337,90.737,91.7247 +168338,90.851,90.040975 +168339,90.995,88.3821 +168340,91.167,86.747 +168341,89.337,91.7205 +168342,89.49,90.053576 +168343,89.673,88.4107 +168344,89.882,86.7911 +168345,87.937,91.7151 +168346,88.129,90.06572 +168347,88.35,88.4397 +168348,88.598,86.8365 +168349,86.538,91.7084 +168350,86.769,90.077413 +168351,87.028,88.4692 +168352,87.313,86.8831 +168353,85.138,91.7003 +168354,85.408,90.088657 +168355,85.705,88.499 +168356,86.027,86.9309 +168357,83.739,91.691 +168358,84.048,90.099459 +168359,84.383,88.5292 +168360,84.742,86.98 +168361,82.34,91.6805 +168362,82.687,90.10982 +168363,83.06,88.5598 +168364,83.456,87.0303 +168365,80.942,91.6687 +168366,81.327,90.11975 +168367,81.737,88.5908 +168368,82.17,87.0818 +168369,79.544,91.6558 +168370,79.967,90.12926 +168371,80.413,88.6222 +168372,80.883,87.1345 +168373,78.146,91.6416 +168374,78.606,90.13834 +168375,79.09,88.6539 +168376,79.596,87.1884 +168377,76.749,91.6262 +168378,77.246,90.147 +168379,77.767,88.686 +168380,78.309,87.2435 +168381,75.352,91.6097 +168382,75.886,90.15525 +168383,76.443,88.7184 +168384,77.021,87.2997 +168385,73.956,91.592 +168386,74.527,90.1631 +168387,75.119,88.7513 +168388,75.732,87.357 +168389,72.56,91.5732 +168390,73.167,90.17054 +168391,73.795,88.7844 +168392,74.443,87.4154 +168393,71.165,91.5533 +168394,71.807,90.1776 +168395,72.47,88.8179 +168396,73.153,87.475 +168397,69.77,91.5323 +168398,70.448,90.18426 +168399,71.146,88.8518 +168400,71.863,87.5356 +168401,68.376,91.5103 +168402,69.089,90.19055 +168403,69.821,88.8859 +168404,70.572,87.5972 +168405,66.983,91.4872 +168406,67.73,90.19647 +168407,68.496,88.9204 +168408,69.281,87.6599 +168409,65.59,91.4631 +168410,66.371,90.20202 +168411,67.171,88.9552 +168412,67.988,87.7236 +168413,64.198,91.438 +168414,65.012,90.20721 +168415,65.845,88.9903 +168416,66.695,87.7883 +168417,62.806,91.412 +168418,63.654,90.21205 +168419,64.519,89.02572 +168420,65.402,87.854 +168421,61.416,91.385 +168422,62.295,90.21655 +168423,63.193,89.06141 +168424,64.107,87.9206 +168425,60.026,91.357 +168426,60.937,90.22072 +168427,61.866,89.09739 +168428,62.812,87.9882 +168429,58.636,91.3282 +168430,59.579,90.22455 +168431,60.54,89.13364 +168432,61.516,88.0566 +168433,57.248,91.2985 +168434,58.222,90.22807 +168435,59.213,89.17016 +168436,60.219,88.126 +168437,55.86,91.2679 +168438,56.864,90.23128 +168439,57.885,89.20694 +168440,58.922,88.1961 +168441,54.474,91.2365 +168442,55.507,90.23418 +168443,56.557,89.24397 +168444,57.623,88.2671 +168445,53.088,91.2043 +168446,54.15,90.23679 +168447,55.229,89.28124 +168448,56.324,88.339 +168449,51.703,91.1714 +168450,52.794,90.23911 +168451,53.901,89.31874 +168452,55.024,88.4116 +168453,50.319,91.1377 +168454,51.437,90.24116 +168455,52.572,89.35647 +168456,53.723,88.4849 +168457,48.936,91.1033 +168458,50.081,90.24294 +168459,51.243,89.39441 +168460,52.42,88.559 +168461,47.553,91.0682 +168462,48.726,90.24446 +168463,49.914,89.43256 +168464,51.117,88.6337 +168465,46.172,91.0324 +168466,47.37,90.24574 +168467,48.584,89.4709 +168468,49.813,88.7092 +168469,44.792,90.99598 +168470,46.015,90.24677 +168471,47.254,89.50943 +168472,48.508,88.7853 +168473,43.413,90.95897 +168474,44.66,90.24757 +168475,45.923,89.54813 +168476,47.202,88.862 +168477,42.035,90.92138 +168478,43.305,90.24815 +168479,44.593,89.587 +168480,45.895,88.9393 +168481,40.657,90.88324 +168482,41.951,90.24852 +168483,43.261,89.62603 +168484,44.587,89.01709 +168485,39.281,90.84458 +168486,40.597,90.24869 +168487,41.93,89.66521 +168488,43.277,89.09545 +168489,37.906,90.80543 +168490,39.244,90.24866 +168491,40.597,89.70452 +168492,41.967,89.17431 +168493,36.532,90.76582 +168494,37.89,90.24846 +168495,39.265,89.74396 +168496,40.655,89.25364 +168497,35.159,90.72578 +168498,36.537,90.24808 +168499,37.932,89.78351 +168500,39.343,89.3334 +168501,33.788,90.68534 +168502,35.185,90.24753 +168503,36.599,89.82318 +168504,38.029,89.41357 +168505,32.417,90.64452 +168506,33.832,90.24684 +168507,35.265,89.86294 +168508,36.714,89.49411 +168509,31.048,90.60337 +168510,32.481,90.246 +168511,33.931,89.902779 +168512,35.398,89.57499 +168513,29.679,90.5619 +168514,31.129,90.24504 +168515,32.596,89.942698 +168516,34.08,89.65619 +168517,28.312,90.52015 +168518,29.778,90.24395 +168519,31.261,89.98268 +168520,32.762,89.73766 +168521,26.946,90.47815 +168522,28.427,90.24275 +168523,29.926,90.022716 +168524,31.442,89.81938 +168525,25.582,90.43594 +168526,27.076,90.24144 +168527,28.59,90.062795 +168528,30.121,89.90131 +168529,24.218,90.39353 +168530,25.726,90.24005 +168531,27.254,90.10291 +168532,28.799,89.983423 +168533,22.856,90.35097 +168534,24.377,90.23858 +168535,25.917,90.14304 +168536,27.476,90.065685 +168537,21.495,90.30828 +168538,23.027,90.23704 +168539,24.58,90.18318 +168540,26.151,90.14806 +168541,20.135,90.26549 +168542,21.678,90.23544 +168543,23.242,90.22332 +168544,24.825,90.23052 +168545,18.776,90.22264 +168546,20.33,90.23378 +168547,21.904,90.26345 +168548,23.498,90.31303 +168549,17.419,90.17975 +168550,18.981,90.2321 +168551,20.565,90.30355 +168552,22.17,90.39556 +168553,16.062,90.13686 +168554,17.633,90.23038 +168555,19.226,90.34363 +168556,20.84,90.47807 +168557,14.707,90.093995 +168558,16.286,90.22865 +168559,17.886,90.38365 +168560,19.509,90.56053 +168561,13.354,90.05119 +168562,14.939,90.22691 +168563,16.546,90.42362 +168564,18.176,90.64291 +168565,12.001,90.0084738 +168566,13.592,90.22517 +168567,15.206,90.46353 +168568,16.843,90.72516 +168569,10.65,89.965878 +168570,12.246,90.22345 +168571,13.865,90.50336 +168572,15.508,90.80727 +168573,9.3002,89.923432 +168574,10.9,90.22175 +168575,12.524,90.54309 +168576,14.172,90.8892 +168577,7.9515,89.88117 +168578,9.5546,90.22008 +168579,11.182,90.58273 +168580,12.834,90.9709 +168581,6.6041,89.83912 +168582,8.2094,90.21847 +168583,9.8395,90.62226 +168584,11.495,91.0524 +168585,5.2579,89.7973 +168586,6.8647,90.21691 +168587,8.4967,90.66167 +168588,10.155,91.1335 +168589,3.913,89.75577 +168590,5.5204,90.21541 +168591,7.1534,90.70094 +168592,8.8132,91.2144 +168593,2.5694,89.71453 +168594,4.1765,90.21399 +168595,5.8097,90.74007 +168596,7.4703,91.2949 +168597,1.227,89.67362 +168598,2.8329,90.21266 +168599,4.4655,90.77905 +168600,6.1261,91.375 +168601,359.89,89.63308 +168602,1.4898,90.21142 +168603,3.1208,90.81786 +168604,4.7806,91.4547 +168605,358.55,89.59293 +168606,0.147,90.21029 +168607,1.7756,90.8565 +168608,3.4337,91.5339 +168609,357.21,89.5532 +168610,358.8,90.20928 +168611,0.43,90.89495 +168612,2.0855,91.6127 +168613,355.87,89.51392 +168614,357.46,90.20839 +168615,359.08,90.9332 +168616,0.73595,91.6909 +168617,354.53,89.47512 +168618,356.12,90.20764 +168619,357.74,90.97125 +168620,359.39,91.7686 +168621,353.2,89.43683 +168622,354.78,90.20704 +168623,356.39,91.0091 +168624,358.03,91.8458 +168625,351.87,89.39907 +168626,353.44,90.20659 +168627,355.04,91.0467 +168628,356.68,91.9223 +168629,350.53,89.36188 +168630,352.1,90.20631 +168631,353.69,91.084 +168632,355.32,91.9981 +168633,349.2,89.32527 +168634,350.76,90.2062 +168635,352.35,91.1212 +168636,353.97,92.0733 +168637,347.87,89.28929 +168638,349.42,90.20628 +168639,351,91.158 +168640,352.61,92.1478 +168641,346.54,89.25396 +168642,348.08,90.20656 +168643,349.65,91.1946 +168644,351.25,92.2216 +168645,345.21,89.2193 +168646,346.74,90.20703 +168647,348.3,91.2309 +168648,349.89,92.2946 +168649,343.89,89.18534 +168650,345.4,90.20772 +168651,346.95,91.2669 +168652,348.53,92.3668 +168653,342.56,89.1521 +168654,344.06,90.20863 +168655,345.6,91.3027 +168656,347.17,92.4381 +168657,341.24,89.11962 +168658,342.73,90.20977 +168659,344.25,91.3381 +168660,345.81,92.5086 +168661,339.92,89.08792 +168662,341.39,90.21114 +168663,342.9,91.3732 +168664,344.44,92.5782 +168665,338.59,89.05702 +168666,340.05,90.21277 +168667,341.54,91.408 +168668,343.07,92.647 +168669,337.27,89.02695 +168670,338.71,90.21465 +168671,340.19,91.4424 +168672,341.71,92.7147 +168673,335.95,88.9977 +168674,337.38,90.21679 +168675,338.84,91.4765 +168676,340.34,92.7815 +168677,334.63,88.9694 +168678,336.04,90.21921 +168679,337.48,91.5103 +168680,338.97,92.8473 +168681,333.32,88.9419 +168682,334.71,90.2219 +168683,336.13,91.5437 +168684,337.6,92.9121 +168685,332,88.9154 +168686,333.37,90.22489 +168687,334.78,91.5767 +168688,336.22,92.9759 +168689,330.68,88.8898 +168690,332.04,90.22816 +168691,333.42,91.6094 +168692,334.85,93.0386 +168693,329.37,88.8652 +168694,330.7,90.23175 +168695,332.07,91.6416 +168696,333.48,93.1001 +168697,328.06,88.8416 +168698,329.37,90.23564 +168699,330.71,91.6735 +168700,332.1,93.1606 +168701,326.74,88.819 +168702,328.03,90.23985 +168703,329.36,91.705 +168704,330.72,93.2199 +168705,325.43,88.7974 +168706,326.7,90.24438 +168707,328,91.736 +168708,329.35,93.278 +168709,324.12,88.7769 +168710,325.36,90.24925 +168711,326.64,91.7667 +168712,327.97,93.335 +168713,322.81,88.7575 +168714,324.03,90.25445 +168715,325.29,91.7969 +168716,326.59,93.3907 +168717,321.5,88.7391 +168718,322.7,90.26 +168719,323.93,91.8267 +168720,325.21,93.4452 +168721,320.19,88.7218 +168722,321.37,90.2659 +168723,322.57,91.8561 +168724,323.82,93.4985 +168725,318.89,88.7057 +168726,320.03,90.27215 +168727,321.22,91.885 +168728,322.44,93.5505 +168729,317.58,88.6907 +168730,318.7,90.27877 +168731,319.86,91.9135 +168732,321.06,93.6012 +168733,316.28,88.6769 +168734,317.37,90.28575 +168735,318.5,91.9415 +168736,319.67,93.6505 +168737,314.97,88.6643 +168738,316.04,90.29311 +168739,317.14,91.9691 +168740,318.29,93.6986 +168741,313.67,88.6528 +168742,314.71,90.30085 +168743,315.78,91.9962 +168744,316.9,93.7453 +168745,312.36,88.6426 +168746,313.37,90.30897 +168747,314.42,92.0228 +168748,315.51,93.7906 +168749,311.06,88.6336 +168750,312.04,90.31748 +168751,313.06,92.049 +168752,314.12,93.8346 +168753,309.76,88.6258 +168754,310.71,90.32639 +168755,311.7,92.0747 +168756,312.73,93.8772 +168757,308.46,88.6193 +168758,309.38,90.33569 +168759,310.34,92.0999 +168760,311.34,93.9183 +168761,307.16,88.614 +168762,308.05,90.34539 +168763,308.98,92.1246 +168764,309.95,93.9581 +168765,305.86,88.61 +168766,306.72,90.3555 +168767,307.62,92.1488 +168768,308.56,93.9964 +168769,304.56,88.6073 +168770,305.39,90.36602 +168771,306.26,92.1725 +168772,307.17,94.0332 +168773,303.26,88.6059 +168774,304.06,90.37695 +168775,304.9,92.1957 +168776,305.78,94.0686 +168777,301.96,88.6058 +168778,302.73,90.3883 +168779,303.54,92.2184 +168780,304.38,94.1026 +168781,300.66,88.6071 +168782,301.4,90.40007 +168783,302.17,92.2406 +168784,302.99,94.135 +168785,299.37,88.6096 +168786,300.07,90.41226 +168787,300.81,92.2622 +168788,301.59,94.166 +168789,298.07,88.6135 +168790,298.74,90.42488 +168791,299.45,92.2834 +168792,300.2,94.1955 +168793,296.78,88.6187 +168794,297.41,90.43792 +168795,298.09,92.3041 +168796,298.8,94.2235 +168797,295.48,88.6253 +168798,296.08,90.4514 +168799,296.72,92.3242 +168800,297.4,94.25 +168801,294.18,88.6333 +168802,294.76,90.4653 +168803,295.36,92.3438 +168804,296.01,94.2749 +168805,292.89,88.6426 +168806,293.43,90.47964 +168807,294,92.3629 +168808,294.61,94.2984 +168809,291.6,88.6532 +168810,292.1,90.49442 +168811,292.63,92.3814 +168812,293.21,94.3203 +168813,290.3,88.6653 +168814,290.77,90.50962 +168815,291.27,92.3995 +168816,291.81,94.3407 +168817,289.01,88.6787 +168818,289.44,90.52527 +168819,289.91,92.417 +168820,290.41,94.3596 +168821,287.71,88.6935 +168822,288.11,90.54135 +168823,288.54,92.434 +168824,289.01,94.377 +168825,286.42,88.7096 +168826,286.78,90.55788 +168827,287.18,92.4504 +168828,287.61,94.3928 +168829,285.13,88.7272 +168830,285.46,90.57484 +168831,285.82,92.4663 +168832,286.21,94.4071 +168833,283.83,88.7461 +168834,284.13,90.59224 +168835,284.45,92.4817 +168836,284.81,94.4199 +168837,282.54,88.7664 +168838,282.8,90.61007 +168839,283.09,92.4966 +168840,283.41,94.4311 +168841,281.25,88.7881 +168842,281.47,90.62835 +168843,281.72,92.5109 +168844,282.01,94.4409 +168845,279.96,88.8112 +168846,280.14,90.64706 +168847,280.36,92.5247 +168848,280.61,94.4491 +168849,278.66,88.8357 +168850,278.81,90.6662 +168851,278.99,92.538 +168852,279.21,94.4558 +168853,277.37,88.8615 +168854,277.49,90.68579 +168855,277.63,92.5508 +168856,277.8,94.461 +168857,276.08,88.8887 +168858,276.16,90.7058 +168859,276.26,92.563 +168860,276.4,94.4647 +168861,274.79,88.9173 +168862,274.83,90.72625 +168863,274.9,92.5747 +168864,275,94.4669 +168865,273.49,88.9472 +168866,273.5,90.74712 +168867,273.53,92.5859 +168868,273.6,94.4676 +168869,272.2,88.9785 +168870,272.17,90.76843 +168871,272.17,92.5966 +168872,272.2,94.4668 +168873,270.91,89.01115 +168874,270.84,90.79015 +168875,270.81,92.6068 +168876,270.8,94.4646 +168877,269.62,89.04513 +168878,269.52,90.81231 +168879,269.44,92.6164 +168880,269.39,94.4609 +168881,268.32,89.08045 +168882,268.19,90.83488 +168883,268.08,92.6256 +168884,267.99,94.4558 +168885,267.03,89.11711 +168886,266.86,90.85786 +168887,266.71,92.6342 +168888,266.59,94.4492 +168889,265.74,89.15508 +168890,265.53,90.88126 +168891,265.35,92.6423 +168892,265.19,94.4412 +168893,264.44,89.19436 +168894,264.2,90.90507 +168895,263.98,92.65 +168896,263.79,94.4317 +168897,263.15,89.23494 +168898,262.87,90.92929 +168899,262.62,92.6571 +168900,262.39,94.4209 +168901,261.85,89.2768 +168902,261.54,90.9539 +168903,261.25,92.6638 +168904,260.99,94.4087 +168905,260.56,89.31995 +168906,260.21,90.97891 +168907,259.89,92.6699 +168908,259.59,94.3951 +168909,259.26,89.36435 +168910,258.88,91.0043 +168911,258.52,92.6756 +168912,258.18,94.3802 +168913,257.97,89.41001 +168914,257.55,91.0301 +168915,257.16,92.6808 +168916,256.78,94.3639 +168917,256.67,89.45691 +168918,256.22,91.0563 +168919,255.79,92.6856 +168920,255.39,94.3463 +168921,255.38,89.50503 +168922,254.89,91.0828 +168923,254.43,92.6898 +168924,253.99,94.3274 +168925,254.08,89.55435 +168926,253.56,91.1098 +168927,253.07,92.6936 +168928,252.59,94.3072 +168929,252.78,89.60487 +168930,252.23,91.1371 +168931,251.7,92.697 +168932,251.19,94.2858 +168933,251.49,89.65657 +168934,250.9,91.1647 +168935,250.34,92.6999 +168936,249.79,94.263 +168937,250.19,89.70942 +168938,249.57,91.1927 +168939,248.97,92.7024 +168940,248.39,94.2391 +168941,248.89,89.76341 +168942,248.24,91.2211 +168943,247.61,92.7044 +168944,247,94.214 +168945,247.59,89.81853 +168946,246.91,91.2498 +168947,246.25,92.706 +168948,245.6,94.1876 +168949,246.29,89.87475 +168950,245.58,91.2788 +168951,244.88,92.7072 +168952,244.2,94.1602 +168953,244.99,89.932059 +168954,244.25,91.3082 +168955,243.52,92.7079 +168956,242.81,94.1315 +168957,243.69,89.9904306 +168958,242.92,91.3379 +168959,242.16,92.7083 +168960,241.41,94.1018 +168961,242.39,90.049847 +168962,241.59,91.3679 +168963,240.8,92.7082 +168964,240.02,94.0709 +168965,241.09,90.11029 +168966,240.25,91.3982 +168967,239.43,92.7078 +168968,238.63,94.039 +168969,239.78,90.17173 +168970,238.92,91.4288 +168971,238.07,92.707 +168972,237.24,94.006 +168973,238.48,90.23415 +168974,237.59,91.4597 +168975,236.71,92.7058 +168976,235.84,93.9721 +168977,237.17,90.29752 +168978,236.25,91.4909 +168979,235.35,92.7042 +168980,234.45,93.9371 +168981,235.87,90.36183 +168982,234.92,91.5223 +168983,233.99,92.7022 +168984,233.06,93.9011 +168985,234.56,90.42705 +168986,233.59,91.5541 +168987,232.62,92.7 +168988,231.67,93.8642 +168989,233.26,90.49316 +168990,232.25,91.586 +168991,231.26,92.6973 +168992,230.28,93.8264 +168993,231.95,90.56012 +168994,230.92,91.6183 +168995,229.9,92.6943 +168996,228.9,93.7877 +168997,230.64,90.62792 +168998,229.58,91.6508 +168999,228.54,92.691 +169000,227.51,93.7481 +169001,229.33,90.69652 +169002,228.25,91.6835 +169003,227.18,92.6874 +169004,226.12,93.7077 +169005,228.02,90.76591 +169006,226.91,91.7164 +169007,225.82,92.6835 +169008,224.74,93.6665 +169009,226.71,90.83605 +169010,225.58,91.7495 +169011,224.46,92.6793 +169012,223.35,93.6245 +169013,225.39,90.90693 +169014,224.24,91.7829 +169015,223.1,92.6748 +169016,221.97,93.5817 +169017,224.08,90.9785 +169018,222.91,91.8164 +169019,221.74,92.67 +169020,220.59,93.5383 +169021,222.77,91.0507 +169022,221.57,91.8501 +169023,220.38,92.6649 +169024,219.21,93.4941 +169025,221.45,91.1236 +169026,220.23,91.8841 +169027,219.02,92.6596 +169028,217.82,93.4493 +169029,220.14,91.1971 +169030,218.9,91.9181 +169031,217.67,92.654 +169032,216.45,93.4038 +169033,218.82,91.2712 +169034,217.56,91.9523 +169035,216.31,92.6482 +169036,215.07,93.3578 +169037,217.5,91.3459 +169038,216.22,91.9867 +169039,214.95,92.6421 +169040,213.69,93.3112 +169041,216.18,91.421 +169042,214.88,92.0212 +169043,213.59,92.6358 +169044,212.31,93.264 +169045,214.86,91.4967 +169046,213.54,92.0558 +169047,212.24,92.6294 +169048,210.94,93.2163 +169049,213.54,91.5728 +169050,212.2,92.0906 +169051,210.88,92.6227 +169052,209.56,93.1682 +169053,212.21,91.6494 +169054,210.86,92.1254 +169055,209.52,92.6158 +169056,208.19,93.1196 +169057,210.89,91.7263 +169058,209.52,92.1604 +169059,208.17,92.6087 +169060,206.82,93.0706 +169061,209.57,91.8037 +169062,208.18,92.1954 +169063,206.81,92.6015 +169064,205.45,93.0212 +169065,208.24,91.8813 +169066,206.84,92.2305 +169067,205.46,92.5941 +169068,204.08,92.9714 +169069,206.91,91.9593 +169070,205.5,92.2656 +169071,204.1,92.5866 +169072,202.71,92.9214 +169073,205.58,92.0375 +169074,204.16,92.3008 +169075,202.75,92.5789 +169076,201.34,92.871 +169077,204.25,92.116 +169078,202.82,92.3361 +169079,201.39,92.5711 +169080,199.97,92.8204 +169081,202.92,92.1947 +169082,201.48,92.3713 +169083,200.04,92.5632 +169084,198.61,92.7696 +169085,201.59,92.2736 +169086,200.13,92.4066 +169087,198.68,92.5552 +169088,197.25,92.7186 +169089,200.26,92.3526 +169090,198.79,92.4419 +169091,197.33,92.5471 +169092,195.88,92.6674 +169093,198.92,92.4317 +169094,197.45,92.4772 +169095,195.98,92.5389 +169096,194.52,92.6161 +169097,197.59,92.5109 +169098,196.1,92.5124 +169099,194.62,92.5306 +169100,193.16,92.5647 +169101,196.25,92.5901 +169102,194.76,92.5477 +169103,193.27,92.5223 +169104,191.8,92.5132 +169105,194.91,92.6694 +169106,193.41,92.5829 +169107,191.92,92.5139 +169108,190.44,92.4617 +169109,193.57,92.7486 +169110,192.07,92.618 +169111,190.57,92.5055 +169112,189.09,92.4102 +169113,192.23,92.8277 +169114,190.72,92.6531 +169115,189.22,92.4971 +169116,187.73,92.3588 +169117,190.89,92.9067 +169118,189.37,92.6881 +169119,187.87,92.4886 +169120,186.38,92.3074 +169121,189.55,92.9857 +169122,188.03,92.723 +169123,186.52,92.4801 +169124,185.02,92.2561 +169125,188.2,93.0644 +169126,186.68,92.7578 +169127,185.17,92.4717 +169128,183.67,92.205 +169129,186.86,93.143 +169130,185.33,92.7926 +169131,183.82,92.4632 +169132,182.32,92.154 +169133,185.51,93.2213 +169134,183.98,92.8272 +169135,182.47,92.4548 +169136,180.97,92.1032 +169137,184.16,93.2993 +169138,182.64,92.8616 +169139,181.12,92.4464 +169140,179.62,92.0526 +169141,182.81,93.3771 +169142,181.29,92.896 +169143,179.77,92.4381 +169144,178.27,92.0023 +169145,181.46,93.4545 +169146,179.94,92.9301 +169147,178.42,92.4298 +169148,176.93,91.9522 +169149,180.11,93.5315 +169150,178.59,92.9641 +169151,177.08,92.4216 +169152,175.58,91.9025 +169153,178.76,93.6082 +169154,177.24,92.998 +169155,175.73,92.4134 +169156,174.24,91.8532 +169157,177.41,93.6844 +169158,175.89,93.0316 +169159,174.38,92.4054 +169160,172.9,91.8042 +169161,176.05,93.7601 +169162,174.53,93.0651 +169163,173.04,92.3974 +169164,171.55,91.7556 +169165,174.69,93.8353 +169166,173.18,93.0983 +169167,171.69,92.3896 +169168,170.21,91.7075 +169169,173.34,93.91 +169170,171.83,93.1313 +169171,170.34,92.3819 +169172,168.88,91.6599 +169173,171.98,93.9841 +169174,170.48,93.1641 +169175,169,92.3743 +169176,167.54,91.6127 +169177,170.62,94.0576 +169178,169.13,93.1967 +169179,167.65,92.3668 +169180,166.2,91.5661 +169181,169.25,94.1305 +169182,167.77,93.229 +169183,166.31,92.3595 +169184,164.87,91.52 +169185,167.89,94.2026 +169186,166.42,93.261 +169187,164.97,92.3524 +169188,163.53,91.4745 +169189,166.53,94.2741 +169190,165.06,93.2928 +169191,163.62,92.3454 +169192,162.2,91.4297 +169193,165.16,94.3449 +169194,163.71,93.3243 +169195,162.28,92.3386 +169196,160.87,91.3855 +169197,163.8,94.4149 +169198,162.36,93.3555 +169199,160.94,92.332 +169200,159.54,91.3419 +169201,162.43,94.4841 +169202,161,93.3864 +169203,159.59,92.3256 +169204,158.21,91.2991 +169205,161.06,94.5525 +169206,159.64,93.417 +169207,158.25,92.3194 +169208,156.88,91.257 +169209,159.69,94.62 +169210,158.29,93.4472 +169211,156.91,92.3135 +169212,155.55,91.2156 +169213,158.32,94.6866 +169214,156.93,93.4772 +169215,155.57,92.3077 +169216,154.22,91.175 +169217,156.95,94.7523 +169218,155.57,93.5068 +169219,154.22,92.3022 +169220,152.9,91.1353 +169221,155.57,94.817 +169222,154.22,93.536 +169223,152.88,92.297 +169224,151.57,91.0963 +169225,154.2,94.8808 +169226,152.86,93.5649 +169227,151.54,92.2919 +169228,150.25,91.0582 +169229,152.82,94.9436 +169230,151.5,93.5934 +169231,150.2,92.2872 +169232,148.93,91.021 +169233,151.45,95.0053 +169234,150.14,93.6215 +169235,148.86,92.2827 +169236,147.6,90.98472 +169237,150.07,95.066 +169238,148.78,93.6493 +169239,147.52,92.2785 +169240,146.28,90.94934 +169241,148.69,95.1256 +169242,147.42,93.6766 +169243,146.18,92.2746 +169244,144.96,90.91492 +169245,147.31,95.184 +169246,146.06,93.7036 +169247,144.84,92.271 +169248,143.65,90.88148 +169249,145.93,95.2414 +169250,144.7,93.7301 +169251,143.51,92.2676 +169252,142.33,90.84903 +169253,144.55,95.2975 +169254,143.34,93.7563 +169255,142.17,92.2646 +169256,141.01,90.8176 +169257,143.17,95.3525 +169258,141.98,93.782 +169259,140.83,92.2619 +169260,139.7,90.78721 +169261,141.78,95.4063 +169262,140.62,93.8072 +169263,139.49,92.2595 +169264,138.38,90.75788 +169265,140.4,95.4588 +169266,139.26,93.832 +169267,138.15,92.2575 +169268,137.07,90.72963 +169269,139.01,95.51 +169270,137.9,93.8564 +169271,136.81,92.2558 +169272,135.75,90.70249 +169273,137.63,95.56 +169274,136.54,93.8803 +169275,135.48,92.2544 +169276,134.44,90.67646 +169277,136.24,95.6087 +169278,135.18,93.9038 +169279,134.14,92.2534 +169280,133.13,90.65157 +169281,134.85,95.656 +169282,133.81,93.9267 +169283,132.8,92.2527 +169284,131.82,90.62784 +169285,133.46,95.702 +169286,132.45,93.9492 +169287,131.47,92.2524 +169288,130.51,90.60528 +169289,132.07,95.7466 +169290,131.09,93.9713 +169291,130.13,92.2525 +169292,129.2,90.58391 +169293,130.68,95.7899 +169294,129.72,93.9928 +169295,128.79,92.253 +169296,127.89,90.56374 +169297,129.29,95.8317 +169298,128.36,94.0138 +169299,127.46,92.2538 +169300,126.58,90.5448 +169301,127.9,95.8721 +169302,127,94.0343 +169303,126.12,92.255 +169304,125.27,90.5271 +169305,126.5,95.9111 +169306,125.63,94.0544 +169307,124.79,92.2566 +169308,123.97,90.51065 +169309,125.11,95.9486 +169310,124.27,94.0739 +169311,123.45,92.2586 +169312,122.66,90.49546 +169313,123.72,95.9847 +169314,122.9,94.0929 +169315,122.12,92.2609 +169316,121.36,90.48156 +169317,122.32,96.0193 +169318,121.54,94.1114 +169319,120.78,92.2637 +169320,120.05,90.46894 +169321,120.93,96.0523 +169322,120.17,94.1293 +169323,119.45,92.2669 +169324,118.75,90.45763 +169325,119.53,96.0839 +169326,118.81,94.1468 +169327,118.11,92.2705 +169328,117.44,90.44763 +169329,118.13,96.1139 +169330,117.44,94.1637 +169331,116.78,92.2745 +169332,116.14,90.43895 +169333,116.73,96.1425 +169334,116.08,94.18 +169335,115.44,92.279 +169336,114.84,90.43161 +169337,115.34,96.1694 +169338,114.71,94.1959 +169339,114.11,92.2838 +169340,113.53,90.42562 +169341,113.94,96.1949 +169342,113.34,94.2111 +169343,112.78,92.2891 +169344,112.23,90.42097 +169345,112.54,96.2187 +169346,111.98,94.2259 +169347,111.44,92.2948 +169348,110.93,90.41769 +169349,111.14,96.241 +169350,110.61,94.2401 +169351,110.11,92.3009 +169352,109.63,90.41577 +169353,109.74,96.2617 +169354,109.25,94.2537 +169355,108.78,92.3075 +169356,108.33,90.41523 +169357,108.34,96.2808 +169358,107.88,94.2668 +169359,107.44,92.3145 +169360,107.03,90.41607 +169361,106.94,96.2984 +169362,106.51,94.2793 +169363,106.11,92.3219 +169364,105.72,90.4183 +169365,105.54,96.3143 +169366,105.14,94.2913 +169367,104.77,92.3297 +169368,104.42,90.42191 +169369,104.14,96.3287 +169370,103.78,94.3027 +169371,103.44,92.338 +169372,103.12,90.42692 +169373,102.74,96.3415 +169374,102.41,94.3136 +169375,102.11,92.3467 +169376,101.82,90.43332 +169377,101.33,96.3526 +169378,101.04,94.3239 +169379,100.77,92.3559 +169380,100.53,90.44113 +169381,99.933,96.3622 +169382,99.676,94.3337 +169383,99.441,92.3655 +169384,99.226,90.45033 +169385,98.531,96.3702 +169386,98.308,94.3429 +169387,98.108,92.3756 +169388,97.927,90.46094 +169389,97.129,96.3765 +169390,96.941,94.3515 +169391,96.775,92.386 +169392,96.627,90.47295 +169393,95.726,96.3813 +169394,95.573,94.3596 +169395,95.441,92.3969 +169396,95.328,90.48636 +169397,94.324,96.3845 +169398,94.206,94.3671 +169399,94.108,92.4083 +169400,94.029,90.50117 +169401,92.921,96.3861 +169402,92.838,94.374 +169403,92.775,92.4201 +169404,92.73,90.51738 +169405,91.519,96.3861 +169406,91.47,94.3804 +169407,91.442,92.4323 +169408,91.431,90.53498 +169409,90.116,96.3845 +169410,90.103,94.3863 +169411,90.109,92.445 +169412,90.131,90.55398 +169413,88.713,96.3813 +169414,88.735,94.3916 +169415,88.775,92.4581 +169416,88.832,90.57437 +169417,87.311,96.3766 +169418,87.367,94.3963 +169419,87.442,92.4716 +169420,87.533,90.59614 +169421,85.908,96.3703 +169422,85.999,94.4005 +169423,86.109,92.4855 +169424,86.233,90.6193 +169425,84.506,96.3625 +169426,84.632,94.4041 +169427,84.775,92.4999 +169428,84.934,90.64382 +169429,83.104,96.3531 +169430,83.264,94.4072 +169431,83.442,92.5147 +169432,83.634,90.66972 +169433,81.701,96.3422 +169434,81.897,94.4098 +169435,82.108,92.5299 +169436,82.334,90.69697 +169437,80.3,96.3297 +169438,80.529,94.4118 +169439,80.774,92.5456 +169440,81.034,90.72557 +169441,78.898,96.3158 +169442,79.162,94.4133 +169443,79.44,92.5616 +169444,79.733,90.75552 +169445,77.496,96.3003 +169446,77.794,94.4143 +169447,78.107,92.5781 +169448,78.432,90.7868 +169449,76.095,96.2834 +169450,76.427,94.4147 +169451,76.773,92.595 +169452,77.131,90.8194 +169453,74.694,96.265 +169454,75.06,94.4146 +169455,75.438,92.6122 +169456,75.83,90.85332 +169457,73.294,96.2452 +169458,73.692,94.414 +169459,74.104,92.6299 +169460,74.528,90.88853 +169461,71.894,96.2239 +169462,72.325,94.4129 +169463,72.77,92.648 +169464,73.226,90.92504 +169465,70.494,96.2011 +169466,70.958,94.4112 +169467,71.435,92.6664 +169468,71.923,90.96282 +169469,69.094,96.177 +169470,69.592,94.4091 +169471,70.1,92.6853 +169472,70.62,91.0019 +169473,67.695,96.1515 +169474,68.225,94.4065 +169475,68.765,92.7045 +169476,69.316,91.0421 +169477,66.297,96.1246 +169478,66.858,94.4033 +169479,67.43,92.7241 +169480,68.012,91.0837 +169481,64.899,96.0964 +169482,65.492,94.3997 +169483,66.095,92.7441 +169484,66.708,91.1264 +169485,63.502,96.0668 +169486,64.126,94.3956 +169487,64.76,92.7644 +169488,65.403,91.1704 +169489,62.105,96.0359 +169490,62.76,94.391 +169491,63.424,92.7851 +169492,64.097,91.2155 +169493,60.708,96.0037 +169494,61.394,94.386 +169495,62.088,92.8062 +169496,62.791,91.2618 +169497,59.313,95.9703 +169498,60.028,94.3805 +169499,60.752,92.8276 +169500,61.484,91.3092 +169501,57.917,95.9356 +169502,58.662,94.3745 +169503,59.416,92.8493 +169504,60.176,91.3578 +169505,56.523,95.8997 +169506,57.297,94.3681 +169507,58.079,92.8714 +169508,58.868,91.4075 +169509,55.129,95.8626 +169510,55.932,94.3613 +169511,56.742,92.8938 +169512,57.56,91.4583 +169513,53.736,95.8243 +169514,54.567,94.354 +169515,55.405,92.9165 +169516,56.25,91.5102 +169517,52.344,95.7849 +169518,53.202,94.3463 +169519,54.068,92.9395 +169520,54.94,91.5631 +169521,50.952,95.7443 +169522,51.838,94.3382 +169523,52.73,92.9628 +169524,53.629,91.617 +169525,49.561,95.7027 +169526,50.474,94.3296 +169527,51.392,92.9864 +169528,52.317,91.6719 +169529,48.171,95.6599 +169530,49.11,94.3207 +169531,50.054,93.0103 +169532,51.004,91.7279 +169533,46.781,95.6162 +169534,47.746,94.3114 +169535,48.716,93.0345 +169536,49.691,91.7848 +169537,45.393,95.5714 +169538,46.382,94.3017 +169539,47.377,93.059 +169540,48.377,91.8426 +169541,44.005,95.5256 +169542,45.019,94.2916 +169543,46.038,93.0837 +169544,47.062,91.9014 +169545,42.619,95.4788 +169546,43.656,94.2811 +169547,44.699,93.1087 +169548,45.746,91.961 +169549,41.233,95.4311 +169550,42.294,94.2703 +169551,43.359,93.1339 +169552,44.429,92.0215 +169553,39.848,95.3825 +169554,40.931,94.2592 +169555,42.019,93.1594 +169556,43.112,92.0829 +169557,38.463,95.333 +169558,39.569,94.2477 +169559,40.679,93.185 +169560,41.793,92.145 +169561,37.08,95.2827 +169562,38.207,94.2358 +169563,39.339,93.2109 +169564,40.473,92.208 +169565,35.698,95.2316 +169566,36.846,94.2237 +169567,37.998,93.2371 +169568,39.153,92.2717 +169569,34.317,95.1796 +169570,35.485,94.2112 +169571,36.657,93.2634 +169572,37.832,92.3361 +169573,32.937,95.127 +169574,34.124,94.1985 +169575,35.315,93.2899 +169576,36.509,92.4013 +169577,31.557,95.0735 +169578,32.763,94.1854 +169579,33.973,93.3165 +169580,35.186,92.4671 +169581,30.179,95.0194 +169582,31.403,94.1721 +169583,32.631,93.3434 +169584,33.861,92.5336 +169585,28.802,94.9647 +169586,30.043,94.1585 +169587,31.288,93.3704 +169588,32.536,92.6006 +169589,27.426,94.9093 +169590,28.684,94.1447 +169591,29.945,93.3976 +169592,31.209,92.6683 +169593,26.051,94.8533 +169594,27.324,94.1305 +169595,28.602,93.4249 +169596,29.882,92.7366 +169597,24.677,94.7967 +169598,25.966,94.1162 +169599,27.258,93.4523 +169600,28.553,92.8053 +169601,23.304,94.7396 +169602,24.607,94.1016 +169603,25.914,93.4798 +169604,27.223,92.8746 +169605,21.932,94.682 +169606,23.249,94.0868 +169607,24.57,93.5075 +169608,25.893,92.9443 +169609,20.561,94.6239 +169610,21.891,94.0718 +169611,23.225,93.5352 +169612,24.561,93.0145 +169613,19.191,94.5654 +169614,20.534,94.0566 +169615,21.879,93.5631 +169616,23.228,93.0851 +169617,17.823,94.5065 +169618,19.176,94.0413 +169619,20.534,93.591 +169620,21.893,93.156 +169621,16.455,94.4472 +169622,17.82,94.0257 +169623,19.188,93.6189 +169624,20.558,93.2273 +169625,15.089,94.3875 +169626,16.463,94.01 +169627,17.841,93.647 +169628,19.222,93.2989 +169629,13.724,94.3276 +169630,15.107,93.9941 +169631,16.495,93.675 +169632,17.884,93.3708 +169633,12.36,94.2674 +169634,13.752,93.9781 +169635,15.147,93.7031 +169636,16.546,93.4429 +169637,10.997,94.207 +169638,12.396,93.962 +169639,13.8,93.7313 +169640,15.206,93.5152 +169641,9.6356,94.1463 +169642,11.042,93.9457 +169643,12.452,93.7594 +169644,13.865,93.5877 +169645,8.2751,94.0855 +169646,9.6871,93.9294 +169647,11.103,93.7875 +169648,12.523,93.6603 +169649,6.9158,94.0246 +169650,8.3329,93.9129 +169651,9.7546,93.8156 +169652,11.179,93.7331 +169653,5.5576,93.9635 +169654,6.9792,93.8964 +169655,8.4054,93.8437 +169656,9.8346,93.8059 +169657,4.2007,93.9024 +169658,5.6258,93.8798 +169659,7.0558,93.8718 +169660,8.4889,93.8788 +169661,2.8449,93.8412 +169662,4.2728,93.8631 +169663,5.7057,93.8998 +169664,7.142,93.9517 +169665,1.4902,93.7801 +169666,2.9202,93.8463 +169667,4.3553,93.9277 +169668,5.7938,94.0245 +169669,0.13681,93.7189 +169670,1.568,93.8296 +169671,3.0045,93.9556 +169672,4.4445,94.0973 +169673,358.78,93.6579 +169674,0.21621,93.8128 +169675,1.6532,93.9834 +169676,3.094,94.17 +169677,357.43,93.5969 +169678,358.86,93.796 +169679,0.30154,94.0111 +169680,1.7424,94.2426 +169681,356.08,93.536 +169682,357.51,93.7791 +169683,358.95,94.0387 +169684,0.38947,94.315 +169685,354.73,93.4754 +169686,356.16,93.7623 +169687,357.6,94.0662 +169688,359.04,94.3872 +169689,353.39,93.4149 +169690,354.81,93.7455 +169691,356.24,94.0935 +169692,357.68,94.4592 +169693,352.04,93.3546 +169694,353.46,93.7287 +169695,354.89,94.1207 +169696,356.32,94.5309 +169697,350.7,93.2946 +169698,352.11,93.712 +169699,353.54,94.1478 +169700,354.97,94.6023 +169701,349.35,93.2349 +169702,350.76,93.6953 +169703,352.18,94.1747 +169704,353.61,94.6734 +169705,348.01,93.1755 +169706,349.42,93.6787 +169707,350.83,94.2014 +169708,352.25,94.7441 +169709,346.67,93.1165 +169710,348.07,93.6621 +169711,349.47,94.228 +169712,350.89,94.8144 +169713,345.33,93.0578 +169714,346.72,93.6457 +169715,348.12,94.2543 +169716,349.52,94.8843 +169717,343.99,92.9996 +169718,345.37,93.6293 +169719,346.76,94.2805 +169720,348.16,94.9537 +169721,342.65,92.9418 +169722,344.02,93.613 +169723,345.41,94.3064 +169724,346.8,95.0226 +169725,341.31,92.8845 +169726,342.68,93.5968 +169727,344.05,94.3321 +169728,345.43,95.0909 +169729,339.98,92.8277 +169730,341.33,93.5808 +169731,342.69,94.3575 +169732,344.06,95.1587 +169733,338.64,92.7715 +169734,339.98,93.5649 +169735,341.34,94.3827 +169736,342.69,95.2259 +169737,337.31,92.7158 +169738,338.64,93.5491 +169739,339.98,94.4077 +169740,341.33,95.2924 +169741,335.97,92.6607 +169742,337.29,93.5335 +169743,338.62,94.4324 +169744,339.95,95.3583 +169745,334.64,92.6063 +169746,335.95,93.5181 +169747,337.26,94.4568 +169748,338.58,95.4234 +169749,333.31,92.5525 +169750,334.6,93.5028 +169751,335.9,94.4809 +169752,337.21,95.4879 +169753,331.98,92.4994 +169754,333.26,93.4877 +169755,334.54,94.5047 +169756,335.84,95.5515 +169757,330.65,92.447 +169758,331.91,93.4728 +169759,333.18,94.5281 +169760,334.46,95.6144 +169761,329.33,92.3953 +169762,330.57,93.4581 +169763,331.82,94.5513 +169764,333.09,95.6764 +169765,328,92.3444 +169766,329.23,93.4437 +169767,330.46,94.5741 +169768,331.71,95.7376 +169769,326.67,92.2943 +169770,327.88,93.4294 +169771,329.1,94.5966 +169772,330.33,95.7979 +169773,325.35,92.245 +169774,326.54,93.4154 +169775,327.74,94.6188 +169776,328.95,95.8572 +169777,324.03,92.1966 +169778,325.2,93.4016 +169779,326.38,94.6405 +169780,327.57,95.9156 +169781,322.7,92.149 +169782,323.86,93.3881 +169783,325.02,94.6619 +169784,326.19,95.973 +169785,321.38,92.1024 +169786,322.52,93.3748 +169787,323.66,94.683 +169788,324.81,96.0295 +169789,320.06,92.0566 +169790,321.17,93.3618 +169791,322.3,94.7036 +169792,323.43,96.0848 +169793,318.74,92.0118 +169794,319.83,93.3491 +169795,320.93,94.7238 +169796,322.04,96.1391 +169797,317.42,91.968 +169798,318.49,93.3366 +169799,319.57,94.7437 +169800,320.66,96.1923 +169801,316.1,91.9251 +169802,317.15,93.3244 +169803,318.21,94.7631 +169804,319.27,96.2444 +169805,314.79,91.8833 +169806,315.81,93.3126 +169807,316.84,94.7821 +169808,317.89,96.2954 +169809,313.47,91.8425 +169810,314.47,93.301 +169811,315.48,94.8007 +169812,316.5,96.3451 +169813,312.15,91.8027 +169814,313.13,93.2898 +169815,314.12,94.8188 +169816,315.11,96.3937 +169817,310.84,91.7641 +169818,311.79,93.2789 +169819,312.75,94.8365 +169820,313.72,96.441 +169821,309.53,91.7265 +169822,310.45,93.2683 +169823,311.39,94.8537 +169824,312.33,96.4871 +169825,308.21,91.69 +169826,309.11,93.258 +169827,310.02,94.8704 +169828,310.94,96.5319 +169829,306.9,91.6547 +169830,307.77,93.2481 +169831,308.66,94.8867 +169832,309.55,96.5755 +169833,305.59,91.6205 +169834,306.44,93.2385 +169835,307.29,94.9026 +169836,308.16,96.6177 +169837,304.28,91.5876 +169838,305.1,93.2293 +169839,305.93,94.9179 +169840,306.76,96.6585 +169841,302.97,91.5558 +169842,303.76,93.2205 +169843,304.56,94.9327 +169844,305.37,96.698 +169845,301.66,91.5252 +169846,302.42,93.212 +169847,303.19,94.9471 +169848,303.98,96.7362 +169849,300.35,91.4958 +169850,301.08,93.2039 +169851,301.83,94.9609 +169852,302.58,96.7729 +169853,299.04,91.4676 +169854,299.75,93.1961 +169855,300.46,94.9743 +169856,301.19,96.8082 +169857,297.73,91.4407 +169858,298.41,93.1888 +169859,299.09,94.9871 +169860,299.79,96.8421 +169861,296.42,91.4151 +169862,297.07,93.1818 +169863,297.73,94.9994 +169864,298.39,96.8745 +169865,295.12,91.3908 +169866,295.73,93.1752 +169867,296.36,95.0112 +169868,297,96.9054 +169869,293.81,91.3677 +169870,294.4,93.169 +169871,294.99,95.0225 +169872,295.6,96.9349 +169873,292.5,91.346 +169874,293.06,93.1632 +169875,293.63,95.0332 +169876,294.2,96.9628 +169877,291.2,91.3256 +169878,291.72,93.1579 +169879,292.26,95.0434 +169880,292.8,96.9892 +169881,289.89,91.3065 +169882,290.39,93.1529 +169883,290.89,95.053 +169884,291.4,97.0141 +169885,288.59,91.2887 +169886,289.05,93.1483 +169887,289.52,95.0621 +169888,290,97.0375 +169889,287.28,91.2723 +169890,287.72,93.1442 +169891,288.15,95.0707 +169892,288.6,97.0593 +169893,285.98,91.2572 +169894,286.38,93.1405 +169895,286.79,95.0787 +169896,287.2,97.0795 +169897,284.68,91.2436 +169898,285.04,93.1372 +169899,285.42,95.0861 +169900,285.8,97.0982 +169901,283.37,91.2312 +169902,283.71,93.1343 +169903,284.05,95.093 +169904,284.4,97.1152 +169905,282.07,91.2203 +169906,282.37,93.1319 +169907,282.68,95.0993 +169908,283,97.1307 +169909,280.77,91.2108 +169910,281.04,93.1298 +169911,281.31,95.1051 +169912,281.6,97.1446 +169913,279.46,91.2026 +169914,279.7,93.1283 +169915,279.94,95.1103 +169916,280.19,97.1569 +169917,278.16,91.1958 +169918,278.37,93.1271 +169919,278.58,95.1149 +169920,278.79,97.1675 +169921,276.86,91.1905 +169922,277.03,93.1264 +169923,277.21,95.119 +169924,277.39,97.1765 +169925,275.56,91.1865 +169926,275.7,93.1261 +169927,275.84,95.1225 +169928,275.99,97.1839 +169929,274.25,91.184 +169930,274.36,93.1262 +169931,274.47,95.1254 +169932,274.58,97.1897 +169933,272.95,91.1828 +169934,273.02,93.1268 +169935,273.1,95.1278 +169936,273.18,97.1939 +169937,271.65,91.1831 +169938,271.69,93.1279 +169939,271.73,95.1295 +169940,271.78,97.1964 +169941,270.35,91.1848 +169942,270.35,93.1293 +169943,270.36,95.1307 +169944,270.37,97.1973 +169945,269.04,91.1878 +169946,269.02,93.1312 +169947,268.99,95.1314 +169948,268.97,97.1965 +169949,267.74,91.1923 +169950,267.68,93.1336 +169951,267.62,95.1314 +169952,267.57,97.1941 +169953,266.44,91.1982 +169954,266.35,93.1363 +169955,266.26,95.1309 +169956,266.17,97.1901 +169957,265.14,91.2056 +169958,265.01,93.1395 +169959,264.89,95.1298 +169960,264.76,97.1845 +169961,263.84,91.2143 +169962,263.68,93.1432 +169963,263.52,95.1282 +169964,263.36,97.1772 +169965,262.53,91.2244 +169966,262.34,93.1473 +169967,262.15,95.1259 +169968,261.96,97.1684 +169969,261.23,91.2359 +169970,261.01,93.1518 +169971,260.78,95.1232 +169972,260.56,97.1579 +169973,259.93,91.2488 +169974,259.67,93.1567 +169975,259.41,95.1198 +169976,259.15,97.1458 +169977,258.63,91.2631 +169978,258.33,93.1621 +169979,258.04,95.1159 +169980,257.75,97.1321 +169981,257.32,91.2788 +169982,257,93.1679 +169983,256.67,95.1114 +169984,256.35,97.1168 +169985,256.02,91.2958 +169986,255.66,93.1741 +169987,255.31,95.1064 +169988,254.95,97.0999 +169989,254.71,91.3142 +169990,254.33,93.1807 +169991,253.94,95.1008 +169992,253.55,97.0815 +169993,253.41,91.334 +169994,252.99,93.1878 +169995,252.57,95.0947 +169996,252.15,97.0615 +169997,252.11,91.3551 +169998,251.65,93.1953 +169999,251.2,95.088 +170000,250.75,97.04 +170001,250.8,91.3775 +170002,250.32,93.2032 +170003,249.83,95.0807 +170004,249.35,97.0169 +170005,249.5,91.4013 +170006,248.98,93.2115 +170007,248.47,95.073 +170008,247.95,96.9923 +170009,248.19,91.4263 +170010,247.65,93.2202 +170011,247.1,95.0647 +170012,246.55,96.9662 +170013,246.88,91.4527 +170014,246.31,93.2292 +170015,245.73,95.0558 +170016,245.15,96.9386 +170017,245.58,91.4804 +170018,244.97,93.2387 +170019,244.36,95.0464 +170020,243.75,96.9095 +170021,244.27,91.5094 +170022,243.63,93.2486 +170023,243,95.0366 +170024,242.35,96.8789 +170025,242.96,91.5396 +170026,242.3,93.2589 +170027,241.63,95.0262 +170028,240.96,96.847 +170029,241.65,91.571 +170030,240.96,93.2695 +170031,240.26,95.0152 +170032,239.56,96.8135 +170033,240.35,91.6037 +170034,239.62,93.2806 +170035,238.9,95.0038 +170036,238.17,96.7787 +170037,239.04,91.6377 +170038,238.28,93.2919 +170039,237.53,94.9919 +170040,236.77,96.7425 +170041,237.73,91.6728 +170042,236.95,93.3037 +170043,236.16,94.9795 +170044,235.38,96.7049 +170045,236.42,91.7091 +170046,235.61,93.3158 +170047,234.8,94.9666 +170048,233.98,96.6659 +170049,235.1,91.7466 +170050,234.27,93.3283 +170051,233.43,94.9532 +170052,232.59,96.6257 +170053,233.79,91.7852 +170054,232.93,93.3411 +170055,232.07,94.9394 +170056,231.2,96.5841 +170057,232.48,91.825 +170058,231.59,93.3542 +170059,230.7,94.925 +170060,229.8,96.5412 +170061,231.17,91.8659 +170062,230.25,93.3677 +170063,229.34,94.9103 +170064,228.41,96.4971 +170065,229.85,91.9078 +170066,228.91,93.3815 +170067,227.97,94.895 +170068,227.02,96.4517 +170069,228.54,91.9509 +170070,227.57,93.3957 +170071,226.61,94.8793 +170072,225.63,96.4052 +170073,227.22,91.995 +170074,226.23,93.4101 +170075,225.24,94.8632 +170076,224.24,96.3574 +170077,225.91,92.0401 +170078,224.89,93.4248 +170079,223.88,94.8467 +170080,222.86,96.3085 +170081,224.59,92.0862 +170082,223.55,93.4399 +170083,222.51,94.8297 +170084,221.47,96.2584 +170085,223.27,92.1333 +170086,222.21,93.4552 +170087,221.15,94.8124 +170088,220.08,96.2073 +170089,221.95,92.1814 +170090,220.87,93.4708 +170091,219.79,94.7946 +170092,218.7,96.155 +170093,220.63,92.2304 +170094,219.53,93.4867 +170095,218.42,94.7764 +170096,217.31,96.1017 +170097,219.31,92.2804 +170098,218.19,93.5028 +170099,217.06,94.7578 +170100,215.93,96.0474 +170101,217.99,92.3312 +170102,216.85,93.5192 +170103,215.7,94.7389 +170104,214.55,95.9921 +170105,216.67,92.3829 +170106,215.5,93.5358 +170107,214.34,94.7196 +170108,213.17,95.9358 +170109,215.34,92.4354 +170110,214.16,93.5527 +170111,212.98,94.6999 +170112,211.79,95.8785 +170113,214.02,92.4888 +170114,212.82,93.5698 +170115,211.61,94.6799 +170116,210.41,95.8204 +170117,212.69,92.5429 +170118,211.48,93.5871 +170119,210.25,94.6596 +170120,209.03,95.7614 +170121,211.36,92.5978 +170122,210.13,93.6047 +170123,208.89,94.6389 +170124,207.65,95.7015 +170125,210.04,92.6534 +170126,208.79,93.6224 +170127,207.53,94.6179 +170128,206.27,95.6409 +170129,208.71,92.7098 +170130,207.44,93.6403 +170131,206.17,94.5966 +170132,204.9,95.5794 +170133,207.38,92.7668 +170134,206.1,93.6584 +170135,204.81,94.575 +170136,203.52,95.5172 +170137,206.05,92.8244 +170138,204.75,93.6767 +170139,203.45,94.5531 +170140,202.15,95.4542 +170141,204.72,92.8827 +170142,203.41,93.6951 +170143,202.1,94.5309 +170144,200.78,95.3906 +170145,203.38,92.9416 +170146,202.06,93.7137 +170147,200.74,94.5085 +170148,199.41,95.3263 +170149,202.05,93.001 +170150,200.72,93.7324 +170151,199.38,94.4858 +170152,198.04,95.2614 +170153,200.71,93.061 +170154,199.37,93.7513 +170155,198.02,94.4628 +170156,196.67,95.1959 +170157,199.38,93.1214 +170158,198.02,93.7703 +170159,196.66,94.4397 +170160,195.3,95.1299 +170161,198.04,93.1824 +170162,196.68,93.7893 +170163,195.31,94.4162 +170164,193.94,95.0633 +170165,196.7,93.2437 +170166,195.33,93.8085 +170167,193.95,94.3926 +170168,192.57,94.9962 +170169,195.36,93.3055 +170170,193.98,93.8278 +170171,192.6,94.3688 +170172,191.21,94.9287 +170173,194.02,93.3677 +170174,192.63,93.8471 +170175,191.24,94.3448 +170176,189.84,94.8607 +170177,192.68,93.4302 +170178,191.28,93.8665 +170179,189.88,94.3206 +170180,188.48,94.7924 +170181,191.34,93.493 +170182,189.94,93.886 +170183,188.53,94.2962 +170184,187.12,94.7237 +170185,189.99,93.5561 +170186,188.59,93.9055 +170187,187.17,94.2717 +170188,185.76,94.6547 +170189,188.65,93.6194 +170190,187.24,93.9251 +170191,185.82,94.247 +170192,184.4,94.5854 +170193,187.3,93.683 +170194,185.89,93.9446 +170195,184.47,94.2222 +170196,183.05,94.5159 +170197,185.95,93.7467 +170198,184.54,93.9642 +170199,183.11,94.1973 +170200,181.69,94.4461 +170201,184.61,93.8106 +170202,183.18,93.9838 +170203,181.76,94.1722 +170204,180.33,94.3761 +170205,183.26,93.8747 +170206,181.83,94.0033 +170207,180.41,94.1471 +170208,178.98,94.306 +170209,181.9,93.9388 +170210,180.48,94.0229 +170211,179.06,94.1219 +170212,177.63,94.2358 +170213,180.55,94.0029 +170214,179.13,94.0424 +170215,177.7,94.0965 +170216,176.28,94.1655 +170217,179.2,94.0671 +170218,177.78,94.0618 +170219,176.35,94.0712 +170220,174.93,94.0952 +170221,177.84,94.1312 +170222,176.42,94.0812 +170223,175,94.0457 +170224,173.58,94.0248 +170225,176.49,94.1953 +170226,175.07,94.1006 +170227,173.65,94.0202 +170228,172.23,93.9545 +170229,175.13,94.2594 +170230,173.72,94.1198 +170231,172.3,93.9947 +170232,170.88,93.8842 +170233,173.77,94.3233 +170234,172.36,94.139 +170235,170.95,93.9692 +170236,169.54,93.814 +170237,172.41,94.387 +170238,171.01,94.1581 +170239,169.6,93.9436 +170240,168.19,93.7439 +170241,171.05,94.4506 +170242,169.65,94.177 +170243,168.25,93.9181 +170244,166.85,93.674 +170245,169.69,94.5139 +170246,168.3,94.1958 +170247,166.9,93.8925 +170248,165.51,93.6043 +170249,168.33,94.577 +170250,166.94,94.2145 +170251,165.56,93.867 +170252,164.17,93.5348 +170253,166.96,94.6398 +170254,165.59,94.2331 +170255,164.21,93.8415 +170256,162.83,93.4655 +170257,165.6,94.7023 +170258,164.23,94.2515 +170259,162.86,93.8161 +170260,161.49,93.3966 +170261,164.23,94.7644 +170262,162.87,94.2697 +170263,161.51,93.7907 +170264,160.15,93.3279 +170265,162.87,94.8262 +170266,161.52,94.2877 +170267,160.17,93.7654 +170268,158.82,93.2597 +170269,161.5,94.8875 +170270,160.16,94.3055 +170271,158.82,93.7402 +170272,157.48,93.1917 +170273,160.13,94.9484 +170274,158.8,94.3232 +170275,157.48,93.7151 +170276,156.15,93.1243 +170277,158.76,95.0088 +170278,157.44,94.3406 +170279,156.13,93.69 +170280,154.82,93.0572 +170281,157.38,95.0686 +170282,156.09,94.3578 +170283,154.79,93.6651 +170284,153.48,92.9907 +170285,156.01,95.128 +170286,154.73,94.3748 +170287,153.44,93.6403 +170288,152.15,92.9246 +170289,154.64,95.1867 +170290,153.37,94.3915 +170291,152.1,93.6156 +170292,150.82,92.8591 +170293,153.26,95.2448 +170294,152.01,94.408 +170295,150.75,93.5911 +170296,149.5,92.7941 +170297,151.89,95.3023 +170298,150.65,94.4242 +170299,149.41,93.5667 +170300,148.17,92.7298 +170301,150.51,95.359 +170302,149.29,94.4401 +170303,148.07,93.5425 +170304,146.84,92.6661 +170305,149.13,95.4151 +170306,147.93,94.4557 +170307,146.72,93.5184 +170308,145.52,92.603 +170309,147.75,95.4704 +170310,146.57,94.4711 +170311,145.38,93.4946 +170312,144.19,92.5407 +170313,146.37,95.525 +170314,145.21,94.4861 +170315,144.04,93.4709 +170316,142.87,92.479 +170317,144.99,95.5787 +170318,143.84,94.5008 +170319,142.7,93.4474 +170320,141.55,92.4181 +170321,143.61,95.6316 +170322,142.48,94.5152 +170323,141.35,93.4241 +170324,140.23,92.3579 +170325,142.22,95.6836 +170326,141.12,94.5293 +170327,140.01,93.4011 +170328,138.9,92.2986 +170329,140.84,95.7348 +170330,139.76,94.543 +170331,138.67,93.3783 +170332,137.58,92.2401 +170333,139.46,95.785 +170334,138.39,94.5563 +170335,137.33,93.3557 +170336,136.27,92.1824 +170337,138.07,95.8342 +170338,137.03,94.5693 +170339,135.99,93.3334 +170340,134.95,92.1256 +170341,136.68,95.8825 +170342,135.67,94.5819 +170343,134.65,93.3113 +170344,133.63,92.0697 +170345,135.29,95.9297 +170346,134.3,94.5941 +170347,133.31,93.2895 +170348,132.32,92.0147 +170349,133.91,95.976 +170350,132.94,94.606 +170351,131.97,93.268 +170352,131,91.9607 +170353,132.52,96.0211 +170354,131.58,94.6174 +170355,130.63,93.2468 +170356,129.69,91.9076 +170357,131.13,96.0651 +170358,130.21,94.6284 +170359,129.29,93.2258 +170360,128.37,91.8555 +170361,129.74,96.1081 +170362,128.85,94.639 +170363,127.96,93.2052 +170364,127.06,91.8045 +170365,128.34,96.1498 +170366,127.48,94.6492 +170367,126.62,93.1848 +170368,125.75,91.7545 +170369,126.95,96.1904 +170370,126.12,94.659 +170371,125.28,93.1648 +170372,124.44,91.7055 +170373,125.56,96.2299 +170374,124.75,94.6683 +170375,123.94,93.1451 +170376,123.13,91.6576 +170377,124.17,96.268 +170378,123.39,94.6772 +170379,122.6,93.1257 +170380,121.82,91.6108 +170381,122.77,96.305 +170382,122.02,94.6856 +170383,121.27,93.1066 +170384,120.51,91.5652 +170385,121.38,96.3407 +170386,120.66,94.6935 +170387,119.93,93.0879 +170388,119.2,91.5207 +170389,119.98,96.375 +170390,119.29,94.701 +170391,118.59,93.0695 +170392,117.89,91.4773 +170393,118.58,96.4081 +170394,117.92,94.708 +170395,117.26,93.0515 +170396,116.58,91.4351 +170397,117.19,96.4399 +170398,116.56,94.7145 +170399,115.92,93.0339 +170400,115.28,91.3941 +170401,115.79,96.4702 +170402,115.19,94.7206 +170403,114.58,93.0166 +170404,113.97,91.3544 +170405,114.39,96.4993 +170406,113.82,94.7261 +170407,113.25,92.9997 +170408,112.66,91.3158 +170409,112.99,96.5269 +170410,112.46,94.7311 +170411,111.91,92.9831 +170412,111.36,91.2785 +170413,111.59,96.5531 +170414,111.09,94.7357 +170415,110.57,92.967 +170416,110.05,91.2424 +170417,110.19,96.5779 +170418,109.72,94.7397 +170419,109.24,92.9512 +170420,108.75,91.2076 +170421,108.79,96.6012 +170422,108.35,94.7432 +170423,107.9,92.9358 +170424,107.45,91.1741 +170425,107.39,96.6231 +170426,106.99,94.7462 +170427,106.57,92.9209 +170428,106.14,91.1419 +170429,105.99,96.6435 +170430,105.62,94.7486 +170431,105.23,92.9063 +170432,104.84,91.111 +170433,104.59,96.6624 +170434,104.25,94.7506 +170435,103.9,92.8921 +170436,103.54,91.0814 +170437,103.19,96.6798 +170438,102.88,94.752 +170439,102.56,92.8783 +170440,102.23,91.0531 +170441,101.79,96.6957 +170442,101.52,94.7528 +170443,101.23,92.865 +170444,100.93,91.0262 +170445,100.39,96.7101 +170446,100.15,94.7531 +170447,99.894,92.8521 +170448,99.631,91.0006 +170449,98.987,96.7229 +170450,98.779,94.7529 +170451,98.56,92.8395 +170452,98.329,90.97642 +170453,97.585,96.7341 +170454,97.411,94.7521 +170455,97.225,92.8274 +170456,97.028,90.95357 +170457,96.183,96.7438 +170458,96.043,94.7508 +170459,95.891,92.8158 +170460,95.727,90.93209 +170461,94.78,96.752 +170462,94.675,94.7489 +170463,94.556,92.8045 +170464,94.426,90.91198 +170465,93.378,96.7585 +170466,93.307,94.7465 +170467,93.222,92.7937 +170468,93.125,90.89327 +170469,91.975,96.7635 +170470,91.939,94.7435 +170471,91.888,92.7833 +170472,91.825,90.87594 +170473,90.573,96.7669 +170474,90.57,94.7399 +170475,90.554,92.7734 +170476,90.524,90.86 +170477,89.17,96.7686 +170478,89.202,94.7358 +170479,89.219,92.7639 +170480,89.224,90.84547 +170481,87.767,96.7688 +170482,87.834,94.7311 +170483,87.885,92.7548 +170484,87.923,90.83233 +170485,86.365,96.7674 +170486,86.466,94.7259 +170487,86.551,92.7462 +170488,86.623,90.8206 +170489,84.962,96.7643 +170490,85.098,94.7201 +170491,85.217,92.738 +170492,85.322,90.81028 +170493,83.56,96.7597 +170494,83.73,94.7137 +170495,83.883,92.7302 +170496,84.022,90.80136 +170497,82.157,96.7534 +170498,82.362,94.7068 +170499,82.549,92.7229 +170500,82.721,90.79384 +170501,80.755,96.7455 +170502,80.994,94.6993 +170503,81.215,92.716 +170504,81.421,90.78774 +170505,79.353,96.736 +170506,79.626,94.6912 +170507,79.88,92.7095 +170508,80.12,90.78304 +170509,77.951,96.7249 +170510,78.258,94.6826 +170511,78.546,92.7035 +170512,78.819,90.77974 +170513,76.55,96.7121 +170514,76.89,94.6734 +170515,77.212,92.6979 +170516,77.518,90.77784 +170517,75.149,96.6978 +170518,75.523,94.6636 +170519,75.878,92.6928 +170520,76.217,90.77734 +170521,73.748,96.6819 +170522,74.155,94.6533 +170523,74.543,92.6881 +170524,74.915,90.77824 +170525,72.347,96.6643 +170526,72.788,94.6424 +170527,73.209,92.6838 +170528,73.613,90.78052 +170529,70.947,96.6452 +170530,71.42,94.631 +170531,71.874,92.68 +170532,72.311,90.78419 +170533,69.547,96.6245 +170534,70.053,94.619 +170535,70.539,92.6766 +170536,71.009,90.78923 +170537,68.147,96.6022 +170538,68.686,94.6065 +170539,69.205,92.6736 +170540,69.706,90.79565 +170541,66.748,96.5783 +170542,67.319,94.5934 +170543,67.87,92.671 +170544,68.403,90.80343 +170545,65.35,96.5529 +170546,65.953,94.5797 +170547,66.535,92.6689 +170548,67.099,90.81257 +170549,63.952,96.5259 +170550,64.586,94.5655 +170551,65.199,92.6672 +170552,65.795,90.82305 +170553,62.554,96.4974 +170554,63.22,94.5508 +170555,63.864,92.6658 +170556,64.491,90.83487 +170557,61.157,96.4673 +170558,61.854,94.5356 +170559,62.529,92.665 +170560,63.186,90.84802 +170561,59.761,96.4357 +170562,60.488,94.5198 +170563,61.193,92.6645 +170564,61.881,90.86249 +170565,58.365,96.4027 +170566,59.122,94.5035 +170567,59.857,92.6644 +170568,60.575,90.87826 +170569,56.97,96.3681 +170570,57.756,94.4866 +170571,58.521,92.6647 +170572,59.269,90.89533 +170573,55.575,96.332 +170574,56.391,94.4692 +170575,57.185,92.6654 +170576,57.962,90.91368 +170577,54.181,96.2945 +170578,55.026,94.4514 +170579,55.849,92.6665 +170580,56.654,90.93329 +170581,52.788,96.2556 +170582,53.661,94.433 +170583,54.513,92.668 +170584,55.346,90.95416 +170585,51.395,96.2152 +170586,52.297,94.4141 +170587,53.176,92.6699 +170588,54.037,90.97627 +170589,50.003,96.1735 +170590,50.932,94.3947 +170591,51.839,92.6722 +170592,52.728,90.9996 +170593,48.612,96.1303 +170594,49.568,94.3748 +170595,50.502,92.6748 +170596,51.418,91.0241 +170597,47.222,96.0858 +170598,48.204,94.3544 +170599,49.165,92.6778 +170600,50.107,91.0499 +170601,45.833,96.0399 +170602,46.841,94.3336 +170603,47.827,92.6811 +170604,48.795,91.0768 +170605,44.444,95.9927 +170606,45.478,94.3123 +170607,46.489,92.6849 +170608,47.483,91.1049 +170609,43.056,95.9442 +170610,44.115,94.2905 +170611,45.151,92.6889 +170612,46.17,91.1341 +170613,41.67,95.8944 +170614,42.752,94.2682 +170615,43.813,92.6933 +170616,44.856,91.1644 +170617,40.284,95.8433 +170618,41.39,94.2455 +170619,42.474,92.698 +170620,43.541,91.1958 +170621,38.899,95.791 +170622,40.028,94.2224 +170623,41.136,92.7031 +170624,42.226,91.2283 +170625,37.514,95.7375 +170626,38.666,94.1988 +170627,39.796,92.7085 +170628,40.909,91.2619 +170629,36.131,95.6828 +170630,37.304,94.1748 +170631,38.457,92.7142 +170632,39.592,91.2965 +170633,34.749,95.6269 +170634,35.943,94.1503 +170635,37.117,92.7202 +170636,38.274,91.3322 +170637,33.368,95.5699 +170638,34.583,94.1255 +170639,35.777,92.7265 +170640,36.955,91.3688 +170641,31.987,95.5117 +170642,33.222,94.1002 +170643,34.437,92.7331 +170644,35.635,91.4064 +170645,30.608,95.4525 +170646,31.862,94.0746 +170647,33.097,92.7399 +170648,34.314,91.4449 +170649,29.23,95.3923 +170650,30.503,94.0485 +170651,31.756,92.7471 +170652,32.992,91.4844 +170653,27.853,95.331 +170654,29.143,94.0221 +170655,30.415,92.7545 +170656,31.669,91.5248 +170657,26.477,95.2687 +170658,27.784,93.9953 +170659,29.073,92.7622 +170660,30.345,91.5661 +170661,25.102,95.2054 +170662,26.426,93.9681 +170663,27.731,92.7701 +170664,29.02,91.6082 +170665,23.728,95.1412 +170666,25.067,93.9406 +170667,26.389,92.7782 +170668,27.694,91.6512 +170669,22.355,95.076 +170670,23.71,93.9128 +170671,25.047,92.7866 +170672,26.368,91.6949 +170673,20.983,95.01 +170674,22.352,93.8846 +170675,23.704,92.7952 +170676,25.04,91.7395 +170677,19.613,94.9431 +170678,20.995,93.8561 +170679,22.361,92.8041 +170680,23.711,91.7848 +170681,18.243,94.8755 +170682,19.639,93.8273 +170683,21.017,92.8131 +170684,22.381,91.8308 +170685,16.875,94.807 +170686,18.282,93.7982 +170687,19.673,92.8223 +170688,21.049,91.8775 +170689,15.508,94.7377 +170690,16.926,93.7687 +170691,18.329,92.8318 +170692,19.717,91.9249 +170693,14.142,94.6678 +170694,15.571,93.739 +170695,16.985,92.8413 +170696,18.384,91.9729 +170697,12.777,94.5971 +170698,14.216,93.7091 +170699,15.64,92.8511 +170700,17.049,92.0215 +170701,11.413,94.5258 +170702,12.861,93.6788 +170703,14.295,92.861 +170704,15.714,92.0707 +170705,10.051,94.4538 +170706,11.507,93.6484 +170707,12.949,92.8711 +170708,14.377,92.1205 +170709,8.6898,94.3812 +170710,10.153,93.6176 +170711,11.603,92.8813 +170712,13.039,92.1708 +170713,7.3298,94.3081 +170714,8.7998,93.5867 +170715,10.257,92.8916 +170716,11.7,92.2216 +170717,5.9709,94.2345 +170718,7.4468,93.5555 +170719,8.9098,92.902 +170720,10.36,92.2729 +170721,4.6133,94.1603 +170722,6.0943,93.5241 +170723,7.5627,92.9126 +170724,9.0183,92.3246 +170725,3.2569,94.0857 +170726,4.7422,93.4925 +170727,6.2153,92.9232 +170728,7.6758,92.3767 +170729,1.9017,94.0107 +170730,3.3904,93.4608 +170731,4.8674,92.9339 +170732,6.332,92.4292 +170733,0.54777,93.9352 +170734,2.0392,93.4288 +170735,3.5192,92.9447 +170736,4.9871,92.482 +170737,359.2,93.8595 +170738,0.68831,93.3967 +170739,2.1706,92.9556 +170740,3.641,92.5351 +170741,357.84,93.7833 +170742,359.34,93.3645 +170743,0.82157,92.9665 +170744,2.2938,92.5886 +170745,356.49,93.7069 +170746,357.99,93.3321 +170747,359.47,92.9774 +170748,0.94529,92.6422 +170749,355.14,93.6302 +170750,356.64,93.2995 +170751,358.12,92.9884 +170752,359.6,92.6961 +170753,353.8,93.5533 +170754,355.29,93.2669 +170755,356.77,92.9994 +170756,358.24,92.7502 +170757,352.45,93.4763 +170758,353.94,93.2341 +170759,355.42,93.0104 +170760,356.89,92.8044 +170761,351.1,93.399 +170762,352.59,93.2013 +170763,354.07,93.0214 +170764,355.54,92.8588 +170765,349.76,93.3217 +170766,351.24,93.1683 +170767,352.72,93.0324 +170768,354.19,92.9132 +170769,348.42,93.2442 +170770,349.9,93.1353 +170771,351.37,93.0434 +170772,352.83,92.9677 +170773,347.08,93.1667 +170774,348.55,93.1022 +170775,350.02,93.0543 +170776,351.47,93.0223 +170777,345.74,93.0892 +170778,347.2,93.0691 +170779,348.66,93.0652 +170780,350.11,93.0768 +170781,344.4,93.0117 +170782,345.86,93.0359 +170783,347.31,93.076 +170784,348.76,93.1313 +170785,343.06,92.9342 +170786,344.51,93.0027 +170787,345.96,93.0868 +170788,347.39,93.1857 +170789,341.72,92.8569 +170790,343.17,92.9695 +170791,344.6,93.0975 +170792,346.03,93.24 +170793,340.39,92.7796 +170794,341.82,92.9363 +170795,343.25,93.108 +170796,344.67,93.2941 +170797,339.05,92.7025 +170798,340.48,92.9031 +170799,341.9,93.1185 +170800,343.31,93.3481 +170801,337.72,92.6256 +170802,339.13,92.8699 +170803,340.54,93.1289 +170804,341.94,93.4019 +170805,336.39,92.5489 +170806,337.79,92.8367 +170807,339.19,93.1392 +170808,340.58,93.4555 +170809,335.05,92.4725 +170810,336.45,92.8036 +170811,337.83,93.1493 +170812,339.21,93.5087 +170813,333.72,92.3963 +170814,335.1,92.7705 +170815,336.48,93.1593 +170816,337.84,93.5617 +170817,332.4,92.3205 +170818,333.76,92.7375 +170819,335.12,93.1691 +170820,336.47,93.6144 +170821,331.07,92.245 +170822,332.42,92.7046 +170823,333.76,93.1787 +170824,335.1,93.6667 +170825,329.74,92.1699 +170826,331.08,92.6717 +170827,332.41,93.1882 +170828,333.73,93.7185 +170829,328.42,92.0952 +170830,329.74,92.639 +170831,331.05,93.1975 +170832,332.35,93.77 +170833,327.09,92.0209 +170834,328.39,92.6063 +170835,329.69,93.2066 +170836,330.98,93.821 +170837,325.77,91.9471 +170838,327.05,92.5737 +170839,328.33,93.2155 +170840,329.61,93.8715 +170841,324.45,91.8738 +170842,325.71,92.5413 +170843,326.98,93.2241 +170844,328.23,93.9215 +170845,323.13,91.8011 +170846,324.37,92.509 +170847,325.62,93.2326 +170848,326.85,93.9709 +170849,321.81,91.7289 +170850,323.04,92.4769 +170851,324.26,93.2407 +170852,325.47,94.0197 +170853,320.49,91.6573 +170854,321.7,92.4449 +170855,322.9,93.2487 +170856,324.09,94.0679 +170857,319.17,91.5864 +170858,320.36,92.4131 +170859,321.54,93.2564 +170860,322.71,94.1155 +170861,317.85,91.5161 +170862,319.02,92.3815 +170863,320.18,93.2638 +170864,321.33,94.1623 +170865,316.54,91.4465 +170866,317.68,92.35 +170867,318.82,93.2709 +170868,319.95,94.2085 +170869,315.22,91.3776 +170870,316.34,92.3187 +170871,317.46,93.2777 +170872,318.57,94.2539 +170873,313.91,91.3094 +170874,315.01,92.2877 +170875,316.1,93.2843 +170876,317.18,94.2986 +170877,312.59,91.242 +170878,313.67,92.2569 +170879,314.74,93.2905 +170880,315.8,94.3424 +170881,311.28,91.1754 +170882,312.33,92.2262 +170883,313.38,93.2964 +170884,314.41,94.3855 +170885,309.97,91.1096 +170886,311,92.1959 +170887,312.02,93.302 +170888,313.03,94.4276 +170889,308.66,91.0446 +170890,309.66,92.1657 +170891,310.65,93.3072 +170892,311.64,94.4689 +170893,307.35,90.98056 +170894,308.33,92.1358 +170895,309.29,93.3122 +170896,310.25,94.5093 +170897,306.04,90.91738 +170898,306.99,92.1062 +170899,307.93,93.3167 +170900,308.86,94.5487 +170901,304.73,90.85512 +170902,305.66,92.0769 +170903,306.57,93.3209 +170904,307.47,94.5872 +170905,303.42,90.7938 +170906,304.32,92.0478 +170907,305.21,93.3247 +170908,306.08,94.6246 +170909,302.12,90.73345 +170910,302.99,92.019 +170911,303.84,93.3281 +170912,304.69,94.6611 +170913,300.81,90.67409 +170914,301.65,91.9905 +170915,302.48,93.3312 +170916,303.3,94.6965 +170917,299.51,90.61574 +170918,300.32,91.9623 +170919,301.12,93.3338 +170920,301.9,94.7308 +170921,298.2,90.55842 +170922,298.98,91.9344 +170923,299.75,93.3361 +170924,300.51,94.764 +170925,296.9,90.50216 +170926,297.65,91.9068 +170927,298.39,93.3379 +170928,299.11,94.7962 +170929,295.6,90.44697 +170930,296.32,91.8796 +170931,297.03,93.3393 +170932,297.72,94.8271 +170933,294.29,90.39288 +170934,294.98,91.8526 +170935,295.66,93.3403 +170936,296.32,94.8569 +170937,292.99,90.3399 +170938,293.65,91.8261 +170939,294.3,93.3409 +170940,294.93,94.8855 +170941,291.69,90.28805 +170942,292.32,91.7998 +170943,292.93,93.341 +170944,293.53,94.9129 +170945,290.39,90.23736 +170946,290.99,91.7739 +170947,291.57,93.3407 +170948,292.13,94.9391 +170949,289.09,90.18783 +170950,289.66,91.7484 +170951,290.2,93.3399 +170952,290.74,94.964 +170953,287.79,90.13949 +170954,288.32,91.7232 +170955,288.84,93.3386 +170956,289.34,94.9876 +170957,286.49,90.092355 +170958,286.99,91.6984 +170959,287.47,93.3369 +170960,287.94,95.01 +170961,285.19,90.046434 +170962,285.66,91.674 +170963,286.11,93.3347 +170964,286.54,95.031 +170965,283.9,90.0017451 +170966,284.33,91.6499 +170967,284.74,93.3321 +170968,285.14,95.0507 +170969,282.6,89.958303 +170970,283,91.6263 +170971,283.38,93.329 +170972,283.74,95.069 +170973,281.3,89.916121 +170974,281.67,91.603 +170975,282.01,93.3253 +170976,282.34,95.086 +170977,280,89.87521 +170978,280.34,91.5801 +170979,280.65,93.3212 +170980,280.94,95.1016 +170981,278.71,89.83559 +170982,279,91.5576 +170983,279.28,93.3166 +170984,279.54,95.1158 +170985,277.41,89.79726 +170986,277.67,91.5355 +170987,277.92,93.3115 +170988,278.14,95.1286 +170989,276.12,89.76025 +170990,276.34,91.5138 +170991,276.55,93.3059 +170992,276.74,95.1399 +170993,274.82,89.72455 +170994,275.01,91.4926 +170995,275.19,93.2997 +170996,275.33,95.1498 +170997,273.52,89.69018 +170998,273.68,91.4717 +170999,273.82,93.2931 +171000,273.93,95.1583 +171001,272.23,89.65714 +171002,272.35,91.4513 +171003,272.45,93.286 +171004,272.53,95.1653 +171005,270.93,89.62546 +171006,271.02,91.4313 +171007,271.09,93.2783 +171008,271.13,95.1708 +171009,269.64,89.59512 +171010,269.69,91.4117 +171011,269.72,93.2701 +171012,269.73,95.1748 +171013,268.34,89.56615 +171014,268.36,91.3925 +171015,268.36,93.2614 +171016,268.33,95.1773 +171017,267.05,89.53854 +171018,267.03,91.3738 +171019,266.99,93.2521 +171020,266.92,95.1784 +171021,265.75,89.5123 +171022,265.7,91.3555 +171023,265.63,93.2423 +171024,265.52,95.1779 +171025,264.46,89.48744 +171026,264.37,91.3376 +171027,264.26,93.232 +171028,264.12,95.1758 +171029,263.16,89.46396 +171030,263.04,91.3202 +171031,262.89,93.2212 +171032,262.72,95.1723 +171033,261.87,89.44187 +171034,261.71,91.3032 +171035,261.53,93.2098 +171036,261.32,95.1672 +171037,260.57,89.42116 +171038,260.38,91.2866 +171039,260.16,93.1979 +171040,259.91,95.1606 +171041,259.28,89.40184 +171042,259.05,91.2705 +171043,258.8,93.1854 +171044,258.51,95.1524 +171045,257.98,89.38391 +171046,257.72,91.2548 +171047,257.43,93.1724 +171048,257.11,95.1427 +171049,256.69,89.36737 +171050,256.39,91.2396 +171051,256.07,93.1589 +171052,255.71,95.1314 +171053,255.39,89.35222 +171054,255.06,91.2247 +171055,254.7,93.1448 +171056,254.31,95.1186 +171057,254.1,89.33846 +171058,253.73,91.2104 +171059,253.34,93.1302 +171060,252.91,95.1043 +171061,252.8,89.32608 +171062,252.4,91.1964 +171063,251.97,93.115 +171064,251.51,95.0883 +171065,251.51,89.3151 +171066,251.07,91.183 +171067,250.61,93.0994 +171068,250.11,95.0709 +171069,250.21,89.30549 +171070,249.74,91.1699 +171071,249.24,93.0831 +171072,248.71,95.0518 +171073,248.91,89.29727 +171074,248.41,91.1573 +171075,247.88,93.0664 +171076,247.31,95.0313 +171077,247.62,89.29042 +171078,247.08,91.1451 +171079,246.52,93.0491 +171080,245.91,95.0091 +171081,246.32,89.28494 +171082,245.75,91.1333 +171083,245.15,93.0312 +171084,244.52,94.9855 +171085,245.02,89.28083 +171086,244.42,91.122 +171087,243.79,93.0129 +171088,243.12,94.9603 +171089,243.72,89.27807 +171090,243.09,91.1111 +171091,242.42,92.994 +171092,241.72,94.9336 +171093,242.43,89.27666 +171094,241.76,91.1007 +171095,241.06,92.9746 +171096,240.32,94.9053 +171097,241.13,89.2766 +171098,240.43,91.0906 +171099,239.7,92.9546 +171100,238.93,94.8756 +171101,239.83,89.27787 +171102,239.1,91.081 +171103,238.33,92.9342 +171104,237.53,94.8443 +171105,238.53,89.28047 +171106,237.77,91.0718 +171107,236.97,92.9132 +171108,236.14,94.8116 +171109,237.23,89.28438 +171110,236.43,91.0631 +171111,235.61,92.8917 +171112,234.74,94.7773 +171113,235.93,89.2896 +171114,235.1,91.0547 +171115,234.25,92.8697 +171116,233.35,94.7416 +171117,234.63,89.29612 +171118,233.77,91.0467 +171119,232.88,92.8472 +171120,231.96,94.7044 +171121,233.32,89.30391 +171122,232.44,91.0392 +171123,231.52,92.8242 +171124,230.57,94.6658 +171125,232.02,89.31298 +171126,231.11,91.032 +171127,230.16,92.8007 +171128,229.18,94.6257 +171129,230.72,89.32331 +171130,229.77,91.0253 +171131,228.8,92.7767 +171132,227.79,94.5842 +171133,229.41,89.33488 +171134,228.44,91.0189 +171135,227.44,92.7522 +171136,226.4,94.5413 +171137,228.11,89.34768 +171138,227.11,91.013 +171139,226.08,92.7272 +171140,225.01,94.4969 +171141,226.8,89.3617 +171142,225.78,91.0074 +171143,224.72,92.7017 +171144,223.62,94.4512 +171145,225.5,89.37692 +171146,224.44,91.0022 +171147,223.36,92.6758 +171148,222.23,94.4042 +171149,224.19,89.39332 +171150,223.11,90.99736 +171151,222,92.6494 +171152,220.85,94.3558 +171153,222.88,89.41089 +171154,221.78,90.99289 +171155,220.64,92.6225 +171156,219.46,94.3061 +171157,221.57,89.42961 +171158,220.44,90.98879 +171159,219.28,92.5952 +171160,218.08,94.255 +171161,220.26,89.44947 +171162,219.11,90.98504 +171163,217.92,92.5675 +171164,216.69,94.2027 +171165,218.95,89.47044 +171166,217.77,90.98164 +171167,216.56,92.5392 +171168,215.31,94.1491 +171169,217.64,89.49251 +171170,216.44,90.97859 +171171,215.2,92.5106 +171172,213.93,94.0943 +171173,216.33,89.51565 +171174,215.1,90.97587 +171175,213.85,92.4815 +171176,212.55,94.0382 +171177,215.01,89.53985 +171178,213.77,90.97348 +171179,212.49,92.452 +171180,211.17,93.981 +171181,213.7,89.56509 +171182,212.43,90.97142 +171183,211.13,92.4221 +171184,209.79,93.9225 +171185,212.39,89.59134 +171186,211.1,90.96967 +171187,209.77,92.3918 +171188,208.42,93.8629 +171189,211.07,89.61859 +171190,209.76,90.96823 +171191,208.42,92.3611 +171192,207.04,93.8022 +171193,209.75,89.64681 +171194,208.42,90.96709 +171195,207.06,92.33 +171196,205.67,93.7404 +171197,208.43,89.67598 +171198,207.09,90.96625 +171199,205.71,92.2985 +171200,204.29,93.6775 +171201,207.12,89.70608 +171202,205.75,90.96569 +171203,204.35,92.2666 +171204,202.92,93.6135 +171205,205.8,89.73708 +171206,204.41,90.96541 +171207,203,92.2344 +171208,201.55,93.5485 +171209,204.47,89.76897 +171210,203.07,90.96539 +171211,201.64,92.2018 +171212,200.18,93.4825 +171213,203.15,89.80171 +171214,201.74,90.96565 +171215,200.29,92.1689 +171216,198.81,93.4155 +171217,201.83,89.83528 +171218,200.4,90.96615 +171219,198.94,92.1356 +171220,197.44,93.3476 +171221,200.5,89.86966 +171222,199.06,90.9669 +171223,197.58,92.102 +171224,196.07,93.2788 +171225,199.18,89.904822 +171226,197.72,90.96788 +171227,196.23,92.0681 +171228,194.71,93.2091 +171229,197.85,89.94074 +171230,196.38,90.9691 +171231,194.88,92.0338 +171232,193.34,93.1385 +171233,196.52,89.977387 +171234,195.04,90.97053 +171235,193.53,91.9993 +171236,191.98,93.0671 +171237,195.2,90.014737 +171238,193.7,90.97217 +171239,192.17,91.9645 +171240,190.62,92.9949 +171241,193.87,90.052764 +171242,192.36,90.97401 +171243,190.82,91.9294 +171244,189.26,92.9219 +171245,192.53,90.09144 +171246,191.02,90.97604 +171247,189.47,91.894 +171248,187.9,92.8482 +171249,191.2,90.13074 +171250,189.68,90.97825 +171251,188.12,91.8583 +171252,186.54,92.7737 +171253,189.87,90.17063 +171254,188.33,90.98064 +171255,186.77,91.8224 +171256,185.19,92.6986 +171257,188.53,90.21109 +171258,186.99,90.98318 +171259,185.42,91.7863 +171260,183.83,92.6229 +171261,187.2,90.25208 +171262,185.65,90.98588 +171263,184.08,91.7499 +171264,182.48,92.5465 +171265,185.86,90.29359 +171266,184.31,90.98872 +171267,182.73,91.7133 +171268,181.12,92.4696 +171269,184.52,90.33557 +171270,182.96,90.9917 +171271,181.38,91.6765 +171272,179.77,92.3921 +171273,183.18,90.378 +171274,181.62,90.9948 +171275,180.03,91.6395 +171276,178.42,92.3141 +171277,181.84,90.42086 +171278,180.28,90.99801 +171279,178.69,91.6023 +171280,177.07,92.2356 +171281,180.5,90.4641 +171282,178.93,91.0013 +171283,177.34,91.5649 +171284,175.72,92.1567 +171285,179.16,90.50771 +171286,177.59,91.0047 +171287,175.99,91.5273 +171288,174.38,92.0774 +171289,177.81,90.55165 +171290,176.24,91.0082 +171291,174.65,91.4896 +171292,173.03,91.9976 +171293,176.47,90.59588 +171294,174.9,91.0118 +171295,173.3,91.4518 +171296,171.69,91.9176 +171297,175.12,90.64039 +171298,173.55,91.0154 +171299,171.96,91.4138 +171300,170.35,91.8372 +171301,173.77,90.68514 +171302,172.2,91.0191 +171303,170.61,91.3757 +171304,169.01,91.7565 +171305,172.42,90.7301 +171306,170.86,91.0228 +171307,169.27,91.3375 +171308,167.67,91.6756 +171309,171.07,90.77524 +171310,169.51,91.0265 +171311,167.93,91.2991 +171312,166.33,91.5945 +171313,169.72,90.82052 +171314,168.16,91.0303 +171315,166.59,91.2607 +171316,164.99,91.5131 +171317,168.37,90.86592 +171318,166.81,91.0341 +171319,165.24,91.2222 +171320,163.65,91.4317 +171321,167.01,90.91141 +171322,165.47,91.0378 +171323,163.9,91.1836 +171324,162.32,91.3501 +171325,165.65,90.95695 +171326,164.12,91.0416 +171327,162.56,91.145 +171328,160.99,91.2685 +171329,164.3,91.0025 +171330,162.77,91.0453 +171331,161.22,91.1063 +171332,159.65,91.1868 +171333,162.94,91.0481 +171334,161.42,91.049 +171335,159.88,91.0676 +171336,158.32,91.1051 +171337,161.58,91.0936 +171338,160.07,91.0527 +171339,158.54,91.0289 +171340,156.99,91.0234 +171341,160.22,91.139 +171342,158.72,91.0563 +171343,157.2,90.99012 +171344,155.66,90.94175 +171345,158.86,91.1844 +171346,157.37,91.0598 +171347,155.86,90.95137 +171348,154.34,90.86021 +171349,157.5,91.2296 +171350,156.02,91.0633 +171351,154.52,90.91263 +171352,153.01,90.77879 +171353,156.13,91.2746 +171354,154.67,91.0666 +171355,153.18,90.8739 +171356,151.69,90.69753 +171357,154.77,91.3195 +171358,153.31,91.0699 +171359,151.85,90.8352 +171360,150.36,90.61646 +171361,153.4,91.3641 +171362,151.96,91.0731 +171363,150.51,90.79655 +171364,149.04,90.53561 +171365,152.03,91.4084 +171366,150.61,91.0761 +171367,149.17,90.75795 +171368,147.72,90.45501 +171369,150.66,91.4525 +171370,149.26,91.0791 +171371,147.83,90.71941 +171372,146.4,90.3747 +171373,149.29,91.4962 +171374,147.9,91.0818 +171375,146.5,90.68094 +171376,145.08,90.29471 +171377,147.92,91.5396 +171378,146.55,91.0845 +171379,145.16,90.64256 +171380,143.76,90.21507 +171381,146.55,91.5827 +171382,145.2,91.0869 +171383,143.83,90.60427 +171384,142.45,90.13581 +171385,145.18,91.6253 +171386,143.84,91.0892 +171387,142.49,90.56609 +171388,141.13,90.056964 +171389,143.8,91.6674 +171390,142.49,91.0914 +171391,141.16,90.52802 +171392,139.82,89.978561 +171393,142.43,91.7091 +171394,141.13,91.0933 +171395,139.82,90.49008 +171396,138.5,89.900634 +171397,141.05,91.7503 +171398,139.78,91.095 +171399,138.49,90.45228 +171400,137.19,89.82321 +171401,139.67,91.7909 +171402,138.42,91.0966 +171403,137.16,90.41462 +171404,135.88,89.74632 +171405,138.29,91.831 +171406,137.07,91.0979 +171407,135.83,90.37712 +171408,134.57,89.67 +171409,136.91,91.8705 +171410,135.71,91.0989 +171411,134.49,90.33979 +171412,133.26,89.59427 +171413,135.53,91.9094 +171414,134.35,91.0998 +171415,133.16,90.30263 +171416,131.95,89.51917 +171417,134.15,91.9476 +171418,133,91.1004 +171419,131.83,90.26566 +171420,130.65,89.44472 +171421,132.77,91.9851 +171422,131.64,91.1007 +171423,130.5,90.22889 +171424,129.34,89.37095 +171425,131.38,92.022 +171426,130.28,91.1007 +171427,129.17,90.19232 +171428,128.04,89.29788 +171429,130,92.0581 +171430,128.93,91.1005 +171431,127.84,90.15596 +171432,126.73,89.22555 +171433,128.62,92.0934 +171434,127.57,91.1 +171435,126.51,90.11983 +171436,125.43,89.15398 +171437,127.23,92.128 +171438,126.21,91.0992 +171439,125.18,90.083934 +171440,124.13,89.0832 +171441,125.84,92.1617 +171442,124.85,91.0981 +171443,123.85,90.048277 +171444,122.83,89.01324 +171445,124.45,92.1946 +171446,123.49,91.0967 +171447,122.52,90.01287 +171448,121.53,88.9441 +171449,123.07,92.2266 +171450,122.13,91.095 +171451,121.19,89.977723 +171452,120.23,88.8759 +171453,121.68,92.2578 +171454,120.78,91.0929 +171455,119.86,89.942843 +171456,118.93,88.8085 +171457,120.29,92.288 +171458,119.42,91.0905 +171459,118.53,89.908239 +171460,117.63,88.742 +171461,118.89,92.3172 +171462,118.06,91.0878 +171463,117.2,89.87392 +171464,116.33,88.6765 +171465,117.5,92.3455 +171466,116.7,91.0847 +171467,115.87,89.83989 +171468,115.04,88.6119 +171469,116.11,92.3728 +171470,115.34,91.0812 +171471,114.55,89.80616 +171472,113.74,88.5483 +171473,114.72,92.3991 +171474,113.98,91.0774 +171475,113.22,89.77274 +171476,112.44,88.4858 +171477,113.32,92.4243 +171478,112.62,91.0732 +171479,111.89,89.73963 +171480,111.15,88.4242 +171481,111.93,92.4485 +171482,111.26,91.0686 +171483,110.57,89.70684 +171484,109.86,88.3637 +171485,110.53,92.4716 +171486,109.9,91.0636 +171487,109.24,89.67439 +171488,108.56,88.3043 +171489,109.14,92.4936 +171490,108.54,91.0583 +171491,107.91,89.64226 +171492,107.27,88.2459 +171493,107.74,92.5145 +171494,107.17,91.0525 +171495,106.59,89.61048 +171496,105.98,88.1886 +171497,106.35,92.5342 +171498,105.81,91.0463 +171499,105.26,89.57905 +171500,104.69,88.1325 +171501,104.95,92.5527 +171502,104.45,91.0397 +171503,103.93,89.54798 +171504,103.4,88.0775 +171505,103.55,92.5701 +171506,103.09,91.0327 +171507,102.61,89.51726 +171508,102.11,88.0237 +171509,102.15,92.5862 +171510,101.73,91.0252 +171511,101.28,89.48691 +171512,100.82,87.971 +171513,100.75,92.6012 +171514,100.37,91.0173 +171515,99.958,89.45694 +171516,99.526,87.9195 +171517,99.356,92.6148 +171518,99.007,91.009 +171519,98.633,89.42734 +171520,98.236,87.8693 +171521,97.957,92.6273 +171522,97.645,91.0002 +171523,97.308,89.39812 +171524,96.948,87.8202 +171525,96.558,92.6384 +171526,96.284,90.99101 +171527,95.984,89.36929 +171528,95.659,87.7724 +171529,95.158,92.6483 +171530,94.922,90.98134 +171531,94.659,89.34086 +171532,94.371,87.7258 +171533,93.758,92.6568 +171534,93.56,90.9712 +171535,93.334,89.31282 +171536,93.083,87.6805 +171537,92.358,92.664 +171538,92.198,90.96061 +171539,92.01,89.28518 +171540,91.796,87.6364 +171541,90.958,92.6699 +171542,90.836,90.94954 +171543,90.686,89.25795 +171544,90.509,87.5936 +171545,89.557,92.6745 +171546,89.475,90.93801 +171547,89.362,89.23112 +171548,89.222,87.5522 +171549,88.157,92.6776 +171550,88.113,90.926 +171551,88.038,89.20471 +171552,87.935,87.512 +171553,86.756,92.6794 +171554,86.751,90.91351 +171555,86.714,89.17872 +171556,86.648,87.4731 +171557,85.356,92.6799 +171558,85.389,90.90054 +171559,85.39,89.15314 +171560,85.362,87.4356 +171561,83.955,92.6789 +171562,84.027,90.88708 +171563,84.066,89.12799 +171564,84.075,87.3993 +171565,82.554,92.6765 +171566,82.665,90.87313 +171567,82.742,89.10326 +171568,82.789,87.3644 +171569,81.154,92.6727 +171570,81.304,90.8587 +171571,81.419,89.07896 +171572,81.502,87.3309 +171573,79.753,92.6675 +171574,79.942,90.84377 +171575,80.095,89.05509 +171576,80.216,87.2987 +171577,78.353,92.6609 +171578,78.58,90.82835 +171579,78.771,89.03165 +171580,78.93,87.2678 +171581,76.953,92.6528 +171582,77.219,90.81244 +171583,77.447,89.00865 +171584,77.643,87.2383 +171585,75.552,92.6432 +171586,75.857,90.79602 +171587,76.124,88.9861 +171588,76.357,87.2101 +171589,74.153,92.6323 +171590,74.496,90.77911 +171591,74.8,88.9639 +171592,75.07,87.1834 +171593,72.753,92.6198 +171594,73.134,90.76169 +171595,73.476,88.9422 +171596,73.784,87.1579 +171597,71.353,92.606 +171598,71.773,90.74378 +171599,72.153,88.921 +171600,72.497,87.1339 +171601,69.954,92.5906 +171602,70.412,90.72536 +171603,70.829,88.9002 +171604,71.21,87.1112 +171605,68.555,92.5738 +171606,69.051,90.70644 +171607,69.505,88.8798 +171608,69.923,87.0898 +171609,67.157,92.5556 +171610,67.69,90.68702 +171611,68.181,88.8598 +171612,68.635,87.0698 +171613,65.759,92.5358 +171614,66.33,90.6671 +171615,66.857,88.8403 +171616,67.347,87.0512 +171617,64.361,92.5146 +171618,64.969,90.64667 +171619,65.533,88.8213 +171620,66.059,87.034 +171621,62.964,92.492 +171622,63.609,90.62575 +171623,64.209,88.8026 +171624,64.771,87.0181 +171625,61.567,92.4679 +171626,62.249,90.60432 +171627,62.885,88.7844 +171628,63.482,87.0036 +171629,60.171,92.4423 +171630,60.889,90.5824 +171631,61.561,88.7667 +171632,62.193,86.9904 +171633,58.775,92.4153 +171634,59.529,90.55998 +171635,60.236,88.7494 +171636,60.904,86.9785 +171637,57.38,92.3868 +171638,58.169,90.53706 +171639,58.912,88.7325 +171640,59.614,86.968 +171641,55.986,92.3569 +171642,56.81,90.51365 +171643,57.587,88.716 +171644,58.323,86.9589 +171645,54.592,92.3255 +171646,55.451,90.48975 +171647,56.262,88.7 +171648,57.032,86.951 +171649,53.199,92.2927 +171650,54.092,90.46535 +171651,54.937,88.6844 +171652,55.741,86.9445 +171653,51.806,92.2584 +171654,52.734,90.44047 +171655,53.612,88.6692 +171656,54.449,86.9393 +171657,50.414,92.2228 +171658,51.375,90.41511 +171659,52.287,88.6544 +171660,53.156,86.9354 +171661,49.023,92.1857 +171662,50.017,90.38927 +171663,50.961,88.6401 +171664,51.863,86.9327 +171665,47.633,92.1472 +171666,48.659,90.36295 +171667,49.636,88.6262 +171668,50.569,86.9314 +171669,46.243,92.1074 +171670,47.302,90.33615 +171671,48.31,88.6127 +171672,49.275,86.9313 +171673,44.855,92.0661 +171674,45.945,90.30889 +171675,46.984,88.5995 +171676,47.98,86.9325 +171677,43.467,92.0235 +171678,44.588,90.28116 +171679,45.657,88.5868 +171680,46.684,86.935 +171681,42.08,91.9796 +171682,43.231,90.25297 +171683,44.331,88.5745 +171684,45.387,86.9387 +171685,40.694,91.9342 +171686,41.875,90.22432 +171687,43.004,88.5626 +171688,44.09,86.9436 +171689,39.309,91.8876 +171690,40.519,90.19522 +171691,41.677,88.5511 +171692,42.792,86.9497 +171693,37.924,91.8396 +171694,39.163,90.16567 +171695,40.35,88.54 +171696,41.493,86.957 +171697,36.541,91.7904 +171698,37.808,90.13568 +171699,39.023,88.5292 +171700,40.193,86.9655 +171701,35.159,91.7398 +171702,36.453,90.10525 +171703,37.695,88.5189 +171704,38.893,86.9751 +171705,33.778,91.688 +171706,35.098,90.074386 +171707,36.367,88.5089 +171708,37.591,86.9859 +171709,32.397,91.635 +171710,33.744,90.0431 +171711,35.039,88.4992 +171712,36.289,86.9978 +171713,31.018,91.5807 +171714,32.39,90.011394 +171715,33.71,88.49 +171716,34.986,87.0109 +171717,29.64,91.5251 +171718,31.037,89.979274 +171719,32.381,88.481 +171720,33.682,87.025 +171721,28.263,91.4684 +171722,29.684,89.946748 +171723,31.052,88.4725 +171724,32.377,87.0402 +171725,26.887,91.4106 +171726,28.331,89.913821 +171727,29.723,88.4642 +171728,31.07,87.0565 +171729,25.512,91.3515 +171730,26.979,89.8805 +171731,28.393,88.4563 +171732,29.763,87.0738 +171733,24.139,91.2914 +171734,25.627,89.84679 +171735,27.063,88.4488 +171736,28.455,87.0921 +171737,22.766,91.2301 +171738,24.275,89.81271 +171739,25.733,88.4415 +171740,27.146,87.1114 +171741,21.395,91.1677 +171742,22.924,89.77825 +171743,24.402,88.4346 +171744,25.836,87.1317 +171745,20.025,91.1043 +171746,21.573,89.74342 +171747,23.071,88.428 +171748,24.525,87.153 +171749,18.656,91.0398 +171750,20.223,89.70824 +171751,21.74,88.4217 +171752,23.213,87.1752 +171753,17.289,90.97433 +171754,18.873,89.67271 +171755,20.408,88.4156 +171756,21.899,87.1983 +171757,15.923,90.90784 +171758,17.524,89.63684 +171759,19.076,88.4099 +171760,20.585,87.2223 +171761,14.558,90.84039 +171762,16.175,89.60064 +171763,17.743,88.4044 +171764,19.269,87.2471 +171765,13.194,90.772 +171766,14.827,89.56411 +171767,16.411,88.3992 +171768,17.953,87.2728 +171769,11.831,90.70269 +171770,13.479,89.52727 +171771,15.078,88.3943 +171772,16.635,87.2993 +171773,10.47,90.6325 +171774,12.131,89.49012 +171775,13.744,88.3896 +171776,15.316,87.3266 +171777,9.1103,90.56144 +171778,10.784,89.45267 +171779,12.41,88.3852 +171780,13.995,87.3547 +171781,7.7517,90.48955 +171782,9.4371,89.41494 +171783,11.076,88.381 +171784,12.674,87.3835 +171785,6.3945,90.41685 +171786,8.0909,89.37692 +171787,9.7414,88.377 +171788,11.351,87.4131 +171789,5.0386,90.34337 +171790,6.7452,89.33863 +171791,8.4064,88.3732 +171792,10.028,87.4433 +171793,3.6841,90.26914 +171794,5.4,89.30008 +171795,7.0711,88.3697 +171796,8.7025,87.4742 +171797,2.3309,90.1942 +171798,4.0552,89.26128 +171799,5.7353,88.3663 +171800,7.3762,87.5058 +171801,0.97912,90.11856 +171802,2.7109,89.22223 +171803,4.3992,88.3632 +171804,6.0486,87.5379 +171805,359.63,90.042262 +171806,1.367,89.18295 +171807,3.0626,88.3602 +171808,4.7198,87.5707 +171809,358.28,89.965334 +171810,0.023696,89.14345 +171811,1.7257,88.3574 +171812,3.3898,87.6039 +171813,356.93,89.88781 +171814,358.68,89.10374 +171815,0.38836,88.3548 +171816,2.0584,87.6378 +171817,355.59,89.80971 +171818,357.34,89.06382 +171819,359.05,88.3523 +171820,0.72584,87.6721 +171821,354.24,89.73107 +171822,356,89.02371 +171823,357.71,88.35 +171824,359.39,87.7069 +171825,352.9,89.65193 +171826,354.66,88.9834 +171827,356.37,88.3478 +171828,358.06,87.7422 +171829,351.55,89.57232 +171830,353.31,88.9429 +171831,355.04,88.3457 +171832,356.72,87.7779 +171833,350.21,89.49225 +171834,351.97,88.9023 +171835,353.7,88.3438 +171836,355.38,87.8139 +171837,348.87,89.41178 +171838,350.63,88.8615 +171839,352.36,88.3419 +171840,354.04,87.8503 +171841,347.54,89.33093 +171842,349.29,88.8206 +171843,351.02,88.3402 +171844,352.7,87.8871 +171845,346.2,89.24973 +171846,347.96,88.7796 +171847,349.68,88.3385 +171848,351.36,87.9242 +171849,344.87,89.16821 +171850,346.62,88.7384 +171851,348.33,88.3369 +171852,350.02,87.9615 +171853,343.53,89.08642 +171854,345.28,88.6971 +171855,346.99,88.3354 +171856,348.67,87.9991 +171857,342.2,89.00437 +171858,343.94,88.6557 +171859,345.65,88.334 +171860,347.33,88.0368 +171861,340.87,88.9221 +171862,342.6,88.6142 +171863,344.31,88.3325 +171864,345.98,88.0748 +171865,339.54,88.8397 +171866,341.27,88.5727 +171867,342.97,88.3312 +171868,344.63,88.1129 +171869,338.21,88.7571 +171870,339.93,88.5311 +171871,341.62,88.3298 +171872,343.28,88.1512 +171873,336.88,88.6743 +171874,338.6,88.4894 +171875,340.28,88.3285 +171876,341.93,88.1895 +171877,335.56,88.5915 +171878,337.26,88.4477 +171879,338.94,88.3271 +171880,340.58,88.228 +171881,334.23,88.5087 +171882,335.93,88.4059 +171883,337.59,88.3258 +171884,339.23,88.2664 +171885,332.91,88.4258 +171886,334.59,88.3641 +171887,336.25,88.3244 +171888,337.87,88.3048 +171889,331.59,88.3429 +171890,333.26,88.3223 +171891,334.9,88.3231 +171892,336.52,88.3433 +171893,330.27,88.2601 +171894,331.93,88.2805 +171895,333.56,88.3216 +171896,335.16,88.3816 +171897,328.95,88.1773 +171898,330.59,88.2387 +171899,332.21,88.3202 +171900,333.8,88.4199 +171901,327.63,88.0947 +171902,329.26,88.197 +171903,330.86,88.3187 +171904,332.44,88.4581 +171905,326.32,88.0122 +171906,327.93,88.1552 +171907,329.52,88.3171 +171908,331.08,88.4961 +171909,325,87.9299 +171910,326.6,88.1135 +171911,328.17,88.3154 +171912,329.72,88.5339 +171913,323.69,87.8478 +171914,325.27,88.0719 +171915,326.82,88.3137 +171916,328.36,88.5716 +171917,322.37,87.7659 +171918,323.94,88.0303 +171919,325.48,88.3119 +171920,326.99,88.609 +171921,321.06,87.6843 +171922,322.61,87.9888 +171923,324.13,88.3099 +171924,325.63,88.6461 +171925,319.75,87.603 +171926,321.28,87.9473 +171927,322.78,88.3079 +171928,324.26,88.683 +171929,318.44,87.522 +171930,319.95,87.906 +171931,321.43,88.3057 +171932,322.89,88.7195 +171933,317.14,87.4414 +171934,318.62,87.8647 +171935,320.08,88.3033 +171936,321.52,88.7556 +171937,315.83,87.3611 +171938,317.29,87.8236 +171939,318.73,88.3009 +171940,320.15,88.7914 +171941,314.52,87.2813 +171942,315.96,87.7826 +171943,317.38,88.2983 +171944,318.78,88.8268 +171945,313.22,87.202 +171946,314.64,87.7417 +171947,316.03,88.2955 +171948,317.41,88.8617 +171949,311.92,87.1231 +171950,313.31,87.701 +171951,314.68,88.2925 +171952,316.03,88.8962 +171953,310.62,87.0448 +171954,311.98,87.6604 +171955,313.33,88.2894 +171956,314.66,88.9302 +171957,309.31,86.967 +171958,310.66,87.6199 +171959,311.98,88.286 +171960,313.28,88.9636 +171961,308.01,86.8897 +171962,309.33,87.5797 +171963,310.63,88.2825 +171964,311.9,88.9965 +171965,306.72,86.8131 +171966,308.01,87.5396 +171967,309.28,88.2787 +171968,310.53,89.02884 +171969,305.42,86.7371 +171970,306.68,87.4997 +171971,307.92,88.2747 +171972,309.15,89.06055 +171973,304.12,86.6618 +171974,305.36,87.4601 +171975,306.57,88.2705 +171976,307.77,89.09163 +171977,302.83,86.5871 +171978,304.03,87.4206 +171979,305.22,88.2661 +171980,306.39,89.12204 +171981,301.53,86.5131 +171982,302.71,87.3813 +171983,303.87,88.2614 +171984,305,89.15177 +171985,300.24,86.4399 +171986,301.39,87.3423 +171987,302.51,88.2564 +171988,303.62,89.18079 +171989,298.94,86.3675 +171990,300.06,87.3035 +171991,301.16,88.2512 +171992,302.24,89.20907 +171993,297.65,86.2958 +171994,298.74,87.265 +171995,299.81,88.2457 +171996,300.85,89.23659 +171997,296.36,86.225 +171998,297.42,87.2267 +171999,298.45,88.24 +172000,299.47,89.26331 +172001,295.07,86.1549 +172002,296.09,87.1886 +172003,297.1,88.2339 +172004,298.08,89.28923 +172005,293.78,86.0858 +172006,294.77,87.1509 +172007,295.74,88.2275 +172008,296.69,89.31431 +172009,292.49,86.0175 +172010,293.45,87.1134 +172011,294.39,88.2209 +172012,295.3,89.33852 +172013,291.21,85.9502 +172014,292.13,87.0762 +172015,293.03,88.2139 +172016,293.91,89.36186 +172017,289.92,85.8838 +172018,290.81,87.0393 +172019,291.68,88.2066 +172020,292.53,89.38428 +172021,288.63,85.8183 +172022,289.49,87.0027 +172023,290.32,88.1989 +172024,291.13,89.40577 +172025,287.35,85.7538 +172026,288.17,86.9664 +172027,288.97,88.191 +172028,289.74,89.42632 +172029,286.06,85.6903 +172030,286.85,86.9304 +172031,287.61,88.1827 +172032,288.35,89.44589 +172033,284.78,85.6278 +172034,285.53,86.8947 +172035,286.25,88.174 +172036,286.96,89.46446 +172037,283.5,85.5664 +172038,284.21,86.8594 +172039,284.9,88.165 +172040,285.57,89.48202 +172041,282.21,85.506 +172042,282.89,86.8244 +172043,283.54,88.1556 +172044,284.17,89.49854 +172045,280.93,85.4467 +172046,281.57,86.7898 +172047,282.19,88.1459 +172048,282.78,89.51401 +172049,279.65,85.3885 +172050,280.25,86.7554 +172051,280.83,88.1358 +172052,281.38,89.5284 +172053,278.37,85.3314 +172054,278.93,86.7215 +172055,279.47,88.1252 +172056,279.99,89.54169 +172057,277.09,85.2754 +172058,277.61,86.6879 +172059,278.12,88.1144 +172060,278.59,89.55388 +172061,275.81,85.2205 +172062,276.3,86.6547 +172063,276.76,88.1031 +172064,277.2,89.56494 +172065,274.53,85.1669 +172066,274.98,86.6218 +172067,275.4,88.0914 +172068,275.8,89.57485 +172069,273.25,85.1143 +172070,273.66,86.5893 +172071,274.04,88.0793 +172072,274.4,89.5836 +172073,271.97,85.063 +172074,272.34,86.5573 +172075,272.69,88.0668 +172076,273.01,89.59117 +172077,270.69,85.0129 +172078,271.02,86.5255 +172079,271.33,88.0539 +172080,271.61,89.59754 +172081,269.41,84.964 +172082,269.71,86.4942 +172083,269.97,88.0406 +172084,270.21,89.60271 +172085,268.13,84.9163 +172086,268.39,86.4633 +172087,268.62,88.0268 +172088,268.81,89.60665 +172089,266.86,84.8699 +172090,267.07,86.4328 +172091,267.26,88.0126 +172092,267.41,89.60936 +172093,265.58,84.8247 +172094,265.75,86.4027 +172095,265.9,87.998 +172096,266.02,89.61081 +172097,264.3,84.7808 +172098,264.44,86.3729 +172099,264.54,87.983 +172100,264.62,89.61101 +172101,263.02,84.7381 +172102,263.12,86.3436 +172103,263.19,87.9675 +172104,263.22,89.60993 +172105,261.75,84.6968 +172106,261.8,86.3148 +172107,261.83,87.9516 +172108,261.82,89.60757 +172109,260.47,84.6567 +172110,260.49,86.2863 +172111,260.47,87.9352 +172112,260.42,89.60391 +172113,259.19,84.6179 +172114,259.17,86.2582 +172115,259.11,87.9184 +172116,259.02,89.59895 +172117,257.92,84.5804 +172118,257.85,86.2306 +172119,257.76,87.9011 +172120,257.62,89.59267 +172121,256.64,84.5442 +172122,256.54,86.2034 +172123,256.4,87.8834 +172124,256.22,89.58507 +172125,255.36,84.5093 +172126,255.22,86.1766 +172127,255.04,87.8653 +172128,254.83,89.57614 +172129,254.09,84.4758 +172130,253.9,86.1503 +172131,253.68,87.8466 +172132,253.43,89.56587 +172133,252.81,84.4436 +172134,252.59,86.1244 +172135,252.33,87.8276 +172136,252.03,89.55426 +172137,251.53,84.4127 +172138,251.27,86.0989 +172139,250.97,87.808 +172140,250.63,89.54131 +172141,250.26,84.3831 +172142,249.95,86.0738 +172143,249.61,87.788 +172144,249.23,89.52699 +172145,248.98,84.3548 +172146,248.64,86.0492 +172147,248.26,87.7675 +172148,247.83,89.51132 +172149,247.7,84.3279 +172150,247.32,86.025 +172151,246.9,87.7466 +172152,246.44,89.49429 +172153,246.42,84.3023 +172154,246,86.0013 +172155,245.54,87.7252 +172156,245.04,89.47589 +172157,245.15,84.2781 +172158,244.68,85.978 +172159,244.19,87.7034 +172160,243.64,89.45612 +172161,243.87,84.2552 +172162,243.37,85.9551 +172163,242.83,87.681 +172164,242.25,89.43499 +172165,242.59,84.2336 +172166,242.05,85.9327 +172167,241.47,87.6582 +172168,240.85,89.41248 +172169,241.31,84.2133 +172170,240.73,85.9107 +172171,240.12,87.635 +172172,239.45,89.38861 +172173,240.03,84.1944 +172174,239.42,85.8891 +172175,238.76,87.6113 +172176,238.06,89.36337 +172177,238.75,84.1768 +172178,238.1,85.868 +172179,237.41,87.5871 +172180,236.66,89.33676 +172181,237.47,84.1605 +172182,236.78,85.8473 +172183,236.05,87.5625 +172184,235.27,89.30878 +172185,236.19,84.1455 +172186,235.46,85.827 +172187,234.69,87.5374 +172188,233.88,89.27944 +172189,234.91,84.1318 +172190,234.15,85.8072 +172191,233.34,87.5118 +172192,232.48,89.24874 +172193,233.63,84.1194 +172194,232.83,85.7878 +172195,231.99,87.4858 +172196,231.09,89.21669 +172197,232.35,84.1084 +172198,231.51,85.7688 +172199,230.63,87.4594 +172200,229.7,89.18329 +172201,231.06,84.0986 +172202,230.19,85.7502 +172203,229.28,87.4324 +172204,228.31,89.14854 +172205,229.78,84.09 +172206,228.87,85.7321 +172207,227.92,87.4051 +172208,226.92,89.11246 +172209,228.5,84.0828 +172210,227.56,85.7143 +172211,226.57,87.3773 +172212,225.53,89.07505 +172213,227.21,84.0768 +172214,226.24,85.697 +172215,225.22,87.349 +172216,224.14,89.03631 +172217,225.93,84.0721 +172218,224.92,85.6801 +172219,223.86,87.3203 +172220,222.75,88.9963 +172221,224.64,84.0686 +172222,223.6,85.6637 +172223,222.51,87.2912 +172224,221.36,88.9549 +172225,223.35,84.0663 +172226,222.28,85.6476 +172227,221.16,87.2616 +172228,219.98,88.9123 +172229,222.07,84.0652 +172230,220.96,85.6319 +172231,219.8,87.2316 +172232,218.59,88.8683 +172233,220.78,84.0654 +172234,219.64,85.6166 +172235,218.45,87.2012 +172236,217.21,88.8231 +172237,219.49,84.0667 +172238,218.32,85.6017 +172239,217.1,87.1704 +172240,215.82,88.7766 +172241,218.2,84.0692 +172242,217,85.5872 +172243,215.75,87.1391 +172244,214.44,88.7289 +172245,216.91,84.0729 +172246,215.68,85.5731 +172247,214.4,87.1074 +172248,213.06,88.68 +172249,215.62,84.0777 +172250,214.36,85.5594 +172251,213.05,87.0753 +172252,211.68,88.6298 +172253,214.32,84.0837 +172254,213.04,85.546 +172255,211.7,87.0429 +172256,210.3,88.5784 +172257,213.03,84.0907 +172258,211.72,85.533 +172259,210.35,87.01 +172260,208.92,88.5259 +172261,211.74,84.0989 +172262,210.39,85.5204 +172263,209,86.9767 +172264,207.54,88.4721 +172265,210.44,84.1081 +172266,209.07,85.5081 +172267,207.65,86.943 +172268,206.17,88.4172 +172269,209.15,84.1184 +172270,207.75,85.4962 +172271,206.3,86.909 +172272,204.79,88.3612 +172273,207.85,84.1298 +172274,206.43,85.4846 +172275,204.95,86.8746 +172276,203.42,88.304 +172277,206.55,84.1422 +172278,205.1,85.4734 +172279,203.61,86.8398 +172280,202.05,88.2457 +172281,205.25,84.1556 +172282,203.78,85.4625 +172283,202.26,86.8047 +172284,200.67,88.1864 +172285,203.95,84.1699 +172286,202.46,85.4519 +172287,200.91,86.7692 +172288,199.3,88.126 +172289,202.65,84.1853 +172290,201.13,85.4417 +172291,199.56,86.7333 +172292,197.93,88.0645 +172293,201.35,84.2015 +172294,199.81,85.4318 +172295,198.22,86.6971 +172296,196.57,88.002 +172297,200.04,84.2188 +172298,198.48,85.4221 +172299,196.87,86.6606 +172300,195.2,87.9385 +172301,198.74,84.2369 +172302,197.16,85.4128 +172303,195.53,86.6238 +172304,193.84,87.8741 +172305,197.43,84.2559 +172306,195.83,85.4038 +172307,194.18,86.5866 +172308,192.47,87.8087 +172309,196.12,84.2757 +172310,194.51,85.395 +172311,192.84,86.5491 +172312,191.11,87.7423 +172313,194.81,84.2964 +172314,193.18,85.3866 +172315,191.49,86.5114 +172316,189.75,87.675 +172317,193.51,84.3179 +172318,191.85,85.3784 +172319,190.15,86.4733 +172320,188.39,87.6069 +172321,192.19,84.3402 +172322,190.53,85.3704 +172323,188.81,86.4349 +172324,187.03,87.5379 +172325,190.88,84.3632 +172326,189.2,85.3627 +172327,187.47,86.3963 +172328,185.67,87.468 +172329,189.57,84.387 +172330,187.87,85.3553 +172331,186.12,86.3574 +172332,184.32,87.3973 +172333,188.25,84.4116 +172334,186.54,85.3481 +172335,184.78,86.3182 +172336,182.96,87.3259 +172337,186.94,84.4368 +172338,185.22,85.3411 +172339,183.44,86.2788 +172340,181.61,87.2537 +172341,185.62,84.4626 +172342,183.89,85.3344 +172343,182.1,86.2391 +172344,180.26,87.1807 +172345,184.3,84.4891 +172346,182.56,85.3278 +172347,180.76,86.1992 +172348,178.91,87.1071 +172349,182.98,84.5163 +172350,181.23,85.3215 +172351,179.42,86.1591 +172352,177.56,87.0328 +172353,181.66,84.544 +172354,179.9,85.3154 +172355,178.08,86.1188 +172356,176.21,86.9578 +172357,180.34,84.5722 +172358,178.57,85.3094 +172359,176.74,86.0782 +172360,174.87,86.8822 +172361,179.01,84.6011 +172362,177.24,85.3036 +172363,175.41,86.0374 +172364,173.52,86.806 +172365,177.69,84.6304 +172366,175.9,85.298 +172367,174.07,85.9965 +172368,172.18,86.7292 +172369,176.36,84.6602 +172370,174.57,85.2926 +172371,172.73,85.9554 +172372,170.84,86.6519 +172373,175.04,84.6904 +172374,173.24,85.2873 +172375,171.4,85.9141 +172376,169.5,86.5741 +172377,173.71,84.7211 +172378,171.91,85.2821 +172379,170.06,85.8726 +172380,168.16,86.4959 +172381,172.38,84.7522 +172382,170.57,85.2771 +172383,168.72,85.831 +172384,166.82,86.4172 +172385,171.04,84.7836 +172386,169.24,85.2722 +172387,167.39,85.7893 +172388,165.49,86.338 +172389,169.71,84.8154 +172390,167.91,85.2674 +172391,166.06,85.7474 +172392,164.15,86.2585 +172393,168.38,84.8475 +172394,166.57,85.2627 +172395,164.72,85.7054 +172396,162.82,86.1786 +172397,167.04,84.8798 +172398,165.24,85.2581 +172399,163.39,85.6633 +172400,161.49,86.0984 +172401,165.7,84.9125 +172402,163.9,85.2536 +172403,162.06,85.6211 +172404,160.16,86.0179 +172405,164.36,84.9453 +172406,162.57,85.2491 +172407,160.72,85.5788 +172408,158.83,85.9372 +172409,163.02,84.9784 +172410,161.23,85.2448 +172411,159.39,85.5364 +172412,157.51,85.8562 +172413,161.68,85.0116 +172414,159.89,85.2404 +172415,158.06,85.494 +172416,156.18,85.775 +172417,160.34,85.045 +172418,158.56,85.2362 +172419,156.73,85.4515 +172420,154.86,85.6936 +172421,158.99,85.0785 +172422,157.22,85.2319 +172423,155.4,85.4089 +172424,153.54,85.6122 +172425,157.65,85.112 +172426,155.88,85.2277 +172427,154.07,85.3663 +172428,152.21,85.5306 +172429,156.3,85.1457 +172430,154.54,85.2235 +172431,152.74,85.3237 +172432,150.9,85.4489 +172433,154.95,85.1793 +172434,153.2,85.2193 +172435,151.41,85.2811 +172436,149.58,85.3672 +172437,153.6,85.213 +172438,151.86,85.2151 +172439,150.08,85.2384 +172440,148.26,85.2854 +172441,152.25,85.2466 +172442,150.52,85.2108 +172443,148.76,85.1958 +172444,146.95,85.2037 +172445,150.9,85.2801 +172446,149.18,85.2066 +172447,147.43,85.1531 +172448,145.63,85.1221 +172449,149.55,85.3136 +172450,147.84,85.2023 +172451,146.1,85.1105 +172452,144.32,85.0405 +172453,148.19,85.3469 +172454,146.5,85.198 +172455,144.78,85.0679 +172456,143.01,84.9591 +172457,146.83,85.3801 +172458,145.16,85.1936 +172459,143.45,85.0254 +172460,141.7,84.8778 +172461,145.48,85.4131 +172462,143.82,85.1891 +172463,142.13,84.9829 +172464,140.39,84.7966 +172465,144.12,85.4459 +172466,142.48,85.1846 +172467,140.8,84.9405 +172468,139.09,84.7157 +172469,142.76,85.4784 +172470,141.13,85.18 +172471,139.48,84.8981 +172472,137.78,84.635 +172473,141.4,85.5108 +172474,139.79,85.1753 +172475,138.15,84.8559 +172476,136.48,84.5546 +172477,140.03,85.5428 +172478,138.45,85.1705 +172479,136.83,84.8137 +172480,135.17,84.4745 +172481,138.67,85.5745 +172482,137.1,85.1656 +172483,135.51,84.7716 +172484,133.87,84.3947 +172485,137.3,85.6058 +172486,135.76,85.1605 +172487,134.18,84.7297 +172488,132.57,84.3152 +172489,135.94,85.6368 +172490,134.42,85.1554 +172491,132.86,84.6878 +172492,131.27,84.2362 +172493,134.57,85.6674 +172494,133.07,85.15 +172495,131.54,84.6461 +172496,129.98,84.1576 +172497,133.2,85.6975 +172498,131.73,85.1446 +172499,130.22,84.6046 +172500,128.68,84.0794 +172501,131.83,85.7272 +172502,130.38,85.139 +172503,128.9,84.5632 +172504,127.39,84.0017 +172505,130.46,85.7564 +172506,129.03,85.1332 +172507,127.58,84.5219 +172508,126.09,83.9245 +172509,129.09,85.7851 +172510,127.69,85.1272 +172511,126.26,84.4808 +172512,124.8,83.8479 +172513,127.71,85.8133 +172514,126.34,85.1211 +172515,124.94,84.4399 +172516,123.51,83.7718 +172517,126.34,85.8409 +172518,124.99,85.1147 +172519,123.62,84.3992 +172520,122.22,83.6963 +172521,124.96,85.8679 +172522,123.65,85.1082 +172523,122.3,84.3587 +172524,120.93,83.6214 +172525,123.59,85.8943 +172526,122.3,85.1014 +172527,120.98,84.3184 +172528,119.64,83.5471 +172529,122.21,85.92 +172530,120.95,85.0944 +172531,119.67,84.2783 +172532,118.35,83.4736 +172533,120.83,85.9451 +172534,119.6,85.0872 +172535,118.35,84.2385 +172536,117.07,83.4007 +172537,119.45,85.9695 +172538,118.25,85.0798 +172539,117.03,84.1988 +172540,115.78,83.3285 +172541,118.07,85.9932 +172542,116.91,85.0721 +172543,115.72,84.1594 +172544,114.5,83.2571 +172545,116.69,86.0162 +172546,115.56,85.0641 +172547,114.4,84.1203 +172548,113.21,83.1865 +172549,115.3,86.0384 +172550,114.21,85.0559 +172551,113.08,84.0814 +172552,111.93,83.1167 +172553,113.92,86.0598 +172554,112.86,85.0474 +172555,111.77,84.0428 +172556,110.65,83.0477 +172557,112.54,86.0805 +172558,111.51,85.0387 +172559,110.45,84.0045 +172560,109.37,82.9795 +172561,111.15,86.1003 +172562,110.16,85.0297 +172563,109.14,83.9664 +172564,108.09,82.9122 +172565,109.77,86.1192 +172566,108.81,85.0203 +172567,107.82,83.9286 +172568,106.81,82.8458 +172569,108.38,86.1373 +172570,107.46,85.0107 +172571,106.51,83.8911 +172572,105.53,82.7803 +172573,106.99,86.1545 +172574,106.11,85.0008 +172575,105.19,83.854 +172576,104.26,82.7158 +172577,105.6,86.1708 +172578,104.75,84.9905 +172579,103.88,83.8171 +172580,102.98,82.6522 +172581,104.21,86.1861 +172582,103.4,84.98 +172583,102.57,83.7806 +172584,101.7,82.5895 +172585,102.82,86.2005 +172586,102.05,84.9691 +172587,101.25,83.7443 +172588,100.43,82.5279 +172589,101.43,86.2139 +172590,100.7,84.9578 +172591,99.94,83.7084 +172592,99.154,82.4673 +172593,100.04,86.2264 +172594,99.348,84.9463 +172595,98.628,83.6729 +172596,97.881,82.4077 +172597,98.65,86.2378 +172598,97.996,84.9344 +172599,97.315,83.6377 +172600,96.608,82.3492 +172601,97.258,86.2482 +172602,96.644,84.9221 +172603,96.003,83.6028 +172604,95.335,82.2917 +172605,95.865,86.2576 +172606,95.292,84.9095 +172607,94.691,83.5683 +172608,94.063,82.2354 +172609,94.472,86.2659 +172610,93.939,84.8965 +172611,93.379,83.5342 +172612,92.792,82.1801 +172613,93.078,86.2731 +172614,92.587,84.8832 +172615,92.067,83.5004 +172616,91.521,82.126 +172617,91.684,86.2793 +172618,91.234,84.8695 +172619,90.756,83.467 +172620,90.251,82.0729 +172621,90.289,86.2843 +172622,89.881,84.8554 +172623,89.445,83.4339 +172624,88.981,82.0211 +172625,88.894,86.2882 +172626,88.528,84.841 +172627,88.134,83.4013 +172628,87.711,81.9704 +172629,87.499,86.291 +172630,87.175,84.8261 +172631,86.823,83.369 +172632,86.442,81.9209 +172633,86.103,86.2926 +172634,85.822,84.8109 +172635,85.512,83.3371 +172636,85.173,81.8725 +172637,84.707,86.2931 +172638,84.469,84.7952 +172639,84.201,83.3056 +172640,83.904,81.8254 +172641,83.311,86.2924 +172642,83.116,84.7792 +172643,82.89,83.2745 +172644,82.636,81.7795 +172645,81.914,86.2906 +172646,81.762,84.7628 +172647,81.58,83.2439 +172648,81.368,81.7348 +172649,80.517,86.2875 +172650,80.409,84.7459 +172651,80.27,83.2136 +172652,80.1,81.6913 +172653,79.12,86.2832 +172654,79.056,84.7287 +172655,78.959,83.1837 +172656,78.832,81.6491 +172657,77.723,86.2777 +172658,77.703,84.711 +172659,77.649,83.1542 +172660,77.565,81.6081 +172661,76.326,86.271 +172662,76.349,84.6929 +172663,76.339,83.1252 +172664,76.297,81.5684 +172665,74.929,86.263 +172666,74.996,84.6744 +172667,75.029,83.0965 +172668,75.03,81.5299 +172669,73.532,86.2539 +172670,73.643,84.6555 +172671,73.719,83.0683 +172672,73.763,81.4927 +172673,72.135,86.2434 +172674,72.289,84.6362 +172675,72.409,83.0405 +172676,72.495,81.4568 +172677,70.738,86.2317 +172678,70.936,84.6164 +172679,71.099,83.0132 +172680,71.228,81.4222 +172681,69.341,86.2188 +172682,69.583,84.5963 +172683,69.789,82.9862 +172684,69.961,81.3888 +172685,67.944,86.2046 +172686,68.23,84.5756 +172687,68.479,82.9597 +172688,68.693,81.3568 +172689,66.547,86.1891 +172690,66.877,84.5546 +172691,67.169,82.9336 +172692,67.426,81.326 +172693,65.151,86.1723 +172694,65.524,84.5331 +172695,65.859,82.9079 +172696,66.158,81.2966 +172697,63.754,86.1543 +172698,64.171,84.5112 +172699,64.549,82.8827 +172700,64.89,81.2684 +172701,62.358,86.1349 +172702,62.819,84.4889 +172703,63.239,82.8579 +172704,63.622,81.2416 +172705,60.962,86.1143 +172706,61.466,84.4662 +172707,61.929,82.8335 +172708,62.354,81.216 +172709,59.567,86.0924 +172710,60.114,84.443 +172711,60.619,82.8096 +172712,61.085,81.1917 +172713,58.172,86.0692 +172714,58.762,84.4194 +172715,59.308,82.786 +172716,59.816,81.1688 +172717,56.777,86.0448 +172718,57.409,84.3953 +172719,57.998,82.763 +172720,58.547,81.1471 +172721,55.383,86.019 +172722,56.058,84.3708 +172723,56.688,82.7403 +172724,57.277,81.1267 +172725,53.989,85.992 +172726,54.706,84.3459 +172727,55.377,82.7181 +172728,56.007,81.1076 +172729,52.595,85.9637 +172730,53.354,84.3206 +172731,54.066,82.6963 +172732,54.737,81.0898 +172733,51.203,85.934 +172734,52.003,84.2948 +172735,52.756,82.6749 +172736,53.466,81.0733 +172737,49.81,85.9032 +172738,50.652,84.2686 +172739,51.445,82.6539 +172740,52.195,81.058 +172741,48.419,85.871 +172742,49.301,84.242 +172743,50.133,82.6334 +172744,50.923,81.044 +172745,47.028,85.8376 +172746,47.95,84.2149 +172747,48.822,82.6133 +172748,49.65,81.0313 +172749,45.637,85.8029 +172750,46.6,84.1875 +172751,47.511,82.5936 +172752,48.377,81.0199 +172753,44.248,85.7669 +172754,45.249,84.1596 +172755,46.199,82.5743 +172756,47.104,81.0097 +172757,42.859,85.7297 +172758,43.899,84.1313 +172759,44.887,82.5555 +172760,45.829,81.0007 +172761,41.47,85.6913 +172762,42.55,84.1026 +172763,43.575,82.537 +172764,44.554,80.9929 +172765,40.083,85.6516 +172766,41.2,84.0734 +172767,42.263,82.519 +172768,43.279,80.9864 +172769,38.696,85.6107 +172770,39.851,84.0439 +172771,40.951,82.5014 +172772,42.002,80.9811 +172773,37.311,85.5686 +172774,38.503,84.014 +172775,39.638,82.4841 +172776,40.725,80.977 +172777,35.926,85.5252 +172778,37.154,83.9836 +172779,38.325,82.4673 +172780,39.447,80.9741 +172781,34.542,85.4807 +172782,35.806,83.9529 +172783,37.012,82.4508 +172784,38.168,80.9723 +172785,33.159,85.4349 +172786,34.458,83.9218 +172787,35.699,82.4348 +172788,36.889,80.9718 +172789,31.777,85.388 +172790,33.111,83.8902 +172791,34.385,82.4191 +172792,35.608,80.9723 +172793,30.396,85.34 +172794,31.764,83.8583 +172795,33.071,82.4038 +172796,34.327,80.974 +172797,29.016,85.2907 +172798,30.417,83.826 +172799,31.757,82.3889 +172800,33.045,80.9769 +172801,27.637,85.2404 +172802,29.07,83.7934 +172803,30.442,82.3744 +172804,31.762,80.9808 +172805,26.259,85.1889 +172806,27.724,83.7604 +172807,29.128,82.3602 +172808,30.478,80.9858 +172809,24.882,85.1363 +172810,26.379,83.727 +172811,27.813,82.3464 +172812,29.193,80.9919 +172813,23.506,85.0826 +172814,25.033,83.6932 +172815,26.497,82.333 +172816,27.907,80.999 +172817,22.132,85.0278 +172818,23.689,83.6591 +172819,25.181,82.3199 +172820,26.619,81.0072 +172821,20.758,84.972 +172822,22.344,83.6246 +172823,23.865,82.3071 +172824,25.331,81.0164 +172825,19.386,84.9151 +172826,21,83.5898 +172827,22.549,82.2947 +172828,24.042,81.0266 +172829,18.015,84.8572 +172830,19.657,83.5547 +172831,21.232,82.2826 +172832,22.752,81.0378 +172833,16.645,84.7983 +172834,18.313,83.5192 +172835,19.915,82.2708 +172836,21.46,81.05 +172837,15.277,84.7384 +172838,16.971,83.4835 +172839,18.597,82.2594 +172840,20.167,81.0631 +172841,13.91,84.6775 +172842,15.628,83.4473 +172843,17.28,82.2483 +172844,18.874,81.0771 +172845,12.544,84.6157 +172846,14.287,83.4109 +172847,15.961,82.2374 +172848,17.579,81.0921 +172849,11.18,84.553 +172850,12.945,83.3742 +172851,14.643,82.2269 +172852,16.283,81.1079 +172853,9.8165,84.4893 +172854,11.604,83.3372 +172855,13.324,82.2167 +172856,14.985,81.1246 +172857,8.4547,84.4248 +172858,10.264,83.2999 +172859,12.004,82.2067 +172860,13.687,81.1421 +172861,7.0943,84.3594 +172862,8.9238,83.2623 +172863,10.685,82.1971 +172864,12.387,81.1604 +172865,5.7354,84.2931 +172866,7.5843,83.2244 +172867,9.3645,82.1877 +172868,11.086,81.1796 +172869,4.3778,84.226 +172870,6.2453,83.1863 +172871,8.0439,82.1786 +172872,9.7834,81.1995 +172873,3.0217,84.1582 +172874,4.9068,83.1479 +172875,6.7229,82.1697 +172876,8.4797,81.2201 +172877,1.667,84.0895 +172878,3.5688,83.1093 +172879,5.4015,82.161 +172880,7.1747,81.2415 +172881,0.31375,84.0201 +172882,2.2313,83.0704 +172883,4.0796,82.1527 +172884,5.8685,81.2636 +172885,358.96,83.95 +172886,0.89426,83.0313 +172887,2.7573,82.1445 +172888,4.5608,81.2863 +172889,357.61,83.8792 +172890,359.56,82.992 +172891,1.4346,82.1366 +172892,3.2519,81.3097 +172893,356.26,83.8077 +172894,358.22,82.9524 +172895,0.11149,82.1288 +172896,1.9415,81.3337 +172897,354.92,83.7356 +172898,356.89,82.9126 +172899,358.79,82.1213 +172900,0.62982,81.3583 +172901,353.57,83.6628 +172902,355.55,82.8727 +172903,357.46,82.114 +172904,359.32,81.3835 +172905,352.23,83.5895 +172906,354.22,82.8325 +172907,356.14,82.1069 +172908,358,81.4093 +172909,350.88,83.5156 +172910,352.88,82.7922 +172911,354.81,82.0999 +172912,356.69,81.4355 +172913,349.54,83.4411 +172914,351.55,82.7517 +172915,353.49,82.0931 +172916,355.37,81.4623 +172917,348.2,83.3662 +172918,350.22,82.711 +172919,352.16,82.0865 +172920,354.05,81.4895 +172921,346.86,83.2907 +172922,348.88,82.6701 +172923,350.84,82.08 +172924,352.73,81.5172 +172925,345.53,83.2148 +172926,347.55,82.6292 +172927,349.51,82.0737 +172928,351.41,81.5453 +172929,344.19,83.1385 +172930,346.22,82.5881 +172931,348.18,82.0675 +172932,350.09,81.5737 +172933,342.86,83.0617 +172934,344.89,82.5468 +172935,346.86,82.0615 +172936,348.76,81.6026 +172937,341.53,82.9846 +172938,343.56,82.5055 +172939,345.53,82.0555 +172940,347.44,81.6317 +172941,340.2,82.9071 +172942,342.23,82.464 +172943,344.2,82.0497 +172944,346.11,81.6612 +172945,338.87,82.8294 +172946,340.9,82.4224 +172947,342.87,82.044 +172948,344.78,81.6909 +172949,337.54,82.7513 +172950,339.57,82.3808 +172951,341.54,82.0383 +172952,343.45,81.7209 +172953,336.22,82.673 +172954,338.25,82.339 +172955,340.21,82.0327 +172956,342.12,81.7511 +172957,334.89,82.5945 +172958,336.92,82.2972 +172959,338.88,82.0272 +172960,340.78,81.7815 +172961,333.57,82.5158 +172962,335.59,82.2554 +172963,337.55,82.0218 +172964,339.45,81.8121 +172965,332.25,82.4369 +172966,334.26,82.2135 +172967,336.22,82.0164 +172968,338.11,81.8428 +172969,330.93,82.3579 +172970,332.94,82.1715 +172971,334.89,82.011 +172972,336.78,81.8736 +172973,329.61,82.2787 +172974,331.61,82.1295 +172975,333.55,82.0057 +172976,335.44,81.9045 +172977,328.3,82.1995 +172978,330.29,82.0875 +172979,332.22,82.0004 +172980,334.1,81.9354 +172981,326.98,82.1203 +172982,328.96,82.0455 +172983,330.89,81.9951 +172984,332.76,81.9664 +172985,325.67,82.041 +172986,327.64,82.0035 +172987,329.55,81.9899 +172988,331.41,81.9974 +172989,324.36,81.9618 +172990,326.32,81.9615 +172991,328.22,81.9846 +172992,330.07,82.0283 +172993,323.05,81.8826 +172994,324.99,81.9195 +172995,326.88,81.9793 +172996,328.72,82.0592 +172997,321.74,81.8035 +172998,323.67,81.8776 +172999,325.55,81.9739 +173000,327.38,82.09 +173001,320.43,81.7245 +173002,322.35,81.8357 +173003,324.21,81.9686 +173004,326.03,82.1206 +173005,319.13,81.6456 +173006,321.03,81.7938 +173007,322.88,81.9632 +173008,324.68,82.1511 +173009,317.82,81.5669 +173010,319.71,81.752 +173011,321.54,81.9577 +173012,323.32,82.1815 +173013,316.52,81.4884 +173014,318.39,81.7102 +173015,320.21,81.9522 +173016,321.97,82.2116 +173017,315.22,81.4101 +173018,317.07,81.6686 +173019,318.87,81.9466 +173020,320.62,82.2416 +173021,313.92,81.332 +173022,315.75,81.627 +173023,317.53,81.9409 +173024,319.26,82.2712 +173025,312.62,81.2543 +173026,314.43,81.5855 +173027,316.19,81.9351 +173028,317.9,82.3006 +173029,311.32,81.1769 +173030,313.11,81.5442 +173031,314.85,81.9292 +173032,316.55,82.3297 +173033,310.03,81.0998 +173034,311.8,81.5029 +173035,313.51,81.9232 +173036,315.19,82.3584 +173037,308.73,81.0231 +173038,310.48,81.4618 +173039,312.18,81.9171 +173040,313.83,82.3868 +173041,307.44,80.9467 +173042,309.16,81.4208 +173043,310.84,81.9109 +173044,312.46,82.4148 +173045,306.15,80.8709 +173046,307.85,81.3799 +173047,309.5,81.9045 +173048,311.1,82.4423 +173049,304.86,80.7954 +173050,306.53,81.3392 +173051,308.15,81.898 +173052,309.74,82.4695 +173053,303.57,80.7205 +173054,305.21,81.2987 +173055,306.81,81.8913 +173056,308.37,82.4961 +173057,302.28,80.6461 +173058,303.9,81.2584 +173059,305.47,81.8845 +173060,307,82.5223 +173061,301,80.5722 +173062,302.59,81.2182 +173063,304.13,81.8775 +173064,305.63,82.5479 +173065,299.71,80.4989 +173066,301.27,81.1782 +173067,302.79,81.8703 +173068,304.26,82.573 +173069,298.43,80.4261 +173070,299.96,81.1384 +173071,301.45,81.8629 +173072,302.89,82.5976 +173073,297.15,80.354 +173074,298.65,81.0988 +173075,300.1,81.8553 +173076,301.52,82.6215 +173077,295.86,80.2826 +173078,297.33,81.0594 +173079,298.76,81.8476 +173080,300.15,82.6448 +173081,294.58,80.2118 +173082,296.02,81.0203 +173083,297.42,81.8396 +173084,298.77,82.6675 +173085,293.3,80.1417 +173086,294.71,80.9814 +173087,296.07,81.8313 +173088,297.4,82.6896 +173089,292.03,80.0723 +173090,293.4,80.9427 +173091,294.73,81.8229 +173092,296.02,82.7109 +173093,290.75,80.0037 +173094,292.09,80.9043 +173095,293.38,81.8142 +173096,294.64,82.7315 +173097,289.47,79.936 +173098,290.77,80.8661 +173099,292.04,81.8053 +173100,293.27,82.7514 +173101,288.2,79.869 +173102,289.46,80.8282 +173103,290.69,81.7961 +173104,291.89,82.7706 +173105,286.92,79.803 +173106,288.15,80.7906 +173107,289.35,81.7867 +173108,290.51,82.7889 +173109,285.65,79.737 +173110,286.84,80.7532 +173111,288,81.7769 +173112,289.13,82.8065 +173113,284.38,79.673 +173114,285.54,80.7161 +173115,286.66,81.767 +173116,287.74,82.8232 +173117,283.11,79.609 +173118,284.23,80.6794 +173119,285.31,81.7567 +173120,286.36,82.8392 +173121,281.84,79.546 +173122,282.92,80.6429 +173123,283.96,81.7461 +173124,284.98,82.8542 +173125,280.57,79.485 +173126,281.61,80.6067 +173127,282.62,81.7353 +173128,283.59,82.8684 +173129,279.3,79.424 +173130,280.3,80.5709 +173131,281.27,81.7242 +173132,282.21,82.8817 +173133,278.03,79.364 +173134,278.99,80.5353 +173135,279.92,81.7127 +173136,280.82,82.8941 +173137,276.76,79.305 +173138,277.69,80.5001 +173139,278.57,81.7009 +173140,279.43,82.9055 +173141,275.5,79.247 +173142,276.38,80.4652 +173143,277.23,81.6888 +173144,278.04,82.916 +173145,274.23,79.19 +173146,275.07,80.4307 +173147,275.88,81.6764 +173148,276.66,82.9255 +173149,272.97,79.134 +173150,273.77,80.3965 +173151,274.53,81.6637 +173152,275.27,82.934 +173153,271.7,79.079 +173154,272.46,80.3627 +173155,273.18,81.6506 +173156,273.88,82.9416 +173157,270.44,79.026 +173158,271.15,80.3292 +173159,271.83,81.6372 +173160,272.49,82.9481 +173161,269.18,78.973 +173162,269.85,80.2961 +173163,270.49,81.6234 +173164,271.09,82.9536 +173165,267.91,78.922 +173166,268.54,80.2633 +173167,269.14,81.6093 +173168,269.7,82.958 +173169,266.65,78.871 +173170,267.23,80.2309 +173171,267.79,81.5948 +173172,268.31,82.9614 +173173,265.39,78.822 +173174,265.93,80.1989 +173175,266.44,81.58 +173176,266.92,82.9637 +173177,264.13,78.774 +173178,264.62,80.1672 +173179,265.09,81.5648 +173180,265.53,82.965 +173181,262.87,78.727 +173182,263.32,80.136 +173183,263.74,81.5492 +173184,264.13,82.9651 +173185,261.61,78.681 +173186,262.01,80.1051 +173187,262.39,81.5333 +173188,262.74,82.9641 +173189,260.35,78.636 +173190,260.71,80.0746 +173191,261.04,81.517 +173192,261.34,82.962 +173193,259.09,78.593 +173194,259.4,80.0446 +173195,259.69,81.5003 +173196,259.95,82.9588 +173197,257.83,78.551 +173198,258.1,80.0149 +173199,258.34,81.4832 +173200,258.55,82.9544 +173201,256.57,78.51 +173202,256.8,79.986 +173203,256.99,81.4657 +173204,257.16,82.9488 +173205,255.31,78.47 +173206,255.49,79.957 +173207,255.64,81.4479 +173208,255.76,82.9421 +173209,254.05,78.431 +173210,254.19,79.928 +173211,254.29,81.4296 +173212,254.37,82.9343 +173213,252.79,78.394 +173214,252.88,79.9 +173215,252.94,81.411 +173216,252.97,82.9252 +173217,251.53,78.358 +173218,251.58,79.873 +173219,251.59,81.3919 +173220,251.58,82.915 +173221,250.27,78.323 +173222,250.27,79.845 +173223,250.24,81.3725 +173224,250.18,82.9036 +173225,249.01,78.29 +173226,248.97,79.818 +173227,248.89,81.3526 +173228,248.79,82.891 +173229,247.75,78.257 +173230,247.67,79.792 +173231,247.54,81.3324 +173232,247.39,82.8772 +173233,246.5,78.226 +173234,246.36,79.766 +173235,246.2,81.3118 +173236,245.99,82.8621 +173237,245.24,78.196 +173238,245.06,79.741 +173239,244.85,81.2907 +173240,244.6,82.8459 +173241,243.98,78.168 +173242,243.75,79.715 +173243,243.5,81.2692 +173244,243.2,82.8284 +173245,242.72,78.14 +173246,242.45,79.691 +173247,242.15,81.2474 +173248,241.81,82.8098 +173249,241.46,78.114 +173250,241.15,79.666 +173251,240.8,81.2251 +173252,240.41,82.7899 +173253,240.2,78.09 +173254,239.84,79.642 +173255,239.45,81.2024 +173256,239.02,82.7687 +173257,238.94,78.066 +173258,238.54,79.619 +173259,238.1,81.1793 +173260,237.62,82.7464 +173261,237.68,78.044 +173262,237.23,79.596 +173263,236.75,81.1558 +173264,236.23,82.7228 +173265,236.42,78.023 +173266,235.93,79.573 +173267,235.4,81.1319 +173268,234.83,82.698 +173269,235.16,78.003 +173270,234.62,79.551 +173271,234.05,81.1076 +173272,233.44,82.672 +173273,233.9,77.985 +173274,233.32,79.529 +173275,232.7,81.0829 +173276,232.05,82.6448 +173277,232.64,77.968 +173278,232.01,79.508 +173279,231.36,81.0577 +173280,230.65,82.6163 +173281,231.37,77.952 +173282,230.71,79.487 +173283,230.01,81.0322 +173284,229.26,82.5866 +173285,230.11,77.937 +173286,229.4,79.467 +173287,228.66,81.0062 +173288,227.87,82.5558 +173289,228.85,77.923 +173290,228.1,79.446 +173291,227.31,80.9799 +173292,226.48,82.5237 +173293,227.58,77.911 +173294,226.79,79.427 +173295,225.96,80.9532 +173296,225.09,82.4903 +173297,226.32,77.9 +173298,225.49,79.408 +173299,224.62,80.926 +173300,223.7,82.4558 +173301,225.06,77.89 +173302,224.18,79.389 +173303,223.27,80.8985 +173304,222.31,82.4201 +173305,223.79,77.882 +173306,222.88,79.37 +173307,221.92,80.8705 +173308,220.92,82.3832 +173309,222.52,77.875 +173310,221.57,79.352 +173311,220.58,80.8422 +173312,219.53,82.3452 +173313,221.26,77.868 +173314,220.27,79.334 +173315,219.23,80.8135 +173316,218.14,82.3059 +173317,219.99,77.863 +173318,218.96,79.317 +173319,217.88,80.7844 +173320,216.75,82.2655 +173321,218.72,77.859 +173322,217.65,79.3 +173323,216.54,80.7549 +173324,215.37,82.2239 +173325,217.45,77.857 +173326,216.35,79.284 +173327,215.19,80.7251 +173328,213.98,82.1812 +173329,216.18,77.855 +173330,215.04,79.268 +173331,213.85,80.6948 +173332,212.6,82.1373 +173333,214.91,77.855 +173334,213.73,79.252 +173335,212.5,80.6642 +173336,211.22,82.0924 +173337,213.64,77.856 +173338,212.42,79.237 +173339,211.16,80.6333 +173340,209.83,82.0463 +173341,212.37,77.857 +173342,211.12,79.222 +173343,209.81,80.6019 +173344,208.45,81.9991 +173345,211.1,77.86 +173346,209.81,79.207 +173347,208.47,80.5702 +173348,207.07,81.9508 +173349,209.82,77.864 +173350,208.5,79.193 +173351,207.12,80.5382 +173352,205.69,81.9014 +173353,208.55,77.869 +173354,207.19,79.179 +173355,205.78,80.5058 +173356,204.31,81.851 +173357,207.27,77.875 +173358,205.88,79.165 +173359,204.44,80.4731 +173360,202.94,81.7995 +173361,205.99,77.883 +173362,204.57,79.152 +173363,203.1,80.44 +173364,201.56,81.7469 +173365,204.71,77.891 +173366,203.26,79.139 +173367,201.75,80.4066 +173368,200.18,81.6934 +173369,203.43,77.9 +173370,201.95,79.127 +173371,200.41,80.3728 +173372,198.81,81.6389 +173373,202.15,77.91 +173374,200.64,79.115 +173375,199.07,80.3388 +173376,197.44,81.5833 +173377,200.87,77.921 +173378,199.33,79.103 +173379,197.73,80.3044 +173380,196.07,81.5268 +173381,199.59,77.933 +173382,198.02,79.091 +173383,196.39,80.2697 +173384,194.7,81.4694 +173385,198.31,77.946 +173386,196.71,79.08 +173387,195.05,80.2347 +173388,193.33,81.411 +173389,197.02,77.96 +173390,195.39,79.069 +173391,193.71,80.1994 +173392,191.96,81.3517 +173393,195.73,77.974 +173394,194.08,79.059 +173395,192.37,80.1638 +173396,190.59,81.2915 +173397,194.45,77.99 +173398,192.77,79.048 +173399,191.03,80.128 +173400,189.23,81.2304 +173401,193.16,78.006 +173402,191.46,79.038 +173403,189.7,80.0918 +173404,187.86,81.1684 +173405,191.87,78.023 +173406,190.14,79.029 +173407,188.36,80.0554 +173408,186.5,81.1056 +173409,190.58,78.041 +173410,188.83,79.019 +173411,187.02,80.0187 +173412,185.14,81.042 +173413,189.28,78.06 +173414,187.51,79.01 +173415,185.68,79.982 +173416,183.78,80.9777 +173417,187.99,78.08 +173418,186.2,79.001 +173419,184.35,79.945 +173420,182.42,80.9125 +173421,186.69,78.1 +173422,184.88,78.992 +173423,183.01,79.907 +173424,181.07,80.8466 +173425,185.4,78.121 +173426,183.57,78.984 +173427,181.68,79.87 +173428,179.71,80.7799 +173429,184.1,78.142 +173430,182.25,78.976 +173431,180.34,79.832 +173432,178.36,80.7126 +173433,182.8,78.164 +173434,180.94,78.968 +173435,179.01,79.794 +173436,177,80.6445 +173437,181.5,78.187 +173438,179.62,78.96 +173439,177.67,79.755 +173440,175.65,80.5759 +173441,180.2,78.211 +173442,178.3,78.952 +173443,176.34,79.717 +173444,174.3,80.5065 +173445,178.89,78.235 +173446,176.98,78.945 +173447,175.01,79.678 +173448,172.96,80.4366 +173449,177.59,78.259 +173450,175.66,78.938 +173451,173.68,79.639 +173452,171.61,80.3661 +173453,176.28,78.284 +173454,174.35,78.931 +173455,172.34,79.6 +173456,170.27,80.295 +173457,174.97,78.31 +173458,173.03,78.924 +173459,171.01,79.561 +173460,168.92,80.2234 +173461,173.66,78.336 +173462,171.71,78.917 +173463,169.68,79.521 +173464,167.58,80.1513 +173465,172.35,78.362 +173466,170.39,78.911 +173467,168.35,79.482 +173468,166.24,80.0787 +173469,171.04,78.389 +173470,169.07,78.904 +173471,167.02,79.442 +173472,164.9,80.0057 +173473,169.72,78.417 +173474,167.74,78.898 +173475,165.7,79.402 +173476,163.57,79.932 +173477,168.41,78.444 +173478,166.42,78.892 +173479,164.37,79.362 +173480,162.23,79.858 +173481,167.09,78.472 +173482,165.1,78.886 +173483,163.04,79.322 +173484,160.9,79.784 +173485,165.77,78.5 +173486,163.78,78.88 +173487,161.71,79.282 +173488,159.57,79.71 +173489,164.45,78.529 +173490,162.45,78.874 +173491,160.39,79.242 +173492,158.24,79.635 +173493,163.13,78.558 +173494,161.13,78.869 +173495,159.06,79.202 +173496,156.91,79.559 +173497,161.81,78.587 +173498,159.81,78.863 +173499,157.73,79.161 +173500,155.58,79.484 +173501,160.48,78.616 +173502,158.48,78.858 +173503,156.41,79.121 +173504,154.26,79.408 +173505,159.16,78.646 +173506,157.16,78.852 +173507,155.08,79.08 +173508,152.94,79.332 +173509,157.83,78.675 +173510,155.83,78.847 +173511,153.76,79.04 +173512,151.62,79.256 +173513,156.5,78.705 +173514,154.5,78.841 +173515,152.44,78.999 +173516,150.3,79.18 +173517,155.17,78.735 +173518,153.18,78.836 +173519,151.11,78.958 +173520,148.98,79.104 +173521,153.84,78.764 +173522,151.85,78.831 +173523,149.79,78.918 +173524,147.66,79.027 +173525,152.5,78.794 +173526,150.52,78.826 +173527,148.47,78.877 +173528,146.35,78.951 +173529,151.17,78.824 +173530,149.19,78.82 +173531,147.15,78.836 +173532,145.03,78.874 +173533,149.83,78.854 +173534,147.86,78.815 +173535,145.83,78.796 +173536,143.72,78.798 +173537,148.49,78.884 +173538,146.54,78.81 +173539,144.51,78.755 +173540,142.41,78.721 +173541,147.15,78.913 +173542,145.21,78.805 +173543,143.19,78.714 +173544,141.1,78.645 +173545,145.81,78.943 +173546,143.88,78.799 +173547,141.87,78.674 +173548,139.8,78.569 +173549,144.47,78.973 +173550,142.54,78.794 +173551,140.55,78.633 +173552,138.49,78.492 +173553,143.13,79.002 +173554,141.21,78.789 +173555,139.24,78.593 +173556,137.19,78.416 +173557,141.78,79.031 +173558,139.88,78.783 +173559,137.92,78.552 +173560,135.88,78.34 +173561,140.43,79.06 +173562,138.55,78.778 +173563,136.6,78.512 +173564,134.58,78.265 +173565,139.09,79.089 +173566,137.22,78.772 +173567,135.29,78.471 +173568,133.28,78.189 +173569,137.74,79.117 +173570,135.88,78.766 +173571,133.97,78.431 +173572,131.99,78.114 +173573,136.38,79.145 +173574,134.55,78.761 +173575,132.65,78.391 +173576,130.69,78.039 +173577,135.03,79.173 +173578,133.22,78.755 +173579,131.34,78.351 +173580,129.4,77.965 +173581,133.68,79.2 +173582,131.88,78.749 +173583,130.03,78.311 +173584,128.1,77.89 +173585,132.32,79.227 +173586,130.55,78.743 +173587,128.71,78.272 +173588,126.81,77.816 +173589,130.97,79.254 +173590,129.21,78.737 +173591,127.4,78.232 +173592,125.52,77.743 +173593,129.61,79.28 +173594,127.88,78.73 +173595,126.09,78.193 +173596,124.23,77.67 +173597,128.25,79.306 +173598,126.54,78.724 +173599,124.77,78.153 +173600,122.95,77.597 +173601,126.89,79.331 +173602,125.2,78.717 +173603,123.46,78.114 +173604,121.66,77.525 +173605,125.52,79.356 +173606,123.87,78.71 +173607,122.15,78.075 +173608,120.38,77.454 +173609,124.16,79.381 +173610,122.53,78.703 +173611,120.84,78.037 +173612,119.1,77.382 +173613,122.8,79.404 +173614,121.19,78.696 +173615,119.53,77.998 +173616,117.81,77.312 +173617,121.43,79.428 +173618,119.85,78.689 +173619,118.22,77.96 +173620,116.53,77.242 +173621,120.06,79.45 +173622,118.51,78.681 +173623,116.91,77.921 +173624,115.25,77.173 +173625,118.69,79.472 +173626,117.17,78.674 +173627,115.6,77.884 +173628,113.98,77.104 +173629,117.32,79.493 +173630,115.84,78.666 +173631,114.3,77.846 +173632,112.7,77.036 +173633,115.95,79.514 +173634,114.5,78.658 +173635,112.99,77.808 +173636,111.43,76.969 +173637,114.58,79.534 +173638,113.16,78.649 +173639,111.68,77.771 +173640,110.15,76.902 +173641,113.21,79.553 +173642,111.81,78.641 +173643,110.37,77.734 +173644,108.88,76.836 +173645,111.83,79.572 +173646,110.47,78.632 +173647,109.07,77.697 +173648,107.61,76.771 +173649,110.46,79.59 +173650,109.13,78.623 +173651,107.76,77.661 +173652,106.34,76.707 +173653,109.08,79.607 +173654,107.79,78.613 +173655,106.45,77.625 +173656,105.07,76.643 +173657,107.7,79.623 +173658,106.45,78.604 +173659,105.15,77.589 +173660,103.8,76.581 +173661,106.33,79.638 +173662,105.11,78.594 +173663,103.84,77.553 +173664,102.53,76.519 +173665,104.95,79.653 +173666,103.76,78.584 +173667,102.54,77.518 +173668,101.27,76.458 +173669,103.57,79.667 +173670,102.42,78.573 +173671,101.23,77.483 +173672,100,76.398 +173673,102.18,79.679 +173674,101.08,78.562 +173675,99.93,77.448 +173676,98.737,76.338 +173677,100.8,79.691 +173678,99.735,78.551 +173679,98.626,77.414 +173680,97.473,76.28 +173681,99.419,79.702 +173682,98.391,78.54 +173683,97.322,77.379 +173684,96.211,76.223 +173685,98.035,79.713 +173686,97.047,78.528 +173687,96.019,77.346 +173688,94.949,76.167 +173689,96.65,79.722 +173690,95.703,78.516 +173691,94.716,77.312 +173692,93.688,76.111 +173693,95.264,79.73 +173694,94.358,78.504 +173695,93.414,77.279 +173696,92.428,76.057 +173697,93.878,79.737 +173698,93.014,78.491 +173699,92.111,77.246 +173700,91.169,76.004 +173701,92.49,79.744 +173702,91.669,78.479 +173703,90.809,77.214 +173704,89.911,75.951 +173705,91.103,79.749 +173706,90.323,78.465 +173707,89.507,77.182 +173708,88.653,75.9 +173709,89.714,79.753 +173710,88.978,78.452 +173711,88.206,77.15 +173712,87.395,75.85 +173713,88.325,79.756 +173714,87.633,78.438 +173715,86.904,77.119 +173716,86.139,75.801 +173717,86.935,79.759 +173718,86.287,78.423 +173719,85.603,77.088 +173720,84.883,75.753 +173721,85.545,79.76 +173722,84.941,78.409 +173723,84.302,77.057 +173724,83.628,75.706 +173725,84.154,79.76 +173726,83.595,78.394 +173727,83.002,77.027 +173728,82.373,75.66 +173729,82.762,79.759 +173730,82.249,78.378 +173731,81.701,76.997 +173732,81.118,75.616 +173733,81.371,79.757 +173734,80.903,78.363 +173735,80.401,76.967 +173736,79.864,75.572 +173737,79.978,79.754 +173738,79.556,78.347 +173739,79.101,76.938 +173740,78.611,75.53 +173741,78.586,79.749 +173742,78.21,78.33 +173743,77.801,76.909 +173744,77.358,75.489 +173745,77.192,79.744 +173746,76.863,78.313 +173747,76.501,76.881 +173748,76.105,75.449 +173749,75.799,79.738 +173750,75.516,78.296 +173751,75.201,76.853 +173752,74.852,75.41 +173753,74.405,79.73 +173754,74.169,78.279 +173755,73.901,76.826 +173756,73.6,75.373 +173757,73.011,79.721 +173758,72.823,78.261 +173759,72.602,76.798 +173760,72.348,75.336 +173761,71.617,79.711 +173762,71.476,78.242 +173763,71.302,76.772 +173764,71.096,75.301 +173765,70.222,79.7 +173766,70.129,78.223 +173767,70.003,76.745 +173768,69.844,75.267 +173769,68.828,79.688 +173770,68.782,78.204 +173771,68.703,76.719 +173772,68.593,75.235 +173773,67.433,79.674 +173774,67.435,78.185 +173775,67.404,76.694 +173776,67.341,75.203 +173777,66.038,79.66 +173778,66.088,78.165 +173779,66.105,76.669 +173780,66.09,75.173 +173781,64.643,79.644 +173782,64.741,78.145 +173783,64.806,76.644 +173784,64.838,75.144 +173785,63.248,79.627 +173786,63.394,78.124 +173787,63.507,76.62 +173788,63.587,75.116 +173789,61.853,79.609 +173790,62.047,78.103 +173791,62.207,76.596 +173792,62.335,75.09 +173793,60.459,79.59 +173794,60.7,78.081 +173795,60.908,76.572 +173796,61.084,75.064 +173797,59.064,79.569 +173798,59.353,78.059 +173799,59.609,76.549 +173800,59.832,75.04 +173801,57.669,79.547 +173802,58.006,78.037 +173803,58.31,76.527 +173804,58.58,75.017 +173805,56.275,79.524 +173806,56.66,78.015 +173807,57.01,76.505 +173808,57.328,74.996 +173809,54.88,79.5 +173810,55.313,77.991 +173811,55.711,76.483 +173812,56.076,74.975 +173813,53.486,79.475 +173814,53.967,77.968 +173815,54.412,76.461 +173816,54.823,74.956 +173817,52.092,79.449 +173818,52.62,77.944 +173819,53.112,76.44 +173820,53.57,74.938 +173821,50.699,79.421 +173822,51.274,77.92 +173823,51.813,76.42 +173824,52.317,74.922 +173825,49.306,79.392 +173826,49.928,77.895 +173827,50.513,76.4 +173828,51.063,74.906 +173829,47.913,79.362 +173830,48.582,77.87 +173831,49.213,76.38 +173832,49.809,74.892 +173833,46.521,79.331 +173834,47.236,77.845 +173835,47.913,76.36 +173836,48.555,74.879 +173837,45.129,79.299 +173838,45.891,77.819 +173839,46.613,76.342 +173840,47.299,74.868 +173841,43.737,79.265 +173842,44.545,77.793 +173843,45.313,76.323 +173844,46.044,74.857 +173845,42.346,79.231 +173846,43.2,77.766 +173847,44.013,76.305 +173848,44.788,74.848 +173849,40.956,79.195 +173850,41.855,77.739 +173851,42.712,76.287 +173852,43.531,74.839 +173853,39.566,79.158 +173854,40.51,77.712 +173855,41.411,76.27 +173856,42.274,74.833 +173857,38.177,79.12 +173858,39.166,77.684 +173859,40.11,76.253 +173860,41.016,74.827 +173861,36.789,79.081 +173862,37.821,77.656 +173863,38.809,76.236 +173864,39.757,74.822 +173865,35.401,79.04 +173866,36.477,77.627 +173867,37.508,76.22 +173868,38.498,74.819 +173869,34.014,78.999 +173870,35.133,77.599 +173871,36.206,76.204 +173872,37.237,74.816 +173873,32.628,78.956 +173874,33.79,77.569 +173875,34.904,76.189 +173876,35.976,74.815 +173877,31.243,78.913 +173878,32.447,77.54 +173879,33.602,76.174 +173880,34.715,74.815 +173881,29.858,78.868 +173882,31.104,77.51 +173883,32.3,76.159 +173884,33.452,74.816 +173885,28.474,78.822 +173886,29.761,77.48 +173887,30.997,76.145 +173888,32.189,74.818 +173889,27.092,78.776 +173890,28.419,77.449 +173891,29.694,76.131 +173892,30.924,74.821 +173893,25.71,78.728 +173894,27.077,77.418 +173895,28.391,76.117 +173896,29.659,74.825 +173897,24.329,78.679 +173898,25.736,77.387 +173899,27.088,76.104 +173900,28.392,74.831 +173901,22.949,78.629 +173902,24.394,77.355 +173903,25.784,76.091 +173904,27.125,74.837 +173905,21.57,78.578 +173906,23.053,77.323 +173907,24.48,76.079 +173908,25.857,74.844 +173909,20.193,78.526 +173910,21.713,77.291 +173911,23.175,76.066 +173912,24.587,74.852 +173913,18.816,78.473 +173914,20.373,77.258 +173915,21.871,76.054 +173916,23.317,74.862 +173917,17.44,78.419 +173918,19.033,77.225 +173919,20.565,76.043 +173920,22.046,74.872 +173921,16.066,78.364 +173922,17.694,77.192 +173923,19.26,76.032 +173924,20.773,74.883 +173925,14.693,78.309 +173926,16.355,77.158 +173927,17.954,76.021 +173928,19.499,74.895 +173929,13.321,78.252 +173930,15.016,77.125 +173931,16.648,76.01 +173932,18.224,74.908 +173933,11.95,78.195 +173934,13.678,77.09 +173935,15.341,76 +173936,16.948,74.922 +173937,10.581,78.136 +173938,12.341,77.056 +173939,14.034,75.99 +173940,15.67,74.937 +173941,9.2127,78.077 +173942,11.003,77.021 +173943,12.727,75.98 +173944,14.392,74.952 +173945,7.8459,78.017 +173946,9.6668,76.986 +173947,11.419,75.971 +173948,13.112,74.969 +173949,6.4804,77.956 +173950,8.3305,76.951 +173951,10.111,75.961 +173952,11.831,74.986 +173953,5.1163,77.894 +173954,6.9947,76.916 +173955,8.8019,75.952 +173956,10.548,75.004 +173957,3.7537,77.832 +173958,5.6594,76.88 +173959,7.4929,75.944 +173960,9.2645,75.023 +173961,2.3924,77.769 +173962,4.3245,76.844 +173963,6.1833,75.935 +173964,7.9793,75.042 +173965,1.0326,77.705 +173966,2.9902,76.808 +173967,4.8734,75.927 +173968,6.6928,75.062 +173969,359.67,77.64 +173970,1.6563,76.771 +173971,3.5629,75.919 +173972,5.4049,75.083 +173973,358.32,77.575 +173974,0.32297,76.735 +173975,2.2521,75.912 +173976,4.1156,75.105 +173977,356.96,77.509 +173978,358.99,76.698 +173979,0.94075,75.904 +173980,2.8249,75.127 +173981,355.61,77.442 +173982,357.66,76.661 +173983,359.63,75.897 +173984,1.5328,75.15 +173985,354.26,77.375 +173986,356.33,76.623 +173987,358.32,75.89 +173988,0.23924,75.173 +173989,352.91,77.307 +173990,354.99,76.586 +173991,357,75.883 +173992,358.94,75.197 +173993,351.56,77.239 +173994,353.66,76.548 +173995,355.69,75.876 +173996,357.65,75.221 +173997,350.21,77.17 +173998,352.33,76.51 +173999,354.38,75.87 +174000,356.35,75.246 +174001,348.86,77.1 +174002,351,76.472 +174003,353.06,75.863 +174004,355.05,75.272 +174005,347.52,77.03 +174006,349.67,76.434 +174007,351.75,75.857 +174008,353.75,75.298 +174009,346.18,76.96 +174010,348.35,76.396 +174011,350.43,75.851 +174012,352.45,75.324 +174013,344.83,76.889 +174014,347.02,76.357 +174015,349.12,75.845 +174016,351.14,75.351 +174017,343.49,76.818 +174018,345.69,76.319 +174019,347.8,75.84 +174020,349.84,75.378 +174021,342.16,76.746 +174022,344.36,76.28 +174023,346.48,75.834 +174024,348.53,75.406 +174025,340.82,76.674 +174026,343.04,76.241 +174027,345.17,75.829 +174028,347.22,75.433 +174029,339.49,76.602 +174030,341.71,76.203 +174031,343.85,75.823 +174032,345.91,75.462 +174033,338.15,76.529 +174034,340.39,76.164 +174035,342.53,75.818 +174036,344.6,75.49 +174037,336.82,76.456 +174038,339.06,76.124 +174039,341.21,75.813 +174040,343.29,75.519 +174041,335.49,76.383 +174042,337.74,76.085 +174043,339.89,75.808 +174044,341.97,75.548 +174045,334.17,76.309 +174046,336.41,76.046 +174047,338.57,75.803 +174048,340.65,75.577 +174049,332.84,76.236 +174050,335.09,76.007 +174051,337.25,75.798 +174052,339.34,75.606 +174053,331.52,76.162 +174054,333.77,75.967 +174055,335.93,75.793 +174056,338.02,75.635 +174057,330.19,76.088 +174058,332.45,75.928 +174059,334.61,75.788 +174060,336.7,75.665 +174061,328.87,76.014 +174062,331.13,75.889 +174063,333.29,75.783 +174064,335.37,75.694 +174065,327.56,75.939 +174066,329.81,75.849 +174067,331.97,75.778 +174068,334.05,75.724 +174069,326.24,75.865 +174070,328.49,75.81 +174071,330.64,75.773 +174072,332.72,75.754 +174073,324.92,75.791 +174074,327.17,75.77 +174075,329.32,75.769 +174076,331.4,75.783 +174077,323.61,75.717 +174078,325.85,75.731 +174079,328,75.764 +174080,330.07,75.813 +174081,322.3,75.642 +174082,324.53,75.692 +174083,326.67,75.759 +174084,328.74,75.843 +174085,320.99,75.568 +174086,323.21,75.652 +174087,325.35,75.754 +174088,327.4,75.872 +174089,319.68,75.494 +174090,321.89,75.613 +174091,324.02,75.75 +174092,326.07,75.902 +174093,318.37,75.42 +174094,320.58,75.573 +174095,322.7,75.745 +174096,324.73,75.931 +174097,317.07,75.346 +174098,319.26,75.534 +174099,321.37,75.74 +174100,323.4,75.96 +174101,315.76,75.272 +174102,317.95,75.495 +174103,320.04,75.735 +174104,322.06,75.989 +174105,314.46,75.199 +174106,316.63,75.456 +174107,318.71,75.73 +174108,320.72,76.018 +174109,313.16,75.125 +174110,315.32,75.417 +174111,317.39,75.725 +174112,319.38,76.046 +174113,311.86,75.052 +174114,314,75.378 +174115,316.06,75.719 +174116,318.03,76.074 +174117,310.57,74.979 +174118,312.69,75.339 +174119,314.73,75.714 +174120,316.69,76.102 +174121,309.27,74.907 +174122,311.38,75.3 +174123,313.4,75.709 +174124,315.34,76.13 +174125,307.98,74.835 +174126,310.06,75.262 +174127,312.07,75.703 +174128,314,76.157 +174129,306.69,74.763 +174130,308.75,75.223 +174131,310.74,75.698 +174132,312.65,76.184 +174133,305.4,74.691 +174134,307.44,75.185 +174135,309.41,75.692 +174136,311.3,76.21 +174137,304.11,74.62 +174138,306.13,75.147 +174139,308.08,75.686 +174140,309.94,76.236 +174141,302.82,74.55 +174142,304.82,75.109 +174143,306.74,75.68 +174144,308.59,76.262 +174145,301.53,74.48 +174146,303.51,75.071 +174147,305.41,75.674 +174148,307.24,76.287 +174149,300.25,74.41 +174150,302.2,75.033 +174151,304.08,75.667 +174152,305.88,76.311 +174153,298.97,74.341 +174154,300.89,74.995 +174155,302.74,75.661 +174156,304.52,76.335 +174157,297.69,74.272 +174158,299.59,74.958 +174159,301.41,75.654 +174160,303.16,76.359 +174161,296.41,74.204 +174162,298.28,74.921 +174163,300.08,75.647 +174164,301.8,76.382 +174165,295.13,74.137 +174166,296.97,74.884 +174167,298.74,75.64 +174168,300.44,76.404 +174169,293.85,74.07 +174170,295.67,74.847 +174171,297.41,75.633 +174172,299.08,76.426 +174173,292.58,74.004 +174174,294.36,74.811 +174175,296.07,75.626 +174176,297.71,76.447 +174177,291.3,73.939 +174178,293.05,74.774 +174179,294.73,75.618 +174180,296.35,76.468 +174181,290.03,73.874 +174182,291.75,74.738 +174183,293.4,75.61 +174184,294.98,76.487 +174185,288.76,73.81 +174186,290.44,74.702 +174187,292.06,75.602 +174188,293.61,76.506 +174189,287.49,73.747 +174190,289.14,74.667 +174191,290.72,75.593 +174192,292.24,76.525 +174193,286.22,73.684 +174194,287.84,74.631 +174195,289.39,75.585 +174196,290.87,76.542 +174197,284.95,73.622 +174198,286.53,74.596 +174199,288.05,75.576 +174200,289.5,76.559 +174201,283.69,73.561 +174202,285.23,74.561 +174203,286.71,75.567 +174204,288.13,76.575 +174205,282.42,73.501 +174206,283.93,74.527 +174207,285.37,75.557 +174208,286.75,76.59 +174209,281.16,73.442 +174210,282.63,74.493 +174211,284.03,75.548 +174212,285.38,76.605 +174213,279.9,73.384 +174214,281.32,74.459 +174215,282.69,75.538 +174216,284,76.618 +174217,278.63,73.326 +174218,280.02,74.425 +174219,281.35,75.527 +174220,282.63,76.631 +174221,277.37,73.269 +174222,278.72,74.392 +174223,280.01,75.517 +174224,281.25,76.643 +174225,276.11,73.214 +174226,277.42,74.359 +174227,278.67,75.506 +174228,279.87,76.653 +174229,274.86,73.159 +174230,276.12,74.326 +174231,277.33,75.495 +174232,278.49,76.663 +174233,273.6,73.105 +174234,274.82,74.294 +174235,275.99,75.483 +174236,277.11,76.673 +174237,272.34,73.052 +174238,273.52,74.262 +174239,274.65,75.472 +174240,275.73,76.681 +174241,271.09,73.001 +174242,272.22,74.23 +174243,273.31,75.459 +174244,274.34,76.688 +174245,269.83,72.95 +174246,270.92,74.198 +174247,271.97,75.447 +174248,272.96,76.694 +174249,268.58,72.9 +174250,269.62,74.167 +174251,270.62,75.434 +174252,271.57,76.699 +174253,267.32,72.852 +174254,268.33,74.137 +174255,269.28,75.421 +174256,270.19,76.703 +174257,266.07,72.804 +174258,267.03,74.106 +174259,267.94,75.408 +174260,268.8,76.706 +174261,264.82,72.757 +174262,265.73,74.076 +174263,266.59,75.394 +174264,267.42,76.708 +174265,263.57,72.712 +174266,264.43,74.047 +174267,265.25,75.38 +174268,266.03,76.71 +174269,262.32,72.668 +174270,263.13,74.017 +174271,263.91,75.365 +174272,264.64,76.71 +174273,261.07,72.624 +174274,261.84,73.989 +174275,262.56,75.35 +174276,263.25,76.708 +174277,259.82,72.582 +174278,260.54,73.96 +174279,261.22,75.335 +174280,261.86,76.706 +174281,258.57,72.541 +174282,259.24,73.932 +174283,259.88,75.32 +174284,260.47,76.703 +174285,257.32,72.502 +174286,257.95,73.904 +174287,258.53,75.304 +174288,259.08,76.699 +174289,256.07,72.463 +174290,256.65,73.877 +174291,257.19,75.287 +174292,257.69,76.693 +174293,254.83,72.425 +174294,255.35,73.85 +174295,255.84,75.271 +174296,256.3,76.687 +174297,253.58,72.389 +174298,254.06,73.823 +174299,254.5,75.254 +174300,254.91,76.679 +174301,252.33,72.354 +174302,252.76,73.797 +174303,253.16,75.236 +174304,253.51,76.67 +174305,251.09,72.32 +174306,251.47,73.771 +174307,251.81,75.218 +174308,252.12,76.66 +174309,249.84,72.287 +174310,250.17,73.746 +174311,250.47,75.2 +174312,250.73,76.649 +174313,248.59,72.256 +174314,248.88,73.721 +174315,249.12,75.182 +174316,249.33,76.637 +174317,247.35,72.225 +174318,247.58,73.696 +174319,247.78,75.163 +174320,247.94,76.624 +174321,246.1,72.196 +174322,246.28,73.672 +174323,246.43,75.143 +174324,246.55,76.609 +174325,244.86,72.168 +174326,244.99,73.648 +174327,245.09,75.124 +174328,245.15,76.593 +174329,243.61,72.142 +174330,243.69,73.625 +174331,243.74,75.103 +174332,243.76,76.577 +174333,242.37,72.116 +174334,242.4,73.602 +174335,242.4,75.083 +174336,242.36,76.559 +174337,241.12,72.092 +174338,241.1,73.579 +174339,241.05,75.062 +174340,240.97,76.539 +174341,239.88,72.069 +174342,239.81,73.557 +174343,239.71,75.041 +174344,239.57,76.519 +174345,238.63,72.047 +174346,238.51,73.535 +174347,238.36,75.019 +174348,238.18,76.497 +174349,237.39,72.027 +174350,237.22,73.514 +174351,237.02,74.997 +174352,236.78,76.475 +174353,236.14,72.007 +174354,235.92,73.493 +174355,235.67,74.974 +174356,235.39,76.451 +174357,234.9,71.989 +174358,234.63,73.472 +174359,234.33,74.951 +174360,234,76.426 +174361,233.65,71.972 +174362,233.33,73.452 +174363,232.98,74.928 +174364,232.6,76.399 +174365,232.4,71.957 +174366,232.04,73.432 +174367,231.64,74.904 +174368,231.21,76.372 +174369,231.16,71.942 +174370,230.74,73.413 +174371,230.29,74.88 +174372,229.81,76.343 +174373,229.91,71.929 +174374,229.45,73.394 +174375,228.95,74.856 +174376,228.42,76.314 +174377,228.66,71.917 +174378,228.15,73.375 +174379,227.61,74.831 +174380,227.03,76.283 +174381,227.41,71.906 +174382,226.85,73.357 +174383,226.26,74.806 +174384,225.63,76.251 +174385,226.17,71.896 +174386,225.56,73.339 +174387,224.92,74.78 +174388,224.24,76.218 +174389,224.92,71.888 +174390,224.26,73.322 +174391,223.57,74.754 +174392,222.85,76.183 +174393,223.67,71.881 +174394,222.97,73.305 +174395,222.23,74.728 +174396,221.46,76.148 +174397,222.42,71.874 +174398,221.67,73.288 +174399,220.89,74.701 +174400,220.07,76.111 +174401,221.17,71.869 +174402,220.37,73.272 +174403,219.54,74.674 +174404,218.68,76.074 +174405,219.92,71.866 +174406,219.08,73.256 +174407,218.2,74.646 +174408,217.29,76.035 +174409,218.67,71.863 +174410,217.78,73.241 +174411,216.86,74.618 +174412,215.9,75.995 +174413,217.41,71.861 +174414,216.48,73.226 +174415,215.51,74.59 +174416,214.51,75.954 +174417,216.16,71.861 +174418,215.18,73.211 +174419,214.17,74.562 +174420,213.12,75.912 +174421,214.91,71.861 +174422,213.89,73.197 +174423,212.83,74.533 +174424,211.73,75.869 +174425,213.65,71.863 +174426,212.59,73.183 +174427,211.49,74.503 +174428,210.34,75.824 +174429,212.4,71.866 +174430,211.29,73.169 +174431,210.15,74.474 +174432,208.96,75.779 +174433,211.14,71.87 +174434,209.99,73.156 +174435,208.8,74.444 +174436,207.57,75.733 +174437,209.88,71.875 +174438,208.69,73.143 +174439,207.46,74.413 +174440,206.19,75.685 +174441,208.63,71.881 +174442,207.39,73.13 +174443,206.12,74.383 +174444,204.8,75.637 +174445,207.37,71.887 +174446,206.1,73.118 +174447,204.78,74.352 +174448,203.42,75.588 +174449,206.11,71.895 +174450,204.8,73.106 +174451,203.44,74.32 +174452,202.04,75.537 +174453,204.84,71.904 +174454,203.5,73.094 +174455,202.1,74.289 +174456,200.66,75.486 +174457,203.58,71.914 +174458,202.2,73.083 +174459,200.76,74.257 +174460,199.28,75.434 +174461,202.32,71.925 +174462,200.9,73.072 +174463,199.42,74.224 +174464,197.9,75.38 +174465,201.06,71.937 +174466,199.59,73.062 +174467,198.09,74.192 +174468,196.52,75.326 +174469,199.79,71.949 +174470,198.29,73.051 +174471,196.75,74.159 +174472,195.15,75.271 +174473,198.52,71.963 +174474,196.99,73.041 +174475,195.41,74.125 +174476,193.77,75.215 +174477,197.26,71.977 +174478,195.69,73.032 +174479,194.07,74.092 +174480,192.4,75.158 +174481,195.99,71.993 +174482,194.39,73.022 +174483,192.74,74.058 +174484,191.02,75.101 +174485,194.72,72.009 +174486,193.08,73.013 +174487,191.4,74.024 +174488,189.65,75.042 +174489,193.44,72.026 +174490,191.78,73.004 +174491,190.06,73.99 +174492,188.28,74.983 +174493,192.17,72.044 +174494,190.48,72.995 +174495,188.73,73.955 +174496,186.91,74.923 +174497,190.9,72.062 +174498,189.17,72.987 +174499,187.39,73.92 +174500,185.55,74.862 +174501,189.62,72.081 +174502,187.87,72.979 +174503,186.06,73.885 +174504,184.18,74.8 +174505,188.35,72.101 +174506,186.56,72.971 +174507,184.72,73.85 +174508,182.81,74.738 +174509,187.07,72.122 +174510,185.26,72.963 +174511,183.39,73.814 +174512,181.45,74.674 +174513,185.79,72.143 +174514,183.95,72.956 +174515,182.06,73.779 +174516,180.09,74.611 +174517,184.51,72.165 +174518,182.65,72.949 +174519,180.72,73.743 +174520,178.73,74.546 +174521,183.22,72.188 +174522,181.34,72.942 +174523,179.39,73.706 +174524,177.37,74.481 +174525,181.94,72.211 +174526,180.03,72.935 +174527,178.06,73.67 +174528,176.01,74.415 +174529,180.65,72.235 +174530,178.73,72.929 +174531,176.73,73.633 +174532,174.65,74.349 +174533,179.37,72.259 +174534,177.42,72.922 +174535,175.4,73.596 +174536,173.3,74.282 +174537,178.08,72.284 +174538,176.11,72.916 +174539,174.07,73.559 +174540,171.94,74.214 +174541,176.79,72.309 +174542,174.8,72.91 +174543,172.74,73.522 +174544,170.59,74.146 +174545,175.5,72.335 +174546,173.49,72.904 +174547,171.41,73.485 +174548,169.24,74.078 +174549,174.21,72.361 +174550,172.18,72.898 +174551,170.08,73.447 +174552,167.89,74.009 +174553,172.91,72.388 +174554,170.87,72.893 +174555,168.75,73.41 +174556,166.55,73.939 +174557,171.62,72.415 +174558,169.56,72.887 +174559,167.42,73.372 +174560,165.2,73.869 +174561,170.32,72.442 +174562,168.25,72.882 +174563,166.1,73.334 +174564,163.86,73.799 +174565,169.02,72.47 +174566,166.93,72.877 +174567,164.77,73.296 +174568,162.52,73.728 +174569,167.72,72.498 +174570,165.62,72.872 +174571,163.45,73.258 +174572,161.18,73.657 +174573,166.42,72.527 +174574,164.31,72.867 +174575,162.12,73.22 +174576,159.84,73.586 +174577,165.11,72.556 +174578,162.99,72.862 +174579,160.8,73.181 +174580,158.5,73.514 +174581,163.81,72.584 +174582,161.68,72.857 +174583,159.47,73.143 +174584,157.17,73.442 +174585,162.5,72.614 +174586,160.37,72.853 +174587,158.15,73.104 +174588,155.83,73.37 +174589,161.19,72.643 +174590,159.05,72.848 +174591,156.83,73.066 +174592,154.5,73.297 +174593,159.88,72.672 +174594,157.73,72.843 +174595,155.5,73.027 +174596,153.17,73.225 +174597,158.57,72.702 +174598,156.42,72.839 +174599,154.18,72.988 +174600,151.85,73.152 +174601,157.26,72.732 +174602,155.1,72.834 +174603,152.86,72.95 +174604,150.52,73.079 +174605,155.94,72.761 +174606,153.78,72.83 +174607,151.54,72.911 +174608,149.2,73.006 +174609,154.62,72.791 +174610,152.47,72.825 +174611,150.22,72.872 +174612,147.87,72.933 +174613,153.3,72.821 +174614,151.15,72.821 +174615,148.9,72.833 +174616,146.55,72.86 +174617,151.98,72.851 +174618,149.83,72.817 +174619,147.58,72.795 +174620,145.23,72.786 +174621,150.66,72.88 +174622,148.51,72.812 +174623,146.26,72.756 +174624,143.92,72.713 +174625,149.34,72.91 +174626,147.19,72.808 +174627,144.95,72.717 +174628,142.6,72.64 +174629,148.01,72.94 +174630,145.87,72.803 +174631,143.63,72.678 +174632,141.29,72.567 +174633,146.69,72.969 +174634,144.55,72.799 +174635,142.31,72.64 +174636,139.98,72.494 +174637,145.36,72.999 +174638,143.22,72.794 +174639,141,72.601 +174640,138.67,72.421 +174641,144.03,73.028 +174642,141.9,72.79 +174643,139.68,72.562 +174644,137.36,72.348 +174645,142.7,73.057 +174646,140.58,72.785 +174647,138.37,72.524 +174648,136.05,72.275 +174649,141.36,73.085 +174650,139.25,72.78 +174651,137.05,72.485 +174652,134.75,72.202 +174653,140.03,73.114 +174654,137.93,72.775 +174655,135.74,72.447 +174656,133.45,72.13 +174657,138.69,73.142 +174658,136.61,72.77 +174659,134.43,72.408 +174660,132.14,72.058 +174661,137.36,73.17 +174662,135.28,72.765 +174663,133.11,72.37 +174664,130.85,71.986 +174665,136.02,73.197 +174666,133.95,72.76 +174667,131.8,72.332 +174668,129.55,71.915 +174669,134.67,73.225 +174670,132.63,72.755 +174671,130.49,72.294 +174672,128.25,71.844 +174673,133.33,73.251 +174674,131.3,72.75 +174675,129.18,72.256 +174676,126.96,71.773 +174677,131.99,73.278 +174678,129.97,72.744 +174679,127.87,72.218 +174680,125.67,71.703 +174681,130.64,73.304 +174682,128.65,72.738 +174683,126.56,72.181 +174684,124.38,71.633 +174685,129.3,73.329 +174686,127.32,72.733 +174687,125.25,72.143 +174688,123.09,71.563 +174689,127.95,73.354 +174690,125.99,72.727 +174691,123.94,72.106 +174692,121.8,71.494 +174693,126.6,73.379 +174694,124.66,72.721 +174695,122.64,72.069 +174696,120.51,71.426 +174697,125.24,73.403 +174698,123.33,72.714 +174699,121.33,72.032 +174700,119.23,71.358 +174701,123.89,73.426 +174702,122,72.708 +174703,120.02,71.995 +174704,117.95,71.29 +174705,122.54,73.449 +174706,120.67,72.701 +174707,118.72,71.958 +174708,116.67,71.223 +174709,121.18,73.471 +174710,119.34,72.694 +174711,117.41,71.922 +174712,115.39,71.157 +174713,119.82,73.492 +174714,118.01,72.687 +174715,116.11,71.886 +174716,114.11,71.091 +174717,118.46,73.513 +174718,116.67,72.68 +174719,114.8,71.85 +174720,112.84,71.026 +174721,117.1,73.534 +174722,115.34,72.672 +174723,113.5,71.814 +174724,111.56,70.961 +174725,115.74,73.553 +174726,114.01,72.664 +174727,112.19,71.779 +174728,110.29,70.898 +174729,114.38,73.572 +174730,112.68,72.656 +174731,110.89,71.743 +174732,109.02,70.835 +174733,113.01,73.59 +174734,111.34,72.648 +174735,109.59,71.708 +174736,107.75,70.772 +174737,111.65,73.607 +174738,110.01,72.64 +174739,108.29,71.673 +174740,106.48,70.711 +174741,110.28,73.624 +174742,108.67,72.631 +174743,106.98,71.639 +174744,105.21,70.65 +174745,108.91,73.64 +174746,107.34,72.622 +174747,105.68,71.605 +174748,103.95,70.59 +174749,107.54,73.654 +174750,106,72.613 +174751,104.38,71.571 +174752,102.68,70.531 +174753,106.17,73.669 +174754,104.67,72.603 +174755,103.08,71.537 +174756,101.42,70.473 +174757,104.8,73.682 +174758,103.33,72.593 +174759,101.78,71.504 +174760,100.16,70.415 +174761,103.43,73.694 +174762,101.99,72.583 +174763,100.48,71.47 +174764,98.897,70.359 +174765,102.06,73.706 +174766,100.65,72.572 +174767,99.184,71.438 +174768,97.637,70.303 +174769,100.68,73.716 +174770,99.317,72.562 +174771,97.885,71.405 +174772,96.379,70.248 +174773,99.304,73.726 +174774,97.979,72.551 +174775,96.587,71.373 +174776,95.122,70.194 +174777,97.926,73.734 +174778,96.641,72.539 +174779,95.289,71.341 +174780,93.866,70.142 +174781,96.548,73.742 +174782,95.302,72.527 +174783,93.992,71.309 +174784,92.612,70.09 +174785,95.168,73.749 +174786,93.963,72.515 +174787,92.695,71.278 +174788,91.358,70.039 +174789,93.788,73.754 +174790,92.624,72.503 +174791,91.398,71.247 +174792,90.105,69.989 +174793,92.407,73.759 +174794,91.284,72.49 +174795,90.102,71.217 +174796,88.853,69.94 +174797,91.025,73.763 +174798,89.945,72.477 +174799,88.806,71.187 +174800,87.603,69.892 +174801,89.642,73.766 +174802,88.605,72.464 +174803,87.51,71.157 +174804,86.353,69.846 +174805,88.258,73.767 +174806,87.264,72.45 +174807,86.214,71.127 +174808,85.104,69.8 +174809,86.873,73.768 +174810,85.923,72.436 +174811,84.919,71.098 +174812,83.856,69.756 +174813,85.487,73.767 +174814,84.583,72.422 +174815,83.624,71.069 +174816,82.608,69.712 +174817,84.101,73.766 +174818,83.241,72.407 +174819,82.33,71.041 +174820,81.362,69.67 +174821,82.714,73.763 +174822,81.9,72.391 +174823,81.035,71.013 +174824,80.116,69.628 +174825,81.326,73.759 +174826,80.558,72.376 +174827,79.741,70.985 +174828,78.871,69.588 +174829,79.938,73.755 +174830,79.217,72.36 +174831,78.447,70.958 +174832,77.626,69.549 +174833,78.549,73.749 +174834,77.875,72.344 +174835,77.153,70.931 +174836,76.382,69.512 +174837,77.159,73.742 +174838,76.532,72.327 +174839,75.86,70.904 +174840,75.139,69.475 +174841,75.769,73.733 +174842,75.19,72.31 +174843,74.567,70.878 +174844,73.896,69.439 +174845,74.378,73.724 +174846,73.847,72.292 +174847,73.274,70.852 +174848,72.654,69.405 +174849,72.987,73.713 +174850,72.505,72.274 +174851,71.981,70.827 +174852,71.412,69.372 +174853,71.595,73.702 +174854,71.162,72.256 +174855,70.688,70.802 +174856,70.17,69.34 +174857,70.203,73.689 +174858,69.819,72.238 +174859,69.395,70.777 +174860,68.929,69.309 +174861,68.81,73.675 +174862,68.476,72.219 +174863,68.103,70.753 +174864,67.688,69.28 +174865,67.417,73.66 +174866,67.133,72.199 +174867,66.81,70.729 +174868,66.448,69.252 +174869,66.024,73.644 +174870,65.79,72.179 +174871,65.518,70.706 +174872,65.208,69.224 +174873,64.631,73.626 +174874,64.446,72.159 +174875,64.226,70.683 +174876,63.968,69.199 +174877,63.237,73.607 +174878,63.103,72.138 +174879,62.934,70.66 +174880,62.728,69.174 +174881,61.843,73.588 +174882,61.76,72.117 +174883,61.642,70.638 +174884,61.488,69.15 +174885,60.449,73.567 +174886,60.416,72.096 +174887,60.35,70.616 +174888,60.248,69.128 +174889,59.054,73.544 +174890,59.073,72.074 +174891,59.058,70.595 +174892,59.008,69.107 +174893,57.66,73.521 +174894,57.729,72.052 +174895,57.766,70.574 +174896,57.769,69.087 +174897,56.266,73.496 +174898,56.386,72.029 +174899,56.474,70.553 +174900,56.529,69.069 +174901,54.871,73.471 +174902,55.042,72.006 +174903,55.182,70.533 +174904,55.289,69.051 +174905,53.477,73.444 +174906,53.699,71.983 +174907,53.89,70.513 +174908,54.049,69.035 +174909,52.082,73.416 +174910,52.356,71.959 +174911,52.598,70.493 +174912,52.809,69.02 +174913,50.688,73.387 +174914,51.012,71.935 +174915,51.306,70.474 +174916,51.569,69.006 +174917,49.294,73.356 +174918,49.669,71.91 +174919,50.014,70.456 +174920,50.328,68.994 +174921,47.9,73.325 +174922,48.326,71.885 +174923,48.722,70.438 +174924,49.088,68.983 +174925,46.506,73.292 +174926,46.983,71.86 +174927,47.43,70.42 +174928,47.846,68.972 +174929,45.112,73.258 +174930,45.64,71.834 +174931,46.137,70.402 +174932,46.605,68.963 +174933,43.719,73.223 +174934,44.297,71.808 +174935,44.845,70.385 +174936,45.363,68.956 +174937,42.326,73.187 +174938,42.955,71.781 +174939,43.552,70.368 +174940,44.121,68.949 +174941,40.933,73.149 +174942,41.612,71.755 +174943,42.26,70.352 +174944,42.878,68.944 +174945,39.541,73.111 +174946,40.27,71.727 +174947,40.967,70.336 +174948,41.634,68.939 +174949,38.149,73.072 +174950,38.927,71.7 +174951,39.674,70.321 +174952,40.391,68.936 +174953,36.758,73.031 +174954,37.585,71.672 +174955,38.381,70.305 +174956,39.146,68.934 +174957,35.367,72.989 +174958,36.244,71.643 +174959,37.088,70.291 +174960,37.901,68.933 +174961,33.976,72.946 +174962,34.902,71.614 +174963,35.794,70.276 +174964,36.655,68.933 +174965,32.587,72.903 +174966,33.561,71.585 +174967,34.5,70.262 +174968,35.408,68.934 +174969,31.198,72.858 +174970,32.219,71.556 +174971,33.206,70.248 +174972,34.161,68.937 +174973,29.809,72.812 +174974,30.879,71.526 +174975,31.912,70.235 +174976,32.913,68.94 +174977,28.421,72.765 +174978,29.538,71.496 +174979,30.618,70.222 +174980,31.664,68.945 +174981,27.034,72.716 +174982,28.197,71.465 +174983,29.323,70.209 +174984,30.415,68.95 +174985,25.648,72.667 +174986,26.857,71.434 +174987,28.028,70.197 +174988,29.164,68.957 +174989,24.262,72.617 +174990,25.518,71.403 +174991,26.733,70.185 +174992,27.913,68.964 +174993,22.878,72.566 +174994,24.178,71.371 +174995,25.437,70.173 +174996,26.66,68.973 +174997,21.494,72.514 +174998,22.839,71.339 +174999,24.142,70.162 +175000,25.407,68.982 +175001,20.111,72.461 +175002,21.5,71.307 +175003,22.845,70.151 +175004,24.152,68.993 +175005,18.729,72.407 +175006,20.162,71.275 +175007,21.549,70.14 +175008,22.897,69.004 +175009,17.348,72.352 +175010,18.823,71.242 +175011,20.252,70.129 +175012,21.64,69.017 +175013,15.968,72.297 +175014,17.486,71.209 +175015,18.955,70.119 +175016,20.383,69.03 +175017,14.589,72.24 +175018,16.148,71.175 +175019,17.658,70.109 +175020,19.124,69.044 +175021,13.212,72.182 +175022,14.811,71.141 +175023,16.36,70.1 +175024,17.864,69.059 +175025,11.835,72.124 +175026,13.475,71.107 +175027,15.062,70.091 +175028,16.603,69.075 +175029,10.459,72.065 +175030,12.138,71.073 +175031,13.763,70.082 +175032,15.34,69.091 +175033,9.085,72.005 +175034,10.802,71.038 +175035,12.464,70.073 +175036,14.077,69.109 +175037,7.7119,71.944 +175038,9.4671,71.004 +175039,11.165,70.064 +175040,12.812,69.127 +175041,6.34,71.882 +175042,8.1321,70.969 +175043,9.8648,70.056 +175044,11.546,69.146 +175045,4.9694,71.82 +175046,6.7976,70.933 +175047,8.5646,70.048 +175048,10.278,69.166 +175049,3.6001,71.757 +175050,5.4635,70.898 +175051,7.2639,70.04 +175052,9.0096,69.186 +175053,2.2321,71.693 +175054,4.1299,70.862 +175055,5.9628,70.033 +175056,7.7395,69.207 +175057,0.86552,71.629 +175058,2.7968,70.826 +175059,4.6613,70.025 +175060,6.468,69.229 +175061,359.5,71.564 +175062,1.4642,70.789 +175063,3.3593,70.018 +175064,5.195,69.251 +175065,358.14,71.498 +175066,0.13199,70.753 +175067,2.0568,70.011 +175068,3.9207,69.274 +175069,356.77,71.431 +175070,358.8,70.716 +175071,0.7539,70.005 +175072,2.6449,69.298 +175073,355.41,71.364 +175074,357.47,70.679 +175075,359.45,69.998 +175076,1.3676,69.322 +175077,354.05,71.297 +175078,356.14,70.642 +175079,358.15,69.992 +175080,0.088875,69.347 +175081,352.7,71.229 +175082,354.81,70.605 +175083,356.84,69.986 +175084,358.81,69.372 +175085,351.34,71.16 +175086,353.48,70.567 +175087,355.54,69.98 +175088,357.53,69.398 +175089,349.99,71.091 +175090,352.15,70.53 +175091,354.23,69.974 +175092,356.24,69.424 +175093,348.63,71.021 +175094,350.82,70.492 +175095,352.93,69.968 +175096,354.96,69.451 +175097,347.28,70.951 +175098,349.49,70.454 +175099,351.62,69.963 +175100,353.67,69.478 +175101,345.93,70.881 +175102,348.17,70.416 +175103,350.31,69.957 +175104,352.38,69.505 +175105,344.58,70.81 +175106,346.84,70.378 +175107,349.01,69.952 +175108,351.09,69.533 +175109,343.24,70.738 +175110,345.51,70.339 +175111,347.7,69.947 +175112,349.8,69.561 +175113,341.89,70.667 +175114,344.19,70.301 +175115,346.39,69.942 +175116,348.51,69.59 +175117,340.55,70.595 +175118,342.86,70.262 +175119,345.08,69.937 +175120,347.22,69.618 +175121,339.21,70.522 +175122,341.54,70.223 +175123,343.77,69.932 +175124,345.92,69.647 +175125,337.87,70.45 +175126,340.21,70.185 +175127,342.46,69.927 +175128,344.62,69.676 +175129,336.53,70.377 +175130,338.89,70.146 +175131,341.15,69.922 +175132,343.32,69.706 +175133,335.19,70.304 +175134,337.57,70.107 +175135,339.84,69.917 +175136,342.02,69.735 +175137,333.86,70.231 +175138,336.24,70.068 +175139,338.53,69.913 +175140,340.72,69.765 +175141,332.53,70.158 +175142,334.92,70.029 +175143,337.21,69.908 +175144,339.42,69.795 +175145,331.2,70.084 +175146,333.6,69.99 +175147,335.9,69.904 +175148,338.11,69.824 +175149,329.87,70.01 +175150,332.28,69.951 +175151,334.59,69.899 +175152,336.8,69.854 +175153,328.54,69.937 +175154,330.96,69.912 +175155,333.27,69.894 +175156,335.49,69.884 +175157,327.22,69.863 +175158,329.64,69.873 +175159,331.96,69.89 +175160,334.18,69.914 +175161,325.89,69.789 +175162,328.32,69.833 +175163,330.64,69.885 +175164,332.87,69.944 +175165,324.57,69.716 +175166,327.01,69.794 +175167,329.33,69.881 +175168,331.55,69.974 +175169,323.25,69.642 +175170,325.69,69.755 +175171,328.01,69.876 +175172,330.24,70.004 +175173,321.93,69.568 +175174,324.37,69.716 +175175,326.7,69.871 +175176,328.92,70.033 +175177,320.62,69.495 +175178,323.06,69.677 +175179,325.38,69.867 +175180,327.6,70.063 +175181,319.3,69.421 +175182,321.74,69.638 +175183,324.06,69.862 +175184,326.28,70.092 +175185,317.99,69.348 +175186,320.43,69.599 +175187,322.74,69.857 +175188,324.96,70.121 +175189,316.68,69.275 +175190,319.11,69.56 +175191,321.42,69.852 +175192,323.63,70.15 +175193,315.37,69.202 +175194,317.8,69.521 +175195,320.1,69.847 +175196,322.31,70.179 +175197,314.07,69.129 +175198,316.48,69.482 +175199,318.78,69.842 +175200,320.98,70.207 +175201,312.76,69.057 +175202,315.17,69.444 +175203,317.46,69.837 +175204,319.65,70.235 +175205,311.46,68.985 +175206,313.86,69.405 +175207,316.14,69.832 +175208,318.32,70.263 +175209,310.16,68.913 +175210,312.55,69.367 +175211,314.82,69.826 +175212,316.98,70.29 +175213,308.86,68.841 +175214,311.24,69.328 +175215,313.5,69.821 +175216,315.65,70.317 +175217,307.56,68.77 +175218,309.93,69.29 +175219,312.17,69.815 +175220,314.31,70.344 +175221,306.27,68.699 +175222,308.62,69.252 +175223,310.85,69.809 +175224,312.98,70.37 +175225,304.97,68.629 +175226,307.31,69.214 +175227,309.53,69.803 +175228,311.64,70.396 +175229,303.68,68.559 +175230,306,69.176 +175231,308.2,69.797 +175232,310.3,70.421 +175233,302.39,68.49 +175234,304.69,69.138 +175235,306.88,69.791 +175236,308.95,70.446 +175237,301.11,68.421 +175238,303.39,69.101 +175239,305.55,69.784 +175240,307.61,70.47 +175241,299.82,68.352 +175242,302.08,69.063 +175243,304.22,69.778 +175244,306.26,70.494 +175245,298.53,68.285 +175246,300.77,69.026 +175247,302.9,69.771 +175248,304.92,70.517 +175249,297.25,68.217 +175250,299.47,68.989 +175251,301.57,69.764 +175252,303.57,70.539 +175253,295.97,68.151 +175254,298.16,68.953 +175255,300.24,69.757 +175256,302.22,70.561 +175257,294.69,68.085 +175258,296.86,68.916 +175259,298.91,69.749 +175260,300.87,70.582 +175261,293.41,68.019 +175262,295.56,68.88 +175263,297.59,69.741 +175264,299.51,70.603 +175265,292.14,67.955 +175266,294.25,68.844 +175267,296.26,69.733 +175268,298.16,70.622 +175269,290.86,67.891 +175270,292.95,68.808 +175271,294.93,69.725 +175272,296.8,70.641 +175273,289.59,67.827 +175274,291.65,68.772 +175275,293.6,69.717 +175276,295.44,70.66 +175277,288.32,67.765 +175278,290.35,68.737 +175279,292.27,69.708 +175280,294.08,70.677 +175281,287.05,67.703 +175282,289.05,68.701 +175283,290.93,69.699 +175284,292.72,70.694 +175285,285.78,67.642 +175286,287.75,68.666 +175287,289.6,69.69 +175288,291.36,70.71 +175289,284.52,67.582 +175290,286.45,68.632 +175291,288.27,69.68 +175292,290,70.725 +175293,283.25,67.522 +175294,285.15,68.597 +175295,286.94,69.67 +175296,288.63,70.739 +175297,281.99,67.464 +175298,283.85,68.563 +175299,285.6,69.66 +175300,287.27,70.753 +175301,280.73,67.406 +175302,282.55,68.53 +175303,284.27,69.65 +175304,285.9,70.765 +175305,279.46,67.35 +175306,281.25,68.496 +175307,282.94,69.639 +175308,284.53,70.777 +175309,278.21,67.294 +175310,279.95,68.463 +175311,281.6,69.628 +175312,283.16,70.788 +175313,276.95,67.239 +175314,278.66,68.43 +175315,280.27,69.617 +175316,281.79,70.797 +175317,275.69,67.185 +175318,277.36,68.397 +175319,278.93,69.605 +175320,280.42,70.806 +175321,274.44,67.132 +175322,276.06,68.365 +175323,277.6,69.593 +175324,279.05,70.814 +175325,273.18,67.08 +175326,274.77,68.333 +175327,276.26,69.581 +175328,277.67,70.821 +175329,271.93,67.029 +175330,273.47,68.302 +175331,274.93,69.568 +175332,276.3,70.827 +175333,270.68,66.979 +175334,272.18,68.27 +175335,273.59,69.555 +175336,274.92,70.832 +175337,269.43,66.93 +175338,270.88,68.239 +175339,272.25,69.542 +175340,273.54,70.835 +175341,268.18,66.882 +175342,269.59,68.209 +175343,270.92,69.528 +175344,272.17,70.838 +175345,266.93,66.835 +175346,268.29,68.178 +175347,269.58,69.514 +175348,270.79,70.84 +175349,265.68,66.79 +175350,267,68.149 +175351,268.24,69.499 +175352,269.41,70.841 +175353,264.44,66.745 +175354,265.71,68.119 +175355,266.9,69.485 +175356,268.02,70.84 +175357,263.19,66.702 +175358,264.41,68.09 +175359,265.56,69.469 +175360,266.64,70.839 +175361,261.95,66.659 +175362,263.12,68.061 +175363,264.22,69.454 +175364,265.26,70.836 +175365,260.7,66.618 +175366,261.83,68.033 +175367,262.89,69.438 +175368,263.87,70.832 +175369,259.46,66.578 +175370,260.54,68.004 +175371,261.55,69.421 +175372,262.49,70.827 +175373,258.22,66.539 +175374,259.25,67.977 +175375,260.21,69.405 +175376,261.1,70.821 +175377,256.98,66.501 +175378,257.95,67.949 +175379,258.87,69.388 +175380,259.72,70.814 +175381,255.74,66.464 +175382,256.66,67.922 +175383,257.53,69.37 +175384,258.33,70.806 +175385,254.5,66.429 +175386,255.37,67.896 +175387,256.19,69.352 +175388,256.94,70.796 +175389,253.26,66.395 +175390,254.08,67.87 +175391,254.85,69.334 +175392,255.55,70.786 +175393,252.02,66.362 +175394,252.79,67.844 +175395,253.51,69.315 +175396,254.17,70.774 +175397,250.78,66.33 +175398,251.5,67.819 +175399,252.16,69.296 +175400,252.78,70.761 +175401,249.55,66.299 +175402,250.21,67.794 +175403,250.82,69.277 +175404,251.39,70.747 +175405,248.31,66.27 +175406,248.92,67.769 +175407,249.48,69.257 +175408,249.99,70.732 +175409,247.07,66.241 +175410,247.63,67.745 +175411,248.14,69.236 +175412,248.6,70.715 +175413,245.84,66.214 +175414,246.34,67.721 +175415,246.8,69.216 +175416,247.21,70.697 +175417,244.6,66.189 +175418,245.05,67.698 +175419,245.46,69.195 +175420,245.82,70.678 +175421,243.37,66.164 +175422,243.76,67.675 +175423,244.12,69.173 +175424,244.43,70.658 +175425,242.13,66.141 +175426,242.47,67.652 +175427,242.77,69.151 +175428,243.03,70.637 +175429,240.9,66.119 +175430,241.19,67.63 +175431,241.43,69.129 +175432,241.64,70.614 +175433,239.66,66.098 +175434,239.9,67.608 +175435,240.09,69.106 +175436,240.25,70.591 +175437,238.43,66.078 +175438,238.61,67.586 +175439,238.75,69.083 +175440,238.85,70.566 +175441,237.19,66.06 +175442,237.32,67.565 +175443,237.41,69.059 +175444,237.46,70.54 +175445,235.96,66.042 +175446,236.03,67.545 +175447,236.06,69.035 +175448,236.07,70.512 +175449,234.72,66.026 +175450,234.74,67.525 +175451,234.72,69.011 +175452,234.67,70.484 +175453,233.49,66.012 +175454,233.45,67.505 +175455,233.38,68.986 +175456,233.28,70.454 +175457,232.25,65.998 +175458,232.16,67.485 +175459,232.04,68.961 +175460,231.88,70.423 +175461,231.02,65.986 +175462,230.87,67.466 +175463,230.7,68.935 +175464,230.49,70.391 +175465,229.79,65.975 +175466,229.59,67.448 +175467,229.36,68.909 +175468,229.09,70.358 +175469,228.55,65.965 +175470,228.3,67.429 +175471,228.01,68.883 +175472,227.7,70.323 +175473,227.31,65.956 +175474,227.01,67.411 +175475,226.67,68.856 +175476,226.31,70.288 +175477,226.08,65.948 +175478,225.72,67.394 +175479,225.33,68.829 +175480,224.91,70.251 +175481,224.84,65.942 +175482,224.43,67.377 +175483,223.99,68.801 +175484,223.52,70.213 +175485,223.61,65.937 +175486,223.14,67.36 +175487,222.65,68.773 +175488,222.12,70.174 +175489,222.37,65.933 +175490,221.85,67.344 +175491,221.31,68.744 +175492,220.73,70.133 +175493,221.13,65.93 +175494,220.56,67.328 +175495,219.96,68.716 +175496,219.34,70.092 +175497,219.9,65.928 +175498,219.27,67.312 +175499,218.62,68.686 +175500,217.95,70.05 +175501,218.66,65.927 +175502,217.98,67.297 +175503,217.28,68.657 +175504,216.55,70.006 +175505,217.42,65.928 +175506,216.69,67.282 +175507,215.94,68.627 +175508,215.16,69.961 +175509,216.18,65.929 +175510,215.4,67.268 +175511,214.6,68.597 +175512,213.77,69.915 +175513,214.94,65.932 +175514,214.11,67.253 +175515,213.26,68.566 +175516,212.38,69.868 +175517,213.7,65.936 +175518,212.82,67.24 +175519,211.92,68.535 +175520,210.99,69.82 +175521,212.46,65.941 +175522,211.53,67.226 +175523,210.58,68.503 +175524,209.6,69.771 +175525,211.21,65.946 +175526,210.24,67.213 +175527,209.24,68.472 +175528,208.21,69.721 +175529,209.97,65.953 +175530,208.95,67.2 +175531,207.9,68.44 +175532,206.82,69.67 +175533,208.73,65.961 +175534,207.66,67.188 +175535,206.56,68.407 +175536,205.43,69.618 +175537,207.48,65.97 +175538,206.37,67.176 +175539,205.22,68.374 +175540,204.04,69.565 +175541,206.24,65.98 +175542,205.08,67.164 +175543,203.88,68.341 +175544,202.66,69.511 +175545,204.99,65.991 +175546,203.78,67.152 +175547,202.55,68.308 +175548,201.27,69.456 +175549,203.74,66.002 +175550,202.49,67.141 +175551,201.21,68.274 +175552,199.89,69.399 +175553,202.49,66.015 +175554,201.2,67.13 +175555,199.87,68.24 +175556,198.5,69.342 +175557,201.24,66.029 +175558,199.9,67.12 +175559,198.53,68.205 +175560,197.12,69.285 +175561,199.99,66.043 +175562,198.61,67.109 +175563,197.19,68.171 +175564,195.74,69.226 +175565,198.74,66.059 +175566,197.32,67.099 +175567,195.86,68.136 +175568,194.36,69.166 +175569,197.49,66.075 +175570,196.02,67.089 +175571,194.52,68.1 +175572,192.98,69.105 +175573,196.23,66.092 +175574,194.73,67.08 +175575,193.19,68.065 +175576,191.6,69.044 +175577,194.98,66.109 +175578,193.43,67.071 +175579,191.85,68.029 +175580,190.22,68.982 +175581,193.72,66.128 +175582,192.14,67.062 +175583,190.52,67.992 +175584,188.84,68.919 +175585,192.46,66.147 +175586,190.84,67.053 +175587,189.18,67.956 +175588,187.47,68.855 +175589,191.2,66.167 +175590,189.55,67.044 +175591,187.85,67.919 +175592,186.09,68.79 +175593,189.94,66.188 +175594,188.25,67.036 +175595,186.51,67.882 +175596,184.72,68.725 +175597,188.68,66.21 +175598,186.95,67.028 +175599,185.18,67.845 +175600,183.35,68.659 +175601,187.42,66.232 +175602,185.66,67.02 +175603,183.85,67.808 +175604,181.98,68.592 +175605,186.15,66.254 +175606,184.36,67.013 +175607,182.51,67.77 +175608,180.61,68.525 +175609,184.89,66.278 +175610,183.06,67.005 +175611,181.18,67.732 +175612,179.24,68.457 +175613,183.62,66.302 +175614,181.76,66.998 +175615,179.85,67.694 +175616,177.87,68.388 +175617,182.35,66.326 +175618,180.46,66.991 +175619,178.52,67.656 +175620,176.51,68.319 +175621,181.08,66.351 +175622,179.16,66.984 +175623,177.19,67.617 +175624,175.14,68.249 +175625,179.81,66.377 +175626,177.86,66.977 +175627,175.86,67.578 +175628,173.78,68.178 +175629,178.53,66.403 +175630,176.56,66.971 +175631,174.53,67.54 +175632,172.42,68.107 +175633,177.26,66.429 +175634,175.26,66.965 +175635,173.2,67.501 +175636,171.06,68.036 +175637,175.98,66.456 +175638,173.96,66.958 +175639,171.87,67.461 +175640,169.7,67.964 +175641,174.7,66.483 +175642,172.66,66.952 +175643,170.54,67.422 +175644,168.35,67.892 +175645,173.42,66.511 +175646,171.36,66.946 +175647,169.22,67.382 +175648,166.99,67.819 +175649,172.14,66.539 +175650,170.05,66.94 +175651,167.89,67.343 +175652,165.64,67.746 +175653,170.86,66.567 +175654,168.75,66.934 +175655,166.56,67.303 +175656,164.29,67.672 +175657,169.58,66.596 +175658,167.45,66.929 +175659,165.24,67.263 +175660,162.94,67.598 +175661,168.29,66.625 +175662,166.14,66.923 +175663,163.91,67.223 +175664,161.59,67.524 +175665,167,66.654 +175666,164.84,66.918 +175667,162.59,67.183 +175668,160.24,67.449 +175669,165.71,66.683 +175670,163.53,66.912 +175671,161.26,67.143 +175672,158.9,67.374 +175673,164.42,66.713 +175674,162.22,66.907 +175675,159.94,67.102 +175676,157.55,67.299 +175677,163.13,66.742 +175678,160.92,66.901 +175679,158.62,67.062 +175680,156.21,67.224 +175681,161.83,66.772 +175682,159.61,66.896 +175683,157.29,67.022 +175684,154.87,67.148 +175685,160.54,66.802 +175686,158.3,66.891 +175687,155.97,66.981 +175688,153.54,67.073 +175689,159.24,66.832 +175690,156.99,66.885 +175691,154.65,66.941 +175692,152.2,66.997 +175693,157.94,66.862 +175694,155.68,66.88 +175695,153.33,66.9 +175696,150.87,66.921 +175697,156.64,66.892 +175698,154.37,66.875 +175699,152.01,66.859 +175700,149.54,66.845 +175701,155.33,66.922 +175702,153.06,66.87 +175703,150.69,66.819 +175704,148.21,66.769 +175705,154.03,66.952 +175706,151.75,66.864 +175707,149.37,66.778 +175708,146.88,66.693 +175709,152.72,66.982 +175710,150.44,66.859 +175711,148.06,66.738 +175712,145.55,66.617 +175713,151.41,67.011 +175714,149.13,66.854 +175715,146.74,66.697 +175716,144.23,66.541 +175717,150.1,67.041 +175718,147.82,66.848 +175719,145.42,66.656 +175720,142.9,66.466 +175721,148.79,67.07 +175722,146.5,66.843 +175723,144.11,66.616 +175724,141.58,66.39 +175725,147.48,67.099 +175726,145.19,66.837 +175727,142.79,66.575 +175728,140.26,66.314 +175729,146.16,67.129 +175730,143.88,66.832 +175731,141.48,66.535 +175732,138.95,66.239 +175733,144.85,67.157 +175734,142.56,66.826 +175735,140.16,66.495 +175736,137.63,66.163 +175737,143.53,67.186 +175738,141.25,66.82 +175739,138.85,66.454 +175740,136.32,66.088 +175741,142.21,67.214 +175742,139.93,66.814 +175743,137.54,66.414 +175744,135.01,66.013 +175745,140.89,67.242 +175746,138.61,66.808 +175747,136.22,66.374 +175748,133.7,65.939 +175749,139.56,67.269 +175750,137.3,66.802 +175751,134.91,66.334 +175752,132.39,65.865 +175753,138.24,67.296 +175754,135.98,66.796 +175755,133.6,66.294 +175756,131.09,65.791 +175757,136.91,67.323 +175758,134.66,66.789 +175759,132.29,66.254 +175760,129.79,65.717 +175761,135.58,67.349 +175762,133.34,66.783 +175763,130.98,66.214 +175764,128.48,65.644 +175765,134.25,67.375 +175766,132.02,66.776 +175767,129.67,66.175 +175768,127.19,65.571 +175769,132.92,67.401 +175770,130.7,66.769 +175771,128.36,66.135 +175772,125.89,65.499 +175773,131.58,67.425 +175774,129.38,66.762 +175775,127.06,66.096 +175776,124.59,65.427 +175777,130.25,67.45 +175778,128.06,66.755 +175779,125.75,66.057 +175780,123.3,65.356 +175781,128.91,67.473 +175782,126.74,66.748 +175783,124.44,66.018 +175784,122.01,65.285 +175785,127.57,67.497 +175786,125.41,66.74 +175787,123.14,65.979 +175788,120.72,65.214 +175789,126.23,67.519 +175790,124.09,66.732 +175791,121.83,65.94 +175792,119.43,65.145 +175793,124.89,67.541 +175794,122.77,66.724 +175795,120.53,65.902 +175796,118.15,65.075 +175797,123.54,67.562 +175798,121.44,66.716 +175799,119.22,65.864 +175800,116.86,65.007 +175801,122.2,67.583 +175802,120.12,66.707 +175803,117.92,65.826 +175804,115.58,64.939 +175805,120.85,67.603 +175806,118.8,66.698 +175807,116.62,65.788 +175808,114.3,64.872 +175809,119.5,67.622 +175810,117.47,66.689 +175811,115.31,65.75 +175812,113.02,64.805 +175813,118.15,67.64 +175814,116.14,66.68 +175815,114.01,65.713 +175816,111.74,64.739 +175817,116.8,67.658 +175818,114.82,66.671 +175819,112.71,65.676 +175820,110.47,64.674 +175821,115.45,67.674 +175822,113.49,66.661 +175823,111.41,65.639 +175824,109.2,64.61 +175825,114.1,67.69 +175826,112.16,66.651 +175827,110.11,65.602 +175828,107.92,64.547 +175829,112.74,67.705 +175830,110.83,66.64 +175831,108.81,65.566 +175832,106.66,64.484 +175833,111.38,67.72 +175834,109.51,66.629 +175835,107.51,65.53 +175836,105.39,64.422 +175837,110.02,67.733 +175838,108.18,66.619 +175839,106.21,65.494 +175840,104.12,64.361 +175841,108.66,67.745 +175842,106.85,66.607 +175843,104.92,65.459 +175844,102.86,64.301 +175845,107.3,67.757 +175846,105.52,66.596 +175847,103.62,65.424 +175848,101.59,64.242 +175849,105.94,67.767 +175850,104.19,66.584 +175851,102.32,65.389 +175852,100.33,64.184 +175853,104.57,67.777 +175854,102.86,66.571 +175855,101.03,65.354 +175856,99.072,64.126 +175857,103.21,67.786 +175858,101.52,66.559 +175859,99.731,65.32 +175860,97.814,64.07 +175861,101.84,67.793 +175862,100.19,66.546 +175863,98.436,65.286 +175864,96.557,64.014 +175865,100.47,67.8 +175866,98.861,66.533 +175867,97.141,65.252 +175868,95.302,63.96 +175869,99.105,67.806 +175870,97.528,66.519 +175871,95.847,65.219 +175872,94.048,63.907 +175873,97.734,67.81 +175874,96.195,66.505 +175875,94.553,65.186 +175876,92.795,63.854 +175877,96.363,67.814 +175878,94.862,66.491 +175879,93.26,65.153 +175880,91.544,63.803 +175881,94.99,67.816 +175882,93.528,66.476 +175883,91.967,65.121 +175884,90.294,63.753 +175885,93.616,67.818 +175886,92.194,66.461 +175887,90.674,65.089 +175888,89.046,63.704 +175889,92.241,67.818 +175890,90.859,66.445 +175891,89.382,65.057 +175892,87.798,63.656 +175893,90.865,67.817 +175894,89.524,66.429 +175895,88.091,65.026 +175896,86.552,63.609 +175897,89.487,67.815 +175898,88.189,66.413 +175899,86.799,64.995 +175900,85.308,63.563 +175901,88.109,67.812 +175902,86.853,66.396 +175903,85.509,64.965 +175904,84.064,63.518 +175905,86.73,67.808 +175906,85.517,66.379 +175907,84.218,64.935 +175908,82.821,63.475 +175909,85.35,67.803 +175910,84.181,66.362 +175911,82.928,64.905 +175912,81.58,63.433 +175913,83.968,67.796 +175914,82.845,66.344 +175915,81.638,64.876 +175916,80.339,63.391 +175917,82.586,67.788 +175918,81.508,66.326 +175919,80.349,64.847 +175920,79.1,63.351 +175921,81.204,67.78 +175922,80.171,66.307 +175923,79.06,64.818 +175924,77.861,63.313 +175925,79.82,67.769 +175926,78.833,66.288 +175927,77.771,64.79 +175928,76.624,63.275 +175929,78.435,67.758 +175930,77.496,66.269 +175931,76.482,64.762 +175932,75.387,63.239 +175933,77.05,67.746 +175934,76.158,66.249 +175935,75.194,64.735 +175936,74.151,63.203 +175937,75.664,67.732 +175938,74.82,66.229 +175939,73.906,64.708 +175940,72.916,63.17 +175941,74.277,67.717 +175942,73.482,66.208 +175943,72.619,64.681 +175944,71.681,63.137 +175945,72.89,67.701 +175946,72.143,66.187 +175947,71.331,64.655 +175948,70.448,63.105 +175949,71.501,67.683 +175950,70.804,66.165 +175951,70.044,64.629 +175952,69.215,63.075 +175953,70.113,67.665 +175954,69.465,66.143 +175955,68.757,64.603 +175956,67.982,63.046 +175957,68.723,67.645 +175958,68.126,66.121 +175959,67.47,64.578 +175960,66.75,63.019 +175961,67.334,67.624 +175962,66.787,66.098 +175963,66.184,64.554 +175964,65.519,62.992 +175965,65.943,67.602 +175966,65.448,66.075 +175967,64.897,64.53 +175968,64.288,62.967 +175969,64.552,67.578 +175970,64.108,66.051 +175971,63.611,64.506 +175972,63.058,62.943 +175973,63.161,67.553 +175974,62.768,66.027 +175975,62.325,64.482 +175976,61.827,62.92 +175977,61.77,67.527 +175978,61.429,66.002 +175979,61.039,64.459 +175980,60.598,62.899 +175981,60.378,67.5 +175982,60.089,65.977 +175983,59.754,64.437 +175984,59.368,62.879 +175985,58.985,67.471 +175986,58.749,65.952 +175987,58.468,64.415 +175988,58.139,62.86 +175989,57.593,67.441 +175990,57.409,65.926 +175991,57.182,64.393 +175992,56.91,62.842 +175993,56.2,67.41 +175994,56.069,65.9 +175995,55.897,64.371 +175996,55.681,62.826 +175997,54.806,67.378 +175998,54.729,65.873 +175999,54.611,64.35 +176000,54.452,62.811 +176001,53.413,67.345 +176002,53.388,65.846 +176003,53.326,64.33 +176004,53.223,62.797 +176005,52.02,67.31 +176006,52.048,65.819 +176007,52.041,64.31 +176008,51.995,62.784 +176009,50.626,67.274 +176010,50.708,65.791 +176011,50.755,64.29 +176012,50.766,62.773 +176013,49.233,67.237 +176014,49.368,65.762 +176015,49.47,64.27 +176016,49.537,62.763 +176017,47.839,67.198 +176018,48.028,65.733 +176019,48.185,64.251 +176020,48.308,62.754 +176021,46.445,67.159 +176022,46.688,65.704 +176023,46.899,64.233 +176024,47.079,62.746 +176025,45.052,67.118 +176026,45.348,65.675 +176027,45.614,64.215 +176028,45.85,62.739 +176029,43.658,67.076 +176030,44.008,65.645 +176031,44.329,64.197 +176032,44.62,62.734 +176033,42.265,67.033 +176034,42.668,65.614 +176035,43.043,64.179 +176036,43.39,62.73 +176037,40.872,66.988 +176038,41.328,65.583 +176039,41.758,64.162 +176040,42.16,62.727 +176041,39.478,66.943 +176042,39.988,65.552 +176043,40.472,64.146 +176044,40.929,62.725 +176045,38.086,66.896 +176046,38.649,65.52 +176047,39.186,64.129 +176048,39.698,62.724 +176049,36.693,66.848 +176050,37.309,65.488 +176051,37.9,64.113 +176052,38.467,62.725 +176053,35.301,66.799 +176054,35.97,65.456 +176055,36.614,64.098 +176056,37.235,62.726 +176057,33.909,66.749 +176058,34.631,65.423 +176059,35.328,64.083 +176060,36.002,62.729 +176061,32.518,66.698 +176062,33.292,65.39 +176063,34.042,64.068 +176064,34.769,62.733 +176065,31.127,66.646 +176066,31.953,65.356 +176067,32.756,64.053 +176068,33.535,62.737 +176069,29.736,66.592 +176070,30.615,65.323 +176071,31.469,64.039 +176072,32.3,62.743 +176073,28.346,66.538 +176074,29.276,65.288 +176075,30.182,64.025 +176076,31.065,62.75 +176077,26.956,66.482 +176078,27.938,65.254 +176079,28.895,64.012 +176080,29.829,62.758 +176081,25.567,66.426 +176082,26.6,65.219 +176083,27.608,63.999 +176084,28.592,62.767 +176085,24.179,66.368 +176086,25.263,65.183 +176087,26.32,63.986 +176088,27.354,62.777 +176089,22.791,66.31 +176090,23.925,65.147 +176091,25.033,63.973 +176092,26.116,62.788 +176093,21.405,66.25 +176094,22.588,65.111 +176095,23.745,63.961 +176096,24.876,62.8 +176097,20.018,66.19 +176098,21.251,65.075 +176099,22.456,63.949 +176100,23.636,62.813 +176101,18.633,66.128 +176102,19.915,65.038 +176103,21.168,63.937 +176104,22.395,62.827 +176105,17.248,66.066 +176106,18.579,65.001 +176107,19.879,63.926 +176108,21.152,62.842 +176109,15.864,66.003 +176110,17.243,64.964 +176111,18.59,63.915 +176112,19.909,62.857 +176113,14.482,65.939 +176114,15.907,64.926 +176115,17.3,63.904 +176116,18.664,62.874 +176117,13.1,65.873 +176118,14.572,64.888 +176119,16.01,63.894 +176120,17.418,62.891 +176121,11.719,65.808 +176122,13.237,64.85 +176123,14.72,63.883 +176124,16.172,62.909 +176125,10.339,65.741 +176126,11.903,64.812 +176127,13.43,63.873 +176128,14.923,62.928 +176129,8.9597,65.673 +176130,10.569,64.773 +176131,12.139,63.864 +176132,13.674,62.948 +176133,7.5818,65.605 +176134,9.2351,64.734 +176135,10.847,63.854 +176136,12.424,62.968 +176137,6.2051,65.536 +176138,7.9019,64.694 +176139,9.5558,63.845 +176140,11.172,62.989 +176141,4.8294,65.466 +176142,6.5691,64.655 +176143,8.2638,63.836 +176144,9.9189,63.011 +176145,3.455,65.395 +176146,5.2367,64.615 +176147,6.9713,63.827 +176148,8.6645,63.033 +176149,2.0818,65.324 +176150,3.9047,64.575 +176151,5.6784,63.818 +176152,7.4087,63.057 +176153,0.70978,65.252 +176154,2.5733,64.535 +176155,4.3851,63.81 +176156,6.1515,63.08 +176157,359.34,65.18 +176158,1.2423,64.494 +176159,3.0913,63.802 +176160,4.893,63.105 +176161,357.97,65.106 +176162,359.91,64.453 +176163,1.7971,63.794 +176164,3.6329,63.129 +176165,356.6,65.032 +176166,358.58,64.412 +176167,0.50246,63.786 +176168,2.3715,63.155 +176169,355.24,64.958 +176170,357.25,64.371 +176171,359.21,63.778 +176172,1.1085,63.181 +176173,353.87,64.883 +176174,355.92,64.33 +176175,357.91,63.771 +176176,359.84,63.207 +176177,352.51,64.808 +176178,354.59,64.288 +176179,356.62,63.763 +176180,358.58,63.234 +176181,351.14,64.732 +176182,353.27,64.247 +176183,355.32,63.756 +176184,357.31,63.261 +176185,349.78,64.655 +176186,351.94,64.205 +176187,354.02,63.749 +176188,356.04,63.289 +176189,348.42,64.579 +176190,350.61,64.163 +176191,352.72,63.742 +176192,354.77,63.317 +176193,347.07,64.501 +176194,349.29,64.121 +176195,351.43,63.735 +176196,353.5,63.345 +176197,345.71,64.424 +176198,347.96,64.078 +176199,350.13,63.728 +176200,352.22,63.374 +176201,344.36,64.346 +176202,346.63,64.036 +176203,348.83,63.721 +176204,350.95,63.403 +176205,343,64.267 +176206,345.31,63.993 +176207,347.53,63.715 +176208,349.67,63.432 +176209,341.65,64.189 +176210,343.99,63.951 +176211,346.23,63.708 +176212,348.39,63.462 +176213,340.3,64.11 +176214,342.66,63.908 +176215,344.93,63.702 +176216,347.11,63.491 +176217,338.95,64.031 +176218,341.34,63.865 +176219,343.63,63.695 +176220,345.83,63.521 +176221,337.61,63.951 +176222,340.02,63.822 +176223,342.33,63.689 +176224,344.55,63.551 +176225,336.26,63.872 +176226,338.7,63.779 +176227,341.02,63.682 +176228,343.26,63.581 +176229,334.92,63.792 +176230,337.37,63.736 +176231,339.72,63.676 +176232,341.97,63.611 +176233,333.58,63.712 +176234,336.05,63.693 +176235,338.42,63.669 +176236,340.68,63.642 +176237,332.24,63.632 +176238,334.73,63.65 +176239,337.11,63.663 +176240,339.39,63.672 +176241,330.91,63.552 +176242,333.41,63.607 +176243,335.81,63.657 +176244,338.1,63.702 +176245,329.57,63.472 +176246,332.1,63.564 +176247,334.5,63.65 +176248,336.81,63.732 +176249,328.24,63.392 +176250,330.78,63.521 +176251,333.2,63.644 +176252,335.51,63.762 +176253,326.91,63.312 +176254,329.46,63.478 +176255,331.89,63.637 +176256,334.21,63.792 +176257,325.58,63.232 +176258,328.14,63.435 +176259,330.58,63.631 +176260,332.91,63.822 +176261,324.25,63.152 +176262,326.83,63.392 +176263,329.28,63.624 +176264,331.61,63.852 +176265,322.92,63.073 +176266,325.51,63.349 +176267,327.97,63.618 +176268,330.31,63.882 +176269,321.6,62.993 +176270,324.2,63.305 +176271,326.66,63.611 +176272,329.01,63.911 +176273,320.28,62.913 +176274,322.88,63.263 +176275,325.35,63.604 +176276,327.7,63.94 +176277,318.96,62.834 +176278,321.57,63.22 +176279,324.04,63.597 +176280,326.39,63.969 +176281,317.64,62.755 +176282,320.26,63.177 +176283,322.73,63.59 +176284,325.08,63.997 +176285,316.33,62.676 +176286,318.94,63.134 +176287,321.42,63.583 +176288,323.77,64.026 +176289,315.01,62.598 +176290,317.63,63.091 +176291,320.11,63.576 +176292,322.45,64.053 +176293,313.7,62.52 +176294,316.32,63.049 +176295,318.79,63.569 +176296,321.14,64.081 +176297,312.39,62.442 +176298,315.01,63.006 +176299,317.48,63.561 +176300,319.82,64.108 +176301,311.08,62.365 +176302,313.7,62.964 +176303,316.17,63.554 +176304,318.5,64.135 +176305,309.78,62.288 +176306,312.39,62.922 +176307,314.85,63.546 +176308,317.18,64.161 +176309,308.48,62.211 +176310,311.09,62.88 +176311,313.54,63.538 +176312,315.86,64.186 +176313,307.17,62.135 +176314,309.78,62.838 +176315,312.22,63.53 +176316,314.54,64.212 +176317,305.88,62.059 +176318,308.47,62.796 +176319,310.91,63.521 +176320,313.21,64.236 +176321,304.58,61.984 +176322,307.17,62.754 +176323,309.59,63.513 +176324,311.88,64.26 +176325,303.28,61.91 +176326,305.86,62.713 +176327,308.28,63.504 +176328,310.55,64.284 +176329,301.99,61.836 +176330,304.56,62.672 +176331,306.96,63.495 +176332,309.22,64.306 +176333,300.7,61.762 +176334,303.25,62.631 +176335,305.64,63.486 +176336,307.89,64.329 +176337,299.41,61.69 +176338,301.95,62.59 +176339,304.32,63.476 +176340,306.56,64.35 +176341,298.12,61.617 +176342,300.64,62.549 +176343,303,63.467 +176344,305.22,64.371 +176345,296.84,61.546 +176346,299.34,62.509 +176347,301.68,63.457 +176348,303.88,64.391 +176349,295.55,61.475 +176350,298.04,62.468 +176351,300.36,63.447 +176352,302.54,64.41 +176353,294.27,61.405 +176354,296.74,62.428 +176355,299.04,63.436 +176356,301.2,64.429 +176357,292.99,61.336 +176358,295.44,62.389 +176359,297.72,63.425 +176360,299.86,64.447 +176361,291.72,61.268 +176362,294.14,62.349 +176363,296.4,63.414 +176364,298.52,64.463 +176365,290.44,61.2 +176366,292.84,62.31 +176367,295.08,63.403 +176368,297.17,64.48 +176369,289.17,61.134 +176370,291.54,62.271 +176371,293.75,63.391 +176372,295.82,64.495 +176373,287.89,61.068 +176374,290.24,62.232 +176375,292.43,63.379 +176376,294.47,64.509 +176377,286.63,61.003 +176378,288.95,62.194 +176379,291.11,63.367 +176380,293.12,64.523 +176381,285.36,60.939 +176382,287.65,62.156 +176383,289.78,63.355 +176384,291.77,64.535 +176385,284.09,60.875 +176386,286.35,62.118 +176387,288.46,63.342 +176388,290.42,64.547 +176389,282.83,60.813 +176390,285.06,62.081 +176391,287.13,63.329 +176392,289.06,64.557 +176393,281.56,60.752 +176394,283.76,62.044 +176395,285.8,63.315 +176396,287.71,64.567 +176397,280.3,60.692 +176398,282.47,62.007 +176399,284.48,63.301 +176400,286.35,64.575 +176401,279.04,60.632 +176402,281.18,61.97 +176403,283.15,63.287 +176404,284.99,64.583 +176405,277.79,60.574 +176406,279.88,61.934 +176407,281.82,63.272 +176408,283.63,64.59 +176409,276.53,60.517 +176410,278.59,61.898 +176411,280.5,63.257 +176412,282.27,64.595 +176413,275.28,60.461 +176414,277.3,61.863 +176415,279.17,63.242 +176416,280.91,64.599 +176417,274.02,60.406 +176418,276.01,61.827 +176419,277.84,63.226 +176420,279.54,64.603 +176421,272.77,60.352 +176422,274.71,61.793 +176423,276.51,63.21 +176424,278.18,64.605 +176425,271.52,60.299 +176426,273.42,61.758 +176427,275.18,63.194 +176428,276.81,64.606 +176429,270.28,60.248 +176430,272.13,61.724 +176431,273.85,63.177 +176432,275.44,64.606 +176433,269.03,60.197 +176434,270.84,61.69 +176435,272.52,63.159 +176436,274.07,64.605 +176437,267.78,60.148 +176438,269.56,61.657 +176439,271.19,63.142 +176440,272.7,64.602 +176441,266.54,60.1 +176442,268.27,61.624 +176443,269.86,63.124 +176444,271.33,64.599 +176445,265.3,60.053 +176446,266.98,61.591 +176447,268.53,63.105 +176448,269.96,64.594 +176449,264.06,60.007 +176450,265.69,61.559 +176451,267.19,63.086 +176452,268.58,64.588 +176453,262.82,59.963 +176454,264.4,61.527 +176455,265.86,63.067 +176456,267.21,64.581 +176457,261.58,59.92 +176458,263.12,61.496 +176459,264.53,63.047 +176460,265.83,64.573 +176461,260.34,59.878 +176462,261.83,61.465 +176463,263.2,63.027 +176464,264.46,64.563 +176465,259.11,59.837 +176466,260.54,61.434 +176467,261.86,63.006 +176468,263.08,64.552 +176469,257.87,59.797 +176470,259.26,61.404 +176471,260.53,62.985 +176472,261.7,64.54 +176473,256.64,59.759 +176474,257.97,61.374 +176475,259.19,62.964 +176476,260.32,64.527 +176477,255.4,59.722 +176478,256.69,61.345 +176479,257.86,62.942 +176480,258.94,64.512 +176481,254.17,59.687 +176482,255.4,61.316 +176483,256.53,62.919 +176484,257.56,64.497 +176485,252.94,59.652 +176486,254.12,61.288 +176487,255.19,62.897 +176488,256.18,64.479 +176489,251.71,59.619 +176490,252.83,61.259 +176491,253.86,62.873 +176492,254.79,64.461 +176493,250.48,59.588 +176494,251.55,61.232 +176495,252.52,62.85 +176496,253.41,64.441 +176497,249.25,59.557 +176498,250.27,61.204 +176499,251.19,62.825 +176500,252.02,64.42 +176501,248.03,59.528 +176502,248.98,61.178 +176503,249.85,62.801 +176504,250.64,64.398 +176505,246.8,59.5 +176506,247.7,61.151 +176507,248.51,62.776 +176508,249.25,64.374 +176509,245.57,59.474 +176510,246.42,61.125 +176511,247.18,62.75 +176512,247.87,64.349 +176513,244.35,59.449 +176514,245.13,61.1 +176515,245.84,62.724 +176516,246.48,64.323 +176517,243.12,59.425 +176518,243.85,61.074 +176519,244.51,62.698 +176520,245.09,64.296 +176521,241.9,59.403 +176522,242.57,61.05 +176523,243.17,62.671 +176524,243.7,64.267 +176525,240.67,59.381 +176526,241.29,61.025 +176527,241.83,62.644 +176528,242.32,64.237 +176529,239.45,59.362 +176530,240.01,61.001 +176531,240.5,62.616 +176532,240.93,64.205 +176533,238.23,59.343 +176534,238.72,60.978 +176535,239.16,62.588 +176536,239.54,64.173 +176537,237,59.326 +176538,237.44,60.955 +176539,237.82,62.559 +176540,238.15,64.139 +176541,235.78,59.31 +176542,236.16,60.932 +176543,236.48,62.53 +176544,236.76,64.103 +176545,234.56,59.295 +176546,234.88,60.91 +176547,235.15,62.501 +176548,235.37,64.067 +176549,233.34,59.282 +176550,233.6,60.888 +176551,233.81,62.471 +176552,233.97,64.029 +176553,232.11,59.27 +176554,232.32,60.867 +176555,232.47,62.44 +176556,232.58,63.989 +176557,230.89,59.259 +176558,231.04,60.846 +176559,231.14,62.409 +176560,231.19,63.949 +176561,229.67,59.25 +176562,229.76,60.825 +176563,229.8,62.378 +176564,229.8,63.907 +176565,228.45,59.242 +176566,228.48,60.805 +176567,228.46,62.346 +176568,228.41,63.864 +176569,227.23,59.235 +176570,227.19,60.785 +176571,227.12,62.314 +176572,227.02,63.82 +176573,226,59.229 +176574,225.91,60.766 +176575,225.79,62.281 +176576,225.63,63.774 +176577,224.78,59.225 +176578,224.63,60.747 +176579,224.45,62.248 +176580,224.23,63.728 +176581,223.56,59.222 +176582,223.35,60.729 +176583,223.11,62.215 +176584,222.84,63.68 +176585,222.34,59.22 +176586,222.07,60.711 +176587,221.78,62.181 +176588,221.45,63.63 +176589,221.11,59.219 +176590,220.79,60.693 +176591,220.44,62.147 +176592,220.06,63.58 +176593,219.89,59.219 +176594,219.51,60.675 +176595,219.1,62.112 +176596,218.67,63.528 +176597,218.67,59.221 +176598,218.23,60.658 +176599,217.76,62.077 +176600,217.28,63.475 +176601,217.44,59.224 +176602,216.95,60.642 +176603,216.43,62.041 +176604,215.88,63.421 +176605,216.22,59.227 +176606,215.67,60.626 +176607,215.09,62.005 +176608,214.49,63.366 +176609,214.99,59.232 +176610,214.38,60.61 +176611,213.75,61.969 +176612,213.1,63.31 +176613,213.77,59.239 +176614,213.1,60.594 +176615,212.42,61.932 +176616,211.71,63.252 +176617,212.54,59.246 +176618,211.82,60.579 +176619,211.08,61.895 +176620,210.32,63.194 +176621,211.31,59.254 +176622,210.54,60.564 +176623,209.75,61.858 +176624,208.93,63.134 +176625,210.09,59.264 +176626,209.26,60.55 +176627,208.41,61.82 +176628,207.54,63.073 +176629,208.86,59.274 +176630,207.98,60.536 +176631,207.08,61.782 +176632,206.16,63.011 +176633,207.63,59.285 +176634,206.69,60.522 +176635,205.74,61.743 +176636,204.77,62.948 +176637,206.4,59.298 +176638,205.41,60.508 +176639,204.41,61.704 +176640,203.38,62.884 +176641,205.17,59.311 +176642,204.13,60.495 +176643,203.07,61.665 +176644,201.99,62.819 +176645,203.93,59.326 +176646,202.84,60.482 +176647,201.74,61.625 +176648,200.61,62.753 +176649,202.7,59.341 +176650,201.56,60.47 +176651,200.4,61.585 +176652,199.22,62.686 +176653,201.47,59.357 +176654,200.28,60.457 +176655,199.07,61.545 +176656,197.84,62.618 +176657,200.23,59.374 +176658,198.99,60.445 +176659,197.73,61.504 +176660,196.45,62.549 +176661,199,59.392 +176662,197.71,60.434 +176663,196.4,61.463 +176664,195.07,62.479 +176665,197.76,59.411 +176666,196.43,60.422 +176667,195.07,61.422 +176668,193.69,62.409 +176669,196.52,59.431 +176670,195.14,60.411 +176671,193.74,61.381 +176672,192.31,62.337 +176673,195.28,59.451 +176674,193.86,60.4 +176675,192.4,61.339 +176676,190.93,62.265 +176677,194.04,59.472 +176678,192.57,60.39 +176679,191.07,61.297 +176680,189.55,62.191 +176681,192.8,59.494 +176682,191.28,60.379 +176683,189.74,61.254 +176684,188.17,62.117 +176685,191.56,59.517 +176686,190,60.369 +176687,188.41,61.211 +176688,186.79,62.042 +176689,190.31,59.54 +176690,188.71,60.359 +176691,187.08,61.169 +176692,185.41,61.967 +176693,189.07,59.564 +176694,187.42,60.35 +176695,185.75,61.125 +176696,184.04,61.89 +176697,187.82,59.589 +176698,186.14,60.34 +176699,184.42,61.082 +176700,182.66,61.813 +176701,186.57,59.614 +176702,184.85,60.331 +176703,183.09,61.038 +176704,181.29,61.735 +176705,185.32,59.64 +176706,183.56,60.322 +176707,181.76,60.994 +176708,179.92,61.657 +176709,184.07,59.667 +176710,182.27,60.313 +176711,180.43,60.95 +176712,178.55,61.578 +176713,182.82,59.694 +176714,180.98,60.304 +176715,179.1,60.906 +176716,177.18,61.498 +176717,181.57,59.721 +176718,179.69,60.295 +176719,177.78,60.861 +176720,175.81,61.418 +176721,180.31,59.749 +176722,178.4,60.287 +176723,176.45,60.817 +176724,174.44,61.337 +176725,179.05,59.777 +176726,177.11,60.278 +176727,175.12,60.772 +176728,173.08,61.255 +176729,177.79,59.806 +176730,175.82,60.27 +176731,173.8,60.727 +176732,171.71,61.174 +176733,176.53,59.835 +176734,174.53,60.262 +176735,172.47,60.682 +176736,170.35,61.091 +176737,175.27,59.865 +176738,173.24,60.254 +176739,171.15,60.636 +176740,168.99,61.008 +176741,174.01,59.894 +176742,171.95,60.246 +176743,169.82,60.591 +176744,167.63,60.925 +176745,172.74,59.925 +176746,170.65,60.239 +176747,168.5,60.545 +176748,166.27,60.842 +176749,171.48,59.955 +176750,169.36,60.231 +176751,167.18,60.499 +176752,164.91,60.758 +176753,170.21,59.985 +176754,168.07,60.223 +176755,165.85,60.453 +176756,163.56,60.674 +176757,168.94,60.016 +176758,166.77,60.216 +176759,164.53,60.407 +176760,162.21,60.589 +176761,167.67,60.047 +176762,165.48,60.208 +176763,163.21,60.361 +176764,160.85,60.504 +176765,166.39,60.078 +176766,164.18,60.201 +176767,161.89,60.315 +176768,159.5,60.419 +176769,165.12,60.109 +176770,162.89,60.193 +176771,160.57,60.269 +176772,158.16,60.334 +176773,163.84,60.141 +176774,161.59,60.186 +176775,159.25,60.223 +176776,156.81,60.249 +176777,162.56,60.172 +176778,160.29,60.179 +176779,157.93,60.176 +176780,155.47,60.163 +176781,161.28,60.203 +176782,158.99,60.171 +176783,156.61,60.13 +176784,154.12,60.078 +176785,160,60.235 +176786,157.7,60.164 +176787,155.29,60.084 +176788,152.78,59.992 +176789,158.72,60.266 +176790,156.4,60.157 +176791,153.98,60.037 +176792,151.44,59.906 +176793,157.43,60.297 +176794,155.1,60.149 +176795,152.66,59.991 +176796,150.1,59.82 +176797,156.14,60.328 +176798,153.8,60.142 +176799,151.35,59.944 +176800,148.77,59.735 +176801,154.86,60.359 +176802,152.5,60.134 +176803,150.03,59.898 +176804,147.44,59.649 +176805,153.56,60.39 +176806,151.2,60.127 +176807,148.72,59.852 +176808,146.1,59.563 +176809,152.27,60.42 +176810,149.9,60.119 +176811,147.4,59.805 +176812,144.77,59.478 +176813,150.98,60.451 +176814,148.59,60.111 +176815,146.09,59.759 +176816,143.45,59.393 +176817,149.68,60.481 +176818,147.29,60.103 +176819,144.78,59.713 +176820,142.12,59.308 +176821,148.38,60.511 +176822,145.99,60.095 +176823,143.47,59.667 +176824,140.8,59.223 +176825,147.08,60.54 +176826,144.68,60.087 +176827,142.15,59.621 +176828,139.48,59.138 +176829,145.78,60.569 +176830,143.38,60.079 +176831,140.84,59.575 +176832,138.16,59.054 +176833,144.48,60.598 +176834,142.07,60.071 +176835,139.53,59.529 +176836,136.84,58.97 +176837,143.17,60.626 +176838,140.77,60.062 +176839,138.22,59.483 +176840,135.52,58.886 +176841,141.87,60.654 +176842,139.46,60.054 +176843,136.92,59.437 +176844,134.21,58.802 +176845,140.56,60.682 +176846,138.15,60.045 +176847,135.61,59.392 +176848,132.9,58.719 +176849,139.25,60.709 +176850,136.85,60.036 +176851,134.3,59.346 +176852,131.59,58.637 +176853,137.93,60.735 +176854,135.54,60.027 +176855,133,59.301 +176856,130.28,58.555 +176857,136.62,60.761 +176858,134.23,60.018 +176859,131.69,59.256 +176860,128.98,58.473 +176861,135.3,60.786 +176862,132.92,60.008 +176863,130.39,59.211 +176864,127.67,58.392 +176865,133.99,60.811 +176866,131.61,59.999 +176867,129.08,59.166 +176868,126.37,58.312 +176869,132.67,60.835 +176870,130.3,59.989 +176871,127.78,59.122 +176872,125.07,58.232 +176873,131.34,60.858 +176874,128.99,59.978 +176875,126.48,59.077 +176876,123.78,58.153 +176877,130.02,60.881 +176878,127.68,59.968 +176879,125.17,59.033 +176880,122.48,58.074 +176881,128.7,60.903 +176882,126.36,59.957 +176883,123.87,58.989 +176884,121.19,57.996 +176885,127.37,60.924 +176886,125.05,59.946 +176887,122.57,58.946 +176888,119.9,57.919 +176889,126.04,60.944 +176890,123.74,59.935 +176891,121.27,58.902 +176892,118.61,57.843 +176893,124.71,60.964 +176894,122.42,59.924 +176895,119.97,58.859 +176896,117.33,57.767 +176897,123.38,60.983 +176898,121.11,59.912 +176899,118.67,58.816 +176900,116.04,57.692 +176901,122.05,61.001 +176902,119.79,59.9 +176903,117.38,58.773 +176904,114.76,57.618 +176905,120.71,61.018 +176906,118.48,59.888 +176907,116.08,58.731 +176908,113.48,57.545 +176909,119.38,61.034 +176910,117.16,59.875 +176911,114.78,58.689 +176912,112.2,57.472 +176913,118.04,61.05 +176914,115.84,59.862 +176915,113.49,58.647 +176916,110.93,57.401 +176917,116.7,61.064 +176918,114.53,59.849 +176919,112.19,58.605 +176920,109.66,57.33 +176921,115.36,61.078 +176922,113.21,59.835 +176923,110.9,58.564 +176924,108.38,57.26 +176925,114.01,61.09 +176926,111.89,59.822 +176927,109.6,58.523 +176928,107.11,57.192 +176929,112.67,61.101 +176930,110.57,59.807 +176931,108.31,58.482 +176932,105.85,57.124 +176933,111.32,61.112 +176934,109.25,59.793 +176935,107.02,58.442 +176936,104.58,57.058 +176937,109.98,61.121 +176938,107.93,59.778 +176939,105.72,58.402 +176940,103.32,56.992 +176941,108.63,61.13 +176942,106.61,59.762 +176943,104.43,58.362 +176944,102.06,56.928 +176945,107.28,61.137 +176946,105.29,59.747 +176947,103.14,58.323 +176948,100.8,56.864 +176949,105.92,61.143 +176950,103.97,59.73 +176951,101.85,58.284 +176952,99.539,56.802 +176953,104.57,61.148 +176954,102.65,59.714 +176955,100.56,58.246 +176956,98.283,56.741 +176957,103.22,61.152 +176958,101.33,59.697 +176959,99.273,58.207 +176960,97.029,56.681 +176961,101.86,61.155 +176962,100,59.68 +176963,97.984,58.17 +176964,95.776,56.622 +176965,100.5,61.157 +176966,98.679,59.662 +176967,96.696,58.132 +176968,94.526,56.564 +176969,99.145,61.157 +176970,97.355,59.644 +176971,95.409,58.095 +176972,93.277,56.508 +176973,97.785,61.156 +176974,96.031,59.625 +176975,94.122,58.058 +176976,92.03,56.453 +176977,96.423,61.154 +176978,94.706,59.607 +176979,92.836,58.022 +176980,90.785,56.399 +176981,95.061,61.151 +176982,93.381,59.587 +176983,91.551,57.986 +176984,89.541,56.346 +176985,93.697,61.147 +176986,92.056,59.567 +176987,90.266,57.951 +176988,88.299,56.294 +176989,92.332,61.141 +176990,90.73,59.547 +176991,88.981,57.916 +176992,87.059,56.244 +176993,90.966,61.134 +176994,89.403,59.527 +176995,87.697,57.881 +176996,85.82,56.196 +176997,89.598,61.126 +176998,88.077,59.505 +176999,86.413,57.847 +177000,84.582,56.148 +177001,88.23,61.116 +177002,86.75,59.484 +177003,85.13,57.813 +177004,83.346,56.102 +177005,86.86,61.105 +177006,85.422,59.462 +177007,83.848,57.78 +177008,82.112,56.057 +177009,85.489,61.093 +177010,84.094,59.439 +177011,82.566,57.747 +177012,80.879,56.014 +177013,84.118,61.08 +177014,82.766,59.417 +177015,81.284,57.714 +177016,79.647,55.971 +177017,82.745,61.065 +177018,81.438,59.393 +177019,80.003,57.682 +177020,78.417,55.931 +177021,81.371,61.049 +177022,80.109,59.369 +177023,78.722,57.651 +177024,77.187,55.891 +177025,79.997,61.031 +177026,78.78,59.345 +177027,77.441,57.62 +177028,75.959,55.853 +177029,78.621,61.012 +177030,77.451,59.32 +177031,76.161,57.589 +177032,74.733,55.817 +177033,77.245,60.992 +177034,76.121,59.295 +177035,74.882,57.559 +177036,73.507,55.782 +177037,75.867,60.971 +177038,74.791,59.269 +177039,73.602,57.529 +177040,72.282,55.748 +177041,74.489,60.948 +177042,73.461,59.243 +177043,72.323,57.5 +177044,71.059,55.716 +177045,73.11,60.923 +177046,72.13,59.216 +177047,71.045,57.471 +177048,69.836,55.685 +177049,71.73,60.898 +177050,70.8,59.189 +177051,69.767,57.442 +177052,68.614,55.655 +177053,70.35,60.871 +177054,69.469,59.162 +177055,68.489,57.414 +177056,67.394,55.627 +177057,68.969,60.842 +177058,68.138,59.134 +177059,67.211,57.387 +177060,66.174,55.601 +177061,67.587,60.812 +177062,66.806,59.105 +177063,65.934,57.36 +177064,64.955,55.575 +177065,66.204,60.781 +177066,65.475,59.076 +177067,64.657,57.333 +177068,63.736,55.552 +177069,64.821,60.749 +177070,64.143,59.047 +177071,63.38,57.307 +177072,62.518,55.529 +177073,63.438,60.715 +177074,62.812,59.017 +177075,62.104,57.282 +177076,61.301,55.508 +177077,62.054,60.679 +177078,61.48,58.986 +177079,60.827,57.256 +177080,60.085,55.489 +177081,60.669,60.643 +177082,60.147,58.955 +177083,59.551,57.232 +177084,58.869,55.471 +177085,59.284,60.605 +177086,58.815,58.924 +177087,58.275,57.207 +177088,57.653,55.454 +177089,57.898,60.565 +177090,57.483,58.892 +177091,57,57.183 +177092,56.438,55.439 +177093,56.512,60.524 +177094,56.151,58.86 +177095,55.724,57.16 +177096,55.224,55.425 +177097,55.126,60.482 +177098,54.818,58.827 +177099,54.449,57.137 +177100,54.009,55.412 +177101,53.739,60.438 +177102,53.485,58.793 +177103,53.173,57.115 +177104,52.795,55.401 +177105,52.352,60.393 +177106,52.153,58.76 +177107,51.898,57.092 +177108,51.581,55.391 +177109,50.965,60.347 +177110,50.82,58.725 +177111,50.623,57.071 +177112,50.368,55.383 +177113,49.578,60.299 +177114,49.488,58.691 +177115,49.348,57.05 +177116,49.154,55.376 +177117,48.19,60.25 +177118,48.155,58.656 +177119,48.073,57.029 +177120,47.941,55.37 +177121,46.802,60.2 +177122,46.822,58.62 +177123,46.799,57.009 +177124,46.727,55.366 +177125,45.415,60.149 +177126,45.49,58.584 +177127,45.524,56.989 +177128,45.513,55.363 +177129,44.027,60.096 +177130,44.157,58.547 +177131,44.249,56.969 +177132,44.3,55.361 +177133,42.639,60.041 +177134,42.824,58.51 +177135,42.975,56.95 +177136,43.086,55.361 +177137,41.251,59.986 +177138,41.492,58.473 +177139,41.7,56.932 +177140,41.872,55.362 +177141,39.863,59.929 +177142,40.159,58.435 +177143,40.425,56.914 +177144,40.658,55.364 +177145,38.475,59.871 +177146,38.827,58.397 +177147,39.151,56.896 +177148,39.443,55.367 +177149,37.088,59.812 +177150,37.495,58.358 +177151,37.876,56.878 +177152,38.228,55.372 +177153,35.7,59.751 +177154,36.163,58.319 +177155,36.601,56.861 +177156,37.013,55.378 +177157,34.313,59.689 +177158,34.831,58.28 +177159,35.326,56.845 +177160,35.798,55.385 +177161,32.926,59.627 +177162,33.499,58.24 +177163,34.051,56.829 +177164,34.581,55.393 +177165,31.539,59.562 +177166,32.167,58.2 +177167,32.776,56.813 +177168,33.365,55.403 +177169,30.152,59.497 +177170,30.836,58.159 +177171,31.501,56.797 +177172,32.147,55.413 +177173,28.766,59.431 +177174,29.504,58.118 +177175,30.225,56.782 +177176,30.93,55.425 +177177,27.381,59.363 +177178,28.173,58.076 +177179,28.95,56.768 +177180,29.711,55.438 +177181,25.995,59.294 +177182,26.842,58.034 +177183,27.674,56.753 +177184,28.492,55.452 +177185,24.61,59.224 +177186,25.511,57.992 +177187,26.398,56.739 +177188,27.272,55.466 +177189,23.226,59.153 +177190,24.181,57.95 +177191,25.122,56.725 +177192,26.051,55.482 +177193,21.842,59.081 +177194,22.851,57.907 +177195,23.846,56.712 +177196,24.829,55.499 +177197,20.459,59.008 +177198,21.521,57.863 +177199,22.57,56.699 +177200,23.606,55.517 +177201,19.076,58.934 +177202,20.191,57.82 +177203,21.293,56.686 +177204,22.383,55.536 +177205,17.694,58.859 +177206,18.862,57.776 +177207,20.016,56.674 +177208,21.158,55.556 +177209,16.313,58.783 +177210,17.533,57.731 +177211,18.739,56.662 +177212,19.933,55.577 +177213,14.933,58.706 +177214,16.204,57.687 +177215,17.461,56.65 +177216,18.706,55.598 +177217,13.553,58.629 +177218,14.876,57.642 +177219,16.184,56.638 +177220,17.479,55.621 +177221,12.174,58.55 +177222,13.548,57.596 +177223,14.906,56.627 +177224,16.25,55.644 +177225,10.796,58.47 +177226,12.22,57.551 +177227,13.627,56.616 +177228,15.02,55.668 +177229,9.4187,58.389 +177230,10.893,57.505 +177231,12.349,56.605 +177232,13.789,55.693 +177233,8.0425,58.308 +177234,9.5657,57.459 +177235,11.07,56.595 +177236,12.556,55.718 +177237,6.6672,58.226 +177238,8.2392,57.412 +177239,9.7903,56.585 +177240,11.323,55.745 +177241,5.2929,58.143 +177242,6.9131,57.366 +177243,8.5106,56.575 +177244,10.088,55.772 +177245,3.9196,58.059 +177246,5.5874,57.319 +177247,7.2305,56.565 +177248,8.8515,55.799 +177249,2.5474,57.975 +177250,4.2622,57.272 +177251,5.95,56.555 +177252,7.6138,55.828 +177253,1.1764,57.89 +177254,2.9374,57.224 +177255,4.6691,56.546 +177256,6.3748,55.856 +177257,359.81,57.804 +177258,1.6131,57.177 +177259,3.3879,56.537 +177260,5.1343,55.886 +177261,358.44,57.717 +177262,0.28926,57.129 +177263,2.1062,56.528 +177264,3.8924,55.916 +177265,357.07,57.63 +177266,358.97,57.081 +177267,0.82411,56.519 +177268,2.649,55.946 +177269,355.7,57.543 +177270,357.64,57.033 +177271,359.54,56.51 +177272,1.4042,55.977 +177273,354.34,57.455 +177274,356.32,56.984 +177275,358.26,56.502 +177276,0.15776,56.009 +177277,352.98,57.366 +177278,355,56.936 +177279,356.98,56.493 +177280,358.91,56.04 +177281,351.61,57.277 +177282,353.68,56.887 +177283,355.69,56.485 +177284,357.66,56.073 +177285,350.25,57.187 +177286,352.36,56.838 +177287,354.41,56.477 +177288,356.41,56.105 +177289,348.89,57.097 +177290,351.04,56.789 +177291,353.12,56.469 +177292,355.16,56.138 +177293,347.54,57.007 +177294,349.72,56.74 +177295,351.84,56.461 +177296,353.9,56.171 +177297,346.18,56.916 +177298,348.4,56.691 +177299,350.55,56.453 +177300,352.65,56.204 +177301,344.82,56.825 +177302,347.08,56.642 +177303,349.26,56.445 +177304,351.39,56.238 +177305,343.47,56.733 +177306,345.76,56.592 +177307,347.98,56.438 +177308,350.13,56.272 +177309,342.12,56.642 +177310,344.44,56.543 +177311,346.69,56.43 +177312,348.87,56.306 +177313,340.77,56.55 +177314,343.13,56.493 +177315,345.4,56.422 +177316,347.61,56.34 +177317,339.42,56.457 +177318,341.81,56.443 +177319,344.11,56.415 +177320,346.34,56.374 +177321,338.07,56.365 +177322,340.5,56.394 +177323,342.83,56.407 +177324,345.07,56.408 +177325,336.73,56.273 +177326,339.18,56.344 +177327,341.54,56.4 +177328,343.81,56.442 +177329,335.39,56.18 +177330,337.87,56.294 +177331,340.25,56.392 +177332,342.54,56.476 +177333,334.05,56.088 +177334,336.55,56.244 +177335,338.96,56.385 +177336,341.26,56.511 +177337,332.71,55.995 +177338,335.24,56.195 +177339,337.66,56.377 +177340,339.99,56.545 +177341,331.37,55.902 +177342,333.93,56.145 +177343,336.37,56.369 +177344,338.72,56.579 +177345,330.03,55.81 +177346,332.62,56.095 +177347,335.08,56.362 +177348,337.44,56.612 +177349,328.7,55.717 +177350,331.31,56.045 +177351,333.79,56.354 +177352,336.16,56.646 +177353,327.37,55.625 +177354,330,55.996 +177355,332.49,56.346 +177356,334.88,56.679 +177357,326.04,55.533 +177358,328.69,55.946 +177359,331.2,56.338 +177360,333.6,56.713 +177361,324.71,55.441 +177362,327.38,55.896 +177363,329.91,56.33 +177364,332.31,56.746 +177365,323.38,55.349 +177366,326.07,55.847 +177367,328.61,56.322 +177368,331.03,56.778 +177369,322.06,55.257 +177370,324.76,55.797 +177371,327.31,56.314 +177372,329.74,56.81 +177373,320.74,55.166 +177374,323.45,55.748 +177375,326.02,56.306 +177376,328.45,56.842 +177377,319.42,55.075 +177378,322.15,55.699 +177379,324.72,56.297 +177380,327.16,56.874 +177381,318.1,54.984 +177382,320.84,55.65 +177383,323.42,56.289 +177384,325.86,56.905 +177385,316.78,54.894 +177386,319.54,55.601 +177387,322.13,56.28 +177388,324.57,56.936 +177389,315.47,54.804 +177390,318.23,55.552 +177391,320.83,56.271 +177392,323.27,56.966 +177393,314.16,54.715 +177394,316.93,55.503 +177395,319.53,56.262 +177396,321.97,56.995 +177397,312.85,54.626 +177398,315.63,55.455 +177399,318.23,56.253 +177400,320.67,57.024 +177401,311.54,54.538 +177402,314.33,55.407 +177403,316.93,56.244 +177404,319.37,57.053 +177405,310.24,54.45 +177406,313.03,55.358 +177407,315.63,56.234 +177408,318.07,57.081 +177409,308.93,54.363 +177410,311.73,55.31 +177411,314.32,56.224 +177412,316.76,57.108 +177413,307.63,54.277 +177414,310.43,55.263 +177415,313.02,56.214 +177416,315.45,57.135 +177417,306.33,54.191 +177418,309.13,55.215 +177419,311.72,56.204 +177420,314.14,57.16 +177421,305.04,54.106 +177422,307.83,55.168 +177423,310.42,56.193 +177424,312.83,57.185 +177425,303.74,54.021 +177426,306.53,55.121 +177427,309.11,56.182 +177428,311.52,57.21 +177429,302.45,53.937 +177430,305.24,55.074 +177431,307.81,56.171 +177432,310.2,57.233 +177433,301.16,53.855 +177434,303.94,55.028 +177435,306.5,56.16 +177436,308.88,57.256 +177437,299.88,53.773 +177438,302.65,54.981 +177439,305.2,56.148 +177440,307.57,57.278 +177441,298.59,53.691 +177442,301.35,54.935 +177443,303.89,56.136 +177444,306.25,57.299 +177445,297.31,53.611 +177446,300.06,54.89 +177447,302.58,56.124 +177448,304.92,57.319 +177449,296.03,53.532 +177450,298.76,54.844 +177451,301.28,56.112 +177452,303.6,57.339 +177453,294.75,53.453 +177454,297.47,54.799 +177455,299.97,56.099 +177456,302.28,57.357 +177457,293.47,53.376 +177458,296.18,54.754 +177459,298.66,56.085 +177460,300.95,57.375 +177461,292.2,53.299 +177462,294.89,54.71 +177463,297.35,56.072 +177464,299.62,57.391 +177465,290.93,53.224 +177466,293.6,54.666 +177467,296.04,56.058 +177468,298.29,57.406 +177469,289.66,53.149 +177470,292.31,54.622 +177471,294.73,56.044 +177472,296.96,57.421 +177473,288.39,53.076 +177474,291.02,54.578 +177475,293.42,56.029 +177476,295.62,57.434 +177477,287.12,53.004 +177478,289.73,54.535 +177479,292.11,56.014 +177480,294.29,57.446 +177481,285.86,52.933 +177482,288.45,54.493 +177483,290.8,55.999 +177484,292.95,57.457 +177485,284.6,52.863 +177486,287.16,54.45 +177487,289.48,55.983 +177488,291.61,57.467 +177489,283.34,52.795 +177490,285.87,54.409 +177491,288.17,55.967 +177492,290.27,57.476 +177493,282.08,52.727 +177494,284.59,54.367 +177495,286.86,55.951 +177496,288.93,57.484 +177497,280.83,52.661 +177498,283.3,54.326 +177499,285.54,55.934 +177500,287.59,57.49 +177501,279.57,52.596 +177502,282.02,54.285 +177503,284.23,55.916 +177504,286.25,57.496 +177505,278.32,52.532 +177506,280.74,54.245 +177507,282.91,55.899 +177508,284.9,57.5 +177509,277.07,52.47 +177510,279.45,54.205 +177511,281.6,55.881 +177512,283.55,57.503 +177513,275.83,52.409 +177514,278.17,54.165 +177515,280.28,55.862 +177516,282.21,57.504 +177517,274.58,52.349 +177518,276.89,54.126 +177519,278.97,55.843 +177520,280.86,57.505 +177521,273.34,52.291 +177522,275.61,54.088 +177523,277.65,55.823 +177524,279.5,57.504 +177525,272.1,52.234 +177526,274.33,54.05 +177527,276.33,55.804 +177528,278.15,57.502 +177529,270.86,52.179 +177530,273.05,54.012 +177531,275.02,55.783 +177532,276.8,57.498 +177533,269.62,52.125 +177534,271.77,53.975 +177535,273.7,55.762 +177536,275.44,57.493 +177537,268.38,52.072 +177538,270.49,53.938 +177539,272.38,55.741 +177540,274.09,57.487 +177541,267.15,52.021 +177542,269.21,53.902 +177543,271.06,55.719 +177544,272.73,57.479 +177545,265.92,51.971 +177546,267.94,53.866 +177547,269.74,55.697 +177548,271.37,57.47 +177549,264.69,51.923 +177550,266.66,53.831 +177551,268.42,55.674 +177552,270.01,57.46 +177553,263.46,51.876 +177554,265.38,53.796 +177555,267.1,55.651 +177556,268.65,57.448 +177557,262.23,51.831 +177558,264.11,53.761 +177559,265.78,55.627 +177560,267.29,57.435 +177561,261,51.787 +177562,262.83,53.728 +177563,264.46,55.603 +177564,265.93,57.42 +177565,259.78,51.745 +177566,261.56,53.694 +177567,263.14,55.579 +177568,264.56,57.405 +177569,258.56,51.704 +177570,260.28,53.661 +177571,261.82,55.554 +177572,263.2,57.387 +177573,257.34,51.665 +177574,259.01,53.629 +177575,260.5,55.528 +177576,261.83,57.368 +177577,256.12,51.628 +177578,257.74,53.597 +177579,259.18,55.502 +177580,260.46,57.348 +177581,254.9,51.592 +177582,256.46,53.566 +177583,257.85,55.475 +177584,259.09,57.326 +177585,253.68,51.557 +177586,255.19,53.535 +177587,256.53,55.448 +177588,257.73,57.303 +177589,252.46,51.525 +177590,253.92,53.504 +177591,255.21,55.42 +177592,256.36,57.278 +177593,251.25,51.493 +177594,252.65,53.475 +177595,253.89,55.392 +177596,254.99,57.252 +177597,250.03,51.464 +177598,251.38,53.445 +177599,252.56,55.364 +177600,253.61,57.225 +177601,248.82,51.436 +177602,250.11,53.416 +177603,251.24,55.335 +177604,252.24,57.196 +177605,247.61,51.409 +177606,248.84,53.388 +177607,249.91,55.305 +177608,250.87,57.165 +177609,246.4,51.384 +177610,247.57,53.36 +177611,248.59,55.275 +177612,249.49,57.133 +177613,245.19,51.361 +177614,246.3,53.333 +177615,247.27,55.244 +177616,248.12,57.099 +177617,243.98,51.339 +177618,245.03,53.306 +177619,245.94,55.213 +177620,246.74,57.064 +177621,242.77,51.319 +177622,243.76,53.28 +177623,244.62,55.181 +177624,245.37,57.028 +177625,241.56,51.3 +177626,242.49,53.254 +177627,243.29,55.149 +177628,243.99,56.99 +177629,240.36,51.283 +177630,241.22,53.229 +177631,241.97,55.116 +177632,242.62,56.951 +177633,239.15,51.268 +177634,239.95,53.204 +177635,240.64,55.083 +177636,241.24,56.91 +177637,237.94,51.254 +177638,238.68,53.18 +177639,239.32,55.05 +177640,239.86,56.867 +177641,236.74,51.241 +177642,237.42,53.156 +177643,237.99,55.015 +177644,238.48,56.823 +177645,235.53,51.231 +177646,236.15,53.133 +177647,236.67,54.981 +177648,237.1,56.778 +177649,234.33,51.221 +177650,234.88,53.11 +177651,235.34,54.946 +177652,235.72,56.731 +177653,233.12,51.213 +177654,233.61,53.088 +177655,234.02,54.91 +177656,234.35,56.683 +177657,231.92,51.207 +177658,232.35,53.066 +177659,232.69,54.874 +177660,232.97,56.633 +177661,230.72,51.202 +177662,231.08,53.045 +177663,231.37,54.837 +177664,231.59,56.582 +177665,229.51,51.199 +177666,229.81,53.024 +177667,230.04,54.8 +177668,230.21,56.53 +177669,228.31,51.197 +177670,228.55,53.004 +177671,228.71,54.762 +177672,228.83,56.476 +177673,227.11,51.197 +177674,227.28,52.984 +177675,227.39,54.724 +177676,227.44,56.42 +177677,225.91,51.198 +177678,226.01,52.965 +177679,226.06,54.686 +177680,226.06,56.364 +177681,224.7,51.2 +177682,224.75,52.946 +177683,224.74,54.647 +177684,224.68,56.306 +177685,223.5,51.204 +177686,223.48,52.927 +177687,223.41,54.607 +177688,223.3,56.246 +177689,222.3,51.21 +177690,222.21,52.909 +177691,222.09,54.567 +177692,221.92,56.185 +177693,221.09,51.216 +177694,220.95,52.892 +177695,220.76,54.527 +177696,220.54,56.123 +177697,219.89,51.224 +177698,219.68,52.875 +177699,219.44,54.486 +177700,219.16,56.059 +177701,218.68,51.234 +177702,218.42,52.858 +177703,218.11,54.445 +177704,217.78,55.994 +177705,217.48,51.244 +177706,217.15,52.842 +177707,216.79,54.403 +177708,216.4,55.928 +177709,216.28,51.256 +177710,215.88,52.826 +177711,215.46,54.361 +177712,215.02,55.861 +177713,215.07,51.27 +177714,214.62,52.811 +177715,214.14,54.318 +177716,213.64,55.792 +177717,213.86,51.284 +177718,213.35,52.796 +177719,212.81,54.275 +177720,212.26,55.722 +177721,212.66,51.3 +177722,212.08,52.782 +177723,211.49,54.232 +177724,210.88,55.65 +177725,211.45,51.317 +177726,210.82,52.768 +177727,210.16,54.188 +177728,209.5,55.578 +177729,210.24,51.335 +177730,209.55,52.754 +177731,208.84,54.144 +177732,208.12,55.504 +177733,209.04,51.354 +177734,208.28,52.741 +177735,207.52,54.099 +177736,206.74,55.429 +177737,207.83,51.374 +177738,207.02,52.728 +177739,206.19,54.054 +177740,205.36,55.353 +177741,206.62,51.396 +177742,205.75,52.715 +177743,204.87,54.009 +177744,203.98,55.276 +177745,205.41,51.418 +177746,204.48,52.703 +177747,203.55,53.963 +177748,202.61,55.198 +177749,204.19,51.442 +177750,203.21,52.691 +177751,202.22,53.917 +177752,201.23,55.118 +177753,202.98,51.467 +177754,201.94,52.68 +177755,200.9,53.87 +177756,199.85,55.038 +177757,201.77,51.492 +177758,200.68,52.669 +177759,199.58,53.824 +177760,198.48,54.956 +177761,200.55,51.519 +177762,199.41,52.658 +177763,198.26,53.776 +177764,197.1,54.873 +177765,199.34,51.546 +177766,198.14,52.647 +177767,196.94,53.729 +177768,195.73,54.79 +177769,198.12,51.575 +177770,196.87,52.637 +177771,195.62,53.681 +177772,194.36,54.705 +177773,196.9,51.604 +177774,195.6,52.627 +177775,194.3,53.633 +177776,192.98,54.62 +177777,195.68,51.634 +177778,194.33,52.618 +177779,192.97,53.585 +177780,191.61,54.533 +177781,194.46,51.665 +177782,193.06,52.609 +177783,191.65,53.536 +177784,190.24,54.446 +177785,193.24,51.696 +177786,191.79,52.6 +177787,190.34,53.487 +177788,188.87,54.357 +177789,192.02,51.729 +177790,190.52,52.591 +177791,189.02,53.438 +177792,187.5,54.268 +177793,190.8,51.762 +177794,189.25,52.582 +177795,187.7,53.388 +177796,186.13,54.178 +177797,189.57,51.795 +177798,187.98,52.574 +177799,186.38,53.339 +177800,184.77,54.088 +177801,188.34,51.83 +177802,186.71,52.566 +177803,185.06,53.289 +177804,183.4,53.996 +177805,187.11,51.865 +177806,185.44,52.558 +177807,183.74,53.238 +177808,182.04,53.904 +177809,185.89,51.9 +177810,184.16,52.55 +177811,182.43,53.188 +177812,180.67,53.811 +177813,184.65,51.936 +177814,182.89,52.543 +177815,181.11,53.137 +177816,179.31,53.718 +177817,183.42,51.973 +177818,181.62,52.536 +177819,179.79,53.087 +177820,177.95,53.623 +177821,182.19,52.01 +177822,180.34,52.529 +177823,178.48,53.036 +177824,176.59,53.529 +177825,180.95,52.048 +177826,179.07,52.522 +177827,177.16,52.984 +177828,175.23,53.433 +177829,179.71,52.085 +177830,177.8,52.515 +177831,175.85,52.933 +177832,173.87,53.337 +177833,178.47,52.124 +177834,176.52,52.509 +177835,174.54,52.882 +177836,172.51,53.241 +177837,177.23,52.162 +177838,175.25,52.502 +177839,173.22,52.83 +177840,171.16,53.144 +177841,175.99,52.201 +177842,173.97,52.496 +177843,171.91,52.778 +177844,169.8,53.047 +177845,174.75,52.24 +177846,172.69,52.489 +177847,170.6,52.726 +177848,168.45,52.949 +177849,173.5,52.28 +177850,171.42,52.483 +177851,169.29,52.674 +177852,167.1,52.851 +177853,172.25,52.319 +177854,170.14,52.477 +177855,167.97,52.622 +177856,165.75,52.753 +177857,171.01,52.359 +177858,168.86,52.471 +177859,166.66,52.57 +177860,164.4,52.654 +177861,169.75,52.399 +177862,167.58,52.465 +177863,165.35,52.518 +177864,163.06,52.555 +177865,168.5,52.439 +177866,166.31,52.459 +177867,164.05,52.466 +177868,161.71,52.456 +177869,167.25,52.479 +177870,165.03,52.453 +177871,162.74,52.413 +177872,160.37,52.357 +177873,165.99,52.519 +177874,163.75,52.448 +177875,161.43,52.361 +177876,159.03,52.257 +177877,164.73,52.559 +177878,162.47,52.442 +177879,160.12,52.309 +177880,157.69,52.157 +177881,163.47,52.598 +177882,161.19,52.436 +177883,158.82,52.257 +177884,156.35,52.058 +177885,162.21,52.638 +177886,159.9,52.43 +177887,157.51,52.204 +177888,155.02,51.958 +177889,160.95,52.678 +177890,158.62,52.424 +177891,156.2,52.152 +177892,153.68,51.858 +177893,159.68,52.717 +177894,157.34,52.418 +177895,154.9,52.1 +177896,152.35,51.759 +177897,158.42,52.757 +177898,156.06,52.412 +177899,153.6,52.047 +177900,151.02,51.659 +177901,157.15,52.796 +177902,154.77,52.406 +177903,152.29,51.995 +177904,149.69,51.56 +177905,155.88,52.835 +177906,153.49,52.4 +177907,150.99,51.943 +177908,148.36,51.46 +177909,154.6,52.873 +177910,152.2,52.394 +177911,149.69,51.891 +177912,147.04,51.361 +177913,153.33,52.911 +177914,150.92,52.388 +177915,148.39,51.839 +177916,145.72,51.263 +177917,152.05,52.949 +177918,149.63,52.381 +177919,147.09,51.787 +177920,144.4,51.164 +177921,150.77,52.986 +177922,148.35,52.375 +177923,145.79,51.736 +177924,143.08,51.066 +177925,149.49,53.023 +177926,147.06,52.368 +177927,144.49,51.684 +177928,141.76,50.968 +177929,148.21,53.06 +177930,145.77,52.361 +177931,143.19,51.633 +177932,140.45,50.87 +177933,146.93,53.096 +177934,144.48,52.354 +177935,141.89,51.582 +177936,139.13,50.773 +177937,145.64,53.131 +177938,143.19,52.347 +177939,140.6,51.53 +177940,137.82,50.677 +177941,144.35,53.166 +177942,141.91,52.34 +177943,139.3,51.48 +177944,136.52,50.58 +177945,143.07,53.2 +177946,140.62,52.332 +177947,138.01,51.429 +177948,135.21,50.485 +177949,141.77,53.234 +177950,139.32,52.325 +177951,136.71,51.378 +177952,133.91,50.39 +177953,140.48,53.267 +177954,138.03,52.317 +177955,135.42,51.328 +177956,132.61,50.295 +177957,139.19,53.299 +177958,136.74,52.309 +177959,134.13,51.278 +177960,131.31,50.202 +177961,137.89,53.331 +177962,135.45,52.3 +177963,132.83,51.228 +177964,130.01,50.109 +177965,136.59,53.361 +177966,134.16,52.292 +177967,131.54,51.179 +177968,128.71,50.016 +177969,135.29,53.391 +177970,132.86,52.283 +177971,130.25,51.13 +177972,127.42,49.925 +177973,133.99,53.42 +177974,131.57,52.274 +177975,128.96,51.081 +177976,126.13,49.834 +177977,132.69,53.449 +177978,130.27,52.264 +177979,127.67,51.032 +177980,124.84,49.744 +177981,131.38,53.476 +177982,128.98,52.255 +177983,126.39,50.983 +177984,123.56,49.655 +177985,130.07,53.503 +177986,127.68,52.245 +177987,125.1,50.935 +177988,122.27,49.567 +177989,128.76,53.528 +177990,126.39,52.234 +177991,123.81,50.888 +177992,120.99,49.48 +177993,127.45,53.553 +177994,125.09,52.224 +177995,122.53,50.84 +177996,119.71,49.394 +177997,126.14,53.577 +177998,123.79,52.213 +177999,121.24,50.793 +178000,118.44,49.309 +178001,124.83,53.599 +178002,122.49,52.202 +178003,119.96,50.746 +178004,117.16,49.225 +178005,123.51,53.621 +178006,121.2,52.19 +178007,118.67,50.7 +178008,115.89,49.142 +178009,122.19,53.641 +178010,119.9,52.178 +178011,117.39,50.654 +178012,114.62,49.06 +178013,120.87,53.661 +178014,118.6,52.166 +178015,116.11,50.608 +178016,113.35,48.979 +178017,119.55,53.679 +178018,117.3,52.153 +178019,114.83,50.563 +178020,112.09,48.9 +178021,118.23,53.696 +178022,116,52.14 +178023,113.55,50.518 +178024,110.83,48.822 +178025,116.91,53.712 +178026,114.69,52.127 +178027,112.27,50.474 +178028,109.56,48.745 +178029,115.58,53.727 +178030,113.39,52.113 +178031,110.99,50.43 +178032,108.31,48.669 +178033,114.25,53.741 +178034,112.09,52.099 +178035,109.71,50.387 +178036,107.05,48.595 +178037,112.92,53.753 +178038,110.79,52.084 +178039,108.43,50.343 +178040,105.8,48.521 +178041,111.59,53.765 +178042,109.48,52.069 +178043,107.15,50.301 +178044,104.54,48.45 +178045,110.26,53.775 +178046,108.18,52.053 +178047,105.88,50.259 +178048,103.3,48.379 +178049,108.93,53.783 +178050,106.88,52.037 +178051,104.6,50.217 +178052,102.05,48.311 +178053,107.6,53.79 +178054,105.57,52.021 +178055,103.33,50.176 +178056,100.8,48.243 +178057,106.26,53.796 +178058,104.27,52.004 +178059,102.05,50.135 +178060,99.56,48.177 +178061,104.92,53.801 +178062,102.96,51.987 +178063,100.78,50.095 +178064,98.319,48.113 +178065,103.58,53.804 +178066,101.65,51.969 +178067,99.506,50.055 +178068,97.081,48.05 +178069,102.24,53.806 +178070,100.35,51.951 +178071,98.234,50.016 +178072,95.844,47.988 +178073,100.9,53.807 +178074,99.04,51.932 +178075,96.962,49.977 +178076,94.609,47.929 +178077,99.559,53.806 +178078,97.733,51.913 +178079,95.691,49.939 +178080,93.377,47.87 +178081,98.215,53.804 +178082,96.425,51.894 +178083,94.421,49.901 +178084,92.146,47.814 +178085,96.87,53.8 +178086,95.117,51.874 +178087,93.151,49.864 +178088,90.918,47.759 +178089,95.524,53.795 +178090,93.808,51.853 +178091,91.882,49.827 +178092,89.691,47.705 +178093,94.176,53.788 +178094,92.499,51.832 +178095,90.614,49.791 +178096,88.466,47.654 +178097,92.827,53.78 +178098,91.189,51.81 +178099,89.346,49.756 +178100,87.243,47.604 +178101,91.477,53.77 +178102,89.879,51.788 +178103,88.079,49.721 +178104,86.022,47.555 +178105,90.126,53.759 +178106,88.569,51.766 +178107,86.812,49.686 +178108,84.802,47.509 +178109,88.774,53.746 +178110,87.259,51.742 +178111,85.546,49.652 +178112,83.584,47.464 +178113,87.421,53.732 +178114,85.948,51.719 +178115,84.281,49.619 +178116,82.368,47.42 +178117,86.067,53.716 +178118,84.636,51.695 +178119,83.016,49.586 +178120,81.154,47.379 +178121,84.712,53.699 +178122,83.325,51.67 +178123,81.751,49.554 +178124,79.941,47.339 +178125,83.356,53.68 +178126,82.013,51.645 +178127,80.487,49.523 +178128,78.729,47.301 +178129,81.999,53.66 +178130,80.701,51.619 +178131,79.224,49.492 +178132,77.519,47.265 +178133,80.641,53.638 +178134,79.388,51.593 +178135,77.961,49.461 +178136,76.311,47.231 +178137,79.282,53.614 +178138,78.076,51.566 +178139,76.698,49.431 +178140,75.104,47.198 +178141,77.923,53.589 +178142,76.763,51.539 +178143,75.436,49.402 +178144,73.898,47.167 +178145,76.562,53.563 +178146,75.45,51.511 +178147,74.174,49.373 +178148,72.694,47.138 +178149,75.201,53.534 +178150,74.136,51.482 +178151,72.913,49.345 +178152,71.49,47.111 +178153,73.839,53.505 +178154,72.823,51.453 +178155,71.652,49.318 +178156,70.288,47.086 +178157,72.476,53.473 +178158,71.509,51.424 +178159,70.392,49.291 +178160,69.087,47.062 +178161,71.113,53.44 +178162,70.195,51.394 +178163,69.132,49.264 +178164,67.887,47.04 +178165,69.749,53.406 +178166,68.88,51.363 +178167,67.872,49.239 +178168,66.689,47.02 +178169,68.385,53.369 +178170,67.566,51.332 +178171,66.613,49.213 +178172,65.491,47.002 +178173,67.019,53.332 +178174,66.252,51.301 +178175,65.354,49.189 +178176,64.293,46.985 +178177,65.654,53.292 +178178,64.937,51.269 +178179,64.095,49.165 +178180,63.097,46.971 +178181,64.287,53.251 +178182,63.622,51.236 +178183,62.836,49.141 +178184,61.902,46.958 +178185,62.921,53.209 +178186,62.307,51.203 +178187,61.578,49.118 +178188,60.707,46.947 +178189,61.554,53.165 +178190,60.992,51.169 +178191,60.32,49.096 +178192,59.513,46.937 +178193,60.186,53.119 +178194,59.677,51.135 +178195,59.063,49.075 +178196,58.319,46.93 +178197,58.818,53.072 +178198,58.362,51.1 +178199,57.806,49.053 +178200,57.126,46.924 +178201,57.45,53.023 +178202,57.047,51.065 +178203,56.548,49.033 +178204,55.934,46.919 +178205,56.081,52.973 +178206,55.731,51.029 +178207,55.291,49.013 +178208,54.742,46.917 +178209,54.712,52.921 +178210,54.416,50.993 +178211,54.035,48.993 +178212,53.55,46.916 +178213,53.343,52.867 +178214,53.101,50.956 +178215,52.778,48.975 +178216,52.358,46.917 +178217,51.974,52.812 +178218,51.785,50.918 +178219,51.522,48.956 +178220,51.167,46.919 +178221,50.605,52.756 +178222,50.47,50.88 +178223,50.265,48.939 +178224,49.976,46.924 +178225,49.235,52.698 +178226,49.155,50.842 +178227,49.009,48.921 +178228,48.785,46.929 +178229,47.865,52.638 +178230,47.839,50.803 +178231,47.753,48.905 +178232,47.594,46.937 +178233,46.495,52.578 +178234,46.524,50.764 +178235,46.497,48.888 +178236,46.403,46.946 +178237,45.126,52.515 +178238,45.209,50.724 +178239,45.241,48.873 +178240,45.212,46.956 +178241,43.756,52.451 +178242,43.894,50.684 +178243,43.985,48.858 +178244,44.02,46.969 +178245,42.386,52.386 +178246,42.579,50.643 +178247,42.729,48.843 +178248,42.829,46.982 +178249,41.017,52.319 +178250,41.264,50.602 +178251,41.474,48.829 +178252,41.637,46.997 +178253,39.647,52.251 +178254,39.95,50.56 +178255,40.218,48.816 +178256,40.445,47.014 +178257,38.278,52.181 +178258,38.635,50.518 +178259,38.962,48.803 +178260,39.253,47.032 +178261,36.908,52.11 +178262,37.321,50.475 +178263,37.706,48.79 +178264,38.06,47.052 +178265,35.539,52.038 +178266,36.006,50.432 +178267,36.45,48.778 +178268,36.867,47.073 +178269,34.171,51.964 +178270,34.692,50.389 +178271,35.194,48.766 +178272,35.673,47.095 +178273,32.802,51.889 +178274,33.378,50.345 +178275,33.938,48.755 +178276,34.478,47.119 +178277,31.434,51.813 +178278,32.065,50.3 +178279,32.682,48.745 +178280,33.283,47.144 +178281,30.067,51.735 +178282,30.751,50.256 +178283,31.426,48.734 +178284,32.088,47.17 +178285,28.699,51.656 +178286,29.438,50.21 +178287,30.169,48.725 +178288,30.891,47.198 +178289,27.333,51.576 +178290,28.125,50.165 +178291,28.913,48.715 +178292,29.694,47.227 +178293,25.966,51.495 +178294,26.813,50.119 +178295,27.656,48.706 +178296,28.496,47.257 +178297,24.601,51.412 +178298,25.5,50.073 +178299,26.399,48.698 +178300,27.296,47.288 +178301,23.235,51.328 +178302,24.188,50.026 +178303,25.142,48.69 +178304,26.096,47.32 +178305,21.871,51.243 +178306,22.877,49.979 +178307,23.885,48.682 +178308,24.895,47.354 +178309,20.507,51.157 +178310,21.565,49.931 +178311,22.627,48.675 +178312,23.693,47.388 +178313,19.143,51.07 +178314,20.254,49.884 +178315,21.369,48.668 +178316,22.49,47.424 +178317,17.781,50.982 +178318,18.943,49.835 +178319,20.111,48.661 +178320,21.286,47.46 +178321,16.419,50.893 +178322,17.633,49.787 +178323,18.853,48.655 +178324,20.081,47.498 +178325,15.058,50.802 +178326,16.323,49.738 +178327,17.595,48.649 +178328,18.874,47.536 +178329,13.697,50.711 +178330,15.013,49.689 +178331,16.336,48.644 +178332,17.666,47.576 +178333,12.338,50.619 +178334,13.704,49.64 +178335,15.077,48.639 +178336,16.457,47.616 +178337,10.979,50.526 +178338,12.395,49.59 +178339,13.817,48.634 +178340,15.247,47.657 +178341,9.6219,50.432 +178342,11.087,49.54 +178343,12.558,48.629 +178344,14.035,47.699 +178345,8.2653,50.337 +178346,9.7792,49.49 +178347,11.298,48.625 +178348,12.821,47.741 +178349,6.9097,50.241 +178350,8.4718,49.44 +178351,10.037,48.621 +178352,11.607,47.785 +178353,5.5552,50.144 +178354,7.1648,49.389 +178355,8.7763,48.617 +178356,10.391,47.829 +178357,4.2017,50.047 +178358,5.8583,49.338 +178359,7.5151,48.614 +178360,9.1731,47.873 +178361,2.8493,49.949 +178362,4.5524,49.287 +178363,6.2535,48.61 +178364,7.9539,47.918 +178365,1.4981,49.85 +178366,3.2469,49.236 +178367,4.9915,48.607 +178368,6.7332,47.964 +178369,0.14812,49.75 +178370,1.942,49.185 +178371,3.7291,48.604 +178372,5.5109,48.011 +178373,358.8,49.65 +178374,0.63756,49.133 +178375,2.4663,48.602 +178376,4.2871,48.057 +178377,357.45,49.549 +178378,359.33,49.081 +178379,1.2031,48.599 +178380,3.0616,48.105 +178381,356.11,49.448 +178382,358.03,49.029 +178383,359.94,48.597 +178384,1.8344,48.152 +178385,354.76,49.346 +178386,356.73,48.977 +178387,358.68,48.595 +178388,0.60557,48.2 +178389,353.42,49.244 +178390,355.43,48.925 +178391,357.41,48.593 +178392,359.38,48.249 +178393,352.08,49.141 +178394,354.12,48.873 +178395,356.15,48.591 +178396,358.14,48.297 +178397,350.73,49.038 +178398,352.82,48.82 +178399,354.88,48.589 +178400,356.91,48.346 +178401,349.4,48.934 +178402,351.52,48.768 +178403,353.61,48.588 +178404,355.67,48.395 +178405,348.06,48.83 +178406,350.22,48.715 +178407,352.35,48.586 +178408,354.44,48.445 +178409,346.72,48.726 +178410,348.92,48.663 +178411,351.08,48.585 +178412,353.2,48.494 +178413,345.39,48.621 +178414,347.63,48.61 +178415,349.81,48.584 +178416,351.96,48.544 +178417,344.05,48.516 +178418,346.33,48.557 +178419,348.55,48.583 +178420,350.71,48.593 +178421,342.72,48.411 +178422,345.03,48.505 +178423,347.28,48.581 +178424,349.47,48.643 +178425,341.39,48.306 +178426,343.73,48.452 +178427,346.01,48.58 +178428,348.22,48.693 +178429,340.07,48.201 +178430,342.44,48.399 +178431,344.74,48.579 +178432,346.97,48.742 +178433,338.74,48.096 +178434,341.14,48.347 +178435,343.47,48.578 +178436,345.72,48.792 +178437,337.42,47.99 +178438,339.85,48.294 +178439,342.2,48.577 +178440,344.47,48.841 +178441,336.09,47.885 +178442,338.55,48.241 +178443,340.93,48.576 +178444,343.22,48.89 +178445,334.77,47.78 +178446,337.26,48.189 +178447,339.65,48.575 +178448,341.96,48.939 +178449,333.45,47.674 +178450,335.97,48.136 +178451,338.38,48.573 +178452,340.7,48.988 +178453,332.14,47.569 +178454,334.68,48.084 +178455,337.11,48.572 +178456,339.44,49.036 +178457,330.82,47.465 +178458,333.39,48.032 +178459,335.84,48.571 +178460,338.18,49.084 +178461,329.51,47.36 +178462,332.1,47.98 +178463,334.56,48.569 +178464,336.92,49.132 +178465,328.2,47.256 +178466,330.81,47.928 +178467,333.29,48.568 +178468,335.65,49.179 +178469,326.89,47.152 +178470,329.52,47.876 +178471,332.01,48.566 +178472,334.39,49.226 +178473,325.58,47.048 +178474,328.23,47.824 +178475,330.74,48.564 +178476,333.12,49.272 +178477,324.28,46.945 +178478,326.94,47.773 +178479,329.46,48.563 +178480,331.85,49.318 +178481,322.97,46.842 +178482,325.66,47.721 +178483,328.18,48.56 +178484,330.57,49.364 +178485,321.67,46.74 +178486,324.37,47.67 +178487,326.9,48.558 +178488,329.3,49.409 +178489,320.37,46.638 +178490,323.09,47.619 +178491,325.63,48.556 +178492,328.02,49.453 +178493,319.08,46.537 +178494,321.8,47.569 +178495,324.35,48.553 +178496,326.74,49.496 +178497,317.78,46.436 +178498,320.52,47.518 +178499,323.07,48.551 +178500,325.46,49.539 +178501,316.49,46.336 +178502,319.24,47.468 +178503,321.79,48.548 +178504,324.18,49.581 +178505,315.2,46.237 +178506,317.95,47.418 +178507,320.51,48.545 +178508,322.9,49.623 +178509,313.91,46.138 +178510,316.67,47.369 +178511,319.23,48.541 +178512,321.61,49.663 +178513,312.63,46.041 +178514,315.39,47.319 +178515,317.95,48.538 +178516,320.32,49.703 +178517,311.35,45.944 +178518,314.11,47.27 +178519,316.66,48.534 +178520,319.03,49.742 +178521,310.06,45.848 +178522,312.84,47.222 +178523,315.38,48.53 +178524,317.74,49.78 +178525,308.79,45.753 +178526,311.56,47.173 +178527,314.1,48.525 +178528,316.45,49.817 +178529,307.51,45.658 +178530,310.28,47.125 +178531,312.81,48.521 +178532,315.16,49.854 +178533,306.24,45.565 +178534,309,47.077 +178535,311.53,48.516 +178536,313.86,49.889 +178537,304.96,45.473 +178538,307.73,47.03 +178539,310.25,48.51 +178540,312.56,49.923 +178541,303.69,45.382 +178542,306.45,46.983 +178543,308.96,48.505 +178544,311.26,49.957 +178545,302.43,45.292 +178546,305.18,46.937 +178547,307.67,48.499 +178548,309.96,49.989 +178549,301.16,45.204 +178550,303.91,46.891 +178551,306.39,48.492 +178552,308.66,50.02 +178553,299.9,45.116 +178554,302.63,46.845 +178555,305.1,48.486 +178556,307.35,50.05 +178557,298.64,45.03 +178558,301.36,46.8 +178559,303.81,48.479 +178560,306.05,50.079 +178561,297.38,44.945 +178562,300.09,46.755 +178563,302.52,48.471 +178564,304.74,50.107 +178565,296.13,44.861 +178566,298.82,46.711 +178567,301.24,48.464 +178568,303.43,50.133 +178569,294.87,44.779 +178570,297.55,46.667 +178571,299.95,48.456 +178572,302.12,50.158 +178573,293.62,44.698 +178574,296.28,46.624 +178575,298.66,48.447 +178576,300.81,50.183 +178577,292.37,44.618 +178578,295.02,46.581 +178579,297.37,48.438 +178580,299.49,50.205 +178581,291.13,44.54 +178582,293.75,46.538 +178583,296.08,48.429 +178584,298.17,50.227 +178585,289.88,44.463 +178586,292.48,46.496 +178587,294.78,48.419 +178588,296.86,50.247 +178589,288.64,44.388 +178590,291.22,46.455 +178591,293.49,48.409 +178592,295.54,50.266 +178593,287.4,44.315 +178594,289.95,46.414 +178595,292.2,48.398 +178596,294.22,50.284 +178597,286.17,44.243 +178598,288.69,46.374 +178599,290.91,48.387 +178600,292.9,50.3 +178601,284.93,44.172 +178602,287.42,46.334 +178603,289.62,48.375 +178604,291.57,50.315 +178605,283.7,44.104 +178606,286.16,46.295 +178607,288.32,48.363 +178608,290.25,50.328 +178609,282.47,44.037 +178610,284.9,46.256 +178611,287.03,48.351 +178612,288.92,50.34 +178613,281.24,43.972 +178614,283.64,46.218 +178615,285.73,48.338 +178616,287.6,50.35 +178617,280.01,43.908 +178618,282.38,46.181 +178619,284.44,48.325 +178620,286.27,50.359 +178621,278.79,43.846 +178622,281.12,46.144 +178623,283.14,48.311 +178624,284.94,50.367 +178625,277.57,43.786 +178626,279.86,46.107 +178627,281.85,48.296 +178628,283.61,50.373 +178629,276.35,43.728 +178630,278.6,46.072 +178631,280.55,48.281 +178632,282.28,50.377 +178633,275.13,43.672 +178634,277.34,46.037 +178635,279.25,48.266 +178636,280.94,50.38 +178637,273.91,43.617 +178638,276.08,46.002 +178639,277.96,48.25 +178640,279.61,50.382 +178641,272.7,43.565 +178642,274.83,45.968 +178643,276.66,48.233 +178644,278.27,50.382 +178645,271.49,43.514 +178646,273.57,45.935 +178647,275.36,48.216 +178648,276.94,50.38 +178649,270.28,43.465 +178650,272.31,45.902 +178651,274.07,48.199 +178652,275.6,50.377 +178653,269.07,43.418 +178654,271.06,45.87 +178655,272.77,48.181 +178656,274.26,50.372 +178657,267.86,43.373 +178658,269.81,45.839 +178659,271.47,48.162 +178660,272.92,50.365 +178661,266.66,43.33 +178662,268.55,45.808 +178663,270.17,48.143 +178664,271.58,50.357 +178665,265.45,43.289 +178666,267.3,45.778 +178667,268.87,48.123 +178668,270.24,50.347 +178669,264.25,43.25 +178670,266.04,45.749 +178671,267.57,48.103 +178672,268.9,50.336 +178673,263.05,43.213 +178674,264.79,45.72 +178675,266.27,48.083 +178676,267.55,50.323 +178677,261.85,43.178 +178678,263.54,45.692 +178679,264.97,48.061 +178680,266.21,50.308 +178681,260.66,43.146 +178682,262.29,45.665 +178683,263.67,48.039 +178684,264.86,50.292 +178685,259.46,43.115 +178686,261.04,45.638 +178687,262.37,48.017 +178688,263.52,50.273 +178689,258.27,43.086 +178690,259.79,45.612 +178691,261.07,47.994 +178692,262.17,50.254 +178693,257.07,43.059 +178694,258.54,45.587 +178695,259.77,47.97 +178696,260.82,50.232 +178697,255.88,43.034 +178698,257.29,45.562 +178699,258.47,47.946 +178700,259.47,50.209 +178701,254.69,43.011 +178702,256.04,45.538 +178703,257.17,47.922 +178704,258.13,50.184 +178705,253.5,42.991 +178706,254.79,45.515 +178707,255.86,47.897 +178708,256.78,50.158 +178709,252.31,42.972 +178710,253.54,45.492 +178711,254.56,47.871 +178712,255.43,50.13 +178713,251.13,42.955 +178714,252.29,45.47 +178715,253.26,47.844 +178716,254.08,50.1 +178717,249.94,42.941 +178718,251.05,45.449 +178719,251.96,47.818 +178720,252.72,50.068 +178721,248.76,42.928 +178722,249.8,45.428 +178723,250.66,47.79 +178724,251.37,50.035 +178725,247.57,42.918 +178726,248.55,45.408 +178727,249.35,47.762 +178728,250.02,50 +178729,246.39,42.909 +178730,247.31,45.389 +178731,248.05,47.734 +178732,248.67,49.963 +178733,245.2,42.903 +178734,246.06,45.37 +178735,246.75,47.704 +178736,247.32,49.925 +178737,244.02,42.898 +178738,244.81,45.352 +178739,245.45,47.675 +178740,245.96,49.885 +178741,242.84,42.896 +178742,243.57,45.335 +178743,244.15,47.645 +178744,244.61,49.843 +178745,241.66,42.896 +178746,242.32,45.318 +178747,242.84,47.614 +178748,243.26,49.8 +178749,240.48,42.897 +178750,241.08,45.302 +178751,241.54,47.582 +178752,241.9,49.755 +178753,239.3,42.901 +178754,239.83,45.287 +178755,240.24,47.551 +178756,240.55,49.708 +178757,238.12,42.906 +178758,238.59,45.272 +178759,238.93,47.518 +178760,239.19,49.66 +178761,236.94,42.913 +178762,237.34,45.258 +178763,237.63,47.485 +178764,237.84,49.61 +178765,235.76,42.923 +178766,236.1,45.245 +178767,236.33,47.452 +178768,236.48,49.558 +178769,234.58,42.934 +178770,234.85,45.232 +178771,235.03,47.418 +178772,235.13,49.505 +178773,233.4,42.947 +178774,233.61,45.22 +178775,233.72,47.383 +178776,233.77,49.45 +178777,232.22,42.962 +178778,232.36,45.209 +178779,232.42,47.348 +178780,232.42,49.393 +178781,231.04,42.978 +178782,231.12,45.198 +178783,231.12,47.313 +178784,231.06,49.335 +178785,229.86,42.997 +178786,229.87,45.188 +178787,229.82,47.276 +178788,229.71,49.276 +178789,228.68,43.017 +178790,228.63,45.178 +178791,228.52,47.24 +178792,228.35,49.214 +178793,227.5,43.039 +178794,227.38,45.169 +178795,227.21,47.203 +178796,227,49.152 +178797,226.32,43.063 +178798,226.14,45.16 +178799,225.91,47.165 +178800,225.65,49.087 +178801,225.14,43.088 +178802,224.9,45.153 +178803,224.61,47.127 +178804,224.29,49.021 +178805,223.96,43.115 +178806,223.65,45.145 +178807,223.31,47.089 +178808,222.94,48.954 +178809,222.77,43.144 +178810,222.41,45.139 +178811,222.01,47.05 +178812,221.58,48.885 +178813,221.59,43.174 +178814,221.16,45.133 +178815,220.71,47.01 +178816,220.23,48.815 +178817,220.41,43.206 +178818,219.92,45.127 +178819,219.41,46.97 +178820,218.88,48.743 +178821,219.23,43.24 +178822,218.67,45.122 +178823,218.1,46.93 +178824,217.52,48.67 +178825,218.04,43.275 +178826,217.43,45.118 +178827,216.8,46.889 +178828,216.17,48.595 +178829,216.86,43.311 +178830,216.18,45.114 +178831,215.5,46.848 +178832,214.82,48.519 +178833,215.67,43.349 +178834,214.94,45.11 +178835,214.2,46.806 +178836,213.47,48.441 +178837,214.48,43.388 +178838,213.69,45.107 +178839,212.9,46.764 +178840,212.12,48.363 +178841,213.29,43.429 +178842,212.45,45.105 +178843,211.61,46.721 +178844,210.77,48.282 +178845,212.11,43.471 +178846,211.2,45.103 +178847,210.31,46.679 +178848,209.42,48.201 +178849,210.92,43.515 +178850,209.96,45.102 +178851,209.01,46.635 +178852,208.07,48.118 +178853,209.72,43.559 +178854,208.71,45.101 +178855,207.71,46.592 +178856,206.72,48.034 +178857,208.53,43.605 +178858,207.46,45.1 +178859,206.41,46.548 +178860,205.37,47.949 +178861,207.34,43.652 +178862,206.22,45.1 +178863,205.11,46.503 +178864,204.03,47.863 +178865,206.14,43.7 +178866,204.97,45.101 +178867,203.82,46.458 +178868,202.68,47.775 +178869,204.95,43.75 +178870,203.72,45.102 +178871,202.52,46.413 +178872,201.34,47.686 +178873,203.75,43.8 +178874,202.48,45.103 +178875,201.22,46.368 +178876,199.99,47.596 +178877,202.55,43.851 +178878,201.23,45.104 +178879,199.93,46.322 +178880,198.65,47.505 +178881,201.35,43.904 +178882,199.98,45.106 +178883,198.63,46.276 +178884,197.3,47.413 +178885,200.15,43.957 +178886,198.73,45.109 +178887,197.34,46.23 +178888,195.96,47.32 +178889,198.95,44.011 +178890,197.48,45.112 +178891,196.04,46.183 +178892,194.62,47.226 +178893,197.74,44.066 +178894,196.23,45.115 +178895,194.75,46.136 +178896,193.28,47.131 +178897,196.54,44.122 +178898,194.98,45.118 +178899,193.45,46.089 +178900,191.94,47.035 +178901,195.33,44.179 +178902,193.73,45.122 +178903,192.16,46.042 +178904,190.61,46.938 +178905,194.12,44.236 +178906,192.48,45.126 +178907,190.87,45.994 +178908,189.27,46.841 +178909,192.91,44.294 +178910,191.23,45.13 +178911,189.58,45.946 +178912,187.94,46.742 +178913,191.7,44.353 +178914,189.98,45.135 +178915,188.28,45.898 +178916,186.6,46.643 +178917,190.49,44.413 +178918,188.73,45.14 +178919,186.99,45.85 +178920,185.27,46.542 +178921,189.27,44.473 +178922,187.48,45.145 +178923,185.7,45.802 +178924,183.94,46.442 +178925,188.05,44.533 +178926,186.23,45.151 +178927,184.41,45.753 +178928,182.61,46.34 +178929,186.83,44.594 +178930,184.97,45.156 +178931,183.12,45.704 +178932,181.28,46.238 +178933,185.61,44.655 +178934,183.72,45.162 +178935,181.83,45.656 +178936,179.95,46.135 +178937,184.39,44.717 +178938,182.47,45.168 +178939,180.55,45.607 +178940,178.62,46.031 +178941,183.17,44.779 +178942,181.21,45.174 +178943,179.26,45.558 +178944,177.3,45.927 +178945,181.94,44.842 +178946,179.96,45.181 +178947,177.97,45.508 +178948,175.98,45.823 +178949,180.71,44.904 +178950,178.7,45.188 +178951,176.68,45.459 +178952,174.66,45.718 +178953,179.48,44.967 +178954,177.45,45.194 +178955,175.4,45.41 +178956,173.34,45.613 +178957,178.25,45.03 +178958,176.19,45.201 +178959,174.11,45.36 +178960,172.02,45.507 +178961,177.02,45.093 +178962,174.93,45.208 +178963,172.83,45.311 +178964,170.7,45.401 +178965,175.78,45.157 +178966,173.68,45.215 +178967,171.55,45.262 +178968,169.38,45.294 +178969,174.54,45.22 +178970,172.42,45.222 +178971,170.26,45.212 +178972,168.07,45.188 +178973,173.3,45.283 +178974,171.16,45.23 +178975,168.98,45.163 +178976,166.76,45.081 +178977,172.06,45.347 +178978,169.9,45.237 +178979,167.7,45.113 +178980,165.45,44.974 +178981,170.82,45.41 +178982,168.64,45.244 +178983,166.42,45.064 +178984,164.14,44.867 +178985,169.57,45.473 +178986,167.38,45.252 +178987,165.14,45.014 +178988,162.83,44.76 +178989,168.33,45.536 +178990,166.12,45.259 +178991,163.86,44.965 +178992,161.53,44.653 +178993,167.08,45.599 +178994,164.86,45.267 +178995,162.58,44.916 +178996,160.23,44.545 +178997,165.83,45.661 +178998,163.6,45.274 +178999,161.3,44.867 +179000,158.93,44.438 +179001,164.57,45.723 +179002,162.34,45.281 +179003,160.02,44.818 +179004,157.63,44.331 +179005,163.32,45.785 +179006,161.07,45.289 +179007,158.74,44.769 +179008,156.33,44.224 +179009,162.06,45.847 +179010,159.81,45.296 +179011,157.47,44.72 +179012,155.03,44.118 +179013,160.81,45.908 +179014,158.54,45.303 +179015,156.19,44.672 +179016,153.74,44.011 +179017,159.55,45.968 +179018,157.28,45.31 +179019,154.92,44.623 +179020,152.45,43.905 +179021,158.28,46.028 +179022,156.01,45.317 +179023,153.64,44.575 +179024,151.16,43.799 +179025,157.02,46.088 +179026,154.75,45.324 +179027,152.37,44.527 +179028,149.87,43.694 +179029,155.75,46.147 +179030,153.48,45.331 +179031,151.1,44.479 +179032,148.59,43.589 +179033,154.49,46.206 +179034,152.22,45.338 +179035,149.83,44.432 +179036,147.3,43.484 +179037,153.22,46.263 +179038,150.95,45.344 +179039,148.56,44.384 +179040,146.02,43.38 +179041,151.94,46.321 +179042,149.68,45.35 +179043,147.29,44.337 +179044,144.74,43.277 +179045,150.67,46.377 +179046,148.41,45.357 +179047,146.02,44.291 +179048,143.47,43.174 +179049,149.4,46.433 +179050,147.14,45.363 +179051,144.75,44.244 +179052,142.19,43.072 +179053,148.12,46.488 +179054,145.87,45.368 +179055,143.48,44.198 +179056,140.92,42.97 +179057,146.84,46.542 +179058,144.6,45.374 +179059,142.21,44.152 +179060,139.65,42.87 +179061,145.56,46.595 +179062,143.33,45.379 +179063,140.95,44.107 +179064,138.38,42.77 +179065,144.28,46.647 +179066,142.06,45.384 +179067,139.68,44.061 +179068,137.12,42.671 +179069,142.99,46.699 +179070,140.79,45.389 +179071,138.42,44.017 +179072,135.85,42.573 +179073,141.71,46.749 +179074,139.51,45.394 +179075,137.15,43.972 +179076,134.59,42.476 +179077,140.42,46.799 +179078,138.24,45.398 +179079,135.89,43.928 +179080,133.33,42.38 +179081,139.13,46.847 +179082,136.97,45.402 +179083,134.63,43.885 +179084,132.07,42.285 +179085,137.84,46.894 +179086,135.69,45.406 +179087,133.37,43.841 +179088,130.82,42.191 +179089,136.55,46.941 +179090,134.42,45.409 +179091,132.11,43.799 +179092,129.57,42.098 +179093,135.25,46.986 +179094,133.14,45.412 +179095,130.85,43.756 +179096,128.32,42.006 +179097,133.96,47.03 +179098,131.87,45.415 +179099,129.59,43.714 +179100,127.07,41.916 +179101,132.66,47.073 +179102,130.59,45.417 +179103,128.33,43.673 +179104,125.82,41.827 +179105,131.36,47.115 +179106,129.31,45.419 +179107,127.07,43.632 +179108,124.58,41.739 +179109,130.06,47.155 +179110,128.04,45.421 +179111,125.81,43.592 +179112,123.34,41.652 +179113,128.76,47.194 +179114,126.76,45.422 +179115,124.56,43.552 +179116,122.1,41.567 +179117,127.46,47.232 +179118,125.48,45.423 +179119,123.3,43.512 +179120,120.86,41.484 +179121,126.15,47.269 +179122,124.2,45.423 +179123,122.05,43.474 +179124,119.63,41.402 +179125,124.85,47.304 +179126,122.92,45.423 +179127,120.79,43.435 +179128,118.4,41.321 +179129,123.54,47.338 +179130,121.64,45.423 +179131,119.54,43.398 +179132,117.17,41.242 +179133,122.23,47.371 +179134,120.36,45.422 +179135,118.28,43.36 +179136,115.94,41.165 +179137,120.92,47.402 +179138,119.08,45.421 +179139,117.03,43.324 +179140,114.71,41.089 +179141,119.61,47.432 +179142,117.8,45.419 +179143,115.78,43.288 +179144,113.49,41.015 +179145,118.3,47.46 +179146,116.52,45.417 +179147,114.53,43.252 +179148,112.27,40.943 +179149,116.98,47.487 +179150,115.23,45.415 +179151,113.28,43.218 +179152,111.05,40.872 +179153,115.67,47.512 +179154,113.95,45.411 +179155,112.03,43.183 +179156,109.83,40.803 +179157,114.35,47.536 +179158,112.67,45.408 +179159,110.78,43.15 +179160,108.62,40.736 +179161,113.03,47.559 +179162,111.39,45.404 +179163,109.53,43.117 +179164,107.4,40.671 +179165,111.71,47.579 +179166,110.1,45.399 +179167,108.29,43.085 +179168,106.19,40.608 +179169,110.39,47.599 +179170,108.82,45.394 +179171,107.04,43.053 +179172,104.98,40.547 +179173,109.07,47.616 +179174,107.53,45.389 +179175,105.79,43.022 +179176,103.78,40.488 +179177,107.75,47.632 +179178,106.25,45.383 +179179,104.55,42.992 +179180,102.57,40.43 +179181,106.42,47.647 +179182,104.96,45.376 +179183,103.3,42.963 +179184,101.37,40.375 +179185,105.1,47.659 +179186,103.68,45.369 +179187,102.06,42.934 +179188,100.17,40.322 +179189,103.77,47.671 +179190,102.39,45.362 +179191,100.81,42.906 +179192,98.967,40.271 +179193,102.45,47.68 +179194,101.11,45.353 +179195,99.569,42.878 +179196,97.769,40.222 +179197,101.12,47.688 +179198,99.819,45.345 +179199,98.326,42.851 +179200,96.572,40.175 +179201,99.792,47.694 +179202,98.532,45.336 +179203,97.083,42.825 +179204,95.378,40.13 +179205,98.463,47.698 +179206,97.245,45.326 +179207,95.841,42.8 +179208,94.185,40.088 +179209,97.133,47.701 +179210,95.958,45.316 +179211,94.6,42.775 +179212,92.993,40.047 +179213,95.802,47.702 +179214,94.67,45.305 +179215,93.359,42.752 +179216,91.804,40.009 +179217,94.471,47.701 +179218,93.382,45.293 +179219,92.118,42.729 +179220,90.615,39.973 +179221,93.139,47.699 +179222,92.094,45.281 +179223,90.878,42.706 +179224,89.428,39.939 +179225,91.806,47.695 +179226,90.806,45.269 +179227,89.639,42.685 +179228,88.242,39.908 +179229,90.472,47.689 +179230,89.517,45.255 +179231,88.399,42.664 +179232,87.058,39.878 +179233,89.138,47.681 +179234,88.228,45.242 +179235,87.16,42.644 +179236,85.875,39.851 +179237,87.803,47.672 +179238,86.939,45.228 +179239,85.922,42.624 +179240,84.693,39.827 +179241,86.468,47.661 +179242,85.65,45.213 +179243,84.684,42.606 +179244,83.512,39.804 +179245,85.132,47.648 +179246,84.361,45.197 +179247,83.446,42.588 +179248,82.332,39.784 +179249,83.796,47.633 +179250,83.072,45.181 +179251,82.209,42.571 +179252,81.154,39.766 +179253,82.459,47.616 +179254,81.782,45.165 +179255,80.971,42.554 +179256,79.976,39.751 +179257,81.121,47.598 +179258,80.493,45.147 +179259,79.735,42.539 +179260,78.799,39.737 +179261,79.784,47.578 +179262,79.203,45.13 +179263,78.498,42.524 +179264,77.623,39.726 +179265,78.446,47.556 +179266,77.913,45.111 +179267,77.262,42.51 +179268,76.447,39.718 +179269,77.108,47.532 +179270,76.623,45.093 +179271,76.026,42.497 +179272,75.273,39.711 +179273,75.769,47.507 +179274,75.333,45.073 +179275,74.79,42.484 +179276,74.098,39.707 +179277,74.43,47.48 +179278,74.043,45.053 +179279,73.554,42.473 +179280,72.925,39.705 +179281,73.091,47.451 +179282,72.753,45.032 +179283,72.319,42.462 +179284,71.752,39.706 +179285,71.752,47.42 +179286,71.463,45.011 +179287,71.084,42.451 +179288,70.579,39.709 +179289,70.413,47.387 +179290,70.173,44.989 +179291,69.848,42.442 +179292,69.407,39.713 +179293,69.073,47.353 +179294,68.883,44.967 +179295,68.613,42.433 +179296,68.235,39.721 +179297,67.734,47.317 +179298,67.593,44.944 +179299,67.379,42.425 +179300,67.063,39.73 +179301,66.394,47.279 +179302,66.303,44.921 +179303,66.144,42.418 +179304,65.891,39.742 +179305,65.055,47.24 +179306,65.013,44.897 +179307,64.909,42.411 +179308,64.719,39.755 +179309,63.715,47.199 +179310,63.724,44.872 +179311,63.675,42.406 +179312,63.548,39.771 +179313,62.376,47.156 +179314,62.434,44.847 +179315,62.44,42.401 +179316,62.376,39.79 +179317,61.036,47.111 +179318,61.144,44.821 +179319,61.206,42.396 +179320,61.204,39.81 +179321,59.697,47.064 +179322,59.855,44.795 +179323,59.971,42.393 +179324,60.032,39.832 +179325,58.358,47.016 +179326,58.565,44.768 +179327,58.737,42.39 +179328,58.859,39.857 +179329,57.019,46.967 +179330,57.276,44.741 +179331,57.502,42.388 +179332,57.687,39.883 +179333,55.681,46.915 +179334,55.987,44.713 +179335,56.268,42.386 +179336,56.513,39.912 +179337,54.343,46.862 +179338,54.698,44.685 +179339,55.033,42.386 +179340,55.34,39.942 +179341,53.005,46.807 +179342,53.409,44.656 +179343,53.798,42.385 +179344,54.166,39.975 +179345,51.667,46.751 +179346,52.121,44.627 +179347,52.563,42.386 +179348,52.991,40.009 +179349,50.33,46.693 +179350,50.832,44.597 +179351,51.329,42.387 +179352,51.816,40.045 +179353,48.993,46.633 +179354,49.544,44.566 +179355,50.094,42.389 +179356,50.64,40.084 +179357,47.657,46.572 +179358,48.256,44.536 +179359,48.858,42.392 +179360,49.463,40.124 +179361,46.321,46.509 +179362,46.968,44.504 +179363,47.623,42.395 +179364,48.285,40.166 +179365,44.986,46.445 +179366,45.681,44.472 +179367,46.387,42.399 +179368,47.107,40.21 +179369,43.651,46.379 +179370,44.394,44.44 +179371,45.152,42.404 +179372,45.927,40.255 +179373,42.317,46.312 +179374,43.107,44.407 +179375,43.916,42.409 +179376,44.747,40.302 +179377,40.984,46.243 +179378,41.821,44.374 +179379,42.68,42.414 +179380,43.565,40.351 +179381,39.651,46.173 +179382,40.534,44.341 +179383,41.443,42.421 +179384,42.383,40.401 +179385,38.319,46.101 +179386,39.248,44.307 +179387,40.207,42.428 +179388,41.199,40.454 +179389,36.988,46.028 +179390,37.963,44.272 +179391,38.97,42.435 +179392,40.014,40.507 +179393,35.657,45.954 +179394,36.678,44.237 +179395,37.733,42.443 +179396,38.828,40.562 +179397,34.328,45.878 +179398,35.393,44.202 +179399,36.495,42.452 +179400,37.64,40.619 +179401,32.999,45.801 +179402,34.109,44.166 +179403,35.257,42.461 +179404,36.452,40.677 +179405,31.671,45.722 +179406,32.824,44.13 +179407,34.019,42.471 +179408,35.261,40.736 +179409,30.344,45.642 +179410,31.541,44.094 +179411,32.78,42.481 +179412,34.07,40.797 +179413,29.018,45.561 +179414,30.258,44.057 +179415,31.542,42.492 +179416,32.877,40.859 +179417,27.693,45.479 +179418,28.975,44.02 +179419,30.302,42.503 +179420,31.682,40.923 +179421,26.369,45.395 +179422,27.693,43.982 +179423,29.063,42.514 +179424,30.486,40.987 +179425,25.046,45.311 +179426,26.411,43.944 +179427,27.823,42.527 +179428,29.289,41.053 +179429,23.724,45.225 +179430,25.129,43.906 +179431,26.582,42.539 +179432,28.089,41.12 +179433,22.403,45.138 +179434,23.848,43.868 +179435,25.341,42.552 +179436,26.888,41.188 +179437,21.083,45.05 +179438,22.568,43.829 +179439,24.1,42.566 +179440,25.686,41.256 +179441,19.765,44.961 +179442,21.288,43.79 +179443,22.858,42.579 +179444,24.482,41.326 +179445,18.447,44.871 +179446,20.009,43.751 +179447,21.616,42.594 +179448,23.276,41.397 +179449,17.131,44.78 +179450,18.73,43.711 +179451,20.374,42.608 +179452,22.068,41.469 +179453,15.817,44.688 +179454,17.451,43.672 +179455,19.13,42.623 +179456,20.859,41.541 +179457,14.503,44.595 +179458,16.173,43.632 +179459,17.887,42.639 +179460,19.647,41.615 +179461,13.191,44.501 +179462,14.896,43.592 +179463,16.643,42.655 +179464,18.434,41.689 +179465,11.88,44.406 +179466,13.62,43.551 +179467,15.398,42.671 +179468,17.22,41.764 +179469,10.571,44.311 +179470,12.343,43.511 +179471,14.153,42.687 +179472,16.003,41.839 +179473,9.2634,44.214 +179474,11.068,43.47 +179475,12.907,42.704 +179476,14.784,41.915 +179477,7.957,44.118 +179478,9.7929,43.429 +179479,11.661,42.72 +179480,13.564,41.992 +179481,6.6521,44.02 +179482,8.5185,43.388 +179483,10.414,42.738 +179484,12.341,42.069 +179485,5.3488,43.922 +179486,7.2447,43.347 +179487,9.167,42.755 +179488,11.117,42.146 +179489,4.047,43.823 +179490,5.9716,43.306 +179491,7.9192,42.773 +179492,9.8911,42.224 +179493,2.7468,43.723 +179494,4.6991,43.264 +179495,6.6708,42.791 +179496,8.6631,42.303 +179497,1.4482,43.623 +179498,3.4272,43.223 +179499,5.4219,42.809 +179500,7.4331,42.381 +179501,0.15123,43.523 +179502,2.1559,43.181 +179503,4.1723,42.827 +179504,6.2012,42.46 +179505,358.86,43.422 +179506,0.88533,43.14 +179507,2.9223,42.845 +179508,4.9673,42.539 +179509,357.56,43.32 +179510,359.62,43.098 +179511,1.6716,42.864 +179512,3.7315,42.619 +179513,356.27,43.219 +179514,358.35,43.057 +179515,0.42035,42.883 +179516,2.4938,42.698 +179517,354.98,43.117 +179518,357.08,43.015 +179519,359.17,42.902 +179520,1.2541,42.777 +179521,353.69,43.014 +179522,355.81,42.973 +179523,357.92,42.921 +179524,0.012464,42.857 +179525,352.41,42.912 +179526,354.54,42.932 +179527,356.66,42.94 +179528,358.77,42.937 +179529,351.12,42.809 +179530,353.28,42.89 +179531,355.41,42.959 +179532,357.52,43.016 +179533,349.84,42.706 +179534,352.01,42.849 +179535,354.16,42.978 +179536,356.28,43.095 +179537,348.56,42.604 +179538,350.74,42.807 +179539,352.9,42.998 +179540,355.03,43.175 +179541,347.28,42.501 +179542,349.48,42.766 +179543,351.65,43.017 +179544,353.78,43.254 +179545,346,42.398 +179546,348.22,42.725 +179547,350.39,43.036 +179548,352.52,43.332 +179549,344.72,42.295 +179550,346.95,42.684 +179551,349.13,43.056 +179552,351.27,43.411 +179553,343.45,42.192 +179554,345.69,42.643 +179555,347.88,43.075 +179556,350.01,43.489 +179557,342.18,42.089 +179558,344.43,42.602 +179559,346.62,43.094 +179560,348.75,43.567 +179561,340.91,41.987 +179562,343.17,42.561 +179563,345.36,43.113 +179564,347.49,43.644 +179565,339.64,41.885 +179566,341.91,42.521 +179567,344.1,43.133 +179568,346.23,43.721 +179569,338.38,41.783 +179570,340.65,42.481 +179571,342.84,43.152 +179572,344.96,43.798 +179573,337.11,41.681 +179574,339.39,42.441 +179575,341.58,43.171 +179576,343.7,43.874 +179577,335.85,41.58 +179578,338.13,42.401 +179579,340.32,43.19 +179580,342.43,43.949 +179581,334.59,41.48 +179582,336.87,42.361 +179583,339.06,43.209 +179584,341.16,44.024 +179585,333.34,41.38 +179586,335.62,42.322 +179587,337.8,43.227 +179588,339.89,44.098 +179589,332.08,41.28 +179590,334.36,42.283 +179591,336.53,43.246 +179592,338.61,44.172 +179593,330.83,41.181 +179594,333.11,42.244 +179595,335.27,43.264 +179596,337.34,44.244 +179597,329.58,41.082 +179598,331.85,42.206 +179599,334.01,43.283 +179600,336.06,44.316 +179601,328.33,40.985 +179602,330.6,42.168 +179603,332.74,43.301 +179604,334.78,44.387 +179605,327.08,40.888 +179606,329.34,42.13 +179607,331.48,43.318 +179608,333.5,44.458 +179609,325.84,40.792 +179610,328.09,42.093 +179611,330.21,43.336 +179612,332.22,44.527 +179613,324.59,40.696 +179614,326.84,42.056 +179615,328.95,43.353 +179616,330.93,44.596 +179617,323.35,40.602 +179618,325.59,42.019 +179619,327.68,43.371 +179620,329.65,44.663 +179621,322.12,40.509 +179622,324.34,41.983 +179623,326.41,43.387 +179624,328.36,44.73 +179625,320.88,40.416 +179626,323.09,41.947 +179627,325.14,43.404 +179628,327.07,44.795 +179629,319.64,40.325 +179630,321.84,41.912 +179631,323.88,43.42 +179632,325.78,44.86 +179633,318.41,40.234 +179634,320.59,41.877 +179635,322.61,43.437 +179636,324.49,44.923 +179637,317.18,40.145 +179638,319.34,41.842 +179639,321.34,43.452 +179640,323.2,44.985 +179641,315.95,40.057 +179642,318.1,41.809 +179643,320.07,43.468 +179644,321.9,45.047 +179645,314.73,39.971 +179646,316.85,41.775 +179647,318.8,43.483 +179648,320.61,45.107 +179649,313.51,39.885 +179650,315.6,41.742 +179651,317.53,43.498 +179652,319.31,45.165 +179653,312.28,39.801 +179654,314.36,41.71 +179655,316.26,43.512 +179656,318.01,45.223 +179657,311.06,39.719 +179658,313.11,41.678 +179659,314.98,43.526 +179660,316.71,45.279 +179661,309.85,39.637 +179662,311.87,41.646 +179663,313.71,43.54 +179664,315.41,45.334 +179665,308.63,39.558 +179666,310.63,41.616 +179667,312.44,43.553 +179668,314.1,45.388 +179669,307.42,39.479 +179670,309.38,41.585 +179671,311.16,43.566 +179672,312.8,45.44 +179673,306.21,39.403 +179674,308.14,41.556 +179675,309.89,43.579 +179676,311.49,45.491 +179677,305,39.328 +179678,306.9,41.527 +179679,308.62,43.591 +179680,310.19,45.541 +179681,303.79,39.254 +179682,305.66,41.498 +179683,307.34,43.602 +179684,308.88,45.589 +179685,302.58,39.183 +179686,304.42,41.47 +179687,306.07,43.614 +179688,307.57,45.635 +179689,301.38,39.113 +179690,303.18,41.443 +179691,304.79,43.624 +179692,306.26,45.681 +179693,300.18,39.045 +179694,301.94,41.417 +179695,303.52,43.635 +179696,304.95,45.724 +179697,298.98,38.979 +179698,300.7,41.391 +179699,302.24,43.645 +179700,303.63,45.767 +179701,297.78,38.914 +179702,299.46,41.365 +179703,300.96,43.654 +179704,302.32,45.807 +179705,296.58,38.852 +179706,298.23,41.341 +179707,299.69,43.663 +179708,301,45.846 +179709,295.39,38.791 +179710,296.99,41.317 +179711,298.41,43.671 +179712,299.69,45.884 +179713,294.19,38.733 +179714,295.75,41.294 +179715,297.13,43.679 +179716,298.37,45.92 +179717,293,38.676 +179718,294.52,41.271 +179719,295.85,43.687 +179720,297.05,45.954 +179721,291.81,38.621 +179722,293.28,41.25 +179723,294.57,43.694 +179724,295.73,45.987 +179725,290.62,38.569 +179726,292.05,41.228 +179727,293.3,43.7 +179728,294.42,46.018 +179729,289.43,38.519 +179730,290.81,41.208 +179731,292.02,43.706 +179732,293.09,46.047 +179733,288.25,38.471 +179734,289.58,41.189 +179735,290.74,43.712 +179736,291.77,46.075 +179737,287.06,38.425 +179738,288.34,41.17 +179739,289.46,43.716 +179740,290.45,46.101 +179741,285.88,38.381 +179742,287.11,41.152 +179743,288.18,43.721 +179744,289.13,46.125 +179745,284.7,38.339 +179746,285.88,41.134 +179747,286.9,43.724 +179748,287.81,46.148 +179749,283.52,38.3 +179750,284.64,41.118 +179751,285.62,43.728 +179752,286.48,46.169 +179753,282.34,38.263 +179754,283.41,41.102 +179755,284.34,43.73 +179756,285.16,46.188 +179757,281.16,38.229 +179758,282.18,41.087 +179759,283.06,43.732 +179760,283.83,46.205 +179761,279.98,38.196 +179762,280.95,41.073 +179763,281.78,43.734 +179764,282.51,46.221 +179765,278.81,38.166 +179766,279.72,41.059 +179767,280.49,43.735 +179768,281.18,46.235 +179769,277.63,38.139 +179770,278.48,41.047 +179771,279.21,43.735 +179772,279.85,46.247 +179773,276.46,38.113 +179774,277.25,41.035 +179775,277.93,43.735 +179776,278.52,46.257 +179777,275.28,38.09 +179778,276.02,41.024 +179779,276.65,43.734 +179780,277.2,46.266 +179781,274.11,38.07 +179782,274.79,41.014 +179783,275.37,43.733 +179784,275.87,46.272 +179785,272.94,38.052 +179786,273.56,41.004 +179787,274.09,43.731 +179788,274.54,46.277 +179789,271.77,38.036 +179790,272.33,40.996 +179791,272.8,43.729 +179792,273.21,46.28 +179793,270.6,38.023 +179794,271.1,40.988 +179795,271.52,43.726 +179796,271.88,46.281 +179797,269.43,38.012 +179798,269.87,40.981 +179799,270.24,43.722 +179800,270.55,46.281 +179801,268.26,38.004 +179802,268.64,40.975 +179803,268.96,43.718 +179804,269.22,46.278 +179805,267.09,37.998 +179806,267.41,40.969 +179807,267.68,43.713 +179808,267.89,46.274 +179809,265.92,37.995 +179810,266.18,40.965 +179811,266.39,43.708 +179812,266.56,46.268 +179813,264.75,37.994 +179814,264.95,40.961 +179815,265.11,43.702 +179816,265.23,46.26 +179817,263.58,37.995 +179818,263.72,40.958 +179819,263.83,43.695 +179820,263.9,46.25 +179821,262.41,37.999 +179822,262.5,40.956 +179823,262.55,43.688 +179824,262.57,46.239 +179825,261.24,38.005 +179826,261.27,40.955 +179827,261.26,43.68 +179828,261.24,46.225 +179829,260.07,38.014 +179830,260.04,40.954 +179831,259.98,43.672 +179832,259.91,46.21 +179833,258.9,38.025 +179834,258.81,40.954 +179835,258.7,43.663 +179836,258.58,46.193 +179837,257.73,38.039 +179838,257.58,40.956 +179839,257.42,43.653 +179840,257.25,46.174 +179841,256.56,38.055 +179842,256.35,40.957 +179843,256.14,43.643 +179844,255.92,46.154 +179845,255.39,38.073 +179846,255.12,40.96 +179847,254.85,43.633 +179848,254.6,46.131 +179849,254.22,38.094 +179850,253.89,40.964 +179851,253.57,43.621 +179852,253.27,46.107 +179853,253.05,38.117 +179854,252.66,40.968 +179855,252.29,43.61 +179856,251.94,46.081 +179857,251.88,38.143 +179858,251.43,40.973 +179859,251.01,43.597 +179860,250.61,46.053 +179861,250.71,38.17 +179862,250.2,40.979 +179863,249.73,43.584 +179864,249.28,46.024 +179865,249.54,38.2 +179866,248.97,40.986 +179867,248.45,43.571 +179868,247.95,45.993 +179869,248.36,38.233 +179870,247.74,40.993 +179871,247.17,43.557 +179872,246.62,45.959 +179873,247.19,38.267 +179874,246.51,41.001 +179875,245.88,43.542 +179876,245.3,45.925 +179877,246.02,38.304 +179878,245.28,41.01 +179879,244.6,43.527 +179880,243.97,45.888 +179881,244.84,38.343 +179882,244.05,41.02 +179883,243.32,43.511 +179884,242.65,45.85 +179885,243.66,38.384 +179886,242.82,41.031 +179887,242.04,43.495 +179888,241.32,45.81 +179889,242.49,38.427 +179890,241.59,41.042 +179891,240.76,43.479 +179892,239.99,45.768 +179893,241.31,38.473 +179894,240.36,41.054 +179895,239.48,43.461 +179896,238.67,45.725 +179897,240.13,38.52 +179898,239.12,41.066 +179899,238.2,43.444 +179900,237.35,45.68 +179901,238.95,38.57 +179902,237.89,41.08 +179903,236.92,43.425 +179904,236.02,45.634 +179905,237.76,38.621 +179906,236.66,41.094 +179907,235.65,43.407 +179908,234.7,45.585 +179909,236.58,38.674 +179910,235.43,41.109 +179911,234.37,43.387 +179912,233.38,45.536 +179913,235.4,38.73 +179914,234.19,41.124 +179915,233.09,43.368 +179916,232.06,45.484 +179917,234.21,38.787 +179918,232.96,41.14 +179919,231.81,43.347 +179920,230.74,45.431 +179921,233.02,38.846 +179922,231.73,41.157 +179923,230.53,43.327 +179924,229.42,45.377 +179925,231.83,38.907 +179926,230.49,41.175 +179927,229.26,43.306 +179928,228.1,45.321 +179929,230.64,38.969 +179930,229.26,41.193 +179931,227.98,43.284 +179932,226.79,45.263 +179933,229.45,39.034 +179934,228.02,41.211 +179935,226.7,43.262 +179936,225.47,45.204 +179937,228.26,39.1 +179938,226.79,41.231 +179939,225.43,43.24 +179940,224.15,45.144 +179941,227.06,39.167 +179942,225.55,41.251 +179943,224.15,43.217 +179944,222.84,45.082 +179945,225.87,39.237 +179946,224.31,41.271 +179947,222.87,43.194 +179948,221.53,45.019 +179949,224.67,39.307 +179950,223.08,41.292 +179951,221.6,43.17 +179952,220.21,44.954 +179953,223.47,39.38 +179954,221.84,41.314 +179955,220.33,43.146 +179956,218.9,44.888 +179957,222.27,39.454 +179958,220.6,41.336 +179959,219.05,43.121 +179960,217.59,44.821 +179961,221.06,39.529 +179962,219.36,41.359 +179963,217.78,43.097 +179964,216.28,44.752 +179965,219.86,39.605 +179966,218.12,41.382 +179967,216.5,43.071 +179968,214.98,44.682 +179969,218.65,39.683 +179970,216.88,41.406 +179971,215.23,43.046 +179972,213.67,44.611 +179973,217.44,39.762 +179974,215.64,41.431 +179975,213.96,43.02 +179976,212.37,44.539 +179977,216.23,39.843 +179978,214.4,41.456 +179979,212.69,42.994 +179980,211.06,44.465 +179981,215.02,39.924 +179982,213.16,41.481 +179983,211.42,42.967 +179984,209.76,44.39 +179985,213.8,40.007 +179986,211.92,41.507 +179987,210.15,42.941 +179988,208.46,44.314 +179989,212.58,40.09 +179990,210.68,41.533 +179991,208.88,42.913 +179992,207.16,44.238 +179993,211.36,40.175 +179994,209.44,41.56 +179995,207.61,42.886 +179996,205.86,44.16 +179997,210.14,40.261 +179998,208.19,41.587 +179999,206.34,42.859 +180000,204.57,44.081 +180001,208.92,40.347 +180002,206.95,41.614 +180003,205.07,42.831 +180004,203.27,44.001 +180005,207.7,40.435 +180006,205.7,41.642 +180007,203.8,42.803 +180008,201.98,43.92 +180009,206.47,40.523 +180010,204.46,41.67 +180011,202.53,42.774 +180012,200.69,43.838 +180013,205.24,40.612 +180014,203.21,41.699 +180015,201.27,42.746 +180016,199.39,43.755 +180017,204.01,40.702 +180018,201.97,41.728 +180019,200,42.717 +180020,198.11,43.672 +180021,202.78,40.792 +180022,200.72,41.757 +180023,198.73,42.688 +180024,196.82,43.587 +180025,201.54,40.883 +180026,199.47,41.787 +180027,197.47,42.659 +180028,195.53,43.502 +180029,200.31,40.975 +180030,198.22,41.817 +180031,196.21,42.63 +180032,194.25,43.416 +180033,199.07,41.067 +180034,196.97,41.847 +180035,194.94,42.601 +180036,192.97,43.33 +180037,197.83,41.16 +180038,195.72,41.877 +180039,193.68,42.571 +180040,191.69,43.242 +180041,196.58,41.253 +180042,194.47,41.908 +180043,192.42,42.542 +180044,190.41,43.155 +180045,195.34,41.346 +180046,193.22,41.939 +180047,191.15,42.512 +180048,189.13,43.066 +180049,194.09,41.44 +180050,191.97,41.97 +180051,189.89,42.482 +180052,187.85,42.977 +180053,192.84,41.534 +180054,190.72,42.001 +180055,188.63,42.453 +180056,186.58,42.888 +180057,191.59,41.628 +180058,189.47,42.033 +180059,187.37,42.423 +180060,185.31,42.798 +180061,190.34,41.722 +180062,188.21,42.065 +180063,186.11,42.393 +180064,184.04,42.708 +180065,189.09,41.817 +180066,186.96,42.096 +180067,184.85,42.363 +180068,182.77,42.617 +180069,187.83,41.911 +180070,185.7,42.128 +180071,183.59,42.333 +180072,181.5,42.526 +180073,186.57,42.006 +180074,184.45,42.16 +180075,182.34,42.304 +180076,180.24,42.435 +180077,185.31,42.1 +180078,183.19,42.193 +180079,181.08,42.274 +180080,178.98,42.344 +180081,184.05,42.195 +180082,181.93,42.225 +180083,179.82,42.244 +180084,177.72,42.252 +180085,182.78,42.289 +180086,180.68,42.257 +180087,178.57,42.214 +180088,176.46,42.161 +180089,181.52,42.383 +180090,179.42,42.29 +180091,177.31,42.185 +180092,175.2,42.069 +180093,180.25,42.477 +180094,178.16,42.322 +180095,176.06,42.155 +180096,173.95,41.977 +180097,178.98,42.571 +180098,176.9,42.355 +180099,174.81,42.126 +180100,172.69,41.885 +180101,177.71,42.665 +180102,175.64,42.387 +180103,173.55,42.097 +180104,171.44,41.793 +180105,176.43,42.758 +180106,174.38,42.42 +180107,172.3,42.068 +180108,170.19,41.702 +180109,175.16,42.85 +180110,173.12,42.452 +180111,171.05,42.039 +180112,168.95,41.61 +180113,173.88,42.943 +180114,171.86,42.484 +180115,169.8,42.01 +180116,167.7,41.519 +180117,172.6,43.035 +180118,170.59,42.517 +180119,168.55,41.981 +180120,166.46,41.428 +180121,171.32,43.126 +180122,169.33,42.549 +180123,167.3,41.953 +180124,165.22,41.337 +180125,170.04,43.217 +180126,168.07,42.581 +180127,166.05,41.925 +180128,163.98,41.247 +180129,168.75,43.307 +180130,166.8,42.613 +180131,164.8,41.897 +180132,162.74,41.157 +180133,167.47,43.396 +180134,165.54,42.645 +180135,163.55,41.869 +180136,161.51,41.067 +180137,166.18,43.485 +180138,164.27,42.677 +180139,162.3,41.842 +180140,160.27,40.978 +180141,164.89,43.573 +180142,163,42.709 +180143,161.06,41.815 +180144,159.04,40.89 +180145,163.6,43.66 +180146,161.74,42.74 +180147,159.81,41.788 +180148,157.81,40.802 +180149,162.31,43.747 +180150,160.47,42.772 +180151,158.56,41.762 +180152,156.59,40.715 +180153,161.01,43.833 +180154,159.2,42.803 +180155,157.32,41.736 +180156,155.36,40.628 +180157,159.72,43.917 +180158,157.93,42.834 +180159,156.08,41.71 +180160,154.14,40.543 +180161,158.42,44.001 +180162,156.66,42.865 +180163,154.83,41.684 +180164,152.92,40.458 +180165,157.12,44.084 +180166,155.39,42.895 +180167,153.59,41.659 +180168,151.7,40.374 +180169,155.82,44.166 +180170,154.12,42.925 +180171,152.35,41.635 +180172,150.48,40.29 +180173,154.52,44.247 +180174,152.85,42.955 +180175,151.1,41.611 +180176,149.27,40.208 +180177,153.22,44.327 +180178,151.58,42.985 +180179,149.86,41.587 +180180,148.05,40.127 +180181,151.91,44.406 +180182,150.31,43.015 +180183,148.62,41.564 +180184,146.84,40.047 +180185,150.61,44.484 +180186,149.04,43.044 +180187,147.38,41.541 +180188,145.63,39.968 +180189,149.3,44.56 +180190,147.76,43.073 +180191,146.14,41.518 +180192,144.42,39.89 +180193,147.99,44.636 +180194,146.49,43.101 +180195,144.9,41.496 +180196,143.22,39.813 +180197,146.69,44.71 +180198,145.21,43.13 +180199,143.66,41.475 +180200,142.01,39.737 +180201,145.37,44.783 +180202,143.94,43.157 +180203,142.42,41.454 +180204,140.81,39.663 +180205,144.06,44.855 +180206,142.67,43.185 +180207,141.19,41.434 +180208,139.61,39.59 +180209,142.75,44.925 +180210,141.39,43.212 +180211,139.95,41.414 +180212,138.41,39.519 +180213,141.44,44.994 +180214,140.11,43.239 +180215,138.71,41.395 +180216,137.21,39.449 +180217,140.12,45.062 +180218,138.84,43.265 +180219,137.48,41.376 +180220,136.02,39.38 +180221,138.81,45.128 +180222,137.56,43.291 +180223,136.24,41.358 +180224,134.82,39.313 +180225,137.49,45.193 +180226,136.28,43.317 +180227,135,41.34 +180228,133.63,39.247 +180229,136.17,45.257 +180230,135.01,43.342 +180231,133.77,41.323 +180232,132.44,39.184 +180233,134.85,45.319 +180234,133.73,43.367 +180235,132.53,41.307 +180236,131.25,39.121 +180237,133.53,45.38 +180238,132.45,43.391 +180239,131.3,41.291 +180240,130.06,39.061 +180241,132.21,45.439 +180242,131.17,43.415 +180243,130.07,41.276 +180244,128.87,39.002 +180245,130.89,45.496 +180246,129.89,43.438 +180247,128.83,41.262 +180248,127.69,38.945 +180249,129.57,45.553 +180250,128.61,43.461 +180251,127.6,41.248 +180252,126.51,38.89 +180253,128.24,45.607 +180254,127.33,43.484 +180255,126.37,41.235 +180256,125.32,38.836 +180257,126.92,45.66 +180258,126.05,43.506 +180259,125.13,41.222 +180260,124.14,38.785 +180261,125.6,45.711 +180262,124.77,43.527 +180263,123.9,41.211 +180264,122.96,38.736 +180265,124.27,45.761 +180266,123.49,43.548 +180267,122.67,41.2 +180268,121.78,38.688 +180269,122.95,45.809 +180270,122.21,43.569 +180271,121.44,41.189 +180272,120.6,38.643 +180273,121.62,45.856 +180274,120.93,43.589 +180275,120.2,41.18 +180276,119.43,38.599 +180277,120.29,45.9 +180278,119.65,43.608 +180279,118.97,41.171 +180280,118.25,38.558 +180281,118.96,45.944 +180282,118.37,43.627 +180283,117.74,41.162 +180284,117.08,38.518 +180285,117.64,45.985 +180286,117.09,43.646 +180287,116.51,41.155 +180288,115.9,38.481 +180289,116.31,46.025 +180290,115.8,43.663 +180291,115.28,41.148 +180292,114.73,38.446 +180293,114.98,46.063 +180294,114.52,43.681 +180295,114.05,41.142 +180296,113.55,38.413 +180297,113.65,46.099 +180298,113.24,43.698 +180299,112.82,41.137 +180300,112.38,38.383 +180301,112.32,46.133 +180302,111.96,43.714 +180303,111.59,41.133 +180304,111.21,38.355 +180305,110.99,46.166 +180306,110.68,43.729 +180307,110.36,41.129 +180308,110.04,38.328 +180309,109.66,46.197 +180310,109.39,43.745 +180311,109.13,41.126 +180312,108.87,38.305 +180313,108.33,46.226 +180314,108.11,43.759 +180315,107.9,41.124 +180316,107.7,38.283 +180317,107,46.254 +180318,106.83,43.773 +180319,106.67,41.123 +180320,106.53,38.264 +180321,105.67,46.279 +180322,105.54,43.787 +180323,105.44,41.122 +180324,105.36,38.247 +180325,104.34,46.303 +180326,104.26,43.799 +180327,104.21,41.123 +180328,104.19,38.233 +180329,103.01,46.325 +180330,102.98,43.812 +180331,102.98,41.124 +180332,103.02,38.221 +180333,101.67,46.346 +180334,101.69,43.823 +180335,101.75,41.126 +180336,101.85,38.211 +180337,100.34,46.364 +180338,100.41,43.834 +180339,100.52,41.128 +180340,100.68,38.204 +180341,99.012,46.381 +180342,99.128,43.845 +180343,99.288,41.132 +180344,99.512,38.199 +180345,97.681,46.396 +180346,97.844,43.855 +180347,98.058,41.136 +180348,98.343,38.196 +180349,96.349,46.409 +180350,96.561,43.864 +180351,96.828,41.141 +180352,97.173,38.196 +180353,95.018,46.42 +180354,95.278,43.873 +180355,95.598,41.147 +180356,96.003,38.199 +180357,93.688,46.429 +180358,93.994,43.881 +180359,94.367,41.154 +180360,94.833,38.204 +180361,92.357,46.437 +180362,92.711,43.889 +180363,93.137,41.161 +180364,93.662,38.211 +180365,91.026,46.442 +180366,91.428,43.896 +180367,91.906,41.17 +180368,92.491,38.22 +180369,89.696,46.446 +180370,90.145,43.902 +180371,90.675,41.179 +180372,91.32,38.233 +180373,88.366,46.448 +180374,88.862,43.908 +180375,89.444,41.189 +180376,90.147,38.247 +180377,87.037,46.449 +180378,87.579,43.913 +180379,88.213,41.2 +180380,88.974,38.264 +180381,85.707,46.447 +180382,86.296,43.918 +180383,86.981,41.211 +180384,87.801,38.283 +180385,84.379,46.444 +180386,85.014,43.922 +180387,85.75,41.224 +180388,86.626,38.305 +180389,83.05,46.438 +180390,83.731,43.926 +180391,84.518,41.237 +180392,85.451,38.329 +180393,81.722,46.432 +180394,82.449,43.929 +180395,83.285,41.251 +180396,84.274,38.356 +180397,80.395,46.423 +180398,81.167,43.931 +180399,82.053,41.265 +180400,83.097,38.385 +180401,79.068,46.412 +180402,79.885,43.933 +180403,80.82,41.281 +180404,81.918,38.416 +180405,77.742,46.4 +180406,78.603,43.934 +180407,79.586,41.297 +180408,80.739,38.449 +180409,76.416,46.386 +180410,77.321,43.935 +180411,78.353,41.314 +180412,79.558,38.485 +180413,75.091,46.37 +180414,76.04,43.935 +180415,77.119,41.332 +180416,78.376,38.523 +180417,73.766,46.353 +180418,74.759,43.934 +180419,75.884,41.351 +180420,77.193,38.564 +180421,72.443,46.333 +180422,73.478,43.933 +180423,74.65,41.37 +180424,76.009,38.606 +180425,71.12,46.312 +180426,72.197,43.932 +180427,73.415,41.39 +180428,74.823,38.651 +180429,69.797,46.29 +180430,70.917,43.93 +180431,72.179,41.411 +180432,73.635,38.698 +180433,68.476,46.265 +180434,69.637,43.927 +180435,70.943,41.433 +180436,72.447,38.748 +180437,67.156,46.239 +180438,68.357,43.924 +180439,69.706,41.455 +180440,71.256,38.799 +180441,65.836,46.212 +180442,67.078,43.92 +180443,68.469,41.478 +180444,70.064,38.853 +180445,64.517,46.182 +180446,65.798,43.916 +180447,67.232,41.502 +180448,68.871,38.908 +180449,63.199,46.152 +180450,64.52,43.912 +180451,65.994,41.527 +180452,67.676,38.966 +180453,61.883,46.119 +180454,63.241,43.906 +180455,64.756,41.552 +180456,66.479,39.025 +180457,60.567,46.085 +180458,61.963,43.901 +180459,63.517,41.578 +180460,65.28,39.087 +180461,59.252,46.049 +180462,60.685,43.895 +180463,62.277,41.604 +180464,64.079,39.151 +180465,57.938,46.012 +180466,59.408,43.888 +180467,61.037,41.631 +180468,62.877,39.216 +180469,56.626,45.973 +180470,58.131,43.881 +180471,59.796,41.659 +180472,61.673,39.284 +180473,55.314,45.933 +180474,56.854,43.873 +180475,58.555,41.688 +180476,60.467,39.353 +180477,54.004,45.891 +180478,55.578,43.865 +180479,57.314,41.717 +180480,59.259,39.424 +180481,52.695,45.848 +180482,54.302,43.857 +180483,56.071,41.747 +180484,58.049,39.496 +180485,51.387,45.803 +180486,53.027,43.848 +180487,54.828,41.777 +180488,56.838,39.571 +180489,50.08,45.757 +180490,51.752,43.838 +180491,53.585,41.808 +180492,55.624,39.647 +180493,48.775,45.709 +180494,50.478,43.829 +180495,52.34,41.84 +180496,54.408,39.725 +180497,47.471,45.66 +180498,49.204,43.818 +180499,51.096,41.872 +180500,53.19,39.804 +180501,46.168,45.61 +180502,47.93,43.808 +180503,49.85,41.905 +180504,51.97,39.885 +180505,44.867,45.559 +180506,46.657,43.797 +180507,48.604,41.938 +180508,50.748,39.967 +180509,43.567,45.506 +180510,45.385,43.786 +180511,47.357,41.972 +180512,49.524,40.051 +180513,42.268,45.452 +180514,44.113,43.774 +180515,46.11,42.007 +180516,48.298,40.136 +180517,40.971,45.396 +180518,42.841,43.762 +180519,44.862,42.042 +180520,47.07,40.223 +180521,39.676,45.34 +180522,41.57,43.749 +180523,43.613,42.077 +180524,45.84,40.31 +180525,38.382,45.282 +180526,40.3,43.737 +180527,42.364,42.113 +180528,44.607,40.399 +180529,37.089,45.223 +180530,39.03,43.724 +180531,41.113,42.149 +180532,43.372,40.49 +180533,35.798,45.163 +180534,37.76,43.71 +180535,39.863,42.186 +180536,42.136,40.581 +180537,34.509,45.102 +180538,36.491,43.697 +180539,38.611,42.223 +180540,40.897,40.674 +180541,33.221,45.04 +180542,35.223,43.683 +180543,37.359,42.261 +180544,39.656,40.767 +180545,31.934,44.977 +180546,33.955,43.669 +180547,36.106,42.299 +180548,38.413,40.862 +180549,30.65,44.913 +180550,32.688,43.654 +180551,34.852,42.338 +180552,37.167,40.957 +180553,29.367,44.848 +180554,31.421,43.639 +180555,33.598,42.377 +180556,35.92,41.054 +180557,28.086,44.782 +180558,30.155,43.624 +180559,32.343,42.416 +180560,34.67,41.151 +180561,26.806,44.715 +180562,28.889,43.609 +180563,31.087,42.456 +180564,33.419,41.249 +180565,25.528,44.647 +180566,27.624,43.594 +180567,29.83,42.496 +180568,32.165,41.348 +180569,24.252,44.579 +180570,26.36,43.578 +180571,28.573,42.536 +180572,30.909,41.448 +180573,22.978,44.509 +180574,25.096,43.563 +180575,27.315,42.577 +180576,29.651,41.548 +180577,21.705,44.439 +180578,23.832,43.547 +180579,26.056,42.618 +180580,28.391,41.649 +180581,20.435,44.369 +180582,22.57,43.531 +180583,24.797,42.659 +180584,27.128,41.75 +180585,19.166,44.297 +180586,21.308,43.514 +180587,23.537,42.7 +180588,25.864,41.852 +180589,17.899,44.225 +180590,20.046,43.498 +180591,22.276,42.742 +180592,24.598,41.955 +180593,16.633,44.153 +180594,18.785,43.482 +180595,21.014,42.784 +180596,23.329,42.058 +180597,15.37,44.08 +180598,17.525,43.465 +180599,19.752,42.826 +180600,22.059,42.161 +180601,14.108,44.006 +180602,16.265,43.449 +180603,18.489,42.869 +180604,20.786,42.264 +180605,12.849,43.932 +180606,15.006,43.432 +180607,17.225,42.911 +180608,19.512,42.368 +180609,11.591,43.858 +180610,13.747,43.415 +180611,15.96,42.954 +180612,18.235,42.472 +180613,10.335,43.783 +180614,12.489,43.399 +180615,14.695,42.997 +180616,16.957,42.576 +180617,9.081,43.708 +180618,11.232,43.382 +180619,13.429,43.04 +180620,15.677,42.68 +180621,7.829,43.632 +180622,9.9751,43.365 +180623,12.163,43.083 +180624,14.394,42.785 +180625,6.5788,43.556 +180626,8.7189,43.348 +180627,10.895,43.126 +180628,13.11,42.889 +180629,5.3306,43.481 +180630,7.4633,43.332 +180631,9.6272,43.169 +180632,11.824,42.993 +180633,4.0843,43.405 +180634,6.2083,43.315 +180635,8.3585,43.213 +180636,10.536,43.098 +180637,2.8399,43.328 +180638,4.9539,43.298 +180639,7.089,43.256 +180640,9.2466,43.202 +180641,1.5975,43.252 +180642,3.7,43.282 +180643,5.8189,43.3 +180644,7.9551,43.306 +180645,0.35695,43.176 +180646,2.4468,43.265 +180647,4.5481,43.343 +180648,6.6618,43.41 +180649,359.12,43.1 +180650,1.1941,43.249 +180651,3.2766,43.387 +180652,5.3667,43.513 +180653,357.88,43.024 +180654,359.94,43.233 +180655,2.0045,43.43 +180656,4.0699,43.616 +180657,356.65,42.948 +180658,358.69,43.216 +180659,0.7317,43.474 +180660,2.7714,43.719 +180661,355.41,42.872 +180662,357.44,43.2 +180663,359.46,43.517 +180664,1.4713,43.822 +180665,354.18,42.796 +180666,356.19,43.185 +180667,358.18,43.561 +180668,0.16948,43.924 +180669,352.95,42.721 +180670,354.94,43.169 +180671,356.91,43.604 +180672,358.87,44.025 +180673,351.73,42.645 +180674,353.69,43.154 +180675,355.63,43.647 +180676,357.56,44.126 +180677,350.5,42.571 +180678,352.44,43.138 +180679,354.36,43.691 +180680,356.25,44.227 +180681,349.28,42.496 +180682,351.19,43.123 +180683,353.08,43.734 +180684,354.95,44.327 +180685,348.06,42.422 +180686,349.95,43.109 +180687,351.8,43.777 +180688,353.64,44.426 +180689,346.84,42.349 +180690,348.7,43.094 +180691,350.53,43.819 +180692,352.33,44.525 +180693,345.62,42.276 +180694,347.45,43.08 +180695,349.25,43.862 +180696,351.01,44.623 +180697,344.4,42.204 +180698,346.2,43.066 +180699,347.97,43.905 +180700,349.7,44.72 +180701,343.19,42.132 +180702,344.96,43.052 +180703,346.69,43.947 +180704,348.38,44.816 +180705,341.98,42.061 +180706,343.71,43.039 +180707,345.41,43.989 +180708,347.07,44.912 +180709,340.77,41.99 +180710,342.47,43.026 +180711,344.13,44.031 +180712,345.75,45.006 +180713,339.56,41.921 +180714,341.23,43.013 +180715,342.85,44.073 +180716,344.43,45.1 +180717,338.35,41.852 +180718,339.98,43.001 +180719,341.57,44.114 +180720,343.11,45.193 +180721,337.15,41.784 +180722,338.74,42.989 +180723,340.28,44.155 +180724,341.79,45.285 +180725,335.94,41.717 +180726,337.5,42.977 +180727,339,44.196 +180728,340.47,45.376 +180729,334.74,41.651 +180730,336.25,42.966 +180731,337.72,44.237 +180732,339.14,45.466 +180733,333.54,41.586 +180734,335.01,42.955 +180735,336.43,44.277 +180736,337.82,45.554 +180737,332.34,41.522 +180738,333.77,42.945 +180739,335.15,44.317 +180740,336.49,45.642 +180741,331.15,41.459 +180742,332.53,42.935 +180743,333.86,44.357 +180744,335.16,45.729 +180745,329.95,41.397 +180746,331.29,42.926 +180747,332.58,44.397 +180748,333.83,45.814 +180749,328.76,41.337 +180750,330.05,42.917 +180751,331.29,44.436 +180752,332.5,45.898 +180753,327.56,41.277 +180754,328.81,42.908 +180755,330.01,44.474 +180756,331.17,45.981 +180757,326.37,41.219 +180758,327.57,42.9 +180759,328.72,44.513 +180760,329.84,46.063 +180761,325.18,41.162 +180762,326.33,42.893 +180763,327.43,44.551 +180764,328.51,46.144 +180765,323.99,41.107 +180766,325.09,42.886 +180767,326.15,44.589 +180768,327.18,46.223 +180769,322.8,41.053 +180770,323.85,42.879 +180771,324.86,44.626 +180772,325.84,46.301 +180773,321.62,41 +180774,322.61,42.873 +180775,323.57,44.663 +180776,324.51,46.377 +180777,320.43,40.949 +180778,321.37,42.868 +180779,322.28,44.699 +180780,323.18,46.452 +180781,319.25,40.899 +180782,320.13,42.863 +180783,321,44.735 +180784,321.84,46.526 +180785,318.07,40.851 +180786,318.89,42.859 +180787,319.71,44.771 +180788,320.5,46.598 +180789,316.89,40.805 +180790,317.66,42.855 +180791,318.42,44.806 +180792,319.17,46.669 +180793,315.7,40.76 +180794,316.42,42.852 +180795,317.13,44.841 +180796,317.83,46.738 +180797,314.52,40.717 +180798,315.18,42.85 +180799,315.84,44.875 +180800,316.49,46.806 +180801,313.35,40.675 +180802,313.95,42.848 +180803,314.55,44.909 +180804,315.15,46.873 +180805,312.17,40.635 +180806,312.71,42.847 +180807,313.26,44.942 +180808,313.81,46.938 +180809,310.99,40.597 +180810,311.47,42.846 +180811,311.97,44.975 +180812,312.47,47.001 +180813,309.81,40.561 +180814,310.23,42.846 +180815,310.68,45.007 +180816,311.13,47.063 +180817,308.64,40.527 +180818,309,42.847 +180819,309.38,45.039 +180820,309.79,47.123 +180821,307.46,40.494 +180822,307.76,42.848 +180823,308.09,45.071 +180824,308.45,47.181 +180825,306.29,40.464 +180826,306.53,42.85 +180827,306.8,45.102 +180828,307.11,47.238 +180829,305.11,40.435 +180830,305.29,42.853 +180831,305.51,45.132 +180832,305.77,47.294 +180833,303.94,40.409 +180834,304.05,42.856 +180835,304.22,45.162 +180836,304.42,47.347 +180837,302.76,40.384 +180838,302.82,42.86 +180839,302.93,45.191 +180840,303.08,47.399 +180841,301.59,40.361 +180842,301.58,42.865 +180843,301.63,45.22 +180844,301.74,47.45 +180845,300.42,40.341 +180846,300.34,42.87 +180847,300.34,45.248 +180848,300.4,47.498 +180849,299.24,40.322 +180850,299.11,42.876 +180851,299.05,45.276 +180852,299.06,47.545 +180853,298.07,40.306 +180854,297.87,42.883 +180855,297.76,45.303 +180856,297.71,47.591 +180857,296.9,40.291 +180858,296.63,42.891 +180859,296.47,45.33 +180860,296.37,47.634 +180861,295.73,40.279 +180862,295.4,42.899 +180863,295.17,45.356 +180864,295.03,47.676 +180865,294.55,40.269 +180866,294.16,42.908 +180867,293.88,45.381 +180868,293.69,47.716 +180869,293.38,40.261 +180870,292.92,42.918 +180871,292.59,45.406 +180872,292.34,47.755 +180873,292.21,40.255 +180874,291.69,42.928 +180875,291.3,45.431 +180876,291,47.791 +180877,291.03,40.251 +180878,290.45,42.939 +180879,290,45.454 +180880,289.66,47.826 +180881,289.86,40.25 +180882,289.21,42.951 +180883,288.71,45.478 +180884,288.32,47.859 +180885,288.68,40.251 +180886,287.97,42.964 +180887,287.42,45.5 +180888,286.97,47.891 +180889,287.51,40.254 +180890,286.74,42.977 +180891,286.13,45.522 +180892,285.63,47.92 +180893,286.33,40.259 +180894,285.5,42.991 +180895,284.83,45.544 +180896,284.29,47.948 +180897,285.15,40.266 +180898,284.26,43.006 +180899,283.54,45.565 +180900,282.95,47.974 +180901,283.98,40.276 +180902,283.02,43.022 +180903,282.25,45.585 +180904,281.61,47.999 +180905,282.8,40.288 +180906,281.78,43.038 +180907,280.96,45.605 +180908,280.27,48.021 +180909,281.62,40.302 +180910,280.54,43.055 +180911,279.66,45.624 +180912,278.93,48.042 +180913,280.44,40.319 +180914,279.3,43.073 +180915,278.37,45.643 +180916,277.59,48.061 +180917,279.26,40.338 +180918,278.06,43.092 +180919,277.08,45.661 +180920,276.25,48.078 +180921,278.07,40.358 +180922,276.82,43.111 +180923,275.79,45.679 +180924,274.91,48.094 +180925,276.89,40.382 +180926,275.58,43.131 +180927,274.5,45.695 +180928,273.58,48.108 +180929,275.71,40.407 +180930,274.34,43.152 +180931,273.21,45.712 +180932,272.24,48.12 +180933,274.52,40.435 +180934,273.1,43.173 +180935,271.92,45.728 +180936,270.9,48.13 +180937,273.33,40.465 +180938,271.86,43.196 +180939,270.62,45.743 +180940,269.57,48.139 +180941,272.15,40.497 +180942,270.62,43.219 +180943,269.33,45.757 +180944,268.23,48.145 +180945,270.96,40.531 +180946,269.37,43.243 +180947,268.04,45.772 +180948,266.9,48.15 +180949,269.77,40.568 +180950,268.13,43.267 +180951,266.75,45.785 +180952,265.56,48.154 +180953,268.57,40.606 +180954,266.89,43.292 +180955,265.46,45.798 +180956,264.23,48.155 +180957,267.38,40.647 +180958,265.64,43.318 +180959,264.17,45.81 +180960,262.9,48.155 +180961,266.18,40.69 +180962,264.4,43.345 +180963,262.88,45.822 +180964,261.57,48.154 +180965,264.98,40.735 +180966,263.15,43.372 +180967,261.59,45.834 +180968,260.24,48.15 +180969,263.79,40.782 +180970,261.91,43.4 +180971,260.31,45.844 +180972,258.91,48.145 +180973,262.58,40.832 +180974,260.66,43.429 +180975,259.02,45.855 +180976,257.58,48.138 +180977,261.38,40.883 +180978,259.42,43.458 +180979,257.73,45.864 +180980,256.25,48.13 +180981,260.18,40.936 +180982,258.17,43.489 +180983,256.44,45.873 +180984,254.93,48.12 +180985,258.97,40.992 +180986,256.92,43.519 +180987,255.15,45.882 +180988,253.6,48.108 +180989,257.76,41.049 +180990,255.67,43.551 +180991,253.87,45.89 +180992,252.28,48.095 +180993,256.55,41.109 +180994,254.42,43.583 +180995,252.58,45.898 +180996,250.95,48.08 +180997,255.34,41.17 +180998,253.17,43.616 +180999,251.29,45.905 +181000,249.63,48.063 +181001,254.12,41.233 +181002,251.92,43.649 +181003,250.01,45.911 +181004,248.31,48.045 +181005,252.91,41.298 +181006,250.67,43.683 +181007,248.72,45.918 +181008,246.99,48.026 +181009,251.69,41.365 +181010,249.42,43.718 +181011,247.44,45.923 +181012,245.67,48.005 +181013,250.47,41.434 +181014,248.17,43.753 +181015,246.15,45.928 +181016,244.35,47.982 +181017,249.25,41.504 +181018,246.91,43.789 +181019,244.87,45.933 +181020,243.04,47.958 +181021,248.02,41.577 +181022,245.66,43.826 +181023,243.58,45.937 +181024,241.72,47.933 +181025,246.79,41.651 +181026,244.41,43.863 +181027,242.3,45.941 +181028,240.41,47.906 +181029,245.56,41.726 +181030,243.15,43.901 +181031,241.02,45.944 +181032,239.1,47.877 +181033,244.33,41.804 +181034,241.9,43.939 +181035,239.73,45.947 +181036,237.79,47.848 +181037,243.1,41.883 +181038,240.64,43.978 +181039,238.45,45.95 +181040,236.48,47.817 +181041,241.86,41.963 +181042,239.38,44.017 +181043,237.17,45.952 +181044,235.17,47.784 +181045,240.63,42.045 +181046,238.12,44.057 +181047,235.89,45.953 +181048,233.86,47.75 +181049,239.38,42.128 +181050,236.87,44.097 +181051,234.61,45.954 +181052,232.56,47.715 +181053,238.14,42.213 +181054,235.61,44.138 +181055,233.33,45.955 +181056,231.26,47.679 +181057,236.9,42.3 +181058,234.35,44.18 +181059,232.05,45.956 +181060,229.95,47.641 +181061,235.65,42.387 +181062,233.08,44.222 +181063,230.77,45.956 +181064,228.65,47.603 +181065,234.4,42.476 +181066,231.82,44.264 +181067,229.49,45.955 +181068,227.36,47.563 +181069,233.15,42.566 +181070,230.56,44.307 +181071,228.21,45.955 +181072,226.06,47.521 +181073,231.89,42.658 +181074,229.3,44.351 +181075,226.94,45.954 +181076,224.76,47.479 +181077,230.64,42.75 +181078,228.03,44.394 +181079,225.66,45.952 +181080,223.47,47.436 +181081,229.38,42.844 +181082,226.77,44.439 +181083,224.38,45.951 +181084,222.18,47.391 +181085,228.12,42.939 +181086,225.5,44.483 +181087,223.11,45.949 +181088,220.89,47.346 +181089,226.85,43.035 +181090,224.24,44.528 +181091,221.83,45.947 +181092,219.6,47.299 +181093,225.59,43.132 +181094,222.97,44.574 +181095,220.56,45.944 +181096,218.31,47.252 +181097,224.32,43.23 +181098,221.7,44.619 +181099,219.28,45.941 +181100,217.03,47.203 +181101,223.05,43.328 +181102,220.43,44.665 +181103,218.01,45.938 +181104,215.74,47.154 +181105,221.78,43.428 +181106,219.16,44.712 +181107,216.74,45.935 +181108,214.46,47.104 +181109,220.51,43.528 +181110,217.89,44.759 +181111,215.46,45.931 +181112,213.18,47.053 +181113,219.23,43.629 +181114,216.62,44.806 +181115,214.19,45.928 +181116,211.9,47.001 +181117,217.95,43.731 +181118,215.35,44.853 +181119,212.92,45.924 +181120,210.63,46.948 +181121,216.67,43.834 +181122,214.08,44.901 +181123,211.65,45.919 +181124,209.35,46.894 +181125,215.39,43.937 +181126,212.81,44.949 +181127,210.38,45.915 +181128,208.08,46.84 +181129,214.1,44.041 +181130,211.53,44.997 +181131,209.11,45.911 +181132,206.81,46.785 +181133,212.81,44.145 +181134,210.26,45.046 +181135,207.84,45.906 +181136,205.54,46.73 +181137,211.52,44.25 +181138,208.98,45.094 +181139,206.57,45.901 +181140,204.27,46.674 +181141,210.23,44.355 +181142,207.71,45.143 +181143,205.3,45.896 +181144,203.01,46.617 +181145,208.94,44.461 +181146,206.43,45.192 +181147,204.04,45.891 +181148,201.74,46.56 +181149,207.64,44.567 +181150,205.15,45.242 +181151,202.77,45.886 +181152,200.48,46.502 +181153,206.35,44.673 +181154,203.87,45.291 +181155,201.5,45.881 +181156,199.22,46.444 +181157,205.05,44.78 +181158,202.59,45.341 +181159,200.24,45.875 +181160,197.97,46.386 +181161,203.74,44.887 +181162,201.31,45.391 +181163,198.97,45.87 +181164,196.71,46.327 +181165,202.44,44.994 +181166,200.03,45.44 +181167,197.71,45.864 +181168,195.46,46.268 +181169,201.14,45.101 +181170,198.75,45.49 +181171,196.44,45.859 +181172,194.2,46.208 +181173,199.83,45.208 +181174,197.47,45.54 +181175,195.18,45.853 +181176,192.95,46.148 +181177,198.52,45.315 +181178,196.19,45.591 +181179,193.92,45.848 +181180,191.71,46.088 +181181,197.21,45.422 +181182,194.9,45.641 +181183,192.66,45.842 +181184,190.46,46.028 +181185,195.9,45.529 +181186,193.62,45.691 +181187,191.39,45.837 +181188,189.22,45.968 +181189,194.58,45.636 +181190,192.33,45.741 +181191,190.13,45.831 +181192,187.97,45.907 +181193,193.27,45.743 +181194,191.05,45.792 +181195,188.87,45.826 +181196,186.73,45.847 +181197,191.95,45.849 +181198,189.76,45.842 +181199,187.61,45.821 +181200,185.49,45.786 +181201,190.63,45.956 +181202,188.48,45.892 +181203,186.35,45.815 +181204,184.26,45.726 +181205,189.31,46.062 +181206,187.19,45.943 +181207,185.09,45.81 +181208,183.02,45.666 +181209,187.98,46.168 +181210,185.9,45.993 +181211,183.83,45.805 +181212,181.79,45.605 +181213,186.66,46.273 +181214,184.61,46.043 +181215,182.58,45.8 +181216,180.56,45.545 +181217,185.33,46.378 +181218,183.32,46.093 +181219,181.32,45.795 +181220,179.33,45.485 +181221,184.01,46.483 +181222,182.03,46.143 +181223,180.06,45.791 +181224,178.1,45.426 +181225,182.68,46.587 +181226,180.74,46.193 +181227,178.81,45.786 +181228,176.87,45.366 +181229,181.35,46.691 +181230,179.45,46.243 +181231,177.55,45.782 +181232,175.65,45.307 +181233,180.02,46.794 +181234,178.16,46.293 +181235,176.29,45.778 +181236,174.43,45.249 +181237,178.68,46.896 +181238,176.86,46.342 +181239,175.04,45.774 +181240,173.21,45.191 +181241,177.35,46.998 +181242,175.57,46.392 +181243,173.78,45.77 +181244,171.99,45.133 +181245,176.01,47.099 +181246,174.28,46.441 +181247,172.53,45.766 +181248,170.77,45.076 +181249,174.68,47.199 +181250,172.98,46.49 +181251,171.28,45.763 +181252,169.56,45.019 +181253,173.34,47.299 +181254,171.69,46.539 +181255,170.02,45.76 +181256,168.34,44.963 +181257,172,47.398 +181258,170.39,46.588 +181259,168.77,45.757 +181260,167.13,44.907 +181261,170.66,47.496 +181262,169.1,46.636 +181263,167.52,45.755 +181264,165.92,44.852 +181265,169.32,47.593 +181266,167.8,46.685 +181267,166.27,45.753 +181268,164.71,44.798 +181269,167.98,47.69 +181270,166.5,46.733 +181271,165.01,45.751 +181272,163.5,44.745 +181273,166.63,47.785 +181274,165.21,46.78 +181275,163.76,45.749 +181276,162.3,44.692 +181277,165.29,47.88 +181278,163.91,46.828 +181279,162.51,45.748 +181280,161.09,44.64 +181281,163.94,47.973 +181282,162.61,46.875 +181283,161.26,45.747 +181284,159.89,44.589 +181285,162.6,48.066 +181286,161.31,46.922 +181287,160.01,45.747 +181288,158.69,44.54 +181289,161.25,48.157 +181290,160.01,46.969 +181291,158.76,45.747 +181292,157.49,44.491 +181293,159.9,48.247 +181294,158.71,47.015 +181295,157.51,45.747 +181296,156.29,44.442 +181297,158.55,48.337 +181298,157.41,47.061 +181299,156.26,45.748 +181300,155.09,44.395 +181301,157.2,48.425 +181302,156.11,47.106 +181303,155.01,45.749 +181304,153.89,44.35 +181305,155.85,48.512 +181306,154.81,47.152 +181307,153.76,45.75 +181308,152.7,44.305 +181309,154.5,48.598 +181310,153.51,47.197 +181311,152.51,45.752 +181312,151.51,44.261 +181313,153.15,48.682 +181314,152.21,47.241 +181315,151.27,45.754 +181316,150.31,44.219 +181317,151.79,48.765 +181318,150.91,47.286 +181319,150.02,45.757 +181320,149.12,44.177 +181321,150.44,48.848 +181322,149.61,47.329 +181323,148.77,45.76 +181324,147.93,44.137 +181325,149.09,48.928 +181326,148.3,47.373 +181327,147.52,45.764 +181328,146.74,44.099 +181329,147.73,49.008 +181330,147,47.416 +181331,146.27,45.768 +181332,145.55,44.061 +181333,146.38,49.086 +181334,145.7,47.458 +181335,145.03,45.773 +181336,144.36,44.025 +181337,145.02,49.163 +181338,144.4,47.501 +181339,143.78,45.778 +181340,143.18,43.991 +181341,143.67,49.238 +181342,143.09,47.542 +181343,142.53,45.784 +181344,141.99,43.958 +181345,142.31,49.312 +181346,141.79,47.584 +181347,141.28,45.79 +181348,140.8,43.926 +181349,140.95,49.385 +181350,140.48,47.625 +181351,140.04,45.797 +181352,139.62,43.896 +181353,139.6,49.456 +181354,139.18,47.665 +181355,138.79,45.804 +181356,138.43,43.867 +181357,138.24,49.526 +181358,137.88,47.705 +181359,137.54,45.812 +181360,137.25,43.84 +181361,136.88,49.594 +181362,136.57,47.744 +181363,136.3,45.821 +181364,136.07,43.815 +181365,135.52,49.661 +181366,135.27,47.784 +181367,135.05,45.83 +181368,134.88,43.791 +181369,134.17,49.726 +181370,133.96,47.822 +181371,133.8,45.839 +181372,133.7,43.769 +181373,132.81,49.79 +181374,132.66,47.86 +181375,132.56,45.849 +181376,132.52,43.748 +181377,131.45,49.852 +181378,131.35,47.898 +181379,131.31,45.86 +181380,131.34,43.729 +181381,130.09,49.913 +181382,130.05,47.935 +181383,130.06,45.872 +181384,130.15,43.712 +181385,128.73,49.972 +181386,128.74,47.971 +181387,128.82,45.883 +181388,128.97,43.697 +181389,127.38,50.029 +181390,127.44,48.007 +181391,127.57,45.896 +181392,127.79,43.683 +181393,126.02,50.085 +181394,126.13,48.043 +181395,126.32,45.909 +181396,126.61,43.672 +181397,124.66,50.14 +181398,124.83,48.078 +181399,125.07,45.923 +181400,125.43,43.662 +181401,123.3,50.192 +181402,123.52,48.112 +181403,123.83,45.937 +181404,124.24,43.654 +181405,121.94,50.243 +181406,122.22,48.146 +181407,122.58,45.952 +181408,123.06,43.647 +181409,120.59,50.293 +181410,120.91,48.18 +181411,121.33,45.968 +181412,121.88,43.643 +181413,119.23,50.341 +181414,119.6,48.213 +181415,120.08,45.984 +181416,120.7,43.64 +181417,117.87,50.387 +181418,118.3,48.245 +181419,118.84,46.001 +181420,119.51,43.64 +181421,116.51,50.432 +181422,116.99,48.277 +181423,117.59,46.019 +181424,118.33,43.641 +181425,115.16,50.474 +181426,115.69,48.308 +181427,116.34,46.037 +181428,117.14,43.644 +181429,113.8,50.516 +181430,114.38,48.339 +181431,115.09,46.056 +181432,115.96,43.65 +181433,112.44,50.555 +181434,113.08,48.369 +181435,113.84,46.075 +181436,114.77,43.657 +181437,111.09,50.593 +181438,111.77,48.398 +181439,112.59,46.095 +181440,113.59,43.666 +181441,109.73,50.629 +181442,110.47,48.427 +181443,111.34,46.116 +181444,112.4,43.677 +181445,108.38,50.664 +181446,109.16,48.456 +181447,110.09,46.137 +181448,111.21,43.69 +181449,107.03,50.697 +181450,107.86,48.484 +181451,108.84,46.159 +181452,110.02,43.705 +181453,105.67,50.728 +181454,106.55,48.511 +181455,107.59,46.182 +181456,108.83,43.722 +181457,104.32,50.758 +181458,105.25,48.538 +181459,106.34,46.206 +181460,107.64,43.741 +181461,102.97,50.785 +181462,103.94,48.564 +181463,105.09,46.23 +181464,106.45,43.762 +181465,101.61,50.812 +181466,102.64,48.59 +181467,103.84,46.254 +181468,105.26,43.785 +181469,100.26,50.836 +181470,101.34,48.615 +181471,102.59,46.28 +181472,104.07,43.81 +181473,98.913,50.859 +181474,100.03,48.64 +181475,101.33,46.306 +181476,102.87,43.837 +181477,97.564,50.88 +181478,98.73,48.664 +181479,100.08,46.332 +181480,101.67,43.866 +181481,96.215,50.9 +181482,97.426,48.687 +181483,98.827,46.36 +181484,100.47,43.897 +181485,94.867,50.918 +181486,96.123,48.71 +181487,97.573,46.388 +181488,99.275,43.93 +181489,93.52,50.934 +181490,94.821,48.732 +181491,96.318,46.416 +181492,98.074,43.965 +181493,92.174,50.948 +181494,93.518,48.754 +181495,95.063,46.446 +181496,96.872,44.002 +181497,90.828,50.961 +181498,92.216,48.776 +181499,93.808,46.476 +181500,95.668,44.041 +181501,89.484,50.973 +181502,90.914,48.796 +181503,92.552,46.506 +181504,94.462,44.082 +181505,88.141,50.982 +181506,89.612,48.817 +181507,91.295,46.537 +181508,93.254,44.124 +181509,86.798,50.99 +181510,88.311,48.836 +181511,90.038,46.569 +181512,92.045,44.169 +181513,85.457,50.997 +181514,87.01,48.855 +181515,88.78,46.602 +181516,90.834,44.215 +181517,84.116,51.002 +181518,85.71,48.874 +181519,87.522,46.635 +181520,89.621,44.264 +181521,82.777,51.005 +181522,84.409,48.892 +181523,86.263,46.668 +181524,88.407,44.314 +181525,81.439,51.007 +181526,83.11,48.91 +181527,85.004,46.703 +181528,87.19,44.366 +181529,80.102,51.007 +181530,81.81,48.927 +181531,83.744,46.737 +181532,85.972,44.42 +181533,78.766,51.006 +181534,80.511,48.943 +181535,82.483,46.773 +181536,84.751,44.476 +181537,77.431,51.003 +181538,79.212,48.959 +181539,81.222,46.809 +181540,83.529,44.534 +181541,76.098,50.999 +181542,77.914,48.975 +181543,79.96,46.846 +181544,82.304,44.593 +181545,74.765,50.993 +181546,76.616,48.99 +181547,78.697,46.883 +181548,81.078,44.654 +181549,73.435,50.986 +181550,75.318,49.004 +181551,77.434,46.921 +181552,79.849,44.717 +181553,72.105,50.977 +181554,74.021,49.018 +181555,76.17,46.959 +181556,78.618,44.782 +181557,70.777,50.967 +181558,72.725,49.032 +181559,74.905,46.998 +181560,77.385,44.848 +181561,69.45,50.955 +181562,71.429,49.045 +181563,73.64,47.038 +181564,76.15,44.916 +181565,68.124,50.942 +181566,70.133,49.058 +181567,72.374,47.078 +181568,74.913,44.985 +181569,66.8,50.928 +181570,68.838,49.07 +181571,71.107,47.118 +181572,73.674,45.057 +181573,65.477,50.912 +181574,67.543,49.082 +181575,69.839,47.159 +181576,72.432,45.129 +181577,64.156,50.895 +181578,66.249,49.093 +181579,68.571,47.201 +181580,71.188,45.203 +181581,62.836,50.877 +181582,64.955,49.104 +181583,67.302,47.243 +181584,69.942,45.279 +181585,61.518,50.857 +181586,63.661,49.114 +181587,66.032,47.286 +181588,68.693,45.356 +181589,60.201,50.836 +181590,62.369,49.124 +181591,64.762,47.329 +181592,67.442,45.435 +181593,58.886,50.814 +181594,61.076,49.134 +181595,63.491,47.372 +181596,66.189,45.515 +181597,57.572,50.79 +181598,59.785,49.143 +181599,62.219,47.416 +181600,64.933,45.596 +181601,56.26,50.766 +181602,58.493,49.152 +181603,60.946,47.461 +181604,63.676,45.679 +181605,54.95,50.74 +181606,57.203,49.161 +181607,59.673,47.506 +181608,62.416,45.763 +181609,53.641,50.713 +181610,55.912,49.169 +181611,58.398,47.551 +181612,61.153,45.848 +181613,52.334,50.685 +181614,54.623,49.176 +181615,57.123,47.597 +181616,59.888,45.935 +181617,51.028,50.655 +181618,53.334,49.184 +181619,55.848,47.643 +181620,58.621,46.022 +181621,49.724,50.625 +181622,52.045,49.191 +181623,54.571,47.689 +181624,57.352,46.111 +181625,48.422,50.594 +181626,50.757,49.198 +181627,53.294,47.736 +181628,56.08,46.201 +181629,47.122,50.561 +181630,49.47,49.204 +181631,52.016,47.784 +181632,54.806,46.292 +181633,45.823,50.528 +181634,48.183,49.21 +181635,50.737,47.832 +181636,53.529,46.384 +181637,44.526,50.494 +181638,46.896,49.216 +181639,49.457,47.88 +181640,52.251,46.477 +181641,43.231,50.459 +181642,45.611,49.221 +181643,48.176,47.928 +181644,50.97,46.571 +181645,41.937,50.422 +181646,44.325,49.226 +181647,46.895,47.977 +181648,49.686,46.666 +181649,40.646,50.385 +181650,43.041,49.231 +181651,45.613,48.026 +181652,48.401,46.761 +181653,39.356,50.348 +181654,41.757,49.236 +181655,44.33,48.075 +181656,47.113,46.858 +181657,38.068,50.309 +181658,40.473,49.241 +181659,43.047,48.125 +181660,45.823,46.955 +181661,36.782,50.269 +181662,39.19,49.245 +181663,41.763,48.175 +181664,44.531,47.053 +181665,35.497,50.229 +181666,37.908,49.249 +181667,40.477,48.225 +181668,43.236,47.152 +181669,34.215,50.188 +181670,36.626,49.253 +181671,39.191,48.275 +181672,41.939,47.251 +181673,32.934,50.147 +181674,35.345,49.256 +181675,37.905,48.326 +181676,40.641,47.351 +181677,31.655,50.105 +181678,34.064,49.26 +181679,36.617,48.377 +181680,39.34,47.452 +181681,30.378,50.062 +181682,32.784,49.263 +181683,35.329,48.428 +181684,38.036,47.553 +181685,29.103,50.019 +181686,31.505,49.266 +181687,34.04,48.479 +181688,36.731,47.655 +181689,27.83,49.975 +181690,30.226,49.269 +181691,32.75,48.531 +181692,35.424,47.757 +181693,26.558,49.93 +181694,28.948,49.271 +181695,31.46,48.582 +181696,34.114,47.859 +181697,25.289,49.885 +181698,27.67,49.274 +181699,30.169,48.634 +181700,32.803,47.962 +181701,24.021,49.84 +181702,26.393,49.277 +181703,28.877,48.686 +181704,31.489,48.065 +181705,22.755,49.794 +181706,25.116,49.279 +181707,27.584,48.738 +181708,30.174,48.169 +181709,21.491,49.748 +181710,23.84,49.281 +181711,26.291,48.79 +181712,28.856,48.273 +181713,20.229,49.702 +181714,22.565,49.284 +181715,24.996,48.843 +181716,27.537,48.376 +181717,18.969,49.655 +181718,21.29,49.286 +181719,23.702,48.895 +181720,26.215,48.48 +181721,17.711,49.608 +181722,20.016,49.288 +181723,22.406,48.948 +181724,24.892,48.585 +181725,16.454,49.561 +181726,18.742,49.29 +181727,21.11,49 +181728,23.567,48.689 +181729,15.2,49.514 +181730,17.469,49.292 +181731,19.813,49.053 +181732,22.24,48.793 +181733,13.947,49.466 +181734,16.196,49.294 +181735,18.515,49.105 +181736,20.912,48.897 +181737,12.696,49.419 +181738,14.924,49.296 +181739,17.217,49.158 +181740,19.581,49.001 +181741,11.447,49.371 +181742,13.653,49.298 +181743,15.918,49.211 +181744,18.249,49.105 +181745,10.2,49.323 +181746,12.382,49.301 +181747,14.618,49.263 +181748,16.915,49.209 +181749,8.9545,49.276 +181750,11.111,49.303 +181751,13.318,49.316 +181752,15.58,49.313 +181753,7.711,49.228 +181754,9.841,49.305 +181755,12.017,49.368 +181756,14.243,49.417 +181757,6.4692,49.18 +181758,8.5715,49.307 +181759,10.715,49.421 +181760,12.904,49.52 +181761,5.2292,49.133 +181762,7.3025,49.31 +181763,9.4128,49.473 +181764,11.564,49.623 +181765,3.9909,49.086 +181766,6.034,49.312 +181767,8.1099,49.526 +181768,10.222,49.726 +181769,2.7544,49.039 +181770,4.766,49.315 +181771,6.8064,49.578 +181772,8.8788,49.828 +181773,1.5196,48.992 +181774,3.4984,49.317 +181775,5.5024,49.63 +181776,7.5341,49.93 +181777,0.28659,48.945 +181778,2.2313,49.32 +181779,4.1977,49.683 +181780,6.188,50.031 +181781,359.06,48.899 +181782,0.96472,49.323 +181783,2.8924,49.735 +181784,4.8405,50.132 +181785,357.83,48.853 +181786,359.7,49.326 +181787,1.5866,49.786 +181788,3.4916,50.233 +181789,356.6,48.808 +181790,358.43,49.329 +181791,0.28029,49.838 +181792,2.1415,50.333 +181793,355.37,48.763 +181794,357.17,49.333 +181795,358.97,49.89 +181796,0.79009,50.432 +181797,354.15,48.718 +181798,355.9,49.336 +181799,357.67,49.941 +181800,359.44,50.531 +181801,352.92,48.674 +181802,354.64,49.34 +181803,356.36,49.992 +181804,358.08,50.629 +181805,351.7,48.631 +181806,353.37,49.344 +181807,355.05,50.043 +181808,356.73,50.726 +181809,350.48,48.588 +181810,352.11,49.349 +181811,353.74,50.094 +181812,355.37,50.823 +181813,349.26,48.545 +181814,350.85,49.353 +181815,352.43,50.145 +181816,354.02,50.919 +181817,348.05,48.504 +181818,349.58,49.358 +181819,351.12,50.195 +181820,352.66,51.014 +181821,346.83,48.463 +181822,348.32,49.363 +181823,349.81,50.245 +181824,351.3,51.108 +181825,345.61,48.423 +181826,347.06,49.368 +181827,348.5,50.295 +181828,349.94,51.201 +181829,344.4,48.383 +181830,345.8,49.374 +181831,347.19,50.344 +181832,348.58,51.294 +181833,343.19,48.344 +181834,344.54,49.38 +181835,345.88,50.394 +181836,347.21,51.386 +181837,341.98,48.307 +181838,343.27,49.386 +181839,344.57,50.443 +181840,345.85,51.476 +181841,340.77,48.27 +181842,342.01,49.392 +181843,343.25,50.491 +181844,344.49,51.566 +181845,339.56,48.234 +181846,340.75,49.399 +181847,341.94,50.54 +181848,343.12,51.655 +181849,338.36,48.199 +181850,339.49,49.406 +181851,340.63,50.588 +181852,341.76,51.742 +181853,337.15,48.164 +181854,338.23,49.414 +181855,339.31,50.635 +181856,340.39,51.829 +181857,335.94,48.131 +181858,336.97,49.422 +181859,338,50.683 +181860,339.02,51.914 +181861,334.74,48.099 +181862,335.71,49.43 +181863,336.69,50.73 +181864,337.66,51.999 +181865,333.54,48.068 +181866,334.45,49.439 +181867,335.37,50.777 +181868,336.29,52.082 +181869,332.34,48.038 +181870,333.19,49.448 +181871,334.06,50.823 +181872,334.92,52.164 +181873,331.14,48.01 +181874,331.94,49.457 +181875,332.74,50.869 +181876,333.55,52.245 +181877,329.94,47.982 +181878,330.68,49.467 +181879,331.43,50.914 +181880,332.18,52.325 +181881,328.74,47.956 +181882,329.42,49.477 +181883,330.11,50.96 +181884,330.81,52.403 +181885,327.54,47.93 +181886,328.16,49.488 +181887,328.79,51.004 +181888,329.44,52.481 +181889,326.34,47.907 +181890,326.9,49.499 +181891,327.48,51.049 +181892,328.07,52.557 +181893,325.14,47.884 +181894,325.64,49.511 +181895,326.16,51.093 +181896,326.7,52.632 +181897,323.95,47.863 +181898,324.38,49.523 +181899,324.85,51.136 +181900,325.33,52.705 +181901,322.75,47.843 +181902,323.12,49.535 +181903,323.53,51.179 +181904,323.96,52.777 +181905,321.56,47.824 +181906,321.87,49.548 +181907,322.21,51.222 +181908,322.59,52.848 +181909,320.36,47.807 +181910,320.61,49.562 +181911,320.89,51.264 +181912,321.21,52.917 +181913,319.17,47.791 +181914,319.35,49.576 +181915,319.58,51.306 +181916,319.84,52.985 +181917,317.97,47.777 +181918,318.09,49.59 +181919,318.26,51.347 +181920,318.47,53.052 +181921,316.78,47.764 +181922,316.83,49.605 +181923,316.94,51.388 +181924,317.1,53.117 +181925,315.58,47.753 +181926,315.58,49.62 +181927,315.63,51.428 +181928,315.72,53.181 +181929,314.39,47.743 +181930,314.32,49.636 +181931,314.31,51.468 +181932,314.35,53.243 +181933,313.2,47.734 +181934,313.06,49.653 +181935,312.99,51.508 +181936,312.98,53.304 +181937,312,47.728 +181938,311.8,49.67 +181939,311.67,51.546 +181940,311.61,53.363 +181941,310.81,47.722 +181942,310.54,49.687 +181943,310.35,51.585 +181944,310.23,53.421 +181945,309.62,47.719 +181946,309.28,49.705 +181947,309.04,51.623 +181948,308.86,53.478 +181949,308.42,47.717 +181950,308.02,49.724 +181951,307.72,51.66 +181952,307.49,53.533 +181953,307.23,47.716 +181954,306.77,49.743 +181955,306.4,51.697 +181956,306.12,53.586 +181957,306.03,47.718 +181958,305.51,49.762 +181959,305.08,51.734 +181960,304.75,53.638 +181961,304.84,47.721 +181962,304.25,49.782 +181963,303.77,51.769 +181964,303.38,53.688 +181965,303.64,47.725 +181966,302.99,49.803 +181967,302.45,51.805 +181968,302.01,53.737 +181969,302.45,47.731 +181970,301.73,49.824 +181971,301.13,51.84 +181972,300.63,53.785 +181973,301.25,47.739 +181974,300.47,49.846 +181975,299.81,51.874 +181976,299.26,53.83 +181977,300.06,47.749 +181978,299.21,49.869 +181979,298.5,51.908 +181980,297.89,53.875 +181981,298.86,47.76 +181982,297.95,49.892 +181983,297.18,51.941 +181984,296.53,53.917 +181985,297.66,47.773 +181986,296.69,49.915 +181987,295.86,51.974 +181988,295.16,53.958 +181989,296.46,47.788 +181990,295.43,49.939 +181991,294.54,52.006 +181992,293.79,53.998 +181993,295.26,47.805 +181994,294.17,49.964 +181995,293.23,52.038 +181996,292.42,54.036 +181997,294.06,47.823 +181998,292.9,49.989 +181999,291.91,52.069 +182000,291.05,54.072 +182001,292.86,47.843 +182002,291.64,50.015 +182003,290.59,52.1 +182004,289.69,54.107 +182005,291.66,47.865 +182006,290.38,50.041 +182007,289.28,52.13 +182008,288.32,54.141 +182009,290.46,47.888 +182010,289.12,50.068 +182011,287.96,52.16 +182012,286.96,54.172 +182013,289.25,47.913 +182014,287.85,50.096 +182015,286.65,52.189 +182016,285.59,54.202 +182017,288.05,47.94 +182018,286.59,50.124 +182019,285.33,52.217 +182020,284.23,54.231 +182021,286.84,47.969 +182022,285.33,50.152 +182023,284.01,52.245 +182024,282.86,54.258 +182025,285.63,48 +182026,284.06,50.182 +182027,282.7,52.273 +182028,281.5,54.284 +182029,284.42,48.032 +182030,282.8,50.211 +182031,281.38,52.3 +182032,280.14,54.307 +182033,283.21,48.066 +182034,281.53,50.242 +182035,280.07,52.326 +182036,278.78,54.33 +182037,282,48.102 +182038,280.27,50.273 +182039,278.76,52.352 +182040,277.42,54.351 +182041,280.79,48.139 +182042,279,50.304 +182043,277.44,52.377 +182044,276.06,54.37 +182045,279.57,48.178 +182046,277.73,50.336 +182047,276.13,52.402 +182048,274.7,54.388 +182049,278.36,48.219 +182050,276.47,50.369 +182051,274.81,52.427 +182052,273.35,54.404 +182053,277.14,48.261 +182054,275.2,50.402 +182055,273.5,52.45 +182056,271.99,54.419 +182057,275.92,48.306 +182058,273.93,50.435 +182059,272.19,52.474 +182060,270.64,54.432 +182061,274.7,48.352 +182062,272.66,50.47 +182063,270.87,52.497 +182064,269.28,54.444 +182065,273.48,48.399 +182066,271.39,50.504 +182067,269.56,52.519 +182068,267.93,54.454 +182069,272.25,48.448 +182070,270.12,50.54 +182071,268.25,52.541 +182072,266.58,54.462 +182073,271.02,48.499 +182074,268.85,50.576 +182075,266.94,52.562 +182076,265.23,54.47 +182077,269.8,48.552 +182078,267.58,50.612 +182079,265.63,52.583 +182080,263.88,54.476 +182081,268.57,48.606 +182082,266.31,50.649 +182083,264.32,52.603 +182084,262.53,54.48 +182085,267.33,48.662 +182086,265.04,50.686 +182087,263.01,52.623 +182088,261.19,54.483 +182089,266.1,48.719 +182090,263.77,50.724 +182091,261.7,52.642 +182092,259.84,54.485 +182093,264.86,48.778 +182094,262.49,50.762 +182095,260.39,52.661 +182096,258.5,54.485 +182097,263.63,48.838 +182098,261.22,50.801 +182099,259.08,52.68 +182100,257.15,54.483 +182101,262.39,48.9 +182102,259.94,50.841 +182103,257.77,52.698 +182104,255.81,54.481 +182105,261.14,48.963 +182106,258.67,50.881 +182107,256.46,52.715 +182108,254.47,54.477 +182109,259.9,49.028 +182110,257.39,50.921 +182111,255.16,52.732 +182112,253.13,54.472 +182113,258.65,49.095 +182114,256.11,50.962 +182115,253.85,52.749 +182116,251.8,54.465 +182117,257.4,49.162 +182118,254.84,51.003 +182119,252.54,52.765 +182120,250.46,54.457 +182121,256.15,49.231 +182122,253.56,51.045 +182123,251.24,52.781 +182124,249.13,54.448 +182125,254.9,49.302 +182126,252.28,51.087 +182127,249.93,52.796 +182128,247.8,54.438 +182129,253.65,49.374 +182130,251,51.13 +182131,248.62,52.811 +182132,246.46,54.426 +182133,252.39,49.447 +182134,249.72,51.173 +182135,247.32,52.825 +182136,245.13,54.413 +182137,251.13,49.521 +182138,248.44,51.216 +182139,246.02,52.839 +182140,243.81,54.399 +182141,249.87,49.597 +182142,247.16,51.26 +182143,244.71,52.853 +182144,242.48,54.384 +182145,248.6,49.674 +182146,245.87,51.305 +182147,243.41,52.866 +182148,241.16,54.368 +182149,247.34,49.752 +182150,244.59,51.349 +182151,242.11,52.879 +182152,239.83,54.35 +182153,246.07,49.831 +182154,243.31,51.394 +182155,240.8,52.892 +182156,238.51,54.331 +182157,244.8,49.912 +182158,242.02,51.44 +182159,239.5,52.904 +182160,237.19,54.312 +182161,243.52,49.993 +182162,240.74,51.486 +182163,238.2,52.916 +182164,235.87,54.291 +182165,242.25,50.076 +182166,239.45,51.532 +182167,236.9,52.927 +182168,234.55,54.269 +182169,240.97,50.159 +182170,238.16,51.578 +182171,235.6,52.938 +182172,233.24,54.247 +182173,239.69,50.244 +182174,236.88,51.625 +182175,234.3,52.949 +182176,231.93,54.223 +182177,238.41,50.329 +182178,235.59,51.672 +182179,233,52.96 +182180,230.61,54.198 +182181,237.12,50.416 +182182,234.3,51.72 +182183,231.71,52.97 +182184,229.31,54.172 +182185,235.84,50.503 +182186,233.01,51.768 +182187,230.41,52.98 +182188,228,54.146 +182189,234.55,50.592 +182190,231.72,51.816 +182191,229.11,52.99 +182192,226.69,54.119 +182193,233.26,50.681 +182194,230.43,51.864 +182195,227.82,52.999 +182196,225.39,54.09 +182197,231.96,50.771 +182198,229.13,51.913 +182199,226.52,53.008 +182200,224.08,54.061 +182201,230.67,50.862 +182202,227.84,51.962 +182203,225.22,53.017 +182204,222.78,54.032 +182205,229.37,50.953 +182206,226.55,52.011 +182207,223.93,53.025 +182208,221.48,54.001 +182209,228.07,51.045 +182210,225.25,52.061 +182211,222.64,53.034 +182212,220.19,53.97 +182213,226.77,51.138 +182214,223.96,52.11 +182215,221.34,53.042 +182216,218.89,53.938 +182217,225.46,51.231 +182218,222.66,52.16 +182219,220.05,53.05 +182220,217.6,53.905 +182221,224.15,51.325 +182222,221.36,52.21 +182223,218.76,53.058 +182224,216.3,53.872 +182225,222.85,51.42 +182226,220.07,52.26 +182227,217.47,53.065 +182228,215.01,53.838 +182229,221.53,51.515 +182230,218.77,52.311 +182231,216.17,53.072 +182232,213.73,53.804 +182233,220.22,51.61 +182234,217.47,52.361 +182235,214.88,53.08 +182236,212.44,53.769 +182237,218.91,51.706 +182238,216.17,52.412 +182239,213.59,53.087 +182240,211.16,53.733 +182241,217.59,51.803 +182242,214.87,52.463 +182243,212.31,53.093 +182244,209.87,53.697 +182245,216.27,51.899 +182246,213.57,52.514 +182247,211.02,53.1 +182248,208.59,53.661 +182249,214.95,51.996 +182250,212.27,52.565 +182251,209.73,53.107 +182252,207.31,53.624 +182253,213.62,52.093 +182254,210.96,52.617 +182255,208.44,53.113 +182256,206.04,53.587 +182257,212.3,52.191 +182258,209.66,52.668 +182259,207.15,53.12 +182260,204.76,53.55 +182261,210.97,52.289 +182262,208.36,52.719 +182263,205.87,53.126 +182264,203.49,53.512 +182265,209.64,52.386 +182266,207.05,52.771 +182267,204.58,53.132 +182268,202.22,53.474 +182269,208.31,52.484 +182270,205.75,52.822 +182271,203.3,53.138 +182272,200.95,53.435 +182273,206.98,52.582 +182274,204.44,52.874 +182275,202.01,53.145 +182276,199.68,53.397 +182277,205.64,52.681 +182278,203.13,52.926 +182279,200.73,53.151 +182280,198.41,53.358 +182281,204.3,52.779 +182282,201.83,52.977 +182283,199.44,53.157 +182284,197.15,53.319 +182285,202.96,52.877 +182286,200.52,53.029 +182287,198.16,53.163 +182288,195.89,53.281 +182289,201.62,52.975 +182290,199.21,53.081 +182291,196.88,53.169 +182292,194.62,53.242 +182293,200.28,53.073 +182294,197.9,53.132 +182295,195.6,53.175 +182296,193.37,53.203 +182297,198.94,53.171 +182298,196.59,53.184 +182299,194.32,53.181 +182300,192.11,53.164 +182301,197.59,53.268 +182302,195.28,53.235 +182303,193.03,53.187 +182304,190.85,53.125 +182305,196.24,53.366 +182306,193.97,53.287 +182307,191.75,53.193 +182308,189.6,53.086 +182309,194.9,53.463 +182310,192.65,53.338 +182311,190.47,53.199 +182312,188.35,53.047 +182313,193.55,53.56 +182314,191.34,53.39 +182315,189.19,53.205 +182316,187.1,53.008 +182317,192.19,53.656 +182318,190.03,53.441 +182319,187.92,53.212 +182320,185.85,52.97 +182321,190.84,53.752 +182322,188.71,53.492 +182323,186.64,53.218 +182324,184.6,52.932 +182325,189.48,53.848 +182326,187.4,53.543 +182327,185.36,53.224 +182328,183.36,52.894 +182329,188.13,53.944 +182330,186.09,53.594 +182331,184.08,53.231 +182332,182.12,52.856 +182333,186.77,54.039 +182334,184.77,53.645 +182335,182.81,53.238 +182336,180.87,52.819 +182337,185.41,54.133 +182338,183.45,53.696 +182339,181.53,53.245 +182340,179.63,52.782 +182341,184.05,54.227 +182342,182.14,53.746 +182343,180.25,53.252 +182344,178.4,52.745 +182345,182.69,54.32 +182346,180.82,53.796 +182347,178.98,53.259 +182348,177.16,52.709 +182349,181.33,54.413 +182350,179.5,53.847 +182351,177.7,53.266 +182352,175.92,52.673 +182353,179.96,54.505 +182354,178.18,53.896 +182355,176.43,53.273 +182356,174.69,52.638 +182357,178.6,54.597 +182358,176.87,53.946 +182359,175.15,53.281 +182360,173.46,52.603 +182361,177.23,54.688 +182362,175.55,53.996 +182363,173.88,53.289 +182364,172.23,52.569 +182365,175.86,54.778 +182366,174.23,54.045 +182367,172.61,53.297 +182368,171,52.536 +182369,174.49,54.867 +182370,172.91,54.094 +182371,171.33,53.305 +182372,169.77,52.503 +182373,173.13,54.956 +182374,171.59,54.143 +182375,170.06,53.314 +182376,168.54,52.47 +182377,171.75,55.044 +182378,170.27,54.192 +182379,168.79,53.323 +182380,167.32,52.439 +182381,170.38,55.131 +182382,168.94,54.24 +182383,167.51,53.332 +182384,166.09,52.408 +182385,169.01,55.217 +182386,167.62,54.288 +182387,166.24,53.341 +182388,164.87,52.378 +182389,167.64,55.302 +182390,166.3,54.336 +182391,164.97,53.351 +182392,163.65,52.348 +182393,166.26,55.387 +182394,164.98,54.383 +182395,163.7,53.36 +182396,162.43,52.32 +182397,164.89,55.47 +182398,163.66,54.43 +182399,162.43,53.37 +182400,161.21,52.292 +182401,163.51,55.553 +182402,162.33,54.477 +182403,161.16,53.381 +182404,159.99,52.265 +182405,162.14,55.634 +182406,161.01,54.524 +182407,159.89,53.392 +182408,158.77,52.24 +182409,160.76,55.715 +182410,159.69,54.57 +182411,158.62,53.403 +182412,157.56,52.215 +182413,159.38,55.794 +182414,158.36,54.616 +182415,157.35,53.414 +182416,156.34,52.191 +182417,158,55.872 +182418,157.04,54.661 +182419,156.08,53.426 +182420,155.13,52.168 +182421,156.62,55.95 +182422,155.71,54.706 +182423,154.81,53.438 +182424,153.91,52.146 +182425,155.25,56.026 +182426,154.39,54.751 +182427,153.54,53.45 +182428,152.7,52.125 +182429,153.87,56.101 +182430,153.06,54.795 +182431,152.27,53.463 +182432,151.49,52.105 +182433,152.49,56.175 +182434,151.74,54.839 +182435,151,53.476 +182436,150.28,52.086 +182437,151.1,56.248 +182438,150.41,54.883 +182439,149.73,53.49 +182440,149.07,52.068 +182441,149.72,56.319 +182442,149.09,54.926 +182443,148.46,53.504 +182444,147.86,52.052 +182445,148.34,56.39 +182446,147.76,54.969 +182447,147.2,53.518 +182448,146.65,52.036 +182449,146.96,56.459 +182450,146.43,55.011 +182451,145.93,53.533 +182452,145.44,52.022 +182453,145.58,56.527 +182454,145.11,55.053 +182455,144.66,53.548 +182456,144.24,52.009 +182457,144.2,56.593 +182458,143.78,55.095 +182459,143.39,53.563 +182460,143.03,51.998 +182461,142.81,56.659 +182462,142.45,55.136 +182463,142.12,53.579 +182464,141.82,51.987 +182465,141.43,56.723 +182466,141.13,55.177 +182467,140.85,53.596 +182468,140.62,51.978 +182469,140.05,56.785 +182470,139.8,55.217 +182471,139.59,53.612 +182472,139.41,51.97 +182473,138.67,56.847 +182474,138.47,55.257 +182475,138.32,53.63 +182476,138.2,51.964 +182477,137.28,56.907 +182478,137.15,55.296 +182479,137.05,53.647 +182480,137,51.959 +182481,135.9,56.966 +182482,135.82,55.335 +182483,135.78,53.666 +182484,135.79,51.955 +182485,134.52,57.023 +182486,134.49,55.374 +182487,134.51,53.684 +182488,134.59,51.953 +182489,133.14,57.079 +182490,133.16,55.412 +182491,133.24,53.703 +182492,133.38,51.952 +182493,131.75,57.134 +182494,131.84,55.449 +182495,131.98,53.723 +182496,132.18,51.952 +182497,130.37,57.187 +182498,130.51,55.486 +182499,130.71,53.743 +182500,130.97,51.954 +182501,128.99,57.239 +182502,129.18,55.523 +182503,129.44,53.763 +182504,129.77,51.957 +182505,127.61,57.289 +182506,127.86,55.559 +182507,128.17,53.784 +182508,128.56,51.962 +182509,126.23,57.338 +182510,126.53,55.595 +182511,126.9,53.806 +182512,127.36,51.968 +182513,124.85,57.386 +182514,125.2,55.63 +182515,125.63,53.827 +182516,126.15,51.976 +182517,123.46,57.432 +182518,123.87,55.665 +182519,124.36,53.85 +182520,124.94,51.985 +182521,122.08,57.477 +182522,122.55,55.699 +182523,123.09,53.873 +182524,123.74,51.996 +182525,120.7,57.52 +182526,121.22,55.732 +182527,121.82,53.896 +182528,122.53,52.008 +182529,119.32,57.562 +182530,119.89,55.766 +182531,120.55,53.92 +182532,121.32,52.022 +182533,117.94,57.602 +182534,118.57,55.798 +182535,119.28,53.944 +182536,120.11,52.037 +182537,116.57,57.641 +182538,117.24,55.83 +182539,118.01,53.969 +182540,118.9,52.054 +182541,115.19,57.679 +182542,115.91,55.862 +182543,116.74,53.994 +182544,117.69,52.072 +182545,113.81,57.715 +182546,114.59,55.893 +182547,115.47,54.02 +182548,116.48,52.092 +182549,112.43,57.749 +182550,113.26,55.924 +182551,114.2,54.047 +182552,115.27,52.113 +182553,111.06,57.782 +182554,111.94,55.954 +182555,112.93,54.073 +182556,114.06,52.136 +182557,109.68,57.814 +182558,110.61,55.984 +182559,111.66,54.101 +182560,112.85,52.161 +182561,108.31,57.844 +182562,109.29,56.013 +182563,110.39,54.129 +182564,111.64,52.187 +182565,106.93,57.873 +182566,107.96,56.042 +182567,109.11,54.157 +182568,110.42,52.214 +182569,105.56,57.9 +182570,106.64,56.07 +182571,107.84,54.186 +182572,109.21,52.243 +182573,104.19,57.926 +182574,105.31,56.098 +182575,106.57,54.215 +182576,107.99,52.274 +182577,102.81,57.95 +182578,103.99,56.125 +182579,105.3,54.245 +182580,106.77,52.306 +182581,101.44,57.973 +182582,102.66,56.152 +182583,104.02,54.275 +182584,105.55,52.34 +182585,100.07,57.995 +182586,101.34,56.178 +182587,102.75,54.306 +182588,104.33,52.375 +182589,98.704,58.015 +182590,100.01,56.203 +182591,101.47,54.337 +182592,103.11,52.412 +182593,97.336,58.033 +182594,98.691,56.229 +182595,100.2,54.369 +182596,101.89,52.45 +182597,95.969,58.05 +182598,97.368,56.253 +182599,98.922,54.402 +182600,100.66,52.49 +182601,94.603,58.066 +182602,96.045,56.278 +182603,97.646,54.434 +182604,99.438,52.531 +182605,93.237,58.08 +182606,94.723,56.301 +182607,96.369,54.468 +182608,98.211,52.574 +182609,91.873,58.093 +182610,93.401,56.325 +182611,95.092,54.501 +182612,96.982,52.619 +182613,90.51,58.105 +182614,92.079,56.347 +182615,93.814,54.536 +182616,95.752,52.665 +182617,89.149,58.115 +182618,90.758,56.37 +182619,92.536,54.57 +182620,94.52,52.712 +182621,87.788,58.124 +182622,89.437,56.391 +182623,91.257,54.605 +182624,93.287,52.761 +182625,86.428,58.131 +182626,88.116,56.413 +182627,89.978,54.641 +182628,92.052,52.811 +182629,85.07,58.137 +182630,86.796,56.434 +182631,88.699,54.677 +182632,90.815,52.862 +182633,83.713,58.142 +182634,85.477,56.454 +182635,87.418,54.714 +182636,89.577,52.915 +182637,82.357,58.146 +182638,84.157,56.474 +182639,86.137,54.751 +182640,88.336,52.97 +182641,81.003,58.148 +182642,82.839,56.494 +182643,84.856,54.788 +182644,87.094,53.026 +182645,79.65,58.149 +182646,81.52,56.513 +182647,83.574,54.826 +182648,85.851,53.083 +182649,78.298,58.148 +182650,80.202,56.532 +182651,82.291,54.864 +182652,84.605,53.141 +182653,76.948,58.147 +182654,78.885,56.55 +182655,81.008,54.903 +182656,83.357,53.201 +182657,75.599,58.144 +182658,77.568,56.568 +182659,79.724,54.942 +182660,82.107,53.262 +182661,74.251,58.14 +182662,76.251,56.585 +182663,78.439,54.982 +182664,80.856,53.325 +182665,72.905,58.134 +182666,74.935,56.602 +182667,77.154,55.022 +182668,79.602,53.388 +182669,71.56,58.128 +182670,73.62,56.618 +182671,75.868,55.062 +182672,78.347,53.453 +182673,70.217,58.12 +182674,72.305,56.635 +182675,74.582,55.103 +182676,77.089,53.52 +182677,68.875,58.111 +182678,70.99,56.65 +182679,73.295,55.144 +182680,75.83,53.587 +182681,67.535,58.101 +182682,69.676,56.666 +182683,72.007,55.185 +182684,74.568,53.655 +182685,66.196,58.09 +182686,68.362,56.681 +182687,70.718,55.227 +182688,73.304,53.725 +182689,64.859,58.078 +182690,67.049,56.695 +182691,69.429,55.27 +182692,72.038,53.796 +182693,63.523,58.065 +182694,65.737,56.71 +182695,68.139,55.312 +182696,70.77,53.868 +182697,62.189,58.051 +182698,64.425,56.724 +182699,66.849,55.355 +182700,69.5,53.941 +182701,60.857,58.035 +182702,63.114,56.737 +182703,65.557,55.399 +182704,68.228,54.015 +182705,59.526,58.019 +182706,61.803,56.75 +182707,64.265,55.442 +182708,66.953,54.09 +182709,58.197,58.002 +182710,60.493,56.763 +182711,62.973,55.486 +182712,65.676,54.166 +182713,56.869,57.983 +182714,59.183,56.776 +182715,61.679,55.53 +182716,64.398,54.243 +182717,55.544,57.964 +182718,57.874,56.788 +182719,60.385,55.575 +182720,63.117,54.321 +182721,54.22,57.944 +182722,56.565,56.8 +182723,59.091,55.62 +182724,61.833,54.4 +182725,52.897,57.923 +182726,55.257,56.812 +182727,57.795,55.665 +182728,60.548,54.479 +182729,51.577,57.902 +182730,53.95,56.823 +182731,56.499,55.71 +182732,59.26,54.56 +182733,50.258,57.879 +182734,52.643,56.834 +182735,55.202,55.756 +182736,57.97,54.641 +182737,48.941,57.855 +182738,51.336,56.845 +182739,53.904,55.802 +182740,56.678,54.723 +182741,47.625,57.831 +182742,50.031,56.855 +182743,52.606,55.848 +182744,55.384,54.806 +182745,46.311,57.806 +182746,48.726,56.865 +182747,51.307,55.894 +182748,54.088,54.89 +182749,45,57.781 +182750,47.421,56.875 +182751,50.007,55.941 +182752,52.789,54.974 +182753,43.689,57.754 +182754,46.117,56.885 +182755,48.706,55.988 +182756,51.488,55.059 +182757,42.381,57.727 +182758,44.814,56.895 +182759,47.405,56.035 +182760,50.185,55.145 +182761,41.075,57.7 +182762,43.511,56.904 +182763,46.103,56.082 +182764,48.88,55.231 +182765,39.77,57.671 +182766,42.209,56.913 +182767,44.8,56.13 +182768,47.573,55.317 +182769,38.467,57.643 +182770,40.907,56.922 +182771,43.497,56.177 +182772,46.264,55.405 +182773,37.166,57.613 +182774,39.606,56.931 +182775,42.193,56.225 +182776,44.952,55.492 +182777,35.867,57.583 +182778,38.306,56.939 +182779,40.888,56.273 +182780,43.638,55.581 +182781,34.569,57.553 +182782,37.006,56.948 +182783,39.582,56.321 +182784,42.322,55.669 +182785,33.274,57.522 +182786,35.707,56.956 +182787,38.276,56.369 +182788,41.005,55.758 +182789,31.98,57.491 +182790,34.408,56.964 +182791,36.969,56.417 +182792,39.685,55.848 +182793,30.688,57.459 +182794,33.11,56.972 +182795,35.661,56.466 +182796,38.363,55.937 +182797,29.398,57.427 +182798,31.813,56.98 +182799,34.353,56.514 +182800,37.038,56.027 +182801,28.109,57.395 +182802,30.516,56.988 +182803,33.044,56.563 +182804,35.712,56.117 +182805,26.823,57.362 +182806,29.22,56.995 +182807,31.734,56.612 +182808,34.384,56.208 +182809,25.538,57.329 +182810,27.924,57.003 +182811,30.423,56.66 +182812,33.054,56.298 +182813,24.255,57.296 +182814,26.629,57.01 +182815,29.112,56.709 +182816,31.722,56.389 +182817,22.974,57.263 +182818,25.335,57.018 +182819,27.8,56.758 +182820,30.388,56.48 +182821,21.695,57.229 +182822,24.041,57.025 +182823,26.488,56.807 +182824,29.052,56.571 +182825,20.418,57.196 +182826,22.747,57.033 +182827,25.175,56.855 +182828,27.715,56.662 +182829,19.142,57.162 +182830,21.454,57.04 +182831,23.861,56.904 +182832,26.375,56.753 +182833,17.868,57.128 +182834,20.162,57.047 +182835,22.546,56.953 +182836,25.033,56.844 +182837,16.596,57.094 +182838,18.871,57.054 +182839,21.231,57.002 +182840,23.69,56.935 +182841,15.326,57.06 +182842,17.579,57.061 +182843,19.915,57.051 +182844,22.345,57.026 +182845,14.057,57.026 +182846,16.289,57.069 +182847,18.599,57.1 +182848,20.998,57.116 +182849,12.791,56.992 +182850,14.999,57.076 +182851,17.282,57.148 +182852,19.65,57.207 +182853,11.526,56.958 +182854,13.709,57.083 +182855,15.964,57.197 +182856,18.3,57.297 +182857,10.262,56.925 +182858,12.42,57.091 +182859,14.646,57.245 +182860,16.948,57.387 +182861,9.0007,56.891 +182862,11.132,57.098 +182863,13.327,57.294 +182864,15.595,57.477 +182865,7.7408,56.858 +182866,9.844,57.105 +182867,12.007,57.342 +182868,14.239,57.567 +182869,6.4825,56.825 +182870,8.5565,57.113 +182871,10.687,57.391 +182872,12.883,57.656 +182873,5.2259,56.792 +182874,7.2696,57.12 +182875,9.3668,57.439 +182876,11.525,57.745 +182877,3.971,56.759 +182878,5.9832,57.128 +182879,8.0457,57.487 +182880,10.165,57.833 +182881,2.7176,56.727 +182882,4.6972,57.136 +182883,6.724,57.535 +182884,8.8041,57.921 +182885,1.4659,56.695 +182886,3.4117,57.144 +182887,5.4017,57.583 +182888,7.4416,58.009 +182889,0.21576,56.664 +182890,2.1267,57.152 +182891,4.079,57.63 +182892,6.0777,58.096 +182893,358.97,56.632 +182894,0.84218,57.16 +182895,2.7557,57.678 +182896,4.7124,58.183 +182897,357.72,56.602 +182898,359.56,57.168 +182899,1.4318,57.725 +182900,3.3459,58.269 +182901,356.47,56.571 +182902,358.27,57.177 +182903,0.10755,57.772 +182904,1.978,58.355 +182905,355.23,56.542 +182906,356.99,57.185 +182907,358.78,57.819 +182908,0.60893,58.44 +182909,353.99,56.512 +182910,355.71,57.194 +182911,357.46,57.865 +182912,359.24,58.524 +182913,352.75,56.484 +182914,354.43,57.203 +182915,356.13,57.912 +182916,357.87,58.608 +182917,351.51,56.456 +182918,353.14,57.212 +182919,354.81,57.958 +182920,356.49,58.691 +182921,350.27,56.428 +182922,351.86,57.222 +182923,353.48,58.004 +182924,355.12,58.773 +182925,349.03,56.401 +182926,350.58,57.231 +182927,352.15,58.05 +182928,353.75,58.854 +182929,347.8,56.375 +182930,349.3,57.241 +182931,350.82,58.095 +182932,352.37,58.935 +182933,346.56,56.35 +182934,348.02,57.251 +182935,349.5,58.14 +182936,350.99,59.015 +182937,345.33,56.325 +182938,346.74,57.262 +182939,348.17,58.185 +182940,349.62,59.094 +182941,344.1,56.301 +182942,345.46,57.272 +182943,346.84,58.23 +182944,348.24,59.173 +182945,342.86,56.278 +182946,344.18,57.283 +182947,345.51,58.274 +182948,346.86,59.25 +182949,341.63,56.255 +182950,342.9,57.294 +182951,344.18,58.318 +182952,345.48,59.327 +182953,340.41,56.234 +182954,341.62,57.306 +182955,342.85,58.362 +182956,344.1,59.402 +182957,339.18,56.213 +182958,340.34,57.317 +182959,341.52,58.406 +182960,342.71,59.477 +182961,337.95,56.194 +182962,339.07,57.329 +182963,340.19,58.449 +182964,341.33,59.551 +182965,336.73,56.175 +182966,337.79,57.342 +182967,338.86,58.492 +182968,339.95,59.623 +182969,335.5,56.157 +182970,336.51,57.354 +182971,337.53,58.534 +182972,338.56,59.695 +182973,334.28,56.14 +182974,335.23,57.367 +182975,336.2,58.576 +182976,337.18,59.766 +182977,333.06,56.124 +182978,333.95,57.38 +182979,334.87,58.618 +182980,335.79,59.836 +182981,331.83,56.109 +182982,332.68,57.394 +182983,333.54,58.659 +182984,334.41,59.904 +182985,330.61,56.095 +182986,331.4,57.408 +182987,332.2,58.7 +182988,333.02,59.972 +182989,329.39,56.082 +182990,330.12,57.422 +182991,330.87,58.741 +182992,331.64,60.038 +182993,328.17,56.071 +182994,328.85,57.437 +182995,329.54,58.781 +182996,330.25,60.103 +182997,326.95,56.06 +182998,327.57,57.451 +182999,328.21,58.821 +183000,328.86,60.168 +183001,325.73,56.051 +183002,326.29,57.467 +183003,326.87,58.86 +183004,327.47,60.231 +183005,324.52,56.042 +183006,325.02,57.482 +183007,325.54,58.899 +183008,326.09,60.292 +183009,323.3,56.035 +183010,323.74,57.499 +183011,324.21,58.938 +183012,324.7,60.353 +183013,322.08,56.029 +183014,322.46,57.515 +183015,322.87,58.976 +183016,323.31,60.412 +183017,320.86,56.024 +183018,321.19,57.532 +183019,321.54,59.014 +183020,321.92,60.471 +183021,319.65,56.021 +183022,319.91,57.549 +183023,320.21,59.052 +183024,320.53,60.528 +183025,318.43,56.018 +183026,318.64,57.567 +183027,318.87,59.089 +183028,319.14,60.583 +183029,317.22,56.017 +183030,317.36,57.585 +183031,317.54,59.125 +183032,317.76,60.638 +183033,316,56.017 +183034,316.08,57.603 +183035,316.21,59.161 +183036,316.37,60.691 +183037,314.79,56.019 +183038,314.81,57.622 +183039,314.87,59.197 +183040,314.98,60.743 +183041,313.57,56.021 +183042,313.53,57.641 +183043,313.54,59.232 +183044,313.59,60.794 +183045,312.36,56.026 +183046,312.26,57.661 +183047,312.21,59.267 +183048,312.2,60.843 +183049,311.14,56.031 +183050,310.98,57.681 +183051,310.87,59.301 +183052,310.81,60.891 +183053,309.93,56.038 +183054,309.7,57.702 +183055,309.54,59.335 +183056,309.42,60.938 +183057,308.71,56.046 +183058,308.43,57.723 +183059,308.21,59.369 +183060,308.03,60.983 +183061,307.49,56.055 +183062,307.15,57.744 +183063,306.87,59.402 +183064,306.65,61.027 +183065,306.28,56.066 +183066,305.88,57.766 +183067,305.54,59.434 +183068,305.26,61.07 +183069,305.06,56.078 +183070,304.6,57.789 +183071,304.2,59.466 +183072,303.87,61.111 +183073,303.85,56.091 +183074,303.32,57.811 +183075,302.87,59.498 +183076,302.48,61.151 +183077,302.63,56.106 +183078,302.05,57.835 +183079,301.54,59.529 +183080,301.1,61.19 +183081,301.41,56.122 +183082,300.77,57.858 +183083,300.2,59.56 +183084,299.71,61.227 +183085,300.2,56.14 +183086,299.49,57.882 +183087,298.87,59.59 +183088,298.33,61.263 +183089,298.98,56.159 +183090,298.21,57.907 +183091,297.54,59.619 +183092,296.94,61.297 +183093,297.76,56.179 +183094,296.94,57.932 +183095,296.21,59.649 +183096,295.56,61.33 +183097,296.54,56.201 +183098,295.66,57.957 +183099,294.87,59.677 +183100,294.17,61.362 +183101,295.32,56.224 +183102,294.38,57.983 +183103,293.54,59.706 +183104,292.79,61.393 +183105,294.1,56.249 +183106,293.1,58.01 +183107,292.21,59.734 +183108,291.4,61.422 +183109,292.88,56.275 +183110,291.82,58.037 +183111,290.88,59.761 +183112,290.02,61.449 +183113,291.66,56.302 +183114,290.54,58.064 +183115,289.54,59.788 +183116,288.64,61.476 +183117,290.44,56.331 +183118,289.27,58.092 +183119,288.21,59.814 +183120,287.26,61.501 +183121,289.21,56.362 +183122,287.99,58.12 +183123,286.88,59.84 +183124,285.88,61.524 +183125,287.99,56.393 +183126,286.71,58.148 +183127,285.55,59.866 +183128,284.5,61.546 +183129,286.76,56.426 +183130,285.43,58.177 +183131,284.22,59.891 +183132,283.12,61.567 +183133,285.54,56.461 +183134,284.14,58.207 +183135,282.89,59.915 +183136,281.74,61.587 +183137,284.31,56.496 +183138,282.86,58.237 +183139,281.56,59.939 +183140,280.37,61.605 +183141,283.08,56.534 +183142,281.58,58.267 +183143,280.23,59.963 +183144,278.99,61.622 +183145,281.85,56.572 +183146,280.3,58.298 +183147,278.9,59.986 +183148,277.62,61.637 +183149,280.62,56.612 +183150,279.02,58.329 +183151,277.57,60.009 +183152,276.24,61.652 +183153,279.39,56.653 +183154,277.74,58.361 +183155,276.24,60.031 +183156,274.87,61.664 +183157,278.15,56.696 +183158,276.45,58.393 +183159,274.91,60.053 +183160,273.5,61.676 +183161,276.92,56.74 +183162,275.17,58.426 +183163,273.58,60.074 +183164,272.13,61.686 +183165,275.68,56.785 +183166,273.89,58.459 +183167,272.25,60.095 +183168,270.76,61.695 +183169,274.44,56.832 +183170,272.6,58.492 +183171,270.92,60.115 +183172,269.39,61.703 +183173,273.2,56.88 +183174,271.32,58.526 +183175,269.6,60.135 +183176,268.02,61.709 +183177,271.96,56.929 +183178,270.03,58.56 +183179,268.27,60.155 +183180,266.65,61.715 +183181,270.72,56.979 +183182,268.75,58.595 +183183,266.94,60.174 +183184,265.29,61.718 +183185,269.47,57.031 +183186,267.46,58.63 +183187,265.62,60.193 +183188,263.92,61.721 +183189,268.23,57.084 +183190,266.17,58.665 +183191,264.29,60.211 +183192,262.56,61.723 +183193,266.98,57.138 +183194,264.88,58.701 +183195,262.97,60.229 +183196,261.2,61.723 +183197,265.73,57.194 +183198,263.6,58.738 +183199,261.64,60.246 +183200,259.84,61.722 +183201,264.48,57.25 +183202,262.31,58.774 +183203,260.32,60.263 +183204,258.48,61.72 +183205,263.23,57.308 +183206,261.02,58.811 +183207,258.99,60.28 +183208,257.12,61.717 +183209,261.98,57.367 +183210,259.73,58.849 +183211,257.67,60.296 +183212,255.77,61.712 +183213,260.72,57.427 +183214,258.44,58.886 +183215,256.35,60.312 +183216,254.41,61.707 +183217,259.46,57.488 +183218,257.15,58.924 +183219,255.02,60.328 +183220,253.06,61.7 +183221,258.2,57.551 +183222,255.86,58.963 +183223,253.7,60.343 +183224,251.71,61.693 +183225,256.94,57.614 +183226,254.56,59.002 +183227,252.38,60.358 +183228,250.35,61.684 +183229,255.68,57.678 +183230,253.27,59.041 +183231,251.06,60.372 +183232,249.01,61.674 +183233,254.41,57.744 +183234,251.98,59.08 +183235,249.74,60.386 +183236,247.66,61.663 +183237,253.14,57.81 +183238,250.68,59.12 +183239,248.42,60.4 +183240,246.31,61.651 +183241,251.87,57.878 +183242,249.39,59.16 +183243,247.1,60.413 +183244,244.97,61.639 +183245,250.6,57.946 +183246,248.09,59.2 +183247,245.78,60.426 +183248,243.63,61.625 +183249,249.33,58.015 +183250,246.8,59.241 +183251,244.46,60.439 +183252,242.28,61.61 +183253,248.05,58.086 +183254,245.5,59.282 +183255,243.14,60.451 +183256,240.94,61.594 +183257,246.78,58.157 +183258,244.2,59.323 +183259,241.82,60.463 +183260,239.61,61.578 +183261,245.5,58.229 +183262,242.91,59.365 +183263,240.51,60.475 +183264,238.27,61.56 +183265,244.21,58.302 +183266,241.61,59.407 +183267,239.19,60.486 +183268,236.93,61.542 +183269,242.93,58.375 +183270,240.31,59.449 +183271,237.88,60.497 +183272,235.6,61.523 +183273,241.65,58.45 +183274,239.01,59.491 +183275,236.56,60.508 +183276,234.27,61.503 +183277,240.36,58.525 +183278,237.71,59.534 +183279,235.25,60.519 +183280,232.94,61.482 +183281,239.07,58.601 +183282,236.41,59.577 +183283,233.93,60.529 +183284,231.61,61.461 +183285,237.78,58.678 +183286,235.11,59.62 +183287,232.62,60.539 +183288,230.29,61.439 +183289,236.48,58.755 +183290,233.8,59.663 +183291,231.31,60.549 +183292,228.96,61.416 +183293,235.18,58.833 +183294,232.5,59.706 +183295,229.99,60.559 +183296,227.64,61.392 +183297,233.89,58.911 +183298,231.2,59.75 +183299,228.68,60.568 +183300,226.32,61.368 +183301,232.59,58.99 +183302,229.89,59.794 +183303,227.37,60.577 +183304,225,61.343 +183305,231.28,59.07 +183306,228.59,59.838 +183307,226.06,60.586 +183308,223.68,61.318 +183309,229.98,59.15 +183310,227.28,59.882 +183311,224.75,60.595 +183312,222.36,61.291 +183313,228.67,59.231 +183314,225.97,59.926 +183315,223.44,60.604 +183316,221.05,61.265 +183317,227.36,59.312 +183318,224.66,59.971 +183319,222.13,60.612 +183320,219.74,61.238 +183321,226.05,59.394 +183322,223.36,60.015 +183323,220.82,60.62 +183324,218.43,61.21 +183325,224.74,59.476 +183326,222.05,60.06 +183327,219.52,60.628 +183328,217.12,61.182 +183329,223.42,59.558 +183330,220.74,60.105 +183331,218.21,60.636 +183332,215.81,61.154 +183333,222.11,59.641 +183334,219.43,60.15 +183335,216.9,60.644 +183336,214.51,61.125 +183337,220.79,59.724 +183338,218.12,60.195 +183339,215.6,60.652 +183340,213.2,61.095 +183341,219.47,59.807 +183342,216.81,60.24 +183343,214.29,60.659 +183344,211.9,61.066 +183345,218.14,59.891 +183346,215.49,60.285 +183347,212.99,60.666 +183348,210.6,61.036 +183349,216.82,59.974 +183350,214.18,60.331 +183351,211.68,60.674 +183352,209.3,61.006 +183353,215.49,60.058 +183354,212.87,60.376 +183355,210.38,60.681 +183356,208.01,60.975 +183357,214.16,60.142 +183358,211.55,60.421 +183359,209.08,60.688 +183360,206.71,60.944 +183361,212.83,60.226 +183362,210.24,60.467 +183363,207.77,60.695 +183364,205.42,60.913 +183365,211.5,60.311 +183366,208.92,60.512 +183367,206.47,60.702 +183368,204.13,60.882 +183369,210.16,60.395 +183370,207.61,60.558 +183371,205.17,60.709 +183372,202.84,60.851 +183373,208.82,60.479 +183374,206.29,60.603 +183375,203.87,60.716 +183376,201.55,60.82 +183377,207.49,60.564 +183378,204.97,60.649 +183379,202.57,60.723 +183380,200.27,60.788 +183381,206.15,60.648 +183382,203.65,60.694 +183383,201.27,60.73 +183384,198.98,60.757 +183385,204.8,60.732 +183386,202.34,60.74 +183387,199.97,60.737 +183388,197.7,60.725 +183389,203.46,60.816 +183390,201.02,60.785 +183391,198.67,60.743 +183392,196.42,60.694 +183393,202.11,60.9 +183394,199.7,60.83 +183395,197.38,60.75 +183396,195.14,60.663 +183397,200.76,60.984 +183398,198.37,60.876 +183399,196.08,60.757 +183400,193.87,60.631 +183401,199.42,61.068 +183402,197.05,60.921 +183403,194.78,60.764 +183404,192.59,60.6 +183405,198.06,61.151 +183406,195.73,60.966 +183407,193.49,60.771 +183408,191.32,60.569 +183409,196.71,61.234 +183410,194.41,61.011 +183411,192.19,60.778 +183412,190.04,60.538 +183413,195.36,61.317 +183414,193.09,61.056 +183415,190.9,60.785 +183416,188.77,60.507 +183417,194,61.4 +183418,191.76,61.101 +183419,189.6,60.792 +183420,187.51,60.477 +183421,192.64,61.482 +183422,190.44,61.145 +183423,188.31,60.8 +183424,186.24,60.447 +183425,191.28,61.564 +183426,189.11,61.19 +183427,187.01,60.807 +183428,184.97,60.417 +183429,189.92,61.645 +183430,187.79,61.234 +183431,185.72,60.814 +183432,183.71,60.387 +183433,188.56,61.726 +183434,186.46,61.279 +183435,184.43,60.822 +183436,182.45,60.358 +183437,187.2,61.807 +183438,185.14,61.323 +183439,183.14,60.83 +183440,181.19,60.329 +183441,185.83,61.887 +183442,183.81,61.367 +183443,181.85,60.837 +183444,179.93,60.301 +183445,184.46,61.966 +183446,182.48,61.411 +183447,180.55,60.845 +183448,178.67,60.273 +183449,183.1,62.045 +183450,181.15,61.454 +183451,179.26,60.853 +183452,177.42,60.245 +183453,181.73,62.124 +183454,179.83,61.498 +183455,177.97,60.862 +183456,176.16,60.218 +183457,180.36,62.202 +183458,178.5,61.541 +183459,176.68,60.87 +183460,174.91,60.191 +183461,178.98,62.279 +183462,177.17,61.584 +183463,175.39,60.879 +183464,173.66,60.165 +183465,177.61,62.355 +183466,175.84,61.626 +183467,174.11,60.887 +183468,172.41,60.14 +183469,176.24,62.431 +183470,174.51,61.669 +183471,172.82,60.896 +183472,171.16,60.115 +183473,174.86,62.506 +183474,173.18,61.711 +183475,171.53,60.906 +183476,169.91,60.091 +183477,173.48,62.581 +183478,171.85,61.753 +183479,170.24,60.915 +183480,168.67,60.067 +183481,172.11,62.654 +183482,170.51,61.795 +183483,168.95,60.925 +183484,167.42,60.044 +183485,170.73,62.727 +183486,169.18,61.837 +183487,167.67,60.934 +183488,166.18,60.022 +183489,169.35,62.799 +183490,167.85,61.878 +183491,166.38,60.944 +183492,164.94,60.001 +183493,167.97,62.871 +183494,166.52,61.919 +183495,165.1,60.955 +183496,163.7,59.98 +183497,166.59,62.941 +183498,165.18,61.959 +183499,163.81,60.965 +183500,162.46,59.96 +183501,165.2,63.01 +183502,163.85,62 +183503,162.52,60.976 +183504,161.22,59.941 +183505,163.82,63.079 +183506,162.52,62.04 +183507,161.24,60.987 +183508,159.98,59.923 +183509,162.44,63.147 +183510,161.18,62.08 +183511,159.95,60.999 +183512,158.74,59.906 +183513,161.05,63.214 +183514,159.85,62.119 +183515,158.67,61.011 +183516,157.51,59.889 +183517,159.67,63.279 +183518,158.51,62.158 +183519,157.39,61.023 +183520,156.27,59.874 +183521,158.28,63.344 +183522,157.18,62.197 +183523,156.1,61.035 +183524,155.04,59.859 +183525,156.89,63.408 +183526,155.84,62.235 +183527,154.82,61.047 +183528,153.81,59.846 +183529,155.5,63.471 +183530,154.51,62.274 +183531,153.53,61.06 +183532,152.58,59.833 +183533,154.12,63.533 +183534,153.17,62.311 +183535,152.25,61.074 +183536,151.35,59.821 +183537,152.73,63.594 +183538,151.84,62.349 +183539,150.97,61.087 +183540,150.12,59.811 +183541,151.34,63.653 +183542,150.5,62.386 +183543,149.68,61.101 +183544,148.89,59.801 +183545,149.95,63.712 +183546,149.16,62.422 +183547,148.4,61.115 +183548,147.66,59.792 +183549,148.56,63.769 +183550,147.83,62.459 +183551,147.12,61.13 +183552,146.43,59.785 +183553,147.17,63.826 +183554,146.49,62.494 +183555,145.84,61.145 +183556,145.2,59.778 +183557,145.78,63.881 +183558,145.15,62.53 +183559,144.55,61.16 +183560,143.98,59.773 +183561,144.39,63.935 +183562,143.82,62.565 +183563,143.27,61.176 +183564,142.75,59.769 +183565,142.99,63.988 +183566,142.48,62.6 +183567,141.99,61.192 +183568,141.53,59.766 +183569,141.6,64.04 +183570,141.14,62.634 +183571,140.71,61.208 +183572,140.3,59.764 +183573,140.21,64.091 +183574,139.81,62.668 +183575,139.43,61.225 +183576,139.08,59.763 +183577,138.82,64.14 +183578,138.47,62.701 +183579,138.14,61.242 +183580,137.85,59.764 +183581,137.43,64.188 +183582,137.13,62.734 +183583,136.86,61.26 +183584,136.63,59.765 +183585,136.03,64.236 +183586,135.79,62.767 +183587,135.58,61.278 +183588,135.4,59.768 +183589,134.64,64.281 +183590,134.45,62.799 +183591,134.3,61.296 +183592,134.18,59.772 +183593,133.25,64.326 +183594,133.12,62.831 +183595,133.02,61.315 +183596,132.96,59.777 +183597,131.86,64.369 +183598,131.78,62.863 +183599,131.74,61.334 +183600,131.73,59.784 +183601,130.47,64.411 +183602,130.44,62.894 +183603,130.45,61.353 +183604,130.51,59.792 +183605,129.07,64.452 +183606,129.1,62.924 +183607,129.17,61.373 +183608,129.29,59.801 +183609,127.68,64.492 +183610,127.77,62.954 +183611,127.89,61.394 +183612,128.06,59.811 +183613,126.29,64.53 +183614,126.43,62.984 +183615,126.61,61.414 +183616,126.84,59.822 +183617,124.9,64.567 +183618,125.09,63.013 +183619,125.33,61.436 +183620,125.62,59.835 +183621,123.51,64.603 +183622,123.75,63.042 +183623,124.05,61.457 +183624,124.39,59.849 +183625,122.12,64.637 +183626,122.41,63.07 +183627,122.76,61.479 +183628,123.17,59.865 +183629,120.73,64.67 +183630,121.08,63.098 +183631,121.48,61.502 +183632,121.95,59.882 +183633,119.34,64.702 +183634,119.74,63.125 +183635,120.2,61.524 +183636,120.72,59.9 +183637,117.95,64.733 +183638,118.4,63.152 +183639,118.92,61.548 +183640,119.5,59.919 +183641,116.56,64.762 +183642,117.06,63.179 +183643,117.63,61.571 +183644,118.27,59.94 +183645,115.17,64.79 +183646,115.73,63.205 +183647,116.35,61.595 +183648,117.05,59.962 +183649,113.78,64.817 +183650,114.39,63.231 +183651,115.07,61.62 +183652,115.82,59.985 +183653,112.39,64.842 +183654,113.05,63.256 +183655,113.79,61.645 +183656,114.6,60.009 +183657,111,64.866 +183658,111.72,63.281 +183659,112.5,61.67 +183660,113.37,60.035 +183661,109.62,64.889 +183662,110.38,63.305 +183663,111.22,61.696 +183664,112.14,60.063 +183665,108.23,64.911 +183666,109.04,63.329 +183667,109.93,61.722 +183668,110.91,60.091 +183669,106.85,64.931 +183670,107.71,63.352 +183671,108.65,61.749 +183672,109.68,60.121 +183673,105.46,64.95 +183674,106.37,63.375 +183675,107.37,61.776 +183676,108.45,60.152 +183677,104.08,64.968 +183678,105.04,63.398 +183679,106.08,61.803 +183680,107.22,60.184 +183681,102.69,64.984 +183682,103.7,63.42 +183683,104.8,61.831 +183684,105.99,60.218 +183685,101.31,64.999 +183686,102.37,63.442 +183687,103.51,61.86 +183688,104.76,60.253 +183689,99.931,65.013 +183690,101.03,63.463 +183691,102.23,61.888 +183692,103.53,60.289 +183693,98.55,65.026 +183694,99.697,63.484 +183695,100.94,61.917 +183696,102.29,60.327 +183697,97.171,65.037 +183698,98.362,63.504 +183699,99.653,61.947 +183700,101.06,60.366 +183701,95.792,65.047 +183702,97.028,63.524 +183703,98.366,61.977 +183704,99.819,60.406 +183705,94.414,65.056 +183706,95.695,63.543 +183707,97.079,62.007 +183708,98.582,60.447 +183709,93.037,65.064 +183710,94.361,63.563 +183711,95.791,62.038 +183712,97.343,60.49 +183713,91.662,65.07 +183714,93.028,63.581 +183715,94.503,62.069 +183716,96.103,60.533 +183717,90.287,65.076 +183718,91.696,63.6 +183719,93.215,62.1 +183720,94.862,60.578 +183721,88.913,65.08 +183722,90.363,63.617 +183723,91.926,62.132 +183724,93.619,60.624 +183725,87.541,65.083 +183726,89.031,63.635 +183727,90.637,62.164 +183728,92.375,60.672 +183729,86.17,65.084 +183730,87.7,63.652 +183731,89.347,62.197 +183732,91.13,60.72 +183733,84.799,65.085 +183734,86.369,63.669 +183735,88.057,62.23 +183736,89.883,60.77 +183737,83.43,65.085 +183738,85.038,63.685 +183739,86.767,62.264 +183740,88.635,60.821 +183741,82.063,65.083 +183742,83.708,63.701 +183743,85.476,62.297 +183744,87.386,60.873 +183745,80.696,65.08 +183746,82.378,63.716 +183747,84.184,62.331 +183748,86.135,60.926 +183749,79.331,65.076 +183750,81.048,63.731 +183751,82.892,62.366 +183752,84.882,60.98 +183753,77.967,65.071 +183754,79.719,63.746 +183755,81.599,62.401 +183756,83.628,61.035 +183757,76.604,65.065 +183758,78.391,63.76 +183759,80.306,62.436 +183760,82.372,61.092 +183761,75.243,65.058 +183762,77.062,63.774 +183763,79.013,62.471 +183764,81.115,61.149 +183765,73.883,65.05 +183766,75.735,63.788 +183767,77.719,62.507 +183768,79.856,61.207 +183769,72.524,65.041 +183770,74.407,63.801 +183771,76.424,62.543 +183772,78.595,61.267 +183773,71.167,65.031 +183774,73.081,63.814 +183775,75.129,62.58 +183776,77.332,61.327 +183777,69.811,65.02 +183778,71.754,63.827 +183779,73.833,62.616 +183780,76.068,61.389 +183781,68.457,65.008 +183782,70.429,63.839 +183783,72.536,62.653 +183784,74.802,61.451 +183785,67.104,64.995 +183786,69.103,63.851 +183787,71.239,62.691 +183788,73.534,61.514 +183789,65.753,64.981 +183790,67.779,63.863 +183791,69.942,62.728 +183792,72.265,61.578 +183793,64.403,64.966 +183794,66.454,63.874 +183795,68.643,62.766 +183796,70.993,61.643 +183797,63.055,64.95 +183798,65.131,63.885 +183799,67.345,62.805 +183800,69.72,61.709 +183801,61.708,64.934 +183802,63.807,63.896 +183803,66.045,62.843 +183804,68.445,61.776 +183805,60.363,64.917 +183806,62.485,63.906 +183807,64.745,62.882 +183808,67.168,61.843 +183809,59.019,64.898 +183810,61.163,63.916 +183811,63.445,62.921 +183812,65.889,61.911 +183813,57.677,64.879 +183814,59.841,63.926 +183815,62.143,62.96 +183816,64.608,61.98 +183817,56.337,64.86 +183818,58.52,63.936 +183819,60.842,62.999 +183820,63.325,62.05 +183821,54.998,64.839 +183822,57.199,63.945 +183823,59.539,63.039 +183824,62.04,62.12 +183825,53.661,64.818 +183826,55.88,63.954 +183827,58.236,63.079 +183828,60.753,62.192 +183829,52.325,64.796 +183830,54.56,63.963 +183831,56.932,63.119 +183832,59.464,62.263 +183833,50.991,64.774 +183834,53.241,63.972 +183835,55.628,63.159 +183836,58.174,62.336 +183837,49.659,64.75 +183838,51.923,63.98 +183839,54.323,63.2 +183840,56.881,62.409 +183841,48.329,64.727 +183842,50.605,63.989 +183843,53.017,63.241 +183844,55.586,62.482 +183845,47,64.702 +183846,49.288,63.997 +183847,51.71,63.281 +183848,54.289,62.556 +183849,45.673,64.677 +183850,47.972,64.004 +183851,50.403,63.322 +183852,52.991,62.631 +183853,44.348,64.652 +183854,46.656,64.012 +183855,49.096,63.364 +183856,51.69,62.706 +183857,43.024,64.626 +183858,45.34,64.019 +183859,47.787,63.405 +183860,50.387,62.782 +183861,41.702,64.599 +183862,44.026,64.027 +183863,46.478,63.446 +183864,49.082,62.858 +183865,40.382,64.572 +183866,42.712,64.034 +183867,45.169,63.488 +183868,47.775,62.934 +183869,39.064,64.545 +183870,41.398,64.041 +183871,43.858,63.53 +183872,46.466,63.011 +183873,37.747,64.517 +183874,40.085,64.048 +183875,42.547,63.572 +183876,45.155,63.088 +183877,36.432,64.489 +183878,38.772,64.054 +183879,41.236,63.614 +183880,43.843,63.166 +183881,35.119,64.461 +183882,37.461,64.061 +183883,39.923,63.656 +183884,42.528,63.243 +183885,33.807,64.432 +183886,36.149,64.067 +183887,38.611,63.698 +183888,41.211,63.321 +183889,32.498,64.403 +183890,34.839,64.074 +183891,37.297,63.74 +183892,39.892,63.4 +183893,31.19,64.373 +183894,33.529,64.08 +183895,35.983,63.782 +183896,38.571,63.478 +183897,29.884,64.343 +183898,32.219,64.086 +183899,34.668,63.824 +183900,37.248,63.557 +183901,28.58,64.314 +183902,30.91,64.092 +183903,33.352,63.867 +183904,35.923,63.635 +183905,27.277,64.284 +183906,29.602,64.098 +183907,32.036,63.909 +183908,34.596,63.714 +183909,25.976,64.253 +183910,28.294,64.104 +183911,30.719,63.951 +183912,33.268,63.793 +183913,24.677,64.223 +183914,26.987,64.11 +183915,29.402,63.994 +183916,31.937,63.872 +183917,23.38,64.193 +183918,25.681,64.116 +183919,28.083,64.036 +183920,30.605,63.951 +183921,22.084,64.162 +183922,24.375,64.122 +183923,26.765,64.078 +183924,29.27,64.03 +183925,20.791,64.132 +183926,23.069,64.128 +183927,25.445,64.121 +183928,27.934,64.109 +183929,19.498,64.101 +183930,21.764,64.134 +183931,24.125,64.163 +183932,26.596,64.188 +183933,18.208,64.071 +183934,20.46,64.14 +183935,22.804,64.206 +183936,25.256,64.267 +183937,16.92,64.04 +183938,19.157,64.146 +183939,21.483,64.248 +183940,23.914,64.346 +183941,15.633,64.01 +183942,17.853,64.152 +183943,20.161,64.29 +183944,22.57,64.424 +183945,14.348,63.98 +183946,16.551,64.157 +183947,18.839,64.332 +183948,21.225,64.503 +183949,13.064,63.95 +183950,15.249,64.163 +183951,17.516,64.374 +183952,19.878,64.581 +183953,11.782,63.92 +183954,13.947,64.169 +183955,16.192,64.416 +183956,18.529,64.659 +183957,10.502,63.89 +183958,12.646,64.176 +183959,14.868,64.458 +183960,17.178,64.736 +183961,9.2237,63.861 +183962,11.346,64.182 +183963,13.543,64.5 +183964,15.826,64.813 +183965,7.9469,63.832 +183966,10.046,64.188 +183967,12.217,64.541 +183968,14.472,64.89 +183969,6.6718,63.803 +183970,8.7468,64.194 +183971,10.891,64.583 +183972,13.116,64.967 +183973,5.3982,63.774 +183974,7.448,64.201 +183975,9.5649,64.624 +183976,11.759,65.043 +183977,4.1263,63.746 +183978,6.1497,64.207 +183979,8.2378,64.666 +183980,10.4,65.119 +183981,2.8559,63.718 +183982,4.8519,64.214 +183983,6.9102,64.707 +183984,9.04,65.195 +183985,1.5871,63.69 +183986,3.5546,64.221 +183987,5.582,64.748 +183988,7.6782,65.27 +183989,0.31983,63.663 +183990,2.2578,64.228 +183991,4.2533,64.789 +183992,6.3149,65.344 +183993,359.05,63.637 +183994,0.96148,64.235 +183995,2.9241,64.829 +183996,4.9501,65.418 +183997,357.79,63.611 +183998,359.67,64.242 +183999,1.5944,64.87 +184000,3.584,65.491 +184001,356.53,63.585 +184002,358.37,64.25 +184003,0.26421,64.91 +184004,2.2164,65.564 +184005,355.27,63.56 +184006,357.08,64.257 +184007,358.93,64.95 +184008,0.84742,65.637 +184009,354.01,63.535 +184010,355.78,64.265 +184011,357.6,64.99 +184012,359.48,65.708 +184013,352.75,63.511 +184014,354.49,64.273 +184015,356.27,65.029 +184016,358.11,65.779 +184017,351.49,63.488 +184018,353.19,64.281 +184019,354.94,65.069 +184020,356.73,65.849 +184021,350.23,63.465 +184022,351.9,64.289 +184023,353.61,65.108 +184024,355.36,65.919 +184025,348.98,63.443 +184026,350.61,64.298 +184027,352.27,65.147 +184028,353.98,65.988 +184029,347.73,63.422 +184030,349.31,64.307 +184031,350.94,65.185 +184032,352.61,66.056 +184033,346.48,63.401 +184034,348.02,64.316 +184035,349.61,65.224 +184036,351.23,66.124 +184037,345.23,63.382 +184038,346.73,64.325 +184039,348.27,65.262 +184040,349.85,66.19 +184041,343.98,63.362 +184042,345.44,64.335 +184043,346.94,65.3 +184044,348.47,66.256 +184045,342.73,63.344 +184046,344.15,64.344 +184047,345.6,65.337 +184048,347.09,66.321 +184049,341.48,63.327 +184050,342.86,64.354 +184051,344.27,65.374 +184052,345.71,66.385 +184053,340.24,63.31 +184054,341.57,64.365 +184055,342.93,65.411 +184056,344.33,66.448 +184057,338.99,63.294 +184058,340.28,64.375 +184059,341.6,65.448 +184060,342.94,66.511 +184061,337.75,63.279 +184062,338.99,64.386 +184063,340.26,65.484 +184064,341.56,66.572 +184065,336.5,63.265 +184066,337.7,64.397 +184067,338.92,65.52 +184068,340.17,66.633 +184069,335.26,63.252 +184070,336.41,64.409 +184071,337.58,65.556 +184072,338.79,66.692 +184073,334.02,63.24 +184074,335.12,64.421 +184075,336.25,65.592 +184076,337.4,66.751 +184077,332.78,63.228 +184078,333.83,64.433 +184079,334.91,65.627 +184080,336.01,66.809 +184081,331.54,63.218 +184082,332.55,64.445 +184083,333.57,65.661 +184084,334.62,66.865 +184085,330.31,63.209 +184086,331.26,64.458 +184087,332.23,65.696 +184088,333.24,66.921 +184089,329.07,63.201 +184090,329.97,64.471 +184091,330.9,65.73 +184092,331.85,66.976 +184093,327.83,63.193 +184094,328.68,64.484 +184095,329.56,65.763 +184096,330.46,67.029 +184097,326.6,63.187 +184098,327.4,64.498 +184099,328.22,65.797 +184100,329.07,67.082 +184101,325.36,63.182 +184102,326.11,64.512 +184103,326.88,65.829 +184104,327.67,67.133 +184105,324.13,63.178 +184106,324.82,64.526 +184107,325.54,65.862 +184108,326.28,67.184 +184109,322.89,63.175 +184110,323.54,64.541 +184111,324.2,65.894 +184112,324.89,67.233 +184113,321.66,63.173 +184114,322.25,64.556 +184115,322.86,65.926 +184116,323.5,67.281 +184117,320.43,63.173 +184118,320.96,64.572 +184119,321.52,65.957 +184120,322.11,67.328 +184121,319.2,63.173 +184122,319.68,64.588 +184123,320.18,65.988 +184124,320.71,67.374 +184125,317.96,63.174 +184126,318.39,64.604 +184127,318.84,66.019 +184128,319.32,67.419 +184129,316.73,63.177 +184130,317.1,64.62 +184131,317.5,66.049 +184132,317.93,67.462 +184133,315.5,63.181 +184134,315.82,64.637 +184135,316.16,66.079 +184136,316.53,67.505 +184137,314.27,63.186 +184138,314.53,64.655 +184139,314.82,66.108 +184140,315.14,67.546 +184141,313.04,63.192 +184142,313.25,64.672 +184143,313.48,66.137 +184144,313.75,67.586 +184145,311.81,63.2 +184146,311.96,64.691 +184147,312.14,66.166 +184148,312.35,67.625 +184149,310.58,63.209 +184150,310.67,64.709 +184151,310.8,66.194 +184152,310.96,67.663 +184153,309.35,63.218 +184154,309.39,64.728 +184155,309.46,66.222 +184156,309.57,67.699 +184157,308.12,63.229 +184158,308.1,64.747 +184159,308.12,66.249 +184160,308.17,67.734 +184161,306.89,63.242 +184162,306.82,64.767 +184163,306.78,66.276 +184164,306.78,67.768 +184165,305.66,63.255 +184166,305.53,64.787 +184167,305.44,66.303 +184168,305.38,67.801 +184169,304.43,63.27 +184170,304.24,64.808 +184171,304.1,66.329 +184172,303.99,67.833 +184173,303.2,63.286 +184174,302.96,64.829 +184175,302.76,66.355 +184176,302.6,67.863 +184177,301.97,63.304 +184178,301.67,64.85 +184179,301.42,66.38 +184180,301.2,67.892 +184181,300.74,63.322 +184182,300.39,64.872 +184183,300.08,66.405 +184184,299.81,67.92 +184185,299.51,63.342 +184186,299.1,64.894 +184187,298.74,66.429 +184188,298.42,67.947 +184189,298.28,63.363 +184190,297.81,64.916 +184191,297.4,66.453 +184192,297.03,67.972 +184193,297.05,63.385 +184194,296.53,64.939 +184195,296.06,66.477 +184196,295.64,67.996 +184197,295.82,63.409 +184198,295.24,64.963 +184199,294.72,66.5 +184200,294.24,68.019 +184201,294.59,63.434 +184202,293.95,64.986 +184203,293.38,66.522 +184204,292.85,68.041 +184205,293.36,63.46 +184206,292.67,65.01 +184207,292.04,66.545 +184208,291.46,68.062 +184209,292.13,63.487 +184210,291.38,65.035 +184211,290.7,66.567 +184212,290.07,68.081 +184213,290.89,63.516 +184214,290.09,65.06 +184215,289.36,66.588 +184216,288.69,68.099 +184217,289.66,63.545 +184218,288.81,65.085 +184219,288.02,66.609 +184220,287.3,68.116 +184221,288.43,63.576 +184222,287.52,65.111 +184223,286.68,66.63 +184224,285.91,68.131 +184225,287.19,63.609 +184226,286.23,65.137 +184227,285.34,66.65 +184228,284.52,68.146 +184229,285.96,63.642 +184230,284.94,65.164 +184231,284,66.67 +184232,283.13,68.159 +184233,284.72,63.677 +184234,283.65,65.191 +184235,282.67,66.689 +184236,281.75,68.171 +184237,283.48,63.713 +184238,282.36,65.218 +184239,281.33,66.708 +184240,280.36,68.181 +184241,282.24,63.75 +184242,281.07,65.246 +184243,279.99,66.727 +184244,278.98,68.191 +184245,281.01,63.788 +184246,279.79,65.274 +184247,278.65,66.745 +184248,277.6,68.199 +184249,279.77,63.828 +184250,278.5,65.303 +184251,277.31,66.762 +184252,276.21,68.206 +184253,278.52,63.869 +184254,277.21,65.331 +184255,275.98,66.78 +184256,274.83,68.212 +184257,277.28,63.911 +184258,275.91,65.361 +184259,274.64,66.797 +184260,273.45,68.217 +184261,276.04,63.954 +184262,274.62,65.39 +184263,273.3,66.813 +184264,272.07,68.221 +184265,274.8,63.998 +184266,273.33,65.42 +184267,271.97,66.829 +184268,270.69,68.224 +184269,273.55,64.043 +184270,272.04,65.451 +184271,270.63,66.845 +184272,269.31,68.225 +184273,272.31,64.09 +184274,270.75,65.481 +184275,269.3,66.86 +184276,267.94,68.225 +184277,271.06,64.137 +184278,269.46,65.513 +184279,267.96,66.875 +184280,266.56,68.225 +184281,269.81,64.186 +184282,268.16,65.544 +184283,266.63,66.89 +184284,265.19,68.223 +184285,268.56,64.236 +184286,266.87,65.576 +184287,265.29,66.904 +184288,263.81,68.22 +184289,267.31,64.286 +184290,265.58,65.608 +184291,263.96,66.918 +184292,262.44,68.216 +184293,266.06,64.338 +184294,264.28,65.641 +184295,262.63,66.932 +184296,261.07,68.211 +184297,264.8,64.391 +184298,262.99,65.673 +184299,261.29,66.945 +184300,259.7,68.205 +184301,263.55,64.445 +184302,261.69,65.707 +184303,259.96,66.958 +184304,258.33,68.198 +184305,262.29,64.5 +184306,260.4,65.74 +184307,258.63,66.97 +184308,256.96,68.19 +184309,261.03,64.556 +184310,259.1,65.774 +184311,257.3,66.982 +184312,255.6,68.18 +184313,259.77,64.613 +184314,257.81,65.808 +184315,255.97,66.994 +184316,254.23,68.17 +184317,258.51,64.67 +184318,256.51,65.842 +184319,254.63,67.006 +184320,252.87,68.159 +184321,257.25,64.729 +184322,255.21,65.877 +184323,253.3,67.017 +184324,251.51,68.147 +184325,255.98,64.789 +184326,253.91,65.912 +184327,251.97,67.028 +184328,250.15,68.135 +184329,254.72,64.849 +184330,252.62,65.947 +184331,250.64,67.038 +184332,248.79,68.121 +184333,253.45,64.91 +184334,251.32,65.983 +184335,249.32,67.049 +184336,247.43,68.106 +184337,252.18,64.972 +184338,250.02,66.019 +184339,247.99,67.059 +184340,246.07,68.091 +184341,250.91,65.035 +184342,248.72,66.055 +184343,246.66,67.068 +184344,244.72,68.075 +184345,249.64,65.099 +184346,247.42,66.091 +184347,245.33,67.078 +184348,243.36,68.057 +184349,248.36,65.164 +184350,246.12,66.128 +184351,244,67.087 +184352,242.01,68.04 +184353,247.08,65.229 +184354,244.81,66.165 +184355,242.68,67.096 +184356,240.66,68.021 +184357,245.81,65.295 +184358,243.51,66.202 +184359,241.35,67.104 +184360,239.31,68.001 +184361,244.53,65.361 +184362,242.21,66.239 +184363,240.03,67.113 +184364,237.96,67.981 +184365,243.25,65.429 +184366,240.9,66.277 +184367,238.7,67.121 +184368,236.62,67.96 +184369,241.96,65.497 +184370,239.6,66.314 +184371,237.38,67.129 +184372,235.27,67.939 +184373,240.68,65.565 +184374,238.3,66.352 +184375,236.05,67.136 +184376,233.93,67.917 +184377,239.39,65.635 +184378,236.99,66.391 +184379,234.73,67.144 +184380,232.59,67.894 +184381,238.1,65.704 +184382,235.68,66.429 +184383,233.41,67.151 +184384,231.25,67.871 +184385,236.81,65.775 +184386,234.38,66.467 +184387,232.08,67.158 +184388,229.91,67.847 +184389,235.52,65.845 +184390,233.07,66.506 +184391,230.76,67.165 +184392,228.57,67.822 +184393,234.22,65.917 +184394,231.76,66.545 +184395,229.44,67.172 +184396,227.24,67.797 +184397,232.92,65.989 +184398,230.45,66.584 +184399,228.12,67.178 +184400,225.9,67.771 +184401,231.63,66.061 +184402,229.15,66.623 +184403,226.8,67.185 +184404,224.57,67.745 +184405,230.33,66.133 +184406,227.84,66.662 +184407,225.48,67.191 +184408,223.24,67.719 +184409,229.02,66.206 +184410,226.53,66.702 +184411,224.16,67.197 +184412,221.92,67.692 +184413,227.72,66.28 +184414,225.21,66.741 +184415,222.84,67.203 +184416,220.59,67.664 +184417,226.41,66.353 +184418,223.9,66.781 +184419,221.53,67.209 +184420,219.26,67.636 +184421,225.1,66.427 +184422,222.59,66.82 +184423,220.21,67.214 +184424,217.94,67.608 +184425,223.79,66.502 +184426,221.28,66.86 +184427,218.89,67.22 +184428,216.62,67.58 +184429,222.48,66.576 +184430,219.96,66.9 +184431,217.58,67.225 +184432,215.3,67.551 +184433,221.17,66.651 +184434,218.65,66.94 +184435,216.26,67.231 +184436,213.98,67.522 +184437,219.85,66.726 +184438,217.34,66.98 +184439,214.95,67.236 +184440,212.67,67.493 +184441,218.53,66.801 +184442,216.02,67.02 +184443,213.63,67.241 +184444,211.35,67.464 +184445,217.21,66.876 +184446,214.7,67.06 +184447,212.32,67.246 +184448,210.04,67.434 +184449,215.89,66.951 +184450,213.39,67.1 +184451,211.01,67.251 +184452,208.73,67.404 +184453,214.57,67.026 +184454,212.07,67.14 +184455,209.69,67.256 +184456,207.42,67.374 +184457,213.24,67.102 +184458,210.75,67.181 +184459,208.38,67.261 +184460,206.11,67.344 +184461,211.91,67.177 +184462,209.43,67.221 +184463,207.07,67.266 +184464,204.8,67.314 +184465,210.59,67.253 +184466,208.11,67.261 +184467,205.76,67.271 +184468,203.5,67.284 +184469,209.25,67.328 +184470,206.8,67.301 +184471,204.45,67.276 +184472,202.2,67.254 +184473,207.92,67.403 +184474,205.47,67.341 +184475,203.14,67.281 +184476,200.9,67.224 +184477,206.59,67.478 +184478,204.15,67.381 +184479,201.83,67.286 +184480,199.6,67.194 +184481,205.25,67.553 +184482,202.83,67.421 +184483,200.52,67.291 +184484,198.3,67.163 +184485,203.91,67.628 +184486,201.51,67.461 +184487,199.21,67.296 +184488,197,67.134 +184489,202.57,67.703 +184490,200.19,67.501 +184491,197.91,67.301 +184492,195.71,67.104 +184493,201.23,67.777 +184494,198.86,67.541 +184495,196.6,67.306 +184496,194.42,67.074 +184497,199.88,67.852 +184498,197.54,67.581 +184499,195.29,67.312 +184500,193.13,67.045 +184501,198.54,67.926 +184502,196.22,67.62 +184503,193.99,67.317 +184504,191.84,67.015 +184505,197.19,67.999 +184506,194.89,67.66 +184507,192.68,67.322 +184508,190.55,66.986 +184509,195.84,68.073 +184510,193.56,67.699 +184511,191.38,67.327 +184512,189.27,66.958 +184513,194.49,68.146 +184514,192.24,67.739 +184515,190.07,67.333 +184516,187.98,66.929 +184517,193.14,68.218 +184518,190.91,67.778 +184519,188.77,67.339 +184520,186.7,66.901 +184521,191.78,68.291 +184522,189.58,67.817 +184523,187.47,67.344 +184524,185.42,66.873 +184525,190.43,68.362 +184526,188.26,67.856 +184527,186.16,67.35 +184528,184.14,66.846 +184529,189.07,68.434 +184530,186.93,67.895 +184531,184.86,67.356 +184532,182.86,66.819 +184533,187.71,68.505 +184534,185.6,67.934 +184535,183.56,67.362 +184536,181.59,66.792 +184537,186.35,68.575 +184538,184.27,67.972 +184539,182.26,67.369 +184540,180.31,66.766 +184541,184.99,68.645 +184542,182.94,68.01 +184543,180.96,67.375 +184544,179.04,66.74 +184545,183.63,68.714 +184546,181.61,68.048 +184547,179.66,67.382 +184548,177.77,66.715 +184549,182.26,68.783 +184550,180.28,68.086 +184551,178.36,67.388 +184552,176.5,66.691 +184553,180.89,68.851 +184554,178.95,68.124 +184555,177.06,67.395 +184556,175.23,66.666 +184557,179.53,68.919 +184558,177.61,68.161 +184559,175.76,67.402 +184560,173.96,66.643 +184561,178.16,68.985 +184562,176.28,68.199 +184563,174.46,67.41 +184564,172.7,66.62 +184565,176.79,69.052 +184566,174.95,68.236 +184567,173.16,67.417 +184568,171.43,66.598 +184569,175.42,69.117 +184570,173.61,68.273 +184571,171.87,67.425 +184572,170.17,66.576 +184573,174.04,69.182 +184574,172.28,68.309 +184575,170.57,67.433 +184576,168.91,66.556 +184577,172.67,69.246 +184578,170.95,68.345 +184579,169.27,67.441 +184580,167.65,66.535 +184581,171.29,69.309 +184582,169.61,68.381 +184583,167.98,67.45 +184584,166.39,66.516 +184585,169.92,69.372 +184586,168.28,68.417 +184587,166.68,67.459 +184588,165.13,66.497 +184589,168.54,69.433 +184590,166.94,68.453 +184591,165.39,67.468 +184592,163.87,66.479 +184593,167.16,69.494 +184594,165.6,68.488 +184595,164.09,67.477 +184596,162.62,66.462 +184597,165.78,69.554 +184598,164.27,68.523 +184599,162.8,67.486 +184600,161.36,66.446 +184601,164.4,69.614 +184602,162.93,68.558 +184603,161.5,67.496 +184604,160.11,66.431 +184605,163.02,69.672 +184606,161.59,68.592 +184607,160.21,67.506 +184608,158.86,66.416 +184609,161.64,69.729 +184610,160.26,68.626 +184611,158.91,67.517 +184612,157.61,66.402 +184613,160.25,69.786 +184614,158.92,68.66 +184615,157.62,67.527 +184616,156.36,66.39 +184617,158.87,69.841 +184618,157.58,68.693 +184619,156.33,67.538 +184620,155.11,66.378 +184621,157.48,69.896 +184622,156.24,68.726 +184623,155.04,67.55 +184624,153.86,66.367 +184625,156.1,69.949 +184626,154.9,68.759 +184627,153.74,67.561 +184628,152.61,66.357 +184629,154.71,70.002 +184630,153.56,68.792 +184631,152.45,67.573 +184632,151.37,66.348 +184633,153.32,70.054 +184634,152.22,68.824 +184635,151.16,67.585 +184636,150.12,66.34 +184637,151.93,70.104 +184638,150.89,68.855 +184639,149.87,67.598 +184640,148.88,66.333 +184641,150.54,70.154 +184642,149.55,68.887 +184643,148.58,67.611 +184644,147.64,66.327 +184645,149.15,70.203 +184646,148.21,68.918 +184647,147.29,67.624 +184648,146.39,66.322 +184649,147.76,70.25 +184650,146.86,68.949 +184651,145.99,67.638 +184652,145.15,66.318 +184653,146.37,70.297 +184654,145.52,68.979 +184655,144.7,67.651 +184656,143.91,66.316 +184657,144.98,70.342 +184658,144.18,69.009 +184659,143.41,67.666 +184660,142.67,66.314 +184661,143.59,70.386 +184662,142.84,69.039 +184663,142.12,67.68 +184664,141.43,66.313 +184665,142.2,70.429 +184666,141.5,69.068 +184667,140.83,67.695 +184668,140.19,66.314 +184669,140.81,70.471 +184670,140.16,69.097 +184671,139.54,67.711 +184672,138.95,66.316 +184673,139.41,70.512 +184674,138.82,69.125 +184675,138.25,67.727 +184676,137.72,66.318 +184677,138.02,70.552 +184678,137.48,69.153 +184679,136.96,67.743 +184680,136.48,66.322 +184681,136.63,70.591 +184682,136.14,69.181 +184683,135.67,67.759 +184684,135.24,66.327 +184685,135.23,70.628 +184686,134.79,69.208 +184687,134.38,67.776 +184688,134,66.334 +184689,133.84,70.665 +184690,133.45,69.235 +184691,133.1,67.793 +184692,132.77,66.341 +184693,132.44,70.7 +184694,132.11,69.262 +184695,131.81,67.811 +184696,131.53,66.35 +184697,131.05,70.734 +184698,130.77,69.288 +184699,130.52,67.829 +184700,130.3,66.36 +184701,129.66,70.767 +184702,129.43,69.313 +184703,129.23,67.848 +184704,129.06,66.371 +184705,128.26,70.799 +184706,128.08,69.339 +184707,127.94,67.866 +184708,127.83,66.383 +184709,126.87,70.829 +184710,126.74,69.364 +184711,126.65,67.886 +184712,126.59,66.396 +184713,125.47,70.858 +184714,125.4,69.388 +184715,125.36,67.905 +184716,125.36,66.411 +184717,124.08,70.887 +184718,124.06,69.412 +184719,124.07,67.925 +184720,124.12,66.427 +184721,122.68,70.914 +184722,122.72,69.436 +184723,122.78,67.946 +184724,122.89,66.444 +184725,121.29,70.939 +184726,121.37,69.459 +184727,121.49,67.967 +184728,121.65,66.462 +184729,119.9,70.964 +184730,120.03,69.482 +184731,120.2,67.988 +184732,120.41,66.482 +184733,118.5,70.987 +184734,118.69,69.505 +184735,118.91,68.009 +184736,119.18,66.503 +184737,117.11,71.009 +184738,117.35,69.527 +184739,117.62,68.031 +184740,117.94,66.525 +184741,115.72,71.03 +184742,116,69.548 +184743,116.33,68.054 +184744,116.71,66.548 +184745,114.32,71.05 +184746,114.66,69.57 +184747,115.05,68.077 +184748,115.47,66.572 +184749,112.93,71.069 +184750,113.32,69.591 +184751,113.76,68.1 +184752,114.24,66.598 +184753,111.54,71.086 +184754,111.98,69.611 +184755,112.47,68.123 +184756,113,66.625 +184757,110.15,71.102 +184758,110.64,69.631 +184759,111.18,68.148 +184760,111.76,66.653 +184761,108.76,71.117 +184762,109.3,69.651 +184763,109.89,68.172 +184764,110.53,66.682 +184765,107.37,71.131 +184766,107.96,69.67 +184767,108.59,68.197 +184768,109.29,66.713 +184769,105.98,71.144 +184770,106.61,69.689 +184771,107.3,68.222 +184772,108.05,66.745 +184773,104.59,71.155 +184774,105.27,69.707 +184775,106.01,68.248 +184776,106.81,66.778 +184777,103.2,71.166 +184778,103.93,69.725 +184779,104.72,68.274 +184780,105.57,66.812 +184781,101.81,71.175 +184782,102.59,69.743 +184783,103.43,68.3 +184784,104.33,66.847 +184785,100.42,71.183 +184786,101.25,69.76 +184787,102.14,68.327 +184788,103.09,66.883 +184789,99.035,71.19 +184790,99.912,69.777 +184791,100.85,68.354 +184792,101.85,66.921 +184793,97.649,71.195 +184794,98.572,69.794 +184795,99.557,68.381 +184796,100.61,66.96 +184797,96.264,71.2 +184798,97.232,69.81 +184799,98.264,68.409 +184800,99.365,67 +184801,94.879,71.203 +184802,95.893,69.825 +184803,96.972,68.437 +184804,98.122,67.041 +184805,93.496,71.206 +184806,94.554,69.841 +184807,95.679,68.466 +184808,96.877,67.083 +184809,92.113,71.207 +184810,93.215,69.856 +184811,94.386,68.495 +184812,95.632,67.127 +184813,90.731,71.207 +184814,91.877,69.87 +184815,93.092,68.524 +184816,94.385,67.171 +184817,89.35,71.206 +184818,90.538,69.885 +184819,91.799,68.554 +184820,93.138,67.217 +184821,87.97,71.204 +184822,89.201,69.898 +184823,90.505,68.584 +184824,91.89,67.263 +184825,86.591,71.201 +184826,87.863,69.912 +184827,89.21,68.615 +184828,90.64,67.311 +184829,85.213,71.197 +184830,86.526,69.925 +184831,87.915,68.645 +184832,89.39,67.36 +184833,83.836,71.192 +184834,85.189,69.938 +184835,86.62,68.677 +184836,88.138,67.41 +184837,82.46,71.186 +184838,83.852,69.95 +184839,85.324,68.708 +184840,86.885,67.461 +184841,81.086,71.179 +184842,82.516,69.963 +184843,84.028,68.74 +184844,85.631,67.512 +184845,79.712,71.171 +184846,81.18,69.974 +184847,82.732,68.772 +184848,84.376,67.565 +184849,78.339,71.162 +184850,79.845,69.986 +184851,81.435,68.804 +184852,83.119,67.619 +184853,76.968,71.152 +184854,78.51,69.997 +184855,80.138,68.837 +184856,81.861,67.674 +184857,75.598,71.141 +184858,77.175,70.008 +184859,78.84,68.87 +184860,80.602,67.729 +184861,74.229,71.129 +184862,75.841,70.018 +184863,77.542,68.903 +184864,79.342,67.786 +184865,72.861,71.116 +184866,74.507,70.029 +184867,76.243,68.937 +184868,78.08,67.843 +184869,71.495,71.103 +184870,73.174,70.039 +184871,74.944,68.971 +184872,76.816,67.902 +184873,70.13,71.088 +184874,71.841,70.048 +184875,73.644,69.005 +184876,75.551,67.961 +184877,68.766,71.073 +184878,70.508,70.058 +184879,72.344,69.04 +184880,74.285,68.021 +184881,67.404,71.057 +184882,69.176,70.067 +184883,71.044,69.074 +184884,73.017,68.082 +184885,66.043,71.04 +184886,67.845,70.076 +184887,69.743,69.109 +184888,71.748,68.144 +184889,64.683,71.022 +184890,66.514,70.084 +184891,68.441,69.145 +184892,70.477,68.206 +184893,63.325,71.004 +184894,65.183,70.092 +184895,67.139,69.18 +184896,69.205,68.269 +184897,61.968,70.985 +184898,63.853,70.101 +184899,65.836,69.216 +184900,67.93,68.333 +184901,60.612,70.965 +184902,62.523,70.108 +184903,64.533,69.252 +184904,66.655,68.398 +184905,59.258,70.944 +184906,61.194,70.116 +184907,63.229,69.288 +184908,65.377,68.463 +184909,57.906,70.923 +184910,59.865,70.123 +184911,61.925,69.325 +184912,64.098,68.529 +184913,56.555,70.901 +184914,58.537,70.13 +184915,60.62,69.361 +184916,62.818,68.595 +184917,55.206,70.879 +184918,57.209,70.137 +184919,59.315,69.398 +184920,61.535,68.662 +184921,53.858,70.855 +184922,55.882,70.144 +184923,58.009,69.435 +184924,60.251,68.73 +184925,52.511,70.832 +184926,54.555,70.151 +184927,56.702,69.472 +184928,58.965,68.798 +184929,51.166,70.807 +184930,53.229,70.157 +184931,55.395,69.51 +184932,57.677,68.867 +184933,49.823,70.783 +184934,51.904,70.163 +184935,54.087,69.547 +184936,56.388,68.936 +184937,48.481,70.757 +184938,50.579,70.169 +184939,52.779,69.585 +184940,55.097,69.006 +184941,47.141,70.732 +184942,49.254,70.175 +184943,51.47,69.623 +184944,53.804,69.076 +184945,45.803,70.705 +184946,47.93,70.181 +184947,50.161,69.661 +184948,52.509,69.147 +184949,44.466,70.679 +184950,46.607,70.186 +184951,48.851,69.699 +184952,51.212,69.218 +184953,43.13,70.652 +184954,45.284,70.192 +184955,47.54,69.737 +184956,49.914,69.289 +184957,41.797,70.624 +184958,43.961,70.197 +184959,46.229,69.775 +184960,48.613,69.361 +184961,40.465,70.596 +184962,42.64,70.202 +184963,44.917,69.814 +184964,47.311,69.433 +184965,39.134,70.568 +184966,41.318,70.207 +184967,43.604,69.852 +184968,46.007,69.505 +184969,37.806,70.54 +184970,39.998,70.212 +184971,42.291,69.891 +184972,44.701,69.577 +184973,36.479,70.511 +184974,38.678,70.217 +184975,40.977,69.93 +184976,43.393,69.65 +184977,35.153,70.482 +184978,37.358,70.222 +184979,39.663,69.969 +184980,42.084,69.723 +184981,33.829,70.453 +184982,36.039,70.227 +184983,38.348,70.007 +184984,40.772,69.796 +184985,32.507,70.424 +184986,34.721,70.231 +184987,37.033,70.046 +184988,39.459,69.869 +184989,31.187,70.394 +184990,33.403,70.236 +184991,35.717,70.085 +184992,38.144,69.943 +184993,29.868,70.364 +184994,32.085,70.241 +184995,34.4,70.124 +184996,36.827,70.016 +184997,28.551,70.335 +184998,30.769,70.245 +184999,33.082,70.163 +185000,35.508,70.09 +185001,27.236,70.305 +185002,29.453,70.25 +185003,31.764,70.202 +185004,34.187,70.163 +185005,25.922,70.275 +185006,28.137,70.254 +185007,30.446,70.241 +185008,32.864,70.237 +185009,24.61,70.245 +185010,26.822,70.259 +185011,29.127,70.28 +185012,31.54,70.311 +185013,23.3,70.215 +185014,25.507,70.263 +185015,27.807,70.319 +185016,30.213,70.384 +185017,21.992,70.185 +185018,24.193,70.268 +185019,26.486,70.358 +185020,28.885,70.458 +185021,20.685,70.155 +185022,22.88,70.272 +185023,25.165,70.397 +185024,27.555,70.531 +185025,19.379,70.125 +185026,21.567,70.277 +185027,23.844,70.436 +185028,26.223,70.604 +185029,18.076,70.096 +185030,20.255,70.281 +185031,22.522,70.475 +185032,24.89,70.677 +185033,16.774,70.066 +185034,18.943,70.286 +185035,21.199,70.514 +185036,23.554,70.75 +185037,15.474,70.037 +185038,17.632,70.291 +185039,19.875,70.553 +185040,22.217,70.822 +185041,14.175,70.008 +185042,16.321,70.296 +185043,18.551,70.591 +185044,20.878,70.895 +185045,12.878,69.979 +185046,15.011,70.301 +185047,17.227,70.63 +185048,19.537,70.967 +185049,11.583,69.95 +185050,13.702,70.306 +185051,15.902,70.668 +185052,18.195,71.039 +185053,10.289,69.922 +185054,12.393,70.311 +185055,14.576,70.707 +185056,16.851,71.11 +185057,8.9966,69.894 +185058,11.084,70.316 +185059,13.25,70.745 +185060,15.505,71.181 +185061,7.7061,69.866 +185062,9.7765,70.321 +185063,11.923,70.783 +185064,14.157,71.252 +185065,6.4172,69.839 +185066,8.4691,70.326 +185067,10.595,70.821 +185068,12.808,71.323 +185069,5.1298,69.812 +185070,7.1622,70.332 +185071,9.2673,70.859 +185072,11.457,71.392 +185073,3.844,69.785 +185074,5.8558,70.338 +185075,7.9387,70.897 +185076,10.104,71.462 +185077,2.5597,69.759 +185078,4.5499,70.343 +185079,6.6097,70.934 +185080,8.7502,71.531 +185081,1.277,69.733 +185082,3.2445,70.349 +185083,5.2801,70.972 +185084,7.3945,71.599 +185085,360,69.708 +185086,1.9397,70.356 +185087,3.9499,71.009 +185088,6.0372,71.667 +185089,358.72,69.683 +185090,0.63528,70.362 +185091,2.6193,71.046 +185092,4.6784,71.735 +185093,357.44,69.659 +185094,359.33,70.368 +185095,1.2881,71.083 +185096,3.3181,71.802 +185097,356.16,69.636 +185098,358.03,70.375 +185099,359.96,71.119 +185100,1.9563,71.868 +185101,354.89,69.613 +185102,356.72,70.382 +185103,358.62,71.156 +185104,0.59305,71.934 +185105,353.61,69.591 +185106,355.42,70.389 +185107,357.29,71.192 +185108,359.23,71.999 +185109,352.34,69.569 +185110,354.12,70.396 +185111,355.96,71.228 +185112,357.86,72.063 +185113,351.07,69.548 +185114,352.82,70.404 +185115,354.62,71.264 +185116,356.49,72.127 +185117,349.8,69.527 +185118,351.52,70.412 +185119,353.29,71.299 +185120,355.13,72.189 +185121,348.53,69.508 +185122,350.22,70.42 +185123,351.96,71.335 +185124,353.76,72.252 +185125,347.26,69.489 +185126,348.92,70.428 +185127,350.62,71.37 +185128,352.38,72.313 +185129,346,69.471 +185130,347.62,70.436 +185131,349.29,71.404 +185132,351.01,72.374 +185133,344.73,69.453 +185134,346.32,70.445 +185135,347.95,71.439 +185136,349.64,72.434 +185137,343.47,69.437 +185138,345.02,70.454 +185139,346.61,71.473 +185140,348.26,72.493 +185141,342.21,69.421 +185142,343.72,70.464 +185143,345.28,71.507 +185144,346.89,72.551 +185145,340.95,69.406 +185146,342.42,70.473 +185147,343.94,71.541 +185148,345.51,72.608 +185149,339.69,69.392 +185150,341.12,70.483 +185151,342.6,71.574 +185152,344.13,72.665 +185153,338.43,69.379 +185154,339.83,70.493 +185155,341.26,71.607 +185156,342.75,72.72 +185157,337.17,69.367 +185158,338.53,70.504 +185159,339.93,71.64 +185160,341.37,72.775 +185161,335.91,69.356 +185162,337.23,70.514 +185163,338.59,71.673 +185164,339.99,72.829 +185165,334.66,69.345 +185166,335.93,70.526 +185167,337.25,71.705 +185168,338.61,72.882 +185169,333.4,69.336 +185170,334.64,70.537 +185171,335.91,71.737 +185172,337.22,72.934 +185173,332.15,69.328 +185174,333.34,70.549 +185175,334.57,71.768 +185176,335.84,72.985 +185177,330.9,69.32 +185178,332.05,70.561 +185179,333.23,71.799 +185180,334.45,73.035 +185181,329.65,69.314 +185182,330.75,70.573 +185183,331.89,71.83 +185184,333.07,73.084 +185185,328.4,69.308 +185186,329.46,70.586 +185187,330.55,71.861 +185188,331.68,73.132 +185189,327.15,69.304 +185190,328.16,70.599 +185191,329.21,71.891 +185192,330.29,73.178 +185193,325.9,69.301 +185194,326.87,70.612 +185195,327.87,71.921 +185196,328.91,73.224 +185197,324.65,69.298 +185198,325.57,70.626 +185199,326.53,71.95 +185200,327.52,73.269 +185201,323.4,69.297 +185202,324.28,70.64 +185203,325.19,71.979 +185204,326.13,73.313 +185205,322.16,69.297 +185206,322.98,70.655 +185207,323.84,72.008 +185208,324.74,73.356 +185209,320.91,69.298 +185210,321.69,70.67 +185211,322.5,72.037 +185212,323.35,73.397 +185213,319.66,69.301 +185214,320.4,70.685 +185215,321.16,72.065 +185216,321.95,73.438 +185217,318.42,69.304 +185218,319.1,70.701 +185219,319.82,72.092 +185220,320.56,73.477 +185221,317.18,69.308 +185222,317.81,70.717 +185223,318.47,72.12 +185224,319.17,73.515 +185225,315.93,69.314 +185226,316.52,70.733 +185227,317.13,72.146 +185228,317.78,73.553 +185229,314.69,69.321 +185230,315.22,70.75 +185231,315.79,72.173 +185232,316.39,73.589 +185233,313.45,69.329 +185234,313.93,70.767 +185235,314.45,72.199 +185236,314.99,73.624 +185237,312.2,69.338 +185238,312.64,70.785 +185239,313.1,72.225 +185240,313.6,73.657 +185241,310.96,69.348 +185242,311.35,70.803 +185243,311.76,72.25 +185244,312.2,73.69 +185245,309.72,69.36 +185246,310.05,70.821 +185247,310.42,72.275 +185248,310.81,73.721 +185249,308.48,69.372 +185250,308.76,70.84 +185251,309.07,72.3 +185252,309.42,73.752 +185253,307.24,69.386 +185254,307.47,70.859 +185255,307.73,72.324 +185256,308.02,73.781 +185257,306,69.401 +185258,306.18,70.878 +185259,306.39,72.348 +185260,306.63,73.809 +185261,304.76,69.418 +185262,304.88,70.898 +185263,305.04,72.371 +185264,305.23,73.836 +185265,303.52,69.435 +185266,303.59,70.918 +185267,303.7,72.394 +185268,303.84,73.861 +185269,302.27,69.454 +185270,302.3,70.939 +185271,302.36,72.417 +185272,302.44,73.886 +185273,301.03,69.474 +185274,301.01,70.96 +185275,301.01,72.439 +185276,301.05,73.909 +185277,299.79,69.495 +185278,299.71,70.982 +185279,299.67,72.461 +185280,299.66,73.931 +185281,298.55,69.518 +185282,298.42,71.004 +185283,298.32,72.482 +185284,298.26,73.952 +185285,297.31,69.541 +185286,297.13,71.026 +185287,296.98,72.503 +185288,296.87,73.972 +185289,296.07,69.566 +185290,295.84,71.049 +185291,295.64,72.524 +185292,295.47,73.991 +185293,294.83,69.592 +185294,294.54,71.072 +185295,294.29,72.544 +185296,294.08,74.008 +185297,293.59,69.619 +185298,293.25,71.095 +185299,292.95,72.564 +185300,292.69,74.024 +185301,292.35,69.648 +185302,291.96,71.119 +185303,291.61,72.584 +185304,291.29,74.039 +185305,291.11,69.678 +185306,290.67,71.144 +185307,290.26,72.603 +185308,289.9,74.053 +185309,289.87,69.708 +185310,289.37,71.168 +185311,288.92,72.621 +185312,288.51,74.066 +185313,288.63,69.741 +185314,288.08,71.193 +185315,287.58,72.64 +185316,287.12,74.078 +185317,287.38,69.774 +185318,286.79,71.219 +185319,286.23,72.658 +185320,285.73,74.088 +185321,286.14,69.808 +185322,285.49,71.245 +185323,284.89,72.675 +185324,284.33,74.098 +185325,284.9,69.844 +185326,284.2,71.271 +185327,283.55,72.692 +185328,282.94,74.106 +185329,283.65,69.881 +185330,282.91,71.298 +185331,282.21,72.709 +185332,281.55,74.113 +185333,282.41,69.919 +185334,281.61,71.325 +185335,280.86,72.725 +185336,280.16,74.119 +185337,281.16,69.958 +185338,280.32,71.352 +185339,279.52,72.741 +185340,278.78,74.124 +185341,279.92,69.998 +185342,279.02,71.38 +185343,278.18,72.757 +185344,277.39,74.127 +185345,278.67,70.04 +185346,277.73,71.408 +185347,276.84,72.772 +185348,276,74.13 +185349,277.42,70.082 +185350,276.43,71.437 +185351,275.5,72.787 +185352,274.61,74.132 +185353,276.18,70.126 +185354,275.14,71.466 +185355,274.16,72.802 +185356,273.23,74.132 +185357,274.93,70.171 +185358,273.84,71.495 +185359,272.81,72.816 +185360,271.84,74.131 +185361,273.68,70.217 +185362,272.55,71.525 +185363,271.47,72.83 +185364,270.46,74.13 +185365,272.43,70.263 +185366,271.25,71.555 +185367,270.13,72.843 +185368,269.07,74.127 +185369,271.18,70.311 +185370,269.95,71.585 +185371,268.79,72.856 +185372,267.69,74.123 +185373,269.93,70.36 +185374,268.66,71.616 +185375,267.45,72.869 +185376,266.31,74.119 +185377,268.67,70.41 +185378,267.36,71.647 +185379,266.11,72.882 +185380,264.93,74.113 +185381,267.42,70.461 +185382,266.06,71.678 +185383,264.77,72.894 +185384,263.55,74.106 +185385,266.16,70.514 +185386,264.77,71.71 +185387,263.44,72.906 +185388,262.17,74.099 +185389,264.91,70.567 +185390,263.47,71.742 +185391,262.1,72.917 +185392,260.79,74.09 +185393,263.65,70.621 +185394,262.17,71.774 +185395,260.76,72.928 +185396,259.42,74.08 +185397,262.39,70.675 +185398,260.87,71.807 +185399,259.42,72.939 +185400,258.04,74.07 +185401,261.13,70.731 +185402,259.57,71.84 +185403,258.08,72.95 +185404,256.67,74.058 +185405,259.87,70.788 +185406,258.27,71.873 +185407,256.75,72.96 +185408,255.29,74.046 +185409,258.61,70.846 +185410,256.97,71.907 +185411,255.41,72.97 +185412,253.92,74.033 +185413,257.35,70.904 +185414,255.67,71.941 +185415,254.07,72.98 +185416,252.55,74.019 +185417,256.08,70.964 +185418,254.37,71.975 +185419,252.74,72.989 +185420,251.18,74.004 +185421,254.82,71.024 +185422,253.07,72.009 +185423,251.4,72.998 +185424,249.81,73.988 +185425,253.55,71.085 +185426,251.77,72.044 +185427,250.07,73.007 +185428,248.44,73.972 +185429,252.28,71.146 +185430,250.46,72.079 +185431,248.73,73.016 +185432,247.08,73.955 +185433,251.01,71.209 +185434,249.16,72.114 +185435,247.4,73.024 +185436,245.71,73.937 +185437,249.74,71.272 +185438,247.86,72.15 +185439,246.06,73.032 +185440,244.35,73.918 +185441,248.47,71.336 +185442,246.55,72.185 +185443,244.73,73.04 +185444,242.99,73.899 +185445,247.19,71.401 +185446,245.25,72.221 +185447,243.4,73.048 +185448,241.62,73.878 +185449,245.92,71.466 +185450,243.94,72.257 +185451,242.06,73.055 +185452,240.26,73.858 +185453,244.64,71.532 +185454,242.64,72.294 +185455,240.73,73.062 +185456,238.91,73.836 +185457,243.36,71.599 +185458,241.33,72.33 +185459,239.4,73.069 +185460,237.55,73.814 +185461,242.08,71.666 +185462,240.03,72.367 +185463,238.07,73.076 +185464,236.19,73.791 +185465,240.8,71.734 +185466,238.72,72.404 +185467,236.74,73.083 +185468,234.84,73.768 +185469,239.51,71.802 +185470,237.41,72.441 +185471,235.41,73.089 +185472,233.49,73.744 +185473,238.23,71.871 +185474,236.11,72.478 +185475,234.08,73.096 +185476,232.14,73.72 +185477,236.94,71.94 +185478,234.8,72.516 +185479,232.75,73.102 +185480,230.79,73.695 +185481,235.65,72.01 +185482,233.49,72.554 +185483,231.42,73.108 +185484,229.44,73.67 +185485,234.36,72.08 +185486,232.18,72.591 +185487,230.09,73.113 +185488,228.09,73.644 +185489,233.07,72.151 +185490,230.87,72.629 +185491,228.76,73.119 +185492,226.75,73.618 +185493,231.78,72.222 +185494,229.56,72.667 +185495,227.44,73.125 +185496,225.4,73.591 +185497,230.48,72.293 +185498,228.25,72.706 +185499,226.11,73.13 +185500,224.06,73.564 +185501,229.19,72.365 +185502,226.93,72.744 +185503,224.78,73.135 +185504,222.72,73.537 +185505,227.89,72.437 +185506,225.62,72.782 +185507,223.46,73.14 +185508,221.38,73.509 +185509,226.59,72.509 +185510,224.31,72.821 +185511,222.13,73.146 +185512,220.05,73.481 +185513,225.28,72.581 +185514,223,72.859 +185515,220.81,73.151 +185516,218.71,73.452 +185517,223.98,72.654 +185518,221.68,72.898 +185519,219.48,73.155 +185520,217.38,73.424 +185521,222.67,72.727 +185522,220.37,72.937 +185523,218.16,73.16 +185524,216.04,73.395 +185525,221.37,72.8 +185526,219.05,72.976 +185527,216.84,73.165 +185528,214.71,73.366 +185529,220.06,72.873 +185530,217.74,73.015 +185531,215.52,73.17 +185532,213.38,73.337 +185533,218.75,72.947 +185534,216.42,73.054 +185535,214.19,73.175 +185536,212.06,73.308 +185537,217.43,73.02 +185538,215.1,73.092 +185539,212.87,73.179 +185540,210.73,73.278 +185541,216.12,73.093 +185542,213.78,73.131 +185543,211.55,73.184 +185544,209.41,73.249 +185545,214.8,73.167 +185546,212.47,73.17 +185547,210.23,73.188 +185548,208.08,73.219 +185549,213.48,73.24 +185550,211.15,73.209 +185551,208.91,73.193 +185552,206.76,73.19 +185553,212.16,73.314 +185554,209.83,73.248 +185555,207.59,73.198 +185556,205.44,73.16 +185557,210.84,73.387 +185558,208.51,73.287 +185559,206.27,73.202 +185560,204.12,73.13 +185561,209.52,73.46 +185562,207.19,73.326 +185563,204.96,73.207 +185564,202.81,73.101 +185565,208.19,73.534 +185566,205.87,73.365 +185567,203.64,73.212 +185568,201.49,73.071 +185569,206.86,73.607 +185570,204.54,73.404 +185571,202.32,73.216 +185572,200.18,73.042 +185573,205.53,73.68 +185574,203.22,73.443 +185575,201,73.221 +185576,198.87,73.013 +185577,204.2,73.752 +185578,201.9,73.482 +185579,199.69,73.226 +185580,197.56,72.984 +185581,202.87,73.825 +185582,200.57,73.521 +185583,198.37,73.231 +185584,196.25,72.955 +185585,201.54,73.897 +185586,199.25,73.559 +185587,197.06,73.236 +185588,194.95,72.926 +185589,200.2,73.969 +185590,197.93,73.598 +185591,195.74,73.241 +185592,193.64,72.897 +185593,198.86,74.041 +185594,196.6,73.636 +185595,194.43,73.246 +185596,192.34,72.869 +185597,197.52,74.112 +185598,195.27,73.675 +185599,193.12,73.251 +185600,191.04,72.841 +185601,196.18,74.183 +185602,193.95,73.713 +185603,191.8,73.257 +185604,189.74,72.814 +185605,194.84,74.253 +185606,192.62,73.751 +185607,190.49,73.262 +185608,188.44,72.787 +185609,193.49,74.323 +185610,191.29,73.789 +185611,189.18,73.268 +185612,187.14,72.76 +185613,192.15,74.393 +185614,189.97,73.827 +185615,187.87,73.274 +185616,185.84,72.733 +185617,190.8,74.462 +185618,188.64,73.865 +185619,186.56,73.28 +185620,184.55,72.707 +185621,189.45,74.531 +185622,187.31,73.902 +185623,185.25,73.286 +185624,183.26,72.682 +185625,188.1,74.599 +185626,185.98,73.94 +185627,183.94,73.292 +185628,181.97,72.657 +185629,186.75,74.667 +185630,184.65,73.977 +185631,182.63,73.299 +185632,180.68,72.632 +185633,185.39,74.734 +185634,183.32,74.014 +185635,181.32,73.305 +185636,179.39,72.608 +185637,184.04,74.801 +185638,181.99,74.051 +185639,180.01,73.312 +185640,178.1,72.584 +185641,182.68,74.867 +185642,180.65,74.087 +185643,178.7,73.319 +185644,176.82,72.561 +185645,181.32,74.932 +185646,179.32,74.124 +185647,177.4,73.326 +185648,175.54,72.539 +185649,179.96,74.997 +185650,177.99,74.16 +185651,176.09,73.334 +185652,174.25,72.517 +185653,178.6,75.061 +185654,176.65,74.196 +185655,174.78,73.341 +185656,172.97,72.496 +185657,177.23,75.124 +185658,175.32,74.232 +185659,173.48,73.349 +185660,171.69,72.476 +185661,175.87,75.187 +185662,173.99,74.267 +185663,172.17,73.357 +185664,170.42,72.456 +185665,174.5,75.249 +185666,172.65,74.303 +185667,170.87,73.366 +185668,169.14,72.437 +185669,173.14,75.31 +185670,171.32,74.338 +185671,169.56,73.374 +185672,167.86,72.419 +185673,171.77,75.37 +185674,169.98,74.373 +185675,168.26,73.383 +185676,166.59,72.402 +185677,170.4,75.43 +185678,168.64,74.407 +185679,166.95,73.392 +185680,165.32,72.385 +185681,169.03,75.489 +185682,167.31,74.442 +185683,165.65,73.402 +185684,164.05,72.369 +185685,167.65,75.547 +185686,165.97,74.476 +185687,164.35,73.411 +185688,162.78,72.354 +185689,166.28,75.604 +185690,164.63,74.509 +185691,163.04,73.421 +185692,161.51,72.34 +185693,164.91,75.66 +185694,163.3,74.543 +185695,161.74,73.432 +185696,160.24,72.327 +185697,163.53,75.715 +185698,161.96,74.576 +185699,160.44,73.442 +185700,158.97,72.315 +185701,162.15,75.769 +185702,160.62,74.609 +185703,159.14,73.453 +185704,157.71,72.303 +185705,160.77,75.823 +185706,159.28,74.641 +185707,157.84,73.464 +185708,156.44,72.293 +185709,159.39,75.875 +185710,157.94,74.674 +185711,156.54,73.476 +185712,155.18,72.283 +185713,158.01,75.927 +185714,156.6,74.706 +185715,155.24,73.488 +185716,153.92,72.274 +185717,156.63,75.978 +185718,155.26,74.737 +185719,153.94,73.5 +185720,152.66,72.267 +185721,155.25,76.027 +185722,153.92,74.768 +185723,152.64,73.513 +185724,151.4,72.26 +185725,153.87,76.076 +185726,152.58,74.799 +185727,151.34,73.525 +185728,150.14,72.255 +185729,152.48,76.123 +185730,151.24,74.83 +185731,150.04,73.539 +185732,148.88,72.25 +185733,151.1,76.17 +185734,149.9,74.86 +185735,148.74,73.552 +185736,147.62,72.246 +185737,149.71,76.215 +185738,148.55,74.89 +185739,147.44,73.566 +185740,146.36,72.244 +185741,148.32,76.26 +185742,147.21,74.92 +185743,146.14,73.58 +185744,145.11,72.243 +185745,146.94,76.303 +185746,145.87,74.949 +185747,144.84,73.595 +185748,143.85,72.242 +185749,145.55,76.345 +185750,144.53,74.978 +185751,143.55,73.61 +185752,142.6,72.243 +185753,144.16,76.387 +185754,143.18,75.006 +185755,142.25,73.626 +185756,141.35,72.245 +185757,142.77,76.427 +185758,141.84,75.035 +185759,140.95,73.641 +185760,140.09,72.248 +185761,141.38,76.466 +185762,140.5,75.062 +185763,139.65,73.657 +185764,138.84,72.252 +185765,139.99,76.504 +185766,139.15,75.09 +185767,138.36,73.674 +185768,137.59,72.258 +185769,138.6,76.541 +185770,137.81,75.117 +185771,137.06,73.691 +185772,136.34,72.264 +185773,137.21,76.576 +185774,136.47,75.143 +185775,135.76,73.708 +185776,135.09,72.272 +185777,135.82,76.611 +185778,135.12,75.17 +185779,134.47,73.726 +185780,133.84,72.281 +185781,134.42,76.644 +185782,133.78,75.195 +185783,133.17,73.744 +185784,132.59,72.291 +185785,133.03,76.676 +185786,132.43,75.221 +185787,131.87,73.763 +185788,131.34,72.302 +185789,131.64,76.707 +185790,131.09,75.246 +185791,130.58,73.781 +185792,130.09,72.315 +185793,130.24,76.737 +185794,129.75,75.271 +185795,129.28,73.801 +185796,128.85,72.328 +185797,128.85,76.766 +185798,128.4,75.295 +185799,127.98,73.82 +185800,127.6,72.343 +185801,127.46,76.794 +185802,127.06,75.319 +185803,126.69,73.841 +185804,126.35,72.359 +185805,126.06,76.82 +185806,125.71,75.343 +185807,125.39,73.861 +185808,125.11,72.376 +185809,124.67,76.845 +185810,124.37,75.366 +185811,124.1,73.882 +185812,123.86,72.395 +185813,123.27,76.869 +185814,123.02,75.389 +185815,122.8,73.903 +185816,122.61,72.415 +185817,121.88,76.892 +185818,121.67,75.411 +185819,121.5,73.925 +185820,121.37,72.436 +185821,120.48,76.914 +185822,120.33,75.433 +185823,120.21,73.947 +185824,120.12,72.458 +185825,119.09,76.935 +185826,118.98,75.455 +185827,118.91,73.97 +185828,118.87,72.481 +185829,117.69,76.954 +185830,117.64,75.476 +185831,117.62,73.993 +185832,117.63,72.506 +185833,116.3,76.972 +185834,116.29,75.497 +185835,116.32,74.016 +185836,116.38,72.532 +185837,114.9,76.989 +185838,114.95,75.517 +185839,115.03,74.04 +185840,115.14,72.559 +185841,113.51,77.005 +185842,113.6,75.537 +185843,113.73,74.064 +185844,113.89,72.587 +185845,112.12,77.02 +185846,112.26,75.557 +185847,112.43,74.089 +185848,112.64,72.617 +185849,110.72,77.034 +185850,110.91,75.576 +185851,111.14,74.113 +185852,111.4,72.647 +185853,109.33,77.046 +185854,109.57,75.595 +185855,109.84,74.139 +185856,110.15,72.679 +185857,107.94,77.057 +185858,108.22,75.613 +185859,108.54,74.165 +185860,108.9,72.713 +185861,106.54,77.067 +185862,106.88,75.632 +185863,107.25,74.191 +185864,107.66,72.747 +185865,105.15,77.077 +185866,105.53,75.649 +185867,105.95,74.217 +185868,106.41,72.782 +185869,103.76,77.084 +185870,104.19,75.667 +185871,104.66,74.244 +185872,105.16,72.819 +185873,102.37,77.091 +185874,102.84,75.684 +185875,103.36,74.272 +185876,103.91,72.857 +185877,100.97,77.097 +185878,101.5,75.7 +185879,102.06,74.299 +185880,102.66,72.896 +185881,99.583,77.101 +185882,100.15,75.716 +185883,100.76,74.328 +185884,101.42,72.936 +185885,98.192,77.105 +185886,98.81,75.732 +185887,99.468,74.356 +185888,100.17,72.978 +185889,96.802,77.107 +185890,97.466,75.748 +185891,98.17,74.385 +185892,98.916,73.02 +185893,95.413,77.108 +185894,96.122,75.763 +185895,96.872,74.414 +185896,97.666,73.064 +185897,94.024,77.109 +185898,94.778,75.778 +185899,95.575,74.444 +185900,96.415,73.109 +185901,92.636,77.108 +185902,93.435,75.792 +185903,94.276,74.474 +185904,95.163,73.155 +185905,91.249,77.106 +185906,92.092,75.806 +185907,92.978,74.504 +185908,93.911,73.202 +185909,89.862,77.103 +185910,90.748,75.82 +185911,91.679,74.535 +185912,92.658,73.25 +185913,88.476,77.099 +185914,89.406,75.833 +185915,90.381,74.566 +185916,91.404,73.299 +185917,87.091,77.094 +185918,88.063,75.847 +185919,89.081,74.598 +185920,90.149,73.349 +185921,85.707,77.088 +185922,86.721,75.859 +185923,87.782,74.629 +185924,88.894,73.4 +185925,84.323,77.081 +185926,85.378,75.872 +185927,86.482,74.662 +185928,87.637,73.453 +185929,82.941,77.073 +185930,84.037,75.884 +185931,85.182,74.694 +185932,86.38,73.506 +185933,81.559,77.064 +185934,82.695,75.896 +185935,83.882,74.727 +185936,85.122,73.56 +185937,80.178,77.055 +185938,81.354,75.907 +185939,82.581,74.76 +185940,83.863,73.615 +185941,78.798,77.044 +185942,80.013,75.918 +185943,81.28,74.793 +185944,82.603,73.672 +185945,77.419,77.032 +185946,78.672,75.929 +185947,79.979,74.827 +185948,81.342,73.729 +185949,76.042,77.02 +185950,77.332,75.94 +185951,78.677,74.861 +185952,80.08,73.787 +185953,74.665,77.007 +185954,75.992,75.95 +185955,77.375,74.896 +185956,78.817,73.846 +185957,73.289,76.992 +185958,74.652,75.96 +185959,76.072,74.93 +185960,77.553,73.905 +185961,71.914,76.977 +185962,73.313,75.97 +185963,74.769,74.965 +185964,76.287,73.966 +185965,70.541,76.962 +185966,71.974,75.979 +185967,73.466,75 +185968,75.021,74.027 +185969,69.169,76.945 +185970,70.635,75.988 +185971,72.162,75.036 +185972,73.753,74.09 +185973,67.797,76.928 +185974,69.297,75.997 +185975,70.858,75.072 +185976,72.484,74.153 +185977,66.427,76.91 +185978,67.959,76.006 +185979,69.553,75.108 +185980,71.214,74.217 +185981,65.058,76.891 +185982,66.622,76.014 +185983,68.248,75.144 +185984,69.942,74.281 +185985,63.691,76.871 +185986,65.285,76.023 +185987,66.943,75.18 +185988,68.669,74.346 +185989,62.324,76.851 +185990,63.948,76.031 +185991,65.637,75.217 +185992,67.395,74.412 +185993,60.959,76.83 +185994,62.612,76.039 +185995,64.331,75.254 +185996,66.12,74.479 +185997,59.595,76.809 +185998,61.276,76.046 +185999,63.024,75.291 +186000,64.843,74.546 +186001,58.233,76.787 +186002,59.941,76.054 +186003,61.716,75.329 +186004,63.565,74.614 +186005,56.872,76.764 +186006,58.606,76.061 +186007,60.408,75.366 +186008,62.285,74.683 +186009,55.512,76.741 +186010,57.272,76.068 +186011,59.1,75.404 +186012,61.004,74.752 +186013,54.153,76.717 +186014,55.938,76.075 +186015,57.791,75.442 +186016,59.721,74.821 +186017,52.796,76.693 +186018,54.604,76.081 +186019,56.482,75.48 +186020,58.437,74.892 +186021,51.441,76.668 +186022,53.271,76.088 +186023,55.172,75.519 +186024,57.151,74.962 +186025,50.086,76.642 +186026,51.938,76.094 +186027,53.862,75.557 +186028,55.864,75.033 +186029,48.734,76.617 +186030,50.606,76.1 +186031,52.551,75.596 +186032,54.576,75.105 +186033,47.382,76.59 +186034,49.274,76.106 +186035,51.24,75.634 +186036,53.285,75.177 +186037,46.032,76.564 +186038,47.943,76.112 +186039,49.928,75.673 +186040,51.994,75.249 +186041,44.684,76.537 +186042,46.612,76.118 +186043,48.615,75.712 +186044,50.7,75.322 +186045,43.337,76.51 +186046,45.282,76.124 +186047,47.302,75.752 +186048,49.405,75.395 +186049,41.991,76.482 +186050,43.952,76.13 +186051,45.989,75.791 +186052,48.108,75.468 +186053,40.647,76.454 +186054,42.623,76.135 +186055,44.675,75.83 +186056,46.81,75.542 +186057,39.305,76.426 +186058,41.294,76.141 +186059,43.36,75.87 +186060,45.51,75.616 +186061,37.963,76.397 +186062,39.966,76.146 +186063,42.045,75.909 +186064,44.209,75.69 +186065,36.624,76.369 +186066,38.638,76.151 +186067,40.729,75.949 +186068,42.905,75.764 +186069,35.286,76.34 +186070,37.311,76.157 +186071,39.413,75.989 +186072,41.6,75.839 +186073,33.95,76.311 +186074,35.984,76.162 +186075,38.096,76.028 +186076,40.294,75.913 +186077,32.615,76.282 +186078,34.658,76.167 +186079,36.778,76.068 +186080,38.985,75.988 +186081,31.281,76.253 +186082,33.332,76.172 +186083,35.46,76.108 +186084,37.675,76.063 +186085,29.95,76.223 +186086,32.007,76.177 +186087,34.142,76.148 +186088,36.363,76.138 +186089,28.62,76.194 +186090,30.682,76.182 +186091,32.822,76.188 +186092,35.05,76.213 +186093,27.291,76.165 +186094,29.358,76.188 +186095,31.503,76.228 +186096,33.735,76.287 +186097,25.964,76.135 +186098,28.035,76.193 +186099,30.182,76.268 +186100,32.418,76.362 +186101,24.638,76.106 +186102,26.711,76.198 +186103,28.861,76.308 +186104,31.099,76.437 +186105,23.315,76.077 +186106,25.389,76.203 +186107,27.54,76.347 +186108,29.779,76.512 +186109,21.992,76.047 +186110,24.067,76.208 +186111,26.218,76.387 +186112,28.457,76.586 +186113,20.671,76.018 +186114,22.745,76.214 +186115,24.895,76.427 +186116,27.133,76.661 +186117,19.352,75.989 +186118,21.424,76.219 +186119,23.572,76.467 +186120,25.808,76.735 +186121,18.035,75.961 +186122,20.104,76.224 +186123,22.248,76.506 +186124,24.48,76.809 +186125,16.719,75.932 +186126,18.783,76.23 +186127,20.924,76.546 +186128,23.151,76.883 +186129,15.404,75.904 +186130,17.464,76.235 +186131,19.599,76.586 +186132,21.821,76.956 +186133,14.091,75.876 +186134,16.145,76.241 +186135,18.274,76.625 +186136,20.488,77.029 +186137,12.78,75.848 +186138,14.826,76.247 +186139,16.948,76.664 +186140,19.154,77.102 +186141,11.47,75.82 +186142,13.508,76.253 +186143,15.621,76.704 +186144,17.819,77.175 +186145,10.162,75.793 +186146,12.191,76.259 +186147,14.294,76.743 +186148,16.481,77.247 +186149,8.8548,75.766 +186150,10.874,76.265 +186151,12.966,76.782 +186152,15.142,77.319 +186153,7.5496,75.74 +186154,9.5576,76.271 +186155,11.638,76.821 +186156,13.802,77.39 +186157,6.2459,75.714 +186158,8.2416,76.277 +186159,10.309,76.859 +186160,12.459,77.461 +186161,4.9437,75.688 +186162,6.9261,76.284 +186163,8.9794,76.898 +186164,11.115,77.532 +186165,3.6429,75.663 +186166,5.6111,76.291 +186167,7.6495,76.936 +186168,9.7695,77.602 +186169,2.3437,75.638 +186170,4.2966,76.298 +186171,6.319,76.975 +186172,8.4223,77.671 +186173,1.046,75.614 +186174,2.9826,76.305 +186175,4.988,77.013 +186176,7.0734,77.74 +186177,359.75,75.591 +186178,1.6691,76.312 +186179,3.6564,77.051 +186180,5.723,77.809 +186181,358.45,75.568 +186182,0.35599,76.319 +186183,2.3243,77.089 +186184,4.3711,77.877 +186185,357.16,75.545 +186186,359.04,76.327 +186187,0.99173,77.126 +186188,3.0175,77.944 +186189,355.87,75.524 +186190,357.73,76.335 +186191,359.66,77.163 +186192,1.6625,78.01 +186193,354.58,75.502 +186194,356.42,76.343 +186195,358.32,77.201 +186196,0.30595,78.076 +186197,353.29,75.482 +186198,355.11,76.351 +186199,356.99,77.237 +186200,358.95,78.141 +186201,352,75.462 +186202,353.8,76.36 +186203,355.66,77.274 +186204,357.59,78.206 +186205,350.72,75.443 +186206,352.49,76.369 +186207,354.32,77.311 +186208,356.23,78.269 +186209,349.43,75.425 +186210,351.18,76.378 +186211,352.99,77.347 +186212,354.87,78.332 +186213,348.15,75.407 +186214,349.87,76.387 +186215,351.65,77.383 +186216,353.5,78.395 +186217,346.86,75.39 +186218,348.56,76.397 +186219,350.31,77.418 +186220,352.14,78.456 +186221,345.58,75.374 +186222,347.25,76.407 +186223,348.98,77.454 +186224,350.77,78.517 +186225,344.3,75.359 +186226,345.94,76.417 +186227,347.64,77.489 +186228,349.4,78.576 +186229,343.02,75.345 +186230,344.63,76.427 +186231,346.3,77.524 +186232,348.03,78.635 +186233,341.75,75.331 +186234,343.33,76.438 +186235,344.96,77.558 +186236,346.66,78.693 +186237,340.47,75.319 +186238,342.02,76.449 +186239,343.62,77.593 +186240,345.29,78.75 +186241,339.2,75.307 +186242,340.71,76.46 +186243,342.28,77.627 +186244,343.92,78.806 +186245,337.92,75.296 +186246,339.41,76.472 +186247,340.94,77.661 +186248,342.54,78.862 +186249,336.65,75.286 +186250,338.1,76.484 +186251,339.6,77.694 +186252,341.17,78.916 +186253,335.38,75.277 +186254,336.79,76.496 +186255,338.26,77.727 +186256,339.79,78.969 +186257,334.11,75.27 +186258,335.49,76.509 +186259,336.92,77.76 +186260,338.41,79.022 +186261,332.84,75.263 +186262,334.18,76.522 +186263,335.58,77.792 +186264,337.04,79.073 +186265,331.57,75.257 +186266,332.88,76.535 +186267,334.24,77.824 +186268,335.66,79.124 +186269,330.3,75.252 +186270,331.58,76.549 +186271,332.9,77.856 +186272,334.28,79.173 +186273,329.03,75.248 +186274,330.27,76.563 +186275,331.56,77.887 +186276,332.89,79.221 +186277,327.77,75.246 +186278,328.97,76.578 +186279,330.21,77.919 +186280,331.51,79.269 +186281,326.5,75.244 +186282,327.66,76.592 +186283,328.87,77.949 +186284,330.13,79.315 +186285,325.24,75.243 +186286,326.36,76.607 +186287,327.53,77.98 +186288,328.74,79.36 +186289,323.98,75.244 +186290,325.06,76.623 +186291,326.18,78.01 +186292,327.36,79.404 +186293,322.71,75.246 +186294,323.76,76.639 +186295,324.84,78.039 +186296,325.97,79.447 +186297,321.45,75.248 +186298,322.45,76.655 +186299,323.5,78.069 +186300,324.59,79.489 +186301,320.19,75.252 +186302,321.15,76.672 +186303,322.15,78.098 +186304,323.2,79.53 +186305,318.93,75.257 +186306,319.85,76.689 +186307,320.81,78.126 +186308,321.81,79.569 +186309,317.67,75.264 +186310,318.55,76.706 +186311,319.46,78.154 +186312,320.42,79.608 +186313,316.41,75.271 +186314,317.25,76.724 +186315,318.12,78.182 +186316,319.03,79.645 +186317,315.16,75.28 +186318,315.94,76.742 +186319,316.77,78.21 +186320,317.64,79.681 +186321,313.9,75.29 +186322,314.64,76.761 +186323,315.43,78.237 +186324,316.25,79.716 +186325,312.64,75.301 +186326,313.34,76.78 +186327,314.08,78.263 +186328,314.86,79.75 +186329,311.38,75.313 +186330,312.04,76.799 +186331,312.73,78.29 +186332,313.47,79.783 +186333,310.13,75.326 +186334,310.74,76.819 +186335,311.39,78.315 +186336,312.07,79.815 +186337,308.87,75.341 +186338,309.44,76.839 +186339,310.04,78.341 +186340,310.68,79.845 +186341,307.62,75.357 +186342,308.14,76.86 +186343,308.69,78.366 +186344,309.29,79.874 +186345,306.36,75.374 +186346,306.84,76.881 +186347,307.35,78.391 +186348,307.89,79.902 +186349,305.11,75.392 +186350,305.54,76.902 +186351,306,78.415 +186352,306.5,79.929 +186353,303.86,75.412 +186354,304.24,76.924 +186355,304.65,78.439 +186356,305.11,79.955 +186357,302.6,75.433 +186358,302.94,76.947 +186359,303.31,78.462 +186360,303.71,79.979 +186361,301.35,75.455 +186362,301.64,76.969 +186363,301.96,78.486 +186364,302.32,80.0023 +186365,300.1,75.478 +186366,300.34,76.992 +186367,300.61,78.508 +186368,300.92,80.0244 +186369,298.84,75.503 +186370,299.04,77.016 +186371,299.27,78.531 +186372,299.53,80.0452 +186373,297.59,75.529 +186374,297.74,77.04 +186375,297.92,78.552 +186376,298.13,80.0649 +186377,296.34,75.556 +186378,296.44,77.064 +186379,296.57,78.574 +186380,296.74,80.0834 +186381,295.08,75.584 +186382,295.14,77.089 +186383,295.22,78.595 +186384,295.34,80.1007 +186385,293.83,75.614 +186386,293.84,77.114 +186387,293.88,78.616 +186388,293.95,80.1169 +186389,292.58,75.644 +186390,292.54,77.14 +186391,292.53,78.636 +186392,292.55,80.1318 +186393,291.33,75.676 +186394,291.24,77.166 +186395,291.18,78.656 +186396,291.16,80.1456 +186397,290.07,75.71 +186398,289.94,77.192 +186399,289.83,78.676 +186400,289.76,80.1582 +186401,288.82,75.744 +186402,288.64,77.219 +186403,288.49,78.695 +186404,288.37,80.1696 +186405,287.57,75.78 +186406,287.34,77.247 +186407,287.14,78.714 +186408,286.97,80.1799 +186409,286.32,75.817 +186410,286.04,77.274 +186411,285.79,78.732 +186412,285.58,80.189 +186413,285.06,75.855 +186414,284.74,77.302 +186415,284.44,78.75 +186416,284.18,80.197 +186417,283.81,75.894 +186418,283.44,77.331 +186419,283.1,78.768 +186420,282.79,80.2039 +186421,282.55,75.935 +186422,282.14,77.36 +186423,281.75,78.785 +186424,281.4,80.2096 +186425,281.3,75.976 +186426,280.83,77.389 +186427,280.4,78.802 +186428,280,80.2142 +186429,280.05,76.019 +186430,279.53,77.418 +186431,279.06,78.818 +186432,278.61,80.2176 +186433,278.79,76.063 +186434,278.23,77.448 +186435,277.71,78.835 +186436,277.22,80.22 +186437,277.54,76.109 +186438,276.93,77.479 +186439,276.36,78.85 +186440,275.83,80.2213 +186441,276.28,76.155 +186442,275.63,77.51 +186443,275.02,78.866 +186444,274.43,80.2215 +186445,275.02,76.202 +186446,274.33,77.541 +186447,273.67,78.881 +186448,273.04,80.2207 +186449,273.77,76.251 +186450,273.03,77.572 +186451,272.32,78.896 +186452,271.65,80.2188 +186453,272.51,76.301 +186454,271.72,77.604 +186455,270.98,78.91 +186456,270.26,80.2158 +186457,271.25,76.351 +186458,270.42,77.636 +186459,269.63,78.924 +186460,268.87,80.2118 +186461,269.99,76.403 +186462,269.12,77.669 +186463,268.28,78.938 +186464,267.49,80.2068 +186465,268.73,76.456 +186466,267.82,77.702 +186467,266.94,78.951 +186468,266.1,80.2008 +186469,267.47,76.51 +186470,266.51,77.735 +186471,265.59,78.964 +186472,264.71,80.1938 +186473,266.21,76.565 +186474,265.21,77.769 +186475,264.25,78.977 +186476,263.33,80.1858 +186477,264.95,76.621 +186478,263.91,77.803 +186479,262.9,78.989 +186480,261.94,80.1769 +186481,263.69,76.678 +186482,262.6,77.837 +186483,261.56,79.001 +186484,260.56,80.167 +186485,262.42,76.736 +186486,261.3,77.872 +186487,260.21,79.013 +186488,259.17,80.1563 +186489,261.16,76.795 +186490,259.99,77.907 +186491,258.87,79.024 +186492,257.79,80.1446 +186493,259.89,76.855 +186494,258.69,77.942 +186495,257.53,79.035 +186496,256.41,80.132 +186497,258.63,76.915 +186498,257.38,77.978 +186499,256.18,79.046 +186500,255.02,80.1185 +186501,257.36,76.977 +186502,256.08,78.014 +186503,254.84,79.057 +186504,253.64,80.1042 +186505,256.09,77.039 +186506,254.77,78.05 +186507,253.5,79.067 +186508,252.27,80.0891 +186509,254.82,77.103 +186510,253.47,78.086 +186511,252.15,79.077 +186512,250.89,80.0731 +186513,253.55,77.167 +186514,252.16,78.123 +186515,250.81,79.087 +186516,249.51,80.0564 +186517,252.28,77.232 +186518,250.85,78.16 +186519,249.47,79.097 +186520,248.13,80.0389 +186521,251.01,77.298 +186522,249.55,78.198 +186523,248.13,79.106 +186524,246.76,80.0206 +186525,249.74,77.364 +186526,248.24,78.235 +186527,246.79,79.115 +186528,245.38,80.0016 +186529,248.46,77.432 +186530,246.93,78.273 +186531,245.45,79.124 +186532,244.01,79.982 +186533,247.19,77.5 +186534,245.62,78.311 +186535,244.11,79.132 +186536,242.64,79.961 +186537,245.91,77.568 +186538,244.31,78.349 +186539,242.77,79.141 +186540,241.27,79.94 +186541,244.63,77.638 +186542,243,78.388 +186543,241.43,79.149 +186544,239.9,79.919 +186545,243.35,77.708 +186546,241.69,78.426 +186547,240.09,79.157 +186548,238.53,79.896 +186549,242.07,77.778 +186550,240.38,78.465 +186551,238.75,79.164 +186552,237.16,79.873 +186553,240.79,77.85 +186554,239.07,78.504 +186555,237.41,79.172 +186556,235.8,79.85 +186557,239.51,77.921 +186558,237.76,78.544 +186559,236.07,79.179 +186560,234.43,79.826 +186561,238.22,77.994 +186562,236.45,78.583 +186563,234.73,79.187 +186564,233.07,79.801 +186565,236.94,78.067 +186566,235.14,78.623 +186567,233.39,79.194 +186568,231.71,79.776 +186569,235.65,78.14 +186570,233.82,78.663 +186571,232.06,79.2 +186572,230.35,79.751 +186573,234.36,78.214 +186574,232.51,78.703 +186575,230.72,79.207 +186576,228.99,79.725 +186577,233.07,78.288 +186578,231.2,78.743 +186579,229.38,79.214 +186580,227.63,79.698 +186581,231.78,78.363 +186582,229.88,78.783 +186583,228.05,79.22 +186584,226.27,79.672 +186585,230.49,78.438 +186586,228.57,78.824 +186587,226.71,79.227 +186588,224.92,79.644 +186589,229.19,78.513 +186590,227.25,78.864 +186591,225.38,79.233 +186592,223.56,79.617 +186593,227.89,78.589 +186594,225.94,78.905 +186595,224.04,79.239 +186596,222.21,79.589 +186597,226.6,78.665 +186598,224.62,78.946 +186599,222.71,79.245 +186600,220.86,79.561 +186601,225.3,78.741 +186602,223.3,78.986 +186603,221.38,79.251 +186604,219.51,79.532 +186605,224,78.817 +186606,221.99,79.027 +186607,220.04,79.257 +186608,218.16,79.504 +186609,222.7,78.894 +186610,220.67,79.068 +186611,218.71,79.263 +186612,216.82,79.475 +186613,221.39,78.971 +186614,219.35,79.109 +186615,217.38,79.269 +186616,215.47,79.446 +186617,220.09,79.048 +186618,218.03,79.151 +186619,216.05,79.274 +186620,214.13,79.417 +186621,218.78,79.125 +186622,216.71,79.192 +186623,214.72,79.28 +186624,212.78,79.387 +186625,217.47,79.202 +186626,215.39,79.233 +186627,213.39,79.286 +186628,211.44,79.358 +186629,216.16,79.279 +186630,214.07,79.274 +186631,212.06,79.291 +186632,210.1,79.328 +186633,214.85,79.357 +186634,212.75,79.315 +186635,210.73,79.297 +186636,208.77,79.299 +186637,213.53,79.434 +186638,211.43,79.357 +186639,209.4,79.303 +186640,207.43,79.269 +186641,212.22,79.511 +186642,210.11,79.398 +186643,208.07,79.308 +186644,206.09,79.239 +186645,210.9,79.588 +186646,208.78,79.439 +186647,206.74,79.314 +186648,204.76,79.21 +186649,209.58,79.665 +186650,207.46,79.48 +186651,205.41,79.32 +186652,203.43,79.18 +186653,208.26,79.742 +186654,206.14,79.522 +186655,204.08,79.325 +186656,202.1,79.151 +186657,206.94,79.819 +186658,204.81,79.563 +186659,202.76,79.331 +186660,200.77,79.122 +186661,205.62,79.896 +186662,203.49,79.604 +186663,201.43,79.337 +186664,199.44,79.092 +186665,204.3,79.972 +186666,202.16,79.645 +186667,200.11,79.343 +186668,198.12,79.063 +186669,202.97,80.0485 +186670,200.84,79.686 +186671,198.78,79.349 +186672,196.79,79.035 +186673,201.64,80.1244 +186674,199.51,79.727 +186675,197.46,79.355 +186676,195.47,79.006 +186677,200.31,80.2001 +186678,198.18,79.768 +186679,196.13,79.361 +186680,194.15,78.978 +186681,198.98,80.2754 +186682,196.86,79.808 +186683,194.81,79.367 +186684,192.83,78.95 +186685,197.65,80.3504 +186686,195.53,79.849 +186687,193.48,79.374 +186688,191.51,78.922 +186689,196.31,80.4251 +186690,194.2,79.89 +186691,192.16,79.38 +186692,190.19,78.895 +186693,194.98,80.4993 +186694,192.87,79.93 +186695,190.84,79.387 +186696,188.88,78.868 +186697,193.64,80.5731 +186698,191.54,79.97 +186699,189.52,79.394 +186700,187.56,78.841 +186701,192.3,80.6465 +186702,190.21,80.0103 +186703,188.2,79.401 +186704,186.25,78.815 +186705,190.96,80.7193 +186706,188.88,80.0503 +186707,186.88,79.408 +186708,184.94,78.789 +186709,189.61,80.7917 +186710,187.55,80.0901 +186711,185.55,79.415 +186712,183.63,78.764 +186713,188.27,80.8635 +186714,186.21,80.1297 +186715,184.23,79.422 +186716,182.32,78.739 +186717,186.92,80.9348 +186718,184.88,80.1692 +186719,182.92,79.43 +186720,181.01,78.715 +186721,185.58,81.0054 +186722,183.55,80.2084 +186723,181.6,79.438 +186724,179.71,78.691 +186725,184.23,81.0755 +186726,182.21,80.2475 +186727,180.28,79.446 +186728,178.41,78.668 +186729,182.88,81.1449 +186730,180.88,80.2864 +186731,178.96,79.454 +186732,177.1,78.645 +186733,181.52,81.2137 +186734,179.55,80.325 +186735,177.64,79.462 +186736,175.8,78.623 +186737,180.17,81.2818 +186738,178.21,80.3635 +186739,176.32,79.471 +186740,174.5,78.602 +186741,178.82,81.3492 +186742,176.88,80.4017 +186743,175.01,79.48 +186744,173.2,78.582 +186745,177.46,81.4158 +186746,175.54,80.4397 +186747,173.69,79.489 +186748,171.91,78.562 +186749,176.1,81.4817 +186750,174.2,80.4774 +186751,172.38,79.498 +186752,170.61,78.542 +186753,174.74,81.5468 +186754,172.86,80.5149 +186755,171.06,79.508 +186756,169.32,78.524 +186757,173.38,81.6111 +186758,171.53,80.5521 +186759,169.74,79.518 +186760,168.02,78.506 +186761,172.02,81.6746 +186762,170.19,80.5891 +186763,168.43,79.528 +186764,166.73,78.49 +186765,170.66,81.7372 +186766,168.85,80.6258 +186767,167.12,79.539 +186768,165.44,78.473 +186769,169.29,81.799 +186770,167.51,80.6622 +186771,165.8,79.549 +186772,164.15,78.458 +186773,167.92,81.8599 +186774,166.17,80.6983 +186775,164.49,79.56 +186776,162.86,78.444 +186777,166.56,81.9199 +186778,164.83,80.7341 +186779,163.18,79.572 +186780,161.58,78.43 +186781,165.19,81.979 +186782,163.49,80.7697 +186783,161.86,79.583 +186784,160.29,78.418 +186785,163.82,82.0371 +186786,162.15,80.8049 +186787,160.55,79.595 +186788,159.01,78.406 +186789,162.45,82.0943 +186790,160.81,80.8398 +186791,159.24,79.607 +186792,157.72,78.395 +186793,161.07,82.1505 +186794,159.47,80.8744 +186795,157.93,79.62 +186796,156.44,78.386 +186797,159.7,82.2057 +186798,158.13,80.9087 +186799,156.62,79.633 +186800,155.16,78.377 +186801,158.32,82.2598 +186802,156.78,80.9426 +186803,155.3,79.646 +186804,153.88,78.369 +186805,156.95,82.313 +186806,155.44,80.9762 +186807,153.99,79.66 +186808,152.6,78.362 +186809,155.57,82.3651 +186810,154.1,81.0095 +186811,152.68,79.674 +186812,151.32,78.357 +186813,154.19,82.4162 +186814,152.75,81.0424 +186815,151.37,79.688 +186816,150.05,78.352 +186817,152.81,82.4662 +186818,151.41,81.075 +186819,150.06,79.703 +186820,148.77,78.348 +186821,151.43,82.5151 +186822,150.06,81.1072 +186823,148.75,79.718 +186824,147.5,78.346 +186825,150.05,82.5629 +186826,148.72,81.139 +186827,147.45,79.733 +186828,146.22,78.344 +186829,148.67,82.6096 +186830,147.37,81.1705 +186831,146.14,79.749 +186832,144.95,78.344 +186833,147.28,82.6552 +186834,146.03,81.2016 +186835,144.83,79.765 +186836,143.68,78.344 +186837,145.9,82.6996 +186838,144.68,81.2324 +186839,143.52,79.782 +186840,142.4,78.346 +186841,144.51,82.7429 +186842,143.34,81.2627 +186843,142.21,79.799 +186844,141.13,78.349 +186845,143.13,82.785 +186846,141.99,81.2927 +186847,140.9,79.816 +186848,139.86,78.354 +186849,141.74,82.826 +186850,140.64,81.3223 +186851,139.6,79.834 +186852,138.59,78.359 +186853,140.35,82.8658 +186854,139.3,81.3515 +186855,138.29,79.852 +186856,137.33,78.366 +186857,138.97,82.9044 +186858,137.95,81.3803 +186859,136.98,79.87 +186860,136.06,78.373 +186861,137.58,82.9419 +186862,136.6,81.4088 +186863,135.68,79.889 +186864,134.79,78.382 +186865,136.19,82.9781 +186866,135.25,81.4368 +186867,134.37,79.908 +186868,133.53,78.392 +186869,134.8,83.0131 +186870,133.91,81.4644 +186871,133.06,79.928 +186872,132.26,78.404 +186873,133.41,83.0469 +186874,132.56,81.4916 +186875,131.76,79.948 +186876,130.99,78.416 +186877,132.01,83.0795 +186878,131.21,81.5185 +186879,130.45,79.969 +186880,129.73,78.43 +186881,130.62,83.1109 +186882,129.86,81.5449 +186883,129.14,79.99 +186884,128.47,78.445 +186885,129.23,83.1411 +186886,128.51,81.5709 +186887,127.84,80.0111 +186888,127.2,78.462 +186889,127.84,83.17 +186890,127.16,81.5965 +186891,126.53,80.0329 +186892,125.94,78.479 +186893,126.44,83.1977 +186894,125.81,81.6217 +186895,125.23,80.0551 +186896,124.68,78.498 +186897,125.05,83.2242 +186898,124.46,81.6465 +186899,123.92,80.0778 +186900,123.41,78.518 +186901,123.65,83.2494 +186902,123.11,81.6709 +186903,122.61,80.1008 +186904,122.15,78.54 +186905,122.26,83.2735 +186906,121.76,81.6948 +186907,121.31,80.1243 +186908,120.89,78.562 +186909,120.86,83.2962 +186910,120.41,81.7184 +186911,120,80.1482 +186912,119.63,78.586 +186913,119.47,83.3178 +186914,119.06,81.7415 +186915,118.7,80.1726 +186916,118.37,78.612 +186917,118.07,83.3381 +186918,117.71,81.7642 +186919,117.39,80.1973 +186920,117.11,78.638 +186921,116.68,83.3572 +186922,116.36,81.7866 +186923,116.09,80.2225 +186924,115.85,78.666 +186925,115.28,83.375 +186926,115.01,81.8085 +186927,114.78,80.2481 +186928,114.59,78.695 +186929,113.89,83.3917 +186930,113.66,81.83 +186931,113.48,80.2742 +186932,113.33,78.725 +186933,112.49,83.4071 +186934,112.31,81.851 +186935,112.17,80.3006 +186936,112.06,78.757 +186937,111.09,83.4213 +186938,110.96,81.8717 +186939,110.87,80.3275 +186940,110.8,78.789 +186941,109.7,83.4342 +186942,109.61,81.892 +186943,109.56,80.3548 +186944,109.54,78.824 +186945,108.3,83.446 +186946,108.26,81.9119 +186947,108.26,80.3825 +186948,108.28,78.859 +186949,106.9,83.4566 +186950,106.91,81.9313 +186951,106.95,80.4106 +186952,107.02,78.895 +186953,105.51,83.466 +186954,105.56,81.9504 +186955,105.65,80.4391 +186956,105.76,78.933 +186957,104.11,83.4742 +186958,104.21,81.9691 +186959,104.34,80.4681 +186960,104.5,78.972 +186961,102.72,83.4812 +186962,102.86,81.9873 +186963,103.04,80.4974 +186964,103.24,79.013 +186965,101.32,83.487 +186966,101.51,82.0052 +186967,101.73,80.5272 +186968,101.98,79.054 +186969,99.926,83.4917 +186970,100.16,82.0227 +186971,100.42,80.5573 +186972,100.72,79.097 +186973,98.531,83.4952 +186974,98.81,82.0398 +186975,99.119,80.5879 +186976,99.459,79.141 +186977,97.136,83.4976 +186978,97.459,82.0565 +186979,97.813,80.6189 +186980,98.197,79.186 +186981,95.742,83.4989 +186982,96.109,82.0729 +186983,96.507,80.6502 +186984,96.935,79.232 +186985,94.348,83.499 +186986,94.759,82.0888 +186987,95.201,80.6819 +186988,95.673,79.28 +186989,92.954,83.4981 +186990,93.409,82.1044 +186991,93.894,80.7141 +186992,94.41,79.329 +186993,91.561,83.496 +186994,92.059,82.1197 +186995,92.588,80.7466 +186996,93.147,79.378 +186997,90.168,83.4929 +186998,90.71,82.1345 +186999,91.281,80.7794 +187000,91.883,79.429 +187001,88.776,83.4887 +187002,89.36,82.149 +187003,89.974,80.8127 +187004,90.619,79.481 +187005,87.384,83.4834 +187006,88.011,82.1632 +187007,88.667,80.8463 +187008,89.354,79.535 +187009,85.993,83.4772 +187010,86.661,82.177 +187011,87.36,80.8803 +187012,88.089,79.589 +187013,84.602,83.4698 +187014,85.312,82.1904 +187015,86.052,80.9146 +187016,86.823,79.644 +187017,83.212,83.4615 +187018,83.963,82.2035 +187019,84.745,80.9493 +187020,85.557,79.701 +187021,81.823,83.4522 +187022,82.614,82.2163 +187023,83.437,80.9844 +187024,84.29,79.758 +187025,80.434,83.4419 +187026,81.266,82.2288 +187027,82.128,81.0197 +187028,83.022,79.817 +187029,79.046,83.4307 +187030,79.917,82.2409 +187031,80.82,81.0554 +187032,81.754,79.876 +187033,77.659,83.4185 +187034,78.569,82.2527 +187035,79.511,81.0915 +187036,80.485,79.937 +187037,76.272,83.4054 +187038,77.221,82.2642 +187039,78.202,81.1278 +187040,79.215,79.998 +187041,74.887,83.3914 +187042,75.874,82.2754 +187043,76.893,81.1645 +187044,77.944,80.0605 +187045,73.502,83.3765 +187046,74.526,82.2863 +187047,75.583,81.2015 +187048,76.673,80.1239 +187049,72.118,83.3607 +187050,73.179,82.2969 +187051,74.273,81.2387 +187052,75.4,80.1881 +187053,70.735,83.3441 +187054,71.832,82.3072 +187055,72.963,81.2763 +187056,74.127,80.2533 +187057,69.352,83.3267 +187058,70.485,82.3173 +187059,71.652,81.3142 +187060,72.853,80.3193 +187061,67.971,83.3085 +187062,69.139,82.3271 +187063,70.341,81.3523 +187064,71.578,80.3862 +187065,66.591,83.2895 +187066,67.793,82.3366 +187067,69.03,81.3907 +187068,70.302,80.4539 +187069,65.211,83.2697 +187070,66.447,82.3458 +187071,67.718,81.4294 +187072,69.025,80.5224 +187073,63.833,83.2492 +187074,65.102,82.3548 +187075,66.406,81.4683 +187076,67.747,80.5917 +187077,62.455,83.228 +187078,63.756,82.3636 +187079,65.093,81.5075 +187080,66.467,80.6618 +187081,61.079,83.2061 +187082,62.411,82.3721 +187083,63.78,81.547 +187084,65.187,80.7325 +187085,59.704,83.1835 +187086,61.067,82.3805 +187087,62.467,81.5866 +187088,63.906,80.804 +187089,58.33,83.1603 +187090,59.723,82.3886 +187091,61.154,81.6265 +187092,62.624,80.8762 +187093,56.957,83.1364 +187094,58.379,82.3964 +187095,59.84,81.6666 +187096,61.34,80.949 +187097,55.585,83.112 +187098,57.035,82.4041 +187099,58.525,81.7069 +187100,60.055,81.0224 +187101,54.214,83.087 +187102,55.692,82.4116 +187103,57.21,81.7474 +187104,58.769,81.0964 +187105,52.844,83.0614 +187106,54.349,82.4189 +187107,55.895,81.7881 +187108,57.482,81.171 +187109,51.476,83.0353 +187110,53.007,82.4261 +187111,54.579,81.829 +187112,56.194,81.2462 +187113,50.109,83.0087 +187114,51.665,82.4331 +187115,53.263,81.87 +187116,54.904,81.3219 +187117,48.743,82.9817 +187118,50.323,82.4399 +187119,51.946,81.9112 +187120,53.613,81.398 +187121,47.378,82.9542 +187122,48.982,82.4465 +187123,50.629,81.9526 +187124,52.321,81.4746 +187125,46.014,82.9263 +187126,47.641,82.4531 +187127,49.312,81.9941 +187128,51.027,81.5517 +187129,44.652,82.8979 +187130,46.301,82.4595 +187131,47.994,82.0358 +187132,49.733,81.6292 +187133,43.291,82.8693 +187134,44.961,82.4657 +187135,46.675,82.0775 +187136,48.436,81.707 +187137,41.932,82.8402 +187138,43.621,82.4719 +187139,45.356,82.1194 +187140,47.139,81.7852 +187141,40.573,82.8109 +187142,42.282,82.4779 +187143,44.037,82.1614 +187144,45.84,81.8637 +187145,39.216,82.7813 +187146,40.943,82.4839 +187147,42.717,82.2035 +187148,44.539,81.9425 +187149,37.861,82.7514 +187150,39.605,82.4898 +187151,41.396,82.2457 +187152,43.238,82.0216 +187153,36.506,82.7213 +187154,38.267,82.4956 +187155,40.075,82.2879 +187156,41.934,82.1009 +187157,35.153,82.691 +187158,36.929,82.5013 +187159,38.754,82.3303 +187160,40.63,82.1804 +187161,33.802,82.6605 +187162,35.592,82.507 +187163,37.432,82.3727 +187164,39.324,82.26 +187165,32.452,82.6299 +187166,34.256,82.5126 +187167,36.109,82.4151 +187168,38.016,82.3398 +187169,31.103,82.5991 +187170,32.919,82.5182 +187171,34.786,82.4576 +187172,36.707,82.4198 +187173,29.755,82.5683 +187174,31.584,82.5238 +187175,33.463,82.5001 +187176,35.397,82.4997 +187177,28.409,82.5373 +187178,30.248,82.5293 +187179,32.139,82.5426 +187180,34.085,82.5798 +187181,27.065,82.5064 +187182,28.913,82.5349 +187183,30.814,82.5851 +187184,32.771,82.6598 +187185,25.721,82.4754 +187186,27.579,82.5404 +187187,29.489,82.6276 +187188,31.456,82.7399 +187189,24.38,82.4445 +187190,26.245,82.546 +187191,28.163,82.6702 +187192,30.139,82.8199 +187193,23.039,82.4136 +187194,24.912,82.5515 +187195,26.837,82.7127 +187196,28.821,82.8998 +187197,21.7,82.3828 +187198,23.579,82.5571 +187199,25.51,82.7551 +187200,27.502,82.9797 +187201,20.363,82.3521 +187202,22.246,82.5628 +187203,24.183,82.7976 +187204,26.18,83.0594 +187205,19.027,82.3216 +187206,20.914,82.5685 +187207,22.855,82.8399 +187208,24.858,83.1389 +187209,17.692,82.2912 +187210,19.582,82.5742 +187211,21.527,82.8822 +187212,23.533,83.2183 +187213,16.359,82.261 +187214,18.251,82.58 +187215,20.198,82.9245 +187216,22.207,83.2974 +187217,15.027,82.231 +187218,16.92,82.5859 +187219,18.869,82.9666 +187220,20.88,83.3763 +187221,13.697,82.2012 +187222,15.59,82.5919 +187223,17.539,83.0087 +187224,19.551,83.4548 +187225,12.368,82.1718 +187226,14.26,82.598 +187227,16.209,83.0507 +187228,18.221,83.5331 +187229,11.041,82.1426 +187230,12.931,82.6041 +187231,14.878,83.0926 +187232,16.889,83.611 +187233,9.7145,82.1138 +187234,11.602,82.6104 +187235,13.546,83.1343 +187236,15.555,83.6886 +187237,8.3899,82.0853 +187238,10.273,82.6168 +187239,12.214,83.1759 +187240,14.22,83.7658 +187241,7.0667,82.0572 +187242,8.9453,82.6234 +187243,10.881,83.2174 +187244,12.883,83.8425 +187245,5.7449,82.0295 +187246,7.6178,82.6301 +187247,9.5483,83.2587 +187248,11.545,83.9188 +187249,4.4246,82.0023 +187250,6.2907,82.6369 +187251,8.2147,83.2999 +187252,10.205,83.9945 +187253,3.1056,81.9755 +187254,4.964,82.6439 +187255,6.8805,83.3409 +187256,8.8635,84.0698 +187257,1.788,81.9493 +187258,3.6378,82.6511 +187259,5.5458,83.3818 +187260,7.5206,84.1445 +187261,0.4718,81.9235 +187262,2.3121,82.6585 +187263,4.2106,83.4224 +187264,6.1761,84.2187 +187265,359.16,81.8983 +187266,0.98674,82.666 +187267,2.8748,83.4629 +187268,4.8302,84.2923 +187269,357.84,81.8737 +187270,359.66,82.6738 +187271,1.5386,83.5031 +187272,3.4827,84.3652 +187273,356.53,81.8496 +187274,358.34,82.6817 +187275,0.20181,83.5432 +187276,2.1338,84.4375 +187277,355.22,81.8262 +187278,357.01,82.6899 +187279,358.86,83.583 +187280,0.78335,84.5091 +187281,353.91,81.8035 +187282,355.69,82.6982 +187283,357.53,83.6226 +187284,359.43,84.58 +187285,352.6,81.7814 +187286,354.37,82.7068 +187287,356.19,83.6619 +187288,358.08,84.6502 +187289,351.3,81.76 +187290,353.04,82.7157 +187291,354.85,83.7011 +187292,356.72,84.7196 +187293,349.99,81.7394 +187294,351.72,82.7248 +187295,353.51,83.7399 +187296,355.37,84.7883 +187297,348.69,81.7195 +187298,350.4,82.7341 +187299,352.17,83.7785 +187300,354.01,84.8561 +187301,347.38,81.7003 +187302,349.08,82.7437 +187303,350.83,83.8169 +187304,352.65,84.9231 +187305,346.08,81.682 +187306,347.76,82.7536 +187307,349.49,83.8549 +187308,351.29,84.9893 +187309,344.78,81.6645 +187310,346.44,82.7638 +187311,348.15,83.8927 +187312,349.93,85.0546 +187313,343.48,81.6478 +187314,345.12,82.7742 +187315,346.81,83.9302 +187316,348.56,85.119 +187317,342.18,81.632 +187318,343.8,82.7849 +187319,345.46,83.9673 +187320,347.2,85.1825 +187321,340.89,81.617 +187322,342.48,82.796 +187323,344.12,84.0042 +187324,345.83,85.2451 +187325,339.59,81.603 +187326,341.16,82.8073 +187327,342.78,84.0408 +187328,344.47,85.3067 +187329,338.3,81.5899 +187330,339.84,82.819 +187331,341.44,84.077 +187332,343.1,85.3673 +187333,337,81.5777 +187334,338.52,82.8309 +187335,340.09,84.1129 +187336,341.73,85.4269 +187337,335.71,81.5665 +187338,337.2,82.8432 +187339,338.75,84.1485 +187340,340.36,85.4855 +187341,334.42,81.5563 +187342,335.88,82.8558 +187343,337.4,84.1837 +187344,338.98,85.5431 +187345,333.13,81.5471 +187346,334.57,82.8688 +187347,336.06,84.2186 +187348,337.61,85.5996 +187349,331.84,81.539 +187350,333.25,82.8821 +187351,334.71,84.2531 +187352,336.24,85.6551 +187353,330.55,81.5318 +187354,331.93,82.8958 +187355,333.37,84.2873 +187356,334.86,85.7094 +187357,329.27,81.5257 +187358,330.62,82.9098 +187359,332.02,84.3211 +187360,333.48,85.7627 +187361,327.98,81.5207 +187362,329.3,82.9242 +187363,330.67,84.3546 +187364,332.11,85.8149 +187365,326.7,81.5168 +187366,327.98,82.9389 +187367,329.32,84.3876 +187368,330.73,85.8659 +187369,325.41,81.514 +187370,326.67,82.954 +187371,327.98,84.4203 +187372,329.35,85.9157 +187373,324.13,81.5123 +187374,325.35,82.9695 +187375,326.63,84.4526 +187376,327.97,85.9644 +187377,322.85,81.5118 +187378,324.04,82.9854 +187379,325.28,84.4846 +187380,326.58,86.0119 +187381,321.56,81.5124 +187382,322.72,83.0016 +187383,323.93,84.5161 +187384,325.2,86.0583 +187385,320.28,81.5142 +187386,321.41,83.0183 +187387,322.58,84.5472 +187388,323.82,86.1034 +187389,319,81.5172 +187390,320.09,83.0353 +187391,321.23,84.5779 +187392,322.43,86.1473 +187393,317.72,81.5213 +187394,318.78,83.0528 +187395,319.88,84.6083 +187396,321.04,86.19 +187397,316.45,81.5267 +187398,317.47,83.0706 +187399,318.53,84.6382 +187400,319.66,86.2315 +187401,315.17,81.5332 +187402,316.15,83.0888 +187403,317.18,84.6677 +187404,318.27,86.2717 +187405,313.89,81.541 +187406,314.84,83.1075 +187407,315.83,84.6967 +187408,316.88,86.3107 +187409,312.62,81.55 +187410,313.53,83.1266 +187411,314.48,84.7254 +187412,315.49,86.3485 +187413,311.34,81.5603 +187414,312.21,83.146 +187415,313.13,84.7537 +187416,314.1,86.3849 +187417,310.06,81.5718 +187418,310.9,83.1659 +187419,311.78,84.7815 +187420,312.71,86.4201 +187421,308.79,81.5846 +187422,309.59,83.1862 +187423,310.43,84.8089 +187424,311.32,86.454 +187425,307.52,81.5987 +187426,308.28,83.207 +187427,309.08,84.8358 +187428,309.93,86.4866 +187429,306.24,81.614 +187430,306.96,83.2281 +187431,307.73,84.8624 +187432,308.54,86.518 +187433,304.97,81.6306 +187434,305.65,83.2497 +187435,306.37,84.8885 +187436,307.14,86.548 +187437,303.7,81.6485 +187438,304.34,83.2717 +187439,305.02,84.9141 +187440,305.75,86.5768 +187441,302.43,81.6676 +187442,303.03,83.2942 +187443,303.67,84.9394 +187444,304.36,86.6042 +187445,301.15,81.6881 +187446,301.72,83.317 +187447,302.32,84.9642 +187448,302.96,86.6304 +187449,299.88,81.7099 +187450,300.4,83.3403 +187451,300.96,84.9885 +187452,301.57,86.6553 +187453,298.61,81.733 +187454,299.09,83.3641 +187455,299.61,85.0124 +187456,300.17,86.6788 +187457,297.34,81.7573 +187458,297.78,83.3882 +187459,298.26,85.0359 +187460,298.77,86.7011 +187461,296.07,81.783 +187462,296.47,83.4128 +187463,296.9,85.059 +187464,297.38,86.722 +187465,294.8,81.81 +187466,295.16,83.4378 +187467,295.55,85.0816 +187468,295.98,86.7417 +187469,293.53,81.8383 +187470,293.85,83.4633 +187471,294.2,85.1038 +187472,294.59,86.7601 +187473,292.26,81.8679 +187474,292.53,83.4892 +187475,292.84,85.1255 +187476,293.19,86.7772 +187477,290.99,81.8988 +187478,291.22,83.5155 +187479,291.49,85.1468 +187480,291.79,86.7929 +187481,289.72,81.9309 +187482,289.91,83.5422 +187483,290.13,85.1677 +187484,290.39,86.8074 +187485,288.45,81.9644 +187486,288.6,83.5694 +187487,288.78,85.1881 +187488,289,86.8207 +187489,287.19,81.9992 +187490,287.29,83.5969 +187491,287.43,85.2081 +187492,287.6,86.8326 +187493,285.92,82.0353 +187494,285.98,83.625 +187495,286.07,85.2277 +187496,286.2,86.8433 +187497,284.65,82.0726 +187498,284.67,83.6534 +187499,284.72,85.2469 +187500,284.8,86.8527 +187501,283.38,82.1112 +187502,283.35,83.6822 +187503,283.36,85.2656 +187504,283.41,86.8608 +187505,282.11,82.1511 +187506,282.04,83.7115 +187507,282.01,85.2839 +187508,282.01,86.8678 +187509,280.84,82.1923 +187510,280.73,83.7412 +187511,280.65,85.3018 +187512,280.61,86.8734 +187513,279.57,82.2347 +187514,279.42,83.7713 +187515,279.3,85.3193 +187516,279.21,86.8779 +187517,278.3,82.2784 +187518,278.11,83.8018 +187519,277.95,85.3363 +187520,277.82,86.8811 +187521,277.03,82.3233 +187522,276.8,83.8327 +187523,276.59,85.3529 +187524,276.42,86.8831 +187525,275.76,82.3694 +187526,275.48,83.864 +187527,275.24,85.3692 +187528,275.02,86.8839 +187529,274.49,82.4168 +187530,274.17,83.8958 +187531,273.88,85.385 +187532,273.62,86.8836 +187533,273.22,82.4653 +187534,272.86,83.9279 +187535,272.53,85.4004 +187536,272.23,86.882 +187537,271.95,82.5151 +187538,271.55,83.9604 +187539,271.18,85.4155 +187540,270.83,86.8793 +187541,270.68,82.566 +187542,270.24,83.9932 +187543,269.82,85.4301 +187544,269.44,86.8755 +187545,269.4,82.6181 +187546,268.92,84.0265 +187547,268.47,85.4444 +187548,268.04,86.8705 +187549,268.13,82.6714 +187550,267.61,84.0602 +187551,267.11,85.4582 +187552,266.65,86.8644 +187553,266.86,82.7258 +187554,266.3,84.0942 +187555,265.76,85.4717 +187556,265.25,86.8572 +187557,265.59,82.7814 +187558,264.98,84.1285 +187559,264.41,85.4849 +187560,263.86,86.8489 +187561,264.31,82.838 +187562,263.67,84.1633 +187563,263.05,85.4976 +187564,262.46,86.8395 +187565,263.04,82.8957 +187566,262.36,84.1984 +187567,261.7,85.51 +187568,261.07,86.8291 +187569,261.76,82.9546 +187570,261.04,84.2338 +187571,260.35,85.522 +187572,259.68,86.8177 +187573,260.49,83.0144 +187574,259.73,84.2696 +187575,258.99,85.5337 +187576,258.29,86.8052 +187577,259.21,83.0754 +187578,258.41,84.3058 +187579,257.64,85.5451 +187580,256.89,86.7917 +187581,257.94,83.1373 +187582,257.1,84.3422 +187583,256.29,85.5561 +187584,255.5,86.7773 +187585,256.66,83.2003 +187586,255.79,84.379 +187587,254.94,85.5667 +187588,254.11,86.7618 +187589,255.38,83.2642 +187590,254.47,84.4161 +187591,253.58,85.5771 +187592,252.72,86.7455 +187593,254.1,83.3291 +187594,253.16,84.4535 +187595,252.23,85.5871 +187596,251.34,86.7282 +187597,252.82,83.3949 +187598,251.84,84.4912 +187599,250.88,85.5968 +187600,249.95,86.71 +187601,251.54,83.4617 +187602,250.52,84.5293 +187603,249.53,85.6062 +187604,248.56,86.6909 +187605,250.26,83.5293 +187606,249.21,84.5676 +187607,248.18,85.6154 +187608,247.17,86.671 +187609,248.98,83.5979 +187610,247.89,84.6062 +187611,246.83,85.6242 +187612,245.79,86.6502 +187613,247.7,83.6673 +187614,246.57,84.645 +187615,245.48,85.6327 +187616,244.4,86.6286 +187617,246.41,83.7375 +187618,245.26,84.6842 +187619,244.13,85.641 +187620,243.02,86.6063 +187621,245.13,83.8085 +187622,243.94,84.7235 +187623,242.78,85.649 +187624,241.64,86.5831 +187625,243.84,83.8803 +187626,242.62,84.7632 +187627,241.43,85.6567 +187628,240.26,86.5592 +187629,242.56,83.9529 +187630,241.3,84.8031 +187631,240.08,85.6642 +187632,238.88,86.5346 +187633,241.27,84.0262 +187634,239.98,84.8432 +187635,238.73,85.6715 +187636,237.5,86.5093 +187637,239.98,84.1002 +187638,238.67,84.8835 +187639,237.38,85.6785 +187640,236.12,86.4833 +187641,238.69,84.1749 +187642,237.35,84.9241 +187643,236.03,85.6853 +187644,234.74,86.4567 +187645,237.4,84.2503 +187646,236.03,84.9648 +187647,234.68,85.6918 +187648,233.36,86.4294 +187649,236.11,84.3262 +187650,234.71,85.0058 +187651,233.33,85.6982 +187652,231.99,86.4016 +187653,234.82,84.4028 +187654,233.39,85.047 +187655,231.98,85.7044 +187656,230.61,86.3731 +187657,233.52,84.4799 +187658,232.06,85.0883 +187659,230.64,85.7103 +187660,229.24,86.3442 +187661,232.23,84.5576 +187662,230.74,85.1298 +187663,229.29,85.7161 +187664,227.87,86.3147 +187665,230.93,84.6358 +187666,229.42,85.1715 +187667,227.94,85.7217 +187668,226.49,86.2847 +187669,229.63,84.7145 +187670,228.1,85.2133 +187671,226.6,85.7272 +187672,225.12,86.2543 +187673,228.33,84.7936 +187674,226.78,85.2552 +187675,225.25,85.7325 +187676,223.75,86.2234 +187677,227.03,84.8732 +187678,225.45,85.2973 +187679,223.9,85.7376 +187680,222.39,86.1921 +187681,225.73,84.9531 +187682,224.13,85.3395 +187683,222.56,85.7426 +187684,221.02,86.1604 +187685,224.43,85.0334 +187686,222.81,85.3819 +187687,221.21,85.7475 +187688,219.65,86.1284 +187689,223.13,85.1141 +187690,221.48,85.4243 +187691,219.87,85.7523 +187692,218.29,86.096 +187693,221.82,85.1951 +187694,220.16,85.4668 +187695,218.53,85.7569 +187696,216.93,86.0634 +187697,220.51,85.2763 +187698,218.83,85.5094 +187699,217.18,85.7615 +187700,215.57,86.0304 +187701,219.21,85.3578 +187702,217.5,85.5521 +187703,215.84,85.7659 +187704,214.21,85.9973 +187705,217.9,85.4395 +187706,216.18,85.5948 +187707,214.49,85.7703 +187708,212.85,85.9639 +187709,216.59,85.5214 +187710,214.85,85.6376 +187711,213.15,85.7747 +187712,211.49,85.9303 +187713,215.28,85.6034 +187714,213.52,85.6805 +187715,211.81,85.7789 +187716,210.13,85.8966 +187717,213.96,85.6856 +187718,212.2,85.7234 +187719,210.47,85.7831 +187720,208.78,85.8627 +187721,212.65,85.7678 +187722,210.87,85.7662 +187723,209.13,85.7873 +187724,207.42,85.8288 +187725,211.33,85.8502 +187726,209.54,85.8091 +187727,207.79,85.7914 +187728,206.07,85.7948 +187729,210.02,85.9325 +187730,208.21,85.8521 +187731,206.45,85.7956 +187732,204.72,85.7607 +187733,208.7,86.0148 +187734,206.88,85.895 +187735,205.1,85.7997 +187736,203.37,85.7266 +187737,207.38,86.0971 +187738,205.55,85.9378 +187739,203.77,85.8038 +187740,202.02,85.6926 +187741,206.06,86.1793 +187742,204.22,85.9807 +187743,202.43,85.8079 +187744,200.67,85.6586 +187745,204.73,86.2615 +187746,202.89,86.0235 +187747,201.09,85.8121 +187748,199.33,85.6246 +187749,203.41,86.3435 +187750,201.56,86.0662 +187751,199.75,85.8162 +187752,197.98,85.5908 +187753,202.08,86.4253 +187754,200.22,86.1089 +187755,198.41,85.8204 +187756,196.64,85.5571 +187757,200.75,86.5069 +187758,198.89,86.1516 +187759,197.07,85.8247 +187760,195.3,85.5236 +187761,199.43,86.5883 +187762,197.56,86.1941 +187763,195.74,85.829 +187764,193.96,85.4903 +187765,198.1,86.6695 +187766,196.22,86.2365 +187767,194.4,85.8334 +187768,192.62,85.4572 +187769,196.76,86.7503 +187770,194.89,86.2789 +187771,193.06,85.8379 +187772,191.28,85.4243 +187773,195.43,86.8308 +187774,193.55,86.3211 +187775,191.73,85.8424 +187776,189.94,85.3918 +187777,194.1,86.911 +187778,192.22,86.3632 +187779,190.39,85.8471 +187780,188.61,85.3595 +187781,192.76,86.9908 +187782,190.88,86.4052 +187783,189.06,85.8519 +187784,187.27,85.3276 +187785,191.42,87.0702 +187786,189.55,86.4471 +187787,187.72,85.8567 +187788,185.94,85.296 +187789,190.08,87.1492 +187790,188.21,86.4888 +187791,186.39,85.8617 +187792,184.61,85.2648 +187793,188.74,87.2276 +187794,186.87,86.5303 +187795,185.05,85.8669 +187796,183.28,85.2341 +187797,187.4,87.3056 +187798,185.53,86.5716 +187799,183.72,85.8722 +187800,181.95,85.2038 +187801,186.06,87.383 +187802,184.2,86.6128 +187803,182.39,85.8776 +187804,180.63,85.174 +187805,184.71,87.4599 +187806,182.86,86.6538 +187807,181.05,85.8832 +187808,179.3,85.1446 +187809,183.37,87.5361 +187810,181.52,86.6946 +187811,179.72,85.889 +187812,177.98,85.1158 +187813,182.02,87.6118 +187814,180.18,86.7351 +187815,178.39,85.895 +187816,176.65,85.0876 +187817,180.67,87.6868 +187818,178.84,86.7755 +187819,177.06,85.9011 +187820,175.33,85.06 +187821,179.32,87.7611 +187822,177.5,86.8156 +187823,175.73,85.9075 +187824,174.01,85.0329 +187825,177.97,87.8347 +187826,176.15,86.8555 +187827,174.4,85.9141 +187828,172.69,85.0065 +187829,176.61,87.9076 +187830,174.81,86.8951 +187831,173.07,85.9208 +187832,171.37,84.9808 +187833,175.26,87.9797 +187834,173.47,86.9345 +187835,171.74,85.9278 +187836,170.06,84.9558 +187837,173.9,88.051 +187838,172.13,86.9736 +187839,170.41,85.9351 +187840,168.74,84.9314 +187841,172.55,88.1215 +187842,170.78,87.0124 +187843,169.08,85.9426 +187844,167.43,84.9078 +187845,171.19,88.1912 +187846,169.44,87.051 +187847,167.75,85.9503 +187848,166.12,84.885 +187849,169.83,88.26 +187850,168.1,87.0892 +187851,166.42,85.9583 +187852,164.8,84.863 +187853,168.46,88.3279 +187854,166.75,87.1272 +187855,165.1,85.9666 +187856,163.49,84.8417 +187857,167.1,88.3949 +187858,165.41,87.1649 +187859,163.77,85.9751 +187860,162.18,84.8213 +187861,165.74,88.461 +187862,164.06,87.2022 +187863,162.44,85.984 +187864,160.88,84.8018 +187865,164.37,88.5261 +187866,162.71,87.2392 +187867,161.12,85.9931 +187868,159.57,84.7831 +187869,163,88.5902 +187870,161.37,87.2759 +187871,159.79,86.0025 +187872,158.26,84.7654 +187873,161.64,88.6533 +187874,160.02,87.3123 +187875,158.46,86.0122 +187876,156.96,84.7485 +187877,160.27,88.7154 +187878,158.67,87.3483 +187879,157.14,86.0222 +187880,155.65,84.7327 +187881,158.9,88.7764 +187882,157.32,87.3839 +187883,155.81,86.0326 +187884,154.35,84.7177 +187885,157.52,88.8363 +187886,155.98,87.4192 +187887,154.49,86.0432 +187888,153.05,84.7038 +187889,156.15,88.8952 +187890,154.63,87.4542 +187891,153.16,86.0543 +187892,151.75,84.6909 +187893,154.78,88.9529 +187894,153.28,87.4887 +187895,151.84,86.0656 +187896,150.45,84.679 +187897,153.4,89.00952 +187898,151.93,87.5229 +187899,150.52,86.0773 +187900,149.15,84.6681 +187901,152.02,89.06497 +187902,150.58,87.5567 +187903,149.19,86.0893 +187904,147.86,84.6583 +187905,150.65,89.11927 +187906,149.23,87.5901 +187907,147.87,86.1017 +187908,146.56,84.6496 +187909,149.27,89.17237 +187910,147.88,87.6231 +187911,146.55,86.1145 +187912,145.26,84.642 +187913,147.89,89.22428 +187914,146.53,87.6557 +187915,145.22,86.1276 +187916,143.97,84.6355 +187917,146.51,89.27496 +187918,145.17,87.6879 +187919,143.9,86.1411 +187920,142.68,84.6302 +187921,145.13,89.32442 +187922,143.82,87.7197 +187923,142.58,86.155 +187924,141.38,84.6259 +187925,143.74,89.37263 +187926,142.47,87.751 +187927,141.26,86.1692 +187928,140.09,84.6229 +187929,142.36,89.41958 +187930,141.12,87.782 +187931,139.93,86.1839 +187932,138.8,84.621 +187933,140.97,89.46525 +187934,139.76,87.8125 +187935,138.61,86.1989 +187936,137.51,84.6203 +187937,139.59,89.50964 +187938,138.41,87.8426 +187939,137.29,86.2144 +187940,136.22,84.6208 +187941,138.2,89.55273 +187942,137.06,87.8722 +187943,135.97,86.2302 +187944,134.93,84.6226 +187945,136.81,89.59452 +187946,135.7,87.9014 +187947,134.65,86.2465 +187948,133.64,84.6256 +187949,135.42,89.63498 +187950,134.35,87.9302 +187951,133.33,86.2631 +187952,132.36,84.6298 +187953,134.04,89.67412 +187954,133,87.9585 +187955,132.01,86.2802 +187956,131.07,84.6352 +187957,132.65,89.71191 +187958,131.64,87.9864 +187959,130.69,86.2976 +187960,129.78,84.6419 +187961,131.25,89.74837 +187962,130.29,88.0138 +187963,129.37,86.3155 +187964,128.5,84.6499 +187965,129.86,89.78347 +187966,128.93,88.0407 +187967,128.05,86.3338 +187968,127.21,84.6592 +187969,128.47,89.81721 +187970,127.57,88.0672 +187971,126.73,86.3526 +187972,125.93,84.6698 +187973,127.08,89.84958 +187974,126.22,88.0933 +187975,125.41,86.3717 +187976,124.65,84.6816 +187977,125.68,89.88058 +187978,124.86,88.1188 +187979,124.09,86.3913 +187980,123.36,84.6948 +187981,124.29,89.910211 +187982,123.51,88.1439 +187983,122.77,86.4113 +187984,122.08,84.7093 +187985,122.9,89.938459 +187986,122.15,88.1686 +187987,121.45,86.4318 +187988,120.8,84.7251 +187989,121.5,89.965325 +187990,120.79,88.1928 +187991,120.13,86.4527 +187992,119.52,84.7422 +187993,120.11,89.990806 +187994,119.44,88.2165 +187995,118.82,86.474 +187996,118.23,84.7606 +187997,118.71,90.014901 +187998,118.08,88.2397 +187999,117.5,86.4957 +188000,116.95,84.7804 +188001,117.31,90.037608 +188002,116.72,88.2624 +188003,116.18,86.5179 +188004,115.67,84.8015 +188005,115.92,90.058928 +188006,115.37,88.2847 +188007,114.86,86.5405 +188008,114.39,84.824 +188009,114.52,90.078861 +188010,114.01,88.3066 +188011,113.54,86.5636 +188012,113.11,84.8477 +188013,113.12,90.097408 +188014,112.65,88.3279 +188015,112.22,86.5871 +188016,111.83,84.8728 +188017,111.72,90.11457 +188018,111.29,88.3488 +188019,110.9,86.611 +188020,110.55,84.8993 +188021,110.32,90.13036 +188022,109.93,88.3692 +188023,109.59,86.6354 +188024,109.27,84.9271 +188025,108.92,90.14476 +188026,108.58,88.3891 +188027,108.27,86.6602 +188028,108,84.9562 +188029,107.53,90.1578 +188030,107.22,88.4086 +188031,106.95,86.6854 +188032,106.72,84.9867 +188033,106.13,90.16946 +188034,105.86,88.4276 +188035,105.63,86.711 +188036,105.44,85.0184 +188037,104.73,90.17976 +188038,104.5,88.4461 +188039,104.31,86.7371 +188040,104.16,85.0516 +188041,103.33,90.18871 +188042,103.14,88.4642 +188043,102.99,86.7637 +188044,102.88,85.086 +188045,101.93,90.19631 +188046,101.78,88.4818 +188047,101.68,86.7906 +188048,101.6,85.1218 +188049,100.53,90.20256 +188050,100.43,88.4989 +188051,100.36,86.818 +188052,100.32,85.1588 +188053,99.13,90.20748 +188054,99.068,88.5156 +188055,99.04,86.8458 +188056,99.043,85.1972 +188057,97.73,90.21108 +188058,97.709,88.5318 +188059,97.721,86.874 +188060,97.764,85.2369 +188061,96.331,90.21336 +188062,96.351,88.5476 +188063,96.403,86.9026 +188064,96.485,85.2779 +188065,94.932,90.21434 +188066,94.992,88.5629 +188067,95.084,86.9317 +188068,95.206,85.3202 +188069,93.532,90.21403 +188070,93.634,88.5778 +188071,93.766,86.9611 +188072,93.926,85.3637 +188073,92.133,90.21243 +188074,92.275,88.5923 +188075,92.447,86.991 +188076,92.647,85.4085 +188077,90.734,90.20957 +188078,90.916,88.6063 +188079,91.128,87.0213 +188080,91.367,85.4546 +188081,89.336,90.20544 +188082,89.558,88.6198 +188083,89.809,87.052 +188084,90.087,85.5019 +188085,87.937,90.20008 +188086,88.2,88.633 +188087,88.49,87.083 +188088,88.807,85.5505 +188089,86.539,90.19349 +188090,86.841,88.6457 +188091,87.171,87.1145 +188092,87.526,85.6003 +188093,85.141,90.18568 +188094,85.483,88.658 +188095,85.851,87.1463 +188096,86.245,85.6512 +188097,83.743,90.17668 +188098,84.125,88.6698 +188099,84.532,87.1786 +188100,84.964,85.7034 +188101,82.346,90.16649 +188102,82.766,88.6813 +188103,83.212,87.2112 +188104,83.682,85.7568 +188105,80.949,90.15514 +188106,81.408,88.6923 +188107,81.892,87.2442 +188108,82.4,85.8113 +188109,79.553,90.14264 +188110,80.05,88.703 +188111,80.572,87.2775 +188112,81.117,85.867 +188113,78.157,90.12901 +188114,78.692,88.7132 +188115,79.252,87.3112 +188116,79.834,85.9238 +188117,76.761,90.11426 +188118,77.335,88.7231 +188119,77.931,87.3453 +188120,78.55,85.9818 +188121,75.366,90.098426 +188122,75.977,88.7325 +188123,76.611,87.3797 +188124,77.266,86.0408 +188125,73.972,90.081514 +188126,74.62,88.7416 +188127,75.29,87.4145 +188128,75.982,86.101 +188129,72.578,90.063547 +188130,73.262,88.7504 +188131,73.969,87.4495 +188132,74.696,86.1622 +188133,71.185,90.044545 +188134,71.905,88.7587 +188135,72.647,87.485 +188136,73.41,86.2244 +188137,69.792,90.02453 +188138,70.548,88.7667 +188139,71.326,87.5207 +188140,72.124,86.2877 +188141,68.4,90.0035228 +188142,69.192,88.7744 +188143,70.004,87.5568 +188144,70.836,86.3519 +188145,67.009,89.981545 +188146,67.835,88.7817 +188147,68.682,87.5932 +188148,69.548,86.4172 +188149,65.618,89.958619 +188150,66.479,88.7887 +188151,67.359,87.6298 +188152,68.26,86.4834 +188153,64.228,89.934768 +188154,65.122,88.7953 +188155,66.037,87.6668 +188156,66.97,86.5506 +188157,62.839,89.910015 +188158,63.766,88.8016 +188159,64.714,87.704 +188160,65.68,86.6187 +188161,61.451,89.88438 +188162,62.411,88.8076 +188163,63.39,87.7416 +188164,64.389,86.6877 +188165,60.063,89.8579 +188166,61.055,88.8133 +188167,62.067,87.7794 +188168,63.097,86.7575 +188169,58.677,89.83058 +188170,59.7,88.8187 +188171,60.743,87.8175 +188172,61.804,86.8283 +188173,57.291,89.80246 +188174,58.345,88.8238 +188175,59.419,87.8558 +188176,60.511,86.8998 +188177,55.906,89.77355 +188178,56.99,88.8286 +188179,58.094,87.8943 +188180,59.216,86.9721 +188181,54.522,89.74389 +188182,55.636,88.8332 +188183,56.769,87.9331 +188184,57.921,87.0452 +188185,53.139,89.71351 +188186,54.282,88.8375 +188187,55.444,87.9722 +188188,56.624,87.1191 +188189,51.756,89.68242 +188190,52.928,88.8415 +188191,54.118,88.0114 +188192,55.327,87.1937 +188193,50.375,89.65065 +188194,51.574,88.8453 +188195,52.792,88.0509 +188196,54.029,87.2689 +188197,48.995,89.61824 +188198,50.221,88.8488 +188199,51.466,88.0905 +188200,52.729,87.3449 +188201,47.616,89.5852 +188202,48.868,88.8521 +188203,50.139,88.1304 +188204,51.429,87.4215 +188205,46.237,89.55157 +188206,47.515,88.8552 +188207,48.812,88.1704 +188208,50.128,87.4986 +188209,44.86,89.51737 +188210,46.162,88.8581 +188211,47.484,88.2106 +188212,48.825,87.5764 +188213,43.484,89.48263 +188214,44.81,88.8608 +188215,46.156,88.251 +188216,47.522,87.6548 +188217,42.109,89.44738 +188218,43.458,88.8633 +188219,44.828,88.2915 +188220,46.217,87.7336 +188221,40.735,89.41165 +188222,42.107,88.8656 +188223,43.499,88.3322 +188224,44.911,87.813 +188225,39.362,89.37546 +188226,40.756,88.8677 +188227,42.17,88.373 +188228,43.605,87.8928 +188229,37.99,89.33885 +188230,39.405,88.8697 +188231,40.841,88.4139 +188232,42.297,87.973 +188233,36.62,89.30184 +188234,38.055,88.8715 +188235,39.511,88.4549 +188236,40.987,88.0537 +188237,35.25,89.26447 +188238,36.705,88.8732 +188239,38.18,88.4961 +188240,39.677,88.1347 +188241,33.882,89.22676 +188242,35.355,88.8747 +188243,36.85,88.5373 +188244,38.366,88.2161 +188245,32.515,89.18874 +188246,34.006,88.8761 +188247,35.518,88.5786 +188248,37.053,88.2977 +188249,31.149,89.15045 +188250,32.657,88.8774 +188251,34.187,88.62 +188252,35.739,88.3797 +188253,29.784,89.1119 +188254,31.308,88.8786 +188255,32.854,88.6614 +188256,34.424,88.4619 +188257,28.421,89.07314 +188258,29.96,88.8797 +188259,31.522,88.7029 +188260,33.107,88.5443 +188261,27.059,89.03419 +188262,28.612,88.8807 +188263,30.189,88.7445 +188264,31.789,88.627 +188265,25.698,88.9951 +188266,27.264,88.8817 +188267,28.855,88.786 +188268,30.47,88.7097 +188269,24.338,88.9558 +188270,25.917,88.8826 +188271,27.521,88.8276 +188272,29.15,88.7926 +188273,22.979,88.9165 +188274,24.57,88.8834 +188275,26.187,88.8692 +188276,27.828,88.8756 +188277,21.622,88.8771 +188278,23.224,88.8842 +188279,24.852,88.9108 +188280,26.506,88.9586 +188281,20.266,88.8377 +188282,21.878,88.8849 +188283,23.516,88.9523 +188284,25.181,89.04164 +188285,18.911,88.7982 +188286,20.533,88.8857 +188287,22.181,88.9939 +188288,23.856,89.12468 +188289,17.558,88.7588 +188290,19.187,88.8864 +188291,20.844,89.03539 +188292,22.529,89.20767 +188293,16.205,88.7194 +188294,17.843,88.8871 +188295,19.507,89.07686 +188296,21.201,89.29058 +188297,14.855,88.6801 +188298,16.498,88.8878 +188299,18.17,89.11826 +188300,19.871,89.37338 +188301,13.505,88.641 +188302,15.154,88.8886 +188303,16.832,89.1596 +188304,18.54,89.45604 +188305,12.157,88.6019 +188306,13.811,88.8894 +188307,15.494,89.20086 +188308,17.208,89.53853 +188309,10.809,88.5631 +188310,12.467,88.8902 +188311,14.155,89.24203 +188312,15.874,89.6208 +188313,9.4636,88.5244 +188314,11.125,88.891 +188315,12.816,89.2831 +188316,14.539,89.70283 +188317,8.1192,88.486 +188318,9.7823,88.892 +188319,11.476,89.32406 +188320,13.203,89.78459 +188321,6.7759,88.4479 +188322,8.4404,88.893 +188323,10.136,89.3649 +188324,11.865,89.86604 +188325,5.434,88.41 +188326,7.0988,88.894 +188327,8.7955,89.4056 +188328,10.526,89.947151 +188329,4.0934,88.3725 +188330,5.7577,88.8952 +188331,7.4543,89.44616 +188332,9.1858,90.027888 +188333,2.7541,88.3353 +188334,4.4169,88.8965 +188335,6.1127,89.48657 +188336,7.844,90.10822 +188337,1.416,88.2985 +188338,3.0765,88.8979 +188339,4.7705,89.52682 +188340,6.5008,90.18811 +188341,0.079209,88.2621 +188342,1.7366,88.8994 +188343,3.4279,89.56689 +188344,5.1562,90.26754 +188345,358.74,88.2262 +188346,0.39703,88.901 +188347,2.0848,89.60677 +188348,3.8102,90.34646 +188349,357.41,88.1907 +188350,359.06,88.9028 +188351,0.74122,89.64646 +188352,2.4629,90.42485 +188353,356.08,88.1557 +188354,357.72,88.9047 +188355,359.4,89.68595 +188356,1.1143,90.50268 +188357,354.74,88.1212 +188358,356.38,88.9068 +188359,358.05,89.72522 +188360,359.76,90.57991 +188361,353.41,88.0873 +188362,355.04,88.909 +188363,356.71,89.76427 +188364,358.41,90.65651 +188365,352.09,88.054 +188366,353.71,88.9114 +188367,355.36,89.80308 +188368,357.06,90.73246 +188369,350.76,88.0213 +188370,352.37,88.914 +188371,354.02,89.84164 +188372,355.71,90.80772 +188373,349.43,87.9892 +188374,351.03,88.9168 +188375,352.67,89.87995 +188376,354.35,90.88226 +188377,348.1,87.9578 +188378,349.69,88.9199 +188379,351.32,89.918 +188380,352.99,90.95606 +188381,346.78,87.927 +188382,348.36,88.9231 +188383,349.98,89.955773 +188384,351.64,91.0291 +188385,345.46,87.897 +188386,347.02,88.9265 +188387,348.63,89.9932627 +188388,350.28,91.1013 +188389,344.14,87.8677 +188390,345.69,88.9302 +188391,347.28,90.03046 +188392,348.92,91.1727 +188393,342.81,87.8392 +188394,344.35,88.9341 +188395,345.93,90.067357 +188396,347.55,91.2432 +188397,341.49,87.8114 +188398,343.02,88.9383 +188399,344.58,90.10394 +188400,346.19,91.3128 +188401,340.18,87.7845 +188402,341.68,88.9427 +188403,343.23,90.14021 +188404,344.83,91.3815 +188405,338.86,87.7584 +188406,340.35,88.9474 +188407,341.88,90.17615 +188408,343.46,91.4493 +188409,337.54,87.7332 +188410,339.02,88.9524 +188411,340.53,90.21175 +188412,342.09,91.5161 +188413,336.23,87.7088 +188414,337.68,88.9576 +188415,339.18,90.24701 +188416,340.72,91.5819 +188417,334.91,87.6854 +188418,336.35,88.9631 +188419,337.83,90.28191 +188420,339.36,91.6467 +188421,333.6,87.6629 +188422,335.02,88.969 +188423,336.48,90.31646 +188424,337.98,91.7105 +188425,332.29,87.6414 +188426,333.69,88.9751 +188427,335.12,90.35063 +188428,336.61,91.7731 +188429,330.98,87.6208 +188430,332.35,88.9815 +188431,333.77,90.38443 +188432,335.24,91.8347 +188433,329.67,87.6012 +188434,331.02,88.9883 +188435,332.42,90.41785 +188436,333.87,91.8952 +188437,328.36,87.5826 +188438,329.69,88.9954 +188439,331.07,90.45087 +188440,332.49,91.9545 +188441,327.05,87.5651 +188442,328.36,89.00281 +188443,329.71,90.4835 +188444,331.11,92.0127 +188445,325.74,87.5486 +188446,327.03,89.01057 +188447,328.36,90.51572 +188448,329.74,92.0697 +188449,324.44,87.5332 +188450,325.7,89.01867 +188451,327,90.54753 +188452,328.36,92.1255 +188453,323.13,87.5189 +188454,324.37,89.02712 +188455,325.65,90.57892 +188456,326.98,92.18 +188457,321.83,87.5058 +188458,323.04,89.03593 +188459,324.29,90.60989 +188460,325.6,92.2334 +188461,320.53,87.4937 +188462,321.71,89.0451 +188463,322.94,90.64042 +188464,324.21,92.2854 +188465,319.22,87.4828 +188466,320.38,89.05464 +188467,321.58,90.67052 +188468,322.83,92.3362 +188469,317.92,87.473 +188470,319.05,89.06455 +188471,320.22,90.70017 +188472,321.45,92.3857 +188473,316.62,87.4644 +188474,317.72,89.07484 +188475,318.87,90.72938 +188476,320.06,92.4339 +188477,315.32,87.4571 +188478,316.39,89.08552 +188479,317.51,90.75813 +188480,318.68,92.4808 +188481,314.02,87.4509 +188482,315.07,89.09658 +188483,316.15,90.78643 +188484,317.29,92.5263 +188485,312.72,87.4459 +188486,313.74,89.10804 +188487,314.8,90.81426 +188488,315.9,92.5705 +188489,311.42,87.4422 +188490,312.41,89.11989 +188491,313.44,90.84162 +188492,314.51,92.6133 +188493,310.13,87.4397 +188494,311.08,89.13215 +188495,312.08,90.86851 +188496,313.13,92.6547 +188497,308.83,87.4385 +188498,309.76,89.14481 +188499,310.72,90.89493 +188500,311.73,92.6947 +188501,307.54,87.4386 +188502,308.43,89.15788 +188503,309.36,90.92086 +188504,310.34,92.7333 +188505,306.24,87.4399 +188506,307.1,89.17137 +188507,308,90.94631 +188508,308.95,92.7705 +188509,304.95,87.4426 +188510,305.77,89.18527 +188511,306.64,90.97127 +188512,307.56,92.8063 +188513,303.65,87.4465 +188514,304.45,89.19959 +188515,305.28,90.99574 +188516,306.17,92.8406 +188517,302.36,87.4518 +188518,303.12,89.21433 +188519,303.92,91.0197 +188520,304.77,92.8735 +188521,301.07,87.4584 +188522,301.79,89.2295 +188523,302.56,91.0432 +188524,303.38,92.905 +188525,299.77,87.4663 +188526,300.47,89.24509 +188527,301.2,91.0662 +188528,301.98,92.935 +188529,298.48,87.4755 +188530,299.14,89.26112 +188531,299.84,91.0887 +188532,300.59,92.9635 +188533,297.19,87.4861 +188534,297.82,89.27757 +188535,298.48,91.1106 +188536,299.19,92.9906 +188537,295.9,87.498 +188538,296.49,89.29446 +188539,297.12,91.1321 +188540,297.8,93.0161 +188541,294.61,87.5113 +188542,295.17,89.31178 +188543,295.76,91.1531 +188544,296.4,93.0402 +188545,293.32,87.526 +188546,293.84,89.32954 +188547,294.4,91.1735 +188548,295,93.0629 +188549,292.03,87.542 +188550,292.51,89.34774 +188551,293.04,91.1935 +188552,293.6,93.084 +188553,290.74,87.5594 +188554,291.19,89.36637 +188555,291.68,91.2129 +188556,292.2,93.1037 +188557,289.45,87.5781 +188558,289.86,89.38544 +188559,290.31,91.2319 +188560,290.8,93.1219 +188561,288.16,87.5982 +188562,288.54,89.40494 +188563,288.95,91.2503 +188564,289.41,93.1386 +188565,286.87,87.6197 +188566,287.21,89.42489 +188567,287.59,91.2682 +188568,288.01,93.1538 +188569,285.58,87.6425 +188570,285.89,89.44527 +188571,286.23,91.2856 +188572,286.61,93.1675 +188573,284.29,87.6667 +188574,284.56,89.46609 +188575,284.86,91.3025 +188576,285.21,93.1798 +188577,283,87.6923 +188578,283.24,89.48735 +188579,283.5,91.3188 +188580,283.81,93.1906 +188581,281.72,87.7192 +188582,281.91,89.50904 +188583,282.14,91.3347 +188584,282.4,93.1999 +188585,280.43,87.7476 +188586,280.59,89.53117 +188587,280.78,91.3501 +188588,281,93.2077 +188589,279.14,87.7772 +188590,279.26,89.55373 +188591,279.41,91.3649 +188592,279.6,93.2141 +188593,277.85,87.8082 +188594,277.94,89.57672 +188595,278.05,91.3793 +188596,278.2,93.2191 +188597,276.56,87.8406 +188598,276.61,89.60015 +188599,276.69,91.3932 +188600,276.8,93.2226 +188601,275.27,87.8743 +188602,275.29,89.624 +188603,275.33,91.4065 +188604,275.4,93.2246 +188605,273.99,87.9094 +188606,273.96,89.64827 +188607,273.96,91.4194 +188608,274,93.2253 +188609,272.7,87.9458 +188610,272.63,89.67297 +188611,272.6,91.4317 +188612,272.6,93.2245 +188613,271.41,87.9835 +188614,271.31,89.69808 +188615,271.24,91.4436 +188616,271.2,93.2223 +188617,270.12,88.0225 +188618,269.98,89.72362 +188619,269.87,91.455 +188620,269.8,93.2187 +188621,268.83,88.0629 +188622,268.66,89.74956 +188623,268.51,91.4659 +188624,268.39,93.2138 +188625,267.54,88.1045 +188626,267.33,89.77592 +188627,267.15,91.4763 +188628,266.99,93.2074 +188629,266.25,88.1474 +188630,266.01,89.80268 +188631,265.79,91.4862 +188632,265.59,93.1997 +188633,264.96,88.1916 +188634,264.68,89.82985 +188635,264.42,91.4957 +188636,264.19,93.1907 +188637,263.67,88.2371 +188638,263.35,89.85741 +188639,263.06,91.5047 +188640,262.79,93.1803 +188641,262.38,88.2838 +188642,262.03,89.88536 +188643,261.7,91.5133 +188644,261.39,93.1686 +188645,261.09,88.3318 +188646,260.7,89.913707 +188647,260.34,91.5213 +188648,259.99,93.1556 +188649,259.8,88.381 +188650,259.37,89.942434 +188651,258.97,91.5289 +188652,258.59,93.1413 +188653,258.51,88.4314 +188654,258.05,89.97154 +188655,257.61,91.5361 +188656,257.19,93.1258 +188657,257.22,88.483 +188658,256.72,90.0010189 +188659,256.25,91.5428 +188660,255.8,93.109 +188661,255.92,88.5358 +188662,255.39,90.030866 +188663,254.89,91.5491 +188664,254.4,93.091 +188665,254.63,88.5898 +188666,254.07,90.061074 +188667,253.52,91.555 +188668,253,93.0718 +188669,253.34,88.6449 +188670,252.74,90.091639 +188671,252.16,91.5604 +188672,251.6,93.0514 +188673,252.04,88.7011 +188674,251.41,90.12255 +188675,250.8,91.5654 +188676,250.21,93.0298 +188677,250.75,88.7584 +188678,250.08,90.15381 +188679,249.44,91.57 +188680,248.81,93.007 +188681,249.45,88.8169 +188682,248.76,90.18541 +188683,248.08,91.5742 +188684,247.41,92.9831 +188685,248.16,88.8764 +188686,247.43,90.21733 +188687,246.71,91.578 +188688,246.02,92.9582 +188689,246.86,88.937 +188690,246.1,90.24958 +188691,245.35,91.5814 +188692,244.63,92.9321 +188693,245.56,88.9986 +188694,244.77,90.28214 +188695,243.99,91.5844 +188696,243.23,92.905 +188697,244.27,89.06122 +188698,243.44,90.31501 +188699,242.63,91.5871 +188700,241.84,92.8768 +188701,242.97,89.12485 +188702,242.11,90.34819 +188703,241.27,91.5893 +188704,240.45,92.8476 +188705,241.67,89.18944 +188706,240.78,90.38165 +188707,239.91,91.5912 +188708,239.05,92.8174 +188709,240.37,89.25498 +188710,239.45,90.4154 +188711,238.55,91.5928 +188712,237.66,92.7863 +188713,239.07,89.32144 +188714,238.12,90.44943 +188715,237.19,91.594 +188716,236.27,92.7542 +188717,237.77,89.38881 +188718,236.79,90.48373 +188719,235.83,91.5948 +188720,234.88,92.7212 +188721,236.46,89.45705 +188722,235.46,90.51829 +188723,234.47,91.5953 +188724,233.49,92.6873 +188725,235.16,89.52615 +188726,234.13,90.5531 +188727,233.11,91.5955 +188728,232.11,92.6525 +188729,233.86,89.59607 +188730,232.8,90.58815 +188731,231.75,91.5954 +188732,230.72,92.6169 +188733,232.55,89.6668 +188734,231.47,90.62344 +188735,230.39,91.595 +188736,229.33,92.5805 +188737,231.25,89.73829 +188738,230.13,90.65896 +188739,229.03,91.5943 +188740,227.95,92.5433 +188741,229.94,89.81054 +188742,228.8,90.69469 +188743,227.68,91.5933 +188744,226.56,92.5053 +188745,228.63,89.88351 +188746,227.47,90.73062 +188747,226.32,91.592 +188748,225.18,92.4667 +188749,227.32,89.957172 +188750,226.14,90.76676 +188751,224.96,91.5905 +188752,223.8,92.4273 +188753,226.01,90.031499 +188754,224.8,90.80308 +188755,223.6,91.5887 +188756,222.42,92.3872 +188757,224.7,90.10646 +188758,223.47,90.83958 +188759,222.25,91.5867 +188760,221.04,92.3465 +188761,223.39,90.18204 +188762,222.13,90.87625 +188763,220.89,91.5844 +188764,219.66,92.3052 +188765,222.08,90.25819 +188766,220.8,90.91308 +188767,219.53,91.5818 +188768,218.28,92.2634 +188769,220.76,90.33489 +188770,219.47,90.95006 +188771,218.18,91.5791 +188772,216.9,92.2209 +188773,219.45,90.41211 +188774,218.13,90.98717 +188775,216.82,91.5762 +188776,215.52,92.1779 +188777,218.13,90.48981 +188778,216.79,91.0244 +188779,215.47,91.573 +188780,214.15,92.1345 +188781,216.82,90.56798 +188782,215.46,91.0618 +188783,214.11,91.5697 +188784,212.78,92.0906 +188785,215.5,90.64657 +188786,214.12,91.0992 +188787,212.76,91.5662 +188788,211.4,92.0462 +188789,214.18,90.72556 +188790,212.78,91.1368 +188791,211.4,91.5625 +188792,210.03,92.0015 +188793,212.86,90.80492 +188794,211.45,91.1745 +188795,210.05,91.5586 +188796,208.66,91.9564 +188797,211.54,90.88461 +188798,210.11,91.2122 +188799,208.69,91.5546 +188800,207.29,91.9109 +188801,210.22,90.96459 +188802,208.77,91.25 +188803,207.34,91.5505 +188804,205.92,91.8651 +188805,208.89,91.0448 +188806,207.43,91.2878 +188807,205.99,91.5462 +188808,204.55,91.8191 +188809,207.57,91.1253 +188810,206.09,91.3257 +188811,204.63,91.5419 +188812,203.19,91.7728 +188813,206.24,91.206 +188814,204.75,91.3636 +188815,203.28,91.5374 +188816,201.82,91.7263 +188817,204.91,91.2869 +188818,203.41,91.4015 +188819,201.93,91.5328 +188820,200.46,91.6796 +188821,203.58,91.3679 +188822,202.07,91.4395 +188823,200.58,91.5281 +188824,199.1,91.6328 +188825,202.25,91.449 +188826,200.73,91.4774 +188827,199.23,91.5234 +188828,197.73,91.5858 +188829,200.92,91.5302 +188830,199.39,91.5154 +188831,197.87,91.5186 +188832,196.37,91.5388 +188833,199.59,91.6114 +188834,198.05,91.5533 +188835,196.52,91.5137 +188836,195.01,91.4917 +188837,198.26,91.6926 +188838,196.71,91.5912 +188839,195.17,91.5089 +188840,193.66,91.4446 +188841,196.92,91.7738 +188842,195.36,91.629 +188843,193.82,91.5039 +188844,192.3,91.3974 +188845,195.59,91.8549 +188846,194.02,91.6668 +188847,192.47,91.499 +188848,190.94,91.3504 +188849,194.25,91.9359 +188850,192.68,91.7045 +188851,191.13,91.494 +188852,189.59,91.3034 +188853,192.91,92.0168 +188854,191.33,91.7421 +188855,189.78,91.4891 +188856,188.24,91.2564 +188857,191.57,92.0975 +188858,189.99,91.7796 +188859,188.43,91.4841 +188860,186.89,91.2097 +188861,190.23,92.178 +188862,188.65,91.8171 +188863,187.08,91.4792 +188864,185.53,91.1631 +188865,188.89,92.2583 +188866,187.3,91.8544 +188867,185.73,91.4743 +188868,184.19,91.1167 +188869,187.54,92.3383 +188870,185.95,91.8916 +188871,184.39,91.4694 +188872,182.84,91.0705 +188873,186.2,92.418 +188874,184.61,91.9286 +188875,183.04,91.4646 +188876,181.49,91.0245 +188877,184.85,92.4974 +188878,183.26,91.9655 +188879,181.69,91.4599 +188880,180.14,90.97891 +188881,183.5,92.5764 +188882,181.91,92.0023 +188883,180.35,91.4553 +188884,178.8,90.93359 +188885,182.15,92.655 +188886,180.57,92.0389 +188887,179,91.4507 +188888,177.46,90.88862 +188889,180.8,92.7332 +188890,179.22,92.0753 +188891,177.66,91.4462 +188892,176.12,90.84403 +188893,179.45,92.8109 +188894,177.87,92.1115 +188895,176.31,91.4418 +188896,174.77,90.79984 +188897,178.1,92.8881 +188898,176.52,92.1475 +188899,174.97,91.4376 +188900,173.43,90.7561 +188901,176.74,92.9647 +188902,175.17,92.1834 +188903,173.62,91.4334 +188904,172.1,90.71282 +188905,175.39,93.0408 +188906,173.82,92.2189 +188907,172.28,91.4294 +188908,170.76,90.67004 +188909,174.03,93.1163 +188910,172.47,92.2543 +188911,170.94,91.4256 +188912,169.42,90.62779 +188913,172.68,93.1911 +188914,171.12,92.2894 +188915,169.59,91.4219 +188916,168.09,90.5861 +188917,171.32,93.2653 +188918,169.77,92.3243 +188919,168.25,91.4184 +188920,166.75,90.54498 +188921,169.96,93.3388 +188922,168.42,92.3589 +188923,166.91,91.415 +188924,165.42,90.50448 +188925,168.59,93.4116 +188926,167.07,92.3932 +188927,165.57,91.4118 +188928,164.09,90.46462 +188929,167.23,93.4836 +188930,165.71,92.4272 +188931,164.22,91.4089 +188932,162.76,90.42542 +188933,165.87,93.5548 +188934,164.36,92.461 +188935,162.88,91.4061 +188936,161.43,90.38692 +188937,164.5,93.6251 +188938,163.01,92.4944 +188939,161.54,91.4035 +188940,160.1,90.34914 +188941,163.14,93.6947 +188942,161.65,92.5275 +188943,160.2,91.4012 +188944,158.78,90.31211 +188945,161.77,93.7633 +188946,160.3,92.5603 +188947,158.86,91.3991 +188948,157.45,90.27585 +188949,160.4,93.831 +188950,158.95,92.5928 +188951,157.52,91.3972 +188952,156.13,90.24039 +188953,159.03,93.8978 +188954,157.59,92.6249 +188955,156.18,91.3956 +188956,154.8,90.20575 +188957,157.66,93.9637 +188958,156.24,92.6567 +188959,154.84,91.3942 +188960,153.48,90.17197 +188961,156.29,94.0285 +188962,154.88,92.6881 +188963,153.51,91.3931 +188964,152.16,90.13905 +188965,154.91,94.0923 +188966,153.52,92.7192 +188967,152.17,91.3923 +188968,150.84,90.10704 +188969,153.54,94.1551 +188970,152.17,92.7499 +188971,150.83,91.3917 +188972,149.52,90.075943 +188973,152.16,94.2167 +188974,150.81,92.7802 +188975,149.49,91.3915 +188976,148.2,90.045791 +188977,150.78,94.2773 +188978,149.45,92.8101 +188979,148.15,91.3915 +188980,146.88,90.016607 +188981,149.41,94.3368 +188982,148.09,92.8396 +188983,146.82,91.3919 +188984,145.57,89.988411 +188985,148.03,94.3951 +188986,146.74,92.8687 +188987,145.48,91.3925 +188988,144.25,89.961225 +188989,146.65,94.4522 +188990,145.38,92.8973 +188991,144.14,91.3935 +188992,142.94,89.935071 +188993,145.27,94.5081 +188994,144.02,92.9256 +188995,142.81,91.3948 +188996,141.62,89.909969 +188997,143.88,94.5628 +188998,142.66,92.9534 +188999,141.47,91.3964 +189000,140.31,89.88594 +189001,142.5,94.6162 +189002,141.3,92.9808 +189003,140.14,91.3984 +189004,139,89.863 +189005,141.12,94.6684 +189006,139.94,93.0077 +189007,138.8,91.4007 +189008,137.69,89.84117 +189009,139.73,94.7193 +189010,138.58,93.0342 +189011,137.46,91.4033 +189012,136.38,89.82047 +189013,138.35,94.7689 +189014,137.22,93.0602 +189015,136.13,91.4063 +189016,135.07,89.80092 +189017,136.96,94.8171 +189018,135.86,93.0858 +189019,134.8,91.4097 +189020,133.76,89.78253 +189021,135.57,94.864 +189022,134.5,93.1109 +189023,133.46,91.4135 +189024,132.45,89.76533 +189025,134.18,94.9096 +189026,133.14,93.1355 +189027,132.13,91.4176 +189028,131.15,89.74932 +189029,132.79,94.9537 +189030,131.78,93.1596 +189031,130.79,91.4221 +189032,129.84,89.73452 +189033,131.4,94.9965 +189034,130.41,93.1832 +189035,129.46,91.427 +189036,128.53,89.72096 +189037,130.01,95.0378 +189038,129.05,93.2064 +189039,128.13,91.4323 +189040,127.23,89.70863 +189041,128.62,95.0777 +189042,127.69,93.229 +189043,126.79,91.438 +189044,125.92,89.69756 +189045,127.23,95.1162 +189046,126.33,93.2512 +189047,125.46,91.444 +189048,124.62,89.68776 +189049,125.84,95.1532 +189050,124.96,93.2728 +189051,124.13,91.4505 +189052,123.32,89.67924 +189053,124.44,95.1887 +189054,123.6,93.2939 +189055,122.79,91.4574 +189056,122.02,89.67202 +189057,123.05,95.2228 +189058,122.24,93.3145 +189059,121.46,91.4647 +189060,120.71,89.6661 +189061,121.65,95.2553 +189062,120.87,93.3346 +189063,120.13,91.4724 +189064,119.41,89.66149 +189065,120.26,95.2863 +189066,119.51,93.3542 +189067,118.8,91.4805 +189068,118.11,89.65822 +189069,118.86,95.3159 +189070,118.14,93.3732 +189071,117.46,91.4891 +189072,116.81,89.65627 +189073,117.46,95.3439 +189074,116.78,93.3917 +189075,116.13,91.4981 +189076,115.51,89.65567 +189077,116.07,95.3703 +189078,115.42,93.4097 +189079,114.8,91.5075 +189080,114.21,89.65642 +189081,114.67,95.3952 +189082,114.05,93.4271 +189083,113.47,91.5173 +189084,112.91,89.65853 +189085,113.27,95.4186 +189086,112.69,93.444 +189087,112.14,91.5275 +189088,111.61,89.662 +189089,111.87,95.4404 +189090,111.32,93.4604 +189091,110.8,91.5382 +189092,110.32,89.66685 +189093,110.47,95.4607 +189094,109.96,93.4762 +189095,109.47,91.5493 +189096,109.02,89.67307 +189097,109.07,95.4794 +189098,108.59,93.4915 +189099,108.14,91.5609 +189100,107.72,89.68067 +189101,107.67,95.4965 +189102,107.22,93.5062 +189103,106.81,91.5729 +189104,106.42,89.68966 +189105,106.27,95.5121 +189106,105.86,93.5204 +189107,105.48,91.5853 +189108,105.12,89.70004 +189109,104.87,95.5261 +189110,104.49,93.5341 +189111,104.15,91.5982 +189112,103.83,89.7118 +189113,103.47,95.5386 +189114,103.13,93.5472 +189115,102.82,91.6115 +189116,102.53,89.72496 +189117,102.07,95.5494 +189118,101.76,93.5597 +189119,101.48,91.6252 +189120,101.23,89.73951 +189121,100.66,95.5587 +189122,100.39,93.5717 +189123,100.15,91.6394 +189124,99.938,89.75546 +189125,99.263,95.5665 +189126,99.029,93.5832 +189127,98.823,91.654 +189128,98.641,89.7728 +189129,97.861,95.5726 +189130,97.662,93.5941 +189131,97.491,91.6691 +189132,97.345,89.79153 +189133,96.459,95.5773 +189134,96.296,93.6045 +189135,96.16,91.6846 +189136,96.048,89.81165 +189137,95.057,95.5803 +189138,94.93,93.6143 +189139,94.829,91.7005 +189140,94.752,89.83316 +189141,93.655,95.5818 +189142,93.563,93.6236 +189143,93.498,91.7169 +189144,93.456,89.85606 +189145,92.252,95.5818 +189146,92.197,93.6323 +189147,92.167,91.7337 +189148,92.159,89.88034 +189149,90.85,95.5802 +189150,90.83,93.6405 +189151,90.836,91.7509 +189152,90.863,89.905989 +189153,89.448,95.5772 +189154,89.464,93.6482 +189155,89.504,91.7685 +189156,89.567,89.933015 +189157,88.046,95.5725 +189158,88.097,93.6554 +189159,88.173,91.7866 +189160,88.27,89.961406 +189161,86.643,95.5664 +189162,86.731,93.662 +189163,86.842,91.8051 +189164,86.973,89.9911564 +189165,85.241,95.5588 +189166,85.365,93.6681 +189167,85.51,91.824 +189168,85.676,90.022259 +189169,83.839,95.5497 +189170,83.998,93.6736 +189171,84.179,91.8434 +189172,84.379,90.054704 +189173,82.438,95.5391 +189174,82.632,93.6787 +189175,82.847,91.8631 +189176,83.082,90.088485 +189177,81.036,95.5271 +189178,81.265,93.6832 +189179,81.515,91.8833 +189180,81.784,90.12359 +189181,79.635,95.5136 +189182,79.899,93.6872 +189183,80.184,91.9039 +189184,80.486,90.16001 +189185,78.234,95.4987 +189186,78.533,93.6907 +189187,78.852,91.9249 +189188,79.188,90.19774 +189189,76.833,95.4823 +189190,77.167,93.6937 +189191,77.52,91.9462 +189192,77.889,90.23676 +189193,75.432,95.4645 +189194,75.801,93.6961 +189195,76.187,91.968 +189196,76.591,90.27707 +189197,74.032,95.4454 +189198,74.435,93.6981 +189199,74.855,91.9902 +189200,75.291,90.31864 +189201,72.632,95.4249 +189202,73.069,93.6996 +189203,73.522,92.0127 +189204,73.992,90.36146 +189205,71.233,95.403 +189206,71.703,93.7007 +189207,72.19,92.0357 +189208,72.692,90.40553 +189209,69.834,95.3798 +189210,70.337,93.7012 +189211,70.857,92.059 +189212,71.391,90.45082 +189213,68.435,95.3553 +189214,68.972,93.7013 +189215,69.524,92.0827 +189216,70.09,90.49733 +189217,67.037,95.3294 +189218,67.607,93.7008 +189219,68.191,92.1067 +189220,68.788,90.54503 +189221,65.64,95.3023 +189222,66.241,93.7 +189223,66.857,92.1311 +189224,67.486,90.59391 +189225,64.243,95.2739 +189226,64.876,93.6986 +189227,65.524,92.1559 +189228,66.183,90.64395 +189229,62.846,95.2443 +189230,63.511,93.6969 +189231,64.19,92.1809 +189232,64.88,90.69513 +189233,61.451,95.2135 +189234,62.147,93.6947 +189235,62.856,92.2064 +189236,63.576,90.74744 +189237,60.055,95.1815 +189238,60.782,93.692 +189239,61.521,92.2322 +189240,62.272,90.80085 +189241,58.661,95.1483 +189242,59.418,93.6889 +189243,60.187,92.2582 +189244,60.967,90.85535 +189245,57.267,95.114 +189246,58.054,93.6854 +189247,58.852,92.2847 +189248,59.661,90.91092 +189249,55.873,95.0786 +189250,56.69,93.6815 +189251,57.517,92.3114 +189252,58.354,90.96753 +189253,54.481,95.042 +189254,55.326,93.6772 +189255,56.182,92.3384 +189256,57.047,91.0252 +189257,53.089,95.0044 +189258,53.962,93.6725 +189259,54.846,92.3657 +189260,55.739,91.0838 +189261,51.698,94.9657 +189262,52.599,93.6674 +189263,53.51,92.3933 +189264,54.43,91.1434 +189265,50.307,94.9261 +189266,51.236,93.6619 +189267,52.174,92.4212 +189268,53.121,91.204 +189269,48.918,94.8854 +189270,49.873,93.656 +189271,50.838,92.4494 +189272,51.81,91.2655 +189273,47.529,94.8438 +189274,48.511,93.6498 +189275,49.501,92.4778 +189276,50.499,91.3279 +189277,46.141,94.8012 +189278,47.148,93.6432 +189279,48.164,92.5065 +189280,49.187,91.3912 +189281,44.754,94.7577 +189282,45.786,93.6363 +189283,46.826,92.5354 +189284,47.874,91.4554 +189285,43.368,94.7133 +189286,44.424,93.629 +189287,45.489,92.5646 +189288,46.56,91.5203 +189289,41.983,94.6681 +189290,43.063,93.6214 +189291,44.151,92.594 +189292,45.245,91.5861 +189293,40.599,94.6221 +189294,41.702,93.6135 +189295,42.812,92.6236 +189296,43.93,91.6527 +189297,39.215,94.5752 +189298,40.341,93.6053 +189299,41.474,92.6534 +189300,42.613,91.72 +189301,37.833,94.5277 +189302,38.98,93.5968 +189303,40.135,92.6834 +189304,41.296,91.7881 +189305,36.451,94.4793 +189306,37.62,93.5879 +189307,38.796,92.7136 +189308,39.977,91.8568 +189309,35.071,94.4303 +189310,36.26,93.5789 +189311,37.456,92.744 +189312,38.658,91.9262 +189313,33.691,94.3806 +189314,34.9,93.5695 +189315,36.116,92.7745 +189316,37.337,91.9963 +189317,32.313,94.3302 +189318,33.541,93.5599 +189319,34.775,92.8052 +189320,36.016,92.067 +189321,30.935,94.2793 +189322,32.182,93.55 +189323,33.435,92.8361 +189324,34.693,92.1382 +189325,29.559,94.2277 +189326,30.823,93.5399 +189327,32.093,92.8671 +189328,33.369,92.21 +189329,28.183,94.1756 +189330,29.464,93.5295 +189331,30.752,92.8982 +189332,32.045,92.2824 +189333,26.809,94.123 +189334,28.106,93.519 +189335,29.41,92.9295 +189336,30.719,92.3552 +189337,25.436,94.0699 +189338,26.749,93.5082 +189339,28.068,92.9608 +189340,29.392,92.4284 +189341,24.064,94.0164 +189342,25.391,93.4973 +189343,26.725,92.9923 +189344,28.064,92.5021 +189345,22.693,93.9624 +189346,24.034,93.4861 +189347,25.382,93.0238 +189348,26.735,92.5762 +189349,21.323,93.9081 +189350,22.677,93.4748 +189351,24.039,93.0554 +189352,25.405,92.6507 +189353,19.954,93.8534 +189354,21.321,93.4633 +189355,22.695,93.0871 +189356,24.074,92.7255 +189357,18.587,93.7984 +189358,19.965,93.4516 +189359,21.351,93.1188 +189360,22.741,92.8006 +189361,17.22,93.743 +189362,18.609,93.4399 +189363,20.006,93.1506 +189364,21.408,92.876 +189365,15.855,93.6875 +189366,17.254,93.4279 +189367,18.661,93.1824 +189368,20.073,92.9516 +189369,14.491,93.6317 +189370,15.899,93.4159 +189371,17.315,93.2142 +189372,18.737,93.0274 +189373,13.127,93.5757 +189374,14.545,93.4037 +189375,15.969,93.2461 +189376,17.4,93.1033 +189377,11.766,93.5195 +189378,13.191,93.3915 +189379,14.623,93.2779 +189380,16.062,93.1794 +189381,10.405,93.4633 +189382,11.837,93.3791 +189383,13.276,93.3097 +189384,14.722,93.2556 +189385,9.0454,93.4069 +189386,10.483,93.3667 +189387,11.929,93.3415 +189388,13.382,93.3319 +189389,7.6871,93.3505 +189390,9.1304,93.3542 +189391,10.582,93.3733 +189392,12.04,93.4082 +189393,6.33,93.2941 +189394,7.7778,93.3417 +189395,9.2338,93.405 +189396,10.697,93.4845 +189397,4.974,93.2376 +189398,6.4255,93.3291 +189399,7.8854,93.4367 +189400,9.3523,93.5608 +189401,3.6192,93.1812 +189402,5.0736,93.3165 +189403,6.5366,93.4682 +189404,8.0069,93.637 +189405,2.2656,93.1249 +189406,3.7221,93.3038 +189407,5.1874,93.4997 +189408,6.6602,93.7131 +189409,0.91325,93.0687 +189410,2.371,93.2912 +189411,3.8378,93.5312 +189412,5.3123,93.7891 +189413,359.56,93.0126 +189414,1.0203,93.2785 +189415,2.4877,93.5625 +189416,3.9632,93.8649 +189417,358.21,92.9567 +189418,359.67,93.2659 +189419,1.1372,93.5936 +189420,2.6128,93.9404 +189421,356.86,92.9009 +189422,358.32,93.2533 +189423,359.79,93.6247 +189424,1.2613,94.0158 +189425,355.52,92.8455 +189426,356.97,93.2407 +189427,358.43,93.6556 +189428,359.91,94.0909 +189429,354.17,92.7902 +189430,355.62,93.2282 +189431,357.08,93.6864 +189432,358.55,94.1656 +189433,352.82,92.7353 +189434,354.27,93.2157 +189435,355.73,93.717 +189436,357.2,94.24 +189437,351.48,92.6807 +189438,352.92,93.2033 +189439,354.38,93.7475 +189440,355.84,94.3141 +189441,350.14,92.6265 +189442,351.58,93.1909 +189443,353.03,93.7777 +189444,354.49,94.3877 +189445,348.8,92.5727 +189446,350.23,93.1787 +189447,351.67,93.8078 +189448,353.13,94.4609 +189449,347.45,92.5193 +189450,348.88,93.1665 +189451,350.32,93.8376 +189452,351.77,94.5336 +189453,346.11,92.4663 +189454,347.53,93.1545 +189455,348.96,93.8673 +189456,350.41,94.6057 +189457,344.78,92.4138 +189458,346.19,93.1425 +189459,347.61,93.8967 +189460,349.04,94.6774 +189461,343.44,92.3618 +189462,344.84,93.1307 +189463,346.25,93.9259 +189464,347.68,94.7484 +189465,342.1,92.3104 +189466,343.49,93.1191 +189467,344.9,93.9548 +189468,346.31,94.8189 +189469,340.77,92.2595 +189470,342.15,93.1076 +189471,343.54,93.9834 +189472,344.95,94.8887 +189473,339.43,92.2093 +189474,340.8,93.0962 +189475,342.19,94.0118 +189476,343.58,94.9578 +189477,338.1,92.1597 +189478,339.46,93.085 +189479,340.83,94.04 +189480,342.21,95.0262 +189481,336.77,92.1107 +189482,338.12,93.074 +189483,339.47,94.0678 +189484,340.84,95.0938 +189485,335.44,92.0624 +189486,336.77,93.0632 +189487,338.12,94.0953 +189488,339.47,95.1607 +189489,334.11,92.0148 +189490,335.43,93.0526 +189491,336.76,94.1225 +189492,338.1,95.2268 +189493,332.78,91.968 +189494,334.08,93.0422 +189495,335.4,94.1494 +189496,336.73,95.292 +189497,331.45,91.9219 +189498,332.74,93.032 +189499,334.04,94.176 +189500,335.36,95.3564 +189501,330.13,91.8767 +189502,331.4,93.022 +189503,332.68,94.2022 +189504,333.98,95.4198 +189505,328.8,91.8322 +189506,330.06,93.0123 +189507,331.32,94.2281 +189508,332.6,95.4824 +189509,327.48,91.7886 +189510,328.71,93.0028 +189511,329.96,94.2536 +189512,331.23,95.544 +189513,326.16,91.7459 +189514,327.37,92.9935 +189515,328.6,94.2787 +189516,329.85,95.6045 +189517,324.83,91.704 +189518,326.03,92.9845 +189519,327.24,94.3035 +189520,328.47,95.6641 +189521,323.51,91.6631 +189522,324.69,92.9758 +189523,325.88,94.3278 +189524,327.09,95.7226 +189525,322.19,91.6231 +189526,323.35,92.9674 +189527,324.52,94.3518 +189528,325.71,95.7801 +189529,320.87,91.5841 +189530,322.01,92.9593 +189531,323.16,94.3754 +189532,324.33,95.8364 +189533,319.55,91.5461 +189534,320.67,92.9514 +189535,321.8,94.3986 +189536,322.94,95.8916 +189537,318.23,91.509 +189538,319.33,92.9438 +189539,320.44,94.4213 +189540,321.56,95.9457 +189541,316.92,91.4731 +189542,317.99,92.9366 +189543,319.07,94.4436 +189544,320.17,95.9986 +189545,315.6,91.4381 +189546,316.65,92.9297 +189547,317.71,94.4655 +189548,318.79,96.0503 +189549,314.29,91.4043 +189550,315.31,92.9231 +189551,316.35,94.4869 +189552,317.4,96.1007 +189553,312.97,91.3715 +189554,313.97,92.9168 +189555,314.98,94.5079 +189556,316.01,96.1499 +189557,311.66,91.3399 +189558,312.63,92.9109 +189559,313.62,94.5284 +189560,314.63,96.1978 +189561,310.35,91.3093 +189562,311.29,92.9053 +189563,312.26,94.5485 +189564,313.24,96.2445 +189565,309.03,91.28 +189566,309.96,92.9 +189567,310.89,94.5681 +189568,311.85,96.2898 +189569,307.72,91.2518 +189570,308.62,92.8951 +189571,309.53,94.5872 +189572,310.46,96.3337 +189573,306.41,91.2248 +189574,307.28,92.8906 +189575,308.16,94.6058 +189576,309.06,96.3763 +189577,305.1,91.199 +189578,305.94,92.8864 +189579,306.8,94.6239 +189580,307.67,96.4175 +189581,303.79,91.1744 +189582,304.6,92.8827 +189583,305.43,94.6415 +189584,306.28,96.4573 +189585,302.48,91.151 +189586,303.27,92.8793 +189587,304.07,94.6586 +189588,304.88,96.4957 +189589,301.17,91.1289 +189590,301.93,92.8762 +189591,302.7,94.6752 +189592,303.49,96.5327 +189593,299.87,91.1081 +189594,300.59,92.8736 +189595,301.34,94.6913 +189596,302.1,96.5681 +189597,298.56,91.0885 +189598,299.26,92.8714 +189599,299.97,94.7069 +189600,300.7,96.6022 +189601,297.25,91.0702 +189602,297.92,92.8695 +189603,298.6,94.7219 +189604,299.3,96.6347 +189605,295.95,91.0533 +189606,296.58,92.8681 +189607,297.24,94.7364 +189608,297.91,96.6657 +189609,294.64,91.0376 +189610,295.25,92.867 +189611,295.87,94.7504 +189612,296.51,96.6952 +189613,293.34,91.0233 +189614,293.91,92.8664 +189615,294.5,94.7639 +189616,295.11,96.7232 +189617,292.03,91.0103 +189618,292.58,92.8662 +189619,293.14,94.7768 +189620,293.71,96.7497 +189621,290.73,90.99864 +189622,291.24,92.8664 +189623,291.77,94.7891 +189624,292.31,96.7746 +189625,289.42,90.98834 +189626,289.91,92.867 +189627,290.4,94.8009 +189628,290.91,96.7979 +189629,288.12,90.9794 +189630,288.57,92.8681 +189631,289.03,94.8122 +189632,289.51,96.8197 +189633,286.82,90.97184 +189634,287.24,92.8695 +189635,287.67,94.8229 +189636,288.11,96.8398 +189637,285.52,90.96565 +189638,285.9,92.8714 +189639,286.3,94.833 +189640,286.71,96.8584 +189641,284.21,90.96084 +189642,284.57,92.8738 +189643,284.93,94.8426 +189644,285.31,96.8754 +189645,282.91,90.95743 +189646,283.23,92.8765 +189647,283.56,94.8516 +189648,283.91,96.8908 +189649,281.61,90.9554 +189650,281.9,92.8797 +189651,282.19,94.8601 +189652,282.51,96.9046 +189653,280.31,90.95478 +189654,280.56,92.8834 +189655,280.83,94.868 +189656,281.11,96.9167 +189657,279,90.95555 +189658,279.23,92.8874 +189659,279.46,94.8753 +189660,279.7,96.9273 +189661,277.7,90.95773 +189662,277.89,92.8919 +189663,278.09,94.8821 +189664,278.3,96.9362 +189665,276.4,90.96131 +189666,276.56,92.8969 +189667,276.72,94.8883 +189668,276.9,96.9435 +189669,275.1,90.96631 +189670,275.22,92.9022 +189671,275.35,94.8939 +189672,275.5,96.9492 +189673,273.8,90.97271 +189674,273.89,92.9081 +189675,273.98,94.8989 +189676,274.1,96.9533 +189677,272.5,90.98051 +189678,272.55,92.9143 +189679,272.62,94.9034 +189680,272.69,96.9557 +189681,271.2,90.98973 +189682,271.22,92.921 +189683,271.25,94.9073 +189684,271.29,96.9566 +189685,269.9,91.0004 +189686,269.88,92.9281 +189687,269.88,94.9107 +189688,269.89,96.9558 +189689,268.59,91.0124 +189690,268.55,92.9357 +189691,268.51,94.9135 +189692,268.48,96.9533 +189693,267.29,91.0258 +189694,267.21,92.9437 +189695,267.14,94.9157 +189696,267.08,96.9493 +189697,265.99,91.0406 +189698,265.88,92.9521 +189699,265.77,94.9173 +189700,265.68,96.9437 +189701,264.69,91.0568 +189702,264.54,92.961 +189703,264.4,94.9184 +189704,264.28,96.9365 +189705,263.39,91.0744 +189706,263.21,92.9703 +189707,263.04,94.919 +189708,262.87,96.9277 +189709,262.09,91.0934 +189710,261.87,92.98 +189711,261.67,94.9189 +189712,261.47,96.9173 +189713,260.78,91.1138 +189714,260.54,92.9901 +189715,260.3,94.9183 +189716,260.07,96.9053 +189717,259.48,91.1355 +189718,259.2,93.0007 +189719,258.93,94.9172 +189720,258.67,96.8917 +189721,258.18,91.1586 +189722,257.87,93.0117 +189723,257.56,94.9155 +189724,257.27,96.8766 +189725,256.88,91.1831 +189726,256.53,93.0231 +189727,256.19,94.9133 +189728,255.86,96.86 +189729,255.57,91.2089 +189730,255.2,93.0349 +189731,254.83,94.9105 +189732,254.46,96.8418 +189733,254.27,91.236 +189734,253.86,93.0471 +189735,253.46,94.9072 +189736,253.06,96.8221 +189737,252.97,91.2645 +189738,252.53,93.0598 +189739,252.09,94.9033 +189740,251.66,96.8009 +189741,251.66,91.2942 +189742,251.19,93.0728 +189743,250.72,94.899 +189744,250.26,96.7782 +189745,250.36,91.3253 +189746,249.85,93.0862 +189747,249.36,94.894 +189748,248.86,96.754 +189749,249.05,91.3576 +189750,248.52,93.1001 +189751,247.99,94.8886 +189752,247.46,96.7284 +189753,247.75,91.3913 +189754,247.18,93.1143 +189755,246.62,94.8827 +189756,246.06,96.7013 +189757,246.44,91.4262 +189758,245.85,93.1289 +189759,245.25,94.8762 +189760,244.67,96.6728 +189761,245.14,91.4623 +189762,244.51,93.1439 +189763,243.89,94.8692 +189764,243.27,96.6429 +189765,243.83,91.4997 +189766,243.17,93.1592 +189767,242.52,94.8618 +189768,241.87,96.6116 +189769,242.52,91.5383 +189770,241.83,93.175 +189771,241.15,94.8538 +189772,240.47,96.5789 +189773,241.21,91.5781 +189774,240.5,93.1911 +189775,239.79,94.8454 +189776,239.08,96.5448 +189777,239.9,91.619 +189778,239.16,93.2075 +189779,238.42,94.8364 +189780,237.68,96.5095 +189781,238.59,91.6612 +189782,237.82,93.2243 +189783,237.05,94.827 +189784,236.29,96.4728 +189785,237.28,91.7045 +189786,236.48,93.2414 +189787,235.69,94.8172 +189788,234.89,96.4348 +189789,235.97,91.7489 +189790,235.15,93.2589 +189791,234.32,94.8068 +189792,233.5,96.3956 +189793,234.66,91.7944 +189794,233.81,93.2767 +189795,232.96,94.796 +189796,232.11,96.3551 +189797,233.35,91.8411 +189798,232.47,93.2949 +189799,231.59,94.7848 +189800,230.71,96.3134 +189801,232.04,91.8888 +189802,231.13,93.3133 +189803,230.23,94.7731 +189804,229.32,96.2705 +189805,230.72,91.9375 +189806,229.79,93.3321 +189807,228.86,94.761 +189808,227.93,96.2265 +189809,229.41,91.9873 +189810,228.45,93.3511 +189811,227.5,94.7485 +189812,226.54,96.1813 +189813,228.09,92.038 +189814,227.11,93.3705 +189815,226.13,94.7355 +189816,225.15,96.135 +189817,226.78,92.0898 +189818,225.77,93.3901 +189819,224.77,94.7221 +189820,223.77,96.0876 +189821,225.46,92.1425 +189822,224.43,93.41 +189823,223.4,94.7084 +189824,222.38,96.0391 +189825,224.14,92.1962 +189826,223.09,93.4302 +189827,222.04,94.6942 +189828,220.99,95.9896 +189829,222.82,92.2507 +189830,221.75,93.4507 +189831,220.68,94.6797 +189832,219.61,95.9391 +189833,221.5,92.3062 +189834,220.41,93.4714 +189835,219.32,94.6648 +189836,218.22,95.8876 +189837,220.18,92.3625 +189838,219.07,93.4923 +189839,217.95,94.6496 +189840,216.84,95.8352 +189841,218.86,92.4196 +189842,217.73,93.5135 +189843,216.59,94.6339 +189844,215.45,95.7818 +189845,217.54,92.4776 +189846,216.38,93.5349 +189847,215.23,94.618 +189848,214.07,95.7275 +189849,216.22,92.5363 +189850,215.04,93.5565 +189851,213.87,94.6017 +189852,212.69,95.6724 +189853,214.89,92.5958 +189854,213.7,93.5783 +189855,212.51,94.5851 +189856,211.31,95.6165 +189857,213.57,92.6561 +189858,212.36,93.6004 +189859,211.15,94.5681 +189860,209.93,95.5598 +189861,212.24,92.717 +189862,211.01,93.6226 +189863,209.78,94.5509 +189864,208.56,95.5023 +189865,210.91,92.7786 +189866,209.67,93.645 +189867,208.42,94.5334 +189868,207.18,95.444 +189869,209.59,92.8408 +189870,208.33,93.6675 +189871,207.06,94.5155 +189872,205.8,95.3851 +189873,208.26,92.9037 +189874,206.98,93.6902 +189875,205.7,94.4974 +189876,204.43,95.3254 +189877,206.93,92.9672 +189878,205.64,93.7131 +189879,204.35,94.4791 +189880,203.05,95.2652 +189881,205.59,93.0312 +189882,204.29,93.7361 +189883,202.99,94.4605 +189884,201.68,95.2043 +189885,204.26,93.0957 +189886,202.95,93.7592 +189887,201.63,94.4416 +189888,200.31,95.1429 +189889,202.93,93.1607 +189890,201.6,93.7824 +189891,200.27,94.4225 +189892,198.94,95.0809 +189893,201.59,93.2262 +189894,200.25,93.8058 +189895,198.91,94.4032 +189896,197.57,95.0184 +189897,200.26,93.2921 +189898,198.91,93.8292 +189899,197.55,94.3837 +189900,196.2,94.9554 +189901,198.92,93.3584 +189902,197.56,93.8527 +189903,196.2,94.364 +189904,194.84,94.892 +189905,197.58,93.4251 +189906,196.21,93.8763 +189907,194.84,94.3441 +189908,193.47,94.8282 +189909,196.24,93.4921 +189910,194.86,93.9 +189911,193.48,94.324 +189912,192.11,94.764 +189913,194.9,93.5595 +189914,193.52,93.9237 +189915,192.13,94.3038 +189916,190.74,94.6995 +189917,193.56,93.6271 +189918,192.17,93.9475 +189919,190.77,94.2834 +189920,189.38,94.6346 +189921,192.22,93.6949 +189922,190.82,93.9712 +189923,189.42,94.2628 +189924,188.02,94.5695 +189925,190.87,93.7629 +189926,189.47,93.995 +189927,188.06,94.2422 +189928,186.66,94.5042 +189929,189.53,93.8312 +189930,188.12,94.0188 +189931,186.71,94.2214 +189932,185.3,94.4386 +189933,188.18,93.8995 +189934,186.77,94.0426 +189935,185.35,94.2005 +189936,183.94,94.3729 +189937,186.84,93.968 +189938,185.42,94.0664 +189939,184,94.1795 +189940,182.59,94.307 +189941,185.49,94.0366 +189942,184.07,94.0902 +189943,182.65,94.1584 +189944,181.23,94.2411 +189945,184.14,94.1051 +189946,182.72,94.1139 +189947,181.3,94.1372 +189948,179.88,94.175 +189949,182.79,94.1737 +189950,181.36,94.1376 +189951,179.94,94.116 +189952,178.52,94.1089 +189953,181.43,94.2423 +189954,180.01,94.1612 +189955,178.59,94.0947 +189956,177.17,94.0429 +189957,180.08,94.3108 +189958,178.66,94.1847 +189959,177.24,94.0734 +189960,175.82,93.9768 +189961,178.73,94.3792 +189962,177.31,94.2082 +189963,175.89,94.052 +189964,174.47,93.9108 +189965,177.37,94.4475 +189966,175.95,94.2315 +189967,174.54,94.0307 +189968,173.12,93.845 +189969,176.01,94.5156 +189970,174.6,94.2548 +189971,173.19,94.0093 +189972,171.78,93.7792 +189973,174.66,94.5835 +189974,173.25,94.2779 +189975,171.84,93.9879 +189976,170.43,93.7136 +189977,173.3,94.6512 +189978,171.89,94.3009 +189979,170.49,93.9666 +189980,169.08,93.6482 +189981,171.94,94.7186 +189982,170.54,94.3238 +189983,169.14,93.9452 +189984,167.74,93.5831 +189985,170.58,94.7858 +189986,169.18,94.3465 +189987,167.79,93.9239 +189988,166.4,93.5182 +189989,169.21,94.8525 +189990,167.83,94.369 +189991,166.44,93.9027 +189992,165.06,93.4536 +189993,167.85,94.919 +189994,166.47,94.3914 +189995,165.09,93.8815 +189996,163.72,93.3893 +189997,166.48,94.985 +189998,165.11,94.4136 +189999,163.74,93.8604 +190000,162.38,93.3254 +190001,165.12,95.0506 +190002,163.76,94.4355 +190003,162.4,93.8393 +190004,161.04,93.2619 +190005,163.75,95.1157 +190006,162.4,94.4573 +190007,161.05,93.8184 +190008,159.7,93.1988 +190009,162.38,95.1803 +190010,161.04,94.4789 +190011,159.7,93.7976 +190012,158.37,93.1362 +190013,161.01,95.2443 +190014,159.68,94.5002 +190015,158.36,93.7768 +190016,157.03,93.074 +190017,159.64,95.3078 +190018,158.33,94.5213 +190019,157.01,93.7562 +190020,155.7,93.0124 +190021,158.27,95.3707 +190022,156.97,94.5421 +190023,155.67,93.7357 +190024,154.37,92.9513 +190025,156.9,95.433 +190026,155.61,94.5627 +190027,154.32,93.7154 +190028,153.04,92.8908 +190029,155.52,95.4946 +190030,154.25,94.583 +190031,152.98,93.6953 +190032,151.71,92.8308 +190033,154.15,95.5555 +190034,152.89,94.603 +190035,151.63,93.6752 +190036,150.38,92.7716 +190037,152.77,95.6156 +190038,151.53,94.6228 +190039,150.29,93.6554 +190040,149.05,92.713 +190041,151.4,95.675 +190042,150.17,94.6422 +190043,148.94,93.6358 +190044,147.72,92.655 +190045,150.02,95.7336 +190046,148.81,94.6613 +190047,147.6,93.6163 +190048,146.39,92.5978 +190049,148.64,95.7914 +190050,147.45,94.6801 +190051,146.26,93.5971 +190052,145.07,92.5414 +190053,147.26,95.8483 +190054,146.08,94.6985 +190055,144.91,93.578 +190056,143.75,92.4857 +190057,145.88,95.9043 +190058,144.72,94.7166 +190059,143.57,93.5592 +190060,142.42,92.4308 +190061,144.5,95.9595 +190062,143.36,94.7344 +190063,142.23,93.5406 +190064,141.1,92.3768 +190065,143.11,96.0136 +190066,142,94.7518 +190067,140.89,93.5223 +190068,139.78,92.3235 +190069,141.73,96.0668 +190070,140.64,94.7688 +190071,139.55,93.5042 +190072,138.46,92.2712 +190073,140.34,96.119 +190074,139.27,94.7855 +190075,138.2,93.4864 +190076,137.14,92.2198 +190077,138.96,96.1701 +190078,137.91,94.8017 +190079,136.86,93.4688 +190080,135.82,92.1693 +190081,137.57,96.2202 +190082,136.55,94.8176 +190083,135.52,93.4515 +190084,134.5,92.1198 +190085,136.18,96.2692 +190086,135.18,94.833 +190087,134.18,93.4345 +190088,133.18,92.0712 +190089,134.8,96.3171 +190090,133.82,94.8481 +190091,132.84,93.4178 +190092,131.87,92.0236 +190093,133.41,96.3638 +190094,132.45,94.8627 +190095,131.5,93.4014 +190096,130.55,91.9771 +190097,132.02,96.4094 +190098,131.09,94.8769 +190099,130.16,93.3853 +190100,129.24,91.9316 +190101,130.63,96.4537 +190102,129.72,94.8906 +190103,128.82,93.3695 +190104,127.93,91.8871 +190105,129.23,96.4969 +190106,128.36,94.9039 +190107,127.48,93.354 +190108,126.61,91.8438 +190109,127.84,96.5388 +190110,126.99,94.9167 +190111,126.15,93.3388 +190112,125.3,91.8015 +190113,126.45,96.5794 +190114,125.63,94.9291 +190115,124.81,93.324 +190116,123.99,91.7604 +190117,125.06,96.6188 +190118,124.26,94.941 +190119,123.47,93.3096 +190120,122.68,91.7204 +190121,123.66,96.6568 +190122,122.9,94.9524 +190123,122.13,93.2954 +190124,121.37,91.6816 +190125,122.27,96.6935 +190126,121.53,94.9634 +190127,120.79,93.2817 +190128,120.06,91.6439 +190129,120.87,96.7289 +190130,120.16,94.9738 +190131,119.46,93.2683 +190132,118.75,91.6075 +190133,119.47,96.7628 +190134,118.8,94.9838 +190135,118.12,93.2552 +190136,117.44,91.5722 +190137,118.08,96.7954 +190138,117.43,94.9933 +190139,116.78,93.2426 +190140,116.13,91.5382 +190141,116.68,96.8266 +190142,116.06,95.0022 +190143,115.44,93.2303 +190144,114.83,91.5054 +190145,115.28,96.8563 +190146,114.69,95.0107 +190147,114.11,93.2184 +190148,113.52,91.4739 +190149,113.88,96.8846 +190150,113.33,95.0186 +190151,112.77,93.2069 +190152,112.21,91.4437 +190153,112.48,96.9114 +190154,111.96,95.026 +190155,111.43,93.1957 +190156,110.91,91.4147 +190157,111.09,96.9368 +190158,110.59,95.0329 +190159,110.1,93.185 +190160,109.6,91.387 +190161,109.69,96.9606 +190162,109.22,95.0392 +190163,108.76,93.1747 +190164,108.3,91.3607 +190165,108.29,96.9829 +190166,107.86,95.045 +190167,107.42,93.1648 +190168,106.99,91.3357 +190169,106.88,97.0037 +190170,106.49,95.0503 +190171,106.09,93.1553 +190172,105.69,91.312 +190173,105.48,97.023 +190174,105.12,95.055 +190175,104.75,93.1462 +190176,104.38,91.2896 +190177,104.08,97.0407 +190178,103.75,95.0592 +190179,103.42,93.1375 +190180,103.08,91.2686 +190181,102.68,97.0568 +190182,102.38,95.0628 +190183,102.08,93.1292 +190184,101.78,91.2489 +190185,101.28,97.0714 +190186,101.01,95.0659 +190187,100.75,93.1214 +190188,100.47,91.2307 +190189,99.877,97.0844 +190190,99.646,95.0684 +190191,99.411,93.114 +190192,99.171,91.2138 +190193,98.475,97.0958 +190194,98.277,95.0703 +190195,98.075,93.107 +190196,97.869,91.1982 +190197,97.073,97.1056 +190198,96.909,95.0717 +190199,96.74,93.1004 +190200,96.567,91.1841 +190201,95.67,97.1138 +190202,95.54,95.0725 +190203,95.405,93.0943 +190204,95.264,91.1714 +190205,94.268,97.1204 +190206,94.171,95.0728 +190207,94.069,93.0886 +190208,93.962,91.16 +190209,92.865,97.1254 +190210,92.803,95.0725 +190211,92.734,93.0834 +190212,92.66,91.1501 +190213,91.462,97.1288 +190214,91.434,95.0716 +190215,91.399,93.0785 +190216,91.359,91.1415 +190217,90.06,97.1305 +190218,90.065,95.0701 +190219,90.064,93.0741 +190220,90.057,91.1344 +190221,88.657,97.1306 +190222,88.696,95.0681 +190223,88.729,93.0702 +190224,88.755,91.1287 +190225,87.254,97.1291 +190226,87.327,95.0655 +190227,87.393,93.0667 +190228,87.453,91.1244 +190229,85.851,97.1259 +190230,85.959,95.0624 +190231,86.058,93.0636 +190232,86.152,91.1215 +190233,84.449,97.1212 +190234,84.59,95.0586 +190235,84.723,93.061 +190236,84.85,91.12 +190237,83.046,97.1147 +190238,83.221,95.0543 +190239,83.388,93.0588 +190240,83.548,91.1199 +190241,81.644,97.1067 +190242,81.853,95.0494 +190243,82.053,93.057 +190244,82.246,91.1212 +190245,80.241,97.0971 +190246,80.484,95.044 +190247,80.718,93.0557 +190248,80.944,91.124 +190249,78.839,97.0858 +190250,79.116,95.038 +190251,79.382,93.0548 +190252,79.641,91.1281 +190253,77.438,97.0729 +190254,77.747,95.0314 +190255,78.047,93.0544 +190256,78.339,91.1336 +190257,76.036,97.0584 +190258,76.379,95.0242 +190259,76.711,93.0543 +190260,77.036,91.1405 +190261,74.635,97.0423 +190262,75.011,95.0165 +190263,75.376,93.0547 +190264,75.733,91.1489 +190265,73.234,97.0245 +190266,73.642,95.0083 +190267,74.04,93.0556 +190268,74.43,91.1585 +190269,71.833,97.0053 +190270,72.274,94.9994 +190271,72.705,93.0568 +190272,73.126,91.1696 +190273,70.433,96.9844 +190274,70.907,94.99 +190275,71.369,93.0585 +190276,71.822,91.182 +190277,69.033,96.9619 +190278,69.539,94.9801 +190279,70.033,93.0606 +190280,70.518,91.1958 +190281,67.634,96.9379 +190282,68.171,94.9696 +190283,68.697,93.0631 +190284,69.213,91.211 +190285,66.235,96.9124 +190286,66.804,94.9586 +190287,67.361,93.0661 +190288,67.908,91.2275 +190289,64.836,96.8853 +190290,65.436,94.947 +190291,66.025,93.0694 +190292,66.603,91.2453 +190293,63.438,96.8566 +190294,64.069,94.9349 +190295,64.688,93.0732 +190296,65.297,91.2644 +190297,62.041,96.8265 +190298,62.702,94.9222 +190299,63.351,93.0773 +190300,63.99,91.2849 +190301,60.644,96.7949 +190302,61.336,94.9091 +190303,62.015,93.0819 +190304,62.684,91.3066 +190305,59.248,96.7618 +190306,59.969,94.8954 +190307,60.678,93.0869 +190308,61.376,91.3297 +190309,57.852,96.7272 +190310,58.603,94.8811 +190311,59.341,93.0922 +190312,60.068,91.354 +190313,56.457,96.6912 +190314,57.237,94.8664 +190315,58.003,93.0979 +190316,58.76,91.3795 +190317,55.062,96.6538 +190318,55.871,94.8512 +190319,56.666,93.104 +190320,57.451,91.4063 +190321,53.668,96.6149 +190322,54.505,94.8354 +190323,55.328,93.1105 +190324,56.141,91.4344 +190325,52.275,96.5747 +190326,53.139,94.8192 +190327,53.99,93.1174 +190328,54.83,91.4636 +190329,50.883,96.533 +190330,51.774,94.8024 +190331,52.652,93.1246 +190332,53.519,91.4941 +190333,49.491,96.4901 +190334,50.409,94.7852 +190335,51.314,93.1322 +190336,52.208,91.5257 +190337,48.101,96.4458 +190338,49.044,94.7675 +190339,49.975,93.1401 +190340,50.895,91.5585 +190341,46.71,96.4002 +190342,47.68,94.7493 +190343,48.637,93.1484 +190344,49.582,91.5924 +190345,45.321,96.3533 +190346,46.316,94.7307 +190347,47.297,93.157 +190348,48.268,91.6275 +190349,43.933,96.3051 +190350,44.952,94.7116 +190351,45.958,93.1659 +190352,46.953,91.6636 +190353,42.545,96.2557 +190354,43.588,94.6921 +190355,44.619,93.1752 +190356,45.638,91.7009 +190357,41.158,96.2051 +190358,42.225,94.6721 +190359,43.279,93.1848 +190360,44.321,91.7392 +190361,39.773,96.1533 +190362,40.862,94.6517 +190363,41.939,93.1947 +190364,43.004,91.7785 +190365,38.388,96.1004 +190366,39.499,94.6308 +190367,40.598,93.2049 +190368,41.686,91.8189 +190369,37.004,96.0463 +190370,38.137,94.6096 +190371,39.258,93.2154 +190372,40.367,91.8603 +190373,35.621,95.9911 +190374,36.775,94.5879 +190375,37.917,93.2261 +190376,39.048,91.9026 +190377,34.238,95.9348 +190378,35.413,94.5658 +190379,36.575,93.2372 +190380,37.727,91.9459 +190381,32.857,95.8774 +190382,34.052,94.5434 +190383,35.234,93.2485 +190384,36.405,91.9902 +190385,31.477,95.8191 +190386,32.691,94.5205 +190387,33.892,93.2601 +190388,35.083,92.0353 +190389,30.098,95.7597 +190390,31.33,94.4973 +190391,32.55,93.272 +190392,33.759,92.0813 +190393,28.72,95.6993 +190394,29.969,94.4737 +190395,31.207,93.2841 +190396,32.435,92.1282 +190397,27.343,95.6381 +190398,28.609,94.4498 +190399,29.865,93.2964 +190400,31.109,92.1759 +190401,25.967,95.5759 +190402,27.25,94.4255 +190403,28.521,93.309 +190404,29.783,92.2244 +190405,24.592,95.5128 +190406,25.89,94.4009 +190407,27.178,93.3218 +190408,28.455,92.2737 +190409,23.218,95.4489 +190410,24.531,94.3759 +190411,25.834,93.3348 +190412,27.127,92.3238 +190413,21.845,95.3842 +190414,23.173,94.3506 +190415,24.49,93.348 +190416,25.797,92.3746 +190417,20.474,95.3186 +190418,21.815,94.3251 +190419,23.146,93.3613 +190420,24.466,92.426 +190421,19.103,95.2524 +190422,20.457,94.2992 +190423,21.801,93.3749 +190424,23.135,92.4782 +190425,17.734,95.1854 +190426,19.099,94.273 +190427,20.456,93.3886 +190428,21.802,92.531 +190429,16.365,95.1177 +190430,17.742,94.2466 +190431,19.11,93.4025 +190432,20.468,92.5844 +190433,14.998,95.0494 +190434,16.386,94.2199 +190435,17.764,93.4166 +190436,19.133,92.6383 +190437,13.632,94.9804 +190438,15.029,94.193 +190439,16.418,93.4308 +190440,17.797,92.6929 +190441,12.267,94.9109 +190442,13.673,94.1658 +190443,15.071,93.4451 +190444,16.46,92.7479 +190445,10.904,94.8407 +190446,12.318,94.1384 +190447,13.724,93.4595 +190448,15.122,92.8035 +190449,9.5411,94.7701 +190450,10.963,94.1107 +190451,12.377,93.4741 +190452,13.782,92.8595 +190453,8.1797,94.699 +190454,9.6082,94.0828 +190455,11.029,93.4887 +190456,12.441,92.916 +190457,6.8196,94.6274 +190458,8.254,94.0548 +190459,9.681,93.5034 +190460,11.1,92.9728 +190461,5.4606,94.5554 +190462,6.9001,94.0265 +190463,8.3325,93.5183 +190464,9.7567,93.03 +190465,4.1028,94.483 +190466,5.5467,93.9981 +190467,6.9836,93.5331 +190468,8.4126,93.0876 +190469,2.7462,94.4103 +190470,4.1936,93.9695 +190471,5.6344,93.5481 +190472,7.0674,93.1455 +190473,1.3908,94.3372 +190474,2.841,93.9408 +190475,4.2848,93.5631 +190476,5.721,93.2036 +190477,0.036659,94.2639 +190478,1.4888,93.9119 +190479,2.9348,93.5781 +190480,4.3734,93.262 +190481,358.68,94.1903 +190482,0.13696,93.8829 +190483,1.5844,93.5931 +190484,3.0246,93.3206 +190485,357.33,94.1165 +190486,358.79,93.8537 +190487,0.23361,93.6082 +190488,1.6746,93.3794 +190489,355.98,94.0425 +190490,357.43,93.8245 +190491,358.88,93.6232 +190492,0.32351,93.4384 +190493,354.63,93.9683 +190494,356.08,93.7951 +190495,357.53,93.6383 +190496,358.97,93.4974 +190497,353.28,93.8941 +190498,354.73,93.7657 +190499,356.18,93.6533 +190500,357.62,93.5565 +190501,351.94,93.8197 +190502,353.38,93.7362 +190503,354.83,93.6683 +190504,356.26,93.6157 +190505,350.59,93.7453 +190506,352.03,93.7066 +190507,353.47,93.6833 +190508,354.91,93.6749 +190509,349.25,93.671 +190510,350.69,93.677 +190511,352.12,93.6982 +190512,353.55,93.7341 +190513,347.9,93.5966 +190514,349.34,93.6473 +190515,350.77,93.713 +190516,352.19,93.7932 +190517,346.56,93.5223 +190518,347.99,93.6176 +190519,349.41,93.7277 +190520,350.83,93.8523 +190521,345.22,93.4481 +190522,346.64,93.5879 +190523,348.06,93.7424 +190524,349.47,93.9112 +190525,343.88,93.374 +190526,345.29,93.5582 +190527,346.71,93.757 +190528,348.11,93.97 +190529,342.54,93.3 +190530,343.95,93.5284 +190531,345.35,93.7714 +190532,346.75,94.0286 +190533,341.2,93.2263 +190534,342.6,93.4987 +190535,343.99,93.7858 +190536,345.38,94.087 +190537,339.87,93.1528 +190538,341.26,93.469 +190539,342.64,93.8 +190540,344.02,94.1451 +190541,338.53,93.0795 +190542,339.91,93.4394 +190543,341.28,93.8141 +190544,342.65,94.2029 +190545,337.2,93.0066 +190546,338.56,93.4098 +190547,339.93,93.828 +190548,341.28,94.2605 +190549,335.87,92.9339 +190550,337.22,93.3803 +190551,338.57,93.8417 +190552,339.92,94.3176 +190553,334.53,92.8616 +190554,335.87,93.3508 +190555,337.21,93.8553 +190556,338.55,94.3745 +190557,333.2,92.7897 +190558,334.53,93.3214 +190559,335.86,93.8687 +190560,337.17,94.4308 +190561,331.87,92.7183 +190562,333.19,93.2922 +190563,334.5,93.8818 +190564,335.8,94.4868 +190565,330.54,92.6472 +190566,331.84,93.263 +190567,333.14,93.8948 +190568,334.43,94.5422 +190569,329.22,92.5767 +190570,330.5,93.2339 +190571,331.78,93.9076 +190572,333.06,94.5972 +190573,327.89,92.5067 +190574,329.16,93.205 +190575,330.42,93.9201 +190576,331.68,94.6516 +190577,326.57,92.4372 +190578,327.82,93.1761 +190579,329.06,93.9324 +190580,330.3,94.7054 +190581,325.24,92.3683 +190582,326.47,93.1475 +190583,327.7,93.9444 +190584,328.93,94.7586 +190585,323.92,92.3 +190586,325.13,93.119 +190587,326.34,93.9562 +190588,327.55,94.8112 +190589,322.6,92.2323 +190590,323.79,93.0906 +190591,324.98,93.9677 +190592,326.17,94.8631 +190593,321.27,92.1653 +190594,322.45,93.0625 +190595,323.62,93.9789 +190596,324.79,94.9143 +190597,319.95,92.0989 +190598,321.11,93.0345 +190599,322.26,93.9898 +190600,323.41,94.9648 +190601,318.64,92.0333 +190602,319.77,93.0067 +190603,320.9,94.0005 +190604,322.03,95.0145 +190605,317.32,91.9685 +190606,318.43,92.9791 +190607,319.54,94.0108 +190608,320.64,95.0634 +190609,316,91.9044 +190610,317.09,92.9517 +190611,318.18,94.0208 +190612,319.26,95.1115 +190613,314.68,91.8411 +190614,315.75,92.9246 +190615,316.82,94.0304 +190616,317.87,95.1587 +190617,313.37,91.7786 +190618,314.41,92.8977 +190619,315.45,94.0398 +190620,316.49,95.205 +190621,312.05,91.717 +190622,313.08,92.871 +190623,314.09,94.0488 +190624,315.1,95.2505 +190625,310.74,91.6563 +190626,311.74,92.8446 +190627,312.73,94.0574 +190628,313.71,95.295 +190629,309.43,91.5964 +190630,310.4,92.8184 +190631,311.37,94.0656 +190632,312.32,95.3385 +190633,308.11,91.5375 +190634,309.06,92.7925 +190635,310,94.0735 +190636,310.93,95.381 +190637,306.8,91.4796 +190638,307.72,92.7669 +190639,308.64,94.081 +190640,309.54,95.4225 +190641,305.49,91.4226 +190642,306.39,92.7416 +190643,307.27,94.0881 +190644,308.15,95.463 +190645,304.18,91.3666 +190646,305.05,92.7166 +190647,305.91,94.0948 +190648,306.76,95.5023 +190649,302.87,91.3116 +190650,303.71,92.6918 +190651,304.55,94.1011 +190652,305.37,95.5406 +190653,301.57,91.2577 +190654,302.38,92.6674 +190655,303.18,94.107 +190656,303.98,95.5778 +190657,300.26,91.2048 +190658,301.04,92.6433 +190659,301.82,94.1124 +190660,302.58,95.6138 +190661,298.95,91.1531 +190662,299.71,92.6195 +190663,300.45,94.1174 +190664,301.19,95.6486 +190665,297.65,91.1024 +190666,298.37,92.596 +190667,299.09,94.122 +190668,299.79,95.6822 +190669,296.34,91.0528 +190670,297.04,92.5729 +190671,297.72,94.1261 +190672,298.4,95.7146 +190673,295.03,91.0044 +190674,295.7,92.5501 +190675,296.36,94.1298 +190676,297,95.7458 +190677,293.73,90.95714 +190678,294.37,92.5277 +190679,294.99,94.133 +190680,295.6,95.7757 +190681,292.43,90.91106 +190682,293.03,92.5056 +190683,293.63,94.1358 +190684,294.21,95.8042 +190685,291.12,90.86617 +190686,291.7,92.4839 +190687,292.26,94.1381 +190688,292.81,95.8315 +190689,289.82,90.82248 +190690,290.36,92.4625 +190691,290.89,94.1399 +190692,291.41,95.8575 +190693,288.52,90.78003 +190694,289.03,92.4416 +190695,289.53,94.1412 +190696,290.01,95.8821 +190697,287.22,90.73881 +190698,287.7,92.421 +190699,288.16,94.142 +190700,288.61,95.9053 +190701,285.91,90.69884 +190702,286.36,92.4008 +190703,286.79,94.1423 +190704,287.21,95.9272 +190705,284.61,90.66015 +190706,285.03,92.3809 +190707,285.43,94.1422 +190708,285.81,95.9477 +190709,283.31,90.62273 +190710,283.69,92.3615 +190711,284.06,94.1415 +190712,284.41,95.9667 +190713,282.01,90.58661 +190714,282.36,92.3425 +190715,282.69,94.1403 +190716,283.01,95.9843 +190717,280.71,90.5518 +190718,281.03,92.3239 +190719,281.33,94.1386 +190720,281.61,96.0004 +190721,279.41,90.5183 +190722,279.7,92.3056 +190723,279.96,94.1364 +190724,280.21,96.0151 +190725,278.11,90.48612 +190726,278.36,92.2878 +190727,278.59,94.1336 +190728,278.81,96.0283 +190729,276.82,90.45529 +190730,277.03,92.2704 +190731,277.23,94.1304 +190732,277.41,96.0401 +190733,275.52,90.42579 +190734,275.7,92.2535 +190735,275.86,94.1265 +190736,276,96.0503 +190737,274.22,90.39766 +190738,274.36,92.2369 +190739,274.49,94.1222 +190740,274.6,96.059 +190741,272.92,90.37088 +190742,273.03,92.2208 +190743,273.13,94.1173 +190744,273.2,96.0661 +190745,271.62,90.34547 +190746,271.7,92.2051 +190747,271.76,94.1119 +190748,271.8,96.0718 +190749,270.32,90.32144 +190750,270.37,92.1898 +190751,270.39,94.106 +190752,270.39,96.0759 +190753,269.03,90.29879 +190754,269.03,92.1749 +190755,269.02,94.0994 +190756,268.99,96.0784 +190757,267.73,90.27752 +190758,267.7,92.1605 +190759,267.66,94.0924 +190760,267.59,96.0794 +190761,266.43,90.25764 +190762,266.37,92.1465 +190763,266.29,94.0848 +190764,266.19,96.0788 +190765,265.13,90.23916 +190766,265.04,92.133 +190767,264.92,94.0766 +190768,264.79,96.0767 +190769,263.83,90.22207 +190770,263.71,92.1199 +190771,263.56,94.0679 +190772,263.38,96.073 +190773,262.54,90.20637 +190774,262.37,92.1072 +190775,262.19,94.0587 +190776,261.98,96.0676 +190777,261.24,90.19208 +190778,261.04,92.095 +190779,260.82,94.0489 +190780,260.58,96.0608 +190781,259.94,90.17919 +190782,259.71,92.0832 +190783,259.46,94.0385 +190784,259.18,96.0523 +190785,258.64,90.16769 +190786,258.38,92.0718 +190787,258.09,94.0276 +190788,257.78,96.0422 +190789,257.34,90.1576 +190790,257.04,92.0609 +190791,256.72,94.0161 +190792,256.37,96.0306 +190793,256.04,90.1489 +190794,255.71,92.0504 +190795,255.36,94.0041 +190796,254.97,96.0173 +190797,254.74,90.1416 +190798,254.38,92.0404 +190799,253.99,93.9916 +190800,253.57,96.0025 +190801,253.45,90.13568 +190802,253.05,92.0308 +190803,252.62,93.9784 +190804,252.17,95.9861 +190805,252.15,90.13116 +190806,251.71,92.0216 +190807,251.26,93.9648 +190808,250.77,95.9681 +190809,250.85,90.12803 +190810,250.38,92.0129 +190811,249.89,93.9505 +190812,249.37,95.9486 +190813,249.55,90.12627 +190814,249.05,92.0046 +190815,248.53,93.9358 +190816,247.97,95.9274 +190817,248.25,90.12589 +190818,247.72,91.9967 +190819,247.16,93.9205 +190820,246.57,95.9047 +190821,246.95,90.12687 +190822,246.38,91.9892 +190823,245.79,93.9046 +190824,245.18,95.8805 +190825,245.65,90.12922 +190826,245.05,91.9822 +190827,244.43,93.8882 +190828,243.78,95.8546 +190829,244.34,90.13292 +190830,243.72,91.9756 +190831,243.06,93.8713 +190832,242.38,95.8273 +190833,243.04,90.13797 +190834,242.38,91.9695 +190835,241.7,93.8538 +190836,240.98,95.7984 +190837,241.74,90.14435 +190838,241.05,91.9637 +190839,240.33,93.8358 +190840,239.59,95.768 +190841,240.44,90.15205 +190842,239.72,91.9584 +190843,238.97,93.8173 +190844,238.19,95.736 +190845,239.13,90.16108 +190846,238.38,91.9535 +190847,237.6,93.7982 +190848,236.8,95.7026 +190849,237.83,90.17141 +190850,237.05,91.949 +190851,236.24,93.7786 +190852,235.4,95.6676 +190853,236.52,90.18303 +190854,235.71,91.9449 +190855,234.88,93.7585 +190856,234.01,95.6312 +190857,235.22,90.19593 +190858,234.38,91.9412 +190859,233.51,93.7379 +190860,232.62,95.5933 +190861,233.91,90.21011 +190862,233.04,91.9378 +190863,232.15,93.7168 +190864,231.22,95.554 +190865,232.61,90.22553 +190866,231.71,91.9349 +190867,230.79,93.6952 +190868,229.83,95.5132 +190869,231.3,90.2422 +190870,230.38,91.9324 +190871,229.42,93.6731 +190872,228.44,95.471 +190873,229.99,90.2601 +190874,229.04,91.9302 +190875,228.06,93.6505 +190876,227.05,95.4274 +190877,228.68,90.2792 +190878,227.7,91.9285 +190879,226.7,93.6274 +190880,225.66,95.3824 +190881,227.38,90.2995 +190882,226.37,91.9271 +190883,225.34,93.6038 +190884,224.27,95.3361 +190885,226.07,90.32098 +190886,225.03,91.926 +190887,223.98,93.5798 +190888,222.89,95.2884 +190889,224.75,90.34362 +190890,223.7,91.9254 +190891,222.61,93.5553 +190892,221.5,95.2394 +190893,223.44,90.3674 +190894,222.36,91.925 +190895,221.25,93.5303 +190896,220.11,95.189 +190897,222.13,90.39231 +190898,221.02,91.9251 +190899,219.89,93.5048 +190900,218.73,95.1374 +190901,220.82,90.41833 +190902,219.69,91.9254 +190903,218.53,93.479 +190904,217.35,95.0845 +190905,219.5,90.44543 +190906,218.35,91.9261 +190907,217.17,93.4526 +190908,215.96,95.0304 +190909,218.19,90.4736 +190910,217.01,91.9272 +190911,215.81,93.4259 +190912,214.58,94.975 +190913,216.87,90.50281 +190914,215.68,91.9285 +190915,214.45,93.3987 +190916,213.2,94.9185 +190917,215.56,90.53305 +190918,214.34,91.9302 +190919,213.09,93.3711 +190920,211.82,94.8607 +190921,214.24,90.5643 +190922,213,91.9322 +190923,211.73,93.3431 +190924,210.44,94.8019 +190925,212.92,90.59653 +190926,211.66,91.9344 +190927,210.38,93.3147 +190928,209.06,94.7419 +190929,211.6,90.62972 +190930,210.32,91.937 +190931,209.02,93.2859 +190932,207.69,94.6808 +190933,210.28,90.66384 +190934,208.98,91.9398 +190935,207.66,93.2567 +190936,206.31,94.6186 +190937,208.96,90.69888 +190938,207.64,91.943 +190939,206.3,93.2271 +190940,204.94,94.5554 +190941,207.64,90.73481 +190942,206.3,91.9463 +190943,204.95,93.1972 +190944,203.56,94.4912 +190945,206.31,90.7716 +190946,204.96,91.95 +190947,203.59,93.1669 +190948,202.19,94.426 +190949,204.99,90.80924 +190950,203.62,91.9539 +190951,202.23,93.1363 +190952,200.82,94.3599 +190953,203.66,90.84769 +190954,202.28,91.958 +190955,200.88,93.1053 +190956,199.45,94.2928 +190957,202.34,90.88693 +190958,200.94,91.9624 +190959,199.52,93.074 +190960,198.08,94.2248 +190961,201.01,90.92693 +190962,199.6,91.967 +190963,198.17,93.0423 +190964,196.71,94.156 +190965,199.68,90.96767 +190966,198.26,91.9718 +190967,196.81,93.0104 +190968,195.35,94.0863 +190969,198.35,91.0091 +190970,196.92,91.9768 +190971,195.46,92.9781 +190972,193.98,94.0158 +190973,197.02,91.0513 +190974,195.57,91.982 +190975,194.11,92.9456 +190976,192.62,93.9445 +190977,195.68,91.094 +190978,194.23,91.9874 +190979,192.75,92.9127 +190980,191.26,93.8725 +190981,194.35,91.1375 +190982,192.89,91.993 +190983,191.4,92.8796 +190984,189.89,93.7997 +190985,193.02,91.1815 +190986,191.54,91.9987 +190987,190.05,92.8463 +190988,188.53,93.7263 +190989,191.68,91.2261 +190990,190.2,92.0046 +190991,188.7,92.8127 +190992,187.17,93.6522 +190993,190.34,91.2712 +190994,188.85,92.0107 +190995,187.35,92.7788 +190996,185.82,93.5775 +190997,189.01,91.3168 +190998,187.51,92.0169 +190999,185.99,92.7447 +191000,184.46,93.5023 +191001,187.67,91.363 +191002,186.16,92.0232 +191003,184.64,92.7104 +191004,183.1,93.4264 +191005,186.33,91.4096 +191006,184.82,92.0296 +191007,183.29,92.6759 +191008,181.75,93.3501 +191009,184.98,91.4566 +191010,183.47,92.0362 +191011,181.94,92.6412 +191012,180.4,93.2732 +191013,183.64,91.504 +191014,182.13,92.0428 +191015,180.59,92.6063 +191016,179.04,93.196 +191017,182.3,91.5517 +191018,180.78,92.0495 +191019,179.25,92.5712 +191020,177.69,93.1182 +191021,180.95,91.5998 +191022,179.43,92.0563 +191023,177.9,92.536 +191024,176.35,93.0402 +191025,179.61,91.6482 +191026,178.09,92.0632 +191027,176.55,92.5006 +191028,175,92.9617 +191029,178.26,91.6969 +191030,176.74,92.0701 +191031,175.2,92.465 +191032,173.65,92.883 +191033,176.91,91.7458 +191034,175.39,92.0771 +191035,173.86,92.4294 +191036,172.31,92.8039 +191037,175.56,91.795 +191038,174.04,92.0841 +191039,172.51,92.3936 +191040,170.96,92.7246 +191041,174.21,91.8443 +191042,172.69,92.0911 +191043,171.16,92.3577 +191044,169.62,92.6451 +191045,172.85,91.8937 +191046,171.34,92.0981 +191047,169.82,92.3217 +191048,168.28,92.5654 +191049,171.5,91.9433 +191050,169.99,92.1051 +191051,168.47,92.2856 +191052,166.94,92.4856 +191053,170.15,91.9929 +191054,168.64,92.1122 +191055,167.13,92.2494 +191056,165.6,92.4057 +191057,168.79,92.0426 +191058,167.29,92.1192 +191059,165.78,92.2132 +191060,164.26,92.3256 +191061,167.43,92.0924 +191062,165.94,92.1262 +191063,164.44,92.1769 +191064,162.92,92.2456 +191065,166.07,92.1421 +191066,164.59,92.1331 +191067,163.1,92.1406 +191068,161.59,92.1655 +191069,164.71,92.1917 +191070,163.24,92.14 +191071,161.75,92.1042 +191072,160.25,92.0854 +191073,163.35,92.2413 +191074,161.89,92.1468 +191075,160.41,92.0679 +191076,158.92,92.0055 +191077,161.99,92.2908 +191078,160.53,92.1535 +191079,159.07,92.0315 +191080,157.59,91.9255 +191081,160.63,92.3401 +191082,159.18,92.1602 +191083,157.73,91.9951 +191084,156.26,91.8458 +191085,159.26,92.3893 +191086,157.83,92.1668 +191087,156.38,91.9587 +191088,154.93,91.7662 +191089,157.9,92.4383 +191090,156.48,92.1732 +191091,155.04,91.9224 +191092,153.6,91.6867 +191093,156.53,92.487 +191094,155.12,92.1796 +191095,153.7,91.8861 +191096,152.27,91.6075 +191097,155.16,92.5355 +191098,153.77,92.1858 +191099,152.36,91.8498 +191100,150.95,91.5286 +191101,153.79,92.5836 +191102,152.41,92.1918 +191103,151.02,91.8136 +191104,149.62,91.4499 +191105,152.42,92.6315 +191106,151.06,92.1978 +191107,149.68,91.7775 +191108,148.3,91.3716 +191109,151.05,92.6789 +191110,149.7,92.2035 +191111,148.35,91.7414 +191112,146.98,91.2936 +191113,149.68,92.726 +191114,148.35,92.2091 +191115,147.01,91.7055 +191116,145.66,91.216 +191117,148.3,92.7726 +191118,146.99,92.2145 +191119,145.67,91.6696 +191120,144.34,91.1388 +191121,146.93,92.8188 +191122,145.64,92.2198 +191123,144.33,91.6338 +191124,143.02,91.0621 +191125,145.55,92.8645 +191126,144.28,92.2248 +191127,142.99,91.5982 +191128,141.7,90.98585 +191129,144.18,92.9097 +191130,142.92,92.2296 +191131,141.66,91.5627 +191132,140.38,90.91011 +191133,142.8,92.9544 +191134,141.57,92.2342 +191135,140.32,91.5274 +191136,139.07,90.83492 +191137,141.42,92.9984 +191138,140.21,92.2385 +191139,138.99,91.4922 +191140,137.75,90.76029 +191141,140.04,93.0419 +191142,138.85,92.2427 +191143,137.65,91.4571 +191144,136.44,90.68626 +191145,138.66,93.0847 +191146,137.49,92.2465 +191147,136.31,91.4223 +191148,135.13,90.61286 +191149,137.28,93.1268 +191150,136.13,92.2501 +191151,134.98,91.3876 +191152,133.81,90.54012 +191153,135.89,93.1682 +191154,134.77,92.2535 +191155,133.64,91.3531 +191156,132.5,90.46807 +191157,134.51,93.209 +191158,133.42,92.2565 +191159,132.31,91.3188 +191160,131.19,90.39673 +191161,133.13,93.2489 +191162,132.06,92.2593 +191163,130.98,91.2847 +191164,129.88,90.32613 +191165,131.74,93.2881 +191166,130.7,92.2617 +191167,129.64,91.2509 +191168,128.58,90.25629 +191169,130.35,93.3264 +191170,129.34,92.2639 +191171,128.31,91.2172 +191172,127.27,90.18726 +191173,128.97,93.364 +191174,127.98,92.2657 +191175,126.98,91.1839 +191176,125.96,90.11904 +191177,127.58,93.4006 +191178,126.62,92.2673 +191179,125.64,91.1507 +191180,124.66,90.051675 +191181,126.19,93.4364 +191182,125.26,92.2684 +191183,124.31,91.1178 +191184,123.35,89.985178 +191185,124.8,93.4712 +191186,123.9,92.2693 +191187,122.98,91.0852 +191188,122.05,89.919578 +191189,123.41,93.5051 +191190,122.53,92.2698 +191191,121.65,91.0529 +191192,120.75,89.8549 +191193,122.02,93.538 +191194,121.17,92.2699 +191195,120.32,91.0208 +191196,119.45,89.79116 +191197,120.62,93.5699 +191198,119.81,92.2697 +191199,118.99,90.98903 +191200,118.14,89.72839 +191201,119.23,93.6008 +191202,118.45,92.269 +191203,117.65,90.95755 +191204,116.84,89.66661 +191205,117.84,93.6307 +191206,117.09,92.268 +191207,116.32,90.92638 +191208,115.54,89.60585 +191209,116.44,93.6594 +191210,115.73,92.2666 +191211,114.99,90.89552 +191212,114.24,89.54611 +191213,115.05,93.6871 +191214,114.36,92.2649 +191215,113.66,90.86498 +191216,112.95,89.48743 +191217,113.65,93.7137 +191218,113,92.2627 +191219,112.33,90.83477 +191220,111.65,89.42982 +191221,112.26,93.7391 +191222,111.64,92.2601 +191223,111,90.80489 +191224,110.35,89.37331 +191225,110.86,93.7634 +191226,110.28,92.257 +191227,109.67,90.77535 +191228,109.05,89.3179 +191229,109.46,93.7865 +191230,108.91,92.2536 +191231,108.34,90.74616 +191232,107.76,89.26363 +191233,108.07,93.8083 +191234,107.55,92.2497 +191235,107.02,90.71733 +191236,106.46,89.21051 +191237,106.67,93.829 +191238,106.19,92.2454 +191239,105.69,90.68885 +191240,105.17,89.15855 +191241,105.27,93.8484 +191242,104.83,92.2406 +191243,104.36,90.66074 +191244,103.87,89.10778 +191245,103.87,93.8665 +191246,103.46,92.2354 +191247,103.03,90.633 +191248,102.58,89.0582 +191249,102.47,93.8834 +191250,102.1,92.2297 +191251,101.7,90.60563 +191252,101.28,89.00984 +191253,101.07,93.899 +191254,100.74,92.2236 +191255,100.37,90.57865 +191256,99.991,88.9627 +191257,99.674,93.9132 +191258,99.372,92.217 +191259,99.046,90.55206 +191260,98.697,88.9168 +191261,98.274,93.9262 +191262,98.008,92.2099 +191263,97.718,90.52585 +191264,97.405,88.8722 +191265,96.874,93.9377 +191266,96.644,92.2023 +191267,96.39,90.50005 +191268,96.112,88.8288 +191269,95.473,93.9479 +191270,95.281,92.1943 +191271,95.062,90.47464 +191272,94.82,88.7867 +191273,94.072,93.9568 +191274,93.917,92.1858 +191275,93.735,90.44964 +191276,93.529,88.7459 +191277,92.671,93.9642 +191278,92.553,92.1768 +191279,92.408,90.42505 +191280,92.237,88.7064 +191281,91.27,93.9703 +191282,91.189,92.1673 +191283,91.08,90.40087 +191284,90.946,88.6682 +191285,89.869,93.9749 +191286,89.825,92.1573 +191287,89.753,90.3771 +191288,89.655,88.6314 +191289,88.468,93.9781 +191290,88.462,92.1468 +191291,88.426,90.35376 +191292,88.364,88.5958 +191293,87.066,93.9798 +191294,87.098,92.1358 +191295,87.099,90.33084 +191296,87.073,88.5616 +191297,85.665,93.9802 +191298,85.734,92.1243 +191299,85.772,90.30834 +191300,85.782,88.5288 +191301,84.263,93.979 +191302,84.37,92.1123 +191303,84.445,90.28627 +191304,84.491,88.4973 +191305,82.862,93.9764 +191306,83.006,92.0998 +191307,83.118,90.26463 +191308,83.201,88.4671 +191309,81.461,93.9723 +191310,81.643,92.0867 +191311,81.791,90.24342 +191312,81.91,88.4384 +191313,80.06,93.9668 +191314,80.279,92.0732 +191315,80.464,90.22264 +191316,80.619,88.4109 +191317,78.659,93.9597 +191318,78.916,92.0591 +191319,79.137,90.2023 +191320,79.329,88.3849 +191321,77.258,93.9512 +191322,77.552,92.0445 +191323,77.811,90.1824 +191324,78.038,88.3602 +191325,75.857,93.9411 +191326,76.189,92.0294 +191327,76.484,90.16293 +191328,76.747,88.3369 +191329,74.457,93.9296 +191330,74.825,92.0138 +191331,75.157,90.1439 +191332,75.456,88.315 +191333,73.057,93.9165 +191334,73.462,91.9977 +191335,73.83,90.12531 +191336,74.165,88.2945 +191337,71.657,93.902 +191338,72.099,91.981 +191339,72.503,90.10716 +191340,72.874,88.2753 +191341,70.257,93.8859 +191342,70.736,91.9638 +191343,71.176,90.08945 +191344,71.582,88.2575 +191345,68.858,93.8683 +191346,69.373,91.9461 +191347,69.849,90.072177 +191348,70.29,88.2411 +191349,67.46,93.8493 +191350,68.011,91.9279 +191351,68.522,90.055344 +191352,68.998,88.2261 +191353,66.061,93.8287 +191354,66.648,91.9092 +191355,67.195,90.038948 +191356,67.706,88.2124 +191357,64.663,93.8066 +191358,65.286,91.8899 +191359,65.867,90.022989 +191360,66.413,88.2001 +191361,63.266,93.783 +191362,63.924,91.8701 +191363,64.54,90.0074672 +191364,65.12,88.1892 +191365,61.869,93.7579 +191366,62.562,91.8499 +191367,63.212,89.9923796 +191368,63.827,88.1796 +191369,60.472,93.7313 +191370,61.2,91.829 +191371,61.885,89.977725 +191372,62.533,88.1714 +191373,59.077,93.7032 +191374,59.838,91.8077 +191375,60.557,89.963502 +191376,61.239,88.1645 +191377,57.681,93.6737 +191378,58.477,91.7859 +191379,59.229,89.949709 +191380,59.944,88.159 +191381,56.287,93.6426 +191382,57.116,91.7636 +191383,57.901,89.936342 +191384,58.649,88.1548 +191385,54.893,93.6101 +191386,55.755,91.7407 +191387,56.573,89.9234 +191388,57.353,88.1519 +191389,53.499,93.5761 +191390,54.394,91.7174 +191391,55.245,89.91088 +191392,56.057,88.1504 +191393,52.107,93.5407 +191394,53.034,91.6935 +191395,53.916,89.89878 +191396,54.76,88.1502 +191397,50.715,93.5038 +191398,51.674,91.6692 +191399,52.588,89.88709 +191400,53.463,88.1512 +191401,49.323,93.4655 +191402,50.314,91.6444 +191403,51.259,89.87582 +191404,52.165,88.1536 +191405,47.933,93.4258 +191406,48.954,91.619 +191407,49.93,89.86495 +191408,50.866,88.1572 +191409,46.543,93.3846 +191410,47.595,91.5932 +191411,48.6,89.85449 +191412,49.567,88.1621 +191413,45.155,93.3421 +191414,46.236,91.567 +191415,47.271,89.84444 +191416,48.267,88.1682 +191417,43.767,93.2982 +191418,44.877,91.5402 +191419,45.941,89.83477 +191420,46.966,88.1756 +191421,42.38,93.2529 +191422,43.519,91.513 +191423,44.612,89.8255 +191424,45.665,88.1842 +191425,40.994,93.2062 +191426,42.161,91.4853 +191427,43.281,89.81662 +191428,44.363,88.194 +191429,39.608,93.1582 +191430,40.803,91.4571 +191431,41.951,89.80811 +191432,43.06,88.205 +191433,38.224,93.1089 +191434,39.446,91.4285 +191435,40.62,89.79999 +191436,41.756,88.2172 +191437,36.841,93.0583 +191438,38.088,91.3995 +191439,39.29,89.79223 +191440,40.452,88.2306 +191441,35.458,93.0064 +191442,36.732,91.37 +191443,37.958,89.78485 +191444,39.146,88.2451 +191445,34.077,92.9532 +191446,35.375,91.34 +191447,36.627,89.77782 +191448,37.84,88.2607 +191449,32.697,92.8988 +191450,34.019,91.3097 +191451,35.295,89.77115 +191452,36.533,88.2774 +191453,31.318,92.8431 +191454,32.664,91.2789 +191455,33.964,89.76482 +191456,35.225,88.2953 +191457,29.94,92.7863 +191458,31.308,91.2477 +191459,32.631,89.75884 +191460,33.916,88.3142 +191461,28.562,92.7282 +191462,29.953,91.2161 +191463,31.299,89.75319 +191464,32.606,88.3341 +191465,27.186,92.669 +191466,28.599,91.184 +191467,29.966,89.74787 +191468,31.295,88.3551 +191469,25.812,92.6087 +191470,27.245,91.1516 +191471,28.633,89.74288 +191472,29.983,88.3771 +191473,24.438,92.5472 +191474,25.891,91.1188 +191475,27.299,89.73819 +191476,28.67,88.4002 +191477,23.065,92.4846 +191478,24.538,91.0856 +191479,25.966,89.73382 +191480,27.356,88.4241 +191481,21.694,92.421 +191482,23.185,91.0521 +191483,24.632,89.72974 +191484,26.041,88.4491 +191485,20.324,92.3563 +191486,21.832,91.0181 +191487,23.297,89.72596 +191488,24.725,88.4749 +191489,18.955,92.2906 +191490,20.48,90.98387 +191491,21.962,89.72246 +191492,23.408,88.5017 +191493,17.587,92.2239 +191494,19.128,90.94924 +191495,20.627,89.71924 +191496,22.089,88.5293 +191497,16.221,92.1562 +191498,17.777,90.91427 +191499,19.292,89.71629 +191500,20.77,88.5578 +191501,14.855,92.0876 +191502,16.426,90.87897 +191503,17.956,89.7136 +191504,19.45,88.5872 +191505,13.491,92.0181 +191506,15.076,90.84335 +191507,16.62,89.71116 +191508,18.128,88.6173 +191509,12.128,91.9477 +191510,13.726,90.80742 +191511,15.283,89.70897 +191512,16.805,88.6483 +191513,10.767,91.8764 +191514,12.377,90.77118 +191515,13.947,89.70701 +191516,15.481,88.68 +191517,9.4066,91.8043 +191518,11.027,90.73465 +191519,12.609,89.70528 +191520,14.156,88.7124 +191521,8.0476,91.7314 +191522,9.6789,90.69783 +191523,11.272,89.70376 +191524,12.83,88.7455 +191525,6.69,91.6577 +191526,8.3308,90.66074 +191527,9.9337,89.70246 +191528,11.503,88.7793 +191529,5.3337,91.5833 +191530,6.9831,90.62338 +191531,8.5954,89.70135 +191532,10.174,88.8138 +191533,3.9786,91.5082 +191534,5.6359,90.58576 +191535,7.2567,89.70044 +191536,8.8444,88.8489 +191537,2.6249,91.4323 +191538,4.2892,90.5479 +191539,5.9176,89.6997 +191540,7.5134,88.8846 +191541,1.2725,91.3559 +191542,2.9429,90.5098 +191543,4.5781,89.69914 +191544,6.1812,88.9209 +191545,359.92,91.2788 +191546,1.5971,90.47148 +191547,3.2382,89.69874 +191548,4.8477,88.9577 +191549,358.57,91.2011 +191550,0.25175,90.43294 +191551,1.8979,89.6985 +191552,3.513,88.995 +191553,357.22,91.1229 +191554,358.91,90.39419 +191555,0.55727,89.69839 +191556,2.177,89.03284 +191557,355.88,91.0442 +191558,357.56,90.35525 +191559,359.22,89.69842 +191560,0.8398,89.07112 +191561,354.53,90.96495 +191562,356.22,90.31612 +191563,357.87,89.69858 +191564,359.5,89.10984 +191565,353.19,90.88525 +191566,354.88,90.27682 +191567,356.53,89.69884 +191568,358.16,89.14895 +191569,351.84,90.80513 +191570,353.53,90.23735 +191571,355.19,89.69922 +191572,356.82,89.18843 +191573,350.5,90.72462 +191574,352.19,90.19773 +191575,353.85,89.69968 +191576,355.48,89.22826 +191577,349.16,90.64375 +191578,350.85,90.15797 +191579,352.51,89.70023 +191580,354.13,89.2684 +191581,347.82,90.56254 +191582,349.51,90.11807 +191583,351.16,89.70085 +191584,352.79,89.30882 +191585,346.48,90.48105 +191586,348.17,90.078058 +191587,349.82,89.70153 +191588,351.44,89.3495 +191589,345.15,90.39929 +191590,346.82,90.037931 +191591,348.47,89.70227 +191592,350.1,89.3904 +191593,343.81,90.3173 +191594,345.48,89.9977051 +191595,347.13,89.70305 +191596,348.75,89.43149 +191597,342.48,90.23512 +191598,344.14,89.95739 +191599,345.78,89.70386 +191600,347.4,89.47275 +191601,341.15,90.15278 +191602,342.81,89.916998 +191603,344.44,89.70469 +191604,346.05,89.51414 +191605,339.82,90.070303 +191606,341.47,89.87654 +191607,343.09,89.70554 +191608,344.69,89.55563 +191609,338.49,89.987735 +191610,340.13,89.83602 +191611,341.75,89.70638 +191612,343.34,89.59719 +191613,337.16,89.905106 +191614,338.79,89.79546 +191615,340.4,89.70722 +191616,341.99,89.63879 +191617,335.83,89.82245 +191618,337.45,89.75487 +191619,339.05,89.70803 +191620,340.63,89.6804 +191621,334.51,89.73979 +191622,336.12,89.71425 +191623,337.71,89.70882 +191624,339.27,89.72199 +191625,333.18,89.65718 +191626,334.78,89.67362 +191627,336.36,89.70956 +191628,337.91,89.76353 +191629,331.86,89.57463 +191630,333.44,89.63299 +191631,335.01,89.71026 +191632,336.55,89.80498 +191633,330.54,89.49219 +191634,332.11,89.59237 +191635,333.66,89.71089 +191636,335.19,89.84632 +191637,329.22,89.40989 +191638,330.77,89.55176 +191639,332.31,89.71145 +191640,333.83,89.88752 +191641,327.9,89.32775 +191642,329.44,89.51119 +191643,330.96,89.71193 +191644,332.47,89.92855 +191645,326.58,89.24582 +191646,328.11,89.47066 +191647,329.61,89.71232 +191648,331.1,89.969372 +191649,325.26,89.16412 +191650,326.77,89.43019 +191651,328.26,89.7126 +191652,329.74,90.0099584 +191653,323.95,89.08268 +191654,325.44,89.38977 +191655,326.91,89.71277 +191656,328.37,90.05028 +191657,322.63,89.00155 +191658,324.11,89.34944 +191659,325.56,89.71282 +191660,327,90.090306 +191661,321.32,88.9207 +191662,322.77,89.30918 +191663,324.21,89.71273 +191664,325.63,90.13001 +191665,320.01,88.8403 +191666,321.44,89.26902 +191667,322.86,89.7125 +191668,324.26,90.16935 +191669,318.69,88.7602 +191670,320.11,89.22897 +191671,321.51,89.71212 +191672,322.89,90.20831 +191673,317.38,88.6806 +191674,318.78,89.18903 +191675,320.16,89.71157 +191676,321.52,90.24686 +191677,316.08,88.6014 +191678,317.45,89.14921 +191679,318.8,89.71085 +191680,320.14,90.28496 +191681,314.77,88.5227 +191682,316.12,89.10954 +191683,317.45,89.70995 +191684,318.77,90.32259 +191685,313.46,88.4446 +191686,314.79,89.07 +191687,316.1,89.70885 +191688,317.39,90.35971 +191689,312.16,88.3669 +191690,313.46,89.03063 +191691,314.74,89.70756 +191692,316.01,90.39631 +191693,310.85,88.2899 +191694,312.13,88.9914 +191695,313.39,89.70605 +191696,314.64,90.43234 +191697,309.55,88.2134 +191698,310.8,88.9524 +191699,312.04,89.70431 +191700,313.26,90.46779 +191701,308.25,88.1376 +191702,309.47,88.9135 +191703,310.68,89.70235 +191704,311.88,90.50262 +191705,306.94,88.0624 +191706,308.14,88.8749 +191707,309.33,89.70015 +191708,310.49,90.5368 +191709,305.64,87.9879 +191710,306.82,88.8364 +191711,307.97,89.6977 +191712,309.11,90.57032 +191713,304.34,87.9141 +191714,305.49,88.7982 +191715,306.62,89.69499 +191716,307.73,90.60313 +191717,303.05,87.8411 +191718,304.16,88.7602 +191719,305.26,89.69201 +191720,306.35,90.63522 +191721,301.75,87.7688 +191722,302.84,88.7224 +191723,303.91,89.68876 +191724,304.96,90.66656 +191725,300.45,87.6973 +191726,301.51,88.6848 +191727,302.55,89.68522 +191728,303.57,90.69712 +191729,299.16,87.6267 +191730,300.18,88.6476 +191731,301.19,89.68139 +191732,302.19,90.72687 +191733,297.86,87.5569 +191734,298.86,88.6105 +191735,299.84,89.67726 +191736,300.8,90.7558 +191737,296.57,87.4879 +191738,297.53,88.5737 +191739,298.48,89.67281 +191740,299.41,90.78387 +191741,295.27,87.4198 +191742,296.21,88.5372 +191743,297.12,89.66805 +191744,298.02,90.81106 +191745,293.98,87.3527 +191746,294.88,88.501 +191747,295.77,89.66297 +191748,296.63,90.83735 +191749,292.69,87.2865 +191750,293.56,88.4651 +191751,294.41,89.65755 +191752,295.24,90.86271 +191753,291.4,87.2212 +191754,292.24,88.4295 +191755,293.05,89.65179 +191756,293.85,90.88711 +191757,290.11,87.157 +191758,290.91,88.3941 +191759,291.7,89.64568 +191760,292.46,90.91055 +191761,288.82,87.0937 +191762,289.59,88.3591 +191763,290.34,89.63922 +191764,291.07,90.93298 +191765,287.53,87.0315 +191766,288.26,88.3244 +191767,288.98,89.63239 +191768,289.67,90.9544 +191769,286.24,86.9703 +191770,286.94,88.2901 +191771,287.62,89.6252 +191772,288.28,90.97478 +191773,284.95,86.9102 +191774,285.62,88.256 +191775,286.26,89.61762 +191776,286.88,90.9941 +191777,283.67,86.8511 +191778,284.3,88.2224 +191779,284.9,89.60967 +191780,285.49,91.0123 +191781,282.38,86.7932 +191782,282.97,88.189 +191783,283.55,89.60132 +191784,284.09,91.0295 +191785,281.09,86.7363 +191786,281.65,88.156 +191787,282.19,89.59258 +191788,282.7,91.0455 +191789,279.81,86.6806 +191790,280.33,88.1234 +191791,280.83,89.58343 +191792,281.3,91.0603 +191793,278.52,86.6261 +191794,279.01,88.0911 +191795,279.47,89.57388 +191796,279.9,91.0741 +191797,277.24,86.5727 +191798,277.69,88.0592 +191799,278.11,89.56392 +191800,278.51,91.0866 +191801,275.95,86.5205 +191802,276.36,88.0277 +191803,276.75,89.55354 +191804,277.11,91.0979 +191805,274.67,86.4695 +191806,275.04,87.9965 +191807,275.39,89.54273 +191808,275.71,91.1081 +191809,273.39,86.4198 +191810,273.72,87.9658 +191811,274.03,89.53149 +191812,274.31,91.117 +191813,272.1,86.3712 +191814,272.4,87.9354 +191815,272.67,89.51982 +191816,272.91,91.1246 +191817,270.82,86.3239 +191818,271.08,87.9055 +191819,271.31,89.50772 +191820,271.52,91.131 +191821,269.54,86.2778 +191822,269.76,87.8759 +191823,269.95,89.49517 +191824,270.12,91.1361 +191825,268.26,86.233 +191826,268.44,87.8467 +191827,268.59,89.48217 +191828,268.72,91.14 +191829,266.97,86.1895 +191830,267.12,87.8179 +191831,267.23,89.46872 +191832,267.32,91.1425 +191833,265.69,86.1472 +191834,265.8,87.7896 +191835,265.87,89.45482 +191836,265.92,91.1438 +191837,264.41,86.1063 +191838,264.48,87.7617 +191839,264.51,89.44046 +191840,264.52,91.1437 +191841,263.13,86.0666 +191842,263.16,87.7341 +191843,263.15,89.42564 +191844,263.12,91.1423 +191845,261.85,86.0283 +191846,261.84,87.707 +191847,261.79,89.41036 +191848,261.72,91.1395 +191849,260.57,85.9912 +191850,260.52,87.6804 +191851,260.44,89.39461 +191852,260.32,91.1354 +191853,259.28,85.9555 +191854,259.2,87.6541 +191855,259.08,89.37839 +191856,258.92,91.1299 +191857,258,85.9211 +191858,257.88,87.6283 +191859,257.72,89.36169 +191860,257.52,91.1231 +191861,256.72,85.8881 +191862,256.56,87.6029 +191863,256.36,89.34453 +191864,256.12,91.1148 +191865,255.44,85.8564 +191866,255.24,87.5779 +191867,255,89.32689 +191868,254.72,91.1052 +191869,254.16,85.826 +191870,253.92,87.5534 +191871,253.64,89.30877 +191872,253.32,91.0942 +191873,252.88,85.797 +191874,252.6,87.5293 +191875,252.28,89.29017 +191876,251.92,91.0818 +191877,251.6,85.7693 +191878,251.28,87.5057 +191879,250.92,89.27109 +191880,250.52,91.068 +191881,250.31,85.7429 +191882,249.96,87.4824 +191883,249.56,89.25153 +191884,249.12,91.0528 +191885,249.03,85.7179 +191886,248.64,87.4597 +191887,248.2,89.23149 +191888,247.73,91.0362 +191889,247.75,85.6943 +191890,247.31,87.4373 +191891,246.84,89.21097 +191892,246.33,91.0181 +191893,246.47,85.672 +191894,245.99,87.4154 +191895,245.48,89.18997 +191896,244.93,90.9987 +191897,245.18,85.651 +191898,244.67,87.3939 +191899,244.13,89.16848 +191900,243.53,90.97784 +191901,243.9,85.6314 +191902,243.35,87.3729 +191903,242.77,89.14652 +191904,242.14,90.95557 +191905,242.62,85.6132 +191906,242.03,87.3523 +191907,241.41,89.12407 +191908,240.74,90.93188 +191909,241.33,85.5962 +191910,240.71,87.3321 +191911,240.05,89.10114 +191912,239.34,90.90678 +191913,240.05,85.5806 +191914,239.39,87.3124 +191915,238.69,89.07773 +191916,237.95,90.88027 +191917,238.76,85.5664 +191918,238.07,87.2931 +191919,237.34,89.05385 +191920,236.55,90.85235 +191921,237.48,85.5535 +191922,236.75,87.2743 +191923,235.98,89.02949 +191924,235.16,90.82303 +191925,236.19,85.5418 +191926,235.43,87.2558 +191927,234.62,89.00465 +191928,233.77,90.7923 +191929,234.91,85.5315 +191930,234.11,87.2378 +191931,233.27,88.9793 +191932,232.37,90.76018 +191933,233.62,85.5225 +191934,232.79,87.2202 +191935,231.91,88.9536 +191936,230.98,90.72667 +191937,232.33,85.5148 +191938,231.46,87.2031 +191939,230.55,88.9273 +191940,229.59,90.69177 +191941,231.04,85.5084 +191942,230.14,87.1864 +191943,229.2,88.9006 +191944,228.2,90.6555 +191945,229.75,85.5033 +191946,228.82,87.1701 +191947,227.84,88.8734 +191948,226.81,90.61786 +191949,228.47,85.4994 +191950,227.5,87.1542 +191951,226.49,88.8458 +191952,225.42,90.57886 +191953,227.18,85.4968 +191954,226.18,87.1387 +191955,225.13,88.8177 +191956,224.03,90.53851 +191957,225.88,85.4955 +191958,224.85,87.1236 +191959,223.78,88.7892 +191960,222.64,90.49682 +191961,224.59,85.4954 +191962,223.53,87.1089 +191963,222.42,88.7602 +191964,221.26,90.4538 +191965,223.3,85.4965 +191966,222.21,87.0946 +191967,221.07,88.7307 +191968,219.87,90.40946 +191969,222.01,85.4988 +191970,220.88,87.0808 +191971,219.71,88.7008 +191972,218.49,90.36381 +191973,220.72,85.5023 +191974,219.56,87.0673 +191975,218.36,88.6705 +191976,217.1,90.31687 +191977,219.42,85.507 +191978,218.24,87.0542 +191979,217.01,88.6398 +191980,215.72,90.26865 +191981,218.13,85.5128 +191982,216.91,87.0415 +191983,215.65,88.6086 +191984,214.34,90.21917 +191985,216.83,85.5199 +191986,215.59,87.0291 +191987,214.3,88.577 +191988,212.96,90.16844 +191989,215.53,85.528 +191990,214.26,87.0172 +191991,212.95,88.545 +191992,211.58,90.11647 +191993,214.23,85.5373 +191994,212.94,87.0056 +191995,211.6,88.5126 +191996,210.2,90.063289 +191997,212.93,85.5477 +191998,211.61,86.9943 +191999,210.25,88.4798 +192000,208.82,90.0089049 +192001,211.64,85.5591 +192002,210.29,86.9835 +192003,208.89,88.4466 +192004,207.44,89.953338 +192005,210.33,85.5716 +192006,208.96,86.9729 +192007,207.54,88.413 +192008,206.07,89.89661 +192009,209.03,85.5852 +192010,207.64,86.9628 +192011,206.19,88.379 +192012,204.69,89.83873 +192013,207.73,85.5998 +192014,206.31,86.9529 +192015,204.84,88.3446 +192016,203.32,89.77973 +192017,206.43,85.6154 +192018,204.98,86.9434 +192019,203.49,88.3098 +192020,201.95,89.71962 +192021,205.12,85.632 +192022,203.66,86.9342 +192023,202.15,88.2747 +192024,200.58,89.65842 +192025,203.81,85.6496 +192026,202.33,86.9253 +192027,200.8,88.2393 +192028,199.21,89.59617 +192029,202.51,85.6681 +192030,201,86.9168 +192031,199.45,88.2034 +192032,197.84,89.53287 +192033,201.2,85.6876 +192034,199.67,86.9085 +192035,198.1,88.1673 +192036,196.47,89.46855 +192037,199.89,85.7079 +192038,198.35,86.9005 +192039,196.75,88.1308 +192040,195.11,89.40324 +192041,198.58,85.7292 +192042,197.02,86.8929 +192043,195.41,88.0939 +192044,193.74,89.33696 +192045,197.27,85.7513 +192046,195.69,86.8855 +192047,194.06,88.0568 +192048,192.38,89.26973 +192049,195.95,85.7742 +192050,194.36,86.8783 +192051,192.71,88.0193 +192052,191.02,89.20157 +192053,194.64,85.7979 +192054,193.03,86.8715 +192055,191.37,87.9816 +192056,189.66,89.13252 +192057,193.33,85.8225 +192058,191.7,86.8649 +192059,190.02,87.9435 +192060,188.3,89.06259 +192061,192.01,85.8478 +192062,190.37,86.8585 +192063,188.68,87.9052 +192064,186.94,88.9918 +192065,190.69,85.8738 +192066,189.04,86.8524 +192067,187.34,87.8665 +192068,185.58,88.9202 +192069,189.37,85.9005 +192070,187.71,86.8466 +192071,185.99,87.8276 +192072,184.23,88.8478 +192073,188.05,85.928 +192074,186.37,86.8409 +192075,184.65,87.7885 +192076,182.87,88.7747 +192077,186.73,85.9561 +192078,185.04,86.8355 +192079,183.31,87.7491 +192080,181.52,88.7008 +192081,185.41,85.9848 +192082,183.71,86.8302 +192083,181.96,87.7094 +192084,180.17,88.6262 +192085,184.08,86.0141 +192086,182.38,86.8252 +192087,180.62,87.6696 +192088,178.82,88.5509 +192089,182.76,86.0441 +192090,181.04,86.8204 +192091,179.28,87.6295 +192092,177.47,88.475 +192093,181.43,86.0746 +192094,179.71,86.8157 +192095,177.94,87.5891 +192096,176.12,88.3985 +192097,180.1,86.1056 +192098,178.37,86.8112 +192099,176.6,87.5486 +192100,174.78,88.3213 +192101,178.77,86.1371 +192102,177.04,86.8069 +192103,175.26,87.5079 +192104,173.44,88.2436 +192105,177.44,86.1691 +192106,175.7,86.8027 +192107,173.92,87.467 +192108,172.09,88.1654 +192109,176.11,86.2015 +192110,174.37,86.7986 +192111,172.58,87.4259 +192112,170.75,88.0866 +192113,174.78,86.2344 +192114,173.03,86.7947 +192115,171.25,87.3847 +192116,169.41,88.0074 +192117,173.44,86.2676 +192118,171.7,86.7909 +192119,169.91,87.3433 +192120,168.07,87.9278 +192121,172.11,86.3012 +192122,170.36,86.7872 +192123,168.57,87.3018 +192124,166.74,87.8477 +192125,170.77,86.3352 +192126,169.02,86.7837 +192127,167.23,87.2601 +192128,165.4,87.7673 +192129,169.43,86.3694 +192130,167.69,86.7802 +192131,165.9,87.2183 +192132,164.07,87.6865 +192133,168.09,86.4039 +192134,166.35,86.7768 +192135,164.56,87.1764 +192136,162.74,87.6054 +192137,166.75,86.4387 +192138,165.01,86.7735 +192139,163.23,87.1344 +192140,161.4,87.524 +192141,165.41,86.4737 +192142,163.67,86.7702 +192143,161.89,87.0923 +192144,160.07,87.4423 +192145,164.07,86.5088 +192146,162.33,86.767 +192147,160.56,87.0501 +192148,158.75,87.3605 +192149,162.72,86.5441 +192150,160.99,86.7639 +192151,159.23,87.0078 +192152,157.42,87.2784 +192153,161.37,86.5796 +192154,159.65,86.7608 +192155,157.89,86.9655 +192156,156.09,87.1962 +192157,160.03,86.6152 +192158,158.31,86.7577 +192159,156.56,86.9231 +192160,154.77,87.1139 +192161,158.68,86.6508 +192162,156.97,86.7546 +192163,155.23,86.8807 +192164,153.45,87.0315 +192165,157.33,86.6865 +192166,155.63,86.7515 +192167,153.9,86.8383 +192168,152.13,86.949 +192169,155.98,86.7221 +192170,154.29,86.7484 +192171,152.57,86.7958 +192172,150.81,86.8665 +192173,154.62,86.7578 +192174,152.95,86.7453 +192175,151.23,86.7533 +192176,149.49,86.7839 +192177,153.27,86.7934 +192178,151.6,86.7422 +192179,149.9,86.7109 +192180,148.17,86.7015 +192181,151.91,86.8289 +192182,150.26,86.739 +192183,148.58,86.6684 +192184,146.86,86.6191 +192185,150.55,86.8644 +192186,148.92,86.7358 +192187,147.25,86.626 +192188,145.54,86.5368 +192189,149.2,86.8997 +192190,147.57,86.7326 +192191,145.92,86.5836 +192192,144.23,86.4546 +192193,147.84,86.9348 +192194,146.23,86.7292 +192195,144.59,86.5412 +192196,142.92,86.3726 +192197,146.48,86.9697 +192198,144.88,86.7258 +192199,143.26,86.4989 +192200,141.61,86.2908 +192201,145.11,87.0044 +192202,143.54,86.7223 +192203,141.93,86.4566 +192204,140.3,86.2092 +192205,143.75,87.0389 +192206,142.19,86.7188 +192207,140.61,86.4145 +192208,138.99,86.1279 +192209,142.39,87.0731 +192210,140.85,86.7151 +192211,139.28,86.3724 +192212,137.68,86.0468 +192213,141.02,87.1069 +192214,139.5,86.7113 +192215,137.96,86.3304 +192216,136.38,85.9661 +192217,139.65,87.1405 +192218,138.16,86.7073 +192219,136.63,86.2885 +192220,135.08,85.8857 +192221,138.29,87.1736 +192222,136.81,86.7033 +192223,135.3,86.2467 +192224,133.77,85.8057 +192225,136.92,87.2064 +192226,135.46,86.6991 +192227,133.98,86.2051 +192228,132.47,85.7262 +192229,135.55,87.2388 +192230,134.11,86.6947 +192231,132.66,86.1635 +192232,131.17,85.647 +192233,134.17,87.2707 +192234,132.77,86.6902 +192235,131.33,86.1222 +192236,129.87,85.5683 +192237,132.8,87.3021 +192238,131.42,86.6855 +192239,130.01,86.081 +192240,128.57,85.4902 +192241,131.43,87.333 +192242,130.07,86.6806 +192243,128.69,86.0399 +192244,127.28,85.4125 +192245,130.05,87.3634 +192246,128.72,86.6756 +192247,127.36,85.999 +192248,125.98,85.3354 +192249,128.68,87.3932 +192250,127.37,86.6703 +192251,126.04,85.9583 +192252,124.69,85.2589 +192253,127.3,87.4224 +192254,126.02,86.6648 +192255,124.72,85.9178 +192256,123.39,85.183 +192257,125.92,87.4511 +192258,124.67,86.6591 +192259,123.4,85.8775 +192260,122.1,85.1078 +192261,124.54,87.479 +192262,123.32,86.6532 +192263,122.08,85.8374 +192264,120.81,85.0332 +192265,123.16,87.5064 +192266,121.97,86.6471 +192267,120.76,85.7975 +192268,119.52,84.9593 +192269,121.78,87.533 +192270,120.62,86.6407 +192271,119.44,85.7579 +192272,118.23,84.8862 +192273,120.4,87.5589 +192274,119.27,86.6341 +192275,118.12,85.7184 +192276,116.94,84.8137 +192277,119.02,87.5841 +192278,117.92,86.6272 +192279,116.8,85.6793 +192280,115.65,84.7421 +192281,117.63,87.6085 +192282,116.57,86.62 +192283,115.48,85.6403 +192284,114.37,84.6712 +192285,116.25,87.6322 +192286,115.22,86.6125 +192287,114.16,85.6017 +192288,113.08,84.6012 +192289,114.86,87.655 +192290,113.86,86.6048 +192291,112.84,85.5633 +192292,111.8,84.532 +192293,113.47,87.677 +192294,112.51,86.5968 +192295,111.52,85.5252 +192296,110.51,84.4637 +192297,112.09,87.6981 +192298,111.16,86.5885 +192299,110.21,85.4873 +192300,109.23,84.3963 +192301,110.7,87.7184 +192302,109.81,86.5799 +192303,108.89,85.4498 +192304,107.95,84.3298 +192305,109.31,87.7377 +192306,108.45,86.5709 +192307,107.57,85.4126 +192308,106.67,84.2642 +192309,107.92,87.7562 +192310,107.1,86.5617 +192311,106.25,85.3756 +192312,105.38,84.1996 +192313,106.53,87.7737 +192314,105.75,86.5521 +192315,104.94,85.339 +192316,104.1,84.1359 +192317,105.14,87.7902 +192318,104.39,86.5422 +192319,103.62,85.3027 +192320,102.83,84.0733 +192321,103.75,87.8058 +192322,103.04,86.5319 +192323,102.3,85.2667 +192324,101.55,84.0117 +192325,102.36,87.8203 +192326,101.68,86.5213 +192327,100.99,85.2311 +192328,100.27,83.9511 +192329,100.96,87.8338 +192330,100.33,86.5104 +192331,99.673,85.1958 +192332,98.991,83.8916 +192333,99.57,87.8463 +192334,98.976,86.4991 +192335,98.358,85.1609 +192336,97.714,83.8331 +192337,98.176,87.8578 +192338,97.622,86.4874 +192339,97.042,85.1263 +192340,96.437,83.7757 +192341,96.782,87.8681 +192342,96.268,86.4753 +192343,95.727,85.092 +192344,95.161,83.7195 +192345,95.387,87.8774 +192346,94.913,86.4629 +192347,94.412,85.0582 +192348,93.886,83.6644 +192349,93.992,87.8855 +192350,93.558,86.4501 +192351,93.098,85.0247 +192352,92.611,83.6104 +192353,92.596,87.8926 +192354,92.203,86.4369 +192355,91.783,84.9915 +192356,91.337,83.5576 +192357,91.2,87.8984 +192358,90.848,86.4233 +192359,90.469,84.9588 +192360,90.062,83.5059 +192361,89.804,87.9032 +192362,89.493,86.4093 +192363,89.155,84.9264 +192364,88.789,83.4554 +192365,88.407,87.9067 +192366,88.138,86.3949 +192367,87.841,84.8945 +192368,87.515,83.4061 +192369,87.01,87.9091 +192370,86.783,86.3801 +192371,86.527,84.8629 +192372,86.242,83.3581 +192373,85.613,87.9103 +192374,85.428,86.3649 +192375,85.213,84.8317 +192376,84.969,83.3112 +192377,84.216,87.9103 +192378,84.073,86.3493 +192379,83.899,84.8009 +192380,83.696,83.2656 +192381,82.818,87.909 +192382,82.718,86.3333 +192383,82.586,84.7705 +192384,82.424,83.2212 +192385,81.42,87.9065 +192386,81.362,86.3168 +192387,81.272,84.7406 +192388,81.152,83.1781 +192389,80.023,87.9028 +192390,80.007,86.3 +192391,79.959,84.711 +192392,79.88,83.1362 +192393,78.625,87.8978 +192394,78.652,86.2827 +192395,78.645,84.6819 +192396,78.608,83.0956 +192397,77.227,87.8916 +192398,77.296,86.2649 +192399,77.332,84.6531 +192400,77.336,83.0563 +192401,75.829,87.8841 +192402,75.941,86.2468 +192403,76.019,84.6248 +192404,76.064,83.0183 +192405,74.431,87.8753 +192406,74.586,86.2282 +192407,74.706,84.597 +192408,74.792,82.9816 +192409,73.033,87.8652 +192410,73.231,86.2091 +192411,73.393,84.5695 +192412,73.521,82.9461 +192413,71.635,87.8539 +192414,71.876,86.1897 +192415,72.079,84.5425 +192416,72.249,82.912 +192417,70.237,87.8412 +192418,70.521,86.1698 +192419,70.766,84.5159 +192420,70.977,82.8791 +192421,68.84,87.8272 +192422,69.166,86.1494 +192423,69.453,84.4897 +192424,69.705,82.8476 +192425,67.442,87.812 +192426,67.811,86.1286 +192427,68.14,84.4639 +192428,68.433,82.8174 +192429,66.045,87.7954 +192430,66.456,86.1074 +192431,66.827,84.4386 +192432,67.16,82.7884 +192433,64.648,87.7775 +192434,65.102,86.0857 +192435,65.514,84.4138 +192436,65.888,82.7608 +192437,63.252,87.7582 +192438,63.747,86.0635 +192439,64.2,84.3893 +192440,64.615,82.7346 +192441,61.856,87.7377 +192442,62.393,86.041 +192443,62.887,84.3653 +192444,63.342,82.7096 +192445,60.46,87.7158 +192446,61.039,86.0179 +192447,61.574,84.3417 +192448,62.069,82.6859 +192449,59.064,87.6926 +192450,59.685,85.9945 +192451,60.26,84.3186 +192452,60.796,82.6636 +192453,57.669,87.6681 +192454,58.331,85.9705 +192455,58.947,84.2959 +192456,59.522,82.6426 +192457,56.275,87.6422 +192458,56.977,85.9462 +192459,57.633,84.2736 +192460,58.247,82.6228 +192461,54.88,87.615 +192462,55.624,85.9214 +192463,56.319,84.2517 +192464,56.973,82.6044 +192465,53.487,87.5865 +192466,54.27,85.8961 +192467,55.005,84.2303 +192468,55.698,82.5873 +192469,52.094,87.5567 +192470,52.917,85.8704 +192471,53.691,84.2093 +192472,54.422,82.5715 +192473,50.701,87.5256 +192474,51.564,85.8443 +192475,52.377,84.1887 +192476,53.146,82.557 +192477,49.31,87.4932 +192478,50.212,85.8177 +192479,51.063,84.1686 +192480,51.869,82.5437 +192481,47.918,87.4594 +192482,48.859,85.7907 +192483,49.748,84.1489 +192484,50.592,82.5317 +192485,46.528,87.4244 +192486,47.507,85.7633 +192487,48.433,84.1296 +192488,49.314,82.521 +192489,45.138,87.3881 +192490,46.155,85.7354 +192491,47.119,84.1107 +192492,48.036,82.5116 +192493,43.749,87.3504 +192494,44.803,85.7071 +192495,45.804,84.0923 +192496,46.757,82.5034 +192497,42.361,87.3115 +192498,43.452,85.6784 +192499,44.488,84.0742 +192500,45.477,82.4965 +192501,40.973,87.2714 +192502,42.101,85.6492 +192503,43.173,84.0566 +192504,44.197,82.4908 +192505,39.587,87.2299 +192506,40.75,85.6196 +192507,41.857,84.0393 +192508,42.916,82.4863 +192509,38.201,87.1872 +192510,39.4,85.5896 +192511,40.541,84.0225 +192512,41.634,82.483 +192513,36.816,87.1433 +192514,38.05,85.5592 +192515,39.225,84.0061 +192516,40.351,82.4809 +192517,35.432,87.0981 +192518,36.7,85.5284 +192519,37.909,83.99 +192520,39.068,82.48 +192521,34.049,87.0517 +192522,35.351,85.4972 +192523,36.592,83.9744 +192524,37.783,82.4803 +192525,32.667,87.0041 +192526,34.001,85.4656 +192527,35.275,83.9592 +192528,36.498,82.4817 +192529,31.287,86.9554 +192530,32.653,85.4335 +192531,33.958,83.9443 +192532,35.212,82.4843 +192533,29.907,86.9054 +192534,31.304,85.4011 +192535,32.641,83.9298 +192536,33.925,82.488 +192537,28.528,86.8542 +192538,29.956,85.3683 +192539,31.323,83.9157 +192540,32.638,82.4929 +192541,27.15,86.802 +192542,28.609,85.3352 +192543,30.005,83.9019 +192544,31.349,82.4988 +192545,25.773,86.7485 +192546,27.261,85.3016 +192547,28.687,83.8885 +192548,30.059,82.5058 +192549,24.398,86.694 +192550,25.914,85.2677 +192551,27.368,83.8755 +192552,28.768,82.5139 +192553,23.023,86.6383 +192554,24.568,85.2334 +192555,26.049,83.8628 +192556,27.477,82.523 +192557,21.65,86.5816 +192558,23.222,85.1987 +192559,24.73,83.8505 +192560,26.184,82.5332 +192561,20.278,86.5238 +192562,21.876,85.1637 +192563,23.41,83.8385 +192564,24.89,82.5444 +192565,18.907,86.4649 +192566,20.531,85.1284 +192567,22.09,83.8268 +192568,23.595,82.5565 +192569,17.538,86.405 +192570,19.186,85.0927 +192571,20.77,83.8155 +192572,22.299,82.5696 +192573,16.17,86.3441 +192574,17.842,85.0567 +192575,19.449,83.8044 +192576,21.002,82.5837 +192577,14.803,86.2822 +192578,16.498,85.0203 +192579,18.128,83.7937 +192580,19.703,82.5987 +192581,13.437,86.2194 +192582,15.155,84.9836 +192583,16.807,83.7833 +192584,18.404,82.6147 +192585,12.073,86.1555 +192586,13.812,84.9466 +192587,15.485,83.7732 +192588,17.103,82.6315 +192589,10.71,86.0908 +192590,12.469,84.9094 +192591,14.163,83.7634 +192592,15.801,82.6492 +192593,9.3478,86.0251 +192594,11.127,84.8718 +192595,12.841,83.7539 +192596,14.498,82.6677 +192597,7.9875,85.9586 +192598,9.7853,84.8339 +192599,11.518,83.7446 +192600,13.194,82.6871 +192601,6.6286,85.8912 +192602,8.4442,84.7957 +192603,10.194,83.7357 +192604,11.888,82.7072 +192605,5.2711,85.823 +192606,7.1035,84.7573 +192607,8.8706,83.7269 +192608,10.582,82.7281 +192609,3.915,85.7539 +192610,5.7634,84.7186 +192611,7.5465,83.7185 +192612,9.2736,82.7498 +192613,2.5604,85.6841 +192614,4.4237,84.6796 +192615,6.222,83.7103 +192616,7.9643,82.7722 +192617,1.2071,85.6135 +192618,3.0846,84.6404 +192619,4.8971,83.7023 +192620,6.6536,82.7954 +192621,359.86,85.5422 +192622,1.7459,84.601 +192623,3.5717,83.6945 +192624,5.3417,82.8191 +192625,358.51,85.4701 +192626,0.40773,84.5613 +192627,2.246,83.687 +192628,4.0284,82.8436 +192629,357.16,85.3974 +192630,359.07,84.5214 +192631,0.91979,83.6797 +192632,2.7138,82.8687 +192633,355.81,85.324 +192634,357.73,84.4813 +192635,359.59,83.6726 +192636,1.3978,82.8943 +192637,354.46,85.25 +192638,356.4,84.4409 +192639,358.27,83.6657 +192640,0.080546,82.9206 +192641,353.12,85.1754 +192642,355.06,84.4004 +192643,356.94,83.6589 +192644,358.76,82.9474 +192645,351.78,85.1002 +192646,353.72,84.3597 +192647,355.61,83.6524 +192648,357.44,82.9747 +192649,350.43,85.0244 +192650,352.39,84.3188 +192651,354.28,83.646 +192652,356.12,83.0025 +192653,349.09,84.9482 +192654,351.05,84.2778 +192655,352.95,83.6398 +192656,354.8,83.0308 +192657,347.76,84.8714 +192658,349.72,84.2365 +192659,351.62,83.6337 +192660,353.47,83.0596 +192661,346.42,84.7942 +192662,348.39,84.1952 +192663,350.29,83.6278 +192664,352.15,83.0887 +192665,345.08,84.7166 +192666,347.05,84.1536 +192667,348.96,83.622 +192668,350.82,83.1183 +192669,343.75,84.6385 +192670,345.72,84.112 +192671,347.63,83.6163 +192672,349.49,83.1482 +192673,342.42,84.5601 +192674,344.39,84.0702 +192675,346.3,83.6107 +192676,348.16,83.1784 +192677,341.09,84.4813 +192678,343.06,84.0284 +192679,344.97,83.6053 +192680,346.83,83.2089 +192681,339.76,84.4022 +192682,341.73,83.9864 +192683,343.64,83.5999 +192684,345.5,83.2398 +192685,338.43,84.3229 +192686,340.4,83.9443 +192687,342.31,83.5946 +192688,344.17,83.2708 +192689,337.1,84.2433 +192690,339.07,83.9021 +192691,340.97,83.5894 +192692,342.83,83.3021 +192693,335.78,84.1634 +192694,337.74,83.8599 +192695,339.64,83.5843 +192696,341.49,83.3336 +192697,334.46,84.0834 +192698,336.41,83.8176 +192699,338.31,83.5792 +192700,340.15,83.3652 +192701,333.14,84.0032 +192702,335.08,83.7753 +192703,336.97,83.5742 +192704,338.81,83.397 +192705,331.82,83.9229 +192706,333.75,83.7329 +192707,335.64,83.5692 +192708,337.47,83.4289 +192709,330.5,83.8424 +192710,332.43,83.6905 +192711,334.3,83.5642 +192712,336.13,83.4608 +192713,329.18,83.7619 +192714,331.1,83.648 +192715,332.97,83.5592 +192716,334.79,83.4928 +192717,327.86,83.6814 +192718,329.77,83.6056 +192719,331.63,83.5543 +192720,333.44,83.5249 +192721,326.55,83.6008 +192722,328.45,83.5631 +192723,330.3,83.5493 +192724,332.1,83.5569 +192725,325.24,83.5203 +192726,327.12,83.5207 +192727,328.96,83.5444 +192728,330.75,83.5889 +192729,323.93,83.4399 +192730,325.8,83.4782 +192731,327.62,83.5394 +192732,329.4,83.6208 +192733,322.62,83.3595 +192734,324.47,83.4358 +192735,326.28,83.5344 +192736,328.05,83.6526 +192737,321.31,83.2792 +192738,323.15,83.3935 +192739,324.95,83.5293 +192740,326.7,83.6843 +192741,320,83.1991 +192742,321.83,83.3512 +192743,323.61,83.5242 +192744,325.34,83.7158 +192745,318.7,83.1191 +192746,320.51,83.3089 +192747,322.27,83.5191 +192748,323.99,83.7472 +192749,317.39,83.0394 +192750,319.18,83.2667 +192751,320.93,83.5138 +192752,322.63,83.7784 +192753,316.09,82.9599 +192754,317.86,83.2246 +192755,319.59,83.5085 +192756,321.27,83.8093 +192757,314.79,82.8806 +192758,316.54,83.1826 +192759,318.25,83.5031 +192760,319.91,83.84 +192761,313.49,82.8017 +192762,315.22,83.1406 +192763,316.91,83.4976 +192764,318.55,83.8704 +192765,312.19,82.7231 +192766,313.9,83.0988 +192767,315.57,83.492 +192768,317.19,83.9004 +192769,310.89,82.6448 +192770,312.58,83.0571 +192771,314.22,83.4863 +192772,315.83,83.9302 +192773,309.6,82.5669 +192774,311.26,83.0155 +192775,312.88,83.4805 +192776,314.47,83.9595 +192777,308.3,82.4894 +192778,309.94,82.9741 +192779,311.54,83.4745 +192780,313.1,83.9885 +192781,307.01,82.4124 +192782,308.62,82.9328 +192783,310.2,83.4683 +192784,311.73,84.017 +192785,305.72,82.3359 +192786,307.31,82.8916 +192787,308.86,83.4621 +192788,310.37,84.0451 +192789,304.43,82.2598 +192790,305.99,82.8507 +192791,307.51,83.4556 +192792,309,84.0727 +192793,303.14,82.1843 +192794,304.67,82.8099 +192795,306.17,83.449 +192796,307.63,84.0998 +192797,301.85,82.1093 +192798,303.35,82.7692 +192799,304.82,83.4422 +192800,306.26,84.1263 +192801,300.56,82.0349 +192802,302.04,82.7288 +192803,303.48,83.4353 +192804,304.89,84.1523 +192805,299.28,81.9612 +192806,300.72,82.6886 +192807,302.13,83.4281 +192808,303.51,84.1778 +192809,297.99,81.888 +192810,299.41,82.6485 +192811,300.79,83.4207 +192812,302.14,84.2026 +192813,296.71,81.8155 +192814,298.09,82.6087 +192815,299.44,83.4131 +192816,300.76,84.2268 +192817,295.42,81.7437 +192818,296.78,82.5691 +192819,298.1,83.4053 +192820,299.38,84.2503 +192821,294.14,81.6727 +192822,295.46,82.5298 +192823,296.75,83.3973 +192824,298.01,84.2732 +192825,292.86,81.6023 +192826,294.15,82.4907 +192827,295.41,83.389 +192828,296.63,84.2954 +192829,291.58,81.5328 +192830,292.84,82.4518 +192831,294.06,83.3805 +192832,295.25,84.3168 +192833,290.3,81.464 +192834,291.52,82.4132 +192835,292.71,83.3717 +192836,293.87,84.3375 +192837,289.03,81.396 +192838,290.21,82.3749 +192839,291.36,83.3627 +192840,292.49,84.3574 +192841,287.75,81.3289 +192842,288.9,82.3368 +192843,290.02,83.3534 +192844,291.1,84.3766 +192845,286.47,81.2626 +192846,287.59,82.2991 +192847,288.67,83.3438 +192848,289.72,84.3949 +192849,285.2,81.1972 +192850,286.28,82.2616 +192851,287.32,83.3339 +192852,288.34,84.4124 +192853,283.92,81.1327 +192854,284.96,82.2244 +192855,285.97,83.3238 +192856,286.95,84.429 +192857,282.65,81.0691 +192858,283.65,82.1875 +192859,284.62,83.3133 +192860,285.57,84.4448 +192861,281.38,81.0065 +192862,282.34,82.1509 +192863,283.28,83.3026 +192864,284.18,84.4597 +192865,280.11,80.9448 +192866,281.03,82.1146 +192867,281.93,83.2915 +192868,282.79,84.4736 +192869,278.84,80.8841 +192870,279.72,82.0787 +192871,280.58,83.2801 +192872,281.4,84.4867 +192873,277.57,80.8244 +192874,278.41,82.0431 +192875,279.23,83.2684 +192876,280.01,84.4987 +192877,276.3,80.7658 +192878,277.1,82.0078 +192879,277.88,83.2564 +192880,278.62,84.5098 +192881,275.03,80.7081 +192882,275.79,81.9729 +192883,276.53,83.244 +192884,277.23,84.52 +192885,273.76,80.6516 +192886,274.48,81.9383 +192887,275.18,83.2313 +192888,275.84,84.5291 +192889,272.49,80.5961 +192890,273.17,81.9041 +192891,273.83,83.2183 +192892,274.45,84.5372 +192893,271.22,80.5417 +192894,271.87,81.8702 +192895,272.48,83.2049 +192896,273.06,84.5442 +192897,269.96,80.4884 +192898,270.56,81.8367 +192899,271.13,83.1912 +192900,271.67,84.5502 +192901,268.69,80.4362 +192902,269.25,81.8035 +192903,269.78,83.177 +192904,270.27,84.5552 +192905,267.43,80.3851 +192906,267.94,81.7708 +192907,268.43,83.1626 +192908,268.88,84.559 +192909,266.16,80.3353 +192910,266.63,81.7384 +192911,267.07,83.1477 +192912,267.49,84.5618 +192913,264.9,80.2865 +192914,265.32,81.7064 +192915,265.72,83.1325 +192916,266.09,84.5635 +192917,263.63,80.239 +192918,264.02,81.6748 +192919,264.37,83.1169 +192920,264.7,84.564 +192921,262.37,80.1926 +192922,262.71,81.6435 +192923,263.02,83.1009 +192924,263.3,84.5634 +192925,261.1,80.1474 +192926,261.4,81.6127 +192927,261.67,83.0845 +192928,261.91,84.5617 +192929,259.84,80.1034 +192930,260.09,81.5823 +192931,260.32,83.0678 +192932,260.51,84.5588 +192933,258.58,80.0607 +192934,258.79,81.5522 +192935,258.97,83.0506 +192936,259.12,84.5547 +192937,257.31,80.0191 +192938,257.48,81.5226 +192939,257.62,83.0331 +192940,257.72,84.5495 +192941,256.05,79.979 +192942,256.17,81.4934 +192943,256.26,83.0151 +192944,256.32,84.543 +192945,254.79,79.94 +192946,254.87,81.4646 +192947,254.91,82.9968 +192948,254.93,84.5354 +192949,253.52,79.902 +192950,253.56,81.4362 +192951,253.56,82.978 +192952,253.53,84.5266 +192953,252.26,79.865 +192954,252.25,81.4082 +192955,252.21,82.9589 +192956,252.14,84.5166 +192957,251,79.83 +192958,250.94,81.3807 +192959,250.86,82.9393 +192960,250.74,84.5053 +192961,249.74,79.796 +192962,249.64,81.3535 +192963,249.51,82.9193 +192964,249.34,84.4928 +192965,248.47,79.763 +192966,248.33,81.3268 +192967,248.16,82.8989 +192968,247.95,84.4791 +192969,247.21,79.732 +192970,247.02,81.3005 +192971,246.81,82.8781 +192972,246.55,84.4642 +192973,245.95,79.702 +192974,245.72,81.2746 +192975,245.45,82.8569 +192976,245.15,84.448 +192977,244.68,79.673 +192978,244.41,81.2492 +192979,244.1,82.8353 +192980,243.76,84.4306 +192981,243.42,79.645 +192982,243.1,81.2242 +192983,242.75,82.8132 +192984,242.36,84.4119 +192985,242.16,79.619 +192986,241.8,81.1996 +192987,241.4,82.7907 +192988,240.97,84.392 +192989,240.89,79.594 +192990,240.49,81.1754 +192991,240.05,82.7678 +192992,239.57,84.3709 +192993,239.63,79.57 +192994,239.18,81.1517 +192995,238.7,82.7445 +192996,238.18,84.3484 +192997,238.36,79.547 +192998,237.88,81.1283 +192999,237.35,82.7208 +193000,236.78,84.3248 +193001,237.1,79.526 +193002,236.57,81.1054 +193003,236,82.6967 +193004,235.39,84.2999 +193005,235.84,79.506 +193006,235.26,81.083 +193007,234.65,82.6721 +193008,233.99,84.2737 +193009,234.57,79.488 +193010,233.95,81.0609 +193011,233.3,82.6471 +193012,232.6,84.2463 +193013,233.3,79.47 +193014,232.65,81.0393 +193015,231.95,82.6217 +193016,231.21,84.2176 +193017,232.04,79.454 +193018,231.34,81.0181 +193019,230.6,82.5959 +193020,229.81,84.1877 +193021,230.77,79.439 +193022,230.03,80.9973 +193023,229.25,82.5697 +193024,228.42,84.1565 +193025,229.5,79.425 +193026,228.72,80.977 +193027,227.9,82.543 +193028,227.03,84.1242 +193029,228.24,79.413 +193030,227.42,80.957 +193031,226.55,82.516 +193032,225.64,84.0905 +193033,226.97,79.402 +193034,226.11,80.9375 +193035,225.2,82.4885 +193036,224.25,84.0557 +193037,225.7,79.392 +193038,224.8,80.9184 +193039,223.86,82.4607 +193040,222.86,84.0196 +193041,224.43,79.383 +193042,223.49,80.8997 +193043,222.51,82.4324 +193044,221.47,83.9823 +193045,223.16,79.376 +193046,222.18,80.8814 +193047,221.16,82.4038 +193048,220.08,83.9438 +193049,221.89,79.369 +193050,220.87,80.8635 +193051,219.81,82.3747 +193052,218.7,83.9041 +193053,220.62,79.364 +193054,219.56,80.846 +193055,218.46,82.3452 +193056,217.31,83.8632 +193057,219.34,79.36 +193058,218.25,80.8289 +193059,217.12,82.3154 +193060,215.92,83.8212 +193061,218.07,79.358 +193062,216.94,80.8122 +193063,215.77,82.2852 +193064,214.54,83.7779 +193065,216.8,79.356 +193066,215.63,80.7959 +193067,214.42,82.2545 +193068,213.16,83.7335 +193069,215.52,79.356 +193070,214.32,80.7799 +193071,213.08,82.2235 +193072,211.77,83.6879 +193073,214.24,79.356 +193074,213.01,80.7644 +193075,211.73,82.1922 +193076,210.39,83.6412 +193077,212.97,79.358 +193078,211.7,80.7492 +193079,210.39,82.1604 +193080,209.01,83.5934 +193081,211.69,79.361 +193082,210.39,80.7344 +193083,209.04,82.1283 +193084,207.63,83.5445 +193085,210.41,79.365 +193086,209.08,80.72 +193087,207.7,82.0958 +193088,206.25,83.4944 +193089,209.13,79.37 +193090,207.77,80.7059 +193091,206.35,82.063 +193092,204.87,83.4433 +193093,207.85,79.376 +193094,206.46,80.6922 +193095,205.01,82.0298 +193096,203.5,83.391 +193097,206.57,79.383 +193098,205.14,80.6788 +193099,203.66,81.9963 +193100,202.12,83.3378 +193101,205.29,79.392 +193102,203.83,80.6658 +193103,202.32,81.9624 +193104,200.75,83.2835 +193105,204,79.401 +193106,202.52,80.6531 +193107,200.98,81.9282 +193108,199.37,83.2281 +193109,202.72,79.411 +193110,201.2,80.6408 +193111,199.64,81.8937 +193112,198,83.1718 +193113,201.43,79.422 +193114,199.89,80.6288 +193115,198.29,81.8588 +193116,196.63,83.1144 +193117,200.14,79.434 +193118,198.58,80.6171 +193119,196.95,81.8236 +193120,195.26,83.0561 +193121,198.86,79.447 +193122,197.26,80.6057 +193123,195.61,81.7881 +193124,193.89,82.9968 +193125,197.57,79.461 +193126,195.95,80.5946 +193127,194.27,81.7523 +193128,192.53,82.9366 +193129,196.28,79.476 +193130,194.63,80.5838 +193131,192.93,81.7162 +193132,191.16,82.8754 +193133,194.98,79.491 +193134,193.32,80.5734 +193135,191.59,81.6798 +193136,189.8,82.8134 +193137,193.69,79.508 +193138,192,80.5632 +193139,190.25,81.6432 +193140,188.43,82.7505 +193141,192.4,79.525 +193142,190.68,80.5533 +193143,188.91,81.6062 +193144,187.07,82.6867 +193145,191.1,79.543 +193146,189.37,80.5436 +193147,187.57,81.569 +193148,185.71,82.6221 +193149,189.8,79.562 +193150,188.05,80.5343 +193151,186.24,81.5315 +193152,184.35,82.5567 +193153,188.51,79.582 +193154,186.73,80.5252 +193155,184.9,81.4938 +193156,182.99,82.4905 +193157,187.21,79.602 +193158,185.42,80.5163 +193159,183.56,81.4558 +193160,181.64,82.4235 +193161,185.9,79.623 +193162,184.1,80.5077 +193163,182.23,81.4176 +193164,180.28,82.3558 +193165,184.6,79.645 +193166,182.78,80.4993 +193167,180.89,81.3791 +193168,178.93,82.2874 +193169,183.3,79.668 +193170,181.46,80.4912 +193171,179.56,81.3404 +193172,177.58,82.2182 +193173,181.99,79.691 +193174,180.14,80.4832 +193175,178.22,81.3015 +193176,176.23,82.1484 +193177,180.69,79.714 +193178,178.82,80.4755 +193179,176.89,81.2624 +193180,174.88,82.078 +193181,179.38,79.738 +193182,177.5,80.468 +193183,175.55,81.2231 +193184,173.53,82.0069 +193185,178.07,79.763 +193186,176.18,80.4606 +193187,174.22,81.1836 +193188,172.19,81.9352 +193189,176.76,79.789 +193190,174.85,80.4535 +193191,172.89,81.144 +193192,170.85,81.863 +193193,175.45,79.814 +193194,173.53,80.4465 +193195,171.55,81.1041 +193196,169.5,81.7902 +193197,174.13,79.841 +193198,172.21,80.4397 +193199,170.22,81.0641 +193200,168.16,81.7169 +193201,172.82,79.867 +193202,170.89,80.4331 +193203,168.89,81.024 +193204,166.82,81.6431 +193205,171.5,79.895 +193206,169.56,80.4266 +193207,167.56,80.9837 +193208,165.49,81.5688 +193209,170.18,79.922 +193210,168.24,80.4202 +193211,166.23,80.9432 +193212,164.15,81.4941 +193213,168.86,79.95 +193214,166.92,80.414 +193215,164.9,80.9026 +193216,162.82,81.419 +193217,167.54,79.978 +193218,165.59,80.4079 +193219,163.57,80.862 +193220,161.48,81.3435 +193221,166.22,80.0071 +193222,164.26,80.4019 +193223,162.24,80.8212 +193224,160.15,81.2677 +193225,164.9,80.036 +193226,162.94,80.3961 +193227,160.92,80.7803 +193228,158.82,81.1915 +193229,163.57,80.0651 +193230,161.61,80.3903 +193231,159.59,80.7393 +193232,157.49,81.115 +193233,162.25,80.0945 +193234,160.29,80.3846 +193235,158.26,80.6982 +193236,156.17,81.0383 +193237,160.92,80.1241 +193238,158.96,80.3789 +193239,156.94,80.6571 +193240,154.84,80.9613 +193241,159.59,80.1539 +193242,157.63,80.3734 +193243,155.61,80.6159 +193244,153.52,80.8842 +193245,158.26,80.1838 +193246,156.3,80.3679 +193247,154.29,80.5746 +193248,152.2,80.8068 +193249,156.92,80.2138 +193250,154.97,80.3624 +193251,152.96,80.5333 +193252,150.88,80.7293 +193253,155.59,80.2439 +193254,153.64,80.357 +193255,151.64,80.492 +193256,149.56,80.6517 +193257,154.25,80.2741 +193258,152.31,80.3516 +193259,150.31,80.4506 +193260,148.25,80.574 +193261,152.92,80.3044 +193262,150.98,80.3463 +193263,148.99,80.4093 +193264,146.93,80.4962 +193265,151.58,80.3346 +193266,149.65,80.3409 +193267,147.67,80.3679 +193268,145.62,80.4184 +193269,150.24,80.3648 +193270,148.32,80.3356 +193271,146.35,80.3265 +193272,144.3,80.3406 +193273,148.9,80.395 +193274,146.99,80.3302 +193275,145.03,80.2852 +193276,142.99,80.2628 +193277,147.55,80.4251 +193278,145.66,80.3248 +193279,143.71,80.2439 +193280,141.69,80.185 +193281,146.21,80.4551 +193282,144.33,80.3194 +193283,142.39,80.2026 +193284,140.38,80.1074 +193285,144.86,80.485 +193286,142.99,80.314 +193287,141.07,80.1614 +193288,139.07,80.0299 +193289,143.52,80.5147 +193290,141.66,80.3085 +193291,139.75,80.1202 +193292,137.77,79.952 +193293,142.17,80.5443 +193294,140.33,80.3029 +193295,138.43,80.079 +193296,136.47,79.875 +193297,140.82,80.5736 +193298,138.99,80.2973 +193299,137.11,80.038 +193300,135.17,79.798 +193301,139.47,80.6027 +193302,137.66,80.2916 +193303,135.79,79.997 +193304,133.87,79.722 +193305,138.11,80.6315 +193306,136.32,80.2858 +193307,134.48,79.956 +193308,132.57,79.645 +193309,136.76,80.66 +193310,134.99,80.28 +193311,133.16,79.915 +193312,131.27,79.569 +193313,135.4,80.6883 +193314,133.65,80.274 +193315,131.84,79.875 +193316,129.98,79.493 +193317,134.05,80.7161 +193318,132.31,80.2679 +193319,130.53,79.834 +193320,128.68,79.417 +193321,132.69,80.7436 +193322,130.98,80.2618 +193323,129.21,79.794 +193324,127.39,79.342 +193325,131.33,80.7707 +193326,129.64,80.2554 +193327,127.9,79.754 +193328,126.1,79.267 +193329,129.97,80.7974 +193330,128.3,80.249 +193331,126.58,79.713 +193332,124.81,79.193 +193333,128.6,80.8236 +193334,126.96,80.2424 +193335,125.27,79.673 +193336,123.52,79.119 +193337,127.24,80.8494 +193338,125.62,80.2356 +193339,123.96,79.634 +193340,122.24,79.046 +193341,125.88,80.8746 +193342,124.28,80.2287 +193343,122.64,79.594 +193344,120.95,78.973 +193345,124.51,80.8993 +193346,122.94,80.2216 +193347,121.33,79.555 +193348,119.67,78.901 +193349,123.14,80.9235 +193350,121.6,80.2143 +193351,120.02,79.515 +193352,118.38,78.829 +193353,121.77,80.9471 +193354,120.26,80.2068 +193355,118.71,79.476 +193356,117.1,78.758 +193357,120.4,80.9701 +193358,118.92,80.1992 +193359,117.4,79.437 +193360,115.82,78.687 +193361,119.03,80.9925 +193362,117.58,80.1913 +193363,116.09,79.399 +193364,114.54,78.617 +193365,117.66,81.0143 +193366,116.24,80.1832 +193367,114.78,79.36 +193368,113.27,78.548 +193369,116.29,81.0353 +193370,114.9,80.1749 +193371,113.47,79.322 +193372,111.99,78.479 +193373,114.91,81.0557 +193374,113.56,80.1664 +193375,112.16,79.284 +193376,110.71,78.412 +193377,113.54,81.0754 +193378,112.21,80.1576 +193379,110.85,79.247 +193380,109.44,78.345 +193381,112.16,81.0944 +193382,110.87,80.1486 +193383,109.54,79.209 +193384,108.17,78.278 +193385,110.78,81.1126 +193386,109.53,80.1394 +193387,108.23,79.172 +193388,106.89,78.213 +193389,109.4,81.13 +193390,108.19,80.1299 +193391,106.93,79.135 +193392,105.62,78.148 +193393,108.03,81.1466 +193394,106.84,80.1201 +193395,105.62,79.099 +193396,104.35,78.084 +193397,106.64,81.1624 +193398,105.5,80.1101 +193399,104.31,79.062 +193400,103.08,78.021 +193401,105.26,81.1774 +193402,104.15,80.0997 +193403,103,79.026 +193404,101.82,77.959 +193405,103.88,81.1915 +193406,102.81,80.0891 +193407,101.7,78.991 +193408,100.55,77.898 +193409,102.5,81.2047 +193410,101.46,80.0782 +193411,100.39,78.955 +193412,99.282,77.838 +193413,101.11,81.2171 +193414,100.12,80.067 +193415,99.087,78.92 +193416,98.017,77.778 +193417,99.729,81.2285 +193418,98.773,80.0555 +193419,97.781,78.885 +193420,96.752,77.72 +193421,98.343,81.239 +193422,97.428,80.0437 +193423,96.476,78.851 +193424,95.488,77.663 +193425,96.957,81.2486 +193426,96.082,80.0316 +193427,95.171,78.817 +193428,94.225,77.606 +193429,95.569,81.2572 +193430,94.736,80.0191 +193431,93.867,78.783 +193432,92.962,77.551 +193433,94.182,81.2648 +193434,93.389,80.0063 +193435,92.563,78.75 +193436,91.701,77.496 +193437,92.793,81.2715 +193438,92.043,79.993 +193439,91.259,78.716 +193440,90.44,77.443 +193441,91.404,81.2771 +193442,90.696,79.98 +193443,89.955,78.684 +193444,89.179,77.391 +193445,90.014,81.2817 +193446,89.349,79.966 +193447,88.651,78.651 +193448,87.919,77.34 +193449,88.623,81.2853 +193450,88.002,79.952 +193451,87.348,78.619 +193452,86.66,77.29 +193453,87.232,81.2878 +193454,86.655,79.937 +193455,86.045,78.588 +193456,85.401,77.241 +193457,85.841,81.2893 +193458,85.308,79.923 +193459,84.742,78.556 +193460,84.143,77.193 +193461,84.449,81.2897 +193462,83.96,79.907 +193463,83.439,78.526 +193464,82.885,77.146 +193465,83.056,81.289 +193466,82.613,79.892 +193467,82.137,78.495 +193468,81.628,77.101 +193469,81.663,81.2871 +193470,81.265,79.876 +193471,80.834,78.465 +193472,80.371,77.056 +193473,80.27,81.2842 +193474,79.917,79.86 +193475,79.532,78.435 +193476,79.115,77.013 +193477,78.877,81.2802 +193478,78.569,79.843 +193479,78.23,78.406 +193480,77.859,76.971 +193481,77.483,81.2751 +193482,77.221,79.826 +193483,76.928,78.377 +193484,76.603,76.93 +193485,76.088,81.2688 +193486,75.873,79.808 +193487,75.626,78.348 +193488,75.347,76.89 +193489,74.694,81.2613 +193490,74.525,79.791 +193491,74.324,78.32 +193492,74.092,76.852 +193493,73.299,81.2527 +193494,73.177,79.772 +193495,73.022,78.292 +193496,72.836,76.815 +193497,71.904,81.243 +193498,71.829,79.754 +193499,71.721,78.265 +193500,71.581,76.779 +193501,70.509,81.232 +193502,70.48,79.735 +193503,70.419,78.238 +193504,70.326,76.744 +193505,69.114,81.2199 +193506,69.132,79.715 +193507,69.118,78.212 +193508,69.071,76.71 +193509,67.719,81.2067 +193510,67.784,79.696 +193511,67.816,78.186 +193512,67.817,76.678 +193513,66.324,81.1922 +193514,66.436,79.675 +193515,66.515,78.16 +193516,66.562,76.647 +193517,64.928,81.1765 +193518,65.087,79.655 +193519,65.213,78.135 +193520,65.307,76.617 +193521,63.533,81.1597 +193522,63.739,79.634 +193523,63.912,78.11 +193524,64.052,76.589 +193525,62.138,81.1417 +193526,62.391,79.613 +193527,62.611,78.085 +193528,62.797,76.561 +193529,60.743,81.1224 +193530,61.043,79.591 +193531,61.309,78.061 +193532,61.542,76.535 +193533,59.348,81.102 +193534,59.695,79.569 +193535,60.008,78.038 +193536,60.287,76.51 +193537,57.953,81.0803 +193538,58.347,79.546 +193539,58.706,78.015 +193540,59.031,76.487 +193541,56.558,81.0575 +193542,57,79.523 +193543,57.405,77.992 +193544,57.775,76.464 +193545,55.164,81.0334 +193546,55.652,79.5 +193547,56.103,77.969 +193548,56.519,76.443 +193549,53.77,81.0082 +193550,54.304,79.476 +193551,54.801,77.947 +193552,55.263,76.424 +193553,52.376,80.9818 +193554,52.957,79.452 +193555,53.499,77.926 +193556,54.006,76.405 +193557,50.983,80.9541 +193558,51.61,79.427 +193559,52.198,77.905 +193560,52.749,76.388 +193561,49.59,80.9253 +193562,50.263,79.402 +193563,50.896,77.884 +193564,51.492,76.372 +193565,48.198,80.8952 +193566,48.916,79.377 +193567,49.593,77.864 +193568,50.234,76.357 +193569,46.806,80.864 +193570,47.569,79.351 +193571,48.291,77.844 +193572,48.976,76.343 +193573,45.414,80.8316 +193574,46.222,79.325 +193575,46.989,77.825 +193576,47.717,76.331 +193577,44.023,80.798 +193578,44.876,79.298 +193579,45.686,77.805 +193580,46.457,76.319 +193581,42.633,80.7632 +193582,43.53,79.271 +193583,44.384,77.787 +193584,45.197,76.309 +193585,41.243,80.7273 +193586,42.184,79.244 +193587,43.081,77.769 +193588,43.937,76.301 +193589,39.854,80.6902 +193590,40.838,79.216 +193591,41.777,77.751 +193592,42.676,76.293 +193593,38.465,80.652 +193594,39.493,79.188 +193595,40.474,77.733 +193596,41.414,76.287 +193597,37.077,80.6126 +193598,38.148,79.16 +193599,39.171,77.716 +193600,40.151,76.281 +193601,35.69,80.572 +193602,36.803,79.131 +193603,37.867,77.7 +193604,38.888,76.277 +193605,34.304,80.5304 +193606,35.458,79.102 +193607,36.563,77.683 +193608,37.624,76.275 +193609,32.918,80.4876 +193610,34.114,79.072 +193611,35.259,77.667 +193612,36.359,76.273 +193613,31.534,80.4437 +193614,32.77,79.042 +193615,33.954,77.652 +193616,35.093,76.272 +193617,30.15,80.3987 +193618,31.426,79.012 +193619,32.65,77.637 +193620,33.827,76.273 +193621,28.767,80.3526 +193622,30.083,78.981 +193623,31.345,77.622 +193624,32.559,76.274 +193625,27.385,80.3055 +193626,28.74,78.95 +193627,30.039,77.608 +193628,31.291,76.277 +193629,26.004,80.2573 +193630,27.397,78.919 +193631,28.734,77.594 +193632,30.021,76.28 +193633,24.624,80.208 +193634,26.055,78.887 +193635,27.428,77.58 +193636,28.751,76.285 +193637,23.246,80.1577 +193638,24.713,78.855 +193639,26.122,77.566 +193640,27.48,76.291 +193641,21.868,80.1064 +193642,23.371,78.823 +193643,24.815,77.554 +193644,26.208,76.298 +193645,20.491,80.054 +193646,22.03,78.79 +193647,23.508,77.541 +193648,24.934,76.306 +193649,19.115,80.0007 +193650,20.689,78.757 +193651,22.201,77.529 +193652,23.66,76.315 +193653,17.741,79.946 +193654,19.349,78.724 +193655,20.893,77.517 +193656,22.384,76.324 +193657,16.368,79.891 +193658,18.009,78.69 +193659,19.586,77.505 +193660,21.108,76.335 +193661,14.996,79.835 +193662,16.669,78.656 +193663,18.277,77.494 +193664,19.83,76.347 +193665,13.625,79.778 +193666,15.33,78.622 +193667,16.969,77.483 +193668,18.551,76.359 +193669,12.255,79.72 +193670,13.991,78.587 +193671,15.66,77.472 +193672,17.271,76.373 +193673,10.887,79.661 +193674,12.653,78.552 +193675,14.35,77.461 +193676,15.99,76.387 +193677,9.5202,79.601 +193678,11.315,78.517 +193679,13.04,77.451 +193680,14.707,76.403 +193681,8.1546,79.541 +193682,9.9773,78.482 +193683,11.73,77.441 +193684,13.423,76.419 +193685,6.7903,79.479 +193686,8.6404,78.446 +193687,10.42,77.432 +193688,12.138,76.436 +193689,5.4275,79.417 +193690,7.3039,78.41 +193691,9.1085,77.423 +193692,10.852,76.453 +193693,4.066,79.354 +193694,5.9679,78.374 +193695,7.797,77.414 +193696,9.5639,76.472 +193697,2.706,79.29 +193698,4.6324,78.337 +193699,6.4852,77.405 +193700,8.2749,76.491 +193701,1.3475,79.225 +193702,3.2974,78.301 +193703,5.1728,77.396 +193704,6.9845,76.511 +193705,359.99,79.16 +193706,1.9629,78.264 +193707,3.86,77.388 +193708,5.6927,76.531 +193709,358.63,79.094 +193710,0.62885,78.227 +193711,2.5468,77.38 +193712,4.3996,76.553 +193713,357.28,79.027 +193714,359.3,78.189 +193715,1.2332,77.372 +193716,3.1051,76.574 +193717,355.93,78.96 +193718,357.96,78.152 +193719,359.92,77.365 +193720,1.8091,76.597 +193721,354.58,78.892 +193722,356.63,78.114 +193723,358.6,77.357 +193724,0.51177,76.62 +193725,353.23,78.824 +193726,355.3,78.076 +193727,357.29,77.35 +193728,359.21,76.644 +193729,351.88,78.754 +193730,353.97,78.038 +193731,355.97,77.343 +193732,357.91,76.668 +193733,350.53,78.685 +193734,352.64,77.999 +193735,354.66,77.336 +193736,356.61,76.693 +193737,349.19,78.614 +193738,351.31,77.961 +193739,353.34,77.329 +193740,355.31,76.718 +193741,347.85,78.544 +193742,349.98,77.922 +193743,352.02,77.323 +193744,354,76.744 +193745,346.5,78.472 +193746,348.65,77.883 +193747,350.71,77.317 +193748,352.7,76.77 +193749,345.16,78.401 +193750,347.32,77.844 +193751,349.39,77.31 +193752,351.39,76.797 +193753,343.83,78.329 +193754,345.99,77.805 +193755,348.07,77.304 +193756,350.08,76.824 +193757,342.49,78.256 +193758,344.66,77.766 +193759,346.75,77.299 +193760,348.77,76.851 +193761,341.15,78.183 +193762,343.33,77.727 +193763,345.43,77.293 +193764,347.46,76.879 +193765,339.82,78.11 +193766,342.01,77.687 +193767,344.11,77.287 +193768,346.14,76.907 +193769,338.49,78.036 +193770,340.68,77.648 +193771,342.79,77.282 +193772,344.83,76.935 +193773,337.16,77.963 +193774,339.36,77.608 +193775,341.47,77.276 +193776,343.51,76.964 +193777,335.83,77.888 +193778,338.03,77.568 +193779,340.15,77.271 +193780,342.19,76.993 +193781,334.51,77.814 +193782,336.71,77.529 +193783,338.83,77.265 +193784,340.87,77.022 +193785,333.18,77.74 +193786,335.38,77.489 +193787,337.5,77.26 +193788,339.55,77.051 +193789,331.86,77.665 +193790,334.06,77.449 +193791,336.18,77.255 +193792,338.23,77.08 +193793,330.54,77.59 +193794,332.74,77.409 +193795,334.86,77.25 +193796,336.9,77.11 +193797,329.22,77.515 +193798,331.42,77.369 +193799,333.53,77.245 +193800,335.58,77.139 +193801,327.9,77.44 +193802,330.1,77.329 +193803,332.21,77.24 +193804,334.25,77.169 +193805,326.58,77.365 +193806,328.77,77.289 +193807,330.88,77.235 +193808,332.92,77.199 +193809,325.27,77.289 +193810,327.45,77.249 +193811,329.56,77.23 +193812,331.59,77.229 +193813,323.95,77.214 +193814,326.13,77.209 +193815,328.23,77.225 +193816,330.26,77.258 +193817,322.64,77.139 +193818,324.82,77.169 +193819,326.91,77.22 +193820,328.92,77.288 +193821,321.33,77.064 +193822,323.5,77.129 +193823,325.58,77.215 +193824,327.59,77.317 +193825,320.03,76.988 +193826,322.18,77.089 +193827,324.25,77.21 +193828,326.25,77.347 +193829,318.72,76.913 +193830,320.86,77.049 +193831,322.92,77.205 +193832,324.91,77.376 +193833,317.41,76.839 +193834,319.54,77.01 +193835,321.59,77.199 +193836,323.57,77.405 +193837,316.11,76.764 +193838,318.23,76.97 +193839,320.27,77.194 +193840,322.23,77.434 +193841,314.81,76.689 +193842,316.91,76.93 +193843,318.94,77.189 +193844,320.89,77.463 +193845,313.51,76.615 +193846,315.6,76.89 +193847,317.61,77.184 +193848,319.54,77.492 +193849,312.21,76.541 +193850,314.28,76.851 +193851,316.28,77.178 +193852,318.2,77.52 +193853,310.92,76.467 +193854,312.97,76.812 +193855,314.94,77.173 +193856,316.85,77.548 +193857,309.62,76.394 +193858,311.66,76.772 +193859,313.61,77.167 +193860,315.5,77.576 +193861,308.33,76.32 +193862,310.34,76.733 +193863,312.28,77.161 +193864,314.15,77.603 +193865,307.04,76.247 +193866,309.03,76.694 +193867,310.95,77.156 +193868,312.8,77.63 +193869,305.75,76.175 +193870,307.72,76.655 +193871,309.62,77.15 +193872,311.45,77.657 +193873,304.46,76.103 +193874,306.41,76.616 +193875,308.28,77.144 +193876,310.09,77.683 +193877,303.17,76.031 +193878,305.09,76.578 +193879,306.95,77.137 +193880,308.74,77.709 +193881,301.88,75.96 +193882,303.78,76.539 +193883,305.61,77.131 +193884,307.38,77.734 +193885,300.6,75.89 +193886,302.47,76.501 +193887,304.28,77.125 +193888,306.02,77.759 +193889,299.32,75.82 +193890,301.16,76.463 +193891,302.94,77.118 +193892,304.66,77.783 +193893,298.04,75.75 +193894,299.86,76.425 +193895,301.61,77.111 +193896,303.3,77.807 +193897,296.76,75.681 +193898,298.55,76.387 +193899,300.27,77.104 +193900,301.94,77.83 +193901,295.48,75.613 +193902,297.24,76.349 +193903,298.94,77.097 +193904,300.57,77.853 +193905,294.2,75.545 +193906,295.93,76.312 +193907,297.6,77.089 +193908,299.21,77.875 +193909,292.92,75.478 +193910,294.62,76.275 +193911,296.26,77.082 +193912,297.84,77.896 +193913,291.65,75.411 +193914,293.32,76.238 +193915,294.92,77.074 +193916,296.47,77.917 +193917,290.38,75.345 +193918,292.01,76.201 +193919,293.59,77.066 +193920,295.1,77.937 +193921,289.1,75.28 +193922,290.71,76.165 +193923,292.25,77.057 +193924,293.73,77.956 +193925,287.83,75.216 +193926,289.4,76.129 +193927,290.91,77.049 +193928,292.36,77.975 +193929,286.56,75.152 +193930,288.1,76.093 +193931,289.57,77.04 +193932,290.99,77.992 +193933,285.29,75.09 +193934,286.79,76.057 +193935,288.23,77.031 +193936,289.61,78.01 +193937,284.03,75.028 +193938,285.49,76.022 +193939,286.89,77.022 +193940,288.24,78.026 +193941,282.76,74.967 +193942,284.18,75.987 +193943,285.55,77.012 +193944,286.86,78.041 +193945,281.5,74.906 +193946,282.88,75.952 +193947,284.21,77.002 +193948,285.49,78.056 +193949,280.23,74.847 +193950,281.58,75.917 +193951,282.87,76.992 +193952,284.11,78.07 +193953,278.97,74.788 +193954,280.27,75.883 +193955,281.53,76.982 +193956,282.73,78.083 +193957,277.71,74.731 +193958,278.97,75.849 +193959,280.18,76.971 +193960,281.35,78.095 +193961,276.45,74.674 +193962,277.67,75.816 +193963,278.84,76.96 +193964,279.97,78.106 +193965,275.19,74.618 +193966,276.37,75.782 +193967,277.5,76.949 +193968,278.59,78.117 +193969,273.93,74.564 +193970,275.07,75.749 +193971,276.16,76.937 +193972,277.2,78.126 +193973,272.67,74.51 +193974,273.77,75.717 +193975,274.82,76.925 +193976,275.82,78.134 +193977,271.41,74.457 +193978,272.46,75.684 +193979,273.47,76.913 +193980,274.44,78.142 +193981,270.15,74.406 +193982,271.16,75.652 +193983,272.13,76.901 +193984,273.05,78.148 +193985,268.9,74.355 +193986,269.86,75.621 +193987,270.79,76.888 +193988,271.67,78.154 +193989,267.64,74.305 +193990,268.56,75.59 +193991,269.44,76.875 +193992,270.28,78.158 +193993,266.39,74.257 +193994,267.26,75.559 +193995,268.1,76.861 +193996,268.89,78.162 +193997,265.14,74.209 +193998,265.97,75.528 +193999,266.75,76.847 +194000,267.5,78.164 +194001,263.88,74.163 +194002,264.67,75.498 +194003,265.41,76.833 +194004,266.11,78.166 +194005,262.63,74.118 +194006,263.37,75.468 +194007,264.07,76.818 +194008,264.73,78.166 +194009,261.38,74.073 +194010,262.07,75.439 +194011,262.72,76.803 +194012,263.34,78.165 +194013,260.13,74.03 +194014,260.77,75.41 +194015,261.38,76.788 +194016,261.94,78.164 +194017,258.88,73.988 +194018,259.47,75.381 +194019,260.03,76.772 +194020,260.55,78.161 +194021,257.62,73.948 +194022,258.17,75.353 +194023,258.69,76.756 +194024,259.16,78.157 +194025,256.37,73.908 +194026,256.88,75.325 +194027,257.34,76.74 +194028,257.77,78.152 +194029,255.12,73.87 +194030,255.58,75.297 +194031,255.99,76.723 +194032,256.38,78.146 +194033,253.88,73.833 +194034,254.28,75.27 +194035,254.65,76.706 +194036,254.98,78.138 +194037,252.63,73.797 +194038,252.98,75.243 +194039,253.3,76.688 +194040,253.59,78.13 +194041,251.38,73.762 +194042,251.68,75.217 +194043,251.96,76.67 +194044,252.2,78.12 +194045,250.13,73.728 +194046,250.39,75.191 +194047,250.61,76.652 +194048,250.8,78.109 +194049,248.88,73.696 +194050,249.09,75.166 +194051,249.27,76.633 +194052,249.41,78.098 +194053,247.63,73.664 +194054,247.79,75.141 +194055,247.92,76.614 +194056,248.02,78.085 +194057,246.38,73.635 +194058,246.5,75.116 +194059,246.58,76.595 +194060,246.62,78.07 +194061,245.14,73.606 +194062,245.2,75.091 +194063,245.23,76.575 +194064,245.23,78.055 +194065,243.89,73.578 +194066,243.9,75.068 +194067,243.88,76.555 +194068,243.83,78.038 +194069,242.64,73.552 +194070,242.6,75.044 +194071,242.54,76.534 +194072,242.44,78.021 +194073,241.39,73.527 +194074,241.31,75.021 +194075,241.19,76.513 +194076,241.04,78.002 +194077,240.14,73.503 +194078,240.01,74.998 +194079,239.85,76.492 +194080,239.65,77.982 +194081,238.89,73.48 +194082,238.71,74.976 +194083,238.5,76.47 +194084,238.25,77.961 +194085,237.65,73.459 +194086,237.42,74.954 +194087,237.15,76.448 +194088,236.86,77.938 +194089,236.4,73.439 +194090,236.12,74.933 +194091,235.81,76.425 +194092,235.46,77.915 +194093,235.15,73.42 +194094,234.82,74.912 +194095,234.46,76.402 +194096,234.07,77.89 +194097,233.9,73.402 +194098,233.52,74.891 +194099,233.12,76.379 +194100,232.68,77.864 +194101,232.65,73.386 +194102,232.23,74.871 +194103,231.77,76.355 +194104,231.28,77.837 +194105,231.4,73.371 +194106,230.93,74.851 +194107,230.43,76.331 +194108,229.89,77.809 +194109,230.15,73.357 +194110,229.63,74.831 +194111,229.08,76.306 +194112,228.5,77.779 +194113,228.9,73.344 +194114,228.33,74.812 +194115,227.74,76.281 +194116,227.1,77.749 +194117,227.65,73.332 +194118,227.04,74.794 +194119,226.39,76.256 +194120,225.71,77.717 +194121,226.4,73.322 +194122,225.74,74.776 +194123,225.05,76.23 +194124,224.32,77.684 +194125,225.15,73.312 +194126,224.44,74.758 +194127,223.7,76.204 +194128,222.93,77.65 +194129,223.89,73.304 +194130,223.14,74.74 +194131,222.36,76.177 +194132,221.54,77.615 +194133,222.64,73.297 +194134,221.84,74.723 +194135,221.01,76.151 +194136,220.14,77.578 +194137,221.39,73.292 +194138,220.55,74.707 +194139,219.67,76.123 +194140,218.75,77.541 +194141,220.13,73.287 +194142,219.25,74.69 +194143,218.33,76.096 +194144,217.37,77.502 +194145,218.88,73.284 +194146,217.95,74.675 +194147,216.98,76.068 +194148,215.98,77.463 +194149,217.62,73.282 +194150,216.65,74.659 +194151,215.64,76.039 +194152,214.59,77.422 +194153,216.36,73.28 +194154,215.35,74.644 +194155,214.3,76.011 +194156,213.2,77.38 +194157,215.11,73.28 +194158,214.05,74.629 +194159,212.95,75.982 +194160,211.81,77.337 +194161,213.85,73.281 +194162,212.75,74.615 +194163,211.61,75.952 +194164,210.43,77.293 +194165,212.59,73.284 +194166,211.45,74.601 +194167,210.27,75.922 +194168,209.04,77.248 +194169,211.33,73.287 +194170,210.15,74.587 +194171,208.93,75.892 +194172,207.66,77.202 +194173,210.07,73.291 +194174,208.85,74.574 +194175,207.59,75.862 +194176,206.28,77.154 +194177,208.81,73.296 +194178,207.55,74.561 +194179,206.25,75.831 +194180,204.89,77.106 +194181,207.54,73.303 +194182,206.25,74.548 +194183,204.9,75.8 +194184,203.51,77.057 +194185,206.28,73.31 +194186,204.95,74.536 +194187,203.56,75.768 +194188,202.13,77.007 +194189,205.02,73.318 +194190,203.64,74.524 +194191,202.22,75.736 +194192,200.75,76.955 +194193,203.75,73.328 +194194,202.34,74.512 +194195,200.88,75.704 +194196,199.37,76.903 +194197,202.48,73.338 +194198,201.04,74.501 +194199,199.55,75.672 +194200,198,76.85 +194201,201.22,73.349 +194202,199.74,74.49 +194203,198.21,75.639 +194204,196.62,76.796 +194205,199.95,73.361 +194206,198.43,74.479 +194207,196.87,75.606 +194208,195.24,76.741 +194209,198.68,73.374 +194210,197.13,74.469 +194211,195.53,75.573 +194212,193.87,76.685 +194213,197.4,73.388 +194214,195.82,74.459 +194215,194.19,75.539 +194216,192.5,76.628 +194217,196.13,73.403 +194218,194.52,74.449 +194219,192.85,75.505 +194220,191.13,76.571 +194221,194.86,73.419 +194222,193.22,74.44 +194223,191.52,75.471 +194224,189.76,76.512 +194225,193.58,73.435 +194226,191.91,74.431 +194227,190.18,75.436 +194228,188.39,76.453 +194229,192.31,73.452 +194230,190.6,74.422 +194231,188.85,75.402 +194232,187.02,76.393 +194233,191.03,73.47 +194234,189.3,74.413 +194235,187.51,75.367 +194236,185.65,76.332 +194237,189.75,73.489 +194238,187.99,74.405 +194239,186.17,75.331 +194240,184.29,76.27 +194241,188.47,73.508 +194242,186.69,74.396 +194243,184.84,75.296 +194244,182.92,76.208 +194245,187.19,73.529 +194246,185.38,74.388 +194247,183.51,75.26 +194248,181.56,76.145 +194249,185.9,73.55 +194250,184.07,74.381 +194251,182.17,75.224 +194252,180.2,76.081 +194253,184.62,73.571 +194254,182.76,74.373 +194255,180.84,75.188 +194256,178.84,76.016 +194257,183.33,73.593 +194258,181.45,74.366 +194259,179.51,75.152 +194260,177.48,75.951 +194261,182.05,73.616 +194262,180.14,74.359 +194263,178.17,75.115 +194264,176.13,75.885 +194265,180.76,73.64 +194266,178.83,74.352 +194267,176.84,75.078 +194268,174.77,75.819 +194269,179.47,73.664 +194270,177.52,74.346 +194271,175.51,75.041 +194272,173.42,75.752 +194273,178.18,73.688 +194274,176.21,74.339 +194275,174.18,75.004 +194276,172.07,75.684 +194277,176.88,73.713 +194278,174.9,74.333 +194279,172.85,74.967 +194280,170.72,75.616 +194281,175.59,73.739 +194282,173.59,74.327 +194283,171.52,74.929 +194284,169.37,75.547 +194285,174.29,73.765 +194286,172.28,74.321 +194287,170.19,74.892 +194288,168.02,75.478 +194289,172.99,73.791 +194290,170.97,74.315 +194291,168.86,74.854 +194292,166.68,75.408 +194293,171.69,73.818 +194294,169.65,74.309 +194295,167.54,74.816 +194296,165.33,75.338 +194297,170.39,73.845 +194298,168.34,74.304 +194299,166.21,74.778 +194300,163.99,75.268 +194301,169.09,73.873 +194302,167.02,74.299 +194303,164.88,74.74 +194304,162.65,75.197 +194305,167.79,73.9 +194306,165.71,74.293 +194307,163.56,74.701 +194308,161.31,75.126 +194309,166.48,73.929 +194310,164.39,74.288 +194311,162.23,74.663 +194312,159.98,75.054 +194313,165.17,73.957 +194314,163.08,74.283 +194315,160.91,74.624 +194316,158.64,74.982 +194317,163.86,73.986 +194318,161.76,74.278 +194319,159.58,74.586 +194320,157.31,74.91 +194321,162.55,74.015 +194322,160.45,74.273 +194323,158.26,74.547 +194324,155.98,74.837 +194325,161.24,74.044 +194326,159.13,74.268 +194327,156.93,74.508 +194328,154.65,74.765 +194329,159.93,74.073 +194330,157.81,74.264 +194331,155.61,74.469 +194332,153.32,74.692 +194333,158.61,74.103 +194334,156.49,74.259 +194335,154.29,74.43 +194336,151.99,74.619 +194337,157.3,74.132 +194338,155.17,74.254 +194339,152.97,74.392 +194340,150.67,74.545 +194341,155.98,74.162 +194342,153.85,74.25 +194343,151.65,74.353 +194344,149.35,74.472 +194345,154.66,74.191 +194346,152.53,74.245 +194347,150.33,74.314 +194348,148.02,74.399 +194349,153.34,74.221 +194350,151.21,74.241 +194351,149.01,74.275 +194352,146.71,74.325 +194353,152.01,74.251 +194354,149.89,74.236 +194355,147.69,74.236 +194356,145.39,74.251 +194357,150.69,74.281 +194358,148.57,74.232 +194359,146.37,74.197 +194360,144.07,74.178 +194361,149.36,74.31 +194362,147.25,74.227 +194363,145.05,74.158 +194364,142.76,74.104 +194365,148.03,74.34 +194366,145.93,74.222 +194367,143.73,74.119 +194368,141.45,74.031 +194369,146.7,74.369 +194370,144.6,74.218 +194371,142.42,74.08 +194372,140.14,73.957 +194373,145.37,74.399 +194374,143.28,74.213 +194375,141.1,74.041 +194376,138.83,73.884 +194377,144.04,74.428 +194378,141.95,74.208 +194379,139.79,74.002 +194380,137.52,73.811 +194381,142.71,74.457 +194382,140.63,74.204 +194383,138.47,73.963 +194384,136.21,73.738 +194385,141.37,74.486 +194386,139.3,74.199 +194387,137.16,73.925 +194388,134.91,73.665 +194389,140.03,74.514 +194390,137.98,74.194 +194391,135.84,73.886 +194392,133.61,73.592 +194393,138.69,74.542 +194394,136.65,74.189 +194395,134.53,73.847 +194396,132.31,73.52 +194397,137.35,74.57 +194398,135.33,74.184 +194399,133.22,73.809 +194400,131.01,73.447 +194401,136.01,74.598 +194402,134,74.179 +194403,131.9,73.771 +194404,129.71,73.376 +194405,134.67,74.625 +194406,132.67,74.173 +194407,130.59,73.732 +194408,128.42,73.304 +194409,133.32,74.652 +194410,131.34,74.168 +194411,129.28,73.694 +194412,127.13,73.233 +194413,131.97,74.679 +194414,130.01,74.163 +194415,127.97,73.656 +194416,125.84,73.162 +194417,130.63,74.705 +194418,128.68,74.157 +194419,126.66,73.618 +194420,124.55,73.092 +194421,129.28,74.73 +194422,127.35,74.151 +194423,125.35,73.581 +194424,123.26,73.022 +194425,127.92,74.756 +194426,126.02,74.145 +194427,124.04,73.543 +194428,121.97,72.952 +194429,126.57,74.78 +194430,124.69,74.139 +194431,122.73,73.506 +194432,120.69,72.883 +194433,125.22,74.804 +194434,123.36,74.133 +194435,121.43,73.469 +194436,119.4,72.814 +194437,123.86,74.828 +194438,122.03,74.126 +194439,120.12,73.431 +194440,118.12,72.746 +194441,122.5,74.851 +194442,120.7,74.119 +194443,118.81,73.395 +194444,116.84,72.679 +194445,121.15,74.873 +194446,119.36,74.113 +194447,117.51,73.358 +194448,115.56,72.612 +194449,119.79,74.895 +194450,118.03,74.106 +194451,116.2,73.322 +194452,114.28,72.546 +194453,118.42,74.916 +194454,116.7,74.098 +194455,114.89,73.285 +194456,113.01,72.48 +194457,117.06,74.937 +194458,115.36,74.091 +194459,113.59,73.249 +194460,111.73,72.415 +194461,115.7,74.957 +194462,114.03,74.083 +194463,112.29,73.214 +194464,110.46,72.351 +194465,114.33,74.976 +194466,112.69,74.075 +194467,110.98,73.178 +194468,109.19,72.287 +194469,112.97,74.994 +194470,111.36,74.067 +194471,109.68,73.143 +194472,107.92,72.224 +194473,111.6,75.012 +194474,110.02,74.059 +194475,108.37,73.108 +194476,106.65,72.162 +194477,110.23,75.029 +194478,108.69,74.05 +194479,107.07,73.073 +194480,105.38,72.101 +194481,108.86,75.045 +194482,107.35,74.041 +194483,105.77,73.039 +194484,104.12,72.04 +194485,107.49,75.06 +194486,106.01,74.032 +194487,104.47,73.004 +194488,102.85,71.981 +194489,106.12,75.075 +194490,104.67,74.022 +194491,103.17,72.97 +194492,101.59,71.922 +194493,104.74,75.089 +194494,103.34,74.012 +194495,101.87,72.937 +194496,100.33,71.864 +194497,103.37,75.101 +194498,102,74.002 +194499,100.57,72.903 +194500,99.065,71.807 +194501,101.99,75.113 +194502,100.66,73.992 +194503,99.266,72.87 +194504,97.805,71.75 +194505,100.62,75.124 +194506,99.322,73.981 +194507,97.967,72.838 +194508,96.546,71.695 +194509,99.237,75.134 +194510,97.982,73.97 +194511,96.668,72.805 +194512,95.288,71.641 +194513,97.858,75.143 +194514,96.643,73.959 +194515,95.369,72.773 +194516,94.031,71.587 +194517,96.478,75.152 +194518,95.303,73.947 +194519,94.07,72.741 +194520,92.775,71.535 +194521,95.097,75.159 +194522,93.963,73.936 +194523,92.772,72.71 +194524,91.521,71.483 +194525,93.716,75.165 +194526,92.622,73.923 +194527,91.474,72.679 +194528,90.267,71.433 +194529,92.333,75.17 +194530,91.282,73.911 +194531,90.177,72.648 +194532,89.014,71.384 +194533,90.949,75.175 +194534,89.941,73.898 +194535,88.879,72.617 +194536,87.762,71.335 +194537,89.565,75.178 +194538,88.599,73.885 +194539,87.582,72.587 +194540,86.511,71.288 +194541,88.18,75.18 +194542,87.258,73.871 +194543,86.286,72.558 +194544,85.26,71.242 +194545,86.794,75.181 +194546,85.916,73.857 +194547,84.99,72.528 +194548,84.011,71.196 +194549,85.407,75.181 +194550,84.574,73.843 +194551,83.693,72.499 +194552,82.762,71.152 +194553,84.02,75.18 +194554,83.232,73.828 +194555,82.398,72.47 +194556,81.513,71.109 +194557,82.631,75.178 +194558,81.89,73.813 +194559,81.102,72.442 +194560,80.266,71.068 +194561,81.243,75.175 +194562,80.547,73.798 +194563,79.807,72.414 +194564,79.019,71.027 +194565,79.853,75.171 +194566,79.204,73.782 +194567,78.511,72.387 +194568,77.773,70.987 +194569,78.463,75.166 +194570,77.861,73.766 +194571,77.216,72.36 +194572,76.527,70.949 +194573,77.073,75.159 +194574,76.518,73.749 +194575,75.922,72.333 +194576,75.282,70.912 +194577,75.682,75.152 +194578,75.175,73.732 +194579,74.627,72.306 +194580,74.037,70.875 +194581,74.29,75.143 +194582,73.831,73.715 +194583,73.333,72.28 +194584,72.793,70.84 +194585,72.898,75.133 +194586,72.488,73.697 +194587,72.038,72.255 +194588,71.549,70.807 +194589,71.506,75.122 +194590,71.144,73.679 +194591,70.744,72.23 +194592,70.305,70.774 +194593,70.113,75.11 +194594,69.8,73.661 +194595,69.45,72.205 +194596,69.062,70.743 +194597,68.72,75.097 +194598,68.456,73.642 +194599,68.156,72.18 +194600,67.819,70.713 +194601,67.327,75.082 +194602,67.112,73.623 +194603,66.862,72.156 +194604,66.576,70.684 +194605,65.933,75.067 +194606,65.768,73.603 +194607,65.569,72.133 +194608,65.333,70.656 +194609,64.539,75.05 +194610,64.424,73.583 +194611,64.275,72.109 +194612,64.091,70.629 +194613,63.145,75.032 +194614,63.08,73.563 +194615,62.982,72.087 +194616,62.848,70.604 +194617,61.751,75.013 +194618,61.736,73.542 +194619,61.688,72.064 +194620,61.606,70.58 +194621,60.356,74.992 +194622,60.392,73.521 +194623,60.395,72.042 +194624,60.364,70.557 +194625,58.962,74.971 +194626,59.048,73.499 +194627,59.101,72.02 +194628,59.121,70.535 +194629,57.568,74.948 +194630,57.704,73.477 +194631,57.808,71.999 +194632,57.879,70.515 +194633,56.173,74.925 +194634,56.359,73.455 +194635,56.514,71.978 +194636,56.637,70.496 +194637,54.779,74.9 +194638,55.015,73.432 +194639,55.221,71.958 +194640,55.394,70.478 +194641,53.384,74.873 +194642,53.671,73.409 +194643,53.927,71.938 +194644,54.151,70.461 +194645,51.99,74.846 +194646,52.327,73.386 +194647,52.634,71.918 +194648,52.909,70.445 +194649,50.596,74.818 +194650,50.983,73.362 +194651,51.34,71.899 +194652,51.665,70.431 +194653,49.202,74.788 +194654,49.64,73.337 +194655,50.046,71.88 +194656,50.422,70.418 +194657,47.808,74.757 +194658,48.296,73.313 +194659,48.752,71.862 +194660,49.178,70.406 +194661,46.414,74.725 +194662,46.952,73.288 +194663,47.459,71.844 +194664,47.934,70.395 +194665,45.021,74.692 +194666,45.609,73.262 +194667,46.165,71.826 +194668,46.69,70.386 +194669,43.628,74.658 +194670,44.266,73.236 +194671,44.871,71.809 +194672,45.445,70.377 +194673,42.236,74.622 +194674,42.922,73.21 +194675,43.576,71.792 +194676,44.199,70.37 +194677,40.843,74.586 +194678,41.579,73.183 +194679,42.282,71.776 +194680,42.953,70.364 +194681,39.452,74.548 +194682,40.236,73.156 +194683,40.987,71.759 +194684,41.707,70.359 +194685,38.061,74.51 +194686,38.894,73.129 +194687,39.693,71.744 +194688,40.46,70.355 +194689,36.67,74.47 +194690,37.551,73.101 +194691,38.398,71.728 +194692,39.212,70.353 +194693,35.28,74.429 +194694,36.209,73.073 +194695,37.103,71.713 +194696,37.964,70.351 +194697,33.89,74.387 +194698,34.867,73.045 +194699,35.808,71.699 +194700,36.714,70.351 +194701,32.501,74.344 +194702,33.525,73.016 +194703,34.512,71.685 +194704,35.465,70.351 +194705,31.113,74.299 +194706,32.184,72.987 +194707,33.216,71.671 +194708,34.214,70.353 +194709,29.725,74.254 +194710,30.842,72.957 +194711,31.92,71.657 +194712,32.963,70.356 +194713,28.339,74.208 +194714,29.501,72.927 +194715,30.624,71.644 +194716,31.711,70.36 +194717,26.953,74.161 +194718,28.161,72.897 +194719,29.328,71.631 +194720,30.458,70.365 +194721,25.567,74.112 +194722,26.82,72.866 +194723,28.031,71.619 +194724,29.204,70.371 +194725,24.183,74.063 +194726,25.48,72.835 +194727,26.734,71.607 +194728,27.949,70.378 +194729,22.8,74.013 +194730,24.14,72.804 +194731,25.436,71.595 +194732,26.693,70.386 +194733,21.417,73.962 +194734,22.801,72.772 +194735,24.139,71.583 +194736,25.436,70.395 +194737,20.035,73.909 +194738,21.462,72.741 +194739,22.841,71.572 +194740,24.178,70.405 +194741,18.655,73.856 +194742,20.123,72.708 +194743,21.543,71.561 +194744,22.919,70.416 +194745,17.275,73.802 +194746,18.785,72.676 +194747,20.244,71.551 +194748,21.659,70.428 +194749,15.897,73.747 +194750,17.447,72.643 +194751,18.945,71.54 +194752,20.398,70.44 +194753,14.519,73.691 +194754,16.109,72.61 +194755,17.646,71.531 +194756,19.136,70.454 +194757,13.143,73.634 +194758,14.772,72.576 +194759,16.346,71.521 +194760,17.872,70.468 +194761,11.767,73.577 +194762,13.435,72.543 +194763,15.046,71.512 +194764,16.608,70.484 +194765,10.393,73.518 +194766,12.098,72.509 +194767,13.745,71.502 +194768,15.342,70.5 +194769,9.0207,73.459 +194770,10.762,72.474 +194771,12.444,71.494 +194772,14.075,70.517 +194773,7.6491,73.399 +194774,9.4266,72.44 +194775,11.143,71.485 +194776,12.807,70.535 +194777,6.2788,73.338 +194778,8.0915,72.405 +194779,9.8414,71.477 +194780,11.537,70.553 +194781,4.9099,73.276 +194782,6.7568,72.37 +194783,8.5393,71.469 +194784,10.266,70.573 +194785,3.5422,73.214 +194786,5.4225,72.335 +194787,7.2367,71.461 +194788,8.9938,70.593 +194789,2.176,73.151 +194790,4.0888,72.299 +194791,5.9337,71.453 +194792,7.7202,70.613 +194793,0.81107,73.087 +194794,2.7555,72.264 +194795,4.6303,71.446 +194796,6.4451,70.635 +194797,359.45,73.023 +194798,1.4226,72.228 +194799,3.3264,71.439 +194800,5.1687,70.657 +194801,358.09,72.958 +194802,0.090314,72.191 +194803,2.022,71.432 +194804,3.8909,70.679 +194805,356.73,72.892 +194806,358.76,72.155 +194807,0.71719,71.425 +194808,2.6116,70.703 +194809,355.37,72.825 +194810,357.43,72.118 +194811,359.41,71.419 +194812,1.3308,70.727 +194813,354.01,72.759 +194814,356.1,72.082 +194815,358.11,71.412 +194816,0.048611,70.751 +194817,352.65,72.691 +194818,354.77,72.045 +194819,356.8,71.406 +194820,358.76,70.776 +194821,351.3,72.623 +194822,353.44,72.007 +194823,355.49,71.4 +194824,357.48,70.801 +194825,349.95,72.554 +194826,352.11,71.97 +194827,354.19,71.394 +194828,356.19,70.827 +194829,348.59,72.485 +194830,350.78,71.933 +194831,352.88,71.389 +194832,354.9,70.854 +194833,347.24,72.416 +194834,349.45,71.895 +194835,351.57,71.383 +194836,353.61,70.88 +194837,345.9,72.346 +194838,348.12,71.857 +194839,350.26,71.378 +194840,352.32,70.908 +194841,344.55,72.276 +194842,346.8,71.819 +194843,348.95,71.373 +194844,351.03,70.935 +194845,343.21,72.205 +194846,345.47,71.781 +194847,347.64,71.367 +194848,349.74,70.963 +194849,341.86,72.134 +194850,344.14,71.743 +194851,346.33,71.362 +194852,348.44,70.991 +194853,340.52,72.063 +194854,342.82,71.705 +194855,345.02,71.358 +194856,347.14,71.02 +194857,339.18,71.991 +194858,341.49,71.667 +194859,343.71,71.353 +194860,345.84,71.048 +194861,337.84,71.919 +194862,340.17,71.628 +194863,342.4,71.348 +194864,344.54,71.077 +194865,336.51,71.847 +194866,338.85,71.59 +194867,341.08,71.343 +194868,343.24,71.107 +194869,335.17,71.774 +194870,337.52,71.551 +194871,339.77,71.339 +194872,341.93,71.136 +194873,333.84,71.701 +194874,336.2,71.512 +194875,338.46,71.334 +194876,340.63,71.166 +194877,332.51,71.629 +194878,334.88,71.474 +194879,337.14,71.33 +194880,339.32,71.195 +194881,331.18,71.556 +194882,333.56,71.435 +194883,335.83,71.325 +194884,338.01,71.225 +194885,329.86,71.483 +194886,332.24,71.396 +194887,334.51,71.321 +194888,336.7,71.255 +194889,328.53,71.409 +194890,330.92,71.357 +194891,333.2,71.316 +194892,335.39,71.285 +194893,327.21,71.336 +194894,329.6,71.318 +194895,331.88,71.312 +194896,334.07,71.315 +194897,325.89,71.263 +194898,328.28,71.28 +194899,330.56,71.307 +194900,332.76,71.344 +194901,324.57,71.189 +194902,326.96,71.241 +194903,329.25,71.303 +194904,331.44,71.374 +194905,323.25,71.116 +194906,325.64,71.202 +194907,327.93,71.298 +194908,330.12,71.404 +194909,321.93,71.043 +194910,324.33,71.163 +194911,326.61,71.294 +194912,328.8,71.434 +194913,320.62,70.97 +194914,323.01,71.124 +194915,325.29,71.289 +194916,327.48,71.463 +194917,319.31,70.897 +194918,321.69,71.086 +194919,323.97,71.285 +194920,326.15,71.493 +194921,318,70.824 +194922,320.38,71.047 +194923,322.65,71.28 +194924,324.83,71.522 +194925,316.69,70.751 +194926,319.06,71.008 +194927,321.33,71.275 +194928,323.5,71.551 +194929,315.38,70.679 +194930,317.75,70.97 +194931,320.01,71.271 +194932,322.17,71.58 +194933,314.07,70.606 +194934,316.44,70.931 +194935,318.69,71.266 +194936,320.84,71.608 +194937,312.77,70.534 +194938,315.12,70.893 +194939,317.36,71.261 +194940,319.51,71.636 +194941,311.47,70.462 +194942,313.81,70.855 +194943,316.04,71.256 +194944,318.17,71.664 +194945,310.17,70.391 +194946,312.5,70.816 +194947,314.72,71.251 +194948,316.84,71.692 +194949,308.87,70.319 +194950,311.19,70.778 +194951,313.39,71.245 +194952,315.5,71.719 +194953,307.58,70.249 +194954,309.88,70.74 +194955,312.07,71.24 +194956,314.16,71.746 +194957,306.28,70.178 +194958,308.57,70.702 +194959,310.74,71.234 +194960,312.82,71.772 +194961,304.99,70.108 +194962,307.26,70.665 +194963,309.42,71.229 +194964,311.48,71.798 +194965,303.7,70.038 +194966,305.95,70.627 +194967,308.09,71.223 +194968,310.14,71.824 +194969,302.41,69.969 +194970,304.64,70.59 +194971,306.77,71.217 +194972,308.79,71.849 +194973,301.12,69.901 +194974,303.34,70.552 +194975,305.44,71.211 +194976,307.44,71.873 +194977,299.84,69.832 +194978,302.03,70.515 +194979,304.11,71.204 +194980,306.1,71.897 +194981,298.56,69.765 +194982,300.72,70.478 +194983,302.78,71.198 +194984,304.75,71.921 +194985,297.27,69.698 +194986,299.42,70.442 +194987,301.45,71.191 +194988,303.39,71.943 +194989,295.99,69.631 +194990,298.11,70.405 +194991,300.12,71.184 +194992,302.04,71.966 +194993,294.71,69.565 +194994,296.81,70.369 +194995,298.79,71.177 +194996,300.69,71.987 +194997,293.44,69.5 +194998,295.5,70.333 +194999,297.46,71.169 +195000,299.33,72.008 +195001,292.16,69.435 +195002,294.2,70.297 +195003,296.13,71.162 +195004,297.97,72.028 +195005,290.89,69.372 +195006,292.9,70.261 +195007,294.8,71.154 +195008,296.62,72.048 +195009,289.62,69.308 +195010,291.59,70.226 +195011,293.47,71.146 +195012,295.26,72.067 +195013,288.34,69.246 +195014,290.29,70.191 +195015,292.14,71.138 +195016,293.89,72.085 +195017,287.08,69.184 +195018,288.99,70.156 +195019,290.8,71.129 +195020,292.53,72.102 +195021,285.81,69.123 +195022,287.69,70.121 +195023,289.47,71.12 +195024,291.17,72.118 +195025,284.54,69.063 +195026,286.39,70.087 +195027,288.14,71.111 +195028,289.8,72.134 +195029,283.28,69.004 +195030,285.09,70.053 +195031,286.8,71.102 +195032,288.44,72.149 +195033,282.01,68.945 +195034,283.79,70.019 +195035,285.47,71.092 +195036,287.07,72.163 +195037,280.75,68.888 +195038,282.49,69.985 +195039,284.14,71.082 +195040,285.7,72.176 +195041,279.49,68.831 +195042,281.19,69.952 +195043,282.8,71.072 +195044,284.33,72.188 +195045,278.23,68.775 +195046,279.89,69.919 +195047,281.46,71.061 +195048,282.96,72.2 +195049,276.97,68.72 +195050,278.59,69.886 +195051,280.13,71.05 +195052,281.59,72.21 +195053,275.72,68.666 +195054,277.3,69.854 +195055,278.79,71.039 +195056,280.21,72.22 +195057,274.46,68.613 +195058,276,69.822 +195059,277.46,71.027 +195060,278.84,72.228 +195061,273.2,68.561 +195062,274.7,69.79 +195063,276.12,71.016 +195064,277.46,72.236 +195065,271.95,68.51 +195066,273.41,69.759 +195067,274.78,71.003 +195068,276.08,72.242 +195069,270.7,68.46 +195070,272.11,69.728 +195071,273.44,70.991 +195072,274.71,72.248 +195073,269.45,68.411 +195074,270.81,69.697 +195075,272.1,70.978 +195076,273.33,72.253 +195077,268.2,68.363 +195078,269.52,69.667 +195079,270.77,70.965 +195080,271.95,72.256 +195081,266.95,68.316 +195082,268.22,69.636 +195083,269.43,70.951 +195084,270.56,72.259 +195085,265.7,68.271 +195086,266.93,69.607 +195087,268.09,70.937 +195088,269.18,72.26 +195089,264.45,68.226 +195090,265.64,69.577 +195091,266.75,70.923 +195092,267.8,72.261 +195093,263.21,68.182 +195094,264.34,69.548 +195095,265.41,70.908 +195096,266.42,72.26 +195097,261.96,68.14 +195098,263.05,69.52 +195099,264.07,70.893 +195100,265.03,72.258 +195101,260.72,68.098 +195102,261.75,69.492 +195103,262.73,70.878 +195104,263.65,72.255 +195105,259.47,68.058 +195106,260.46,69.464 +195107,261.39,70.862 +195108,262.26,72.251 +195109,258.23,68.019 +195110,259.17,69.436 +195111,260.05,70.846 +195112,260.87,72.246 +195113,256.99,67.981 +195114,257.88,69.409 +195115,258.71,70.829 +195116,259.49,72.24 +195117,255.74,67.944 +195118,256.58,69.382 +195119,257.37,70.812 +195120,258.1,72.233 +195121,254.5,67.908 +195122,255.29,69.356 +195123,256.03,70.795 +195124,256.71,72.224 +195125,253.26,67.874 +195126,254,69.33 +195127,254.68,70.777 +195128,255.32,72.215 +195129,252.02,67.841 +195130,252.71,69.304 +195131,253.34,70.759 +195132,253.93,72.204 +195133,250.78,67.808 +195134,251.42,69.279 +195135,252,70.741 +195136,252.54,72.192 +195137,249.54,67.777 +195138,250.13,69.254 +195139,250.66,70.722 +195140,251.15,72.179 +195141,248.31,67.748 +195142,248.83,69.23 +195143,249.32,70.703 +195144,249.75,72.165 +195145,247.07,67.719 +195146,247.54,69.206 +195147,247.97,70.683 +195148,248.36,72.149 +195149,245.83,67.692 +195150,246.25,69.182 +195151,246.63,70.663 +195152,246.97,72.133 +195153,244.59,67.666 +195154,244.96,69.159 +195155,245.29,70.643 +195156,245.58,72.115 +195157,243.35,67.641 +195158,243.67,69.136 +195159,243.95,70.622 +195160,244.18,72.096 +195161,242.12,67.617 +195162,242.38,69.114 +195163,242.6,70.6 +195164,242.79,72.076 +195165,240.88,67.595 +195166,241.09,69.092 +195167,241.26,70.579 +195168,241.4,72.054 +195169,239.64,67.574 +195170,239.8,69.07 +195171,239.92,70.557 +195172,240,72.032 +195173,238.41,67.554 +195174,238.51,69.049 +195175,238.58,70.534 +195176,238.61,72.008 +195177,237.17,67.535 +195178,237.22,69.028 +195179,237.23,70.511 +195180,237.22,71.983 +195181,235.93,67.518 +195182,235.93,69.008 +195183,235.89,70.488 +195184,235.82,71.957 +195185,234.69,67.501 +195186,234.64,68.988 +195187,234.55,70.464 +195188,234.43,71.93 +195189,233.46,67.486 +195190,233.35,68.968 +195191,233.21,70.44 +195192,233.03,71.901 +195193,232.22,67.472 +195194,232.06,68.949 +195195,231.86,70.416 +195196,231.64,71.871 +195197,230.98,67.46 +195198,230.77,68.93 +195199,230.52,70.391 +195200,230.24,71.841 +195201,229.74,67.448 +195202,229.48,68.911 +195203,229.18,70.365 +195204,228.85,71.809 +195205,228.51,67.438 +195206,228.19,68.893 +195207,227.84,70.34 +195208,227.45,71.775 +195209,227.27,67.429 +195210,226.9,68.876 +195211,226.49,70.314 +195212,226.06,71.741 +195213,226.03,67.421 +195214,225.6,68.858 +195215,225.15,70.287 +195216,224.67,71.705 +195217,224.79,67.414 +195218,224.31,68.841 +195219,223.81,70.26 +195220,223.27,71.669 +195221,223.55,67.408 +195222,223.02,68.825 +195223,222.47,70.233 +195224,221.88,71.631 +195225,222.31,67.404 +195226,221.73,68.809 +195227,221.12,70.205 +195228,220.49,71.592 +195229,221.07,67.401 +195230,220.44,68.793 +195231,219.78,70.177 +195232,219.09,71.552 +195233,219.83,67.399 +195234,219.15,68.778 +195235,218.44,70.149 +195236,217.7,71.511 +195237,218.59,67.397 +195238,217.86,68.762 +195239,217.1,70.12 +195240,216.31,71.469 +195241,217.35,67.398 +195242,216.57,68.748 +195243,215.76,70.091 +195244,214.92,71.425 +195245,216.1,67.399 +195246,215.28,68.733 +195247,214.42,70.061 +195248,213.53,71.381 +195249,214.86,67.401 +195250,213.98,68.72 +195251,213.08,70.031 +195252,212.14,71.335 +195253,213.62,67.404 +195254,212.69,68.706 +195255,211.74,70.001 +195256,210.75,71.289 +195257,212.37,67.409 +195258,211.4,68.693 +195259,210.4,69.971 +195260,209.36,71.241 +195261,211.13,67.414 +195262,210.11,68.68 +195263,209.05,69.94 +195264,207.97,71.192 +195265,209.88,67.421 +195266,208.81,68.667 +195267,207.72,69.908 +195268,206.58,71.143 +195269,208.63,67.428 +195270,207.52,68.655 +195271,206.38,69.877 +195272,205.2,71.092 +195273,207.38,67.437 +195274,206.23,68.643 +195275,205.04,69.845 +195276,203.81,71.04 +195277,206.14,67.446 +195278,204.93,68.631 +195279,203.7,69.812 +195280,202.42,70.988 +195281,204.88,67.456 +195282,203.64,68.62 +195283,202.36,69.78 +195284,201.04,70.934 +195285,203.63,67.468 +195286,202.34,68.609 +195287,201.02,69.747 +195288,199.66,70.879 +195289,202.38,67.48 +195290,201.05,68.598 +195291,199.68,69.713 +195292,198.27,70.824 +195293,201.13,67.493 +195294,199.76,68.588 +195295,198.34,69.68 +195296,196.89,70.767 +195297,199.87,67.507 +195298,198.46,68.578 +195299,197.01,69.646 +195300,195.51,70.71 +195301,198.62,67.522 +195302,197.16,68.568 +195303,195.67,69.612 +195304,194.13,70.652 +195305,197.36,67.538 +195306,195.87,68.559 +195307,194.33,69.577 +195308,192.75,70.593 +195309,196.1,67.555 +195310,194.57,68.549 +195311,193,69.542 +195312,191.37,70.533 +195313,194.84,67.572 +195314,193.27,68.54 +195315,191.66,69.507 +195316,190,70.472 +195317,193.58,67.59 +195318,191.98,68.532 +195319,190.33,69.472 +195320,188.62,70.41 +195321,192.32,67.609 +195322,190.68,68.523 +195323,188.99,69.436 +195324,187.25,70.348 +195325,191.06,67.629 +195326,189.38,68.515 +195327,187.66,69.401 +195328,185.87,70.285 +195329,189.8,67.65 +195330,188.08,68.507 +195331,186.32,69.364 +195332,184.5,70.221 +195333,188.53,67.671 +195334,186.79,68.499 +195335,184.99,69.328 +195336,183.13,70.157 +195337,187.26,67.692 +195338,185.49,68.491 +195339,183.66,69.291 +195340,181.76,70.091 +195341,185.99,67.715 +195342,184.19,68.484 +195343,182.32,69.255 +195344,180.39,70.025 +195345,184.72,67.738 +195346,182.89,68.477 +195347,180.99,69.218 +195348,179.03,69.959 +195349,183.45,67.762 +195350,181.59,68.47 +195351,179.66,69.18 +195352,177.66,69.892 +195353,182.18,67.786 +195354,180.28,68.463 +195355,178.33,69.143 +195356,176.3,69.824 +195357,180.91,67.81 +195358,178.98,68.457 +195359,177,69.105 +195360,174.94,69.755 +195361,179.63,67.836 +195362,177.68,68.45 +195363,175.67,69.067 +195364,173.58,69.686 +195365,178.35,67.861 +195366,176.38,68.444 +195367,174.34,69.029 +195368,172.22,69.617 +195369,177.07,67.888 +195370,175.08,68.438 +195371,173.01,68.991 +195372,170.86,69.547 +195373,175.79,67.914 +195374,173.77,68.432 +195375,171.68,68.953 +195376,169.5,69.476 +195377,174.51,67.941 +195378,172.47,68.426 +195379,170.35,68.914 +195380,168.15,69.405 +195381,173.23,67.969 +195382,171.16,68.421 +195383,169.02,68.876 +195384,166.8,69.334 +195385,171.94,67.997 +195386,169.86,68.415 +195387,167.7,68.837 +195388,165.45,69.262 +195389,170.66,68.025 +195390,168.55,68.409 +195391,166.37,68.798 +195392,164.1,69.19 +195393,169.37,68.053 +195394,167.25,68.404 +195395,165.04,68.759 +195396,162.75,69.117 +195397,168.08,68.082 +195398,165.94,68.399 +195399,163.72,68.72 +195400,161.4,69.045 +195401,166.79,68.111 +195402,164.63,68.394 +195403,162.39,68.681 +195404,160.06,68.971 +195405,165.5,68.14 +195406,163.32,68.389 +195407,161.07,68.641 +195408,158.71,68.898 +195409,164.2,68.17 +195410,162.02,68.384 +195411,159.75,68.602 +195412,157.37,68.824 +195413,162.9,68.199 +195414,160.71,68.379 +195415,158.42,68.562 +195416,156.04,68.75 +195417,161.61,68.229 +195418,159.4,68.374 +195419,157.1,68.523 +195420,154.7,68.676 +195421,160.31,68.259 +195422,158.09,68.369 +195423,155.78,68.483 +195424,153.36,68.602 +195425,159,68.288 +195426,156.78,68.364 +195427,154.46,68.443 +195428,152.03,68.528 +195429,157.7,68.318 +195430,155.47,68.359 +195431,153.14,68.404 +195432,150.7,68.453 +195433,156.4,68.348 +195434,154.15,68.354 +195435,151.82,68.364 +195436,149.37,68.378 +195437,155.09,68.378 +195438,152.84,68.349 +195439,150.5,68.324 +195440,148.04,68.304 +195441,153.78,68.408 +195442,151.53,68.344 +195443,149.18,68.285 +195444,146.71,68.229 +195445,152.47,68.438 +195446,150.22,68.339 +195447,147.86,68.245 +195448,145.39,68.154 +195449,151.16,68.468 +195450,148.9,68.334 +195451,146.54,68.205 +195452,144.07,68.08 +195453,149.85,68.497 +195454,147.59,68.329 +195455,145.23,68.165 +195456,142.74,68.005 +195457,148.53,68.527 +195458,146.27,68.324 +195459,143.91,68.126 +195460,141.43,67.931 +195461,147.21,68.556 +195462,144.96,68.319 +195463,142.59,68.086 +195464,140.11,67.856 +195465,145.9,68.585 +195466,143.64,68.314 +195467,141.28,68.046 +195468,138.79,67.782 +195469,144.58,68.614 +195470,142.32,68.309 +195471,139.96,68.007 +195472,137.48,67.708 +195473,143.25,68.643 +195474,141.01,68.304 +195475,138.65,67.967 +195476,136.17,67.634 +195477,141.93,68.671 +195478,139.69,68.298 +195479,137.34,67.928 +195480,134.86,67.561 +195481,140.6,68.699 +195482,138.37,68.293 +195483,136.03,67.888 +195484,133.55,67.487 +195485,139.28,68.727 +195486,137.05,68.287 +195487,134.71,67.849 +195488,132.25,67.414 +195489,137.95,68.754 +195490,135.73,68.281 +195491,133.4,67.81 +195492,130.95,67.341 +195493,136.62,68.781 +195494,134.41,68.276 +195495,132.09,67.771 +195496,129.64,67.269 +195497,135.29,68.808 +195498,133.09,68.27 +195499,130.78,67.732 +195500,128.34,67.197 +195501,133.95,68.834 +195502,131.77,68.263 +195503,129.47,67.693 +195504,127.05,67.125 +195505,132.62,68.86 +195506,130.45,68.257 +195507,128.16,67.655 +195508,125.75,67.054 +195509,131.28,68.885 +195510,129.12,68.251 +195511,126.86,67.616 +195512,124.46,66.983 +195513,129.94,68.91 +195514,127.8,68.244 +195515,125.55,67.578 +195516,123.16,66.913 +195517,128.6,68.934 +195518,126.48,68.237 +195519,124.24,67.54 +195520,121.87,66.843 +195521,127.26,68.957 +195522,125.15,68.23 +195523,122.93,67.502 +195524,120.59,66.773 +195525,125.92,68.98 +195526,123.83,68.223 +195527,121.63,67.464 +195528,119.3,66.705 +195529,124.57,69.002 +195530,122.5,68.215 +195531,120.32,67.426 +195532,118.02,66.636 +195533,123.22,69.024 +195534,121.18,68.208 +195535,119.02,67.389 +195536,116.73,66.569 +195537,121.88,69.045 +195538,119.85,68.2 +195539,117.72,67.352 +195540,115.45,66.502 +195541,120.53,69.065 +195542,118.52,68.192 +195543,116.41,67.314 +195544,114.17,66.436 +195545,119.18,69.085 +195546,117.2,68.183 +195547,115.11,67.278 +195548,112.89,66.37 +195549,117.82,69.104 +195550,115.87,68.175 +195551,113.81,67.241 +195552,111.62,66.305 +195553,116.47,69.122 +195554,114.54,68.166 +195555,112.51,67.205 +195556,110.34,66.241 +195557,115.11,69.139 +195558,113.21,68.157 +195559,111.2,67.169 +195560,109.07,66.177 +195561,113.76,69.156 +195562,111.88,68.147 +195563,109.9,67.133 +195564,107.8,66.115 +195565,112.4,69.172 +195566,110.55,68.137 +195567,108.6,67.097 +195568,106.53,66.053 +195569,111.04,69.187 +195570,109.22,68.127 +195571,107.3,67.062 +195572,105.26,65.992 +195573,109.68,69.201 +195574,107.89,68.117 +195575,106,67.027 +195576,104,65.931 +195577,108.31,69.214 +195578,106.56,68.107 +195579,104.71,66.992 +195580,102.73,65.872 +195581,106.95,69.226 +195582,105.23,68.096 +195583,103.41,66.958 +195584,101.47,65.814 +195585,105.58,69.238 +195586,103.9,68.084 +195587,102.11,66.924 +195588,100.21,65.756 +195589,104.22,69.248 +195590,102.57,68.073 +195591,100.81,66.89 +195592,98.949,65.699 +195593,102.85,69.258 +195594,101.23,68.061 +195595,99.517,66.856 +195596,97.691,65.644 +195597,101.48,69.266 +195598,99.899,68.049 +195599,98.221,66.823 +195600,96.434,65.589 +195601,100.11,69.274 +195602,98.565,68.036 +195603,96.925,66.79 +195604,95.178,65.535 +195605,98.739,69.28 +195606,97.231,68.024 +195607,95.63,66.757 +195608,93.924,65.482 +195609,97.366,69.286 +195610,95.897,68.01 +195611,94.336,66.725 +195612,92.671,65.43 +195613,95.992,69.29 +195614,94.562,67.997 +195615,93.041,66.693 +195616,91.42,65.38 +195617,94.617,69.294 +195618,93.227,67.983 +195619,91.747,66.661 +195620,90.169,65.33 +195621,93.241,69.296 +195622,91.891,67.969 +195623,90.454,66.63 +195624,88.92,65.281 +195625,91.864,69.297 +195626,90.555,67.954 +195627,89.161,66.599 +195628,87.672,65.234 +195629,90.486,69.297 +195630,89.218,67.939 +195631,87.868,66.569 +195632,86.425,65.187 +195633,89.107,69.297 +195634,87.882,67.924 +195635,86.576,66.538 +195636,85.179,65.142 +195637,87.727,69.295 +195638,86.545,67.908 +195639,85.284,66.509 +195640,83.935,65.098 +195641,86.346,69.292 +195642,85.208,67.892 +195643,83.992,66.479 +195644,82.691,65.055 +195645,84.964,69.287 +195646,83.87,67.875 +195647,82.701,66.45 +195648,81.449,65.013 +195649,83.581,69.282 +195650,82.532,67.858 +195651,81.41,66.421 +195652,80.207,64.972 +195653,82.197,69.275 +195654,81.194,67.841 +195655,80.119,66.393 +195656,78.966,64.932 +195657,80.812,69.268 +195658,79.855,67.823 +195659,78.829,66.365 +195660,77.726,64.894 +195661,79.427,69.259 +195662,78.517,67.805 +195663,77.539,66.337 +195664,76.487,64.856 +195665,78.041,69.249 +195666,77.178,67.787 +195667,76.249,66.31 +195668,75.249,64.82 +195669,76.654,69.238 +195670,75.839,67.768 +195671,74.96,66.283 +195672,74.011,64.785 +195673,75.267,69.225 +195674,74.499,67.748 +195675,73.67,66.257 +195676,72.774,64.751 +195677,73.878,69.212 +195678,73.16,67.729 +195679,72.381,66.231 +195680,71.538,64.719 +195681,72.489,69.197 +195682,71.82,67.709 +195683,71.093,66.205 +195684,70.303,64.688 +195685,71.1,69.181 +195686,70.48,67.688 +195687,69.804,66.18 +195688,69.068,64.658 +195689,69.71,69.164 +195690,69.14,67.667 +195691,68.516,66.155 +195692,67.833,64.629 +195693,68.32,69.145 +195694,67.799,67.646 +195695,67.227,66.131 +195696,66.599,64.601 +195697,66.929,69.126 +195698,66.459,67.624 +195699,65.939,66.106 +195700,65.366,64.575 +195701,65.537,69.105 +195702,65.119,67.602 +195703,64.652,66.083 +195704,64.133,64.55 +195705,64.145,69.083 +195706,63.778,67.579 +195707,63.364,66.06 +195708,62.9,64.526 +195709,62.753,69.059 +195710,62.437,67.556 +195711,62.076,66.037 +195712,61.667,64.503 +195713,61.36,69.035 +195714,61.096,67.532 +195715,60.789,66.014 +195716,60.435,64.482 +195717,59.967,69.009 +195718,59.755,67.508 +195719,59.501,65.992 +195720,59.203,64.462 +195721,58.574,68.982 +195722,58.414,67.484 +195723,58.214,65.971 +195724,57.971,64.443 +195725,57.181,68.954 +195726,57.073,67.459 +195727,56.927,65.949 +195728,56.74,64.425 +195729,55.787,68.924 +195730,55.732,67.434 +195731,55.64,65.929 +195732,55.508,64.408 +195733,54.393,68.894 +195734,54.391,67.409 +195735,54.353,65.908 +195736,54.276,64.393 +195737,52.999,68.862 +195738,53.05,67.383 +195739,53.066,65.888 +195740,53.045,64.379 +195741,51.605,68.829 +195742,51.709,67.356 +195743,51.778,65.868 +195744,51.813,64.366 +195745,50.211,68.795 +195746,50.368,67.329 +195747,50.491,65.849 +195748,50.581,64.355 +195749,48.817,68.759 +195750,49.026,67.302 +195751,49.204,65.83 +195752,49.35,64.345 +195753,47.423,68.722 +195754,47.685,67.275 +195755,47.917,65.812 +195756,48.118,64.335 +195757,46.029,68.685 +195758,46.344,67.247 +195759,46.63,65.794 +195760,46.885,64.328 +195761,44.635,68.646 +195762,45.003,67.218 +195763,45.343,65.776 +195764,45.653,64.321 +195765,43.242,68.605 +195766,43.663,67.189 +195767,44.056,65.759 +195768,44.42,64.315 +195769,41.848,68.564 +195770,42.322,67.16 +195771,42.768,65.742 +195772,43.187,64.311 +195773,40.455,68.522 +195774,40.981,67.13 +195775,41.481,65.725 +195776,41.953,64.308 +195777,39.062,68.478 +195778,39.641,67.1 +195779,40.193,65.709 +195780,40.719,64.305 +195781,37.669,68.433 +195782,38.3,67.07 +195783,38.906,65.693 +195784,39.485,64.305 +195785,36.276,68.387 +195786,36.96,67.039 +195787,37.618,65.678 +195788,38.25,64.305 +195789,34.884,68.34 +195790,35.62,67.008 +195791,36.33,65.663 +195792,37.014,64.306 +195793,33.492,68.292 +195794,34.28,66.976 +195795,35.042,65.648 +195796,35.778,64.308 +195797,32.101,68.243 +195798,32.94,66.944 +195799,33.753,65.633 +195800,34.541,64.312 +195801,30.71,68.193 +195802,31.601,66.912 +195803,32.465,65.619 +195804,33.304,64.316 +195805,29.32,68.141 +195806,30.262,66.879 +195807,31.176,65.606 +195808,32.066,64.322 +195809,27.93,68.089 +195810,28.922,66.846 +195811,29.887,65.592 +195812,30.827,64.329 +195813,26.541,68.035 +195814,27.584,66.813 +195815,28.598,65.579 +195816,29.587,64.336 +195817,25.153,67.981 +195818,26.245,66.779 +195819,27.309,65.567 +195820,28.346,64.345 +195821,23.765,67.925 +195822,24.907,66.745 +195823,26.019,65.554 +195824,27.105,64.355 +195825,22.378,67.869 +195826,23.569,66.711 +195827,24.729,65.542 +195828,25.863,64.365 +195829,20.992,67.811 +195830,22.231,66.676 +195831,23.439,65.53 +195832,24.619,64.377 +195833,19.606,67.753 +195834,20.893,66.641 +195835,22.149,65.519 +195836,23.375,64.39 +195837,18.222,67.694 +195838,19.556,66.605 +195839,20.858,65.508 +195840,22.13,64.403 +195841,16.838,67.633 +195842,18.22,66.57 +195843,19.567,65.497 +195844,20.883,64.417 +195845,15.455,67.572 +195846,16.883,66.533 +195847,18.275,65.486 +195848,19.636,64.433 +195849,14.073,67.51 +195850,15.547,66.497 +195851,16.984,65.476 +195852,18.387,64.449 +195853,12.692,67.447 +195854,14.211,66.461 +195855,15.692,65.466 +195856,17.138,64.466 +195857,11.312,67.384 +195858,12.876,66.424 +195859,14.399,65.456 +195860,15.887,64.483 +195861,9.933,67.319 +195862,11.541,66.386 +195863,13.106,65.447 +195864,14.635,64.502 +195865,8.5551,67.254 +195866,10.206,66.349 +195867,11.813,65.437 +195868,13.381,64.521 +195869,7.1784,67.188 +195870,8.8721,66.311 +195871,10.52,65.428 +195872,12.127,64.541 +195873,5.8029,67.121 +195874,7.5383,66.273 +195875,9.2258,65.42 +195876,10.871,64.562 +195877,4.4285,67.053 +195878,6.205,66.235 +195879,7.9314,65.411 +195880,9.614,64.583 +195881,3.0553,66.985 +195882,4.8721,66.196 +195883,6.6366,65.403 +195884,8.3555,64.605 +195885,1.6834,66.916 +195886,3.5396,66.158 +195887,5.3414,65.395 +195888,7.0956,64.628 +195889,0.31282,66.846 +195890,2.2076,66.119 +195891,4.0458,65.387 +195892,5.8344,64.651 +195893,358.94,66.776 +195894,0.87613,66.079 +195895,2.7497,65.379 +195896,4.5717,64.675 +195897,357.58,66.705 +195898,359.55,66.04 +195899,1.4531,65.371 +195900,3.3076,64.7 +195901,356.21,66.633 +195902,358.21,66 +195903,0.15612,65.364 +195904,2.042,64.725 +195905,354.84,66.561 +195906,356.88,65.961 +195907,358.86,65.357 +195908,0.77498,64.75 +195909,353.48,66.488 +195910,355.55,65.921 +195911,357.56,65.35 +195912,359.51,64.776 +195913,352.12,66.415 +195914,354.23,65.881 +195915,356.26,65.343 +195916,358.24,64.803 +195917,350.76,66.341 +195918,352.9,65.84 +195919,354.96,65.336 +195920,356.96,64.83 +195921,349.4,66.267 +195922,351.57,65.8 +195923,353.66,65.329 +195924,355.69,64.857 +195925,348.04,66.193 +195926,350.24,65.759 +195927,352.36,65.323 +195928,354.42,64.885 +195929,346.68,66.118 +195930,348.92,65.718 +195931,351.06,65.316 +195932,353.14,64.913 +195933,345.33,66.042 +195934,347.59,65.677 +195935,349.76,65.31 +195936,351.86,64.941 +195937,343.98,65.966 +195938,346.26,65.636 +195939,348.46,65.304 +195940,350.58,64.97 +195941,342.63,65.89 +195942,344.94,65.595 +195943,347.16,65.298 +195944,349.3,64.999 +195945,341.28,65.814 +195946,343.61,65.554 +195947,345.86,65.292 +195948,348.02,65.028 +195949,339.93,65.737 +195950,342.29,65.513 +195951,344.55,65.286 +195952,346.73,65.057 +195953,338.58,65.66 +195954,340.97,65.471 +195955,343.25,65.28 +195956,345.45,65.087 +195957,337.24,65.583 +195958,339.64,65.43 +195959,341.95,65.274 +195960,344.16,65.117 +195961,335.9,65.506 +195962,338.32,65.388 +195963,340.64,65.268 +195964,342.87,65.147 +195965,334.56,65.428 +195966,337,65.346 +195967,339.34,65.262 +195968,341.58,65.177 +195969,333.22,65.351 +195970,335.68,65.305 +195971,338.03,65.256 +195972,340.29,65.207 +195973,331.88,65.273 +195974,334.36,65.263 +195975,336.72,65.25 +195976,338.99,65.237 +195977,330.55,65.195 +195978,333.04,65.221 +195979,335.42,65.245 +195980,337.69,65.267 +195981,329.21,65.117 +195982,331.72,65.179 +195983,334.11,65.239 +195984,336.4,65.297 +195985,327.88,65.04 +195986,330.4,65.138 +195987,332.8,65.233 +195988,335.1,65.327 +195989,326.55,64.962 +195990,329.08,65.096 +195991,331.49,65.227 +195992,333.79,65.357 +195993,325.22,64.884 +195994,327.77,65.054 +195995,330.18,65.221 +195996,332.49,65.386 +195997,323.9,64.806 +195998,326.45,65.012 +195999,328.87,65.215 +196000,331.19,65.416 +196001,322.58,64.729 +196002,325.13,64.97 +196003,327.56,65.209 +196004,329.88,65.445 +196005,321.25,64.651 +196006,323.82,64.929 +196007,326.25,65.203 +196008,328.57,65.475 +196009,319.93,64.574 +196010,322.5,64.887 +196011,324.94,65.197 +196012,327.26,65.504 +196013,318.62,64.497 +196014,321.19,64.845 +196015,323.63,65.191 +196016,325.95,65.533 +196017,317.3,64.42 +196018,319.88,64.804 +196019,322.31,65.184 +196020,324.63,65.561 +196021,315.99,64.343 +196022,318.56,64.762 +196023,321,65.178 +196024,323.32,65.589 +196025,314.67,64.266 +196026,317.25,64.721 +196027,319.69,65.171 +196028,322,65.617 +196029,313.37,64.19 +196030,315.94,64.68 +196031,318.37,65.165 +196032,320.68,65.645 +196033,312.06,64.115 +196034,314.63,64.639 +196035,317.06,65.158 +196036,319.36,65.672 +196037,310.75,64.039 +196038,313.32,64.598 +196039,315.74,65.151 +196040,318.04,65.699 +196041,309.45,63.964 +196042,312.01,64.557 +196043,314.42,65.144 +196044,316.71,65.725 +196045,308.15,63.889 +196046,310.7,64.516 +196047,313.11,65.136 +196048,315.39,65.751 +196049,306.85,63.815 +196050,309.39,64.475 +196051,311.79,65.129 +196052,314.06,65.776 +196053,305.55,63.741 +196054,308.08,64.435 +196055,310.47,65.121 +196056,312.73,65.801 +196057,304.25,63.668 +196058,306.78,64.394 +196059,309.15,65.113 +196060,311.4,65.825 +196061,302.96,63.596 +196062,305.47,64.354 +196063,307.83,65.105 +196064,310.07,65.849 +196065,301.67,63.523 +196066,304.17,64.314 +196067,306.51,65.097 +196068,308.73,65.872 +196069,300.38,63.452 +196070,302.86,64.274 +196071,305.19,65.088 +196072,307.4,65.894 +196073,299.09,63.381 +196074,301.56,64.235 +196075,303.87,65.08 +196076,306.06,65.916 +196077,297.8,63.311 +196078,300.25,64.195 +196079,302.55,65.071 +196080,304.72,65.937 +196081,296.52,63.241 +196082,298.95,64.156 +196083,301.23,65.062 +196084,303.38,65.958 +196085,295.24,63.172 +196086,297.65,64.117 +196087,299.91,65.052 +196088,302.03,65.977 +196089,293.96,63.104 +196090,296.35,64.078 +196091,298.58,65.043 +196092,300.69,65.996 +196093,292.68,63.036 +196094,295.04,64.04 +196095,297.26,65.033 +196096,299.34,66.014 +196097,291.4,62.969 +196098,293.74,64.001 +196099,295.94,65.022 +196100,298,66.032 +196101,290.13,62.903 +196102,292.44,63.963 +196103,294.61,65.012 +196104,296.65,66.048 +196105,288.85,62.838 +196106,291.14,63.926 +196107,293.29,65.001 +196108,295.3,66.064 +196109,287.58,62.774 +196110,289.85,63.888 +196111,291.96,64.99 +196112,293.95,66.079 +196113,286.31,62.71 +196114,288.55,63.851 +196115,290.63,64.979 +196116,292.59,66.093 +196117,285.04,62.648 +196118,287.25,63.814 +196119,289.31,64.967 +196120,291.24,66.106 +196121,283.78,62.586 +196122,285.95,63.777 +196123,287.98,64.955 +196124,289.88,66.118 +196125,282.51,62.525 +196126,284.66,63.741 +196127,286.65,64.943 +196128,288.52,66.13 +196129,281.25,62.465 +196130,283.36,63.705 +196131,285.32,64.93 +196132,287.16,66.14 +196133,279.99,62.406 +196134,282.06,63.669 +196135,284,64.917 +196136,285.8,66.149 +196137,278.73,62.348 +196138,280.77,63.634 +196139,282.67,64.904 +196140,284.44,66.158 +196141,277.47,62.291 +196142,279.47,63.599 +196143,281.34,64.89 +196144,283.08,66.165 +196145,276.22,62.235 +196146,278.18,63.564 +196147,280.01,64.876 +196148,281.71,66.171 +196149,274.96,62.18 +196150,276.89,63.529 +196151,278.68,64.861 +196152,280.35,66.176 +196153,273.71,62.127 +196154,275.59,63.495 +196155,277.35,64.847 +196156,278.98,66.181 +196157,272.46,62.074 +196158,274.3,63.461 +196159,276.01,64.832 +196160,277.61,66.184 +196161,271.21,62.022 +196162,273.01,63.428 +196163,274.68,64.816 +196164,276.24,66.186 +196165,269.96,61.972 +196166,271.72,63.395 +196167,273.35,64.8 +196168,274.87,66.187 +196169,268.71,61.922 +196170,270.43,63.362 +196171,272.02,64.784 +196172,273.5,66.186 +196173,267.47,61.874 +196174,269.14,63.33 +196175,270.68,64.767 +196176,272.13,66.185 +196177,266.22,61.827 +196178,267.85,63.298 +196179,269.35,64.75 +196180,270.75,66.183 +196181,264.98,61.781 +196182,266.56,63.266 +196183,268.02,64.733 +196184,269.38,66.179 +196185,263.74,61.736 +196186,265.27,63.235 +196187,266.68,64.715 +196188,268,66.174 +196189,262.5,61.692 +196190,263.98,63.204 +196191,265.35,64.696 +196192,266.62,66.168 +196193,261.26,61.65 +196194,262.69,63.174 +196195,264.01,64.678 +196196,265.24,66.161 +196197,260.02,61.609 +196198,261.4,63.144 +196199,262.68,64.659 +196200,263.86,66.153 +196201,258.78,61.569 +196202,260.11,63.114 +196203,261.34,64.639 +196204,262.48,66.143 +196205,257.54,61.53 +196206,258.83,63.085 +196207,260.01,64.619 +196208,261.1,66.132 +196209,256.31,61.492 +196210,257.54,63.056 +196211,258.67,64.599 +196212,259.72,66.12 +196213,255.07,61.456 +196214,256.25,63.027 +196215,257.34,64.578 +196216,258.34,66.107 +196217,253.84,61.421 +196218,254.97,62.999 +196219,256,64.557 +196220,256.95,66.093 +196221,252.61,61.387 +196222,253.68,62.972 +196223,254.66,64.535 +196224,255.57,66.077 +196225,251.38,61.355 +196226,252.39,62.944 +196227,253.33,64.513 +196228,254.19,66.06 +196229,250.14,61.323 +196230,251.11,62.918 +196231,251.99,64.49 +196232,252.8,66.042 +196233,248.91,61.293 +196234,249.82,62.891 +196235,250.65,64.468 +196236,251.41,66.022 +196237,247.68,61.265 +196238,248.54,62.865 +196239,249.32,64.444 +196240,250.03,66.001 +196241,246.45,61.237 +196242,247.25,62.839 +196243,247.98,64.42 +196244,248.64,65.979 +196245,245.23,61.211 +196246,245.97,62.814 +196247,246.64,64.396 +196248,247.25,65.956 +196249,244,61.186 +196250,244.68,62.789 +196251,245.3,64.371 +196252,245.86,65.931 +196253,242.77,61.163 +196254,243.4,62.765 +196255,243.96,64.346 +196256,244.47,65.905 +196257,241.54,61.141 +196258,242.12,62.741 +196259,242.63,64.321 +196260,243.08,65.878 +196261,240.32,61.12 +196262,240.83,62.718 +196263,241.29,64.295 +196264,241.69,65.85 +196265,239.09,61.1 +196266,239.55,62.694 +196267,239.95,64.268 +196268,240.3,65.82 +196269,237.86,61.082 +196270,238.26,62.672 +196271,238.61,64.241 +196272,238.91,65.789 +196273,236.64,61.064 +196274,236.98,62.649 +196275,237.27,64.214 +196276,237.52,65.757 +196277,235.41,61.049 +196278,235.7,62.628 +196279,235.93,64.186 +196280,236.12,65.723 +196281,234.19,61.034 +196282,234.41,62.606 +196283,234.59,64.158 +196284,234.73,65.689 +196285,232.96,61.021 +196286,233.13,62.585 +196287,233.26,64.129 +196288,233.34,65.653 +196289,231.73,61.009 +196290,231.85,62.564 +196291,231.92,64.1 +196292,231.95,65.615 +196293,230.51,60.998 +196294,230.56,62.544 +196295,230.58,64.071 +196296,230.55,65.577 +196297,229.28,60.988 +196298,229.28,62.524 +196299,229.24,64.041 +196300,229.16,65.537 +196301,228.06,60.98 +196302,228,62.505 +196303,227.9,64.01 +196304,227.77,65.496 +196305,226.83,60.973 +196306,226.71,62.486 +196307,226.56,63.98 +196308,226.38,65.454 +196309,225.61,60.967 +196310,225.43,62.467 +196311,225.22,63.948 +196312,224.98,65.41 +196313,224.38,60.962 +196314,224.15,62.449 +196315,223.88,63.917 +196316,223.59,65.366 +196317,223.15,60.959 +196318,222.86,62.431 +196319,222.55,63.885 +196320,222.2,65.32 +196321,221.93,60.957 +196322,221.58,62.413 +196323,221.21,63.852 +196324,220.8,65.273 +196325,220.7,60.956 +196326,220.3,62.396 +196327,219.87,63.819 +196328,219.41,65.224 +196329,219.47,60.956 +196330,219.01,62.379 +196331,218.53,63.786 +196332,218.02,65.175 +196333,218.25,60.957 +196334,217.73,62.363 +196335,217.19,63.752 +196336,216.63,65.124 +196337,217.02,60.959 +196338,216.45,62.347 +196339,215.85,63.718 +196340,215.24,65.073 +196341,215.79,60.963 +196342,215.16,62.331 +196343,214.52,63.684 +196344,213.84,65.02 +196345,214.56,60.968 +196346,213.88,62.316 +196347,213.18,63.649 +196348,212.45,64.966 +196349,213.33,60.973 +196350,212.6,62.301 +196351,211.84,63.614 +196352,211.06,64.911 +196353,212.1,60.98 +196354,211.31,62.286 +196355,210.5,63.578 +196356,209.67,64.854 +196357,210.87,60.988 +196358,210.03,62.272 +196359,209.17,63.542 +196360,208.28,64.797 +196361,209.64,60.997 +196362,208.74,62.258 +196363,207.83,63.506 +196364,206.89,64.739 +196365,208.4,61.007 +196366,207.46,62.245 +196367,206.49,63.469 +196368,205.5,64.679 +196369,207.17,61.018 +196370,206.17,62.231 +196371,205.16,63.432 +196372,204.12,64.619 +196373,205.93,61.029 +196374,204.89,62.218 +196375,203.82,63.395 +196376,202.73,64.557 +196377,204.7,61.042 +196378,203.6,62.206 +196379,202.48,63.357 +196380,201.34,64.495 +196381,203.46,61.056 +196382,202.32,62.193 +196383,201.15,63.319 +196384,199.96,64.431 +196385,202.22,61.071 +196386,201.03,62.181 +196387,199.81,63.28 +196388,198.57,64.367 +196389,200.99,61.086 +196390,199.74,62.169 +196391,198.48,63.242 +196392,197.18,64.302 +196393,199.75,61.103 +196394,198.46,62.158 +196395,197.14,63.203 +196396,195.8,64.235 +196397,198.51,61.12 +196398,197.17,62.147 +196399,195.81,63.163 +196400,194.42,64.168 +196401,197.26,61.138 +196402,195.88,62.136 +196403,194.47,63.124 +196404,193.04,64.1 +196405,196.02,61.157 +196406,194.59,62.125 +196407,193.14,63.084 +196408,191.65,64.031 +196409,194.78,61.177 +196410,193.31,62.115 +196411,191.81,63.043 +196412,190.27,63.961 +196413,193.53,61.198 +196414,192.02,62.105 +196415,190.47,63.003 +196416,188.89,63.891 +196417,192.29,61.219 +196418,190.73,62.095 +196419,189.14,62.962 +196420,187.52,63.819 +196421,191.04,61.241 +196422,189.44,62.085 +196423,187.81,62.921 +196424,186.14,63.747 +196425,189.79,61.263 +196426,188.15,62.075 +196427,186.48,62.88 +196428,184.76,63.674 +196429,188.54,61.287 +196430,186.86,62.066 +196431,185.15,62.838 +196432,183.39,63.601 +196433,187.29,61.311 +196434,185.57,62.057 +196435,183.81,62.796 +196436,182.01,63.526 +196437,186.03,61.335 +196438,184.28,62.048 +196439,182.48,62.754 +196440,180.64,63.451 +196441,184.78,61.36 +196442,182.99,62.04 +196443,181.15,62.712 +196444,179.27,63.376 +196445,183.52,61.386 +196446,181.7,62.031 +196447,179.82,62.67 +196448,177.9,63.3 +196449,182.27,61.412 +196450,180.41,62.023 +196451,178.5,62.627 +196452,176.53,63.223 +196453,181.01,61.439 +196454,179.11,62.015 +196455,177.17,62.584 +196456,175.16,63.145 +196457,179.75,61.466 +196458,177.82,62.007 +196459,175.84,62.541 +196460,173.8,63.067 +196461,178.49,61.494 +196462,176.53,61.999 +196463,174.51,62.498 +196464,172.43,62.989 +196465,177.22,61.521 +196466,175.23,61.991 +196467,173.18,62.454 +196468,171.07,62.91 +196469,175.96,61.55 +196470,173.94,61.983 +196471,171.86,62.411 +196472,169.71,62.831 +196473,174.69,61.579 +196474,172.64,61.976 +196475,170.53,62.367 +196476,168.35,62.751 +196477,173.42,61.608 +196478,171.35,61.968 +196479,169.21,62.323 +196480,166.99,62.67 +196481,172.15,61.637 +196482,170.05,61.961 +196483,167.88,62.279 +196484,165.63,62.59 +196485,170.88,61.667 +196486,168.76,61.954 +196487,166.56,62.235 +196488,164.28,62.509 +196489,169.61,61.696 +196490,167.46,61.947 +196491,165.23,62.191 +196492,162.92,62.428 +196493,168.33,61.726 +196494,166.16,61.94 +196495,163.91,62.147 +196496,161.57,62.346 +196497,167.06,61.757 +196498,164.86,61.932 +196499,162.59,62.102 +196500,160.22,62.264 +196501,165.78,61.787 +196502,163.56,61.925 +196503,161.27,62.058 +196504,158.87,62.182 +196505,164.5,61.817 +196506,162.27,61.918 +196507,159.95,62.013 +196508,157.53,62.1 +196509,163.22,61.848 +196510,160.97,61.912 +196511,158.62,61.969 +196512,156.18,62.017 +196513,161.93,61.879 +196514,159.67,61.905 +196515,157.3,61.924 +196516,154.84,61.935 +196517,160.65,61.909 +196518,158.36,61.898 +196519,155.99,61.879 +196520,153.5,61.852 +196521,159.36,61.94 +196522,157.06,61.891 +196523,154.67,61.834 +196524,152.16,61.77 +196525,158.07,61.97 +196526,155.76,61.884 +196527,153.35,61.79 +196528,150.82,61.687 +196529,156.78,62.001 +196530,154.46,61.877 +196531,152.03,61.745 +196532,149.48,61.604 +196533,155.49,62.031 +196534,153.16,61.87 +196535,150.71,61.7 +196536,148.15,61.521 +196537,154.2,62.062 +196538,151.85,61.863 +196539,149.4,61.655 +196540,146.82,61.438 +196541,152.9,62.092 +196542,150.55,61.856 +196543,148.08,61.611 +196544,145.49,61.356 +196545,151.6,62.122 +196546,149.24,61.848 +196547,146.77,61.566 +196548,144.16,61.273 +196549,150.3,62.152 +196550,147.94,61.841 +196551,145.45,61.521 +196552,142.83,61.191 +196553,149,62.181 +196554,146.63,61.834 +196555,144.14,61.477 +196556,141.51,61.109 +196557,147.7,62.21 +196558,145.32,61.826 +196559,142.83,61.432 +196560,140.18,61.027 +196561,146.4,62.239 +196562,144.02,61.819 +196563,141.51,61.388 +196564,138.86,60.945 +196565,145.09,62.268 +196566,142.71,61.811 +196567,140.2,61.343 +196568,137.55,60.863 +196569,143.78,62.296 +196570,141.4,61.803 +196571,138.89,61.299 +196572,136.23,60.782 +196573,142.47,62.324 +196574,140.09,61.795 +196575,137.58,61.255 +196576,134.92,60.701 +196577,141.16,62.351 +196578,138.78,61.787 +196579,136.27,61.211 +196580,133.6,60.62 +196581,139.85,62.378 +196582,137.47,61.779 +196583,134.96,61.167 +196584,132.29,60.54 +196585,138.53,62.405 +196586,136.16,61.771 +196587,133.65,61.123 +196588,130.99,60.46 +196589,137.21,62.431 +196590,134.85,61.762 +196591,132.35,61.079 +196592,129.68,60.381 +196593,135.9,62.456 +196594,133.54,61.753 +196595,131.04,61.036 +196596,128.38,60.302 +196597,134.57,62.481 +196598,132.23,61.744 +196599,129.73,60.992 +196600,127.07,60.224 +196601,133.25,62.506 +196602,130.91,61.735 +196603,128.43,60.949 +196604,125.77,60.146 +196605,131.93,62.529 +196606,129.6,61.726 +196607,127.12,60.906 +196608,124.48,60.069 +196609,130.6,62.553 +196610,128.28,61.716 +196611,125.82,60.863 +196612,123.18,59.992 +196613,129.28,62.575 +196614,126.97,61.706 +196615,124.52,60.82 +196616,121.89,59.916 +196617,127.95,62.597 +196618,125.65,61.696 +196619,123.21,60.778 +196620,120.6,59.841 +196621,126.62,62.618 +196622,124.34,61.686 +196623,121.91,60.736 +196624,119.31,59.766 +196625,125.28,62.638 +196626,123.02,61.675 +196627,120.61,60.694 +196628,118.02,59.692 +196629,123.95,62.658 +196630,121.71,61.664 +196631,119.31,60.652 +196632,116.73,59.619 +196633,122.61,62.676 +196634,120.39,61.653 +196635,118.01,60.61 +196636,115.45,59.546 +196637,121.28,62.694 +196638,119.07,61.642 +196639,116.71,60.569 +196640,114.17,59.474 +196641,119.94,62.711 +196642,117.75,61.63 +196643,115.41,60.528 +196644,112.89,59.403 +196645,118.6,62.728 +196646,116.43,61.618 +196647,114.11,60.487 +196648,111.61,59.333 +196649,117.25,62.743 +196650,115.11,61.606 +196651,112.82,60.447 +196652,110.34,59.264 +196653,115.91,62.757 +196654,113.79,61.593 +196655,111.52,60.407 +196656,109.06,59.196 +196657,114.56,62.771 +196658,112.47,61.58 +196659,110.22,60.367 +196660,107.79,59.128 +196661,113.22,62.784 +196662,111.15,61.567 +196663,108.93,60.327 +196664,106.52,59.062 +196665,111.87,62.795 +196666,109.83,61.554 +196667,107.63,60.288 +196668,105.26,58.996 +196669,110.52,62.806 +196670,108.5,61.54 +196671,106.34,60.249 +196672,103.99,58.932 +196673,109.17,62.815 +196674,107.18,61.525 +196675,105.04,60.21 +196676,102.73,58.868 +196677,107.81,62.824 +196678,105.86,61.511 +196679,103.75,60.172 +196680,101.47,58.805 +196681,106.46,62.832 +196682,104.53,61.496 +196683,102.46,60.134 +196684,100.21,58.744 +196685,105.1,62.838 +196686,103.21,61.48 +196687,101.17,60.096 +196688,98.948,58.683 +196689,103.75,62.843 +196690,101.88,61.465 +196691,99.874,60.059 +196692,97.691,58.624 +196693,102.39,62.848 +196694,100.56,61.449 +196695,98.583,60.022 +196696,96.436,58.566 +196697,101.03,62.851 +196698,99.233,61.432 +196699,97.293,59.985 +196700,95.184,58.509 +196701,99.666,62.853 +196702,97.906,61.415 +196703,96.003,59.949 +196704,93.932,58.453 +196705,98.304,62.854 +196706,96.58,61.398 +196707,94.714,59.913 +196708,92.683,58.398 +196709,96.94,62.854 +196710,95.252,61.38 +196711,93.425,59.877 +196712,91.435,58.344 +196713,95.575,62.852 +196714,93.925,61.362 +196715,92.137,59.842 +196716,90.188,58.292 +196717,94.209,62.85 +196718,92.597,61.344 +196719,90.849,59.808 +196720,88.944,58.24 +196721,92.841,62.846 +196722,91.268,61.325 +196723,89.562,59.773 +196724,87.7,58.19 +196725,91.472,62.841 +196726,89.939,61.305 +196727,88.276,59.739 +196728,86.459,58.142 +196729,90.102,62.834 +196730,88.61,61.286 +196731,86.989,59.706 +196732,85.218,58.094 +196733,88.731,62.827 +196734,87.281,61.265 +196735,85.704,59.673 +196736,83.979,58.048 +196737,87.359,62.818 +196738,85.951,61.245 +196739,84.418,59.64 +196740,82.742,58.003 +196741,85.986,62.808 +196742,84.621,61.224 +196743,83.134,59.608 +196744,81.505,57.959 +196745,84.612,62.797 +196746,83.29,61.202 +196747,81.849,59.576 +196748,80.27,57.917 +196749,83.237,62.784 +196750,81.959,61.18 +196751,80.565,59.544 +196752,79.037,57.876 +196753,81.861,62.77 +196754,80.628,61.158 +196755,79.282,59.513 +196756,77.804,57.836 +196757,80.484,62.755 +196758,79.296,61.135 +196759,77.998,59.483 +196760,76.573,57.797 +196761,79.106,62.739 +196762,77.964,61.112 +196763,76.716,59.452 +196764,75.343,57.76 +196765,77.727,62.721 +196766,76.632,61.088 +196767,75.433,59.423 +196768,74.113,57.724 +196769,76.347,62.702 +196770,75.3,61.064 +196771,74.151,59.393 +196772,72.885,57.69 +196773,74.966,62.681 +196774,73.967,61.039 +196775,72.869,59.364 +196776,71.658,57.657 +196777,73.585,62.66 +196778,72.634,61.014 +196779,71.588,59.336 +196780,70.432,57.625 +196781,72.203,62.637 +196782,71.301,60.988 +196783,70.307,59.308 +196784,69.206,57.595 +196785,70.82,62.612 +196786,69.968,60.962 +196787,69.026,59.28 +196788,67.982,57.566 +196789,69.436,62.586 +196790,68.634,60.936 +196791,67.745,59.253 +196792,66.758,57.538 +196793,68.052,62.559 +196794,67.3,60.909 +196795,66.465,59.226 +196796,65.535,57.512 +196797,66.667,62.531 +196798,65.966,60.881 +196799,65.185,59.2 +196800,64.313,57.487 +196801,65.282,62.501 +196802,64.632,60.853 +196803,63.905,59.174 +196804,63.091,57.464 +196805,63.896,62.47 +196806,63.298,60.825 +196807,62.626,59.149 +196808,61.87,57.441 +196809,62.509,62.437 +196810,61.963,60.796 +196811,61.346,59.124 +196812,60.65,57.421 +196813,61.122,62.403 +196814,60.629,60.767 +196815,60.067,59.099 +196816,59.43,57.401 +196817,59.735,62.368 +196818,59.294,60.737 +196819,58.788,59.075 +196820,58.21,57.383 +196821,58.347,62.332 +196822,57.959,60.707 +196823,57.51,59.052 +196824,56.991,57.367 +196825,56.959,62.294 +196826,56.624,60.676 +196827,56.231,59.028 +196828,55.772,57.351 +196829,55.57,62.255 +196830,55.289,60.645 +196831,54.953,59.006 +196832,54.553,57.337 +196833,54.181,62.214 +196834,53.954,60.613 +196835,53.674,58.983 +196836,53.335,57.325 +196837,52.792,62.172 +196838,52.619,60.581 +196839,52.396,58.961 +196840,52.117,57.313 +196841,51.403,62.129 +196842,51.284,60.549 +196843,51.118,58.94 +196844,50.899,57.303 +196845,50.013,62.085 +196846,49.949,60.516 +196847,49.84,58.919 +196848,49.681,57.295 +196849,48.623,62.039 +196850,48.614,60.482 +196851,48.562,58.898 +196852,48.463,57.287 +196853,47.233,61.992 +196854,47.278,60.448 +196855,47.284,58.878 +196856,47.245,57.281 +196857,45.843,61.944 +196858,45.943,60.414 +196859,46.006,58.858 +196860,46.027,57.276 +196861,44.453,61.894 +196862,44.608,60.379 +196863,44.728,58.839 +196864,44.809,57.273 +196865,43.063,61.843 +196866,43.273,60.344 +196867,43.45,58.82 +196868,43.591,57.271 +196869,41.673,61.791 +196870,41.938,60.308 +196871,42.172,58.801 +196872,42.373,57.27 +196873,40.283,61.738 +196874,40.603,60.272 +196875,40.894,58.783 +196876,41.154,57.27 +196877,38.893,61.683 +196878,39.268,60.236 +196879,39.616,58.765 +196880,39.935,57.271 +196881,37.503,61.627 +196882,37.933,60.199 +196883,38.338,58.748 +196884,38.716,57.274 +196885,36.113,61.57 +196886,36.599,60.162 +196887,37.06,58.731 +196888,37.496,57.278 +196889,34.724,61.512 +196890,35.264,60.124 +196891,35.782,58.714 +196892,36.276,57.283 +196893,33.335,61.452 +196894,33.93,60.086 +196895,34.504,58.698 +196896,35.055,57.289 +196897,31.946,61.392 +196898,32.596,60.048 +196899,33.225,58.682 +196900,33.834,57.296 +196901,30.557,61.33 +196902,31.262,60.009 +196903,31.947,58.666 +196904,32.613,57.305 +196905,29.169,61.267 +196906,29.928,59.969 +196907,30.668,58.651 +196908,31.39,57.314 +196909,27.781,61.203 +196910,28.594,59.93 +196911,29.389,58.637 +196912,30.167,57.325 +196913,26.394,61.138 +196914,27.261,59.89 +196915,28.11,58.622 +196916,28.943,57.337 +196917,25.007,61.072 +196918,25.927,59.849 +196919,26.831,58.608 +196920,27.719,57.349 +196921,23.621,61.005 +196922,24.594,59.808 +196923,25.552,58.594 +196924,26.493,57.363 +196925,22.235,60.936 +196926,23.262,59.767 +196927,24.272,58.581 +196928,25.267,57.378 +196929,20.85,60.867 +196930,21.929,59.726 +196931,22.992,58.568 +196932,24.04,57.394 +196933,19.465,60.797 +196934,20.597,59.684 +196935,21.712,58.555 +196936,22.812,57.41 +196937,18.081,60.725 +196938,19.265,59.642 +196939,20.432,58.542 +196940,21.583,57.428 +196941,16.698,60.653 +196942,17.933,59.599 +196943,19.151,58.53 +196944,20.353,57.446 +196945,15.316,60.58 +196946,16.602,59.557 +196947,17.87,58.518 +196948,19.122,57.466 +196949,13.934,60.506 +196950,15.271,59.513 +196951,16.589,58.506 +196952,17.89,57.486 +196953,12.553,60.431 +196954,13.941,59.47 +196955,15.308,58.495 +196956,16.657,57.507 +196957,11.173,60.355 +196958,12.61,59.426 +196959,14.026,58.484 +196960,15.423,57.529 +196961,9.7942,60.278 +196962,11.28,59.382 +196963,12.744,58.473 +196964,14.187,57.551 +196965,8.4161,60.2 +196966,9.9509,59.338 +196967,11.462,58.462 +196968,12.951,57.575 +196969,7.039,60.122 +196970,8.6218,59.293 +196971,10.179,58.452 +196972,11.713,57.599 +196973,5.6629,60.043 +196974,7.2931,59.249 +196975,8.8956,58.442 +196976,10.473,57.624 +196977,4.2878,59.963 +196978,5.9648,59.204 +196979,7.612,58.432 +196980,9.2327,57.649 +196981,2.9139,59.882 +196982,4.637,59.158 +196983,6.3281,58.422 +196984,7.9908,57.675 +196985,1.541,59.801 +196986,3.3096,59.113 +196987,5.0438,58.412 +196988,6.7475,57.702 +196989,0.16939,59.719 +196990,1.9826,59.067 +196991,3.7591,58.403 +196992,5.5028,57.729 +196993,358.8,59.636 +196994,0.65614,59.021 +196995,2.4739,58.394 +196996,4.2567,57.757 +196997,357.43,59.553 +196998,359.33,58.975 +196999,1.1883,58.385 +197000,3.0091,57.786 +197001,356.06,59.469 +197002,358,58.928 +197003,359.9,58.376 +197004,1.76,57.814 +197005,354.7,59.385 +197006,356.68,58.882 +197007,358.62,58.367 +197008,0.50946,57.844 +197009,353.33,59.3 +197010,355.36,58.835 +197011,357.33,58.359 +197012,359.26,57.873 +197013,351.97,59.214 +197014,354.03,58.788 +197015,356.04,58.35 +197016,358,57.904 +197017,350.6,59.128 +197018,352.71,58.741 +197019,354.75,58.342 +197020,356.75,57.934 +197021,349.24,59.042 +197022,351.38,58.694 +197023,353.47,58.334 +197024,355.49,57.965 +197025,347.88,58.955 +197026,350.06,58.646 +197027,352.18,58.326 +197028,354.23,57.996 +197029,346.52,58.868 +197030,348.74,58.599 +197031,350.89,58.318 +197032,352.97,58.028 +197033,345.17,58.781 +197034,347.42,58.551 +197035,349.6,58.31 +197036,351.71,58.059 +197037,343.81,58.693 +197038,346.1,58.503 +197039,348.31,58.302 +197040,350.45,58.091 +197041,342.46,58.605 +197042,344.78,58.456 +197043,347.02,58.294 +197044,349.18,58.123 +197045,341.11,58.516 +197046,343.46,58.408 +197047,345.72,58.287 +197048,347.92,58.155 +197049,339.76,58.428 +197050,342.14,58.36 +197051,344.43,58.279 +197052,346.65,58.188 +197053,338.41,58.339 +197054,340.82,58.312 +197055,343.14,58.271 +197056,345.38,58.22 +197057,337.06,58.25 +197058,339.5,58.264 +197059,341.85,58.264 +197060,344.11,58.253 +197061,335.72,58.161 +197062,338.19,58.215 +197063,340.55,58.256 +197064,342.83,58.285 +197065,334.38,58.072 +197066,336.87,58.167 +197067,339.26,58.248 +197068,341.56,58.318 +197069,333.04,57.983 +197070,335.56,58.119 +197071,337.97,58.241 +197072,340.28,58.35 +197073,331.7,57.894 +197074,334.24,58.071 +197075,336.67,58.233 +197076,339,58.383 +197077,330.36,57.805 +197078,332.93,58.023 +197079,335.37,58.225 +197080,337.72,58.415 +197081,329.02,57.715 +197082,331.61,57.975 +197083,334.08,58.218 +197084,336.44,58.447 +197085,327.69,57.626 +197086,330.3,57.926 +197087,332.78,58.21 +197088,335.15,58.479 +197089,326.36,57.537 +197090,328.99,57.878 +197091,331.48,58.202 +197092,333.87,58.511 +197093,325.03,57.449 +197094,327.68,57.83 +197095,330.19,58.194 +197096,332.58,58.542 +197097,323.7,57.36 +197098,326.36,57.782 +197099,328.89,58.186 +197100,331.29,58.574 +197101,322.37,57.272 +197102,325.05,57.734 +197103,327.59,58.178 +197104,330,58.605 +197105,321.05,57.183 +197106,323.74,57.686 +197107,326.29,58.17 +197108,328.7,58.635 +197109,319.73,57.095 +197110,322.43,57.639 +197111,324.99,58.161 +197112,327.41,58.666 +197113,318.41,57.008 +197114,321.13,57.591 +197115,323.69,58.153 +197116,326.11,58.696 +197117,317.09,56.921 +197118,319.82,57.543 +197119,322.38,58.144 +197120,324.81,58.725 +197121,315.78,56.834 +197122,318.51,57.496 +197123,321.08,58.135 +197124,323.51,58.754 +197125,314.46,56.747 +197126,317.21,57.449 +197127,319.78,58.126 +197128,322.21,58.783 +197129,313.15,56.661 +197130,315.9,57.401 +197131,318.48,58.117 +197132,320.9,58.811 +197133,311.84,56.576 +197134,314.6,57.354 +197135,317.17,58.108 +197136,319.6,58.839 +197137,310.54,56.491 +197138,313.29,57.308 +197139,315.87,58.098 +197140,318.29,58.866 +197141,309.23,56.406 +197142,311.99,57.261 +197143,314.56,58.089 +197144,316.98,58.892 +197145,307.93,56.322 +197146,310.69,57.214 +197147,313.26,58.079 +197148,315.67,58.918 +197149,306.63,56.239 +197150,309.38,57.168 +197151,311.95,58.069 +197152,314.36,58.943 +197153,305.33,56.156 +197154,308.08,57.122 +197155,310.64,58.058 +197156,313.04,58.968 +197157,304.03,56.074 +197158,306.78,57.076 +197159,309.34,58.048 +197160,311.72,58.992 +197161,302.74,55.993 +197162,305.48,57.03 +197163,308.03,58.037 +197164,310.4,59.015 +197165,301.45,55.912 +197166,304.18,56.985 +197167,306.72,58.026 +197168,309.08,59.037 +197169,300.16,55.832 +197170,302.89,56.94 +197171,305.41,58.014 +197172,307.76,59.059 +197173,298.87,55.753 +197174,301.59,56.895 +197175,304.1,58.003 +197176,306.44,59.079 +197177,297.58,55.675 +197178,300.29,56.85 +197179,302.79,57.991 +197180,305.11,59.099 +197181,296.3,55.598 +197182,298.99,56.806 +197183,301.48,57.978 +197184,303.79,59.118 +197185,295.02,55.521 +197186,297.7,56.762 +197187,300.17,57.966 +197188,302.46,59.137 +197189,293.74,55.445 +197190,296.4,56.718 +197191,298.85,57.953 +197192,301.13,59.154 +197193,292.46,55.371 +197194,295.11,56.674 +197195,297.54,57.94 +197196,299.79,59.17 +197197,291.19,55.297 +197198,293.82,56.631 +197199,296.23,57.926 +197200,298.46,59.186 +197201,289.92,55.224 +197202,292.52,56.588 +197203,294.91,57.912 +197204,297.13,59.2 +197205,288.65,55.152 +197206,291.23,56.546 +197207,293.6,57.898 +197208,295.79,59.213 +197209,287.38,55.082 +197210,289.94,56.504 +197211,292.29,57.884 +197212,294.45,59.226 +197213,286.11,55.012 +197214,288.65,56.462 +197215,290.97,57.869 +197216,293.11,59.237 +197217,284.85,54.943 +197218,287.36,56.42 +197219,289.65,57.853 +197220,291.77,59.247 +197221,283.59,54.876 +197222,286.07,56.379 +197223,288.34,57.838 +197224,290.42,59.256 +197225,282.33,54.81 +197226,284.78,56.338 +197227,287.02,57.822 +197228,289.08,59.265 +197229,281.07,54.745 +197230,283.49,56.298 +197231,285.7,57.805 +197232,287.73,59.272 +197233,279.81,54.681 +197234,282.21,56.258 +197235,284.39,57.789 +197236,286.39,59.277 +197237,278.56,54.618 +197238,280.92,56.218 +197239,283.07,57.771 +197240,285.04,59.282 +197241,277.3,54.556 +197242,279.63,56.179 +197243,281.75,57.754 +197244,283.69,59.285 +197245,276.05,54.496 +197246,278.35,56.14 +197247,280.43,57.736 +197248,282.33,59.288 +197249,274.81,54.437 +197250,277.06,56.101 +197251,279.11,57.717 +197252,280.98,59.289 +197253,273.56,54.379 +197254,275.78,56.063 +197255,277.79,57.698 +197256,279.63,59.289 +197257,272.31,54.323 +197258,274.49,56.026 +197259,276.47,57.679 +197260,278.27,59.287 +197261,271.07,54.268 +197262,273.21,55.988 +197263,275.15,57.659 +197264,276.91,59.285 +197265,269.83,54.214 +197266,271.93,55.952 +197267,273.82,57.639 +197268,275.55,59.281 +197269,268.59,54.161 +197270,270.65,55.915 +197271,272.5,57.619 +197272,274.19,59.275 +197273,267.35,54.11 +197274,269.36,55.879 +197275,271.18,57.597 +197276,272.83,59.269 +197277,266.12,54.06 +197278,268.08,55.844 +197279,269.86,57.576 +197280,271.47,59.261 +197281,264.88,54.012 +197282,266.8,55.809 +197283,268.53,57.554 +197284,270.11,59.252 +197285,263.65,53.965 +197286,265.52,55.774 +197287,267.21,57.532 +197288,268.74,59.241 +197289,262.42,53.92 +197290,264.24,55.74 +197291,265.89,57.509 +197292,267.38,59.229 +197293,261.19,53.876 +197294,262.96,55.706 +197295,264.56,57.485 +197296,266.01,59.216 +197297,259.96,53.833 +197298,261.69,55.673 +197299,263.24,57.461 +197300,264.64,59.201 +197301,258.73,53.792 +197302,260.41,55.64 +197303,261.91,57.437 +197304,263.27,59.185 +197305,257.5,53.752 +197306,259.13,55.608 +197307,260.59,57.412 +197308,261.9,59.168 +197309,256.28,53.714 +197310,257.85,55.576 +197311,259.26,57.387 +197312,260.53,59.149 +197313,255.06,53.677 +197314,256.58,55.545 +197315,257.94,57.361 +197316,259.16,59.129 +197317,253.83,53.642 +197318,255.3,55.514 +197319,256.61,57.335 +197320,257.79,59.108 +197321,252.61,53.608 +197322,254.02,55.484 +197323,255.28,57.308 +197324,256.42,59.085 +197325,251.39,53.576 +197326,252.75,55.454 +197327,253.96,57.281 +197328,255.04,59.06 +197329,250.17,53.545 +197330,251.47,55.425 +197331,252.63,57.253 +197332,253.67,59.034 +197333,248.96,53.516 +197334,250.2,55.396 +197335,251.3,57.225 +197336,252.29,59.007 +197337,247.74,53.488 +197338,248.92,55.367 +197339,249.98,57.196 +197340,250.91,58.978 +197341,246.52,53.461 +197342,247.65,55.339 +197343,248.65,57.167 +197344,249.54,58.948 +197345,245.31,53.437 +197346,246.38,55.312 +197347,247.32,57.137 +197348,248.16,58.917 +197349,244.1,53.413 +197350,245.1,55.285 +197351,245.99,57.107 +197352,246.78,58.884 +197353,242.88,53.391 +197354,243.83,55.258 +197355,244.66,57.077 +197356,245.4,58.849 +197357,241.67,53.371 +197358,242.56,55.232 +197359,243.33,57.045 +197360,244.02,58.814 +197361,240.46,53.352 +197362,241.28,55.207 +197363,242.01,57.014 +197364,242.64,58.776 +197365,239.25,53.335 +197366,240.01,55.182 +197367,240.68,56.982 +197368,241.26,58.738 +197369,238.03,53.319 +197370,238.74,55.157 +197371,239.35,56.949 +197372,239.88,58.698 +197373,236.82,53.305 +197374,237.47,55.133 +197375,238.02,56.916 +197376,238.49,58.656 +197377,235.61,53.292 +197378,236.2,55.109 +197379,236.69,56.882 +197380,237.11,58.613 +197381,234.4,53.28 +197382,234.92,55.086 +197383,235.36,56.848 +197384,235.73,58.569 +197385,233.2,53.27 +197386,233.65,55.063 +197387,234.03,56.814 +197388,234.34,58.523 +197389,231.99,53.262 +197390,232.38,55.041 +197391,232.7,56.779 +197392,232.96,58.476 +197393,230.78,53.254 +197394,231.11,55.019 +197395,231.37,56.743 +197396,231.58,58.427 +197397,229.57,53.249 +197398,229.84,54.998 +197399,230.04,56.707 +197400,230.19,58.377 +197401,228.36,53.244 +197402,228.57,54.977 +197403,228.72,56.671 +197404,228.81,58.326 +197405,227.15,53.242 +197406,227.3,54.957 +197407,227.39,56.634 +197408,227.42,58.273 +197409,225.94,53.24 +197410,226.03,54.937 +197411,226.06,56.596 +197412,226.04,58.219 +197413,224.74,53.24 +197414,224.76,54.917 +197415,224.73,56.558 +197416,224.66,58.164 +197417,223.53,53.241 +197418,223.49,54.898 +197419,223.4,56.52 +197420,223.27,58.107 +197421,222.32,53.244 +197422,222.21,54.88 +197423,222.07,56.481 +197424,221.89,58.049 +197425,221.11,53.247 +197426,220.94,54.862 +197427,220.74,56.442 +197428,220.5,57.989 +197429,219.9,53.253 +197430,219.67,54.844 +197431,219.41,56.402 +197432,219.12,57.929 +197433,218.69,53.259 +197434,218.4,54.827 +197435,218.08,56.362 +197436,217.73,57.867 +197437,217.48,53.267 +197438,217.13,54.81 +197439,216.75,56.322 +197440,216.35,57.803 +197441,216.27,53.276 +197442,215.86,54.793 +197443,215.42,56.281 +197444,214.96,57.739 +197445,215.06,53.286 +197446,214.59,54.777 +197447,214.1,56.24 +197448,213.58,57.673 +197449,213.85,53.297 +197450,213.32,54.761 +197451,212.77,56.198 +197452,212.19,57.606 +197453,212.64,53.31 +197454,212.05,54.746 +197455,211.44,56.156 +197456,210.81,57.538 +197457,211.43,53.323 +197458,210.78,54.731 +197459,210.11,56.113 +197460,209.43,57.468 +197461,210.21,53.338 +197462,209.51,54.717 +197463,208.78,56.07 +197464,208.05,57.398 +197465,209,53.354 +197466,208.23,54.703 +197467,207.46,56.027 +197468,206.66,57.326 +197469,207.79,53.371 +197470,206.96,54.689 +197471,206.13,55.983 +197472,205.28,57.253 +197473,206.57,53.39 +197474,205.69,54.675 +197475,204.8,55.939 +197476,203.9,57.179 +197477,205.35,53.409 +197478,204.42,54.662 +197479,203.47,55.894 +197480,202.52,57.104 +197481,204.14,53.429 +197482,203.15,54.65 +197483,202.15,55.849 +197484,201.14,57.028 +197485,202.92,53.45 +197486,201.87,54.637 +197487,200.82,55.804 +197488,199.76,56.951 +197489,201.7,53.472 +197490,200.6,54.625 +197491,199.49,55.759 +197492,198.38,56.872 +197493,200.48,53.495 +197494,199.33,54.613 +197495,198.17,55.713 +197496,197,56.793 +197497,199.26,53.519 +197498,198.06,54.602 +197499,196.84,55.667 +197500,195.62,56.713 +197501,198.04,53.544 +197502,196.78,54.591 +197503,195.52,55.62 +197504,194.24,56.632 +197505,196.82,53.57 +197506,195.51,54.58 +197507,194.19,55.573 +197508,192.87,56.549 +197509,195.59,53.597 +197510,194.23,54.569 +197511,192.87,55.526 +197512,191.49,56.466 +197513,194.37,53.624 +197514,192.96,54.559 +197515,191.54,55.479 +197516,190.12,56.382 +197517,193.14,53.652 +197518,191.69,54.549 +197519,190.22,55.431 +197520,188.74,56.298 +197521,191.91,53.681 +197522,190.41,54.539 +197523,188.9,55.383 +197524,187.37,56.212 +197525,190.68,53.71 +197526,189.14,54.529 +197527,187.57,55.335 +197528,186,56.125 +197529,189.45,53.741 +197530,187.86,54.52 +197531,186.25,55.286 +197532,184.63,56.038 +197533,188.22,53.772 +197534,186.58,54.511 +197535,184.93,55.238 +197536,183.26,55.95 +197537,186.99,53.803 +197538,185.31,54.502 +197539,183.61,55.189 +197540,181.89,55.862 +197541,185.75,53.835 +197542,184.03,54.493 +197543,182.29,55.14 +197544,180.52,55.772 +197545,184.52,53.868 +197546,182.75,54.485 +197547,180.97,55.09 +197548,179.15,55.682 +197549,183.28,53.901 +197550,181.48,54.476 +197551,179.65,55.041 +197552,177.79,55.591 +197553,182.04,53.934 +197554,180.2,54.468 +197555,178.33,54.991 +197556,176.42,55.5 +197557,180.8,53.968 +197558,178.92,54.46 +197559,177.01,54.941 +197560,175.06,55.408 +197561,179.56,54.003 +197562,177.64,54.452 +197563,175.69,54.891 +197564,173.7,55.316 +197565,178.31,54.038 +197566,176.36,54.445 +197567,174.37,54.841 +197568,172.34,55.223 +197569,177.07,54.073 +197570,175.08,54.437 +197571,173.05,54.79 +197572,170.98,55.13 +197573,175.82,54.108 +197574,173.8,54.43 +197575,171.74,54.74 +197576,169.62,55.036 +197577,174.57,54.144 +197578,172.52,54.422 +197579,170.42,54.689 +197580,168.27,54.942 +197581,173.32,54.18 +197582,171.24,54.415 +197583,169.11,54.638 +197584,166.91,54.847 +197585,172.07,54.216 +197586,169.96,54.408 +197587,167.79,54.587 +197588,165.56,54.752 +197589,170.82,54.252 +197590,168.68,54.4 +197591,166.48,54.536 +197592,164.21,54.657 +197593,169.56,54.289 +197594,167.39,54.393 +197595,165.16,54.485 +197596,162.86,54.562 +197597,168.3,54.326 +197598,166.11,54.386 +197599,163.85,54.434 +197600,161.51,54.466 +197601,167.05,54.362 +197602,164.83,54.379 +197603,162.54,54.383 +197604,160.16,54.37 +197605,165.78,54.399 +197606,163.54,54.372 +197607,161.22,54.332 +197608,158.82,54.274 +197609,164.52,54.436 +197610,162.26,54.365 +197611,159.91,54.28 +197612,157.48,54.178 +197613,163.26,54.472 +197614,160.97,54.358 +197615,158.6,54.229 +197616,156.13,54.082 +197617,161.99,54.509 +197618,159.69,54.351 +197619,157.29,54.178 +197620,154.79,53.986 +197621,160.72,54.546 +197622,158.4,54.344 +197623,155.98,54.126 +197624,153.46,53.889 +197625,159.45,54.582 +197626,157.11,54.337 +197627,154.67,54.075 +197628,152.12,53.793 +197629,158.18,54.618 +197630,155.82,54.33 +197631,153.36,54.024 +197632,150.79,53.697 +197633,156.91,54.654 +197634,154.54,54.323 +197635,152.06,53.973 +197636,149.45,53.6 +197637,155.63,54.69 +197638,153.25,54.316 +197639,150.75,53.922 +197640,148.12,53.504 +197641,154.36,54.726 +197642,151.96,54.309 +197643,149.44,53.871 +197644,146.79,53.409 +197645,153.08,54.761 +197646,150.67,54.301 +197647,148.14,53.82 +197648,145.47,53.313 +197649,151.8,54.796 +197650,149.38,54.294 +197651,146.83,53.769 +197652,144.14,53.217 +197653,150.52,54.831 +197654,148.09,54.286 +197655,145.53,53.718 +197656,142.82,53.122 +197657,149.23,54.865 +197658,146.8,54.278 +197659,144.23,53.667 +197660,141.5,53.027 +197661,147.95,54.899 +197662,145.5,54.271 +197663,142.92,53.617 +197664,140.18,52.933 +197665,146.66,54.932 +197666,144.21,54.263 +197667,141.62,53.566 +197668,138.87,52.839 +197669,145.37,54.965 +197670,142.92,54.254 +197671,140.32,53.516 +197672,137.55,52.745 +197673,144.08,54.997 +197674,141.62,54.246 +197675,139.02,53.466 +197676,136.24,52.652 +197677,142.78,55.029 +197678,140.33,54.238 +197679,137.72,53.416 +197680,134.93,52.559 +197681,141.49,55.06 +197682,139.03,54.229 +197683,136.42,53.366 +197684,133.62,52.467 +197685,140.19,55.09 +197686,137.74,54.22 +197687,135.12,53.316 +197688,132.32,52.375 +197689,138.89,55.12 +197690,136.44,54.211 +197691,133.83,53.267 +197692,131.01,52.284 +197693,137.59,55.15 +197694,135.14,54.201 +197695,132.53,53.218 +197696,129.71,52.194 +197697,136.29,55.178 +197698,133.85,54.192 +197699,131.23,53.169 +197700,128.41,52.104 +197701,134.98,55.206 +197702,132.55,54.182 +197703,129.94,53.12 +197704,127.12,52.015 +197705,133.68,55.233 +197706,131.25,54.172 +197707,128.64,53.072 +197708,125.82,51.927 +197709,132.37,55.259 +197710,129.95,54.162 +197711,127.35,53.023 +197712,124.53,51.839 +197713,131.06,55.284 +197714,128.65,54.151 +197715,126.06,52.976 +197716,123.24,51.752 +197717,129.75,55.309 +197718,127.35,54.14 +197719,124.77,52.928 +197720,121.95,51.666 +197721,128.43,55.333 +197722,126.05,54.129 +197723,123.47,52.881 +197724,120.67,51.581 +197725,127.12,55.355 +197726,124.75,54.117 +197727,122.18,52.834 +197728,119.38,51.497 +197729,125.8,55.377 +197730,123.45,54.106 +197731,120.89,52.787 +197732,118.1,51.414 +197733,124.48,55.398 +197734,122.14,54.094 +197735,119.6,52.74 +197736,116.82,51.332 +197737,123.16,55.418 +197738,120.84,54.081 +197739,118.32,52.694 +197740,115.55,51.251 +197741,121.84,55.437 +197742,119.54,54.068 +197743,117.03,52.649 +197744,114.27,51.171 +197745,120.52,55.455 +197746,118.23,54.055 +197747,115.74,52.603 +197748,113,51.092 +197749,119.19,55.471 +197750,116.93,54.042 +197751,114.46,52.558 +197752,111.73,51.014 +197753,117.87,55.487 +197754,115.62,54.028 +197755,113.17,52.514 +197756,110.47,50.937 +197757,116.54,55.502 +197758,114.32,54.014 +197759,111.89,52.469 +197760,109.2,50.862 +197761,115.21,55.515 +197762,113.01,53.999 +197763,110.6,52.425 +197764,107.94,50.787 +197765,113.88,55.528 +197766,111.7,53.984 +197767,109.32,52.382 +197768,106.68,50.714 +197769,112.55,55.539 +197770,110.39,53.969 +197771,108.04,52.339 +197772,105.42,50.642 +197773,111.21,55.549 +197774,109.09,53.953 +197775,106.75,52.296 +197776,104.16,50.571 +197777,109.87,55.558 +197778,107.78,53.937 +197779,105.47,52.254 +197780,102.91,50.502 +197781,108.54,55.565 +197782,106.47,53.92 +197783,104.19,52.212 +197784,101.65,50.434 +197785,107.2,55.571 +197786,105.16,53.903 +197787,102.91,52.171 +197788,100.4,50.367 +197789,105.86,55.576 +197790,103.85,53.885 +197791,101.63,52.13 +197792,99.157,50.302 +197793,104.52,55.58 +197794,102.54,53.867 +197795,100.35,52.09 +197796,97.911,50.238 +197797,103.17,55.583 +197798,101.23,53.849 +197799,99.076,52.05 +197800,96.667,50.175 +197801,101.83,55.584 +197802,99.916,53.83 +197803,97.799,52.01 +197804,95.426,50.114 +197805,100.48,55.583 +197806,98.604,53.811 +197807,96.522,51.971 +197808,94.186,50.055 +197809,99.135,55.582 +197810,97.292,53.791 +197811,95.246,51.933 +197812,92.948,49.997 +197813,97.787,55.579 +197814,95.979,53.771 +197815,93.971,51.894 +197816,91.712,49.94 +197817,96.437,55.575 +197818,94.666,53.75 +197819,92.696,51.857 +197820,90.478,49.885 +197821,95.086,55.569 +197822,93.353,53.729 +197823,91.422,51.82 +197824,89.246,49.831 +197825,93.734,55.562 +197826,92.039,53.708 +197827,90.149,51.783 +197828,88.016,49.779 +197829,92.38,55.553 +197830,90.724,53.686 +197831,88.876,51.747 +197832,86.788,49.729 +197833,91.026,55.543 +197834,89.41,53.663 +197835,87.603,51.712 +197836,85.561,49.68 +197837,89.67,55.532 +197838,88.094,53.64 +197839,86.332,51.676 +197840,84.336,49.633 +197841,88.313,55.519 +197842,86.779,53.616 +197843,85.06,51.642 +197844,83.112,49.587 +197845,86.955,55.504 +197846,85.463,53.592 +197847,83.79,51.608 +197848,81.891,49.543 +197849,85.596,55.489 +197850,84.147,53.568 +197851,82.519,51.574 +197852,80.671,49.5 +197853,84.236,55.471 +197854,82.83,53.542 +197855,81.25,51.541 +197856,79.452,49.46 +197857,82.875,55.453 +197858,81.514,53.517 +197859,79.981,51.509 +197860,78.235,49.42 +197861,81.513,55.432 +197862,80.197,53.491 +197863,78.712,51.477 +197864,77.019,49.383 +197865,80.151,55.41 +197866,78.879,53.464 +197867,77.444,51.446 +197868,75.805,49.347 +197869,78.787,55.387 +197870,77.561,53.437 +197871,76.176,51.415 +197872,74.592,49.313 +197873,77.422,55.362 +197874,76.243,53.409 +197875,74.909,51.385 +197876,73.381,49.28 +197877,76.057,55.336 +197878,74.925,53.381 +197879,73.642,51.355 +197880,72.17,49.25 +197881,74.69,55.308 +197882,73.607,53.352 +197883,72.375,51.326 +197884,70.961,49.221 +197885,73.323,55.278 +197886,72.288,53.323 +197887,71.109,51.297 +197888,69.753,49.193 +197889,71.955,55.247 +197890,70.969,53.293 +197891,69.843,51.269 +197892,68.546,49.167 +197893,70.587,55.215 +197894,69.65,53.263 +197895,68.578,51.242 +197896,67.341,49.143 +197897,69.218,55.181 +197898,68.331,53.232 +197899,67.313,51.215 +197900,66.136,49.121 +197901,67.848,55.145 +197902,67.011,53.201 +197903,66.049,51.188 +197904,64.932,49.1 +197905,66.477,55.108 +197906,65.692,53.169 +197907,64.784,51.162 +197908,63.729,49.081 +197909,65.106,55.07 +197910,64.372,53.137 +197911,63.52,51.137 +197912,62.526,49.064 +197913,63.735,55.029 +197914,63.052,53.104 +197915,62.257,51.112 +197916,61.325,49.048 +197917,62.363,54.988 +197918,61.732,53.07 +197919,60.993,51.088 +197920,60.124,49.034 +197921,60.99,54.945 +197922,60.411,53.037 +197923,59.73,51.064 +197924,58.924,49.022 +197925,59.617,54.9 +197926,59.091,53.002 +197927,58.467,51.041 +197928,57.724,49.011 +197929,58.243,54.854 +197930,57.771,52.967 +197931,57.204,51.019 +197932,56.525,49.002 +197933,56.87,54.806 +197934,56.45,52.932 +197935,55.942,50.996 +197936,55.327,48.994 +197937,55.495,54.756 +197938,55.13,52.896 +197939,54.68,50.975 +197940,54.129,48.989 +197941,54.121,54.706 +197942,53.809,52.859 +197943,53.418,50.954 +197944,52.931,48.984 +197945,52.746,54.653 +197946,52.489,52.822 +197947,52.156,50.933 +197948,51.733,48.982 +197949,51.371,54.6 +197950,51.168,52.785 +197951,50.894,50.913 +197952,50.536,48.981 +197953,49.996,54.544 +197954,49.847,52.747 +197955,49.632,50.894 +197956,49.339,48.981 +197957,48.621,54.488 +197958,48.527,52.708 +197959,48.371,50.875 +197960,48.142,48.983 +197961,47.245,54.43 +197962,47.206,52.67 +197963,47.109,50.857 +197964,46.945,48.987 +197965,45.869,54.37 +197966,45.885,52.63 +197967,45.848,50.839 +197968,45.748,48.992 +197969,44.494,54.309 +197970,44.565,52.59 +197971,44.587,50.821 +197972,44.551,48.998 +197973,43.118,54.247 +197974,43.244,52.55 +197975,43.326,50.804 +197976,43.354,49.006 +197977,41.742,54.183 +197978,41.924,52.509 +197979,42.065,50.788 +197980,42.157,49.016 +197981,40.367,54.117 +197982,40.604,52.468 +197983,40.803,50.772 +197984,40.959,49.027 +197985,38.991,54.051 +197986,39.284,52.426 +197987,39.542,50.756 +197988,39.762,49.039 +197989,37.616,53.983 +197990,37.964,52.384 +197991,38.281,50.741 +197992,38.564,49.053 +197993,36.24,53.914 +197994,36.644,52.341 +197995,37.02,50.727 +197996,37.365,49.068 +197997,34.865,53.843 +197998,35.324,52.298 +197999,35.759,50.713 +198000,36.166,49.085 +198001,33.491,53.771 +198002,34.004,52.255 +198003,34.497,50.699 +198004,34.967,49.102 +198005,32.116,53.698 +198006,32.685,52.211 +198007,33.236,50.686 +198008,33.767,49.121 +198009,30.742,53.623 +198010,31.366,52.166 +198011,31.975,50.673 +198012,32.566,49.142 +198013,29.368,53.547 +198014,30.047,52.122 +198015,30.713,50.66 +198016,31.365,49.163 +198017,27.994,53.47 +198018,28.728,52.076 +198019,29.451,50.648 +198020,30.163,49.186 +198021,26.621,53.392 +198022,27.409,52.031 +198023,28.189,50.637 +198024,28.96,49.21 +198025,25.248,53.313 +198026,26.091,51.985 +198027,26.927,50.626 +198028,27.757,49.235 +198029,23.876,53.232 +198030,24.773,51.939 +198031,25.665,50.615 +198032,26.552,49.261 +198033,22.505,53.151 +198034,23.455,51.892 +198035,24.403,50.605 +198036,25.347,49.289 +198037,21.134,53.068 +198038,22.138,51.845 +198039,23.14,50.595 +198040,24.141,49.317 +198041,19.763,52.984 +198042,20.821,51.798 +198043,21.878,50.585 +198044,22.934,49.347 +198045,18.393,52.899 +198046,19.504,51.75 +198047,20.615,50.576 +198048,21.726,49.377 +198049,17.024,52.813 +198050,18.188,51.702 +198051,19.351,50.567 +198052,20.516,49.408 +198053,15.656,52.726 +198054,16.871,51.653 +198055,18.088,50.558 +198056,19.306,49.441 +198057,14.288,52.637 +198058,15.556,51.605 +198059,16.824,50.55 +198060,18.094,49.474 +198061,12.921,52.548 +198062,14.24,51.556 +198063,15.56,50.542 +198064,16.881,49.508 +198065,11.555,52.458 +198066,12.925,51.506 +198067,14.296,50.534 +198068,15.667,49.543 +198069,10.19,52.367 +198070,11.611,51.457 +198071,13.031,50.527 +198072,14.452,49.579 +198073,8.8259,52.276 +198074,10.297,51.407 +198075,11.766,50.52 +198076,13.236,49.615 +198077,7.4626,52.183 +198078,8.9828,51.357 +198079,10.501,50.513 +198080,12.018,49.653 +198081,6.1003,52.09 +198082,7.6695,51.306 +198083,9.2352,50.506 +198084,10.798,49.691 +198085,4.739,51.995 +198086,6.3567,51.256 +198087,7.9691,50.5 +198088,9.5776,49.729 +198089,3.3788,51.9 +198090,5.0443,51.205 +198091,6.7028,50.494 +198092,8.3554,49.769 +198093,2.0196,51.805 +198094,3.7324,51.154 +198095,5.436,50.488 +198096,7.1318,49.809 +198097,0.66165,51.708 +198098,2.4211,51.103 +198099,4.1688,50.483 +198100,5.9066,49.849 +198101,359.3,51.611 +198102,1.1102,51.051 +198103,2.9013,50.477 +198104,4.6799,49.89 +198105,357.95,51.513 +198106,359.8,51 +198107,1.6333,50.472 +198108,3.4517,49.931 +198109,356.59,51.415 +198110,358.49,50.948 +198111,0.36488,50.467 +198112,2.2219,49.973 +198113,355.24,51.316 +198114,357.18,50.896 +198115,359.1,50.462 +198116,0.99042,50.016 +198117,353.89,51.217 +198118,355.87,50.844 +198119,357.83,50.457 +198120,359.76,50.058 +198121,352.54,51.117 +198122,354.56,50.791 +198123,356.56,50.453 +198124,358.52,50.101 +198125,351.19,51.016 +198126,353.26,50.739 +198127,355.29,50.448 +198128,357.29,50.145 +198129,349.84,50.915 +198130,351.95,50.687 +198131,354.02,50.444 +198132,356.05,50.188 +198133,348.5,50.814 +198134,350.64,50.634 +198135,352.74,50.439 +198136,354.81,50.232 +198137,347.15,50.713 +198138,349.34,50.581 +198139,351.47,50.435 +198140,353.57,50.276 +198141,345.81,50.611 +198142,348.03,50.529 +198143,350.2,50.431 +198144,352.32,50.32 +198145,344.47,50.509 +198146,346.73,50.476 +198147,348.93,50.427 +198148,351.08,50.365 +198149,343.13,50.407 +198150,345.42,50.423 +198151,347.66,50.423 +198152,349.83,50.409 +198153,341.79,50.304 +198154,344.12,50.37 +198155,346.38,50.419 +198156,348.58,50.454 +198157,340.45,50.201 +198158,342.82,50.317 +198159,345.11,50.415 +198160,347.33,50.498 +198161,339.12,50.098 +198162,341.52,50.264 +198163,343.83,50.412 +198164,346.08,50.542 +198165,337.78,49.996 +198166,340.21,50.212 +198167,342.56,50.408 +198168,344.83,50.587 +198169,336.45,49.893 +198170,338.91,50.159 +198171,341.28,50.404 +198172,343.57,50.631 +198173,335.12,49.79 +198174,337.61,50.106 +198175,340.01,50.4 +198176,342.31,50.675 +198177,333.8,49.687 +198178,336.31,50.053 +198179,338.73,50.396 +198180,341.05,50.719 +198181,332.47,49.584 +198182,335.02,50 +198183,337.45,50.392 +198184,339.79,50.763 +198185,331.15,49.481 +198186,333.72,49.948 +198187,336.17,50.388 +198188,338.53,50.806 +198189,329.82,49.379 +198190,332.42,49.895 +198191,334.89,50.384 +198192,337.26,50.849 +198193,328.5,49.277 +198194,331.12,49.843 +198195,333.62,50.38 +198196,336,50.892 +198197,327.19,49.175 +198198,329.83,49.79 +198199,332.34,50.376 +198200,334.73,50.935 +198201,325.87,49.073 +198202,328.53,49.738 +198203,331.06,50.371 +198204,333.46,50.977 +198205,324.56,48.971 +198206,327.24,49.686 +198207,329.77,50.367 +198208,332.18,51.018 +198209,323.24,48.87 +198210,325.95,49.634 +198211,328.49,50.362 +198212,330.91,51.059 +198213,321.93,48.77 +198214,324.65,49.582 +198215,327.21,50.358 +198216,329.63,51.1 +198217,320.63,48.669 +198218,323.36,49.531 +198219,325.93,50.353 +198220,328.35,51.14 +198221,319.32,48.57 +198222,322.07,49.479 +198223,324.65,50.348 +198224,327.07,51.18 +198225,318.02,48.47 +198226,320.78,49.428 +198227,323.36,50.342 +198228,325.79,51.219 +198229,316.71,48.372 +198230,319.49,49.377 +198231,322.08,50.337 +198232,324.51,51.257 +198233,315.42,48.274 +198234,318.2,49.326 +198235,320.79,50.331 +198236,323.22,51.295 +198237,314.12,48.176 +198238,316.91,49.276 +198239,319.51,50.325 +198240,321.93,51.332 +198241,312.82,48.08 +198242,315.62,49.225 +198243,318.22,50.319 +198244,320.65,51.368 +198245,311.53,47.984 +198246,314.34,49.175 +198247,316.93,50.313 +198248,319.35,51.404 +198249,310.24,47.888 +198250,313.05,49.126 +198251,315.65,50.307 +198252,318.06,51.438 +198253,308.95,47.794 +198254,311.77,49.076 +198255,314.36,50.3 +198256,316.77,51.472 +198257,307.67,47.701 +198258,310.48,49.027 +198259,313.07,50.293 +198260,315.47,51.505 +198261,306.38,47.608 +198262,309.2,48.978 +198263,311.78,50.285 +198264,314.17,51.537 +198265,305.1,47.516 +198266,307.92,48.93 +198267,310.49,50.278 +198268,312.87,51.569 +198269,303.82,47.426 +198270,306.63,48.882 +198271,309.2,50.27 +198272,311.57,51.599 +198273,302.55,47.336 +198274,305.35,48.834 +198275,307.91,50.262 +198276,310.27,51.628 +198277,301.27,47.247 +198278,304.07,48.786 +198279,306.62,50.253 +198280,308.96,51.657 +198281,300,47.16 +198282,302.79,48.739 +198283,305.33,50.244 +198284,307.65,51.684 +198285,298.73,47.073 +198286,301.51,48.693 +198287,304.04,50.235 +198288,306.35,51.71 +198289,297.46,46.988 +198290,300.24,48.646 +198291,302.74,50.225 +198292,305.04,51.735 +198293,296.2,46.904 +198294,298.96,48.6 +198295,301.45,50.215 +198296,303.72,51.759 +198297,294.94,46.821 +198298,297.68,48.555 +198299,300.16,50.205 +198300,302.41,51.782 +198301,293.67,46.739 +198302,296.41,48.51 +198303,298.86,50.194 +198304,301.09,51.804 +198305,292.42,46.659 +198306,295.13,48.465 +198307,297.57,50.183 +198308,299.78,51.824 +198309,291.16,46.58 +198310,293.86,48.421 +198311,296.27,50.172 +198312,298.46,51.844 +198313,289.91,46.502 +198314,292.58,48.378 +198315,294.97,50.16 +198316,297.14,51.862 +198317,288.66,46.426 +198318,291.31,48.334 +198319,293.68,50.148 +198320,295.82,51.879 +198321,287.41,46.351 +198322,290.04,48.292 +198323,292.38,50.135 +198324,294.49,51.894 +198325,286.16,46.278 +198326,288.77,48.249 +198327,291.08,50.122 +198328,293.17,51.909 +198329,284.92,46.206 +198330,287.5,48.208 +198331,289.79,50.108 +198332,291.84,51.922 +198333,283.67,46.136 +198334,286.23,48.166 +198335,288.49,50.094 +198336,290.52,51.933 +198337,282.43,46.067 +198338,284.96,48.126 +198339,287.19,50.08 +198340,289.19,51.944 +198341,281.2,46 +198342,283.69,48.085 +198343,285.89,50.065 +198344,287.86,51.953 +198345,279.96,45.934 +198346,282.42,48.046 +198347,284.59,50.049 +198348,286.53,51.96 +198349,278.73,45.87 +198350,281.15,48.007 +198351,283.29,50.033 +198352,285.19,51.966 +198353,277.5,45.808 +198354,279.89,47.968 +198355,281.99,50.017 +198356,283.86,51.971 +198357,276.27,45.747 +198358,278.62,47.93 +198359,280.69,50 +198360,282.52,51.974 +198361,275.04,45.688 +198362,277.36,47.892 +198363,279.39,49.983 +198364,281.19,51.976 +198365,273.81,45.631 +198366,276.09,47.855 +198367,278.08,49.965 +198368,279.85,51.976 +198369,272.59,45.575 +198370,274.83,47.819 +198371,276.78,49.947 +198372,278.51,51.975 +198373,271.37,45.522 +198374,273.57,47.783 +198375,275.48,49.928 +198376,277.17,51.972 +198377,270.15,45.47 +198378,272.3,47.748 +198379,274.17,49.909 +198380,275.83,51.968 +198381,268.93,45.419 +198382,271.04,47.714 +198383,272.87,49.889 +198384,274.49,51.962 +198385,267.72,45.371 +198386,269.78,47.68 +198387,271.57,49.868 +198388,273.14,51.955 +198389,266.5,45.324 +198390,268.52,47.646 +198391,270.26,49.848 +198392,271.8,51.946 +198393,265.29,45.28 +198394,267.26,47.613 +198395,268.96,49.826 +198396,270.45,51.936 +198397,264.08,45.237 +198398,266,47.581 +198399,267.65,49.804 +198400,269.1,51.924 +198401,262.87,45.196 +198402,264.74,47.549 +198403,266.35,49.782 +198404,267.76,51.91 +198405,261.66,45.157 +198406,263.48,47.519 +198407,265.04,49.759 +198408,266.41,51.895 +198409,260.46,45.119 +198410,262.22,47.488 +198411,263.74,49.735 +198412,265.06,51.878 +198413,259.26,45.084 +198414,260.97,47.458 +198415,262.43,49.711 +198416,263.71,51.86 +198417,258.05,45.051 +198418,259.71,47.429 +198419,261.12,49.687 +198420,262.35,51.84 +198421,256.85,45.019 +198422,258.45,47.401 +198423,259.82,49.661 +198424,261,51.818 +198425,255.65,44.989 +198426,257.2,47.373 +198427,258.51,49.636 +198428,259.65,51.795 +198429,254.45,44.962 +198430,255.94,47.346 +198431,257.2,49.609 +198432,258.3,51.77 +198433,253.26,44.936 +198434,254.68,47.319 +198435,255.9,49.583 +198436,256.94,51.743 +198437,252.06,44.912 +198438,253.43,47.293 +198439,254.59,49.555 +198440,255.59,51.715 +198441,250.87,44.89 +198442,252.18,47.268 +198443,253.28,49.527 +198444,254.23,51.685 +198445,249.67,44.87 +198446,250.92,47.243 +198447,251.97,49.499 +198448,252.87,51.654 +198449,248.48,44.852 +198450,249.67,47.219 +198451,250.67,49.47 +198452,251.52,51.621 +198453,247.29,44.836 +198454,248.41,47.195 +198455,249.36,49.44 +198456,250.16,51.586 +198457,246.1,44.821 +198458,247.16,47.173 +198459,248.05,49.41 +198460,248.8,51.549 +198461,244.91,44.809 +198462,245.91,47.15 +198463,246.74,49.38 +198464,247.44,51.511 +198465,243.72,44.799 +198466,244.66,47.129 +198467,245.43,49.348 +198468,246.08,51.472 +198469,242.53,44.79 +198470,243.4,47.108 +198471,244.12,49.317 +198472,244.72,51.43 +198473,241.34,44.783 +198474,242.15,47.088 +198475,242.81,49.284 +198476,243.36,51.387 +198477,240.15,44.778 +198478,240.9,47.068 +198479,241.51,49.252 +198480,242,51.343 +198481,238.97,44.775 +198482,239.65,47.049 +198483,240.2,49.218 +198484,240.64,51.297 +198485,237.78,44.774 +198486,238.4,47.03 +198487,238.89,49.184 +198488,239.28,51.249 +198489,236.59,44.775 +198490,237.15,47.012 +198491,237.58,49.15 +198492,237.92,51.199 +198493,235.41,44.777 +198494,235.9,46.995 +198495,236.27,49.115 +198496,236.55,51.148 +198497,234.22,44.782 +198498,234.65,46.979 +198499,234.96,49.08 +198500,235.19,51.096 +198501,233.04,44.788 +198502,233.39,46.963 +198503,233.65,49.044 +198504,233.83,51.041 +198505,231.85,44.796 +198506,232.14,46.947 +198507,232.34,49.007 +198508,232.47,50.986 +198509,230.67,44.805 +198510,230.89,46.932 +198511,231.03,48.97 +198512,231.11,50.928 +198513,229.48,44.817 +198514,229.64,46.918 +198515,229.73,48.933 +198516,229.74,50.869 +198517,228.3,44.83 +198518,228.39,46.904 +198519,228.42,48.894 +198520,228.38,50.809 +198521,227.11,44.844 +198522,227.14,46.891 +198523,227.11,48.856 +198524,227.02,50.747 +198525,225.93,44.861 +198526,225.89,46.879 +198527,225.8,48.817 +198528,225.66,50.683 +198529,224.74,44.879 +198530,224.64,46.867 +198531,224.49,48.777 +198532,224.29,50.618 +198533,223.56,44.898 +198534,223.39,46.855 +198535,223.18,48.737 +198536,222.93,50.552 +198537,222.37,44.92 +198538,222.14,46.844 +198539,221.87,48.697 +198540,221.57,50.484 +198541,221.19,44.942 +198542,220.89,46.834 +198543,220.57,48.656 +198544,220.21,50.414 +198545,220,44.967 +198546,219.64,46.824 +198547,219.26,48.615 +198548,218.85,50.344 +198549,218.81,44.992 +198550,218.39,46.815 +198551,217.95,48.573 +198552,217.48,50.271 +198553,217.62,45.02 +198554,217.14,46.806 +198555,216.64,48.53 +198556,216.12,50.198 +198557,216.43,45.048 +198558,215.89,46.798 +198559,215.34,48.488 +198560,214.76,50.123 +198561,215.25,45.078 +198562,214.64,46.79 +198563,214.03,48.445 +198564,213.4,50.046 +198565,214.06,45.11 +198566,213.39,46.783 +198567,212.72,48.401 +198568,212.04,49.968 +198569,212.86,45.143 +198570,212.14,46.776 +198571,211.42,48.357 +198572,210.68,49.889 +198573,211.67,45.177 +198574,210.89,46.77 +198575,210.11,48.313 +198576,209.32,49.809 +198577,210.48,45.212 +198578,209.64,46.764 +198579,208.8,48.268 +198580,207.97,49.727 +198581,209.29,45.249 +198582,208.39,46.758 +198583,207.5,48.223 +198584,206.61,49.644 +198585,208.09,45.287 +198586,207.14,46.753 +198587,206.19,48.177 +198588,205.25,49.56 +198589,206.9,45.326 +198590,205.89,46.749 +198591,204.89,48.131 +198592,203.89,49.475 +198593,205.7,45.366 +198594,204.64,46.745 +198595,203.58,48.085 +198596,202.54,49.388 +198597,204.5,45.408 +198598,203.39,46.741 +198599,202.28,48.038 +198600,201.18,49.301 +198601,203.3,45.45 +198602,202.13,46.737 +198603,200.97,47.991 +198604,199.83,49.212 +198605,202.1,45.493 +198606,200.88,46.735 +198607,199.67,47.944 +198608,198.47,49.122 +198609,200.9,45.538 +198610,199.63,46.732 +198611,198.37,47.896 +198612,197.12,49.031 +198613,199.7,45.583 +198614,198.38,46.73 +198615,197.07,47.848 +198616,195.77,48.939 +198617,198.5,45.629 +198618,197.12,46.728 +198619,195.76,47.8 +198620,194.42,48.846 +198621,197.29,45.677 +198622,195.87,46.726 +198623,194.46,47.752 +198624,193.07,48.752 +198625,196.08,45.725 +198626,194.61,46.725 +198627,193.16,47.703 +198628,191.72,48.657 +198629,194.88,45.773 +198630,193.36,46.724 +198631,191.86,47.654 +198632,190.37,48.561 +198633,193.67,45.823 +198634,192.11,46.724 +198635,190.56,47.604 +198636,189.02,48.464 +198637,192.46,45.873 +198638,190.85,46.724 +198639,189.26,47.555 +198640,187.68,48.367 +198641,191.24,45.924 +198642,189.59,46.724 +198643,187.96,47.505 +198644,186.33,48.268 +198645,190.03,45.976 +198646,188.34,46.724 +198647,186.66,47.455 +198648,184.99,48.169 +198649,188.81,46.028 +198650,187.08,46.724 +198651,185.36,47.405 +198652,183.64,48.069 +198653,187.59,46.081 +198654,185.83,46.725 +198655,184.06,47.355 +198656,182.3,47.969 +198657,186.38,46.134 +198658,184.57,46.726 +198659,182.77,47.304 +198660,180.96,47.867 +198661,185.15,46.188 +198662,183.31,46.727 +198663,181.47,47.253 +198664,179.62,47.765 +198665,183.93,46.242 +198666,182.05,46.729 +198667,180.17,47.203 +198668,178.29,47.663 +198669,182.71,46.297 +198670,180.8,46.73 +198671,178.88,47.152 +198672,176.95,47.559 +198673,181.48,46.351 +198674,179.54,46.732 +198675,177.58,47.101 +198676,175.61,47.456 +198677,180.25,46.407 +198678,178.28,46.734 +198679,176.29,47.049 +198680,174.28,47.352 +198681,179.02,46.462 +198682,177.02,46.736 +198683,174.99,46.998 +198684,172.95,47.247 +198685,177.79,46.518 +198686,175.76,46.738 +198687,173.7,46.947 +198688,171.62,47.142 +198689,176.56,46.574 +198690,174.5,46.741 +198691,172.41,46.895 +198692,170.29,47.036 +198693,175.32,46.63 +198694,173.23,46.743 +198695,171.11,46.844 +198696,168.96,46.931 +198697,174.09,46.686 +198698,171.97,46.746 +198699,169.82,46.792 +198700,167.63,46.825 +198701,172.85,46.742 +198702,170.71,46.748 +198703,168.53,46.741 +198704,166.31,46.718 +198705,171.61,46.799 +198706,169.45,46.751 +198707,167.24,46.689 +198708,164.99,46.612 +198709,170.37,46.855 +198710,168.18,46.754 +198711,165.95,46.638 +198712,163.67,46.505 +198713,169.12,46.911 +198714,166.92,46.756 +198715,164.66,46.586 +198716,162.35,46.398 +198717,167.88,46.967 +198718,165.66,46.759 +198719,163.38,46.535 +198720,161.03,46.291 +198721,166.63,47.023 +198722,164.39,46.762 +198723,162.09,46.483 +198724,159.71,46.184 +198725,165.38,47.079 +198726,163.13,46.765 +198727,160.8,46.432 +198728,158.4,46.077 +198729,164.13,47.134 +198730,161.86,46.768 +198731,159.52,46.38 +198732,157.09,45.971 +198733,162.87,47.189 +198734,160.59,46.77 +198735,158.23,46.329 +198736,155.78,45.864 +198737,161.62,47.244 +198738,159.33,46.773 +198739,156.95,46.278 +198740,154.47,45.757 +198741,160.36,47.299 +198742,158.06,46.776 +198743,155.66,46.227 +198744,153.16,45.651 +198745,159.1,47.353 +198746,156.79,46.778 +198747,154.38,46.176 +198748,151.86,45.544 +198749,157.84,47.407 +198750,155.52,46.781 +198751,153.1,46.125 +198752,150.56,45.438 +198753,156.58,47.461 +198754,154.25,46.783 +198755,151.82,46.075 +198756,149.25,45.333 +198757,155.31,47.514 +198758,152.98,46.785 +198759,150.53,46.024 +198760,147.96,45.227 +198761,154.04,47.566 +198762,151.71,46.787 +198763,149.25,45.974 +198764,146.66,45.122 +198765,152.78,47.618 +198766,150.44,46.789 +198767,147.98,45.924 +198768,145.37,45.018 +198769,151.5,47.669 +198770,149.17,46.791 +198771,146.7,45.874 +198772,144.07,44.914 +198773,150.23,47.72 +198774,147.89,46.793 +198775,145.42,45.825 +198776,142.78,44.811 +198777,148.96,47.77 +198778,146.62,46.795 +198779,144.14,45.776 +198780,141.5,44.708 +198781,147.68,47.819 +198782,145.35,46.796 +198783,142.87,45.727 +198784,140.21,44.606 +198785,146.4,47.867 +198786,144.07,46.797 +198787,141.59,45.678 +198788,138.93,44.504 +198789,145.12,47.915 +198790,142.8,46.798 +198791,140.32,45.629 +198792,137.64,44.403 +198793,143.84,47.962 +198794,141.52,46.799 +198795,139.04,45.581 +198796,136.37,44.303 +198797,142.56,48.008 +198798,140.25,46.799 +198799,137.77,45.534 +198800,135.09,44.204 +198801,141.27,48.053 +198802,138.97,46.799 +198803,136.5,45.486 +198804,133.81,44.106 +198805,139.99,48.097 +198806,137.69,46.799 +198807,135.23,45.439 +198808,132.54,44.008 +198809,138.7,48.141 +198810,136.42,46.799 +198811,133.95,45.392 +198812,131.27,43.912 +198813,137.41,48.183 +198814,135.14,46.798 +198815,132.68,45.346 +198816,130,43.816 +198817,136.12,48.225 +198818,133.86,46.797 +198819,131.42,45.3 +198820,128.74,43.722 +198821,134.82,48.265 +198822,132.58,46.796 +198823,130.15,45.254 +198824,127.47,43.628 +198825,133.53,48.304 +198826,131.3,46.795 +198827,128.88,45.209 +198828,126.21,43.536 +198829,132.23,48.342 +198830,130.02,46.793 +198831,127.61,45.164 +198832,124.95,43.445 +198833,130.93,48.379 +198834,128.74,46.79 +198835,126.35,45.12 +198836,123.7,43.355 +198837,129.63,48.415 +198838,127.46,46.788 +198839,125.08,45.076 +198840,122.44,43.267 +198841,128.33,48.45 +198842,126.18,46.785 +198843,123.82,45.033 +198844,121.19,43.179 +198845,127.02,48.484 +198846,124.89,46.782 +198847,122.55,44.99 +198848,119.94,43.093 +198849,125.72,48.516 +198850,123.61,46.778 +198851,121.29,44.947 +198852,118.69,43.009 +198853,124.41,48.547 +198854,122.33,46.774 +198855,120.03,44.905 +198856,117.45,42.925 +198857,123.1,48.577 +198858,121.04,46.769 +198859,118.77,44.864 +198860,116.21,42.844 +198861,121.79,48.605 +198862,119.76,46.764 +198863,117.5,44.823 +198864,114.97,42.763 +198865,120.48,48.632 +198866,118.47,46.759 +198867,116.24,44.783 +198868,113.73,42.685 +198869,119.17,48.658 +198870,117.19,46.753 +198871,114.99,44.743 +198872,112.49,42.607 +198873,117.86,48.683 +198874,115.9,46.747 +198875,113.73,44.704 +198876,111.26,42.532 +198877,116.54,48.706 +198878,114.62,46.741 +198879,112.47,44.665 +198880,110.03,42.458 +198881,115.22,48.727 +198882,113.33,46.733 +198883,111.21,44.627 +198884,108.8,42.386 +198885,113.91,48.747 +198886,112.04,46.726 +198887,109.96,44.589 +198888,107.57,42.315 +198889,112.59,48.766 +198890,110.76,46.718 +198891,108.7,44.552 +198892,106.35,42.246 +198893,111.26,48.783 +198894,109.47,46.709 +198895,107.44,44.516 +198896,105.12,42.179 +198897,109.94,48.799 +198898,108.18,46.7 +198899,106.19,44.48 +198900,103.9,42.114 +198901,108.62,48.813 +198902,106.89,46.691 +198903,104.94,44.445 +198904,102.69,42.051 +198905,107.3,48.826 +198906,105.6,46.681 +198907,103.68,44.41 +198908,101.47,41.989 +198909,105.97,48.837 +198910,104.31,46.671 +198911,102.43,44.377 +198912,100.25,41.93 +198913,104.64,48.847 +198914,103.02,46.66 +198915,101.18,44.343 +198916,99.042,41.872 +198917,103.31,48.855 +198918,101.73,46.648 +198919,99.927,44.311 +198920,97.832,41.816 +198921,101.99,48.861 +198922,100.44,46.636 +198923,98.676,44.279 +198924,96.623,41.763 +198925,100.66,48.866 +198926,99.149,46.624 +198927,97.426,44.248 +198928,95.417,41.711 +198929,99.325,48.869 +198930,97.857,46.611 +198931,96.177,44.217 +198932,94.212,41.661 +198933,97.993,48.87 +198934,96.565,46.597 +198935,94.928,44.187 +198936,93.009,41.613 +198937,96.66,48.87 +198938,95.273,46.583 +198939,93.68,44.158 +198940,91.808,41.568 +198941,95.326,48.869 +198942,93.981,46.568 +198943,92.432,44.129 +198944,90.608,41.524 +198945,93.991,48.865 +198946,92.688,46.553 +198947,91.184,44.102 +198948,89.41,41.482 +198949,92.655,48.86 +198950,91.395,46.537 +198951,89.938,44.074 +198952,88.214,41.443 +198953,91.319,48.853 +198954,90.102,46.521 +198955,88.691,44.048 +198956,87.02,41.406 +198957,89.981,48.844 +198958,88.808,46.504 +198959,87.446,44.022 +198960,85.826,41.37 +198961,88.643,48.834 +198962,87.515,46.486 +198963,86.2,43.997 +198964,84.635,41.337 +198965,87.304,48.822 +198966,86.221,46.468 +198967,84.955,43.973 +198968,83.445,41.306 +198969,85.965,48.809 +198970,84.927,46.45 +198971,83.711,43.949 +198972,82.256,41.278 +198973,84.624,48.793 +198974,83.632,46.431 +198975,82.467,43.926 +198976,81.068,41.251 +198977,83.283,48.776 +198978,82.338,46.411 +198979,81.223,43.904 +198980,79.882,41.227 +198981,81.942,48.757 +198982,81.043,46.391 +198983,79.98,43.883 +198984,78.697,41.205 +198985,80.6,48.737 +198986,79.748,46.37 +198987,78.737,43.862 +198988,77.513,41.184 +198989,79.257,48.714 +198990,78.453,46.348 +198991,77.495,43.842 +198992,76.33,41.167 +198993,77.914,48.69 +198994,77.158,46.326 +198995,76.253,43.823 +198996,75.148,41.151 +198997,76.57,48.664 +198998,75.862,46.304 +198999,75.011,43.804 +199000,73.967,41.137 +199001,75.226,48.637 +199002,74.567,46.281 +199003,73.77,43.786 +199004,72.787,41.126 +199005,73.882,48.607 +199006,73.271,46.257 +199007,72.528,43.769 +199008,71.607,41.117 +199009,72.537,48.576 +199010,71.976,46.233 +199011,71.287,43.753 +199012,70.429,41.11 +199013,71.192,48.544 +199014,70.68,46.208 +199015,70.047,43.737 +199016,69.251,41.105 +199017,69.846,48.509 +199018,69.384,46.183 +199019,68.806,43.722 +199020,68.073,41.102 +199021,68.501,48.473 +199022,68.089,46.157 +199023,67.566,43.708 +199024,66.896,41.102 +199025,67.155,48.435 +199026,66.793,46.13 +199027,66.326,43.694 +199028,65.72,41.103 +199029,65.808,48.395 +199030,65.497,46.103 +199031,65.087,43.682 +199032,64.544,41.107 +199033,64.462,48.354 +199034,64.201,46.075 +199035,63.847,43.67 +199036,63.369,41.113 +199037,63.115,48.311 +199038,62.905,46.047 +199039,62.608,43.658 +199040,62.193,41.121 +199041,61.769,48.266 +199042,61.61,46.018 +199043,61.368,43.647 +199044,61.018,41.131 +199045,60.422,48.219 +199046,60.314,45.989 +199047,60.129,43.637 +199048,59.843,41.143 +199049,59.076,48.171 +199050,59.018,45.959 +199051,58.89,43.628 +199052,58.669,41.157 +199053,57.729,48.121 +199054,57.722,45.929 +199055,57.651,43.619 +199056,57.494,41.173 +199057,56.382,48.069 +199058,56.427,45.898 +199059,56.412,43.612 +199060,56.319,41.191 +199061,55.036,48.016 +199062,55.132,45.866 +199063,55.173,43.604 +199064,55.144,41.211 +199065,53.689,47.961 +199066,53.836,45.834 +199067,53.934,43.598 +199068,53.969,41.233 +199069,52.343,47.905 +199070,52.541,45.802 +199071,52.696,43.592 +199072,52.793,41.257 +199073,50.997,47.847 +199074,51.246,45.769 +199075,51.457,43.586 +199076,51.617,41.283 +199077,49.651,47.787 +199078,49.951,45.735 +199079,50.218,43.582 +199080,50.441,41.31 +199081,48.306,47.726 +199082,48.656,45.701 +199083,48.979,43.578 +199084,49.265,41.34 +199085,46.961,47.663 +199086,47.362,45.667 +199087,47.74,43.574 +199088,48.087,41.371 +199089,45.616,47.598 +199090,46.068,45.632 +199091,46.501,43.572 +199092,46.91,41.404 +199093,44.271,47.532 +199094,44.773,45.596 +199095,45.262,43.569 +199096,45.731,41.439 +199097,42.927,47.465 +199098,43.48,45.56 +199099,44.023,43.568 +199100,44.552,41.476 +199101,41.583,47.396 +199102,42.186,45.524 +199103,42.783,43.567 +199104,43.373,41.514 +199105,40.24,47.326 +199106,40.892,45.487 +199107,41.544,43.567 +199108,42.192,41.554 +199109,38.897,47.254 +199110,39.599,45.45 +199111,40.304,43.567 +199112,41.011,41.595 +199113,37.555,47.18 +199114,38.307,45.412 +199115,39.064,43.568 +199116,39.828,41.638 +199117,36.213,47.105 +199118,37.014,45.374 +199119,37.824,43.569 +199120,38.645,41.683 +199121,34.872,47.029 +199122,35.722,45.335 +199123,36.584,43.571 +199124,37.461,41.729 +199125,33.532,46.952 +199126,34.43,45.296 +199127,35.344,43.574 +199128,36.276,41.777 +199129,32.192,46.873 +199130,33.138,45.257 +199131,34.103,43.576 +199132,35.089,41.826 +199133,30.854,46.793 +199134,31.847,45.217 +199135,32.862,43.58 +199136,33.901,41.876 +199137,29.515,46.711 +199138,30.556,45.177 +199139,31.621,43.584 +199140,32.713,41.928 +199141,28.178,46.628 +199142,29.266,45.136 +199143,30.379,43.589 +199144,31.523,41.981 +199145,26.841,46.544 +199146,27.976,45.095 +199147,29.138,43.594 +199148,30.331,42.035 +199149,25.506,46.459 +199150,26.686,45.054 +199151,27.895,43.599 +199152,29.138,42.09 +199153,24.171,46.372 +199154,25.397,45.012 +199155,26.653,43.605 +199156,27.944,42.147 +199157,22.837,46.285 +199158,24.108,44.97 +199159,25.41,43.611 +199160,26.749,42.205 +199161,21.504,46.196 +199162,22.819,44.928 +199163,24.167,43.618 +199164,25.552,42.264 +199165,20.172,46.106 +199166,21.531,44.885 +199167,22.924,43.625 +199168,24.353,42.324 +199169,18.842,46.015 +199170,20.244,44.843 +199171,21.68,43.633 +199172,23.153,42.385 +199173,17.512,45.923 +199174,18.957,44.799 +199175,20.436,43.641 +199176,21.952,42.446 +199177,16.183,45.83 +199178,17.67,44.756 +199179,19.191,43.649 +199180,20.749,42.509 +199181,14.856,45.736 +199182,16.384,44.712 +199183,17.946,43.658 +199184,19.544,42.573 +199185,13.529,45.641 +199186,15.099,44.668 +199187,16.701,43.667 +199188,18.337,42.637 +199189,12.204,45.545 +199190,13.814,44.624 +199191,15.455,43.677 +199192,17.129,42.703 +199193,10.88,45.449 +199194,12.529,44.58 +199195,14.208,43.686 +199196,15.919,42.769 +199197,9.5576,45.351 +199198,11.246,44.535 +199199,12.962,43.697 +199200,14.708,42.835 +199201,8.2363,45.253 +199202,9.9622,44.49 +199203,11.714,43.707 +199204,13.495,42.903 +199205,6.9163,45.154 +199206,8.6794,44.445 +199207,10.467,43.718 +199208,12.28,42.971 +199209,5.5977,45.054 +199210,7.3972,44.4 +199211,9.2184,43.729 +199212,11.063,43.039 +199213,4.2805,44.953 +199214,6.1156,44.355 +199215,7.9697,43.74 +199216,9.844,43.108 +199217,2.9648,44.852 +199218,4.8346,44.31 +199219,6.7204,43.751 +199220,8.6235,43.178 +199221,1.6505,44.75 +199222,3.5542,44.264 +199223,5.4707,43.763 +199224,7.4011,43.248 +199225,0.33766,44.648 +199226,2.2744,44.218 +199227,4.2205,43.775 +199228,6.1769,43.318 +199229,359.03,44.545 +199230,0.99517,44.173 +199231,2.9697,43.787 +199232,4.9508,43.388 +199233,357.72,44.442 +199234,359.72,44.127 +199235,1.7185,43.799 +199236,3.7229,43.459 +199237,356.41,44.338 +199238,358.44,44.081 +199239,0.46664,43.811 +199240,2.493,43.53 +199241,355.1,44.234 +199242,357.16,44.035 +199243,359.21,43.824 +199244,1.2613,43.602 +199245,353.8,44.129 +199246,355.88,43.989 +199247,357.96,43.837 +199248,0.027612,43.673 +199249,352.49,44.024 +199250,354.61,43.943 +199251,356.71,43.85 +199252,358.79,43.745 +199253,351.19,43.919 +199254,353.33,43.897 +199255,355.45,43.862 +199256,357.55,43.816 +199257,349.89,43.814 +199258,352.06,43.851 +199259,354.2,43.875 +199260,356.32,43.888 +199261,348.59,43.708 +199262,350.79,43.805 +199263,352.94,43.889 +199264,355.07,43.959 +199265,347.3,43.602 +199266,349.51,43.759 +199267,351.69,43.902 +199268,353.83,44.031 +199269,346,43.497 +199270,348.24,43.713 +199271,350.43,43.915 +199272,352.59,44.102 +199273,344.71,43.391 +199274,346.97,43.668 +199275,349.18,43.928 +199276,351.34,44.173 +199277,343.42,43.285 +199278,345.7,43.622 +199279,347.92,43.941 +199280,350.09,44.244 +199281,342.13,43.179 +199282,344.43,43.576 +199283,346.66,43.955 +199284,348.84,44.315 +199285,340.85,43.073 +199286,343.16,43.531 +199287,345.4,43.968 +199288,347.59,44.386 +199289,339.56,42.968 +199290,341.89,43.486 +199291,344.14,43.981 +199292,346.33,44.456 +199293,338.28,42.862 +199294,340.62,43.44 +199295,342.88,43.994 +199296,345.07,44.525 +199297,337,42.757 +199298,339.35,43.395 +199299,341.62,44.007 +199300,343.82,44.595 +199301,335.72,42.652 +199302,338.08,43.351 +199303,340.36,44.02 +199304,342.55,44.663 +199305,334.44,42.548 +199306,336.82,43.306 +199307,339.1,44.033 +199308,341.29,44.732 +199309,333.17,42.443 +199310,335.55,43.262 +199311,337.84,44.046 +199312,340.03,44.8 +199313,331.89,42.34 +199314,334.29,43.217 +199315,336.57,44.059 +199316,338.76,44.867 +199317,330.62,42.236 +199318,333.03,43.174 +199319,335.31,44.071 +199320,337.49,44.933 +199321,329.35,42.134 +199322,331.76,43.13 +199323,334.05,44.084 +199324,336.22,44.999 +199325,328.09,42.031 +199326,330.5,43.086 +199327,332.78,44.096 +199328,334.95,45.065 +199329,326.82,41.93 +199330,329.24,43.043 +199331,331.52,44.108 +199332,333.68,45.129 +199333,325.56,41.829 +199334,327.98,43.001 +199335,330.25,44.12 +199336,332.4,45.193 +199337,324.3,41.729 +199338,326.72,42.958 +199339,328.99,44.132 +199340,331.13,45.256 +199341,323.04,41.629 +199342,325.46,42.916 +199343,327.72,44.144 +199344,329.85,45.318 +199345,321.79,41.531 +199346,324.2,42.874 +199347,326.45,44.155 +199348,328.57,45.379 +199349,320.53,41.433 +199350,322.94,42.833 +199351,325.18,44.166 +199352,327.29,45.44 +199353,319.28,41.336 +199354,321.68,42.792 +199355,323.92,44.177 +199356,326,45.499 +199357,318.03,41.24 +199358,320.43,42.751 +199359,322.65,44.187 +199360,324.72,45.557 +199361,316.78,41.146 +199362,319.17,42.711 +199363,321.38,44.198 +199364,323.43,45.615 +199365,315.54,41.052 +199366,317.92,42.671 +199367,320.11,44.208 +199368,322.14,45.671 +199369,314.3,40.959 +199370,316.66,42.632 +199371,318.84,44.217 +199372,320.85,45.726 +199373,313.05,40.868 +199374,315.41,42.593 +199375,317.56,44.227 +199376,319.56,45.78 +199377,311.82,40.777 +199378,314.16,42.555 +199379,316.29,44.236 +199380,318.27,45.833 +199381,310.58,40.688 +199382,312.9,42.517 +199383,315.02,44.245 +199384,316.97,45.885 +199385,309.35,40.601 +199386,311.65,42.479 +199387,313.75,44.253 +199388,315.67,45.936 +199389,308.11,40.514 +199390,310.4,42.442 +199391,312.47,44.261 +199392,314.38,45.985 +199393,306.88,40.429 +199394,309.15,42.406 +199395,311.2,44.269 +199396,313.08,46.034 +199397,305.66,40.346 +199398,307.9,42.37 +199399,309.93,44.276 +199400,311.78,46.08 +199401,304.43,40.264 +199402,306.65,42.335 +199403,308.65,44.283 +199404,310.47,46.126 +199405,303.21,40.183 +199406,305.41,42.3 +199407,307.38,44.289 +199408,309.17,46.17 +199409,301.99,40.104 +199410,304.16,42.266 +199411,306.1,44.295 +199412,307.87,46.213 +199413,300.77,40.027 +199414,302.91,42.232 +199415,304.82,44.301 +199416,306.56,46.255 +199417,299.55,39.952 +199418,301.67,42.199 +199419,303.55,44.306 +199420,305.25,46.295 +199421,298.33,39.878 +199422,300.42,42.167 +199423,302.27,44.311 +199424,303.94,46.333 +199425,297.12,39.805 +199426,299.18,42.135 +199427,300.99,44.315 +199428,302.63,46.371 +199429,295.91,39.735 +199430,297.93,42.104 +199431,299.72,44.319 +199432,301.32,46.406 +199433,294.7,39.666 +199434,296.69,42.073 +199435,298.44,44.323 +199436,300.01,46.441 +199437,293.49,39.6 +199438,295.45,42.044 +199439,297.16,44.326 +199440,298.69,46.473 +199441,292.29,39.535 +199442,294.2,42.014 +199443,295.88,44.328 +199444,297.38,46.504 +199445,291.09,39.472 +199446,292.96,41.986 +199447,294.6,44.33 +199448,296.06,46.534 +199449,289.88,39.411 +199450,291.72,41.958 +199451,293.32,44.332 +199452,294.75,46.562 +199453,288.68,39.352 +199454,290.48,41.931 +199455,292.04,44.333 +199456,293.43,46.588 +199457,287.49,39.295 +199458,289.24,41.904 +199459,290.76,44.333 +199460,292.11,46.613 +199461,286.29,39.24 +199462,288,41.879 +199463,289.48,44.333 +199464,290.79,46.636 +199465,285.1,39.187 +199466,286.76,41.854 +199467,288.2,44.333 +199468,289.47,46.658 +199469,283.9,39.137 +199470,285.52,41.829 +199471,286.92,44.331 +199472,288.15,46.678 +199473,282.71,39.088 +199474,284.28,41.806 +199475,285.63,44.33 +199476,286.82,46.696 +199477,281.52,39.042 +199478,283.05,41.783 +199479,284.35,44.328 +199480,285.5,46.712 +199481,280.33,38.998 +199482,281.81,41.761 +199483,283.07,44.325 +199484,284.17,46.727 +199485,279.15,38.956 +199486,280.57,41.74 +199487,281.79,44.322 +199488,282.85,46.74 +199489,277.96,38.916 +199490,279.34,41.719 +199491,280.51,44.318 +199492,281.52,46.752 +199493,276.78,38.879 +199494,278.1,41.699 +199495,279.22,44.314 +199496,280.2,46.761 +199497,275.59,38.844 +199498,276.87,41.68 +199499,277.94,44.309 +199500,278.87,46.769 +199501,274.41,38.811 +199502,275.63,41.662 +199503,276.66,44.303 +199504,277.54,46.775 +199505,273.23,38.781 +199506,274.4,41.644 +199507,275.37,44.297 +199508,276.21,46.779 +199509,272.05,38.753 +199510,273.16,41.627 +199511,274.09,44.291 +199512,274.88,46.782 +199513,270.88,38.727 +199514,271.93,41.612 +199515,272.8,44.283 +199516,273.55,46.783 +199517,269.7,38.703 +199518,270.69,41.596 +199519,271.52,44.276 +199520,272.22,46.782 +199521,268.52,38.682 +199522,269.46,41.582 +199523,270.23,44.267 +199524,270.89,46.779 +199525,267.35,38.664 +199526,268.23,41.568 +199527,268.95,44.258 +199528,269.56,46.774 +199529,266.17,38.647 +199530,266.99,41.556 +199531,267.67,44.249 +199532,268.23,46.768 +199533,265,38.633 +199534,265.76,41.544 +199535,266.38,44.239 +199536,266.9,46.76 +199537,263.83,38.622 +199538,264.53,41.532 +199539,265.1,44.228 +199540,265.57,46.75 +199541,262.65,38.613 +199542,263.3,41.522 +199543,263.81,44.217 +199544,264.23,46.738 +199545,261.48,38.606 +199546,262.06,41.512 +199547,262.53,44.205 +199548,262.9,46.724 +199549,260.31,38.602 +199550,260.83,41.504 +199551,261.24,44.192 +199552,261.57,46.709 +199553,259.14,38.6 +199554,259.6,41.495 +199555,259.96,44.179 +199556,260.24,46.692 +199557,257.97,38.6 +199558,258.37,41.488 +199559,258.67,44.166 +199560,258.9,46.673 +199561,256.8,38.603 +199562,257.14,41.482 +199563,257.39,44.152 +199564,257.57,46.652 +199565,255.63,38.608 +199566,255.91,41.476 +199567,256.1,44.137 +199568,256.24,46.629 +199569,254.46,38.616 +199570,254.68,41.471 +199571,254.82,44.122 +199572,254.9,46.605 +199573,253.29,38.625 +199574,253.44,41.467 +199575,253.53,44.106 +199576,253.57,46.578 +199577,252.12,38.638 +199578,252.21,41.464 +199579,252.25,44.089 +199580,252.24,46.55 +199581,250.95,38.652 +199582,250.98,41.461 +199583,250.96,44.072 +199584,250.9,46.52 +199585,249.78,38.669 +199586,249.75,41.46 +199587,249.68,44.055 +199588,249.57,46.489 +199589,248.61,38.688 +199590,248.52,41.459 +199591,248.39,44.036 +199592,248.24,46.455 +199593,247.44,38.709 +199594,247.29,41.459 +199595,247.11,44.018 +199596,246.9,46.42 +199597,246.27,38.733 +199598,246.06,41.459 +199599,245.82,43.998 +199600,245.57,46.383 +199601,245.1,38.759 +199602,244.83,41.461 +199603,244.54,43.978 +199604,244.24,46.345 +199605,243.93,38.787 +199606,243.6,41.463 +199607,243.25,43.958 +199608,242.91,46.304 +199609,242.76,38.817 +199610,242.36,41.465 +199611,241.97,43.937 +199612,241.57,46.262 +199613,241.58,38.85 +199614,241.13,41.469 +199615,240.68,43.916 +199616,240.24,46.218 +199617,240.41,38.884 +199618,239.9,41.473 +199619,239.4,43.894 +199620,238.91,46.173 +199621,239.24,38.921 +199622,238.67,41.478 +199623,238.12,43.871 +199624,237.58,46.126 +199625,238.06,38.959 +199626,237.44,41.484 +199627,236.83,43.848 +199628,236.25,46.077 +199629,236.89,39 +199630,236.2,41.491 +199631,235.55,43.824 +199632,234.92,46.026 +199633,235.71,39.043 +199634,234.97,41.498 +199635,234.27,43.8 +199636,233.59,45.974 +199637,234.53,39.087 +199638,233.74,41.506 +199639,232.99,43.776 +199640,232.26,45.921 +199641,233.35,39.134 +199642,232.51,41.514 +199643,231.7,43.751 +199644,230.93,45.865 +199645,232.17,39.182 +199646,231.27,41.523 +199647,230.42,43.725 +199648,229.61,45.808 +199649,230.99,39.233 +199650,230.04,41.533 +199651,229.14,43.699 +199652,228.28,45.75 +199653,229.81,39.285 +199654,228.81,41.544 +199655,227.86,43.673 +199656,226.95,45.69 +199657,228.63,39.339 +199658,227.57,41.555 +199659,226.58,43.646 +199660,225.63,45.628 +199661,227.44,39.395 +199662,226.34,41.567 +199663,225.3,43.618 +199664,224.3,45.565 +199665,226.26,39.452 +199666,225.1,41.579 +199667,224.02,43.59 +199668,222.98,45.5 +199669,225.07,39.511 +199670,223.87,41.592 +199671,222.74,43.562 +199672,221.66,45.434 +199673,223.88,39.572 +199674,222.63,41.606 +199675,221.46,43.533 +199676,220.33,45.367 +199677,222.69,39.634 +199678,221.4,41.62 +199679,220.18,43.504 +199680,219.01,45.298 +199681,221.5,39.698 +199682,220.16,41.635 +199683,218.9,43.474 +199684,217.69,45.228 +199685,220.31,39.763 +199686,218.93,41.65 +199687,217.62,43.445 +199688,216.37,45.156 +199689,219.12,39.83 +199690,217.69,41.666 +199691,216.34,43.414 +199692,215.06,45.083 +199693,217.92,39.898 +199694,216.45,41.683 +199695,215.06,43.384 +199696,213.74,45.009 +199697,216.72,39.967 +199698,215.22,41.7 +199699,213.79,43.352 +199700,212.42,44.933 +199701,215.52,40.038 +199702,213.98,41.717 +199703,212.51,43.321 +199704,211.11,44.857 +199705,214.32,40.11 +199706,212.74,41.735 +199707,211.23,43.289 +199708,209.79,44.779 +199709,213.12,40.183 +199710,211.5,41.754 +199711,209.96,43.257 +199712,208.48,44.699 +199713,211.92,40.258 +199714,210.26,41.773 +199715,208.68,43.225 +199716,207.17,44.619 +199717,210.71,40.333 +199718,209.02,41.792 +199719,207.41,43.192 +199720,205.86,44.537 +199721,209.5,40.41 +199722,207.78,41.812 +199723,206.13,43.159 +199724,204.55,44.455 +199725,208.29,40.488 +199726,206.54,41.833 +199727,204.86,43.126 +199728,203.24,44.371 +199729,207.08,40.566 +199730,205.3,41.853 +199731,203.59,43.092 +199732,201.94,44.286 +199733,205.87,40.646 +199734,204.06,41.874 +199735,202.31,43.059 +199736,200.63,44.201 +199737,204.65,40.726 +199738,202.81,41.896 +199739,201.04,43.024 +199740,199.33,44.114 +199741,203.44,40.807 +199742,201.57,41.918 +199743,199.77,42.99 +199744,198.03,44.026 +199745,202.22,40.889 +199746,200.33,41.94 +199747,198.5,42.956 +199748,196.73,43.938 +199749,201,40.972 +199750,199.08,41.963 +199751,197.23,42.921 +199752,195.43,43.848 +199753,199.78,41.055 +199754,197.84,41.986 +199755,195.96,42.886 +199756,194.13,43.758 +199757,198.55,41.139 +199758,196.59,42.009 +199759,194.69,42.851 +199760,192.83,43.667 +199761,197.32,41.224 +199762,195.35,42.033 +199763,193.42,42.816 +199764,191.54,43.575 +199765,196.1,41.309 +199766,194.1,42.056 +199767,192.15,42.781 +199768,190.25,43.483 +199769,194.86,41.395 +199770,192.85,42.08 +199771,190.88,42.745 +199772,188.95,43.39 +199773,193.63,41.481 +199774,191.6,42.105 +199775,189.62,42.71 +199776,187.66,43.296 +199777,192.4,41.567 +199778,190.36,42.129 +199779,188.35,42.674 +199780,186.38,43.202 +199781,191.16,41.654 +199782,189.11,42.154 +199783,187.08,42.638 +199784,185.09,43.107 +199785,189.92,41.741 +199786,187.86,42.179 +199787,185.82,42.603 +199788,183.81,43.012 +199789,188.68,41.828 +199790,186.61,42.204 +199791,184.55,42.567 +199792,182.52,42.916 +199793,187.44,41.916 +199794,185.36,42.23 +199795,183.29,42.531 +199796,181.24,42.82 +199797,186.2,42.003 +199798,184.11,42.255 +199799,182.03,42.495 +199800,179.96,42.723 +199801,184.95,42.091 +199802,182.85,42.281 +199803,180.76,42.459 +199804,178.68,42.626 +199805,183.7,42.179 +199806,181.6,42.307 +199807,179.5,42.423 +199808,177.41,42.529 +199809,182.45,42.267 +199810,180.35,42.332 +199811,178.24,42.387 +199812,176.13,42.431 +199813,181.2,42.354 +199814,179.09,42.358 +199815,176.98,42.352 +199816,174.86,42.334 +199817,179.94,42.442 +199818,177.84,42.384 +199819,175.72,42.316 +199820,173.59,42.236 +199821,178.69,42.529 +199822,176.58,42.411 +199823,174.46,42.28 +199824,172.32,42.138 +199825,177.43,42.617 +199826,175.33,42.437 +199827,173.2,42.245 +199828,171.06,42.04 +199829,176.17,42.704 +199830,174.07,42.463 +199831,171.95,42.209 +199832,169.79,41.942 +199833,174.91,42.79 +199834,172.81,42.489 +199835,170.69,42.174 +199836,168.53,41.844 +199837,173.64,42.877 +199838,171.56,42.515 +199839,169.43,42.139 +199840,167.27,41.746 +199841,172.38,42.963 +199842,170.3,42.541 +199843,168.18,42.103 +199844,166.01,41.649 +199845,171.11,43.048 +199846,169.04,42.567 +199847,166.92,42.069 +199848,164.76,41.551 +199849,169.84,43.134 +199850,167.78,42.594 +199851,165.67,42.034 +199852,163.5,41.454 +199853,168.57,43.218 +199854,166.52,42.62 +199855,164.41,41.999 +199856,162.25,41.357 +199857,167.3,43.302 +199858,165.26,42.646 +199859,163.16,41.965 +199860,161,41.26 +199861,166.02,43.386 +199862,164,42.671 +199863,161.91,41.931 +199864,159.75,41.164 +199865,164.75,43.469 +199866,162.74,42.697 +199867,160.66,41.897 +199868,158.5,41.068 +199869,163.47,43.551 +199870,161.47,42.723 +199871,159.4,41.864 +199872,157.26,40.973 +199873,162.19,43.633 +199874,160.21,42.748 +199875,158.15,41.83 +199876,156.02,40.878 +199877,160.91,43.714 +199878,158.95,42.773 +199879,156.9,41.798 +199880,154.78,40.784 +199881,159.63,43.794 +199882,157.68,42.799 +199883,155.66,41.765 +199884,153.54,40.69 +199885,158.34,43.873 +199886,156.42,42.824 +199887,154.41,41.733 +199888,152.3,40.597 +199889,157.05,43.952 +199890,155.15,42.848 +199891,153.16,41.701 +199892,151.07,40.505 +199893,155.77,44.029 +199894,153.88,42.873 +199895,151.91,41.669 +199896,149.83,40.414 +199897,154.48,44.106 +199898,152.62,42.897 +199899,150.67,41.638 +199900,148.6,40.323 +199901,153.19,44.182 +199902,151.35,42.921 +199903,149.42,41.607 +199904,147.38,40.234 +199905,151.89,44.256 +199906,150.08,42.945 +199907,148.17,41.577 +199908,146.15,40.145 +199909,150.6,44.33 +199910,148.81,42.969 +199911,146.93,41.547 +199912,144.93,40.057 +199913,149.3,44.402 +199914,147.55,42.992 +199915,145.69,41.517 +199916,143.7,39.971 +199917,148.01,44.474 +199918,146.28,43.015 +199919,144.44,41.488 +199920,142.48,39.885 +199921,146.71,44.544 +199922,145.01,43.038 +199923,143.2,41.46 +199924,141.26,39.801 +199925,145.41,44.613 +199926,143.74,43.06 +199927,141.96,41.431 +199928,140.05,39.717 +199929,144.11,44.681 +199930,142.47,43.082 +199931,140.72,41.404 +199932,138.83,39.635 +199933,142.8,44.748 +199934,141.19,43.104 +199935,139.48,41.377 +199936,137.62,39.555 +199937,141.5,44.814 +199938,139.92,43.125 +199939,138.23,41.35 +199940,136.41,39.475 +199941,140.19,44.878 +199942,138.65,43.146 +199943,136.99,41.324 +199944,135.2,39.397 +199945,138.89,44.941 +199946,137.38,43.167 +199947,135.76,41.298 +199948,134,39.321 +199949,137.58,45.003 +199950,136.1,43.187 +199951,134.52,41.273 +199952,132.79,39.246 +199953,136.27,45.063 +199954,134.83,43.207 +199955,133.28,41.249 +199956,131.59,39.172 +199957,134.96,45.122 +199958,133.56,43.227 +199959,132.04,41.225 +199960,130.39,39.1 +199961,133.65,45.179 +199962,132.28,43.246 +199963,130.8,41.202 +199964,129.19,39.03 +199965,132.34,45.235 +199966,131.01,43.264 +199967,129.57,41.18 +199968,127.99,38.961 +199969,131.02,45.29 +199970,129.73,43.283 +199971,128.33,41.158 +199972,126.79,38.894 +199973,129.71,45.343 +199974,128.45,43.3 +199975,127.09,41.136 +199976,125.6,38.829 +199977,128.39,45.395 +199978,127.18,43.318 +199979,125.86,41.116 +199980,124.41,38.765 +199981,127.08,45.445 +199982,125.9,43.334 +199983,124.62,41.096 +199984,123.22,38.704 +199985,125.76,45.493 +199986,124.62,43.351 +199987,123.39,41.076 +199988,122.03,38.644 +199989,124.44,45.54 +199990,123.35,43.367 +199991,122.16,41.058 +199992,120.84,38.586 +199993,123.12,45.586 +199994,122.07,43.382 +199995,120.92,41.04 +199996,119.65,38.53 +199997,121.8,45.629 +199998,120.79,43.397 +199999,119.69,41.022 +200000,118.47,38.476 +200001,120.48,45.672 +200002,119.51,43.411 +200003,118.46,41.006 +200004,117.28,38.424 +200005,119.16,45.712 +200006,118.24,43.425 +200007,117.22,40.99 +200008,116.1,38.375 +200009,117.84,45.751 +200010,116.96,43.439 +200011,115.99,40.975 +200012,114.92,38.327 +200013,116.52,45.788 +200014,115.68,43.452 +200015,114.76,40.961 +200016,113.74,38.281 +200017,115.19,45.824 +200018,114.4,43.464 +200019,113.53,40.947 +200020,112.56,38.238 +200021,113.87,45.857 +200022,113.12,43.476 +200023,112.3,40.934 +200024,111.38,38.196 +200025,112.55,45.889 +200026,111.84,43.487 +200027,111.07,40.922 +200028,110.2,38.157 +200029,111.22,45.92 +200030,110.56,43.498 +200031,109.84,40.911 +200032,109.03,38.12 +200033,109.89,45.948 +200034,109.28,43.508 +200035,108.6,40.9 +200036,107.85,38.086 +200037,108.57,45.975 +200038,108,43.518 +200039,107.37,40.89 +200040,106.68,38.054 +200041,107.24,46 +200042,106.72,43.527 +200043,106.14,40.881 +200044,105.5,38.024 +200045,105.91,46.024 +200046,105.44,43.535 +200047,104.91,40.873 +200048,104.33,37.996 +200049,104.59,46.045 +200050,104.16,43.543 +200051,103.69,40.865 +200052,103.16,37.971 +200053,103.26,46.065 +200054,102.87,43.55 +200055,102.46,40.859 +200056,101.99,37.948 +200057,101.93,46.083 +200058,101.59,43.557 +200059,101.23,40.853 +200060,100.82,37.927 +200061,100.6,46.099 +200062,100.31,43.563 +200063,99.997,40.848 +200064,99.648,37.909 +200065,99.274,46.113 +200066,99.031,43.569 +200067,98.768,40.844 +200068,98.478,37.893 +200069,97.945,46.126 +200070,97.75,43.574 +200071,97.539,40.84 +200072,97.308,37.88 +200073,96.616,46.137 +200074,96.468,43.579 +200075,96.31,40.838 +200076,96.139,37.869 +200077,95.287,46.145 +200078,95.187,43.583 +200079,95.081,40.836 +200080,94.97,37.861 +200081,93.958,46.152 +200082,93.905,43.586 +200083,93.852,40.835 +200084,93.801,37.855 +200085,92.629,46.158 +200086,92.623,43.589 +200087,92.624,40.835 +200088,92.633,37.851 +200089,91.3,46.161 +200090,91.342,43.591 +200091,91.395,40.836 +200092,91.464,37.85 +200093,89.971,46.163 +200094,90.06,43.592 +200095,90.166,40.837 +200096,90.295,37.851 +200097,88.642,46.162 +200098,88.778,43.593 +200099,88.937,40.839 +200100,89.126,37.855 +200101,87.313,46.16 +200102,87.497,43.594 +200103,87.708,40.842 +200104,87.957,37.862 +200105,85.984,46.156 +200106,86.215,43.593 +200107,86.479,40.846 +200108,86.787,37.87 +200109,84.655,46.151 +200110,84.934,43.593 +200111,85.25,40.851 +200112,85.618,37.882 +200113,83.326,46.143 +200114,83.652,43.591 +200115,84.021,40.857 +200116,84.448,37.895 +200117,81.998,46.134 +200118,82.371,43.589 +200119,82.791,40.863 +200120,83.277,37.911 +200121,80.67,46.122 +200122,81.09,43.587 +200123,81.562,40.87 +200124,82.106,37.93 +200125,79.342,46.109 +200126,79.809,43.583 +200127,80.332,40.878 +200128,80.934,37.951 +200129,78.015,46.095 +200130,78.528,43.58 +200131,79.102,40.887 +200132,79.762,37.974 +200133,76.688,46.078 +200134,77.247,43.575 +200135,77.872,40.897 +200136,78.589,38 +200137,75.361,46.06 +200138,75.966,43.571 +200139,76.642,40.907 +200140,77.415,38.028 +200141,74.035,46.039 +200142,74.686,43.565 +200143,75.411,40.918 +200144,76.24,38.058 +200145,72.71,46.017 +200146,73.405,43.559 +200147,74.18,40.93 +200148,75.065,38.091 +200149,71.385,45.994 +200150,72.125,43.553 +200151,72.949,40.943 +200152,73.888,38.126 +200153,70.06,45.968 +200154,70.845,43.546 +200155,71.718,40.957 +200156,72.71,38.164 +200157,68.736,45.941 +200158,69.565,43.538 +200159,70.486,40.971 +200160,71.532,38.203 +200161,67.413,45.912 +200162,68.286,43.53 +200163,69.254,40.986 +200164,70.352,38.245 +200165,66.09,45.882 +200166,67.007,43.521 +200167,68.022,41.002 +200168,69.171,38.289 +200169,64.768,45.849 +200170,65.728,43.512 +200171,66.789,41.019 +200172,67.989,38.335 +200173,63.447,45.815 +200174,64.449,43.502 +200175,65.556,41.036 +200176,66.805,38.384 +200177,62.126,45.78 +200178,63.171,43.492 +200179,64.323,41.054 +200180,65.62,38.434 +200181,60.807,45.742 +200182,61.893,43.481 +200183,63.089,41.073 +200184,64.434,38.487 +200185,59.488,45.703 +200186,60.615,43.47 +200187,61.855,41.092 +200188,63.246,38.542 +200189,58.17,45.663 +200190,59.337,43.458 +200191,60.62,41.113 +200192,62.057,38.598 +200193,56.853,45.621 +200194,58.06,43.446 +200195,59.385,41.133 +200196,60.866,38.657 +200197,55.537,45.577 +200198,56.783,43.433 +200199,58.15,41.155 +200200,59.673,38.717 +200201,54.221,45.532 +200202,55.507,43.419 +200203,56.914,41.177 +200204,58.479,38.78 +200205,52.907,45.485 +200206,54.231,43.406 +200207,55.677,41.2 +200208,57.284,38.844 +200209,51.594,45.436 +200210,52.955,43.392 +200211,54.44,41.224 +200212,56.086,38.91 +200213,50.282,45.387 +200214,51.68,43.377 +200215,53.203,41.248 +200216,54.887,38.978 +200217,48.971,45.335 +200218,50.405,43.362 +200219,51.965,41.273 +200220,53.687,39.048 +200221,47.661,45.282 +200222,49.13,43.346 +200223,50.726,41.298 +200224,52.484,39.119 +200225,46.352,45.228 +200226,47.856,43.33 +200227,49.487,41.325 +200228,51.279,39.193 +200229,45.045,45.173 +200230,46.583,43.314 +200231,48.248,41.351 +200232,50.073,39.267 +200233,43.738,45.116 +200234,45.31,43.297 +200235,47.007,41.379 +200236,48.865,39.343 +200237,42.433,45.057 +200238,44.037,43.28 +200239,45.767,41.406 +200240,47.655,39.421 +200241,41.13,44.998 +200242,42.765,43.263 +200243,44.525,41.435 +200244,46.443,39.5 +200245,39.827,44.937 +200246,41.493,43.245 +200247,43.283,41.464 +200248,45.229,39.581 +200249,38.526,44.875 +200250,40.222,43.226 +200251,42.041,41.493 +200252,44.013,39.663 +200253,37.226,44.811 +200254,38.951,43.208 +200255,40.798,41.523 +200256,42.795,39.746 +200257,35.928,44.747 +200258,37.681,43.189 +200259,39.554,41.554 +200260,41.575,39.831 +200261,34.631,44.681 +200262,36.411,43.17 +200263,38.31,41.585 +200264,40.353,39.917 +200265,33.335,44.614 +200266,35.142,43.15 +200267,37.065,41.616 +200268,39.129,40.004 +200269,32.041,44.546 +200270,33.873,43.13 +200271,35.819,41.648 +200272,37.903,40.092 +200273,30.749,44.476 +200274,32.605,43.11 +200275,34.573,41.681 +200276,36.675,40.182 +200277,29.458,44.406 +200278,31.337,43.089 +200279,33.326,41.713 +200280,35.445,40.272 +200281,28.168,44.335 +200282,30.07,43.069 +200283,32.078,41.747 +200284,34.213,40.363 +200285,26.88,44.263 +200286,28.803,43.048 +200287,30.83,41.78 +200288,32.979,40.455 +200289,25.594,44.19 +200290,27.537,43.027 +200291,29.581,41.814 +200292,31.742,40.549 +200293,24.309,44.116 +200294,26.272,43.005 +200295,28.331,41.849 +200296,30.504,40.642 +200297,23.026,44.041 +200298,25.007,42.984 +200299,27.081,41.884 +200300,29.264,40.737 +200301,21.745,43.965 +200302,23.742,42.962 +200303,25.83,41.919 +200304,28.021,40.833 +200305,20.465,43.888 +200306,22.479,42.94 +200307,24.579,41.954 +200308,26.776,40.929 +200309,19.187,43.811 +200310,21.216,42.918 +200311,23.326,41.99 +200312,25.53,41.026 +200313,17.911,43.733 +200314,19.953,42.895 +200315,22.073,42.026 +200316,24.281,41.123 +200317,16.636,43.654 +200318,18.691,42.873 +200319,20.82,42.062 +200320,23.03,41.221 +200321,15.364,43.575 +200322,17.43,42.85 +200323,19.565,42.099 +200324,21.778,41.319 +200325,14.093,43.495 +200326,16.169,42.828 +200327,18.31,42.136 +200328,20.523,41.418 +200329,12.824,43.414 +200330,14.909,42.805 +200331,17.054,42.173 +200332,19.266,41.517 +200333,11.556,43.333 +200334,13.649,42.782 +200335,15.798,42.21 +200336,18.007,41.617 +200337,10.291,43.251 +200338,12.39,42.759 +200339,14.541,42.248 +200340,16.746,41.717 +200341,9.0274,43.169 +200342,11.132,42.736 +200343,13.283,42.285 +200344,15.483,41.817 +200345,7.7657,43.087 +200346,9.8744,42.713 +200347,12.024,42.323 +200348,14.218,41.917 +200349,6.5059,43.004 +200350,8.6173,42.69 +200351,10.765,42.361 +200352,12.951,42.017 +200353,5.2479,42.921 +200354,7.3608,42.667 +200355,9.5051,42.399 +200356,11.683,42.118 +200357,3.9919,42.837 +200358,6.1049,42.644 +200359,8.2444,42.438 +200360,10.412,42.218 +200361,2.7377,42.754 +200362,4.8497,42.621 +200363,6.9831,42.476 +200364,9.1391,42.319 +200365,1.4855,42.67 +200366,3.5951,42.598 +200367,5.7211,42.514 +200368,7.8646,42.419 +200369,0.23526,42.586 +200370,2.341,42.575 +200371,4.4585,42.553 +200372,6.5881,42.519 +200373,358.99,42.502 +200374,1.0876,42.552 +200375,3.1951,42.591 +200376,5.3099,42.619 +200377,357.74,42.418 +200378,359.83,42.529 +200379,1.9311,42.63 +200380,4.0297,42.719 +200381,356.5,42.334 +200382,358.58,42.507 +200383,0.6664,42.669 +200384,2.7478,42.819 +200385,355.25,42.25 +200386,357.33,42.484 +200387,359.4,42.707 +200388,1.4641,42.918 +200389,354.01,42.166 +200390,356.08,42.462 +200391,358.14,42.746 +200392,0.17855,43.018 +200393,352.77,42.082 +200394,354.83,42.44 +200395,356.87,42.785 +200396,358.89,43.116 +200397,351.54,41.999 +200398,353.58,42.418 +200399,355.6,42.823 +200400,357.6,43.214 +200401,350.3,41.915 +200402,352.33,42.396 +200403,354.33,42.862 +200404,356.31,43.312 +200405,349.07,41.832 +200406,351.08,42.374 +200407,353.06,42.9 +200408,355.02,43.41 +200409,347.84,41.75 +200410,349.83,42.353 +200411,351.8,42.938 +200412,353.73,43.506 +200413,346.61,41.667 +200414,348.59,42.332 +200415,350.53,42.977 +200416,352.43,43.603 +200417,345.38,41.585 +200418,347.34,42.311 +200419,349.25,43.015 +200420,351.13,43.698 +200421,344.16,41.504 +200422,346.09,42.29 +200423,347.98,43.053 +200424,349.83,43.793 +200425,342.94,41.423 +200426,344.85,42.269 +200427,346.71,43.091 +200428,348.53,43.887 +200429,341.72,41.343 +200430,343.6,42.249 +200431,345.44,43.128 +200432,347.23,43.981 +200433,340.5,41.263 +200434,342.36,42.23 +200435,344.17,43.166 +200436,345.93,44.073 +200437,339.28,41.184 +200438,341.11,42.21 +200439,342.89,43.203 +200440,344.62,44.165 +200441,338.06,41.106 +200442,339.87,42.191 +200443,341.62,43.24 +200444,343.32,44.256 +200445,336.85,41.028 +200446,338.63,42.172 +200447,340.35,43.277 +200448,342.01,44.346 +200449,335.64,40.952 +200450,337.38,42.154 +200451,339.07,43.314 +200452,340.7,44.435 +200453,334.43,40.876 +200454,336.14,42.136 +200455,337.79,43.35 +200456,339.39,44.523 +200457,333.22,40.801 +200458,334.9,42.118 +200459,336.52,43.387 +200460,338.08,44.61 +200461,332.01,40.727 +200462,333.66,42.101 +200463,335.24,43.423 +200464,336.77,44.697 +200465,330.81,40.654 +200466,332.42,42.084 +200467,333.96,43.458 +200468,335.45,44.782 +200469,329.61,40.582 +200470,331.18,42.067 +200471,332.69,43.494 +200472,334.14,44.866 +200473,328.4,40.511 +200474,329.94,42.051 +200475,331.41,43.529 +200476,332.82,44.948 +200477,327.21,40.442 +200478,328.7,42.036 +200479,330.13,43.563 +200480,331.5,45.03 +200481,326.01,40.373 +200482,327.46,42.021 +200483,328.85,43.598 +200484,330.18,45.11 +200485,324.81,40.306 +200486,326.22,42.007 +200487,327.57,43.632 +200488,328.86,45.19 +200489,323.62,40.24 +200490,324.99,41.993 +200491,326.29,43.666 +200492,327.54,45.268 +200493,322.42,40.176 +200494,323.75,41.979 +200495,325.01,43.699 +200496,326.22,45.344 +200497,321.23,40.113 +200498,322.51,41.966 +200499,323.73,43.732 +200500,324.9,45.42 +200501,320.04,40.051 +200502,321.27,41.954 +200503,322.45,43.765 +200504,323.57,45.494 +200505,318.85,39.991 +200506,320.04,41.942 +200507,321.17,43.797 +200508,322.25,45.566 +200509,317.67,39.932 +200510,318.8,41.931 +200511,319.89,43.829 +200512,320.92,45.638 +200513,316.48,39.875 +200514,317.57,41.92 +200515,318.6,43.86 +200516,319.6,45.708 +200517,315.29,39.819 +200518,316.33,41.91 +200519,317.32,43.891 +200520,318.27,45.776 +200521,314.11,39.765 +200522,315.1,41.9 +200523,316.04,43.921 +200524,316.94,45.843 +200525,312.93,39.713 +200526,313.86,41.892 +200527,314.75,43.951 +200528,315.61,45.909 +200529,311.75,39.663 +200530,312.63,41.883 +200531,313.47,43.981 +200532,314.28,45.973 +200533,310.57,39.614 +200534,311.39,41.876 +200535,312.19,44.01 +200536,312.95,46.035 +200537,309.39,39.567 +200538,310.16,41.869 +200539,310.9,44.039 +200540,311.62,46.096 +200541,308.21,39.522 +200542,308.92,41.863 +200543,309.62,44.067 +200544,310.29,46.155 +200545,307.03,39.479 +200546,307.69,41.857 +200547,308.33,44.095 +200548,308.96,46.213 +200549,305.86,39.437 +200550,306.46,41.852 +200551,307.05,44.122 +200552,307.63,46.269 +200553,304.68,39.398 +200554,305.22,41.848 +200555,305.76,44.149 +200556,306.29,46.324 +200557,303.51,39.36 +200558,303.99,41.844 +200559,304.48,44.175 +200560,304.96,46.377 +200561,302.33,39.325 +200562,302.76,41.841 +200563,303.19,44.201 +200564,303.63,46.428 +200565,301.16,39.292 +200566,301.52,41.839 +200567,301.9,44.226 +200568,302.29,46.478 +200569,299.99,39.26 +200570,300.29,41.838 +200571,300.62,44.25 +200572,300.96,46.526 +200573,298.81,39.231 +200574,299.06,41.837 +200575,299.33,44.275 +200576,299.62,46.572 +200577,297.64,39.204 +200578,297.83,41.837 +200579,298.04,44.298 +200580,298.29,46.617 +200581,296.47,39.179 +200582,296.59,41.838 +200583,296.76,44.321 +200584,296.95,46.66 +200585,295.3,39.156 +200586,295.36,41.839 +200587,295.47,44.344 +200588,295.62,46.701 +200589,294.13,39.136 +200590,294.13,41.841 +200591,294.18,44.366 +200592,294.28,46.74 +200593,292.96,39.117 +200594,292.89,41.844 +200595,292.9,44.387 +200596,292.95,46.778 +200597,291.79,39.101 +200598,291.66,41.848 +200599,291.61,44.408 +200600,291.61,46.814 +200601,290.62,39.087 +200602,290.43,41.852 +200603,290.32,44.428 +200604,290.27,46.848 +200605,289.44,39.075 +200606,289.2,41.858 +200607,289.04,44.448 +200608,288.94,46.88 +200609,288.27,39.066 +200610,287.96,41.864 +200611,287.75,44.467 +200612,287.6,46.911 +200613,287.1,39.059 +200614,286.73,41.87 +200615,286.46,44.485 +200616,286.27,46.94 +200617,285.93,39.054 +200618,285.5,41.878 +200619,285.17,44.503 +200620,284.93,46.967 +200621,284.76,39.052 +200622,284.26,41.886 +200623,283.89,44.521 +200624,283.59,46.992 +200625,283.59,39.052 +200626,283.03,41.895 +200627,282.6,44.538 +200628,282.26,47.015 +200629,282.42,39.054 +200630,281.8,41.905 +200631,281.31,44.554 +200632,280.92,47.037 +200633,281.24,39.058 +200634,280.56,41.916 +200635,280.02,44.569 +200636,279.59,47.057 +200637,280.07,39.065 +200638,279.33,41.927 +200639,278.74,44.584 +200640,278.25,47.075 +200641,278.9,39.074 +200642,278.1,41.939 +200643,277.45,44.599 +200644,276.92,47.091 +200645,277.72,39.086 +200646,276.86,41.952 +200647,276.16,44.613 +200648,275.58,47.106 +200649,276.55,39.1 +200650,275.63,41.966 +200651,274.88,44.626 +200652,274.25,47.118 +200653,275.37,39.116 +200654,274.39,41.981 +200655,273.59,44.639 +200656,272.91,47.129 +200657,274.19,39.135 +200658,273.16,41.996 +200659,272.3,44.651 +200660,271.58,47.138 +200661,273.02,39.156 +200662,271.92,42.012 +200663,271.02,44.663 +200664,270.25,47.146 +200665,271.84,39.179 +200666,270.69,42.029 +200667,269.73,44.674 +200668,268.92,47.151 +200669,270.66,39.205 +200670,269.45,42.047 +200671,268.44,44.684 +200672,267.58,47.155 +200673,269.48,39.233 +200674,268.21,42.065 +200675,267.16,44.694 +200676,266.25,47.157 +200677,268.29,39.263 +200678,266.98,42.084 +200679,265.87,44.703 +200680,264.92,47.157 +200681,267.11,39.296 +200682,265.74,42.104 +200683,264.59,44.712 +200684,263.59,47.156 +200685,265.92,39.33 +200686,264.5,42.125 +200687,263.3,44.72 +200688,262.26,47.152 +200689,264.74,39.367 +200690,263.26,42.147 +200691,262.02,44.728 +200692,260.93,47.147 +200693,263.55,39.407 +200694,262.02,42.169 +200695,260.73,44.735 +200696,259.61,47.14 +200697,262.36,39.448 +200698,260.79,42.192 +200699,259.45,44.741 +200700,258.28,47.132 +200701,261.17,39.492 +200702,259.55,42.216 +200703,258.16,44.747 +200704,256.95,47.122 +200705,259.98,39.538 +200706,258.31,42.24 +200707,256.88,44.752 +200708,255.63,47.11 +200709,258.78,39.586 +200710,257.07,42.265 +200711,255.59,44.757 +200712,254.3,47.096 +200713,257.59,39.636 +200714,255.82,42.291 +200715,254.31,44.762 +200716,252.98,47.081 +200717,256.39,39.689 +200718,254.58,42.318 +200719,253.03,44.765 +200720,251.66,47.064 +200721,255.19,39.743 +200722,253.34,42.345 +200723,251.74,44.769 +200724,250.33,47.045 +200725,253.99,39.8 +200726,252.1,42.373 +200727,250.46,44.771 +200728,249.01,47.025 +200729,252.79,39.858 +200730,250.86,42.402 +200731,249.18,44.773 +200732,247.69,47.003 +200733,251.58,39.919 +200734,249.61,42.431 +200735,247.9,44.775 +200736,246.38,46.98 +200737,250.38,39.981 +200738,248.37,42.461 +200739,246.62,44.776 +200740,245.06,46.955 +200741,249.17,40.046 +200742,247.12,42.492 +200743,245.34,44.777 +200744,243.74,46.928 +200745,247.96,40.112 +200746,245.88,42.523 +200747,244.05,44.777 +200748,242.43,46.9 +200749,246.75,40.18 +200750,244.63,42.555 +200751,242.77,44.777 +200752,241.11,46.87 +200753,245.53,40.25 +200754,243.38,42.588 +200755,241.49,44.776 +200756,239.8,46.839 +200757,244.31,40.322 +200758,242.14,42.621 +200759,240.21,44.775 +200760,238.49,46.807 +200761,243.1,40.396 +200762,240.89,42.655 +200763,238.94,44.773 +200764,237.18,46.772 +200765,241.87,40.471 +200766,239.64,42.69 +200767,237.66,44.771 +200768,235.87,46.737 +200769,240.65,40.548 +200770,238.39,42.725 +200771,236.38,44.769 +200772,234.56,46.7 +200773,239.43,40.626 +200774,237.14,42.761 +200775,235.1,44.766 +200776,233.25,46.662 +200777,238.2,40.707 +200778,235.89,42.797 +200779,233.82,44.762 +200780,231.95,46.622 +200781,236.97,40.788 +200782,234.64,42.834 +200783,232.55,44.759 +200784,230.64,46.581 +200785,235.74,40.872 +200786,233.39,42.871 +200787,231.27,44.754 +200788,229.34,46.538 +200789,234.51,40.956 +200790,232.13,42.909 +200791,229.99,44.75 +200792,228.04,46.495 +200793,233.27,41.042 +200794,230.88,42.947 +200795,228.72,44.745 +200796,226.74,46.45 +200797,232.03,41.13 +200798,229.63,42.986 +200799,227.44,44.74 +200800,225.44,46.404 +200801,230.79,41.219 +200802,228.37,43.026 +200803,226.17,44.734 +200804,224.15,46.356 +200805,229.55,41.309 +200806,227.11,43.066 +200807,224.9,44.728 +200808,222.85,46.308 +200809,228.3,41.4 +200810,225.86,43.106 +200811,223.62,44.722 +200812,221.56,46.258 +200813,227.06,41.493 +200814,224.6,43.147 +200815,222.35,44.715 +200816,220.27,46.207 +200817,225.81,41.586 +200818,223.34,43.188 +200819,221.08,44.708 +200820,218.98,46.155 +200821,224.56,41.681 +200822,222.08,43.23 +200823,219.81,44.701 +200824,217.69,46.102 +200825,223.3,41.777 +200826,220.83,43.272 +200827,218.54,44.693 +200828,216.4,46.048 +200829,222.05,41.873 +200830,219.57,43.315 +200831,217.27,44.685 +200832,215.12,45.993 +200833,220.79,41.971 +200834,218.3,43.357 +200835,216,44.677 +200836,213.83,45.937 +200837,219.53,42.07 +200838,217.04,43.401 +200839,214.73,44.669 +200840,212.55,45.88 +200841,218.27,42.169 +200842,215.78,43.444 +200843,213.46,44.66 +200844,211.27,45.823 +200845,217,42.27 +200846,214.52,43.488 +200847,212.19,44.651 +200848,209.99,45.764 +200849,215.74,42.371 +200850,213.25,43.533 +200851,210.92,44.642 +200852,208.72,45.705 +200853,214.47,42.472 +200854,211.99,43.577 +200855,209.65,44.633 +200856,207.44,45.644 +200857,213.2,42.575 +200858,210.72,43.622 +200859,208.39,44.624 +200860,206.17,45.583 +200861,211.92,42.678 +200862,209.46,43.667 +200863,207.12,44.614 +200864,204.9,45.522 +200865,210.65,42.782 +200866,208.19,43.713 +200867,205.86,44.604 +200868,203.63,45.459 +200869,209.37,42.886 +200870,206.92,43.759 +200871,204.59,44.594 +200872,202.36,45.396 +200873,208.09,42.99 +200874,205.65,43.805 +200875,203.33,44.584 +200876,201.1,45.332 +200877,206.81,43.095 +200878,204.38,43.851 +200879,202.06,44.574 +200880,199.83,45.268 +200881,205.53,43.201 +200882,203.11,43.897 +200883,200.8,44.564 +200884,198.57,45.203 +200885,204.24,43.306 +200886,201.84,43.944 +200887,199.54,44.554 +200888,197.31,45.138 +200889,202.95,43.412 +200890,200.57,43.99 +200891,198.28,44.543 +200892,196.06,45.073 +200893,201.66,43.519 +200894,199.3,44.037 +200895,197.01,44.533 +200896,194.8,45.007 +200897,200.37,43.625 +200898,198.03,44.084 +200899,195.75,44.522 +200900,193.55,44.94 +200901,199.08,43.731 +200902,196.75,44.132 +200903,194.49,44.512 +200904,192.29,44.873 +200905,197.78,43.838 +200906,195.48,44.179 +200907,193.23,44.501 +200908,191.04,44.806 +200909,196.49,43.945 +200910,194.2,44.226 +200911,191.97,44.491 +200912,189.79,44.739 +200913,195.19,44.051 +200914,192.93,44.274 +200915,190.72,44.48 +200916,188.55,44.671 +200917,193.89,44.158 +200918,191.65,44.321 +200919,189.46,44.469 +200920,187.3,44.604 +200921,192.58,44.264 +200922,190.37,44.369 +200923,188.2,44.459 +200924,186.06,44.536 +200925,191.28,44.371 +200926,189.1,44.416 +200927,186.94,44.449 +200928,184.82,44.468 +200929,189.97,44.477 +200930,187.82,44.464 +200931,185.69,44.438 +200932,183.58,44.4 +200933,188.67,44.583 +200934,186.54,44.512 +200935,184.43,44.428 +200936,182.35,44.333 +200937,187.36,44.688 +200938,185.26,44.559 +200939,183.18,44.418 +200940,181.11,44.265 +200941,186.05,44.794 +200942,183.98,44.607 +200943,181.92,44.408 +200944,179.88,44.197 +200945,184.73,44.899 +200946,182.7,44.654 +200947,180.67,44.398 +200948,178.65,44.129 +200949,183.42,45.003 +200950,181.42,44.702 +200951,179.42,44.388 +200952,177.42,44.062 +200953,182.1,45.107 +200954,180.13,44.749 +200955,178.16,44.378 +200956,176.19,43.995 +200957,180.79,45.211 +200958,178.85,44.797 +200959,176.91,44.369 +200960,174.96,43.928 +200961,179.47,45.314 +200962,177.57,44.844 +200963,175.66,44.36 +200964,173.74,43.862 +200965,178.15,45.417 +200966,176.28,44.891 +200967,174.41,44.351 +200968,172.52,43.796 +200969,176.83,45.519 +200970,175,44.938 +200971,173.16,44.342 +200972,171.3,43.73 +200973,175.5,45.62 +200974,173.71,44.985 +200975,171.9,44.333 +200976,170.08,43.665 +200977,174.18,45.72 +200978,172.43,45.032 +200979,170.65,44.325 +200980,168.86,43.6 +200981,172.85,45.82 +200982,171.14,45.078 +200983,169.41,44.317 +200984,167.65,43.536 +200985,171.52,45.919 +200986,169.85,45.125 +200987,168.16,44.309 +200988,166.44,43.472 +200989,170.2,46.018 +200990,168.56,45.171 +200991,166.91,44.301 +200992,165.22,43.409 +200993,168.87,46.115 +200994,167.28,45.217 +200995,165.66,44.294 +200996,164.01,43.347 +200997,167.54,46.212 +200998,165.99,45.263 +200999,164.41,44.287 +201000,162.81,43.285 +201001,166.2,46.308 +201002,164.7,45.308 +201003,163.16,44.28 +201004,161.6,43.224 +201005,164.87,46.402 +201006,163.41,45.353 +201007,161.92,44.274 +201008,160.4,43.164 +201009,163.54,46.496 +201010,162.12,45.398 +201011,160.67,44.268 +201012,159.19,43.105 +201013,162.2,46.589 +201014,160.83,45.443 +201015,159.42,44.263 +201016,157.99,43.047 +201017,160.87,46.681 +201018,159.54,45.488 +201019,158.18,44.257 +201020,156.79,42.989 +201021,159.53,46.772 +201022,158.24,45.532 +201023,156.93,44.253 +201024,155.59,42.933 +201025,158.19,46.861 +201026,156.95,45.575 +201027,155.69,44.248 +201028,154.39,42.878 +201029,156.85,46.95 +201030,155.66,45.619 +201031,154.44,44.244 +201032,153.2,42.824 +201033,155.51,47.037 +201034,154.37,45.662 +201035,153.2,44.241 +201036,152,42.77 +201037,154.17,47.123 +201038,153.07,45.705 +201039,151.95,44.238 +201040,150.81,42.719 +201041,152.83,47.208 +201042,151.78,45.748 +201043,150.71,44.235 +201044,149.62,42.668 +201045,151.49,47.292 +201046,150.48,45.79 +201047,149.47,44.233 +201048,148.43,42.618 +201049,150.14,47.374 +201050,149.19,45.831 +201051,148.22,44.231 +201052,147.24,42.57 +201053,148.8,47.456 +201054,147.9,45.873 +201055,146.98,44.23 +201056,146.05,42.523 +201057,147.45,47.535 +201058,146.6,45.914 +201059,145.74,44.23 +201060,144.86,42.477 +201061,146.11,47.614 +201062,145.3,45.954 +201063,144.49,44.23 +201064,143.68,42.433 +201065,144.76,47.691 +201066,144.01,45.994 +201067,143.25,44.23 +201068,142.49,42.391 +201069,143.42,47.767 +201070,142.71,46.034 +201071,142.01,44.231 +201072,141.31,42.349 +201073,142.07,47.841 +201074,141.42,46.073 +201075,140.77,44.232 +201076,140.12,42.309 +201077,140.72,47.914 +201078,140.12,46.112 +201079,139.52,44.234 +201080,138.94,42.271 +201081,139.37,47.986 +201082,138.82,46.151 +201083,138.28,44.237 +201084,137.76,42.235 +201085,138.03,48.056 +201086,137.53,46.189 +201087,137.04,44.24 +201088,136.58,42.199 +201089,136.68,48.124 +201090,136.23,46.226 +201091,135.8,44.244 +201092,135.4,42.166 +201093,135.33,48.191 +201094,134.93,46.263 +201095,134.56,44.248 +201096,134.22,42.134 +201097,133.98,48.257 +201098,133.63,46.3 +201099,133.32,44.253 +201100,133.04,42.104 +201101,132.63,48.321 +201102,132.33,46.336 +201103,132.07,44.258 +201104,131.86,42.076 +201105,131.28,48.383 +201106,131.04,46.371 +201107,130.83,44.265 +201108,130.68,42.049 +201109,129.93,48.444 +201110,129.74,46.406 +201111,129.59,44.271 +201112,129.5,42.025 +201113,128.58,48.503 +201114,128.44,46.441 +201115,128.35,44.279 +201116,128.33,42.002 +201117,127.23,48.561 +201118,127.14,46.475 +201119,127.11,44.287 +201120,127.15,41.981 +201121,125.88,48.617 +201122,125.84,46.509 +201123,125.87,44.295 +201124,125.97,41.961 +201125,124.53,48.671 +201126,124.54,46.542 +201127,124.63,44.305 +201128,124.8,41.944 +201129,123.18,48.724 +201130,123.24,46.574 +201131,123.38,44.315 +201132,123.62,41.929 +201133,121.83,48.775 +201134,121.95,46.606 +201135,122.14,44.325 +201136,122.44,41.915 +201137,120.48,48.825 +201138,120.65,46.637 +201139,120.9,44.337 +201140,121.26,41.904 +201141,119.13,48.873 +201142,119.35,46.668 +201143,119.66,44.349 +201144,120.09,41.894 +201145,117.78,48.919 +201146,118.05,46.698 +201147,118.42,44.361 +201148,118.91,41.887 +201149,116.43,48.963 +201150,116.75,46.728 +201151,117.17,44.375 +201152,117.73,41.881 +201153,115.08,49.006 +201154,115.45,46.757 +201155,115.93,44.389 +201156,116.55,41.878 +201157,113.73,49.047 +201158,114.15,46.786 +201159,114.69,44.403 +201160,115.37,41.876 +201161,112.38,49.086 +201162,112.85,46.814 +201163,113.45,44.419 +201164,114.2,41.877 +201165,111.03,49.124 +201166,111.55,46.842 +201167,112.2,44.435 +201168,113.02,41.88 +201169,109.68,49.16 +201170,110.25,46.869 +201171,110.96,44.451 +201172,111.84,41.884 +201173,108.33,49.194 +201174,108.96,46.895 +201175,109.72,44.469 +201176,110.65,41.891 +201177,106.98,49.226 +201178,107.66,46.921 +201179,108.47,44.487 +201180,109.47,41.9 +201181,105.63,49.257 +201182,106.36,46.946 +201183,107.23,44.506 +201184,108.29,41.911 +201185,104.29,49.286 +201186,105.06,46.971 +201187,105.98,44.525 +201188,107.11,41.925 +201189,102.94,49.313 +201190,103.76,46.995 +201191,104.74,44.546 +201192,105.92,41.94 +201193,101.59,49.339 +201194,102.46,47.019 +201195,103.49,44.567 +201196,104.74,41.957 +201197,100.25,49.363 +201198,101.16,47.042 +201199,102.25,44.588 +201200,103.55,41.977 +201201,98.902,49.385 +201202,99.867,47.064 +201203,101,44.611 +201204,102.36,41.999 +201205,97.558,49.406 +201206,98.569,47.086 +201207,99.756,44.634 +201208,101.18,42.022 +201209,96.214,49.424 +201210,97.272,47.107 +201211,98.509,44.657 +201212,99.986,42.048 +201213,94.871,49.441 +201214,95.974,47.128 +201215,97.262,44.682 +201216,98.795,42.076 +201217,93.528,49.457 +201218,94.677,47.148 +201219,96.014,44.707 +201220,97.602,42.107 +201221,92.187,49.47 +201222,93.38,47.168 +201223,94.766,44.733 +201224,96.408,42.139 +201225,90.846,49.482 +201226,92.083,47.187 +201227,93.517,44.759 +201228,95.213,42.173 +201229,89.506,49.492 +201230,90.787,47.206 +201231,92.268,44.787 +201232,94.016,42.21 +201233,88.167,49.501 +201234,89.491,47.224 +201235,91.018,44.815 +201236,92.818,42.248 +201237,86.828,49.508 +201238,88.195,47.241 +201239,89.768,44.843 +201240,91.618,42.289 +201241,85.491,49.513 +201242,86.899,47.258 +201243,88.518,44.872 +201244,90.416,42.331 +201245,84.154,49.517 +201246,85.604,47.274 +201247,87.266,44.902 +201248,89.212,42.376 +201249,82.819,49.518 +201250,84.309,47.29 +201251,86.015,44.933 +201252,88.007,42.422 +201253,81.484,49.519 +201254,83.014,47.305 +201255,84.762,44.964 +201256,86.8,42.471 +201257,80.151,49.517 +201258,81.72,47.32 +201259,83.509,44.996 +201260,85.591,42.522 +201261,78.819,49.515 +201262,80.426,47.334 +201263,82.256,45.029 +201264,84.381,42.574 +201265,77.487,49.51 +201266,79.133,47.348 +201267,81.002,45.062 +201268,83.168,42.629 +201269,76.157,49.504 +201270,77.839,47.361 +201271,79.747,45.096 +201272,81.953,42.685 +201273,74.828,49.496 +201274,76.546,47.373 +201275,78.492,45.13 +201276,80.737,42.743 +201277,73.5,49.487 +201278,75.254,47.386 +201279,77.236,45.165 +201280,79.518,42.804 +201281,72.174,49.477 +201282,73.962,47.397 +201283,75.979,45.201 +201284,78.297,42.866 +201285,70.848,49.464 +201286,72.67,47.408 +201287,74.722,45.237 +201288,77.074,42.929 +201289,69.524,49.451 +201290,71.379,47.419 +201291,73.464,45.274 +201292,75.849,42.995 +201293,68.202,49.435 +201294,70.088,47.429 +201295,72.205,45.312 +201296,74.622,43.062 +201297,66.88,49.419 +201298,68.798,47.439 +201299,70.946,45.35 +201300,73.393,43.131 +201301,65.56,49.401 +201302,67.508,47.448 +201303,69.685,45.388 +201304,72.162,43.202 +201305,64.241,49.381 +201306,66.219,47.457 +201307,68.425,45.427 +201308,70.928,43.275 +201309,62.924,49.36 +201310,64.93,47.465 +201311,67.163,45.467 +201312,69.692,43.349 +201313,61.608,49.338 +201314,63.641,47.473 +201315,65.901,45.508 +201316,68.454,43.424 +201317,60.293,49.314 +201318,62.353,47.48 +201319,64.638,45.548 +201320,67.213,43.501 +201321,58.98,49.29 +201322,61.065,47.487 +201323,63.374,45.59 +201324,65.971,43.58 +201325,57.669,49.263 +201326,59.778,47.494 +201327,62.11,45.632 +201328,64.726,43.66 +201329,56.359,49.236 +201330,58.492,47.5 +201331,60.845,45.674 +201332,63.478,43.742 +201333,55.05,49.207 +201334,57.206,47.506 +201335,59.579,45.717 +201336,62.229,43.825 +201337,53.744,49.177 +201338,55.92,47.511 +201339,58.312,45.76 +201340,60.977,43.91 +201341,52.438,49.146 +201342,54.635,47.516 +201343,57.045,45.804 +201344,59.723,43.996 +201345,51.135,49.113 +201346,53.351,47.521 +201347,55.776,45.848 +201348,58.466,44.083 +201349,49.832,49.08 +201350,52.067,47.525 +201351,54.507,45.893 +201352,57.207,44.171 +201353,48.532,49.045 +201354,50.783,47.529 +201355,53.238,45.938 +201356,55.946,44.261 +201357,47.233,49.009 +201358,49.5,47.533 +201359,51.967,45.984 +201360,54.683,44.351 +201361,45.936,48.972 +201362,48.218,47.536 +201363,50.696,46.03 +201364,53.417,44.443 +201365,44.641,48.934 +201366,46.936,47.539 +201367,49.424,46.076 +201368,52.149,44.536 +201369,43.347,48.896 +201370,45.655,47.542 +201371,48.151,46.123 +201372,50.878,44.63 +201373,42.055,48.856 +201374,44.374,47.544 +201375,46.877,46.17 +201376,49.606,44.726 +201377,40.765,48.815 +201378,43.094,47.546 +201379,45.603,46.218 +201380,48.331,44.822 +201381,39.476,48.773 +201382,41.814,47.548 +201383,44.328,46.266 +201384,47.053,44.919 +201385,38.19,48.73 +201386,40.535,47.549 +201387,43.052,46.314 +201388,45.774,45.016 +201389,36.905,48.687 +201390,39.257,47.551 +201391,41.775,46.362 +201392,44.492,45.115 +201393,35.622,48.643 +201394,37.979,47.552 +201395,40.497,46.411 +201396,43.208,45.215 +201397,34.341,48.598 +201398,36.702,47.553 +201399,39.219,46.46 +201400,41.922,45.315 +201401,33.061,48.552 +201402,35.425,47.553 +201403,37.94,46.51 +201404,40.633,45.416 +201405,31.784,48.505 +201406,34.149,47.554 +201407,36.66,46.559 +201408,39.343,45.517 +201409,30.508,48.458 +201410,32.874,47.554 +201411,35.379,46.609 +201412,38.05,45.62 +201413,29.234,48.41 +201414,31.599,47.554 +201415,34.098,46.66 +201416,36.755,45.722 +201417,27.962,48.361 +201418,30.324,47.554 +201419,32.816,46.71 +201420,35.458,45.826 +201421,26.692,48.312 +201422,29.05,47.553 +201423,31.533,46.76 +201424,34.159,45.93 +201425,25.423,48.262 +201426,27.777,47.553 +201427,30.249,46.811 +201428,32.858,46.034 +201429,24.157,48.212 +201430,26.504,47.552 +201431,28.964,46.862 +201432,31.554,46.138 +201433,22.892,48.162 +201434,25.232,47.552 +201435,27.679,46.913 +201436,30.249,46.243 +201437,21.63,48.111 +201438,23.961,47.551 +201439,26.393,46.965 +201440,28.942,46.349 +201441,20.369,48.059 +201442,22.69,47.55 +201443,25.107,47.016 +201444,27.633,46.454 +201445,19.11,48.007 +201446,21.419,47.549 +201447,23.819,47.068 +201448,26.321,46.56 +201449,17.853,47.955 +201450,20.149,47.548 +201451,22.531,47.119 +201452,25.008,46.666 +201453,16.598,47.903 +201454,18.88,47.547 +201455,21.242,47.171 +201456,23.693,46.772 +201457,15.345,47.85 +201458,17.611,47.546 +201459,19.952,47.223 +201460,22.376,46.878 +201461,14.093,47.797 +201462,16.343,47.545 +201463,18.662,47.275 +201464,21.058,46.984 +201465,12.844,47.744 +201466,15.076,47.544 +201467,17.371,47.327 +201468,19.737,47.091 +201469,11.596,47.691 +201470,13.809,47.543 +201471,16.079,47.379 +201472,18.415,47.197 +201473,10.351,47.637 +201474,12.542,47.542 +201475,14.787,47.431 +201476,17.091,47.303 +201477,9.1067,47.584 +201478,11.276,47.541 +201479,13.494,47.483 +201480,15.765,47.409 +201481,7.8647,47.531 +201482,10.011,47.54 +201483,12.2,47.535 +201484,14.438,47.515 +201485,6.6245,47.477 +201486,8.7457,47.539 +201487,10.906,47.587 +201488,13.109,47.62 +201489,5.3861,47.424 +201490,7.4812,47.538 +201491,9.6107,47.639 +201492,11.778,47.725 +201493,4.1496,47.371 +201494,6.2173,47.537 +201495,8.315,47.691 +201496,10.446,47.83 +201497,2.9149,47.318 +201498,4.9539,47.536 +201499,7.0187,47.742 +201500,9.1118,47.935 +201501,1.6819,47.265 +201502,3.6909,47.536 +201503,5.7218,47.794 +201504,7.7765,48.039 +201505,0.45073,47.212 +201506,2.4285,47.535 +201507,4.4242,47.846 +201508,6.4397,48.143 +201509,359.22,47.16 +201510,1.1665,47.535 +201511,3.126,47.898 +201512,5.1015,48.247 +201513,357.99,47.108 +201514,359.91,47.535 +201515,1.8273,47.949 +201516,3.7619,48.35 +201517,356.77,47.056 +201518,358.64,47.535 +201519,0.52795,48 +201520,2.4209,48.452 +201521,355.54,47.005 +201522,357.38,47.535 +201523,359.23,48.052 +201524,1.0786,48.554 +201525,354.32,46.954 +201526,356.12,47.535 +201527,357.93,48.103 +201528,359.73,48.655 +201529,353.1,46.904 +201530,354.86,47.536 +201531,356.63,48.154 +201532,358.39,48.756 +201533,351.88,46.854 +201534,353.6,47.537 +201535,355.33,48.204 +201536,357.04,48.856 +201537,350.66,46.805 +201538,352.35,47.538 +201539,354.02,48.255 +201540,355.7,48.955 +201541,349.45,46.756 +201542,351.09,47.539 +201543,352.72,48.305 +201544,354.35,49.054 +201545,348.23,46.708 +201546,349.83,47.541 +201547,351.42,48.355 +201548,353,49.152 +201549,347.02,46.66 +201550,348.57,47.542 +201551,350.11,48.405 +201552,351.65,49.249 +201553,345.81,46.614 +201554,347.31,47.544 +201555,348.81,48.455 +201556,350.3,49.345 +201557,344.6,46.568 +201558,346.06,47.547 +201559,347.51,48.504 +201560,348.94,49.44 +201561,343.39,46.523 +201562,344.8,47.549 +201563,346.2,48.554 +201564,347.59,49.534 +201565,342.18,46.478 +201566,343.54,47.552 +201567,344.89,48.602 +201568,346.24,49.628 +201569,340.97,46.435 +201570,342.29,47.556 +201571,343.59,48.651 +201572,344.88,49.72 +201573,339.77,46.392 +201574,341.03,47.559 +201575,342.28,48.699 +201576,343.52,49.811 +201577,338.57,46.35 +201578,339.78,47.563 +201579,340.98,48.747 +201580,342.17,49.902 +201581,337.36,46.31 +201582,338.52,47.568 +201583,339.67,48.795 +201584,340.81,49.991 +201585,336.16,46.27 +201586,337.27,47.573 +201587,338.36,48.842 +201588,339.45,50.079 +201589,334.96,46.231 +201590,336.01,47.578 +201591,337.05,48.889 +201592,338.09,50.167 +201593,333.76,46.194 +201594,334.76,47.583 +201595,335.75,48.936 +201596,336.73,50.253 +201597,332.57,46.157 +201598,333.5,47.589 +201599,334.44,48.982 +201600,335.37,50.337 +201601,331.37,46.122 +201602,332.25,47.596 +201603,333.13,49.028 +201604,334.01,50.421 +201605,330.17,46.088 +201606,331,47.602 +201607,331.82,49.074 +201608,332.65,50.504 +201609,328.98,46.055 +201610,329.74,47.61 +201611,330.51,49.119 +201612,331.28,50.585 +201613,327.78,46.023 +201614,328.49,47.617 +201615,329.2,49.163 +201616,329.92,50.665 +201617,326.59,45.993 +201618,327.24,47.625 +201619,327.89,49.208 +201620,328.56,50.743 +201621,325.4,45.964 +201622,325.98,47.634 +201623,326.58,49.252 +201624,327.19,50.821 +201625,324.21,45.936 +201626,324.73,47.643 +201627,325.27,49.295 +201628,325.83,50.897 +201629,323.02,45.91 +201630,323.48,47.652 +201631,323.96,49.338 +201632,324.46,50.971 +201633,321.83,45.885 +201634,322.22,47.662 +201635,322.65,49.381 +201636,323.1,51.045 +201637,320.64,45.862 +201638,320.97,47.673 +201639,321.34,49.423 +201640,321.73,51.117 +201641,319.45,45.84 +201642,319.72,47.684 +201643,320.03,49.465 +201644,320.37,51.187 +201645,318.26,45.819 +201646,318.46,47.696 +201647,318.72,49.506 +201648,319,51.256 +201649,317.07,45.8 +201650,317.21,47.708 +201651,317.4,49.547 +201652,317.64,51.324 +201653,315.88,45.783 +201654,315.96,47.72 +201655,316.09,49.587 +201656,316.27,51.39 +201657,314.69,45.767 +201658,314.71,47.733 +201659,314.78,49.627 +201660,314.91,51.455 +201661,313.5,45.753 +201662,313.45,47.747 +201663,313.47,49.667 +201664,313.54,51.518 +201665,312.32,45.74 +201666,312.2,47.761 +201667,312.16,49.706 +201668,312.17,51.58 +201669,311.13,45.729 +201670,310.95,47.776 +201671,310.85,49.744 +201672,310.81,51.64 +201673,309.94,45.719 +201674,309.69,47.791 +201675,309.53,49.782 +201676,309.44,51.699 +201677,308.75,45.712 +201678,308.44,47.807 +201679,308.22,49.819 +201680,308.08,51.756 +201681,307.56,45.706 +201682,307.19,47.824 +201683,306.91,49.856 +201684,306.71,51.812 +201685,306.38,45.701 +201686,305.94,47.841 +201687,305.6,49.893 +201688,305.34,51.866 +201689,305.19,45.699 +201690,304.68,47.858 +201691,304.29,49.928 +201692,303.98,51.919 +201693,304,45.698 +201694,303.43,47.877 +201695,302.97,49.964 +201696,302.61,51.97 +201697,302.81,45.699 +201698,302.17,47.895 +201699,301.66,49.999 +201700,301.25,52.019 +201701,301.62,45.702 +201702,300.92,47.915 +201703,300.35,50.033 +201704,299.88,52.067 +201705,300.43,45.706 +201706,299.67,47.935 +201707,299.04,50.067 +201708,298.52,52.113 +201709,299.24,45.713 +201710,298.41,47.955 +201711,297.73,50.1 +201712,297.16,52.158 +201713,298.05,45.721 +201714,297.16,47.977 +201715,296.41,50.133 +201716,295.79,52.201 +201717,296.86,45.731 +201718,295.9,47.998 +201719,295.1,50.165 +201720,294.43,52.242 +201721,295.67,45.743 +201722,294.65,48.021 +201723,293.79,50.196 +201724,293.07,52.282 +201725,294.47,45.756 +201726,293.39,48.044 +201727,292.48,50.227 +201728,291.71,52.32 +201729,293.28,45.772 +201730,292.13,48.067 +201731,291.17,50.258 +201732,290.34,52.357 +201733,292.08,45.789 +201734,290.88,48.091 +201735,289.86,50.288 +201736,288.98,52.392 +201737,290.89,45.808 +201738,289.62,48.116 +201739,288.55,50.317 +201740,287.62,52.425 +201741,289.69,45.829 +201742,288.36,48.142 +201743,287.23,50.346 +201744,286.26,52.457 +201745,288.49,45.852 +201746,287.11,48.168 +201747,285.92,50.375 +201748,284.9,52.487 +201749,287.29,45.877 +201750,285.85,48.194 +201751,284.61,50.402 +201752,283.55,52.515 +201753,286.09,45.904 +201754,284.59,48.222 +201755,283.3,50.43 +201756,282.19,52.542 +201757,284.89,45.932 +201758,283.33,48.25 +201759,281.99,50.456 +201760,280.83,52.567 +201761,283.69,45.963 +201762,282.07,48.278 +201763,280.68,50.483 +201764,279.47,52.591 +201765,282.48,45.995 +201766,280.81,48.307 +201767,279.37,50.508 +201768,278.12,52.613 +201769,281.28,46.029 +201770,279.55,48.337 +201771,278.07,50.533 +201772,276.76,52.633 +201773,280.07,46.065 +201774,278.29,48.367 +201775,276.76,50.558 +201776,275.41,52.652 +201777,278.86,46.103 +201778,277.03,48.398 +201779,275.45,50.582 +201780,274.06,52.67 +201781,277.65,46.142 +201782,275.77,48.43 +201783,274.14,50.605 +201784,272.71,52.685 +201785,276.44,46.184 +201786,274.51,48.462 +201787,272.83,50.628 +201788,271.36,52.699 +201789,275.23,46.227 +201790,273.24,48.494 +201791,271.52,50.651 +201792,270.01,52.712 +201793,274.01,46.272 +201794,271.98,48.528 +201795,270.22,50.673 +201796,268.66,52.723 +201797,272.79,46.319 +201798,270.72,48.561 +201799,268.91,50.694 +201800,267.31,52.732 +201801,271.58,46.367 +201802,269.45,48.596 +201803,267.6,50.715 +201804,265.96,52.74 +201805,270.35,46.418 +201806,268.19,48.631 +201807,266.3,50.735 +201808,264.62,52.747 +201809,269.13,46.47 +201810,266.92,48.666 +201811,264.99,50.755 +201812,263.27,52.751 +201813,267.91,46.523 +201814,265.66,48.702 +201815,263.68,50.775 +201816,261.93,52.755 +201817,266.68,46.579 +201818,264.39,48.739 +201819,262.38,50.793 +201820,260.59,52.757 +201821,265.45,46.636 +201822,263.12,48.776 +201823,261.07,50.812 +201824,259.25,52.757 +201825,264.22,46.695 +201826,261.85,48.814 +201827,259.77,50.83 +201828,257.91,52.756 +201829,262.99,46.755 +201830,260.58,48.852 +201831,258.47,50.847 +201832,256.57,52.754 +201833,261.76,46.817 +201834,259.32,48.891 +201835,257.16,50.864 +201836,255.24,52.75 +201837,260.52,46.881 +201838,258.05,48.931 +201839,255.86,50.88 +201840,253.9,52.744 +201841,259.28,46.946 +201842,256.77,48.97 +201843,254.56,50.896 +201844,252.57,52.738 +201845,258.04,47.013 +201846,255.5,49.011 +201847,253.25,50.912 +201848,251.23,52.73 +201849,256.8,47.081 +201850,254.23,49.052 +201851,251.95,50.927 +201852,249.9,52.72 +201853,255.55,47.151 +201854,252.96,49.093 +201855,250.65,50.942 +201856,248.57,52.709 +201857,254.3,47.223 +201858,251.68,49.135 +201859,249.35,50.956 +201860,247.24,52.697 +201861,253.05,47.295 +201862,250.41,49.177 +201863,248.05,50.97 +201864,245.92,52.684 +201865,251.8,47.369 +201866,249.13,49.22 +201867,246.75,50.983 +201868,244.59,52.669 +201869,250.55,47.445 +201870,247.86,49.263 +201871,245.45,50.996 +201872,243.27,52.654 +201873,249.29,47.522 +201874,246.58,49.307 +201875,244.15,51.008 +201876,241.95,52.636 +201877,248.03,47.6 +201878,245.31,49.351 +201879,242.86,51.02 +201880,240.63,52.618 +201881,246.77,47.68 +201882,244.03,49.396 +201883,241.56,51.032 +201884,239.31,52.599 +201885,245.51,47.76 +201886,242.75,49.441 +201887,240.26,51.043 +201888,237.99,52.578 +201889,244.24,47.842 +201890,241.47,49.486 +201891,238.96,51.054 +201892,236.67,52.556 +201893,242.97,47.925 +201894,240.19,49.532 +201895,237.67,51.065 +201896,235.36,52.533 +201897,241.7,48.01 +201898,238.91,49.578 +201899,236.37,51.075 +201900,234.05,52.509 +201901,240.43,48.095 +201902,237.63,49.625 +201903,235.08,51.085 +201904,232.74,52.484 +201905,239.16,48.182 +201906,236.34,49.672 +201907,233.78,51.095 +201908,231.43,52.458 +201909,237.88,48.269 +201910,235.06,49.719 +201911,232.49,51.104 +201912,230.12,52.431 +201913,236.6,48.358 +201914,233.78,49.767 +201915,231.2,51.113 +201916,228.81,52.403 +201917,235.32,48.447 +201918,232.49,49.815 +201919,229.9,51.121 +201920,227.51,52.374 +201921,234.03,48.538 +201922,231.21,49.863 +201923,228.61,51.13 +201924,226.21,52.344 +201925,232.75,48.629 +201926,229.92,49.912 +201927,227.32,51.138 +201928,224.91,52.313 +201929,231.46,48.722 +201930,228.63,49.961 +201931,226.03,51.145 +201932,223.61,52.282 +201933,230.17,48.815 +201934,227.34,50.01 +201935,224.74,51.153 +201936,222.31,52.249 +201937,228.87,48.909 +201938,226.06,50.06 +201939,223.45,51.16 +201940,221.02,52.216 +201941,227.58,49.003 +201942,224.77,50.109 +201943,222.16,51.167 +201944,219.72,52.182 +201945,226.28,49.099 +201946,223.48,50.16 +201947,220.87,51.174 +201948,218.43,52.147 +201949,224.98,49.195 +201950,222.18,50.21 +201951,219.58,51.18 +201952,217.14,52.111 +201953,223.68,49.291 +201954,220.89,50.26 +201955,218.29,51.187 +201956,215.85,52.075 +201957,222.37,49.388 +201958,219.6,50.311 +201959,217.01,51.193 +201960,214.57,52.038 +201961,221.07,49.486 +201962,218.31,50.362 +201963,215.72,51.199 +201964,213.28,52.001 +201965,219.76,49.585 +201966,217.01,50.413 +201967,214.44,51.204 +201968,212,51.963 +201969,218.45,49.683 +201970,215.72,50.464 +201971,213.15,51.21 +201972,210.72,51.924 +201973,217.13,49.782 +201974,214.42,50.516 +201975,211.87,51.215 +201976,209.44,51.885 +201977,215.82,49.882 +201978,213.13,50.567 +201979,210.58,51.221 +201980,208.17,51.845 +201981,214.5,49.982 +201982,211.83,50.619 +201983,209.3,51.226 +201984,206.89,51.805 +201985,213.18,50.082 +201986,210.53,50.671 +201987,208.02,51.231 +201988,205.62,51.765 +201989,211.86,50.183 +201990,209.23,50.723 +201991,206.73,51.236 +201992,204.35,51.724 +201993,210.54,50.284 +201994,207.93,50.775 +201995,205.45,51.241 +201996,203.08,51.683 +201997,209.21,50.384 +201998,206.63,50.827 +201999,204.17,51.245 +202000,201.81,51.641 +202001,207.89,50.486 +202002,205.33,50.88 +202003,202.89,51.25 +202004,200.54,51.6 +202005,206.56,50.587 +202006,204.03,50.932 +202007,201.61,51.255 +202008,199.28,51.558 +202009,205.23,50.688 +202010,202.73,50.984 +202011,200.33,51.259 +202012,198.02,51.515 +202013,203.9,50.789 +202014,201.43,51.037 +202015,199.05,51.264 +202016,196.76,51.473 +202017,202.56,50.891 +202018,200.12,51.089 +202019,197.77,51.268 +202020,195.5,51.43 +202021,201.23,50.992 +202022,198.82,51.142 +202023,196.5,51.273 +202024,194.24,51.388 +202025,199.89,51.093 +202026,197.52,51.194 +202027,195.22,51.277 +202028,192.99,51.345 +202029,198.55,51.194 +202030,196.21,51.247 +202031,193.94,51.282 +202032,191.74,51.302 +202033,197.21,51.295 +202034,194.9,51.299 +202035,192.67,51.286 +202036,190.49,51.26 +202037,195.86,51.396 +202038,193.6,51.351 +202039,191.39,51.291 +202040,189.24,51.217 +202041,194.52,51.496 +202042,192.29,51.404 +202043,190.11,51.296 +202044,187.99,51.175 +202045,193.17,51.597 +202046,190.98,51.456 +202047,188.84,51.3 +202048,186.74,51.132 +202049,191.83,51.696 +202050,189.67,51.508 +202051,187.57,51.305 +202052,185.5,51.09 +202053,190.48,51.796 +202054,188.36,51.56 +202055,186.29,51.31 +202056,184.26,51.048 +202057,189.13,51.895 +202058,187.05,51.612 +202059,185.02,51.315 +202060,183.02,51.006 +202061,187.78,51.994 +202062,185.74,51.664 +202063,183.75,51.32 +202064,181.78,50.965 +202065,186.42,52.092 +202066,184.43,51.716 +202067,182.47,51.325 +202068,180.54,50.923 +202069,185.07,52.19 +202070,183.12,51.767 +202071,181.2,51.331 +202072,179.31,50.882 +202073,183.71,52.287 +202074,181.81,51.819 +202075,179.93,51.336 +202076,178.07,50.842 +202077,182.36,52.384 +202078,180.5,51.87 +202079,178.66,51.342 +202080,176.84,50.802 +202081,181,52.48 +202082,179.18,51.921 +202083,177.39,51.348 +202084,175.61,50.762 +202085,179.64,52.576 +202086,177.87,51.972 +202087,176.12,51.354 +202088,174.38,50.723 +202089,178.28,52.67 +202090,176.56,52.023 +202091,174.85,51.36 +202092,173.15,50.684 +202093,176.91,52.765 +202094,175.24,52.073 +202095,173.58,51.367 +202096,171.93,50.646 +202097,175.55,52.858 +202098,173.93,52.124 +202099,172.31,51.373 +202100,170.7,50.609 +202101,174.19,52.951 +202102,172.61,52.174 +202103,171.04,51.38 +202104,169.48,50.572 +202105,172.82,53.043 +202106,171.3,52.223 +202107,169.78,51.387 +202108,168.26,50.535 +202109,171.46,53.134 +202110,169.98,52.273 +202111,168.51,51.395 +202112,167.04,50.5 +202113,170.09,53.224 +202114,168.66,52.322 +202115,167.24,51.402 +202116,165.82,50.465 +202117,168.72,53.313 +202118,167.35,52.371 +202119,165.97,51.41 +202120,164.6,50.431 +202121,167.35,53.402 +202122,166.03,52.42 +202123,164.71,51.419 +202124,163.38,50.398 +202125,165.98,53.489 +202126,164.71,52.469 +202127,163.44,51.427 +202128,162.17,50.365 +202129,164.61,53.576 +202130,163.39,52.517 +202131,162.17,51.436 +202132,160.95,50.334 +202133,163.24,53.662 +202134,162.07,52.565 +202135,160.91,51.445 +202136,159.74,50.303 +202137,161.87,53.746 +202138,160.75,52.612 +202139,159.64,51.454 +202140,158.53,50.274 +202141,160.5,53.83 +202142,159.44,52.659 +202143,158.38,51.464 +202144,157.32,50.245 +202145,159.12,53.912 +202146,158.12,52.706 +202147,157.11,51.474 +202148,156.11,50.217 +202149,157.75,53.994 +202150,156.8,52.753 +202151,155.85,51.485 +202152,154.9,50.19 +202153,156.38,54.074 +202154,155.48,52.799 +202155,154.58,51.496 +202156,153.69,50.164 +202157,155,54.153 +202158,154.15,52.845 +202159,153.32,51.507 +202160,152.48,50.14 +202161,153.63,54.231 +202162,152.83,52.89 +202163,152.05,51.518 +202164,151.28,50.116 +202165,152.25,54.308 +202166,151.51,52.935 +202167,150.79,51.53 +202168,150.07,50.094 +202169,150.87,54.384 +202170,150.19,52.98 +202171,149.52,51.543 +202172,148.87,50.073 +202173,149.5,54.458 +202174,148.87,53.024 +202175,148.26,51.556 +202176,147.66,50.053 +202177,148.12,54.531 +202178,147.55,53.068 +202179,146.99,51.569 +202180,146.46,50.034 +202181,146.74,54.603 +202182,146.23,53.111 +202183,145.73,51.582 +202184,145.26,50.016 +202185,145.37,54.674 +202186,144.9,53.154 +202187,144.47,51.596 +202188,144.06,50 +202189,143.99,54.743 +202190,143.58,53.197 +202191,143.2,51.611 +202192,142.85,49.985 +202193,142.61,54.811 +202194,142.26,53.239 +202195,141.94,51.626 +202196,141.65,49.971 +202197,141.23,54.878 +202198,140.94,53.28 +202199,140.68,51.641 +202200,140.45,49.959 +202201,139.85,54.943 +202202,139.62,53.322 +202203,139.41,51.657 +202204,139.25,49.948 +202205,138.48,55.007 +202206,138.29,53.362 +202207,138.15,51.673 +202208,138.05,49.938 +202209,137.1,55.07 +202210,136.97,53.403 +202211,136.89,51.69 +202212,136.85,49.93 +202213,135.72,55.131 +202214,135.65,53.442 +202215,135.62,51.707 +202216,135.65,49.923 +202217,134.34,55.191 +202218,134.32,53.482 +202219,134.36,51.725 +202220,134.45,49.918 +202221,132.96,55.249 +202222,133,53.521 +202223,133.09,51.743 +202224,133.25,49.914 +202225,131.59,55.306 +202226,131.68,53.559 +202227,131.83,51.762 +202228,132.05,49.911 +202229,130.21,55.362 +202230,130.36,53.597 +202231,130.57,51.781 +202232,130.85,49.91 +202233,128.83,55.416 +202234,129.03,53.635 +202235,129.3,51.801 +202236,129.65,49.911 +202237,127.45,55.469 +202238,127.71,53.672 +202239,128.04,51.821 +202240,128.45,49.913 +202241,126.08,55.52 +202242,126.39,53.708 +202243,126.77,51.842 +202244,127.25,49.917 +202245,124.7,55.57 +202246,125.06,53.744 +202247,125.51,51.863 +202248,126.05,49.922 +202249,123.32,55.618 +202250,123.74,53.779 +202251,124.24,51.884 +202252,124.85,49.928 +202253,121.95,55.665 +202254,122.42,53.814 +202255,122.98,51.907 +202256,123.65,49.937 +202257,120.57,55.71 +202258,121.09,53.849 +202259,121.71,51.929 +202260,122.45,49.947 +202261,119.19,55.754 +202262,119.77,53.883 +202263,120.45,51.953 +202264,121.25,49.958 +202265,117.82,55.796 +202266,118.45,53.916 +202267,119.18,51.976 +202268,120.04,49.971 +202269,116.44,55.837 +202270,117.13,53.949 +202271,117.92,52.001 +202272,118.84,49.986 +202273,115.07,55.876 +202274,115.8,53.982 +202275,116.65,52.026 +202276,117.63,50.002 +202277,113.7,55.914 +202278,114.48,54.014 +202279,115.39,52.051 +202280,116.43,50.02 +202281,112.32,55.951 +202282,113.16,54.045 +202283,114.12,52.077 +202284,115.22,50.04 +202285,110.95,55.985 +202286,111.84,54.076 +202287,112.85,52.103 +202288,114.02,50.061 +202289,109.58,56.019 +202290,110.52,54.106 +202291,111.58,52.13 +202292,112.81,50.084 +202293,108.21,56.05 +202294,109.2,54.136 +202295,110.32,52.158 +202296,111.6,50.108 +202297,106.84,56.081 +202298,107.87,54.166 +202299,109.05,52.186 +202300,110.39,50.135 +202301,105.47,56.109 +202302,106.55,54.194 +202303,107.78,52.214 +202304,109.18,50.162 +202305,104.1,56.136 +202306,105.23,54.223 +202307,106.51,52.243 +202308,107.97,50.192 +202309,102.73,56.162 +202310,103.91,54.25 +202311,105.24,52.273 +202312,106.76,50.223 +202313,101.37,56.186 +202314,102.59,54.278 +202315,103.97,52.303 +202316,105.54,50.255 +202317,100,56.209 +202318,101.27,54.305 +202319,102.7,52.334 +202320,104.33,50.29 +202321,98.635,56.23 +202322,99.953,54.331 +202323,101.43,52.365 +202324,103.11,50.326 +202325,97.271,56.25 +202326,98.633,54.357 +202327,100.16,52.397 +202328,101.89,50.363 +202329,95.908,56.268 +202330,97.314,54.382 +202331,98.89,52.429 +202332,100.67,50.402 +202333,94.546,56.285 +202334,95.996,54.407 +202335,97.618,52.462 +202336,99.452,50.443 +202337,93.185,56.301 +202338,94.677,54.431 +202339,96.345,52.495 +202340,98.229,50.486 +202341,91.824,56.314 +202342,93.359,54.455 +202343,95.072,52.529 +202344,97.005,50.529 +202345,90.465,56.327 +202346,92.042,54.478 +202347,93.799,52.563 +202348,95.78,50.575 +202349,89.108,56.338 +202350,90.724,54.501 +202351,92.525,52.598 +202352,94.552,50.622 +202353,87.751,56.347 +202354,89.407,54.523 +202355,91.25,52.633 +202356,93.323,50.671 +202357,86.395,56.356 +202358,88.091,54.545 +202359,89.975,52.669 +202360,92.092,50.721 +202361,85.041,56.362 +202362,86.775,54.566 +202363,88.699,52.705 +202364,90.86,50.773 +202365,83.688,56.368 +202366,85.459,54.587 +202367,87.423,52.742 +202368,89.625,50.826 +202369,82.336,56.372 +202370,84.144,54.607 +202371,86.146,52.779 +202372,88.389,50.88 +202373,80.985,56.374 +202374,82.829,54.627 +202375,84.869,52.817 +202376,87.151,50.937 +202377,79.636,56.376 +202378,81.514,54.647 +202379,83.59,52.855 +202380,85.911,50.994 +202381,78.288,56.376 +202382,80.2,54.666 +202383,82.312,52.894 +202384,84.669,51.053 +202385,76.941,56.374 +202386,78.887,54.684 +202387,81.032,52.933 +202388,83.426,51.114 +202389,75.596,56.372 +202390,77.574,54.702 +202391,79.752,52.973 +202392,82.18,51.175 +202393,74.252,56.368 +202394,76.261,54.72 +202395,78.472,53.013 +202396,80.932,51.239 +202397,72.91,56.363 +202398,74.949,54.737 +202399,77.19,53.053 +202400,79.682,51.303 +202401,71.569,56.356 +202402,73.637,54.754 +202403,75.908,53.094 +202404,78.43,51.369 +202405,70.229,56.349 +202406,72.326,54.77 +202407,74.626,53.135 +202408,77.176,51.436 +202409,68.891,56.34 +202410,71.015,54.786 +202411,73.342,53.177 +202412,75.92,51.505 +202413,67.554,56.33 +202414,69.705,54.802 +202415,72.058,53.219 +202416,74.661,51.575 +202417,66.219,56.319 +202418,68.395,54.817 +202419,70.774,53.262 +202420,73.401,51.646 +202421,64.886,56.306 +202422,67.086,54.832 +202423,69.488,53.305 +202424,72.138,51.718 +202425,63.554,56.293 +202426,65.778,54.846 +202427,68.202,53.348 +202428,70.873,51.791 +202429,62.224,56.278 +202430,64.469,54.86 +202431,66.915,53.391 +202432,69.606,51.866 +202433,60.895,56.263 +202434,63.162,54.874 +202435,65.628,53.436 +202436,68.337,51.942 +202437,59.568,56.246 +202438,61.855,54.887 +202439,64.339,53.48 +202440,67.066,52.018 +202441,58.243,56.228 +202442,60.548,54.9 +202443,63.05,53.525 +202444,65.792,52.096 +202445,56.919,56.21 +202446,59.243,54.913 +202447,61.761,53.57 +202448,64.516,52.175 +202449,55.597,56.19 +202450,57.937,54.925 +202451,60.47,53.615 +202452,63.238,52.255 +202453,54.277,56.169 +202454,56.632,54.937 +202455,59.179,53.661 +202456,61.958,52.336 +202457,52.958,56.148 +202458,55.328,54.949 +202459,57.887,53.707 +202460,60.675,52.418 +202461,51.641,56.125 +202462,54.025,54.96 +202463,56.594,53.753 +202464,59.39,52.5 +202465,50.326,56.102 +202466,52.722,54.971 +202467,55.301,53.8 +202468,58.103,52.584 +202469,49.012,56.077 +202470,51.419,54.982 +202471,54.007,53.847 +202472,56.814,52.668 +202473,47.701,56.052 +202474,50.117,54.992 +202475,52.712,53.894 +202476,55.522,52.754 +202477,46.391,56.026 +202478,48.816,55.002 +202479,51.416,53.942 +202480,54.228,52.84 +202481,45.082,56 +202482,47.515,55.012 +202483,50.12,53.989 +202484,52.932,52.927 +202485,43.776,55.972 +202486,46.215,55.022 +202487,48.823,54.037 +202488,51.634,53.014 +202489,42.472,55.944 +202490,44.915,55.031 +202491,47.525,54.085 +202492,50.334,53.102 +202493,41.169,55.915 +202494,43.616,55.041 +202495,46.227,54.134 +202496,49.031,53.191 +202497,39.868,55.886 +202498,42.318,55.05 +202499,44.927,54.182 +202500,47.726,53.281 +202501,38.569,55.856 +202502,41.02,55.058 +202503,43.627,54.231 +202504,46.419,53.371 +202505,37.271,55.825 +202506,39.723,55.067 +202507,42.326,54.28 +202508,45.11,53.461 +202509,35.976,55.794 +202510,38.426,55.075 +202511,41.025,54.329 +202512,43.798,53.552 +202513,34.682,55.762 +202514,37.13,55.084 +202515,39.723,54.379 +202516,42.485,53.644 +202517,33.39,55.73 +202518,35.835,55.092 +202519,38.42,54.428 +202520,41.169,53.736 +202521,32.1,55.697 +202522,34.54,55.1 +202523,37.116,54.478 +202524,39.852,53.828 +202525,30.812,55.664 +202526,33.246,55.107 +202527,35.812,54.527 +202528,38.532,53.921 +202529,29.526,55.63 +202530,31.952,55.115 +202531,34.506,54.577 +202532,37.21,54.014 +202533,28.241,55.596 +202534,30.659,55.122 +202535,33.201,54.627 +202536,35.886,54.108 +202537,26.959,55.562 +202538,29.367,55.13 +202539,31.894,54.677 +202540,34.56,54.201 +202541,25.678,55.527 +202542,28.075,55.137 +202543,30.587,54.727 +202544,33.232,54.295 +202545,24.399,55.492 +202546,26.784,55.144 +202547,29.279,54.778 +202548,31.903,54.389 +202549,23.122,55.457 +202550,25.493,55.151 +202551,27.97,54.828 +202552,30.571,54.483 +202553,21.847,55.422 +202554,24.203,55.159 +202555,26.661,54.878 +202556,29.237,54.578 +202557,20.573,55.386 +202558,22.913,55.166 +202559,25.351,54.928 +202560,27.901,54.672 +202561,19.301,55.351 +202562,21.624,55.173 +202563,24.04,54.979 +202564,26.564,54.767 +202565,18.032,55.315 +202566,20.336,55.179 +202567,22.729,55.029 +202568,25.225,54.861 +202569,16.764,55.279 +202570,19.048,55.186 +202571,21.417,55.079 +202572,23.884,54.955 +202573,15.497,55.243 +202574,17.76,55.193 +202575,20.104,55.13 +202576,22.541,55.05 +202577,14.233,55.207 +202578,16.473,55.2 +202579,18.791,55.18 +202580,21.196,55.144 +202581,12.97,55.171 +202582,15.187,55.207 +202583,17.477,55.23 +202584,19.85,55.238 +202585,11.709,55.135 +202586,13.901,55.214 +202587,16.162,55.281 +202588,18.502,55.332 +202589,10.45,55.099 +202590,12.616,55.221 +202591,14.847,55.331 +202592,17.152,55.426 +202593,9.1924,55.064 +202594,11.331,55.228 +202595,13.531,55.381 +202596,15.801,55.519 +202597,7.9366,55.028 +202598,10.047,55.235 +202599,12.215,55.431 +202600,14.448,55.613 +202601,6.6825,54.993 +202602,8.7635,55.242 +202603,10.898,55.481 +202604,13.093,55.706 +202605,5.4301,54.957 +202606,7.4803,55.25 +202607,9.5806,55.531 +202608,11.737,55.798 +202609,4.1793,54.923 +202610,6.1976,55.257 +202611,8.2625,55.58 +202612,10.38,55.89 +202613,2.9302,54.888 +202614,4.9153,55.264 +202615,6.9438,55.63 +202616,9.021,55.982 +202617,1.6827,54.854 +202618,3.6336,55.272 +202619,5.6246,55.679 +202620,7.6607,56.074 +202621,0.43679,54.82 +202622,2.3523,55.28 +202623,4.3048,55.728 +202624,6.299,56.164 +202625,359.19,54.786 +202626,1.0715,55.287 +202627,2.9846,55.778 +202628,4.9359,56.255 +202629,357.95,54.753 +202630,359.79,55.295 +202631,1.6638,55.826 +202632,3.5716,56.345 +202633,356.71,54.72 +202634,358.51,55.303 +202635,0.34245,55.875 +202636,2.2059,56.434 +202637,355.47,54.688 +202638,357.23,55.312 +202639,359.02,55.924 +202640,0.83907,56.523 +202641,354.23,54.656 +202642,355.95,55.32 +202643,357.7,55.972 +202644,359.47,56.611 +202645,352.99,54.625 +202646,354.67,55.329 +202647,356.38,56.02 +202648,358.1,56.698 +202649,351.76,54.595 +202650,353.4,55.338 +202651,355.05,56.068 +202652,356.73,56.785 +202653,350.52,54.565 +202654,352.12,55.347 +202655,353.73,56.116 +202656,355.36,56.871 +202657,349.29,54.535 +202658,350.84,55.356 +202659,352.4,56.163 +202660,353.99,56.956 +202661,348.06,54.507 +202662,349.56,55.365 +202663,351.08,56.211 +202664,352.61,57.041 +202665,346.83,54.479 +202666,348.29,55.375 +202667,349.76,56.257 +202668,351.24,57.124 +202669,345.6,54.451 +202670,347.01,55.385 +202671,348.43,56.304 +202672,349.86,57.207 +202673,344.37,54.425 +202674,345.73,55.395 +202675,347.1,56.351 +202676,348.49,57.289 +202677,343.15,54.399 +202678,344.46,55.406 +202679,345.78,56.397 +202680,347.11,57.371 +202681,341.92,54.374 +202682,343.18,55.416 +202683,344.45,56.442 +202684,345.73,57.451 +202685,340.7,54.35 +202686,341.91,55.428 +202687,343.12,56.488 +202688,344.35,57.53 +202689,339.48,54.327 +202690,340.63,55.439 +202691,341.8,56.533 +202692,342.97,57.608 +202693,338.25,54.305 +202694,339.36,55.451 +202695,340.47,56.578 +202696,341.59,57.686 +202697,337.03,54.284 +202698,338.08,55.462 +202699,339.14,56.622 +202700,340.21,57.762 +202701,335.81,54.263 +202702,336.81,55.475 +202703,337.81,56.667 +202704,338.83,57.838 +202705,334.59,54.244 +202706,335.53,55.487 +202707,336.49,56.71 +202708,337.45,57.912 +202709,333.37,54.226 +202710,334.26,55.5 +202711,335.16,56.754 +202712,336.07,57.985 +202713,332.16,54.208 +202714,332.99,55.514 +202715,333.83,56.797 +202716,334.68,58.057 +202717,330.94,54.192 +202718,331.71,55.527 +202719,332.5,56.84 +202720,333.3,58.128 +202721,329.72,54.177 +202722,330.44,55.541 +202723,331.17,56.882 +202724,331.92,58.198 +202725,328.51,54.163 +202726,329.17,55.555 +202727,329.84,56.924 +202728,330.53,58.267 +202729,327.3,54.15 +202730,327.89,55.57 +202731,328.51,56.965 +202732,329.15,58.335 +202733,326.08,54.138 +202734,326.62,55.585 +202735,327.18,57.007 +202736,327.76,58.401 +202737,324.87,54.127 +202738,325.35,55.601 +202739,325.85,57.047 +202740,326.38,58.467 +202741,323.65,54.118 +202742,324.08,55.617 +202743,324.52,57.088 +202744,324.99,58.531 +202745,322.44,54.11 +202746,322.8,55.633 +202747,323.19,57.128 +202748,323.61,58.593 +202749,321.23,54.102 +202750,321.53,55.65 +202751,321.86,57.167 +202752,322.22,58.655 +202753,320.02,54.097 +202754,320.26,55.667 +202755,320.53,57.206 +202756,320.83,58.715 +202757,318.81,54.092 +202758,318.99,55.684 +202759,319.2,57.245 +202760,319.45,58.774 +202761,317.6,54.089 +202762,317.71,55.702 +202763,317.87,57.283 +202764,318.06,58.832 +202765,316.39,54.087 +202766,316.44,55.72 +202767,316.54,57.321 +202768,316.67,58.888 +202769,315.17,54.086 +202770,315.17,55.739 +202771,315.21,57.358 +202772,315.29,58.944 +202773,313.96,54.087 +202774,313.9,55.758 +202775,313.88,57.395 +202776,313.9,58.997 +202777,312.75,54.089 +202778,312.62,55.778 +202779,312.55,57.431 +202780,312.52,59.05 +202781,311.54,54.093 +202782,311.35,55.798 +202783,311.21,57.467 +202784,311.13,59.101 +202785,310.33,54.097 +202786,310.08,55.819 +202787,309.88,57.503 +202788,309.74,59.151 +202789,309.12,54.104 +202790,308.8,55.84 +202791,308.55,57.538 +202792,308.36,59.199 +202793,307.91,54.111 +202794,307.53,55.861 +202795,307.22,57.572 +202796,306.97,59.246 +202797,306.7,54.12 +202798,306.26,55.883 +202799,305.89,57.606 +202800,305.59,59.292 +202801,305.49,54.131 +202802,304.99,55.905 +202803,304.56,57.64 +202804,304.2,59.336 +202805,304.28,54.143 +202806,303.71,55.928 +202807,303.23,57.673 +202808,302.82,59.379 +202809,303.06,54.156 +202810,302.44,55.952 +202811,301.9,57.706 +202812,301.43,59.42 +202813,301.85,54.171 +202814,301.16,55.975 +202815,300.57,57.738 +202816,300.05,59.46 +202817,300.64,54.187 +202818,299.89,56 +202819,299.24,57.77 +202820,298.67,59.499 +202821,299.43,54.204 +202822,298.62,56.024 +202823,297.91,57.801 +202824,297.29,59.536 +202825,298.21,54.223 +202826,297.34,56.049 +202827,296.58,57.832 +202828,295.9,59.572 +202829,297,54.244 +202830,296.07,56.075 +202831,295.25,57.862 +202832,294.52,59.607 +202833,295.78,54.266 +202834,294.79,56.101 +202835,293.92,57.892 +202836,293.14,59.64 +202837,294.56,54.289 +202838,293.52,56.128 +202839,292.59,57.921 +202840,291.76,59.671 +202841,293.35,54.314 +202842,292.24,56.155 +202843,291.26,57.95 +202844,290.38,59.701 +202845,292.13,54.341 +202846,290.97,56.182 +202847,289.93,57.978 +202848,289,59.73 +202849,290.91,54.369 +202850,289.69,56.21 +202851,288.6,58.006 +202852,287.62,59.758 +202853,289.69,54.398 +202854,288.41,56.239 +202855,287.27,58.033 +202856,286.25,59.784 +202857,288.47,54.429 +202858,287.14,56.268 +202859,285.94,58.06 +202860,284.87,59.808 +202861,287.25,54.461 +202862,285.86,56.297 +202863,284.62,58.086 +202864,283.49,59.831 +202865,286.03,54.495 +202866,284.58,56.327 +202867,283.29,58.112 +202868,282.12,59.853 +202869,284.8,54.53 +202870,283.3,56.357 +202871,281.96,58.138 +202872,280.74,59.873 +202873,283.58,54.566 +202874,282.03,56.388 +202875,280.63,58.162 +202876,279.37,59.892 +202877,282.35,54.604 +202878,280.75,56.419 +202879,279.3,58.187 +202880,278,59.91 +202881,281.12,54.644 +202882,279.47,56.451 +202883,277.98,58.211 +202884,276.63,59.926 +202885,279.89,54.685 +202886,278.19,56.483 +202887,276.65,58.234 +202888,275.26,59.941 +202889,278.66,54.727 +202890,276.91,56.516 +202891,275.33,58.257 +202892,273.89,59.955 +202893,277.43,54.771 +202894,275.63,56.549 +202895,274,58.28 +202896,272.52,59.967 +202897,276.2,54.816 +202898,274.35,56.583 +202899,272.67,58.302 +202900,271.15,59.978 +202901,274.96,54.863 +202902,273.07,56.617 +202903,271.35,58.324 +202904,269.79,59.987 +202905,273.73,54.911 +202906,271.78,56.651 +202907,270.02,58.345 +202908,268.42,59.995 +202909,272.49,54.96 +202910,270.5,56.686 +202911,268.7,58.366 +202912,267.06,60.002 +202913,271.25,55.01 +202914,269.22,56.721 +202915,267.38,58.386 +202916,265.69,60.008 +202917,270.01,55.062 +202918,267.93,56.757 +202919,266.05,58.406 +202920,264.33,60.012 +202921,268.77,55.116 +202922,266.65,56.793 +202923,264.73,58.425 +202924,262.97,60.015 +202925,267.52,55.17 +202926,265.37,56.83 +202927,263.41,58.444 +202928,261.61,60.017 +202929,266.28,55.226 +202930,264.08,56.867 +202931,262.08,58.463 +202932,260.26,60.018 +202933,265.03,55.283 +202934,262.79,56.904 +202935,260.76,58.481 +202936,258.9,60.017 +202937,263.78,55.341 +202938,261.51,56.942 +202939,259.44,58.498 +202940,257.55,60.015 +202941,262.53,55.401 +202942,260.22,56.98 +202943,258.12,58.516 +202944,256.19,60.012 +202945,261.27,55.462 +202946,258.93,57.018 +202947,256.8,58.533 +202948,254.84,60.008 +202949,260.02,55.524 +202950,257.64,57.057 +202951,255.48,58.549 +202952,253.49,60.002 +202953,258.76,55.587 +202954,256.36,57.097 +202955,254.16,58.565 +202956,252.14,59.996 +202957,257.5,55.651 +202958,255.07,57.136 +202959,252.84,58.581 +202960,250.79,59.988 +202961,256.24,55.717 +202962,253.78,57.176 +202963,251.52,58.596 +202964,249.45,59.979 +202965,254.98,55.783 +202966,252.49,57.217 +202967,250.21,58.611 +202968,248.1,59.969 +202969,253.71,55.851 +202970,251.19,57.258 +202971,248.89,58.626 +202972,246.76,59.958 +202973,252.44,55.92 +202974,249.9,57.299 +202975,247.57,58.64 +202976,245.42,59.947 +202977,251.17,55.989 +202978,248.61,57.34 +202979,246.26,58.654 +202980,244.08,59.934 +202981,249.9,56.06 +202982,247.32,57.382 +202983,244.94,58.667 +202984,242.74,59.92 +202985,248.63,56.132 +202986,246.02,57.424 +202987,243.62,58.681 +202988,241.4,59.905 +202989,247.35,56.204 +202990,244.73,57.466 +202991,242.31,58.693 +202992,240.07,59.889 +202993,246.07,56.278 +202994,243.43,57.509 +202995,241,58.706 +202996,238.73,59.872 +202997,244.79,56.352 +202998,242.14,57.552 +202999,239.68,58.718 +203000,237.4,59.854 +203001,243.51,56.428 +203002,240.84,57.595 +203003,238.37,58.73 +203004,236.07,59.835 +203005,242.23,56.504 +203006,239.54,57.639 +203007,237.06,58.742 +203008,234.74,59.816 +203009,240.94,56.581 +203010,238.24,57.682 +203011,235.75,58.753 +203012,233.41,59.796 +203013,239.65,56.659 +203014,236.94,57.726 +203015,234.43,58.764 +203016,232.09,59.774 +203017,238.36,56.737 +203018,235.64,57.771 +203019,233.12,58.775 +203020,230.77,59.753 +203021,237.07,56.817 +203022,234.34,57.815 +203023,231.81,58.785 +203024,229.44,59.73 +203025,235.78,56.897 +203026,233.04,57.86 +203027,230.5,58.796 +203028,228.12,59.706 +203029,234.48,56.977 +203030,231.74,57.905 +203031,229.19,58.806 +203032,226.81,59.682 +203033,233.18,57.059 +203034,230.44,57.95 +203035,227.89,58.815 +203036,225.49,59.657 +203037,231.88,57.141 +203038,229.14,57.995 +203039,226.58,58.825 +203040,224.17,59.632 +203041,230.57,57.223 +203042,227.83,58.041 +203043,225.27,58.834 +203044,222.86,59.606 +203045,229.27,57.306 +203046,226.53,58.087 +203047,223.96,58.843 +203048,221.55,59.579 +203049,227.96,57.39 +203050,225.22,58.133 +203051,222.66,58.852 +203052,220.24,59.552 +203053,226.65,57.474 +203054,223.92,58.179 +203055,221.35,58.861 +203056,218.93,59.524 +203057,225.34,57.558 +203058,222.61,58.225 +203059,220.05,58.87 +203060,217.63,59.496 +203061,224.02,57.643 +203062,221.3,58.271 +203063,218.74,58.878 +203064,216.32,59.467 +203065,222.71,57.729 +203066,219.99,58.318 +203067,217.44,58.886 +203068,215.02,59.438 +203069,221.39,57.814 +203070,218.69,58.364 +203071,216.14,58.895 +203072,213.72,59.408 +203073,220.07,57.9 +203074,217.38,58.411 +203075,214.83,58.902 +203076,212.42,59.378 +203077,218.75,57.987 +203078,216.07,58.457 +203079,213.53,58.91 +203080,211.13,59.348 +203081,217.42,58.073 +203082,214.76,58.504 +203083,212.23,58.918 +203084,209.83,59.317 +203085,216.1,58.16 +203086,213.44,58.551 +203087,210.93,58.926 +203088,208.54,59.286 +203089,214.77,58.247 +203090,212.13,58.598 +203091,209.63,58.933 +203092,207.25,59.254 +203093,213.44,58.334 +203094,210.82,58.645 +203095,208.33,58.941 +203096,205.96,59.223 +203097,212.11,58.421 +203098,209.51,58.692 +203099,207.03,58.948 +203100,204.67,59.191 +203101,210.77,58.509 +203102,208.19,58.739 +203103,205.73,58.955 +203104,203.38,59.159 +203105,209.44,58.596 +203106,206.88,58.786 +203107,204.44,58.963 +203108,202.1,59.127 +203109,208.1,58.683 +203110,205.56,58.834 +203111,203.14,58.97 +203112,200.82,59.095 +203113,206.76,58.771 +203114,204.24,58.881 +203115,201.84,58.977 +203116,199.54,59.062 +203117,205.42,58.858 +203118,202.93,58.928 +203119,200.55,58.984 +203120,198.26,59.03 +203121,204.07,58.946 +203122,201.61,58.975 +203123,199.25,58.991 +203124,196.98,58.998 +203125,202.73,59.033 +203126,200.29,59.022 +203127,197.96,58.999 +203128,195.7,58.965 +203129,201.38,59.12 +203130,198.97,59.069 +203131,196.66,59.006 +203132,194.43,58.933 +203133,200.03,59.207 +203134,197.65,59.116 +203135,195.37,59.013 +203136,193.16,58.901 +203137,198.68,59.293 +203138,196.33,59.163 +203139,194.07,59.02 +203140,191.89,58.868 +203141,197.33,59.38 +203142,195.01,59.209 +203143,192.78,59.027 +203144,190.62,58.836 +203145,195.97,59.466 +203146,193.69,59.256 +203147,191.49,59.035 +203148,189.35,58.805 +203149,194.62,59.552 +203150,192.37,59.303 +203151,190.2,59.042 +203152,188.09,58.773 +203153,193.26,59.638 +203154,191.05,59.349 +203155,188.91,59.05 +203156,186.83,58.741 +203157,191.9,59.723 +203158,189.73,59.396 +203159,187.62,59.057 +203160,185.56,58.71 +203161,190.54,59.808 +203162,188.4,59.442 +203163,186.33,59.065 +203164,184.3,58.679 +203165,189.18,59.892 +203166,187.08,59.488 +203167,185.04,59.073 +203168,183.05,58.649 +203169,187.82,59.976 +203170,185.75,59.534 +203171,183.75,59.08 +203172,181.79,58.618 +203173,186.45,60.06 +203174,184.43,59.58 +203175,182.46,59.088 +203176,180.53,58.589 +203177,185.09,60.143 +203178,183.1,59.625 +203179,181.17,59.097 +203180,179.28,58.559 +203181,183.72,60.225 +203182,181.78,59.671 +203183,179.88,59.105 +203184,178.03,58.53 +203185,182.35,60.307 +203186,180.45,59.716 +203187,178.59,59.113 +203188,176.78,58.501 +203189,180.98,60.389 +203190,179.12,59.761 +203191,177.31,59.122 +203192,175.53,58.473 +203193,179.61,60.47 +203194,177.8,59.806 +203195,176.02,59.131 +203196,174.28,58.446 +203197,178.24,60.55 +203198,176.47,59.85 +203199,174.74,59.139 +203200,173.03,58.419 +203201,176.87,60.629 +203202,175.14,59.895 +203203,173.45,59.149 +203204,171.79,58.393 +203205,175.49,60.708 +203206,173.81,59.939 +203207,172.16,59.158 +203208,170.54,58.367 +203209,174.12,60.786 +203210,172.48,59.983 +203211,170.88,59.167 +203212,169.3,58.342 +203213,172.74,60.863 +203214,171.15,60.026 +203215,169.59,59.177 +203216,168.06,58.317 +203217,171.36,60.94 +203218,169.82,60.07 +203219,168.31,59.187 +203220,166.82,58.293 +203221,169.98,61.015 +203222,168.49,60.113 +203223,167.03,59.197 +203224,165.58,58.27 +203225,168.6,61.09 +203226,167.16,60.156 +203227,165.74,59.208 +203228,164.35,58.248 +203229,167.22,61.164 +203230,165.83,60.198 +203231,164.46,59.219 +203232,163.11,58.227 +203233,165.84,61.237 +203234,164.5,60.241 +203235,163.18,59.23 +203236,161.88,58.206 +203237,164.46,61.31 +203238,163.17,60.283 +203239,161.9,59.241 +203240,160.64,58.186 +203241,163.07,61.381 +203242,161.83,60.324 +203243,160.61,59.252 +203244,159.41,58.167 +203245,161.69,61.451 +203246,160.5,60.366 +203247,159.33,59.264 +203248,158.18,58.149 +203249,160.31,61.521 +203250,159.17,60.406 +203251,158.05,59.276 +203252,156.95,58.132 +203253,158.92,61.589 +203254,157.84,60.447 +203255,156.77,59.289 +203256,155.72,58.115 +203257,157.53,61.657 +203258,156.5,60.487 +203259,155.49,59.301 +203260,154.49,58.1 +203261,156.15,61.723 +203262,155.17,60.527 +203263,154.21,59.315 +203264,153.26,58.086 +203265,154.76,61.788 +203266,153.83,60.567 +203267,152.93,59.328 +203268,152.03,58.072 +203269,153.37,61.853 +203270,152.5,60.606 +203271,151.65,59.342 +203272,150.81,58.06 +203273,151.99,61.916 +203274,151.17,60.645 +203275,150.36,59.356 +203276,149.58,58.048 +203277,150.6,61.978 +203278,149.83,60.684 +203279,149.08,59.37 +203280,148.36,58.038 +203281,149.21,62.039 +203282,148.5,60.722 +203283,147.8,59.385 +203284,147.13,58.029 +203285,147.82,62.099 +203286,147.16,60.76 +203287,146.52,59.4 +203288,145.91,58.021 +203289,146.43,62.158 +203290,145.83,60.797 +203291,145.25,59.415 +203292,144.69,58.014 +203293,145.04,62.215 +203294,144.49,60.834 +203295,143.97,59.431 +203296,143.46,58.008 +203297,143.65,62.272 +203298,143.16,60.87 +203299,142.69,59.447 +203300,142.24,58.003 +203301,142.26,62.327 +203302,141.82,60.907 +203303,141.41,59.464 +203304,141.02,58 +203305,140.87,62.381 +203306,140.48,60.942 +203307,140.13,59.481 +203308,139.8,57.997 +203309,139.48,62.434 +203310,139.15,60.978 +203311,138.85,59.498 +203312,138.58,57.996 +203313,138.09,62.486 +203314,137.81,61.013 +203315,137.57,59.516 +203316,137.36,57.996 +203317,136.7,62.536 +203318,136.48,61.047 +203319,136.29,59.534 +203320,136.14,57.997 +203321,135.3,62.585 +203322,135.14,61.081 +203323,135.01,59.552 +203324,134.92,58 +203325,133.91,62.633 +203326,133.8,61.115 +203327,133.73,59.571 +203328,133.7,58.004 +203329,132.52,62.68 +203330,132.47,61.148 +203331,132.45,59.591 +203332,132.48,58.009 +203333,131.13,62.725 +203334,131.13,61.181 +203335,131.17,59.61 +203336,131.26,58.015 +203337,129.74,62.769 +203338,129.8,61.213 +203339,129.89,59.631 +203340,130.04,58.023 +203341,128.35,62.812 +203342,128.46,61.245 +203343,128.62,59.651 +203344,128.82,58.031 +203345,126.96,62.853 +203346,127.12,61.276 +203347,127.34,59.672 +203348,127.6,58.042 +203349,125.57,62.894 +203350,125.79,61.307 +203351,126.06,59.694 +203352,126.38,58.053 +203353,124.18,62.932 +203354,124.45,61.338 +203355,124.78,59.715 +203356,125.16,58.066 +203357,122.79,62.97 +203358,123.12,61.368 +203359,123.5,59.738 +203360,123.94,58.08 +203361,121.4,63.006 +203362,121.78,61.397 +203363,122.22,59.76 +203364,122.72,58.096 +203365,120.01,63.041 +203366,120.44,61.426 +203367,120.94,59.784 +203368,121.5,58.112 +203369,118.63,63.075 +203370,119.11,61.455 +203371,119.66,59.807 +203372,120.28,58.131 +203373,117.24,63.107 +203374,117.77,61.483 +203375,118.38,59.831 +203376,119.06,58.15 +203377,115.85,63.138 +203378,116.44,61.511 +203379,117.1,59.856 +203380,117.84,58.171 +203381,114.46,63.167 +203382,115.1,61.539 +203383,115.82,59.88 +203384,116.61,58.193 +203385,113.08,63.196 +203386,113.77,61.565 +203387,114.54,59.906 +203388,115.39,58.217 +203389,111.69,63.223 +203390,112.43,61.592 +203391,113.25,59.931 +203392,114.17,58.241 +203393,110.31,63.248 +203394,111.1,61.618 +203395,111.97,59.958 +203396,112.94,58.268 +203397,108.92,63.273 +203398,109.76,61.643 +203399,110.69,59.984 +203400,111.72,58.295 +203401,107.54,63.296 +203402,108.43,61.668 +203403,109.41,60.011 +203404,110.49,58.324 +203405,106.16,63.317 +203406,107.1,61.693 +203407,108.13,60.039 +203408,109.26,58.354 +203409,104.77,63.337 +203410,105.76,61.717 +203411,106.84,60.067 +203412,108.04,58.386 +203413,103.39,63.357 +203414,104.43,61.741 +203415,105.56,60.095 +203416,106.81,58.419 +203417,102.01,63.374 +203418,103.09,61.764 +203419,104.28,60.124 +203420,105.58,58.453 +203421,100.63,63.391 +203422,101.76,61.787 +203423,103,60.153 +203424,104.35,58.489 +203425,99.252,63.406 +203426,100.43,61.809 +203427,101.71,60.182 +203428,103.12,58.526 +203429,97.874,63.42 +203430,99.096,61.831 +203431,100.43,60.213 +203432,101.88,58.564 +203433,96.497,63.432 +203434,97.764,61.852 +203435,99.143,60.243 +203436,100.65,58.604 +203437,95.121,63.443 +203438,96.432,61.873 +203439,97.858,60.274 +203440,99.416,58.645 +203441,93.746,63.453 +203442,95.101,61.894 +203443,96.572,60.305 +203444,98.179,58.687 +203445,92.372,63.462 +203446,93.77,61.914 +203447,95.287,60.337 +203448,96.942,58.73 +203449,90.999,63.47 +203450,92.439,61.934 +203451,94,60.369 +203452,95.703,58.775 +203453,89.627,63.476 +203454,91.108,61.953 +203455,92.714,60.401 +203456,94.463,58.821 +203457,88.256,63.481 +203458,89.778,61.972 +203459,91.426,60.434 +203460,93.222,58.868 +203461,86.887,63.485 +203462,88.449,61.99 +203463,90.139,60.467 +203464,91.979,58.916 +203465,85.518,63.488 +203466,87.119,62.008 +203467,88.851,60.501 +203468,90.734,58.966 +203469,84.151,63.489 +203470,85.79,62.026 +203471,87.562,60.535 +203472,89.489,59.017 +203473,82.785,63.489 +203474,84.462,62.043 +203475,86.273,60.57 +203476,88.241,59.069 +203477,81.42,63.488 +203478,83.134,62.06 +203479,84.983,60.604 +203480,86.992,59.122 +203481,80.057,63.486 +203482,81.806,62.076 +203483,83.693,60.64 +203484,85.742,59.176 +203485,78.695,63.483 +203486,80.479,62.092 +203487,82.402,60.675 +203488,84.49,59.232 +203489,77.334,63.479 +203490,79.152,62.108 +203491,81.111,60.711 +203492,83.236,59.288 +203493,75.975,63.474 +203494,77.826,62.123 +203495,79.819,60.747 +203496,81.98,59.346 +203497,74.616,63.467 +203498,76.5,62.138 +203499,78.527,60.784 +203500,80.723,59.405 +203501,73.26,63.46 +203502,75.175,62.152 +203503,77.234,60.821 +203504,79.464,59.465 +203505,71.904,63.451 +203506,73.85,62.166 +203507,75.941,60.858 +203508,78.203,59.526 +203509,70.551,63.442 +203510,72.525,62.18 +203511,74.647,60.896 +203512,76.941,59.587 +203513,69.198,63.431 +203514,71.201,62.194 +203515,73.352,60.934 +203516,75.676,59.65 +203517,67.847,63.419 +203518,69.878,62.207 +203519,72.057,60.972 +203520,74.41,59.714 +203521,66.498,63.407 +203522,68.555,62.219 +203523,70.761,61.01 +203524,73.142,59.779 +203525,65.15,63.394 +203526,67.233,62.232 +203527,69.465,61.049 +203528,71.872,59.845 +203529,63.804,63.379 +203530,65.911,62.244 +203531,68.167,61.088 +203532,70.6,59.911 +203533,62.459,63.364 +203534,64.59,62.256 +203535,66.87,61.128 +203536,69.326,59.979 +203537,61.116,63.348 +203538,63.269,62.267 +203539,65.571,61.168 +203540,68.05,60.047 +203541,59.774,63.331 +203542,61.949,62.278 +203543,64.272,61.207 +203544,66.772,60.117 +203545,58.434,63.313 +203546,60.629,62.289 +203547,62.973,61.248 +203548,65.492,60.187 +203549,57.096,63.294 +203550,59.31,62.3 +203551,61.673,61.288 +203552,64.211,60.258 +203553,55.759,63.275 +203554,57.991,62.31 +203555,60.372,61.329 +203556,62.927,60.329 +203557,54.424,63.254 +203558,56.673,62.32 +203559,59.07,61.37 +203560,61.641,60.402 +203561,53.09,63.233 +203562,55.356,62.33 +203563,57.768,61.411 +203564,60.353,60.475 +203565,51.758,63.212 +203566,54.039,62.34 +203567,56.465,61.452 +203568,59.063,60.548 +203569,50.428,63.189 +203570,52.722,62.349 +203571,55.162,61.494 +203572,57.771,60.623 +203573,49.1,63.166 +203574,51.407,62.358 +203575,53.857,61.536 +203576,56.477,60.698 +203577,47.773,63.142 +203578,50.092,62.367 +203579,52.552,61.578 +203580,55.181,60.773 +203581,46.448,63.118 +203582,48.777,62.376 +203583,51.247,61.62 +203584,53.883,60.85 +203585,45.125,63.093 +203586,47.463,62.384 +203587,49.941,61.662 +203588,52.583,60.926 +203589,43.804,63.068 +203590,46.15,62.392 +203591,48.634,61.705 +203592,51.281,61.004 +203593,42.484,63.042 +203594,44.837,62.401 +203595,47.326,61.748 +203596,49.977,61.081 +203597,41.166,63.015 +203598,43.525,62.408 +203599,46.018,61.79 +203600,48.67,61.159 +203601,39.85,62.988 +203602,42.213,62.416 +203603,44.709,61.833 +203604,47.362,61.238 +203605,38.535,62.961 +203606,40.902,62.424 +203607,43.4,61.876 +203608,46.051,61.317 +203609,37.223,62.933 +203610,39.591,62.431 +203611,42.089,61.92 +203612,44.739,61.396 +203613,35.912,62.904 +203614,38.281,62.438 +203615,40.778,61.963 +203616,43.424,61.476 +203617,34.602,62.876 +203618,36.972,62.446 +203619,39.467,62.006 +203620,42.108,61.556 +203621,33.295,62.847 +203622,35.664,62.453 +203623,38.155,62.05 +203624,40.789,61.636 +203625,31.99,62.817 +203626,34.355,62.46 +203627,36.842,62.093 +203628,39.469,61.717 +203629,30.686,62.788 +203630,33.048,62.466 +203631,35.528,62.137 +203632,38.146,61.798 +203633,29.384,62.758 +203634,31.741,62.473 +203635,34.214,62.181 +203636,36.822,61.879 +203637,28.083,62.728 +203638,30.435,62.48 +203639,32.899,62.224 +203640,35.495,61.96 +203641,26.785,62.698 +203642,29.129,62.486 +203643,31.583,62.268 +203644,34.167,62.041 +203645,25.488,62.667 +203646,27.824,62.493 +203647,30.267,62.312 +203648,32.836,62.122 +203649,24.193,62.637 +203650,26.519,62.499 +203651,28.95,62.356 +203652,31.504,62.204 +203653,22.9,62.606 +203654,25.215,62.506 +203655,27.633,62.399 +203656,30.169,62.285 +203657,21.609,62.575 +203658,23.912,62.512 +203659,26.315,62.443 +203660,28.833,62.366 +203661,20.319,62.544 +203662,22.609,62.519 +203663,24.996,62.487 +203664,27.495,62.448 +203665,19.031,62.514 +203666,21.307,62.525 +203667,23.676,62.531 +203668,26.155,62.529 +203669,17.745,62.483 +203670,20.005,62.531 +203671,22.356,62.574 +203672,24.813,62.61 +203673,16.461,62.452 +203674,18.704,62.538 +203675,21.036,62.618 +203676,23.47,62.691 +203677,15.178,62.421 +203678,17.404,62.544 +203679,19.714,62.662 +203680,22.124,62.772 +203681,13.897,62.391 +203682,16.104,62.551 +203683,18.393,62.705 +203684,20.777,62.853 +203685,12.618,62.36 +203686,14.804,62.557 +203687,17.07,62.749 +203688,19.429,62.934 +203689,11.341,62.33 +203690,13.505,62.564 +203691,15.747,62.792 +203692,18.078,63.014 +203693,10.065,62.3 +203694,12.207,62.57 +203695,14.423,62.835 +203696,16.726,63.094 +203697,8.7906,62.27 +203698,10.909,62.577 +203699,13.099,62.879 +203700,15.372,63.174 +203701,7.518,62.24 +203702,9.6116,62.583 +203703,11.774,62.922 +203704,14.016,63.253 +203705,6.2471,62.211 +203706,8.3148,62.59 +203707,10.449,62.965 +203708,12.659,63.332 +203709,4.9778,62.182 +203710,7.0185,62.597 +203711,9.1229,63.008 +203712,11.3,63.411 +203713,3.7101,62.153 +203714,5.7227,62.604 +203715,7.7964,63.05 +203716,9.94,63.489 +203717,2.444,62.125 +203718,4.4275,62.611 +203719,6.4693,63.093 +203720,8.5782,63.567 +203721,1.1795,62.097 +203722,3.1327,62.619 +203723,5.1418,63.135 +203724,7.2149,63.644 +203725,359.92,62.069 +203726,1.8384,62.626 +203727,3.8137,63.177 +203728,5.8502,63.721 +203729,358.66,62.042 +203730,0.54453,62.634 +203731,2.4851,63.219 +203732,4.484,63.798 +203733,357.4,62.015 +203734,359.25,62.641 +203735,1.156,63.261 +203736,3.1165,63.873 +203737,356.14,61.989 +203738,357.96,62.649 +203739,359.83,63.303 +203740,1.7476,63.949 +203741,354.88,61.964 +203742,356.67,62.657 +203743,358.5,63.344 +203744,0.37736,64.023 +203745,353.62,61.939 +203746,355.37,62.665 +203747,357.17,63.385 +203748,359.01,64.097 +203749,352.37,61.914 +203750,354.08,62.674 +203751,355.83,63.426 +203752,357.63,64.171 +203753,351.12,61.89 +203754,352.79,62.682 +203755,354.5,63.467 +203756,356.26,64.243 +203757,349.87,61.867 +203758,351.5,62.691 +203759,353.17,63.508 +203760,354.88,64.315 +203761,348.62,61.845 +203762,350.21,62.7 +203763,351.84,63.548 +203764,353.51,64.387 +203765,347.37,61.823 +203766,348.92,62.709 +203767,350.51,63.588 +203768,352.13,64.457 +203769,346.12,61.802 +203770,347.63,62.719 +203771,349.17,63.628 +203772,350.75,64.527 +203773,344.87,61.781 +203774,346.34,62.729 +203775,347.84,63.667 +203776,349.37,64.596 +203777,343.63,61.762 +203778,345.05,62.739 +203779,346.51,63.707 +203780,347.99,64.664 +203781,342.38,61.743 +203782,343.76,62.749 +203783,345.17,63.745 +203784,346.61,64.731 +203785,341.14,61.725 +203786,342.48,62.759 +203787,343.84,63.784 +203788,345.23,64.798 +203789,339.9,61.708 +203790,341.19,62.77 +203791,342.5,63.822 +203792,343.84,64.863 +203793,338.66,61.691 +203794,339.9,62.781 +203795,341.17,63.86 +203796,342.46,64.928 +203797,337.42,61.676 +203798,338.61,62.792 +203799,339.83,63.898 +203800,341.08,64.992 +203801,336.18,61.662 +203802,337.33,62.804 +203803,338.5,63.935 +203804,339.69,65.054 +203805,334.94,61.648 +203806,336.04,62.816 +203807,337.16,63.973 +203808,338.3,65.116 +203809,333.71,61.635 +203810,334.75,62.828 +203811,335.82,64.009 +203812,336.92,65.177 +203813,332.47,61.624 +203814,333.47,62.841 +203815,334.49,64.046 +203816,335.53,65.237 +203817,331.24,61.613 +203818,332.18,62.854 +203819,333.15,64.082 +203820,334.14,65.296 +203821,330,61.603 +203822,330.9,62.867 +203823,331.81,64.117 +203824,332.75,65.353 +203825,328.77,61.595 +203826,329.61,62.88 +203827,330.47,64.153 +203828,331.36,65.41 +203829,327.54,61.587 +203830,328.32,62.894 +203831,329.14,64.188 +203832,329.97,65.466 +203833,326.3,61.58 +203834,327.04,62.908 +203835,327.8,64.222 +203836,328.58,65.521 +203837,325.07,61.575 +203838,325.75,62.923 +203839,326.46,64.256 +203840,327.19,65.574 +203841,323.84,61.57 +203842,324.47,62.938 +203843,325.12,64.29 +203844,325.8,65.626 +203845,322.61,61.567 +203846,323.19,62.953 +203847,323.78,64.324 +203848,324.41,65.678 +203849,321.38,61.565 +203850,321.9,62.969 +203851,322.44,64.357 +203852,323.01,65.728 +203853,320.15,61.564 +203854,320.62,62.985 +203855,321.11,64.389 +203856,321.62,65.777 +203857,318.92,61.564 +203858,319.33,63.001 +203859,319.77,64.421 +203860,320.23,65.825 +203861,317.7,61.565 +203862,318.05,63.018 +203863,318.43,64.453 +203864,318.84,65.871 +203865,316.47,61.568 +203866,316.76,63.035 +203867,317.09,64.485 +203868,317.44,65.917 +203869,315.24,61.571 +203870,315.48,63.052 +203871,315.75,64.516 +203872,316.05,65.961 +203873,314.01,61.576 +203874,314.2,63.07 +203875,314.41,64.546 +203876,314.66,66.004 +203877,312.79,61.582 +203878,312.91,63.088 +203879,313.07,64.577 +203880,313.26,66.046 +203881,311.56,61.59 +203882,311.63,63.107 +203883,311.73,64.606 +203884,311.87,66.087 +203885,310.33,61.598 +203886,310.34,63.126 +203887,310.39,64.636 +203888,310.48,66.126 +203889,309.11,61.608 +203890,309.06,63.145 +203891,309.05,64.665 +203892,309.08,66.165 +203893,307.88,61.619 +203894,307.78,63.165 +203895,307.71,64.693 +203896,307.69,66.202 +203897,306.65,61.631 +203898,306.49,63.186 +203899,306.37,64.721 +203900,306.3,66.237 +203901,305.43,61.644 +203902,305.21,63.206 +203903,305.04,64.749 +203904,304.9,66.272 +203905,304.2,61.659 +203906,303.92,63.227 +203907,303.7,64.776 +203908,303.51,66.305 +203909,302.97,61.675 +203910,302.64,63.249 +203911,302.36,64.803 +203912,302.12,66.337 +203913,301.75,61.692 +203914,301.36,63.271 +203915,301.02,64.829 +203916,300.73,66.368 +203917,300.52,61.711 +203918,300.07,63.293 +203919,299.68,64.855 +203920,299.34,66.397 +203921,299.29,61.731 +203922,298.79,63.316 +203923,298.34,64.881 +203924,297.95,66.426 +203925,298.06,61.752 +203926,297.5,63.339 +203927,297,64.906 +203928,296.55,66.453 +203929,296.84,61.774 +203930,296.22,63.362 +203931,295.66,64.931 +203932,295.16,66.478 +203933,295.61,61.798 +203934,294.93,63.386 +203935,294.32,64.955 +203936,293.77,66.503 +203937,294.38,61.823 +203938,293.65,63.411 +203939,292.98,64.979 +203940,292.38,66.526 +203941,293.15,61.849 +203942,292.36,63.435 +203943,291.65,65.002 +203944,291,66.548 +203945,291.92,61.876 +203946,291.08,63.461 +203947,290.31,65.025 +203948,289.61,66.569 +203949,290.69,61.905 +203950,289.79,63.486 +203951,288.97,65.047 +203952,288.22,66.588 +203953,289.45,61.935 +203954,288.5,63.512 +203955,287.63,65.069 +203956,286.83,66.606 +203957,288.22,61.966 +203958,287.22,63.539 +203959,286.3,65.091 +203960,285.45,66.623 +203961,286.99,61.999 +203962,285.93,63.565 +203963,284.96,65.112 +203964,284.06,66.639 +203965,285.76,62.033 +203966,284.64,63.593 +203967,283.62,65.133 +203968,282.68,66.653 +203969,284.52,62.068 +203970,283.36,63.62 +203971,282.28,65.153 +203972,281.29,66.666 +203973,283.29,62.104 +203974,282.07,63.648 +203975,280.95,65.173 +203976,279.91,66.678 +203977,282.05,62.141 +203978,280.78,63.677 +203979,279.61,65.193 +203980,278.53,66.689 +203981,280.81,62.18 +203982,279.49,63.705 +203983,278.28,65.212 +203984,277.14,66.699 +203985,279.57,62.22 +203986,278.21,63.735 +203987,276.94,65.23 +203988,275.76,66.707 +203989,278.33,62.261 +203990,276.92,63.764 +203991,275.6,65.249 +203992,274.38,66.714 +203993,277.09,62.304 +203994,275.63,63.794 +203995,274.27,65.266 +203996,273,66.72 +203997,275.85,62.347 +203998,274.34,63.824 +203999,272.93,65.284 +204000,271.63,66.725 +204001,274.61,62.392 +204002,273.05,63.855 +204003,271.6,65.301 +204004,270.25,66.728 +204005,273.36,62.438 +204006,271.76,63.886 +204007,270.27,65.318 +204008,268.87,66.731 +204009,272.12,62.485 +204010,270.47,63.918 +204011,268.93,65.334 +204012,267.5,66.732 +204013,270.87,62.533 +204014,269.18,63.95 +204015,267.6,65.35 +204016,266.13,66.732 +204017,269.62,62.582 +204018,267.88,63.982 +204019,266.27,65.365 +204020,264.75,66.732 +204021,268.37,62.633 +204022,266.59,64.014 +204023,264.93,65.38 +204024,263.38,66.73 +204025,267.12,62.684 +204026,265.3,64.047 +204027,263.6,65.395 +204028,262.01,66.726 +204029,265.87,62.737 +204030,264.01,64.081 +204031,262.27,65.409 +204032,260.64,66.722 +204033,264.62,62.79 +204034,262.71,64.114 +204035,260.94,65.423 +204036,259.28,66.717 +204037,263.36,62.845 +204038,261.42,64.148 +204039,259.61,65.437 +204040,257.91,66.711 +204041,262.11,62.9 +204042,260.12,64.182 +204043,258.28,65.45 +204044,256.54,66.703 +204045,260.85,62.957 +204046,258.83,64.217 +204047,256.95,65.463 +204048,255.18,66.695 +204049,259.59,63.015 +204050,257.53,64.252 +204051,255.62,65.476 +204052,253.82,66.686 +204053,258.33,63.073 +204054,256.24,64.287 +204055,254.29,65.488 +204056,252.46,66.676 +204057,257.06,63.133 +204058,254.94,64.323 +204059,252.96,65.5 +204060,251.1,66.664 +204061,255.8,63.193 +204062,253.64,64.358 +204063,251.63,65.512 +204064,249.74,66.652 +204065,254.53,63.255 +204066,252.35,64.394 +204067,250.3,65.523 +204068,248.38,66.639 +204069,253.26,63.317 +204070,251.05,64.431 +204071,248.97,65.534 +204072,247.03,66.625 +204073,251.99,63.38 +204074,249.75,64.467 +204075,247.65,65.544 +204076,245.67,66.61 +204077,250.72,63.444 +204078,248.45,64.504 +204079,246.32,65.555 +204080,244.32,66.594 +204081,249.45,63.509 +204082,247.15,64.542 +204083,245,65.565 +204084,242.97,66.578 +204085,248.17,63.574 +204086,245.85,64.579 +204087,243.67,65.575 +204088,241.62,66.56 +204089,246.9,63.64 +204090,244.55,64.617 +204091,242.35,65.584 +204092,240.27,66.542 +204093,245.62,63.707 +204094,243.25,64.655 +204095,241.02,65.594 +204096,238.93,66.523 +204097,244.34,63.775 +204098,241.94,64.693 +204099,239.7,65.603 +204100,237.58,66.504 +204101,243.05,63.844 +204102,240.64,64.731 +204103,238.38,65.611 +204104,236.24,66.483 +204105,241.77,63.913 +204106,239.34,64.77 +204107,237.05,65.62 +204108,234.9,66.462 +204109,240.48,63.982 +204110,238.03,64.809 +204111,235.73,65.628 +204112,233.56,66.44 +204113,239.2,64.053 +204114,236.73,64.848 +204115,234.41,65.636 +204116,232.22,66.418 +204117,237.9,64.124 +204118,235.42,64.887 +204119,233.09,65.644 +204120,230.88,66.395 +204121,236.61,64.195 +204122,234.12,64.926 +204123,231.77,65.652 +204124,229.55,66.371 +204125,235.32,64.267 +204126,232.81,64.966 +204127,230.45,65.659 +204128,228.21,66.347 +204129,234.02,64.34 +204130,231.5,65.006 +204131,229.13,65.666 +204132,226.88,66.322 +204133,232.72,64.413 +204134,230.19,65.046 +204135,227.81,65.673 +204136,225.55,66.296 +204137,231.42,64.486 +204138,228.89,65.086 +204139,226.49,65.68 +204140,224.22,66.27 +204141,230.12,64.56 +204142,227.58,65.126 +204143,225.18,65.687 +204144,222.9,66.244 +204145,228.82,64.635 +204146,226.27,65.166 +204147,223.86,65.694 +204148,221.57,66.217 +204149,227.51,64.709 +204150,224.96,65.206 +204151,222.54,65.7 +204152,220.25,66.19 +204153,226.2,64.784 +204154,223.65,65.247 +204155,221.23,65.706 +204156,218.93,66.162 +204157,224.89,64.86 +204158,222.33,65.288 +204159,219.91,65.712 +204160,217.61,66.134 +204161,223.58,64.935 +204162,221.02,65.328 +204163,218.6,65.718 +204164,216.29,66.106 +204165,222.27,65.011 +204166,219.71,65.369 +204167,217.28,65.724 +204168,214.97,66.077 +204169,220.95,65.087 +204170,218.39,65.41 +204171,215.97,65.73 +204172,213.66,66.048 +204173,219.63,65.164 +204174,217.08,65.451 +204175,214.66,65.736 +204176,212.35,66.019 +204177,218.31,65.24 +204178,215.76,65.492 +204179,213.34,65.742 +204180,211.03,65.99 +204181,216.99,65.317 +204182,214.45,65.533 +204183,212.03,65.747 +204184,209.72,65.96 +204185,215.67,65.394 +204186,213.13,65.574 +204187,210.72,65.753 +204188,208.42,65.93 +204189,214.34,65.471 +204190,211.82,65.615 +204191,209.41,65.758 +204192,207.11,65.9 +204193,213.02,65.547 +204194,210.5,65.656 +204195,208.1,65.764 +204196,205.81,65.87 +204197,211.69,65.624 +204198,209.18,65.697 +204199,206.79,65.769 +204200,204.51,65.84 +204201,210.35,65.701 +204202,207.86,65.738 +204203,205.48,65.774 +204204,203.2,65.81 +204205,209.02,65.778 +204206,206.54,65.78 +204207,204.17,65.78 +204208,201.91,65.78 +204209,207.69,65.855 +204210,205.22,65.821 +204211,202.87,65.785 +204212,200.61,65.749 +204213,206.35,65.932 +204214,203.9,65.862 +204215,201.56,65.79 +204216,199.31,65.719 +204217,205.01,66.008 +204218,202.58,65.903 +204219,200.25,65.796 +204220,198.02,65.689 +204221,203.67,66.085 +204222,201.26,65.944 +204223,198.95,65.801 +204224,196.73,65.659 +204225,202.33,66.161 +204226,199.93,65.984 +204227,197.64,65.807 +204228,195.44,65.629 +204229,200.98,66.237 +204230,198.61,66.025 +204231,196.34,65.812 +204232,194.15,65.599 +204233,199.64,66.313 +204234,197.29,66.066 +204235,195.03,65.818 +204236,192.86,65.569 +204237,198.29,66.389 +204238,195.96,66.107 +204239,193.73,65.823 +204240,191.58,65.54 +204241,196.94,66.464 +204242,194.64,66.147 +204243,192.43,65.829 +204244,190.29,65.51 +204245,195.59,66.539 +204246,193.31,66.188 +204247,191.12,65.835 +204248,189.01,65.481 +204249,194.24,66.614 +204250,191.99,66.228 +204251,189.82,65.841 +204252,187.73,65.453 +204253,192.88,66.688 +204254,190.66,66.268 +204255,188.52,65.846 +204256,186.45,65.424 +204257,191.53,66.762 +204258,189.33,66.308 +204259,187.22,65.853 +204260,185.17,65.396 +204261,190.17,66.835 +204262,188.01,66.348 +204263,185.92,65.859 +204264,183.9,65.368 +204265,188.81,66.908 +204266,186.68,66.388 +204267,184.62,65.865 +204268,182.63,65.341 +204269,187.45,66.981 +204270,185.35,66.427 +204271,183.32,65.871 +204272,181.35,65.314 +204273,186.09,67.053 +204274,184.02,66.467 +204275,182.02,65.878 +204276,180.08,65.288 +204277,184.72,67.124 +204278,182.69,66.506 +204279,180.72,65.885 +204280,178.81,65.262 +204281,183.36,67.195 +204282,181.36,66.545 +204283,179.42,65.892 +204284,177.55,65.236 +204285,181.99,67.266 +204286,180.03,66.584 +204287,178.13,65.899 +204288,176.28,65.211 +204289,180.62,67.335 +204290,178.7,66.623 +204291,176.83,65.906 +204292,175.01,65.187 +204293,179.25,67.405 +204294,177.36,66.661 +204295,175.53,65.913 +204296,173.75,65.163 +204297,177.88,67.473 +204298,176.03,66.699 +204299,174.24,65.921 +204300,172.49,65.14 +204301,176.51,67.541 +204302,174.7,66.737 +204303,172.94,65.929 +204304,171.23,65.117 +204305,175.14,67.608 +204306,173.37,66.775 +204307,171.65,65.937 +204308,169.97,65.095 +204309,173.76,67.675 +204310,172.03,66.813 +204311,170.35,65.945 +204312,168.71,65.074 +204313,172.39,67.74 +204314,170.7,66.85 +204315,169.06,65.954 +204316,167.45,65.053 +204317,171.01,67.805 +204318,169.36,66.887 +204319,167.76,65.962 +204320,166.2,65.034 +204321,169.63,67.869 +204322,168.03,66.924 +204323,166.47,65.971 +204324,164.94,65.014 +204325,168.25,67.933 +204326,166.69,66.96 +204327,165.17,65.981 +204328,163.69,64.996 +204329,166.87,67.995 +204330,165.36,66.996 +204331,163.88,65.99 +204332,162.44,64.979 +204333,165.49,68.057 +204334,164.02,67.032 +204335,162.59,66 +204336,161.19,64.962 +204337,164.11,68.118 +204338,162.69,67.068 +204339,161.3,66.01 +204340,159.94,64.946 +204341,162.73,68.177 +204342,161.35,67.103 +204343,160,66.02 +204344,158.69,64.931 +204345,161.34,68.236 +204346,160.01,67.138 +204347,158.71,66.031 +204348,157.45,64.917 +204349,159.96,68.295 +204350,158.67,67.173 +204351,157.42,66.042 +204352,156.2,64.904 +204353,158.57,68.352 +204354,157.34,67.207 +204355,156.13,66.053 +204356,154.95,64.891 +204357,157.19,68.408 +204358,156,67.241 +204359,154.84,66.064 +204360,153.71,64.88 +204361,155.8,68.463 +204362,154.66,67.275 +204363,153.55,66.076 +204364,152.47,64.87 +204365,154.41,68.517 +204366,153.32,67.308 +204367,152.26,66.088 +204368,151.22,64.86 +204369,153.02,68.571 +204370,151.98,67.341 +204371,150.97,66.101 +204372,149.98,64.852 +204373,151.64,68.623 +204374,150.64,67.374 +204375,149.68,66.114 +204376,148.74,64.845 +204377,150.25,68.674 +204378,149.3,67.406 +204379,148.39,66.127 +204380,147.5,64.838 +204381,148.86,68.724 +204382,147.96,67.438 +204383,147.1,66.14 +204384,146.26,64.833 +204385,147.46,68.773 +204386,146.63,67.469 +204387,145.81,66.154 +204388,145.02,64.829 +204389,146.07,68.821 +204390,145.29,67.501 +204391,144.52,66.168 +204392,143.79,64.825 +204393,144.68,68.868 +204394,143.94,67.531 +204395,143.23,66.183 +204396,142.55,64.823 +204397,143.29,68.914 +204398,142.6,67.562 +204399,141.95,66.198 +204400,141.31,64.822 +204401,141.9,68.958 +204402,141.26,67.592 +204403,140.66,66.213 +204404,140.08,64.823 +204405,140.5,69.002 +204406,139.92,67.622 +204407,139.37,66.229 +204408,138.84,64.824 +204409,139.11,69.044 +204410,138.58,67.651 +204411,138.08,66.245 +204412,137.61,64.826 +204413,137.72,69.085 +204414,137.24,67.68 +204415,136.79,66.261 +204416,136.37,64.83 +204417,136.32,69.126 +204418,135.9,67.708 +204419,135.51,66.278 +204420,135.14,64.835 +204421,134.93,69.165 +204422,134.56,67.737 +204423,134.22,66.295 +204424,133.91,64.84 +204425,133.54,69.202 +204426,133.22,67.764 +204427,132.93,66.312 +204428,132.67,64.848 +204429,132.14,69.239 +204430,131.88,67.792 +204431,131.64,66.33 +204432,131.44,64.856 +204433,130.75,69.274 +204434,130.54,67.819 +204435,130.35,66.348 +204436,130.21,64.865 +204437,129.35,69.309 +204438,129.19,67.845 +204439,129.07,66.367 +204440,128.97,64.876 +204441,127.96,69.342 +204442,127.85,67.871 +204443,127.78,66.386 +204444,127.74,64.888 +204445,126.57,69.373 +204446,126.51,67.897 +204447,126.49,66.406 +204448,126.51,64.901 +204449,125.17,69.404 +204450,125.17,67.922 +204451,125.2,66.425 +204452,125.28,64.915 +204453,123.78,69.434 +204454,123.83,67.947 +204455,123.92,66.446 +204456,124.04,64.931 +204457,122.38,69.462 +204458,122.49,67.972 +204459,122.63,66.466 +204460,122.81,64.948 +204461,120.99,69.489 +204462,121.15,67.996 +204463,121.34,66.487 +204464,121.58,64.966 +204465,119.6,69.515 +204466,119.8,68.019 +204467,120.05,66.509 +204468,120.35,64.985 +204469,118.2,69.539 +204470,118.46,68.042 +204471,118.77,66.531 +204472,119.11,65.005 +204473,116.81,69.563 +204474,117.12,68.065 +204475,117.48,66.553 +204476,117.88,65.027 +204477,115.42,69.585 +204478,115.78,68.088 +204479,116.19,66.576 +204480,116.65,65.05 +204481,114.03,69.606 +204482,114.44,68.11 +204483,114.9,66.599 +204484,115.41,65.074 +204485,112.63,69.625 +204486,113.1,68.131 +204487,113.61,66.622 +204488,114.18,65.1 +204489,111.24,69.644 +204490,111.76,68.152 +204491,112.32,66.646 +204492,112.94,65.126 +204493,109.85,69.661 +204494,110.42,68.173 +204495,111.04,66.67 +204496,111.71,65.154 +204497,108.46,69.677 +204498,109.08,68.193 +204499,109.75,66.695 +204500,110.47,65.183 +204501,107.07,69.692 +204502,107.74,68.213 +204503,108.46,66.72 +204504,109.24,65.214 +204505,105.68,69.706 +204506,106.4,68.233 +204507,107.17,66.745 +204508,108,65.245 +204509,104.3,69.718 +204510,105.06,68.252 +204511,105.88,66.771 +204512,106.76,65.278 +204513,102.91,69.73 +204514,103.72,68.271 +204515,104.59,66.798 +204516,105.53,65.312 +204517,101.52,69.74 +204518,102.38,68.289 +204519,103.3,66.824 +204520,104.29,65.347 +204521,100.14,69.749 +204522,101.04,68.307 +204523,102.01,66.851 +204524,103.05,65.384 +204525,98.75,69.757 +204526,99.7,68.324 +204527,100.72,66.879 +204528,101.81,65.421 +204529,97.365,69.763 +204530,98.361,68.341 +204531,99.427,66.906 +204532,100.57,65.46 +204533,95.981,69.769 +204534,97.023,68.358 +204535,98.136,66.935 +204536,99.328,65.5 +204537,94.598,69.773 +204538,95.685,68.374 +204539,96.845,66.963 +204540,98.085,65.541 +204541,93.216,69.777 +204542,94.347,68.39 +204543,95.553,66.992 +204544,96.842,65.583 +204545,91.834,69.779 +204546,93.009,68.406 +204547,94.261,67.021 +204548,95.598,65.626 +204549,90.454,69.78 +204550,91.672,68.421 +204551,92.968,67.051 +204552,94.352,65.671 +204553,89.075,69.78 +204554,90.335,68.436 +204555,91.676,67.081 +204556,93.106,65.716 +204557,87.696,69.779 +204558,88.998,68.45 +204559,90.382,67.111 +204560,91.858,65.763 +204561,86.319,69.776 +204562,87.662,68.464 +204563,89.089,67.142 +204564,90.61,65.811 +204565,84.943,69.773 +204566,86.326,68.478 +204567,87.795,67.173 +204568,89.36,65.86 +204569,83.568,69.769 +204570,84.99,68.491 +204571,86.501,67.205 +204572,88.109,65.909 +204573,82.194,69.763 +204574,83.655,68.504 +204575,85.206,67.236 +204576,86.856,65.96 +204577,80.821,69.757 +204578,82.32,68.517 +204579,83.911,67.268 +204580,85.603,66.012 +204581,79.449,69.75 +204582,80.986,68.529 +204583,82.615,67.301 +204584,84.348,66.065 +204585,78.079,69.741 +204586,79.652,68.541 +204587,81.319,67.333 +204588,83.092,66.119 +204589,76.709,69.732 +204590,78.318,68.553 +204591,80.022,67.367 +204592,81.834,66.174 +204593,75.341,69.722 +204594,76.985,68.564 +204595,78.725,67.4 +204596,80.575,66.23 +204597,73.974,69.711 +204598,75.652,68.575 +204599,77.428,67.434 +204600,79.315,66.286 +204601,72.609,69.698 +204602,74.32,68.586 +204603,76.13,67.467 +204604,78.053,66.344 +204605,71.245,69.685 +204606,72.988,68.597 +204607,74.832,67.502 +204608,76.789,66.403 +204609,69.882,69.671 +204610,71.656,68.607 +204611,73.533,67.536 +204612,75.524,66.462 +204613,68.52,69.657 +204614,70.325,68.616 +204615,72.233,67.571 +204616,74.258,66.522 +204617,67.16,69.641 +204618,68.995,68.626 +204619,70.933,67.606 +204620,72.99,66.583 +204621,65.801,69.625 +204622,67.665,68.635 +204623,69.633,67.641 +204624,71.72,66.645 +204625,64.444,69.607 +204626,66.335,68.644 +204627,68.332,67.677 +204628,70.449,66.708 +204629,63.088,69.589 +204630,65.006,68.653 +204631,67.03,67.713 +204632,69.176,66.771 +204633,61.734,69.571 +204634,63.677,68.661 +204635,65.728,67.749 +204636,67.901,66.835 +204637,60.381,69.551 +204638,62.349,68.669 +204639,64.426,67.785 +204640,66.625,66.9 +204641,59.029,69.531 +204642,61.021,68.677 +204643,63.122,67.822 +204644,65.347,66.966 +204645,57.679,69.51 +204646,59.694,68.685 +204647,61.819,67.859 +204648,64.067,67.032 +204649,56.331,69.489 +204650,58.368,68.693 +204651,60.514,67.896 +204652,62.786,67.099 +204653,54.984,69.466 +204654,57.042,68.7 +204655,59.209,67.933 +204656,61.502,67.166 +204657,53.639,69.443 +204658,55.716,68.707 +204659,57.904,67.97 +204660,60.217,67.234 +204661,52.295,69.42 +204662,54.391,68.714 +204663,56.598,68.008 +204664,58.93,67.303 +204665,50.953,69.396 +204666,53.067,68.721 +204667,55.291,68.045 +204668,57.642,67.372 +204669,49.612,69.371 +204670,51.743,68.727 +204671,53.984,68.083 +204672,56.351,67.442 +204673,48.273,69.346 +204674,50.419,68.733 +204675,52.676,68.121 +204676,55.059,67.512 +204677,46.936,69.321 +204678,49.097,68.739 +204679,51.367,68.16 +204680,53.765,67.582 +204681,45.6,69.295 +204682,47.774,68.745 +204683,50.058,68.198 +204684,52.468,67.653 +204685,44.266,69.268 +204686,46.453,68.751 +204687,48.748,68.236 +204688,51.171,67.725 +204689,42.934,69.241 +204690,45.131,68.757 +204691,47.438,68.275 +204692,49.871,67.797 +204693,41.603,69.214 +204694,43.811,68.763 +204695,46.127,68.314 +204696,48.569,67.869 +204697,40.274,69.186 +204698,42.491,68.768 +204699,44.816,68.353 +204700,47.265,67.941 +204701,38.947,69.158 +204702,41.171,68.773 +204703,43.503,68.392 +204704,45.96,68.014 +204705,37.621,69.13 +204706,39.852,68.778 +204707,42.191,68.431 +204708,44.652,68.087 +204709,36.297,69.101 +204710,38.534,68.784 +204711,40.877,68.47 +204712,43.343,68.161 +204713,34.975,69.072 +204714,37.216,68.789 +204715,39.563,68.509 +204716,42.032,68.234 +204717,33.654,69.043 +204718,35.899,68.794 +204719,38.248,68.548 +204720,40.719,68.308 +204721,32.335,69.014 +204722,34.582,68.798 +204723,36.933,68.588 +204724,39.404,68.382 +204725,31.018,68.984 +204726,33.266,68.803 +204727,35.617,68.627 +204728,38.087,68.456 +204729,29.702,68.954 +204730,31.951,68.808 +204731,34.301,68.666 +204732,36.768,68.53 +204733,28.389,68.925 +204734,30.636,68.813 +204735,32.984,68.706 +204736,35.447,68.604 +204737,27.076,68.895 +204738,29.322,68.817 +204739,31.666,68.745 +204740,34.125,68.678 +204741,25.766,68.865 +204742,28.008,68.822 +204743,30.347,68.785 +204744,32.8,68.752 +204745,24.457,68.835 +204746,26.695,68.827 +204747,29.028,68.824 +204748,31.474,68.827 +204749,23.15,68.805 +204750,25.382,68.831 +204751,27.709,68.863 +204752,30.146,68.901 +204753,21.845,68.775 +204754,24.07,68.836 +204755,26.388,68.903 +204756,28.815,68.975 +204757,20.541,68.745 +204758,22.759,68.841 +204759,25.068,68.942 +204760,27.484,69.049 +204761,19.239,68.715 +204762,21.448,68.845 +204763,23.746,68.981 +204764,26.15,69.123 +204765,17.939,68.685 +204766,20.137,68.85 +204767,22.424,69.021 +204768,24.814,69.197 +204769,16.641,68.655 +204770,18.827,68.855 +204771,21.101,69.06 +204772,23.477,69.27 +204773,15.344,68.626 +204774,17.518,68.86 +204775,19.778,69.099 +204776,22.138,69.343 +204777,14.048,68.596 +204778,16.209,68.865 +204779,18.454,69.138 +204780,20.797,69.417 +204781,12.755,68.567 +204782,14.901,68.87 +204783,17.13,69.177 +204784,19.454,69.489 +204785,11.463,68.538 +204786,13.594,68.875 +204787,15.805,69.216 +204788,18.11,69.562 +204789,10.173,68.51 +204790,12.287,68.88 +204791,14.479,69.255 +204792,16.764,69.634 +204793,8.8839,68.481 +204794,10.98,68.885 +204795,13.153,69.293 +204796,15.416,69.706 +204797,7.5968,68.453 +204798,9.674,68.89 +204799,11.826,69.332 +204800,14.066,69.778 +204801,6.3113,68.425 +204802,8.3685,68.896 +204803,10.499,69.37 +204804,12.715,69.849 +204805,5.0274,68.398 +204806,7.0635,68.901 +204807,9.1713,69.409 +204808,11.362,69.92 +204809,3.7451,68.371 +204810,5.759,68.907 +204811,7.8429,69.447 +204812,10.008,69.99 +204813,2.4643,68.345 +204814,4.4551,68.913 +204815,6.514,69.485 +204816,8.6519,70.06 +204817,1.1851,68.319 +204818,3.1516,68.919 +204819,5.1845,69.523 +204820,7.2943,70.129 +204821,359.91,68.293 +204822,1.8486,68.925 +204823,3.8545,69.56 +204824,5.9352,70.198 +204825,358.63,68.268 +204826,0.54617,68.931 +204827,2.524,69.598 +204828,4.5746,70.266 +204829,357.36,68.244 +204830,359.24,68.938 +204831,1.193,69.635 +204832,3.2124,70.334 +204833,356.08,68.22 +204834,357.94,68.945 +204835,359.86,69.672 +204836,1.8489,70.401 +204837,354.81,68.196 +204838,356.64,68.952 +204839,358.53,69.709 +204840,0.48383,70.468 +204841,353.54,68.174 +204842,355.34,68.959 +204843,357.2,69.746 +204844,359.12,70.533 +204845,352.27,68.151 +204846,354.04,68.966 +204847,355.86,69.782 +204848,357.75,70.599 +204849,351,68.13 +204850,352.74,68.973 +204851,354.53,69.818 +204852,356.38,70.663 +204853,349.74,68.109 +204854,351.44,68.981 +204855,353.2,69.854 +204856,355.01,70.727 +204857,348.47,68.089 +204858,350.14,68.989 +204859,351.86,69.89 +204860,353.64,70.79 +204861,347.21,68.07 +204862,348.84,68.997 +204863,350.53,69.925 +204864,352.27,70.852 +204865,345.95,68.051 +204866,347.55,69.006 +204867,349.19,69.961 +204868,350.89,70.914 +204869,344.69,68.033 +204870,346.25,69.015 +204871,347.86,69.995 +204872,349.52,70.975 +204873,343.43,68.016 +204874,344.95,69.024 +204875,346.52,70.03 +204876,348.14,71.035 +204877,342.17,68 +204878,343.65,69.033 +204879,345.18,70.065 +204880,346.76,71.094 +204881,340.91,67.984 +204882,342.36,69.042 +204883,343.85,70.099 +204884,345.38,71.152 +204885,339.65,67.97 +204886,341.06,69.052 +204887,342.51,70.132 +204888,344,71.21 +204889,338.4,67.956 +204890,339.77,69.062 +204891,341.17,70.166 +204892,342.62,71.266 +204893,337.15,67.944 +204894,338.47,69.073 +204895,339.83,70.199 +204896,341.24,71.322 +204897,335.89,67.932 +204898,337.18,69.083 +204899,338.5,70.232 +204900,339.86,71.376 +204901,334.64,67.921 +204902,335.88,69.094 +204903,337.16,70.265 +204904,338.47,71.43 +204905,333.39,67.911 +204906,334.59,69.106 +204907,335.82,70.297 +204908,337.09,71.483 +204909,332.14,67.902 +204910,333.29,69.117 +204911,334.48,70.329 +204912,335.7,71.535 +204913,330.89,67.894 +204914,332,69.129 +204915,333.14,70.36 +204916,334.32,71.586 +204917,329.64,67.887 +204918,330.71,69.142 +204919,331.8,70.392 +204920,332.93,71.636 +204921,328.4,67.881 +204922,329.41,69.154 +204923,330.46,70.423 +204924,331.54,71.684 +204925,327.15,67.876 +204926,328.12,69.167 +204927,329.12,70.453 +204928,330.15,71.732 +204929,325.9,67.872 +204930,326.83,69.181 +204931,327.78,70.483 +204932,328.76,71.779 +204933,324.66,67.869 +204934,325.53,69.194 +204935,326.44,70.513 +204936,327.38,71.825 +204937,323.41,67.868 +204938,324.24,69.208 +204939,325.1,70.543 +204940,325.98,71.87 +204941,322.17,67.867 +204942,322.95,69.223 +204943,323.76,70.572 +204944,324.59,71.913 +204945,320.93,67.867 +204946,321.66,69.238 +204947,322.41,70.601 +204948,323.2,71.956 +204949,319.69,67.869 +204950,320.36,69.253 +204951,321.07,70.629 +204952,321.81,71.997 +204953,318.44,67.872 +204954,319.07,69.268 +204955,319.73,70.657 +204956,320.42,72.037 +204957,317.2,67.876 +204958,317.78,69.284 +204959,318.39,70.685 +204960,319.03,72.077 +204961,315.96,67.881 +204962,316.49,69.3 +204963,317.05,70.712 +204964,317.63,72.115 +204965,314.72,67.887 +204966,315.2,69.317 +204967,315.7,70.739 +204968,316.24,72.152 +204969,313.48,67.894 +204970,313.91,69.334 +204971,314.36,70.765 +204972,314.85,72.187 +204973,312.24,67.903 +204974,312.62,69.351 +204975,313.02,70.792 +204976,313.45,72.222 +204977,311,67.912 +204978,311.33,69.369 +204979,311.68,70.817 +204980,312.06,72.255 +204981,309.77,67.923 +204982,310.03,69.387 +204983,310.33,70.843 +204984,310.66,72.288 +204985,308.53,67.935 +204986,308.74,69.406 +204987,308.99,70.868 +204988,309.27,72.319 +204989,307.29,67.949 +204990,307.45,69.425 +204991,307.65,70.892 +204992,307.88,72.349 +204993,306.05,67.963 +204994,306.16,69.444 +204995,306.31,70.916 +204996,306.48,72.378 +204997,304.81,67.979 +204998,304.87,69.464 +204999,304.96,70.94 +205000,305.09,72.405 +205001,303.57,67.996 +205002,303.58,69.484 +205003,303.62,70.963 +205004,303.69,72.432 +205005,302.34,68.014 +205006,302.29,69.505 +205007,302.28,70.986 +205008,302.3,72.457 +205009,301.1,68.033 +205010,301,69.526 +205011,300.93,71.009 +205012,300.9,72.481 +205013,299.86,68.054 +205014,299.71,69.547 +205015,299.59,71.031 +205016,299.51,72.504 +205017,298.62,68.075 +205018,298.42,69.569 +205019,298.25,71.053 +205020,298.12,72.526 +205021,297.39,68.099 +205022,297.13,69.591 +205023,296.91,71.074 +205024,296.72,72.547 +205025,296.15,68.123 +205026,295.83,69.613 +205027,295.56,71.095 +205028,295.33,72.566 +205029,294.91,68.148 +205030,294.54,69.636 +205031,294.22,71.116 +205032,293.93,72.584 +205033,293.67,68.175 +205034,293.25,69.66 +205035,292.88,71.136 +205036,292.54,72.601 +205037,292.43,68.203 +205038,291.96,69.684 +205039,291.53,71.155 +205040,291.15,72.617 +205041,291.19,68.232 +205042,290.67,69.708 +205043,290.19,71.175 +205044,289.76,72.632 +205045,289.95,68.262 +205046,289.38,69.732 +205047,288.85,71.194 +205048,288.37,72.645 +205049,288.71,68.294 +205050,288.09,69.757 +205051,287.51,71.212 +205052,286.97,72.658 +205053,287.47,68.326 +205054,286.79,69.783 +205055,286.17,71.231 +205056,285.58,72.669 +205057,286.23,68.36 +205058,285.5,69.808 +205059,284.82,71.248 +205060,284.19,72.679 +205061,284.99,68.395 +205062,284.21,69.834 +205063,283.48,71.266 +205064,282.8,72.688 +205065,283.75,68.432 +205066,282.92,69.861 +205067,282.14,71.283 +205068,281.41,72.695 +205069,282.51,68.469 +205070,281.62,69.888 +205071,280.8,71.299 +205072,280.03,72.702 +205073,281.26,68.508 +205074,280.33,69.915 +205075,279.46,71.316 +205076,278.64,72.707 +205077,280.02,68.547 +205078,279.04,69.943 +205079,278.12,71.331 +205080,277.25,72.712 +205081,278.77,68.588 +205082,277.74,69.971 +205083,276.78,71.347 +205084,275.87,72.715 +205085,277.53,68.63 +205086,276.45,69.999 +205087,275.44,71.362 +205088,274.48,72.717 +205089,276.28,68.673 +205090,275.16,70.028 +205091,274.1,71.377 +205092,273.1,72.718 +205093,275.03,68.717 +205094,273.86,70.057 +205095,272.76,71.391 +205096,271.71,72.718 +205097,273.79,68.763 +205098,272.57,70.086 +205099,271.42,71.405 +205100,270.33,72.717 +205101,272.54,68.809 +205102,271.27,70.116 +205103,270.08,71.419 +205104,268.95,72.715 +205105,271.29,68.857 +205106,269.98,70.146 +205107,268.74,71.432 +205108,267.57,72.712 +205109,270.04,68.905 +205110,268.68,70.177 +205111,267.4,71.445 +205112,266.19,72.708 +205113,268.78,68.955 +205114,267.39,70.208 +205115,266.06,71.458 +205116,264.81,72.703 +205117,267.53,69.005 +205118,266.09,70.239 +205119,264.72,71.47 +205120,263.43,72.696 +205121,266.28,69.057 +205122,264.79,70.271 +205123,263.39,71.482 +205124,262.05,72.689 +205125,265.02,69.109 +205126,263.5,70.302 +205127,262.05,71.494 +205128,260.67,72.681 +205129,263.77,69.163 +205130,262.2,70.335 +205131,260.71,71.505 +205132,259.3,72.672 +205133,262.51,69.217 +205134,260.9,70.367 +205135,259.37,71.516 +205136,257.93,72.662 +205137,261.25,69.272 +205138,259.6,70.4 +205139,258.04,71.527 +205140,256.55,72.651 +205141,259.99,69.329 +205142,258.3,70.433 +205143,256.7,71.537 +205144,255.18,72.639 +205145,258.73,69.386 +205146,257,70.466 +205147,255.37,71.547 +205148,253.81,72.626 +205149,257.47,69.444 +205150,255.7,70.5 +205151,254.03,71.557 +205152,252.44,72.613 +205153,256.2,69.503 +205154,254.4,70.534 +205155,252.7,71.567 +205156,251.07,72.598 +205157,254.94,69.562 +205158,253.1,70.568 +205159,251.36,71.576 +205160,249.71,72.583 +205161,253.67,69.623 +205162,251.8,70.603 +205163,250.03,71.585 +205164,248.34,72.567 +205165,252.4,69.684 +205166,250.5,70.638 +205167,248.7,71.593 +205168,246.98,72.55 +205169,251.13,69.746 +205170,249.2,70.673 +205171,247.36,71.602 +205172,245.61,72.532 +205173,249.86,69.809 +205174,247.9,70.708 +205175,246.03,71.61 +205176,244.25,72.514 +205177,248.59,69.873 +205178,246.59,70.744 +205179,244.7,71.618 +205180,242.89,72.495 +205181,247.31,69.937 +205182,245.29,70.779 +205183,243.37,71.626 +205184,241.53,72.475 +205185,246.04,70.002 +205186,243.99,70.815 +205187,242.04,71.633 +205188,240.18,72.454 +205189,244.76,70.068 +205190,242.68,70.851 +205191,240.7,71.641 +205192,238.82,72.433 +205193,243.48,70.134 +205194,241.38,70.888 +205195,239.37,71.648 +205196,237.47,72.411 +205197,242.2,70.201 +205198,240.07,70.924 +205199,238.04,71.654 +205200,236.11,72.389 +205201,240.92,70.268 +205202,238.76,70.961 +205203,236.72,71.661 +205204,234.76,72.365 +205205,239.63,70.336 +205206,237.46,70.998 +205207,235.39,71.668 +205208,233.41,72.342 +205209,238.35,70.404 +205210,236.15,71.035 +205211,234.06,71.674 +205212,232.06,72.318 +205213,237.06,70.473 +205214,234.84,71.073 +205215,232.73,71.68 +205216,230.72,72.293 +205217,235.77,70.543 +205218,233.53,71.11 +205219,231.4,71.686 +205220,229.37,72.268 +205221,234.48,70.613 +205222,232.22,71.148 +205223,230.08,71.692 +205224,228.03,72.242 +205225,233.19,70.683 +205226,230.91,71.186 +205227,228.75,71.697 +205228,226.68,72.216 +205229,231.89,70.754 +205230,229.6,71.224 +205231,227.43,71.703 +205232,225.34,72.189 +205233,230.59,70.825 +205234,228.29,71.262 +205235,226.1,71.708 +205236,224,72.162 +205237,229.3,70.896 +205238,226.98,71.3 +205239,224.78,71.714 +205240,222.67,72.135 +205241,228,70.968 +205242,225.67,71.338 +205243,223.45,71.719 +205244,221.33,72.107 +205245,226.69,71.04 +205246,224.36,71.377 +205247,222.13,71.724 +205248,220,72.079 +205249,225.39,71.112 +205250,223.04,71.415 +205251,220.81,71.729 +205252,218.66,72.051 +205253,224.09,71.184 +205254,221.73,71.454 +205255,219.48,71.733 +205256,217.33,72.022 +205257,222.78,71.257 +205258,220.42,71.492 +205259,218.16,71.738 +205260,216,71.993 +205261,221.47,71.33 +205262,219.1,71.531 +205263,216.84,71.743 +205264,214.68,71.964 +205265,220.16,71.403 +205266,217.79,71.57 +205267,215.52,71.748 +205268,213.35,71.935 +205269,218.85,71.476 +205270,216.47,71.609 +205271,214.2,71.752 +205272,212.02,71.906 +205273,217.53,71.549 +205274,215.15,71.647 +205275,212.88,71.757 +205276,210.7,71.876 +205277,216.22,71.623 +205278,213.84,71.686 +205279,211.56,71.761 +205280,209.38,71.847 +205281,214.9,71.696 +205282,212.52,71.725 +205283,210.24,71.766 +205284,208.06,71.817 +205285,213.58,71.769 +205286,211.2,71.764 +205287,208.93,71.77 +205288,206.74,71.787 +205289,212.26,71.843 +205290,209.88,71.803 +205291,207.61,71.775 +205292,205.43,71.757 +205293,210.93,71.916 +205294,208.56,71.842 +205295,206.29,71.779 +205296,204.11,71.728 +205297,209.61,71.989 +205298,207.24,71.881 +205299,204.98,71.784 +205300,202.8,71.698 +205301,208.28,72.062 +205302,205.92,71.919 +205303,203.66,71.788 +205304,201.49,71.668 +205305,206.95,72.135 +205306,204.6,71.958 +205307,202.34,71.793 +205308,200.18,71.639 +205309,205.62,72.208 +205310,203.28,71.997 +205311,201.03,71.798 +205312,198.87,71.609 +205313,204.29,72.28 +205314,201.95,72.036 +205315,199.72,71.802 +205316,197.56,71.58 +205317,202.95,72.353 +205318,200.63,72.074 +205319,198.4,71.807 +205320,196.26,71.551 +205321,201.62,72.425 +205322,199.31,72.113 +205323,197.09,71.812 +205324,194.96,71.522 +205325,200.28,72.497 +205326,197.98,72.151 +205327,195.78,71.817 +205328,193.65,71.493 +205329,198.94,72.568 +205330,196.66,72.19 +205331,194.47,71.822 +205332,192.35,71.464 +205333,197.6,72.64 +205334,195.33,72.228 +205335,193.15,71.827 +205336,191.06,71.436 +205337,196.26,72.711 +205338,194,72.266 +205339,191.84,71.832 +205340,189.76,71.408 +205341,194.91,72.781 +205342,192.68,72.304 +205343,190.53,71.837 +205344,188.46,71.381 +205345,193.57,72.851 +205346,191.35,72.342 +205347,189.22,71.843 +205348,187.17,71.353 +205349,192.22,72.921 +205350,190.02,72.38 +205351,187.91,71.848 +205352,185.88,71.327 +205353,190.87,72.99 +205354,188.69,72.417 +205355,186.61,71.854 +205356,184.59,71.3 +205357,189.52,73.059 +205358,187.37,72.455 +205359,185.3,71.86 +205360,183.3,71.274 +205361,188.16,73.128 +205362,186.04,72.492 +205363,183.99,71.866 +205364,182.01,71.249 +205365,186.81,73.195 +205366,184.71,72.529 +205367,182.68,71.872 +205368,180.73,71.224 +205369,185.45,73.263 +205370,183.38,72.566 +205371,181.38,71.878 +205372,179.44,71.199 +205373,184.1,73.329 +205374,182.04,72.603 +205375,180.07,71.885 +205376,178.16,71.175 +205377,182.74,73.395 +205378,180.71,72.64 +205379,178.76,71.892 +205380,176.88,71.152 +205381,181.38,73.461 +205382,179.38,72.676 +205383,177.46,71.899 +205384,175.6,71.129 +205385,180.01,73.526 +205386,178.05,72.712 +205387,176.15,71.906 +205388,174.32,71.107 +205389,178.65,73.59 +205390,176.71,72.748 +205391,174.85,71.913 +205392,173.04,71.085 +205393,177.29,73.653 +205394,175.38,72.784 +205395,173.54,71.921 +205396,171.77,71.064 +205397,175.92,73.716 +205398,174.05,72.819 +205399,172.24,71.929 +205400,170.49,71.044 +205401,174.55,73.778 +205402,172.71,72.855 +205403,170.94,71.937 +205404,169.22,71.025 +205405,173.18,73.839 +205406,171.38,72.89 +205407,169.64,71.945 +205408,167.95,71.006 +205409,171.81,73.9 +205410,170.04,72.924 +205411,168.33,71.953 +205412,166.68,70.988 +205413,170.44,73.96 +205414,168.71,72.959 +205415,167.03,71.962 +205416,165.41,70.971 +205417,169.07,74.019 +205418,167.37,72.993 +205419,165.73,71.971 +205420,164.14,70.954 +205421,167.69,74.077 +205422,166.03,73.027 +205423,164.43,71.981 +205424,162.87,70.939 +205425,166.32,74.134 +205426,164.7,73.061 +205427,163.13,71.99 +205428,161.61,70.924 +205429,164.94,74.19 +205430,163.36,73.094 +205431,161.83,72 +205432,160.35,70.91 +205433,163.56,74.246 +205434,162.02,73.127 +205435,160.53,72.011 +205436,159.08,70.897 +205437,162.19,74.301 +205438,160.68,73.16 +205439,159.23,72.021 +205440,157.82,70.885 +205441,160.81,74.354 +205442,159.34,73.192 +205443,157.93,72.032 +205444,156.56,70.874 +205445,159.43,74.407 +205446,158,73.225 +205447,156.63,72.043 +205448,155.3,70.864 +205449,158.04,74.459 +205450,156.67,73.256 +205451,155.33,72.055 +205452,154.04,70.855 +205453,156.66,74.51 +205454,155.33,73.288 +205455,154.03,72.067 +205456,152.78,70.846 +205457,155.28,74.56 +205458,153.99,73.319 +205459,152.74,72.079 +205460,151.53,70.839 +205461,153.89,74.608 +205462,152.64,73.35 +205463,151.44,72.091 +205464,150.27,70.833 +205465,152.51,74.656 +205466,151.3,73.381 +205467,150.14,72.104 +205468,149.02,70.827 +205469,151.12,74.703 +205470,149.96,73.411 +205471,148.84,72.117 +205472,147.76,70.823 +205473,149.74,74.749 +205474,148.62,73.441 +205475,147.55,72.131 +205476,146.51,70.82 +205477,148.35,74.794 +205478,147.28,73.47 +205479,146.25,72.145 +205480,145.26,70.818 +205481,146.96,74.837 +205482,145.94,73.499 +205483,144.96,72.159 +205484,144.01,70.817 +205485,145.57,74.88 +205486,144.6,73.528 +205487,143.66,72.174 +205488,142.76,70.817 +205489,144.18,74.922 +205490,143.25,73.557 +205491,142.36,72.188 +205492,141.51,70.818 +205493,142.79,74.962 +205494,141.91,73.585 +205495,141.07,72.204 +205496,140.26,70.82 +205497,141.4,75.001 +205498,140.57,73.612 +205499,139.77,72.22 +205500,139.01,70.824 +205501,140.01,75.04 +205502,139.23,73.64 +205503,138.48,72.236 +205504,137.76,70.829 +205505,138.62,75.077 +205506,137.88,73.667 +205507,137.18,72.252 +205508,136.51,70.834 +205509,137.23,75.113 +205510,136.54,73.693 +205511,135.89,72.269 +205512,135.27,70.841 +205513,135.83,75.148 +205514,135.2,73.72 +205515,134.59,72.286 +205516,134.02,70.849 +205517,134.44,75.181 +205518,133.85,73.745 +205519,133.3,72.304 +205520,132.77,70.859 +205521,133.05,75.214 +205522,132.51,73.771 +205523,132,72.322 +205524,131.53,70.869 +205525,131.65,75.246 +205526,131.16,73.796 +205527,130.71,72.34 +205528,130.28,70.881 +205529,130.26,75.276 +205530,129.82,73.821 +205531,129.41,72.359 +205532,129.04,70.893 +205533,128.87,75.305 +205534,128.48,73.845 +205535,128.12,72.379 +205536,127.79,70.907 +205537,127.47,75.333 +205538,127.13,73.869 +205539,126.83,72.398 +205540,126.55,70.923 +205541,126.08,75.36 +205542,125.79,73.892 +205543,125.53,72.418 +205544,125.31,70.939 +205545,124.68,75.385 +205546,124.44,73.915 +205547,124.24,72.439 +205548,124.06,70.957 +205549,123.29,75.41 +205550,123.1,73.938 +205551,122.94,72.46 +205552,122.82,70.976 +205553,121.89,75.433 +205554,121.76,73.96 +205555,121.65,72.481 +205556,121.58,70.996 +205557,120.5,75.455 +205558,120.41,73.982 +205559,120.36,72.502 +205560,120.33,71.017 +205561,119.1,75.476 +205562,119.07,74.004 +205563,119.06,72.525 +205564,119.09,71.04 +205565,117.71,75.496 +205566,117.72,74.025 +205567,117.77,72.547 +205568,117.85,71.063 +205569,116.32,75.515 +205570,116.38,74.046 +205571,116.47,72.57 +205572,116.6,71.088 +205573,114.92,75.532 +205574,115.03,74.066 +205575,115.18,72.593 +205576,115.36,71.115 +205577,113.53,75.549 +205578,113.69,74.086 +205579,113.88,72.617 +205580,114.12,71.142 +205581,112.13,75.564 +205582,112.34,74.106 +205583,112.59,72.641 +205584,112.87,71.171 +205585,110.74,75.578 +205586,111,74.125 +205587,111.3,72.665 +205588,111.63,71.201 +205589,109.35,75.591 +205590,109.66,74.144 +205591,110,72.69 +205592,110.38,71.232 +205593,107.95,75.602 +205594,108.31,74.162 +205595,108.71,72.715 +205596,109.14,71.264 +205597,106.56,75.613 +205598,106.97,74.18 +205599,107.41,72.741 +205600,107.9,71.297 +205601,105.17,75.622 +205602,105.62,74.198 +205603,106.12,72.767 +205604,106.65,71.332 +205605,103.78,75.63 +205606,104.28,74.215 +205607,104.82,72.794 +205608,105.41,71.368 +205609,102.39,75.637 +205610,102.94,74.232 +205611,103.53,72.821 +205612,104.16,71.405 +205613,101,75.644 +205614,101.59,74.248 +205615,102.23,72.848 +205616,102.91,71.443 +205617,99.606,75.648 +205618,100.25,74.265 +205619,100.94,72.875 +205620,101.67,71.482 +205621,98.216,75.652 +205622,98.907,74.28 +205623,99.64,72.903 +205624,100.42,71.523 +205625,96.828,75.655 +205626,97.564,74.296 +205627,98.344,72.932 +205628,99.172,71.564 +205629,95.439,75.657 +205630,96.221,74.311 +205631,97.048,72.961 +205632,97.924,71.607 +205633,94.052,75.657 +205634,94.878,74.326 +205635,95.752,72.99 +205636,96.675,71.651 +205637,92.665,75.657 +205638,93.536,74.34 +205639,94.455,73.019 +205640,95.425,71.696 +205641,91.279,75.655 +205642,92.194,74.354 +205643,93.158,73.049 +205644,94.174,71.742 +205645,89.893,75.653 +205646,90.852,74.368 +205647,91.861,73.079 +205648,92.923,71.789 +205649,88.509,75.649 +205650,89.511,74.381 +205651,90.563,73.11 +205652,91.671,71.837 +205653,87.125,75.644 +205654,88.169,74.394 +205655,89.266,73.141 +205656,90.418,71.887 +205657,85.742,75.639 +205658,86.828,74.406 +205659,87.967,73.172 +205660,89.164,71.937 +205661,84.36,75.632 +205662,85.487,74.419 +205663,86.669,73.203 +205664,87.909,71.988 +205665,82.979,75.625 +205666,84.147,74.431 +205667,85.37,73.235 +205668,86.654,72.041 +205669,81.599,75.616 +205670,82.807,74.442 +205671,84.071,73.268 +205672,85.397,72.094 +205673,80.22,75.607 +205674,81.467,74.454 +205675,82.772,73.3 +205676,84.139,72.148 +205677,78.842,75.596 +205678,80.127,74.465 +205679,81.472,73.333 +205680,82.88,72.203 +205681,77.465,75.585 +205682,78.788,74.475 +205683,80.172,73.366 +205684,81.621,72.26 +205685,76.089,75.573 +205686,77.449,74.486 +205687,78.871,73.4 +205688,80.36,72.317 +205689,74.714,75.56 +205690,76.111,74.496 +205691,77.57,73.434 +205692,79.098,72.375 +205693,73.34,75.546 +205694,74.772,74.506 +205695,76.269,73.468 +205696,77.834,72.433 +205697,71.967,75.531 +205698,73.435,74.516 +205699,74.967,73.502 +205700,76.57,72.493 +205701,70.596,75.516 +205702,72.097,74.525 +205703,73.665,73.537 +205704,75.304,72.553 +205705,69.225,75.499 +205706,70.76,74.534 +205707,72.362,73.572 +205708,74.037,72.615 +205709,67.856,75.482 +205710,69.424,74.543 +205711,71.059,73.607 +205712,72.769,72.677 +205713,66.488,75.464 +205714,68.087,74.551 +205715,69.756,73.642 +205716,71.5,72.74 +205717,65.121,75.446 +205718,66.751,74.56 +205719,68.452,73.678 +205720,70.229,72.803 +205721,63.756,75.426 +205722,65.416,74.568 +205723,67.147,73.714 +205724,68.957,72.868 +205725,62.392,75.406 +205726,64.081,74.576 +205727,65.843,73.75 +205728,67.683,72.933 +205729,61.029,75.386 +205730,62.747,74.583 +205731,64.537,73.787 +205732,66.408,72.998 +205733,59.668,75.364 +205734,61.412,74.591 +205735,63.231,73.823 +205736,65.131,73.065 +205737,58.308,75.342 +205738,60.079,74.598 +205739,61.925,73.86 +205740,63.853,73.132 +205741,56.949,75.32 +205742,58.746,74.605 +205743,60.618,73.897 +205744,62.574,73.199 +205745,55.591,75.297 +205746,57.413,74.612 +205747,59.311,73.934 +205748,61.293,73.268 +205749,54.235,75.273 +205750,56.081,74.618 +205751,58.003,73.972 +205752,60.01,73.336 +205753,52.881,75.249 +205754,54.749,74.625 +205755,56.694,74.01 +205756,58.726,73.405 +205757,51.528,75.224 +205758,53.417,74.631 +205759,55.386,74.047 +205760,57.441,73.475 +205761,50.176,75.199 +205762,52.087,74.637 +205763,54.076,74.085 +205764,56.154,73.545 +205765,48.826,75.173 +205766,50.756,74.643 +205767,52.766,74.123 +205768,54.865,73.616 +205769,47.477,75.147 +205770,49.426,74.649 +205771,51.456,74.162 +205772,53.574,73.687 +205773,46.13,75.121 +205774,48.097,74.655 +205775,50.145,74.2 +205776,52.282,73.759 +205777,44.784,75.094 +205778,46.768,74.661 +205779,48.833,74.239 +205780,50.988,73.83 +205781,43.44,75.067 +205782,45.44,74.666 +205783,47.521,74.277 +205784,49.693,73.902 +205785,42.098,75.039 +205786,44.112,74.671 +205787,46.208,74.316 +205788,48.396,73.975 +205789,40.756,75.011 +205790,42.784,74.677 +205791,44.895,74.355 +205792,47.097,74.048 +205793,39.417,74.983 +205794,41.458,74.682 +205795,43.581,74.394 +205796,45.797,74.121 +205797,38.079,74.955 +205798,40.131,74.687 +205799,42.266,74.433 +205800,44.495,74.194 +205801,36.742,74.926 +205802,38.805,74.692 +205803,40.951,74.472 +205804,43.191,74.267 +205805,35.407,74.897 +205806,37.48,74.697 +205807,39.636,74.511 +205808,41.885,74.341 +205809,34.074,74.868 +205810,36.155,74.702 +205811,38.32,74.55 +205812,40.578,74.415 +205813,32.742,74.839 +205814,34.831,74.707 +205815,37.003,74.59 +205816,39.269,74.489 +205817,31.412,74.81 +205818,33.508,74.712 +205819,35.686,74.629 +205820,37.958,74.562 +205821,30.084,74.78 +205822,32.184,74.717 +205823,34.368,74.668 +205824,36.645,74.636 +205825,28.757,74.751 +205826,30.862,74.722 +205827,33.049,74.708 +205828,35.331,74.71 +205829,27.431,74.721 +205830,29.54,74.727 +205831,31.73,74.747 +205832,34.015,74.785 +205833,26.108,74.692 +205834,28.218,74.731 +205835,30.41,74.786 +205836,32.697,74.859 +205837,24.785,74.663 +205838,26.897,74.736 +205839,29.09,74.826 +205840,31.377,74.932 +205841,23.465,74.633 +205842,25.576,74.741 +205843,27.769,74.865 +205844,30.056,75.006 +205845,22.146,74.604 +205846,24.256,74.746 +205847,26.448,74.904 +205848,28.733,75.08 +205849,20.828,74.575 +205850,22.937,74.751 +205851,25.126,74.944 +205852,27.408,75.154 +205853,19.513,74.545 +205854,21.618,74.756 +205855,23.803,74.983 +205856,26.081,75.227 +205857,18.198,74.517 +205858,20.3,74.761 +205859,22.48,75.022 +205860,24.753,75.3 +205861,16.886,74.488 +205862,18.982,74.766 +205863,21.157,75.061 +205864,23.423,75.373 +205865,15.575,74.459 +205866,17.664,74.772 +205867,19.832,75.1 +205868,22.091,75.446 +205869,14.266,74.431 +205870,16.348,74.777 +205871,18.507,75.139 +205872,20.757,75.519 +205873,12.958,74.403 +205874,15.031,74.782 +205875,17.182,75.178 +205876,19.422,75.591 +205877,11.651,74.375 +205878,13.716,74.788 +205879,15.856,75.217 +205880,18.085,75.663 +205881,10.347,74.348 +205882,12.4,74.794 +205883,14.529,75.255 +205884,16.746,75.734 +205885,9.0436,74.321 +205886,11.085,74.799 +205887,13.202,75.294 +205888,15.406,75.806 +205889,7.742,74.294 +205890,9.7712,74.805 +205891,11.874,75.332 +205892,14.064,75.876 +205893,6.4419,74.268 +205894,8.4575,74.811 +205895,10.546,75.371 +205896,12.72,75.947 +205897,5.1434,74.242 +205898,7.1443,74.818 +205899,9.2173,75.409 +205900,11.375,76.017 +205901,3.8464,74.216 +205902,5.8315,74.824 +205903,7.888,75.447 +205904,10.028,76.086 +205905,2.5509,74.191 +205906,4.5193,74.83 +205907,6.5581,75.485 +205908,8.6789,76.155 +205909,1.2569,74.167 +205910,3.2075,74.837 +205911,5.2276,75.522 +205912,7.3287,76.223 +205913,359.96,74.143 +205914,1.8962,74.844 +205915,3.8966,75.56 +205916,5.9769,76.291 +205917,358.67,74.12 +205918,0.58545,74.851 +205919,2.5651,75.597 +205920,4.6235,76.358 +205921,357.38,74.097 +205922,359.28,74.858 +205923,1.2331,75.634 +205924,3.2686,76.425 +205925,356.1,74.075 +205926,357.97,74.866 +205927,359.9,75.671 +205928,1.9122,76.491 +205929,354.81,74.053 +205930,356.66,74.874 +205931,358.57,75.708 +205932,0.55428,76.556 +205933,353.52,74.032 +205934,355.35,74.881 +205935,357.23,75.744 +205936,359.19,76.621 +205937,352.24,74.012 +205938,354.04,74.89 +205939,355.9,75.78 +205940,357.83,76.685 +205941,350.96,73.992 +205942,352.73,74.898 +205943,354.57,75.816 +205944,356.47,76.748 +205945,349.68,73.974 +205946,351.42,74.907 +205947,353.23,75.852 +205948,355.11,76.81 +205949,348.4,73.956 +205950,350.12,74.916 +205951,351.89,75.888 +205952,353.74,76.872 +205953,347.12,73.938 +205954,348.81,74.925 +205955,350.56,75.923 +205956,352.38,76.933 +205957,345.84,73.922 +205958,347.5,74.934 +205959,349.22,75.958 +205960,351.01,76.993 +205961,344.56,73.906 +205962,346.2,74.944 +205963,347.89,75.993 +205964,349.64,77.053 +205965,343.29,73.891 +205966,344.89,74.954 +205967,346.55,76.027 +205968,348.27,77.111 +205969,342.02,73.877 +205970,343.59,74.964 +205971,345.21,76.061 +205972,346.9,77.169 +205973,340.74,73.864 +205974,342.28,74.975 +205975,343.87,76.095 +205976,345.52,77.225 +205977,339.47,73.852 +205978,340.98,74.986 +205979,342.53,76.129 +205980,344.15,77.281 +205981,338.2,73.841 +205982,339.67,74.997 +205983,341.19,76.162 +205984,342.78,77.336 +205985,336.93,73.83 +205986,338.37,75.008 +205987,339.86,76.195 +205988,341.4,77.39 +205989,335.66,73.821 +205990,337.07,75.02 +205991,338.52,76.228 +205992,340.02,77.443 +205993,334.4,73.812 +205994,335.76,75.032 +205995,337.18,76.26 +205996,338.64,77.495 +205997,333.13,73.805 +205998,334.46,75.045 +205999,335.83,76.292 +206000,337.26,77.546 +206001,331.87,73.799 +206002,333.16,75.058 +206003,334.49,76.324 +206004,335.88,77.597 +206005,330.6,73.793 +206006,331.86,75.071 +206007,333.15,76.355 +206008,334.5,77.646 +206009,329.34,73.789 +206010,330.55,75.084 +206011,331.81,76.386 +206012,333.12,77.694 +206013,328.08,73.785 +206014,329.25,75.098 +206015,330.47,76.417 +206016,331.73,77.741 +206017,326.82,73.783 +206018,327.95,75.113 +206019,329.13,76.447 +206020,330.35,77.787 +206021,325.56,73.782 +206022,326.65,75.127 +206023,327.78,76.477 +206024,328.96,77.832 +206025,324.3,73.782 +206026,325.35,75.142 +206027,326.44,76.507 +206028,327.58,77.876 +206029,323.04,73.783 +206030,324.05,75.157 +206031,325.1,76.536 +206032,326.19,77.919 +206033,321.78,73.785 +206034,322.75,75.173 +206035,323.76,76.565 +206036,324.8,77.96 +206037,320.53,73.788 +206038,321.45,75.189 +206039,322.41,76.594 +206040,323.42,78.001 +206041,319.27,73.793 +206042,320.15,75.206 +206043,321.07,76.622 +206044,322.03,78.041 +206045,318.01,73.798 +206046,318.85,75.223 +206047,319.72,76.65 +206048,320.64,78.079 +206049,316.76,73.805 +206050,317.55,75.24 +206051,318.38,76.677 +206052,319.25,78.116 +206053,315.51,73.813 +206054,316.25,75.258 +206055,317.03,76.704 +206056,317.86,78.152 +206057,314.25,73.822 +206058,314.95,75.276 +206059,315.69,76.731 +206060,316.47,78.187 +206061,313,73.832 +206062,313.65,75.294 +206063,314.35,76.758 +206064,315.07,78.221 +206065,311.75,73.844 +206066,312.36,75.313 +206067,313,76.783 +206068,313.68,78.254 +206069,310.49,73.856 +206070,311.06,75.332 +206071,311.65,76.809 +206072,312.29,78.285 +206073,309.24,73.87 +206074,309.76,75.352 +206075,310.31,76.834 +206076,310.9,78.316 +206077,307.99,73.885 +206078,308.46,75.372 +206079,308.96,76.859 +206080,309.5,78.345 +206081,306.74,73.901 +206082,307.16,75.392 +206083,307.62,76.883 +206084,308.11,78.373 +206085,305.49,73.919 +206086,305.86,75.413 +206087,306.27,76.907 +206088,306.71,78.4 +206089,304.24,73.938 +206090,304.57,75.435 +206091,304.93,76.931 +206092,305.32,78.426 +206093,302.99,73.958 +206094,303.27,75.456 +206095,303.58,76.954 +206096,303.93,78.45 +206097,301.74,73.979 +206098,301.97,75.478 +206099,302.23,76.977 +206100,302.53,78.474 +206101,300.49,74.001 +206102,300.67,75.501 +206103,300.89,76.999 +206104,301.14,78.496 +206105,299.24,74.025 +206106,299.37,75.524 +206107,299.54,77.021 +206108,299.74,78.517 +206109,297.99,74.05 +206110,298.08,75.547 +206111,298.2,77.043 +206112,298.35,78.536 +206113,296.74,74.076 +206114,296.78,75.571 +206115,296.85,77.064 +206116,296.95,78.555 +206117,295.49,74.104 +206118,295.48,75.595 +206119,295.5,77.085 +206120,295.56,78.572 +206121,294.24,74.132 +206122,294.18,75.62 +206123,294.16,77.106 +206124,294.16,78.589 +206125,292.99,74.162 +206126,292.89,75.645 +206127,292.81,77.126 +206128,292.77,78.604 +206129,291.74,74.193 +206130,291.59,75.67 +206131,291.46,77.145 +206132,291.37,78.618 +206133,290.49,74.226 +206134,290.29,75.696 +206135,290.12,77.165 +206136,289.98,78.631 +206137,289.24,74.259 +206138,288.99,75.722 +206139,288.77,77.184 +206140,288.58,78.642 +206141,287.99,74.294 +206142,287.69,75.749 +206143,287.43,77.202 +206144,287.19,78.653 +206145,286.74,74.33 +206146,286.39,75.776 +206147,286.08,77.22 +206148,285.8,78.662 +206149,285.49,74.367 +206150,285.1,75.803 +206151,284.73,77.238 +206152,284.4,78.67 +206153,284.24,74.405 +206154,283.8,75.831 +206155,283.39,77.255 +206156,283.01,78.677 +206157,282.99,74.445 +206158,282.5,75.859 +206159,282.04,77.273 +206160,281.62,78.683 +206161,281.74,74.485 +206162,281.2,75.888 +206163,280.7,77.289 +206164,280.23,78.688 +206165,280.49,74.527 +206166,279.9,75.917 +206167,279.35,77.305 +206168,278.83,78.692 +206169,279.24,74.57 +206170,278.6,75.946 +206171,278,77.321 +206172,277.44,78.694 +206173,277.98,74.614 +206174,277.3,75.976 +206175,276.66,77.337 +206176,276.05,78.696 +206177,276.73,74.66 +206178,276,76.006 +206179,275.31,77.352 +206180,274.66,78.696 +206181,275.48,74.706 +206182,274.7,76.036 +206183,273.97,77.367 +206184,273.27,78.696 +206185,274.22,74.754 +206186,273.4,76.067 +206187,272.62,77.381 +206188,271.88,78.694 +206189,272.97,74.802 +206190,272.1,76.098 +206191,271.28,77.396 +206192,270.49,78.692 +206193,271.71,74.852 +206194,270.8,76.13 +206195,269.93,77.409 +206196,269.11,78.688 +206197,270.46,74.903 +206198,269.5,76.162 +206199,268.59,77.423 +206200,267.72,78.683 +206201,269.2,74.954 +206202,268.2,76.194 +206203,267.25,77.436 +206204,266.33,78.677 +206205,267.94,75.007 +206206,266.9,76.227 +206207,265.9,77.449 +206208,264.95,78.671 +206209,266.68,75.061 +206210,265.6,76.26 +206211,264.56,77.461 +206212,263.56,78.663 +206213,265.42,75.116 +206214,264.3,76.293 +206215,263.22,77.473 +206216,262.18,78.654 +206217,264.16,75.172 +206218,262.99,76.327 +206219,261.87,77.485 +206220,260.8,78.645 +206221,262.9,75.229 +206222,261.69,76.361 +206223,260.53,77.497 +206224,259.41,78.634 +206225,261.64,75.286 +206226,260.39,76.395 +206227,259.19,77.508 +206228,258.03,78.623 +206229,260.38,75.345 +206230,259.09,76.43 +206231,257.85,77.519 +206232,256.65,78.611 +206233,259.11,75.405 +206234,257.78,76.465 +206235,256.5,77.53 +206236,255.27,78.598 +206237,257.85,75.465 +206238,256.48,76.5 +206239,255.16,77.54 +206240,253.89,78.584 +206241,256.58,75.526 +206242,255.17,76.535 +206243,253.82,77.55 +206244,252.52,78.569 +206245,255.31,75.589 +206246,253.87,76.571 +206247,252.48,77.56 +206248,251.14,78.553 +206249,254.05,75.652 +206250,252.56,76.607 +206251,251.14,77.569 +206252,249.77,78.537 +206253,252.78,75.715 +206254,251.26,76.643 +206255,249.8,77.579 +206256,248.39,78.52 +206257,251.5,75.78 +206258,249.95,76.68 +206259,248.46,77.588 +206260,247.02,78.502 +206261,250.23,75.845 +206262,248.65,76.717 +206263,247.12,77.597 +206264,245.65,78.483 +206265,248.96,75.911 +206266,247.34,76.754 +206267,245.78,77.605 +206268,244.28,78.464 +206269,247.69,75.978 +206270,246.03,76.791 +206271,244.44,77.614 +206272,242.91,78.444 +206273,246.41,76.046 +206274,244.73,76.829 +206275,243.1,77.622 +206276,241.54,78.423 +206277,245.13,76.114 +206278,243.42,76.866 +206279,241.77,77.63 +206280,240.17,78.401 +206281,243.85,76.183 +206282,242.11,76.904 +206283,240.43,77.638 +206284,238.81,78.379 +206285,242.58,76.252 +206286,240.8,76.943 +206287,239.09,77.645 +206288,237.44,78.357 +206289,241.29,76.322 +206290,239.49,76.981 +206291,237.75,77.652 +206292,236.08,78.334 +206293,240.01,76.393 +206294,238.18,77.02 +206295,236.42,77.66 +206296,234.72,78.31 +206297,238.73,76.464 +206298,236.87,77.058 +206299,235.08,77.667 +206300,233.36,78.286 +206301,237.44,76.535 +206302,235.56,77.097 +206303,233.75,77.673 +206304,232,78.261 +206305,236.16,76.607 +206306,234.25,77.137 +206307,232.41,77.68 +206308,230.64,78.236 +206309,234.87,76.68 +206310,232.94,77.176 +206311,231.08,77.687 +206312,229.28,78.21 +206313,233.58,76.753 +206314,231.63,77.215 +206315,229.74,77.693 +206316,227.93,78.184 +206317,232.29,76.826 +206318,230.31,77.255 +206319,228.41,77.699 +206320,226.57,78.157 +206321,230.99,76.9 +206322,229,77.295 +206323,227.08,77.706 +206324,225.22,78.13 +206325,229.7,76.974 +206326,227.69,77.334 +206327,225.74,77.712 +206328,223.87,78.103 +206329,228.4,77.048 +206330,226.37,77.374 +206331,224.41,77.718 +206332,222.52,78.076 +206333,227.11,77.123 +206334,225.06,77.414 +206335,223.08,77.723 +206336,221.17,78.048 +206337,225.81,77.198 +206338,223.74,77.454 +206339,221.75,77.729 +206340,219.83,78.019 +206341,224.51,77.273 +206342,222.42,77.495 +206343,220.42,77.735 +206344,218.48,77.991 +206345,223.21,77.349 +206346,221.11,77.535 +206347,219.09,77.741 +206348,217.14,77.962 +206349,221.9,77.424 +206350,219.79,77.575 +206351,217.76,77.746 +206352,215.79,77.934 +206353,220.6,77.5 +206354,218.47,77.616 +206355,216.43,77.752 +206356,214.45,77.905 +206357,219.29,77.576 +206358,217.16,77.656 +206359,215.1,77.757 +206360,213.11,77.876 +206361,217.98,77.652 +206362,215.84,77.697 +206363,213.77,77.763 +206364,211.78,77.846 +206365,216.67,77.728 +206366,214.52,77.737 +206367,212.44,77.768 +206368,210.44,77.817 +206369,215.36,77.804 +206370,213.2,77.778 +206371,211.12,77.773 +206372,209.11,77.788 +206373,214.05,77.88 +206374,211.88,77.818 +206375,209.79,77.779 +206376,207.77,77.758 +206377,212.73,77.956 +206378,210.56,77.859 +206379,208.46,77.784 +206380,206.44,77.729 +206381,211.41,78.031 +206382,209.23,77.9 +206383,207.14,77.79 +206384,205.11,77.699 +206385,210.09,78.107 +206386,207.91,77.94 +206387,205.81,77.795 +206388,203.78,77.67 +206389,208.77,78.183 +206390,206.59,77.981 +206391,204.49,77.801 +206392,202.46,77.641 +206393,207.45,78.259 +206394,205.27,78.021 +206395,203.16,77.806 +206396,201.13,77.612 +206397,206.13,78.334 +206398,203.94,78.062 +206399,201.84,77.812 +206400,199.81,77.583 +206401,204.8,78.409 +206402,202.62,78.102 +206403,200.52,77.818 +206404,198.48,77.554 +206405,203.48,78.484 +206406,201.29,78.142 +206407,199.19,77.823 +206408,197.16,77.525 +206409,202.15,78.559 +206410,199.97,78.183 +206411,197.87,77.829 +206412,195.84,77.497 +206413,200.82,78.634 +206414,198.64,78.223 +206415,196.55,77.835 +206416,194.53,77.469 +206417,199.48,78.708 +206418,197.32,78.263 +206419,195.23,77.841 +206420,193.21,77.441 +206421,198.15,78.782 +206422,195.99,78.303 +206423,193.91,77.847 +206424,191.9,77.413 +206425,196.82,78.855 +206426,194.66,78.343 +206427,192.59,77.854 +206428,190.58,77.386 +206429,195.48,78.928 +206430,193.33,78.382 +206431,191.27,77.86 +206432,189.27,77.359 +206433,194.14,79.001 +206434,192,78.422 +206435,189.95,77.867 +206436,187.96,77.333 +206437,192.8,79.073 +206438,190.67,78.461 +206439,188.63,77.873 +206440,186.65,77.306 +206441,191.46,79.145 +206442,189.34,78.501 +206443,187.31,77.88 +206444,185.35,77.281 +206445,190.11,79.216 +206446,188.01,78.54 +206447,185.99,77.887 +206448,184.04,77.256 +206449,188.77,79.287 +206450,186.68,78.579 +206451,184.68,77.894 +206452,182.74,77.231 +206453,187.42,79.357 +206454,185.35,78.618 +206455,183.36,77.902 +206456,181.43,77.207 +206457,186.07,79.426 +206458,184.02,78.656 +206459,182.04,77.909 +206460,180.13,77.183 +206461,184.72,79.496 +206462,182.69,78.695 +206463,180.73,77.917 +206464,178.83,77.16 +206465,183.37,79.564 +206466,181.35,78.733 +206467,179.41,77.925 +206468,177.53,77.137 +206469,182.02,79.632 +206470,180.02,78.771 +206471,178.1,77.933 +206472,176.24,77.115 +206473,180.67,79.699 +206474,178.69,78.809 +206475,176.78,77.941 +206476,174.94,77.094 +206477,179.31,79.765 +206478,177.35,78.847 +206479,175.47,77.95 +206480,173.65,77.074 +206481,177.95,79.831 +206482,176.02,78.884 +206483,174.15,77.959 +206484,172.35,77.054 +206485,176.59,79.896 +206486,174.68,78.921 +206487,172.84,77.968 +206488,171.06,77.034 +206489,175.23,79.96 +206490,173.34,78.958 +206491,171.53,77.977 +206492,169.77,77.016 +206493,173.87,80.0232 +206494,172.01,78.995 +206495,170.21,77.987 +206496,168.48,76.998 +206497,172.51,80.0858 +206498,170.67,79.031 +206499,168.9,77.997 +206500,167.2,76.981 +206501,171.14,80.1476 +206502,169.33,79.067 +206503,167.59,78.007 +206504,165.91,76.965 +206505,169.78,80.2085 +206506,167.99,79.103 +206507,166.28,78.017 +206508,164.62,76.95 +206509,168.41,80.2686 +206510,166.66,79.139 +206511,164.97,78.028 +206512,163.34,76.935 +206513,167.04,80.3277 +206514,165.32,79.174 +206515,163.66,78.039 +206516,162.06,76.922 +206517,165.67,80.386 +206518,163.98,79.209 +206519,162.35,78.05 +206520,160.78,76.909 +206521,164.3,80.4434 +206522,162.64,79.244 +206523,161.04,78.062 +206524,159.5,76.897 +206525,162.93,80.4998 +206526,161.3,79.278 +206527,159.73,78.074 +206528,158.22,76.886 +206529,161.55,80.5552 +206530,159.96,79.312 +206531,158.42,78.086 +206532,156.94,76.877 +206533,160.18,80.6097 +206534,158.62,79.346 +206535,157.11,78.099 +206536,155.66,76.868 +206537,158.8,80.6632 +206538,157.27,79.379 +206539,155.8,78.112 +206540,154.39,76.86 +206541,157.43,80.7157 +206542,155.93,79.413 +206543,154.5,78.125 +206544,153.11,76.853 +206545,156.05,80.7671 +206546,154.59,79.445 +206547,153.19,78.139 +206548,151.84,76.847 +206549,154.67,80.8176 +206550,153.25,79.478 +206551,151.88,78.153 +206552,150.57,76.842 +206553,153.29,80.867 +206554,151.9,79.51 +206555,150.57,78.167 +206556,149.3,76.838 +206557,151.91,80.9153 +206558,150.56,79.542 +206559,149.27,78.182 +206560,148.02,76.835 +206561,150.53,80.9625 +206562,149.22,79.573 +206563,147.96,78.197 +206564,146.75,76.833 +206565,149.14,81.0087 +206566,147.87,79.604 +206567,146.66,78.212 +206568,145.49,76.833 +206569,147.76,81.0538 +206570,146.53,79.635 +206571,145.35,78.228 +206572,144.22,76.833 +206573,146.37,81.0977 +206574,145.18,79.665 +206575,144.04,78.244 +206576,142.95,76.835 +206577,144.99,81.1405 +206578,143.84,79.695 +206579,142.74,78.261 +206580,141.68,76.838 +206581,143.6,81.1822 +206582,142.49,79.725 +206583,141.43,78.278 +206584,140.42,76.842 +206585,142.21,81.2228 +206586,141.15,79.754 +206587,140.13,78.295 +206588,139.15,76.847 +206589,140.83,81.2622 +206590,139.8,79.783 +206591,138.82,78.313 +206592,137.89,76.853 +206593,139.44,81.3005 +206594,138.46,79.811 +206595,137.52,78.331 +206596,136.63,76.86 +206597,138.05,81.3375 +206598,137.11,79.839 +206599,136.22,78.349 +206600,135.36,76.869 +206601,136.66,81.3735 +206602,135.76,79.867 +206603,134.91,78.368 +206604,134.1,76.879 +206605,135.27,81.4082 +206606,134.42,79.894 +206607,133.61,78.388 +206608,132.84,76.89 +206609,133.88,81.4417 +206610,133.07,79.921 +206611,132.31,78.408 +206612,131.58,76.902 +206613,132.48,81.4741 +206614,131.72,79.947 +206615,131,78.428 +206616,130.32,76.915 +206617,131.09,81.5053 +206618,130.37,79.973 +206619,129.7,78.448 +206620,129.06,76.93 +206621,129.7,81.5352 +206622,129.03,79.999 +206623,128.39,78.469 +206624,127.8,76.946 +206625,128.31,81.564 +206626,127.68,80.0244 +206627,127.09,78.491 +206628,126.54,76.963 +206629,126.91,81.5916 +206630,126.33,80.0493 +206631,125.79,78.512 +206632,125.28,76.982 +206633,125.52,81.6179 +206634,124.98,80.0738 +206635,124.49,78.535 +206636,124.02,77.001 +206637,124.12,81.643 +206638,123.63,80.0979 +206639,123.18,78.557 +206640,122.77,77.022 +206641,122.73,81.667 +206642,122.29,80.1216 +206643,121.88,78.58 +206644,121.51,77.044 +206645,121.33,81.6897 +206646,120.94,80.1448 +206647,120.58,78.604 +206648,120.25,77.068 +206649,119.94,81.7112 +206650,119.59,80.1677 +206651,119.28,78.628 +206652,118.99,77.092 +206653,118.54,81.7315 +206654,118.24,80.1902 +206655,117.97,78.652 +206656,117.74,77.118 +206657,117.15,81.7506 +206658,116.89,80.2122 +206659,116.67,78.677 +206660,116.48,77.146 +206661,115.75,81.7685 +206662,115.54,80.2339 +206663,115.37,78.702 +206664,115.22,77.174 +206665,114.36,81.7852 +206666,114.19,80.2552 +206667,114.07,78.728 +206668,113.97,77.204 +206669,112.96,81.8007 +206670,112.85,80.276 +206671,112.76,78.754 +206672,112.71,77.235 +206673,111.57,81.815 +206674,111.5,80.2965 +206675,111.46,78.78 +206676,111.46,77.267 +206677,110.17,81.8281 +206678,110.15,80.3166 +206679,110.16,78.807 +206680,110.2,77.3 +206681,108.78,81.84 +206682,108.8,80.3362 +206683,108.85,78.834 +206684,108.94,77.335 +206685,107.38,81.8508 +206686,107.45,80.3555 +206687,107.55,78.862 +206688,107.69,77.371 +206689,105.98,81.8604 +206690,106.1,80.3744 +206691,106.25,78.89 +206692,106.43,77.408 +206693,104.59,81.8688 +206694,104.75,80.3929 +206695,104.95,78.918 +206696,105.17,77.447 +206697,103.19,81.876 +206698,103.4,80.411 +206699,103.64,78.947 +206700,103.92,77.486 +206701,101.8,81.8821 +206702,102.05,80.4287 +206703,102.34,78.977 +206704,102.66,77.527 +206705,100.41,81.8871 +206706,100.71,80.446 +206707,101.04,79.006 +206708,101.4,77.569 +206709,99.012,81.8909 +206710,99.357,80.463 +206711,99.734,79.036 +206712,100.14,77.612 +206713,97.618,81.8936 +206714,98.009,80.4796 +206715,98.431,79.067 +206716,98.884,77.657 +206717,96.225,81.8952 +206718,96.66,80.4958 +206719,97.127,79.098 +206720,97.626,77.702 +206721,94.832,81.8958 +206722,95.312,80.5117 +206723,95.823,79.129 +206724,96.367,77.749 +206725,93.439,81.8952 +206726,93.964,80.5271 +206727,94.52,79.16 +206728,95.108,77.797 +206729,92.047,81.8935 +206730,92.616,80.5423 +206731,93.216,79.193 +206732,93.848,77.846 +206733,90.656,81.8908 +206734,91.268,80.557 +206735,91.911,79.225 +206736,92.588,77.896 +206737,89.265,81.887 +206738,89.92,80.5714 +206739,90.607,79.258 +206740,91.327,77.947 +206741,87.875,81.8822 +206742,88.572,80.5855 +206743,89.302,79.291 +206744,90.065,78 +206745,86.485,81.8764 +206746,87.225,80.5992 +206747,87.997,79.324 +206748,88.803,78.053 +206749,85.096,81.8695 +206750,85.877,80.6126 +206751,86.692,79.358 +206752,87.541,78.108 +206753,83.708,81.8617 +206754,84.53,80.6257 +206755,85.387,79.392 +206756,86.278,78.163 +206757,82.32,81.8529 +206758,83.183,80.6384 +206759,84.081,79.427 +206760,85.014,78.22 +206761,80.933,81.8431 +206762,81.837,80.6508 +206763,82.775,79.462 +206764,83.749,78.277 +206765,79.547,81.8324 +206766,80.49,80.6629 +206767,81.469,79.497 +206768,82.483,78.336 +206769,78.161,81.8208 +206770,79.144,80.6747 +206771,80.162,79.532 +206772,81.217,78.395 +206773,76.777,81.8083 +206774,77.798,80.6862 +206775,78.856,79.568 +206776,79.95,78.456 +206777,75.393,81.7948 +206778,76.452,80.6974 +206779,77.548,79.604 +206780,78.682,78.517 +206781,74.01,81.7806 +206782,75.107,80.7083 +206783,76.241,79.641 +206784,77.413,78.58 +206785,72.628,81.7654 +206786,73.762,80.7189 +206787,74.933,79.677 +206788,76.143,78.643 +206789,71.247,81.7494 +206790,72.417,80.7292 +206791,73.625,79.714 +206792,74.873,78.707 +206793,69.867,81.7326 +206794,71.072,80.7393 +206795,72.317,79.752 +206796,73.601,78.772 +206797,68.488,81.7151 +206798,69.728,80.7491 +206799,71.008,79.789 +206800,72.329,78.838 +206801,67.11,81.6967 +206802,68.384,80.7586 +206803,69.699,79.827 +206804,71.055,78.905 +206805,65.732,81.6776 +206806,67.041,80.7679 +206807,68.389,79.865 +206808,69.78,78.972 +206809,64.356,81.6578 +206810,65.697,80.777 +206811,67.079,79.904 +206812,68.504,79.04 +206813,62.981,81.6373 +206814,64.354,80.7858 +206815,65.769,79.942 +206816,67.227,79.109 +206817,61.608,81.6161 +206818,63.012,80.7944 +206819,64.458,79.981 +206820,65.949,79.179 +206821,60.235,81.5942 +206822,61.669,80.8027 +206823,63.147,80.0203 +206824,64.67,79.249 +206825,58.863,81.5717 +206826,60.327,80.8109 +206827,61.836,80.0596 +206828,63.39,79.32 +206829,57.493,81.5486 +206830,58.986,80.8189 +206831,60.524,80.0992 +206832,62.108,79.392 +206833,56.123,81.5249 +206834,57.645,80.8266 +206835,59.211,80.1389 +206836,60.825,79.464 +206837,54.755,81.5006 +206838,56.304,80.8342 +206839,57.898,80.1788 +206840,59.541,79.537 +206841,53.388,81.4758 +206842,54.963,80.8416 +206843,56.585,80.219 +206844,58.256,79.61 +206845,52.023,81.4505 +206846,53.623,80.8488 +206847,55.271,80.2593 +206848,56.969,79.684 +206849,50.658,81.4246 +206850,52.284,80.8559 +206851,53.957,80.2998 +206852,55.681,79.759 +206853,49.295,81.3984 +206854,50.944,80.8628 +206855,52.642,80.3404 +206856,54.392,79.834 +206857,47.933,81.3716 +206858,49.606,80.8696 +206859,51.327,80.3812 +206860,53.102,79.909 +206861,46.573,81.3445 +206862,48.267,80.8762 +206863,50.012,80.4222 +206864,51.81,79.985 +206865,45.214,81.317 +206866,46.929,80.8827 +206867,48.695,80.4632 +206868,50.516,80.0609 +206869,43.856,81.2891 +206870,45.592,80.8891 +206871,47.379,80.5045 +206872,49.221,80.1375 +206873,42.499,81.2609 +206874,44.254,80.8954 +206875,46.062,80.5458 +206876,47.925,80.2144 +206877,41.144,81.2323 +206878,42.918,80.9016 +206879,44.744,80.5872 +206880,46.627,80.2917 +206881,39.79,81.2035 +206882,41.581,80.9077 +206883,43.426,80.6287 +206884,45.328,80.3692 +206885,38.438,81.1745 +206886,40.246,80.9137 +206887,42.107,80.6704 +206888,44.028,80.4469 +206889,37.087,81.1452 +206890,38.91,80.9197 +206891,40.788,80.7121 +206892,42.726,80.5249 +206893,35.737,81.1157 +206894,37.575,80.9255 +206895,39.469,80.7538 +206896,41.422,80.6031 +206897,34.389,81.086 +206898,36.241,80.9314 +206899,38.148,80.7956 +206900,40.117,80.6814 +206901,33.042,81.0562 +206902,34.907,80.9372 +206903,36.828,80.8375 +206904,38.81,80.7599 +206905,31.697,81.0263 +206906,33.573,80.9429 +206907,35.507,80.8794 +206908,37.502,80.8385 +206909,30.353,80.9962 +206910,32.24,80.9487 +206911,34.185,80.9214 +206912,36.192,80.9172 +206913,29.01,80.9662 +206914,30.907,80.9544 +206915,32.862,80.9633 +206916,34.881,80.9959 +206917,27.669,80.936 +206918,29.575,80.9601 +206919,31.54,81.0053 +206920,33.568,81.0746 +206921,26.33,80.9059 +206922,28.244,80.9658 +206923,30.216,81.0473 +206924,32.254,81.1533 +206925,24.992,80.8758 +206926,26.912,80.9715 +206927,28.892,81.0893 +206928,30.938,81.2319 +206929,23.655,80.8458 +206930,25.582,80.9773 +206931,27.568,81.1312 +206932,29.621,81.3105 +206933,22.32,80.8158 +206934,24.251,80.983 +206935,26.243,81.1732 +206936,28.301,81.389 +206937,20.986,80.7859 +206938,22.922,80.9889 +206939,24.917,81.215 +206940,26.981,81.4674 +206941,19.654,80.7562 +206942,21.592,80.9947 +206943,23.591,81.2569 +206944,25.658,81.5455 +206945,18.323,80.7266 +206946,20.263,81.0007 +206947,22.265,81.2987 +206948,24.334,81.6235 +206949,16.994,80.6972 +206950,18.935,81.0067 +206951,20.938,81.3404 +206952,23.009,81.7013 +206953,15.666,80.6681 +206954,17.607,81.0128 +206955,19.61,81.382 +206956,21.682,81.7788 +206957,14.339,80.6392 +206958,16.28,81.0189 +206959,18.282,81.4236 +206960,20.353,81.8561 +206961,13.014,80.6105 +206962,14.953,81.0252 +206963,16.953,81.465 +206964,19.023,81.933 +206965,11.691,80.5822 +206966,13.626,81.0316 +206967,15.623,81.5064 +206968,17.691,82.0096 +206969,10.369,80.5541 +206970,12.3,81.0381 +206971,14.293,81.5476 +206972,16.358,82.0858 +206973,9.0483,80.5265 +206974,10.975,81.0447 +206975,12.963,81.5888 +206976,15.022,82.1617 +206977,7.7292,80.4992 +206978,9.6495,81.0515 +206979,11.632,81.6297 +206980,13.686,82.2371 +206981,6.4115,80.4723 +206982,8.3248,81.0584 +206983,10.3,81.6706 +206984,12.348,82.312 +206985,5.0953,80.4459 +206986,7.0007,81.0654 +206987,8.9684,81.7113 +206988,11.008,82.3865 +206989,3.7805,80.42 +206990,5.677,81.0726 +206991,7.6358,81.7518 +206992,9.6663,82.4605 +206993,2.4671,80.3945 +206994,4.3538,81.08 +206995,6.3027,81.7922 +206996,8.3233,82.5339 +206997,1.1551,80.3695 +206998,3.031,81.0876 +206999,4.969,81.8323 +207000,6.9788,82.6068 +207001,359.84,80.3451 +207002,1.7087,81.0954 +207003,3.6348,81.8723 +207004,5.6328,82.6791 +207005,358.54,80.3213 +207006,0.38679,81.1033 +207007,2.3001,81.9121 +207008,4.2852,82.7508 +207009,357.23,80.298 +207010,359.07,81.1115 +207011,0.96484,81.9517 +207012,2.9361,82.8218 +207013,355.92,80.2754 +207014,357.74,81.1198 +207015,359.63,81.9911 +207016,1.5854,82.8922 +207017,354.62,80.2534 +207018,356.42,81.1284 +207019,358.29,82.0303 +207020,0.2333,82.9619 +207021,353.31,80.2321 +207022,355.1,81.1373 +207023,356.96,82.0692 +207024,358.88,83.0309 +207025,352.01,80.2114 +207026,353.78,81.1463 +207027,355.62,82.1079 +207028,357.52,83.0991 +207029,350.71,80.1915 +207030,352.46,81.1556 +207031,354.28,82.1463 +207032,356.17,83.1666 +207033,349.41,80.1724 +207034,351.15,81.1652 +207035,352.94,82.1845 +207036,354.81,83.2333 +207037,348.11,80.154 +207038,349.83,81.175 +207039,351.6,82.2225 +207040,353.45,83.2992 +207041,346.81,80.1364 +207042,348.51,81.1851 +207043,350.26,82.2601 +207044,352.09,83.3643 +207045,345.52,80.1196 +207046,347.19,81.1955 +207047,348.93,82.2975 +207048,350.73,83.4285 +207049,344.22,80.1036 +207050,345.87,81.2061 +207051,347.58,82.3346 +207052,349.36,83.4918 +207053,342.93,80.0885 +207054,344.56,81.2171 +207055,346.24,82.3714 +207056,348,83.5543 +207057,341.64,80.0742 +207058,343.24,81.2283 +207059,344.9,82.408 +207060,346.63,83.6158 +207061,340.35,80.0609 +207062,341.93,81.2399 +207063,343.56,82.4442 +207064,345.27,83.6764 +207065,339.06,80.0485 +207066,340.61,81.2518 +207067,342.22,82.4801 +207068,343.9,83.736 +207069,337.77,80.037 +207070,339.29,81.2639 +207071,340.88,82.5157 +207072,342.53,83.7947 +207073,336.48,80.0265 +207074,337.98,81.2764 +207075,339.53,82.5509 +207076,341.15,83.8524 +207077,335.19,80.0169 +207078,336.66,81.2893 +207079,338.19,82.5858 +207080,339.78,83.909 +207081,333.91,80.0084 +207082,335.35,81.3025 +207083,336.85,82.6204 +207084,338.41,83.9647 +207085,332.62,80.0008 +207086,334.04,81.316 +207087,335.5,82.6547 +207088,337.03,84.0192 +207089,331.34,79.994 +207090,332.72,81.3298 +207091,334.16,82.6886 +207092,335.66,84.0728 +207093,330.06,79.989 +207094,331.41,81.3441 +207095,332.81,82.7221 +207096,334.28,84.1252 +207097,328.78,79.984 +207098,330.1,81.3586 +207099,331.47,82.7553 +207100,332.9,84.1766 +207101,327.5,79.981 +207102,328.78,81.3736 +207103,330.12,82.7881 +207104,331.52,84.2268 +207105,326.22,79.979 +207106,327.47,81.3889 +207107,328.78,82.8206 +207108,330.14,84.276 +207109,324.94,79.978 +207110,326.16,81.4046 +207111,327.43,82.8527 +207112,328.76,84.324 +207113,323.66,79.978 +207114,324.85,81.4207 +207115,326.08,82.8844 +207116,327.38,84.3709 +207117,322.38,79.979 +207118,323.54,81.4371 +207119,324.74,82.9157 +207120,325.99,84.4166 +207121,321.11,79.981 +207122,322.22,81.454 +207123,323.39,82.9467 +207124,324.61,84.4611 +207125,319.83,79.985 +207126,320.91,81.4712 +207127,322.04,82.9772 +207128,323.23,84.5044 +207129,318.56,79.99 +207130,319.6,81.4888 +207131,320.69,83.0074 +207132,321.84,84.5466 +207133,317.28,79.995 +207134,318.29,81.5068 +207135,319.35,83.0371 +207136,320.45,84.5876 +207137,316.01,80.0024 +207138,316.98,81.5253 +207139,318,83.0665 +207140,319.06,84.6273 +207141,314.74,80.0107 +207142,315.67,81.5441 +207143,316.65,83.0954 +207144,317.68,84.6659 +207145,313.47,80.0202 +207146,314.36,81.5634 +207147,315.3,83.124 +207148,316.29,84.7032 +207149,312.2,80.0309 +207150,313.05,81.583 +207151,313.95,83.1521 +207152,314.9,84.7393 +207153,310.93,80.0429 +207154,311.74,81.6031 +207155,312.6,83.1799 +207156,313.51,84.7741 +207157,309.66,80.0561 +207158,310.43,81.6236 +207159,311.25,83.2072 +207160,312.11,84.8077 +207161,308.39,80.0706 +207162,309.12,81.6445 +207163,309.9,83.2341 +207164,310.72,84.8401 +207165,307.12,80.0863 +207166,307.81,81.6658 +207167,308.55,83.2606 +207168,309.33,84.8712 +207169,305.85,80.1033 +207170,306.5,81.6876 +207171,307.2,83.2866 +207172,307.94,84.901 +207173,304.58,80.1216 +207174,305.2,81.7097 +207175,305.85,83.3123 +207176,306.54,84.9296 +207177,303.32,80.1411 +207178,303.89,81.7323 +207179,304.5,83.3375 +207180,305.15,84.9569 +207181,302.05,80.162 +207182,302.58,81.7554 +207183,303.15,83.3623 +207184,303.76,84.983 +207185,300.78,80.1841 +207186,301.27,81.7788 +207187,301.79,83.3867 +207188,302.36,85.0078 +207189,299.52,80.2074 +207190,299.96,81.8027 +207191,300.44,83.4106 +207192,300.97,85.0313 +207193,298.25,80.2321 +207194,298.65,81.827 +207195,299.09,83.4341 +207196,299.57,85.0536 +207197,296.99,80.2581 +207198,297.34,81.8517 +207199,297.74,83.4572 +207200,298.17,85.0746 +207201,295.72,80.2853 +207202,296.04,81.8769 +207203,296.39,83.4799 +207204,296.78,85.0943 +207205,294.45,80.3139 +207206,294.73,81.9025 +207207,295.04,83.5022 +207208,295.38,85.1128 +207209,293.19,80.3437 +207210,293.42,81.9285 +207211,293.68,83.524 +207212,293.99,85.13 +207213,291.92,80.3748 +207214,292.11,81.9549 +207215,292.33,83.5454 +207216,292.59,85.146 +207217,290.66,80.4072 +207218,290.8,81.9818 +207219,290.98,83.5664 +207220,291.19,85.1607 +207221,289.39,80.4409 +207222,289.49,82.0091 +207223,289.63,83.587 +207224,289.8,85.1742 +207225,288.13,80.4758 +207226,288.19,82.0368 +207227,288.28,83.6072 +207228,288.4,85.1864 +207229,286.87,80.5121 +207230,286.88,82.0649 +207231,286.92,83.6269 +207232,287,85.1974 +207233,285.6,80.5495 +207234,285.57,82.0934 +207235,285.57,83.6463 +207236,285.61,85.2072 +207237,284.34,80.5883 +207238,284.26,82.1224 +207239,284.22,83.6652 +207240,284.21,85.2157 +207241,283.07,80.6283 +207242,282.95,82.1518 +207243,282.87,83.6837 +207244,282.81,85.2231 +207245,281.81,80.6695 +207246,281.64,82.1816 +207247,281.51,83.7018 +207248,281.41,85.2292 +207249,280.54,80.712 +207250,280.34,82.2118 +207251,280.16,83.7195 +207252,280.02,85.2341 +207253,279.28,80.7557 +207254,279.03,82.2424 +207255,278.81,83.7368 +207256,278.62,85.2379 +207257,278.01,80.8007 +207258,277.72,82.2734 +207259,277.46,83.7537 +207260,277.23,85.2405 +207261,276.74,80.8468 +207262,276.41,82.3048 +207263,276.1,83.7702 +207264,275.83,85.2419 +207265,275.48,80.8941 +207266,275.1,82.3366 +207267,274.75,83.7863 +207268,274.43,85.2422 +207269,274.21,80.9427 +207270,273.79,82.3688 +207271,273.4,83.8021 +207272,273.04,85.2413 +207273,272.94,80.9924 +207274,272.48,82.4013 +207275,272.05,83.8174 +207276,271.64,85.2393 +207277,271.68,81.0433 +207278,271.17,82.4343 +207279,270.7,83.8324 +207280,270.25,85.2362 +207281,270.41,81.0953 +207282,269.86,82.4676 +207283,269.35,83.847 +207284,268.86,85.2319 +207285,269.14,81.1484 +207286,268.55,82.5013 +207287,267.99,83.8612 +207288,267.46,85.2266 +207289,267.87,81.2027 +207290,267.24,82.5354 +207291,266.64,83.8751 +207292,266.07,85.2202 +207293,266.6,81.2581 +207294,265.93,82.5698 +207295,265.29,83.8886 +207296,264.68,85.2128 +207297,265.33,81.3146 +207298,264.62,82.6046 +207299,263.94,83.9018 +207300,263.28,85.2043 +207301,264.06,81.3721 +207302,263.31,82.6398 +207303,262.59,83.9146 +207304,261.89,85.1948 +207305,262.79,81.4307 +207306,262,82.6753 +207307,261.24,83.927 +207308,260.5,85.1843 +207309,261.52,81.4904 +207310,260.69,82.7111 +207311,259.89,83.9392 +207312,259.11,85.1728 +207313,260.25,81.551 +207314,259.38,82.7473 +207315,258.54,83.951 +207316,257.72,85.1603 +207317,258.97,81.6127 +207318,258.07,82.7838 +207319,257.19,83.9624 +207320,256.33,85.1469 +207321,257.7,81.6754 +207322,256.75,82.8206 +207323,255.84,83.9736 +207324,254.95,85.1326 +207325,256.43,81.739 +207326,255.44,82.8577 +207327,254.49,83.9844 +207328,253.56,85.1173 +207329,255.15,81.8035 +207330,254.13,82.8952 +207331,253.14,83.995 +207332,252.17,85.1011 +207333,253.88,81.869 +207334,252.82,82.9329 +207335,251.79,84.0052 +207336,250.79,85.0841 +207337,252.6,81.9354 +207338,251.5,82.971 +207339,250.44,84.0152 +207340,249.4,85.0662 +207341,251.32,82.0027 +207342,250.19,83.0093 +207343,249.09,84.0248 +207344,248.02,85.0474 +207345,250.04,82.0708 +207346,248.88,83.0479 +207347,247.74,84.0342 +207348,246.63,85.0279 +207349,248.76,82.1397 +207350,247.56,83.0868 +207351,246.39,84.0433 +207352,245.25,85.0075 +207353,247.48,82.2095 +207354,246.25,83.1259 +207355,245.04,84.0522 +207356,243.87,84.9864 +207357,246.2,82.28 +207358,244.93,83.1653 +207359,243.7,84.0608 +207360,242.49,84.9646 +207361,244.92,82.3513 +207362,243.62,83.205 +207363,242.35,84.0691 +207364,241.11,84.942 +207365,243.63,82.4234 +207366,242.3,83.2448 +207367,241,84.0772 +207368,239.73,84.9187 +207369,242.35,82.4961 +207370,240.99,83.2849 +207371,239.65,84.0851 +207372,238.35,84.8948 +207373,241.06,82.5696 +207374,239.67,83.3253 +207375,238.31,84.0928 +207376,236.98,84.8702 +207377,239.78,82.6437 +207378,238.35,83.3658 +207379,236.96,84.1002 +207380,235.6,84.8449 +207381,238.49,82.7184 +207382,237.04,83.4066 +207383,235.61,84.1075 +207384,234.23,84.8191 +207385,237.2,82.7937 +207386,235.72,83.4475 +207387,234.27,84.1145 +207388,232.85,84.7927 +207389,235.91,82.8696 +207390,234.4,83.4887 +207391,232.92,84.1214 +207392,231.48,84.7657 +207393,234.62,82.9461 +207394,233.08,83.53 +207395,231.58,84.128 +207396,230.11,84.7383 +207397,233.33,83.0231 +207398,231.76,83.5715 +207399,230.23,84.1346 +207400,228.74,84.7103 +207401,232.03,83.1006 +207402,230.44,83.6131 +207403,228.89,84.1409 +207404,227.37,84.6818 +207405,230.74,83.1785 +207406,229.12,83.6549 +207407,227.55,84.1471 +207408,226.01,84.6529 +207409,229.44,83.2569 +207410,227.8,83.6969 +207411,226.2,84.1531 +207412,224.64,84.6236 +207413,228.14,83.3357 +207414,226.48,83.7389 +207415,224.86,84.159 +207416,223.27,84.5939 +207417,226.85,83.4149 +207418,225.16,83.7811 +207419,223.52,84.1648 +207420,221.91,84.5638 +207421,225.55,83.4944 +207422,223.84,83.8234 +207423,222.18,84.1705 +207424,220.55,84.5334 +207425,224.24,83.5743 +207426,222.52,83.8658 +207427,220.83,84.176 +207428,219.19,84.5026 +207429,222.94,83.6544 +207430,221.2,83.9084 +207431,219.49,84.1815 +207432,217.83,84.4716 +207433,221.64,83.7348 +207434,219.87,83.9509 +207435,218.15,84.1869 +207436,216.47,84.4403 +207437,220.33,83.8154 +207438,218.55,83.9936 +207439,216.81,84.1922 +207440,215.11,84.4088 +207441,219.02,83.8962 +207442,217.23,84.0363 +207443,215.47,84.1974 +207444,213.76,84.3771 +207445,217.72,83.9772 +207446,215.9,84.0791 +207447,214.13,84.2026 +207448,212.4,84.3453 +207449,216.41,84.0583 +207450,214.58,84.1219 +207451,212.79,84.2077 +207452,211.05,84.3133 +207453,215.1,84.1396 +207454,213.25,84.1647 +207455,211.45,84.2127 +207456,209.7,84.2811 +207457,213.78,84.2209 +207458,211.92,84.2076 +207459,210.11,84.2178 +207460,208.35,84.2489 +207461,212.47,84.3022 +207462,210.6,84.2505 +207463,208.78,84.2228 +207464,207,84.2166 +207465,211.15,84.3836 +207466,209.27,84.2934 +207467,207.44,84.2278 +207468,205.65,84.1843 +207469,209.84,84.4649 +207470,207.94,84.3363 +207471,206.1,84.2328 +207472,204.3,84.152 +207473,208.52,84.5462 +207474,206.62,84.3791 +207475,204.76,84.2379 +207476,202.96,84.1198 +207477,207.2,84.6275 +207478,205.29,84.422 +207479,203.43,84.2429 +207480,201.61,84.0876 +207481,205.88,84.7086 +207482,203.96,84.4648 +207483,202.09,84.248 +207484,200.27,84.0554 +207485,204.55,84.7895 +207486,202.63,84.5075 +207487,200.76,84.2531 +207488,198.93,84.0234 +207489,203.23,84.8703 +207490,201.3,84.5502 +207491,199.42,84.2582 +207492,197.59,83.9915 +207493,201.9,84.9509 +207494,199.97,84.5928 +207495,198.09,84.2634 +207496,196.25,83.9598 +207497,200.58,85.0313 +207498,198.64,84.6354 +207499,196.75,84.2687 +207500,194.92,83.9283 +207501,199.25,85.1114 +207502,197.3,84.6778 +207503,195.42,84.2741 +207504,193.58,83.8971 +207505,197.92,85.1912 +207506,195.97,84.7202 +207507,194.08,84.2795 +207508,192.25,83.8661 +207509,196.58,85.2706 +207510,194.64,84.7624 +207511,192.75,84.285 +207512,190.91,83.8353 +207513,195.25,85.3498 +207514,193.31,84.8045 +207515,191.42,84.2907 +207516,189.58,83.8049 +207517,193.92,85.4285 +207518,191.97,84.8465 +207519,190.09,84.2964 +207520,188.25,83.7749 +207521,192.58,85.5068 +207522,190.64,84.8884 +207523,188.76,84.3023 +207524,186.93,83.7452 +207525,191.24,85.5847 +207526,189.3,84.9301 +207527,187.43,84.3083 +207528,185.6,83.7159 +207529,189.9,85.6621 +207530,187.97,84.9717 +207531,186.09,84.3145 +207532,184.27,83.687 +207533,188.56,85.7389 +207534,186.63,85.0131 +207535,184.76,84.3208 +207536,182.95,83.6586 +207537,187.22,85.8153 +207538,185.3,85.0543 +207539,183.43,84.3272 +207540,181.63,83.6306 +207541,185.87,85.8911 +207542,183.96,85.0953 +207543,182.11,84.3339 +207544,180.3,83.6032 +207545,184.53,85.9663 +207546,182.62,85.1361 +207547,180.78,84.3407 +207548,178.98,83.5763 +207549,183.18,86.0409 +207550,181.28,85.1768 +207551,179.45,84.3477 +207552,177.67,83.55 +207553,181.83,86.1148 +207554,179.95,85.2172 +207555,178.12,84.3549 +207556,176.35,83.5242 +207557,180.48,86.1881 +207558,178.61,85.2574 +207559,176.79,84.3623 +207560,175.03,83.4991 +207561,179.13,86.2606 +207562,177.27,85.2973 +207563,175.46,84.3699 +207564,173.72,83.4746 +207565,177.78,86.3325 +207566,175.93,85.3371 +207567,174.14,84.3778 +207568,172.4,83.4507 +207569,176.43,86.4036 +207570,174.59,85.3765 +207571,172.81,84.3858 +207572,171.09,83.4276 +207573,175.07,86.4739 +207574,173.25,85.4158 +207575,171.49,84.3941 +207576,169.78,83.4052 +207577,173.71,86.5434 +207578,171.9,85.4547 +207579,170.16,84.4027 +207580,168.47,83.3835 +207581,172.35,86.6121 +207582,170.56,85.4934 +207583,168.84,84.4115 +207584,167.16,83.3625 +207585,170.99,86.6799 +207586,169.22,85.5318 +207587,167.51,84.4206 +207588,165.85,83.3424 +207589,169.63,86.7468 +207590,167.88,85.5699 +207591,166.19,84.4299 +207592,164.55,83.3231 +207593,168.27,86.8129 +207594,166.53,85.6077 +207595,164.86,84.4396 +207596,163.24,83.3046 +207597,166.91,86.878 +207598,165.19,85.6452 +207599,163.54,84.4495 +207600,161.94,83.2869 +207601,165.54,86.9422 +207602,163.85,85.6824 +207603,162.22,84.4597 +207604,160.64,83.2701 +207605,164.17,87.0054 +207606,162.5,85.7192 +207607,160.89,84.4702 +207608,159.34,83.2543 +207609,162.81,87.0676 +207610,161.16,85.7558 +207611,159.57,84.481 +207612,158.04,83.2393 +207613,161.44,87.1288 +207614,159.81,85.792 +207615,158.25,84.4922 +207616,156.74,83.2253 +207617,160.07,87.189 +207618,158.46,85.8279 +207619,156.93,84.5036 +207620,155.44,83.2123 +207621,158.7,87.2481 +207622,157.12,85.8634 +207623,155.6,84.5154 +207624,154.14,83.2002 +207625,157.32,87.3062 +207626,155.77,85.8985 +207627,154.28,84.5275 +207628,152.85,83.1892 +207629,155.95,87.3631 +207630,154.42,85.9333 +207631,152.96,84.54 +207632,151.55,83.1791 +207633,154.57,87.419 +207634,153.08,85.9678 +207635,151.64,84.5528 +207636,150.26,83.1701 +207637,153.2,87.4737 +207638,151.73,86.0018 +207639,150.32,84.5659 +207640,148.97,83.1622 +207641,151.82,87.5273 +207642,150.38,86.0355 +207643,149,84.5794 +207644,147.67,83.1553 +207645,150.44,87.5798 +207646,149.03,86.0688 +207647,147.68,84.5933 +207648,146.38,83.1496 +207649,149.06,87.631 +207650,147.68,86.1017 +207651,146.36,84.6076 +207652,145.09,83.1449 +207653,147.68,87.6811 +207654,146.33,86.1342 +207655,145.04,84.6222 +207656,143.81,83.1414 +207657,146.3,87.73 +207658,144.98,86.1664 +207659,143.72,84.6372 +207660,142.52,83.139 +207661,144.92,87.7777 +207662,143.63,86.1981 +207663,142.41,84.6526 +207664,141.23,83.1377 +207665,143.53,87.8241 +207666,142.28,86.2294 +207667,141.09,84.6683 +207668,139.94,83.1376 +207669,142.15,87.8693 +207670,140.93,86.2602 +207671,139.77,84.6845 +207672,138.66,83.1388 +207673,140.76,87.9132 +207674,139.58,86.2907 +207675,138.45,84.7011 +207676,137.37,83.1411 +207677,139.38,87.9559 +207678,138.23,86.3208 +207679,137.13,84.718 +207680,136.09,83.1446 +207681,137.99,87.9973 +207682,136.88,86.3504 +207683,135.82,84.7354 +207684,134.81,83.1493 +207685,136.6,88.0375 +207686,135.52,86.3796 +207687,134.5,84.7532 +207688,133.52,83.1553 +207689,135.21,88.0763 +207690,134.17,86.4083 +207691,133.18,84.7714 +207692,132.24,83.1625 +207693,133.82,88.1138 +207694,132.82,86.4367 +207695,131.87,84.79 +207696,130.96,83.1709 +207697,132.43,88.1501 +207698,131.47,86.4646 +207699,130.55,84.809 +207700,129.68,83.1806 +207701,131.04,88.185 +207702,130.11,86.492 +207703,129.23,84.8284 +207704,128.4,83.1916 +207705,129.65,88.2186 +207706,128.76,86.519 +207707,127.92,84.8483 +207708,127.12,83.2039 +207709,128.26,88.2508 +207710,127.4,86.5456 +207711,126.6,84.8685 +207712,125.84,83.2174 +207713,126.86,88.2818 +207714,126.05,86.5717 +207715,125.29,84.8893 +207716,124.57,83.2323 +207717,125.47,88.3114 +207718,124.7,86.5973 +207719,123.97,84.9104 +207720,123.29,83.2484 +207721,124.08,88.3397 +207722,123.34,86.6226 +207723,122.65,84.932 +207724,122.01,83.2659 +207725,122.68,88.3666 +207726,121.99,86.6473 +207727,121.34,84.954 +207728,120.73,83.2846 +207729,121.29,88.3922 +207730,120.63,86.6716 +207731,120.02,84.9764 +207732,119.46,83.3047 +207733,119.89,88.4164 +207734,119.28,86.6955 +207735,118.71,84.9992 +207736,118.18,83.3261 +207737,118.49,88.4393 +207738,117.92,86.7189 +207739,117.39,85.0225 +207740,116.9,83.3487 +207741,117.1,88.4609 +207742,116.57,86.7418 +207743,116.08,85.0463 +207744,115.63,83.3728 +207745,115.7,88.4811 +207746,115.21,86.7643 +207747,114.76,85.0704 +207748,114.35,83.3981 +207749,114.3,88.5 +207750,113.86,86.7864 +207751,113.45,85.095 +207752,113.08,83.4248 +207753,112.91,88.5175 +207754,112.5,86.808 +207755,112.13,85.1201 +207756,111.8,83.4527 +207757,111.51,88.5337 +207758,111.14,86.8291 +207759,110.82,85.1455 +207760,110.53,83.482 +207761,110.11,88.5486 +207762,109.79,86.8498 +207763,109.5,85.1714 +207764,109.26,83.5126 +207765,108.71,88.5621 +207766,108.43,86.87 +207767,108.19,85.1977 +207768,107.98,83.5446 +207769,107.31,88.5743 +207770,107.08,86.8898 +207771,106.87,85.2245 +207772,106.71,83.5778 +207773,105.92,88.5852 +207774,105.72,86.9091 +207775,105.56,85.2517 +207776,105.43,83.6124 +207777,104.52,88.5948 +207778,104.36,86.928 +207779,104.24,85.2793 +207780,104.16,83.6482 +207781,103.12,88.6031 +207782,103.01,86.9465 +207783,102.93,85.3073 +207784,102.88,83.6854 +207785,101.72,88.6101 +207786,101.65,86.9645 +207787,101.61,85.3358 +207788,101.61,83.7239 +207789,100.32,88.6158 +207790,100.29,86.982 +207791,100.3,85.3646 +207792,100.34,83.7636 +207793,98.923,88.6203 +207794,98.937,86.9992 +207795,98.984,85.3939 +207796,99.062,83.8046 +207797,97.524,88.6234 +207798,97.581,87.0159 +207799,97.669,85.4236 +207800,97.788,83.8469 +207801,96.126,88.6253 +207802,96.224,87.0321 +207803,96.354,85.4538 +207804,96.513,83.8905 +207805,94.728,88.626 +207806,94.868,87.048 +207807,95.039,85.4843 +207808,95.238,83.9353 +207809,93.33,88.6254 +207810,93.512,87.0634 +207811,93.723,85.5152 +207812,93.963,83.9814 +207813,91.932,88.6236 +207814,92.155,87.0784 +207815,92.408,85.5465 +207816,92.688,84.0287 +207817,90.534,88.6206 +207818,90.799,87.0929 +207819,91.092,85.5783 +207820,91.413,84.0773 +207821,89.137,88.6164 +207822,89.443,87.1071 +207823,89.776,85.6104 +207824,90.137,84.127 +207825,87.74,88.611 +207826,88.086,87.1209 +207827,88.46,85.6429 +207828,88.861,84.1779 +207829,86.343,88.6044 +207830,86.73,87.1342 +207831,87.144,85.6758 +207832,87.584,84.2301 +207833,84.947,88.5967 +207834,85.374,87.1472 +207835,85.828,85.7091 +207836,86.307,84.2834 +207837,83.551,88.5879 +207838,84.018,87.1597 +207839,84.512,85.7427 +207840,85.03,84.3378 +207841,82.155,88.5779 +207842,82.662,87.1719 +207843,83.195,85.7767 +207844,83.752,84.3935 +207845,80.76,88.5668 +207846,81.307,87.1837 +207847,81.878,85.8111 +207848,82.474,84.4502 +207849,79.366,88.5547 +207850,79.951,87.1951 +207851,80.561,85.8458 +207852,81.195,84.508 +207853,77.972,88.5415 +207854,78.596,87.2061 +207855,79.244,85.8809 +207856,79.916,84.567 +207857,76.578,88.5272 +207858,77.24,87.2168 +207859,77.926,85.9163 +207860,78.636,84.627 +207861,75.185,88.5119 +207862,75.885,87.2271 +207863,76.609,85.9521 +207864,77.355,84.6881 +207865,73.793,88.4955 +207866,74.53,87.2371 +207867,75.291,85.9882 +207868,76.074,84.7502 +207869,72.402,88.4782 +207870,73.176,87.2467 +207871,73.973,86.0246 +207872,74.792,84.8134 +207873,71.011,88.4599 +207874,71.821,87.256 +207875,72.654,86.0614 +207876,73.51,84.8775 +207877,69.62,88.4407 +207878,70.467,87.265 +207879,71.336,86.0984 +207880,72.227,84.9426 +207881,68.231,88.4205 +207882,69.112,87.2736 +207883,70.017,86.1358 +207884,70.943,85.0087 +207885,66.842,88.3995 +207886,67.758,87.2819 +207887,68.697,86.1735 +207888,69.658,85.0757 +207889,65.454,88.3775 +207890,66.405,87.2899 +207891,67.378,86.2114 +207892,68.373,85.1437 +207893,64.067,88.3547 +207894,65.051,87.2976 +207895,66.058,86.2496 +207896,67.086,85.2125 +207897,62.68,88.331 +207898,63.698,87.305 +207899,64.738,86.2881 +207900,65.799,85.2822 +207901,61.295,88.3066 +207902,62.345,87.3121 +207903,63.417,86.3269 +207904,64.511,85.3527 +207905,59.91,88.2813 +207906,60.992,87.3189 +207907,62.096,86.366 +207908,63.222,85.4241 +207909,58.526,88.2552 +207910,59.639,87.3254 +207911,60.775,86.4052 +207912,61.933,85.4963 +207913,57.143,88.2285 +207914,58.287,87.3317 +207915,59.454,86.4448 +207916,60.642,85.5692 +207917,55.761,88.201 +207918,56.935,87.3378 +207919,58.132,86.4845 +207920,59.35,85.6429 +207921,54.38,88.1728 +207922,55.583,87.3435 +207923,56.809,86.5245 +207924,58.058,85.7173 +207925,53,88.1439 +207926,54.232,87.3491 +207927,55.487,86.5647 +207928,56.764,85.7924 +207929,51.621,88.1144 +207930,52.881,87.3544 +207931,54.164,86.6051 +207932,55.469,85.8681 +207933,50.243,88.0843 +207934,51.53,87.3595 +207935,52.84,86.6457 +207936,54.174,85.9445 +207937,48.866,88.0536 +207938,50.18,87.3644 +207939,51.517,86.6865 +207940,52.877,86.0216 +207941,47.49,88.0223 +207942,48.83,87.3691 +207943,50.193,86.7275 +207944,51.579,86.0992 +207945,46.116,87.9905 +207946,47.48,87.3736 +207947,48.868,86.7686 +207948,50.28,86.1773 +207949,44.742,87.9582 +207950,46.13,87.3779 +207951,47.543,86.8099 +207952,48.98,86.256 +207953,43.369,87.9254 +207954,44.781,87.382 +207955,46.218,86.8513 +207956,47.679,86.3352 +207957,41.998,87.8922 +207958,43.432,87.3859 +207959,44.892,86.8929 +207960,46.376,86.4148 +207961,40.627,87.8585 +207962,42.084,87.3897 +207963,43.566,86.9346 +207964,45.073,86.4949 +207965,39.258,87.8245 +207966,40.736,87.3934 +207967,42.239,86.9765 +207968,43.768,86.5754 +207969,37.89,87.7901 +207970,39.388,87.3969 +207971,40.912,87.0184 +207972,42.462,86.6562 +207973,36.524,87.7553 +207974,38.041,87.4003 +207975,39.584,87.0605 +207976,41.155,86.7375 +207977,35.158,87.7202 +207978,36.694,87.4036 +207979,38.256,87.1026 +207980,39.846,86.819 +207981,33.794,87.6849 +207982,35.347,87.4068 +207983,36.928,87.1448 +207984,38.536,86.9008 +207985,32.43,87.6493 +207986,34.001,87.4098 +207987,35.599,87.1871 +207988,37.225,86.9829 +207989,31.069,87.6135 +207990,32.655,87.4128 +207991,34.269,87.2294 +207992,35.913,87.0652 +207993,29.708,87.5775 +207994,31.309,87.4157 +207995,32.94,87.2718 +207996,34.6,87.1477 +207997,28.349,87.5413 +207998,29.964,87.4186 +207999,31.609,87.3143 +208000,33.285,87.2303 +208001,26.99,87.505 +208002,28.619,87.4213 +208003,30.279,87.3567 +208004,31.968,87.3131 +208005,25.634,87.4685 +208006,27.275,87.4241 +208007,28.947,87.3992 +208008,30.651,87.396 +208009,24.278,87.4321 +208010,25.931,87.4267 +208011,27.616,87.4417 +208012,29.332,87.4789 +208013,22.924,87.3955 +208014,24.588,87.4294 +208015,26.283,87.4842 +208016,28.012,87.5618 +208017,21.571,87.359 +208018,23.245,87.4321 +208019,24.951,87.5266 +208020,26.69,87.6448 +208021,20.219,87.3224 +208022,21.902,87.4347 +208023,23.617,87.5691 +208024,25.367,87.7277 +208025,18.869,87.286 +208026,20.56,87.4373 +208027,22.284,87.6115 +208028,24.043,87.8106 +208029,17.52,87.2495 +208030,19.218,87.44 +208031,20.95,87.6538 +208032,22.717,87.8934 +208033,16.172,87.2132 +208034,17.876,87.4427 +208035,19.615,87.6961 +208036,21.39,87.976 +208037,14.826,87.177 +208038,16.535,87.4454 +208039,18.28,87.7384 +208040,20.061,88.0585 +208041,13.481,87.141 +208042,15.194,87.4481 +208043,16.944,87.7805 +208044,18.732,88.1407 +208045,12.137,87.1052 +208046,13.854,87.4509 +208047,15.608,87.8226 +208048,17.4,88.2228 +208049,10.794,87.0696 +208050,12.514,87.4538 +208051,14.271,87.8646 +208052,16.067,88.3046 +208053,9.4532,87.0343 +208054,11.175,87.4567 +208055,12.934,87.9064 +208056,14.733,88.3861 +208057,8.1134,86.9992 +208058,9.836,87.4597 +208059,11.596,87.9482 +208060,13.398,88.4672 +208061,6.7749,86.9644 +208062,8.4974,87.4628 +208063,10.258,87.9898 +208064,12.061,88.548 +208065,5.4377,86.93 +208066,7.1593,87.4661 +208067,8.9196,88.0312 +208068,10.722,88.6285 +208069,4.1019,86.896 +208070,5.8215,87.4694 +208071,7.5804,88.0725 +208072,9.3825,88.7085 +208073,2.7674,86.8623 +208074,4.4842,87.4728 +208075,6.2408,88.1137 +208076,8.0412,88.788 +208077,1.4341,86.8291 +208078,3.1472,87.4764 +208079,4.9006,88.1547 +208080,6.6986,88.8671 +208081,0.10222,86.7963 +208082,1.8107,87.4801 +208083,3.56,88.1955 +208084,5.3545,88.9457 +208085,358.77,86.764 +208086,0.47461,87.484 +208087,2.2188,88.2361 +208088,4.009,89.02368 +208089,357.44,86.7322 +208090,359.14,87.488 +208091,0.8772,88.2765 +208092,2.6621,89.10112 +208093,356.11,86.7009 +208094,357.8,87.4922 +208095,359.54,88.3167 +208096,1.3138,89.17796 +208097,354.79,86.6702 +208098,356.47,87.4966 +208099,358.19,88.3567 +208100,359.96,89.25417 +208101,353.46,86.6401 +208102,355.13,87.5012 +208103,356.85,88.3964 +208104,358.61,89.32971 +208105,352.14,86.6107 +208106,353.8,87.5059 +208107,355.51,88.4359 +208108,357.26,89.40456 +208109,350.81,86.5818 +208110,352.47,87.5109 +208111,354.16,88.4752 +208112,355.91,89.47869 +208113,349.49,86.5536 +208114,351.13,87.5161 +208115,352.82,88.5142 +208116,354.55,89.55206 +208117,348.17,86.5262 +208118,349.8,87.5215 +208119,351.47,88.5529 +208120,353.19,89.62466 +208121,346.85,86.4994 +208122,348.47,87.5271 +208123,350.13,88.5914 +208124,351.84,89.69645 +208125,345.54,86.4734 +208126,347.14,87.533 +208127,348.78,88.6295 +208128,350.48,89.76741 +208129,344.22,86.4482 +208130,345.8,87.5391 +208131,347.43,88.6674 +208132,349.12,89.83751 +208133,342.9,86.4237 +208134,344.47,87.5455 +208135,346.09,88.705 +208136,347.76,89.906725 +208137,341.59,86.4001 +208138,343.14,87.5521 +208139,344.74,88.7423 +208140,346.39,89.975025 +208141,340.27,86.3773 +208142,341.81,87.559 +208143,343.39,88.7792 +208144,345.03,90.042386 +208145,338.96,86.3554 +208146,340.48,87.5662 +208147,342.04,88.8158 +208148,343.66,90.10878 +208149,337.65,86.3344 +208150,339.15,87.5737 +208151,340.7,88.8521 +208152,342.29,90.1742 +208153,336.34,86.3143 +208154,337.82,87.5815 +208155,339.35,88.888 +208156,340.93,90.23859 +208157,335.03,86.2951 +208158,336.49,87.5896 +208159,338,88.9236 +208160,339.56,90.30196 +208161,333.72,86.2769 +208162,335.16,87.598 +208163,336.65,88.9588 +208164,338.19,90.36426 +208165,332.42,86.2596 +208166,333.83,87.6067 +208167,335.3,88.9937 +208168,336.81,90.42549 +208169,331.11,86.2434 +208170,332.51,87.6157 +208171,333.95,89.02813 +208172,335.44,90.48561 +208173,329.81,86.2281 +208174,331.18,87.6251 +208175,332.59,89.06223 +208176,334.07,90.54461 +208177,328.5,86.2139 +208178,329.85,87.6348 +208179,331.24,89.09594 +208180,332.69,90.60247 +208181,327.2,86.2008 +208182,328.52,87.6449 +208183,329.89,89.12926 +208184,331.31,90.65916 +208185,325.9,86.1887 +208186,327.2,87.6553 +208187,328.54,89.16217 +208188,329.94,90.71467 +208189,324.6,86.1778 +208190,325.87,87.666 +208191,327.19,89.19468 +208192,328.56,90.76898 +208193,323.3,86.1679 +208194,324.54,87.6771 +208195,325.83,89.22677 +208196,327.18,90.82207 +208197,322,86.1592 +208198,323.22,87.6886 +208199,324.48,89.25845 +208200,325.8,90.87392 +208201,320.7,86.1516 +208202,321.89,87.7005 +208203,323.12,89.2897 +208204,324.41,90.92452 +208205,319.4,86.1452 +208206,320.56,87.7127 +208207,321.77,89.32052 +208208,323.03,90.97385 +208209,318.11,86.1399 +208210,319.24,87.7253 +208211,320.42,89.35091 +208212,321.65,91.0219 +208213,316.81,86.1359 +208214,317.91,87.7383 +208215,319.06,89.38085 +208216,320.26,91.0686 +208217,315.52,86.133 +208218,316.59,87.7517 +208219,317.71,89.41035 +208220,318.88,91.1141 +208221,314.22,86.1314 +208222,315.26,87.7655 +208223,316.35,89.43941 +208224,317.49,91.1582 +208225,312.93,86.1309 +208226,313.94,87.7797 +208227,314.99,89.468 +208228,316.1,91.2009 +208229,311.64,86.1318 +208230,312.61,87.7943 +208231,313.64,89.49614 +208232,314.71,91.2424 +208233,310.34,86.1339 +208234,311.29,87.8093 +208235,312.28,89.52382 +208236,313.32,91.2824 +208237,309.05,86.1372 +208238,309.97,87.8247 +208239,310.92,89.55103 +208240,311.93,91.3211 +208241,307.76,86.1419 +208242,308.64,87.8405 +208243,309.57,89.57778 +208244,310.54,91.3584 +208245,306.47,86.1478 +208246,307.32,87.8568 +208247,308.21,89.60405 +208248,309.15,91.3943 +208249,305.18,86.155 +208250,306,87.8735 +208251,306.85,89.62985 +208252,307.76,91.4288 +208253,303.89,86.1635 +208254,304.67,87.8905 +208255,305.49,89.65517 +208256,306.37,91.4619 +208257,302.61,86.1733 +208258,303.35,87.9081 +208259,304.14,89.68001 +208260,304.97,91.4936 +208261,301.32,86.1845 +208262,302.03,87.926 +208263,302.78,89.70437 +208264,303.58,91.5239 +208265,300.03,86.197 +208266,300.7,87.9444 +208267,301.42,89.72824 +208268,302.18,91.5527 +208269,298.74,86.2108 +208270,299.38,87.9632 +208271,300.06,89.75163 +208272,300.79,91.5802 +208273,297.46,86.2259 +208274,298.06,87.9824 +208275,298.7,89.77453 +208276,299.39,91.6062 +208277,296.17,86.2424 +208278,296.74,88.0021 +208279,297.34,89.79694 +208280,297.99,91.6307 +208281,294.88,86.2603 +208282,295.41,88.0222 +208283,295.98,89.81886 +208284,296.6,91.6539 +208285,293.6,86.2794 +208286,294.09,88.0428 +208287,294.62,89.84029 +208288,295.2,91.6756 +208289,292.31,86.3 +208290,292.77,88.0638 +208291,293.26,89.86123 +208292,293.8,91.6958 +208293,291.03,86.3219 +208294,291.45,88.0852 +208295,291.9,89.88167 +208296,292.4,91.7146 +208297,289.74,86.3451 +208298,290.13,88.1071 +208299,290.54,89.901631 +208300,291.01,91.732 +208301,288.46,86.3697 +208302,288.8,88.1294 +208303,289.18,89.921096 +208304,289.61,91.748 +208305,287.18,86.3956 +208306,287.48,88.1521 +208307,287.82,89.94007 +208308,288.21,91.7625 +208309,285.89,86.4229 +208310,286.16,88.1753 +208311,286.46,89.958554 +208312,286.81,91.7756 +208313,284.61,86.4516 +208314,284.84,88.1989 +208315,285.1,89.976549 +208316,285.41,91.7872 +208317,283.32,86.4816 +208318,283.52,88.2229 +208319,283.74,89.9940555 +208320,284.01,91.7975 +208321,282.04,86.5129 +208322,282.19,88.2474 +208323,282.38,90.011075 +208324,282.61,91.8063 +208325,280.76,86.5456 +208326,280.87,88.2723 +208327,281.02,90.02761 +208328,281.21,91.8138 +208329,279.47,86.5797 +208330,279.55,88.2976 +208331,279.66,90.043662 +208332,279.81,91.8198 +208333,278.19,86.615 +208334,278.23,88.3234 +208335,278.3,90.059233 +208336,278.41,91.8244 +208337,276.9,86.6517 +208338,276.91,88.3496 +208339,276.94,90.074325 +208340,277.01,91.8277 +208341,275.62,86.6897 +208342,275.58,88.3762 +208343,275.58,90.088941 +208344,275.61,91.8296 +208345,274.34,86.729 +208346,274.26,88.4032 +208347,274.22,90.10308 +208348,274.21,91.8301 +208349,273.05,86.7697 +208350,272.94,88.4306 +208351,272.86,90.11676 +208352,272.81,91.8292 +208353,271.77,86.8116 +208354,271.62,88.4585 +208355,271.5,90.12996 +208356,271.41,91.8271 +208357,270.48,86.8548 +208358,270.3,88.4868 +208359,270.14,90.1427 +208360,270.01,91.8236 +208361,269.2,86.8993 +208362,268.97,88.5154 +208363,268.77,90.15499 +208364,268.61,91.8187 +208365,267.91,86.945 +208366,267.65,88.5445 +208367,267.41,90.16681 +208368,267.21,91.8126 +208369,266.63,86.9921 +208370,266.33,88.574 +208371,266.05,90.17819 +208372,265.81,91.8052 +208373,265.34,87.0403 +208374,265,88.6039 +208375,264.69,90.18912 +208376,264.41,91.7965 +208377,264.06,87.0898 +208378,263.68,88.6341 +208379,263.33,90.1996 +208380,263.01,91.7865 +208381,262.77,87.1405 +208382,262.36,88.6648 +208383,261.97,90.20965 +208384,261.61,91.7753 +208385,261.48,87.1924 +208386,261.04,88.6958 +208387,260.61,90.21927 +208388,260.21,91.7629 +208389,260.2,87.2455 +208390,259.71,88.7272 +208391,259.25,90.22846 +208392,258.81,91.7492 +208393,258.91,87.2997 +208394,258.39,88.7589 +208395,257.89,90.23723 +208396,257.42,91.7344 +208397,257.62,87.3551 +208398,257.06,88.7911 +208399,256.53,90.24558 +208400,256.02,91.7184 +208401,256.33,87.4117 +208402,255.74,88.8235 +208403,255.17,90.25352 +208404,254.62,91.7012 +208405,255.04,87.4694 +208406,254.42,88.8564 +208407,253.81,90.26106 +208408,253.23,91.6829 +208409,253.75,87.5282 +208410,253.09,88.8896 +208411,252.45,90.26819 +208412,251.83,91.6634 +208413,252.46,87.588 +208414,251.77,88.9231 +208415,251.09,90.27494 +208416,250.43,91.6429 +208417,251.17,87.649 +208418,250.44,88.9569 +208419,249.73,90.28131 +208420,249.04,91.6213 +208421,249.88,87.711 +208422,249.12,88.9911 +208423,248.37,90.28729 +208424,247.65,91.5987 +208425,248.59,87.774 +208426,247.79,89.02561 +208427,247.01,90.29291 +208428,246.25,91.575 +208429,247.3,87.838 +208430,246.47,89.06042 +208431,245.65,90.29816 +208432,244.86,91.5503 +208433,246,87.903 +208434,245.14,89.09553 +208435,244.3,90.30305 +208436,243.47,91.5246 +208437,244.71,87.969 +208438,243.81,89.13093 +208439,242.94,90.3076 +208440,242.08,91.4979 +208441,243.41,88.0359 +208442,242.49,89.16662 +208443,241.58,90.3118 +208444,240.69,91.4703 +208445,242.12,88.1037 +208446,241.16,89.2026 +208447,240.22,90.31567 +208448,239.3,91.4418 +208449,240.82,88.1724 +208450,239.83,89.23884 +208451,238.86,90.31922 +208452,237.91,91.4124 +208453,239.52,88.242 +208454,238.51,89.27535 +208455,237.5,90.32245 +208456,236.52,91.3821 +208457,238.22,88.3124 +208458,237.18,89.31211 +208459,236.15,90.32537 +208460,235.13,91.351 +208461,236.93,88.3837 +208462,235.85,89.34912 +208463,234.79,90.32799 +208464,233.75,91.3191 +208465,235.63,88.4557 +208466,234.52,89.38637 +208467,233.43,90.33032 +208468,232.36,91.2863 +208469,234.32,88.5286 +208470,233.19,89.42384 +208471,232.08,90.33237 +208472,230.98,91.2529 +208473,233.02,88.6021 +208474,231.86,89.46154 +208475,230.72,90.33414 +208476,229.59,91.2186 +208477,231.72,88.6764 +208478,230.53,89.49945 +208479,229.36,90.33565 +208480,228.21,91.1837 +208481,230.42,88.7514 +208482,229.2,89.53756 +208483,228.01,90.3369 +208484,226.83,91.1481 +208485,229.11,88.827 +208486,227.87,89.57586 +208487,226.65,90.33791 +208488,225.45,91.1118 +208489,227.8,88.9033 +208490,226.54,89.61434 +208491,225.3,90.33867 +208492,224.07,91.0749 +208493,226.5,88.9801 +208494,225.21,89.65299 +208495,223.94,90.33921 +208496,222.69,91.0375 +208497,225.19,89.05756 +208498,223.88,89.69181 +208499,222.59,90.33954 +208500,221.31,90.99941 +208501,223.88,89.13554 +208502,222.55,89.73078 +208503,221.23,90.33965 +208504,219.93,90.96083 +208505,222.57,89.21403 +208506,221.22,89.7699 +208507,219.88,90.33956 +208508,218.56,90.92173 +208509,221.26,89.29301 +208510,219.89,89.80914 +208511,218.53,90.33929 +208512,217.18,90.88215 +208513,219.95,89.37245 +208514,218.55,89.84851 +208515,217.17,90.33883 +208516,215.81,90.84212 +208517,218.63,89.45231 +208518,217.22,89.88799 +208519,215.82,90.33821 +208520,214.44,90.80167 +208521,217.32,89.53256 +208522,215.89,89.927576 +208523,214.47,90.33743 +208524,213.07,90.76082 +208525,216,89.61318 +208526,214.55,89.967251 +208527,213.11,90.3365 +208528,211.7,90.71962 +208529,214.69,89.69412 +208530,213.22,90.0070066 +208531,211.76,90.33542 +208532,210.33,90.67809 +208533,213.37,89.77536 +208534,211.88,90.046833 +208535,210.41,90.33423 +208536,208.96,90.63626 +208537,212.05,89.85687 +208538,210.55,90.086718 +208539,209.06,90.33291 +208540,207.59,90.59415 +208541,210.73,89.938618 +208542,209.21,90.12665 +208543,207.71,90.33148 +208544,206.23,90.55181 +208545,209.41,90.020563 +208546,207.87,90.16662 +208547,206.36,90.32996 +208548,204.86,90.50926 +208549,208.08,90.10268 +208550,206.54,90.20662 +208551,205.01,90.32835 +208552,203.5,90.46654 +208553,206.76,90.18493 +208554,205.2,90.24664 +208555,203.66,90.32666 +208556,202.14,90.42366 +208557,205.44,90.26728 +208558,203.86,90.28666 +208559,202.31,90.32491 +208560,200.78,90.38068 +208561,204.11,90.34971 +208562,202.52,90.32668 +208563,200.96,90.3231 +208564,199.42,90.3376 +208565,202.78,90.43217 +208566,201.19,90.36668 +208567,199.61,90.32125 +208568,198.06,90.29448 +208569,201.45,90.51463 +208570,199.85,90.40665 +208571,198.26,90.31936 +208572,196.7,90.25133 +208573,200.12,90.59706 +208574,198.51,90.44658 +208575,196.92,90.31745 +208576,195.34,90.20819 +208577,198.79,90.67943 +208578,197.17,90.48646 +208579,195.57,90.31552 +208580,193.99,90.16509 +208581,197.46,90.76171 +208582,195.83,90.52629 +208583,194.22,90.31359 +208584,192.64,90.12206 +208585,196.12,90.84385 +208586,194.49,90.56604 +208587,192.87,90.31167 +208588,191.29,90.079126 +208589,194.79,90.92583 +208590,193.15,90.60571 +208591,191.53,90.30976 +208592,189.93,90.036327 +208593,193.45,91.0076 +208594,191.8,90.64528 +208595,190.18,90.30788 +208596,188.58,89.9936911 +208597,192.11,91.0892 +208598,190.46,90.68475 +208599,188.84,90.30605 +208600,187.24,89.951248 +208601,190.77,91.1705 +208602,189.12,90.72411 +208603,187.49,90.30426 +208604,185.89,89.909028 +208605,189.43,91.2514 +208606,187.78,90.76334 +208607,186.15,90.30253 +208608,184.54,89.86706 +208609,188.09,91.3321 +208610,186.43,90.80243 +208611,184.8,90.30087 +208612,183.2,89.82538 +208613,186.74,91.4124 +208614,185.09,90.84137 +208615,183.46,90.29928 +208616,181.86,89.78401 +208617,185.4,91.4923 +208618,183.74,90.88016 +208619,182.11,90.29779 +208620,180.51,89.74299 +208621,184.05,91.5718 +208622,182.4,90.91877 +208623,180.77,90.2964 +208624,179.17,89.70234 +208625,182.7,91.6508 +208626,181.05,90.95721 +208627,179.43,90.29512 +208628,177.83,89.66209 +208629,181.36,91.7293 +208630,179.71,90.99545 +208631,178.09,90.29396 +208632,176.5,89.62228 +208633,180.01,91.8072 +208634,178.36,91.0335 +208635,176.74,90.29293 +208636,175.16,89.58293 +208637,178.65,91.8846 +208638,177.01,91.0713 +208639,175.4,90.29204 +208640,173.82,89.54406 +208641,177.3,91.9615 +208642,175.67,91.1089 +208643,174.06,90.2913 +208644,172.49,89.50572 +208645,175.95,92.0377 +208646,174.32,91.1463 +208647,172.72,90.29072 +208648,171.15,89.46792 +208649,174.59,92.1132 +208650,172.97,91.1834 +208651,171.38,90.29031 +208652,169.82,89.4307 +208653,173.23,92.1881 +208654,171.62,91.2203 +208655,170.04,90.29008 +208656,168.49,89.39409 +208657,171.88,92.2622 +208658,170.27,91.2569 +208659,168.7,90.29004 +208660,167.16,89.3581 +208661,170.52,92.3356 +208662,168.92,91.2933 +208663,167.36,90.29019 +208664,165.83,89.32277 +208665,169.16,92.4082 +208666,167.57,91.3294 +208667,166.02,90.29055 +208668,164.51,89.28813 +208669,167.79,92.48 +208670,166.22,91.3651 +208671,164.68,90.29112 +208672,163.18,89.25419 +208673,166.43,92.551 +208674,164.87,91.4006 +208675,163.35,90.29192 +208676,161.85,89.221 +208677,165.07,92.6211 +208678,163.52,91.4358 +208679,162.01,90.29295 +208680,160.53,89.18857 +208681,163.7,92.6903 +208682,162.17,91.4706 +208683,160.67,90.29422 +208684,159.21,89.15692 +208685,162.33,92.7585 +208686,160.81,91.5051 +208687,159.33,90.29575 +208688,157.89,89.12609 +208689,160.97,92.8259 +208690,159.46,91.5393 +208691,158,90.29753 +208692,156.56,89.0961 +208693,159.6,92.8922 +208694,158.11,91.5731 +208695,156.66,90.29958 +208696,155.25,89.06697 +208697,158.23,92.9576 +208698,156.75,91.6066 +208699,155.32,90.3019 +208700,153.93,89.03873 +208701,156.85,93.0219 +208702,155.4,91.6397 +208703,153.99,90.30451 +208704,152.61,89.0114 +208705,155.48,93.0851 +208706,154.05,91.6724 +208707,152.65,90.30741 +208708,151.29,88.985 +208709,154.11,93.1473 +208710,152.69,91.7048 +208711,151.32,90.3106 +208712,149.98,88.9596 +208713,152.73,93.2084 +208714,151.34,91.7368 +208715,149.98,90.3141 +208716,148.66,88.9351 +208717,151.36,93.2683 +208718,149.98,91.7683 +208719,148.65,90.31792 +208720,147.35,88.9116 +208721,149.98,93.3271 +208722,148.62,91.7995 +208723,147.31,90.32205 +208724,146.04,88.8892 +208725,148.6,93.3846 +208726,147.27,91.8303 +208727,145.98,90.32651 +208728,144.73,88.8678 +208729,147.22,93.441 +208730,145.91,91.8606 +208731,144.65,90.33131 +208732,143.42,88.8474 +208733,145.84,93.4962 +208734,144.55,91.8905 +208735,143.31,90.33644 +208736,142.11,88.8281 +208737,144.46,93.5501 +208738,143.2,91.92 +208739,141.98,90.34192 +208740,140.8,88.81 +208741,143.08,93.6028 +208742,141.84,91.949 +208743,140.65,90.34776 +208744,139.49,88.7929 +208745,141.69,93.6542 +208746,140.48,91.9776 +208747,139.31,90.35395 +208748,138.18,88.777 +208749,140.31,93.7043 +208750,139.12,92.0058 +208751,137.98,90.36051 +208752,136.88,88.7622 +208753,138.92,93.753 +208754,137.76,92.0335 +208755,136.65,90.36744 +208756,135.57,88.7486 +208757,137.54,93.8005 +208758,136.4,92.0607 +208759,135.32,90.37474 +208760,134.27,88.7362 +208761,136.15,93.8465 +208762,135.05,92.0875 +208763,133.99,90.38243 +208764,132.96,88.725 +208765,134.76,93.8912 +208766,133.69,92.1137 +208767,132.65,90.3905 +208768,131.66,88.715 +208769,133.37,93.9345 +208770,132.33,92.1396 +208771,131.32,90.39896 +208772,130.36,88.7062 +208773,131.98,93.9765 +208774,130.97,92.1649 +208775,129.99,90.40781 +208776,129.06,88.6987 +208777,130.59,94.017 +208778,129.6,92.1897 +208779,128.66,90.41707 +208780,127.75,88.6924 +208781,129.2,94.056 +208782,128.24,92.2141 +208783,127.33,90.42673 +208784,126.45,88.6874 +208785,127.81,94.0936 +208786,126.88,92.2379 +208787,126,90.43679 +208788,125.15,88.6837 +208789,126.41,94.1298 +208790,125.52,92.2613 +208791,124.67,90.44727 +208792,123.85,88.6813 +208793,125.02,94.1645 +208794,124.16,92.2841 +208795,123.34,90.45816 +208796,122.56,88.6802 +208797,123.63,94.1978 +208798,122.8,92.3064 +208799,122.01,90.46947 +208800,121.26,88.6804 +208801,122.23,94.2295 +208802,121.44,92.3282 +208803,120.68,90.4812 +208804,119.96,88.6819 +208805,120.84,94.2598 +208806,120.07,92.3496 +208807,119.35,90.49336 +208808,118.66,88.6847 +208809,119.44,94.2886 +208810,118.71,92.3703 +208811,118.02,90.50594 +208812,117.37,88.6889 +208813,118.04,94.3158 +208814,117.35,92.3906 +208815,116.69,90.51895 +208816,116.07,88.6944 +208817,116.65,94.3416 +208818,115.98,92.4104 +208819,115.36,90.53239 +208820,114.78,88.7013 +208821,115.25,94.3658 +208822,114.62,92.4296 +208823,114.03,90.54626 +208824,113.48,88.7096 +208825,113.85,94.3885 +208826,113.26,92.4483 +208827,112.71,90.56056 +208828,112.19,88.7192 +208829,112.45,94.4097 +208830,111.89,92.4665 +208831,111.38,90.5753 +208832,110.89,88.7302 +208833,111.05,94.4294 +208834,110.53,92.4841 +208835,110.05,90.59048 +208836,109.6,88.7425 +208837,109.65,94.4475 +208838,109.17,92.5012 +208839,108.72,90.60609 +208840,108.3,88.7562 +208841,108.25,94.4641 +208842,107.8,92.5178 +208843,107.39,90.62214 +208844,107.01,88.7713 +208845,106.85,94.4792 +208846,106.44,92.5339 +208847,106.06,90.63863 +208848,105.72,88.7878 +208849,105.45,94.4928 +208850,105.07,92.5494 +208851,104.73,90.65556 +208852,104.42,88.8057 +208853,104.05,94.5048 +208854,103.71,92.5644 +208855,103.4,90.67293 +208856,103.13,88.825 +208857,102.65,94.5153 +208858,102.35,92.5789 +208859,102.08,90.69073 +208860,101.84,88.8456 +208861,101.25,94.5243 +208862,100.98,92.5929 +208863,100.75,90.70897 +208864,100.54,88.8676 +208865,99.848,94.5317 +208866,99.617,92.6063 +208867,99.419,90.72765 +208868,99.25,88.891 +208869,98.446,94.5377 +208870,98.252,92.6192 +208871,98.091,90.74676 +208872,97.957,88.9158 +208873,97.045,94.5421 +208874,96.888,92.6315 +208875,96.762,90.76631 +208876,96.664,88.942 +208877,95.643,94.545 +208878,95.523,92.6434 +208879,95.434,90.78629 +208880,95.372,88.9695 +208881,94.241,94.5465 +208882,94.158,92.6547 +208883,94.105,90.8067 +208884,94.079,88.9984 +208885,92.839,94.5464 +208886,92.793,92.6655 +208887,92.777,90.82754 +208888,92.786,89.02863 +208889,91.437,94.5449 +208890,91.428,92.6758 +208891,91.448,90.84881 +208892,91.493,89.06024 +208893,90.036,94.5419 +208894,90.063,92.6855 +208895,90.119,90.8705 +208896,90.2,89.0932 +208897,88.634,94.5374 +208898,88.699,92.6948 +208899,88.791,90.89261 +208900,88.907,89.1275 +208901,87.232,94.5315 +208902,87.334,92.7035 +208903,87.462,90.91514 +208904,87.614,89.16313 +208905,85.831,94.5242 +208906,85.969,92.7118 +208907,86.133,90.93809 +208908,86.32,89.20009 +208909,84.429,94.5154 +208910,84.604,92.7195 +208911,84.804,90.96145 +208912,85.026,89.23837 +208913,83.028,94.5052 +208914,83.239,92.7267 +208915,83.475,90.98521 +208916,83.732,89.27795 +208917,81.627,94.4937 +208918,81.874,92.7335 +208919,82.145,91.0094 +208920,82.438,89.31883 +208921,80.226,94.4807 +208922,80.51,92.7397 +208923,80.816,91.0339 +208924,81.143,89.36099 +208925,78.826,94.4664 +208926,79.145,92.7455 +208927,79.487,91.0589 +208928,79.849,89.40443 +208929,77.426,94.4507 +208930,77.781,92.7508 +208931,78.157,91.0843 +208932,78.553,89.44912 +208933,76.026,94.4337 +208934,76.416,92.7556 +208935,76.827,91.11 +208936,77.258,89.49507 +208937,74.627,94.4153 +208938,75.052,92.76 +208939,75.497,91.1361 +208940,75.961,89.54224 +208941,73.227,94.3957 +208942,73.687,92.7638 +208943,74.167,91.1626 +208944,74.665,89.59063 +208945,71.829,94.3748 +208946,72.323,92.7673 +208947,72.837,91.1895 +208948,73.368,89.64023 +208949,70.431,94.3526 +208950,70.959,92.7702 +208951,71.506,91.2167 +208952,72.071,89.69101 +208953,69.033,94.3292 +208954,69.595,92.7727 +208955,70.176,91.2443 +208956,70.773,89.74296 +208957,67.636,94.3045 +208958,68.232,92.7748 +208959,68.845,91.2723 +208960,69.474,89.79606 +208961,66.239,94.2787 +208962,66.868,92.7765 +208963,67.514,91.3006 +208964,68.175,89.8503 +208965,64.843,94.2517 +208966,65.505,92.7777 +208967,66.182,91.3292 +208968,66.875,89.90566 +208969,63.447,94.2235 +208970,64.141,92.7785 +208971,64.851,91.3581 +208972,65.575,89.962113 +208973,62.052,94.1942 +208974,62.778,92.7789 +208975,63.519,91.3874 +208976,64.274,90.019645 +208977,60.658,94.1637 +208978,61.415,92.7788 +208979,62.187,91.417 +208980,62.972,90.078234 +208981,59.264,94.1322 +208982,60.052,92.7784 +208983,60.855,91.447 +208984,61.67,90.13786 +208985,57.871,94.0996 +208986,58.69,92.7776 +208987,59.522,91.4772 +208988,60.367,90.1985 +208989,56.479,94.066 +208990,57.328,92.7764 +208991,58.189,91.5077 +208992,59.063,90.26014 +208993,55.088,94.0314 +208994,55.965,92.7748 +208995,56.856,91.5385 +208996,57.759,90.32275 +208997,53.697,93.9957 +208998,54.604,92.7729 +208999,55.523,91.5696 +209000,56.454,90.3863 +209001,52.307,93.9591 +209002,53.242,92.7706 +209003,54.189,91.601 +209004,55.148,90.45078 +209005,50.918,93.9216 +209006,51.881,92.7679 +209007,52.855,91.6326 +209008,53.841,90.51616 +209009,49.529,93.8832 +209010,50.519,92.7649 +209011,51.521,91.6645 +209012,52.533,90.58242 +209013,48.142,93.8438 +209014,49.158,92.7616 +209015,50.186,91.6966 +209016,51.225,90.64952 +209017,46.755,93.8037 +209018,47.798,92.7579 +209019,48.851,91.729 +209020,49.915,90.71746 +209021,45.369,93.7627 +209022,46.437,92.7539 +209023,47.516,91.7615 +209024,48.605,90.78619 +209025,43.984,93.7208 +209026,45.077,92.7497 +209027,46.181,91.7944 +209028,47.294,90.85569 +209029,42.6,93.6783 +209030,43.717,92.7451 +209031,44.845,91.8274 +209032,45.981,90.92594 +209033,41.217,93.635 +209034,42.358,92.7402 +209035,43.509,91.8606 +209036,44.668,90.99691 +209037,39.835,93.5909 +209038,40.999,92.7351 +209039,42.172,91.894 +209040,43.354,91.0686 +209041,38.454,93.5462 +209042,39.64,92.7297 +209043,40.835,91.9276 +209044,42.039,91.1409 +209045,37.074,93.5009 +209046,38.281,92.724 +209047,39.498,91.9614 +209048,40.723,91.2138 +209049,35.695,93.4549 +209050,36.923,92.7181 +209051,38.16,91.9953 +209052,39.406,91.2874 +209053,34.317,93.4083 +209054,35.565,92.7119 +209055,36.822,92.0294 +209056,38.088,91.3615 +209057,32.94,93.3612 +209058,34.207,92.7056 +209059,35.484,92.0636 +209060,36.769,91.4362 +209061,31.564,93.3135 +209062,32.849,92.699 +209063,34.145,92.0979 +209064,35.448,91.5114 +209065,30.189,93.2654 +209066,31.492,92.6922 +209067,32.806,92.1324 +209068,34.127,91.5871 +209069,28.815,93.2168 +209070,30.136,92.6852 +209071,31.466,92.167 +209072,32.804,91.6632 +209073,27.442,93.1677 +209074,28.779,92.678 +209075,30.126,92.2017 +209076,31.481,91.7397 +209077,26.071,93.1182 +209078,27.423,92.6706 +209079,28.786,92.2364 +209080,30.156,91.8167 +209081,24.7,93.0684 +209082,26.068,92.6631 +209083,27.445,92.2713 +209084,28.83,91.894 +209085,23.331,93.0182 +209086,24.712,92.6554 +209087,26.104,92.3062 +209088,27.504,91.9716 +209089,21.962,92.9677 +209090,23.357,92.6475 +209091,24.762,92.3412 +209092,26.175,92.0495 +209093,20.595,92.917 +209094,22.003,92.6396 +209095,23.42,92.3762 +209096,24.846,92.1277 +209097,19.229,92.866 +209098,20.648,92.6315 +209099,22.078,92.4112 +209100,23.516,92.2061 +209101,17.864,92.8148 +209102,19.294,92.6233 +209103,20.735,92.4463 +209104,22.184,92.2847 +209105,16.501,92.7634 +209106,17.941,92.615 +209107,19.391,92.4814 +209108,20.851,92.3634 +209109,15.138,92.7118 +209110,16.588,92.6066 +209111,18.048,92.5165 +209112,19.517,92.4423 +209113,13.777,92.6602 +209114,15.235,92.5981 +209115,16.704,92.5515 +209116,18.182,92.5213 +209117,12.417,92.6084 +209118,13.882,92.5895 +209119,15.359,92.5866 +209120,16.846,92.6003 +209121,11.058,92.5566 +209122,12.53,92.5809 +209123,14.014,92.6216 +209124,15.508,92.6794 +209125,9.7004,92.5048 +209126,11.179,92.5723 +209127,12.669,92.6566 +209128,14.169,92.7585 +209129,8.3439,92.4531 +209130,9.8273,92.5636 +209131,11.323,92.6915 +209132,12.829,92.8375 +209133,6.9886,92.4013 +209134,8.4764,92.5549 +209135,9.9766,92.7263 +209136,11.488,92.9164 +209137,5.6346,92.3496 +209138,7.1259,92.5462 +209139,8.6298,92.7611 +209140,10.146,92.9953 +209141,4.2817,92.2981 +209142,5.7757,92.5374 +209143,7.2827,92.7958 +209144,8.8018,93.074 +209145,2.93,92.2467 +209146,4.4259,92.5287 +209147,5.9351,92.8303 +209148,7.4568,93.1525 +209149,1.5795,92.1954 +209150,3.0765,92.52 +209151,4.5871,92.8648 +209152,6.1105,93.2308 +209153,0.23026,92.1444 +209154,1.7275,92.5113 +209155,3.2386,92.8992 +209156,4.763,93.3088 +209157,358.88,92.0936 +209158,0.37883,92.5027 +209159,1.8897,92.9334 +209160,3.4143,93.3866 +209161,357.54,92.0431 +209162,359.03,92.4941 +209163,0.54036,92.9674 +209164,2.0643,93.4641 +209165,356.19,91.9929 +209166,357.68,92.4856 +209167,359.19,93.0013 +209168,0.71304,93.5412 +209169,354.85,91.943 +209170,356.34,92.4771 +209171,357.84,93.0351 +209172,359.36,93.6179 +209173,353.5,91.8934 +209174,354.99,92.4688 +209175,356.49,93.0686 +209176,358.01,93.6942 +209177,352.16,91.8443 +209178,353.64,92.4605 +209179,355.14,93.102 +209180,356.65,93.7701 +209181,350.82,91.7956 +209182,352.29,92.4523 +209183,353.79,93.1351 +209184,355.3,93.8455 +209185,349.48,91.7473 +209186,350.95,92.4443 +209187,352.44,93.1681 +209188,353.94,93.9203 +209189,348.14,91.6995 +209190,349.6,92.4363 +209191,351.08,93.2008 +209192,352.58,93.9946 +209193,346.8,91.6522 +209194,348.26,92.4285 +209195,349.73,93.2333 +209196,351.22,94.0683 +209197,345.47,91.6055 +209198,346.91,92.4209 +209199,348.38,93.2656 +209200,349.86,94.1414 +209201,344.13,91.5594 +209202,345.57,92.4134 +209203,347.02,93.2976 +209204,348.5,94.2139 +209205,342.8,91.5138 +209206,344.22,92.406 +209207,345.67,93.3293 +209208,347.13,94.2857 +209209,341.47,91.4689 +209210,342.88,92.3989 +209211,344.31,93.3607 +209212,345.77,94.3567 +209213,340.13,91.4246 +209214,341.54,92.3919 +209215,342.96,93.3919 +209216,344.4,94.427 +209217,338.8,91.381 +209218,340.19,92.3851 +209219,341.6,93.4228 +209220,343.04,94.4966 +209221,337.47,91.3381 +209222,338.85,92.3785 +209223,340.25,93.4533 +209224,341.67,94.5653 +209225,336.15,91.296 +209226,337.51,92.3722 +209227,338.89,93.4836 +209228,340.3,94.6332 +209229,334.82,91.2546 +209230,336.17,92.366 +209231,337.54,93.5135 +209232,338.93,94.7002 +209233,333.49,91.214 +209234,334.83,92.3601 +209235,336.18,93.5431 +209236,337.56,94.7663 +209237,332.17,91.1742 +209238,333.48,92.3544 +209239,334.82,93.5723 +209240,336.18,94.8315 +209241,330.84,91.1353 +209242,332.14,92.349 +209243,333.46,93.6012 +209244,334.81,94.8957 +209245,329.52,91.0972 +209246,330.8,92.3438 +209247,332.11,93.6298 +209248,333.43,94.959 +209249,328.2,91.06 +209250,329.46,92.3389 +209251,330.75,93.6579 +209252,332.06,95.0212 +209253,326.88,91.0238 +209254,328.12,92.3342 +209255,329.39,93.6857 +209256,330.68,95.0823 +209257,325.56,90.98846 +209258,326.78,92.3298 +209259,328.03,93.7131 +209260,329.3,95.1424 +209261,324.24,90.9541 +209262,325.44,92.3258 +209263,326.67,93.74 +209264,327.92,95.2014 +209265,322.92,90.92072 +209266,324.1,92.322 +209267,325.31,93.7666 +209268,326.54,95.2593 +209269,321.6,90.88835 +209270,322.76,92.3185 +209271,323.95,93.7928 +209272,325.16,95.316 +209273,320.28,90.857 +209274,321.43,92.3153 +209275,322.59,93.8185 +209276,323.78,95.3716 +209277,318.97,90.8267 +209278,320.09,92.3125 +209279,321.23,93.8438 +209280,322.4,95.4259 +209281,317.65,90.79747 +209282,318.75,92.31 +209283,319.87,93.8687 +209284,321.01,95.4791 +209285,316.34,90.76933 +209286,317.41,92.3078 +209287,318.51,93.8931 +209288,319.63,95.5309 +209289,315.03,90.7423 +209290,316.07,92.3059 +209291,317.14,93.9171 +209292,318.24,95.5815 +209293,313.71,90.7164 +209294,314.74,92.3044 +209295,315.78,93.9406 +209296,316.85,95.6308 +209297,312.4,90.69164 +209298,313.4,92.3033 +209299,314.42,93.9637 +209300,315.47,95.6788 +209301,311.09,90.66804 +209302,312.06,92.3025 +209303,313.06,93.9862 +209304,314.08,95.7255 +209305,309.78,90.64563 +209306,310.73,92.3021 +209307,311.69,94.0083 +209308,312.69,95.7708 +209309,308.47,90.62441 +209310,309.39,92.302 +209311,310.33,94.0299 +209312,311.3,95.8147 +209313,307.16,90.60441 +209314,308.05,92.3023 +209315,308.97,94.051 +209316,309.91,95.8573 +209317,305.86,90.58563 +209318,306.72,92.303 +209319,307.6,94.0717 +209320,308.51,95.8984 +209321,304.55,90.5681 +209322,305.38,92.3041 +209323,306.24,94.0918 +209324,307.12,95.9381 +209325,303.24,90.55183 +209326,304.05,92.3056 +209327,304.87,94.1114 +209328,305.73,95.9763 +209329,301.94,90.53682 +209330,302.71,92.3074 +209331,303.51,94.1305 +209332,304.33,96.0131 +209333,300.63,90.5231 +209334,301.38,92.3097 +209335,302.14,94.149 +209336,302.94,96.0485 +209337,299.33,90.51068 +209338,300.04,92.3124 +209339,300.78,94.1671 +209340,301.54,96.0823 +209341,298.02,90.49956 +209342,298.71,92.3154 +209343,299.41,94.1846 +209344,300.15,96.1146 +209345,296.72,90.48977 +209346,297.37,92.3189 +209347,298.05,94.2016 +209348,298.75,96.1454 +209349,295.41,90.4813 +209350,296.04,92.3228 +209351,296.68,94.2181 +209352,297.35,96.1747 +209353,294.11,90.47417 +209354,294.7,92.3271 +209355,295.32,94.234 +209356,295.96,96.2024 +209357,292.81,90.46839 +209358,293.37,92.3319 +209359,293.95,94.2494 +209360,294.56,96.2286 +209361,291.51,90.46396 +209362,292.03,92.337 +209363,292.58,94.2642 +209364,293.16,96.2533 +209365,290.2,90.4609 +209366,290.7,92.3426 +209367,291.22,94.2785 +209368,291.76,96.2763 +209369,288.9,90.45921 +209370,289.37,92.3486 +209371,289.85,94.2923 +209372,290.36,96.2978 +209373,287.6,90.4589 +209374,288.03,92.3551 +209375,288.48,94.3055 +209376,288.96,96.3178 +209377,286.3,90.45996 +209378,286.7,92.362 +209379,287.12,94.3181 +209380,287.56,96.3361 +209381,285,90.46242 +209382,285.37,92.3693 +209383,285.75,94.3302 +209384,286.16,96.3528 +209385,283.7,90.46627 +209386,284.03,92.377 +209387,284.38,94.3417 +209388,284.76,96.368 +209389,282.4,90.47151 +209390,282.7,92.3852 +209391,283.02,94.3527 +209392,283.36,96.3816 +209393,281.1,90.47816 +209394,281.37,92.3938 +209395,281.65,94.3631 +209396,281.96,96.3935 +209397,279.8,90.4862 +209398,280.03,92.4029 +209399,280.28,94.373 +209400,280.55,96.4039 +209401,278.5,90.49564 +209402,278.7,92.4124 +209403,278.91,94.3822 +209404,279.15,96.4126 +209405,277.2,90.50649 +209406,277.37,92.4223 +209407,277.55,94.391 +209408,277.75,96.4198 +209409,275.9,90.51874 +209410,276.03,92.4327 +209411,276.18,94.3991 +209412,276.35,96.4253 +209413,274.6,90.53239 +209414,274.7,92.4435 +209415,274.81,94.4068 +209416,274.95,96.4293 +209417,273.3,90.54744 +209418,273.37,92.4548 +209419,273.44,94.4138 +209420,273.54,96.4316 +209421,272,90.56389 +209422,272.03,92.4664 +209423,272.08,94.4203 +209424,272.14,96.4324 +209425,270.71,90.58174 +209426,270.7,92.4786 +209427,270.71,94.4263 +209428,270.74,96.4316 +209429,269.41,90.60098 +209430,269.37,92.4911 +209431,269.34,94.4316 +209432,269.34,96.4292 +209433,268.11,90.6216 +209434,268.03,92.5041 +209435,267.97,94.4365 +209436,267.93,96.4252 +209437,266.81,90.64361 +209438,266.7,92.5175 +209439,266.61,94.4408 +209440,266.53,96.4197 +209441,265.51,90.667 +209442,265.36,92.5313 +209443,265.24,94.4445 +209444,265.13,96.4126 +209445,264.21,90.69176 +209446,264.03,92.5456 +209447,263.87,94.4477 +209448,263.73,96.4039 +209449,262.91,90.71788 +209450,262.7,92.5603 +209451,262.5,94.4503 +209452,262.32,96.3937 +209453,261.61,90.74536 +209454,261.36,92.5754 +209455,261.13,94.4524 +209456,260.92,96.382 +209457,260.31,90.77419 +209458,260.03,92.5909 +209459,259.77,94.454 +209460,259.52,96.3687 +209461,259.01,90.80436 +209462,258.7,92.6069 +209463,258.4,94.455 +209464,258.12,96.354 +209465,257.7,90.83586 +209466,257.36,92.6232 +209467,257.03,94.4555 +209468,256.72,96.3377 +209469,256.4,90.86867 +209470,256.03,92.64 +209471,255.66,94.4555 +209472,255.32,96.32 +209473,255.1,90.9028 +209474,254.69,92.6571 +209475,254.3,94.4549 +209476,253.91,96.3008 +209477,253.8,90.93822 +209478,253.36,92.6747 +209479,252.93,94.4539 +209480,252.51,96.2802 +209481,252.5,90.97493 +209482,252.02,92.6926 +209483,251.56,94.4523 +209484,251.11,96.2581 +209485,251.19,91.0129 +209486,250.69,92.711 +209487,250.2,94.4502 +209488,249.71,96.2346 +209489,249.89,91.0521 +209490,249.35,92.7297 +209491,248.83,94.4476 +209492,248.32,96.2097 +209493,248.59,91.0926 +209494,248.02,92.7488 +209495,247.46,94.4445 +209496,246.92,96.1834 +209497,247.28,91.1343 +209498,246.68,92.7683 +209499,246.1,94.441 +209500,245.52,96.1557 +209501,245.98,91.1772 +209502,245.35,92.7881 +209503,244.73,94.4369 +209504,244.12,96.1267 +209505,244.67,91.2214 +209506,244.01,92.8083 +209507,243.36,94.4324 +209508,242.72,96.0964 +209509,243.36,91.2667 +209510,242.68,92.8289 +209511,242,94.4273 +209512,241.33,96.0648 +209513,242.06,91.3131 +209514,241.34,92.8498 +209515,240.63,94.4219 +209516,239.93,96.0318 +209517,240.75,91.3607 +209518,240,92.871 +209519,239.27,94.4159 +209520,238.54,95.9977 +209521,239.44,91.4094 +209522,238.67,92.8926 +209523,237.9,94.4095 +209524,237.14,95.9622 +209525,238.13,91.4593 +209526,237.33,92.9145 +209527,236.54,94.4027 +209528,235.75,95.9256 +209529,236.83,91.5102 +209530,235.99,92.9368 +209531,235.17,94.3954 +209532,234.35,95.8878 +209533,235.51,91.5622 +209534,234.66,92.9593 +209535,233.81,94.3877 +209536,232.96,95.8488 +209537,234.2,91.6152 +209538,233.32,92.9822 +209539,232.44,94.3796 +209540,231.57,95.8086 +209541,232.89,91.6692 +209542,231.98,93.0054 +209543,231.08,94.371 +209544,230.18,95.7674 +209545,231.58,91.7243 +209546,230.64,93.0288 +209547,229.71,94.362 +209548,228.79,95.725 +209549,230.27,91.7803 +209550,229.31,93.0526 +209551,228.35,94.3527 +209552,227.4,95.6816 +209553,228.95,91.8373 +209554,227.97,93.0766 +209555,226.98,94.3429 +209556,226.01,95.6372 +209557,227.64,91.8952 +209558,226.63,93.1009 +209559,225.62,94.3328 +209560,224.62,95.5917 +209561,226.32,91.954 +209562,225.29,93.1254 +209563,224.26,94.3223 +209564,223.23,95.5453 +209565,225.01,92.0137 +209566,223.95,93.1502 +209567,222.89,94.3115 +209568,221.85,95.4979 +209569,223.69,92.0743 +209570,222.61,93.1753 +209571,221.53,94.3002 +209572,220.46,95.4495 +209573,222.37,92.1357 +209574,221.27,93.2005 +209575,220.17,94.2887 +209576,219.08,95.4003 +209577,221.05,92.1979 +209578,219.93,93.226 +209579,218.81,94.2768 +209580,217.69,95.3502 +209581,219.73,92.2608 +209582,218.59,93.2517 +209583,217.45,94.2645 +209584,216.31,95.2993 +209585,218.41,92.3245 +209586,217.25,93.2777 +209587,216.09,94.252 +209588,214.93,95.2475 +209589,217.09,92.389 +209590,215.9,93.3038 +209591,214.72,94.2392 +209592,213.55,95.195 +209593,215.77,92.4541 +209594,214.56,93.3301 +209595,213.36,94.226 +209596,212.17,95.1418 +209597,214.44,92.5199 +209598,213.22,93.3565 +209599,212,94.2126 +209600,210.79,95.0878 +209601,213.12,92.5863 +209602,211.88,93.3832 +209603,210.64,94.1989 +209604,209.41,95.0331 +209605,211.79,92.6534 +209606,210.54,93.41 +209607,209.28,94.1849 +209608,208.03,94.9778 +209609,210.46,92.721 +209610,209.19,93.4369 +209611,207.92,94.1706 +209612,206.66,94.9218 +209613,209.13,92.7892 +209614,207.85,93.464 +209615,206.56,94.1562 +209616,205.28,94.8653 +209617,207.81,92.8579 +209618,206.5,93.4912 +209619,205.21,94.1414 +209620,203.91,94.8082 +209621,206.48,92.9271 +209622,205.16,93.5185 +209623,203.85,94.1265 +209624,202.54,94.7506 +209625,205.14,92.9967 +209626,203.82,93.5459 +209627,202.49,94.1114 +209628,201.17,94.6925 +209629,203.81,93.0667 +209630,202.47,93.5734 +209631,201.13,94.096 +209632,199.8,94.634 +209633,202.48,93.1372 +209634,201.12,93.601 +209635,199.77,94.0804 +209636,198.43,94.575 +209637,201.14,93.208 +209638,199.78,93.6287 +209639,198.42,94.0647 +209640,197.06,94.5156 +209641,199.81,93.2792 +209642,198.43,93.6564 +209643,197.06,94.0488 +209644,195.69,94.4559 +209645,198.47,93.3506 +209646,197.09,93.6842 +209647,195.7,94.0328 +209648,194.33,94.3958 +209649,197.13,93.4223 +209650,195.74,93.712 +209651,194.35,94.0165 +209652,192.96,94.3354 +209653,195.79,93.4942 +209654,194.39,93.7399 +209655,192.99,94.0002 +209656,191.6,94.2748 +209657,194.45,93.5664 +209658,193.04,93.7677 +209659,191.64,93.9837 +209660,190.24,94.214 +209661,193.11,93.6387 +209662,191.7,93.7956 +209663,190.28,93.9671 +209664,188.88,94.153 +209665,191.77,93.7111 +209666,190.35,93.8234 +209667,188.93,93.9505 +209668,187.52,94.0918 +209669,190.42,93.7836 +209670,189,93.8513 +209671,187.57,93.9337 +209672,186.16,94.0305 +209673,189.08,93.8562 +209674,187.65,93.8791 +209675,186.22,93.9168 +209676,184.8,93.9691 +209677,187.73,93.9288 +209678,186.3,93.9069 +209679,184.87,93.8999 +209680,183.44,93.9076 +209681,186.38,94.0014 +209682,184.95,93.9346 +209683,183.52,93.8829 +209684,182.09,93.8461 +209685,185.03,94.074 +209686,183.6,93.9622 +209687,182.16,93.8658 +209688,180.73,93.7846 +209689,183.68,94.1465 +209690,182.25,93.9898 +209691,180.81,93.8488 +209692,179.38,93.7232 +209693,182.33,94.2189 +209694,180.89,94.0173 +209695,179.46,93.8317 +209696,178.03,93.6618 +209697,180.98,94.2912 +209698,179.54,94.0447 +209699,178.11,93.8146 +209700,176.68,93.6006 +209701,179.63,94.3633 +209702,178.19,94.072 +209703,176.76,93.7974 +209704,175.33,93.5395 +209705,178.27,94.4351 +209706,176.84,94.0991 +209707,175.41,93.7803 +209708,173.98,93.4785 +209709,176.92,94.5068 +209710,175.48,94.1262 +209711,174.06,93.7633 +209712,172.63,93.4178 +209713,175.56,94.5781 +209714,174.13,94.153 +209715,172.71,93.7462 +209716,171.29,93.3573 +209717,174.2,94.6491 +209718,172.78,94.1798 +209719,171.36,93.7292 +209720,169.94,93.2971 +209721,172.84,94.7198 +209722,171.42,94.2063 +209723,170.01,93.7122 +209724,168.6,93.2371 +209725,171.48,94.7901 +209726,170.07,94.2327 +209727,168.66,93.6953 +209728,167.26,93.1776 +209729,170.12,94.86 +209730,168.71,94.2589 +209731,167.31,93.6785 +209732,165.92,93.1183 +209733,168.76,94.9295 +209734,167.36,94.2849 +209735,165.96,93.6618 +209736,164.58,93.0595 +209737,167.39,94.9984 +209738,166,94.3107 +209739,164.62,93.6451 +209740,163.24,93.0011 +209741,166.03,95.0669 +209742,164.64,94.3363 +209743,163.27,93.6286 +209744,161.9,92.9432 +209745,164.66,95.1348 +209746,163.29,94.3616 +209747,161.92,93.6122 +209748,160.56,92.8858 +209749,163.29,95.2021 +209750,161.93,94.3867 +209751,160.58,93.5959 +209752,159.23,92.8288 +209753,161.92,95.2688 +209754,160.57,94.4116 +209755,159.23,93.5797 +209756,157.89,92.7725 +209757,160.55,95.3348 +209758,159.22,94.4361 +209759,157.88,93.5637 +209760,156.56,92.7167 +209761,159.18,95.4002 +209762,157.86,94.4604 +209763,156.54,93.5479 +209764,155.23,92.6615 +209765,157.81,95.4648 +209766,156.5,94.4845 +209767,155.19,93.5322 +209768,153.9,92.607 +209769,156.44,95.5287 +209770,155.14,94.5082 +209771,153.85,93.5167 +209772,152.57,92.5531 +209773,155.06,95.5919 +209774,153.78,94.5316 +209775,152.5,93.5014 +209776,151.24,92.4999 +209777,153.69,95.6542 +209778,152.42,94.5547 +209779,151.16,93.4863 +209780,149.91,92.4475 +209781,152.31,95.7156 +209782,151.06,94.5775 +209783,149.82,93.4714 +209784,148.58,92.3957 +209785,150.93,95.7762 +209786,149.7,94.5999 +209787,148.47,93.4567 +209788,147.26,92.3448 +209789,149.56,95.8359 +209790,148.34,94.622 +209791,147.13,93.4422 +209792,145.93,92.2947 +209793,148.18,95.8947 +209794,146.98,94.6437 +209795,145.79,93.428 +209796,144.61,92.2454 +209797,146.8,95.9525 +209798,145.62,94.6651 +209799,144.45,93.414 +209800,143.28,92.197 +209801,145.41,96.0093 +209802,144.25,94.6861 +209803,143.1,93.4003 +209804,141.96,92.1494 +209805,144.03,96.0651 +209806,142.89,94.7067 +209807,141.76,93.3868 +209808,140.64,92.1027 +209809,142.65,96.1198 +209810,141.53,94.7269 +209811,140.42,93.3736 +209812,139.32,92.057 +209813,141.26,96.1735 +209814,140.17,94.7467 +209815,139.08,93.3607 +209816,138,92.0122 +209817,139.88,96.226 +209818,138.8,94.7661 +209819,137.74,93.348 +209820,136.68,91.9684 +209821,138.49,96.2775 +209822,137.44,94.7851 +209823,136.4,93.3357 +209824,135.36,91.9256 +209825,137.11,96.3277 +209826,136.08,94.8037 +209827,135.06,93.3236 +209828,134.05,91.8839 +209829,135.72,96.3768 +209830,134.71,94.8218 +209831,133.72,93.3119 +209832,132.73,91.8431 +209833,134.33,96.4247 +209834,133.35,94.8395 +209835,132.38,93.3005 +209836,131.42,91.8034 +209837,132.94,96.4713 +209838,131.98,94.8568 +209839,131.04,93.2894 +209840,130.1,91.7649 +209841,131.55,96.5167 +209842,130.62,94.8735 +209843,129.7,93.2786 +209844,128.79,91.7274 +209845,130.16,96.5608 +209846,129.25,94.8899 +209847,128.36,93.2682 +209848,127.47,91.691 +209849,128.77,96.6036 +209850,127.89,94.9057 +209851,127.02,93.2581 +209852,126.16,91.6558 +209853,127.37,96.6451 +209854,126.52,94.9211 +209855,125.68,93.2483 +209856,124.85,91.6217 +209857,125.98,96.6852 +209858,125.16,94.936 +209859,124.35,93.2389 +209860,123.54,91.5889 +209861,124.59,96.724 +209862,123.79,94.9503 +209863,123.01,93.2299 +209864,122.23,91.5572 +209865,123.19,96.7613 +209866,122.43,94.9642 +209867,121.67,93.2213 +209868,120.92,91.5267 +209869,121.8,96.7973 +209870,121.06,94.9776 +209871,120.33,93.213 +209872,119.61,91.4975 +209873,120.4,96.8318 +209874,119.69,94.9905 +209875,118.99,93.2051 +209876,118.3,91.4695 +209877,119,96.8649 +209878,118.33,95.0029 +209879,117.66,93.1976 +209880,117,91.4427 +209881,117.61,96.8965 +209882,116.96,95.0147 +209883,116.32,93.1905 +209884,115.69,91.4173 +209885,116.21,96.9267 +209886,115.59,95.026 +209887,114.98,93.1837 +209888,114.38,91.3931 +209889,114.81,96.9554 +209890,114.22,95.0368 +209891,113.65,93.1774 +209892,113.07,91.3702 +209893,113.41,96.9825 +209894,112.86,95.0471 +209895,112.31,93.1715 +209896,111.77,91.3486 +209897,112.01,97.0081 +209898,111.49,95.0568 +209899,110.97,93.1659 +209900,110.46,91.3284 +209901,110.61,97.0322 +209902,110.12,95.066 +209903,109.64,93.1608 +209904,109.16,91.3094 +209905,109.21,97.0548 +209906,108.75,95.0746 +209907,108.3,93.1561 +209908,107.85,91.2919 +209909,107.81,97.0758 +209910,107.39,95.0827 +209911,106.96,93.1518 +209912,106.55,91.2756 +209913,106.41,97.0952 +209914,106.02,95.0902 +209915,105.63,93.148 +209916,105.25,91.2608 +209917,105.01,97.113 +209918,104.65,95.0972 +209919,104.29,93.1445 +209920,103.94,91.2473 +209921,103.61,97.1293 +209922,103.28,95.1036 +209923,102.96,93.1415 +209924,102.64,91.2351 +209925,102.21,97.1439 +209926,101.91,95.1094 +209927,101.62,93.1389 +209928,101.34,91.2244 +209929,100.81,97.1569 +209930,100.54,95.1147 +209931,100.29,93.1368 +209932,100.03,91.215 +209933,99.404,97.1684 +209934,99.175,95.1194 +209935,98.95,93.135 +209936,98.73,91.2071 +209937,98.001,97.1782 +209938,97.806,95.1236 +209939,97.615,93.1337 +209940,97.427,91.2005 +209941,96.599,97.1864 +209942,96.437,95.1271 +209943,96.279,93.1329 +209944,96.125,91.1953 +209945,95.196,97.193 +209946,95.068,95.1302 +209947,94.944,93.1325 +209948,94.822,91.1916 +209949,93.794,97.1979 +209950,93.699,95.1326 +209951,93.609,93.1325 +209952,93.52,91.1892 +209953,92.391,97.2012 +209954,92.331,95.1345 +209955,92.273,93.1329 +209956,92.218,91.1883 +209957,90.988,97.2029 +209958,90.962,95.1357 +209959,90.938,93.1338 +209960,90.916,91.1888 +209961,89.585,97.2029 +209962,89.593,95.1365 +209963,89.602,93.1351 +209964,89.614,91.1907 +209965,88.182,97.2013 +209966,88.224,95.1366 +209967,88.267,93.1369 +209968,88.312,91.1939 +209969,86.78,97.1981 +209970,86.855,95.1362 +209971,86.932,93.1391 +209972,87.01,91.1986 +209973,85.377,97.1933 +209974,85.486,95.1352 +209975,85.596,93.1417 +209976,85.708,91.2048 +209977,83.974,97.1868 +209978,84.117,95.1336 +209979,84.261,93.1448 +209980,84.405,91.2123 +209981,82.572,97.1787 +209982,82.748,95.1315 +209983,82.925,93.1483 +209984,83.103,91.2212 +209985,81.169,97.169 +209986,81.38,95.1288 +209987,81.59,93.1522 +209988,81.801,91.2315 +209989,79.767,97.1577 +209990,80.011,95.1255 +209991,80.254,93.1566 +209992,80.498,91.2432 +209993,78.365,97.1447 +209994,78.642,95.1217 +209995,78.919,93.1614 +209996,79.195,91.2563 +209997,76.963,97.1302 +209998,77.274,95.1173 +209999,77.583,93.1666 +210000,77.892,91.2708 +210001,75.562,97.1141 +210002,75.905,95.1123 +210003,76.247,93.1723 +210004,76.588,91.2866 +210005,74.161,97.0964 +210006,74.537,95.1068 +210007,74.911,93.1784 +210008,75.285,91.3039 +210009,72.76,97.0772 +210010,73.168,95.1007 +210011,73.575,93.1849 +210012,73.981,91.3225 +210013,71.359,97.0564 +210014,71.8,95.0941 +210015,72.239,93.1918 +210016,72.676,91.3424 +210017,69.959,97.034 +210018,70.432,95.0869 +210019,70.903,93.1991 +210020,71.372,91.3637 +210021,68.56,97.0101 +210022,69.064,95.0792 +210023,69.566,93.2068 +210024,70.067,91.3863 +210025,67.16,96.9847 +210026,67.697,95.071 +210027,68.23,93.215 +210028,68.761,91.4102 +210029,65.761,96.9578 +210030,66.329,95.0622 +210031,66.893,93.2235 +210032,67.455,91.4355 +210033,64.363,96.9294 +210034,64.961,95.0529 +210035,65.556,93.2325 +210036,66.149,91.462 +210037,62.965,96.8995 +210038,63.594,95.0431 +210039,64.219,93.2418 +210040,64.842,91.4899 +210041,61.568,96.8682 +210042,62.227,95.0327 +210043,62.882,93.2515 +210044,63.534,91.519 +210045,60.171,96.8354 +210046,60.86,95.0218 +210047,61.545,93.2616 +210048,62.227,91.5493 +210049,58.775,96.8012 +210050,59.493,95.0105 +210051,60.207,93.2721 +210052,60.918,91.5809 +210053,57.379,96.7656 +210054,58.127,94.9986 +210055,58.87,93.283 +210056,59.609,91.6138 +210057,55.984,96.7287 +210058,56.76,94.9862 +210059,57.532,93.2942 +210060,58.299,91.6478 +210061,54.59,96.6903 +210062,55.394,94.9733 +210063,56.194,93.3058 +210064,56.989,91.6831 +210065,53.197,96.6506 +210066,54.028,94.96 +210067,54.855,93.3178 +210068,55.678,91.7195 +210069,51.804,96.6096 +210070,52.663,94.9461 +210071,53.517,93.33 +210072,54.366,91.7571 +210073,50.412,96.5673 +210074,51.297,94.9318 +210075,52.178,93.3427 +210076,53.054,91.7958 +210077,49.02,96.5237 +210078,49.932,94.9171 +210079,50.839,93.3557 +210080,51.741,91.8357 +210081,47.63,96.4789 +210082,48.567,94.9018 +210083,49.5,93.369 +210084,50.427,91.8767 +210085,46.24,96.4328 +210086,47.203,94.8862 +210087,48.16,93.3826 +210088,49.113,91.9187 +210089,44.851,96.3856 +210090,45.838,94.87 +210091,46.82,93.3965 +210092,47.797,91.9618 +210093,43.462,96.3371 +210094,44.474,94.8535 +210095,45.48,93.4108 +210096,46.481,92.006 +210097,42.075,96.2875 +210098,43.11,94.8365 +210099,44.14,93.4253 +210100,45.164,92.0512 +210101,40.689,96.2368 +210102,41.747,94.8191 +210103,42.799,93.4402 +210104,43.847,92.0973 +210105,39.303,96.185 +210106,40.383,94.8013 +210107,41.458,93.4553 +210108,42.528,92.1445 +210109,37.918,96.1321 +210110,39.02,94.7831 +210111,40.117,93.4707 +210112,41.208,92.1926 +210113,36.535,96.0781 +210114,37.658,94.7645 +210115,38.775,93.4864 +210116,39.888,92.2417 +210117,35.152,96.0232 +210118,36.295,94.7455 +210119,37.434,93.5023 +210120,38.567,92.2916 +210121,33.77,95.9672 +210122,34.933,94.7262 +210123,36.092,93.5185 +210124,37.244,92.3424 +210125,32.389,95.9103 +210126,33.572,94.7065 +210127,34.749,93.535 +210128,35.921,92.3941 +210129,31.009,95.8525 +210130,32.21,94.6864 +210131,33.406,93.5516 +210132,34.597,92.4466 +210133,29.63,95.7937 +210134,30.849,94.666 +210135,32.063,93.5685 +210136,33.272,92.5 +210137,28.252,95.7342 +210138,29.489,94.6452 +210139,30.72,93.5856 +210140,31.946,92.554 +210141,26.875,95.6737 +210142,28.128,94.6242 +210143,29.376,93.6029 +210144,30.619,92.6089 +210145,25.5,95.6125 +210146,26.768,94.6028 +210147,28.032,93.6204 +210148,29.29,92.6645 +210149,24.125,95.5505 +210150,25.409,94.5811 +210151,26.688,93.6381 +210152,27.961,92.7207 +210153,22.751,95.4877 +210154,24.049,94.5591 +210155,25.343,93.656 +210156,26.631,92.7777 +210157,21.379,95.4243 +210158,22.691,94.5368 +210159,23.998,93.674 +210160,25.3,92.8352 +210161,20.007,95.3601 +210162,21.332,94.5143 +210163,22.652,93.6922 +210164,23.967,92.8934 +210165,18.637,95.2953 +210166,19.974,94.4914 +210167,21.306,93.7105 +210168,22.634,92.9522 +210169,17.268,95.2299 +210170,18.616,94.4684 +210171,19.96,93.729 +210172,21.299,93.0115 +210173,15.9,95.1639 +210174,17.259,94.4451 +210175,18.614,93.7476 +210176,19.964,93.0713 +210177,14.533,95.0974 +210178,15.902,94.4215 +210179,17.267,93.7663 +210180,18.627,93.1316 +210181,13.167,95.0304 +210182,14.545,94.3977 +210183,15.919,93.7852 +210184,17.289,93.1924 +210185,11.802,94.9629 +210186,13.189,94.3738 +210187,14.572,93.8041 +210188,15.95,93.2536 +210189,10.439,94.8949 +210190,11.833,94.3496 +210191,13.224,93.8231 +210192,14.61,93.3152 +210193,9.0762,94.8266 +210194,10.477,94.3252 +210195,11.875,93.8422 +210196,13.269,93.3772 +210197,7.715,94.7578 +210198,9.1222,94.3007 +210199,10.527,93.8613 +210200,11.927,93.4395 +210201,6.3549,94.6887 +210202,7.7675,94.276 +210203,9.1773,93.8805 +210204,10.583,93.5021 +210205,4.9961,94.6193 +210206,6.4132,94.2511 +210207,7.8278,93.8997 +210208,9.2382,93.565 +210209,3.6384,94.5496 +210210,5.0593,94.2261 +210211,6.4778,93.919 +210212,7.8923,93.6281 +210213,2.2819,94.4797 +210214,3.7058,94.201 +210215,5.1275,93.9382 +210216,6.5453,93.6914 +210217,0.92655,94.4096 +210218,2.3527,94.1757 +210219,3.7768,93.9575 +210220,5.1971,93.7549 +210221,359.57,94.3393 +210222,1,94.1504 +210223,2.4257,93.9768 +210224,3.8477,93.8185 +210225,358.22,94.2689 +210226,359.65,94.1249 +210227,1.0742,93.9961 +210228,2.4971,93.8823 +210229,356.87,94.1984 +210230,358.3,94.0993 +210231,359.72,94.0153 +210232,1.1454,93.9461 +210233,355.52,94.1278 +210234,356.94,94.0737 +210235,358.37,94.0345 +210236,359.79,94.0099 +210237,354.17,94.0571 +210238,355.59,94.048 +210239,357.02,94.0536 +210240,358.44,94.0738 +210241,352.82,93.9865 +210242,354.24,94.0223 +210243,355.66,94.0727 +210244,357.08,94.1376 +210245,351.47,93.9159 +210246,352.89,93.9965 +210247,354.31,94.0917 +210248,355.73,94.2014 +210249,350.13,93.8454 +210250,351.54,93.9707 +210251,352.96,94.1107 +210252,354.37,94.265 +210253,348.78,93.7749 +210254,350.19,93.9449 +210255,351.6,94.1295 +210256,353.01,94.3286 +210257,347.44,93.7046 +210258,348.84,93.9191 +210259,350.25,94.1482 +210260,351.65,94.3919 +210261,346.1,93.6345 +210262,347.5,93.8932 +210263,348.89,94.1669 +210264,350.29,94.4551 +210265,344.75,93.5646 +210266,346.15,93.8674 +210267,347.54,94.1853 +210268,348.93,94.518 +210269,343.41,93.4949 +210270,344.8,93.8416 +210271,346.18,94.2037 +210272,347.56,94.5807 +210273,342.08,93.4255 +210274,343.45,93.8159 +210275,344.83,94.2219 +210276,346.2,94.6431 +210277,340.74,93.3563 +210278,342.1,93.7902 +210279,343.47,94.2399 +210280,344.83,94.7052 +210281,339.4,93.2875 +210282,340.76,93.7646 +210283,342.11,94.2578 +210284,343.47,94.7669 +210285,338.07,93.2191 +210286,339.41,93.739 +210287,340.76,94.2755 +210288,342.1,94.8281 +210289,336.73,93.1511 +210290,338.07,93.7135 +210291,339.4,94.2929 +210292,340.73,94.889 +210293,335.4,93.0835 +210294,336.72,93.6882 +210295,338.04,94.3102 +210296,339.36,94.9494 +210297,334.07,93.0163 +210298,335.37,93.6629 +210299,336.68,94.3273 +210300,337.99,95.0093 +210301,332.74,92.9497 +210302,334.03,93.6377 +210303,335.32,94.3441 +210304,336.62,95.0686 +210305,331.41,92.8835 +210306,332.69,93.6127 +210307,333.96,94.3607 +210308,335.24,95.1274 +210309,330.08,92.8179 +210310,331.34,93.5878 +210311,332.6,94.377 +210312,333.87,95.1857 +210313,328.75,92.7529 +210314,330,93.563 +210315,331.25,94.3931 +210316,332.49,95.2432 +210317,327.42,92.6885 +210318,328.65,93.5384 +210319,329.89,94.4089 +210320,331.11,95.3001 +210321,326.1,92.6248 +210322,327.31,93.514 +210323,328.52,94.4245 +210324,329.74,95.3564 +210325,324.77,92.5617 +210326,325.97,93.4897 +210327,327.16,94.4397 +210328,328.36,95.4119 +210329,323.45,92.4993 +210330,324.63,93.4656 +210331,325.8,94.4547 +210332,326.98,95.4666 +210333,322.12,92.4376 +210334,323.28,93.4417 +210335,324.44,94.4693 +210336,325.6,95.5205 +210337,320.8,92.3767 +210338,321.94,93.4181 +210339,323.08,94.4836 +210340,324.22,95.5737 +210341,319.48,92.3165 +210342,320.6,93.3946 +210343,321.72,94.4976 +210344,322.83,95.626 +210345,318.16,92.2572 +210346,319.26,93.3714 +210347,320.36,94.5112 +210348,321.45,95.6774 +210349,316.84,92.1987 +210350,317.92,93.3484 +210351,318.99,94.5245 +210352,320.07,95.7279 +210353,315.52,92.1411 +210354,316.58,93.3256 +210355,317.63,94.5375 +210356,318.68,95.7774 +210357,314.21,92.0843 +210358,315.24,93.3031 +210359,316.27,94.55 +210360,317.29,95.826 +210361,312.89,92.0284 +210362,313.9,93.2809 +210363,314.9,94.5622 +210364,315.91,95.8736 +210365,311.58,91.9735 +210366,312.56,93.2589 +210367,313.54,94.574 +210368,314.52,95.9202 +210369,310.26,91.9196 +210370,311.22,93.2372 +210371,312.18,94.5854 +210372,313.13,95.9658 +210373,308.95,91.8666 +210374,309.88,93.2158 +210375,310.81,94.5964 +210376,311.74,96.0102 +210377,307.63,91.8146 +210378,308.54,93.1946 +210379,309.45,94.607 +210380,310.35,96.0536 +210381,306.32,91.7636 +210382,307.2,93.1738 +210383,308.08,94.6172 +210384,308.96,96.0958 +210385,305.01,91.7137 +210386,305.87,93.1533 +210387,306.72,94.627 +210388,307.57,96.1369 +210389,303.7,91.6649 +210390,304.53,93.1331 +210391,305.35,94.6363 +210392,306.17,96.1768 +210393,302.39,91.6171 +210394,303.19,93.1132 +210395,303.99,94.6451 +210396,304.78,96.2154 +210397,301.08,91.5705 +210398,301.85,93.0937 +210399,302.62,94.6536 +210400,303.39,96.2529 +210401,299.77,91.525 +210402,300.52,93.0745 +210403,301.26,94.6615 +210404,301.99,96.2891 +210405,298.46,91.4806 +210406,299.18,93.0556 +210407,299.89,94.669 +210408,300.6,96.324 +210409,297.16,91.4374 +210410,297.84,93.0371 +210411,298.52,94.6761 +210412,299.2,96.3577 +210413,295.85,91.3953 +210414,296.51,93.0189 +210415,297.16,94.6826 +210416,297.8,96.39 +210417,294.54,91.3545 +210418,295.17,93.0011 +210419,295.79,94.6887 +210420,296.41,96.421 +210421,293.24,91.3149 +210422,293.83,92.9837 +210423,294.42,94.6943 +210424,295.01,96.4506 +210425,291.93,91.2765 +210426,292.5,92.9666 +210427,293.06,94.6993 +210428,293.61,96.4788 +210429,290.63,91.2394 +210430,291.16,92.95 +210431,291.69,94.7039 +210432,292.21,96.5057 +210433,289.32,91.2035 +210434,289.83,92.9337 +210435,290.32,94.708 +210436,290.81,96.5311 +210437,288.02,91.1689 +210438,288.49,92.9178 +210439,288.96,94.7116 +210440,289.41,96.5551 +210441,286.71,91.1355 +210442,287.16,92.9022 +210443,287.59,94.7146 +210444,288.01,96.5776 +210445,285.41,91.1035 +210446,285.82,92.8871 +210447,286.22,94.7171 +210448,286.61,96.5987 +210449,284.11,91.0728 +210450,284.49,92.8724 +210451,284.85,94.7191 +210452,285.21,96.6183 +210453,282.81,91.0434 +210454,283.15,92.8581 +210455,283.49,94.7206 +210456,283.81,96.6364 +210457,281.5,91.0154 +210458,281.82,92.8442 +210459,282.12,94.7215 +210460,282.41,96.653 +210461,280.2,90.98864 +210462,280.48,92.8308 +210463,280.75,94.7219 +210464,281.01,96.6681 +210465,278.9,90.96328 +210466,279.15,92.8177 +210467,279.38,94.7217 +210468,279.61,96.6816 +210469,277.6,90.93927 +210470,277.81,92.8051 +210471,278.01,94.721 +210472,278.2,96.6936 +210473,276.3,90.91663 +210474,276.48,92.7928 +210475,276.65,94.7198 +210476,276.8,96.7041 +210477,275,90.89537 +210478,275.14,92.781 +210479,275.28,94.718 +210480,275.4,96.713 +210481,273.7,90.87549 +210482,273.81,92.7697 +210483,273.91,94.7157 +210484,274,96.7203 +210485,272.4,90.85699 +210486,272.48,92.7588 +210487,272.54,94.7127 +210488,272.59,96.726 +210489,271.1,90.83989 +210490,271.14,92.7483 +210491,271.17,94.7093 +210492,271.19,96.7301 +210493,269.8,90.82418 +210494,269.81,92.7382 +210495,269.81,94.7053 +210496,269.79,96.7327 +210497,268.5,90.80987 +210498,268.47,92.7286 +210499,268.44,94.7007 +210500,268.39,96.7336 +210501,267.2,90.79696 +210502,267.14,92.7194 +210503,267.07,94.6955 +210504,266.98,96.733 +210505,265.89,90.78546 +210506,265.81,92.7106 +210507,265.7,94.6898 +210508,265.58,96.7307 +210509,264.59,90.77536 +210510,264.47,92.7023 +210511,264.33,94.6835 +210512,264.18,96.7268 +210513,263.29,90.76667 +210514,263.14,92.6944 +210515,262.97,94.6767 +210516,262.78,96.7213 +210517,261.99,90.75938 +210518,261.8,92.687 +210519,261.6,94.6693 +210520,261.37,96.7142 +210521,260.69,90.7535 +210522,260.47,92.6799 +210523,260.23,94.6613 +210524,259.97,96.7055 +210525,259.39,90.74903 +210526,259.13,92.6734 +210527,258.86,94.6528 +210528,258.57,96.6952 +210529,258.09,90.74595 +210530,257.8,92.6672 +210531,257.49,94.6437 +210532,257.17,96.6833 +210533,256.79,90.74428 +210534,256.47,92.6616 +210535,256.13,94.634 +210536,255.77,96.6697 +210537,255.49,90.744 +210538,255.13,92.6563 +210539,254.76,94.6238 +210540,254.37,96.6546 +210541,254.19,90.74511 +210542,253.8,92.6515 +210543,253.39,94.613 +210544,252.96,96.6378 +210545,252.89,90.74762 +210546,252.46,92.6471 +210547,252.02,94.6017 +210548,251.56,96.6195 +210549,251.58,90.7515 +210550,251.13,92.6431 +210551,250.66,94.5898 +210552,250.16,96.5995 +210553,250.28,90.75675 +210554,249.79,92.6396 +210555,249.29,94.5774 +210556,248.76,96.578 +210557,248.98,90.76338 +210558,248.46,92.6365 +210559,247.92,94.5644 +210560,247.37,96.5549 +210561,247.68,90.77136 +210562,247.12,92.6338 +210563,246.56,94.5508 +210564,245.97,96.5303 +210565,246.37,90.7807 +210566,245.79,92.6315 +210567,245.19,94.5367 +210568,244.57,96.504 +210569,245.07,90.79138 +210570,244.45,92.6297 +210571,243.82,94.5221 +210572,243.17,96.4763 +210573,243.76,90.8034 +210574,243.12,92.6282 +210575,242.46,94.5069 +210576,241.77,96.447 +210577,242.46,90.81673 +210578,241.78,92.6272 +210579,241.09,94.4912 +210580,240.38,96.4162 +210581,241.15,90.83139 +210582,240.45,92.6266 +210583,239.73,94.475 +210584,238.98,96.3838 +210585,239.85,90.84734 +210586,239.11,92.6264 +210587,238.36,94.4582 +210588,237.58,96.35 +210589,238.54,90.86458 +210590,237.78,92.6266 +210591,236.99,94.4409 +210592,236.19,96.3147 +210593,237.23,90.88309 +210594,236.44,92.6272 +210595,235.63,94.4231 +210596,234.8,96.2779 +210597,235.93,90.90287 +210598,235.1,92.6282 +210599,234.26,94.4048 +210600,233.4,96.2397 +210601,234.62,90.9239 +210602,233.77,92.6295 +210603,232.9,94.386 +210604,232.01,96.2 +210605,233.31,90.94616 +210606,232.43,92.6313 +210607,231.54,94.3667 +210608,230.62,96.1589 +210609,232,90.96964 +210610,231.09,92.6334 +210611,230.17,94.3469 +210612,229.23,96.1164 +210613,230.69,90.99432 +210614,229.76,92.6359 +210615,228.81,94.3266 +210616,227.84,96.0725 +210617,229.38,91.0202 +210618,228.42,92.6387 +210619,227.44,94.3058 +210620,226.45,96.0273 +210621,228.07,91.0472 +210622,227.08,92.6419 +210623,226.08,94.2845 +210624,225.06,95.9807 +210625,226.75,91.0754 +210626,225.74,92.6455 +210627,224.72,94.2628 +210628,223.67,95.9328 +210629,225.44,91.1047 +210630,224.41,92.6494 +210631,223.35,94.2406 +210632,222.28,95.8836 +210633,224.13,91.1352 +210634,223.07,92.6536 +210635,221.99,94.2179 +210636,220.89,95.8332 +210637,222.81,91.1667 +210638,221.73,92.6582 +210639,220.63,94.1948 +210640,219.51,95.7814 +210641,221.49,91.1993 +210642,220.39,92.6631 +210643,219.27,94.1712 +210644,218.12,95.7285 +210645,220.18,91.2329 +210646,219.05,92.6683 +210647,217.91,94.1472 +210648,216.74,95.6743 +210649,218.86,91.2676 +210650,217.71,92.6738 +210651,216.55,94.1228 +210652,215.36,95.619 +210653,217.54,91.3033 +210654,216.37,92.6797 +210655,215.19,94.098 +210656,213.98,95.5625 +210657,216.22,91.34 +210658,215.03,92.6858 +210659,213.82,94.0728 +210660,212.6,95.5049 +210661,214.9,91.3776 +210662,213.69,92.6922 +210663,212.46,94.0471 +210664,211.22,95.4462 +210665,213.58,91.4162 +210666,212.35,92.6989 +210667,211.1,94.0211 +210668,209.84,95.3864 +210669,212.26,91.4557 +210670,211.01,92.7059 +210671,209.75,93.9947 +210672,208.46,95.3255 +210673,210.94,91.4961 +210674,209.67,92.7131 +210675,208.39,93.9679 +210676,207.08,95.2636 +210677,209.61,91.5374 +210678,208.33,92.7206 +210679,207.03,93.9407 +210680,205.71,95.2008 +210681,208.29,91.5795 +210682,206.99,92.7284 +210683,205.67,93.9132 +210684,204.33,95.137 +210685,206.96,91.6225 +210686,205.64,92.7363 +210687,204.31,93.8853 +210688,202.96,95.0722 +210689,205.63,91.6662 +210690,204.3,92.7445 +210691,202.95,93.8571 +210692,201.59,95.0066 +210693,204.3,91.7107 +210694,202.96,92.7529 +210695,201.6,93.8286 +210696,200.22,94.94 +210697,202.97,91.756 +210698,201.62,92.7616 +210699,200.24,93.7997 +210700,198.85,94.8727 +210701,201.64,91.8019 +210702,200.27,92.7704 +210703,198.88,93.7705 +210704,197.48,94.8045 +210705,200.31,91.8486 +210706,198.93,92.7794 +210707,197.53,93.7411 +210708,196.11,94.7355 +210709,198.98,91.8959 +210710,197.58,92.7886 +210711,196.17,93.7113 +210712,194.74,94.6658 +210713,197.65,91.9438 +210714,196.24,92.798 +210715,194.82,93.6813 +210716,193.38,94.5954 +210717,196.31,91.9924 +210718,194.89,92.8076 +210719,193.46,93.651 +210720,192.02,94.5243 +210721,194.97,92.0415 +210722,193.55,92.8172 +210723,192.11,93.6204 +210724,190.65,94.4525 +210725,193.64,92.0911 +210726,192.2,92.8271 +210727,190.75,93.5896 +210728,189.29,94.3802 +210729,192.3,92.1413 +210730,190.86,92.8371 +210731,189.4,93.5586 +210732,187.93,94.3072 +210733,190.96,92.192 +210734,189.51,92.8471 +210735,188.05,93.5273 +210736,186.57,94.2337 +210737,189.62,92.2431 +210738,188.16,92.8573 +210739,186.69,93.4958 +210740,185.21,94.1597 +210741,188.28,92.2946 +210742,186.82,92.8677 +210743,185.34,93.4642 +210744,183.86,94.0852 +210745,186.93,92.3465 +210746,185.47,92.878 +210747,183.99,93.4323 +210748,182.5,94.0102 +210749,185.59,92.3988 +210750,184.12,92.8885 +210751,182.64,93.4002 +210752,181.15,93.9348 +210753,184.24,92.4515 +210754,182.77,92.8991 +210755,181.29,93.368 +210756,179.79,93.8591 +210757,182.9,92.5044 +210758,181.42,92.9097 +210759,179.94,93.3356 +210760,178.44,93.783 +210761,181.55,92.5576 +210762,180.07,92.9203 +210763,178.59,93.303 +210764,177.09,93.7065 +210765,180.2,92.611 +210766,178.73,92.931 +210767,177.24,93.2704 +210768,175.74,93.6298 +210769,178.85,92.6647 +210770,177.38,92.9417 +210771,175.89,93.2376 +210772,174.39,93.5529 +210773,177.5,92.7185 +210774,176.03,92.9525 +210775,174.54,93.2046 +210776,173.04,93.4757 +210777,176.15,92.7725 +210778,174.67,92.9632 +210779,173.19,93.1716 +210780,171.7,93.3984 +210781,174.79,92.8265 +210782,173.32,92.9739 +210783,171.84,93.1385 +210784,170.35,93.3209 +210785,173.44,92.8807 +210786,171.97,92.9847 +210787,170.5,93.1053 +210788,169.01,93.2433 +210789,172.08,92.9349 +210790,170.62,92.9953 +210791,169.15,93.0721 +210792,167.67,93.1657 +210793,170.73,92.9891 +210794,169.27,93.006 +210795,167.8,93.0387 +210796,166.33,93.088 +210797,169.37,93.0433 +210798,167.92,93.0166 +210799,166.46,93.0054 +210800,164.99,93.0103 +210801,168.01,93.0974 +210802,166.56,93.0271 +210803,165.11,92.972 +210804,163.65,92.9326 +210805,166.65,93.1515 +210806,165.21,93.0376 +210807,163.77,92.9385 +210808,162.31,92.855 +210809,165.28,93.2054 +210810,163.86,93.048 +210811,162.42,92.9051 +210812,160.98,92.7774 +210813,163.92,93.2592 +210814,162.5,93.0583 +210815,161.08,92.8717 +210816,159.64,92.7001 +210817,162.56,93.3128 +210818,161.15,93.0685 +210819,159.73,92.8382 +210820,158.31,92.6228 +210821,161.19,93.3662 +210822,159.79,93.0785 +210823,158.39,92.8048 +210824,156.97,92.5458 +210825,159.82,93.4193 +210826,158.44,93.0885 +210827,157.04,92.7715 +210828,155.64,92.469 +210829,158.46,93.4722 +210830,157.08,93.0983 +210831,155.7,92.7381 +210832,154.31,92.3925 +210833,157.09,93.5247 +210834,155.73,93.1079 +210835,154.36,92.7048 +210836,152.98,92.3162 +210837,155.72,93.5769 +210838,154.37,93.1174 +210839,153.02,92.6716 +210840,151.66,92.2403 +210841,154.35,93.6288 +210842,153.01,93.1268 +210843,151.68,92.6385 +210844,150.33,92.1648 +210845,152.97,93.6802 +210846,151.66,93.1359 +210847,150.33,92.6054 +210848,149,92.0896 +210849,151.6,93.7312 +210850,150.3,93.1449 +210851,148.99,92.5725 +210852,147.68,92.0149 +210853,150.23,93.7817 +210854,148.94,93.1536 +210855,147.65,92.5397 +210856,146.36,91.9406 +210857,148.85,93.8317 +210858,147.59,93.1621 +210859,146.31,92.5069 +210860,145.03,91.8668 +210861,147.47,93.8811 +210862,146.23,93.1705 +210863,144.97,92.4743 +210864,143.71,91.7935 +210865,146.1,93.93 +210866,144.87,93.1786 +210867,143.63,92.4419 +210868,142.39,91.7208 +210869,144.72,93.9783 +210870,143.51,93.1864 +210871,142.29,92.4096 +210872,141.07,91.6486 +210873,143.34,94.026 +210874,142.15,93.194 +210875,140.96,92.3774 +210876,139.75,91.5771 +210877,141.96,94.073 +210878,140.79,93.2013 +210879,139.62,92.3455 +210880,138.44,91.5062 +210881,140.58,94.1193 +210882,139.43,93.2084 +210883,138.28,92.3137 +210884,137.12,91.4359 +210885,139.19,94.1649 +210886,138.07,93.2151 +210887,136.94,92.2821 +210888,135.8,91.3664 +210889,137.81,94.2097 +210890,136.71,93.2216 +210891,135.6,92.2507 +210892,134.49,91.2976 +210893,136.42,94.2538 +210894,135.35,93.2278 +210895,134.27,92.2195 +210896,133.18,91.2295 +210897,135.04,94.2971 +210898,133.99,93.2336 +210899,132.93,92.1885 +210900,131.86,91.1622 +210901,133.65,94.3395 +210902,132.63,93.2392 +210903,131.59,92.1578 +210904,130.55,91.0957 +210905,132.27,94.381 +210906,131.27,93.2444 +210907,130.26,92.1273 +210908,129.24,91.03 +210909,130.88,94.4217 +210910,129.91,93.2493 +210911,128.92,92.097 +210912,127.93,90.96516 +210913,129.49,94.4614 +210914,128.54,93.2538 +210915,127.59,92.067 +210916,126.62,90.90122 +210917,128.1,94.5002 +210918,127.18,93.258 +210919,126.25,92.0372 +210920,125.31,90.83818 +210921,126.71,94.538 +210922,125.82,93.2618 +210923,124.92,92.0078 +210924,124.01,90.77607 +210925,125.32,94.5748 +210926,124.46,93.2652 +210927,123.58,91.9786 +210928,122.7,90.71491 +210929,123.93,94.6106 +210930,123.09,93.2682 +210931,122.25,91.9497 +210932,121.39,90.65472 +210933,122.53,94.6453 +210934,121.73,93.2709 +210935,120.92,91.9211 +210936,120.09,90.59553 +210937,121.14,94.679 +210938,120.37,93.2731 +210939,119.58,91.8928 +210940,118.78,90.53737 +210941,119.75,94.7115 +210942,119,93.275 +210943,118.25,91.8648 +210944,117.48,90.48024 +210945,118.35,94.7429 +210946,117.64,93.2764 +210947,116.92,91.8371 +210948,116.18,90.42417 +210949,116.96,94.7732 +210950,116.28,93.2775 +210951,115.58,91.8098 +210952,114.88,90.36919 +210953,115.56,94.8023 +210954,114.91,93.2781 +210955,114.25,91.7827 +210956,113.57,90.31531 +210957,114.16,94.8302 +210958,113.55,93.2782 +210959,112.92,91.7561 +210960,112.27,90.26255 +210961,112.77,94.8569 +210962,112.18,93.2779 +210963,111.59,91.7297 +210964,110.97,90.21093 +210965,111.37,94.8823 +210966,110.82,93.2772 +210967,110.25,91.7038 +210968,109.67,90.16046 +210969,109.97,94.9065 +210970,109.46,93.276 +210971,108.92,91.6781 +210972,108.37,90.11117 +210973,108.57,94.9294 +210974,108.09,93.2744 +210975,107.59,91.6529 +210976,107.07,90.063073 +210977,107.17,94.951 +210978,106.73,93.2722 +210979,106.26,91.628 +210980,105.77,90.016182 +210981,105.77,94.9713 +210982,105.36,93.2697 +210983,104.93,91.6035 +210984,104.48,89.970513 +210985,104.37,94.9902 +210986,104,93.2666 +210987,103.6,91.5794 +210988,103.18,89.926081 +210989,102.97,95.0078 +210990,102.63,93.263 +210991,102.27,91.5556 +210992,101.88,89.8829 +210993,101.57,95.024 +210994,101.27,93.259 +210995,100.93,91.5323 +210996,100.59,89.84099 +210997,100.17,95.0388 +210998,99.9,93.2545 +210999,99.604,91.5093 +211000,99.288,89.80035 +211001,98.773,95.0523 +211002,98.534,93.2495 +211003,98.273,91.4868 +211004,97.992,89.761 +211005,97.372,95.0643 +211006,97.169,93.2439 +211007,96.943,91.4646 +211008,96.696,89.72295 +211009,95.97,95.0749 +211010,95.803,93.2379 +211011,95.613,91.4429 +211012,95.401,89.68621 +211013,94.569,95.084 +211014,94.438,93.2314 +211015,94.282,91.4216 +211016,94.105,89.6508 +211017,93.167,95.0917 +211018,93.072,93.2243 +211019,92.952,91.4007 +211020,92.81,89.61672 +211021,91.766,95.0979 +211022,91.707,93.2167 +211023,91.622,91.3802 +211024,91.515,89.58397 +211025,90.364,95.1026 +211026,90.341,93.2087 +211027,90.292,91.3601 +211028,90.22,89.55258 +211029,88.962,95.1059 +211030,88.976,93.2 +211031,88.962,91.3404 +211032,88.925,89.52254 +211033,87.56,95.1076 +211034,87.61,93.1909 +211035,87.633,91.3212 +211036,87.631,89.49386 +211037,86.158,95.1079 +211038,86.244,93.1812 +211039,86.303,91.3024 +211040,86.336,89.46655 +211041,84.756,95.1066 +211042,84.879,93.171 +211043,84.973,91.2841 +211044,85.042,89.44061 +211045,83.354,95.1038 +211046,83.514,93.1603 +211047,83.643,91.2661 +211048,83.747,89.41605 +211049,81.952,95.0995 +211050,82.148,93.1491 +211051,82.314,91.2487 +211052,82.453,89.39287 +211053,80.551,95.0936 +211054,80.783,93.1373 +211055,80.984,91.2316 +211056,81.158,89.37108 +211057,79.149,95.0862 +211058,79.417,93.1249 +211059,79.654,91.215 +211060,79.863,89.35067 +211061,77.748,95.0773 +211062,78.052,93.1121 +211063,78.324,91.1988 +211064,78.569,89.33165 +211065,76.347,95.0668 +211066,76.687,93.0987 +211067,76.995,91.1831 +211068,77.274,89.31402 +211069,74.946,95.0547 +211070,75.322,93.0847 +211071,75.665,91.1678 +211072,75.979,89.29778 +211073,73.546,95.0412 +211074,73.957,93.0702 +211075,74.335,91.1529 +211076,74.684,89.28293 +211077,72.146,95.026 +211078,72.592,93.0552 +211079,73.005,91.1385 +211080,73.388,89.26946 +211081,70.746,95.0093 +211082,71.228,93.0397 +211083,71.675,91.1245 +211084,72.093,89.25739 +211085,69.346,94.9911 +211086,69.863,93.0236 +211087,70.345,91.111 +211088,70.797,89.24669 +211089,67.947,94.9713 +211090,68.499,93.007 +211091,69.015,91.0978 +211092,69.501,89.23738 +211093,66.548,94.95 +211094,67.135,92.9898 +211095,67.685,91.0852 +211096,68.204,89.22945 +211097,65.15,94.9271 +211098,65.771,92.9721 +211099,66.355,91.0729 +211100,66.908,89.22288 +211101,63.752,94.9027 +211102,64.407,92.9539 +211103,65.024,91.0611 +211104,65.611,89.21769 +211105,62.355,94.8768 +211106,63.043,92.9351 +211107,63.694,91.0498 +211108,64.313,89.21385 +211109,60.958,94.8493 +211110,61.68,92.9158 +211111,62.363,91.0388 +211112,63.015,89.21138 +211113,59.562,94.8204 +211114,60.316,92.896 +211115,61.033,91.0283 +211116,61.717,89.21024 +211117,58.167,94.7899 +211118,58.953,92.8757 +211119,59.702,91.0182 +211120,60.418,89.21045 +211121,56.772,94.7579 +211122,57.591,92.8549 +211123,58.371,91.0085 +211124,59.118,89.21199 +211125,55.377,94.7244 +211126,56.228,92.8335 +211127,57.04,90.99928 +211128,57.818,89.21485 +211129,53.984,94.6895 +211130,54.866,92.8116 +211131,55.708,90.99045 +211132,56.518,89.21902 +211133,52.591,94.6531 +211134,53.503,92.7892 +211135,54.377,90.98202 +211136,55.217,89.22449 +211137,51.199,94.6152 +211138,52.142,92.7664 +211139,53.045,90.97401 +211140,53.915,89.23125 +211141,49.807,94.5758 +211142,50.78,92.743 +211143,51.713,90.96639 +211144,52.613,89.23929 +211145,48.417,94.5351 +211146,49.419,92.7191 +211147,50.381,90.95918 +211148,51.31,89.2486 +211149,47.027,94.4929 +211150,48.058,92.6947 +211151,49.049,90.95237 +211152,50.007,89.25915 +211153,45.638,94.4493 +211154,46.697,92.6699 +211155,47.716,90.94594 +211156,48.702,89.27095 +211157,44.25,94.4044 +211158,45.336,92.6445 +211159,46.384,90.9399 +211160,47.397,89.28397 +211161,42.862,94.358 +211162,43.976,92.6187 +211163,45.051,90.93425 +211164,46.092,89.2982 +211165,41.476,94.3103 +211166,42.616,92.5924 +211167,43.717,90.92897 +211168,44.785,89.31362 +211169,40.09,94.2613 +211170,41.257,92.5657 +211171,42.384,90.92406 +211172,43.478,89.33022 +211173,38.706,94.2109 +211174,39.898,92.5384 +211175,41.05,90.91951 +211176,42.17,89.34798 +211177,37.322,94.1593 +211178,38.539,92.5108 +211179,39.716,90.91533 +211180,40.861,89.36688 +211181,35.939,94.1064 +211182,37.18,92.4827 +211183,38.382,90.9115 +211184,39.551,89.38691 +211185,34.558,94.0522 +211186,35.822,92.4541 +211187,37.048,90.90801 +211188,38.24,89.40805 +211189,33.177,93.9968 +211190,34.464,92.4251 +211191,35.713,90.90487 +211192,36.929,89.43028 +211193,31.797,93.9401 +211194,33.107,92.3957 +211195,34.378,90.90206 +211196,35.617,89.45357 +211197,30.419,93.8823 +211198,31.75,92.3659 +211199,33.043,90.89958 +211200,34.303,89.47791 +211201,29.041,93.8233 +211202,30.393,92.3357 +211203,31.707,90.89742 +211204,32.989,89.50328 +211205,27.665,93.7632 +211206,29.037,92.305 +211207,30.371,90.89557 +211208,31.674,89.52966 +211209,26.29,93.7019 +211210,27.681,92.274 +211211,29.035,90.89403 +211212,30.357,89.55703 +211213,24.916,93.6396 +211214,26.325,92.2426 +211215,27.698,90.89279 +211216,29.04,89.58535 +211217,23.542,93.5762 +211218,24.97,92.2108 +211219,26.362,90.89184 +211220,27.722,89.61462 +211221,22.171,93.5117 +211222,23.615,92.1786 +211223,25.024,90.89117 +211224,26.402,89.64481 +211225,20.8,93.4462 +211226,22.261,92.1461 +211227,23.687,90.89078 +211228,25.082,89.67589 +211229,19.43,93.3797 +211230,20.907,92.1132 +211231,22.349,90.89065 +211232,23.761,89.70784 +211233,18.062,93.3123 +211234,19.553,92.08 +211235,21.011,90.89078 +211236,22.438,89.74064 +211237,16.695,93.2439 +211238,18.2,92.0464 +211239,19.672,90.89117 +211240,21.115,89.77426 +211241,15.329,93.1747 +211242,16.848,92.0125 +211243,18.333,90.89179 +211244,19.79,89.80868 +211245,13.964,93.1045 +211246,15.495,91.9783 +211247,16.994,90.89265 +211248,18.464,89.84387 +211249,12.6,93.0335 +211250,14.144,91.9438 +211251,15.655,90.89373 +211252,17.137,89.8798 +211253,11.238,92.9617 +211254,12.792,91.909 +211255,14.315,90.89503 +211256,15.809,89.916455 +211257,9.8772,92.8891 +211258,11.441,91.8739 +211259,12.974,90.89653 +211260,14.48,89.953801 +211261,8.5174,92.8158 +211262,10.091,91.8385 +211263,11.634,90.89823 +211264,13.149,89.9918119 +211265,7.1589,92.7417 +211266,8.7406,91.8029 +211267,10.293,90.90012 +211268,11.818,90.030461 +211269,5.8017,92.6669 +211270,7.3909,91.767 +211271,8.9513,90.90218 +211272,10.485,90.069722 +211273,4.4457,92.5915 +211274,6.0418,91.7308 +211275,7.6095,90.90442 +211276,9.1511,90.10956 +211277,3.091,92.5154 +211278,4.693,91.6944 +211279,6.2674,90.90681 +211280,7.816,90.14996 +211281,1.7376,92.4387 +211282,3.3448,91.6578 +211283,4.9248,90.90935 +211284,6.4796,90.19088 +211285,0.38554,92.3615 +211286,1.9969,91.621 +211287,3.5819,90.91204 +211288,5.142,90.23231 +211289,359.03,92.2837 +211290,0.64959,91.584 +211291,2.2386,90.91485 +211292,3.8032,90.27419 +211293,357.69,92.2054 +211294,359.3,91.5467 +211295,0.89496,90.91778 +211296,2.4632,90.31652 +211297,356.34,92.1267 +211298,357.96,91.5093 +211299,359.55,90.92082 +211300,1.122,90.35926 +211301,354.99,92.0475 +211302,356.61,91.4717 +211303,358.21,90.92396 +211304,359.78,90.40237 +211305,353.64,91.9679 +211306,355.26,91.4339 +211307,356.86,90.92718 +211308,358.44,90.44584 +211309,352.3,91.888 +211310,353.92,91.396 +211311,355.52,90.93049 +211312,357.09,90.48962 +211313,350.96,91.8077 +211314,352.58,91.358 +211315,354.17,90.93387 +211316,355.74,90.5337 +211317,349.62,91.7271 +211318,351.23,91.3198 +211319,352.82,90.9373 +211320,354.4,90.57803 +211321,348.28,91.6462 +211322,349.89,91.2815 +211323,351.48,90.94078 +211324,353.05,90.62259 +211325,346.94,91.5652 +211326,348.54,91.2431 +211327,350.13,90.9443 +211328,351.7,90.66735 +211329,345.6,91.4839 +211330,347.2,91.2046 +211331,348.78,90.94784 +211332,350.35,90.71228 +211333,344.26,91.4024 +211334,345.86,91.166 +211335,347.44,90.9514 +211336,349,90.75734 +211337,342.93,91.3208 +211338,344.52,91.1273 +211339,346.09,90.95496 +211340,347.64,90.8025 +211341,341.59,91.2391 +211342,343.18,91.0886 +211343,344.74,90.95852 +211344,346.29,90.84774 +211345,340.26,91.1574 +211346,341.83,91.0498 +211347,343.39,90.96207 +211348,344.93,90.89302 +211349,338.93,91.0756 +211350,340.49,91.0109 +211351,342.04,90.96558 +211352,343.57,90.93831 +211353,337.6,90.99379 +211354,339.15,90.97206 +211355,340.69,90.96906 +211356,342.21,90.98358 +211357,336.27,90.91204 +211358,337.81,90.93317 +211359,339.34,90.9725 +211360,340.85,91.0288 +211361,334.94,90.83035 +211362,336.48,90.89428 +211363,337.99,90.97587 +211364,339.49,91.0739 +211365,333.62,90.74877 +211366,335.14,90.85538 +211367,336.64,90.97917 +211368,338.13,91.119 +211369,332.29,90.66733 +211370,333.8,90.8165 +211371,335.29,90.9824 +211372,336.77,91.1638 +211373,330.97,90.58605 +211374,332.46,90.77765 +211375,333.94,90.98553 +211376,335.4,91.2085 +211377,329.64,90.50497 +211378,331.12,90.73883 +211379,332.59,90.98857 +211380,334.04,91.253 +211381,328.32,90.42413 +211382,329.79,90.70005 +211383,331.24,90.99149 +211384,332.67,91.2973 +211385,327,90.34355 +211386,328.45,90.66133 +211387,329.88,90.99429 +211388,331.3,91.3413 +211389,325.68,90.26327 +211390,327.11,90.62268 +211391,328.53,90.99696 +211392,329.93,91.3849 +211393,324.36,90.18332 +211394,325.78,90.5841 +211395,327.18,90.99949 +211396,328.56,91.4283 +211397,323.05,90.10373 +211398,324.44,90.54562 +211399,325.82,91.0019 +211400,327.19,91.4713 +211401,321.73,90.02454 +211402,323.11,90.50723 +211403,324.47,91.0041 +211404,325.82,91.5139 +211405,320.42,89.945771 +211406,321.77,90.46896 +211407,323.12,91.0061 +211408,324.45,91.5561 +211409,319.1,89.86746 +211410,320.44,90.4308 +211411,321.76,91.008 +211412,323.07,91.5978 +211413,317.79,89.78963 +211414,319.11,90.39278 +211415,320.41,91.0096 +211416,321.69,91.639 +211417,316.48,89.71232 +211418,317.77,90.35489 +211419,319.05,91.0111 +211420,320.32,91.6797 +211421,315.17,89.63556 +211422,316.44,90.31716 +211423,317.7,91.0123 +211424,318.94,91.7199 +211425,313.86,89.55937 +211426,315.11,90.27958 +211427,316.34,91.0134 +211428,317.56,91.7595 +211429,312.55,89.48379 +211430,313.78,90.24218 +211431,314.99,91.0142 +211432,316.18,91.7985 +211433,311.25,89.40884 +211434,312.44,90.20496 +211435,313.63,91.0147 +211436,314.8,91.8369 +211437,309.94,89.33455 +211438,311.11,90.16793 +211439,312.27,91.015 +211440,313.42,91.8746 +211441,308.63,89.26095 +211442,309.78,90.13109 +211443,310.92,91.015 +211444,312.04,91.9116 +211445,307.33,89.18807 +211446,308.45,90.09447 +211447,309.56,91.0148 +211448,310.65,91.9479 +211449,306.03,89.11594 +211450,307.12,90.058065 +211451,308.2,91.0143 +211452,309.27,91.9835 +211453,304.72,89.04458 +211454,305.79,90.021887 +211455,306.84,91.0135 +211456,307.88,92.0183 +211457,303.42,88.974 +211458,304.46,89.985945 +211459,305.49,91.0124 +211460,306.49,92.0523 +211461,302.12,88.9043 +211462,303.13,89.950249 +211463,304.13,91.011 +211464,305.11,92.0854 +211465,300.82,88.8354 +211466,301.8,89.914807 +211467,302.77,91.0093 +211468,303.72,92.1178 +211469,299.52,88.7674 +211470,300.47,89.87963 +211471,301.41,91.0072 +211472,302.33,92.1492 +211473,298.22,88.7002 +211474,299.15,89.84472 +211475,300.05,91.0049 +211476,300.94,92.1797 +211477,296.93,88.634 +211478,297.82,89.81009 +211479,298.69,91.0022 +211480,299.55,92.2093 +211481,295.63,88.5688 +211482,296.49,89.77574 +211483,297.33,90.9991 +211484,298.16,92.238 +211485,294.33,88.5045 +211486,295.16,89.7417 +211487,295.97,90.99568 +211488,296.77,92.2657 +211489,293.04,88.4412 +211490,293.83,89.70795 +211491,294.61,90.99191 +211492,295.37,92.2924 +211493,291.75,88.3789 +211494,292.51,89.67452 +211495,293.25,90.98776 +211496,293.98,92.318 +211497,290.45,88.3176 +211498,291.18,89.6414 +211499,291.89,90.98324 +211500,292.59,92.3426 +211501,289.16,88.2574 +211502,289.85,89.6086 +211503,290.53,90.97833 +211504,291.19,92.3662 +211505,287.87,88.1983 +211506,288.53,89.57614 +211507,289.17,90.97303 +211508,289.8,92.3886 +211509,286.57,88.1403 +211510,287.2,89.54402 +211511,287.81,90.96733 +211512,288.4,92.41 +211513,285.28,88.0833 +211514,285.88,89.51224 +211515,286.45,90.96123 +211516,287,92.4302 +211517,283.99,88.0275 +211518,284.55,89.48081 +211519,285.09,90.95472 +211520,285.61,92.4492 +211521,282.7,87.9729 +211522,283.23,89.44974 +211523,283.73,90.94779 +211524,284.21,92.4671 +211525,281.41,87.9194 +211526,281.9,89.41903 +211527,282.37,90.94043 +211528,282.81,92.4838 +211529,280.12,87.8671 +211530,280.57,89.38869 +211531,281.01,90.93265 +211532,281.41,92.4993 +211533,278.83,87.8159 +211534,279.25,89.35873 +211535,279.65,90.92443 +211536,280.02,92.5135 +211537,277.54,87.766 +211538,277.93,89.32914 +211539,278.28,90.91577 +211540,278.62,92.5265 +211541,276.26,87.7173 +211542,276.6,89.29994 +211543,276.92,90.90667 +211544,277.22,92.5382 +211545,274.97,87.6699 +211546,275.28,89.27113 +211547,275.56,90.89711 +211548,275.82,92.5487 +211549,273.68,87.6236 +211550,273.95,89.24271 +211551,274.2,90.8871 +211552,274.42,92.5578 +211553,272.39,87.5787 +211554,272.63,89.21469 +211555,272.84,90.87663 +211556,273.02,92.5657 +211557,271.1,87.535 +211558,271.3,89.18708 +211559,271.48,90.8657 +211560,271.62,92.5722 +211561,269.82,87.4926 +211562,269.98,89.15987 +211563,270.11,90.8543 +211564,270.22,92.5774 +211565,268.53,87.4515 +211566,268.66,89.13307 +211567,268.75,90.84243 +211568,268.82,92.5812 +211569,267.25,87.4117 +211570,267.33,89.10669 +211571,267.39,90.83008 +211572,267.42,92.5837 +211573,265.96,87.3733 +211574,266.01,89.08072 +211575,266.03,90.81725 +211576,266.02,92.5848 +211577,264.67,87.3361 +211578,264.68,89.05518 +211579,264.67,90.80394 +211580,264.62,92.5845 +211581,263.39,87.3003 +211582,263.36,89.03006 +211583,263.31,90.79015 +211584,263.22,92.5828 +211585,262.1,87.2658 +211586,262.04,89.00536 +211587,261.94,90.77587 +211588,261.82,92.5797 +211589,260.81,87.2326 +211590,260.71,88.9811 +211591,260.58,90.7611 +211592,260.42,92.5752 +211593,259.53,87.2008 +211594,259.39,88.9573 +211595,259.22,90.74584 +211596,259.02,92.5693 +211597,258.24,87.1703 +211598,258.07,88.9338 +211599,257.86,90.73008 +211600,257.61,92.562 +211601,256.96,87.1412 +211602,256.74,88.9109 +211603,256.5,90.71383 +211604,256.21,92.5532 +211605,255.67,87.1135 +211606,255.42,88.8883 +211607,255.14,90.69708 +211608,254.81,92.5429 +211609,254.38,87.0871 +211610,254.1,88.8662 +211611,253.78,90.67983 +211612,253.41,92.5312 +211613,253.1,87.062 +211614,252.77,88.8446 +211615,252.41,90.66209 +211616,252.02,92.5181 +211617,251.81,87.0384 +211618,251.45,88.8234 +211619,251.05,90.64384 +211620,250.62,92.5035 +211621,250.52,87.0161 +211622,250.13,88.8026 +211623,249.69,90.62509 +211624,249.22,92.4875 +211625,249.24,86.9951 +211626,248.8,88.7822 +211627,248.33,90.60585 +211628,247.82,92.47 +211629,247.95,86.9755 +211630,247.48,88.7623 +211631,246.97,90.5861 +211632,246.42,92.451 +211633,246.66,86.9573 +211634,246.16,88.7428 +211635,245.61,90.56585 +211636,245.02,92.4306 +211637,245.37,86.9405 +211638,244.83,88.7238 +211639,244.25,90.5451 +211640,243.62,92.4087 +211641,244.09,86.925 +211642,243.51,88.7052 +211643,242.89,90.52385 +211644,242.23,92.3854 +211645,242.8,86.9108 +211646,242.18,88.6871 +211647,241.53,90.50211 +211648,240.83,92.3606 +211649,241.51,86.898 +211650,240.86,88.6693 +211651,240.17,90.47986 +211652,239.44,92.3343 +211653,240.22,86.8865 +211654,239.54,88.652 +211655,238.81,90.45712 +211656,238.04,92.3066 +211657,238.93,86.8764 +211658,238.21,88.6352 +211659,237.45,90.43389 +211660,236.65,92.2775 +211661,237.64,86.8676 +211662,236.89,88.6188 +211663,236.09,90.41017 +211664,235.25,92.2469 +211665,236.35,86.8601 +211666,235.56,88.6028 +211667,234.73,90.38595 +211668,233.86,92.2149 +211669,235.06,86.854 +211670,234.24,88.5872 +211671,233.38,90.36125 +211672,232.46,92.1814 +211673,233.76,86.8491 +211674,232.91,88.572 +211675,232.02,90.33607 +211676,231.07,92.1465 +211677,232.47,86.8456 +211678,231.59,88.5573 +211679,230.66,90.3104 +211680,229.68,92.1102 +211681,231.18,86.8433 +211682,230.26,88.543 +211683,229.3,90.28426 +211684,228.29,92.0725 +211685,229.88,86.8423 +211686,228.94,88.5291 +211687,227.94,90.25764 +211688,226.9,92.0334 +211689,228.59,86.8426 +211690,227.61,88.5156 +211691,226.59,90.23055 +211692,225.51,91.993 +211693,227.3,86.8441 +211694,226.28,88.5025 +211695,225.23,90.20299 +211696,224.12,91.9511 +211697,226,86.8469 +211698,224.96,88.4898 +211699,223.87,90.17497 +211700,222.74,91.9079 +211701,224.7,86.8509 +211702,223.63,88.4775 +211703,222.52,90.14649 +211704,221.35,91.8633 +211705,223.41,86.8561 +211706,222.3,88.4657 +211707,221.16,90.11756 +211708,219.96,91.8174 +211709,222.11,86.8625 +211710,220.98,88.4541 +211711,219.8,90.088175 +211712,218.58,91.7702 +211713,220.81,86.8701 +211714,219.65,88.443 +211715,218.45,90.058347 +211716,217.2,91.7217 +211717,219.51,86.8789 +211718,218.32,88.4323 +211719,217.09,90.02808 +211720,215.81,91.6718 +211721,218.21,86.8888 +211722,217,88.4219 +211723,215.74,89.9973799 +211724,214.43,91.6207 +211725,216.91,86.8999 +211726,215.67,88.4119 +211727,214.39,89.966251 +211728,213.05,91.5684 +211729,215.6,86.9121 +211730,214.34,88.4023 +211731,213.03,89.934701 +211732,211.67,91.5148 +211733,214.3,86.9254 +211734,213.01,88.393 +211735,211.68,89.902734 +211736,210.29,91.4599 +211737,213,86.9398 +211738,211.68,88.3841 +211739,210.32,89.87036 +211740,208.91,91.4039 +211741,211.69,86.9553 +211742,210.35,88.3755 +211743,208.97,89.83758 +211744,207.54,91.3467 +211745,210.39,86.9718 +211746,209.02,88.3673 +211747,207.62,89.8044 +211748,206.16,91.2883 +211749,209.08,86.9893 +211750,207.69,88.3594 +211751,206.27,89.77083 +211752,204.79,91.2288 +211753,207.77,87.0079 +211754,206.36,88.3518 +211755,204.92,89.73688 +211756,203.42,91.1682 +211757,206.46,87.0274 +211758,205.03,88.3446 +211759,203.56,89.70256 +211760,202.04,91.1064 +211761,205.15,87.0479 +211762,203.7,88.3376 +211763,202.21,89.66787 +211764,200.67,91.0436 +211765,203.84,87.0693 +211766,202.37,88.331 +211767,200.86,89.63281 +211768,199.3,90.97974 +211769,202.53,87.0917 +211770,201.04,88.3246 +211771,199.51,89.59741 +211772,197.94,90.91484 +211773,201.21,87.115 +211774,199.71,88.3186 +211775,198.16,89.56165 +211776,196.57,90.84893 +211777,199.9,87.1391 +211778,198.38,88.3128 +211779,196.82,89.52557 +211780,195.2,90.78204 +211781,198.58,87.1642 +211782,197.05,88.3073 +211783,195.47,89.48915 +211784,193.84,90.7142 +211785,197.27,87.19 +211786,195.71,88.3021 +211787,194.12,89.45241 +211788,192.48,90.64542 +211789,195.95,87.2166 +211790,194.38,88.2971 +211791,192.77,89.41537 +211792,191.11,90.57574 +211793,194.63,87.2441 +211794,193.05,88.2924 +211795,191.42,89.37802 +211796,189.75,90.50518 +211797,193.31,87.2723 +211798,191.71,88.2879 +211799,190.08,89.34037 +211800,188.39,90.43378 +211801,191.99,87.3012 +211802,190.38,88.2837 +211803,188.73,89.30244 +211804,187.04,90.36155 +211805,190.66,87.3308 +211806,189.04,88.2796 +211807,187.38,89.26424 +211808,185.68,90.28853 +211809,189.34,87.3611 +211810,187.71,88.2758 +211811,186.04,89.22577 +211812,184.32,90.21474 +211813,188.01,87.3921 +211814,186.37,88.2722 +211815,184.69,89.18704 +211816,182.97,90.14022 +211817,186.69,87.4237 +211818,185.04,88.2688 +211819,183.35,89.14806 +211820,181.62,90.06499 +211821,185.36,87.4559 +211822,183.7,88.2656 +211823,182.01,89.10885 +211824,180.27,89.989083 +211825,184.03,87.4887 +211826,182.37,88.2626 +211827,180.66,89.0694 +211828,178.92,89.912528 +211829,182.7,87.522 +211830,181.03,88.2597 +211831,179.32,89.02974 +211832,177.57,89.83536 +211833,181.37,87.5558 +211834,179.69,88.257 +211835,177.98,88.9899 +211836,176.22,89.7576 +211837,180.03,87.5902 +211838,178.35,88.2545 +211839,176.64,88.9498 +211840,174.88,89.67928 +211841,178.7,87.625 +211842,177.02,88.2521 +211843,175.29,88.9096 +211844,173.53,89.60044 +211845,177.36,87.6602 +211846,175.68,88.2498 +211847,173.95,88.8691 +211848,172.19,89.52111 +211849,176.03,87.6958 +211850,174.34,88.2476 +211851,172.61,88.8285 +211852,170.85,89.44131 +211853,174.69,87.7319 +211854,173,88.2456 +211855,171.27,88.7878 +211856,169.51,89.36108 +211857,173.35,87.7682 +211858,171.66,88.2436 +211859,169.93,88.7468 +211860,168.17,89.28046 +211861,172.01,87.8049 +211862,170.32,88.2418 +211863,168.59,88.7058 +211864,166.83,89.19947 +211865,170.67,87.8419 +211866,168.98,88.24 +211867,167.26,88.6646 +211868,165.5,89.11814 +211869,169.32,87.8791 +211870,167.64,88.2383 +211871,165.92,88.6233 +211872,164.16,89.03651 +211873,167.98,87.9166 +211874,166.3,88.2367 +211875,164.58,88.582 +211876,162.83,88.9546 +211877,166.63,87.9542 +211878,164.95,88.2351 +211879,163.24,88.5405 +211880,161.5,88.8725 +211881,165.29,87.9921 +211882,163.61,88.2336 +211883,161.91,88.4989 +211884,160.17,88.7901 +211885,163.94,88.0301 +211886,162.27,88.2321 +211887,160.57,88.4573 +211888,158.84,88.7076 +211889,162.59,88.0682 +211890,160.93,88.2306 +211891,159.23,88.4155 +211892,157.51,88.625 +211893,161.24,88.1063 +211894,159.58,88.2292 +211895,157.9,88.3738 +211896,156.18,88.5422 +211897,159.88,88.1446 +211898,158.24,88.2277 +211899,156.56,88.332 +211900,154.86,88.4594 +211901,158.53,88.1828 +211902,156.9,88.2262 +211903,155.23,88.2902 +211904,153.54,88.3765 +211905,157.18,88.2211 +211906,155.55,88.2247 +211907,153.9,88.2483 +211908,152.21,88.2937 +211909,155.82,88.2593 +211910,154.21,88.2232 +211911,152.56,88.2065 +211912,150.89,88.2108 +211913,154.46,88.2974 +211914,152.86,88.2216 +211915,151.23,88.1646 +211916,149.57,88.128 +211917,153.1,88.3354 +211918,151.51,88.22 +211919,149.9,88.1228 +211920,148.26,88.0453 +211921,151.74,88.3734 +211922,150.17,88.2184 +211923,148.57,88.0809 +211924,146.94,87.9627 +211925,150.38,88.4111 +211926,148.82,88.2166 +211927,147.24,88.0391 +211928,145.62,87.8803 +211929,149.02,88.4487 +211930,147.47,88.2148 +211931,145.9,87.9974 +211932,144.31,87.7981 +211933,147.66,88.486 +211934,146.13,88.2129 +211935,144.57,87.9557 +211936,143,87.7161 +211937,146.29,88.5231 +211938,144.78,88.2109 +211939,143.24,87.9141 +211940,141.68,87.6343 +211941,144.92,88.56 +211942,143.43,88.2088 +211943,141.91,87.8725 +211944,140.37,87.5528 +211945,143.56,88.5965 +211946,142.08,88.2066 +211947,140.59,87.8311 +211948,139.06,87.4716 +211949,142.19,88.6327 +211950,140.73,88.2042 +211951,139.26,87.7897 +211952,137.76,87.3908 +211953,140.82,88.6685 +211954,139.39,88.2017 +211955,137.93,87.7484 +211956,136.45,87.3103 +211957,139.45,88.7039 +211958,138.04,88.1991 +211959,136.6,87.7073 +211960,135.14,87.2303 +211961,138.08,88.7389 +211962,136.69,88.1962 +211963,135.27,87.6663 +211964,133.84,87.1506 +211965,136.7,88.7735 +211966,135.34,88.1933 +211967,133.95,87.6254 +211968,132.54,87.0715 +211969,135.33,88.8076 +211970,133.99,88.1901 +211971,132.62,87.5847 +211972,131.23,86.9928 +211973,133.95,88.8412 +211974,132.63,88.1868 +211975,131.29,87.5441 +211976,129.93,86.9147 +211977,132.58,88.8742 +211978,131.28,88.1832 +211979,129.97,87.5037 +211980,128.63,86.8371 +211981,131.2,88.9067 +211982,129.93,88.1795 +211983,128.64,87.4634 +211984,127.33,86.7601 +211985,129.82,88.9386 +211986,128.58,88.1755 +211987,127.32,87.4234 +211988,126.03,86.6837 +211989,128.44,88.9698 +211990,127.23,88.1713 +211991,125.99,87.3835 +211992,124.74,86.608 +211993,127.06,89.00047 +211994,125.88,88.1669 +211995,124.67,87.3439 +211996,123.44,86.5329 +211997,125.68,89.03044 +211998,124.52,88.1623 +211999,123.35,87.3044 +212000,122.15,86.4585 +212001,124.3,89.0597 +212002,123.17,88.1573 +212003,122.02,87.2652 +212004,120.85,86.3849 +212005,122.91,89.08825 +212006,121.82,88.1522 +212007,120.7,87.2262 +212008,119.56,86.312 +212009,121.53,89.11604 +212010,120.46,88.1467 +212011,119.38,87.1875 +212012,118.27,86.2398 +212013,120.15,89.14307 +212014,119.11,88.141 +212015,118.05,87.149 +212016,116.98,86.1685 +212017,118.76,89.1693 +212018,117.76,88.135 +212019,116.73,87.1107 +212020,115.69,86.0979 +212021,117.37,89.19471 +212022,116.4,88.1287 +212023,115.41,87.0728 +212024,114.4,86.0283 +212025,115.99,89.21927 +212026,115.05,88.1221 +212027,114.09,87.0351 +212028,113.11,85.9595 +212029,114.6,89.24296 +212030,113.69,88.1152 +212031,112.77,86.9976 +212032,111.82,85.8915 +212033,113.21,89.26576 +212034,112.34,88.108 +212035,111.45,86.9605 +212036,110.53,85.8246 +212037,111.82,89.28765 +212038,110.98,88.1005 +212039,110.13,86.9237 +212040,109.25,85.7585 +212041,110.43,89.3086 +212042,109.63,88.0926 +212043,108.8,86.8871 +212044,107.96,85.6934 +212045,109.04,89.32859 +212046,108.27,88.0844 +212047,107.48,86.8509 +212048,106.68,85.6293 +212049,107.64,89.3476 +212050,106.92,88.0759 +212051,106.17,86.815 +212052,105.39,85.5662 +212053,106.25,89.36561 +212054,105.56,88.067 +212055,104.85,86.7794 +212056,104.11,85.5041 +212057,104.86,89.38259 +212058,104.2,88.0577 +212059,103.53,86.7442 +212060,102.83,85.4431 +212061,103.46,89.39854 +212062,102.85,88.0481 +212063,102.21,86.7092 +212064,101.54,85.3831 +212065,102.07,89.41342 +212066,101.49,88.0381 +212067,100.89,86.6747 +212068,100.26,85.3242 +212069,100.68,89.42722 +212070,100.13,88.0277 +212071,99.57,86.6405 +212072,98.981,85.2664 +212073,99.28,89.43993 +212074,98.778,88.017 +212075,98.251,86.6066 +212076,97.701,85.2097 +212077,97.884,89.45152 +212078,97.421,88.0058 +212079,96.933,86.5731 +212080,96.42,85.1542 +212081,96.488,89.46197 +212082,96.064,87.9943 +212083,95.615,86.54 +212084,95.141,85.0998 +212085,95.091,89.47127 +212086,94.707,87.9823 +212087,94.297,86.5072 +212088,93.861,85.0466 +212089,93.694,89.47941 +212090,93.35,87.97 +212091,92.979,86.4748 +212092,92.583,84.9945 +212093,92.297,89.48636 +212094,91.993,87.9572 +212095,91.662,86.4428 +212096,91.304,84.9437 +212097,90.9,89.49212 +212098,90.636,87.9441 +212099,90.344,86.4112 +212100,90.026,84.894 +212101,89.502,89.49666 +212102,89.279,87.9305 +212103,89.027,86.38 +212104,88.748,84.8456 +212105,88.104,89.49998 +212106,87.922,87.9165 +212107,87.71,86.3492 +212108,87.47,84.7984 +212109,86.705,89.50206 +212110,86.564,87.902 +212111,86.393,86.3188 +212112,86.193,84.7524 +212113,85.307,89.50289 +212114,85.207,87.8872 +212115,85.076,86.2888 +212116,84.916,84.7077 +212117,83.908,89.50245 +212118,83.85,87.8719 +212119,83.759,86.2592 +212120,83.639,84.6643 +212121,82.51,89.50074 +212122,82.492,87.8561 +212123,82.442,86.23 +212124,82.362,84.6221 +212125,81.111,89.49774 +212126,81.135,87.84 +212127,81.126,86.2012 +212128,81.086,84.5812 +212129,79.712,89.49344 +212130,79.778,87.8233 +212131,79.809,86.1729 +212132,79.809,84.5416 +212133,78.313,89.48784 +212134,78.42,87.8063 +212135,78.493,86.1449 +212136,78.533,84.5033 +212137,76.914,89.48092 +212138,77.063,87.7887 +212139,77.176,86.1174 +212140,77.256,84.4663 +212141,75.515,89.47269 +212142,75.706,87.7708 +212143,75.86,86.0903 +212144,75.98,84.4306 +212145,74.117,89.46312 +212146,74.349,87.7523 +212147,74.543,86.0637 +212148,74.703,84.3962 +212149,72.718,89.45221 +212150,72.992,87.7335 +212151,73.227,86.0374 +212152,73.427,84.3631 +212153,71.32,89.43996 +212154,71.635,87.7141 +212155,71.91,86.0117 +212156,72.15,84.3314 +212157,69.922,89.42637 +212158,70.278,87.6943 +212159,70.594,85.9863 +212160,70.874,84.301 +212161,68.524,89.41142 +212162,68.921,87.674 +212163,69.277,85.9614 +212164,69.597,84.2719 +212165,67.126,89.39511 +212166,67.564,87.6533 +212167,67.961,85.9369 +212168,68.32,84.2442 +212169,65.728,89.37745 +212170,66.208,87.6321 +212171,66.644,85.9128 +212172,67.043,84.2177 +212173,64.331,89.35842 +212174,64.851,87.6105 +212175,65.327,85.8892 +212176,65.765,84.1926 +212177,62.934,89.33802 +212178,63.495,87.5884 +212179,64.011,85.866 +212180,64.487,84.1689 +212181,61.538,89.31626 +212182,62.139,87.5658 +212183,62.694,85.8432 +212184,63.209,84.1465 +212185,60.142,89.29313 +212186,60.783,87.5428 +212187,61.377,85.8209 +212188,61.931,84.1254 +212189,58.747,89.26864 +212190,59.427,87.5193 +212191,60.06,85.799 +212192,60.652,84.1056 +212193,57.352,89.24278 +212194,58.071,87.4953 +212195,58.743,85.7776 +212196,59.373,84.0871 +212197,55.957,89.21555 +212198,56.716,87.4709 +212199,57.426,85.7566 +212200,58.094,84.07 +212201,54.563,89.18697 +212202,55.361,87.446 +212203,56.109,85.736 +212204,56.814,84.0542 +212205,53.17,89.15703 +212206,54.006,87.4207 +212207,54.791,85.7158 +212208,55.534,84.0397 +212209,51.777,89.12573 +212210,52.651,87.3949 +212211,53.474,85.6961 +212212,54.253,84.0264 +212213,50.385,89.09308 +212214,51.296,87.3686 +212215,52.156,85.6768 +212216,52.971,84.0145 +212217,48.993,89.05909 +212218,49.942,87.3419 +212219,50.838,85.6579 +212220,51.689,84.0039 +212221,47.603,89.02376 +212222,48.588,87.3148 +212223,49.52,85.6395 +212224,50.407,83.9946 +212225,46.213,88.9871 +212226,47.234,87.2872 +212227,48.202,85.6215 +212228,49.124,83.9865 +212229,44.823,88.9491 +212230,45.881,87.2592 +212231,46.884,85.6038 +212232,47.84,83.9797 +212233,43.435,88.9098 +212234,44.528,87.2307 +212235,45.565,85.5866 +212236,46.555,83.9742 +212237,42.047,88.8692 +212238,43.175,87.2018 +212239,44.246,85.5698 +212240,45.27,83.9699 +212241,40.661,88.8273 +212242,41.822,87.1724 +212243,42.927,85.5535 +212244,43.984,83.9668 +212245,39.275,88.7841 +212246,40.47,87.1426 +212247,41.608,85.5375 +212248,42.698,83.9649 +212249,37.89,88.7396 +212250,39.118,87.1124 +212251,40.289,85.5219 +212252,41.41,83.9643 +212253,36.506,88.6939 +212254,37.766,87.0818 +212255,38.969,85.5067 +212256,40.122,83.9648 +212257,35.123,88.6469 +212258,36.415,87.0507 +212259,37.649,85.4919 +212260,38.833,83.9666 +212261,33.74,88.5987 +212262,35.064,87.0192 +212263,36.329,85.4775 +212264,37.543,83.9695 +212265,32.359,88.5492 +212266,33.713,86.9874 +212267,35.008,85.4635 +212268,36.252,83.9736 +212269,30.979,88.4985 +212270,32.363,86.9551 +212271,33.687,85.4499 +212272,34.961,83.9788 +212273,29.6,88.4467 +212274,31.013,86.9224 +212275,32.366,85.4366 +212276,33.668,83.9851 +212277,28.222,88.3936 +212278,29.664,86.8893 +212279,31.045,85.4237 +212280,32.375,83.9925 +212281,26.845,88.3394 +212282,28.315,86.8559 +212283,29.723,85.4111 +212284,31.08,84.001 +212285,25.47,88.284 +212286,26.966,86.822 +212287,28.401,85.399 +212288,29.785,84.0106 +212289,24.095,88.2276 +212290,25.618,86.7878 +212291,27.079,85.3871 +212292,28.488,84.0213 +212293,22.722,88.17 +212294,24.27,86.7532 +212295,25.756,85.3756 +212296,27.191,84.033 +212297,21.35,88.1113 +212298,22.922,86.7182 +212299,24.433,85.3645 +212300,25.892,84.0457 +212301,19.979,88.0515 +212302,21.575,86.6829 +212303,23.11,85.3536 +212304,24.593,84.0594 +212305,18.609,87.9907 +212306,20.229,86.6473 +212307,21.787,85.3431 +212308,23.292,84.074 +212309,17.241,87.9288 +212310,18.882,86.6113 +212311,20.463,85.333 +212312,21.99,84.0897 +212313,15.873,87.8659 +212314,17.537,86.5749 +212315,19.138,85.3231 +212316,20.688,84.1062 +212317,14.507,87.8021 +212318,16.191,86.5382 +212319,17.814,85.3135 +212320,19.383,84.1237 +212321,13.143,87.7372 +212322,14.847,86.5012 +212323,16.489,85.3043 +212324,18.078,84.1421 +212325,11.78,87.6714 +212326,13.502,86.4639 +212327,15.163,85.2953 +212328,16.772,84.1614 +212329,10.418,87.6047 +212330,12.158,86.4263 +212331,13.838,85.2866 +212332,15.464,84.1815 +212333,9.057,87.5371 +212334,10.815,86.3884 +212335,12.511,85.2782 +212336,14.156,84.2024 +212337,7.6978,87.4687 +212338,9.4718,86.3502 +212339,11.185,85.27 +212340,12.846,84.2241 +212341,6.3399,87.3993 +212342,8.1293,86.3117 +212343,9.858,85.2621 +212344,11.534,84.2466 +212345,4.9835,87.3292 +212346,6.7872,86.2729 +212347,8.5307,85.2545 +212348,10.222,84.2699 +212349,3.6284,87.2582 +212350,5.4457,86.2339 +212351,7.203,85.2471 +212352,8.9083,84.2939 +212353,2.2748,87.1865 +212354,4.1046,86.1946 +212355,5.8749,85.2399 +212356,7.5934,84.3186 +212357,0.92256,87.1141 +212358,2.7641,86.155 +212359,4.5463,85.233 +212360,6.2771,84.3439 +212361,359.57,87.0409 +212362,1.424,86.1153 +212363,3.2174,85.2262 +212364,4.9595,84.37 +212365,358.22,86.967 +212366,0.084418,86.0753 +212367,1.8881,85.2197 +212368,3.6407,84.3966 +212369,356.87,86.8924 +212370,358.75,86.035 +212371,0.5583,85.2134 +212372,2.3205,84.4239 +212373,355.53,86.8172 +212374,357.41,85.9946 +212375,359.23,85.2073 +212376,0.99902,84.4517 +212377,354.18,86.7415 +212378,356.07,85.9539 +212379,357.9,85.2013 +212380,359.68,84.4801 +212381,352.84,86.6651 +212382,354.73,85.9131 +212383,356.57,85.1956 +212384,358.35,84.509 +212385,351.5,86.5882 +212386,353.39,85.8721 +212387,355.24,85.19 +212388,357.03,84.5384 +212389,350.16,86.5107 +212390,352.06,85.8309 +212391,353.9,85.1845 +212392,355.7,84.5683 +212393,348.82,86.4328 +212394,350.72,85.7895 +212395,352.57,85.1792 +212396,354.37,84.5986 +212397,347.48,86.3544 +212398,349.39,85.748 +212399,351.24,85.174 +212400,353.04,84.6293 +212401,346.14,86.2755 +212402,348.05,85.7063 +212403,349.9,85.169 +212404,351.71,84.6604 +212405,344.81,86.1963 +212406,346.72,85.6645 +212407,348.57,85.1641 +212408,350.38,84.6919 +212409,343.48,86.1167 +212410,345.38,85.6226 +212411,347.24,85.1593 +212412,349.04,84.7237 +212413,342.14,86.0367 +212414,344.05,85.5805 +212415,345.9,85.1546 +212416,347.71,84.7558 +212417,340.81,85.9565 +212418,342.72,85.5384 +212419,344.57,85.1499 +212420,346.37,84.7882 +212421,339.49,85.8759 +212422,341.38,85.4961 +212423,343.23,85.1454 +212424,345.04,84.8208 +212425,338.16,85.7951 +212426,340.05,85.4538 +212427,341.9,85.1409 +212428,343.7,84.8536 +212429,336.83,85.7141 +212430,338.72,85.4114 +212431,340.56,85.1365 +212432,342.36,84.8866 +212433,335.51,85.6329 +212434,337.39,85.3689 +212435,339.22,85.1321 +212436,341.01,84.9198 +212437,334.19,85.5516 +212438,336.06,85.3264 +212439,337.89,85.1278 +212440,339.67,84.9531 +212441,332.86,85.4701 +212442,334.73,85.2838 +212443,336.55,85.1235 +212444,338.33,84.9865 +212445,331.54,85.3886 +212446,333.4,85.2412 +212447,335.21,85.1192 +212448,336.98,85.02 +212449,330.23,85.3069 +212450,332.07,85.1986 +212451,333.87,85.1149 +212452,335.63,85.0535 +212453,328.91,85.2253 +212454,330.74,85.1559 +212455,332.53,85.1107 +212456,334.28,85.087 +212457,327.59,85.1436 +212458,329.42,85.1133 +212459,331.19,85.1064 +212460,332.93,85.1205 +212461,326.28,85.062 +212462,328.09,85.0706 +212463,329.86,85.1021 +212464,331.58,85.154 +212465,324.97,84.9804 +212466,326.76,85.028 +212467,328.52,85.0978 +212468,330.23,85.1874 +212469,323.66,84.899 +212470,325.44,84.9854 +212471,327.17,85.0934 +212472,328.88,85.2206 +212473,322.35,84.8177 +212474,324.11,84.9429 +212475,325.83,85.089 +212476,327.52,85.2538 +212477,321.04,84.7365 +212478,322.78,84.9003 +212479,324.49,85.0845 +212480,326.16,85.2868 +212481,319.73,84.6555 +212482,321.46,84.8579 +212483,323.15,85.08 +212484,324.8,85.3196 +212485,318.42,84.5747 +212486,320.14,84.8155 +212487,321.81,85.0753 +212488,323.45,85.3522 +212489,317.12,84.4942 +212490,318.81,84.7732 +212491,320.47,85.0706 +212492,322.08,85.3845 +212493,315.82,84.414 +212494,317.49,84.731 +212495,319.12,85.0658 +212496,320.72,85.4166 +212497,314.51,84.3341 +212498,316.16,84.6888 +212499,317.78,85.0609 +212500,319.36,85.4483 +212501,313.21,84.2545 +212502,314.84,84.6468 +212503,316.44,85.0559 +212504,318,85.4798 +212505,311.91,84.1753 +212506,313.52,84.6049 +212507,315.09,85.0508 +212508,316.63,85.5109 +212509,310.62,84.0965 +212510,312.2,84.5631 +212511,313.75,85.0455 +212512,315.26,85.5416 +212513,309.32,84.0181 +212514,310.88,84.5215 +212515,312.4,85.0401 +212516,313.89,85.5718 +212517,308.02,83.9402 +212518,309.56,84.48 +212519,311.06,85.0345 +212520,312.53,85.6017 +212521,306.73,83.8628 +212522,308.24,84.4387 +212523,309.71,85.0287 +212524,311.16,85.631 +212525,305.44,83.7858 +212526,306.92,84.3975 +212527,308.37,85.0228 +212528,309.78,85.6599 +212529,304.14,83.7095 +212530,305.6,84.3565 +212531,307.02,85.0167 +212532,308.41,85.6883 +212533,302.85,83.6337 +212534,304.28,84.3157 +212535,305.67,85.0104 +212536,307.04,85.7161 +212537,301.56,83.5585 +212538,302.96,84.2751 +212539,304.33,85.004 +212540,305.66,85.7433 +212541,300.28,83.4839 +212542,301.64,84.2346 +212543,302.98,84.9973 +212544,304.29,85.77 +212545,298.99,83.41 +212546,300.32,84.1944 +212547,301.63,84.9904 +212548,302.91,85.796 +212549,297.7,83.3368 +212550,299.01,84.1544 +212551,300.28,84.9832 +212552,301.53,85.8214 +212553,296.42,83.2643 +212554,297.69,84.1147 +212555,298.94,84.9759 +212556,300.15,85.8461 +212557,295.13,83.1925 +212558,296.37,84.0752 +212559,297.59,84.9683 +212560,298.77,85.8701 +212561,293.85,83.1215 +212562,295.06,84.0359 +212563,296.24,84.9604 +212564,297.39,85.8934 +212565,292.56,83.0513 +212566,293.74,83.9968 +212567,294.89,84.9523 +212568,296.01,85.9159 +212569,291.28,82.9818 +212570,292.42,83.9581 +212571,293.54,84.944 +212572,294.63,85.9377 +212573,290,82.9132 +212574,291.11,83.9196 +212575,292.19,84.9353 +212576,293.24,85.9587 +212577,288.72,82.8455 +212578,289.79,83.8814 +212579,290.84,84.9264 +212580,291.86,85.9788 +212581,287.44,82.7786 +212582,288.48,83.8434 +212583,289.49,84.9172 +212584,290.47,85.9982 +212585,286.17,82.7126 +212586,287.17,83.8058 +212587,288.14,84.9077 +212588,289.09,86.0167 +212589,284.89,82.6476 +212590,285.85,83.7684 +212591,286.79,84.8979 +212592,287.7,86.0343 +212593,283.61,82.5835 +212594,284.54,83.7314 +212595,285.44,84.8878 +212596,286.31,86.051 +212597,282.34,82.5203 +212598,283.22,83.6947 +212599,284.09,84.8774 +212600,284.92,86.0668 +212601,281.06,82.4582 +212602,281.91,83.6583 +212603,282.74,84.8666 +212604,283.53,86.0816 +212605,279.79,82.397 +212606,280.6,83.6222 +212607,281.38,84.8556 +212608,282.14,86.0955 +212609,278.51,82.3369 +212610,279.29,83.5865 +212611,280.03,84.8442 +212612,280.75,86.1084 +212613,277.24,82.2778 +212614,277.97,83.5511 +212615,278.68,84.8324 +212616,279.36,86.1204 +212617,275.97,82.2197 +212618,276.66,83.516 +212619,277.33,84.8203 +212620,277.97,86.1313 +212621,274.69,82.1628 +212622,275.35,83.4813 +212623,275.98,84.8079 +212624,276.58,86.1412 +212625,273.42,82.1069 +212626,274.04,83.4469 +212627,274.62,84.7951 +212628,275.18,86.15 +212629,272.15,82.0522 +212630,272.73,83.4129 +212631,273.27,84.7819 +212632,273.79,86.1578 +212633,270.88,81.9985 +212634,271.41,83.3793 +212635,271.92,84.7684 +212636,272.4,86.1645 +212637,269.61,81.946 +212638,270.1,83.3461 +212639,270.57,84.7545 +212640,271,86.1701 +212641,268.34,81.8947 +212642,268.79,83.3132 +212643,269.21,84.7402 +212644,269.61,86.1745 +212645,267.07,81.8445 +212646,267.48,83.2807 +212647,267.86,84.7256 +212648,268.21,86.1779 +212649,265.8,81.7955 +212650,266.17,83.2486 +212651,266.51,84.7105 +212652,266.82,86.1801 +212653,264.54,81.7477 +212654,264.86,83.2169 +212655,265.16,84.6951 +212656,265.42,86.1812 +212657,263.27,81.7011 +212658,263.55,83.1856 +212659,263.8,84.6793 +212660,264.03,86.1811 +212661,262,81.6558 +212662,262.24,83.1547 +212663,262.45,84.663 +212664,262.63,86.1799 +212665,260.73,81.6116 +212666,260.93,83.1241 +212667,261.1,84.6464 +212668,261.23,86.1774 +212669,259.46,81.5687 +212670,259.62,83.094 +212671,259.74,84.6294 +212672,259.84,86.1738 +212673,258.2,81.527 +212674,258.31,83.0643 +212675,258.39,84.6119 +212676,258.44,86.1689 +212677,256.93,81.4866 +212678,257,83.0351 +212679,257.04,84.594 +212680,257.04,86.1629 +212681,255.66,81.4474 +212682,255.69,83.0062 +212683,255.68,84.5758 +212684,255.64,86.1556 +212685,254.4,81.4095 +212686,254.38,82.9777 +212687,254.33,84.5571 +212688,254.25,86.147 +212689,253.13,81.3729 +212690,253.07,82.9497 +212691,252.98,84.538 +212692,252.85,86.1373 +212693,251.86,81.3375 +212694,251.76,82.9221 +212695,251.62,84.5184 +212696,251.45,86.1262 +212697,250.6,81.3035 +212698,250.45,82.8949 +212699,250.27,84.4985 +212700,250.06,86.114 +212701,249.33,81.2707 +212702,249.14,82.8681 +212703,248.92,84.4781 +212704,248.66,86.1004 +212705,248.06,81.2392 +212706,247.83,82.8418 +212707,247.57,84.4573 +212708,247.26,86.0856 +212709,246.79,81.209 +212710,246.52,82.8159 +212711,246.21,84.4361 +212712,245.87,86.0696 +212713,245.53,81.1801 +212714,245.21,82.7904 +212715,244.86,84.4144 +212716,244.47,86.0522 +212717,244.26,81.1525 +212718,243.9,82.7653 +212719,243.51,84.3923 +212720,243.07,86.0336 +212721,242.99,81.1262 +212722,242.59,82.7407 +212723,242.15,84.3698 +212724,241.68,86.0137 +212725,241.72,81.1012 +212726,241.28,82.7165 +212727,240.8,84.3468 +212728,240.28,85.9925 +212729,240.45,81.0775 +212730,239.97,82.6927 +212731,239.45,84.3234 +212732,238.89,85.97 +212733,239.19,81.0551 +212734,238.66,82.6694 +212735,238.1,84.2996 +212736,237.49,85.9463 +212737,237.92,81.034 +212738,237.35,82.6465 +212739,236.75,84.2754 +212740,236.1,85.9212 +212741,236.65,81.0142 +212742,236.04,82.624 +212743,235.39,84.2507 +212744,234.7,85.8949 +212745,235.38,80.9956 +212746,234.73,82.602 +212747,234.04,84.2256 +212748,233.31,85.8673 +212749,234.11,80.9783 +212750,233.42,82.5804 +212751,232.69,84.2001 +212752,231.92,85.8384 +212753,232.84,80.9624 +212754,232.11,82.5592 +212755,231.34,84.1741 +212756,230.52,85.8083 +212757,231.56,80.9477 +212758,230.8,82.5384 +212759,229.99,84.1477 +212760,229.13,85.7768 +212761,230.29,80.9342 +212762,229.49,82.518 +212763,228.64,84.1209 +212764,227.74,85.7441 +212765,229.02,80.922 +212766,228.18,82.4981 +212767,227.29,84.0937 +212768,226.35,85.7102 +212769,227.75,80.9111 +212770,226.87,82.4786 +212771,225.94,84.066 +212772,224.96,85.6749 +212773,226.47,80.9014 +212774,225.55,82.4595 +212775,224.59,84.038 +212776,223.57,85.6384 +212777,225.2,80.893 +212778,224.24,82.4408 +212779,223.24,84.0095 +212780,222.18,85.6007 +212781,223.92,80.8857 +212782,222.93,82.4225 +212783,221.89,83.9806 +212784,220.79,85.5617 +212785,222.65,80.8797 +212786,221.62,82.4046 +212787,220.54,83.9513 +212788,219.41,85.5215 +212789,221.37,80.8749 +212790,220.31,82.3872 +212791,219.19,83.9216 +212792,218.02,85.4801 +212793,220.1,80.8713 +212794,218.99,82.3701 +212795,217.84,83.8915 +212796,216.63,85.4375 +212797,218.82,80.8689 +212798,217.68,82.3534 +212799,216.49,83.861 +212800,215.25,85.3936 +212801,217.54,80.8676 +212802,216.37,82.3371 +212803,215.15,83.8301 +212804,213.87,85.3486 +212805,216.26,80.8675 +212806,215.05,82.3213 +212807,213.8,83.7988 +212808,212.48,85.3024 +212809,214.98,80.8685 +212810,213.74,82.3057 +212811,212.45,83.7671 +212812,211.1,85.255 +212813,213.7,80.8707 +212814,212.43,82.2906 +212815,211.1,83.7351 +212816,209.72,85.2065 +212817,212.41,80.874 +212818,211.11,82.2759 +212819,209.76,83.7026 +212820,208.34,85.1568 +212821,211.13,80.8784 +212822,209.8,82.2615 +212823,208.41,83.6698 +212824,206.96,85.106 +212825,209.85,80.8838 +212826,208.48,82.2474 +212827,207.07,83.6366 +212828,205.59,85.054 +212829,208.56,80.8903 +212830,207.17,82.2338 +212831,205.72,83.6031 +212832,204.21,85.001 +212833,207.28,80.8979 +212834,205.85,82.2205 +212835,204.38,83.5692 +212836,202.83,84.9469 +212837,205.99,80.9065 +212838,204.54,82.2075 +212839,203.03,83.535 +212840,201.46,84.8917 +212841,204.7,80.9161 +212842,203.22,82.1949 +212843,201.69,83.5004 +212844,200.09,84.8355 +212845,203.41,80.9267 +212846,201.9,82.1826 +212847,200.34,83.4654 +212848,198.72,84.7782 +212849,202.12,80.9383 +212850,200.59,82.1706 +212851,199,83.4302 +212852,197.35,84.7199 +212853,200.83,80.9509 +212854,199.27,82.159 +212855,197.66,83.3946 +212856,195.98,84.6606 +212857,199.54,80.9643 +212858,197.95,82.1477 +212859,196.31,83.3587 +212860,194.61,84.6004 +212861,198.24,80.9787 +212862,196.64,82.1367 +212863,194.97,83.3225 +212864,193.24,84.5391 +212865,196.95,80.994 +212866,195.32,82.126 +212867,193.63,83.2859 +212868,191.88,84.477 +212869,195.65,81.0102 +212870,194,82.1156 +212871,192.29,83.2491 +212872,190.51,84.4139 +212873,194.35,81.0272 +212874,192.68,82.1055 +212875,190.95,83.212 +212876,189.15,84.3499 +212877,193.05,81.045 +212878,191.36,82.0956 +212879,189.61,83.1746 +212880,187.79,84.285 +212881,191.75,81.0636 +212882,190.04,82.0861 +212883,188.27,83.1369 +212884,186.43,84.2193 +212885,190.45,81.0831 +212886,188.72,82.0768 +212887,186.93,83.0989 +212888,185.07,84.1528 +212889,189.15,81.1033 +212890,187.4,82.0678 +212891,185.59,83.0607 +212892,183.71,84.0854 +212893,187.85,81.1242 +212894,186.08,82.059 +212895,184.25,83.0223 +212896,182.36,84.0173 +212897,186.54,81.1458 +212898,184.76,82.0504 +212899,182.92,82.9835 +212900,181,83.9484 +212901,185.23,81.1681 +212902,183.44,82.0421 +212903,181.58,82.9446 +212904,179.65,83.8788 +212905,183.93,81.1911 +212906,182.11,82.0341 +212907,180.24,82.9054 +212908,178.3,83.8084 +212909,182.62,81.2147 +212910,180.79,82.0262 +212911,178.91,82.866 +212912,176.95,83.7374 +212913,181.31,81.239 +212914,179.47,82.0186 +212915,177.57,82.8264 +212916,175.6,83.6657 +212917,179.99,81.2638 +212918,178.14,82.0111 +212919,176.24,82.7865 +212920,174.26,83.5934 +212921,178.68,81.2892 +212922,176.82,82.0039 +212923,174.9,82.7465 +212924,172.91,83.5204 +212925,177.37,81.3151 +212926,175.5,81.9968 +212927,173.57,82.7063 +212928,171.57,83.4469 +212929,176.05,81.3415 +212930,174.17,81.9899 +212931,172.23,82.6659 +212932,170.23,83.3729 +212933,174.73,81.3685 +212934,172.85,81.9832 +212935,170.9,82.6254 +212936,168.89,83.2983 +212937,173.41,81.3958 +212938,171.52,81.9766 +212939,169.57,82.5847 +212940,167.55,83.2232 +212941,172.09,81.4236 +212942,170.19,81.9702 +212943,168.24,82.5438 +212944,166.21,83.1476 +212945,170.77,81.4518 +212946,168.87,81.9639 +212947,166.9,82.5028 +212948,164.87,83.0716 +212949,169.45,81.4804 +212950,167.54,81.9578 +212951,165.57,82.4616 +212952,163.54,82.9951 +212953,168.12,81.5093 +212954,166.21,81.9518 +212955,164.24,82.4204 +212956,162.21,82.9183 +212957,166.8,81.5386 +212958,164.88,81.9459 +212959,162.91,82.379 +212960,160.88,82.8411 +212961,165.47,81.5681 +212962,163.56,81.94 +212963,161.58,82.3375 +212964,159.55,82.7636 +212965,164.14,81.5979 +212966,162.23,81.9343 +212967,160.25,82.296 +212968,158.22,82.6858 +212969,162.81,81.6279 +212970,160.9,81.9287 +212971,158.93,82.2543 +212972,156.89,82.6078 +212973,161.48,81.6582 +212974,159.57,81.9232 +212975,157.6,82.2126 +212976,155.57,82.5294 +212977,160.14,81.6886 +212978,158.24,81.9177 +212979,156.27,82.1708 +212980,154.24,82.4509 +212981,158.81,81.7192 +212982,156.91,81.9122 +212983,154.95,82.1289 +212984,152.92,82.3722 +212985,157.47,81.7499 +212986,155.57,81.9068 +212987,153.62,82.0871 +212988,151.6,82.2934 +212989,156.13,81.7807 +212990,154.24,81.9015 +212991,152.29,82.0451 +212992,150.28,82.2144 +212993,154.8,81.8115 +212994,152.91,81.8962 +212995,150.97,82.0032 +212996,148.97,82.1353 +212997,153.45,81.8424 +212998,151.58,81.8909 +212999,149.64,81.9612 +213000,147.65,82.0562 +213001,152.11,81.8733 +213002,150.24,81.8856 +213003,148.32,81.9192 +213004,146.34,81.977 +213005,150.77,81.9042 +213006,148.91,81.8803 +213007,147,81.8773 +213008,145.03,81.8978 +213009,149.42,81.9351 +213010,147.58,81.875 +213011,145.67,81.8353 +213012,143.71,81.8187 +213013,148.08,81.9659 +213014,146.24,81.8696 +213015,144.35,81.7934 +213016,142.41,81.7396 +213017,146.73,81.9965 +213018,144.91,81.8643 +213019,143.03,81.7515 +213020,141.1,81.6607 +213021,145.38,82.0271 +213022,143.57,81.8589 +213023,141.71,81.7096 +213024,139.79,81.5818 +213025,144.03,82.0575 +213026,142.23,81.8534 +213027,140.39,81.6678 +213028,138.49,81.5031 +213029,142.68,82.0877 +213030,140.9,81.8479 +213031,139.07,81.6261 +213032,137.18,81.4245 +213033,141.32,82.1177 +213034,139.56,81.8424 +213035,137.75,81.5844 +213036,135.88,81.3462 +213037,139.97,82.1474 +213038,138.22,81.8367 +213039,136.43,81.5428 +213040,134.58,81.2681 +213041,138.61,82.1769 +213042,136.89,81.831 +213043,135.11,81.5013 +213044,133.28,81.1903 +213045,137.26,82.2061 +213046,135.55,81.8252 +213047,133.79,81.4599 +213048,131.98,81.1128 +213049,135.9,82.2349 +213050,134.21,81.8192 +213051,132.47,81.4186 +213052,130.69,81.0356 +213053,134.54,82.2635 +213054,132.87,81.8132 +213055,131.16,81.3775 +213056,129.39,80.9587 +213057,133.18,82.2916 +213058,131.53,81.807 +213059,129.84,81.3365 +213060,128.1,80.8823 +213061,131.81,82.3194 +213062,130.19,81.8007 +213063,128.52,81.2956 +213064,126.81,80.8062 +213065,130.45,82.3467 +213066,128.85,81.7943 +213067,127.21,81.2548 +213068,125.52,80.7306 +213069,129.08,82.3735 +213070,127.51,81.7877 +213071,125.89,81.2142 +213072,124.23,80.6555 +213073,127.72,82.3999 +213074,126.17,81.7809 +213075,124.58,81.1738 +213076,122.94,80.5809 +213077,126.35,82.4258 +213078,124.83,81.774 +213079,123.26,81.1336 +213080,121.65,80.5068 +213081,124.98,82.4512 +213082,123.49,81.7669 +213083,121.95,81.0935 +213084,120.37,80.4332 +213085,123.61,82.476 +213086,122.14,81.7596 +213087,120.64,81.0537 +213088,119.08,80.3603 +213089,122.24,82.5002 +213090,120.8,81.7521 +213091,119.32,81.014 +213092,117.8,80.2879 +213093,120.87,82.5238 +213094,119.46,81.7445 +213095,118.01,80.9745 +213096,116.52,80.2161 +213097,119.5,82.5468 +213098,118.12,81.7366 +213099,116.7,80.9353 +213100,115.24,80.1451 +213101,118.12,82.5691 +213102,116.77,81.7285 +213103,115.39,80.8963 +213104,113.96,80.0747 +213105,116.75,82.5908 +213106,115.43,81.7202 +213107,114.07,80.8575 +213108,112.68,80.005 +213109,115.37,82.6118 +213110,114.08,81.7116 +213111,112.76,80.819 +213112,111.4,79.936 +213113,113.99,82.632 +213114,112.74,81.7028 +213115,111.45,80.7807 +213116,110.13,79.868 +213117,112.61,82.6516 +213118,111.39,81.6938 +213119,110.14,80.7427 +213120,108.85,79.8 +213121,111.23,82.6703 +213122,110.05,81.6845 +213123,108.83,80.705 +213124,107.58,79.734 +213125,109.85,82.6883 +213126,108.7,81.6749 +213127,107.52,80.6675 +213128,106.3,79.668 +213129,108.47,82.7054 +213130,107.36,81.6651 +213131,106.21,80.6303 +213132,105.03,79.603 +213133,107.09,82.7218 +213134,106.01,81.655 +213135,104.9,80.5934 +213136,103.76,79.539 +213137,105.7,82.7373 +213138,104.67,81.6446 +213139,103.59,80.5568 +213140,102.49,79.476 +213141,104.32,82.7519 +213142,103.32,81.6339 +213143,102.29,80.5205 +213144,101.22,79.414 +213145,102.94,82.7656 +213146,101.97,81.6229 +213147,100.98,80.4845 +213148,99.949,79.352 +213149,101.55,82.7785 +213150,100.63,81.6116 +213151,99.67,80.4488 +213152,98.68,79.292 +213153,100.16,82.7904 +213154,99.279,81.6 +213155,98.362,80.4135 +213156,97.413,79.233 +213157,98.775,82.8014 +213158,97.931,81.5881 +213159,97.055,80.3784 +213160,96.146,79.174 +213161,97.387,82.8114 +213162,96.584,81.5759 +213163,95.748,80.3437 +213164,94.88,79.117 +213165,95.998,82.8204 +213166,95.236,81.5633 +213167,94.442,80.3094 +213168,93.615,79.06 +213169,94.609,82.8285 +213170,93.888,81.5504 +213171,93.135,80.2754 +213172,92.351,79.005 +213173,93.219,82.8355 +213174,92.539,81.5372 +213175,91.829,80.2417 +213176,91.087,78.951 +213177,91.828,82.8416 +213178,91.191,81.5236 +213179,90.523,80.2084 +213180,89.823,78.898 +213181,90.437,82.8466 +213182,89.842,81.5097 +213183,89.217,80.1755 +213184,88.561,78.846 +213185,89.045,82.8505 +213186,88.494,81.4955 +213187,87.911,80.143 +213188,87.298,78.795 +213189,87.653,82.8534 +213190,87.145,81.4808 +213191,86.606,80.1108 +213192,86.036,78.745 +213193,86.26,82.8552 +213194,85.796,81.4658 +213195,85.301,80.0789 +213196,84.775,78.696 +213197,84.867,82.8559 +213198,84.447,81.4505 +213199,83.996,80.0475 +213200,83.514,78.649 +213201,83.473,82.8555 +213202,83.097,81.4348 +213203,82.691,80.0165 +213204,82.254,78.602 +213205,82.079,82.854 +213206,81.748,81.4187 +213207,81.386,79.986 +213208,80.993,78.557 +213209,80.685,82.8514 +213210,80.399,81.4022 +213211,80.082,79.956 +213212,79.734,78.513 +213213,79.291,82.8476 +213214,79.049,81.3853 +213215,78.777,79.926 +213216,78.474,78.47 +213217,77.896,82.8427 +213218,77.7,81.3681 +213219,77.473,79.896 +213220,77.215,78.428 +213221,76.501,82.8366 +213222,76.35,81.3504 +213223,76.168,79.867 +213224,75.956,78.388 +213225,75.105,82.8294 +213226,75.001,81.3324 +213227,74.864,79.838 +213228,74.697,78.349 +213229,73.71,82.821 +213230,73.651,81.314 +213231,73.56,79.81 +213232,73.438,78.311 +213233,72.314,82.8114 +213234,72.301,81.2952 +213235,72.256,79.782 +213236,72.179,78.274 +213237,70.919,82.8006 +213238,70.952,81.276 +213239,70.952,79.755 +213240,70.921,78.239 +213241,69.523,82.7887 +213242,69.602,81.2564 +213243,69.648,79.728 +213244,69.662,78.204 +213245,68.127,82.7755 +213246,68.253,81.2364 +213247,68.344,79.701 +213248,68.404,78.171 +213249,66.731,82.7611 +213250,66.903,81.216 +213251,67.04,79.675 +213252,67.145,78.14 +213253,65.336,82.7456 +213254,65.553,81.1951 +213255,65.737,79.649 +213256,65.887,78.109 +213257,63.94,82.7288 +213258,64.204,81.1739 +213259,64.433,79.624 +213260,64.628,78.08 +213261,62.545,82.7108 +213262,62.855,81.1523 +213263,63.129,79.599 +213264,63.369,78.052 +213265,61.149,82.6915 +213266,61.505,81.1303 +213267,61.825,79.575 +213268,62.11,78.025 +213269,59.754,82.6711 +213270,60.156,81.1078 +213271,60.521,79.55 +213272,60.851,78 +213273,58.359,82.6494 +213274,58.807,81.085 +213275,59.217,79.527 +213276,59.592,77.976 +213277,56.965,82.6265 +213278,57.458,81.0617 +213279,57.913,79.504 +213280,58.332,77.953 +213281,55.57,82.6024 +213282,56.109,81.038 +213283,56.609,79.481 +213284,57.072,77.931 +213285,54.176,82.5771 +213286,54.76,81.014 +213287,55.304,79.458 +213288,55.812,77.911 +213289,52.782,82.5505 +213290,53.412,80.9895 +213291,54,79.436 +213292,54.551,77.892 +213293,51.389,82.5228 +213294,52.063,80.9646 +213295,52.696,79.415 +213296,53.29,77.874 +213297,49.996,82.4938 +213298,50.715,80.9393 +213299,51.391,79.394 +213300,52.029,77.857 +213301,48.604,82.4636 +213302,49.367,80.9136 +213303,50.086,79.373 +213304,50.767,77.842 +213305,47.212,82.4322 +213306,48.019,80.8875 +213307,48.782,79.353 +213308,49.505,77.828 +213309,45.821,82.3995 +213310,46.671,80.861 +213311,47.477,79.333 +213312,48.242,77.815 +213313,44.43,82.3657 +213314,45.324,80.8341 +213315,46.171,79.313 +213316,46.978,77.803 +213317,43.04,82.3307 +213318,43.977,80.8068 +213319,44.866,79.294 +213320,45.714,77.793 +213321,41.651,82.2945 +213322,42.63,80.7791 +213323,43.561,79.276 +213324,44.449,77.783 +213325,40.262,82.2571 +213326,41.283,80.751 +213327,42.255,79.257 +213328,43.184,77.775 +213329,38.874,82.2185 +213330,39.936,80.7226 +213331,40.949,79.239 +213332,41.918,77.769 +213333,37.487,82.1787 +213334,38.59,80.6937 +213335,39.643,79.222 +213336,40.651,77.763 +213337,36.1,82.1378 +213338,37.244,80.6645 +213339,38.337,79.205 +213340,39.384,77.759 +213341,34.714,82.0958 +213342,35.898,80.6348 +213343,37.03,79.188 +213344,38.116,77.755 +213345,33.329,82.0526 +213346,34.553,80.6049 +213347,35.723,79.172 +213348,36.846,77.753 +213349,31.945,82.0082 +213350,33.208,80.5745 +213351,34.416,79.156 +213352,35.577,77.752 +213353,30.562,81.9628 +213354,31.863,80.5437 +213355,33.109,79.14 +213356,34.306,77.752 +213357,29.18,81.9162 +213358,30.519,80.5126 +213359,31.801,79.125 +213360,33.034,77.753 +213361,27.799,81.8686 +213362,29.175,80.4812 +213363,30.493,79.111 +213364,31.762,77.756 +213365,26.419,81.8199 +213366,27.831,80.4493 +213367,29.185,79.096 +213368,30.488,77.759 +213369,25.04,81.77 +213370,26.488,80.4172 +213371,27.877,79.082 +213372,29.214,77.764 +213373,23.662,81.7192 +213374,25.145,80.3847 +213375,26.568,79.068 +213376,27.938,77.769 +213377,22.285,81.6673 +213378,23.803,80.3518 +213379,25.259,79.055 +213380,26.662,77.776 +213381,20.909,81.6143 +213382,22.46,80.3186 +213383,23.949,79.042 +213384,25.384,77.783 +213385,19.534,81.5604 +213386,21.119,80.2851 +213387,22.639,79.029 +213388,24.106,77.792 +213389,18.161,81.5055 +213390,19.777,80.2512 +213391,21.329,79.017 +213392,22.826,77.802 +213393,16.788,81.4495 +213394,18.436,80.2171 +213395,20.019,79.005 +213396,21.545,77.812 +213397,15.417,81.3927 +213398,17.096,80.1826 +213399,18.708,78.993 +213400,20.263,77.824 +213401,14.048,81.3348 +213402,15.756,80.1478 +213403,17.397,78.982 +213404,18.98,77.836 +213405,12.679,81.2761 +213406,14.416,80.1127 +213407,16.085,78.971 +213408,17.696,77.849 +213409,11.312,81.2164 +213410,13.077,80.0773 +213411,14.773,78.96 +213412,16.411,77.863 +213413,9.9458,81.1559 +213414,11.738,80.0416 +213415,13.461,78.95 +213416,15.124,77.878 +213417,8.5812,81.0945 +213418,10.4,80.0057 +213419,12.148,78.94 +213420,13.836,77.894 +213421,7.218,81.0322 +213422,9.0619,79.969 +213423,10.835,78.93 +213424,12.547,77.911 +213425,5.8562,80.9691 +213426,7.7245,79.933 +213427,9.5211,78.92 +213428,11.256,77.929 +213429,4.4958,80.9052 +213430,6.3877,79.896 +213431,8.2071,78.911 +213432,9.9645,77.947 +213433,3.1368,80.8406 +213434,5.0513,79.859 +213435,6.8926,78.902 +213436,8.6714,77.966 +213437,1.7792,80.7751 +213438,3.7154,79.822 +213439,5.5777,78.893 +213440,7.377,77.986 +213441,0.42317,80.7089 +213442,2.38,79.784 +213443,4.2624,78.884 +213444,6.0812,78.006 +213445,359.07,80.642 +213446,1.0451,79.747 +213447,2.9467,78.876 +213448,4.7841,78.028 +213449,357.72,80.5745 +213450,359.71,79.709 +213451,1.6305,78.868 +213452,3.4856,78.049 +213453,356.36,80.5062 +213454,358.38,79.671 +213455,0.31381,78.86 +213456,2.1857,78.072 +213457,355.01,80.4373 +213458,357.04,79.632 +213459,359,78.852 +213460,0.88435,78.095 +213461,353.67,80.3678 +213462,355.71,79.594 +213463,357.68,78.845 +213464,359.58,78.119 +213465,352.32,80.2976 +213466,354.38,79.555 +213467,356.36,78.838 +213468,358.28,78.143 +213469,350.97,80.227 +213470,353.05,79.516 +213471,355.04,78.83 +213472,356.97,78.168 +213473,349.63,80.1557 +213474,351.72,79.477 +213475,353.72,78.824 +213476,355.66,78.193 +213477,348.29,80.084 +213478,350.38,79.438 +213479,352.4,78.817 +213480,354.36,78.219 +213481,346.95,80.0117 +213482,349.05,79.398 +213483,351.08,78.81 +213484,353.05,78.245 +213485,345.61,79.939 +213486,347.72,79.359 +213487,349.76,78.804 +213488,351.73,78.272 +213489,344.27,79.866 +213490,346.4,79.319 +213491,348.44,78.797 +213492,350.42,78.299 +213493,342.93,79.792 +213494,345.07,79.279 +213495,347.12,78.791 +213496,349.11,78.326 +213497,341.6,79.718 +213498,343.74,79.239 +213499,345.8,78.785 +213500,347.79,78.354 +213501,340.27,79.644 +213502,342.41,79.199 +213503,344.48,78.779 +213504,346.47,78.382 +213505,338.94,79.569 +213506,341.09,79.159 +213507,343.15,78.774 +213508,345.16,78.41 +213509,337.61,79.494 +213510,339.76,79.119 +213511,341.83,78.768 +213512,343.83,78.439 +213513,336.28,79.419 +213514,338.43,79.078 +213515,340.51,78.762 +213516,342.51,78.468 +213517,334.96,79.344 +213518,337.11,79.038 +213519,339.18,78.757 +213520,341.19,78.497 +213521,333.63,79.268 +213522,335.78,78.998 +213523,337.86,78.751 +213524,339.86,78.526 +213525,332.31,79.192 +213526,334.46,78.957 +213527,336.53,78.746 +213528,338.54,78.556 +213529,330.99,79.116 +213530,333.14,78.916 +213531,335.21,78.74 +213532,337.21,78.585 +213533,329.67,79.04 +213534,331.81,78.876 +213535,333.88,78.735 +213536,335.88,78.615 +213537,328.35,78.964 +213538,330.49,78.835 +213539,332.55,78.73 +213540,334.55,78.645 +213541,327.04,78.887 +213542,329.17,78.795 +213543,331.23,78.725 +213544,333.22,78.675 +213545,325.72,78.811 +213546,327.85,78.754 +213547,329.9,78.719 +213548,331.88,78.705 +213549,324.41,78.734 +213550,326.53,78.713 +213551,328.57,78.714 +213552,330.55,78.734 +213553,323.1,78.658 +213554,325.21,78.673 +213555,327.24,78.709 +213556,329.21,78.764 +213557,321.79,78.582 +213558,323.89,78.632 +213559,325.91,78.704 +213560,327.87,78.794 +213561,320.48,78.505 +213562,322.57,78.591 +213563,324.58,78.698 +213564,326.53,78.824 +213565,319.17,78.429 +213566,321.25,78.551 +213567,323.25,78.693 +213568,325.19,78.853 +213569,317.87,78.353 +213570,319.93,78.51 +213571,321.92,78.688 +213572,323.85,78.883 +213573,316.57,78.277 +213574,318.61,78.47 +213575,320.59,78.682 +213576,322.5,78.912 +213577,315.27,78.201 +213578,317.3,78.43 +213579,319.26,78.677 +213580,321.16,78.941 +213581,313.97,78.126 +213582,315.98,78.389 +213583,317.93,78.671 +213584,319.81,78.97 +213585,312.67,78.051 +213586,314.67,78.349 +213587,316.59,78.666 +213588,318.46,78.998 +213589,311.37,77.976 +213590,313.35,78.309 +213591,315.26,78.66 +213592,317.11,79.026 +213593,310.08,77.901 +213594,312.04,78.269 +213595,313.93,78.654 +213596,315.76,79.054 +213597,308.78,77.827 +213598,310.72,78.229 +213599,312.59,78.649 +213600,314.4,79.082 +213601,307.49,77.753 +213602,309.41,78.189 +213603,311.26,78.643 +213604,313.05,79.109 +213605,306.2,77.679 +213606,308.09,78.15 +213607,309.92,78.636 +213608,311.69,79.136 +213609,304.91,77.606 +213610,306.78,78.11 +213611,308.59,78.63 +213612,310.34,79.163 +213613,303.62,77.533 +213614,305.47,78.071 +213615,307.25,78.624 +213616,308.98,79.189 +213617,302.34,77.461 +213618,304.16,78.032 +213619,305.92,78.617 +213620,307.62,79.214 +213621,301.05,77.389 +213622,302.85,77.993 +213623,304.58,78.611 +213624,306.26,79.239 +213625,299.77,77.318 +213626,301.54,77.954 +213627,303.24,78.604 +213628,304.89,79.264 +213629,298.49,77.247 +213630,300.22,77.915 +213631,301.9,78.597 +213632,303.53,79.288 +213633,297.2,77.177 +213634,298.91,77.877 +213635,300.57,78.589 +213636,302.16,79.311 +213637,295.93,77.107 +213638,297.61,77.839 +213639,299.23,78.582 +213640,300.8,79.334 +213641,294.65,77.038 +213642,296.3,77.801 +213643,297.89,78.574 +213644,299.43,79.356 +213645,293.37,76.97 +213646,294.99,77.763 +213647,296.55,78.567 +213648,298.06,79.378 +213649,292.09,76.902 +213650,293.68,77.725 +213651,295.21,78.559 +213652,296.69,79.399 +213653,290.82,76.835 +213654,292.37,77.688 +213655,293.87,78.55 +213656,295.32,79.419 +213657,289.55,76.769 +213658,291.07,77.651 +213659,292.53,78.542 +213660,293.95,79.439 +213661,288.27,76.704 +213662,289.76,77.614 +213663,291.19,78.533 +213664,292.57,79.458 +213665,287,76.639 +213666,288.45,77.578 +213667,289.85,78.524 +213668,291.2,79.476 +213669,285.73,76.575 +213670,287.15,77.541 +213671,288.51,78.515 +213672,289.82,79.494 +213673,284.47,76.512 +213674,285.84,77.505 +213675,287.17,78.505 +213676,288.45,79.51 +213677,283.2,76.45 +213678,284.53,77.47 +213679,285.82,78.496 +213680,287.07,79.526 +213681,281.93,76.388 +213682,283.23,77.434 +213683,284.48,78.486 +213684,285.69,79.541 +213685,280.67,76.328 +213686,281.93,77.399 +213687,283.14,78.475 +213688,284.31,79.555 +213689,279.4,76.268 +213690,280.62,77.364 +213691,281.8,78.465 +213692,282.93,79.569 +213693,278.14,76.21 +213694,279.32,77.33 +213695,280.45,78.454 +213696,281.55,79.581 +213697,276.87,76.152 +213698,278.01,77.295 +213699,279.11,78.443 +213700,280.16,79.593 +213701,275.61,76.095 +213702,276.71,77.261 +213703,277.77,78.431 +213704,278.78,79.603 +213705,274.35,76.039 +213706,275.41,77.228 +213707,276.42,78.42 +213708,277.4,79.613 +213709,273.09,75.984 +213710,274.1,77.194 +213711,275.08,78.408 +213712,276.01,79.622 +213713,271.83,75.931 +213714,272.8,77.162 +213715,273.73,78.395 +213716,274.63,79.629 +213717,270.57,75.878 +213718,271.5,77.129 +213719,272.39,78.382 +213720,273.24,79.636 +213721,269.31,75.826 +213722,270.2,77.097 +213723,271.04,78.369 +213724,271.85,79.642 +213725,268.06,75.775 +213726,268.9,77.065 +213727,269.7,78.356 +213728,270.46,79.647 +213729,266.8,75.726 +213730,267.6,77.033 +213731,268.35,78.342 +213732,269.07,79.651 +213733,265.54,75.677 +213734,266.29,77.002 +213735,267.01,78.328 +213736,267.69,79.654 +213737,264.29,75.63 +213738,264.99,76.971 +213739,265.66,78.314 +213740,266.3,79.655 +213741,263.03,75.584 +213742,263.69,76.941 +213743,264.32,78.299 +213744,264.91,79.656 +213745,261.78,75.539 +213746,262.39,76.911 +213747,262.97,78.284 +213748,263.51,79.656 +213749,260.52,75.494 +213750,261.09,76.881 +213751,261.62,78.268 +213752,262.12,79.654 +213753,259.27,75.452 +213754,259.79,76.852 +213755,260.28,78.252 +213756,260.73,79.651 +213757,258.02,75.41 +213758,258.49,76.823 +213759,258.93,78.236 +213760,259.34,79.648 +213761,256.77,75.369 +213762,257.19,76.794 +213763,257.59,78.22 +213764,257.95,79.643 +213765,255.51,75.33 +213766,255.89,76.766 +213767,256.24,78.203 +213768,256.55,79.637 +213769,254.26,75.292 +213770,254.59,76.739 +213771,254.89,78.185 +213772,255.16,79.63 +213773,253.01,75.255 +213774,253.29,76.711 +213775,253.55,78.167 +213776,253.76,79.622 +213777,251.76,75.219 +213778,251.99,76.684 +213779,252.2,78.149 +213780,252.37,79.613 +213781,250.51,75.185 +213782,250.69,76.658 +213783,250.85,78.131 +213784,250.98,79.602 +213785,249.25,75.151 +213786,249.4,76.632 +213787,249.5,78.112 +213788,249.58,79.59 +213789,248,75.119 +213790,248.1,76.606 +213791,248.16,78.093 +213792,248.19,79.578 +213793,246.75,75.088 +213794,246.8,76.581 +213795,246.81,78.073 +213796,246.79,79.564 +213797,245.5,75.059 +213798,245.5,76.556 +213799,245.46,78.053 +213800,245.4,79.548 +213801,244.25,75.03 +213802,244.2,76.531 +213803,244.12,78.032 +213804,244,79.532 +213805,243,75.003 +213806,242.9,76.507 +213807,242.77,78.012 +213808,242.61,79.515 +213809,241.75,74.977 +213810,241.6,76.484 +213811,241.42,77.99 +213812,241.21,79.496 +213813,240.5,74.953 +213814,240.3,76.46 +213815,240.08,77.969 +213816,239.82,79.476 +213817,239.24,74.929 +213818,239,76.438 +213819,238.73,77.947 +213820,238.42,79.455 +213821,237.99,74.907 +213822,237.7,76.415 +213823,237.38,77.924 +213824,237.03,79.433 +213825,236.74,74.886 +213826,236.4,76.393 +213827,236.04,77.901 +213828,235.63,79.409 +213829,235.49,74.866 +213830,235.11,76.372 +213831,234.69,77.878 +213832,234.24,79.385 +213833,234.23,74.848 +213834,233.81,76.35 +213835,233.34,77.854 +213836,232.85,79.359 +213837,232.98,74.831 +213838,232.51,76.33 +213839,232,77.83 +213840,231.45,79.332 +213841,231.73,74.814 +213842,231.21,76.309 +213843,230.65,77.806 +213844,230.06,79.304 +213845,230.48,74.8 +213846,229.91,76.289 +213847,229.31,77.781 +213848,228.67,79.275 +213849,229.22,74.786 +213850,228.61,76.27 +213851,227.96,77.756 +213852,227.27,79.244 +213853,227.97,74.774 +213854,227.31,76.251 +213855,226.61,77.73 +213856,225.88,79.212 +213857,226.71,74.763 +213858,226.01,76.232 +213859,225.27,77.704 +213860,224.49,79.18 +213861,225.46,74.753 +213862,224.71,76.214 +213863,223.92,77.678 +213864,223.1,79.146 +213865,224.2,74.744 +213866,223.41,76.196 +213867,222.58,77.651 +213868,221.71,79.11 +213869,222.94,74.736 +213870,222.11,76.178 +213871,221.23,77.624 +213872,220.32,79.074 +213873,221.69,74.73 +213874,220.81,76.161 +213875,219.89,77.597 +213876,218.93,79.037 +213877,220.43,74.725 +213878,219.51,76.144 +213879,218.54,77.569 +213880,217.54,78.998 +213881,219.17,74.721 +213882,218.2,76.128 +213883,217.2,77.541 +213884,216.15,78.958 +213885,217.91,74.718 +213886,216.9,76.112 +213887,215.86,77.512 +213888,214.76,78.918 +213889,216.65,74.716 +213890,215.6,76.096 +213891,214.51,77.483 +213892,213.38,78.876 +213893,215.39,74.715 +213894,214.3,76.081 +213895,213.17,77.454 +213896,211.99,78.833 +213897,214.13,74.716 +213898,213,76.066 +213899,211.83,77.424 +213900,210.61,78.789 +213901,212.86,74.717 +213902,211.7,76.052 +213903,210.48,77.394 +213904,209.22,78.743 +213905,211.6,74.72 +213906,210.39,76.038 +213907,209.14,77.363 +213908,207.84,78.697 +213909,210.34,74.723 +213910,209.09,76.024 +213911,207.8,77.333 +213912,206.46,78.65 +213913,209.07,74.728 +213914,207.79,76.01 +213915,206.46,77.302 +213916,205.07,78.602 +213917,207.8,74.734 +213918,206.48,75.997 +213919,205.12,77.27 +213920,203.69,78.552 +213921,206.54,74.741 +213922,205.18,75.985 +213923,203.78,77.238 +213924,202.31,78.502 +213925,205.27,74.748 +213926,203.88,75.972 +213927,202.43,77.206 +213928,200.94,78.451 +213929,204,74.757 +213930,202.57,75.96 +213931,201.09,77.174 +213932,199.56,78.398 +213933,202.73,74.767 +213934,201.27,75.949 +213935,199.75,77.141 +213936,198.18,78.345 +213937,201.46,74.777 +213938,199.96,75.937 +213939,198.41,77.108 +213940,196.81,78.291 +213941,200.18,74.789 +213942,198.66,75.926 +213943,197.08,77.075 +213944,195.43,78.235 +213945,198.91,74.802 +213946,197.35,75.915 +213947,195.74,77.041 +213948,194.06,78.179 +213949,197.63,74.815 +213950,196.04,75.905 +213951,194.4,77.007 +213952,192.69,78.122 +213953,196.36,74.829 +213954,194.74,75.895 +213955,193.06,76.973 +213956,191.32,78.064 +213957,195.08,74.845 +213958,193.43,75.885 +213959,191.72,76.938 +213960,189.95,78.006 +213961,193.8,74.86 +213962,192.12,75.875 +213963,190.39,76.904 +213964,188.58,77.946 +213965,192.52,74.877 +213966,190.81,75.866 +213967,189.05,76.868 +213968,187.22,77.886 +213969,191.24,74.895 +213970,189.51,75.857 +213971,187.71,76.833 +213972,185.85,77.825 +213973,189.96,74.913 +213974,188.2,75.848 +213975,186.38,76.798 +213976,184.49,77.763 +213977,188.67,74.932 +213978,186.89,75.84 +213979,185.04,76.762 +213980,183.13,77.7 +213981,187.39,74.952 +213982,185.58,75.831 +213983,183.71,76.726 +213984,181.76,77.636 +213985,186.1,74.973 +213986,184.27,75.823 +213987,182.37,76.689 +213988,180.41,77.572 +213989,184.81,74.994 +213990,182.96,75.815 +213991,181.04,76.653 +213992,179.05,77.507 +213993,183.52,75.016 +213994,181.65,75.808 +213995,179.71,76.616 +213996,177.69,77.442 +213997,182.23,75.038 +213998,180.34,75.801 +213999,178.38,76.579 +214000,176.34,77.375 +214001,180.94,75.061 +214002,179.02,75.793 +214003,177.04,76.542 +214004,174.98,77.308 +214005,179.64,75.085 +214006,177.71,75.786 +214007,175.71,76.505 +214008,173.63,77.241 +214009,178.35,75.109 +214010,176.4,75.78 +214011,174.38,76.467 +214012,172.28,77.173 +214013,177.05,75.134 +214014,175.09,75.773 +214015,173.05,76.429 +214016,170.93,77.104 +214017,175.75,75.159 +214018,173.77,75.767 +214019,171.72,76.392 +214020,169.59,77.035 +214021,174.45,75.185 +214022,172.46,75.761 +214023,170.39,76.354 +214024,168.24,76.966 +214025,173.15,75.211 +214026,171.14,75.754 +214027,169.06,76.315 +214028,166.9,76.895 +214029,171.85,75.237 +214030,169.83,75.749 +214031,167.73,76.277 +214032,165.56,76.825 +214033,170.54,75.264 +214034,168.51,75.743 +214035,166.41,76.239 +214036,164.21,76.754 +214037,169.24,75.292 +214038,167.2,75.737 +214039,165.08,76.2 +214040,162.88,76.682 +214041,167.93,75.319 +214042,165.88,75.732 +214043,163.75,76.161 +214044,161.54,76.611 +214045,166.62,75.347 +214046,164.56,75.726 +214047,162.43,76.123 +214048,160.2,76.538 +214049,165.31,75.376 +214050,163.24,75.721 +214051,161.1,76.084 +214052,158.87,76.466 +214053,164,75.404 +214054,161.93,75.716 +214055,159.78,76.045 +214056,157.54,76.393 +214057,162.68,75.433 +214058,160.61,75.71 +214059,158.45,76.006 +214060,156.21,76.32 +214061,161.37,75.462 +214062,159.29,75.705 +214063,157.13,75.966 +214064,154.88,76.247 +214065,160.05,75.491 +214066,157.97,75.7 +214067,155.8,75.927 +214068,153.55,76.173 +214069,158.73,75.52 +214070,156.65,75.696 +214071,154.48,75.888 +214072,152.23,76.1 +214073,157.41,75.55 +214074,155.33,75.691 +214075,153.16,75.849 +214076,150.9,76.026 +214077,156.09,75.579 +214078,154,75.686 +214079,151.84,75.809 +214080,149.58,75.952 +214081,154.77,75.609 +214082,152.68,75.681 +214083,150.52,75.77 +214084,148.26,75.878 +214085,153.44,75.639 +214086,151.36,75.676 +214087,149.2,75.73 +214088,146.94,75.803 +214089,152.12,75.668 +214090,150.04,75.672 +214091,147.88,75.691 +214092,145.63,75.729 +214093,150.79,75.698 +214094,148.71,75.667 +214095,146.56,75.652 +214096,144.31,75.655 +214097,149.46,75.728 +214098,147.39,75.662 +214099,145.24,75.612 +214100,143,75.581 +214101,148.13,75.757 +214102,146.07,75.657 +214103,143.92,75.573 +214104,141.69,75.507 +214105,146.8,75.787 +214106,144.74,75.652 +214107,142.6,75.534 +214108,140.38,75.432 +214109,145.46,75.816 +214110,143.41,75.648 +214111,141.29,75.494 +214112,139.07,75.358 +214113,144.13,75.845 +214114,142.09,75.643 +214115,139.97,75.455 +214116,137.77,75.284 +214117,142.79,75.874 +214118,140.76,75.638 +214119,138.66,75.416 +214120,136.46,75.211 +214121,141.45,75.903 +214122,139.43,75.633 +214123,137.34,75.377 +214124,135.16,75.137 +214125,140.11,75.932 +214126,138.11,75.628 +214127,136.03,75.338 +214128,133.86,75.064 +214129,138.77,75.96 +214130,136.78,75.623 +214131,134.71,75.299 +214132,132.56,74.99 +214133,137.42,75.988 +214134,135.45,75.617 +214135,133.4,75.26 +214136,131.26,74.918 +214137,136.08,76.016 +214138,134.12,75.612 +214139,132.09,75.221 +214140,129.97,74.845 +214141,134.73,76.043 +214142,132.79,75.607 +214143,130.77,75.182 +214144,128.67,74.773 +214145,133.38,76.07 +214146,131.46,75.601 +214147,129.46,75.144 +214148,127.38,74.701 +214149,132.03,76.097 +214150,130.13,75.595 +214151,128.15,75.105 +214152,126.09,74.629 +214153,130.68,76.123 +214154,128.8,75.59 +214155,126.84,75.067 +214156,124.8,74.558 +214157,129.33,76.149 +214158,127.47,75.584 +214159,125.53,75.029 +214160,123.51,74.487 +214161,127.98,76.174 +214162,126.13,75.578 +214163,124.22,74.991 +214164,122.22,74.417 +214165,126.62,76.199 +214166,124.8,75.571 +214167,122.91,74.953 +214168,120.94,74.347 +214169,125.27,76.223 +214170,123.47,75.565 +214171,121.6,74.916 +214172,119.65,74.278 +214173,123.91,76.247 +214174,122.14,75.558 +214175,120.29,74.878 +214176,118.37,74.209 +214177,122.55,76.271 +214178,120.8,75.552 +214179,118.99,74.841 +214180,117.09,74.141 +214181,121.19,76.293 +214182,119.47,75.545 +214183,117.68,74.804 +214184,115.81,74.073 +214185,119.82,76.315 +214186,118.13,75.538 +214187,116.37,74.767 +214188,114.54,74.006 +214189,118.46,76.337 +214190,116.8,75.53 +214191,115.07,74.73 +214192,113.26,73.939 +214193,117.1,76.357 +214194,115.46,75.523 +214195,113.76,74.694 +214196,111.99,73.874 +214197,115.73,76.378 +214198,114.13,75.515 +214199,112.45,74.658 +214200,110.71,73.809 +214201,114.36,76.397 +214202,112.79,75.507 +214203,111.15,74.622 +214204,109.44,73.744 +214205,112.99,76.416 +214206,111.45,75.499 +214207,109.85,74.586 +214208,108.17,73.681 +214209,111.63,76.434 +214210,110.11,75.49 +214211,108.54,74.551 +214212,106.9,73.618 +214213,110.25,76.451 +214214,108.78,75.481 +214215,107.24,74.516 +214216,105.63,73.556 +214217,108.88,76.467 +214218,107.44,75.472 +214219,105.93,74.481 +214220,104.37,73.494 +214221,107.51,76.483 +214222,106.1,75.463 +214223,104.63,74.446 +214224,103.1,73.434 +214225,106.13,76.498 +214226,104.76,75.454 +214227,103.33,74.412 +214228,101.84,73.374 +214229,104.76,76.512 +214230,103.42,75.444 +214231,102.03,74.378 +214232,100.57,73.315 +214233,103.38,76.525 +214234,102.08,75.434 +214235,100.73,74.344 +214236,99.31,73.257 +214237,102,76.537 +214238,100.74,75.423 +214239,99.426,74.31 +214240,98.049,73.2 +214241,100.63,76.548 +214242,99.403,75.413 +214243,98.125,74.277 +214244,96.789,73.144 +214245,99.247,76.559 +214246,98.062,75.402 +214247,96.824,74.244 +214248,95.53,73.089 +214249,97.866,76.568 +214250,96.721,75.39 +214251,95.524,74.212 +214252,94.272,73.035 +214253,96.485,76.577 +214254,95.38,75.379 +214255,94.225,74.18 +214256,93.015,72.981 +214257,95.102,76.585 +214258,94.039,75.367 +214259,92.925,74.148 +214260,91.758,72.929 +214261,93.719,76.591 +214262,92.697,75.355 +214263,91.626,74.116 +214264,90.503,72.878 +214265,92.335,76.597 +214266,91.355,75.342 +214267,90.328,74.085 +214268,89.249,72.828 +214269,90.95,76.602 +214270,90.013,75.329 +214271,89.029,74.054 +214272,87.995,72.778 +214273,89.565,76.605 +214274,88.671,75.316 +214275,87.731,74.023 +214276,86.742,72.73 +214277,88.178,76.608 +214278,87.328,75.302 +214279,86.433,73.993 +214280,85.49,72.683 +214281,86.791,76.61 +214282,85.985,75.288 +214283,85.135,73.964 +214284,84.239,72.637 +214285,85.403,76.61 +214286,84.642,75.274 +214287,83.838,73.934 +214288,82.988,72.592 +214289,84.015,76.61 +214290,83.299,75.259 +214291,82.541,73.905 +214292,81.738,72.549 +214293,82.625,76.608 +214294,81.955,75.244 +214295,81.244,73.876 +214296,80.489,72.506 +214297,81.236,76.606 +214298,80.611,75.229 +214299,79.947,73.848 +214300,79.24,72.464 +214301,79.845,76.602 +214302,79.268,75.213 +214303,78.65,73.82 +214304,77.992,72.424 +214305,78.454,76.597 +214306,77.924,75.197 +214307,77.354,73.793 +214308,76.744,72.385 +214309,77.063,76.591 +214310,76.579,75.181 +214311,76.058,73.765 +214312,75.496,72.347 +214313,75.671,76.584 +214314,75.235,75.164 +214315,74.762,73.739 +214316,74.249,72.31 +214317,74.279,76.576 +214318,73.891,75.147 +214319,73.466,73.712 +214320,73.003,72.274 +214321,72.886,76.566 +214322,72.546,75.129 +214323,72.17,73.686 +214324,71.757,72.24 +214325,71.494,76.556 +214326,71.202,75.111 +214327,70.874,73.661 +214328,70.511,72.206 +214329,70.1,76.544 +214330,69.857,75.093 +214331,69.579,73.635 +214332,69.265,72.174 +214333,68.707,76.531 +214334,68.512,75.074 +214335,68.283,73.611 +214336,68.019,72.143 +214337,67.313,76.518 +214338,67.167,75.055 +214339,66.988,73.586 +214340,66.774,72.113 +214341,65.919,76.502 +214342,65.822,75.035 +214343,65.693,73.562 +214344,65.529,72.085 +214345,64.525,76.486 +214346,64.478,75.015 +214347,64.398,73.539 +214348,64.284,72.058 +214349,63.13,76.469 +214350,63.133,74.995 +214351,63.102,73.515 +214352,63.039,72.032 +214353,61.736,76.45 +214354,61.788,74.974 +214355,61.807,73.493 +214356,61.794,72.007 +214357,60.341,76.43 +214358,60.443,74.953 +214359,60.512,73.47 +214360,60.549,71.983 +214361,58.947,76.409 +214362,59.098,74.932 +214363,59.217,73.448 +214364,59.304,71.961 +214365,57.552,76.387 +214366,57.753,74.91 +214367,57.922,73.427 +214368,58.059,71.94 +214369,56.158,76.364 +214370,56.408,74.887 +214371,56.627,73.405 +214372,56.813,71.92 +214373,54.763,76.34 +214374,55.063,74.865 +214375,55.332,73.385 +214376,55.568,71.901 +214377,53.369,76.314 +214378,53.719,74.842 +214379,54.036,73.364 +214380,54.322,71.883 +214381,51.975,76.287 +214382,52.374,74.818 +214383,52.741,73.344 +214384,53.077,71.867 +214385,50.581,76.259 +214386,51.029,74.794 +214387,51.446,73.325 +214388,51.83,71.852 +214389,49.187,76.23 +214390,49.685,74.77 +214391,50.15,73.306 +214392,50.584,71.838 +214393,47.793,76.2 +214394,48.341,74.745 +214395,48.855,73.287 +214396,49.337,71.825 +214397,46.4,76.168 +214398,46.997,74.72 +214399,47.559,73.268 +214400,48.09,71.814 +214401,45.007,76.136 +214402,45.652,74.695 +214403,46.263,73.25 +214404,46.842,71.804 +214405,43.615,76.102 +214406,44.309,74.669 +214407,44.968,73.233 +214408,45.594,71.795 +214409,42.223,76.067 +214410,42.965,74.643 +214411,43.672,73.216 +214412,44.345,71.787 +214413,40.831,76.031 +214414,41.621,74.616 +214415,42.375,73.199 +214416,43.096,71.78 +214417,39.44,75.994 +214418,40.278,74.59 +214419,41.079,73.183 +214420,41.846,71.774 +214421,38.05,75.956 +214422,38.935,74.562 +214423,39.783,73.167 +214424,40.596,71.77 +214425,36.66,75.917 +214426,37.592,74.535 +214427,38.486,73.151 +214428,39.345,71.767 +214429,35.27,75.876 +214430,36.249,74.507 +214431,37.189,73.136 +214432,38.093,71.764 +214433,33.882,75.835 +214434,34.907,74.478 +214435,35.892,73.121 +214436,36.841,71.763 +214437,32.494,75.792 +214438,33.564,74.449 +214439,34.594,73.106 +214440,35.588,71.763 +214441,31.106,75.748 +214442,32.222,74.42 +214443,33.297,73.092 +214444,34.334,71.765 +214445,29.72,75.704 +214446,30.881,74.391 +214447,31.999,73.078 +214448,33.079,71.767 +214449,28.334,75.658 +214450,29.539,74.361 +214451,30.701,73.065 +214452,31.824,71.77 +214453,26.949,75.611 +214454,28.198,74.331 +214455,29.403,73.052 +214456,30.567,71.774 +214457,25.565,75.563 +214458,26.857,74.3 +214459,28.104,73.039 +214460,29.31,71.78 +214461,24.182,75.514 +214462,25.517,74.269 +214463,26.805,73.027 +214464,28.051,71.786 +214465,22.799,75.464 +214466,24.177,74.238 +214467,25.506,73.014 +214468,26.792,71.794 +214469,21.418,75.414 +214470,22.837,74.207 +214471,24.206,73.003 +214472,25.532,71.802 +214473,20.038,75.362 +214474,21.497,74.175 +214475,22.906,72.991 +214476,24.27,71.811 +214477,18.658,75.309 +214478,20.158,74.143 +214479,21.606,72.98 +214480,23.008,71.822 +214481,17.28,75.255 +214482,18.82,74.11 +214483,20.305,72.969 +214484,21.744,71.833 +214485,15.903,75.201 +214486,17.481,74.078 +214487,19.005,72.959 +214488,20.48,71.845 +214489,14.527,75.145 +214490,16.143,74.045 +214491,17.703,72.949 +214492,19.214,71.858 +214493,13.152,75.089 +214494,14.806,74.011 +214495,16.402,72.939 +214496,17.947,71.872 +214497,11.778,75.032 +214498,13.469,73.978 +214499,15.1,72.929 +214500,16.679,71.887 +214501,10.405,74.974 +214502,12.132,73.944 +214503,13.797,72.92 +214504,15.41,71.903 +214505,9.0342,74.915 +214506,10.796,73.91 +214507,12.494,72.911 +214508,14.139,71.92 +214509,7.6642,74.855 +214510,9.4597,73.875 +214511,11.191,72.902 +214512,12.867,71.937 +214513,6.2955,74.795 +214514,8.1242,73.84 +214515,9.8874,72.894 +214516,11.594,71.955 +214517,4.9282,74.733 +214518,6.7893,73.805 +214519,8.5833,72.886 +214520,10.32,71.974 +214521,3.5622,74.671 +214522,5.4548,73.77 +214523,7.2788,72.878 +214524,9.0437,71.993 +214525,2.1975,74.609 +214526,4.1208,73.735 +214527,5.9739,72.87 +214528,7.7666,72.014 +214529,0.83433,74.545 +214530,2.7873,73.699 +214531,4.6685,72.862 +214532,6.488,72.035 +214533,359.47,74.481 +214534,1.4542,73.663 +214535,3.3626,72.855 +214536,5.2081,72.056 +214537,358.11,74.416 +214538,0.12169,73.627 +214539,2.0563,72.848 +214540,3.9267,72.079 +214541,356.75,74.351 +214542,358.79,73.591 +214543,0.74956,72.841 +214544,2.6439,72.101 +214545,355.4,74.285 +214546,357.46,73.554 +214547,359.44,72.834 +214548,1.3597,72.125 +214549,354.04,74.218 +214550,356.13,73.518 +214551,358.13,72.828 +214552,0.073984,72.149 +214553,352.69,74.151 +214554,354.8,73.481 +214555,356.83,72.822 +214556,358.79,72.174 +214557,351.33,74.083 +214558,353.47,73.444 +214559,355.52,72.816 +214560,357.5,72.199 +214561,349.98,74.015 +214562,352.14,73.406 +214563,354.21,72.81 +214564,356.21,72.224 +214565,348.63,73.946 +214566,350.81,73.369 +214567,352.9,72.804 +214568,354.92,72.25 +214569,347.29,73.877 +214570,349.48,73.331 +214571,351.59,72.798 +214572,353.62,72.277 +214573,345.94,73.807 +214574,348.15,73.294 +214575,350.28,72.793 +214576,352.33,72.304 +214577,344.59,73.737 +214578,346.83,73.256 +214579,348.97,72.787 +214580,351.03,72.331 +214581,343.25,73.666 +214582,345.5,73.218 +214583,347.65,72.782 +214584,349.73,72.359 +214585,341.91,73.596 +214586,344.17,73.18 +214587,346.34,72.777 +214588,348.43,72.387 +214589,340.57,73.524 +214590,342.85,73.142 +214591,345.03,72.772 +214592,347.13,72.415 +214593,339.23,73.453 +214594,341.52,73.103 +214595,343.72,72.767 +214596,345.83,72.443 +214597,337.9,73.381 +214598,340.2,73.065 +214599,342.4,72.762 +214600,344.53,72.472 +214601,336.56,73.309 +214602,338.87,73.026 +214603,341.09,72.758 +214604,343.22,72.501 +214605,335.23,73.237 +214606,337.55,72.988 +214607,339.77,72.753 +214608,341.91,72.53 +214609,333.9,73.164 +214610,336.23,72.949 +214611,338.46,72.748 +214612,340.6,72.56 +214613,332.57,73.091 +214614,334.91,72.911 +214615,337.14,72.744 +214616,339.29,72.589 +214617,331.24,73.018 +214618,333.58,72.872 +214619,335.83,72.739 +214620,337.98,72.619 +214621,329.92,72.945 +214622,332.26,72.833 +214623,334.51,72.735 +214624,336.67,72.649 +214625,328.6,72.872 +214626,330.94,72.794 +214627,333.19,72.73 +214628,335.35,72.678 +214629,327.27,72.799 +214630,329.62,72.756 +214631,331.87,72.726 +214632,334.03,72.708 +214633,325.95,72.726 +214634,328.3,72.717 +214635,330.55,72.722 +214636,332.71,72.738 +214637,324.64,72.653 +214638,326.99,72.678 +214639,329.23,72.717 +214640,331.39,72.768 +214641,323.32,72.579 +214642,325.67,72.639 +214643,327.91,72.713 +214644,330.07,72.798 +214645,322,72.506 +214646,324.35,72.601 +214647,326.59,72.708 +214648,328.75,72.827 +214649,320.69,72.433 +214650,323.03,72.562 +214651,325.27,72.704 +214652,327.42,72.857 +214653,319.38,72.36 +214654,321.72,72.523 +214655,323.95,72.699 +214656,326.09,72.886 +214657,318.07,72.287 +214658,320.4,72.484 +214659,322.63,72.695 +214660,324.77,72.915 +214661,316.76,72.214 +214662,319.09,72.446 +214663,321.31,72.69 +214664,323.43,72.945 +214665,315.46,72.142 +214666,317.77,72.407 +214667,319.98,72.685 +214668,322.1,72.973 +214669,314.16,72.069 +214670,316.46,72.369 +214671,318.66,72.68 +214672,320.77,73.002 +214673,312.85,71.997 +214674,315.15,72.33 +214675,317.34,72.676 +214676,319.43,73.03 +214677,311.55,71.925 +214678,313.83,72.292 +214679,316.01,72.671 +214680,318.1,73.058 +214681,310.26,71.854 +214682,312.52,72.254 +214683,314.69,72.665 +214684,316.76,73.086 +214685,308.96,71.782 +214686,311.21,72.216 +214687,313.36,72.66 +214688,315.42,73.113 +214689,307.66,71.711 +214690,309.9,72.178 +214691,312.03,72.655 +214692,314.08,73.14 +214693,306.37,71.641 +214694,308.59,72.14 +214695,310.71,72.65 +214696,312.73,73.167 +214697,305.08,71.571 +214698,307.28,72.102 +214699,309.38,72.644 +214700,311.39,73.193 +214701,303.79,71.501 +214702,305.97,72.065 +214703,308.05,72.638 +214704,310.04,73.219 +214705,302.5,71.432 +214706,304.66,72.028 +214707,306.72,72.632 +214708,308.69,73.244 +214709,301.21,71.363 +214710,303.35,71.99 +214711,305.39,72.626 +214712,307.35,73.269 +214713,299.93,71.295 +214714,302.05,71.953 +214715,304.06,72.62 +214716,305.99,73.293 +214717,298.65,71.227 +214718,300.74,71.916 +214719,302.74,72.614 +214720,304.64,73.317 +214721,297.37,71.159 +214722,299.43,71.88 +214723,301.4,72.607 +214724,303.29,73.34 +214725,296.09,71.093 +214726,298.13,71.843 +214727,300.07,72.6 +214728,301.93,73.362 +214729,294.81,71.027 +214730,296.82,71.807 +214731,298.74,72.593 +214732,300.58,73.384 +214733,293.53,70.961 +214734,295.52,71.771 +214735,297.41,72.586 +214736,299.22,73.405 +214737,292.26,70.896 +214738,294.21,71.735 +214739,296.08,72.579 +214740,297.86,73.426 +214741,290.98,70.832 +214742,292.91,71.699 +214743,294.75,72.571 +214744,296.5,73.446 +214745,289.71,70.769 +214746,291.61,71.664 +214747,293.41,72.563 +214748,295.14,73.465 +214749,288.44,70.706 +214750,290.3,71.629 +214751,292.08,72.555 +214752,293.77,73.484 +214753,287.17,70.644 +214754,289,71.594 +214755,290.74,72.547 +214756,292.41,73.501 +214757,285.9,70.583 +214758,287.7,71.559 +214759,289.41,72.538 +214760,291.04,73.518 +214761,284.64,70.523 +214762,286.4,71.525 +214763,288.08,72.529 +214764,289.68,73.534 +214765,283.37,70.463 +214766,285.1,71.491 +214767,286.74,72.52 +214768,288.31,73.55 +214769,282.11,70.404 +214770,283.8,71.457 +214771,285.4,72.511 +214772,286.94,73.564 +214773,280.84,70.347 +214774,282.5,71.423 +214775,284.07,72.501 +214776,285.57,73.578 +214777,279.58,70.29 +214778,281.2,71.39 +214779,282.73,72.491 +214780,284.19,73.591 +214781,278.32,70.233 +214782,279.9,71.357 +214783,281.39,72.481 +214784,282.82,73.603 +214785,277.06,70.178 +214786,278.6,71.324 +214787,280.06,72.47 +214788,281.45,73.614 +214789,275.81,70.124 +214790,277.3,71.292 +214791,278.72,72.459 +214792,280.07,73.624 +214793,274.55,70.071 +214794,276,71.26 +214795,277.38,72.448 +214796,278.69,73.633 +214797,273.29,70.018 +214798,274.7,71.228 +214799,276.04,72.436 +214800,277.32,73.641 +214801,272.04,69.967 +214802,273.41,71.197 +214803,274.7,72.424 +214804,275.94,73.648 +214805,270.79,69.917 +214806,272.11,71.166 +214807,273.37,72.412 +214808,274.56,73.654 +214809,269.54,69.867 +214810,270.81,71.135 +214811,272.03,72.4 +214812,273.18,73.66 +214813,268.28,69.819 +214814,269.52,71.104 +214815,270.69,72.387 +214816,271.8,73.664 +214817,267.03,69.772 +214818,268.22,71.074 +214819,269.35,72.373 +214820,270.41,73.667 +214821,265.78,69.725 +214822,266.93,71.045 +214823,268.01,72.36 +214824,269.03,73.669 +214825,264.54,69.68 +214826,265.63,71.015 +214827,266.67,72.346 +214828,267.65,73.67 +214829,263.29,69.636 +214830,264.34,70.986 +214831,265.33,72.332 +214832,266.26,73.671 +214833,262.04,69.593 +214834,263.04,70.958 +214835,263.98,72.317 +214836,264.87,73.67 +214837,260.8,69.552 +214838,261.75,70.929 +214839,262.64,72.302 +214840,263.49,73.667 +214841,259.55,69.511 +214842,260.45,70.901 +214843,261.3,72.287 +214844,262.1,73.664 +214845,258.31,69.471 +214846,259.16,70.874 +214847,259.96,72.271 +214848,260.71,73.66 +214849,257.06,69.433 +214850,257.87,70.847 +214851,258.62,72.255 +214852,259.32,73.655 +214853,255.82,69.396 +214854,256.57,70.82 +214855,257.28,72.238 +214856,257.93,73.648 +214857,254.57,69.36 +214858,255.28,70.794 +214859,255.93,72.221 +214860,256.54,73.64 +214861,253.33,69.325 +214862,253.99,70.768 +214863,254.59,72.204 +214864,255.15,73.632 +214865,252.09,69.291 +214866,252.69,70.742 +214867,253.25,72.186 +214868,253.76,73.622 +214869,250.85,69.258 +214870,251.4,70.717 +214871,251.91,72.168 +214872,252.37,73.611 +214873,249.61,69.227 +214874,250.11,70.692 +214875,250.56,72.15 +214876,250.98,73.598 +214877,248.37,69.197 +214878,248.81,70.668 +214879,249.22,72.131 +214880,249.59,73.585 +214881,247.13,69.168 +214882,247.52,70.644 +214883,247.88,72.112 +214884,248.19,73.57 +214885,245.89,69.14 +214886,246.23,70.62 +214887,246.53,72.092 +214888,246.8,73.555 +214889,244.65,69.114 +214890,244.94,70.597 +214891,245.19,72.072 +214892,245.41,73.538 +214893,243.41,69.088 +214894,243.65,70.574 +214895,243.85,72.052 +214896,244.01,73.52 +214897,242.17,69.064 +214898,242.35,70.551 +214899,242.51,72.031 +214900,242.62,73.501 +214901,240.93,69.041 +214902,241.06,70.529 +214903,241.16,72.01 +214904,241.23,73.48 +214905,239.69,69.02 +214906,239.77,70.508 +214907,239.82,71.988 +214908,239.83,73.459 +214909,238.45,68.999 +214910,238.48,70.487 +214911,238.47,71.966 +214912,238.44,73.436 +214913,237.21,68.98 +214914,237.19,70.466 +214915,237.13,71.943 +214916,237.04,73.412 +214917,235.97,68.962 +214918,235.89,70.445 +214919,235.79,71.921 +214920,235.65,73.387 +214921,234.73,68.945 +214922,234.6,70.425 +214923,234.44,71.897 +214924,234.26,73.36 +214925,233.49,68.93 +214926,233.31,70.406 +214927,233.1,71.874 +214928,232.86,73.333 +214929,232.25,68.915 +214930,232.02,70.386 +214931,231.76,71.85 +214932,231.47,73.304 +214933,231.01,68.902 +214934,230.73,70.367 +214935,230.41,71.825 +214936,230.07,73.274 +214937,229.77,68.89 +214938,229.44,70.349 +214939,229.07,71.801 +214940,228.68,73.243 +214941,228.53,68.879 +214942,228.14,70.331 +214943,227.73,71.775 +214944,227.28,73.211 +214945,227.29,68.87 +214946,226.85,70.313 +214947,226.39,71.75 +214948,225.89,73.178 +214949,226.04,68.861 +214950,225.56,70.296 +214951,225.04,71.724 +214952,224.5,73.144 +214953,224.8,68.854 +214954,224.27,70.279 +214955,223.7,71.698 +214956,223.1,73.108 +214957,223.56,68.848 +214958,222.97,70.263 +214959,222.36,71.671 +214960,221.71,73.071 +214961,222.32,68.843 +214962,221.68,70.246 +214963,221.02,71.644 +214964,220.32,73.033 +214965,221.07,68.839 +214966,220.39,70.231 +214967,219.67,71.616 +214968,218.93,72.994 +214969,219.83,68.837 +214970,219.1,70.215 +214971,218.33,71.588 +214972,217.53,72.954 +214973,218.59,68.835 +214974,217.8,70.2 +214975,216.99,71.56 +214976,216.14,72.913 +214977,217.34,68.835 +214978,216.51,70.186 +214979,215.65,71.531 +214980,214.75,72.871 +214981,216.09,68.835 +214982,215.22,70.171 +214983,214.31,71.502 +214984,213.36,72.827 +214985,214.85,68.837 +214986,213.92,70.157 +214987,212.96,71.473 +214988,211.97,72.783 +214989,213.6,68.84 +214990,212.63,70.144 +214991,211.62,71.443 +214992,210.58,72.738 +214993,212.35,68.844 +214994,211.33,70.131 +214995,210.28,71.413 +214996,209.2,72.691 +214997,211.1,68.849 +214998,210.04,70.118 +214999,208.94,71.383 +215000,207.81,72.643 +215001,209.85,68.855 +215002,208.74,70.105 +215003,207.6,71.352 +215004,206.42,72.595 +215005,208.6,68.862 +215006,207.45,70.093 +215007,206.26,71.321 +215008,205.04,72.545 +215009,207.35,68.87 +215010,206.15,70.081 +215011,204.92,71.29 +215012,203.65,72.495 +215013,206.1,68.879 +215014,204.86,70.069 +215015,203.58,71.258 +215016,202.27,72.443 +215017,204.84,68.889 +215018,203.56,70.058 +215019,202.24,71.226 +215020,200.88,72.391 +215021,203.59,68.9 +215022,202.27,70.047 +215023,200.91,71.193 +215024,199.5,72.337 +215025,202.33,68.912 +215026,200.97,70.037 +215027,199.57,71.161 +215028,198.12,72.283 +215029,201.08,68.925 +215030,199.67,70.026 +215031,198.23,71.128 +215032,196.74,72.227 +215033,199.82,68.938 +215034,198.38,70.016 +215035,196.89,71.094 +215036,195.36,72.171 +215037,198.56,68.953 +215038,197.08,70.007 +215039,195.55,71.061 +215040,193.98,72.114 +215041,197.3,68.968 +215042,195.78,69.997 +215043,194.22,71.027 +215044,192.6,72.056 +215045,196.04,68.984 +215046,194.48,69.988 +215047,192.88,70.993 +215048,191.23,71.997 +215049,194.78,69.001 +215050,193.18,69.979 +215051,191.54,70.958 +215052,189.85,71.938 +215053,193.51,69.019 +215054,191.89,69.97 +215055,190.21,70.923 +215056,188.48,71.877 +215057,192.25,69.038 +215058,190.59,69.962 +215059,188.87,70.888 +215060,187.1,71.816 +215061,190.98,69.057 +215062,189.29,69.954 +215063,187.54,70.853 +215064,185.73,71.754 +215065,189.71,69.077 +215066,187.99,69.946 +215067,186.2,70.818 +215068,184.36,71.691 +215069,188.44,69.098 +215070,186.69,69.938 +215071,184.87,70.782 +215072,182.99,71.628 +215073,187.17,69.119 +215074,185.38,69.931 +215075,183.54,70.746 +215076,181.63,71.564 +215077,185.9,69.141 +215078,184.08,69.924 +215079,182.2,70.71 +215080,180.26,71.499 +215081,184.63,69.164 +215082,182.78,69.917 +215083,180.87,70.673 +215084,178.9,71.433 +215085,183.35,69.187 +215086,181.48,69.91 +215087,179.54,70.637 +215088,177.53,71.367 +215089,182.08,69.211 +215090,180.17,69.903 +215091,178.21,70.6 +215092,176.17,71.3 +215093,180.8,69.236 +215094,178.87,69.897 +215095,176.88,70.563 +215096,174.81,71.233 +215097,179.52,69.261 +215098,177.57,69.891 +215099,175.55,70.526 +215100,173.45,71.165 +215101,178.24,69.286 +215102,176.26,69.885 +215103,174.22,70.488 +215104,172.09,71.097 +215105,176.96,69.312 +215106,174.96,69.879 +215107,172.89,70.451 +215108,170.74,71.028 +215109,175.67,69.339 +215110,173.65,69.873 +215111,171.56,70.413 +215112,169.38,70.958 +215113,174.39,69.366 +215114,172.35,69.867 +215115,170.23,70.375 +215116,168.03,70.888 +215117,173.1,69.393 +215118,171.04,69.862 +215119,168.9,70.337 +215120,166.68,70.818 +215121,171.81,69.42 +215122,169.73,69.856 +215123,167.58,70.299 +215124,165.33,70.747 +215125,170.52,69.448 +215126,168.43,69.851 +215127,166.25,70.26 +215128,163.98,70.676 +215129,169.23,69.477 +215130,167.12,69.846 +215131,164.92,70.222 +215132,162.64,70.605 +215133,167.94,69.505 +215134,165.81,69.841 +215135,163.6,70.183 +215136,161.29,70.533 +215137,166.64,69.534 +215138,164.5,69.836 +215139,162.27,70.145 +215140,159.95,70.461 +215141,165.35,69.563 +215142,163.19,69.831 +215143,160.95,70.106 +215144,158.61,70.388 +215145,164.05,69.592 +215146,161.88,69.826 +215147,159.63,70.067 +215148,157.27,70.315 +215149,162.75,69.622 +215150,160.57,69.821 +215151,158.3,70.028 +215152,155.93,70.242 +215153,161.45,69.651 +215154,159.26,69.817 +215155,156.98,69.989 +215156,154.6,70.169 +215157,160.14,69.681 +215158,157.95,69.812 +215159,155.66,69.95 +215160,153.27,70.096 +215161,158.84,69.711 +215162,156.63,69.807 +215163,154.34,69.911 +215164,151.93,70.023 +215165,157.53,69.741 +215166,155.32,69.803 +215167,153.02,69.872 +215168,150.6,69.949 +215169,156.22,69.771 +215170,154.01,69.798 +215171,151.7,69.833 +215172,149.28,69.875 +215173,154.91,69.8 +215174,152.69,69.794 +215175,150.38,69.794 +215176,147.95,69.802 +215177,153.6,69.83 +215178,151.38,69.789 +215179,149.06,69.755 +215180,146.63,69.728 +215181,152.29,69.86 +215182,150.06,69.785 +215183,147.74,69.715 +215184,145.3,69.654 +215185,150.97,69.89 +215186,148.75,69.78 +215187,146.42,69.676 +215188,143.98,69.58 +215189,149.66,69.92 +215190,147.43,69.775 +215191,145.1,69.637 +215192,142.66,69.506 +215193,148.34,69.949 +215194,146.11,69.771 +215195,143.79,69.598 +215196,141.35,69.433 +215197,147.02,69.979 +215198,144.8,69.766 +215199,142.47,69.559 +215200,140.03,69.359 +215201,145.7,70.008 +215202,143.48,69.761 +215203,141.16,69.52 +215204,138.72,69.286 +215205,144.37,70.037 +215206,142.16,69.756 +215207,139.84,69.481 +215208,137.41,69.213 +215209,143.05,70.066 +215210,140.84,69.751 +215211,138.53,69.442 +215212,136.1,69.139 +215213,141.72,70.094 +215214,139.52,69.746 +215215,137.21,69.403 +215216,134.79,69.067 +215217,140.39,70.123 +215218,138.2,69.741 +215219,135.9,69.364 +215220,133.48,68.994 +215221,139.06,70.151 +215222,136.88,69.736 +215223,134.59,69.326 +215224,132.18,68.922 +215225,137.73,70.178 +215226,135.56,69.73 +215227,133.28,69.287 +215228,130.88,68.85 +215229,136.4,70.205 +215230,134.24,69.725 +215231,131.97,69.249 +215232,129.58,68.778 +215233,135.06,70.232 +215234,132.91,69.719 +215235,130.66,69.21 +215236,128.28,68.706 +215237,133.73,70.259 +215238,131.59,69.714 +215239,129.35,69.172 +215240,126.98,68.635 +215241,132.39,70.284 +215242,130.27,69.708 +215243,128.04,69.134 +215244,125.69,68.565 +215245,131.05,70.31 +215246,128.94,69.702 +215247,126.73,69.096 +215248,124.4,68.495 +215249,129.71,70.335 +215250,127.62,69.695 +215251,125.42,69.058 +215252,123.11,68.425 +215253,128.36,70.359 +215254,126.29,69.689 +215255,124.11,69.021 +215256,121.82,68.356 +215257,127.02,70.383 +215258,124.97,69.682 +215259,122.81,68.983 +215260,120.53,68.287 +215261,125.67,70.407 +215262,123.64,69.676 +215263,121.5,68.946 +215264,119.24,68.219 +215265,124.33,70.429 +215266,122.31,69.669 +215267,120.2,68.909 +215268,117.96,68.151 +215269,122.98,70.452 +215270,120.99,69.661 +215271,118.89,68.872 +215272,116.68,68.084 +215273,121.63,70.473 +215274,119.66,69.654 +215275,117.59,68.835 +215276,115.4,68.018 +215277,120.27,70.494 +215278,118.33,69.646 +215279,116.28,68.799 +215280,114.12,67.952 +215281,118.92,70.514 +215282,117,69.639 +215283,114.98,68.762 +215284,112.84,67.887 +215285,117.56,70.533 +215286,115.67,69.63 +215287,113.68,68.726 +215288,111.57,67.823 +215289,116.21,70.552 +215290,114.34,69.622 +215291,112.37,68.69 +215292,110.29,67.759 +215293,114.85,70.57 +215294,113.01,69.613 +215295,111.07,68.655 +215296,109.02,67.696 +215297,113.49,70.587 +215298,111.68,69.605 +215299,109.77,68.62 +215300,107.75,67.634 +215301,112.13,70.603 +215302,110.35,69.595 +215303,108.47,68.584 +215304,106.48,67.572 +215305,110.77,70.619 +215306,109.02,69.586 +215307,107.17,68.55 +215308,105.22,67.512 +215309,109.4,70.634 +215310,107.68,69.576 +215311,105.87,68.515 +215312,103.95,67.452 +215313,108.04,70.648 +215314,106.35,69.566 +215315,104.57,68.481 +215316,102.69,67.393 +215317,106.67,70.661 +215318,105.02,69.556 +215319,103.27,68.447 +215320,101.42,67.335 +215321,105.31,70.673 +215322,103.69,69.545 +215323,101.97,68.413 +215324,100.16,67.277 +215325,103.94,70.684 +215326,102.35,69.535 +215327,100.68,68.38 +215328,98.901,67.221 +215329,102.57,70.694 +215330,101.02,69.523 +215331,99.379,68.347 +215332,97.642,67.166 +215333,101.2,70.703 +215334,99.682,69.512 +215335,98.082,68.314 +215336,96.385,67.111 +215337,99.823,70.712 +215338,98.347,69.5 +215339,96.786,68.281 +215340,95.129,67.058 +215341,98.45,70.719 +215342,97.012,69.488 +215343,95.49,68.249 +215344,93.874,67.005 +215345,97.075,70.725 +215346,95.676,69.475 +215347,94.194,68.217 +215348,92.621,66.954 +215349,95.699,70.731 +215350,94.339,69.462 +215351,92.899,68.186 +215352,91.369,66.903 +215353,94.323,70.735 +215354,93.003,69.449 +215355,91.604,68.155 +215356,90.118,66.854 +215357,92.945,70.738 +215358,91.666,69.436 +215359,90.31,68.124 +215360,88.868,66.805 +215361,91.566,70.741 +215362,90.329,69.422 +215363,89.016,68.093 +215364,87.619,66.758 +215365,90.186,70.742 +215366,88.991,69.407 +215367,87.722,68.063 +215368,86.371,66.711 +215369,88.805,70.742 +215370,87.653,69.393 +215371,86.429,68.034 +215372,85.125,66.666 +215373,87.423,70.741 +215374,86.315,69.378 +215375,85.136,68.004 +215376,83.879,66.622 +215377,86.041,70.739 +215378,84.976,69.362 +215379,83.843,67.975 +215380,82.634,66.579 +215381,84.657,70.736 +215382,83.637,69.346 +215383,82.551,67.946 +215384,81.391,66.537 +215385,83.273,70.731 +215386,82.298,69.33 +215387,81.259,67.918 +215388,80.148,66.496 +215389,81.888,70.726 +215390,80.959,69.314 +215391,79.967,67.89 +215392,78.906,66.457 +215393,80.502,70.719 +215394,79.619,69.297 +215395,78.675,67.863 +215396,77.664,66.418 +215397,79.115,70.712 +215398,78.279,69.279 +215399,77.384,67.835 +215400,76.424,66.381 +215401,77.727,70.703 +215402,76.939,69.262 +215403,76.093,67.809 +215404,75.184,66.345 +215405,76.339,70.693 +215406,75.599,69.244 +215407,74.802,67.782 +215408,73.945,66.31 +215409,74.951,70.681 +215410,74.259,69.225 +215411,73.512,67.756 +215412,72.706,66.276 +215413,73.561,70.669 +215414,72.918,69.206 +215415,72.222,67.731 +215416,71.468,66.244 +215417,72.171,70.655 +215418,71.577,69.187 +215419,70.932,67.705 +215420,70.231,66.212 +215421,70.781,70.641 +215422,70.236,69.167 +215423,69.642,67.681 +215424,68.994,66.182 +215425,69.39,70.625 +215426,68.895,69.147 +215427,68.352,67.656 +215428,67.757,66.153 +215429,67.998,70.608 +215430,67.554,69.126 +215431,67.062,67.632 +215432,66.521,66.126 +215433,66.607,70.589 +215434,66.212,69.105 +215435,65.773,67.608 +215436,65.286,66.099 +215437,65.214,70.57 +215438,64.871,69.084 +215439,64.484,67.585 +215440,64.05,66.074 +215441,63.822,70.549 +215442,63.529,69.062 +215443,63.195,67.562 +215444,62.815,66.05 +215445,62.429,70.527 +215446,62.187,69.04 +215447,61.906,67.54 +215448,61.581,66.027 +215449,61.035,70.504 +215450,60.846,69.018 +215451,60.617,67.518 +215452,60.346,66.006 +215453,59.642,70.479 +215454,59.504,68.995 +215455,59.328,67.496 +215456,59.112,65.986 +215457,58.248,70.454 +215458,58.162,68.971 +215459,58.039,67.475 +215460,57.877,65.966 +215461,56.854,70.427 +215462,56.82,68.947 +215463,56.75,67.454 +215464,56.643,65.949 +215465,55.46,70.399 +215466,55.478,68.923 +215467,55.462,67.434 +215468,55.409,65.932 +215469,54.066,70.37 +215470,54.136,68.898 +215471,54.173,67.413 +215472,54.175,65.917 +215473,52.671,70.34 +215474,52.794,68.873 +215475,52.884,67.394 +215476,52.94,65.902 +215477,51.277,70.308 +215478,51.452,68.848 +215479,51.595,67.374 +215480,51.706,65.889 +215481,49.883,70.275 +215482,50.11,68.822 +215483,50.307,67.356 +215484,50.471,65.878 +215485,48.489,70.241 +215486,48.768,68.796 +215487,49.018,67.337 +215488,49.237,65.867 +215489,47.094,70.206 +215490,47.427,68.769 +215491,47.729,67.319 +215492,48.002,65.858 +215493,45.7,70.17 +215494,46.085,68.742 +215495,46.44,67.301 +215496,46.766,65.849 +215497,44.306,70.133 +215498,44.743,68.714 +215499,45.151,67.284 +215500,45.531,65.842 +215501,42.913,70.094 +215502,43.402,68.687 +215503,43.862,67.267 +215504,44.295,65.837 +215505,41.519,70.054 +215506,42.06,68.658 +215507,42.573,67.25 +215508,43.059,65.832 +215509,40.126,70.013 +215510,40.719,68.63 +215511,41.284,67.234 +215512,41.822,65.828 +215513,38.733,69.971 +215514,39.378,68.601 +215515,39.995,67.218 +215516,40.585,65.826 +215517,37.34,69.928 +215518,38.037,68.571 +215519,38.705,67.203 +215520,39.347,65.825 +215521,35.948,69.884 +215522,36.696,68.541 +215523,37.416,67.188 +215524,38.109,65.825 +215525,34.557,69.839 +215526,35.355,68.511 +215527,36.126,67.173 +215528,36.87,65.826 +215529,33.165,69.792 +215530,34.015,68.481 +215531,34.836,67.159 +215532,35.63,65.828 +215533,31.774,69.745 +215534,32.674,68.45 +215535,33.546,67.145 +215536,34.39,65.831 +215537,30.384,69.696 +215538,31.334,68.418 +215539,32.255,67.131 +215540,33.149,65.835 +215541,28.995,69.647 +215542,29.995,68.387 +215543,30.965,67.118 +215544,31.908,65.84 +215545,27.606,69.596 +215546,28.655,68.355 +215547,29.674,67.105 +215548,30.665,65.847 +215549,26.217,69.544 +215550,27.316,68.323 +215551,28.383,67.092 +215552,29.422,65.854 +215553,24.829,69.491 +215554,25.977,68.29 +215555,27.092,67.08 +215556,28.178,65.862 +215557,23.442,69.438 +215558,24.638,68.257 +215559,25.8,67.068 +215560,26.933,65.872 +215561,22.056,69.383 +215562,23.299,68.223 +215563,24.508,67.056 +215564,25.687,65.882 +215565,20.671,69.327 +215566,21.961,68.19 +215567,23.216,67.045 +215568,24.44,65.893 +215569,19.286,69.271 +215570,20.623,68.156 +215571,21.924,67.033 +215572,23.192,65.905 +215573,17.903,69.213 +215574,19.286,68.121 +215575,20.631,67.023 +215576,21.943,65.919 +215577,16.52,69.155 +215578,17.948,68.087 +215579,19.338,67.012 +215580,20.693,65.933 +215581,15.138,69.096 +215582,16.611,68.052 +215583,18.044,67.002 +215584,19.442,65.947 +215585,13.757,69.035 +215586,15.275,68.017 +215587,16.751,66.992 +215588,18.189,65.963 +215589,12.377,68.974 +215590,13.939,67.981 +215591,15.457,66.982 +215592,16.936,65.98 +215593,10.999,68.912 +215594,12.603,67.945 +215595,14.162,66.973 +215596,15.681,65.997 +215597,9.6211,68.85 +215598,11.268,67.909 +215599,12.867,66.964 +215600,14.426,66.015 +215601,8.2446,68.786 +215602,9.9326,67.873 +215603,11.572,66.955 +215604,13.169,66.034 +215605,6.8692,68.722 +215606,8.5981,67.836 +215607,10.276,66.946 +215608,11.91,66.054 +215609,5.4951,68.657 +215610,7.264,67.799 +215611,8.9803,66.938 +215612,10.651,66.074 +215613,4.1221,68.591 +215614,5.9303,67.762 +215615,7.6838,66.93 +215616,9.3896,66.095 +215617,2.7505,68.525 +215618,4.5971,67.725 +215619,6.3869,66.922 +215620,8.1273,66.117 +215621,1.3801,68.457 +215622,3.2643,67.687 +215623,5.0896,66.914 +215624,6.8636,66.139 +215625,0.01109,68.39 +215626,1.932,67.649 +215627,3.7918,66.906 +215628,5.5985,66.162 +215629,358.64,68.321 +215630,0.60016,67.611 +215631,2.4936,66.899 +215632,4.332,66.186 +215633,357.28,68.252 +215634,359.27,67.573 +215635,1.1949,66.892 +215636,3.064,66.21 +215637,355.91,68.182 +215638,357.94,67.534 +215639,359.9,66.885 +215640,1.7946,66.235 +215641,354.55,68.112 +215642,356.61,67.496 +215643,358.6,66.878 +215644,0.52367,66.26 +215645,353.19,68.041 +215646,355.28,67.457 +215647,357.3,66.871 +215648,359.25,66.286 +215649,351.83,67.97 +215650,353.95,67.418 +215651,356,66.865 +215652,357.98,66.312 +215653,350.47,67.898 +215654,352.62,67.379 +215655,354.69,66.859 +215656,356.7,66.339 +215657,349.11,67.826 +215658,351.29,67.339 +215659,353.39,66.852 +215660,355.42,66.366 +215661,347.75,67.753 +215662,349.96,67.3 +215663,352.09,66.846 +215664,354.15,66.393 +215665,346.4,67.68 +215666,348.64,67.26 +215667,350.79,66.84 +215668,352.87,66.421 +215669,345.05,67.606 +215670,347.31,67.22 +215671,349.48,66.834 +215672,351.58,66.449 +215673,343.7,67.533 +215674,345.98,67.18 +215675,348.18,66.829 +215676,350.3,66.478 +215677,342.35,67.458 +215678,344.66,67.14 +215679,346.88,66.823 +215680,349.02,66.507 +215681,341,67.384 +215682,343.33,67.1 +215683,345.57,66.817 +215684,347.73,66.536 +215685,339.65,67.309 +215686,342.01,67.06 +215687,344.27,66.812 +215688,346.44,66.565 +215689,338.31,67.234 +215690,340.69,67.02 +215691,342.96,66.806 +215692,345.15,66.594 +215693,336.97,67.159 +215694,339.36,66.979 +215695,341.65,66.801 +215696,343.86,66.624 +215697,335.63,67.083 +215698,338.04,66.939 +215699,340.35,66.795 +215700,342.57,66.654 +215701,334.29,67.008 +215702,336.72,66.898 +215703,339.04,66.79 +215704,341.27,66.683 +215705,332.95,66.932 +215706,335.4,66.858 +215707,337.73,66.785 +215708,339.97,66.713 +215709,331.62,66.856 +215710,334.08,66.817 +215711,336.42,66.78 +215712,338.67,66.743 +215713,330.28,66.78 +215714,332.76,66.777 +215715,335.11,66.774 +215716,337.37,66.773 +215717,328.95,66.704 +215718,331.44,66.736 +215719,333.8,66.769 +215720,336.07,66.803 +215721,327.62,66.628 +215722,330.12,66.695 +215723,332.49,66.764 +215724,334.77,66.833 +215725,326.3,66.552 +215726,328.8,66.655 +215727,331.18,66.758 +215728,333.46,66.863 +215729,324.97,66.476 +215730,327.48,66.614 +215731,329.87,66.753 +215732,332.16,66.893 +215733,323.65,66.399 +215734,326.17,66.573 +215735,328.56,66.747 +215736,330.85,66.922 +215737,322.33,66.324 +215738,324.85,66.533 +215739,327.25,66.742 +215740,329.54,66.952 +215741,321.01,66.248 +215742,323.53,66.492 +215743,325.93,66.736 +215744,328.22,66.981 +215745,319.69,66.172 +215746,322.22,66.451 +215747,324.62,66.731 +215748,326.91,67.01 +215749,318.37,66.097 +215750,320.9,66.411 +215751,323.31,66.725 +215752,325.59,67.039 +215753,317.06,66.021 +215754,319.59,66.37 +215755,321.99,66.719 +215756,324.28,67.068 +215757,315.75,65.946 +215758,318.28,66.33 +215759,320.67,66.714 +215760,322.96,67.096 +215761,314.44,65.871 +215762,316.96,66.29 +215763,319.36,66.708 +215764,321.64,67.124 +215765,313.13,65.797 +215766,315.65,66.25 +215767,318.04,66.701 +215768,320.31,67.152 +215769,311.82,65.723 +215770,314.34,66.21 +215771,316.72,66.695 +215772,318.99,67.179 +215773,310.52,65.649 +215774,313.03,66.17 +215775,315.41,66.689 +215776,317.66,67.206 +215777,309.22,65.575 +215778,311.72,66.13 +215779,314.09,66.682 +215780,316.34,67.233 +215781,307.91,65.502 +215782,310.41,66.09 +215783,312.77,66.676 +215784,315.01,67.259 +215785,306.62,65.43 +215786,309.1,66.05 +215787,311.45,66.669 +215788,313.68,67.285 +215789,305.32,65.357 +215790,307.79,66.011 +215791,310.13,66.662 +215792,312.34,67.31 +215793,304.03,65.286 +215794,306.49,65.972 +215795,308.81,66.655 +215796,311.01,67.334 +215797,302.73,65.214 +215798,305.18,65.932 +215799,307.49,66.647 +215800,309.67,67.358 +215801,301.44,65.144 +215802,303.87,65.893 +215803,306.17,66.64 +215804,308.33,67.382 +215805,300.15,65.073 +215806,302.57,65.855 +215807,304.84,66.632 +215808,306.99,67.404 +215809,298.87,65.004 +215810,301.26,65.816 +215811,303.52,66.624 +215812,305.65,67.427 +215813,297.58,64.935 +215814,299.96,65.778 +215815,302.2,66.616 +215816,304.31,67.448 +215817,296.3,64.867 +215818,298.66,65.739 +215819,300.87,66.607 +215820,302.97,67.469 +215821,295.02,64.799 +215822,297.35,65.702 +215823,299.55,66.599 +215824,301.62,67.489 +215825,293.74,64.732 +215826,296.05,65.664 +215827,298.22,66.59 +215828,300.27,67.509 +215829,292.46,64.666 +215830,294.75,65.626 +215831,296.9,66.58 +215832,298.92,67.527 +215833,291.18,64.6 +215834,293.45,65.589 +215835,295.57,66.571 +215836,297.57,67.545 +215837,289.91,64.535 +215838,292.15,65.552 +215839,294.24,66.561 +215840,296.22,67.563 +215841,288.64,64.471 +215842,290.85,65.515 +215843,292.92,66.551 +215844,294.87,67.579 +215845,287.37,64.408 +215846,289.55,65.479 +215847,291.59,66.541 +215848,293.51,67.594 +215849,286.1,64.346 +215850,288.25,65.442 +215851,290.26,66.53 +215852,292.16,67.609 +215853,284.83,64.284 +215854,286.95,65.406 +215855,288.93,66.52 +215856,290.8,67.623 +215857,283.57,64.224 +215858,285.65,65.371 +215859,287.6,66.508 +215860,289.44,67.636 +215861,282.3,64.164 +215862,284.35,65.335 +215863,286.27,66.497 +215864,288.08,67.648 +215865,281.04,64.105 +215866,283.06,65.3 +215867,284.94,66.485 +215868,286.72,67.659 +215869,279.78,64.047 +215870,281.76,65.265 +215871,283.61,66.473 +215872,285.36,67.669 +215873,278.52,63.99 +215874,280.46,65.231 +215875,282.28,66.46 +215876,283.99,67.678 +215877,277.26,63.934 +215878,279.17,65.197 +215879,280.95,66.448 +215880,282.62,67.686 +215881,276.01,63.879 +215882,277.87,65.163 +215883,279.62,66.434 +215884,281.26,67.693 +215885,274.75,63.825 +215886,276.58,65.129 +215887,278.29,66.421 +215888,279.89,67.7 +215889,273.5,63.772 +215890,275.28,65.096 +215891,276.95,66.407 +215892,278.52,67.705 +215893,272.25,63.72 +215894,273.99,65.063 +215895,275.62,66.393 +215896,277.15,67.709 +215897,271,63.669 +215898,272.7,65.031 +215899,274.29,66.378 +215900,275.78,67.712 +215901,269.75,63.62 +215902,271.41,64.998 +215903,272.95,66.363 +215904,274.4,67.714 +215905,268.5,63.571 +215906,270.11,64.966 +215907,271.62,66.348 +215908,273.03,67.714 +215909,267.25,63.523 +215910,268.82,64.935 +215911,270.28,66.332 +215912,271.65,67.714 +215913,266.01,63.477 +215914,267.53,64.904 +215915,268.95,66.316 +215916,270.28,67.713 +215917,264.76,63.432 +215918,266.24,64.873 +215919,267.61,66.3 +215920,268.9,67.71 +215921,263.52,63.387 +215922,264.95,64.843 +215923,266.28,66.283 +215924,267.52,67.707 +215925,262.28,63.344 +215926,263.66,64.813 +215927,264.94,66.266 +215928,266.14,67.702 +215929,261.04,63.303 +215930,262.37,64.783 +215931,263.61,66.248 +215932,264.76,67.696 +215933,259.8,63.262 +215934,261.08,64.754 +215935,262.27,66.23 +215936,263.38,67.689 +215937,258.56,63.222 +215938,259.79,64.725 +215939,260.93,66.211 +215940,262,67.68 +215941,257.32,63.184 +215942,258.5,64.697 +215943,259.6,66.192 +215944,260.61,67.671 +215945,256.08,63.147 +215946,257.21,64.668 +215947,258.26,66.173 +215948,259.23,67.66 +215949,254.85,63.111 +215950,255.92,64.641 +215951,256.92,66.153 +215952,257.84,67.648 +215953,253.61,63.077 +215954,254.64,64.613 +215955,255.58,66.133 +215956,256.46,67.635 +215957,252.38,63.043 +215958,253.35,64.587 +215959,254.25,66.113 +215960,255.07,67.621 +215961,251.14,63.011 +215962,252.06,64.56 +215963,252.91,66.092 +215964,253.69,67.605 +215965,249.91,62.98 +215966,250.77,64.534 +215967,251.57,66.07 +215968,252.3,67.588 +215969,248.68,62.95 +215970,249.49,64.508 +215971,250.23,66.048 +215972,250.91,67.57 +215973,247.44,62.922 +215974,248.2,64.483 +215975,248.89,66.026 +215976,249.52,67.551 +215977,246.21,62.895 +215978,246.91,64.458 +215979,247.55,66.004 +215980,248.13,67.531 +215981,244.98,62.869 +215982,245.63,64.434 +215983,246.21,65.98 +215984,246.74,67.509 +215985,243.75,62.844 +215986,244.34,64.409 +215987,244.87,65.957 +215988,245.35,67.486 +215989,242.52,62.821 +215990,243.06,64.386 +215991,243.53,65.933 +215992,243.96,67.462 +215993,241.29,62.799 +215994,241.77,64.363 +215995,242.19,65.909 +215996,242.57,67.436 +215997,240.06,62.778 +215998,240.48,64.34 +215999,240.85,65.884 +216000,241.18,67.409 +216001,238.83,62.758 +216002,239.2,64.317 +216003,239.51,65.858 +216004,239.79,67.381 +216005,237.6,62.74 +216006,237.91,64.295 +216007,238.17,65.833 +216008,238.39,67.352 +216009,236.37,62.723 +216010,236.63,64.274 +216011,236.83,65.807 +216012,237,67.322 +216013,235.15,62.707 +216014,235.34,64.252 +216015,235.49,65.78 +216016,235.61,67.29 +216017,233.92,62.693 +216018,234.06,64.231 +216019,234.15,65.753 +216020,234.21,67.257 +216021,232.69,62.679 +216022,232.77,64.211 +216023,232.81,65.726 +216024,232.82,67.223 +216025,231.46,62.667 +216026,231.49,64.191 +216027,231.47,65.698 +216028,231.43,67.187 +216029,230.23,62.656 +216030,230.2,64.171 +216031,230.13,65.67 +216032,230.03,67.151 +216033,229,62.647 +216034,228.92,64.152 +216035,228.79,65.641 +216036,228.64,67.113 +216037,227.77,62.638 +216038,227.63,64.133 +216039,227.45,65.612 +216040,227.25,67.074 +216041,226.54,62.631 +216042,226.35,64.115 +216043,226.11,65.583 +216044,225.85,67.033 +216045,225.32,62.625 +216046,225.06,64.097 +216047,224.77,65.553 +216048,224.46,66.992 +216049,224.09,62.62 +216050,223.77,64.079 +216051,223.43,65.522 +216052,223.07,66.949 +216053,222.86,62.617 +216054,222.49,64.062 +216055,222.09,65.492 +216056,221.67,66.905 +216057,221.63,62.614 +216058,221.2,64.045 +216059,220.75,65.461 +216060,220.28,66.86 +216061,220.4,62.613 +216062,219.92,64.028 +216063,219.42,65.429 +216064,218.89,66.814 +216065,219.16,62.613 +216066,218.63,64.012 +216067,218.08,65.397 +216068,217.49,66.767 +216069,217.93,62.614 +216070,217.35,63.996 +216071,216.74,65.365 +216072,216.1,66.718 +216073,216.7,62.616 +216074,216.06,63.981 +216075,215.4,65.332 +216076,214.71,66.669 +216077,215.47,62.619 +216078,214.77,63.966 +216079,214.06,65.299 +216080,213.32,66.618 +216081,214.23,62.623 +216082,213.49,63.951 +216083,212.72,65.266 +216084,211.93,66.566 +216085,213,62.629 +216086,212.2,63.936 +216087,211.38,65.232 +216088,210.54,66.513 +216089,211.77,62.635 +216090,210.92,63.922 +216091,210.04,65.198 +216092,209.15,66.459 +216093,210.53,62.642 +216094,209.63,63.909 +216095,208.7,65.163 +216096,207.76,66.404 +216097,209.29,62.651 +216098,208.34,63.895 +216099,207.37,65.128 +216100,206.37,66.348 +216101,208.06,62.66 +216102,207.05,63.882 +216103,206.03,65.093 +216104,204.98,66.291 +216105,206.82,62.671 +216106,205.77,63.87 +216107,204.69,65.057 +216108,203.59,66.233 +216109,205.58,62.682 +216110,204.48,63.857 +216111,203.35,65.021 +216112,202.2,66.174 +216113,204.34,62.695 +216114,203.19,63.845 +216115,202.02,64.985 +216116,200.82,66.114 +216117,203.1,62.708 +216118,201.9,63.833 +216119,200.68,64.949 +216120,199.43,66.053 +216121,201.86,62.722 +216122,200.61,63.822 +216123,199.34,64.912 +216124,198.04,65.991 +216125,200.62,62.738 +216126,199.33,63.81 +216127,198.01,64.874 +216128,196.66,65.928 +216129,199.37,62.754 +216130,198.04,63.799 +216131,196.67,64.837 +216132,195.28,65.864 +216133,198.13,62.77 +216134,196.75,63.789 +216135,195.34,64.799 +216136,193.89,65.799 +216137,196.88,62.788 +216138,195.46,63.778 +216139,194,64.761 +216140,192.51,65.733 +216141,195.64,62.807 +216142,194.17,63.768 +216143,192.67,64.722 +216144,191.13,65.667 +216145,194.39,62.826 +216146,192.88,63.758 +216147,191.33,64.683 +216148,189.75,65.6 +216149,193.14,62.846 +216150,191.59,63.749 +216151,190,64.644 +216152,188.37,65.532 +216153,191.89,62.867 +216154,190.29,63.739 +216155,188.67,64.605 +216156,187,65.463 +216157,190.63,62.888 +216158,189,63.73 +216159,187.33,64.566 +216160,185.62,65.393 +216161,189.38,62.91 +216162,187.71,63.721 +216163,186,64.526 +216164,184.24,65.323 +216165,188.13,62.933 +216166,186.42,63.712 +216167,184.67,64.486 +216168,182.87,65.252 +216169,186.87,62.956 +216170,185.13,63.704 +216171,183.34,64.445 +216172,181.5,65.18 +216173,185.61,62.98 +216174,183.83,63.695 +216175,182.01,64.405 +216176,180.13,65.108 +216177,184.35,63.005 +216178,182.54,63.687 +216179,180.67,64.364 +216180,178.76,65.035 +216181,183.09,63.03 +216182,181.24,63.679 +216183,179.34,64.323 +216184,177.39,64.961 +216185,181.83,63.056 +216186,179.95,63.671 +216187,178.01,64.282 +216188,176.02,64.887 +216189,180.57,63.082 +216190,178.65,63.664 +216191,176.69,64.241 +216192,174.65,64.812 +216193,179.3,63.108 +216194,177.36,63.656 +216195,175.36,64.199 +216196,173.29,64.737 +216197,178.04,63.136 +216198,176.06,63.649 +216199,174.03,64.158 +216200,171.93,64.661 +216201,176.77,63.163 +216202,174.77,63.641 +216203,172.7,64.116 +216204,170.56,64.584 +216205,175.5,63.191 +216206,173.47,63.634 +216207,171.37,64.074 +216208,169.2,64.508 +216209,174.23,63.219 +216210,172.17,63.627 +216211,170.05,64.032 +216212,167.85,64.43 +216213,172.96,63.248 +216214,170.87,63.62 +216215,168.72,63.989 +216216,166.49,64.353 +216217,171.68,63.276 +216218,169.57,63.614 +216219,167.4,63.947 +216220,165.13,64.275 +216221,170.41,63.306 +216222,168.28,63.607 +216223,166.07,63.904 +216224,163.78,64.196 +216225,169.13,63.335 +216226,166.98,63.6 +216227,164.75,63.862 +216228,162.43,64.118 +216229,167.85,63.365 +216230,165.68,63.594 +216231,163.42,63.819 +216232,161.08,64.039 +216233,166.57,63.394 +216234,164.37,63.587 +216235,162.1,63.776 +216236,159.73,63.96 +216237,165.29,63.424 +216238,163.07,63.581 +216239,160.78,63.733 +216240,158.38,63.88 +216241,164,63.454 +216242,161.77,63.574 +216243,159.45,63.69 +216244,157.03,63.801 +216245,162.72,63.484 +216246,160.47,63.568 +216247,158.13,63.647 +216248,155.69,63.721 +216249,161.43,63.515 +216250,159.17,63.561 +216251,156.81,63.604 +216252,154.35,63.641 +216253,160.14,63.545 +216254,157.86,63.555 +216255,155.49,63.561 +216256,153.01,63.561 +216257,158.85,63.575 +216258,156.56,63.548 +216259,154.17,63.517 +216260,151.67,63.481 +216261,157.55,63.605 +216262,155.25,63.542 +216263,152.85,63.474 +216264,150.34,63.401 +216265,156.26,63.635 +216266,153.95,63.536 +216267,151.53,63.431 +216268,149,63.32 +216269,154.96,63.666 +216270,152.64,63.529 +216271,150.22,63.388 +216272,147.67,63.24 +216273,153.66,63.696 +216274,151.34,63.523 +216275,148.9,63.344 +216276,146.34,63.16 +216277,152.36,63.725 +216278,150.03,63.516 +216279,147.58,63.301 +216280,145.01,63.08 +216281,151.06,63.755 +216282,148.72,63.509 +216283,146.27,63.258 +216284,143.68,63 +216285,149.76,63.785 +216286,147.41,63.503 +216287,144.95,63.215 +216288,142.36,62.92 +216289,148.45,63.814 +216290,146.1,63.496 +216291,143.64,63.172 +216292,141.04,62.84 +216293,147.15,63.843 +216294,144.8,63.489 +216295,142.32,63.129 +216296,139.71,62.761 +216297,145.84,63.872 +216298,143.49,63.482 +216299,141.01,63.086 +216300,138.4,62.682 +216301,144.53,63.9 +216302,142.17,63.475 +216303,139.7,63.043 +216304,137.08,62.602 +216305,143.21,63.928 +216306,140.86,63.468 +216307,138.39,63 +216308,135.76,62.524 +216309,141.9,63.956 +216310,139.55,63.461 +216311,137.08,62.957 +216312,134.45,62.445 +216313,140.58,63.983 +216314,138.24,63.453 +216315,135.77,62.915 +216316,133.14,62.367 +216317,139.27,64.01 +216318,136.93,63.445 +216319,134.46,62.872 +216320,131.83,62.289 +216321,137.95,64.036 +216322,135.61,63.438 +216323,133.15,62.83 +216324,130.53,62.212 +216325,136.63,64.062 +216326,134.3,63.43 +216327,131.84,62.788 +216328,129.22,62.135 +216329,135.3,64.088 +216330,132.98,63.422 +216331,130.53,62.745 +216332,127.92,62.058 +216333,133.98,64.113 +216334,131.67,63.413 +216335,129.22,62.703 +216336,126.62,61.982 +216337,132.65,64.137 +216338,130.35,63.405 +216339,127.92,62.662 +216340,125.32,61.907 +216341,131.32,64.161 +216342,129.04,63.396 +216343,126.61,62.62 +216344,124.02,61.832 +216345,129.99,64.184 +216346,127.72,63.387 +216347,125.31,62.579 +216348,122.73,61.757 +216349,128.66,64.206 +216350,126.4,63.378 +216351,124,62.537 +216352,121.44,61.684 +216353,127.33,64.228 +216354,125.08,63.369 +216355,122.7,62.496 +216356,120.15,61.61 +216357,126,64.249 +216358,123.77,63.359 +216359,121.39,62.455 +216360,118.86,61.538 +216361,124.66,64.27 +216362,122.45,63.349 +216363,120.09,62.415 +216364,117.57,61.466 +216365,123.32,64.289 +216366,121.13,63.339 +216367,118.79,62.374 +216368,116.29,61.395 +216369,121.98,64.308 +216370,119.81,63.329 +216371,117.49,62.334 +216372,115,61.324 +216373,120.64,64.327 +216374,118.49,63.318 +216375,116.19,62.294 +216376,113.72,61.254 +216377,119.3,64.344 +216378,117.16,63.307 +216379,114.89,62.255 +216380,112.45,61.185 +216381,117.95,64.36 +216382,115.84,63.296 +216383,113.59,62.215 +216384,111.17,61.117 +216385,116.61,64.376 +216386,114.52,63.284 +216387,112.29,62.176 +216388,109.89,61.05 +216389,115.26,64.391 +216390,113.2,63.273 +216391,110.99,62.137 +216392,108.62,60.983 +216393,113.91,64.405 +216394,111.87,63.261 +216395,109.69,62.098 +216396,107.35,60.918 +216397,112.56,64.418 +216398,110.55,63.248 +216399,108.4,62.06 +216400,106.08,60.853 +216401,111.21,64.43 +216402,109.22,63.235 +216403,107.1,62.022 +216404,104.81,60.789 +216405,109.85,64.441 +216406,107.9,63.222 +216407,105.81,61.984 +216408,103.55,60.727 +216409,108.5,64.451 +216410,106.57,63.209 +216411,104.51,61.947 +216412,102.29,60.665 +216413,107.14,64.46 +216414,105.25,63.195 +216415,103.22,61.91 +216416,101.02,60.604 +216417,105.78,64.468 +216418,103.92,63.181 +216419,101.92,61.873 +216420,99.764,60.544 +216421,104.42,64.475 +216422,102.59,63.166 +216423,100.63,61.836 +216424,98.506,60.485 +216425,103.06,64.481 +216426,101.27,63.152 +216427,99.335,61.8 +216428,97.249,60.427 +216429,101.7,64.486 +216430,99.938,63.136 +216431,98.043,61.765 +216432,95.994,60.37 +216433,100.34,64.49 +216434,98.61,63.121 +216435,96.751,61.729 +216436,94.741,60.315 +216437,98.973,64.493 +216438,97.281,63.105 +216439,95.46,61.694 +216440,93.489,60.26 +216441,97.607,64.495 +216442,95.952,63.089 +216443,94.169,61.659 +216444,92.239,60.207 +216445,96.24,64.495 +216446,94.622,63.072 +216447,92.879,61.625 +216448,90.99,60.154 +216449,94.872,64.494 +216450,93.292,63.055 +216451,91.589,61.591 +216452,89.743,60.103 +216453,93.502,64.493 +216454,91.962,63.037 +216455,90.299,61.557 +216456,88.497,60.053 +216457,92.132,64.49 +216458,90.631,63.019 +216459,89.011,61.524 +216460,87.253,60.004 +216461,90.76,64.486 +216462,89.299,63.001 +216463,87.722,61.491 +216464,86.01,59.957 +216465,89.387,64.48 +216466,87.968,62.982 +216467,86.434,61.459 +216468,84.768,59.91 +216469,88.013,64.474 +216470,86.636,62.963 +216471,85.147,61.427 +216472,83.528,59.865 +216473,86.638,64.466 +216474,85.304,62.943 +216475,83.859,61.395 +216476,82.289,59.821 +216477,85.262,64.457 +216478,83.971,62.923 +216479,82.573,61.364 +216480,81.051,59.778 +216481,83.884,64.447 +216482,82.638,62.903 +216483,81.286,61.333 +216484,79.815,59.737 +216485,82.506,64.435 +216486,81.305,62.882 +216487,80,61.302 +216488,78.579,59.697 +216489,81.127,64.423 +216490,79.971,62.861 +216491,78.715,61.272 +216492,77.345,59.658 +216493,79.747,64.409 +216494,78.637,62.839 +216495,77.43,61.243 +216496,76.111,59.62 +216497,78.367,64.393 +216498,77.303,62.817 +216499,76.145,61.213 +216500,74.879,59.584 +216501,76.985,64.377 +216502,75.969,62.794 +216503,74.86,61.184 +216504,73.648,59.549 +216505,75.602,64.359 +216506,74.634,62.771 +216507,73.576,61.156 +216508,72.418,59.515 +216509,74.219,64.34 +216510,73.299,62.747 +216511,72.292,61.128 +216512,71.188,59.482 +216513,72.835,64.32 +216514,71.964,62.723 +216515,71.009,61.1 +216516,69.959,59.451 +216517,71.45,64.298 +216518,70.628,62.699 +216519,69.726,61.073 +216520,68.732,59.421 +216521,70.065,64.275 +216522,69.293,62.674 +216523,68.442,61.047 +216524,67.504,59.393 +216525,68.679,64.251 +216526,67.957,62.649 +216527,67.16,61.02 +216528,66.278,59.366 +216529,67.292,64.225 +216530,66.621,62.623 +216531,65.877,60.994 +216532,65.052,59.34 +216533,65.905,64.198 +216534,65.285,62.597 +216535,64.595,60.969 +216536,63.827,59.315 +216537,64.517,64.17 +216538,63.948,62.57 +216539,63.313,60.944 +216540,62.602,59.292 +216541,63.129,64.14 +216542,62.612,62.543 +216543,62.031,60.919 +216544,61.378,59.27 +216545,61.74,64.11 +216546,61.275,62.515 +216547,60.749,60.895 +216548,60.155,59.249 +216549,60.351,64.077 +216550,59.939,62.487 +216551,59.468,60.871 +216552,58.931,59.23 +216553,58.961,64.044 +216554,58.602,62.459 +216555,58.186,60.848 +216556,57.709,59.212 +216557,57.571,64.009 +216558,57.265,62.43 +216559,56.905,60.825 +216560,56.486,59.196 +216561,56.181,63.973 +216562,55.928,62.4 +216563,55.624,60.803 +216564,55.264,59.18 +216565,54.79,63.936 +216566,54.591,62.371 +216567,54.343,60.781 +216568,54.042,59.166 +216569,53.399,63.897 +216570,53.254,62.34 +216571,53.062,60.759 +216572,52.82,59.154 +216573,52.008,63.857 +216574,51.917,62.31 +216575,51.781,60.738 +216576,51.598,59.142 +216577,50.617,63.816 +216578,50.579,62.278 +216579,50.5,60.717 +216580,50.376,59.132 +216581,49.226,63.774 +216582,49.242,62.247 +216583,49.22,60.696 +216584,49.154,59.123 +216585,47.834,63.73 +216586,47.905,62.215 +216587,47.939,60.676 +216588,47.933,59.115 +216589,46.442,63.685 +216590,46.568,62.182 +216591,46.658,60.657 +216592,46.711,59.109 +216593,45.051,63.639 +216594,45.231,62.149 +216595,45.378,60.638 +216596,45.489,59.104 +216597,43.659,63.591 +216598,43.894,62.116 +216599,44.097,60.619 +216600,44.267,59.1 +216601,42.267,63.542 +216602,42.557,62.082 +216603,42.816,60.6 +216604,43.044,59.098 +216605,40.876,63.492 +216606,41.22,62.048 +216607,41.536,60.582 +216608,41.822,59.096 +216609,39.484,63.441 +216610,39.883,62.014 +216611,40.255,60.565 +216612,40.599,59.096 +216613,38.093,63.389 +216614,38.546,61.979 +216615,38.974,60.548 +216616,39.376,59.097 +216617,36.702,63.335 +216618,37.21,61.943 +216619,37.693,60.531 +216620,38.152,59.099 +216621,35.311,63.281 +216622,35.873,61.907 +216623,36.412,60.514 +216624,36.928,59.102 +216625,33.92,63.225 +216626,34.537,61.871 +216627,35.131,60.498 +216628,35.703,59.107 +216629,32.53,63.168 +216630,33.2,61.834 +216631,33.85,60.482 +216632,34.478,59.112 +216633,31.14,63.11 +216634,31.864,61.797 +216635,32.568,60.467 +216636,33.252,59.119 +216637,29.75,63.05 +216638,30.528,61.76 +216639,31.287,60.452 +216640,32.026,59.127 +216641,28.361,62.99 +216642,29.193,61.722 +216643,30.005,60.437 +216644,30.799,59.136 +216645,26.972,62.928 +216646,27.857,61.684 +216647,28.723,60.423 +216648,29.571,59.146 +216649,25.584,62.866 +216650,26.522,61.646 +216651,27.441,60.409 +216652,28.342,59.157 +216653,24.196,62.802 +216654,25.187,61.607 +216655,26.159,60.395 +216656,27.113,59.168 +216657,22.809,62.738 +216658,23.852,61.568 +216659,24.877,60.382 +216660,25.883,59.181 +216661,21.422,62.672 +216662,22.518,61.528 +216663,23.594,60.369 +216664,24.652,59.195 +216665,20.036,62.605 +216666,21.184,61.488 +216667,22.311,60.356 +216668,23.42,59.21 +216669,18.651,62.538 +216670,19.85,61.448 +216671,21.028,60.343 +216672,22.187,59.226 +216673,17.267,62.469 +216674,18.516,61.407 +216675,19.744,60.331 +216676,20.953,59.243 +216677,15.883,62.4 +216678,17.183,61.366 +216679,18.46,60.319 +216680,19.718,59.26 +216681,14.5,62.329 +216682,15.85,61.325 +216683,17.176,60.308 +216684,18.482,59.279 +216685,13.118,62.258 +216686,14.517,61.284 +216687,15.892,60.297 +216688,17.244,59.298 +216689,11.737,62.186 +216690,13.185,61.242 +216691,14.607,60.285 +216692,16.006,59.318 +216693,10.357,62.113 +216694,11.853,61.2 +216695,13.322,60.275 +216696,14.767,59.339 +216697,8.9776,62.039 +216698,10.521,61.157 +216699,12.037,60.264 +216700,13.526,59.36 +216701,7.5993,61.964 +216702,9.1902,61.115 +216703,10.751,60.254 +216704,12.284,59.383 +216705,6.2221,61.889 +216706,7.8594,61.072 +216707,9.4646,60.244 +216708,11.041,59.406 +216709,4.8459,61.812 +216710,6.5291,61.029 +216711,8.1781,60.234 +216712,9.7965,59.429 +216713,3.4708,61.735 +216714,5.1992,60.985 +216715,6.8912,60.224 +216716,8.5507,59.454 +216717,2.0969,61.658 +216718,3.8698,60.942 +216719,5.6039,60.215 +216720,7.3036,59.479 +216721,0.72417,61.579 +216722,2.5407,60.898 +216723,4.3161,60.205 +216724,6.0551,59.504 +216725,359.35,61.501 +216726,1.2122,60.854 +216727,3.028,60.196 +216728,4.8051,59.531 +216729,357.98,61.421 +216730,359.88,60.809 +216731,1.7394,60.188 +216732,3.5537,59.557 +216733,356.61,61.341 +216734,358.56,60.765 +216735,0.45039,60.179 +216736,2.3009,59.585 +216737,355.25,61.26 +216738,357.23,60.72 +216739,359.16,60.17 +216740,1.0465,59.612 +216741,353.88,61.179 +216742,355.9,60.675 +216743,357.87,60.162 +216744,359.79,59.64 +216745,352.51,61.097 +216746,354.58,60.63 +216747,356.58,60.153 +216748,358.53,59.669 +216749,351.15,61.015 +216750,353.25,60.585 +216751,355.29,60.145 +216752,357.27,59.698 +216753,349.79,60.932 +216754,351.93,60.539 +216755,354,60.137 +216756,356.01,59.727 +216757,348.43,60.849 +216758,350.6,60.494 +216759,352.71,60.129 +216760,354.75,59.757 +216761,347.07,60.765 +216762,349.28,60.448 +216763,351.41,60.122 +216764,353.49,59.787 +216765,345.71,60.681 +216766,347.95,60.402 +216767,350.12,60.114 +216768,352.22,59.817 +216769,344.36,60.597 +216770,346.63,60.357 +216771,348.83,60.106 +216772,350.96,59.848 +216773,343,60.512 +216774,345.31,60.31 +216775,347.53,60.099 +216776,349.69,59.879 +216777,341.65,60.427 +216778,343.99,60.264 +216779,346.24,60.091 +216780,348.42,59.91 +216781,340.3,60.342 +216782,342.67,60.218 +216783,344.94,60.084 +216784,347.14,59.941 +216785,338.95,60.257 +216786,341.35,60.172 +216787,343.65,60.076 +216788,345.87,59.972 +216789,337.6,60.172 +216790,340.03,60.125 +216791,342.35,60.069 +216792,344.6,60.003 +216793,336.26,60.086 +216794,338.71,60.079 +216795,341.06,60.061 +216796,343.32,60.034 +216797,334.91,60 +216798,337.39,60.033 +216799,339.76,60.054 +216800,342.04,60.066 +216801,333.57,59.914 +216802,336.07,59.986 +216803,338.46,60.046 +216804,340.76,60.097 +216805,332.23,59.828 +216806,334.75,59.94 +216807,337.16,60.039 +216808,339.48,60.129 +216809,330.89,59.742 +216810,333.44,59.893 +216811,335.86,60.032 +216812,338.19,60.16 +216813,329.55,59.656 +216814,332.12,59.847 +216815,334.57,60.024 +216816,336.91,60.191 +216817,328.22,59.571 +216818,330.81,59.8 +216819,333.27,60.017 +216820,335.62,60.222 +216821,326.89,59.485 +216822,329.49,59.754 +216823,331.96,60.009 +216824,334.33,60.253 +216825,325.56,59.399 +216826,328.18,59.707 +216827,330.66,60.001 +216828,333.04,60.284 +216829,324.23,59.313 +216830,326.86,59.661 +216831,329.36,59.994 +216832,331.74,60.314 +216833,322.9,59.228 +216834,325.55,59.614 +216835,328.06,59.986 +216836,330.45,60.345 +216837,321.58,59.143 +216838,324.24,59.568 +216839,326.76,59.978 +216840,329.15,60.375 +216841,320.25,59.058 +216842,322.93,59.522 +216843,325.45,59.97 +216844,327.85,60.404 +216845,318.93,58.973 +216846,321.62,59.476 +216847,324.15,59.962 +216848,326.55,60.434 +216849,317.61,58.888 +216850,320.31,59.43 +216851,322.84,59.954 +216852,325.25,60.463 +216853,316.3,58.804 +216854,319,59.384 +216855,321.54,59.945 +216856,323.95,60.491 +216857,314.98,58.721 +216858,317.69,59.338 +216859,320.23,59.937 +216860,322.64,60.519 +216861,313.67,58.637 +216862,316.38,59.292 +216863,318.93,59.928 +216864,321.33,60.547 +216865,312.36,58.554 +216866,315.07,59.246 +216867,317.62,59.919 +216868,320.02,60.574 +216869,311.05,58.472 +216870,313.77,59.201 +216871,316.31,59.91 +216872,318.71,60.601 +216873,309.74,58.39 +216874,312.46,59.156 +216875,315,59.901 +216876,317.4,60.627 +216877,308.44,58.308 +216878,311.16,59.111 +216879,313.7,59.891 +216880,316.08,60.653 +216881,307.14,58.227 +216882,309.85,59.066 +216883,312.39,59.882 +216884,314.77,60.678 +216885,305.84,58.147 +216886,308.55,59.021 +216887,311.08,59.872 +216888,313.45,60.702 +216889,304.54,58.067 +216890,307.24,58.976 +216891,309.77,59.862 +216892,312.13,60.726 +216893,303.24,57.988 +216894,305.94,58.932 +216895,308.45,59.852 +216896,310.81,60.749 +216897,301.95,57.909 +216898,304.64,58.888 +216899,307.14,59.841 +216900,309.48,60.772 +216901,300.66,57.832 +216902,303.34,58.844 +216903,305.83,59.83 +216904,308.16,60.793 +216905,299.37,57.755 +216906,302.04,58.8 +216907,304.52,59.819 +216908,306.83,60.814 +216909,298.08,57.678 +216910,300.74,58.757 +216911,303.2,59.808 +216912,305.5,60.834 +216913,296.8,57.603 +216914,299.44,58.713 +216915,301.89,59.796 +216916,304.17,60.854 +216917,295.52,57.528 +216918,298.14,58.67 +216919,300.57,59.784 +216920,302.84,60.872 +216921,294.23,57.454 +216922,296.85,58.628 +216923,299.26,59.772 +216924,301.51,60.89 +216925,292.96,57.381 +216926,295.55,58.585 +216927,297.94,59.76 +216928,300.17,60.907 +216929,291.68,57.309 +216930,294.25,58.543 +216931,296.63,59.747 +216932,298.84,60.922 +216933,290.4,57.238 +216934,292.96,58.501 +216935,295.31,59.734 +216936,297.5,60.937 +216937,289.13,57.167 +216938,291.66,58.46 +216939,293.99,59.72 +216940,296.16,60.951 +216941,287.86,57.098 +216942,290.37,58.419 +216943,292.68,59.707 +216944,294.82,60.964 +216945,286.59,57.03 +216946,289.07,58.378 +216947,291.36,59.692 +216948,293.47,60.976 +216949,285.33,56.962 +216950,287.78,58.337 +216951,290.04,59.678 +216952,292.13,60.987 +216953,284.06,56.896 +216954,286.49,58.297 +216955,288.72,59.663 +216956,290.78,60.997 +216957,282.8,56.831 +216958,285.2,58.257 +216959,287.4,59.648 +216960,289.43,61.006 +216961,281.54,56.767 +216962,283.91,58.217 +216963,286.08,59.632 +216964,288.08,61.014 +216965,280.28,56.704 +216966,282.62,58.178 +216967,284.76,59.616 +216968,286.73,61.021 +216969,279.02,56.642 +216970,281.33,58.139 +216971,283.44,59.6 +216972,285.38,61.027 +216973,277.77,56.581 +216974,280.04,58.101 +216975,282.11,59.583 +216976,284.03,61.031 +216977,276.51,56.521 +216978,278.75,58.063 +216979,280.79,59.566 +216980,282.67,61.035 +216981,275.26,56.463 +216982,277.46,58.025 +216983,279.47,59.549 +216984,281.32,61.037 +216985,274.01,56.406 +216986,276.17,57.988 +216987,278.15,59.531 +216988,279.96,61.038 +216989,272.77,56.35 +216990,274.89,57.951 +216991,276.82,59.513 +216992,278.6,61.038 +216993,271.52,56.295 +216994,273.6,57.914 +216995,275.5,59.494 +216996,277.24,61.037 +216997,270.27,56.241 +216998,272.31,57.878 +216999,274.17,59.475 +217000,275.88,61.034 +217001,269.03,56.189 +217002,271.03,57.842 +217003,272.85,59.455 +217004,274.51,61.03 +217005,267.79,56.138 +217006,269.74,57.807 +217007,271.52,59.435 +217008,273.15,61.025 +217009,266.55,56.089 +217010,268.46,57.772 +217011,270.2,59.415 +217012,271.79,61.019 +217013,265.31,56.04 +217014,267.18,57.737 +217015,268.87,59.394 +217016,270.42,61.011 +217017,264.08,55.993 +217018,265.89,57.703 +217019,267.54,59.372 +217020,269.05,61.002 +217021,262.84,55.948 +217022,264.61,57.67 +217023,266.22,59.35 +217024,267.68,60.992 +217025,261.61,55.903 +217026,263.33,57.636 +217027,264.89,59.328 +217028,266.31,60.981 +217029,260.37,55.86 +217030,262.05,57.604 +217031,263.56,59.305 +217032,264.94,60.968 +217033,259.14,55.819 +217034,260.77,57.571 +217035,262.23,59.282 +217036,263.57,60.954 +217037,257.91,55.779 +217038,259.48,57.539 +217039,260.9,59.259 +217040,262.2,60.938 +217041,256.69,55.74 +217042,258.2,57.508 +217043,259.58,59.235 +217044,260.82,60.922 +217045,255.46,55.702 +217046,256.92,57.477 +217047,258.25,59.21 +217048,259.45,60.903 +217049,254.23,55.666 +217050,255.64,57.446 +217051,256.92,59.185 +217052,258.07,60.884 +217053,253.01,55.632 +217054,254.37,57.416 +217055,255.59,59.159 +217056,256.7,60.863 +217057,251.78,55.599 +217058,253.09,57.387 +217059,254.26,59.133 +217060,255.32,60.841 +217061,250.56,55.567 +217062,251.81,57.358 +217063,252.93,59.107 +217064,253.94,60.817 +217065,249.34,55.537 +217066,250.53,57.329 +217067,251.6,59.08 +217068,252.56,60.792 +217069,248.12,55.508 +217070,249.25,57.301 +217071,250.27,59.053 +217072,251.18,60.766 +217073,246.9,55.48 +217074,247.97,57.273 +217075,248.94,59.025 +217076,249.8,60.738 +217077,245.68,55.454 +217078,246.7,57.245 +217079,247.61,58.996 +217080,248.42,60.709 +217081,244.46,55.43 +217082,245.42,57.219 +217083,246.27,58.968 +217084,247.04,60.678 +217085,243.24,55.407 +217086,244.14,57.192 +217087,244.94,58.938 +217088,245.65,60.647 +217089,242.02,55.385 +217090,242.87,57.166 +217091,243.61,58.909 +217092,244.27,60.613 +217093,240.81,55.364 +217094,241.59,57.141 +217095,242.28,58.878 +217096,242.89,60.579 +217097,239.59,55.346 +217098,240.31,57.116 +217099,240.95,58.847 +217100,241.5,60.543 +217101,238.38,55.328 +217102,239.04,57.091 +217103,239.62,58.816 +217104,240.12,60.505 +217105,237.16,55.312 +217106,237.76,57.067 +217107,238.28,58.785 +217108,238.73,60.466 +217109,235.95,55.297 +217110,236.49,57.043 +217111,236.95,58.752 +217112,237.35,60.426 +217113,234.73,55.284 +217114,235.21,57.02 +217115,235.62,58.72 +217116,235.96,60.384 +217117,233.52,55.272 +217118,233.94,56.997 +217119,234.29,58.687 +217120,234.58,60.341 +217121,232.3,55.262 +217122,232.66,56.975 +217123,232.95,58.653 +217124,233.19,60.297 +217125,231.09,55.253 +217126,231.39,56.953 +217127,231.62,58.619 +217128,231.8,60.251 +217129,229.88,55.245 +217130,230.11,56.932 +217131,230.29,58.584 +217132,230.42,60.204 +217133,228.66,55.239 +217134,228.84,56.911 +217135,228.96,58.55 +217136,229.03,60.156 +217137,227.45,55.234 +217138,227.56,56.89 +217139,227.62,58.514 +217140,227.64,60.106 +217141,226.24,55.23 +217142,226.29,56.87 +217143,226.29,58.478 +217144,226.25,60.055 +217145,225.02,55.228 +217146,225.01,56.85 +217147,224.96,58.442 +217148,224.87,60.003 +217149,223.81,55.227 +217150,223.74,56.831 +217151,223.63,58.405 +217152,223.48,59.949 +217153,222.6,55.227 +217154,222.47,56.812 +217155,222.3,58.368 +217156,222.09,59.894 +217157,221.38,55.228 +217158,221.19,56.794 +217159,220.96,58.33 +217160,220.7,59.838 +217161,220.17,55.231 +217162,219.92,56.776 +217163,219.63,58.292 +217164,219.31,59.781 +217165,218.96,55.235 +217166,218.64,56.758 +217167,218.3,58.254 +217168,217.93,59.722 +217169,217.74,55.24 +217170,217.37,56.741 +217171,216.97,58.215 +217172,216.54,59.662 +217173,216.53,55.247 +217174,216.09,56.724 +217175,215.63,58.175 +217176,215.15,59.601 +217177,215.31,55.255 +217178,214.82,56.707 +217179,214.3,58.135 +217180,213.77,59.538 +217181,214.09,55.263 +217182,213.54,56.691 +217183,212.97,58.095 +217184,212.38,59.475 +217185,212.88,55.273 +217186,212.27,56.676 +217187,211.64,58.055 +217188,210.99,59.41 +217189,211.66,55.285 +217190,210.99,56.66 +217191,210.31,58.014 +217192,209.61,59.344 +217193,210.44,55.297 +217194,209.72,56.645 +217195,208.98,57.972 +217196,208.22,59.277 +217197,209.22,55.31 +217198,208.44,56.631 +217199,207.65,57.931 +217200,206.83,59.208 +217201,208.01,55.325 +217202,207.17,56.617 +217203,206.32,57.888 +217204,205.45,59.139 +217205,206.79,55.34 +217206,205.89,56.603 +217207,204.99,57.846 +217208,204.07,59.068 +217209,205.56,55.356 +217210,204.62,56.589 +217211,203.66,57.803 +217212,202.68,58.997 +217213,204.34,55.374 +217214,203.34,56.576 +217215,202.33,57.76 +217216,201.3,58.924 +217217,203.12,55.392 +217218,202.06,56.563 +217219,201,57.716 +217220,199.92,58.851 +217221,201.9,55.412 +217222,200.79,56.551 +217223,199.67,57.672 +217224,198.53,58.776 +217225,200.67,55.432 +217226,199.51,56.538 +217227,198.34,57.628 +217228,197.15,58.7 +217229,199.45,55.453 +217230,198.23,56.526 +217231,197.01,57.584 +217232,195.77,58.624 +217233,198.22,55.475 +217234,196.96,56.515 +217235,195.68,57.539 +217236,194.39,58.546 +217237,196.99,55.498 +217238,195.68,56.503 +217239,194.35,57.493 +217240,193.01,58.468 +217241,195.76,55.522 +217242,194.4,56.492 +217243,193.02,57.448 +217244,191.63,58.388 +217245,194.53,55.547 +217246,193.12,56.481 +217247,191.7,57.402 +217248,190.26,58.308 +217249,193.3,55.572 +217250,191.84,56.471 +217251,190.37,57.356 +217252,188.88,58.227 +217253,192.07,55.598 +217254,190.57,56.46 +217255,189.04,57.31 +217256,187.5,58.145 +217257,190.84,55.625 +217258,189.29,56.45 +217259,187.72,57.263 +217260,186.13,58.062 +217261,189.6,55.652 +217262,188.01,56.44 +217263,186.39,57.216 +217264,184.75,57.979 +217265,188.36,55.68 +217266,186.73,56.431 +217267,185.07,57.169 +217268,183.38,57.894 +217269,187.13,55.709 +217270,185.45,56.421 +217271,183.74,57.122 +217272,182.01,57.809 +217273,185.89,55.738 +217274,184.17,56.412 +217275,182.42,57.074 +217276,180.64,57.724 +217277,184.65,55.768 +217278,182.88,56.403 +217279,181.09,57.026 +217280,179.27,57.637 +217281,183.4,55.798 +217282,181.6,56.394 +217283,179.77,56.978 +217284,177.9,57.551 +217285,182.16,55.829 +217286,180.32,56.385 +217287,178.45,56.93 +217288,176.54,57.463 +217289,180.91,55.86 +217290,179.04,56.376 +217291,177.12,56.882 +217292,175.17,57.375 +217293,179.67,55.892 +217294,177.76,56.368 +217295,175.8,56.833 +217296,173.81,57.286 +217297,178.42,55.924 +217298,176.47,56.36 +217299,174.48,56.785 +217300,172.44,57.197 +217301,177.17,55.957 +217302,175.19,56.351 +217303,173.16,56.736 +217304,171.08,57.108 +217305,175.92,55.989 +217306,173.9,56.343 +217307,171.84,56.687 +217308,169.72,57.017 +217309,174.67,56.023 +217310,172.62,56.335 +217311,170.52,56.638 +217312,168.36,56.927 +217313,173.41,56.056 +217314,171.33,56.327 +217315,169.2,56.588 +217316,167.01,56.836 +217317,172.15,56.09 +217318,170.05,56.32 +217319,167.88,56.539 +217320,165.65,56.745 +217321,170.9,56.123 +217322,168.76,56.312 +217323,166.56,56.489 +217324,164.3,56.653 +217325,169.64,56.157 +217326,167.47,56.304 +217327,165.25,56.44 +217328,162.94,56.562 +217329,168.38,56.191 +217330,166.19,56.297 +217331,163.93,56.39 +217332,161.59,56.47 +217333,167.11,56.226 +217334,164.9,56.289 +217335,162.61,56.34 +217336,160.24,56.377 +217337,165.85,56.26 +217338,163.61,56.282 +217339,161.3,56.291 +217340,158.9,56.285 +217341,164.58,56.294 +217342,162.32,56.274 +217343,159.98,56.241 +217344,157.55,56.192 +217345,163.31,56.329 +217346,161.03,56.266 +217347,158.67,56.191 +217348,156.21,56.1 +217349,162.04,56.363 +217350,159.74,56.259 +217351,157.35,56.141 +217352,154.86,56.007 +217353,160.77,56.397 +217354,158.45,56.251 +217355,156.04,56.091 +217356,153.52,55.914 +217357,159.5,56.431 +217358,157.16,56.244 +217359,154.73,56.041 +217360,152.18,55.821 +217361,158.22,56.465 +217362,155.87,56.236 +217363,153.42,55.991 +217364,150.85,55.728 +217365,156.94,56.499 +217366,154.58,56.229 +217367,152.11,55.942 +217368,149.51,55.635 +217369,155.66,56.533 +217370,153.28,56.221 +217371,150.8,55.892 +217372,148.18,55.543 +217373,154.38,56.566 +217374,151.99,56.213 +217375,149.49,55.842 +217376,146.85,55.45 +217377,153.1,56.6 +217378,150.7,56.205 +217379,148.18,55.792 +217380,145.52,55.358 +217381,151.82,56.632 +217382,149.4,56.197 +217383,146.87,55.743 +217384,144.19,55.266 +217385,150.53,56.665 +217386,148.11,56.189 +217387,145.56,55.693 +217388,142.87,55.174 +217389,149.24,56.697 +217390,146.81,56.181 +217391,144.25,55.643 +217392,141.54,55.082 +217393,147.95,56.729 +217394,145.52,56.173 +217395,142.95,55.594 +217396,140.22,54.991 +217397,146.66,56.761 +217398,144.22,56.164 +217399,141.64,55.545 +217400,138.9,54.9 +217401,145.36,56.792 +217402,142.92,56.156 +217403,140.34,55.496 +217404,137.59,54.809 +217405,144.07,56.822 +217406,141.62,56.147 +217407,139.03,55.447 +217408,136.27,54.719 +217409,142.77,56.852 +217410,140.32,56.138 +217411,137.73,55.398 +217412,134.96,54.629 +217413,141.47,56.882 +217414,139.03,56.129 +217415,136.43,55.349 +217416,133.65,54.539 +217417,140.17,56.911 +217418,137.73,56.119 +217419,135.13,55.301 +217420,132.34,54.451 +217421,138.87,56.939 +217422,136.43,56.11 +217423,133.82,55.252 +217424,131.03,54.362 +217425,137.56,56.967 +217426,135.12,56.1 +217427,132.52,55.204 +217428,129.73,54.275 +217429,136.26,56.994 +217430,133.82,56.09 +217431,131.22,55.156 +217432,128.43,54.188 +217433,134.95,57.02 +217434,132.52,56.08 +217435,129.93,55.108 +217436,127.13,54.101 +217437,133.64,57.046 +217438,131.22,56.07 +217439,128.63,55.061 +217440,125.83,54.015 +217441,132.33,57.071 +217442,129.91,56.059 +217443,127.33,55.014 +217444,124.54,53.93 +217445,131.01,57.095 +217446,128.61,56.048 +217447,126.03,54.967 +217448,123.24,53.846 +217449,129.7,57.118 +217450,127.31,56.037 +217451,124.74,54.92 +217452,121.95,53.762 +217453,128.38,57.141 +217454,126,56.025 +217455,123.44,54.873 +217456,120.66,53.68 +217457,127.06,57.162 +217458,124.7,56.014 +217459,122.15,54.827 +217460,119.38,53.598 +217461,125.74,57.183 +217462,123.39,56.002 +217463,120.85,54.781 +217464,118.09,53.517 +217465,124.42,57.203 +217466,122.08,55.989 +217467,119.56,54.736 +217468,116.81,53.437 +217469,123.09,57.222 +217470,120.77,55.977 +217471,118.27,54.69 +217472,115.53,53.357 +217473,121.77,57.24 +217474,119.47,55.964 +217475,116.98,54.645 +217476,114.25,53.279 +217477,120.44,57.257 +217478,118.16,55.95 +217479,115.68,54.6 +217480,112.98,53.202 +217481,119.11,57.273 +217482,116.85,55.937 +217483,114.39,54.556 +217484,111.71,53.126 +217485,117.78,57.288 +217486,115.54,55.923 +217487,113.1,54.512 +217488,110.43,53.051 +217489,116.45,57.302 +217490,114.23,55.908 +217491,111.82,54.468 +217492,109.17,52.977 +217493,115.12,57.315 +217494,112.92,55.894 +217495,110.53,54.425 +217496,107.9,52.904 +217497,113.78,57.327 +217498,111.61,55.878 +217499,109.24,54.382 +217500,106.63,52.832 +217501,112.44,57.338 +217502,110.3,55.863 +217503,107.95,54.339 +217504,105.37,52.761 +217505,111.1,57.347 +217506,108.98,55.847 +217507,106.67,54.297 +217508,104.11,52.692 +217509,109.76,57.356 +217510,107.67,55.831 +217511,105.38,54.255 +217512,102.85,52.623 +217513,108.42,57.363 +217514,106.36,55.814 +217515,104.1,54.214 +217516,101.6,52.556 +217517,107.08,57.369 +217518,105.04,55.797 +217519,102.81,54.173 +217520,100.34,52.491 +217521,105.74,57.374 +217522,103.73,55.78 +217523,101.53,54.132 +217524,99.092,52.426 +217525,104.39,57.377 +217526,102.41,55.762 +217527,100.25,54.092 +217528,97.842,52.363 +217529,103.04,57.38 +217530,101.1,55.743 +217531,98.965,54.052 +217532,96.594,52.301 +217533,101.69,57.381 +217534,99.784,55.724 +217535,97.683,54.013 +217536,95.348,52.241 +217537,100.34,57.381 +217538,98.468,55.705 +217539,96.402,53.974 +217540,94.104,52.181 +217541,98.992,57.379 +217542,97.151,55.686 +217543,95.122,53.936 +217544,92.862,52.124 +217545,97.64,57.376 +217546,95.834,55.665 +217547,93.842,53.898 +217548,91.622,52.067 +217549,96.286,57.372 +217550,94.517,55.645 +217551,92.563,53.86 +217552,90.383,52.012 +217553,94.931,57.367 +217554,93.199,55.624 +217555,91.285,53.823 +217556,89.147,51.959 +217557,93.574,57.36 +217558,91.881,55.602 +217559,90.007,53.787 +217560,87.912,51.907 +217561,92.216,57.352 +217562,90.562,55.58 +217563,88.729,53.751 +217564,86.679,51.856 +217565,90.858,57.342 +217566,89.243,55.558 +217567,87.453,53.715 +217568,85.447,51.807 +217569,89.498,57.331 +217570,87.924,55.535 +217571,86.176,53.68 +217572,84.218,51.759 +217573,88.137,57.319 +217574,86.604,55.512 +217575,84.901,53.645 +217576,82.99,51.713 +217577,86.774,57.305 +217578,85.284,55.488 +217579,83.625,53.611 +217580,81.763,51.668 +217581,85.411,57.29 +217582,83.963,55.463 +217583,82.351,53.577 +217584,80.538,51.625 +217585,84.047,57.274 +217586,82.642,55.439 +217587,81.077,53.544 +217588,79.314,51.584 +217589,82.682,57.256 +217590,81.321,55.413 +217591,79.803,53.511 +217592,78.092,51.544 +217593,81.315,57.236 +217594,80,55.387 +217595,78.53,53.479 +217596,76.872,51.505 +217597,79.948,57.215 +217598,78.678,55.361 +217599,77.257,53.447 +217600,75.652,51.469 +217601,78.58,57.193 +217602,77.356,55.334 +217603,75.984,53.416 +217604,74.434,51.433 +217605,77.211,57.169 +217606,76.033,55.307 +217607,74.713,53.386 +217608,73.217,51.4 +217609,75.841,57.144 +217610,74.711,55.279 +217611,73.441,53.355 +217612,72.002,51.367 +217613,74.47,57.117 +217614,73.388,55.251 +217615,72.17,53.326 +217616,70.787,51.337 +217617,73.099,57.089 +217618,72.065,55.222 +217619,70.899,53.297 +217620,69.574,51.308 +217621,71.726,57.059 +217622,70.742,55.192 +217623,69.629,53.268 +217624,68.362,51.28 +217625,70.353,57.028 +217626,69.418,55.162 +217627,68.359,53.24 +217628,67.151,51.255 +217629,68.98,56.995 +217630,68.094,55.132 +217631,67.089,53.212 +217632,65.94,51.23 +217633,67.605,56.961 +217634,66.77,55.101 +217635,65.82,53.185 +217636,64.731,51.208 +217637,66.23,56.925 +217638,65.446,55.07 +217639,64.551,53.159 +217640,63.522,51.187 +217641,64.854,56.888 +217642,64.122,55.038 +217643,63.282,53.132 +217644,62.315,51.167 +217645,63.478,56.849 +217646,62.797,55.005 +217647,62.014,53.107 +217648,61.107,51.149 +217649,62.102,56.809 +217650,61.473,54.973 +217651,60.746,53.082 +217652,59.901,51.133 +217653,60.724,56.767 +217654,60.148,54.939 +217655,59.478,53.057 +217656,58.695,51.118 +217657,59.347,56.724 +217658,58.823,54.905 +217659,58.21,53.033 +217660,57.49,51.105 +217661,57.968,56.68 +217662,57.498,54.871 +217663,56.943,53.01 +217664,56.285,51.093 +217665,56.59,56.634 +217666,56.173,54.836 +217667,55.675,52.987 +217668,55.081,51.083 +217669,55.211,56.586 +217670,54.848,54.8 +217671,54.408,52.964 +217672,53.877,51.075 +217673,53.832,56.537 +217674,53.523,54.764 +217675,53.141,52.942 +217676,52.674,51.068 +217677,52.452,56.487 +217678,52.198,54.728 +217679,51.875,52.921 +217680,51.471,51.062 +217681,51.072,56.435 +217682,50.873,54.691 +217683,50.608,52.9 +217684,50.268,51.058 +217685,49.692,56.382 +217686,49.547,54.654 +217687,49.342,52.879 +217688,49.065,51.056 +217689,48.312,56.327 +217690,48.222,54.616 +217691,48.075,52.859 +217692,47.862,51.055 +217693,46.932,56.271 +217694,46.897,54.578 +217695,46.809,52.84 +217696,46.66,51.055 +217697,45.551,56.214 +217698,45.572,54.539 +217699,45.543,52.821 +217700,45.457,51.057 +217701,44.171,56.155 +217702,44.247,54.5 +217703,44.277,52.802 +217704,44.254,51.06 +217705,42.79,56.095 +217706,42.922,54.46 +217707,43.011,52.784 +217708,43.051,51.065 +217709,41.41,56.033 +217710,41.596,54.42 +217711,41.745,52.766 +217712,41.849,51.071 +217713,40.029,55.97 +217714,40.272,54.379 +217715,40.479,52.749 +217716,40.645,51.078 +217717,38.649,55.906 +217718,38.947,54.338 +217719,39.213,52.732 +217720,39.442,51.087 +217721,37.268,55.84 +217722,37.622,54.296 +217723,37.947,52.716 +217724,38.238,51.097 +217725,35.888,55.773 +217726,36.297,54.254 +217727,36.68,52.7 +217728,37.034,51.108 +217729,34.508,55.705 +217730,34.973,54.212 +217731,35.414,52.684 +217732,35.829,51.121 +217733,33.128,55.636 +217734,33.649,54.169 +217735,34.148,52.669 +217736,34.624,51.135 +217737,31.748,55.565 +217738,32.324,54.126 +217739,32.882,52.655 +217740,33.419,51.15 +217741,30.369,55.493 +217742,31,54.082 +217743,31.615,52.64 +217744,32.213,51.167 +217745,28.99,55.42 +217746,29.677,54.038 +217747,30.349,52.626 +217748,31.006,51.184 +217749,27.612,55.345 +217750,28.353,53.994 +217751,29.082,52.613 +217752,29.798,51.203 +217753,26.233,55.27 +217754,27.03,53.949 +217755,27.816,52.6 +217756,28.59,51.223 +217757,24.856,55.193 +217758,25.707,53.904 +217759,26.549,52.587 +217760,27.381,51.244 +217761,23.478,55.115 +217762,24.384,53.858 +217763,25.282,52.575 +217764,26.171,51.266 +217765,22.102,55.036 +217766,23.061,53.812 +217767,24.014,52.563 +217768,24.961,51.289 +217769,20.725,54.956 +217770,21.739,53.766 +217771,22.747,52.551 +217772,23.749,51.313 +217773,19.35,54.875 +217774,20.417,53.719 +217775,21.479,52.54 +217776,22.537,51.339 +217777,17.975,54.793 +217778,19.095,53.672 +217779,20.211,52.529 +217780,21.323,51.365 +217781,16.601,54.71 +217782,17.774,53.625 +217783,18.943,52.519 +217784,20.109,51.392 +217785,15.227,54.625 +217786,16.453,53.577 +217787,17.675,52.508 +217788,18.893,51.42 +217789,13.854,54.54 +217790,15.132,53.529 +217791,16.406,52.498 +217792,17.676,51.449 +217793,12.482,54.454 +217794,13.812,53.481 +217795,15.137,52.489 +217796,16.458,51.479 +217797,11.111,54.367 +217798,12.492,53.432 +217799,13.868,52.479 +217800,15.239,51.509 +217801,9.7406,54.279 +217802,11.172,53.384 +217803,12.598,52.47 +217804,14.019,51.541 +217805,8.3712,54.19 +217806,9.8533,53.334 +217807,11.328,52.462 +217808,12.797,51.573 +217809,7.0027,54.101 +217810,8.5346,53.285 +217811,10.058,52.453 +217812,11.574,51.606 +217813,5.6352,54.01 +217814,7.2163,53.235 +217815,8.7874,52.445 +217816,10.35,51.64 +217817,4.2687,53.919 +217818,5.8985,53.185 +217819,7.5164,52.437 +217820,9.1241,51.674 +217821,2.9033,53.827 +217822,4.5811,53.135 +217823,6.2451,52.429 +217824,7.897,51.709 +217825,1.5389,53.734 +217826,3.2642,53.085 +217827,4.9734,52.421 +217828,6.6685,51.744 +217829,0.17567,53.641 +217830,1.9477,53.034 +217831,3.7013,52.414 +217832,5.4385,51.78 +217833,358.81,53.547 +217834,0.6318,52.984 +217835,2.4288,52.406 +217836,4.207,51.817 +217837,357.45,53.452 +217838,359.32,52.933 +217839,1.1559,52.399 +217840,2.974,51.854 +217841,356.09,53.357 +217842,358,52.882 +217843,359.88,52.392 +217844,1.7395,51.891 +217845,354.73,53.261 +217846,356.69,52.83 +217847,358.61,52.386 +217848,0.50334,51.929 +217849,353.38,53.165 +217850,355.37,52.779 +217851,357.33,52.379 +217852,359.27,51.968 +217853,352.02,53.068 +217854,354.06,52.727 +217855,356.06,52.373 +217856,358.03,52.006 +217857,350.67,52.971 +217858,352.75,52.675 +217859,354.78,52.366 +217860,356.79,52.045 +217861,349.32,52.873 +217862,351.43,52.624 +217863,353.51,52.36 +217864,355.54,52.084 +217865,347.96,52.775 +217866,350.12,52.572 +217867,352.23,52.354 +217868,354.3,52.124 +217869,346.61,52.677 +217870,348.81,52.52 +217871,350.96,52.348 +217872,353.05,52.164 +217873,345.27,52.578 +217874,347.5,52.467 +217875,349.68,52.342 +217876,351.8,52.204 +217877,343.92,52.479 +217878,346.19,52.415 +217879,348.4,52.336 +217880,350.55,52.244 +217881,342.57,52.38 +217882,344.88,52.363 +217883,347.12,52.33 +217884,349.3,52.284 +217885,341.23,52.28 +217886,343.57,52.311 +217887,345.85,52.324 +217888,348.05,52.324 +217889,339.89,52.181 +217890,342.27,52.258 +217891,344.57,52.319 +217892,346.8,52.364 +217893,338.55,52.081 +217894,340.96,52.206 +217895,343.29,52.313 +217896,345.54,52.404 +217897,337.21,51.981 +217898,339.65,52.153 +217899,342.01,52.307 +217900,344.28,52.444 +217901,335.87,51.881 +217902,338.35,52.101 +217903,340.73,52.301 +217904,343.02,52.485 +217905,334.54,51.781 +217906,337.04,52.049 +217907,339.44,52.296 +217908,341.76,52.525 +217909,333.2,51.681 +217910,335.74,51.996 +217911,338.16,52.29 +217912,340.49,52.564 +217913,331.87,51.581 +217914,334.43,51.944 +217915,336.88,52.284 +217916,339.23,52.604 +217917,330.54,51.482 +217918,333.13,51.892 +217919,335.6,52.278 +217920,337.96,52.644 +217921,329.22,51.382 +217922,331.83,51.84 +217923,334.31,52.272 +217924,336.69,52.683 +217925,327.89,51.283 +217926,330.53,51.788 +217927,333.03,52.266 +217928,335.42,52.722 +217929,326.57,51.183 +217930,329.22,51.736 +217931,331.74,52.26 +217932,334.15,52.76 +217933,325.25,51.084 +217934,327.92,51.684 +217935,330.46,52.254 +217936,332.87,52.798 +217937,323.93,50.986 +217938,326.62,51.632 +217939,329.17,52.247 +217940,331.6,52.836 +217941,322.61,50.887 +217942,325.33,51.58 +217943,327.89,52.241 +217944,330.32,52.874 +217945,321.29,50.789 +217946,324.03,51.529 +217947,326.6,52.234 +217948,329.04,52.911 +217949,319.98,50.692 +217950,322.73,51.477 +217951,325.31,52.228 +217952,327.75,52.947 +217953,318.67,50.595 +217954,321.43,51.426 +217955,324.02,52.221 +217956,326.47,52.983 +217957,317.36,50.498 +217958,320.14,51.375 +217959,322.74,52.214 +217960,325.18,53.019 +217961,316.05,50.402 +217962,318.84,51.324 +217963,321.45,52.206 +217964,323.9,53.053 +217965,314.75,50.306 +217966,317.55,51.273 +217967,320.16,52.199 +217968,322.61,53.088 +217969,313.45,50.211 +217970,316.25,51.223 +217971,318.87,52.191 +217972,321.32,53.121 +217973,312.14,50.117 +217974,314.96,51.173 +217975,317.58,52.183 +217976,320.02,53.154 +217977,310.85,50.024 +217978,313.67,51.123 +217979,316.28,52.175 +217980,318.73,53.186 +217981,309.55,49.931 +217982,312.38,51.073 +217983,314.99,52.167 +217984,317.43,53.218 +217985,308.26,49.838 +217986,311.09,51.024 +217987,313.7,52.158 +217988,316.13,53.248 +217989,306.97,49.747 +217990,309.8,50.974 +217991,312.41,52.149 +217992,314.83,53.278 +217993,305.68,49.657 +217994,308.51,50.926 +217995,311.11,52.14 +217996,313.53,53.307 +217997,304.39,49.567 +217998,307.22,50.877 +217999,309.82,52.131 +218000,312.22,53.335 +218001,303.11,49.478 +218002,305.93,50.829 +218003,308.52,52.121 +218004,310.92,53.363 +218005,301.82,49.39 +218006,304.65,50.781 +218007,307.23,52.111 +218008,309.61,53.389 +218009,300.54,49.303 +218010,303.36,50.733 +218011,305.93,52.101 +218012,308.3,53.414 +218013,299.27,49.217 +218014,302.07,50.686 +218015,304.63,52.09 +218016,306.99,53.439 +218017,297.99,49.133 +218018,300.79,50.639 +218019,303.34,52.079 +218020,305.68,53.462 +218021,296.72,49.049 +218022,299.51,50.592 +218023,302.04,52.068 +218024,304.36,53.485 +218025,295.45,48.966 +218026,298.22,50.546 +218027,300.74,52.056 +218028,303.05,53.506 +218029,294.18,48.885 +218030,296.94,50.5 +218031,299.44,52.044 +218032,301.73,53.526 +218033,292.91,48.804 +218034,295.66,50.455 +218035,298.14,52.032 +218036,300.41,53.546 +218037,291.65,48.725 +218038,294.38,50.41 +218039,296.84,52.019 +218040,299.09,53.564 +218041,290.39,48.647 +218042,293.1,50.365 +218043,295.54,52.006 +218044,297.76,53.58 +218045,289.13,48.571 +218046,291.82,50.321 +218047,294.24,51.993 +218048,296.44,53.596 +218049,287.87,48.495 +218050,290.54,50.277 +218051,292.94,51.979 +218052,295.11,53.611 +218053,286.61,48.422 +218054,289.26,50.234 +218055,291.63,51.964 +218056,293.79,53.624 +218057,285.36,48.349 +218058,287.99,50.191 +218059,290.33,51.95 +218060,292.46,53.636 +218061,284.11,48.278 +218062,286.71,50.148 +218063,289.03,51.935 +218064,291.13,53.647 +218065,282.86,48.208 +218066,285.43,50.106 +218067,287.73,51.919 +218068,289.8,53.657 +218069,281.62,48.139 +218070,284.16,50.065 +218071,286.42,51.903 +218072,288.46,53.665 +218073,280.37,48.073 +218074,282.88,50.024 +218075,285.12,51.887 +218076,287.13,53.672 +218077,279.13,48.007 +218078,281.61,49.983 +218079,283.81,51.87 +218080,285.79,53.677 +218081,277.89,47.943 +218082,280.34,49.943 +218083,282.51,51.852 +218084,284.45,53.681 +218085,276.65,47.881 +218086,279.07,49.904 +218087,281.2,51.834 +218088,283.11,53.684 +218089,275.42,47.82 +218090,277.79,49.865 +218091,279.89,51.816 +218092,281.77,53.686 +218093,274.19,47.761 +218094,276.52,49.826 +218095,278.59,51.797 +218096,280.43,53.686 +218097,272.95,47.703 +218098,275.25,49.788 +218099,277.28,51.778 +218100,279.09,53.684 +218101,271.72,47.647 +218102,273.98,49.751 +218103,275.97,51.758 +218104,277.75,53.682 +218105,270.5,47.593 +218106,272.71,49.714 +218107,274.66,51.738 +218108,276.4,53.677 +218109,269.27,47.54 +218110,271.45,49.678 +218111,273.35,51.717 +218112,275.05,53.672 +218113,268.05,47.489 +218114,270.18,49.642 +218115,272.05,51.696 +218116,273.71,53.665 +218117,266.83,47.44 +218118,268.91,49.607 +218119,270.74,51.674 +218120,272.36,53.656 +218121,265.61,47.392 +218122,267.64,49.572 +218123,269.43,51.652 +218124,271.01,53.646 +218125,264.39,47.346 +218126,266.38,49.538 +218127,268.12,51.629 +218128,269.66,53.634 +218129,263.17,47.302 +218130,265.11,49.504 +218131,266.81,51.606 +218132,268.3,53.621 +218133,261.95,47.26 +218134,263.85,49.471 +218135,265.5,51.582 +218136,266.95,53.606 +218137,260.74,47.219 +218138,262.58,49.439 +218139,264.19,51.558 +218140,265.6,53.59 +218141,259.53,47.18 +218142,261.32,49.407 +218143,262.87,51.533 +218144,264.24,53.572 +218145,258.32,47.143 +218146,260.06,49.376 +218147,261.56,51.508 +218148,262.89,53.553 +218149,257.11,47.107 +218150,258.79,49.345 +218151,260.25,51.482 +218152,261.53,53.532 +218153,255.9,47.074 +218154,257.53,49.315 +218155,258.94,51.456 +218156,260.17,53.509 +218157,254.7,47.042 +218158,256.27,49.285 +218159,257.63,51.429 +218160,258.81,53.485 +218161,253.49,47.012 +218162,255.01,49.256 +218163,256.31,51.401 +218164,257.45,53.459 +218165,252.29,46.984 +218166,253.75,49.228 +218167,255,51.373 +218168,256.09,53.432 +218169,251.09,46.957 +218170,252.49,49.2 +218171,253.69,51.345 +218172,254.73,53.403 +218173,249.88,46.933 +218174,251.23,49.173 +218175,252.37,51.316 +218176,253.37,53.373 +218177,248.68,46.91 +218178,249.97,49.146 +218179,251.06,51.286 +218180,252.01,53.341 +218181,247.49,46.889 +218182,248.71,49.12 +218183,249.75,51.256 +218184,250.64,53.307 +218185,246.29,46.87 +218186,247.45,49.095 +218187,248.43,51.225 +218188,249.28,53.272 +218189,245.09,46.852 +218190,246.19,49.07 +218191,247.12,51.194 +218192,247.92,53.235 +218193,243.89,46.837 +218194,244.93,49.046 +218195,245.8,51.162 +218196,246.55,53.197 +218197,242.7,46.823 +218198,243.67,49.022 +218199,244.49,51.13 +218200,245.19,53.157 +218201,241.5,46.811 +218202,242.41,48.999 +218203,243.18,51.097 +218204,243.82,53.115 +218205,240.31,46.801 +218206,241.16,48.976 +218207,241.86,51.064 +218208,242.45,53.072 +218209,239.12,46.792 +218210,239.9,48.954 +218211,240.55,51.03 +218212,241.09,53.027 +218213,237.92,46.785 +218214,238.64,48.933 +218215,239.23,50.995 +218216,239.72,52.981 +218217,236.73,46.78 +218218,237.38,48.912 +218219,237.92,50.96 +218220,238.35,52.933 +218221,235.54,46.777 +218222,236.13,48.892 +218223,236.6,50.925 +218224,236.98,52.884 +218225,234.35,46.775 +218226,234.87,48.872 +218227,235.29,50.889 +218228,235.61,52.833 +218229,233.16,46.775 +218230,233.61,48.853 +218231,233.97,50.852 +218232,234.25,52.78 +218233,231.96,46.777 +218234,232.36,48.835 +218235,232.66,50.815 +218236,232.88,52.726 +218237,230.77,46.781 +218238,231.1,48.817 +218239,231.34,50.778 +218240,231.51,52.671 +218241,229.58,46.786 +218242,229.85,48.799 +218243,230.03,50.74 +218244,230.14,52.614 +218245,228.39,46.792 +218246,228.59,48.783 +218247,228.71,50.701 +218248,228.77,52.555 +218249,227.2,46.801 +218250,227.33,48.766 +218251,227.4,50.662 +218252,227.4,52.495 +218253,226.01,46.811 +218254,226.08,48.75 +218255,226.08,50.623 +218256,226.03,52.433 +218257,224.82,46.822 +218258,224.82,48.735 +218259,224.77,50.583 +218260,224.66,52.37 +218261,223.63,46.835 +218262,223.57,48.721 +218263,223.45,50.542 +218264,223.29,52.306 +218265,222.44,46.85 +218266,222.31,48.706 +218267,222.14,50.502 +218268,221.92,52.24 +218269,221.25,46.866 +218270,221.06,48.693 +218271,220.82,50.46 +218272,220.55,52.172 +218273,220.05,46.883 +218274,219.8,48.679 +218275,219.51,50.418 +218276,219.19,52.104 +218277,218.86,46.902 +218278,218.55,48.667 +218279,218.2,50.376 +218280,217.82,52.033 +218281,217.67,46.923 +218282,217.29,48.655 +218283,216.88,50.333 +218284,216.45,51.962 +218285,216.48,46.945 +218286,216.04,48.643 +218287,215.57,50.29 +218288,215.08,51.889 +218289,215.28,46.968 +218290,214.78,48.632 +218291,214.25,50.246 +218292,213.71,51.815 +218293,214.09,46.992 +218294,213.52,48.621 +218295,212.94,50.202 +218296,212.34,51.739 +218297,212.89,47.018 +218298,212.27,48.611 +218299,211.63,50.158 +218300,210.98,51.662 +218301,211.7,47.045 +218302,211.01,48.601 +218303,210.32,50.113 +218304,209.61,51.584 +218305,210.5,47.074 +218306,209.76,48.591 +218307,209,50.068 +218308,208.24,51.504 +218309,209.3,47.104 +218310,208.5,48.582 +218311,207.69,50.022 +218312,206.88,51.424 +218313,208.11,47.134 +218314,207.24,48.574 +218315,206.38,49.976 +218316,205.51,51.342 +218317,206.91,47.166 +218318,205.99,48.566 +218319,205.07,49.929 +218320,204.15,51.258 +218321,205.71,47.2 +218322,204.73,48.558 +218323,203.75,49.883 +218324,202.78,51.174 +218325,204.51,47.234 +218326,203.47,48.55 +218327,202.44,49.835 +218328,201.42,51.089 +218329,203.3,47.269 +218330,202.22,48.544 +218331,201.13,49.788 +218332,200.05,51.002 +218333,202.1,47.305 +218334,200.96,48.537 +218335,199.82,49.74 +218336,198.69,50.914 +218337,200.9,47.343 +218338,199.7,48.531 +218339,198.51,49.692 +218340,197.33,50.826 +218341,199.69,47.381 +218342,198.44,48.525 +218343,197.2,49.643 +218344,195.97,50.736 +218345,198.48,47.42 +218346,197.18,48.519 +218347,195.89,49.594 +218348,194.61,50.645 +218349,197.28,47.46 +218350,195.93,48.514 +218351,194.58,49.545 +218352,193.25,50.553 +218353,196.07,47.501 +218354,194.67,48.509 +218355,193.28,49.496 +218356,191.89,50.461 +218357,194.86,47.543 +218358,193.41,48.505 +218359,191.97,49.446 +218360,190.53,50.367 +218361,193.64,47.585 +218362,192.15,48.5 +218363,190.66,49.396 +218364,189.18,50.272 +218365,192.43,47.629 +218366,190.89,48.496 +218367,189.35,49.346 +218368,187.82,50.177 +218369,191.22,47.673 +218370,189.63,48.493 +218371,188.05,49.296 +218372,186.47,50.081 +218373,190,47.717 +218374,188.37,48.489 +218375,186.74,49.245 +218376,185.11,49.984 +218377,188.78,47.763 +218378,187.11,48.486 +218379,185.43,49.194 +218380,183.76,49.886 +218381,187.56,47.808 +218382,185.85,48.483 +218383,184.13,49.143 +218384,182.41,49.787 +218385,186.34,47.855 +218386,184.58,48.48 +218387,182.82,49.092 +218388,181.06,49.688 +218389,185.12,47.902 +218390,183.32,48.478 +218391,181.52,49.04 +218392,179.71,49.588 +218393,183.89,47.949 +218394,182.06,48.475 +218395,180.21,48.989 +218396,178.36,49.488 +218397,182.67,47.997 +218398,180.8,48.473 +218399,178.91,48.937 +218400,177.01,49.386 +218401,181.44,48.045 +218402,179.53,48.471 +218403,177.61,48.885 +218404,175.67,49.285 +218405,180.21,48.094 +218406,178.27,48.469 +218407,176.31,48.833 +218408,174.33,49.183 +218409,178.98,48.143 +218410,177,48.468 +218411,175.01,48.781 +218412,172.98,49.08 +218413,177.75,48.192 +218414,175.74,48.466 +218415,173.7,48.728 +218416,171.64,48.977 +218417,176.51,48.241 +218418,174.47,48.465 +218419,172.4,48.676 +218420,170.3,48.873 +218421,175.28,48.291 +218422,173.21,48.463 +218423,171.1,48.623 +218424,168.96,48.769 +218425,174.04,48.341 +218426,171.94,48.462 +218427,169.81,48.571 +218428,167.63,48.665 +218429,172.8,48.391 +218430,170.67,48.461 +218431,168.51,48.518 +218432,166.29,48.56 +218433,171.56,48.44 +218434,169.41,48.46 +218435,167.21,48.466 +218436,164.96,48.456 +218437,170.31,48.491 +218438,168.14,48.459 +218439,165.91,48.413 +218440,163.63,48.351 +218441,169.07,48.541 +218442,166.87,48.458 +218443,164.62,48.36 +218444,162.3,48.245 +218445,167.82,48.59 +218446,165.6,48.457 +218447,163.32,48.308 +218448,160.97,48.14 +218449,166.57,48.64 +218450,164.33,48.456 +218451,162.02,48.255 +218452,159.64,48.035 +218453,165.32,48.69 +218454,163.06,48.455 +218455,160.73,48.202 +218456,158.32,47.929 +218457,164.07,48.74 +218458,161.79,48.454 +218459,159.44,48.15 +218460,156.99,47.824 +218461,162.82,48.789 +218462,160.52,48.453 +218463,158.14,48.097 +218464,155.67,47.718 +218465,161.56,48.839 +218466,159.25,48.453 +218467,156.85,48.045 +218468,154.35,47.613 +218469,160.3,48.887 +218470,157.98,48.451 +218471,155.56,47.992 +218472,153.04,47.508 +218473,159.04,48.936 +218474,156.7,48.45 +218475,154.27,47.94 +218476,151.72,47.402 +218477,157.78,48.984 +218478,155.43,48.449 +218479,152.98,47.888 +218480,150.41,47.298 +218481,156.52,49.032 +218482,154.16,48.448 +218483,151.69,47.836 +218484,149.1,47.193 +218485,155.25,49.08 +218486,152.88,48.447 +218487,150.4,47.784 +218488,147.79,47.089 +218489,153.98,49.127 +218490,151.61,48.445 +218491,149.11,47.732 +218492,146.48,46.985 +218493,152.71,49.174 +218494,150.33,48.444 +218495,147.83,47.681 +218496,145.17,46.881 +218497,151.44,49.22 +218498,149.06,48.442 +218499,146.54,47.629 +218500,143.87,46.778 +218501,150.17,49.265 +218502,147.78,48.44 +218503,145.25,47.578 +218504,142.57,46.675 +218505,148.89,49.31 +218506,146.5,48.438 +218507,143.97,47.527 +218508,141.27,46.573 +218509,147.62,49.354 +218510,145.22,48.436 +218511,142.68,47.477 +218512,139.97,46.471 +218513,146.34,49.398 +218514,143.95,48.434 +218515,141.4,47.426 +218516,138.68,46.37 +218517,145.06,49.441 +218518,142.67,48.431 +218519,140.12,47.376 +218520,137.38,46.269 +218521,143.77,49.483 +218522,141.39,48.428 +218523,138.84,47.326 +218524,136.09,46.17 +218525,142.49,49.525 +218526,140.11,48.425 +218527,137.56,47.276 +218528,134.8,46.071 +218529,141.2,49.565 +218530,138.83,48.422 +218531,136.28,47.227 +218532,133.52,45.972 +218533,139.92,49.605 +218534,137.54,48.418 +218535,135,47.177 +218536,132.23,45.875 +218537,138.63,49.644 +218538,136.26,48.415 +218539,133.72,47.129 +218540,130.95,45.778 +218541,137.33,49.682 +218542,134.98,48.411 +218543,132.44,47.08 +218544,129.67,45.682 +218545,136.04,49.719 +218546,133.7,48.406 +218547,131.16,47.032 +218548,128.4,45.588 +218549,134.75,49.756 +218550,132.41,48.402 +218551,129.89,46.984 +218552,127.12,45.494 +218553,133.45,49.791 +218554,131.13,48.397 +218555,128.61,46.937 +218556,125.85,45.401 +218557,132.15,49.825 +218558,129.84,48.392 +218559,127.34,46.89 +218560,124.58,45.309 +218561,130.85,49.858 +218562,128.56,48.386 +218563,126.06,46.843 +218564,123.31,45.218 +218565,129.55,49.89 +218566,127.27,48.38 +218567,124.79,46.797 +218568,122.04,45.129 +218569,128.25,49.921 +218570,125.99,48.374 +218571,123.52,46.751 +218572,120.78,45.041 +218573,126.94,49.951 +218574,124.7,48.368 +218575,122.24,46.706 +218576,119.52,44.953 +218577,125.63,49.98 +218578,123.41,48.361 +218579,120.97,46.661 +218580,118.26,44.868 +218581,124.33,50.008 +218582,122.12,48.353 +218583,119.7,46.616 +218584,117,44.783 +218585,123.02,50.034 +218586,120.84,48.346 +218587,118.43,46.572 +218588,115.75,44.7 +218589,121.7,50.059 +218590,119.55,48.338 +218591,117.17,46.529 +218592,114.5,44.618 +218593,120.39,50.083 +218594,118.26,48.329 +218595,115.9,46.486 +218596,113.25,44.537 +218597,119.08,50.106 +218598,116.97,48.32 +218599,114.63,46.443 +218600,112,44.458 +218601,117.76,50.127 +218602,115.68,48.311 +218603,113.36,46.401 +218604,110.76,44.381 +218605,116.44,50.147 +218606,114.39,48.301 +218607,112.1,46.359 +218608,109.52,44.305 +218609,115.12,50.166 +218610,113.09,48.291 +218611,110.83,46.318 +218612,108.28,44.23 +218613,113.8,50.183 +218614,111.8,48.28 +218615,109.57,46.278 +218616,107.04,44.157 +218617,112.48,50.199 +218618,110.51,48.269 +218619,108.31,46.238 +218620,105.8,44.086 +218621,111.16,50.213 +218622,109.22,48.258 +218623,107.04,46.198 +218624,104.57,44.017 +218625,109.83,50.226 +218626,107.92,48.246 +218627,105.78,46.159 +218628,103.34,43.949 +218629,108.51,50.238 +218630,106.63,48.233 +218631,104.52,46.121 +218632,102.11,43.882 +218633,107.18,50.248 +218634,105.34,48.22 +218635,103.26,46.083 +218636,100.88,43.818 +218637,105.85,50.257 +218638,104.04,48.207 +218639,102,46.046 +218640,99.656,43.755 +218641,104.52,50.264 +218642,102.75,48.193 +218643,100.74,46.01 +218644,98.434,43.694 +218645,103.19,50.27 +218646,101.45,48.179 +218647,99.481,45.974 +218648,97.213,43.635 +218649,101.86,50.274 +218650,100.15,48.164 +218651,98.223,45.939 +218652,95.994,43.577 +218653,100.53,50.277 +218654,98.858,48.148 +218655,96.966,45.904 +218656,94.777,43.522 +218657,99.191,50.278 +218658,97.561,48.132 +218659,95.709,45.87 +218660,93.563,43.468 +218661,97.855,50.277 +218662,96.264,48.116 +218663,94.453,45.836 +218664,92.35,43.416 +218665,96.518,50.275 +218666,94.967,48.099 +218667,93.197,45.803 +218668,91.139,43.366 +218669,95.181,50.271 +218670,93.67,48.081 +218671,91.942,45.771 +218672,89.93,43.318 +218673,93.842,50.266 +218674,92.372,48.063 +218675,90.688,45.74 +218676,88.723,43.272 +218677,92.502,50.259 +218678,91.073,48.045 +218679,89.434,45.709 +218680,87.517,43.228 +218681,91.161,50.25 +218682,89.775,48.026 +218683,88.181,45.679 +218684,86.313,43.186 +218685,89.82,50.24 +218686,88.476,48.006 +218687,86.928,45.649 +218688,85.111,43.146 +218689,88.477,50.228 +218690,87.177,47.986 +218691,85.676,45.62 +218692,83.91,43.108 +218693,87.134,50.215 +218694,85.877,47.965 +218695,84.424,45.592 +218696,82.711,43.072 +218697,85.79,50.2 +218698,84.577,47.944 +218699,83.173,45.564 +218700,81.514,43.038 +218701,84.445,50.183 +218702,83.277,47.922 +218703,81.922,45.537 +218704,80.318,43.006 +218705,83.099,50.164 +218706,81.977,47.899 +218707,80.672,45.511 +218708,79.123,42.976 +218709,81.752,50.144 +218710,80.677,47.876 +218711,79.422,45.485 +218712,77.93,42.948 +218713,80.405,50.122 +218714,79.376,47.853 +218715,78.173,45.46 +218716,76.738,42.922 +218717,79.057,50.098 +218718,78.075,47.829 +218719,76.924,45.436 +218720,75.547,42.899 +218721,77.708,50.073 +218722,76.774,47.804 +218723,75.675,45.413 +218724,74.358,42.877 +218725,76.359,50.046 +218726,75.473,47.779 +218727,74.427,45.39 +218728,73.169,42.857 +218729,75.009,50.018 +218730,74.172,47.753 +218731,73.179,45.368 +218732,71.982,42.84 +218733,73.659,49.987 +218734,72.87,47.727 +218735,71.932,45.346 +218736,70.795,42.824 +218737,72.308,49.955 +218738,71.569,47.7 +218739,70.684,45.325 +218740,69.61,42.811 +218741,70.957,49.921 +218742,70.267,47.672 +218743,69.438,45.305 +218744,68.425,42.799 +218745,69.605,49.886 +218746,68.965,47.644 +218747,68.191,45.286 +218748,67.242,42.79 +218749,68.253,49.849 +218750,67.663,47.616 +218751,66.945,45.267 +218752,66.058,42.782 +218753,66.901,49.81 +218754,66.361,47.586 +218755,65.699,45.249 +218756,64.876,42.777 +218757,65.548,49.769 +218758,65.059,47.557 +218759,64.453,45.231 +218760,63.694,42.774 +218761,64.195,49.727 +218762,63.757,47.527 +218763,63.208,45.214 +218764,62.513,42.772 +218765,62.841,49.683 +218766,62.455,47.496 +218767,61.963,45.198 +218768,61.332,42.773 +218769,61.487,49.638 +218770,61.153,47.464 +218771,60.718,45.183 +218772,60.152,42.775 +218773,60.134,49.59 +218774,59.851,47.432 +218775,59.473,45.168 +218776,58.972,42.78 +218777,58.78,49.542 +218778,58.548,47.4 +218779,58.228,45.154 +218780,57.792,42.786 +218781,57.425,49.491 +218782,57.246,47.367 +218783,56.984,45.14 +218784,56.613,42.795 +218785,56.071,49.439 +218786,55.944,47.334 +218787,55.739,45.127 +218788,55.434,42.805 +218789,54.717,49.385 +218790,54.642,47.3 +218791,54.495,45.115 +218792,54.254,42.817 +218793,53.362,49.33 +218794,53.34,47.265 +218795,53.251,45.104 +218796,53.075,42.832 +218797,52.008,49.273 +218798,52.038,47.23 +218799,52.007,45.093 +218800,51.896,42.848 +218801,50.654,49.214 +218802,50.736,47.194 +218803,50.763,45.082 +218804,50.717,42.865 +218805,49.3,49.154 +218806,49.435,47.158 +218807,49.519,45.073 +218808,49.537,42.885 +218809,47.945,49.092 +218810,48.133,47.122 +218811,48.275,45.063 +218812,48.357,42.906 +218813,46.592,49.029 +218814,46.832,47.084 +218815,47.031,45.055 +218816,47.177,42.929 +218817,45.238,48.964 +218818,45.53,47.047 +218819,45.787,45.047 +218820,45.997,42.954 +218821,43.884,48.898 +218822,44.229,47.009 +218823,44.543,45.04 +218824,44.816,42.981 +218825,42.531,48.83 +218826,42.928,46.97 +218827,43.299,45.033 +218828,43.635,43.009 +218829,41.178,48.76 +218830,41.628,46.931 +218831,42.055,45.027 +218832,42.453,43.039 +218833,39.825,48.69 +218834,40.327,46.892 +218835,40.81,45.021 +218836,41.271,43.07 +218837,38.473,48.617 +218838,39.027,46.852 +218839,39.566,45.016 +218840,40.088,43.103 +218841,37.121,48.544 +218842,37.727,46.811 +218843,38.322,45.012 +218844,38.904,43.137 +218845,35.77,48.468 +218846,36.427,46.771 +218847,37.077,45.008 +218848,37.72,43.173 +218849,34.419,48.392 +218850,35.127,46.729 +218851,35.833,45.004 +218852,36.534,43.211 +218853,33.068,48.314 +218854,33.828,46.688 +218855,34.588,45.001 +218856,35.348,43.25 +218857,31.718,48.235 +218858,32.529,46.646 +218859,33.343,44.999 +218860,34.161,43.29 +218861,30.369,48.154 +218862,31.23,46.603 +218863,32.098,44.997 +218864,32.973,43.332 +218865,29.02,48.072 +218866,29.932,46.56 +218867,30.853,44.996 +218868,31.784,43.375 +218869,27.672,47.989 +218870,28.634,46.517 +218871,29.607,44.995 +218872,30.594,43.419 +218873,26.325,47.905 +218874,27.336,46.473 +218875,28.361,44.994 +218876,29.402,43.465 +218877,24.978,47.819 +218878,26.039,46.429 +218879,27.115,44.994 +218880,28.21,43.512 +218881,23.632,47.732 +218882,24.742,46.385 +218883,25.869,44.995 +218884,27.016,43.56 +218885,22.287,47.644 +218886,23.445,46.34 +218887,24.622,44.996 +218888,25.821,43.609 +218889,20.943,47.555 +218890,22.149,46.295 +218891,23.375,44.997 +218892,24.625,43.659 +218893,19.6,47.465 +218894,20.853,46.25 +218895,22.128,44.999 +218896,23.427,43.71 +218897,18.257,47.374 +218898,19.558,46.204 +218899,20.881,45.001 +218900,22.228,43.762 +218901,16.916,47.281 +218902,18.263,46.158 +218903,19.633,45.003 +218904,21.028,43.816 +218905,15.575,47.188 +218906,16.968,46.112 +218907,18.385,45.006 +218908,19.826,43.87 +218909,14.236,47.093 +218910,15.674,46.065 +218911,17.136,45.009 +218912,18.623,43.925 +218913,12.897,46.998 +218914,14.381,46.019 +218915,15.887,45.013 +218916,17.418,43.981 +218917,11.56,46.902 +218918,13.088,45.972 +218919,14.638,45.017 +218920,16.212,44.038 +218921,10.223,46.805 +218922,11.795,45.924 +218923,13.388,45.021 +218924,15.004,44.095 +218925,8.8881,46.707 +218926,10.503,45.877 +218927,12.138,45.026 +218928,13.794,44.153 +218929,7.5542,46.608 +218930,9.2118,45.829 +218931,10.888,45.03 +218932,12.583,44.212 +218933,6.2214,46.508 +218934,7.9209,45.781 +218935,9.6367,45.035 +218936,11.37,44.272 +218937,4.8899,46.408 +218938,6.6305,45.733 +218939,8.3853,45.041 +218940,10.156,44.332 +218941,3.5597,46.306 +218942,5.3406,45.685 +218943,7.1335,45.046 +218944,8.9395,44.392 +218945,2.2309,46.205 +218946,4.0513,45.636 +218947,5.8812,45.052 +218948,7.7215,44.454 +218949,0.90334,46.102 +218950,2.7626,45.588 +218951,4.6284,45.058 +218952,6.5017,44.515 +218953,359.58,45.999 +218954,1.4745,45.539 +218955,3.3752,45.065 +218956,5.2802,44.577 +218957,358.25,45.896 +218958,0.18701,45.49 +218959,2.1215,45.071 +218960,4.0569,44.64 +218961,356.93,45.791 +218962,358.9,45.441 +218963,0.86732,45.078 +218964,2.8318,44.702 +218965,355.61,45.687 +218966,357.61,45.392 +218967,359.61,45.085 +218968,1.6048,44.766 +218969,354.29,45.582 +218970,356.33,45.343 +218971,358.36,45.092 +218972,0.37607,44.829 +218973,352.97,45.476 +218974,355.04,45.294 +218975,357.1,45.099 +218976,359.15,44.892 +218977,351.65,45.37 +218978,353.76,45.245 +218979,355.85,45.106 +218980,357.91,44.956 +218981,350.34,45.264 +218982,352.48,45.195 +218983,354.59,45.114 +218984,356.68,45.02 +218985,349.02,45.158 +218986,351.19,45.146 +218987,353.33,45.121 +218988,355.44,45.084 +218989,347.71,45.051 +218990,349.91,45.097 +218991,352.07,45.129 +218992,354.2,45.147 +218993,346.4,44.944 +218994,348.63,45.048 +218995,350.82,45.136 +218996,352.96,45.211 +218997,345.09,44.837 +218998,347.35,44.998 +218999,349.56,45.144 +219000,351.72,45.275 +219001,343.78,44.73 +219002,346.07,44.949 +219003,348.3,45.152 +219004,350.48,45.339 +219005,342.48,44.623 +219006,344.79,44.9 +219007,347.04,45.159 +219008,349.23,45.402 +219009,341.18,44.516 +219010,343.51,44.851 +219011,345.78,45.167 +219012,347.98,45.466 +219013,339.87,44.409 +219014,342.23,44.802 +219015,344.51,45.175 +219016,346.74,45.529 +219017,338.57,44.302 +219018,340.95,44.753 +219019,343.25,45.183 +219020,345.48,45.592 +219021,337.28,44.195 +219022,339.68,44.704 +219023,341.99,45.19 +219024,344.23,45.654 +219025,335.98,44.088 +219026,338.4,44.656 +219027,340.73,45.198 +219028,342.98,45.716 +219029,334.69,43.981 +219030,337.12,44.607 +219031,339.46,45.206 +219032,341.72,45.778 +219033,333.4,43.875 +219034,335.85,44.559 +219035,338.2,45.213 +219036,340.46,45.84 +219037,332.11,43.769 +219038,334.58,44.511 +219039,336.94,45.221 +219040,339.2,45.901 +219041,330.82,43.663 +219042,333.3,44.463 +219043,335.67,45.228 +219044,337.94,45.961 +219045,329.53,43.558 +219046,332.03,44.415 +219047,334.4,45.235 +219048,336.67,46.021 +219049,328.25,43.453 +219050,330.76,44.368 +219051,333.14,45.242 +219052,335.4,46.08 +219053,326.97,43.349 +219054,329.49,44.321 +219055,331.87,45.249 +219056,334.14,46.139 +219057,325.69,43.245 +219058,328.22,44.274 +219059,330.6,45.256 +219060,332.87,46.197 +219061,324.41,43.142 +219062,326.95,44.227 +219063,329.34,45.263 +219064,331.59,46.254 +219065,323.14,43.04 +219066,325.68,44.18 +219067,328.07,45.269 +219068,330.32,46.311 +219069,321.86,42.938 +219070,324.41,44.134 +219071,326.8,45.275 +219072,329.04,46.367 +219073,320.59,42.837 +219074,323.15,44.088 +219075,325.53,45.281 +219076,327.77,46.422 +219077,319.32,42.737 +219078,321.88,44.043 +219079,324.26,45.287 +219080,326.49,46.476 +219081,318.06,42.637 +219082,320.61,43.998 +219083,322.99,45.293 +219084,325.21,46.529 +219085,316.79,42.539 +219086,319.35,43.953 +219087,321.72,45.298 +219088,323.92,46.582 +219089,315.53,42.441 +219090,318.09,43.908 +219091,320.44,45.303 +219092,322.64,46.633 +219093,314.27,42.344 +219094,316.82,43.864 +219095,319.17,45.308 +219096,321.35,46.684 +219097,313.01,42.249 +219098,315.56,43.821 +219099,317.9,45.312 +219100,320.06,46.733 +219101,311.76,42.154 +219102,314.3,43.777 +219103,316.62,45.317 +219104,318.77,46.782 +219105,310.5,42.061 +219106,313.04,43.735 +219107,315.35,45.32 +219108,317.48,46.829 +219109,309.25,41.968 +219110,311.78,43.692 +219111,314.07,45.324 +219112,316.19,46.876 +219113,308.01,41.877 +219114,310.52,43.65 +219115,312.8,45.327 +219116,314.9,46.921 +219117,306.76,41.787 +219118,309.26,43.609 +219119,311.52,45.33 +219120,313.6,46.965 +219121,305.52,41.699 +219122,308,43.568 +219123,310.25,45.333 +219124,312.3,47.008 +219125,304.27,41.612 +219126,306.74,43.527 +219127,308.97,45.335 +219128,311,47.05 +219129,303.03,41.526 +219130,305.49,43.487 +219131,307.69,45.337 +219132,309.7,47.09 +219133,301.8,41.441 +219134,304.23,43.448 +219135,306.42,45.338 +219136,308.4,47.129 +219137,300.56,41.358 +219138,302.98,43.409 +219139,305.14,45.339 +219140,307.1,47.167 +219141,299.33,41.277 +219142,301.72,43.371 +219143,303.86,45.34 +219144,305.79,47.204 +219145,298.1,41.197 +219146,300.47,43.333 +219147,302.58,45.34 +219148,304.48,47.239 +219149,296.87,41.119 +219150,299.22,43.296 +219151,301.3,45.34 +219152,303.18,47.273 +219153,295.64,41.042 +219154,297.97,43.259 +219155,300.02,45.339 +219156,301.87,47.305 +219157,294.42,40.967 +219158,296.71,43.223 +219159,298.74,45.338 +219160,300.56,47.336 +219161,293.2,40.894 +219162,295.46,43.187 +219163,297.46,45.337 +219164,299.24,47.366 +219165,291.98,40.823 +219166,294.21,43.152 +219167,296.17,45.335 +219168,297.93,47.394 +219169,290.76,40.753 +219170,292.96,43.118 +219171,294.89,45.333 +219172,296.62,47.421 +219173,289.54,40.685 +219174,291.71,43.085 +219175,293.61,45.33 +219176,295.3,47.446 +219177,288.33,40.619 +219178,290.47,43.052 +219179,292.33,45.326 +219180,293.98,47.47 +219181,287.12,40.555 +219182,289.22,43.019 +219183,291.04,45.322 +219184,292.66,47.492 +219185,285.91,40.492 +219186,287.97,42.987 +219187,289.76,45.318 +219188,291.34,47.512 +219189,284.7,40.432 +219190,286.73,42.956 +219191,288.48,45.313 +219192,290.02,47.531 +219193,283.5,40.374 +219194,285.48,42.926 +219195,287.19,45.308 +219196,288.7,47.549 +219197,282.29,40.318 +219198,284.23,42.896 +219199,285.91,45.302 +219200,287.38,47.564 +219201,281.09,40.263 +219202,282.99,42.867 +219203,284.62,45.296 +219204,286.06,47.579 +219205,279.89,40.211 +219206,281.75,42.839 +219207,283.34,45.289 +219208,284.73,47.591 +219209,278.69,40.161 +219210,280.5,42.811 +219211,282.05,45.281 +219212,283.41,47.602 +219213,277.49,40.113 +219214,279.26,42.785 +219215,280.77,45.273 +219216,282.08,47.611 +219217,276.3,40.067 +219218,278.02,42.758 +219219,279.48,45.265 +219220,280.75,47.619 +219221,275.11,40.024 +219222,276.78,42.733 +219223,278.19,45.255 +219224,279.42,47.625 +219225,273.91,39.982 +219226,275.53,42.708 +219227,276.91,45.246 +219228,278.09,47.629 +219229,272.72,39.943 +219230,274.29,42.684 +219231,275.62,45.236 +219232,276.76,47.631 +219233,271.54,39.906 +219234,273.05,42.661 +219235,274.33,45.225 +219236,275.43,47.632 +219237,270.35,39.871 +219238,271.81,42.639 +219239,273.04,45.214 +219240,274.1,47.631 +219241,269.16,39.838 +219242,270.57,42.617 +219243,271.76,45.202 +219244,272.77,47.628 +219245,267.98,39.808 +219246,269.33,42.596 +219247,270.47,45.189 +219248,271.44,47.624 +219249,266.79,39.78 +219250,268.1,42.576 +219251,269.18,45.176 +219252,270.1,47.617 +219253,265.61,39.754 +219254,266.86,42.556 +219255,267.89,45.163 +219256,268.77,47.609 +219257,264.43,39.73 +219258,265.62,42.537 +219259,266.6,45.148 +219260,267.43,47.6 +219261,263.25,39.709 +219262,264.38,42.519 +219263,265.31,45.134 +219264,266.1,47.588 +219265,262.07,39.69 +219266,263.14,42.502 +219267,264.02,45.118 +219268,264.76,47.575 +219269,260.89,39.673 +219270,261.91,42.486 +219271,262.73,45.103 +219272,263.43,47.56 +219273,259.72,39.659 +219274,260.67,42.47 +219275,261.45,45.086 +219276,262.09,47.543 +219277,258.54,39.647 +219278,259.43,42.455 +219279,260.16,45.069 +219280,260.75,47.524 +219281,257.36,39.637 +219282,258.2,42.441 +219283,258.87,45.051 +219284,259.42,47.504 +219285,256.19,39.63 +219286,256.96,42.427 +219287,257.58,45.033 +219288,258.08,47.481 +219289,255.02,39.625 +219290,255.73,42.415 +219291,256.29,45.014 +219292,256.74,47.457 +219293,253.84,39.622 +219294,254.49,42.403 +219295,255,44.995 +219296,255.4,47.431 +219297,252.67,39.621 +219298,253.26,42.392 +219299,253.71,44.975 +219300,254.06,47.404 +219301,251.5,39.623 +219302,252.02,42.382 +219303,252.42,44.955 +219304,252.72,47.375 +219305,250.32,39.627 +219306,250.79,42.372 +219307,251.13,44.933 +219308,251.39,47.343 +219309,249.15,39.633 +219310,249.55,42.363 +219311,249.84,44.912 +219312,250.05,47.311 +219313,247.98,39.641 +219314,248.32,42.355 +219315,248.55,44.89 +219316,248.71,47.276 +219317,246.81,39.652 +219318,247.08,42.348 +219319,247.26,44.867 +219320,247.37,47.239 +219321,245.64,39.665 +219322,245.85,42.341 +219323,245.97,44.843 +219324,246.03,47.201 +219325,244.47,39.68 +219326,244.61,42.335 +219327,244.68,44.82 +219328,244.69,47.161 +219329,243.29,39.697 +219330,243.38,42.33 +219331,243.39,44.795 +219332,243.35,47.12 +219333,242.12,39.716 +219334,242.15,42.326 +219335,242.1,44.77 +219336,242.01,47.076 +219337,240.95,39.738 +219338,240.91,42.322 +219339,240.81,44.745 +219340,240.67,47.031 +219341,239.78,39.762 +219342,239.68,42.319 +219343,239.52,44.718 +219344,239.34,46.985 +219345,238.61,39.787 +219346,238.44,42.317 +219347,238.24,44.692 +219348,238,46.936 +219349,237.43,39.815 +219350,237.21,42.315 +219351,236.95,44.665 +219352,236.66,46.886 +219353,236.26,39.845 +219354,235.97,42.315 +219355,235.66,44.637 +219356,235.32,46.834 +219357,235.09,39.876 +219358,234.74,42.315 +219359,234.37,44.609 +219360,233.98,46.781 +219361,233.91,39.91 +219362,233.5,42.315 +219363,233.08,44.58 +219364,232.65,46.726 +219365,232.74,39.946 +219366,232.27,42.316 +219367,231.79,44.551 +219368,231.31,46.669 +219369,231.56,39.983 +219370,231.04,42.318 +219371,230.51,44.521 +219372,229.97,46.611 +219373,230.39,40.023 +219374,229.8,42.321 +219375,229.22,44.491 +219376,228.64,46.551 +219377,229.21,40.064 +219378,228.57,42.324 +219379,227.93,44.46 +219380,227.3,46.489 +219381,228.03,40.107 +219382,227.33,42.328 +219383,226.64,44.429 +219384,225.97,46.426 +219385,226.85,40.152 +219386,226.1,42.332 +219387,225.36,44.397 +219388,224.63,46.361 +219389,225.67,40.199 +219390,224.86,42.338 +219391,224.07,44.365 +219392,223.3,46.295 +219393,224.49,40.247 +219394,223.62,42.343 +219395,222.78,44.332 +219396,221.96,46.228 +219397,223.31,40.297 +219398,222.39,42.35 +219399,221.5,44.299 +219400,220.63,46.159 +219401,222.12,40.349 +219402,221.15,42.357 +219403,220.21,44.266 +219404,219.3,46.088 +219405,220.94,40.402 +219406,219.91,42.364 +219407,218.93,44.232 +219408,217.97,46.016 +219409,219.75,40.457 +219410,218.68,42.372 +219411,217.64,44.198 +219412,216.64,45.943 +219413,218.57,40.513 +219414,217.44,42.381 +219415,216.36,44.163 +219416,215.31,45.868 +219417,217.38,40.571 +219418,216.2,42.39 +219419,215.07,44.128 +219420,213.98,45.792 +219421,216.19,40.63 +219422,214.97,42.4 +219423,213.79,44.092 +219424,212.65,45.715 +219425,215,40.69 +219426,213.73,42.41 +219427,212.51,44.057 +219428,211.33,45.636 +219429,213.81,40.752 +219430,212.49,42.421 +219431,211.22,44.02 +219432,210,45.556 +219433,212.61,40.815 +219434,211.25,42.432 +219435,209.94,43.984 +219436,208.68,45.474 +219437,211.42,40.879 +219438,210.01,42.444 +219439,208.66,43.947 +219440,207.35,45.392 +219441,210.22,40.945 +219442,208.77,42.457 +219443,207.38,43.909 +219444,206.03,45.308 +219445,209.02,41.012 +219446,207.53,42.469 +219447,206.09,43.872 +219448,204.71,45.223 +219449,207.82,41.079 +219450,206.29,42.482 +219451,204.81,43.834 +219452,203.39,45.137 +219453,206.62,41.148 +219454,205.05,42.496 +219455,203.53,43.796 +219456,202.07,45.05 +219457,205.42,41.218 +219458,203.81,42.51 +219459,202.25,43.757 +219460,200.75,44.962 +219461,204.21,41.289 +219462,202.57,42.525 +219463,200.97,43.718 +219464,199.43,44.873 +219465,203.01,41.361 +219466,201.32,42.539 +219467,199.7,43.679 +219468,198.11,44.783 +219469,201.8,41.433 +219470,200.08,42.555 +219471,198.42,43.64 +219472,196.8,44.691 +219473,200.59,41.507 +219474,198.84,42.57 +219475,197.14,43.601 +219476,195.49,44.599 +219477,199.37,41.581 +219478,197.59,42.586 +219479,195.86,43.561 +219480,194.17,44.506 +219481,198.16,41.656 +219482,196.35,42.602 +219483,194.59,43.521 +219484,192.86,44.412 +219485,196.94,41.731 +219486,195.11,42.619 +219487,193.31,43.481 +219488,191.55,44.318 +219489,195.73,41.808 +219490,193.86,42.636 +219491,192.03,43.441 +219492,190.25,44.222 +219493,194.51,41.884 +219494,192.61,42.653 +219495,190.76,43.4 +219496,188.94,44.126 +219497,193.28,41.962 +219498,191.37,42.67 +219499,189.49,43.36 +219500,187.63,44.029 +219501,192.06,42.04 +219502,190.12,42.688 +219503,188.21,43.319 +219504,186.33,43.931 +219505,190.84,42.118 +219506,188.87,42.706 +219507,186.94,43.278 +219508,185.03,43.833 +219509,189.61,42.196 +219510,187.63,42.724 +219511,185.67,43.237 +219512,183.73,43.734 +219513,188.38,42.275 +219514,186.38,42.743 +219515,184.39,43.196 +219516,182.43,43.635 +219517,187.15,42.355 +219518,185.13,42.761 +219519,183.12,43.155 +219520,181.13,43.535 +219521,185.92,42.434 +219522,183.88,42.78 +219523,181.85,43.114 +219524,179.84,43.434 +219525,184.68,42.514 +219526,182.63,42.799 +219527,180.58,43.072 +219528,178.54,43.334 +219529,183.44,42.594 +219530,181.38,42.818 +219531,179.31,43.031 +219532,177.25,43.232 +219533,182.2,42.674 +219534,180.13,42.837 +219535,178.04,42.99 +219536,175.96,43.131 +219537,180.96,42.754 +219538,178.87,42.857 +219539,176.78,42.949 +219540,174.67,43.029 +219541,179.72,42.834 +219542,177.62,42.876 +219543,175.51,42.907 +219544,173.39,42.927 +219545,178.48,42.914 +219546,176.37,42.896 +219547,174.24,42.866 +219548,172.1,42.825 +219549,177.23,42.994 +219550,175.11,42.915 +219551,172.98,42.825 +219552,170.82,42.722 +219553,175.98,43.074 +219554,173.86,42.935 +219555,171.71,42.784 +219556,169.54,42.619 +219557,174.73,43.154 +219558,172.6,42.955 +219559,170.45,42.743 +219560,168.26,42.517 +219561,173.48,43.233 +219562,171.35,42.975 +219563,169.18,42.702 +219564,166.98,42.414 +219565,172.22,43.312 +219566,170.09,42.994 +219567,167.92,42.661 +219568,165.7,42.312 +219569,170.97,43.391 +219570,168.84,43.014 +219571,166.66,42.62 +219572,164.43,42.209 +219573,169.71,43.47 +219574,167.58,43.034 +219575,165.4,42.58 +219576,163.16,42.107 +219577,168.45,43.548 +219578,166.32,43.054 +219579,164.14,42.539 +219580,161.89,42.004 +219581,167.19,43.626 +219582,165.06,43.073 +219583,162.88,42.499 +219584,160.62,41.902 +219585,165.92,43.703 +219586,163.8,43.093 +219587,161.62,42.459 +219588,159.36,41.8 +219589,164.66,43.78 +219590,162.54,43.113 +219591,160.36,42.419 +219592,158.09,41.699 +219593,163.39,43.856 +219594,161.28,43.132 +219595,159.1,42.38 +219596,156.83,41.598 +219597,162.12,43.932 +219598,160.02,43.151 +219599,157.84,42.34 +219600,155.57,41.497 +219601,160.85,44.007 +219602,158.76,43.171 +219603,156.58,42.301 +219604,154.31,41.397 +219605,159.58,44.081 +219606,157.5,43.19 +219607,155.33,42.263 +219608,153.06,41.297 +219609,158.3,44.155 +219610,156.23,43.209 +219611,154.07,42.224 +219612,151.8,41.198 +219613,157.03,44.228 +219614,154.97,43.227 +219615,152.82,42.186 +219616,150.55,41.1 +219617,155.75,44.3 +219618,153.71,43.246 +219619,151.56,42.148 +219620,149.3,41.002 +219621,154.47,44.371 +219622,152.44,43.264 +219623,150.31,42.11 +219624,148.06,40.905 +219625,153.19,44.442 +219626,151.18,43.283 +219627,149.06,42.073 +219628,146.81,40.808 +219629,151.9,44.512 +219630,149.91,43.301 +219631,147.81,42.036 +219632,145.57,40.713 +219633,150.62,44.58 +219634,148.65,43.318 +219635,146.56,42 +219636,144.33,40.618 +219637,149.33,44.648 +219638,147.38,43.336 +219639,145.31,41.964 +219640,143.09,40.524 +219641,148.04,44.715 +219642,146.11,43.353 +219643,144.06,41.928 +219644,141.85,40.432 +219645,146.75,44.78 +219646,144.84,43.37 +219647,142.81,41.893 +219648,140.62,40.34 +219649,145.46,44.845 +219650,143.58,43.387 +219651,141.56,41.858 +219652,139.38,40.249 +219653,144.17,44.908 +219654,142.31,43.403 +219655,140.31,41.823 +219656,138.15,40.16 +219657,142.88,44.971 +219658,141.04,43.419 +219659,139.06,41.79 +219660,136.93,40.071 +219661,141.58,45.032 +219662,139.77,43.435 +219663,137.82,41.756 +219664,135.7,39.984 +219665,140.28,45.092 +219666,138.5,43.45 +219667,136.57,41.723 +219668,134.48,39.898 +219669,138.98,45.151 +219670,137.23,43.465 +219671,135.33,41.691 +219672,133.25,39.814 +219673,137.68,45.208 +219674,135.95,43.48 +219675,134.08,41.659 +219676,132.03,39.73 +219677,136.38,45.264 +219678,134.68,43.494 +219679,132.84,41.628 +219680,130.82,39.649 +219681,135.08,45.319 +219682,133.41,43.508 +219683,131.59,41.597 +219684,129.6,39.568 +219685,133.78,45.373 +219686,132.14,43.522 +219687,130.35,41.567 +219688,128.39,39.489 +219689,132.47,45.425 +219690,130.86,43.535 +219691,129.11,41.537 +219692,127.17,39.412 +219693,131.16,45.476 +219694,129.59,43.548 +219695,127.87,41.508 +219696,125.96,39.336 +219697,129.86,45.526 +219698,128.31,43.56 +219699,126.63,41.48 +219700,124.76,39.262 +219701,128.55,45.574 +219702,127.04,43.572 +219703,125.39,41.452 +219704,123.55,39.19 +219705,127.24,45.62 +219706,125.76,43.584 +219707,124.15,41.425 +219708,122.34,39.119 +219709,125.93,45.665 +219710,124.49,43.595 +219711,122.91,41.398 +219712,121.14,39.05 +219713,124.61,45.709 +219714,123.21,43.605 +219715,121.67,41.372 +219716,119.94,38.983 +219717,123.3,45.751 +219718,121.94,43.616 +219719,120.43,41.347 +219720,118.74,38.918 +219721,121.99,45.792 +219722,120.66,43.625 +219723,119.19,41.322 +219724,117.54,38.855 +219725,120.67,45.831 +219726,119.38,43.634 +219727,117.96,41.298 +219728,116.35,38.793 +219729,119.35,45.868 +219730,118.11,43.643 +219731,116.72,41.275 +219732,115.16,38.734 +219733,118.04,45.904 +219734,116.83,43.651 +219735,115.49,41.253 +219736,113.96,38.676 +219737,116.72,45.938 +219738,115.55,43.659 +219739,114.25,41.231 +219740,112.77,38.621 +219741,115.4,45.97 +219742,114.27,43.666 +219743,113.01,41.21 +219744,111.58,38.568 +219745,114.08,46.001 +219746,112.99,43.673 +219747,111.78,41.189 +219748,110.4,38.516 +219749,112.76,46.03 +219750,111.71,43.679 +219751,110.55,41.17 +219752,109.21,38.467 +219753,111.44,46.058 +219754,110.43,43.685 +219755,109.31,41.151 +219756,108.02,38.42 +219757,110.11,46.084 +219758,109.15,43.69 +219759,108.08,41.133 +219760,106.84,38.375 +219761,108.79,46.108 +219762,107.87,43.694 +219763,106.84,41.115 +219764,105.66,38.333 +219765,107.47,46.13 +219766,106.59,43.698 +219767,105.61,41.099 +219768,104.48,38.293 +219769,106.14,46.151 +219770,105.31,43.702 +219771,104.38,41.083 +219772,103.3,38.255 +219773,104.82,46.17 +219774,104.03,43.704 +219775,103.15,41.068 +219776,102.12,38.219 +219777,103.49,46.187 +219778,102.75,43.707 +219779,101.92,41.053 +219780,100.94,38.185 +219781,102.17,46.202 +219782,101.47,43.709 +219783,100.68,41.04 +219784,99.766,38.154 +219785,100.84,46.216 +219786,100.19,43.71 +219787,99.453,41.027 +219788,98.591,38.126 +219789,99.513,46.228 +219790,98.91,43.71 +219791,98.222,41.015 +219792,97.416,38.099 +219793,98.185,46.238 +219794,97.628,43.71 +219795,96.991,41.004 +219796,96.242,38.075 +219797,96.857,46.246 +219798,96.347,43.71 +219799,95.761,40.994 +219800,95.069,38.054 +219801,95.529,46.252 +219802,95.065,43.709 +219803,94.53,40.984 +219804,93.897,38.035 +219805,94.2,46.257 +219806,93.783,43.707 +219807,93.3,40.975 +219808,92.725,38.018 +219809,92.872,46.26 +219810,92.501,43.705 +219811,92.07,40.968 +219812,91.554,38.003 +219813,91.543,46.26 +219814,91.219,43.702 +219815,90.841,40.96 +219816,90.384,37.992 +219817,90.213,46.26 +219818,89.937,43.698 +219819,89.611,40.954 +219820,89.214,37.982 +219821,88.884,46.257 +219822,88.655,43.694 +219823,88.382,40.949 +219824,88.044,37.975 +219825,87.554,46.252 +219826,87.373,43.69 +219827,87.152,40.944 +219828,86.875,37.971 +219829,86.224,46.246 +219830,86.091,43.685 +219831,85.923,40.94 +219832,85.705,37.969 +219833,84.894,46.238 +219834,84.809,43.679 +219835,84.694,40.937 +219836,84.536,37.969 +219837,83.565,46.228 +219838,83.527,43.672 +219839,83.464,40.935 +219840,83.367,37.972 +219841,82.235,46.216 +219842,82.244,43.665 +219843,82.235,40.934 +219844,82.199,37.977 +219845,80.905,46.202 +219846,80.962,43.658 +219847,81.006,40.933 +219848,81.03,37.985 +219849,79.575,46.187 +219850,79.68,43.65 +219851,79.777,40.933 +219852,79.861,37.995 +219853,78.246,46.17 +219854,78.398,43.641 +219855,78.548,40.934 +219856,78.692,38.007 +219857,76.916,46.151 +219858,77.116,43.632 +219859,77.318,40.936 +219860,77.522,38.022 +219861,75.587,46.13 +219862,75.834,43.622 +219863,76.089,40.939 +219864,76.352,38.04 +219865,74.258,46.107 +219866,74.553,43.611 +219867,74.86,40.942 +219868,75.182,38.059 +219869,72.929,46.082 +219870,73.271,43.6 +219871,73.63,40.947 +219872,74.012,38.081 +219873,71.6,46.056 +219874,71.989,43.589 +219875,72.401,40.952 +219876,72.841,38.106 +219877,70.272,46.028 +219878,70.708,43.577 +219879,71.171,40.958 +219880,71.669,38.133 +219881,68.944,45.998 +219882,69.427,43.564 +219883,69.941,40.964 +219884,70.497,38.162 +219885,67.617,45.967 +219886,68.146,43.551 +219887,68.711,40.972 +219888,69.324,38.193 +219889,66.29,45.933 +219890,66.865,43.537 +219891,67.481,40.98 +219892,68.151,38.226 +219893,64.963,45.898 +219894,65.584,43.522 +219895,66.25,40.989 +219896,66.976,38.262 +219897,63.637,45.862 +219898,64.304,43.508 +219899,65.019,40.998 +219900,65.801,38.3 +219901,62.311,45.823 +219902,63.023,43.492 +219903,63.789,41.009 +219904,64.624,38.341 +219905,60.986,45.783 +219906,61.743,43.476 +219907,62.557,41.02 +219908,63.447,38.383 +219909,59.662,45.741 +219910,60.463,43.46 +219911,61.326,41.032 +219912,62.269,38.427 +219913,58.338,45.698 +219914,59.184,43.443 +219915,60.094,41.045 +219916,61.09,38.474 +219917,57.015,45.653 +219918,57.905,43.425 +219919,58.862,41.058 +219920,59.909,38.523 +219921,55.693,45.606 +219922,56.626,43.407 +219923,57.63,41.072 +219924,58.727,38.573 +219925,54.371,45.557 +219926,55.347,43.389 +219927,56.397,41.087 +219928,57.544,38.626 +219929,53.051,45.507 +219930,54.069,43.37 +219931,55.164,41.102 +219932,56.36,38.68 +219933,51.731,45.456 +219934,52.791,43.35 +219935,53.931,41.118 +219936,55.174,38.737 +219937,50.412,45.403 +219938,51.513,43.33 +219939,52.697,41.135 +219940,53.987,38.795 +219941,49.093,45.348 +219942,50.236,43.31 +219943,51.463,41.153 +219944,52.798,38.855 +219945,47.776,45.292 +219946,48.959,43.289 +219947,50.228,41.171 +219948,51.608,38.917 +219949,46.46,45.234 +219950,47.682,43.268 +219951,48.993,41.19 +219952,50.417,38.981 +219953,45.144,45.175 +219954,46.406,43.246 +219955,47.758,41.209 +219956,49.224,39.047 +219957,43.83,45.114 +219958,45.13,43.224 +219959,46.522,41.229 +219960,48.029,39.114 +219961,42.516,45.052 +219962,43.855,43.201 +219963,45.286,41.25 +219964,46.832,39.182 +219965,41.204,44.989 +219966,42.58,43.178 +219967,44.049,41.271 +219968,45.634,39.253 +219969,39.893,44.924 +219970,41.305,43.155 +219971,42.811,41.293 +219972,44.435,39.325 +219973,38.583,44.858 +219974,40.031,43.131 +219975,41.574,41.315 +219976,43.233,39.398 +219977,37.274,44.791 +219978,38.757,43.107 +219979,40.335,41.338 +219980,42.03,39.473 +219981,35.967,44.722 +219982,37.484,43.082 +219983,39.097,41.361 +219984,40.825,39.549 +219985,34.66,44.652 +219986,36.211,43.057 +219987,37.857,41.385 +219988,39.618,39.626 +219989,33.355,44.581 +219990,34.939,43.032 +219991,36.617,41.41 +219992,38.409,39.705 +219993,32.051,44.509 +219994,33.667,43.006 +219995,35.377,41.435 +219996,37.198,39.785 +219997,30.749,44.435 +219998,32.396,42.981 +219999,34.136,41.46 +220000,35.986,39.866 +220001,29.448,44.36 +220002,31.126,42.954 +220003,32.894,41.486 +220004,34.771,39.949 +220005,28.148,44.284 +220006,29.855,42.928 +220007,31.652,41.513 +220008,33.555,40.032 +220009,26.85,44.208 +220010,28.586,42.901 +220011,30.41,41.539 +220012,32.337,40.117 +220013,25.553,44.13 +220014,27.316,42.874 +220015,29.166,41.567 +220016,31.116,40.202 +220017,24.257,44.051 +220018,26.048,42.847 +220019,27.922,41.594 +220020,29.894,40.289 +220021,22.963,43.971 +220022,24.78,42.819 +220023,26.678,41.622 +220024,28.67,40.376 +220025,21.671,43.89 +220026,23.512,42.792 +220027,25.433,41.651 +220028,27.444,40.464 +220029,20.38,43.808 +220030,22.245,42.764 +220031,24.187,41.68 +220032,26.215,40.553 +220033,19.091,43.726 +220034,20.979,42.736 +220035,22.941,41.709 +220036,24.985,40.643 +220037,17.803,43.642 +220038,19.713,42.707 +220039,21.694,41.738 +220040,23.753,40.733 +220041,16.517,43.558 +220042,18.448,42.679 +220043,20.446,41.768 +220044,22.519,40.825 +220045,15.233,43.473 +220046,17.183,42.65 +220047,19.198,41.798 +220048,21.283,40.916 +220049,13.95,43.387 +220050,15.919,42.621 +220051,17.949,41.829 +220052,20.044,41.009 +220053,12.669,43.301 +220054,14.656,42.592 +220055,16.699,41.86 +220056,18.804,41.101 +220057,11.39,43.214 +220058,13.393,42.563 +220059,15.449,41.891 +220060,17.562,41.195 +220061,10.112,43.126 +220062,12.131,42.534 +220063,14.198,41.922 +220064,16.317,41.288 +220065,8.8363,43.038 +220066,10.87,42.505 +220067,12.947,41.953 +220068,15.071,41.382 +220069,7.5623,42.95 +220070,9.6086,42.476 +220071,11.695,41.985 +220072,13.823,41.476 +220073,6.29,42.86 +220074,8.3483,42.446 +220075,10.442,42.017 +220076,12.572,41.571 +220077,5.0196,42.771 +220078,7.0886,42.417 +220079,9.1882,42.049 +220080,11.32,41.666 +220081,3.7511,42.681 +220082,5.8296,42.388 +220083,7.9341,42.081 +220084,10.066,41.76 +220085,2.4843,42.591 +220086,4.5712,42.358 +220087,6.6793,42.113 +220088,8.8096,41.855 +220089,1.2195,42.5 +220090,3.3134,42.329 +220091,5.4238,42.146 +220092,7.5514,41.95 +220093,359.96,42.409 +220094,2.0563,42.299 +220095,4.1677,42.178 +220096,6.2912,42.045 +220097,358.7,42.318 +220098,0.79979,42.27 +220099,2.9109,42.211 +220100,5.0291,42.14 +220101,357.44,42.227 +220102,359.54,42.241 +220103,1.6534,42.243 +220104,3.7651,42.235 +220105,356.18,42.136 +220106,358.29,42.212 +220107,0.39533,42.276 +220108,2.4992,42.33 +220109,354.92,42.045 +220110,357.03,42.182 +220111,359.14,42.309 +220112,1.2314,42.424 +220113,353.67,41.953 +220114,355.78,42.153 +220115,357.88,42.342 +220116,359.96,42.519 +220117,352.42,41.862 +220118,354.53,42.125 +220119,356.62,42.375 +220120,358.69,42.613 +220121,351.17,41.771 +220122,353.27,42.096 +220123,355.36,42.408 +220124,357.42,42.707 +220125,349.92,41.68 +220126,352.02,42.067 +220127,354.1,42.441 +220128,356.14,42.8 +220129,348.68,41.589 +220130,350.77,42.039 +220131,352.83,42.473 +220132,354.86,42.893 +220133,347.43,41.498 +220134,349.52,42.011 +220135,351.57,42.506 +220136,353.59,42.985 +220137,346.19,41.408 +220138,348.27,41.982 +220139,350.31,42.539 +220140,352.31,43.077 +220141,344.95,41.318 +220142,347.02,41.955 +220143,349.04,42.572 +220144,351.02,43.169 +220145,343.71,41.228 +220146,345.77,41.927 +220147,347.78,42.604 +220148,349.74,43.26 +220149,342.48,41.138 +220150,344.52,41.9 +220151,346.51,42.637 +220152,348.45,43.35 +220153,341.25,41.05 +220154,343.28,41.873 +220155,345.25,42.669 +220156,347.17,43.44 +220157,340.01,40.961 +220158,342.03,41.846 +220159,343.98,42.701 +220160,345.88,43.529 +220161,338.78,40.874 +220162,340.78,41.819 +220163,342.71,42.733 +220164,344.59,43.617 +220165,337.56,40.786 +220166,339.54,41.793 +220167,341.45,42.765 +220168,343.29,43.704 +220169,336.33,40.7 +220170,338.29,41.767 +220171,340.18,42.797 +220172,342,43.791 +220173,335.11,40.614 +220174,337.05,41.742 +220175,338.91,42.828 +220176,340.71,43.877 +220177,333.89,40.529 +220178,335.8,41.716 +220179,337.64,42.86 +220180,339.41,43.962 +220181,332.67,40.445 +220182,334.56,41.692 +220183,336.37,42.891 +220184,338.11,44.046 +220185,331.45,40.362 +220186,333.32,41.667 +220187,335.1,42.922 +220188,336.81,44.129 +220189,330.23,40.279 +220190,332.07,41.643 +220191,333.83,42.952 +220192,335.51,44.211 +220193,329.02,40.198 +220194,330.83,41.62 +220195,332.56,42.983 +220196,334.21,44.292 +220197,327.81,40.118 +220198,329.59,41.596 +220199,331.29,43.013 +220200,332.9,44.372 +220201,326.6,40.038 +220202,328.35,41.574 +220203,330.01,43.042 +220204,331.6,44.45 +220205,325.39,39.96 +220206,327.11,41.552 +220207,328.74,43.072 +220208,330.29,44.528 +220209,324.18,39.883 +220210,325.87,41.53 +220211,327.47,43.101 +220212,328.98,44.605 +220213,322.98,39.807 +220214,324.63,41.508 +220215,326.19,43.13 +220216,327.68,44.68 +220217,321.77,39.733 +220218,323.39,41.488 +220219,324.92,43.158 +220220,326.36,44.754 +220221,320.57,39.659 +220222,322.16,41.467 +220223,323.64,43.187 +220224,325.05,44.827 +220225,319.37,39.588 +220226,320.92,41.448 +220227,322.37,43.214 +220228,323.74,44.899 +220229,318.17,39.517 +220230,319.68,41.428 +220231,321.09,43.242 +220232,322.43,44.969 +220233,316.98,39.448 +220234,318.44,41.41 +220235,319.82,43.269 +220236,321.11,45.038 +220237,315.78,39.38 +220238,317.21,41.392 +220239,318.54,43.295 +220240,319.8,45.106 +220241,314.59,39.314 +220242,315.97,41.374 +220243,317.26,43.322 +220244,318.48,45.172 +220245,313.4,39.25 +220246,314.74,41.357 +220247,315.99,43.348 +220248,317.16,45.237 +220249,312.21,39.187 +220250,313.5,41.341 +220251,314.71,43.373 +220252,315.84,45.3 +220253,311.02,39.126 +220254,312.27,41.325 +220255,313.43,43.398 +220256,314.52,45.362 +220257,309.83,39.067 +220258,311.03,41.31 +220259,312.15,43.423 +220260,313.2,45.422 +220261,308.65,39.009 +220262,309.8,41.296 +220263,310.87,43.447 +220264,311.88,45.481 +220265,307.46,38.953 +220266,308.57,41.282 +220267,309.59,43.47 +220268,310.56,45.539 +220269,306.28,38.899 +220270,307.33,41.269 +220271,308.31,43.493 +220272,309.24,45.595 +220273,305.1,38.847 +220274,306.1,41.257 +220275,307.03,43.516 +220276,307.91,45.649 +220277,303.92,38.797 +220278,304.87,41.245 +220279,305.75,43.538 +220280,306.59,45.702 +220281,302.74,38.749 +220282,303.63,41.234 +220283,304.47,43.56 +220284,305.26,45.753 +220285,301.56,38.702 +220286,302.4,41.224 +220287,303.19,43.581 +220288,303.94,45.802 +220289,300.38,38.658 +220290,301.17,41.214 +220291,301.91,43.602 +220292,302.61,45.85 +220293,299.21,38.616 +220294,299.94,41.205 +220295,300.63,43.622 +220296,301.28,45.896 +220297,298.03,38.576 +220298,298.71,41.197 +220299,299.35,43.642 +220300,299.96,45.941 +220301,296.86,38.538 +220302,297.48,41.189 +220303,298.06,43.661 +220304,298.63,45.984 +220305,295.68,38.502 +220306,296.25,41.183 +220307,296.78,43.68 +220308,297.3,46.025 +220309,294.51,38.468 +220310,295.01,41.177 +220311,295.5,43.698 +220312,295.97,46.064 +220313,293.34,38.437 +220314,293.78,41.171 +220315,294.22,43.715 +220316,294.64,46.102 +220317,292.16,38.407 +220318,292.55,41.167 +220319,292.94,43.732 +220320,293.31,46.138 +220321,290.99,38.38 +220322,291.32,41.163 +220323,291.65,43.749 +220324,291.98,46.172 +220325,289.82,38.355 +220326,290.09,41.16 +220327,290.37,43.764 +220328,290.65,46.205 +220329,288.65,38.333 +220330,288.86,41.158 +220331,289.09,43.78 +220332,289.32,46.236 +220333,287.48,38.313 +220334,287.63,41.157 +220335,287.8,43.795 +220336,287.99,46.264 +220337,286.31,38.295 +220338,286.4,41.156 +220339,286.52,43.809 +220340,286.66,46.292 +220341,285.14,38.28 +220342,285.17,41.156 +220343,285.24,43.822 +220344,285.33,46.317 +220345,283.97,38.266 +220346,283.94,41.157 +220347,283.95,43.835 +220348,283.99,46.341 +220349,282.8,38.256 +220350,282.71,41.159 +220351,282.67,43.848 +220352,282.66,46.362 +220353,281.63,38.247 +220354,281.48,41.162 +220355,281.39,43.86 +220356,281.33,46.382 +220357,280.46,38.241 +220358,280.25,41.165 +220359,280.1,43.871 +220360,280,46.4 +220361,279.3,38.238 +220362,279.02,41.169 +220363,278.82,43.882 +220364,278.67,46.417 +220365,278.13,38.237 +220366,277.79,41.174 +220367,277.54,43.892 +220368,277.34,46.431 +220369,276.96,38.238 +220370,276.56,41.18 +220371,276.25,43.901 +220372,276.01,46.444 +220373,275.79,38.242 +220374,275.33,41.187 +220375,274.97,43.91 +220376,274.67,46.455 +220377,274.61,38.248 +220378,274.1,41.194 +220379,273.69,43.919 +220380,273.34,46.464 +220381,273.44,38.256 +220382,272.87,41.203 +220383,272.4,43.926 +220384,272.01,46.471 +220385,272.27,38.267 +220386,271.64,41.212 +220387,271.12,43.934 +220388,270.68,46.477 +220389,271.1,38.281 +220390,270.41,41.221 +220391,269.84,43.94 +220392,269.35,46.48 +220393,269.93,38.296 +220394,269.18,41.232 +220395,268.55,43.946 +220396,268.02,46.482 +220397,268.75,38.315 +220398,267.94,41.244 +220399,267.27,43.952 +220400,266.69,46.482 +220401,267.58,38.335 +220402,266.71,41.256 +220403,265.99,43.957 +220404,265.36,46.48 +220405,266.4,38.358 +220406,265.48,41.269 +220407,264.7,43.961 +220408,264.03,46.476 +220409,265.23,38.384 +220410,264.25,41.283 +220411,263.42,43.965 +220412,262.71,46.471 +220413,264.05,38.411 +220414,263.02,41.297 +220415,262.14,43.968 +220416,261.38,46.464 +220417,262.87,38.442 +220418,261.78,41.313 +220419,260.86,43.97 +220420,260.05,46.455 +220421,261.69,38.474 +220422,260.55,41.329 +220423,259.57,43.972 +220424,258.72,46.444 +220425,260.51,38.509 +220426,259.32,41.346 +220427,258.29,43.974 +220428,257.4,46.432 +220429,259.33,38.546 +220430,258.08,41.364 +220431,257.01,43.975 +220432,256.07,46.417 +220433,258.15,38.585 +220434,256.85,41.382 +220435,255.73,43.975 +220436,254.75,46.401 +220437,256.96,38.627 +220438,255.61,41.402 +220439,254.45,43.975 +220440,253.42,46.383 +220441,255.78,38.671 +220442,254.38,41.422 +220443,253.17,43.974 +220444,252.1,46.364 +220445,254.59,38.717 +220446,253.14,41.442 +220447,251.89,43.972 +220448,250.78,46.343 +220449,253.4,38.765 +220450,251.9,41.464 +220451,250.61,43.971 +220452,249.46,46.32 +220453,252.21,38.815 +220454,250.67,41.486 +220455,249.33,43.968 +220456,248.13,46.295 +220457,251.02,38.868 +220458,249.43,41.509 +220459,248.05,43.965 +220460,246.81,46.269 +220461,249.83,38.923 +220462,248.19,41.533 +220463,246.77,43.962 +220464,245.5,46.241 +220465,248.63,38.979 +220466,246.96,41.557 +220467,245.49,43.958 +220468,244.18,46.212 +220469,247.44,39.038 +220470,245.72,41.583 +220471,244.21,43.953 +220472,242.86,46.181 +220473,246.24,39.099 +220474,244.48,41.608 +220475,242.93,43.948 +220476,241.54,46.148 +220477,245.04,39.161 +220478,243.24,41.635 +220479,241.65,43.943 +220480,240.23,46.114 +220481,243.84,39.226 +220482,242,41.662 +220483,240.38,43.937 +220484,238.91,46.078 +220485,242.63,39.292 +220486,240.76,41.69 +220487,239.1,43.931 +220488,237.6,46.04 +220489,241.43,39.361 +220490,239.52,41.718 +220491,237.82,43.924 +220492,236.29,46.001 +220493,240.22,39.431 +220494,238.28,41.748 +220495,236.54,43.916 +220496,234.98,45.961 +220497,239.01,39.503 +220498,237.03,41.777 +220499,235.27,43.909 +220500,233.67,45.919 +220501,237.8,39.576 +220502,235.79,41.808 +220503,233.99,43.9 +220504,232.36,45.876 +220505,236.59,39.652 +220506,234.55,41.839 +220507,232.72,43.892 +220508,231.05,45.831 +220509,235.37,39.729 +220510,233.3,41.87 +220511,231.44,43.883 +220512,229.75,45.785 +220513,234.15,39.807 +220514,232.06,41.903 +220515,230.17,43.873 +220516,228.44,45.737 +220517,232.93,39.888 +220518,230.81,41.935 +220519,228.89,43.863 +220520,227.14,45.688 +220521,231.71,39.969 +220522,229.57,41.969 +220523,227.62,43.853 +220524,225.84,45.638 +220525,230.49,40.052 +220526,228.32,42.003 +220527,226.35,43.842 +220528,224.53,45.586 +220529,229.26,40.137 +220530,227.07,42.037 +220531,225.08,43.831 +220532,223.24,45.533 +220533,228.03,40.223 +220534,225.82,42.072 +220535,223.8,43.82 +220536,221.94,45.479 +220537,226.81,40.31 +220538,224.57,42.108 +220539,222.53,43.808 +220540,220.64,45.424 +220541,225.57,40.399 +220542,223.32,42.143 +220543,221.26,43.796 +220544,219.35,45.368 +220545,224.34,40.488 +220546,222.07,42.18 +220547,219.99,43.783 +220548,218.05,45.31 +220549,223.1,40.579 +220550,220.82,42.217 +220551,218.72,43.771 +220552,216.76,45.251 +220553,221.86,40.671 +220554,219.57,42.254 +220555,217.45,43.758 +220556,215.47,45.191 +220557,220.62,40.765 +220558,218.32,42.292 +220559,216.18,43.744 +220560,214.18,45.13 +220561,219.38,40.859 +220562,217.07,42.33 +220563,214.91,43.731 +220564,212.9,45.068 +220565,218.14,40.954 +220566,215.81,42.369 +220567,213.65,43.717 +220568,211.61,45.005 +220569,216.89,41.05 +220570,214.56,42.408 +220571,212.38,43.703 +220572,210.33,44.941 +220573,215.64,41.147 +220574,213.3,42.447 +220575,211.11,43.688 +220576,209.04,44.876 +220577,214.39,41.245 +220578,212.05,42.487 +220579,209.85,43.674 +220580,207.76,44.81 +220581,213.13,41.344 +220582,210.79,42.527 +220583,208.58,43.659 +220584,206.49,44.744 +220585,211.88,41.443 +220586,209.53,42.568 +220587,207.32,43.644 +220588,205.21,44.676 +220589,210.62,41.543 +220590,208.28,42.608 +220591,206.05,43.629 +220592,203.93,44.608 +220593,209.36,41.644 +220594,207.02,42.649 +220595,204.79,43.613 +220596,202.66,44.539 +220597,208.1,41.745 +220598,205.76,42.691 +220599,203.53,43.598 +220600,201.39,44.469 +220601,206.84,41.847 +220602,204.5,42.732 +220603,202.26,43.582 +220604,200.12,44.399 +220605,205.57,41.95 +220606,203.24,42.774 +220607,201,43.566 +220608,198.85,44.328 +220609,204.3,42.052 +220610,201.98,42.816 +220611,199.74,43.55 +220612,197.58,44.256 +220613,203.03,42.156 +220614,200.71,42.859 +220615,198.48,43.534 +220616,196.32,44.184 +220617,201.76,42.259 +220618,199.45,42.901 +220619,197.22,43.518 +220620,195.06,44.111 +220621,200.49,42.363 +220622,198.19,42.944 +220623,195.96,43.502 +220624,193.8,44.038 +220625,199.21,42.467 +220626,196.92,42.987 +220627,194.7,43.486 +220628,192.54,43.964 +220629,197.93,42.571 +220630,195.66,43.03 +220631,193.44,43.469 +220632,191.28,43.89 +220633,196.65,42.676 +220634,194.39,43.073 +220635,192.18,43.453 +220636,190.03,43.816 +220637,195.37,42.78 +220638,193.12,43.117 +220639,190.93,43.437 +220640,188.77,43.741 +220641,194.08,42.885 +220642,191.86,43.16 +220643,189.67,43.42 +220644,187.52,43.666 +220645,192.8,42.989 +220646,190.59,43.204 +220647,188.41,43.404 +220648,186.27,43.591 +220649,191.51,43.094 +220650,189.32,43.247 +220651,187.16,43.388 +220652,185.03,43.515 +220653,190.22,43.198 +220654,188.05,43.291 +220655,185.9,43.371 +220656,183.78,43.44 +220657,188.93,43.302 +220658,186.78,43.335 +220659,184.65,43.355 +220660,182.54,43.364 +220661,187.64,43.406 +220662,185.51,43.379 +220663,183.39,43.339 +220664,181.3,43.288 +220665,186.34,43.51 +220666,184.24,43.423 +220667,182.14,43.323 +220668,180.06,43.213 +220669,185.05,43.614 +220670,182.96,43.466 +220671,180.89,43.307 +220672,178.82,43.137 +220673,183.75,43.717 +220674,181.69,43.51 +220675,179.64,43.292 +220676,177.58,43.061 +220677,182.45,43.82 +220678,180.42,43.554 +220679,178.39,43.276 +220680,176.35,42.986 +220681,181.15,43.923 +220682,179.14,43.598 +220683,177.13,43.26 +220684,175.12,42.911 +220685,179.84,44.025 +220686,177.87,43.642 +220687,175.88,43.245 +220688,173.89,42.836 +220689,178.54,44.126 +220690,176.59,43.685 +220691,174.63,43.23 +220692,172.66,42.761 +220693,177.23,44.227 +220694,175.32,43.729 +220695,173.39,43.215 +220696,171.43,42.686 +220697,175.92,44.328 +220698,174.04,43.772 +220699,172.14,43.2 +220700,170.21,42.612 +220701,174.61,44.428 +220702,172.76,43.816 +220703,170.89,43.186 +220704,168.99,42.539 +220705,173.3,44.527 +220706,171.49,43.859 +220707,169.64,43.171 +220708,167.77,42.465 +220709,171.99,44.626 +220710,170.21,43.902 +220711,168.39,43.157 +220712,166.55,42.393 +220713,170.68,44.723 +220714,168.93,43.945 +220715,167.15,43.144 +220716,165.33,42.321 +220717,169.36,44.82 +220718,167.65,43.987 +220719,165.9,43.13 +220720,164.12,42.249 +220721,168.04,44.917 +220722,166.37,44.03 +220723,164.66,43.117 +220724,162.9,42.178 +220725,166.73,45.012 +220726,165.09,44.072 +220727,163.41,43.104 +220728,161.69,42.108 +220729,165.41,45.107 +220730,163.81,44.114 +220731,162.17,43.092 +220732,160.48,42.038 +220733,164.09,45.2 +220734,162.52,44.156 +220735,160.92,43.08 +220736,159.28,41.97 +220737,162.77,45.293 +220738,161.24,44.198 +220739,159.68,43.068 +220740,158.07,41.902 +220741,161.44,45.385 +220742,159.96,44.239 +220743,158.43,43.057 +220744,156.87,41.835 +220745,160.12,45.475 +220746,158.67,44.28 +220747,157.19,43.046 +220748,155.66,41.769 +220749,158.79,45.565 +220750,157.39,44.321 +220751,155.95,43.035 +220752,154.46,41.703 +220753,157.47,45.654 +220754,156.11,44.362 +220755,154.71,43.025 +220756,153.26,41.639 +220757,156.14,45.741 +220758,154.82,44.402 +220759,153.46,43.015 +220760,152.06,41.576 +220761,154.81,45.827 +220762,153.54,44.442 +220763,152.22,43.006 +220764,150.87,41.514 +220765,153.48,45.913 +220766,152.25,44.482 +220767,150.98,42.997 +220768,149.67,41.454 +220769,152.15,45.997 +220770,150.96,44.521 +220771,149.74,42.988 +220772,148.48,41.394 +220773,150.82,46.079 +220774,149.68,44.56 +220775,148.5,42.98 +220776,147.29,41.336 +220777,149.49,46.161 +220778,148.39,44.598 +220779,147.26,42.973 +220780,146.1,41.278 +220781,148.15,46.241 +220782,147.1,44.637 +220783,146.02,42.966 +220784,144.91,41.223 +220785,146.82,46.32 +220786,145.82,44.674 +220787,144.78,42.96 +220788,143.72,41.168 +220789,145.49,46.397 +220790,144.53,44.712 +220791,143.54,42.954 +220792,142.53,41.115 +220793,144.15,46.474 +220794,143.24,44.749 +220795,142.3,42.948 +220796,141.35,41.064 +220797,142.81,46.548 +220798,141.95,44.785 +220799,141.07,42.944 +220800,140.16,41.014 +220801,141.48,46.622 +220802,140.66,44.822 +220803,139.83,42.939 +220804,138.98,40.965 +220805,140.14,46.694 +220806,139.37,44.857 +220807,138.59,42.936 +220808,137.8,40.918 +220809,138.8,46.764 +220810,138.08,44.893 +220811,137.35,42.933 +220812,136.61,40.873 +220813,137.46,46.833 +220814,136.79,44.927 +220815,136.11,42.93 +220816,135.43,40.829 +220817,136.12,46.901 +220818,135.5,44.962 +220819,134.88,42.928 +220820,134.25,40.787 +220821,134.78,46.967 +220822,134.21,44.996 +220823,133.64,42.927 +220824,133.08,40.747 +220825,133.44,47.031 +220826,132.92,45.029 +220827,132.4,42.926 +220828,131.9,40.708 +220829,132.1,47.094 +220830,131.63,45.062 +220831,131.17,42.926 +220832,130.72,40.671 +220833,130.76,47.156 +220834,130.34,45.095 +220835,129.93,42.927 +220836,129.54,40.636 +220837,129.42,47.216 +220838,129.04,45.127 +220839,128.69,42.928 +220840,128.37,40.603 +220841,128.08,47.274 +220842,127.75,45.158 +220843,127.45,42.93 +220844,127.19,40.572 +220845,126.74,47.33 +220846,126.46,45.189 +220847,126.22,42.933 +220848,126.02,40.542 +220849,125.39,47.385 +220850,125.17,45.22 +220851,124.98,42.936 +220852,124.84,40.515 +220853,124.05,47.439 +220854,123.88,45.249 +220855,123.74,42.94 +220856,123.67,40.489 +220857,122.71,47.49 +220858,122.58,45.279 +220859,122.51,42.945 +220860,122.5,40.466 +220861,121.37,47.54 +220862,121.29,45.308 +220863,121.27,42.95 +220864,121.32,40.444 +220865,120.02,47.588 +220866,120,45.336 +220867,120.03,42.956 +220868,120.15,40.425 +220869,118.68,47.635 +220870,118.71,45.364 +220871,118.8,42.963 +220872,118.98,40.408 +220873,117.34,47.68 +220874,117.41,45.391 +220875,117.56,42.97 +220876,117.8,40.392 +220877,115.99,47.723 +220878,116.12,45.418 +220879,116.32,42.978 +220880,116.63,40.379 +220881,114.65,47.765 +220882,114.83,45.444 +220883,115.09,42.987 +220884,115.46,40.368 +220885,113.31,47.804 +220886,113.54,45.47 +220887,113.85,42.997 +220888,114.28,40.359 +220889,111.97,47.842 +220890,112.24,45.495 +220891,112.61,43.007 +220892,113.11,40.352 +220893,110.62,47.878 +220894,110.95,45.519 +220895,111.37,43.018 +220896,111.93,40.348 +220897,109.28,47.913 +220898,109.66,45.543 +220899,110.14,43.03 +220900,110.76,40.345 +220901,107.94,47.946 +220902,108.36,45.566 +220903,108.9,43.042 +220904,109.58,40.345 +220905,106.6,47.977 +220906,107.07,45.589 +220907,107.66,43.056 +220908,108.41,40.347 +220909,105.25,48.006 +220910,105.78,45.611 +220911,106.42,43.07 +220912,107.23,40.351 +220913,103.91,48.033 +220914,104.49,45.633 +220915,105.18,43.084 +220916,106.06,40.358 +220917,102.57,48.059 +220918,103.19,45.654 +220919,103.95,43.1 +220920,104.88,40.366 +220921,101.23,48.083 +220922,101.9,45.674 +220923,102.71,43.116 +220924,103.7,40.377 +220925,99.89,48.105 +220926,100.61,45.694 +220927,101.47,43.133 +220928,102.52,40.391 +220929,98.55,48.126 +220930,99.315,45.713 +220931,100.23,43.151 +220932,101.34,40.406 +220933,97.211,48.144 +220934,98.023,45.732 +220935,98.988,43.169 +220936,100.16,40.424 +220937,95.872,48.161 +220938,96.731,45.75 +220939,97.747,43.188 +220940,98.979,40.443 +220941,94.533,48.176 +220942,95.439,45.768 +220943,96.507,43.208 +220944,97.796,40.465 +220945,93.196,48.19 +220946,94.147,45.785 +220947,95.266,43.229 +220948,96.611,40.49 +220949,91.858,48.201 +220950,92.856,45.801 +220951,94.024,43.25 +220952,95.426,40.516 +220953,90.522,48.211 +220954,91.564,45.817 +220955,92.782,43.273 +220956,94.239,40.545 +220957,89.186,48.22 +220958,90.273,45.832 +220959,91.54,43.295 +220960,93.051,40.576 +220961,87.851,48.226 +220962,88.982,45.847 +220963,90.297,43.319 +220964,91.862,40.609 +220965,86.516,48.231 +220966,87.691,45.861 +220967,89.054,43.343 +220968,90.671,40.645 +220969,85.183,48.234 +220970,86.401,45.875 +220971,87.81,43.368 +220972,89.479,40.682 +220973,83.85,48.235 +220974,85.111,45.888 +220975,86.566,43.394 +220976,88.285,40.722 +220977,82.518,48.235 +220978,83.821,45.901 +220979,85.321,43.421 +220980,87.089,40.764 +220981,81.187,48.232 +220982,82.531,45.912 +220983,84.076,43.448 +220984,85.892,40.808 +220985,79.856,48.229 +220986,81.242,45.924 +220987,82.83,43.476 +220988,84.694,40.854 +220989,78.527,48.223 +220990,79.953,45.935 +220991,81.584,43.504 +220992,83.493,40.902 +220993,77.199,48.216 +220994,78.664,45.945 +220995,80.337,43.534 +220996,82.291,40.952 +220997,75.872,48.207 +220998,77.376,45.955 +220999,79.09,43.564 +221000,81.087,41.005 +221001,74.545,48.197 +221002,76.088,45.964 +221003,77.842,43.594 +221004,79.881,41.059 +221005,73.22,48.185 +221006,74.8,45.973 +221007,76.593,43.625 +221008,78.673,41.116 +221009,71.896,48.172 +221010,73.513,45.981 +221011,75.344,43.657 +221012,77.463,41.174 +221013,70.573,48.156 +221014,72.226,45.989 +221015,74.094,43.69 +221016,76.251,41.234 +221017,69.251,48.14 +221018,70.939,45.996 +221019,72.844,43.723 +221020,75.037,41.296 +221021,67.931,48.121 +221022,69.653,46.003 +221023,71.593,43.757 +221024,73.821,41.36 +221025,66.611,48.102 +221026,68.367,46.009 +221027,70.341,43.792 +221028,72.603,41.426 +221029,65.293,48.08 +221030,67.082,46.015 +221031,69.089,43.827 +221032,71.383,41.494 +221033,63.976,48.058 +221034,65.797,46.02 +221035,67.836,43.863 +221036,70.161,41.564 +221037,62.66,48.033 +221038,64.512,46.025 +221039,66.582,43.899 +221040,68.937,41.635 +221041,61.346,48.008 +221042,63.228,46.029 +221043,65.327,43.936 +221044,67.71,41.708 +221045,60.033,47.981 +221046,61.945,46.033 +221047,64.072,43.974 +221048,66.482,41.783 +221049,58.722,47.952 +221050,60.661,46.036 +221051,62.816,44.012 +221052,65.251,41.859 +221053,57.412,47.922 +221054,59.379,46.039 +221055,61.56,44.051 +221056,64.018,41.937 +221057,56.103,47.891 +221058,58.097,46.042 +221059,60.303,44.09 +221060,62.783,42.017 +221061,54.796,47.859 +221062,56.815,46.044 +221063,59.045,44.13 +221064,61.545,42.098 +221065,53.49,47.825 +221066,55.534,46.046 +221067,57.786,44.17 +221068,60.305,42.18 +221069,52.185,47.789 +221070,54.253,46.047 +221071,56.526,44.211 +221072,59.063,42.264 +221073,50.883,47.753 +221074,52.973,46.048 +221075,55.266,44.252 +221076,57.819,42.35 +221077,49.581,47.715 +221078,51.693,46.049 +221079,54.005,44.294 +221080,56.572,42.437 +221081,48.282,47.677 +221082,50.414,46.049 +221083,52.744,44.336 +221084,55.323,42.525 +221085,46.984,47.636 +221086,49.135,46.049 +221087,51.481,44.379 +221088,54.072,42.614 +221089,45.687,47.595 +221090,47.857,46.049 +221091,50.218,44.422 +221092,52.819,42.705 +221093,44.392,47.553 +221094,46.579,46.048 +221095,48.954,44.466 +221096,51.563,42.797 +221097,43.099,47.51 +221098,45.302,46.047 +221099,47.689,44.51 +221100,50.305,42.89 +221101,41.808,47.465 +221102,44.025,46.045 +221103,46.424,44.555 +221104,49.045,42.984 +221105,40.518,47.42 +221106,42.749,46.043 +221107,45.158,44.6 +221108,47.782,43.08 +221109,39.23,47.373 +221110,41.474,46.041 +221111,43.89,44.645 +221112,46.517,43.176 +221113,37.943,47.326 +221114,40.199,46.039 +221115,42.623,44.691 +221116,45.25,43.273 +221117,36.659,47.277 +221118,38.925,46.036 +221119,41.354,44.737 +221120,43.981,43.371 +221121,35.376,47.228 +221122,37.651,46.034 +221123,40.085,44.783 +221124,42.709,43.47 +221125,34.095,47.178 +221126,36.378,46.031 +221127,38.815,44.83 +221128,41.435,43.57 +221129,32.816,47.127 +221130,35.105,46.027 +221131,37.544,44.877 +221132,40.159,43.671 +221133,31.538,47.075 +221134,33.833,46.024 +221135,36.272,44.925 +221136,38.881,43.773 +221137,30.262,47.023 +221138,32.562,46.02 +221139,35,44.972 +221140,37.601,43.875 +221141,28.988,46.969 +221142,31.291,46.016 +221143,33.726,45.02 +221144,36.318,43.978 +221145,27.716,46.915 +221146,30.02,46.012 +221147,32.452,45.069 +221148,35.033,44.081 +221149,26.446,46.861 +221150,28.751,46.008 +221151,31.178,45.117 +221152,33.747,44.185 +221153,25.178,46.805 +221154,27.482,46.003 +221155,29.902,45.166 +221156,32.458,44.289 +221157,23.912,46.75 +221158,26.213,45.999 +221159,28.626,45.215 +221160,31.167,44.394 +221161,22.647,46.693 +221162,24.945,45.994 +221163,27.349,45.264 +221164,29.874,44.5 +221165,21.384,46.636 +221166,23.677,45.989 +221167,26.071,45.313 +221168,28.579,44.606 +221169,20.123,46.579 +221170,22.411,45.984 +221171,24.792,45.363 +221172,27.282,44.712 +221173,18.865,46.521 +221174,21.144,45.979 +221175,23.513,45.413 +221176,25.982,44.818 +221177,17.608,46.463 +221178,19.878,45.974 +221179,22.233,45.462 +221180,24.681,44.925 +221181,16.352,46.404 +221182,18.613,45.969 +221183,20.952,45.512 +221184,23.378,45.032 +221185,15.099,46.345 +221186,17.349,45.964 +221187,19.671,45.562 +221188,22.073,45.139 +221189,13.848,46.286 +221190,16.085,45.959 +221191,18.389,45.613 +221192,20.767,45.246 +221193,12.598,46.227 +221194,14.821,45.954 +221195,17.106,45.663 +221196,19.458,45.353 +221197,11.351,46.167 +221198,13.558,45.948 +221199,15.822,45.713 +221200,18.148,45.46 +221201,10.105,46.107 +221202,12.296,45.943 +221203,14.538,45.764 +221204,16.835,45.567 +221205,8.8616,46.048 +221206,11.034,45.938 +221207,13.253,45.814 +221208,15.521,45.674 +221209,7.6197,45.988 +221210,9.7728,45.933 +221211,11.967,45.864 +221212,14.206,45.781 +221213,6.3798,45.928 +221214,8.5121,45.928 +221215,10.681,45.915 +221216,12.888,45.888 +221217,5.1417,45.868 +221218,7.2519,45.923 +221219,9.3934,45.965 +221220,11.569,45.994 +221221,3.9054,45.808 +221222,5.9922,45.918 +221223,8.1057,46.016 +221224,10.248,46.1 +221225,2.6711,45.748 +221226,4.733,45.913 +221227,6.8173,46.066 +221228,8.9257,46.206 +221229,1.4385,45.688 +221230,3.4744,45.908 +221231,5.5283,46.117 +221232,7.6017,46.312 +221233,0.20785,45.629 +221234,2.2163,45.904 +221235,4.2386,46.167 +221236,6.2762,46.417 +221237,358.98,45.569 +221238,0.95864,45.899 +221239,2.9483,46.217 +221240,4.9491,46.522 +221241,357.75,45.51 +221242,359.7,45.895 +221243,1.6574,46.267 +221244,3.6206,46.626 +221245,356.53,45.452 +221246,358.44,45.891 +221247,0.36584,46.317 +221248,2.2906,46.73 +221249,355.3,45.393 +221250,357.19,45.887 +221251,359.07,46.367 +221252,0.95923,46.834 +221253,354.08,45.335 +221254,355.93,45.883 +221255,357.78,46.417 +221256,359.63,46.937 +221257,352.86,45.278 +221258,354.68,45.879 +221259,356.49,46.467 +221260,358.29,47.039 +221261,351.64,45.221 +221262,353.42,45.876 +221263,355.19,46.516 +221264,356.96,47.14 +221265,350.43,45.164 +221266,352.17,45.873 +221267,353.9,46.566 +221268,355.62,47.241 +221269,349.21,45.108 +221270,350.91,45.87 +221271,352.6,46.615 +221272,354.28,47.341 +221273,348,45.053 +221274,349.66,45.868 +221275,351.31,46.664 +221276,352.94,47.441 +221277,346.79,44.998 +221278,348.41,45.865 +221279,350.01,46.713 +221280,351.6,47.539 +221281,345.58,44.944 +221282,347.16,45.863 +221283,348.72,46.761 +221284,350.26,47.637 +221285,344.37,44.89 +221286,345.9,45.861 +221287,347.42,46.809 +221288,348.92,47.734 +221289,343.16,44.838 +221290,344.65,45.86 +221291,346.12,46.857 +221292,347.58,47.83 +221293,341.95,44.786 +221294,343.4,45.859 +221295,344.82,46.905 +221296,346.23,47.925 +221297,340.75,44.735 +221298,342.15,45.858 +221299,343.53,46.953 +221300,344.88,48.019 +221301,339.55,44.685 +221302,340.9,45.858 +221303,342.23,47 +221304,343.54,48.112 +221305,338.35,44.636 +221306,339.65,45.858 +221307,340.93,47.047 +221308,342.19,48.204 +221309,337.15,44.588 +221310,338.4,45.858 +221311,339.63,47.094 +221312,340.84,48.295 +221313,335.95,44.54 +221314,337.15,45.859 +221315,338.33,47.14 +221316,339.49,48.385 +221317,334.75,44.494 +221318,335.9,45.86 +221319,337.03,47.186 +221320,338.14,48.474 +221321,333.55,44.449 +221322,334.65,45.861 +221323,335.73,47.231 +221324,336.79,48.562 +221325,332.36,44.405 +221326,333.4,45.863 +221327,334.42,47.277 +221328,335.44,48.648 +221329,331.17,44.363 +221330,332.15,45.866 +221331,333.12,47.322 +221332,334.09,48.734 +221333,329.97,44.321 +221334,330.9,45.868 +221335,331.82,47.366 +221336,332.74,48.818 +221337,328.78,44.281 +221338,329.65,45.872 +221339,330.52,47.411 +221340,331.38,48.901 +221341,327.59,44.242 +221342,328.4,45.875 +221343,329.22,47.454 +221344,330.03,48.982 +221345,326.4,44.204 +221346,327.16,45.879 +221347,327.91,47.498 +221348,328.67,49.063 +221349,325.21,44.168 +221350,325.91,45.884 +221351,326.61,47.541 +221352,327.32,49.142 +221353,324.02,44.133 +221354,324.66,45.889 +221355,325.31,47.583 +221356,325.96,49.219 +221357,322.84,44.099 +221358,323.41,45.895 +221359,324,47.625 +221360,324.61,49.296 +221361,321.65,44.067 +221362,322.16,45.901 +221363,322.7,47.667 +221364,323.25,49.371 +221365,320.46,44.036 +221366,320.92,45.908 +221367,321.39,47.709 +221368,321.89,49.444 +221369,319.28,44.007 +221370,319.67,45.915 +221371,320.09,47.749 +221372,320.53,49.516 +221373,318.09,43.98 +221374,318.42,45.923 +221375,318.79,47.79 +221376,319.18,49.587 +221377,316.91,43.954 +221378,317.18,45.931 +221379,317.48,47.83 +221380,317.82,49.656 +221381,315.73,43.929 +221382,315.93,45.94 +221383,316.18,47.869 +221384,316.46,49.724 +221385,314.54,43.906 +221386,314.68,45.95 +221387,314.87,47.908 +221388,315.1,49.79 +221389,313.36,43.885 +221390,313.43,45.96 +221391,313.57,47.947 +221392,313.74,49.855 +221393,312.18,43.866 +221394,312.19,45.97 +221395,312.26,47.985 +221396,312.39,49.918 +221397,311,43.848 +221398,310.94,45.981 +221399,310.95,48.022 +221400,311.03,49.98 +221401,309.81,43.832 +221402,309.69,45.993 +221403,309.65,48.059 +221404,309.67,50.04 +221405,308.63,43.817 +221406,308.44,46.006 +221407,308.34,48.096 +221408,308.31,50.098 +221409,307.45,43.805 +221410,307.2,46.019 +221411,307.04,48.132 +221412,306.95,50.155 +221413,306.27,43.794 +221414,305.95,46.032 +221415,305.73,48.167 +221416,305.59,50.211 +221417,305.08,43.785 +221418,304.7,46.046 +221419,304.43,48.202 +221420,304.23,50.265 +221421,303.9,43.778 +221422,303.45,46.061 +221423,303.12,48.236 +221424,302.88,50.317 +221425,302.72,43.773 +221426,302.21,46.077 +221427,301.81,48.27 +221428,301.52,50.367 +221429,301.54,43.77 +221430,300.96,46.093 +221431,300.51,48.304 +221432,300.16,50.416 +221433,300.35,43.768 +221434,299.71,46.11 +221435,299.2,48.336 +221436,298.8,50.464 +221437,299.17,43.769 +221438,298.46,46.127 +221439,297.9,48.369 +221440,297.44,50.509 +221441,297.98,43.771 +221442,297.21,46.145 +221443,296.59,48.4 +221444,296.09,50.553 +221445,296.8,43.775 +221446,295.96,46.163 +221447,295.29,48.432 +221448,294.73,50.596 +221449,295.61,43.781 +221450,294.71,46.183 +221451,293.98,48.462 +221452,293.37,50.636 +221453,294.43,43.79 +221454,293.46,46.203 +221455,292.67,48.492 +221456,292.02,50.675 +221457,293.24,43.8 +221458,292.22,46.223 +221459,291.37,48.522 +221460,290.66,50.713 +221461,292.05,43.812 +221462,290.96,46.244 +221463,290.06,48.551 +221464,289.3,50.748 +221465,290.86,43.826 +221466,289.71,46.266 +221467,288.76,48.579 +221468,287.95,50.782 +221469,289.67,43.842 +221470,288.46,46.289 +221471,287.45,48.607 +221472,286.6,50.815 +221473,288.48,43.86 +221474,287.21,46.312 +221475,286.15,48.634 +221476,285.24,50.845 +221477,287.29,43.88 +221478,285.96,46.336 +221479,284.84,48.661 +221480,283.89,50.874 +221481,286.1,43.902 +221482,284.71,46.36 +221483,283.54,48.687 +221484,282.54,50.902 +221485,284.91,43.926 +221486,283.46,46.386 +221487,282.23,48.713 +221488,281.18,50.927 +221489,283.71,43.952 +221490,282.2,46.411 +221491,280.93,48.738 +221492,279.83,50.951 +221493,282.51,43.98 +221494,280.95,46.438 +221495,279.63,48.763 +221496,278.48,50.974 +221497,281.32,44.01 +221498,279.7,46.465 +221499,278.32,48.786 +221500,277.13,50.994 +221501,280.12,44.042 +221502,278.44,46.493 +221503,277.02,48.81 +221504,275.78,51.014 +221505,278.92,44.076 +221506,277.19,46.521 +221507,275.71,48.833 +221508,274.44,51.031 +221509,277.71,44.111 +221510,275.93,46.55 +221511,274.41,48.855 +221512,273.09,51.047 +221513,276.51,44.149 +221514,274.68,46.58 +221515,273.11,48.877 +221516,271.74,51.061 +221517,275.31,44.189 +221518,273.42,46.61 +221519,271.81,48.898 +221520,270.4,51.073 +221521,274.1,44.231 +221522,272.16,46.641 +221523,270.5,48.919 +221524,269.05,51.084 +221525,272.89,44.274 +221526,270.91,46.672 +221527,269.2,48.939 +221528,267.71,51.093 +221529,271.68,44.32 +221530,269.65,46.705 +221531,267.9,48.959 +221532,266.37,51.101 +221533,270.47,44.367 +221534,268.39,46.737 +221535,266.6,48.978 +221536,265.03,51.107 +221537,269.25,44.416 +221538,267.13,46.771 +221539,265.3,48.996 +221540,263.68,51.112 +221541,268.04,44.467 +221542,265.87,46.805 +221543,264,49.014 +221544,262.35,51.115 +221545,266.82,44.52 +221546,264.61,46.84 +221547,262.7,49.032 +221548,261.01,51.116 +221549,265.6,44.575 +221550,263.35,46.875 +221551,261.4,49.049 +221552,259.67,51.116 +221553,264.38,44.632 +221554,262.09,46.911 +221555,260.1,49.065 +221556,258.33,51.114 +221557,263.16,44.69 +221558,260.83,46.947 +221559,258.8,49.081 +221560,257,51.111 +221561,261.93,44.75 +221562,259.57,46.984 +221563,257.5,49.097 +221564,255.67,51.106 +221565,260.7,44.812 +221566,258.3,47.022 +221567,256.2,49.112 +221568,254.33,51.1 +221569,259.47,44.875 +221570,257.04,47.06 +221571,254.91,49.126 +221572,253,51.092 +221573,258.24,44.941 +221574,255.77,47.099 +221575,253.61,49.14 +221576,251.67,51.083 +221577,257.01,45.008 +221578,254.51,47.138 +221579,252.31,49.154 +221580,250.35,51.073 +221581,255.77,45.076 +221582,253.24,47.178 +221583,251.02,49.167 +221584,249.02,51.061 +221585,254.53,45.146 +221586,251.98,47.218 +221587,249.72,49.18 +221588,247.69,51.048 +221589,253.29,45.218 +221590,250.71,47.259 +221591,248.42,49.192 +221592,246.37,51.033 +221593,252.05,45.291 +221594,249.44,47.3 +221595,247.13,49.204 +221596,245.05,51.017 +221597,250.8,45.366 +221598,248.17,47.342 +221599,245.83,49.215 +221600,243.73,50.999 +221601,249.55,45.442 +221602,246.9,47.384 +221603,244.54,49.226 +221604,242.41,50.981 +221605,248.3,45.52 +221606,245.63,47.427 +221607,243.25,49.236 +221608,241.09,50.961 +221609,247.05,45.599 +221610,244.36,47.471 +221611,241.95,49.246 +221612,239.77,50.94 +221613,245.8,45.679 +221614,243.09,47.514 +221615,240.66,49.256 +221616,238.46,50.917 +221617,244.54,45.761 +221618,241.82,47.559 +221619,239.37,49.265 +221620,237.15,50.893 +221621,243.28,45.844 +221622,240.54,47.603 +221623,238.08,49.274 +221624,235.83,50.869 +221625,242.02,45.929 +221626,239.27,47.649 +221627,236.79,49.283 +221628,234.52,50.843 +221629,240.76,46.014 +221630,237.99,47.694 +221631,235.5,49.291 +221632,233.21,50.815 +221633,239.49,46.101 +221634,236.72,47.74 +221635,234.21,49.299 +221636,231.91,50.787 +221637,238.22,46.189 +221638,235.44,47.787 +221639,232.92,49.306 +221640,230.6,50.758 +221641,236.95,46.278 +221642,234.16,47.833 +221643,231.63,49.313 +221644,229.3,50.727 +221645,235.68,46.369 +221646,232.88,47.881 +221647,230.34,49.32 +221648,228,50.696 +221649,234.4,46.46 +221650,231.61,47.928 +221651,229.05,49.326 +221652,226.7,50.663 +221653,233.12,46.552 +221654,230.33,47.976 +221655,227.77,49.333 +221656,225.4,50.63 +221657,231.84,46.645 +221658,229.05,48.024 +221659,226.48,49.338 +221660,224.1,50.596 +221661,230.56,46.739 +221662,227.76,48.073 +221663,225.19,49.344 +221664,222.81,50.56 +221665,229.28,46.835 +221666,226.48,48.122 +221667,223.91,49.349 +221668,221.51,50.524 +221669,227.99,46.93 +221670,225.2,48.171 +221671,222.62,49.354 +221672,220.22,50.487 +221673,226.7,47.027 +221674,223.92,48.221 +221675,221.34,49.359 +221676,218.93,50.449 +221677,225.41,47.125 +221678,222.63,48.27 +221679,220.06,49.364 +221680,217.65,50.411 +221681,224.11,47.223 +221682,221.35,48.32 +221683,218.77,49.368 +221684,216.36,50.371 +221685,222.82,47.322 +221686,220.06,48.371 +221687,217.49,49.372 +221688,215.08,50.331 +221689,221.52,47.421 +221690,218.77,48.421 +221691,216.21,49.376 +221692,213.79,50.29 +221693,220.22,47.521 +221694,217.49,48.472 +221695,214.93,49.38 +221696,212.51,50.249 +221697,218.92,47.622 +221698,216.2,48.523 +221699,213.65,49.383 +221700,211.24,50.207 +221701,217.61,47.723 +221702,214.91,48.574 +221703,212.37,49.386 +221704,209.96,50.164 +221705,216.31,47.825 +221706,213.62,48.626 +221707,211.09,49.39 +221708,208.68,50.121 +221709,215,47.927 +221710,212.33,48.677 +221711,209.81,49.393 +221712,207.41,50.077 +221713,213.69,48.029 +221714,211.04,48.729 +221715,208.53,49.396 +221716,206.14,50.033 +221717,212.38,48.132 +221718,209.75,48.781 +221719,207.25,49.398 +221720,204.87,49.988 +221721,211.06,48.235 +221722,208.45,48.833 +221723,205.97,49.401 +221724,203.6,49.943 +221725,209.74,48.339 +221726,207.16,48.885 +221727,204.7,49.404 +221728,202.34,49.897 +221729,208.42,48.442 +221730,205.87,48.937 +221731,203.42,49.406 +221732,201.08,49.851 +221733,207.1,48.546 +221734,204.57,48.99 +221735,202.15,49.409 +221736,199.81,49.805 +221737,205.78,48.65 +221738,203.28,49.042 +221739,200.87,49.411 +221740,198.55,49.759 +221741,204.46,48.754 +221742,201.98,49.095 +221743,199.6,49.413 +221744,197.3,49.712 +221745,203.13,48.858 +221746,200.68,49.147 +221747,198.32,49.415 +221748,196.04,49.665 +221749,201.8,48.962 +221750,199.39,49.2 +221751,197.05,49.418 +221752,194.79,49.618 +221753,200.47,49.066 +221754,198.09,49.253 +221755,195.78,49.42 +221756,193.53,49.571 +221757,199.14,49.17 +221758,196.79,49.305 +221759,194.5,49.422 +221760,192.28,49.524 +221761,197.81,49.274 +221762,195.49,49.358 +221763,193.23,49.425 +221764,191.04,49.476 +221765,196.47,49.378 +221766,194.19,49.41 +221767,191.96,49.427 +221768,189.79,49.429 +221769,195.14,49.481 +221770,192.89,49.463 +221771,190.69,49.429 +221772,188.54,49.382 +221773,193.8,49.585 +221774,191.59,49.516 +221775,189.42,49.432 +221776,187.3,49.334 +221777,192.46,49.688 +221778,190.28,49.568 +221779,188.15,49.434 +221780,186.06,49.287 +221781,191.12,49.79 +221782,188.98,49.621 +221783,186.88,49.437 +221784,184.82,49.24 +221785,189.77,49.893 +221786,187.68,49.673 +221787,185.61,49.439 +221788,183.58,49.193 +221789,188.43,49.995 +221790,186.37,49.725 +221791,184.34,49.442 +221792,182.35,49.147 +221793,187.08,50.096 +221794,185.07,49.778 +221795,183.08,49.445 +221796,181.11,49.101 +221797,185.74,50.197 +221798,183.76,49.83 +221799,181.81,49.448 +221800,179.88,49.054 +221801,184.39,50.298 +221802,182.46,49.882 +221803,180.54,49.451 +221804,178.65,49.009 +221805,183.04,50.398 +221806,181.15,49.933 +221807,179.28,49.455 +221808,177.42,48.963 +221809,181.69,50.498 +221810,179.84,49.985 +221811,178.01,49.458 +221812,176.19,48.919 +221813,180.34,50.596 +221814,178.54,50.036 +221815,176.75,49.462 +221816,174.96,48.874 +221817,178.98,50.695 +221818,177.23,50.088 +221819,175.48,49.466 +221820,173.74,48.83 +221821,177.63,50.792 +221822,175.92,50.139 +221823,174.22,49.47 +221824,172.52,48.787 +221825,176.27,50.889 +221826,174.61,50.19 +221827,172.95,49.474 +221828,171.3,48.744 +221829,174.91,50.985 +221830,173.3,50.24 +221831,171.69,49.479 +221832,170.08,48.701 +221833,173.56,51.081 +221834,171.99,50.291 +221835,170.42,49.483 +221836,168.86,48.66 +221837,172.2,51.176 +221838,170.68,50.341 +221839,169.16,49.488 +221840,167.64,48.619 +221841,170.84,51.269 +221842,169.37,50.391 +221843,167.9,49.494 +221844,166.42,48.578 +221845,169.48,51.362 +221846,168.06,50.441 +221847,166.64,49.499 +221848,165.21,48.539 +221849,168.11,51.454 +221850,166.75,50.49 +221851,165.37,49.505 +221852,164,48.5 +221853,166.75,51.545 +221854,165.43,50.539 +221855,164.11,49.511 +221856,162.79,48.462 +221857,165.39,51.635 +221858,164.12,50.588 +221859,162.85,49.518 +221860,161.58,48.425 +221861,164.02,51.725 +221862,162.81,50.637 +221863,161.59,49.525 +221864,160.37,48.388 +221865,162.66,51.813 +221866,161.49,50.685 +221867,160.33,49.532 +221868,159.16,48.353 +221869,161.29,51.9 +221870,160.18,50.733 +221871,159.07,49.539 +221872,157.95,48.319 +221873,159.93,51.986 +221874,158.87,50.781 +221875,157.81,49.547 +221876,156.75,48.285 +221877,158.56,52.071 +221878,157.55,50.828 +221879,156.55,49.555 +221880,155.54,48.253 +221881,157.19,52.155 +221882,156.24,50.875 +221883,155.29,49.564 +221884,154.34,48.222 +221885,155.82,52.238 +221886,154.92,50.921 +221887,154.03,49.573 +221888,153.13,48.191 +221889,154.45,52.319 +221890,153.61,50.968 +221891,152.77,49.582 +221892,151.93,48.162 +221893,153.08,52.399 +221894,152.29,51.013 +221895,151.51,49.592 +221896,150.73,48.134 +221897,151.71,52.479 +221898,150.98,51.059 +221899,150.25,49.602 +221900,149.53,48.108 +221901,150.34,52.557 +221902,149.66,51.104 +221903,148.99,49.613 +221904,148.33,48.082 +221905,148.97,52.633 +221906,148.34,51.148 +221907,147.73,49.624 +221908,147.13,48.058 +221909,147.6,52.709 +221910,147.03,51.193 +221911,146.47,49.635 +221912,145.94,48.035 +221913,146.23,52.783 +221914,145.71,51.236 +221915,145.21,49.647 +221916,144.74,48.013 +221917,144.86,52.855 +221918,144.39,51.28 +221919,143.95,49.659 +221920,143.54,47.992 +221921,143.48,52.927 +221922,143.08,51.323 +221923,142.7,49.672 +221924,142.35,47.973 +221925,142.11,52.997 +221926,141.76,51.365 +221927,141.44,49.685 +221928,141.15,47.955 +221929,140.74,53.066 +221930,140.44,51.407 +221931,140.18,49.699 +221932,139.96,47.939 +221933,139.37,53.133 +221934,139.12,51.449 +221935,138.92,49.713 +221936,138.76,47.924 +221937,137.99,53.199 +221938,137.81,51.49 +221939,137.66,49.728 +221940,137.57,47.911 +221941,136.62,53.264 +221942,136.49,51.531 +221943,136.4,49.743 +221944,136.37,47.899 +221945,135.25,53.327 +221946,135.17,51.571 +221947,135.14,49.759 +221948,135.18,47.888 +221949,133.87,53.389 +221950,133.85,51.61 +221951,133.89,49.775 +221952,133.98,47.879 +221953,132.5,53.449 +221954,132.53,51.65 +221955,132.63,49.792 +221956,132.79,47.872 +221957,131.13,53.508 +221958,131.22,51.688 +221959,131.37,49.809 +221960,131.6,47.866 +221961,129.76,53.565 +221962,129.9,51.727 +221963,130.11,49.827 +221964,130.4,47.861 +221965,128.38,53.621 +221966,128.58,51.764 +221967,128.85,49.846 +221968,129.21,47.859 +221969,127.01,53.675 +221970,127.26,51.802 +221971,127.59,49.864 +221972,128.01,47.857 +221973,125.64,53.728 +221974,125.94,51.838 +221975,126.33,49.884 +221976,126.82,47.858 +221977,124.27,53.779 +221978,124.63,51.875 +221979,125.07,49.904 +221980,125.62,47.86 +221981,122.9,53.829 +221982,123.31,51.91 +221983,123.81,49.924 +221984,124.43,47.864 +221985,121.53,53.877 +221986,121.99,51.945 +221987,122.55,49.945 +221988,123.23,47.869 +221989,120.15,53.924 +221990,120.67,51.98 +221991,121.29,49.967 +221992,122.04,47.876 +221993,118.78,53.969 +221994,119.35,52.014 +221995,120.03,49.989 +221996,120.84,47.885 +221997,117.41,54.012 +221998,118.04,52.048 +221999,118.77,50.012 +222000,119.64,47.896 +222001,116.04,54.054 +222002,116.72,52.081 +222003,117.51,50.035 +222004,118.45,47.908 +222005,114.68,54.095 +222006,115.4,52.114 +222007,116.25,50.059 +222008,117.25,47.922 +222009,113.31,54.134 +222010,114.08,52.146 +222011,114.99,50.083 +222012,116.05,47.937 +222013,111.94,54.171 +222014,112.77,52.177 +222015,113.73,50.108 +222016,114.85,47.955 +222017,110.57,54.207 +222018,111.45,52.208 +222019,112.46,50.134 +222020,113.65,47.974 +222021,109.21,54.241 +222022,110.13,52.239 +222023,111.2,50.16 +222024,112.45,47.995 +222025,107.84,54.274 +222026,108.82,52.269 +222027,109.94,50.186 +222028,111.24,48.017 +222029,106.47,54.305 +222030,107.5,52.298 +222031,108.68,50.214 +222032,110.04,48.041 +222033,105.11,54.334 +222034,106.18,52.327 +222035,107.41,50.241 +222036,108.83,48.067 +222037,103.75,54.362 +222038,104.87,52.355 +222039,106.15,50.27 +222040,107.63,48.095 +222041,102.38,54.389 +222042,103.55,52.383 +222043,104.88,50.299 +222044,106.42,48.125 +222045,101.02,54.414 +222046,102.24,52.411 +222047,103.62,50.328 +222048,105.21,48.156 +222049,99.659,54.437 +222050,100.92,52.437 +222051,102.35,50.358 +222052,104,48.189 +222053,98.298,54.459 +222054,99.606,52.464 +222055,101.09,50.389 +222056,102.79,48.224 +222057,96.938,54.479 +222058,98.292,52.489 +222059,99.823,50.42 +222060,101.58,48.26 +222061,95.58,54.498 +222062,96.977,52.515 +222063,98.556,50.452 +222064,100.36,48.298 +222065,94.222,54.515 +222066,95.663,52.539 +222067,97.289,50.484 +222068,99.147,48.338 +222069,92.866,54.53 +222070,94.349,52.563 +222071,96.021,50.517 +222072,97.93,48.38 +222073,91.51,54.545 +222074,93.036,52.587 +222075,94.753,50.55 +222076,96.711,48.423 +222077,90.155,54.557 +222078,91.723,52.61 +222079,93.484,50.584 +222080,95.49,48.468 +222081,88.802,54.568 +222082,90.41,52.633 +222083,92.215,50.619 +222084,94.268,48.515 +222085,87.45,54.578 +222086,89.098,52.655 +222087,90.945,50.654 +222088,93.044,48.563 +222089,86.098,54.586 +222090,87.786,52.677 +222091,89.675,50.689 +222092,91.818,48.613 +222093,84.748,54.593 +222094,86.474,52.698 +222095,88.404,50.725 +222096,90.591,48.664 +222097,83.4,54.598 +222098,85.163,52.719 +222099,87.132,50.762 +222100,89.361,48.717 +222101,82.052,54.602 +222102,83.852,52.739 +222103,85.86,50.799 +222104,88.13,48.772 +222105,80.706,54.605 +222106,82.541,52.758 +222107,84.587,50.836 +222108,86.896,48.828 +222109,79.361,54.606 +222110,81.231,52.778 +222111,83.314,50.875 +222112,85.661,48.886 +222113,78.017,54.606 +222114,79.922,52.796 +222115,82.039,50.913 +222116,84.424,48.946 +222117,76.674,54.604 +222118,78.613,52.815 +222119,80.765,50.952 +222120,83.185,49.007 +222121,75.333,54.601 +222122,77.304,52.832 +222123,79.489,50.992 +222124,81.943,49.069 +222125,73.994,54.596 +222126,75.996,52.85 +222127,78.213,51.032 +222128,80.7,49.133 +222129,72.655,54.591 +222130,74.688,52.867 +222131,76.936,51.073 +222132,79.455,49.198 +222133,71.319,54.584 +222134,73.381,52.883 +222135,75.659,51.114 +222136,78.207,49.265 +222137,69.983,54.575 +222138,72.074,52.899 +222139,74.381,51.155 +222140,76.957,49.333 +222141,68.649,54.566 +222142,70.768,52.915 +222143,73.102,51.197 +222144,75.705,49.403 +222145,67.317,54.555 +222146,69.462,52.93 +222147,71.823,51.239 +222148,74.451,49.474 +222149,65.986,54.543 +222150,68.157,52.945 +222151,70.542,51.282 +222152,73.195,49.546 +222153,64.657,54.53 +222154,66.852,52.959 +222155,69.261,51.325 +222156,71.937,49.619 +222157,63.329,54.515 +222158,65.548,52.973 +222159,67.98,51.369 +222160,70.676,49.694 +222161,62.003,54.5 +222162,64.244,52.987 +222163,66.697,51.413 +222164,69.413,49.77 +222165,60.678,54.483 +222166,62.941,53 +222167,65.414,51.458 +222168,68.148,49.848 +222169,59.355,54.465 +222170,61.638,53.013 +222171,64.13,51.502 +222172,66.88,49.926 +222173,58.034,54.446 +222174,60.336,53.025 +222175,62.846,51.548 +222176,65.611,50.006 +222177,56.714,54.427 +222178,59.035,53.037 +222179,61.56,51.593 +222180,64.338,50.086 +222181,55.396,54.406 +222182,57.734,53.049 +222183,60.274,51.639 +222184,63.064,50.168 +222185,54.08,54.384 +222186,56.433,53.061 +222187,58.988,51.685 +222188,61.788,50.251 +222189,52.765,54.361 +222190,55.134,53.072 +222191,57.7,51.732 +222192,60.509,50.335 +222193,51.452,54.337 +222194,53.834,53.082 +222195,56.412,51.779 +222196,59.228,50.42 +222197,50.141,54.312 +222198,52.535,53.093 +222199,55.122,51.826 +222200,57.944,50.505 +222201,48.831,54.286 +222202,51.237,53.103 +222203,53.833,51.874 +222204,56.658,50.592 +222205,47.524,54.259 +222206,49.94,53.113 +222207,52.542,51.922 +222208,55.37,50.68 +222209,46.218,54.232 +222210,48.643,53.123 +222211,51.251,51.97 +222212,54.08,50.768 +222213,44.914,54.203 +222214,47.346,53.132 +222215,49.959,52.019 +222216,52.788,50.858 +222217,43.611,54.174 +222218,46.05,53.141 +222219,48.666,52.067 +222220,51.493,50.948 +222221,42.311,54.144 +222222,44.755,53.15 +222223,47.372,52.116 +222224,50.196,51.038 +222225,41.012,54.113 +222226,43.461,53.158 +222227,46.078,52.166 +222228,48.897,51.13 +222229,39.715,54.082 +222230,42.166,53.167 +222231,44.782,52.215 +222232,47.595,51.222 +222233,38.42,54.05 +222234,40.873,53.175 +222235,43.487,52.265 +222236,46.292,51.315 +222237,37.126,54.017 +222238,39.58,53.183 +222239,42.19,52.315 +222240,44.986,51.408 +222241,35.835,53.984 +222242,38.288,53.19 +222243,40.893,52.365 +222244,43.678,51.502 +222245,34.545,53.95 +222246,36.996,53.198 +222247,39.594,52.415 +222248,42.368,51.597 +222249,33.258,53.916 +222250,35.705,53.205 +222251,38.296,52.465 +222252,41.055,51.692 +222253,31.972,53.881 +222254,34.414,53.212 +222255,36.996,52.516 +222256,39.741,51.787 +222257,30.688,53.845 +222258,33.124,53.219 +222259,35.696,52.567 +222260,38.424,51.883 +222261,29.405,53.809 +222262,31.835,53.226 +222263,34.394,52.618 +222264,37.106,51.979 +222265,28.125,53.773 +222266,30.546,53.233 +222267,33.093,52.669 +222268,35.785,52.076 +222269,26.846,53.736 +222270,29.258,53.24 +222271,31.79,52.72 +222272,34.463,52.173 +222273,25.57,53.699 +222274,27.97,53.246 +222275,30.487,52.771 +222276,33.138,52.27 +222277,24.295,53.662 +222278,26.683,53.253 +222279,29.183,52.822 +222280,31.811,52.367 +222281,23.022,53.624 +222282,25.397,53.259 +222283,27.878,52.874 +222284,30.483,52.465 +222285,21.751,53.586 +222286,24.111,53.265 +222287,26.573,52.925 +222288,29.152,52.563 +222289,20.481,53.548 +222290,22.825,53.272 +222291,25.267,52.977 +222292,27.82,52.66 +222293,19.214,53.51 +222294,21.541,53.278 +222295,23.96,53.028 +222296,26.485,52.758 +222297,17.948,53.471 +222298,20.256,53.284 +222299,22.653,53.08 +222300,25.149,52.856 +222301,16.684,53.433 +222302,18.973,53.29 +222303,21.345,53.131 +222304,23.811,52.954 +222305,15.422,53.394 +222306,17.69,53.296 +222307,20.036,53.183 +222308,22.472,53.052 +222309,14.162,53.355 +222310,16.407,53.302 +222311,18.726,53.235 +222312,21.13,53.15 +222313,12.904,53.316 +222314,15.125,53.308 +222315,17.416,53.286 +222316,19.787,53.247 +222317,11.647,53.278 +222318,13.843,53.314 +222319,16.106,53.338 +222320,18.442,53.345 +222321,10.392,53.239 +222322,12.562,53.321 +222323,14.794,53.389 +222324,17.096,53.442 +222325,9.1391,53.2 +222326,11.282,53.327 +222327,13.482,53.44 +222328,15.747,53.539 +222329,7.8876,53.162 +222330,10.002,53.333 +222331,12.17,53.492 +222332,14.398,53.636 +222333,6.638,53.123 +222334,8.7225,53.339 +222335,10.857,53.543 +222336,13.046,53.732 +222337,5.39,53.085 +222338,7.4435,53.346 +222339,9.5429,53.594 +222340,11.694,53.829 +222341,4.1437,53.047 +222342,6.165,53.352 +222343,8.2286,53.645 +222344,10.339,53.924 +222345,2.899,53.01 +222346,4.887,53.359 +222347,6.9137,53.696 +222348,8.9836,54.02 +222349,1.656,52.973 +222350,3.6095,53.366 +222351,5.5983,53.747 +222352,7.6265,54.115 +222353,0.41463,52.936 +222354,2.3324,53.372 +222355,4.2823,53.798 +222356,6.268,54.209 +222357,359.17,52.899 +222358,1.0558,53.379 +222359,2.9657,53.848 +222360,4.9082,54.304 +222361,357.94,52.863 +222362,359.78,53.386 +222363,1.6487,53.899 +222364,3.547,54.397 +222365,356.7,52.827 +222366,358.5,53.394 +222367,0.33107,53.949 +222368,2.1846,54.49 +222369,355.46,52.792 +222370,357.23,53.401 +222371,359.01,53.999 +222372,0.82095,54.582 +222373,354.23,52.757 +222374,355.95,53.409 +222375,357.69,54.048 +222376,359.46,54.674 +222377,353,52.723 +222378,354.68,53.417 +222379,356.38,54.098 +222380,358.09,54.765 +222381,351.77,52.689 +222382,353.4,53.425 +222383,355.06,54.147 +222384,356.72,54.855 +222385,350.54,52.656 +222386,352.13,53.433 +222387,353.74,54.197 +222388,355.35,54.945 +222389,349.31,52.623 +222390,350.86,53.441 +222391,352.42,54.245 +222392,353.99,55.034 +222393,348.08,52.592 +222394,349.58,53.45 +222395,351.09,54.294 +222396,352.62,55.122 +222397,346.86,52.56 +222398,348.31,53.459 +222399,349.77,54.342 +222400,351.24,55.209 +222401,345.64,52.53 +222402,347.04,53.468 +222403,348.45,54.391 +222404,349.87,55.296 +222405,344.41,52.5 +222406,345.77,53.478 +222407,347.13,54.438 +222408,348.5,55.381 +222409,343.19,52.472 +222410,344.5,53.487 +222411,345.81,54.486 +222412,347.13,55.466 +222413,341.97,52.444 +222414,343.22,53.497 +222415,344.48,54.533 +222416,345.75,55.55 +222417,340.75,52.417 +222418,341.95,53.508 +222419,343.16,54.58 +222420,344.38,55.633 +222421,339.53,52.39 +222422,340.68,53.518 +222423,341.84,54.627 +222424,343,55.715 +222425,338.32,52.365 +222426,339.41,53.529 +222427,340.51,54.673 +222428,341.62,55.795 +222429,337.1,52.341 +222430,338.14,53.541 +222431,339.19,54.719 +222432,340.24,55.875 +222433,335.89,52.317 +222434,336.87,53.552 +222435,337.87,54.765 +222436,338.87,55.954 +222437,334.67,52.295 +222438,335.6,53.564 +222439,336.54,54.81 +222440,337.49,56.032 +222441,333.46,52.274 +222442,334.33,53.576 +222443,335.22,54.855 +222444,336.11,56.109 +222445,332.25,52.253 +222446,333.06,53.589 +222447,333.89,54.899 +222448,334.73,56.184 +222449,331.03,52.234 +222450,331.79,53.602 +222451,332.56,54.944 +222452,333.35,56.258 +222453,329.82,52.216 +222454,330.52,53.615 +222455,331.24,54.987 +222456,331.97,56.332 +222457,328.61,52.199 +222458,329.25,53.629 +222459,329.91,55.031 +222460,330.59,56.404 +222461,327.4,52.183 +222462,327.99,53.643 +222463,328.59,55.074 +222464,329.21,56.475 +222465,326.19,52.168 +222466,326.72,53.658 +222467,327.26,55.116 +222468,327.82,56.544 +222469,324.99,52.155 +222470,325.45,53.673 +222471,325.93,55.158 +222472,326.44,56.613 +222473,323.78,52.143 +222474,324.18,53.688 +222475,324.61,55.2 +222476,325.06,56.68 +222477,322.57,52.132 +222478,322.91,53.704 +222479,323.28,55.242 +222480,323.68,56.746 +222481,321.36,52.122 +222482,321.64,53.72 +222483,321.95,55.282 +222484,322.29,56.811 +222485,320.16,52.114 +222486,320.37,53.736 +222487,320.63,55.323 +222488,320.91,56.874 +222489,318.95,52.106 +222490,319.11,53.753 +222491,319.3,55.363 +222492,319.53,56.936 +222493,317.75,52.101 +222494,317.84,53.771 +222495,317.97,55.403 +222496,318.15,56.997 +222497,316.54,52.096 +222498,316.57,53.789 +222499,316.64,55.442 +222500,316.76,57.056 +222501,315.33,52.093 +222502,315.3,53.807 +222503,315.32,55.48 +222504,315.38,57.114 +222505,314.13,52.092 +222506,314.03,53.826 +222507,313.99,55.519 +222508,314,57.171 +222509,312.92,52.091 +222510,312.76,53.845 +222511,312.66,55.556 +222512,312.61,57.226 +222513,311.72,52.092 +222514,311.49,53.865 +222515,311.33,55.594 +222516,311.23,57.28 +222517,310.51,52.095 +222518,310.23,53.885 +222519,310.01,55.63 +222520,309.85,57.333 +222521,309.31,52.099 +222522,308.96,53.906 +222523,308.68,55.667 +222524,308.47,57.384 +222525,308.1,52.104 +222526,307.69,53.927 +222527,307.35,55.703 +222528,307.09,57.434 +222529,306.89,52.111 +222530,306.42,53.949 +222531,306.03,55.738 +222532,305.7,57.482 +222533,305.69,52.12 +222534,305.15,53.971 +222535,304.7,55.773 +222536,304.32,57.529 +222537,304.48,52.13 +222538,303.88,53.993 +222539,303.37,55.807 +222540,302.94,57.574 +222541,303.27,52.141 +222542,302.61,54.016 +222543,302.04,55.841 +222544,301.56,57.618 +222545,302.07,52.154 +222546,301.34,54.04 +222547,300.72,55.875 +222548,300.18,57.661 +222549,300.86,52.168 +222550,300.07,54.064 +222551,299.39,55.908 +222552,298.8,57.702 +222553,299.65,52.184 +222554,298.8,54.089 +222555,298.06,55.94 +222556,297.42,57.742 +222557,298.44,52.202 +222558,297.53,54.114 +222559,296.74,55.972 +222560,296.04,57.78 +222561,297.23,52.221 +222562,296.26,54.139 +222563,295.41,56.003 +222564,294.66,57.817 +222565,296.02,52.241 +222566,294.99,54.165 +222567,294.08,56.034 +222568,293.29,57.852 +222569,294.81,52.263 +222570,293.72,54.192 +222571,292.76,56.065 +222572,291.91,57.886 +222573,293.59,52.287 +222574,292.44,54.219 +222575,291.43,56.095 +222576,290.53,57.918 +222577,292.38,52.312 +222578,291.17,54.246 +222579,290.1,56.124 +222580,289.16,57.949 +222581,291.17,52.339 +222582,289.9,54.274 +222583,288.78,56.153 +222584,287.78,57.979 +222585,289.95,52.367 +222586,288.63,54.303 +222587,287.45,56.181 +222588,286.41,58.007 +222589,288.74,52.397 +222590,287.35,54.332 +222591,286.13,56.209 +222592,285.03,58.033 +222593,287.52,52.428 +222594,286.08,54.361 +222595,284.8,56.237 +222596,283.66,58.059 +222597,286.3,52.461 +222598,284.81,54.391 +222599,283.48,56.264 +222600,282.29,58.082 +222601,285.08,52.495 +222602,283.53,54.422 +222603,282.15,56.29 +222604,280.92,58.104 +222605,283.86,52.531 +222606,282.26,54.453 +222607,280.83,56.316 +222608,279.55,58.125 +222609,282.64,52.569 +222610,280.98,54.485 +222611,279.51,56.342 +222612,278.18,58.145 +222613,281.41,52.608 +222614,279.71,54.517 +222615,278.18,56.366 +222616,276.81,58.162 +222617,280.19,52.648 +222618,278.43,54.549 +222619,276.86,56.391 +222620,275.45,58.179 +222621,278.96,52.69 +222622,277.15,54.582 +222623,275.54,56.415 +222624,274.08,58.194 +222625,277.73,52.734 +222626,275.88,54.615 +222627,274.21,56.438 +222628,272.71,58.208 +222629,276.5,52.779 +222630,274.6,54.649 +222631,272.89,56.461 +222632,271.35,58.22 +222633,275.27,52.825 +222634,273.32,54.684 +222635,271.57,56.484 +222636,269.99,58.231 +222637,274.04,52.873 +222638,272.04,54.719 +222639,270.25,56.506 +222640,268.63,58.241 +222641,272.81,52.922 +222642,270.76,54.754 +222643,268.93,56.528 +222644,267.27,58.249 +222645,271.57,52.973 +222646,269.48,54.79 +222647,267.61,56.549 +222648,265.91,58.256 +222649,270.33,53.025 +222650,268.2,54.826 +222651,266.29,56.57 +222652,264.55,58.261 +222653,269.09,53.078 +222654,266.92,54.863 +222655,264.97,56.59 +222656,263.19,58.266 +222657,267.85,53.133 +222658,265.64,54.9 +222659,263.65,56.61 +222660,261.84,58.268 +222661,266.61,53.19 +222662,264.36,54.937 +222663,262.33,56.629 +222664,260.48,58.27 +222665,265.36,53.247 +222666,263.08,54.975 +222667,261.01,56.648 +222668,259.13,58.27 +222669,264.12,53.306 +222670,261.79,55.014 +222671,259.69,56.666 +222672,257.78,58.269 +222673,262.87,53.367 +222674,260.51,55.053 +222675,258.38,56.684 +222676,256.43,58.267 +222677,261.62,53.428 +222678,259.22,55.092 +222679,257.06,56.702 +222680,255.08,58.264 +222681,260.37,53.491 +222682,257.94,55.131 +222683,255.74,56.719 +222684,253.73,58.259 +222685,259.11,53.555 +222686,256.65,55.172 +222687,254.43,56.736 +222688,252.39,58.253 +222689,257.85,53.62 +222690,255.37,55.212 +222691,253.11,56.752 +222692,251.04,58.246 +222693,256.6,53.687 +222694,254.08,55.253 +222695,251.8,56.768 +222696,249.7,58.238 +222697,255.34,53.755 +222698,252.79,55.294 +222699,250.48,56.784 +222700,248.36,58.229 +222701,254.07,53.824 +222702,251.5,55.336 +222703,249.17,56.799 +222704,247.02,58.219 +222705,252.81,53.894 +222706,250.22,55.378 +222707,247.85,56.814 +222708,245.68,58.207 +222709,251.54,53.965 +222710,248.93,55.42 +222711,246.54,56.828 +222712,244.34,58.194 +222713,250.27,54.037 +222714,247.64,55.463 +222715,245.23,56.842 +222716,243.01,58.181 +222717,249,54.11 +222718,246.34,55.506 +222719,243.92,56.856 +222720,241.67,58.166 +222721,247.73,54.185 +222722,245.05,55.549 +222723,242.6,56.87 +222724,240.34,58.151 +222725,246.45,54.26 +222726,243.76,55.593 +222727,241.29,56.883 +222728,239.01,58.134 +222729,245.17,54.336 +222730,242.47,55.637 +222731,239.98,56.895 +222732,237.68,58.116 +222733,243.89,54.413 +222734,241.17,55.681 +222735,238.67,56.908 +222736,236.35,58.098 +222737,242.61,54.491 +222738,239.88,55.726 +222739,237.36,56.92 +222740,235.03,58.078 +222741,241.33,54.57 +222742,238.58,55.771 +222743,236.06,56.932 +222744,233.71,58.058 +222745,240.04,54.65 +222746,237.29,55.816 +222747,234.75,56.943 +222748,232.38,58.037 +222749,238.75,54.731 +222750,235.99,55.861 +222751,233.44,56.954 +222752,231.06,58.014 +222753,237.46,54.813 +222754,234.69,55.907 +222755,232.13,56.965 +222756,229.74,57.992 +222757,236.17,54.895 +222758,233.4,55.953 +222759,230.83,56.976 +222760,228.43,57.968 +222761,234.87,54.978 +222762,232.1,55.999 +222763,229.52,56.986 +222764,227.11,57.943 +222765,233.58,55.061 +222766,230.8,56.045 +222767,228.22,56.996 +222768,225.8,57.918 +222769,232.28,55.146 +222770,229.5,56.092 +222771,226.91,57.006 +222772,224.49,57.892 +222773,230.97,55.231 +222774,228.2,56.139 +222775,225.61,57.016 +222776,223.18,57.866 +222777,229.67,55.316 +222778,226.89,56.186 +222779,224.3,57.025 +222780,221.87,57.839 +222781,228.36,55.403 +222782,225.59,56.233 +222783,223,57.035 +222784,220.56,57.811 +222785,227.06,55.489 +222786,224.29,56.281 +222787,221.7,57.044 +222788,219.26,57.782 +222789,225.75,55.577 +222790,222.98,56.328 +222791,220.4,57.053 +222792,217.96,57.753 +222793,224.43,55.664 +222794,221.68,56.376 +222795,219.1,57.061 +222796,216.66,57.724 +222797,223.12,55.752 +222798,220.37,56.424 +222799,217.8,57.07 +222800,215.36,57.694 +222801,221.8,55.841 +222802,219.07,56.472 +222803,216.5,57.078 +222804,214.06,57.663 +222805,220.48,55.93 +222806,217.76,56.52 +222807,215.2,57.086 +222808,212.77,57.633 +222809,219.16,56.019 +222810,216.45,56.568 +222811,213.9,57.094 +222812,211.47,57.601 +222813,217.84,56.109 +222814,215.15,56.616 +222815,212.6,57.102 +222816,210.18,57.57 +222817,216.51,56.199 +222818,213.84,56.665 +222819,211.3,57.11 +222820,208.89,57.537 +222821,215.19,56.289 +222822,212.53,56.713 +222823,210.01,57.118 +222824,207.6,57.505 +222825,213.86,56.379 +222826,211.22,56.762 +222827,208.71,57.125 +222828,206.32,57.472 +222829,212.53,56.469 +222830,209.91,56.81 +222831,207.41,57.133 +222832,205.03,57.439 +222833,211.2,56.56 +222834,208.59,56.859 +222835,206.12,57.14 +222836,203.75,57.406 +222837,209.86,56.651 +222838,207.28,56.908 +222839,204.82,57.148 +222840,202.47,57.373 +222841,208.52,56.741 +222842,205.97,56.957 +222843,203.53,57.155 +222844,201.19,57.34 +222845,207.18,56.832 +222846,204.66,57.005 +222847,202.24,57.162 +222848,199.91,57.306 +222849,205.84,56.923 +222850,203.34,57.054 +222851,200.94,57.17 +222852,198.64,57.272 +222853,204.5,57.013 +222854,202.03,57.103 +222855,199.65,57.177 +222856,197.37,57.238 +222857,203.16,57.104 +222858,200.71,57.151 +222859,198.36,57.184 +222860,196.09,57.205 +222861,201.81,57.195 +222862,199.39,57.2 +222863,197.07,57.191 +222864,194.82,57.171 +222865,200.46,57.285 +222866,198.08,57.249 +222867,195.78,57.199 +222868,193.56,57.137 +222869,199.12,57.375 +222870,196.76,57.297 +222871,194.49,57.206 +222872,192.29,57.103 +222873,197.76,57.465 +222874,195.44,57.346 +222875,193.2,57.213 +222876,191.03,57.07 +222877,196.41,57.555 +222878,194.12,57.394 +222879,191.91,57.221 +222880,189.76,57.036 +222881,195.06,57.645 +222882,192.8,57.443 +222883,190.62,57.228 +222884,188.5,57.003 +222885,193.7,57.734 +222886,191.48,57.491 +222887,189.33,57.235 +222888,187.24,56.97 +222889,192.34,57.823 +222890,190.16,57.539 +222891,188.05,57.243 +222892,185.98,56.937 +222893,190.99,57.911 +222894,188.84,57.587 +222895,186.76,57.251 +222896,184.73,56.904 +222897,189.63,57.999 +222898,187.52,57.635 +222899,185.47,57.258 +222900,183.47,56.872 +222901,188.26,58.087 +222902,186.2,57.683 +222903,184.19,57.266 +222904,182.22,56.84 +222905,186.9,58.174 +222906,184.88,57.73 +222907,182.9,57.274 +222908,180.97,56.808 +222909,185.54,58.261 +222910,183.55,57.778 +222911,181.62,57.282 +222912,179.72,56.777 +222913,184.17,58.347 +222914,182.23,57.825 +222915,180.33,57.291 +222916,178.47,56.746 +222917,182.8,58.433 +222918,180.91,57.872 +222919,179.05,57.299 +222920,177.22,56.716 +222921,181.43,58.518 +222922,179.58,57.919 +222923,177.76,57.307 +222924,175.98,56.686 +222925,180.07,58.602 +222926,178.26,57.965 +222927,176.48,57.316 +222928,174.73,56.656 +222929,178.69,58.686 +222930,176.93,58.012 +222931,175.2,57.325 +222932,173.49,56.627 +222933,177.32,58.769 +222934,175.6,58.058 +222935,173.91,57.334 +222936,172.25,56.599 +222937,175.95,58.852 +222938,174.28,58.104 +222939,172.63,57.343 +222940,171.01,56.571 +222941,174.57,58.934 +222942,172.95,58.15 +222943,171.35,57.353 +222944,169.77,56.544 +222945,173.2,59.015 +222946,171.62,58.195 +222947,170.07,57.363 +222948,168.54,56.518 +222949,171.82,59.095 +222950,170.3,58.241 +222951,168.79,57.373 +222952,167.3,56.492 +222953,170.45,59.174 +222954,168.97,58.286 +222955,167.51,57.383 +222956,166.07,56.467 +222957,169.07,59.253 +222958,167.64,58.33 +222959,166.23,57.393 +222960,164.83,56.443 +222961,167.69,59.33 +222962,166.31,58.375 +222963,164.95,57.404 +222964,163.6,56.419 +222965,166.31,59.407 +222966,164.98,58.419 +222967,163.67,57.415 +222968,162.37,56.397 +222969,164.93,59.483 +222970,163.65,58.463 +222971,162.39,57.426 +222972,161.14,56.375 +222973,163.55,59.558 +222974,162.32,58.506 +222975,161.11,57.438 +222976,159.91,56.354 +222977,162.16,59.632 +222978,160.99,58.549 +222979,159.83,57.449 +222980,158.68,56.334 +222981,160.78,59.705 +222982,159.66,58.592 +222983,158.55,57.461 +222984,157.46,56.314 +222985,159.4,59.778 +222986,158.33,58.635 +222987,157.27,57.474 +222988,156.23,56.296 +222989,158.01,59.849 +222990,157,58.677 +222991,156,57.486 +222992,155.01,56.279 +222993,156.63,59.919 +222994,155.67,58.719 +222995,154.72,57.5 +222996,153.78,56.262 +222997,155.24,59.988 +222998,154.33,58.76 +222999,153.44,57.513 +223000,152.56,56.247 +223001,153.86,60.056 +223002,153,58.801 +223003,152.16,57.527 +223004,151.34,56.232 +223005,152.47,60.123 +223006,151.67,58.842 +223007,150.89,57.541 +223008,150.12,56.219 +223009,151.08,60.188 +223010,150.34,58.882 +223011,149.61,57.555 +223012,148.9,56.207 +223013,149.7,60.253 +223014,149.01,58.922 +223015,148.33,57.57 +223016,147.68,56.196 +223017,148.31,60.316 +223018,147.67,58.962 +223019,147.06,57.585 +223020,146.46,56.186 +223021,146.92,60.379 +223022,146.34,59.001 +223023,145.78,57.6 +223024,145.24,56.177 +223025,145.53,60.44 +223026,145.01,59.04 +223027,144.5,57.616 +223028,144.02,56.169 +223029,144.14,60.5 +223030,143.67,59.078 +223031,143.23,57.632 +223032,142.8,56.162 +223033,142.76,60.559 +223034,142.34,59.116 +223035,141.95,57.649 +223036,141.59,56.157 +223037,141.37,60.616 +223038,141.01,59.154 +223039,140.67,57.666 +223040,140.37,56.153 +223041,139.98,60.672 +223042,139.67,59.191 +223043,139.4,57.683 +223044,139.15,56.15 +223045,138.59,60.727 +223046,138.34,59.228 +223047,138.12,57.701 +223048,137.94,56.148 +223049,137.2,60.781 +223050,137.01,59.264 +223051,136.84,57.719 +223052,136.72,56.148 +223053,135.81,60.834 +223054,135.67,59.3 +223055,135.57,57.738 +223056,135.51,56.148 +223057,134.42,60.885 +223058,134.34,59.335 +223059,134.29,57.757 +223060,134.29,56.15 +223061,133.03,60.935 +223062,133,59.37 +223063,133.02,57.777 +223064,133.07,56.154 +223065,131.64,60.983 +223066,131.67,59.405 +223067,131.74,57.796 +223068,131.86,56.158 +223069,130.26,61.03 +223070,130.34,59.439 +223071,130.46,57.817 +223072,130.64,56.164 +223073,128.87,61.076 +223074,129,59.472 +223075,129.19,57.837 +223076,129.43,56.172 +223077,127.48,61.121 +223078,127.67,59.506 +223079,127.91,57.859 +223080,128.21,56.18 +223081,126.09,61.164 +223082,126.33,59.538 +223083,126.63,57.88 +223084,127,56.19 +223085,124.7,61.206 +223086,125,59.57 +223087,125.36,57.902 +223088,125.78,56.202 +223089,123.32,61.247 +223090,123.67,59.602 +223091,124.08,57.925 +223092,124.57,56.214 +223093,121.93,61.286 +223094,122.33,59.633 +223095,122.8,57.948 +223096,123.35,56.228 +223097,120.54,61.324 +223098,121,59.664 +223099,121.53,57.971 +223100,122.13,56.244 +223101,119.16,61.361 +223102,119.67,59.695 +223103,120.25,57.995 +223104,120.91,56.261 +223105,117.77,61.396 +223106,118.33,59.725 +223107,118.97,58.019 +223108,119.7,56.279 +223109,116.38,61.43 +223110,117,59.754 +223111,117.69,58.044 +223112,118.48,56.299 +223113,115,61.462 +223114,115.67,59.783 +223115,116.42,58.069 +223116,117.26,56.32 +223117,113.62,61.493 +223118,114.33,59.811 +223119,115.14,58.095 +223120,116.04,56.342 +223121,112.23,61.523 +223122,113,59.839 +223123,113.86,58.121 +223124,114.82,56.366 +223125,110.85,61.551 +223126,111.67,59.867 +223127,112.58,58.147 +223128,113.6,56.391 +223129,109.47,61.578 +223130,110.34,59.894 +223131,111.3,58.174 +223132,112.38,56.418 +223133,108.08,61.604 +223134,109,59.921 +223135,110.02,58.202 +223136,111.16,56.446 +223137,106.7,61.628 +223138,107.67,59.947 +223139,108.74,58.23 +223140,109.93,56.475 +223141,105.32,61.651 +223142,106.34,59.972 +223143,107.46,58.258 +223144,108.71,56.506 +223145,103.94,61.673 +223146,105.01,59.998 +223147,106.18,58.287 +223148,107.48,56.538 +223149,102.57,61.693 +223150,103.68,60.022 +223151,104.9,58.316 +223152,106.26,56.572 +223153,101.19,61.712 +223154,102.35,60.047 +223155,103.62,58.345 +223156,105.03,56.607 +223157,99.812,61.729 +223158,101.02,60.07 +223159,102.34,58.376 +223160,103.8,56.643 +223161,98.436,61.745 +223162,99.687,60.094 +223163,101.06,58.406 +223164,102.57,56.681 +223165,97.061,61.76 +223166,98.357,60.117 +223167,99.777,58.437 +223168,101.34,56.72 +223169,95.687,61.774 +223170,97.028,60.139 +223171,98.494,58.468 +223172,100.11,56.761 +223173,94.314,61.786 +223174,95.698,60.161 +223175,97.211,58.5 +223176,98.875,56.802 +223177,92.942,61.797 +223178,94.369,60.182 +223179,95.928,58.533 +223180,97.641,56.846 +223181,91.572,61.807 +223182,93.041,60.204 +223183,94.644,58.565 +223184,96.405,56.89 +223185,90.202,61.815 +223186,91.713,60.224 +223187,93.36,58.598 +223188,95.168,56.936 +223189,88.833,61.822 +223190,90.385,60.244 +223191,92.075,58.632 +223192,93.929,56.983 +223193,87.466,61.828 +223194,89.057,60.264 +223195,90.79,58.666 +223196,92.689,57.031 +223197,86.1,61.832 +223198,87.73,60.283 +223199,89.504,58.7 +223200,91.447,57.081 +223201,84.735,61.836 +223202,86.404,60.302 +223203,88.218,58.735 +223204,90.204,57.132 +223205,83.371,61.838 +223206,85.077,60.321 +223207,86.931,58.77 +223208,88.959,57.184 +223209,82.009,61.839 +223210,83.752,60.339 +223211,85.644,58.806 +223212,87.712,57.237 +223213,80.647,61.838 +223214,82.426,60.356 +223215,84.356,58.842 +223216,86.464,57.292 +223217,79.287,61.837 +223218,81.101,60.374 +223219,83.067,58.878 +223220,85.214,57.348 +223221,77.929,61.834 +223222,79.777,60.391 +223223,81.778,58.915 +223224,83.963,57.405 +223225,76.572,61.831 +223226,78.453,60.407 +223227,80.489,58.952 +223228,82.709,57.463 +223229,75.216,61.826 +223230,77.129,60.423 +223231,79.199,58.989 +223232,81.454,57.522 +223233,73.861,61.82 +223234,75.806,60.439 +223235,77.908,59.027 +223236,80.197,57.583 +223237,72.508,61.813 +223238,74.483,60.454 +223239,76.617,59.065 +223240,78.939,57.644 +223241,71.157,61.805 +223242,73.161,60.469 +223243,75.325,59.104 +223244,77.678,57.707 +223245,69.807,61.795 +223246,71.84,60.483 +223247,74.032,59.143 +223248,76.415,57.771 +223249,68.458,61.785 +223250,70.518,60.498 +223251,72.739,59.182 +223252,75.151,57.836 +223253,67.111,61.774 +223254,69.198,60.511 +223255,71.445,59.221 +223256,73.884,57.901 +223257,65.765,61.761 +223258,67.878,60.525 +223259,70.151,59.261 +223260,72.616,57.968 +223261,64.421,61.748 +223262,66.558,60.538 +223263,68.856,59.301 +223264,71.346,58.036 +223265,63.079,61.734 +223266,65.239,60.551 +223267,67.56,59.342 +223268,70.073,58.104 +223269,61.738,61.719 +223270,63.921,60.563 +223271,66.264,59.382 +223272,68.799,58.174 +223273,60.399,61.703 +223274,62.603,60.575 +223275,64.967,59.423 +223276,67.523,58.245 +223277,59.061,61.686 +223278,61.285,60.587 +223279,63.67,59.465 +223280,66.244,58.316 +223281,57.725,61.668 +223282,59.968,60.599 +223283,62.371,59.506 +223284,64.964,58.388 +223285,56.391,61.649 +223286,58.652,60.61 +223287,61.072,59.548 +223288,63.681,58.461 +223289,55.058,61.63 +223290,57.336,60.621 +223291,59.773,59.59 +223292,62.397,58.535 +223293,53.727,61.61 +223294,56.021,60.632 +223295,58.472,59.633 +223296,61.11,58.61 +223297,52.398,61.588 +223298,54.707,60.642 +223299,57.171,59.675 +223300,59.821,58.685 +223301,51.07,61.567 +223302,53.393,60.653 +223303,55.87,59.718 +223304,58.531,58.761 +223305,49.744,61.544 +223306,52.079,60.662 +223307,54.567,59.761 +223308,57.238,58.838 +223309,48.42,61.521 +223310,50.766,60.672 +223311,53.264,59.804 +223312,55.943,58.915 +223313,47.097,61.497 +223314,49.454,60.682 +223315,51.961,59.848 +223316,54.645,58.993 +223317,45.777,61.473 +223318,48.142,60.691 +223319,50.656,59.891 +223320,53.346,59.072 +223321,44.458,61.447 +223322,46.831,60.7 +223323,49.351,59.935 +223324,52.045,59.151 +223325,43.14,61.422 +223326,45.521,60.709 +223327,48.046,59.979 +223328,50.741,59.231 +223329,41.825,61.395 +223330,44.211,60.717 +223331,46.739,60.023 +223332,49.436,59.311 +223333,40.511,61.369 +223334,42.901,60.726 +223335,45.432,60.068 +223336,48.128,59.392 +223337,39.199,61.341 +223338,41.593,60.734 +223339,44.124,60.112 +223340,46.818,59.473 +223341,37.889,61.314 +223342,40.285,60.742 +223343,42.816,60.157 +223344,45.507,59.555 +223345,36.581,61.285 +223346,38.977,60.75 +223347,41.506,60.201 +223348,44.193,59.636 +223349,35.274,61.257 +223350,37.67,60.758 +223351,40.197,60.246 +223352,42.877,59.719 +223353,33.97,61.228 +223354,36.364,60.766 +223355,38.886,60.291 +223356,41.559,59.801 +223357,32.667,61.198 +223358,35.058,60.773 +223359,37.575,60.336 +223360,40.239,59.884 +223361,31.365,61.168 +223362,33.753,60.781 +223363,36.263,60.381 +223364,38.917,59.968 +223365,30.066,61.138 +223366,32.448,60.788 +223367,34.95,60.426 +223368,37.593,60.051 +223369,28.769,61.108 +223370,31.144,60.795 +223371,33.637,60.471 +223372,36.267,60.135 +223373,27.473,61.078 +223374,29.841,60.802 +223375,32.323,60.517 +223376,34.939,60.218 +223377,26.179,61.047 +223378,28.538,60.809 +223379,31.008,60.562 +223380,33.609,60.302 +223381,24.887,61.016 +223382,27.236,60.816 +223383,29.693,60.607 +223384,32.277,60.386 +223385,23.596,60.985 +223386,25.934,60.823 +223387,28.377,60.653 +223388,30.943,60.47 +223389,22.308,60.954 +223390,24.633,60.83 +223391,27.061,60.698 +223392,29.607,60.555 +223393,21.021,60.922 +223394,23.333,60.837 +223395,25.743,60.743 +223396,28.269,60.639 +223397,19.736,60.891 +223398,22.033,60.844 +223399,24.425,60.789 +223400,26.93,60.723 +223401,18.452,60.859 +223402,20.733,60.851 +223403,23.107,60.834 +223404,25.588,60.807 +223405,17.171,60.828 +223406,19.434,60.858 +223407,21.788,60.879 +223408,24.245,60.891 +223409,15.891,60.797 +223410,18.136,60.864 +223411,20.468,60.924 +223412,22.9,60.975 +223413,14.613,60.765 +223414,16.839,60.871 +223415,19.148,60.97 +223416,21.553,61.058 +223417,13.337,60.734 +223418,15.541,60.878 +223419,17.827,61.015 +223420,20.205,61.142 +223421,12.062,60.703 +223422,14.245,60.885 +223423,16.505,61.06 +223424,18.854,61.225 +223425,10.789,60.672 +223426,12.949,60.892 +223427,15.183,61.105 +223428,17.502,61.308 +223429,9.5178,60.641 +223430,11.653,60.899 +223431,13.86,61.15 +223432,16.149,61.391 +223433,8.2482,60.611 +223434,10.358,60.906 +223435,12.537,61.194 +223436,14.793,61.474 +223437,6.9802,60.58 +223438,9.064,60.913 +223439,11.213,61.239 +223440,13.437,61.556 +223441,5.7139,60.55 +223442,7.77,60.921 +223443,9.8884,61.284 +223444,12.078,61.638 +223445,4.4493,60.521 +223446,6.4766,60.928 +223447,8.5634,61.328 +223448,10.718,61.719 +223449,3.1862,60.491 +223450,5.1836,60.935 +223451,7.2378,61.372 +223452,9.3567,61.8 +223453,1.9247,60.462 +223454,3.8912,60.943 +223455,5.9117,61.416 +223456,7.9937,61.881 +223457,0.66475,60.434 +223458,2.5992,60.951 +223459,4.585,61.46 +223460,6.6293,61.961 +223461,359.41,60.405 +223462,1.3078,60.958 +223463,3.2579,61.504 +223464,5.2635,62.041 +223465,358.15,60.378 +223466,0.016738,60.966 +223467,1.9302,61.548 +223468,3.8962,62.12 +223469,356.89,60.35 +223470,358.73,60.974 +223471,0.60205,61.591 +223472,2.5277,62.198 +223473,355.64,60.323 +223474,357.44,60.983 +223475,359.27,61.634 +223476,1.1578,62.276 +223477,354.39,60.297 +223478,356.15,60.991 +223479,357.94,61.677 +223480,359.79,62.354 +223481,353.14,60.272 +223482,354.86,61 +223483,356.61,61.72 +223484,358.41,62.43 +223485,351.89,60.246 +223486,353.57,61.009 +223487,355.28,61.763 +223488,357.04,62.506 +223489,350.64,60.222 +223490,352.28,61.018 +223491,353.95,61.805 +223492,355.67,62.582 +223493,349.39,60.198 +223494,350.99,61.027 +223495,352.62,61.847 +223496,354.29,62.656 +223497,348.15,60.175 +223498,349.7,61.036 +223499,351.29,61.889 +223500,352.91,62.73 +223501,346.9,60.152 +223502,348.42,61.046 +223503,349.96,61.93 +223504,351.53,62.803 +223505,345.66,60.131 +223506,347.13,61.056 +223507,348.63,61.972 +223508,350.16,62.876 +223509,344.42,60.11 +223510,345.84,61.066 +223511,347.3,62.013 +223512,348.78,62.947 +223513,343.18,60.089 +223514,344.56,61.077 +223515,345.96,62.053 +223516,347.39,63.018 +223517,341.94,60.07 +223518,343.27,61.087 +223519,344.63,62.094 +223520,346.01,63.088 +223521,340.7,60.051 +223522,341.99,61.098 +223523,343.3,62.134 +223524,344.63,63.157 +223525,339.46,60.034 +223526,340.7,61.11 +223527,341.96,62.174 +223528,343.25,63.225 +223529,338.22,60.017 +223530,339.42,61.121 +223531,340.63,62.213 +223532,341.86,63.292 +223533,336.99,60.001 +223534,338.13,61.133 +223535,339.29,62.252 +223536,340.48,63.358 +223537,335.76,59.986 +223538,336.85,61.145 +223539,337.96,62.291 +223540,339.09,63.423 +223541,334.52,59.972 +223542,335.56,61.157 +223543,336.62,62.33 +223544,337.7,63.487 +223545,333.29,59.958 +223546,334.28,61.17 +223547,335.29,62.368 +223548,336.32,63.551 +223549,332.06,59.946 +223550,333,61.183 +223551,333.95,62.406 +223552,334.93,63.613 +223553,330.83,59.935 +223554,331.71,61.196 +223555,332.62,62.443 +223556,333.54,63.674 +223557,329.6,59.925 +223558,330.43,61.21 +223559,331.28,62.48 +223560,332.15,63.734 +223561,328.37,59.916 +223562,329.15,61.224 +223563,329.94,62.517 +223564,330.76,63.793 +223565,327.14,59.908 +223566,327.86,61.239 +223567,328.61,62.554 +223568,329.37,63.851 +223569,325.91,59.901 +223570,326.58,61.253 +223571,327.27,62.59 +223572,327.98,63.908 +223573,324.68,59.895 +223574,325.3,61.268 +223575,325.93,62.625 +223576,326.59,63.964 +223577,323.46,59.89 +223578,324.02,61.284 +223579,324.6,62.66 +223580,325.2,64.018 +223581,322.23,59.886 +223582,322.73,61.3 +223583,323.26,62.695 +223584,323.81,64.072 +223585,321.01,59.884 +223586,321.45,61.316 +223587,321.92,62.73 +223588,322.42,64.124 +223589,319.78,59.882 +223590,320.17,61.332 +223591,320.58,62.764 +223592,321.02,64.175 +223593,318.56,59.882 +223594,318.89,61.349 +223595,319.25,62.797 +223596,319.63,64.225 +223597,317.33,59.883 +223598,317.61,61.366 +223599,317.91,62.83 +223600,318.24,64.274 +223601,316.11,59.885 +223602,316.32,61.384 +223603,316.57,62.863 +223604,316.85,64.322 +223605,314.88,59.889 +223606,315.04,61.402 +223607,315.23,62.896 +223608,315.46,64.368 +223609,313.66,59.893 +223610,313.76,61.421 +223611,313.9,62.928 +223612,314.06,64.413 +223613,312.44,59.899 +223614,312.48,61.439 +223615,312.56,62.959 +223616,312.67,64.457 +223617,311.21,59.906 +223618,311.2,61.459 +223619,311.22,62.99 +223620,311.28,64.5 +223621,309.99,59.914 +223622,309.91,61.478 +223623,309.88,63.021 +223624,309.89,64.541 +223625,308.77,59.924 +223626,308.63,61.498 +223627,308.54,63.051 +223628,308.49,64.581 +223629,307.54,59.935 +223630,307.35,61.519 +223631,307.21,63.081 +223632,307.1,64.62 +223633,306.32,59.947 +223634,306.07,61.54 +223635,305.87,63.11 +223636,305.71,64.658 +223637,305.1,59.961 +223638,304.79,61.561 +223639,304.53,63.139 +223640,304.32,64.694 +223641,303.87,59.975 +223642,303.5,61.583 +223643,303.19,63.168 +223644,302.93,64.729 +223645,302.65,59.991 +223646,302.22,61.605 +223647,301.85,63.196 +223648,301.54,64.763 +223649,301.42,60.009 +223650,300.94,61.628 +223651,300.52,63.223 +223652,300.15,64.795 +223653,300.2,60.027 +223654,299.66,61.651 +223655,299.18,63.25 +223656,298.76,64.826 +223657,298.97,60.047 +223658,298.37,61.674 +223659,297.84,63.277 +223660,297.37,64.856 +223661,297.75,60.068 +223662,297.09,61.698 +223663,296.5,63.303 +223664,295.98,64.885 +223665,296.52,60.091 +223666,295.81,61.722 +223667,295.17,63.329 +223668,294.59,64.912 +223669,295.3,60.115 +223670,294.53,61.747 +223671,293.83,63.355 +223672,293.2,64.938 +223673,294.07,60.14 +223674,293.24,61.772 +223675,292.49,63.38 +223676,291.81,64.963 +223677,292.84,60.166 +223678,291.96,61.797 +223679,291.16,63.404 +223680,290.43,64.986 +223681,291.61,60.194 +223682,290.67,61.823 +223683,289.82,63.428 +223684,289.04,65.009 +223685,290.39,60.223 +223686,289.39,61.849 +223687,288.48,63.452 +223688,287.65,65.029 +223689,289.16,60.253 +223690,288.11,61.876 +223691,287.15,63.475 +223692,286.27,65.049 +223693,287.93,60.285 +223694,286.82,61.903 +223695,285.81,63.498 +223696,284.88,65.067 +223697,286.7,60.318 +223698,285.54,61.931 +223699,284.48,63.52 +223700,283.5,65.084 +223701,285.46,60.352 +223702,284.25,61.959 +223703,283.14,63.542 +223704,282.12,65.1 +223705,284.23,60.388 +223706,282.97,61.987 +223707,281.8,63.563 +223708,280.74,65.115 +223709,283,60.425 +223710,281.68,62.016 +223711,280.47,63.584 +223712,279.35,65.128 +223713,281.76,60.463 +223714,280.39,62.045 +223715,279.14,63.605 +223716,277.97,65.14 +223717,280.53,60.502 +223718,279.11,62.075 +223719,277.8,63.625 +223720,276.59,65.151 +223721,279.29,60.543 +223722,277.82,62.105 +223723,276.47,63.644 +223724,275.22,65.16 +223725,278.05,60.584 +223726,276.53,62.136 +223727,275.13,63.664 +223728,273.84,65.168 +223729,276.81,60.627 +223730,275.24,62.166 +223731,273.8,63.682 +223732,272.46,65.175 +223733,275.57,60.672 +223734,273.96,62.198 +223735,272.47,63.701 +223736,271.09,65.181 +223737,274.33,60.717 +223738,272.67,62.229 +223739,271.13,63.719 +223740,269.71,65.186 +223741,273.08,60.764 +223742,271.38,62.261 +223743,269.8,63.736 +223744,268.34,65.189 +223745,271.84,60.812 +223746,270.09,62.294 +223747,268.47,63.754 +223748,266.97,65.192 +223749,270.59,60.861 +223750,268.8,62.326 +223751,267.14,63.77 +223752,265.6,65.193 +223753,269.35,60.911 +223754,267.51,62.359 +223755,265.81,63.787 +223756,264.23,65.193 +223757,268.1,60.962 +223758,266.22,62.393 +223759,264.48,63.803 +223760,262.86,65.192 +223761,266.85,61.014 +223762,264.93,62.427 +223763,263.15,63.818 +223764,261.49,65.19 +223765,265.6,61.068 +223766,263.63,62.461 +223767,261.82,63.834 +223768,260.12,65.186 +223769,264.34,61.122 +223770,262.34,62.495 +223771,260.49,63.849 +223772,258.76,65.182 +223773,263.09,61.178 +223774,261.05,62.53 +223775,259.16,63.863 +223776,257.39,65.176 +223777,261.83,61.235 +223778,259.76,62.566 +223779,257.83,63.877 +223780,256.03,65.17 +223781,260.57,61.292 +223782,258.46,62.601 +223783,256.5,63.891 +223784,254.67,65.162 +223785,259.31,61.351 +223786,257.17,62.637 +223787,255.17,63.904 +223788,253.31,65.154 +223789,258.05,61.411 +223790,255.87,62.673 +223791,253.85,63.918 +223792,251.95,65.144 +223793,256.79,61.472 +223794,254.58,62.71 +223795,252.52,63.93 +223796,250.6,65.133 +223797,255.52,61.533 +223798,253.28,62.746 +223799,251.19,63.943 +223800,249.24,65.122 +223801,254.26,61.596 +223802,251.98,62.784 +223803,249.87,63.955 +223804,247.89,65.109 +223805,252.99,61.659 +223806,250.69,62.821 +223807,248.54,63.966 +223808,246.54,65.096 +223809,251.72,61.724 +223810,249.39,62.859 +223811,247.22,63.978 +223812,245.18,65.082 +223813,250.45,61.789 +223814,248.09,62.897 +223815,245.89,63.989 +223816,243.84,65.066 +223817,249.17,61.855 +223818,246.79,62.935 +223819,244.57,64 +223820,242.49,65.05 +223821,247.9,61.922 +223822,245.49,62.973 +223823,243.25,64.01 +223824,241.14,65.033 +223825,246.62,61.99 +223826,244.19,63.012 +223827,241.92,64.021 +223828,239.8,65.016 +223829,245.34,62.058 +223830,242.89,63.051 +223831,240.6,64.031 +223832,238.45,64.997 +223833,244.06,62.128 +223834,241.59,63.09 +223835,239.28,64.04 +223836,237.11,64.978 +223837,242.77,62.198 +223838,240.29,63.13 +223839,237.96,64.05 +223840,235.77,64.958 +223841,241.49,62.268 +223842,238.98,63.17 +223843,236.64,64.059 +223844,234.43,64.937 +223845,240.2,62.339 +223846,237.68,63.21 +223847,235.32,64.068 +223848,233.1,64.915 +223849,238.91,62.411 +223850,236.38,63.25 +223851,234,64.077 +223852,231.76,64.893 +223853,237.62,62.484 +223854,235.07,63.29 +223855,232.68,64.085 +223856,230.43,64.87 +223857,236.32,62.557 +223858,233.77,63.33 +223859,231.36,64.094 +223860,229.1,64.847 +223861,235.03,62.631 +223862,232.46,63.371 +223863,230.05,64.102 +223864,227.77,64.823 +223865,233.73,62.705 +223866,231.15,63.412 +223867,228.73,64.11 +223868,226.44,64.798 +223869,232.43,62.78 +223870,229.85,63.453 +223871,227.41,64.117 +223872,225.11,64.773 +223873,231.13,62.855 +223874,228.54,63.494 +223875,226.1,64.125 +223876,223.79,64.747 +223877,229.83,62.931 +223878,227.23,63.535 +223879,224.78,64.132 +223880,222.46,64.721 +223881,228.52,63.007 +223882,225.92,63.577 +223883,223.47,64.139 +223884,221.14,64.694 +223885,227.21,63.083 +223886,224.61,63.618 +223887,222.15,64.146 +223888,219.82,64.667 +223889,225.9,63.16 +223890,223.3,63.66 +223891,220.84,64.153 +223892,218.51,64.64 +223893,224.59,63.237 +223894,221.99,63.702 +223895,219.53,64.16 +223896,217.19,64.612 +223897,223.28,63.315 +223898,220.68,63.744 +223899,218.21,64.166 +223900,215.88,64.583 +223901,221.96,63.392 +223902,219.36,63.786 +223903,216.9,64.173 +223904,214.56,64.555 +223905,220.64,63.47 +223906,218.05,63.828 +223907,215.59,64.179 +223908,213.25,64.526 +223909,219.32,63.548 +223910,216.74,63.87 +223911,214.28,64.186 +223912,211.94,64.496 +223913,218,63.627 +223914,215.42,63.912 +223915,212.97,64.192 +223916,210.64,64.467 +223917,216.68,63.705 +223918,214.11,63.954 +223919,211.66,64.198 +223920,209.33,64.437 +223921,215.35,63.784 +223922,212.79,63.997 +223923,210.35,64.204 +223924,208.03,64.407 +223925,214.03,63.863 +223926,211.47,64.039 +223927,209.04,64.21 +223928,206.72,64.377 +223929,212.7,63.942 +223930,210.16,64.081 +223931,207.74,64.216 +223932,205.42,64.347 +223933,211.37,64.02 +223934,208.84,64.123 +223935,206.43,64.222 +223936,204.12,64.317 +223937,210.03,64.099 +223938,207.52,64.166 +223939,205.12,64.228 +223940,202.83,64.286 +223941,208.7,64.178 +223942,206.2,64.208 +223943,203.82,64.233 +223944,201.53,64.256 +223945,207.36,64.257 +223946,204.88,64.25 +223947,202.51,64.239 +223948,200.24,64.225 +223949,206.02,64.336 +223950,203.56,64.292 +223951,201.21,64.245 +223952,198.95,64.195 +223953,204.68,64.414 +223954,202.24,64.335 +223955,199.9,64.251 +223956,197.66,64.164 +223957,203.34,64.493 +223958,200.92,64.377 +223959,198.6,64.257 +223960,196.37,64.134 +223961,201.99,64.571 +223962,199.6,64.419 +223963,197.3,64.263 +223964,195.08,64.104 +223965,200.65,64.649 +223966,198.27,64.461 +223967,195.99,64.269 +223968,193.8,64.074 +223969,199.3,64.727 +223970,196.95,64.503 +223971,194.69,64.275 +223972,192.52,64.044 +223973,197.95,64.805 +223974,195.63,64.545 +223975,193.39,64.281 +223976,191.23,64.014 +223977,196.6,64.882 +223978,194.3,64.586 +223979,192.09,64.287 +223980,189.96,63.984 +223981,195.25,64.959 +223982,192.98,64.628 +223983,190.79,64.293 +223984,188.68,63.955 +223985,193.89,65.036 +223986,191.65,64.67 +223987,189.49,64.299 +223988,187.4,63.926 +223989,192.54,65.112 +223990,190.32,64.711 +223991,188.19,64.306 +223992,186.13,63.897 +223993,191.18,65.188 +223994,189,64.752 +223995,186.89,64.312 +223996,184.85,63.869 +223997,189.82,65.263 +223998,187.67,64.793 +223999,185.59,64.319 +224000,183.58,63.841 +224001,188.46,65.338 +224002,186.34,64.834 +224003,184.3,64.325 +224004,182.31,63.813 +224005,187.1,65.413 +224006,185.01,64.875 +224007,183,64.332 +224008,181.04,63.786 +224009,185.73,65.487 +224010,183.68,64.916 +224011,181.7,64.339 +224012,179.78,63.759 +224013,184.37,65.561 +224014,182.35,64.956 +224015,180.41,64.346 +224016,178.51,63.733 +224017,183,65.634 +224018,181.02,64.996 +224019,179.11,64.354 +224020,177.25,63.707 +224021,181.63,65.706 +224022,179.69,65.036 +224023,177.81,64.361 +224024,175.98,63.681 +224025,180.26,65.778 +224026,178.36,65.076 +224027,176.52,64.369 +224028,174.72,63.656 +224029,178.89,65.849 +224030,177.03,65.116 +224031,175.23,64.376 +224032,173.46,63.632 +224033,177.52,65.92 +224034,175.7,65.155 +224035,173.93,64.384 +224036,172.21,63.609 +224037,176.15,65.989 +224038,174.37,65.195 +224039,172.64,64.393 +224040,170.95,63.586 +224041,174.77,66.059 +224042,173.03,65.233 +224043,171.34,64.401 +224044,169.69,63.563 +224045,173.4,66.127 +224046,171.7,65.272 +224047,170.05,64.41 +224048,168.44,63.542 +224049,172.02,66.195 +224050,170.37,65.311 +224051,168.76,64.419 +224052,167.19,63.521 +224053,170.64,66.262 +224054,169.03,65.349 +224055,167.47,64.428 +224056,165.94,63.5 +224057,169.26,66.328 +224058,167.7,65.387 +224059,166.18,64.437 +224060,164.69,63.481 +224061,167.88,66.393 +224062,166.36,65.424 +224063,164.88,64.447 +224064,163.44,63.462 +224065,166.5,66.458 +224066,165.03,65.462 +224067,163.59,64.457 +224068,162.19,63.444 +224069,165.12,66.521 +224070,163.69,65.499 +224071,162.3,64.467 +224072,160.94,63.427 +224073,163.74,66.584 +224074,162.36,65.535 +224075,161.01,64.477 +224076,159.7,63.411 +224077,162.35,66.646 +224078,161.02,65.572 +224079,159.72,64.488 +224080,158.45,63.395 +224081,160.97,66.707 +224082,159.69,65.608 +224083,158.43,64.499 +224084,157.21,63.381 +224085,159.58,66.767 +224086,158.35,65.644 +224087,157.14,64.51 +224088,155.97,63.367 +224089,158.19,66.826 +224090,157.01,65.679 +224091,155.86,64.522 +224092,154.73,63.355 +224093,156.81,66.884 +224094,155.67,65.714 +224095,154.57,64.533 +224096,153.48,63.343 +224097,155.42,66.941 +224098,154.34,65.749 +224099,153.28,64.546 +224100,152.25,63.332 +224101,154.03,66.997 +224102,153,65.784 +224103,151.99,64.558 +224104,151.01,63.322 +224105,152.64,67.052 +224106,151.66,65.818 +224107,150.7,64.571 +224108,149.77,63.313 +224109,151.25,67.106 +224110,150.32,65.851 +224111,149.41,64.584 +224112,148.53,63.306 +224113,149.86,67.159 +224114,148.98,65.885 +224115,148.13,64.598 +224116,147.3,63.299 +224117,148.47,67.211 +224118,147.64,65.918 +224119,146.84,64.611 +224120,146.06,63.293 +224121,147.08,67.262 +224122,146.3,65.951 +224123,145.55,64.626 +224124,144.83,63.289 +224125,145.69,67.312 +224126,144.97,65.983 +224127,144.27,64.64 +224128,143.59,63.285 +224129,144.3,67.36 +224130,143.63,66.015 +224131,142.98,64.655 +224132,142.36,63.283 +224133,142.9,67.408 +224134,142.29,66.046 +224135,141.69,64.67 +224136,141.12,63.281 +224137,141.51,67.454 +224138,140.95,66.077 +224139,140.41,64.686 +224140,139.89,63.281 +224141,140.12,67.499 +224142,139.61,66.108 +224143,139.12,64.702 +224144,138.66,63.282 +224145,138.73,67.543 +224146,138.27,66.139 +224147,137.83,64.718 +224148,137.43,63.284 +224149,137.33,67.586 +224150,136.93,66.169 +224151,136.55,64.735 +224152,136.2,63.287 +224153,135.94,67.628 +224154,135.59,66.198 +224155,135.26,64.752 +224156,134.97,63.292 +224157,134.55,67.669 +224158,134.25,66.227 +224159,133.97,64.77 +224160,133.74,63.297 +224161,133.15,67.708 +224162,132.9,66.256 +224163,132.69,64.788 +224164,132.5,63.304 +224165,131.76,67.746 +224166,131.56,66.284 +224167,131.4,64.806 +224168,131.27,63.312 +224169,130.36,67.783 +224170,130.22,66.312 +224171,130.12,64.825 +224172,130.04,63.321 +224173,128.97,67.819 +224174,128.88,66.34 +224175,128.83,64.844 +224176,128.81,63.332 +224177,127.58,67.854 +224178,127.54,66.367 +224179,127.55,64.863 +224180,127.59,63.344 +224181,126.18,67.887 +224182,126.2,66.394 +224183,126.26,64.883 +224184,126.36,63.356 +224185,124.79,67.919 +224186,124.86,66.42 +224187,124.97,64.903 +224188,125.13,63.371 +224189,123.4,67.95 +224190,123.52,66.446 +224191,123.69,64.924 +224192,123.9,63.386 +224193,122,67.98 +224194,122.18,66.471 +224195,122.4,64.945 +224196,122.67,63.403 +224197,120.61,68.008 +224198,120.84,66.496 +224199,121.11,64.966 +224200,121.44,63.42 +224201,119.22,68.036 +224202,119.5,66.521 +224203,119.83,64.988 +224204,120.21,63.439 +224205,117.82,68.062 +224206,118.16,66.545 +224207,118.54,65.01 +224208,118.98,63.46 +224209,116.43,68.086 +224210,116.82,66.568 +224211,117.26,65.033 +224212,117.74,63.481 +224213,115.04,68.11 +224214,115.48,66.592 +224215,115.97,65.056 +224216,116.51,63.504 +224217,113.65,68.132 +224218,114.14,66.615 +224219,114.68,65.08 +224220,115.28,63.528 +224221,112.26,68.153 +224222,112.8,66.637 +224223,113.4,65.104 +224224,114.05,63.554 +224225,110.87,68.173 +224226,111.46,66.659 +224227,112.11,65.128 +224228,112.82,63.58 +224229,109.48,68.192 +224230,110.12,66.681 +224231,110.82,65.153 +224232,111.59,63.608 +224233,108.09,68.209 +224234,108.78,66.702 +224235,109.53,65.178 +224236,110.35,63.637 +224237,106.7,68.225 +224238,107.44,66.723 +224239,108.25,65.203 +224240,109.12,63.668 +224241,105.32,68.24 +224242,106.1,66.743 +224243,106.96,65.229 +224244,107.88,63.699 +224245,103.93,68.254 +224246,104.77,66.763 +224247,105.67,65.255 +224248,106.65,63.732 +224249,102.54,68.266 +224250,103.43,66.783 +224251,104.38,65.282 +224252,105.41,63.766 +224253,101.16,68.278 +224254,102.09,66.802 +224255,103.09,65.309 +224256,104.18,63.802 +224257,99.771,68.288 +224258,100.75,66.82 +224259,101.8,65.337 +224260,102.94,63.838 +224261,98.387,68.297 +224262,99.413,66.839 +224263,100.51,65.365 +224264,101.7,63.876 +224265,97.004,68.305 +224266,98.075,66.857 +224267,99.224,65.393 +224268,100.46,63.915 +224269,95.622,68.311 +224270,96.738,66.874 +224271,97.934,65.422 +224272,99.22,63.955 +224273,94.241,68.317 +224274,95.401,66.891 +224275,96.644,65.451 +224276,97.978,63.996 +224277,92.86,68.321 +224278,94.064,66.908 +224279,95.353,65.48 +224280,96.736,64.038 +224281,91.481,68.324 +224282,92.728,66.924 +224283,94.062,65.51 +224284,95.493,64.082 +224285,90.102,68.326 +224286,91.392,66.94 +224287,92.771,65.54 +224288,94.248,64.126 +224289,88.724,68.327 +224290,90.057,66.956 +224291,91.479,65.57 +224292,93.003,64.172 +224293,87.348,68.327 +224294,88.721,66.971 +224295,90.187,65.601 +224296,91.756,64.219 +224297,85.973,68.325 +224298,87.386,66.986 +224299,88.894,65.632 +224300,90.508,64.267 +224301,84.598,68.323 +224302,86.052,67 +224303,87.601,65.664 +224304,89.259,64.316 +224305,83.225,68.319 +224306,84.718,67.014 +224307,86.308,65.696 +224308,88.008,64.367 +224309,81.853,68.315 +224310,83.384,67.028 +224311,85.014,65.728 +224312,86.756,64.418 +224313,80.482,68.309 +224314,82.05,67.041 +224315,83.72,65.761 +224316,85.503,64.47 +224317,79.113,68.303 +224318,80.717,67.054 +224319,82.425,65.794 +224320,84.249,64.523 +224321,77.744,68.295 +224322,79.385,67.067 +224323,81.13,65.827 +224324,82.993,64.578 +224325,76.377,68.287 +224326,78.053,67.079 +224327,79.834,65.861 +224328,81.735,64.633 +224329,75.011,68.277 +224330,76.721,67.091 +224331,78.538,65.895 +224332,80.476,64.689 +224333,73.647,68.266 +224334,75.39,67.102 +224335,77.241,65.929 +224336,79.216,64.746 +224337,72.284,68.255 +224338,74.059,67.114 +224339,75.944,65.963 +224340,77.954,64.804 +224341,70.922,68.243 +224342,72.729,67.125 +224343,74.646,65.998 +224344,76.69,64.863 +224345,69.561,68.229 +224346,71.399,67.135 +224347,73.348,66.033 +224348,75.425,64.923 +224349,68.202,68.215 +224350,70.069,67.146 +224351,72.049,66.069 +224352,74.158,64.984 +224353,66.845,68.2 +224354,68.74,67.156 +224355,70.75,66.104 +224356,72.89,65.046 +224357,65.488,68.184 +224358,67.412,67.166 +224359,69.45,66.14 +224360,71.62,65.108 +224361,64.134,68.168 +224362,66.084,67.175 +224363,68.15,66.176 +224364,70.348,65.172 +224365,62.78,68.15 +224366,64.756,67.185 +224367,66.849,66.213 +224368,69.074,65.236 +224369,61.428,68.132 +224370,63.429,67.193 +224371,65.547,66.249 +224372,67.799,65.3 +224373,60.078,68.113 +224374,62.103,67.202 +224375,64.245,66.286 +224376,66.522,65.366 +224377,58.729,68.093 +224378,60.777,67.211 +224379,62.942,66.323 +224380,65.243,65.432 +224381,57.382,68.072 +224382,59.452,67.219 +224383,61.639,66.361 +224384,63.963,65.499 +224385,56.037,68.051 +224386,58.127,67.227 +224387,60.335,66.398 +224388,62.68,65.567 +224389,54.692,68.029 +224390,56.802,67.235 +224391,59.031,66.436 +224392,61.396,65.635 +224393,53.35,68.007 +224394,55.479,67.242 +224395,57.726,66.474 +224396,60.11,65.704 +224397,52.009,67.984 +224398,54.155,67.25 +224399,56.42,66.512 +224400,58.822,65.773 +224401,50.67,67.96 +224402,52.833,67.257 +224403,55.114,66.551 +224404,57.532,65.843 +224405,49.332,67.936 +224406,51.511,67.264 +224407,53.807,66.589 +224408,56.24,65.913 +224409,47.996,67.911 +224410,50.189,67.27 +224411,52.5,66.628 +224412,54.947,65.984 +224413,46.662,67.886 +224414,48.868,67.277 +224415,51.192,66.667 +224416,53.651,66.056 +224417,45.329,67.86 +224418,47.547,67.283 +224419,49.883,66.706 +224420,52.354,66.128 +224421,43.998,67.833 +224422,46.227,67.29 +224423,48.573,66.745 +224424,51.054,66.2 +224425,42.669,67.807 +224426,44.908,67.296 +224427,47.263,66.784 +224428,49.753,66.273 +224429,41.341,67.78 +224430,43.589,67.302 +224431,45.953,66.824 +224432,48.45,66.346 +224433,40.015,67.752 +224434,42.271,67.307 +224435,44.642,66.863 +224436,47.144,66.419 +224437,38.691,67.724 +224438,40.954,67.313 +224439,43.33,66.903 +224440,45.837,66.493 +224441,37.368,67.696 +224442,39.637,67.319 +224443,42.017,66.942 +224444,44.528,66.567 +224445,36.047,67.667 +224446,38.32,67.324 +224447,40.704,66.982 +224448,43.217,66.641 +224449,34.728,67.638 +224450,37.004,67.33 +224451,39.39,67.022 +224452,41.904,66.716 +224453,33.411,67.609 +224454,35.689,67.335 +224455,38.076,67.062 +224456,40.589,66.79 +224457,32.095,67.58 +224458,34.374,67.34 +224459,36.761,67.102 +224460,39.273,66.865 +224461,30.781,67.55 +224462,33.06,67.345 +224463,35.445,67.142 +224464,37.954,66.94 +224465,29.469,67.521 +224466,31.746,67.35 +224467,34.129,67.182 +224468,36.633,67.015 +224469,28.158,67.491 +224470,30.433,67.355 +224471,32.812,67.222 +224472,35.311,67.091 +224473,26.849,67.461 +224474,29.121,67.36 +224475,31.494,67.262 +224476,33.986,67.166 +224477,25.542,67.431 +224478,27.809,67.365 +224479,30.176,67.302 +224480,32.66,67.241 +224481,24.237,67.401 +224482,26.498,67.37 +224483,28.857,67.342 +224484,31.332,67.316 +224485,22.933,67.371 +224486,25.187,67.375 +224487,27.538,67.382 +224488,30.001,67.392 +224489,21.631,67.34 +224490,23.877,67.38 +224491,26.218,67.422 +224492,28.669,67.467 +224493,20.331,67.31 +224494,22.567,67.385 +224495,24.897,67.462 +224496,27.336,67.542 +224497,19.033,67.28 +224498,21.258,67.39 +224499,23.576,67.502 +224500,26,67.617 +224501,17.736,67.25 +224502,19.95,67.395 +224503,22.254,67.542 +224504,24.662,67.692 +224505,16.441,67.22 +224506,18.642,67.4 +224507,20.931,67.582 +224508,23.323,67.767 +224509,15.147,67.191 +224510,17.335,67.405 +224511,19.608,67.622 +224512,21.982,67.841 +224513,13.856,67.161 +224514,16.028,67.41 +224515,18.285,67.662 +224516,20.639,67.915 +224517,12.566,67.132 +224518,14.722,67.415 +224519,16.96,67.702 +224520,19.294,67.989 +224521,11.277,67.103 +224522,13.416,67.421 +224523,15.636,67.741 +224524,17.948,68.063 +224525,9.9904,67.074 +224526,12.111,67.426 +224527,14.31,67.781 +224528,16.6,68.137 +224529,8.7052,67.045 +224530,10.807,67.431 +224531,12.984,67.82 +224532,15.25,68.21 +224533,7.4217,67.017 +224534,9.5025,67.437 +224535,11.658,67.859 +224536,13.899,68.283 +224537,6.1397,66.989 +224538,8.199,67.443 +224539,10.33,67.898 +224540,12.546,68.355 +224541,4.8594,66.961 +224542,6.896,67.448 +224543,9.0027,67.937 +224544,11.191,68.427 +224545,3.5807,66.934 +224546,5.5935,67.454 +224547,7.6745,67.976 +224548,9.8345,68.498 +224549,2.3035,66.907 +224550,4.2915,67.46 +224551,6.3457,68.015 +224552,8.4766,68.569 +224553,1.0278,66.881 +224554,2.99,67.466 +224555,5.0164,68.053 +224556,7.1171,68.64 +224557,359.75,66.855 +224558,1.689,67.473 +224559,3.6866,68.092 +224560,5.7562,68.71 +224561,358.48,66.829 +224562,0.38848,67.479 +224563,2.3562,68.13 +224564,4.3937,68.78 +224565,357.21,66.804 +224566,359.09,67.486 +224567,1.0254,68.168 +224568,3.0298,68.849 +224569,355.94,66.78 +224570,357.79,67.493 +224571,359.69,68.205 +224572,1.6644,68.917 +224573,354.67,66.756 +224574,356.49,67.5 +224575,358.36,68.243 +224576,0.29766,68.985 +224577,353.41,66.733 +224578,355.19,67.507 +224579,357.03,68.28 +224580,358.93,69.052 +224581,352.14,66.711 +224582,353.89,67.514 +224583,355.7,68.317 +224584,357.56,69.118 +224585,350.88,66.689 +224586,352.6,67.522 +224587,354.36,68.354 +224588,356.19,69.184 +224589,349.61,66.668 +224590,351.3,67.53 +224591,353.03,68.391 +224592,354.82,69.249 +224593,348.35,66.647 +224594,350,67.538 +224595,351.7,68.427 +224596,353.44,69.313 +224597,347.09,66.627 +224598,348.7,67.546 +224599,350.36,68.463 +224600,352.07,69.377 +224601,345.83,66.608 +224602,347.41,67.555 +224603,349.03,68.499 +224604,350.69,69.44 +224605,344.58,66.59 +224606,346.11,67.564 +224607,347.69,68.535 +224608,349.32,69.502 +224609,343.32,66.572 +224610,344.82,67.573 +224611,346.36,68.57 +224612,347.94,69.563 +224613,342.06,66.556 +224614,343.52,67.582 +224615,345.02,68.605 +224616,346.56,69.624 +224617,340.81,66.54 +224618,342.23,67.592 +224619,343.68,68.64 +224620,345.18,69.683 +224621,339.56,66.525 +224622,340.93,67.602 +224623,342.35,68.675 +224624,343.8,69.742 +224625,338.31,66.511 +224626,339.64,67.612 +224627,341.01,68.709 +224628,342.42,69.8 +224629,337.06,66.497 +224630,338.35,67.622 +224631,339.67,68.743 +224632,341.03,69.856 +224633,335.81,66.485 +224634,337.05,67.633 +224635,338.33,68.776 +224636,339.65,69.912 +224637,334.56,66.474 +224638,335.76,67.644 +224639,336.99,68.809 +224640,338.26,69.967 +224641,333.31,66.463 +224642,334.47,67.656 +224643,335.66,68.842 +224644,336.88,70.021 +224645,332.06,66.454 +224646,333.18,67.667 +224647,334.32,68.875 +224648,335.49,70.075 +224649,330.82,66.445 +224650,331.88,67.679 +224651,332.98,68.907 +224652,334.1,70.127 +224653,329.57,66.438 +224654,330.59,67.692 +224655,331.64,68.939 +224656,332.72,70.178 +224657,328.33,66.431 +224658,329.3,67.705 +224659,330.3,68.971 +224660,331.33,70.228 +224661,327.09,66.426 +224662,328.01,67.718 +224663,328.96,69.002 +224664,329.94,70.277 +224665,325.84,66.422 +224666,326.72,67.731 +224667,327.62,69.033 +224668,328.55,70.325 +224669,324.6,66.418 +224670,325.43,67.745 +224671,326.28,69.063 +224672,327.16,70.372 +224673,323.36,66.416 +224674,324.14,67.759 +224675,324.94,69.093 +224676,325.77,70.418 +224677,322.12,66.415 +224678,322.85,67.773 +224679,323.6,69.123 +224680,324.38,70.463 +224681,320.88,66.415 +224682,321.55,67.788 +224683,322.26,69.152 +224684,322.98,70.506 +224685,319.64,66.416 +224686,320.26,67.803 +224687,320.91,69.181 +224688,321.59,70.549 +224689,318.4,66.418 +224690,318.97,67.819 +224691,319.57,69.21 +224692,320.2,70.59 +224693,317.17,66.421 +224694,317.68,67.835 +224695,318.23,69.238 +224696,318.81,70.631 +224697,315.93,66.426 +224698,316.39,67.851 +224699,316.89,69.266 +224700,317.41,70.67 +224701,314.69,66.432 +224702,315.11,67.868 +224703,315.55,69.294 +224704,316.02,70.708 +224705,313.45,66.438 +224706,313.82,67.885 +224707,314.21,69.321 +224708,314.63,70.745 +224709,312.22,66.446 +224710,312.53,67.902 +224711,312.86,69.347 +224712,313.23,70.781 +224713,310.98,66.456 +224714,311.24,67.92 +224715,311.52,69.374 +224716,311.84,70.815 +224717,309.75,66.466 +224718,309.95,67.938 +224719,310.18,69.4 +224720,310.44,70.849 +224721,308.51,66.478 +224722,308.66,67.957 +224723,308.84,69.425 +224724,309.05,70.881 +224725,307.28,66.49 +224726,307.37,67.976 +224727,307.5,69.45 +224728,307.65,70.912 +224729,306.04,66.504 +224730,306.08,67.995 +224731,306.15,69.475 +224732,306.26,70.942 +224733,304.8,66.52 +224734,304.79,68.015 +224735,304.81,69.499 +224736,304.87,70.971 +224737,303.57,66.536 +224738,303.5,68.035 +224739,303.47,69.523 +224740,303.47,70.998 +224741,302.33,66.554 +224742,302.21,68.056 +224743,302.13,69.547 +224744,302.08,71.025 +224745,301.1,66.573 +224746,300.92,68.077 +224747,300.78,69.57 +224748,300.68,71.05 +224749,299.86,66.593 +224750,299.63,68.098 +224751,299.44,69.592 +224752,299.29,71.074 +224753,298.63,66.614 +224754,298.34,68.12 +224755,298.1,69.615 +224756,297.9,71.096 +224757,297.39,66.637 +224758,297.05,68.142 +224759,296.76,69.636 +224760,296.5,71.118 +224761,296.16,66.661 +224762,295.76,68.165 +224763,295.42,69.658 +224764,295.11,71.138 +224765,294.92,66.686 +224766,294.47,68.188 +224767,294.07,69.679 +224768,293.72,71.157 +224769,293.68,66.712 +224770,293.18,68.211 +224771,292.73,69.699 +224772,292.32,71.175 +224773,292.45,66.739 +224774,291.89,68.235 +224775,291.39,69.72 +224776,290.93,71.192 +224777,291.21,66.768 +224778,290.6,68.259 +224779,290.05,69.74 +224780,289.54,71.208 +224781,289.97,66.798 +224782,289.31,68.284 +224783,288.71,69.759 +224784,288.15,71.222 +224785,288.73,66.829 +224786,288.02,68.309 +224787,287.37,69.778 +224788,286.76,71.235 +224789,287.5,66.861 +224790,286.73,68.334 +224791,286.03,69.797 +224792,285.37,71.247 +224793,286.26,66.895 +224794,285.44,68.36 +224795,284.68,69.815 +224796,283.98,71.258 +224797,285.02,66.929 +224798,284.15,68.386 +224799,283.34,69.833 +224800,282.59,71.268 +224801,283.78,66.965 +224802,282.86,68.412 +224803,282,69.85 +224804,281.2,71.277 +224805,282.54,67.002 +224806,281.57,68.439 +224807,280.66,69.867 +224808,279.82,71.284 +224809,281.29,67.041 +224810,280.28,68.467 +224811,279.32,69.884 +224812,278.43,71.29 +224813,280.05,67.08 +224814,278.98,68.494 +224815,277.98,69.9 +224816,277.05,71.296 +224817,278.81,67.12 +224818,277.69,68.522 +224819,276.64,69.916 +224820,275.66,71.3 +224821,277.56,67.162 +224822,276.4,68.551 +224823,275.3,69.932 +224824,274.28,71.302 +224825,276.32,67.205 +224826,275.11,68.58 +224827,273.97,69.947 +224828,272.89,71.304 +224829,275.07,67.249 +224830,273.81,68.609 +224831,272.63,69.961 +224832,271.51,71.305 +224833,273.83,67.294 +224834,272.52,68.638 +224835,271.29,69.976 +224836,270.13,71.305 +224837,272.58,67.34 +224838,271.22,68.668 +224839,269.95,69.99 +224840,268.75,71.303 +224841,271.33,67.387 +224842,269.93,68.698 +224843,268.61,70.004 +224844,267.37,71.301 +224845,270.08,67.435 +224846,268.64,68.729 +224847,267.27,70.017 +224848,265.99,71.297 +224849,268.83,67.484 +224850,267.34,68.76 +224851,265.94,70.03 +224852,264.61,71.293 +224853,267.58,67.535 +224854,266.04,68.791 +224855,264.6,70.043 +224856,263.24,71.287 +224857,266.32,67.586 +224858,264.75,68.823 +224859,263.26,70.055 +224860,261.86,71.28 +224861,265.07,67.638 +224862,263.45,68.855 +224863,261.93,70.067 +224864,260.49,71.273 +224865,263.81,67.692 +224866,262.16,68.887 +224867,260.59,70.078 +224868,259.11,71.264 +224869,262.55,67.746 +224870,260.86,68.919 +224871,259.26,70.09 +224872,257.74,71.255 +224873,261.3,67.801 +224874,259.56,68.952 +224875,257.92,70.101 +224876,256.37,71.244 +224877,260.04,67.857 +224878,258.26,68.985 +224879,256.59,70.111 +224880,255,71.233 +224881,258.78,67.914 +224882,256.96,69.019 +224883,255.25,70.122 +224884,253.63,71.221 +224885,257.51,67.972 +224886,255.67,69.053 +224887,253.92,70.132 +224888,252.26,71.208 +224889,256.25,68.031 +224890,254.37,69.087 +224891,252.59,70.142 +224892,250.9,71.194 +224893,254.98,68.09 +224894,253.07,69.121 +224895,251.25,70.151 +224896,249.53,71.179 +224897,253.72,68.151 +224898,251.77,69.156 +224899,249.92,70.16 +224900,248.17,71.163 +224901,252.45,68.212 +224902,250.47,69.19 +224903,248.59,70.169 +224904,246.81,71.147 +224905,251.18,68.274 +224906,249.16,69.226 +224907,247.26,70.178 +224908,245.45,71.129 +224909,249.91,68.336 +224910,247.86,69.261 +224911,245.93,70.186 +224912,244.09,71.111 +224913,248.63,68.4 +224914,246.56,69.297 +224915,244.6,70.195 +224916,242.73,71.092 +224917,247.36,68.464 +224918,245.26,69.332 +224919,243.27,70.203 +224920,241.37,71.073 +224921,246.08,68.529 +224922,243.95,69.368 +224923,241.94,70.21 +224924,240.02,71.053 +224925,244.8,68.594 +224926,242.65,69.405 +224927,240.61,70.218 +224928,238.67,71.032 +224929,243.52,68.661 +224930,241.34,69.441 +224931,239.28,70.225 +224932,237.31,71.01 +224933,242.24,68.727 +224934,240.04,69.478 +224935,237.95,70.232 +224936,235.96,70.988 +224937,240.96,68.795 +224938,238.73,69.515 +224939,236.62,70.239 +224940,234.61,70.965 +224941,239.67,68.863 +224942,237.43,69.552 +224943,235.3,70.245 +224944,233.27,70.942 +224945,238.39,68.931 +224946,236.12,69.589 +224947,233.97,70.252 +224948,231.92,70.918 +224949,237.1,69 +224950,234.81,69.627 +224951,232.64,70.258 +224952,230.58,70.893 +224953,235.81,69.069 +224954,233.51,69.664 +224955,231.32,70.264 +224956,229.23,70.868 +224957,234.52,69.139 +224958,232.2,69.702 +224959,229.99,70.27 +224960,227.89,70.843 +224961,233.22,69.21 +224962,230.89,69.74 +224963,228.67,70.276 +224964,226.55,70.817 +224965,231.93,69.28 +224966,229.58,69.778 +224967,227.34,70.282 +224968,225.21,70.79 +224969,230.63,69.352 +224970,228.27,69.816 +224971,226.02,70.287 +224972,223.88,70.763 +224973,229.33,69.423 +224974,226.96,69.854 +224975,224.7,70.292 +224976,222.54,70.736 +224977,228.03,69.495 +224978,225.64,69.893 +224979,223.38,70.298 +224980,221.21,70.708 +224981,226.73,69.567 +224982,224.33,69.931 +224983,222.05,70.303 +224984,219.88,70.68 +224985,225.42,69.639 +224986,223.02,69.97 +224987,220.73,70.308 +224988,218.55,70.652 +224989,224.12,69.712 +224990,221.71,70.008 +224991,219.41,70.313 +224992,217.22,70.624 +224993,222.81,69.785 +224994,220.39,70.047 +224995,218.09,70.318 +224996,215.89,70.595 +224997,221.5,69.858 +224998,219.08,70.086 +224999,216.77,70.322 +225000,214.57,70.566 +225001,220.18,69.931 +225002,217.76,70.125 +225003,215.46,70.327 +225004,213.25,70.536 +225005,218.87,70.004 +225006,216.45,70.164 +225007,214.14,70.332 +225008,211.92,70.507 +225009,217.55,70.078 +225010,215.13,70.203 +225011,212.82,70.336 +225012,210.6,70.477 +225013,216.24,70.151 +225014,213.81,70.242 +225015,211.5,70.341 +225016,209.29,70.448 +225017,214.92,70.225 +225018,212.5,70.281 +225019,210.19,70.345 +225020,207.97,70.418 +225021,213.6,70.298 +225022,211.18,70.32 +225023,208.87,70.35 +225024,206.66,70.388 +225025,212.27,70.372 +225026,209.86,70.359 +225027,207.55,70.354 +225028,205.34,70.358 +225029,210.95,70.445 +225030,208.54,70.398 +225031,206.24,70.359 +225032,204.03,70.328 +225033,209.62,70.519 +225034,207.22,70.437 +225035,204.92,70.363 +225036,202.72,70.298 +225037,208.29,70.592 +225038,205.9,70.476 +225039,203.61,70.368 +225040,201.41,70.268 +225041,206.96,70.665 +225042,204.58,70.515 +225043,202.3,70.373 +225044,200.11,70.239 +225045,205.63,70.738 +225046,203.26,70.553 +225047,200.98,70.377 +225048,198.8,70.209 +225049,204.29,70.811 +225050,201.93,70.592 +225051,199.67,70.382 +225052,197.5,70.179 +225053,202.96,70.884 +225054,200.61,70.631 +225055,198.36,70.386 +225056,196.2,70.15 +225057,201.62,70.956 +225058,199.29,70.67 +225059,197.05,70.391 +225060,194.9,70.121 +225061,200.28,71.029 +225062,197.96,70.708 +225063,195.74,70.396 +225064,193.6,70.092 +225065,198.94,71.101 +225066,196.64,70.747 +225067,194.43,70.401 +225068,192.3,70.063 +225069,197.6,71.172 +225070,195.31,70.785 +225071,193.12,70.406 +225072,191.01,70.034 +225073,196.25,71.243 +225074,193.99,70.823 +225075,191.81,70.411 +225076,189.71,70.006 +225077,194.9,71.314 +225078,192.66,70.862 +225079,190.5,70.416 +225080,188.42,69.978 +225081,193.56,71.385 +225082,191.33,70.9 +225083,189.19,70.422 +225084,187.13,69.951 +225085,192.21,71.455 +225086,190,70.938 +225087,187.89,70.427 +225088,185.84,69.923 +225089,190.85,71.525 +225090,188.68,70.975 +225091,186.58,70.433 +225092,184.56,69.897 +225093,189.5,71.594 +225094,187.35,71.013 +225095,185.27,70.438 +225096,183.27,69.87 +225097,188.15,71.663 +225098,186.02,71.05 +225099,183.97,70.444 +225100,181.99,69.844 +225101,186.79,71.731 +225102,184.69,71.088 +225103,182.66,70.45 +225104,180.71,69.819 +225105,185.43,71.799 +225106,183.36,71.125 +225107,181.36,70.457 +225108,179.43,69.794 +225109,184.07,71.866 +225110,182.03,71.162 +225111,180.05,70.463 +225112,178.15,69.77 +225113,182.71,71.932 +225114,180.7,71.199 +225115,178.75,70.47 +225116,176.87,69.746 +225117,181.35,71.998 +225118,179.36,71.235 +225119,177.45,70.476 +225120,175.59,69.723 +225121,179.99,72.064 +225122,178.03,71.271 +225123,176.14,70.483 +225124,174.32,69.7 +225125,178.62,72.128 +225126,176.7,71.307 +225127,174.84,70.49 +225128,173.04,69.678 +225129,177.25,72.192 +225130,175.36,71.343 +225131,173.54,70.498 +225132,171.77,69.657 +225133,175.89,72.255 +225134,174.03,71.379 +225135,172.24,70.506 +225136,170.5,69.636 +225137,174.52,72.318 +225138,172.7,71.414 +225139,170.94,70.513 +225140,169.23,69.616 +225141,173.15,72.38 +225142,171.36,71.45 +225143,169.64,70.522 +225144,167.96,69.597 +225145,171.77,72.441 +225146,170.03,71.484 +225147,168.34,70.53 +225148,166.7,69.578 +225149,170.4,72.501 +225150,168.69,71.519 +225151,167.04,70.539 +225152,165.43,69.56 +225153,169.03,72.561 +225154,167.35,71.554 +225155,165.74,70.547 +225156,164.17,69.543 +225157,167.65,72.619 +225158,166.02,71.588 +225159,164.44,70.557 +225160,162.9,69.527 +225161,166.28,72.677 +225162,164.68,71.621 +225163,163.14,70.566 +225164,161.64,69.512 +225165,164.9,72.734 +225166,163.34,71.655 +225167,161.84,70.576 +225168,160.38,69.498 +225169,163.52,72.79 +225170,162.01,71.688 +225171,160.54,70.586 +225172,159.12,69.484 +225173,162.14,72.845 +225174,160.67,71.721 +225175,159.25,70.596 +225176,157.86,69.471 +225177,160.76,72.9 +225178,159.33,71.754 +225179,157.95,70.607 +225180,156.61,69.46 +225181,159.38,72.953 +225182,157.99,71.786 +225183,156.65,70.618 +225184,155.35,69.449 +225185,157.99,73.005 +225186,156.65,71.818 +225187,155.35,70.629 +225188,154.1,69.439 +225189,156.61,73.057 +225190,155.31,71.85 +225191,154.06,70.641 +225192,152.84,69.43 +225193,155.22,73.107 +225194,153.97,71.881 +225195,152.76,70.652 +225196,151.59,69.422 +225197,153.84,73.157 +225198,152.63,71.912 +225199,151.47,70.665 +225200,150.34,69.415 +225201,152.45,73.205 +225202,151.29,71.943 +225203,150.17,70.677 +225204,149.08,69.409 +225205,151.07,73.252 +225206,149.95,71.973 +225207,148.88,70.69 +225208,147.83,69.404 +225209,149.68,73.299 +225210,148.61,72.003 +225211,147.58,70.703 +225212,146.58,69.4 +225213,148.29,73.344 +225214,147.27,72.033 +225215,146.29,70.717 +225216,145.34,69.398 +225217,146.9,73.388 +225218,145.93,72.062 +225219,144.99,70.731 +225220,144.09,69.396 +225221,145.51,73.432 +225222,144.59,72.091 +225223,143.7,70.745 +225224,142.84,69.395 +225225,144.12,73.474 +225226,143.25,72.12 +225227,142.4,70.76 +225228,141.59,69.396 +225229,142.73,73.515 +225230,141.9,72.148 +225231,141.11,70.775 +225232,140.35,69.397 +225233,141.34,73.555 +225234,140.56,72.176 +225235,139.82,70.791 +225236,139.1,69.4 +225237,139.95,73.594 +225238,139.22,72.203 +225239,138.52,70.806 +225240,137.86,69.404 +225241,138.55,73.632 +225242,137.88,72.231 +225243,137.23,70.823 +225244,136.61,69.409 +225245,137.16,73.668 +225246,136.53,72.257 +225247,135.94,70.839 +225248,135.37,69.415 +225249,135.77,73.704 +225250,135.19,72.284 +225251,134.64,70.856 +225252,134.13,69.423 +225253,134.37,73.738 +225254,133.85,72.31 +225255,133.35,70.873 +225256,132.88,69.431 +225257,132.98,73.771 +225258,132.5,72.335 +225259,132.06,70.891 +225260,131.64,69.441 +225261,131.59,73.803 +225262,131.16,72.36 +225263,130.76,70.909 +225264,130.4,69.452 +225265,130.19,73.834 +225266,129.82,72.385 +225267,129.47,70.928 +225268,129.16,69.464 +225269,128.8,73.864 +225270,128.47,72.409 +225271,128.18,70.947 +225272,127.92,69.477 +225273,127.4,73.893 +225274,127.13,72.433 +225275,126.89,70.966 +225276,126.67,69.492 +225277,126.01,73.92 +225278,125.79,72.457 +225279,125.59,70.986 +225280,125.43,69.507 +225281,124.62,73.946 +225282,124.44,72.48 +225283,124.3,71.006 +225284,124.19,69.524 +225285,123.22,73.971 +225286,123.1,72.503 +225287,123.01,71.026 +225288,122.95,69.542 +225289,121.83,73.995 +225290,121.76,72.526 +225291,121.72,71.047 +225292,121.71,69.562 +225293,120.43,74.018 +225294,120.41,72.548 +225295,120.42,71.069 +225296,120.47,69.582 +225297,119.04,74.039 +225298,119.07,72.569 +225299,119.13,71.09 +225300,119.23,69.604 +225301,117.64,74.06 +225302,117.72,72.591 +225303,117.84,71.112 +225304,117.99,69.627 +225305,116.25,74.079 +225306,116.38,72.611 +225307,116.55,71.135 +225308,116.75,69.651 +225309,114.86,74.097 +225310,115.04,72.632 +225311,115.25,71.158 +225312,115.51,69.677 +225313,113.46,74.114 +225314,113.69,72.652 +225315,113.96,71.181 +225316,114.27,69.703 +225317,112.07,74.13 +225318,112.35,72.672 +225319,112.67,71.205 +225320,113.03,69.731 +225321,110.68,74.144 +225322,111.01,72.691 +225323,111.38,71.229 +225324,111.79,69.76 +225325,109.28,74.157 +225326,109.66,72.71 +225327,110.08,71.254 +225328,110.54,69.791 +225329,107.89,74.17 +225330,108.32,72.728 +225331,108.79,71.279 +225332,109.3,69.822 +225333,106.5,74.181 +225334,106.98,72.746 +225335,107.5,71.304 +225336,108.06,69.855 +225337,105.11,74.191 +225338,105.63,72.764 +225339,106.2,71.33 +225340,106.82,69.889 +225341,103.72,74.199 +225342,104.29,72.781 +225343,104.91,71.356 +225344,105.57,69.924 +225345,102.33,74.207 +225346,102.95,72.798 +225347,103.62,71.382 +225348,104.33,69.96 +225349,100.94,74.214 +225350,101.61,72.815 +225351,102.32,71.409 +225352,103.09,69.997 +225353,99.548,74.219 +225354,100.26,72.831 +225355,101.03,71.436 +225356,101.84,70.036 +225357,98.16,74.223 +225358,98.922,72.847 +225359,99.733,71.464 +225360,100.6,70.076 +225361,96.772,74.227 +225362,97.581,72.862 +225363,98.439,71.492 +225364,99.35,70.117 +225365,95.385,74.229 +225366,96.239,72.878 +225367,97.144,71.52 +225368,98.103,70.159 +225369,93.998,74.23 +225370,94.897,72.892 +225371,95.849,71.549 +225372,96.855,70.202 +225373,92.613,74.23 +225374,93.556,72.907 +225375,94.553,71.578 +225376,95.607,70.246 +225377,91.228,74.229 +225378,92.215,72.921 +225379,93.257,71.608 +225380,94.358,70.291 +225381,89.844,74.226 +225382,90.875,72.934 +225383,91.961,71.637 +225384,93.109,70.337 +225385,88.461,74.223 +225386,89.534,72.948 +225387,90.665,71.668 +225388,91.858,70.385 +225389,87.078,74.219 +225390,88.194,72.961 +225391,89.369,71.698 +225392,90.606,70.433 +225393,85.697,74.214 +225394,86.854,72.973 +225395,88.072,71.729 +225396,89.354,70.483 +225397,84.316,74.208 +225398,85.515,72.986 +225399,86.774,71.76 +225400,88.1,70.533 +225401,82.937,74.2 +225402,84.175,72.998 +225403,85.477,71.792 +225404,86.846,70.585 +225405,81.558,74.192 +225406,82.837,73.009 +225407,84.179,71.824 +225408,85.59,70.637 +225409,80.181,74.183 +225410,81.498,73.021 +225411,82.88,71.856 +225412,84.334,70.691 +225413,78.805,74.173 +225414,80.16,73.032 +225415,81.582,71.888 +225416,83.076,70.745 +225417,77.429,74.162 +225418,78.822,73.042 +225419,80.282,71.921 +225420,81.817,70.801 +225421,76.055,74.15 +225422,77.484,73.053 +225423,78.983,71.954 +225424,80.557,70.857 +225425,74.682,74.138 +225426,76.147,73.063 +225427,77.683,71.988 +225428,79.296,70.914 +225429,73.31,74.124 +225430,74.81,73.073 +225431,76.383,72.021 +225432,78.033,70.972 +225433,71.939,74.11 +225434,73.474,73.082 +225435,75.082,72.055 +225436,76.769,71.031 +225437,70.57,74.095 +225438,72.138,73.092 +225439,73.781,72.09 +225440,75.504,71.091 +225441,69.201,74.078 +225442,70.803,73.101 +225443,72.479,72.124 +225444,74.238,71.152 +225445,67.834,74.062 +225446,69.467,73.109 +225447,71.177,72.159 +225448,72.97,71.213 +225449,66.468,74.044 +225450,68.133,73.118 +225451,69.874,72.194 +225452,71.701,71.275 +225453,65.104,74.026 +225454,66.798,73.126 +225455,68.571,72.229 +225456,70.43,71.338 +225457,63.74,74.007 +225458,65.464,73.134 +225459,67.268,72.265 +225460,69.158,71.402 +225461,62.379,73.987 +225462,64.131,73.142 +225463,65.964,72.301 +225464,67.885,71.466 +225465,61.018,73.966 +225466,62.798,73.149 +225467,64.659,72.337 +225468,66.61,71.531 +225469,59.659,73.945 +225470,61.466,73.157 +225471,63.354,72.373 +225472,65.334,71.597 +225473,58.301,73.924 +225474,60.133,73.164 +225475,62.049,72.41 +225476,64.056,71.663 +225477,56.945,73.901 +225478,58.802,73.171 +225479,60.743,72.446 +225480,62.776,71.73 +225481,55.59,73.878 +225482,57.471,73.178 +225483,59.436,72.483 +225484,61.495,71.797 +225485,54.236,73.855 +225486,56.14,73.184 +225487,58.129,72.52 +225488,60.212,71.865 +225489,52.884,73.831 +225490,54.81,73.19 +225491,56.821,72.557 +225492,58.928,71.934 +225493,51.534,73.806 +225494,53.48,73.197 +225495,55.513,72.595 +225496,57.642,72.003 +225497,50.185,73.781 +225498,52.151,73.203 +225499,54.204,72.632 +225500,56.354,72.072 +225501,48.837,73.755 +225502,50.823,73.209 +225503,52.895,72.67 +225504,55.065,72.142 +225505,47.491,73.729 +225506,49.494,73.214 +225507,51.585,72.708 +225508,53.774,72.213 +225509,46.147,73.703 +225510,48.167,73.22 +225511,50.275,72.746 +225512,52.482,72.284 +225513,44.804,73.676 +225514,46.84,73.225 +225515,48.964,72.784 +225516,51.187,72.355 +225517,43.462,73.649 +225518,45.513,73.231 +225519,47.652,72.823 +225520,49.891,72.426 +225521,42.122,73.621 +225522,44.187,73.236 +225523,46.34,72.861 +225524,48.593,72.498 +225525,40.784,73.593 +225526,42.861,73.241 +225527,45.027,72.899 +225528,47.294,72.57 +225529,39.448,73.565 +225530,41.536,73.246 +225531,43.714,72.938 +225532,45.993,72.643 +225533,38.112,73.537 +225534,40.212,73.251 +225535,42.4,72.977 +225536,44.689,72.715 +225537,36.779,73.508 +225538,38.888,73.256 +225539,41.086,73.015 +225540,43.385,72.788 +225541,35.447,73.479 +225542,37.565,73.261 +225543,39.771,73.054 +225544,42.078,72.861 +225545,34.117,73.45 +225546,36.242,73.266 +225547,38.455,73.093 +225548,40.77,72.934 +225549,32.788,73.421 +225550,34.919,73.27 +225551,37.139,73.132 +225552,39.46,73.008 +225553,31.461,73.392 +225554,33.598,73.275 +225555,35.822,73.171 +225556,38.148,73.081 +225557,30.135,73.362 +225558,32.276,73.28 +225559,34.505,73.21 +225560,36.834,73.155 +225561,28.812,73.333 +225562,30.956,73.284 +225563,33.187,73.249 +225564,35.518,73.228 +225565,27.489,73.303 +225566,29.635,73.289 +225567,31.868,73.288 +225568,34.201,73.302 +225569,26.169,73.273 +225570,28.316,73.294 +225571,30.549,73.327 +225572,32.882,73.375 +225573,24.85,73.244 +225574,26.997,73.298 +225575,29.229,73.366 +225576,31.561,73.448 +225577,23.533,73.214 +225578,25.678,73.303 +225579,27.909,73.405 +225580,30.238,73.522 +225581,22.217,73.185 +225582,24.36,73.308 +225583,26.588,73.444 +225584,28.914,73.595 +225585,20.903,73.155 +225586,23.043,73.312 +225587,25.267,73.483 +225588,27.588,73.668 +225589,19.59,73.126 +225590,21.726,73.317 +225591,23.944,73.522 +225592,26.259,73.741 +225593,18.28,73.097 +225594,20.409,73.322 +225595,22.622,73.561 +225596,24.93,73.814 +225597,16.97,73.068 +225598,19.094,73.327 +225599,21.298,73.599 +225600,23.598,73.887 +225601,15.663,73.039 +225602,17.778,73.332 +225603,19.975,73.638 +225604,22.265,73.959 +225605,14.357,73.01 +225606,16.463,73.337 +225607,18.65,73.677 +225608,20.93,74.031 +225609,13.052,72.982 +225610,15.149,73.342 +225611,17.325,73.715 +225612,19.593,74.103 +225613,11.75,72.954 +225614,13.835,73.347 +225615,16,73.754 +225616,18.254,74.174 +225617,10.448,72.926 +225618,12.522,73.353 +225619,14.673,73.792 +225620,16.914,74.246 +225621,9.1489,72.899 +225622,11.21,73.358 +225623,13.347,73.83 +225624,15.572,74.316 +225625,7.8508,72.872 +225626,9.8975,73.364 +225627,12.019,73.868 +225628,14.229,74.387 +225629,6.5543,72.845 +225630,8.5858,73.369 +225631,10.691,73.906 +225632,12.883,74.457 +225633,5.2594,72.819 +225634,7.2747,73.375 +225635,9.363,73.944 +225636,11.536,74.526 +225637,3.9659,72.793 +225638,5.964,73.381 +225639,8.0341,73.982 +225640,10.188,74.595 +225641,2.674,72.768 +225642,4.6539,73.387 +225643,6.7046,74.019 +225644,8.8377,74.664 +225645,1.3837,72.743 +225646,3.3443,73.394 +225647,5.3745,74.057 +225648,7.4859,74.732 +225649,0.09476,72.719 +225650,2.0351,73.4 +225651,4.0439,74.094 +225652,6.1325,74.799 +225653,358.81,72.695 +225654,0.72646,73.407 +225655,2.7128,74.131 +225656,4.7776,74.866 +225657,357.52,72.672 +225658,359.42,73.414 +225659,1.3812,74.168 +225660,3.4212,74.933 +225661,356.24,72.649 +225662,358.11,73.421 +225663,0.049092,74.204 +225664,2.0632,74.998 +225665,354.95,72.627 +225666,356.8,73.428 +225667,358.72,74.24 +225668,0.7037,75.064 +225669,353.67,72.606 +225670,355.5,73.436 +225671,357.38,74.277 +225672,359.34,75.128 +225673,352.39,72.585 +225674,354.19,73.444 +225675,356.05,74.313 +225676,357.98,75.192 +225677,351.11,72.565 +225678,352.88,73.452 +225679,354.72,74.348 +225680,356.62,75.255 +225681,349.84,72.546 +225682,351.58,73.46 +225683,353.38,74.384 +225684,355.25,75.317 +225685,348.56,72.527 +225686,350.27,73.469 +225687,352.05,74.419 +225688,353.88,75.379 +225689,347.28,72.509 +225690,348.97,73.477 +225691,350.71,74.454 +225692,352.52,75.439 +225693,346.01,72.492 +225694,347.67,73.486 +225695,349.37,74.489 +225696,351.15,75.499 +225697,344.74,72.476 +225698,346.36,73.496 +225699,348.04,74.523 +225700,349.78,75.559 +225701,343.47,72.46 +225702,345.06,73.505 +225703,346.7,74.557 +225704,348.41,75.617 +225705,342.2,72.446 +225706,343.75,73.515 +225707,345.36,74.591 +225708,347.03,75.674 +225709,340.93,72.432 +225710,342.45,73.525 +225711,344.03,74.625 +225712,345.66,75.731 +225713,339.66,72.419 +225714,341.15,73.536 +225715,342.69,74.658 +225716,344.28,75.787 +225717,338.4,72.407 +225718,339.85,73.546 +225719,341.35,74.691 +225720,342.91,75.842 +225721,337.13,72.396 +225722,338.55,73.558 +225723,340.01,74.724 +225724,341.53,75.896 +225725,335.87,72.386 +225726,337.25,73.569 +225727,338.67,74.756 +225728,340.15,75.949 +225729,334.6,72.377 +225730,335.94,73.581 +225731,337.33,74.789 +225732,338.77,76.001 +225733,333.34,72.369 +225734,334.64,73.593 +225735,335.99,74.82 +225736,337.39,76.052 +225737,332.08,72.362 +225738,333.34,73.605 +225739,334.65,74.852 +225740,336.01,76.102 +225741,330.82,72.356 +225742,332.04,73.618 +225743,333.31,74.883 +225744,334.62,76.151 +225745,329.56,72.351 +225746,330.74,73.631 +225747,331.97,74.914 +225748,333.24,76.199 +225749,328.3,72.347 +225750,329.45,73.644 +225751,330.63,74.944 +225752,331.86,76.246 +225753,327.05,72.344 +225754,328.15,73.658 +225755,329.29,74.974 +225756,330.47,76.292 +225757,325.79,72.342 +225758,326.85,73.672 +225759,327.94,75.004 +225760,329.09,76.337 +225761,324.53,72.341 +225762,325.55,73.687 +225763,326.6,75.034 +225764,327.7,76.381 +225765,323.28,72.341 +225766,324.25,73.701 +225767,325.26,75.063 +225768,326.31,76.424 +225769,322.02,72.343 +225770,322.95,73.717 +225771,323.92,75.091 +225772,324.92,76.466 +225773,320.77,72.345 +225774,321.66,73.732 +225775,322.57,75.12 +225776,323.53,76.507 +225777,319.52,72.349 +225778,320.36,73.748 +225779,321.23,75.148 +225780,322.14,76.546 +225781,318.27,72.354 +225782,319.06,73.765 +225783,319.89,75.175 +225784,320.75,76.585 +225785,317.02,72.36 +225786,317.76,73.781 +225787,318.54,75.203 +225788,319.36,76.622 +225789,315.76,72.367 +225790,316.47,73.798 +225791,317.2,75.229 +225792,317.97,76.659 +225793,314.51,72.375 +225794,315.17,73.816 +225795,315.86,75.256 +225796,316.58,76.694 +225797,313.27,72.384 +225798,313.87,73.834 +225799,314.51,75.282 +225800,315.19,76.728 +225801,312.02,72.395 +225802,312.58,73.852 +225803,313.17,75.308 +225804,313.79,76.76 +225805,310.77,72.407 +225806,311.28,73.871 +225807,311.82,75.333 +225808,312.4,76.792 +225809,309.52,72.42 +225810,309.98,73.89 +225811,310.48,75.358 +225812,311.01,76.823 +225813,308.27,72.434 +225814,308.69,73.91 +225815,309.13,75.383 +225816,309.61,76.852 +225817,307.02,72.45 +225818,307.39,73.929 +225819,307.79,75.407 +225820,308.22,76.88 +225821,305.78,72.466 +225822,306.09,73.95 +225823,306.44,75.431 +225824,306.83,76.907 +225825,304.53,72.484 +225826,304.8,73.971 +225827,305.1,75.454 +225828,305.43,76.933 +225829,303.28,72.503 +225830,303.5,73.992 +225831,303.75,75.477 +225832,304.04,76.958 +225833,302.04,72.524 +225834,302.21,74.013 +225835,302.41,75.5 +225836,302.64,76.982 +225837,300.79,72.545 +225838,300.91,74.035 +225839,301.06,75.522 +225840,301.25,77.004 +225841,299.54,72.568 +225842,299.61,74.057 +225843,299.72,75.544 +225844,299.85,77.025 +225845,298.3,72.592 +225846,298.32,74.08 +225847,298.37,75.565 +225848,298.46,77.045 +225849,297.05,72.617 +225850,297.02,74.103 +225851,297.03,75.586 +225852,297.06,77.064 +225853,295.8,72.644 +225854,295.73,74.127 +225855,295.68,75.607 +225856,295.67,77.082 +225857,294.56,72.671 +225858,294.43,74.151 +225859,294.34,75.627 +225860,294.28,77.098 +225861,293.31,72.7 +225862,293.13,74.175 +225863,292.99,75.647 +225864,292.88,77.114 +225865,292.07,72.731 +225866,291.84,74.2 +225867,291.65,75.666 +225868,291.49,77.128 +225869,290.82,72.762 +225870,290.54,74.225 +225871,290.3,75.686 +225872,290.09,77.141 +225873,289.57,72.794 +225874,289.25,74.251 +225875,288.96,75.704 +225876,288.7,77.153 +225877,288.32,72.828 +225878,287.95,74.277 +225879,287.61,75.723 +225880,287.31,77.163 +225881,287.08,72.863 +225882,286.65,74.303 +225883,286.27,75.741 +225884,285.91,77.173 +225885,285.83,72.899 +225886,285.36,74.33 +225887,284.92,75.758 +225888,284.52,77.182 +225889,284.58,72.937 +225890,284.06,74.357 +225891,283.58,75.775 +225892,283.13,77.189 +225893,283.33,72.975 +225894,282.76,74.385 +225895,282.23,75.792 +225896,281.74,77.195 +225897,282.08,73.015 +225898,281.47,74.413 +225899,280.89,75.809 +225900,280.35,77.2 +225901,280.84,73.056 +225902,280.17,74.441 +225903,279.54,75.825 +225904,278.95,77.204 +225905,279.59,73.098 +225906,278.87,74.47 +225907,278.2,75.84 +225908,277.56,77.207 +225909,278.34,73.141 +225910,277.57,74.499 +225911,276.85,75.856 +225912,276.17,77.209 +225913,277.08,73.185 +225914,276.28,74.529 +225915,275.51,75.871 +225916,274.79,77.21 +225917,275.83,73.23 +225918,274.98,74.558 +225919,274.17,75.885 +225920,273.4,77.209 +225921,274.58,73.277 +225922,273.68,74.589 +225923,272.82,75.9 +225924,272.01,77.208 +225925,273.33,73.324 +225926,272.38,74.619 +225927,271.48,75.914 +225928,270.62,77.206 +225929,272.07,73.373 +225930,271.08,74.65 +225931,270.14,75.927 +225932,269.24,77.202 +225933,270.82,73.423 +225934,269.78,74.681 +225935,268.79,75.94 +225936,267.85,77.198 +225937,269.56,73.474 +225938,268.48,74.713 +225939,267.45,75.953 +225940,266.46,77.192 +225941,268.31,73.525 +225942,267.18,74.745 +225943,266.11,75.966 +225944,265.08,77.186 +225945,267.05,73.578 +225946,265.88,74.777 +225947,264.77,75.978 +225948,263.7,77.179 +225949,265.79,73.632 +225950,264.58,74.81 +225951,263.42,75.99 +225952,262.32,77.17 +225953,264.54,73.687 +225954,263.28,74.843 +225955,262.08,76.002 +225956,260.93,77.161 +225957,263.28,73.742 +225958,261.98,74.876 +225959,260.74,76.013 +225960,259.55,77.151 +225961,262.02,73.799 +225962,260.68,74.91 +225963,259.4,76.024 +225964,258.17,77.14 +225965,260.75,73.856 +225966,259.38,74.944 +225967,258.06,76.035 +225968,256.8,77.128 +225969,259.49,73.915 +225970,258.08,74.978 +225971,256.72,76.045 +225972,255.42,77.115 +225973,258.23,73.974 +225974,256.77,75.013 +225975,255.38,76.056 +225976,254.04,77.101 +225977,256.96,74.035 +225978,255.47,75.047 +225979,254.04,76.066 +225980,252.67,77.087 +225981,255.7,74.096 +225982,254.17,75.083 +225983,252.7,76.075 +225984,251.29,77.071 +225985,254.43,74.158 +225986,252.86,75.118 +225987,251.36,76.085 +225988,249.92,77.055 +225989,253.16,74.22 +225990,251.56,75.154 +225991,250.02,76.094 +225992,248.55,77.038 +225993,251.89,74.284 +225994,250.26,75.189 +225995,248.69,76.103 +225996,247.18,77.021 +225997,250.62,74.348 +225998,248.95,75.226 +225999,247.35,76.111 +226000,245.81,77.002 +226001,249.35,74.413 +226002,247.65,75.262 +226003,246.01,76.12 +226004,244.44,76.983 +226005,248.08,74.479 +226006,246.34,75.299 +226007,244.67,76.128 +226008,243.07,76.963 +226009,246.8,74.545 +226010,245.03,75.336 +226011,243.34,76.136 +226012,241.7,76.943 +226013,245.52,74.612 +226014,243.73,75.373 +226015,242,76.143 +226016,240.34,76.921 +226017,244.25,74.68 +226018,242.42,75.41 +226019,240.67,76.151 +226020,238.98,76.9 +226021,242.97,74.748 +226022,241.11,75.448 +226023,239.33,76.158 +226024,237.61,76.877 +226025,241.69,74.817 +226026,239.8,75.485 +226027,237.99,76.165 +226028,236.25,76.854 +226029,240.41,74.886 +226030,238.5,75.523 +226031,236.66,76.172 +226032,234.89,76.831 +226033,239.12,74.956 +226034,237.19,75.561 +226035,235.33,76.179 +226036,233.54,76.807 +226037,237.84,75.026 +226038,235.88,75.6 +226039,233.99,76.186 +226040,232.18,76.782 +226041,236.55,75.097 +226042,234.57,75.638 +226043,232.66,76.192 +226044,230.82,76.757 +226045,235.26,75.169 +226046,233.26,75.677 +226047,231.33,76.198 +226048,229.47,76.732 +226049,233.97,75.241 +226050,231.94,75.715 +226051,230,76.205 +226052,228.12,76.706 +226053,232.68,75.313 +226054,230.63,75.754 +226055,228.66,76.211 +226056,226.77,76.679 +226057,231.39,75.385 +226058,229.32,75.793 +226059,227.33,76.217 +226060,225.42,76.652 +226061,230.1,75.458 +226062,228.01,75.833 +226063,226,76.222 +226064,224.07,76.625 +226065,228.8,75.532 +226066,226.69,75.872 +226067,224.67,76.228 +226068,222.72,76.598 +226069,227.5,75.605 +226070,225.38,75.911 +226071,223.34,76.234 +226072,221.38,76.57 +226073,226.2,75.679 +226074,224.07,75.951 +226075,222.01,76.239 +226076,220.03,76.542 +226077,224.9,75.753 +226078,222.75,75.99 +226079,220.68,76.245 +226080,218.69,76.514 +226081,223.6,75.827 +226082,221.44,76.03 +226083,219.36,76.25 +226084,217.35,76.485 +226085,222.3,75.902 +226086,220.12,76.07 +226087,218.03,76.255 +226088,216.01,76.457 +226089,220.99,75.976 +226090,218.8,76.109 +226091,216.7,76.261 +226092,214.68,76.428 +226093,219.68,76.051 +226094,217.49,76.149 +226095,215.37,76.266 +226096,213.34,76.399 +226097,218.38,76.126 +226098,216.17,76.189 +226099,214.05,76.271 +226100,212,76.369 +226101,217.06,76.201 +226102,214.85,76.229 +226103,212.72,76.276 +226104,210.67,76.34 +226105,215.75,76.276 +226106,213.53,76.269 +226107,211.4,76.281 +226108,209.34,76.311 +226109,214.44,76.351 +226110,212.21,76.309 +226111,210.07,76.287 +226112,208.01,76.282 +226113,213.12,76.426 +226114,210.89,76.349 +226115,208.75,76.292 +226116,206.68,76.252 +226117,211.8,76.5 +226118,209.57,76.389 +226119,207.43,76.297 +226120,205.36,76.223 +226121,210.48,76.575 +226122,208.25,76.429 +226123,206.1,76.302 +226124,204.03,76.193 +226125,209.16,76.65 +226126,206.93,76.468 +226127,204.78,76.307 +226128,202.71,76.164 +226129,207.84,76.724 +226130,205.61,76.508 +226131,203.46,76.313 +226132,201.39,76.135 +226133,206.52,76.799 +226134,204.28,76.548 +226135,202.14,76.318 +226136,200.07,76.106 +226137,205.19,76.873 +226138,202.96,76.588 +226139,200.82,76.323 +226140,198.75,76.077 +226141,203.86,76.947 +226142,201.64,76.628 +226143,199.49,76.329 +226144,197.43,76.049 +226145,202.53,77.021 +226146,200.31,76.667 +226147,198.17,76.334 +226148,196.11,76.02 +226149,201.2,77.094 +226150,198.99,76.707 +226151,196.86,76.34 +226152,194.8,75.992 +226153,199.87,77.167 +226154,197.66,76.746 +226155,195.54,76.346 +226156,193.49,75.964 +226157,198.53,77.24 +226158,196.33,76.785 +226159,194.22,76.352 +226160,192.18,75.936 +226161,197.2,77.313 +226162,195.01,76.825 +226163,192.9,76.357 +226164,190.87,75.909 +226165,195.86,77.385 +226166,193.68,76.864 +226167,191.58,76.364 +226168,189.56,75.882 +226169,194.52,77.457 +226170,192.35,76.903 +226171,190.27,76.37 +226172,188.25,75.855 +226173,193.18,77.528 +226174,191.02,76.942 +226175,188.95,76.376 +226176,186.95,75.829 +226177,191.84,77.599 +226178,189.69,76.98 +226179,187.63,76.383 +226180,185.64,75.803 +226181,190.49,77.669 +226182,188.36,77.019 +226183,186.32,76.389 +226184,184.34,75.778 +226185,189.14,77.739 +226186,187.03,77.057 +226187,185,76.396 +226188,183.04,75.753 +226189,187.8,77.808 +226190,185.7,77.096 +226191,183.69,76.403 +226192,181.74,75.728 +226193,186.45,77.877 +226194,184.37,77.134 +226195,182.37,76.41 +226196,180.45,75.705 +226197,185.1,77.945 +226198,183.04,77.172 +226199,181.06,76.418 +226200,179.15,75.681 +226201,183.74,78.013 +226202,181.71,77.209 +226203,179.75,76.425 +226204,177.86,75.659 +226205,182.39,78.079 +226206,180.37,77.247 +226207,178.44,76.433 +226208,176.56,75.636 +226209,181.03,78.146 +226210,179.04,77.284 +226211,177.12,76.441 +226212,175.27,75.615 +226213,179.68,78.211 +226214,177.71,77.321 +226215,175.81,76.449 +226216,173.98,75.594 +226217,178.32,78.276 +226218,176.37,77.358 +226219,174.5,76.458 +226220,172.69,75.574 +226221,176.96,78.34 +226222,175.04,77.395 +226223,173.19,76.466 +226224,171.41,75.554 +226225,175.6,78.404 +226226,173.7,77.431 +226227,171.88,76.475 +226228,170.12,75.536 +226229,174.23,78.466 +226230,172.37,77.467 +226231,170.57,76.485 +226232,168.83,75.518 +226233,172.87,78.528 +226234,171.03,77.503 +226235,169.26,76.494 +226236,167.55,75.5 +226237,171.5,78.589 +226238,169.69,77.539 +226239,167.95,76.504 +226240,166.27,75.484 +226241,170.14,78.65 +226242,168.36,77.574 +226243,166.64,76.514 +226244,164.99,75.468 +226245,168.77,78.709 +226246,167.02,77.609 +226247,165.33,76.524 +226248,163.71,75.454 +226249,167.4,78.768 +226250,165.68,77.644 +226251,164.03,76.535 +226252,162.43,75.44 +226253,166.03,78.825 +226254,164.34,77.678 +226255,162.72,76.546 +226256,161.15,75.427 +226257,164.66,78.882 +226258,163,77.713 +226259,161.41,76.557 +226260,159.88,75.415 +226261,163.28,78.938 +226262,161.66,77.746 +226263,160.11,76.568 +226264,158.6,75.403 +226265,161.91,78.993 +226266,160.32,77.78 +226267,158.8,76.58 +226268,157.33,75.393 +226269,160.53,79.047 +226270,158.98,77.813 +226271,157.49,76.592 +226272,156.05,75.384 +226273,159.15,79.1 +226274,157.64,77.846 +226275,156.19,76.605 +226276,154.78,75.375 +226277,157.78,79.152 +226278,156.3,77.879 +226279,154.88,76.618 +226280,153.51,75.368 +226281,156.4,79.203 +226282,154.96,77.911 +226283,153.58,76.631 +226284,152.24,75.361 +226285,155.02,79.253 +226286,153.62,77.943 +226287,152.27,76.644 +226288,150.97,75.356 +226289,153.64,79.301 +226290,152.28,77.975 +226291,150.97,76.658 +226292,149.71,75.352 +226293,152.25,79.349 +226294,150.93,78.006 +226295,149.66,76.673 +226296,148.44,75.349 +226297,150.87,79.396 +226298,149.59,78.037 +226299,148.36,76.687 +226300,147.18,75.346 +226301,149.49,79.442 +226302,148.25,78.068 +226303,147.06,76.702 +226304,145.91,75.345 +226305,148.1,79.487 +226306,146.9,78.098 +226307,145.75,76.717 +226308,144.65,75.345 +226309,146.72,79.53 +226310,145.56,78.128 +226311,144.45,76.733 +226312,143.38,75.346 +226313,145.33,79.573 +226314,144.22,78.157 +226315,143.15,76.749 +226316,142.12,75.349 +226317,143.94,79.614 +226318,142.87,78.187 +226319,141.85,76.766 +226320,140.86,75.352 +226321,142.56,79.654 +226322,141.53,78.215 +226323,140.54,76.783 +226324,139.6,75.356 +226325,141.17,79.694 +226326,140.18,78.244 +226327,139.24,76.8 +226328,138.34,75.362 +226329,139.78,79.732 +226330,138.84,78.272 +226331,137.94,76.817 +226332,137.08,75.369 +226333,138.39,79.768 +226334,137.49,78.299 +226335,136.64,76.835 +226336,135.82,75.377 +226337,137,79.804 +226338,136.15,78.327 +226339,135.34,76.854 +226340,134.56,75.386 +226341,135.61,79.839 +226342,134.8,78.354 +226343,134.03,76.873 +226344,133.31,75.397 +226345,134.22,79.872 +226346,133.45,78.38 +226347,132.73,76.892 +226348,132.05,75.408 +226349,132.82,79.904 +226350,132.11,78.406 +226351,131.43,76.912 +226352,130.79,75.421 +226353,131.43,79.935 +226354,130.76,78.432 +226355,130.13,76.932 +226356,129.54,75.435 +226357,130.04,79.965 +226358,129.42,78.457 +226359,128.83,76.952 +226360,128.28,75.45 +226361,128.64,79.994 +226362,128.07,78.482 +226363,127.53,76.973 +226364,127.03,75.467 +226365,127.25,80.0212 +226366,126.72,78.507 +226367,126.23,76.994 +226368,125.77,75.485 +226369,125.86,80.0475 +226370,125.37,78.531 +226371,124.93,77.016 +226372,124.52,75.504 +226373,124.46,80.0726 +226374,124.03,78.555 +226375,123.63,77.038 +226376,123.26,75.524 +226377,123.07,80.0965 +226378,122.68,78.578 +226379,122.33,77.061 +226380,122.01,75.545 +226381,121.67,80.1192 +226382,121.33,78.601 +226383,121.03,77.084 +226384,120.76,75.568 +226385,120.28,80.1408 +226386,119.99,78.624 +226387,119.73,77.107 +226388,119.5,75.592 +226389,118.88,80.1611 +226390,118.64,78.646 +226391,118.43,77.131 +226392,118.25,75.617 +226393,117.49,80.1802 +226394,117.29,78.668 +226395,117.13,77.155 +226396,117,75.643 +226397,116.09,80.1982 +226398,115.94,78.689 +226399,115.83,77.179 +226400,115.74,75.671 +226401,114.7,80.215 +226402,114.6,78.71 +226403,114.53,77.204 +226404,114.49,75.7 +226405,113.3,80.2305 +226406,113.25,78.73 +226407,113.23,77.23 +226408,113.24,75.73 +226409,111.91,80.245 +226410,111.9,78.751 +226411,111.93,77.256 +226412,111.99,75.762 +226413,110.51,80.2582 +226414,110.55,78.77 +226415,110.63,77.282 +226416,110.73,75.794 +226417,109.12,80.2703 +226418,109.21,78.79 +226419,109.33,77.309 +226420,109.48,75.828 +226421,107.72,80.2812 +226422,107.86,78.809 +226423,108.03,77.336 +226424,108.23,75.863 +226425,106.33,80.2909 +226426,106.51,78.827 +226427,106.73,77.363 +226428,106.97,75.9 +226429,104.93,80.2995 +226430,105.16,78.846 +226431,105.43,77.391 +226432,105.72,75.937 +226433,103.54,80.307 +226434,103.82,78.864 +226435,104.12,77.419 +226436,104.47,75.976 +226437,102.15,80.3133 +226438,102.47,78.881 +226439,102.82,77.448 +226440,103.21,76.016 +226441,100.75,80.3185 +226442,101.12,78.898 +226443,101.52,77.477 +226444,101.96,76.057 +226445,99.359,80.3226 +226446,99.774,78.915 +226447,100.22,77.507 +226448,100.7,76.099 +226449,97.967,80.3255 +226450,98.427,78.931 +226451,98.921,77.536 +226452,99.448,76.143 +226453,96.575,80.3274 +226454,97.08,78.947 +226455,97.619,77.567 +226456,98.193,76.187 +226457,95.183,80.3282 +226458,95.734,78.963 +226459,96.318,77.597 +226460,96.937,76.233 +226461,93.792,80.3279 +226462,94.387,78.978 +226463,95.016,77.628 +226464,95.681,76.28 +226465,92.401,80.3266 +226466,93.04,78.993 +226467,93.714,77.66 +226468,94.424,76.328 +226469,91.011,80.3242 +226470,91.694,79.008 +226471,92.412,77.691 +226472,93.167,76.377 +226473,89.621,80.3207 +226474,90.348,79.022 +226475,91.11,77.723 +226476,91.909,76.427 +226477,88.232,80.3163 +226478,89.002,79.036 +226479,89.807,77.756 +226480,90.65,76.479 +226481,86.844,80.3108 +226482,87.656,79.049 +226483,88.505,77.789 +226484,89.391,76.531 +226485,85.457,80.3043 +226486,86.311,79.063 +226487,87.202,77.822 +226488,88.131,76.584 +226489,84.07,80.2968 +226490,84.965,79.075 +226491,85.898,77.855 +226492,86.87,76.639 +226493,82.684,80.2884 +226494,83.62,79.088 +226495,84.595,77.889 +226496,85.609,76.694 +226497,81.298,80.2791 +226498,82.275,79.1 +226499,83.291,77.924 +226500,84.347,76.751 +226501,79.914,80.2687 +226502,80.931,79.112 +226503,81.987,77.958 +226504,83.084,76.808 +226505,78.53,80.2575 +226506,79.586,79.124 +226507,80.682,77.993 +226508,81.82,76.867 +226509,77.148,80.2454 +226510,78.242,79.135 +226511,79.377,78.028 +226512,80.555,76.926 +226513,75.766,80.2324 +226514,76.898,79.146 +226515,78.072,78.064 +226516,79.29,76.987 +226517,74.385,80.2185 +226518,75.555,79.157 +226519,76.767,78.099 +226520,78.023,77.048 +226521,73.005,80.2038 +226522,74.211,79.167 +226523,75.461,78.135 +226524,76.756,77.11 +226525,71.626,80.1883 +226526,72.868,79.178 +226527,74.155,78.172 +226528,75.487,77.173 +226529,70.248,80.172 +226530,71.526,79.188 +226531,72.848,78.208 +226532,74.218,77.237 +226533,68.871,80.1549 +226534,70.184,79.197 +226535,71.541,78.245 +226536,72.947,77.301 +226537,67.495,80.137 +226538,68.842,79.207 +226539,70.234,78.283 +226540,71.675,77.367 +226541,66.12,80.1183 +226542,67.5,79.216 +226543,68.927,78.32 +226544,70.402,77.433 +226545,64.746,80.099 +226546,66.159,79.225 +226547,67.618,78.358 +226548,69.128,77.5 +226549,63.374,80.079 +226550,64.818,79.233 +226551,66.31,78.396 +226552,67.853,77.568 +226553,62.002,80.0582 +226554,63.477,79.242 +226555,65.001,78.434 +226556,66.577,77.636 +226557,60.632,80.0368 +226558,62.137,79.25 +226559,63.692,78.472 +226560,65.299,77.705 +226561,59.263,80.0148 +226562,60.797,79.258 +226563,62.382,78.511 +226564,64.021,77.775 +226565,57.895,79.992 +226566,59.458,79.266 +226567,61.072,78.55 +226568,62.741,77.845 +226569,56.528,79.969 +226570,58.119,79.274 +226571,59.761,78.589 +226572,61.459,77.916 +226573,55.163,79.945 +226574,56.78,79.281 +226575,58.45,78.628 +226576,60.177,77.988 +226577,53.798,79.921 +226578,55.442,79.289 +226579,57.138,78.668 +226580,58.893,78.06 +226581,52.436,79.896 +226582,54.104,79.296 +226583,55.826,78.707 +226584,57.607,78.133 +226585,51.074,79.871 +226586,52.766,79.303 +226587,54.514,78.747 +226588,56.321,78.206 +226589,49.714,79.845 +226590,51.429,79.31 +226591,53.201,78.787 +226592,55.033,78.28 +226593,48.355,79.819 +226594,50.093,79.316 +226595,51.887,78.827 +226596,53.743,78.354 +226597,46.997,79.792 +226598,48.757,79.323 +226599,50.573,78.867 +226600,52.452,78.428 +226601,45.641,79.765 +226602,47.421,79.329 +226603,49.259,78.908 +226604,51.16,78.503 +226605,44.286,79.738 +226606,46.086,79.336 +226607,47.944,78.948 +226608,49.866,78.578 +226609,42.933,79.71 +226610,44.751,79.342 +226611,46.629,78.989 +226612,48.571,78.654 +226613,41.58,79.682 +226614,43.417,79.348 +226615,45.313,79.03 +226616,47.274,78.73 +226617,40.23,79.654 +226618,42.083,79.354 +226619,43.996,79.07 +226620,45.975,78.806 +226621,38.881,79.625 +226622,40.749,79.36 +226623,42.679,79.111 +226624,44.675,78.882 +226625,37.533,79.596 +226626,39.416,79.366 +226627,41.361,79.152 +226628,43.374,78.959 +226629,36.186,79.567 +226630,38.084,79.372 +226631,40.043,79.194 +226632,42.071,79.036 +226633,34.842,79.538 +226634,36.752,79.377 +226635,38.725,79.235 +226636,40.766,79.113 +226637,33.498,79.509 +226638,35.42,79.383 +226639,37.405,79.276 +226640,39.46,79.19 +226641,32.156,79.479 +226642,34.089,79.389 +226643,36.086,79.317 +226644,38.153,79.267 +226645,30.816,79.45 +226646,32.759,79.394 +226647,34.765,79.358 +226648,36.843,79.344 +226649,29.477,79.42 +226650,31.428,79.4 +226651,33.445,79.4 +226652,35.532,79.422 +226653,28.139,79.391 +226654,30.099,79.406 +226655,32.123,79.441 +226656,34.22,79.499 +226657,26.803,79.361 +226658,28.77,79.411 +226659,30.801,79.482 +226660,32.906,79.577 +226661,25.468,79.332 +226662,27.441,79.417 +226663,29.479,79.524 +226664,31.59,79.654 +226665,24.135,79.302 +226666,26.113,79.423 +226667,28.156,79.565 +226668,30.273,79.731 +226669,22.804,79.272 +226670,24.785,79.429 +226671,26.832,79.606 +226672,28.953,79.808 +226673,21.474,79.243 +226674,23.458,79.434 +226675,25.508,79.647 +226676,27.633,79.885 +226677,20.145,79.214 +226678,22.131,79.44 +226679,24.183,79.689 +226680,26.311,79.962 +226681,18.818,79.185 +226682,20.805,79.446 +226683,22.858,79.73 +226684,24.987,80.0387 +226685,17.493,79.156 +226686,19.479,79.452 +226687,21.532,79.771 +226688,23.661,80.1152 +226689,16.169,79.127 +226690,18.154,79.458 +226691,20.206,79.812 +226692,22.334,80.1913 +226693,14.846,79.099 +226694,16.829,79.464 +226695,18.879,79.853 +226696,21.005,80.2673 +226697,13.525,79.07 +226698,15.505,79.47 +226699,17.552,79.894 +226700,19.674,80.3429 +226701,12.205,79.042 +226702,14.181,79.477 +226703,16.224,79.934 +226704,18.342,80.4182 +226705,10.887,79.015 +226706,12.858,79.483 +226707,14.895,79.975 +226708,17.008,80.4931 +226709,9.5708,78.988 +226710,11.535,79.49 +226711,13.566,80.0154 +226712,15.673,80.5676 +226713,8.2557,78.961 +226714,10.213,79.496 +226715,12.236,80.0558 +226716,14.336,80.6418 +226717,6.9421,78.934 +226718,8.891,79.503 +226719,10.906,80.096 +226720,12.997,80.7155 +226721,5.6299,78.908 +226722,7.5697,79.51 +226723,9.5754,80.1361 +226724,11.657,80.7887 +226725,4.3192,78.883 +226726,6.2488,79.517 +226727,8.2441,80.176 +226728,10.315,80.8614 +226729,3.01,78.858 +226730,4.9283,79.525 +226731,6.9122,80.2158 +226732,8.972,80.9336 +226733,1.7022,78.833 +226734,3.6084,79.532 +226735,5.5798,80.2554 +226736,7.627,81.0053 +226737,0.39578,78.809 +226738,2.2889,79.54 +226739,4.2469,80.2948 +226740,6.2805,81.0763 +226741,359.09,78.786 +226742,0.96983,79.548 +226743,2.9135,80.334 +226744,4.9323,81.1468 +226745,357.79,78.763 +226746,359.65,79.556 +226747,1.5795,80.373 +226748,3.5827,81.2167 +226749,356.49,78.74 +226750,358.33,79.564 +226751,0.24507,80.4119 +226752,2.2315,81.2859 +226753,355.18,78.719 +226754,357.02,79.573 +226755,358.91,80.4505 +226756,0.87883,81.3544 +226757,353.88,78.698 +226758,355.7,79.582 +226759,357.57,80.4888 +226760,359.52,81.4223 +226761,352.59,78.678 +226762,354.38,79.591 +226763,356.24,80.527 +226764,358.17,81.4894 +226765,351.29,78.658 +226766,353.07,79.6 +226767,354.9,80.5649 +226768,356.81,81.5558 +226769,349.99,78.639 +226770,351.75,79.609 +226771,353.57,80.6026 +226772,355.45,81.6214 +226773,348.7,78.621 +226774,350.43,79.619 +226775,352.23,80.64 +226776,354.09,81.6862 +226777,347.41,78.604 +226778,349.12,79.629 +226779,350.89,80.6771 +226780,352.73,81.7502 +226781,346.12,78.587 +226782,347.8,79.639 +226783,349.55,80.714 +226784,351.37,81.8134 +226785,344.83,78.571 +226786,346.49,79.65 +226787,348.21,80.7506 +226788,350,81.8757 +226789,343.54,78.557 +226790,345.18,79.661 +226791,346.87,80.7869 +226792,348.64,81.9372 +226793,342.25,78.543 +226794,343.86,79.672 +226795,345.53,80.823 +226796,347.27,81.9977 +226797,340.96,78.53 +226798,342.55,79.683 +226799,344.19,80.8587 +226800,345.9,82.0574 +226801,339.68,78.517 +226802,341.24,79.695 +226803,342.85,80.8941 +226804,344.53,82.1161 +226805,338.39,78.506 +226806,339.92,79.707 +226807,341.51,80.9292 +226808,343.16,82.1738 +226809,337.11,78.496 +226810,338.61,79.72 +226811,340.17,80.9641 +226812,341.79,82.2306 +226813,335.83,78.486 +226814,337.3,79.732 +226815,338.83,80.9985 +226816,340.42,82.2864 +226817,334.55,78.478 +226818,335.99,79.746 +226819,337.48,81.0327 +226820,339.04,82.3412 +226821,333.27,78.471 +226822,334.68,79.759 +226823,336.14,81.0665 +226824,337.67,82.395 +226825,331.99,78.464 +226826,333.37,79.773 +226827,334.8,81.1 +226828,336.29,82.4478 +226829,330.71,78.459 +226830,332.06,79.787 +226831,333.46,81.1331 +226832,334.91,82.4995 +226833,329.43,78.455 +226834,330.75,79.801 +226835,332.11,81.1659 +226836,333.54,82.5501 +226837,328.16,78.452 +226838,329.44,79.816 +226839,330.77,81.1984 +226840,332.16,82.5996 +226841,326.88,78.45 +226842,328.13,79.831 +226843,329.42,81.2305 +226844,330.77,82.6481 +226845,325.61,78.449 +226846,326.82,79.847 +226847,328.08,81.2622 +226848,329.39,82.6955 +226849,324.34,78.449 +226850,325.51,79.863 +226851,326.73,81.2935 +226852,328.01,82.7417 +226853,323.06,78.45 +226854,324.2,79.879 +226855,325.39,81.3245 +226856,326.63,82.7868 +226857,321.79,78.453 +226858,322.89,79.896 +226859,324.04,81.3551 +226860,325.24,82.8308 +226861,320.52,78.456 +226862,321.58,79.913 +226863,322.69,81.3853 +226864,323.86,82.8736 +226865,319.25,78.461 +226866,320.28,79.931 +226867,321.35,81.4151 +226868,322.47,82.9152 +226869,317.98,78.467 +226870,318.97,79.949 +226871,320,81.4446 +226872,321.08,82.9557 +226873,316.71,78.474 +226874,317.66,79.967 +226875,318.65,81.4737 +226876,319.69,82.995 +226877,315.45,78.482 +226878,316.35,79.986 +226879,317.31,81.5023 +226880,318.31,83.0331 +226881,314.18,78.492 +226882,315.05,80.0046 +226883,315.96,81.5306 +226884,316.92,83.07 +226885,312.91,78.502 +226886,313.74,80.0241 +226887,314.61,81.5585 +226888,315.53,83.1057 +226889,311.65,78.514 +226890,312.43,80.0441 +226891,313.26,81.5859 +226892,314.14,83.1403 +226893,310.38,78.528 +226894,311.13,80.0644 +226895,311.91,81.613 +226896,312.74,83.1736 +226897,309.12,78.542 +226898,309.82,80.0852 +226899,310.56,81.6397 +226900,311.35,83.2056 +226901,307.85,78.558 +226902,308.51,80.1063 +226903,309.22,81.6659 +226904,309.96,83.2365 +226905,306.59,78.575 +226906,307.21,80.1279 +226907,307.87,81.6918 +226908,308.57,83.2661 +226909,305.33,78.593 +226910,305.9,80.1499 +226911,306.52,81.7172 +226912,307.17,83.2945 +226913,304.06,78.612 +226914,304.6,80.1724 +226915,305.17,81.7422 +226916,305.78,83.3217 +226917,302.8,78.633 +226918,303.29,80.1952 +226919,303.82,81.7669 +226920,304.39,83.3476 +226921,301.54,78.655 +226922,301.99,80.2185 +226923,302.47,81.7911 +226924,302.99,83.3723 +226925,300.28,78.678 +226926,300.68,80.2422 +226927,301.12,81.8149 +226928,301.6,83.3958 +226929,299.02,78.703 +226930,299.37,80.2663 +226931,299.77,81.8382 +226932,300.2,83.418 +226933,297.75,78.729 +226934,298.07,80.2909 +226935,298.42,81.8612 +226936,298.81,83.439 +226937,296.49,78.756 +226938,296.76,80.3158 +226939,297.07,81.8838 +226940,297.41,83.4587 +226941,295.23,78.784 +226942,295.46,80.3412 +226943,295.72,81.9059 +226944,296.01,83.4773 +226945,293.97,78.814 +226946,294.15,80.3671 +226947,294.37,81.9276 +226948,294.62,83.4946 +226949,292.71,78.844 +226950,292.85,80.3933 +226951,293.02,81.949 +226952,293.22,83.5106 +226953,291.45,78.877 +226954,291.54,80.42 +226955,291.67,81.9699 +226956,291.83,83.5255 +226957,290.19,78.91 +226958,290.24,80.447 +226959,290.32,81.9904 +226960,290.43,83.5391 +226961,288.93,78.945 +226962,288.93,80.4745 +226963,288.97,82.0105 +226964,289.03,83.5516 +226965,287.67,78.981 +226966,287.63,80.5025 +226967,287.62,82.0302 +226968,287.64,83.5628 +226969,286.41,79.018 +226970,286.32,80.5308 +226971,286.26,82.0495 +226972,286.24,83.5728 +226973,285.15,79.056 +226974,285.02,80.5595 +226975,284.91,82.0684 +226976,284.84,83.5816 +226977,283.89,79.096 +226978,283.71,80.5887 +226979,283.56,82.0869 +226980,283.45,83.5893 +226981,282.63,79.137 +226982,282.4,80.6182 +226983,282.21,82.105 +226984,282.05,83.5958 +226985,281.36,79.179 +226986,281.1,80.6482 +226987,280.86,82.1227 +226988,280.66,83.6011 +226989,280.1,79.222 +226990,279.79,80.6786 +226991,279.51,82.14 +226992,279.26,83.6052 +226993,278.84,79.267 +226994,278.49,80.7093 +226995,278.16,82.157 +226996,277.87,83.6082 +226997,277.58,79.312 +226998,277.18,80.7405 +226999,276.81,82.1735 +227000,276.47,83.6101 +227001,276.32,79.359 +227002,275.87,80.772 +227003,275.46,82.1897 +227004,275.08,83.6108 +227005,275.05,79.407 +227006,274.57,80.804 +227007,274.11,82.2055 +227008,273.68,83.6104 +227009,273.79,79.457 +227010,273.26,80.8363 +227011,272.76,82.2209 +227012,272.29,83.6089 +227013,272.53,79.507 +227014,271.95,80.869 +227015,271.41,82.236 +227016,270.9,83.6064 +227017,271.26,79.559 +227018,270.65,80.9021 +227019,270.06,82.2507 +227020,269.5,83.6027 +227021,270,79.611 +227022,269.34,80.9355 +227023,268.71,82.265 +227024,268.11,83.598 +227025,268.73,79.665 +227026,268.03,80.9693 +227027,267.36,82.279 +227028,266.72,83.5923 +227029,267.47,79.72 +227030,266.72,81.0035 +227031,266.01,82.2926 +227032,265.33,83.5855 +227033,266.2,79.776 +227034,265.42,81.038 +227035,264.66,82.3059 +227036,263.94,83.5777 +227037,264.93,79.833 +227038,264.11,81.0729 +227039,263.31,82.3189 +227040,262.55,83.5688 +227041,263.67,79.891 +227042,262.8,81.1081 +227043,261.97,82.3315 +227044,261.16,83.5591 +227045,262.4,79.95 +227046,261.49,81.1437 +227047,260.62,82.3438 +227048,259.77,83.5483 +227049,261.13,80.0096 +227050,260.18,81.1795 +227051,259.27,82.3558 +227052,258.38,83.5366 +227053,259.86,80.0706 +227054,258.87,81.2157 +227055,257.92,82.3675 +227056,257,83.5239 +227057,258.59,80.1325 +227058,257.56,81.2523 +227059,256.57,82.3788 +227060,255.61,83.5104 +227061,257.32,80.1954 +227062,256.26,81.2891 +227063,255.22,82.3899 +227064,254.23,83.4959 +227065,256.05,80.2593 +227066,254.95,81.3263 +227067,253.88,82.4007 +227068,252.84,83.4806 +227069,254.77,80.324 +227070,253.63,81.3637 +227071,252.53,82.4111 +227072,251.46,83.4644 +227073,253.5,80.3896 +227074,252.32,81.4014 +227075,251.18,82.4213 +227076,250.07,83.4474 +227077,252.22,80.4561 +227078,251.01,81.4395 +227079,249.84,82.4312 +227080,248.69,83.4295 +227081,250.95,80.5234 +227082,249.7,81.4777 +227083,248.49,82.4409 +227084,247.31,83.4109 +227085,249.67,80.5916 +227086,248.39,81.5163 +227087,247.14,82.4503 +227088,245.93,83.3915 +227089,248.39,80.6605 +227090,247.08,81.5551 +227091,245.8,82.4594 +227092,244.55,83.3714 +227093,247.12,80.7302 +227094,245.77,81.5942 +227095,244.45,82.4683 +227096,243.17,83.3505 +227097,245.84,80.8006 +227098,244.45,81.6335 +227099,243.11,82.477 +227100,241.8,83.3289 +227101,244.56,80.8718 +227102,243.14,81.6731 +227103,241.76,82.4854 +227104,240.42,83.3066 +227105,243.27,80.9436 +227106,241.83,81.7129 +227107,240.42,82.4936 +227108,239.05,83.2837 +227109,241.99,81.0162 +227110,240.51,81.7529 +227111,239.07,82.5016 +227112,237.67,83.2601 +227113,240.71,81.0893 +227114,239.2,81.7931 +227115,237.73,82.5094 +227116,236.3,83.2359 +227117,239.42,81.1631 +227118,237.88,81.8336 +227119,236.39,82.517 +227120,234.93,83.2112 +227121,238.13,81.2375 +227122,236.57,81.8742 +227123,235.04,82.5243 +227124,233.56,83.1859 +227125,236.85,81.3124 +227126,235.25,81.915 +227127,233.7,82.5316 +227128,232.19,83.16 +227129,235.56,81.3879 +227130,233.94,81.956 +227131,232.36,82.5386 +227132,230.82,83.1336 +227133,234.27,81.4638 +227134,232.62,81.9971 +227135,231.02,82.5455 +227136,229.45,83.1068 +227137,232.97,81.5403 +227138,231.3,82.0384 +227139,229.67,82.5522 +227140,228.09,83.0794 +227141,231.68,81.6172 +227142,229.98,82.0799 +227143,228.33,82.5588 +227144,226.72,83.0517 +227145,230.39,81.6945 +227146,228.67,82.1215 +227147,226.99,82.5653 +227148,225.36,83.0235 +227149,229.09,81.7723 +227150,227.35,82.1632 +227151,225.65,82.5716 +227152,224,82.995 +227153,227.8,81.8503 +227154,226.03,82.2051 +227155,224.31,82.5778 +227156,222.64,82.966 +227157,226.5,81.9288 +227158,224.71,82.2471 +227159,222.97,82.5839 +227160,221.28,82.9368 +227161,225.2,82.0075 +227162,223.39,82.2891 +227163,221.63,82.5899 +227164,219.92,82.9073 +227165,223.9,82.0865 +227166,222.07,82.3313 +227167,220.29,82.5958 +227168,218.56,82.8775 +227169,222.59,82.1658 +227170,220.75,82.3736 +227171,218.96,82.6016 +227172,217.21,82.8474 +227173,221.29,82.2452 +227174,219.43,82.4159 +227175,217.62,82.6074 +227176,215.85,82.8171 +227177,219.98,82.3249 +227178,218.11,82.4583 +227179,216.28,82.613 +227180,214.5,82.7867 +227181,218.68,82.4047 +227182,216.78,82.5007 +227183,214.94,82.6187 +227184,213.15,82.756 +227185,217.37,82.4847 +227186,215.46,82.5432 +227187,213.61,82.6243 +227188,211.8,82.7253 +227189,216.06,82.5647 +227190,214.14,82.5857 +227191,212.27,82.6298 +227192,210.45,82.6944 +227193,214.75,82.6448 +227194,212.81,82.6283 +227195,210.93,82.6354 +227196,209.11,82.6635 +227197,213.44,82.7249 +227198,211.49,82.6708 +227199,209.6,82.6409 +227200,207.76,82.6325 +227201,212.12,82.8051 +227202,210.16,82.7134 +227203,208.26,82.6464 +227204,206.42,82.6014 +227205,210.81,82.8852 +227206,208.84,82.7559 +227207,206.93,82.6519 +227208,205.07,82.5704 +227209,209.49,82.9653 +227210,207.51,82.7985 +227211,205.6,82.6575 +227212,203.73,82.5394 +227213,208.17,83.0453 +227214,206.19,82.841 +227215,204.26,82.663 +227216,202.39,82.5085 +227217,206.85,83.1251 +227218,204.86,82.8835 +227219,202.93,82.6686 +227220,201.05,82.4777 +227221,205.53,83.2049 +227222,203.53,82.9259 +227223,201.6,82.6742 +227224,199.72,82.447 +227225,204.2,83.2844 +227226,202.2,82.9683 +227227,200.26,82.6799 +227228,198.38,82.4164 +227229,202.88,83.3638 +227230,200.87,83.0106 +227231,198.93,82.6857 +227232,197.05,82.386 +227233,201.55,83.4429 +227234,199.55,83.0528 +227235,197.6,82.6915 +227236,195.71,82.3558 +227237,200.22,83.5217 +227238,198.22,83.095 +227239,196.27,82.6974 +227240,194.38,82.3259 +227241,198.89,83.6002 +227242,196.89,83.137 +227243,194.94,82.7034 +227244,193.05,82.2962 +227245,197.56,83.6785 +227246,195.55,83.179 +227247,193.61,82.7095 +227248,191.72,82.2668 +227249,196.23,83.7563 +227250,194.22,83.2208 +227251,192.28,82.7157 +227252,190.4,82.2377 +227253,194.9,83.8338 +227254,192.89,83.2626 +227255,190.95,82.722 +227256,189.07,82.2089 +227257,193.56,83.9108 +227258,191.56,83.3041 +227259,189.62,82.7285 +227260,187.75,82.1805 +227261,192.22,83.9875 +227262,190.23,83.3456 +227263,188.3,82.7351 +227264,186.42,82.1526 +227265,190.88,84.0636 +227266,188.89,83.3869 +227267,186.97,82.7418 +227268,185.1,82.125 +227269,189.54,84.1393 +227270,187.56,83.428 +227271,185.64,82.7487 +227272,183.78,82.0979 +227273,188.2,84.2144 +227274,186.22,83.469 +227275,184.31,82.7557 +227276,182.46,82.0713 +227277,186.86,84.2889 +227278,184.89,83.5097 +227279,182.99,82.763 +227280,181.15,82.0452 +227281,185.51,84.3629 +227282,183.55,83.5503 +227283,181.66,82.7704 +227284,179.83,82.0196 +227285,184.16,84.4363 +227286,182.22,83.5907 +227287,180.34,82.778 +227288,178.52,81.9946 +227289,182.82,84.509 +227290,180.88,83.6309 +227291,179.01,82.7858 +227292,177.2,81.9702 +227293,181.47,84.5811 +227294,179.54,83.6709 +227295,177.69,82.7938 +227296,175.89,81.9463 +227297,180.12,84.6525 +227298,178.21,83.7106 +227299,176.36,82.802 +227300,174.58,81.9231 +227301,178.76,84.7231 +227302,176.87,83.7501 +227303,175.04,82.8105 +227304,173.27,81.9006 +227305,177.41,84.7931 +227306,175.53,83.7894 +227307,173.72,82.8192 +227308,171.96,81.8788 +227309,176.05,84.8622 +227310,174.19,83.8284 +227311,172.39,82.8281 +227312,170.66,81.8576 +227313,174.7,84.9306 +227314,172.85,83.8672 +227315,171.07,82.8373 +227316,169.35,81.8373 +227317,173.34,84.9982 +227318,171.51,83.9057 +227319,169.75,82.8467 +227320,168.05,81.8176 +227321,171.98,85.0649 +227322,170.17,83.9439 +227323,168.43,82.8564 +227324,166.74,81.7988 +227325,170.62,85.1307 +227326,168.83,83.9819 +227327,167.11,82.8664 +227328,165.44,81.7807 +227329,169.26,85.1957 +227330,167.49,84.0195 +227331,165.79,82.8766 +227332,164.14,81.7635 +227333,167.89,85.2598 +227334,166.15,84.0569 +227335,164.47,82.8872 +227336,162.84,81.7471 +227337,166.53,85.323 +227338,164.8,84.094 +227339,163.15,82.898 +227340,161.55,81.7316 +227341,165.16,85.3852 +227342,163.46,84.1307 +227343,161.83,82.9091 +227344,160.25,81.717 +227345,163.79,85.4464 +227346,162.12,84.1671 +227347,160.51,82.9206 +227348,158.95,81.7034 +227349,162.42,85.5066 +227350,160.77,84.2033 +227351,159.19,82.9323 +227352,157.66,81.6906 +227353,161.05,85.5659 +227354,159.43,84.239 +227355,157.87,82.9444 +227356,156.37,81.6788 +227357,159.68,85.6241 +227358,158.08,84.2745 +227359,156.55,82.9568 +227360,155.07,81.668 +227361,158.31,85.6813 +227362,156.74,84.3096 +227363,155.23,82.9696 +227364,153.78,81.6582 +227365,156.93,85.7374 +227366,155.39,84.3443 +227367,153.92,82.9827 +227368,152.49,81.6494 +227369,155.56,85.7924 +227370,154.05,84.3787 +227371,152.6,82.9961 +227372,151.2,81.6416 +227373,154.18,85.8463 +227374,152.7,84.4127 +227375,151.28,83.0099 +227376,149.92,81.6349 +227377,152.81,85.8991 +227378,151.35,84.4464 +227379,149.97,83.0241 +227380,148.63,81.6292 +227381,151.43,85.9508 +227382,150.01,84.4797 +227383,148.65,83.0386 +227384,147.34,81.6246 +227385,150.05,86.0014 +227386,148.66,84.5126 +227387,147.33,83.0535 +227388,146.06,81.6212 +227389,148.67,86.0508 +227390,147.31,84.5451 +227391,146.02,83.0687 +227392,144.77,81.6188 +227393,147.28,86.099 +227394,145.96,84.5772 +227395,144.7,83.0843 +227396,143.49,81.6176 +227397,145.9,86.146 +227398,144.62,84.609 +227399,143.39,83.1004 +227400,142.21,81.6175 +227401,144.52,86.1919 +227402,143.27,84.6403 +227403,142.07,83.1168 +227404,140.93,81.6186 +227405,143.13,86.2365 +227406,141.92,84.6713 +227407,140.76,83.1336 +227408,139.65,81.6208 +227409,141.75,86.2799 +227410,140.57,84.7018 +227411,139.44,83.1507 +227412,138.37,81.6242 +227413,140.36,86.3221 +227414,139.22,84.732 +227415,138.13,83.1683 +227416,137.09,81.6289 +227417,138.97,86.3631 +227418,137.87,84.7617 +227419,136.82,83.1863 +227420,135.81,81.6347 +227421,137.59,86.4028 +227422,136.52,84.791 +227423,135.5,83.2047 +227424,134.53,81.6418 +227425,136.2,86.4412 +227426,135.17,84.8199 +227427,134.19,83.2235 +227428,133.26,81.6501 +227429,134.81,86.4784 +227430,133.82,84.8484 +227431,132.87,83.2428 +227432,131.98,81.6596 +227433,133.42,86.5143 +227434,132.46,84.8765 +227435,131.56,83.2624 +227436,130.7,81.6704 +227437,132.03,86.5489 +227438,131.11,84.9041 +227439,130.25,83.2825 +227440,129.43,81.6824 +227441,130.64,86.5823 +227442,129.76,84.9313 +227443,128.94,83.3029 +227444,128.15,81.6957 +227445,129.24,86.6144 +227446,128.41,84.958 +227447,127.62,83.3238 +227448,126.88,81.7103 +227449,127.85,86.6451 +227450,127.06,84.9844 +227451,126.31,83.3452 +227452,125.61,81.7261 +227453,126.46,86.6746 +227454,125.7,85.0103 +227455,125,83.3669 +227456,124.33,81.7433 +227457,125.06,86.7028 +227458,124.35,85.0357 +227459,123.69,83.3891 +227460,123.06,81.7617 +227461,123.67,86.7297 +227462,123,85.0608 +227463,122.37,83.4117 +227464,121.79,81.7814 +227465,122.27,86.7553 +227466,121.65,85.0854 +227467,121.06,83.4347 +227468,120.52,81.8024 +227469,120.88,86.7796 +227470,120.29,85.1095 +227471,119.75,83.4582 +227472,119.25,81.8247 +227473,119.48,86.8025 +227474,118.94,85.1332 +227475,118.44,83.4821 +227476,117.98,81.8483 +227477,118.09,86.8242 +227478,117.59,85.1565 +227479,117.13,83.5064 +227480,116.7,81.8732 +227481,116.69,86.8446 +227482,116.23,85.1794 +227483,115.81,83.5312 +227484,115.43,81.8995 +227485,115.29,86.8636 +227486,114.88,85.2018 +227487,114.5,83.5563 +227488,114.16,81.927 +227489,113.9,86.8814 +227490,113.52,85.2237 +227491,113.19,83.582 +227492,112.89,81.9558 +227493,112.5,86.8979 +227494,112.17,85.2453 +227495,111.88,83.608 +227496,111.62,81.986 +227497,111.1,86.9131 +227498,110.82,85.2664 +227499,110.57,83.6345 +227500,110.35,82.0174 +227501,109.71,86.927 +227502,109.46,85.287 +227503,109.26,83.6614 +227504,109.08,82.0501 +227505,108.31,86.9396 +227506,108.11,85.3072 +227507,107.94,83.6887 +227508,107.82,82.0842 +227509,106.91,86.951 +227510,106.75,85.327 +227511,106.63,83.7165 +227512,106.55,82.1195 +227513,105.51,86.961 +227514,105.4,85.3464 +227515,105.32,83.7447 +227516,105.28,82.1561 +227517,104.11,86.9699 +227518,104.05,85.3653 +227519,104.01,83.7733 +227520,104.01,82.194 +227521,102.72,86.9774 +227522,102.69,85.3839 +227523,102.7,83.8023 +227524,102.74,82.2332 +227525,101.32,86.9838 +227526,101.34,85.4019 +227527,101.39,83.8317 +227528,101.47,82.2736 +227529,99.922,86.9888 +227530,99.982,85.4196 +227531,100.07,83.8616 +227532,100.2,82.3153 +227533,98.524,86.9927 +227534,98.628,85.4369 +227535,98.763,83.8918 +227536,98.928,82.3583 +227537,97.127,86.9953 +227538,97.274,85.4537 +227539,97.451,83.9225 +227540,97.658,82.4025 +227541,95.73,86.9968 +227542,95.919,85.4701 +227543,96.139,83.9536 +227544,96.387,82.4479 +227545,94.333,86.997 +227546,94.565,85.4862 +227547,94.827,83.985 +227548,95.117,82.4946 +227549,92.936,86.996 +227550,93.211,85.5018 +227551,93.514,84.0169 +227552,93.846,82.5425 +227553,91.54,86.9939 +227554,91.856,85.517 +227555,92.202,84.0492 +227556,92.575,82.5915 +227557,90.144,86.9907 +227558,90.502,85.5318 +227559,90.889,84.0818 +227560,91.303,82.6418 +227561,88.748,86.9862 +227562,89.148,85.5462 +227563,89.576,84.1149 +227564,90.032,82.6933 +227565,87.353,86.9807 +227566,87.794,85.5603 +227567,88.264,84.1483 +227568,88.759,82.7459 +227569,85.958,86.974 +227570,86.441,85.574 +227571,86.95,84.1821 +227572,87.487,82.7996 +227573,84.563,86.9663 +227574,85.087,85.5872 +227575,85.637,84.2162 +227576,86.214,82.8546 +227577,83.169,86.9574 +227578,83.733,85.6002 +227579,84.324,84.2508 +227580,84.94,82.9106 +227581,81.776,86.9475 +227582,82.38,85.6127 +227583,83.01,84.2856 +227584,83.666,82.9677 +227585,80.383,86.9366 +227586,81.026,85.6249 +227587,81.696,84.3209 +227588,82.391,83.0259 +227589,78.99,86.9246 +227590,79.673,85.6367 +227591,80.382,84.3565 +227592,81.116,83.0852 +227593,77.598,86.9116 +227594,78.32,85.6482 +227595,79.068,84.3924 +227596,79.84,83.1456 +227597,76.207,86.8976 +227598,76.967,85.6594 +227599,77.753,84.4287 +227600,78.564,83.207 +227601,74.817,86.8826 +227602,75.615,85.6702 +227603,76.438,84.4652 +227604,77.287,83.2694 +227605,73.427,86.8667 +227606,74.262,85.6807 +227607,75.123,84.5022 +227608,76.009,83.3328 +227609,72.038,86.8498 +227610,72.91,85.6908 +227611,73.808,84.5394 +227612,74.73,83.3971 +227613,70.649,86.832 +227614,71.558,85.7007 +227615,72.492,84.5769 +227616,73.451,83.4625 +227617,69.262,86.8133 +227618,70.206,85.7102 +227619,71.176,84.6148 +227620,72.171,83.5287 +227621,67.875,86.7938 +227622,68.855,85.7194 +227623,69.86,84.6529 +227624,70.89,83.5959 +227625,66.489,86.7734 +227626,67.503,85.7284 +227627,68.543,84.6913 +227628,69.608,83.664 +227629,65.104,86.7522 +227630,66.152,85.737 +227631,67.226,84.73 +227632,68.325,83.7329 +227633,63.719,86.7301 +227634,64.801,85.7454 +227635,65.909,84.769 +227636,67.042,83.8027 +227637,62.336,86.7073 +227638,63.451,85.7535 +227639,64.591,84.8082 +227640,65.758,83.8733 +227641,60.953,86.6837 +227642,62.1,85.7613 +227643,63.274,84.8477 +227644,64.472,83.9447 +227645,59.572,86.6594 +227646,60.75,85.7689 +227647,61.955,84.8874 +227648,63.186,84.0169 +227649,58.191,86.6343 +227650,59.401,85.7762 +227651,60.637,84.9274 +227652,61.899,84.0898 +227653,56.811,86.6086 +227654,58.051,85.7833 +227655,59.318,84.9676 +227656,60.611,84.1634 +227657,55.433,86.5822 +227658,56.702,85.7901 +227659,57.998,85.008 +227660,59.321,84.2378 +227661,54.055,86.5552 +227662,55.353,85.7967 +227663,56.679,85.0487 +227664,58.031,84.3128 +227665,52.679,86.5276 +227666,54.005,85.8032 +227667,55.358,85.0895 +227668,56.74,84.3884 +227669,51.303,86.4993 +227670,52.657,85.8094 +227671,54.038,85.1306 +227672,55.447,84.4647 +227673,49.929,86.4705 +227674,51.309,85.8154 +227675,52.717,85.1718 +227676,54.153,84.5415 +227677,48.556,86.4412 +227678,49.961,85.8212 +227679,51.396,85.2132 +227680,52.859,84.619 +227681,47.183,86.4114 +227682,48.614,85.8268 +227683,50.074,85.2547 +227684,51.563,84.6969 +227685,45.812,86.3811 +227686,47.267,85.8323 +227687,48.752,85.2965 +227688,50.266,84.7754 +227689,44.442,86.3503 +227690,45.921,85.8376 +227691,47.429,85.3383 +227692,48.967,84.8543 +227693,43.074,86.3191 +227694,44.575,85.8428 +227695,46.106,85.3803 +227696,47.668,84.9336 +227697,41.706,86.2875 +227698,43.229,85.8478 +227699,44.782,85.4225 +227700,46.367,85.0134 +227701,40.34,86.2555 +227702,41.883,85.8527 +227703,43.458,85.4647 +227704,45.065,85.0936 +227705,38.975,86.2232 +227706,40.538,85.8574 +227707,42.134,85.5071 +227708,43.762,85.1741 +227709,37.611,86.1906 +227710,39.194,85.8621 +227711,40.809,85.5495 +227712,42.458,85.255 +227713,36.248,86.1577 +227714,37.85,85.8666 +227715,39.484,85.5921 +227716,41.152,85.3361 +227717,34.887,86.1245 +227718,36.506,85.8711 +227719,38.158,85.6347 +227720,39.845,85.4175 +227721,33.527,86.0911 +227722,35.162,85.8754 +227723,36.832,85.6774 +227724,38.536,85.4991 +227725,32.168,86.0575 +227726,33.819,85.8797 +227727,35.505,85.7202 +227728,37.227,85.581 +227729,30.811,86.0237 +227730,32.477,85.8839 +227731,34.178,85.763 +227732,35.916,85.663 +227733,29.454,85.9898 +227734,31.134,85.8881 +227735,32.85,85.8058 +227736,34.603,85.7451 +227737,28.1,85.9558 +227738,29.792,85.8922 +227739,31.522,85.8487 +227740,33.289,85.8274 +227741,26.746,85.9217 +227742,28.451,85.8963 +227743,30.193,85.8916 +227744,31.974,85.9097 +227745,25.394,85.8875 +227746,27.11,85.9004 +227747,28.864,85.9345 +227748,30.657,85.9921 +227749,24.043,85.8533 +227750,25.769,85.9044 +227751,27.534,85.9774 +227752,29.339,86.0745 +227753,22.693,85.8191 +227754,24.429,85.9084 +227755,26.204,86.0202 +227756,28.02,86.1569 +227757,21.345,85.7849 +227758,23.089,85.9125 +227759,24.873,86.0631 +227760,26.699,86.2392 +227761,19.998,85.7508 +227762,21.75,85.9165 +227763,23.542,86.1059 +227764,25.377,86.3214 +227765,18.652,85.7167 +227766,20.411,85.9206 +227767,22.21,86.1487 +227768,24.053,86.4036 +227769,17.308,85.6828 +227770,19.073,85.9247 +227771,20.878,86.1914 +227772,22.728,86.4855 +227773,15.965,85.6491 +227774,17.735,85.9288 +227775,19.546,86.234 +227776,21.401,86.5673 +227777,14.624,85.6155 +227778,16.397,85.9331 +227779,18.212,86.2766 +227780,20.073,86.6489 +227781,13.284,85.5821 +227782,15.06,85.9373 +227783,16.879,86.3191 +227784,18.744,86.7303 +227785,11.945,85.549 +227786,13.723,85.9417 +227787,15.544,86.3615 +227788,17.413,86.8114 +227789,10.607,85.5161 +227790,12.387,85.9461 +227791,14.21,86.4038 +227792,16.08,86.8921 +227793,9.2713,85.4835 +227794,11.051,85.9506 +227795,12.874,86.4459 +227796,14.746,86.9726 +227797,7.9366,85.4512 +227798,9.7153,85.9552 +227799,11.539,86.488 +227800,13.411,87.0527 +227801,6.6032,85.4193 +227802,8.3802,85.9599 +227803,10.202,86.5299 +227804,12.074,87.1323 +227805,5.2712,85.3878 +227806,7.0456,85.9648 +227807,8.8655,86.5717 +227808,10.736,87.2116 +227809,3.9405,85.3566 +227810,5.7114,85.9698 +227811,7.5282,86.6133 +227812,9.3963,87.2904 +227813,2.6112,85.3259 +227814,4.3776,85.9749 +227815,6.1903,86.6547 +227816,8.0551,87.3687 +227817,1.2832,85.2957 +227818,3.0442,85.9802 +227819,4.852,86.6959 +227820,6.7125,87.4465 +227821,359.96,85.2659 +227822,1.7112,85.9856 +227823,3.5132,86.737 +227824,5.3683,87.5237 +227825,358.63,85.2367 +227826,0.3787,85.9912 +227827,2.1738,86.7779 +227828,4.0228,87.6004 +227829,357.31,85.208 +227830,359.05,85.997 +227831,0.83398,86.8185 +227832,2.6758,87.6765 +227833,355.98,85.1799 +227834,357.71,86.0029 +227835,359.49,86.859 +227836,1.3273,87.7519 +227837,354.66,85.1523 +227838,356.38,86.0091 +227839,358.15,86.8992 +227840,359.98,87.8266 +227841,353.34,85.1254 +227842,355.05,86.0154 +227843,356.81,86.9392 +227844,358.63,87.9007 +227845,352.02,85.0992 +227846,353.72,86.022 +227847,355.47,86.979 +227848,357.27,87.9741 +227849,350.71,85.0736 +227850,352.39,86.0288 +227851,354.13,87.0185 +227852,355.92,88.0467 +227853,349.39,85.0487 +227854,351.06,86.0358 +227855,352.78,87.0577 +227856,354.56,88.1185 +227857,348.07,85.0246 +227858,349.73,86.0431 +227859,351.44,87.0967 +227860,353.21,88.1895 +227861,346.76,85.0011 +227862,348.4,86.0506 +227863,350.1,87.1354 +227864,351.85,88.2597 +227865,345.45,84.9785 +227866,347.08,86.0583 +227867,348.75,87.1738 +227868,350.49,88.3291 +227869,344.14,84.9567 +227870,345.75,86.0664 +227871,347.41,87.2119 +227872,349.13,88.3975 +227873,342.83,84.9357 +227874,344.42,86.0747 +227875,346.06,87.2497 +227876,347.77,88.4651 +227877,341.52,84.9155 +227878,343.09,86.0832 +227879,344.72,87.2872 +227880,346.4,88.5317 +227881,340.21,84.8962 +227882,341.77,86.0921 +227883,343.37,87.3244 +227884,345.04,88.5974 +227885,338.9,84.8778 +227886,340.44,86.1013 +227887,342.03,87.3612 +227888,343.67,88.6621 +227889,337.6,84.8603 +227890,339.11,86.1107 +227891,340.68,87.3977 +227892,342.3,88.7259 +227893,336.29,84.8437 +227894,337.79,86.1205 +227895,339.33,87.4339 +227896,340.93,88.7885 +227897,334.99,84.8281 +227898,336.46,86.1305 +227899,337.98,87.4697 +227900,339.56,88.8502 +227901,333.69,84.8135 +227902,335.14,86.1409 +227903,336.63,87.5052 +227904,338.19,88.9108 +227905,332.39,84.7998 +227906,333.81,86.1517 +227907,335.29,87.5403 +227908,336.82,88.9703 +227909,331.09,84.7872 +227910,332.49,86.1627 +227911,333.94,87.575 +227912,335.45,89.0287 +227913,329.79,84.7756 +227914,331.16,86.1741 +227915,332.59,87.6094 +227916,334.07,89.08599 +227917,328.49,84.7651 +227918,329.84,86.1859 +227919,331.24,87.6434 +227920,332.7,89.14213 +227921,327.19,84.7556 +227922,328.51,86.198 +227923,329.89,87.677 +227924,331.32,89.19711 +227925,325.89,84.7473 +227926,327.19,86.2104 +227927,328.54,87.7101 +227928,329.94,89.25091 +227929,324.6,84.74 +227930,325.87,86.2233 +227931,327.19,87.7429 +227932,328.56,89.30352 +227933,323.31,84.7339 +227934,324.54,86.2365 +227935,325.83,87.7753 +227936,327.18,89.35492 +227937,322.01,84.7288 +227938,323.22,86.25 +227939,324.48,87.8073 +227940,325.8,89.40509 +227941,320.72,84.725 +227942,321.9,86.264 +227943,323.13,87.8389 +227944,324.42,89.45402 +227945,319.43,84.7223 +227946,320.58,86.2783 +227947,321.78,87.87 +227948,323.03,89.5017 +227949,318.14,84.7208 +227950,319.26,86.2931 +227951,320.42,87.9007 +227952,321.65,89.54811 +227953,316.85,84.7205 +227954,317.93,86.3082 +227955,319.07,87.931 +227956,320.26,89.59324 +227957,315.56,84.7215 +227958,316.61,86.3237 +227959,317.72,87.9608 +227960,318.88,89.63707 +227961,314.27,84.7236 +227962,315.29,86.3396 +227963,316.36,87.9902 +227964,317.49,89.6796 +227965,312.98,84.727 +227966,313.97,86.3559 +227967,315.01,88.0192 +227968,316.1,89.72081 +227969,311.69,84.7316 +227970,312.65,86.3727 +227971,313.66,88.0477 +227972,314.71,89.7607 +227973,310.41,84.7375 +227974,311.33,86.3898 +227975,312.3,88.0758 +227976,313.32,89.79925 +227977,309.12,84.7446 +227978,310.01,86.4074 +227979,310.95,88.1034 +227980,311.93,89.83646 +227981,307.83,84.753 +227982,308.69,86.4254 +227983,309.59,88.1306 +227984,310.54,89.87232 +227985,306.55,84.7627 +227986,307.37,86.4438 +227987,308.23,88.1573 +227988,309.15,89.906816 +227989,305.27,84.7737 +227990,306.05,86.4626 +227991,306.88,88.1835 +227992,307.76,89.939948 +227993,303.98,84.786 +227994,304.73,86.4819 +227995,305.52,88.2093 +227996,306.37,89.971709 +227997,302.7,84.7997 +227998,303.41,86.5015 +227999,304.17,88.2346 +228000,304.97,90.0020946 +228001,301.42,84.8146 +228002,302.09,86.5216 +228003,302.81,88.2594 +228004,303.58,90.031099 +228005,300.13,84.8308 +228006,300.77,86.5422 +228007,301.45,88.2838 +228008,302.18,90.058721 +228009,298.85,84.8484 +228010,299.45,86.5632 +228011,300.1,88.3077 +228012,300.79,90.084955 +228013,297.57,84.8673 +228014,298.13,86.5846 +228015,298.74,88.3312 +228016,299.39,90.1098 +228017,296.29,84.8875 +228018,296.82,86.6064 +228019,297.38,88.3541 +228020,297.99,90.13326 +228021,295.01,84.9091 +228022,295.5,86.6287 +228023,296.02,88.3766 +228024,296.6,90.15532 +228025,293.73,84.932 +228026,294.18,86.6514 +228027,294.67,88.3986 +228028,295.2,90.176 +228029,292.45,84.9562 +228030,292.86,86.6746 +228031,293.31,88.4202 +228032,293.8,90.19528 +228033,291.17,84.9818 +228034,291.54,86.6982 +228035,291.95,88.4412 +228036,292.4,90.21318 +228037,289.89,85.0087 +228038,290.22,86.7222 +228039,290.59,88.4618 +228040,291.01,90.22969 +228041,288.61,85.037 +228042,288.9,86.7466 +228043,289.24,88.482 +228044,289.61,90.24482 +228045,287.33,85.0666 +228046,287.59,86.7715 +228047,287.88,88.5016 +228048,288.21,90.25857 +228049,286.05,85.0975 +228050,286.27,86.7969 +228051,286.52,88.5208 +228052,286.81,90.27095 +228053,284.77,85.1298 +228054,284.95,86.8226 +228055,285.16,88.5395 +228056,285.41,90.28196 +228057,283.49,85.1634 +228058,283.63,86.8488 +228059,283.8,88.5578 +228060,284.01,90.2916 +228061,282.21,85.1983 +228062,282.31,86.8754 +228063,282.44,88.5756 +228064,282.61,90.29989 +228065,280.93,85.2345 +228066,280.99,86.9025 +228067,281.08,88.5929 +228068,281.21,90.30683 +228069,279.65,85.272 +228070,279.67,86.9299 +228071,279.73,88.6098 +228072,279.81,90.31242 +228073,278.37,85.3109 +228074,278.36,86.9578 +228075,278.37,88.6262 +228076,278.41,90.31669 +228077,277.09,85.351 +228078,277.04,86.9861 +228079,277.01,88.6421 +228080,277.01,90.31963 +228081,275.82,85.3925 +228082,275.72,87.0149 +228083,275.65,88.6576 +228084,275.61,90.32126 +228085,274.54,85.4352 +228086,274.4,87.044 +228087,274.29,88.6727 +228088,274.21,90.32158 +228089,273.26,85.4792 +228090,273.08,87.0736 +228091,272.93,88.6873 +228092,272.82,90.32062 +228093,271.98,85.5245 +228094,271.76,87.1035 +228095,271.57,88.7014 +228096,271.42,90.31837 +228097,270.7,85.571 +228098,270.44,87.1339 +228099,270.22,88.7152 +228100,270.02,90.31486 +228101,269.42,85.6188 +228102,269.12,87.1646 +228103,268.86,88.7284 +228104,268.62,90.31009 +228105,268.13,85.6678 +228106,267.8,87.1958 +228107,267.5,88.7413 +228108,267.22,90.30409 +228109,266.85,85.718 +228110,266.48,87.2273 +228111,266.14,88.7537 +228112,265.82,90.29685 +228113,265.57,85.7694 +228114,265.16,87.2593 +228115,264.78,88.7657 +228116,264.42,90.28841 +228117,264.29,85.822 +228118,263.84,87.2916 +228119,263.42,88.7773 +228120,263.03,90.27878 +228121,263.01,85.8758 +228122,262.52,87.3242 +228123,262.06,88.7885 +228124,261.63,90.26796 +228125,261.73,85.9308 +228126,261.2,87.3573 +228127,260.71,88.7993 +228128,260.23,90.25599 +228129,260.44,85.9869 +228130,259.88,87.3907 +228131,259.35,88.8096 +228132,258.84,90.24287 +228133,259.16,86.0441 +228134,258.56,87.4245 +228135,257.99,88.8196 +228136,257.44,90.22862 +228137,257.87,86.1024 +228138,257.24,87.4586 +228139,256.63,88.8292 +228140,256.05,90.21327 +228141,256.59,86.1619 +228142,255.92,87.4931 +228143,255.27,88.8384 +228144,254.65,90.19683 +228145,255.3,86.2224 +228146,254.6,87.5279 +228147,253.92,88.8472 +228148,253.26,90.17932 +228149,254.02,86.284 +228150,253.28,87.5631 +228151,252.56,88.8557 +228152,251.86,90.16076 +228153,252.73,86.3466 +228154,251.96,87.5986 +228155,251.2,88.8638 +228156,250.47,90.14117 +228157,251.44,86.4102 +228158,250.63,87.6344 +228159,249.85,88.8715 +228160,249.08,90.12058 +228161,250.16,86.4749 +228162,249.31,87.6705 +228163,248.49,88.8789 +228164,247.68,90.098998 +228165,248.87,86.5405 +228166,247.99,87.7069 +228167,247.13,88.886 +228168,246.29,90.076455 +228169,247.58,86.6071 +228170,246.67,87.7436 +228171,245.78,88.8927 +228172,244.9,90.05297 +228173,246.29,86.6746 +228174,245.34,87.7806 +228175,244.42,88.8991 +228176,243.51,90.028568 +228177,245,86.743 +228178,244.02,87.8179 +228179,243.06,88.9051 +228180,242.12,90.0032706 +228181,243.71,86.8123 +228182,242.7,87.8555 +228183,241.71,88.9109 +228184,240.74,89.977102 +228185,242.41,86.8825 +228186,241.37,87.8933 +228187,240.35,88.9163 +228188,239.35,89.950087 +228189,241.12,86.9535 +228190,240.05,87.9314 +228191,239,88.9215 +228192,237.96,89.92225 +228193,239.83,87.0253 +228194,238.72,87.9697 +228195,237.64,88.9263 +228196,236.58,89.89362 +228197,238.53,87.0979 +228198,237.4,88.0083 +228199,236.29,88.9309 +228200,235.19,89.86421 +228201,237.23,87.1713 +228202,236.07,88.0472 +228203,234.93,88.9352 +228204,233.81,89.83406 +228205,235.94,87.2454 +228206,234.75,88.0862 +228207,233.58,88.9393 +228208,232.43,89.80319 +228209,234.64,87.3203 +228210,233.42,88.1255 +228211,232.22,88.9431 +228212,231.04,89.77162 +228213,233.34,87.3958 +228214,232.1,88.1649 +228215,230.87,88.9466 +228216,229.66,89.73939 +228217,232.04,87.4719 +228218,230.77,88.2046 +228219,229.52,88.9499 +228220,228.28,89.70652 +228221,230.74,87.5488 +228222,229.44,88.2444 +228223,228.16,88.953 +228224,226.9,89.67303 +228225,229.44,87.6262 +228226,228.11,88.2845 +228227,226.81,88.9559 +228228,225.53,89.63896 +228229,228.13,87.7041 +228230,226.79,88.3247 +228231,225.46,88.9585 +228232,224.15,89.60433 +228233,226.83,87.7826 +228234,225.46,88.365 +228235,224.11,88.961 +228236,222.77,89.56918 +228237,225.52,87.8617 +228238,224.13,88.4055 +228239,222.75,88.9633 +228240,221.4,89.53352 +228241,224.22,87.9412 +228242,222.8,88.4462 +228243,221.4,88.9654 +228244,220.03,89.49739 +228245,222.91,88.0212 +228246,221.47,88.4869 +228247,220.05,88.9673 +228248,218.65,89.46082 +228249,221.6,88.1016 +228250,220.14,88.5278 +228251,218.7,88.9691 +228252,217.28,89.42384 +228253,220.29,88.1824 +228254,218.81,88.5688 +228255,217.35,88.9707 +228256,215.91,89.38646 +228257,218.98,88.2635 +228258,217.48,88.6099 +228259,216,88.9721 +228260,214.54,89.34874 +228261,217.67,88.345 +228262,216.15,88.6511 +228263,214.65,88.9735 +228264,213.17,89.31068 +228265,216.36,88.4268 +228266,214.82,88.6923 +228267,213.3,88.9747 +228268,211.81,89.27234 +228269,215.04,88.5088 +228270,213.49,88.7337 +228271,211.95,88.9758 +228272,210.44,89.23372 +228273,213.72,88.5911 +228274,212.15,88.7751 +228275,210.6,88.9768 +228276,209.08,89.19487 +228277,212.41,88.6736 +228278,210.82,88.8165 +228279,209.26,88.9778 +228280,207.71,89.15581 +228281,211.09,88.7562 +228282,209.49,88.858 +228283,207.91,88.9786 +228284,206.35,89.11657 +228285,209.77,88.839 +228286,208.15,88.8994 +228287,206.56,88.9794 +228288,204.99,89.07719 +228289,208.45,88.9219 +228290,206.82,88.9409 +228291,205.21,88.9801 +228292,203.63,89.03769 +228293,207.13,89.00492 +228294,205.48,88.9825 +228295,203.87,88.9807 +228296,202.27,88.9981 +228297,205.8,89.08795 +228298,204.15,89.02395 +228299,202.52,88.9814 +228300,200.92,88.9585 +228301,204.48,89.17097 +228302,202.81,89.06543 +228303,201.17,88.982 +228304,199.56,88.9188 +228305,203.15,89.25398 +228306,201.48,89.10688 +228307,199.83,88.9825 +228308,198.21,88.8791 +228309,201.82,89.33693 +228310,200.14,89.14829 +228311,198.48,88.9831 +228312,196.85,88.8395 +228313,200.49,89.41979 +228314,198.8,89.18965 +228315,197.14,88.9837 +228316,195.5,88.8 +228317,199.16,89.50252 +228318,197.46,89.23094 +228319,195.79,88.9843 +228320,194.15,88.7605 +228321,197.83,89.5851 +228322,196.13,89.27217 +228323,194.45,88.9849 +228324,192.8,88.7212 +228325,196.5,89.66749 +228326,194.79,89.31331 +228327,193.11,88.9855 +228328,191.45,88.682 +228329,195.16,89.74965 +228330,193.45,89.35435 +228331,191.76,88.9862 +228332,190.11,88.643 +228333,193.83,89.83156 +228334,192.11,89.39529 +228335,190.42,88.9869 +228336,188.76,88.6042 +228337,192.49,89.913187 +228338,190.77,89.43612 +228339,189.08,88.9877 +228340,187.42,88.5657 +228341,191.15,89.9944889 +228342,189.43,89.47681 +228343,187.74,88.9886 +228344,186.08,88.5274 +228345,189.81,90.075437 +228346,188.09,89.51738 +228347,186.39,88.9895 +228348,184.73,88.4895 +228349,188.47,90.156 +228350,186.75,89.55779 +228351,185.05,88.9906 +228352,183.39,88.4518 +228353,187.13,90.23614 +228354,185.4,89.59804 +228355,183.71,88.9917 +228356,182.05,88.4146 +228357,185.79,90.31584 +228358,184.06,89.63813 +228359,182.37,88.993 +228360,180.72,88.3777 +228361,184.44,90.39505 +228362,182.72,89.67804 +228363,181.03,88.9944 +228364,179.38,88.3413 +228365,183.09,90.47374 +228366,181.37,89.71776 +228367,179.69,88.9959 +228368,178.05,88.3053 +228369,181.75,90.55189 +228370,180.03,89.75727 +228371,178.35,88.9976 +228372,176.71,88.2698 +228373,180.4,90.62946 +228374,178.69,89.79658 +228375,177.01,88.9994 +228376,175.38,88.2348 +228377,179.04,90.70643 +228378,177.34,89.83567 +228379,175.68,89.00141 +228380,174.05,88.2003 +228381,177.69,90.78275 +228382,176,89.87453 +228383,174.34,89.00356 +228384,172.72,88.1664 +228385,176.34,90.85841 +228386,174.65,89.913148 +228387,173,89.0059 +228388,171.39,88.1331 +228389,174.98,90.93336 +228390,173.3,89.951517 +228391,171.66,89.00842 +228392,170.06,88.1004 +228393,173.63,91.0076 +228394,171.96,89.989627 +228395,170.33,89.01115 +228396,168.73,88.0684 +228397,172.27,91.081 +228398,170.61,90.027468 +228399,168.99,89.01408 +228400,167.41,88.037 +228401,170.91,91.1537 +228402,169.26,90.065031 +228403,167.65,89.01724 +228404,166.08,88.0063 +228405,169.55,91.2256 +228406,167.91,90.10231 +228407,166.32,89.02061 +228408,164.76,87.9764 +228409,168.19,91.2966 +228410,166.56,90.13928 +228411,164.98,89.02423 +228412,163.44,87.9472 +228413,166.83,91.3667 +228414,165.22,90.17596 +228415,163.65,89.02808 +228416,162.12,87.9187 +228417,165.46,91.436 +228418,163.87,90.21232 +228419,162.31,89.03219 +228420,160.8,87.8911 +228421,164.1,91.5043 +228422,162.52,90.24835 +228423,160.98,89.03656 +228424,159.48,87.8643 +228425,162.73,91.5716 +228426,161.17,90.28405 +228427,159.64,89.04119 +228428,158.16,87.8384 +228429,161.36,91.638 +228430,159.81,90.31941 +228431,158.31,89.04611 +228432,156.85,87.8133 +228433,160,91.7034 +228434,158.46,90.35443 +228435,156.98,89.0513 +228436,155.53,87.7891 +228437,158.63,91.7677 +228438,157.11,90.38908 +228439,155.65,89.05679 +228440,154.22,87.7658 +228441,157.25,91.831 +228442,155.76,90.42337 +228443,154.31,89.06258 +228444,152.91,87.7435 +228445,155.88,91.8932 +228446,154.41,90.45729 +228447,152.98,89.06867 +228448,151.6,87.7221 +228449,154.51,91.9543 +228450,153.05,90.49083 +228451,151.65,89.07507 +228452,150.28,87.7017 +228453,153.13,92.0143 +228454,151.7,90.52398 +228455,150.32,89.0818 +228456,148.97,87.6823 +228457,151.76,92.0731 +228458,150.35,90.55674 +228459,148.99,89.08886 +228460,147.67,87.664 +228461,150.38,92.1308 +228462,148.99,90.58909 +228463,147.65,89.09624 +228464,146.36,87.6467 +228465,149,92.1872 +228466,147.64,90.62103 +228467,146.32,89.10397 +228468,145.05,87.6304 +228469,147.62,92.2425 +228470,146.28,90.65256 +228471,144.99,89.11205 +228472,143.75,87.6152 +228473,146.24,92.2965 +228474,144.93,90.68367 +228475,143.66,89.12048 +228476,142.44,87.6012 +228477,144.86,92.3493 +228478,143.57,90.71435 +228479,142.33,89.12927 +228480,141.14,87.5882 +228481,143.48,92.4008 +228482,142.22,90.74459 +228483,141,89.13842 +228484,139.83,87.5764 +228485,142.09,92.451 +228486,140.86,90.77439 +228487,139.67,89.14795 +228488,138.53,87.5658 +228489,140.71,92.4999 +228490,139.5,90.80375 +228491,138.35,89.15784 +228492,137.23,87.5563 +228493,139.33,92.5475 +228494,138.15,90.83266 +228495,137.02,89.16812 +228496,135.93,87.548 +228497,137.94,92.5938 +228498,136.79,90.8611 +228499,135.69,89.17879 +228500,134.63,87.5409 +228501,136.55,92.6387 +228502,135.43,90.88909 +228503,134.36,89.18985 +228504,133.33,87.535 +228505,135.16,92.6822 +228506,134.07,90.91661 +228507,133.03,89.2013 +228508,132.03,87.5303 +228509,133.77,92.7244 +228510,132.71,90.94366 +228511,131.7,89.21315 +228512,130.73,87.5269 +228513,132.39,92.7652 +228514,131.36,90.97024 +228515,130.38,89.2254 +228516,129.44,87.5248 +228517,130.99,92.8046 +228518,130,90.99633 +228519,129.05,89.23806 +228520,128.14,87.5239 +228521,129.6,92.8425 +228522,128.64,91.0219 +228523,127.72,89.25113 +228524,126.84,87.5243 +228525,128.21,92.8791 +228526,127.28,91.0471 +228527,126.39,89.26462 +228528,125.55,87.5259 +228529,126.82,92.9142 +228530,125.92,91.0717 +228531,125.07,89.27852 +228532,124.25,87.5289 +228533,125.43,92.9479 +228534,124.56,91.0958 +228535,123.74,89.29285 +228536,122.96,87.5332 +228537,124.03,92.9801 +228538,123.2,91.1195 +228539,122.41,89.30759 +228540,121.67,87.5388 +228541,122.64,93.0109 +228542,121.84,91.1426 +228543,121.09,89.32277 +228544,120.37,87.5457 +228545,121.24,93.0402 +228546,120.48,91.1653 +228547,119.76,89.33837 +228548,119.08,87.554 +228549,119.85,93.068 +228550,119.12,91.1874 +228551,118.43,89.3544 +228552,117.79,87.5635 +228553,118.45,93.0944 +228554,117.76,91.2091 +228555,117.11,89.37086 +228556,116.5,87.5745 +228557,117.05,93.1192 +228558,116.4,91.2302 +228559,115.78,89.38776 +228560,115.21,87.5868 +228561,115.65,93.1426 +228562,115.03,91.2508 +228563,114.46,89.40509 +228564,113.92,87.6004 +228565,114.26,93.1646 +228566,113.67,91.2709 +228567,113.13,89.42286 +228568,112.62,87.6154 +228569,112.86,93.185 +228570,112.31,91.2905 +228571,111.8,89.44106 +228572,111.33,87.6318 +228573,111.46,93.2039 +228574,110.95,91.3096 +228575,110.48,89.45971 +228576,110.04,87.6495 +228577,110.06,93.2214 +228578,109.59,91.3282 +228579,109.15,89.47879 +228580,108.76,87.6686 +228581,108.66,93.2374 +228582,108.22,91.3463 +228583,107.83,89.4983 +228584,107.47,87.6891 +228585,107.26,93.2519 +228586,106.86,91.3638 +228587,106.5,89.51826 +228588,106.18,87.7109 +228589,105.86,93.2649 +228590,105.5,91.3809 +228591,105.18,89.53865 +228592,104.89,87.7342 +228593,104.46,93.2764 +228594,104.14,91.3974 +228595,103.85,89.55948 +228596,103.6,87.7587 +228597,103.06,93.2865 +228598,102.77,91.4134 +228599,102.53,89.58075 +228600,102.31,87.7847 +228601,101.66,93.2951 +228602,101.41,91.4289 +228603,101.2,89.60245 +228604,101.02,87.812 +228605,100.26,93.3022 +228606,100.05,91.444 +228607,99.875,89.62459 +228608,99.732,87.8407 +228609,98.857,93.3079 +228610,98.686,91.4585 +228611,98.55,89.64716 +228612,98.444,87.8707 +228613,97.456,93.3121 +228614,97.323,91.4724 +228615,97.224,89.67016 +228616,97.155,87.9021 +228617,96.054,93.3148 +228618,95.96,91.4859 +228619,95.899,89.69359 +228620,95.866,87.9349 +228621,94.653,93.3162 +228622,94.597,91.4989 +228623,94.573,89.71745 +228624,94.578,87.9689 +228625,93.252,93.3161 +228626,93.234,91.5114 +228627,93.247,89.74173 +228628,93.289,88.0044 +228629,91.851,93.3146 +228630,91.871,91.5234 +228631,91.922,89.76643 +228632,92,88.0411 +228633,90.45,93.3117 +228634,90.508,91.535 +228635,90.596,89.79155 +228636,90.711,88.0792 +228637,89.049,93.3074 +228638,89.145,91.546 +228639,89.27,89.81708 +228640,89.422,88.1186 +228641,87.648,93.3017 +228642,87.782,91.5565 +228643,87.944,89.84303 +228644,88.132,88.1593 +228645,86.247,93.2946 +228646,86.419,91.5666 +228647,86.618,89.86938 +228648,86.843,88.2013 +228649,84.846,93.2862 +228650,85.056,91.5762 +228651,85.292,89.89614 +228652,85.553,88.2446 +228653,83.446,93.2764 +228654,83.693,91.5853 +228655,83.966,89.923303 +228656,84.263,88.2891 +228657,82.046,93.2653 +228658,82.33,91.5939 +228659,82.64,89.950859 +228660,82.972,88.3349 +228661,80.646,93.2529 +228662,80.967,91.6021 +228663,81.313,89.978806 +228664,81.681,88.382 +228665,79.247,93.2392 +228666,79.605,91.6098 +228667,79.986,90.0071405 +228668,80.39,88.4303 +228669,77.848,93.2243 +228670,78.242,91.6171 +228671,78.66,90.035856 +228672,79.098,88.4798 +228673,76.449,93.208 +228674,76.879,91.6239 +228675,77.333,90.064949 +228676,77.806,88.5305 +228677,75.05,93.1905 +228678,75.517,91.6303 +228679,76.005,90.094412 +228680,76.514,88.5825 +228681,73.652,93.1718 +228682,74.155,91.6362 +228683,74.678,90.12424 +228684,75.221,88.6356 +228685,72.255,93.1519 +228686,72.792,91.6417 +228687,73.35,90.15443 +228688,73.928,88.6898 +228689,70.858,93.1308 +228690,71.43,91.6468 +228691,72.023,90.18497 +228692,72.634,88.7452 +228693,69.461,93.1085 +228694,70.068,91.6514 +228695,70.695,90.21586 +228696,71.339,88.8018 +228697,68.065,93.0851 +228698,68.707,91.6557 +228699,69.367,90.24709 +228700,70.044,88.8594 +228701,66.67,93.0606 +228702,67.345,91.6595 +228703,68.038,90.27865 +228704,68.749,88.9181 +228705,65.275,93.0349 +228706,65.984,91.663 +228707,66.71,90.31055 +228708,67.452,88.9779 +228709,63.881,93.0082 +228710,64.622,91.666 +228711,65.381,90.34276 +228712,66.155,89.03876 +228713,62.487,92.9804 +228714,63.261,91.6687 +228715,64.052,90.37528 +228716,64.858,89.10064 +228717,61.094,92.9516 +228718,61.9,91.671 +228719,62.722,90.40811 +228720,63.559,89.16352 +228721,59.702,92.9218 +228722,60.54,91.6729 +228723,61.392,90.44124 +228724,62.26,89.22738 +228725,58.311,92.891 +228726,59.179,91.6745 +228727,60.063,90.47466 +228728,60.961,89.29222 +228729,56.92,92.8592 +228730,57.819,91.6757 +228731,58.732,90.50836 +228732,59.66,89.35799 +228733,55.53,92.8265 +228734,56.459,91.6766 +228735,57.402,90.54233 +228736,58.359,89.42467 +228737,54.141,92.7929 +228738,55.099,91.6771 +228739,56.071,90.57657 +228740,57.057,89.49225 +228741,52.753,92.7584 +228742,53.739,91.6773 +228743,54.74,90.61107 +228744,55.754,89.5607 +228745,51.365,92.7231 +228746,52.38,91.6772 +228747,53.408,90.64582 +228748,54.45,89.62999 +228749,49.978,92.6869 +228750,51.021,91.6767 +228751,52.077,90.6808 +228752,53.145,89.7001 +228753,48.593,92.6499 +228754,49.662,91.676 +228755,50.744,90.71602 +228756,51.839,89.771 +228757,47.208,92.6122 +228758,48.303,91.675 +228759,49.412,90.75146 +228760,50.533,89.84267 +228761,45.824,92.5737 +228762,46.945,91.6737 +228763,48.079,90.78711 +228764,49.225,89.915071 +228765,44.441,92.5344 +228766,45.587,91.6721 +228767,46.746,90.82296 +228768,47.917,89.988187 +228769,43.059,92.4945 +228770,44.229,91.6702 +228771,45.413,90.85901 +228772,46.608,90.061986 +228773,41.677,92.454 +228774,42.872,91.6681 +228775,44.079,90.89524 +228776,45.297,90.13644 +228777,40.297,92.4128 +228778,41.515,91.6658 +228779,42.745,90.93165 +228780,43.986,90.21152 +228781,38.918,92.3709 +228782,40.158,91.6632 +228783,41.41,90.96822 +228784,42.673,90.2872 +228785,37.54,92.3286 +228786,38.801,91.6604 +228787,40.075,91.0049 +228788,41.36,90.36344 +228789,36.163,92.2856 +228790,37.445,91.6573 +228791,38.74,91.0418 +228792,40.046,90.44023 +228793,34.787,92.2422 +228794,36.089,91.6541 +228795,37.404,91.0788 +228796,38.73,90.51752 +228797,33.412,92.1983 +228798,34.734,91.6506 +228799,36.068,91.1159 +228800,37.413,90.59529 +228801,32.038,92.1539 +228802,33.378,91.647 +228803,34.731,91.1532 +228804,36.096,90.67351 +228805,30.666,92.1091 +228806,32.024,91.6432 +228807,33.394,91.1905 +228808,34.777,90.75214 +228809,29.294,92.064 +228810,30.669,91.6393 +228811,32.057,91.228 +228812,33.457,90.83115 +228813,27.924,92.0184 +228814,29.315,91.6351 +228815,30.719,91.2655 +228816,32.135,90.91052 +228817,26.554,91.9726 +228818,27.961,91.6309 +228819,29.381,91.3031 +228820,30.813,90.99021 +228821,25.186,91.9264 +228822,26.608,91.6265 +228823,28.042,91.3407 +228824,29.49,91.0702 +228825,23.819,91.88 +228826,25.254,91.6219 +228827,26.703,91.3784 +228828,28.165,91.1504 +228829,22.453,91.8333 +228830,23.902,91.6173 +228831,25.364,91.4161 +228832,26.839,91.2309 +228833,21.088,91.7864 +228834,22.549,91.6126 +228835,24.024,91.4539 +228836,25.512,91.3115 +228837,19.725,91.7394 +228838,21.197,91.6077 +228839,22.684,91.4917 +228840,24.184,91.3923 +228841,18.363,91.6922 +228842,19.845,91.6028 +228843,21.343,91.5295 +228844,22.854,91.4733 +228845,17.002,91.645 +228846,18.494,91.5978 +228847,20.002,91.5672 +228848,21.524,91.5543 +228849,15.642,91.5976 +228850,17.143,91.5928 +228851,18.66,91.605 +228852,20.192,91.6354 +228853,14.283,91.5502 +228854,15.793,91.5877 +228855,17.318,91.6427 +228856,18.858,91.7165 +228857,12.925,91.5028 +228858,14.443,91.5825 +228859,15.976,91.6804 +228860,17.524,91.7976 +228861,11.569,91.4554 +228862,13.093,91.5774 +228863,14.633,91.7181 +228864,16.188,91.8786 +228865,10.214,91.408 +228866,11.743,91.5722 +228867,13.289,91.7557 +228868,14.851,91.9596 +228869,8.8602,91.3608 +228870,10.394,91.567 +228871,11.945,91.7932 +228872,13.513,92.0404 +228873,7.5076,91.3136 +228874,9.0456,91.5618 +228875,10.601,91.8306 +228876,12.174,92.1212 +228877,6.1562,91.2666 +228878,7.6974,91.5567 +228879,9.2564,91.8679 +228880,10.833,92.2017 +228881,4.8061,91.2198 +228882,6.3495,91.5515 +228883,7.9112,91.9051 +228884,9.4909,92.282 +228885,3.4572,91.1732 +228886,5.002,91.5464 +228887,6.5655,91.9422 +228888,8.1476,92.3621 +228889,2.1095,91.1268 +228890,3.6549,91.5413 +228891,5.2194,91.9792 +228892,6.803,92.4419 +228893,0.76299,91.0807 +228894,2.3082,91.5363 +228895,3.8728,92.0161 +228896,5.4571,92.5213 +228897,359.42,91.0349 +228898,0.96184,91.5314 +228899,2.5258,92.0527 +228900,4.11,92.6005 +228901,358.07,90.9894 +228902,359.62,91.5265 +228903,1.1783,92.0893 +228904,2.7615,92.6792 +228905,356.73,90.94428 +228906,358.27,91.5218 +228907,359.83,92.1256 +228908,1.4118,92.7575 +228909,355.39,90.89955 +228910,356.93,91.5171 +228911,358.48,92.1618 +228912,0.060808,92.8354 +228913,354.05,90.85524 +228914,355.58,91.5125 +228915,357.13,92.1977 +228916,358.71,92.9128 +228917,352.71,90.81138 +228918,354.24,91.5081 +228919,355.78,92.2335 +228920,357.35,92.9897 +228921,351.37,90.768 +228922,352.89,91.5038 +228923,354.43,92.2691 +228924,356,93.066 +228925,350.04,90.72513 +228926,351.55,91.4996 +228927,353.08,92.3044 +228928,354.64,93.1418 +228929,348.7,90.6828 +228930,350.2,91.4956 +228931,351.73,92.3395 +228932,353.29,93.2169 +228933,347.37,90.64103 +228934,348.86,91.4917 +228935,350.38,92.3743 +228936,351.93,93.2914 +228937,346.03,90.59986 +228938,347.52,91.488 +228939,349.03,92.4089 +228940,350.57,93.3652 +228941,344.7,90.55931 +228942,346.18,91.4845 +228943,347.68,92.4432 +228944,349.21,93.4383 +228945,343.37,90.51941 +228946,344.84,91.4812 +228947,346.33,92.4772 +228948,347.84,93.5106 +228949,342.04,90.48019 +228950,343.49,91.478 +228951,344.97,92.511 +228952,346.48,93.5822 +228953,340.71,90.44168 +228954,342.15,91.4751 +228955,343.62,92.5444 +228956,345.12,93.653 +228957,339.38,90.40389 +228958,340.81,91.4724 +228959,342.27,92.5776 +228960,343.75,93.7229 +228961,338.06,90.36687 +228962,339.47,91.4699 +228963,340.91,92.6104 +228964,342.38,93.792 +228965,336.73,90.33062 +228966,338.13,91.4676 +228967,339.56,92.6429 +228968,341.02,93.8602 +228969,335.41,90.29519 +228970,336.79,91.4656 +228971,338.2,92.6751 +228972,339.65,93.9274 +228973,334.08,90.26059 +228974,335.45,91.4639 +228975,336.85,92.7069 +228976,338.27,93.9937 +228977,332.76,90.22685 +228978,334.11,91.4624 +228979,335.49,92.7384 +228980,336.9,94.0591 +228981,331.44,90.19399 +228982,332.77,91.4611 +228983,334.14,92.7695 +228984,335.53,94.1234 +228985,330.12,90.16204 +228986,331.44,91.4602 +228987,332.78,92.8002 +228988,334.16,94.1867 +228989,328.8,90.13102 +228990,330.1,91.4595 +228991,331.42,92.8305 +228992,332.78,94.2489 +228993,327.48,90.10096 +228994,328.76,91.4591 +228995,330.07,92.8605 +228996,331.4,94.31 +228997,326.17,90.071867 +228998,327.42,91.459 +228999,328.71,92.8901 +229000,330.03,94.37 +229001,324.85,90.043774 +229002,326.09,91.4592 +229003,327.35,92.9192 +229004,328.65,94.4289 +229005,323.53,90.0167 +229006,324.75,91.4598 +229007,325.99,92.948 +229008,327.27,94.4867 +229009,322.22,89.9906665 +229010,323.41,91.4606 +229011,324.63,92.9763 +229012,325.89,94.5432 +229013,320.91,89.965693 +229014,322.08,91.4618 +229015,323.27,93.0042 +229016,324.51,94.5985 +229017,319.59,89.9418 +229018,320.74,91.4633 +229019,321.91,93.0316 +229020,323.12,94.6526 +229021,318.28,89.919006 +229022,319.4,91.4652 +229023,320.55,93.0586 +229024,321.74,94.7054 +229025,316.97,89.89733 +229026,318.07,91.4674 +229027,319.19,93.0852 +229028,320.36,94.757 +229029,315.66,89.87679 +229030,316.73,91.4699 +229031,317.83,93.1113 +229032,318.97,94.8072 +229033,314.35,89.85741 +229034,315.4,91.4728 +229035,316.47,93.137 +229036,317.58,94.8562 +229037,313.04,89.8392 +229038,314.06,91.4761 +229039,315.11,93.1622 +229040,316.2,94.9038 +229041,311.74,89.82217 +229042,312.73,91.4798 +229043,313.75,93.1869 +229044,314.81,94.95 +229045,310.43,89.80635 +229046,311.39,91.4838 +229047,312.39,93.2111 +229048,313.42,94.9949 +229049,309.12,89.79175 +229050,310.06,91.4882 +229051,311.03,93.2348 +229052,312.03,95.0384 +229053,307.82,89.77839 +229054,308.73,91.493 +229055,309.67,93.2581 +229056,310.64,95.0804 +229057,306.51,89.76627 +229058,307.39,91.4982 +229059,308.3,93.2808 +229060,309.25,95.1211 +229061,305.21,89.75541 +229062,306.06,91.5038 +229063,306.94,93.3031 +229064,307.86,95.1603 +229065,303.91,89.74583 +229066,304.73,91.5098 +229067,305.58,93.3248 +229068,306.46,95.198 +229069,302.6,89.73754 +229070,303.39,91.5162 +229071,304.21,93.3461 +229072,305.07,95.2343 +229073,301.3,89.73054 +229074,302.06,91.523 +229075,302.85,93.3668 +229076,303.68,95.2691 +229077,300,89.72485 +229078,300.73,91.5302 +229079,301.49,93.387 +229080,302.28,95.3024 +229081,298.7,89.72049 +229082,299.4,91.5378 +229083,300.12,93.4067 +229084,300.88,95.3343 +229085,297.4,89.71745 +229086,298.06,91.5459 +229087,298.76,93.4258 +229088,299.49,95.3646 +229089,296.1,89.71576 +229090,296.73,91.5543 +229091,297.39,93.4445 +229092,298.09,95.3933 +229093,294.8,89.71541 +229094,295.4,91.5632 +229095,296.03,93.4625 +229096,296.69,95.4206 +229097,293.5,89.71641 +229098,294.07,91.5726 +229099,294.66,93.4801 +229100,295.3,95.4463 +229101,292.2,89.71878 +229102,292.73,91.5823 +229103,293.3,93.4971 +229104,293.9,95.4705 +229105,290.9,89.72251 +229106,291.4,91.5925 +229107,291.93,93.5136 +229108,292.5,95.4931 +229109,289.6,89.72762 +229110,290.07,91.6031 +229111,290.57,93.5296 +229112,291.1,95.5141 +229113,288.3,89.73411 +229114,288.74,91.6141 +229115,289.2,93.545 +229116,289.7,95.5336 +229117,287,89.74198 +229118,287.41,91.6256 +229119,287.84,93.5598 +229120,288.3,95.5515 +229121,285.71,89.75124 +229122,286.08,91.6375 +229123,286.47,93.5741 +229124,286.9,95.5679 +229125,284.41,89.76189 +229126,284.74,91.6499 +229127,285.11,93.5879 +229128,285.5,95.5827 +229129,283.11,89.77392 +229130,283.41,91.6627 +229131,283.74,93.6011 +229132,284.1,95.5959 +229133,281.81,89.78736 +229134,282.08,91.6759 +229135,282.37,93.6138 +229136,282.7,95.6076 +229137,280.52,89.80218 +229138,280.75,91.6896 +229139,281.01,93.6259 +229140,281.3,95.6176 +229141,279.22,89.81841 +229142,279.42,91.7037 +229143,279.64,93.6375 +229144,279.89,95.6261 +229145,277.92,89.83602 +229146,278.09,91.7182 +229147,278.28,93.6485 +229148,278.49,95.6331 +229149,276.63,89.85503 +229150,276.76,91.7332 +229151,276.91,93.659 +229152,277.09,95.6385 +229153,275.33,89.87543 +229154,275.43,91.7486 +229155,275.54,93.6689 +229156,275.69,95.6423 +229157,274.03,89.89721 +229158,274.09,91.7645 +229159,274.18,93.6783 +229160,274.29,95.6446 +229161,272.74,89.920385 +229162,272.76,91.7808 +229163,272.81,93.6872 +229164,272.88,95.6453 +229165,271.44,89.944936 +229166,271.43,91.7975 +229167,271.44,93.6955 +229168,271.48,95.6445 +229169,270.14,89.970863 +229170,270.1,91.8146 +229171,270.08,93.7033 +229172,270.08,95.6421 +229173,268.85,89.9981598 +229174,268.77,91.8322 +229175,268.71,93.7105 +229176,268.68,95.6382 +229177,267.55,90.02682 +229178,267.44,91.8502 +229179,267.34,93.7172 +229180,267.27,95.6328 +229181,266.25,90.056838 +229182,266.11,91.8686 +229183,265.98,93.7234 +229184,265.87,95.6259 +229185,264.96,90.088205 +229186,264.77,91.8875 +229187,264.61,93.7291 +229188,264.47,95.6175 +229189,263.66,90.12091 +229190,263.44,91.9067 +229191,263.24,93.7342 +229192,263.07,95.6076 +229193,262.36,90.15495 +229194,262.11,91.9264 +229195,261.88,93.7388 +229196,261.67,95.5962 +229197,261.06,90.19032 +229198,260.78,91.9465 +229199,260.51,93.7429 +229200,260.26,95.5834 +229201,259.77,90.22699 +229202,259.45,91.967 +229203,259.15,93.7465 +229204,258.86,95.5691 +229205,258.47,90.26497 +229206,258.11,91.9879 +229207,257.78,93.7495 +229208,257.46,95.5534 +229209,257.17,90.30423 +229210,256.78,92.0092 +229211,256.41,93.7521 +229212,256.06,95.5363 +229213,255.87,90.34478 +229214,255.45,92.0309 +229215,255.05,93.7542 +229216,254.66,95.5178 +229217,254.57,90.38659 +229218,254.12,92.0529 +229219,253.68,93.7557 +229220,253.26,95.4979 +229221,253.27,90.42964 +229222,252.78,92.0754 +229223,252.31,93.7568 +229224,251.86,95.4766 +229225,251.97,90.47394 +229226,251.45,92.0982 +229227,250.95,93.7574 +229228,250.46,95.4539 +229229,250.67,90.51945 +229230,250.12,92.1214 +229231,249.58,93.7575 +229232,249.06,95.43 +229233,249.37,90.56618 +229234,248.78,92.145 +229235,248.22,93.7571 +229236,247.67,95.4047 +229237,248.06,90.61409 +229238,247.45,92.1689 +229239,246.85,93.7563 +229240,246.27,95.3781 +229241,246.76,90.66317 +229242,246.12,92.1932 +229243,245.49,93.755 +229244,244.87,95.3503 +229245,245.46,90.71341 +229246,244.78,92.2179 +229247,244.12,93.7533 +229248,243.47,95.3211 +229249,244.15,90.76478 +229250,243.45,92.2429 +229251,242.76,93.7511 +229252,242.08,95.2908 +229253,242.85,90.81728 +229254,242.12,92.2682 +229255,241.39,93.7484 +229256,240.68,95.2593 +229257,241.54,90.87087 +229258,240.78,92.2938 +229259,240.03,93.7454 +229260,239.29,95.2265 +229261,240.24,90.92554 +229262,239.45,92.3198 +229263,238.66,93.7419 +229264,237.89,95.1927 +229265,238.93,90.98127 +229266,238.11,92.3461 +229267,237.3,93.738 +229268,236.5,95.1576 +229269,237.63,91.038 +229270,236.78,92.3727 +229271,235.94,93.7336 +229272,235.11,95.1215 +229273,236.32,91.0958 +229274,235.44,92.3996 +229275,234.57,93.7289 +229276,233.71,95.0843 +229277,235.01,91.1546 +229278,234.1,92.4268 +229279,233.21,93.7238 +229280,232.32,95.046 +229281,233.7,91.2143 +229282,232.77,92.4543 +229283,231.84,93.7183 +229284,230.93,95.0066 +229285,232.39,91.275 +229286,231.43,92.482 +229287,230.48,93.7124 +229288,229.54,94.9663 +229289,231.08,91.3367 +229290,230.09,92.51 +229291,229.12,93.7061 +229292,228.15,94.925 +229293,229.77,91.3992 +229294,228.76,92.5383 +229295,227.76,93.6995 +229296,226.76,94.8827 +229297,228.45,91.4626 +229298,227.42,92.5669 +229299,226.39,93.6925 +229300,225.38,94.8395 +229301,227.14,91.5268 +229302,226.08,92.5956 +229303,225.03,93.6852 +229304,223.99,94.7954 +229305,225.83,91.5919 +229306,224.74,92.6246 +229307,223.67,93.6776 +229308,222.6,94.7504 +229309,224.51,91.6577 +229310,223.41,92.6539 +229311,222.31,93.6696 +229312,221.22,94.7046 +229313,223.19,91.7244 +229314,222.07,92.6833 +229315,220.95,93.6613 +229316,219.83,94.6579 +229317,221.88,91.7918 +229318,220.73,92.713 +229319,219.59,93.6527 +229320,218.45,94.6105 +229321,220.56,91.8598 +229322,219.39,92.7428 +229323,218.23,93.6438 +229324,217.07,94.5623 +229325,219.24,91.9286 +229326,218.05,92.7728 +229327,216.87,93.6346 +229328,215.69,94.5134 +229329,217.92,91.9981 +229330,216.71,92.803 +229331,215.51,93.6252 +229332,214.31,94.4638 +229333,216.6,92.0681 +229334,215.37,92.8334 +229335,214.15,93.6154 +229336,212.93,94.4136 +229337,215.28,92.1388 +229338,214.03,92.8639 +229339,212.79,93.6054 +229340,211.55,94.3627 +229341,213.95,92.21 +229342,212.69,92.8946 +229343,211.43,93.5952 +229344,210.17,94.3112 +229345,212.63,92.2818 +229346,211.35,92.9254 +229347,210.07,93.5847 +229348,208.8,94.2591 +229349,211.3,92.3541 +229350,210,92.9564 +229351,208.71,93.5741 +229352,207.42,94.2065 +229353,209.98,92.4269 +229354,208.66,92.9874 +229355,207.35,93.5631 +229356,206.05,94.1534 +229357,208.65,92.5001 +229358,207.32,93.0186 +229359,206,93.552 +229360,204.68,94.0998 +229361,207.32,92.5737 +229362,205.98,93.0498 +229363,204.64,93.5407 +229364,203.31,94.0458 +229365,205.99,92.6477 +229366,204.63,93.0811 +229367,203.28,93.5292 +229368,201.94,93.9914 +229369,204.66,92.7221 +229370,203.29,93.1125 +229371,201.92,93.5176 +229372,200.57,93.9366 +229373,203.33,92.7968 +229374,201.95,93.144 +229375,200.57,93.5057 +229376,199.2,93.8814 +229377,202,92.8718 +229378,200.6,93.1755 +229379,199.21,93.4938 +229380,197.83,93.826 +229381,200.66,92.947 +229382,199.26,93.207 +229383,197.86,93.4817 +229384,196.46,93.7702 +229385,199.33,93.0225 +229386,197.91,93.2386 +229387,196.5,93.4694 +229388,195.1,93.7143 +229389,197.99,93.0981 +229390,196.57,93.2702 +229391,195.15,93.457 +229392,193.74,93.6581 +229393,196.65,93.1739 +229394,195.22,93.3018 +229395,193.79,93.4446 +229396,192.37,93.6017 +229397,195.31,93.2499 +229398,193.87,93.3334 +229399,192.44,93.432 +229400,191.01,93.5452 +229401,193.97,93.3259 +229402,192.53,93.365 +229403,191.08,93.4194 +229404,189.65,93.4886 +229405,192.63,93.402 +229406,191.18,93.3965 +229407,189.73,93.4066 +229408,188.29,93.4318 +229409,191.29,93.4781 +229410,189.83,93.428 +229411,188.38,93.3938 +229412,186.94,93.3751 +229413,189.94,93.5541 +229414,188.48,93.4594 +229415,187.03,93.381 +229416,185.58,93.3183 +229417,188.6,93.6302 +229418,187.13,93.4908 +229419,185.67,93.3681 +229420,184.22,93.2616 +229421,187.25,93.7061 +229422,185.78,93.5221 +229423,184.32,93.3552 +229424,182.87,93.2049 +229425,185.91,93.782 +229426,184.43,93.5534 +229427,182.97,93.3423 +229428,181.52,93.1482 +229429,184.56,93.8577 +229430,183.08,93.5845 +229431,181.62,93.3294 +229432,180.16,93.0917 +229433,183.21,93.9332 +229434,181.73,93.6155 +229435,180.27,93.3164 +229436,178.81,93.0354 +229437,181.86,94.0084 +229438,180.38,93.6464 +229439,178.92,93.3035 +229440,177.46,92.9792 +229441,180.5,94.0835 +229442,179.03,93.6772 +229443,177.57,93.2906 +229444,176.12,92.9233 +229445,179.15,94.1582 +229446,177.68,93.7078 +229447,176.22,93.2778 +229448,174.77,92.8675 +229449,177.8,94.2326 +229450,176.33,93.7383 +229451,174.87,93.265 +229452,173.42,92.8121 +229453,176.44,94.3067 +229454,174.98,93.7686 +229455,173.52,93.2522 +229456,172.08,92.757 +229457,175.08,94.3804 +229458,173.62,93.7987 +229459,172.17,93.2396 +229460,170.73,92.7022 +229461,173.72,94.4536 +229462,172.27,93.8286 +229463,170.83,93.227 +229464,169.39,92.6478 +229465,172.36,94.5264 +229466,170.92,93.8584 +229467,169.48,93.2145 +229468,168.05,92.5938 +229469,171,94.5987 +229470,169.56,93.8879 +229471,168.13,93.2021 +229472,166.71,92.5402 +229473,169.64,94.6705 +229474,168.21,93.9172 +229475,166.78,93.1898 +229476,165.37,92.4871 +229477,168.28,94.7417 +229478,166.85,93.9463 +229479,165.44,93.1776 +229480,164.03,92.4344 +229481,166.91,94.8123 +229482,165.5,93.9751 +229483,164.09,93.1656 +229484,162.7,92.3823 +229485,165.55,94.8823 +229486,164.14,94.0037 +229487,162.74,93.1537 +229488,161.36,92.3308 +229489,164.18,94.9516 +229490,162.78,94.032 +229491,161.4,93.1419 +229492,160.03,92.2798 +229493,162.81,95.0203 +229494,161.43,94.0601 +229495,160.05,93.1304 +229496,158.69,92.2295 +229497,161.45,95.0882 +229498,160.07,94.0878 +229499,158.71,93.1189 +229500,157.36,92.1798 +229501,160.08,95.1554 +229502,158.71,94.1153 +229503,157.37,93.1077 +229504,156.03,92.1307 +229505,158.7,95.2217 +229506,157.36,94.1425 +229507,156.02,93.0967 +229508,154.7,92.0824 +229509,157.33,95.2873 +229510,156,94.1693 +229511,154.68,93.0859 +229512,153.37,92.0347 +229513,155.96,95.352 +229514,154.64,94.1958 +229515,153.33,93.0752 +229516,152.04,91.9879 +229517,154.58,95.4158 +229518,153.28,94.222 +229519,151.99,93.0648 +229520,150.72,91.9418 +229521,153.21,95.4787 +229522,151.92,94.2479 +229523,150.65,93.0547 +229524,149.39,91.8965 +229525,151.83,95.5407 +229526,150.56,94.2734 +229527,149.31,93.0447 +229528,148.06,91.852 +229529,150.45,95.6017 +229530,149.2,94.2985 +229531,147.96,93.035 +229532,146.74,91.8084 +229533,149.08,95.6617 +229534,147.84,94.3232 +229535,146.62,93.0256 +229536,145.42,91.7657 +229537,147.7,95.7207 +229538,146.48,94.3476 +229539,145.28,93.0164 +229540,144.1,91.7238 +229541,146.32,95.7786 +229542,145.12,94.3716 +229543,143.94,93.0075 +229544,142.77,91.6829 +229545,144.93,95.8354 +229546,143.76,94.3952 +229547,142.6,92.9989 +229548,141.45,91.643 +229549,143.55,95.8911 +229550,142.4,94.4183 +229551,141.26,92.9906 +229552,140.14,91.604 +229553,142.17,95.9457 +229554,141.03,94.4411 +229555,139.92,92.9826 +229556,138.82,91.566 +229557,140.78,95.9991 +229558,139.67,94.4634 +229559,138.58,92.9748 +229560,137.5,91.5291 +229561,139.4,96.0514 +229562,138.31,94.4853 +229563,137.24,92.9674 +229564,136.18,91.4932 +229565,138.01,96.1024 +229566,136.95,94.5068 +229567,135.9,92.9603 +229568,134.87,91.4583 +229569,136.62,96.1522 +229570,135.58,94.5278 +229571,134.56,92.9535 +229572,133.55,91.4245 +229573,135.24,96.2007 +229574,134.22,94.5483 +229575,133.22,92.9471 +229576,132.24,91.3919 +229577,133.85,96.2479 +229578,132.86,94.5684 +229579,131.88,92.941 +229580,130.92,91.3603 +229581,132.46,96.2938 +229582,131.49,94.588 +229583,130.54,92.9352 +229584,129.61,91.3299 +229585,131.07,96.3384 +229586,130.13,94.6072 +229587,129.21,92.9298 +229588,128.3,91.3007 +229589,129.68,96.3816 +229590,128.76,94.6259 +229591,127.87,92.9248 +229592,126.99,91.2726 +229593,128.28,96.4235 +229594,127.4,94.644 +229595,126.53,92.9201 +229596,125.68,91.2457 +229597,126.89,96.464 +229598,126.03,94.6617 +229599,125.19,92.9158 +229600,124.37,91.22 +229601,125.5,96.5031 +229602,124.67,94.6789 +229603,123.86,92.9119 +229604,123.06,91.1956 +229605,124.1,96.5407 +229606,123.3,94.6956 +229607,122.52,92.9083 +229608,121.75,91.1724 +229609,122.71,96.5769 +229610,121.94,94.7117 +229611,121.18,92.9051 +229612,120.44,91.1504 +229613,121.31,96.6116 +229614,120.57,94.7274 +229615,119.85,92.9024 +229616,119.14,91.1297 +229617,119.92,96.6449 +229618,119.2,94.7425 +229619,118.51,92.9 +229620,117.83,91.1103 +229621,118.52,96.6766 +229622,117.84,94.7571 +229623,117.17,92.898 +229624,116.52,91.0922 +229625,117.12,96.7069 +229626,116.47,94.7711 +229627,115.84,92.8964 +229628,115.22,91.0754 +229629,115.72,96.7356 +229630,115.1,94.7846 +229631,114.5,92.8952 +229632,113.91,91.06 +229633,114.33,96.7628 +229634,113.74,94.7976 +229635,113.16,92.8945 +229636,112.61,91.0458 +229637,112.93,96.7885 +229638,112.37,94.8101 +229639,111.83,92.8941 +229640,111.3,91.033 +229641,111.53,96.8126 +229642,111,94.822 +229643,110.49,92.8942 +229644,110,91.0215 +229645,110.13,96.8351 +229646,109.64,94.8333 +229647,109.16,92.8947 +229648,108.69,91.0114 +229649,108.73,96.8561 +229650,108.27,94.8441 +229651,107.82,92.8956 +229652,107.39,91.0027 +229653,107.33,96.8754 +229654,106.9,94.8543 +229655,106.49,92.8969 +229656,106.09,90.99533 +229657,105.93,96.8932 +229658,105.53,94.864 +229659,105.15,92.8987 +229660,104.78,90.98934 +229661,104.53,96.9094 +229662,104.16,94.8731 +229663,103.82,92.9009 +229664,103.48,90.98474 +229665,103.12,96.9239 +229666,102.8,94.8816 +229667,102.48,92.9035 +229668,102.18,90.98153 +229669,101.72,96.9369 +229670,101.43,94.8896 +229671,101.15,92.9066 +229672,100.88,90.97972 +229673,100.32,96.9482 +229674,100.06,94.897 +229675,99.812,92.9101 +229676,99.576,90.9793 +229677,98.918,96.958 +229678,98.691,94.9039 +229679,98.477,92.914 +229680,98.275,90.98029 +229681,97.516,96.9661 +229682,97.323,94.9102 +229683,97.142,92.9184 +229684,96.973,90.98268 +229685,96.113,96.9725 +229686,95.954,94.9159 +229687,95.808,92.9232 +229688,95.672,90.98648 +229689,94.711,96.9774 +229690,94.586,94.921 +229691,94.473,92.9285 +229692,94.37,90.99168 +229693,93.308,96.9806 +229694,93.217,94.9256 +229695,93.138,92.9342 +229696,93.069,90.9983 +229697,91.905,96.9822 +229698,91.848,94.9296 +229699,91.803,92.9403 +229700,91.768,91.0063 +229701,90.502,96.9822 +229702,90.48,94.9331 +229703,90.468,92.9468 +229704,90.466,91.0158 +229705,89.1,96.9806 +229706,89.111,94.9359 +229707,89.134,92.9538 +229708,89.165,91.0266 +229709,87.697,96.9773 +229710,87.743,94.9382 +229711,87.799,92.9613 +229712,87.864,91.0388 +229713,86.294,96.9725 +229714,86.374,94.94 +229715,86.464,92.9691 +229716,86.562,91.0525 +229717,84.891,96.966 +229718,85.006,94.9411 +229719,85.129,92.9774 +229720,85.261,91.0675 +229721,83.489,96.958 +229722,83.637,94.9418 +229723,83.794,92.9862 +229724,83.959,91.0839 +229725,82.087,96.9483 +229726,82.268,94.9418 +229727,82.459,92.9953 +229728,82.657,91.1017 +229729,80.684,96.9371 +229730,80.9,94.9413 +229731,81.124,93.0049 +229732,81.355,91.1209 +229733,79.282,96.9243 +229734,79.532,94.9402 +229735,79.789,93.0149 +229736,80.053,91.1415 +229737,77.88,96.9099 +229738,78.163,94.9386 +229739,78.454,93.0253 +229740,78.751,91.1634 +229741,76.479,96.894 +229742,76.795,94.9365 +229743,77.118,93.0362 +229744,77.448,91.1867 +229745,75.078,96.8766 +229746,75.427,94.9338 +229747,75.783,93.0475 +229748,76.145,91.2114 +229749,73.677,96.8576 +229750,74.059,94.9305 +229751,74.447,93.0591 +229752,74.841,91.2374 +229753,72.276,96.8371 +229754,72.691,94.9267 +229755,73.111,93.0712 +229756,73.538,91.2647 +229757,70.876,96.8151 +229758,71.323,94.9224 +229759,71.776,93.0837 +229760,72.234,91.2933 +229761,69.476,96.7916 +229762,69.955,94.9176 +229763,70.44,93.0966 +229764,70.929,91.3233 +229765,68.076,96.7666 +229766,68.588,94.9122 +229767,69.104,93.1099 +229768,69.624,91.3545 +229769,66.677,96.7401 +229770,67.22,94.9063 +229771,67.767,93.1236 +229772,68.319,91.387 +229773,65.279,96.7123 +229774,65.853,94.8999 +229775,66.431,93.1377 +229776,67.013,91.4208 +229777,63.881,96.683 +229778,64.486,94.8929 +229779,65.094,93.1521 +229780,65.707,91.4559 +229781,62.483,96.6523 +229782,63.119,94.8855 +229783,63.757,93.167 +229784,64.4,91.4922 +229785,61.086,96.6202 +229786,61.752,94.8776 +229787,62.42,93.1822 +229788,63.092,91.5297 +229789,59.69,96.5867 +229790,60.385,94.8692 +229791,61.083,93.1977 +229792,61.784,91.5684 +229793,58.294,96.5519 +229794,59.019,94.8603 +229795,59.746,93.2137 +229796,60.476,91.6084 +229797,56.899,96.5158 +229798,57.652,94.8509 +229799,58.408,93.23 +229800,59.167,91.6495 +229801,55.504,96.4784 +229802,56.286,94.841 +229803,57.071,93.2466 +229804,57.857,91.6918 +229805,54.11,96.4397 +229806,54.921,94.8307 +229807,55.732,93.2636 +229808,56.546,91.7352 +229809,52.717,96.3997 +229810,53.555,94.8199 +229811,54.394,93.2809 +229812,55.235,91.7797 +229813,51.325,96.3585 +229814,52.19,94.8087 +229815,53.056,93.2985 +229816,53.923,91.8253 +229817,49.933,96.3161 +229818,50.824,94.797 +229819,51.717,93.3165 +229820,52.611,91.8721 +229821,48.542,96.2725 +229822,49.46,94.7849 +229823,50.378,93.3348 +229824,51.297,91.9198 +229825,47.152,96.2277 +229826,48.095,94.7723 +229827,49.039,93.3533 +229828,49.983,91.9687 +229829,45.763,96.1819 +229830,46.731,94.7593 +229831,47.699,93.3722 +229832,48.668,92.0185 +229833,44.374,96.1349 +229834,45.366,94.7459 +229835,46.359,93.3914 +229836,47.352,92.0693 +229837,42.986,96.0868 +229838,44.003,94.7322 +229839,45.019,93.4108 +229840,46.036,92.1212 +229841,41.599,96.0376 +229842,42.639,94.718 +229843,43.679,93.4306 +229844,44.718,92.1739 +229845,40.213,95.9875 +229846,41.276,94.7034 +229847,42.338,93.4506 +229848,43.4,92.2276 +229849,38.828,95.9363 +229850,39.913,94.6885 +229851,40.997,93.4708 +229852,42.081,92.2822 +229853,37.444,95.8842 +229854,38.55,94.6731 +229855,39.656,93.4913 +229856,40.761,92.3377 +229857,36.061,95.8311 +229858,37.188,94.6575 +229859,38.314,93.5121 +229860,39.44,92.394 +229861,34.679,95.7772 +229862,35.826,94.6414 +229863,36.972,93.533 +229864,38.118,92.4512 +229865,33.297,95.7223 +229866,34.464,94.6251 +229867,35.63,93.5542 +229868,36.795,92.5091 +229869,31.917,95.6666 +229870,33.102,94.6084 +229871,34.287,93.5756 +229872,35.471,92.5678 +229873,30.538,95.6101 +229874,31.741,94.5913 +229875,32.944,93.5972 +229876,34.146,92.6273 +229877,29.159,95.5527 +229878,30.38,94.574 +229879,31.601,93.619 +229880,32.821,92.6875 +229881,27.782,95.4947 +229882,29.02,94.5564 +229883,30.257,93.641 +229884,31.494,92.7484 +229885,26.406,95.4359 +229886,27.66,94.5384 +229887,28.913,93.6632 +229888,30.166,92.8099 +229889,25.031,95.3764 +229890,26.3,94.5202 +229891,27.569,93.6855 +229892,28.837,92.8721 +229893,23.657,95.3162 +229894,24.941,94.5017 +229895,26.224,93.708 +229896,27.507,92.9349 +229897,22.283,95.2554 +229898,23.582,94.483 +229899,24.879,93.7306 +229900,26.176,92.9982 +229901,20.912,95.1941 +229902,22.223,94.464 +229903,23.534,93.7534 +229904,24.844,93.0621 +229905,19.541,95.1321 +229906,20.865,94.4448 +229907,22.188,93.7762 +229908,23.511,93.1265 +229909,18.171,95.0697 +229910,19.507,94.4253 +229911,20.842,93.7992 +229912,22.176,93.1914 +229913,16.802,95.0067 +229914,18.149,94.4057 +229915,19.496,93.8223 +229916,20.841,93.2568 +229917,15.435,94.9432 +229918,16.792,94.3858 +229919,18.149,93.8455 +229920,19.505,93.3225 +229921,14.068,94.8794 +229922,15.435,94.3657 +229923,16.802,93.8688 +229924,18.167,93.3887 +229925,12.703,94.8151 +229926,14.078,94.3455 +229927,15.454,93.8921 +229928,16.828,93.4552 +229929,11.339,94.7505 +229930,12.722,94.325 +229931,14.106,93.9155 +229932,15.488,93.5221 +229933,9.9761,94.6855 +229934,11.367,94.3044 +229935,12.757,93.9389 +229936,14.147,93.5892 +229937,8.6143,94.6203 +229938,10.011,94.2837 +229939,11.409,93.9624 +229940,12.805,93.6566 +229941,7.2537,94.5548 +229942,8.6562,94.2628 +229943,10.059,93.9859 +229944,11.462,93.7242 +229945,5.8943,94.4891 +229946,7.3016,94.2418 +229947,8.7098,94.0094 +229948,10.117,93.7921 +229949,4.536,94.4231 +229950,5.9475,94.2207 +229951,7.3599,94.0329 +229952,8.7716,93.86 +229953,3.1789,94.357 +229954,4.5937,94.1994 +229955,6.0095,94.0564 +229956,7.4248,93.9282 +229957,1.823,94.2908 +229958,3.2403,94.1781 +229959,4.6587,94.0799 +229960,6.0767,93.9964 +229961,0.46823,94.2245 +229962,1.8872,94.1567 +229963,3.3076,94.1034 +229964,4.7275,94.0646 +229965,359.11,94.1581 +229966,0.53461,94.1352 +229967,1.956,94.1268 +229968,3.3772,94.1329 +229969,357.76,94.0918 +229970,359.18,94.1137 +229971,0.60405,94.1502 +229972,2.0256,94.2012 +229973,356.41,94.0254 +229974,357.83,94.0921 +229975,359.25,94.1735 +229976,0.67289,94.2695 +229977,355.06,93.959 +229978,356.48,94.0705 +229979,357.9,94.1967 +229980,359.32,94.3377 +229981,353.71,93.8928 +229982,355.13,94.0488 +229983,356.55,94.2198 +229984,357.96,94.4057 +229985,352.36,93.8266 +229986,353.78,94.0271 +229987,355.19,94.2428 +229988,356.61,94.4737 +229989,351.02,93.7606 +229990,352.43,94.0055 +229991,353.84,94.2657 +229992,355.25,94.5414 +229993,349.67,93.6948 +229994,351.08,93.9838 +229995,352.48,94.2885 +229996,353.89,94.609 +229997,348.33,93.6292 +229998,349.73,93.9622 +229999,351.13,94.3112 +230000,352.53,94.6763 +230001,346.99,93.5638 +230002,348.38,93.9406 +230003,349.77,94.3337 +230004,351.17,94.7433 +230005,345.64,93.4987 +230006,347.03,93.919 +230007,348.42,94.3561 +230008,349.81,94.81 +230009,344.3,93.4339 +230010,345.68,93.8975 +230011,347.06,94.3783 +230012,348.45,94.8764 +230013,342.96,93.3695 +230014,344.33,93.876 +230015,345.71,94.4003 +230016,347.08,94.9423 +230017,341.62,93.3054 +230018,342.99,93.8546 +230019,344.35,94.4221 +230020,345.72,95.0079 +230021,340.29,93.2417 +230022,341.64,93.8333 +230023,342.99,94.4437 +230024,344.35,95.073 +230025,338.95,93.1785 +230026,340.29,93.8121 +230027,341.64,94.4652 +230028,342.98,95.1377 +230029,337.62,93.1157 +230030,338.95,93.791 +230031,340.28,94.4864 +230032,341.61,95.2018 +230033,336.28,93.0534 +230034,337.6,93.7701 +230035,338.92,94.5073 +230036,340.24,95.2654 +230037,334.95,92.9917 +230038,336.25,93.7492 +230039,337.56,94.528 +230040,338.87,95.3284 +230041,333.62,92.9305 +230042,334.91,93.7285 +230043,336.2,94.5485 +230044,337.5,95.3908 +230045,332.29,92.8699 +230046,333.56,93.7079 +230047,334.84,94.5687 +230048,336.12,95.4525 +230049,330.96,92.8099 +230050,332.22,93.6875 +230051,333.48,94.5886 +230052,334.75,95.5135 +230053,329.63,92.7506 +230054,330.87,93.6673 +230055,332.12,94.6082 +230056,333.37,95.5739 +230057,328.3,92.6919 +230058,329.53,93.6472 +230059,330.76,94.6276 +230060,332,95.6335 +230061,326.97,92.6339 +230062,328.19,93.6274 +230063,329.4,94.6466 +230064,330.62,95.6923 +230065,325.65,92.5767 +230066,326.84,93.6077 +230067,328.04,94.6653 +230068,329.24,95.7503 +230069,324.32,92.5202 +230070,325.5,93.5882 +230071,326.68,94.6837 +230072,327.86,95.8075 +230073,323,92.4645 +230074,324.16,93.569 +230075,325.32,94.7017 +230076,326.48,95.8638 +230077,321.68,92.4096 +230078,322.82,93.5499 +230079,323.96,94.7194 +230080,325.1,95.9193 +230081,320.36,92.3555 +230082,321.47,93.5312 +230083,322.59,94.7368 +230084,323.72,95.9737 +230085,319.03,92.3023 +230086,320.13,93.5126 +230087,321.23,94.7537 +230088,322.33,96.0273 +230089,317.71,92.25 +230090,318.79,93.4943 +230091,319.87,94.7703 +230092,320.95,96.0798 +230093,316.4,92.1986 +230094,317.45,93.4763 +230095,318.51,94.7866 +230096,319.56,96.1313 +230097,315.08,92.1482 +230098,316.11,93.4585 +230099,317.14,94.8024 +230100,318.18,96.1818 +230101,313.76,92.0987 +230102,314.77,93.441 +230103,315.78,94.8178 +230104,316.79,96.2312 +230105,312.44,92.0502 +230106,313.43,93.4238 +230107,314.41,94.8328 +230108,315.4,96.2796 +230109,311.13,92.0027 +230110,312.09,93.4069 +230111,313.05,94.8474 +230112,314.01,96.3267 +230113,309.81,91.9562 +230114,310.75,93.3903 +230115,311.69,94.8616 +230116,312.62,96.3728 +230117,308.5,91.9108 +230118,309.41,93.3741 +230119,310.32,94.8753 +230120,311.23,96.4176 +230121,307.19,91.8664 +230122,308.07,93.3581 +230123,308.96,94.8886 +230124,309.84,96.4613 +230125,305.87,91.8232 +230126,306.73,93.3424 +230127,307.59,94.9015 +230128,308.45,96.5037 +230129,304.56,91.781 +230130,305.39,93.3271 +230131,306.23,94.9139 +230132,307.06,96.5449 +230133,303.25,91.74 +230134,304.05,93.3121 +230135,304.86,94.9258 +230136,305.67,96.5848 +230137,301.94,91.7001 +230138,302.72,93.2975 +230139,303.49,94.9372 +230140,304.27,96.6234 +230141,300.63,91.6614 +230142,301.38,93.2832 +230143,302.13,94.9482 +230144,302.88,96.6607 +230145,299.32,91.6239 +230146,300.04,93.2693 +230147,300.76,94.9587 +230148,301.48,96.6967 +230149,298.01,91.5875 +230150,298.7,93.2557 +230151,299.39,94.9687 +230152,300.08,96.7312 +230153,296.7,91.5524 +230154,297.37,93.2425 +230155,298.03,94.9782 +230156,298.69,96.7644 +230157,295.4,91.5186 +230158,296.03,93.2297 +230159,296.66,94.9872 +230160,297.29,96.7962 +230161,294.09,91.4859 +230162,294.69,93.2173 +230163,295.29,94.9957 +230164,295.89,96.8266 +230165,292.78,91.4546 +230166,293.36,93.2052 +230167,293.93,95.0037 +230168,294.5,96.8556 +230169,291.48,91.4245 +230170,292.02,93.1935 +230171,292.56,95.0111 +230172,293.1,96.8831 +230173,290.17,91.3957 +230174,290.68,93.1823 +230175,291.19,95.0181 +230176,291.7,96.9091 +230177,288.87,91.3682 +230178,289.35,93.1714 +230179,289.82,95.0245 +230180,290.3,96.9336 +230181,287.56,91.342 +230182,288.01,93.1609 +230183,288.46,95.0303 +230184,288.9,96.9567 +230185,286.26,91.3172 +230186,286.67,93.1509 +230187,287.09,95.0357 +230188,287.5,96.9782 +230189,284.95,91.2937 +230190,285.34,93.1412 +230191,285.72,95.0405 +230192,286.1,96.9982 +230193,283.65,91.2715 +230194,284,93.132 +230195,284.35,95.0447 +230196,284.7,97.0166 +230197,282.35,91.2507 +230198,282.67,93.1231 +230199,282.98,95.0484 +230200,283.29,97.0335 +230201,281.04,91.2312 +230202,281.33,93.1147 +230203,281.61,95.0515 +230204,281.89,97.0488 +230205,279.74,91.2132 +230206,280,93.1068 +230207,280.25,95.0541 +230208,280.49,97.0626 +230209,278.44,91.1964 +230210,278.66,93.0992 +230211,278.88,95.0562 +230212,279.09,97.0748 +230213,277.14,91.1811 +230214,277.32,93.0921 +230215,277.51,95.0576 +230216,277.69,97.0853 +230217,275.83,91.1672 +230218,275.99,93.0854 +230219,276.14,95.0585 +230220,276.28,97.0943 +230221,274.53,91.1547 +230222,274.65,93.0791 +230223,274.77,95.0589 +230224,274.88,97.1017 +230225,273.23,91.1435 +230226,273.32,93.0733 +230227,273.4,95.0586 +230228,273.48,97.1074 +230229,271.93,91.1338 +230230,271.98,93.0679 +230231,272.03,95.0578 +230232,272.08,97.1116 +230233,270.63,91.1255 +230234,270.65,93.063 +230235,270.66,95.0565 +230236,270.67,97.1141 +230237,269.32,91.1185 +230238,269.31,93.0584 +230239,269.3,95.0545 +230240,269.27,97.115 +230241,268.02,91.113 +230242,267.98,93.0543 +230243,267.93,95.052 +230244,267.87,97.1143 +230245,266.72,91.1089 +230246,266.64,93.0507 +230247,266.56,95.049 +230248,266.47,97.1119 +230249,265.42,91.1062 +230250,265.31,93.0475 +230251,265.19,95.0453 +230252,265.06,97.1079 +230253,264.12,91.105 +230254,263.97,93.0447 +230255,263.82,95.0411 +230256,263.66,97.1023 +230257,262.82,91.1051 +230258,262.64,93.0424 +230259,262.45,95.0363 +230260,262.26,97.0951 +230261,261.51,91.1066 +230262,261.3,93.0405 +230263,261.08,95.031 +230264,260.86,97.0862 +230265,260.21,91.1095 +230266,259.97,93.039 +230267,259.72,95.025 +230268,259.45,97.0757 +230269,258.91,91.1139 +230270,258.63,93.038 +230271,258.35,95.0185 +230272,258.05,97.0636 +230273,257.61,91.1196 +230274,257.3,93.0374 +230275,256.98,95.0115 +230276,256.65,97.0499 +230277,256.3,91.1267 +230278,255.96,93.0373 +230279,255.61,95.0038 +230280,255.25,97.0345 +230281,255,91.1352 +230282,254.63,93.0375 +230283,254.24,94.9957 +230284,253.85,97.0176 +230285,253.7,91.1451 +230286,253.29,93.0382 +230287,252.87,94.9869 +230288,252.45,96.9991 +230289,252.39,91.1564 +230290,251.95,93.0394 +230291,251.51,94.9776 +230292,251.05,96.979 +230293,251.09,91.169 +230294,250.62,93.0409 +230295,250.14,94.9677 +230296,249.65,96.9573 +230297,249.79,91.183 +230298,249.28,93.0429 +230299,248.77,94.9573 +230300,248.25,96.934 +230301,248.48,91.1983 +230302,247.95,93.0452 +230303,247.4,94.9464 +230304,246.85,96.9092 +230305,247.18,91.215 +230306,246.61,93.048 +230307,246.04,94.9349 +230308,245.45,96.8828 +230309,245.87,91.233 +230310,245.27,93.0512 +230311,244.67,94.9228 +230312,244.05,96.855 +230313,244.56,91.2523 +230314,243.94,93.0549 +230315,243.3,94.9103 +230316,242.65,96.8256 +230317,243.26,91.2729 +230318,242.6,93.0589 +230319,241.94,94.8971 +230320,241.26,96.7946 +230321,241.95,91.2948 +230322,241.26,93.0633 +230323,240.57,94.8835 +230324,239.86,96.7622 +230325,240.64,91.318 +230326,239.93,93.0681 +230327,239.2,94.8694 +230328,238.46,96.7284 +230329,239.33,91.3425 +230330,238.59,93.0733 +230331,237.84,94.8547 +230332,237.07,96.693 +230333,238.03,91.3682 +230334,237.25,93.0788 +230335,236.47,94.8395 +230336,235.67,96.6563 +230337,236.72,91.3951 +230338,235.92,93.0848 +230339,235.1,94.8238 +230340,234.28,96.6181 +230341,235.41,91.4233 +230342,234.58,93.0911 +230343,233.74,94.8076 +230344,232.89,96.5785 +230345,234.1,91.4526 +230346,233.24,93.0978 +230347,232.37,94.7909 +230348,231.49,96.5375 +230349,232.78,91.4832 +230350,231.9,93.1049 +230351,231.01,94.7737 +230352,230.1,96.4951 +230353,231.47,91.5149 +230354,230.56,93.1123 +230355,229.64,94.7561 +230356,228.71,96.4515 +230357,230.16,91.5478 +230358,229.22,93.12 +230359,228.28,94.7379 +230360,227.32,96.4064 +230361,228.85,91.5819 +230362,227.89,93.1281 +230363,226.91,94.7193 +230364,225.93,96.3601 +230365,227.53,91.617 +230366,226.55,93.1366 +230367,225.55,94.7002 +230368,224.54,96.3125 +230369,226.22,91.6532 +230370,225.21,93.1454 +230371,224.19,94.6807 +230372,223.15,96.2637 +230373,224.9,91.6906 +230374,223.87,93.1545 +230375,222.82,94.6607 +230376,221.77,96.2136 +230377,223.58,91.7289 +230378,222.53,93.1639 +230379,221.46,94.6403 +230380,220.38,96.1624 +230381,222.27,91.7683 +230382,221.19,93.1736 +230383,220.1,94.6195 +230384,218.99,96.1099 +230385,220.95,91.8088 +230386,219.85,93.1836 +230387,218.74,94.5982 +230388,217.61,96.0563 +230389,219.63,91.8502 +230390,218.51,93.1939 +230391,217.37,94.5766 +230392,216.23,96.0016 +230393,218.31,91.8926 +230394,217.17,93.2045 +230395,216.01,94.5545 +230396,214.84,95.9457 +230397,216.99,91.9359 +230398,215.82,93.2154 +230399,214.65,94.532 +230400,213.46,95.8888 +230401,215.67,91.9801 +230402,214.48,93.2265 +230403,213.29,94.5091 +230404,212.08,95.8308 +230405,214.34,92.0253 +230406,213.14,93.2379 +230407,211.93,94.4859 +230408,210.7,95.7719 +230409,213.02,92.0713 +230410,211.8,93.2496 +230411,210.57,94.4623 +230412,209.32,95.7119 +230413,211.69,92.1182 +230414,210.46,93.2615 +230415,209.21,94.4383 +230416,207.95,95.651 +230417,210.37,92.1659 +230418,209.11,93.2736 +230419,207.85,94.414 +230420,206.57,95.5891 +230421,209.04,92.2144 +230422,207.77,93.2859 +230423,206.49,94.3893 +230424,205.19,95.5264 +230425,207.71,92.2636 +230426,206.43,93.2985 +230427,205.13,94.3643 +230428,203.82,95.4628 +230429,206.38,92.3136 +230430,205.08,93.3113 +230431,203.77,94.339 +230432,202.45,95.3983 +230433,205.05,92.3643 +230434,203.74,93.3242 +230435,202.41,94.3133 +230436,201.07,95.3331 +230437,203.72,92.4157 +230438,202.39,93.3374 +230439,201.05,94.2874 +230440,199.7,95.2671 +230441,202.39,92.4678 +230442,201.05,93.3507 +230443,199.7,94.2611 +230444,198.33,95.2003 +230445,201.06,92.5205 +230446,199.7,93.3642 +230447,198.34,94.2346 +230448,196.96,95.1328 +230449,199.72,92.5738 +230450,198.36,93.3779 +230451,196.98,94.2078 +230452,195.6,95.0646 +230453,198.39,92.6276 +230454,197.01,93.3917 +230455,195.63,94.1808 +230456,194.23,94.9958 +230457,197.05,92.682 +230458,195.67,93.4057 +230459,194.27,94.1535 +230460,192.87,94.9264 +230461,195.71,92.7369 +230462,194.32,93.4197 +230463,192.91,94.126 +230464,191.5,94.8564 +230465,194.37,92.7924 +230466,192.97,93.4339 +230467,191.56,94.0982 +230468,190.14,94.7859 +230469,193.03,92.8482 +230470,191.62,93.4482 +230471,190.2,94.0702 +230472,188.78,94.7148 +230473,191.69,92.9045 +230474,190.28,93.4626 +230475,188.85,94.042 +230476,187.42,94.6433 +230477,190.35,92.9612 +230478,188.93,93.4771 +230479,187.5,94.0136 +230480,186.06,94.5713 +230481,189.01,93.0182 +230482,187.58,93.4916 +230483,186.14,93.9851 +230484,184.7,94.499 +230485,187.66,93.0755 +230486,186.23,93.5063 +230487,184.79,93.9563 +230488,183.34,94.4262 +230489,186.32,93.1332 +230490,184.88,93.5209 +230491,183.44,93.9274 +230492,181.98,94.3531 +230493,184.97,93.1911 +230494,183.53,93.5356 +230495,182.08,93.8983 +230496,180.63,94.2797 +230497,183.62,93.2493 +230498,182.18,93.5504 +230499,180.73,93.8691 +230500,179.28,94.206 +230501,182.27,93.3076 +230502,180.83,93.5651 +230503,179.38,93.8398 +230504,177.92,94.1321 +230505,180.92,93.3661 +230506,179.48,93.5799 +230507,178.03,93.8104 +230508,176.57,94.058 +230509,179.57,93.4248 +230510,178.13,93.5947 +230511,176.68,93.7808 +230512,175.22,93.9837 +230513,178.22,93.4836 +230514,176.78,93.6094 +230515,175.33,93.7512 +230516,173.87,93.9093 +230517,176.86,93.5424 +230518,175.42,93.6242 +230519,173.98,93.7215 +230520,172.53,93.8347 +230521,175.51,93.6013 +230522,174.07,93.6389 +230523,172.63,93.6917 +230524,171.18,93.7601 +230525,174.15,93.6601 +230526,172.72,93.6535 +230527,171.28,93.6618 +230528,169.84,93.6855 +230529,172.79,93.719 +230530,171.37,93.6681 +230531,169.93,93.6319 +230532,168.49,93.6109 +230533,171.44,93.7777 +230534,170.01,93.6826 +230535,168.58,93.602 +230536,167.15,93.5363 +230537,170.08,93.8364 +230538,168.66,93.6971 +230539,167.24,93.572 +230540,165.81,93.4618 +230541,168.71,93.895 +230542,167.3,93.7114 +230543,165.89,93.542 +230544,164.47,93.3874 +230545,167.35,93.9534 +230546,165.95,93.7257 +230547,164.54,93.5121 +230548,163.13,93.3131 +230549,165.99,94.0116 +230550,164.59,93.7398 +230551,163.19,93.4821 +230552,161.79,93.239 +230553,164.62,94.0696 +230554,163.24,93.7538 +230555,161.85,93.4521 +230556,160.45,93.1651 +230557,163.26,94.1273 +230558,161.88,93.7677 +230559,160.5,93.4222 +230560,159.12,93.0914 +230561,161.89,94.1847 +230562,160.53,93.7814 +230563,159.16,93.3923 +230564,157.78,93.0181 +230565,160.52,94.2418 +230566,159.17,93.795 +230567,157.81,93.3625 +230568,156.45,92.945 +230569,159.15,94.2985 +230570,157.81,93.8084 +230571,156.47,93.3327 +230572,155.12,92.8722 +230573,157.78,94.3548 +230574,156.46,93.8216 +230575,155.12,93.3031 +230576,153.79,92.7998 +230577,156.41,94.4107 +230578,155.1,93.8346 +230579,153.78,93.2735 +230580,152.46,92.7278 +230581,155.04,94.4662 +230582,153.74,93.8474 +230583,152.44,93.244 +230584,151.13,92.6563 +230585,153.67,94.5212 +230586,152.38,93.8601 +230587,151.09,93.2146 +230588,149.8,92.5852 +230589,152.29,94.5756 +230590,151.02,93.8725 +230591,149.75,93.1853 +230592,148.47,92.5146 +230593,150.92,94.6295 +230594,149.67,93.8846 +230595,148.41,93.1561 +230596,147.15,92.4445 +230597,149.54,94.6828 +230598,148.31,93.8965 +230599,147.07,93.1271 +230600,145.82,92.375 +230601,148.16,94.7354 +230602,146.95,93.9082 +230603,145.73,93.0983 +230604,144.5,92.3061 +230605,146.78,94.7875 +230606,145.59,93.9196 +230607,144.38,93.0696 +230608,143.18,92.2377 +230609,145.4,94.8388 +230610,144.23,93.9307 +230611,143.04,93.041 +230612,141.86,92.1701 +230613,144.02,94.8894 +230614,142.87,93.9416 +230615,141.7,93.0127 +230616,140.54,92.1031 +230617,142.64,94.9393 +230618,141.5,93.9521 +230619,140.36,92.9845 +230620,139.22,92.0368 +230621,141.26,94.9884 +230622,140.14,93.9624 +230623,139.02,92.9565 +230624,137.9,91.9712 +230625,139.87,95.0367 +230626,138.78,93.9723 +230627,137.68,92.9288 +230628,136.58,91.9064 +230629,138.49,95.0842 +230630,137.42,93.9819 +230631,136.34,92.9012 +230632,135.26,91.8423 +230633,137.1,95.1308 +230634,136.06,93.9912 +230635,135.01,92.8739 +230636,133.95,91.7791 +230637,135.72,95.1765 +230638,134.7,94.0001 +230639,133.67,92.8469 +230640,132.63,91.7167 +230641,134.33,95.2213 +230642,133.33,94.0087 +230643,132.33,92.82 +230644,131.32,91.6551 +230645,132.94,95.2652 +230646,131.97,94.0169 +230647,130.99,92.7934 +230648,130,91.5945 +230649,131.55,95.308 +230650,130.61,94.0247 +230651,129.65,92.7671 +230652,128.69,91.5348 +230653,130.16,95.3499 +230654,129.24,94.0322 +230655,128.32,92.7411 +230656,127.38,91.476 +230657,128.77,95.3907 +230658,127.88,94.0393 +230659,126.98,92.7153 +230660,126.07,91.4181 +230661,127.38,95.4305 +230662,126.52,94.046 +230663,125.64,92.6899 +230664,124.76,91.3613 +230665,125.99,95.4692 +230666,125.15,94.0523 +230667,124.31,92.6647 +230668,123.45,91.3054 +230669,124.6,95.5068 +230670,123.79,94.0581 +230671,122.97,92.6398 +230672,122.14,91.2506 +230673,123.2,95.5432 +230674,122.42,94.0636 +230675,121.63,92.6152 +230676,120.83,91.1968 +230677,121.81,95.5785 +230678,121.06,94.0686 +230679,120.3,92.591 +230680,119.53,91.1441 +230681,120.42,95.6126 +230682,119.69,94.0732 +230683,118.96,92.5671 +230684,118.22,91.0925 +230685,119.02,95.6455 +230686,118.33,94.0774 +230687,117.63,92.5435 +230688,116.92,91.0419 +230689,117.62,95.6771 +230690,116.96,94.0811 +230691,116.29,92.5202 +230692,115.61,90.99255 +230693,116.23,95.7076 +230694,115.6,94.0843 +230695,114.96,92.4973 +230696,114.31,90.94431 +230697,114.83,95.7367 +230698,114.23,94.0871 +230699,113.62,92.4748 +230700,113,90.89724 +230701,113.43,95.7645 +230702,112.87,94.0894 +230703,112.29,92.4526 +230704,111.7,90.85134 +230705,112.03,95.7911 +230706,111.5,94.0913 +230707,110.95,92.4307 +230708,110.4,90.80665 +230709,110.64,95.8163 +230710,110.14,94.0926 +230711,109.62,92.4093 +230712,109.09,90.76317 +230713,109.24,95.8401 +230714,108.77,94.0935 +230715,108.29,92.3882 +230716,107.79,90.72092 +230717,107.84,95.8626 +230718,107.4,94.0939 +230719,106.95,92.3675 +230720,106.49,90.67992 +230721,106.44,95.8837 +230722,106.04,94.0938 +230723,105.62,92.3472 +230724,105.19,90.64017 +230725,105.04,95.9034 +230726,104.67,94.0932 +230727,104.29,92.3272 +230728,103.89,90.6017 +230729,103.64,95.9216 +230730,103.3,94.0921 +230731,102.95,92.3077 +230732,102.59,90.56451 +230733,102.24,95.9384 +230734,101.94,94.0904 +230735,101.62,92.2886 +230736,101.29,90.52862 +230737,100.83,95.9538 +230738,100.57,94.0883 +230739,100.29,92.2699 +230740,99.989,90.49404 +230741,99.433,95.9677 +230742,99.203,94.0856 +230743,98.955,92.2515 +230744,98.69,90.46078 +230745,98.031,95.9801 +230746,97.836,94.0824 +230747,97.622,92.2336 +230748,97.391,90.42885 +230749,96.63,95.991 +230750,96.469,94.0787 +230751,96.289,92.2161 +230752,96.092,90.39826 +230753,95.228,96.0004 +230754,95.102,94.0745 +230755,94.957,92.1991 +230756,94.794,90.36901 +230757,93.826,96.0083 +230758,93.735,94.0697 +230759,93.625,92.1824 +230760,93.496,90.34112 +230761,92.423,96.0147 +230762,92.368,94.0644 +230763,92.292,92.1662 +230764,92.197,90.3146 +230765,91.021,96.0195 +230766,91.001,94.0585 +230767,90.96,92.1504 +230768,90.899,90.28945 +230769,89.619,96.0228 +230770,89.634,94.0521 +230771,89.628,92.135 +230772,89.601,90.26567 +230773,88.216,96.0246 +230774,88.267,94.0451 +230775,88.295,92.1201 +230776,88.304,90.24327 +230777,86.814,96.0247 +230778,86.9,94.0376 +230779,86.963,92.1056 +230780,87.006,90.22227 +230781,85.412,96.0234 +230782,85.533,94.0296 +230783,85.631,92.0915 +230784,85.708,90.20265 +230785,84.009,96.0204 +230786,84.166,94.021 +230787,84.299,92.0779 +230788,84.41,90.18442 +230789,82.607,96.0159 +230790,82.8,94.0119 +230791,82.967,92.0647 +230792,83.113,90.16759 +230793,81.205,96.0098 +230794,81.433,94.0022 +230795,81.635,92.0519 +230796,81.815,90.15216 +230797,79.804,96.0021 +230798,80.066,93.9919 +230799,80.303,92.0396 +230800,80.517,90.13813 +230801,78.402,95.9928 +230802,78.699,93.9811 +230803,78.97,92.0277 +230804,79.219,90.12549 +230805,77,95.9819 +230806,77.333,93.9698 +230807,77.638,92.0163 +230808,77.921,90.11426 +230809,75.599,95.9695 +230810,75.966,93.9579 +230811,76.306,92.0052 +230812,76.622,90.10442 +230813,74.198,95.9555 +230814,74.6,93.9454 +230815,74.974,91.9947 +230816,75.324,90.095977 +230817,72.798,95.9399 +230818,73.234,93.9324 +230819,73.641,91.9845 +230820,74.025,90.08893 +230821,71.398,95.9227 +230822,71.868,93.9188 +230823,72.309,91.9748 +230824,72.726,90.083273 +230825,69.998,95.9039 +230826,70.502,93.9047 +230827,70.977,91.9656 +230828,71.427,90.079003 +230829,68.598,95.8835 +230830,69.136,93.8901 +230831,69.644,91.9568 +230832,70.127,90.076115 +230833,67.199,95.8616 +230834,67.77,93.8749 +230835,68.311,91.9484 +230836,68.828,90.074605 +230837,65.801,95.8382 +230838,66.405,93.8591 +230839,66.979,91.9404 +230840,67.527,90.074466 +230841,64.403,95.8131 +230842,65.039,93.8429 +230843,65.646,91.9329 +230844,66.227,90.075691 +230845,63.005,95.7865 +230846,63.674,93.826 +230847,64.313,91.9258 +230848,64.926,90.078274 +230849,61.608,95.7584 +230850,62.309,93.8087 +230851,62.98,91.9191 +230852,63.624,90.082207 +230853,60.211,95.7288 +230854,60.944,93.7908 +230855,61.646,91.9128 +230856,62.322,90.087481 +230857,58.815,95.6976 +230858,59.58,93.7724 +230859,60.313,91.907 +230860,61.02,90.094087 +230861,57.42,95.6649 +230862,58.215,93.7534 +230863,58.979,91.9016 +230864,59.717,90.10202 +230865,56.025,95.6307 +230866,56.851,93.7339 +230867,57.646,91.8965 +230868,58.414,90.11125 +230869,54.631,95.5951 +230870,55.487,93.7139 +230871,56.312,91.8919 +230872,57.11,90.12179 +230873,53.238,95.5579 +230874,54.124,93.6934 +230875,54.978,91.8877 +230876,55.805,90.13362 +230877,51.845,95.5193 +230878,52.76,93.6724 +230879,53.643,91.8839 +230880,54.5,90.14673 +230881,50.454,95.4793 +230882,51.397,93.6509 +230883,52.309,91.8805 +230884,53.194,90.16109 +230885,49.063,95.4378 +230886,50.034,93.6289 +230887,50.974,91.8775 +230888,51.888,90.17671 +230889,47.672,95.3949 +230890,48.672,93.6064 +230891,49.639,91.8748 +230892,50.58,90.19356 +230893,46.283,95.3506 +230894,47.309,93.5834 +230895,48.304,91.8726 +230896,49.273,90.21163 +230897,44.894,95.305 +230898,45.947,93.5599 +230899,46.969,91.8707 +230900,47.964,90.23091 +230901,43.506,95.2579 +230902,44.586,93.5359 +230903,45.633,91.8692 +230904,46.655,90.25137 +230905,42.119,95.2096 +230906,43.224,93.5115 +230907,44.298,91.868 +230908,45.345,90.273 +230909,40.733,95.1599 +230910,41.863,93.4866 +230911,42.962,91.8672 +230912,44.034,90.29579 +230913,39.348,95.1089 +230914,40.502,93.4612 +230915,41.625,91.8668 +230916,42.722,90.31971 +230917,37.964,95.0567 +230918,39.142,93.4354 +230919,40.289,91.8667 +230920,41.409,90.34476 +230921,36.581,95.0032 +230922,37.782,93.4092 +230923,38.952,91.8669 +230924,40.096,90.3709 +230925,35.198,94.9484 +230926,36.422,93.3825 +230927,37.615,91.8675 +230928,38.782,90.39812 +230929,33.817,94.8925 +230930,35.062,93.3554 +230931,36.277,91.8684 +230932,37.467,90.42639 +230933,32.437,94.8353 +230934,33.703,93.3278 +230935,34.94,91.8696 +230936,36.151,90.45571 +230937,31.058,94.777 +230938,32.344,93.2999 +230939,33.602,91.8712 +230940,34.834,90.48604 +230941,29.679,94.7176 +230942,30.986,93.2715 +230943,32.264,91.873 +230944,33.516,90.51737 +230945,28.302,94.657 +230946,29.628,93.2428 +230947,30.925,91.8751 +230948,32.197,90.54968 +230949,26.926,94.5954 +230950,28.27,93.2136 +230951,29.586,91.8776 +230952,30.877,90.58293 +230953,25.551,94.5327 +230954,26.913,93.1841 +230955,28.247,91.8803 +230956,29.556,90.61711 +230957,24.177,94.4689 +230958,25.556,93.1542 +230959,26.907,91.8832 +230960,28.234,90.6522 +230961,22.805,94.4042 +230962,24.2,93.1239 +230963,25.568,91.8865 +230964,26.911,90.68816 +230965,21.433,94.3385 +230966,22.844,93.0933 +230967,24.227,91.89 +230968,25.588,90.72498 +230969,20.063,94.2719 +230970,21.488,93.0623 +230971,22.887,91.8937 +230972,24.263,90.76263 +230973,18.693,94.2043 +230974,20.133,93.031 +230975,21.546,91.8977 +230976,22.936,90.80109 +230977,17.325,94.1358 +230978,18.778,92.9993 +230979,20.205,91.9019 +230980,21.609,90.84032 +230981,15.958,94.0665 +230982,17.423,92.9674 +230983,18.863,91.9063 +230984,20.281,90.88031 +230985,14.592,93.9964 +230986,16.069,92.9351 +230987,17.522,91.911 +230988,18.952,90.92103 +230989,13.228,93.9254 +230990,14.715,92.9026 +230991,16.179,91.9158 +230992,17.621,90.96244 +230993,11.865,93.8537 +230994,13.362,92.8697 +230995,14.837,91.9208 +230996,16.29,91.0045 +230997,10.502,93.7813 +230998,12.009,92.8366 +230999,13.494,91.9261 +231000,14.957,91.0473 +231001,9.1415,93.7082 +231002,10.657,92.8032 +231003,12.151,91.9314 +231004,13.623,91.0906 +231005,7.7818,93.6344 +231006,9.3052,92.7696 +231007,10.807,91.937 +231008,12.288,91.1346 +231009,6.4234,93.5599 +231010,7.9537,92.7357 +231011,9.4628,91.9427 +231012,10.952,91.1791 +231013,5.0662,93.4849 +231014,6.6026,92.7015 +231015,8.1184,91.9486 +231016,9.6145,91.2241 +231017,3.7102,93.4092 +231018,5.252,92.6672 +231019,6.7736,91.9546 +231020,8.276,91.2696 +231021,2.3555,93.3331 +231022,3.9018,92.6326 +231023,5.4285,91.9607 +231024,6.9362,91.3156 +231025,1.0021,93.2564 +231026,2.552,92.5978 +231027,4.083,91.9669 +231028,5.5953,91.3621 +231029,359.65,93.1792 +231030,1.2027,92.5628 +231031,2.737,91.9732 +231032,4.2532,91.4089 +231033,358.3,93.1017 +231034,359.85,92.5277 +231035,1.3908,91.9797 +231036,2.9098,91.4562 +231037,356.95,93.0237 +231038,358.51,92.4923 +231039,0.044082,91.9862 +231040,1.5653,91.5038 +231041,355.6,92.9453 +231042,357.16,92.4569 +231043,358.7,91.9927 +231044,0.21952,91.5517 +231045,354.25,92.8666 +231046,355.81,92.4212 +231047,357.35,91.9994 +231048,358.87,91.5999 +231049,352.91,92.7876 +231050,354.46,92.3854 +231051,356,92.0061 +231052,357.52,91.6484 +231053,351.56,92.7083 +231054,353.12,92.3495 +231055,354.65,92.0128 +231056,356.17,91.6971 +231057,350.22,92.6288 +231058,351.77,92.3135 +231059,353.3,92.0196 +231060,354.82,91.746 +231061,348.88,92.5491 +231062,350.42,92.2774 +231063,351.96,92.0264 +231064,353.47,91.795 +231065,347.54,92.4692 +231066,349.08,92.2412 +231067,350.61,92.0332 +231068,352.12,91.8442 +231069,346.2,92.3892 +231070,347.73,92.2049 +231071,349.26,92.04 +231072,350.77,91.8935 +231073,344.86,92.3091 +231074,346.39,92.1685 +231075,347.91,92.0467 +231076,349.41,91.9429 +231077,343.52,92.2289 +231078,345.05,92.132 +231079,346.56,92.0535 +231080,348.05,91.9923 +231081,342.19,92.1487 +231082,343.7,92.0956 +231083,345.21,92.0602 +231084,346.7,92.0417 +231085,340.85,92.0685 +231086,342.36,92.059 +231087,343.85,92.0669 +231088,345.34,92.0911 +231089,339.52,91.9883 +231090,341.02,92.0225 +231091,342.5,92.0735 +231092,343.98,92.1405 +231093,338.19,91.9082 +231094,339.67,91.9859 +231095,341.15,92.0801 +231096,342.61,92.1897 +231097,336.86,91.8282 +231098,338.33,91.9494 +231099,339.8,92.0866 +231100,341.25,92.2389 +231101,335.53,91.7484 +231102,336.99,91.9128 +231103,338.45,92.0929 +231104,339.89,92.2879 +231105,334.2,91.6687 +231106,335.65,91.8763 +231107,337.09,92.0992 +231108,338.52,92.3367 +231109,332.87,91.5892 +231110,334.31,91.8398 +231111,335.74,92.1054 +231112,337.16,92.3852 +231113,331.54,91.51 +231114,332.97,91.8033 +231115,334.39,92.1115 +231116,335.79,92.4336 +231117,330.22,91.431 +231118,331.63,91.7669 +231119,333.03,92.1174 +231120,334.42,92.4816 +231121,328.89,91.3523 +231122,330.29,91.7305 +231123,331.68,92.1232 +231124,333.05,92.5294 +231125,327.57,91.274 +231126,328.95,91.6942 +231127,330.32,92.1288 +231128,331.68,92.5768 +231129,326.25,91.196 +231130,327.61,91.658 +231131,328.97,92.1343 +231132,330.31,92.6238 +231133,324.93,91.1184 +231134,326.28,91.6219 +231135,327.61,92.1396 +231136,328.94,92.6704 +231137,323.61,91.0413 +231138,324.94,91.5859 +231139,326.26,92.1447 +231140,327.56,92.7166 +231141,322.29,90.96456 +231142,323.6,91.55 +231143,324.9,92.1496 +231144,326.19,92.7623 +231145,320.98,90.88836 +231146,322.26,91.5143 +231147,323.54,92.1543 +231148,324.81,92.8076 +231149,319.66,90.81268 +231150,320.93,91.4786 +231151,322.19,92.1588 +231152,323.43,92.8523 +231153,318.34,90.73756 +231154,319.59,91.4432 +231155,320.83,92.1631 +231156,322.05,92.8964 +231157,317.03,90.66301 +231158,318.26,91.4078 +231159,319.47,92.1672 +231160,320.67,92.9399 +231161,315.72,90.58907 +231162,316.92,91.3727 +231163,318.11,92.171 +231164,319.29,92.9829 +231165,314.41,90.51578 +231166,315.59,91.3377 +231167,316.75,92.1745 +231168,317.91,93.0251 +231169,313.09,90.44315 +231170,314.25,91.3029 +231171,315.4,92.1778 +231172,316.53,93.0667 +231173,311.78,90.37122 +231174,312.92,91.2683 +231175,314.04,92.1808 +231176,315.15,93.1076 +231177,310.47,90.30001 +231178,311.58,91.234 +231179,312.68,92.1835 +231180,313.76,93.1478 +231181,309.17,90.22956 +231182,310.25,91.1998 +231183,311.32,92.186 +231184,312.38,93.1872 +231185,307.86,90.15988 +231186,308.92,91.1658 +231187,309.96,92.1881 +231188,310.99,93.2258 +231189,306.55,90.091005 +231190,307.58,91.1321 +231191,308.6,92.1899 +231192,309.61,93.2635 +231193,305.25,90.022962 +231194,306.25,91.0987 +231195,307.24,92.1914 +231196,308.22,93.3005 +231197,303.94,89.955774 +231198,304.92,91.0654 +231199,305.88,92.1926 +231200,306.83,93.3365 +231201,302.64,89.88947 +231202,303.59,91.0325 +231203,304.52,92.1934 +231204,305.44,93.3717 +231205,301.34,89.82407 +231206,302.25,90.99978 +231207,303.16,92.1939 +231208,304.05,93.4059 +231209,300.03,89.75959 +231210,300.92,90.96736 +231211,301.8,92.194 +231212,302.66,93.4391 +231213,298.73,89.69607 +231214,299.59,90.93523 +231215,300.44,92.1938 +231216,301.27,93.4714 +231217,297.43,89.63353 +231218,298.26,90.90339 +231219,299.08,92.1932 +231220,299.88,93.5027 +231221,296.13,89.57198 +231222,296.93,90.87186 +231223,297.71,92.1923 +231224,298.48,93.5329 +231225,294.83,89.51145 +231226,295.6,90.84063 +231227,296.35,92.1909 +231228,297.09,93.5621 +231229,293.53,89.45196 +231230,294.27,90.80971 +231231,294.99,92.1891 +231232,295.69,93.5902 +231233,292.24,89.39353 +231234,292.94,90.77912 +231235,293.63,92.187 +231236,294.3,93.6172 +231237,290.94,89.33618 +231238,291.61,90.74886 +231239,292.27,92.1844 +231240,292.9,93.6431 +231241,289.64,89.27993 +231242,290.28,90.71894 +231243,290.9,92.1815 +231244,291.51,93.6679 +231245,288.35,89.22481 +231246,288.95,90.68936 +231247,289.54,92.1781 +231248,290.11,93.6914 +231249,287.05,89.17081 +231250,287.62,90.66012 +231251,288.18,92.1743 +231252,288.71,93.7138 +231253,285.75,89.11798 +231254,286.29,90.63125 +231255,286.82,92.17 +231256,287.32,93.735 +231257,284.46,89.06631 +231258,284.97,90.60273 +231259,285.45,92.1653 +231260,285.92,93.755 +231261,283.17,89.01583 +231262,283.64,90.57459 +231263,284.09,92.1602 +231264,284.52,93.7737 +231265,281.87,88.9666 +231266,282.31,90.54682 +231267,282.73,92.1546 +231268,283.12,93.7911 +231269,280.58,88.9185 +231270,280.98,90.51942 +231271,281.36,92.1485 +231272,281.72,93.8072 +231273,279.29,88.8717 +231274,279.65,90.49241 +231275,280,92.142 +231276,280.32,93.8221 +231277,277.99,88.8261 +231278,278.33,90.46579 +231279,278.64,92.1351 +231280,278.92,93.8356 +231281,276.7,88.7818 +231282,277,90.43956 +231283,277.27,92.1276 +231284,277.52,93.8478 +231285,275.41,88.7387 +231286,275.67,90.41373 +231287,275.91,92.1197 +231288,276.12,93.8587 +231289,274.12,88.697 +231290,274.34,90.38831 +231291,274.55,92.1113 +231292,274.72,93.8681 +231293,272.83,88.6565 +231294,273.02,90.36329 +231295,273.18,92.1024 +231296,273.32,93.8762 +231297,271.53,88.6173 +231298,271.69,90.33868 +231299,271.82,92.093 +231300,271.92,93.8829 +231301,270.24,88.5795 +231302,270.36,90.31448 +231303,270.45,92.0831 +231304,270.52,93.8882 +231305,268.95,88.543 +231306,269.03,90.2907 +231307,269.09,92.0728 +231308,269.12,93.8921 +231309,267.66,88.5078 +231310,267.71,90.26734 +231311,267.73,92.0619 +231312,267.72,93.8946 +231313,266.37,88.4739 +231314,266.38,90.2444 +231315,266.36,92.0505 +231316,266.31,93.8956 +231317,265.08,88.4414 +231318,265.05,90.22189 +231319,265,92.0387 +231320,264.91,93.8952 +231321,263.79,88.4103 +231322,263.73,90.19981 +231323,263.64,92.0263 +231324,263.51,93.8933 +231325,262.5,88.3805 +231326,262.4,90.17816 +231327,262.27,92.0134 +231328,262.11,93.8899 +231329,261.21,88.352 +231330,261.07,90.15694 +231331,260.91,92 +231332,260.71,93.8851 +231333,259.92,88.325 +231334,259.75,90.13616 +231335,259.55,91.986 +231336,259.31,93.8788 +231337,258.63,88.2993 +231338,258.42,90.11581 +231339,258.18,91.9716 +231340,257.91,93.871 +231341,257.34,88.275 +231342,257.09,90.095896 +231343,256.82,91.9567 +231344,256.51,93.8617 +231345,256.05,88.252 +231346,255.77,90.076421 +231347,255.46,91.9412 +231348,255.11,93.8509 +231349,254.76,88.2304 +231350,254.44,90.057385 +231351,254.09,91.9252 +231352,253.71,93.8386 +231353,253.47,88.2102 +231354,253.11,90.038787 +231355,252.73,91.9087 +231356,252.31,93.8249 +231357,252.18,88.1914 +231358,251.79,90.020629 +231359,251.37,91.8917 +231360,250.91,93.8096 +231361,250.88,88.174 +231362,250.46,90.0029097 +231363,250,91.8741 +231364,249.51,93.7928 +231365,249.59,88.1579 +231366,249.13,89.98563 +231367,248.64,91.856 +231368,248.11,93.7745 +231369,248.3,88.1432 +231370,247.81,89.968788 +231371,247.28,91.8375 +231372,246.71,93.7547 +231373,247.01,88.1299 +231374,246.48,89.952384 +231375,245.92,91.8184 +231376,245.31,93.7334 +231377,245.72,88.118 +231378,245.15,89.936417 +231379,244.55,91.7987 +231380,243.91,93.7106 +231381,244.42,88.1074 +231382,243.83,89.920885 +231383,243.19,91.7786 +231384,242.52,93.6863 +231385,243.13,88.0981 +231386,242.5,89.905788 +231387,241.83,91.758 +231388,241.12,93.6604 +231389,241.84,88.0902 +231390,241.17,89.89112 +231391,240.47,91.7368 +231392,239.72,93.6332 +231393,240.54,88.0837 +231394,239.84,89.87689 +231395,239.11,91.7151 +231396,238.33,93.6044 +231397,239.25,88.0785 +231398,238.52,89.86308 +231399,237.75,91.6929 +231400,236.93,93.5741 +231401,237.95,88.0746 +231402,237.19,89.8497 +231403,236.39,91.6703 +231404,235.54,93.5424 +231405,236.66,88.0721 +231406,235.86,89.83675 +231407,235.02,91.6471 +231408,234.14,93.5092 +231409,235.36,88.0708 +231410,234.53,89.82421 +231411,233.66,91.6234 +231412,232.75,93.4745 +231413,234.06,88.0709 +231414,233.2,89.8121 +231415,232.3,91.5992 +231416,231.36,93.4384 +231417,232.77,88.0723 +231418,231.87,89.80039 +231419,230.94,91.5745 +231420,229.97,93.4009 +231421,231.47,88.0749 +231422,230.55,89.7891 +231423,229.58,91.5494 +231424,228.58,93.3619 +231425,230.17,88.0788 +231426,229.22,89.77821 +231427,228.23,91.5237 +231428,227.19,93.3215 +231429,228.87,88.084 +231430,227.89,89.76773 +231431,226.87,91.4976 +231432,225.8,93.2797 +231433,227.57,88.0904 +231434,226.56,89.75765 +231435,225.51,91.471 +231436,224.41,93.2366 +231437,226.27,88.098 +231438,225.23,89.74796 +231439,224.15,91.4439 +231440,223.02,93.192 +231441,224.97,88.1069 +231442,223.9,89.73866 +231443,222.79,91.4163 +231444,221.64,93.1461 +231445,223.67,88.117 +231446,222.57,89.72975 +231447,221.43,91.3883 +231448,220.25,93.0988 +231449,222.36,88.1282 +231450,221.24,89.72122 +231451,220.08,91.3598 +231452,218.87,93.0502 +231453,221.06,88.1407 +231454,219.91,89.71306 +231455,218.72,91.3309 +231456,217.48,93.0003 +231457,219.75,88.1543 +231458,218.58,89.70527 +231459,217.36,91.3016 +231460,216.1,92.9491 +231461,218.45,88.169 +231462,217.25,89.69784 +231463,216.01,91.2718 +231464,214.72,92.8966 +231465,217.14,88.1848 +231466,215.92,89.69078 +231467,214.65,91.2415 +231468,213.34,92.8429 +231469,215.83,88.2018 +231470,214.58,89.68406 +231471,213.29,91.2109 +231472,211.96,92.7879 +231473,214.53,88.2198 +231474,213.25,89.67769 +231475,211.94,91.1798 +231476,210.58,92.7317 +231477,213.22,88.239 +231478,211.92,89.67167 +231479,210.58,91.1483 +231480,209.2,92.6743 +231481,211.91,88.2591 +231482,210.59,89.66597 +231483,209.23,91.1164 +231484,207.82,92.6158 +231485,210.6,88.2803 +231486,209.25,89.6606 +231487,207.87,91.0841 +231488,206.45,92.556 +231489,209.28,88.3025 +231490,207.92,89.65555 +231491,206.52,91.0514 +231492,205.07,92.4952 +231493,207.97,88.3256 +231494,206.59,89.65081 +231495,205.17,91.0183 +231496,203.7,92.4332 +231497,206.66,88.3498 +231498,205.25,89.64637 +231499,203.81,90.98483 +231500,202.33,92.3702 +231501,205.34,88.3749 +231502,203.92,89.64224 +231503,202.46,90.95101 +231504,200.96,92.3061 +231505,204.02,88.4008 +231506,202.59,89.63839 +231507,201.11,90.91682 +231508,199.59,92.2409 +231509,202.71,88.4277 +231510,201.25,89.63482 +231511,199.76,90.88228 +231512,198.22,92.1748 +231513,201.39,88.4555 +231514,199.92,89.63153 +231515,198.41,90.8474 +231516,196.85,92.1076 +231517,200.07,88.4841 +231518,198.58,89.62851 +231519,197.06,90.81218 +231520,195.49,92.0395 +231521,198.75,88.5135 +231522,197.25,89.62574 +231523,195.7,90.77664 +231524,194.12,91.9705 +231525,197.43,88.5438 +231526,195.91,89.62322 +231527,194.35,90.74077 +231528,192.76,91.9006 +231529,196.1,88.5748 +231530,194.57,89.62095 +231531,193.01,90.7046 +231532,191.4,91.8298 +231533,194.78,88.6065 +231534,193.24,89.6189 +231535,191.66,90.66813 +231536,190.04,91.7581 +231537,193.45,88.639 +231538,191.9,89.61708 +231539,190.31,90.63137 +231540,188.68,91.6856 +231541,192.13,88.6722 +231542,190.56,89.61547 +231543,188.96,90.59433 +231544,187.32,91.6124 +231545,190.8,88.706 +231546,189.22,89.61407 +231547,187.61,90.55702 +231548,185.96,91.5384 +231549,189.47,88.7405 +231550,187.88,89.61287 +231551,186.26,90.51945 +231552,184.61,91.4636 +231553,188.14,88.7756 +231554,186.55,89.61185 +231555,184.92,90.48162 +231556,183.25,91.3882 +231557,186.81,88.8113 +231558,185.21,89.61101 +231559,183.57,90.44355 +231560,181.9,91.3121 +231561,185.48,88.8476 +231562,183.87,89.61034 +231563,182.23,90.40525 +231564,180.55,91.2353 +231565,184.14,88.8844 +231566,182.53,89.60983 +231567,180.88,90.36673 +231568,179.2,91.158 +231569,182.81,88.9217 +231570,181.19,89.60946 +231571,179.53,90.328 +231572,177.85,91.0801 +231573,181.47,88.9594 +231574,179.85,89.60924 +231575,178.19,90.28907 +231576,176.5,91.0016 +231577,180.13,88.9977 +231578,178.51,89.60915 +231579,176.85,90.24994 +231580,175.15,90.92262 +231581,178.8,89.03629 +231582,177.16,89.60917 +231583,175.5,90.21064 +231584,173.81,90.84316 +231585,177.46,89.07532 +231586,175.82,89.60931 +231587,174.16,90.17116 +231588,172.47,90.76326 +231589,176.11,89.11471 +231590,174.48,89.60955 +231591,172.82,90.13153 +231592,171.12,90.68294 +231593,174.77,89.15443 +231594,173.14,89.60987 +231595,171.48,90.091748 +231596,169.78,90.60225 +231597,173.43,89.19445 +231598,171.79,89.61028 +231599,170.13,90.051828 +231600,168.44,90.5212 +231601,172.08,89.23474 +231602,170.45,89.61076 +231603,168.79,90.01178 +231604,167.11,90.43985 +231605,170.74,89.27527 +231606,169.11,89.61129 +231607,167.45,89.971616 +231608,165.77,90.35821 +231609,169.39,89.31601 +231610,167.76,89.61188 +231611,166.11,89.931346 +231612,164.43,90.27632 +231613,168.04,89.35694 +231614,166.42,89.6125 +231615,164.77,89.89098 +231616,163.1,90.19422 +231617,166.69,89.39801 +231618,165.07,89.61315 +231619,163.43,89.85053 +231620,161.77,90.11193 +231621,165.34,89.43921 +231622,163.73,89.61382 +231623,162.09,89.81001 +231624,160.43,90.029499 +231625,163.98,89.48049 +231626,162.38,89.6145 +231627,160.76,89.76943 +231628,159.1,89.946951 +231629,162.63,89.52184 +231630,161.04,89.61518 +231631,159.42,89.72879 +231632,157.78,89.86432 +231633,161.28,89.56321 +231634,159.69,89.61584 +231635,158.08,89.68812 +231636,156.45,89.78164 +231637,159.92,89.60458 +231638,158.34,89.61648 +231639,156.74,89.64741 +231640,155.12,89.69894 +231641,158.56,89.64592 +231642,157,89.61708 +231643,155.41,89.60669 +231644,153.8,89.61627 +231645,157.2,89.6872 +231646,155.65,89.61765 +231647,154.07,89.56596 +231648,152.47,89.53364 +231649,155.84,89.72838 +231650,154.3,89.61815 +231651,152.74,89.52523 +231652,151.15,89.4511 +231653,154.48,89.76943 +231654,152.95,89.61859 +231655,151.4,89.48452 +231656,149.83,89.36867 +231657,153.12,89.81033 +231658,151.6,89.61896 +231659,150.07,89.44383 +231660,148.51,89.28639 +231661,151.75,89.85105 +231662,150.25,89.61924 +231663,148.73,89.40318 +231664,147.19,89.20429 +231665,150.39,89.89155 +231666,148.9,89.61943 +231667,147.4,89.36257 +231668,145.87,89.12241 +231669,149.02,89.931805 +231670,147.55,89.61951 +231671,146.06,89.32203 +231672,144.56,89.04077 +231673,147.65,89.971782 +231674,146.2,89.61947 +231675,144.73,89.28154 +231676,143.24,88.9594 +231677,146.29,90.011453 +231678,144.85,89.6193 +231679,143.4,89.24114 +231680,141.93,88.8784 +231681,144.92,90.050788 +231682,143.5,89.619 +231683,142.07,89.20083 +231684,140.62,88.7977 +231685,143.55,90.089757 +231686,142.15,89.61856 +231687,140.74,89.16061 +231688,139.3,88.7173 +231689,142.17,90.12833 +231690,140.8,89.61795 +231691,139.41,89.12051 +231692,137.99,88.6374 +231693,140.8,90.16648 +231694,139.45,89.61718 +231695,138.07,89.08052 +231696,136.69,88.5579 +231697,139.43,90.20417 +231698,138.09,89.61624 +231699,136.74,89.04067 +231700,135.38,88.4789 +231701,138.05,90.24138 +231702,136.74,89.6151 +231703,135.41,89.00095 +231704,134.07,88.4003 +231705,136.67,90.27807 +231706,135.39,89.61377 +231707,134.08,88.9614 +231708,132.76,88.3223 +231709,135.3,90.31423 +231710,134.03,89.61224 +231711,132.76,88.922 +231712,131.46,88.2449 +231713,133.92,90.34981 +231714,132.68,89.61049 +231715,131.43,88.8827 +231716,130.16,88.168 +231717,132.54,90.3848 +231718,131.33,89.60852 +231719,130.1,88.8437 +231720,128.85,88.0917 +231721,131.16,90.41916 +231722,129.97,89.60631 +231723,128.77,88.8048 +231724,127.55,88.0161 +231725,129.78,90.45286 +231726,128.62,89.60386 +231727,127.44,88.7662 +231728,126.25,87.9412 +231729,128.39,90.48589 +231730,127.26,89.60116 +231731,126.12,88.7277 +231732,124.95,87.8669 +231733,127.01,90.51821 +231734,125.91,89.59819 +231735,124.79,88.6895 +231736,123.65,87.7934 +231737,125.63,90.54979 +231738,124.55,89.59496 +231739,123.46,88.6514 +231740,122.35,87.7206 +231741,124.24,90.58061 +231742,123.2,89.59145 +231743,122.14,88.6137 +231744,121.06,87.6486 +231745,122.85,90.61064 +231746,121.84,89.58765 +231747,120.81,88.5761 +231748,119.76,87.5774 +231749,121.47,90.63987 +231750,120.49,89.58356 +231751,119.48,88.5388 +231752,118.47,87.507 +231753,120.08,90.66825 +231754,119.13,89.57916 +231755,118.16,88.5018 +231756,117.17,87.4375 +231757,118.69,90.69577 +231758,117.77,89.57446 +231759,116.83,88.465 +231760,115.88,87.3688 +231761,117.3,90.72241 +231762,116.42,89.56943 +231763,115.51,88.4286 +231764,114.59,87.3011 +231765,115.91,90.74813 +231766,115.06,89.56407 +231767,114.19,88.3924 +231768,113.29,87.2342 +231769,114.52,90.77291 +231770,113.7,89.55838 +231771,112.86,88.3565 +231772,112,87.1683 +231773,113.13,90.79674 +231774,112.34,89.55234 +231775,111.54,88.3209 +231776,110.71,87.1034 +231777,111.74,90.81959 +231778,110.99,89.54596 +231779,110.21,88.2856 +231780,109.42,87.0395 +231781,110.34,90.84144 +231782,109.63,89.53922 +231783,108.89,88.2506 +231784,108.13,86.9766 +231785,108.95,90.86225 +231786,108.27,89.53211 +231787,107.57,88.216 +231788,106.85,86.9147 +231789,107.56,90.88203 +231790,106.91,89.52463 +231791,106.25,88.1816 +231792,105.56,86.8539 +231793,106.16,90.90073 +231794,105.55,89.51677 +231795,104.92,88.1476 +231796,104.27,86.7941 +231797,104.77,90.91835 +231798,104.19,89.50853 +231799,103.6,88.114 +231800,102.98,86.7354 +231801,103.37,90.93486 +231802,102.84,89.4999 +231803,102.28,88.0807 +231804,101.7,86.6779 +231805,101.97,90.95024 +231806,101.48,89.49087 +231807,100.96,88.0478 +231808,100.41,86.6214 +231809,100.58,90.96448 +231810,100.12,89.48144 +231811,99.635,88.0152 +231812,99.128,86.5661 +231813,99.181,90.97755 +231814,98.76,89.4716 +231815,98.313,87.983 +231816,97.843,86.512 +231817,97.784,90.98945 +231818,97.401,89.46134 +231819,96.992,87.9511 +231820,96.559,86.459 +231821,96.386,91.0001 +231822,96.041,89.45067 +231823,95.671,87.9197 +231824,95.275,86.4072 +231825,94.988,91.0096 +231826,94.682,89.43957 +231827,94.35,87.8886 +231828,93.992,86.3567 +231829,93.589,91.0179 +231830,93.323,89.42804 +231831,93.029,87.8579 +231832,92.709,86.3073 +231833,92.191,91.0249 +231834,91.964,89.41607 +231835,91.708,87.8276 +231836,91.426,86.2592 +231837,90.792,91.0306 +231838,90.604,89.40367 +231839,90.388,87.7977 +231840,90.144,86.2123 +231841,89.393,91.0351 +231842,89.245,89.39083 +231843,89.067,87.7682 +231844,88.862,86.1666 +231845,87.993,91.0383 +231846,87.885,89.37754 +231847,87.747,87.7391 +231848,87.58,86.1223 +231849,86.594,91.0401 +231850,86.526,89.36379 +231851,86.426,87.7104 +231852,86.298,86.0792 +231853,85.194,91.0407 +231854,85.166,89.3496 +231855,85.106,87.6821 +231856,85.017,86.0373 +231857,83.795,91.04 +231858,83.807,89.33494 +231859,83.786,87.6542 +231860,83.735,85.9968 +231861,82.395,91.0379 +231862,82.447,89.31982 +231863,82.466,87.6268 +231864,82.454,85.9576 +231865,80.995,91.0344 +231866,81.088,89.30424 +231867,81.146,87.5998 +231868,81.173,85.9197 +231869,79.595,91.0296 +231870,79.728,89.2882 +231871,79.826,87.5732 +231872,79.892,85.8831 +231873,78.196,91.0235 +231874,78.369,89.27168 +231875,78.506,87.547 +231876,78.611,85.8478 +231877,76.796,91.016 +231878,77.01,89.25469 +231879,77.186,87.5212 +231880,77.33,85.8139 +231881,75.397,91.0071 +231882,75.651,89.23723 +231883,75.867,87.4959 +231884,76.048,85.7813 +231885,73.997,90.99678 +231886,74.291,89.2193 +231887,74.547,87.471 +231888,74.767,85.75 +231889,72.598,90.9851 +231890,72.932,89.20089 +231891,73.227,87.4466 +231892,73.486,85.7201 +231893,71.199,90.97203 +231894,71.573,89.182 +231895,71.907,87.4226 +231896,72.204,85.6915 +231897,69.801,90.95755 +231898,70.214,89.16263 +231899,70.587,87.399 +231900,70.923,85.6643 +231901,68.402,90.94168 +231902,68.856,89.14278 +231903,69.267,87.3759 +231904,69.641,85.6384 +231905,67.004,90.92439 +231906,67.497,89.12245 +231907,67.947,87.3532 +231908,68.359,85.6138 +231909,65.606,90.9057 +231910,66.139,89.10164 +231911,66.627,87.3309 +231912,67.077,85.5906 +231913,64.209,90.8856 +231914,64.78,89.08035 +231915,65.307,87.3091 +231916,65.795,85.5688 +231917,62.812,90.86408 +231918,63.422,89.05858 +231919,63.987,87.2877 +231920,64.512,85.5483 +231921,61.416,90.84116 +231922,62.064,89.03633 +231923,62.667,87.2667 +231924,63.229,85.5291 +231925,60.02,90.81682 +231926,60.706,89.0136 +231927,61.346,87.2462 +231928,61.945,85.5113 +231929,58.624,90.79107 +231930,59.349,88.9904 +231931,60.026,87.2261 +231932,60.661,85.4948 +231933,57.229,90.76392 +231934,57.991,88.9667 +231935,58.705,87.2065 +231936,59.377,85.4796 +231937,55.835,90.73536 +231938,56.634,88.9425 +231939,57.384,87.1873 +231940,58.092,85.4658 +231941,54.441,90.70541 +231942,55.277,88.9179 +231943,56.064,87.1685 +231944,56.807,85.4533 +231945,53.047,90.67405 +231946,53.92,88.8928 +231947,54.743,87.1501 +231948,55.522,85.4421 +231949,51.655,90.64131 +231950,52.564,88.8672 +231951,53.422,87.1322 +231952,54.235,85.4322 +231953,50.263,90.60718 +231954,51.207,88.8412 +231955,52.1,87.1147 +231956,52.949,85.4236 +231957,48.872,90.57168 +231958,49.851,88.8146 +231959,50.779,87.0976 +231960,51.661,85.4163 +231961,47.481,90.5348 +231962,48.496,88.7877 +231963,49.457,87.081 +231964,50.373,85.4103 +231965,46.092,90.49656 +231966,47.14,88.7602 +231967,48.135,87.0647 +231968,49.085,85.4056 +231969,44.703,90.45697 +231970,45.785,88.7323 +231971,46.813,87.0489 +231972,47.796,85.4021 +231973,43.315,90.41603 +231974,44.43,88.704 +231975,45.491,87.0335 +231976,46.506,85.3999 +231977,41.928,90.37376 +231978,43.076,88.6752 +231979,44.169,87.0185 +231980,45.215,85.399 +231981,40.541,90.33017 +231982,41.721,88.6459 +231983,42.846,87.0039 +231984,43.924,85.3992 +231985,39.156,90.28527 +231986,40.367,88.6163 +231987,41.523,86.9897 +231988,42.632,85.4007 +231989,37.771,90.23907 +231990,39.014,88.5861 +231991,40.2,86.9758 +231992,41.339,85.4034 +231993,36.388,90.19158 +231994,37.66,88.5556 +231995,38.877,86.9624 +231996,40.045,85.4072 +231997,35.005,90.14282 +231998,36.307,88.5246 +231999,37.553,86.9494 +232000,38.751,85.4123 +232001,33.624,90.092812 +232002,34.955,88.4932 +232003,36.229,86.9367 +232004,37.455,85.4185 +232005,32.243,90.041558 +232006,33.603,88.4614 +232007,34.905,86.9244 +232008,36.159,85.4259 +232009,30.864,89.98908 +232010,32.251,88.4291 +232011,33.58,86.9125 +232012,34.862,85.4343 +232013,29.485,89.935394 +232014,30.899,88.3965 +232015,32.256,86.901 +232016,33.564,85.4439 +232017,28.108,89.88052 +232018,29.548,88.3635 +232019,30.931,86.8898 +232020,32.265,85.4546 +232021,26.732,89.82447 +232022,28.197,88.33 +232023,29.605,86.879 +232024,30.965,85.4664 +232025,25.357,89.76726 +232026,26.847,88.2962 +232027,28.28,86.8685 +232028,29.663,85.4792 +232029,23.983,89.70892 +232030,25.497,88.262 +232031,26.954,86.8583 +232032,28.361,85.4931 +232033,22.61,89.64946 +232034,24.148,88.2274 +232035,25.628,86.8485 +232036,27.058,85.508 +232037,21.239,89.58891 +232038,22.799,88.1925 +232039,24.301,86.839 +232040,25.754,85.5238 +232041,19.869,89.52729 +232042,21.45,88.1571 +232043,22.974,86.8299 +232044,24.449,85.5407 +232045,18.5,89.46461 +232046,20.102,88.1215 +232047,21.647,86.821 +232048,23.143,85.5585 +232049,17.132,89.4009 +232050,18.754,88.0855 +232051,20.319,86.8125 +232052,21.836,85.5773 +232053,15.765,89.33619 +232054,17.407,88.0491 +232055,18.991,86.8042 +232056,20.527,85.597 +232057,14.4,89.27049 +232058,16.06,88.0124 +232059,17.663,86.7963 +232060,19.217,85.6175 +232061,13.036,89.20383 +232062,14.713,87.9754 +232063,16.334,86.7886 +232064,17.907,85.639 +232065,11.674,89.13624 +232066,13.367,87.9381 +232067,15.005,86.7813 +232068,16.595,85.6613 +232069,10.312,89.06773 +232070,12.022,87.9005 +232071,13.676,86.7741 +232072,15.282,85.6844 +232073,8.9523,88.9983 +232074,10.677,87.8625 +232075,12.346,86.7673 +232076,13.967,85.7083 +232077,7.5937,88.9281 +232078,9.3321,87.8243 +232079,11.016,86.7607 +232080,12.652,85.733 +232081,6.2364,88.857 +232082,7.988,87.7858 +232083,9.6852,86.7544 +232084,11.335,85.7585 +232085,4.8805,88.7851 +232086,6.6443,87.747 +232087,8.3543,86.7482 +232088,10.017,85.7847 +232089,3.526,88.7124 +232090,5.3012,87.708 +232091,7.0229,86.7424 +232092,8.698,85.8115 +232093,2.1729,88.639 +232094,3.9585,87.6687 +232095,5.6912,86.7367 +232096,7.3776,85.8391 +232097,0.8212,88.5649 +232098,2.6163,87.6291 +232099,4.3591,86.7312 +232100,6.0558,85.8673 +232101,359.47,88.49 +232102,1.2746,87.5894 +232103,3.0265,86.726 +232104,4.7328,85.8962 +232105,358.12,88.4145 +232106,359.93,87.5494 +232107,1.6936,86.7209 +232108,3.4086,85.9256 +232109,356.77,88.3383 +232110,358.59,87.5091 +232111,0.36024,86.7161 +232112,2.083,85.9556 +232113,355.43,88.2616 +232114,357.25,87.4687 +232115,359.03,86.7114 +232116,0.75609,85.9861 +232117,354.08,88.1842 +232118,355.91,87.428 +232119,357.69,86.7068 +232120,359.43,86.0172 +232121,352.74,88.1063 +232122,354.57,87.3872 +232123,356.36,86.7025 +232124,358.1,86.0488 +232125,351.4,88.0279 +232126,353.23,87.3462 +232127,355.02,86.6983 +232128,356.77,86.0808 +232129,350.06,87.949 +232130,351.9,87.305 +232131,353.69,86.6942 +232132,355.44,86.1133 +232133,348.72,87.8697 +232134,350.56,87.2637 +232135,352.35,86.6902 +232136,354.1,86.1461 +232137,347.38,87.7899 +232138,349.22,87.2222 +232139,351.02,86.6864 +232140,352.77,86.1794 +232141,346.05,87.7097 +232142,347.88,87.1806 +232143,349.68,86.6826 +232144,351.43,86.213 +232145,344.71,87.6291 +232146,346.55,87.1388 +232147,348.34,86.679 +232148,350.09,86.2469 +232149,343.38,87.5483 +232150,345.21,87.097 +232151,347,86.6755 +232152,348.75,86.2811 +232153,342.05,87.4671 +232154,343.88,87.055 +232155,345.67,86.672 +232156,347.41,86.3155 +232157,340.72,87.3856 +232158,342.54,87.0129 +232159,344.33,86.6686 +232160,346.07,86.3502 +232161,339.39,87.3039 +232162,341.21,86.9707 +232163,342.99,86.6653 +232164,344.73,86.3851 +232165,338.06,87.222 +232166,339.88,86.9285 +232167,341.65,86.662 +232168,343.39,86.4202 +232169,336.73,87.1399 +232170,338.54,86.8862 +232171,340.31,86.6588 +232172,342.04,86.4554 +232173,335.41,87.0577 +232174,337.21,86.8438 +232175,338.97,86.6556 +232176,340.69,86.4908 +232177,334.09,86.9754 +232178,335.88,86.8014 +232179,337.63,86.6524 +232180,339.35,86.5262 +232181,332.77,86.893 +232182,334.55,86.7589 +232183,336.29,86.6492 +232184,338,86.5617 +232185,331.44,86.8105 +232186,333.21,86.7164 +232187,334.95,86.6461 +232188,336.64,86.5972 +232189,330.13,86.728 +232190,331.88,86.6739 +232191,333.61,86.6429 +232192,335.29,86.6327 +232193,328.81,86.6456 +232194,330.55,86.6314 +232195,332.26,86.6397 +232196,333.94,86.6682 +232197,327.49,86.5632 +232198,329.22,86.5889 +232199,330.92,86.6365 +232200,332.58,86.7037 +232201,326.18,86.4809 +232202,327.89,86.5465 +232203,329.58,86.6332 +232204,331.23,86.739 +232205,324.86,86.3986 +232206,326.57,86.504 +232207,328.23,86.6299 +232208,329.87,86.7742 +232209,323.55,86.3166 +232210,325.24,86.4616 +232211,326.89,86.6265 +232212,328.51,86.8093 +232213,322.24,86.2347 +232214,323.91,86.4192 +232215,325.55,86.6231 +232216,327.15,86.8442 +232217,320.93,86.153 +232218,322.58,86.3769 +232219,324.2,86.6195 +232220,325.79,86.8789 +232221,319.62,86.0716 +232222,321.26,86.3347 +232223,322.86,86.6159 +232224,324.43,86.9133 +232225,318.32,85.9904 +232226,319.93,86.2925 +232227,321.51,86.6122 +232228,323.07,86.9475 +232229,317.01,85.9095 +232230,318.6,86.2505 +232231,320.17,86.6084 +232232,321.7,86.9814 +232233,315.71,85.829 +232234,317.28,86.2085 +232235,318.82,86.6044 +232236,320.33,87.015 +232237,314.4,85.7488 +232238,315.95,86.1666 +232239,317.47,86.6004 +232240,318.97,87.0482 +232241,313.1,85.669 +232242,314.63,86.1249 +232243,316.13,86.5962 +232244,317.6,87.0811 +232245,311.8,85.5896 +232246,313.3,86.0833 +232247,314.78,86.5918 +232248,316.23,87.1135 +232249,310.5,85.5107 +232250,311.98,86.0418 +232251,313.43,86.5873 +232252,314.86,87.1455 +232253,309.2,85.4323 +232254,310.66,86.0004 +232255,312.08,86.5826 +232256,313.49,87.1771 +232257,307.91,85.3544 +232258,309.33,85.9593 +232259,310.74,86.5778 +232260,312.11,87.2082 +232261,306.61,85.277 +232262,308.01,85.9183 +232263,309.39,86.5727 +232264,310.74,87.2387 +232265,305.31,85.2002 +232266,306.69,85.8774 +232267,308.04,86.5675 +232268,309.36,87.2687 +232269,304.02,85.124 +232270,305.37,85.8368 +232271,306.69,86.5621 +232272,307.99,87.2981 +232273,302.73,85.0484 +232274,304.05,85.7963 +232275,305.34,86.5565 +232276,306.61,87.327 +232277,301.44,84.9734 +232278,302.73,85.7561 +232279,303.99,86.5506 +232280,305.23,87.3552 +232281,300.15,84.8991 +232282,301.41,85.7161 +232283,302.64,86.5445 +232284,303.85,87.3828 +232285,298.86,84.8256 +232286,300.08,85.6763 +232287,301.29,86.5382 +232288,302.47,87.4097 +232289,297.57,84.7527 +232290,298.77,85.6367 +232291,299.94,86.5316 +232292,301.09,87.4359 +232293,296.28,84.6807 +232294,297.45,85.5973 +232295,298.59,86.5248 +232296,299.71,87.4614 +232297,294.99,84.6094 +232298,296.13,85.5582 +232299,297.24,86.5177 +232300,298.32,87.4861 +232301,293.71,84.5389 +232302,294.81,85.5194 +232303,295.89,86.5104 +232304,296.94,87.5101 +232305,292.42,84.4692 +232306,293.49,85.4808 +232307,294.53,86.5027 +232308,295.56,87.5332 +232309,291.14,84.4004 +232310,292.17,85.4425 +232311,293.18,86.4948 +232312,294.17,87.5556 +232313,289.85,84.3325 +232314,290.85,85.4045 +232315,291.83,86.4866 +232316,292.78,87.5771 +232317,288.57,84.2655 +232318,289.54,85.3668 +232319,290.48,86.4781 +232320,291.4,87.5977 +232321,287.29,84.1994 +232322,288.22,85.3294 +232323,289.12,86.4693 +232324,290.01,87.6175 +232325,286.01,84.1342 +232326,286.9,85.2922 +232327,287.77,86.4601 +232328,288.62,87.6363 +232329,284.73,84.07 +232330,285.59,85.2554 +232331,286.42,86.4507 +232332,287.23,87.6543 +232333,283.45,84.0068 +232334,284.27,85.2189 +232335,285.07,86.4409 +232336,285.84,87.6712 +232337,282.17,83.9446 +232338,282.95,85.1827 +232339,283.71,86.4308 +232340,284.45,87.6873 +232341,280.89,83.8834 +232342,281.64,85.1469 +232343,282.36,86.4203 +232344,283.05,87.7023 +232345,279.61,83.8233 +232346,280.32,85.1113 +232347,281,86.4095 +232348,281.66,87.7163 +232349,278.34,83.7642 +232350,279.01,85.0762 +232351,279.65,86.3983 +232352,280.27,87.7293 +232353,277.06,83.7062 +232354,277.69,85.0414 +232355,278.3,86.3868 +232356,278.88,87.7412 +232357,275.78,83.6493 +232358,276.38,85.0069 +232359,276.94,86.3749 +232360,277.48,87.7521 +232361,274.51,83.5936 +232362,275.06,84.9728 +232363,275.59,86.3626 +232364,276.09,87.7619 +232365,273.23,83.5389 +232366,273.75,84.939 +232367,274.23,86.35 +232368,274.69,87.7706 +232369,271.96,83.4854 +232370,272.43,84.9057 +232371,272.88,86.3369 +232372,273.3,87.7781 +232373,270.69,83.4331 +232374,271.12,84.8727 +232375,271.52,86.3235 +232376,271.9,87.7846 +232377,269.41,83.3819 +232378,269.8,84.8401 +232379,270.17,86.3097 +232380,270.51,87.7899 +232381,268.14,83.3319 +232382,268.49,84.8079 +232383,268.81,86.2955 +232384,269.11,87.794 +232385,266.87,83.2832 +232386,267.18,84.776 +232387,267.46,86.2809 +232388,267.71,87.797 +232389,265.59,83.2356 +232390,265.86,84.7446 +232391,266.1,86.2659 +232392,266.32,87.7988 +232393,264.32,83.1893 +232394,264.55,84.7135 +232395,264.75,86.2505 +232396,264.92,87.7994 +232397,263.05,83.1442 +232398,263.24,84.6829 +232399,263.39,86.2346 +232400,263.52,87.7988 +232401,261.78,83.1003 +232402,261.92,84.6527 +232403,262.04,86.2184 +232404,262.12,87.7969 +232405,260.5,83.0577 +232406,260.61,84.6229 +232407,260.68,86.2017 +232408,260.73,87.7938 +232409,259.23,83.0164 +232410,259.3,84.5934 +232411,259.33,86.1846 +232412,259.33,87.7895 +232413,257.96,82.9763 +232414,257.98,84.5645 +232415,257.97,86.1671 +232416,257.93,87.7839 +232417,256.69,82.9375 +232418,256.67,84.5359 +232419,256.62,86.1491 +232420,256.53,87.7771 +232421,255.42,82.9 +232422,255.36,84.5077 +232423,255.26,86.1307 +232424,255.13,87.769 +232425,254.15,82.8638 +232426,254.04,84.48 +232427,253.91,86.1119 +232428,253.74,87.7596 +232429,252.87,82.8289 +232430,252.73,84.4527 +232431,252.55,86.0926 +232432,252.34,87.7489 +232433,251.6,82.7953 +232434,251.42,84.4258 +232435,251.2,86.0729 +232436,250.94,87.7369 +232437,250.33,82.763 +232438,250.11,84.3994 +232439,249.84,86.0528 +232440,249.54,87.7237 +232441,249.06,82.732 +232442,248.79,84.3733 +232443,248.49,86.0322 +232444,248.15,87.7091 +232445,247.79,82.7023 +232446,247.48,84.3478 +232447,247.13,86.0112 +232448,246.75,87.6932 +232449,246.52,82.6739 +232450,246.17,84.3226 +232451,245.78,85.9897 +232452,245.35,87.676 +232453,245.24,82.6468 +232454,244.85,84.2979 +232455,244.42,85.9678 +232456,243.95,87.6575 +232457,243.97,82.6211 +232458,243.54,84.2736 +232459,243.07,85.9455 +232460,242.56,87.6377 +232461,242.7,82.5966 +232462,242.23,84.2497 +232463,241.72,85.9227 +232464,241.16,87.6165 +232465,241.43,82.5735 +232466,240.91,84.2263 +232467,240.36,85.8994 +232468,239.77,87.594 +232469,240.15,82.5517 +232470,239.6,84.2033 +232471,239.01,85.8757 +232472,238.37,87.5702 +232473,238.88,82.5312 +232474,238.29,84.1808 +232475,237.65,85.8516 +232476,236.98,87.5451 +232477,237.6,82.512 +232478,236.97,84.1586 +232479,236.3,85.827 +232480,235.58,87.5187 +232481,236.33,82.4941 +232482,235.66,84.1369 +232483,234.95,85.802 +232484,234.19,87.4909 +232485,235.05,82.4775 +232486,234.35,84.1157 +232487,233.6,85.7765 +232488,232.8,87.4618 +232489,233.78,82.4622 +232490,233.03,84.0948 +232491,232.24,85.7506 +232492,231.4,87.4315 +232493,232.5,82.4481 +232494,231.72,84.0744 +232495,230.89,85.7243 +232496,230.01,87.3998 +232497,231.23,82.4354 +232498,230.4,84.0544 +232499,229.54,85.6975 +232500,228.62,87.3668 +232501,229.95,82.4239 +232502,229.09,84.0349 +232503,228.18,85.6703 +232504,227.23,87.3325 +232505,228.67,82.4137 +232506,227.78,84.0157 +232507,226.83,85.6426 +232508,225.84,87.2969 +232509,227.39,82.4048 +232510,226.46,83.997 +232511,225.48,85.6146 +232512,224.45,87.26 +232513,226.11,82.3971 +232514,225.15,83.9787 +232515,224.13,85.5861 +232516,223.06,87.2218 +232517,224.83,82.3906 +232518,223.83,83.9608 +232519,222.78,85.5571 +232520,221.67,87.1824 +232521,223.55,82.3854 +232522,222.52,83.9433 +232523,221.43,85.5278 +232524,220.28,87.1416 +232525,222.27,82.3814 +232526,221.2,83.9262 +232527,220.08,85.498 +232528,218.9,87.0997 +232529,220.99,82.3785 +232530,219.88,83.9095 +232531,218.73,85.4678 +232532,217.51,87.0565 +232533,219.71,82.3769 +232534,218.57,83.8932 +232535,217.38,85.4372 +232536,216.13,87.012 +232537,218.43,82.3765 +232538,217.25,83.8773 +232539,216.03,85.4062 +232540,214.75,86.9664 +232541,217.14,82.3772 +232542,215.94,83.8618 +232543,214.68,85.3748 +232544,213.36,86.9195 +232545,215.86,82.3791 +232546,214.62,83.8467 +232547,213.33,85.343 +232548,211.98,86.8714 +232549,214.57,82.3821 +232550,213.3,83.8319 +232551,211.98,85.3108 +232552,210.6,86.8221 +232553,213.28,82.3862 +232554,211.98,83.8175 +232555,210.63,85.2783 +232556,209.22,86.7717 +232557,211.99,82.3915 +232558,210.67,83.8035 +232559,209.29,85.2453 +232560,207.84,86.7201 +232561,210.71,82.3978 +232562,209.35,83.7899 +232563,207.94,85.2119 +232564,206.47,86.6673 +232565,209.42,82.4052 +232566,208.03,83.7766 +232567,206.59,85.1782 +232568,205.09,86.6134 +232569,208.13,82.4137 +232570,206.71,83.7637 +232571,205.24,85.1441 +232572,203.71,86.5585 +232573,206.83,82.4232 +232574,205.39,83.7511 +232575,203.9,85.1097 +232576,202.34,86.5024 +232577,205.54,82.4337 +232578,204.07,83.7389 +232579,202.55,85.0749 +232580,200.97,86.4452 +232581,204.25,82.4453 +232582,202.75,83.727 +232583,201.21,85.0397 +232584,199.6,86.387 +232585,202.95,82.4578 +232586,201.43,83.7155 +232587,199.86,85.0042 +232588,198.23,86.3277 +232589,201.65,82.4713 +232590,200.11,83.7042 +232591,198.52,84.9684 +232592,196.86,86.2675 +232593,200.36,82.4857 +232594,198.79,83.6933 +232595,197.17,84.9322 +232596,195.49,86.2062 +232597,199.06,82.501 +232598,197.47,83.6827 +232599,195.83,84.8958 +232600,194.12,86.1439 +232601,197.76,82.5173 +232602,196.15,83.6724 +232603,194.49,84.859 +232604,192.76,86.0807 +232605,196.46,82.5344 +232606,194.83,83.6624 +232607,193.14,84.8218 +232608,191.39,86.0165 +232609,195.16,82.5524 +232610,193.51,83.6526 +232611,191.8,84.7844 +232612,190.03,85.9514 +232613,193.85,82.5712 +232614,192.18,83.6432 +232615,190.46,84.7467 +232616,188.67,85.8855 +232617,192.55,82.5908 +232618,190.86,83.634 +232619,189.12,84.7087 +232620,187.31,85.8186 +232621,191.24,82.6112 +232622,189.54,83.6251 +232623,187.78,84.6705 +232624,185.95,85.7509 +232625,189.94,82.6324 +232626,188.22,83.6165 +232627,186.44,84.6319 +232628,184.6,85.6824 +232629,188.63,82.6543 +232630,186.89,83.6081 +232631,185.1,84.5931 +232632,183.24,85.6131 +232633,187.32,82.677 +232634,185.57,83.6 +232635,183.76,84.5541 +232636,181.89,85.543 +232637,186.01,82.7003 +232638,184.24,83.592 +232639,182.42,84.5148 +232640,180.53,85.4721 +232641,184.69,82.7243 +232642,182.92,83.5843 +232643,181.08,84.4752 +232644,179.18,85.4006 +232645,183.38,82.749 +232646,181.59,83.5769 +232647,179.74,84.4355 +232648,177.83,85.3283 +232649,182.07,82.7742 +232650,180.26,83.5696 +232651,178.41,84.3955 +232652,176.49,85.2554 +232653,180.75,82.8001 +232654,178.94,83.5625 +232655,177.07,84.3553 +232656,175.14,85.1818 +232657,179.43,82.8265 +232658,177.61,83.5557 +232659,175.73,84.3149 +232660,173.79,85.1076 +232661,178.11,82.8534 +232662,176.28,83.549 +232663,174.4,84.2743 +232664,172.45,85.0328 +232665,176.79,82.8809 +232666,174.96,83.5425 +232667,173.06,84.2335 +232668,171.11,84.9574 +232669,175.47,82.9088 +232670,173.63,83.5361 +232671,171.73,84.1926 +232672,169.77,84.8815 +232673,174.15,82.9372 +232674,172.3,83.5299 +232675,170.39,84.1514 +232676,168.43,84.8051 +232677,172.82,82.9661 +232678,170.97,83.5239 +232679,169.06,84.1102 +232680,167.09,84.7283 +232681,171.5,82.9953 +232682,169.64,83.518 +232683,167.73,84.0688 +232684,165.75,84.6509 +232685,170.17,83.0249 +232686,168.31,83.5122 +232687,166.39,84.0272 +232688,164.42,84.5732 +232689,168.84,83.0549 +232690,166.98,83.5065 +232691,165.06,83.9855 +232692,163.09,84.4951 +232693,167.51,83.0852 +232694,165.65,83.501 +232695,163.73,83.9437 +232696,161.75,84.4166 +232697,166.18,83.1158 +232698,164.32,83.4955 +232699,162.4,83.9018 +232700,160.42,84.3377 +232701,164.85,83.1466 +232702,162.98,83.4902 +232703,161.07,83.8598 +232704,159.1,84.2586 +232705,163.51,83.1777 +232706,161.65,83.4849 +232707,159.74,83.8177 +232708,157.77,84.1792 +232709,162.18,83.209 +232710,160.32,83.4797 +232711,158.41,83.7756 +232712,156.44,84.0996 +232713,160.84,83.2404 +232714,158.99,83.4745 +232715,157.08,83.7333 +232716,155.12,84.0197 +232717,159.5,83.272 +232718,157.65,83.4694 +232719,155.75,83.691 +232720,153.8,83.9397 +232721,158.16,83.3038 +232722,156.32,83.4644 +232723,154.42,83.6487 +232724,152.48,83.8595 +232725,156.82,83.3356 +232726,154.98,83.4594 +232727,153.1,83.6063 +232728,151.16,83.7792 +232729,155.48,83.3675 +232730,153.65,83.4544 +232731,151.77,83.5639 +232732,149.84,83.6989 +232733,154.13,83.3994 +232734,152.31,83.4494 +232735,150.44,83.5215 +232736,148.52,83.6184 +232737,152.79,83.4314 +232738,150.98,83.4444 +232739,149.12,83.479 +232740,147.21,83.538 +232741,151.44,83.4633 +232742,149.64,83.4394 +232743,147.79,83.4366 +232744,145.9,83.4575 +232745,150.09,83.4952 +232746,148.3,83.4344 +232747,146.47,83.3942 +232748,144.58,83.3771 +232749,148.74,83.527 +232750,146.97,83.4294 +232751,145.14,83.3518 +232752,143.27,83.2967 +232753,147.39,83.5586 +232754,145.63,83.4243 +232755,143.82,83.3094 +232756,141.96,83.2165 +232757,146.04,83.5902 +232758,144.29,83.4192 +232759,142.5,83.2671 +232760,140.66,83.1364 +232761,144.68,83.6216 +232762,142.95,83.4141 +232763,141.17,83.2249 +232764,139.35,83.0564 +232765,143.33,83.6528 +232766,141.61,83.4088 +232767,139.85,83.1826 +232768,138.05,82.9766 +232769,141.97,83.6838 +232770,140.27,83.4035 +232771,138.53,83.1405 +232772,136.74,82.897 +232773,140.61,83.7145 +232774,138.93,83.3982 +232775,137.21,83.0985 +232776,135.44,82.8177 +232777,139.26,83.745 +232778,137.59,83.3927 +232779,135.89,83.0565 +232780,134.14,82.7387 +232781,137.89,83.7751 +232782,136.25,83.3871 +232783,134.57,83.0146 +232784,132.84,82.66 +232785,136.53,83.805 +232786,134.91,83.3814 +232787,133.25,82.9729 +232788,131.54,82.5816 +232789,135.17,83.8345 +232790,133.57,83.3756 +232791,131.93,82.9313 +232792,130.25,82.5035 +232793,133.81,83.8635 +232794,132.23,83.3697 +232795,130.61,82.8898 +232796,128.95,82.4259 +232797,132.44,83.8922 +232798,130.89,83.3636 +232799,129.29,82.8484 +232800,127.66,82.3487 +232801,131.07,83.9205 +232802,129.54,83.3574 +232803,127.97,82.8072 +232804,126.37,82.272 +232805,129.71,83.9483 +232806,128.2,83.351 +232807,126.66,82.7662 +232808,125.08,82.1957 +232809,128.34,83.9756 +232810,126.86,83.3445 +232811,125.34,82.7253 +232812,123.78,82.12 +232813,126.97,84.0024 +232814,125.51,83.3378 +232815,124.02,82.6846 +232816,122.5,82.0448 +232817,125.59,84.0286 +232818,124.17,83.3309 +232819,122.71,82.6441 +232820,121.21,81.9701 +232821,124.22,84.0543 +232822,122.82,83.3238 +232823,121.39,82.6037 +232824,119.92,81.8961 +232825,122.85,84.0794 +232826,121.48,83.3165 +232827,120.08,82.5636 +232828,118.64,81.8226 +232829,121.47,84.1039 +232830,120.13,83.309 +232831,118.76,82.5237 +232832,117.35,81.7499 +232833,120.1,84.1277 +232834,118.79,83.3013 +232835,117.45,82.484 +232836,116.07,81.6777 +232837,118.72,84.1509 +232838,117.44,83.2934 +232839,116.13,82.4446 +232840,114.79,81.6063 +232841,117.34,84.1734 +232842,116.1,83.2852 +232843,114.82,82.4053 +232844,113.51,81.5356 +232845,115.96,84.1951 +232846,114.75,83.2768 +232847,113.5,82.3664 +232848,112.23,81.4657 +232849,114.58,84.2162 +232850,113.4,83.2682 +232851,112.19,82.3277 +232852,110.95,81.3965 +232853,113.2,84.2365 +232854,112.06,83.2593 +232855,110.88,82.2892 +232856,109.67,81.3282 +232857,111.82,84.256 +232858,110.71,83.2501 +232859,109.57,82.251 +232860,108.39,81.2606 +232861,110.44,84.2747 +232862,109.36,83.2407 +232863,108.25,82.2131 +232864,107.12,81.1939 +232865,109.05,84.2926 +232866,108.01,83.2309 +232867,106.94,82.1755 +232868,105.84,81.1281 +232869,107.67,84.3097 +232870,106.67,83.2209 +232871,105.63,82.1381 +232872,104.57,81.0631 +232873,106.28,84.3259 +232874,105.32,83.2106 +232875,104.32,82.1011 +232876,103.29,80.9991 +232877,104.9,84.3412 +232878,103.97,83.2 +232879,103.01,82.0644 +232880,102.02,80.936 +232881,103.51,84.3556 +232882,102.62,83.1891 +232883,101.7,82.0279 +232884,100.75,80.8738 +232885,102.12,84.3691 +232886,101.27,83.1779 +232887,100.39,81.9918 +232888,99.477,80.8126 +232889,100.74,84.3816 +232890,99.922,83.1664 +232891,99.079,81.9561 +232892,98.207,80.7524 +232893,99.346,84.3932 +232894,98.572,83.1545 +232895,97.769,81.9206 +232896,96.937,80.6933 +232897,97.957,84.4039 +232898,97.223,83.1423 +232899,96.46,81.8855 +232900,95.668,80.6351 +232901,96.566,84.4135 +232902,95.873,83.1298 +232903,95.151,81.8508 +232904,94.4,80.578 +232905,95.175,84.4221 +232906,94.523,83.117 +232907,93.842,81.8164 +232908,93.132,80.5219 +232909,93.784,84.4297 +232910,93.173,83.1038 +232911,92.533,81.7823 +232912,91.865,80.467 +232913,92.392,84.4362 +232914,91.823,83.0902 +232915,91.225,81.7486 +232916,90.598,80.4131 +232917,90.999,84.4417 +232918,90.472,83.0763 +232919,89.916,81.7153 +232920,89.332,80.3603 +232921,89.606,84.4461 +232922,89.122,83.062 +232923,88.608,81.6823 +232924,88.066,80.3087 +232925,88.212,84.4495 +232926,87.771,83.0473 +232927,87.3,81.6498 +232928,86.801,80.2582 +232929,86.818,84.4517 +232930,86.42,83.0323 +232931,85.993,81.6176 +232932,85.536,80.2089 +232933,85.424,84.4528 +232934,85.069,83.0169 +232935,84.685,81.5857 +232936,84.271,80.1607 +232937,84.029,84.4528 +232938,83.718,83.0012 +232939,83.378,81.5543 +232940,83.007,80.1137 +232941,82.634,84.4517 +232942,82.367,82.985 +232943,82.07,81.5233 +232944,81.743,80.0679 +232945,81.239,84.4494 +232946,81.016,82.9685 +232947,80.763,81.4927 +232948,80.48,80.0233 +232949,79.843,84.446 +232950,79.665,82.9515 +232951,79.456,81.4624 +232952,79.216,79.98 +232953,78.448,84.4414 +232954,78.314,82.9342 +232955,78.149,81.4326 +232956,77.953,79.938 +232957,77.052,84.4356 +232958,76.963,82.9165 +232959,76.842,81.4032 +232960,76.691,79.897 +232961,75.656,84.4286 +232962,75.611,82.8983 +232963,75.535,81.3741 +232964,75.428,79.857 +232965,74.259,84.4204 +232966,74.26,82.8798 +232967,74.228,81.3455 +232968,74.165,79.819 +232969,72.863,84.411 +232970,72.909,82.8609 +232971,72.922,81.3173 +232972,72.903,79.781 +232973,71.467,84.4004 +232974,71.558,82.8415 +232975,71.615,81.2896 +232976,71.64,79.745 +232977,70.07,84.3886 +232978,70.206,82.8218 +232979,70.308,81.2622 +232980,70.378,79.711 +232981,68.674,84.3756 +232982,68.855,82.8016 +232983,69.002,81.2353 +232984,69.115,79.677 +232985,67.278,84.3613 +232986,67.504,82.7811 +232987,67.695,81.2088 +232988,67.853,79.645 +232989,65.882,84.3458 +232990,66.153,82.7601 +232991,66.389,81.1827 +232992,66.59,79.614 +232993,64.486,84.3291 +232994,64.802,82.7387 +232995,65.082,81.157 +232996,65.327,79.585 +232997,63.09,84.3111 +232998,63.451,82.7169 +232999,63.775,81.1318 +233000,64.065,79.556 +233001,61.694,84.2919 +233002,62.1,82.6946 +233003,62.469,81.1069 +233004,62.801,79.529 +233005,60.299,84.2714 +233006,60.75,82.672 +233007,61.162,81.0825 +233008,61.538,79.503 +233009,58.903,84.2497 +233010,59.399,82.6489 +233011,59.855,81.0586 +233012,60.275,79.479 +233013,57.509,84.2267 +233014,58.049,82.6254 +233015,58.548,81.035 +233016,59.011,79.456 +233017,56.114,84.2025 +233018,56.698,82.6015 +233019,57.241,81.0119 +233020,57.747,79.434 +233021,54.72,84.177 +233022,55.348,82.5772 +233023,55.934,80.9892 +233024,56.482,79.413 +233025,53.326,84.1503 +233026,53.998,82.5525 +233027,54.627,80.967 +233028,55.217,79.394 +233029,51.933,84.1224 +233030,52.649,82.5273 +233031,53.32,80.9451 +233032,53.952,79.376 +233033,50.54,84.0931 +233034,51.299,82.5017 +233035,52.013,80.9237 +233036,52.686,79.359 +233037,49.148,84.0627 +233038,49.949,82.4758 +233039,50.705,80.9027 +233040,51.42,79.343 +233041,47.756,84.031 +233042,48.6,82.4494 +233043,49.398,80.8821 +233044,50.154,79.329 +233045,46.365,83.9981 +233046,47.251,82.4226 +233047,48.09,80.862 +233048,48.886,79.316 +233049,44.974,83.9639 +233050,45.903,82.3953 +233051,46.782,80.8422 +233052,47.618,79.304 +233053,43.585,83.9286 +233054,44.554,82.3677 +233055,45.474,80.8229 +233056,46.35,79.293 +233057,42.195,83.892 +233058,43.206,82.3397 +233059,44.166,80.804 +233060,45.081,79.284 +233061,40.807,83.8542 +233062,41.858,82.3113 +233063,42.857,80.7854 +233064,43.811,79.276 +233065,39.419,83.8152 +233066,40.51,82.2825 +233067,41.548,80.7673 +233068,42.541,79.269 +233069,38.032,83.775 +233070,39.162,82.2532 +233071,40.239,80.7496 +233072,41.27,79.263 +233073,36.646,83.7336 +233074,37.815,82.2236 +233075,38.93,80.7323 +233076,39.998,79.258 +233077,35.261,83.691 +233078,36.468,82.1936 +233079,37.621,80.7154 +233080,38.725,79.255 +233081,33.877,83.6473 +233082,35.122,82.1633 +233083,36.311,80.6989 +233084,37.452,79.253 +233085,32.493,83.6024 +233086,33.776,82.1325 +233087,35.001,80.6827 +233088,36.178,79.252 +233089,31.111,83.5564 +233090,32.43,82.1013 +233091,33.691,80.667 +233092,34.903,79.252 +233093,29.729,83.5092 +233094,31.084,82.0698 +233095,32.381,80.6516 +233096,33.627,79.253 +233097,28.348,83.4609 +233098,29.739,82.0379 +233099,31.07,80.6366 +233100,32.35,79.255 +233101,26.969,83.4115 +233102,28.394,82.0057 +233103,29.759,80.622 +233104,31.072,79.259 +233105,25.59,83.361 +233106,27.05,81.9731 +233107,28.448,80.6077 +233108,29.793,79.263 +233109,24.213,83.3095 +233110,25.706,81.9401 +233111,27.136,80.5938 +233112,28.513,79.269 +233113,22.837,83.2568 +233114,24.362,81.9068 +233115,25.824,80.5803 +233116,27.232,79.275 +233117,21.462,83.2031 +233118,23.019,81.8732 +233119,24.512,80.5671 +233120,25.95,79.283 +233121,20.088,83.1484 +233122,21.676,81.8392 +233123,23.199,80.5542 +233124,24.668,79.291 +233125,18.715,83.0927 +233126,20.333,81.8048 +233127,21.886,80.5417 +233128,23.384,79.301 +233129,17.343,83.0359 +233130,18.991,81.7702 +233131,20.573,80.5295 +233132,22.098,79.312 +233133,15.973,82.9782 +233134,17.649,81.7352 +233135,19.259,80.5176 +233136,20.812,79.323 +233137,14.604,82.9195 +233138,16.308,81.6999 +233139,17.945,80.5061 +233140,19.525,79.336 +233141,13.236,82.8599 +233142,14.967,81.6643 +233143,16.631,80.4948 +233144,18.236,79.349 +233145,11.869,82.7993 +233146,13.627,81.6284 +233147,15.316,80.4839 +233148,16.946,79.363 +233149,10.504,82.7378 +233150,12.287,81.5922 +233151,14.001,80.4733 +233152,15.655,79.378 +233153,9.1405,82.6755 +233154,10.948,81.5557 +233155,12.685,80.4629 +233156,14.363,79.394 +233157,7.778,82.6122 +233158,9.6089,81.519 +233159,11.369,80.4529 +233160,13.07,79.411 +233161,6.417,82.5482 +233162,8.2705,81.4819 +233163,10.053,80.4431 +233164,11.775,79.429 +233165,5.0573,82.4833 +233166,6.9325,81.4446 +233167,8.7363,80.4336 +233168,10.479,79.447 +233169,3.6991,82.4176 +233170,5.595,81.4071 +233171,7.4191,80.4243 +233172,9.1818,79.467 +233173,2.3424,82.3511 +233174,4.258,81.3693 +233175,6.1014,80.4154 +233176,7.8832,79.487 +233177,0.98705,82.2839 +233178,2.9215,81.3312 +233179,4.7834,80.4066 +233180,6.5832,79.507 +233181,359.63,82.2159 +233182,1.5855,81.2929 +233183,3.4649,80.3981 +233184,5.2819,79.529 +233185,358.28,82.1472 +233186,0.24996,81.2544 +233187,2.146,80.3898 +233188,3.9793,79.551 +233189,356.93,82.0779 +233190,358.91,81.2157 +233191,0.82663,80.3818 +233192,2.6753,79.573 +233193,355.58,82.0078 +233194,357.58,81.1767 +233195,359.51,80.3739 +233196,1.3699,79.597 +233197,354.23,81.9372 +233198,356.25,81.1376 +233199,358.19,80.3663 +233200,0.063088,79.621 +233201,352.89,81.8659 +233202,354.91,81.0982 +233203,356.87,80.3589 +233204,358.75,79.645 +233205,351.54,81.7941 +233206,353.58,81.0587 +233207,355.54,80.3516 +233208,357.45,79.67 +233209,350.2,81.7217 +233210,352.25,81.019 +233211,354.22,80.3446 +233212,356.13,79.696 +233213,348.86,81.6487 +233214,350.92,80.9791 +233215,352.9,80.3377 +233216,354.82,79.722 +233217,347.52,81.5753 +233218,349.58,80.9391 +233219,351.58,80.331 +233220,353.51,79.748 +233221,346.18,81.5013 +233222,348.25,80.8989 +233223,350.26,80.3244 +233224,352.19,79.775 +233225,344.84,81.427 +233226,346.92,80.8585 +233227,348.93,80.318 +233228,350.88,79.802 +233229,343.51,81.3522 +233230,345.59,80.8181 +233231,347.61,80.3117 +233232,349.56,79.83 +233233,342.17,81.277 +233234,344.27,80.7775 +233235,346.28,80.3055 +233236,348.24,79.858 +233237,340.84,81.2014 +233238,342.94,80.7368 +233239,344.96,80.2995 +233240,346.92,79.886 +233241,339.51,81.1255 +233242,341.61,80.696 +233243,343.63,80.2935 +233244,345.59,79.915 +233245,338.18,81.0493 +233246,340.28,80.6551 +233247,342.31,80.2877 +233248,344.27,79.944 +233249,336.86,80.9728 +233250,338.95,80.6141 +233251,340.98,80.282 +233252,342.94,79.973 +233253,335.53,80.8961 +233254,337.63,80.5731 +233255,339.65,80.2763 +233256,341.62,80.0028 +233257,334.21,80.8191 +233258,336.3,80.5319 +233259,338.33,80.2707 +233260,340.29,80.0325 +233261,332.88,80.7419 +233262,334.98,80.4908 +233263,337,80.2652 +233264,338.96,80.0623 +233265,331.56,80.6646 +233266,333.65,80.4495 +233267,335.67,80.2597 +233268,337.63,80.0922 +233269,330.24,80.5871 +233270,332.33,80.4083 +233271,334.34,80.2543 +233272,336.29,80.1223 +233273,328.93,80.5096 +233274,331,80.367 +233275,333.01,80.2489 +233276,334.96,80.1524 +233277,327.61,80.4319 +233278,329.68,80.3257 +233279,331.68,80.2435 +233280,333.62,80.1826 +233281,326.3,80.3542 +233282,328.36,80.2843 +233283,330.35,80.2381 +233284,332.28,80.2128 +233285,324.98,80.2765 +233286,327.04,80.243 +233287,329.02,80.2328 +233288,330.95,80.243 +233289,323.67,80.1988 +233290,325.72,80.2017 +233291,327.69,80.2274 +233292,329.61,80.2732 +233293,322.36,80.1211 +233294,324.39,80.1604 +233295,326.36,80.2221 +233296,328.26,80.3033 +233297,321.06,80.0435 +233298,323.07,80.1192 +233299,325.03,80.2167 +233300,326.92,80.3333 +233301,319.75,79.966 +233302,321.75,80.0779 +233303,323.69,80.2113 +233304,325.58,80.3633 +233305,318.44,79.889 +233306,320.43,80.0368 +233307,322.36,80.2058 +233308,324.23,80.393 +233309,317.14,79.811 +233310,319.12,79.996 +233311,321.03,80.2003 +233312,322.88,80.4226 +233313,315.84,79.734 +233314,317.8,79.955 +233315,319.69,80.1947 +233316,321.53,80.452 +233317,314.54,79.658 +233318,316.48,79.914 +233319,318.36,80.1891 +233320,320.18,80.4812 +233321,313.24,79.581 +233322,315.16,79.873 +233323,317.02,80.1834 +233324,318.83,80.5102 +233325,311.94,79.505 +233326,313.85,79.832 +233327,315.69,80.1775 +233328,317.48,80.5388 +233329,310.65,79.429 +233330,312.53,79.791 +233331,314.35,80.1716 +233332,316.12,80.5672 +233333,309.35,79.353 +233334,311.21,79.751 +233335,313.02,80.1656 +233336,314.77,80.5952 +233337,308.06,79.278 +233338,309.9,79.71 +233339,311.68,80.1595 +233340,313.41,80.6229 +233341,306.77,79.203 +233342,308.58,79.67 +233343,310.34,80.1533 +233344,312.05,80.6502 +233345,305.48,79.128 +233346,307.27,79.63 +233347,309.01,80.1469 +233348,310.69,80.677 +233349,304.19,79.054 +233350,305.96,79.59 +233351,307.67,80.1404 +233352,309.33,80.7035 +233353,302.9,78.981 +233354,304.64,79.55 +233355,306.33,80.1337 +233356,307.96,80.7294 +233357,301.62,78.908 +233358,303.33,79.51 +233359,304.99,80.1269 +233360,306.6,80.7549 +233361,300.33,78.835 +233362,302.02,79.471 +233363,303.65,80.1199 +233364,305.24,80.7799 +233365,299.05,78.763 +233366,300.71,79.432 +233367,302.31,80.1127 +233368,303.87,80.8044 +233369,297.77,78.692 +233370,299.39,79.392 +233371,300.97,80.1054 +233372,302.5,80.8283 +233373,296.49,78.621 +233374,298.08,79.354 +233375,299.63,80.0978 +233376,301.13,80.8516 +233377,295.21,78.551 +233378,296.77,79.315 +233379,298.29,80.0901 +233380,299.76,80.8743 +233381,293.93,78.481 +233382,295.46,79.276 +233383,296.95,80.0821 +233384,298.39,80.8963 +233385,292.65,78.412 +233386,294.15,79.238 +233387,295.61,80.0739 +233388,297.02,80.9178 +233389,291.38,78.344 +233390,292.84,79.2 +233391,294.27,80.0655 +233392,295.64,80.9385 +233393,290.1,78.277 +233394,291.53,79.162 +233395,292.92,80.0569 +233396,294.27,80.9585 +233397,288.83,78.21 +233398,290.23,79.125 +233399,291.58,80.0481 +233400,292.89,80.9779 +233401,287.55,78.144 +233402,288.92,79.088 +233403,290.24,80.039 +233404,291.52,80.9964 +233405,286.28,78.079 +233406,287.61,79.051 +233407,288.9,80.0296 +233408,290.14,81.0143 +233409,285.01,78.015 +233410,286.3,79.014 +233411,287.55,80.02 +233412,288.76,81.0313 +233413,283.74,77.952 +233414,285,78.977 +233415,286.21,80.0101 +233416,287.38,81.0475 +233417,282.47,77.889 +233418,283.69,78.941 +233419,284.86,80 +233420,286,81.0629 +233421,281.21,77.828 +233422,282.38,78.905 +233423,283.52,79.989 +233424,284.62,81.0775 +233425,279.94,77.767 +233426,281.08,78.87 +233427,282.18,79.979 +233428,283.24,81.0912 +233429,278.67,77.707 +233430,279.77,78.835 +233431,280.83,79.968 +233432,281.85,81.104 +233433,277.41,77.648 +233434,278.47,78.8 +233435,279.49,79.956 +233436,280.47,81.1159 +233437,276.14,77.59 +233438,277.16,78.765 +233439,278.14,79.945 +233440,279.08,81.1269 +233441,274.88,77.533 +233442,275.86,78.731 +233443,276.79,79.933 +233444,277.7,81.137 +233445,273.62,77.478 +233446,274.55,78.697 +233447,275.45,79.921 +233448,276.31,81.1461 +233449,272.36,77.423 +233450,273.25,78.663 +233451,274.1,79.908 +233452,274.92,81.1542 +233453,271.09,77.369 +233454,271.94,78.63 +233455,272.76,79.895 +233456,273.53,81.1614 +233457,269.83,77.316 +233458,270.64,78.597 +233459,271.41,79.882 +233460,272.15,81.1675 +233461,268.57,77.264 +233462,269.34,78.565 +233463,270.06,79.868 +233464,270.76,81.1727 +233465,267.32,77.214 +233466,268.03,78.533 +233467,268.72,79.854 +233468,269.37,81.1768 +233469,266.06,77.164 +233470,266.73,78.501 +233471,267.37,79.84 +233472,267.98,81.1799 +233473,264.8,77.116 +233474,265.43,78.469 +233475,266.02,79.825 +233476,266.58,81.1819 +233477,263.54,77.069 +233478,264.12,78.438 +233479,264.67,79.81 +233480,265.19,81.1829 +233481,262.28,77.023 +233482,262.82,78.408 +233483,263.33,79.795 +233484,263.8,81.1828 +233485,261.03,76.978 +233486,261.52,78.377 +233487,261.98,79.779 +233488,262.41,81.1815 +233489,259.77,76.934 +233490,260.22,78.348 +233491,260.63,79.763 +233492,261.02,81.1792 +233493,258.51,76.891 +233494,258.91,78.318 +233495,259.28,79.747 +233496,259.62,81.1758 +233497,257.26,76.85 +233498,257.61,78.289 +233499,257.94,79.73 +233500,258.23,81.1713 +233501,256,76.809 +233502,256.31,78.26 +233503,256.59,79.713 +233504,256.83,81.1656 +233505,254.75,76.77 +233506,255.01,78.232 +233507,255.24,79.695 +233508,255.44,81.1587 +233509,253.49,76.732 +233510,253.71,78.204 +233511,253.89,79.677 +233512,254.05,81.1508 +233513,252.24,76.696 +233514,252.41,78.176 +233515,252.54,79.659 +233516,252.65,81.1416 +233517,250.98,76.66 +233518,251.1,78.149 +233519,251.2,79.64 +233520,251.26,81.1314 +233521,249.73,76.626 +233522,249.8,78.123 +233523,249.85,79.621 +233524,249.86,81.1199 +233525,248.47,76.593 +233526,248.5,78.096 +233527,248.5,79.601 +233528,248.47,81.1073 +233529,247.22,76.562 +233530,247.2,78.07 +233531,247.15,79.581 +233532,247.07,81.0934 +233533,245.96,76.531 +233534,245.9,78.045 +233535,245.8,79.561 +233536,245.67,81.0784 +233537,244.71,76.502 +233538,244.6,78.02 +233539,244.46,79.54 +233540,244.28,81.0622 +233541,243.45,76.474 +233542,243.3,77.995 +233543,243.11,79.519 +233544,242.88,81.0449 +233545,242.2,76.447 +233546,242,77.971 +233547,241.76,79.498 +233548,241.49,81.0263 +233549,240.94,76.422 +233550,240.69,77.947 +233551,240.41,79.476 +233552,240.09,81.0065 +233553,239.69,76.398 +233554,239.39,77.924 +233555,239.06,79.453 +233556,238.7,80.9855 +233557,238.43,76.375 +233558,238.09,77.901 +233559,237.72,79.431 +233560,237.3,80.9633 +233561,237.18,76.353 +233562,236.79,77.878 +233563,236.37,79.408 +233564,235.91,80.94 +233565,235.92,76.332 +233566,235.49,77.856 +233567,235.02,79.384 +233568,234.52,80.9154 +233569,234.67,76.313 +233570,234.19,77.834 +233571,233.67,79.36 +233572,233.12,80.8896 +233573,233.41,76.295 +233574,232.89,77.813 +233575,232.33,79.336 +233576,231.73,80.8626 +233577,232.15,76.279 +233578,231.58,77.792 +233579,230.98,79.311 +233580,230.34,80.8344 +233581,230.9,76.263 +233582,230.28,77.772 +233583,229.63,79.286 +233584,228.94,80.8051 +233585,229.64,76.249 +233586,228.98,77.752 +233587,228.29,79.26 +233588,227.55,80.7745 +233589,228.38,76.236 +233590,227.68,77.732 +233591,226.94,79.235 +233592,226.16,80.7428 +233593,227.12,76.224 +233594,226.38,77.713 +233595,225.59,79.208 +233596,224.77,80.7098 +233597,225.86,76.213 +233598,225.07,77.694 +233599,224.25,79.182 +233600,223.38,80.6757 +233601,224.6,76.204 +233602,223.77,77.676 +233603,222.9,79.155 +233604,221.99,80.6405 +233605,223.34,76.196 +233606,222.47,77.658 +233607,221.55,79.127 +233608,220.6,80.604 +233609,222.08,76.189 +233610,221.16,77.64 +233611,220.21,79.099 +233612,219.21,80.5664 +233613,220.82,76.183 +233614,219.86,77.623 +233615,218.86,79.071 +233616,217.82,80.5277 +233617,219.55,76.178 +233618,218.56,77.606 +233619,217.52,79.042 +233620,216.43,80.4878 +233621,218.29,76.175 +233622,217.25,77.589 +233623,216.17,79.013 +233624,215.04,80.4468 +233625,217.03,76.172 +233626,215.95,77.573 +233627,214.83,78.984 +233628,213.66,80.4046 +233629,215.76,76.171 +233630,214.65,77.558 +233631,213.49,78.954 +233632,212.27,80.3614 +233633,214.5,76.171 +233634,213.34,77.542 +233635,212.14,78.924 +233636,210.89,80.317 +233637,213.23,76.172 +233638,212.04,77.527 +233639,210.8,78.894 +233640,209.51,80.2715 +233641,211.96,76.174 +233642,210.73,77.513 +233643,209.46,78.863 +233644,208.12,80.225 +233645,210.69,76.177 +233646,209.43,77.499 +233647,208.11,78.832 +233648,206.74,80.1774 +233649,209.42,76.181 +233650,208.12,77.485 +233651,206.77,78.8 +233652,205.36,80.1287 +233653,208.15,76.187 +233654,206.82,77.471 +233655,205.43,78.768 +233656,203.98,80.079 +233657,206.88,76.193 +233658,205.51,77.458 +233659,204.09,78.736 +233660,202.6,80.0283 +233661,205.61,76.2 +233662,204.2,77.445 +233663,202.74,78.704 +233664,201.23,79.977 +233665,204.34,76.209 +233666,202.9,77.433 +233667,201.4,78.671 +233668,199.85,79.924 +233669,203.06,76.218 +233670,201.59,77.421 +233671,200.06,78.638 +233672,198.47,79.87 +233673,201.79,76.228 +233674,200.28,77.409 +233675,198.72,78.604 +233676,197.1,79.815 +233677,200.51,76.239 +233678,198.97,77.397 +233679,197.38,78.571 +233680,195.73,79.76 +233681,199.23,76.251 +233682,197.67,77.386 +233683,196.04,78.536 +233684,194.36,79.703 +233685,197.95,76.265 +233686,196.36,77.375 +233687,194.7,78.502 +233688,192.99,79.646 +233689,196.67,76.278 +233690,195.05,77.365 +233691,193.37,78.467 +233692,191.62,79.587 +233693,195.39,76.293 +233694,193.74,77.355 +233695,192.03,78.432 +233696,190.25,79.528 +233697,194.11,76.309 +233698,192.43,77.345 +233699,190.69,78.397 +233700,188.88,79.468 +233701,192.82,76.325 +233702,191.12,77.335 +233703,189.35,78.362 +233704,187.52,79.407 +233705,191.54,76.343 +233706,189.81,77.325 +233707,188.02,78.326 +233708,186.15,79.345 +233709,190.25,76.361 +233710,188.5,77.316 +233711,186.68,78.29 +233712,184.79,79.283 +233713,188.96,76.379 +233714,187.18,77.307 +233715,185.34,78.254 +233716,183.43,79.219 +233717,187.67,76.399 +233718,185.87,77.299 +233719,184.01,78.217 +233720,182.07,79.155 +233721,186.38,76.419 +233722,184.56,77.29 +233723,182.67,78.18 +233724,180.71,79.09 +233725,185.09,76.44 +233726,183.25,77.282 +233727,181.34,78.143 +233728,179.36,79.025 +233729,183.8,76.462 +233730,181.93,77.274 +233731,180.01,78.106 +233732,178,78.959 +233733,182.5,76.484 +233734,180.62,77.267 +233735,178.67,78.069 +233736,176.65,78.892 +233737,181.21,76.507 +233738,179.31,77.259 +233739,177.34,78.031 +233740,175.3,78.824 +233741,179.91,76.53 +233742,177.99,77.252 +233743,176.01,77.993 +233744,173.95,78.756 +233745,178.61,76.554 +233746,176.68,77.245 +233747,174.68,77.955 +233748,172.6,78.687 +233749,177.31,76.579 +233750,175.36,77.238 +233751,173.35,77.917 +233752,171.25,78.618 +233753,176.01,76.604 +233754,174.05,77.231 +233755,172.02,77.879 +233756,169.9,78.548 +233757,174.7,76.629 +233758,172.73,77.225 +233759,170.69,77.84 +233760,168.56,78.477 +233761,173.4,76.655 +233762,171.41,77.218 +233763,169.36,77.801 +233764,167.22,78.407 +233765,172.09,76.681 +233766,170.09,77.212 +233767,168.03,77.762 +233768,165.88,78.335 +233769,170.78,76.708 +233770,168.78,77.206 +233771,166.7,77.723 +233772,164.54,78.263 +233773,169.47,76.736 +233774,167.46,77.2 +233775,165.37,77.684 +233776,163.2,78.191 +233777,168.16,76.763 +233778,166.14,77.194 +233779,164.04,77.645 +233780,161.86,78.119 +233781,166.85,76.791 +233782,164.82,77.188 +233783,162.72,77.606 +233784,160.53,78.046 +233785,165.54,76.819 +233786,163.5,77.183 +233787,161.39,77.566 +233788,159.2,77.972 +233789,164.22,76.848 +233790,162.18,77.177 +233791,160.06,77.527 +233792,157.87,77.899 +233793,162.9,76.876 +233794,160.86,77.172 +233795,158.74,77.487 +233796,156.54,77.825 +233797,161.58,76.905 +233798,159.54,77.167 +233799,157.41,77.448 +233800,155.21,77.751 +233801,160.26,76.934 +233802,158.21,77.161 +233803,156.09,77.408 +233804,153.88,77.676 +233805,158.94,76.964 +233806,156.89,77.156 +233807,154.77,77.368 +233808,152.56,77.602 +233809,157.62,76.993 +233810,155.57,77.151 +233811,153.44,77.328 +233812,151.24,77.527 +233813,156.29,77.023 +233814,154.24,77.146 +233815,152.12,77.288 +233816,149.92,77.452 +233817,154.97,77.052 +233818,152.92,77.141 +233819,150.8,77.248 +233820,148.6,77.377 +233821,153.64,77.082 +233822,151.6,77.136 +233823,149.48,77.208 +233824,147.28,77.302 +233825,152.31,77.112 +233826,150.27,77.131 +233827,148.16,77.168 +233828,145.97,77.227 +233829,150.98,77.141 +233830,148.95,77.126 +233831,146.84,77.128 +233832,144.65,77.151 +233833,149.64,77.171 +233834,147.62,77.121 +233835,145.52,77.088 +233836,143.34,77.076 +233837,148.31,77.2 +233838,146.29,77.116 +233839,144.2,77.049 +233840,142.03,77.001 +233841,146.97,77.23 +233842,144.97,77.111 +233843,142.88,77.009 +233844,140.72,76.926 +233845,145.64,77.259 +233846,143.64,77.106 +233847,141.57,76.969 +233848,139.41,76.851 +233849,144.3,77.289 +233850,142.31,77.101 +233851,140.25,76.929 +233852,138.11,76.776 +233853,142.96,77.318 +233854,140.98,77.096 +233855,138.93,76.889 +233856,136.8,76.701 +233857,141.62,77.347 +233858,139.65,77.09 +233859,137.62,76.85 +233860,135.5,76.627 +233861,140.27,77.375 +233862,138.32,77.085 +233863,136.3,76.81 +233864,134.2,76.552 +233865,138.93,77.404 +233866,136.99,77.08 +233867,134.99,76.77 +233868,132.9,76.478 +233869,137.58,77.432 +233870,135.66,77.074 +233871,133.67,76.731 +233872,131.6,76.404 +233873,136.23,77.46 +233874,134.33,77.069 +233875,132.36,76.692 +233876,130.31,76.331 +233877,134.88,77.487 +233878,133,77.063 +233879,131.04,76.652 +233880,129.01,76.258 +233881,133.53,77.515 +233882,131.67,77.057 +233883,129.73,76.613 +233884,127.72,76.185 +233885,132.18,77.541 +233886,130.33,77.052 +233887,128.42,76.574 +233888,126.43,76.112 +233889,130.83,77.568 +233890,129,77.046 +233891,127.11,76.535 +233892,125.14,76.04 +233893,129.47,77.594 +233894,127.67,77.039 +233895,125.8,76.497 +233896,123.85,75.968 +233897,128.11,77.619 +233898,126.33,77.033 +233899,124.49,76.458 +233900,122.57,75.897 +233901,126.76,77.644 +233902,125,77.027 +233903,123.18,76.42 +233904,121.28,75.826 +233905,125.4,77.669 +233906,123.66,77.02 +233907,121.87,76.382 +233908,120,75.756 +233909,124.04,77.693 +233910,122.33,77.013 +233911,120.56,76.344 +233912,118.72,75.686 +233913,122.68,77.716 +233914,120.99,77.007 +233915,119.25,76.306 +233916,117.43,75.617 +233917,121.31,77.739 +233918,119.66,76.999 +233919,117.94,76.268 +233920,116.16,75.548 +233921,119.95,77.762 +233922,118.32,76.992 +233923,116.63,76.231 +233924,114.88,75.48 +233925,118.58,77.783 +233926,116.98,76.985 +233927,115.32,76.194 +233928,113.6,75.412 +233929,117.21,77.804 +233930,115.65,76.977 +233931,114.02,76.157 +233932,112.33,75.346 +233933,115.85,77.825 +233934,114.31,76.969 +233935,112.71,76.12 +233936,111.05,75.28 +233937,114.48,77.844 +233938,112.97,76.961 +233939,111.41,76.083 +233940,109.78,75.214 +233941,113.11,77.863 +233942,111.63,76.952 +233943,110.1,76.047 +233944,108.51,75.149 +233945,111.73,77.882 +233946,110.29,76.944 +233947,108.79,76.011 +233948,107.24,75.086 +233949,110.36,77.899 +233950,108.95,76.935 +233951,107.49,75.975 +233952,105.97,75.022 +233953,108.99,77.916 +233954,107.61,76.926 +233955,106.19,75.94 +233956,104.7,74.96 +233957,107.61,77.932 +233958,106.27,76.916 +233959,104.88,75.905 +233960,103.43,74.899 +233961,106.24,77.947 +233962,104.93,76.907 +233963,103.58,75.87 +233964,102.17,74.838 +233965,104.86,77.961 +233966,103.59,76.897 +233967,102.27,75.835 +233968,100.9,74.778 +233969,103.48,77.975 +233970,102.25,76.887 +233971,100.97,75.801 +233972,99.64,74.719 +233973,102.1,77.987 +233974,100.91,76.876 +233975,99.67,75.767 +233976,98.377,74.661 +233977,100.72,77.999 +233978,99.569,76.865 +233979,98.368,75.733 +233980,97.116,74.604 +233981,99.34,78.01 +233982,98.227,76.854 +233983,97.066,75.7 +233984,95.855,74.548 +233985,97.958,78.02 +233986,96.884,76.843 +233987,95.765,75.666 +233988,94.596,74.493 +233989,96.575,78.029 +233990,95.542,76.831 +233991,94.464,75.634 +233992,93.337,74.438 +233993,95.191,78.037 +233994,94.199,76.819 +233995,93.163,75.601 +233996,92.079,74.385 +233997,93.807,78.044 +233998,92.856,76.807 +233999,91.862,75.569 +234000,90.822,74.333 +234001,92.421,78.05 +234002,91.513,76.794 +234003,90.562,75.537 +234004,89.566,74.282 +234005,91.035,78.055 +234006,90.169,76.781 +234007,89.262,75.506 +234008,88.311,74.232 +234009,89.648,78.059 +234010,88.826,76.768 +234011,87.962,75.475 +234012,87.056,74.183 +234013,88.26,78.062 +234014,87.482,76.754 +234015,86.663,75.444 +234016,85.802,74.135 +234017,86.872,78.064 +234018,86.138,76.74 +234019,85.364,75.414 +234020,84.549,74.088 +234021,85.483,78.065 +234022,84.793,76.725 +234023,84.065,75.384 +234024,83.296,74.042 +234025,84.093,78.064 +234026,83.449,76.711 +234027,82.766,75.354 +234028,82.044,73.997 +234029,82.703,78.063 +234030,82.104,76.696 +234031,81.468,75.325 +234032,80.792,73.954 +234033,81.312,78.061 +234034,80.759,76.68 +234035,80.169,75.296 +234036,79.541,73.911 +234037,79.921,78.058 +234038,79.414,76.664 +234039,78.871,75.268 +234040,78.291,73.87 +234041,78.529,78.053 +234042,78.069,76.648 +234043,77.573,75.24 +234044,77.04,73.83 +234045,77.137,78.047 +234046,76.724,76.631 +234047,76.275,75.212 +234048,75.791,73.791 +234049,75.745,78.041 +234050,75.379,76.614 +234051,74.978,75.185 +234052,74.541,73.753 +234053,74.352,78.033 +234054,74.033,76.597 +234055,73.68,75.158 +234056,73.292,73.716 +234057,72.959,78.024 +234058,72.688,76.579 +234059,72.383,75.131 +234060,72.043,73.681 +234061,71.565,78.014 +234062,71.342,76.561 +234063,71.085,75.105 +234064,70.795,73.647 +234065,70.171,78.003 +234066,69.996,76.543 +234067,69.788,75.079 +234068,69.546,73.614 +234069,68.777,77.99 +234070,68.651,76.524 +234071,68.491,75.054 +234072,68.298,73.582 +234073,67.383,77.977 +234074,67.305,76.505 +234075,67.194,75.029 +234076,67.05,73.551 +234077,65.988,77.962 +234078,65.959,76.485 +234079,65.897,75.005 +234080,65.802,73.522 +234081,64.594,77.946 +234082,64.613,76.465 +234083,64.6,74.981 +234084,64.554,73.494 +234085,63.199,77.929 +234086,63.267,76.445 +234087,63.303,74.957 +234088,63.306,73.467 +234089,61.805,77.911 +234090,61.922,76.424 +234091,62.006,74.934 +234092,62.059,73.441 +234093,60.41,77.891 +234094,60.576,76.403 +234095,60.709,74.911 +234096,60.811,73.417 +234097,59.015,77.871 +234098,59.23,76.381 +234099,59.412,74.888 +234100,59.563,73.393 +234101,57.621,77.849 +234102,57.884,76.359 +234103,58.115,74.866 +234104,58.314,73.371 +234105,56.226,77.826 +234106,56.539,76.337 +234107,56.818,74.845 +234108,57.066,73.351 +234109,54.832,77.802 +234110,55.193,76.314 +234111,55.521,74.823 +234112,55.818,73.331 +234113,53.438,77.777 +234114,53.848,76.291 +234115,54.224,74.802 +234116,54.569,73.313 +234117,52.044,77.75 +234118,52.502,76.267 +234119,52.927,74.782 +234120,53.32,73.296 +234121,50.65,77.722 +234122,51.157,76.243 +234123,51.63,74.762 +234124,52.07,73.28 +234125,49.256,77.694 +234126,49.812,76.219 +234127,50.333,74.742 +234128,50.821,73.265 +234129,47.863,77.664 +234130,48.467,76.194 +234131,49.035,74.723 +234132,49.571,73.252 +234133,46.47,77.633 +234134,47.122,76.169 +234135,47.738,74.704 +234136,48.32,73.24 +234137,45.078,77.6 +234138,45.777,76.144 +234139,46.44,74.686 +234140,47.069,73.228 +234141,43.686,77.567 +234142,44.433,76.118 +234143,45.142,74.668 +234144,45.818,73.219 +234145,42.295,77.532 +234146,43.088,76.091 +234147,43.844,74.65 +234148,44.566,73.21 +234149,40.904,77.496 +234150,41.744,76.065 +234151,42.546,74.633 +234152,43.313,73.203 +234153,39.513,77.46 +234154,40.4,76.038 +234155,41.248,74.616 +234156,42.06,73.196 +234157,38.123,77.422 +234158,39.056,76.01 +234159,39.95,74.6 +234160,40.806,73.191 +234161,36.734,77.383 +234162,37.713,75.983 +234163,38.651,74.584 +234164,39.552,73.187 +234165,35.345,77.342 +234166,36.37,75.954 +234167,37.352,74.568 +234168,38.297,73.184 +234169,33.957,77.301 +234170,35.027,75.926 +234171,36.053,74.553 +234172,37.041,73.183 +234173,32.57,77.259 +234174,33.684,75.897 +234175,34.754,74.538 +234176,35.784,73.182 +234177,31.184,77.215 +234178,32.341,75.868 +234179,33.454,74.523 +234180,34.527,73.182 +234181,29.798,77.171 +234182,30.999,75.838 +234183,32.154,74.509 +234184,33.268,73.184 +234185,28.413,77.125 +234186,29.657,75.808 +234187,30.854,74.495 +234188,32.009,73.187 +234189,27.029,77.078 +234190,28.316,75.778 +234191,29.554,74.482 +234192,30.749,73.19 +234193,25.646,77.031 +234194,26.974,75.747 +234195,28.253,74.469 +234196,29.488,73.195 +234197,24.264,76.982 +234198,25.633,75.716 +234199,26.952,74.456 +234200,28.226,73.201 +234201,22.883,76.932 +234202,24.293,75.685 +234203,25.651,74.443 +234204,26.963,73.208 +234205,21.503,76.882 +234206,22.953,75.654 +234207,24.349,74.431 +234208,25.699,73.216 +234209,20.124,76.83 +234210,21.613,75.622 +234211,23.047,74.42 +234212,24.434,73.224 +234213,18.746,76.778 +234214,20.273,75.589 +234215,21.745,74.408 +234216,23.168,73.234 +234217,17.369,76.724 +234218,18.934,75.557 +234219,20.442,74.397 +234220,21.901,73.245 +234221,15.993,76.669 +234222,17.595,75.524 +234223,19.139,74.386 +234224,20.633,73.257 +234225,14.618,76.614 +234226,16.257,75.491 +234227,17.836,74.376 +234228,19.364,73.269 +234229,13.244,76.558 +234230,14.919,75.457 +234231,16.532,74.366 +234232,18.093,73.283 +234233,11.872,76.501 +234234,13.581,75.424 +234235,15.228,74.356 +234236,16.821,73.297 +234237,10.501,76.443 +234238,12.244,75.389 +234239,13.924,74.346 +234240,15.548,73.312 +234241,9.1312,76.384 +234242,10.908,75.355 +234243,12.619,74.337 +234244,14.274,73.328 +234245,7.7627,76.324 +234246,9.5715,75.321 +234247,11.314,74.328 +234248,12.999,73.345 +234249,6.3956,76.264 +234250,8.2357,75.286 +234251,10.008,74.319 +234252,11.722,73.363 +234253,5.0297,76.202 +234254,6.9004,75.251 +234255,8.7019,74.31 +234256,10.444,73.381 +234257,3.6653,76.14 +234258,5.5656,75.215 +234259,7.3953,74.302 +234260,9.1644,73.4 +234261,2.3022,76.078 +234262,4.2313,75.18 +234263,6.0883,74.294 +234264,7.8836,73.42 +234265,0.9406,76.014 +234266,2.8974,75.144 +234267,4.7809,74.286 +234268,6.6015,73.441 +234269,359.58,75.95 +234270,1.564,75.108 +234271,3.473,74.279 +234272,5.3179,73.462 +234273,358.22,75.885 +234274,0.23117,75.072 +234275,2.1647,74.271 +234276,4.033,73.484 +234277,356.86,75.82 +234278,358.9,75.035 +234279,0.85584,74.264 +234280,2.7466,73.506 +234281,355.51,75.754 +234282,357.57,74.998 +234283,359.55,74.257 +234284,1.4588,73.529 +234285,354.15,75.687 +234286,356.24,74.962 +234287,358.24,74.251 +234288,0.16959,73.553 +234289,352.8,75.62 +234290,354.9,74.925 +234291,356.93,74.244 +234292,358.88,73.577 +234293,351.45,75.552 +234294,353.57,74.887 +234295,355.62,74.238 +234296,357.59,73.602 +234297,350.1,75.483 +234298,352.24,74.85 +234299,354.3,74.232 +234300,356.29,73.627 +234301,348.75,75.415 +234302,350.92,74.812 +234303,352.99,74.226 +234304,355,73.653 +234305,347.41,75.345 +234306,349.59,74.775 +234307,351.68,74.22 +234308,353.7,73.679 +234309,346.06,75.275 +234310,348.26,74.737 +234311,350.37,74.214 +234312,352.4,73.706 +234313,344.72,75.205 +234314,346.93,74.699 +234315,349.05,74.208 +234316,351.1,73.733 +234317,343.38,75.134 +234318,345.6,74.661 +234319,347.74,74.203 +234320,349.8,73.76 +234321,342.04,75.063 +234322,344.28,74.622 +234323,346.43,74.198 +234324,348.5,73.788 +234325,340.7,74.992 +234326,342.95,74.584 +234327,345.11,74.193 +234328,347.19,73.816 +234329,339.37,74.92 +234330,341.63,74.546 +234331,343.8,74.187 +234332,345.89,73.844 +234333,338.03,74.848 +234334,340.3,74.507 +234335,342.48,74.182 +234336,344.58,73.873 +234337,336.7,74.776 +234338,338.98,74.468 +234339,341.16,74.178 +234340,343.27,73.902 +234341,335.37,74.703 +234342,337.65,74.43 +234343,339.85,74.173 +234344,341.96,73.931 +234345,334.04,74.63 +234346,336.33,74.391 +234347,338.53,74.168 +234348,340.65,73.96 +234349,332.71,74.558 +234350,335.01,74.352 +234351,337.21,74.163 +234352,339.33,73.989 +234353,331.39,74.484 +234354,333.69,74.313 +234355,335.89,74.159 +234356,338.02,74.019 +234357,330.06,74.411 +234358,332.37,74.274 +234359,334.57,74.154 +234360,336.7,74.048 +234361,328.74,74.338 +234362,331.05,74.235 +234363,333.26,74.149 +234364,335.38,74.078 +234365,327.42,74.264 +234366,329.73,74.196 +234367,331.94,74.145 +234368,334.06,74.108 +234369,326.1,74.191 +234370,328.41,74.157 +234371,330.61,74.14 +234372,332.74,74.138 +234373,324.78,74.117 +234374,327.09,74.118 +234375,329.29,74.136 +234376,331.42,74.167 +234377,323.47,74.044 +234378,325.77,74.079 +234379,327.97,74.131 +234380,330.09,74.197 +234381,322.16,73.97 +234382,324.45,74.04 +234383,326.65,74.127 +234384,328.76,74.227 +234385,320.84,73.897 +234386,323.13,74.002 +234387,325.33,74.122 +234388,327.43,74.256 +234389,319.53,73.823 +234390,321.82,73.963 +234391,324,74.117 +234392,326.1,74.285 +234393,318.23,73.75 +234394,320.5,73.924 +234395,322.68,74.113 +234396,324.77,74.315 +234397,316.92,73.677 +234398,319.19,73.885 +234399,321.36,74.108 +234400,323.44,74.344 +234401,315.62,73.604 +234402,317.87,73.846 +234403,320.03,74.103 +234404,322.1,74.373 +234405,314.31,73.531 +234406,316.56,73.808 +234407,318.7,74.098 +234408,320.77,74.401 +234409,313.01,73.459 +234410,315.24,73.769 +234411,317.38,74.094 +234412,319.43,74.43 +234413,311.71,73.386 +234414,313.93,73.731 +234415,316.05,74.089 +234416,318.09,74.458 +234417,310.42,73.314 +234418,312.62,73.692 +234419,314.73,74.083 +234420,316.75,74.486 +234421,309.12,73.243 +234422,311.31,73.654 +234423,313.4,74.078 +234424,315.41,74.513 +234425,307.83,73.171 +234426,309.99,73.616 +234427,312.07,74.073 +234428,314.06,74.54 +234429,306.53,73.1 +234430,308.68,73.578 +234431,310.74,74.067 +234432,312.72,74.567 +234433,305.24,73.03 +234434,307.37,73.54 +234435,309.41,74.062 +234436,311.37,74.593 +234437,303.95,72.959 +234438,306.06,73.502 +234439,308.08,74.056 +234440,310.02,74.619 +234441,302.67,72.89 +234442,304.75,73.464 +234443,306.75,74.05 +234444,308.67,74.645 +234445,301.38,72.82 +234446,303.45,73.427 +234447,305.42,74.044 +234448,307.32,74.67 +234449,300.1,72.752 +234450,302.14,73.39 +234451,304.09,74.038 +234452,305.96,74.694 +234453,298.81,72.683 +234454,300.83,73.353 +234455,302.76,74.032 +234456,304.61,74.718 +234457,297.53,72.616 +234458,299.52,73.316 +234459,301.43,74.025 +234460,303.25,74.741 +234461,296.25,72.548 +234462,298.22,73.279 +234463,300.1,74.018 +234464,301.9,74.764 +234465,294.97,72.482 +234466,296.91,73.242 +234467,298.76,74.011 +234468,300.54,74.786 +234469,293.7,72.416 +234470,295.61,73.206 +234471,297.43,74.004 +234472,299.18,74.808 +234473,292.42,72.351 +234474,294.3,73.17 +234475,296.1,73.997 +234476,297.81,74.829 +234477,291.15,72.286 +234478,293,73.134 +234479,294.76,73.989 +234480,296.45,74.849 +234481,289.88,72.222 +234482,291.69,73.099 +234483,293.43,73.981 +234484,295.09,74.868 +234485,288.61,72.159 +234486,290.39,73.063 +234487,292.09,73.973 +234488,293.72,74.887 +234489,287.34,72.096 +234490,289.09,73.028 +234491,290.76,73.965 +234492,292.35,74.905 +234493,286.07,72.035 +234494,287.78,72.993 +234495,289.42,73.957 +234496,290.99,74.922 +234497,284.8,71.974 +234498,286.48,72.959 +234499,288.08,73.948 +234500,289.62,74.939 +234501,283.54,71.914 +234502,285.18,72.924 +234503,286.75,73.939 +234504,288.25,74.955 +234505,282.27,71.854 +234506,283.88,72.89 +234507,285.41,73.929 +234508,286.88,74.97 +234509,281.01,71.796 +234510,282.58,72.856 +234511,284.07,73.92 +234512,285.5,74.984 +234513,279.75,71.738 +234514,281.28,72.823 +234515,282.73,73.91 +234516,284.13,74.997 +234517,278.49,71.682 +234518,279.98,72.79 +234519,281.4,73.9 +234520,282.75,75.009 +234521,277.23,71.626 +234522,278.68,72.757 +234523,280.06,73.889 +234524,281.38,75.021 +234525,275.97,71.571 +234526,277.38,72.724 +234527,278.72,73.878 +234528,280,75.031 +234529,274.71,71.517 +234530,276.08,72.692 +234531,277.38,73.867 +234532,278.62,75.041 +234533,273.45,71.464 +234534,274.78,72.66 +234535,276.04,73.856 +234536,277.24,75.05 +234537,272.2,71.412 +234538,273.48,72.628 +234539,274.7,73.844 +234540,275.86,75.057 +234541,270.94,71.361 +234542,272.18,72.597 +234543,273.36,73.832 +234544,274.48,75.064 +234545,269.69,71.311 +234546,270.88,72.566 +234547,272.02,73.82 +234548,273.1,75.07 +234549,268.44,71.262 +234550,269.59,72.535 +234551,270.68,73.807 +234552,271.72,75.075 +234553,267.19,71.215 +234554,268.29,72.505 +234555,269.34,73.794 +234556,270.33,75.078 +234557,265.94,71.168 +234558,266.99,72.475 +234559,268,73.78 +234560,268.95,75.081 +234561,264.69,71.122 +234562,265.7,72.446 +234563,266.65,73.767 +234564,267.56,75.083 +234565,263.44,71.077 +234566,264.4,72.416 +234567,265.31,73.752 +234568,266.18,75.084 +234569,262.19,71.034 +234570,263.11,72.388 +234571,263.97,73.738 +234572,264.79,75.083 +234573,260.94,70.991 +234574,261.81,72.359 +234575,262.63,73.723 +234576,263.4,75.082 +234577,259.69,70.95 +234578,260.51,72.331 +234579,261.29,73.708 +234580,262.01,75.079 +234581,258.45,70.91 +234582,259.22,72.303 +234583,259.94,73.692 +234584,260.62,75.075 +234585,257.2,70.871 +234586,257.92,72.276 +234587,258.6,73.676 +234588,259.23,75.071 +234589,255.96,70.833 +234590,256.63,72.249 +234591,257.26,73.66 +234592,257.84,75.065 +234593,254.71,70.796 +234594,255.33,72.222 +234595,255.91,73.643 +234596,256.45,75.058 +234597,253.47,70.761 +234598,254.04,72.196 +234599,254.57,73.626 +234600,255.06,75.05 +234601,252.22,70.726 +234602,252.75,72.17 +234603,253.23,73.609 +234604,253.67,75.04 +234605,250.98,70.693 +234606,251.45,72.145 +234607,251.88,73.591 +234608,252.28,75.03 +234609,249.74,70.661 +234610,250.16,72.12 +234611,250.54,73.573 +234612,250.89,75.018 +234613,248.49,70.63 +234614,248.86,72.095 +234615,249.2,73.554 +234616,249.49,75.006 +234617,247.25,70.601 +234618,247.57,72.071 +234619,247.85,73.535 +234620,248.1,74.992 +234621,246.01,70.573 +234622,246.28,72.047 +234623,246.51,73.516 +234624,246.71,74.977 +234625,244.77,70.545 +234626,244.98,72.024 +234627,245.17,73.496 +234628,245.31,74.961 +234629,243.52,70.519 +234630,243.69,72.001 +234631,243.82,73.476 +234632,243.92,74.943 +234633,242.28,70.495 +234634,242.4,71.978 +234635,242.48,73.455 +234636,242.52,74.925 +234637,241.04,70.471 +234638,241.1,71.956 +234639,241.13,73.434 +234640,241.13,74.905 +234641,239.8,70.449 +234642,239.81,71.934 +234643,239.79,73.413 +234644,239.74,74.884 +234645,238.55,70.428 +234646,238.52,71.913 +234647,238.44,73.391 +234648,238.34,74.862 +234649,237.31,70.408 +234650,237.22,71.892 +234651,237.1,73.369 +234652,236.95,74.839 +234653,236.07,70.389 +234654,235.93,71.871 +234655,235.76,73.347 +234656,235.55,74.815 +234657,234.83,70.372 +234658,234.64,71.851 +234659,234.41,73.324 +234660,234.16,74.789 +234661,233.59,70.356 +234662,233.34,71.831 +234663,233.07,73.3 +234664,232.76,74.762 +234665,232.34,70.341 +234666,232.05,71.812 +234667,231.72,73.277 +234668,231.37,74.735 +234669,231.1,70.327 +234670,230.76,71.792 +234671,230.38,73.252 +234672,229.97,74.706 +234673,229.86,70.314 +234674,229.46,71.774 +234675,229.04,73.228 +234676,228.58,74.675 +234677,228.61,70.303 +234678,228.17,71.756 +234679,227.69,73.203 +234680,227.19,74.644 +234681,227.37,70.293 +234682,226.87,71.738 +234683,226.35,73.178 +234684,225.79,74.611 +234685,226.12,70.284 +234686,225.58,71.72 +234687,225.01,73.152 +234688,224.4,74.578 +234689,224.88,70.276 +234690,224.29,71.703 +234691,223.66,73.126 +234692,223.01,74.543 +234693,223.63,70.269 +234694,222.99,71.687 +234695,222.32,73.1 +234696,221.62,74.507 +234697,222.39,70.264 +234698,221.7,71.67 +234699,220.98,73.073 +234700,220.22,74.47 +234701,221.14,70.259 +234702,220.4,71.654 +234703,219.63,73.046 +234704,218.83,74.432 +234705,219.89,70.256 +234706,219.11,71.639 +234707,218.29,73.018 +234708,217.44,74.393 +234709,218.65,70.254 +234710,217.81,71.624 +234711,216.95,72.99 +234712,216.05,74.352 +234713,217.4,70.253 +234714,216.52,71.609 +234715,215.61,72.962 +234716,214.66,74.311 +234717,216.15,70.253 +234718,215.22,71.594 +234719,214.27,72.933 +234720,213.27,74.268 +234721,214.9,70.255 +234722,213.93,71.58 +234723,212.92,72.904 +234724,211.88,74.224 +234725,213.65,70.257 +234726,212.63,71.567 +234727,211.58,72.875 +234728,210.49,74.18 +234729,212.4,70.26 +234730,211.34,71.553 +234731,210.24,72.845 +234732,209.11,74.134 +234733,211.14,70.265 +234734,210.04,71.54 +234735,208.9,72.815 +234736,207.72,74.087 +234737,209.89,70.27 +234738,208.74,71.528 +234739,207.56,72.785 +234740,206.33,74.04 +234741,208.64,70.277 +234742,207.45,71.515 +234743,206.22,72.754 +234744,204.95,73.991 +234745,207.38,70.284 +234746,206.15,71.503 +234747,204.88,72.723 +234748,203.57,73.941 +234749,206.13,70.293 +234750,204.85,71.492 +234751,203.54,72.691 +234752,202.18,73.89 +234753,204.87,70.302 +234754,203.56,71.48 +234755,202.2,72.659 +234756,200.8,73.838 +234757,203.61,70.313 +234758,202.26,71.469 +234759,200.86,72.627 +234760,199.42,73.786 +234761,202.35,70.324 +234762,200.96,71.459 +234763,199.52,72.595 +234764,198.04,73.732 +234765,201.09,70.336 +234766,199.66,71.448 +234767,198.19,72.562 +234768,196.66,73.678 +234769,199.83,70.349 +234770,198.36,71.438 +234771,196.85,72.529 +234772,195.28,73.622 +234773,198.57,70.363 +234774,197.06,71.428 +234775,195.51,72.496 +234776,193.9,73.566 +234777,197.3,70.378 +234778,195.76,71.419 +234779,194.17,72.463 +234780,192.53,73.509 +234781,196.04,70.394 +234782,194.46,71.41 +234783,192.84,72.429 +234784,191.15,73.45 +234785,194.77,70.411 +234786,193.16,71.401 +234787,191.5,72.395 +234788,189.78,73.392 +234789,193.5,70.428 +234790,191.86,71.392 +234791,190.16,72.36 +234792,188.41,73.332 +234793,192.24,70.446 +234794,190.56,71.384 +234795,188.83,72.326 +234796,187.04,73.271 +234797,190.97,70.465 +234798,189.26,71.375 +234799,187.49,72.291 +234800,185.67,73.21 +234801,189.69,70.485 +234802,187.96,71.367 +234803,186.16,72.255 +234804,184.3,73.148 +234805,188.42,70.505 +234806,186.65,71.36 +234807,184.83,72.22 +234808,182.93,73.085 +234809,187.15,70.526 +234810,185.35,71.352 +234811,183.49,72.184 +234812,181.57,73.022 +234813,185.87,70.548 +234814,184.05,71.345 +234815,182.16,72.149 +234816,180.2,72.958 +234817,184.6,70.57 +234818,182.74,71.338 +234819,180.83,72.112 +234820,178.84,72.893 +234821,183.32,70.593 +234822,181.44,71.331 +234823,179.49,72.076 +234824,177.48,72.828 +234825,182.04,70.617 +234826,180.13,71.325 +234827,178.16,72.04 +234828,176.12,72.762 +234829,180.76,70.641 +234830,178.83,71.318 +234831,176.83,72.003 +234832,174.76,72.695 +234833,179.47,70.666 +234834,177.52,71.312 +234835,175.5,71.966 +234836,173.4,72.628 +234837,178.19,70.691 +234838,176.21,71.306 +234839,174.17,71.929 +234840,172.05,72.56 +234841,176.9,70.716 +234842,174.91,71.3 +234843,172.84,71.892 +234844,170.69,72.492 +234845,175.62,70.743 +234846,173.6,71.294 +234847,171.51,71.854 +234848,169.34,72.423 +234849,174.33,70.769 +234850,172.29,71.289 +234851,170.18,71.817 +234852,167.99,72.354 +234853,173.04,70.796 +234854,170.98,71.283 +234855,168.86,71.779 +234856,166.64,72.284 +234857,171.75,70.824 +234858,169.68,71.278 +234859,167.53,71.741 +234860,165.29,72.214 +234861,170.45,70.851 +234862,168.37,71.273 +234863,166.2,71.703 +234864,163.95,72.143 +234865,169.16,70.879 +234866,167.06,71.268 +234867,164.88,71.665 +234868,162.6,72.072 +234869,167.86,70.908 +234870,165.75,71.263 +234871,163.55,71.627 +234872,161.26,72.001 +234873,166.56,70.936 +234874,164.43,71.258 +234875,162.22,71.589 +234876,159.92,71.93 +234877,165.26,70.965 +234878,163.12,71.253 +234879,160.9,71.55 +234880,158.58,71.858 +234881,163.96,70.994 +234882,161.81,71.248 +234883,159.58,71.512 +234884,157.24,71.786 +234885,162.66,71.024 +234886,160.5,71.244 +234887,158.25,71.473 +234888,155.91,71.713 +234889,161.35,71.053 +234890,159.19,71.239 +234891,156.93,71.435 +234892,154.58,71.641 +234893,160.05,71.083 +234894,157.87,71.234 +234895,155.61,71.396 +234896,153.24,71.568 +234897,158.74,71.112 +234898,156.56,71.23 +234899,154.29,71.357 +234900,151.91,71.495 +234901,157.43,71.142 +234902,155.24,71.225 +234903,152.97,71.318 +234904,150.59,71.422 +234905,156.12,71.172 +234906,153.93,71.221 +234907,151.65,71.279 +234908,149.26,71.349 +234909,154.8,71.202 +234910,152.61,71.217 +234911,150.33,71.241 +234912,147.94,71.275 +234913,153.49,71.232 +234914,151.29,71.212 +234915,149.01,71.202 +234916,146.61,71.202 +234917,152.17,71.262 +234918,149.98,71.208 +234919,147.69,71.163 +234920,145.29,71.129 +234921,150.86,71.291 +234922,148.66,71.203 +234923,146.37,71.124 +234924,143.97,71.055 +234925,149.54,71.321 +234926,147.34,71.199 +234927,145.05,71.085 +234928,142.66,70.982 +234929,148.21,71.351 +234930,146.02,71.194 +234931,143.74,71.046 +234932,141.34,70.909 +234933,146.89,71.38 +234934,144.7,71.19 +234935,142.42,71.008 +234936,140.03,70.836 +234937,145.57,71.41 +234938,143.38,71.185 +234939,141.11,70.969 +234940,138.72,70.763 +234941,144.24,71.439 +234942,142.06,71.18 +234943,139.79,70.93 +234944,137.41,70.69 +234945,142.91,71.468 +234946,140.74,71.176 +234947,138.48,70.892 +234948,136.1,70.617 +234949,141.58,71.496 +234950,139.42,71.171 +234951,137.16,70.853 +234952,134.79,70.545 +234953,140.25,71.525 +234954,138.1,71.166 +234955,135.85,70.815 +234956,133.49,70.473 +234957,138.92,71.553 +234958,136.78,71.161 +234959,134.54,70.776 +234960,132.19,70.401 +234961,137.58,71.58 +234962,135.45,71.156 +234963,133.22,70.738 +234964,130.88,70.329 +234965,136.25,71.608 +234966,134.13,71.151 +234967,131.91,70.7 +234968,129.59,70.257 +234969,134.91,71.635 +234970,132.81,71.145 +234971,130.6,70.662 +234972,128.29,70.186 +234973,133.57,71.662 +234974,131.48,71.14 +234975,129.29,70.624 +234976,126.99,70.116 +234977,132.23,71.688 +234978,130.15,71.134 +234979,127.98,70.586 +234980,125.7,70.045 +234981,130.89,71.713 +234982,128.83,71.128 +234983,126.67,70.548 +234984,124.41,69.975 +234985,129.54,71.739 +234986,127.5,71.122 +234987,125.37,70.511 +234988,123.12,69.906 +234989,128.2,71.763 +234990,126.18,71.116 +234991,124.06,70.473 +234992,121.83,69.837 +234993,126.85,71.788 +234994,124.85,71.11 +234995,122.75,70.436 +234996,120.54,69.769 +234997,125.5,71.811 +234998,123.52,71.103 +234999,121.44,70.399 +235000,119.26,69.701 +235001,124.15,71.834 +235002,122.19,71.097 +235003,120.14,70.362 +235004,117.98,69.633 +235005,122.8,71.857 +235006,120.86,71.09 +235007,118.83,70.326 +235008,116.7,69.566 +235009,121.44,71.879 +235010,119.53,71.083 +235011,117.53,70.289 +235012,115.42,69.5 +235013,120.09,71.9 +235014,118.2,71.076 +235015,116.22,70.253 +235016,114.14,69.435 +235017,118.73,71.921 +235018,116.87,71.068 +235019,114.92,70.217 +235020,112.86,69.37 +235021,117.38,71.941 +235022,115.54,71.06 +235023,113.62,70.181 +235024,111.59,69.305 +235025,116.02,71.96 +235026,114.21,71.052 +235027,112.31,70.146 +235028,110.31,69.242 +235029,114.66,71.978 +235030,112.88,71.044 +235031,111.01,70.11 +235032,109.04,69.179 +235033,113.3,71.996 +235034,111.55,71.036 +235035,109.71,70.075 +235036,107.77,69.117 +235037,111.93,72.013 +235038,110.21,71.027 +235039,108.41,70.041 +235040,106.5,69.055 +235041,110.57,72.029 +235042,108.88,71.018 +235043,107.11,70.006 +235044,105.24,68.995 +235045,109.2,72.044 +235046,107.55,71.009 +235047,105.81,69.972 +235048,103.97,68.935 +235049,107.84,72.058 +235050,106.21,70.999 +235051,104.51,69.938 +235052,102.71,68.876 +235053,106.47,72.072 +235054,104.88,70.989 +235055,103.21,69.904 +235056,101.44,68.818 +235057,105.1,72.085 +235058,103.54,70.979 +235059,101.91,69.871 +235060,100.18,68.761 +235061,103.73,72.097 +235062,102.21,70.969 +235063,100.61,69.837 +235064,98.921,68.705 +235065,102.35,72.107 +235066,100.87,70.958 +235067,99.311,69.805 +235068,97.662,68.649 +235069,100.98,72.117 +235070,99.537,70.947 +235071,98.014,69.772 +235072,96.405,68.595 +235073,99.607,72.126 +235074,98.2,70.935 +235075,96.717,69.74 +235076,95.148,68.541 +235077,98.232,72.135 +235078,96.863,70.924 +235079,95.42,69.708 +235080,93.893,68.489 +235081,96.856,72.142 +235082,95.526,70.912 +235083,94.123,69.676 +235084,92.639,68.437 +235085,95.478,72.148 +235086,94.189,70.899 +235087,92.827,69.645 +235088,91.386,68.387 +235089,94.1,72.153 +235090,92.851,70.887 +235091,91.531,69.614 +235092,90.135,68.337 +235093,92.72,72.157 +235094,91.513,70.874 +235095,90.236,69.584 +235096,88.884,68.288 +235097,91.34,72.16 +235098,90.174,70.86 +235099,88.941,69.553 +235100,87.634,68.241 +235101,89.958,72.162 +235102,88.835,70.846 +235103,87.646,69.523 +235104,86.386,68.195 +235105,88.576,72.163 +235106,87.496,70.832 +235107,86.352,69.494 +235108,85.138,68.149 +235109,87.193,72.163 +235110,86.157,70.818 +235111,85.058,69.465 +235112,83.891,68.105 +235113,85.809,72.162 +235114,84.817,70.803 +235115,83.764,69.436 +235116,82.645,68.062 +235117,84.424,72.159 +235118,83.477,70.788 +235119,82.471,69.407 +235120,81.4,68.02 +235121,83.038,72.156 +235122,82.137,70.772 +235123,81.178,69.379 +235124,80.156,67.979 +235125,81.652,72.151 +235126,80.797,70.756 +235127,79.885,69.352 +235128,78.912,67.939 +235129,80.265,72.146 +235130,79.456,70.74 +235131,78.592,69.324 +235132,77.669,67.901 +235133,78.877,72.139 +235134,78.115,70.723 +235135,77.3,69.297 +235136,76.427,67.863 +235137,77.488,72.131 +235138,76.774,70.706 +235139,76.008,69.271 +235140,75.186,67.827 +235141,76.099,72.122 +235142,75.433,70.688 +235143,74.716,69.244 +235144,73.945,67.792 +235145,74.709,72.112 +235146,74.091,70.671 +235147,73.424,69.219 +235148,72.705,67.758 +235149,73.319,72.101 +235150,72.75,70.652 +235151,72.133,69.193 +235152,71.465,67.725 +235153,71.928,72.088 +235154,71.408,70.634 +235155,70.841,69.168 +235156,70.226,67.694 +235157,70.537,72.074 +235158,70.066,70.614 +235159,69.55,69.144 +235160,68.987,67.663 +235161,69.145,72.06 +235162,68.724,70.595 +235163,68.259,69.119 +235164,67.748,67.634 +235165,67.753,72.043 +235166,67.382,70.575 +235167,66.968,69.095 +235168,66.51,67.606 +235169,66.36,72.026 +235170,66.039,70.555 +235171,65.678,69.072 +235172,65.273,67.579 +235173,64.967,72.008 +235174,64.697,70.534 +235175,64.387,69.049 +235176,64.035,67.554 +235177,63.574,71.988 +235178,63.355,70.513 +235179,63.096,69.026 +235180,62.798,67.53 +235181,62.181,71.967 +235182,62.012,70.491 +235183,61.806,69.004 +235184,61.561,67.507 +235185,60.787,71.945 +235186,60.67,70.47 +235187,60.516,68.982 +235188,60.324,67.485 +235189,59.393,71.922 +235190,59.327,70.447 +235191,59.225,68.961 +235192,59.087,67.464 +235193,57.999,71.898 +235194,57.984,70.425 +235195,57.935,68.94 +235196,57.85,67.445 +235197,56.605,71.872 +235198,56.642,70.401 +235199,56.645,68.919 +235200,56.613,67.427 +235201,55.21,71.846 +235202,55.299,70.378 +235203,55.355,68.899 +235204,55.377,67.41 +235205,53.816,71.818 +235206,53.956,70.354 +235207,54.064,68.879 +235208,54.14,67.394 +235209,52.421,71.789 +235210,52.614,70.33 +235211,52.774,68.859 +235212,52.903,67.379 +235213,51.027,71.758 +235214,51.271,70.305 +235215,51.484,68.84 +235216,51.666,67.366 +235217,49.633,71.727 +235218,49.928,70.28 +235219,50.194,68.822 +235220,50.428,67.354 +235221,48.238,71.694 +235222,48.586,70.254 +235223,48.903,68.803 +235224,49.191,67.343 +235225,46.844,71.661 +235226,47.243,70.228 +235227,47.613,68.785 +235228,47.953,67.333 +235229,45.45,71.626 +235230,45.901,70.202 +235231,46.323,68.768 +235232,46.715,67.325 +235233,44.057,71.59 +235234,44.559,70.175 +235235,45.032,68.751 +235236,45.476,67.317 +235237,42.663,71.552 +235238,43.217,70.148 +235239,43.741,68.734 +235240,44.237,67.311 +235241,41.27,71.514 +235242,41.875,70.121 +235243,42.451,68.718 +235244,42.998,67.306 +235245,39.877,71.474 +235246,40.533,70.093 +235247,41.16,68.702 +235248,41.758,67.302 +235249,38.484,71.434 +235250,39.191,70.065 +235251,39.869,68.686 +235252,40.518,67.299 +235253,37.092,71.392 +235254,37.85,70.036 +235255,38.577,68.671 +235256,39.277,67.298 +235257,35.701,71.349 +235258,36.508,70.007 +235259,37.286,68.656 +235260,38.035,67.297 +235261,34.309,71.305 +235262,35.167,69.978 +235263,35.995,68.641 +235264,36.793,67.298 +235265,32.919,71.26 +235266,33.826,69.948 +235267,34.703,68.627 +235268,35.551,67.3 +235269,31.529,71.214 +235270,32.486,69.918 +235271,33.411,68.613 +235272,34.307,67.302 +235273,30.139,71.167 +235274,31.145,69.887 +235275,32.119,68.6 +235276,33.063,67.306 +235277,28.75,71.119 +235278,29.805,69.856 +235279,30.826,68.587 +235280,31.818,67.311 +235281,27.362,71.07 +235282,28.465,69.825 +235283,29.534,68.574 +235284,30.572,67.317 +235285,25.975,71.019 +235286,27.125,69.794 +235287,28.241,68.561 +235288,29.325,67.324 +235289,24.588,70.968 +235290,25.786,69.762 +235291,26.948,68.549 +235292,28.078,67.332 +235293,23.202,70.916 +235294,24.446,69.73 +235295,25.654,68.538 +235296,26.829,67.341 +235297,21.817,70.863 +235298,23.107,69.697 +235299,24.361,68.526 +235300,25.58,67.351 +235301,20.432,70.808 +235302,21.769,69.664 +235303,23.067,68.515 +235304,24.329,67.362 +235305,19.049,70.753 +235306,20.431,69.631 +235307,21.772,68.504 +235308,23.078,67.373 +235309,17.666,70.697 +235310,19.093,69.598 +235311,20.478,68.494 +235312,21.825,67.386 +235313,16.285,70.64 +235314,17.755,69.564 +235315,19.183,68.483 +235316,20.572,67.4 +235317,14.904,70.582 +235318,16.418,69.53 +235319,17.887,68.473 +235320,19.317,67.414 +235321,13.525,70.524 +235322,15.081,69.495 +235323,16.592,68.464 +235324,18.061,67.43 +235325,12.146,70.464 +235326,13.745,69.461 +235327,15.296,68.454 +235328,16.804,67.446 +235329,10.769,70.404 +235330,12.409,69.426 +235331,13.999,68.445 +235332,15.546,67.463 +235333,9.3927,70.343 +235334,11.073,69.391 +235335,12.702,68.436 +235336,14.287,67.481 +235337,8.0177,70.281 +235338,9.7379,69.355 +235339,11.405,68.427 +235340,13.026,67.499 +235341,6.6439,70.218 +235342,8.4032,69.319 +235343,10.108,68.419 +235344,11.764,67.519 +235345,5.2713,70.154 +235346,7.0688,69.283 +235347,8.8095,68.411 +235348,10.501,67.539 +235349,3.8999,70.09 +235350,5.7349,69.247 +235351,7.5111,68.403 +235352,9.2361,67.559 +235353,2.5299,70.025 +235354,4.4014,69.21 +235355,6.2122,68.395 +235356,7.9701,67.581 +235357,1.1612,69.959 +235358,3.0684,69.174 +235359,4.9129,68.388 +235360,6.7028,67.603 +235361,359.79,69.893 +235362,1.7359,69.137 +235363,3.6131,68.381 +235364,5.434,67.626 +235365,358.43,69.826 +235366,0.40388,69.1 +235367,2.3129,68.374 +235368,4.1639,67.649 +235369,357.06,69.759 +235370,359.07,69.062 +235371,1.0122,68.367 +235372,2.8922,67.673 +235373,355.7,69.69 +235374,357.74,69.025 +235375,359.71,68.36 +235376,1.6191,67.697 +235377,354.34,69.622 +235378,356.41,68.987 +235379,358.41,68.353 +235380,0.34458,67.722 +235381,352.98,69.552 +235382,355.08,68.949 +235383,357.11,68.347 +235384,359.07,67.748 +235385,351.62,69.482 +235386,353.75,68.911 +235387,355.8,68.341 +235388,357.79,67.774 +235389,350.26,69.412 +235390,352.42,68.872 +235391,354.5,68.335 +235392,356.51,67.8 +235393,348.91,69.341 +235394,351.09,68.834 +235395,353.2,68.329 +235396,355.23,67.827 +235397,347.55,69.27 +235398,349.77,68.795 +235399,351.89,68.323 +235400,353.95,67.854 +235401,346.2,69.198 +235402,348.44,68.757 +235403,350.59,68.318 +235404,352.66,67.882 +235405,344.85,69.126 +235406,347.11,68.718 +235407,349.28,68.312 +235408,351.38,67.91 +235409,343.5,69.054 +235410,345.79,68.679 +235411,347.98,68.307 +235412,350.09,67.938 +235413,342.15,68.981 +235414,344.46,68.639 +235415,346.67,68.301 +235416,348.8,67.967 +235417,340.81,68.908 +235418,343.13,68.6 +235419,345.37,68.296 +235420,347.51,67.996 +235421,339.47,68.835 +235422,341.81,68.561 +235423,344.06,68.291 +235424,346.22,68.025 +235425,338.12,68.761 +235426,340.49,68.521 +235427,342.75,68.286 +235428,344.93,68.054 +235429,336.78,68.687 +235430,339.16,68.482 +235431,341.44,68.281 +235432,343.63,68.084 +235433,335.44,68.613 +235434,337.84,68.442 +235435,340.13,68.276 +235436,342.34,68.113 +235437,334.11,68.539 +235438,336.52,68.403 +235439,338.82,68.271 +235440,341.04,68.143 +235441,332.77,68.464 +235442,335.2,68.363 +235443,337.51,68.266 +235444,339.74,68.173 +235445,331.44,68.39 +235446,333.88,68.323 +235447,336.2,68.261 +235448,338.43,68.203 +235449,330.11,68.315 +235450,332.56,68.284 +235451,334.89,68.256 +235452,337.13,68.233 +235453,328.78,68.241 +235454,331.24,68.244 +235455,333.58,68.251 +235456,335.83,68.263 +235457,327.45,68.166 +235458,329.92,68.204 +235459,332.27,68.246 +235460,334.52,68.292 +235461,326.13,68.091 +235462,328.6,68.164 +235463,330.95,68.241 +235464,333.21,68.322 +235465,324.8,68.016 +235466,327.28,68.124 +235467,329.64,68.236 +235468,331.9,68.352 +235469,323.48,67.942 +235470,325.96,68.085 +235471,328.33,68.231 +235472,330.59,68.382 +235473,322.16,67.867 +235474,324.65,68.045 +235475,327.01,68.226 +235476,329.27,68.411 +235477,320.84,67.792 +235478,323.33,68.005 +235479,325.7,68.221 +235480,327.96,68.441 +235481,319.53,67.718 +235482,322.02,67.965 +235483,324.38,68.216 +235484,326.64,68.47 +235485,318.21,67.644 +235486,320.7,67.926 +235487,323.06,68.211 +235488,325.32,68.499 +235489,316.9,67.57 +235490,319.39,67.886 +235491,321.75,68.206 +235492,324,68.528 +235493,315.59,67.496 +235494,318.07,67.847 +235495,320.43,68.2 +235496,322.68,68.556 +235497,314.28,67.422 +235498,316.76,67.807 +235499,319.11,68.195 +235500,321.35,68.585 +235501,312.98,67.349 +235502,315.45,67.768 +235503,317.79,68.189 +235504,320.03,68.613 +235505,311.67,67.276 +235506,314.14,67.729 +235507,316.47,68.184 +235508,318.7,68.64 +235509,310.37,67.203 +235510,312.83,67.689 +235511,315.15,68.178 +235512,317.37,68.667 +235513,309.07,67.131 +235514,311.52,67.65 +235515,313.83,68.172 +235516,316.04,68.694 +235517,307.77,67.059 +235518,310.21,67.611 +235519,312.51,68.166 +235520,314.71,68.72 +235521,306.47,66.987 +235522,308.9,67.573 +235523,311.19,68.159 +235524,313.37,68.746 +235525,305.18,66.916 +235526,307.59,67.534 +235527,309.87,68.153 +235528,312.04,68.772 +235529,303.88,66.846 +235530,306.28,67.496 +235531,308.55,68.146 +235532,310.7,68.797 +235533,302.59,66.775 +235534,304.97,67.457 +235535,307.22,68.139 +235536,309.36,68.821 +235537,301.3,66.706 +235538,303.67,67.419 +235539,305.9,68.133 +235540,308.02,68.845 +235541,300.02,66.637 +235542,302.36,67.381 +235543,304.58,68.125 +235544,306.68,68.868 +235545,298.73,66.568 +235546,301.06,67.343 +235547,303.25,68.118 +235548,305.33,68.891 +235549,297.45,66.5 +235550,299.75,67.306 +235551,301.93,68.11 +235552,303.99,68.913 +235553,296.16,66.433 +235554,298.45,67.268 +235555,300.6,68.103 +235556,302.64,68.934 +235557,294.88,66.366 +235558,297.14,67.231 +235559,299.27,68.094 +235560,301.29,68.955 +235561,293.61,66.3 +235562,295.84,67.194 +235563,297.95,68.086 +235564,299.94,68.975 +235565,292.33,66.235 +235566,294.54,67.157 +235567,296.62,68.078 +235568,298.59,68.994 +235569,291.05,66.17 +235570,293.24,67.121 +235571,295.29,68.069 +235572,297.24,69.012 +235573,289.78,66.106 +235574,291.93,67.085 +235575,293.96,68.06 +235576,295.88,69.03 +235577,288.51,66.043 +235578,290.63,67.049 +235579,292.63,68.051 +235580,294.53,69.047 +235581,287.24,65.98 +235582,289.33,67.013 +235583,291.3,68.041 +235584,293.17,69.063 +235585,285.97,65.919 +235586,288.03,66.977 +235587,289.97,68.031 +235588,291.81,69.079 +235589,284.7,65.858 +235590,286.73,66.942 +235591,288.64,68.021 +235592,290.45,69.093 +235593,283.44,65.798 +235594,285.43,66.907 +235595,287.31,68.01 +235596,289.09,69.107 +235597,282.17,65.739 +235598,284.14,66.872 +235599,285.98,68 +235600,287.72,69.12 +235601,280.91,65.681 +235602,282.84,66.838 +235603,284.65,67.989 +235604,286.36,69.131 +235605,279.65,65.624 +235606,281.54,66.804 +235607,283.32,67.977 +235608,284.99,69.142 +235609,278.39,65.568 +235610,280.24,66.77 +235611,281.99,67.966 +235612,283.63,69.152 +235613,277.13,65.512 +235614,278.95,66.737 +235615,280.65,67.954 +235616,282.26,69.161 +235617,275.88,65.458 +235618,277.65,66.704 +235619,279.32,67.941 +235620,280.89,69.169 +235621,274.62,65.404 +235622,276.36,66.671 +235623,277.99,67.928 +235624,279.52,69.176 +235625,273.37,65.352 +235626,275.06,66.638 +235627,276.65,67.915 +235628,278.15,69.182 +235629,272.12,65.301 +235630,273.77,66.606 +235631,275.32,67.902 +235632,276.77,69.187 +235633,270.87,65.25 +235634,272.47,66.574 +235635,273.98,67.888 +235636,275.4,69.191 +235637,269.62,65.201 +235638,271.18,66.543 +235639,272.65,67.874 +235640,274.02,69.194 +235641,268.37,65.153 +235642,269.89,66.512 +235643,271.31,67.86 +235644,272.65,69.196 +235645,267.12,65.106 +235646,268.59,66.481 +235647,269.97,67.845 +235648,271.27,69.197 +235649,265.87,65.06 +235650,267.3,66.45 +235651,268.64,67.83 +235652,269.89,69.196 +235653,264.63,65.015 +235654,266.01,66.42 +235655,267.3,67.814 +235656,268.51,69.195 +235657,263.38,64.971 +235658,264.72,66.39 +235659,265.96,67.798 +235660,267.13,69.192 +235661,262.14,64.929 +235662,263.43,66.361 +235663,264.63,67.782 +235664,265.75,69.189 +235665,260.9,64.887 +235666,262.14,66.332 +235667,263.29,67.765 +235668,264.37,69.184 +235669,259.66,64.847 +235670,260.84,66.304 +235671,261.95,67.748 +235672,262.98,69.178 +235673,258.42,64.808 +235674,259.55,66.275 +235675,260.61,67.73 +235676,261.6,69.171 +235677,257.18,64.77 +235678,258.26,66.247 +235679,259.27,67.712 +235680,260.22,69.163 +235681,255.94,64.733 +235682,256.97,66.22 +235683,257.94,67.694 +235684,258.83,69.153 +235685,254.7,64.697 +235686,255.68,66.193 +235687,256.6,67.675 +235688,257.44,69.142 +235689,253.46,64.663 +235690,254.4,66.166 +235691,255.26,67.656 +235692,256.06,69.131 +235693,252.23,64.63 +235694,253.11,66.14 +235695,253.92,67.636 +235696,254.67,69.118 +235697,250.99,64.598 +235698,251.82,66.114 +235699,252.58,67.616 +235700,253.28,69.103 +235701,249.76,64.567 +235702,250.53,66.089 +235703,251.24,67.596 +235704,251.89,69.088 +235705,248.52,64.537 +235706,249.24,66.063 +235707,249.9,67.575 +235708,250.5,69.071 +235709,247.29,64.509 +235710,247.95,66.039 +235711,248.56,67.554 +235712,249.11,69.053 +235713,246.05,64.482 +235714,246.66,66.014 +235715,247.22,67.532 +235716,247.72,69.034 +235717,244.82,64.456 +235718,245.38,65.991 +235719,245.88,67.51 +235720,246.33,69.014 +235721,243.59,64.432 +235722,244.09,65.967 +235723,244.54,67.488 +235724,244.94,68.993 +235725,242.36,64.408 +235726,242.8,65.944 +235727,243.2,67.465 +235728,243.55,68.97 +235729,241.12,64.386 +235730,241.51,65.921 +235731,241.86,67.441 +235732,242.15,68.946 +235733,239.89,64.365 +235734,240.23,65.899 +235735,240.52,67.418 +235736,240.76,68.921 +235737,238.66,64.346 +235738,238.94,65.877 +235739,239.17,67.394 +235740,239.37,68.894 +235741,237.43,64.327 +235742,237.65,65.856 +235743,237.83,67.369 +235744,237.98,68.867 +235745,236.2,64.31 +235746,236.36,65.834 +235747,236.49,67.344 +235748,236.58,68.838 +235749,234.97,64.294 +235750,235.08,65.814 +235751,235.15,67.319 +235752,235.19,68.808 +235753,233.73,64.28 +235754,233.79,65.793 +235755,233.81,67.293 +235756,233.79,68.776 +235757,232.5,64.266 +235758,232.5,65.774 +235759,232.47,67.266 +235760,232.4,68.744 +235761,231.27,64.254 +235762,231.22,65.754 +235763,231.13,67.24 +235764,231.01,68.71 +235765,230.04,64.243 +235766,229.93,65.735 +235767,229.79,67.213 +235768,229.61,68.675 +235769,228.81,64.233 +235770,228.64,65.716 +235771,228.45,67.185 +235772,228.22,68.639 +235773,227.58,64.225 +235774,227.36,65.698 +235775,227.11,67.157 +235776,226.82,68.602 +235777,226.34,64.217 +235778,226.07,65.68 +235779,225.76,67.129 +235780,225.43,68.563 +235781,225.11,64.211 +235782,224.78,65.662 +235783,224.42,67.1 +235784,224.04,68.524 +235785,223.88,64.206 +235786,223.49,65.645 +235787,223.08,67.071 +235788,222.64,68.483 +235789,222.65,64.202 +235790,222.21,65.628 +235791,221.74,67.042 +235792,221.25,68.441 +235793,221.41,64.2 +235794,220.92,65.612 +235795,220.4,67.012 +235796,219.86,68.398 +235797,220.18,64.198 +235798,219.63,65.596 +235799,219.06,66.982 +235800,218.46,68.354 +235801,218.94,64.198 +235802,218.34,65.58 +235803,217.72,66.951 +235804,217.07,68.308 +235805,217.71,64.198 +235806,217.06,65.565 +235807,216.38,66.92 +235808,215.68,68.262 +235809,216.47,64.2 +235810,215.77,65.55 +235811,215.04,66.888 +235812,214.29,68.214 +235813,215.24,64.203 +235814,214.48,65.535 +235815,213.7,66.856 +235816,212.89,68.165 +235817,214,64.207 +235818,213.19,65.521 +235819,212.36,66.824 +235820,211.5,68.115 +235821,212.76,64.212 +235822,211.9,65.507 +235823,211.02,66.792 +235824,210.11,68.064 +235825,211.52,64.218 +235826,210.62,65.494 +235827,209.68,66.759 +235828,208.72,68.012 +235829,210.28,64.225 +235830,209.33,65.48 +235831,208.34,66.726 +235832,207.33,67.959 +235833,209.05,64.233 +235834,208.04,65.467 +235835,207.01,66.692 +235836,205.94,67.905 +235837,207.8,64.243 +235838,206.75,65.455 +235839,205.67,66.658 +235840,204.56,67.85 +235841,206.56,64.253 +235842,205.46,65.442 +235843,204.33,66.624 +235844,203.17,67.794 +235845,205.32,64.264 +235846,204.17,65.431 +235847,202.99,66.589 +235848,201.78,67.737 +235849,204.08,64.276 +235850,202.88,65.419 +235851,201.65,66.554 +235852,200.4,67.679 +235853,202.83,64.289 +235854,201.59,65.408 +235855,200.32,66.519 +235856,199.01,67.62 +235857,201.59,64.303 +235858,200.3,65.396 +235859,198.98,66.483 +235860,197.63,67.56 +235861,200.34,64.317 +235862,199.01,65.386 +235863,197.64,66.447 +235864,196.24,67.5 +235865,199.09,64.333 +235866,197.72,65.375 +235867,196.31,66.411 +235868,194.86,67.438 +235869,197.84,64.35 +235870,196.42,65.365 +235871,194.97,66.374 +235872,193.48,67.375 +235873,196.59,64.367 +235874,195.13,65.355 +235875,193.63,66.337 +235876,192.1,67.312 +235877,195.34,64.385 +235878,193.84,65.345 +235879,192.3,66.3 +235880,190.72,67.248 +235881,194.09,64.404 +235882,192.55,65.336 +235883,190.96,66.263 +235884,189.34,67.183 +235885,192.84,64.423 +235886,191.25,65.327 +235887,189.63,66.225 +235888,187.96,67.117 +235889,191.58,64.444 +235890,189.96,65.318 +235891,188.3,66.187 +235892,186.59,67.05 +235893,190.33,64.465 +235894,188.67,65.309 +235895,186.96,66.149 +235896,185.21,66.983 +235897,189.07,64.487 +235898,187.37,65.301 +235899,185.63,66.11 +235900,183.84,66.915 +235901,187.81,64.509 +235902,186.08,65.292 +235903,184.3,66.072 +235904,182.46,66.846 +235905,186.55,64.532 +235906,184.78,65.284 +235907,182.96,66.033 +235908,181.09,66.776 +235909,185.29,64.556 +235910,183.49,65.276 +235911,181.63,65.994 +235912,179.72,66.706 +235913,184.02,64.58 +235914,182.19,65.269 +235915,180.3,65.954 +235916,178.35,66.635 +235917,182.76,64.605 +235918,180.89,65.261 +235919,178.97,65.915 +235920,176.99,66.564 +235921,181.49,64.63 +235922,179.6,65.254 +235923,177.64,65.875 +235924,175.62,66.492 +235925,180.23,64.656 +235926,178.3,65.247 +235927,176.31,65.835 +235928,174.26,66.42 +235929,178.96,64.682 +235930,177,65.239 +235931,174.98,65.795 +235932,172.89,66.346 +235933,177.69,64.709 +235934,175.7,65.233 +235935,173.65,65.754 +235936,171.53,66.273 +235937,176.42,64.736 +235938,174.4,65.226 +235939,172.32,65.714 +235940,170.17,66.199 +235941,175.14,64.763 +235942,173.1,65.219 +235943,171,65.673 +235944,168.81,66.124 +235945,173.87,64.791 +235946,171.8,65.213 +235947,169.67,65.633 +235948,167.46,66.049 +235949,172.59,64.819 +235950,170.5,65.206 +235951,168.34,65.592 +235952,166.1,65.974 +235953,171.31,64.848 +235954,169.2,65.2 +235955,167.02,65.551 +235956,164.75,65.898 +235957,170.03,64.877 +235958,167.9,65.194 +235959,165.69,65.509 +235960,163.39,65.822 +235961,168.75,64.906 +235962,166.6,65.188 +235963,164.37,65.468 +235964,162.04,65.746 +235965,167.47,64.935 +235966,165.3,65.182 +235967,163.04,65.427 +235968,160.7,65.669 +235969,166.18,64.965 +235970,163.99,65.176 +235971,161.72,65.385 +235972,159.35,65.592 +235973,164.89,64.994 +235974,162.69,65.17 +235975,160.4,65.344 +235976,158,65.515 +235977,163.61,65.024 +235978,161.38,65.164 +235979,159.07,65.302 +235980,156.66,65.438 +235981,162.32,65.054 +235982,160.08,65.158 +235983,157.75,65.26 +235984,155.32,65.36 +235985,161.02,65.084 +235986,158.77,65.152 +235987,156.43,65.219 +235988,153.98,65.283 +235989,159.73,65.114 +235990,157.47,65.146 +235991,155.11,65.177 +235992,152.64,65.205 +235993,158.44,65.144 +235994,156.16,65.14 +235995,153.79,65.135 +235996,151.3,65.127 +235997,157.14,65.174 +235998,154.85,65.134 +235999,152.47,65.093 +236000,149.97,65.049 +236001,155.84,65.204 +236002,153.55,65.129 +236003,151.15,65.051 +236004,148.64,64.971 +236005,154.54,65.234 +236006,152.24,65.123 +236007,149.83,65.009 +236008,147.31,64.893 +236009,153.24,65.264 +236010,150.93,65.117 +236011,148.52,64.967 +236012,145.98,64.815 +236013,151.93,65.294 +236014,149.62,65.111 +236015,147.2,64.925 +236016,144.65,64.737 +236017,150.63,65.323 +236018,148.31,65.105 +236019,145.88,64.884 +236020,143.33,64.659 +236021,149.32,65.353 +236022,147,65.099 +236023,144.57,64.842 +236024,142,64.582 +236025,148.01,65.382 +236026,145.69,65.092 +236027,143.25,64.8 +236028,140.68,64.504 +236029,146.7,65.411 +236030,144.38,65.086 +236031,141.94,64.758 +236032,139.36,64.427 +236033,145.39,65.44 +236034,143.06,65.08 +236035,140.62,64.717 +236036,138.05,64.349 +236037,144.07,65.468 +236038,141.75,65.073 +236039,139.31,64.675 +236040,136.73,64.272 +236041,142.76,65.496 +236042,140.44,65.067 +236043,138,64.634 +236044,135.42,64.196 +236045,141.44,65.524 +236046,139.12,65.06 +236047,136.69,64.592 +236048,134.11,64.119 +236049,140.12,65.551 +236050,137.81,65.053 +236051,135.37,64.551 +236052,132.8,64.043 +236053,138.8,65.578 +236054,136.49,65.046 +236055,134.06,64.51 +236056,131.49,63.967 +236057,137.47,65.605 +236058,135.18,65.039 +236059,132.75,64.469 +236060,130.19,63.892 +236061,136.15,65.631 +236062,133.86,65.032 +236063,131.45,64.428 +236064,128.88,63.817 +236065,134.82,65.656 +236066,132.54,65.025 +236067,130.14,64.387 +236068,127.58,63.742 +236069,133.49,65.681 +236070,131.23,65.017 +236071,128.83,64.346 +236072,126.28,63.668 +236073,132.16,65.706 +236074,129.91,65.009 +236075,127.52,64.306 +236076,124.99,63.595 +236077,130.83,65.73 +236078,128.59,65.001 +236079,126.22,64.265 +236080,123.69,63.522 +236081,129.5,65.753 +236082,127.27,64.993 +236083,124.91,64.225 +236084,122.4,63.449 +236085,128.16,65.776 +236086,125.95,64.985 +236087,123.6,64.185 +236088,121.11,63.377 +236089,126.83,65.798 +236090,124.63,64.976 +236091,122.3,64.145 +236092,119.82,63.306 +236093,125.49,65.819 +236094,123.31,64.967 +236095,121,64.106 +236096,118.53,63.235 +236097,124.15,65.84 +236098,121.99,64.958 +236099,119.69,64.066 +236100,117.24,63.165 +236101,122.81,65.86 +236102,120.66,64.949 +236103,118.39,64.027 +236104,115.96,63.095 +236105,121.46,65.88 +236106,119.34,64.939 +236107,117.09,63.988 +236108,114.68,63.026 +236109,120.12,65.898 +236110,118.02,64.929 +236111,115.79,63.949 +236112,113.4,62.958 +236113,118.77,65.916 +236114,116.69,64.919 +236115,114.49,63.911 +236116,112.12,62.891 +236117,117.42,65.933 +236118,115.37,64.909 +236119,113.18,63.873 +236120,110.85,62.825 +236121,116.08,65.949 +236122,114.05,64.898 +236123,111.89,63.835 +236124,109.57,62.759 +236125,114.72,65.965 +236126,112.72,64.887 +236127,110.59,63.797 +236128,108.3,62.694 +236129,113.37,65.979 +236130,111.39,64.876 +236131,109.29,63.759 +236132,107.03,62.63 +236133,112.02,65.993 +236134,110.07,64.864 +236135,107.99,63.722 +236136,105.76,62.567 +236137,110.66,66.005 +236138,108.74,64.852 +236139,106.69,63.685 +236140,104.49,62.504 +236141,109.31,66.017 +236142,107.41,64.84 +236143,105.4,63.649 +236144,103.23,62.443 +236145,107.95,66.028 +236146,106.09,64.828 +236147,104.1,63.612 +236148,101.97,62.382 +236149,106.59,66.038 +236150,104.76,64.815 +236151,102.8,63.576 +236152,100.7,62.323 +236153,105.23,66.046 +236154,103.43,64.802 +236155,101.51,63.541 +236156,99.444,62.264 +236157,103.86,66.054 +236158,102.1,64.788 +236159,100.21,63.505 +236160,98.186,62.207 +236161,102.5,66.061 +236162,100.77,64.774 +236163,98.919,63.47 +236164,96.929,62.15 +236165,101.14,66.067 +236166,99.44,64.76 +236167,97.626,63.436 +236168,95.674,62.095 +236169,99.769,66.071 +236170,98.11,64.745 +236171,96.333,63.401 +236172,94.42,62.04 +236173,98.402,66.075 +236174,96.779,64.73 +236175,95.04,63.367 +236176,93.168,61.987 +236177,97.033,66.078 +236178,95.448,64.715 +236179,93.748,63.333 +236180,91.917,61.934 +236181,95.663,66.079 +236182,94.116,64.699 +236183,92.456,63.3 +236184,90.668,61.883 +236185,94.292,66.079 +236186,92.784,64.683 +236187,91.165,63.267 +236188,89.42,61.833 +236189,92.92,66.079 +236190,91.451,64.666 +236191,89.874,63.235 +236192,88.173,61.784 +236193,91.546,66.077 +236194,90.118,64.649 +236195,88.584,63.202 +236196,86.928,61.736 +236197,90.172,66.074 +236198,88.785,64.632 +236199,87.294,63.17 +236200,85.684,61.689 +236201,88.796,66.069 +236202,87.451,64.614 +236203,86.005,63.139 +236204,84.442,61.644 +236205,87.419,66.064 +236206,86.117,64.596 +236207,84.715,63.108 +236208,83.2,61.6 +236209,86.042,66.057 +236210,84.783,64.578 +236211,83.427,63.077 +236212,81.96,61.556 +236213,84.663,66.05 +236214,83.448,64.559 +236215,82.139,63.047 +236216,80.721,61.514 +236217,83.284,66.041 +236218,82.113,64.539 +236219,80.851,63.017 +236220,79.483,61.474 +236221,81.903,66.03 +236222,80.778,64.52 +236223,79.563,62.987 +236224,78.246,61.434 +236225,80.522,66.019 +236226,79.443,64.499 +236227,78.276,62.958 +236228,77.01,61.396 +236229,79.139,66.006 +236230,78.107,64.479 +236231,76.989,62.929 +236232,75.775,61.359 +236233,77.756,65.992 +236234,76.771,64.458 +236235,75.702,62.901 +236236,74.541,61.323 +236237,76.372,65.977 +236238,75.434,64.436 +236239,74.416,62.873 +236240,73.307,61.289 +236241,74.988,65.961 +236242,74.098,64.414 +236243,73.13,62.846 +236244,72.075,61.255 +236245,73.602,65.943 +236246,72.761,64.392 +236247,71.845,62.818 +236248,70.843,61.223 +236249,72.216,65.924 +236250,71.424,64.369 +236251,70.559,62.792 +236252,69.613,61.193 +236253,70.829,65.904 +236254,70.087,64.346 +236255,69.274,62.765 +236256,68.382,61.163 +236257,69.442,65.883 +236258,68.749,64.322 +236259,67.989,62.739 +236260,67.153,61.135 +236261,68.054,65.86 +236262,67.412,64.298 +236263,66.704,62.714 +236264,65.924,61.108 +236265,66.665,65.836 +236266,66.074,64.273 +236267,65.42,62.689 +236268,64.696,61.083 +236269,65.276,65.811 +236270,64.736,64.248 +236271,64.136,62.664 +236272,63.468,61.059 +236273,63.886,65.784 +236274,63.398,64.223 +236275,62.852,62.64 +236276,62.241,61.036 +236277,62.496,65.756 +236278,62.06,64.197 +236279,61.568,62.616 +236280,61.014,61.014 +236281,61.106,65.727 +236282,60.722,64.171 +236283,60.284,62.593 +236284,59.787,60.993 +236285,59.715,65.697 +236286,59.383,64.144 +236287,59,62.57 +236288,58.561,60.974 +236289,58.323,65.665 +236290,58.045,64.117 +236291,57.717,62.547 +236292,57.335,60.956 +236293,56.932,65.632 +236294,56.706,64.089 +236295,56.433,62.525 +236296,56.11,60.94 +236297,55.54,65.598 +236298,55.367,64.061 +236299,55.15,62.503 +236300,54.884,60.925 +236301,54.148,65.563 +236302,54.029,64.033 +236303,53.867,62.482 +236304,53.659,60.911 +236305,52.755,65.526 +236306,52.69,64.004 +236307,52.584,62.461 +236308,52.434,60.898 +236309,51.363,65.488 +236310,51.351,63.974 +236311,51.301,62.44 +236312,51.208,60.886 +236313,49.97,65.449 +236314,50.012,63.945 +236315,50.018,62.42 +236316,49.983,60.876 +236317,48.578,65.408 +236318,48.674,63.914 +236319,48.735,62.401 +236320,48.758,60.867 +236321,47.185,65.366 +236322,47.335,63.884 +236323,47.452,62.381 +236324,47.533,60.859 +236325,45.792,65.324 +236326,45.996,63.853 +236327,46.169,62.362 +236328,46.307,60.853 +236329,44.399,65.279 +236330,44.658,63.821 +236331,44.886,62.344 +236332,45.081,60.848 +236333,43.006,65.234 +236334,43.319,63.789 +236335,43.603,62.326 +236336,43.856,60.844 +236337,41.614,65.187 +236338,41.981,63.757 +236339,42.319,62.308 +236340,42.629,60.841 +236341,40.221,65.14 +236342,40.642,63.724 +236343,41.036,62.29 +236344,41.403,60.839 +236345,38.829,65.091 +236346,39.304,63.691 +236347,39.753,62.273 +236348,40.176,60.838 +236349,37.437,65.041 +236350,37.966,63.658 +236351,38.47,62.257 +236352,38.949,60.839 +236353,36.045,64.989 +236354,36.627,63.624 +236355,37.186,62.24 +236356,37.721,60.841 +236357,34.653,64.937 +236358,35.289,63.589 +236359,35.903,62.225 +236360,36.493,60.844 +236361,33.262,64.883 +236362,33.952,63.555 +236363,34.619,62.209 +236364,35.264,60.848 +236365,31.871,64.829 +236366,32.614,63.519 +236367,33.335,62.194 +236368,34.034,60.853 +236369,30.48,64.773 +236370,31.277,63.484 +236371,32.051,62.179 +236372,32.804,60.859 +236373,29.09,64.716 +236374,29.939,63.448 +236375,30.767,62.164 +236376,31.574,60.866 +236377,27.7,64.658 +236378,28.602,63.412 +236379,29.483,62.15 +236380,30.342,60.875 +236381,26.311,64.599 +236382,27.266,63.375 +236383,28.198,62.136 +236384,29.11,60.884 +236385,24.923,64.539 +236386,25.929,63.338 +236387,26.913,62.123 +236388,27.877,60.895 +236389,23.535,64.478 +236390,24.593,63.301 +236391,25.628,62.11 +236392,26.643,60.906 +236393,22.147,64.416 +236394,23.257,63.263 +236395,24.343,62.097 +236396,25.409,60.918 +236397,20.761,64.353 +236398,21.921,63.225 +236399,23.058,62.084 +236400,24.173,60.932 +236401,19.375,64.289 +236402,20.585,63.187 +236403,21.772,62.072 +236404,22.936,60.946 +236405,17.99,64.224 +236406,19.25,63.148 +236407,20.486,62.06 +236408,21.699,60.961 +236409,16.605,64.158 +236410,17.915,63.109 +236411,19.199,62.049 +236412,20.46,60.977 +236413,15.221,64.091 +236414,16.581,63.07 +236415,17.913,62.037 +236416,19.221,60.994 +236417,13.839,64.023 +236418,15.246,63.03 +236419,16.626,62.026 +236420,17.98,61.012 +236421,12.457,63.954 +236422,13.912,62.99 +236423,15.339,62.015 +236424,16.738,61.03 +236425,11.076,63.885 +236426,12.579,62.95 +236427,14.051,62.005 +236428,15.495,61.05 +236429,9.696,63.815 +236430,11.246,62.91 +236431,12.763,61.994 +236432,14.251,61.07 +236433,8.3171,63.743 +236434,9.9131,62.869 +236435,11.475,61.984 +236436,13.006,61.091 +236437,6.9392,63.672 +236438,8.5808,62.828 +236439,10.186,61.974 +236440,11.759,61.112 +236441,5.5625,63.599 +236442,7.2488,62.787 +236443,8.8969,61.965 +236444,10.511,61.134 +236445,4.1868,63.525 +236446,5.9173,62.745 +236447,7.6074,61.955 +236448,9.2618,61.157 +236449,2.8123,63.451 +236450,4.5863,62.703 +236451,6.3176,61.946 +236452,8.0112,61.181 +236453,1.439,63.377 +236454,3.2556,62.661 +236455,5.0273,61.937 +236456,6.7592,61.205 +236457,0.066895,63.301 +236458,1.9255,62.619 +236459,3.7366,61.928 +236460,5.5058,61.23 +236461,358.7,63.225 +236462,0.59575,62.577 +236463,2.4454,61.92 +236464,4.251,61.256 +236465,357.33,63.148 +236466,359.27,62.534 +236467,1.1538,61.911 +236468,2.9948,61.282 +236469,355.96,63.071 +236470,357.94,62.491 +236471,359.86,61.903 +236472,1.7371,61.308 +236473,354.59,62.993 +236474,356.61,62.448 +236475,358.57,61.895 +236476,0.47785,61.335 +236477,353.23,62.915 +236478,355.28,62.405 +236479,357.28,61.887 +236480,359.22,61.362 +236481,351.86,62.836 +236482,353.95,62.361 +236483,355.98,61.879 +236484,357.95,61.39 +236485,350.5,62.757 +236486,352.63,62.318 +236487,354.69,61.871 +236488,356.69,61.418 +236489,349.14,62.677 +236490,351.3,62.274 +236491,353.39,61.863 +236492,355.43,61.447 +236493,347.78,62.597 +236494,349.98,62.23 +236495,352.1,61.856 +236496,354.16,61.476 +236497,346.42,62.516 +236498,348.65,62.186 +236499,350.8,61.849 +236500,352.89,61.505 +236501,345.06,62.435 +236502,347.33,62.142 +236503,349.51,61.841 +236504,351.62,61.534 +236505,343.71,62.354 +236506,346,62.098 +236507,348.21,61.834 +236508,350.35,61.564 +236509,342.36,62.272 +236510,344.68,62.053 +236511,346.91,61.827 +236512,349.07,61.594 +236513,341.01,62.19 +236514,343.36,62.009 +236515,345.62,61.82 +236516,347.8,61.624 +236517,339.66,62.108 +236518,342.03,61.964 +236519,344.32,61.813 +236520,346.52,61.655 +236521,338.31,62.026 +236522,340.71,61.92 +236523,343.02,61.806 +236524,345.24,61.685 +236525,336.96,61.943 +236526,339.39,61.875 +236527,341.72,61.799 +236528,343.96,61.716 +236529,335.62,61.861 +236530,338.07,61.83 +236531,340.42,61.792 +236532,342.68,61.746 +236533,334.27,61.778 +236534,336.75,61.786 +236535,339.12,61.785 +236536,341.4,61.777 +236537,332.93,61.695 +236538,335.43,61.741 +236539,337.82,61.778 +236540,340.11,61.808 +236541,331.59,61.612 +236542,334.11,61.696 +236543,336.52,61.771 +236544,338.82,61.838 +236545,330.26,61.529 +236546,332.8,61.651 +236547,335.22,61.764 +236548,337.54,61.869 +236549,328.92,61.446 +236550,331.48,61.606 +236551,333.91,61.757 +236552,336.24,61.899 +236553,327.59,61.363 +236554,330.16,61.561 +236555,332.61,61.75 +236556,334.95,61.93 +236557,326.26,61.28 +236558,328.85,61.516 +236559,331.31,61.742 +236560,333.66,61.96 +236561,324.93,61.197 +236562,327.53,61.471 +236563,330,61.735 +236564,332.36,61.99 +236565,323.6,61.115 +236566,326.22,61.427 +236567,328.7,61.728 +236568,331.06,62.02 +236569,322.28,61.032 +236570,324.9,61.382 +236571,327.39,61.721 +236572,329.76,62.05 +236573,320.95,60.95 +236574,323.59,61.337 +236575,326.09,61.713 +236576,328.46,62.079 +236577,319.63,60.868 +236578,322.28,61.293 +236579,324.78,61.706 +236580,327.16,62.108 +236581,318.31,60.786 +236582,320.97,61.248 +236583,323.47,61.698 +236584,325.85,62.137 +236585,316.99,60.704 +236586,319.65,61.204 +236587,322.16,61.69 +236588,324.55,62.166 +236589,315.68,60.623 +236590,318.34,61.159 +236591,320.86,61.682 +236592,323.24,62.194 +236593,314.36,60.542 +236594,317.03,61.115 +236595,319.55,61.674 +236596,321.93,62.221 +236597,313.05,60.461 +236598,315.72,61.071 +236599,318.24,61.666 +236600,320.62,62.249 +236601,311.74,60.381 +236602,314.42,61.027 +236603,316.93,61.658 +236604,319.3,62.275 +236605,310.44,60.301 +236606,313.11,60.983 +236607,315.62,61.649 +236608,317.99,62.302 +236609,309.13,60.222 +236610,311.8,60.939 +236611,314.31,61.641 +236612,316.67,62.328 +236613,307.83,60.143 +236614,310.49,60.896 +236615,312.99,61.632 +236616,315.35,62.353 +236617,306.53,60.065 +236618,309.19,60.852 +236619,311.68,61.623 +236620,314.03,62.378 +236621,305.23,59.987 +236622,307.88,60.809 +236623,310.37,61.613 +236624,312.71,62.402 +236625,303.93,59.91 +236626,306.58,60.766 +236627,309.05,61.604 +236628,311.38,62.425 +236629,302.64,59.833 +236630,305.28,60.723 +236631,307.74,61.594 +236632,310.05,62.448 +236633,301.34,59.758 +236634,303.97,60.68 +236635,306.42,61.584 +236636,308.73,62.47 +236637,300.05,59.682 +236638,302.67,60.638 +236639,305.11,61.574 +236640,307.4,62.491 +236641,298.77,59.608 +236642,301.37,60.596 +236643,303.79,61.563 +236644,306.07,62.512 +236645,297.48,59.534 +236646,300.07,60.554 +236647,302.48,61.553 +236648,304.73,62.532 +236649,296.19,59.461 +236650,298.77,60.512 +236651,301.16,61.542 +236652,303.4,62.551 +236653,294.91,59.388 +236654,297.47,60.47 +236655,299.84,61.53 +236656,302.06,62.57 +236657,293.63,59.317 +236658,296.17,60.429 +236659,298.52,61.519 +236660,300.72,62.587 +236661,292.35,59.246 +236662,294.87,60.388 +236663,297.2,61.507 +236664,299.38,62.604 +236665,291.08,59.176 +236666,293.57,60.347 +236667,295.88,61.495 +236668,298.04,62.62 +236669,289.8,59.107 +236670,292.28,60.307 +236671,294.57,61.482 +236672,296.7,62.635 +236673,288.53,59.039 +236674,290.98,60.267 +236675,293.24,61.469 +236676,295.36,62.649 +236677,287.26,58.972 +236678,289.68,60.227 +236679,291.92,61.456 +236680,294.01,62.662 +236681,285.99,58.906 +236682,288.39,60.187 +236683,290.6,61.443 +236684,292.66,62.674 +236685,284.72,58.84 +236686,287.09,60.148 +236687,289.28,61.429 +236688,291.31,62.685 +236689,283.46,58.776 +236690,285.8,60.109 +236691,287.96,61.415 +236692,289.96,62.695 +236693,282.2,58.713 +236694,284.51,60.07 +236695,286.63,61.4 +236696,288.61,62.704 +236697,280.94,58.651 +236698,283.21,60.032 +236699,285.31,61.386 +236700,287.26,62.713 +236701,279.68,58.589 +236702,281.92,59.994 +236703,283.99,61.37 +236704,285.9,62.72 +236705,278.42,58.529 +236706,280.63,59.956 +236707,282.66,61.355 +236708,284.55,62.726 +236709,277.16,58.47 +236710,279.34,59.919 +236711,281.34,61.339 +236712,283.19,62.73 +236713,275.91,58.413 +236714,278.05,59.882 +236715,280.01,61.322 +236716,281.83,62.734 +236717,274.66,58.356 +236718,276.76,59.846 +236719,278.69,61.306 +236720,280.47,62.737 +236721,273.41,58.3 +236722,275.47,59.81 +236723,277.36,61.289 +236724,279.11,62.738 +236725,272.16,58.246 +236726,274.18,59.774 +236727,276.03,61.271 +236728,277.75,62.739 +236729,270.91,58.193 +236730,272.89,59.738 +236731,274.71,61.253 +236732,276.38,62.738 +236733,269.67,58.141 +236734,271.6,59.703 +236735,273.38,61.235 +236736,275.02,62.736 +236737,268.42,58.09 +236738,270.32,59.669 +236739,272.05,61.216 +236740,273.65,62.733 +236741,267.18,58.04 +236742,269.03,59.635 +236743,270.72,61.197 +236744,272.28,62.728 +236745,265.94,57.992 +236746,267.74,59.601 +236747,269.39,61.177 +236748,270.91,62.723 +236749,264.7,57.945 +236750,266.46,59.567 +236751,268.06,61.157 +236752,269.54,62.716 +236753,263.46,57.899 +236754,265.17,59.534 +236755,266.73,61.137 +236756,268.17,62.708 +236757,262.22,57.855 +236758,263.89,59.502 +236759,265.4,61.116 +236760,266.8,62.698 +236761,260.99,57.811 +236762,262.6,59.469 +236763,264.07,61.094 +236764,265.43,62.687 +236765,259.75,57.769 +236766,261.32,59.438 +236767,262.74,61.073 +236768,264.05,62.676 +236769,258.52,57.729 +236770,260.03,59.406 +236771,261.41,61.05 +236772,262.68,62.662 +236773,257.29,57.69 +236774,258.75,59.375 +236775,260.08,61.028 +236776,261.3,62.648 +236777,256.06,57.652 +236778,257.47,59.345 +236779,258.75,61.005 +236780,259.92,62.632 +236781,254.83,57.615 +236782,256.19,59.315 +236783,257.42,60.981 +236784,258.54,62.615 +236785,253.6,57.58 +236786,254.9,59.285 +236787,256.09,60.957 +236788,257.16,62.596 +236789,252.37,57.546 +236790,253.62,59.256 +236791,254.75,60.932 +236792,255.78,62.576 +236793,251.15,57.514 +236794,252.34,59.227 +236795,253.42,60.907 +236796,254.4,62.555 +236797,249.92,57.482 +236798,251.06,59.199 +236799,252.09,60.882 +236800,253.02,62.533 +236801,248.7,57.453 +236802,249.78,59.171 +236803,250.76,60.856 +236804,251.64,62.509 +236805,247.47,57.424 +236806,248.5,59.143 +236807,249.42,60.83 +236808,250.26,62.484 +236809,246.25,57.397 +236810,247.22,59.116 +236811,248.09,60.803 +236812,248.87,62.458 +236813,245.03,57.371 +236814,245.94,59.09 +236815,246.75,60.776 +236816,247.49,62.43 +236817,243.8,57.347 +236818,244.66,59.064 +236819,245.42,60.748 +236820,246.1,62.401 +236821,242.58,57.324 +236822,243.38,59.038 +236823,244.09,60.72 +236824,244.72,62.37 +236825,241.36,57.303 +236826,242.1,59.013 +236827,242.75,60.691 +236828,243.33,62.338 +236829,240.14,57.283 +236830,240.82,58.988 +236831,241.42,60.662 +236832,241.95,62.305 +236833,238.92,57.264 +236834,239.54,58.964 +236835,240.08,60.632 +236836,240.56,62.27 +236837,237.7,57.246 +236838,238.26,58.94 +236839,238.75,60.602 +236840,239.17,62.235 +236841,236.48,57.23 +236842,236.98,58.916 +236843,237.41,60.572 +236844,237.78,62.197 +236845,235.27,57.215 +236846,235.71,58.893 +236847,236.08,60.541 +236848,236.4,62.159 +236849,234.05,57.202 +236850,234.43,58.87 +236851,234.74,60.509 +236852,235.01,62.119 +236853,232.83,57.19 +236854,233.15,58.848 +236855,233.41,60.477 +236856,233.62,62.078 +236857,231.61,57.179 +236858,231.87,58.826 +236859,232.07,60.445 +236860,232.23,62.035 +236861,230.39,57.17 +236862,230.59,58.805 +236863,230.74,60.412 +236864,230.84,61.991 +236865,229.18,57.162 +236866,229.32,58.784 +236867,229.4,60.379 +236868,229.45,61.946 +236869,227.96,57.155 +236870,228.04,58.764 +236871,228.07,60.345 +236872,228.06,61.9 +236873,226.74,57.15 +236874,226.76,58.744 +236875,226.73,60.311 +236876,226.67,61.852 +236877,225.52,57.145 +236878,225.48,58.724 +236879,225.4,60.277 +236880,225.28,61.803 +236881,224.31,57.143 +236882,224.2,58.705 +236883,224.06,60.241 +236884,223.89,61.752 +236885,223.09,57.141 +236886,222.93,58.686 +236887,222.73,60.206 +236888,222.5,61.701 +236889,221.87,57.14 +236890,221.65,58.667 +236891,221.4,60.17 +236892,221.11,61.648 +236893,220.65,57.141 +236894,220.37,58.649 +236895,220.06,60.134 +236896,219.72,61.594 +236897,219.43,57.143 +236898,219.09,58.632 +236899,218.73,60.097 +236900,218.33,61.538 +236901,218.21,57.147 +236902,217.82,58.615 +236903,217.39,60.06 +236904,216.94,61.482 +236905,216.99,57.151 +236906,216.54,58.598 +236907,216.06,60.022 +236908,215.55,61.424 +236909,215.77,57.157 +236910,215.26,58.581 +236911,214.72,59.984 +236912,214.16,61.365 +236913,214.55,57.163 +236914,213.98,58.565 +236915,213.39,59.946 +236916,212.77,61.305 +236917,213.33,57.171 +236918,212.7,58.549 +236919,212.05,59.907 +236920,211.39,61.244 +236921,212.11,57.18 +236922,211.43,58.534 +236923,210.72,59.868 +236924,210,61.181 +236925,210.89,57.19 +236926,210.15,58.519 +236927,209.39,59.828 +236928,208.61,61.118 +236929,209.67,57.201 +236930,208.87,58.504 +236931,208.05,59.788 +236932,207.22,61.053 +236933,208.44,57.214 +236934,207.59,58.49 +236935,206.72,59.748 +236936,205.83,60.987 +236937,207.22,57.227 +236938,206.31,58.476 +236939,205.39,59.707 +236940,204.45,60.921 +236941,205.99,57.241 +236942,205.03,58.462 +236943,204.05,59.666 +236944,203.06,60.853 +236945,204.77,57.256 +236946,203.75,58.449 +236947,202.72,59.625 +236948,201.68,60.784 +236949,203.54,57.273 +236950,202.47,58.436 +236951,201.39,59.583 +236952,200.29,60.714 +236953,202.31,57.29 +236954,201.19,58.423 +236955,200.06,59.541 +236956,198.91,60.643 +236957,201.08,57.308 +236958,199.91,58.411 +236959,198.73,59.499 +236960,197.52,60.571 +236961,199.85,57.327 +236962,198.63,58.399 +236963,197.39,59.456 +236964,196.14,60.498 +236965,198.62,57.347 +236966,197.35,58.387 +236967,196.06,59.413 +236968,194.76,60.424 +236969,197.39,57.367 +236970,196.07,58.375 +236971,194.73,59.37 +236972,193.38,60.349 +236973,196.15,57.389 +236974,194.79,58.364 +236975,193.4,59.326 +236976,192,60.274 +236977,194.92,57.411 +236978,193.51,58.353 +236979,192.07,59.282 +236980,190.62,60.197 +236981,193.68,57.434 +236982,192.22,58.342 +236983,190.74,59.238 +236984,189.24,60.12 +236985,192.45,57.458 +236986,190.94,58.331 +236987,189.41,59.193 +236988,187.86,60.042 +236989,191.21,57.483 +236990,189.66,58.321 +236991,188.09,59.148 +236992,186.48,59.963 +236993,189.97,57.508 +236994,188.38,58.311 +236995,186.76,59.103 +236996,185.11,59.883 +236997,188.73,57.534 +236998,187.09,58.301 +236999,185.43,59.058 +237000,183.73,59.803 +237001,187.49,57.56 +237002,185.81,58.292 +237003,184.1,59.013 +237004,182.36,59.721 +237005,186.24,57.587 +237006,184.52,58.282 +237007,182.77,58.967 +237008,180.99,59.64 +237009,185,57.615 +237010,183.24,58.273 +237011,181.45,58.921 +237012,179.62,59.557 +237013,183.75,57.643 +237014,181.95,58.264 +237015,180.12,58.875 +237016,178.25,59.474 +237017,182.5,57.672 +237018,180.67,58.255 +237019,178.8,58.828 +237020,176.88,59.39 +237021,181.26,57.701 +237022,179.38,58.246 +237023,177.47,58.782 +237024,175.51,59.306 +237025,180,57.73 +237026,178.1,58.237 +237027,176.15,58.735 +237028,174.15,59.221 +237029,178.75,57.76 +237030,176.81,58.229 +237031,174.82,58.688 +237032,172.78,59.136 +237033,177.5,57.791 +237034,175.52,58.22 +237035,173.5,58.641 +237036,171.42,59.05 +237037,176.24,57.822 +237038,174.23,58.212 +237039,172.18,58.593 +237040,170.06,58.963 +237041,174.99,57.853 +237042,172.95,58.204 +237043,170.85,58.546 +237044,168.7,58.877 +237045,173.73,57.884 +237046,171.66,58.196 +237047,169.53,58.499 +237048,167.34,58.789 +237049,172.47,57.916 +237050,170.37,58.188 +237051,168.21,58.451 +237052,165.98,58.702 +237053,171.2,57.948 +237054,169.08,58.18 +237055,166.89,58.403 +237056,164.62,58.614 +237057,169.94,57.98 +237058,167.79,58.172 +237059,165.57,58.355 +237060,163.27,58.526 +237061,168.67,58.012 +237062,166.5,58.165 +237063,164.25,58.307 +237064,161.92,58.437 +237065,167.41,58.044 +237066,165.21,58.157 +237067,162.93,58.259 +237068,160.57,58.349 +237069,166.14,58.077 +237070,163.91,58.149 +237071,161.61,58.211 +237072,159.22,58.26 +237073,164.87,58.109 +237074,162.62,58.142 +237075,160.29,58.163 +237076,157.87,58.171 +237077,163.6,58.142 +237078,161.33,58.134 +237079,158.98,58.115 +237080,156.52,58.082 +237081,162.32,58.175 +237082,160.04,58.126 +237083,157.66,58.066 +237084,155.18,57.992 +237085,161.05,58.207 +237086,158.74,58.119 +237087,156.34,58.018 +237088,153.84,57.903 +237089,159.77,58.24 +237090,157.45,58.111 +237091,155.03,57.97 +237092,152.5,57.814 +237093,158.49,58.272 +237094,156.15,58.103 +237095,153.71,57.921 +237096,151.16,57.724 +237097,157.21,58.305 +237098,154.86,58.096 +237099,152.4,57.873 +237100,149.82,57.635 +237101,155.92,58.337 +237102,153.56,58.088 +237103,151.09,57.825 +237104,148.49,57.545 +237105,154.64,58.369 +237106,152.26,58.08 +237107,149.77,57.777 +237108,147.15,57.456 +237109,153.35,58.401 +237110,150.96,58.072 +237111,148.46,57.728 +237112,145.82,57.367 +237113,152.06,58.432 +237114,149.67,58.064 +237115,147.15,57.68 +237116,144.49,57.278 +237117,150.77,58.463 +237118,148.37,58.056 +237119,145.84,57.632 +237120,143.17,57.189 +237121,149.48,58.494 +237122,147.07,58.048 +237123,144.53,57.584 +237124,141.84,57.101 +237125,148.19,58.525 +237126,145.77,58.039 +237127,143.22,57.536 +237128,140.52,57.013 +237129,146.89,58.555 +237130,144.47,58.031 +237131,141.91,57.488 +237132,139.2,56.925 +237133,145.59,58.585 +237134,143.17,58.022 +237135,140.6,57.441 +237136,137.88,56.837 +237137,144.3,58.615 +237138,141.87,58.014 +237139,139.3,57.393 +237140,136.56,56.75 +237141,142.99,58.644 +237142,140.56,58.005 +237143,137.99,57.345 +237144,135.25,56.663 +237145,141.69,58.672 +237146,139.26,57.996 +237147,136.68,57.298 +237148,133.94,56.576 +237149,140.39,58.7 +237150,137.96,57.987 +237151,135.38,57.251 +237152,132.63,56.49 +237153,139.08,58.727 +237154,136.65,57.977 +237155,134.08,57.204 +237156,131.32,56.404 +237157,137.77,58.754 +237158,135.35,57.968 +237159,132.77,57.157 +237160,130.01,56.319 +237161,136.46,58.781 +237162,134.04,57.958 +237163,131.47,57.11 +237164,128.71,56.235 +237165,135.15,58.806 +237166,132.74,57.948 +237167,130.17,57.064 +237168,127.41,56.151 +237169,133.84,58.831 +237170,131.43,57.937 +237171,128.87,57.017 +237172,126.11,56.068 +237173,132.52,58.855 +237174,130.12,57.927 +237175,127.56,56.971 +237176,124.81,55.985 +237177,131.2,58.879 +237178,128.82,57.916 +237179,126.26,56.925 +237180,123.51,55.903 +237181,129.88,58.902 +237182,127.51,57.905 +237183,124.97,56.88 +237184,122.22,55.822 +237185,128.56,58.924 +237186,126.2,57.894 +237187,123.67,56.834 +237188,120.93,55.742 +237189,127.24,58.945 +237190,124.89,57.883 +237191,122.37,56.789 +237192,119.64,55.662 +237193,125.92,58.966 +237194,123.58,57.871 +237195,121.07,56.744 +237196,118.35,55.583 +237197,124.59,58.985 +237198,122.27,57.859 +237199,119.78,56.7 +237200,117.07,55.505 +237201,123.26,59.004 +237202,120.96,57.846 +237203,118.48,56.655 +237204,115.79,55.428 +237205,121.93,59.022 +237206,119.65,57.834 +237207,117.18,56.611 +237208,114.51,55.351 +237209,120.6,59.039 +237210,118.34,57.821 +237211,115.89,56.568 +237212,113.23,55.276 +237213,119.27,59.055 +237214,117.02,57.807 +237215,114.6,56.524 +237216,111.95,55.201 +237217,117.94,59.07 +237218,115.71,57.793 +237219,113.3,56.481 +237220,110.68,55.128 +237221,116.6,59.084 +237222,114.4,57.779 +237223,112.01,56.438 +237224,109.41,55.055 +237225,115.26,59.097 +237226,113.08,57.765 +237227,110.72,56.396 +237228,108.14,54.984 +237229,113.92,59.108 +237230,111.77,57.75 +237231,109.43,56.353 +237232,106.87,54.914 +237233,112.58,59.119 +237234,110.45,57.735 +237235,108.14,56.312 +237236,105.61,54.844 +237237,111.24,59.129 +237238,109.14,57.72 +237239,106.85,56.27 +237240,104.34,54.776 +237241,109.9,59.138 +237242,107.82,57.704 +237243,105.56,56.229 +237244,103.08,54.709 +237245,108.55,59.146 +237246,106.5,57.688 +237247,104.27,56.188 +237248,101.82,54.643 +237249,107.21,59.152 +237250,105.18,57.671 +237251,102.98,56.148 +237252,100.57,54.578 +237253,105.86,59.157 +237254,103.87,57.654 +237255,101.7,56.108 +237256,99.311,54.515 +237257,104.51,59.161 +237258,102.55,57.637 +237259,100.41,56.068 +237260,98.057,54.452 +237261,103.16,59.164 +237262,101.23,57.619 +237263,99.125,56.029 +237264,96.806,54.391 +237265,101.8,59.166 +237266,99.911,57.601 +237267,97.84,55.99 +237268,95.557,54.331 +237269,100.45,59.167 +237270,98.591,57.582 +237271,96.556,55.952 +237272,94.309,54.273 +237273,99.096,59.166 +237274,97.271,57.563 +237275,95.272,55.914 +237276,93.063,54.215 +237277,97.74,59.164 +237278,95.95,57.543 +237279,93.988,55.877 +237280,91.819,54.159 +237281,96.383,59.161 +237282,94.629,57.523 +237283,92.705,55.839 +237284,90.577,54.105 +237285,95.024,59.156 +237286,93.307,57.503 +237287,91.423,55.803 +237288,89.337,54.051 +237289,93.664,59.15 +237290,91.985,57.482 +237291,90.142,55.767 +237292,88.098,53.999 +237293,92.302,59.143 +237294,90.663,57.461 +237295,88.86,55.731 +237296,86.861,53.949 +237297,90.94,59.135 +237298,89.34,57.439 +237299,87.58,55.695 +237300,85.626,53.9 +237301,89.576,59.125 +237302,88.017,57.417 +237303,86.3,55.661 +237304,84.392,53.852 +237305,88.212,59.114 +237306,86.694,57.394 +237307,85.02,55.626 +237308,83.16,53.805 +237309,86.846,59.101 +237310,85.37,57.371 +237311,83.741,55.592 +237312,81.929,53.761 +237313,85.479,59.088 +237314,84.046,57.347 +237315,82.463,55.559 +237316,80.699,53.717 +237317,84.111,59.072 +237318,82.721,57.323 +237319,81.185,55.526 +237320,79.472,53.675 +237321,82.742,59.056 +237322,81.396,57.299 +237323,79.907,55.493 +237324,78.245,53.634 +237325,81.372,59.038 +237326,80.071,57.274 +237327,78.63,55.461 +237328,77.02,53.595 +237329,80.001,59.018 +237330,78.746,57.248 +237331,77.353,55.429 +237332,75.796,53.558 +237333,78.629,58.997 +237334,77.42,57.222 +237335,76.077,55.398 +237336,74.574,53.521 +237337,77.256,58.975 +237338,76.094,57.196 +237339,74.801,55.367 +237340,73.352,53.487 +237341,75.882,58.952 +237342,74.767,57.169 +237343,73.525,55.337 +237344,72.132,53.454 +237345,74.508,58.926 +237346,73.441,57.141 +237347,72.25,55.307 +237348,70.913,53.422 +237349,73.133,58.9 +237350,72.114,57.113 +237351,70.975,55.278 +237352,69.695,53.392 +237353,71.757,58.872 +237354,70.787,57.085 +237355,69.701,55.249 +237356,68.478,53.363 +237357,70.38,58.843 +237358,69.459,57.056 +237359,68.427,55.221 +237360,67.262,53.336 +237361,69.002,58.812 +237362,68.132,57.026 +237363,67.153,55.193 +237364,66.046,53.31 +237365,67.624,58.78 +237366,66.804,56.996 +237367,65.88,55.166 +237368,64.832,53.286 +237369,66.245,58.746 +237370,65.476,56.966 +237371,64.607,55.139 +237372,63.618,53.263 +237373,64.866,58.711 +237374,64.148,56.935 +237375,63.334,55.113 +237376,62.406,53.242 +237377,63.486,58.674 +237378,62.82,56.903 +237379,62.061,55.087 +237380,61.193,53.223 +237381,62.105,58.636 +237382,61.492,56.872 +237383,60.789,55.062 +237384,59.982,53.204 +237385,60.724,58.597 +237386,60.163,56.839 +237387,59.517,55.037 +237388,58.771,53.188 +237389,59.342,58.556 +237390,58.834,56.806 +237391,58.245,55.012 +237392,57.561,53.173 +237393,57.96,58.514 +237394,57.506,56.773 +237395,56.973,54.989 +237396,56.351,53.159 +237397,56.578,58.47 +237398,56.177,56.739 +237399,55.702,54.965 +237400,55.141,53.147 +237401,55.195,58.425 +237402,54.848,56.705 +237403,54.431,54.942 +237404,53.932,53.136 +237405,53.812,58.379 +237406,53.519,56.67 +237407,53.159,54.92 +237408,52.724,53.127 +237409,52.429,58.331 +237410,52.19,56.634 +237411,51.889,54.898 +237412,51.515,53.119 +237413,51.045,58.281 +237414,50.861,56.599 +237415,50.618,54.876 +237416,50.307,53.112 +237417,49.661,58.231 +237418,49.532,56.562 +237419,49.347,54.855 +237420,49.099,53.107 +237421,48.277,58.179 +237422,48.203,56.526 +237423,48.076,54.834 +237424,47.891,53.103 +237425,46.893,58.125 +237426,46.874,56.488 +237427,46.806,54.814 +237428,46.683,53.101 +237429,45.508,58.07 +237430,45.544,56.451 +237431,45.535,54.794 +237432,45.475,53.1 +237433,44.124,58.014 +237434,44.215,56.413 +237435,44.265,54.775 +237436,44.267,53.101 +237437,42.739,57.957 +237438,42.886,56.374 +237439,42.994,54.756 +237440,43.059,53.103 +237441,41.355,57.898 +237442,41.557,56.335 +237443,41.724,54.738 +237444,41.85,53.106 +237445,39.97,57.838 +237446,40.229,56.296 +237447,40.454,54.72 +237448,40.642,53.111 +237449,38.586,57.777 +237450,38.9,56.256 +237451,39.183,54.702 +237452,39.433,53.116 +237453,37.202,57.714 +237454,37.571,56.215 +237455,37.913,54.685 +237456,38.224,53.123 +237457,35.817,57.65 +237458,36.243,56.175 +237459,36.642,54.669 +237460,37.014,53.132 +237461,34.433,57.585 +237462,34.914,56.133 +237463,35.372,54.652 +237464,35.804,53.141 +237465,33.05,57.518 +237466,33.586,56.092 +237467,34.101,54.636 +237468,34.594,53.152 +237469,31.666,57.45 +237470,32.258,56.05 +237471,32.831,54.621 +237472,33.383,53.164 +237473,30.283,57.381 +237474,30.93,56.007 +237475,31.56,54.606 +237476,32.171,53.177 +237477,28.9,57.311 +237478,29.602,55.964 +237479,30.289,54.591 +237480,30.959,53.192 +237481,27.517,57.24 +237482,28.275,55.921 +237483,29.018,54.577 +237484,29.746,53.207 +237485,26.135,57.168 +237486,26.947,55.878 +237487,27.747,54.563 +237488,28.533,53.224 +237489,24.754,57.094 +237490,25.62,55.834 +237491,26.475,54.549 +237492,27.319,53.242 +237493,23.372,57.019 +237494,24.293,55.789 +237495,25.204,54.536 +237496,26.104,53.26 +237497,21.992,56.944 +237498,22.967,55.745 +237499,23.932,54.523 +237500,24.888,53.28 +237501,20.612,56.867 +237502,21.64,55.699 +237503,22.66,54.51 +237504,23.671,53.301 +237505,19.232,56.789 +237506,20.314,55.654 +237507,21.388,54.498 +237508,22.453,53.323 +237509,17.853,56.71 +237510,18.989,55.608 +237511,20.115,54.486 +237512,21.234,53.345 +237513,16.475,56.63 +237514,17.663,55.562 +237515,18.843,54.475 +237516,20.015,53.369 +237517,15.098,56.549 +237518,16.338,55.516 +237519,17.57,54.463 +237520,18.794,53.394 +237521,13.721,56.468 +237522,15.013,55.469 +237523,16.297,54.452 +237524,17.572,53.419 +237525,12.345,56.385 +237526,13.689,55.422 +237527,15.023,54.442 +237528,16.349,53.445 +237529,10.97,56.301 +237530,12.365,55.375 +237531,13.75,54.431 +237532,15.125,53.472 +237533,9.5955,56.217 +237534,11.041,55.327 +237535,12.475,54.421 +237536,13.899,53.5 +237537,8.2221,56.131 +237538,9.7181,55.279 +237539,11.201,54.411 +237540,12.673,53.529 +237541,6.8497,56.045 +237542,8.3952,55.231 +237543,9.9263,54.402 +237544,11.445,53.558 +237545,5.4783,55.958 +237546,7.0728,55.183 +237547,8.6512,54.392 +237548,10.215,53.588 +237549,4.1079,55.87 +237550,5.7508,55.134 +237551,7.3757,54.383 +237552,8.9847,53.619 +237553,2.7386,55.782 +237554,4.4292,55.085 +237555,6.0999,54.374 +237556,7.7527,53.65 +237557,1.3703,55.693 +237558,3.1082,55.036 +237559,4.8237,54.365 +237560,6.5193,53.682 +237561,0.0032347,55.603 +237562,1.7875,54.986 +237563,3.547,54.357 +237564,5.2845,53.715 +237565,358.64,55.512 +237566,0.46739,54.937 +237567,2.27,54.348 +237568,4.0482,53.748 +237569,357.27,55.421 +237570,359.15,54.887 +237571,0.99258,54.34 +237572,2.8103,53.781 +237573,355.91,55.329 +237574,357.83,54.837 +237575,359.71,54.332 +237576,1.571,53.815 +237577,354.55,55.237 +237578,356.51,54.787 +237579,358.44,54.324 +237580,0.33014,53.85 +237581,353.19,55.144 +237582,355.19,54.737 +237583,357.16,54.316 +237584,359.09,53.884 +237585,351.83,55.051 +237586,353.87,54.686 +237587,355.88,54.309 +237588,357.84,53.919 +237589,350.47,54.957 +237590,352.56,54.636 +237591,354.6,54.301 +237592,356.6,53.955 +237593,349.11,54.863 +237594,351.24,54.585 +237595,353.32,54.294 +237596,355.35,53.991 +237597,347.76,54.768 +237598,349.92,54.534 +237599,352.04,54.286 +237600,354.1,54.027 +237601,346.4,54.673 +237602,348.61,54.483 +237603,350.76,54.279 +237604,352.85,54.063 +237605,345.05,54.578 +237606,347.29,54.432 +237607,349.48,54.272 +237608,351.6,54.1 +237609,343.7,54.483 +237610,345.98,54.381 +237611,348.19,54.265 +237612,350.34,54.136 +237613,342.35,54.387 +237614,344.67,54.33 +237615,346.91,54.258 +237616,349.09,54.173 +237617,341,54.291 +237618,343.35,54.279 +237619,345.63,54.251 +237620,347.83,54.21 +237621,339.66,54.195 +237622,342.04,54.228 +237623,344.34,54.244 +237624,346.57,54.247 +237625,338.31,54.098 +237626,340.73,54.176 +237627,343.06,54.237 +237628,345.31,54.284 +237629,336.97,54.002 +237630,339.42,54.125 +237631,341.77,54.23 +237632,344.05,54.321 +237633,335.63,53.905 +237634,338.11,54.073 +237635,340.49,54.223 +237636,342.78,54.357 +237637,334.29,53.809 +237638,336.8,54.022 +237639,339.2,54.216 +237640,341.52,54.394 +237641,332.95,53.712 +237642,335.49,53.971 +237643,337.92,54.209 +237644,340.25,54.431 +237645,331.62,53.616 +237646,334.18,53.919 +237647,336.63,54.202 +237648,338.98,54.468 +237649,330.29,53.519 +237650,332.87,53.868 +237651,335.34,54.195 +237652,337.71,54.504 +237653,328.96,53.423 +237654,331.57,53.817 +237655,334.05,54.188 +237656,336.43,54.54 +237657,327.63,53.327 +237658,330.26,53.766 +237659,332.77,54.181 +237660,335.16,54.576 +237661,326.3,53.231 +237662,328.96,53.715 +237663,331.48,54.174 +237664,333.88,54.612 +237665,324.97,53.135 +237666,327.65,53.663 +237667,330.19,54.166 +237668,332.6,54.647 +237669,323.65,53.039 +237670,326.35,53.613 +237671,328.9,54.159 +237672,331.32,54.682 +237673,322.33,52.944 +237674,325.04,53.562 +237675,327.61,54.151 +237676,330.04,54.717 +237677,321.01,52.849 +237678,323.74,53.511 +237679,326.31,54.144 +237680,328.75,54.751 +237681,319.69,52.755 +237682,322.44,53.46 +237683,325.02,54.136 +237684,327.47,54.784 +237685,318.38,52.66 +237686,321.14,53.41 +237687,323.73,54.128 +237688,326.18,54.818 +237689,317.06,52.567 +237690,319.84,53.36 +237691,322.44,54.12 +237692,324.89,54.85 +237693,315.75,52.473 +237694,318.54,53.309 +237695,321.14,54.111 +237696,323.6,54.883 +237697,314.44,52.381 +237698,317.24,53.259 +237699,319.85,54.103 +237700,322.3,54.914 +237701,313.14,52.288 +237702,315.94,53.21 +237703,318.55,54.094 +237704,321.01,54.945 +237705,311.83,52.197 +237706,314.64,53.16 +237707,317.26,54.085 +237708,319.71,54.976 +237709,310.53,52.106 +237710,313.35,53.111 +237711,315.96,54.076 +237712,318.41,55.006 +237713,309.23,52.015 +237714,312.05,53.062 +237715,314.66,54.066 +237716,317.11,55.035 +237717,307.93,51.926 +237718,310.75,53.013 +237719,313.37,54.057 +237720,315.8,55.063 +237721,306.64,51.837 +237722,309.46,52.964 +237723,312.07,54.047 +237724,314.5,55.091 +237725,305.34,51.749 +237726,308.17,52.916 +237727,310.77,54.037 +237728,313.19,55.117 +237729,304.05,51.661 +237730,306.87,52.868 +237731,309.47,54.026 +237732,311.89,55.144 +237733,302.76,51.575 +237734,305.58,52.82 +237735,308.17,54.016 +237736,310.58,55.169 +237737,301.48,51.489 +237738,304.29,52.772 +237739,306.87,54.005 +237740,309.26,55.193 +237741,300.19,51.404 +237742,303,52.725 +237743,305.57,53.994 +237744,307.95,55.216 +237745,298.91,51.32 +237746,301.71,52.678 +237747,304.27,53.982 +237748,306.63,55.239 +237749,297.63,51.237 +237750,300.42,52.631 +237751,302.97,53.97 +237752,305.32,55.261 +237753,296.35,51.156 +237754,299.13,52.585 +237755,301.66,53.958 +237756,304,55.281 +237757,295.08,51.075 +237758,297.84,52.539 +237759,300.36,53.945 +237760,302.68,55.301 +237761,293.8,50.995 +237762,296.55,52.493 +237763,299.06,53.932 +237764,301.36,55.319 +237765,292.53,50.916 +237766,295.27,52.448 +237767,297.75,53.919 +237768,300.03,55.337 +237769,291.27,50.839 +237770,293.98,52.403 +237771,296.45,53.906 +237772,298.71,55.353 +237773,290,50.762 +237774,292.7,52.359 +237775,295.14,53.892 +237776,297.38,55.369 +237777,288.73,50.687 +237778,291.41,52.315 +237779,293.84,53.877 +237780,296.05,55.383 +237781,287.47,50.613 +237782,290.13,52.271 +237783,292.53,53.863 +237784,294.72,55.396 +237785,286.21,50.54 +237786,288.85,52.227 +237787,291.22,53.847 +237788,293.39,55.408 +237789,284.96,50.468 +237790,287.57,52.185 +237791,289.92,53.832 +237792,292.06,55.419 +237793,283.7,50.398 +237794,286.28,52.142 +237795,288.61,53.816 +237796,290.72,55.428 +237797,282.45,50.329 +237798,285,52.1 +237799,287.3,53.8 +237800,289.39,55.437 +237801,281.2,50.262 +237802,283.72,52.058 +237803,285.99,53.783 +237804,288.05,55.444 +237805,279.95,50.195 +237806,282.44,52.017 +237807,284.68,53.766 +237808,286.71,55.45 +237809,278.7,50.13 +237810,281.17,51.976 +237811,283.37,53.748 +237812,285.37,55.454 +237813,277.46,50.067 +237814,279.89,51.936 +237815,282.06,53.73 +237816,284.03,55.458 +237817,276.21,50.005 +237818,278.61,51.896 +237819,280.75,53.712 +237820,282.68,55.46 +237821,274.97,49.944 +237822,277.33,51.857 +237823,279.44,53.693 +237824,281.34,55.46 +237825,273.73,49.885 +237826,276.06,51.818 +237827,278.13,53.673 +237828,279.99,55.459 +237829,272.5,49.828 +237830,274.78,51.78 +237831,276.81,53.653 +237832,278.64,55.457 +237833,271.26,49.772 +237834,273.51,51.742 +237835,275.5,53.633 +237836,277.3,55.454 +237837,270.03,49.717 +237838,272.23,51.704 +237839,274.19,53.612 +237840,275.95,55.449 +237841,268.8,49.664 +237842,270.96,51.668 +237843,272.88,53.591 +237844,274.59,55.443 +237845,267.57,49.613 +237846,269.69,51.631 +237847,271.56,53.569 +237848,273.24,55.435 +237849,266.34,49.563 +237850,268.41,51.595 +237851,270.25,53.547 +237852,271.89,55.426 +237853,265.12,49.515 +237854,267.14,51.56 +237855,268.93,53.524 +237856,270.53,55.415 +237857,263.89,49.468 +237858,265.87,51.525 +237859,267.62,53.501 +237860,269.18,55.403 +237861,262.67,49.423 +237862,264.6,51.491 +237863,266.3,53.477 +237864,267.82,55.39 +237865,261.45,49.38 +237866,263.33,51.457 +237867,264.99,53.453 +237868,266.46,55.375 +237869,260.23,49.338 +237870,262.06,51.424 +237871,263.67,53.428 +237872,265.1,55.359 +237873,259.01,49.298 +237874,260.79,51.391 +237875,262.35,53.402 +237876,263.74,55.341 +237877,257.8,49.259 +237878,259.52,51.359 +237879,261.04,53.377 +237880,262.38,55.321 +237881,256.58,49.222 +237882,258.26,51.327 +237883,259.72,53.35 +237884,261.02,55.3 +237885,255.37,49.187 +237886,256.99,51.296 +237887,258.4,53.323 +237888,259.66,55.278 +237889,254.16,49.154 +237890,255.72,51.266 +237891,257.09,53.296 +237892,258.29,55.254 +237893,252.95,49.122 +237894,254.45,51.236 +237895,255.77,53.268 +237896,256.93,55.229 +237897,251.74,49.092 +237898,253.19,51.206 +237899,254.45,53.24 +237900,255.56,55.202 +237901,250.53,49.064 +237902,251.92,51.177 +237903,253.13,53.211 +237904,254.2,55.173 +237905,249.32,49.037 +237906,250.66,51.149 +237907,251.81,53.182 +237908,252.83,55.143 +237909,248.11,49.012 +237910,249.39,51.121 +237911,250.5,53.152 +237912,251.46,55.111 +237913,246.91,48.989 +237914,248.13,51.094 +237915,249.18,53.121 +237916,250.09,55.078 +237917,245.71,48.967 +237918,246.86,51.067 +237919,247.86,53.09 +237920,248.73,55.043 +237921,244.5,48.947 +237922,245.6,51.041 +237923,246.54,53.059 +237924,247.36,55.007 +237925,243.3,48.929 +237926,244.33,51.015 +237927,245.22,53.027 +237928,245.99,54.97 +237929,242.1,48.913 +237930,243.07,50.99 +237931,243.9,52.994 +237932,244.61,54.93 +237933,240.9,48.898 +237934,241.81,50.966 +237935,242.58,52.961 +237936,243.24,54.889 +237937,239.7,48.884 +237938,240.54,50.942 +237939,241.26,52.927 +237940,241.87,54.847 +237941,238.5,48.873 +237942,239.28,50.918 +237943,239.94,52.893 +237944,240.5,54.803 +237945,237.3,48.863 +237946,238.02,50.896 +237947,238.62,52.859 +237948,239.13,54.758 +237949,236.1,48.855 +237950,236.76,50.873 +237951,237.3,52.823 +237952,237.75,54.711 +237953,234.9,48.848 +237954,235.49,50.851 +237955,235.98,52.788 +237956,236.38,54.662 +237957,233.7,48.843 +237958,234.23,50.83 +237959,234.66,52.752 +237960,235,54.612 +237961,232.51,48.84 +237962,232.97,50.809 +237963,233.34,52.715 +237964,233.63,54.561 +237965,231.31,48.838 +237966,231.71,50.789 +237967,232.02,52.678 +237968,232.26,54.508 +237969,230.11,48.838 +237970,230.45,50.77 +237971,230.7,52.64 +237972,230.88,54.454 +237973,228.92,48.839 +237974,229.19,50.75 +237975,229.38,52.602 +237976,229.51,54.398 +237977,227.72,48.842 +237978,227.93,50.732 +237979,228.06,52.563 +237980,228.13,54.34 +237981,226.52,48.846 +237982,226.66,50.714 +237983,226.74,52.524 +237984,226.76,54.281 +237985,225.33,48.852 +237986,225.4,50.696 +237987,225.42,52.484 +237988,225.38,54.221 +237989,224.13,48.859 +237990,224.14,50.679 +237991,224.1,52.444 +237992,224.01,54.16 +237993,222.93,48.868 +237994,222.88,50.662 +237995,222.78,52.404 +237996,222.63,54.096 +237997,221.74,48.879 +237998,221.62,50.646 +237999,221.46,52.363 +238000,221.25,54.032 +238001,220.54,48.89 +238002,220.36,50.63 +238003,220.14,52.321 +238004,219.88,53.966 +238005,219.34,48.903 +238006,219.1,50.615 +238007,218.82,52.279 +238008,218.5,53.899 +238009,218.14,48.918 +238010,217.84,50.6 +238011,217.5,52.237 +238012,217.13,53.83 +238013,216.95,48.934 +238014,216.58,50.586 +238015,216.18,52.194 +238016,215.75,53.76 +238017,215.75,48.951 +238018,215.32,50.572 +238019,214.86,52.151 +238020,214.38,53.689 +238021,214.55,48.97 +238022,214.06,50.559 +238023,213.54,52.107 +238024,213.01,53.616 +238025,213.35,48.99 +238026,212.79,50.546 +238027,212.22,52.063 +238028,211.63,53.542 +238029,212.15,49.011 +238030,211.53,50.533 +238031,210.9,52.019 +238032,210.26,53.467 +238033,210.95,49.033 +238034,210.27,50.521 +238035,209.58,51.974 +238036,208.88,53.391 +238037,209.74,49.056 +238038,209.01,50.51 +238039,208.27,51.928 +238040,207.51,53.313 +238041,208.54,49.081 +238042,207.75,50.498 +238043,206.95,51.883 +238044,206.14,53.234 +238045,207.34,49.107 +238046,206.49,50.487 +238047,205.63,51.836 +238048,204.77,53.154 +238049,206.13,49.134 +238050,205.23,50.477 +238051,204.31,51.79 +238052,203.4,53.073 +238053,204.93,49.162 +238054,203.96,50.467 +238055,203,51.743 +238056,202.02,52.991 +238057,203.72,49.191 +238058,202.7,50.457 +238059,201.68,51.696 +238060,200.65,52.907 +238061,202.52,49.221 +238062,201.44,50.448 +238063,200.36,51.648 +238064,199.28,52.823 +238065,201.31,49.253 +238066,200.18,50.439 +238067,199.05,51.601 +238068,197.91,52.737 +238069,200.1,49.285 +238070,198.91,50.43 +238071,197.73,51.552 +238072,196.55,52.651 +238073,198.89,49.318 +238074,197.65,50.422 +238075,196.41,51.504 +238076,195.18,52.563 +238077,197.68,49.352 +238078,196.39,50.414 +238079,195.1,51.455 +238080,193.81,52.474 +238081,196.46,49.386 +238082,195.12,50.406 +238083,193.78,51.406 +238084,192.45,52.385 +238085,195.25,49.422 +238086,193.86,50.399 +238087,192.47,51.356 +238088,191.08,52.294 +238089,194.03,49.458 +238090,192.59,50.391 +238091,191.15,51.307 +238092,189.72,52.203 +238093,192.82,49.496 +238094,191.33,50.385 +238095,189.84,51.257 +238096,188.35,52.111 +238097,191.6,49.533 +238098,190.06,50.378 +238099,188.53,51.206 +238100,186.99,52.017 +238101,190.38,49.572 +238102,188.8,50.372 +238103,187.22,51.156 +238104,185.63,51.923 +238105,189.16,49.611 +238106,187.53,50.366 +238107,185.9,51.105 +238108,184.27,51.829 +238109,187.94,49.651 +238110,186.27,50.36 +238111,184.59,51.054 +238112,182.91,51.733 +238113,186.71,49.692 +238114,185,50.354 +238115,183.28,51.003 +238116,181.55,51.637 +238117,185.49,49.733 +238118,183.73,50.349 +238119,181.97,50.952 +238120,180.19,51.54 +238121,184.26,49.774 +238122,182.47,50.344 +238123,180.66,50.9 +238124,178.84,51.443 +238125,183.03,49.816 +238126,181.2,50.339 +238127,179.35,50.849 +238128,177.48,51.344 +238129,181.8,49.859 +238130,179.93,50.334 +238131,178.04,50.797 +238132,176.13,51.246 +238133,180.57,49.901 +238134,178.66,50.329 +238135,176.73,50.745 +238136,174.78,51.146 +238137,179.34,49.945 +238138,177.39,50.324 +238139,175.42,50.692 +238140,173.43,51.047 +238141,178.1,49.988 +238142,176.12,50.32 +238143,174.12,50.64 +238144,172.08,50.946 +238145,176.86,50.032 +238146,174.85,50.316 +238147,172.81,50.588 +238148,170.73,50.846 +238149,175.63,50.076 +238150,173.58,50.312 +238151,171.5,50.535 +238152,169.38,50.744 +238153,174.39,50.12 +238154,172.31,50.308 +238155,170.2,50.483 +238156,168.04,50.643 +238157,173.14,50.165 +238158,171.04,50.304 +238159,168.89,50.43 +238160,166.69,50.541 +238161,171.9,50.209 +238162,169.77,50.3 +238163,167.59,50.377 +238164,165.35,50.439 +238165,170.65,50.254 +238166,168.49,50.296 +238167,166.28,50.324 +238168,164.01,50.337 +238169,169.41,50.298 +238170,167.22,50.292 +238171,164.98,50.271 +238172,162.67,50.234 +238173,168.16,50.343 +238174,165.95,50.288 +238175,163.68,50.218 +238176,161.33,50.131 +238177,166.91,50.388 +238178,164.67,50.285 +238179,162.37,50.166 +238180,160,50.028 +238181,165.65,50.433 +238182,163.4,50.281 +238183,161.07,50.113 +238184,158.67,49.925 +238185,164.4,50.477 +238186,162.12,50.277 +238187,159.77,50.06 +238188,157.33,49.822 +238189,163.14,50.522 +238190,160.85,50.274 +238191,158.47,50.007 +238192,156,49.719 +238193,161.89,50.566 +238194,159.57,50.27 +238195,157.17,49.954 +238196,154.67,49.616 +238197,160.63,50.61 +238198,158.3,50.266 +238199,155.87,49.901 +238200,153.35,49.513 +238201,159.36,50.654 +238202,157.02,50.262 +238203,154.58,49.849 +238204,152.02,49.41 +238205,158.1,50.698 +238206,155.74,50.259 +238207,153.28,49.796 +238208,150.7,49.307 +238209,156.83,50.741 +238210,154.46,50.255 +238211,151.98,49.743 +238212,149.38,49.204 +238213,155.57,50.784 +238214,153.18,50.251 +238215,150.69,49.691 +238216,148.06,49.102 +238217,154.3,50.827 +238218,151.9,50.246 +238219,149.39,49.639 +238220,146.74,49 +238221,153.03,50.869 +238222,150.62,50.242 +238223,148.1,49.586 +238224,145.43,48.898 +238225,151.75,50.911 +238226,149.34,50.238 +238227,146.8,49.534 +238228,144.12,48.797 +238229,150.48,50.952 +238230,148.06,50.233 +238231,145.51,49.483 +238232,142.8,48.695 +238233,149.2,50.993 +238234,146.78,50.229 +238235,144.22,49.431 +238236,141.5,48.595 +238237,147.92,51.033 +238238,145.5,50.224 +238239,142.93,49.379 +238240,140.19,48.495 +238241,146.64,51.073 +238242,144.21,50.219 +238243,141.64,49.328 +238244,138.88,48.395 +238245,145.36,51.112 +238246,142.93,50.214 +238247,140.35,49.277 +238248,137.58,48.296 +238249,144.08,51.15 +238250,141.65,50.208 +238251,139.06,49.226 +238252,136.28,48.197 +238253,142.79,51.188 +238254,140.36,50.203 +238255,137.77,49.175 +238256,134.98,48.099 +238257,141.5,51.225 +238258,139.08,50.197 +238259,136.48,49.125 +238260,133.69,48.002 +238261,140.21,51.261 +238262,137.79,50.191 +238263,135.2,49.075 +238264,132.39,47.905 +238265,138.92,51.297 +238266,136.5,50.185 +238267,133.91,49.025 +238268,131.1,47.81 +238269,137.63,51.331 +238270,135.22,50.178 +238271,132.63,48.975 +238272,129.81,47.715 +238273,136.33,51.365 +238274,133.93,50.172 +238275,131.34,48.926 +238276,128.53,47.62 +238277,135.03,51.398 +238278,132.64,50.165 +238279,130.06,48.877 +238280,127.24,47.527 +238281,133.74,51.43 +238282,131.35,50.157 +238283,128.77,48.828 +238284,125.96,47.435 +238285,132.44,51.461 +238286,130.06,50.15 +238287,127.49,48.78 +238288,124.68,47.343 +238289,131.13,51.491 +238290,128.77,50.142 +238291,126.21,48.732 +238292,123.4,47.253 +238293,129.83,51.52 +238294,127.48,50.134 +238295,124.93,48.684 +238296,122.13,47.163 +238297,128.52,51.549 +238298,126.19,50.125 +238299,123.65,48.637 +238300,120.85,47.075 +238301,127.22,51.576 +238302,124.9,50.116 +238303,122.37,48.59 +238304,119.58,46.988 +238305,125.91,51.602 +238306,123.61,50.107 +238307,121.09,48.544 +238308,118.32,46.902 +238309,124.6,51.627 +238310,122.31,50.097 +238311,119.82,48.498 +238312,117.05,46.817 +238313,123.28,51.651 +238314,121.02,50.087 +238315,118.54,48.452 +238316,115.79,46.733 +238317,121.97,51.673 +238318,119.73,50.077 +238319,117.26,48.407 +238320,114.52,46.651 +238321,120.65,51.695 +238322,118.43,50.066 +238323,115.99,48.362 +238324,113.27,46.569 +238325,119.34,51.715 +238326,117.14,50.055 +238327,114.72,48.318 +238328,112.01,46.49 +238329,118.02,51.734 +238330,115.84,50.044 +238331,113.44,48.274 +238332,110.75,46.411 +238333,116.7,51.752 +238334,114.55,50.032 +238335,112.17,48.23 +238336,109.5,46.334 +238337,115.38,51.769 +238338,113.25,50.02 +238339,110.9,48.187 +238340,108.25,46.258 +238341,114.05,51.784 +238342,111.95,50.007 +238343,109.63,48.145 +238344,107,46.184 +238345,112.73,51.798 +238346,110.66,49.994 +238347,108.35,48.103 +238348,105.76,46.111 +238349,111.4,51.811 +238350,109.36,49.98 +238351,107.08,48.061 +238352,104.52,46.04 +238353,110.08,51.822 +238354,108.06,49.966 +238355,105.82,48.02 +238356,103.28,45.97 +238357,108.75,51.832 +238358,106.76,49.952 +238359,104.55,47.98 +238360,102.04,45.902 +238361,107.42,51.84 +238362,105.46,49.937 +238363,103.28,47.94 +238364,100.8,45.835 +238365,106.08,51.848 +238366,104.16,49.921 +238367,102.01,47.901 +238368,99.566,45.77 +238369,104.75,51.853 +238370,102.86,49.905 +238371,100.75,47.862 +238372,98.334,45.707 +238373,103.42,51.858 +238374,101.56,49.889 +238375,99.48,47.823 +238376,97.104,45.645 +238377,102.08,51.861 +238378,100.26,49.872 +238379,98.215,47.786 +238380,95.876,45.585 +238381,100.74,51.862 +238382,98.96,49.855 +238383,96.95,47.748 +238384,94.65,45.527 +238385,99.406,51.862 +238386,97.658,49.837 +238387,95.686,47.712 +238388,93.426,45.47 +238389,98.067,51.86 +238390,96.356,49.818 +238391,94.423,47.676 +238392,92.204,45.415 +238393,96.726,51.857 +238394,95.053,49.8 +238395,93.161,47.64 +238396,90.983,45.362 +238397,95.384,51.852 +238398,93.75,49.78 +238399,91.899,47.606 +238400,89.765,45.311 +238401,94.042,51.846 +238402,92.447,49.76 +238403,90.637,47.571 +238404,88.549,45.262 +238405,92.698,51.838 +238406,91.143,49.74 +238407,89.377,47.538 +238408,87.335,45.214 +238409,91.353,51.829 +238410,89.839,49.719 +238411,88.116,47.505 +238412,86.122,45.168 +238413,90.007,51.818 +238414,88.535,49.697 +238415,86.857,47.472 +238416,84.911,45.124 +238417,88.66,51.806 +238418,87.231,49.675 +238419,85.598,47.44 +238420,83.702,45.082 +238421,87.312,51.791 +238422,85.926,49.653 +238423,84.339,47.409 +238424,82.494,45.042 +238425,85.963,51.776 +238426,84.62,49.63 +238427,83.081,47.378 +238428,81.288,45.004 +238429,84.613,51.758 +238430,83.315,49.606 +238431,81.824,47.348 +238432,80.083,44.967 +238433,83.263,51.739 +238434,82.009,49.582 +238435,80.567,47.319 +238436,78.88,44.933 +238437,81.911,51.719 +238438,80.703,49.557 +238439,79.31,47.29 +238440,77.679,44.9 +238441,80.559,51.697 +238442,79.397,49.532 +238443,78.054,47.262 +238444,76.479,44.87 +238445,79.206,51.673 +238446,78.09,49.506 +238447,76.799,47.235 +238448,75.28,44.841 +238449,77.852,51.647 +238450,76.783,49.48 +238451,75.543,47.208 +238452,74.083,44.814 +238453,76.497,51.62 +238454,75.476,49.453 +238455,74.289,47.182 +238456,72.886,44.789 +238457,75.142,51.592 +238458,74.169,49.426 +238459,73.034,47.156 +238460,71.691,44.766 +238461,73.786,51.561 +238462,72.862,49.398 +238463,71.78,47.131 +238464,70.497,44.745 +238465,72.43,51.529 +238466,71.554,49.369 +238467,70.527,47.107 +238468,69.304,44.726 +238469,71.073,51.496 +238470,70.247,49.34 +238471,69.274,47.083 +238472,68.112,44.709 +238473,69.715,51.46 +238474,68.939,49.31 +238475,68.021,47.06 +238476,66.921,44.694 +238477,68.357,51.423 +238478,67.631,49.28 +238479,66.768,47.038 +238480,65.731,44.68 +238481,66.998,51.385 +238482,66.323,49.249 +238483,65.516,47.016 +238484,64.542,44.669 +238485,65.639,51.344 +238486,65.015,49.218 +238487,64.264,46.995 +238488,63.353,44.66 +238489,64.279,51.303 +238490,63.706,49.186 +238491,63.013,46.974 +238492,62.165,44.652 +238493,62.919,51.259 +238494,62.398,49.154 +238495,61.761,46.954 +238496,60.978,44.646 +238497,61.559,51.214 +238498,61.089,49.121 +238499,60.51,46.935 +238500,59.792,44.642 +238501,60.198,51.167 +238502,59.781,49.088 +238503,59.259,46.916 +238504,58.605,44.64 +238505,58.838,51.119 +238506,58.472,49.054 +238507,58.008,46.898 +238508,57.42,44.64 +238509,57.476,51.069 +238510,57.164,49.019 +238511,56.758,46.881 +238512,56.234,44.642 +238513,56.115,51.017 +238514,55.855,48.984 +238515,55.508,46.864 +238516,55.049,44.645 +238517,54.753,50.964 +238518,54.547,48.948 +238519,54.258,46.848 +238520,53.864,44.651 +238521,53.392,50.909 +238522,53.238,48.912 +238523,53.008,46.832 +238524,52.68,44.658 +238525,52.03,50.853 +238526,51.93,48.876 +238527,51.758,46.817 +238528,51.495,44.667 +238529,50.668,50.795 +238530,50.621,48.839 +238531,50.508,46.803 +238532,50.311,44.677 +238533,49.306,50.735 +238534,49.313,48.801 +238535,49.258,46.789 +238536,49.126,44.69 +238537,47.944,50.674 +238538,48.005,48.763 +238539,48.009,46.776 +238540,47.942,44.704 +238541,46.582,50.612 +238542,46.697,48.724 +238543,46.759,46.763 +238544,46.757,44.719 +238545,45.22,50.548 +238546,45.389,48.685 +238547,45.51,46.751 +238548,45.572,44.737 +238549,43.859,50.482 +238550,44.081,48.646 +238551,44.26,46.739 +238552,44.387,44.756 +238553,42.497,50.415 +238554,42.773,48.605 +238555,43.011,46.728 +238556,43.202,44.776 +238557,41.136,50.346 +238558,41.465,48.565 +238559,41.761,46.718 +238560,42.016,44.798 +238561,39.775,50.276 +238562,40.158,48.524 +238563,40.512,46.708 +238564,40.83,44.822 +238565,38.414,50.205 +238566,38.85,48.482 +238567,39.262,46.698 +238568,39.643,44.847 +238569,37.053,50.132 +238570,37.543,48.441 +238571,38.012,46.689 +238572,38.456,44.874 +238573,35.693,50.058 +238574,36.236,48.398 +238575,36.763,46.681 +238576,37.268,44.902 +238577,34.333,49.982 +238578,34.929,48.355 +238579,35.513,46.673 +238580,36.08,44.932 +238581,32.973,49.906 +238582,33.623,48.312 +238583,34.263,46.666 +238584,34.891,44.963 +238585,31.614,49.827 +238586,32.317,48.269 +238587,33.013,46.659 +238588,33.701,44.995 +238589,30.255,49.748 +238590,31.011,48.224 +238591,31.763,46.653 +238592,32.51,45.029 +238593,28.897,49.667 +238594,29.705,48.18 +238595,30.512,46.647 +238596,31.318,45.064 +238597,27.539,49.585 +238598,28.4,48.135 +238599,29.262,46.641 +238600,30.126,45.101 +238601,26.182,49.501 +238602,27.095,48.09 +238603,28.011,46.636 +238604,28.932,45.138 +238605,24.826,49.416 +238606,25.79,48.044 +238607,26.76,46.632 +238608,27.738,45.177 +238609,23.47,49.331 +238610,24.485,47.998 +238611,25.509,46.628 +238612,26.542,45.217 +238613,22.115,49.244 +238614,23.181,47.952 +238615,24.258,46.624 +238616,25.345,45.258 +238617,20.76,49.156 +238618,21.878,47.905 +238619,23.006,46.621 +238620,24.147,45.3 +238621,19.406,49.066 +238622,20.574,47.858 +238623,21.754,46.618 +238624,22.948,45.343 +238625,18.054,48.976 +238626,19.271,47.811 +238627,20.502,46.615 +238628,21.748,45.388 +238629,16.702,48.885 +238630,17.969,47.763 +238631,19.25,46.613 +238632,20.546,45.433 +238633,15.35,48.792 +238634,16.667,47.715 +238635,17.997,46.611 +238636,19.344,45.479 +238637,14,48.699 +238638,15.365,47.667 +238639,16.744,46.61 +238640,18.139,45.526 +238641,12.651,48.604 +238642,14.064,47.619 +238643,15.491,46.609 +238644,16.934,45.574 +238645,11.302,48.509 +238646,12.763,47.57 +238647,14.237,46.608 +238648,15.727,45.623 +238649,9.955,48.413 +238650,11.462,47.521 +238651,12.983,46.607 +238652,14.518,45.673 +238653,8.6087,48.316 +238654,10.162,47.472 +238655,11.728,46.607 +238656,13.308,45.723 +238657,7.2635,48.218 +238658,8.8631,47.422 +238659,10.474,46.607 +238660,12.096,45.774 +238661,5.9194,48.119 +238662,7.5642,47.372 +238663,9.2184,46.608 +238664,10.883,45.825 +238665,4.5765,48.019 +238666,6.2658,47.322 +238667,7.9628,46.608 +238668,9.6685,45.878 +238669,3.2347,47.919 +238670,4.968,47.272 +238671,6.7068,46.609 +238672,8.4522,45.931 +238673,1.8942,47.818 +238674,3.6707,47.222 +238675,5.4503,46.61 +238676,7.2342,45.984 +238677,0.55498,47.716 +238678,2.3739,47.171 +238679,4.1934,46.612 +238680,6.0146,46.038 +238681,359.22,47.614 +238682,1.0777,47.121 +238683,2.9361,46.613 +238684,4.7932,46.092 +238685,357.88,47.511 +238686,359.78,47.07 +238687,1.6783,46.615 +238688,3.5702,46.147 +238689,356.55,47.408 +238690,358.49,47.019 +238691,0.42008,46.617 +238692,2.3454,46.202 +238693,355.21,47.304 +238694,357.19,46.968 +238695,359.16,46.619 +238696,1.1189,46.258 +238697,353.88,47.199 +238698,355.9,46.917 +238699,357.9,46.621 +238700,359.89,46.314 +238701,352.55,47.094 +238702,354.61,46.866 +238703,356.64,46.624 +238704,358.66,46.37 +238705,351.22,46.989 +238706,353.31,46.814 +238707,355.38,46.626 +238708,357.43,46.426 +238709,349.89,46.884 +238710,352.02,46.763 +238711,354.12,46.629 +238712,356.19,46.482 +238713,348.56,46.778 +238714,350.73,46.712 +238715,352.86,46.632 +238716,354.96,46.539 +238717,347.24,46.671 +238718,349.44,46.66 +238719,351.6,46.634 +238720,353.72,46.596 +238721,345.92,46.565 +238722,348.15,46.609 +238723,350.34,46.637 +238724,352.48,46.652 +238725,344.6,46.458 +238726,346.86,46.557 +238727,349.07,46.64 +238728,351.24,46.709 +238729,343.28,46.351 +238730,345.57,46.506 +238731,347.81,46.643 +238732,350,46.766 +238733,341.96,46.245 +238734,344.28,46.454 +238735,346.55,46.646 +238736,348.75,46.822 +238737,340.64,46.138 +238738,343,46.403 +238739,345.28,46.65 +238740,347.51,46.879 +238741,339.33,46.031 +238742,341.71,46.352 +238743,344.02,46.653 +238744,346.26,46.935 +238745,338.01,45.924 +238746,340.42,46.3 +238747,342.75,46.656 +238748,345.01,46.991 +238749,336.7,45.817 +238750,339.14,46.249 +238751,341.49,46.659 +238752,343.76,47.047 +238753,335.39,45.71 +238754,337.85,46.198 +238755,340.22,46.662 +238756,342.5,47.103 +238757,334.09,45.603 +238758,336.57,46.147 +238759,338.95,46.665 +238760,341.25,47.158 +238761,332.78,45.497 +238762,335.29,46.096 +238763,337.68,46.668 +238764,339.99,47.213 +238765,331.48,45.39 +238766,334,46.046 +238767,336.42,46.67 +238768,338.73,47.268 +238769,330.18,45.285 +238770,332.72,45.995 +238771,335.15,46.673 +238772,337.47,47.322 +238773,328.88,45.179 +238774,331.44,45.945 +238775,333.88,46.676 +238776,336.2,47.375 +238777,327.58,45.074 +238778,330.16,45.895 +238779,332.61,46.678 +238780,334.94,47.429 +238781,326.29,44.969 +238782,328.88,45.845 +238783,331.34,46.681 +238784,333.67,47.481 +238785,324.99,44.865 +238786,327.6,45.795 +238787,330.07,46.683 +238788,332.4,47.533 +238789,323.7,44.761 +238790,326.33,45.745 +238791,328.79,46.685 +238792,331.13,47.585 +238793,322.42,44.658 +238794,325.05,45.696 +238795,327.52,46.687 +238796,329.86,47.636 +238797,321.13,44.555 +238798,323.77,45.647 +238799,326.25,46.689 +238800,328.58,47.686 +238801,319.84,44.453 +238802,322.5,45.598 +238803,324.98,46.69 +238804,327.3,47.735 +238805,318.56,44.352 +238806,321.22,45.55 +238807,323.7,46.692 +238808,326.02,47.784 +238809,317.28,44.251 +238810,319.95,45.502 +238811,322.43,46.693 +238812,324.74,47.831 +238813,316.01,44.151 +238814,318.68,45.454 +238815,321.15,46.694 +238816,323.46,47.878 +238817,314.73,44.052 +238818,317.41,45.406 +238819,319.88,46.694 +238820,322.18,47.925 +238821,313.46,43.954 +238822,316.13,45.359 +238823,318.6,46.695 +238824,320.89,47.97 +238825,312.19,43.857 +238826,314.86,45.312 +238827,317.32,46.695 +238828,319.61,48.014 +238829,310.92,43.761 +238830,313.59,45.266 +238831,316.05,46.695 +238832,318.32,48.058 +238833,309.65,43.666 +238834,312.32,45.22 +238835,314.77,46.694 +238836,317.02,48.1 +238837,308.39,43.572 +238838,311.06,45.174 +238839,313.49,46.693 +238840,315.73,48.141 +238841,307.12,43.479 +238842,309.79,45.129 +238843,312.21,46.692 +238844,314.44,48.182 +238845,305.87,43.387 +238846,308.52,45.084 +238847,310.93,46.691 +238848,313.14,48.221 +238849,304.61,43.297 +238850,307.25,45.039 +238851,309.65,46.689 +238852,311.84,48.259 +238853,303.35,43.207 +238854,305.99,44.995 +238855,308.37,46.687 +238856,310.54,48.296 +238857,302.1,43.119 +238858,304.73,44.952 +238859,307.09,46.685 +238860,309.24,48.332 +238861,300.85,43.032 +238862,303.46,44.909 +238863,305.81,46.682 +238864,307.94,48.367 +238865,299.6,42.947 +238866,302.2,44.866 +238867,304.52,46.679 +238868,306.64,48.4 +238869,298.36,42.863 +238870,300.94,44.824 +238871,303.24,46.675 +238872,305.33,48.432 +238873,297.11,42.78 +238874,299.67,44.783 +238875,301.96,46.671 +238876,304.02,48.463 +238877,295.87,42.699 +238878,298.41,44.741 +238879,300.67,46.667 +238880,302.72,48.493 +238881,294.63,42.619 +238882,297.15,44.701 +238883,299.39,46.662 +238884,301.41,48.521 +238885,293.4,42.541 +238886,295.89,44.661 +238887,298.11,46.657 +238888,300.09,48.548 +238889,292.16,42.465 +238890,294.64,44.622 +238891,296.82,46.651 +238892,298.78,48.574 +238893,290.93,42.39 +238894,293.38,44.583 +238895,295.53,46.645 +238896,297.47,48.598 +238897,289.7,42.317 +238898,292.12,44.544 +238899,294.25,46.639 +238900,296.15,48.621 +238901,288.47,42.245 +238902,290.86,44.507 +238903,292.96,46.632 +238904,294.83,48.642 +238905,287.25,42.176 +238906,289.61,44.47 +238907,291.67,46.624 +238908,293.52,48.662 +238909,286.02,42.108 +238910,288.35,44.433 +238911,290.39,46.616 +238912,292.2,48.681 +238913,284.8,42.041 +238914,287.1,44.397 +238915,289.1,46.608 +238916,290.88,48.698 +238917,283.58,41.977 +238918,285.85,44.362 +238919,287.81,46.599 +238920,289.55,48.713 +238921,282.37,41.914 +238922,284.59,44.327 +238923,286.52,46.59 +238924,288.23,48.727 +238925,281.15,41.854 +238926,283.34,44.293 +238927,285.23,46.58 +238928,286.9,48.739 +238929,279.94,41.795 +238930,282.09,44.26 +238931,283.94,46.57 +238932,285.58,48.75 +238933,278.73,41.738 +238934,280.84,44.227 +238935,282.65,46.559 +238936,284.25,48.759 +238937,277.52,41.683 +238938,279.59,44.195 +238939,281.36,46.547 +238940,282.92,48.767 +238941,276.31,41.63 +238942,278.34,44.163 +238943,280.07,46.535 +238944,281.59,48.773 +238945,275.11,41.58 +238946,277.09,44.133 +238947,278.78,46.523 +238948,280.26,48.778 +238949,273.9,41.531 +238950,275.84,44.103 +238951,277.49,46.51 +238952,278.93,48.78 +238953,272.7,41.484 +238954,274.59,44.073 +238955,276.2,46.496 +238956,277.6,48.782 +238957,271.5,41.439 +238958,273.34,44.044 +238959,274.91,46.482 +238960,276.27,48.781 +238961,270.3,41.396 +238962,272.09,44.016 +238963,273.62,46.468 +238964,274.93,48.779 +238965,269.11,41.356 +238966,270.85,43.989 +238967,272.32,46.453 +238968,273.6,48.775 +238969,267.91,41.318 +238970,269.6,43.963 +238971,271.03,46.437 +238972,272.26,48.77 +238973,266.72,41.281 +238974,268.36,43.937 +238975,269.74,46.421 +238976,270.93,48.762 +238977,265.53,41.247 +238978,267.11,43.911 +238979,268.44,46.404 +238980,269.59,48.753 +238981,264.33,41.215 +238982,265.87,43.887 +238983,267.15,46.386 +238984,268.25,48.743 +238985,263.15,41.185 +238986,264.62,43.863 +238987,265.86,46.368 +238988,266.91,48.73 +238989,261.96,41.158 +238990,263.38,43.84 +238991,264.56,46.35 +238992,265.57,48.716 +238993,260.77,41.132 +238994,262.14,43.818 +238995,263.27,46.331 +238996,264.23,48.701 +238997,259.59,41.109 +238998,260.89,43.796 +238999,261.97,46.311 +239000,262.89,48.683 +239001,258.4,41.088 +239002,259.65,43.775 +239003,260.68,46.291 +239004,261.55,48.664 +239005,257.22,41.069 +239006,258.41,43.755 +239007,259.39,46.27 +239008,260.21,48.643 +239009,256.04,41.052 +239010,257.17,43.736 +239011,258.09,46.249 +239012,258.87,48.62 +239013,254.85,41.037 +239014,255.92,43.717 +239015,256.8,46.227 +239016,257.52,48.595 +239017,253.67,41.025 +239018,254.68,43.699 +239019,255.5,46.204 +239020,256.18,48.569 +239021,252.5,41.015 +239022,253.44,43.682 +239023,254.21,46.181 +239024,254.84,48.541 +239025,251.32,41.007 +239026,252.2,43.665 +239027,252.91,46.157 +239028,253.49,48.511 +239029,250.14,41.001 +239030,250.96,43.649 +239031,251.62,46.133 +239032,252.15,48.48 +239033,248.96,40.997 +239034,249.72,43.634 +239035,250.32,46.108 +239036,250.8,48.447 +239037,247.78,40.996 +239038,248.48,43.62 +239039,249.03,46.083 +239040,249.46,48.412 +239041,246.61,40.996 +239042,247.24,43.606 +239043,247.73,46.057 +239044,248.11,48.375 +239045,245.43,40.999 +239046,246,43.593 +239047,246.43,46.031 +239048,246.77,48.337 +239049,244.26,41.004 +239050,244.76,43.581 +239051,245.14,46.004 +239052,245.42,48.297 +239053,243.08,41.011 +239054,243.52,43.569 +239055,243.84,45.976 +239056,244.08,48.255 +239057,241.91,41.02 +239058,242.28,43.558 +239059,242.55,45.948 +239060,242.73,48.211 +239061,240.73,41.031 +239062,241.04,43.548 +239063,241.25,45.919 +239064,241.38,48.166 +239065,239.56,41.045 +239066,239.81,43.539 +239067,239.96,45.89 +239068,240.04,48.119 +239069,238.38,41.06 +239070,238.57,43.53 +239071,238.66,45.86 +239072,238.69,48.07 +239073,237.21,41.077 +239074,237.33,43.522 +239075,237.37,45.83 +239076,237.34,48.02 +239077,236.03,41.096 +239078,236.09,43.515 +239079,236.07,45.799 +239080,236,47.968 +239081,234.86,41.118 +239082,234.85,43.508 +239083,234.78,45.767 +239084,234.65,47.914 +239085,233.68,41.141 +239086,233.61,43.502 +239087,233.48,45.735 +239088,233.31,47.859 +239089,232.51,41.166 +239090,232.37,43.497 +239091,232.19,45.703 +239092,231.96,47.802 +239093,231.33,41.193 +239094,231.14,43.492 +239095,230.89,45.67 +239096,230.62,47.743 +239097,230.16,41.221 +239098,229.9,43.488 +239099,229.6,45.637 +239100,229.27,47.683 +239101,228.98,41.252 +239102,228.66,43.484 +239103,228.3,45.603 +239104,227.93,47.622 +239105,227.8,41.285 +239106,227.42,43.482 +239107,227.01,45.568 +239108,226.58,47.558 +239109,226.62,41.319 +239110,226.18,43.479 +239111,225.72,45.533 +239112,225.24,47.494 +239113,225.45,41.355 +239114,224.94,43.478 +239115,224.42,45.498 +239116,223.89,47.427 +239117,224.27,41.392 +239118,223.7,43.477 +239119,223.13,45.462 +239120,222.55,47.359 +239121,223.09,41.432 +239122,222.46,43.477 +239123,221.84,45.426 +239124,221.21,47.29 +239125,221.91,41.473 +239126,221.23,43.477 +239127,220.54,45.389 +239128,219.86,47.219 +239129,220.72,41.515 +239130,219.99,43.478 +239131,219.25,45.352 +239132,218.52,47.147 +239133,219.54,41.559 +239134,218.75,43.479 +239135,217.96,45.314 +239136,217.18,47.073 +239137,218.36,41.605 +239138,217.51,43.481 +239139,216.67,45.276 +239140,215.84,46.998 +239141,217.17,41.652 +239142,216.27,43.484 +239143,215.38,45.237 +239144,214.5,46.921 +239145,215.99,41.701 +239146,215.03,43.487 +239147,214.08,45.198 +239148,213.16,46.843 +239149,214.8,41.751 +239150,213.79,43.49 +239151,212.79,45.159 +239152,211.82,46.764 +239153,213.61,41.802 +239154,212.54,43.494 +239155,211.5,45.119 +239156,210.48,46.684 +239157,212.42,41.855 +239158,211.3,43.499 +239159,210.21,45.079 +239160,209.15,46.602 +239161,211.23,41.909 +239162,210.06,43.504 +239163,208.92,45.039 +239164,207.81,46.519 +239165,210.04,41.964 +239166,208.82,43.509 +239167,207.63,44.998 +239168,206.48,46.434 +239169,208.85,42.021 +239170,207.58,43.515 +239171,206.34,44.957 +239172,205.14,46.349 +239173,207.65,42.078 +239174,206.34,43.522 +239175,205.06,44.915 +239176,203.81,46.262 +239177,206.46,42.137 +239178,205.09,43.529 +239179,203.77,44.873 +239180,202.47,46.174 +239181,205.26,42.197 +239182,203.85,43.536 +239183,202.48,44.831 +239184,201.14,46.085 +239185,204.06,42.258 +239186,202.61,43.544 +239187,201.19,44.789 +239188,199.81,45.995 +239189,202.86,42.32 +239190,201.36,43.552 +239191,199.91,44.746 +239192,198.48,45.904 +239193,201.66,42.383 +239194,200.12,43.561 +239195,198.62,44.703 +239196,197.15,45.811 +239197,200.45,42.446 +239198,198.88,43.569 +239199,197.33,44.66 +239200,195.83,45.718 +239201,199.25,42.511 +239202,197.63,43.579 +239203,196.05,44.616 +239204,194.5,45.624 +239205,198.04,42.576 +239206,196.38,43.588 +239207,194.76,44.572 +239208,193.18,45.529 +239209,196.83,42.642 +239210,195.14,43.598 +239211,193.48,44.528 +239212,191.85,45.433 +239213,195.62,42.709 +239214,193.89,43.609 +239215,192.2,44.484 +239216,190.53,45.336 +239217,194.41,42.777 +239218,192.65,43.619 +239219,190.91,44.44 +239220,189.21,45.238 +239221,193.2,42.845 +239222,191.4,43.63 +239223,189.63,44.395 +239224,187.89,45.14 +239225,191.98,42.914 +239226,190.15,43.641 +239227,188.35,44.35 +239228,186.57,45.04 +239229,190.76,42.983 +239230,188.9,43.653 +239231,187.07,44.306 +239232,185.25,44.941 +239233,189.54,43.053 +239234,187.65,43.664 +239235,185.79,44.26 +239236,183.94,44.84 +239237,188.32,43.123 +239238,186.4,43.676 +239239,184.51,44.215 +239240,182.62,44.739 +239241,187.1,43.193 +239242,185.15,43.689 +239243,183.23,44.17 +239244,181.31,44.637 +239245,185.87,43.264 +239246,183.9,43.701 +239247,181.95,44.124 +239248,180,44.534 +239249,184.65,43.335 +239250,182.65,43.713 +239251,180.67,44.079 +239252,178.69,44.432 +239253,183.42,43.407 +239254,181.4,43.726 +239255,179.39,44.033 +239256,177.38,44.328 +239257,182.19,43.479 +239258,180.15,43.739 +239259,178.11,43.988 +239260,176.07,44.224 +239261,180.95,43.551 +239262,178.9,43.752 +239263,176.84,43.942 +239264,174.77,44.12 +239265,179.72,43.623 +239266,177.65,43.765 +239267,175.56,43.896 +239268,173.46,44.016 +239269,178.48,43.695 +239270,176.39,43.778 +239271,174.29,43.851 +239272,172.16,43.911 +239273,177.24,43.767 +239274,175.14,43.792 +239275,173.01,43.805 +239276,170.86,43.806 +239277,176,43.839 +239278,173.88,43.805 +239279,171.74,43.759 +239280,169.56,43.7 +239281,174.76,43.911 +239282,172.63,43.819 +239283,170.46,43.714 +239284,168.27,43.595 +239285,173.52,43.983 +239286,171.37,43.832 +239287,169.19,43.668 +239288,166.97,43.489 +239289,172.27,44.055 +239290,170.12,43.846 +239291,167.92,43.622 +239292,165.68,43.383 +239293,171.02,44.127 +239294,168.86,43.86 +239295,166.65,43.577 +239296,164.39,43.278 +239297,169.77,44.198 +239298,167.6,43.873 +239299,165.38,43.532 +239300,163.1,43.172 +239301,168.52,44.269 +239302,166.34,43.887 +239303,164.11,43.486 +239304,161.81,43.066 +239305,167.27,44.34 +239306,165.08,43.9 +239307,162.84,43.441 +239308,160.53,42.961 +239309,166.01,44.41 +239310,163.83,43.914 +239311,161.57,43.396 +239312,159.24,42.855 +239313,164.75,44.481 +239314,162.57,43.928 +239315,160.3,43.351 +239316,157.96,42.75 +239317,163.49,44.55 +239318,161.3,43.941 +239319,159.04,43.307 +239320,156.68,42.645 +239321,162.23,44.619 +239322,160.04,43.954 +239323,157.77,43.262 +239324,155.41,42.541 +239325,160.97,44.688 +239326,158.78,43.968 +239327,156.51,43.218 +239328,154.13,42.436 +239329,159.7,44.756 +239330,157.52,43.981 +239331,155.24,43.174 +239332,152.86,42.332 +239333,158.44,44.824 +239334,156.26,43.994 +239335,153.98,43.13 +239336,151.59,42.229 +239337,157.17,44.891 +239338,154.99,44.007 +239339,152.72,43.087 +239340,150.32,42.126 +239341,155.9,44.957 +239342,153.73,44.02 +239343,151.45,43.043 +239344,149.05,42.024 +239345,154.63,45.022 +239346,152.47,44.033 +239347,150.19,43 +239348,147.79,41.922 +239349,153.35,45.087 +239350,151.2,44.045 +239351,148.93,42.958 +239352,146.52,41.821 +239353,152.08,45.151 +239354,149.93,44.057 +239355,147.67,42.915 +239356,145.26,41.72 +239357,150.8,45.214 +239358,148.67,44.069 +239359,146.41,42.873 +239360,144,41.621 +239361,149.52,45.276 +239362,147.4,44.081 +239363,145.15,42.832 +239364,142.75,41.522 +239365,148.24,45.338 +239366,146.13,44.093 +239367,143.89,42.79 +239368,141.49,41.423 +239369,146.95,45.398 +239370,144.87,44.104 +239371,142.64,42.749 +239372,140.24,41.326 +239373,145.67,45.458 +239374,143.6,44.115 +239375,141.38,42.709 +239376,138.99,41.23 +239377,144.38,45.516 +239378,142.33,44.126 +239379,140.13,42.669 +239380,137.74,41.135 +239381,143.1,45.574 +239382,141.06,44.137 +239383,138.87,42.629 +239384,136.5,41.041 +239385,141.81,45.63 +239386,139.79,44.147 +239387,137.62,42.59 +239388,135.26,40.947 +239389,140.52,45.685 +239390,138.52,44.157 +239391,136.36,42.551 +239392,134.01,40.855 +239393,139.22,45.74 +239394,137.25,44.167 +239395,135.11,42.512 +239396,132.77,40.765 +239397,137.93,45.793 +239398,135.97,44.176 +239399,133.86,42.474 +239400,131.54,40.675 +239401,136.63,45.845 +239402,134.7,44.185 +239403,132.61,42.437 +239404,130.3,40.587 +239405,135.34,45.895 +239406,133.43,44.194 +239407,131.36,42.4 +239408,129.07,40.5 +239409,134.04,45.945 +239410,132.16,44.202 +239411,130.11,42.364 +239412,127.84,40.414 +239413,132.74,45.993 +239414,130.88,44.21 +239415,128.86,42.328 +239416,126.61,40.33 +239417,131.44,46.04 +239418,129.61,44.217 +239419,127.61,42.292 +239420,125.39,40.247 +239421,130.13,46.085 +239422,128.33,44.225 +239423,126.36,42.258 +239424,124.16,40.166 +239425,128.83,46.129 +239426,127.06,44.231 +239427,125.11,42.223 +239428,122.94,40.086 +239429,127.52,46.172 +239430,125.78,44.238 +239431,123.87,42.19 +239432,121.72,40.008 +239433,126.22,46.214 +239434,124.51,44.244 +239435,122.62,42.157 +239436,120.5,39.932 +239437,124.91,46.254 +239438,123.23,44.249 +239439,121.38,42.124 +239440,119.29,39.857 +239441,123.6,46.292 +239442,121.95,44.254 +239443,120.13,42.093 +239444,118.07,39.784 +239445,122.29,46.329 +239446,120.68,44.259 +239447,118.89,42.061 +239448,116.86,39.713 +239449,120.98,46.365 +239450,119.4,44.263 +239451,117.64,42.031 +239452,115.65,39.643 +239453,119.66,46.399 +239454,118.12,44.266 +239455,116.4,42.001 +239456,114.45,39.575 +239457,118.35,46.431 +239458,116.84,44.27 +239459,115.16,41.972 +239460,113.24,39.51 +239461,117.03,46.462 +239462,115.56,44.272 +239463,113.92,41.943 +239464,112.04,39.446 +239465,115.72,46.492 +239466,114.28,44.274 +239467,112.67,41.915 +239468,110.83,39.384 +239469,114.4,46.52 +239470,113,44.276 +239471,111.43,41.888 +239472,109.63,39.324 +239473,113.08,46.546 +239474,111.72,44.277 +239475,110.19,41.861 +239476,108.44,39.266 +239477,111.76,46.57 +239478,110.44,44.278 +239479,108.95,41.835 +239480,107.24,39.21 +239481,110.44,46.593 +239482,109.16,44.278 +239483,107.72,41.81 +239484,106.04,39.156 +239485,109.12,46.615 +239486,107.88,44.278 +239487,106.48,41.786 +239488,104.85,39.105 +239489,107.8,46.634 +239490,106.6,44.277 +239491,105.24,41.762 +239492,103.66,39.055 +239493,106.47,46.652 +239494,105.32,44.276 +239495,104,41.739 +239496,102.47,39.008 +239497,105.15,46.669 +239498,104.04,44.274 +239499,102.76,41.717 +239500,101.28,38.963 +239501,103.83,46.683 +239502,102.75,44.271 +239503,101.53,41.696 +239504,100.09,38.92 +239505,102.5,46.696 +239506,101.47,44.268 +239507,100.29,41.675 +239508,98.908,38.879 +239509,101.17,46.707 +239510,100.19,44.264 +239511,99.056,41.655 +239512,97.723,38.841 +239513,99.847,46.716 +239514,98.905,44.26 +239515,97.821,41.636 +239516,96.54,38.804 +239517,98.52,46.724 +239518,97.622,44.255 +239519,96.586,41.617 +239520,95.359,38.77 +239521,97.192,46.73 +239522,96.338,44.25 +239523,95.351,41.6 +239524,94.178,38.739 +239525,95.863,46.734 +239526,95.055,44.244 +239527,94.117,41.583 +239528,92.999,38.71 +239529,94.534,46.736 +239530,93.771,44.238 +239531,92.883,41.567 +239532,91.821,38.683 +239533,93.204,46.737 +239534,92.487,44.231 +239535,91.649,41.552 +239536,90.643,38.658 +239537,91.874,46.735 +239538,91.203,44.223 +239539,90.416,41.537 +239540,89.467,38.636 +239541,90.543,46.732 +239542,89.919,44.215 +239543,89.183,41.523 +239544,88.292,38.616 +239545,89.212,46.727 +239546,88.634,44.206 +239547,87.95,41.511 +239548,87.117,38.599 +239549,87.881,46.721 +239550,87.35,44.197 +239551,86.718,41.498 +239552,85.944,38.584 +239553,86.549,46.712 +239554,86.065,44.187 +239555,85.485,41.487 +239556,84.771,38.571 +239557,85.217,46.702 +239558,84.781,44.176 +239559,84.253,41.477 +239560,83.598,38.561 +239561,83.885,46.69 +239562,83.496,44.165 +239563,83.021,41.467 +239564,82.426,38.553 +239565,82.552,46.676 +239566,82.211,44.154 +239567,81.79,41.458 +239568,81.255,38.548 +239569,81.22,46.66 +239570,80.926,44.141 +239571,80.558,41.45 +239572,80.084,38.545 +239573,79.887,46.642 +239574,79.642,44.129 +239575,79.327,41.442 +239576,78.914,38.544 +239577,78.554,46.623 +239578,78.357,44.115 +239579,78.095,41.436 +239580,77.743,38.546 +239581,77.221,46.602 +239582,77.072,44.101 +239583,76.864,41.43 +239584,76.574,38.55 +239585,75.887,46.579 +239586,75.787,44.087 +239587,75.633,41.425 +239588,75.404,38.556 +239589,74.554,46.554 +239590,74.502,44.071 +239591,74.402,41.421 +239592,74.234,38.565 +239593,73.221,46.527 +239594,73.218,44.056 +239595,73.171,41.418 +239596,73.065,38.576 +239597,71.888,46.499 +239598,71.933,44.039 +239599,71.94,41.415 +239600,71.895,38.59 +239601,70.555,46.469 +239602,70.648,44.022 +239603,70.709,41.413 +239604,70.725,38.606 +239605,69.222,46.437 +239606,69.364,44.005 +239607,69.478,41.412 +239608,69.555,38.624 +239609,67.889,46.403 +239610,68.079,43.987 +239611,68.247,41.412 +239612,68.385,38.644 +239613,66.557,46.368 +239614,66.795,43.968 +239615,67.016,41.413 +239616,67.215,38.667 +239617,65.225,46.331 +239618,65.511,43.949 +239619,65.785,41.414 +239620,66.044,38.692 +239621,63.893,46.292 +239622,64.226,43.93 +239623,64.554,41.416 +239624,64.872,38.719 +239625,62.561,46.251 +239626,62.943,43.909 +239627,63.323,41.419 +239628,63.701,38.748 +239629,61.23,46.209 +239630,61.659,43.889 +239631,62.092,41.422 +239632,62.528,38.78 +239633,59.899,46.165 +239634,60.375,43.867 +239635,60.86,41.427 +239636,61.355,38.813 +239637,58.568,46.119 +239638,59.092,43.845 +239639,59.629,41.432 +239640,60.182,38.849 +239641,57.238,46.071 +239642,57.809,43.823 +239643,58.397,41.437 +239644,59.007,38.887 +239645,55.908,46.022 +239646,56.526,43.8 +239647,57.165,41.444 +239648,57.832,38.927 +239649,54.579,45.972 +239650,55.243,43.777 +239651,55.933,41.451 +239652,56.656,38.969 +239653,53.251,45.919 +239654,53.961,43.753 +239655,54.701,41.459 +239656,55.479,39.013 +239657,51.923,45.865 +239658,52.678,43.729 +239659,53.468,41.467 +239660,54.301,39.058 +239661,50.595,45.81 +239662,51.396,43.704 +239663,52.235,41.476 +239664,53.122,39.106 +239665,49.269,45.752 +239666,50.115,43.678 +239667,51.002,41.486 +239668,51.942,39.156 +239669,47.943,45.694 +239670,48.833,43.652 +239671,49.769,41.497 +239672,50.761,39.207 +239673,46.617,45.633 +239674,47.552,43.626 +239675,48.535,41.508 +239676,49.578,39.261 +239677,45.293,45.572 +239678,46.272,43.599 +239679,47.301,41.52 +239680,48.395,39.316 +239681,43.969,45.508 +239682,44.991,43.572 +239683,46.067,41.532 +239684,47.21,39.373 +239685,42.646,45.443 +239686,43.711,43.544 +239687,44.833,41.546 +239688,46.023,39.431 +239689,41.324,45.377 +239690,42.432,43.516 +239691,43.598,41.559 +239692,44.836,39.491 +239693,40.003,45.31 +239694,41.152,43.488 +239695,42.362,41.574 +239696,43.647,39.553 +239697,38.683,45.241 +239698,39.874,43.459 +239699,41.127,41.589 +239700,42.456,39.617 +239701,37.364,45.17 +239702,38.595,43.43 +239703,39.89,41.604 +239704,41.264,39.681 +239705,36.046,45.098 +239706,37.317,43.4 +239707,38.654,41.62 +239708,40.07,39.748 +239709,34.729,45.025 +239710,36.04,43.37 +239711,37.417,41.637 +239712,38.875,39.816 +239713,33.413,44.951 +239714,34.762,43.339 +239715,36.18,41.654 +239716,37.678,39.885 +239717,32.098,44.875 +239718,33.486,43.309 +239719,34.942,41.671 +239720,36.48,39.955 +239721,30.784,44.798 +239722,32.209,43.277 +239723,33.704,41.69 +239724,35.28,40.027 +239725,29.471,44.72 +239726,30.934,43.246 +239727,32.465,41.708 +239728,34.078,40.1 +239729,28.16,44.641 +239730,29.658,43.214 +239731,31.226,41.727 +239732,32.874,40.174 +239733,26.849,44.56 +239734,28.383,43.182 +239735,29.986,41.747 +239736,31.669,40.25 +239737,25.54,44.479 +239738,27.109,43.15 +239739,28.746,41.767 +239740,30.462,40.326 +239741,24.233,44.396 +239742,25.835,43.117 +239743,27.505,41.787 +239744,29.253,40.404 +239745,22.926,44.312 +239746,24.562,43.084 +239747,26.264,41.808 +239748,28.042,40.482 +239749,21.621,44.227 +239750,23.289,43.051 +239751,25.022,41.83 +239752,26.829,40.562 +239753,20.318,44.142 +239754,22.017,43.017 +239755,23.78,41.852 +239756,25.615,40.642 +239757,19.015,44.055 +239758,20.745,42.983 +239759,22.537,41.874 +239760,24.399,40.723 +239761,17.715,43.967 +239762,19.474,42.95 +239763,21.294,41.896 +239764,23.18,40.805 +239765,16.415,43.879 +239766,18.204,42.915 +239767,20.05,41.919 +239768,21.96,40.888 +239769,15.117,43.79 +239770,16.934,42.881 +239771,18.805,41.942 +239772,20.738,40.972 +239773,13.821,43.699 +239774,15.664,42.847 +239775,17.56,41.966 +239776,19.514,41.056 +239777,12.526,43.608 +239778,14.396,42.812 +239779,16.314,41.989 +239780,18.288,41.14 +239781,11.233,43.517 +239782,13.127,42.777 +239783,15.068,42.014 +239784,17.06,41.226 +239785,9.9415,43.425 +239786,11.86,42.742 +239787,13.821,42.038 +239788,15.83,41.312 +239789,8.6516,43.332 +239790,10.593,42.707 +239791,12.574,42.063 +239792,14.598,41.398 +239793,7.3633,43.238 +239794,9.3264,42.672 +239795,11.326,42.087 +239796,13.364,41.485 +239797,6.0767,43.144 +239798,8.0606,42.637 +239799,10.077,42.112 +239800,12.128,41.572 +239801,4.7917,43.049 +239802,6.7955,42.601 +239803,8.8278,42.138 +239804,10.89,41.659 +239805,3.5085,42.954 +239806,5.531,42.566 +239807,7.5779,42.163 +239808,9.6505,41.747 +239809,2.2271,42.858 +239810,4.2672,42.53 +239811,6.3274,42.189 +239812,8.4087,41.835 +239813,0.94743,42.762 +239814,3.004,42.495 +239815,5.0762,42.215 +239816,7.1649,41.923 +239817,359.67,42.666 +239818,1.7415,42.459 +239819,3.8245,42.241 +239820,5.9191,42.011 +239821,358.39,42.569 +239822,0.47956,42.424 +239823,2.5721,42.267 +239824,4.6714,42.099 +239825,357.12,42.472 +239826,359.22,42.388 +239827,1.319,42.293 +239828,3.4218,42.187 +239829,355.85,42.375 +239830,357.96,42.353 +239831,0.06539,42.32 +239832,2.1702,42.275 +239833,354.58,42.278 +239834,356.7,42.318 +239835,358.81,42.346 +239836,0.91661,42.364 +239837,353.31,42.18 +239838,355.44,42.282 +239839,357.56,42.373 +239840,359.66,42.452 +239841,352.04,42.083 +239842,354.18,42.247 +239843,356.3,42.399 +239844,358.4,42.539 +239845,350.78,41.985 +239846,352.92,42.212 +239847,355.04,42.426 +239848,357.14,42.627 +239849,349.51,41.888 +239850,351.66,42.177 +239851,353.79,42.452 +239852,355.88,42.715 +239853,348.25,41.79 +239854,350.41,42.142 +239855,352.53,42.479 +239856,354.62,42.802 +239857,346.99,41.693 +239858,349.15,42.107 +239859,351.27,42.506 +239860,353.36,42.888 +239861,345.74,41.595 +239862,347.9,42.073 +239863,350.01,42.532 +239864,352.09,42.975 +239865,344.48,41.498 +239866,346.64,42.038 +239867,348.75,42.559 +239868,350.82,43.061 +239869,343.23,41.402 +239870,345.39,42.004 +239871,347.49,42.585 +239872,349.55,43.146 +239873,341.98,41.305 +239874,344.14,41.97 +239875,346.23,42.612 +239876,348.28,43.231 +239877,340.73,41.209 +239878,342.88,41.936 +239879,344.97,42.638 +239880,347,43.316 +239881,339.48,41.113 +239882,341.63,41.903 +239883,343.71,42.664 +239884,345.73,43.4 +239885,338.24,41.018 +239886,340.38,41.869 +239887,342.45,42.69 +239888,344.45,43.483 +239889,336.99,40.923 +239890,339.13,41.836 +239891,341.19,42.716 +239892,343.17,43.565 +239893,335.75,40.829 +239894,337.88,41.804 +239895,339.92,42.742 +239896,341.89,43.647 +239897,334.51,40.736 +239898,336.63,41.771 +239899,338.66,42.768 +239900,340.61,43.728 +239901,333.28,40.643 +239902,335.38,41.739 +239903,337.39,42.793 +239904,339.32,43.808 +239905,332.04,40.55 +239906,334.13,41.707 +239907,336.13,42.819 +239908,338.04,43.888 +239909,330.81,40.459 +239910,332.89,41.676 +239911,334.86,42.844 +239912,336.75,43.966 +239913,329.58,40.368 +239914,331.64,41.645 +239915,333.6,42.869 +239916,335.46,44.044 +239917,328.35,40.279 +239918,330.39,41.614 +239919,332.33,42.893 +239920,334.17,44.121 +239921,327.12,40.19 +239922,329.15,41.584 +239923,331.06,42.918 +239924,332.88,44.197 +239925,325.9,40.102 +239926,327.9,41.554 +239927,329.79,42.942 +239928,331.58,44.271 +239929,324.68,40.015 +239930,326.66,41.525 +239931,328.52,42.966 +239932,330.29,44.345 +239933,323.46,39.929 +239934,325.42,41.496 +239935,327.25,42.99 +239936,328.99,44.418 +239937,322.24,39.844 +239938,324.17,41.467 +239939,325.98,43.013 +239940,327.69,44.489 +239941,321.02,39.761 +239942,322.93,41.439 +239943,324.71,43.036 +239944,326.39,44.56 +239945,319.81,39.678 +239946,321.69,41.412 +239947,323.44,43.059 +239948,325.09,44.629 +239949,318.59,39.597 +239950,320.45,41.385 +239951,322.17,43.081 +239952,323.79,44.697 +239953,317.38,39.517 +239954,319.21,41.358 +239955,320.9,43.103 +239956,322.49,44.764 +239957,316.17,39.439 +239958,317.97,41.332 +239959,319.63,43.125 +239960,321.18,44.829 +239961,314.97,39.362 +239962,316.73,41.307 +239963,318.36,43.146 +239964,319.87,44.893 +239965,313.76,39.286 +239966,315.49,41.282 +239967,317.08,43.167 +239968,318.57,44.956 +239969,312.56,39.212 +239970,314.25,41.258 +239971,315.81,43.188 +239972,317.26,45.018 +239973,311.36,39.14 +239974,313.01,41.234 +239975,314.54,43.208 +239976,315.95,45.078 +239977,310.16,39.069 +239978,311.78,41.211 +239979,313.26,43.227 +239980,314.64,45.137 +239981,308.96,39 +239982,310.54,41.188 +239983,311.99,43.247 +239984,313.33,45.194 +239985,307.76,38.932 +239986,309.3,41.166 +239987,310.71,43.266 +239988,312.01,45.25 +239989,306.57,38.866 +239990,308.07,41.145 +239991,309.43,43.284 +239992,310.7,45.305 +239993,305.37,38.802 +239994,306.83,41.124 +239995,308.16,43.302 +239996,309.38,45.358 +239997,304.18,38.739 +239998,305.6,41.104 +239999,306.88,43.32 +240000,308.07,45.409 +240001,302.99,38.679 +240002,304.36,41.085 +240003,305.61,43.337 +240004,306.75,45.459 +240005,301.8,38.62 +240006,303.13,41.066 +240007,304.33,43.353 +240008,305.43,45.507 +240009,300.62,38.564 +240010,301.89,41.048 +240011,303.05,43.37 +240012,304.11,45.554 +240013,299.43,38.509 +240014,300.66,41.031 +240015,301.77,43.385 +240016,302.79,45.599 +240017,298.25,38.456 +240018,299.43,41.015 +240019,300.49,43.4 +240020,301.47,45.643 +240021,297.06,38.405 +240022,298.2,40.999 +240023,299.22,43.415 +240024,300.15,45.685 +240025,295.88,38.357 +240026,296.96,40.984 +240027,297.94,43.429 +240028,298.83,45.725 +240029,294.7,38.31 +240030,295.73,40.969 +240031,296.66,43.443 +240032,297.51,45.764 +240033,293.52,38.266 +240034,294.5,40.956 +240035,295.38,43.456 +240036,296.18,45.801 +240037,292.34,38.224 +240038,293.27,40.943 +240039,294.1,43.468 +240040,294.86,45.836 +240041,291.17,38.184 +240042,292.04,40.93 +240043,292.82,43.481 +240044,293.54,45.87 +240045,289.99,38.146 +240046,290.81,40.919 +240047,291.54,43.492 +240048,292.21,45.901 +240049,288.82,38.11 +240050,289.58,40.908 +240051,290.26,43.503 +240052,290.89,45.932 +240053,287.64,38.077 +240054,288.35,40.899 +240055,288.98,43.513 +240056,289.56,45.96 +240057,286.47,38.046 +240058,287.12,40.889 +240059,287.7,43.523 +240060,288.23,45.987 +240061,285.29,38.017 +240062,285.89,40.881 +240063,286.42,43.532 +240064,286.91,46.011 +240065,284.12,37.991 +240066,284.66,40.874 +240067,285.14,43.541 +240068,285.58,46.034 +240069,282.95,37.967 +240070,283.43,40.867 +240071,283.86,43.549 +240072,284.25,46.056 +240073,281.78,37.945 +240074,282.2,40.861 +240075,282.57,43.557 +240076,282.92,46.075 +240077,280.61,37.926 +240078,280.97,40.856 +240079,281.29,43.564 +240080,281.59,46.093 +240081,279.44,37.909 +240082,279.74,40.852 +240083,280.01,43.57 +240084,280.27,46.109 +240085,278.27,37.895 +240086,278.51,40.848 +240087,278.73,43.576 +240088,278.94,46.123 +240089,277.1,37.883 +240090,277.28,40.845 +240091,277.45,43.581 +240092,277.61,46.135 +240093,275.93,37.873 +240094,276.05,40.844 +240095,276.17,43.586 +240096,276.28,46.145 +240097,274.76,37.866 +240098,274.82,40.843 +240099,274.89,43.59 +240100,274.95,46.154 +240101,273.59,37.861 +240102,273.59,40.842 +240103,273.6,43.594 +240104,273.62,46.161 +240105,272.43,37.859 +240106,272.37,40.843 +240107,272.32,43.597 +240108,272.29,46.166 +240109,271.26,37.86 +240110,271.14,40.844 +240111,271.04,43.599 +240112,270.96,46.169 +240113,270.09,37.862 +240114,269.91,40.847 +240115,269.76,43.601 +240116,269.63,46.17 +240117,268.92,37.867 +240118,268.68,40.85 +240119,268.48,43.602 +240120,268.3,46.17 +240121,267.75,37.875 +240122,267.45,40.853 +240123,267.2,43.602 +240124,266.98,46.167 +240125,266.58,37.885 +240126,266.22,40.858 +240127,265.91,43.602 +240128,265.65,46.163 +240129,265.41,37.898 +240130,264.99,40.864 +240131,264.63,43.602 +240132,264.32,46.157 +240133,264.24,37.913 +240134,263.76,40.87 +240135,263.35,43.601 +240136,262.99,46.149 +240137,263.07,37.93 +240138,262.53,40.877 +240139,262.07,43.599 +240140,261.66,46.14 +240141,261.9,37.95 +240142,261.3,40.885 +240143,260.79,43.597 +240144,260.33,46.128 +240145,260.72,37.972 +240146,260.07,40.894 +240147,259.51,43.594 +240148,259.01,46.115 +240149,259.55,37.997 +240150,258.84,40.903 +240151,258.23,43.59 +240152,257.68,46.1 +240153,258.38,38.024 +240154,257.61,40.914 +240155,256.95,43.586 +240156,256.35,46.083 +240157,257.2,38.053 +240158,256.38,40.925 +240159,255.67,43.581 +240160,255.03,46.064 +240161,256.03,38.085 +240162,255.15,40.937 +240163,254.39,43.576 +240164,253.7,46.044 +240165,254.85,38.119 +240166,253.92,40.949 +240167,253.1,43.57 +240168,252.37,46.022 +240169,253.67,38.155 +240170,252.69,40.963 +240171,251.82,43.564 +240172,251.05,45.998 +240173,252.5,38.194 +240174,251.46,40.977 +240175,250.54,43.557 +240176,249.73,45.972 +240177,251.32,38.235 +240178,250.23,40.992 +240179,249.27,43.55 +240180,248.4,45.945 +240181,250.14,38.278 +240182,248.99,41.008 +240183,247.99,43.542 +240184,247.08,45.915 +240185,248.95,38.323 +240186,247.76,41.025 +240187,246.71,43.533 +240188,245.76,45.885 +240189,247.77,38.371 +240190,246.53,41.042 +240191,245.43,43.524 +240192,244.44,45.852 +240193,246.59,38.42 +240194,245.29,41.06 +240195,244.15,43.515 +240196,243.11,45.818 +240197,245.4,38.472 +240198,244.06,41.079 +240199,242.87,43.505 +240200,241.79,45.782 +240201,244.21,38.526 +240202,242.83,41.098 +240203,241.59,43.494 +240204,240.48,45.745 +240205,243.02,38.582 +240206,241.59,41.118 +240207,240.32,43.483 +240208,239.16,45.705 +240209,241.83,38.639 +240210,240.36,41.139 +240211,239.04,43.472 +240212,237.84,45.665 +240213,240.64,38.699 +240214,239.12,41.161 +240215,237.76,43.459 +240216,236.52,45.622 +240217,239.45,38.761 +240218,237.88,41.183 +240219,236.48,43.447 +240220,235.21,45.579 +240221,238.25,38.824 +240222,236.65,41.206 +240223,235.21,43.434 +240224,233.89,45.533 +240225,237.05,38.89 +240226,235.41,41.23 +240227,233.93,43.42 +240228,232.58,45.486 +240229,235.86,38.957 +240230,234.17,41.254 +240231,232.66,43.406 +240232,231.27,45.438 +240233,234.66,39.026 +240234,232.94,41.279 +240235,231.38,43.392 +240236,229.96,45.388 +240237,233.45,39.097 +240238,231.7,41.304 +240239,230.11,43.377 +240240,228.64,45.336 +240241,232.25,39.169 +240242,230.46,41.33 +240243,228.83,43.362 +240244,227.34,45.283 +240245,231.04,39.243 +240246,229.22,41.357 +240247,227.56,43.346 +240248,226.03,45.229 +240249,229.84,39.319 +240250,227.98,41.384 +240251,226.29,43.33 +240252,224.72,45.173 +240253,228.63,39.396 +240254,226.74,41.412 +240255,225.01,43.314 +240256,223.42,45.116 +240257,227.41,39.475 +240258,225.5,41.441 +240259,223.74,43.297 +240260,222.11,45.058 +240261,226.2,39.555 +240262,224.26,41.47 +240263,222.47,43.28 +240264,220.81,44.998 +240265,224.99,39.636 +240266,223.01,41.499 +240267,221.2,43.262 +240268,219.51,44.937 +240269,223.77,39.719 +240270,221.77,41.529 +240271,219.93,43.244 +240272,218.21,44.875 +240273,222.55,39.803 +240274,220.53,41.56 +240275,218.65,43.226 +240276,216.91,44.812 +240277,221.33,39.889 +240278,219.28,41.591 +240279,217.38,43.207 +240280,215.61,44.747 +240281,220.1,39.976 +240282,218.04,41.623 +240283,216.12,43.188 +240284,214.31,44.681 +240285,218.88,40.063 +240286,216.79,41.655 +240287,214.85,43.169 +240288,213.02,44.614 +240289,217.65,40.152 +240290,215.54,41.687 +240291,213.58,43.149 +240292,211.73,44.546 +240293,216.42,40.242 +240294,214.3,41.72 +240295,212.31,43.13 +240296,210.43,44.477 +240297,215.19,40.333 +240298,213.05,41.754 +240299,211.04,43.109 +240300,209.14,44.407 +240301,213.95,40.425 +240302,211.8,41.787 +240303,209.78,43.089 +240304,207.86,44.336 +240305,212.72,40.518 +240306,210.55,41.822 +240307,208.51,43.068 +240308,206.57,44.264 +240309,211.48,40.612 +240310,209.3,41.856 +240311,207.24,43.048 +240312,205.28,44.191 +240313,210.24,40.707 +240314,208.05,41.891 +240315,205.98,43.027 +240316,204,44.117 +240317,209,40.802 +240318,206.8,41.926 +240319,204.71,43.005 +240320,202.72,44.042 +240321,207.75,40.898 +240322,205.55,41.962 +240323,203.45,42.984 +240324,201.44,43.967 +240325,206.51,40.995 +240326,204.3,41.998 +240327,202.19,42.962 +240328,200.16,43.89 +240329,205.26,41.092 +240330,203.05,42.034 +240331,200.92,42.94 +240332,198.88,43.813 +240333,204.01,41.19 +240334,201.79,42.071 +240335,199.66,42.919 +240336,197.61,43.735 +240337,202.76,41.289 +240338,200.54,42.108 +240339,198.4,42.896 +240340,196.33,43.657 +240341,201.5,41.388 +240342,199.28,42.145 +240343,197.14,42.874 +240344,195.06,43.578 +240345,200.25,41.487 +240346,198.03,42.182 +240347,195.88,42.852 +240348,193.79,43.498 +240349,198.99,41.586 +240350,196.77,42.22 +240351,194.62,42.83 +240352,192.53,43.418 +240353,197.73,41.686 +240354,195.51,42.257 +240355,193.36,42.807 +240356,191.26,43.337 +240357,196.46,41.787 +240358,194.26,42.295 +240359,192.1,42.785 +240360,189.99,43.255 +240361,195.2,41.887 +240362,193,42.333 +240363,190.84,42.762 +240364,188.73,43.174 +240365,193.93,41.988 +240366,191.74,42.372 +240367,189.58,42.74 +240368,187.47,43.092 +240369,192.66,42.088 +240370,190.48,42.41 +240371,188.33,42.717 +240372,186.21,43.009 +240373,191.39,42.189 +240374,189.22,42.449 +240375,187.07,42.694 +240376,184.96,42.927 +240377,190.12,42.29 +240378,187.96,42.487 +240379,185.82,42.672 +240380,183.7,42.844 +240381,188.85,42.391 +240382,186.69,42.526 +240383,184.56,42.649 +240384,182.45,42.76 +240385,187.57,42.491 +240386,185.43,42.565 +240387,183.31,42.627 +240388,181.2,42.677 +240389,186.29,42.592 +240390,184.17,42.604 +240391,182.05,42.604 +240392,179.95,42.594 +240393,185.01,42.692 +240394,182.9,42.643 +240395,180.8,42.582 +240396,178.7,42.51 +240397,183.73,42.793 +240398,181.64,42.682 +240399,179.55,42.56 +240400,177.46,42.427 +240401,182.45,42.892 +240402,180.37,42.721 +240403,178.3,42.538 +240404,176.21,42.343 +240405,181.16,42.992 +240406,179.11,42.76 +240407,177.04,42.516 +240408,174.97,42.26 +240409,179.88,43.091 +240410,177.84,42.799 +240411,175.79,42.494 +240412,173.73,42.176 +240413,178.59,43.19 +240414,176.57,42.838 +240415,174.54,42.472 +240416,172.5,42.093 +240417,177.3,43.289 +240418,175.31,42.877 +240419,173.29,42.45 +240420,171.26,42.01 +240421,176,43.387 +240422,174.04,42.915 +240423,172.04,42.429 +240424,170.03,41.928 +240425,174.71,43.484 +240426,172.77,42.954 +240427,170.8,42.408 +240428,168.8,41.845 +240429,173.42,43.581 +240430,171.5,42.993 +240431,169.55,42.387 +240432,167.57,41.763 +240433,172.12,43.677 +240434,170.23,43.032 +240435,168.3,42.366 +240436,166.34,41.682 +240437,170.82,43.773 +240438,168.96,43.07 +240439,167.05,42.346 +240440,165.11,41.6 +240441,169.52,43.868 +240442,167.68,43.108 +240443,165.81,42.326 +240444,163.89,41.52 +240445,168.22,43.962 +240446,166.41,43.146 +240447,164.56,42.306 +240448,162.67,41.44 +240449,166.91,44.055 +240450,165.14,43.184 +240451,163.32,42.286 +240452,161.45,41.36 +240453,165.61,44.148 +240454,163.87,43.222 +240455,162.07,42.267 +240456,160.23,41.281 +240457,164.3,44.24 +240458,162.59,43.26 +240459,160.83,42.248 +240460,159.01,41.203 +240461,163,44.331 +240462,161.32,43.297 +240463,159.59,42.229 +240464,157.8,41.125 +240465,161.69,44.421 +240466,160.04,43.335 +240467,158.34,42.211 +240468,156.59,41.049 +240469,160.38,44.51 +240470,158.77,43.372 +240471,157.1,42.193 +240472,155.38,40.973 +240473,159.07,44.598 +240474,157.49,43.408 +240475,155.86,42.176 +240476,154.17,40.898 +240477,157.75,44.685 +240478,156.21,43.445 +240479,154.62,42.159 +240480,152.96,40.824 +240481,156.44,44.771 +240482,154.94,43.481 +240483,153.38,42.142 +240484,151.75,40.751 +240485,155.12,44.856 +240486,153.66,43.517 +240487,152.14,42.126 +240488,150.55,40.679 +240489,153.81,44.94 +240490,152.38,43.552 +240491,150.9,42.11 +240492,149.35,40.608 +240493,152.49,45.022 +240494,151.1,43.588 +240495,149.66,42.095 +240496,148.15,40.538 +240497,151.17,45.104 +240498,149.82,43.623 +240499,148.42,42.08 +240500,146.95,40.47 +240501,149.85,45.184 +240502,148.54,43.657 +240503,147.18,42.066 +240504,145.75,40.402 +240505,148.53,45.263 +240506,147.26,43.692 +240507,145.94,42.052 +240508,144.56,40.336 +240509,147.21,45.341 +240510,145.98,43.726 +240511,144.7,42.038 +240512,143.36,40.271 +240513,145.88,45.417 +240514,144.7,43.759 +240515,143.47,42.026 +240516,142.17,40.208 +240517,144.56,45.493 +240518,143.42,43.792 +240519,142.23,42.013 +240520,140.98,40.146 +240521,143.24,45.566 +240522,142.14,43.825 +240523,140.99,42.001 +240524,139.79,40.085 +240525,141.91,45.639 +240526,140.85,43.857 +240527,139.76,41.99 +240528,138.6,40.026 +240529,140.58,45.71 +240530,139.57,43.889 +240531,138.52,41.98 +240532,137.42,39.968 +240533,139.26,45.78 +240534,138.29,43.921 +240535,137.28,41.97 +240536,136.23,39.912 +240537,137.93,45.848 +240538,137.01,43.952 +240539,136.05,41.96 +240540,135.05,39.858 +240541,136.6,45.915 +240542,135.72,43.983 +240543,134.81,41.951 +240544,133.87,39.805 +240545,135.27,45.98 +240546,134.44,44.013 +240547,133.58,41.943 +240548,132.68,39.754 +240549,133.94,46.044 +240550,133.15,44.043 +240551,132.34,41.936 +240552,131.5,39.705 +240553,132.61,46.106 +240554,131.87,44.072 +240555,131.11,41.929 +240556,130.32,39.657 +240557,131.28,46.166 +240558,130.58,44.101 +240559,129.88,41.922 +240560,129.14,39.611 +240561,129.94,46.225 +240562,129.3,44.129 +240563,128.64,41.917 +240564,127.97,39.567 +240565,128.61,46.283 +240566,128.01,44.157 +240567,127.41,41.912 +240568,126.79,39.525 +240569,127.28,46.339 +240570,126.73,44.185 +240571,126.17,41.907 +240572,125.61,39.485 +240573,125.94,46.393 +240574,125.44,44.212 +240575,124.94,41.904 +240576,124.44,39.447 +240577,124.61,46.446 +240578,124.16,44.238 +240579,123.71,41.901 +240580,123.26,39.411 +240581,123.28,46.497 +240582,122.87,44.264 +240583,122.47,41.899 +240584,122.09,39.377 +240585,121.94,46.546 +240586,121.58,44.289 +240587,121.24,41.897 +240588,120.92,39.345 +240589,120.61,46.594 +240590,120.3,44.314 +240591,120.01,41.896 +240592,119.75,39.314 +240593,119.27,46.64 +240594,119.01,44.338 +240595,118.78,41.896 +240596,118.57,39.286 +240597,117.94,46.684 +240598,117.72,44.362 +240599,117.54,41.897 +240600,117.4,39.261 +240601,116.6,46.727 +240602,116.44,44.385 +240603,116.31,41.898 +240604,116.23,39.237 +240605,115.26,46.767 +240606,115.15,44.408 +240607,115.08,41.901 +240608,115.06,39.215 +240609,113.93,46.806 +240610,113.86,44.43 +240611,113.84,41.903 +240612,113.89,39.196 +240613,112.59,46.844 +240614,112.58,44.451 +240615,112.61,41.907 +240616,112.72,39.179 +240617,111.25,46.879 +240618,111.29,44.472 +240619,111.38,41.911 +240620,111.55,39.164 +240621,109.92,46.913 +240622,110,44.493 +240623,110.14,41.917 +240624,110.38,39.151 +240625,108.58,46.945 +240626,108.71,44.512 +240627,108.91,41.922 +240628,109.2,39.141 +240629,107.24,46.975 +240630,107.42,44.532 +240631,107.68,41.929 +240632,108.03,39.133 +240633,105.91,47.004 +240634,106.14,44.55 +240635,106.45,41.937 +240636,106.86,39.127 +240637,104.57,47.031 +240638,104.85,44.568 +240639,105.21,41.945 +240640,105.69,39.124 +240641,103.24,47.055 +240642,103.56,44.586 +240643,103.98,41.954 +240644,104.52,39.122 +240645,101.9,47.079 +240646,102.27,44.603 +240647,102.74,41.964 +240648,103.35,39.123 +240649,100.56,47.1 +240650,100.99,44.619 +240651,101.51,41.974 +240652,102.17,39.127 +240653,99.228,47.119 +240654,99.699,44.635 +240655,100.28,41.985 +240656,101,39.133 +240657,97.892,47.137 +240658,98.412,44.65 +240659,99.043,41.997 +240660,99.827,39.141 +240661,96.558,47.153 +240662,97.125,44.665 +240663,97.808,42.01 +240664,98.653,39.151 +240665,95.223,47.167 +240666,95.837,44.679 +240667,96.573,42.024 +240668,97.478,39.164 +240669,93.889,47.18 +240670,94.55,44.692 +240671,95.338,42.038 +240672,96.302,39.179 +240673,92.555,47.19 +240674,93.263,44.705 +240675,94.103,42.054 +240676,95.125,39.197 +240677,91.221,47.199 +240678,91.976,44.718 +240679,92.867,42.07 +240680,93.947,39.217 +240681,89.888,47.206 +240682,90.69,44.729 +240683,91.632,42.086 +240684,92.768,39.239 +240685,88.556,47.211 +240686,89.403,44.74 +240687,90.395,42.104 +240688,91.588,39.264 +240689,87.224,47.214 +240690,88.117,44.751 +240691,89.159,42.122 +240692,90.407,39.29 +240693,85.893,47.216 +240694,86.83,44.761 +240695,87.922,42.141 +240696,89.225,39.32 +240697,84.562,47.216 +240698,85.544,44.77 +240699,86.684,42.161 +240700,88.042,39.351 +240701,83.232,47.214 +240702,84.258,44.779 +240703,85.446,42.182 +240704,86.857,39.385 +240705,81.903,47.211 +240706,82.973,44.788 +240707,84.208,42.203 +240708,85.671,39.421 +240709,80.575,47.205 +240710,81.687,44.795 +240711,82.969,42.225 +240712,84.483,39.459 +240713,79.247,47.198 +240714,80.402,44.802 +240715,81.73,42.248 +240716,83.295,39.499 +240717,77.92,47.189 +240718,79.117,44.809 +240719,80.491,42.272 +240720,82.104,39.542 +240721,76.594,47.179 +240722,77.833,44.815 +240723,79.251,42.296 +240724,80.912,39.587 +240725,75.268,47.167 +240726,76.549,44.821 +240727,78.01,42.321 +240728,79.719,39.634 +240729,73.944,47.153 +240730,75.265,44.826 +240731,76.769,42.347 +240732,78.523,39.683 +240733,72.62,47.137 +240734,73.981,44.83 +240735,75.527,42.373 +240736,77.326,39.734 +240737,71.298,47.12 +240738,72.697,44.834 +240739,74.285,42.4 +240740,76.128,39.788 +240741,69.976,47.101 +240742,71.414,44.837 +240743,73.043,42.428 +240744,74.927,39.843 +240745,68.656,47.081 +240746,70.132,44.84 +240747,71.799,42.457 +240748,73.725,39.901 +240749,67.336,47.059 +240750,68.849,44.843 +240751,70.556,42.486 +240752,72.521,39.96 +240753,66.018,47.035 +240754,67.567,44.844 +240755,69.311,42.516 +240756,71.315,40.022 +240757,64.7,47.01 +240758,66.286,44.846 +240759,68.066,42.547 +240760,70.107,40.085 +240761,63.384,46.983 +240762,65.005,44.847 +240763,66.821,42.578 +240764,68.897,40.151 +240765,62.069,46.955 +240766,63.724,44.847 +240767,65.574,42.61 +240768,67.685,40.218 +240769,60.755,46.925 +240770,62.443,44.847 +240771,64.328,42.643 +240772,66.471,40.287 +240773,59.443,46.894 +240774,61.163,44.847 +240775,63.08,42.676 +240776,65.255,40.358 +240777,58.131,46.861 +240778,59.884,44.845 +240779,61.832,42.71 +240780,64.037,40.431 +240781,56.821,46.827 +240782,58.605,44.844 +240783,60.583,42.744 +240784,62.817,40.505 +240785,55.513,46.791 +240786,57.326,44.842 +240787,59.334,42.779 +240788,61.595,40.581 +240789,54.205,46.754 +240790,56.048,44.84 +240791,58.084,42.815 +240792,60.37,40.659 +240793,52.899,46.716 +240794,54.77,44.837 +240795,56.833,42.851 +240796,59.144,40.738 +240797,51.595,46.676 +240798,53.493,44.834 +240799,55.581,42.888 +240800,57.915,40.819 +240801,50.291,46.635 +240802,52.216,44.83 +240803,54.329,42.925 +240804,56.684,40.901 +240805,48.99,46.592 +240806,50.94,44.826 +240807,53.076,42.963 +240808,55.451,40.985 +240809,47.689,46.548 +240810,49.664,44.822 +240811,51.823,43.001 +240812,54.216,41.071 +240813,46.391,46.503 +240814,48.388,44.817 +240815,50.568,43.04 +240816,52.978,41.158 +240817,45.093,46.457 +240818,47.114,44.812 +240819,49.313,43.08 +240820,51.738,41.246 +240821,43.798,46.41 +240822,45.839,44.807 +240823,48.058,43.119 +240824,50.497,41.335 +240825,42.504,46.361 +240826,44.566,44.801 +240827,46.801,43.16 +240828,49.252,41.426 +240829,41.211,46.312 +240830,43.292,44.795 +240831,45.544,43.201 +240832,48.006,41.518 +240833,39.92,46.261 +240834,42.02,44.788 +240835,44.286,43.242 +240836,46.757,41.611 +240837,38.631,46.209 +240838,40.747,44.782 +240839,43.027,43.284 +240840,45.507,41.705 +240841,37.343,46.156 +240842,39.476,44.775 +240843,41.768,43.326 +240844,44.254,41.8 +240845,36.057,46.102 +240846,38.205,44.767 +240847,40.507,43.368 +240848,42.998,41.896 +240849,34.773,46.047 +240850,36.934,44.76 +240851,39.246,43.411 +240852,41.741,41.994 +240853,33.49,45.991 +240854,35.664,44.752 +240855,37.985,43.455 +240856,40.481,42.092 +240857,32.209,45.935 +240858,34.395,44.744 +240859,36.722,43.498 +240860,39.219,42.191 +240861,30.93,45.877 +240862,33.126,44.736 +240863,35.459,43.542 +240864,37.955,42.291 +240865,29.653,45.819 +240866,31.858,44.727 +240867,34.195,43.587 +240868,36.689,42.392 +240869,28.377,45.759 +240870,30.59,44.718 +240871,32.93,43.631 +240872,35.421,42.493 +240873,27.104,45.699 +240874,29.323,44.709 +240875,31.665,43.676 +240876,34.15,42.595 +240877,25.832,45.638 +240878,28.056,44.7 +240879,30.398,43.722 +240880,32.877,42.698 +240881,24.561,45.577 +240882,26.79,44.691 +240883,29.131,43.767 +240884,31.603,42.801 +240885,23.293,45.515 +240886,25.525,44.682 +240887,27.864,43.813 +240888,30.326,42.905 +240889,22.027,45.452 +240890,24.26,44.672 +240891,26.595,43.859 +240892,29.047,43.01 +240893,20.762,45.389 +240894,22.996,44.662 +240895,25.326,43.905 +240896,27.766,43.115 +240897,19.499,45.325 +240898,21.732,44.653 +240899,24.056,43.952 +240900,26.483,43.22 +240901,18.239,45.26 +240902,20.469,44.643 +240903,22.785,43.998 +240904,25.198,43.325 +240905,16.98,45.195 +240906,19.206,44.633 +240907,21.514,44.045 +240908,23.911,43.431 +240909,15.723,45.13 +240910,17.945,44.623 +240911,20.241,44.092 +240912,22.621,43.537 +240913,14.467,45.064 +240914,16.683,44.612 +240915,18.968,44.14 +240916,21.33,43.644 +240917,13.214,44.998 +240918,15.422,44.602 +240919,17.695,44.187 +240920,20.037,43.75 +240921,11.963,44.932 +240922,14.162,44.592 +240923,16.42,44.234 +240924,18.742,43.857 +240925,10.713,44.865 +240926,12.903,44.582 +240927,15.145,44.282 +240928,17.446,43.964 +240929,9.4659,44.798 +240930,11.644,44.572 +240931,13.869,44.329 +240932,16.147,44.07 +240933,8.2203,44.731 +240934,10.385,44.562 +240935,12.593,44.377 +240936,14.847,44.177 +240937,6.9767,44.664 +240938,9.1272,44.551 +240939,11.315,44.425 +240940,13.544,44.284 +240941,5.7349,44.597 +240942,7.8699,44.541 +240943,10.038,44.473 +240944,12.24,44.39 +240945,4.495,44.53 +240946,6.6131,44.531 +240947,8.7589,44.521 +240948,10.934,44.497 +240949,3.2571,44.462 +240950,5.3568,44.521 +240951,7.4795,44.568 +240952,9.6268,44.603 +240953,2.021,44.395 +240954,4.1011,44.511 +240955,6.1995,44.616 +240956,8.3176,44.709 +240957,0.78685,44.328 +240958,2.846,44.502 +240959,4.9189,44.664 +240960,7.0067,44.814 +240961,359.55,44.261 +240962,1.5914,44.492 +240963,3.6376,44.712 +240964,5.6942,44.919 +240965,358.32,44.194 +240966,0.33726,44.483 +240967,2.3556,44.76 +240968,4.3801,45.024 +240969,357.1,44.127 +240970,359.08,44.473 +240971,1.073,44.807 +240972,3.0644,45.129 +240973,355.87,44.061 +240974,357.83,44.464 +240975,359.79,44.855 +240976,1.7472,45.233 +240977,354.64,43.994 +240978,356.58,44.455 +240979,358.51,44.903 +240980,0.42841,45.336 +240981,353.42,43.929 +240982,355.33,44.446 +240983,357.22,44.95 +240984,359.11,45.439 +240985,352.2,43.863 +240986,354.07,44.438 +240987,355.94,44.997 +240988,357.79,45.542 +240989,350.98,43.798 +240990,352.82,44.429 +240991,354.65,45.045 +240992,356.46,45.644 +240993,349.76,43.733 +240994,351.57,44.421 +240995,353.36,45.092 +240996,355.14,45.745 +240997,348.55,43.669 +240998,350.32,44.413 +240999,352.08,45.138 +241000,353.81,45.845 +241001,347.33,43.606 +241002,349.07,44.405 +241003,350.79,45.185 +241004,352.49,45.945 +241005,346.12,43.543 +241006,347.82,44.398 +241007,349.5,45.232 +241008,351.16,46.044 +241009,344.91,43.481 +241010,346.58,44.391 +241011,348.21,45.278 +241012,349.83,46.142 +241013,343.7,43.419 +241014,345.33,44.384 +241015,346.92,45.324 +241016,348.5,46.239 +241017,342.49,43.359 +241018,344.08,44.378 +241019,345.64,45.37 +241020,347.17,46.335 +241021,341.29,43.299 +241022,342.83,44.372 +241023,344.35,45.416 +241024,345.83,46.431 +241025,340.08,43.239 +241026,341.58,44.366 +241027,343.05,45.461 +241028,344.5,46.525 +241029,338.88,43.181 +241030,340.34,44.36 +241031,341.76,45.506 +241032,343.16,46.619 +241033,337.68,43.124 +241034,339.09,44.355 +241035,340.47,45.551 +241036,341.83,46.711 +241037,336.48,43.067 +241038,337.85,44.351 +241039,339.18,45.595 +241040,340.49,46.803 +241041,335.28,43.012 +241042,336.6,44.346 +241043,337.89,45.64 +241044,339.15,46.893 +241045,334.09,42.958 +241046,335.35,44.343 +241047,336.6,45.684 +241048,337.81,46.983 +241049,332.89,42.904 +241050,334.11,44.339 +241051,335.3,45.727 +241052,336.47,47.071 +241053,331.7,42.852 +241054,332.86,44.336 +241055,334.01,45.77 +241056,335.13,47.158 +241057,330.5,42.801 +241058,331.62,44.334 +241059,332.71,45.813 +241060,333.79,47.244 +241061,329.31,42.751 +241062,330.38,44.331 +241063,331.42,45.856 +241064,332.45,47.328 +241065,328.12,42.703 +241066,329.13,44.33 +241067,330.12,45.898 +241068,331.1,47.412 +241069,326.93,42.656 +241070,327.89,44.329 +241071,328.83,45.94 +241072,329.76,47.494 +241073,325.74,42.61 +241074,326.65,44.328 +241075,327.53,45.981 +241076,328.41,47.574 +241077,324.56,42.565 +241078,325.4,44.328 +241079,326.24,46.022 +241080,327.07,47.654 +241081,323.37,42.522 +241082,324.16,44.328 +241083,324.94,46.063 +241084,325.72,47.732 +241085,322.19,42.48 +241086,322.92,44.329 +241087,323.65,46.103 +241088,324.37,47.809 +241089,321,42.44 +241090,321.67,44.331 +241091,322.35,46.143 +241092,323.03,47.884 +241093,319.82,42.401 +241094,320.43,44.333 +241095,321.05,46.182 +241096,321.68,47.958 +241097,318.64,42.364 +241098,319.19,44.335 +241099,319.75,46.221 +241100,320.33,48.031 +241101,317.46,42.328 +241102,317.95,44.338 +241103,318.46,46.26 +241104,318.98,48.102 +241105,316.27,42.294 +241106,316.7,44.342 +241107,317.16,46.298 +241108,317.63,48.171 +241109,315.09,42.262 +241110,315.46,44.346 +241111,315.86,46.335 +241112,316.28,48.239 +241113,313.91,42.231 +241114,314.22,44.351 +241115,314.56,46.372 +241116,314.93,48.306 +241117,312.73,42.203 +241118,312.98,44.357 +241119,313.26,46.409 +241120,313.58,48.371 +241121,311.56,42.175 +241122,311.74,44.363 +241123,311.97,46.445 +241124,312.23,48.435 +241125,310.38,42.15 +241126,310.5,44.369 +241127,310.67,46.48 +241128,310.88,48.496 +241129,309.2,42.126 +241130,309.25,44.377 +241131,309.37,46.515 +241132,309.53,48.557 +241133,308.02,42.104 +241134,308.01,44.384 +241135,308.07,46.55 +241136,308.18,48.616 +241137,306.84,42.084 +241138,306.77,44.393 +241139,306.77,46.584 +241140,306.83,48.673 +241141,305.67,42.066 +241142,305.53,44.402 +241143,305.47,46.618 +241144,305.48,48.728 +241145,304.49,42.05 +241146,304.29,44.412 +241147,304.17,46.651 +241148,304.13,48.782 +241149,303.31,42.036 +241150,303.04,44.423 +241151,302.87,46.683 +241152,302.78,48.835 +241153,302.13,42.024 +241154,301.8,44.434 +241155,301.57,46.715 +241156,301.43,48.885 +241157,300.96,42.013 +241158,300.56,44.446 +241159,300.27,46.746 +241160,300.08,48.934 +241161,299.78,42.005 +241162,299.32,44.458 +241163,298.97,46.777 +241164,298.72,48.982 +241165,298.6,41.998 +241166,298.07,44.471 +241167,297.68,46.808 +241168,297.37,49.027 +241169,297.42,41.994 +241170,296.83,44.485 +241171,296.38,46.837 +241172,296.02,49.071 +241173,296.24,41.992 +241174,295.59,44.5 +241175,295.08,46.867 +241176,294.67,49.113 +241177,295.07,41.991 +241178,294.35,44.515 +241179,293.78,46.895 +241180,293.32,49.154 +241181,293.89,41.993 +241182,293.1,44.531 +241183,292.48,46.923 +241184,291.97,49.193 +241185,292.71,41.997 +241186,291.86,44.547 +241187,291.18,46.951 +241188,290.62,49.23 +241189,291.52,42.003 +241190,290.61,44.565 +241191,289.88,46.978 +241192,289.27,49.265 +241193,290.34,42.011 +241194,289.37,44.583 +241195,288.58,47.004 +241196,287.93,49.299 +241197,289.16,42.021 +241198,288.13,44.601 +241199,287.28,47.03 +241200,286.58,49.331 +241201,287.98,42.033 +241202,286.88,44.621 +241203,285.98,47.055 +241204,285.23,49.361 +241205,286.79,42.048 +241206,285.64,44.641 +241207,284.68,47.08 +241208,283.88,49.39 +241209,285.61,42.064 +241210,284.39,44.662 +241211,283.38,47.104 +241212,282.53,49.417 +241213,284.42,42.082 +241214,283.14,44.683 +241215,282.08,47.128 +241216,281.19,49.442 +241217,283.24,42.103 +241218,281.9,44.705 +241219,280.79,47.151 +241220,279.84,49.465 +241221,282.05,42.126 +241222,280.65,44.728 +241223,279.49,47.173 +241224,278.5,49.487 +241225,280.86,42.151 +241226,279.41,44.752 +241227,278.19,47.195 +241228,277.15,49.507 +241229,279.67,42.178 +241230,278.16,44.776 +241231,276.89,47.217 +241232,275.81,49.525 +241233,278.47,42.207 +241234,276.91,44.801 +241235,275.59,47.237 +241236,274.46,49.542 +241237,277.28,42.238 +241238,275.66,44.826 +241239,274.3,47.257 +241240,273.12,49.557 +241241,276.09,42.271 +241242,274.41,44.853 +241243,273,47.277 +241244,271.78,49.57 +241245,274.89,42.306 +241246,273.16,44.88 +241247,271.7,47.296 +241248,270.44,49.581 +241249,273.69,42.344 +241250,271.91,44.907 +241251,270.41,47.315 +241252,269.1,49.591 +241253,272.49,42.383 +241254,270.66,44.936 +241255,269.11,47.333 +241256,267.76,49.599 +241257,271.29,42.425 +241258,269.41,44.965 +241259,267.81,47.35 +241260,266.42,49.606 +241261,270.09,42.468 +241262,268.16,44.995 +241263,266.52,47.367 +241264,265.08,49.611 +241265,268.88,42.514 +241266,266.91,45.025 +241267,265.22,47.383 +241268,263.75,49.614 +241269,267.68,42.561 +241270,265.66,45.056 +241271,263.93,47.399 +241272,262.41,49.615 +241273,266.47,42.611 +241274,264.4,45.088 +241275,262.63,47.414 +241276,261.08,49.615 +241277,265.26,42.662 +241278,263.15,45.12 +241279,261.34,47.429 +241280,259.75,49.614 +241281,264.05,42.716 +241282,261.9,45.153 +241283,260.04,47.443 +241284,258.41,49.611 +241285,262.83,42.771 +241286,260.64,45.187 +241287,258.75,47.457 +241288,257.08,49.606 +241289,261.62,42.828 +241290,259.39,45.221 +241291,257.46,47.47 +241292,255.75,49.599 +241293,260.4,42.887 +241294,258.13,45.256 +241295,256.16,47.483 +241296,254.42,49.591 +241297,259.18,42.948 +241298,256.87,45.291 +241299,254.87,47.495 +241300,253.1,49.582 +241301,257.96,43.011 +241302,255.62,45.327 +241303,253.58,47.507 +241304,251.77,49.571 +241305,256.73,43.076 +241306,254.36,45.364 +241307,252.29,47.518 +241308,250.44,49.558 +241309,255.51,43.142 +241310,253.1,45.401 +241311,250.99,47.529 +241312,249.12,49.544 +241313,254.28,43.21 +241314,251.84,45.439 +241315,249.7,47.539 +241316,247.8,49.529 +241317,253.05,43.28 +241318,250.58,45.478 +241319,248.41,47.549 +241320,246.48,49.512 +241321,251.81,43.351 +241322,249.32,45.517 +241323,247.12,47.558 +241324,245.16,49.494 +241325,250.58,43.424 +241326,248.06,45.556 +241327,245.83,47.567 +241328,243.84,49.474 +241329,249.34,43.499 +241330,246.8,45.596 +241331,244.54,47.575 +241332,242.52,49.453 +241333,248.1,43.575 +241334,245.53,45.637 +241335,243.26,47.583 +241336,241.2,49.43 +241337,246.86,43.653 +241338,244.27,45.678 +241339,241.97,47.59 +241340,239.89,49.407 +241341,245.62,43.732 +241342,243,45.72 +241343,240.68,47.598 +241344,238.58,49.381 +241345,244.37,43.813 +241346,241.74,45.762 +241347,239.39,47.604 +241348,237.27,49.355 +241349,243.12,43.895 +241350,240.47,45.805 +241351,238.11,47.611 +241352,235.96,49.327 +241353,241.87,43.979 +241354,239.21,45.848 +241355,236.82,47.616 +241356,234.65,49.298 +241357,240.62,44.064 +241358,237.94,45.892 +241359,235.53,47.622 +241360,233.34,49.268 +241361,239.36,44.15 +241362,236.67,45.936 +241363,234.25,47.627 +241364,232.04,49.237 +241365,238.1,44.238 +241366,235.4,45.981 +241367,232.96,47.632 +241368,230.73,49.204 +241369,236.84,44.327 +241370,234.13,46.026 +241371,231.68,47.636 +241372,229.43,49.171 +241373,235.58,44.417 +241374,232.86,46.071 +241375,230.4,47.64 +241376,228.13,49.136 +241377,234.31,44.508 +241378,231.59,46.117 +241379,229.11,47.644 +241380,226.83,49.1 +241381,233.05,44.6 +241382,230.32,46.163 +241383,227.83,47.647 +241384,225.54,49.063 +241385,231.78,44.694 +241386,229.04,46.21 +241387,226.55,47.65 +241388,224.24,49.025 +241389,230.5,44.788 +241390,227.77,46.257 +241391,225.27,47.653 +241392,222.95,48.986 +241393,229.23,44.884 +241394,226.5,46.304 +241395,223.99,47.656 +241396,221.66,48.946 +241397,227.95,44.98 +241398,225.22,46.352 +241399,222.71,47.658 +241400,220.37,48.905 +241401,226.68,45.077 +241402,223.95,46.4 +241403,221.43,47.66 +241404,219.08,48.864 +241405,225.39,45.175 +241406,222.67,46.449 +241407,220.15,47.662 +241408,217.79,48.821 +241409,224.11,45.274 +241410,221.39,46.497 +241411,218.87,47.663 +241412,216.51,48.778 +241413,222.83,45.374 +241414,220.11,46.546 +241415,217.59,47.664 +241416,215.23,48.733 +241417,221.54,45.474 +241418,218.83,46.596 +241419,216.31,47.665 +241420,213.95,48.688 +241421,220.25,45.575 +241422,217.55,46.645 +241423,215.04,47.666 +241424,212.67,48.643 +241425,218.96,45.677 +241426,216.27,46.695 +241427,213.76,47.666 +241428,211.39,48.596 +241429,217.66,45.78 +241430,214.99,46.745 +241431,212.48,47.667 +241432,210.12,48.549 +241433,216.37,45.882 +241434,213.71,46.796 +241435,211.21,47.667 +241436,208.84,48.501 +241437,215.07,45.986 +241438,212.43,46.846 +241439,209.93,47.667 +241440,207.57,48.453 +241441,213.77,46.09 +241442,211.14,46.897 +241443,208.66,47.667 +241444,206.3,48.404 +241445,212.46,46.194 +241446,209.86,46.948 +241447,207.39,47.667 +241448,205.03,48.354 +241449,211.16,46.299 +241450,208.57,46.999 +241451,206.11,47.666 +241452,203.77,48.304 +241453,209.85,46.404 +241454,207.29,47.05 +241455,204.84,47.666 +241456,202.5,48.254 +241457,208.54,46.509 +241458,206,47.102 +241459,203.57,47.665 +241460,201.24,48.203 +241461,207.23,46.615 +241462,204.71,47.153 +241463,202.3,47.665 +241464,199.98,48.152 +241465,205.92,46.72 +241466,203.42,47.205 +241467,201.03,47.664 +241468,198.72,48.1 +241469,204.61,46.826 +241470,202.14,47.257 +241471,199.76,47.663 +241472,197.47,48.048 +241473,203.29,46.932 +241474,200.85,47.309 +241475,198.49,47.662 +241476,196.21,47.996 +241477,201.97,47.038 +241478,199.56,47.36 +241479,197.22,47.662 +241480,194.96,47.944 +241481,200.65,47.144 +241482,198.26,47.412 +241483,195.95,47.661 +241484,193.71,47.891 +241485,199.33,47.251 +241486,196.97,47.465 +241487,194.68,47.66 +241488,192.46,47.839 +241489,198.01,47.357 +241490,195.68,47.517 +241491,193.42,47.659 +241492,191.21,47.786 +241493,196.68,47.462 +241494,194.39,47.569 +241495,192.15,47.658 +241496,189.97,47.733 +241497,195.35,47.568 +241498,193.09,47.621 +241499,190.88,47.657 +241500,188.72,47.68 +241501,194.03,47.674 +241502,191.8,47.673 +241503,189.62,47.657 +241504,187.48,47.627 +241505,192.69,47.779 +241506,190.5,47.725 +241507,188.35,47.656 +241508,186.24,47.574 +241509,191.36,47.884 +241510,189.21,47.777 +241511,187.09,47.655 +241512,185,47.521 +241513,190.03,47.989 +241514,187.91,47.829 +241515,185.83,47.655 +241516,183.77,47.469 +241517,188.69,48.094 +241518,186.61,47.881 +241519,184.56,47.655 +241520,182.53,47.416 +241521,187.36,48.198 +241522,185.32,47.933 +241523,183.3,47.654 +241524,181.3,47.364 +241525,186.02,48.301 +241526,184.02,47.984 +241527,182.04,47.654 +241528,180.07,47.312 +241529,184.68,48.404 +241530,182.72,48.036 +241531,180.77,47.654 +241532,178.84,47.26 +241533,183.34,48.507 +241534,181.42,48.088 +241535,179.51,47.654 +241536,177.61,47.208 +241537,182,48.609 +241538,180.12,48.139 +241539,178.25,47.655 +241540,176.39,47.157 +241541,180.65,48.711 +241542,178.82,48.19 +241543,176.99,47.655 +241544,175.16,47.107 +241545,179.31,48.812 +241546,177.52,48.241 +241547,175.73,47.656 +241548,173.94,47.056 +241549,177.96,48.912 +241550,176.22,48.292 +241551,174.47,47.657 +241552,172.72,47.007 +241553,176.62,49.012 +241554,174.91,48.343 +241555,173.21,47.658 +241556,171.5,46.957 +241557,175.27,49.111 +241558,173.61,48.393 +241559,171.95,47.659 +241560,170.29,46.909 +241561,173.92,49.209 +241562,172.31,48.444 +241563,170.69,47.661 +241564,169.07,46.861 +241565,172.57,49.306 +241566,171,48.494 +241567,169.43,47.663 +241568,167.86,46.813 +241569,171.22,49.403 +241570,169.7,48.544 +241571,168.18,47.665 +241572,166.64,46.767 +241573,169.86,49.498 +241574,168.4,48.593 +241575,166.92,47.667 +241576,165.43,46.721 +241577,168.51,49.593 +241578,167.09,48.643 +241579,165.66,47.67 +241580,164.22,46.675 +241581,167.16,49.687 +241582,165.79,48.692 +241583,164.4,47.673 +241584,163.01,46.631 +241585,165.8,49.78 +241586,164.48,48.741 +241587,163.15,47.676 +241588,161.81,46.587 +241589,164.44,49.872 +241590,163.17,48.789 +241591,161.89,47.68 +241592,160.6,46.544 +241593,163.09,49.963 +241594,161.87,48.837 +241595,160.64,47.684 +241596,159.4,46.503 +241597,161.73,50.053 +241598,160.56,48.885 +241599,159.38,47.688 +241600,158.19,46.462 +241601,160.37,50.141 +241602,159.25,48.933 +241603,158.12,47.693 +241604,156.99,46.422 +241605,159.01,50.229 +241606,157.94,48.98 +241607,156.87,47.698 +241608,155.79,46.383 +241609,157.65,50.316 +241610,156.63,49.027 +241611,155.61,47.704 +241612,154.59,46.345 +241613,156.29,50.401 +241614,155.33,49.074 +241615,154.36,47.71 +241616,153.39,46.308 +241617,154.93,50.486 +241618,154.02,49.12 +241619,153.11,47.716 +241620,152.19,46.273 +241621,153.57,50.569 +241622,152.71,49.166 +241623,151.85,47.723 +241624,151,46.238 +241625,152.2,50.651 +241626,151.4,49.211 +241627,150.6,47.73 +241628,149.8,46.205 +241629,150.84,50.731 +241630,150.09,49.256 +241631,149.34,47.737 +241632,148.61,46.173 +241633,149.48,50.811 +241634,148.78,49.301 +241635,148.09,47.745 +241636,147.41,46.142 +241637,148.11,50.889 +241638,147.47,49.345 +241639,146.84,47.754 +241640,146.22,46.113 +241641,146.75,50.966 +241642,146.16,49.389 +241643,145.58,47.763 +241644,145.03,46.085 +241645,145.38,51.041 +241646,144.85,49.432 +241647,144.33,47.772 +241648,143.83,46.058 +241649,144.02,51.115 +241650,143.54,49.475 +241651,143.08,47.782 +241652,142.64,46.032 +241653,142.65,51.188 +241654,142.22,49.518 +241655,141.82,47.793 +241656,141.45,46.008 +241657,141.29,51.259 +241658,140.91,49.56 +241659,140.57,47.803 +241660,140.26,45.986 +241661,139.92,51.329 +241662,139.6,49.601 +241663,139.32,47.815 +241664,139.07,45.965 +241665,138.55,51.398 +241666,138.29,49.643 +241667,138.06,47.827 +241668,137.88,45.945 +241669,137.19,51.465 +241670,136.98,49.683 +241671,136.81,47.839 +241672,136.69,45.927 +241673,135.82,51.531 +241674,135.67,49.724 +241675,135.56,47.852 +241676,135.5,45.911 +241677,134.46,51.595 +241678,134.35,49.763 +241679,134.3,47.866 +241680,134.32,45.896 +241681,133.09,51.658 +241682,133.04,49.803 +241683,133.05,47.88 +241684,133.13,45.882 +241685,131.72,51.719 +241686,131.73,49.841 +241687,131.8,47.894 +241688,131.94,45.871 +241689,130.36,51.778 +241690,130.42,49.88 +241691,130.54,47.91 +241692,130.75,45.861 +241693,128.99,51.837 +241694,129.1,49.917 +241695,129.29,47.925 +241696,129.56,45.852 +241697,127.62,51.893 +241698,127.79,49.955 +241699,128.04,47.942 +241700,128.38,45.845 +241701,126.26,51.948 +241702,126.48,49.991 +241703,126.78,47.958 +241704,127.19,45.84 +241705,124.89,52.002 +241706,125.17,50.028 +241707,125.53,47.976 +241708,126,45.837 +241709,123.53,52.054 +241710,123.85,50.063 +241711,124.28,47.994 +241712,124.81,45.835 +241713,122.16,52.104 +241714,122.54,50.099 +241715,123.02,48.012 +241716,123.62,45.835 +241717,120.79,52.153 +241718,121.23,50.133 +241719,121.77,48.032 +241720,122.43,45.837 +241721,119.43,52.2 +241722,119.92,50.168 +241723,120.51,48.051 +241724,121.24,45.841 +241725,118.06,52.246 +241726,118.6,50.201 +241727,119.26,48.072 +241728,120.05,45.846 +241729,116.7,52.29 +241730,117.29,50.234 +241731,118,48.093 +241732,118.86,45.854 +241733,115.34,52.332 +241734,115.98,50.267 +241735,116.75,48.114 +241736,117.67,45.863 +241737,113.97,52.373 +241738,114.67,50.299 +241739,115.49,48.136 +241740,116.48,45.874 +241741,112.61,52.412 +241742,113.36,50.33 +241743,114.24,48.159 +241744,115.28,45.886 +241745,111.25,52.45 +241746,112.04,50.361 +241747,112.98,48.182 +241748,114.09,45.901 +241749,109.89,52.486 +241750,110.73,50.392 +241751,111.72,48.206 +241752,112.89,45.917 +241753,108.53,52.52 +241754,109.42,50.421 +241755,110.47,48.231 +241756,111.7,45.936 +241757,107.16,52.553 +241758,108.11,50.451 +241759,109.21,48.256 +241760,110.5,45.956 +241761,105.81,52.584 +241762,106.8,50.48 +241763,107.95,48.282 +241764,109.3,45.978 +241765,104.45,52.613 +241766,105.49,50.508 +241767,106.69,48.308 +241768,108.1,46.002 +241769,103.09,52.641 +241770,104.18,50.535 +241771,105.43,48.335 +241772,106.9,46.027 +241773,101.73,52.668 +241774,102.87,50.563 +241775,104.18,48.363 +241776,105.7,46.055 +241777,100.37,52.692 +241778,101.56,50.589 +241779,102.92,48.391 +241780,104.5,46.084 +241781,99.016,52.715 +241782,100.25,50.615 +241783,101.66,48.42 +241784,103.3,46.115 +241785,97.661,52.737 +241786,98.937,50.641 +241787,100.4,48.449 +241788,102.09,46.148 +241789,96.307,52.757 +241790,97.627,50.666 +241791,99.135,48.48 +241792,100.88,46.183 +241793,94.953,52.775 +241794,96.318,50.69 +241795,97.874,48.51 +241796,99.676,46.22 +241797,93.6,52.792 +241798,95.009,50.714 +241799,96.613,48.541 +241800,98.466,46.259 +241801,92.249,52.807 +241802,93.7,50.737 +241803,95.35,48.573 +241804,97.254,46.299 +241805,90.898,52.82 +241806,92.392,50.76 +241807,94.088,48.606 +241808,96.041,46.341 +241809,89.549,52.832 +241810,91.084,50.783 +241811,92.824,48.639 +241812,94.827,46.385 +241813,88.2,52.843 +241814,89.776,50.804 +241815,91.56,48.672 +241816,93.61,46.431 +241817,86.852,52.852 +241818,88.469,50.826 +241819,90.296,48.706 +241820,92.392,46.478 +241821,85.506,52.859 +241822,87.162,50.847 +241823,89.031,48.741 +241824,91.172,46.528 +241825,84.161,52.865 +241826,85.856,50.867 +241827,87.765,48.776 +241828,89.95,46.579 +241829,82.817,52.87 +241830,84.549,50.887 +241831,86.499,48.812 +241832,88.727,46.632 +241833,81.474,52.872 +241834,83.244,50.906 +241835,85.232,48.848 +241836,87.501,46.686 +241837,80.132,52.874 +241838,81.938,50.925 +241839,83.965,48.885 +241840,86.273,46.742 +241841,78.792,52.874 +241842,80.633,50.943 +241843,82.697,48.923 +241844,85.044,46.8 +241845,77.453,52.872 +241846,79.329,50.961 +241847,81.428,48.961 +241848,83.812,46.859 +241849,76.115,52.869 +241850,78.025,50.978 +241851,80.159,49 +241852,82.579,46.92 +241853,74.778,52.865 +241854,76.721,50.995 +241855,78.888,49.039 +241856,81.343,46.983 +241857,73.443,52.859 +241858,75.418,51.011 +241859,77.618,49.078 +241860,80.105,47.047 +241861,72.109,52.852 +241862,74.115,51.027 +241863,76.346,49.118 +241864,78.865,47.113 +241865,70.777,52.844 +241866,72.813,51.042 +241867,75.074,49.159 +241868,77.623,47.181 +241869,69.446,52.834 +241870,71.511,51.057 +241871,73.801,49.2 +241872,76.378,47.25 +241873,68.117,52.823 +241874,70.209,51.072 +241875,72.528,49.242 +241876,75.132,47.32 +241877,66.789,52.811 +241878,68.909,51.086 +241879,71.254,49.284 +241880,73.883,47.392 +241881,65.462,52.797 +241882,67.608,51.1 +241883,69.979,49.326 +241884,72.632,47.465 +241885,64.137,52.782 +241886,66.308,51.113 +241887,68.703,49.369 +241888,71.379,47.539 +241889,62.814,52.766 +241890,65.009,51.126 +241891,67.426,49.413 +241892,70.123,47.615 +241893,61.492,52.748 +241894,63.71,51.138 +241895,66.149,49.457 +241896,68.866,47.693 +241897,60.171,52.73 +241898,62.412,51.15 +241899,64.871,49.501 +241900,67.605,47.771 +241901,58.853,52.71 +241902,61.114,51.162 +241903,63.593,49.546 +241904,66.343,47.851 +241905,57.535,52.689 +241906,59.817,51.173 +241907,62.313,49.591 +241908,65.078,47.932 +241909,56.22,52.667 +241910,58.52,51.184 +241911,61.033,49.637 +241912,63.811,48.015 +241913,54.906,52.644 +241914,57.224,51.195 +241915,59.752,49.683 +241916,62.542,48.098 +241917,53.594,52.62 +241918,55.928,51.205 +241919,58.471,49.729 +241920,61.27,48.183 +241921,52.283,52.594 +241922,54.633,51.215 +241923,57.188,49.776 +241924,59.997,48.269 +241925,50.975,52.568 +241926,53.339,51.225 +241927,55.905,49.823 +241928,58.72,48.355 +241929,49.667,52.541 +241930,52.045,51.234 +241931,54.621,49.87 +241932,57.442,48.443 +241933,48.362,52.513 +241934,50.751,51.243 +241935,53.336,49.918 +241936,56.161,48.532 +241937,47.058,52.484 +241938,49.458,51.251 +241939,52.051,49.966 +241940,54.878,48.622 +241941,45.757,52.454 +241942,48.166,51.26 +241943,50.764,50.015 +241944,53.592,48.713 +241945,44.457,52.423 +241946,46.875,51.268 +241947,49.477,50.064 +241948,52.305,48.804 +241949,43.158,52.391 +241950,45.583,51.275 +241951,48.189,50.113 +241952,51.015,48.897 +241953,41.862,52.358 +241954,44.293,51.283 +241955,46.901,50.162 +241956,49.722,48.99 +241957,40.567,52.325 +241958,43.003,51.29 +241959,45.611,50.212 +241960,48.428,49.084 +241961,39.274,52.291 +241962,41.714,51.297 +241963,44.321,50.262 +241964,47.131,49.179 +241965,37.983,52.256 +241966,40.425,51.304 +241967,43.03,50.312 +241968,45.832,49.274 +241969,36.694,52.22 +241970,39.137,51.31 +241971,41.739,50.362 +241972,44.531,49.37 +241973,35.407,52.184 +241974,37.849,51.317 +241975,40.446,50.413 +241976,43.227,49.467 +241977,34.121,52.147 +241978,36.562,51.323 +241979,39.153,50.463 +241980,41.922,49.564 +241981,32.837,52.11 +241982,35.276,51.329 +241983,37.859,50.514 +241984,40.614,49.662 +241985,31.555,52.072 +241986,33.99,51.335 +241987,36.564,50.566 +241988,39.304,49.76 +241989,30.275,52.033 +241990,32.705,51.34 +241991,35.269,50.617 +241992,37.992,49.859 +241993,28.997,51.994 +241994,31.42,51.346 +241995,33.973,50.668 +241996,36.678,49.958 +241997,27.721,51.954 +241998,30.136,51.351 +241999,32.676,50.72 +242000,35.362,50.058 +242001,26.447,51.915 +242002,28.852,51.356 +242003,31.378,50.772 +242004,34.044,50.157 +242005,25.174,51.874 +242006,27.569,51.361 +242007,30.08,50.824 +242008,32.724,50.258 +242009,23.904,51.833 +242010,26.287,51.366 +242011,28.781,50.876 +242012,31.402,50.358 +242013,22.635,51.792 +242014,25.005,51.371 +242015,27.481,50.928 +242016,30.078,50.459 +242017,21.368,51.751 +242018,23.724,51.376 +242019,26.18,50.98 +242020,28.752,50.559 +242021,20.103,51.709 +242022,22.443,51.381 +242023,24.879,51.032 +242024,27.424,50.66 +242025,18.839,51.668 +242026,21.163,51.386 +242027,23.577,51.085 +242028,26.094,50.761 +242029,17.578,51.626 +242030,19.883,51.39 +242031,22.274,51.137 +242032,24.762,50.863 +242033,16.319,51.584 +242034,18.604,51.395 +242035,20.971,51.189 +242036,23.429,50.964 +242037,15.061,51.541 +242038,17.326,51.4 +242039,19.667,51.242 +242040,22.094,51.065 +242041,13.805,51.499 +242042,16.048,51.404 +242043,18.362,51.294 +242044,20.757,51.166 +242045,12.551,51.457 +242046,14.771,51.409 +242047,17.057,51.347 +242048,19.418,51.267 +242049,11.298,51.414 +242050,13.494,51.414 +242051,15.751,51.399 +242052,18.078,51.368 +242053,10.048,51.372 +242054,12.217,51.418 +242055,14.444,51.451 +242056,16.735,51.468 +242057,8.7992,51.329 +242058,10.942,51.423 +242059,13.137,51.504 +242060,15.392,51.569 +242061,7.5523,51.287 +242062,9.6664,51.428 +242063,11.829,51.556 +242064,14.047,51.669 +242065,6.3071,51.245 +242066,8.3915,51.433 +242067,10.521,51.608 +242068,12.7,51.769 +242069,5.0636,51.203 +242070,7.1172,51.438 +242071,9.2117,51.66 +242072,11.351,51.868 +242073,3.8218,51.162 +242074,5.8434,51.443 +242075,7.902,51.712 +242076,10.002,51.967 +242077,2.5817,51.12 +242078,4.57,51.448 +242079,6.5917,51.764 +242080,8.6502,52.066 +242081,1.3433,51.079 +242082,3.2972,51.453 +242083,5.2808,51.816 +242084,7.2976,52.164 +242085,0.10651,51.038 +242086,2.0247,51.459 +242087,3.9694,51.867 +242088,5.9435,52.262 +242089,358.87,50.998 +242090,0.75277,51.464 +242091,2.6575,51.919 +242092,4.5881,52.36 +242093,357.64,50.958 +242094,359.48,51.47 +242095,1.345,51.97 +242096,3.2314,52.457 +242097,356.41,50.918 +242098,358.21,51.476 +242099,0.031923,52.021 +242100,1.8734,52.553 +242101,355.18,50.879 +242102,356.94,51.482 +242103,358.72,52.072 +242104,0.51425,52.649 +242105,353.95,50.84 +242106,355.67,51.488 +242107,357.4,52.123 +242108,359.15,52.744 +242109,352.72,50.802 +242110,354.4,51.495 +242111,356.09,52.174 +242112,357.79,52.838 +242113,351.49,50.764 +242114,353.13,51.501 +242115,354.77,52.224 +242116,356.43,52.932 +242117,350.27,50.727 +242118,351.86,51.508 +242119,353.46,52.274 +242120,355.07,53.025 +242121,349.05,50.691 +242122,350.59,51.515 +242123,352.14,52.324 +242124,353.7,53.117 +242125,347.82,50.655 +242126,349.32,51.523 +242127,350.83,52.374 +242128,352.34,53.208 +242129,346.6,50.62 +242130,348.06,51.53 +242131,349.51,52.423 +242132,350.97,53.299 +242133,345.39,50.586 +242134,346.79,51.538 +242135,348.19,52.473 +242136,349.6,53.388 +242137,344.17,50.553 +242138,345.52,51.546 +242139,346.88,52.521 +242140,348.23,53.477 +242141,342.95,50.52 +242142,344.25,51.555 +242143,345.56,52.57 +242144,346.86,53.565 +242145,341.74,50.488 +242146,342.99,51.563 +242147,344.24,52.618 +242148,345.49,53.652 +242149,340.52,50.457 +242150,341.72,51.572 +242151,342.92,52.666 +242152,344.12,53.738 +242153,339.31,50.427 +242154,340.45,51.582 +242155,341.6,52.714 +242156,342.75,53.823 +242157,338.1,50.398 +242158,339.19,51.591 +242159,340.28,52.761 +242160,341.38,53.907 +242161,336.89,50.37 +242162,337.92,51.601 +242163,338.96,52.808 +242164,340,53.99 +242165,335.68,50.343 +242166,336.66,51.612 +242167,337.64,52.855 +242168,338.63,54.072 +242169,334.47,50.317 +242170,335.39,51.623 +242171,336.32,52.901 +242172,337.26,54.153 +242173,333.26,50.292 +242174,334.13,51.634 +242175,335,52.947 +242176,335.88,54.233 +242177,332.05,50.268 +242178,332.86,51.645 +242179,333.68,52.993 +242180,334.51,54.311 +242181,330.85,50.245 +242182,331.6,51.657 +242183,332.36,53.038 +242184,333.13,54.388 +242185,329.64,50.223 +242186,330.33,51.669 +242187,331.04,53.083 +242188,331.75,54.465 +242189,328.44,50.203 +242190,329.07,51.682 +242191,329.72,53.127 +242192,330.38,54.54 +242193,327.23,50.184 +242194,327.8,51.695 +242195,328.39,53.171 +242196,329,54.613 +242197,326.03,50.165 +242198,326.54,51.708 +242199,327.07,53.215 +242200,327.62,54.686 +242201,324.83,50.149 +242202,325.27,51.722 +242203,325.75,53.258 +242204,326.25,54.757 +242205,323.62,50.133 +242206,324.01,51.736 +242207,324.43,53.301 +242208,324.87,54.827 +242209,322.42,50.119 +242210,322.75,51.751 +242211,323.1,53.343 +242212,323.49,54.896 +242213,321.22,50.106 +242214,321.48,51.766 +242215,321.78,53.385 +242216,322.11,54.963 +242217,320.02,50.094 +242218,320.22,51.782 +242219,320.46,53.426 +242220,320.73,55.029 +242221,318.82,50.084 +242222,318.95,51.798 +242223,319.14,53.467 +242224,319.35,55.094 +242225,317.62,50.075 +242226,317.69,51.815 +242227,317.81,53.508 +242228,317.98,55.157 +242229,316.42,50.068 +242230,316.43,51.832 +242231,316.49,53.548 +242232,316.6,55.219 +242233,315.22,50.061 +242234,315.16,51.849 +242235,315.17,53.588 +242236,315.22,55.28 +242237,314.02,50.057 +242238,313.9,51.867 +242239,313.84,53.627 +242240,313.84,55.339 +242241,312.82,50.054 +242242,312.63,51.886 +242243,312.52,53.666 +242244,312.46,55.397 +242245,311.62,50.052 +242246,311.37,51.904 +242247,311.2,53.704 +242248,311.08,55.453 +242249,310.42,50.052 +242250,310.11,51.924 +242251,309.87,53.741 +242252,309.7,55.508 +242253,309.22,50.053 +242254,308.84,51.944 +242255,308.55,53.779 +242256,308.33,55.562 +242257,308.01,50.056 +242258,307.58,51.964 +242259,307.23,53.815 +242260,306.95,55.614 +242261,306.81,50.061 +242262,306.31,51.985 +242263,305.9,53.852 +242264,305.57,55.664 +242265,305.61,50.066 +242266,305.05,52.007 +242267,304.58,53.887 +242268,304.19,55.713 +242269,304.41,50.074 +242270,303.78,52.029 +242271,303.26,53.923 +242272,302.82,55.761 +242273,303.21,50.083 +242274,302.52,52.051 +242275,301.93,53.957 +242276,301.44,55.807 +242277,302.01,50.094 +242278,301.25,52.074 +242279,300.61,53.992 +242280,300.07,55.851 +242281,300.8,50.106 +242282,299.99,52.098 +242283,299.29,54.025 +242284,298.69,55.895 +242285,299.6,50.12 +242286,298.72,52.122 +242287,297.96,54.059 +242288,297.31,55.936 +242289,298.4,50.135 +242290,297.45,52.146 +242291,296.64,54.091 +242292,295.94,55.976 +242293,297.19,50.152 +242294,296.19,52.171 +242295,295.32,54.124 +242296,294.57,56.015 +242297,295.99,50.171 +242298,294.92,52.197 +242299,294,54.155 +242300,293.19,56.052 +242301,294.78,50.192 +242302,293.65,52.223 +242303,292.68,54.186 +242304,291.82,56.088 +242305,293.57,50.214 +242306,292.39,52.25 +242307,291.35,54.217 +242308,290.45,56.122 +242309,292.36,50.237 +242310,291.12,52.277 +242311,290.03,54.247 +242312,289.08,56.154 +242313,291.15,50.262 +242314,289.85,52.305 +242315,288.71,54.277 +242316,287.7,56.185 +242317,289.94,50.289 +242318,288.58,52.333 +242319,287.39,54.306 +242320,286.33,56.215 +242321,288.73,50.318 +242322,287.31,52.362 +242323,286.07,54.335 +242324,284.96,56.243 +242325,287.52,50.348 +242326,286.04,52.391 +242327,284.75,54.363 +242328,283.6,56.27 +242329,286.31,50.38 +242330,284.77,52.421 +242331,283.43,54.39 +242332,282.23,56.295 +242333,285.09,50.413 +242334,283.5,52.451 +242335,282.11,54.417 +242336,280.86,56.318 +242337,283.88,50.448 +242338,282.23,52.482 +242339,280.79,54.444 +242340,279.5,56.34 +242341,282.66,50.485 +242342,280.96,52.514 +242343,279.47,54.47 +242344,278.13,56.361 +242345,281.44,50.523 +242346,279.69,52.546 +242347,278.15,54.496 +242348,276.77,56.38 +242349,280.22,50.563 +242350,278.42,52.578 +242351,276.83,54.521 +242352,275.4,56.398 +242353,279,50.604 +242354,277.15,52.611 +242355,275.51,54.545 +242356,274.04,56.414 +242357,277.77,50.647 +242358,275.87,52.644 +242359,274.19,54.569 +242360,272.68,56.429 +242361,276.55,50.692 +242362,274.6,52.678 +242363,272.87,54.593 +242364,271.32,56.442 +242365,275.32,50.738 +242366,273.33,52.713 +242367,271.55,54.616 +242368,269.96,56.454 +242369,274.09,50.785 +242370,272.05,52.748 +242371,270.24,54.638 +242372,268.6,56.464 +242373,272.86,50.835 +242374,270.78,52.783 +242375,268.92,54.66 +242376,267.25,56.473 +242377,271.63,50.885 +242378,269.5,52.819 +242379,267.6,54.682 +242380,265.89,56.481 +242381,270.4,50.938 +242382,268.22,52.856 +242383,266.29,54.703 +242384,264.54,56.487 +242385,269.16,50.991 +242386,266.95,52.893 +242387,264.97,54.724 +242388,263.18,56.492 +242389,267.93,51.047 +242390,265.67,52.93 +242391,263.65,54.744 +242392,261.83,56.496 +242393,266.69,51.103 +242394,264.39,52.968 +242395,262.34,54.764 +242396,260.48,56.498 +242397,265.45,51.161 +242398,263.11,53.006 +242399,261.02,54.783 +242400,259.13,56.498 +242401,264.2,51.221 +242402,261.83,53.045 +242403,259.71,54.802 +242404,257.79,56.498 +242405,262.96,51.282 +242406,260.55,53.085 +242407,258.4,54.82 +242408,256.44,56.496 +242409,261.71,51.344 +242410,259.27,53.124 +242411,257.08,54.838 +242412,255.09,56.493 +242413,260.46,51.408 +242414,257.99,53.164 +242415,255.77,54.856 +242416,253.75,56.489 +242417,259.21,51.473 +242418,256.71,53.205 +242419,254.46,54.873 +242420,252.41,56.483 +242421,257.96,51.539 +242422,255.43,53.246 +242423,253.15,54.889 +242424,251.07,56.476 +242425,256.7,51.607 +242426,254.14,53.287 +242427,251.84,54.905 +242428,249.73,56.468 +242429,255.45,51.676 +242430,252.86,53.329 +242431,250.52,54.921 +242432,248.39,56.459 +242433,254.19,51.746 +242434,251.58,53.372 +242435,249.21,54.937 +242436,247.05,56.448 +242437,252.92,51.817 +242438,250.29,53.414 +242439,247.9,54.952 +242440,245.72,56.437 +242441,251.66,51.89 +242442,249,53.457 +242443,246.6,54.966 +242444,244.39,56.424 +242445,250.39,51.964 +242446,247.72,53.501 +242447,245.29,54.981 +242448,243.05,56.41 +242449,249.13,52.039 +242450,246.43,53.544 +242451,243.98,54.995 +242452,241.73,56.395 +242453,247.86,52.115 +242454,245.14,53.589 +242455,242.67,55.008 +242456,240.4,56.379 +242457,246.58,52.192 +242458,243.85,53.633 +242459,241.36,55.021 +242460,239.07,56.362 +242461,245.31,52.27 +242462,242.56,53.678 +242463,240.06,55.034 +242464,237.74,56.344 +242465,244.03,52.349 +242466,241.27,53.723 +242467,238.75,55.047 +242468,236.42,56.325 +242469,242.75,52.429 +242470,239.98,53.769 +242471,237.45,55.059 +242472,235.1,56.305 +242473,241.47,52.51 +242474,238.69,53.814 +242475,236.14,55.071 +242476,233.78,56.284 +242477,240.19,52.592 +242478,237.4,53.86 +242479,234.84,55.082 +242480,232.46,56.262 +242481,238.9,52.675 +242482,236.11,53.907 +242483,233.53,55.093 +242484,231.15,56.239 +242485,237.61,52.759 +242486,234.81,53.954 +242487,232.23,55.104 +242488,229.83,56.216 +242489,236.32,52.843 +242490,233.52,54.001 +242491,230.93,55.115 +242492,228.52,56.191 +242493,235.03,52.929 +242494,232.22,54.048 +242495,229.63,55.125 +242496,227.21,56.166 +242497,233.74,53.015 +242498,230.93,54.095 +242499,228.32,55.135 +242500,225.9,56.14 +242501,232.44,53.102 +242502,229.63,54.143 +242503,227.02,55.145 +242504,224.59,56.113 +242505,231.14,53.189 +242506,228.33,54.191 +242507,225.72,55.155 +242508,223.28,56.085 +242509,229.84,53.278 +242510,227.03,54.239 +242511,224.42,55.164 +242512,221.98,56.057 +242513,228.53,53.367 +242514,225.73,54.288 +242515,223.12,55.173 +242516,220.68,56.028 +242517,227.23,53.456 +242518,224.43,54.336 +242519,221.83,55.182 +242520,219.38,55.999 +242521,225.92,53.546 +242522,223.13,54.385 +242523,220.53,55.191 +242524,218.08,55.968 +242525,224.61,53.637 +242526,221.83,54.434 +242527,219.23,55.2 +242528,216.78,55.938 +242529,223.3,53.728 +242530,220.53,54.483 +242531,217.93,55.208 +242532,215.48,55.906 +242533,221.98,53.819 +242534,219.23,54.532 +242535,216.64,55.216 +242536,214.19,55.875 +242537,220.67,53.911 +242538,217.92,54.582 +242539,215.34,55.224 +242540,212.9,55.842 +242541,219.35,54.004 +242542,216.62,54.631 +242543,214.05,55.232 +242544,211.61,55.809 +242545,218.03,54.096 +242546,215.31,54.681 +242547,212.75,55.24 +242548,210.32,55.776 +242549,216.7,54.189 +242550,214.01,54.731 +242551,211.46,55.247 +242552,209.04,55.743 +242553,215.38,54.283 +242554,212.7,54.781 +242555,210.17,55.255 +242556,207.75,55.709 +242557,214.05,54.376 +242558,211.4,54.831 +242559,208.87,55.262 +242560,206.47,55.674 +242561,212.72,54.47 +242562,210.09,54.881 +242563,207.58,55.27 +242564,205.19,55.64 +242565,211.39,54.564 +242566,208.78,54.931 +242567,206.29,55.277 +242568,203.91,55.605 +242569,210.06,54.658 +242570,207.47,54.981 +242571,205,55.284 +242572,202.64,55.57 +242573,208.73,54.752 +242574,206.16,55.031 +242575,203.71,55.291 +242576,201.36,55.534 +242577,207.39,54.846 +242578,204.85,55.081 +242579,202.42,55.298 +242580,200.09,55.499 +242581,206.05,54.94 +242582,203.54,55.132 +242583,201.13,55.305 +242584,198.82,55.463 +242585,204.71,55.035 +242586,202.23,55.182 +242587,199.84,55.312 +242588,197.55,55.428 +242589,203.37,55.129 +242590,200.91,55.232 +242591,198.55,55.319 +242592,196.28,55.392 +242593,202.03,55.223 +242594,199.6,55.282 +242595,197.27,55.326 +242596,195.01,55.356 +242597,200.68,55.317 +242598,198.29,55.333 +242599,195.98,55.333 +242600,193.75,55.32 +242601,199.33,55.411 +242602,196.97,55.383 +242603,194.69,55.34 +242604,192.49,55.284 +242605,197.98,55.504 +242606,195.66,55.433 +242607,193.41,55.347 +242608,191.23,55.249 +242609,196.63,55.598 +242610,194.34,55.483 +242611,192.12,55.354 +242612,189.97,55.213 +242613,195.28,55.691 +242614,193.03,55.533 +242615,190.84,55.361 +242616,188.71,55.178 +242617,193.93,55.784 +242618,191.71,55.583 +242619,189.55,55.368 +242620,187.45,55.142 +242621,192.57,55.876 +242622,190.39,55.632 +242623,188.27,55.375 +242624,186.2,55.107 +242625,191.22,55.968 +242626,189.07,55.682 +242627,186.99,55.383 +242628,184.95,55.072 +242629,189.86,56.06 +242630,187.75,55.732 +242631,185.7,55.39 +242632,183.7,55.038 +242633,188.5,56.152 +242634,186.44,55.781 +242635,184.42,55.398 +242636,182.45,55.003 +242637,187.14,56.242 +242638,185.12,55.83 +242639,183.14,55.405 +242640,181.2,54.969 +242641,185.77,56.333 +242642,183.8,55.879 +242643,181.86,55.413 +242644,179.96,54.936 +242645,184.41,56.423 +242646,182.48,55.928 +242647,180.58,55.421 +242648,178.71,54.902 +242649,183.05,56.512 +242650,181.15,55.977 +242651,179.3,55.429 +242652,177.47,54.87 +242653,181.68,56.601 +242654,179.83,56.026 +242655,178.02,55.437 +242656,176.23,54.837 +242657,180.31,56.689 +242658,178.51,56.074 +242659,176.74,55.445 +242660,174.99,54.805 +242661,178.94,56.777 +242662,177.19,56.122 +242663,175.46,55.454 +242664,173.75,54.774 +242665,177.57,56.864 +242666,175.86,56.17 +242667,174.18,55.463 +242668,172.51,54.743 +242669,176.2,56.95 +242670,174.54,56.218 +242671,172.9,55.472 +242672,171.28,54.713 +242673,174.83,57.036 +242674,173.22,56.265 +242675,171.62,55.481 +242676,170.05,54.684 +242677,173.46,57.12 +242678,171.89,56.313 +242679,170.34,55.49 +242680,168.81,54.655 +242681,172.08,57.204 +242682,170.57,56.36 +242683,169.07,55.5 +242684,167.58,54.627 +242685,170.71,57.287 +242686,169.24,56.406 +242687,167.79,55.51 +242688,166.35,54.599 +242689,169.33,57.37 +242690,167.92,56.453 +242691,166.51,55.52 +242692,165.12,54.572 +242693,167.96,57.451 +242694,166.59,56.499 +242695,165.24,55.53 +242696,163.9,54.546 +242697,166.58,57.532 +242698,165.26,56.545 +242699,163.96,55.541 +242700,162.67,54.521 +242701,165.2,57.611 +242702,163.94,56.59 +242703,162.69,55.552 +242704,161.44,54.497 +242705,163.82,57.69 +242706,162.61,56.636 +242707,161.41,55.563 +242708,160.22,54.473 +242709,162.44,57.768 +242710,161.28,56.68 +242711,160.14,55.574 +242712,159,54.451 +242713,161.06,57.845 +242714,159.95,56.725 +242715,158.86,55.586 +242716,157.78,54.429 +242717,159.68,57.92 +242718,158.63,56.769 +242719,157.59,55.598 +242720,156.56,54.408 +242721,158.3,57.995 +242722,157.3,56.813 +242723,156.31,55.611 +242724,155.34,54.388 +242725,156.91,58.069 +242726,155.97,56.857 +242727,155.04,55.623 +242728,154.12,54.37 +242729,155.53,58.141 +242730,154.64,56.9 +242731,153.76,55.637 +242732,152.9,54.352 +242733,154.15,58.213 +242734,153.31,56.943 +242735,152.49,55.65 +242736,151.68,54.335 +242737,152.76,58.283 +242738,151.98,56.985 +242739,151.22,55.664 +242740,150.46,54.319 +242741,151.38,58.353 +242742,150.65,57.027 +242743,149.94,55.678 +242744,149.25,54.305 +242745,149.99,58.421 +242746,149.32,57.069 +242747,148.67,55.692 +242748,148.03,54.291 +242749,148.61,58.488 +242750,147.99,57.11 +242751,147.4,55.707 +242752,146.82,54.279 +242753,147.22,58.553 +242754,146.66,57.151 +242755,146.12,55.723 +242756,145.6,54.268 +242757,145.84,58.618 +242758,145.33,57.192 +242759,144.85,55.738 +242760,144.39,54.258 +242761,144.45,58.681 +242762,144,57.232 +242763,143.58,55.754 +242764,143.18,54.249 +242765,143.07,58.743 +242766,142.67,57.272 +242767,142.3,55.771 +242768,141.96,54.241 +242769,141.68,58.804 +242770,141.34,57.311 +242771,141.03,55.788 +242772,140.75,54.235 +242773,140.29,58.864 +242774,140.01,57.35 +242775,139.76,55.805 +242776,139.54,54.23 +242777,138.91,58.922 +242778,138.68,57.388 +242779,138.49,55.823 +242780,138.33,54.226 +242781,137.52,58.979 +242782,137.35,57.426 +242783,137.21,55.841 +242784,137.12,54.223 +242785,136.13,59.035 +242786,136.02,57.463 +242787,135.94,55.859 +242788,135.91,54.222 +242789,134.75,59.089 +242790,134.69,57.5 +242791,134.67,55.878 +242792,134.7,54.222 +242793,133.36,59.142 +242794,133.35,57.537 +242795,133.39,55.898 +242796,133.48,54.223 +242797,131.97,59.194 +242798,132.02,57.573 +242799,132.12,55.917 +242800,132.27,54.226 +242801,130.59,59.244 +242802,130.69,57.609 +242803,130.85,55.938 +242804,131.06,54.23 +242805,129.2,59.294 +242806,129.36,57.644 +242807,129.58,55.958 +242808,129.85,54.236 +242809,127.82,59.341 +242810,128.03,57.679 +242811,128.3,55.98 +242812,128.64,54.243 +242813,126.43,59.387 +242814,126.7,57.713 +242815,127.03,56.001 +242816,127.43,54.251 +242817,125.05,59.432 +242818,125.37,57.747 +242819,125.76,56.023 +242820,126.22,54.26 +242821,123.66,59.476 +242822,124.04,57.78 +242823,124.48,56.046 +242824,125.01,54.272 +242825,122.28,59.518 +242826,122.71,57.813 +242827,123.21,56.069 +242828,123.79,54.284 +242829,120.89,59.559 +242830,121.38,57.845 +242831,121.93,56.092 +242832,122.58,54.298 +242833,119.51,59.598 +242834,120.05,57.877 +242835,120.66,56.116 +242836,121.37,54.313 +242837,118.13,59.636 +242838,118.71,57.909 +242839,119.39,56.141 +242840,120.15,54.33 +242841,116.74,59.673 +242842,117.38,57.94 +242843,118.11,56.165 +242844,118.94,54.348 +242845,115.36,59.708 +242846,116.05,57.97 +242847,116.84,56.191 +242848,117.73,54.368 +242849,113.98,59.742 +242850,114.72,58 +242851,115.56,56.217 +242852,116.51,54.389 +242853,112.6,59.774 +242854,113.39,58.029 +242855,114.29,56.243 +242856,115.29,54.412 +242857,111.22,59.805 +242858,112.06,58.058 +242859,113.01,56.27 +242860,114.08,54.436 +242861,109.84,59.834 +242862,110.73,58.087 +242863,111.74,56.297 +242864,112.86,54.462 +242865,108.46,59.862 +242866,109.41,58.115 +242867,110.46,56.325 +242868,111.64,54.489 +242869,107.08,59.889 +242870,108.08,58.143 +242871,109.18,56.353 +242872,110.42,54.517 +242873,105.7,59.914 +242874,106.75,58.17 +242875,107.91,56.381 +242876,109.2,54.547 +242877,104.33,59.938 +242878,105.42,58.196 +242879,106.63,56.41 +242880,107.98,54.579 +242881,102.95,59.961 +242882,104.09,58.222 +242883,105.35,56.44 +242884,106.76,54.611 +242885,101.58,59.982 +242886,102.76,58.248 +242887,104.07,56.47 +242888,105.53,54.646 +242889,100.2,60.002 +242890,101.43,58.273 +242891,102.8,56.501 +242892,104.31,54.682 +242893,98.829,60.02 +242894,100.11,58.298 +242895,101.52,56.532 +242896,103.08,54.719 +242897,97.457,60.037 +242898,98.78,58.322 +242899,100.24,56.563 +242900,101.86,54.757 +242901,96.086,60.052 +242902,97.453,58.345 +242903,98.958,56.595 +242904,100.63,54.797 +242905,94.716,60.067 +242906,96.126,58.369 +242907,97.678,56.627 +242908,99.399,54.839 +242909,93.347,60.08 +242910,94.8,58.391 +242911,96.398,56.66 +242912,98.168,54.882 +242913,91.979,60.091 +242914,93.474,58.414 +242915,95.117,56.693 +242916,96.935,54.926 +242917,90.612,60.101 +242918,92.149,58.436 +242919,93.835,56.727 +242920,95.701,54.972 +242921,89.246,60.11 +242922,90.823,58.457 +242923,92.553,56.761 +242924,94.465,55.019 +242925,87.881,60.118 +242926,89.499,58.478 +242927,91.271,56.796 +242928,93.228,55.067 +242929,86.518,60.124 +242930,88.174,58.498 +242931,89.988,56.83 +242932,91.99,55.117 +242933,85.155,60.129 +242934,86.85,58.518 +242935,88.705,56.866 +242936,90.749,55.168 +242937,83.794,60.133 +242938,85.527,58.538 +242939,87.421,56.902 +242940,89.507,55.221 +242941,82.435,60.135 +242942,84.204,58.557 +242943,86.136,56.938 +242944,88.264,55.274 +242945,81.076,60.136 +242946,82.881,58.576 +242947,84.851,56.975 +242948,87.018,55.329 +242949,79.719,60.136 +242950,81.559,58.594 +242951,83.565,57.012 +242952,85.771,55.386 +242953,78.363,60.135 +242954,80.237,58.612 +242955,82.279,57.049 +242956,84.522,55.443 +242957,77.008,60.133 +242958,78.916,58.63 +242959,80.992,57.087 +242960,83.271,55.502 +242961,75.655,60.129 +242962,77.595,58.647 +242963,79.705,57.125 +242964,82.019,55.562 +242965,74.304,60.124 +242966,76.274,58.663 +242967,78.416,57.164 +242968,80.764,55.623 +242969,72.953,60.119 +242970,74.955,58.68 +242971,77.128,57.203 +242972,79.508,55.685 +242973,71.605,60.112 +242974,73.635,58.696 +242975,75.838,57.242 +242976,78.249,55.749 +242977,70.257,60.103 +242978,72.316,58.711 +242979,74.549,57.282 +242980,76.989,55.814 +242981,68.911,60.094 +242982,70.998,58.726 +242983,73.258,57.322 +242984,75.727,55.879 +242985,67.567,60.084 +242986,69.68,58.741 +242987,71.967,57.363 +242988,74.463,55.946 +242989,66.224,60.072 +242990,68.363,58.755 +242991,70.675,57.404 +242992,73.196,56.014 +242993,64.883,60.06 +242994,67.046,58.769 +242995,69.382,57.445 +242996,71.928,56.083 +242997,63.543,60.047 +242998,65.729,58.783 +242999,68.089,57.486 +243000,70.658,56.153 +243001,62.205,60.032 +243002,64.414,58.796 +243003,66.795,57.528 +243004,69.385,56.224 +243005,60.869,60.017 +243006,63.098,58.809 +243007,65.501,57.57 +243008,68.111,56.296 +243009,59.534,60.001 +243010,61.784,58.822 +243011,64.206,57.613 +243012,66.834,56.369 +243013,58.201,59.983 +243014,60.47,58.834 +243015,62.91,57.655 +243016,65.555,56.443 +243017,56.869,59.965 +243018,59.156,58.846 +243019,61.613,57.698 +243020,64.274,56.518 +243021,55.539,59.946 +243022,57.843,58.858 +243023,60.316,57.742 +243024,62.991,56.593 +243025,54.211,59.926 +243026,56.531,58.87 +243027,59.018,57.785 +243028,61.706,56.67 +243029,52.884,59.906 +243030,55.219,58.881 +243031,57.719,57.829 +243032,60.419,56.747 +243033,51.56,59.884 +243034,53.907,58.892 +243035,56.42,57.873 +243036,59.13,56.825 +243037,50.237,59.862 +243038,52.597,58.902 +243039,55.12,57.917 +243040,57.838,56.903 +243041,48.915,59.839 +243042,51.287,58.913 +243043,53.819,57.962 +243044,56.544,56.983 +243045,47.596,59.815 +243046,49.977,58.923 +243047,52.518,58.006 +243048,55.249,57.063 +243049,46.278,59.791 +243050,48.668,58.933 +243051,51.216,58.051 +243052,53.951,57.144 +243053,44.962,59.766 +243054,47.36,58.943 +243055,49.913,58.096 +243056,52.651,57.225 +243057,43.647,59.74 +243058,46.052,58.952 +243059,48.609,58.142 +243060,51.348,57.307 +243061,42.335,59.714 +243062,44.745,58.961 +243063,47.305,58.187 +243064,50.044,57.39 +243065,41.024,59.687 +243066,43.438,58.97 +243067,46,58.233 +243068,48.737,57.473 +243069,39.715,59.66 +243070,42.132,58.979 +243071,44.695,58.279 +243072,47.429,57.556 +243073,38.408,59.632 +243074,40.827,58.988 +243075,43.388,58.325 +243076,46.118,57.64 +243077,37.102,59.603 +243078,39.522,58.996 +243079,42.081,58.371 +243080,44.805,57.725 +243081,35.799,59.574 +243082,38.218,59.005 +243083,40.773,58.417 +243084,43.49,57.81 +243085,34.497,59.545 +243086,36.914,59.013 +243087,39.465,58.464 +243088,42.173,57.895 +243089,33.197,59.515 +243090,35.611,59.021 +243091,38.156,58.51 +243092,40.854,57.981 +243093,31.899,59.485 +243094,34.309,59.029 +243095,36.846,58.557 +243096,39.533,58.067 +243097,30.603,59.454 +243098,33.007,59.036 +243099,35.535,58.603 +243100,38.21,58.153 +243101,29.308,59.424 +243102,31.706,59.044 +243103,34.224,58.65 +243104,36.884,58.239 +243105,28.016,59.392 +243106,30.405,59.052 +243107,32.912,58.697 +243108,35.557,58.326 +243109,26.725,59.361 +243110,29.105,59.059 +243111,31.6,58.744 +243112,34.228,58.413 +243113,25.436,59.329 +243114,27.805,59.067 +243115,30.286,58.791 +243116,32.897,58.5 +243117,24.148,59.298 +243118,26.506,59.074 +243119,28.972,58.838 +243120,31.564,58.587 +243121,22.863,59.266 +243122,25.208,59.081 +243123,27.658,58.885 +243124,30.229,58.674 +243125,21.579,59.234 +243126,23.91,59.088 +243127,26.343,58.932 +243128,28.892,58.761 +243129,20.297,59.201 +243130,22.613,59.096 +243131,25.027,58.979 +243132,27.553,58.848 +243133,19.017,59.169 +243134,21.317,59.103 +243135,23.71,59.026 +243136,26.212,58.935 +243137,17.739,59.137 +243138,20.021,59.11 +243139,22.393,59.073 +243140,24.87,59.023 +243141,16.462,59.105 +243142,18.725,59.117 +243143,21.075,59.12 +243144,23.525,59.11 +243145,15.187,59.072 +243146,17.43,59.124 +243147,19.757,59.166 +243148,22.179,59.197 +243149,13.914,59.04 +243150,16.136,59.131 +243151,18.438,59.213 +243152,20.831,59.283 +243153,12.643,59.008 +243154,14.842,59.139 +243155,17.118,59.26 +243156,19.482,59.37 +243157,11.373,58.976 +243158,13.549,59.146 +243159,15.798,59.307 +243160,18.131,59.456 +243161,10.105,58.944 +243162,12.256,59.153 +243163,14.477,59.353 +243164,16.778,59.543 +243165,8.8389,58.912 +243166,10.964,59.16 +243167,13.155,59.4 +243168,15.423,59.628 +243169,7.5743,58.881 +243170,9.6719,59.168 +243171,11.833,59.446 +243172,14.067,59.714 +243173,6.3114,58.849 +243174,8.3807,59.175 +243175,10.51,59.493 +243176,12.709,59.799 +243177,5.0501,58.818 +243178,7.09,59.183 +243179,9.1873,59.539 +243180,11.35,59.884 +243181,3.7904,58.788 +243182,5.7998,59.191 +243183,7.8636,59.585 +243184,9.9892,59.969 +243185,2.5323,58.757 +243186,4.5101,59.198 +243187,6.5393,59.631 +243188,8.627,60.053 +243189,1.2758,58.727 +243190,3.2208,59.206 +243191,5.2145,59.677 +243192,7.2633,60.136 +243193,0.020876,58.698 +243194,1.9321,59.214 +243195,3.8891,59.722 +243196,5.8982,60.219 +243197,358.77,58.668 +243198,0.64377,59.222 +243199,2.5633,59.768 +243200,4.5317,60.302 +243201,357.52,58.64 +243202,359.36,59.231 +243203,1.2369,59.813 +243204,3.1639,60.384 +243205,356.27,58.611 +243206,358.07,59.239 +243207,359.91,59.858 +243208,1.7948,60.466 +243209,355.02,58.584 +243210,356.78,59.248 +243211,358.58,59.903 +243212,0.42442,60.546 +243213,353.77,58.557 +243214,355.5,59.257 +243215,357.25,59.947 +243216,359.05,60.627 +243217,352.52,58.53 +243218,354.21,59.266 +243219,355.93,59.992 +243220,357.68,60.706 +243221,351.28,58.504 +243222,352.92,59.275 +243223,354.6,60.036 +243224,356.31,60.785 +243225,350.03,58.478 +243226,351.64,59.284 +243227,353.27,60.08 +243228,354.93,60.863 +243229,348.79,58.454 +243230,350.35,59.294 +243231,351.94,60.124 +243232,353.55,60.941 +243233,347.55,58.43 +243234,349.07,59.304 +243235,350.61,60.167 +243236,352.18,61.018 +243237,346.31,58.406 +243238,347.78,59.314 +243239,349.28,60.21 +243240,350.8,61.094 +243241,345.07,58.384 +243242,346.5,59.324 +243243,347.95,60.253 +243244,349.42,61.169 +243245,343.84,58.362 +243246,345.22,59.335 +243247,346.62,60.296 +243248,348.04,61.243 +243249,342.6,58.341 +243250,343.93,59.345 +243251,345.29,60.338 +243252,346.66,61.316 +243253,341.37,58.32 +243254,342.65,59.357 +243255,343.95,60.38 +243256,345.28,61.389 +243257,340.13,58.301 +243258,341.37,59.368 +243259,342.62,60.422 +243260,343.89,61.461 +243261,338.9,58.282 +243262,340.09,59.38 +243263,341.29,60.463 +243264,342.51,61.531 +243265,337.67,58.265 +243266,338.8,59.391 +243267,339.96,60.504 +243268,341.13,61.601 +243269,336.44,58.248 +243270,337.52,59.404 +243271,338.62,60.545 +243272,339.74,61.67 +243273,335.21,58.232 +243274,336.24,59.416 +243275,337.29,60.585 +243276,338.36,61.738 +243277,333.98,58.217 +243278,334.96,59.429 +243279,335.96,60.625 +243280,336.97,61.804 +243281,332.75,58.203 +243282,333.68,59.442 +243283,334.62,60.665 +243284,335.58,61.87 +243285,331.53,58.191 +243286,332.4,59.456 +243287,333.29,60.704 +243288,334.2,61.935 +243289,330.3,58.179 +243290,331.12,59.47 +243291,331.95,60.743 +243292,332.81,61.999 +243293,329.07,58.168 +243294,329.84,59.484 +243295,330.62,60.782 +243296,331.42,62.061 +243297,327.85,58.158 +243298,328.56,59.498 +243299,329.28,60.82 +243300,330.03,62.123 +243301,326.62,58.149 +243302,327.28,59.513 +243303,327.95,60.858 +243304,328.64,62.183 +243305,325.4,58.142 +243306,326,59.528 +243307,326.61,60.895 +243308,327.25,62.242 +243309,324.18,58.135 +243310,324.72,59.544 +243311,325.28,60.933 +243312,325.86,62.3 +243313,322.96,58.13 +243314,323.44,59.56 +243315,323.94,60.969 +243316,324.47,62.357 +243317,321.73,58.126 +243318,322.16,59.576 +243319,322.61,61.005 +243320,323.08,62.413 +243321,320.51,58.123 +243322,320.88,59.593 +243323,321.27,61.041 +243324,321.69,62.468 +243325,319.29,58.121 +243326,319.6,59.61 +243327,319.94,61.077 +243328,320.3,62.521 +243329,318.07,58.121 +243330,318.32,59.627 +243331,318.6,61.112 +243332,318.91,62.573 +243333,316.85,58.121 +243334,317.04,59.645 +243335,317.26,61.146 +243336,317.52,62.624 +243337,315.63,58.123 +243338,315.76,59.663 +243339,315.93,61.181 +243340,316.13,62.674 +243341,314.41,58.126 +243342,314.48,59.682 +243343,314.59,61.214 +243344,314.74,62.722 +243345,313.19,58.13 +243346,313.2,59.701 +243347,313.25,61.248 +243348,313.35,62.769 +243349,311.97,58.136 +243350,311.92,59.721 +243351,311.92,61.281 +243352,311.95,62.815 +243353,310.75,58.143 +243354,310.64,59.741 +243355,310.58,61.313 +243356,310.56,62.86 +243357,309.53,58.151 +243358,309.36,59.761 +243359,309.25,61.345 +243360,309.17,62.903 +243361,308.31,58.161 +243362,308.08,59.782 +243363,307.91,61.377 +243364,307.78,62.945 +243365,307.09,58.171 +243366,306.81,59.803 +243367,306.57,61.408 +243368,306.39,62.986 +243369,305.87,58.183 +243370,305.53,59.824 +243371,305.24,61.438 +243372,305,63.026 +243373,304.65,58.197 +243374,304.25,59.846 +243375,303.9,61.469 +243376,303.61,63.064 +243377,303.43,58.212 +243378,302.97,59.869 +243379,302.57,61.498 +243380,302.22,63.101 +243381,302.21,58.228 +243382,301.69,59.892 +243383,301.23,61.528 +243384,300.83,63.136 +243385,300.99,58.245 +243386,300.41,59.915 +243387,299.89,61.557 +243388,299.44,63.17 +243389,299.77,58.264 +243390,299.13,59.939 +243391,298.56,61.585 +243392,298.06,63.203 +243393,298.54,58.284 +243394,297.85,59.963 +243395,297.22,61.613 +243396,296.67,63.235 +243397,297.32,58.305 +243398,296.56,59.987 +243399,295.89,61.64 +243400,295.28,63.265 +243401,296.1,58.328 +243402,295.28,60.012 +243403,294.55,61.667 +243404,293.89,63.294 +243405,294.88,58.352 +243406,294,60.038 +243407,293.22,61.694 +243408,292.51,63.321 +243409,293.65,58.378 +243410,292.72,60.064 +243411,291.88,61.72 +243412,291.12,63.348 +243413,292.43,58.404 +243414,291.44,60.09 +243415,290.55,61.746 +243416,289.74,63.373 +243417,291.2,58.433 +243418,290.16,60.117 +243419,289.21,61.771 +243420,288.35,63.396 +243421,289.97,58.462 +243422,288.88,60.144 +243423,287.88,61.796 +243424,286.97,63.418 +243425,288.75,58.493 +243426,287.59,60.171 +243427,286.54,61.82 +243428,285.59,63.439 +243429,287.52,58.525 +243430,286.31,60.199 +243431,285.21,61.844 +243432,284.21,63.459 +243433,286.29,58.559 +243434,285.03,60.228 +243435,283.88,61.867 +243436,282.82,63.477 +243437,285.06,58.593 +243438,283.74,60.257 +243439,282.54,61.89 +243440,281.44,63.494 +243441,283.83,58.63 +243442,282.46,60.286 +243443,281.21,61.913 +243444,280.06,63.51 +243445,282.6,58.667 +243446,281.18,60.316 +243447,279.88,61.935 +243448,278.69,63.525 +243449,281.36,58.706 +243450,279.89,60.346 +243451,278.54,61.956 +243452,277.31,63.538 +243453,280.13,58.746 +243454,278.61,60.376 +243455,277.21,61.978 +243456,275.93,63.55 +243457,278.89,58.787 +243458,277.32,60.407 +243459,275.88,61.998 +243460,274.55,63.56 +243461,277.66,58.83 +243462,276.04,60.439 +243463,274.55,62.019 +243464,273.18,63.57 +243465,276.42,58.874 +243466,274.75,60.471 +243467,273.22,62.038 +243468,271.81,63.578 +243469,275.18,58.919 +243470,273.46,60.503 +243471,271.89,62.058 +243472,270.43,63.585 +243473,273.94,58.965 +243474,272.18,60.535 +243475,270.56,62.077 +243476,269.06,63.59 +243477,272.7,59.013 +243478,270.89,60.568 +243479,269.23,62.095 +243480,267.69,63.595 +243481,271.45,59.062 +243482,269.6,60.602 +243483,267.9,62.114 +243484,266.32,63.598 +243485,270.21,59.112 +243486,268.31,60.636 +243487,266.57,62.131 +243488,264.95,63.6 +243489,268.96,59.163 +243490,267.02,60.67 +243491,265.24,62.149 +243492,263.59,63.601 +243493,267.71,59.216 +243494,265.73,60.704 +243495,263.91,62.166 +243496,262.22,63.601 +243497,266.46,59.269 +243498,264.44,60.739 +243499,262.58,62.182 +243500,260.86,63.599 +243501,265.21,59.324 +243502,263.15,60.774 +243503,261.25,62.198 +243504,259.49,63.597 +243505,263.96,59.38 +243506,261.86,60.81 +243507,259.93,62.214 +243508,258.13,63.593 +243509,262.7,59.437 +243510,260.57,60.846 +243511,258.6,62.229 +243512,256.77,63.588 +243513,261.45,59.495 +243514,259.28,60.882 +243515,257.27,62.245 +243516,255.41,63.582 +243517,260.19,59.554 +243518,257.99,60.919 +243519,255.95,62.259 +243520,254.06,63.575 +243521,258.93,59.614 +243522,256.69,60.956 +243523,254.62,62.273 +243524,252.7,63.567 +243525,257.67,59.676 +243526,255.4,60.993 +243527,253.3,62.287 +243528,251.34,63.558 +243529,256.41,59.738 +243530,254.1,61.031 +243531,251.97,62.301 +243532,249.99,63.548 +243533,255.14,59.801 +243534,252.81,61.069 +243535,250.65,62.314 +243536,248.64,63.537 +243537,253.87,59.865 +243538,251.51,61.107 +243539,249.33,62.327 +243540,247.29,63.525 +243541,252.6,59.93 +243542,250.22,61.146 +243543,248,62.34 +243544,245.94,63.512 +243545,251.33,59.996 +243546,248.92,61.185 +243547,246.68,62.352 +243548,244.59,63.498 +243549,250.06,60.063 +243550,247.62,61.224 +243551,245.36,62.364 +243552,243.25,63.484 +243553,248.79,60.131 +243554,246.32,61.263 +243555,244.04,62.375 +243556,241.9,63.468 +243557,247.51,60.2 +243558,245.03,61.303 +243559,242.72,62.387 +243560,240.56,63.451 +243561,246.23,60.269 +243562,243.73,61.343 +243563,241.4,62.398 +243564,239.22,63.434 +243565,244.95,60.34 +243566,242.43,61.383 +243567,240.08,62.408 +243568,237.88,63.416 +243569,243.67,60.411 +243570,241.13,61.424 +243571,238.76,62.419 +243572,236.54,63.397 +243573,242.38,60.482 +243574,239.82,61.465 +243575,237.44,62.429 +243576,235.2,63.377 +243577,241.1,60.555 +243578,238.52,61.506 +243579,236.12,62.439 +243580,233.87,63.356 +243581,239.81,60.628 +243582,237.22,61.547 +243583,234.81,62.449 +243584,232.54,63.335 +243585,238.52,60.702 +243586,235.92,61.588 +243587,233.49,62.458 +243588,231.2,63.313 +243589,237.22,60.777 +243590,234.61,61.63 +243591,232.17,62.467 +243592,229.87,63.29 +243593,235.93,60.852 +243594,233.31,61.671 +243595,230.86,62.476 +243596,228.55,63.267 +243597,234.63,60.928 +243598,232,61.713 +243599,229.54,62.485 +243600,227.22,63.243 +243601,233.33,61.004 +243602,230.7,61.756 +243603,228.23,62.493 +243604,225.9,63.218 +243605,232.03,61.081 +243606,229.39,61.798 +243607,226.91,62.502 +243608,224.57,63.193 +243609,230.73,61.158 +243610,228.08,61.84 +243611,225.6,62.51 +243612,223.25,63.167 +243613,229.42,61.236 +243614,226.78,61.883 +243615,224.29,62.518 +243616,221.93,63.141 +243617,228.12,61.314 +243618,225.47,61.926 +243619,222.97,62.526 +243620,220.62,63.114 +243621,226.81,61.393 +243622,224.16,61.969 +243623,221.66,62.533 +243624,219.3,63.087 +243625,225.5,61.472 +243626,222.85,62.012 +243627,220.35,62.541 +243628,217.99,63.059 +243629,224.18,61.551 +243630,221.54,62.055 +243631,219.04,62.548 +243632,216.67,63.031 +243633,222.87,61.631 +243634,220.23,62.098 +243635,217.73,62.555 +243636,215.36,63.003 +243637,221.55,61.711 +243638,218.91,62.141 +243639,216.42,62.562 +243640,214.06,62.974 +243641,220.23,61.791 +243642,217.6,62.185 +243643,215.11,62.569 +243644,212.75,62.945 +243645,218.91,61.871 +243646,216.29,62.228 +243647,213.81,62.576 +243648,211.44,62.916 +243649,217.59,61.952 +243650,214.97,62.272 +243651,212.5,62.583 +243652,210.14,62.886 +243653,216.26,62.033 +243654,213.66,62.315 +243655,211.19,62.589 +243656,208.84,62.856 +243657,214.93,62.114 +243658,212.34,62.359 +243659,209.89,62.596 +243660,207.54,62.826 +243661,213.6,62.195 +243662,211.03,62.403 +243663,208.58,62.603 +243664,206.24,62.795 +243665,212.27,62.276 +243666,209.71,62.446 +243667,207.27,62.609 +243668,204.94,62.765 +243669,210.94,62.357 +243670,208.39,62.49 +243671,205.97,62.615 +243672,203.65,62.734 +243673,209.6,62.438 +243674,207.08,62.534 +243675,204.67,62.622 +243676,202.36,62.704 +243677,208.27,62.519 +243678,205.76,62.578 +243679,203.36,62.628 +243680,201.07,62.673 +243681,206.93,62.601 +243682,204.44,62.621 +243683,202.06,62.634 +243684,199.78,62.642 +243685,205.59,62.682 +243686,203.12,62.665 +243687,200.76,62.641 +243688,198.49,62.611 +243689,204.25,62.763 +243690,201.8,62.708 +243691,199.46,62.647 +243692,197.2,62.581 +243693,202.9,62.844 +243694,200.48,62.752 +243695,198.16,62.654 +243696,195.92,62.55 +243697,201.56,62.924 +243698,199.16,62.795 +243699,196.86,62.66 +243700,194.64,62.519 +243701,200.21,63.005 +243702,197.83,62.839 +243703,195.56,62.666 +243704,193.36,62.489 +243705,198.86,63.085 +243706,196.51,62.882 +243707,194.26,62.673 +243708,192.08,62.458 +243709,197.51,63.165 +243710,195.19,62.925 +243711,192.96,62.679 +243712,190.8,62.428 +243713,196.15,63.245 +243714,193.86,62.969 +243715,191.66,62.686 +243716,189.53,62.398 +243717,194.8,63.324 +243718,192.54,63.012 +243719,190.36,62.692 +243720,188.25,62.368 +243721,193.44,63.403 +243722,191.21,63.055 +243723,189.06,62.699 +243724,186.98,62.339 +243725,192.09,63.482 +243726,189.89,63.097 +243727,187.77,62.706 +243728,185.71,62.31 +243729,190.73,63.56 +243730,188.56,63.14 +243731,186.47,62.713 +243732,184.44,62.281 +243733,189.37,63.638 +243734,187.24,63.183 +243735,185.17,62.72 +243736,183.17,62.252 +243737,188,63.716 +243738,185.91,63.225 +243739,183.88,62.727 +243740,181.91,62.224 +243741,186.64,63.793 +243742,184.58,63.267 +243743,182.58,62.734 +243744,180.64,62.196 +243745,185.27,63.869 +243746,183.25,63.309 +243747,181.29,62.742 +243748,179.38,62.169 +243749,183.91,63.945 +243750,181.92,63.351 +243751,180,62.749 +243752,178.12,62.142 +243753,182.54,64.021 +243754,180.59,63.393 +243755,178.7,62.757 +243756,176.86,62.116 +243757,181.17,64.095 +243758,179.26,63.434 +243759,177.41,62.765 +243760,175.6,62.09 +243761,179.8,64.17 +243762,177.93,63.475 +243763,176.12,62.773 +243764,174.35,62.065 +243765,178.43,64.243 +243766,176.6,63.516 +243767,174.83,62.781 +243768,173.09,62.04 +243769,177.05,64.316 +243770,175.27,63.557 +243771,173.53,62.79 +243772,171.84,62.016 +243773,175.68,64.388 +243774,173.94,63.598 +243775,172.24,62.799 +243776,170.58,61.992 +243777,174.3,64.46 +243778,172.61,63.638 +243779,170.95,62.807 +243780,169.33,61.969 +243781,172.93,64.53 +243782,171.28,63.678 +243783,169.66,62.816 +243784,168.08,61.947 +243785,171.55,64.6 +243786,169.94,63.718 +243787,168.37,62.826 +243788,166.83,61.926 +243789,170.17,64.67 +243790,168.61,63.757 +243791,167.08,62.835 +243792,165.59,61.905 +243793,168.79,64.738 +243794,167.28,63.797 +243795,165.79,62.845 +243796,164.34,61.885 +243797,167.41,64.806 +243798,165.94,63.836 +243799,164.5,62.855 +243800,163.1,61.866 +243801,166.03,64.872 +243802,164.61,63.874 +243803,163.22,62.866 +243804,161.85,61.847 +243805,164.64,64.938 +243806,163.27,63.913 +243807,161.93,62.876 +243808,160.61,61.83 +243809,163.26,65.003 +243810,161.94,63.951 +243811,160.64,62.887 +243812,159.37,61.813 +243813,161.88,65.067 +243814,160.6,63.989 +243815,159.35,62.898 +243816,158.13,61.797 +243817,160.49,65.13 +243818,159.27,64.026 +243819,158.07,62.909 +243820,156.89,61.782 +243821,159.1,65.193 +243822,157.93,64.063 +243823,156.78,62.921 +243824,155.65,61.768 +243825,157.72,65.254 +243826,156.59,64.1 +243827,155.49,62.933 +243828,154.41,61.755 +243829,156.33,65.314 +243830,155.26,64.136 +243831,154.21,62.946 +243832,153.18,61.743 +243833,154.94,65.373 +243834,153.92,64.173 +243835,152.92,62.958 +243836,151.94,61.732 +243837,153.55,65.432 +243838,152.58,64.208 +243839,151.63,62.971 +243840,150.71,61.721 +243841,152.16,65.489 +243842,151.24,64.244 +243843,150.35,62.984 +243844,149.47,61.712 +243845,150.77,65.545 +243846,149.91,64.279 +243847,149.06,62.998 +243848,148.24,61.704 +243849,149.38,65.6 +243850,148.57,64.314 +243851,147.78,63.012 +243852,147.01,61.697 +243853,147.99,65.654 +243854,147.23,64.348 +243855,146.49,63.026 +243856,145.77,61.691 +243857,146.6,65.707 +243858,145.89,64.382 +243859,145.21,63.041 +243860,144.54,61.686 +243861,145.21,65.758 +243862,144.55,64.415 +243863,143.92,63.056 +243864,143.31,61.682 +243865,143.82,65.809 +243866,143.22,64.448 +243867,142.64,63.071 +243868,142.08,61.679 +243869,142.43,65.859 +243870,141.88,64.481 +243871,141.35,63.087 +243872,140.85,61.678 +243873,141.03,65.907 +243874,140.54,64.514 +243875,140.07,63.103 +243876,139.62,61.677 +243877,139.64,65.954 +243878,139.2,64.546 +243879,138.78,63.12 +243880,138.4,61.678 +243881,138.25,66 +243882,137.86,64.577 +243883,137.5,63.137 +243884,137.17,61.68 +243885,136.85,66.045 +243886,136.52,64.608 +243887,136.21,63.154 +243888,135.94,61.683 +243889,135.46,66.089 +243890,135.18,64.639 +243891,134.93,63.171 +243892,134.71,61.687 +243893,134.07,66.131 +243894,133.84,64.669 +243895,133.65,63.189 +243896,133.48,61.692 +243897,132.67,66.172 +243898,132.5,64.699 +243899,132.36,63.208 +243900,132.26,61.699 +243901,131.28,66.212 +243902,131.16,64.729 +243903,131.08,63.227 +243904,131.03,61.706 +243905,129.89,66.251 +243906,129.82,64.758 +243907,129.79,63.246 +243908,129.8,61.716 +243909,128.5,66.289 +243910,128.48,64.787 +243911,128.51,63.265 +243912,128.58,61.726 +243913,127.1,66.325 +243914,127.14,64.815 +243915,127.23,63.285 +243916,127.35,61.737 +243917,125.71,66.36 +243918,125.81,64.843 +243919,125.94,63.306 +243920,126.12,61.75 +243921,124.32,66.394 +243922,124.47,64.87 +243923,124.66,63.327 +243924,124.9,61.764 +243925,122.92,66.426 +243926,123.13,64.897 +243927,123.37,63.348 +243928,123.67,61.779 +243929,121.53,66.458 +243930,121.79,64.924 +243931,122.09,63.369 +243932,122.44,61.796 +243933,120.14,66.488 +243934,120.45,64.95 +243935,120.8,63.391 +243936,121.21,61.814 +243937,118.75,66.517 +243938,119.11,64.975 +243939,119.52,63.414 +243940,119.99,61.833 +243941,117.36,66.544 +243942,117.77,65.001 +243943,118.24,63.437 +243944,118.76,61.853 +243945,115.97,66.571 +243946,116.43,65.025 +243947,116.95,63.46 +243948,117.53,61.875 +243949,114.58,66.596 +243950,115.09,65.05 +243951,115.67,63.484 +243952,116.3,61.898 +243953,113.19,66.619 +243954,113.75,65.074 +243955,114.38,63.508 +243956,115.07,61.922 +243957,111.8,66.642 +243958,112.42,65.097 +243959,113.09,63.532 +243960,113.84,61.948 +243961,110.41,66.663 +243962,111.08,65.12 +243963,111.81,63.557 +243964,112.61,61.974 +243965,109.02,66.683 +243966,109.74,65.143 +243967,110.52,63.582 +243968,111.38,62.002 +243969,107.63,66.702 +243970,108.4,65.165 +243971,109.24,63.608 +243972,110.15,62.032 +243973,106.25,66.719 +243974,107.06,65.187 +243975,107.95,63.634 +243976,108.92,62.062 +243977,104.86,66.736 +243978,105.73,65.208 +243979,106.66,63.661 +243980,107.69,62.094 +243981,103.47,66.751 +243982,104.39,65.229 +243983,105.38,63.688 +243984,106.45,62.127 +243985,102.09,66.764 +243986,103.05,65.25 +243987,104.09,63.715 +243988,105.22,62.161 +243989,100.71,66.777 +243990,101.71,65.27 +243991,102.8,63.743 +243992,103.98,62.197 +243993,99.323,66.788 +243994,100.38,65.289 +243995,101.52,63.771 +243996,102.75,62.234 +243997,97.941,66.799 +243998,99.041,65.309 +243999,100.23,63.8 +244000,101.51,62.272 +244001,96.559,66.807 +244002,97.705,65.327 +244003,98.939,63.828 +244004,100.27,62.311 +244005,95.179,66.815 +244006,96.369,65.346 +244007,97.65,63.858 +244008,99.033,62.351 +244009,93.799,66.822 +244010,95.034,65.364 +244011,96.361,63.887 +244012,97.793,62.393 +244013,92.421,66.827 +244014,93.699,65.381 +244015,95.072,63.918 +244016,96.552,62.436 +244017,91.043,66.831 +244018,92.364,65.399 +244019,93.782,63.948 +244020,95.31,62.48 +244021,89.667,66.834 +244022,91.03,65.415 +244023,92.492,63.979 +244024,94.066,62.525 +244025,88.291,66.836 +244026,89.696,65.432 +244027,91.201,64.01 +244028,92.821,62.571 +244029,86.917,66.837 +244030,88.362,65.448 +244031,89.91,64.042 +244032,91.575,62.619 +244033,85.544,66.837 +244034,87.029,65.463 +244035,88.619,64.074 +244036,90.328,62.668 +244037,84.172,66.835 +244038,85.696,65.479 +244039,87.327,64.106 +244040,89.079,62.717 +244041,82.801,66.832 +244042,84.363,65.494 +244043,86.034,64.139 +244044,87.829,62.768 +244045,81.431,66.829 +244046,83.031,65.508 +244047,84.741,64.172 +244048,86.578,62.82 +244049,80.063,66.824 +244050,81.699,65.522 +244051,83.448,64.205 +244052,85.325,62.873 +244053,78.695,66.818 +244054,80.368,65.536 +244055,82.154,64.239 +244056,84.071,62.927 +244057,77.329,66.812 +244058,79.037,65.549 +244059,80.86,64.273 +244060,82.815,62.982 +244061,75.965,66.804 +244062,77.707,65.562 +244063,79.565,64.307 +244064,81.558,63.038 +244065,74.601,66.795 +244066,76.377,65.575 +244067,78.27,64.342 +244068,80.299,63.095 +244069,73.239,66.785 +244070,75.047,65.588 +244071,76.974,64.377 +244072,79.038,63.153 +244073,71.879,66.774 +244074,73.718,65.6 +244075,75.678,64.412 +244076,77.776,63.212 +244077,70.52,66.763 +244078,72.389,65.611 +244079,74.381,64.447 +244080,76.512,63.272 +244081,69.162,66.75 +244082,71.061,65.623 +244083,73.083,64.483 +244084,75.247,63.333 +244085,67.805,66.736 +244086,69.734,65.634 +244087,71.785,64.52 +244088,73.98,63.394 +244089,66.45,66.722 +244090,68.406,65.645 +244091,70.487,64.556 +244092,72.711,63.457 +244093,65.097,66.707 +244094,67.08,65.655 +244095,69.188,64.593 +244096,71.44,63.52 +244097,63.745,66.691 +244098,65.754,65.665 +244099,67.888,64.63 +244100,70.168,63.584 +244101,62.394,66.674 +244102,64.428,65.675 +244103,66.588,64.667 +244104,68.894,63.649 +244105,61.045,66.656 +244106,63.103,65.685 +244107,65.287,64.704 +244108,67.618,63.715 +244109,59.698,66.637 +244110,61.778,65.694 +244111,63.985,64.742 +244112,66.34,63.782 +244113,58.352,66.618 +244114,60.454,65.703 +244115,62.683,64.78 +244116,65.06,63.849 +244117,57.008,66.598 +244118,59.131,65.712 +244119,61.381,64.818 +244120,63.778,63.917 +244121,55.665,66.577 +244122,57.808,65.721 +244123,60.077,64.857 +244124,62.495,63.986 +244125,54.324,66.556 +244126,56.485,65.729 +244127,58.774,64.895 +244128,61.21,64.055 +244129,52.985,66.533 +244130,55.163,65.737 +244131,57.469,64.934 +244132,59.922,64.125 +244133,51.647,66.511 +244134,53.842,65.745 +244135,56.164,64.973 +244136,58.633,64.195 +244137,50.311,66.487 +244138,52.521,65.753 +244139,54.858,65.013 +244140,57.342,64.267 +244141,48.976,66.463 +244142,51.201,65.76 +244143,53.552,65.052 +244144,56.049,64.338 +244145,47.643,66.439 +244146,49.881,65.768 +244147,52.245,65.092 +244148,54.754,64.41 +244149,46.312,66.414 +244150,48.562,65.775 +244151,50.937,65.131 +244152,53.457,64.483 +244153,44.983,66.388 +244154,47.244,65.782 +244155,49.629,65.171 +244156,52.158,64.556 +244157,43.655,66.362 +244158,45.926,65.789 +244159,48.32,65.211 +244160,50.857,64.63 +244161,42.329,66.335 +244162,44.608,65.795 +244163,47.01,65.251 +244164,49.554,64.704 +244165,41.004,66.308 +244166,43.292,65.802 +244167,45.7,65.292 +244168,48.25,64.778 +244169,39.682,66.281 +244170,41.975,65.808 +244171,44.389,65.332 +244172,46.943,64.853 +244173,38.361,66.253 +244174,40.66,65.814 +244175,43.078,65.373 +244176,45.634,64.928 +244177,37.041,66.225 +244178,39.345,65.82 +244179,41.766,65.413 +244180,44.323,65.003 +244181,35.724,66.196 +244182,38.03,65.826 +244183,40.453,65.454 +244184,43.01,65.079 +244185,34.408,66.168 +244186,36.716,65.832 +244187,39.139,65.495 +244188,41.696,65.155 +244189,33.094,66.138 +244190,35.403,65.838 +244191,37.825,65.535 +244192,40.379,65.231 +244193,31.782,66.109 +244194,34.09,65.843 +244195,36.511,65.576 +244196,39.06,65.307 +244197,30.471,66.08 +244198,32.778,65.849 +244199,35.195,65.617 +244200,37.74,65.384 +244201,29.163,66.05 +244202,31.467,65.855 +244203,33.879,65.658 +244204,36.417,65.46 +244205,27.856,66.02 +244206,30.156,65.86 +244207,32.562,65.699 +244208,35.093,65.537 +244209,26.55,65.99 +244210,28.846,65.865 +244211,31.245,65.74 +244212,33.766,65.614 +244213,25.247,65.96 +244214,27.536,65.871 +244215,29.927,65.781 +244216,32.438,65.691 +244217,23.945,65.93 +244218,26.227,65.876 +244219,28.609,65.822 +244220,31.108,65.767 +244221,22.645,65.899 +244222,24.918,65.882 +244223,27.29,65.863 +244224,29.776,65.844 +244225,21.347,65.869 +244226,23.61,65.887 +244227,25.97,65.904 +244228,28.442,65.921 +244229,20.05,65.839 +244230,22.302,65.892 +244231,24.649,65.945 +244232,27.106,65.998 +244233,18.755,65.809 +244234,20.995,65.897 +244235,23.328,65.986 +244236,25.768,66.074 +244237,17.462,65.779 +244238,19.689,65.903 +244239,22.007,66.027 +244240,24.429,66.151 +244241,16.17,65.748 +244242,18.383,65.908 +244243,20.684,66.068 +244244,23.088,66.227 +244245,14.881,65.719 +244246,17.078,65.914 +244247,19.361,66.109 +244248,21.745,66.303 +244249,13.592,65.689 +244250,15.773,65.919 +244251,18.038,66.149 +244252,20.4,66.379 +244253,12.306,65.659 +244254,14.469,65.925 +244255,16.714,66.19 +244256,19.053,66.454 +244257,11.021,65.63 +244258,13.166,65.93 +244259,15.389,66.231 +244260,17.705,66.53 +244261,9.7382,65.601 +244262,11.863,65.936 +244263,14.064,66.271 +244264,16.355,66.605 +244265,8.4567,65.572 +244266,10.56,65.942 +244267,12.738,66.311 +244268,15.003,66.679 +244269,7.1769,65.543 +244270,9.2582,65.948 +244271,11.412,66.351 +244272,13.65,66.754 +244273,5.8987,65.515 +244274,7.9567,65.953 +244275,10.085,66.392 +244276,12.295,66.828 +244277,4.6221,65.487 +244278,6.6558,65.96 +244279,8.7576,66.431 +244280,10.938,66.901 +244281,3.347,65.459 +244282,5.3554,65.966 +244283,7.4296,66.471 +244284,9.5799,66.975 +244285,2.0736,65.432 +244286,4.0555,65.972 +244287,6.1011,66.511 +244288,8.2202,67.047 +244289,0.80165,65.406 +244290,2.756,65.979 +244291,4.772,66.55 +244292,6.859,67.119 +244293,359.53,65.379 +244294,1.4571,65.985 +244295,3.4424,66.59 +244296,5.4962,67.191 +244297,358.26,65.354 +244298,0.15866,65.992 +244299,2.1123,66.629 +244300,4.132,67.262 +244301,356.99,65.328 +244302,358.86,65.999 +244303,0.78171,66.668 +244304,2.7663,67.333 +244305,355.73,65.304 +244306,357.56,66.006 +244307,359.45,66.706 +244308,1.3993,67.403 +244309,354.46,65.28 +244310,356.27,66.013 +244311,358.12,66.745 +244312,0.030841,67.472 +244313,353.2,65.256 +244314,354.97,66.021 +244315,356.79,66.783 +244316,358.66,67.541 +244317,351.94,65.233 +244318,353.67,66.029 +244319,355.45,66.821 +244320,357.29,67.609 +244321,350.68,65.211 +244322,352.38,66.036 +244323,354.12,66.859 +244324,355.92,67.676 +244325,349.42,65.189 +244326,351.08,66.045 +244327,352.79,66.896 +244328,354.54,67.743 +244329,348.16,65.168 +244330,349.79,66.053 +244331,351.45,66.934 +244332,353.17,67.809 +244333,346.91,65.148 +244334,348.49,66.061 +244335,350.12,66.971 +244336,351.79,67.874 +244337,345.65,65.129 +244338,347.2,66.07 +244339,348.79,67.008 +244340,350.42,67.939 +244341,344.4,65.11 +244342,345.91,66.079 +244343,347.45,67.044 +244344,349.04,68.002 +244345,343.15,65.092 +244346,344.61,66.089 +244347,346.11,67.08 +244348,347.66,68.065 +244349,341.89,65.075 +244350,343.32,66.098 +244351,344.78,67.116 +244352,346.28,68.127 +244353,340.64,65.059 +244354,342.03,66.108 +244355,343.44,67.152 +244356,344.9,68.188 +244357,339.39,65.043 +244358,340.73,66.118 +244359,342.11,67.187 +244360,343.51,68.249 +244361,338.15,65.029 +244362,339.44,66.129 +244363,340.77,67.222 +244364,342.13,68.308 +244365,336.9,65.015 +244366,338.15,66.139 +244367,339.43,67.257 +244368,340.75,68.367 +244369,335.65,65.002 +244370,336.86,66.15 +244371,338.09,67.292 +244372,339.36,68.424 +244373,334.41,64.99 +244374,335.57,66.162 +244375,336.76,67.326 +244376,337.98,68.481 +244377,333.16,64.979 +244378,334.28,66.173 +244379,335.42,67.36 +244380,336.59,68.536 +244381,331.92,64.969 +244382,332.99,66.185 +244383,334.08,67.393 +244384,335.2,68.591 +244385,330.68,64.961 +244386,331.7,66.198 +244387,332.74,67.426 +244388,333.81,68.645 +244389,329.44,64.953 +244390,330.41,66.21 +244391,331.4,67.459 +244392,332.43,68.697 +244393,328.2,64.946 +244394,329.12,66.223 +244395,330.06,67.491 +244396,331.04,68.749 +244397,326.96,64.94 +244398,327.83,66.236 +244399,328.72,67.523 +244400,329.65,68.799 +244401,325.72,64.935 +244402,326.54,66.25 +244403,327.38,67.555 +244404,328.26,68.849 +244405,324.48,64.931 +244406,325.25,66.264 +244407,326.04,67.587 +244408,326.86,68.897 +244409,323.24,64.929 +244410,323.96,66.278 +244411,324.7,67.618 +244412,325.47,68.945 +244413,322.01,64.927 +244414,322.67,66.293 +244415,323.36,67.648 +244416,324.08,68.991 +244417,320.77,64.927 +244418,321.38,66.308 +244419,322.02,67.678 +244420,322.69,69.036 +244421,319.53,64.927 +244422,320.09,66.323 +244423,320.68,67.708 +244424,321.3,69.08 +244425,318.3,64.929 +244426,318.81,66.339 +244427,319.34,67.738 +244428,319.9,69.123 +244429,317.06,64.932 +244430,317.52,66.355 +244431,318,67.767 +244432,318.51,69.165 +244433,315.83,64.936 +244434,316.23,66.372 +244435,316.66,67.795 +244436,317.12,69.206 +244437,314.6,64.941 +244438,314.94,66.389 +244439,315.32,67.824 +244440,315.72,69.245 +244441,313.36,64.948 +244442,313.65,66.406 +244443,313.98,67.852 +244444,314.33,69.283 +244445,312.13,64.956 +244446,312.37,66.424 +244447,312.64,67.879 +244448,312.93,69.321 +244449,310.89,64.964 +244450,311.08,66.442 +244451,311.29,67.906 +244452,311.54,69.357 +244453,309.66,64.974 +244454,309.79,66.46 +244455,309.95,67.933 +244456,310.15,69.391 +244457,308.43,64.986 +244458,308.5,66.479 +244459,308.61,67.959 +244460,308.75,69.425 +244461,307.2,64.998 +244462,307.22,66.498 +244463,307.27,67.985 +244464,307.36,69.457 +244465,305.96,65.012 +244466,305.93,66.518 +244467,305.93,68.01 +244468,305.96,69.489 +244469,304.73,65.027 +244470,304.64,66.538 +244471,304.59,68.035 +244472,304.57,69.519 +244473,303.5,65.043 +244474,303.35,66.558 +244475,303.25,68.06 +244476,303.18,69.547 +244477,302.27,65.06 +244478,302.06,66.579 +244479,301.9,68.084 +244480,301.78,69.575 +244481,301.03,65.079 +244482,300.78,66.6 +244483,300.56,68.108 +244484,300.39,69.601 +244485,299.8,65.099 +244486,299.49,66.622 +244487,299.22,68.132 +244488,299,69.626 +244489,298.57,65.12 +244490,298.2,66.644 +244491,297.88,68.155 +244492,297.6,69.65 +244493,297.33,65.142 +244494,296.91,66.666 +244495,296.54,68.177 +244496,296.21,69.673 +244497,296.1,65.165 +244498,295.62,66.689 +244499,295.2,68.199 +244500,294.82,69.695 +244501,294.87,65.19 +244502,294.34,66.712 +244503,293.86,68.221 +244504,293.43,69.715 +244505,293.63,65.216 +244506,293.05,66.736 +244507,292.52,68.242 +244508,292.03,69.734 +244509,292.4,65.243 +244510,291.76,66.76 +244511,291.18,68.263 +244512,290.64,69.752 +244513,291.16,65.272 +244514,290.47,66.784 +244515,289.83,68.284 +244516,289.25,69.769 +244517,289.93,65.302 +244518,289.18,66.809 +244519,288.49,68.304 +244520,287.86,69.784 +244521,288.69,65.332 +244522,287.89,66.834 +244523,287.15,68.323 +244524,286.47,69.799 +244525,287.45,65.365 +244526,286.6,66.86 +244527,285.81,68.343 +244528,285.08,69.812 +244529,286.22,65.398 +244530,285.31,66.886 +244531,284.47,68.362 +244532,283.7,69.824 +244533,284.98,65.432 +244534,284.02,66.912 +244535,283.13,68.38 +244536,282.31,69.834 +244537,283.74,65.468 +244538,282.73,66.939 +244539,281.79,68.398 +244540,280.92,69.844 +244541,282.5,65.505 +244542,281.44,66.966 +244543,280.46,68.416 +244544,279.54,69.852 +244545,281.26,65.543 +244546,280.15,66.994 +244547,279.12,68.433 +244548,278.15,69.859 +244549,280.02,65.582 +244550,278.86,67.022 +244551,277.78,68.45 +244552,276.77,69.866 +244553,278.78,65.623 +244554,277.57,67.05 +244555,276.44,68.466 +244556,275.38,69.871 +244557,277.53,65.664 +244558,276.28,67.079 +244559,275.1,68.483 +244560,274,69.874 +244561,276.29,65.707 +244562,274.98,67.108 +244563,273.76,68.498 +244564,272.62,69.877 +244565,275.04,65.751 +244566,273.69,67.137 +244567,272.43,68.514 +244568,271.24,69.879 +244569,273.8,65.796 +244570,272.4,67.167 +244571,271.09,68.529 +244572,269.86,69.879 +244573,272.55,65.842 +244574,271.11,67.197 +244575,269.75,68.543 +244576,268.48,69.878 +244577,271.3,65.889 +244578,269.81,67.228 +244579,268.42,68.557 +244580,267.1,69.877 +244581,270.05,65.937 +244582,268.52,67.259 +244583,267.08,68.571 +244584,265.72,69.874 +244585,268.8,65.986 +244586,267.23,67.29 +244587,265.74,68.585 +244588,264.35,69.87 +244589,267.55,66.037 +244590,265.93,67.321 +244591,264.41,68.598 +244592,262.97,69.865 +244593,266.3,66.088 +244594,264.64,67.353 +244595,263.07,68.611 +244596,261.6,69.859 +244597,265.04,66.14 +244598,263.34,67.385 +244599,261.74,68.623 +244600,260.23,69.853 +244601,263.79,66.194 +244602,262.04,67.418 +244603,260.4,68.635 +244604,258.85,69.845 +244605,262.53,66.248 +244606,260.75,67.451 +244607,259.07,68.647 +244608,257.48,69.836 +244609,261.27,66.303 +244610,259.45,67.484 +244611,257.74,68.659 +244612,256.12,69.826 +244613,260.01,66.36 +244614,258.15,67.517 +244615,256.4,68.67 +244616,254.75,69.815 +244617,258.75,66.417 +244618,256.86,67.551 +244619,255.07,68.681 +244620,253.38,69.804 +244621,257.49,66.475 +244622,255.56,67.585 +244623,253.74,68.691 +244624,252.02,69.791 +244625,256.23,66.534 +244626,254.26,67.619 +244627,252.41,68.701 +244628,250.65,69.778 +244629,254.96,66.593 +244630,252.96,67.654 +244631,251.07,68.711 +244632,249.29,69.763 +244633,253.69,66.654 +244634,251.66,67.689 +244635,249.74,68.721 +244636,247.93,69.748 +244637,252.43,66.715 +244638,250.36,67.724 +244639,248.41,68.73 +244640,246.57,69.732 +244641,251.15,66.777 +244642,249.06,67.76 +244643,247.08,68.739 +244644,245.21,69.715 +244645,249.88,66.84 +244646,247.76,67.795 +244647,245.75,68.748 +244648,243.85,69.698 +244649,248.61,66.904 +244650,246.46,67.831 +244651,244.42,68.757 +244652,242.5,69.679 +244653,247.33,66.969 +244654,245.15,67.867 +244655,243.1,68.765 +244656,241.15,69.66 +244657,246.06,67.034 +244658,243.85,67.904 +244659,241.77,68.773 +244660,239.79,69.64 +244661,244.78,67.1 +244662,242.55,67.94 +244663,240.44,68.781 +244664,238.44,69.62 +244665,243.5,67.166 +244666,241.24,67.977 +244667,239.11,68.788 +244668,237.09,69.599 +244669,242.22,67.233 +244670,239.94,68.014 +244671,237.79,68.796 +244672,235.74,69.577 +244673,240.93,67.301 +244674,238.63,68.051 +244675,236.46,68.803 +244676,234.4,69.554 +244677,239.65,67.369 +244678,237.33,68.089 +244679,235.14,68.81 +244680,233.05,69.531 +244681,238.36,67.438 +244682,236.02,68.126 +244683,233.81,68.817 +244684,231.71,69.507 +244685,237.07,67.507 +244686,234.71,68.164 +244687,232.49,68.823 +244688,230.37,69.483 +244689,235.78,67.577 +244690,233.41,68.202 +244691,231.16,68.83 +244692,229.03,69.458 +244693,234.48,67.647 +244694,232.1,68.24 +244695,229.84,68.836 +244696,227.69,69.433 +244697,233.19,67.718 +244698,230.79,68.278 +244699,228.52,68.842 +244700,226.35,69.407 +244701,231.89,67.789 +244702,229.48,68.317 +244703,227.19,68.848 +244704,225.02,69.381 +244705,230.59,67.861 +244706,228.17,68.355 +244707,225.87,68.854 +244708,223.68,69.354 +244709,229.29,67.933 +244710,226.86,68.394 +244711,224.55,68.859 +244712,222.35,69.327 +244713,227.99,68.005 +244714,225.55,68.433 +244715,223.23,68.865 +244716,221.02,69.299 +244717,226.69,68.078 +244718,224.24,68.472 +244719,221.91,68.87 +244720,219.69,69.272 +244721,225.38,68.151 +244722,222.92,68.511 +244723,220.59,68.875 +244724,218.37,69.243 +244725,224.07,68.224 +244726,221.61,68.55 +244727,219.27,68.88 +244728,217.04,69.215 +244729,222.76,68.297 +244730,220.3,68.589 +244731,217.96,68.885 +244732,215.72,69.186 +244733,221.45,68.371 +244734,218.98,68.628 +244735,216.64,68.89 +244736,214.4,69.157 +244737,220.14,68.444 +244738,217.67,68.667 +244739,215.32,68.895 +244740,213.08,69.128 +244741,218.82,68.518 +244742,216.35,68.706 +244743,214,68.9 +244744,211.76,69.098 +244745,217.5,68.592 +244746,215.04,68.746 +244747,212.69,68.905 +244748,210.44,69.069 +244749,216.18,68.666 +244750,213.72,68.785 +244751,211.37,68.91 +244752,209.13,69.039 +244753,214.86,68.74 +244754,212.4,68.825 +244755,210.06,68.914 +244756,207.81,69.009 +244757,213.54,68.815 +244758,211.08,68.864 +244759,208.74,68.919 +244760,206.5,68.979 +244761,212.21,68.889 +244762,209.77,68.903 +244763,207.43,68.924 +244764,205.19,68.949 +244765,210.89,68.963 +244766,208.45,68.943 +244767,206.12,68.928 +244768,203.88,68.919 +244769,209.56,69.037 +244770,207.13,68.982 +244771,204.8,68.933 +244772,202.58,68.889 +244773,208.23,69.111 +244774,205.81,69.021 +244775,203.49,68.938 +244776,201.27,68.859 +244777,206.89,69.185 +244778,204.48,69.061 +244779,202.18,68.942 +244780,199.97,68.829 +244781,205.56,69.259 +244782,203.16,69.1 +244783,200.87,68.947 +244784,198.67,68.799 +244785,204.22,69.332 +244786,201.84,69.139 +244787,199.56,68.952 +244788,197.37,68.769 +244789,202.88,69.406 +244790,200.52,69.178 +244791,198.25,68.956 +244792,196.07,68.74 +244793,201.54,69.479 +244794,199.19,69.217 +244795,196.94,68.961 +244796,194.77,68.71 +244797,200.2,69.552 +244798,197.87,69.256 +244799,195.63,68.966 +244800,193.48,68.681 +244801,198.86,69.624 +244802,196.55,69.295 +244803,194.32,68.971 +244804,192.19,68.652 +244805,197.51,69.697 +244806,195.22,69.334 +244807,193.02,68.976 +244808,190.89,68.623 +244809,196.17,69.769 +244810,193.89,69.373 +244811,191.71,68.981 +244812,189.6,68.595 +244813,194.82,69.841 +244814,192.57,69.411 +244815,190.4,68.987 +244816,188.32,68.567 +244817,193.47,69.912 +244818,191.24,69.45 +244819,189.1,68.992 +244820,187.03,68.539 +244821,192.12,69.983 +244822,189.91,69.488 +244823,187.79,68.997 +244824,185.74,68.511 +244825,190.76,70.053 +244826,188.58,69.526 +244827,186.49,69.003 +244828,184.46,68.484 +244829,189.41,70.123 +244830,187.26,69.564 +244831,185.18,69.009 +244832,183.18,68.457 +244833,188.05,70.193 +244834,185.93,69.602 +244835,183.88,69.015 +244836,181.9,68.431 +244837,186.69,70.262 +244838,184.6,69.64 +244839,182.58,69.021 +244840,180.62,68.405 +244841,185.34,70.33 +244842,183.27,69.677 +244843,181.27,69.027 +244844,179.34,68.38 +244845,183.97,70.398 +244846,181.94,69.715 +244847,179.97,69.033 +244848,178.07,68.355 +244849,182.61,70.466 +244850,180.61,69.752 +244851,178.67,69.04 +244852,176.79,68.331 +244853,181.25,70.532 +244854,179.27,69.789 +244855,177.37,69.047 +244856,175.52,68.307 +244857,179.88,70.599 +244858,177.94,69.826 +244859,176.07,69.054 +244860,174.25,68.284 +244861,178.51,70.664 +244862,176.61,69.862 +244863,174.77,69.061 +244864,172.98,68.262 +244865,177.15,70.729 +244866,175.28,69.898 +244867,173.47,69.068 +244868,171.71,68.24 +244869,175.78,70.793 +244870,173.94,69.934 +244871,172.17,69.076 +244872,170.44,68.219 +244873,174.41,70.857 +244874,172.61,69.97 +244875,170.87,69.084 +244876,169.18,68.198 +244877,173.03,70.919 +244878,171.27,70.006 +244879,169.57,69.092 +244880,167.91,68.179 +244881,171.66,70.981 +244882,169.94,70.041 +244883,168.27,69.1 +244884,166.65,68.16 +244885,170.29,71.042 +244886,168.6,70.076 +244887,166.97,69.109 +244888,165.39,68.141 +244889,168.91,71.103 +244890,167.27,70.111 +244891,165.67,69.118 +244892,164.13,68.124 +244893,167.53,71.162 +244894,165.93,70.145 +244895,164.38,69.127 +244896,162.87,68.107 +244897,166.15,71.221 +244898,164.59,70.18 +244899,163.08,69.136 +244900,161.61,68.091 +244901,164.78,71.279 +244902,163.26,70.214 +244903,161.78,69.146 +244904,160.35,68.077 +244905,163.4,71.336 +244906,161.92,70.247 +244907,160.49,69.156 +244908,159.1,68.062 +244909,162.01,71.392 +244910,160.58,70.281 +244911,159.19,69.166 +244912,157.84,68.049 +244913,160.63,71.447 +244914,159.24,70.314 +244915,157.9,69.177 +244916,156.59,68.037 +244917,159.25,71.501 +244918,157.9,70.346 +244919,156.6,69.187 +244920,155.33,68.025 +244921,157.86,71.554 +244922,156.57,70.379 +244923,155.31,69.199 +244924,154.08,68.015 +244925,156.48,71.607 +244926,155.23,70.411 +244927,154.01,69.21 +244928,152.83,68.006 +244929,155.09,71.658 +244930,153.89,70.443 +244931,152.72,69.222 +244932,151.58,67.997 +244933,153.71,71.708 +244934,152.55,70.474 +244935,151.42,69.234 +244936,150.33,67.99 +244937,152.32,71.758 +244938,151.21,70.505 +244939,150.13,69.246 +244940,149.09,67.983 +244941,150.93,71.806 +244942,149.87,70.536 +244943,148.84,69.259 +244944,147.84,67.978 +244945,149.54,71.853 +244946,148.53,70.566 +244947,147.54,69.272 +244948,146.59,67.973 +244949,148.15,71.9 +244950,147.19,70.596 +244951,146.25,69.286 +244952,145.35,67.97 +244953,146.76,71.945 +244954,145.85,70.626 +244955,144.96,69.3 +244956,144.1,67.967 +244957,145.37,71.989 +244958,144.5,70.655 +244959,143.67,69.314 +244960,142.86,67.966 +244961,143.98,72.032 +244962,143.16,70.684 +244963,142.37,69.328 +244964,141.61,67.966 +244965,142.59,72.074 +244966,141.82,70.713 +244967,141.08,69.343 +244968,140.37,67.967 +244969,141.2,72.115 +244970,140.48,70.741 +244971,139.79,69.359 +244972,139.13,67.969 +244973,139.81,72.154 +244974,139.14,70.769 +244975,138.5,69.374 +244976,137.89,67.973 +244977,138.41,72.193 +244978,137.8,70.796 +244979,137.21,69.39 +244980,136.65,67.977 +244981,137.02,72.231 +244982,136.45,70.823 +244983,135.92,69.407 +244984,135.41,67.983 +244985,135.63,72.267 +244986,135.11,70.85 +244987,134.62,69.424 +244988,134.17,67.989 +244989,134.23,72.302 +244990,133.77,70.876 +244991,133.33,69.441 +244992,132.93,67.997 +244993,132.84,72.336 +244994,132.43,70.902 +244995,132.04,69.458 +244996,131.69,68.006 +244997,131.45,72.369 +244998,131.08,70.928 +244999,130.75,69.476 +245000,130.45,68.017 +245001,130.05,72.401 +245002,129.74,70.953 +245003,129.46,69.495 +245004,129.21,68.028 +245005,128.66,72.431 +245006,128.4,70.978 +245007,128.17,69.514 +245008,127.97,68.041 +245009,127.26,72.461 +245010,127.05,71.002 +245011,126.88,69.533 +245012,126.73,68.055 +245013,125.87,72.489 +245014,125.71,71.026 +245015,125.59,69.552 +245016,125.49,68.07 +245017,124.47,72.516 +245018,124.37,71.049 +245019,124.3,69.572 +245020,124.26,68.086 +245021,123.08,72.542 +245022,123.03,71.073 +245023,123,69.593 +245024,123.02,68.103 +245025,121.69,72.567 +245026,121.68,71.095 +245027,121.71,69.613 +245028,121.78,68.122 +245029,120.29,72.59 +245030,120.34,71.118 +245031,120.42,69.634 +245032,120.54,68.142 +245033,118.9,72.613 +245034,119,71.14 +245035,119.13,69.656 +245036,119.3,68.163 +245037,117.5,72.634 +245038,117.65,71.161 +245039,117.84,69.678 +245040,118.07,68.186 +245041,116.11,72.654 +245042,116.31,71.182 +245043,116.55,69.7 +245044,116.83,68.209 +245045,114.72,72.672 +245046,114.97,71.203 +245047,115.26,69.723 +245048,115.59,68.234 +245049,113.32,72.69 +245050,113.63,71.223 +245051,113.97,69.746 +245052,114.35,68.26 +245053,111.93,72.706 +245054,112.28,71.243 +245055,112.68,69.77 +245056,113.11,68.287 +245057,110.54,72.722 +245058,110.94,71.263 +245059,111.38,69.794 +245060,111.87,68.316 +245061,109.15,72.736 +245062,109.6,71.282 +245063,110.09,69.818 +245064,110.63,68.345 +245065,107.75,72.749 +245066,108.26,71.301 +245067,108.8,69.843 +245068,109.39,68.376 +245069,106.36,72.76 +245070,106.91,71.319 +245071,107.51,69.868 +245072,108.15,68.408 +245073,104.97,72.771 +245074,105.57,71.337 +245075,106.22,69.893 +245076,106.91,68.442 +245077,103.58,72.781 +245078,104.23,71.355 +245079,104.92,69.919 +245080,105.67,68.476 +245081,102.19,72.789 +245082,102.89,71.372 +245083,103.63,69.946 +245084,104.43,68.512 +245085,100.8,72.796 +245086,101.55,71.389 +245087,102.34,69.972 +245088,103.19,68.549 +245089,99.416,72.802 +245090,100.2,71.405 +245091,101.05,69.999 +245092,101.94,68.587 +245093,98.029,72.807 +245094,98.864,71.421 +245095,99.753,70.027 +245096,100.7,68.626 +245097,96.642,72.811 +245098,97.523,71.437 +245099,98.459,70.055 +245100,99.456,68.666 +245101,95.256,72.814 +245102,96.182,71.452 +245103,97.166,70.083 +245104,98.21,68.707 +245105,93.871,72.815 +245106,94.842,71.467 +245107,95.872,70.111 +245108,96.964,68.75 +245109,92.486,72.816 +245110,93.502,71.482 +245111,94.577,70.14 +245112,95.718,68.793 +245113,91.103,72.815 +245114,92.162,71.496 +245115,93.283,70.17 +245116,94.47,68.838 +245117,89.72,72.814 +245118,90.822,71.51 +245119,91.988,70.199 +245120,93.222,68.884 +245121,88.338,72.811 +245122,89.483,71.523 +245123,90.693,70.229 +245124,91.972,68.931 +245125,86.957,72.807 +245126,88.144,71.536 +245127,89.397,70.259 +245128,90.722,68.979 +245129,85.577,72.803 +245130,86.806,71.549 +245131,88.101,70.29 +245132,89.47,69.028 +245133,84.199,72.797 +245134,85.467,71.562 +245135,86.805,70.321 +245136,88.218,69.078 +245137,82.821,72.79 +245138,84.129,71.574 +245139,85.508,70.353 +245140,86.964,69.129 +245141,81.444,72.783 +245142,82.792,71.585 +245143,84.211,70.384 +245144,85.71,69.181 +245145,80.068,72.774 +245146,81.454,71.597 +245147,82.914,70.416 +245148,84.454,69.234 +245149,78.693,72.764 +245150,80.117,71.608 +245151,81.616,70.449 +245152,83.197,69.288 +245153,77.32,72.754 +245154,78.781,71.619 +245155,80.318,70.481 +245156,81.939,69.343 +245157,75.947,72.743 +245158,77.445,71.63 +245159,79.019,70.514 +245160,80.679,69.398 +245161,74.576,72.73 +245162,76.109,71.64 +245163,77.72,70.547 +245164,79.418,69.455 +245165,73.206,72.717 +245166,74.773,71.65 +245167,76.421,70.581 +245168,78.156,69.513 +245169,71.837,72.703 +245170,73.438,71.659 +245171,75.121,70.615 +245172,76.893,69.571 +245173,70.47,72.688 +245174,72.104,71.669 +245175,73.82,70.649 +245176,75.628,69.63 +245177,69.103,72.672 +245178,70.77,71.678 +245179,72.52,70.683 +245180,74.362,69.691 +245181,67.738,72.656 +245182,69.436,71.687 +245183,71.218,70.718 +245184,73.094,69.751 +245185,66.375,72.639 +245186,68.103,71.695 +245187,69.916,70.753 +245188,71.825,69.813 +245189,65.012,72.621 +245190,66.77,71.704 +245191,68.614,70.788 +245192,70.555,69.876 +245193,63.651,72.602 +245194,65.437,71.712 +245195,67.311,70.823 +245196,69.283,69.939 +245197,62.292,72.582 +245198,64.106,71.72 +245199,66.008,70.859 +245200,68.009,70.003 +245201,60.933,72.562 +245202,62.774,71.727 +245203,64.704,70.895 +245204,66.734,70.067 +245205,59.576,72.541 +245206,61.443,71.735 +245207,63.4,70.931 +245208,65.457,70.132 +245209,58.221,72.52 +245210,60.113,71.742 +245211,62.095,70.967 +245212,64.179,70.198 +245213,56.867,72.498 +245214,58.783,71.749 +245215,60.79,71.004 +245216,62.899,70.265 +245217,55.515,72.475 +245218,57.453,71.755 +245219,59.484,71.04 +245220,61.618,70.332 +245221,54.164,72.451 +245222,56.124,71.762 +245223,58.177,71.077 +245224,60.335,70.4 +245225,52.814,72.427 +245226,54.795,71.768 +245227,56.87,71.114 +245228,59.05,70.468 +245229,51.466,72.403 +245230,53.467,71.775 +245231,55.562,71.152 +245232,57.763,70.536 +245233,50.12,72.378 +245234,52.14,71.781 +245235,54.254,71.189 +245236,56.475,70.606 +245237,48.775,72.353 +245238,50.813,71.786 +245239,52.946,71.227 +245240,55.185,70.675 +245241,47.431,72.327 +245242,49.486,71.792 +245243,51.636,71.264 +245244,53.893,70.745 +245245,46.09,72.3 +245246,48.16,71.798 +245247,50.326,71.302 +245248,52.6,70.816 +245249,44.749,72.274 +245250,46.835,71.803 +245251,49.016,71.34 +245252,51.305,70.887 +245253,43.411,72.246 +245254,45.51,71.809 +245255,47.705,71.378 +245256,50.008,70.958 +245257,42.074,72.219 +245258,44.186,71.814 +245259,46.393,71.417 +245260,48.709,71.029 +245261,40.738,72.191 +245262,42.862,71.819 +245263,45.081,71.455 +245264,47.408,71.101 +245265,39.404,72.163 +245266,41.539,71.824 +245267,43.768,71.493 +245268,46.106,71.173 +245269,38.072,72.134 +245270,40.216,71.829 +245271,42.455,71.532 +245272,44.802,71.246 +245273,36.742,72.106 +245274,38.894,71.834 +245275,41.141,71.57 +245276,43.496,71.318 +245277,35.413,72.077 +245278,37.572,71.838 +245279,39.826,71.609 +245280,42.188,71.391 +245281,34.085,72.048 +245282,36.251,71.843 +245283,38.511,71.648 +245284,40.878,71.464 +245285,32.76,72.018 +245286,34.931,71.848 +245287,37.195,71.687 +245288,39.567,71.537 +245289,31.436,71.989 +245290,33.611,71.852 +245291,35.879,71.725 +245292,38.254,71.61 +245293,30.113,71.959 +245294,32.291,71.857 +245295,34.562,71.764 +245296,36.938,71.684 +245297,28.793,71.93 +245298,30.972,71.861 +245299,33.244,71.803 +245300,35.622,71.757 +245301,27.473,71.9 +245302,29.654,71.866 +245303,31.926,71.842 +245304,34.303,71.83 +245305,26.156,71.87 +245306,28.336,71.87 +245307,30.607,71.881 +245308,32.982,71.903 +245309,24.84,71.841 +245310,27.019,71.875 +245311,29.288,71.92 +245312,31.66,71.977 +245313,23.526,71.811 +245314,25.702,71.879 +245315,27.968,71.959 +245316,30.336,72.05 +245317,22.214,71.781 +245318,24.386,71.884 +245319,26.647,71.997 +245320,29.01,72.123 +245321,20.903,71.751 +245322,23.071,71.888 +245323,25.326,72.036 +245324,27.682,72.196 +245325,19.594,71.722 +245326,21.756,71.893 +245327,24.004,72.075 +245328,26.352,72.269 +245329,18.286,71.692 +245330,20.441,71.898 +245331,22.682,72.114 +245332,25.021,72.342 +245333,16.98,71.663 +245334,19.127,71.902 +245335,21.359,72.152 +245336,23.687,72.414 +245337,15.676,71.634 +245338,17.814,71.907 +245339,20.035,72.191 +245340,22.352,72.486 +245341,14.374,71.605 +245342,16.501,71.912 +245343,18.711,72.229 +245344,21.016,72.559 +245345,13.073,71.577 +245346,15.189,71.917 +245347,17.386,72.268 +245348,19.677,72.63 +245349,11.773,71.548 +245350,13.877,71.922 +245351,16.061,72.306 +245352,18.337,72.702 +245353,10.475,71.52 +245354,12.566,71.927 +245355,14.735,72.344 +245356,16.995,72.773 +245357,9.1792,71.493 +245358,11.255,71.932 +245359,13.409,72.383 +245360,15.651,72.844 +245361,7.8846,71.465 +245362,9.9451,71.938 +245363,12.082,72.421 +245364,14.306,72.914 +245365,6.5916,71.438 +245366,8.6355,71.943 +245367,10.754,72.458 +245368,12.959,72.984 +245369,5.3001,71.411 +245370,7.3263,71.949 +245371,9.4258,72.496 +245372,11.611,73.053 +245373,4.0102,71.385 +245374,6.0177,71.955 +245375,8.0971,72.534 +245376,10.26,73.123 +245377,2.7219,71.36 +245378,4.7096,71.961 +245379,6.7679,72.571 +245380,8.9083,73.191 +245381,1.435,71.334 +245382,3.4019,71.967 +245383,5.4381,72.608 +245384,7.5548,73.259 +245385,0.14964,71.309 +245386,2.0948,71.973 +245387,4.1078,72.645 +245388,6.1998,73.327 +245389,358.87,71.285 +245390,0.78816,71.979 +245391,2.777,72.682 +245392,4.8432,73.394 +245393,357.58,71.262 +245394,359.48,71.986 +245395,1.4457,72.719 +245396,3.485,73.46 +245397,356.3,71.238 +245398,358.18,71.993 +245399,0.11381,72.755 +245400,2.1254,73.526 +245401,355.02,71.216 +245402,356.87,72 +245403,358.78,72.792 +245404,0.76424,73.591 +245405,353.74,71.194 +245406,355.57,72.007 +245407,357.45,72.828 +245408,359.4,73.656 +245409,352.47,71.173 +245410,354.26,72.015 +245411,356.12,72.864 +245412,358.04,73.719 +245413,351.19,71.152 +245414,352.96,72.022 +245415,354.78,72.899 +245416,356.67,73.783 +245417,349.92,71.133 +245418,351.65,72.03 +245419,353.45,72.935 +245420,355.31,73.845 +245421,348.65,71.113 +245422,350.35,72.039 +245423,352.11,72.97 +245424,353.94,73.907 +245425,347.38,71.095 +245426,349.05,72.047 +245427,350.78,73.005 +245428,352.57,73.968 +245429,346.11,71.077 +245430,347.75,72.056 +245431,349.44,73.039 +245432,351.2,74.028 +245433,344.84,71.061 +245434,346.45,72.065 +245435,348.11,73.074 +245436,349.83,74.087 +245437,343.57,71.045 +245438,345.14,72.074 +245439,346.77,73.108 +245440,348.45,74.146 +245441,342.3,71.03 +245442,343.84,72.083 +245443,345.43,73.142 +245444,347.08,74.203 +245445,341.04,71.015 +245446,342.54,72.093 +245447,344.09,73.175 +245448,345.7,74.26 +245449,339.77,71.002 +245450,341.24,72.103 +245451,342.76,73.208 +245452,344.32,74.316 +245453,338.51,70.989 +245454,339.94,72.114 +245455,341.42,73.241 +245456,342.95,74.371 +245457,337.25,70.978 +245458,338.64,72.124 +245459,340.08,73.274 +245460,341.57,74.425 +245461,335.99,70.967 +245462,337.34,72.135 +245463,338.74,73.306 +245464,340.19,74.479 +245465,334.73,70.957 +245466,336.04,72.147 +245467,337.4,73.338 +245468,338.81,74.531 +245469,333.47,70.948 +245470,334.75,72.158 +245471,336.06,73.37 +245472,337.43,74.582 +245473,332.21,70.941 +245474,333.45,72.17 +245475,334.72,73.402 +245476,336.04,74.633 +245477,330.96,70.934 +245478,332.15,72.183 +245479,333.38,73.433 +245480,334.66,74.682 +245481,329.7,70.928 +245482,330.85,72.195 +245483,332.04,73.463 +245484,333.27,74.731 +245485,328.45,70.923 +245486,329.56,72.208 +245487,330.7,73.494 +245488,331.89,74.778 +245489,327.19,70.92 +245490,328.26,72.222 +245491,329.36,73.524 +245492,330.5,74.824 +245493,325.94,70.917 +245494,326.96,72.236 +245495,328.02,73.553 +245496,329.11,74.87 +245497,324.69,70.915 +245498,325.67,72.25 +245499,326.68,73.583 +245500,327.73,74.914 +245501,323.44,70.915 +245502,324.37,72.264 +245503,325.33,73.612 +245504,326.34,74.957 +245505,322.19,70.915 +245506,323.07,72.279 +245507,323.99,73.64 +245508,324.95,74.999 +245509,320.94,70.917 +245510,321.78,72.294 +245511,322.65,73.669 +245512,323.56,75.04 +245513,319.69,70.92 +245514,320.48,72.31 +245515,321.31,73.697 +245516,322.17,75.08 +245517,318.44,70.924 +245518,319.19,72.326 +245519,319.96,73.724 +245520,320.78,75.119 +245521,317.19,70.929 +245522,317.89,72.342 +245523,318.62,73.751 +245524,319.39,75.157 +245525,315.94,70.936 +245526,316.6,72.359 +245527,317.28,73.778 +245528,317.99,75.193 +245529,314.7,70.943 +245530,315.3,72.376 +245531,315.93,73.805 +245532,316.6,75.229 +245533,313.45,70.952 +245534,314.01,72.393 +245535,314.59,73.831 +245536,315.21,75.263 +245537,312.21,70.962 +245538,312.71,72.411 +245539,313.25,73.856 +245540,313.82,75.296 +245541,310.96,70.973 +245542,311.42,72.429 +245543,311.9,73.882 +245544,312.42,75.328 +245545,309.71,70.985 +245546,310.12,72.448 +245547,310.56,73.906 +245548,311.03,75.359 +245549,308.47,70.998 +245550,308.83,72.467 +245551,309.22,73.931 +245552,309.64,75.389 +245553,307.23,71.013 +245554,307.53,72.486 +245555,307.87,73.955 +245556,308.24,75.418 +245557,305.98,71.029 +245558,306.24,72.506 +245559,306.53,73.979 +245560,306.85,75.445 +245561,304.74,71.046 +245562,304.94,72.526 +245563,305.18,74.002 +245564,305.45,75.471 +245565,303.49,71.064 +245566,303.65,72.547 +245567,303.84,74.025 +245568,304.06,75.496 +245569,302.25,71.084 +245570,302.36,72.568 +245571,302.49,74.048 +245572,302.66,75.52 +245573,301.01,71.104 +245574,301.06,72.59 +245575,301.15,74.07 +245576,301.27,75.543 +245577,299.76,71.126 +245578,299.77,72.611 +245579,299.81,74.091 +245580,299.88,75.565 +245581,298.52,71.149 +245582,298.47,72.634 +245583,298.46,74.113 +245584,298.48,75.585 +245585,297.28,71.174 +245586,297.18,72.656 +245587,297.12,74.134 +245588,297.09,75.604 +245589,296.03,71.199 +245590,295.88,72.679 +245591,295.77,74.154 +245592,295.69,75.622 +245593,294.79,71.226 +245594,294.59,72.703 +245595,294.43,74.175 +245596,294.3,75.639 +245597,293.55,71.254 +245598,293.3,72.727 +245599,293.08,74.194 +245600,292.9,75.655 +245601,292.3,71.283 +245602,292,72.751 +245603,291.74,74.214 +245604,291.51,75.67 +245605,291.06,71.314 +245606,290.71,72.776 +245607,290.39,74.233 +245608,290.12,75.683 +245609,289.81,71.346 +245610,289.41,72.801 +245611,289.05,74.251 +245612,288.72,75.695 +245613,288.57,71.378 +245614,288.12,72.826 +245615,287.71,74.27 +245616,287.33,75.707 +245617,287.32,71.412 +245618,286.82,72.852 +245619,286.36,74.288 +245620,285.94,75.717 +245621,286.08,71.448 +245622,285.53,72.879 +245623,285.02,74.305 +245624,284.55,75.725 +245625,284.83,71.484 +245626,284.23,72.905 +245627,283.67,74.322 +245628,283.16,75.733 +245629,283.59,71.522 +245630,282.94,72.932 +245631,282.33,74.339 +245632,281.76,75.74 +245633,282.34,71.56 +245634,281.64,72.96 +245635,280.99,74.355 +245636,280.37,75.745 +245637,281.09,71.6 +245638,280.35,72.988 +245639,279.64,74.371 +245640,278.98,75.75 +245641,279.85,71.641 +245642,279.05,73.016 +245643,278.3,74.387 +245644,277.59,75.753 +245645,278.6,71.684 +245646,277.75,73.044 +245647,276.96,74.402 +245648,276.21,75.755 +245649,277.35,71.727 +245650,276.46,73.073 +245651,275.61,74.417 +245652,274.82,75.756 +245653,276.1,71.771 +245654,275.16,73.103 +245655,274.27,74.431 +245656,273.43,75.756 +245657,274.85,71.817 +245658,273.86,73.132 +245659,272.93,74.446 +245660,272.04,75.755 +245661,273.6,71.863 +245662,272.57,73.162 +245663,271.59,74.459 +245664,270.66,75.753 +245665,272.35,71.911 +245666,271.27,73.193 +245667,270.25,74.473 +245668,269.27,75.75 +245669,271.09,71.96 +245670,269.97,73.223 +245671,268.9,74.486 +245672,267.89,75.746 +245673,269.84,72.01 +245674,268.67,73.255 +245675,267.56,74.499 +245676,266.51,75.741 +245677,268.59,72.06 +245678,267.38,73.286 +245679,266.22,74.511 +245680,265.12,75.735 +245681,267.33,72.112 +245682,266.08,73.318 +245683,264.88,74.524 +245684,263.74,75.728 +245685,266.07,72.165 +245686,264.78,73.35 +245687,263.54,74.535 +245688,262.36,75.72 +245689,264.82,72.219 +245690,263.48,73.382 +245691,262.2,74.547 +245692,260.98,75.711 +245693,263.56,72.274 +245694,262.18,73.415 +245695,260.86,74.558 +245696,259.6,75.701 +245697,262.3,72.329 +245698,260.88,73.448 +245699,259.52,74.569 +245700,258.22,75.69 +245701,261.04,72.386 +245702,259.58,73.481 +245703,258.18,74.58 +245704,256.85,75.678 +245705,259.78,72.443 +245706,258.28,73.515 +245707,256.84,74.59 +245708,255.47,75.666 +245709,258.51,72.502 +245710,256.98,73.549 +245711,255.51,74.6 +245712,254.1,75.652 +245713,257.25,72.561 +245714,255.67,73.583 +245715,254.17,74.61 +245716,252.72,75.638 +245717,255.99,72.621 +245718,254.37,73.618 +245719,252.83,74.619 +245720,251.35,75.623 +245721,254.72,72.682 +245722,253.07,73.653 +245723,251.49,74.628 +245724,249.98,75.607 +245725,253.45,72.744 +245726,251.77,73.688 +245727,250.16,74.637 +245728,248.61,75.59 +245729,252.18,72.806 +245730,250.46,73.723 +245731,248.82,74.646 +245732,247.24,75.573 +245733,250.91,72.87 +245734,249.16,73.759 +245735,247.48,74.655 +245736,245.87,75.555 +245737,249.64,72.934 +245738,247.86,73.795 +245739,246.15,74.663 +245740,244.51,75.536 +245741,248.37,72.998 +245742,246.55,73.831 +245743,244.81,74.671 +245744,243.14,75.516 +245745,247.09,73.064 +245746,245.25,73.867 +245747,243.48,74.679 +245748,241.78,75.496 +245749,245.82,73.13 +245750,243.94,73.904 +245751,242.14,74.686 +245752,240.42,75.475 +245753,244.54,73.196 +245754,242.63,73.94 +245755,240.81,74.693 +245756,239.06,75.453 +245757,243.26,73.264 +245758,241.33,73.977 +245759,239.47,74.701 +245760,237.7,75.431 +245761,241.98,73.332 +245762,240.02,74.015 +245763,238.14,74.708 +245764,236.34,75.408 +245765,240.7,73.4 +245766,238.71,74.052 +245767,236.81,74.714 +245768,234.98,75.385 +245769,239.42,73.469 +245770,237.4,74.089 +245771,235.48,74.721 +245772,233.63,75.361 +245773,238.13,73.539 +245774,236.1,74.127 +245775,234.14,74.727 +245776,232.27,75.336 +245777,236.85,73.609 +245778,234.79,74.165 +245779,232.81,74.734 +245780,230.92,75.312 +245781,235.56,73.679 +245782,233.48,74.203 +245783,231.48,74.74 +245784,229.57,75.286 +245785,234.27,73.75 +245786,232.17,74.241 +245787,230.15,74.746 +245788,228.22,75.26 +245789,232.98,73.821 +245790,230.86,74.28 +245791,228.82,74.751 +245792,226.87,75.234 +245793,231.69,73.893 +245794,229.54,74.318 +245795,227.49,74.757 +245796,225.52,75.207 +245797,230.39,73.965 +245798,228.23,74.357 +245799,226.16,74.763 +245800,224.18,75.18 +245801,229.1,74.037 +245802,226.92,74.396 +245803,224.84,74.768 +245804,222.83,75.153 +245805,227.8,74.11 +245806,225.61,74.434 +245807,223.51,74.774 +245808,221.49,75.125 +245809,226.5,74.183 +245810,224.29,74.473 +245811,222.18,74.779 +245812,220.15,75.097 +245813,225.2,74.256 +245814,222.98,74.512 +245815,220.85,74.784 +245816,218.81,75.069 +245817,223.89,74.329 +245818,221.66,74.551 +245819,219.53,74.789 +245820,217.47,75.04 +245821,222.59,74.403 +245822,220.35,74.591 +245823,218.2,74.794 +245824,216.14,75.012 +245825,221.28,74.477 +245826,219.03,74.63 +245827,216.88,74.799 +245828,214.8,74.983 +245829,219.97,74.55 +245830,217.72,74.669 +245831,215.55,74.804 +245832,213.47,74.954 +245833,218.66,74.624 +245834,216.4,74.708 +245835,214.23,74.809 +245836,212.14,74.924 +245837,217.35,74.698 +245838,215.08,74.748 +245839,212.9,74.814 +245840,210.81,74.895 +245841,216.04,74.772 +245842,213.76,74.787 +245843,211.58,74.819 +245844,209.48,74.866 +245845,214.72,74.847 +245846,212.45,74.827 +245847,210.26,74.824 +245848,208.16,74.836 +245849,213.41,74.921 +245850,211.13,74.866 +245851,208.94,74.829 +245852,206.83,74.807 +245853,212.09,74.995 +245854,209.81,74.905 +245855,207.62,74.834 +245856,205.51,74.777 +245857,210.77,75.069 +245858,208.49,74.945 +245859,206.29,74.839 +245860,204.19,74.748 +245861,209.45,75.143 +245862,207.16,74.984 +245863,204.97,74.843 +245864,202.87,74.719 +245865,208.12,75.216 +245866,205.84,75.023 +245867,203.65,74.848 +245868,201.55,74.689 +245869,206.8,75.29 +245870,204.52,75.063 +245871,202.34,74.853 +245872,200.23,74.66 +245873,205.47,75.363 +245874,203.2,75.102 +245875,201.02,74.859 +245876,198.91,74.631 +245877,204.14,75.436 +245878,201.87,75.141 +245879,199.7,74.864 +245880,197.6,74.602 +245881,202.81,75.509 +245882,200.55,75.18 +245883,198.38,74.869 +245884,196.29,74.574 +245885,201.48,75.582 +245886,199.23,75.219 +245887,197.06,74.874 +245888,194.98,74.545 +245889,200.14,75.655 +245890,197.9,75.258 +245891,195.75,74.88 +245892,193.67,74.517 +245893,198.81,75.727 +245894,196.57,75.297 +245895,194.43,74.885 +245896,192.36,74.489 +245897,197.47,75.799 +245898,195.25,75.336 +245899,193.11,74.891 +245900,191.06,74.462 +245901,196.13,75.87 +245902,193.92,75.374 +245903,191.8,74.896 +245904,189.75,74.434 +245905,194.79,75.941 +245906,192.59,75.413 +245907,190.48,74.902 +245908,188.45,74.407 +245909,193.45,76.012 +245910,191.27,75.451 +245911,189.17,74.908 +245912,187.15,74.381 +245913,192.1,76.082 +245914,189.94,75.49 +245915,187.86,74.914 +245916,185.85,74.355 +245917,190.76,76.151 +245918,188.61,75.528 +245919,186.54,74.921 +245920,184.55,74.329 +245921,189.41,76.221 +245922,187.28,75.566 +245923,185.23,74.927 +245924,183.25,74.304 +245925,188.06,76.289 +245926,185.95,75.603 +245927,183.92,74.934 +245928,181.96,74.279 +245929,186.71,76.357 +245930,184.62,75.641 +245931,182.61,74.941 +245932,180.67,74.255 +245933,185.36,76.425 +245934,183.29,75.678 +245935,181.3,74.948 +245936,179.37,74.231 +245937,184,76.492 +245938,181.95,75.716 +245939,179.99,74.955 +245940,178.08,74.208 +245941,182.65,76.558 +245942,180.62,75.753 +245943,178.67,74.962 +245944,176.79,74.186 +245945,181.29,76.624 +245946,179.29,75.789 +245947,177.37,74.97 +245948,175.51,74.164 +245949,179.93,76.689 +245950,177.96,75.826 +245951,176.06,74.978 +245952,174.22,74.143 +245953,178.57,76.753 +245954,176.62,75.862 +245955,174.75,74.986 +245956,172.93,74.122 +245957,177.21,76.817 +245958,175.29,75.899 +245959,173.44,74.994 +245960,171.65,74.102 +245961,175.85,76.88 +245962,173.95,75.934 +245963,172.13,75.002 +245964,170.37,74.083 +245965,174.48,76.942 +245966,172.62,75.97 +245967,170.82,75.011 +245968,169.09,74.065 +245969,173.12,77.004 +245970,171.28,76.006 +245971,169.52,75.02 +245972,167.81,74.047 +245973,171.75,77.064 +245974,169.95,76.041 +245975,168.21,75.03 +245976,166.53,74.03 +245977,170.38,77.124 +245978,168.61,76.076 +245979,166.9,75.039 +245980,165.25,74.014 +245981,169.01,77.183 +245982,167.27,76.11 +245983,165.6,75.049 +245984,163.98,73.999 +245985,167.64,77.241 +245986,165.93,76.145 +245987,164.29,75.059 +245988,162.7,73.984 +245989,166.27,77.298 +245990,164.6,76.179 +245991,162.99,75.07 +245992,161.43,73.971 +245993,164.9,77.355 +245994,163.26,76.213 +245995,161.68,75.08 +245996,160.16,73.958 +245997,163.52,77.41 +245998,161.92,76.246 +245999,160.38,75.091 +246000,158.89,73.946 +246001,162.15,77.465 +246002,160.58,76.279 +246003,159.07,75.103 +246004,157.62,73.936 +246005,160.77,77.518 +246006,159.24,76.312 +246007,157.77,75.115 +246008,156.35,73.926 +246009,159.39,77.571 +246010,157.9,76.345 +246011,156.47,75.127 +246012,155.08,73.917 +246013,158.01,77.623 +246014,156.56,76.377 +246015,155.16,75.139 +246016,153.81,73.909 +246017,156.63,77.673 +246018,155.22,76.409 +246019,153.86,75.152 +246020,152.55,73.902 +246021,155.25,77.723 +246022,153.88,76.44 +246023,152.56,75.165 +246024,151.28,73.896 +246025,153.87,77.772 +246026,152.54,76.472 +246027,151.26,75.178 +246028,150.02,73.891 +246029,152.49,77.819 +246030,151.2,76.503 +246031,149.95,75.192 +246032,148.76,73.887 +246033,151.1,77.866 +246034,149.85,76.533 +246035,148.65,75.206 +246036,147.5,73.884 +246037,149.72,77.912 +246038,148.51,76.563 +246039,147.35,75.22 +246040,146.23,73.882 +246041,148.33,77.956 +246042,147.17,76.593 +246043,146.05,75.235 +246044,144.97,73.882 +246045,146.95,77.999 +246046,145.83,76.623 +246047,144.75,75.25 +246048,143.72,73.882 +246049,145.56,78.042 +246050,144.48,76.652 +246051,143.45,75.266 +246052,142.46,73.884 +246053,144.17,78.083 +246054,143.14,76.681 +246055,142.15,75.282 +246056,141.2,73.886 +246057,142.78,78.123 +246058,141.79,76.709 +246059,140.85,75.298 +246060,139.94,73.89 +246061,141.39,78.162 +246062,140.45,76.737 +246063,139.55,75.315 +246064,138.69,73.895 +246065,140,78.2 +246066,139.11,76.765 +246067,138.25,75.332 +246068,137.43,73.901 +246069,138.61,78.237 +246070,137.76,76.792 +246071,136.95,75.349 +246072,136.18,73.909 +246073,137.22,78.272 +246074,136.42,76.819 +246075,135.65,75.367 +246076,134.92,73.917 +246077,135.83,78.307 +246078,135.07,76.846 +246079,134.35,75.385 +246080,133.67,73.927 +246081,134.44,78.34 +246082,133.73,76.872 +246083,133.05,75.404 +246084,132.42,73.938 +246085,133.05,78.372 +246086,132.38,76.898 +246087,131.76,75.423 +246088,131.16,73.95 +246089,131.65,78.403 +246090,131.04,76.923 +246091,130.46,75.443 +246092,129.91,73.963 +246093,130.26,78.433 +246094,129.69,76.948 +246095,129.16,75.463 +246096,128.66,73.977 +246097,128.87,78.462 +246098,128.35,76.973 +246099,127.86,75.483 +246100,127.41,73.993 +246101,127.47,78.49 +246102,127,76.997 +246103,126.56,75.504 +246104,126.16,74.01 +246105,126.08,78.516 +246106,125.65,77.021 +246107,125.26,75.525 +246108,124.91,74.028 +246109,124.68,78.541 +246110,124.31,77.044 +246111,123.96,75.546 +246112,123.65,74.048 +246113,123.29,78.565 +246114,122.96,77.067 +246115,122.67,75.568 +246116,122.4,74.068 +246117,121.89,78.588 +246118,121.62,77.09 +246119,121.37,75.59 +246120,121.15,74.09 +246121,120.5,78.609 +246122,120.27,77.112 +246123,120.07,75.613 +246124,119.9,74.113 +246125,119.11,78.63 +246126,118.92,77.134 +246127,118.77,75.636 +246128,118.66,74.137 +246129,117.71,78.649 +246130,117.58,77.156 +246131,117.47,75.66 +246132,117.41,74.163 +246133,116.32,78.667 +246134,116.23,77.177 +246135,116.18,75.684 +246136,116.16,74.19 +246137,114.92,78.684 +246138,114.88,77.198 +246139,114.88,75.708 +246140,114.91,74.218 +246141,113.53,78.7 +246142,113.54,77.218 +246143,113.58,75.733 +246144,113.66,74.247 +246145,112.13,78.714 +246146,112.19,77.238 +246147,112.28,75.758 +246148,112.41,74.278 +246149,110.74,78.728 +246150,110.84,77.257 +246151,110.98,75.784 +246152,111.16,74.309 +246153,109.34,78.74 +246154,109.5,77.276 +246155,109.69,75.81 +246156,109.91,74.342 +246157,107.95,78.751 +246158,108.15,77.295 +246159,108.39,75.836 +246160,108.66,74.376 +246161,106.55,78.761 +246162,106.81,77.314 +246163,107.09,75.863 +246164,107.41,74.412 +246165,105.16,78.77 +246166,105.46,77.332 +246167,105.79,75.89 +246168,106.16,74.448 +246169,103.77,78.778 +246170,104.11,77.349 +246171,104.49,75.918 +246172,104.91,74.486 +246173,102.37,78.784 +246174,102.77,77.366 +246175,103.19,75.946 +246176,103.66,74.525 +246177,100.98,78.79 +246178,101.42,77.383 +246179,101.89,75.975 +246180,102.4,74.565 +246181,99.59,78.794 +246182,100.08,77.4 +246183,100.6,76.003 +246184,101.15,74.606 +246185,98.198,78.797 +246186,98.73,77.416 +246187,99.297,76.033 +246188,99.901,74.649 +246189,96.807,78.799 +246190,97.384,77.432 +246191,97.997,76.062 +246192,98.648,74.692 +246193,95.416,78.8 +246194,96.039,77.447 +246195,96.698,76.092 +246196,97.395,74.737 +246197,94.026,78.8 +246198,94.693,77.462 +246199,95.398,76.122 +246200,96.141,74.783 +246201,92.637,78.799 +246202,93.348,77.477 +246203,94.098,76.153 +246204,94.887,74.83 +246205,91.248,78.797 +246206,92.004,77.491 +246207,92.798,76.184 +246208,93.632,74.878 +246209,89.86,78.794 +246210,90.659,77.505 +246211,91.497,76.216 +246212,92.377,74.927 +246213,88.472,78.79 +246214,89.314,77.519 +246215,90.197,76.247 +246216,91.121,74.977 +246217,87.085,78.785 +246218,87.97,77.532 +246219,88.896,76.28 +246220,89.864,75.029 +246221,85.699,78.778 +246222,86.626,77.545 +246223,87.595,76.312 +246224,88.606,75.081 +246225,84.314,78.771 +246226,85.282,77.558 +246227,86.293,76.345 +246228,87.348,75.134 +246229,82.929,78.763 +246230,83.939,77.57 +246231,84.991,76.378 +246232,86.089,75.189 +246233,81.546,78.754 +246234,82.596,77.582 +246235,83.689,76.412 +246236,84.829,75.244 +246237,80.163,78.744 +246238,81.253,77.594 +246239,82.387,76.445 +246240,83.568,75.3 +246241,78.781,78.733 +246242,79.91,77.605 +246243,81.084,76.479 +246244,82.306,75.358 +246245,77.4,78.721 +246246,78.567,77.616 +246247,79.781,76.514 +246248,81.044,75.416 +246249,76.02,78.709 +246250,77.225,77.627 +246251,78.478,76.549 +246252,79.78,75.475 +246253,74.641,78.695 +246254,75.884,77.638 +246255,77.174,76.584 +246256,78.515,75.535 +246257,73.263,78.681 +246258,74.542,77.648 +246259,75.87,76.619 +246260,77.249,75.596 +246261,71.886,78.666 +246262,73.201,77.658 +246263,74.565,76.655 +246264,75.983,75.658 +246265,70.51,78.65 +246266,71.86,77.668 +246267,73.26,76.691 +246268,74.715,75.721 +246269,69.135,78.633 +246270,70.519,77.677 +246271,71.955,76.727 +246272,73.446,75.784 +246273,67.762,78.615 +246274,69.179,77.687 +246275,70.65,76.763 +246276,72.176,75.848 +246277,66.389,78.597 +246278,67.84,77.695 +246279,69.344,76.8 +246280,70.904,75.913 +246281,65.018,78.578 +246282,66.5,77.704 +246283,68.037,76.837 +246284,69.632,75.979 +246285,63.647,78.558 +246286,65.161,77.713 +246287,66.73,76.874 +246288,68.358,76.045 +246289,62.278,78.538 +246290,63.822,77.721 +246291,65.423,76.912 +246292,67.083,76.113 +246293,60.91,78.517 +246294,62.484,77.729 +246295,64.115,76.95 +246296,65.807,76.181 +246297,59.544,78.495 +246298,61.146,77.737 +246299,62.807,76.988 +246300,64.529,76.249 +246301,58.178,78.473 +246302,59.809,77.745 +246303,61.498,77.026 +246304,63.25,76.318 +246305,56.814,78.45 +246306,58.472,77.752 +246307,60.189,77.064 +246308,61.97,76.388 +246309,55.451,78.426 +246310,57.135,77.759 +246311,58.879,77.103 +246312,60.688,76.458 +246313,54.09,78.402 +246314,55.799,77.767 +246315,57.569,77.141 +246316,59.405,76.529 +246317,52.729,78.378 +246318,54.463,77.773 +246319,56.259,77.18 +246320,58.121,76.601 +246321,51.371,78.353 +246322,53.128,77.78 +246323,54.947,77.219 +246324,56.835,76.672 +246325,50.013,78.327 +246326,51.793,77.787 +246327,53.636,77.259 +246328,55.548,76.745 +246329,48.657,78.302 +246330,50.458,77.793 +246331,52.324,77.298 +246332,54.259,76.818 +246333,47.302,78.275 +246334,49.124,77.8 +246335,51.011,77.337 +246336,52.968,76.891 +246337,45.949,78.248 +246338,47.791,77.806 +246339,49.698,77.377 +246340,51.677,76.964 +246341,44.597,78.221 +246342,46.458,77.812 +246343,48.384,77.417 +246344,50.383,77.038 +246345,43.246,78.194 +246346,45.125,77.818 +246347,47.07,77.457 +246348,49.088,77.113 +246349,41.897,78.166 +246350,43.793,77.824 +246351,45.756,77.497 +246352,47.792,77.187 +246353,40.55,78.138 +246354,42.461,77.83 +246355,44.44,77.537 +246356,46.494,77.262 +246357,39.204,78.11 +246358,41.13,77.836 +246359,43.125,77.577 +246360,45.194,77.337 +246361,37.859,78.081 +246362,39.799,77.841 +246363,41.808,77.618 +246364,43.893,77.413 +246365,36.516,78.053 +246366,38.469,77.847 +246367,40.491,77.658 +246368,42.59,77.488 +246369,35.174,78.024 +246370,37.139,77.853 +246371,39.174,77.698 +246372,41.286,77.564 +246373,33.834,77.995 +246374,35.81,77.858 +246375,37.856,77.739 +246376,39.98,77.64 +246377,32.495,77.966 +246378,34.481,77.864 +246379,36.538,77.779 +246380,38.672,77.716 +246381,31.158,77.936 +246382,33.153,77.869 +246383,35.219,77.82 +246384,37.363,77.792 +246385,29.823,77.907 +246386,31.825,77.875 +246387,33.899,77.861 +246388,36.052,77.868 +246389,28.488,77.878 +246390,30.498,77.88 +246391,32.579,77.901 +246392,34.739,77.944 +246393,27.156,77.848 +246394,29.171,77.885 +246395,31.258,77.942 +246396,33.425,78.02 +246397,25.825,77.819 +246398,27.845,77.891 +246399,29.937,77.982 +246400,32.109,78.096 +246401,24.495,77.789 +246402,26.519,77.896 +246403,28.615,78.023 +246404,30.791,78.172 +246405,23.167,77.76 +246406,25.194,77.902 +246407,27.293,78.064 +246408,29.472,78.248 +246409,21.841,77.731 +246410,23.869,77.907 +246411,25.97,78.104 +246412,28.151,78.324 +246413,20.516,77.702 +246414,22.545,77.913 +246415,24.646,78.145 +246416,26.828,78.399 +246417,19.192,77.673 +246418,21.222,77.919 +246419,23.322,78.185 +246420,25.503,78.475 +246421,17.871,77.644 +246422,19.898,77.924 +246423,21.997,78.226 +246424,24.177,78.55 +246425,16.55,77.616 +246426,18.576,77.93 +246427,20.672,78.266 +246428,22.85,78.625 +246429,15.232,77.587 +246430,17.253,77.936 +246431,19.346,78.306 +246432,21.52,78.7 +246433,13.914,77.559 +246434,15.932,77.942 +246435,18.02,78.346 +246436,20.189,78.774 +246437,12.599,77.531 +246438,14.61,77.948 +246439,16.693,78.386 +246440,18.856,78.848 +246441,11.284,77.504 +246442,13.29,77.955 +246443,15.365,78.426 +246444,17.522,78.922 +246445,9.9716,77.477 +246446,11.969,77.961 +246447,14.037,78.466 +246448,16.186,78.995 +246449,8.6604,77.45 +246450,10.65,77.967 +246451,12.709,78.506 +246452,14.848,79.068 +246453,7.3507,77.424 +246454,9.3304,77.974 +246455,11.379,78.545 +246456,13.509,79.141 +246457,6.0425,77.398 +246458,8.0116,77.981 +246459,10.05,78.585 +246460,12.168,79.213 +246461,4.7358,77.372 +246462,6.6934,77.988 +246463,8.7195,78.624 +246464,10.825,79.284 +246465,3.4305,77.347 +246466,5.3756,77.995 +246467,7.3887,78.663 +246468,9.481,79.356 +246469,2.1267,77.323 +246470,4.0582,78.002 +246471,6.0574,78.702 +246472,8.1352,79.426 +246473,0.8244,77.299 +246474,2.7414,78.009 +246475,4.7255,78.741 +246476,6.7878,79.496 +246477,359.52,77.276 +246478,1.425,78.017 +246479,3.3931,78.78 +246480,5.4389,79.566 +246481,358.22,77.253 +246482,0.10907,78.025 +246483,2.0602,78.818 +246484,4.0884,79.634 +246485,356.93,77.23 +246486,358.79,78.033 +246487,0.72674,78.856 +246488,2.7363,79.702 +246489,355.63,77.209 +246490,357.48,78.041 +246491,359.39,78.894 +246492,1.3827,79.77 +246493,354.33,77.188 +246494,356.16,78.05 +246495,358.06,78.932 +246496,0.027663,79.837 +246497,353.04,77.168 +246498,354.85,78.059 +246499,356.72,78.97 +246500,358.67,79.903 +246501,351.75,77.148 +246502,353.54,78.068 +246503,355.39,79.007 +246504,357.31,79.968 +246505,350.46,77.129 +246506,352.22,78.077 +246507,354.05,79.044 +246508,355.95,80.033 +246509,349.17,77.111 +246510,350.91,78.086 +246511,352.72,79.081 +246512,354.59,80.0969 +246513,347.88,77.094 +246514,349.6,78.096 +246515,351.38,79.118 +246516,353.23,80.16 +246517,346.59,77.077 +246518,348.29,78.106 +246519,350.04,79.154 +246520,351.87,80.2223 +246521,345.3,77.061 +246522,346.97,78.116 +246523,348.7,79.19 +246524,350.5,80.2837 +246525,344.02,77.046 +246526,345.66,78.127 +246527,347.36,79.226 +246528,349.14,80.3443 +246529,342.74,77.032 +246530,344.35,78.138 +246531,346.03,79.261 +246532,347.77,80.404 +246533,341.45,77.019 +246534,343.04,78.149 +246535,344.69,79.296 +246536,346.4,80.4628 +246537,340.17,77.007 +246538,341.73,78.16 +246539,343.35,79.331 +246540,345.03,80.5207 +246541,338.89,76.996 +246542,340.42,78.172 +246543,342.01,79.366 +246544,343.66,80.5777 +246545,337.61,76.985 +246546,339.11,78.184 +246547,340.67,79.4 +246548,342.28,80.6337 +246549,336.34,76.976 +246550,337.8,78.197 +246551,339.33,79.434 +246552,340.91,80.6888 +246553,335.06,76.967 +246554,336.5,78.21 +246555,337.98,79.468 +246556,339.53,80.7429 +246557,333.78,76.96 +246558,335.19,78.223 +246559,336.64,79.501 +246560,338.16,80.796 +246561,332.51,76.953 +246562,333.88,78.236 +246563,335.3,79.534 +246564,336.78,80.848 +246565,331.24,76.948 +246566,332.57,78.25 +246567,333.96,79.567 +246568,335.4,80.8991 +246569,329.96,76.943 +246570,331.26,78.264 +246571,332.61,79.599 +246572,334.02,80.9491 +246573,328.69,76.94 +246574,329.96,78.279 +246575,331.27,79.631 +246576,332.64,80.998 +246577,327.42,76.938 +246578,328.65,78.294 +246579,329.93,79.663 +246580,331.26,81.0459 +246581,326.15,76.936 +246582,327.34,78.309 +246583,328.58,79.694 +246584,329.88,81.0927 +246585,324.88,76.936 +246586,326.04,78.324 +246587,327.24,79.725 +246588,328.49,81.1384 +246589,323.62,76.937 +246590,324.73,78.34 +246591,325.9,79.756 +246592,327.11,81.183 +246593,322.35,76.94 +246594,323.43,78.357 +246595,324.55,79.786 +246596,325.72,81.2265 +246597,321.08,76.943 +246598,322.12,78.374 +246599,323.21,79.816 +246600,324.34,81.2688 +246601,319.82,76.947 +246602,320.82,78.391 +246603,321.86,79.845 +246604,322.95,81.3101 +246605,318.55,76.953 +246606,319.51,78.408 +246607,320.51,79.874 +246608,321.56,81.3501 +246609,317.29,76.96 +246610,318.21,78.426 +246611,319.17,79.903 +246612,320.18,81.389 +246613,316.03,76.968 +246614,316.9,78.445 +246615,317.82,79.931 +246616,318.79,81.4268 +246617,314.76,76.977 +246618,315.6,78.463 +246619,316.48,79.959 +246620,317.4,81.4634 +246621,313.5,76.987 +246622,314.29,78.482 +246623,315.13,79.986 +246624,316.01,81.4988 +246625,312.24,76.999 +246626,312.99,78.502 +246627,313.78,80.0135 +246628,314.62,81.533 +246629,310.98,77.012 +246630,311.69,78.522 +246631,312.43,80.0402 +246632,313.22,81.566 +246633,309.72,77.026 +246634,310.38,78.542 +246635,311.09,80.0666 +246636,311.83,81.5979 +246637,308.46,77.041 +246638,309.08,78.563 +246639,309.74,80.0925 +246640,310.44,81.6285 +246641,307.2,77.058 +246642,307.78,78.584 +246643,308.39,80.118 +246644,309.05,81.6579 +246645,305.94,77.075 +246646,306.47,78.606 +246647,307.04,80.1432 +246648,307.65,81.6862 +246649,304.68,77.094 +246650,305.17,78.628 +246651,305.7,80.1679 +246652,306.26,81.7132 +246653,303.42,77.115 +246654,303.87,78.651 +246655,304.35,80.1922 +246656,304.87,81.739 +246657,302.16,77.136 +246658,302.56,78.673 +246659,303,80.2161 +246660,303.47,81.7636 +246661,300.91,77.159 +246662,301.26,78.697 +246663,301.65,80.2397 +246664,302.08,81.787 +246665,299.65,77.183 +246666,299.96,78.72 +246667,300.3,80.2628 +246668,300.68,81.8092 +246669,298.39,77.208 +246670,298.66,78.745 +246671,298.95,80.2855 +246672,299.29,81.8302 +246673,297.13,77.235 +246674,297.35,78.769 +246675,297.6,80.3078 +246676,297.89,81.8499 +246677,295.88,77.263 +246678,296.05,78.794 +246679,296.26,80.3297 +246680,296.5,81.8685 +246681,294.62,77.292 +246682,294.75,78.819 +246683,294.91,80.3512 +246684,295.1,81.8858 +246685,293.36,77.322 +246686,293.44,78.845 +246687,293.56,80.3723 +246688,293.7,81.902 +246689,292.11,77.354 +246690,292.14,78.871 +246691,292.21,80.393 +246692,292.31,81.9169 +246693,290.85,77.386 +246694,290.84,78.898 +246695,290.86,80.4133 +246696,290.91,81.9307 +246697,289.59,77.42 +246698,289.54,78.925 +246699,289.51,80.4332 +246700,289.52,81.9433 +246701,288.34,77.456 +246702,288.23,78.953 +246703,288.16,80.4527 +246704,288.12,81.9547 +246705,287.08,77.492 +246706,286.93,78.981 +246707,286.81,80.4718 +246708,286.73,81.9649 +246709,285.82,77.53 +246710,285.63,79.009 +246711,285.46,80.4906 +246712,285.33,81.9739 +246713,284.57,77.569 +246714,284.32,79.038 +246715,284.11,80.5089 +246716,283.94,81.9818 +246717,283.31,77.609 +246718,283.02,79.067 +246719,282.77,80.5268 +246720,282.54,81.9885 +246721,282.05,77.651 +246722,281.72,79.096 +246723,281.42,80.5444 +246724,281.15,81.9941 +246725,280.79,77.693 +246726,280.42,79.126 +246727,280.07,80.5616 +246728,279.75,81.9985 +246729,279.54,77.737 +246730,279.11,79.156 +246731,278.72,80.5784 +246732,278.36,82.0018 +246733,278.28,77.782 +246734,277.81,79.187 +246735,277.37,80.5948 +246736,276.96,82.004 +246737,277.02,77.828 +246738,276.5,79.218 +246739,276.02,80.6109 +246740,275.57,82.0051 +246741,275.76,77.876 +246742,275.2,79.25 +246743,274.67,80.6266 +246744,274.18,82.0051 +246745,274.5,77.924 +246746,273.9,79.281 +246747,273.33,80.6419 +246748,272.79,82.004 +246749,273.24,77.974 +246750,272.59,79.314 +246751,271.98,80.6569 +246752,271.39,82.0019 +246753,271.98,78.024 +246754,271.29,79.346 +246755,270.63,80.6715 +246756,270,81.9986 +246757,270.72,78.076 +246758,269.98,79.379 +246759,269.28,80.6858 +246760,268.61,81.9944 +246761,269.45,78.129 +246762,268.68,79.412 +246763,267.93,80.6997 +246764,267.22,81.9891 +246765,268.19,78.183 +246766,267.37,79.446 +246767,266.59,80.7133 +246768,265.83,81.9828 +246769,266.93,78.238 +246770,266.07,79.48 +246771,265.24,80.7265 +246772,264.44,81.9755 +246773,265.67,78.294 +246774,264.76,79.514 +246775,263.89,80.7394 +246776,263.06,81.9672 +246777,264.4,78.351 +246778,263.46,79.549 +246779,262.54,80.752 +246780,261.67,81.9579 +246781,263.14,78.409 +246782,262.15,79.584 +246783,261.2,80.7643 +246784,260.28,81.9477 +246785,261.87,78.468 +246786,260.84,79.62 +246787,259.85,80.7763 +246788,258.9,81.9365 +246789,260.6,78.528 +246790,259.54,79.655 +246791,258.51,80.7879 +246792,257.51,81.9244 +246793,259.34,78.589 +246794,258.23,79.691 +246795,257.16,80.7993 +246796,256.13,81.9115 +246797,258.07,78.651 +246798,256.92,79.728 +246799,255.81,80.8103 +246800,254.74,81.8976 +246801,256.8,78.714 +246802,255.61,79.764 +246803,254.47,80.8211 +246804,253.36,81.8829 +246805,255.53,78.778 +246806,254.31,79.801 +246807,253.12,80.8316 +246808,251.98,81.8674 +246809,254.26,78.842 +246810,253,79.838 +246811,251.78,80.8418 +246812,250.6,81.851 +246813,252.98,78.908 +246814,251.69,79.876 +246815,250.43,80.8518 +246816,249.22,81.8338 +246817,251.71,78.974 +246818,250.38,79.914 +246819,249.09,80.8615 +246820,247.84,81.8158 +246821,250.44,79.041 +246822,249.07,79.952 +246823,247.75,80.8709 +246824,246.46,81.7971 +246825,249.16,79.109 +246826,247.76,79.99 +246827,246.4,80.8801 +246828,245.08,81.7776 +246829,247.88,79.178 +246830,246.45,80.0284 +246831,245.06,80.889 +246832,243.71,81.7575 +246833,246.61,79.247 +246834,245.14,80.0672 +246835,243.72,80.8977 +246836,242.33,81.7366 +246837,245.33,79.317 +246838,243.83,80.1062 +246839,242.37,80.9062 +246840,240.96,81.715 +246841,244.05,79.388 +246842,242.52,80.1455 +246843,241.03,80.9145 +246844,239.59,81.6928 +246845,242.77,79.459 +246846,241.2,80.1849 +246847,239.69,80.9226 +246848,238.22,81.67 +246849,241.48,79.531 +246850,239.89,80.2246 +246851,238.35,80.9305 +246852,236.85,81.6466 +246853,240.2,79.604 +246854,238.58,80.2645 +246855,237.01,80.9381 +246856,235.48,81.6226 +246857,238.92,79.677 +246858,237.27,80.3045 +246859,235.67,80.9456 +246860,234.11,81.598 +246861,237.63,79.751 +246862,235.95,80.3448 +246863,234.32,80.953 +246864,232.74,81.5729 +246865,236.34,79.825 +246866,234.64,80.3852 +246867,232.98,80.9601 +246868,231.38,81.5473 +246869,235.05,79.9 +246870,233.32,80.4258 +246871,231.64,80.9671 +246872,230.01,81.5213 +246873,233.76,79.975 +246874,232.01,80.4666 +246875,230.31,80.974 +246876,228.65,81.4947 +246877,232.47,80.0507 +246878,230.69,80.5075 +246879,228.97,80.9807 +246880,227.29,81.4678 +246881,231.18,80.1268 +246882,229.38,80.5486 +246883,227.63,80.9873 +246884,225.93,81.4404 +246885,229.89,80.2032 +246886,228.06,80.5898 +246887,226.29,80.9937 +246888,224.57,81.4127 +246889,228.59,80.2801 +246890,226.74,80.6311 +246891,224.95,81.0001 +246892,223.21,81.3846 +246893,227.29,80.3572 +246894,225.43,80.6725 +246895,223.62,81.0063 +246896,221.86,81.3562 +246897,226,80.4347 +246898,224.11,80.714 +246899,222.28,81.0124 +246900,220.5,81.3275 +246901,224.7,80.5124 +246902,222.79,80.7556 +246903,220.94,81.0185 +246904,219.15,81.2985 +246905,223.39,80.5903 +246906,221.47,80.7973 +246907,219.61,81.0245 +246908,217.8,81.2693 +246909,222.09,80.6685 +246910,220.15,80.8391 +246911,218.27,81.0304 +246912,216.45,81.2399 +246913,220.79,80.7468 +246914,218.83,80.8809 +246915,216.94,81.0363 +246916,215.1,81.2102 +246917,219.48,80.8253 +246918,217.51,80.9228 +246919,215.6,81.0421 +246920,213.75,81.1805 +246921,218.17,80.904 +246922,216.19,80.9647 +246923,214.27,81.0478 +246924,212.4,81.1505 +246925,216.87,80.9827 +246926,214.87,81.0067 +246927,212.93,81.0536 +246928,211.06,81.1205 +246929,215.55,81.0615 +246930,213.55,81.0487 +246931,211.6,81.0593 +246932,209.71,81.0904 +246933,214.24,81.1403 +246934,212.22,81.0907 +246935,210.27,81.065 +246936,208.37,81.0603 +246937,212.93,81.2191 +246938,210.9,81.1328 +246939,208.94,81.0707 +246940,207.03,81.0301 +246941,211.61,81.2979 +246942,209.58,81.1748 +246943,207.61,81.0764 +246944,205.69,81 +246945,210.3,81.3766 +246946,208.25,81.2168 +246947,206.27,81.0822 +246948,204.35,80.9698 +246949,208.98,81.4552 +246950,206.93,81.2588 +246951,204.94,81.0879 +246952,203.02,80.9398 +246953,207.66,81.5337 +246954,205.6,81.3007 +246955,203.61,81.0937 +246956,201.68,80.9098 +246957,206.34,81.6121 +246958,204.28,81.3426 +246959,202.28,81.0995 +246960,200.35,80.8799 +246961,205.01,81.6903 +246962,202.95,81.3845 +246963,200.95,81.1054 +246964,199.02,80.8502 +246965,203.69,81.7683 +246966,201.62,81.4263 +246967,199.63,81.1114 +246968,197.69,80.8207 +246969,202.36,81.8461 +246970,200.3,81.468 +246971,198.3,81.1174 +246972,196.36,80.7914 +246973,201.04,81.9235 +246974,198.97,81.5097 +246975,196.97,81.1236 +246976,195.03,80.7623 +246977,199.71,82.0007 +246978,197.64,81.5512 +246979,195.64,81.1298 +246980,193.71,80.7334 +246981,198.38,82.0776 +246982,196.31,81.5927 +246983,194.31,81.1361 +246984,192.38,80.7049 +246985,197.04,82.1541 +246986,194.98,81.634 +246987,192.99,81.1425 +246988,191.06,80.6766 +246989,195.71,82.2303 +246990,193.65,81.6752 +246991,191.66,81.1491 +246992,189.74,80.6487 +246993,194.37,82.306 +246994,192.32,81.7163 +246995,190.34,81.1557 +246996,188.42,80.6212 +246997,193.04,82.3813 +246998,190.99,81.7573 +246999,189.01,81.1626 +247000,187.1,80.594 +247001,191.7,82.4562 +247002,189.66,81.7981 +247003,187.69,81.1695 +247004,185.78,80.5673 +247005,190.36,82.5305 +247006,188.32,81.8388 +247007,186.36,81.1766 +247008,184.46,80.5411 +247009,189.01,82.6043 +247010,186.99,81.8792 +247011,185.04,81.1839 +247012,183.15,80.5153 +247013,187.67,82.6776 +247014,185.66,81.9196 +247015,183.72,81.1914 +247016,181.84,80.49 +247017,186.33,82.7503 +247018,184.32,81.9597 +247019,182.39,81.199 +247020,180.52,80.4652 +247021,184.98,82.8224 +247022,182.99,81.9996 +247023,181.07,81.2069 +247024,179.21,80.441 +247025,183.63,82.8939 +247026,181.65,82.0394 +247027,179.75,81.2149 +247028,177.91,80.4174 +247029,182.28,82.9648 +247030,180.32,82.0789 +247031,178.43,81.2232 +247032,176.6,80.3944 +247033,180.93,83.0349 +247034,178.98,82.1182 +247035,177.11,81.2316 +247036,175.29,80.372 +247037,179.58,83.1044 +247038,177.65,82.1573 +247039,175.79,81.2403 +247040,173.99,80.3503 +247041,178.22,83.1731 +247042,176.31,82.1962 +247043,174.47,81.2492 +247044,172.68,80.3292 +247045,176.87,83.2411 +247046,174.97,82.2348 +247047,173.15,81.2584 +247048,171.38,80.3089 +247049,175.51,83.3083 +247050,173.63,82.2732 +247051,171.83,81.2678 +247052,170.08,80.2893 +247053,174.15,83.3747 +247054,172.29,82.3113 +247055,170.51,81.2775 +247056,168.78,80.2704 +247057,172.79,83.4403 +247058,170.96,82.3491 +247059,169.19,81.2874 +247060,167.48,80.2523 +247061,171.43,83.5051 +247062,169.62,82.3867 +247063,167.87,81.2977 +247064,166.19,80.235 +247065,170.07,83.569 +247066,168.28,82.424 +247067,166.55,81.3082 +247068,164.89,80.2186 +247069,168.7,83.632 +247070,166.94,82.461 +247071,165.24,81.3189 +247072,163.6,80.2029 +247073,167.34,83.6941 +247074,165.59,82.4977 +247075,163.92,81.33 +247076,162.3,80.1882 +247077,165.97,83.7553 +247078,164.25,82.5341 +247079,162.6,81.3414 +247080,161.01,80.1743 +247081,164.6,83.8155 +247082,162.91,82.5702 +247083,161.29,81.3531 +247084,159.72,80.1613 +247085,163.23,83.8748 +247086,161.57,82.606 +247087,159.97,81.3651 +247088,158.43,80.1493 +247089,161.86,83.9331 +247090,160.23,82.6415 +247091,158.66,81.3774 +247092,157.14,80.1382 +247093,160.49,83.9904 +247094,158.88,82.6766 +247095,157.34,81.39 +247096,155.85,80.1281 +247097,159.12,84.0466 +247098,157.54,82.7114 +247099,156.03,81.403 +247100,154.57,80.119 +247101,157.74,84.1019 +247102,156.2,82.7459 +247103,154.71,81.4164 +247104,153.28,80.1108 +247105,156.37,84.156 +247106,154.85,82.78 +247107,153.4,81.43 +247108,152,80.1037 +247109,154.99,84.2091 +247110,153.51,82.8138 +247111,152.08,81.444 +247112,150.72,80.0977 +247113,153.61,84.2612 +247114,152.16,82.8472 +247115,150.77,81.4584 +247116,149.43,80.0927 +247117,152.23,84.3121 +247118,150.82,82.8803 +247119,149.46,81.4732 +247120,148.15,80.0887 +247121,150.85,84.3619 +247122,149.47,82.9129 +247123,148.14,81.4883 +247124,146.87,80.0859 +247125,149.47,84.4106 +247126,148.12,82.9452 +247127,146.83,81.5038 +247128,145.59,80.0841 +247129,148.09,84.4581 +247130,146.78,82.9772 +247131,145.52,81.5196 +247132,144.31,80.0835 +247133,146.71,84.5045 +247134,145.43,83.0087 +247135,144.21,81.5359 +247136,143.04,80.084 +247137,145.32,84.5497 +247138,144.08,83.0399 +247139,142.9,81.5525 +247140,141.76,80.0857 +247141,143.94,84.5938 +247142,142.73,83.0707 +247143,141.58,81.5695 +247144,140.48,80.0885 +247145,142.55,84.6366 +247146,141.39,83.1011 +247147,140.27,81.5869 +247148,139.21,80.0925 +247149,141.17,84.6783 +247150,140.04,83.1311 +247151,138.96,81.6047 +247152,137.93,80.0977 +247153,139.78,84.7187 +247154,138.69,83.1607 +247155,137.65,81.6229 +247156,136.66,80.1041 +247157,138.39,84.758 +247158,137.34,83.1899 +247159,136.34,81.6415 +247160,135.39,80.1117 +247161,137,84.796 +247162,135.99,83.2187 +247163,135.03,81.6605 +247164,134.12,80.1205 +247165,135.61,84.8328 +247166,134.64,83.247 +247167,133.72,81.68 +247168,132.84,80.1305 +247169,134.22,84.8684 +247170,133.29,83.275 +247171,132.41,81.6998 +247172,131.57,80.1418 +247173,132.83,84.9027 +247174,131.94,83.3026 +247175,131.1,81.7201 +247176,130.3,80.1543 +247177,131.44,84.9357 +247178,130.59,83.3297 +247179,129.79,81.7407 +247180,129.03,80.168 +247181,130.05,84.9675 +247182,129.24,83.3564 +247183,128.48,81.7618 +247184,127.76,80.1831 +247185,128.66,84.9981 +247186,127.89,83.3827 +247187,127.17,81.7833 +247188,126.5,80.1993 +247189,127.26,85.0274 +247190,126.54,83.4086 +247191,125.86,81.8053 +247192,125.23,80.2169 +247193,125.87,85.0554 +247194,125.19,83.4341 +247195,124.55,81.8277 +247196,123.96,80.2357 +247197,124.48,85.0822 +247198,123.84,83.4591 +247199,123.25,81.8504 +247200,122.69,80.2558 +247201,123.08,85.1077 +247202,122.49,83.4837 +247203,121.94,81.8737 +247204,121.42,80.2772 +247205,121.69,85.1319 +247206,121.14,83.5079 +247207,120.63,81.8973 +247208,120.16,80.2999 +247209,120.29,85.1549 +247210,119.78,83.5317 +247211,119.32,81.9214 +247212,118.89,80.3239 +247213,118.9,85.1766 +247214,118.43,83.555 +247215,118.01,81.9459 +247216,117.63,80.3491 +247217,117.5,85.197 +247218,117.08,83.578 +247219,116.7,81.9708 +247220,116.36,80.3756 +247221,116.1,85.2162 +247222,115.73,83.6004 +247223,115.39,81.9961 +247224,115.09,80.4035 +247225,114.71,85.2341 +247226,114.38,83.6225 +247227,114.09,82.0219 +247228,113.83,80.4326 +247229,113.31,85.2508 +247230,113.03,83.6442 +247231,112.78,82.0481 +247232,112.56,80.463 +247233,111.91,85.2662 +247234,111.67,83.6654 +247235,111.47,82.0748 +247236,111.3,80.4947 +247237,110.52,85.2803 +247238,110.32,83.6862 +247239,110.16,82.1018 +247240,110.03,80.5277 +247241,109.12,85.2932 +247242,108.97,83.7066 +247243,108.85,82.1293 +247244,108.77,80.5619 +247245,107.72,85.3049 +247246,107.62,83.7266 +247247,107.54,82.1572 +247248,107.5,80.5974 +247249,106.33,85.3153 +247250,106.26,83.7461 +247251,106.23,82.1855 +247252,106.24,80.6342 +247253,104.93,85.3245 +247254,104.91,83.7653 +247255,104.93,82.2143 +247256,104.97,80.6723 +247257,103.53,85.3325 +247258,103.56,83.784 +247259,103.62,82.2434 +247260,103.71,80.7116 +247261,102.14,85.3392 +247262,102.21,83.8023 +247263,102.31,82.273 +247264,102.44,80.7522 +247265,100.74,85.3448 +247266,100.85,83.8202 +247267,101,82.3029 +247268,101.18,80.794 +247269,99.342,85.3492 +247270,99.501,83.8377 +247271,99.691,82.3333 +247272,99.911,80.837 +247273,97.946,85.3524 +247274,98.149,83.8549 +247275,98.382,82.3641 +247276,98.645,80.8813 +247277,96.55,85.3544 +247278,96.797,83.8716 +247279,97.073,82.3953 +247280,97.379,80.9268 +247281,95.154,85.3553 +247282,95.444,83.8879 +247283,95.764,82.4269 +247284,96.113,80.9735 +247285,93.759,85.355 +247286,94.092,83.9038 +247287,94.455,82.4589 +247288,94.846,81.0214 +247289,92.364,85.3536 +247290,92.74,83.9194 +247291,93.145,82.4912 +247292,93.579,81.0705 +247293,90.969,85.351 +247294,91.388,83.9345 +247295,91.836,82.524 +247296,92.312,81.1207 +247297,89.574,85.3473 +247298,90.036,83.9493 +247299,90.526,82.5571 +247300,91.044,81.1721 +247301,88.18,85.3426 +247302,88.684,83.9638 +247303,89.216,82.5906 +247304,89.776,81.2247 +247305,86.787,85.3367 +247306,87.332,83.9778 +247307,87.906,82.6245 +247308,88.507,81.2783 +247309,85.394,85.3298 +247310,85.981,83.9915 +247311,86.595,82.6588 +247312,87.238,81.3331 +247313,84.001,85.3219 +247314,84.629,84.0048 +247315,85.285,82.6934 +247316,85.968,81.389 +247317,82.61,85.3129 +247318,83.278,84.0178 +247319,83.974,82.7283 +247320,84.698,81.446 +247321,81.218,85.3029 +247322,81.927,84.0304 +247323,82.663,82.7636 +247324,83.427,81.5041 +247325,79.827,85.2919 +247326,80.576,84.0427 +247327,81.352,82.7993 +247328,82.156,81.5632 +247329,78.437,85.2799 +247330,79.225,84.0547 +247331,80.04,82.8353 +247332,80.884,81.6233 +247333,77.048,85.2669 +247334,77.874,84.0663 +247335,78.729,82.8716 +247336,79.611,81.6845 +247337,75.659,85.253 +247338,76.524,84.0776 +247339,77.417,82.9083 +247340,78.337,81.7466 +247341,74.271,85.2382 +247342,75.174,84.0886 +247343,76.104,82.9452 +247344,77.063,81.8097 +247345,72.884,85.2224 +247346,73.824,84.0993 +247347,74.792,82.9825 +247348,75.788,81.8738 +247349,71.498,85.2058 +247350,72.474,84.1097 +247351,73.479,83.0201 +247352,74.512,81.9388 +247353,70.112,85.1883 +247354,71.125,84.1198 +247355,72.166,83.058 +247356,73.236,82.0048 +247357,68.727,85.1699 +247358,69.775,84.1296 +247359,70.852,83.0962 +247360,71.958,82.0716 +247361,67.343,85.1507 +247362,68.427,84.1391 +247363,69.539,83.1346 +247364,70.68,82.1393 +247365,65.96,85.1308 +247366,67.078,84.1483 +247367,68.224,83.1734 +247368,69.401,82.2078 +247369,64.578,85.11 +247370,65.729,84.1573 +247371,66.91,83.2124 +247372,68.12,82.2772 +247373,63.197,85.0885 +247374,64.381,84.166 +247375,65.595,83.2517 +247376,66.839,82.3473 +247377,61.817,85.0662 +247378,63.033,84.1744 +247379,64.28,83.2912 +247380,65.557,82.4183 +247381,60.438,85.0432 +247382,61.686,84.1827 +247383,62.964,83.3309 +247384,64.274,82.49 +247385,59.06,85.0196 +247386,60.338,84.1906 +247387,61.648,83.3709 +247388,62.99,82.5624 +247389,57.682,84.9952 +247390,58.992,84.1984 +247391,60.332,83.4112 +247392,61.704,82.6355 +247393,56.306,84.9703 +247394,57.645,84.2059 +247395,59.015,83.4516 +247396,60.418,82.7093 +247397,54.931,84.9447 +247398,56.299,84.2132 +247399,57.698,83.4923 +247400,59.131,82.7837 +247401,53.557,84.9185 +247402,54.953,84.2203 +247403,56.381,83.5331 +247404,57.842,82.8588 +247405,52.184,84.8918 +247406,53.607,84.2273 +247407,55.063,83.5742 +247408,56.553,82.9344 +247409,50.813,84.8645 +247410,52.262,84.234 +247411,53.744,83.6154 +247412,55.262,83.0106 +247413,49.442,84.8367 +247414,50.917,84.2406 +247415,52.426,83.6568 +247416,53.97,83.0874 +247417,48.073,84.8084 +247418,49.572,84.247 +247419,51.106,83.6984 +247420,52.676,83.1647 +247421,46.705,84.7796 +247422,48.228,84.2532 +247423,49.787,83.7401 +247424,51.382,83.2424 +247425,45.338,84.7504 +247426,46.884,84.2593 +247427,48.467,83.782 +247428,50.086,83.3207 +247429,43.972,84.7208 +247430,45.541,84.2652 +247431,47.146,83.824 +247432,48.789,83.3993 +247433,42.607,84.6909 +247434,44.198,84.271 +247435,45.825,83.8661 +247436,47.491,83.4783 +247437,41.244,84.6605 +247438,42.855,84.2767 +247439,44.504,83.9084 +247440,46.191,83.5577 +247441,39.882,84.6299 +247442,41.513,84.2823 +247443,43.182,83.9508 +247444,44.891,83.6375 +247445,38.521,84.5989 +247446,40.171,84.2878 +247447,41.859,83.9932 +247448,43.588,83.7175 +247449,37.162,84.5677 +247450,38.829,84.2931 +247451,40.536,84.0358 +247452,42.285,83.7978 +247453,35.804,84.5362 +247454,37.488,84.2984 +247455,39.213,84.0784 +247456,40.98,83.8784 +247457,34.447,84.5045 +247458,36.148,84.3036 +247459,37.889,84.1211 +247460,39.674,83.9592 +247461,33.091,84.4726 +247462,34.807,84.3088 +247463,36.565,84.1639 +247464,38.366,84.0401 +247465,31.737,84.4406 +247466,33.468,84.3139 +247467,35.24,84.2067 +247468,37.057,84.1213 +247469,30.384,84.4084 +247470,32.128,84.3189 +247471,33.915,84.2495 +247472,35.746,84.2025 +247473,29.033,84.3761 +247474,30.789,84.3239 +247475,32.589,84.2924 +247476,34.434,84.2839 +247477,27.682,84.3438 +247478,29.451,84.3289 +247479,31.263,84.3353 +247480,33.121,84.3653 +247481,26.334,84.3114 +247482,28.113,84.3339 +247483,29.936,84.3782 +247484,31.806,84.4467 +247485,24.986,84.279 +247486,26.775,84.3389 +247487,28.608,84.4211 +247488,30.49,84.5282 +247489,23.64,84.2466 +247490,25.438,84.3438 +247491,27.28,84.464 +247492,29.172,84.6096 +247493,22.295,84.2142 +247494,24.101,84.3488 +247495,25.952,84.5068 +247496,27.853,84.6909 +247497,20.952,84.1819 +247498,22.764,84.3538 +247499,24.623,84.5496 +247500,26.532,84.7722 +247501,19.61,84.1497 +247502,21.429,84.3588 +247503,23.294,84.5924 +247504,25.21,84.8533 +247505,18.27,84.1177 +247506,20.093,84.3639 +247507,21.964,84.6352 +247508,23.886,84.9343 +247509,16.931,84.0858 +247510,18.758,84.369 +247511,20.633,84.6778 +247512,22.561,85.0151 +247513,15.593,84.0541 +247514,17.423,84.3742 +247515,19.302,84.7204 +247516,21.235,85.0956 +247517,14.257,84.0226 +247518,16.089,84.3795 +247519,17.971,84.7629 +247520,19.906,85.1759 +247521,12.922,83.9913 +247522,14.755,84.3848 +247523,16.639,84.8054 +247524,18.577,85.256 +247525,11.588,83.9603 +247526,13.422,84.3902 +247527,15.306,84.8477 +247528,17.246,85.3357 +247529,10.256,83.9296 +247530,12.089,84.3958 +247531,13.973,84.8899 +247532,15.913,85.4151 +247533,8.9251,83.8992 +247534,10.757,84.4014 +247535,12.639,84.932 +247536,14.579,85.4941 +247537,7.5957,83.8692 +247538,9.425,84.4072 +247539,11.305,84.9739 +247540,13.243,85.5728 +247541,6.2677,83.8396 +247542,8.0935,84.413 +247543,9.9707,85.0157 +247544,11.906,85.651 +247545,4.941,83.8104 +247546,6.7624,84.4191 +247547,8.6355,85.0574 +247548,10.567,85.7287 +247549,3.6158,83.7816 +247550,5.4317,84.4252 +247551,7.2998,85.0989 +247552,9.2268,85.806 +247553,2.2919,83.7533 +247554,4.1015,84.4315 +247555,5.9636,85.1402 +247556,7.8851,85.8827 +247557,0.96934,83.7254 +247558,2.7717,84.438 +247559,4.6268,85.1813 +247560,6.5419,85.9589 +247561,359.65,83.6981 +247562,1.4424,84.4447 +247563,3.2896,85.2223 +247564,5.1972,86.0345 +247565,358.33,83.6714 +247566,0.11347,84.4515 +247567,1.9518,85.263 +247568,3.851,86.1095 +247569,357.01,83.6452 +247570,358.78,84.4586 +247571,0.61352,85.3036 +247572,2.5034,86.1839 +247573,355.69,83.6196 +247574,357.46,84.4658 +247575,359.27,85.3439 +247576,1.1542,86.2576 +247577,354.38,83.5946 +247578,356.13,84.4732 +247579,357.94,85.384 +247580,359.8,86.3306 +247581,353.06,83.5703 +247582,354.8,84.4809 +247583,356.6,85.4238 +247584,358.45,86.4029 +247585,351.75,83.5467 +247586,353.48,84.4888 +247587,355.26,85.4635 +247588,357.1,86.4745 +247589,350.44,83.5237 +247590,352.15,84.4969 +247591,353.91,85.5028 +247592,355.74,86.5453 +247593,349.13,83.5015 +247594,350.82,84.5053 +247595,352.57,85.5419 +247596,354.39,86.6154 +247597,347.82,83.48 +247598,349.5,84.5139 +247599,351.23,85.5808 +247600,353.03,86.6846 +247601,346.51,83.4593 +247602,348.17,84.5228 +247603,349.89,85.6193 +247604,351.67,86.7529 +247605,345.2,83.4394 +247606,346.85,84.5319 +247607,348.55,85.6576 +247608,350.31,86.8204 +247609,343.9,83.4204 +247610,345.52,84.5413 +247611,347.2,85.6956 +247612,348.95,86.8871 +247613,342.59,83.4021 +247614,344.2,84.551 +247615,345.86,85.7332 +247616,347.58,86.9528 +247617,341.29,83.3848 +247618,342.87,84.561 +247619,344.52,85.7706 +247620,346.22,87.0175 +247621,339.99,83.3683 +247622,341.55,84.5713 +247623,343.17,85.8076 +247624,344.85,87.0813 +247625,338.68,83.3527 +247626,340.23,84.5819 +247627,341.83,85.8444 +247628,343.49,87.1442 +247629,337.39,83.3381 +247630,338.91,84.5928 +247631,340.48,85.8807 +247632,342.12,87.206 +247633,336.09,83.3244 +247634,337.58,84.604 +247635,339.13,85.9168 +247636,340.75,87.2668 +247637,334.79,83.3117 +247638,336.26,84.6155 +247639,337.79,85.9525 +247640,339.38,87.3266 +247641,333.49,83.3 +247642,334.94,84.6274 +247643,336.44,85.9879 +247644,338.01,87.3853 +247645,332.2,83.2893 +247646,333.62,84.6396 +247647,335.09,86.0228 +247648,336.63,87.4429 +247649,330.9,83.2796 +247650,332.3,84.6522 +247651,333.75,86.0575 +247652,335.26,87.4995 +247653,329.61,83.271 +247654,330.98,84.6651 +247655,332.4,86.0917 +247656,333.88,87.5549 +247657,328.32,83.2634 +247658,329.66,84.6783 +247659,331.05,86.1256 +247660,332.51,87.6091 +247661,327.02,83.2569 +247662,328.34,84.6919 +247663,329.7,86.1591 +247664,331.13,87.6623 +247665,325.73,83.2515 +247666,327.02,84.7059 +247667,328.35,86.1922 +247668,329.75,87.7142 +247669,324.44,83.2473 +247670,325.7,84.7203 +247671,327,86.225 +247672,328.37,87.765 +247673,323.16,83.2441 +247674,324.38,84.735 +247675,325.65,86.2573 +247676,326.99,87.8146 +247677,321.87,83.2421 +247678,323.06,84.7501 +247679,324.3,86.2892 +247680,325.61,87.863 +247681,320.58,83.2413 +247682,321.74,84.7656 +247683,322.95,86.3207 +247684,324.22,87.9102 +247685,319.29,83.2417 +247686,320.42,84.7815 +247687,321.6,86.3518 +247688,322.84,87.9561 +247689,318.01,83.2432 +247690,319.1,84.7978 +247691,320.25,86.3825 +247692,321.45,88.0007 +247693,316.72,83.246 +247694,317.79,84.8144 +247695,318.9,86.4128 +247696,320.07,88.0442 +247697,315.44,83.2499 +247698,316.47,84.8315 +247699,317.55,86.4426 +247700,318.68,88.0863 +247701,314.16,83.2551 +247702,315.15,84.849 +247703,316.19,86.472 +247704,317.29,88.1272 +247705,312.87,83.2615 +247706,313.83,84.8669 +247707,314.84,86.501 +247708,315.9,88.1667 +247709,311.59,83.2692 +247710,312.52,84.8852 +247711,313.49,86.5295 +247712,314.51,88.205 +247713,310.31,83.2781 +247714,311.2,84.904 +247715,312.14,86.5576 +247716,313.12,88.242 +247717,309.03,83.2883 +247718,309.88,84.9231 +247719,310.78,86.5853 +247720,311.73,88.2777 +247721,307.75,83.2998 +247722,308.57,84.9427 +247723,309.43,86.6125 +247724,310.34,88.312 +247725,306.47,83.3125 +247726,307.25,84.9626 +247727,308.08,86.6393 +247728,308.95,88.345 +247729,305.19,83.3265 +247730,305.94,84.9831 +247731,306.72,86.6657 +247732,307.56,88.3767 +247733,303.91,83.3419 +247734,304.62,85.0039 +247735,305.37,86.6915 +247736,306.16,88.407 +247737,302.64,83.3585 +247738,303.3,85.0252 +247739,304.01,86.717 +247740,304.77,88.4361 +247741,301.36,83.3764 +247742,301.99,85.0469 +247743,302.66,86.742 +247744,303.38,88.4637 +247745,300.08,83.3957 +247746,300.67,85.069 +247747,301.3,86.7665 +247748,301.98,88.4901 +247749,298.81,83.4162 +247750,299.36,85.0916 +247751,299.95,86.7906 +247752,300.59,88.515 +247753,297.53,83.4381 +247754,298.04,85.1146 +247755,298.59,86.8142 +247756,299.19,88.5387 +247757,296.25,83.4613 +247758,296.73,85.138 +247759,297.24,86.8374 +247760,297.79,88.561 +247761,294.98,83.4858 +247762,295.41,85.1619 +247763,295.88,86.8601 +247764,296.4,88.5819 +247765,293.7,83.5117 +247766,294.1,85.1861 +247767,294.53,86.8823 +247768,295,88.6015 +247769,292.43,83.5389 +247770,292.78,85.2109 +247771,293.17,86.9041 +247772,293.6,88.6197 +247773,291.15,83.5673 +247774,291.46,85.236 +247775,291.81,86.9255 +247776,292.2,88.6367 +247777,289.88,83.5971 +247778,290.15,85.2616 +247779,290.46,86.9464 +247780,290.81,88.6522 +247781,288.6,83.6283 +247782,288.83,85.2877 +247783,289.1,86.9668 +247784,289.41,88.6665 +247785,287.33,83.6607 +247786,287.52,85.3141 +247787,287.75,86.9868 +247788,288.01,88.6794 +247789,286.05,83.6945 +247790,286.2,85.341 +247791,286.39,87.0063 +247792,286.61,88.691 +247793,284.78,83.7295 +247794,284.89,85.3683 +247795,285.03,87.0254 +247796,285.21,88.7013 +247797,283.5,83.7659 +247798,283.57,85.3961 +247799,283.68,87.0441 +247800,283.81,88.7102 +247801,282.23,83.8036 +247802,282.26,85.4242 +247803,282.32,87.0623 +247804,282.42,88.7179 +247805,280.96,83.8426 +247806,280.94,85.4528 +247807,280.96,87.08 +247808,281.02,88.7243 +247809,279.68,83.8828 +247810,279.63,85.4818 +247811,279.61,87.0973 +247812,279.62,88.7294 +247813,278.41,83.9243 +247814,278.31,85.5112 +247815,278.25,87.1142 +247816,278.22,88.7332 +247817,277.13,83.9671 +247818,277,85.5411 +247819,276.89,87.1307 +247820,276.82,88.7357 +247821,275.86,84.0112 +247822,275.68,85.5713 +247823,275.54,87.1467 +247824,275.42,88.737 +247825,274.58,84.0565 +247826,274.37,85.602 +247827,274.18,87.1623 +247828,274.02,88.737 +247829,273.31,84.1031 +247830,273.05,85.633 +247831,272.82,87.1775 +247832,272.63,88.7359 +247833,272.03,84.1509 +247834,271.74,85.6645 +247835,271.47,87.1922 +247836,271.23,88.7334 +247837,270.75,84.1999 +247838,270.42,85.6963 +247839,270.11,87.2065 +247840,269.83,88.7298 +247841,269.48,84.2501 +247842,269.1,85.7286 +247843,268.75,87.2205 +247844,268.43,88.725 +247845,268.2,84.3016 +247846,267.79,85.7612 +247847,267.4,87.234 +247848,267.04,88.719 +247849,266.92,84.3542 +247850,266.47,85.7942 +247851,266.04,87.2471 +247852,265.64,88.7119 +247853,265.65,84.4079 +247854,265.15,85.8276 +247855,264.69,87.2598 +247856,264.24,88.7036 +247857,264.37,84.4629 +247858,263.84,85.8614 +247859,263.33,87.2721 +247860,262.85,88.6941 +247861,263.09,84.5189 +247862,262.52,85.8955 +247863,261.97,87.2841 +247864,261.45,88.6836 +247865,261.81,84.5761 +247866,261.2,85.93 +247867,260.62,87.2956 +247868,260.06,88.6719 +247869,260.53,84.6344 +247870,259.89,85.9648 +247871,259.26,87.3068 +247872,258.66,88.6592 +247873,259.25,84.6938 +247874,258.57,86 +247875,257.91,87.3176 +247876,257.27,88.6454 +247877,257.97,84.7542 +247878,257.25,86.0355 +247879,256.55,87.328 +247880,255.88,88.6305 +247881,256.69,84.8158 +247882,255.93,86.0714 +247883,255.2,87.3381 +247884,254.48,88.6147 +247885,255.41,84.8783 +247886,254.61,86.1076 +247887,253.84,87.3479 +247888,253.09,88.5978 +247889,254.13,84.9418 +247890,253.3,86.1441 +247891,252.49,87.3573 +247892,251.7,88.5799 +247893,252.84,85.0064 +247894,251.98,86.1809 +247895,251.13,87.3663 +247896,250.31,88.5611 +247897,251.56,85.0719 +247898,250.66,86.2181 +247899,249.78,87.375 +247900,248.92,88.5413 +247901,250.28,85.1384 +247902,249.34,86.2555 +247903,248.42,87.3834 +247904,247.53,88.5206 +247905,248.99,85.2058 +247906,248.02,86.2933 +247907,247.07,87.3915 +247908,246.14,88.4991 +247909,247.7,85.2741 +247910,246.7,86.3313 +247911,245.72,87.3993 +247912,244.75,88.4766 +247913,246.42,85.3433 +247914,245.38,86.3696 +247915,244.36,87.4068 +247916,243.37,88.4533 +247917,245.13,85.4133 +247918,244.06,86.4082 +247919,243.01,87.4139 +247920,241.98,88.4291 +247921,243.84,85.4842 +247922,242.74,86.447 +247923,241.66,87.4208 +247924,240.59,88.4041 +247925,242.55,85.5559 +247926,241.42,86.4861 +247927,240.3,87.4275 +247928,239.21,88.3784 +247929,241.26,85.6284 +247930,240.09,86.5254 +247931,238.95,87.4338 +247932,237.83,88.3519 +247933,239.97,85.7017 +247934,238.77,86.565 +247935,237.6,87.4399 +247936,236.44,88.3247 +247937,238.68,85.7757 +247938,237.45,86.6048 +247939,236.25,87.4457 +247940,235.06,88.2967 +247941,237.38,85.8504 +247942,236.13,86.6449 +247943,234.89,87.4513 +247944,233.68,88.2681 +247945,236.09,85.9258 +247946,234.81,86.6851 +247947,233.54,87.4567 +247948,232.3,88.2388 +247949,234.79,86.0018 +247950,233.48,86.7256 +247951,232.19,87.4618 +247952,230.92,88.2089 +247953,233.5,86.0785 +247954,232.16,86.7662 +247955,230.84,87.4667 +247956,229.55,88.1783 +247957,232.2,86.1557 +247958,230.83,86.807 +247959,229.49,87.4714 +247960,228.17,88.1472 +247961,230.9,86.2336 +247962,229.51,86.848 +247963,228.14,87.4759 +247964,226.79,88.1156 +247965,229.6,86.312 +247966,228.18,86.8892 +247967,226.79,87.4802 +247968,225.42,88.0834 +247969,228.3,86.3909 +247970,226.86,86.9305 +247971,225.44,87.4843 +247972,224.05,88.0507 +247973,227,86.4703 +247974,225.53,86.972 +247975,224.09,87.4883 +247976,222.67,88.0175 +247977,225.7,86.5501 +247978,224.21,87.0136 +247979,222.74,87.4921 +247980,221.3,87.984 +247981,224.39,86.6304 +247982,222.88,87.0553 +247983,221.39,87.4957 +247984,219.93,87.95 +247985,223.09,86.711 +247986,221.55,87.0971 +247987,220.05,87.4992 +247988,218.56,87.9156 +247989,221.78,86.7921 +247990,220.23,87.1391 +247991,218.7,87.5026 +247992,217.2,87.8808 +247993,220.47,86.8734 +247994,218.9,87.1811 +247995,217.35,87.5058 +247996,215.83,87.8458 +247997,219.16,86.9551 +247998,217.57,87.2232 +247999,216,87.5089 +248000,214.46,87.8104 +248001,217.85,87.0371 +248002,216.24,87.2654 +248003,214.66,87.5119 +248004,213.1,87.7748 +248005,216.54,87.1193 +248006,214.91,87.3077 +248007,213.31,87.5149 +248008,211.74,87.7389 +248009,215.23,87.2016 +248010,213.58,87.35 +248011,211.96,87.5177 +248012,210.38,87.7028 +248013,213.91,87.2842 +248014,212.25,87.3924 +248015,210.62,87.5204 +248016,209.02,87.6665 +248017,212.6,87.3669 +248018,210.92,87.4348 +248019,209.27,87.5231 +248020,207.66,87.6301 +248021,211.28,87.4498 +248022,209.59,87.4772 +248023,207.93,87.5258 +248024,206.3,87.5936 +248025,209.96,87.5327 +248026,208.26,87.5197 +248027,206.58,87.5284 +248028,204.94,87.557 +248029,208.64,87.6157 +248030,206.93,87.5621 +248031,205.24,87.531 +248032,203.59,87.5203 +248033,207.32,87.6987 +248034,205.59,87.6045 +248035,203.9,87.5335 +248036,202.23,87.4835 +248037,206,87.7816 +248038,204.26,87.6469 +248039,202.55,87.536 +248040,200.88,87.4468 +248041,204.68,87.8646 +248042,202.93,87.6893 +248043,201.21,87.5385 +248044,199.53,87.4101 +248045,203.35,87.9474 +248046,201.59,87.7316 +248047,199.87,87.5411 +248048,198.18,87.3735 +248049,202.02,88.0302 +248050,200.26,87.7739 +248051,198.53,87.5436 +248052,196.83,87.3369 +248053,200.7,88.1127 +248054,198.92,87.8162 +248055,197.19,87.5462 +248056,195.48,87.3005 +248057,199.37,88.1952 +248058,197.59,87.8583 +248059,195.84,87.5488 +248060,194.14,87.2642 +248061,198.04,88.2774 +248062,196.25,87.9004 +248063,194.5,87.5514 +248064,192.79,87.228 +248065,196.7,88.3593 +248066,194.91,87.9424 +248067,193.16,87.5541 +248068,191.45,87.1921 +248069,195.37,88.441 +248070,193.58,87.9842 +248071,191.82,87.5569 +248072,190.11,87.1564 +248073,194.04,88.5224 +248074,192.24,88.026 +248075,190.48,87.5598 +248076,188.77,87.121 +248077,192.7,88.6035 +248078,190.9,88.0676 +248079,189.15,87.5627 +248080,187.43,87.0859 +248081,191.36,88.6841 +248082,189.56,88.1091 +248083,187.81,87.5657 +248084,186.09,87.0511 +248085,190.02,88.7644 +248086,188.22,88.1505 +248087,186.47,87.5689 +248088,184.75,87.0166 +248089,188.68,88.8443 +248090,186.88,88.1917 +248091,185.13,87.5721 +248092,183.42,86.9826 +248093,187.34,88.9236 +248094,185.54,88.2327 +248095,183.79,87.5755 +248096,182.08,86.9489 +248097,186,89.00253 +248098,184.2,88.2736 +248099,182.46,87.579 +248100,180.75,86.9157 +248101,184.65,89.08089 +248102,182.86,88.3142 +248103,181.12,87.5827 +248104,179.42,86.8829 +248105,183.3,89.1587 +248106,181.52,88.3547 +248107,179.78,87.5865 +248108,178.09,86.8506 +248109,181.96,89.23591 +248110,180.18,88.395 +248111,178.45,87.5905 +248112,176.76,86.8189 +248113,180.61,89.31251 +248114,178.84,88.435 +248115,177.11,87.5946 +248116,175.43,86.7877 +248117,179.26,89.38846 +248118,177.49,88.4749 +248119,175.78,87.5989 +248120,174.1,86.757 +248121,177.91,89.46374 +248122,176.15,88.5145 +248123,174.44,87.6035 +248124,172.78,86.727 +248125,176.55,89.53831 +248126,174.81,88.5538 +248127,173.11,87.6082 +248128,171.45,86.6976 +248129,175.2,89.61215 +248130,173.46,88.5929 +248131,171.78,87.6131 +248132,170.13,86.6688 +248133,173.84,89.68522 +248134,172.12,88.6317 +248135,170.44,87.6183 +248136,168.81,86.6408 +248137,172.48,89.7575 +248138,170.77,88.6703 +248139,169.11,87.6236 +248140,167.49,86.6134 +248141,171.13,89.82897 +248142,169.43,88.7086 +248143,167.78,87.6292 +248144,166.17,86.5868 +248145,169.77,89.89959 +248146,168.08,88.7465 +248147,166.44,87.6351 +248148,164.85,86.5609 +248149,168.4,89.969331 +248150,166.73,88.7842 +248151,165.11,87.6412 +248152,163.54,86.5358 +248153,167.04,90.038178 +248154,165.39,88.8216 +248155,163.78,87.6476 +248156,162.22,86.5115 +248157,165.68,90.1061 +248158,164.04,88.8587 +248159,162.45,87.6542 +248160,160.91,86.4881 +248161,164.31,90.17307 +248162,162.69,88.8954 +248163,161.12,87.6611 +248164,159.59,86.4655 +248165,162.95,90.23907 +248166,161.34,88.9318 +248167,159.79,87.6683 +248168,158.28,86.4438 +248169,161.58,90.30407 +248170,159.99,88.9679 +248171,158.46,87.6758 +248172,156.97,86.4229 +248173,160.21,90.36804 +248174,158.64,89.0036 +248175,157.13,87.6836 +248176,155.66,86.403 +248177,158.84,90.43097 +248178,157.29,89.03896 +248179,155.8,87.6916 +248180,154.35,86.3841 +248181,157.47,90.49283 +248182,155.94,89.07396 +248183,154.47,87.7 +248184,153.04,86.3661 +248185,156.1,90.5536 +248186,154.59,89.10859 +248187,153.14,87.7088 +248188,151.74,86.3491 +248189,154.72,90.61325 +248190,153.24,89.14283 +248191,151.81,87.7178 +248192,150.43,86.3331 +248193,153.35,90.67178 +248194,151.89,89.1767 +248195,150.49,87.7272 +248196,149.13,86.3181 +248197,151.97,90.72914 +248198,150.54,89.21017 +248199,149.16,87.7369 +248200,147.82,86.3042 +248201,150.59,90.78534 +248202,149.18,89.24325 +248203,147.83,87.747 +248204,146.52,86.2913 +248205,149.22,90.84034 +248206,147.83,89.27592 +248207,146.5,87.7574 +248208,145.22,86.2795 +248209,147.84,90.89413 +248210,146.48,89.30818 +248211,145.18,87.7682 +248212,143.92,86.2688 +248213,146.46,90.94669 +248214,145.13,89.34002 +248215,143.85,87.7793 +248216,142.62,86.2593 +248217,145.07,90.99801 +248218,143.77,89.37144 +248219,142.52,87.7908 +248220,141.32,86.2509 +248221,143.69,91.0481 +248222,142.42,89.40244 +248223,141.2,87.8027 +248224,140.02,86.2436 +248225,142.31,91.0968 +248226,141.06,89.433 +248227,139.87,87.815 +248228,138.73,86.2375 +248229,140.92,91.1443 +248230,139.71,89.46312 +248231,138.55,87.8276 +248232,137.43,86.2325 +248233,139.54,91.1905 +248234,138.35,89.4928 +248235,137.22,87.8406 +248236,136.13,86.2288 +248237,138.15,91.2353 +248238,137,89.52203 +248239,135.9,87.8541 +248240,134.84,86.2263 +248241,136.76,91.2789 +248242,135.64,89.55081 +248243,134.57,87.8679 +248244,133.54,86.225 +248245,135.38,91.321 +248246,134.28,89.57913 +248247,133.25,87.8821 +248248,132.25,86.2249 +248249,133.99,91.3618 +248250,132.93,89.60699 +248251,131.92,87.8968 +248252,130.96,86.2261 +248253,132.6,91.4013 +248254,131.57,89.63439 +248255,130.6,87.9118 +248256,129.67,86.2286 +248257,131.21,91.4393 +248258,130.21,89.66131 +248259,129.27,87.9273 +248260,128.38,86.2323 +248261,129.82,91.476 +248262,128.86,89.68777 +248263,127.95,87.9432 +248264,127.08,86.2373 +248265,128.42,91.5113 +248266,127.5,89.71375 +248267,126.63,87.9594 +248268,125.79,86.2436 +248269,127.03,91.5452 +248270,126.14,89.73926 +248271,125.3,87.9762 +248272,124.5,86.2512 +248273,125.64,91.5776 +248274,124.78,89.76429 +248275,123.98,87.9933 +248276,123.22,86.2601 +248277,124.24,91.6087 +248278,123.43,89.78883 +248279,122.66,88.0109 +248280,121.93,86.2704 +248281,122.85,91.6383 +248282,122.07,89.81289 +248283,121.33,88.0289 +248284,120.64,86.2819 +248285,121.45,91.6665 +248286,120.71,89.83646 +248287,120.01,88.0473 +248288,119.35,86.2948 +248289,120.06,91.6933 +248290,119.35,89.85955 +248291,118.69,88.0662 +248292,118.06,86.309 +248293,118.66,91.7186 +248294,117.99,89.88214 +248295,117.36,88.0855 +248296,116.78,86.3245 +248297,117.27,91.7425 +248298,116.63,89.904246 +248299,116.04,88.1052 +248300,115.49,86.3414 +248301,115.87,91.765 +248302,115.27,89.925859 +248303,114.72,88.1254 +248304,114.21,86.3597 +248305,114.47,91.786 +248306,113.91,89.946981 +248307,113.4,88.146 +248308,112.92,86.3793 +248309,113.07,91.8055 +248310,112.55,89.967609 +248311,112.07,88.167 +248312,111.63,86.4002 +248313,111.67,91.8237 +248314,111.19,89.987745 +248315,110.75,88.1885 +248316,110.35,86.4225 +248317,110.27,91.8404 +248318,109.83,90.0073883 +248319,109.43,88.2104 +248320,109.06,86.4462 +248321,108.88,91.8556 +248322,108.47,90.026539 +248323,108.11,88.2327 +248324,107.78,86.4712 +248325,107.48,91.8695 +248326,107.11,90.045198 +248327,106.78,88.2555 +248328,106.49,86.4976 +248329,106.08,91.8819 +248330,105.75,90.063365 +248331,105.46,88.2788 +248332,105.21,86.5253 +248333,104.68,91.8928 +248334,104.39,90.081043 +248335,104.14,88.3024 +248336,103.93,86.5544 +248337,103.28,91.9024 +248338,103.03,90.098231 +248339,102.82,88.3265 +248340,102.64,86.5848 +248341,101.88,91.9105 +248342,101.67,90.11493 +248343,101.5,88.351 +248344,101.36,86.6166 +248345,100.48,91.9173 +248346,100.31,90.13115 +248347,100.17,88.376 +248348,100.07,86.6497 +248349,99.076,91.9226 +248350,98.946,90.14688 +248351,98.852,88.4014 +248352,98.789,86.6841 +248353,97.675,91.9266 +248354,97.585,90.16213 +248355,97.53,88.4272 +248356,97.505,86.7199 +248357,96.275,91.9291 +248358,96.224,90.1769 +248359,96.207,88.4534 +248360,96.221,86.757 +248361,94.874,91.9303 +248362,94.863,90.1912 +248363,94.885,88.4801 +248364,94.936,86.7954 +248365,93.474,91.9301 +248366,93.502,90.20502 +248367,93.563,88.5071 +248368,93.652,86.8351 +248369,92.073,91.9286 +248370,92.141,90.21837 +248371,92.24,88.5346 +248372,92.367,86.8762 +248373,90.673,91.9257 +248374,90.78,90.23126 +248375,90.918,88.5625 +248376,91.083,86.9185 +248377,89.273,91.9215 +248378,89.419,90.24368 +248379,89.595,88.5908 +248380,89.798,86.9621 +248381,87.873,91.916 +248382,88.058,90.25564 +248383,88.272,88.6196 +248384,88.512,87.007 +248385,86.473,91.9092 +248386,86.698,90.26715 +248387,86.949,88.6487 +248388,87.227,87.0532 +248389,85.074,91.9011 +248390,85.337,90.2782 +248391,85.626,88.6782 +248392,85.941,87.1006 +248393,83.675,91.8917 +248394,83.976,90.28881 +248395,84.303,88.7081 +248396,84.655,87.1492 +248397,82.276,91.8811 +248398,82.615,90.29898 +248399,82.98,88.7384 +248400,83.369,87.1991 +248401,80.877,91.8692 +248402,81.254,90.30871 +248403,81.656,88.7691 +248404,82.082,87.2501 +248405,79.479,91.8561 +248406,79.894,90.31801 +248407,80.333,88.8001 +248408,80.795,87.3024 +248409,78.081,91.8418 +248410,78.533,90.32689 +248411,79.009,88.8315 +248412,79.507,87.3559 +248413,76.684,91.8263 +248414,77.173,90.33534 +248415,77.685,88.8633 +248416,78.219,87.4105 +248417,75.287,91.8096 +248418,75.813,90.34338 +248419,76.361,88.8955 +248420,76.93,87.4663 +248421,73.89,91.7918 +248422,74.453,90.35101 +248423,75.037,88.928 +248424,75.641,87.5232 +248425,72.494,91.7728 +248426,73.093,90.35823 +248427,73.712,88.9609 +248428,74.351,87.5812 +248429,71.099,91.7528 +248430,71.733,90.36506 +248431,72.387,88.994 +248432,73.061,87.6403 +248433,69.704,91.7316 +248434,70.373,90.3715 +248435,71.062,89.02758 +248436,71.77,87.7005 +248437,68.31,91.7094 +248438,69.013,90.37756 +248439,69.737,89.06145 +248440,70.479,87.7618 +248441,66.916,91.6861 +248442,67.654,90.38324 +248443,68.411,89.09563 +248444,69.187,87.8241 +248445,65.523,91.6618 +248446,66.295,90.38855 +248447,67.086,89.13013 +248448,67.894,87.8874 +248449,64.13,91.6365 +248450,64.936,90.3935 +248451,65.76,89.16494 +248452,66.601,87.9517 +248453,62.739,91.6102 +248454,63.577,90.39809 +248455,64.433,89.20005 +248456,65.307,88.0171 +248457,61.348,91.5829 +248458,62.218,90.40234 +248459,63.107,89.23545 +248460,64.012,88.0833 +248461,59.957,91.5547 +248462,60.86,90.40625 +248463,61.78,89.27114 +248464,62.716,88.1505 +248465,58.568,91.5257 +248466,59.502,90.40983 +248467,60.453,89.3071 +248468,61.42,88.2186 +248469,57.179,91.4957 +248470,58.144,90.41309 +248471,59.125,89.34333 +248472,60.122,88.2876 +248473,55.791,91.4648 +248474,56.786,90.41603 +248475,57.797,89.37982 +248476,58.824,88.3574 +248477,54.404,91.4332 +248478,55.429,90.41866 +248479,56.469,89.41657 +248480,57.525,88.4281 +248481,53.018,91.4007 +248482,54.072,90.421 +248483,55.141,89.45355 +248484,56.226,88.4996 +248485,51.633,91.3674 +248486,52.715,90.42304 +248487,53.812,89.49077 +248488,54.925,88.5719 +248489,50.248,91.3334 +248490,51.358,90.42481 +248491,52.483,89.52822 +248492,53.623,88.6449 +248493,48.865,91.2987 +248494,50.001,90.42631 +248495,51.154,89.56588 +248496,52.321,88.7187 +248497,47.482,91.2633 +248498,48.645,90.42754 +248499,49.824,89.60375 +248500,51.017,88.7932 +248501,46.101,91.2271 +248502,47.289,90.42852 +248503,48.494,89.64181 +248504,49.713,88.8683 +248505,44.72,91.1904 +248506,45.934,90.42925 +248507,47.163,89.68007 +248508,48.407,88.9441 +248509,43.341,91.153 +248510,44.579,90.42976 +248511,45.832,89.7185 +248512,47.1,89.02056 +248513,41.962,91.1151 +248514,43.224,90.43003 +248515,44.501,89.7571 +248516,45.793,89.09758 +248517,40.585,91.0766 +248518,41.869,90.43009 +248519,43.169,89.79586 +248520,44.484,89.17516 +248521,39.208,91.0375 +248522,40.515,90.42995 +248523,41.837,89.83477 +248524,43.175,89.25328 +248525,37.833,90.99798 +248526,39.161,90.42961 +248527,40.505,89.87382 +248528,41.864,89.3319 +248529,36.458,90.95797 +248530,37.807,90.42908 +248531,39.172,89.912991 +248532,40.552,89.41099 +248533,35.085,90.91752 +248534,36.454,90.42838 +248535,37.839,89.952285 +248536,39.239,89.49053 +248537,33.713,90.87667 +248538,35.101,90.42751 +248539,36.505,89.9916874 +248540,37.925,89.57048 +248541,32.342,90.83543 +248542,33.748,90.42648 +248543,35.171,90.031187 +248544,36.609,89.65081 +248545,30.972,90.79384 +248546,32.396,90.42531 +248547,33.836,90.070773 +248548,35.293,89.73149 +248549,29.604,90.75193 +248550,31.044,90.42401 +248551,32.501,90.11044 +248552,33.975,89.81249 +248553,28.236,90.70974 +248554,29.692,90.42258 +248555,31.166,90.15016 +248556,32.656,89.89378 +248557,26.87,90.66728 +248558,28.341,90.42103 +248559,29.83,90.18995 +248560,31.336,89.975315 +248561,25.504,90.6246 +248562,26.99,90.41938 +248563,28.494,90.22978 +248564,30.015,90.057076 +248565,24.141,90.58172 +248566,25.64,90.41763 +248567,27.157,90.26964 +248568,28.693,90.13903 +248569,22.778,90.53868 +248570,24.29,90.4158 +248571,25.82,90.30952 +248572,27.369,90.22113 +248573,21.416,90.4955 +248574,22.94,90.4139 +248575,24.483,90.34942 +248576,26.044,90.30336 +248577,20.056,90.45221 +248578,21.59,90.41194 +248579,23.145,90.38931 +248580,24.718,90.38568 +248581,18.697,90.40886 +248582,20.241,90.40992 +248583,21.806,90.4292 +248584,23.39,90.46806 +248585,17.339,90.36546 +248586,18.893,90.40786 +248587,20.467,90.46907 +248588,22.061,90.55047 +248589,15.982,90.32205 +248590,17.545,90.40577 +248591,19.128,90.5089 +248592,20.731,90.63286 +248593,14.627,90.27866 +248594,16.197,90.40366 +248595,17.788,90.54869 +248596,19.4,90.71521 +248597,13.273,90.23533 +248598,14.849,90.40154 +248599,16.448,90.58842 +248600,18.067,90.79748 +248601,11.92,90.19207 +248602,13.502,90.39942 +248603,15.107,90.62809 +248604,16.733,90.87965 +248605,10.568,90.14893 +248606,12.156,90.39731 +248607,13.766,90.66769 +248608,15.398,90.96167 +248609,9.2176,90.10593 +248610,10.809,90.39522 +248611,12.424,90.70719 +248612,14.062,91.0435 +248613,7.8684,90.063106 +248614,9.4634,90.39316 +248615,11.082,90.7466 +248616,12.724,91.1251 +248617,6.5205,90.020486 +248618,8.1178,90.39115 +248619,9.7391,90.7859 +248620,11.385,91.2065 +248621,5.1738,89.978102 +248622,6.7727,90.38918 +248623,8.3959,90.82508 +248624,10.044,91.2876 +248625,3.8284,89.935983 +248626,5.428,90.38728 +248627,7.0524,90.86412 +248628,8.7025,91.3684 +248629,2.4843,89.89416 +248630,4.0837,90.38546 +248631,5.7083,90.90303 +248632,7.3593,91.4489 +248633,1.1414,89.85266 +248634,2.7397,90.38371 +248635,4.3638,90.94178 +248636,6.0149,91.529 +248637,359.8,89.81152 +248638,1.3962,90.38206 +248639,3.0188,90.98037 +248640,4.6691,91.6086 +248641,358.46,89.77077 +248642,0.052992,90.38052 +248643,1.6733,91.0188 +248644,3.322,91.6879 +248645,357.12,89.73043 +248646,358.71,90.37909 +248647,0.32742,91.057 +248648,1.9736,91.7666 +248649,355.78,89.69053 +248650,357.37,90.37778 +248651,358.98,91.095 +248652,0.62391,91.8449 +248653,354.45,89.65111 +248654,356.03,90.3766 +248655,357.63,91.1329 +248656,359.27,91.9225 +248657,353.11,89.61218 +248658,354.68,90.37557 +248659,356.29,91.1705 +248660,357.92,91.9997 +248661,351.78,89.57379 +248662,353.34,90.37469 +248663,354.94,91.2079 +248664,356.57,92.0762 +248665,350.44,89.53596 +248666,352,90.37398 +248667,353.59,91.245 +248668,355.21,92.1521 +248669,349.11,89.49872 +248670,350.66,90.37344 +248671,352.24,91.2819 +248672,353.86,92.2273 +248673,347.78,89.46208 +248674,349.32,90.37308 +248675,350.89,91.3186 +248676,352.5,92.3018 +248677,346.45,89.4261 +248678,347.98,90.37291 +248679,349.54,91.3549 +248680,351.14,92.3756 +248681,345.12,89.39077 +248682,346.64,90.37294 +248683,348.19,91.391 +248684,349.78,92.4486 +248685,343.8,89.35615 +248686,345.3,90.37318 +248687,346.84,91.4268 +248688,348.42,92.5208 +248689,342.47,89.32225 +248690,343.96,90.37364 +248691,345.49,91.4624 +248692,347.06,92.5922 +248693,341.14,89.28909 +248694,342.63,90.37432 +248695,344.14,91.4976 +248696,345.69,92.6628 +248697,339.82,89.25671 +248698,341.29,90.37525 +248699,342.79,91.5325 +248700,344.33,92.7325 +248701,338.5,89.22513 +248702,339.95,90.37641 +248703,341.44,91.567 +248704,342.96,92.8012 +248705,337.18,89.19437 +248706,338.61,90.37784 +248707,340.08,91.6013 +248708,341.59,92.8691 +248709,335.86,89.16446 +248710,337.28,90.37952 +248711,338.73,91.6352 +248712,340.22,92.9359 +248713,334.54,89.13542 +248714,335.94,90.38147 +248715,337.38,91.6687 +248716,338.85,93.0018 +248717,333.22,89.10728 +248718,334.6,90.3837 +248719,336.02,91.7019 +248720,337.48,93.0667 +248721,331.9,89.08006 +248722,333.27,90.38622 +248723,334.67,91.7347 +248724,336.11,93.1305 +248725,330.59,89.05378 +248726,331.93,90.38903 +248727,333.31,91.7672 +248728,334.74,93.1932 +248729,329.27,89.02846 +248730,330.6,90.39214 +248731,331.96,91.7992 +248732,333.36,93.2549 +248733,327.96,89.00413 +248734,329.26,90.39556 +248735,330.6,91.8309 +248736,331.99,93.3154 +248737,326.64,88.9808 +248738,327.93,90.39929 +248739,329.25,91.8621 +248740,330.61,93.3748 +248741,325.33,88.9585 +248742,326.59,90.40335 +248743,327.89,91.893 +248744,329.23,93.4331 +248745,324.02,88.9373 +248746,325.26,90.40773 +248747,326.53,91.9234 +248748,327.85,93.4901 +248749,322.71,88.9171 +248750,323.93,90.41246 +248751,325.18,91.9535 +248752,326.47,93.5459 +248753,321.4,88.898 +248754,322.59,90.41752 +248755,323.82,91.9831 +248756,325.09,93.6005 +248757,320.09,88.88 +248758,321.26,90.42293 +248759,322.46,92.0122 +248760,323.71,93.6539 +248761,318.78,88.8632 +248762,319.93,90.4287 +248763,321.1,92.0409 +248764,322.33,93.706 +248765,317.48,88.8474 +248766,318.59,90.43483 +248767,319.75,92.0692 +248768,320.94,93.7567 +248769,316.17,88.8329 +248770,317.26,90.44133 +248771,318.39,92.097 +248772,319.56,93.8062 +248773,314.87,88.8195 +248774,315.93,90.4482 +248775,317.03,92.1244 +248776,318.17,93.8543 +248777,313.56,88.8073 +248778,314.6,90.45545 +248779,315.67,92.1512 +248780,316.78,93.9011 +248781,312.26,88.7963 +248782,313.27,90.46308 +248783,314.31,92.1777 +248784,315.4,93.9466 +248785,310.95,88.7866 +248786,311.93,90.47109 +248787,312.95,92.2036 +248788,314.01,93.9906 +248789,309.65,88.7781 +248790,310.6,90.4795 +248791,311.59,92.229 +248792,312.62,94.0333 +248793,308.35,88.7708 +248794,309.27,90.48831 +248795,310.23,92.254 +248796,311.23,94.0745 +248797,307.05,88.7648 +248798,307.94,90.49751 +248799,308.87,92.2785 +248800,309.84,94.1144 +248801,305.75,88.76 +248802,306.61,90.50713 +248803,307.51,92.3025 +248804,308.45,94.1527 +248805,304.45,88.7566 +248806,305.28,90.51715 +248807,306.14,92.326 +248808,307.05,94.1897 +248809,303.15,88.7544 +248810,303.95,90.52758 +248811,304.78,92.3489 +248812,305.66,94.2252 +248813,301.85,88.7536 +248814,302.62,90.53843 +248815,303.42,92.3714 +248816,304.27,94.2592 +248817,300.55,88.7541 +248818,301.29,90.5497 +248819,302.06,92.3934 +248820,302.87,94.2917 +248821,299.26,88.7559 +248822,299.96,90.56139 +248823,300.7,92.4148 +248824,301.48,94.3228 +248825,297.96,88.759 +248826,298.63,90.5735 +248827,299.33,92.4358 +248828,300.08,94.3523 +248829,296.66,88.7635 +248830,297.3,90.58604 +248831,297.97,92.4562 +248832,298.68,94.3804 +248833,295.37,88.7693 +248834,295.97,90.59901 +248835,296.61,92.4761 +248836,297.29,94.4069 +248837,294.07,88.7765 +248838,294.64,90.61241 +248839,295.25,92.4954 +248840,295.89,94.4319 +248841,292.78,88.7851 +248842,293.31,90.62625 +248843,293.88,92.5143 +248844,294.49,94.4554 +248845,291.48,88.795 +248846,291.98,90.64052 +248847,292.52,92.5326 +248848,293.09,94.4774 +248849,290.19,88.8063 +248850,290.65,90.65522 +248851,291.15,92.5504 +248852,291.69,94.4979 +248853,288.89,88.8189 +248854,289.32,90.67036 +248855,289.79,92.5677 +248856,290.29,94.5168 +248857,287.6,88.833 +248858,288,90.68594 +248859,288.43,92.5844 +248860,288.89,94.5342 +248861,286.3,88.8484 +248862,286.67,90.70196 +248863,287.06,92.6006 +248864,287.49,94.55 +248865,285.01,88.8652 +248866,285.34,90.71841 +248867,285.7,92.6163 +248868,286.09,94.5644 +248869,283.72,88.8834 +248870,284.01,90.7353 +248871,284.33,92.6314 +248872,284.69,94.5772 +248873,282.42,88.903 +248874,282.68,90.75263 +248875,282.97,92.646 +248876,283.29,94.5884 +248877,281.13,88.9239 +248878,281.35,90.7704 +248879,281.6,92.6601 +248880,281.89,94.5981 +248881,279.84,88.9463 +248882,280.02,90.78861 +248883,280.24,92.6736 +248884,280.49,94.6064 +248885,278.54,88.97 +248886,278.7,90.80725 +248887,278.88,92.6867 +248888,279.09,94.6131 +248889,277.25,88.9951 +248890,277.37,90.82633 +248891,277.51,92.6991 +248892,277.69,94.6182 +248893,275.96,89.02157 +248894,276.04,90.84584 +248895,276.15,92.7111 +248896,276.28,94.6219 +248897,274.66,89.04941 +248898,274.71,90.86578 +248899,274.78,92.7225 +248900,274.88,94.6241 +248901,273.37,89.07862 +248902,273.38,90.88616 +248903,273.42,92.7335 +248904,273.48,94.6247 +248905,272.08,89.10919 +248906,272.05,90.90696 +248907,272.05,92.7439 +248908,272.08,94.6239 +248909,270.78,89.14111 +248910,270.72,90.92818 +248911,270.69,92.7537 +248912,270.68,94.6216 +248913,269.49,89.17438 +248914,269.39,90.94983 +248915,269.32,92.7631 +248916,269.28,94.6179 +248917,268.2,89.20899 +248918,268.06,90.9719 +248919,267.96,92.772 +248920,267.87,94.6126 +248921,266.9,89.24494 +248922,266.74,90.99439 +248923,266.59,92.7803 +248924,266.47,94.606 +248925,265.61,89.2822 +248926,265.41,91.0173 +248927,265.23,92.7882 +248928,265.07,94.5979 +248929,264.32,89.32078 +248930,264.08,91.0406 +248931,263.86,92.7955 +248932,263.67,94.5883 +248933,263.02,89.36066 +248934,262.75,91.0643 +248935,262.5,92.8023 +248936,262.27,94.5774 +248937,261.73,89.40183 +248938,261.42,91.0884 +248939,261.13,92.8087 +248940,260.87,94.5651 +248941,260.43,89.44429 +248942,260.09,91.113 +248943,259.77,92.8145 +248944,259.47,94.5514 +248945,259.14,89.48801 +248946,258.76,91.1379 +248947,258.4,92.8199 +248948,258.07,94.5363 +248949,257.84,89.53299 +248950,257.43,91.1632 +248951,257.04,92.8248 +248952,256.67,94.5199 +248953,256.54,89.57921 +248954,256.1,91.1889 +248955,255.67,92.8292 +248956,255.27,94.5021 +248957,255.25,89.62666 +248958,254.77,91.2149 +248959,254.31,92.8332 +248960,253.87,94.483 +248961,253.95,89.67532 +248962,253.44,91.2414 +248963,252.94,92.8367 +248964,252.47,94.4627 +248965,252.65,89.72517 +248966,252.11,91.2682 +248967,251.58,92.8397 +248968,251.07,94.441 +248969,251.36,89.77621 +248970,250.78,91.2953 +248971,250.22,92.8423 +248972,249.67,94.4181 +248973,250.06,89.82842 +248974,249.45,91.3228 +248975,248.85,92.8444 +248976,248.27,94.394 +248977,248.76,89.88177 +248978,248.12,91.3507 +248979,247.49,92.8461 +248980,246.88,94.3686 +248981,247.46,89.936244 +248982,246.78,91.3789 +248983,246.12,92.8473 +248984,245.48,94.3421 +248985,246.16,89.9918327 +248986,245.45,91.4075 +248987,244.76,92.8482 +248988,244.08,94.3143 +248989,244.86,90.048512 +248990,244.12,91.4364 +248991,243.4,92.8486 +248992,242.69,94.2855 +248993,243.56,90.10626 +248994,242.79,91.4656 +248995,242.03,92.8486 +248996,241.29,94.2555 +248997,242.25,90.16506 +248998,241.46,91.4951 +248999,240.67,92.8482 +249000,239.9,94.2243 +249001,240.95,90.22489 +249002,240.12,91.5249 +249003,239.31,92.8474 +249004,238.51,94.1922 +249005,239.65,90.28573 +249006,238.79,91.5551 +249007,237.95,92.8462 +249008,237.11,94.1589 +249009,238.34,90.34756 +249010,237.46,91.5855 +249011,236.58,92.8446 +249012,235.72,94.1246 +249013,237.04,90.41034 +249014,236.12,91.6162 +249015,235.22,92.8426 +249016,234.33,94.0893 +249017,235.73,90.47407 +249018,234.79,91.6472 +249019,233.86,92.8403 +249020,232.94,94.053 +249021,234.43,90.53871 +249022,233.46,91.6785 +249023,232.5,92.8377 +249024,231.55,94.0158 +249025,233.12,90.60425 +249026,232.12,91.71 +249027,231.14,92.8346 +249028,230.16,93.9777 +249029,231.81,90.67065 +249030,230.79,91.7418 +249031,229.78,92.8313 +249032,228.77,93.9386 +249033,230.5,90.73789 +249034,229.45,91.7738 +249035,228.41,92.8276 +249036,227.39,93.8987 +249037,229.19,90.80595 +249038,228.12,91.806 +249039,227.05,92.8236 +249040,226,93.8579 +249041,227.88,90.8748 +249042,226.78,91.8385 +249043,225.69,92.8192 +249044,224.62,93.8163 +249045,226.57,90.94442 +249046,225.45,91.8712 +249047,224.33,92.8146 +249048,223.23,93.7739 +249049,225.25,91.0148 +249050,224.11,91.9041 +249051,222.97,92.8097 +249052,221.85,93.7308 +249053,223.94,91.0858 +249054,222.77,91.9372 +249055,221.61,92.8045 +249056,220.46,93.6869 +249057,222.63,91.1576 +249058,221.44,91.9704 +249059,220.25,92.799 +249060,219.08,93.6423 +249061,221.31,91.2299 +249062,220.1,92.0039 +249063,218.9,92.7932 +249064,217.7,93.597 +249065,219.99,91.3029 +249066,218.76,92.0375 +249067,217.54,92.7872 +249068,216.32,93.5512 +249069,218.68,91.3766 +249070,217.42,92.0713 +249071,216.18,92.781 +249072,214.94,93.5047 +249073,217.36,91.4507 +249074,216.08,92.1052 +249075,214.82,92.7745 +249076,213.57,93.4576 +249077,216.04,91.5254 +249078,214.75,92.1393 +249079,213.46,92.7678 +249080,212.19,93.4099 +249081,214.72,91.6006 +249082,213.41,92.1735 +249083,212.11,92.7608 +249084,210.81,93.3618 +249085,213.39,91.6763 +249086,212.07,92.2078 +249087,210.75,92.7537 +249088,209.44,93.3131 +249089,212.07,91.7524 +249090,210.73,92.2422 +249091,209.39,92.7464 +249092,208.07,93.264 +249093,210.75,91.8289 +249094,209.39,92.2767 +249095,208.04,92.7389 +249096,206.69,93.2145 +249097,209.42,91.9058 +249098,208.05,92.3113 +249099,206.68,92.7312 +249100,205.32,93.1646 +249101,208.09,91.9831 +249102,206.71,92.346 +249103,205.32,92.7233 +249104,203.95,93.1143 +249105,206.77,92.0607 +249106,205.36,92.3807 +249107,203.97,92.7154 +249108,202.58,93.0637 +249109,205.44,92.1385 +249110,204.02,92.4155 +249111,202.61,92.7072 +249112,201.22,93.0128 +249113,204.11,92.2166 +249114,202.68,92.4503 +249115,201.26,92.6989 +249116,199.85,92.9617 +249117,202.78,92.2949 +249118,201.34,92.4852 +249119,199.9,92.6906 +249120,198.48,92.9103 +249121,201.44,92.3734 +249122,199.99,92.52 +249123,198.55,92.6821 +249124,197.12,92.8587 +249125,200.11,92.452 +249126,198.65,92.5549 +249127,197.2,92.6735 +249128,195.76,92.8069 +249129,198.78,92.5308 +249130,197.31,92.5898 +249131,195.84,92.6648 +249132,194.39,92.755 +249133,197.44,92.6096 +249134,195.96,92.6246 +249135,194.49,92.656 +249136,193.03,92.703 +249137,196.1,92.6885 +249138,194.62,92.6595 +249139,193.14,92.6472 +249140,191.67,92.6509 +249141,194.76,92.7674 +249142,193.27,92.6942 +249143,191.79,92.6383 +249144,190.31,92.5988 +249145,193.43,92.8463 +249146,191.93,92.729 +249147,190.44,92.6294 +249148,188.96,92.5467 +249149,192.08,92.9251 +249150,190.58,92.7637 +249151,189.08,92.6204 +249152,187.6,92.4946 +249153,190.74,93.0039 +249154,189.23,92.7983 +249155,187.73,92.6115 +249156,186.25,92.4426 +249157,189.4,93.0825 +249158,187.89,92.8328 +249159,186.38,92.6025 +249160,184.89,92.3906 +249161,188.05,93.161 +249162,186.54,92.8672 +249163,185.03,92.5935 +249164,183.54,92.3388 +249165,186.71,93.2392 +249166,185.19,92.9016 +249167,183.68,92.5845 +249168,182.19,92.2871 +249169,185.36,93.3173 +249170,183.84,92.9358 +249171,182.33,92.5755 +249172,180.84,92.2357 +249173,184.01,93.3951 +249174,182.49,92.9699 +249175,180.98,92.5666 +249176,179.49,92.1844 +249177,182.66,93.4726 +249178,181.14,93.0038 +249179,179.64,92.5578 +249180,178.14,92.1334 +249181,181.31,93.5497 +249182,179.79,93.0376 +249183,178.29,92.5489 +249184,176.8,92.0827 +249185,179.96,93.6265 +249186,178.44,93.0712 +249187,176.94,92.5402 +249188,175.45,92.0322 +249189,178.61,93.703 +249190,177.09,93.1047 +249191,175.59,92.5315 +249192,174.11,91.9822 +249193,177.25,93.7789 +249194,175.74,93.138 +249195,174.25,92.5229 +249196,172.76,91.9325 +249197,175.9,93.8545 +249198,174.39,93.171 +249199,172.9,92.5144 +249200,171.42,91.8832 +249201,174.54,93.9295 +249202,173.04,93.2039 +249203,171.55,92.506 +249204,170.08,91.8343 +249205,173.18,94.004 +249206,171.69,93.2366 +249207,170.21,92.4977 +249208,168.74,91.7859 +249209,171.82,94.0779 +249210,170.33,93.269 +249211,168.86,92.4896 +249212,167.41,91.738 +249213,170.46,94.1512 +249214,168.98,93.3012 +249215,167.52,92.4816 +249216,166.07,91.6906 +249217,169.1,94.2239 +249218,167.63,93.3331 +249219,166.17,92.4737 +249220,164.73,91.6438 +249221,167.74,94.296 +249222,166.27,93.3648 +249223,164.83,92.466 +249224,163.4,91.5975 +249225,166.37,94.3673 +249226,164.92,93.3962 +249227,163.48,92.4584 +249228,162.06,91.5519 +249229,165.01,94.4379 +249230,163.56,93.4273 +249231,162.14,92.4511 +249232,160.73,91.5069 +249233,163.64,94.5078 +249234,162.21,93.4582 +249235,160.8,92.4439 +249236,159.4,91.4625 +249237,162.27,94.5768 +249238,160.85,93.4887 +249239,159.45,92.4369 +249240,158.07,91.4189 +249241,160.91,94.6451 +249242,159.5,93.5189 +249243,158.11,92.4302 +249244,156.74,91.376 +249245,159.53,94.7125 +249246,158.14,93.5488 +249247,156.77,92.4236 +249248,155.41,91.3338 +249249,158.16,94.779 +249250,156.78,93.5784 +249251,155.43,92.4173 +249252,154.09,91.2924 +249253,156.79,94.8446 +249254,155.43,93.6077 +249255,154.08,92.4112 +249256,152.76,91.2518 +249257,155.42,94.9092 +249258,154.07,93.6366 +249259,152.74,92.4053 +249260,151.44,91.212 +249261,154.04,94.9729 +249262,152.71,93.6651 +249263,151.4,92.3997 +249264,150.11,91.1731 +249265,152.67,95.0356 +249266,151.35,93.6932 +249267,150.06,92.3943 +249268,148.79,91.1351 +249269,151.29,95.0973 +249270,149.99,93.721 +249271,148.72,92.3892 +249272,147.47,91.0979 +249273,149.91,95.1579 +249274,148.63,93.7484 +249275,147.38,92.3844 +249276,146.15,91.0617 +249277,148.53,95.2174 +249278,147.28,93.7754 +249279,146.04,92.3799 +249280,144.83,91.0264 +249281,147.15,95.2758 +249282,145.92,93.8021 +249283,144.7,92.3757 +249284,143.51,90.99211 +249285,145.77,95.3331 +249286,144.56,93.8283 +249287,143.36,92.3717 +249288,142.19,90.9588 +249289,144.39,95.3892 +249290,143.19,93.854 +249291,142.02,92.3681 +249292,140.87,90.92651 +249293,143.01,95.4441 +249294,141.83,93.8794 +249295,140.68,92.3648 +249296,139.56,90.89525 +249297,141.63,95.4978 +249298,140.47,93.9043 +249299,139.35,92.3618 +249300,138.24,90.86504 +249301,140.24,95.5503 +249302,139.11,93.9288 +249303,138.01,92.3591 +249304,136.93,90.83591 +249305,138.85,95.6015 +249306,137.75,93.9528 +249307,136.67,92.3568 +249308,135.61,90.80788 +249309,137.47,95.6515 +249310,136.39,93.9764 +249311,135.33,92.3548 +249312,134.3,90.78097 +249313,136.08,95.7001 +249314,135.03,93.9995 +249315,134,92.3532 +249316,132.99,90.75519 +249317,134.69,95.7474 +249318,133.66,94.0221 +249319,132.66,92.3519 +249320,131.68,90.73057 +249321,133.3,95.7934 +249322,132.3,94.0443 +249323,131.32,92.3509 +249324,130.37,90.70711 +249325,131.91,95.838 +249326,130.94,94.066 +249327,129.98,92.3504 +249328,129.06,90.68484 +249329,130.52,95.8813 +249330,129.57,94.0872 +249331,128.65,92.3502 +249332,127.75,90.66378 +249333,129.13,95.9231 +249334,128.21,94.1079 +249335,127.31,92.3504 +249336,126.44,90.64393 +249337,127.74,95.9635 +249338,126.84,94.1281 +249339,125.98,92.351 +249340,125.13,90.62532 +249341,126.35,96.0025 +249342,125.48,94.1477 +249343,124.64,92.3519 +249344,123.82,90.60796 +249345,124.95,96.04 +249346,124.12,94.1669 +249347,123.31,92.3533 +249348,122.52,90.59186 +249349,123.56,96.076 +249350,122.75,94.1856 +249351,121.97,92.355 +249352,121.21,90.57704 +249353,122.16,96.1106 +249354,121.39,94.2037 +249355,120.63,92.3571 +249356,119.91,90.56351 +249357,120.77,96.1437 +249358,120.02,94.2214 +249359,119.3,92.3597 +249360,118.6,90.55128 +249361,119.37,96.1753 +249362,118.65,94.2384 +249363,117.96,92.3627 +249364,117.3,90.54036 +249365,117.97,96.2053 +249366,117.29,94.255 +249367,116.63,92.366 +249368,115.99,90.53076 +249369,116.58,96.2338 +249370,115.92,94.271 +249371,115.3,92.3698 +249372,114.69,90.5225 +249373,115.18,96.2608 +249374,114.56,94.2865 +249375,113.96,92.374 +249376,113.39,90.51558 +249377,113.78,96.2862 +249378,113.19,94.3015 +249379,112.63,92.3786 +249380,112.08,90.51002 +249381,112.38,96.31 +249382,111.82,94.3158 +249383,111.29,92.3837 +249384,110.78,90.50581 +249385,110.98,96.3323 +249386,110.46,94.3297 +249387,109.96,92.3892 +249388,109.48,90.50297 +249389,109.58,96.353 +249390,109.09,94.343 +249391,108.62,92.3951 +249392,108.18,90.5015 +249393,108.18,96.3722 +249394,107.72,94.3557 +249395,107.29,92.4014 +249396,106.88,90.50141 +249397,106.78,96.3897 +249398,106.36,94.3679 +249399,105.96,92.4082 +249400,105.58,90.50271 +249401,105.38,96.4056 +249402,104.99,94.3796 +249403,104.62,92.4154 +249404,104.28,90.5054 +249405,103.98,96.42 +249406,103.62,94.3906 +249407,103.29,92.423 +249408,102.98,90.50948 +249409,102.58,96.4327 +249410,102.26,94.4011 +249411,101.96,92.4311 +249412,101.68,90.51496 +249413,101.18,96.4439 +249414,100.89,94.4111 +249415,100.62,92.4396 +249416,100.38,90.52184 +249417,99.774,96.4534 +249418,99.521,94.4205 +249419,99.289,92.4486 +249420,99.076,90.53012 +249421,98.372,96.4614 +249422,98.153,94.4293 +249423,97.956,92.458 +249424,97.776,90.5398 +249425,96.969,96.4677 +249426,96.785,94.4376 +249427,96.622,92.4678 +249428,96.477,90.55088 +249429,95.567,96.4724 +249430,95.418,94.4453 +249431,95.289,92.478 +249432,95.177,90.56337 +249433,94.165,96.4756 +249434,94.05,94.4525 +249435,93.955,92.4888 +249436,93.878,90.57726 +249437,92.762,96.4771 +249438,92.682,94.4591 +249439,92.622,92.4999 +249440,92.578,90.59255 +249441,91.359,96.4771 +249442,91.314,94.4651 +249443,91.288,92.5115 +249444,91.279,90.60924 +249445,89.957,96.4754 +249446,89.947,94.4706 +249447,89.955,92.5235 +249448,89.979,90.62732 +249449,88.554,96.4722 +249450,88.579,94.4755 +249451,88.621,92.5359 +249452,88.68,90.6468 +249453,87.151,96.4674 +249454,87.211,94.4799 +249455,87.288,92.5488 +249456,87.38,90.66766 +249457,85.749,96.461 +249458,85.843,94.4837 +249459,85.954,92.5621 +249460,86.08,90.6899 +249461,84.346,96.4531 +249462,84.475,94.487 +249463,84.62,92.5758 +249464,84.78,90.71352 +249465,82.944,96.4437 +249466,83.107,94.4897 +249467,83.287,92.59 +249468,83.48,90.73851 +249469,81.542,96.4326 +249470,81.74,94.4919 +249471,81.953,92.6045 +249472,82.18,90.76486 +249473,80.14,96.4201 +249474,80.372,94.4935 +249475,80.619,92.6195 +249476,80.879,90.79257 +249477,78.738,96.4061 +249478,79.004,94.4946 +249479,79.285,92.6349 +249480,79.578,90.82162 +249481,77.337,96.3905 +249482,77.637,94.4952 +249483,77.951,92.6508 +249484,78.277,90.852 +249485,75.936,96.3734 +249486,76.269,94.4953 +249487,76.617,92.667 +249488,76.976,90.88371 +249489,74.535,96.3549 +249490,74.902,94.4948 +249491,75.282,92.6836 +249492,75.674,90.91674 +249493,73.134,96.3349 +249494,73.535,94.4938 +249495,73.948,92.7007 +249496,74.372,90.95108 +249497,71.734,96.3135 +249498,72.168,94.4922 +249499,72.613,92.7181 +249500,73.069,90.9867 +249501,70.334,96.2906 +249502,70.8,94.4902 +249503,71.278,92.7359 +249504,71.766,91.0236 +249505,68.935,96.2663 +249506,69.434,94.4877 +249507,69.943,92.7541 +249508,70.463,91.0618 +249509,67.536,96.2406 +249510,68.067,94.4846 +249511,68.608,92.7727 +249512,69.159,91.1012 +249513,66.137,96.2136 +249514,66.7,94.4811 +249515,67.273,92.7917 +249516,67.855,91.1419 +249517,64.739,96.1852 +249518,65.334,94.4771 +249519,65.937,92.811 +249520,66.55,91.1837 +249521,63.342,96.1554 +249522,63.967,94.4726 +249523,64.602,92.8307 +249524,65.245,91.2268 +249525,61.945,96.1243 +249526,62.601,94.4676 +249527,63.266,92.8508 +249528,63.939,91.2711 +249529,60.549,96.0919 +249530,61.235,94.4621 +249531,61.93,92.8712 +249532,62.632,91.3166 +249533,59.153,96.0583 +249534,59.869,94.4562 +249535,60.593,92.892 +249536,61.325,91.3632 +249537,57.758,96.0233 +249538,58.503,94.4498 +249539,59.257,92.9131 +249540,60.017,91.4109 +249541,56.363,95.9872 +249542,57.138,94.443 +249543,57.92,92.9345 +249544,58.709,91.4598 +249545,54.969,95.9498 +249546,55.773,94.4357 +249547,56.583,92.9563 +249548,57.4,91.5098 +249549,53.576,95.9113 +249550,54.408,94.428 +249551,55.246,92.9784 +249552,56.09,91.5608 +249553,52.184,95.8716 +249554,53.043,94.4198 +249555,53.908,93.0008 +249556,54.779,91.6129 +249557,50.792,95.8307 +249558,51.678,94.4113 +249559,52.571,93.0235 +249560,53.468,91.666 +249561,49.401,95.7888 +249562,50.314,94.4023 +249563,51.232,93.0465 +249564,52.156,91.7202 +249565,48.011,95.7458 +249566,48.95,94.3929 +249567,49.894,93.0698 +249568,50.843,91.7753 +249569,46.622,95.7017 +249570,47.586,94.3831 +249571,48.556,93.0934 +249572,49.53,91.8315 +249573,45.233,95.6565 +249574,46.222,94.373 +249575,47.217,93.1172 +249576,48.215,91.8885 +249577,43.845,95.6104 +249578,44.859,94.3624 +249579,45.878,93.1413 +249580,46.9,91.9465 +249581,42.459,95.5633 +249582,43.496,94.3515 +249583,44.538,93.1657 +249584,45.584,92.0054 +249585,41.073,95.5153 +249586,42.133,94.3402 +249587,43.198,93.1903 +249588,44.267,92.0651 +249589,39.688,95.4663 +249590,40.771,94.3286 +249591,41.858,93.2152 +249592,42.949,92.1257 +249593,38.304,95.4165 +249594,39.409,94.3166 +249595,40.518,93.2403 +249596,41.63,92.1871 +249597,36.92,95.3658 +249598,38.047,94.3043 +249599,39.177,93.2656 +249600,40.31,92.2493 +249601,35.538,95.3142 +249602,36.685,94.2917 +249603,37.836,93.2911 +249604,38.989,92.3123 +249605,34.157,95.2619 +249606,35.324,94.2788 +249607,36.495,93.3168 +249608,37.668,92.376 +249609,32.777,95.2088 +249610,33.963,94.2655 +249611,35.153,93.3427 +249612,36.345,92.4405 +249613,31.397,95.1549 +249614,32.602,94.252 +249615,33.811,93.3688 +249616,35.021,92.5056 +249617,30.019,95.1004 +249618,31.242,94.2382 +249619,32.468,93.3951 +249620,33.697,92.5714 +249621,28.642,95.0452 +249622,29.882,94.2241 +249623,31.125,93.4215 +249624,32.371,92.6378 +249625,27.266,94.9893 +249626,28.522,94.2097 +249627,29.782,93.4481 +249628,31.044,92.7048 +249629,25.891,94.9328 +249630,27.163,94.1951 +249631,28.439,93.4748 +249632,29.716,92.7723 +249633,24.517,94.8758 +249634,25.804,94.1803 +249635,27.095,93.5017 +249636,28.388,92.8404 +249637,23.144,94.8182 +249638,24.445,94.1652 +249639,25.751,93.5287 +249640,27.058,92.909 +249641,21.772,94.7601 +249642,23.087,94.1499 +249643,24.406,93.5557 +249644,25.727,92.9781 +249645,20.401,94.7015 +249646,21.729,94.1343 +249647,23.061,93.5829 +249648,24.394,93.0476 +249649,19.031,94.6425 +249650,20.372,94.1186 +249651,21.716,93.6102 +249652,23.061,93.1176 +249653,17.663,94.583 +249654,19.015,94.1027 +249655,20.37,93.6375 +249656,21.727,93.1879 +249657,16.295,94.5232 +249658,17.658,94.0866 +249659,19.024,93.665 +249660,20.391,93.2586 +249661,14.929,94.463 +249662,16.301,94.0704 +249663,17.677,93.6924 +249664,19.055,93.3296 +249665,13.564,94.4025 +249666,14.945,94.054 +249667,16.33,93.72 +249668,17.717,93.4008 +249669,12.2,94.3417 +249670,13.589,94.0374 +249671,14.983,93.7475 +249672,16.378,93.4724 +249673,10.837,94.2807 +249674,12.234,94.0208 +249675,13.635,93.7751 +249676,15.038,93.5441 +249677,9.4752,94.2195 +249678,10.879,94.0039 +249679,12.287,93.8027 +249680,13.697,93.6161 +249681,8.1147,94.1581 +249682,9.5245,93.987 +249683,10.938,93.8303 +249684,12.354,93.6881 +249685,6.7553,94.0965 +249686,8.1703,93.97 +249687,9.5893,93.8579 +249688,11.011,93.7603 +249689,5.3971,94.0348 +249690,6.8164,93.9529 +249691,8.2399,93.8854 +249692,9.666,93.8326 +249693,4.0401,93.9731 +249694,5.463,93.9357 +249695,6.8902,93.9129 +249696,8.32,93.905 +249697,2.6843,93.9113 +249698,4.1099,93.9185 +249699,5.54,93.9404 +249700,6.9729,93.9773 +249701,1.3297,93.8495 +249702,2.7572,93.9012 +249703,4.1894,93.9678 +249704,5.6246,94.0497 +249705,359.98,93.7877 +249706,1.4049,93.8838 +249707,2.8384,93.9952 +249708,4.2751,94.122 +249709,358.62,93.7259 +249710,0.053028,93.8665 +249711,1.487,94.0225 +249712,2.9244,94.1942 +249713,357.27,93.6643 +249714,358.7,93.8491 +249715,0.13523,94.0496 +249716,1.5725,94.2663 +249717,355.92,93.6028 +249718,357.35,93.8317 +249719,358.78,94.0767 +249720,0.2194,94.3382 +249721,354.57,93.5414 +249722,356,93.8142 +249723,357.43,94.1037 +249724,358.87,94.41 +249725,353.23,93.4802 +249726,354.65,93.7969 +249727,356.08,94.1305 +249728,357.51,94.4815 +249729,351.88,93.4192 +249730,353.3,93.7795 +249731,354.72,94.1572 +249732,356.15,94.5528 +249733,350.53,93.3585 +249734,351.95,93.7621 +249735,353.37,94.1838 +249736,354.8,94.6237 +249737,349.19,93.2981 +249738,350.6,93.7449 +249739,352.02,94.2102 +249740,353.44,94.6944 +249741,347.85,93.2379 +249742,349.25,93.7276 +249743,350.66,94.2364 +249744,352.08,94.7647 +249745,346.51,93.1782 +249746,347.9,93.7105 +249747,349.31,94.2625 +249748,350.71,94.8346 +249749,345.17,93.1188 +249750,346.55,93.6934 +249751,347.95,94.2883 +249752,349.35,94.9041 +249753,343.83,93.0598 +249754,345.21,93.6764 +249755,346.6,94.314 +249756,347.99,94.9731 +249757,342.49,93.0012 +249758,343.86,93.6595 +249759,345.24,94.3394 +249760,346.62,95.0416 +249761,341.15,92.9431 +249762,342.51,93.6427 +249763,343.88,94.3647 +249764,345.26,95.1096 +249765,339.81,92.8856 +249766,341.17,93.626 +249767,342.53,94.3896 +249768,343.89,95.177 +249769,338.48,92.8285 +249770,339.82,93.6095 +249771,341.17,94.4144 +249772,342.52,95.2439 +249773,337.15,92.772 +249774,338.47,93.5931 +249775,339.81,94.4388 +249776,341.15,95.3101 +249777,335.81,92.7161 +249778,337.13,93.5768 +249779,338.45,94.463 +249780,339.78,95.3756 +249781,334.48,92.6609 +249782,335.78,93.5608 +249783,337.09,94.487 +249784,338.41,95.4405 +249785,333.15,92.6062 +249786,334.44,93.5449 +249787,335.73,94.5106 +249788,337.04,95.5046 +249789,331.82,92.5523 +249790,333.09,93.5291 +249791,334.38,94.5339 +249792,335.66,95.5679 +249793,330.49,92.4991 +249794,331.75,93.5136 +249795,333.02,94.557 +249796,334.29,95.6305 +249797,329.16,92.4466 +249798,330.41,93.4983 +249799,331.66,94.5797 +249800,332.91,95.6923 +249801,327.84,92.3948 +249802,329.06,93.4831 +249803,330.3,94.602 +249804,331.54,95.7532 +249805,326.51,92.3438 +249806,327.72,93.4682 +249807,328.93,94.6241 +249808,330.16,95.8132 +249809,325.19,92.2937 +249810,326.38,93.4535 +249811,327.57,94.6458 +249812,328.78,95.8723 +249813,323.86,92.2444 +249814,325.03,93.4391 +249815,326.21,94.6671 +249816,327.4,95.9305 +249817,322.54,92.1959 +249818,323.69,93.4249 +249819,324.85,94.688 +249820,326.02,95.9876 +249821,321.22,92.1484 +249822,322.35,93.411 +249823,323.49,94.7086 +249824,324.64,96.0438 +249825,319.9,92.1017 +249826,321.01,93.3973 +249827,322.13,94.7288 +249828,323.25,96.099 +249829,318.58,92.056 +249830,319.67,93.3839 +249831,320.76,94.7486 +249832,321.87,96.1531 +249833,317.26,92.0113 +249834,318.33,93.3708 +249835,319.4,94.768 +249836,320.48,96.2061 +249837,315.94,91.9676 +249838,316.99,93.3579 +249839,318.04,94.787 +249840,319.1,96.258 +249841,314.62,91.9248 +249842,315.65,93.3454 +249843,316.67,94.8056 +249844,317.71,96.3087 +249845,313.31,91.8831 +249846,314.31,93.3332 +249847,315.31,94.8237 +249848,316.32,96.3583 +249849,311.99,91.8424 +249850,312.97,93.3212 +249851,313.95,94.8414 +249852,314.94,96.4067 +249853,310.68,91.8028 +249854,311.63,93.3096 +249855,312.58,94.8586 +249856,313.55,96.4539 +249857,309.36,91.7643 +249858,310.29,93.2984 +249859,311.22,94.8754 +249860,312.16,96.4998 +249861,308.05,91.7269 +249862,308.95,93.2874 +249863,309.85,94.8918 +249864,310.77,96.5445 +249865,306.74,91.6907 +249866,307.61,93.2768 +249867,308.49,94.9077 +249868,309.37,96.5879 +249869,305.43,91.6555 +249870,306.27,93.2666 +249871,307.12,94.9231 +249872,307.98,96.63 +249873,304.11,91.6216 +249874,304.93,93.2566 +249875,305.76,94.938 +249876,306.59,96.6707 +249877,302.8,91.5888 +249878,303.59,93.2471 +249879,304.39,94.9524 +249880,305.19,96.7101 +249881,301.49,91.5573 +249882,302.26,93.2379 +249883,303.02,94.9663 +249884,303.8,96.7481 +249885,300.18,91.5269 +249886,300.92,93.2291 +249887,301.66,94.9798 +249888,302.41,96.7847 +249889,298.88,91.4978 +249890,299.58,93.2207 +249891,300.29,94.9927 +249892,301.01,96.8199 +249893,297.57,91.47 +249894,298.24,93.2126 +249895,298.92,95.0051 +249896,299.61,96.8537 +249897,296.26,91.4434 +249898,296.91,93.2049 +249899,297.56,95.017 +249900,298.22,96.886 +249901,294.95,91.4181 +249902,295.57,93.1977 +249903,296.19,95.0284 +249904,296.82,96.9168 +249905,293.65,91.3941 +249906,294.23,93.1908 +249907,294.82,95.0393 +249908,295.42,96.9462 +249909,292.34,91.3713 +249910,292.89,93.1843 +249911,293.46,95.0496 +249912,294.02,96.9741 +249913,291.03,91.3499 +249914,291.56,93.1782 +249915,292.09,95.0594 +249916,292.62,97.0004 +249917,289.73,91.3298 +249918,290.22,93.1725 +249919,290.72,95.0686 +249920,291.22,97.0252 +249921,288.42,91.3111 +249922,288.89,93.1673 +249923,289.35,95.0773 +249924,289.82,97.0485 +249925,287.12,91.2937 +249926,287.55,93.1624 +249927,287.98,95.0855 +249928,288.42,97.0702 +249929,285.82,91.2776 +249930,286.21,93.158 +249931,286.62,95.0931 +249932,287.02,97.0904 +249933,284.51,91.263 +249934,284.88,93.154 +249935,285.25,95.1001 +249936,285.62,97.109 +249937,283.21,91.2497 +249938,283.54,93.1504 +249939,283.88,95.1066 +249940,284.22,97.126 +249941,281.9,91.2377 +249942,282.21,93.1472 +249943,282.51,95.1125 +249944,282.82,97.1415 +249945,280.6,91.2272 +249946,280.87,93.1445 +249947,281.14,95.1179 +249948,281.42,97.1553 +249949,279.3,91.218 +249950,279.53,93.1422 +249951,279.77,95.1227 +249952,280.02,97.1675 +249953,278,91.2103 +249954,278.2,93.1403 +249955,278.4,95.1269 +249956,278.61,97.1781 +249957,276.69,91.2039 +249958,276.86,93.1389 +249959,277.04,95.1306 +249960,277.21,97.1871 +249961,275.39,91.1989 +249962,275.53,93.1379 +249963,275.67,95.1337 +249964,275.81,97.1944 +249965,274.09,91.1954 +249966,274.19,93.1373 +249967,274.3,95.1362 +249968,274.41,97.2001 +249969,272.79,91.1932 +249970,272.86,93.1372 +249971,272.93,95.1381 +249972,273,97.2042 +249973,271.49,91.1925 +249974,271.52,93.1375 +249975,271.56,95.1395 +249976,271.6,97.2067 +249977,270.18,91.1932 +249978,270.19,93.1383 +249979,270.19,95.1403 +249980,270.2,97.2075 +249981,268.88,91.1953 +249982,268.85,93.1395 +249983,268.82,95.1405 +249984,268.8,97.2068 +249985,267.58,91.1987 +249986,267.52,93.1411 +249987,267.45,95.1402 +249988,267.39,97.2043 +249989,266.28,91.2037 +249990,266.18,93.1432 +249991,266.08,95.1393 +249992,265.99,97.2003 +249993,264.97,91.21 +249994,264.85,93.1456 +249995,264.72,95.1378 +249996,264.59,97.1946 +249997,263.67,91.2177 +249998,263.51,93.1486 +249999,263.35,95.1357 +250000,263.18,97.1873 +250001,262.37,91.2268 +250002,262.17,93.1519 +250003,261.98,95.1331 +250004,261.78,97.1783 +250005,261.07,91.2373 +250006,260.84,93.1557 +250007,260.61,95.1299 +250008,260.38,97.1678 +250009,259.76,91.2492 +250010,259.5,93.16 +250011,259.24,95.1262 +250012,258.98,97.1556 +250013,258.46,91.2625 +250014,258.17,93.1646 +250015,257.87,95.1219 +250016,257.58,97.1419 +250017,257.16,91.2772 +250018,256.83,93.1697 +250019,256.5,95.117 +250020,256.17,97.1265 +250021,255.85,91.2932 +250022,255.5,93.1752 +250023,255.14,95.1115 +250024,254.77,97.1096 +250025,254.55,91.3106 +250026,254.16,93.1812 +250027,253.77,95.1055 +250028,253.37,97.0911 +250029,253.25,91.3294 +250030,252.82,93.1875 +250031,252.4,95.099 +250032,251.97,97.071 +250033,251.94,91.3495 +250034,251.49,93.1943 +250035,251.03,95.0919 +250036,250.57,97.0494 +250037,250.64,91.371 +250038,250.15,93.2015 +250039,249.66,95.0843 +250040,249.17,97.0263 +250041,249.33,91.3938 +250042,248.81,93.209 +250043,248.29,95.0761 +250044,247.77,97.0016 +250045,248.03,91.4179 +250046,247.48,93.217 +250047,246.93,95.0674 +250048,246.37,96.9754 +250049,246.72,91.4433 +250050,246.14,93.2254 +250051,245.56,95.0581 +250052,244.97,96.9476 +250053,245.41,91.47 +250054,244.8,93.2342 +250055,244.19,95.0483 +250056,243.58,96.9185 +250057,244.11,91.498 +250058,243.47,93.2434 +250059,242.83,95.038 +250060,242.18,96.8878 +250061,242.8,91.5272 +250062,242.13,93.253 +250063,241.46,95.0272 +250064,240.78,96.8557 +250065,241.49,91.5578 +250066,240.79,93.2629 +250067,240.09,95.0159 +250068,239.38,96.8221 +250069,240.18,91.5895 +250070,239.45,93.2732 +250071,238.72,95.004 +250072,237.99,96.7872 +250073,238.87,91.6225 +250074,238.12,93.2839 +250075,237.36,94.9917 +250076,236.59,96.7508 +250077,237.56,91.6566 +250078,236.78,93.295 +250079,235.99,94.9789 +250080,235.2,96.7131 +250081,236.25,91.692 +250082,235.44,93.3064 +250083,234.63,94.9655 +250084,233.81,96.674 +250085,234.94,91.7286 +250086,234.1,93.3182 +250087,233.26,94.9517 +250088,232.41,96.6336 +250089,233.63,91.7663 +250090,232.76,93.3303 +250091,231.89,94.9374 +250092,231.02,96.5918 +250093,232.32,91.8051 +250094,231.42,93.3428 +250095,230.53,94.9227 +250096,229.63,96.5488 +250097,231,91.845 +250098,230.09,93.3556 +250099,229.16,94.9075 +250100,228.24,96.5045 +250101,229.69,91.8861 +250102,228.75,93.3687 +250103,227.8,94.8918 +250104,226.85,96.4589 +250105,228.37,91.9282 +250106,227.41,93.3822 +250107,226.43,94.8757 +250108,225.46,96.4122 +250109,227.06,91.9714 +250110,226.07,93.3959 +250111,225.07,94.8591 +250112,224.07,96.3642 +250113,225.74,92.0156 +250114,224.73,93.41 +250115,223.71,94.8421 +250116,222.68,96.3151 +250117,224.42,92.0609 +250118,223.39,93.4244 +250119,222.34,94.8247 +250120,221.29,96.2648 +250121,223.11,92.1071 +250122,222.05,93.439 +250123,220.98,94.8069 +250124,219.91,96.2134 +250125,221.79,92.1543 +250126,220.7,93.4539 +250127,219.62,94.7887 +250128,218.52,96.1609 +250129,220.47,92.2024 +250130,219.36,93.4692 +250131,218.25,94.7701 +250132,217.14,96.1074 +250133,219.15,92.2515 +250134,218.02,93.4846 +250135,216.89,94.751 +250136,215.76,96.0528 +250137,217.82,92.3014 +250138,216.68,93.5004 +250139,215.53,94.7316 +250140,214.37,95.9972 +250141,216.5,92.3523 +250142,215.34,93.5163 +250143,214.17,94.7119 +250144,212.99,95.9406 +250145,215.18,92.4039 +250146,213.99,93.5326 +250147,212.81,94.6918 +250148,211.61,95.8831 +250149,213.85,92.4564 +250150,212.65,93.549 +250151,211.44,94.6713 +250152,210.23,95.8247 +250153,212.53,92.5097 +250154,211.31,93.5657 +250155,210.08,94.6505 +250156,208.85,95.7654 +250157,211.2,92.5638 +250158,209.96,93.5826 +250159,208.72,94.6293 +250160,207.48,95.7052 +250161,209.87,92.6186 +250162,208.62,93.5996 +250163,207.36,94.6078 +250164,206.1,95.6442 +250165,208.54,92.6741 +250166,207.28,93.6169 +250167,206,94.5861 +250168,204.73,95.5824 +250169,207.21,92.7303 +250170,205.93,93.6344 +250171,204.64,94.564 +250172,203.35,95.5199 +250173,205.88,92.7871 +250174,204.59,93.652 +250175,203.29,94.5416 +250176,201.98,95.4566 +250177,204.55,92.8446 +250178,203.24,93.6698 +250179,201.93,94.5189 +250180,200.61,95.3926 +250181,203.22,92.9027 +250182,201.9,93.6878 +250183,200.57,94.496 +250184,199.24,95.328 +250185,201.88,92.9613 +250186,200.55,93.7059 +250187,199.21,94.4728 +250188,197.87,95.2627 +250189,200.55,93.0205 +250190,199.2,93.7241 +250191,197.85,94.4494 +250192,196.5,95.1968 +250193,199.21,93.0802 +250194,197.86,93.7424 +250195,196.5,94.4257 +250196,195.13,95.1303 +250197,197.88,93.1404 +250198,196.51,93.7609 +250199,195.14,94.4018 +250200,193.76,95.0634 +250201,196.54,93.201 +250202,195.16,93.7795 +250203,193.78,94.3777 +250204,192.4,94.9959 +250205,195.2,93.262 +250206,193.81,93.7981 +250207,192.43,94.3533 +250208,191.03,94.9279 +250209,193.86,93.3235 +250210,192.47,93.8168 +250211,191.07,94.3288 +250212,189.67,94.8595 +250213,192.52,93.3852 +250214,191.12,93.8357 +250215,189.72,94.3041 +250216,188.31,94.7907 +250217,191.17,93.4473 +250218,189.77,93.8545 +250219,188.36,94.2792 +250220,186.95,94.7216 +250221,189.83,93.5097 +250222,188.42,93.8734 +250223,187.01,94.2542 +250224,185.59,94.6521 +250225,188.48,93.5724 +250226,187.07,93.8924 +250227,185.65,94.229 +250228,184.23,94.5823 +250229,187.14,93.6353 +250230,185.72,93.9113 +250231,184.3,94.2036 +250232,182.87,94.5123 +250233,185.79,93.6983 +250234,184.37,93.9303 +250235,182.95,94.1782 +250236,181.52,94.442 +250237,184.44,93.7616 +250238,183.02,93.9493 +250239,181.59,94.1526 +250240,180.16,94.3716 +250241,183.09,93.8249 +250242,181.67,93.9683 +250243,180.24,94.1269 +250244,178.81,94.301 +250245,181.74,93.8884 +250246,180.32,93.9873 +250247,178.89,94.1012 +250248,177.46,94.2302 +250249,180.39,93.9519 +250250,178.96,94.0062 +250251,177.54,94.0753 +250252,176.11,94.1594 +250253,179.03,94.0154 +250254,177.61,94.0251 +250255,176.18,94.0494 +250256,174.76,94.0885 +250257,177.68,94.0789 +250258,176.26,94.0439 +250259,174.83,94.0234 +250260,173.41,94.0176 +250261,176.32,94.1424 +250262,174.9,94.0627 +250263,173.48,93.9974 +250264,172.06,93.9467 +250265,174.97,94.2058 +250266,173.55,94.0814 +250267,172.13,93.9713 +250268,170.71,93.8758 +250269,173.61,94.2691 +250270,172.2,94.1 +250271,170.78,93.9452 +250272,169.37,93.805 +250273,172.25,94.3323 +250274,170.84,94.1185 +250275,169.43,93.9191 +250276,168.03,93.7344 +250277,170.89,94.3953 +250278,169.49,94.1369 +250279,168.09,93.893 +250280,166.68,93.6639 +250281,169.53,94.4581 +250282,168.13,94.1552 +250283,166.74,93.8669 +250284,165.34,93.5935 +250285,168.16,94.5206 +250286,166.78,94.1733 +250287,165.39,93.8408 +250288,164,93.5234 +250289,166.8,94.5829 +250290,165.42,94.1913 +250291,164.04,93.8148 +250292,162.66,93.4535 +250293,165.43,94.6448 +250294,164.07,94.2092 +250295,162.69,93.7888 +250296,161.32,93.3839 +250297,164.07,94.7064 +250298,162.71,94.2268 +250299,161.35,93.7628 +250300,159.99,93.3146 +250301,162.7,94.7677 +250302,161.35,94.2443 +250303,160,93.7369 +250304,158.65,93.2457 +250305,161.33,94.8285 +250306,159.99,94.2617 +250307,158.66,93.7111 +250308,157.32,93.1771 +250309,159.96,94.8889 +250310,158.64,94.2788 +250311,157.31,93.6854 +250312,155.98,93.109 +250313,158.59,94.9488 +250314,157.28,94.2957 +250315,155.96,93.6597 +250316,154.65,93.0412 +250317,157.22,95.0082 +250318,155.92,94.3124 +250319,154.62,93.6342 +250320,153.32,92.974 +250321,155.85,95.067 +250322,154.56,94.3288 +250323,153.27,93.6088 +250324,151.99,92.9072 +250325,154.47,95.1253 +250326,153.2,94.3451 +250327,151.93,93.5836 +250328,150.66,92.841 +250329,153.1,95.183 +250330,151.84,94.361 +250331,150.59,93.5584 +250332,149.33,92.7753 +250333,151.72,95.24 +250334,150.48,94.3767 +250335,149.24,93.5334 +250336,148,92.7103 +250337,150.34,95.2964 +250338,149.12,94.3921 +250339,147.9,93.5086 +250340,146.68,92.6458 +250341,148.97,95.352 +250342,147.76,94.4073 +250343,146.56,93.484 +250344,145.35,92.582 +250345,147.59,95.4069 +250346,146.4,94.4221 +250347,145.21,93.4595 +250348,144.03,92.5189 +250349,146.21,95.4611 +250350,145.04,94.4367 +250351,143.87,93.4352 +250352,142.7,92.4565 +250353,144.82,95.5145 +250354,143.68,94.4509 +250355,142.53,93.4111 +250356,141.38,92.3948 +250357,143.44,95.567 +250358,142.32,94.4648 +250359,141.19,93.3873 +250360,140.06,92.3339 +250361,142.06,95.6187 +250362,140.95,94.4784 +250363,139.85,93.3636 +250364,138.74,92.2738 +250365,140.67,95.6694 +250366,139.59,94.4916 +250367,138.51,93.3402 +250368,137.42,92.2145 +250369,139.29,95.7193 +250370,138.23,94.5045 +250371,137.17,93.317 +250372,136.1,92.156 +250373,137.9,95.7682 +250374,136.87,94.517 +250375,135.83,93.294 +250376,134.78,92.0984 +250377,136.52,95.8162 +250378,135.5,94.5292 +250379,134.49,93.2713 +250380,133.47,92.0417 +250381,135.13,95.8631 +250382,134.14,94.5409 +250383,133.15,93.2489 +250384,132.15,91.9859 +250385,133.74,95.909 +250386,132.78,94.5523 +250387,131.81,93.2268 +250388,130.84,91.931 +250389,132.35,95.9539 +250390,131.41,94.5633 +250391,130.47,93.2049 +250392,129.52,91.8771 +250393,130.96,95.9977 +250394,130.05,94.5739 +250395,129.13,93.1833 +250396,128.21,91.8242 +250397,129.57,96.0403 +250398,128.68,94.5841 +250399,127.79,93.162 +250400,126.9,91.7724 +250401,128.18,96.0818 +250402,127.32,94.5938 +250403,126.45,93.141 +250404,125.58,91.7215 +250405,126.79,96.1222 +250406,125.95,94.6031 +250407,125.12,93.1203 +250408,124.27,91.6717 +250409,125.39,96.1614 +250410,124.59,94.612 +250411,123.78,93.1 +250412,122.96,91.623 +250413,124,96.1993 +250414,123.22,94.6204 +250415,122.44,93.0799 +250416,121.65,91.5753 +250417,122.61,96.236 +250418,121.86,94.6284 +250419,121.1,93.0602 +250420,120.34,91.5288 +250421,121.21,96.2715 +250422,120.49,94.6359 +250423,119.77,93.0409 +250424,119.04,91.4834 +250425,119.81,96.3057 +250426,119.13,94.643 +250427,118.43,93.0219 +250428,117.73,91.4392 +250429,118.42,96.3386 +250430,117.76,94.6495 +250431,117.09,93.0032 +250432,116.42,91.3961 +250433,117.02,96.3701 +250434,116.39,94.6556 +250435,115.76,92.9849 +250436,115.11,91.3543 +250437,115.62,96.4003 +250438,115.03,94.6613 +250439,114.42,92.9669 +250440,113.81,91.3136 +250441,114.23,96.4292 +250442,113.66,94.6664 +250443,113.09,92.9494 +250444,112.5,91.2741 +250445,112.83,96.4567 +250446,112.29,94.671 +250447,111.75,92.9322 +250448,111.2,91.2359 +250449,111.43,96.4827 +250450,110.93,94.6751 +250451,110.41,92.9154 +250452,109.89,91.199 +250453,110.03,96.5074 +250454,109.56,94.6788 +250455,109.08,92.8989 +250456,108.59,91.1633 +250457,108.63,96.5306 +250458,108.19,94.6819 +250459,107.74,92.8829 +250460,107.29,91.1288 +250461,107.23,96.5523 +250462,106.82,94.6844 +250463,106.41,92.8673 +250464,105.98,91.0957 +250465,105.83,96.5726 +250466,105.46,94.6865 +250467,105.07,92.852 +250468,104.68,91.0639 +250469,104.43,96.5914 +250470,104.09,94.688 +250471,103.74,92.8372 +250472,103.38,91.0334 +250473,103.03,96.6087 +250474,102.72,94.689 +250475,102.4,92.8228 +250476,102.08,91.0042 +250477,101.63,96.6245 +250478,101.35,94.6895 +250479,101.07,92.8087 +250480,100.77,90.97634 +250481,100.22,96.6387 +250482,99.985,94.6894 +250483,99.735,92.7951 +250484,99.473,90.94983 +250485,98.822,96.6515 +250486,98.617,94.6888 +250487,98.4,92.7819 +250488,98.172,90.92468 +250489,97.42,96.6626 +250490,97.249,94.6876 +250491,97.066,92.7692 +250492,96.871,90.9009 +250493,96.017,96.6723 +250494,95.881,94.6859 +250495,95.732,92.7568 +250496,95.57,90.87848 +250497,94.615,96.6803 +250498,94.513,94.6837 +250499,94.398,92.7449 +250500,94.269,90.85744 +250501,93.212,96.6868 +250502,93.145,94.6808 +250503,93.063,92.7335 +250504,92.969,90.83778 +250505,91.81,96.6917 +250506,91.777,94.6775 +250507,91.729,92.7224 +250508,91.668,90.81951 +250509,90.407,96.695 +250510,90.409,94.6735 +250511,90.395,92.7118 +250512,90.368,90.80263 +250513,89.005,96.6968 +250514,89.041,94.669 +250515,89.061,92.7016 +250516,89.068,90.78715 +250517,87.602,96.6969 +250518,87.673,94.664 +250519,87.727,92.6919 +250520,87.768,90.77307 +250521,86.199,96.6954 +250522,86.305,94.6584 +250523,86.394,92.6825 +250524,86.468,90.76039 +250525,84.797,96.6923 +250526,84.937,94.6522 +250527,85.06,92.6737 +250528,85.167,90.74912 +250529,83.394,96.6876 +250530,83.569,94.6455 +250531,83.726,92.6652 +250532,83.867,90.73925 +250533,81.992,96.6813 +250534,82.201,94.6382 +250535,82.392,92.6572 +250536,82.567,90.73078 +250537,80.59,96.6734 +250538,80.833,94.6303 +250539,81.058,92.6497 +250540,81.266,90.72373 +250541,79.188,96.6638 +250542,79.465,94.6219 +250543,79.724,92.6426 +250544,79.966,90.71807 +250545,77.786,96.6527 +250546,78.098,94.6129 +250547,78.39,92.6359 +250548,78.665,90.71383 +250549,76.385,96.6399 +250550,76.73,94.6033 +250551,77.056,92.6296 +250552,77.364,90.71098 +250553,74.984,96.6256 +250554,75.363,94.5932 +250555,75.721,92.6238 +250556,76.063,90.70953 +250557,73.583,96.6096 +250558,73.995,94.5825 +250559,74.387,92.6184 +250560,74.762,90.70947 +250561,72.182,96.5921 +250562,72.628,94.5713 +250563,73.053,92.6135 +250564,73.461,90.7108 +250565,70.782,96.5729 +250566,71.261,94.5595 +250567,71.719,92.609 +250568,72.159,90.71352 +250569,69.382,96.5522 +250570,69.894,94.5471 +250571,70.384,92.6049 +250572,70.857,90.71761 +250573,67.983,96.5299 +250574,68.527,94.5342 +250575,69.05,92.6012 +250576,69.554,90.72308 +250577,66.584,96.506 +250578,67.16,94.5208 +250579,67.715,92.598 +250580,68.251,90.72992 +250581,65.185,96.4805 +250582,65.794,94.5068 +250583,66.38,92.5952 +250584,66.948,90.73811 +250585,63.787,96.4535 +250586,64.427,94.4922 +250587,65.045,92.5928 +250588,65.644,90.74764 +250589,62.39,96.425 +250590,63.061,94.4772 +250591,63.71,92.5909 +250592,64.34,90.75852 +250593,60.993,96.3949 +250594,61.695,94.4615 +250595,62.375,92.5893 +250596,63.036,90.77073 +250597,59.596,96.3633 +250598,60.329,94.4454 +250599,61.039,92.5882 +250600,61.731,90.78426 +250601,58.201,96.3302 +250602,58.964,94.4287 +250603,59.704,92.5874 +250604,60.425,90.79909 +250605,56.806,96.2957 +250606,57.598,94.4115 +250607,58.368,92.5871 +250608,59.119,90.81522 +250609,55.411,96.2596 +250610,56.233,94.3938 +250611,57.032,92.5871 +250612,57.812,90.83264 +250613,54.017,96.2221 +250614,54.868,94.3755 +250615,55.696,92.5876 +250616,56.505,90.85132 +250617,52.624,96.1831 +250618,53.504,94.3568 +250619,54.36,92.5884 +250620,55.197,90.87126 +250621,51.232,96.1427 +250622,52.139,94.3376 +250623,53.024,92.5897 +250624,53.889,90.89244 +250625,49.84,96.1009 +250626,50.775,94.3178 +250627,51.687,92.5913 +250628,52.579,90.91485 +250629,48.449,96.0577 +250630,49.411,94.2976 +250631,50.35,92.5932 +250632,51.27,90.93848 +250633,47.059,96.0131 +250634,48.047,94.2768 +250635,49.013,92.5956 +250636,49.959,90.96329 +250637,45.67,95.9672 +250638,46.684,94.2556 +250639,47.675,92.5983 +250640,48.648,90.98929 +250641,44.281,95.9199 +250642,45.321,94.2339 +250643,46.338,92.6013 +250644,47.336,91.0164 +250645,42.894,95.8714 +250646,43.958,94.2118 +250647,45,92.6048 +250648,46.023,91.0447 +250649,41.507,95.8215 +250650,42.596,94.1892 +250651,43.662,92.6085 +250652,44.709,91.0742 +250653,40.121,95.7704 +250654,41.233,94.1661 +250655,42.324,92.6126 +250656,43.395,91.1047 +250657,38.736,95.718 +250658,39.872,94.1426 +250659,40.985,92.617 +250660,42.079,91.1363 +250661,37.352,95.6644 +250662,38.51,94.1186 +250663,39.646,92.6218 +250664,40.763,91.169 +250665,35.969,95.6096 +250666,37.149,94.0943 +250667,38.307,92.6268 +250668,39.446,91.2027 +250669,34.587,95.5537 +250670,35.788,94.0695 +250671,36.968,92.6322 +250672,38.128,91.2375 +250673,33.206,95.4965 +250674,34.427,94.0442 +250675,35.628,92.6379 +250676,36.81,91.2732 +250677,31.826,95.4383 +250678,33.067,94.0186 +250679,34.288,92.6438 +250680,35.49,91.31 +250681,30.447,95.379 +250682,31.707,93.9926 +250683,32.948,92.6501 +250684,34.169,91.3477 +250685,29.069,95.3186 +250686,30.348,93.9662 +250687,31.607,92.6566 +250688,32.848,91.3863 +250689,27.692,95.2572 +250690,28.989,93.9394 +250691,30.266,92.6634 +250692,31.525,91.4258 +250693,26.316,95.1948 +250694,27.63,93.9122 +250695,28.925,92.6704 +250696,30.202,91.4662 +250697,24.941,95.1314 +250698,26.272,93.8847 +250699,27.583,92.6777 +250700,28.877,91.5075 +250701,23.567,95.067 +250702,24.914,93.8568 +250703,26.241,92.6853 +250704,27.551,91.5496 +250705,22.195,95.0018 +250706,23.556,93.8286 +250707,24.899,92.6931 +250708,26.225,91.5926 +250709,20.823,94.9356 +250710,22.199,93.8 +250711,23.556,92.7011 +250712,24.897,91.6363 +250713,19.453,94.8686 +250714,20.842,93.7711 +250715,22.213,92.7093 +250716,23.568,91.6807 +250717,18.083,94.8007 +250718,19.486,93.7419 +250719,20.87,92.7177 +250720,22.239,91.7259 +250721,16.715,94.732 +250722,18.129,93.7124 +250723,19.527,92.7264 +250724,20.908,91.7718 +250725,15.348,94.6626 +250726,16.774,93.6826 +250727,18.183,92.7352 +250728,19.576,91.8184 +250729,13.983,94.5924 +250730,15.419,93.6525 +250731,16.838,92.7442 +250732,18.242,91.8656 +250733,12.618,94.5216 +250734,14.064,93.6221 +250735,15.494,92.7534 +250736,16.908,91.9135 +250737,11.255,94.45 +250738,12.709,93.5915 +250739,14.149,92.7627 +250740,15.573,91.9619 +250741,9.8924,94.3779 +250742,11.355,93.5606 +250743,12.803,92.7722 +250744,14.236,92.0109 +250745,8.5314,94.3051 +250746,10.002,93.5295 +250747,11.457,92.7818 +250748,12.899,92.0605 +250749,7.1716,94.2317 +250750,8.6485,93.4982 +250751,10.111,92.7915 +250752,11.56,92.1105 +250753,5.813,94.1579 +250754,7.2958,93.4666 +250755,8.7648,92.8014 +250756,10.22,92.161 +250757,4.4556,94.0835 +250758,5.9435,93.4348 +250759,7.4179,92.8114 +250760,8.8788,92.212 +250761,3.0995,94.0086 +250762,4.5916,93.4028 +250763,6.0707,92.8214 +250764,7.5365,92.2633 +250765,1.7445,93.9333 +250766,3.2401,93.3706 +250767,4.7231,92.8316 +250768,6.193,92.3151 +250769,0.39083,93.8576 +250770,1.889,93.3383 +250771,3.3751,92.8418 +250772,4.8484,92.3672 +250773,359.04,93.7815 +250774,0.5384,93.3058 +250775,2.0267,92.8521 +250776,3.5025,92.4196 +250777,357.69,93.7051 +250778,359.19,93.2731 +250779,0.67791,92.8625 +250780,2.1555,92.4723 +250781,356.34,93.6284 +250782,357.84,93.2403 +250783,359.33,92.8729 +250784,0.80723,92.5253 +250785,354.99,93.5514 +250786,356.49,93.2073 +250787,357.98,92.8833 +250788,359.46,92.5785 +250789,353.64,93.4742 +250790,355.14,93.1743 +250791,356.63,92.8938 +250792,358.11,92.6319 +250793,352.29,93.3967 +250794,353.79,93.1411 +250795,355.28,92.9042 +250796,356.76,92.6855 +250797,350.95,93.3192 +250798,352.44,93.1078 +250799,353.93,92.9147 +250800,355.4,92.7392 +250801,349.61,93.2415 +250802,351.1,93.0744 +250803,352.58,92.9252 +250804,354.05,92.7929 +250805,348.26,93.1636 +250806,349.75,93.041 +250807,351.23,92.9356 +250808,352.69,92.8468 +250809,346.92,93.0858 +250810,348.4,93.0075 +250811,349.87,92.946 +250812,351.34,92.9007 +250813,345.58,93.0079 +250814,347.06,92.9739 +250815,348.52,92.9564 +250816,349.98,92.9546 +250817,344.24,92.93 +250818,345.71,92.9403 +250819,347.17,92.9667 +250820,348.62,93.0084 +250821,342.9,92.8522 +250822,344.36,92.9067 +250823,345.82,92.9769 +250824,347.26,93.0622 +250825,341.57,92.7744 +250826,343.02,92.873 +250827,344.46,92.9871 +250828,345.9,93.1159 +250829,340.23,92.6967 +250830,341.67,92.8394 +250831,343.11,92.9972 +250832,344.54,93.1695 +250833,338.9,92.6192 +250834,340.33,92.8057 +250835,341.76,93.0072 +250836,343.17,93.2229 +250837,337.57,92.5419 +250838,338.99,92.7721 +250839,340.4,93.0171 +250840,341.81,93.2761 +250841,336.23,92.4647 +250842,337.64,92.7385 +250843,339.05,93.0268 +250844,340.44,93.3291 +250845,334.9,92.3878 +250846,336.3,92.7049 +250847,337.69,93.0365 +250848,339.07,93.3818 +250849,333.57,92.3112 +250850,334.96,92.6713 +250851,336.34,93.0459 +250852,337.71,93.4343 +250853,332.24,92.2349 +250854,333.62,92.6379 +250855,334.98,93.0553 +250856,336.34,93.4864 +250857,330.92,92.1589 +250858,332.27,92.6045 +250859,333.62,93.0645 +250860,334.97,93.5381 +250861,329.59,92.0833 +250862,330.93,92.5711 +250863,332.27,93.0735 +250864,333.59,93.5895 +250865,328.27,92.0082 +250866,329.59,92.5379 +250867,330.91,93.0823 +250868,332.22,93.6405 +250869,326.94,91.9334 +250870,328.25,92.5048 +250871,329.55,93.0909 +250872,330.85,93.691 +250873,325.62,91.8591 +250874,326.91,92.4718 +250875,328.2,93.0993 +250876,329.47,93.741 +250877,324.3,91.7853 +250878,325.57,92.4389 +250879,326.84,93.1075 +250880,328.1,93.7905 +250881,322.98,91.712 +250882,324.23,92.4061 +250883,325.48,93.1155 +250884,326.72,93.8394 +250885,321.66,91.6393 +250886,322.89,92.3735 +250887,324.12,93.1232 +250888,325.34,93.8878 +250889,320.34,91.5672 +250890,321.55,92.341 +250891,322.76,93.1307 +250892,323.96,93.9355 +250893,319.02,91.4957 +250894,320.22,92.3087 +250895,321.4,93.138 +250896,322.58,93.9827 +250897,317.7,91.4248 +250898,318.88,92.2766 +250899,320.04,93.145 +250900,321.2,94.0291 +250901,316.39,91.3547 +250902,317.54,92.2447 +250903,318.68,93.1517 +250904,319.82,94.0749 +250905,315.07,91.2852 +250906,316.2,92.2129 +250907,317.32,93.1581 +250908,318.44,94.1199 +250909,313.76,91.2164 +250910,314.87,92.1814 +250911,315.96,93.1642 +250912,317.05,94.1642 +250913,312.45,91.1484 +250914,313.53,92.1501 +250915,314.6,93.17 +250916,315.67,94.2076 +250917,311.14,91.0812 +250918,312.19,92.119 +250919,313.24,93.1755 +250920,314.28,94.2503 +250921,309.82,91.0148 +250922,310.86,92.0881 +250923,311.88,93.1807 +250924,312.89,94.2921 +250925,308.51,90.94929 +250926,309.52,92.0575 +250927,310.52,93.1855 +250928,311.51,94.333 +250929,307.21,90.88459 +250930,308.19,92.0271 +250931,309.16,93.19 +250932,310.12,94.3731 +250933,305.9,90.82079 +250934,306.85,91.9969 +250935,307.8,93.1941 +250936,308.73,94.4122 +250937,304.59,90.7579 +250938,305.52,91.9671 +250939,306.43,93.1979 +250940,307.34,94.4503 +250941,303.28,90.69594 +250942,304.18,91.9375 +250943,305.07,93.2013 +250944,305.95,94.4875 +250945,301.98,90.63495 +250946,302.85,91.9082 +250947,303.71,93.2044 +250948,304.56,94.5236 +250949,300.67,90.57494 +250950,301.51,91.8792 +250951,302.35,93.2071 +250952,303.16,94.5587 +250953,299.37,90.51593 +250954,300.18,91.8505 +250955,300.98,93.2093 +250956,301.77,94.5928 +250957,298.06,90.45795 +250958,298.85,91.8221 +250959,299.62,93.2112 +250960,300.38,94.6257 +250961,296.76,90.40102 +250962,297.51,91.794 +250963,298.26,93.2126 +250964,298.98,94.6576 +250965,295.46,90.34515 +250966,296.18,91.7662 +250967,296.89,93.2137 +250968,297.59,94.6883 +250969,294.16,90.29038 +250970,294.85,91.7388 +250971,295.53,93.2143 +250972,296.19,94.7179 +250973,292.85,90.23672 +250974,293.52,91.7117 +250975,294.16,93.2145 +250976,294.8,94.7462 +250977,291.55,90.18418 +250978,292.18,91.6849 +250979,292.8,93.2143 +250980,293.4,94.7734 +250981,290.25,90.13279 +250982,290.85,91.6585 +250983,291.44,93.2136 +250984,292,94.7994 +250985,288.95,90.082558 +250986,289.52,91.6325 +250987,290.07,93.2125 +250988,290.61,94.8241 +250989,287.65,90.033509 +250990,288.19,91.6068 +250991,288.71,93.2109 +250992,289.21,94.8475 +250993,286.36,89.985658 +250994,286.86,91.5814 +250995,287.34,93.2088 +250996,287.81,94.8697 +250997,285.06,89.939019 +250998,285.53,91.5565 +250999,285.98,93.2063 +251000,286.41,94.8906 +251001,283.76,89.89361 +251002,284.2,91.5319 +251003,284.61,93.2033 +251004,285.01,94.9101 +251005,282.46,89.84944 +251006,282.86,91.5077 +251007,283.25,93.1998 +251008,283.61,94.9283 +251009,281.17,89.80652 +251010,281.53,91.4839 +251011,281.88,93.1959 +251012,282.21,94.9451 +251013,279.87,89.76488 +251014,280.2,91.4605 +251015,280.52,93.1914 +251016,280.81,94.9606 +251017,278.57,89.72452 +251018,278.87,91.4375 +251019,279.15,93.1865 +251020,279.41,94.9747 +251021,277.28,89.68545 +251022,277.54,91.4148 +251023,277.79,93.1811 +251024,278.01,94.9873 +251025,275.98,89.64768 +251026,276.21,91.3926 +251027,276.42,93.1751 +251028,276.61,94.9986 +251029,274.69,89.61123 +251030,274.88,91.3708 +251031,275.06,93.1687 +251032,275.21,95.0084 +251033,273.39,89.5761 +251034,273.55,91.3494 +251035,273.69,93.1617 +251036,273.8,95.0168 +251037,272.1,89.54231 +251038,272.22,91.3285 +251039,272.33,93.1543 +251040,272.4,95.0237 +251041,270.8,89.50986 +251042,270.89,91.3079 +251043,270.96,93.1463 +251044,271,95.0291 +251045,269.51,89.47876 +251046,269.56,91.2878 +251047,269.59,93.1378 +251048,269.6,95.0331 +251049,268.21,89.44902 +251050,268.23,91.2681 +251051,268.23,93.1288 +251052,268.2,95.0355 +251053,266.92,89.42064 +251054,266.9,91.2488 +251055,266.86,93.1192 +251056,266.8,95.0365 +251057,265.62,89.39363 +251058,265.57,91.23 +251059,265.5,93.1091 +251060,265.39,95.036 +251061,264.33,89.368 +251062,264.24,91.2116 +251063,264.13,93.0985 +251064,263.99,95.0339 +251065,263.04,89.34374 +251066,262.91,91.1936 +251067,262.77,93.0874 +251068,262.59,95.0304 +251069,261.74,89.32086 +251070,261.59,91.1761 +251071,261.4,93.0757 +251072,261.19,95.0253 +251073,260.45,89.29937 +251074,260.26,91.159 +251075,260.04,93.0635 +251076,259.79,95.0186 +251077,259.15,89.27927 +251078,258.93,91.1423 +251079,258.67,93.0508 +251080,258.39,95.0104 +251081,257.86,89.26055 +251082,257.6,91.1261 +251083,257.31,93.0375 +251084,256.98,95.0007 +251085,256.56,89.24322 +251086,256.27,91.1103 +251087,255.94,93.0237 +251088,255.58,94.9895 +251089,255.27,89.22729 +251090,254.94,91.0949 +251091,254.58,93.0094 +251092,254.18,94.9767 +251093,253.97,89.21274 +251094,253.61,91.08 +251095,253.21,92.9945 +251096,252.78,94.9623 +251097,252.68,89.19957 +251098,252.28,91.0655 +251099,251.85,92.9791 +251100,251.38,94.9464 +251101,251.38,89.18779 +251102,250.95,91.0515 +251103,250.48,92.9631 +251104,249.98,94.929 +251105,250.09,89.1774 +251106,249.62,91.0379 +251107,249.12,92.9466 +251108,248.58,94.91 +251109,248.79,89.16838 +251110,248.29,91.0248 +251111,247.75,92.9296 +251112,247.18,94.8894 +251113,247.5,89.16074 +251114,246.96,91.012 +251115,246.39,92.912 +251116,245.79,94.8674 +251117,246.2,89.15446 +251118,245.63,90.99975 +251119,245.03,92.8939 +251120,244.39,94.8438 +251121,244.9,89.14955 +251122,244.3,90.98789 +251123,243.66,92.8753 +251124,242.99,94.8186 +251125,243.6,89.146 +251126,242.97,90.97647 +251127,242.3,92.8562 +251128,241.59,94.792 +251129,242.31,89.1438 +251130,241.64,90.96547 +251131,240.94,92.8365 +251132,240.2,94.7638 +251133,241.01,89.14295 +251134,240.31,90.9549 +251135,239.57,92.8163 +251136,238.8,94.7341 +251137,239.71,89.14343 +251138,238.98,90.94475 +251139,238.21,92.7956 +251140,237.41,94.7029 +251141,238.41,89.14523 +251142,237.65,90.93502 +251143,236.85,92.7744 +251144,236.01,94.6702 +251145,237.11,89.14835 +251146,236.31,90.92571 +251147,235.49,92.7526 +251148,234.62,94.636 +251149,235.81,89.15278 +251150,234.98,90.91682 +251151,234.12,92.7304 +251152,233.22,94.6003 +251153,234.51,89.15851 +251154,233.65,90.90833 +251155,232.76,92.7076 +251156,231.83,94.5632 +251157,233.21,89.16552 +251158,232.32,90.90025 +251159,231.4,92.6844 +251160,230.44,94.5246 +251161,231.9,89.1738 +251162,230.99,90.89258 +251163,230.04,92.6606 +251164,229.05,94.4846 +251165,230.6,89.18334 +251166,229.66,90.8853 +251167,228.68,92.6363 +251168,227.66,94.4432 +251169,229.3,89.19413 +251170,228.32,90.87842 +251171,227.32,92.6116 +251172,226.27,94.4004 +251173,227.99,89.20615 +251174,226.99,90.87193 +251175,225.96,92.5864 +251176,224.88,94.3561 +251177,226.69,89.21938 +251178,225.66,90.86582 +251179,224.6,92.5607 +251180,223.49,94.3105 +251181,225.38,89.23382 +251182,224.33,90.86009 +251183,223.24,92.5345 +251184,222.11,94.2635 +251185,224.08,89.24945 +251186,222.99,90.85474 +251187,221.88,92.5079 +251188,220.72,94.2152 +251189,222.77,89.26625 +251190,221.66,90.84975 +251191,220.52,92.4808 +251192,219.34,94.1655 +251193,221.46,89.2842 +251194,220.33,90.84513 +251195,219.16,92.4532 +251196,217.95,94.1146 +251197,220.15,89.30328 +251198,218.99,90.84087 +251199,217.8,92.4252 +251200,216.57,94.0623 +251201,218.84,89.32349 +251202,217.66,90.83696 +251203,216.44,92.3968 +251204,215.19,94.0088 +251205,217.53,89.34479 +251206,216.32,90.83339 +251207,215.08,92.3679 +251208,213.8,93.954 +251209,216.22,89.36717 +251210,214.99,90.83016 +251211,213.73,92.3386 +251212,212.42,93.898 +251213,214.91,89.39062 +251214,213.65,90.82726 +251215,212.37,92.3088 +251216,211.05,93.8408 +251217,213.59,89.4151 +251218,212.32,90.82469 +251219,211.01,92.2787 +251220,209.67,93.7825 +251221,212.28,89.44061 +251222,210.98,90.82243 +251223,209.66,92.2481 +251224,208.29,93.7229 +251225,210.96,89.46711 +251226,209.65,90.82049 +251227,208.3,92.2172 +251228,206.92,93.6622 +251229,209.65,89.49459 +251230,208.31,90.81885 +251231,206.94,92.1858 +251232,205.54,93.6005 +251233,208.33,89.52302 +251234,206.97,90.81751 +251235,205.59,92.1541 +251236,204.17,93.5376 +251237,207.01,89.55238 +251238,205.64,90.81645 +251239,204.23,92.122 +251240,202.79,93.4737 +251241,205.69,89.58266 +251242,204.3,90.81567 +251243,202.88,92.0895 +251244,201.42,93.4087 +251245,204.37,89.61381 +251246,202.96,90.81517 +251247,201.53,92.0567 +251248,200.05,93.3428 +251249,203.05,89.64583 +251250,201.63,90.81493 +251251,200.17,92.0235 +251252,198.68,93.2758 +251253,201.72,89.67869 +251254,200.29,90.81494 +251255,198.82,91.99 +251256,197.32,93.2079 +251257,200.4,89.71236 +251258,198.95,90.81521 +251259,197.47,91.9562 +251260,195.95,93.1391 +251261,199.08,89.74681 +251262,197.61,90.81571 +251263,196.11,91.922 +251264,194.58,93.0694 +251265,197.75,89.78202 +251266,196.27,90.81644 +251267,194.76,91.8875 +251268,193.22,92.9989 +251269,196.42,89.81797 +251270,194.93,90.81739 +251271,193.41,91.8527 +251272,191.86,92.9275 +251273,195.09,89.85463 +251274,193.59,90.81856 +251275,192.06,91.8177 +251276,190.5,92.8552 +251277,193.76,89.89197 +251278,192.25,90.81993 +251279,190.71,91.7823 +251280,189.14,92.7823 +251281,192.43,89.929964 +251282,190.91,90.82149 +251283,189.36,91.7467 +251284,187.78,92.7085 +251285,191.1,89.968585 +251286,189.57,90.82323 +251287,188.01,91.7108 +251288,186.42,92.6341 +251289,189.77,90.0078059 +251290,188.23,90.82515 +251291,186.66,91.6746 +251292,185.06,92.559 +251293,188.43,90.047598 +251294,186.89,90.82724 +251295,185.31,91.6382 +251296,183.71,92.4832 +251297,187.1,90.087933 +251298,185.54,90.82948 +251299,183.96,91.6016 +251300,182.35,92.4068 +251301,185.76,90.12878 +251302,184.2,90.83187 +251303,182.61,91.5648 +251304,181,92.3298 +251305,184.42,90.17012 +251306,182.86,90.83439 +251307,181.27,91.5277 +251308,179.65,92.2523 +251309,183.09,90.21191 +251310,181.52,90.83704 +251311,179.92,91.4904 +251312,178.3,92.1742 +251313,181.74,90.25413 +251314,180.17,90.8398 +251315,178.57,91.453 +251316,176.95,92.0957 +251317,180.4,90.29675 +251318,178.83,90.84267 +251319,177.23,91.4153 +251320,175.6,92.0167 +251321,179.06,90.33973 +251322,177.48,90.84564 +251323,175.88,91.3775 +251324,174.26,91.9373 +251325,177.72,90.38305 +251326,176.14,90.84869 +251327,174.54,91.3396 +251328,172.91,91.8575 +251329,176.37,90.42668 +251330,174.79,90.85182 +251331,173.19,91.3015 +251332,171.57,91.7773 +251333,175.02,90.47059 +251334,173.45,90.85501 +251335,171.85,91.2632 +251336,170.23,91.6968 +251337,173.68,90.51474 +251338,172.1,90.85826 +251339,170.5,91.2248 +251340,168.89,91.616 +251341,172.33,90.55912 +251342,170.75,90.86154 +251343,169.16,91.1863 +251344,167.55,91.535 +251345,170.98,90.60367 +251346,169.41,90.86487 +251347,167.82,91.1477 +251348,166.21,91.4538 +251349,169.63,90.64838 +251350,168.06,90.86821 +251351,166.48,91.109 +251352,164.87,91.3723 +251353,168.27,90.69322 +251354,166.71,90.87157 +251355,165.13,91.0703 +251356,163.54,91.2907 +251357,166.92,90.73814 +251358,165.37,90.87493 +251359,163.79,91.0314 +251360,162.2,91.209 +251361,165.56,90.78313 +251362,164.02,90.87828 +251363,162.45,90.99253 +251364,160.87,91.1272 +251365,164.21,90.82815 +251366,162.67,90.88161 +251367,161.11,90.95358 +251368,159.54,91.0453 +251369,162.85,90.87317 +251370,161.32,90.88491 +251371,159.77,90.91459 +251372,158.21,90.96347 +251373,161.49,90.91816 +251374,159.97,90.88817 +251375,158.43,90.87558 +251376,156.88,90.88161 +251377,160.13,90.96308 +251378,158.62,90.89138 +251379,157.09,90.83655 +251380,155.55,90.7998 +251381,158.77,91.0079 +251382,157.27,90.89453 +251383,155.75,90.79752 +251384,154.22,90.71806 +251385,157.41,91.0526 +251386,155.92,90.89761 +251387,154.42,90.75849 +251388,152.9,90.63645 +251389,156.04,91.0972 +251390,154.57,90.9006 +251391,153.08,90.71948 +251392,151.57,90.55498 +251393,154.68,91.1415 +251394,153.22,90.9035 +251395,151.74,90.6805 +251396,150.25,90.47369 +251397,153.31,91.1856 +251398,151.87,90.90629 +251399,150.4,90.64155 +251400,148.93,90.39262 +251401,151.94,91.2295 +251402,150.51,90.90897 +251403,149.07,90.60266 +251404,147.61,90.31179 +251405,150.58,91.2731 +251406,149.16,90.91153 +251407,147.73,90.56383 +251408,146.29,90.23124 +251409,149.21,91.3164 +251410,147.81,90.91395 +251411,146.39,90.52507 +251412,144.97,90.151 +251413,147.84,91.3594 +251414,146.45,90.91622 +251415,145.06,90.48639 +251416,143.65,90.071098 +251417,146.46,91.402 +251418,145.1,90.91834 +251419,143.72,90.44781 +251420,142.33,89.9915743 +251421,145.09,91.4441 +251422,143.75,90.9203 +251423,142.39,90.40933 +251424,141.02,89.912455 +251425,143.72,91.4859 +251426,142.39,90.92207 +251427,141.06,90.37096 +251428,139.7,89.83377 +251429,142.34,91.5271 +251430,141.04,90.92366 +251431,139.72,90.33272 +251432,138.39,89.75556 +251433,140.96,91.5679 +251434,139.68,90.92506 +251435,138.39,90.29462 +251436,137.08,89.67784 +251437,139.59,91.6082 +251438,138.33,90.92624 +251439,137.06,90.25665 +251440,135.77,89.60065 +251441,138.21,91.6479 +251442,136.97,90.92722 +251443,135.72,90.21885 +251444,134.46,89.52401 +251445,136.83,91.687 +251446,135.62,90.92796 +251447,134.39,90.1812 +251448,133.15,89.44797 +251449,135.45,91.7255 +251450,134.26,90.92847 +251451,133.06,90.14374 +251452,131.84,89.37254 +251453,134.07,91.7634 +251454,132.91,90.92874 +251455,131.73,90.10645 +251456,130.54,89.29775 +251457,132.69,91.8006 +251458,131.55,90.92875 +251459,130.4,90.069365 +251460,129.23,89.22364 +251461,131.3,91.8371 +251462,130.19,90.9285 +251463,129.07,90.032479 +251464,127.93,89.15022 +251465,129.92,91.8729 +251466,128.83,90.92798 +251467,127.74,89.9958059 +251468,126.62,89.07753 +251469,128.53,91.9079 +251470,127.48,90.92717 +251471,126.41,89.959355 +251472,125.32,89.0056 +251473,127.15,91.9421 +251474,126.12,90.92607 +251475,125.08,89.923135 +251476,124.02,88.9345 +251477,125.76,91.9756 +251478,124.76,90.92468 +251479,123.75,89.88716 +251480,122.72,88.8641 +251481,124.37,92.0082 +251482,123.4,90.92297 +251483,122.42,89.85142 +251484,121.42,88.7946 +251485,122.98,92.0399 +251486,122.05,90.92095 +251487,121.09,89.81595 +251488,120.12,88.7259 +251489,121.6,92.0708 +251490,120.69,90.91861 +251491,119.76,89.78074 +251492,118.82,88.6582 +251493,120.21,92.1007 +251494,119.33,90.91593 +251495,118.43,89.74581 +251496,117.52,88.5913 +251497,118.81,92.1297 +251498,117.97,90.91291 +251499,117.11,89.71116 +251500,116.23,88.5254 +251501,117.42,92.1578 +251502,116.61,90.90954 +251503,115.78,89.6768 +251504,114.93,88.4604 +251505,116.03,92.1849 +251506,115.25,90.90581 +251507,114.45,89.64273 +251508,113.64,88.3964 +251509,114.64,92.2109 +251510,113.89,90.90172 +251511,113.12,89.60897 +251512,112.34,88.3334 +251513,113.24,92.2359 +251514,112.53,90.89726 +251515,111.8,89.57553 +251516,111.05,88.2714 +251517,111.85,92.2599 +251518,111.17,90.89242 +251519,110.47,89.54241 +251520,109.75,88.2104 +251521,110.46,92.2828 +251522,109.81,90.88719 +251523,109.14,89.50961 +251524,108.46,88.1505 +251525,109.06,92.3046 +251526,108.45,90.88157 +251527,107.82,89.47714 +251528,107.17,88.0917 +251529,107.66,92.3253 +251530,107.09,90.87554 +251531,106.49,89.44502 +251532,105.88,88.034 +251533,106.27,92.3449 +251534,105.73,90.86912 +251535,105.17,89.41325 +251536,104.59,87.9774 +251537,104.87,92.3633 +251538,104.37,90.86228 +251539,103.84,89.38183 +251540,103.3,87.9219 +251541,103.47,92.3805 +251542,103.01,90.85502 +251543,102.52,89.35076 +251544,102.01,87.8676 +251545,102.08,92.3965 +251546,101.65,90.84734 +251547,101.19,89.32007 +251548,100.72,87.8145 +251549,100.68,92.4113 +251550,100.28,90.83922 +251551,99.868,89.28974 +251552,99.428,87.7625 +251553,99.279,92.4248 +251554,98.923,90.83067 +251555,98.543,89.25979 +251556,98.139,87.7117 +251557,97.88,92.4372 +251558,97.562,90.82168 +251559,97.218,89.23022 +251560,96.851,87.6622 +251561,96.481,92.4482 +251562,96.201,90.81225 +251563,95.894,89.20104 +251564,95.563,87.6139 +251565,95.081,92.458 +251566,94.839,90.80236 +251567,94.57,89.17225 +251568,94.276,87.5668 +251569,93.682,92.4664 +251570,93.478,90.79202 +251571,93.246,89.14386 +251572,92.989,87.5209 +251573,92.282,92.4736 +251574,92.116,90.78121 +251575,91.922,89.11587 +251576,91.702,87.4764 +251577,90.882,92.4794 +251578,90.755,90.76995 +251579,90.598,89.08828 +251580,90.415,87.4331 +251581,89.481,92.4839 +251582,89.393,90.75821 +251583,89.275,89.0611 +251584,89.129,87.3911 +251585,88.081,92.487 +251586,88.031,90.74601 +251587,87.951,89.03433 +251588,87.842,87.3504 +251589,86.681,92.4888 +251590,86.67,90.73332 +251591,86.627,89.00798 +251592,86.556,87.3109 +251593,85.28,92.4892 +251594,85.308,90.72016 +251595,85.304,88.982 +251596,85.27,87.2729 +251597,83.88,92.4882 +251598,83.947,90.70652 +251599,83.981,88.9565 +251600,83.985,87.2361 +251601,82.479,92.4858 +251602,82.585,90.69239 +251603,82.657,88.9314 +251604,82.699,87.2007 +251605,81.078,92.482 +251606,81.224,90.67778 +251607,81.334,88.9068 +251608,81.413,87.1666 +251609,79.678,92.4768 +251610,79.862,90.66268 +251611,80.011,88.8825 +251612,80.127,87.1338 +251613,78.278,92.4701 +251614,78.501,90.64708 +251615,78.687,88.8587 +251616,78.842,87.1024 +251617,76.877,92.4621 +251618,77.139,90.63099 +251619,77.364,88.8354 +251620,77.556,87.0723 +251621,75.477,92.4526 +251622,75.778,90.61441 +251623,76.041,88.8124 +251624,76.27,87.0436 +251625,74.078,92.4417 +251626,74.417,90.59733 +251627,74.718,88.7899 +251628,74.984,87.0163 +251629,72.678,92.4293 +251630,73.056,90.57975 +251631,73.395,88.7679 +251632,73.698,86.9903 +251633,71.279,92.4154 +251634,71.695,90.56168 +251635,72.071,88.7463 +251636,72.412,86.9656 +251637,69.88,92.4002 +251638,70.334,90.5431 +251639,70.748,88.7251 +251640,71.126,86.9424 +251641,68.481,92.3834 +251642,68.974,90.52403 +251643,69.425,88.7043 +251644,69.839,86.9205 +251645,67.082,92.3652 +251646,67.613,90.50446 +251647,68.101,88.684 +251648,68.552,86.8999 +251649,65.684,92.3456 +251650,66.253,90.48438 +251651,66.778,88.6642 +251652,67.265,86.8807 +251653,64.287,92.3245 +251654,64.892,90.46381 +251655,65.454,88.6447 +251656,65.978,86.8629 +251657,62.89,92.3019 +251658,63.532,90.44274 +251659,64.131,88.6257 +251660,64.69,86.8465 +251661,61.493,92.2779 +251662,62.173,90.42118 +251663,62.807,88.6072 +251664,63.402,86.8313 +251665,60.097,92.2524 +251666,60.813,90.39911 +251667,61.483,88.589 +251668,62.113,86.8176 +251669,58.701,92.2255 +251670,59.453,90.37655 +251671,60.159,88.5714 +251672,60.825,86.8052 +251673,57.306,92.1971 +251674,58.094,90.3535 +251675,58.835,88.5541 +251676,59.535,86.7941 +251677,55.911,92.1673 +251678,56.735,90.32996 +251679,57.511,88.5373 +251680,58.245,86.7843 +251681,54.518,92.136 +251682,55.376,90.30593 +251683,56.186,88.5209 +251684,56.955,86.7759 +251685,53.124,92.1033 +251686,54.018,90.2814 +251687,54.862,88.5049 +251688,55.664,86.7688 +251689,51.732,92.0692 +251690,52.659,90.2564 +251691,53.537,88.4894 +251692,54.373,86.763 +251693,50.34,92.0337 +251694,51.301,90.23091 +251695,52.212,88.4743 +251696,53.081,86.7585 +251697,48.949,91.9968 +251698,49.943,90.20495 +251699,50.887,88.4596 +251700,51.789,86.7553 +251701,47.559,91.9585 +251702,48.586,90.1785 +251703,49.562,88.4453 +251704,50.496,86.7534 +251705,46.169,91.9187 +251706,47.229,90.15159 +251707,48.237,88.4314 +251708,49.202,86.7527 +251709,44.781,91.8776 +251710,45.872,90.12421 +251711,46.911,88.4179 +251712,47.907,86.7534 +251713,43.393,91.8352 +251714,44.515,90.09636 +251715,45.585,88.4049 +251716,46.612,86.7552 +251717,42.006,91.7914 +251718,43.159,90.068053 +251719,44.259,88.3922 +251720,45.316,86.7583 +251721,40.62,91.7462 +251722,41.803,90.03929 +251723,42.933,88.3799 +251724,44.02,86.7627 +251725,39.234,91.6997 +251726,40.447,90.010075 +251727,41.607,88.3681 +251728,42.722,86.7682 +251729,37.85,91.6519 +251730,39.091,89.980415 +251731,40.28,88.3566 +251732,41.424,86.7749 +251733,36.467,91.6028 +251734,37.736,89.950313 +251735,38.953,88.3455 +251736,40.125,86.7828 +251737,35.085,91.5524 +251738,36.382,89.919776 +251739,37.626,88.3348 +251740,38.825,86.7919 +251741,33.704,91.5008 +251742,35.027,89.88881 +251743,36.298,88.3244 +251744,37.524,86.8021 +251745,32.323,91.4479 +251746,33.673,89.85742 +251747,34.97,88.3144 +251748,36.223,86.8135 +251749,30.944,91.3938 +251750,32.32,89.8256 +251751,33.642,88.3048 +251752,34.92,86.8259 +251753,29.566,91.3384 +251754,30.967,89.79338 +251755,32.314,88.2955 +251756,33.617,86.8395 +251757,28.189,91.2819 +251758,29.614,89.76075 +251759,30.985,88.2866 +251760,32.312,86.8542 +251761,26.813,91.2242 +251762,28.261,89.72772 +251763,29.656,88.278 +251764,31.007,86.8699 +251765,25.439,91.1653 +251766,26.909,89.6943 +251767,28.327,88.2698 +251768,29.701,86.8866 +251769,24.065,91.1053 +251770,25.558,89.66049 +251771,26.998,88.2619 +251772,28.393,86.9044 +251773,22.693,91.0442 +251774,24.206,89.6263 +251775,25.668,88.2543 +251776,27.085,86.9231 +251777,21.322,90.98201 +251778,22.855,89.59174 +251779,24.338,88.247 +251780,25.775,86.9429 +251781,19.952,90.91875 +251782,21.505,89.55682 +251783,23.007,88.2401 +251784,24.465,86.9636 +251785,18.583,90.85444 +251786,20.155,89.52154 +251787,21.676,88.2334 +251788,23.153,86.9852 +251789,17.215,90.78911 +251790,18.806,89.48591 +251791,20.345,88.2271 +251792,21.841,87.0078 +251793,15.849,90.72279 +251794,17.456,89.44994 +251795,19.013,88.221 +251796,20.527,87.0312 +251797,14.484,90.6555 +251798,16.108,89.41364 +251799,17.681,88.2152 +251800,19.212,87.0556 +251801,13.12,90.58727 +251802,14.76,89.37701 +251803,16.349,88.2097 +251804,17.896,87.0807 +251805,11.758,90.51812 +251806,13.412,89.34007 +251807,15.017,88.2044 +251808,16.579,87.1067 +251809,10.397,90.44808 +251810,12.064,89.30283 +251811,13.684,88.1994 +251812,15.26,87.1335 +251813,9.0369,90.37717 +251814,10.718,89.26528 +251815,12.35,88.1946 +251816,13.941,87.161 +251817,7.6785,90.30542 +251818,9.3712,89.22744 +251819,11.016,88.1901 +251820,12.62,87.1893 +251821,6.3213,90.23287 +251822,8.0253,89.18933 +251823,9.6823,88.1858 +251824,11.298,87.2184 +251825,4.9655,90.15953 +251826,6.6799,89.15094 +251827,8.3478,88.1818 +251828,9.9748,87.2481 +251829,3.6111,90.085445 +251830,5.3349,89.11229 +251831,7.0129,88.1779 +251832,8.6503,87.2785 +251833,2.258,90.010633 +251834,3.9904,89.07339 +251835,5.6776,88.1742 +251836,7.3247,87.3095 +251837,0.90625,89.935127 +251838,2.6464,89.03424 +251839,4.3419,88.1708 +251840,5.9978,87.3412 +251841,359.56,89.85896 +251842,1.3028,88.9949 +251843,3.0058,88.1675 +251844,4.6696,87.3734 +251845,358.21,89.78215 +251846,359.96,88.9553 +251847,1.6694,88.1644 +251848,3.3402,87.4062 +251849,356.86,89.70474 +251850,358.62,88.9154 +251851,0.3325,88.1615 +251852,2.0095,87.4396 +251853,355.51,89.62676 +251854,357.28,88.8754 +251855,359,88.1587 +251856,0.67749,87.4734 +251857,354.17,89.54823 +251858,355.93,88.8352 +251859,357.66,88.1561 +251860,359.34,87.5077 +251861,352.82,89.46919 +251862,354.59,88.7948 +251863,356.32,88.1536 +251864,358.01,87.5425 +251865,351.48,89.38968 +251866,353.25,88.7542 +251867,354.98,88.1512 +251868,356.67,87.5777 +251869,350.14,89.30971 +251870,351.91,88.7135 +251871,353.64,88.149 +251872,355.34,87.6133 +251873,348.8,89.22932 +251874,350.57,88.6726 +251875,352.3,88.1468 +251876,354,87.6493 +251877,347.47,89.14855 +251878,349.23,88.6316 +251879,350.96,88.1448 +251880,352.66,87.6856 +251881,346.13,89.06743 +251882,347.89,88.5904 +251883,349.62,88.1429 +251884,351.32,87.7222 +251885,344.79,88.986 +251886,346.56,88.5492 +251887,348.28,88.141 +251888,349.98,87.7591 +251889,343.46,88.9043 +251890,345.22,88.5078 +251891,346.94,88.1392 +251892,348.63,87.7962 +251893,342.13,88.8223 +251894,343.88,88.4663 +251895,345.6,88.1375 +251896,347.29,87.8336 +251897,340.8,88.7401 +251898,342.54,88.4247 +251899,344.26,88.1358 +251900,345.94,87.8711 +251901,339.47,88.6577 +251902,341.21,88.383 +251903,342.92,88.1341 +251904,344.59,87.9088 +251905,338.14,88.5751 +251906,339.87,88.3413 +251907,341.57,88.1325 +251908,343.24,87.9467 +251909,336.81,88.4924 +251910,338.54,88.2995 +251911,340.23,88.1309 +251912,341.89,87.9846 +251913,335.49,88.4096 +251914,337.2,88.2577 +251915,338.89,88.1293 +251916,340.54,88.0226 +251917,334.16,88.3268 +251918,335.87,88.2158 +251919,337.54,88.1277 +251920,339.19,88.0607 +251921,332.84,88.2439 +251922,334.53,88.1739 +251923,336.2,88.1261 +251924,337.84,88.0987 +251925,331.52,88.1611 +251926,333.2,88.132 +251927,334.85,88.1245 +251928,336.48,88.1367 +251929,330.2,88.0782 +251930,331.87,88.0901 +251931,333.51,88.1228 +251932,335.12,88.1747 +251933,328.88,87.9955 +251934,330.54,88.0482 +251935,332.16,88.1211 +251936,333.77,88.2126 +251937,327.56,87.9128 +251938,329.2,88.0063 +251939,330.82,88.1194 +251940,332.41,88.2504 +251941,326.25,87.8303 +251942,327.87,87.9644 +251943,329.47,88.1176 +251944,331.05,88.2881 +251945,324.93,87.748 +251946,326.54,87.9226 +251947,328.13,88.1157 +251948,329.68,88.3256 +251949,323.62,87.6658 +251950,325.21,87.8808 +251951,326.78,88.1137 +251952,328.32,88.3629 +251953,322.31,87.5839 +251954,323.88,87.8391 +251955,325.43,88.1116 +251956,326.96,88.3999 +251957,321,87.5023 +251958,322.55,87.7974 +251959,324.08,88.1095 +251960,325.59,88.4367 +251961,319.69,87.4209 +251962,321.22,87.7558 +251963,322.74,88.1072 +251964,324.23,88.4733 +251965,318.38,87.3399 +251966,319.89,87.7144 +251967,321.39,88.1048 +251968,322.86,88.5095 +251969,317.07,87.2592 +251970,318.57,87.673 +251971,320.04,88.1022 +251972,321.49,88.5453 +251973,315.76,87.1789 +251974,317.24,87.6317 +251975,318.69,88.0996 +251976,320.12,88.5808 +251977,314.46,87.099 +251978,315.91,87.5906 +251979,317.34,88.0967 +251980,318.75,88.6159 +251981,313.15,87.0196 +251982,314.58,87.5496 +251983,315.99,88.0937 +251984,317.38,88.6505 +251985,311.85,86.9406 +251986,313.26,87.5087 +251987,314.64,88.0906 +251988,316,88.6847 +251989,310.55,86.8622 +251990,311.93,87.468 +251991,313.29,88.0872 +251992,314.63,88.7184 +251993,309.25,86.7843 +251994,310.61,87.4274 +251995,311.94,88.0837 +251996,313.25,88.7516 +251997,307.95,86.7069 +251998,309.28,87.387 +251999,310.59,88.0799 +252000,311.88,88.7842 +252001,306.65,86.6302 +252002,307.95,87.3468 +252003,309.24,88.076 +252004,310.5,88.8163 +252005,305.36,86.554 +252006,306.63,87.3068 +252007,307.89,88.0718 +252008,309.12,88.8477 +252009,304.06,86.4786 +252010,305.31,87.2669 +252011,306.53,88.0674 +252012,307.74,88.8786 +252013,302.76,86.4038 +252014,303.98,87.2273 +252015,305.18,88.0628 +252016,306.36,88.9087 +252017,301.47,86.3297 +252018,302.66,87.1879 +252019,303.83,88.058 +252020,304.98,88.9383 +252021,300.18,86.2563 +252022,301.34,87.1487 +252023,302.48,88.0528 +252024,303.59,88.9671 +252025,298.88,86.1837 +252026,300.01,87.1098 +252027,301.12,88.0474 +252028,302.21,88.9951 +252029,297.59,86.1118 +252030,298.69,87.0711 +252031,299.77,88.0418 +252032,300.83,89.02244 +252033,296.3,86.0408 +252034,297.37,87.0326 +252035,298.41,88.0358 +252036,299.44,89.04898 +252037,295.01,85.9706 +252038,296.05,86.9944 +252039,297.06,88.0296 +252040,298.05,89.0747 +252041,293.72,85.9013 +252042,294.73,86.9565 +252043,295.71,88.0231 +252044,296.67,89.0996 +252045,292.44,85.8328 +252046,293.4,86.9189 +252047,294.35,88.0163 +252048,295.28,89.12365 +252049,291.15,85.7653 +252050,292.08,86.8815 +252051,293,88.0092 +252052,293.89,89.14682 +252053,289.86,85.6987 +252054,290.76,86.8444 +252055,291.64,88.0017 +252056,292.5,89.16909 +252057,288.58,85.633 +252058,289.44,86.8077 +252059,290.29,87.9939 +252060,291.11,89.19044 +252061,287.29,85.5683 +252062,288.12,86.7712 +252063,288.93,87.9858 +252064,289.72,89.21084 +252065,286.01,85.5046 +252066,286.8,86.7351 +252067,287.58,87.9774 +252068,288.33,89.23028 +252069,284.72,85.4419 +252070,285.48,86.6992 +252071,286.22,87.9686 +252072,286.94,89.24873 +252073,283.44,85.3802 +252074,284.16,86.6637 +252075,284.87,87.9595 +252076,285.54,89.26617 +252077,282.16,85.3196 +252078,282.85,86.6286 +252079,283.51,87.95 +252080,284.15,89.28259 +252081,280.88,85.26 +252082,281.53,86.5937 +252083,282.15,87.9401 +252084,282.76,89.29795 +252085,279.6,85.2015 +252086,280.21,86.5593 +252087,280.8,87.9298 +252088,281.36,89.31225 +252089,278.31,85.1442 +252090,278.89,86.5251 +252091,279.44,87.9192 +252092,279.97,89.32547 +252093,277.03,85.0879 +252094,277.57,86.4914 +252095,278.08,87.9082 +252096,278.57,89.33758 +252097,275.75,85.0328 +252098,276.25,86.458 +252099,276.73,87.8968 +252100,277.18,89.34857 +252101,274.48,84.9789 +252102,274.94,86.4249 +252103,275.37,87.885 +252104,275.78,89.35842 +252105,273.2,84.9261 +252106,273.62,86.3923 +252107,274.01,87.8728 +252108,274.38,89.36712 +252109,271.92,84.8745 +252110,272.3,86.36 +252111,272.66,87.8602 +252112,272.99,89.37464 +252113,270.64,84.8241 +252114,270.98,86.3281 +252115,271.3,87.8472 +252116,271.59,89.38098 +252117,269.36,84.7749 +252118,269.67,86.2966 +252119,269.94,87.8338 +252120,270.19,89.38612 +252121,268.09,84.727 +252122,268.35,86.2655 +252123,268.59,87.82 +252124,268.79,89.39004 +252125,266.81,84.6802 +252126,267.03,86.2348 +252127,267.23,87.8057 +252128,267.4,89.39274 +252129,265.53,84.6347 +252130,265.72,86.2045 +252131,265.87,87.791 +252132,266,89.39419 +252133,264.25,84.5905 +252134,264.4,86.1746 +252135,264.51,87.7759 +252136,264.6,89.39439 +252137,262.98,84.5476 +252138,263.08,86.1451 +252139,263.16,87.7603 +252140,263.2,89.39332 +252141,261.7,84.5059 +252142,261.77,86.116 +252143,261.8,87.7443 +252144,261.8,89.39097 +252145,260.43,84.4655 +252146,260.45,86.0874 +252147,260.44,87.7279 +252148,260.4,89.38734 +252149,259.15,84.4264 +252150,259.13,86.0592 +252151,259.09,87.711 +252152,259,89.38241 +252153,257.87,84.3885 +252154,257.82,86.0313 +252155,257.73,87.6937 +252156,257.6,89.37617 +252157,256.6,84.352 +252158,256.5,86.0039 +252159,256.37,87.6759 +252160,256.21,89.36862 +252161,255.32,84.3168 +252162,255.18,85.977 +252163,255.01,87.6577 +252164,254.81,89.35974 +252165,254.04,84.2829 +252166,253.87,85.9504 +252167,253.66,87.639 +252168,253.41,89.34954 +252169,252.77,84.2504 +252170,252.55,85.9243 +252171,252.3,87.6199 +252172,252.01,89.338 +252173,251.49,84.2191 +252174,251.24,85.8987 +252175,250.94,87.6003 +252176,250.61,89.32511 +252177,250.22,84.1892 +252178,249.92,85.8734 +252179,249.59,87.5802 +252180,249.21,89.31088 +252181,248.94,84.1606 +252182,248.6,85.8486 +252183,248.23,87.5597 +252184,247.82,89.2953 +252185,247.66,84.1334 +252186,247.29,85.8242 +252187,246.87,87.5387 +252188,246.42,89.27836 +252189,246.39,84.1074 +252190,245.97,85.8003 +252191,245.52,87.5173 +252192,245.02,89.26006 +252193,245.11,84.0828 +252194,244.65,85.7768 +252195,244.16,87.4954 +252196,243.62,89.2404 +252197,243.83,84.0596 +252198,243.34,85.7537 +252199,242.81,87.473 +252200,242.23,89.21938 +252201,242.55,84.0376 +252202,242.02,85.7311 +252203,241.45,87.4502 +252204,240.83,89.197 +252205,241.27,84.017 +252206,240.7,85.7089 +252207,240.09,87.4269 +252208,239.44,89.17325 +252209,240,83.9977 +252210,239.39,85.6871 +252211,238.74,87.4032 +252212,238.04,89.14814 +252213,238.72,83.9798 +252214,238.07,85.6658 +252215,237.38,87.379 +252216,236.65,89.12167 +252217,237.44,83.9631 +252218,236.75,85.6449 +252219,236.03,87.3543 +252220,235.25,89.09383 +252221,236.16,83.9478 +252222,235.44,85.6244 +252223,234.67,87.3292 +252224,233.86,89.06465 +252225,234.88,83.9337 +252226,234.12,85.6044 +252227,233.32,87.3036 +252228,232.46,89.0341 +252229,233.6,83.921 +252230,232.8,85.5848 +252231,231.96,87.2776 +252232,231.07,89.00221 +252233,232.32,83.9095 +252234,231.48,85.5656 +252235,230.61,87.2511 +252236,229.68,88.969 +252237,231.03,83.8994 +252238,230.17,85.5469 +252239,229.25,87.2242 +252240,228.29,88.9344 +252241,229.75,83.8905 +252242,228.85,85.5285 +252243,227.9,87.1968 +252244,226.9,88.8985 +252245,228.47,83.8829 +252246,227.53,85.5106 +252247,226.55,87.169 +252248,225.51,88.8612 +252249,227.18,83.8765 +252250,226.21,85.4931 +252251,225.19,87.1407 +252252,224.12,88.8227 +252253,225.9,83.8714 +252254,224.89,85.476 +252255,223.84,87.112 +252256,222.73,88.7828 +252257,224.61,83.8675 +252258,223.58,85.4593 +252259,222.49,87.0828 +252260,221.35,88.7417 +252261,223.33,83.8649 +252262,222.26,85.4431 +252263,221.14,87.0533 +252264,219.96,88.6992 +252265,222.04,83.8635 +252266,220.94,85.4272 +252267,219.78,87.0233 +252268,218.57,88.6555 +252269,220.75,83.8633 +252270,219.62,85.4117 +252271,218.43,86.9928 +252272,217.19,88.6105 +252273,219.47,83.8642 +252274,218.3,85.3966 +252275,217.08,86.962 +252276,215.81,88.5642 +252277,218.18,83.8664 +252278,216.98,85.3819 +252279,215.73,86.9307 +252280,214.42,88.5167 +252281,216.89,83.8697 +252282,215.66,85.3676 +252283,214.38,86.8991 +252284,213.04,88.468 +252285,215.6,83.8741 +252286,214.34,85.3537 +252287,213.03,86.867 +252288,211.66,88.418 +252289,214.31,83.8797 +252290,213.02,85.3402 +252291,211.68,86.8345 +252292,210.28,88.3668 +252293,213.01,83.8864 +252294,211.7,85.327 +252295,210.33,86.8016 +252296,208.9,88.3145 +252297,211.72,83.8942 +252298,210.38,85.3142 +252299,208.98,86.7684 +252300,207.52,88.261 +252301,210.42,83.9031 +252302,209.05,85.3017 +252303,207.63,86.7347 +252304,206.15,88.2063 +252305,209.13,83.913 +252306,207.73,85.2896 +252307,206.28,86.7007 +252308,204.77,88.1505 +252309,207.83,83.924 +252310,206.41,85.2778 +252311,204.94,86.6663 +252312,203.4,88.0935 +252313,206.53,83.936 +252314,205.09,85.2664 +252315,203.59,86.6315 +252316,202.03,88.0355 +252317,205.24,83.9491 +252318,203.76,85.2553 +252319,202.24,86.5964 +252320,200.66,87.9764 +252321,203.94,83.9631 +252322,202.44,85.2446 +252323,200.89,86.5609 +252324,199.28,87.9162 +252325,202.64,83.978 +252326,201.12,85.2342 +252327,199.55,86.5251 +252328,197.92,87.8549 +252329,201.33,83.994 +252330,199.79,85.2241 +252331,198.2,86.4889 +252332,196.55,87.7927 +252333,200.03,84.0108 +252334,198.47,85.2143 +252335,196.86,86.4524 +252336,195.18,87.7294 +252337,198.73,84.0286 +252338,197.15,85.2047 +252339,195.51,86.4155 +252340,193.82,87.6652 +252341,197.42,84.0472 +252342,195.82,85.1955 +252343,194.17,86.3784 +252344,192.45,87.6 +252345,196.11,84.0667 +252346,194.49,85.1866 +252347,192.82,86.3409 +252348,191.09,87.5339 +252349,194.81,84.0871 +252350,193.17,85.178 +252351,191.48,86.3032 +252352,189.73,87.4668 +252353,193.5,84.1083 +252354,191.84,85.1696 +252355,190.14,86.2651 +252356,188.37,87.3989 +252357,192.19,84.1302 +252358,190.52,85.1615 +252359,188.79,86.2268 +252360,187.01,87.3301 +252361,190.88,84.1529 +252362,189.19,85.1536 +252363,187.45,86.1882 +252364,185.65,87.2605 +252365,189.56,84.1764 +252366,187.86,85.146 +252367,186.11,86.1493 +252368,184.3,87.1901 +252369,188.25,84.2006 +252370,186.53,85.1387 +252371,184.77,86.1101 +252372,182.94,87.1188 +252373,186.93,84.2254 +252374,185.21,85.1315 +252375,183.43,86.0707 +252376,181.59,87.0469 +252377,185.62,84.251 +252378,183.88,85.1246 +252379,182.09,86.0311 +252380,180.24,86.9741 +252381,184.3,84.2772 +252382,182.55,85.1179 +252383,180.75,85.9912 +252384,178.89,86.9007 +252385,182.98,84.304 +252386,181.22,85.1114 +252387,179.41,85.9511 +252388,177.54,86.8266 +252389,181.66,84.3314 +252390,179.89,85.1051 +252391,178.07,85.9107 +252392,176.19,86.7518 +252393,180.34,84.3593 +252394,178.56,85.099 +252395,176.73,85.8702 +252396,174.85,86.6764 +252397,179.01,84.3878 +252398,177.23,85.0931 +252399,175.39,85.8294 +252400,173.5,86.6005 +252401,177.69,84.4168 +252402,175.9,85.0873 +252403,174.06,85.7885 +252404,172.16,86.5239 +252405,176.36,84.4463 +252406,174.57,85.0817 +252407,172.72,85.7474 +252408,170.82,86.4468 +252409,175.04,84.4763 +252410,173.24,85.0763 +252411,171.38,85.7061 +252412,169.48,86.3692 +252413,173.71,84.5066 +252414,171.9,85.071 +252415,170.05,85.6647 +252416,168.14,86.2912 +252417,172.38,84.5374 +252418,170.57,85.0658 +252419,168.71,85.6231 +252420,166.8,86.2126 +252421,171.05,84.5686 +252422,169.24,85.0607 +252423,167.38,85.5814 +252424,165.47,86.1337 +252425,169.71,84.6001 +252426,167.9,85.0558 +252427,166.04,85.5395 +252428,164.13,86.0544 +252429,168.38,84.6319 +252430,166.57,85.051 +252431,164.71,85.4975 +252432,162.8,85.9747 +252433,167.05,84.664 +252434,165.23,85.0462 +252435,163.38,85.4555 +252436,161.47,85.8947 +252437,165.71,84.6963 +252438,163.9,85.0416 +252439,162.05,85.4133 +252440,160.14,85.8143 +252441,164.37,84.7289 +252442,162.56,85.037 +252443,160.71,85.371 +252444,158.81,85.7338 +252445,163.03,84.7617 +252446,161.23,85.0325 +252447,159.38,85.3286 +252448,157.49,85.6529 +252449,161.69,84.7947 +252450,159.89,85.028 +252451,158.05,85.2862 +252452,156.16,85.5719 +252453,160.35,84.8278 +252454,158.56,85.0236 +252455,156.72,85.2437 +252456,154.84,85.4907 +252457,159,84.861 +252458,157.22,85.0192 +252459,155.39,85.2011 +252460,153.52,85.4094 +252461,157.66,84.8943 +252462,155.88,85.0149 +252463,154.06,85.1585 +252464,152.2,85.3279 +252465,156.31,84.9277 +252466,154.54,85.0105 +252467,152.73,85.1159 +252468,150.88,85.2464 +252469,154.96,84.9611 +252470,153.21,85.0062 +252471,151.4,85.0733 +252472,149.56,85.1648 +252473,153.62,84.9945 +252474,151.87,85.0019 +252475,150.08,85.0306 +252476,148.24,85.0832 +252477,152.26,85.0279 +252478,150.53,84.9975 +252479,148.75,84.988 +252480,146.93,85.0017 +252481,150.91,85.0612 +252482,149.19,84.9932 +252483,147.42,84.9454 +252484,145.61,84.9201 +252485,149.56,85.0944 +252486,147.85,84.9888 +252487,146.1,84.9028 +252488,144.3,84.8387 +252489,148.21,85.1275 +252490,146.51,84.9843 +252491,144.77,84.8602 +252492,142.99,84.7573 +252493,146.85,85.1605 +252494,145.17,84.9798 +252495,143.44,84.8176 +252496,141.68,84.6761 +252497,145.49,85.1933 +252498,143.82,84.9753 +252499,142.12,84.7751 +252500,140.37,84.5951 +252501,144.13,85.2259 +252502,142.48,84.9706 +252503,140.79,84.7327 +252504,139.07,84.5143 +252505,142.77,85.2583 +252506,141.14,84.9659 +252507,139.47,84.6904 +252508,137.76,84.4337 +252509,141.41,85.2904 +252510,139.8,84.9611 +252511,138.15,84.6481 +252512,136.46,84.3534 +252513,140.05,85.3222 +252514,138.46,84.9562 +252515,136.82,84.6059 +252516,135.16,84.2733 +252517,138.69,85.3537 +252518,137.11,84.9512 +252519,135.5,84.5638 +252520,133.86,84.1936 +252521,137.32,85.3849 +252522,135.77,84.9461 +252523,134.18,84.5219 +252524,132.56,84.1142 +252525,135.96,85.4157 +252526,134.42,84.9408 +252527,132.86,84.48 +252528,131.26,84.0353 +252529,134.59,85.4461 +252530,133.08,84.9354 +252531,131.54,84.4383 +252532,129.96,83.9567 +252533,133.22,85.4761 +252534,131.73,84.9299 +252535,130.22,84.3968 +252536,128.66,83.8786 +252537,131.85,85.5056 +252538,130.39,84.9242 +252539,128.9,84.3553 +252540,127.37,83.8009 +252541,130.48,85.5347 +252542,129.04,84.9183 +252543,127.58,84.3141 +252544,126.08,83.7238 +252545,129.11,85.5632 +252546,127.7,84.9123 +252547,126.26,84.273 +252548,124.78,83.6472 +252549,127.74,85.5912 +252550,126.35,84.9061 +252551,124.94,84.2321 +252552,123.49,83.5711 +252553,126.36,85.6187 +252554,125.01,84.8997 +252555,123.62,84.1913 +252556,122.2,83.4956 +252557,124.99,85.6456 +252558,123.66,84.893 +252559,122.3,84.1508 +252560,120.91,83.4208 +252561,123.61,85.6718 +252562,122.31,84.8862 +252563,120.98,84.1105 +252564,119.62,83.3465 +252565,122.23,85.6975 +252566,120.96,84.8792 +252567,119.67,84.0704 +252568,118.34,83.273 +252569,120.85,85.7225 +252570,119.62,84.8719 +252571,118.35,84.0305 +252572,117.05,83.2001 +252573,119.48,85.7468 +252574,118.27,84.8644 +252575,117.03,83.9908 +252576,115.77,83.1279 +252577,118.1,85.7704 +252578,116.92,84.8566 +252579,115.71,83.9514 +252580,114.48,83.0565 +252581,116.71,85.7932 +252582,115.57,84.8486 +252583,114.4,83.9123 +252584,113.2,82.9859 +252585,115.33,85.8154 +252586,114.22,84.8404 +252587,113.08,83.8733 +252588,111.92,82.916 +252589,113.95,85.8367 +252590,112.87,84.8319 +252591,111.77,83.8347 +252592,110.64,82.847 +252593,112.56,85.8572 +252594,111.52,84.8231 +252595,110.45,83.7963 +252596,109.36,82.7788 +252597,111.18,85.877 +252598,110.17,84.814 +252599,109.14,83.7582 +252600,108.08,82.7115 +252601,109.79,85.8958 +252602,108.82,84.8046 +252603,107.82,83.7204 +252604,106.8,82.645 +252605,108.41,85.9139 +252606,107.47,84.7949 +252607,106.51,83.6829 +252608,105.52,82.5795 +252609,107.02,85.931 +252610,106.12,84.785 +252611,105.2,83.6457 +252612,104.24,82.5149 +252613,105.63,85.9472 +252614,104.77,84.7747 +252615,103.88,83.6088 +252616,102.97,82.4513 +252617,104.24,85.9625 +252618,103.42,84.7641 +252619,102.57,83.5722 +252620,101.69,82.3886 +252621,102.85,85.9769 +252622,102.07,84.7532 +252623,101.26,83.536 +252624,100.42,82.3269 +252625,101.46,85.9903 +252626,100.72,84.7419 +252627,99.945,83.5 +252628,99.145,82.2662 +252629,100.07,86.0027 +252630,99.366,84.7304 +252631,98.632,83.4644 +252632,97.872,82.2065 +252633,98.681,86.0141 +252634,98.014,84.7184 +252635,97.32,83.4292 +252636,96.599,82.1479 +252637,97.289,86.0245 +252638,96.662,84.7062 +252639,96.008,83.3943 +252640,95.327,82.0904 +252641,95.897,86.0338 +252642,95.31,84.6935 +252643,94.696,83.3597 +252644,94.056,82.0339 +252645,94.504,86.0421 +252646,93.958,84.6806 +252647,93.385,83.3255 +252648,92.785,81.9786 +252649,93.11,86.0494 +252650,92.606,84.6672 +252651,92.074,83.2917 +252652,91.514,81.9243 +252653,91.716,86.0555 +252654,91.253,84.6535 +252655,90.763,83.2583 +252656,90.244,81.8712 +252657,90.322,86.0606 +252658,89.901,84.6394 +252659,89.452,83.2252 +252660,88.975,81.8192 +252661,88.927,86.0645 +252662,88.548,84.6249 +252663,88.141,83.1925 +252664,87.706,81.7684 +252665,87.532,86.0673 +252666,87.195,84.6101 +252667,86.83,83.1602 +252668,86.437,81.7188 +252669,86.136,86.069 +252670,85.843,84.5948 +252671,85.52,83.1282 +252672,85.169,81.6703 +252673,84.74,86.0695 +252674,84.49,84.5792 +252675,84.21,83.0967 +252676,83.901,81.6231 +252677,83.344,86.0689 +252678,83.137,84.5632 +252679,82.9,83.0655 +252680,82.633,81.577 +252681,81.948,86.067 +252682,81.784,84.5467 +252683,81.589,83.0348 +252684,81.365,81.5322 +252685,80.551,86.064 +252686,80.431,84.5299 +252687,80.279,83.0045 +252688,80.098,81.4886 +252689,79.154,86.0598 +252690,79.078,84.5127 +252691,78.97,82.9745 +252692,78.831,81.4462 +252693,77.758,86.0544 +252694,77.725,84.495 +252695,77.66,82.945 +252696,77.564,81.4051 +252697,76.361,86.0477 +252698,76.372,84.477 +252699,76.35,82.9159 +252700,76.297,81.3652 +252701,74.964,86.0399 +252702,75.019,84.4585 +252703,75.04,82.8872 +252704,75.03,81.3266 +252705,73.567,86.0308 +252706,73.666,84.4396 +252707,73.731,82.8589 +252708,73.764,81.2893 +252709,72.169,86.0204 +252710,72.313,84.4203 +252711,72.421,82.8311 +252712,72.497,81.2532 +252713,70.772,86.0088 +252714,70.96,84.4006 +252715,71.112,82.8037 +252716,71.23,81.2185 +252717,69.375,85.996 +252718,69.607,84.3804 +252719,69.802,82.7766 +252720,69.963,81.185 +252721,67.979,85.9818 +252722,68.254,84.3598 +252723,68.493,82.7501 +252724,68.697,81.1527 +252725,66.582,85.9665 +252726,66.901,84.3388 +252727,67.183,82.7239 +252728,67.43,81.1218 +252729,65.185,85.9498 +252730,65.549,84.3174 +252731,65.873,82.6982 +252732,66.163,81.0922 +252733,63.789,85.9319 +252734,64.196,84.2955 +252735,64.564,82.6729 +252736,64.895,81.0639 +252737,62.393,85.9127 +252738,62.844,84.2732 +252739,63.254,82.648 +252740,63.628,81.0368 +252741,60.997,85.8922 +252742,61.491,84.2505 +252743,61.945,82.6236 +252744,62.36,81.0111 +252745,59.602,85.8704 +252746,60.139,84.2274 +252747,60.635,82.5996 +252748,61.092,80.9866 +252749,58.207,85.8474 +252750,58.787,84.2038 +252751,59.325,82.576 +252752,59.824,80.9635 +252753,56.812,85.8231 +252754,57.435,84.1798 +252755,58.015,82.5528 +252756,58.555,80.9416 +252757,55.418,85.7975 +252758,56.084,84.1553 +252759,56.705,82.5301 +252760,57.287,80.9211 +252761,54.024,85.7706 +252762,54.732,84.1305 +252763,55.395,82.5078 +252764,56.017,80.9018 +252765,52.63,85.7424 +252766,53.381,84.1052 +252767,54.085,82.4859 +252768,54.747,80.8838 +252769,51.238,85.713 +252770,52.03,84.0795 +252771,52.774,82.4645 +252772,53.477,80.8671 +252773,49.845,85.6823 +252774,50.679,84.0533 +252775,51.464,82.4435 +252776,52.207,80.8517 +252777,48.454,85.6503 +252778,49.328,84.0268 +252779,50.153,82.4229 +252780,50.935,80.8375 +252781,47.062,85.617 +252782,47.977,83.9998 +252783,48.842,82.4027 +252784,49.664,80.8246 +252785,45.672,85.5825 +252786,46.627,83.9724 +252787,47.531,82.3829 +252788,48.391,80.8129 +252789,44.282,85.5468 +252790,45.277,83.9445 +252791,46.22,82.3636 +252792,47.118,80.8025 +252793,42.893,85.5097 +252794,43.927,83.9163 +252795,44.909,82.3447 +252796,45.845,80.7934 +252797,41.505,85.4715 +252798,42.578,83.8876 +252799,43.597,82.3262 +252800,44.57,80.7854 +252801,40.117,85.432 +252802,41.229,83.8586 +252803,42.286,82.3081 +252804,43.296,80.7787 +252805,38.731,85.3913 +252806,39.88,83.8291 +252807,40.974,82.2904 +252808,42.02,80.7732 +252809,37.345,85.3494 +252810,38.531,83.7992 +252811,39.662,82.2731 +252812,40.743,80.7689 +252813,35.96,85.3062 +252814,37.183,83.769 +252815,38.349,82.2561 +252816,39.466,80.7658 +252817,34.576,85.2619 +252818,35.835,83.7383 +252819,37.036,82.2396 +252820,38.188,80.7638 +252821,33.193,85.2164 +252822,34.487,83.7072 +252823,35.724,82.2235 +252824,36.909,80.7631 +252825,31.81,85.1697 +252826,33.14,83.6758 +252827,34.41,82.2078 +252828,35.63,80.7634 +252829,30.429,85.1218 +252830,31.793,83.644 +252831,33.097,82.1924 +252832,34.349,80.7649 +252833,29.049,85.0728 +252834,30.446,83.6117 +252835,31.783,82.1775 +252836,33.068,80.7676 +252837,27.67,85.0227 +252838,29.1,83.5792 +252839,30.469,82.1629 +252840,31.785,80.7713 +252841,26.292,84.9714 +252842,27.754,83.5462 +252843,29.155,82.1486 +252844,30.502,80.7761 +252845,24.915,84.919 +252846,26.409,83.5129 +252847,27.84,82.1347 +252848,29.218,80.782 +252849,23.539,84.8656 +252850,25.064,83.4792 +252851,26.525,82.1212 +252852,27.932,80.789 +252853,22.164,84.811 +252854,23.719,83.4452 +252855,25.21,82.1081 +252856,26.646,80.797 +252857,20.791,84.7554 +252858,22.375,83.4108 +252859,23.894,82.0952 +252860,25.358,80.806 +252861,19.418,84.6988 +252862,21.031,83.3761 +252863,22.578,82.0828 +252864,24.07,80.816 +252865,18.047,84.6411 +252866,19.688,83.341 +252867,21.262,82.0706 +252868,22.78,80.827 +252869,16.677,84.5825 +252870,18.345,83.3056 +252871,19.945,82.0588 +252872,21.489,80.839 +252873,15.309,84.5228 +252874,17.002,83.2699 +252875,18.628,82.0473 +252876,20.198,80.8519 +252877,13.941,84.4622 +252878,15.66,83.2339 +252879,17.311,82.0361 +252880,18.905,80.8657 +252881,12.575,84.4006 +252882,14.318,83.1976 +252883,15.993,82.0252 +252884,17.61,80.8805 +252885,11.211,84.3381 +252886,12.977,83.1609 +252887,14.675,82.0146 +252888,16.315,80.8961 +252889,9.8475,84.2747 +252890,11.636,83.124 +252891,13.356,82.0043 +252892,15.018,80.9126 +252893,8.4855,84.2104 +252894,10.296,83.0868 +252895,12.038,81.9943 +252896,13.721,80.9299 +252897,7.125,84.1452 +252898,8.9561,83.0493 +252899,10.718,81.9846 +252900,12.421,80.9481 +252901,5.7658,84.0792 +252902,7.6167,83.0115 +252903,9.3985,81.9752 +252904,11.121,80.967 +252905,4.4081,84.0124 +252906,6.2779,82.9734 +252907,8.0784,81.966 +252908,9.8195,80.9867 +252909,3.0517,83.9448 +252910,4.9395,82.9351 +252911,6.7578,81.957 +252912,8.5165,81.0072 +252913,1.6969,83.8764 +252914,3.6017,82.8966 +252915,5.4369,81.9483 +252916,7.2123,81.0284 +252917,0.34346,83.8072 +252918,2.2643,82.8578 +252919,4.1155,81.9399 +252920,5.9067,81.0503 +252921,358.99,83.7373 +252922,0.92746,82.8188 +252923,2.7937,81.9317 +252924,4.5998,81.0729 +252925,357.64,83.6668 +252926,359.59,82.7795 +252927,1.4714,81.9237 +252928,3.2916,81.0961 +252929,356.29,83.5955 +252930,358.26,82.74 +252931,0.14872,81.9159 +252932,1.982,81.1199 +252933,354.94,83.5236 +252934,356.92,82.7003 +252935,358.83,81.9083 +252936,0.67103,81.1444 +252937,353.6,83.4511 +252938,355.59,82.6605 +252939,357.5,81.901 +252940,359.36,81.1694 +252941,352.25,83.378 +252942,354.25,82.6204 +252943,356.18,81.8938 +252944,358.04,81.195 +252945,350.91,83.3043 +252946,352.92,82.5801 +252947,354.85,81.8868 +252948,356.73,81.2211 +252949,349.57,83.2301 +252950,351.58,82.5397 +252951,353.53,81.88 +252952,355.41,81.2477 +252953,348.23,83.1554 +252954,350.25,82.4991 +252955,352.2,81.8733 +252956,354.1,81.2747 +252957,346.89,83.0802 +252958,348.92,82.4584 +252959,350.88,81.8668 +252960,352.78,81.3022 +252961,345.56,83.0045 +252962,347.59,82.4175 +252963,349.55,81.8604 +252964,351.46,81.3302 +252965,344.22,82.9284 +252966,346.26,82.3764 +252967,348.22,81.8542 +252968,350.13,81.3585 +252969,342.89,82.8518 +252970,344.93,82.3353 +252971,346.9,81.8481 +252972,348.81,81.3872 +252973,341.56,82.775 +252974,343.6,82.294 +252975,345.57,81.8421 +252976,347.48,81.4162 +252977,340.22,82.6977 +252978,342.27,82.2526 +252979,344.24,81.8362 +252980,346.16,81.4455 +252981,338.9,82.6202 +252982,340.94,82.2111 +252983,342.91,81.8305 +252984,344.83,81.4751 +252985,337.57,82.5423 +252986,339.61,82.1696 +252987,341.58,81.8248 +252988,343.5,81.5049 +252989,336.24,82.4642 +252990,338.28,82.1279 +252991,340.25,81.8192 +252992,342.17,81.535 +252993,334.92,82.3859 +252994,336.95,82.0862 +252995,338.92,81.8136 +252996,340.84,81.5653 +252997,333.6,82.3074 +252998,335.63,82.0444 +252999,337.59,81.8082 +253000,339.5,81.5957 +253001,332.28,82.2287 +253002,334.3,82.0026 +253003,336.26,81.8027 +253004,338.17,81.6263 +253005,330.96,82.1499 +253006,332.98,81.9607 +253007,334.93,81.7974 +253008,336.83,81.657 +253009,329.64,82.071 +253010,331.65,81.9188 +253011,333.6,81.792 +253012,335.49,81.6878 +253013,328.32,81.992 +253014,330.33,81.8769 +253015,332.27,81.7867 +253016,334.15,81.7186 +253017,327.01,81.9129 +253018,329,81.8349 +253019,330.93,81.7814 +253020,332.81,81.7494 +253021,325.7,81.8338 +253022,327.68,81.793 +253023,329.6,81.7761 +253024,331.47,81.7803 +253025,324.38,81.7548 +253026,326.35,81.7511 +253027,328.27,81.7708 +253028,330.13,81.8111 +253029,323.07,81.6757 +253030,325.03,81.7092 +253031,326.93,81.7654 +253032,328.78,81.8419 +253033,321.77,81.5968 +253034,323.71,81.6673 +253035,325.6,81.7601 +253036,327.43,81.8726 +253037,320.46,81.518 +253038,322.39,81.6254 +253039,324.26,81.7547 +253040,326.09,81.9031 +253041,319.15,81.4392 +253042,321.07,81.5837 +253043,322.93,81.7493 +253044,324.74,81.9335 +253045,317.85,81.3607 +253046,319.75,81.5419 +253047,321.59,81.7438 +253048,323.38,81.9638 +253049,316.55,81.2823 +253050,318.43,81.5002 +253051,320.26,81.7383 +253052,322.03,81.9938 +253053,315.24,81.2042 +253054,317.11,81.4587 +253055,318.92,81.7326 +253056,320.68,82.0237 +253057,313.95,81.1263 +253058,315.79,81.4171 +253059,317.58,81.7269 +253060,319.32,82.0533 +253061,312.65,81.0487 +253062,314.47,81.3757 +253063,316.24,81.7212 +253064,317.97,82.0826 +253065,311.35,80.9714 +253066,313.15,81.3344 +253067,314.91,81.7153 +253068,316.61,82.1116 +253069,310.05,80.8945 +253070,311.84,81.2932 +253071,313.57,81.7093 +253072,315.25,82.1402 +253073,308.76,80.8179 +253074,310.52,81.2522 +253075,312.23,81.7032 +253076,313.89,82.1685 +253077,307.47,80.7417 +253078,309.2,81.2112 +253079,310.89,81.6969 +253080,312.53,82.1964 +253081,306.18,80.6659 +253082,307.89,81.1705 +253083,309.55,81.6906 +253084,311.16,82.2239 +253085,304.89,80.5906 +253086,306.57,81.1298 +253087,308.21,81.684 +253088,309.8,82.251 +253089,303.6,80.5158 +253090,305.26,81.0894 +253091,306.87,81.6774 +253092,308.44,82.2776 +253093,302.31,80.4415 +253094,303.94,81.0491 +253095,305.53,81.6705 +253096,307.07,82.3037 +253097,301.02,80.3677 +253098,302.63,81.0089 +253099,304.19,81.6635 +253100,305.7,82.3293 +253101,299.74,80.2945 +253102,301.31,80.969 +253103,302.84,81.6564 +253104,304.33,82.3544 +253105,298.46,80.2219 +253106,300,80.9293 +253107,301.5,81.649 +253108,302.96,82.3789 +253109,297.17,80.1499 +253110,298.69,80.8897 +253111,300.16,81.6414 +253112,301.59,82.4028 +253113,295.89,80.0785 +253114,297.37,80.8504 +253115,298.82,81.6336 +253116,300.22,82.4261 +253117,294.61,80.0078 +253118,296.06,80.8113 +253119,297.47,81.6257 +253120,298.84,82.4487 +253121,293.33,79.938 +253122,294.75,80.7725 +253123,296.13,81.6175 +253124,297.47,82.4707 +253125,292.05,79.869 +253126,293.44,80.7338 +253127,294.79,81.609 +253128,296.09,82.492 +253129,290.78,79.8 +253130,292.13,80.6955 +253131,293.44,81.6004 +253132,294.72,82.5126 +253133,289.5,79.732 +253134,290.82,80.6573 +253135,292.1,81.5915 +253136,293.34,82.5325 +253137,288.23,79.665 +253138,289.51,80.6195 +253139,290.75,81.5823 +253140,291.96,82.5516 +253141,286.95,79.599 +253142,288.2,80.5819 +253143,289.41,81.5729 +253144,290.58,82.57 +253145,285.68,79.534 +253146,286.89,80.5446 +253147,288.06,81.5632 +253148,289.2,82.5876 +253149,284.41,79.469 +253150,285.58,80.5075 +253151,286.72,81.5532 +253152,287.82,82.6043 +253153,283.14,79.406 +253154,284.27,80.4708 +253155,285.37,81.543 +253156,286.43,82.6202 +253157,281.87,79.343 +253158,282.96,80.4344 +253159,284.02,81.5325 +253160,285.05,82.6353 +253161,280.6,79.281 +253162,281.65,80.3983 +253163,282.68,81.5217 +253164,283.66,82.6495 +253165,279.33,79.22 +253166,280.35,80.3624 +253167,281.33,81.5105 +253168,282.28,82.6628 +253169,278.06,79.16 +253170,279.04,80.3269 +253171,279.98,81.4991 +253172,280.89,82.6752 +253173,276.8,79.102 +253174,277.73,80.2918 +253175,278.64,81.4874 +253176,279.51,82.6867 +253177,275.53,79.044 +253178,276.43,80.2569 +253179,277.29,81.4753 +253180,278.12,82.6972 +253181,274.26,78.987 +253182,275.12,80.2224 +253183,275.94,81.463 +253184,276.73,82.7067 +253185,273,78.931 +253186,273.81,80.1883 +253187,274.59,81.4503 +253188,275.34,82.7153 +253189,271.74,78.876 +253190,272.51,80.1545 +253191,273.24,81.4372 +253192,273.95,82.7229 +253193,270.47,78.823 +253194,271.2,80.121 +253195,271.9,81.4239 +253196,272.56,82.7294 +253197,269.21,78.77 +253198,269.89,80.0879 +253199,270.55,81.4101 +253200,271.17,82.735 +253201,267.95,78.718 +253202,268.59,80.0552 +253203,269.2,81.3961 +253204,269.78,82.7395 +253205,266.68,78.668 +253206,267.28,80.0228 +253207,267.85,81.3816 +253208,268.39,82.7429 +253209,265.42,78.619 +253210,265.98,79.991 +253211,266.5,81.3669 +253212,267,82.7453 +253213,264.16,78.571 +253214,264.67,79.959 +253215,265.15,81.3517 +253216,265.6,82.7466 +253217,262.9,78.524 +253218,263.37,79.928 +253219,263.8,81.3362 +253220,264.21,82.7468 +253221,261.64,78.478 +253222,262.06,79.897 +253223,262.46,81.3203 +253224,262.82,82.7458 +253225,260.38,78.433 +253226,260.76,79.867 +253227,261.11,81.3041 +253228,261.42,82.7438 +253229,259.12,78.39 +253230,259.45,79.837 +253231,259.76,81.2874 +253232,260.03,82.7406 +253233,257.86,78.347 +253234,258.15,79.807 +253235,258.41,81.2704 +253236,258.63,82.7363 +253237,256.6,78.306 +253238,256.85,79.778 +253239,257.06,81.253 +253240,257.24,82.7309 +253241,255.35,78.267 +253242,255.54,79.749 +253243,255.71,81.2352 +253244,255.84,82.7243 +253245,254.09,78.228 +253246,254.24,79.72 +253247,254.36,81.217 +253248,254.45,82.7165 +253249,252.83,78.191 +253250,252.93,79.692 +253251,253.01,81.1984 +253252,253.05,82.7076 +253253,251.57,78.154 +253254,251.63,79.665 +253255,251.66,81.1795 +253256,251.66,82.6974 +253257,250.31,78.12 +253258,250.33,79.637 +253259,250.31,81.1601 +253260,250.26,82.6861 +253261,249.05,78.086 +253262,249.02,79.611 +253263,248.96,81.1403 +253264,248.86,82.6736 +253265,247.8,78.053 +253266,247.72,79.584 +253267,247.61,81.1201 +253268,247.47,82.6599 +253269,246.54,78.022 +253270,246.42,79.558 +253271,246.26,81.0996 +253272,246.07,82.645 +253273,245.28,77.992 +253274,245.11,79.533 +253275,244.91,81.0786 +253276,244.68,82.6289 +253277,244.02,77.964 +253278,243.81,79.508 +253279,243.56,81.0572 +253280,243.28,82.6115 +253281,242.76,77.936 +253282,242.5,79.483 +253283,242.21,81.0354 +253284,241.89,82.593 +253285,241.5,77.91 +253286,241.2,79.459 +253287,240.86,81.0132 +253288,240.49,82.5732 +253289,240.24,77.886 +253290,239.9,79.435 +253291,239.52,80.9906 +253292,239.1,82.5522 +253293,238.98,77.862 +253294,238.59,79.411 +253295,238.17,80.9676 +253296,237.7,82.53 +253297,237.73,77.84 +253298,237.29,79.388 +253299,236.82,80.9441 +253300,236.31,82.5066 +253301,236.47,77.819 +253302,235.99,79.366 +253303,235.47,80.9203 +253304,234.91,82.4819 +253305,235.21,77.799 +253306,234.68,79.344 +253307,234.12,80.8961 +253308,233.52,82.4561 +253309,233.94,77.78 +253310,233.38,79.322 +253311,232.77,80.8714 +253312,232.13,82.429 +253313,232.68,77.763 +253314,232.07,79.3 +253315,231.42,80.8464 +253316,230.73,82.4007 +253317,231.42,77.747 +253318,230.77,79.28 +253319,230.08,80.8209 +253320,229.34,82.3711 +253321,230.16,77.732 +253322,229.46,79.259 +253323,228.73,80.7951 +253324,227.95,82.3404 +253325,228.9,77.719 +253326,228.16,79.239 +253327,227.38,80.7688 +253328,226.56,82.3085 +253329,227.64,77.706 +253330,226.85,79.219 +253331,226.03,80.7422 +253332,225.17,82.2753 +253333,226.37,77.695 +253334,225.55,79.2 +253335,224.68,80.7151 +253336,223.77,82.241 +253337,225.11,77.685 +253338,224.24,79.181 +253339,223.34,80.6877 +253340,222.38,82.2054 +253341,223.84,77.677 +253342,222.94,79.163 +253343,221.99,80.6598 +253344,221,82.1687 +253345,222.58,77.669 +253346,221.63,79.145 +253347,220.64,80.6316 +253348,219.61,82.1308 +253349,221.31,77.663 +253350,220.33,79.127 +253351,219.3,80.603 +253352,218.22,82.0917 +253353,220.05,77.658 +253354,219.02,79.11 +253355,217.95,80.574 +253356,216.83,82.0515 +253357,218.78,77.654 +253358,217.71,79.093 +253359,216.61,80.5446 +253360,215.45,82.0101 +253361,217.51,77.651 +253362,216.41,79.076 +253363,215.26,80.5148 +253364,214.06,81.9676 +253365,216.24,77.65 +253366,215.1,79.06 +253367,213.92,80.4847 +253368,212.68,81.9239 +253369,214.97,77.649 +253370,213.79,79.044 +253371,212.57,80.4542 +253372,211.29,81.8791 +253373,213.7,77.65 +253374,212.49,79.029 +253375,211.23,80.4233 +253376,209.91,81.8332 +253377,212.43,77.652 +253378,211.18,79.014 +253379,209.88,80.3921 +253380,208.53,81.7862 +253381,211.15,77.654 +253382,209.87,79 +253383,208.54,80.3605 +253384,207.15,81.7381 +253385,209.88,77.658 +253386,208.56,78.985 +253387,207.2,80.3285 +253388,205.77,81.6889 +253389,208.61,77.663 +253390,207.26,78.972 +253391,205.85,80.2962 +253392,204.39,81.6387 +253393,207.33,77.669 +253394,205.95,78.958 +253395,204.51,80.2636 +253396,203.01,81.5874 +253397,206.05,77.676 +253398,204.64,78.945 +253399,203.17,80.2306 +253400,201.64,81.535 +253401,204.78,77.684 +253402,203.33,78.932 +253403,201.83,80.1973 +253404,200.26,81.4817 +253405,203.5,77.693 +253406,202.02,78.92 +253407,200.48,80.1637 +253408,198.89,81.4274 +253409,202.22,77.703 +253410,200.71,78.907 +253411,199.14,80.1297 +253412,197.51,81.372 +253413,200.94,77.714 +253414,199.4,78.896 +253415,197.8,80.0954 +253416,196.14,81.3157 +253417,199.66,77.726 +253418,198.09,78.884 +253419,196.46,80.0608 +253420,194.77,81.2585 +253421,198.37,77.739 +253422,196.78,78.873 +253423,195.12,80.026 +253424,193.4,81.2003 +253425,197.09,77.753 +253426,195.46,78.862 +253427,193.78,79.991 +253428,192.03,81.1412 +253429,195.8,77.767 +253430,194.15,78.851 +253431,192.44,79.955 +253432,190.67,81.0812 +253433,194.51,77.783 +253434,192.84,78.841 +253435,191.11,79.92 +253436,189.3,81.0203 +253437,193.23,77.799 +253438,191.53,78.831 +253439,189.77,79.883 +253440,187.94,80.9586 +253441,191.94,77.816 +253442,190.21,78.821 +253443,188.43,79.847 +253444,186.57,80.896 +253445,190.65,77.834 +253446,188.9,78.812 +253447,187.09,79.811 +253448,185.21,80.8326 +253449,189.35,77.853 +253450,187.59,78.803 +253451,185.76,79.774 +253452,183.85,80.7684 +253453,188.06,77.872 +253454,186.27,78.794 +253455,184.42,79.737 +253456,182.49,80.7035 +253457,186.77,77.892 +253458,184.96,78.785 +253459,183.08,79.699 +253460,181.14,80.6378 +253461,185.47,77.913 +253462,183.64,78.776 +253463,181.75,79.662 +253464,179.78,80.5713 +253465,184.17,77.935 +253466,182.33,78.768 +253467,180.41,79.624 +253468,178.43,80.5042 +253469,182.87,77.957 +253470,181.01,78.76 +253471,179.08,79.586 +253472,177.08,80.4364 +253473,181.57,77.98 +253474,179.69,78.752 +253475,177.75,79.548 +253476,175.72,80.3679 +253477,180.27,78.003 +253478,178.38,78.745 +253479,176.41,79.509 +253480,174.38,80.2988 +253481,178.97,78.027 +253482,177.06,78.738 +253483,175.08,79.471 +253484,173.03,80.2291 +253485,177.66,78.051 +253486,175.74,78.73 +253487,173.75,79.432 +253488,171.68,80.1588 +253489,176.36,78.076 +253490,174.42,78.723 +253491,172.42,79.393 +253492,170.34,80.0879 +253493,175.05,78.102 +253494,173.1,78.717 +253495,171.09,79.354 +253496,168.99,80.0165 +253497,173.74,78.128 +253498,171.78,78.71 +253499,169.76,79.315 +253500,167.65,79.945 +253501,172.43,78.154 +253502,170.46,78.703 +253503,168.43,79.275 +253504,166.31,79.872 +253505,171.12,78.181 +253506,169.14,78.697 +253507,167.1,79.236 +253508,164.97,79.799 +253509,169.81,78.208 +253510,167.82,78.691 +253511,165.77,79.196 +253512,163.64,79.726 +253513,168.49,78.236 +253514,166.5,78.685 +253515,164.44,79.156 +253516,162.3,79.652 +253517,167.17,78.264 +253518,165.18,78.679 +253519,163.11,79.116 +253520,160.97,79.578 +253521,165.86,78.292 +253522,163.86,78.673 +253523,161.79,79.076 +253524,159.64,79.504 +253525,164.54,78.32 +253526,162.53,78.667 +253527,160.46,79.036 +253528,158.31,79.429 +253529,163.22,78.349 +253530,161.21,78.662 +253531,159.13,78.996 +253532,156.98,79.354 +253533,161.89,78.378 +253534,159.89,78.656 +253535,157.81,78.955 +253536,155.65,79.279 +253537,160.57,78.407 +253538,158.56,78.65 +253539,156.48,78.915 +253540,154.33,79.204 +253541,159.24,78.437 +253542,157.24,78.645 +253543,155.16,78.874 +253544,153,79.128 +253545,157.92,78.466 +253546,155.91,78.64 +253547,153.83,78.834 +253548,151.68,79.052 +253549,156.59,78.496 +253550,154.58,78.634 +253551,152.51,78.793 +253552,150.36,78.976 +253553,155.26,78.526 +253554,153.26,78.629 +253555,151.19,78.753 +253556,149.04,78.9 +253557,153.93,78.556 +253558,151.93,78.624 +253559,149.87,78.712 +253560,147.73,78.824 +253561,152.59,78.585 +253562,150.6,78.619 +253563,148.55,78.672 +253564,146.41,78.747 +253565,151.26,78.615 +253566,149.28,78.613 +253567,147.22,78.631 +253568,145.1,78.671 +253569,149.92,78.645 +253570,147.95,78.608 +253571,145.9,78.59 +253572,143.79,78.595 +253573,148.59,78.675 +253574,146.62,78.603 +253575,144.58,78.55 +253576,142.48,78.518 +253577,147.25,78.704 +253578,145.29,78.598 +253579,143.27,78.509 +253580,141.17,78.442 +253581,145.91,78.734 +253582,143.96,78.592 +253583,141.95,78.469 +253584,139.86,78.366 +253585,144.56,78.763 +253586,142.63,78.587 +253587,140.63,78.428 +253588,138.55,78.29 +253589,143.22,78.793 +253590,141.3,78.582 +253591,139.31,78.388 +253592,137.25,78.214 +253593,141.88,78.822 +253594,139.97,78.576 +253595,137.99,78.348 +253596,135.95,78.138 +253597,140.53,78.851 +253598,138.64,78.571 +253599,136.68,78.307 +253600,134.65,78.063 +253601,139.18,78.879 +253602,137.3,78.565 +253603,135.36,78.267 +253604,133.35,77.987 +253605,137.83,78.908 +253606,135.97,78.56 +253607,134.05,78.227 +253608,132.05,77.912 +253609,136.48,78.936 +253610,134.64,78.554 +253611,132.73,78.187 +253612,130.76,77.837 +253613,135.13,78.964 +253614,133.3,78.548 +253615,131.42,78.147 +253616,129.46,77.763 +253617,133.78,78.991 +253618,131.97,78.542 +253619,130.1,78.107 +253620,128.17,77.689 +253621,132.42,79.018 +253622,130.64,78.536 +253623,128.79,78.068 +253624,126.88,77.615 +253625,131.06,79.045 +253626,129.3,78.53 +253627,127.48,78.028 +253628,125.59,77.542 +253629,129.71,79.071 +253630,127.96,78.524 +253631,126.16,77.989 +253632,124.3,77.469 +253633,128.35,79.097 +253634,126.63,78.517 +253635,124.85,77.95 +253636,123.01,77.396 +253637,126.99,79.122 +253638,125.29,78.511 +253639,123.54,77.911 +253640,121.73,77.324 +253641,125.63,79.147 +253642,123.96,78.504 +253643,122.23,77.872 +253644,120.44,77.253 +253645,124.26,79.171 +253646,122.62,78.497 +253647,120.92,77.833 +253648,119.16,77.182 +253649,122.9,79.195 +253650,121.28,78.49 +253651,119.61,77.795 +253652,117.88,77.111 +253653,121.53,79.218 +253654,119.94,78.483 +253655,118.3,77.756 +253656,116.6,77.042 +253657,120.17,79.241 +253658,118.6,78.475 +253659,116.99,77.718 +253660,115.32,76.972 +253661,118.8,79.263 +253662,117.27,78.468 +253663,115.68,77.68 +253664,114.04,76.904 +253665,117.43,79.284 +253666,115.93,78.46 +253667,114.37,77.643 +253668,112.76,76.836 +253669,116.06,79.305 +253670,114.59,78.452 +253671,113.07,77.605 +253672,111.49,76.769 +253673,114.69,79.325 +253674,113.25,78.443 +253675,111.76,77.568 +253676,110.22,76.702 +253677,113.31,79.344 +253678,111.91,78.435 +253679,110.45,77.531 +253680,108.94,76.636 +253681,111.94,79.363 +253682,110.57,78.426 +253683,109.14,77.495 +253684,107.67,76.571 +253685,110.56,79.381 +253686,109.23,78.417 +253687,107.84,77.458 +253688,106.4,76.507 +253689,109.19,79.398 +253690,107.88,78.407 +253691,106.53,77.422 +253692,105.13,76.444 +253693,107.81,79.414 +253694,106.54,78.398 +253695,105.23,77.386 +253696,103.86,76.381 +253697,106.43,79.429 +253698,105.2,78.388 +253699,103.92,77.351 +253700,102.6,76.319 +253701,105.05,79.444 +253702,103.86,78.378 +253703,102.62,77.315 +253704,101.33,76.258 +253705,103.67,79.458 +253706,102.52,78.367 +253707,101.31,77.28 +253708,100.06,76.198 +253709,102.29,79.471 +253710,101.17,78.357 +253711,100.01,77.246 +253712,98.801,76.139 +253713,100.91,79.483 +253714,99.829,78.346 +253715,98.706,77.211 +253716,97.538,76.081 +253717,99.528,79.494 +253718,98.486,78.335 +253719,97.403,77.177 +253720,96.275,76.024 +253721,98.144,79.504 +253722,97.142,78.323 +253723,96.1,77.143 +253724,95.014,75.967 +253725,96.759,79.513 +253726,95.798,78.311 +253727,94.797,77.11 +253728,93.753,75.912 +253729,95.374,79.522 +253730,94.454,78.299 +253731,93.494,77.077 +253732,92.494,75.858 +253733,93.988,79.529 +253734,93.11,78.286 +253735,92.192,77.044 +253736,91.235,75.805 +253737,92.601,79.535 +253738,91.765,78.273 +253739,90.89,77.012 +253740,89.976,75.752 +253741,91.213,79.541 +253742,90.42,78.26 +253743,89.589,76.98 +253744,88.719,75.701 +253745,89.825,79.545 +253746,89.075,78.247 +253747,88.288,76.948 +253748,87.462,75.651 +253749,88.436,79.548 +253750,87.73,78.233 +253751,86.986,76.917 +253752,86.205,75.602 +253753,87.047,79.551 +253754,86.384,78.219 +253755,85.686,76.886 +253756,84.95,75.554 +253757,85.657,79.552 +253758,85.038,78.204 +253759,84.385,76.855 +253760,83.695,75.507 +253761,84.266,79.552 +253762,83.693,78.189 +253763,83.084,76.825 +253764,82.44,75.462 +253765,82.875,79.551 +253766,82.347,78.174 +253767,81.784,76.795 +253768,81.186,75.417 +253769,81.483,79.549 +253770,81.001,78.158 +253771,80.484,76.766 +253772,79.932,75.374 +253773,80.091,79.546 +253774,79.654,78.142 +253775,79.184,76.737 +253776,78.679,75.331 +253777,78.698,79.542 +253778,78.308,78.126 +253779,77.884,76.708 +253780,77.426,75.29 +253781,77.305,79.536 +253782,76.962,78.109 +253783,76.585,76.68 +253784,76.174,75.25 +253785,75.912,79.53 +253786,75.615,78.092 +253787,75.285,76.652 +253788,74.922,75.212 +253789,74.518,79.522 +253790,74.268,78.074 +253791,73.986,76.624 +253792,73.67,75.174 +253793,73.124,79.514 +253794,72.922,78.056 +253795,72.686,76.597 +253796,72.418,75.138 +253797,71.73,79.504 +253798,71.575,78.038 +253799,71.387,76.57 +253800,71.167,75.103 +253801,70.336,79.493 +253802,70.228,78.019 +253803,70.088,76.544 +253804,69.915,75.069 +253805,68.941,79.481 +253806,68.881,78 +253807,68.789,76.518 +253808,68.664,75.036 +253809,67.547,79.467 +253810,67.535,77.981 +253811,67.49,76.493 +253812,67.413,75.004 +253813,66.152,79.453 +253814,66.188,77.961 +253815,66.191,76.468 +253816,66.162,74.974 +253817,64.757,79.437 +253818,64.841,77.941 +253819,64.892,76.443 +253820,64.911,74.945 +253821,63.362,79.42 +253822,63.494,77.92 +253823,63.593,76.419 +253824,63.66,74.917 +253825,61.967,79.402 +253826,62.147,77.899 +253827,62.294,76.395 +253828,62.409,74.891 +253829,60.572,79.383 +253830,60.801,77.878 +253831,60.995,76.372 +253832,61.158,74.865 +253833,59.178,79.363 +253834,59.454,77.856 +253835,59.697,76.349 +253836,59.907,74.841 +253837,57.783,79.341 +253838,58.107,77.834 +253839,58.398,76.326 +253840,58.655,74.819 +253841,56.388,79.318 +253842,56.761,77.811 +253843,57.099,76.304 +253844,57.404,74.797 +253845,54.994,79.294 +253846,55.414,77.788 +253847,55.8,76.282 +253848,56.152,74.777 +253849,53.6,79.269 +253850,54.068,77.765 +253851,54.5,76.261 +253852,54.9,74.757 +253853,52.206,79.243 +253854,52.722,77.741 +253855,53.201,76.24 +253856,53.647,74.74 +253857,50.813,79.215 +253858,51.375,77.717 +253859,51.902,76.219 +253860,52.395,74.723 +253861,49.419,79.187 +253862,50.029,77.692 +253863,50.603,76.199 +253864,51.141,74.708 +253865,48.026,79.157 +253866,48.684,77.667 +253867,49.303,76.179 +253868,49.888,74.693 +253869,46.634,79.126 +253870,47.338,77.642 +253871,48.004,76.16 +253872,48.634,74.68 +253873,45.242,79.094 +253874,45.992,77.616 +253875,46.704,76.141 +253876,47.379,74.669 +253877,43.851,79.06 +253878,44.647,77.59 +253879,45.404,76.122 +253880,46.124,74.658 +253881,42.46,79.026 +253882,43.302,77.564 +253883,44.104,76.104 +253884,44.869,74.649 +253885,41.069,78.99 +253886,41.957,77.537 +253887,42.804,76.087 +253888,43.613,74.64 +253889,39.679,78.953 +253890,40.612,77.509 +253891,41.503,76.069 +253892,42.356,74.633 +253893,38.29,78.915 +253894,39.268,77.482 +253895,40.203,76.052 +253896,41.098,74.628 +253897,36.901,78.876 +253898,37.924,77.454 +253899,38.902,76.036 +253900,39.84,74.623 +253901,35.514,78.836 +253902,36.58,77.425 +253903,37.601,76.02 +253904,38.582,74.619 +253905,34.126,78.795 +253906,35.236,77.397 +253907,36.3,76.004 +253908,37.322,74.617 +253909,32.74,78.752 +253910,33.893,77.367 +253911,34.998,75.988 +253912,36.062,74.616 +253913,31.354,78.709 +253914,32.549,77.338 +253915,33.696,75.973 +253916,34.8,74.616 +253917,29.97,78.664 +253918,31.207,77.308 +253919,32.394,75.959 +253920,33.538,74.617 +253921,28.586,78.619 +253922,29.864,77.278 +253923,31.092,75.944 +253924,32.276,74.619 +253925,27.203,78.572 +253926,28.522,77.247 +253927,29.789,75.931 +253928,31.012,74.622 +253929,25.821,78.524 +253930,27.18,77.217 +253931,28.487,75.917 +253932,29.747,74.626 +253933,24.44,78.476 +253934,25.838,77.185 +253935,27.183,75.904 +253936,28.481,74.631 +253937,23.06,78.426 +253938,24.497,77.154 +253939,25.88,75.891 +253940,27.215,74.637 +253941,21.68,78.375 +253942,23.156,77.122 +253943,24.576,75.878 +253944,25.947,74.645 +253945,20.302,78.323 +253946,21.816,77.09 +253947,23.272,75.866 +253948,24.678,74.653 +253949,18.926,78.27 +253950,20.476,77.057 +253951,21.968,75.854 +253952,23.409,74.662 +253953,17.55,78.217 +253954,19.136,77.024 +253955,20.663,75.843 +253956,22.138,74.672 +253957,16.175,78.162 +253958,17.797,76.991 +253959,19.358,75.832 +253960,20.866,74.683 +253961,14.802,78.106 +253962,16.458,76.958 +253963,18.052,75.821 +253964,19.593,74.695 +253965,13.429,78.05 +253966,15.12,76.924 +253967,16.746,75.81 +253968,18.318,74.708 +253969,12.058,77.993 +253970,13.782,76.89 +253971,15.44,75.8 +253972,17.043,74.722 +253973,10.689,77.934 +253974,12.444,76.855 +253975,14.133,75.79 +253976,15.766,74.737 +253977,9.3203,77.875 +253978,11.107,76.821 +253979,12.826,75.78 +253980,14.488,74.753 +253981,7.9532,77.815 +253982,9.7702,76.786 +253983,11.519,75.771 +253984,13.209,74.769 +253985,6.5874,77.755 +253986,8.434,76.751 +253987,10.211,75.762 +253988,11.928,74.786 +253989,5.223,77.693 +253990,7.0982,76.715 +253991,8.9027,75.753 +253992,10.646,74.804 +253993,3.8599,77.631 +253994,5.7629,76.68 +253995,7.5939,75.744 +253996,9.3633,74.823 +253997,2.4983,77.568 +253998,4.4281,76.644 +253999,6.2848,75.736 +254000,8.0788,74.842 +254001,1.1382,77.504 +254002,3.0938,76.608 +254003,4.9751,75.727 +254004,6.7929,74.862 +254005,359.78,77.439 +254006,1.7599,76.571 +254007,3.6651,75.72 +254008,5.5057,74.883 +254009,358.42,77.374 +254010,0.42662,76.535 +254011,2.3546,75.712 +254012,4.2171,74.905 +254013,357.07,77.308 +254014,359.09,76.498 +254015,1.0436,75.704 +254016,2.927,74.927 +254017,355.71,77.242 +254018,357.76,76.461 +254019,359.73,75.697 +254020,1.6356,74.95 +254021,354.36,77.175 +254022,356.43,76.424 +254023,358.42,75.69 +254024,0.34266,74.973 +254025,353.01,77.107 +254026,355.1,76.386 +254027,357.11,75.683 +254028,359.05,74.997 +254029,351.66,77.039 +254030,353.77,76.349 +254031,355.8,75.677 +254032,357.75,75.021 +254033,350.31,76.97 +254034,352.44,76.311 +254035,354.48,75.67 +254036,356.46,75.046 +254037,348.96,76.901 +254038,351.11,76.273 +254039,353.17,75.664 +254040,355.16,75.072 +254041,347.62,76.831 +254042,349.78,76.235 +254043,351.85,75.658 +254044,353.86,75.098 +254045,346.28,76.761 +254046,348.45,76.197 +254047,350.54,75.652 +254048,352.55,75.124 +254049,344.94,76.69 +254050,347.12,76.158 +254051,349.22,75.646 +254052,351.25,75.151 +254053,343.6,76.619 +254054,345.79,76.12 +254055,347.91,75.64 +254056,349.95,75.178 +254057,342.26,76.547 +254058,344.47,76.081 +254059,346.59,75.635 +254060,348.64,75.205 +254061,340.92,76.475 +254062,343.14,76.043 +254063,345.27,75.629 +254064,347.33,75.233 +254065,339.59,76.403 +254066,341.82,76.004 +254067,343.96,75.624 +254068,346.02,75.261 +254069,338.25,76.33 +254070,340.49,75.965 +254071,342.64,75.619 +254072,344.71,75.29 +254073,336.92,76.258 +254074,339.17,75.926 +254075,341.32,75.613 +254076,343.4,75.319 +254077,335.59,76.184 +254078,337.84,75.887 +254079,340,75.608 +254080,342.08,75.347 +254081,334.27,76.111 +254082,336.52,75.848 +254083,338.68,75.603 +254084,340.77,75.377 +254085,332.94,76.038 +254086,335.2,75.808 +254087,337.36,75.598 +254088,339.45,75.406 +254089,331.61,75.964 +254090,333.87,75.769 +254091,336.04,75.594 +254092,338.13,75.435 +254093,330.29,75.89 +254094,332.55,75.73 +254095,334.72,75.589 +254096,336.81,75.465 +254097,328.97,75.816 +254098,331.23,75.69 +254099,333.4,75.584 +254100,335.49,75.494 +254101,327.65,75.742 +254102,329.91,75.651 +254103,332.08,75.579 +254104,334.17,75.524 +254105,326.33,75.668 +254106,328.59,75.612 +254107,330.75,75.574 +254108,332.84,75.554 +254109,325.02,75.593 +254110,327.27,75.572 +254111,329.43,75.57 +254112,331.51,75.583 +254113,323.71,75.519 +254114,325.95,75.533 +254115,328.11,75.565 +254116,330.18,75.613 +254117,322.39,75.445 +254118,324.63,75.494 +254119,326.78,75.56 +254120,328.85,75.642 +254121,321.08,75.371 +254122,323.32,75.454 +254123,325.46,75.555 +254124,327.52,75.672 +254125,319.77,75.297 +254126,322,75.415 +254127,324.13,75.551 +254128,326.19,75.701 +254129,318.47,75.223 +254130,320.68,75.376 +254131,322.81,75.546 +254132,324.85,75.731 +254133,317.16,75.149 +254134,319.37,75.337 +254135,321.48,75.541 +254136,323.52,75.76 +254137,315.86,75.076 +254138,318.05,75.297 +254139,320.15,75.536 +254140,322.18,75.789 +254141,314.56,75.002 +254142,316.74,75.258 +254143,318.83,75.531 +254144,320.84,75.817 +254145,313.26,74.929 +254146,315.42,75.219 +254147,317.5,75.526 +254148,319.5,75.846 +254149,311.96,74.856 +254150,314.11,75.181 +254151,316.17,75.521 +254152,318.16,75.874 +254153,310.66,74.783 +254154,312.79,75.142 +254155,314.84,75.516 +254156,316.81,75.902 +254157,309.36,74.711 +254158,311.48,75.103 +254159,313.51,75.51 +254160,315.47,75.93 +254161,308.07,74.639 +254162,310.17,75.064 +254163,312.18,75.505 +254164,314.12,75.957 +254165,306.78,74.567 +254166,308.86,75.026 +254167,310.85,75.499 +254168,312.77,75.984 +254169,305.49,74.496 +254170,307.55,74.988 +254171,309.52,75.493 +254172,311.42,76.01 +254173,304.2,74.425 +254174,306.24,74.95 +254175,308.19,75.488 +254176,310.07,76.036 +254177,302.91,74.354 +254178,304.93,74.912 +254179,306.86,75.482 +254180,308.72,76.062 +254181,301.63,74.284 +254182,303.62,74.874 +254183,305.53,75.475 +254184,307.36,76.087 +254185,300.34,74.214 +254186,302.31,74.836 +254187,304.19,75.469 +254188,306.01,76.111 +254189,299.06,74.145 +254190,301,74.799 +254191,302.86,75.463 +254192,304.65,76.136 +254193,297.78,74.077 +254194,299.69,74.761 +254195,301.53,75.456 +254196,303.29,76.159 +254197,296.5,74.009 +254198,298.38,74.724 +254199,300.19,75.449 +254200,301.93,76.182 +254201,295.22,73.942 +254202,297.08,74.687 +254203,298.86,75.442 +254204,300.57,76.204 +254205,293.94,73.875 +254206,295.77,74.65 +254207,297.52,75.435 +254208,299.21,76.226 +254209,292.67,73.809 +254210,294.47,74.614 +254211,296.19,75.427 +254212,297.84,76.247 +254213,291.39,73.744 +254214,293.16,74.578 +254215,294.85,75.42 +254216,296.48,76.268 +254217,290.12,73.679 +254218,291.86,74.542 +254219,293.52,75.412 +254220,295.11,76.288 +254221,288.85,73.615 +254222,290.55,74.506 +254223,292.18,75.404 +254224,293.75,76.307 +254225,287.58,73.552 +254226,289.25,74.47 +254227,290.84,75.395 +254228,292.38,76.325 +254229,286.31,73.489 +254230,287.94,74.435 +254231,289.51,75.387 +254232,291.01,76.343 +254233,285.04,73.427 +254234,286.64,74.4 +254235,288.17,75.378 +254236,289.64,76.36 +254237,283.78,73.366 +254238,285.34,74.365 +254239,286.83,75.369 +254240,288.26,76.376 +254241,282.51,73.306 +254242,284.03,74.331 +254243,285.49,75.36 +254244,286.89,76.391 +254245,281.25,73.247 +254246,282.73,74.296 +254247,284.15,75.35 +254248,285.51,76.405 +254249,279.99,73.189 +254250,281.43,74.263 +254251,282.81,75.34 +254252,284.14,76.419 +254253,278.72,73.131 +254254,280.13,74.229 +254255,281.47,75.33 +254256,282.76,76.432 +254257,277.46,73.075 +254258,278.83,74.196 +254259,280.13,75.319 +254260,281.38,76.443 +254261,276.2,73.019 +254262,277.53,74.163 +254263,278.79,75.308 +254264,280,76.454 +254265,274.95,72.964 +254266,276.23,74.13 +254267,277.45,75.297 +254268,278.62,76.464 +254269,273.69,72.911 +254270,274.93,74.098 +254271,276.11,75.286 +254272,277.24,76.473 +254273,272.43,72.858 +254274,273.63,74.066 +254275,274.77,75.274 +254276,275.86,76.482 +254277,271.18,72.806 +254278,272.33,74.034 +254279,273.43,75.262 +254280,274.48,76.489 +254281,269.92,72.755 +254282,271.03,74.003 +254283,272.09,75.25 +254284,273.1,76.495 +254285,268.67,72.706 +254286,269.73,73.971 +254287,270.75,75.237 +254288,271.71,76.5 +254289,267.41,72.657 +254290,268.43,73.941 +254291,269.4,75.224 +254292,270.33,76.504 +254293,266.16,72.609 +254294,267.14,73.911 +254295,268.06,75.211 +254296,268.94,76.508 +254297,264.91,72.563 +254298,265.84,73.881 +254299,266.72,75.197 +254300,267.55,76.51 +254301,263.66,72.517 +254302,264.54,73.851 +254303,265.38,75.183 +254304,266.17,76.511 +254305,262.41,72.473 +254306,263.24,73.822 +254307,264.03,75.168 +254308,264.78,76.511 +254309,261.16,72.43 +254310,261.95,73.793 +254311,262.69,75.153 +254312,263.39,76.51 +254313,259.91,72.388 +254314,260.65,73.764 +254315,261.35,75.138 +254316,262,76.508 +254317,258.66,72.347 +254318,259.35,73.736 +254319,260,75.123 +254320,260.61,76.505 +254321,257.41,72.307 +254322,258.06,73.708 +254323,258.66,75.107 +254324,259.22,76.5 +254325,256.17,72.268 +254326,256.76,73.681 +254327,257.31,75.091 +254328,257.83,76.495 +254329,254.92,72.231 +254330,255.46,73.654 +254331,255.97,75.074 +254332,256.44,76.489 +254333,253.67,72.195 +254334,254.17,73.628 +254335,254.63,75.057 +254336,255.05,76.481 +254337,252.43,72.16 +254338,252.87,73.601 +254339,253.28,75.039 +254340,253.65,76.472 +254341,251.18,72.126 +254342,251.58,73.576 +254343,251.94,75.022 +254344,252.26,76.462 +254345,249.94,72.093 +254346,250.28,73.55 +254347,250.59,75.004 +254348,250.87,76.451 +254349,248.69,72.061 +254350,248.99,73.525 +254351,249.25,74.985 +254352,249.47,76.439 +254353,247.44,72.031 +254354,247.69,73.501 +254355,247.9,74.966 +254356,248.08,76.426 +254357,246.2,72.002 +254358,246.4,73.476 +254359,246.56,74.947 +254360,246.69,76.411 +254361,244.95,71.974 +254362,245.1,73.453 +254363,245.21,74.927 +254364,245.29,76.396 +254365,243.71,71.947 +254366,243.81,73.429 +254367,243.87,74.907 +254368,243.9,76.379 +254369,242.47,71.922 +254370,242.51,73.406 +254371,242.52,74.886 +254372,242.5,76.361 +254373,241.22,71.897 +254374,241.22,73.384 +254375,241.18,74.866 +254376,241.11,76.342 +254377,239.98,71.874 +254378,239.92,73.361 +254379,239.83,74.844 +254380,239.71,76.321 +254381,238.73,71.853 +254382,238.63,73.34 +254383,238.49,74.823 +254384,238.32,76.3 +254385,237.49,71.832 +254386,237.33,73.318 +254387,237.14,74.801 +254388,236.93,76.277 +254389,236.24,71.813 +254390,236.04,73.297 +254391,235.8,74.778 +254392,235.53,76.253 +254393,235,71.795 +254394,234.74,73.277 +254395,234.45,74.755 +254396,234.14,76.228 +254397,233.75,71.778 +254398,233.45,73.257 +254399,233.11,74.732 +254400,232.74,76.202 +254401,232.5,71.762 +254402,232.15,73.237 +254403,231.77,74.708 +254404,231.35,76.175 +254405,231.26,71.747 +254406,230.86,73.218 +254407,230.42,74.684 +254408,229.95,76.146 +254409,230.01,71.734 +254410,229.56,73.199 +254411,229.08,74.66 +254412,228.56,76.117 +254413,228.76,71.722 +254414,228.26,73.18 +254415,227.73,74.635 +254416,227.17,76.086 +254417,227.52,71.711 +254418,226.97,73.162 +254419,226.39,74.61 +254420,225.77,76.054 +254421,226.27,71.702 +254422,225.67,73.144 +254423,225.04,74.584 +254424,224.38,76.021 +254425,225.02,71.693 +254426,224.38,73.127 +254427,223.7,74.558 +254428,222.99,75.987 +254429,223.77,71.686 +254430,223.08,73.11 +254431,222.36,74.532 +254432,221.6,75.951 +254433,222.52,71.679 +254434,221.79,73.093 +254435,221.01,74.505 +254436,220.21,75.915 +254437,221.27,71.674 +254438,220.49,73.077 +254439,219.67,74.478 +254440,218.82,75.877 +254441,220.02,71.671 +254442,219.19,73.061 +254443,218.33,74.451 +254444,217.42,75.838 +254445,218.77,71.668 +254446,217.9,73.046 +254447,216.98,74.423 +254448,216.04,75.798 +254449,217.52,71.666 +254450,216.6,73.031 +254451,215.64,74.395 +254452,214.65,75.757 +254453,216.27,71.666 +254454,215.3,73.016 +254455,214.3,74.366 +254456,213.26,75.715 +254457,215.02,71.666 +254458,214,73.002 +254459,212.96,74.337 +254460,211.87,75.672 +254461,213.76,71.668 +254462,212.71,72.988 +254463,211.62,74.308 +254464,210.48,75.628 +254465,212.51,71.671 +254466,211.41,72.974 +254467,210.27,74.278 +254468,209.1,75.583 +254469,211.25,71.675 +254470,210.11,72.961 +254471,208.93,74.248 +254472,207.71,75.537 +254473,209.99,71.679 +254474,208.81,72.948 +254475,207.59,74.218 +254476,206.33,75.489 +254477,208.74,71.685 +254478,207.51,72.935 +254479,206.25,74.187 +254480,204.94,75.441 +254481,207.48,71.692 +254482,206.22,72.923 +254483,204.91,74.156 +254484,203.56,75.392 +254485,206.22,71.7 +254486,204.92,72.911 +254487,203.57,74.125 +254488,202.18,75.341 +254489,204.96,71.709 +254490,203.62,72.899 +254491,202.23,74.093 +254492,200.8,75.29 +254493,203.7,71.719 +254494,202.32,72.888 +254495,200.89,74.061 +254496,199.42,75.238 +254497,202.43,71.73 +254498,201.02,72.877 +254499,199.55,74.029 +254500,198.04,75.185 +254501,201.17,71.742 +254502,199.72,72.867 +254503,198.21,73.997 +254504,196.66,75.13 +254505,199.9,71.754 +254506,198.41,72.856 +254507,196.88,73.964 +254508,195.28,75.075 +254509,198.64,71.768 +254510,197.11,72.846 +254511,195.54,73.93 +254512,193.91,75.02 +254513,197.37,71.782 +254514,195.81,72.837 +254515,194.2,73.897 +254516,192.53,74.963 +254517,196.1,71.797 +254518,194.51,72.827 +254519,192.86,73.863 +254520,191.16,74.905 +254521,194.83,71.814 +254522,193.21,72.818 +254523,191.53,73.829 +254524,189.79,74.847 +254525,193.56,71.83 +254526,191.9,72.809 +254527,190.19,73.795 +254528,188.42,74.787 +254529,192.29,71.848 +254530,190.6,72.801 +254531,188.86,73.76 +254532,187.05,74.727 +254533,191.02,71.867 +254534,189.3,72.792 +254535,187.52,73.726 +254536,185.68,74.666 +254537,189.74,71.886 +254538,187.99,72.784 +254539,186.19,73.69 +254540,184.31,74.605 +254541,188.47,71.906 +254542,186.69,72.776 +254543,184.85,73.655 +254544,182.95,74.542 +254545,187.19,71.926 +254546,185.38,72.769 +254547,183.52,73.62 +254548,181.58,74.479 +254549,185.91,71.948 +254550,184.08,72.761 +254551,182.19,73.584 +254552,180.22,74.416 +254553,184.63,71.97 +254554,182.77,72.754 +254555,180.85,73.548 +254556,178.86,74.351 +254557,183.35,71.992 +254558,181.47,72.747 +254559,179.52,73.512 +254560,177.5,74.286 +254561,182.06,72.015 +254562,180.16,72.74 +254563,178.19,73.475 +254564,176.14,74.22 +254565,180.78,72.039 +254566,178.85,72.734 +254567,176.86,73.439 +254568,174.78,74.154 +254569,179.49,72.063 +254570,177.54,72.727 +254571,175.53,73.402 +254572,173.43,74.087 +254573,178.21,72.088 +254574,176.24,72.721 +254575,174.2,73.365 +254576,172.07,74.02 +254577,176.92,72.114 +254578,174.93,72.715 +254579,172.87,73.328 +254580,170.72,73.952 +254581,175.63,72.139 +254582,173.62,72.709 +254583,171.54,73.29 +254584,169.37,73.883 +254585,174.33,72.166 +254586,172.31,72.704 +254587,170.21,73.253 +254588,168.02,73.814 +254589,173.04,72.192 +254590,171,72.698 +254591,168.88,73.215 +254592,166.68,73.745 +254593,171.74,72.22 +254594,169.69,72.693 +254595,167.55,73.178 +254596,165.33,73.675 +254597,170.45,72.247 +254598,168.38,72.687 +254599,166.23,73.14 +254600,163.99,73.605 +254601,169.15,72.275 +254602,167.06,72.682 +254603,164.9,73.102 +254604,162.64,73.534 +254605,167.85,72.303 +254606,165.75,72.677 +254607,163.57,73.064 +254608,161.3,73.463 +254609,166.55,72.331 +254610,164.44,72.672 +254611,162.25,73.025 +254612,159.97,73.391 +254613,165.24,72.36 +254614,163.12,72.667 +254615,160.92,72.987 +254616,158.63,73.32 +254617,163.94,72.389 +254618,161.81,72.663 +254619,159.6,72.949 +254620,157.29,73.248 +254621,162.63,72.418 +254622,160.5,72.658 +254623,158.28,72.91 +254624,155.96,73.176 +254625,161.33,72.447 +254626,159.18,72.653 +254627,156.95,72.871 +254628,154.63,73.103 +254629,160.02,72.477 +254630,157.87,72.649 +254631,155.63,72.833 +254632,153.3,73.031 +254633,158.7,72.506 +254634,156.55,72.644 +254635,154.31,72.794 +254636,151.97,72.958 +254637,157.39,72.536 +254638,155.23,72.64 +254639,152.99,72.755 +254640,150.64,72.885 +254641,156.08,72.566 +254642,153.92,72.635 +254643,151.67,72.717 +254644,149.32,72.812 +254645,154.76,72.596 +254646,152.6,72.631 +254647,150.35,72.678 +254648,148,72.739 +254649,153.44,72.625 +254650,151.28,72.626 +254651,149.03,72.639 +254652,146.67,72.665 +254653,152.12,72.655 +254654,149.96,72.622 +254655,147.71,72.6 +254656,145.36,72.592 +254657,150.8,72.685 +254658,148.64,72.618 +254659,146.39,72.562 +254660,144.04,72.519 +254661,149.48,72.715 +254662,147.32,72.613 +254663,145.07,72.523 +254664,142.72,72.446 +254665,148.15,72.744 +254666,146,72.609 +254667,143.76,72.484 +254668,141.41,72.373 +254669,146.83,72.774 +254670,144.68,72.604 +254671,142.44,72.445 +254672,140.1,72.299 +254673,145.5,72.803 +254674,143.36,72.6 +254675,141.12,72.407 +254676,138.79,72.227 +254677,144.17,72.832 +254678,142.04,72.595 +254679,139.81,72.368 +254680,137.48,72.154 +254681,142.84,72.861 +254682,140.71,72.59 +254683,138.49,72.33 +254684,136.17,72.081 +254685,141.51,72.89 +254686,139.39,72.586 +254687,137.18,72.291 +254688,134.87,72.009 +254689,140.17,72.919 +254690,138.07,72.581 +254691,135.87,72.253 +254692,133.56,71.936 +254693,138.84,72.947 +254694,136.74,72.576 +254695,134.55,72.214 +254696,132.26,71.864 +254697,137.5,72.975 +254698,135.42,72.571 +254699,133.24,72.176 +254700,130.96,71.792 +254701,136.16,73.002 +254702,134.09,72.566 +254703,131.93,72.138 +254704,129.67,71.721 +254705,134.82,73.029 +254706,132.77,72.56 +254707,130.62,72.1 +254708,128.37,71.65 +254709,133.48,73.056 +254710,131.44,72.555 +254711,129.31,72.062 +254712,127.08,71.579 +254713,132.13,73.083 +254714,130.11,72.55 +254715,128,72.024 +254716,125.78,71.509 +254717,130.79,73.109 +254718,128.78,72.544 +254719,126.69,71.987 +254720,124.49,71.439 +254721,129.44,73.134 +254722,127.46,72.538 +254723,125.38,71.949 +254724,123.2,71.369 +254725,128.09,73.159 +254726,126.13,72.532 +254727,124.07,71.912 +254728,121.92,71.3 +254729,126.74,73.184 +254730,124.8,72.526 +254731,122.76,71.875 +254732,120.63,71.232 +254733,125.39,73.207 +254734,123.47,72.52 +254735,121.46,71.838 +254736,119.35,71.164 +254737,124.04,73.231 +254738,122.14,72.513 +254739,120.15,71.801 +254740,118.06,71.096 +254741,122.69,73.254 +254742,120.81,72.507 +254743,118.84,71.764 +254744,116.78,71.029 +254745,121.33,73.276 +254746,119.48,72.5 +254747,117.54,71.728 +254748,115.5,70.963 +254749,119.97,73.297 +254750,118.15,72.493 +254751,116.23,71.692 +254752,114.23,70.897 +254753,118.62,73.318 +254754,116.81,72.485 +254755,114.93,71.656 +254756,112.95,70.832 +254757,117.26,73.339 +254758,115.48,72.478 +254759,113.63,71.62 +254760,111.68,70.767 +254761,115.89,73.358 +254762,114.15,72.47 +254763,112.32,71.584 +254764,110.4,70.704 +254765,114.53,73.377 +254766,112.82,72.462 +254767,111.02,71.549 +254768,109.13,70.64 +254769,113.17,73.395 +254770,111.48,72.454 +254771,109.72,71.514 +254772,107.86,70.578 +254773,111.8,73.412 +254774,110.15,72.445 +254775,108.41,71.479 +254776,106.59,70.517 +254777,110.44,73.429 +254778,108.81,72.436 +254779,107.11,71.445 +254780,105.33,70.456 +254781,109.07,73.445 +254782,107.48,72.427 +254783,105.81,71.41 +254784,104.06,70.396 +254785,107.7,73.46 +254786,106.14,72.418 +254787,104.51,71.376 +254788,102.8,70.337 +254789,106.33,73.474 +254790,104.81,72.409 +254791,103.21,71.343 +254792,101.53,70.278 +254793,104.96,73.487 +254794,103.47,72.399 +254795,101.91,71.309 +254796,100.27,70.221 +254797,103.59,73.499 +254798,102.13,72.389 +254799,100.61,71.276 +254800,99.009,70.164 +254801,102.21,73.511 +254802,100.8,72.378 +254803,99.313,71.243 +254804,97.75,70.109 +254805,100.84,73.521 +254806,99.46,72.367 +254807,98.014,71.211 +254808,96.492,70.054 +254809,99.461,73.531 +254810,98.123,72.356 +254811,96.716,71.179 +254812,95.235,70 +254813,98.084,73.54 +254814,96.785,72.345 +254815,95.418,71.147 +254816,93.979,69.947 +254817,96.706,73.547 +254818,95.446,72.333 +254819,94.121,71.115 +254820,92.724,69.895 +254821,95.327,73.554 +254822,94.108,72.321 +254823,92.824,71.084 +254824,91.471,69.844 +254825,93.947,73.56 +254826,92.768,72.309 +254827,91.527,71.053 +254828,90.218,69.794 +254829,92.566,73.565 +254830,91.429,72.296 +254831,90.231,71.022 +254832,88.966,69.746 +254833,91.184,73.568 +254834,90.089,72.283 +254835,88.935,70.992 +254836,87.715,69.698 +254837,89.801,73.571 +254838,88.749,72.269 +254839,87.639,70.962 +254840,86.466,69.651 +254841,88.417,73.573 +254842,87.409,72.256 +254843,86.344,70.933 +254844,85.217,69.605 +254845,87.033,73.573 +254846,86.069,72.242 +254847,85.049,70.903 +254848,83.969,69.561 +254849,85.647,73.573 +254850,84.728,72.227 +254851,83.754,70.875 +254852,82.721,69.517 +254853,84.261,73.571 +254854,83.387,72.212 +254855,82.46,70.846 +254856,81.475,69.475 +254857,82.874,73.569 +254858,82.046,72.197 +254859,81.165,70.818 +254860,80.229,69.434 +254861,81.487,73.565 +254862,80.704,72.182 +254863,79.871,70.79 +254864,78.984,69.393 +254865,80.099,73.56 +254866,79.363,72.166 +254867,78.578,70.763 +254868,77.74,69.354 +254869,78.71,73.554 +254870,78.021,72.149 +254871,77.284,70.736 +254872,76.496,69.316 +254873,77.32,73.547 +254874,76.679,72.133 +254875,75.991,70.709 +254876,75.253,69.28 +254877,75.93,73.539 +254878,75.337,72.115 +254879,74.698,70.683 +254880,74.01,69.244 +254881,74.54,73.53 +254882,73.994,72.098 +254883,73.405,70.657 +254884,72.768,69.21 +254885,73.149,73.519 +254886,72.652,72.08 +254887,72.112,70.632 +254888,71.527,69.177 +254889,71.757,73.508 +254890,71.309,72.062 +254891,70.819,70.607 +254892,70.285,69.145 +254893,70.365,73.495 +254894,69.966,72.043 +254895,69.527,70.582 +254896,69.044,69.114 +254897,68.973,73.481 +254898,68.623,72.024 +254899,68.234,70.558 +254900,67.804,69.084 +254901,67.58,73.466 +254902,67.28,72.005 +254903,66.942,70.534 +254904,66.564,69.056 +254905,66.187,73.449 +254906,65.937,71.985 +254907,65.65,70.511 +254908,65.324,69.029 +254909,64.793,73.432 +254910,64.594,71.965 +254911,64.358,70.488 +254912,64.084,69.003 +254913,63.4,73.413 +254914,63.251,71.944 +254915,63.066,70.465 +254916,62.844,68.978 +254917,62.006,73.393 +254918,61.908,71.923 +254919,61.774,70.443 +254920,61.605,68.955 +254921,60.612,73.372 +254922,60.564,71.902 +254923,60.483,70.421 +254924,60.366,68.932 +254925,59.217,73.35 +254926,59.221,71.88 +254927,59.191,70.4 +254928,59.126,68.911 +254929,57.823,73.327 +254930,57.878,71.857 +254931,57.899,70.379 +254932,57.887,68.891 +254933,56.428,73.302 +254934,56.534,71.835 +254935,56.607,70.358 +254936,56.648,68.873 +254937,55.034,73.277 +254938,55.191,71.812 +254939,55.316,70.338 +254940,55.408,68.855 +254941,53.64,73.25 +254942,53.848,71.788 +254943,54.024,70.318 +254944,54.169,68.839 +254945,52.245,73.222 +254946,52.504,71.765 +254947,52.732,70.298 +254948,52.929,68.824 +254949,50.851,73.192 +254950,51.161,71.74 +254951,51.44,70.279 +254952,51.689,68.81 +254953,49.456,73.162 +254954,49.818,71.716 +254955,50.149,70.261 +254956,50.449,68.798 +254957,48.062,73.13 +254958,48.475,71.691 +254959,48.857,70.242 +254960,49.209,68.786 +254961,46.668,73.098 +254962,47.132,71.665 +254963,47.565,70.224 +254964,47.968,68.776 +254965,45.275,73.064 +254966,45.789,71.64 +254967,46.273,70.207 +254968,46.727,68.767 +254969,43.881,73.029 +254970,44.446,71.613 +254971,44.981,70.19 +254972,45.485,68.759 +254973,42.488,72.993 +254974,43.104,71.587 +254975,43.688,70.173 +254976,44.243,68.753 +254977,41.095,72.955 +254978,41.761,71.56 +254979,42.396,70.157 +254980,43.001,68.747 +254981,39.703,72.917 +254982,40.419,71.533 +254983,41.103,70.141 +254984,41.758,68.743 +254985,38.311,72.877 +254986,39.077,71.505 +254987,39.811,70.125 +254988,40.515,68.739 +254989,36.92,72.837 +254990,37.735,71.477 +254991,38.518,70.11 +254992,39.271,68.737 +254993,35.529,72.795 +254994,36.393,71.448 +254995,37.225,70.095 +254996,38.026,68.736 +254997,34.138,72.752 +254998,35.051,71.42 +254999,35.931,70.081 +255000,36.781,68.737 +255001,32.748,72.708 +255002,33.71,71.39 +255003,34.638,70.066 +255004,35.535,68.738 +255005,31.359,72.663 +255006,32.369,71.361 +255007,33.344,70.053 +255008,34.288,68.74 +255009,29.97,72.617 +255010,31.028,71.331 +255011,32.05,70.039 +255012,33.04,68.743 +255013,28.582,72.57 +255014,29.687,71.301 +255015,30.756,70.026 +255016,31.792,68.748 +255017,27.195,72.522 +255018,28.347,71.27 +255019,29.462,70.013 +255020,30.543,68.753 +255021,25.808,72.473 +255022,27.007,71.239 +255023,28.167,70.001 +255024,29.293,68.76 +255025,24.423,72.423 +255026,25.667,71.208 +255027,26.872,69.989 +255028,28.042,68.767 +255029,23.038,72.372 +255030,24.327,71.176 +255031,25.577,69.977 +255032,26.79,68.776 +255033,21.654,72.32 +255034,22.988,71.144 +255035,24.281,69.966 +255036,25.537,68.785 +255037,20.271,72.267 +255038,21.649,71.112 +255039,22.986,69.955 +255040,24.283,68.796 +255041,18.888,72.213 +255042,20.311,71.08 +255043,21.689,69.944 +255044,23.029,68.807 +255045,17.507,72.158 +255046,18.973,71.047 +255047,20.393,69.934 +255048,21.773,68.819 +255049,16.127,72.102 +255050,17.635,71.014 +255051,19.096,69.923 +255052,20.516,68.833 +255053,14.748,72.045 +255054,16.298,70.98 +255055,17.799,69.913 +255056,19.257,68.847 +255057,13.37,71.988 +255058,14.961,70.946 +255059,16.501,69.904 +255060,17.998,68.862 +255061,11.993,71.929 +255062,13.624,70.912 +255063,15.203,69.895 +255064,16.737,68.877 +255065,10.617,71.87 +255066,12.288,70.878 +255067,13.905,69.885 +255068,15.476,68.894 +255069,9.242,71.81 +255070,10.952,70.843 +255071,12.606,69.877 +255072,14.213,68.911 +255073,7.8685,71.749 +255074,9.6164,70.808 +255075,11.307,69.868 +255076,12.949,68.93 +255077,6.4963,71.687 +255078,8.2814,70.773 +255079,10.008,69.86 +255080,11.683,68.949 +255081,5.1253,71.625 +255082,6.9469,70.738 +255083,8.7078,69.852 +255084,10.416,68.968 +255085,3.7556,71.562 +255086,5.6128,70.702 +255087,7.4075,69.844 +255088,9.1481,68.989 +255089,2.3873,71.498 +255090,4.2791,70.666 +255091,6.1067,69.837 +255092,7.8786,69.01 +255093,1.0203,71.434 +255094,2.946,70.63 +255095,4.8055,69.829 +255096,6.6077,69.032 +255097,359.65,71.368 +255098,1.6133,70.594 +255099,3.5038,69.822 +255100,5.3354,69.054 +255101,358.29,71.303 +255102,0.28111,70.557 +255103,2.2016,69.815 +255104,4.0617,69.077 +255105,356.93,71.236 +255106,358.95,70.52 +255107,0.89902,69.808 +255108,2.7865,69.101 +255109,355.57,71.169 +255110,357.62,70.483 +255111,359.6,69.802 +255112,1.5099,69.125 +255113,354.21,71.101 +255114,356.29,70.446 +255115,358.29,69.796 +255116,0.23176,69.149 +255117,352.85,71.033 +255118,354.96,70.409 +255119,356.99,69.789 +255120,358.95,69.175 +255121,351.49,70.964 +255122,353.63,70.371 +255123,355.68,69.783 +255124,357.67,69.2 +255125,350.14,70.895 +255126,352.3,70.334 +255127,354.38,69.777 +255128,356.39,69.227 +255129,348.78,70.825 +255130,350.97,70.296 +255131,353.07,69.772 +255132,355.1,69.253 +255133,347.43,70.755 +255134,349.64,70.258 +255135,351.77,69.766 +255136,353.82,69.28 +255137,346.08,70.685 +255138,348.31,70.22 +255139,350.46,69.761 +255140,352.53,69.308 +255141,344.73,70.614 +255142,346.99,70.181 +255143,349.15,69.755 +255144,351.24,69.335 +255145,343.39,70.542 +255146,345.66,70.143 +255147,347.85,69.75 +255148,349.95,69.364 +255149,342.04,70.471 +255150,344.34,70.105 +255151,346.54,69.745 +255152,348.66,69.392 +255153,340.7,70.399 +255154,343.01,70.066 +255155,345.23,69.74 +255156,347.37,69.421 +255157,339.35,70.326 +255158,341.69,70.027 +255159,343.92,69.735 +255160,346.07,69.45 +255161,338.01,70.254 +255162,340.36,69.988 +255163,342.61,69.73 +255164,344.77,69.479 +255165,336.68,70.181 +255166,339.04,69.95 +255167,341.3,69.725 +255168,343.47,69.508 +255169,335.34,70.108 +255170,337.72,69.911 +255171,339.99,69.721 +255172,342.17,69.538 +255173,334.01,70.034 +255174,336.39,69.872 +255175,338.68,69.716 +255176,340.87,69.567 +255177,332.67,69.961 +255178,335.07,69.832 +255179,337.37,69.711 +255180,339.57,69.597 +255181,331.34,69.887 +255182,333.75,69.793 +255183,336.05,69.707 +255184,338.26,69.627 +255185,330.01,69.814 +255186,332.43,69.754 +255187,334.74,69.702 +255188,336.96,69.657 +255189,328.69,69.74 +255190,331.11,69.715 +255191,333.43,69.697 +255192,335.65,69.687 +255193,327.36,69.666 +255194,329.79,69.676 +255195,332.11,69.693 +255196,334.34,69.717 +255197,326.04,69.592 +255198,328.47,69.637 +255199,330.8,69.688 +255200,333.02,69.747 +255201,324.71,69.518 +255202,327.15,69.597 +255203,329.48,69.684 +255204,331.71,69.776 +255205,323.39,69.445 +255206,325.84,69.558 +255207,328.17,69.679 +255208,330.4,69.806 +255209,322.08,69.371 +255210,324.52,69.519 +255211,326.85,69.674 +255212,329.08,69.836 +255213,320.76,69.297 +255214,323.2,69.48 +255215,325.53,69.67 +255216,327.76,69.865 +255217,319.45,69.224 +255218,321.89,69.441 +255219,324.21,69.665 +255220,326.44,69.895 +255221,318.13,69.15 +255222,320.57,69.402 +255223,322.9,69.66 +255224,325.12,69.924 +255225,316.82,69.077 +255226,319.26,69.363 +255227,321.58,69.655 +255228,323.79,69.953 +255229,315.51,69.004 +255230,317.95,69.324 +255231,320.26,69.65 +255232,322.47,69.981 +255233,314.21,68.931 +255234,316.63,69.285 +255235,318.94,69.645 +255236,321.14,70.01 +255237,312.9,68.859 +255238,315.32,69.246 +255239,317.62,69.64 +255240,319.81,70.038 +255241,311.6,68.786 +255242,314.01,69.208 +255243,316.3,69.634 +255244,318.48,70.066 +255245,310.3,68.714 +255246,312.7,69.169 +255247,314.97,69.629 +255248,317.15,70.093 +255249,309,68.643 +255250,311.39,69.131 +255251,313.65,69.623 +255252,315.81,70.12 +255253,307.7,68.572 +255254,310.08,69.092 +255255,312.33,69.618 +255256,314.48,70.147 +255257,306.41,68.501 +255258,308.77,69.054 +255259,311.01,69.612 +255260,313.14,70.173 +255261,305.11,68.43 +255262,307.46,69.016 +255263,309.68,69.606 +255264,311.8,70.199 +255265,303.82,68.36 +255266,306.15,68.978 +255267,308.36,69.6 +255268,310.46,70.224 +255269,302.53,68.291 +255270,304.84,68.94 +255271,307.03,69.593 +255272,309.12,70.249 +255273,301.24,68.222 +255274,303.54,68.903 +255275,305.71,69.587 +255276,307.78,70.273 +255277,299.95,68.153 +255278,302.23,68.865 +255279,304.38,69.58 +255280,306.43,70.296 +255281,298.67,68.085 +255282,300.92,68.828 +255283,303.06,69.573 +255284,305.08,70.319 +255285,297.39,68.018 +255286,299.62,68.791 +255287,301.73,69.566 +255288,303.74,70.342 +255289,296.11,67.951 +255290,298.31,68.754 +255291,300.4,69.559 +255292,302.39,70.364 +255293,294.83,67.885 +255294,297.01,68.717 +255295,299.07,69.551 +255296,301.04,70.385 +255297,293.55,67.819 +255298,295.7,68.681 +255299,297.74,69.544 +255300,299.68,70.405 +255301,292.27,67.755 +255302,294.4,68.645 +255303,296.42,69.536 +255304,298.33,70.425 +255305,291,67.69 +255306,293.1,68.609 +255307,295.09,69.527 +255308,296.97,70.444 +255309,289.72,67.627 +255310,291.8,68.573 +255311,293.76,69.519 +255312,295.62,70.462 +255313,288.45,67.564 +255314,290.5,68.538 +255315,292.43,69.51 +255316,294.26,70.48 +255317,287.18,67.503 +255318,289.19,68.502 +255319,291.1,69.501 +255320,292.9,70.497 +255321,285.92,67.441 +255322,287.89,68.467 +255323,289.76,69.492 +255324,291.54,70.513 +255325,284.65,67.381 +255326,286.59,68.433 +255327,288.43,69.482 +255328,290.17,70.528 +255329,283.38,67.322 +255330,285.29,68.398 +255331,287.1,69.472 +255332,288.81,70.542 +255333,282.12,67.263 +255334,284,68.364 +255335,285.77,69.462 +255336,287.44,70.555 +255337,280.86,67.205 +255338,282.7,68.33 +255339,284.43,69.452 +255340,286.08,70.568 +255341,279.6,67.148 +255342,281.4,68.297 +255343,283.1,69.441 +255344,284.71,70.58 +255345,278.34,67.092 +255346,280.1,68.263 +255347,281.77,69.43 +255348,283.34,70.59 +255349,277.08,67.037 +255350,278.8,68.23 +255351,280.43,69.418 +255352,281.97,70.6 +255353,275.82,66.983 +255354,277.51,68.198 +255355,279.1,69.407 +255356,280.6,70.609 +255357,274.57,66.93 +255358,276.21,68.165 +255359,277.76,69.395 +255360,279.23,70.617 +255361,273.31,66.878 +255362,274.92,68.133 +255363,276.43,69.382 +255364,277.85,70.624 +255365,272.06,66.827 +255366,273.62,68.102 +255367,275.09,69.37 +255368,276.48,70.629 +255369,270.81,66.777 +255370,272.33,68.07 +255371,273.75,69.356 +255372,275.1,70.634 +255373,269.56,66.728 +255374,271.03,68.039 +255375,272.42,69.343 +255376,273.72,70.638 +255377,268.31,66.68 +255378,269.74,68.008 +255379,271.08,69.329 +255380,272.34,70.641 +255381,267.06,66.633 +255382,268.44,67.978 +255383,269.74,69.315 +255384,270.97,70.643 +255385,265.81,66.587 +255386,267.15,67.948 +255387,268.4,69.301 +255388,269.59,70.643 +255389,264.57,66.543 +255390,265.86,67.919 +255391,267.07,69.286 +255392,268.2,70.643 +255393,263.32,66.499 +255394,264.56,67.889 +255395,265.73,69.27 +255396,266.82,70.641 +255397,262.08,66.456 +255398,263.27,67.86 +255399,264.39,69.255 +255400,265.44,70.639 +255401,260.84,66.415 +255402,261.98,67.832 +255403,263.05,69.239 +255404,264.06,70.635 +255405,259.59,66.375 +255406,260.69,67.804 +255407,261.71,69.222 +255408,262.67,70.63 +255409,258.35,66.336 +255410,259.4,67.776 +255411,260.37,69.206 +255412,261.29,70.624 +255413,257.11,66.298 +255414,258.1,67.748 +255415,259.03,69.189 +255416,259.9,70.617 +255417,255.87,66.261 +255418,256.81,67.721 +255419,257.69,69.171 +255420,258.51,70.608 +255421,254.63,66.226 +255422,255.52,67.695 +255423,256.35,69.153 +255424,257.12,70.599 +255425,253.39,66.191 +255426,254.23,67.669 +255427,255.01,69.135 +255428,255.74,70.588 +255429,252.15,66.158 +255430,252.94,67.643 +255431,253.67,69.116 +255432,254.35,70.576 +255433,250.92,66.126 +255434,251.65,67.617 +255435,252.33,69.097 +255436,252.96,70.563 +255437,249.68,66.095 +255438,250.36,67.592 +255439,250.99,69.077 +255440,251.57,70.549 +255441,248.44,66.066 +255442,249.07,67.567 +255443,249.65,69.057 +255444,250.18,70.534 +255445,247.21,66.037 +255446,247.78,67.543 +255447,248.31,69.037 +255448,248.79,70.517 +255449,245.97,66.01 +255450,246.49,67.519 +255451,246.97,69.016 +255452,247.39,70.5 +255453,244.74,65.984 +255454,245.2,67.496 +255455,245.63,68.995 +255456,246,70.481 +255457,243.5,65.96 +255458,243.92,67.473 +255459,244.28,68.973 +255460,244.61,70.46 +255461,242.27,65.936 +255462,242.63,67.45 +255463,242.94,68.951 +255464,243.22,70.439 +255465,241.03,65.914 +255466,241.34,67.428 +255467,241.6,68.929 +255468,241.82,70.416 +255469,239.8,65.893 +255470,240.05,67.406 +255471,240.26,68.906 +255472,240.43,70.393 +255473,238.56,65.873 +255474,238.76,67.384 +255475,238.92,68.883 +255476,239.04,70.368 +255477,237.33,65.855 +255478,237.47,67.363 +255479,237.58,68.859 +255480,237.64,70.341 +255481,236.09,65.838 +255482,236.18,67.342 +255483,236.23,68.835 +255484,236.25,70.314 +255485,234.86,65.821 +255486,234.89,67.322 +255487,234.89,68.811 +255488,234.86,70.285 +255489,233.63,65.807 +255490,233.61,67.302 +255491,233.55,68.786 +255492,233.46,70.256 +255493,232.39,65.793 +255494,232.32,67.283 +255495,232.21,68.76 +255496,232.07,70.225 +255497,231.16,65.781 +255498,231.03,67.264 +255499,230.87,68.735 +255500,230.67,70.193 +255501,229.92,65.769 +255502,229.74,67.245 +255503,229.52,68.709 +255504,229.28,70.159 +255505,228.69,65.759 +255506,228.45,67.226 +255507,228.18,68.682 +255508,227.88,70.125 +255509,227.45,65.75 +255510,227.16,67.209 +255511,226.84,68.655 +255512,226.49,70.089 +255513,226.22,65.743 +255514,225.87,67.191 +255515,225.5,68.628 +255516,225.1,70.052 +255517,224.98,65.736 +255518,224.58,67.174 +255519,224.16,68.6 +255520,223.7,70.014 +255521,223.75,65.731 +255522,223.3,67.157 +255523,222.82,68.572 +255524,222.31,69.975 +255525,222.51,65.727 +255526,222.01,67.141 +255527,221.47,68.543 +255528,220.91,69.934 +255529,221.27,65.724 +255530,220.72,67.124 +255531,220.13,68.515 +255532,219.52,69.893 +255533,220.04,65.722 +255534,219.43,67.109 +255535,218.79,68.485 +255536,218.13,69.85 +255537,218.8,65.721 +255538,218.14,67.093 +255539,217.45,68.456 +255540,216.74,69.807 +255541,217.56,65.722 +255542,216.85,67.078 +255543,216.11,68.426 +255544,215.34,69.762 +255545,216.32,65.723 +255546,215.56,67.064 +255547,214.77,68.395 +255548,213.95,69.716 +255549,215.08,65.726 +255550,214.27,67.05 +255551,213.43,68.364 +255552,212.56,69.669 +255553,213.84,65.73 +255554,212.98,67.036 +255555,212.09,68.333 +255556,211.17,69.621 +255557,212.6,65.734 +255558,211.69,67.022 +255559,210.75,68.302 +255560,209.78,69.571 +255561,211.36,65.74 +255562,210.4,67.009 +255563,209.41,68.27 +255564,208.39,69.521 +255565,210.12,65.747 +255566,209.11,66.996 +255567,208.07,68.238 +255568,207,69.47 +255569,208.87,65.755 +255570,207.82,66.984 +255571,206.73,68.205 +255572,205.61,69.418 +255573,207.63,65.763 +255574,206.53,66.971 +255575,205.39,68.172 +255576,204.23,69.364 +255577,206.38,65.773 +255578,205.23,66.959 +255579,204.05,68.139 +255580,202.84,69.31 +255581,205.14,65.784 +255582,203.94,66.948 +255583,202.72,68.105 +255584,201.45,69.255 +255585,203.89,65.796 +255586,202.65,66.937 +255587,201.38,68.071 +255588,200.07,69.199 +255589,202.64,65.808 +255590,201.36,66.926 +255591,200.04,68.037 +255592,198.69,69.142 +255593,201.39,65.822 +255594,200.06,66.915 +255595,198.7,68.003 +255596,197.3,69.084 +255597,200.14,65.836 +255598,198.77,66.905 +255599,197.37,67.968 +255600,195.92,69.025 +255601,198.89,65.852 +255602,197.48,66.894 +255603,196.03,67.933 +255604,194.54,68.965 +255605,197.64,65.868 +255606,196.18,66.885 +255607,194.69,67.897 +255608,193.16,68.904 +255609,196.39,65.885 +255610,194.89,66.875 +255611,193.36,67.862 +255612,191.78,68.843 +255613,195.13,65.902 +255614,193.6,66.866 +255615,192.02,67.826 +255616,190.4,68.78 +255617,193.87,65.921 +255618,192.3,66.857 +255619,190.69,67.789 +255620,189.02,68.717 +255621,192.62,65.94 +255622,191.01,66.848 +255623,189.35,67.753 +255624,187.65,68.653 +255625,191.36,65.96 +255626,189.71,66.839 +255627,188.02,67.716 +255628,186.27,68.588 +255629,190.1,65.981 +255630,188.41,66.831 +255631,186.68,67.679 +255632,184.9,68.523 +255633,188.84,66.002 +255634,187.12,66.823 +255635,185.35,67.641 +255636,183.53,68.457 +255637,187.57,66.024 +255638,185.82,66.815 +255639,184.02,67.604 +255640,182.15,68.39 +255641,186.31,66.047 +255642,184.52,66.807 +255643,182.68,67.566 +255644,180.78,68.322 +255645,185.04,66.07 +255646,183.22,66.8 +255647,181.35,67.528 +255648,179.42,68.254 +255649,183.78,66.094 +255650,181.93,66.793 +255651,180.02,67.49 +255652,178.05,68.185 +255653,182.51,66.119 +255654,180.63,66.785 +255655,178.69,67.451 +255656,176.68,68.116 +255657,181.24,66.144 +255658,179.33,66.779 +255659,177.36,67.413 +255660,175.32,68.045 +255661,179.97,66.169 +255662,178.03,66.772 +255663,176.03,67.374 +255664,173.96,67.975 +255665,178.7,66.195 +255666,176.73,66.765 +255667,174.7,67.335 +255668,172.59,67.904 +255669,177.42,66.222 +255670,175.43,66.759 +255671,173.37,67.296 +255672,171.23,67.832 +255673,176.15,66.249 +255674,174.13,66.752 +255675,172.04,67.256 +255676,169.88,67.76 +255677,174.87,66.276 +255678,172.83,66.746 +255679,170.71,67.217 +255680,168.52,67.687 +255681,173.59,66.304 +255682,171.52,66.74 +255683,169.39,67.177 +255684,167.16,67.614 +255685,172.31,66.332 +255686,170.22,66.734 +255687,168.06,67.138 +255688,165.81,67.541 +255689,171.03,66.36 +255690,168.92,66.728 +255691,166.73,67.098 +255692,164.46,67.467 +255693,169.74,66.388 +255694,167.61,66.722 +255695,165.41,67.058 +255696,163.11,67.393 +255697,168.46,66.417 +255698,166.31,66.717 +255699,164.08,67.017 +255700,161.76,67.318 +255701,167.17,66.446 +255702,165,66.711 +255703,162.76,66.977 +255704,160.41,67.244 +255705,165.88,66.476 +255706,163.7,66.706 +255707,161.43,66.937 +255708,159.07,67.169 +255709,164.59,66.505 +255710,162.39,66.7 +255711,160.11,66.896 +255712,157.72,67.093 +255713,163.3,66.535 +255714,161.09,66.695 +255715,158.79,66.856 +255716,156.38,67.018 +255717,162,66.565 +255718,159.78,66.689 +255719,157.46,66.815 +255720,155.04,66.942 +255721,160.71,66.595 +255722,158.47,66.684 +255723,156.14,66.775 +255724,153.71,66.866 +255725,159.41,66.625 +255726,157.16,66.679 +255727,154.82,66.734 +255728,152.37,66.79 +255729,158.11,66.654 +255730,155.85,66.673 +255731,153.5,66.693 +255732,151.04,66.714 +255733,156.81,66.684 +255734,154.55,66.668 +255735,152.18,66.653 +255736,149.7,66.638 +255737,155.51,66.714 +255738,153.24,66.663 +255739,150.86,66.612 +255740,148.37,66.562 +255741,154.2,66.744 +255742,151.92,66.657 +255743,149.54,66.571 +255744,147.04,66.486 +255745,152.9,66.774 +255746,150.61,66.652 +255747,148.23,66.53 +255748,145.72,66.41 +255749,151.59,66.804 +255750,149.3,66.646 +255751,146.91,66.49 +255752,144.39,66.333 +255753,150.28,66.833 +255754,147.99,66.641 +255755,145.59,66.449 +255756,143.07,66.257 +255757,148.97,66.863 +255758,146.68,66.635 +255759,144.28,66.408 +255760,141.75,66.181 +255761,147.66,66.892 +255762,145.36,66.63 +255763,142.96,66.368 +255764,140.43,66.105 +255765,146.34,66.921 +255766,144.05,66.624 +255767,141.65,66.327 +255768,139.11,66.03 +255769,145.03,66.95 +255770,142.74,66.618 +255771,140.33,66.286 +255772,137.8,65.954 +255773,143.71,66.978 +255774,141.42,66.613 +255775,139.02,66.246 +255776,136.48,65.879 +255777,142.39,67.007 +255778,140.1,66.607 +255779,137.71,66.206 +255780,135.17,65.804 +255781,141.07,67.035 +255782,138.79,66.601 +255783,136.39,66.165 +255784,133.86,65.729 +255785,139.74,67.062 +255786,137.47,66.594 +255787,135.08,66.125 +255788,132.56,65.655 +255789,138.42,67.089 +255790,136.15,66.588 +255791,133.77,66.085 +255792,131.25,65.58 +255793,137.09,67.116 +255794,134.84,66.582 +255795,132.46,66.045 +255796,129.95,65.507 +255797,135.76,67.142 +255798,133.52,66.575 +255799,131.15,66.005 +255800,128.65,65.433 +255801,134.43,67.168 +255802,132.2,66.568 +255803,129.84,65.965 +255804,127.35,65.36 +255805,133.1,67.193 +255806,130.88,66.561 +255807,128.53,65.926 +255808,126.05,65.288 +255809,131.77,67.218 +255810,129.56,66.554 +255811,127.23,65.886 +255812,124.75,65.216 +255813,130.43,67.243 +255814,128.24,66.547 +255815,125.92,65.847 +255816,123.46,65.144 +255817,129.1,67.266 +255818,126.92,66.539 +255819,124.61,65.808 +255820,122.17,65.073 +255821,127.76,67.289 +255822,125.59,66.532 +255823,123.31,65.769 +255824,120.88,65.002 +255825,126.42,67.312 +255826,124.27,66.524 +255827,122,65.73 +255828,119.59,64.932 +255829,125.08,67.334 +255830,122.95,66.515 +255831,120.7,65.692 +255832,118.3,64.863 +255833,123.73,67.355 +255834,121.62,66.507 +255835,119.39,65.653 +255836,117.02,64.794 +255837,122.39,67.376 +255838,120.3,66.499 +255839,118.09,65.615 +255840,115.74,64.726 +255841,121.04,67.395 +255842,118.98,66.49 +255843,116.79,65.577 +255844,114.46,64.659 +255845,119.7,67.414 +255846,117.65,66.481 +255847,115.48,65.539 +255848,113.18,64.592 +255849,118.35,67.433 +255850,116.32,66.471 +255851,114.18,65.502 +255852,111.9,64.526 +255853,116.99,67.45 +255854,115,66.462 +255855,112.88,65.465 +255856,110.62,64.461 +255857,115.64,67.467 +255858,113.67,66.452 +255859,111.58,65.428 +255860,109.35,64.396 +255861,114.29,67.483 +255862,112.34,66.442 +255863,110.28,65.391 +255864,108.08,64.332 +255865,112.93,67.498 +255866,111.02,66.431 +255867,108.98,65.355 +255868,106.81,64.269 +255869,111.58,67.512 +255870,109.69,66.42 +255871,107.68,65.318 +255872,105.54,64.207 +255873,110.22,67.526 +255874,108.36,66.409 +255875,106.38,65.282 +255876,104.28,64.146 +255877,108.86,67.538 +255878,107.03,66.398 +255879,105.09,65.247 +255880,103.01,64.086 +255881,107.5,67.55 +255882,105.7,66.386 +255883,103.79,65.211 +255884,101.75,64.026 +255885,106.14,67.56 +255886,104.37,66.374 +255887,102.49,65.176 +255888,100.49,63.968 +255889,104.77,67.57 +255890,103.04,66.362 +255891,101.2,65.142 +255892,99.226,63.91 +255893,103.41,67.579 +255894,101.71,66.349 +255895,99.901,65.107 +255896,97.967,63.854 +255897,102.04,67.586 +255898,100.38,66.336 +255899,98.606,65.073 +255900,96.71,63.798 +255901,100.67,67.593 +255902,99.046,66.323 +255903,97.311,65.039 +255904,95.455,63.744 +255905,99.304,67.598 +255906,97.713,66.309 +255907,96.017,65.006 +255908,94.201,63.69 +255909,97.934,67.603 +255910,96.381,66.295 +255911,94.723,64.973 +255912,92.948,63.638 +255913,96.562,67.607 +255914,95.047,66.28 +255915,93.43,64.94 +255916,91.697,63.586 +255917,95.19,67.609 +255918,93.714,66.266 +255919,92.137,64.908 +255920,90.447,63.536 +255921,93.816,67.61 +255922,92.38,66.25 +255923,90.845,64.875 +255924,89.198,63.486 +255925,92.442,67.611 +255926,91.046,66.235 +255927,89.553,64.844 +255928,87.951,63.438 +255929,91.066,67.61 +255930,89.711,66.219 +255931,88.262,64.812 +255932,86.705,63.391 +255933,89.689,67.608 +255934,88.376,66.203 +255935,86.97,64.781 +255936,85.46,63.345 +255937,88.311,67.605 +255938,87.041,66.186 +255939,85.68,64.751 +255940,84.216,63.3 +255941,86.932,67.601 +255942,85.705,66.169 +255943,84.389,64.72 +255944,82.974,63.256 +255945,85.552,67.595 +255946,84.369,66.151 +255947,83.099,64.691 +255948,81.732,63.214 +255949,84.172,67.589 +255950,83.033,66.133 +255951,81.81,64.661 +255952,80.492,63.173 +255953,82.79,67.581 +255954,81.696,66.115 +255955,80.52,64.632 +255956,79.253,63.132 +255957,81.407,67.572 +255958,80.359,66.096 +255959,79.231,64.603 +255960,78.014,63.093 +255961,80.024,67.562 +255962,79.022,66.077 +255963,77.943,64.575 +255964,76.777,63.056 +255965,78.64,67.55 +255966,77.685,66.058 +255967,76.654,64.547 +255968,75.54,63.019 +255969,77.255,67.538 +255970,76.347,66.038 +255971,75.366,64.519 +255972,74.304,62.984 +255973,75.869,67.524 +255974,75.009,66.017 +255975,74.079,64.492 +255976,73.069,62.95 +255977,74.482,67.509 +255978,73.671,65.996 +255979,72.791,64.465 +255980,71.835,62.917 +255981,73.095,67.493 +255982,72.333,65.975 +255983,71.504,64.439 +255984,70.602,62.885 +255985,71.707,67.475 +255986,70.994,65.953 +255987,70.217,64.413 +255988,69.369,62.855 +255989,70.319,67.457 +255990,69.656,65.931 +255991,68.93,64.387 +255992,68.137,62.826 +255993,68.93,67.437 +255994,68.317,65.909 +255995,67.644,64.362 +255996,66.905,62.798 +255997,67.54,67.416 +255998,66.978,65.886 +255999,66.357,64.337 +256000,65.674,62.771 +256001,66.15,67.393 +256002,65.638,65.863 +256003,65.071,64.313 +256004,64.443,62.746 +256005,64.76,67.369 +256006,64.299,65.839 +256007,63.785,64.289 +256008,63.213,62.722 +256009,63.369,67.345 +256010,62.96,65.814 +256011,62.499,64.266 +256012,61.983,62.699 +256013,61.977,67.318 +256014,61.62,65.79 +256015,61.214,64.243 +256016,60.754,62.677 +256017,60.585,67.291 +256018,60.28,65.765 +256019,59.928,64.22 +256020,59.524,62.657 +256021,59.193,67.262 +256022,58.941,65.739 +256023,58.643,64.197 +256024,58.296,62.638 +256025,57.801,67.232 +256026,57.601,65.713 +256027,57.357,64.176 +256028,57.067,62.62 +256029,56.408,67.201 +256030,56.261,65.687 +256031,56.072,64.154 +256032,55.838,62.604 +256033,55.015,67.169 +256034,54.921,65.66 +256035,54.787,64.133 +256036,54.61,62.589 +256037,53.622,67.135 +256038,53.581,65.633 +256039,53.502,64.112 +256040,53.382,62.575 +256041,52.228,67.1 +256042,52.241,65.605 +256043,52.217,64.092 +256044,52.153,62.562 +256045,50.835,67.064 +256046,50.901,65.577 +256047,50.932,64.072 +256048,50.925,62.55 +256049,49.441,67.027 +256050,49.561,65.549 +256051,49.646,64.053 +256052,49.696,62.54 +256053,48.048,66.988 +256054,48.221,65.52 +256055,48.361,64.033 +256056,48.468,62.531 +256057,46.654,66.949 +256058,46.881,65.49 +256059,47.076,64.015 +256060,47.239,62.523 +256061,45.261,66.908 +256062,45.541,65.461 +256063,45.791,63.996 +256064,46.01,62.516 +256065,43.867,66.866 +256066,44.201,65.43 +256067,44.506,63.978 +256068,44.781,62.511 +256069,42.474,66.822 +256070,42.861,65.4 +256071,43.221,63.961 +256072,43.552,62.507 +256073,41.081,66.778 +256074,41.522,65.369 +256075,41.936,63.944 +256076,42.322,62.503 +256077,39.688,66.732 +256078,40.182,65.337 +256079,40.65,63.927 +256080,41.092,62.502 +256081,38.295,66.685 +256082,38.843,65.306 +256083,39.365,63.91 +256084,39.862,62.501 +256085,36.902,66.637 +256086,37.503,65.274 +256087,38.079,63.894 +256088,38.63,62.501 +256089,35.51,66.588 +256090,36.164,65.241 +256091,36.794,63.879 +256092,37.399,62.503 +256093,34.118,66.538 +256094,34.825,65.208 +256095,35.508,63.863 +256096,36.167,62.505 +256097,32.727,66.486 +256098,33.486,65.175 +256099,34.222,63.848 +256100,34.934,62.509 +256101,31.336,66.434 +256102,32.148,65.141 +256103,32.936,63.834 +256104,33.701,62.514 +256105,29.945,66.38 +256106,30.809,65.107 +256107,31.65,63.82 +256108,32.467,62.52 +256109,28.555,66.326 +256110,29.471,65.072 +256111,30.363,63.806 +256112,31.232,62.527 +256113,27.165,66.27 +256114,28.133,65.038 +256115,29.076,63.792 +256116,29.997,62.534 +256117,25.776,66.213 +256118,26.795,65.003 +256119,27.789,63.779 +256120,28.761,62.543 +256121,24.388,66.156 +256122,25.457,64.967 +256123,26.502,63.766 +256124,27.524,62.553 +256125,23,66.097 +256126,24.12,64.931 +256127,25.215,63.753 +256128,26.286,62.564 +256129,21.613,66.037 +256130,22.783,64.895 +256131,23.927,63.741 +256132,25.047,62.576 +256133,20.226,65.977 +256134,21.446,64.858 +256135,22.639,63.729 +256136,23.807,62.589 +256137,18.841,65.915 +256138,20.11,64.822 +256139,21.351,63.717 +256140,22.566,62.603 +256141,17.456,65.852 +256142,18.774,64.784 +256143,20.062,63.706 +256144,21.325,62.618 +256145,16.072,65.789 +256146,17.438,64.747 +256147,18.774,63.694 +256148,20.082,62.633 +256149,14.689,65.724 +256150,16.103,64.709 +256151,17.485,63.684 +256152,18.838,62.65 +256153,13.307,65.659 +256154,14.768,64.671 +256155,16.195,63.673 +256156,17.593,62.667 +256157,11.926,65.593 +256158,13.433,64.633 +256159,14.905,63.663 +256160,16.347,62.685 +256161,10.545,65.526 +256162,12.098,64.594 +256163,13.615,63.653 +256164,15.099,62.704 +256165,9.1663,65.458 +256166,10.764,64.555 +256167,12.325,63.643 +256168,13.851,62.723 +256169,7.7881,65.389 +256170,9.4308,64.516 +256171,11.034,63.633 +256172,12.601,62.744 +256173,6.4111,65.32 +256174,8.0977,64.476 +256175,9.7423,63.624 +256176,11.35,62.765 +256177,5.0352,65.25 +256178,6.7649,64.436 +256179,8.4506,63.615 +256180,10.098,62.787 +256181,3.6605,65.179 +256182,5.4326,64.396 +256183,7.1586,63.606 +256184,8.8439,62.809 +256185,2.287,65.108 +256186,4.1007,64.356 +256187,5.866,63.597 +256188,7.5889,62.832 +256189,0.91469,65.035 +256190,2.7692,64.316 +256191,4.5731,63.588 +256192,6.3324,62.856 +256193,359.54,64.963 +256194,1.4383,64.275 +256195,3.2797,63.58 +256196,5.0746,62.88 +256197,358.17,64.889 +256198,0.10778,64.234 +256199,1.9859,63.572 +256200,3.8153,62.905 +256201,356.81,64.815 +256202,358.78,64.193 +256203,0.69166,63.564 +256204,2.5546,62.93 +256205,355.44,64.74 +256206,357.45,64.152 +256207,359.4,63.556 +256208,1.2924,62.956 +256209,354.07,64.665 +256210,356.12,64.11 +256211,358.1,63.549 +256212,0.028724,62.983 +256213,352.71,64.589 +256214,354.79,64.068 +256215,356.81,63.541 +256216,358.76,63.01 +256217,351.35,64.513 +256218,353.46,64.026 +256219,355.51,63.534 +256220,357.5,63.037 +256221,349.99,64.436 +256222,352.14,63.984 +256223,354.21,63.527 +256224,356.23,63.065 +256225,348.63,64.359 +256226,350.81,63.942 +256227,352.92,63.519 +256228,354.96,63.093 +256229,347.27,64.282 +256230,349.48,63.9 +256231,351.62,63.512 +256232,353.69,63.121 +256233,345.91,64.204 +256234,348.16,63.857 +256235,350.32,63.505 +256236,352.41,63.15 +256237,344.56,64.125 +256238,346.83,63.815 +256239,349.02,63.499 +256240,351.14,63.179 +256241,343.2,64.047 +256242,345.51,63.772 +256243,347.72,63.492 +256244,349.86,63.208 +256245,341.85,63.968 +256246,344.18,63.729 +256247,346.42,63.485 +256248,348.58,63.237 +256249,340.5,63.889 +256250,342.86,63.686 +256251,345.12,63.479 +256252,347.31,63.267 +256253,339.15,63.809 +256254,341.54,63.643 +256255,343.82,63.472 +256256,346.02,63.297 +256257,337.81,63.73 +256258,340.21,63.6 +256259,342.52,63.466 +256260,344.74,63.327 +256261,336.46,63.65 +256262,338.89,63.557 +256263,341.22,63.459 +256264,343.46,63.357 +256265,335.12,63.57 +256266,337.57,63.514 +256267,339.92,63.453 +256268,342.17,63.387 +256269,333.78,63.489 +256270,336.25,63.471 +256271,338.61,63.446 +256272,340.88,63.418 +256273,332.44,63.409 +256274,334.93,63.427 +256275,337.31,63.44 +256276,339.59,63.448 +256277,331.1,63.329 +256278,333.61,63.384 +256279,336,63.433 +256280,338.3,63.478 +256281,329.77,63.249 +256282,332.29,63.341 +256283,334.7,63.427 +256284,337.01,63.508 +256285,328.43,63.168 +256286,330.97,63.297 +256287,333.39,63.42 +256288,335.71,63.538 +256289,327.1,63.088 +256290,329.66,63.254 +256291,332.09,63.414 +256292,334.41,63.569 +256293,325.77,63.008 +256294,328.34,63.211 +256295,330.78,63.407 +256296,333.11,63.598 +256297,324.44,62.927 +256298,327.02,63.167 +256299,329.48,63.401 +256300,331.81,63.628 +256301,323.12,62.847 +256302,325.71,63.124 +256303,328.17,63.394 +256304,330.51,63.658 +256305,321.79,62.767 +256306,324.39,63.081 +256307,326.86,63.387 +256308,329.21,63.687 +256309,320.47,62.687 +256310,323.08,63.038 +256311,325.55,63.38 +256312,327.9,63.716 +256313,319.15,62.608 +256314,321.77,62.995 +256315,324.24,63.373 +256316,326.59,63.745 +256317,317.83,62.528 +256318,320.45,62.952 +256319,322.93,63.366 +256320,325.29,63.774 +256321,316.52,62.449 +256322,319.14,62.909 +256323,321.62,63.359 +256324,323.97,63.802 +256325,315.2,62.371 +256326,317.83,62.866 +256327,320.31,63.352 +256328,322.66,63.83 +256329,313.89,62.292 +256330,316.52,62.823 +256331,319,63.344 +256332,321.35,63.858 +256333,312.58,62.214 +256334,315.21,62.78 +256335,317.68,63.337 +256336,320.03,63.885 +256337,311.27,62.136 +256338,313.9,62.738 +256339,316.37,63.329 +256340,318.71,63.911 +256341,309.97,62.059 +256342,312.59,62.695 +256343,315.06,63.321 +256344,317.39,63.938 +256345,308.66,61.982 +256346,311.28,62.653 +256347,313.74,63.313 +256348,316.07,63.963 +256349,307.36,61.905 +256350,309.98,62.611 +256351,312.43,63.305 +256352,314.75,63.988 +256353,306.06,61.829 +256354,308.67,62.569 +256355,311.11,63.297 +256356,313.42,64.013 +256357,304.77,61.754 +256358,307.36,62.527 +256359,309.8,63.288 +256360,312.09,64.037 +256361,303.47,61.679 +256362,306.06,62.485 +256363,308.48,63.279 +256364,310.77,64.061 +256365,302.18,61.605 +256366,304.75,62.444 +256367,307.16,63.27 +256368,309.44,64.083 +256369,300.89,61.531 +256370,303.45,62.403 +256371,305.85,63.261 +256372,308.1,64.106 +256373,299.6,61.458 +256374,302.15,62.362 +256375,304.53,63.251 +256376,306.77,64.127 +256377,298.31,61.386 +256378,300.84,62.321 +256379,303.21,63.241 +256380,305.44,64.148 +256381,297.02,61.314 +256382,299.54,62.28 +256383,301.89,63.231 +256384,304.1,64.168 +256385,295.74,61.243 +256386,298.24,62.24 +256387,300.57,63.221 +256388,302.76,64.187 +256389,294.46,61.173 +256390,296.94,62.2 +256391,299.25,63.211 +256392,301.42,64.206 +256393,293.18,61.103 +256394,295.64,62.16 +256395,297.93,63.2 +256396,300.08,64.224 +256397,291.9,61.034 +256398,294.34,62.12 +256399,296.61,63.189 +256400,298.73,64.241 +256401,290.62,60.966 +256402,293.04,62.081 +256403,295.29,63.177 +256404,297.39,64.257 +256405,289.35,60.899 +256406,291.74,62.041 +256407,293.96,63.166 +256408,296.04,64.272 +256409,288.08,60.833 +256410,290.44,62.003 +256411,292.64,63.154 +256412,294.69,64.286 +256413,286.81,60.768 +256414,289.15,61.964 +256415,291.32,63.141 +256416,293.35,64.3 +256417,285.54,60.703 +256418,287.85,61.926 +256419,289.99,63.129 +256420,291.99,64.312 +256421,284.27,60.64 +256422,286.55,61.888 +256423,288.67,63.116 +256424,290.64,64.324 +256425,283.01,60.577 +256426,285.26,61.85 +256427,287.34,63.102 +256428,289.29,64.335 +256429,281.75,60.516 +256430,283.96,61.813 +256431,286.02,63.089 +256432,287.93,64.344 +256433,280.49,60.455 +256434,282.67,61.776 +256435,284.69,63.075 +256436,286.58,64.353 +256437,279.23,60.396 +256438,281.37,61.739 +256439,283.36,63.06 +256440,285.22,64.361 +256441,277.97,60.337 +256442,280.08,61.703 +256443,282.04,63.046 +256444,283.86,64.367 +256445,276.71,60.28 +256446,278.79,61.666 +256447,280.71,63.031 +256448,282.5,64.373 +256449,275.46,60.223 +256450,277.5,61.631 +256451,279.38,63.015 +256452,281.13,64.377 +256453,274.21,60.168 +256454,276.21,61.595 +256455,278.05,62.999 +256456,279.77,64.38 +256457,272.95,60.114 +256458,274.91,61.56 +256459,276.72,62.983 +256460,278.4,64.383 +256461,271.71,60.061 +256462,273.62,61.526 +256463,275.39,62.967 +256464,277.04,64.384 +256465,270.46,60.009 +256466,272.33,61.491 +256467,274.07,62.95 +256468,275.67,64.384 +256469,269.21,59.958 +256470,271.04,61.458 +256471,272.74,62.932 +256472,274.3,64.382 +256473,267.97,59.909 +256474,269.76,61.424 +256475,271.4,62.914 +256476,272.93,64.38 +256477,266.72,59.86 +256478,268.47,61.391 +256479,270.07,62.896 +256480,271.56,64.376 +256481,265.48,59.813 +256482,267.18,61.358 +256483,268.74,62.878 +256484,270.19,64.372 +256485,264.24,59.767 +256486,265.89,61.326 +256487,267.41,62.859 +256488,268.82,64.366 +256489,263,59.722 +256490,264.6,61.294 +256491,266.08,62.839 +256492,267.44,64.359 +256493,261.76,59.679 +256494,263.32,61.262 +256495,264.75,62.819 +256496,266.07,64.35 +256497,260.52,59.637 +256498,262.03,61.231 +256499,263.41,62.799 +256500,264.69,64.341 +256501,259.29,59.596 +256502,260.74,61.2 +256503,262.08,62.778 +256504,263.31,64.33 +256505,258.05,59.556 +256506,259.46,61.17 +256507,260.75,62.757 +256508,261.93,64.318 +256509,256.82,59.518 +256510,258.17,61.14 +256511,259.41,62.735 +256512,260.56,64.304 +256513,255.59,59.481 +256514,256.89,61.11 +256515,258.08,62.713 +256516,259.18,64.29 +256517,254.35,59.445 +256518,255.6,61.081 +256519,256.75,62.691 +256520,257.79,64.274 +256521,253.12,59.41 +256522,254.32,61.052 +256523,255.41,62.668 +256524,256.41,64.257 +256525,251.89,59.377 +256526,253.04,61.024 +256527,254.08,62.645 +256528,255.03,64.238 +256529,250.67,59.345 +256530,251.75,60.996 +256531,252.74,62.621 +256532,253.65,64.218 +256533,249.44,59.314 +256534,250.47,60.969 +256535,251.41,62.596 +256536,252.26,64.197 +256537,248.21,59.285 +256538,249.19,60.942 +256539,250.07,62.572 +256540,250.88,64.175 +256541,246.98,59.257 +256542,247.9,60.915 +256543,248.74,62.547 +256544,249.49,64.151 +256545,245.76,59.23 +256546,246.62,60.889 +256547,247.4,62.521 +256548,248.11,64.126 +256549,244.53,59.205 +256550,245.34,60.863 +256551,246.06,62.495 +256552,246.72,64.1 +256553,243.31,59.181 +256554,244.06,60.838 +256555,244.73,62.468 +256556,245.33,64.072 +256557,242.08,59.159 +256558,242.77,60.813 +256559,243.39,62.441 +256560,243.94,64.043 +256561,240.86,59.137 +256562,241.49,60.789 +256563,242.06,62.414 +256564,242.55,64.013 +256565,239.64,59.117 +256566,240.21,60.765 +256567,240.72,62.386 +256568,241.17,63.982 +256569,238.41,59.099 +256570,238.93,60.741 +256571,239.38,62.358 +256572,239.78,63.949 +256573,237.19,59.081 +256574,237.65,60.718 +256575,238.05,62.329 +256576,238.39,63.915 +256577,235.97,59.065 +256578,236.37,60.695 +256579,236.71,62.3 +256580,237,63.879 +256581,234.75,59.05 +256582,235.09,60.673 +256583,235.37,62.27 +256584,235.61,63.842 +256585,233.52,59.037 +256586,233.81,60.651 +256587,234.04,62.24 +256588,234.22,63.804 +256589,232.3,59.025 +256590,232.53,60.629 +256591,232.7,62.209 +256592,232.83,63.765 +256593,231.08,59.014 +256594,231.24,60.608 +256595,231.36,62.178 +256596,231.43,63.724 +256597,229.86,59.004 +256598,229.96,60.587 +256599,230.02,62.147 +256600,230.04,63.683 +256601,228.64,58.996 +256602,228.68,60.567 +256603,228.69,62.115 +256604,228.65,63.639 +256605,227.42,58.989 +256606,227.4,60.547 +256607,227.35,62.083 +256608,227.26,63.595 +256609,226.2,58.983 +256610,226.12,60.528 +256611,226.01,62.05 +256612,225.87,63.549 +256613,224.97,58.979 +256614,224.84,60.509 +256615,224.68,62.017 +256616,224.48,63.502 +256617,223.75,58.976 +256618,223.56,60.49 +256619,223.34,61.983 +256620,223.08,63.454 +256621,222.53,58.974 +256622,222.28,60.472 +256623,222,61.949 +256624,221.69,63.405 +256625,221.31,58.973 +256626,221,60.454 +256627,220.67,61.915 +256628,220.3,63.354 +256629,220.08,58.973 +256630,219.72,60.436 +256631,219.33,61.88 +256632,218.91,63.302 +256633,218.86,58.975 +256634,218.44,60.419 +256635,217.99,61.844 +256636,217.52,63.249 +256637,217.64,58.977 +256638,217.16,60.403 +256639,216.66,61.809 +256640,216.13,63.195 +256641,216.41,58.981 +256642,215.88,60.386 +256643,215.32,61.773 +256644,214.74,63.139 +256645,215.19,58.986 +256646,214.6,60.37 +256647,213.98,61.736 +256648,213.35,63.083 +256649,213.96,58.992 +256650,213.32,60.355 +256651,212.65,61.699 +256652,211.96,63.025 +256653,212.74,58.999 +256654,212.03,60.339 +256655,211.31,61.662 +256656,210.57,62.966 +256657,211.51,59.008 +256658,210.75,60.324 +256659,209.98,61.624 +256660,209.18,62.906 +256661,210.28,59.017 +256662,209.47,60.31 +256663,208.64,61.586 +256664,207.79,62.845 +256665,209.06,59.027 +256666,208.19,60.296 +256667,207.3,61.548 +256668,206.4,62.783 +256669,207.83,59.039 +256670,206.91,60.282 +256671,205.97,61.509 +256672,205.01,62.72 +256673,206.6,59.051 +256674,205.63,60.268 +256675,204.63,61.47 +256676,203.62,62.656 +256677,205.37,59.065 +256678,204.34,60.255 +256679,203.3,61.431 +256680,202.24,62.59 +256681,204.14,59.079 +256682,203.06,60.242 +256683,201.97,61.391 +256684,200.85,62.524 +256685,202.91,59.094 +256686,201.78,60.229 +256687,200.63,61.351 +256688,199.47,62.457 +256689,201.67,59.111 +256690,200.49,60.217 +256691,199.3,61.31 +256692,198.08,62.389 +256693,200.44,59.128 +256694,199.21,60.205 +256695,197.96,61.269 +256696,196.7,62.319 +256697,199.2,59.146 +256698,197.93,60.193 +256699,196.63,61.228 +256700,195.31,62.249 +256701,197.97,59.165 +256702,196.64,60.182 +256703,195.3,61.187 +256704,193.93,62.178 +256705,196.73,59.184 +256706,195.36,60.17 +256707,193.97,61.145 +256708,192.55,62.106 +256709,195.49,59.205 +256710,194.07,60.159 +256711,192.63,61.103 +256712,191.17,62.034 +256713,194.25,59.226 +256714,192.79,60.149 +256715,191.3,61.061 +256716,189.79,61.96 +256717,193.01,59.248 +256718,191.5,60.138 +256719,189.97,61.018 +256720,188.41,61.886 +256721,191.77,59.271 +256722,190.22,60.128 +256723,188.64,60.975 +256724,187.03,61.81 +256725,190.52,59.294 +256726,188.93,60.118 +256727,187.31,60.932 +256728,185.66,61.734 +256729,189.28,59.318 +256730,187.65,60.108 +256731,185.98,60.888 +256732,184.28,61.658 +256733,188.03,59.343 +256734,186.36,60.099 +256735,184.65,60.845 +256736,182.91,61.58 +256737,186.79,59.368 +256738,185.07,60.089 +256739,183.32,60.801 +256740,181.53,61.502 +256741,185.54,59.394 +256742,183.78,60.08 +256743,181.99,60.757 +256744,180.16,61.423 +256745,184.29,59.421 +256746,182.5,60.071 +256747,180.66,60.713 +256748,178.79,61.344 +256749,183.04,59.448 +256750,181.21,60.062 +256751,179.34,60.668 +256752,177.42,61.264 +256753,181.78,59.475 +256754,179.92,60.053 +256755,178.01,60.623 +256756,176.05,61.183 +256757,180.53,59.503 +256758,178.63,60.045 +256759,176.68,60.578 +256760,174.68,61.102 +256761,179.27,59.532 +256762,177.34,60.036 +256763,175.36,60.533 +256764,173.32,61.02 +256765,178.01,59.561 +256766,176.05,60.028 +256767,174.03,60.488 +256768,171.95,60.938 +256769,176.75,59.59 +256770,174.76,60.02 +256771,172.71,60.443 +256772,170.59,60.855 +256773,175.49,59.619 +256774,173.47,60.012 +256775,171.38,60.397 +256776,169.23,60.772 +256777,174.23,59.649 +256778,172.17,60.004 +256779,170.06,60.351 +256780,167.87,60.688 +256781,172.97,59.679 +256782,170.88,59.996 +256783,168.73,60.305 +256784,166.51,60.604 +256785,171.7,59.71 +256786,169.59,59.989 +256787,167.41,60.259 +256788,165.15,60.52 +256789,170.43,59.741 +256790,168.3,59.981 +256791,166.09,60.213 +256792,163.8,60.435 +256793,169.17,59.771 +256794,167,59.973 +256795,164.77,60.167 +256796,162.45,60.351 +256797,167.89,59.803 +256798,165.71,59.966 +256799,163.44,60.121 +256800,161.09,60.265 +256801,166.62,59.834 +256802,164.41,59.958 +256803,162.12,60.074 +256804,159.74,60.18 +256805,165.35,59.865 +256806,163.12,59.951 +256807,160.8,60.028 +256808,158.39,60.094 +256809,164.07,59.896 +256810,161.82,59.943 +256811,159.48,59.982 +256812,157.05,60.009 +256813,162.79,59.928 +256814,160.52,59.936 +256815,158.17,59.935 +256816,155.7,59.923 +256817,161.51,59.959 +256818,159.23,59.929 +256819,156.85,59.888 +256820,154.36,59.837 +256821,160.23,59.991 +256822,157.93,59.921 +256823,155.53,59.842 +256824,153.02,59.75 +256825,158.95,60.022 +256826,156.63,59.914 +256827,154.21,59.795 +256828,151.68,59.664 +256829,157.67,60.053 +256830,155.33,59.906 +256831,152.9,59.749 +256832,150.34,59.578 +256833,156.38,60.085 +256834,154.03,59.899 +256835,151.58,59.702 +256836,149.01,59.492 +256837,155.09,60.116 +256838,152.73,59.891 +256839,150.27,59.655 +256840,147.67,59.406 +256841,153.8,60.147 +256842,151.43,59.884 +256843,148.95,59.609 +256844,146.34,59.32 +256845,152.51,60.177 +256846,150.13,59.876 +256847,147.64,59.562 +256848,145.01,59.234 +256849,151.22,60.208 +256850,148.83,59.868 +256851,146.32,59.516 +256852,143.68,59.148 +256853,149.92,60.238 +256854,147.53,59.86 +256855,145.01,59.469 +256856,142.36,59.063 +256857,148.62,60.268 +256858,146.22,59.852 +256859,143.7,59.423 +256860,141.03,58.977 +256861,147.32,60.298 +256862,144.92,59.844 +256863,142.39,59.376 +256864,139.71,58.892 +256865,146.02,60.327 +256866,143.62,59.836 +256867,141.08,59.33 +256868,138.39,58.807 +256869,144.72,60.356 +256870,142.31,59.828 +256871,139.77,59.284 +256872,137.07,58.723 +256873,143.42,60.384 +256874,141.01,59.819 +256875,138.46,59.238 +256876,135.76,58.639 +256877,142.11,60.412 +256878,139.7,59.81 +256879,137.15,59.192 +256880,134.44,58.555 +256881,140.8,60.44 +256882,138.39,59.802 +256883,135.85,59.146 +256884,133.13,58.472 +256885,139.49,60.467 +256886,137.09,59.793 +256887,134.54,59.101 +256888,131.82,58.389 +256889,138.18,60.493 +256890,135.78,59.784 +256891,133.23,59.055 +256892,130.51,58.306 +256893,136.87,60.519 +256894,134.47,59.774 +256895,131.93,59.01 +256896,129.21,58.224 +256897,135.55,60.545 +256898,133.16,59.765 +256899,130.62,58.965 +256900,127.9,58.143 +256901,134.23,60.569 +256902,131.85,59.755 +256903,129.32,58.92 +256904,126.6,58.062 +256905,132.92,60.594 +256906,130.54,59.745 +256907,128.02,58.875 +256908,125.3,57.981 +256909,131.6,60.617 +256910,129.23,59.735 +256911,126.71,58.83 +256912,124.01,57.902 +256913,130.27,60.64 +256914,127.92,59.724 +256915,125.41,58.786 +256916,122.71,57.823 +256917,128.95,60.662 +256918,126.61,59.714 +256919,124.11,58.742 +256920,121.42,57.744 +256921,127.62,60.683 +256922,125.3,59.703 +256923,122.81,58.698 +256924,120.13,57.667 +256925,126.3,60.704 +256926,123.98,59.692 +256927,121.51,58.654 +256928,118.84,57.59 +256929,124.97,60.724 +256930,122.67,59.68 +256931,120.21,58.611 +256932,117.56,57.514 +256933,123.64,60.743 +256934,121.36,59.668 +256935,118.91,58.568 +256936,116.27,57.438 +256937,122.3,60.761 +256938,120.04,59.656 +256939,117.61,58.525 +256940,114.99,57.364 +256941,120.97,60.778 +256942,118.73,59.644 +256943,116.32,58.482 +256944,113.71,57.29 +256945,119.63,60.795 +256946,117.41,59.631 +256947,115.02,58.44 +256948,112.43,57.217 +256949,118.3,60.81 +256950,116.09,59.618 +256951,113.72,58.397 +256952,111.16,57.145 +256953,116.96,60.825 +256954,114.78,59.605 +256955,112.43,58.356 +256956,109.88,57.074 +256957,115.62,60.838 +256958,113.46,59.591 +256959,111.14,58.314 +256960,108.61,57.004 +256961,114.28,60.851 +256962,112.14,59.577 +256963,109.84,58.273 +256964,107.34,56.935 +256965,112.93,60.862 +256966,110.82,59.563 +256967,108.55,58.232 +256968,106.07,56.867 +256969,111.59,60.873 +256970,109.5,59.548 +256971,107.26,58.192 +256972,104.81,56.8 +256973,110.24,60.882 +256974,108.19,59.533 +256975,105.96,58.151 +256976,103.54,56.734 +256977,108.89,60.891 +256978,106.87,59.518 +256979,104.67,58.112 +256980,102.28,56.669 +256981,107.54,60.898 +256982,105.55,59.502 +256983,103.38,58.072 +256984,101.02,56.605 +256985,106.19,60.905 +256986,104.22,59.486 +256987,102.09,58.033 +256988,99.764,56.543 +256989,104.84,60.91 +256990,102.9,59.469 +256991,100.8,57.994 +256992,98.508,56.481 +256993,103.48,60.914 +256994,101.58,59.453 +256995,99.514,57.956 +256996,97.253,56.421 +256997,102.13,60.917 +256998,100.26,59.435 +256999,98.226,57.918 +257000,96.001,56.362 +257001,100.77,60.918 +257002,98.935,59.417 +257003,96.939,57.88 +257004,94.751,56.304 +257005,99.414,60.919 +257006,97.612,59.399 +257007,95.652,57.843 +257008,93.502,56.247 +257009,98.055,60.918 +257010,96.288,59.381 +257011,94.365,57.806 +257012,92.255,56.191 +257013,96.694,60.916 +257014,94.964,59.362 +257015,93.079,57.769 +257016,91.009,56.137 +257017,95.332,60.913 +257018,93.64,59.342 +257019,91.794,57.733 +257020,89.766,56.084 +257021,93.969,60.909 +257022,92.315,59.322 +257023,90.509,57.698 +257024,88.524,56.032 +257025,92.605,60.903 +257026,90.989,59.302 +257027,89.225,57.663 +257028,87.283,55.982 +257029,91.239,60.896 +257030,89.663,59.281 +257031,87.941,57.628 +257032,86.044,55.932 +257033,89.872,60.888 +257034,88.337,59.26 +257035,86.658,57.593 +257036,84.807,55.885 +257037,88.504,60.879 +257038,87.01,59.239 +257039,85.375,57.559 +257040,83.571,55.838 +257041,87.135,60.868 +257042,85.684,59.217 +257043,84.093,57.526 +257044,82.337,55.793 +257045,85.765,60.856 +257046,84.356,59.194 +257047,82.811,57.493 +257048,81.104,55.749 +257049,84.394,60.842 +257050,83.029,59.171 +257051,81.529,57.46 +257052,79.872,55.707 +257053,83.022,60.828 +257054,81.701,59.148 +257055,80.248,57.428 +257056,78.642,55.666 +257057,81.649,60.811 +257058,80.372,59.124 +257059,78.968,57.396 +257060,77.413,55.626 +257061,80.275,60.794 +257062,79.044,59.099 +257063,77.688,57.365 +257064,76.185,55.588 +257065,78.9,60.775 +257066,77.715,59.075 +257067,76.408,57.334 +257068,74.959,55.551 +257069,77.524,60.755 +257070,76.386,59.049 +257071,75.129,57.304 +257072,73.733,55.516 +257073,76.147,60.733 +257074,75.056,59.024 +257075,73.85,57.274 +257076,72.509,55.482 +257077,74.77,60.71 +257078,73.726,58.997 +257079,72.571,57.244 +257080,71.286,55.449 +257081,73.391,60.686 +257082,72.396,58.971 +257083,71.293,57.215 +257084,70.063,55.418 +257085,72.012,60.661 +257086,71.066,58.943 +257087,70.015,57.187 +257088,68.842,55.388 +257089,70.632,60.633 +257090,69.736,58.916 +257091,68.738,57.158 +257092,67.622,55.36 +257093,69.252,60.605 +257094,68.405,58.888 +257095,67.46,57.131 +257096,66.402,55.333 +257097,67.87,60.575 +257098,67.074,58.859 +257099,66.183,57.104 +257100,65.183,55.308 +257101,66.489,60.544 +257102,65.743,58.83 +257103,64.907,57.077 +257104,63.965,55.284 +257105,65.106,60.511 +257106,64.412,58.8 +257107,63.63,57.051 +257108,62.748,55.261 +257109,63.723,60.477 +257110,63.081,58.77 +257111,62.354,57.025 +257112,61.531,55.24 +257113,62.339,60.442 +257114,61.749,58.739 +257115,61.078,57 +257116,60.315,55.221 +257117,60.955,60.405 +257118,60.417,58.708 +257119,59.803,56.975 +257120,59.1,55.202 +257121,59.57,60.367 +257122,59.085,58.677 +257123,58.527,56.95 +257124,57.885,55.186 +257125,58.185,60.327 +257126,57.754,58.645 +257127,57.252,56.926 +257128,56.67,55.17 +257129,56.8,60.286 +257130,56.422,58.613 +257131,55.977,56.903 +257132,55.456,55.156 +257133,55.414,60.244 +257134,55.089,58.58 +257135,54.702,56.88 +257136,54.242,55.144 +257137,54.028,60.2 +257138,53.757,58.546 +257139,53.427,56.857 +257140,53.029,55.132 +257141,52.641,60.155 +257142,52.425,58.512 +257143,52.152,56.835 +257144,51.815,55.122 +257145,51.254,60.109 +257146,51.093,58.478 +257147,50.878,56.813 +257148,50.602,55.114 +257149,49.867,60.061 +257150,49.761,58.443 +257151,49.603,56.792 +257152,49.389,55.107 +257153,48.48,60.012 +257154,48.428,58.408 +257155,48.329,56.771 +257156,48.176,55.101 +257157,47.093,59.962 +257158,47.096,58.372 +257159,47.055,56.751 +257160,46.964,55.097 +257161,45.706,59.91 +257162,45.764,58.336 +257163,45.78,56.731 +257164,45.751,55.094 +257165,44.318,59.857 +257166,44.432,58.299 +257167,44.506,56.711 +257168,44.538,55.092 +257169,42.93,59.803 +257170,43.099,58.262 +257171,43.232,56.692 +257172,43.325,55.092 +257173,41.543,59.747 +257174,41.767,58.225 +257175,41.958,56.673 +257176,42.111,55.093 +257177,40.155,59.69 +257178,40.435,58.187 +257179,40.684,56.655 +257180,40.898,55.095 +257181,38.768,59.632 +257182,39.103,58.149 +257183,39.409,56.637 +257184,39.684,55.098 +257185,37.381,59.572 +257186,37.771,58.11 +257187,38.135,56.62 +257188,38.47,55.103 +257189,35.993,59.512 +257190,36.439,58.071 +257191,36.861,56.603 +257192,37.255,55.109 +257193,34.606,59.45 +257194,35.108,58.031 +257195,35.586,56.586 +257196,36.041,55.116 +257197,33.22,59.387 +257198,33.776,57.991 +257199,34.312,56.57 +257200,34.825,55.124 +257201,31.833,59.322 +257202,32.445,57.95 +257203,33.037,56.554 +257204,33.609,55.133 +257205,30.447,59.257 +257206,31.114,57.909 +257207,31.763,56.538 +257208,32.393,55.144 +257209,29.061,59.19 +257210,29.783,57.868 +257211,30.488,56.523 +257212,31.176,55.156 +257213,27.675,59.122 +257214,28.452,57.827 +257215,29.213,56.508 +257216,29.958,55.169 +257217,26.29,59.053 +257218,27.121,57.785 +257219,27.938,56.494 +257220,28.739,55.183 +257221,24.906,58.983 +257222,25.791,57.742 +257223,26.662,56.48 +257224,27.52,55.197 +257225,23.522,58.912 +257226,24.461,57.699 +257227,25.387,56.466 +257228,26.3,55.214 +257229,22.138,58.84 +257230,23.131,57.656 +257231,24.111,56.453 +257232,25.079,55.231 +257233,20.755,58.767 +257234,21.801,57.613 +257235,22.835,56.44 +257236,23.858,55.249 +257237,19.373,58.692 +257238,20.472,57.569 +257239,21.559,56.427 +257240,22.635,55.268 +257241,17.991,58.617 +257242,19.143,57.525 +257243,20.283,56.415 +257244,21.411,55.287 +257245,16.61,58.541 +257246,17.814,57.48 +257247,19.006,56.402 +257248,20.187,55.308 +257249,15.229,58.463 +257250,16.486,57.436 +257251,17.729,56.391 +257252,18.961,55.33 +257253,13.85,58.385 +257254,15.158,57.39 +257255,16.452,56.379 +257256,17.734,55.353 +257257,12.471,58.306 +257258,13.83,57.345 +257259,15.175,56.368 +257260,16.506,55.376 +257261,11.093,58.226 +257262,12.503,57.299 +257263,13.897,56.357 +257264,15.277,55.4 +257265,9.7158,58.145 +257266,11.176,57.253 +257267,12.619,56.346 +257268,14.047,55.425 +257269,8.3396,58.064 +257270,9.8492,57.207 +257271,11.341,56.336 +257272,12.816,55.451 +257273,6.9644,57.981 +257274,8.523,57.16 +257275,10.062,56.325 +257276,11.583,55.478 +257277,5.5902,57.898 +257278,7.1972,57.114 +257279,8.7827,56.315 +257280,10.349,55.505 +257281,4.217,57.814 +257282,5.8719,57.066 +257283,7.5032,56.305 +257284,9.1136,55.533 +257285,2.8449,57.729 +257286,4.547,57.019 +257287,6.2234,56.296 +257288,7.8769,55.561 +257289,1.4739,57.643 +257290,3.2225,56.972 +257291,4.9431,56.286 +257292,6.6388,55.59 +257293,0.10398,57.557 +257294,1.8985,56.924 +257295,3.6625,56.277 +257296,5.3993,55.62 +257297,358.74,57.47 +257298,0.57491,56.876 +257299,2.3814,56.268 +257300,4.1584,55.65 +257301,357.37,57.383 +257302,359.25,56.828 +257303,1.0999,56.259 +257304,2.916,55.681 +257305,356,57.295 +257306,357.93,56.779 +257307,359.82,56.251 +257308,1.6721,55.712 +257309,354.64,57.206 +257310,356.61,56.731 +257311,358.54,56.242 +257312,0.42667,55.743 +257313,353.27,57.117 +257314,355.29,56.682 +257315,357.25,56.234 +257316,359.18,55.775 +257317,351.91,57.028 +257318,353.96,56.633 +257319,355.97,56.226 +257320,357.93,55.808 +257321,350.55,56.938 +257322,352.64,56.584 +257323,354.69,56.218 +257324,356.68,55.841 +257325,349.19,56.847 +257326,351.32,56.535 +257327,353.4,56.21 +257328,355.43,55.874 +257329,347.83,56.756 +257330,350,56.485 +257331,352.12,56.202 +257332,354.18,55.907 +257333,346.48,56.665 +257334,348.69,56.436 +257335,350.83,56.194 +257336,352.92,55.941 +257337,345.12,56.574 +257338,347.37,56.386 +257339,349.55,56.186 +257340,351.66,55.974 +257341,343.77,56.482 +257342,346.05,56.337 +257343,348.26,56.178 +257344,350.41,56.009 +257345,342.42,56.39 +257346,344.73,56.287 +257347,346.97,56.171 +257348,349.15,56.043 +257349,341.07,56.297 +257350,343.42,56.237 +257351,345.69,56.163 +257352,347.88,56.077 +257353,339.72,56.205 +257354,342.1,56.187 +257355,344.4,56.156 +257356,346.62,56.111 +257357,338.37,56.112 +257358,340.79,56.138 +257359,343.11,56.148 +257360,345.35,56.146 +257361,337.03,56.019 +257362,339.47,56.088 +257363,341.82,56.141 +257364,344.09,56.18 +257365,335.68,55.926 +257366,338.16,56.038 +257367,340.53,56.133 +257368,342.82,56.215 +257369,334.34,55.833 +257370,336.84,55.988 +257371,339.24,56.126 +257372,341.55,56.249 +257373,333,55.74 +257374,335.53,55.938 +257375,337.95,56.118 +257376,340.28,56.284 +257377,331.66,55.647 +257378,334.22,55.888 +257379,336.66,56.11 +257380,339,56.318 +257381,330.33,55.554 +257382,332.91,55.838 +257383,335.37,56.103 +257384,337.73,56.352 +257385,328.99,55.461 +257386,331.6,55.788 +257387,334.08,56.095 +257388,336.45,56.386 +257389,327.66,55.368 +257390,330.29,55.738 +257391,332.78,56.087 +257392,335.17,56.42 +257393,326.33,55.275 +257394,328.98,55.688 +257395,331.49,56.08 +257396,333.89,56.453 +257397,325,55.183 +257398,327.67,55.638 +257399,330.2,56.072 +257400,332.6,56.486 +257401,323.68,55.09 +257402,326.36,55.588 +257403,328.9,56.064 +257404,331.32,56.519 +257405,322.35,54.998 +257406,325.05,55.539 +257407,327.61,56.056 +257408,330.03,56.552 +257409,321.03,54.906 +257410,323.75,55.489 +257411,326.31,56.047 +257412,328.74,56.584 +257413,319.71,54.815 +257414,322.44,55.44 +257415,325.02,56.039 +257416,327.45,56.616 +257417,318.39,54.724 +257418,321.14,55.391 +257419,323.72,56.031 +257420,326.16,56.647 +257421,317.08,54.633 +257422,319.83,55.341 +257423,322.42,56.022 +257424,324.87,56.678 +257425,315.76,54.543 +257426,318.53,55.292 +257427,321.12,56.013 +257428,323.57,56.709 +257429,314.45,54.453 +257430,317.23,55.243 +257431,319.82,56.004 +257432,322.27,56.738 +257433,313.14,54.364 +257434,315.92,55.195 +257435,318.53,55.995 +257436,320.97,56.768 +257437,311.83,54.275 +257438,314.62,55.146 +257439,317.23,55.986 +257440,319.67,56.797 +257441,310.53,54.186 +257442,313.32,55.098 +257443,315.92,55.976 +257444,318.37,56.825 +257445,309.23,54.099 +257446,312.02,55.05 +257447,314.62,55.966 +257448,317.06,56.852 +257449,307.93,54.012 +257450,310.72,55.002 +257451,313.32,55.956 +257452,315.75,56.879 +257453,306.63,53.925 +257454,309.43,54.954 +257455,312.02,55.946 +257456,314.45,56.905 +257457,305.33,53.84 +257458,308.13,54.907 +257459,310.72,55.935 +257460,313.14,56.931 +257461,304.04,53.755 +257462,306.83,54.859 +257463,309.41,55.925 +257464,311.82,56.956 +257465,302.74,53.671 +257466,305.53,54.812 +257467,308.11,55.914 +257468,310.51,56.979 +257469,301.45,53.587 +257470,304.24,54.766 +257471,306.81,55.902 +257472,309.19,57.003 +257473,300.17,53.505 +257474,302.94,54.719 +257475,305.5,55.891 +257476,307.88,57.025 +257477,298.88,53.423 +257478,301.65,54.673 +257479,304.19,55.879 +257480,306.56,57.046 +257481,297.6,53.342 +257482,300.36,54.627 +257483,302.89,55.867 +257484,305.24,57.067 +257485,296.32,53.262 +257486,299.06,54.581 +257487,301.58,55.854 +257488,303.91,57.086 +257489,295.04,53.183 +257490,297.77,54.536 +257491,300.27,55.842 +257492,302.59,57.105 +257493,293.76,53.105 +257494,296.48,54.491 +257495,298.97,55.828 +257496,301.26,57.123 +257497,292.49,53.028 +257498,295.19,54.446 +257499,297.66,55.815 +257500,299.93,57.139 +257501,291.22,52.952 +257502,293.9,54.402 +257503,296.35,55.801 +257504,298.6,57.155 +257505,289.95,52.878 +257506,292.61,54.358 +257507,295.04,55.787 +257508,297.27,57.17 +257509,288.68,52.804 +257510,291.32,54.315 +257511,293.73,55.772 +257512,295.94,57.183 +257513,287.41,52.731 +257514,290.04,54.271 +257515,292.42,55.758 +257516,294.61,57.196 +257517,286.15,52.66 +257518,288.75,54.228 +257519,291.11,55.742 +257520,293.27,57.207 +257521,284.89,52.589 +257522,287.46,54.186 +257523,289.8,55.727 +257524,291.93,57.218 +257525,283.63,52.52 +257526,286.18,54.144 +257527,288.48,55.711 +257528,290.6,57.227 +257529,282.37,52.452 +257530,284.89,54.102 +257531,287.17,55.694 +257532,289.26,57.235 +257533,281.12,52.386 +257534,283.61,54.061 +257535,285.86,55.677 +257536,287.91,57.241 +257537,279.86,52.32 +257538,282.32,54.02 +257539,284.54,55.66 +257540,286.57,57.247 +257541,278.61,52.256 +257542,281.04,53.979 +257543,283.23,55.642 +257544,285.23,57.251 +257545,277.36,52.194 +257546,279.76,53.939 +257547,281.92,55.624 +257548,283.88,57.255 +257549,276.12,52.132 +257550,278.48,53.9 +257551,280.6,55.606 +257552,282.53,57.256 +257553,274.87,52.072 +257554,277.2,53.861 +257555,279.29,55.587 +257556,281.18,57.257 +257557,273.63,52.013 +257558,275.92,53.822 +257559,277.97,55.567 +257560,279.83,57.256 +257561,272.39,51.956 +257562,274.64,53.784 +257563,276.65,55.548 +257564,278.48,57.254 +257565,271.15,51.9 +257566,273.36,53.746 +257567,275.34,55.527 +257568,277.13,57.251 +257569,269.91,51.846 +257570,272.08,53.708 +257571,274.02,55.506 +257572,275.77,57.246 +257573,268.68,51.793 +257574,270.8,53.672 +257575,272.7,55.485 +257576,274.42,57.24 +257577,267.44,51.741 +257578,269.52,53.635 +257579,271.38,55.464 +257580,273.06,57.233 +257581,266.21,51.691 +257582,268.25,53.599 +257583,270.06,55.441 +257584,271.7,57.224 +257585,264.98,51.643 +257586,266.97,53.564 +257587,268.75,55.419 +257588,270.35,57.214 +257589,263.75,51.596 +257590,265.69,53.529 +257591,267.43,55.396 +257592,268.99,57.203 +257593,262.52,51.55 +257594,264.42,53.494 +257595,266.11,55.372 +257596,267.62,57.19 +257597,261.3,51.506 +257598,263.14,53.46 +257599,264.79,55.348 +257600,266.26,57.175 +257601,260.07,51.464 +257602,261.87,53.427 +257603,263.47,55.323 +257604,264.9,57.16 +257605,258.85,51.423 +257606,260.6,53.394 +257607,262.15,55.298 +257608,263.53,57.142 +257609,257.63,51.383 +257610,259.32,53.361 +257611,260.82,55.273 +257612,262.17,57.124 +257613,256.41,51.346 +257614,258.05,53.329 +257615,259.5,55.247 +257616,260.8,57.104 +257617,255.19,51.309 +257618,256.78,53.298 +257619,258.18,55.22 +257620,259.43,57.082 +257621,253.97,51.275 +257622,255.51,53.267 +257623,256.86,55.193 +257624,258.07,57.059 +257625,252.76,51.242 +257626,254.23,53.236 +257627,255.54,55.165 +257628,256.7,57.035 +257629,251.54,51.21 +257630,252.96,53.206 +257631,254.21,55.137 +257632,255.33,57.009 +257633,250.33,51.18 +257634,251.69,53.177 +257635,252.89,55.109 +257636,253.96,56.981 +257637,249.12,51.152 +257638,250.42,53.148 +257639,251.57,55.08 +257640,252.59,56.952 +257641,247.9,51.125 +257642,249.15,53.12 +257643,250.25,55.05 +257644,251.21,56.922 +257645,246.69,51.1 +257646,247.88,53.092 +257647,248.92,55.02 +257648,249.84,56.89 +257649,245.48,51.077 +257650,246.61,53.064 +257651,247.6,54.989 +257652,248.47,56.856 +257653,244.28,51.055 +257654,245.34,53.037 +257655,246.28,54.958 +257656,247.09,56.822 +257657,243.07,51.035 +257658,244.08,53.011 +257659,244.95,54.926 +257660,245.72,56.785 +257661,241.86,51.016 +257662,242.81,52.985 +257663,243.63,54.894 +257664,244.34,56.747 +257665,240.65,50.999 +257666,241.54,52.96 +257667,242.3,54.862 +257668,242.97,56.708 +257669,239.45,50.983 +257670,240.27,52.935 +257671,240.98,54.828 +257672,241.59,56.667 +257673,238.24,50.969 +257674,239,52.911 +257675,239.65,54.795 +257676,240.21,56.625 +257677,237.04,50.957 +257678,237.74,52.887 +257679,238.33,54.761 +257680,238.83,56.581 +257681,235.83,50.946 +257682,236.47,52.864 +257683,237.01,54.726 +257684,237.46,56.536 +257685,234.63,50.936 +257686,235.2,52.841 +257687,235.68,54.691 +257688,236.08,56.489 +257689,233.43,50.929 +257690,233.94,52.819 +257691,234.36,54.655 +257692,234.7,56.441 +257693,232.22,50.922 +257694,232.67,52.797 +257695,233.03,54.619 +257696,233.32,56.391 +257697,231.02,50.917 +257698,231.4,52.776 +257699,231.71,54.582 +257700,231.94,56.34 +257701,229.82,50.914 +257702,230.14,52.755 +257703,230.38,54.545 +257704,230.56,56.288 +257705,228.62,50.912 +257706,228.87,52.735 +257707,229.06,54.508 +257708,229.18,56.234 +257709,227.41,50.912 +257710,227.61,52.715 +257711,227.73,54.469 +257712,227.8,56.179 +257713,226.21,50.913 +257714,226.34,52.695 +257715,226.41,54.431 +257716,226.42,56.122 +257717,225.01,50.916 +257718,225.07,52.677 +257719,225.08,54.392 +257720,225.04,56.064 +257721,223.81,50.92 +257722,223.81,52.658 +257723,223.76,54.352 +257724,223.66,56.004 +257725,222.61,50.925 +257726,222.54,52.64 +257727,222.43,54.312 +257728,222.28,55.943 +257729,221.4,50.932 +257730,221.28,52.623 +257731,221.11,54.272 +257732,220.9,55.881 +257733,220.2,50.94 +257734,220.01,52.606 +257735,219.78,54.231 +257736,219.52,55.817 +257737,219,50.95 +257738,218.75,52.589 +257739,218.46,54.19 +257740,218.14,55.752 +257741,217.79,50.96 +257742,217.48,52.573 +257743,217.13,54.148 +257744,216.76,55.686 +257745,216.59,50.973 +257746,216.21,52.557 +257747,215.81,54.106 +257748,215.38,55.618 +257749,215.39,50.986 +257750,214.95,52.542 +257751,214.48,54.063 +257752,214,55.55 +257753,214.18,51.001 +257754,213.68,52.527 +257755,213.16,54.02 +257756,212.62,55.479 +257757,212.97,51.016 +257758,212.42,52.513 +257759,211.84,53.977 +257760,211.24,55.408 +257761,211.77,51.034 +257762,211.15,52.499 +257763,210.51,53.933 +257764,209.86,55.335 +257765,210.56,51.052 +257766,209.88,52.485 +257767,209.19,53.889 +257768,208.48,55.261 +257769,209.35,51.071 +257770,208.62,52.472 +257771,207.87,53.844 +257772,207.11,55.186 +257773,208.15,51.092 +257774,207.35,52.459 +257775,206.54,53.799 +257776,205.73,55.11 +257777,206.94,51.114 +257778,206.08,52.447 +257779,205.22,53.753 +257780,204.35,55.033 +257781,205.73,51.136 +257782,204.82,52.435 +257783,203.9,53.708 +257784,202.97,54.954 +257785,204.52,51.16 +257786,203.55,52.423 +257787,202.58,53.661 +257788,201.6,54.875 +257789,203.31,51.185 +257790,202.28,52.412 +257791,201.26,53.615 +257792,200.22,54.794 +257793,202.09,51.211 +257794,201.02,52.401 +257795,199.93,53.568 +257796,198.85,54.712 +257797,200.88,51.238 +257798,199.75,52.39 +257799,198.61,53.521 +257800,197.47,54.629 +257801,199.67,51.266 +257802,198.48,52.38 +257803,197.29,53.473 +257804,196.1,54.546 +257805,198.45,51.294 +257806,197.21,52.37 +257807,195.97,53.425 +257808,194.73,54.461 +257809,197.23,51.324 +257810,195.94,52.36 +257811,194.65,53.377 +257812,193.35,54.375 +257813,196.01,51.354 +257814,194.67,52.35 +257815,193.33,53.329 +257816,191.98,54.288 +257817,194.8,51.385 +257818,193.41,52.341 +257819,192.01,53.28 +257820,190.61,54.201 +257821,193.57,51.417 +257822,192.14,52.332 +257823,190.69,53.231 +257824,189.24,54.112 +257825,192.35,51.45 +257826,190.87,52.324 +257827,189.37,53.182 +257828,187.87,54.023 +257829,191.13,51.484 +257830,189.6,52.315 +257831,188.06,53.132 +257832,186.51,53.933 +257833,189.91,51.518 +257834,188.33,52.307 +257835,186.74,53.082 +257836,185.14,53.842 +257837,188.68,51.553 +257838,187.06,52.299 +257839,185.42,53.032 +257840,183.77,53.75 +257841,187.45,51.588 +257842,185.78,52.292 +257843,184.1,52.982 +257844,182.41,53.658 +257845,186.22,51.624 +257846,184.51,52.284 +257847,182.79,52.931 +257848,181.04,53.564 +257849,184.99,51.66 +257850,183.24,52.277 +257851,181.47,52.881 +257852,179.68,53.47 +257853,183.76,51.697 +257854,181.97,52.27 +257855,180.16,52.83 +257856,178.32,53.376 +257857,182.53,51.735 +257858,180.7,52.263 +257859,178.84,52.779 +257860,176.96,53.281 +257861,181.29,51.773 +257862,179.42,52.256 +257863,177.53,52.728 +257864,175.6,53.185 +257865,180.06,51.811 +257866,178.15,52.25 +257867,176.21,52.676 +257868,174.24,53.089 +257869,178.82,51.85 +257870,176.87,52.243 +257871,174.9,52.625 +257872,172.89,52.992 +257873,177.58,51.889 +257874,175.6,52.237 +257875,173.59,52.573 +257876,171.53,52.895 +257877,176.34,51.928 +257878,174.33,52.231 +257879,172.27,52.521 +257880,170.18,52.797 +257881,175.1,51.968 +257882,173.05,52.225 +257883,170.96,52.469 +257884,168.83,52.699 +257885,173.85,52.008 +257886,171.77,52.219 +257887,169.65,52.417 +257888,167.48,52.601 +257889,172.6,52.048 +257890,170.5,52.213 +257891,168.34,52.365 +257892,166.13,52.502 +257893,171.36,52.088 +257894,169.22,52.207 +257895,167.03,52.313 +257896,164.78,52.403 +257897,170.11,52.128 +257898,167.94,52.201 +257899,165.72,52.26 +257900,163.44,52.304 +257901,168.85,52.169 +257902,166.66,52.195 +257903,164.41,52.208 +257904,162.09,52.204 +257905,167.6,52.209 +257906,165.39,52.19 +257907,163.1,52.156 +257908,160.75,52.104 +257909,166.35,52.25 +257910,164.11,52.184 +257911,161.8,52.103 +257912,159.41,52.004 +257913,165.09,52.29 +257914,162.83,52.178 +257915,160.49,52.051 +257916,158.07,51.904 +257917,163.83,52.331 +257918,161.55,52.173 +257919,159.18,51.998 +257920,156.73,51.804 +257921,162.57,52.371 +257922,160.27,52.167 +257923,157.88,51.946 +257924,155.39,51.704 +257925,161.31,52.411 +257926,158.99,52.161 +257927,156.57,51.893 +257928,154.06,51.604 +257929,160.04,52.451 +257930,157.7,52.156 +257931,155.27,51.841 +257932,152.73,51.504 +257933,158.78,52.491 +257934,156.42,52.15 +257935,153.97,51.789 +257936,151.4,51.404 +257937,157.51,52.531 +257938,155.14,52.144 +257939,152.67,51.736 +257940,150.07,51.304 +257941,156.24,52.57 +257942,153.86,52.138 +257943,151.36,51.684 +257944,148.74,51.204 +257945,154.97,52.609 +257946,152.57,52.132 +257947,150.06,51.632 +257948,147.42,51.105 +257949,153.69,52.648 +257950,151.29,52.126 +257951,148.76,51.58 +257952,146.1,51.005 +257953,152.42,52.686 +257954,150,52.12 +257955,147.46,51.528 +257956,144.78,50.906 +257957,151.14,52.724 +257958,148.72,52.114 +257959,146.16,51.476 +257960,143.46,50.808 +257961,149.86,52.761 +257962,147.43,52.107 +257963,144.86,51.425 +257964,142.14,50.709 +257965,148.58,52.798 +257966,146.14,52.101 +257967,143.57,51.373 +257968,140.83,50.611 +257969,147.3,52.835 +257970,144.86,52.094 +257971,142.27,51.322 +257972,139.51,50.514 +257973,146.01,52.871 +257974,143.57,52.087 +257975,140.97,51.271 +257976,138.2,50.416 +257977,144.73,52.906 +257978,142.28,52.08 +257979,139.68,51.22 +257980,136.9,50.32 +257981,143.44,52.941 +257982,140.99,52.073 +257983,138.38,51.169 +257984,135.59,50.224 +257985,142.15,52.975 +257986,139.7,52.066 +257987,137.09,51.118 +257988,134.29,50.128 +257989,140.86,53.009 +257990,138.41,52.058 +257991,135.8,51.068 +257992,132.99,50.033 +257993,139.56,53.042 +257994,137.12,52.05 +257995,134.51,51.018 +257996,131.69,49.939 +257997,138.27,53.074 +257998,135.83,52.042 +257999,133.21,50.968 +258000,130.39,49.846 +258001,136.97,53.105 +258002,134.54,52.034 +258003,131.92,50.918 +258004,129.1,49.753 +258005,135.67,53.136 +258006,133.24,52.025 +258007,130.63,50.869 +258008,127.8,49.661 +258009,134.37,53.165 +258010,131.95,52.016 +258011,129.34,50.82 +258012,126.51,49.569 +258013,133.07,53.194 +258014,130.66,52.007 +258015,128.06,50.771 +258016,125.22,49.479 +258017,131.76,53.222 +258018,129.36,51.998 +258019,126.77,50.722 +258020,123.94,49.39 +258021,130.46,53.249 +258022,128.07,51.988 +258023,125.48,50.674 +258024,122.66,49.301 +258025,129.15,53.276 +258026,126.77,51.978 +258027,124.19,50.626 +258028,121.37,49.213 +258029,127.84,53.301 +258030,125.47,51.968 +258031,122.91,50.579 +258032,120.1,49.127 +258033,126.53,53.325 +258034,124.18,51.957 +258035,121.62,50.532 +258036,118.82,49.041 +258037,125.21,53.348 +258038,122.88,51.946 +258039,120.34,50.485 +258040,117.54,48.957 +258041,123.9,53.37 +258042,121.58,51.935 +258043,119.06,50.438 +258044,116.27,48.873 +258045,122.58,53.391 +258046,120.28,51.923 +258047,117.78,50.392 +258048,115,48.791 +258049,121.26,53.411 +258050,118.99,51.911 +258051,116.49,50.347 +258052,113.74,48.71 +258053,119.94,53.43 +258054,117.69,51.898 +258055,115.21,50.301 +258056,112.47,48.63 +258057,118.62,53.448 +258058,116.39,51.886 +258059,113.93,50.257 +258060,111.21,48.551 +258061,117.3,53.465 +258062,115.09,51.872 +258063,112.65,50.212 +258064,109.95,48.473 +258065,115.98,53.48 +258066,113.78,51.859 +258067,111.37,50.168 +258068,108.69,48.397 +258069,114.65,53.494 +258070,112.48,51.845 +258071,110.1,50.124 +258072,107.43,48.322 +258073,113.32,53.507 +258074,111.18,51.831 +258075,108.82,50.081 +258076,106.18,48.249 +258077,111.99,53.519 +258078,109.88,51.816 +258079,107.54,50.039 +258080,104.93,48.177 +258081,110.66,53.529 +258082,108.58,51.8 +258083,106.27,49.996 +258084,103.68,48.106 +258085,109.33,53.539 +258086,107.27,51.785 +258087,104.99,49.955 +258088,102.43,48.037 +258089,108,53.547 +258090,105.97,51.769 +258091,103.72,49.913 +258092,101.19,47.969 +258093,106.66,53.553 +258094,104.66,51.752 +258095,102.44,49.873 +258096,99.945,47.902 +258097,105.32,53.558 +258098,103.36,51.735 +258099,101.17,49.832 +258100,98.705,47.837 +258101,103.99,53.562 +258102,102.05,51.718 +258103,99.9,49.792 +258104,97.466,47.774 +258105,102.65,53.564 +258106,100.75,51.7 +258107,98.628,49.753 +258108,96.23,47.712 +258109,101.31,53.565 +258110,99.441,51.681 +258111,97.357,49.714 +258112,94.996,47.652 +258113,99.966,53.565 +258114,98.135,51.662 +258115,96.087,49.676 +258116,93.763,47.593 +258117,98.623,53.563 +258118,96.828,51.643 +258119,94.817,49.638 +258120,92.533,47.536 +258121,97.278,53.56 +258122,95.52,51.623 +258123,93.548,49.601 +258124,91.305,47.481 +258125,95.933,53.555 +258126,94.212,51.603 +258127,92.28,49.565 +258128,90.078,47.427 +258129,94.586,53.549 +258130,92.904,51.582 +258131,91.012,49.528 +258132,88.854,47.375 +258133,93.238,53.541 +258134,91.595,51.561 +258135,89.745,49.493 +258136,87.631,47.325 +258137,91.89,53.532 +258138,90.286,51.539 +258139,88.478,49.458 +258140,86.41,47.276 +258141,90.539,53.521 +258142,88.977,51.516 +258143,87.212,49.424 +258144,85.191,47.229 +258145,89.188,53.509 +258146,87.667,51.494 +258147,85.947,49.39 +258148,83.974,47.184 +258149,87.836,53.496 +258150,86.357,51.47 +258151,84.682,49.356 +258152,82.758,47.141 +258153,86.483,53.48 +258154,85.046,51.446 +258155,83.417,49.324 +258156,81.544,47.099 +258157,85.129,53.463 +258158,83.736,51.422 +258159,82.153,49.291 +258160,80.331,47.059 +258161,83.774,53.445 +258162,82.425,51.397 +258163,80.89,49.26 +258164,79.12,47.021 +258165,82.418,53.425 +258166,81.113,51.371 +258167,79.627,49.229 +258168,77.911,46.985 +258169,81.061,53.404 +258170,79.802,51.345 +258171,78.365,49.198 +258172,76.703,46.95 +258173,79.703,53.38 +258174,78.49,51.319 +258175,77.103,49.169 +258176,75.497,46.917 +258177,78.344,53.356 +258178,77.178,51.292 +258179,75.842,49.139 +258180,74.291,46.886 +258181,76.985,53.33 +258182,75.865,51.264 +258183,74.581,49.111 +258184,73.087,46.857 +258185,75.624,53.302 +258186,74.553,51.236 +258187,73.32,49.083 +258188,71.885,46.83 +258189,74.263,53.272 +258190,73.24,51.207 +258191,72.06,49.055 +258192,70.683,46.804 +258193,72.902,53.241 +258194,71.927,51.178 +258195,70.8,49.028 +258196,69.483,46.781 +258197,71.539,53.209 +258198,70.613,51.148 +258199,69.541,49.002 +258200,68.283,46.759 +258201,70.176,53.174 +258202,69.3,51.118 +258203,68.282,48.976 +258204,67.085,46.738 +258205,68.812,53.139 +258206,67.986,51.087 +258207,67.023,48.951 +258208,65.888,46.72 +258209,67.448,53.101 +258210,66.673,51.056 +258211,65.765,48.927 +258212,64.691,46.704 +258213,66.083,53.062 +258214,65.359,51.024 +258215,64.507,48.903 +258216,63.496,46.689 +258217,64.718,53.022 +258218,64.045,50.991 +258219,63.249,48.879 +258220,62.301,46.676 +258221,63.352,52.98 +258222,62.731,50.958 +258223,61.992,48.857 +258224,61.107,46.665 +258225,61.986,52.936 +258226,61.416,50.925 +258227,60.734,48.835 +258228,59.913,46.655 +258229,60.62,52.89 +258230,60.102,50.891 +258231,59.478,48.813 +258232,58.721,46.648 +258233,59.252,52.844 +258234,58.788,50.856 +258235,58.221,48.792 +258236,57.528,46.642 +258237,57.885,52.795 +258238,57.473,50.821 +258239,56.964,48.772 +258240,56.336,46.638 +258241,56.517,52.745 +258242,56.159,50.786 +258243,55.708,48.752 +258244,55.145,46.635 +258245,55.149,52.693 +258246,54.844,50.749 +258247,54.452,48.732 +258248,53.954,46.635 +258249,53.781,52.64 +258250,53.53,50.713 +258251,53.196,48.714 +258252,52.763,46.636 +258253,52.413,52.586 +258254,52.215,50.676 +258255,51.941,48.696 +258256,51.573,46.638 +258257,51.044,52.529 +258258,50.901,50.638 +258259,50.685,48.678 +258260,50.382,46.643 +258261,49.676,52.472 +258262,49.586,50.6 +258263,49.43,48.661 +258264,49.192,46.649 +258265,48.307,52.412 +258266,48.272,50.561 +258267,48.174,48.644 +258268,48.002,46.656 +258269,46.938,52.352 +258270,46.957,50.522 +258271,46.919,48.628 +258272,46.812,46.665 +258273,45.569,52.289 +258274,45.643,50.482 +258275,45.664,48.613 +258276,45.621,46.676 +258277,44.2,52.226 +258278,44.329,50.442 +258279,44.409,48.598 +258280,44.431,46.689 +258281,42.831,52.161 +258282,43.014,50.402 +258283,43.154,48.584 +258284,43.24,46.703 +258285,41.463,52.094 +258286,41.7,50.361 +258287,41.899,48.57 +258288,42.05,46.718 +258289,40.094,52.026 +258290,40.386,50.319 +258291,40.643,48.557 +258292,40.858,46.735 +258293,38.725,51.957 +258294,39.073,50.277 +258295,39.388,48.544 +258296,39.667,46.753 +258297,37.357,51.886 +258298,37.759,50.235 +258299,38.133,48.532 +258300,38.475,46.773 +258301,35.989,51.814 +258302,36.446,50.192 +258303,36.878,48.52 +258304,37.283,46.795 +258305,34.621,51.74 +258306,35.132,50.148 +258307,35.623,48.508 +258308,36.09,46.817 +258309,33.254,51.665 +258310,33.819,50.104 +258311,34.368,48.497 +258312,34.896,46.841 +258313,31.887,51.589 +258314,32.506,50.06 +258315,33.112,48.487 +258316,33.702,46.867 +258317,30.52,51.511 +258318,31.194,50.016 +258319,31.857,48.477 +258320,32.507,46.894 +258321,29.153,51.433 +258322,29.881,49.971 +258323,30.601,48.468 +258324,31.311,46.922 +258325,27.787,51.353 +258326,28.569,49.925 +258327,29.345,48.459 +258328,30.115,46.951 +258329,26.422,51.271 +258330,27.257,49.879 +258331,28.089,48.45 +258332,28.918,46.981 +258333,25.057,51.189 +258334,25.946,49.833 +258335,26.833,48.442 +258336,27.72,47.013 +258337,23.693,51.105 +258338,24.634,49.787 +258339,25.577,48.434 +258340,26.521,47.046 +258341,22.329,51.02 +258342,23.323,49.74 +258343,24.321,48.426 +258344,25.321,47.08 +258345,20.966,50.934 +258346,22.013,49.692 +258347,23.064,48.419 +258348,24.119,47.115 +258349,19.603,50.847 +258350,20.702,49.645 +258351,21.807,48.413 +258352,22.917,47.151 +258353,18.241,50.759 +258354,19.392,49.597 +258355,20.55,48.407 +258356,21.714,47.188 +258357,16.88,50.67 +258358,18.083,49.549 +258359,19.292,48.401 +258360,20.509,47.226 +258361,15.52,50.579 +258362,16.774,49.5 +258363,18.035,48.395 +258364,19.304,47.265 +258365,14.161,50.488 +258366,15.465,49.451 +258367,16.777,48.39 +258368,18.097,47.305 +258369,12.802,50.396 +258370,14.156,49.402 +258371,15.518,48.385 +258372,16.889,47.346 +258373,11.444,50.303 +258374,12.848,49.352 +258375,14.26,48.38 +258376,15.679,47.387 +258377,10.088,50.209 +258378,11.541,49.303 +258379,13.001,48.376 +258380,14.468,47.43 +258381,8.7317,50.114 +258382,10.234,49.253 +258383,11.741,48.372 +258384,13.256,47.473 +258385,7.3769,50.018 +258386,8.927,49.202 +258387,10.482,48.369 +258388,12.042,47.517 +258389,6.0232,49.921 +258390,7.6209,49.152 +258391,9.2217,48.365 +258392,10.827,47.562 +258393,4.6705,49.823 +258394,6.3152,49.101 +258395,7.9614,48.362 +258396,9.6103,47.607 +258397,3.3189,49.725 +258398,5.0099,49.05 +258399,6.7006,48.359 +258400,8.3921,47.653 +258401,1.9685,49.626 +258402,3.7052,48.999 +258403,5.4394,48.356 +258404,7.1723,47.699 +258405,0.61928,49.527 +258406,2.4011,48.948 +258407,4.1779,48.354 +258408,5.951,47.746 +258409,359.27,49.426 +258410,1.0974,48.896 +258411,2.9159,48.352 +258412,4.728,47.794 +258413,357.92,49.325 +258414,359.79,48.845 +258415,1.6535,48.35 +258416,3.5035,47.842 +258417,356.58,49.224 +258418,358.49,48.793 +258419,0.39061,48.348 +258420,2.2772,47.89 +258421,355.23,49.122 +258422,357.19,48.741 +258423,359.13,48.346 +258424,1.0493,47.939 +258425,353.89,49.019 +258426,355.89,48.689 +258427,357.86,48.344 +258428,359.82,47.988 +258429,352.55,48.916 +258430,354.59,48.637 +258431,356.6,48.343 +258432,358.59,48.038 +258433,351.21,48.813 +258434,353.29,48.584 +258435,355.33,48.342 +258436,357.36,48.087 +258437,349.87,48.709 +258438,351.99,48.532 +258439,354.07,48.341 +258440,356.12,48.137 +258441,348.54,48.605 +258442,350.69,48.479 +258443,352.8,48.34 +258444,354.88,48.187 +258445,347.2,48.5 +258446,349.39,48.427 +258447,351.54,48.339 +258448,353.65,48.237 +258449,345.87,48.396 +258450,348.09,48.374 +258451,350.27,48.338 +258452,352.41,48.288 +258453,344.53,48.291 +258454,346.8,48.322 +258455,349,48.337 +258456,351.16,48.338 +258457,343.2,48.185 +258458,345.5,48.269 +258459,347.74,48.336 +258460,349.92,48.389 +258461,341.87,48.08 +258462,344.2,48.216 +258463,346.47,48.336 +258464,348.67,48.439 +258465,340.55,47.974 +258466,342.91,48.164 +258467,345.2,48.335 +258468,347.43,48.489 +258469,339.22,47.869 +258470,341.61,48.111 +258471,343.93,48.334 +258472,346.18,48.54 +258473,337.9,47.763 +258474,340.32,48.059 +258475,342.66,48.333 +258476,344.93,48.59 +258477,336.58,47.658 +258478,339.03,48.006 +258479,341.39,48.333 +258480,343.67,48.64 +258481,335.26,47.552 +258482,337.73,47.954 +258483,340.12,48.332 +258484,342.42,48.689 +258485,333.94,47.447 +258486,336.44,47.901 +258487,338.85,48.331 +258488,341.16,48.739 +258489,332.62,47.341 +258490,335.15,47.849 +258491,337.57,48.33 +258492,339.9,48.788 +258493,331.31,47.236 +258494,333.86,47.797 +258495,336.3,48.33 +258496,338.64,48.837 +258497,330,47.131 +258498,332.57,47.745 +258499,335.03,48.329 +258500,337.38,48.886 +258501,328.69,47.027 +258502,331.28,47.693 +258503,333.76,48.328 +258504,336.11,48.934 +258505,327.38,46.922 +258506,330,47.641 +258507,332.48,48.326 +258508,334.85,48.982 +258509,326.07,46.818 +258510,328.71,47.59 +258511,331.21,48.325 +258512,333.58,49.029 +258513,324.77,46.715 +258514,327.42,47.538 +258515,329.93,48.324 +258516,332.31,49.076 +258517,323.46,46.611 +258518,326.14,47.487 +258519,328.65,48.322 +258520,331.04,49.122 +258521,322.16,46.509 +258522,324.85,47.436 +258523,327.38,48.321 +258524,329.76,49.168 +258525,320.87,46.407 +258526,323.57,47.385 +258527,326.1,48.319 +258528,328.49,49.213 +258529,319.57,46.305 +258530,322.28,47.334 +258531,324.82,48.317 +258532,327.21,49.257 +258533,318.28,46.204 +258534,321,47.284 +258535,323.54,48.314 +258536,325.93,49.301 +258537,316.99,46.104 +258538,319.72,47.234 +258539,322.27,48.312 +258540,324.65,49.344 +258541,315.7,46.004 +258542,318.44,47.184 +258543,320.99,48.309 +258544,323.37,49.386 +258545,314.41,45.905 +258546,317.16,47.135 +258547,319.71,48.307 +258548,322.08,49.428 +258549,313.12,45.807 +258550,315.88,47.085 +258551,318.43,48.303 +258552,320.8,49.468 +258553,311.84,45.71 +258554,314.6,47.037 +258555,317.14,48.3 +258556,319.51,49.508 +258557,310.56,45.613 +258558,313.32,46.988 +258559,315.86,48.296 +258560,318.22,49.547 +258561,309.28,45.518 +258562,312.05,46.94 +258563,314.58,48.293 +258564,316.93,49.585 +258565,308.01,45.423 +258566,310.77,46.892 +258567,313.3,48.288 +258568,315.63,49.622 +258569,306.73,45.33 +258570,309.49,46.844 +258571,312.01,48.284 +258572,314.34,49.658 +258573,305.46,45.237 +258574,308.22,46.797 +258575,310.73,48.279 +258576,313.04,49.694 +258577,304.19,45.146 +258578,306.95,46.75 +258579,309.44,48.274 +258580,311.74,49.728 +258581,302.93,45.056 +258582,305.67,46.704 +258583,308.16,48.269 +258584,310.44,49.761 +258585,301.66,44.967 +258586,304.4,46.658 +258587,306.87,48.263 +258588,309.14,49.793 +258589,300.4,44.879 +258590,303.13,46.612 +258591,305.59,48.257 +258592,307.83,49.824 +258593,299.14,44.792 +258594,301.86,46.567 +258595,304.3,48.25 +258596,306.53,49.854 +258597,297.89,44.707 +258598,300.59,46.523 +258599,303.01,48.243 +258600,305.22,49.882 +258601,296.63,44.622 +258602,299.32,46.478 +258603,301.73,48.236 +258604,303.91,49.91 +258605,295.38,44.54 +258606,298.05,46.435 +258607,300.44,48.228 +258608,302.6,49.936 +258609,294.13,44.458 +258610,296.78,46.391 +258611,299.15,48.22 +258612,301.29,49.961 +258613,292.88,44.378 +258614,295.51,46.349 +258615,297.86,48.212 +258616,299.98,49.984 +258617,291.63,44.3 +258618,294.25,46.306 +258619,296.57,48.203 +258620,298.66,50.007 +258621,290.39,44.223 +258622,292.98,46.264 +258623,295.28,48.194 +258624,297.35,50.028 +258625,289.15,44.148 +258626,291.72,46.223 +258627,293.99,48.184 +258628,296.03,50.048 +258629,287.91,44.074 +258630,290.45,46.183 +258631,292.7,48.174 +258632,294.71,50.066 +258633,286.67,44.001 +258634,289.19,46.142 +258635,291.4,48.164 +258636,293.39,50.083 +258637,285.44,43.931 +258638,287.93,46.103 +258639,290.11,48.153 +258640,292.07,50.099 +258641,284.21,43.862 +258642,286.67,46.064 +258643,288.82,48.141 +258644,290.74,50.113 +258645,282.98,43.794 +258646,285.4,46.025 +258647,287.53,48.129 +258648,289.42,50.126 +258649,281.75,43.729 +258650,284.14,45.987 +258651,286.23,48.117 +258652,288.09,50.137 +258653,280.52,43.665 +258654,282.88,45.95 +258655,284.94,48.104 +258656,286.76,50.147 +258657,279.3,43.603 +258658,281.62,45.913 +258659,283.64,48.09 +258660,285.44,50.155 +258661,278.08,43.543 +258662,280.37,45.877 +258663,282.35,48.076 +258664,284.11,50.162 +258665,276.86,43.484 +258666,279.11,45.841 +258667,281.05,48.062 +258668,282.77,50.167 +258669,275.64,43.428 +258670,277.85,45.807 +258671,279.76,48.047 +258672,281.44,50.171 +258673,274.43,43.373 +258674,276.59,45.772 +258675,278.46,48.032 +258676,280.11,50.174 +258677,273.21,43.32 +258678,275.34,45.739 +258679,277.17,48.016 +258680,278.77,50.174 +258681,272,43.269 +258682,274.08,45.705 +258683,275.87,47.999 +258684,277.44,50.173 +258685,270.79,43.22 +258686,272.83,45.673 +258687,274.57,47.982 +258688,276.1,50.171 +258689,269.59,43.173 +258690,271.57,45.641 +258691,273.28,47.965 +258692,274.76,50.167 +258693,268.38,43.128 +258694,270.32,45.61 +258695,271.98,47.947 +258696,273.43,50.161 +258697,267.17,43.085 +258698,269.07,45.58 +258699,270.68,47.928 +258700,272.09,50.154 +258701,265.97,43.044 +258702,267.81,45.55 +258703,269.38,47.909 +258704,270.74,50.145 +258705,264.77,43.004 +258706,266.56,45.521 +258707,268.08,47.889 +258708,269.4,50.134 +258709,263.57,42.967 +258710,265.31,45.492 +258711,266.78,47.869 +258712,268.06,50.122 +258713,262.37,42.932 +258714,264.06,45.464 +258715,265.49,47.848 +258716,266.72,50.108 +258717,261.18,42.899 +258718,262.81,45.437 +258719,264.19,47.827 +258720,265.37,50.092 +258721,259.98,42.868 +258722,261.56,45.411 +258723,262.89,47.805 +258724,264.03,50.075 +258725,258.79,42.839 +258726,260.31,45.385 +258727,261.59,47.783 +258728,262.68,50.056 +258729,257.6,42.812 +258730,259.06,45.36 +258731,260.29,47.76 +258732,261.34,50.035 +258733,256.41,42.788 +258734,257.81,45.335 +258735,258.99,47.736 +258736,259.99,50.013 +258737,255.22,42.765 +258738,256.56,45.312 +258739,257.69,47.712 +258740,258.64,49.989 +258741,254.03,42.744 +258742,255.31,45.289 +258743,256.38,47.687 +258744,257.29,49.963 +258745,252.84,42.725 +258746,254.07,45.266 +258747,255.08,47.662 +258748,255.94,49.935 +258749,251.65,42.709 +258750,252.82,45.244 +258751,253.78,47.636 +258752,254.59,49.906 +258753,250.47,42.694 +258754,251.57,45.223 +258755,252.48,47.61 +258756,253.24,49.875 +258757,249.28,42.682 +258758,250.32,45.203 +258759,251.18,47.583 +258760,251.89,49.843 +258761,248.1,42.671 +258762,249.08,45.183 +258763,249.88,47.555 +258764,250.54,49.809 +258765,246.92,42.663 +258766,247.83,45.164 +258767,248.58,47.527 +258768,249.19,49.773 +258769,245.73,42.657 +258770,246.59,45.146 +258771,247.28,47.499 +258772,247.84,49.735 +258773,244.55,42.652 +258774,245.34,45.128 +258775,245.97,47.47 +258776,246.49,49.696 +258777,243.37,42.65 +258778,244.1,45.111 +258779,244.67,47.44 +258780,245.13,49.655 +258781,242.19,42.65 +258782,242.85,45.095 +258783,243.37,47.41 +258784,243.78,49.612 +258785,241.01,42.652 +258786,241.61,45.079 +258787,242.07,47.379 +258788,242.43,49.567 +258789,239.83,42.655 +258790,240.36,45.064 +258791,240.77,47.347 +258792,241.08,49.521 +258793,238.65,42.661 +258794,239.12,45.05 +258795,239.47,47.315 +258796,239.72,49.474 +258797,237.47,42.669 +258798,237.87,45.037 +258799,238.16,47.283 +258800,238.37,49.424 +258801,236.29,42.678 +258802,236.63,45.024 +258803,236.86,47.25 +258804,237.01,49.373 +258805,235.11,42.69 +258806,235.39,45.011 +258807,235.56,47.216 +258808,235.66,49.321 +258809,233.93,42.703 +258810,234.14,44.999 +258811,234.26,47.182 +258812,234.31,49.266 +258813,232.75,42.718 +258814,232.9,44.988 +258815,232.96,47.148 +258816,232.95,49.21 +258817,231.58,42.735 +258818,231.65,44.978 +258819,231.66,47.113 +258820,231.6,49.153 +258821,230.4,42.754 +258822,230.41,44.968 +258823,230.36,47.077 +258824,230.25,49.094 +258825,229.22,42.775 +258826,229.17,44.959 +258827,229.05,47.041 +258828,228.89,49.033 +258829,228.04,42.797 +258830,227.92,44.95 +258831,227.75,47.004 +258832,227.54,48.971 +258833,226.86,42.821 +258834,226.68,44.942 +258835,226.45,46.967 +258836,226.19,48.907 +258837,225.68,42.847 +258838,225.44,44.935 +258839,225.15,46.93 +258840,224.83,48.842 +258841,224.5,42.875 +258842,224.19,44.928 +258843,223.85,46.892 +258844,223.48,48.775 +258845,223.32,42.904 +258846,222.95,44.922 +258847,222.55,46.853 +258848,222.13,48.706 +258849,222.13,42.935 +258850,221.71,44.916 +258851,221.25,46.814 +258852,220.77,48.637 +258853,220.95,42.967 +258854,220.46,44.911 +258855,219.95,46.775 +258856,219.42,48.565 +258857,219.77,43.001 +258858,219.22,44.907 +258859,218.65,46.735 +258860,218.07,48.493 +258861,218.59,43.037 +258862,217.97,44.903 +258863,217.35,46.694 +258864,216.72,48.418 +258865,217.4,43.074 +258866,216.73,44.899 +258867,216.05,46.653 +258868,215.37,48.343 +258869,216.22,43.112 +258870,215.48,44.896 +258871,214.75,46.612 +258872,214.02,48.266 +258873,215.03,43.152 +258874,214.24,44.894 +258875,213.45,46.571 +258876,212.67,48.187 +258877,213.84,43.194 +258878,213,44.892 +258879,212.16,46.528 +258880,211.32,48.108 +258881,212.65,43.236 +258882,211.75,44.891 +258883,210.86,46.486 +258884,209.97,48.027 +258885,211.46,43.28 +258886,210.51,44.89 +258887,209.56,46.443 +258888,208.62,47.945 +258889,210.27,43.326 +258890,209.26,44.889 +258891,208.26,46.4 +258892,207.28,47.861 +258893,209.08,43.372 +258894,208.01,44.889 +258895,206.96,46.356 +258896,205.93,47.776 +258897,207.89,43.42 +258898,206.77,44.89 +258899,205.67,46.312 +258900,204.59,47.69 +258901,206.7,43.469 +258902,205.52,44.891 +258903,204.37,46.268 +258904,203.24,47.603 +258905,205.5,43.519 +258906,204.28,44.892 +258907,203.08,46.223 +258908,201.9,47.515 +258909,204.3,43.57 +258910,203.03,44.894 +258911,201.78,46.178 +258912,200.55,47.425 +258913,203.11,43.622 +258914,201.78,44.896 +258915,200.49,46.133 +258916,199.21,47.334 +258917,201.91,43.675 +258918,200.54,44.899 +258919,199.19,46.087 +258920,197.87,47.243 +258921,200.7,43.729 +258922,199.29,44.902 +258923,197.9,46.042 +258924,196.53,47.15 +258925,199.5,43.784 +258926,198.04,44.905 +258927,196.6,45.995 +258928,195.19,47.056 +258929,198.3,43.84 +258930,196.79,44.909 +258931,195.31,45.949 +258932,193.85,46.962 +258933,197.09,43.897 +258934,195.54,44.913 +258935,194.02,45.902 +258936,192.51,46.866 +258937,195.89,43.955 +258938,194.29,44.917 +258939,192.72,45.855 +258940,191.18,46.769 +258941,194.68,44.013 +258942,193.04,44.922 +258943,191.43,45.808 +258944,189.84,46.672 +258945,193.47,44.072 +258946,191.79,44.927 +258947,190.14,45.761 +258948,188.51,46.574 +258949,192.26,44.132 +258950,190.54,44.932 +258951,188.85,45.713 +258952,187.18,46.474 +258953,191.04,44.192 +258954,189.29,44.937 +258955,187.56,45.665 +258956,185.84,46.375 +258957,189.83,44.253 +258958,188.04,44.943 +258959,186.27,45.617 +258960,184.51,46.274 +258961,188.61,44.314 +258962,186.79,44.949 +258963,184.98,45.569 +258964,183.18,46.173 +258965,187.39,44.376 +258966,185.54,44.956 +258967,183.69,45.521 +258968,181.86,46.071 +258969,186.17,44.438 +258970,184.28,44.962 +258971,182.4,45.472 +258972,180.53,45.968 +258973,184.95,44.501 +258974,183.03,44.969 +258975,181.12,45.424 +258976,179.21,45.865 +258977,183.73,44.564 +258978,181.78,44.976 +258979,179.83,45.375 +258980,177.88,45.761 +258981,182.5,44.627 +258982,180.52,44.983 +258983,178.54,45.326 +258984,176.56,45.657 +258985,181.27,44.691 +258986,179.27,44.99 +258987,177.26,45.277 +258988,175.24,45.552 +258989,180.04,44.755 +258990,178.01,44.997 +258991,175.97,45.228 +258992,173.92,45.447 +258993,178.81,44.819 +258994,176.76,45.005 +258995,174.69,45.179 +258996,172.6,45.341 +258997,177.58,44.883 +258998,175.5,45.013 +258999,173.41,45.13 +259000,171.29,45.235 +259001,176.34,44.948 +259002,174.25,45.02 +259003,172.12,45.081 +259004,169.97,45.129 +259005,175.11,45.012 +259006,172.99,45.028 +259007,170.84,45.032 +259008,168.66,45.022 +259009,173.87,45.076 +259010,171.73,45.036 +259011,169.56,44.983 +259012,167.35,44.916 +259013,172.63,45.141 +259014,170.47,45.044 +259015,168.28,44.934 +259016,166.04,44.809 +259017,171.38,45.205 +259018,169.21,45.052 +259019,167,44.885 +259020,164.74,44.702 +259021,170.14,45.269 +259022,167.95,45.06 +259023,165.72,44.836 +259024,163.43,44.595 +259025,168.89,45.333 +259026,166.69,45.068 +259027,164.44,44.787 +259028,162.13,44.488 +259029,167.64,45.397 +259030,165.43,45.077 +259031,163.16,44.738 +259032,160.82,44.38 +259033,166.39,45.46 +259034,164.17,45.085 +259035,161.88,44.69 +259036,159.52,44.273 +259037,165.14,45.524 +259038,162.91,45.093 +259039,160.61,44.641 +259040,158.23,44.166 +259041,163.89,45.587 +259042,161.65,45.101 +259043,159.33,44.592 +259044,156.93,44.06 +259045,162.63,45.649 +259046,160.39,45.109 +259047,158.06,44.544 +259048,155.64,43.953 +259049,161.37,45.711 +259050,159.12,45.117 +259051,156.78,44.496 +259052,154.34,43.846 +259053,160.11,45.773 +259054,157.86,45.125 +259055,155.51,44.448 +259056,153.05,43.74 +259057,158.85,45.834 +259058,156.59,45.132 +259059,154.24,44.4 +259060,151.77,43.634 +259061,157.59,45.895 +259062,155.33,45.14 +259063,152.96,44.352 +259064,150.48,43.529 +259065,156.32,45.955 +259066,154.06,45.148 +259067,151.69,44.305 +259068,149.2,43.424 +259069,155.06,46.015 +259070,152.8,45.155 +259071,150.42,44.258 +259072,147.91,43.319 +259073,153.79,46.074 +259074,151.53,45.162 +259075,149.15,44.211 +259076,146.63,43.215 +259077,152.52,46.132 +259078,150.26,45.169 +259079,147.88,44.164 +259080,145.36,43.112 +259081,151.24,46.19 +259082,148.99,45.176 +259083,146.61,44.118 +259084,144.08,43.009 +259085,149.97,46.246 +259086,147.73,45.183 +259087,145.35,44.072 +259088,142.81,42.907 +259089,148.69,46.302 +259090,146.46,45.189 +259091,144.08,44.026 +259092,141.54,42.805 +259093,147.41,46.358 +259094,145.19,45.196 +259095,142.81,43.98 +259096,140.27,42.705 +259097,146.13,46.412 +259098,143.92,45.202 +259099,141.55,43.935 +259100,139,42.605 +259101,144.85,46.465 +259102,142.65,45.208 +259103,140.28,43.89 +259104,137.73,42.506 +259105,143.57,46.518 +259106,141.37,45.213 +259107,139.02,43.846 +259108,136.47,42.408 +259109,142.28,46.57 +259110,140.1,45.219 +259111,137.76,43.802 +259112,135.21,42.31 +259113,141,46.62 +259114,138.83,45.224 +259115,136.49,43.758 +259116,133.95,42.214 +259117,139.71,46.67 +259118,137.56,45.228 +259119,135.23,43.715 +259120,132.7,42.119 +259121,138.42,46.718 +259122,136.28,45.233 +259123,133.97,43.672 +259124,131.44,42.025 +259125,137.13,46.766 +259126,135.01,45.237 +259127,132.71,43.63 +259128,130.19,41.932 +259129,135.83,46.812 +259130,133.73,45.241 +259131,131.45,43.588 +259132,128.94,41.84 +259133,134.54,46.857 +259134,132.46,45.244 +259135,130.19,43.546 +259136,127.7,41.75 +259137,133.24,46.902 +259138,131.18,45.247 +259139,128.94,43.505 +259140,126.45,41.661 +259141,131.94,46.944 +259142,129.91,45.25 +259143,127.68,43.465 +259144,125.21,41.573 +259145,130.64,46.986 +259146,128.63,45.253 +259147,126.42,43.424 +259148,123.97,41.486 +259149,129.34,47.026 +259150,127.35,45.255 +259151,125.17,43.385 +259152,122.73,41.401 +259153,128.04,47.066 +259154,126.07,45.256 +259155,123.91,43.346 +259156,121.5,41.317 +259157,126.73,47.103 +259158,124.8,45.258 +259159,122.66,43.308 +259160,120.26,41.235 +259161,125.43,47.14 +259162,123.52,45.258 +259163,121.4,43.27 +259164,119.03,41.154 +259165,124.12,47.175 +259166,122.24,45.259 +259167,120.15,43.232 +259168,117.8,41.075 +259169,122.81,47.209 +259170,120.96,45.259 +259171,118.9,43.195 +259172,116.58,40.998 +259173,121.5,47.241 +259174,119.68,45.258 +259175,117.65,43.159 +259176,115.35,40.922 +259177,120.19,47.272 +259178,118.4,45.258 +259179,116.4,43.124 +259180,114.13,40.848 +259181,118.88,47.301 +259182,117.12,45.256 +259183,115.15,43.089 +259184,112.91,40.775 +259185,117.57,47.329 +259186,115.83,45.254 +259187,113.9,43.054 +259188,111.69,40.705 +259189,116.25,47.356 +259190,114.55,45.252 +259191,112.65,43.021 +259192,110.47,40.636 +259193,114.93,47.381 +259194,113.27,45.249 +259195,111.4,42.987 +259196,109.26,40.569 +259197,113.62,47.404 +259198,111.99,45.246 +259199,110.15,42.955 +259200,108.05,40.503 +259201,112.3,47.426 +259202,110.7,45.242 +259203,108.91,42.923 +259204,106.84,40.44 +259205,110.98,47.447 +259206,109.42,45.238 +259207,107.66,42.892 +259208,105.63,40.379 +259209,109.66,47.465 +259210,108.14,45.234 +259211,106.42,42.861 +259212,104.42,40.32 +259213,108.34,47.483 +259214,106.85,45.228 +259215,105.17,42.832 +259216,103.22,40.262 +259217,107.01,47.498 +259218,105.57,45.223 +259219,103.93,42.802 +259220,102.02,40.207 +259221,105.69,47.512 +259222,104.28,45.216 +259223,102.68,42.774 +259224,100.82,40.154 +259225,104.36,47.524 +259226,103,45.21 +259227,101.44,42.746 +259228,99.616,40.103 +259229,103.04,47.535 +259230,101.71,45.202 +259231,100.2,42.719 +259232,98.419,40.053 +259233,101.71,47.544 +259234,100.43,45.194 +259235,98.953,42.693 +259236,97.224,40.007 +259237,100.38,47.551 +259238,99.141,45.186 +259239,97.712,42.667 +259240,96.03,39.962 +259241,99.056,47.557 +259242,97.854,45.177 +259243,96.47,42.643 +259244,94.838,39.919 +259245,97.727,47.561 +259246,96.568,45.167 +259247,95.23,42.618 +259248,93.647,39.879 +259249,96.396,47.563 +259250,95.281,45.157 +259251,93.989,42.595 +259252,92.458,39.84 +259253,95.066,47.563 +259254,93.993,45.147 +259255,92.749,42.572 +259256,91.27,39.804 +259257,93.734,47.562 +259258,92.706,45.136 +259259,91.51,42.55 +259260,90.084,39.771 +259261,92.402,47.559 +259262,91.418,45.124 +259263,90.271,42.529 +259264,88.899,39.739 +259265,91.069,47.554 +259266,90.131,45.112 +259267,89.032,42.509 +259268,87.715,39.71 +259269,89.736,47.547 +259270,88.843,45.099 +259271,87.794,42.489 +259272,86.533,39.683 +259273,88.401,47.539 +259274,87.554,45.085 +259275,86.556,42.47 +259276,85.351,39.658 +259277,87.067,47.529 +259278,86.266,45.071 +259279,85.319,42.452 +259280,84.171,39.636 +259281,85.732,47.517 +259282,84.977,45.056 +259283,84.082,42.435 +259284,82.992,39.616 +259285,84.396,47.503 +259286,83.689,45.041 +259287,82.845,42.418 +259288,81.814,39.598 +259289,83.06,47.488 +259290,82.4,45.025 +259291,81.609,42.402 +259292,80.637,39.583 +259293,81.724,47.47 +259294,81.111,45.009 +259295,80.372,42.387 +259296,79.46,39.57 +259297,80.387,47.451 +259298,79.822,44.992 +259299,79.136,42.373 +259300,78.284,39.559 +259301,79.05,47.431 +259302,78.533,44.975 +259303,77.901,42.36 +259304,77.11,39.55 +259305,77.712,47.408 +259306,77.244,44.957 +259307,76.665,42.347 +259308,75.935,39.544 +259309,76.374,47.384 +259310,75.955,44.938 +259311,75.43,42.335 +259312,74.762,39.54 +259313,75.036,47.357 +259314,74.665,44.919 +259315,74.195,42.324 +259316,73.589,39.538 +259317,73.698,47.329 +259318,73.376,44.899 +259319,72.96,42.313 +259320,72.416,39.539 +259321,72.36,47.3 +259322,72.087,44.878 +259323,71.726,42.303 +259324,71.244,39.542 +259325,71.021,47.268 +259326,70.797,44.857 +259327,70.491,42.295 +259328,70.072,39.547 +259329,69.683,47.235 +259330,69.508,44.836 +259331,69.257,42.286 +259332,68.9,39.555 +259333,68.344,47.2 +259334,68.219,44.814 +259335,68.022,42.279 +259336,67.728,39.564 +259337,67.006,47.163 +259338,66.93,44.791 +259339,66.788,42.272 +259340,66.557,39.576 +259341,65.667,47.125 +259342,65.64,44.768 +259343,65.554,42.266 +259344,65.386,39.59 +259345,64.328,47.084 +259346,64.351,44.744 +259347,64.32,42.261 +259348,64.214,39.607 +259349,62.99,47.042 +259350,63.062,44.72 +259351,63.086,42.257 +259352,63.043,39.625 +259353,61.651,46.999 +259354,61.773,44.695 +259355,61.852,42.253 +259356,61.871,39.646 +259357,60.313,46.953 +259358,60.485,44.669 +259359,60.618,42.25 +259360,60.699,39.669 +259361,58.975,46.906 +259362,59.196,44.643 +259363,59.384,42.248 +259364,59.527,39.693 +259365,57.637,46.857 +259366,57.907,44.617 +259367,58.15,42.246 +259368,58.355,39.72 +259369,56.3,46.807 +259370,56.619,44.59 +259371,56.916,42.245 +259372,57.182,39.749 +259373,54.962,46.755 +259374,55.331,44.562 +259375,55.682,42.245 +259376,56.008,39.78 +259377,53.626,46.701 +259378,54.043,44.534 +259379,54.448,42.246 +259380,54.834,39.813 +259381,52.289,46.645 +259382,52.755,44.506 +259383,53.213,42.247 +259384,53.66,39.848 +259385,50.953,46.588 +259386,51.467,44.477 +259387,51.979,42.249 +259388,52.485,39.885 +259389,49.617,46.53 +259390,50.18,44.447 +259391,50.744,42.251 +259392,51.309,39.924 +259393,48.282,46.47 +259394,48.893,44.417 +259395,49.51,42.255 +259396,50.132,39.965 +259397,46.947,46.408 +259398,47.606,44.386 +259399,48.275,42.258 +259400,48.955,40.007 +259401,45.613,46.344 +259402,46.319,44.355 +259403,47.04,42.263 +259404,47.776,40.051 +259405,44.279,46.279 +259406,45.033,44.324 +259407,45.804,42.268 +259408,46.597,40.097 +259409,42.946,46.213 +259410,43.747,44.292 +259411,44.569,42.274 +259412,45.416,40.145 +259413,41.614,46.145 +259414,42.461,44.259 +259415,43.333,42.28 +259416,44.235,40.195 +259417,40.283,46.076 +259418,41.176,44.226 +259419,42.097,42.287 +259420,43.052,40.246 +259421,38.952,46.005 +259422,39.891,44.193 +259423,40.861,42.295 +259424,41.868,40.299 +259425,37.621,45.933 +259426,38.606,44.159 +259427,39.624,42.303 +259428,40.683,40.353 +259429,36.292,45.859 +259430,37.321,44.125 +259431,38.387,42.312 +259432,39.497,40.409 +259433,34.964,45.784 +259434,36.037,44.091 +259435,37.15,42.321 +259436,38.31,40.466 +259437,33.636,45.708 +259438,34.754,44.056 +259439,35.913,42.331 +259440,37.121,40.525 +259441,32.309,45.63 +259442,33.471,44.02 +259443,34.675,42.341 +259444,35.931,40.585 +259445,30.983,45.551 +259446,32.188,43.985 +259447,33.437,42.352 +259448,34.739,40.646 +259449,29.658,45.471 +259450,30.905,43.949 +259451,32.198,42.364 +259452,33.546,40.709 +259453,28.334,45.389 +259454,29.623,43.912 +259455,30.96,42.376 +259456,32.351,40.773 +259457,27.012,45.307 +259458,28.342,43.876 +259459,29.72,42.388 +259460,31.155,40.839 +259461,25.69,45.223 +259462,27.061,43.839 +259463,28.481,42.401 +259464,29.957,40.905 +259465,24.369,45.138 +259466,25.78,43.801 +259467,27.24,42.414 +259468,28.758,40.973 +259469,23.05,45.052 +259470,24.5,43.763 +259471,26,42.428 +259472,27.557,41.042 +259473,21.731,44.964 +259474,23.22,43.725 +259475,24.759,42.442 +259476,26.354,41.111 +259477,20.414,44.876 +259478,21.941,43.687 +259479,23.517,42.457 +259480,25.149,41.182 +259481,19.098,44.787 +259482,20.662,43.649 +259483,22.276,42.472 +259484,23.943,41.254 +259485,17.783,44.696 +259486,19.384,43.61 +259487,21.033,42.487 +259488,22.735,41.326 +259489,16.47,44.605 +259490,18.107,43.571 +259491,19.79,42.503 +259492,21.526,41.4 +259493,15.158,44.513 +259494,16.83,43.532 +259495,18.547,42.519 +259496,20.314,41.474 +259497,13.847,44.42 +259498,15.553,43.492 +259499,17.303,42.536 +259500,19.101,41.549 +259501,12.538,44.326 +259502,14.277,43.452 +259503,16.059,42.552 +259504,17.886,41.625 +259505,11.23,44.231 +259506,13.002,43.413 +259507,14.814,42.569 +259508,16.669,41.701 +259509,9.923,44.136 +259510,11.727,43.373 +259511,13.569,42.587 +259512,15.45,41.778 +259513,8.618,44.039 +259514,10.453,43.332 +259515,12.323,42.605 +259516,14.229,41.856 +259517,7.3145,43.942 +259518,9.1795,43.292 +259519,11.076,42.623 +259520,13.007,41.934 +259521,6.0124,43.845 +259522,7.9065,43.252 +259523,9.8291,42.641 +259524,11.782,42.013 +259525,4.712,43.746 +259526,6.6341,43.211 +259527,8.5815,42.659 +259528,10.556,42.091 +259529,3.4132,43.648 +259530,5.3624,43.17 +259531,7.3334,42.678 +259532,9.3273,42.171 +259533,2.1159,43.548 +259534,4.0913,43.13 +259535,6.0847,42.697 +259536,8.097,42.25 +259537,0.82033,43.448 +259538,2.8208,43.089 +259539,4.8354,42.716 +259540,6.8648,42.33 +259541,359.53,43.348 +259542,1.551,43.048 +259543,3.5855,42.735 +259544,5.6306,42.411 +259545,358.23,43.247 +259546,0.28182,43.007 +259547,2.3351,42.755 +259548,4.3945,42.491 +259549,356.94,43.146 +259550,359.01,42.966 +259551,1.084,42.774 +259552,3.1564,42.571 +259553,355.65,43.045 +259554,357.75,42.925 +259555,359.83,42.794 +259556,1.9164,42.652 +259557,354.37,42.943 +259558,356.48,42.884 +259559,358.58,42.814 +259560,0.67439,42.733 +259561,353.08,42.841 +259562,355.21,42.843 +259563,357.33,42.834 +259564,359.43,42.813 +259565,351.8,42.739 +259566,353.95,42.803 +259567,356.07,42.854 +259568,358.18,42.894 +259569,350.52,42.637 +259570,352.68,42.762 +259571,354.82,42.874 +259572,356.94,42.974 +259573,349.24,42.535 +259574,351.42,42.721 +259575,353.57,42.894 +259576,355.69,43.055 +259577,347.96,42.432 +259578,350.15,42.68 +259579,352.31,42.914 +259580,354.44,43.135 +259581,346.68,42.33 +259582,348.89,42.64 +259583,351.05,42.935 +259584,353.18,43.215 +259585,345.41,42.227 +259586,347.63,42.599 +259587,349.8,42.955 +259588,351.93,43.294 +259589,344.14,42.125 +259590,346.37,42.559 +259591,348.54,42.975 +259592,350.67,43.374 +259593,342.87,42.023 +259594,345.1,42.519 +259595,347.28,42.995 +259596,349.41,43.453 +259597,341.6,41.921 +259598,343.84,42.479 +259599,346.02,43.015 +259600,348.15,43.531 +259601,340.33,41.819 +259602,342.58,42.439 +259603,344.77,43.035 +259604,346.89,43.609 +259605,339.07,41.718 +259606,341.33,42.4 +259607,343.51,43.055 +259608,345.62,43.687 +259609,337.81,41.617 +259610,340.07,42.36 +259611,342.25,43.075 +259612,344.35,43.764 +259613,336.55,41.516 +259614,338.81,42.321 +259615,340.99,43.095 +259616,343.09,43.841 +259617,335.29,41.416 +259618,337.55,42.282 +259619,339.72,43.115 +259620,341.81,43.917 +259621,334.03,41.316 +259622,336.3,42.244 +259623,338.46,43.135 +259624,340.54,43.992 +259625,332.78,41.217 +259626,335.04,42.205 +259627,337.2,43.154 +259628,339.27,44.067 +259629,331.53,41.119 +259630,333.79,42.167 +259631,335.94,43.173 +259632,337.99,44.141 +259633,330.28,41.021 +259634,332.53,42.129 +259635,334.67,43.193 +259636,336.72,44.214 +259637,329.03,40.923 +259638,331.28,42.092 +259639,333.41,43.211 +259640,335.44,44.286 +259641,327.79,40.827 +259642,330.03,42.055 +259643,332.14,43.23 +259644,334.16,44.358 +259645,326.54,40.731 +259646,328.78,42.018 +259647,330.88,43.249 +259648,332.87,44.428 +259649,325.3,40.636 +259650,327.52,41.982 +259651,329.61,43.267 +259652,331.59,44.498 +259653,324.06,40.542 +259654,326.27,41.946 +259655,328.35,43.285 +259656,330.3,44.567 +259657,322.83,40.449 +259658,325.02,41.91 +259659,327.08,43.303 +259660,329.02,44.635 +259661,321.59,40.357 +259662,323.78,41.875 +259663,325.81,43.321 +259664,327.73,44.701 +259665,320.36,40.266 +259666,322.53,41.84 +259667,324.54,43.338 +259668,326.44,44.767 +259669,319.13,40.176 +259670,321.28,41.806 +259671,323.28,43.355 +259672,325.14,44.832 +259673,317.9,40.087 +259674,320.03,41.772 +259675,322.01,43.372 +259676,323.85,44.895 +259677,316.67,40 +259678,318.79,41.739 +259679,320.74,43.388 +259680,322.56,44.958 +259681,315.45,39.913 +259682,317.54,41.706 +259683,319.47,43.404 +259684,321.26,45.019 +259685,314.22,39.828 +259686,316.29,41.674 +259687,318.2,43.42 +259688,319.96,45.079 +259689,313,39.744 +259690,315.05,41.642 +259691,316.92,43.435 +259692,318.66,45.138 +259693,311.79,39.662 +259694,313.81,41.611 +259695,315.65,43.45 +259696,317.36,45.195 +259697,310.57,39.581 +259698,312.56,41.58 +259699,314.38,43.465 +259700,316.06,45.251 +259701,309.35,39.501 +259702,311.32,41.55 +259703,313.11,43.479 +259704,314.75,45.306 +259705,308.14,39.424 +259706,310.08,41.52 +259707,311.83,43.493 +259708,313.45,45.36 +259709,306.93,39.347 +259710,308.84,41.491 +259711,310.56,43.506 +259712,312.14,45.412 +259713,305.72,39.272 +259714,307.6,41.463 +259715,309.29,43.52 +259716,310.84,45.463 +259717,304.52,39.199 +259718,306.36,41.435 +259719,308.01,43.532 +259720,309.53,45.512 +259721,303.31,39.128 +259722,305.12,41.408 +259723,306.74,43.544 +259724,308.22,45.56 +259725,302.11,39.058 +259726,303.88,41.381 +259727,305.46,43.556 +259728,306.91,45.607 +259729,300.91,38.99 +259730,302.64,41.355 +259731,304.19,43.567 +259732,305.6,45.652 +259733,299.71,38.924 +259734,301.4,41.33 +259735,302.91,43.578 +259736,304.28,45.695 +259737,298.51,38.86 +259738,300.16,41.305 +259739,301.63,43.589 +259740,302.97,45.737 +259741,297.31,38.798 +259742,298.93,41.281 +259743,300.36,43.599 +259744,301.65,45.778 +259745,296.12,38.738 +259746,297.69,41.258 +259747,299.08,43.608 +259748,300.34,45.816 +259749,294.93,38.679 +259750,296.45,41.236 +259751,297.8,43.617 +259752,299.02,45.854 +259753,293.74,38.623 +259754,295.22,41.214 +259755,296.53,43.625 +259756,297.7,45.889 +259757,292.55,38.569 +259758,293.98,41.192 +259759,295.25,43.633 +259760,296.38,45.923 +259761,291.36,38.516 +259762,292.75,41.172 +259763,293.97,43.641 +259764,295.06,45.956 +259765,290.17,38.466 +259766,291.51,41.152 +259767,292.69,43.648 +259768,293.74,45.986 +259769,288.99,38.418 +259770,290.28,41.133 +259771,291.41,43.654 +259772,292.42,46.015 +259773,287.8,38.373 +259774,289.05,41.115 +259775,290.13,43.66 +259776,291.1,46.043 +259777,286.62,38.329 +259778,287.81,41.098 +259779,288.85,43.665 +259780,289.78,46.068 +259781,285.44,38.288 +259782,286.58,41.081 +259783,287.57,43.67 +259784,288.45,46.092 +259785,284.26,38.249 +259786,285.35,41.065 +259787,286.29,43.674 +259788,287.13,46.114 +259789,283.08,38.212 +259790,284.12,41.05 +259791,285.01,43.678 +259792,285.81,46.135 +259793,281.9,38.177 +259794,282.88,41.036 +259795,283.73,43.681 +259796,284.48,46.153 +259797,280.73,38.145 +259798,281.65,41.022 +259799,282.45,43.683 +259800,283.15,46.17 +259801,279.55,38.115 +259802,280.42,41.009 +259803,281.17,43.685 +259804,281.83,46.185 +259805,278.38,38.088 +259806,279.19,40.997 +259807,279.89,43.687 +259808,280.5,46.199 +259809,277.2,38.063 +259810,277.96,40.986 +259811,278.61,43.687 +259812,279.17,46.21 +259813,276.03,38.04 +259814,276.73,40.976 +259815,277.33,43.688 +259816,277.85,46.22 +259817,274.86,38.02 +259818,275.5,40.966 +259819,276.04,43.687 +259820,276.52,46.228 +259821,273.69,38.002 +259822,274.27,40.957 +259823,274.76,43.686 +259824,275.19,46.234 +259825,272.51,37.987 +259826,273.04,40.949 +259827,273.48,43.685 +259828,273.86,46.238 +259829,271.34,37.974 +259830,271.81,40.942 +259831,272.2,43.683 +259832,272.53,46.241 +259833,270.17,37.963 +259834,270.58,40.936 +259835,270.92,43.68 +259836,271.2,46.241 +259837,269,37.955 +259838,269.35,40.93 +259839,269.63,43.677 +259840,269.87,46.24 +259841,267.83,37.949 +259842,268.12,40.925 +259843,268.35,43.673 +259844,268.54,46.237 +259845,266.66,37.946 +259846,266.89,40.921 +259847,267.07,43.669 +259848,267.22,46.232 +259849,265.5,37.945 +259850,265.66,40.918 +259851,265.79,43.664 +259852,265.89,46.226 +259853,264.33,37.947 +259854,264.43,40.916 +259855,264.51,43.658 +259856,264.56,46.217 +259857,263.16,37.951 +259858,263.2,40.915 +259859,263.22,43.652 +259860,263.23,46.207 +259861,261.99,37.958 +259862,261.98,40.914 +259863,261.94,43.645 +259864,261.9,46.195 +259865,260.82,37.967 +259866,260.75,40.914 +259867,260.66,43.638 +259868,260.57,46.181 +259869,259.65,37.978 +259870,259.52,40.915 +259871,259.38,43.63 +259872,259.24,46.165 +259873,258.48,37.992 +259874,258.29,40.917 +259875,258.1,43.621 +259876,257.91,46.148 +259877,257.31,38.008 +259878,257.06,40.919 +259879,256.81,43.612 +259880,256.58,46.128 +259881,256.14,38.027 +259882,255.83,40.923 +259883,255.53,43.602 +259884,255.25,46.107 +259885,254.97,38.048 +259886,254.6,40.927 +259887,254.25,43.592 +259888,253.92,46.084 +259889,253.8,38.071 +259890,253.37,40.932 +259891,252.97,43.581 +259892,252.59,46.059 +259893,252.63,38.097 +259894,252.14,40.938 +259895,251.69,43.57 +259896,251.26,46.033 +259897,251.46,38.125 +259898,250.91,40.944 +259899,250.41,43.558 +259900,249.94,46.005 +259901,250.28,38.156 +259902,249.68,40.952 +259903,249.13,43.546 +259904,248.61,45.975 +259905,249.11,38.188 +259906,248.45,40.96 +259907,247.85,43.533 +259908,247.28,45.943 +259909,247.94,38.223 +259910,247.22,40.969 +259911,246.56,43.519 +259912,245.95,45.909 +259913,246.76,38.26 +259914,245.99,40.978 +259915,245.28,43.505 +259916,244.63,45.874 +259917,245.59,38.3 +259918,244.76,40.989 +259919,244,43.49 +259920,243.3,45.837 +259921,244.41,38.341 +259922,243.53,41 +259923,242.72,43.475 +259924,241.98,45.798 +259925,243.23,38.385 +259926,242.3,41.012 +259927,241.44,43.459 +259928,240.65,45.758 +259929,242.05,38.43 +259930,241.07,41.024 +259931,240.16,43.443 +259932,239.33,45.716 +259933,240.87,38.478 +259934,239.83,41.038 +259935,238.89,43.426 +259936,238.01,45.672 +259937,239.69,38.528 +259938,238.6,41.052 +259939,237.61,43.409 +259940,236.68,45.627 +259941,238.51,38.58 +259942,237.37,41.067 +259943,236.33,43.391 +259944,235.36,45.58 +259945,237.32,38.634 +259946,236.14,41.082 +259947,235.05,43.373 +259948,234.04,45.531 +259949,236.14,38.689 +259950,234.9,41.098 +259951,233.77,43.354 +259952,232.72,45.481 +259953,234.95,38.747 +259954,233.67,41.115 +259955,232.49,43.335 +259956,231.4,45.429 +259957,233.76,38.806 +259958,232.43,41.133 +259959,231.22,43.315 +259960,230.08,45.376 +259961,232.57,38.868 +259962,231.2,41.151 +259963,229.94,43.295 +259964,228.77,45.321 +259965,231.38,38.931 +259966,229.97,41.17 +259967,228.66,43.274 +259968,227.45,45.265 +259969,230.19,38.996 +259970,228.73,41.189 +259971,227.39,43.253 +259972,226.13,45.207 +259973,229,39.062 +259974,227.49,41.209 +259975,226.11,43.232 +259976,224.82,45.148 +259977,227.8,39.13 +259978,226.26,41.23 +259979,224.84,43.21 +259980,223.51,45.087 +259981,226.6,39.2 +259982,225.02,41.251 +259983,223.56,43.187 +259984,222.19,45.025 +259985,225.4,39.271 +259986,223.78,41.273 +259987,222.29,43.165 +259988,220.88,44.961 +259989,224.2,39.344 +259990,222.55,41.295 +259991,221.01,43.142 +259992,219.57,44.897 +259993,223,39.419 +259994,221.31,41.318 +259995,219.74,43.118 +259996,218.26,44.83 +259997,221.79,39.494 +259998,220.07,41.342 +259999,218.46,43.094 +260000,216.96,44.763 +260001,220.59,39.571 +260002,218.83,41.366 +260003,217.19,43.07 +260004,215.65,44.694 +260005,219.38,39.65 +260006,217.59,41.391 +260007,215.92,43.045 +260008,214.34,44.624 +260009,218.17,39.73 +260010,216.35,41.416 +260011,214.65,43.02 +260012,213.04,44.553 +260013,216.96,39.811 +260014,215.11,41.441 +260015,213.38,42.995 +260016,211.74,44.481 +260017,215.74,39.893 +260018,213.87,41.467 +260019,212.1,42.97 +260020,210.44,44.407 +260021,214.53,39.976 +260022,212.63,41.494 +260023,210.83,42.944 +260024,209.14,44.332 +260025,213.31,40.06 +260026,211.38,41.521 +260027,209.56,42.918 +260028,207.84,44.257 +260029,212.09,40.146 +260030,210.14,41.548 +260031,208.3,42.891 +260032,206.54,44.18 +260033,210.87,40.232 +260034,208.9,41.576 +260035,207.03,42.865 +260036,205.24,44.102 +260037,209.64,40.319 +260038,207.65,41.604 +260039,205.76,42.838 +260040,203.95,44.023 +260041,208.42,40.407 +260042,206.41,41.633 +260043,204.49,42.81 +260044,202.66,43.943 +260045,207.19,40.496 +260046,205.16,41.662 +260047,203.22,42.783 +260048,201.37,43.862 +260049,205.96,40.586 +260050,203.92,41.691 +260051,201.96,42.755 +260052,200.08,43.781 +260053,204.73,40.676 +260054,202.67,41.721 +260055,200.69,42.728 +260056,198.79,43.698 +260057,203.49,40.768 +260058,201.42,41.751 +260059,199.43,42.7 +260060,197.5,43.615 +260061,202.26,40.859 +260062,200.17,41.782 +260063,198.16,42.672 +260064,196.22,43.531 +260065,201.02,40.952 +260066,198.92,41.812 +260067,196.9,42.643 +260068,194.93,43.446 +260069,199.78,41.045 +260070,197.67,41.843 +260071,195.63,42.615 +260072,193.65,43.361 +260073,198.54,41.138 +260074,196.42,41.875 +260075,194.37,42.586 +260076,192.37,43.274 +260077,197.3,41.232 +260078,195.17,41.906 +260079,193.11,42.558 +260080,191.09,43.188 +260081,196.05,41.326 +260082,193.92,41.938 +260083,191.85,42.529 +260084,189.82,43.1 +260085,194.8,41.421 +260086,192.67,41.97 +260087,190.59,42.5 +260088,188.54,43.012 +260089,193.55,41.515 +260090,191.42,42.002 +260091,189.33,42.471 +260092,187.27,42.924 +260093,192.3,41.61 +260094,190.16,42.034 +260095,188.07,42.442 +260096,186,42.835 +260097,191.05,41.705 +260098,188.91,42.067 +260099,186.81,42.413 +260100,184.73,42.746 +260101,189.79,41.801 +260102,187.66,42.099 +260103,185.55,42.384 +260104,183.46,42.656 +260105,188.53,41.896 +260106,186.4,42.132 +260107,184.29,42.355 +260108,182.2,42.566 +260109,187.27,41.992 +260110,185.14,42.165 +260111,183.03,42.326 +260112,180.93,42.476 +260113,186.01,42.087 +260114,183.89,42.198 +260115,181.78,42.298 +260116,179.67,42.386 +260117,184.75,42.182 +260118,182.63,42.231 +260119,180.52,42.269 +260120,178.41,42.295 +260121,183.48,42.278 +260122,181.37,42.264 +260123,179.26,42.24 +260124,177.16,42.205 +260125,182.21,42.373 +260126,180.11,42.297 +260127,178.01,42.211 +260128,175.9,42.114 +260129,180.95,42.468 +260130,178.85,42.331 +260131,176.76,42.182 +260132,174.65,42.023 +260133,179.67,42.562 +260134,177.59,42.364 +260135,175.5,42.154 +260136,173.39,41.932 +260137,178.4,42.657 +260138,176.33,42.397 +260139,174.25,42.126 +260140,172.14,41.841 +260141,177.13,42.751 +260142,175.07,42.431 +260143,173,42.097 +260144,170.9,41.751 +260145,175.85,42.844 +260146,173.81,42.464 +260147,171.74,42.069 +260148,169.65,41.66 +260149,174.57,42.937 +260150,172.55,42.497 +260151,170.49,42.041 +260152,168.41,41.57 +260153,173.29,43.03 +260154,171.29,42.53 +260155,169.24,42.013 +260156,167.16,41.479 +260157,172.01,43.122 +260158,170.02,42.563 +260159,167.99,41.986 +260160,165.92,41.39 +260161,170.73,43.214 +260162,168.76,42.596 +260163,166.74,41.959 +260164,164.69,41.3 +260165,169.44,43.305 +260166,167.49,42.629 +260167,165.5,41.932 +260168,163.45,41.211 +260169,168.15,43.396 +260170,166.23,42.662 +260171,164.25,41.905 +260172,162.22,41.122 +260173,166.86,43.485 +260174,164.96,42.695 +260175,163,41.878 +260176,160.98,41.034 +260177,165.57,43.575 +260178,163.69,42.728 +260179,161.75,41.852 +260180,159.75,40.947 +260181,164.28,43.663 +260182,162.43,42.76 +260183,160.51,41.826 +260184,158.53,40.86 +260185,162.99,43.75 +260186,161.16,42.792 +260187,159.26,41.8 +260188,157.3,40.773 +260189,161.69,43.837 +260190,159.89,42.824 +260191,158.02,41.775 +260192,156.08,40.687 +260193,160.4,43.923 +260194,158.62,42.856 +260195,156.77,41.75 +260196,154.85,40.602 +260197,159.1,44.008 +260198,157.35,42.888 +260199,155.53,41.725 +260200,153.63,40.518 +260201,157.8,44.092 +260202,156.08,42.919 +260203,154.29,41.701 +260204,152.41,40.435 +260205,156.5,44.175 +260206,154.81,42.95 +260207,153.05,41.677 +260208,151.2,40.352 +260209,155.2,44.257 +260210,153.54,42.981 +260211,151.8,41.654 +260212,149.98,40.271 +260213,153.89,44.338 +260214,152.27,43.012 +260215,150.56,41.631 +260216,148.77,40.19 +260217,152.59,44.418 +260218,150.99,43.042 +260219,149.32,41.608 +260220,147.56,40.111 +260221,151.28,44.497 +260222,149.72,43.072 +260223,148.08,41.586 +260224,146.35,40.033 +260225,149.97,44.574 +260226,148.45,43.102 +260227,146.84,41.565 +260228,145.14,39.955 +260229,148.66,44.651 +260230,147.17,43.131 +260231,145.6,41.544 +260232,143.94,39.879 +260233,147.35,44.726 +260234,145.9,43.161 +260235,144.36,41.523 +260236,142.73,39.804 +260237,146.04,44.8 +260238,144.62,43.189 +260239,143.12,41.503 +260240,141.53,39.731 +260241,144.73,44.873 +260242,143.35,43.218 +260243,141.89,41.483 +260244,140.33,39.658 +260245,143.42,44.944 +260246,142.07,43.246 +260247,140.65,41.464 +260248,139.13,39.588 +260249,142.1,45.015 +260250,140.8,43.274 +260251,139.41,41.445 +260252,137.94,39.518 +260253,140.79,45.083 +260254,139.52,43.301 +260255,138.18,41.427 +260256,136.74,39.45 +260257,139.47,45.151 +260258,138.24,43.328 +260259,136.94,41.41 +260260,135.55,39.384 +260261,138.15,45.217 +260262,136.96,43.354 +260263,135.7,41.393 +260264,134.36,39.319 +260265,136.83,45.282 +260266,135.69,43.38 +260267,134.47,41.377 +260268,133.17,39.255 +260269,135.51,45.345 +260270,134.41,43.406 +260271,133.23,41.361 +260272,131.98,39.194 +260273,134.19,45.407 +260274,133.13,43.431 +260275,132,41.346 +260276,130.79,39.134 +260277,132.87,45.467 +260278,131.85,43.456 +260279,130.77,41.332 +260280,129.6,39.076 +260281,131.55,45.526 +260282,130.57,43.48 +260283,129.53,41.318 +260284,128.42,39.019 +260285,130.23,45.583 +260286,129.29,43.504 +260287,128.3,41.305 +260288,127.24,38.964 +260289,128.9,45.639 +260290,128.01,43.528 +260291,127.07,41.293 +260292,126.05,38.912 +260293,127.58,45.693 +260294,126.73,43.551 +260295,125.83,41.281 +260296,124.87,38.861 +260297,126.25,45.745 +260298,125.45,43.573 +260299,124.6,41.27 +260300,123.69,38.812 +260301,124.93,45.796 +260302,124.17,43.595 +260303,123.37,41.26 +260304,122.51,38.765 +260305,123.6,45.845 +260306,122.89,43.616 +260307,122.14,41.25 +260308,121.34,38.719 +260309,122.27,45.893 +260310,121.61,43.637 +260311,120.9,41.241 +260312,120.16,38.676 +260313,120.95,45.939 +260314,120.32,43.658 +260315,119.67,41.233 +260316,118.98,38.635 +260317,119.62,45.983 +260318,119.04,43.677 +260319,118.44,41.225 +260320,117.81,38.597 +260321,118.29,46.026 +260322,117.76,43.697 +260323,117.21,41.219 +260324,116.63,38.56 +260325,116.96,46.067 +260326,116.48,43.716 +260327,115.98,41.213 +260328,115.46,38.525 +260329,115.63,46.106 +260330,115.2,43.734 +260331,114.75,41.207 +260332,114.29,38.493 +260333,114.3,46.143 +260334,113.91,43.752 +260335,113.52,41.203 +260336,113.12,38.463 +260337,112.97,46.179 +260338,112.63,43.769 +260339,112.29,41.199 +260340,111.94,38.435 +260341,111.64,46.213 +260342,111.35,43.785 +260343,111.06,41.196 +260344,110.77,38.409 +260345,110.31,46.245 +260346,110.06,43.801 +260347,109.83,41.194 +260348,109.6,38.385 +260349,108.98,46.276 +260350,108.78,43.817 +260351,108.6,41.192 +260352,108.43,38.364 +260353,107.65,46.304 +260354,107.5,43.832 +260355,107.37,41.192 +260356,107.26,38.345 +260357,106.31,46.331 +260358,106.21,43.846 +260359,106.14,41.192 +260360,106.09,38.329 +260361,104.98,46.356 +260362,104.93,43.86 +260363,104.91,41.193 +260364,104.92,38.315 +260365,103.65,46.379 +260366,103.65,43.873 +260367,103.68,41.194 +260368,103.75,38.303 +260369,102.32,46.401 +260370,102.36,43.886 +260371,102.45,41.197 +260372,102.58,38.293 +260373,100.99,46.421 +260374,101.08,43.898 +260375,101.22,41.2 +260376,101.42,38.286 +260377,99.656,46.438 +260378,99.795,43.909 +260379,99.985,41.204 +260380,100.25,38.282 +260381,98.324,46.454 +260382,98.511,43.92 +260383,98.755,41.209 +260384,99.076,38.279 +260385,96.993,46.469 +260386,97.228,43.931 +260387,97.524,41.215 +260388,97.906,38.28 +260389,95.661,46.481 +260390,95.944,43.94 +260391,96.293,41.222 +260392,96.736,38.282 +260393,94.33,46.492 +260394,94.66,43.949 +260395,95.063,41.229 +260396,95.566,38.287 +260397,92.999,46.5 +260398,93.377,43.958 +260399,93.832,41.237 +260400,94.395,38.295 +260401,91.668,46.507 +260402,92.093,43.966 +260403,92.601,41.246 +260404,93.223,38.305 +260405,90.337,46.512 +260406,90.81,43.973 +260407,91.369,41.256 +260408,92.051,38.317 +260409,89.007,46.516 +260410,89.526,43.98 +260411,90.138,41.266 +260412,90.878,38.332 +260413,87.677,46.517 +260414,88.243,43.986 +260415,88.906,41.278 +260416,89.705,38.349 +260417,86.347,46.517 +260418,86.96,43.992 +260419,87.674,41.29 +260420,88.531,38.368 +260421,85.018,46.515 +260422,85.677,43.997 +260423,86.442,41.303 +260424,87.356,38.39 +260425,83.69,46.511 +260426,84.394,44.001 +260427,85.21,41.317 +260428,86.18,38.414 +260429,82.361,46.505 +260430,83.111,44.005 +260431,83.977,41.331 +260432,85.003,38.441 +260433,81.034,46.498 +260434,81.829,44.009 +260435,82.744,41.346 +260436,83.825,38.47 +260437,79.706,46.489 +260438,80.546,44.011 +260439,81.51,41.363 +260440,82.646,38.501 +260441,78.38,46.478 +260442,79.264,44.014 +260443,80.277,41.379 +260444,81.466,38.535 +260445,77.054,46.465 +260446,77.982,44.015 +260447,79.043,41.397 +260448,80.284,38.571 +260449,75.728,46.45 +260450,76.701,44.016 +260451,77.808,41.416 +260452,79.102,38.609 +260453,74.404,46.434 +260454,75.419,44.017 +260455,76.573,41.435 +260456,77.918,38.65 +260457,73.08,46.416 +260458,74.138,44.017 +260459,75.338,41.455 +260460,76.733,38.693 +260461,71.757,46.396 +260462,72.857,44.016 +260463,74.102,41.475 +260464,75.546,38.738 +260465,70.434,46.375 +260466,71.576,44.015 +260467,72.866,41.497 +260468,74.358,38.785 +260469,69.113,46.352 +260470,70.296,44.013 +260471,71.63,41.519 +260472,73.168,38.834 +260473,67.792,46.327 +260474,69.016,44.011 +260475,70.392,41.542 +260476,71.977,38.886 +260477,66.472,46.301 +260478,67.736,44.008 +260479,69.155,41.566 +260480,70.784,38.939 +260481,65.153,46.273 +260482,66.456,44.005 +260483,67.917,41.59 +260484,69.59,38.995 +260485,63.835,46.243 +260486,65.177,44.002 +260487,66.678,41.615 +260488,68.394,39.053 +260489,62.519,46.212 +260490,63.898,43.997 +260491,65.439,41.641 +260492,67.196,39.113 +260493,61.203,46.179 +260494,62.62,43.993 +260495,64.2,41.667 +260496,65.996,39.174 +260497,59.888,46.144 +260498,61.342,43.987 +260499,62.96,41.694 +260500,64.795,39.238 +260501,58.574,46.108 +260502,60.064,43.982 +260503,61.719,41.722 +260504,63.591,39.304 +260505,57.261,46.071 +260506,58.787,43.975 +260507,60.478,41.751 +260508,62.386,39.371 +260509,55.95,46.032 +260510,57.51,43.969 +260511,59.236,41.78 +260512,61.179,39.44 +260513,54.639,45.991 +260514,56.234,43.962 +260515,57.994,41.81 +260516,59.97,39.512 +260517,53.33,45.949 +260518,54.957,43.954 +260519,56.751,41.84 +260520,58.759,39.584 +260521,52.022,45.906 +260522,53.682,43.946 +260523,55.507,41.871 +260524,57.546,39.659 +260525,50.716,45.861 +260526,52.407,43.938 +260527,54.263,41.903 +260528,56.331,39.735 +260529,49.41,45.814 +260530,51.132,43.929 +260531,53.018,41.935 +260532,55.115,39.813 +260533,48.106,45.767 +260534,49.858,43.92 +260535,51.772,41.968 +260536,53.896,39.893 +260537,46.803,45.718 +260538,48.584,43.91 +260539,50.526,42.001 +260540,52.674,39.974 +260541,45.502,45.667 +260542,47.31,43.9 +260543,49.279,42.035 +260544,51.451,40.056 +260545,44.202,45.616 +260546,46.038,43.889 +260547,48.032,42.069 +260548,50.226,40.14 +260549,42.904,45.563 +260550,44.765,43.879 +260551,46.784,42.104 +260552,48.999,40.225 +260553,41.606,45.509 +260554,43.493,43.868 +260555,45.535,42.14 +260556,47.769,40.312 +260557,40.311,45.454 +260558,42.222,43.856 +260559,44.285,42.176 +260560,46.538,40.4 +260561,39.017,45.397 +260562,40.951,43.844 +260563,43.035,42.212 +260564,45.304,40.489 +260565,37.724,45.339 +260566,39.681,43.832 +260567,41.784,42.249 +260568,44.068,40.58 +260569,36.433,45.281 +260570,38.411,43.82 +260571,40.533,42.286 +260572,42.83,40.671 +260573,35.144,45.221 +260574,37.142,43.807 +260575,39.28,42.324 +260576,41.59,40.764 +260577,33.856,45.16 +260578,35.873,43.794 +260579,38.027,42.363 +260580,40.348,40.858 +260581,32.57,45.098 +260582,34.605,43.781 +260583,36.774,42.401 +260584,39.103,40.953 +260585,31.285,45.035 +260586,33.337,43.767 +260587,35.519,42.44 +260588,37.857,41.049 +260589,30.003,44.971 +260590,32.07,43.753 +260591,34.264,42.48 +260592,36.608,41.145 +260593,28.721,44.907 +260594,30.804,43.739 +260595,33.008,42.52 +260596,35.357,41.243 +260597,27.442,44.841 +260598,29.538,43.725 +260599,31.752,42.56 +260600,34.104,41.341 +260601,26.164,44.774 +260602,28.272,43.71 +260603,30.494,42.601 +260604,32.849,41.44 +260605,24.888,44.707 +260606,27.008,43.696 +260607,29.236,42.641 +260608,31.591,41.54 +260609,23.614,44.639 +260610,25.743,43.681 +260611,27.977,42.683 +260612,30.332,41.641 +260613,22.342,44.57 +260614,24.48,43.666 +260615,26.718,42.724 +260616,29.07,41.742 +260617,21.071,44.501 +260618,23.217,43.651 +260619,25.458,42.766 +260620,27.807,41.844 +260621,19.802,44.431 +260622,21.954,43.635 +260623,24.197,42.808 +260624,26.541,41.946 +260625,18.535,44.36 +260626,20.692,43.62 +260627,22.935,42.85 +260628,25.273,42.049 +260629,17.27,44.288 +260630,19.431,43.604 +260631,21.672,42.893 +260632,24.003,42.152 +260633,16.007,44.217 +260634,18.17,43.589 +260635,20.409,42.936 +260636,22.732,42.255 +260637,14.745,44.144 +260638,16.91,43.573 +260639,19.145,42.979 +260640,21.458,42.359 +260641,13.486,44.071 +260642,15.651,43.557 +260643,17.881,43.022 +260644,20.182,42.463 +260645,12.228,43.998 +260646,14.392,43.541 +260647,16.615,43.065 +260648,18.904,42.568 +260649,10.972,43.924 +260650,13.134,43.525 +260651,15.349,43.108 +260652,17.624,42.672 +260653,9.7183,43.85 +260654,11.876,43.51 +260655,14.083,43.152 +260656,16.342,42.777 +260657,8.4663,43.776 +260658,10.619,43.494 +260659,12.815,43.196 +260660,15.059,42.882 +260661,7.2162,43.701 +260662,9.3622,43.478 +260663,11.547,43.24 +260664,13.773,42.986 +260665,5.9681,43.627 +260666,8.1063,43.462 +260667,10.278,43.283 +260668,12.486,43.091 +260669,4.7219,43.552 +260670,6.8509,43.446 +260671,9.0085,43.327 +260672,11.196,43.196 +260673,3.4777,43.477 +260674,5.5961,43.43 +260675,7.7382,43.372 +260676,9.9054,43.3 +260677,2.2353,43.402 +260678,4.3419,43.414 +260679,6.4672,43.416 +260680,8.6125,43.405 +260681,0.99491,43.326 +260682,3.0883,43.399 +260683,5.1956,43.46 +260684,7.3178,43.509 +260685,359.76,43.251 +260686,1.8352,43.383 +260687,3.9233,43.504 +260688,6.0213,43.613 +260689,358.52,43.176 +260690,0.58273,43.368 +260691,2.6503,43.548 +260692,4.7231,43.717 +260693,357.29,43.101 +260694,359.33,43.352 +260695,1.3766,43.592 +260696,3.4233,43.82 +260697,356.05,43.026 +260698,358.08,43.337 +260699,0.10229,43.636 +260700,2.1217,43.923 +260701,354.82,42.952 +260702,356.83,43.322 +260703,358.83,43.68 +260704,0.81853,44.025 +260705,353.59,42.877 +260706,355.58,43.307 +260707,357.55,43.724 +260708,359.51,44.127 +260709,352.37,42.803 +260710,354.33,43.293 +260711,356.28,43.768 +260712,358.21,44.229 +260713,351.14,42.729 +260714,353.08,43.278 +260715,355,43.812 +260716,356.9,44.33 +260717,349.92,42.656 +260718,351.83,43.264 +260719,353.72,43.856 +260720,355.59,44.431 +260721,348.7,42.583 +260722,350.58,43.25 +260723,352.44,43.899 +260724,354.28,44.53 +260725,347.48,42.511 +260726,349.34,43.236 +260727,351.16,43.943 +260728,352.97,44.63 +260729,346.26,42.439 +260730,348.09,43.223 +260731,349.89,43.986 +260732,351.65,44.728 +260733,345.04,42.367 +260734,346.84,43.21 +260735,348.61,44.029 +260736,350.34,44.826 +260737,343.83,42.297 +260738,345.6,43.197 +260739,347.32,44.072 +260740,349.02,44.923 +260741,342.62,42.226 +260742,344.35,43.184 +260743,346.04,44.115 +260744,347.7,45.019 +260745,341.41,42.157 +260746,343.1,43.172 +260747,344.76,44.157 +260748,346.38,45.114 +260749,340.2,42.088 +260750,341.86,43.16 +260751,343.48,44.2 +260752,345.06,45.209 +260753,338.99,42.02 +260754,340.62,43.148 +260755,342.2,44.242 +260756,343.74,45.302 +260757,337.79,41.953 +260758,339.37,43.137 +260759,340.91,44.284 +260760,342.42,45.395 +260761,336.58,41.887 +260762,338.13,43.126 +260763,339.63,44.325 +260764,341.09,45.486 +260765,335.38,41.822 +260766,336.89,43.116 +260767,338.35,44.366 +260768,339.77,45.577 +260769,334.18,41.758 +260770,335.64,43.106 +260771,337.06,44.407 +260772,338.44,45.666 +260773,332.98,41.695 +260774,334.4,43.096 +260775,335.78,44.448 +260776,337.11,45.754 +260777,331.78,41.633 +260778,333.16,43.087 +260779,334.49,44.489 +260780,335.79,45.842 +260781,330.59,41.572 +260782,331.92,43.078 +260783,333.21,44.529 +260784,334.46,45.928 +260785,329.39,41.512 +260786,330.68,43.07 +260787,331.92,44.568 +260788,333.13,46.013 +260789,328.2,41.453 +260790,329.44,43.062 +260791,330.63,44.608 +260792,331.79,46.096 +260793,327.01,41.396 +260794,328.2,43.054 +260795,329.34,44.647 +260796,330.46,46.179 +260797,325.82,41.34 +260798,326.96,43.048 +260799,328.06,44.686 +260800,329.13,46.26 +260801,324.63,41.285 +260802,325.72,43.041 +260803,326.77,44.724 +260804,327.8,46.34 +260805,323.44,41.232 +260806,324.48,43.035 +260807,325.48,44.762 +260808,326.46,46.418 +260809,322.26,41.18 +260810,323.24,43.03 +260811,324.19,44.799 +260812,325.12,46.496 +260813,321.07,41.129 +260814,322,43.025 +260815,322.9,44.837 +260816,323.79,46.572 +260817,319.89,41.08 +260818,320.76,43.021 +260819,321.61,44.873 +260820,322.45,46.646 +260821,318.7,41.033 +260822,319.52,43.018 +260823,320.32,44.909 +260824,321.11,46.719 +260825,317.52,40.987 +260826,318.28,43.014 +260827,319.03,44.945 +260828,319.77,46.791 +260829,316.34,40.943 +260830,317.04,43.012 +260831,317.74,44.981 +260832,318.44,46.861 +260833,315.16,40.9 +260834,315.81,43.01 +260835,316.45,45.016 +260836,317.1,46.93 +260837,313.98,40.859 +260838,314.57,43.009 +260839,315.16,45.05 +260840,315.76,46.997 +260841,312.8,40.82 +260842,313.33,43.008 +260843,313.87,45.084 +260844,314.42,47.062 +260845,311.63,40.783 +260846,312.09,43.008 +260847,312.58,45.118 +260848,313.08,47.127 +260849,310.45,40.747 +260850,310.86,43.009 +260851,311.29,45.151 +260852,311.73,47.189 +260853,309.27,40.713 +260854,309.62,43.01 +260855,310,45.183 +260856,310.39,47.25 +260857,308.1,40.681 +260858,308.38,43.012 +260859,308.7,45.215 +260860,309.05,47.31 +260861,306.92,40.651 +260862,307.15,43.014 +260863,307.41,45.247 +260864,307.71,47.367 +260865,305.75,40.623 +260866,305.91,43.018 +260867,306.12,45.278 +260868,306.36,47.424 +260869,304.57,40.597 +260870,304.67,43.022 +260871,304.83,45.309 +260872,305.02,47.478 +260873,303.4,40.572 +260874,303.43,43.026 +260875,303.53,45.339 +260876,303.68,47.531 +260877,302.22,40.55 +260878,302.2,43.031 +260879,302.24,45.368 +260880,302.34,47.582 +260881,301.05,40.53 +260882,300.96,43.037 +260883,300.95,45.397 +260884,300.99,47.632 +260885,299.88,40.511 +260886,299.72,43.044 +260887,299.65,45.425 +260888,299.65,47.68 +260889,298.7,40.495 +260890,298.49,43.051 +260891,298.36,45.453 +260892,298.31,47.726 +260893,297.53,40.481 +260894,297.25,43.059 +260895,297.07,45.481 +260896,296.96,47.77 +260897,296.36,40.469 +260898,296.01,43.068 +260899,295.77,45.507 +260900,295.62,47.813 +260901,295.18,40.459 +260902,294.77,43.077 +260903,294.48,45.534 +260904,294.27,47.854 +260905,294.01,40.452 +260906,293.54,43.088 +260907,293.19,45.559 +260908,292.93,47.893 +260909,292.83,40.446 +260910,292.3,43.099 +260911,291.89,45.584 +260912,291.59,47.931 +260913,291.66,40.443 +260914,291.06,43.11 +260915,290.6,45.609 +260916,290.24,47.967 +260917,290.48,40.442 +260918,289.82,43.123 +260919,289.31,45.633 +260920,288.9,48.001 +260921,289.31,40.443 +260922,288.59,43.136 +260923,288.01,45.656 +260924,287.56,48.033 +260925,288.13,40.446 +260926,287.35,43.15 +260927,286.72,45.679 +260928,286.22,48.064 +260929,286.96,40.451 +260930,286.11,43.164 +260931,285.43,45.701 +260932,284.87,48.093 +260933,285.78,40.459 +260934,284.87,43.179 +260935,284.14,45.723 +260936,283.53,48.12 +260937,284.6,40.469 +260938,283.63,43.196 +260939,282.84,45.744 +260940,282.19,48.145 +260941,283.42,40.481 +260942,282.39,43.212 +260943,281.55,45.765 +260944,280.85,48.169 +260945,282.24,40.495 +260946,281.15,43.23 +260947,280.26,45.785 +260948,279.51,48.19 +260949,281.06,40.512 +260950,279.91,43.248 +260951,278.96,45.804 +260952,278.17,48.21 +260953,279.88,40.53 +260954,278.67,43.267 +260955,277.67,45.823 +260956,276.83,48.229 +260957,278.7,40.551 +260958,277.43,43.287 +260959,276.38,45.841 +260960,275.49,48.245 +260961,277.51,40.575 +260962,276.19,43.307 +260963,275.09,45.859 +260964,274.15,48.26 +260965,276.33,40.6 +260966,274.95,43.329 +260967,273.79,45.876 +260968,272.81,48.273 +260969,275.14,40.628 +260970,273.7,43.351 +260971,272.5,45.892 +260972,271.48,48.284 +260973,273.95,40.658 +260974,272.46,43.373 +260975,271.21,45.908 +260976,270.14,48.294 +260977,272.77,40.69 +260978,271.22,43.397 +260979,269.92,45.924 +260980,268.8,48.302 +260981,271.57,40.724 +260982,269.97,43.421 +260983,268.63,45.938 +260984,267.47,48.308 +260985,270.38,40.76 +260986,268.73,43.446 +260987,267.34,45.953 +260988,266.13,48.312 +260989,269.19,40.799 +260990,267.49,43.471 +260991,266.05,45.966 +260992,264.8,48.315 +260993,267.99,40.84 +260994,266.24,43.498 +260995,264.76,45.979 +260996,263.47,48.316 +260997,266.8,40.883 +260998,265,43.525 +260999,263.47,45.992 +261000,262.14,48.315 +261001,265.6,40.928 +261002,263.75,43.552 +261003,262.18,46.004 +261004,260.8,48.313 +261005,264.4,40.975 +261006,262.5,43.581 +261007,260.89,46.016 +261008,259.47,48.308 +261009,263.2,41.024 +261010,261.26,43.61 +261011,259.6,46.026 +261012,258.15,48.303 +261013,261.99,41.075 +261014,260.01,43.64 +261015,258.31,46.037 +261016,256.82,48.295 +261017,260.79,41.128 +261018,258.76,43.67 +261019,257.02,46.047 +261020,255.49,48.286 +261021,259.58,41.184 +261022,257.51,43.701 +261023,255.73,46.056 +261024,254.16,48.276 +261025,258.37,41.241 +261026,256.26,43.733 +261027,254.44,46.065 +261028,252.84,48.263 +261029,257.16,41.3 +261030,255.01,43.766 +261031,253.16,46.073 +261032,251.52,48.25 +261033,255.95,41.361 +261034,253.76,43.799 +261035,251.87,46.081 +261036,250.19,48.234 +261037,254.73,41.424 +261038,252.51,43.833 +261039,250.58,46.088 +261040,248.87,48.217 +261041,253.51,41.489 +261042,251.26,43.867 +261043,249.3,46.095 +261044,247.55,48.199 +261045,252.3,41.556 +261046,250.01,43.902 +261047,248.01,46.102 +261048,246.23,48.179 +261049,251.07,41.625 +261050,248.75,43.938 +261051,246.72,46.107 +261052,244.91,48.157 +261053,249.85,41.695 +261054,247.5,43.974 +261055,245.44,46.113 +261056,243.6,48.134 +261057,248.62,41.767 +261058,246.25,44.011 +261059,244.15,46.118 +261060,242.28,48.11 +261061,247.4,41.841 +261062,244.99,44.048 +261063,242.87,46.122 +261064,240.97,48.084 +261065,246.17,41.916 +261066,243.74,44.086 +261067,241.59,46.126 +261068,239.66,48.057 +261069,244.93,41.993 +261070,242.48,44.125 +261071,240.3,46.13 +261072,238.34,48.028 +261073,243.7,42.072 +261074,241.22,44.164 +261075,239.02,46.133 +261076,237.03,47.998 +261077,242.46,42.152 +261078,239.96,44.204 +261079,237.74,46.136 +261080,235.73,47.967 +261081,241.22,42.234 +261082,238.7,44.244 +261083,236.46,46.138 +261084,234.42,47.934 +261085,239.98,42.317 +261086,237.45,44.284 +261087,235.18,46.14 +261088,233.11,47.9 +261089,238.74,42.402 +261090,236.19,44.326 +261091,233.89,46.142 +261092,231.81,47.865 +261093,237.49,42.488 +261094,234.92,44.367 +261095,232.61,46.143 +261096,230.51,47.828 +261097,236.24,42.575 +261098,233.66,44.41 +261099,231.33,46.143 +261100,229.21,47.791 +261101,234.99,42.664 +261102,232.4,44.452 +261103,230.05,46.144 +261104,227.91,47.752 +261105,233.74,42.754 +261106,231.14,44.496 +261107,228.78,46.144 +261108,226.61,47.712 +261109,232.49,42.845 +261110,229.87,44.539 +261111,227.5,46.144 +261112,225.31,47.67 +261113,231.23,42.938 +261114,228.61,44.583 +261115,226.22,46.143 +261116,224.02,47.628 +261117,229.97,43.031 +261118,227.34,44.628 +261119,224.94,46.142 +261120,222.73,47.585 +261121,228.71,43.126 +261122,226.08,44.673 +261123,223.67,46.141 +261124,221.44,47.54 +261125,227.44,43.222 +261126,224.81,44.718 +261127,222.39,46.139 +261128,220.15,47.495 +261129,226.18,43.318 +261130,223.54,44.764 +261131,221.11,46.137 +261132,218.86,47.448 +261133,224.91,43.416 +261134,222.27,44.81 +261135,219.84,46.135 +261136,217.57,47.401 +261137,223.64,43.514 +261138,221,44.856 +261139,218.57,46.133 +261140,216.29,47.353 +261141,222.36,43.614 +261142,219.73,44.903 +261143,217.29,46.13 +261144,215.01,47.303 +261145,221.09,43.714 +261146,218.46,44.95 +261147,216.02,46.128 +261148,213.73,47.253 +261149,219.81,43.815 +261150,217.19,44.997 +261151,214.75,46.124 +261152,212.45,47.203 +261153,218.53,43.917 +261154,215.92,45.045 +261155,213.47,46.121 +261156,211.17,47.151 +261157,217.25,44.019 +261158,214.64,45.093 +261159,212.2,46.118 +261160,209.9,47.098 +261161,215.96,44.122 +261162,213.37,45.141 +261163,210.93,46.114 +261164,208.62,47.045 +261165,214.68,44.226 +261166,212.1,45.19 +261167,209.66,46.11 +261168,207.35,46.992 +261169,213.39,44.33 +261170,210.82,45.239 +261171,208.39,46.106 +261172,206.08,46.937 +261173,212.1,44.435 +261174,209.54,45.287 +261175,207.12,46.102 +261176,204.81,46.882 +261177,210.81,44.54 +261178,208.27,45.337 +261179,205.85,46.098 +261180,203.55,46.826 +261181,209.51,44.646 +261182,206.99,45.386 +261183,204.58,46.093 +261184,202.28,46.77 +261185,208.22,44.751 +261186,205.71,45.436 +261187,203.32,46.089 +261188,201.02,46.714 +261189,206.92,44.858 +261190,204.43,45.485 +261191,202.05,46.084 +261192,199.76,46.657 +261193,205.62,44.964 +261194,203.15,45.535 +261195,200.78,46.079 +261196,198.5,46.599 +261197,204.31,45.071 +261198,201.87,45.585 +261199,199.52,46.075 +261200,197.25,46.541 +261201,203.01,45.178 +261202,200.59,45.635 +261203,198.25,46.07 +261204,195.99,46.483 +261205,201.7,45.285 +261206,199.31,45.686 +261207,196.99,46.065 +261208,194.74,46.424 +261209,200.39,45.392 +261210,198.02,45.736 +261211,195.72,46.06 +261212,193.49,46.366 +261213,199.08,45.499 +261214,196.74,45.787 +261215,194.46,46.055 +261216,192.24,46.307 +261217,197.77,45.606 +261218,195.45,45.837 +261219,193.2,46.05 +261220,190.99,46.248 +261221,196.46,45.713 +261222,194.17,45.888 +261223,191.93,46.045 +261224,189.75,46.188 +261225,195.14,45.82 +261226,192.88,45.938 +261227,190.67,46.041 +261228,188.51,46.129 +261229,193.83,45.927 +261230,191.6,45.989 +261231,189.41,46.036 +261232,187.26,46.069 +261233,192.51,46.033 +261234,190.31,46.039 +261235,188.15,46.031 +261236,186.03,46.01 +261237,191.19,46.14 +261238,189.02,46.09 +261239,186.89,46.026 +261240,184.79,45.95 +261241,189.86,46.246 +261242,187.73,46.141 +261243,185.63,46.022 +261244,183.55,45.891 +261245,188.54,46.352 +261246,186.44,46.191 +261247,184.37,46.017 +261248,182.32,45.832 +261249,187.22,46.457 +261250,185.15,46.242 +261251,183.11,46.013 +261252,181.09,45.772 +261253,185.89,46.562 +261254,183.86,46.292 +261255,181.85,46.009 +261256,179.86,45.714 +261257,184.56,46.667 +261258,182.57,46.342 +261259,180.6,46.005 +261260,178.63,45.655 +261261,183.23,46.771 +261262,181.28,46.393 +261263,179.34,46.001 +261264,177.4,45.596 +261265,181.9,46.875 +261266,179.99,46.443 +261267,178.08,45.997 +261268,176.18,45.538 +261269,180.57,46.978 +261270,178.7,46.493 +261271,176.83,45.993 +261272,174.95,45.481 +261273,179.23,47.081 +261274,177.4,46.543 +261275,175.57,45.99 +261276,173.73,45.423 +261277,177.9,47.182 +261278,176.11,46.592 +261279,174.31,45.987 +261280,172.51,45.366 +261281,176.56,47.284 +261282,174.81,46.642 +261283,173.06,45.984 +261284,171.3,45.31 +261285,175.22,47.384 +261286,173.52,46.691 +261287,171.8,45.981 +261288,170.08,45.254 +261289,173.88,47.484 +261290,172.22,46.741 +261291,170.55,45.978 +261292,168.86,45.199 +261293,172.54,47.583 +261294,170.93,46.79 +261295,169.3,45.976 +261296,167.65,45.144 +261297,171.2,47.681 +261298,169.63,46.838 +261299,168.04,45.974 +261300,166.44,45.09 +261301,169.86,47.779 +261302,168.33,46.887 +261303,166.79,45.973 +261304,165.23,45.037 +261305,168.52,47.875 +261306,167.04,46.935 +261307,165.54,45.971 +261308,164.02,44.984 +261309,167.17,47.971 +261310,165.74,46.983 +261311,164.29,45.97 +261312,162.82,44.932 +261313,165.83,48.066 +261314,164.44,47.031 +261315,163.03,45.97 +261316,161.61,44.881 +261317,164.48,48.159 +261318,163.14,47.079 +261319,161.78,45.969 +261320,160.41,44.831 +261321,163.13,48.252 +261322,161.84,47.126 +261323,160.53,45.969 +261324,159.2,44.782 +261325,161.78,48.344 +261326,160.54,47.173 +261327,159.28,45.97 +261328,158,44.733 +261329,160.43,48.434 +261330,159.24,47.22 +261331,158.03,45.97 +261332,156.8,44.686 +261333,159.08,48.524 +261334,157.94,47.266 +261335,156.78,45.972 +261336,155.61,44.64 +261337,157.73,48.612 +261338,156.64,47.312 +261339,155.53,45.973 +261340,154.41,44.595 +261341,156.38,48.7 +261342,155.34,47.357 +261343,154.28,45.975 +261344,153.21,44.551 +261345,155.03,48.786 +261346,154.03,47.403 +261347,153.03,45.977 +261348,152.02,44.508 +261349,153.68,48.871 +261350,152.73,47.448 +261351,151.78,45.98 +261352,150.82,44.466 +261353,152.32,48.954 +261354,151.43,47.492 +261355,150.53,45.983 +261356,149.63,44.425 +261357,150.97,49.037 +261358,150.13,47.536 +261359,149.28,45.987 +261360,148.44,44.386 +261361,149.61,49.118 +261362,148.82,47.58 +261363,148.04,45.991 +261364,147.25,44.348 +261365,148.26,49.198 +261366,147.52,47.624 +261367,146.79,45.996 +261368,146.06,44.311 +261369,146.9,49.276 +261370,146.22,47.667 +261371,145.54,46.001 +261372,144.87,44.275 +261373,145.54,49.353 +261374,144.91,47.709 +261375,144.29,46.007 +261376,143.68,44.241 +261377,144.19,49.429 +261378,143.61,47.751 +261379,143.04,46.013 +261380,142.5,44.209 +261381,142.83,49.504 +261382,142.3,47.793 +261383,141.8,46.019 +261384,141.31,44.178 +261385,141.47,49.577 +261386,141,47.834 +261387,140.55,46.027 +261388,140.12,44.148 +261389,140.11,49.648 +261390,139.69,47.875 +261391,139.3,46.034 +261392,138.94,44.12 +261393,138.76,49.718 +261394,138.39,47.915 +261395,138.05,46.043 +261396,137.75,44.093 +261397,137.4,49.787 +261398,137.08,47.955 +261399,136.8,46.051 +261400,136.57,44.068 +261401,136.04,49.854 +261402,135.78,47.995 +261403,135.56,46.061 +261404,135.39,44.045 +261405,134.68,49.92 +261406,134.47,48.034 +261407,134.31,46.071 +261408,134.2,44.023 +261409,133.32,49.984 +261410,133.17,48.072 +261411,133.06,46.081 +261412,133.02,44.003 +261413,131.96,50.047 +261414,131.86,48.11 +261415,131.81,46.092 +261416,131.84,43.984 +261417,130.6,50.108 +261418,130.55,48.147 +261419,130.57,46.104 +261420,130.65,43.967 +261421,129.24,50.168 +261422,129.25,48.184 +261423,129.32,46.116 +261424,129.47,43.952 +261425,127.88,50.226 +261426,127.94,48.221 +261427,128.07,46.129 +261428,128.29,43.939 +261429,126.52,50.282 +261430,126.64,48.257 +261431,126.82,46.142 +261432,127.1,43.928 +261433,125.16,50.337 +261434,125.33,48.292 +261435,125.58,46.156 +261436,125.92,43.918 +261437,123.81,50.39 +261438,124.02,48.327 +261439,124.33,46.171 +261440,124.74,43.91 +261441,122.45,50.442 +261442,122.72,48.361 +261443,123.08,46.186 +261444,123.56,43.904 +261445,121.09,50.492 +261446,121.41,48.395 +261447,121.83,46.202 +261448,122.37,43.9 +261449,119.73,50.54 +261450,120.1,48.428 +261451,120.58,46.219 +261452,121.19,43.897 +261453,118.37,50.587 +261454,118.8,48.461 +261455,119.33,46.236 +261456,120.01,43.897 +261457,117.01,50.632 +261458,117.49,48.493 +261459,118.08,46.254 +261460,118.82,43.899 +261461,115.66,50.675 +261462,116.19,48.525 +261463,116.83,46.272 +261464,117.64,43.902 +261465,114.3,50.717 +261466,114.88,48.556 +261467,115.59,46.291 +261468,116.45,43.907 +261469,112.94,50.757 +261470,113.57,48.587 +261471,114.34,46.311 +261472,115.26,43.914 +261473,111.58,50.796 +261474,112.27,48.617 +261475,113.09,46.331 +261476,114.08,43.924 +261477,110.23,50.833 +261478,110.96,48.646 +261479,111.84,46.352 +261480,112.89,43.935 +261481,108.87,50.868 +261482,109.66,48.675 +261483,110.58,46.374 +261484,111.7,43.948 +261485,107.52,50.901 +261486,108.35,48.703 +261487,109.33,46.396 +261488,110.51,43.963 +261489,106.16,50.933 +261490,107.04,48.731 +261491,108.08,46.419 +261492,109.32,43.98 +261493,104.81,50.963 +261494,105.74,48.758 +261495,106.83,46.443 +261496,108.13,43.999 +261497,103.46,50.992 +261498,104.43,48.785 +261499,105.58,46.467 +261500,106.94,44.02 +261501,102.1,51.019 +261502,103.13,48.811 +261503,104.33,46.492 +261504,105.74,44.043 +261505,100.75,51.044 +261506,101.82,48.837 +261507,103.07,46.518 +261508,104.55,44.068 +261509,99.4,51.067 +261510,100.52,48.862 +261511,101.82,46.544 +261512,103.35,44.095 +261513,98.049,51.089 +261514,99.216,48.886 +261515,100.57,46.571 +261516,102.16,44.124 +261517,96.7,51.109 +261518,97.911,48.91 +261519,99.312,46.598 +261520,100.96,44.154 +261521,95.351,51.128 +261522,96.608,48.933 +261523,98.057,46.626 +261524,99.757,44.187 +261525,94.003,51.145 +261526,95.304,48.956 +261527,96.802,46.655 +261528,98.556,44.222 +261529,92.655,51.16 +261530,94.001,48.978 +261531,95.546,46.685 +261532,97.352,44.259 +261533,91.309,51.174 +261534,92.698,49 +261535,94.29,46.715 +261536,96.148,44.297 +261537,89.964,51.186 +261538,91.395,49.021 +261539,93.033,46.745 +261540,94.941,44.338 +261541,88.619,51.196 +261542,90.092,49.042 +261543,91.776,46.777 +261544,93.733,44.381 +261545,87.276,51.205 +261546,88.79,49.062 +261547,90.518,46.809 +261548,92.524,44.425 +261549,85.933,51.212 +261550,87.489,49.082 +261551,89.259,46.841 +261552,91.312,44.471 +261553,84.592,51.218 +261554,86.187,49.101 +261555,88,46.874 +261556,90.099,44.52 +261557,83.252,51.222 +261558,84.886,49.119 +261559,86.741,46.908 +261560,88.884,44.57 +261561,81.913,51.224 +261562,83.585,49.137 +261563,85.481,46.943 +261564,87.666,44.621 +261565,80.575,51.225 +261566,82.285,49.155 +261567,84.22,46.978 +261568,86.447,44.675 +261569,79.238,51.225 +261570,80.985,49.172 +261571,82.958,47.013 +261572,85.227,44.731 +261573,77.902,51.223 +261574,79.685,49.188 +261575,81.696,47.049 +261576,84.004,44.788 +261577,76.568,51.219 +261578,78.386,49.204 +261579,80.434,47.086 +261580,82.779,44.847 +261581,75.235,51.214 +261582,77.087,49.22 +261583,79.17,47.123 +261584,81.552,44.908 +261585,73.903,51.207 +261586,75.789,49.235 +261587,77.906,47.161 +261588,80.322,44.97 +261589,72.572,51.199 +261590,74.491,49.249 +261591,76.642,47.2 +261592,79.091,45.035 +261593,71.243,51.19 +261594,73.194,49.263 +261595,75.376,47.239 +261596,77.858,45.1 +261597,69.915,51.179 +261598,71.897,49.277 +261599,74.11,47.278 +261600,76.622,45.168 +261601,68.589,51.167 +261602,70.6,49.29 +261603,72.843,47.318 +261604,75.384,45.237 +261605,67.264,51.153 +261606,69.304,49.302 +261607,71.576,47.359 +261608,74.144,45.308 +261609,65.94,51.138 +261610,68.008,49.315 +261611,70.308,47.4 +261612,72.902,45.38 +261613,64.618,51.122 +261614,66.713,49.326 +261615,69.039,47.442 +261616,71.658,45.454 +261617,63.297,51.104 +261618,65.419,49.338 +261619,67.769,47.484 +261620,70.411,45.529 +261621,61.978,51.085 +261622,64.124,49.349 +261623,66.498,47.527 +261624,69.162,45.606 +261625,60.66,51.065 +261626,62.831,49.359 +261627,65.227,47.57 +261628,67.911,45.684 +261629,59.344,51.044 +261630,61.538,49.369 +261631,63.955,47.613 +261632,66.657,45.764 +261633,58.029,51.021 +261634,60.245,49.379 +261635,62.683,47.658 +261636,65.401,45.845 +261637,56.716,50.997 +261638,58.953,49.388 +261639,61.409,47.702 +261640,64.143,45.927 +261641,55.405,50.972 +261642,57.661,49.397 +261643,60.135,47.747 +261644,62.882,46.01 +261645,54.095,50.946 +261646,56.37,49.406 +261647,58.86,47.792 +261648,61.619,46.095 +261649,52.787,50.919 +261650,55.08,49.414 +261651,57.584,47.838 +261652,60.354,46.181 +261653,51.481,50.89 +261654,53.79,49.422 +261655,56.308,47.884 +261656,59.087,46.268 +261657,50.176,50.861 +261658,52.5,49.429 +261659,55.031,47.931 +261660,57.817,46.357 +261661,48.873,50.83 +261662,51.211,49.436 +261663,53.753,47.978 +261664,56.545,46.446 +261665,47.571,50.799 +261666,49.923,49.443 +261667,52.474,48.025 +261668,55.27,46.537 +261669,46.272,50.766 +261670,48.635,49.45 +261671,51.194,48.073 +261672,53.993,46.628 +261673,44.974,50.732 +261674,47.348,49.456 +261675,49.914,48.121 +261676,52.714,46.721 +261677,43.678,50.698 +261678,46.062,49.462 +261679,48.633,48.17 +261680,51.433,46.814 +261681,42.383,50.663 +261682,44.776,49.467 +261683,47.351,48.219 +261684,50.149,46.909 +261685,41.091,50.626 +261686,43.49,49.473 +261687,46.068,48.268 +261688,48.863,47.004 +261689,39.8,50.589 +261690,42.205,49.478 +261691,44.785,48.317 +261692,47.575,47.1 +261693,38.511,50.552 +261694,40.921,49.483 +261695,43.5,48.367 +261696,46.284,47.197 +261697,37.224,50.513 +261698,39.637,49.487 +261699,42.215,48.417 +261700,44.991,47.295 +261701,35.938,50.473 +261702,38.354,49.492 +261703,40.93,48.467 +261704,43.696,47.393 +261705,34.655,50.433 +261706,37.071,49.496 +261707,39.643,48.517 +261708,42.399,47.492 +261709,33.373,50.393 +261710,35.789,49.5 +261711,38.356,48.568 +261712,41.1,47.592 +261713,32.093,50.351 +261714,34.508,49.504 +261715,37.067,48.619 +261716,39.798,47.692 +261717,30.815,50.309 +261718,33.227,49.507 +261719,35.779,48.67 +261720,38.495,47.792 +261721,29.539,50.267 +261722,31.947,49.511 +261723,34.489,48.721 +261724,37.189,47.894 +261725,28.265,50.223 +261726,30.667,49.514 +261727,33.198,48.773 +261728,35.881,47.995 +261729,26.993,50.18 +261730,29.388,49.517 +261731,31.907,48.824 +261732,34.571,48.097 +261733,25.722,50.136 +261734,28.109,49.52 +261735,30.615,48.876 +261736,33.259,48.2 +261737,24.454,50.091 +261738,26.831,49.523 +261739,29.323,48.928 +261740,31.945,48.303 +261741,23.187,50.046 +261742,25.554,49.526 +261743,28.029,48.98 +261744,30.629,48.406 +261745,21.922,50.001 +261746,24.277,49.529 +261747,26.735,49.033 +261748,29.311,48.509 +261749,20.659,49.955 +261750,23.001,49.531 +261751,25.44,49.085 +261752,27.991,48.613 +261753,19.398,49.909 +261754,21.725,49.534 +261755,24.145,49.137 +261756,26.669,48.716 +261757,18.139,49.863 +261758,20.45,49.537 +261759,22.849,49.19 +261760,25.345,48.82 +261761,16.881,49.816 +261762,19.176,49.539 +261763,21.552,49.242 +261764,24.02,48.924 +261765,15.626,49.77 +261766,17.902,49.541 +261767,20.254,49.295 +261768,22.692,49.028 +261769,14.372,49.723 +261770,16.628,49.544 +261771,18.956,49.348 +261772,21.363,49.132 +261773,13.12,49.676 +261774,15.355,49.546 +261775,17.657,49.4 +261776,20.032,49.235 +261777,11.87,49.629 +261778,14.083,49.549 +261779,16.357,49.453 +261780,18.7,49.339 +261781,10.622,49.582 +261782,12.811,49.551 +261783,15.056,49.505 +261784,17.365,49.443 +261785,9.3756,49.535 +261786,11.539,49.554 +261787,13.755,49.558 +261788,16.029,49.546 +261789,8.1311,49.488 +261790,10.269,49.556 +261791,12.454,49.611 +261792,14.691,49.65 +261793,6.8883,49.442 +261794,8.9983,49.559 +261795,11.151,49.663 +261796,13.352,49.753 +261797,5.6474,49.395 +261798,7.7285,49.562 +261799,9.8485,49.716 +261800,12.011,49.855 +261801,4.4081,49.348 +261802,6.4592,49.564 +261803,8.5449,49.768 +261804,10.669,49.958 +261805,3.1707,49.302 +261806,5.1903,49.567 +261807,7.2407,49.821 +261808,9.3251,50.06 +261809,1.9349,49.256 +261810,3.9219,49.57 +261811,5.936,49.873 +261812,7.9798,50.162 +261813,0.70088,49.21 +261814,2.6541,49.573 +261815,4.6306,49.925 +261816,6.6331,50.263 +261817,359.47,49.164 +261818,1.3866,49.577 +261819,3.3247,49.977 +261820,5.285,50.364 +261821,358.24,49.119 +261822,0.11965,49.58 +261823,2.0182,50.029 +261824,3.9355,50.464 +261825,357.01,49.074 +261826,358.85,49.584 +261827,0.71116,50.081 +261828,2.5847,50.563 +261829,355.78,49.03 +261830,357.59,49.587 +261831,359.4,50.132 +261832,1.2327,50.663 +261833,354.56,48.986 +261834,356.32,49.591 +261835,358.1,50.184 +261836,359.88,50.761 +261837,353.33,48.943 +261838,355.06,49.596 +261839,356.79,50.235 +261840,358.52,50.859 +261841,352.11,48.9 +261842,353.79,49.6 +261843,355.48,50.286 +261844,357.17,50.956 +261845,350.89,48.857 +261846,352.53,49.604 +261847,354.17,50.337 +261848,355.81,51.053 +261849,349.67,48.816 +261850,351.26,49.609 +261851,352.86,50.387 +261852,354.45,51.148 +261853,348.45,48.774 +261854,350,49.614 +261855,351.55,50.438 +261856,353.1,51.243 +261857,347.23,48.734 +261858,348.74,49.62 +261859,350.24,50.488 +261860,351.74,51.337 +261861,346.02,48.694 +261862,347.47,49.625 +261863,348.92,50.538 +261864,350.37,51.431 +261865,344.8,48.655 +261866,346.21,49.631 +261867,347.61,50.587 +261868,349.01,51.523 +261869,343.59,48.617 +261870,344.95,49.637 +261871,346.3,50.637 +261872,347.65,51.615 +261873,342.38,48.58 +261874,343.69,49.644 +261875,344.99,50.686 +261876,346.29,51.705 +261877,341.17,48.544 +261878,342.42,49.65 +261879,343.67,50.734 +261880,344.92,51.795 +261881,339.96,48.508 +261882,341.16,49.658 +261883,342.36,50.783 +261884,343.56,51.884 +261885,338.75,48.473 +261886,339.9,49.665 +261887,341.05,50.831 +261888,342.19,51.971 +261889,337.55,48.44 +261890,338.64,49.673 +261891,339.73,50.879 +261892,340.82,52.058 +261893,336.34,48.407 +261894,337.38,49.681 +261895,338.42,50.926 +261896,339.46,52.143 +261897,335.13,48.375 +261898,336.12,49.689 +261899,337.1,50.973 +261900,338.09,52.228 +261901,333.93,48.345 +261902,334.86,49.698 +261903,335.79,51.02 +261904,336.72,52.311 +261905,332.73,48.315 +261906,333.6,49.707 +261907,334.47,51.067 +261908,335.35,52.393 +261909,331.53,48.287 +261910,332.34,49.717 +261911,333.16,51.113 +261912,333.98,52.474 +261913,330.33,48.26 +261914,331.08,49.727 +261915,331.84,51.158 +261916,332.61,52.554 +261917,329.13,48.234 +261918,329.82,49.738 +261919,330.52,51.204 +261920,331.24,52.632 +261921,327.93,48.209 +261922,328.56,49.749 +261923,329.21,51.248 +261924,329.87,52.71 +261925,326.73,48.185 +261926,327.3,49.76 +261927,327.89,51.293 +261928,328.5,52.786 +261929,325.53,48.163 +261930,326.04,49.772 +261931,326.57,51.337 +261932,327.13,52.86 +261933,324.33,48.142 +261934,324.78,49.784 +261935,325.26,51.38 +261936,325.75,52.934 +261937,323.14,48.122 +261938,323.52,49.797 +261939,323.94,51.424 +261940,324.38,53.006 +261941,321.94,48.104 +261942,322.26,49.81 +261943,322.62,51.466 +261944,323.01,53.077 +261945,320.74,48.087 +261946,321.01,49.823 +261947,321.3,51.509 +261948,321.64,53.146 +261949,319.55,48.072 +261950,319.75,49.837 +261951,319.99,51.551 +261952,320.26,53.215 +261953,318.35,48.058 +261954,318.49,49.852 +261955,318.67,51.592 +261956,318.89,53.281 +261957,317.16,48.045 +261958,317.23,49.867 +261959,317.35,51.633 +261960,317.52,53.347 +261961,315.96,48.034 +261962,315.97,49.882 +261963,316.03,51.673 +261964,316.14,53.411 +261965,314.77,48.024 +261966,314.71,49.898 +261967,314.71,51.713 +261968,314.77,53.473 +261969,313.57,48.016 +261970,313.45,49.915 +261971,313.4,51.753 +261972,313.4,53.534 +261973,312.38,48.009 +261974,312.19,49.932 +261975,312.08,51.792 +261976,312.02,53.594 +261977,311.19,48.004 +261978,310.93,49.95 +261979,310.76,51.83 +261980,310.65,53.652 +261981,309.99,48.001 +261982,309.67,49.968 +261983,309.44,51.869 +261984,309.28,53.708 +261985,308.8,47.999 +261986,308.41,49.986 +261987,308.12,51.906 +261988,307.9,53.764 +261989,307.6,47.999 +261990,307.16,50.006 +261991,306.8,51.943 +261992,306.53,53.817 +261993,306.41,48 +261994,305.9,50.025 +261995,305.49,51.98 +261996,305.16,53.869 +261997,305.21,48.003 +261998,304.64,50.046 +261999,304.17,52.016 +262000,303.79,53.92 +262001,304.02,48.007 +262002,303.38,50.066 +262003,302.85,52.051 +262004,302.42,53.969 +262005,302.82,48.014 +262006,302.12,50.088 +262007,301.53,52.086 +262008,301.04,54.017 +262009,301.62,48.022 +262010,300.85,50.11 +262011,300.21,52.121 +262012,299.67,54.063 +262013,300.43,48.031 +262014,299.59,50.132 +262015,298.89,52.155 +262016,298.3,54.107 +262017,299.23,48.043 +262018,298.33,50.155 +262019,297.58,52.188 +262020,296.93,54.15 +262021,298.03,48.056 +262022,297.07,50.179 +262023,296.26,52.221 +262024,295.56,54.191 +262025,296.83,48.07 +262026,295.81,50.203 +262027,294.94,52.254 +262028,294.19,54.231 +262029,295.63,48.087 +262030,294.55,50.227 +262031,293.62,52.285 +262032,292.82,54.269 +262033,294.43,48.105 +262034,293.29,50.253 +262035,292.3,52.317 +262036,291.46,54.306 +262037,293.23,48.125 +262038,292.02,50.279 +262039,290.99,52.348 +262040,290.09,54.341 +262041,292.03,48.147 +262042,290.76,50.305 +262043,289.67,52.378 +262044,288.72,54.375 +262045,290.82,48.17 +262046,289.5,50.332 +262047,288.35,52.408 +262048,287.36,54.407 +262049,289.62,48.195 +262050,288.23,50.359 +262051,287.04,52.437 +262052,285.99,54.437 +262053,288.41,48.222 +262054,286.97,50.387 +262055,285.72,52.466 +262056,284.63,54.466 +262057,287.2,48.25 +262058,285.71,50.416 +262059,284.4,52.494 +262060,283.26,54.494 +262061,286,48.281 +262062,284.44,50.445 +262063,283.09,52.521 +262064,281.9,54.519 +262065,284.79,48.313 +262066,283.17,50.475 +262067,281.77,52.549 +262068,280.54,54.544 +262069,283.58,48.347 +262070,281.91,50.505 +262071,280.46,52.575 +262072,279.18,54.566 +262073,282.36,48.382 +262074,280.64,50.536 +262075,279.14,52.601 +262076,277.81,54.588 +262077,281.15,48.419 +262078,279.38,50.568 +262079,277.83,52.627 +262080,276.46,54.607 +262081,279.93,48.458 +262082,278.11,50.6 +262083,276.51,52.652 +262084,275.1,54.625 +262085,278.72,48.499 +262086,276.84,50.632 +262087,275.2,52.676 +262088,273.74,54.642 +262089,277.5,48.541 +262090,275.57,50.665 +262091,273.88,52.7 +262092,272.38,54.657 +262093,276.28,48.585 +262094,274.3,50.699 +262095,272.57,52.724 +262096,271.03,54.671 +262097,275.06,48.63 +262098,273.04,50.733 +262099,271.26,52.747 +262100,269.67,54.683 +262101,273.83,48.678 +262102,271.77,50.768 +262103,269.94,52.769 +262104,268.32,54.693 +262105,272.61,48.727 +262106,270.49,50.803 +262107,268.63,52.791 +262108,266.97,54.703 +262109,271.38,48.777 +262110,269.22,50.839 +262111,267.32,52.813 +262112,265.62,54.71 +262113,270.15,48.829 +262114,267.95,50.875 +262115,266.01,52.834 +262116,264.27,54.716 +262117,268.92,48.883 +262118,266.68,50.912 +262119,264.7,52.854 +262120,262.92,54.721 +262121,267.69,48.938 +262122,265.41,50.949 +262123,263.38,52.874 +262124,261.57,54.725 +262125,266.46,48.995 +262126,264.13,50.987 +262127,262.07,52.894 +262128,260.22,54.727 +262129,265.22,49.054 +262130,262.86,51.025 +262131,260.76,52.913 +262132,258.88,54.727 +262133,263.98,49.114 +262134,261.59,51.064 +262135,259.45,52.932 +262136,257.54,54.726 +262137,262.74,49.175 +262138,260.31,51.103 +262139,258.14,52.95 +262140,256.19,54.724 +262141,261.5,49.238 +262142,259.03,51.143 +262143,256.84,52.967 +262144,254.85,54.721 +262145,260.25,49.303 +262146,257.76,51.184 +262147,255.53,52.985 +262148,253.51,54.716 +262149,259.01,49.368 +262150,256.48,51.224 +262151,254.22,53.002 +262152,252.17,54.71 +262153,257.76,49.436 +262154,255.2,51.265 +262155,252.91,53.018 +262156,250.84,54.702 +262157,256.51,49.504 +262158,253.92,51.307 +262159,251.61,53.034 +262160,249.5,54.694 +262161,255.26,49.574 +262162,252.64,51.349 +262163,250.3,53.049 +262164,248.17,54.684 +262165,254,49.646 +262166,251.36,51.392 +262167,248.99,53.064 +262168,246.84,54.673 +262169,252.74,49.718 +262170,250.08,51.435 +262171,247.69,53.079 +262172,245.51,54.66 +262173,251.48,49.792 +262174,248.8,51.478 +262175,246.38,53.093 +262176,244.18,54.647 +262177,250.22,49.867 +262178,247.52,51.522 +262179,245.08,53.107 +262180,242.85,54.632 +262181,248.96,49.944 +262182,246.24,51.566 +262183,243.77,53.121 +262184,241.52,54.616 +262185,247.69,50.021 +262186,244.95,51.611 +262187,242.47,53.134 +262188,240.2,54.599 +262189,246.42,50.1 +262190,243.67,51.656 +262191,241.17,53.147 +262192,238.88,54.581 +262193,245.15,50.18 +262194,242.38,51.701 +262195,239.87,53.159 +262196,237.56,54.562 +262197,243.88,50.261 +262198,241.1,51.747 +262199,238.56,53.171 +262200,236.24,54.541 +262201,242.6,50.343 +262202,239.81,51.793 +262203,237.26,53.183 +262204,234.92,54.52 +262205,241.32,50.426 +262206,238.52,51.839 +262207,235.96,53.194 +262208,233.6,54.498 +262209,240.04,50.51 +262210,237.23,51.886 +262211,234.66,53.205 +262212,232.29,54.475 +262213,238.76,50.595 +262214,235.95,51.933 +262215,233.36,53.216 +262216,230.98,54.45 +262217,237.48,50.681 +262218,234.66,51.98 +262219,232.07,53.226 +262220,229.67,54.425 +262221,236.19,50.768 +262222,233.36,52.028 +262223,230.77,53.236 +262224,228.36,54.399 +262225,234.9,50.856 +262226,232.07,52.076 +262227,229.47,53.246 +262228,227.05,54.372 +262229,233.61,50.945 +262230,230.78,52.124 +262231,228.17,53.256 +262232,225.74,54.345 +262233,232.32,51.034 +262234,229.49,52.173 +262235,226.88,53.265 +262236,224.44,54.316 +262237,231.02,51.124 +262238,228.2,52.222 +262239,225.58,53.274 +262240,223.14,54.287 +262241,229.72,51.215 +262242,226.9,52.271 +262243,224.28,53.283 +262244,221.84,54.257 +262245,228.42,51.307 +262246,225.61,52.32 +262247,222.99,53.291 +262248,220.54,54.226 +262249,227.12,51.399 +262250,224.31,52.369 +262251,221.7,53.3 +262252,219.24,54.194 +262253,225.82,51.492 +262254,223.01,52.419 +262255,220.4,53.308 +262256,217.95,54.162 +262257,224.51,51.586 +262258,221.72,52.469 +262259,219.11,53.316 +262260,216.66,54.13 +262261,223.2,51.68 +262262,220.42,52.519 +262263,217.82,53.323 +262264,215.36,54.096 +262265,221.89,51.774 +262266,219.12,52.57 +262267,216.52,53.331 +262268,214.07,54.062 +262269,220.57,51.869 +262270,217.82,52.62 +262271,215.23,53.338 +262272,212.79,54.028 +262273,219.26,51.964 +262274,216.52,52.671 +262275,213.94,53.345 +262276,211.5,53.993 +262277,217.94,52.06 +262278,215.22,52.721 +262279,212.65,53.352 +262280,210.22,53.957 +262281,216.62,52.156 +262282,213.92,52.772 +262283,211.36,53.359 +262284,208.94,53.921 +262285,215.3,52.253 +262286,212.62,52.823 +262287,210.07,53.366 +262288,207.66,53.885 +262289,213.98,52.35 +262290,211.31,52.874 +262291,208.79,53.373 +262292,206.38,53.848 +262293,212.65,52.447 +262294,210.01,52.926 +262295,207.5,53.379 +262296,205.1,53.811 +262297,211.32,52.544 +262298,208.7,52.977 +262299,206.21,53.386 +262300,203.83,53.774 +262301,209.99,52.641 +262302,207.4,53.028 +262303,204.92,53.392 +262304,202.56,53.737 +262305,208.66,52.739 +262306,206.09,53.08 +262307,203.64,53.399 +262308,201.28,53.699 +262309,207.33,52.836 +262310,204.79,53.131 +262311,202.35,53.405 +262312,200.02,53.661 +262313,205.99,52.934 +262314,203.48,53.182 +262315,201.07,53.411 +262316,198.75,53.623 +262317,204.66,53.031 +262318,202.17,53.234 +262319,199.78,53.417 +262320,197.48,53.584 +262321,203.32,53.129 +262322,200.86,53.285 +262323,198.5,53.423 +262324,196.22,53.546 +262325,201.98,53.227 +262326,199.55,53.337 +262327,197.22,53.43 +262328,194.96,53.507 +262329,200.63,53.324 +262330,198.24,53.388 +262331,195.93,53.436 +262332,193.7,53.469 +262333,199.29,53.422 +262334,196.93,53.44 +262335,194.65,53.442 +262336,192.44,53.43 +262337,197.94,53.519 +262338,195.62,53.491 +262339,193.37,53.448 +262340,191.18,53.392 +262341,196.6,53.616 +262342,194.31,53.543 +262343,192.09,53.454 +262344,189.93,53.353 +262345,195.25,53.712 +262346,193,53.594 +262347,190.81,53.461 +262348,188.68,53.315 +262349,193.9,53.809 +262350,191.68,53.645 +262351,189.53,53.467 +262352,187.43,53.277 +262353,192.55,53.905 +262354,190.37,53.696 +262355,188.25,53.474 +262356,186.18,53.239 +262357,191.19,54.001 +262358,189.06,53.747 +262359,186.97,53.48 +262360,184.93,53.201 +262361,189.84,54.096 +262362,187.74,53.798 +262363,185.69,53.487 +262364,183.68,53.163 +262365,188.48,54.191 +262366,186.43,53.849 +262367,184.41,53.493 +262368,182.44,53.126 +262369,187.12,54.286 +262370,185.11,53.9 +262371,183.14,53.5 +262372,181.2,53.089 +262373,185.76,54.38 +262374,183.79,53.95 +262375,181.86,53.507 +262376,179.95,53.052 +262377,184.4,54.474 +262378,182.48,54.001 +262379,180.58,53.514 +262380,178.71,53.016 +262381,183.04,54.567 +262382,181.16,54.051 +262383,179.31,53.522 +262384,177.48,52.98 +262385,181.68,54.659 +262386,179.84,54.101 +262387,178.03,53.529 +262388,176.24,52.945 +262389,180.31,54.751 +262390,178.52,54.151 +262391,176.75,53.537 +262392,175.01,52.91 +262393,178.95,54.842 +262394,177.2,54.2 +262395,175.48,53.544 +262396,173.77,52.876 +262397,177.58,54.933 +262398,175.88,54.25 +262399,174.2,53.552 +262400,172.54,52.842 +262401,176.21,55.023 +262402,174.56,54.299 +262403,172.93,53.56 +262404,171.31,52.809 +262405,174.84,55.112 +262406,173.24,54.348 +262407,171.66,53.569 +262408,170.08,52.776 +262409,173.47,55.2 +262410,171.92,54.397 +262411,170.38,53.577 +262412,168.85,52.744 +262413,172.1,55.288 +262414,170.6,54.445 +262415,169.11,53.586 +262416,167.63,52.713 +262417,170.73,55.374 +262418,169.28,54.493 +262419,167.84,53.595 +262420,166.4,52.682 +262421,169.36,55.46 +262422,167.96,54.541 +262423,166.56,53.605 +262424,165.18,52.652 +262425,167.99,55.545 +262426,166.63,54.589 +262427,165.29,53.614 +262428,163.96,52.623 +262429,166.61,55.629 +262430,165.31,54.636 +262431,164.02,53.624 +262432,162.73,52.595 +262433,165.24,55.713 +262434,163.99,54.683 +262435,162.75,53.635 +262436,161.51,52.568 +262437,163.86,55.795 +262438,162.66,54.73 +262439,161.48,53.645 +262440,160.29,52.541 +262441,162.48,55.876 +262442,161.34,54.776 +262443,160.21,53.656 +262444,159.08,52.515 +262445,161.11,55.956 +262446,160.02,54.822 +262447,158.93,53.667 +262448,157.86,52.491 +262449,159.73,56.036 +262450,158.69,54.868 +262451,157.66,53.678 +262452,156.64,52.467 +262453,158.35,56.114 +262454,157.37,54.914 +262455,156.39,53.69 +262456,155.43,52.444 +262457,156.97,56.191 +262458,156.04,54.959 +262459,155.12,53.702 +262460,154.21,52.422 +262461,155.59,56.267 +262462,154.72,55.003 +262463,153.85,53.715 +262464,153,52.402 +262465,154.21,56.342 +262466,153.39,55.048 +262467,152.58,53.727 +262468,151.79,52.382 +262469,152.83,56.416 +262470,152.07,55.092 +262471,151.31,53.741 +262472,150.58,52.363 +262473,151.45,56.488 +262474,150.74,55.135 +262475,150.04,53.754 +262476,149.37,52.346 +262477,150.07,56.56 +262478,149.41,55.178 +262479,148.78,53.768 +262480,148.16,52.33 +262481,148.68,56.63 +262482,148.09,55.221 +262483,147.51,53.782 +262484,146.95,52.314 +262485,147.3,56.699 +262486,146.76,55.263 +262487,146.24,53.797 +262488,145.74,52.3 +262489,145.92,56.767 +262490,145.43,55.305 +262491,144.97,53.812 +262492,144.53,52.288 +262493,144.54,56.833 +262494,144.11,55.347 +262495,143.7,53.828 +262496,143.32,52.276 +262497,143.16,56.898 +262498,142.78,55.388 +262499,142.43,53.844 +262500,142.11,52.266 +262501,141.77,56.962 +262502,141.45,55.429 +262503,141.16,53.86 +262504,140.91,52.257 +262505,140.39,57.025 +262506,140.12,55.469 +262507,139.89,53.877 +262508,139.7,52.249 +262509,139.01,57.087 +262510,138.8,55.509 +262511,138.62,53.894 +262512,138.49,52.243 +262513,137.62,57.147 +262514,137.47,55.548 +262515,137.36,53.912 +262516,137.29,52.238 +262517,136.24,57.205 +262518,136.14,55.587 +262519,136.09,53.93 +262520,136.08,52.234 +262521,134.86,57.263 +262522,134.81,55.625 +262523,134.82,53.949 +262524,134.87,52.232 +262525,133.47,57.319 +262526,133.49,55.663 +262527,133.55,53.968 +262528,133.67,52.231 +262529,132.09,57.373 +262530,132.16,55.701 +262531,132.28,53.987 +262532,132.46,52.231 +262533,130.71,57.426 +262534,130.83,55.738 +262535,131.01,54.007 +262536,131.26,52.233 +262537,129.33,57.478 +262538,129.5,55.774 +262539,129.74,54.027 +262540,130.05,52.236 +262541,127.94,57.529 +262542,128.18,55.81 +262543,128.47,54.048 +262544,128.84,52.241 +262545,126.56,57.578 +262546,126.85,55.846 +262547,127.2,54.07 +262548,127.64,52.247 +262549,125.18,57.625 +262550,125.52,55.881 +262551,125.93,54.092 +262552,126.43,52.255 +262553,123.8,57.672 +262554,124.19,55.916 +262555,124.66,54.114 +262556,125.22,52.264 +262557,122.42,57.716 +262558,122.87,55.95 +262559,123.39,54.137 +262560,124.02,52.274 +262561,121.04,57.76 +262562,121.54,55.983 +262563,122.12,54.16 +262564,122.81,52.286 +262565,119.66,57.801 +262566,120.21,56.017 +262567,120.85,54.184 +262568,121.6,52.3 +262569,118.28,57.842 +262570,118.88,56.049 +262571,119.58,54.208 +262572,120.39,52.315 +262573,116.9,57.881 +262574,117.56,56.081 +262575,118.31,54.233 +262576,119.18,52.332 +262577,115.52,57.918 +262578,116.23,56.113 +262579,117.04,54.258 +262580,117.97,52.35 +262581,114.14,57.954 +262582,114.9,56.144 +262583,115.77,54.284 +262584,116.76,52.37 +262585,112.76,57.989 +262586,113.58,56.175 +262587,114.5,54.31 +262588,115.55,52.391 +262589,111.38,58.022 +262590,112.25,56.205 +262591,113.23,54.337 +262592,114.34,52.414 +262593,110.01,58.054 +262594,110.92,56.235 +262595,111.96,54.364 +262596,113.13,52.438 +262597,108.63,58.084 +262598,109.6,56.264 +262599,110.68,54.392 +262600,111.91,52.464 +262601,107.26,58.113 +262602,108.27,56.293 +262603,109.41,54.42 +262604,110.7,52.491 +262605,105.88,58.14 +262606,106.95,56.321 +262607,108.14,54.449 +262608,109.48,52.52 +262609,104.51,58.166 +262610,105.62,56.348 +262611,106.86,54.478 +262612,108.26,52.55 +262613,103.14,58.191 +262614,104.3,56.376 +262615,105.59,54.508 +262616,107.05,52.582 +262617,101.77,58.214 +262618,102.97,56.402 +262619,104.31,54.538 +262620,105.83,52.616 +262621,100.39,58.235 +262622,101.65,56.429 +262623,103.04,54.569 +262624,104.61,52.651 +262625,99.025,58.255 +262626,100.32,56.454 +262627,101.76,54.6 +262628,103.38,52.688 +262629,97.656,58.274 +262630,98.998,56.479 +262631,100.49,54.631 +262632,102.16,52.726 +262633,96.288,58.291 +262634,97.674,56.504 +262635,99.213,54.664 +262636,100.94,52.765 +262637,94.921,58.307 +262638,96.351,56.528 +262639,97.937,54.696 +262640,99.71,52.806 +262641,93.555,58.322 +262642,95.028,56.552 +262643,96.66,54.729 +262644,98.483,52.849 +262645,92.19,58.335 +262646,93.706,56.575 +262647,95.382,54.763 +262648,97.254,52.893 +262649,90.827,58.347 +262650,92.383,56.598 +262651,94.104,54.797 +262652,96.024,52.938 +262653,89.464,58.357 +262654,91.062,56.621 +262655,92.826,54.832 +262656,94.792,52.985 +262657,88.103,58.366 +262658,89.74,56.642 +262659,91.547,54.867 +262660,93.558,53.034 +262661,86.742,58.374 +262662,88.419,56.664 +262663,90.267,54.902 +262664,92.323,53.084 +262665,85.383,58.38 +262666,87.098,56.685 +262667,88.987,54.938 +262668,91.086,53.135 +262669,84.026,58.385 +262670,85.778,56.705 +262671,87.706,54.974 +262672,89.848,53.187 +262673,82.669,58.388 +262674,84.458,56.725 +262675,86.425,55.011 +262676,88.607,53.242 +262677,81.314,58.391 +262678,83.139,56.745 +262679,85.143,55.048 +262680,87.365,53.297 +262681,79.96,58.392 +262682,81.82,56.764 +262683,83.861,55.086 +262684,86.121,53.354 +262685,78.607,58.392 +262686,80.501,56.783 +262687,82.578,55.124 +262688,84.875,53.412 +262689,77.256,58.39 +262690,79.183,56.801 +262691,81.294,55.163 +262692,83.628,53.471 +262693,75.906,58.388 +262694,77.866,56.819 +262695,80.01,55.202 +262696,82.378,53.532 +262697,74.558,58.384 +262698,76.548,56.836 +262699,78.725,55.241 +262700,81.127,53.594 +262701,73.211,58.378 +262702,75.232,56.853 +262703,77.439,55.281 +262704,79.873,53.657 +262705,71.865,58.372 +262706,73.916,56.87 +262707,76.153,55.321 +262708,78.618,53.722 +262709,70.521,58.365 +262710,72.6,56.886 +262711,74.866,55.362 +262712,77.36,53.787 +262713,69.178,58.356 +262714,71.285,56.902 +262715,73.579,55.403 +262716,76.101,53.854 +262717,67.837,58.346 +262718,69.97,56.917 +262719,72.291,55.444 +262720,74.839,53.922 +262721,66.498,58.336 +262722,68.656,56.932 +262723,71.002,55.486 +262724,73.575,53.992 +262725,65.16,58.324 +262726,67.342,56.947 +262727,69.712,55.528 +262728,72.309,54.062 +262729,63.823,58.311 +262730,66.029,56.961 +262731,68.422,55.57 +262732,71.041,54.133 +262733,62.488,58.297 +262734,64.717,56.975 +262735,67.131,55.613 +262736,69.771,54.206 +262737,61.155,58.282 +262738,63.405,56.989 +262739,65.84,55.656 +262740,68.499,54.28 +262741,59.823,58.265 +262742,62.093,57.002 +262743,64.548,55.699 +262744,67.225,54.354 +262745,58.493,58.248 +262746,60.782,57.015 +262747,63.255,55.743 +262748,65.948,54.43 +262749,57.165,58.23 +262750,59.472,57.027 +262751,61.961,55.787 +262752,64.67,54.506 +262753,55.838,58.212 +262754,58.162,57.04 +262755,60.667,55.832 +262756,63.389,54.584 +262757,54.513,58.192 +262758,56.853,57.051 +262759,59.372,55.876 +262760,62.106,54.662 +262761,53.19,58.171 +262762,55.544,57.063 +262763,58.076,55.921 +262764,60.821,54.741 +262765,51.869,58.15 +262766,54.236,57.074 +262767,56.779,55.966 +262768,59.533,54.821 +262769,50.549,58.127 +262770,52.929,57.086 +262771,55.482,56.012 +262772,58.244,54.902 +262773,49.231,58.104 +262774,51.622,57.096 +262775,54.184,56.058 +262776,56.952,54.984 +262777,47.914,58.08 +262778,50.316,57.107 +262779,52.886,56.103 +262780,55.658,55.066 +262781,46.6,58.055 +262782,49.01,57.117 +262783,51.586,56.15 +262784,54.362,55.149 +262785,45.287,58.03 +262786,47.705,57.127 +262787,50.286,56.196 +262788,53.063,55.233 +262789,43.976,58.004 +262790,46.4,57.137 +262791,48.985,56.243 +262792,51.763,55.317 +262793,42.667,57.977 +262794,45.096,57.147 +262795,47.684,56.29 +262796,50.46,55.402 +262797,41.359,57.95 +262798,43.793,57.156 +262799,46.382,56.337 +262800,49.155,55.488 +262801,40.054,57.922 +262802,42.49,57.165 +262803,45.079,56.384 +262804,47.848,55.574 +262805,38.75,57.893 +262806,41.188,57.174 +262807,43.775,56.431 +262808,46.539,55.661 +262809,37.448,57.864 +262810,39.886,57.183 +262811,42.47,56.479 +262812,45.228,55.748 +262813,36.148,57.834 +262814,38.585,57.191 +262815,41.165,56.526 +262816,43.914,55.836 +262817,34.849,57.804 +262818,37.285,57.2 +262819,39.859,56.574 +262820,42.599,55.924 +262821,33.553,57.774 +262822,35.985,57.208 +262823,38.553,56.622 +262824,41.281,56.012 +262825,32.258,57.743 +262826,34.686,57.216 +262827,37.246,56.67 +262828,39.961,56.101 +262829,30.965,57.711 +262830,33.387,57.224 +262831,35.938,56.718 +262832,38.639,56.19 +262833,29.674,57.68 +262834,32.089,57.232 +262835,34.629,56.767 +262836,37.316,56.28 +262837,28.385,57.648 +262838,30.792,57.24 +262839,33.32,56.815 +262840,35.99,56.37 +262841,27.097,57.615 +262842,29.495,57.248 +262843,32.01,56.863 +262844,34.662,56.46 +262845,25.812,57.582 +262846,28.198,57.255 +262847,30.699,56.912 +262848,33.332,56.55 +262849,24.528,57.55 +262850,26.903,57.263 +262851,29.388,56.96 +262852,32,56.64 +262853,23.246,57.516 +262854,25.608,57.27 +262855,28.075,57.009 +262856,30.666,56.73 +262857,21.966,57.483 +262858,24.313,57.278 +262859,26.763,57.058 +262860,29.331,56.821 +262861,20.687,57.45 +262862,23.019,57.285 +262863,25.449,57.106 +262864,27.993,56.911 +262865,19.411,57.416 +262866,21.726,57.292 +262867,24.135,57.155 +262868,26.654,57.002 +262869,18.136,57.382 +262870,20.433,57.299 +262871,22.82,57.203 +262872,25.313,57.092 +262873,16.863,57.349 +262874,19.14,57.307 +262875,21.505,57.252 +262876,23.97,57.183 +262877,15.592,57.315 +262878,17.849,57.314 +262879,20.189,57.301 +262880,22.625,57.273 +262881,14.322,57.281 +262882,16.558,57.321 +262883,18.872,57.349 +262884,21.278,57.363 +262885,13.055,57.248 +262886,15.267,57.328 +262887,17.555,57.398 +262888,19.93,57.453 +262889,11.789,57.214 +262890,13.977,57.336 +262891,16.237,57.446 +262892,18.58,57.543 +262893,10.524,57.181 +262894,12.687,57.343 +262895,14.919,57.494 +262896,17.228,57.633 +262897,9.2617,57.148 +262898,11.398,57.35 +262899,13.6,57.543 +262900,15.875,57.722 +262901,8.0009,57.114 +262902,10.11,57.358 +262903,12.28,57.591 +262904,14.52,57.812 +262905,6.7417,57.081 +262906,8.8216,57.365 +262907,10.96,57.639 +262908,13.164,57.9 +262909,5.4841,57.049 +262910,7.5341,57.373 +262911,9.6388,57.687 +262912,11.806,57.989 +262913,4.2282,57.016 +262914,6.247,57.381 +262915,8.3174,57.735 +262916,10.446,58.077 +262917,2.974,56.984 +262918,4.9605,57.388 +262919,6.9955,57.783 +262920,9.0852,58.165 +262921,1.7213,56.953 +262922,3.6744,57.396 +262923,5.673,57.83 +262924,7.7228,58.252 +262925,0.47019,56.921 +262926,2.3888,57.404 +262927,4.35,57.877 +262928,6.359,58.339 +262929,359.22,56.89 +262930,1.1037,57.412 +262931,3.0264,57.925 +262932,4.9938,58.425 +262933,357.97,56.86 +262934,359.82,57.421 +262935,1.7024,57.972 +262936,3.6273,58.511 +262937,356.73,56.83 +262938,358.53,57.429 +262939,0.37782,58.019 +262940,2.2596,58.596 +262941,355.48,56.8 +262942,357.25,57.438 +262943,359.05,58.065 +262944,0.89052,58.681 +262945,354.24,56.771 +262946,355.97,57.447 +262947,357.73,58.112 +262948,359.52,58.765 +262949,353,56.742 +262950,354.68,57.456 +262951,356.4,58.158 +262952,358.15,58.848 +262953,351.75,56.714 +262954,353.4,57.465 +262955,355.07,58.204 +262956,356.78,58.93 +262957,350.52,56.687 +262958,352.12,57.474 +262959,353.75,58.25 +262960,355.4,59.012 +262961,349.28,56.66 +262962,350.84,57.484 +262963,352.42,58.295 +262964,354.03,59.094 +262965,348.04,56.634 +262966,349.56,57.494 +262967,351.09,58.341 +262968,352.65,59.174 +262969,346.81,56.609 +262970,348.28,57.504 +262971,349.76,58.386 +262972,351.28,59.254 +262973,345.57,56.584 +262974,346.99,57.514 +262975,348.44,58.43 +262976,349.9,59.333 +262977,344.34,56.561 +262978,345.71,57.524 +262979,347.11,58.475 +262980,348.52,59.411 +262981,343.11,56.538 +262982,344.43,57.535 +262983,345.78,58.519 +262984,347.14,59.488 +262985,341.88,56.515 +262986,343.15,57.546 +262987,344.45,58.563 +262988,345.76,59.564 +262989,340.65,56.494 +262990,341.88,57.558 +262991,343.12,58.607 +262992,344.38,59.639 +262993,339.42,56.473 +262994,340.6,57.569 +262995,341.79,58.65 +262996,343,59.714 +262997,338.19,56.454 +262998,339.32,57.581 +262999,340.46,58.693 +263000,341.61,59.787 +263001,336.96,56.435 +263002,338.04,57.593 +263003,339.13,58.735 +263004,340.23,59.86 +263005,335.74,56.417 +263006,336.76,57.606 +263007,337.8,58.778 +263008,338.85,59.931 +263009,334.51,56.4 +263010,335.48,57.619 +263011,336.46,58.82 +263012,337.46,60.002 +263013,333.29,56.384 +263014,334.2,57.632 +263015,335.13,58.861 +263016,336.08,60.071 +263017,332.07,56.37 +263018,332.93,57.645 +263019,333.8,58.902 +263020,334.69,60.139 +263021,330.85,56.356 +263022,331.65,57.659 +263023,332.47,58.943 +263024,333.3,60.207 +263025,329.62,56.343 +263026,330.37,57.673 +263027,331.14,58.984 +263028,331.92,60.273 +263029,328.4,56.331 +263030,329.09,57.688 +263031,329.8,59.024 +263032,330.53,60.338 +263033,327.18,56.321 +263034,327.82,57.703 +263035,328.47,59.063 +263036,329.14,60.402 +263037,325.96,56.311 +263038,326.54,57.718 +263039,327.14,59.103 +263040,327.75,60.465 +263041,324.75,56.303 +263042,325.26,57.734 +263043,325.8,59.142 +263044,326.37,60.526 +263045,323.53,56.296 +263046,323.99,57.75 +263047,324.47,59.18 +263048,324.98,60.587 +263049,322.31,56.29 +263050,322.71,57.766 +263051,323.14,59.218 +263052,323.59,60.646 +263053,321.09,56.285 +263054,321.43,57.783 +263055,321.8,59.256 +263056,322.2,60.704 +263057,319.87,56.281 +263058,320.16,57.8 +263059,320.47,59.293 +263060,320.81,60.761 +263061,318.66,56.279 +263062,318.88,57.817 +263063,319.14,59.33 +263064,319.42,60.816 +263065,317.44,56.278 +263066,317.6,57.835 +263067,317.8,59.366 +263068,318.03,60.871 +263069,316.23,56.278 +263070,316.33,57.854 +263071,316.47,59.402 +263072,316.64,60.924 +263073,315.01,56.279 +263074,315.05,57.873 +263075,315.13,59.438 +263076,315.26,60.975 +263077,313.79,56.282 +263078,313.78,57.892 +263079,313.8,59.473 +263080,313.87,61.026 +263081,312.58,56.286 +263082,312.5,57.911 +263083,312.47,59.508 +263084,312.48,61.075 +263085,311.36,56.291 +263086,311.22,57.931 +263087,311.13,59.542 +263088,311.09,61.123 +263089,310.15,56.298 +263090,309.95,57.952 +263091,309.8,59.576 +263092,309.7,61.17 +263093,308.93,56.306 +263094,308.67,57.973 +263095,308.46,59.609 +263096,308.31,61.215 +263097,307.72,56.315 +263098,307.39,57.994 +263099,307.13,59.642 +263100,306.92,61.259 +263101,306.5,56.325 +263102,306.12,58.016 +263103,305.8,59.674 +263104,305.53,61.301 +263105,305.28,56.337 +263106,304.84,58.038 +263107,304.46,59.706 +263108,304.15,61.343 +263109,304.07,56.351 +263110,303.56,58.061 +263111,303.13,59.738 +263112,302.76,61.382 +263113,302.85,56.365 +263114,302.28,58.084 +263115,301.79,59.769 +263116,301.37,61.421 +263117,301.63,56.382 +263118,301.01,58.107 +263119,300.46,59.799 +263120,299.98,61.458 +263121,300.41,56.399 +263122,299.73,58.131 +263123,299.13,59.829 +263124,298.6,61.494 +263125,299.2,56.418 +263126,298.45,58.156 +263127,297.79,59.859 +263128,297.21,61.528 +263129,297.98,56.438 +263130,297.17,58.181 +263131,296.46,59.888 +263132,295.83,61.562 +263133,296.76,56.46 +263134,295.9,58.206 +263135,295.13,59.917 +263136,294.44,61.593 +263137,295.54,56.483 +263138,294.62,58.232 +263139,293.79,59.945 +263140,293.06,61.624 +263141,294.32,56.507 +263142,293.34,58.258 +263143,292.46,59.973 +263144,291.68,61.653 +263145,293.1,56.533 +263146,292.06,58.285 +263147,291.13,60 +263148,290.29,61.68 +263149,291.87,56.56 +263150,290.78,58.312 +263151,289.8,60.027 +263152,288.91,61.707 +263153,290.65,56.589 +263154,289.5,58.339 +263155,288.47,60.053 +263156,287.53,61.732 +263157,289.43,56.619 +263158,288.22,58.367 +263159,287.13,60.079 +263160,286.15,61.755 +263161,288.2,56.65 +263162,286.94,58.396 +263163,285.8,60.104 +263164,284.77,61.777 +263165,286.98,56.683 +263166,285.66,58.425 +263167,284.47,60.129 +263168,283.39,61.798 +263169,285.75,56.717 +263170,284.38,58.454 +263171,283.14,60.154 +263172,282.01,61.818 +263173,284.52,56.753 +263174,283.1,58.484 +263175,281.81,60.178 +263176,280.63,61.836 +263177,283.29,56.79 +263178,281.82,58.514 +263179,280.48,60.201 +263180,279.26,61.853 +263181,282.06,56.828 +263182,280.53,58.545 +263183,279.15,60.224 +263184,277.88,61.868 +263185,280.83,56.868 +263186,279.25,58.576 +263187,277.82,60.247 +263188,276.51,61.882 +263189,279.6,56.909 +263190,277.97,58.607 +263191,276.49,60.269 +263192,275.13,61.895 +263193,278.36,56.951 +263194,276.69,58.639 +263195,275.16,60.291 +263196,273.76,61.907 +263197,277.13,56.995 +263198,275.4,58.672 +263199,273.83,60.312 +263200,272.39,61.917 +263201,275.89,57.04 +263202,274.12,58.704 +263203,272.5,60.333 +263204,271.02,61.926 +263205,274.65,57.086 +263206,272.83,58.738 +263207,271.17,60.353 +263208,269.65,61.934 +263209,273.41,57.134 +263210,271.55,58.771 +263211,269.84,60.373 +263212,268.28,61.94 +263213,272.17,57.183 +263214,270.26,58.805 +263215,268.52,60.393 +263216,266.91,61.946 +263217,270.93,57.233 +263218,268.98,58.84 +263219,267.19,60.412 +263220,265.55,61.95 +263221,269.69,57.284 +263222,267.69,58.875 +263223,265.86,60.43 +263224,264.18,61.952 +263225,268.44,57.337 +263226,266.4,58.91 +263227,264.54,60.448 +263228,262.82,61.954 +263229,267.19,57.391 +263230,265.11,58.946 +263231,263.21,60.466 +263232,261.46,61.954 +263233,265.95,57.446 +263234,263.83,58.982 +263235,261.89,60.484 +263236,260.1,61.954 +263237,264.69,57.502 +263238,262.54,59.018 +263239,260.56,60.501 +263240,258.74,61.951 +263241,263.44,57.559 +263242,261.25,59.055 +263243,259.24,60.517 +263244,257.38,61.948 +263245,262.19,57.618 +263246,259.96,59.092 +263247,257.91,60.533 +263248,256.02,61.944 +263249,260.93,57.678 +263250,258.67,59.13 +263251,256.59,60.549 +263252,254.67,61.939 +263253,259.67,57.738 +263254,257.38,59.167 +263255,255.27,60.565 +263256,253.31,61.932 +263257,258.41,57.8 +263258,256.09,59.206 +263259,253.94,60.58 +263260,251.96,61.925 +263261,257.15,57.863 +263262,254.79,59.244 +263263,252.62,60.594 +263264,250.61,61.916 +263265,255.89,57.927 +263266,253.5,59.283 +263267,251.3,60.609 +263268,249.26,61.906 +263269,254.62,57.992 +263270,252.21,59.322 +263271,249.98,60.623 +263272,247.91,61.895 +263273,253.36,58.059 +263274,250.91,59.362 +263275,248.66,60.636 +263276,246.56,61.884 +263277,252.09,58.126 +263278,249.62,59.402 +263279,247.34,60.65 +263280,245.22,61.871 +263281,250.82,58.194 +263282,248.32,59.442 +263283,246.02,60.663 +263284,243.87,61.857 +263285,249.54,58.263 +263286,247.03,59.483 +263287,244.7,60.675 +263288,242.53,61.843 +263289,248.27,58.332 +263290,245.73,59.523 +263291,243.38,60.688 +263292,241.19,61.827 +263293,246.99,58.403 +263294,244.43,59.564 +263295,242.06,60.7 +263296,239.85,61.811 +263297,245.71,58.475 +263298,243.13,59.606 +263299,240.75,60.711 +263300,238.52,61.793 +263301,244.43,58.547 +263302,241.84,59.647 +263303,239.43,60.723 +263304,237.18,61.775 +263305,243.15,58.62 +263306,240.54,59.689 +263307,238.11,60.734 +263308,235.85,61.756 +263309,241.86,58.694 +263310,239.24,59.731 +263311,236.8,60.745 +263312,234.51,61.736 +263313,240.57,58.769 +263314,237.94,59.774 +263315,235.48,60.755 +263316,233.18,61.716 +263317,239.28,58.845 +263318,236.63,59.816 +263319,234.17,60.765 +263320,231.85,61.694 +263321,237.99,58.921 +263322,235.33,59.859 +263323,232.85,60.775 +263324,230.53,61.672 +263325,236.7,58.998 +263326,234.03,59.902 +263327,231.54,60.785 +263328,229.2,61.649 +263329,235.4,59.075 +263330,232.73,59.945 +263331,230.23,60.795 +263332,227.88,61.626 +263333,234.11,59.153 +263334,231.42,59.989 +263335,228.91,60.804 +263336,226.56,61.602 +263337,232.8,59.232 +263338,230.12,60.032 +263339,227.6,60.813 +263340,225.24,61.577 +263341,231.5,59.311 +263342,228.81,60.076 +263343,226.29,60.822 +263344,223.92,61.551 +263345,230.2,59.391 +263346,227.51,60.12 +263347,224.98,60.831 +263348,222.6,61.526 +263349,228.89,59.471 +263350,226.2,60.164 +263351,223.67,60.839 +263352,221.29,61.499 +263353,227.58,59.552 +263354,224.89,60.208 +263355,222.36,60.848 +263356,219.97,61.472 +263357,226.27,59.633 +263358,223.58,60.253 +263359,221.05,60.856 +263360,218.66,61.445 +263361,224.96,59.715 +263362,222.27,60.297 +263363,219.75,60.864 +263364,217.35,61.417 +263365,223.65,59.797 +263366,220.96,60.342 +263367,218.44,60.872 +263368,216.04,61.388 +263369,222.33,59.879 +263370,219.65,60.387 +263371,217.13,60.879 +263372,214.74,61.359 +263373,221.01,59.962 +263374,218.34,60.431 +263375,215.82,60.887 +263376,213.43,61.33 +263377,219.69,60.045 +263378,217.03,60.476 +263379,214.52,60.894 +263380,212.13,61.301 +263381,218.37,60.128 +263382,215.72,60.521 +263383,213.21,60.902 +263384,210.83,61.271 +263385,217.04,60.211 +263386,214.41,60.566 +263387,211.91,60.909 +263388,209.53,61.241 +263389,215.71,60.294 +263390,213.09,60.612 +263391,210.61,60.916 +263392,208.23,61.21 +263393,214.39,60.378 +263394,211.78,60.657 +263395,209.3,60.923 +263396,206.94,61.18 +263397,213.05,60.462 +263398,210.46,60.702 +263399,208,60.93 +263400,205.65,61.149 +263401,211.72,60.546 +263402,209.15,60.747 +263403,206.7,60.937 +263404,204.35,61.118 +263405,210.39,60.63 +263406,207.83,60.792 +263407,205.4,60.944 +263408,203.06,61.087 +263409,209.05,60.714 +263410,206.51,60.838 +263411,204.09,60.951 +263412,201.78,61.056 +263413,207.71,60.798 +263414,205.2,60.883 +263415,202.79,60.958 +263416,200.49,61.024 +263417,206.37,60.881 +263418,203.88,60.928 +263419,201.49,60.965 +263420,199.2,60.993 +263421,205.03,60.965 +263422,202.56,60.973 +263423,200.19,60.971 +263424,197.92,60.962 +263425,203.69,61.049 +263426,201.24,61.018 +263427,198.9,60.978 +263428,196.64,60.93 +263429,202.34,61.133 +263430,199.92,61.064 +263431,197.6,60.985 +263432,195.36,60.899 +263433,200.99,61.216 +263434,198.6,61.109 +263435,196.3,60.992 +263436,194.08,60.868 +263437,199.64,61.299 +263438,197.28,61.154 +263439,195,60.999 +263440,192.81,60.837 +263441,198.29,61.382 +263442,195.96,61.199 +263443,193.71,61.006 +263444,191.53,60.806 +263445,196.94,61.465 +263446,194.63,61.243 +263447,192.41,61.013 +263448,190.26,60.775 +263449,195.59,61.548 +263450,193.31,61.288 +263451,191.11,61.02 +263452,188.99,60.744 +263453,194.23,61.63 +263454,191.99,61.333 +263455,189.82,61.027 +263456,187.72,60.714 +263457,192.87,61.712 +263458,190.66,61.377 +263459,188.53,61.034 +263460,186.45,60.684 +263461,191.51,61.793 +263462,189.34,61.422 +263463,187.23,61.041 +263464,185.19,60.654 +263465,190.15,61.874 +263466,188.01,61.466 +263467,185.94,61.048 +263468,183.92,60.624 +263469,188.79,61.955 +263470,186.69,61.51 +263471,184.65,61.056 +263472,182.66,60.595 +263473,187.43,62.035 +263474,185.36,61.554 +263475,183.35,61.064 +263476,181.4,60.566 +263477,186.06,62.115 +263478,184.03,61.598 +263479,182.06,61.071 +263480,180.14,60.538 +263481,184.7,62.194 +263482,182.71,61.641 +263483,180.77,61.079 +263484,178.88,60.51 +263485,183.33,62.273 +263486,181.38,61.684 +263487,179.48,61.087 +263488,177.63,60.482 +263489,181.96,62.351 +263490,180.05,61.728 +263491,178.19,61.095 +263492,176.37,60.455 +263493,180.59,62.428 +263494,178.72,61.771 +263495,176.9,61.104 +263496,175.12,60.429 +263497,179.22,62.505 +263498,177.39,61.813 +263499,175.61,61.112 +263500,173.86,60.403 +263501,177.84,62.581 +263502,176.06,61.856 +263503,174.32,61.121 +263504,172.61,60.378 +263505,176.47,62.657 +263506,174.73,61.898 +263507,173.03,61.13 +263508,171.36,60.353 +263509,175.09,62.731 +263510,173.4,61.94 +263511,171.74,61.139 +263512,170.12,60.329 +263513,173.72,62.806 +263514,172.07,61.982 +263515,170.45,61.148 +263516,168.87,60.305 +263517,172.34,62.879 +263518,170.74,62.024 +263519,169.17,61.158 +263520,167.62,60.282 +263521,170.96,62.952 +263522,169.4,62.065 +263523,167.88,61.168 +263524,166.38,60.26 +263525,169.58,63.023 +263526,168.07,62.106 +263527,166.59,61.178 +263528,165.14,60.239 +263529,168.2,63.094 +263530,166.74,62.147 +263531,165.31,61.188 +263532,163.9,60.218 +263533,166.82,63.164 +263534,165.41,62.188 +263535,164.02,61.198 +263536,162.66,60.198 +263537,165.44,63.234 +263538,164.07,62.228 +263539,162.73,61.209 +263540,161.42,60.179 +263541,164.05,63.302 +263542,162.74,62.268 +263543,161.45,61.22 +263544,160.18,60.161 +263545,162.67,63.37 +263546,161.4,62.307 +263547,160.16,61.231 +263548,158.94,60.144 +263549,161.29,63.436 +263550,160.07,62.346 +263551,158.88,61.243 +263552,157.7,60.127 +263553,159.9,63.502 +263554,158.74,62.385 +263555,157.59,61.255 +263556,156.47,60.112 +263557,158.51,63.566 +263558,157.4,62.424 +263559,156.31,61.267 +263560,155.24,60.097 +263561,157.13,63.63 +263562,156.07,62.462 +263563,155.02,61.28 +263564,154,60.084 +263565,155.74,63.692 +263566,154.73,62.5 +263567,153.74,61.292 +263568,152.77,60.071 +263569,154.35,63.754 +263570,153.39,62.538 +263571,152.46,61.306 +263572,151.54,60.059 +263573,152.96,63.815 +263574,152.06,62.575 +263575,151.17,61.319 +263576,150.31,60.048 +263577,151.57,63.874 +263578,150.72,62.612 +263579,149.89,61.333 +263580,149.08,60.039 +263581,150.18,63.933 +263582,149.38,62.648 +263583,148.61,61.347 +263584,147.85,60.03 +263585,148.79,63.99 +263586,148.05,62.684 +263587,147.32,61.361 +263588,146.62,60.023 +263589,147.4,64.046 +263590,146.71,62.72 +263591,146.04,61.376 +263592,145.39,60.016 +263593,146.01,64.101 +263594,145.37,62.755 +263595,144.76,61.391 +263596,144.16,60.011 +263597,144.62,64.155 +263598,144.04,62.79 +263599,143.48,61.407 +263600,142.94,60.006 +263601,143.23,64.208 +263602,142.7,62.825 +263603,142.19,61.423 +263604,141.71,60.003 +263605,141.84,64.26 +263606,141.36,62.859 +263607,140.91,61.439 +263608,140.49,60.001 +263609,140.45,64.31 +263610,140.02,62.893 +263611,139.63,61.456 +263612,139.26,60.001 +263613,139.05,64.359 +263614,138.69,62.926 +263615,138.35,61.473 +263616,138.04,60.001 +263617,137.66,64.407 +263618,137.35,62.959 +263619,137.06,61.49 +263620,136.81,60.002 +263621,136.27,64.454 +263622,136.01,62.992 +263623,135.78,61.508 +263624,135.59,60.005 +263625,134.88,64.5 +263626,134.67,63.024 +263627,134.5,61.526 +263628,134.36,60.009 +263629,133.48,64.544 +263630,133.33,63.055 +263631,133.22,61.545 +263632,133.14,60.014 +263633,132.09,64.587 +263634,132,63.087 +263635,131.94,61.564 +263636,131.92,60.021 +263637,130.7,64.629 +263638,130.66,63.117 +263639,130.65,61.583 +263640,130.69,60.028 +263641,129.31,64.67 +263642,129.32,63.148 +263643,129.37,61.603 +263644,129.47,60.037 +263645,127.92,64.71 +263646,127.98,63.178 +263647,128.09,61.623 +263648,128.24,60.047 +263649,126.52,64.748 +263650,126.64,63.207 +263651,126.81,61.644 +263652,127.02,60.059 +263653,125.13,64.785 +263654,125.31,63.236 +263655,125.53,61.665 +263656,125.8,60.072 +263657,123.74,64.82 +263658,123.97,63.265 +263659,124.24,61.686 +263660,124.57,60.086 +263661,122.35,64.855 +263662,122.63,63.293 +263663,122.96,61.708 +263664,123.35,60.101 +263665,120.96,64.888 +263666,121.29,63.321 +263667,121.68,61.731 +263668,122.13,60.117 +263669,119.57,64.919 +263670,119.95,63.348 +263671,120.4,61.753 +263672,120.9,60.135 +263673,118.18,64.95 +263674,118.62,63.375 +263675,119.11,61.776 +263676,119.68,60.155 +263677,116.79,64.979 +263678,117.28,63.401 +263679,117.83,61.8 +263680,118.45,60.175 +263681,115.4,65.007 +263682,115.94,63.427 +263683,116.55,61.824 +263684,117.22,60.197 +263685,114.01,65.034 +263686,114.6,63.453 +263687,115.27,61.848 +263688,116,60.22 +263689,112.62,65.059 +263690,113.27,63.478 +263691,113.98,61.873 +263692,114.77,60.244 +263693,111.23,65.083 +263694,111.93,63.503 +263695,112.7,61.898 +263696,113.54,60.27 +263697,109.85,65.106 +263698,110.59,63.527 +263699,111.41,61.924 +263700,112.32,60.297 +263701,108.46,65.127 +263702,109.26,63.551 +263703,110.13,61.95 +263704,111.09,60.325 +263705,107.08,65.147 +263706,107.92,63.574 +263707,108.85,61.976 +263708,109.86,60.355 +263709,105.69,65.166 +263710,106.58,63.597 +263711,107.56,62.003 +263712,108.63,60.386 +263713,104.31,65.184 +263714,105.25,63.619 +263715,106.28,62.031 +263716,107.4,60.418 +263717,102.92,65.2 +263718,103.91,63.641 +263719,104.99,62.058 +263720,106.17,60.452 +263721,101.54,65.215 +263722,102.58,63.663 +263723,103.71,62.086 +263724,104.93,60.486 +263725,100.16,65.229 +263726,101.24,63.684 +263727,102.42,62.115 +263728,103.7,60.522 +263729,98.777,65.242 +263730,99.908,63.705 +263731,101.13,62.144 +263732,102.47,60.56 +263733,97.397,65.253 +263734,98.573,63.725 +263735,99.847,62.173 +263736,101.23,60.598 +263737,96.018,65.263 +263738,97.239,63.745 +263739,98.56,62.203 +263740,99.994,60.638 +263741,94.639,65.272 +263742,95.905,63.764 +263743,97.272,62.233 +263744,98.756,60.679 +263745,93.262,65.28 +263746,94.571,63.783 +263747,95.985,62.264 +263748,97.517,60.722 +263749,91.886,65.286 +263750,93.238,63.802 +263751,94.697,62.295 +263752,96.277,60.765 +263753,90.511,65.292 +263754,91.905,63.82 +263755,93.408,62.326 +263756,95.036,60.81 +263757,89.137,65.296 +263758,90.573,63.838 +263759,92.119,62.358 +263760,93.793,60.856 +263761,87.764,65.299 +263762,89.24,63.855 +263763,90.83,62.39 +263764,92.55,60.903 +263765,86.392,65.3 +263766,87.908,63.872 +263767,89.54,62.422 +263768,91.304,60.951 +263769,85.021,65.301 +263770,86.577,63.889 +263771,88.25,62.455 +263772,90.058,61.001 +263773,83.652,65.3 +263774,85.246,63.905 +263775,86.959,62.488 +263776,88.81,61.051 +263777,82.283,65.299 +263778,83.915,63.921 +263779,85.668,62.522 +263780,87.56,61.103 +263781,80.916,65.296 +263782,82.585,63.936 +263783,84.376,62.556 +263784,86.309,61.156 +263785,79.551,65.292 +263786,81.255,63.951 +263787,83.084,62.59 +263788,85.057,61.21 +263789,78.186,65.287 +263790,79.926,63.966 +263791,81.791,62.625 +263792,83.803,61.265 +263793,76.823,65.281 +263794,78.597,63.98 +263795,80.498,62.66 +263796,82.547,61.321 +263797,75.461,65.274 +263798,77.268,63.994 +263799,79.204,62.695 +263800,81.29,61.378 +263801,74.1,65.266 +263802,75.94,64.007 +263803,77.91,62.731 +263804,80.031,61.436 +263805,72.741,65.257 +263806,74.613,64.021 +263807,76.615,62.767 +263808,78.77,61.495 +263809,71.384,65.247 +263810,73.286,64.033 +263811,75.32,62.803 +263812,77.508,61.555 +263813,70.027,65.236 +263814,71.959,64.046 +263815,74.024,62.839 +263816,76.244,61.616 +263817,68.672,65.224 +263818,70.633,64.058 +263819,72.727,62.876 +263820,74.978,61.678 +263821,67.319,65.211 +263822,69.307,64.07 +263823,71.43,62.913 +263824,73.711,61.741 +263825,65.967,65.197 +263826,67.982,64.082 +263827,70.133,62.951 +263828,72.441,61.805 +263829,64.617,65.182 +263830,66.657,64.093 +263831,68.834,62.989 +263832,71.17,61.869 +263833,63.268,65.166 +263834,65.333,64.104 +263835,67.536,63.027 +263836,69.897,61.935 +263837,61.92,65.15 +263838,64.01,64.114 +263839,66.236,63.065 +263840,68.622,62.001 +263841,60.574,65.133 +263842,62.687,64.125 +263843,64.936,63.103 +263844,67.345,62.068 +263845,59.23,65.114 +263846,61.364,64.135 +263847,63.635,63.142 +263848,66.067,62.136 +263849,57.888,65.096 +263850,60.042,64.145 +263851,62.334,63.181 +263852,64.786,62.205 +263853,56.546,65.076 +263854,58.721,64.154 +263855,61.032,63.221 +263856,63.504,62.275 +263857,55.207,65.055 +263858,57.4,64.164 +263859,59.73,63.26 +263860,62.219,62.345 +263861,53.869,65.034 +263862,56.08,64.173 +263863,58.426,63.3 +263864,60.933,62.416 +263865,52.533,65.012 +263866,54.76,64.181 +263867,57.123,63.34 +263868,59.644,62.487 +263869,51.199,64.99 +263870,53.441,64.19 +263871,55.818,63.38 +263872,58.354,62.559 +263873,49.866,64.967 +263874,52.122,64.198 +263875,54.513,63.42 +263876,57.061,62.632 +263877,48.535,64.943 +263878,50.804,64.207 +263879,53.207,63.461 +263880,55.767,62.705 +263881,47.205,64.919 +263882,49.487,64.214 +263883,51.901,63.501 +263884,54.471,62.779 +263885,45.877,64.894 +263886,48.17,64.222 +263887,50.594,63.542 +263888,53.172,62.853 +263889,44.551,64.868 +263890,46.853,64.23 +263891,49.286,63.583 +263892,51.872,62.928 +263893,43.227,64.842 +263894,45.538,64.237 +263895,47.978,63.624 +263896,50.569,63.003 +263897,41.905,64.816 +263898,44.222,64.244 +263899,46.669,63.666 +263900,49.265,63.079 +263901,40.584,64.789 +263902,42.908,64.251 +263903,45.359,63.707 +263904,47.959,63.155 +263905,39.265,64.762 +263906,41.594,64.258 +263907,44.049,63.748 +263908,46.65,63.232 +263909,37.947,64.734 +263910,40.28,64.265 +263911,42.738,63.79 +263912,45.34,63.308 +263913,36.632,64.706 +263914,38.968,64.272 +263915,41.426,63.832 +263916,44.027,63.386 +263917,35.318,64.677 +263918,37.655,64.278 +263919,40.114,63.874 +263920,42.713,63.463 +263921,34.006,64.649 +263922,36.344,64.285 +263923,38.801,63.916 +263924,41.396,63.541 +263925,32.695,64.619 +263926,35.033,64.291 +263927,37.487,63.958 +263928,40.078,63.619 +263929,31.387,64.59 +263930,33.722,64.297 +263931,36.173,64 +263932,38.757,63.697 +263933,30.08,64.56 +263934,32.412,64.303 +263935,34.858,64.042 +263936,37.435,63.775 +263937,28.775,64.531 +263938,31.103,64.309 +263939,33.542,64.084 +263940,36.111,63.854 +263941,27.472,64.501 +263942,29.794,64.315 +263943,32.226,64.126 +263944,34.784,63.932 +263945,26.17,64.471 +263946,28.486,64.321 +263947,30.909,64.168 +263948,33.456,64.011 +263949,24.87,64.44 +263950,27.179,64.327 +263951,29.592,64.21 +263952,32.126,64.089 +263953,23.572,64.41 +263954,25.872,64.333 +263955,28.273,64.253 +263956,30.794,64.168 +263957,22.276,64.38 +263958,24.566,64.339 +263959,26.955,64.295 +263960,29.46,64.247 +263961,20.982,64.349 +263962,23.26,64.345 +263963,25.635,64.337 +263964,28.124,64.326 +263965,19.689,64.319 +263966,21.955,64.35 +263967,24.315,64.379 +263968,26.786,64.404 +263969,18.398,64.288 +263970,20.65,64.356 +263971,22.995,64.421 +263972,25.447,64.483 +263973,17.108,64.258 +263974,19.346,64.362 +263975,21.673,64.463 +263976,24.105,64.561 +263977,15.821,64.228 +263978,18.042,64.368 +263979,20.351,64.505 +263980,22.762,64.639 +263981,14.535,64.197 +263982,16.739,64.374 +263983,19.029,64.547 +263984,21.417,64.717 +263985,13.251,64.167 +263986,15.437,64.38 +263987,17.706,64.589 +263988,20.07,64.795 +263989,11.968,64.137 +263990,14.135,64.386 +263991,16.382,64.631 +263992,18.722,64.873 +263993,10.687,64.108 +263994,12.834,64.392 +263995,15.058,64.673 +263996,17.372,64.95 +263997,9.4082,64.078 +263998,11.533,64.398 +263999,13.733,64.714 +264000,16.02,65.027 +264001,8.1306,64.049 +264002,10.233,64.404 +264003,12.408,64.756 +264004,14.666,65.104 +264005,6.8547,64.02 +264006,8.9331,64.41 +264007,11.082,64.797 +264008,13.311,65.18 +264009,5.5804,63.992 +264010,7.6339,64.416 +264011,9.755,64.839 +264012,11.954,65.256 +264013,4.3078,63.963 +264014,6.3352,64.423 +264015,8.4279,64.88 +264016,10.596,65.332 +264017,3.0367,63.935 +264018,5.037,64.43 +264019,7.1003,64.921 +264020,9.236,65.407 +264021,1.7671,63.908 +264022,3.7393,64.436 +264023,5.7721,64.961 +264024,7.8745,65.482 +264025,0.49917,63.881 +264026,2.4421,64.443 +264027,4.4434,65.002 +264028,6.5116,65.556 +264029,359.23,63.854 +264030,1.1454,64.45 +264031,3.1142,65.042 +264032,5.1472,65.63 +264033,357.97,63.828 +264034,359.85,64.457 +264035,1.7844,65.083 +264036,3.7813,65.703 +264037,356.7,63.803 +264038,358.55,64.465 +264039,0.45421,65.123 +264040,2.4141,65.775 +264041,355.44,63.777 +264042,357.26,64.472 +264043,359.12,65.163 +264044,1.0455,65.847 +264045,354.18,63.753 +264046,355.96,64.48 +264047,357.79,65.202 +264048,359.68,65.919 +264049,352.92,63.729 +264050,354.67,64.488 +264051,356.46,65.242 +264052,358.3,65.99 +264053,351.66,63.706 +264054,353.37,64.496 +264055,355.13,65.281 +264056,356.93,66.06 +264057,350.41,63.683 +264058,352.08,64.504 +264059,353.8,65.32 +264060,355.56,66.129 +264061,349.15,63.661 +264062,350.79,64.513 +264063,352.46,65.359 +264064,354.18,66.198 +264065,347.9,63.64 +264066,349.5,64.521 +264067,351.13,65.397 +264068,352.81,66.266 +264069,346.65,63.619 +264070,348.2,64.53 +264071,349.8,65.435 +264072,351.43,66.333 +264073,345.4,63.599 +264074,346.91,64.539 +264075,348.46,65.473 +264076,350.05,66.399 +264077,344.15,63.58 +264078,345.62,64.549 +264079,347.13,65.511 +264080,348.67,66.465 +264081,342.9,63.562 +264082,344.33,64.559 +264083,345.79,65.548 +264084,347.29,66.53 +264085,341.65,63.544 +264086,343.04,64.569 +264087,344.46,65.586 +264088,345.91,66.594 +264089,340.4,63.527 +264090,341.75,64.579 +264091,343.12,65.622 +264092,344.53,66.657 +264093,339.16,63.512 +264094,340.46,64.589 +264095,341.78,65.659 +264096,343.14,66.719 +264097,337.91,63.497 +264098,339.17,64.6 +264099,340.45,65.695 +264100,341.76,66.78 +264101,336.67,63.482 +264102,337.88,64.611 +264103,339.11,65.731 +264104,340.37,66.841 +264105,335.43,63.469 +264106,336.59,64.623 +264107,337.77,65.767 +264108,338.99,66.9 +264109,334.19,63.457 +264110,335.3,64.634 +264111,336.44,65.802 +264112,337.6,66.958 +264113,332.95,63.446 +264114,334.01,64.646 +264115,335.1,65.837 +264116,336.22,67.016 +264117,331.71,63.435 +264118,332.72,64.658 +264119,333.76,65.871 +264120,334.83,67.072 +264121,330.47,63.426 +264122,331.43,64.671 +264123,332.42,65.906 +264124,333.44,67.128 +264125,329.23,63.418 +264126,330.15,64.684 +264127,331.08,65.939 +264128,332.05,67.182 +264129,327.99,63.41 +264130,328.86,64.697 +264131,329.75,65.973 +264132,330.66,67.236 +264133,326.76,63.404 +264134,327.57,64.711 +264135,328.41,66.006 +264136,329.27,67.288 +264137,325.52,63.399 +264138,326.28,64.725 +264139,327.07,66.039 +264140,327.88,67.339 +264141,324.29,63.395 +264142,325,64.739 +264143,325.73,66.071 +264144,326.49,67.39 +264145,323.05,63.392 +264146,323.71,64.754 +264147,324.39,66.103 +264148,325.09,67.439 +264149,321.82,63.39 +264150,322.42,64.769 +264151,323.05,66.135 +264152,323.7,67.487 +264153,320.59,63.389 +264154,321.14,64.784 +264155,321.71,66.166 +264156,322.31,67.534 +264157,319.35,63.39 +264158,319.85,64.8 +264159,320.37,66.197 +264160,320.92,67.579 +264161,318.12,63.391 +264162,318.56,64.816 +264163,319.03,66.228 +264164,319.52,67.624 +264165,316.89,63.394 +264166,317.28,64.833 +264167,317.69,66.258 +264168,318.13,67.668 +264169,315.66,63.397 +264170,315.99,64.85 +264171,316.35,66.287 +264172,316.74,67.71 +264173,314.43,63.402 +264174,314.7,64.867 +264175,315.01,66.317 +264176,315.34,67.751 +264177,313.2,63.409 +264178,313.42,64.884 +264179,313.67,66.346 +264180,313.95,67.791 +264181,311.97,63.416 +264182,312.13,64.902 +264183,312.33,66.374 +264184,312.56,67.83 +264185,310.74,63.424 +264186,310.85,64.921 +264187,310.99,66.402 +264188,311.16,67.867 +264189,309.51,63.434 +264190,309.56,64.94 +264191,309.65,66.43 +264192,309.77,67.904 +264193,308.28,63.445 +264194,308.27,64.959 +264195,308.31,66.457 +264196,308.37,67.939 +264197,307.05,63.457 +264198,306.99,64.979 +264199,306.97,66.484 +264200,306.98,67.973 +264201,305.82,63.471 +264202,305.7,64.999 +264203,305.63,66.51 +264204,305.59,68.005 +264205,304.59,63.486 +264206,304.42,65.019 +264207,304.28,66.536 +264208,304.19,68.037 +264209,303.36,63.502 +264210,303.13,65.04 +264211,302.94,66.562 +264212,302.8,68.067 +264213,302.13,63.519 +264214,301.84,65.061 +264215,301.6,66.587 +264216,301.41,68.096 +264217,300.9,63.537 +264218,300.56,65.083 +264219,300.26,66.612 +264220,300.01,68.124 +264221,299.67,63.557 +264222,299.27,65.105 +264223,298.92,66.636 +264224,298.62,68.151 +264225,298.44,63.578 +264226,297.98,65.127 +264227,297.58,66.66 +264228,297.23,68.176 +264229,297.2,63.6 +264230,296.7,65.15 +264231,296.24,66.684 +264232,295.84,68.2 +264233,295.97,63.623 +264234,295.41,65.173 +264235,294.9,66.707 +264236,294.45,68.223 +264237,294.74,63.648 +264238,294.12,65.197 +264239,293.56,66.729 +264240,293.06,68.245 +264241,293.51,63.674 +264242,292.84,65.221 +264243,292.22,66.751 +264244,291.67,68.265 +264245,292.28,63.701 +264246,291.55,65.245 +264247,290.88,66.773 +264248,290.28,68.284 +264249,291.04,63.73 +264250,290.26,65.27 +264251,289.54,66.795 +264252,288.89,68.302 +264253,289.81,63.759 +264254,288.97,65.295 +264255,288.2,66.815 +264256,287.5,68.319 +264257,288.58,63.79 +264258,287.69,65.321 +264259,286.87,66.836 +264260,286.11,68.334 +264261,287.34,63.822 +264262,286.4,65.347 +264263,285.53,66.856 +264264,284.72,68.349 +264265,286.1,63.856 +264266,285.11,65.373 +264267,284.19,66.876 +264268,283.33,68.362 +264269,284.87,63.89 +264270,283.82,65.4 +264271,282.85,66.895 +264272,281.95,68.374 +264273,283.63,63.926 +264274,282.53,65.427 +264275,281.51,66.914 +264276,280.56,68.384 +264277,282.39,63.963 +264278,281.24,65.455 +264279,280.17,66.932 +264280,279.18,68.394 +264281,281.15,64.001 +264282,279.95,65.483 +264283,278.84,66.95 +264284,277.79,68.402 +264285,279.91,64.041 +264286,278.66,65.512 +264287,277.5,66.968 +264288,276.41,68.409 +264289,278.67,64.081 +264290,277.37,65.54 +264291,276.16,66.985 +264292,275.03,68.415 +264293,277.43,64.123 +264294,276.08,65.569 +264295,274.82,67.002 +264296,273.65,68.42 +264297,276.19,64.166 +264298,274.79,65.599 +264299,273.49,67.019 +264300,272.27,68.424 +264301,274.94,64.21 +264302,273.5,65.629 +264303,272.15,67.035 +264304,270.89,68.426 +264305,273.7,64.255 +264306,272.21,65.659 +264307,270.82,67.05 +264308,269.51,68.428 +264309,272.45,64.301 +264310,270.92,65.69 +264311,269.48,67.066 +264312,268.13,68.428 +264313,271.21,64.349 +264314,269.62,65.721 +264315,268.14,67.081 +264316,266.76,68.427 +264317,269.96,64.397 +264318,268.33,65.752 +264319,266.81,67.095 +264320,265.38,68.425 +264321,268.71,64.447 +264322,267.04,65.784 +264323,265.48,67.109 +264324,264.01,68.423 +264325,267.46,64.497 +264326,265.74,65.816 +264327,264.14,67.123 +264328,262.64,68.419 +264329,266.2,64.549 +264330,264.45,65.848 +264331,262.81,67.137 +264332,261.26,68.413 +264333,264.95,64.602 +264334,263.15,65.881 +264335,261.47,67.15 +264336,259.89,68.407 +264337,263.7,64.655 +264338,261.86,65.914 +264339,260.14,67.163 +264340,258.52,68.4 +264341,262.44,64.71 +264342,260.56,65.947 +264343,258.81,67.175 +264344,257.16,68.392 +264345,261.18,64.766 +264346,259.27,65.981 +264347,257.48,67.187 +264348,255.79,68.383 +264349,259.92,64.822 +264350,257.97,66.015 +264351,256.14,67.199 +264352,254.42,68.373 +264353,258.66,64.88 +264354,256.68,66.049 +264355,254.81,67.21 +264356,253.06,68.362 +264357,257.4,64.939 +264358,255.38,66.084 +264359,253.48,67.221 +264360,251.7,68.35 +264361,256.13,64.998 +264362,254.08,66.119 +264363,252.15,67.232 +264364,250.34,68.337 +264365,254.87,65.058 +264366,252.78,66.154 +264367,250.82,67.243 +264368,248.98,68.324 +264369,253.6,65.119 +264370,251.48,66.189 +264371,249.49,67.253 +264372,247.62,68.309 +264373,252.33,65.181 +264374,250.18,66.225 +264375,248.16,67.263 +264376,246.26,68.293 +264377,251.06,65.244 +264378,248.88,66.261 +264379,246.84,67.273 +264380,244.9,68.277 +264381,249.79,65.308 +264382,247.58,66.297 +264383,245.51,67.282 +264384,243.55,68.26 +264385,248.51,65.372 +264386,246.28,66.334 +264387,244.18,67.291 +264388,242.2,68.242 +264389,247.24,65.437 +264390,244.98,66.371 +264391,242.85,67.3 +264392,240.85,68.224 +264393,245.96,65.503 +264394,243.68,66.408 +264395,241.53,67.308 +264396,239.5,68.204 +264397,244.68,65.569 +264398,242.37,66.445 +264399,240.2,67.317 +264400,238.15,68.184 +264401,243.4,65.636 +264402,241.07,66.482 +264403,238.88,67.325 +264404,236.8,68.163 +264405,242.11,65.704 +264406,239.77,66.52 +264407,237.55,67.333 +264408,235.46,68.142 +264409,240.83,65.772 +264410,238.46,66.558 +264411,236.23,67.34 +264412,234.11,68.12 +264413,239.54,65.841 +264414,237.16,66.596 +264415,234.9,67.348 +264416,232.77,68.097 +264417,238.25,65.911 +264418,235.85,66.634 +264419,233.58,67.355 +264420,231.43,68.073 +264421,236.96,65.981 +264422,234.54,66.672 +264423,232.26,67.362 +264424,230.09,68.049 +264425,235.67,66.052 +264426,233.24,66.711 +264427,230.94,67.369 +264428,228.75,68.025 +264429,234.38,66.123 +264430,231.93,66.749 +264431,229.61,67.375 +264432,227.42,68 +264433,233.08,66.194 +264434,230.62,66.788 +264435,228.29,67.382 +264436,226.09,67.974 +264437,231.78,66.266 +264438,229.31,66.827 +264439,226.97,67.388 +264440,224.75,67.948 +264441,230.48,66.339 +264442,228,66.866 +264443,225.65,67.394 +264444,223.42,67.922 +264445,229.18,66.412 +264446,226.69,66.906 +264447,224.33,67.4 +264448,222.09,67.895 +264449,227.88,66.485 +264450,225.38,66.945 +264451,223.02,67.406 +264452,220.77,67.867 +264453,226.57,66.558 +264454,224.07,66.985 +264455,221.7,67.412 +264456,219.44,67.839 +264457,225.26,66.632 +264458,222.76,67.024 +264459,220.38,67.417 +264460,218.12,67.811 +264461,223.95,66.706 +264462,221.44,67.064 +264463,219.06,67.423 +264464,216.8,67.783 +264465,222.64,66.78 +264466,220.13,67.104 +264467,217.75,67.428 +264468,215.48,67.754 +264469,221.33,66.855 +264470,218.82,67.143 +264471,216.43,67.434 +264472,214.16,67.725 +264473,220.01,66.93 +264474,217.5,67.183 +264475,215.12,67.439 +264476,212.84,67.696 +264477,218.69,67.005 +264478,216.19,67.223 +264479,213.8,67.444 +264480,211.52,67.667 +264481,217.37,67.08 +264482,214.87,67.263 +264483,212.49,67.449 +264484,210.21,67.637 +264485,216.05,67.155 +264486,213.55,67.303 +264487,211.17,67.454 +264488,208.9,67.607 +264489,214.73,67.23 +264490,212.24,67.343 +264491,209.86,67.459 +264492,207.59,67.577 +264493,213.4,67.305 +264494,210.92,67.383 +264495,208.55,67.464 +264496,206.28,67.547 +264497,212.08,67.38 +264498,209.6,67.423 +264499,207.24,67.469 +264500,204.97,67.517 +264501,210.75,67.455 +264502,208.28,67.463 +264503,205.93,67.474 +264504,203.67,67.487 +264505,209.42,67.531 +264506,206.96,67.503 +264507,204.62,67.479 +264508,202.37,67.457 +264509,208.08,67.606 +264510,205.64,67.543 +264511,203.31,67.484 +264512,201.07,67.427 +264513,206.75,67.681 +264514,204.32,67.583 +264515,202,67.489 +264516,199.77,67.397 +264517,205.41,67.755 +264518,203,67.623 +264519,200.69,67.494 +264520,198.47,67.367 +264521,204.08,67.83 +264522,201.68,67.663 +264523,199.38,67.499 +264524,197.17,67.337 +264525,202.74,67.905 +264526,200.35,67.703 +264527,198.07,67.504 +264528,195.88,67.307 +264529,201.39,67.979 +264530,199.03,67.743 +264531,196.76,67.509 +264532,194.58,67.277 +264533,200.05,68.053 +264534,197.71,67.782 +264535,195.46,67.514 +264536,193.29,67.248 +264537,198.7,68.127 +264538,196.38,67.822 +264539,194.15,67.519 +264540,192,67.219 +264541,197.36,68.2 +264542,195.06,67.861 +264543,192.85,67.524 +264544,190.71,67.19 +264545,196.01,68.274 +264546,193.73,67.901 +264547,191.54,67.53 +264548,189.43,67.161 +264549,194.66,68.347 +264550,192.4,67.94 +264551,190.24,67.535 +264552,188.14,67.132 +264553,193.31,68.419 +264554,191.08,67.979 +264555,188.93,67.541 +264556,186.86,67.104 +264557,191.95,68.491 +264558,189.75,68.018 +264559,187.63,67.546 +264560,185.58,67.076 +264561,190.6,68.563 +264562,188.42,68.057 +264563,186.33,67.552 +264564,184.3,67.049 +264565,189.24,68.634 +264566,187.09,68.096 +264567,185.02,67.558 +264568,183.02,67.022 +264569,187.88,68.705 +264570,185.76,68.134 +264571,183.72,67.564 +264572,181.74,66.995 +264573,186.52,68.775 +264574,184.43,68.173 +264575,182.42,67.57 +264576,180.47,66.969 +264577,185.16,68.845 +264578,183.1,68.211 +264579,181.12,67.577 +264580,179.2,66.944 +264581,183.8,68.914 +264582,181.77,68.249 +264583,179.82,67.583 +264584,177.92,66.918 +264585,182.43,68.983 +264586,180.44,68.287 +264587,178.52,67.59 +264588,176.65,66.894 +264589,181.07,69.051 +264590,179.11,68.324 +264591,177.22,67.597 +264592,175.38,66.87 +264593,179.7,69.118 +264594,177.78,68.362 +264595,175.92,67.604 +264596,174.12,66.846 +264597,178.33,69.185 +264598,176.45,68.399 +264599,174.62,67.611 +264600,172.85,66.823 +264601,176.96,69.251 +264602,175.11,68.436 +264603,173.32,67.619 +264604,171.58,66.801 +264605,175.59,69.316 +264606,173.78,68.472 +264607,172.03,67.627 +264608,170.32,66.78 +264609,174.22,69.381 +264610,172.45,68.509 +264611,170.73,67.635 +264612,169.06,66.759 +264613,172.84,69.445 +264614,171.11,68.545 +264615,169.43,67.643 +264616,167.8,66.739 +264617,171.47,69.508 +264618,169.78,68.581 +264619,168.14,67.651 +264620,166.54,66.719 +264621,170.09,69.57 +264622,168.44,68.617 +264623,166.84,67.66 +264624,165.28,66.7 +264625,168.72,69.632 +264626,167.11,68.652 +264627,165.54,67.669 +264628,164.02,66.683 +264629,167.34,69.692 +264630,165.77,68.687 +264631,164.25,67.678 +264632,162.77,66.665 +264633,165.96,69.752 +264634,164.43,68.722 +264635,162.95,67.687 +264636,161.51,66.649 +264637,164.58,69.811 +264638,163.1,68.757 +264639,161.66,67.697 +264640,160.26,66.634 +264641,163.2,69.87 +264642,161.76,68.791 +264643,160.36,67.707 +264644,159.01,66.619 +264645,161.81,69.927 +264646,160.42,68.825 +264647,159.07,67.718 +264648,157.75,66.605 +264649,160.43,69.983 +264650,159.08,68.859 +264651,157.78,67.728 +264652,156.5,66.593 +264653,159.05,70.039 +264654,157.75,68.892 +264655,156.48,67.739 +264656,155.25,66.581 +264657,157.66,70.093 +264658,156.41,68.925 +264659,155.19,67.75 +264660,154.01,66.57 +264661,156.27,70.147 +264662,155.07,68.958 +264663,153.9,67.762 +264664,152.76,66.56 +264665,154.89,70.199 +264666,153.73,68.99 +264667,152.61,67.774 +264668,151.51,66.551 +264669,153.5,70.251 +264670,152.39,69.022 +264671,151.31,67.786 +264672,150.27,66.543 +264673,152.11,70.301 +264674,151.05,69.054 +264675,150.02,67.798 +264676,149.02,66.536 +264677,150.72,70.351 +264678,149.71,69.085 +264679,148.73,67.811 +264680,147.78,66.53 +264681,149.33,70.399 +264682,148.37,69.116 +264683,147.44,67.824 +264684,146.54,66.525 +264685,147.94,70.447 +264686,147.03,69.147 +264687,146.15,67.838 +264688,145.29,66.521 +264689,146.55,70.493 +264690,145.69,69.177 +264691,144.86,67.852 +264692,144.05,66.518 +264693,145.16,70.539 +264694,144.35,69.207 +264695,143.57,67.866 +264696,142.81,66.516 +264697,143.77,70.583 +264698,143.01,69.237 +264699,142.28,67.881 +264700,141.57,66.516 +264701,142.38,70.626 +264702,141.67,69.266 +264703,140.99,67.896 +264704,140.33,66.516 +264705,140.99,70.668 +264706,140.33,69.295 +264707,139.7,67.911 +264708,139.09,66.518 +264709,139.59,70.709 +264710,138.98,69.323 +264711,138.41,67.927 +264712,137.85,66.521 +264713,138.2,70.749 +264714,137.64,69.351 +264715,137.12,67.943 +264716,136.62,66.525 +264717,136.81,70.787 +264718,136.3,69.379 +264719,135.83,67.959 +264720,135.38,66.53 +264721,135.41,70.825 +264722,134.96,69.406 +264723,134.54,67.976 +264724,134.14,66.536 +264725,134.02,70.861 +264726,133.62,69.433 +264727,133.25,67.993 +264728,132.9,66.543 +264729,132.62,70.896 +264730,132.28,69.459 +264731,131.96,68.011 +264732,131.67,66.552 +264733,131.23,70.93 +264734,130.93,69.485 +264735,130.67,68.029 +264736,130.43,66.562 +264737,129.84,70.963 +264738,129.59,69.511 +264739,129.38,68.047 +264740,129.2,66.573 +264741,128.44,70.995 +264742,128.25,69.536 +264743,128.09,68.066 +264744,127.96,66.585 +264745,127.05,71.025 +264746,126.91,69.561 +264747,126.8,68.085 +264748,126.72,66.598 +264749,125.65,71.054 +264750,125.56,69.586 +264751,125.51,68.105 +264752,125.49,66.613 +264753,124.26,71.082 +264754,124.22,69.61 +264755,124.22,68.125 +264756,124.25,66.628 +264757,122.86,71.109 +264758,122.88,69.633 +264759,122.93,68.145 +264760,123.02,66.645 +264761,121.47,71.135 +264762,121.54,69.657 +264763,121.64,68.166 +264764,121.78,66.664 +264765,120.08,71.16 +264766,120.2,69.68 +264767,120.35,68.187 +264768,120.55,66.683 +264769,118.68,71.183 +264770,118.85,69.702 +264771,119.06,68.209 +264772,119.31,66.704 +264773,117.29,71.205 +264774,117.51,69.724 +264775,117.77,68.231 +264776,118.08,66.726 +264777,115.9,71.226 +264778,116.17,69.746 +264779,116.48,68.253 +264780,116.84,66.749 +264781,114.5,71.246 +264782,114.83,69.767 +264783,115.19,68.276 +264784,115.6,66.773 +264785,113.11,71.264 +264786,113.49,69.788 +264787,113.9,68.299 +264788,114.37,66.799 +264789,111.72,71.282 +264790,112.14,69.808 +264791,112.61,68.322 +264792,113.13,66.826 +264793,110.33,71.298 +264794,110.8,69.828 +264795,111.32,68.346 +264796,111.89,66.854 +264797,108.94,71.313 +264798,109.46,69.848 +264799,110.03,68.371 +264800,110.66,66.883 +264801,107.54,71.327 +264802,108.12,69.867 +264803,108.74,68.395 +264804,109.42,66.913 +264805,106.15,71.339 +264806,106.78,69.886 +264807,107.45,68.421 +264808,108.18,66.945 +264809,104.76,71.351 +264810,105.44,69.904 +264811,106.16,68.446 +264812,106.94,66.978 +264813,103.38,71.361 +264814,104.1,69.922 +264815,104.87,68.472 +264816,105.7,67.012 +264817,101.99,71.37 +264818,102.75,69.94 +264819,103.58,68.498 +264820,104.46,67.047 +264821,100.6,71.378 +264822,101.41,69.957 +264823,102.29,68.525 +264824,103.22,67.084 +264825,99.212,71.385 +264826,100.07,69.974 +264827,100.99,68.552 +264828,101.98,67.121 +264829,97.826,71.391 +264830,98.734,69.99 +264831,99.703,68.58 +264832,100.74,67.16 +264833,96.441,71.395 +264834,97.394,70.006 +264835,98.41,68.607 +264836,99.494,67.2 +264837,95.056,71.399 +264838,96.055,70.022 +264839,97.118,68.636 +264840,98.25,67.241 +264841,93.672,71.401 +264842,94.715,70.037 +264843,95.825,68.664 +264844,97.006,67.283 +264845,92.289,71.403 +264846,93.376,70.052 +264847,94.531,68.693 +264848,95.76,67.326 +264849,90.907,71.403 +264850,92.038,70.067 +264851,93.238,68.722 +264852,94.514,67.371 +264853,89.525,71.402 +264854,90.699,70.081 +264855,91.944,68.752 +264856,93.266,67.416 +264857,88.145,71.4 +264858,89.361,70.095 +264859,90.65,68.782 +264860,92.018,67.463 +264861,86.766,71.397 +264862,88.023,70.109 +264863,89.355,68.813 +264864,90.768,67.511 +264865,85.387,71.393 +264866,86.686,70.122 +264867,88.06,68.843 +264868,89.518,67.559 +264869,84.01,71.388 +264870,85.349,70.134 +264871,86.765,68.874 +264872,88.266,67.609 +264873,82.634,71.382 +264874,84.012,70.147 +264875,85.469,68.906 +264876,87.013,67.66 +264877,81.259,71.375 +264878,82.676,70.159 +264879,84.173,68.937 +264880,85.759,67.711 +264881,79.885,71.367 +264882,81.34,70.171 +264883,82.877,68.969 +264884,84.504,67.764 +264885,78.512,71.358 +264886,80.004,70.182 +264887,81.58,69.002 +264888,83.248,67.818 +264889,77.14,71.348 +264890,78.669,70.193 +264891,80.282,69.035 +264892,81.99,67.873 +264893,75.77,71.337 +264894,77.334,70.204 +264895,78.985,69.067 +264896,80.731,67.928 +264897,74.4,71.325 +264898,76,70.215 +264899,77.686,69.101 +264900,79.47,67.985 +264901,73.032,71.312 +264902,74.665,70.225 +264903,76.388,69.134 +264904,78.208,68.042 +264905,71.665,71.299 +264906,73.332,70.235 +264907,75.088,69.168 +264908,76.945,68.1 +264909,70.3,71.284 +264910,71.999,70.245 +264911,73.789,69.202 +264912,75.681,68.159 +264913,68.936,71.269 +264914,70.666,70.254 +264915,72.489,69.237 +264916,74.414,68.219 +264917,67.573,71.253 +264918,69.334,70.263 +264919,71.188,69.271 +264920,73.147,68.28 +264921,66.211,71.236 +264922,68.002,70.272 +264923,69.887,69.306 +264924,71.878,68.342 +264925,64.851,71.218 +264926,66.67,70.28 +264927,68.585,69.342 +264928,70.607,68.404 +264929,63.492,71.2 +264930,65.34,70.289 +264931,67.283,69.377 +264932,69.335,68.467 +264933,62.135,71.181 +264934,64.009,70.297 +264935,65.98,69.413 +264936,68.061,68.531 +264937,60.779,71.161 +264938,62.679,70.305 +264939,64.677,69.449 +264940,66.785,68.595 +264941,59.425,71.14 +264942,61.35,70.312 +264943,63.373,69.485 +264944,65.508,68.66 +264945,58.072,71.119 +264946,60.021,70.319 +264947,62.069,69.521 +264948,64.229,68.726 +264949,56.72,71.097 +264950,58.692,70.327 +264951,60.764,69.558 +264952,62.949,68.793 +264953,55.37,71.075 +264954,57.364,70.334 +264955,59.459,69.595 +264956,61.667,68.86 +264957,54.022,71.051 +264958,56.037,70.34 +264959,58.153,69.632 +264960,60.383,68.927 +264961,52.675,71.028 +264962,54.71,70.347 +264963,56.846,69.669 +264964,59.097,68.995 +264965,51.329,71.003 +264966,53.383,70.353 +264967,55.539,69.706 +264968,57.81,69.064 +264969,49.986,70.979 +264970,52.058,70.359 +264971,54.231,69.744 +264972,56.521,69.133 +264973,48.643,70.953 +264974,50.732,70.365 +264975,52.923,69.781 +264976,55.23,69.203 +264977,47.303,70.928 +264978,49.407,70.371 +264979,51.614,69.819 +264980,53.937,69.273 +264981,45.964,70.901 +264982,48.083,70.377 +264983,50.305,69.857 +264984,52.643,69.343 +264985,44.626,70.875 +264986,46.759,70.382 +264987,48.995,69.895 +264988,51.346,69.414 +264989,43.29,70.848 +264990,45.436,70.388 +264991,47.684,69.933 +264992,50.048,69.486 +264993,41.956,70.82 +264994,44.114,70.393 +264995,46.373,69.972 +264996,48.748,69.557 +264997,40.624,70.792 +264998,42.791,70.398 +264999,45.061,70.01 +265000,47.446,69.629 +265001,39.293,70.764 +265002,41.47,70.403 +265003,43.748,70.048 +265004,46.143,69.701 +265005,37.963,70.736 +265006,40.149,70.408 +265007,42.435,70.087 +265008,44.837,69.774 +265009,36.636,70.707 +265010,38.829,70.413 +265011,41.122,70.126 +265012,43.53,69.846 +265013,35.31,70.678 +265014,37.509,70.418 +265015,39.807,70.165 +265016,42.221,69.919 +265017,33.985,70.649 +265018,36.189,70.423 +265019,38.492,70.203 +265020,40.91,69.992 +265021,32.663,70.62 +265022,34.871,70.427 +265023,37.177,70.242 +265024,39.597,70.066 +265025,31.342,70.59 +265026,33.552,70.432 +265027,35.861,70.281 +265028,38.282,70.139 +265029,30.022,70.561 +265030,32.235,70.437 +265031,34.544,70.32 +265032,36.965,70.212 +265033,28.705,70.531 +265034,30.918,70.441 +265035,33.227,70.359 +265036,35.647,70.286 +265037,27.389,70.501 +265038,29.601,70.446 +265039,31.909,70.398 +265040,34.326,70.359 +265041,26.075,70.471 +265042,28.285,70.45 +265043,30.59,70.437 +265044,33.004,70.433 +265045,24.762,70.441 +265046,26.97,70.455 +265047,29.271,70.476 +265048,31.68,70.506 +265049,23.451,70.411 +265050,25.655,70.459 +265051,27.951,70.515 +265052,30.354,70.58 +265053,22.142,70.382 +265054,24.341,70.464 +265055,26.631,70.554 +265056,29.026,70.653 +265057,20.834,70.352 +265058,23.027,70.468 +265059,25.31,70.593 +265060,27.697,70.726 +265061,19.528,70.322 +265062,21.714,70.473 +265063,23.988,70.632 +265064,26.365,70.8 +265065,18.224,70.292 +265066,20.402,70.477 +265067,22.666,70.671 +265068,25.032,70.873 +265069,16.922,70.263 +265070,19.09,70.482 +265071,21.343,70.709 +265072,23.697,70.945 +265073,15.621,70.234 +265074,17.778,70.487 +265075,20.02,70.748 +265076,22.36,71.018 +265077,14.322,70.204 +265078,16.467,70.491 +265079,18.696,70.787 +265080,21.022,71.09 +265081,13.024,70.176 +265082,15.157,70.496 +265083,17.372,70.825 +265084,19.681,71.162 +265085,11.728,70.147 +265086,13.847,70.501 +265087,16.046,70.864 +265088,18.339,71.234 +265089,10.434,70.119 +265090,12.538,70.506 +265091,14.721,70.902 +265092,16.996,71.306 +265093,9.1407,70.09 +265094,11.229,70.511 +265095,13.394,70.94 +265096,15.65,71.377 +265097,7.8496,70.063 +265098,9.9206,70.517 +265099,12.068,70.978 +265100,14.303,71.447 +265101,6.56,70.035 +265102,8.6129,70.522 +265103,10.74,71.016 +265104,12.954,71.518 +265105,5.272,70.008 +265106,7.3057,70.528 +265107,9.4123,71.054 +265108,11.604,71.588 +265109,3.9855,69.982 +265110,5.999,70.533 +265111,8.0838,71.092 +265112,10.252,71.657 +265113,2.7006,69.956 +265114,4.6928,70.539 +265115,6.7547,71.129 +265116,8.8979,71.726 +265117,1.4172,69.93 +265118,3.3871,70.545 +265119,5.4252,71.167 +265120,7.5426,71.794 +265121,0.13537,69.905 +265122,2.0819,70.551 +265123,4.0951,71.204 +265124,6.1858,71.862 +265125,358.86,69.88 +265126,0.77716,70.558 +265127,2.7644,71.241 +265128,4.8274,71.93 +265129,357.58,69.856 +265130,359.47,70.564 +265131,1.4333,71.278 +265132,3.4674,71.997 +265133,356.3,69.832 +265134,358.17,70.571 +265135,0.10165,71.314 +265136,2.106,72.063 +265137,355.02,69.81 +265138,356.87,70.578 +265139,358.77,71.351 +265140,0.74318,72.128 +265141,353.75,69.787 +265142,355.56,70.585 +265143,357.44,71.387 +265144,359.38,72.193 +265145,352.48,69.765 +265146,354.26,70.592 +265147,356.1,71.423 +265148,358.01,72.258 +265149,351.2,69.744 +265150,352.96,70.6 +265151,354.77,71.459 +265152,356.65,72.321 +265153,349.93,69.724 +265154,351.66,70.607 +265155,353.44,71.494 +265156,355.28,72.384 +265157,348.66,69.704 +265158,350.36,70.615 +265159,352.1,71.53 +265160,353.91,72.446 +265161,347.4,69.686 +265162,349.06,70.624 +265163,350.77,71.565 +265164,352.54,72.508 +265165,346.13,69.667 +265166,347.76,70.632 +265167,349.43,71.599 +265168,351.16,72.568 +265169,344.86,69.65 +265170,346.46,70.641 +265171,348.1,71.634 +265172,349.79,72.628 +265173,343.6,69.634 +265174,345.16,70.65 +265175,346.76,71.668 +265176,348.42,72.687 +265177,342.34,69.618 +265178,343.86,70.659 +265179,345.42,71.702 +265180,347.04,72.746 +265181,341.08,69.603 +265182,342.56,70.669 +265183,344.09,71.736 +265184,345.66,72.803 +265185,339.82,69.589 +265186,341.26,70.679 +265187,342.75,71.769 +265188,344.28,72.859 +265189,338.56,69.576 +265190,339.96,70.689 +265191,341.41,71.802 +265192,342.91,72.915 +265193,337.3,69.564 +265194,338.66,70.699 +265195,340.07,71.835 +265196,341.53,72.97 +265197,336.04,69.552 +265198,337.37,70.71 +265199,338.73,71.868 +265200,340.14,73.024 +265201,334.79,69.542 +265202,336.07,70.721 +265203,337.39,71.9 +265204,338.76,73.076 +265205,333.53,69.532 +265206,334.77,70.732 +265207,336.06,71.932 +265208,337.38,73.128 +265209,332.28,69.524 +265210,333.48,70.744 +265211,334.72,71.963 +265212,335.99,73.179 +265213,331.02,69.517 +265214,332.18,70.756 +265215,333.38,71.994 +265216,334.61,73.229 +265217,329.77,69.51 +265218,330.89,70.769 +265219,332.04,72.025 +265220,333.22,73.278 +265221,328.52,69.505 +265222,329.59,70.781 +265223,330.69,72.056 +265224,331.84,73.326 +265225,327.27,69.5 +265226,328.3,70.795 +265227,329.35,72.086 +265228,330.45,73.373 +265229,326.02,69.497 +265230,327,70.808 +265231,328.01,72.116 +265232,329.06,73.419 +265233,324.77,69.495 +265234,325.71,70.822 +265235,326.67,72.145 +265236,327.67,73.464 +265237,323.52,69.494 +265238,324.41,70.836 +265239,325.33,72.174 +265240,326.28,73.508 +265241,322.28,69.494 +265242,323.12,70.85 +265243,323.99,72.203 +265244,324.89,73.55 +265245,321.03,69.495 +265246,321.82,70.865 +265247,322.65,72.231 +265248,323.5,73.592 +265249,319.78,69.497 +265250,320.53,70.88 +265251,321.3,72.259 +265252,322.11,73.632 +265253,318.54,69.5 +265254,319.24,70.896 +265255,319.96,72.287 +265256,320.72,73.672 +265257,317.29,69.505 +265258,317.94,70.912 +265259,318.62,72.314 +265260,319.33,73.71 +265261,316.05,69.51 +265262,316.65,70.928 +265263,317.28,72.341 +265264,317.94,73.747 +265265,314.81,69.517 +265266,315.36,70.945 +265267,315.93,72.368 +265268,316.54,73.783 +265269,313.56,69.525 +265270,314.06,70.962 +265271,314.59,72.394 +265272,315.15,73.818 +265273,312.32,69.534 +265274,312.77,70.98 +265275,313.25,72.42 +265276,313.76,73.852 +265277,311.08,69.544 +265278,311.48,70.998 +265279,311.9,72.445 +265280,312.36,73.885 +265281,309.84,69.556 +265282,310.18,71.016 +265283,310.56,72.47 +265284,310.97,73.916 +265285,308.59,69.568 +265286,308.89,71.035 +265287,309.22,72.495 +265288,309.58,73.947 +265289,307.35,69.582 +265290,307.6,71.054 +265291,307.87,72.519 +265292,308.18,73.976 +265293,306.11,69.597 +265294,306.31,71.074 +265295,306.53,72.543 +265296,306.79,74.004 +265297,304.87,69.614 +265298,305.01,71.093 +265299,305.19,72.566 +265300,305.39,74.031 +265301,303.63,69.631 +265302,303.72,71.114 +265303,303.84,72.589 +265304,304,74.056 +265305,302.39,69.65 +265306,302.43,71.134 +265307,302.5,72.612 +265308,302.6,74.081 +265309,301.15,69.67 +265310,301.14,71.156 +265311,301.16,72.634 +265312,301.21,74.104 +265313,299.91,69.691 +265314,299.84,71.177 +265315,299.81,72.656 +265316,299.81,74.126 +265317,298.67,69.713 +265318,298.55,71.199 +265319,298.47,72.677 +265320,298.42,74.147 +265321,297.43,69.737 +265322,297.26,71.221 +265323,297.12,72.699 +265324,297.03,74.167 +265325,296.19,69.762 +265326,295.96,71.244 +265327,295.78,72.719 +265328,295.63,74.186 +265329,294.94,69.788 +265330,294.67,71.267 +265331,294.44,72.739 +265332,294.24,74.203 +265333,293.7,69.815 +265334,293.38,71.291 +265335,293.09,72.759 +265336,292.84,74.22 +265337,292.46,69.844 +265338,292.09,71.315 +265339,291.75,72.779 +265340,291.45,74.235 +265341,291.22,69.873 +265342,290.79,71.339 +265343,290.41,72.798 +265344,290.06,74.249 +265345,289.98,69.904 +265346,289.5,71.364 +265347,289.06,72.817 +265348,288.67,74.261 +265349,288.74,69.936 +265350,288.21,71.389 +265351,287.72,72.835 +265352,287.27,74.273 +265353,287.49,69.969 +265354,286.91,71.414 +265355,286.38,72.853 +265356,285.88,74.284 +265357,286.25,70.004 +265358,285.62,71.44 +265359,285.03,72.87 +265360,284.49,74.293 +265361,285.01,70.039 +265362,284.33,71.466 +265363,283.69,72.888 +265364,283.1,74.301 +265365,283.76,70.076 +265366,283.03,71.493 +265367,282.35,72.904 +265368,281.71,74.308 +265369,282.52,70.114 +265370,281.74,71.52 +265371,281.01,72.921 +265372,280.32,74.314 +265373,281.27,70.153 +265374,280.44,71.548 +265375,279.66,72.937 +265376,278.93,74.319 +265377,280.03,70.194 +265378,279.15,71.575 +265379,278.32,72.952 +265380,277.54,74.323 +265381,278.78,70.235 +265382,277.85,71.604 +265383,276.98,72.968 +265384,276.16,74.326 +265385,277.53,70.278 +265386,276.56,71.632 +265387,275.64,72.983 +265388,274.77,74.327 +265389,276.29,70.321 +265390,275.26,71.661 +265391,274.3,72.997 +265392,273.38,74.328 +265393,275.04,70.366 +265394,273.97,71.69 +265395,272.96,73.011 +265396,272,74.327 +265397,273.79,70.412 +265398,272.67,71.72 +265399,271.62,73.025 +265400,270.61,74.326 +265401,272.54,70.459 +265402,271.38,71.75 +265403,270.27,73.039 +265404,269.23,74.323 +265405,271.29,70.507 +265406,270.08,71.78 +265407,268.93,73.052 +265408,267.85,74.319 +265409,270.03,70.556 +265410,268.78,71.811 +265411,267.59,73.065 +265412,266.46,74.315 +265413,268.78,70.606 +265414,267.49,71.842 +265415,266.25,73.077 +265416,265.08,74.309 +265417,267.53,70.657 +265418,266.19,71.874 +265419,264.91,73.089 +265420,263.7,74.302 +265421,266.27,70.709 +265422,264.89,71.905 +265423,263.58,73.101 +265424,262.32,74.295 +265425,265.02,70.762 +265426,263.59,71.937 +265427,262.24,73.113 +265428,260.95,74.286 +265429,263.76,70.816 +265430,262.29,71.97 +265431,260.9,73.124 +265432,259.57,74.276 +265433,262.5,70.871 +265434,260.99,72.002 +265435,259.56,73.135 +265436,258.19,74.266 +265437,261.24,70.926 +265438,259.69,72.035 +265439,258.22,73.145 +265440,256.82,74.255 +265441,259.98,70.983 +265442,258.4,72.069 +265443,256.88,73.156 +265444,255.44,74.242 +265445,258.72,71.041 +265446,257.09,72.102 +265447,255.55,73.166 +265448,254.07,74.229 +265449,257.46,71.099 +265450,255.79,72.136 +265451,254.21,73.175 +265452,252.7,74.215 +265453,256.19,71.159 +265454,254.49,72.17 +265455,252.87,73.185 +265456,251.33,74.2 +265457,254.93,71.219 +265458,253.19,72.205 +265459,251.54,73.194 +265460,249.96,74.185 +265461,253.66,71.28 +265462,251.89,72.239 +265463,250.2,73.203 +265464,248.59,74.168 +265465,252.39,71.342 +265466,250.59,72.274 +265467,248.87,73.212 +265468,247.23,74.151 +265469,251.12,71.404 +265470,249.28,72.309 +265471,247.53,73.22 +265472,245.86,74.133 +265473,249.85,71.467 +265474,247.98,72.345 +265475,246.2,73.228 +265476,244.5,74.115 +265477,248.58,71.531 +265478,246.68,72.381 +265479,244.87,73.236 +265480,243.13,74.095 +265481,247.3,71.596 +265482,245.37,72.417 +265483,243.53,73.244 +265484,241.77,74.075 +265485,246.03,71.661 +265486,244.07,72.453 +265487,242.2,73.251 +265488,240.41,74.054 +265489,244.75,71.727 +265490,242.76,72.489 +265491,240.87,73.258 +265492,239.05,74.033 +265493,243.47,71.794 +265494,241.46,72.526 +265495,239.54,73.265 +265496,237.7,74.011 +265497,242.19,71.861 +265498,240.15,72.562 +265499,238.2,73.272 +265500,236.34,73.988 +265501,240.91,71.929 +265502,238.84,72.599 +265503,236.87,73.279 +265504,234.99,73.965 +265505,239.63,71.997 +265506,237.54,72.637 +265507,235.54,73.285 +265508,233.63,73.941 +265509,238.34,72.066 +265510,236.23,72.674 +265511,234.21,73.292 +265512,232.28,73.917 +265513,237.05,72.135 +265514,234.92,72.711 +265515,232.88,73.298 +265516,230.93,73.892 +265517,235.77,72.205 +265518,233.61,72.749 +265519,231.55,73.304 +265520,229.58,73.867 +265521,234.48,72.275 +265522,232.3,72.787 +265523,230.23,73.31 +265524,228.24,73.841 +265525,233.18,72.346 +265526,230.99,72.825 +265527,228.9,73.315 +265528,226.89,73.815 +265529,231.89,72.417 +265530,229.68,72.863 +265531,227.57,73.321 +265532,225.55,73.788 +265533,230.6,72.488 +265534,228.37,72.901 +265535,226.24,73.326 +265536,224.2,73.761 +265537,229.3,72.56 +265538,227.06,72.94 +265539,224.92,73.332 +265540,222.86,73.734 +265541,228,72.632 +265542,225.75,72.978 +265543,223.59,73.337 +265544,221.52,73.706 +265545,226.7,72.704 +265546,224.43,73.017 +265547,222.26,73.342 +265548,220.19,73.678 +265549,225.4,72.777 +265550,223.12,73.055 +265551,220.94,73.347 +265552,218.85,73.65 +265553,224.09,72.85 +265554,221.8,73.094 +265555,219.62,73.352 +265556,217.51,73.621 +265557,222.79,72.923 +265558,220.49,73.133 +265559,218.29,73.357 +265560,216.18,73.592 +265561,221.48,72.996 +265562,219.17,73.172 +265563,216.97,73.362 +265564,214.85,73.563 +265565,220.17,73.069 +265566,217.86,73.211 +265567,215.65,73.366 +265568,213.52,73.534 +265569,218.86,73.142 +265570,216.54,73.249 +265571,214.32,73.371 +265572,212.19,73.505 +265573,217.55,73.216 +265574,215.22,73.288 +265575,213,73.376 +265576,210.87,73.476 +265577,216.23,73.289 +265578,213.91,73.327 +265579,211.68,73.38 +265580,209.54,73.446 +265581,214.92,73.363 +265582,212.59,73.366 +265583,210.36,73.385 +265584,208.22,73.417 +265585,213.6,73.436 +265586,211.27,73.406 +265587,209.04,73.39 +265588,206.9,73.387 +265589,212.28,73.51 +265590,209.95,73.445 +265591,207.72,73.394 +265592,205.58,73.357 +265593,210.96,73.583 +265594,208.63,73.484 +265595,206.4,73.399 +265596,204.26,73.328 +265597,209.64,73.657 +265598,207.31,73.523 +265599,205.08,73.404 +265600,202.94,73.298 +265601,208.31,73.73 +265602,205.99,73.562 +265603,203.76,73.408 +265604,201.63,73.269 +265605,206.98,73.803 +265606,204.67,73.6 +265607,202.45,73.413 +265608,200.31,73.239 +265609,205.65,73.876 +265610,203.34,73.639 +265611,201.13,73.418 +265612,199,73.21 +265613,204.32,73.949 +265614,202.02,73.678 +265615,199.81,73.423 +265616,197.69,73.181 +265617,202.99,74.021 +265618,200.7,73.717 +265619,198.5,73.428 +265620,196.38,73.152 +265621,201.66,74.093 +265622,199.37,73.756 +265623,197.18,73.433 +265624,195.07,73.123 +265625,200.32,74.165 +265626,198.05,73.794 +265627,195.87,73.438 +265628,193.77,73.095 +265629,198.98,74.237 +265630,196.72,73.833 +265631,194.55,73.443 +265632,192.46,73.067 +265633,197.65,74.308 +265634,195.4,73.871 +265635,193.24,73.448 +265636,191.16,73.039 +265637,196.3,74.379 +265638,194.07,73.909 +265639,191.93,73.454 +265640,189.86,73.011 +265641,194.96,74.45 +265642,192.74,73.948 +265643,190.62,73.459 +265644,188.56,72.984 +265645,193.62,74.52 +265646,191.42,73.986 +265647,189.3,73.465 +265648,187.26,72.957 +265649,192.27,74.59 +265650,190.09,74.024 +265651,187.99,73.471 +265652,185.97,72.931 +265653,190.92,74.659 +265654,188.76,74.061 +265655,186.68,73.477 +265656,184.67,72.905 +265657,189.57,74.728 +265658,187.43,74.099 +265659,185.37,73.483 +265660,183.38,72.879 +265661,188.22,74.797 +265662,186.1,74.136 +265663,184.06,73.489 +265664,182.09,72.854 +265665,186.87,74.864 +265666,184.77,74.174 +265667,182.75,73.496 +265668,180.8,72.83 +265669,185.52,74.932 +265670,183.44,74.211 +265671,181.44,73.502 +265672,179.51,72.806 +265673,184.16,74.998 +265674,182.11,74.248 +265675,180.13,73.509 +265676,178.22,72.782 +265677,182.81,75.064 +265678,180.78,74.284 +265679,178.82,73.516 +265680,176.94,72.759 +265681,181.45,75.13 +265682,179.44,74.321 +265683,177.52,73.523 +265684,175.65,72.737 +265685,180.09,75.195 +265686,178.11,74.357 +265687,176.21,73.531 +265688,174.37,72.715 +265689,178.73,75.259 +265690,176.78,74.393 +265691,174.9,73.538 +265692,173.09,72.694 +265693,177.36,75.322 +265694,175.44,74.429 +265695,173.6,73.546 +265696,171.81,72.674 +265697,176,75.385 +265698,174.11,74.465 +265699,172.29,73.555 +265700,170.53,72.654 +265701,174.63,75.447 +265702,172.77,74.5 +265703,170.99,73.563 +265704,169.25,72.635 +265705,173.26,75.508 +265706,171.44,74.535 +265707,169.68,73.572 +265708,167.98,72.617 +265709,171.9,75.569 +265710,170.1,74.57 +265711,168.38,73.58 +265712,166.7,72.599 +265713,170.53,75.628 +265714,168.77,74.605 +265715,167.07,73.59 +265716,165.43,72.583 +265717,169.16,75.687 +265718,167.43,74.639 +265719,165.77,73.599 +265720,164.16,72.567 +265721,167.78,75.745 +265722,166.09,74.673 +265723,164.46,73.609 +265724,162.89,72.552 +265725,166.41,75.802 +265726,164.76,74.707 +265727,163.16,73.619 +265728,161.62,72.538 +265729,165.04,75.858 +265730,163.42,74.741 +265731,161.86,73.629 +265732,160.35,72.525 +265733,163.66,75.914 +265734,162.08,74.774 +265735,160.56,73.64 +265736,159.08,72.512 +265737,162.28,75.968 +265738,160.74,74.807 +265739,159.26,73.651 +265740,157.82,72.501 +265741,160.9,76.022 +265742,159.4,74.839 +265743,157.95,73.662 +265744,156.55,72.49 +265745,159.53,76.074 +265746,158.06,74.872 +265747,156.65,73.674 +265748,155.29,72.481 +265749,158.15,76.126 +265750,156.72,74.904 +265751,155.35,73.685 +265752,154.03,72.472 +265753,156.76,76.177 +265754,155.38,74.935 +265755,154.05,73.698 +265756,152.76,72.464 +265757,155.38,76.226 +265758,154.04,74.967 +265759,152.75,73.71 +265760,151.5,72.458 +265761,154,76.275 +265762,152.7,74.998 +265763,151.45,73.723 +265764,150.24,72.452 +265765,152.62,76.323 +265766,151.36,75.028 +265767,150.15,73.736 +265768,148.98,72.448 +265769,151.23,76.369 +265770,150.02,75.059 +265771,148.85,73.75 +265772,147.73,72.444 +265773,149.84,76.415 +265774,148.68,75.089 +265775,147.55,73.764 +265776,146.47,72.442 +265777,148.46,76.459 +265778,147.34,75.118 +265779,146.25,73.778 +265780,145.21,72.44 +265781,147.07,76.503 +265782,145.99,75.147 +265783,144.96,73.793 +265784,143.96,72.44 +265785,145.68,76.545 +265786,144.65,75.176 +265787,143.66,73.808 +265788,142.7,72.441 +265789,144.29,76.586 +265790,143.31,75.205 +265791,142.36,73.823 +265792,141.45,72.443 +265793,142.91,76.627 +265794,141.96,75.233 +265795,141.06,73.839 +265796,140.2,72.446 +265797,141.52,76.666 +265798,140.62,75.261 +265799,139.76,73.855 +265800,138.94,72.45 +265801,140.12,76.704 +265802,139.28,75.288 +265803,138.47,73.872 +265804,137.69,72.455 +265805,138.73,76.741 +265806,137.93,75.316 +265807,137.17,73.889 +265808,136.44,72.462 +265809,137.34,76.776 +265810,136.59,75.342 +265811,135.87,73.906 +265812,135.19,72.469 +265813,135.95,76.811 +265814,135.25,75.369 +265815,134.58,73.924 +265816,133.94,72.478 +265817,134.56,76.844 +265818,133.9,75.395 +265819,133.28,73.942 +265820,132.69,72.488 +265821,133.17,76.877 +265822,132.56,75.42 +265823,131.98,73.961 +265824,131.44,72.5 +265825,131.77,76.908 +265826,131.21,75.445 +265827,130.69,73.98 +265828,130.19,72.512 +265829,130.38,76.938 +265830,129.87,75.47 +265831,129.39,73.999 +265832,128.94,72.526 +265833,128.98,76.967 +265834,128.52,75.494 +265835,128.09,74.019 +265836,127.7,72.54 +265837,127.59,76.994 +265838,127.18,75.518 +265839,126.8,74.039 +265840,126.45,72.557 +265841,126.2,77.021 +265842,125.83,75.542 +265843,125.5,74.059 +265844,125.2,72.574 +265845,124.8,77.046 +265846,124.49,75.565 +265847,124.2,74.08 +265848,123.95,72.592 +265849,123.41,77.071 +265850,123.14,75.588 +265851,122.91,74.102 +265852,122.71,72.612 +265853,122.01,77.094 +265854,121.8,75.611 +265855,121.61,74.123 +265856,121.46,72.633 +265857,120.62,77.115 +265858,120.45,75.633 +265859,120.32,74.145 +265860,120.21,72.655 +265861,119.22,77.136 +265862,119.11,75.654 +265863,119.02,74.168 +265864,118.97,72.679 +265865,117.83,77.156 +265866,117.76,75.676 +265867,117.72,74.191 +265868,117.72,72.703 +265869,116.43,77.174 +265870,116.41,75.696 +265871,116.43,74.214 +265872,116.47,72.729 +265873,115.04,77.191 +265874,115.07,75.717 +265875,115.13,74.238 +265876,115.23,72.756 +265877,113.65,77.207 +265878,113.72,75.737 +265879,113.84,74.262 +265880,113.98,72.785 +265881,112.25,77.222 +265882,112.38,75.757 +265883,112.54,74.287 +265884,112.73,72.814 +265885,110.86,77.235 +265886,111.03,75.776 +265887,111.24,74.312 +265888,111.49,72.845 +265889,109.46,77.248 +265890,109.69,75.795 +265891,109.95,74.337 +265892,110.24,72.877 +265893,108.07,77.259 +265894,108.34,75.814 +265895,108.65,74.363 +265896,108.99,72.91 +265897,106.68,77.269 +265898,107,75.832 +265899,107.35,74.39 +265900,107.75,72.944 +265901,105.28,77.279 +265902,105.65,75.85 +265903,106.06,74.416 +265904,106.5,72.98 +265905,103.89,77.287 +265906,104.31,75.867 +265907,104.76,74.443 +265908,105.25,73.017 +265909,102.5,77.293 +265910,102.96,75.884 +265911,103.46,74.471 +265912,104,73.055 +265913,101.11,77.299 +265914,101.62,75.901 +265915,102.17,74.498 +265916,102.75,73.094 +265917,99.716,77.304 +265918,100.27,75.917 +265919,100.87,74.527 +265920,101.5,73.134 +265921,98.326,77.307 +265922,98.929,75.933 +265923,99.571,74.555 +265924,100.25,73.175 +265925,96.936,77.31 +265926,97.585,75.948 +265927,98.274,74.584 +265928,99.004,73.218 +265929,95.546,77.311 +265930,96.241,75.964 +265931,96.976,74.613 +265932,97.753,73.262 +265933,94.157,77.311 +265934,94.897,75.979 +265935,95.678,74.643 +265936,96.502,73.306 +265937,92.769,77.31 +265938,93.553,75.993 +265939,94.379,74.673 +265940,95.25,73.352 +265941,91.381,77.309 +265942,92.21,76.007 +265943,93.081,74.704 +265944,93.997,73.399 +265945,89.994,77.306 +265946,90.866,76.021 +265947,91.782,74.734 +265948,92.744,73.447 +265949,88.608,77.302 +265950,89.523,76.034 +265951,90.483,74.765 +265952,91.49,73.497 +265953,87.223,77.297 +265954,88.18,76.048 +265955,89.184,74.797 +265956,90.235,73.547 +265957,85.838,77.291 +265958,86.838,76.06 +265959,87.884,74.829 +265960,88.98,73.598 +265961,84.454,77.284 +265962,85.495,76.073 +265963,86.584,74.861 +265964,87.723,73.65 +265965,83.071,77.276 +265966,84.153,76.085 +265967,85.284,74.893 +265968,86.466,73.704 +265969,81.689,77.268 +265970,82.812,76.097 +265971,83.983,74.926 +265972,85.208,73.758 +265973,80.308,77.258 +265974,81.47,76.108 +265975,82.682,74.959 +265976,83.948,73.813 +265977,78.928,77.247 +265978,80.129,76.12 +265979,81.381,74.993 +265980,82.688,73.869 +265981,77.549,77.236 +265982,78.788,76.13 +265983,80.08,75.027 +265984,81.427,73.927 +265985,76.171,77.223 +265986,77.447,76.141 +265987,78.778,75.061 +265988,80.165,73.985 +265989,74.794,77.21 +265990,76.107,76.151 +265991,77.475,75.095 +265992,78.902,74.044 +265993,73.418,77.196 +265994,74.767,76.162 +265995,76.173,75.13 +265996,77.638,74.103 +265997,72.043,77.181 +265998,73.428,76.171 +265999,74.87,75.165 +266000,76.372,74.164 +266001,70.669,77.165 +266002,72.089,76.181 +266003,73.566,75.2 +266004,75.106,74.226 +266005,69.296,77.149 +266006,70.75,76.19 +266007,72.262,75.236 +266008,73.838,74.288 +266009,67.924,77.131 +266010,69.411,76.199 +266011,70.958,75.272 +266012,72.569,74.351 +266013,66.554,77.113 +266014,68.073,76.208 +266015,69.653,75.308 +266016,71.299,74.415 +266017,65.184,77.095 +266018,66.736,76.216 +266019,68.348,75.344 +266020,70.027,74.48 +266021,63.816,77.075 +266022,65.398,76.225 +266023,67.043,75.381 +266024,68.754,74.545 +266025,62.45,77.055 +266026,64.061,76.233 +266027,65.737,75.417 +266028,67.48,74.611 +266029,61.084,77.034 +266030,62.725,76.241 +266031,64.43,75.454 +266032,66.205,74.678 +266033,59.72,77.013 +266034,61.389,76.248 +266035,63.123,75.492 +266036,64.928,74.745 +266037,58.357,76.991 +266038,60.053,76.256 +266039,61.816,75.529 +266040,63.65,74.813 +266041,56.995,76.968 +266042,58.718,76.263 +266043,60.508,75.567 +266044,62.37,74.882 +266045,55.635,76.945 +266046,57.383,76.27 +266047,59.199,75.605 +266048,61.089,74.951 +266049,54.276,76.921 +266050,56.049,76.277 +266051,57.89,75.643 +266052,59.807,75.021 +266053,52.918,76.897 +266054,54.715,76.284 +266055,56.581,75.681 +266056,58.523,75.091 +266057,51.562,76.872 +266058,53.382,76.29 +266059,55.271,75.719 +266060,57.237,75.162 +266061,50.207,76.847 +266062,52.049,76.297 +266063,53.961,75.758 +266064,55.95,75.233 +266065,48.854,76.821 +266066,50.716,76.303 +266067,52.65,75.797 +266068,54.662,75.304 +266069,47.502,76.795 +266070,49.384,76.309 +266071,51.338,75.835 +266072,53.372,75.377 +266073,46.151,76.768 +266074,48.053,76.315 +266075,50.026,75.874 +266076,52.08,75.449 +266077,44.802,76.741 +266078,46.721,76.321 +266079,48.714,75.914 +266080,50.787,75.522 +266081,43.455,76.714 +266082,45.391,76.327 +266083,47.401,75.953 +266084,49.492,75.595 +266085,42.109,76.686 +266086,44.061,76.332 +266087,46.087,75.992 +266088,48.195,75.668 +266089,40.764,76.658 +266090,42.731,76.338 +266091,44.773,76.032 +266092,46.897,75.742 +266093,39.421,76.63 +266094,41.402,76.343 +266095,43.458,76.071 +266096,45.597,75.816 +266097,38.079,76.602 +266098,40.073,76.349 +266099,42.143,76.111 +266100,44.296,75.89 +266101,36.739,76.573 +266102,38.745,76.354 +266103,40.827,76.151 +266104,42.993,75.965 +266105,35.401,76.544 +266106,37.418,76.36 +266107,39.511,76.19 +266108,41.688,76.039 +266109,34.064,76.515 +266110,36.091,76.365 +266111,38.194,76.23 +266112,40.382,76.114 +266113,32.728,76.486 +266114,34.764,76.37 +266115,36.876,76.27 +266116,39.074,76.189 +266117,31.394,76.457 +266118,33.438,76.375 +266119,35.558,76.31 +266120,37.764,76.264 +266121,30.062,76.428 +266122,32.112,76.38 +266123,34.239,76.35 +266124,36.453,76.339 +266125,28.731,76.399 +266126,30.787,76.386 +266127,32.92,76.39 +266128,35.139,76.414 +266129,27.402,76.369 +266130,29.463,76.391 +266131,31.6,76.43 +266132,33.824,76.489 +266133,26.074,76.34 +266134,28.139,76.396 +266135,30.28,76.47 +266136,32.508,76.564 +266137,24.748,76.31 +266138,26.815,76.401 +266139,28.959,76.51 +266140,31.189,76.639 +266141,23.424,76.281 +266142,25.492,76.406 +266143,27.637,76.55 +266144,29.869,76.714 +266145,22.101,76.252 +266146,24.17,76.412 +266147,26.315,76.59 +266148,28.548,76.788 +266149,20.779,76.223 +266150,22.848,76.417 +266151,24.993,76.63 +266152,27.224,76.863 +266153,19.459,76.194 +266154,21.527,76.422 +266155,23.669,76.669 +266156,25.899,76.937 +266157,18.141,76.165 +266158,20.206,76.428 +266159,22.346,76.709 +266160,24.572,77.011 +266161,16.825,76.137 +266162,18.885,76.433 +266163,21.021,76.749 +266164,23.243,77.085 +266165,15.509,76.108 +266166,17.565,76.439 +266167,19.696,76.788 +266168,21.913,77.159 +266169,14.196,76.08 +266170,16.246,76.445 +266171,18.371,76.828 +266172,20.581,77.232 +266173,12.884,76.052 +266174,14.927,76.45 +266175,17.045,76.867 +266176,19.247,77.305 +266177,11.573,76.025 +266178,13.609,76.456 +266179,15.718,76.907 +266180,17.912,77.378 +266181,10.264,75.998 +266182,12.291,76.462 +266183,14.391,76.946 +266184,16.575,77.451 +266185,8.9568,75.971 +266186,10.974,76.469 +266187,13.063,76.985 +266188,15.236,77.523 +266189,7.6509,75.944 +266190,9.6568,76.475 +266191,11.735,77.024 +266192,13.896,77.594 +266193,6.3465,75.918 +266194,8.3405,76.481 +266195,10.406,77.063 +266196,12.554,77.665 +266197,5.0436,75.893 +266198,7.0246,76.488 +266199,9.0763,77.102 +266200,11.21,77.736 +266201,3.7423,75.867 +266202,5.7093,76.495 +266203,7.7463,77.14 +266204,9.8649,77.806 +266205,2.4424,75.843 +266206,4.3944,76.502 +266207,6.4158,77.179 +266208,8.518,77.876 +266209,1.1439,75.819 +266210,3.08,76.509 +266211,5.0847,77.217 +266212,7.1695,77.945 +266213,359.85,75.795 +266214,1.7661,76.516 +266215,3.7531,77.255 +266216,5.8194,78.013 +266217,358.55,75.772 +266218,0.45264,76.523 +266219,2.421,77.293 +266220,4.4678,78.081 +266221,357.26,75.75 +266222,359.14,76.531 +266223,1.0884,77.33 +266224,3.1146,78.149 +266225,355.96,75.728 +266226,357.83,76.539 +266227,359.76,77.368 +266228,1.7599,78.215 +266229,354.67,75.707 +266230,356.52,76.547 +266231,358.42,77.405 +266232,0.40366,78.281 +266233,353.38,75.686 +266234,355.2,76.556 +266235,357.09,77.442 +266236,359.05,78.347 +266237,352.1,75.666 +266238,353.89,76.564 +266239,355.75,77.479 +266240,357.69,78.411 +266241,350.81,75.647 +266242,352.58,76.573 +266243,354.42,77.515 +266244,356.33,78.475 +266245,349.52,75.629 +266246,351.27,76.582 +266247,353.08,77.552 +266248,354.96,78.538 +266249,348.24,75.611 +266250,349.96,76.591 +266251,351.75,77.588 +266252,353.6,78.601 +266253,346.95,75.594 +266254,348.65,76.601 +266255,350.41,77.623 +266256,352.24,78.662 +266257,345.67,75.578 +266258,347.34,76.611 +266259,349.07,77.659 +266260,350.87,78.723 +266261,344.39,75.563 +266262,346.03,76.621 +266263,347.73,77.694 +266264,349.5,78.783 +266265,343.11,75.549 +266266,344.73,76.632 +266267,346.4,77.729 +266268,348.13,78.842 +266269,341.83,75.535 +266270,343.42,76.642 +266271,345.06,77.764 +266272,346.76,78.9 +266273,340.56,75.522 +266274,342.11,76.654 +266275,343.72,77.798 +266276,345.39,78.957 +266277,339.28,75.511 +266278,340.8,76.665 +266279,342.38,77.832 +266280,344.02,79.014 +266281,338.01,75.5 +266282,339.5,76.677 +266283,341.04,77.866 +266284,342.65,79.069 +266285,336.73,75.49 +266286,338.19,76.689 +266287,339.7,77.9 +266288,341.27,79.124 +266289,335.46,75.481 +266290,336.88,76.701 +266291,338.36,77.933 +266292,339.89,79.177 +266293,334.19,75.473 +266294,335.58,76.714 +266295,337.02,77.966 +266296,338.52,79.23 +266297,332.92,75.466 +266298,334.27,76.727 +266299,335.68,77.998 +266300,337.14,79.281 +266301,331.65,75.461 +266302,332.97,76.74 +266303,334.34,78.03 +266304,335.76,79.332 +266305,330.38,75.456 +266306,331.66,76.754 +266307,332.99,78.062 +266308,334.38,79.381 +266309,329.11,75.452 +266310,330.36,76.768 +266311,331.65,78.094 +266312,333,79.43 +266313,327.85,75.449 +266314,329.06,76.782 +266315,330.31,78.125 +266316,331.61,79.477 +266317,326.58,75.447 +266318,327.75,76.797 +266319,328.97,78.156 +266320,330.23,79.524 +266321,325.32,75.447 +266322,326.45,76.812 +266323,327.62,78.186 +266324,328.85,79.569 +266325,324.05,75.447 +266326,325.14,76.828 +266327,326.28,78.216 +266328,327.46,79.613 +266329,322.79,75.449 +266330,323.84,76.844 +266331,324.94,78.246 +266332,326.08,79.656 +266333,321.53,75.452 +266334,322.54,76.86 +266335,323.59,78.276 +266336,324.69,79.698 +266337,320.27,75.456 +266338,321.24,76.877 +266339,322.25,78.305 +266340,323.3,79.739 +266341,319.01,75.461 +266342,319.93,76.894 +266343,320.9,78.333 +266344,321.91,79.779 +266345,317.75,75.467 +266346,318.63,76.911 +266347,319.56,78.361 +266348,320.53,79.818 +266349,316.49,75.474 +266350,317.33,76.929 +266351,318.21,78.389 +266352,319.14,79.855 +266353,315.23,75.483 +266354,316.03,76.947 +266355,316.87,78.417 +266356,317.75,79.892 +266357,313.97,75.493 +266358,314.73,76.966 +266359,315.52,78.444 +266360,316.35,79.927 +266361,312.71,75.504 +266362,313.43,76.985 +266363,314.17,78.471 +266364,314.96,79.961 +266365,311.46,75.516 +266366,312.12,77.004 +266367,312.83,78.497 +266368,313.57,79.994 +266369,310.2,75.53 +266370,310.82,77.024 +266371,311.48,78.523 +266372,312.18,80.0253 +266373,308.94,75.544 +266374,309.52,77.045 +266375,310.14,78.549 +266376,310.79,80.0558 +266377,307.69,75.56 +266378,308.22,77.065 +266379,308.79,78.574 +266380,309.39,80.0851 +266381,306.43,75.577 +266382,306.92,77.086 +266383,307.44,78.599 +266384,308,80.1133 +266385,305.18,75.595 +266386,305.62,77.108 +266387,306.09,78.623 +266388,306.61,80.1402 +266389,303.92,75.615 +266390,304.32,77.13 +266391,304.75,78.647 +266392,305.21,80.166 +266393,302.67,75.636 +266394,303.02,77.152 +266395,303.4,78.671 +266396,303.82,80.1905 +266397,301.42,75.658 +266398,301.72,77.175 +266399,302.05,78.694 +266400,302.42,80.2139 +266401,300.16,75.681 +266402,300.42,77.198 +266403,300.71,78.717 +266404,301.03,80.2361 +266405,298.91,75.706 +266406,299.12,77.222 +266407,299.36,78.739 +266408,299.63,80.2571 +266409,297.66,75.732 +266410,297.82,77.246 +266411,298.01,78.761 +266412,298.24,80.2769 +266413,296.4,75.759 +266414,296.52,77.27 +266415,296.66,78.783 +266416,296.84,80.2955 +266417,295.15,75.787 +266418,295.22,77.295 +266419,295.32,78.804 +266420,295.45,80.3129 +266421,293.9,75.817 +266422,293.92,77.32 +266423,293.97,78.825 +266424,294.05,80.3291 +266425,292.64,75.847 +266426,292.62,77.346 +266427,292.62,78.845 +266428,292.66,80.3442 +266429,291.39,75.879 +266430,291.32,77.372 +266431,291.27,78.865 +266432,291.26,80.3581 +266433,290.14,75.913 +266434,290.02,77.398 +266435,289.93,78.885 +266436,289.87,80.3708 +266437,288.88,75.947 +266438,288.71,77.425 +266439,288.58,78.904 +266440,288.47,80.3823 +266441,287.63,75.983 +266442,287.41,77.452 +266443,287.23,78.923 +266444,287.08,80.3927 +266445,286.38,76.02 +266446,286.11,77.48 +266447,285.88,78.941 +266448,285.68,80.4019 +266449,285.12,76.058 +266450,284.81,77.508 +266451,284.53,78.959 +266452,284.29,80.41 +266453,283.87,76.097 +266454,283.51,77.537 +266455,283.19,78.977 +266456,282.89,80.4169 +266457,282.62,76.138 +266458,282.21,77.566 +266459,281.84,78.994 +266460,281.5,80.4227 +266461,281.36,76.179 +266462,280.91,77.595 +266463,280.49,79.011 +266464,280.11,80.4274 +266465,280.11,76.222 +266466,279.61,77.625 +266467,279.15,79.028 +266468,278.72,80.4309 +266469,278.85,76.266 +266470,278.31,77.655 +266471,277.8,79.044 +266472,277.32,80.4334 +266473,277.59,76.312 +266474,277.01,77.685 +266475,276.45,79.06 +266476,275.93,80.4348 +266477,276.34,76.358 +266478,275.7,77.716 +266479,275.1,79.076 +266480,274.54,80.4351 +266481,275.08,76.405 +266482,274.4,77.747 +266483,273.76,79.091 +266484,273.15,80.4343 +266485,273.82,76.454 +266486,273.1,77.779 +266487,272.41,79.106 +266488,271.76,80.4324 +266489,272.57,76.504 +266490,271.8,77.811 +266491,271.07,79.12 +266492,270.37,80.4295 +266493,271.31,76.554 +266494,270.5,77.843 +266495,269.72,79.134 +266496,268.98,80.4256 +266497,270.05,76.606 +266498,269.19,77.876 +266499,268.37,79.148 +266500,267.59,80.4207 +266501,268.79,76.659 +266502,267.89,77.909 +266503,267.03,79.161 +266504,266.2,80.4147 +266505,267.53,76.713 +266506,266.59,77.942 +266507,265.68,79.174 +266508,264.81,80.4078 +266509,266.27,76.768 +266510,265.28,77.976 +266511,264.34,79.187 +266512,263.43,80.3999 +266513,265.01,76.824 +266514,263.98,78.01 +266515,262.99,79.199 +266516,262.04,80.391 +266517,263.74,76.881 +266518,262.67,78.044 +266519,261.65,79.212 +266520,260.66,80.3812 +266521,262.48,76.939 +266522,261.37,78.079 +266523,260.3,79.223 +266524,259.27,80.3704 +266525,261.22,76.998 +266526,260.07,78.114 +266527,258.96,79.235 +266528,257.89,80.3588 +266529,259.95,77.058 +266530,258.76,78.149 +266531,257.61,79.246 +266532,256.51,80.3462 +266533,258.68,77.119 +266534,257.45,78.185 +266535,256.27,79.257 +266536,255.12,80.3328 +266537,257.42,77.181 +266538,256.15,78.221 +266539,254.93,79.268 +266540,253.74,80.3186 +266541,256.15,77.243 +266542,254.84,78.257 +266543,253.58,79.278 +266544,252.36,80.3035 +266545,254.88,77.307 +266546,253.54,78.294 +266547,252.24,79.288 +266548,250.99,80.2875 +266549,253.61,77.371 +266550,252.23,78.331 +266551,250.9,79.298 +266552,249.61,80.2708 +266553,252.34,77.436 +266554,250.92,78.368 +266555,249.55,79.308 +266556,248.23,80.2533 +266557,251.07,77.502 +266558,249.62,78.405 +266559,248.21,79.317 +266560,246.86,80.2351 +266561,249.79,77.569 +266562,248.31,78.443 +266563,246.87,79.326 +266564,245.48,80.2161 +266565,248.52,77.636 +266566,247,78.481 +266567,245.53,79.335 +266568,244.11,80.1964 +266569,247.24,77.704 +266570,245.69,78.519 +266571,244.19,79.343 +266572,242.74,80.176 +266573,245.97,77.773 +266574,244.38,78.557 +266575,242.85,79.352 +266576,241.36,80.155 +266577,244.69,77.842 +266578,243.07,78.596 +266579,241.51,79.36 +266580,239.99,80.1333 +266581,243.41,77.913 +266582,241.76,78.634 +266583,240.17,79.368 +266584,238.63,80.111 +266585,242.13,77.983 +266586,240.45,78.673 +266587,238.83,79.376 +266588,237.26,80.088 +266589,240.84,78.055 +266590,239.14,78.713 +266591,237.49,79.383 +266592,235.89,80.0646 +266593,239.56,78.127 +266594,237.83,78.752 +266595,236.15,79.391 +266596,234.53,80.0405 +266597,238.28,78.199 +266598,236.52,78.792 +266599,234.81,79.398 +266600,233.16,80.0159 +266601,236.99,78.272 +266602,235.2,78.831 +266603,233.48,79.405 +266604,231.8,79.991 +266605,235.7,78.345 +266606,233.89,78.871 +266607,232.14,79.412 +266608,230.44,79.965 +266609,234.41,78.419 +266610,232.58,78.911 +266611,230.8,79.419 +266612,229.08,79.939 +266613,233.12,78.494 +266614,231.26,78.952 +266615,229.46,79.425 +266616,227.72,79.913 +266617,231.83,78.569 +266618,229.95,78.992 +266619,228.13,79.432 +266620,226.36,79.886 +266621,230.54,78.644 +266622,228.63,79.032 +266623,226.79,79.438 +266624,225.01,79.859 +266625,229.25,78.719 +266626,227.32,79.073 +266627,225.46,79.445 +266628,223.65,79.831 +266629,227.95,78.795 +266630,226,79.114 +266631,224.12,79.451 +266632,222.3,79.803 +266633,226.65,78.871 +266634,224.69,79.155 +266635,222.79,79.457 +266636,220.95,79.775 +266637,225.35,78.947 +266638,223.37,79.196 +266639,221.45,79.463 +266640,219.6,79.747 +266641,224.05,79.024 +266642,222.05,79.237 +266643,220.12,79.469 +266644,218.25,79.718 +266645,222.75,79.101 +266646,220.74,79.278 +266647,218.79,79.475 +266648,216.9,79.689 +266649,221.45,79.178 +266650,219.42,79.319 +266651,217.46,79.48 +266652,215.56,79.66 +266653,220.14,79.255 +266654,218.1,79.36 +266655,216.12,79.486 +266656,214.21,79.631 +266657,218.83,79.332 +266658,216.78,79.401 +266659,214.79,79.492 +266660,212.87,79.601 +266661,217.53,79.41 +266662,215.46,79.443 +266663,213.46,79.498 +266664,211.53,79.572 +266665,216.22,79.487 +266666,214.14,79.484 +266667,212.13,79.503 +266668,210.19,79.542 +266669,214.9,79.565 +266670,212.82,79.525 +266671,210.8,79.509 +266672,208.85,79.513 +266673,213.59,79.642 +266674,211.49,79.567 +266675,209.47,79.515 +266676,207.51,79.483 +266677,212.28,79.719 +266678,210.17,79.608 +266679,208.14,79.52 +266680,206.18,79.453 +266681,210.96,79.797 +266682,208.85,79.649 +266683,206.81,79.526 +266684,204.84,79.424 +266685,209.64,79.874 +266686,207.53,79.691 +266687,205.49,79.532 +266688,203.51,79.394 +266689,208.32,79.951 +266690,206.2,79.732 +266691,204.16,79.537 +266692,202.18,79.365 +266693,207,80.0283 +266694,204.88,79.773 +266695,202.83,79.543 +266696,200.85,79.335 +266697,205.68,80.1051 +266698,203.55,79.815 +266699,201.5,79.549 +266700,199.52,79.306 +266701,204.35,80.1818 +266702,202.23,79.856 +266703,200.18,79.555 +266704,198.19,79.277 +266705,203.03,80.2582 +266706,200.9,79.897 +266707,198.85,79.561 +266708,196.87,79.248 +266709,201.7,80.3344 +266710,199.57,79.938 +266711,197.53,79.567 +266712,195.54,79.22 +266713,200.37,80.4102 +266714,198.25,79.979 +266715,196.2,79.573 +266716,194.22,79.191 +266717,199.04,80.4858 +266718,196.92,80.0195 +266719,194.88,79.58 +266720,192.9,79.163 +266721,197.7,80.561 +266722,195.59,80.0603 +266723,193.55,79.586 +266724,191.58,79.135 +266725,196.37,80.6359 +266726,194.26,80.1009 +266727,192.23,79.592 +266728,190.27,79.108 +266729,195.03,80.7103 +266730,192.93,80.1413 +266731,190.91,79.599 +266732,188.95,79.081 +266733,193.7,80.7843 +266734,191.6,80.1817 +266735,189.59,79.606 +266736,187.63,79.054 +266737,192.36,80.8579 +266738,190.27,80.2219 +266739,188.26,79.613 +266740,186.32,79.028 +266741,191.02,80.931 +266742,188.94,80.262 +266743,186.94,79.62 +266744,185.01,79.002 +266745,189.67,81.0035 +266746,187.61,80.3019 +266747,185.62,79.627 +266748,183.7,78.977 +266749,188.33,81.0756 +266750,186.28,80.3416 +266751,184.3,79.635 +266752,182.39,78.952 +266753,186.98,81.1471 +266754,184.94,80.3812 +266755,182.98,79.642 +266756,181.08,78.927 +266757,185.64,81.218 +266758,183.61,80.4205 +266759,181.66,79.65 +266760,179.78,78.904 +266761,184.29,81.2882 +266762,182.28,80.4597 +266763,180.34,79.658 +266764,178.47,78.88 +266765,182.94,81.3579 +266766,180.94,80.4987 +266767,179.02,79.666 +266768,177.17,78.858 +266769,181.59,81.4269 +266770,179.61,80.5375 +266771,177.71,79.675 +266772,175.87,78.836 +266773,180.23,81.4952 +266774,178.27,80.576 +266775,176.39,79.683 +266776,174.57,78.814 +266777,178.88,81.5628 +266778,176.94,80.6143 +266779,175.07,79.692 +266780,173.27,78.794 +266781,177.52,81.6296 +266782,175.6,80.6524 +266783,173.75,79.701 +266784,171.97,78.774 +266785,176.16,81.6958 +266786,174.26,80.6902 +266787,172.44,79.711 +266788,170.67,78.754 +266789,174.8,81.7611 +266790,172.93,80.7278 +266791,171.12,79.72 +266792,169.38,78.736 +266793,173.44,81.8256 +266794,171.59,80.7652 +266795,169.81,79.73 +266796,168.08,78.718 +266797,172.08,81.8893 +266798,170.25,80.8022 +266799,168.49,79.74 +266800,166.79,78.701 +266801,170.72,81.9522 +266802,168.91,80.839 +266803,167.18,79.751 +266804,165.5,78.685 +266805,169.35,82.0142 +266806,167.57,80.8755 +266807,165.86,79.761 +266808,164.21,78.67 +266809,167.99,82.0753 +266810,166.23,80.9118 +266811,164.55,79.772 +266812,162.92,78.655 +266813,166.62,82.1355 +266814,164.89,80.9477 +266815,163.23,79.784 +266816,161.63,78.642 +266817,165.25,82.1948 +266818,163.55,80.9833 +266819,161.92,79.795 +266820,160.35,78.629 +266821,163.88,82.2532 +266822,162.21,81.0187 +266823,160.61,79.807 +266824,159.06,78.617 +266825,162.51,82.3105 +266826,160.87,81.0537 +266827,159.3,79.82 +266828,157.78,78.606 +266829,161.14,82.367 +266830,159.53,81.0884 +266831,157.98,79.832 +266832,156.5,78.597 +266833,159.76,82.4224 +266834,158.19,81.1227 +266835,156.67,79.845 +266836,155.21,78.588 +266837,158.39,82.4768 +266838,156.84,81.1568 +266839,155.36,79.858 +266840,153.93,78.58 +266841,157.01,82.5301 +266842,155.5,81.1905 +266843,154.05,79.872 +266844,152.65,78.573 +266845,155.64,82.5825 +266846,154.16,81.2239 +266847,152.74,79.886 +266848,151.37,78.567 +266849,154.26,82.6337 +266850,152.81,81.2569 +266851,151.43,79.9 +266852,150.1,78.562 +266853,152.88,82.6839 +266854,151.47,81.2895 +266855,150.12,79.915 +266856,148.82,78.558 +266857,151.5,82.733 +266858,150.12,81.3218 +266859,148.81,79.93 +266860,147.54,78.556 +266861,150.12,82.7811 +266862,148.78,81.3538 +266863,147.5,79.945 +266864,146.27,78.554 +266865,148.73,82.8279 +266866,147.43,81.3854 +266867,146.19,79.961 +266868,145,78.554 +266869,147.35,82.8737 +266870,146.09,81.4166 +266871,144.88,79.977 +266872,143.72,78.554 +266873,145.97,82.9183 +266874,144.74,81.4474 +266875,143.57,79.994 +266876,142.45,78.556 +266877,144.58,82.9618 +266878,143.4,81.4779 +266879,142.26,80.0106 +266880,141.18,78.559 +266881,143.2,83.0042 +266882,142.05,81.5079 +266883,140.96,80.0279 +266884,139.91,78.563 +266885,141.81,83.0453 +266886,140.7,81.5376 +266887,139.65,80.0456 +266888,138.64,78.568 +266889,140.42,83.0853 +266890,139.36,81.5669 +266891,138.34,80.0637 +266892,137.37,78.575 +266893,139.03,83.1241 +266894,138.01,81.5958 +266895,137.03,80.0822 +266896,136.1,78.583 +266897,137.64,83.1617 +266898,136.66,81.6243 +266899,135.73,80.1011 +266900,134.83,78.591 +266901,136.25,83.1981 +266902,135.31,81.6525 +266903,134.42,80.1204 +266904,133.57,78.601 +266905,134.86,83.2333 +266906,133.96,81.6802 +266907,133.11,80.1401 +266908,132.3,78.613 +266909,133.47,83.2673 +266910,132.62,81.7075 +266911,131.8,80.1602 +266912,131.03,78.625 +266913,132.08,83.3001 +266914,131.27,81.7344 +266915,130.5,80.1808 +266916,129.77,78.639 +266917,130.69,83.3316 +266918,129.92,81.7609 +266919,129.19,80.2017 +266920,128.5,78.654 +266921,129.3,83.3619 +266922,128.57,81.787 +266923,127.89,80.2231 +266924,127.24,78.67 +266925,127.9,83.391 +266926,127.22,81.8127 +266927,126.58,80.2449 +266928,125.98,78.688 +266929,126.51,83.4189 +266930,125.87,81.8379 +266931,125.27,80.2671 +266932,124.71,78.707 +266933,125.12,83.4455 +266934,124.52,81.8628 +266935,123.97,80.2898 +266936,123.45,78.727 +266937,123.72,83.4709 +266938,123.17,81.8873 +266939,122.66,80.3128 +266940,122.19,78.748 +266941,122.33,83.495 +266942,121.82,81.9113 +266943,121.36,80.3363 +266944,120.93,78.77 +266945,120.93,83.5179 +266946,120.47,81.9349 +266947,120.05,80.3602 +266948,119.66,78.794 +266949,119.54,83.5396 +266950,119.12,81.9581 +266951,118.74,80.3846 +266952,118.4,78.819 +266953,118.14,83.5601 +266954,117.77,81.9809 +266955,117.44,80.4093 +266956,117.14,78.846 +266957,116.75,83.5793 +266958,116.42,82.0033 +266959,116.13,80.4345 +266960,115.88,78.874 +266961,115.35,83.5972 +266962,115.07,82.0253 +266963,114.83,80.4601 +266964,114.62,78.902 +266965,113.95,83.614 +266966,113.72,82.0469 +266967,113.52,80.4862 +266968,113.36,78.933 +266969,112.56,83.6295 +266970,112.37,82.068 +266971,112.22,80.5126 +266972,112.1,78.964 +266973,111.16,83.6438 +266974,111.02,82.0888 +266975,110.91,80.5395 +266976,110.84,78.997 +266977,109.76,83.6569 +266978,109.67,82.1091 +266979,109.61,80.5668 +266980,109.57,79.031 +266981,108.37,83.6688 +266982,108.32,82.129 +266983,108.3,80.5945 +266984,108.31,79.066 +266985,106.97,83.6794 +266986,106.97,82.1485 +266987,106.99,80.6226 +266988,107.05,79.103 +266989,105.58,83.6889 +266990,105.62,82.1677 +266991,105.69,80.6511 +266992,105.79,79.14 +266993,104.18,83.6972 +266994,104.27,82.1864 +266995,104.38,80.6801 +266996,104.53,79.179 +266997,102.78,83.7043 +266998,102.91,82.2047 +266999,103.08,80.7095 +267000,103.27,79.22 +267001,101.39,83.7102 +267002,101.56,82.2227 +267003,101.77,80.7392 +267004,102.01,79.261 +267005,99.993,83.715 +267006,100.21,82.2402 +267007,100.46,80.7694 +267008,100.75,79.304 +267009,98.598,83.7186 +267010,98.863,82.2573 +267011,99.158,80.8 +267012,99.484,79.348 +267013,97.203,83.7211 +267014,97.512,82.2741 +267015,97.852,80.8309 +267016,98.222,79.393 +267017,95.808,83.7224 +267018,96.162,82.2905 +267019,96.546,80.8623 +267020,96.96,79.439 +267021,94.414,83.7226 +267022,94.812,82.3065 +267023,95.239,80.894 +267024,95.697,79.487 +267025,93.02,83.7217 +267026,93.461,82.3221 +267027,93.933,80.9262 +267028,94.434,79.535 +267029,91.626,83.7197 +267030,92.111,82.3374 +267031,92.626,80.9587 +267032,93.17,79.585 +267033,90.233,83.7166 +267034,90.761,82.3523 +267035,91.319,80.9916 +267036,91.906,79.636 +267037,88.841,83.7124 +267038,89.411,82.3668 +267039,90.011,81.0248 +267040,90.642,79.688 +267041,87.449,83.7072 +267042,88.062,82.381 +267043,88.704,81.0585 +267044,89.377,79.741 +267045,86.057,83.7009 +267046,86.712,82.3948 +267047,87.396,81.0925 +267048,88.111,79.796 +267049,84.666,83.6937 +267050,85.363,82.4083 +267051,86.089,81.1268 +267052,86.845,79.851 +267053,83.276,83.6854 +267054,84.013,82.4215 +267055,84.78,81.1615 +267056,85.578,79.907 +267057,81.886,83.6761 +267058,82.664,82.4343 +267059,83.472,81.1966 +267060,84.311,79.965 +267061,80.497,83.6658 +267062,81.315,82.4468 +267063,82.164,81.232 +267064,83.043,80.0233 +267065,79.109,83.6546 +267066,79.967,82.4589 +267067,80.855,81.2677 +267068,81.774,80.0828 +267069,77.722,83.6424 +267070,78.618,82.4707 +267071,79.546,81.3038 +267072,80.504,80.1433 +267073,76.335,83.6293 +267074,77.27,82.4823 +267075,78.236,81.3402 +267076,79.234,80.2048 +267077,74.949,83.6153 +267078,75.922,82.4935 +267079,76.927,81.3769 +267080,77.963,80.2672 +267081,73.564,83.6004 +267082,74.574,82.5044 +267083,75.617,81.4139 +267084,76.691,80.3306 +267085,72.179,83.5846 +267086,73.227,82.515 +267087,74.306,81.4512 +267088,75.419,80.3949 +267089,70.796,83.568 +267090,71.879,82.5254 +267091,72.996,81.4888 +267092,74.145,80.4601 +267093,69.413,83.5505 +267094,70.532,82.5354 +267095,71.685,81.5267 +267096,72.871,80.5262 +267097,68.031,83.5323 +267098,69.186,82.5452 +267099,70.373,81.5648 +267100,71.595,80.5931 +267101,66.65,83.5133 +267102,67.839,82.5547 +267103,69.062,81.6033 +267104,70.319,80.6609 +267105,65.271,83.4935 +267106,66.493,82.564 +267107,67.75,81.642 +267108,69.042,80.7294 +267109,63.892,83.4729 +267110,65.147,82.573 +267111,66.437,81.681 +267112,67.763,80.7988 +267113,62.514,83.4517 +267114,63.802,82.5818 +267115,65.125,81.7202 +267116,66.484,80.8689 +267117,61.137,83.4297 +267118,62.456,82.5903 +267119,63.812,81.7596 +267120,65.203,80.9397 +267121,59.761,83.4071 +267122,61.112,82.5986 +267123,62.498,81.7993 +267124,63.922,81.0112 +267125,58.387,83.3838 +267126,59.767,82.6067 +267127,61.184,81.8393 +267128,62.639,81.0835 +267129,57.013,83.3599 +267130,58.423,82.6146 +267131,59.87,81.8794 +267132,61.355,81.1564 +267133,55.641,83.3354 +267134,57.079,82.6223 +267135,58.555,81.9197 +267136,60.071,81.2299 +267137,54.27,83.3103 +267138,55.735,82.6298 +267139,57.24,81.9603 +267140,58.784,81.304 +267141,52.9,83.2847 +267142,54.392,82.6371 +267143,55.924,82.001 +267144,57.497,81.3787 +267145,51.531,83.2585 +267146,53.049,82.6442 +267147,54.608,82.042 +267148,56.209,81.4539 +267149,50.163,83.2318 +267150,51.707,82.6512 +267151,53.292,82.0831 +267152,54.919,81.5297 +267153,48.796,83.2047 +267154,50.365,82.6579 +267155,51.975,82.1243 +267156,53.628,81.606 +267157,47.431,83.1771 +267158,49.023,82.6646 +267159,50.658,82.1657 +267160,52.335,81.6827 +267161,46.067,83.1491 +267162,47.682,82.6711 +267163,49.34,82.2073 +267164,51.042,81.7599 +267165,44.704,83.1207 +267166,46.341,82.6775 +267167,48.021,82.249 +267168,49.747,81.8375 +267169,43.343,83.0919 +267170,45.001,82.6837 +267171,46.703,82.2908 +267172,48.45,81.9155 +267173,41.983,83.0628 +267174,43.661,82.6899 +267175,45.383,82.3327 +267176,47.153,81.9938 +267177,40.624,83.0333 +267178,42.321,82.6959 +267179,44.064,82.3748 +267180,45.854,82.0724 +267181,39.266,83.0036 +267182,40.982,82.7018 +267183,42.744,82.4169 +267184,44.553,82.1514 +267185,37.91,82.9736 +267186,39.643,82.7077 +267187,41.423,82.4592 +267188,43.252,82.2306 +267189,36.555,82.9434 +267190,38.305,82.7134 +267191,40.102,82.5015 +267192,41.948,82.31 +267193,35.201,82.913 +267194,36.967,82.7191 +267195,38.78,82.5439 +267196,40.644,82.3897 +267197,33.849,82.8823 +267198,35.629,82.7248 +267199,37.458,82.5863 +267200,39.337,82.4695 +267201,32.498,82.8516 +267202,34.292,82.7304 +267203,36.135,82.6288 +267204,38.03,82.5495 +267205,31.149,82.8207 +267206,32.956,82.7359 +267207,34.812,82.6713 +267208,36.721,82.6295 +267209,29.801,82.7897 +267210,31.62,82.7414 +267211,33.488,82.7139 +267212,35.41,82.7097 +267213,28.454,82.7587 +267214,30.284,82.7469 +267215,32.164,82.7565 +267216,34.098,82.7899 +267217,27.109,82.7276 +267218,28.949,82.7524 +267219,30.839,82.7991 +267220,32.785,82.8702 +267221,25.765,82.6965 +267222,27.614,82.7579 +267223,29.514,82.8417 +267224,31.47,82.9504 +267225,24.423,82.6654 +267226,26.279,82.7634 +267227,28.188,82.8842 +267228,30.153,83.0306 +267229,23.082,82.6343 +267230,24.945,82.769 +267231,26.862,82.9268 +267232,28.835,83.1107 +267233,21.742,82.6034 +267234,23.612,82.7745 +267235,25.535,82.9693 +267236,27.515,83.1907 +267237,20.404,82.5725 +267238,22.279,82.7801 +267239,24.207,83.0118 +267240,26.194,83.2706 +267241,19.067,82.5418 +267242,20.946,82.7857 +267243,22.879,83.0543 +267244,24.872,83.3504 +267245,17.732,82.5112 +267246,19.614,82.7914 +267247,21.551,83.0966 +267248,23.547,83.4299 +267249,16.398,82.4809 +267250,18.283,82.7972 +267251,20.222,83.139 +267252,22.222,83.5092 +267253,15.066,82.4507 +267254,16.951,82.803 +267255,18.892,83.1812 +267256,20.894,83.5883 +267257,13.735,82.4208 +267258,15.621,82.8089 +267259,17.562,83.2233 +267260,19.565,83.6671 +267261,12.405,82.3911 +267262,14.29,82.8149 +267263,16.231,83.2654 +267264,18.235,83.7456 +267265,11.077,82.3618 +267266,12.961,82.821 +267267,14.9,83.3073 +267268,16.903,83.8238 +267269,9.75,82.3328 +267270,11.631,82.8273 +267271,13.569,83.3491 +267272,15.57,83.9015 +267273,8.4247,82.3041 +267274,10.302,82.8336 +267275,12.236,83.3908 +267276,14.234,83.9789 +267277,7.1008,82.2758 +267278,8.9738,82.8401 +267279,10.904,83.4324 +267280,12.898,84.0559 +267281,5.7783,82.248 +267282,7.6458,82.8467 +267283,9.5703,83.4738 +267284,11.56,84.1324 +267285,4.4572,82.2206 +267286,6.3182,82.8535 +267287,8.2364,83.515 +267288,10.22,84.2084 +267289,3.1375,82.1936 +267290,4.9911,82.8604 +267291,6.9021,83.5561 +267292,8.8787,84.2839 +267293,1.8192,82.1671 +267294,3.6644,82.8675 +267295,5.5672,83.597 +267296,7.536,84.3589 +267297,0.50225,82.1412 +267298,2.3382,82.8748 +267299,4.2318,83.6377 +267300,6.1917,84.4332 +267301,359.19,82.1158 +267302,1.0124,82.8823 +267303,2.8959,83.6782 +267304,4.8459,84.507 +267305,357.87,82.0909 +267306,359.69,82.89 +267307,1.5594,83.7186 +267308,3.4986,84.5802 +267309,356.56,82.0667 +267310,358.36,82.8978 +267311,0.22249,83.7587 +267312,2.1498,84.6527 +267313,355.25,82.0431 +267314,357.04,82.9059 +267315,358.89,83.7986 +267316,0.79948,84.7246 +267317,353.94,82.0201 +267318,355.71,82.9142 +267319,357.55,83.8382 +267320,359.45,84.7957 +267321,352.63,81.9978 +267322,354.39,82.9227 +267323,356.21,83.8777 +267324,358.09,84.8662 +267325,351.32,81.9762 +267326,353.07,82.9315 +267327,354.87,83.9168 +267328,356.74,84.9358 +267329,350.02,81.9554 +267330,351.74,82.9405 +267331,353.53,83.9558 +267332,355.38,85.0047 +267333,348.71,81.9352 +267334,350.42,82.9498 +267335,352.19,83.9944 +267336,354.03,85.0728 +267337,347.41,81.9159 +267338,349.1,82.9593 +267339,350.85,84.0328 +267340,352.67,85.1401 +267341,346.1,81.8973 +267342,347.78,82.9691 +267343,349.51,84.071 +267344,351.31,85.2065 +267345,344.8,81.8796 +267346,346.46,82.9791 +267347,348.17,84.1088 +267348,349.95,85.272 +267349,343.5,81.8626 +267350,345.14,82.9895 +267351,346.83,84.1463 +267352,348.58,85.3367 +267353,342.2,81.8466 +267354,343.82,83.0001 +267355,345.48,84.1836 +267356,347.22,85.4004 +267357,340.91,81.8314 +267358,342.5,83.0111 +267359,344.14,84.2205 +267360,345.85,85.4632 +267361,339.61,81.8172 +267362,341.18,83.0223 +267363,342.8,84.2571 +267364,344.48,85.5251 +267365,338.32,81.8038 +267366,339.86,83.0339 +267367,341.45,84.2934 +267368,343.12,85.5859 +267369,337.02,81.7914 +267370,338.54,83.0458 +267371,340.11,84.3294 +267372,341.75,85.6458 +267373,335.73,81.78 +267374,337.22,83.058 +267375,338.76,84.3651 +267376,340.38,85.7046 +267377,334.44,81.7696 +267378,335.9,83.0705 +267379,337.42,84.4004 +267380,339,85.7625 +267381,333.15,81.7601 +267382,334.58,83.0834 +267383,336.07,84.4353 +267384,337.63,85.8192 +267385,331.86,81.7517 +267386,333.27,83.0966 +267387,334.73,84.4699 +267388,336.26,85.8749 +267389,330.57,81.7444 +267390,331.95,83.1101 +267391,333.38,84.5041 +267392,334.88,85.9295 +267393,329.28,81.738 +267394,330.63,83.1241 +267395,332.04,84.538 +267396,333.5,85.983 +267397,327.99,81.7328 +267398,329.31,83.1383 +267399,330.69,84.5715 +267400,332.13,86.0353 +267401,326.71,81.7287 +267402,328,83.153 +267403,329.34,84.6047 +267404,330.75,86.0866 +267405,325.42,81.7256 +267406,326.68,83.168 +267407,327.99,84.6374 +267408,329.37,86.1367 +267409,324.14,81.7237 +267410,325.37,83.1834 +267411,326.65,84.6698 +267412,327.99,86.1856 +267413,322.85,81.7229 +267414,324.05,83.1992 +267415,325.3,84.7017 +267416,326.6,86.2333 +267417,321.57,81.7233 +267418,322.74,83.2153 +267419,323.95,84.7333 +267420,325.22,86.2799 +267421,320.29,81.7248 +267422,321.42,83.2319 +267423,322.6,84.7645 +267424,323.84,86.3252 +267425,319.01,81.7276 +267426,320.11,83.2488 +267427,321.25,84.7953 +267428,322.45,86.3693 +267429,317.73,81.7315 +267430,318.79,83.2662 +267431,319.9,84.8256 +267432,321.07,86.4122 +267433,316.45,81.7366 +267434,317.48,83.2839 +267435,318.55,84.8556 +267436,319.68,86.4539 +267437,315.17,81.7429 +267438,316.16,83.302 +267439,317.2,84.8851 +267440,318.29,86.4943 +267441,313.9,81.7505 +267442,314.85,83.3206 +267443,315.85,84.9143 +267444,316.9,86.5335 +267445,312.62,81.7592 +267446,313.53,83.3396 +267447,314.5,84.943 +267448,315.51,86.5714 +267449,311.34,81.7693 +267450,312.22,83.3589 +267451,313.15,84.9712 +267452,314.12,86.6081 +267453,310.07,81.7806 +267454,310.91,83.3787 +267455,311.79,84.9991 +267456,312.73,86.6434 +267457,308.79,81.7931 +267458,309.6,83.399 +267459,310.44,85.0265 +267460,311.34,86.6775 +267461,307.52,81.8069 +267462,308.28,83.4196 +267463,309.09,85.0535 +267464,309.95,86.7103 +267465,306.24,81.822 +267466,306.97,83.4407 +267467,307.74,85.0801 +267468,308.56,86.7418 +267469,304.97,81.8384 +267470,305.66,83.4621 +267471,306.39,85.1062 +267472,307.16,86.772 +267473,303.7,81.8561 +267474,304.34,83.4841 +267475,305.03,85.1319 +267476,305.77,86.8009 +267477,302.42,81.875 +267478,303.03,83.5064 +267479,303.68,85.1572 +267480,304.38,86.8285 +267481,301.15,81.8953 +267482,301.72,83.5292 +267483,302.33,85.182 +267484,302.98,86.8548 +267485,299.88,81.9168 +267486,300.41,83.5524 +267487,300.97,85.2064 +267488,301.59,86.8798 +267489,298.61,81.9397 +267490,299.1,83.576 +267491,299.62,85.2303 +267492,300.19,86.9035 +267493,297.34,81.9638 +267494,297.78,83.6001 +267495,298.27,85.2539 +267496,298.8,86.9259 +267497,296.07,81.9893 +267498,296.47,83.6246 +267499,296.91,85.2769 +267500,297.4,86.947 +267501,294.79,82.016 +267502,295.16,83.6495 +267503,295.56,85.2996 +267504,296,86.9668 +267505,293.52,82.0441 +267506,293.85,83.6748 +267507,294.21,85.3217 +267508,294.61,86.9853 +267509,292.25,82.0735 +267510,292.54,83.7006 +267511,292.85,85.3435 +267512,293.21,87.0024 +267513,290.98,82.1042 +267514,291.22,83.7268 +267515,291.5,85.3648 +267516,291.81,87.0183 +267517,289.71,82.1362 +267518,289.91,83.7535 +267519,290.14,85.3857 +267520,290.41,87.0329 +267521,288.44,82.1694 +267522,288.6,83.7805 +267523,288.79,85.4061 +267524,289.02,87.0462 +267525,287.17,82.204 +267526,287.29,83.808 +267527,287.44,85.4262 +267528,287.62,87.0583 +267529,285.9,82.2399 +267530,285.98,83.836 +267531,286.08,85.4457 +267532,286.22,87.069 +267533,284.63,82.277 +267534,284.66,83.8643 +267535,284.73,85.4649 +267536,284.82,87.0785 +267537,283.37,82.3155 +267538,283.35,83.8931 +267539,283.37,85.4836 +267540,283.43,87.0867 +267541,282.1,82.3552 +267542,282.04,83.9223 +267543,282.02,85.5019 +267544,282.03,87.0937 +267545,280.83,82.3962 +267546,280.73,83.9519 +267547,280.66,85.5198 +267548,280.63,87.0994 +267549,279.56,82.4384 +267550,279.42,83.9819 +267551,279.31,85.5372 +267552,279.23,87.1039 +267553,278.28,82.4819 +267554,278.1,84.0123 +267555,277.95,85.5543 +267556,277.83,87.1072 +267557,277.01,82.5266 +267558,276.79,84.0431 +267559,276.6,85.5709 +267560,276.44,87.1092 +267561,275.74,82.5726 +267562,275.48,84.0743 +267563,275.25,85.5871 +267564,275.04,87.1101 +267565,274.47,82.6198 +267566,274.17,84.106 +267567,273.89,85.6029 +267568,273.64,87.1097 +267569,273.2,82.6682 +267570,272.85,84.138 +267571,272.54,85.6183 +267572,272.25,87.1082 +267573,271.93,82.7178 +267574,271.54,84.1704 +267575,271.18,85.6333 +267576,270.85,87.1055 +267577,270.66,82.7686 +267578,270.23,84.2032 +267579,269.83,85.6479 +267580,269.45,87.1016 +267581,269.39,82.8205 +267582,268.92,84.2364 +267583,268.47,85.6622 +267584,268.06,87.0967 +267585,268.11,82.8737 +267586,267.6,84.27 +267587,267.12,85.676 +267588,266.66,87.0906 +267589,266.84,82.9279 +267590,266.29,84.3039 +267591,265.77,85.6895 +267592,265.27,87.0833 +267593,265.57,82.9833 +267594,264.98,84.3382 +267595,264.41,85.7025 +267596,263.87,87.075 +267597,264.29,83.0398 +267598,263.66,84.3729 +267599,263.06,85.7153 +267600,262.48,87.0656 +267601,263.02,83.0975 +267602,262.35,84.4079 +267603,261.7,85.7276 +267604,261.09,87.0552 +267605,261.74,83.1562 +267606,261.03,84.4433 +267607,260.35,85.7396 +267608,259.69,87.0437 +267609,260.47,83.2159 +267610,259.72,84.479 +267611,259,85.7512 +267612,258.3,87.0311 +267613,259.19,83.2767 +267614,258.41,84.5151 +267615,257.65,85.7625 +267616,256.91,87.0176 +267617,257.91,83.3386 +267618,257.09,84.5514 +267619,256.29,85.7735 +267620,255.52,87.0031 +267621,256.64,83.4014 +267622,255.77,84.5882 +267623,254.94,85.7841 +267624,254.13,86.9876 +267625,255.36,83.4653 +267626,254.46,84.6252 +267627,253.59,85.7944 +267628,252.74,86.9712 +267629,254.08,83.5301 +267630,253.14,84.6625 +267631,252.23,85.8043 +267632,251.35,86.9538 +267633,252.8,83.5958 +267634,251.83,84.7002 +267635,250.88,85.814 +267636,249.96,86.9355 +267637,251.52,83.6625 +267638,250.51,84.7382 +267639,249.53,85.8233 +267640,248.57,86.9164 +267641,250.24,83.7301 +267642,249.19,84.7764 +267643,248.18,85.8324 +267644,247.19,86.8963 +267645,248.95,83.7986 +267646,247.88,84.8149 +267647,246.83,85.8411 +267648,245.8,86.8754 +267649,247.67,83.8679 +267650,246.56,84.8537 +267651,245.48,85.8496 +267652,244.42,86.8537 +267653,246.39,83.9381 +267654,245.24,84.8928 +267655,244.13,85.8578 +267656,243.03,86.8313 +267657,245.1,84.009 +267658,243.93,84.9321 +267659,242.77,85.8657 +267660,241.65,86.808 +267661,243.81,84.0808 +267662,242.61,84.9717 +267663,241.42,85.8733 +267664,240.27,86.784 +267665,242.53,84.1533 +267666,241.29,85.0115 +267667,240.07,85.8807 +267668,238.89,86.7592 +267669,241.24,84.2266 +267670,239.97,85.0516 +267671,238.72,85.8879 +267672,237.51,86.7337 +267673,239.95,84.3006 +267674,238.65,85.0919 +267675,237.38,85.8948 +267676,236.13,86.7076 +267677,238.66,84.3752 +267678,237.33,85.1324 +267679,236.03,85.9015 +267680,234.75,86.6808 +267681,237.37,84.4506 +267682,236.01,85.1731 +267683,234.68,85.908 +267684,233.37,86.6534 +267685,236.08,84.5265 +267686,234.69,85.214 +267687,233.33,85.9142 +267688,231.99,86.6254 +267689,234.78,84.6031 +267690,233.37,85.2551 +267691,231.98,85.9203 +267692,230.62,86.5968 +267693,233.49,84.6802 +267694,232.05,85.2964 +267695,230.63,85.9262 +267696,229.25,86.5676 +267697,232.2,84.7579 +267698,230.73,85.3379 +267699,229.28,85.9318 +267700,227.87,86.5379 +267701,230.9,84.8361 +267702,229.4,85.3795 +267703,227.94,85.9373 +267704,226.5,86.5078 +267705,229.6,84.9148 +267706,228.08,85.4213 +267707,226.59,85.9427 +267708,225.13,86.4771 +267709,228.3,84.994 +267710,226.76,85.4632 +267711,225.24,85.9478 +267712,223.76,86.446 +267713,227,85.0735 +267714,225.43,85.5052 +267715,223.9,85.9529 +267716,222.39,86.4145 +267717,225.7,85.1535 +267718,224.11,85.5474 +267719,222.55,85.9577 +267720,221.02,86.3826 +267721,224.4,85.2339 +267722,222.79,85.5897 +267723,221.21,85.9625 +267724,219.66,86.3504 +267725,223.09,85.3146 +267726,221.46,85.6321 +267727,219.86,85.9671 +267728,218.29,86.3178 +267729,221.79,85.3956 +267730,220.14,85.6746 +267731,218.52,85.9717 +267732,216.93,86.2849 +267733,220.48,85.4769 +267734,218.81,85.7171 +267735,217.17,85.9761 +267736,215.57,86.2517 +267737,219.17,85.5585 +267738,217.48,85.7598 +267739,215.83,85.9804 +267740,214.21,86.2183 +267741,217.86,85.6403 +267742,216.16,85.8025 +267743,214.49,85.9847 +267744,212.85,86.1847 +267745,216.55,85.7222 +267746,214.83,85.8453 +267747,213.14,85.9888 +267748,211.49,86.1509 +267749,215.24,85.8044 +267750,213.5,85.8881 +267751,211.8,85.993 +267752,210.13,86.1169 +267753,213.93,85.8866 +267754,212.17,85.9309 +267755,210.46,85.997 +267756,208.78,86.0828 +267757,212.61,85.969 +267758,210.85,85.9738 +267759,209.12,86.001 +267760,207.42,86.0485 +267761,211.3,86.0514 +267762,209.52,86.0167 +267763,207.77,86.005 +267764,206.07,86.0143 +267765,209.98,86.1338 +267766,208.19,86.0595 +267767,206.43,86.009 +267768,204.72,85.9799 +267769,208.66,86.2163 +267770,206.86,86.1024 +267771,205.09,86.013 +267772,203.37,85.9456 +267773,207.34,86.2987 +267774,205.53,86.1453 +267775,203.75,86.0169 +267776,202.02,85.9112 +267777,206.02,86.381 +267778,204.2,86.1881 +267779,202.41,86.0209 +267780,200.67,85.8769 +267781,204.7,86.4633 +267782,202.86,86.2309 +267783,201.07,86.0248 +267784,199.32,85.8427 +267785,203.37,86.5454 +267786,201.53,86.2736 +267787,199.73,86.0289 +267788,197.98,85.8086 +267789,202.05,86.6273 +267790,200.2,86.3163 +267791,198.4,86.0329 +267792,196.63,85.7746 +267793,200.72,86.7091 +267794,198.87,86.3589 +267795,197.06,86.037 +267796,195.29,85.7407 +267797,199.39,86.7907 +267798,197.53,86.4014 +267799,195.72,86.0411 +267800,193.95,85.7071 +267801,198.06,86.872 +267802,196.2,86.4438 +267803,194.38,86.0453 +267804,192.61,85.6737 +267805,196.73,86.953 +267806,194.86,86.4862 +267807,193.05,86.0496 +267808,191.27,85.6405 +267809,195.4,87.0337 +267810,193.53,86.5284 +267811,191.71,86.054 +267812,189.93,85.6076 +267813,194.06,87.114 +267814,192.19,86.5705 +267815,190.37,86.0585 +267816,188.6,85.575 +267817,192.72,87.194 +267818,190.86,86.6124 +267819,189.04,86.0631 +267820,187.26,85.5427 +267821,191.39,87.2735 +267822,189.52,86.6543 +267823,187.7,86.0678 +267824,185.93,85.5108 +267825,190.05,87.3526 +267826,188.18,86.6959 +267827,186.37,86.0726 +267828,184.6,85.4793 +267829,188.71,87.4313 +267830,186.85,86.7374 +267831,185.03,86.0775 +267832,183.27,85.4482 +267833,187.37,87.5094 +267834,185.51,86.7788 +267835,183.7,86.0826 +267836,181.94,85.4175 +267837,186.02,87.5871 +267838,184.17,86.8199 +267839,182.37,86.0879 +267840,180.61,85.3874 +267841,184.68,87.6641 +267842,182.83,86.8609 +267843,181.03,86.0933 +267844,179.29,85.3577 +267845,183.33,87.7406 +267846,181.49,86.9017 +267847,179.7,86.0989 +267848,177.96,85.3285 +267849,181.98,87.8164 +267850,180.15,86.9422 +267851,178.37,86.1046 +267852,176.64,85.2999 +267853,180.63,87.8916 +267854,178.81,86.9825 +267855,177.04,86.1106 +267856,175.31,85.2719 +267857,179.28,87.9661 +267858,177.47,87.0226 +267859,175.71,86.1167 +267860,173.99,85.2445 +267861,177.93,88.0399 +267862,176.13,87.0625 +267863,174.38,86.1231 +267864,172.67,85.2177 +267865,176.58,88.113 +267866,174.78,87.1021 +267867,173.04,86.1297 +267868,171.36,85.1916 +267869,175.22,88.1853 +267870,173.44,87.1415 +267871,171.71,86.1365 +267872,170.04,85.1662 +267873,173.87,88.2569 +267874,172.1,87.1806 +267875,170.39,86.1435 +267876,168.72,85.1414 +267877,172.51,88.3276 +267878,170.75,87.2194 +267879,169.06,86.1508 +267880,167.41,85.1175 +267881,171.15,88.3975 +267882,169.41,87.258 +267883,167.73,86.1583 +267884,166.09,85.0942 +267885,169.79,88.4665 +267886,168.07,87.2962 +267887,166.4,86.1661 +267888,164.78,85.0718 +267889,168.43,88.5346 +267890,166.72,87.3342 +267891,165.07,86.1741 +267892,163.47,85.0502 +267893,167.07,88.6018 +267894,165.37,87.3718 +267895,163.74,86.1825 +267896,162.16,85.0294 +267897,165.7,88.6681 +267898,164.03,87.4091 +267899,162.41,86.1911 +267900,160.85,85.0094 +267901,164.34,88.7334 +267902,162.68,87.4461 +267903,161.09,86.2 +267904,159.54,84.9904 +267905,162.97,88.7977 +267906,161.34,87.4828 +267907,159.76,86.2091 +267908,158.24,84.9722 +267909,161.6,88.861 +267910,159.99,87.5191 +267911,158.43,86.2186 +267912,156.93,84.955 +267913,160.23,88.9233 +267914,158.64,87.5551 +267915,157.11,86.2284 +267916,155.63,84.9387 +267917,158.86,88.9846 +267918,157.29,87.5908 +267919,155.78,86.2386 +267920,154.32,84.9233 +267921,157.49,89.04471 +267922,155.94,87.626 +267923,154.46,86.249 +267924,153.02,84.909 +267925,156.12,89.10378 +267926,154.59,87.6609 +267927,153.13,86.2598 +267928,151.72,84.8957 +267929,154.74,89.16173 +267930,153.25,87.6955 +267931,151.81,86.2709 +267932,150.42,84.8833 +267933,153.37,89.21854 +267934,151.9,87.7296 +267935,150.48,86.2824 +267936,149.12,84.8721 +267937,151.99,89.27421 +267938,150.54,87.7634 +267939,149.16,86.2942 +267940,147.82,84.8619 +267941,150.61,89.32871 +267942,149.19,87.7968 +267943,147.84,86.3063 +267944,146.53,84.8527 +267945,149.23,89.38202 +267946,147.84,87.8298 +267947,146.51,86.3189 +267948,145.23,84.8447 +267949,147.85,89.43412 +267950,146.49,87.8623 +267951,145.19,86.3317 +267952,143.93,84.8378 +267953,146.47,89.48501 +267954,145.14,87.8945 +267955,143.87,86.345 +267956,142.64,84.832 +267957,145.09,89.53467 +267958,143.79,87.9263 +267959,142.54,86.3586 +267960,141.35,84.8273 +267961,143.71,89.58307 +267962,142.44,87.9576 +267963,141.22,86.3727 +267964,140.05,84.8239 +267965,142.32,89.63021 +267966,141.08,87.9885 +267967,139.9,86.3871 +267968,138.76,84.8216 +267969,140.94,89.67607 +267970,139.73,88.019 +267971,138.58,86.4019 +267972,137.47,84.8205 +267973,139.55,89.72065 +267974,138.38,88.049 +267975,137.25,86.4171 +267976,136.18,84.8205 +267977,138.17,89.76392 +267978,137.02,88.0786 +267979,135.93,86.4327 +267980,134.89,84.8219 +267981,136.78,89.80588 +267982,135.67,88.1078 +267983,134.61,86.4487 +267984,133.6,84.8244 +267985,135.39,89.84652 +267986,134.31,88.1365 +267987,133.29,86.4651 +267988,132.32,84.8282 +267989,134,89.88583 +267990,132.96,88.1648 +267991,131.97,86.4819 +267992,131.03,84.8332 +267993,132.61,89.92379 +267994,131.6,88.1926 +267995,130.65,86.4991 +267996,129.74,84.8395 +267997,131.22,89.960403 +267998,130.25,88.22 +267999,129.33,86.5168 +268000,128.46,84.8471 +268001,129.83,89.9956592 +268002,128.89,88.2469 +268003,128.01,86.5349 +268004,127.17,84.8559 +268005,128.44,90.02955 +268006,127.54,88.2733 +268007,126.69,86.5534 +268008,125.88,84.8661 +268009,127.04,90.062071 +268010,126.18,88.2993 +268011,125.37,86.5723 +268012,124.6,84.8775 +268013,125.65,90.093215 +268014,124.83,88.3248 +268015,124.05,86.5916 +268016,123.32,84.8902 +268017,124.26,90.12298 +268018,123.47,88.3499 +268019,122.73,86.6114 +268020,122.03,84.9043 +268021,122.86,90.15136 +268022,122.11,88.3744 +268023,121.41,86.6316 +268024,120.75,84.9197 +268025,121.47,90.17835 +268026,120.76,88.3986 +268027,120.09,86.6522 +268028,119.47,84.9364 +268029,120.07,90.20395 +268030,119.4,88.4222 +268031,118.77,86.6733 +268032,118.19,84.9544 +268033,118.67,90.22815 +268034,118.04,88.4454 +268035,117.45,86.6948 +268036,116.9,84.9738 +268037,117.28,90.25097 +268038,116.68,88.468 +268039,116.13,86.7168 +268040,115.62,84.9944 +268041,115.88,90.27239 +268042,115.33,88.4903 +268043,114.81,86.7391 +268044,114.34,85.0165 +268045,114.48,90.29241 +268046,113.97,88.512 +268047,113.5,86.7619 +268048,113.06,85.0398 +268049,113.09,90.31105 +268050,112.61,88.5333 +268051,112.18,86.7852 +268052,111.78,85.0645 +268053,111.69,90.32829 +268054,111.25,88.5541 +268055,110.86,86.8089 +268056,110.5,85.0906 +268057,110.29,90.34415 +268058,109.89,88.5744 +268059,109.54,86.833 +268060,109.22,85.118 +268061,108.89,90.35862 +268062,108.54,88.5943 +268063,108.22,86.8575 +268064,107.94,85.1467 +268065,107.49,90.37172 +268066,107.18,88.6136 +268067,106.9,86.8825 +268068,106.66,85.1767 +268069,106.09,90.38343 +268070,105.82,88.6325 +268071,105.58,86.908 +268072,105.38,85.2081 +268073,104.69,90.39378 +268074,104.46,88.651 +268075,104.26,86.9338 +268076,104.1,85.2409 +268077,103.29,90.40276 +268078,103.1,88.6689 +268079,102.95,86.9601 +268080,102.82,85.2749 +268081,101.89,90.41039 +268082,101.74,88.6865 +268083,101.63,86.9868 +268084,101.54,85.3103 +268085,100.49,90.41667 +268086,100.38,88.7035 +268087,100.31,87.0139 +268088,100.26,85.347 +268089,99.095,90.42161 +268090,99.025,88.7201 +268091,98.989,87.0415 +268092,98.984,85.385 +268093,97.695,90.42521 +268094,97.666,88.7362 +268095,97.67,87.0695 +268096,97.705,85.4243 +268097,96.296,90.42749 +268098,96.307,88.7519 +268099,96.351,87.0979 +268100,96.425,85.4649 +268101,94.896,90.42846 +268102,94.948,88.7671 +268103,95.032,87.1267 +268104,95.145,85.5068 +268105,93.497,90.42813 +268106,93.589,88.7818 +268107,93.713,87.1559 +268108,93.865,85.55 +268109,92.097,90.42651 +268110,92.23,88.7962 +268111,92.393,87.1856 +268112,92.585,85.5944 +268113,90.698,90.42362 +268114,90.871,88.81 +268115,91.074,87.2156 +268116,91.304,85.6401 +268117,89.299,90.41945 +268118,89.513,88.8235 +268119,89.755,87.246 +268120,90.024,85.6871 +268121,87.901,90.41404 +268122,88.154,88.8365 +268123,88.435,87.2769 +268124,88.743,85.7353 +268125,86.502,90.40739 +268126,86.795,88.8491 +268127,87.115,87.3081 +268128,87.462,85.7847 +268129,85.104,90.39952 +268130,85.437,88.8612 +268131,85.796,87.3397 +268132,86.18,85.8354 +268133,83.706,90.39044 +268134,84.078,88.8729 +268135,84.476,87.3717 +268136,84.898,85.8872 +268137,82.309,90.38017 +268138,82.72,88.8842 +268139,83.156,87.4041 +268140,83.616,85.9403 +268141,80.912,90.36873 +268142,81.361,88.8951 +268143,81.835,87.4369 +268144,82.333,85.9945 +268145,79.515,90.35613 +268146,80.003,88.9056 +268147,80.515,87.47 +268148,81.05,86.0499 +268149,78.119,90.34239 +268150,78.645,88.9157 +268151,79.194,87.5035 +268152,79.766,86.1064 +268153,76.723,90.32753 +268154,77.287,88.9254 +268155,77.873,87.5373 +268156,78.482,86.164 +268157,75.328,90.31157 +268158,75.929,88.9348 +268159,76.552,87.5715 +268160,77.197,86.2227 +268161,73.933,90.29453 +268162,74.571,88.9437 +268163,75.231,87.6061 +268164,75.912,86.2826 +268165,72.539,90.27642 +268166,73.213,88.9523 +268167,73.909,87.6409 +268168,74.626,86.3435 +268169,71.146,90.25727 +268170,71.856,88.9604 +268171,72.587,87.6761 +268172,73.34,86.4054 +268173,69.753,90.2371 +268174,70.499,88.9683 +268175,71.265,87.7117 +268176,72.053,86.4684 +268177,68.36,90.21592 +268178,69.141,88.9757 +268179,69.943,87.7475 +268180,70.765,86.5324 +268181,66.969,90.19377 +268182,67.785,88.9829 +268183,68.621,87.7837 +268184,69.476,86.5974 +268185,65.578,90.17066 +268186,66.428,88.9897 +268187,67.298,87.8201 +268188,68.187,86.6634 +268189,64.188,90.14662 +268190,65.071,88.9961 +268191,65.975,87.8569 +268192,66.897,86.7303 +268193,62.798,90.12166 +268194,63.715,89.00223 +268195,64.651,87.8939 +268196,65.606,86.7981 +268197,61.41,90.095824 +268198,62.359,89.00804 +268199,63.327,87.9313 +268200,64.315,86.8669 +268201,60.022,90.069121 +268202,61.003,89.01354 +268203,62.003,87.9689 +268204,63.022,86.9365 +268205,58.635,90.041578 +268206,59.647,89.01873 +268207,60.679,88.0067 +268208,61.729,87.007 +268209,57.248,90.013222 +268210,58.292,89.02363 +268211,59.355,88.0448 +268212,60.435,87.0783 +268213,55.863,89.984077 +268214,56.937,89.02825 +268215,58.03,88.0832 +268216,59.14,87.1504 +268217,54.479,89.954169 +268218,55.582,89.03259 +268219,56.704,88.1218 +268220,57.844,87.2233 +268221,53.095,89.923524 +268222,54.228,89.03666 +268223,55.379,88.1606 +268224,56.548,87.2969 +268225,51.713,89.89217 +268226,52.873,89.04047 +268227,54.053,88.1997 +268228,55.25,87.3713 +268229,50.331,89.86013 +268230,51.519,89.04403 +268231,52.726,88.239 +268232,53.951,87.4464 +268233,48.95,89.82743 +268234,50.165,89.04734 +268235,51.399,88.2784 +268236,52.651,87.5222 +268237,47.571,89.7941 +268238,48.812,89.05043 +268239,50.072,88.3181 +268240,51.351,87.5986 +268241,46.192,89.76017 +268242,47.459,89.05329 +268243,48.745,88.3579 +268244,50.049,87.6756 +268245,44.814,89.72566 +268246,46.106,89.05593 +268247,47.417,88.3979 +268248,48.746,87.7532 +268249,43.438,89.69061 +268250,44.754,89.05837 +268251,46.089,88.4381 +268252,47.442,87.8314 +268253,42.062,89.65504 +268254,43.401,89.06061 +268255,44.76,88.4785 +268256,46.137,87.9101 +268257,40.688,89.61898 +268258,42.05,89.06267 +268259,43.431,88.5189 +268260,44.831,87.9893 +268261,39.315,89.58245 +268262,40.698,89.06455 +268263,42.101,88.5596 +268264,43.524,88.0689 +268265,37.943,89.5455 +268266,39.347,89.06627 +268267,40.771,88.6003 +268268,42.216,88.1491 +268269,36.571,89.50814 +268270,37.996,89.06782 +268271,39.441,88.6411 +268272,40.906,88.2296 +268273,35.202,89.47041 +268274,36.646,89.06923 +268275,38.11,88.6821 +268276,39.595,88.3105 +268277,33.833,89.43233 +268278,35.295,89.0705 +268279,36.779,88.7232 +268280,38.284,88.3918 +268281,32.465,89.39393 +268282,33.946,89.07165 +268283,35.448,88.7643 +268284,36.97,88.4733 +268285,31.099,89.35526 +268286,32.596,89.07268 +268287,34.115,88.8055 +268288,35.656,88.5552 +268289,29.734,89.31632 +268290,31.247,89.0736 +268291,32.783,88.8468 +268292,34.341,88.6373 +268293,28.37,89.27716 +268294,29.899,89.07442 +268295,31.45,88.8881 +268296,33.024,88.7197 +268297,27.007,89.23781 +268298,28.55,89.07516 +268299,30.117,88.9294 +268300,31.706,88.8022 +268301,25.645,89.19829 +268302,27.202,89.07582 +268303,28.783,88.9708 +268304,30.386,88.8849 +268305,24.285,89.15864 +268306,25.855,89.07641 +268307,27.448,89.01225 +268308,29.066,88.9678 +268309,22.926,89.11888 +268310,24.508,89.07695 +268311,26.114,89.05367 +268312,27.744,89.05068 +268313,21.568,89.07904 +268314,23.161,89.07744 +268315,24.778,89.09509 +268316,26.421,89.13366 +268317,20.212,89.03917 +268318,21.814,89.0779 +268319,23.443,89.1365 +268320,25.096,89.21667 +268321,18.856,88.9993 +268322,20.469,89.07833 +268323,22.106,89.17788 +268324,23.771,89.29968 +268325,17.502,88.9594 +268326,19.123,89.07875 +268327,20.77,89.21923 +268328,22.444,89.38265 +268329,16.15,88.9196 +268330,17.778,89.07916 +268331,19.433,89.26054 +268332,21.115,89.46554 +268333,14.798,88.8798 +268334,16.433,89.07958 +268335,18.095,89.30179 +268336,19.785,89.54834 +268337,13.448,88.8402 +268338,15.089,89.08001 +268339,16.757,89.34297 +268340,18.454,89.631 +268341,12.099,88.8007 +268342,13.745,89.08048 +268343,15.418,89.38407 +268344,17.122,89.71348 +268345,10.751,88.7613 +268346,12.401,89.08097 +268347,14.079,89.42509 +268348,15.788,89.79577 +268349,9.405,88.7222 +268350,11.058,89.08152 +268351,12.74,89.466 +268352,14.453,89.87782 +268353,8.06,88.6833 +268354,9.7149,89.08212 +268355,11.4,89.50681 +268356,13.116,89.959601 +268357,6.7162,88.6447 +268358,8.3725,89.08279 +268359,10.059,89.54749 +268360,11.778,90.041081 +268361,5.3737,88.6063 +268362,7.0305,89.08354 +268363,8.7183,89.58805 +268364,10.439,90.12223 +268365,4.0325,88.5682 +268366,5.6889,89.08437 +268367,7.3768,89.62846 +268368,9.0984,90.20301 +268369,2.6926,88.5305 +268370,4.3477,89.0853 +268371,6.0348,89.66872 +268372,7.7564,90.28339 +268373,1.3539,88.4932 +268374,3.0069,89.08634 +268375,4.6924,89.70882 +268376,6.413,90.36333 +268377,0.016546,88.4563 +268378,1.6665,89.0875 +268379,3.3495,89.74874 +268380,5.0683,90.44282 +268381,358.68,88.4198 +268382,0.3265,89.08878 +268383,2.0061,89.78848 +268384,3.7222,90.5218 +268385,357.35,88.3838 +268386,358.99,89.0902 +268387,0.66219,89.82802 +268388,2.3747,90.60027 +268389,356.01,88.3483 +268390,357.65,89.09177 +268391,359.32,89.86737 +268392,1.0259,90.67817 +268393,354.68,88.3133 +268394,356.31,89.09349 +268395,357.97,89.906491 +268396,359.68,90.75548 +268397,353.35,88.2788 +268398,354.97,89.09538 +268399,356.63,89.945393 +268400,358.32,90.83217 +268401,352.02,88.2449 +268402,353.63,89.09745 +268403,355.28,89.98406 +268404,356.97,90.9082 +268405,350.69,88.2116 +268406,352.29,89.09969 +268407,353.94,90.022482 +268408,355.62,90.98356 +268409,349.36,88.179 +268410,350.96,89.10214 +268411,352.59,90.060651 +268412,354.26,91.0582 +268413,348.04,88.147 +268414,349.62,89.10478 +268415,351.24,90.098555 +268416,352.9,91.1321 +268417,346.71,88.1157 +268418,348.28,89.10764 +268419,349.89,90.13619 +268420,351.55,91.2052 +268421,345.39,88.085 +268422,346.95,89.11072 +268423,348.55,90.17353 +268424,350.19,91.2775 +268425,344.07,88.0552 +268426,345.61,89.11402 +268427,347.2,90.21059 +268428,348.83,91.349 +268429,342.74,88.0261 +268430,344.28,89.11757 +268431,345.85,90.24734 +268432,347.46,91.4197 +268433,341.42,87.9977 +268434,342.94,89.12136 +268435,344.5,90.28379 +268436,346.1,91.4894 +268437,340.1,87.9702 +268438,341.61,89.1254 +268439,343.15,90.31992 +268440,344.74,91.5583 +268441,338.79,87.9435 +268442,340.27,89.12971 +268443,341.8,90.35571 +268444,343.37,91.6262 +268445,337.47,87.9177 +268446,338.94,89.13429 +268447,340.45,90.39117 +268448,342,91.6931 +268449,336.15,87.8928 +268450,337.61,89.13915 +268451,339.1,90.42629 +268452,340.63,91.759 +268453,334.84,87.8687 +268454,336.27,89.1443 +268455,337.74,90.46105 +268456,339.27,91.824 +268457,333.53,87.8456 +268458,334.94,89.14974 +268459,336.39,90.49546 +268460,337.89,91.8878 +268461,332.21,87.8234 +268462,333.61,89.15548 +268463,335.04,90.52949 +268464,336.52,91.9506 +268465,330.9,87.8022 +268466,332.27,89.16153 +268467,333.69,90.56315 +268468,335.15,92.0124 +268469,329.59,87.782 +268470,330.94,89.1679 +268471,332.33,90.59642 +268472,333.77,92.073 +268473,328.28,87.7629 +268474,329.61,89.17459 +268475,330.98,90.6293 +268476,332.4,92.1324 +268477,326.97,87.7447 +268478,328.28,89.18161 +268479,329.63,90.66178 +268480,331.02,92.1908 +268481,325.66,87.7276 +268482,326.95,89.18897 +268483,328.27,90.69386 +268484,329.65,92.2479 +268485,324.36,87.7116 +268486,325.62,89.19667 +268487,326.92,90.72552 +268488,328.27,92.3038 +268489,323.05,87.6966 +268490,324.29,89.20472 +268491,325.56,90.75676 +268492,326.89,92.3585 +268493,321.75,87.6828 +268494,322.96,89.21312 +268495,324.21,90.78758 +268496,325.51,92.412 +268497,320.44,87.6701 +268498,321.63,89.22189 +268499,322.85,90.81797 +268500,324.12,92.4642 +268501,319.14,87.6586 +268502,320.3,89.23103 +268503,321.49,90.84792 +268504,322.74,92.5151 +268505,317.84,87.6482 +268506,318.97,89.24053 +268507,320.14,90.87742 +268508,321.36,92.5648 +268509,316.54,87.639 +268510,317.64,89.25041 +268511,318.78,90.90648 +268512,319.97,92.6131 +268513,315.24,87.6309 +268514,316.31,89.26068 +268515,317.42,90.93508 +268516,318.59,92.6601 +268517,313.94,87.6241 +268518,314.98,89.27133 +268519,316.07,90.96322 +268520,317.2,92.7058 +268521,312.64,87.6185 +268522,313.65,89.28238 +268523,314.71,90.99089 +268524,315.81,92.75 +268525,311.34,87.6142 +268526,312.32,89.29382 +268527,313.35,91.0181 +268528,314.42,92.793 +268529,310.04,87.611 +268530,311,89.30567 +268531,311.99,91.0448 +268532,313.03,92.8345 +268533,308.74,87.6092 +268534,309.67,89.31792 +268535,310.63,91.0711 +268536,311.64,92.8747 +268537,307.45,87.6086 +268538,308.34,89.33057 +268539,309.27,91.0969 +268540,310.25,92.9134 +268541,306.15,87.6093 +268542,307.01,89.34364 +268543,307.91,91.1221 +268544,308.86,92.9507 +268545,304.86,87.6113 +268546,305.69,89.35713 +268547,306.55,91.1469 +268548,307.47,92.9866 +268549,303.56,87.6146 +268550,304.36,89.37103 +268551,305.19,91.1712 +268552,306.08,93.021 +268553,302.27,87.6192 +268554,303.03,89.38536 +268555,303.83,91.1951 +268556,304.68,93.054 +268557,300.97,87.6251 +268558,301.7,89.40011 +268559,302.47,91.2184 +268560,303.29,93.0856 +268561,299.68,87.6324 +268562,300.38,89.41528 +268563,301.11,91.2412 +268564,301.89,93.1157 +268565,298.39,87.641 +268566,299.05,89.43089 +268567,299.75,91.2635 +268568,300.5,93.1443 +268569,297.1,87.6509 +268570,297.72,89.44692 +268571,298.39,91.2853 +268572,299.1,93.1714 +268573,295.8,87.6622 +268574,296.4,89.46339 +268575,297.03,91.3066 +268576,297.7,93.1971 +268577,294.51,87.6749 +268578,295.07,89.48029 +268579,295.67,91.3274 +268580,296.31,93.2213 +268581,293.22,87.6889 +268582,293.75,89.49763 +268583,294.31,91.3476 +268584,294.91,93.244 +268585,291.93,87.7042 +268586,292.42,89.51541 +268587,292.94,91.3674 +268588,293.51,93.2652 +268589,290.64,87.721 +268590,291.09,89.53362 +268591,291.58,91.3867 +268592,292.11,93.2849 +268593,289.35,87.7391 +268594,289.77,89.55227 +268595,290.22,91.4054 +268596,290.71,93.3031 +268597,288.06,87.7585 +268598,288.44,89.57136 +268599,288.86,91.4236 +268600,289.31,93.3199 +268601,286.77,87.7794 +268602,287.12,89.59088 +268603,287.5,91.4413 +268604,287.91,93.3351 +268605,285.48,87.8016 +268606,285.79,89.61085 +268607,286.13,91.4585 +268608,286.51,93.3489 +268609,284.19,87.8252 +268610,284.47,89.63125 +268611,284.77,91.4752 +268612,285.11,93.3612 +268613,282.9,87.8501 +268614,283.14,89.65208 +268615,283.41,91.4914 +268616,283.71,93.372 +268617,281.61,87.8764 +268618,281.81,89.67336 +268619,282.05,91.5071 +268620,282.31,93.3813 +268621,280.33,87.9041 +268622,280.49,89.69507 +268623,280.68,91.5222 +268624,280.91,93.3892 +268625,279.04,87.9332 +268626,279.16,89.71721 +268627,279.32,91.5369 +268628,279.51,93.3956 +268629,277.75,87.9636 +268630,277.84,89.73979 +268631,277.96,91.551 +268632,278.11,93.4005 +268633,276.46,87.9953 +268634,276.51,89.76279 +268635,276.59,91.5646 +268636,276.71,93.404 +268637,275.17,88.0284 +268638,275.19,89.78622 +268639,275.23,91.5778 +268640,275.31,93.406 +268641,273.88,88.0629 +268642,273.86,89.81008 +268643,273.87,91.5904 +268644,273.91,93.4066 +268645,272.59,88.0987 +268646,272.53,89.83436 +268647,272.5,91.6025 +268648,272.5,93.4058 +268649,271.3,88.1358 +268650,271.21,89.85906 +268651,271.14,91.6142 +268652,271.1,93.4035 +268653,270.01,88.1742 +268654,269.88,89.88418 +268655,269.78,91.6253 +268656,269.7,93.3999 +268657,268.72,88.2139 +268658,268.56,89.909717 +268659,268.41,91.636 +268660,268.3,93.3949 +268661,267.43,88.255 +268662,267.23,89.935661 +268663,267.05,91.6462 +268664,266.9,93.3884 +268665,266.14,88.2973 +268666,265.9,89.962011 +268667,265.69,91.6559 +268668,265.5,93.3807 +268669,264.85,88.341 +268670,264.58,89.988765 +268671,264.33,91.6651 +268672,264.1,93.3715 +268673,263.56,88.3859 +268674,263.25,90.015917 +268675,262.96,91.6738 +268676,262.7,93.361 +268677,262.27,88.432 +268678,261.92,90.043463 +268679,261.6,91.6821 +268680,261.3,93.3492 +268681,260.98,88.4794 +268682,260.6,90.071399 +268683,260.24,91.6899 +268684,259.9,93.3361 +268685,259.69,88.528 +268686,259.27,90.09972 +268687,258.87,91.6973 +268688,258.5,93.3217 +268689,258.4,88.5779 +268690,257.94,90.12842 +268691,257.51,91.7042 +268692,257.1,93.306 +268693,257.1,88.6289 +268694,256.62,90.1575 +268695,256.15,91.7107 +268696,255.7,93.2891 +268697,255.81,88.6812 +268698,255.29,90.18694 +268699,254.79,91.7167 +268700,254.3,93.2709 +268701,254.52,88.7346 +268702,253.96,90.21675 +268703,253.42,91.7223 +268704,252.91,93.2515 +268705,253.22,88.7891 +268706,252.63,90.24691 +268707,252.06,91.7274 +268708,251.51,93.2309 +268709,251.93,88.8448 +268710,251.3,90.27743 +268711,250.7,91.7321 +268712,250.11,93.2091 +268713,250.63,88.9017 +268714,249.98,90.30829 +268715,249.34,91.7365 +268716,248.72,93.1862 +268717,249.34,88.9596 +268718,248.65,90.33948 +268719,247.97,91.7404 +268720,247.32,93.1621 +268721,248.04,89.01858 +268722,247.32,90.37101 +268723,246.61,91.7438 +268724,245.92,93.1369 +268725,246.75,89.07865 +268726,245.99,90.40287 +268727,245.25,91.7469 +268728,244.53,93.1106 +268729,245.45,89.13976 +268730,244.66,90.43504 +268731,243.89,91.7497 +268732,243.14,93.0832 +268733,244.15,89.20189 +268734,243.33,90.46752 +268735,242.53,91.752 +268736,241.74,93.0548 +268737,242.85,89.26501 +268738,242,90.50031 +268739,241.17,91.7539 +268740,240.35,93.0253 +268741,241.55,89.32912 +268742,240.67,90.53339 +268743,239.81,91.7555 +268744,238.96,92.9949 +268745,240.25,89.39418 +268746,239.34,90.56675 +268747,238.45,91.7567 +268748,237.57,92.9634 +268749,238.95,89.46018 +268750,238.01,90.6004 +268751,237.09,91.7576 +268752,236.18,92.9311 +268753,237.65,89.52708 +268754,236.68,90.63431 +268755,235.73,91.7581 +268756,234.79,92.8978 +268757,236.35,89.59487 +268758,235.35,90.66849 +268759,234.37,91.7583 +268760,233.4,92.8635 +268761,235.04,89.66351 +268762,234.02,90.70292 +268763,233.01,91.7582 +268764,232.01,92.8285 +268765,233.74,89.73299 +268766,232.69,90.7376 +268767,231.65,91.7578 +268768,230.62,92.7925 +268769,232.43,89.80328 +268770,231.35,90.77251 +268771,230.29,91.757 +268772,229.24,92.7558 +268773,231.13,89.87435 +268774,230.02,90.80765 +268775,228.93,91.756 +268776,227.85,92.7182 +268777,229.82,89.946173 +268778,228.69,90.84301 +268779,227.57,91.7546 +268780,226.47,92.6799 +268781,228.51,90.018728 +268782,227.36,90.87858 +268783,226.21,91.753 +268784,225.08,92.6409 +268785,227.2,90.091983 +268786,226.02,90.91435 +268787,224.85,91.7511 +268788,223.7,92.6011 +268789,225.89,90.16591 +268790,224.69,90.9503 +268791,223.5,91.7489 +268792,222.32,92.5607 +268793,224.58,90.24048 +268794,223.35,90.98644 +268795,222.14,91.7465 +268796,220.94,92.5196 +268797,223.27,90.31567 +268798,222.02,91.0227 +268799,220.78,91.7438 +268800,219.56,92.4778 +268801,221.95,90.39145 +268802,220.68,91.0592 +268803,219.43,91.7409 +268804,218.18,92.4355 +268805,220.64,90.46778 +268806,219.35,91.0958 +268807,218.07,91.7378 +268808,216.8,92.3927 +268809,219.33,90.54464 +268810,218.01,91.1326 +268811,216.71,91.7345 +268812,215.42,92.3493 +268813,218.01,90.622 +268814,216.68,91.1695 +268815,215.36,91.731 +268816,214.05,92.3054 +268817,216.69,90.69982 +268818,215.34,91.2065 +268819,214,91.7272 +268820,212.67,92.261 +268821,215.37,90.77808 +268822,214,91.2436 +268823,212.65,91.7233 +268824,211.3,92.2162 +268825,214.05,90.85674 +268826,212.67,91.2808 +268827,211.29,91.7192 +268828,209.93,92.171 +268829,212.73,90.93578 +268830,211.33,91.3181 +268831,209.94,91.715 +268832,208.56,92.1253 +268833,211.41,91.0152 +268834,209.99,91.3555 +268835,208.58,91.7106 +268836,207.19,92.0794 +268837,210.09,91.0948 +268838,208.65,91.3929 +268839,207.23,91.7061 +268840,205.82,92.0331 +268841,208.76,91.1748 +268842,207.31,91.4304 +268843,205.88,91.7014 +268844,204.45,91.9866 +268845,207.44,91.255 +268846,205.97,91.468 +268847,204.52,91.6966 +268848,203.08,91.9398 +268849,206.11,91.3354 +268850,204.63,91.5056 +268851,203.17,91.6917 +268852,201.72,91.8927 +268853,204.78,91.416 +268854,203.29,91.5432 +268855,201.82,91.6867 +268856,200.35,91.8455 +268857,203.45,91.4968 +268858,201.95,91.5808 +268859,200.46,91.6816 +268860,198.99,91.7981 +268861,202.12,91.5776 +268862,200.61,91.6184 +268863,199.11,91.6764 +268864,197.63,91.7506 +268865,200.79,91.6585 +268866,199.27,91.656 +268867,197.76,91.6712 +268868,196.27,91.703 +268869,199.46,91.7395 +268870,197.93,91.6936 +268871,196.41,91.6659 +268872,194.91,91.6553 +268873,198.13,91.8205 +268874,196.59,91.7311 +268875,195.06,91.6605 +268876,193.55,91.6076 +268877,196.79,91.9015 +268878,195.24,91.7686 +268879,193.71,91.6552 +268880,192.19,91.5599 +268881,195.45,91.9824 +268882,193.9,91.8061 +268883,192.36,91.6498 +268884,190.84,91.5123 +268885,194.12,92.0632 +268886,192.56,91.8435 +268887,191.01,91.6444 +268888,189.48,91.4647 +268889,192.78,92.1439 +268890,191.21,91.8808 +268891,189.66,91.6389 +268892,188.13,91.4172 +268893,191.44,92.2244 +268894,189.87,91.918 +268895,188.31,91.6335 +268896,186.78,91.3698 +268897,190.1,92.3048 +268898,188.52,91.9551 +268899,186.97,91.6281 +268900,185.43,91.3225 +268901,188.75,92.3849 +268902,187.18,91.9921 +268903,185.62,91.6228 +268904,184.08,91.2755 +268905,187.41,92.4647 +268906,185.83,92.029 +268907,184.27,91.6174 +268908,182.73,91.2287 +268909,186.06,92.5443 +268910,184.48,92.0658 +268911,182.92,91.6122 +268912,181.38,91.1821 +268913,184.72,92.6235 +268914,183.14,92.1024 +268915,181.58,91.607 +268916,180.03,91.1358 +268917,183.37,92.7024 +268918,181.79,92.1388 +268919,180.23,91.6018 +268920,178.69,91.0898 +268921,182.02,92.7808 +268922,180.44,92.1751 +268923,178.88,91.5968 +268924,177.35,91.0442 +268925,180.67,92.8589 +268926,179.09,92.2112 +268927,177.54,91.5918 +268928,176,90.9989 +268929,179.32,92.9365 +268930,177.74,92.2471 +268931,176.19,91.5869 +268932,174.66,90.95403 +268933,177.96,93.0136 +268934,176.4,92.2828 +268935,174.85,91.5822 +268936,173.32,90.9096 +268937,176.61,93.0901 +268938,175.05,92.3183 +268939,173.5,91.5775 +268940,171.98,90.86563 +268941,175.25,93.1661 +268942,173.7,92.3536 +268943,172.16,91.573 +268944,170.65,90.82215 +268945,173.9,93.2415 +268946,172.34,92.3887 +268947,170.82,91.5687 +268948,169.31,90.77919 +268949,172.54,93.3163 +268950,170.99,92.4235 +268951,169.47,91.5645 +268952,167.97,90.73678 +268953,171.18,93.3904 +268954,169.64,92.4581 +268955,168.13,91.5605 +268956,166.64,90.69494 +268957,169.82,93.4638 +268958,168.29,92.4924 +268959,166.79,91.5566 +268960,165.31,90.65372 +268961,168.46,93.5365 +268962,166.94,92.5264 +268963,165.45,91.5529 +268964,163.98,90.61312 +268965,167.09,93.6084 +268966,165.59,92.5601 +268967,164.1,91.5494 +268968,162.65,90.57319 +268969,165.73,93.6796 +268970,164.23,92.5936 +268971,162.76,91.5461 +268972,161.32,90.53395 +268973,164.37,93.7499 +268974,162.88,92.6268 +268975,161.42,91.543 +268976,159.99,90.49542 +268977,163,93.8194 +268978,161.53,92.6596 +268979,160.08,91.5401 +268980,158.66,90.45763 +268981,161.63,93.888 +268982,160.17,92.6921 +268983,158.74,91.5375 +268984,157.33,90.42061 +268985,160.26,93.9557 +268986,158.82,92.7243 +268987,157.4,91.5351 +268988,156.01,90.38439 +268989,158.89,94.0225 +268990,157.46,92.7561 +268991,156.06,91.5329 +268992,154.69,90.34898 +268993,157.52,94.0883 +268994,156.11,92.7876 +268995,154.72,91.531 +268996,153.36,90.31442 +268997,156.15,94.1532 +268998,154.75,92.8188 +268999,153.38,91.5294 +269000,152.04,90.28073 +269001,154.77,94.217 +269002,153.39,92.8496 +269003,152.04,91.528 +269004,150.72,90.24793 +269005,153.4,94.2797 +269006,152.04,92.8799 +269007,150.7,91.5269 +269008,149.4,90.21605 +269009,152.02,94.3414 +269010,150.68,92.91 +269011,149.37,91.5261 +269012,148.08,90.18511 +269013,150.65,94.402 +269014,149.32,92.9396 +269015,148.03,91.5256 +269016,146.76,90.15513 +269017,149.27,94.4614 +269018,147.96,92.9688 +269019,146.69,91.5254 +269020,145.45,90.12613 +269021,147.89,94.5198 +269022,146.6,92.9976 +269023,145.35,91.5255 +269024,144.13,90.098144 +269025,146.51,94.5769 +269026,145.25,93.026 +269027,144.02,91.5259 +269028,142.82,90.071183 +269029,145.13,94.6328 +269030,143.89,93.054 +269031,142.68,91.5266 +269032,141.5,90.04527 +269033,143.75,94.6876 +269034,142.53,93.0815 +269035,141.34,91.5277 +269036,140.19,90.020426 +269037,142.36,94.741 +269038,141.17,93.1086 +269039,140.01,91.5291 +269040,138.88,89.996671 +269041,140.98,94.7932 +269042,139.81,93.1353 +269043,138.67,91.5309 +269044,137.56,89.974023 +269045,139.59,94.8442 +269046,138.45,93.1615 +269047,137.34,91.533 +269048,136.25,89.952502 +269049,138.21,94.8938 +269050,137.09,93.1872 +269051,136,91.5354 +269052,134.94,89.932124 +269053,136.82,94.9421 +269054,135.73,93.2125 +269055,134.67,91.5382 +269056,133.64,89.912909 +269057,135.43,94.989 +269058,134.36,93.2373 +269059,133.33,91.5414 +269060,132.33,89.89487 +269061,134.04,95.0346 +269062,133,93.2616 +269063,132,91.545 +269064,131.02,89.87803 +269065,132.65,95.0788 +269066,131.64,93.2854 +269067,130.66,91.5489 +269068,129.71,89.8624 +269069,131.26,95.1216 +269070,130.28,93.3088 +269071,129.33,91.5532 +269072,128.41,89.84799 +269073,129.87,95.163 +269074,128.92,93.3317 +269075,127.99,91.5579 +269076,127.1,89.83483 +269077,128.48,95.2029 +269078,127.55,93.354 +269079,126.66,91.563 +269080,125.8,89.82292 +269081,127.09,95.2414 +269082,126.19,93.3759 +269083,125.33,91.5685 +269084,124.49,89.81227 +269085,125.7,95.2784 +269086,124.83,93.3972 +269087,123.99,91.5744 +269088,123.19,89.80291 +269089,124.3,95.314 +269090,123.46,93.4181 +269091,122.66,91.5807 +269092,121.89,89.79484 +269093,122.91,95.3481 +269094,122.1,93.4384 +269095,121.33,91.5874 +269096,120.58,89.78807 +269097,121.51,95.3807 +269098,120.74,93.4582 +269099,119.99,91.5946 +269100,119.28,89.78262 +269101,120.12,95.4118 +269102,119.37,93.4774 +269103,118.66,91.6021 +269104,117.98,89.77849 +269105,118.72,95.4413 +269106,118.01,93.4962 +269107,117.33,91.6101 +269108,116.68,89.7757 +269109,117.32,95.4693 +269110,116.64,93.5144 +269111,116,91.6185 +269112,115.38,89.77425 +269113,115.92,95.4958 +269114,115.28,93.5321 +269115,114.67,91.6273 +269116,114.08,89.77415 +269117,114.53,95.5208 +269118,113.91,93.5492 +269119,113.33,91.6365 +269120,112.78,89.7754 +269121,113.13,95.5442 +269122,112.55,93.5658 +269123,112,91.6462 +269124,111.48,89.77803 +269125,111.73,95.566 +269126,111.18,93.5819 +269127,110.67,91.6563 +269128,110.18,89.78202 +269129,110.33,95.5863 +269130,109.82,93.5974 +269131,109.34,91.6668 +269132,108.88,89.78739 +269133,108.93,95.605 +269134,108.45,93.6124 +269135,108.01,91.6778 +269136,107.59,89.79414 +269137,107.53,95.6222 +269138,107.09,93.6268 +269139,106.67,91.6892 +269140,106.29,89.80228 +269141,106.13,95.6378 +269142,105.72,93.6407 +269143,105.34,91.701 +269144,104.99,89.81181 +269145,104.73,95.6518 +269146,104.35,93.654 +269147,104.01,91.7133 +269148,103.69,89.82272 +269149,103.33,95.6642 +269150,102.99,93.6668 +269151,102.68,91.726 +269152,102.39,89.83504 +269153,101.93,95.675 +269154,101.62,93.6791 +269155,101.35,91.7392 +269156,101.1,89.84874 +269157,100.52,95.6843 +269158,100.26,93.6908 +269159,100.02,91.7528 +269160,99.8,89.86384 +269161,99.122,95.6921 +269162,98.889,93.7019 +269163,98.684,91.7668 +269164,98.504,89.88034 +269165,97.72,95.6982 +269166,97.523,93.7125 +269167,97.353,91.7813 +269168,97.207,89.89823 +269169,96.318,95.7028 +269170,96.156,93.7226 +269171,96.022,91.7962 +269172,95.91,89.917507 +269173,94.916,95.7058 +269174,94.79,93.7321 +269175,94.69,91.8115 +269176,94.613,89.938179 +269177,93.513,95.7073 +269178,93.423,93.741 +269179,93.359,91.8273 +269180,93.316,89.960238 +269181,92.111,95.7072 +269182,92.057,93.7495 +269183,92.027,91.8435 +269184,92.02,89.98368 +269185,90.709,95.7056 +269186,90.69,93.7573 +269187,90.696,91.8601 +269188,90.723,90.0085023 +269189,89.306,95.7024 +269190,89.323,93.7647 +269191,89.364,91.8772 +269192,89.426,90.034698 +269193,87.904,95.6978 +269194,87.957,93.7715 +269195,88.033,91.8947 +269196,88.129,90.062263 +269197,86.502,95.6916 +269198,86.59,93.7778 +269199,86.701,91.9126 +269200,86.832,90.091189 +269201,85.1,95.6839 +269202,85.223,93.7835 +269203,85.369,91.931 +269204,85.534,90.12147 +269205,83.698,95.6747 +269206,83.857,93.7887 +269207,84.037,91.9497 +269208,84.237,90.1531 +269209,82.296,95.664 +269210,82.49,93.7934 +269211,82.705,91.9689 +269212,82.939,90.18607 +269213,80.894,95.6518 +269214,81.124,93.7976 +269215,81.373,91.9885 +269216,81.641,90.22036 +269217,79.493,95.6382 +269218,79.757,93.8012 +269219,80.041,92.0085 +269220,80.343,90.25598 +269221,78.092,95.6232 +269222,78.391,93.8044 +269223,78.709,92.0289 +269224,79.044,90.2929 +269225,76.691,95.6067 +269226,77.024,93.807 +269227,77.376,92.0497 +269228,77.745,90.33112 +269229,75.29,95.5888 +269230,75.658,93.8091 +269231,76.044,92.0709 +269232,76.446,90.37063 +269233,73.89,95.5695 +269234,74.292,93.8108 +269235,74.711,92.0925 +269236,75.146,90.41141 +269237,72.49,95.5488 +269238,72.926,93.8119 +269239,73.378,92.1144 +269240,73.846,90.45345 +269241,71.091,95.5267 +269242,71.56,93.8126 +269243,72.045,92.1368 +269244,72.546,90.49673 +269245,69.692,95.5033 +269246,70.194,93.8127 +269247,70.712,92.1595 +269248,71.245,90.54125 +269249,68.293,95.4786 +269250,68.829,93.8124 +269251,69.379,92.1826 +269252,69.943,90.58698 +269253,66.895,95.4526 +269254,67.463,93.8116 +269255,68.045,92.2061 +269256,68.641,90.63391 +269257,65.497,95.4253 +269258,66.098,93.8104 +269259,66.712,92.2299 +269260,67.339,90.68203 +269261,64.1,95.3967 +269262,64.732,93.8087 +269263,65.378,92.2541 +269264,66.035,90.73131 +269265,62.704,95.3668 +269266,63.367,93.8065 +269267,64.044,92.2787 +269268,64.732,90.78174 +269269,61.308,95.3358 +269270,62.002,93.8039 +269271,62.709,92.3035 +269272,63.428,90.83331 +269273,59.912,95.3035 +269274,60.638,93.8008 +269275,61.375,92.3287 +269276,62.123,90.88598 +269277,58.518,95.2701 +269278,59.273,93.7973 +269279,60.04,92.3543 +269280,60.817,90.93975 +269281,57.124,95.2355 +269282,57.909,93.7934 +269283,58.705,92.3801 +269284,59.511,90.99458 +269285,55.73,95.1997 +269286,56.545,93.7891 +269287,57.369,92.4063 +269288,58.204,91.0505 +269289,54.338,95.1629 +269290,55.181,93.7844 +269291,56.034,92.4328 +269292,56.896,91.1074 +269293,52.946,95.125 +269294,53.817,93.7793 +269295,54.698,92.4595 +269296,55.588,91.1653 +269297,51.554,95.086 +269298,52.453,93.7737 +269299,53.362,92.4866 +269300,54.279,91.2242 +269301,50.164,95.046 +269302,51.09,93.7678 +269303,52.025,92.5139 +269304,52.969,91.2841 +269305,48.774,95.005 +269306,49.727,93.7615 +269307,50.689,92.5415 +269308,51.658,91.3449 +269309,47.386,94.9631 +269310,48.364,93.7549 +269311,49.352,92.5694 +269312,50.346,91.4066 +269313,45.998,94.9201 +269314,47.002,93.7478 +269315,48.014,92.5975 +269316,49.034,91.4693 +269317,44.61,94.8763 +269318,45.64,93.7405 +269319,46.677,92.6259 +269320,47.721,91.5327 +269321,43.224,94.8315 +269322,44.278,93.7328 +269323,45.339,92.6545 +269324,46.407,91.5971 +269325,41.839,94.7859 +269326,42.916,93.7247 +269327,44.001,92.6834 +269328,45.092,91.6622 +269329,40.454,94.7395 +269330,41.555,93.7164 +269331,42.662,92.7125 +269332,43.776,91.7281 +269333,39.071,94.6923 +269334,40.193,93.7077 +269335,41.323,92.7417 +269336,42.459,91.7948 +269337,37.688,94.6443 +269338,38.833,93.6987 +269339,39.984,92.7712 +269340,41.141,91.8622 +269341,36.307,94.5955 +269342,37.472,93.6894 +269343,38.644,92.8009 +269344,39.822,91.9304 +269345,34.926,94.546 +269346,36.112,93.6799 +269347,37.304,92.8308 +269348,38.502,91.9992 +269349,33.547,94.4959 +269350,34.752,93.6701 +269351,35.964,92.8608 +269352,37.181,92.0686 +269353,32.168,94.4451 +269354,33.392,93.66 +269355,34.623,92.891 +269356,35.859,92.1387 +269357,30.79,94.3936 +269358,32.033,93.6496 +269359,33.282,92.9213 +269360,34.536,92.2093 +269361,29.414,94.3416 +269362,30.674,93.639 +269363,31.941,92.9518 +269364,33.213,92.2806 +269365,28.038,94.289 +269366,29.316,93.6282 +269367,30.599,92.9824 +269368,31.888,92.3523 +269369,26.664,94.2359 +269370,27.957,93.6172 +269371,29.257,93.0131 +269372,30.561,92.4246 +269373,25.291,94.1823 +269374,26.599,93.6059 +269375,27.915,93.044 +269376,29.234,92.4973 +269377,23.918,94.1283 +269378,25.242,93.5944 +269379,26.572,93.0749 +269380,27.906,92.5704 +269381,22.547,94.0738 +269382,23.885,93.5828 +269383,25.228,93.106 +269384,26.577,92.644 +269385,21.177,94.0189 +269386,22.528,93.5709 +269387,23.885,93.1371 +269388,25.246,92.7179 +269389,19.808,93.9636 +269390,21.171,93.5589 +269391,22.541,93.1683 +269392,23.915,92.7922 +269393,18.441,93.9081 +269394,19.815,93.5468 +269395,21.196,93.1995 +269396,22.582,92.8668 +269397,17.074,93.8522 +269398,18.459,93.5345 +269399,19.851,93.2308 +269400,21.248,92.9416 +269401,15.708,93.796 +269402,17.104,93.522 +269403,18.506,93.2621 +269404,19.913,93.0167 +269405,14.344,93.7396 +269406,15.749,93.5095 +269407,17.16,93.2934 +269408,18.577,93.0921 +269409,12.981,93.683 +269410,14.394,93.4968 +269411,15.814,93.3248 +269412,17.239,93.1675 +269413,11.619,93.6263 +269414,13.04,93.484 +269415,14.468,93.3561 +269416,15.901,93.2432 +269417,10.258,93.5694 +269418,11.686,93.4711 +269419,13.121,93.3875 +269420,14.561,93.3189 +269421,8.8985,93.5124 +269422,10.332,93.4582 +269423,11.773,93.4188 +269424,13.22,93.3948 +269425,7.54,93.4554 +269426,8.979,93.4451 +269427,10.426,93.4501 +269428,11.878,93.4706 +269429,6.1827,93.3983 +269430,7.6262,93.4321 +269431,9.0774,93.4813 +269432,10.535,93.5465 +269433,4.8266,93.3412 +269434,6.2738,93.4189 +269435,7.7288,93.5125 +269436,9.1902,93.6223 +269437,3.4717,93.2841 +269438,4.9217,93.4057 +269439,6.3797,93.5436 +269440,7.8444,93.6981 +269441,2.118,93.2271 +269442,3.57,93.3926 +269443,5.0303,93.5746 +269444,6.4975,93.7738 +269445,0.76541,93.1702 +269446,2.2187,93.3793 +269447,3.6804,93.6056 +269448,5.1493,93.8494 +269449,359.41,93.1134 +269450,0.86778,93.3661 +269451,2.3302,93.6364 +269452,3.8,93.9248 +269453,358.06,93.0568 +269454,359.52,93.3529 +269455,0.97947,93.6671 +269456,2.4494,94 +269457,356.71,93.0004 +269458,358.17,93.3397 +269459,359.63,93.6977 +269460,1.0976,94.075 +269461,355.37,92.9442 +269462,356.82,93.3266 +269463,358.28,93.7282 +269464,359.74,94.1497 +269465,354.02,92.8883 +269466,355.47,93.3135 +269467,356.92,93.7585 +269468,358.39,94.2241 +269469,352.68,92.8326 +269470,354.12,93.3004 +269471,355.57,93.7887 +269472,357.03,94.2982 +269473,351.33,92.7773 +269474,352.77,93.2874 +269475,354.22,93.8187 +269476,355.68,94.3719 +269477,349.99,92.7223 +269478,351.42,93.2745 +269479,352.87,93.8485 +269480,354.32,94.4452 +269481,348.65,92.6677 +269482,350.07,93.2616 +269483,351.51,93.8781 +269484,352.96,94.5181 +269485,347.3,92.6135 +269486,348.73,93.2489 +269487,350.16,93.9075 +269488,351.6,94.5905 +269489,345.97,92.5598 +269490,347.38,93.2362 +269491,348.8,93.9367 +269492,350.24,94.6623 +269493,344.63,92.5065 +269494,346.03,93.2237 +269495,347.45,93.9657 +269496,348.88,94.7337 +269497,343.29,92.4537 +269498,344.69,93.2113 +269499,346.09,93.9945 +269500,347.51,94.8045 +269501,341.95,92.4015 +269502,343.34,93.199 +269503,344.74,94.0229 +269504,346.15,94.8746 +269505,340.62,92.3499 +269506,341.99,93.1869 +269507,343.38,94.0512 +269508,344.78,94.9442 +269509,339.28,92.2988 +269510,340.65,93.1749 +269511,342.03,94.0792 +269512,343.42,95.0131 +269513,337.95,92.2483 +269514,339.3,93.1631 +269515,340.67,94.1068 +269516,342.05,95.0812 +269517,336.62,92.1985 +269518,337.96,93.1515 +269519,339.31,94.1342 +269520,340.68,95.1486 +269521,335.29,92.1494 +269522,336.62,93.14 +269523,337.95,94.1614 +269524,339.31,95.2153 +269525,333.96,92.101 +269526,335.27,93.1288 +269527,336.6,94.1881 +269528,337.93,95.2812 +269529,332.63,92.0533 +269530,333.93,93.1177 +269531,335.24,94.2146 +269532,336.56,95.3462 +269533,331.3,92.0064 +269534,332.58,93.1069 +269535,333.88,94.2408 +269536,335.19,95.4104 +269537,329.98,91.9603 +269538,331.24,93.0963 +269539,332.52,94.2666 +269540,333.81,95.4736 +269541,328.65,91.915 +269542,329.9,93.0859 +269543,331.16,94.292 +269544,332.44,95.536 +269545,327.33,91.8705 +269546,328.56,93.0758 +269547,329.8,94.3171 +269548,331.06,95.5974 +269549,326,91.8269 +269550,327.21,93.0659 +269551,328.44,94.3419 +269552,329.68,95.6578 +269553,324.68,91.7842 +269554,325.87,93.0563 +269555,327.08,94.3662 +269556,328.3,95.7172 +269557,323.36,91.7424 +269558,324.53,93.0469 +269559,325.72,94.3902 +269560,326.92,95.7756 +269561,322.04,91.7015 +269562,323.19,93.0378 +269563,324.36,94.4138 +269564,325.54,95.8329 +269565,320.72,91.6616 +269566,321.85,93.029 +269567,323,94.4369 +269568,324.16,95.8891 +269569,319.4,91.6226 +269570,320.51,93.0205 +269571,321.63,94.4597 +269572,322.77,95.9442 +269573,318.08,91.5847 +269574,319.17,93.0123 +269575,320.27,94.4821 +269576,321.39,95.9981 +269577,316.76,91.5478 +269578,317.83,93.0044 +269579,318.91,94.504 +269580,320.01,96.0509 +269581,315.45,91.512 +269582,316.49,92.9968 +269583,317.55,94.5255 +269584,318.62,96.1025 +269585,314.13,91.4772 +269586,315.15,92.9895 +269587,316.18,94.5465 +269588,317.23,96.1528 +269589,312.82,91.4435 +269590,313.81,92.9826 +269591,314.82,94.5671 +269592,315.85,96.2019 +269593,311.5,91.4109 +269594,312.47,92.976 +269595,313.46,94.5872 +269596,314.46,96.2497 +269597,310.19,91.3795 +269598,311.13,92.9697 +269599,312.09,94.6069 +269600,313.07,96.2963 +269601,308.88,91.3492 +269602,309.8,92.9638 +269603,310.73,94.6261 +269604,311.68,96.3415 +269605,307.57,91.3201 +269606,308.46,92.9583 +269607,309.36,94.6448 +269608,310.29,96.3854 +269609,306.26,91.2921 +269610,307.12,92.9531 +269611,308,94.663 +269612,308.89,96.4279 +269613,304.95,91.2654 +269614,305.78,92.9482 +269615,306.63,94.6807 +269616,307.5,96.469 +269617,303.64,91.2398 +269618,304.45,92.9438 +269619,305.27,94.698 +269620,306.11,96.5088 +269621,302.33,91.2155 +269622,303.11,92.9397 +269623,303.9,94.7147 +269624,304.71,96.5471 +269625,301.02,91.1925 +269626,301.77,92.936 +269627,302.54,94.7309 +269628,303.32,96.584 +269629,299.71,91.1707 +269630,300.43,92.9327 +269631,301.17,94.7466 +269632,301.92,96.6194 +269633,298.4,91.1501 +269634,299.1,92.9297 +269635,299.8,94.7618 +269636,300.53,96.6534 +269637,297.1,91.1309 +269638,297.76,92.9272 +269639,298.44,94.7765 +269640,299.13,96.6859 +269641,295.79,91.113 +269642,296.42,92.9251 +269643,297.07,94.7906 +269644,297.73,96.7168 +269645,294.49,91.0964 +269646,295.09,92.9234 +269647,295.7,94.8042 +269648,296.34,96.7463 +269649,293.18,91.0811 +269650,293.75,92.922 +269651,294.34,94.8173 +269652,294.94,96.7743 +269653,291.88,91.0671 +269654,292.42,92.9211 +269655,292.97,94.8298 +269656,293.54,96.8007 +269657,290.57,91.0545 +269658,291.08,92.9207 +269659,291.6,94.8418 +269660,292.14,96.8255 +269661,289.27,91.0432 +269662,289.75,92.9206 +269663,290.24,94.8532 +269664,290.74,96.8488 +269665,287.96,91.0333 +269666,288.41,92.9209 +269667,288.87,94.8641 +269668,289.34,96.8705 +269669,286.66,91.0247 +269670,287.07,92.9217 +269671,287.5,94.8744 +269672,287.94,96.8907 +269673,285.36,91.0176 +269674,285.74,92.9229 +269675,286.13,94.8841 +269676,286.54,96.9092 +269677,284.05,91.0118 +269678,284.4,92.9246 +269679,284.76,94.8933 +269680,285.14,96.9262 +269681,282.75,91.0074 +269682,283.07,92.9266 +269683,283.4,94.902 +269684,283.74,96.9415 +269685,281.45,91.0044 +269686,281.73,92.9291 +269687,282.03,94.9101 +269688,282.34,96.9553 +269689,280.15,91.0028 +269690,280.4,92.9321 +269691,280.66,94.9176 +269692,280.94,96.9674 +269693,278.85,91.0026 +269694,279.06,92.9354 +269695,279.29,94.9245 +269696,279.53,96.9779 +269697,277.54,91.0038 +269698,277.73,92.9392 +269699,277.92,94.9309 +269700,278.13,96.9868 +269701,276.24,91.0064 +269702,276.39,92.9435 +269703,276.55,94.9367 +269704,276.73,96.9941 +269705,274.94,91.0104 +269706,275.06,92.9482 +269707,275.19,94.9419 +269708,275.33,96.9997 +269709,273.64,91.0158 +269710,273.72,92.9533 +269711,273.82,94.9466 +269712,273.92,97.0038 +269713,272.34,91.0226 +269714,272.39,92.9588 +269715,272.45,94.9507 +269716,272.52,97.0062 +269717,271.04,91.0309 +269718,271.05,92.9648 +269719,271.08,94.9542 +269720,271.12,97.0069 +269721,269.74,91.0405 +269722,269.72,92.9713 +269723,269.71,94.9572 +269724,269.71,97.0061 +269725,268.43,91.0516 +269726,268.38,92.9781 +269727,268.34,94.9596 +269728,268.31,97.0036 +269729,267.13,91.064 +269730,267.05,92.9854 +269731,266.97,94.9614 +269732,266.91,96.9996 +269733,265.83,91.0779 +269734,265.71,92.9932 +269735,265.61,94.9626 +269736,265.51,96.9939 +269737,264.53,91.0931 +269738,264.38,93.0013 +269739,264.24,94.9633 +269740,264.1,96.9866 +269741,263.23,91.1097 +269742,263.04,93.0099 +269743,262.87,94.9635 +269744,262.7,96.9777 +269745,261.93,91.1278 +269746,261.71,93.0189 +269747,261.5,94.9631 +269748,261.3,96.9672 +269749,260.62,91.1472 +269750,260.37,93.0284 +269751,260.13,94.9621 +269752,259.9,96.9552 +269753,259.32,91.1679 +269754,259.04,93.0383 +269755,258.76,94.9605 +269756,258.5,96.9415 +269757,258.02,91.1901 +269758,257.7,93.0486 +269759,257.4,94.9584 +269760,257.09,96.9264 +269761,256.72,91.2136 +269762,256.37,93.0593 +269763,256.03,94.9558 +269764,255.69,96.9096 +269765,255.41,91.2384 +269766,255.03,93.0704 +269767,254.66,94.9526 +269768,254.29,96.8913 +269769,254.11,91.2646 +269770,253.7,93.0819 +269771,253.29,94.9489 +269772,252.89,96.8715 +269773,252.8,91.2921 +269774,252.36,93.0939 +269775,251.92,94.9446 +269776,251.49,96.8502 +269777,251.5,91.3209 +269778,251.03,93.1062 +269779,250.56,94.9399 +269780,250.09,96.8274 +269781,250.2,91.351 +269782,249.69,93.119 +269783,249.19,94.9345 +269784,248.69,96.8031 +269785,248.89,91.3824 +269786,248.35,93.1321 +269787,247.82,94.9287 +269788,247.29,96.7773 +269789,247.58,91.4151 +269790,247.02,93.1457 +269791,246.45,94.9223 +269792,245.89,96.7501 +269793,246.28,91.4491 +269794,245.68,93.1596 +269795,245.09,94.9154 +269796,244.49,96.7214 +269797,244.97,91.4843 +269798,244.34,93.1739 +269799,243.72,94.9081 +269800,243.1,96.6914 +269801,243.66,91.5207 +269802,243.01,93.1886 +269803,242.35,94.9002 +269804,241.7,96.6599 +269805,242.36,91.5584 +269806,241.67,93.2036 +269807,240.98,94.8918 +269808,240.3,96.627 +269809,241.05,91.5973 +269810,240.33,93.2191 +269811,239.62,94.8829 +269812,238.91,96.5928 +269813,239.74,91.6374 +269814,238.99,93.2348 +269815,238.25,94.8735 +269816,237.51,96.5573 +269817,238.43,91.6786 +269818,237.66,93.251 +269819,236.89,94.8637 +269820,236.12,96.5204 +269821,237.12,91.721 +269822,236.32,93.2674 +269823,235.52,94.8534 +269824,234.72,96.4822 +269825,235.81,91.7645 +269826,234.98,93.2842 +269827,234.15,94.8426 +269828,233.33,96.4428 +269829,234.5,91.8092 +269830,233.64,93.3014 +269831,232.79,94.8314 +269832,231.94,96.4021 +269833,233.18,91.8549 +269834,232.3,93.3188 +269835,231.42,94.8197 +269836,230.54,96.3602 +269837,231.87,91.9017 +269838,230.96,93.3366 +269839,230.06,94.8076 +269840,229.15,96.317 +269841,230.56,91.9496 +269842,229.62,93.3547 +269843,228.69,94.795 +269844,227.76,96.2727 +269845,229.24,91.9985 +269846,228.29,93.3731 +269847,227.33,94.782 +269848,226.37,96.2273 +269849,227.93,92.0484 +269850,226.95,93.3918 +269851,225.96,94.7686 +269852,224.98,96.1807 +269853,226.61,92.0993 +269854,225.61,93.4108 +269855,224.6,94.7548 +269856,223.59,96.133 +269857,225.29,92.1511 +269858,224.27,93.4301 +269859,223.24,94.7406 +269860,222.21,96.0843 +269861,223.98,92.204 +269862,222.92,93.4496 +269863,221.87,94.726 +269864,220.82,96.0345 +269865,222.66,92.2577 +269866,221.58,93.4694 +269867,220.51,94.711 +269868,219.44,95.9837 +269869,221.34,92.3123 +269870,220.24,93.4895 +269871,219.15,94.6956 +269872,218.05,95.9319 +269873,220.02,92.3678 +269874,218.9,93.5098 +269875,217.78,94.6799 +269876,216.67,95.8791 +269877,218.7,92.4241 +269878,217.56,93.5303 +269879,216.42,94.6638 +269880,215.28,95.8254 +269881,217.37,92.4813 +269882,216.22,93.5511 +269883,215.06,94.6473 +269884,213.9,95.7708 +269885,216.05,92.5392 +269886,214.87,93.5721 +269887,213.7,94.6305 +269888,212.52,95.7153 +269889,214.73,92.5979 +269890,213.53,93.5932 +269891,212.34,94.6134 +269892,211.14,95.659 +269893,213.4,92.6573 +269894,212.19,93.6146 +269895,210.98,94.596 +269896,209.76,95.6019 +269897,212.07,92.7175 +269898,210.85,93.6362 +269899,209.62,94.5783 +269900,208.39,95.544 +269901,210.75,92.7783 +269902,209.5,93.658 +269903,208.26,94.5602 +269904,207.01,95.4854 +269905,209.42,92.8398 +269906,208.16,93.6799 +269907,206.9,94.5419 +269908,205.63,95.4261 +269909,208.09,92.9019 +269910,206.81,93.702 +269911,205.54,94.5233 +269912,204.26,95.366 +269913,206.76,92.9646 +269914,205.47,93.7242 +269915,204.18,94.5045 +269916,202.88,95.3053 +269917,205.43,93.0278 +269918,204.12,93.7466 +269919,202.82,94.4853 +269920,201.51,95.244 +269921,204.09,93.0916 +269922,202.78,93.7691 +269923,201.46,94.466 +269924,200.14,95.1822 +269925,202.76,93.1559 +269926,201.43,93.7918 +269927,200.1,94.4464 +269928,198.77,95.1197 +269929,201.42,93.2207 +269930,200.08,93.8145 +269931,198.74,94.4266 +269932,197.4,95.0568 +269933,200.09,93.2859 +269934,198.74,93.8373 +269935,197.39,94.4065 +269936,196.03,94.9933 +269937,198.75,93.3515 +269938,197.39,93.8603 +269939,196.03,94.3863 +269940,194.67,94.9294 +269941,197.41,93.4175 +269942,196.04,93.8833 +269943,194.67,94.3658 +269944,193.3,94.8651 +269945,196.07,93.4839 +269946,194.7,93.9063 +269947,193.32,94.3452 +269948,191.94,94.8004 +269949,194.73,93.5505 +269950,193.35,93.9295 +269951,191.96,94.3245 +269952,190.57,94.7354 +269953,193.39,93.6175 +269954,192,93.9526 +269955,190.6,94.3035 +269956,189.21,94.67 +269957,192.05,93.6846 +269958,190.65,93.9758 +269959,189.25,94.2824 +269960,187.85,94.6044 +269961,190.7,93.752 +269962,189.3,93.999 +269963,187.89,94.2612 +269964,186.49,94.5385 +269965,189.36,93.8196 +269966,187.95,94.0223 +269967,186.54,94.2399 +269968,185.13,94.4723 +269969,188.01,93.8874 +269970,186.6,94.0455 +269971,185.19,94.2184 +269972,183.77,94.406 +269973,186.67,93.9552 +269974,185.25,94.0687 +269975,183.83,94.1968 +269976,182.42,94.3396 +269977,185.32,94.0232 +269978,183.9,94.0919 +269979,182.48,94.1752 +269980,181.06,94.273 +269981,183.97,94.0912 +269982,182.55,94.115 +269983,181.13,94.1535 +269984,179.71,94.2064 +269985,182.62,94.1592 +269986,181.2,94.1381 +269987,179.77,94.1317 +269988,178.35,94.1397 +269989,181.26,94.2271 +269990,179.84,94.1612 +269991,178.42,94.1098 +269992,177,94.073 +269993,179.91,94.2951 +269994,178.49,94.1842 +269995,177.07,94.0879 +269996,175.65,94.0064 +269997,178.56,94.3629 +269998,177.14,94.2071 +269999,175.72,94.066 +270000,174.3,93.9397 +270001,177.2,94.4307 +270002,175.78,94.2299 +270003,174.37,94.044 +270004,172.95,93.8732 +270005,175.84,94.4982 +270006,174.43,94.2526 +270007,173.02,94.0221 +270008,171.61,93.8068 +270009,174.49,94.5656 +270010,173.08,94.2752 +270011,171.67,94.0001 +270012,170.26,93.7406 +270013,173.13,94.6328 +270014,171.72,94.2976 +270015,170.32,93.9782 +270016,168.92,93.6745 +270017,171.77,94.6997 +270018,170.37,94.32 +270019,168.97,93.9563 +270020,167.57,93.6087 +270021,170.4,94.7663 +270022,169.01,94.3421 +270023,167.62,93.9344 +270024,166.23,93.5431 +270025,169.04,94.8326 +270026,167.66,94.3641 +270027,166.27,93.9125 +270028,164.89,93.4778 +270029,167.68,94.8986 +270030,166.3,94.386 +270031,164.92,93.8907 +270032,163.55,93.4128 +270033,166.31,94.9641 +270034,164.94,94.4076 +270035,163.58,93.869 +270036,162.21,93.3482 +270037,164.95,95.0292 +270038,163.59,94.4291 +270039,162.23,93.8474 +270040,160.87,93.2839 +270041,163.58,95.0939 +270042,162.23,94.4504 +270043,160.88,93.8258 +270044,159.54,93.2201 +270045,162.21,95.158 +270046,160.87,94.4714 +270047,159.53,93.8043 +270048,158.2,93.1567 +270049,160.84,95.2217 +270050,159.51,94.4922 +270051,158.19,93.783 +270052,156.87,93.0938 +270053,159.47,95.2848 +270054,158.16,94.5128 +270055,156.84,93.7618 +270056,155.53,93.0314 +270057,158.1,95.3473 +270058,156.8,94.5332 +270059,155.5,93.7407 +270060,154.2,92.9696 +270061,156.73,95.4091 +270062,155.44,94.5532 +270063,154.15,93.7197 +270064,152.87,92.9083 +270065,155.35,95.4703 +270066,154.08,94.573 +270067,152.81,93.6989 +270068,151.54,92.8476 +270069,153.98,95.5308 +270070,152.72,94.5926 +270071,151.46,93.6783 +270072,150.21,92.7875 +270073,152.6,95.5906 +270074,151.36,94.6118 +270075,150.12,93.6578 +270076,148.88,92.7281 +270077,151.22,95.6497 +270078,150,94.6307 +270079,148.77,93.6375 +270080,147.55,92.6694 +270081,149.85,95.7079 +270082,148.64,94.6494 +270083,147.43,93.6174 +270084,146.23,92.6114 +270085,148.47,95.7653 +270086,147.28,94.6677 +270087,146.09,93.5975 +270088,144.9,92.5541 +270089,147.09,95.8219 +270090,145.91,94.6857 +270091,144.75,93.5779 +270092,143.58,92.4976 +270093,145.7,95.8776 +270094,144.55,94.7033 +270095,143.4,93.5584 +270096,142.26,92.4419 +270097,144.32,95.9324 +270098,143.19,94.7206 +270099,142.06,93.5392 +270100,140.93,92.387 +270101,142.94,95.9863 +270102,141.83,94.7375 +270103,140.72,93.5202 +270104,139.61,92.3329 +270105,141.56,96.0392 +270106,140.47,94.7541 +270107,139.38,93.5014 +270108,138.29,92.2797 +270109,140.17,96.0911 +270110,139.1,94.7702 +270111,138.04,93.4829 +270112,136.97,92.2275 +270113,138.78,96.142 +270114,137.74,94.786 +270115,136.7,93.4647 +270116,135.65,92.1761 +270117,137.4,96.1918 +270118,136.38,94.8014 +270119,135.36,93.4468 +270120,134.34,92.1257 +270121,136.01,96.2405 +270122,135.01,94.8164 +270123,134.01,93.4291 +270124,133.02,92.0763 +270125,134.62,96.2882 +270126,133.65,94.831 +270127,132.67,93.4117 +270128,131.7,92.0278 +270129,133.23,96.3347 +270130,132.28,94.8452 +270131,131.34,93.3946 +270132,130.39,91.9804 +270133,131.84,96.38 +270134,130.92,94.8589 +270135,130,93.3778 +270136,129.07,91.934 +270137,130.45,96.4242 +270138,129.55,94.8722 +270139,128.66,93.3614 +270140,127.76,91.8886 +270141,129.06,96.4671 +270142,128.19,94.885 +270143,127.32,93.3452 +270144,126.45,91.8443 +270145,127.67,96.5088 +270146,126.82,94.8974 +270147,125.98,93.3294 +270148,125.13,91.8012 +270149,126.28,96.5492 +270150,125.46,94.9094 +270151,124.64,93.3139 +270152,123.82,91.7591 +270153,124.88,96.5884 +270154,124.09,94.9209 +270155,123.3,93.2988 +270156,122.51,91.7182 +270157,123.49,96.6263 +270158,122.73,94.9319 +270159,121.96,93.2839 +270160,121.2,91.6785 +270161,122.09,96.6628 +270162,121.36,94.9424 +270163,120.63,93.2695 +270164,119.89,91.6399 +270165,120.7,96.698 +270166,119.99,94.9524 +270167,119.29,93.2554 +270168,118.58,91.6025 +270169,119.3,96.7318 +270170,118.63,94.9619 +270171,117.95,93.2417 +270172,117.28,91.5663 +270173,117.9,96.7643 +270174,117.26,94.971 +270175,116.61,93.2283 +270176,115.97,91.5313 +270177,116.51,96.7953 +270178,115.89,94.9795 +270179,115.28,93.2154 +270180,114.66,91.4976 +270181,115.11,96.8249 +270182,114.52,94.9875 +270183,113.94,93.2028 +270184,113.35,91.4652 +270185,113.71,96.853 +270186,113.16,94.9951 +270187,112.6,93.1905 +270188,112.05,91.434 +270189,112.31,96.8797 +270190,111.79,95.002 +270191,111.27,93.1787 +270192,110.74,91.404 +270193,110.91,96.905 +270194,110.42,95.0085 +270195,109.93,93.1673 +270196,109.44,91.3754 +270197,109.51,96.9287 +270198,109.05,95.0144 +270199,108.59,93.1563 +270200,108.13,91.3481 +270201,108.11,96.9509 +270202,107.69,95.0198 +270203,107.26,93.1457 +270204,106.83,91.3221 +270205,106.71,96.9716 +270206,106.32,95.0247 +270207,105.92,93.1355 +270208,105.52,91.2974 +270209,105.31,96.9908 +270210,104.95,95.029 +270211,104.59,93.1257 +270212,104.22,91.2741 +270213,103.91,97.0084 +270214,103.58,95.0328 +270215,103.25,93.1163 +270216,102.92,91.2521 +270217,102.51,97.0245 +270218,102.21,95.036 +270219,101.92,93.1073 +270220,101.61,91.2315 +270221,101.1,97.039 +270222,100.84,95.0386 +270223,100.58,93.0988 +270224,100.31,91.2122 +270225,99.703,97.0519 +270226,99.476,95.0408 +270227,99.245,93.0907 +270228,99.008,91.1944 +270229,98.301,97.0633 +270230,98.108,95.0423 +270231,97.91,93.083 +270232,97.706,91.1779 +270233,96.898,97.073 +270234,96.739,95.0433 +270235,96.574,93.0757 +270236,96.404,91.1627 +270237,95.496,97.0812 +270238,95.371,95.0437 +270239,95.239,93.0689 +270240,95.102,91.149 +270241,94.093,97.0877 +270242,94.002,95.0436 +270243,93.904,93.0625 +270244,93.8,91.1367 +270245,92.691,97.0926 +270246,92.633,95.0429 +270247,92.569,93.0565 +270248,92.498,91.1258 +270249,91.288,97.0959 +270250,91.264,95.0416 +270251,91.234,93.051 +270252,91.196,91.1162 +270253,89.885,97.0976 +270254,89.896,95.0397 +270255,89.899,93.0459 +270256,89.895,91.1081 +270257,88.482,97.0977 +270258,88.527,95.0373 +270259,88.564,93.0413 +270260,88.593,91.1014 +270261,87.079,97.0961 +270262,87.158,95.0343 +270263,87.229,93.037 +270264,87.291,91.0961 +270265,85.677,97.0929 +270266,85.79,95.0308 +270267,85.894,93.0333 +270268,85.99,91.0922 +270269,84.274,97.0881 +270270,84.421,95.0267 +270271,84.558,93.0299 +270272,84.688,91.0897 +270273,82.872,97.0816 +270274,83.052,95.022 +270275,83.223,93.027 +270276,83.386,91.0886 +270277,81.469,97.0736 +270278,81.684,95.0167 +270279,81.888,93.0246 +270280,82.084,91.089 +270281,80.067,97.0639 +270282,80.315,95.0108 +270283,80.553,93.0225 +270284,80.782,91.0907 +270285,78.665,97.0525 +270286,78.947,95.0044 +270287,79.218,93.0209 +270288,79.48,91.0939 +270289,77.263,97.0396 +270290,77.579,94.9975 +270291,77.883,93.0198 +270292,78.178,91.0984 +270293,75.862,97.025 +270294,76.21,94.9899 +270295,76.547,93.0191 +270296,76.875,91.1043 +270297,74.461,97.0089 +270298,74.842,94.9818 +270299,75.212,93.0188 +270300,75.572,91.1117 +270301,73.06,96.9911 +270302,73.474,94.9732 +270303,73.876,93.0189 +270304,74.269,91.1204 +270305,71.659,96.9718 +270306,72.106,94.9639 +270307,72.541,93.0195 +270308,72.966,91.1304 +270309,70.259,96.9509 +270310,70.738,94.9542 +270311,71.205,93.0204 +270312,71.662,91.1419 +270313,68.859,96.9284 +270314,69.371,94.9438 +270315,69.869,93.0218 +270316,70.358,91.1547 +270317,67.46,96.9043 +270318,68.003,94.933 +270319,68.533,93.0237 +270320,69.053,91.1689 +270321,66.061,96.8787 +270322,66.636,94.9215 +270323,67.197,93.0259 +270324,67.748,91.1844 +270325,64.663,96.8516 +270326,65.269,94.9096 +270327,65.861,93.0286 +270328,66.443,91.2012 +270329,63.265,96.8229 +270330,63.902,94.8971 +270331,64.525,93.0316 +270332,65.137,91.2194 +270333,61.867,96.7927 +270334,62.535,94.884 +270335,63.188,93.0351 +270336,63.831,91.2389 +270337,60.47,96.761 +270338,61.168,94.8705 +270339,61.852,93.0389 +270340,62.524,91.2596 +270341,59.074,96.7278 +270342,59.802,94.8564 +270343,60.515,93.0432 +270344,61.217,91.2817 +270345,57.679,96.6932 +270346,58.435,94.8417 +270347,59.178,93.0479 +270348,59.909,91.305 +270349,56.284,96.6571 +270350,57.069,94.8266 +270351,57.841,93.0529 +270352,58.601,91.3297 +270353,54.889,96.6196 +270354,55.703,94.811 +270355,56.503,93.0583 +270356,57.292,91.3555 +270357,53.495,96.5806 +270358,54.338,94.7948 +270359,55.166,93.0641 +270360,55.982,91.3826 +270361,52.102,96.5403 +270362,52.972,94.7782 +270363,53.828,93.0703 +270364,54.672,91.4109 +270365,50.71,96.4986 +270366,51.607,94.761 +270367,52.49,93.0768 +270368,53.361,91.4404 +270369,49.319,96.4555 +270370,50.242,94.7434 +270371,51.152,93.0837 +270372,52.049,91.4711 +270373,47.928,96.4111 +270374,48.878,94.7253 +270375,49.813,93.091 +270376,50.737,91.5029 +270377,46.538,96.3654 +270378,47.513,94.7067 +270379,48.475,93.0986 +270380,49.424,91.5359 +270381,45.149,96.3184 +270382,46.149,94.6877 +270383,47.136,93.1065 +270384,48.11,91.57 +270385,43.76,96.2701 +270386,44.786,94.6682 +270387,45.797,93.1148 +270388,46.796,91.6052 +270389,42.373,96.2206 +270390,43.422,94.6483 +270391,44.457,93.1234 +270392,45.48,91.6416 +270393,40.986,96.1698 +270394,42.059,94.6279 +270395,43.117,93.1323 +270396,44.164,91.679 +270397,39.601,96.1179 +270398,40.696,94.607 +270399,41.777,93.1415 +270400,42.847,91.7174 +270401,38.216,96.0648 +270402,39.333,94.5858 +270403,40.437,93.151 +270404,41.529,91.7569 +270405,36.832,96.0105 +270406,37.971,94.5641 +270407,39.097,93.1609 +270408,40.21,91.7973 +270409,35.449,95.9552 +270410,36.609,94.542 +270411,37.756,93.171 +270412,38.891,91.8388 +270413,34.067,95.8987 +270414,35.248,94.5195 +270415,36.415,93.1814 +270416,37.57,91.8812 +270417,32.686,95.8412 +270418,33.886,94.4966 +270419,35.073,93.1921 +270420,36.249,91.9245 +270421,31.306,95.7826 +270422,32.525,94.4734 +270423,33.732,93.203 +270424,34.926,91.9688 +270425,29.927,95.723 +270426,31.165,94.4497 +270427,32.39,93.2142 +270428,33.603,92.014 +270429,28.549,95.6625 +270430,29.804,94.4257 +270431,31.047,93.2257 +270432,32.278,92.06 +270433,27.172,95.601 +270434,28.445,94.4013 +270435,29.704,93.2374 +270436,30.953,92.1068 +270437,25.797,95.5386 +270438,27.085,94.3766 +270439,28.361,93.2493 +270440,29.627,92.1545 +270441,24.422,95.4753 +270442,25.726,94.3516 +270443,27.018,93.2614 +270444,28.299,92.2029 +270445,23.048,95.4111 +270446,24.367,94.3262 +270447,25.674,93.2738 +270448,26.971,92.2521 +270449,21.675,95.3462 +270450,23.009,94.3005 +270451,24.33,93.2863 +270452,25.641,92.3021 +270453,20.304,95.2804 +270454,21.651,94.2745 +270455,22.986,93.2991 +270456,24.311,92.3527 +270457,18.934,95.2139 +270458,20.293,94.2482 +270459,21.641,93.312 +270460,22.979,92.404 +270461,17.564,95.1466 +270462,18.936,94.2216 +270463,20.296,93.3251 +270464,21.647,92.456 +270465,16.196,95.0786 +270466,17.579,94.1947 +270467,18.951,93.3384 +270468,20.313,92.5086 +270469,14.829,95.01 +270470,16.222,94.1675 +270471,17.605,93.3518 +270472,18.978,92.5618 +270473,13.463,94.9407 +270474,14.866,94.1401 +270475,16.259,93.3654 +270476,17.642,92.6155 +270477,12.099,94.8709 +270478,13.51,94.1125 +270479,14.913,93.3791 +270480,16.305,92.6698 +270481,10.735,94.8004 +270482,12.155,94.0846 +270483,13.566,93.3929 +270484,14.967,92.7246 +270485,9.373,94.7295 +270486,10.8,94.0565 +270487,12.218,93.4069 +270488,13.628,92.7798 +270489,8.0119,94.658 +270490,9.4456,94.0282 +270491,10.871,93.4209 +270492,12.287,92.8355 +270493,6.6519,94.5861 +270494,8.0914,93.9997 +270495,9.5229,93.4351 +270496,10.945,92.8916 +270497,5.2932,94.5137 +270498,6.7378,93.971 +270499,8.1745,93.4493 +270500,9.6026,92.9481 +270501,3.9356,94.441 +270502,5.3845,93.9421 +270503,6.8258,93.4636 +270504,8.2586,93.0049 +270505,2.5792,94.3679 +270506,4.0316,93.913 +270507,5.4767,93.4779 +270508,6.9135,93.0621 +270509,1.2241,94.2944 +270510,2.6791,93.8838 +270511,4.1272,93.4923 +270512,5.5672,93.1195 +270513,359.87,94.2207 +270514,1.3271,93.8544 +270515,2.7774,93.5068 +270516,4.2197,93.1772 +270517,358.52,94.1467 +270518,359.98,93.8249 +270519,1.4271,93.5212 +270520,2.871,93.2351 +270521,357.17,94.0724 +270522,358.62,93.7953 +270523,0.076499,93.5357 +270524,1.5212,93.2932 +270525,355.82,93.998 +270526,357.27,93.7656 +270527,358.73,93.5502 +270528,0.17018,93.3514 +270529,354.47,93.9234 +270530,355.92,93.7357 +270531,357.37,93.5647 +270532,358.82,93.4098 +270533,353.12,93.8487 +270534,354.57,93.7058 +270535,356.02,93.5791 +270536,357.46,93.4683 +270537,351.77,93.774 +270538,353.22,93.6758 +270539,354.67,93.5936 +270540,356.11,93.5268 +270541,350.43,93.6991 +270542,351.87,93.6457 +270543,353.32,93.6079 +270544,354.75,93.5853 +270545,349.08,93.6242 +270546,350.53,93.6156 +270547,351.96,93.6223 +270548,353.4,93.6439 +270549,347.74,93.5494 +270550,349.18,93.5854 +270551,350.61,93.6366 +270552,352.04,93.7024 +270553,346.4,93.4746 +270554,347.83,93.5552 +270555,349.26,93.6508 +270556,350.68,93.7608 +270557,345.06,93.3999 +270558,346.48,93.525 +270559,347.9,93.6649 +270560,349.32,93.8191 +270561,343.72,93.3253 +270562,345.14,93.4948 +270563,346.55,93.6789 +270564,347.96,93.8773 +270565,342.38,93.2508 +270566,343.79,93.4645 +270567,345.19,93.6929 +270568,346.59,93.9353 +270569,341.04,93.1766 +270570,342.44,93.4343 +270571,343.84,93.7067 +270572,345.23,93.9931 +270573,339.7,93.1025 +270574,341.1,93.4041 +270575,342.48,93.7204 +270576,343.87,94.0507 +270577,338.37,93.0287 +270578,339.75,93.374 +270579,341.13,93.7339 +270580,342.5,94.108 +270581,337.04,92.9552 +270582,338.41,93.3439 +270583,339.77,93.7473 +270584,341.13,94.1649 +270585,335.7,92.882 +270586,337.06,93.3138 +270587,338.42,93.7605 +270588,339.76,94.2216 +270589,334.37,92.8091 +270590,335.72,93.2838 +270591,337.06,93.7736 +270592,338.39,94.2779 +270593,333.04,92.7367 +270594,334.37,93.2539 +270595,335.7,93.7864 +270596,337.02,94.3337 +270597,331.71,92.6646 +270598,333.03,93.2241 +270599,334.34,93.7991 +270600,335.65,94.3891 +270601,330.38,92.593 +270602,331.69,93.1944 +270603,332.99,93.8116 +270604,334.28,94.4441 +270605,329.06,92.5218 +270606,330.34,93.1648 +270607,331.63,93.8239 +270608,332.9,94.4986 +270609,327.73,92.4512 +270610,329,93.1353 +270611,330.27,93.8359 +270612,331.53,94.5525 +270613,326.41,92.3811 +270614,327.66,93.1059 +270615,328.91,93.8477 +270616,330.15,94.6058 +270617,325.08,92.3115 +270618,326.32,93.0767 +270619,327.55,93.8592 +270620,328.78,94.6586 +270621,323.76,92.2426 +270622,324.98,93.0477 +270623,326.19,93.8705 +270624,327.4,94.7107 +270625,322.44,92.1742 +270626,323.64,93.0188 +270627,324.83,93.8816 +270628,326.02,94.7622 +270629,321.12,92.1066 +270630,322.3,92.99 +270631,323.47,93.8923 +270632,324.64,94.813 +270633,319.8,92.0396 +270634,320.96,92.9615 +270635,322.11,93.9028 +270636,323.26,94.863 +270637,318.48,91.9733 +270638,319.62,92.9332 +270639,320.75,93.9129 +270640,321.87,94.9123 +270641,317.16,91.9078 +270642,318.28,92.905 +270643,319.39,93.9228 +270644,320.49,94.9608 +270645,315.84,91.843 +270646,316.94,92.8771 +270647,318.03,93.9323 +270648,319.11,95.0085 +270649,314.53,91.779 +270650,315.6,92.8494 +270651,316.66,93.9415 +270652,317.72,95.0554 +270653,313.21,91.7158 +270654,314.26,92.8219 +270655,315.3,93.9504 +270656,316.34,95.1014 +270657,311.9,91.6535 +270658,312.92,92.7947 +270659,313.94,93.9589 +270660,314.95,95.1464 +270661,310.58,91.5921 +270662,311.58,92.7677 +270663,312.58,93.9671 +270664,313.56,95.1906 +270665,309.27,91.5315 +270666,310.25,92.741 +270667,311.21,93.9749 +270668,312.17,95.2338 +270669,307.96,91.4719 +270670,308.91,92.7145 +270671,309.85,93.9824 +270672,310.78,95.276 +270673,306.65,91.4132 +270674,307.57,92.6883 +270675,308.49,93.9894 +270676,309.39,95.3172 +270677,305.34,91.3554 +270678,306.23,92.6624 +270679,307.12,93.9961 +270680,308,95.3573 +270681,304.03,91.2987 +270682,304.9,92.6368 +270683,305.76,94.0024 +270684,306.61,95.3964 +270685,302.72,91.243 +270686,303.56,92.6115 +270687,304.4,94.0083 +270688,305.22,95.4344 +270689,301.41,91.1883 +270690,302.23,92.5865 +270691,303.03,94.0137 +270692,303.83,95.4713 +270693,300.1,91.1347 +270694,300.89,92.5618 +270695,301.67,94.0188 +270696,302.43,95.507 +270697,298.8,91.0821 +270698,299.55,92.5374 +270699,300.3,94.0234 +270700,301.04,95.5416 +270701,297.49,91.0307 +270702,298.22,92.5133 +270703,298.94,94.0275 +270704,299.64,95.575 +270705,296.19,90.98032 +270706,296.88,92.4896 +270707,297.57,94.0313 +270708,298.25,95.6072 +270709,294.88,90.93111 +270710,295.55,92.4662 +270711,296.21,94.0345 +270712,296.85,95.6381 +270713,293.58,90.88306 +270714,294.22,92.4432 +270715,294.84,94.0374 +270716,295.45,95.6678 +270717,292.27,90.83617 +270718,292.88,92.4205 +270719,293.48,94.0397 +270720,294.06,95.6962 +270721,290.97,90.79048 +270722,291.55,92.3982 +270723,292.11,94.0416 +270724,292.66,95.7233 +270725,289.67,90.74598 +270726,290.21,92.3763 +270727,290.74,94.043 +270728,291.26,95.749 +270729,288.37,90.70271 +270730,288.88,92.3547 +270731,289.38,94.044 +270732,289.86,95.7735 +270733,287.07,90.66068 +270734,287.55,92.3335 +270735,288.01,94.0444 +270736,288.46,95.7965 +270737,285.77,90.61989 +270738,286.21,92.3127 +270739,286.65,94.0444 +270740,287.06,95.8182 +270741,284.46,90.58037 +270742,284.88,92.2923 +270743,285.28,94.0438 +270744,285.66,95.8386 +270745,283.16,90.54212 +270746,283.55,92.2723 +270747,283.91,94.0428 +270748,284.26,95.8575 +270749,281.86,90.50517 +270750,282.21,92.2526 +270751,282.55,94.0412 +270752,282.86,95.8749 +270753,280.57,90.46951 +270754,280.88,92.2334 +270755,281.18,94.0391 +270756,281.46,95.891 +270757,279.27,90.43517 +270758,279.55,92.2146 +270759,279.81,94.0366 +270760,280.06,95.9055 +270761,277.97,90.40215 +270762,278.22,92.1962 +270763,278.45,94.0334 +270764,278.66,95.9186 +270765,276.67,90.37047 +270766,276.88,92.1782 +270767,277.08,94.0298 +270768,277.26,95.9303 +270769,275.37,90.34012 +270770,275.55,92.1606 +270771,275.71,94.0257 +270772,275.85,95.9404 +270773,274.07,90.31113 +270774,274.22,92.1434 +270775,274.35,94.021 +270776,274.45,95.949 +270777,272.77,90.2835 +270778,272.89,92.1267 +270779,272.98,94.0157 +270780,273.05,95.9561 +270781,271.48,90.25723 +270782,271.55,92.1104 +270783,271.61,94.01 +270784,271.65,95.9617 +270785,270.18,90.23233 +270786,270.22,92.0945 +270787,270.24,94.0037 +270788,270.25,95.9657 +270789,268.88,90.20881 +270790,268.89,92.079 +270791,268.88,93.9968 +270792,268.84,95.9682 +270793,267.58,90.18668 +270794,267.56,92.064 +270795,267.51,93.9894 +270796,267.44,95.9691 +270797,266.29,90.16593 +270798,266.23,92.0494 +270799,266.14,93.9815 +270800,266.04,95.9685 +270801,264.99,90.14657 +270802,264.89,92.0352 +270803,264.78,93.973 +270804,264.64,95.9663 +270805,263.69,90.12861 +270806,263.56,92.0215 +270807,263.41,93.964 +270808,263.23,95.9626 +270809,262.39,90.11205 +270810,262.23,92.0082 +270811,262.04,93.9544 +270812,261.83,95.9572 +270813,261.09,90.096876 +270814,260.9,91.9954 +270815,260.68,93.9443 +270816,260.43,95.9503 +270817,259.8,90.083105 +270818,259.57,91.983 +270819,259.31,93.9336 +270820,259.03,95.9418 +270821,258.5,90.070733 +270822,258.23,91.971 +270823,257.94,93.9223 +270824,257.63,95.9317 +270825,257.2,90.059759 +270826,256.9,91.9595 +270827,256.58,93.9105 +270828,256.23,95.9201 +270829,255.9,90.050181 +270830,255.57,91.9484 +270831,255.21,93.8982 +270832,254.82,95.9069 +270833,254.6,90.041999 +270834,254.24,91.9377 +270835,253.84,93.8853 +270836,253.42,95.892 +270837,253.31,90.035208 +270838,252.9,91.9275 +270839,252.48,93.8719 +270840,252.02,95.8756 +270841,252.01,90.029806 +270842,251.57,91.9177 +270843,251.11,93.8579 +270844,250.62,95.8577 +270845,250.71,90.025789 +270846,250.24,91.9084 +270847,249.75,93.8433 +270848,249.22,95.8381 +270849,249.41,90.023151 +270850,248.91,91.8995 +270851,248.38,93.8283 +270852,247.83,95.817 +270853,248.11,90.021888 +270854,247.57,91.891 +270855,247.02,93.8126 +270856,246.43,95.7943 +270857,246.81,90.021994 +270858,246.24,91.8829 +270859,245.65,93.7965 +270860,245.03,95.77 +270861,245.51,90.02346 +270862,244.91,91.8753 +270863,244.29,93.7797 +270864,243.63,95.7443 +270865,244.21,90.026281 +270866,243.58,91.8681 +270867,242.92,93.7625 +270868,242.23,95.7169 +270869,242.91,90.030448 +270870,242.24,91.8613 +270871,241.56,93.7447 +270872,240.84,95.688 +270873,241.6,90.035952 +270874,240.91,91.855 +270875,240.19,93.7264 +270876,239.44,95.6576 +270877,240.3,90.042783 +270878,239.58,91.849 +270879,238.83,93.7076 +270880,238.04,95.6257 +270881,239,90.050932 +270882,238.24,91.8435 +270883,237.46,93.6882 +270884,236.65,95.5923 +270885,237.69,90.060388 +270886,236.91,91.8384 +270887,236.1,93.6683 +270888,235.25,95.5574 +270889,236.39,90.071139 +270890,235.58,91.8337 +270891,234.73,93.6479 +270892,233.86,95.521 +270893,235.09,90.083172 +270894,234.24,91.8294 +270895,233.37,93.627 +270896,232.47,95.4831 +270897,233.78,90.096477 +270898,232.91,91.8255 +270899,232.01,93.6056 +270900,231.08,95.4438 +270901,232.47,90.11104 +270902,231.57,91.822 +270903,230.65,93.5837 +270904,229.68,95.4031 +270905,231.17,90.12684 +270906,230.24,91.8188 +270907,229.28,93.5613 +270908,228.29,95.3609 +270909,229.86,90.14388 +270910,228.9,91.8161 +270911,227.92,93.5384 +270912,226.9,95.3173 +270913,228.55,90.16212 +270914,227.57,91.8137 +270915,226.56,93.515 +270916,225.52,95.2724 +270917,227.24,90.18157 +270918,226.23,91.8117 +270919,225.2,93.4911 +270920,224.13,95.226 +270921,225.93,90.20219 +270922,224.9,91.8101 +270923,223.83,93.4667 +270924,222.74,95.1784 +270925,224.62,90.22398 +270926,223.56,91.8088 +270927,222.47,93.4419 +270928,221.35,95.1293 +270929,223.31,90.24692 +270930,222.23,91.8079 +270931,221.11,93.4166 +270932,219.97,95.079 +270933,222,90.27098 +270934,220.89,91.8074 +270935,219.75,93.3909 +270936,218.58,95.0274 +270937,220.69,90.29615 +270938,219.55,91.8072 +270939,218.39,93.3647 +270940,217.2,94.9745 +270941,219.37,90.32242 +270942,218.22,91.8073 +270943,217.03,93.3381 +270944,215.82,94.9204 +270945,218.06,90.34975 +270946,216.88,91.8077 +270947,215.67,93.311 +270948,214.44,94.865 +270949,216.74,90.37814 +270950,215.54,91.8085 +270951,214.31,93.2836 +270952,213.05,94.8085 +270953,215.43,90.40756 +270954,214.2,91.8096 +270955,212.95,93.2557 +270956,211.67,94.7507 +270957,214.11,90.43798 +270958,212.87,91.811 +270959,211.6,93.2274 +270960,210.3,94.6919 +270961,212.79,90.46939 +270962,211.53,91.8127 +270963,210.24,93.1986 +270964,208.92,94.6319 +270965,211.47,90.50177 +270966,210.19,91.8147 +270967,208.88,93.1695 +270968,207.54,94.5707 +270969,210.15,90.53508 +270970,208.85,91.817 +270971,207.52,93.14 +270972,206.17,94.5086 +270973,208.83,90.56932 +270974,207.51,91.8195 +270975,206.17,93.1102 +270976,204.79,94.4453 +270977,207.51,90.60445 +270978,206.17,91.8224 +270979,204.81,93.0799 +270980,203.42,94.3811 +270981,206.19,90.64045 +270982,204.83,91.8254 +270983,203.45,93.0493 +270984,202.05,94.3158 +270985,204.86,90.67729 +270986,203.49,91.8288 +270987,202.1,93.0184 +270988,200.68,94.2496 +270989,203.54,90.71496 +270990,202.15,91.8324 +270991,200.74,92.9871 +270992,199.31,94.1825 +270993,202.21,90.75342 +270994,200.81,91.8362 +270995,199.39,92.9554 +270996,197.94,94.1145 +270997,200.88,90.79265 +270998,199.47,91.8402 +270999,198.03,92.9235 +271000,196.57,94.0455 +271001,199.56,90.83262 +271002,198.13,91.8445 +271003,196.68,92.8912 +271004,195.2,93.9758 +271005,198.23,90.87331 +271006,196.79,91.849 +271007,195.32,92.8586 +271008,193.84,93.9052 +271009,196.89,90.91469 +271010,195.44,91.8536 +271011,193.97,92.8258 +271012,192.47,93.8338 +271013,195.56,90.95673 +271014,194.1,91.8585 +271015,192.62,92.7926 +271016,191.11,93.7617 +271017,194.23,90.9994 +271018,192.76,91.8635 +271019,191.27,92.7592 +271020,189.75,93.6889 +271021,192.9,91.0427 +271022,191.42,91.8687 +271023,189.91,92.7255 +271024,188.39,93.6153 +271025,191.56,91.0865 +271026,190.07,91.8741 +271027,188.56,92.6916 +271028,187.03,93.5411 +271029,190.22,91.1309 +271030,188.73,91.8796 +271031,187.21,92.6574 +271032,185.67,93.4663 +271033,188.89,91.1759 +271034,187.38,91.8853 +271035,185.86,92.623 +271036,184.32,93.3909 +271037,187.55,91.2213 +271038,186.04,91.8911 +271039,184.51,92.5884 +271040,182.96,93.315 +271041,186.21,91.2672 +271042,184.69,91.897 +271043,183.16,92.5535 +271044,181.61,93.2385 +271045,184.87,91.3135 +271046,183.35,91.903 +271047,181.81,92.5185 +271048,180.26,93.1615 +271049,183.52,91.3602 +271050,182,91.9092 +271051,180.46,92.4833 +271052,178.9,93.084 +271053,182.18,91.4073 +271054,180.66,91.9154 +271055,179.11,92.4479 +271056,177.55,93.0062 +271057,180.83,91.4547 +271058,179.31,91.9217 +271059,177.77,92.4123 +271060,176.21,92.9279 +271061,179.49,91.5024 +271062,177.96,91.928 +271063,176.42,92.3765 +271064,174.86,92.8493 +271065,178.14,91.5504 +271066,176.61,91.9345 +271067,175.07,92.3407 +271068,173.51,92.7703 +271069,176.79,91.5987 +271070,175.27,91.9409 +271071,173.72,92.3047 +271072,172.17,92.6911 +271073,175.44,91.6472 +271074,173.92,91.9474 +271075,172.38,92.2685 +271076,170.82,92.6116 +271077,174.09,91.6959 +271078,172.57,91.954 +271079,171.03,92.2323 +271080,169.48,92.5318 +271081,172.74,91.7447 +271082,171.22,91.9605 +271083,169.69,92.1959 +271084,168.14,92.4519 +271085,171.39,91.7936 +271086,169.87,91.9671 +271087,168.34,92.1595 +271088,166.8,92.3719 +271089,170.03,91.8427 +271090,168.52,91.9736 +271091,167,92.123 +271092,165.46,92.2917 +271093,168.67,91.8918 +271094,167.17,91.9802 +271095,165.65,92.0864 +271096,164.12,92.2114 +271097,167.32,91.9409 +271098,165.82,91.9867 +271099,164.31,92.0498 +271100,162.79,92.1311 +271101,165.96,91.99 +271102,164.47,91.9932 +271103,162.97,92.0131 +271104,161.45,92.0507 +271105,164.6,92.0391 +271106,163.12,91.9996 +271107,161.62,91.9764 +271108,160.12,91.9704 +271109,163.24,92.0881 +271110,161.77,92.0059 +271111,160.28,91.9396 +271112,158.78,91.8901 +271113,161.88,92.137 +271114,160.41,92.0122 +271115,158.94,91.9029 +271116,157.45,91.8099 +271117,160.51,92.1858 +271118,159.06,92.0185 +271119,157.6,91.8661 +271120,156.12,91.7298 +271121,159.15,92.2344 +271122,157.71,92.0246 +271123,156.26,91.8294 +271124,154.79,91.6499 +271125,157.78,92.2828 +271126,156.36,92.0306 +271127,154.92,91.7927 +271128,153.47,91.5702 +271129,156.42,92.331 +271130,155,92.0365 +271131,153.58,91.756 +271132,152.14,91.4906 +271133,155.05,92.379 +271134,153.65,92.0423 +271135,152.24,91.7194 +271136,150.81,91.4113 +271137,153.68,92.4266 +271138,152.3,92.0479 +271139,150.9,91.6828 +271140,149.49,91.3323 +271141,152.31,92.474 +271142,150.94,92.0534 +271143,149.56,91.6463 +271144,148.17,91.2536 +271145,150.94,92.5209 +271146,149.59,92.0588 +271147,148.22,91.6099 +271148,146.84,91.1753 +271149,149.57,92.5675 +271150,148.23,92.0639 +271151,146.88,91.5735 +271152,145.52,91.0973 +271153,148.19,92.6137 +271154,146.87,92.0689 +271155,145.54,91.5373 +271156,144.2,91.0198 +271157,146.82,92.6594 +271158,145.52,92.0738 +271159,144.21,91.5012 +271160,142.89,90.94266 +271161,145.44,92.7047 +271162,144.16,92.0784 +271163,142.87,91.4651 +271164,141.57,90.86602 +271165,144.07,92.7494 +271166,142.81,92.0828 +271167,141.53,91.4293 +271168,140.25,90.78988 +271169,142.69,92.7936 +271170,141.45,92.087 +271171,140.2,91.3935 +271172,138.94,90.71427 +271173,141.31,92.8373 +271174,140.09,92.0909 +271175,138.86,91.3579 +271176,137.62,90.63922 +271177,139.93,92.8803 +271178,138.73,92.0947 +271179,137.53,91.3225 +271180,136.31,90.56476 +271181,138.55,92.9227 +271182,137.38,92.0982 +271183,136.19,91.2872 +271184,135,90.49093 +271185,137.17,92.9644 +271186,136.02,92.1014 +271187,134.86,91.2522 +271188,133.69,90.41774 +271189,135.79,93.0055 +271190,134.66,92.1043 +271191,133.52,91.2173 +271192,132.37,90.34524 +271193,134.4,93.0458 +271194,133.3,92.107 +271195,132.19,91.1826 +271196,131.07,90.27344 +271197,133.02,93.0854 +271198,131.94,92.1094 +271199,130.86,91.1481 +271200,129.76,90.20237 +271201,131.63,93.1242 +271202,130.58,92.1115 +271203,129.52,91.1138 +271204,128.45,90.13206 +271205,130.25,93.1622 +271206,129.22,92.1133 +271207,128.19,91.0798 +271208,127.14,90.062546 +271209,128.86,93.1994 +271210,127.86,92.1148 +271211,126.86,91.046 +271212,125.84,89.9938422 +271213,127.47,93.2358 +271214,126.5,92.116 +271215,125.52,91.0124 +271216,124.53,89.925978 +271217,126.08,93.2712 +271218,125.14,92.1168 +271219,124.19,90.97915 +271220,123.23,89.85898 +271221,124.69,93.3057 +271222,123.78,92.1173 +271223,122.86,90.94612 +271224,121.93,89.79287 +271225,123.3,93.3393 +271226,122.42,92.1174 +271227,121.53,90.91336 +271228,120.62,89.72767 +271229,121.91,93.372 +271230,121.06,92.1172 +271231,120.2,90.88088 +271232,119.32,89.66341 +271233,120.52,93.4036 +271234,119.7,92.1167 +271235,118.87,90.84869 +271236,118.02,89.60011 +271237,119.13,93.4342 +271238,118.34,92.1157 +271239,117.54,90.81679 +271240,116.72,89.5378 +271241,117.73,93.4638 +271242,116.98,92.1144 +271243,116.21,90.78519 +271244,115.42,89.47649 +271245,116.34,93.4924 +271246,115.62,92.1127 +271247,114.88,90.75391 +271248,114.12,89.4162 +271249,114.94,93.5198 +271250,114.25,92.1106 +271251,113.55,90.72295 +271252,112.82,89.35696 +271253,113.55,93.5462 +271254,112.89,92.1081 +271255,112.22,90.69231 +271256,111.53,89.29879 +271257,112.15,93.5714 +271258,111.53,92.1051 +271259,110.89,90.662 +271260,110.23,89.24171 +271261,110.76,93.5954 +271262,110.17,92.1018 +271263,109.56,90.63203 +271264,108.93,89.18574 +271265,109.36,93.6183 +271266,108.81,92.0981 +271267,108.23,90.60241 +271268,107.64,89.13089 +271269,107.96,93.64 +271270,107.44,92.0939 +271271,106.9,90.57314 +271272,106.34,89.07718 +271273,106.57,93.6605 +271274,106.08,92.0893 +271275,105.57,90.54423 +271276,105.05,89.02463 +271277,105.17,93.6797 +271278,104.72,92.0842 +271279,104.25,90.51569 +271280,103.75,88.9733 +271281,103.77,93.6977 +271282,103.35,92.0787 +271283,102.92,90.48751 +271284,102.46,88.9231 +271285,102.37,93.7144 +271286,101.99,92.0727 +271287,101.59,90.45971 +271288,101.17,88.8741 +271289,100.97,93.7299 +271290,100.63,92.0663 +271291,100.26,90.43229 +271292,99.874,88.8264 +271293,99.571,93.744 +271294,99.264,92.0595 +271295,98.934,90.40525 +271296,98.581,88.7799 +271297,98.171,93.7568 +271298,97.901,92.0521 +271299,97.606,90.37861 +271300,97.289,88.7346 +271301,96.77,93.7683 +271302,96.537,92.0443 +271303,96.279,90.35236 +271304,95.997,88.6906 +271305,95.37,93.7784 +271306,95.174,92.036 +271307,94.952,90.32651 +271308,94.706,88.6479 +271309,93.969,93.7871 +271310,93.81,92.0272 +271311,93.625,90.30107 +271312,93.415,88.6065 +271313,92.568,93.7945 +271314,92.447,92.018 +271315,92.298,90.27603 +271316,92.124,88.5663 +271317,91.167,93.8005 +271318,91.083,92.0082 +271319,90.971,90.25141 +271320,90.833,88.5275 +271321,89.766,93.805 +271322,89.72,91.998 +271323,89.644,90.2272 +271324,89.542,88.49 +271325,88.365,93.8082 +271326,88.356,91.9872 +271327,88.317,90.20341 +271328,88.252,88.4538 +271329,86.964,93.8099 +271330,86.993,91.976 +271331,86.991,90.18004 +271332,86.961,88.419 +271333,85.563,93.8102 +271334,85.629,91.9642 +271335,85.664,90.15709 +271336,85.671,88.3855 +271337,84.161,93.809 +271338,84.266,91.952 +271339,84.338,90.13457 +271340,84.381,88.3533 +271341,82.76,93.8064 +271342,82.902,91.9392 +271343,83.011,90.11248 +271344,83.091,88.3225 +271345,81.359,93.8023 +271346,81.539,91.926 +271347,81.685,90.090822 +271348,81.801,88.2931 +271349,79.958,93.7967 +271350,80.175,91.9122 +271351,80.358,90.069597 +271352,80.511,88.265 +271353,78.557,93.7896 +271354,78.812,91.8979 +271355,79.032,90.048806 +271356,79.221,88.2383 +271357,77.156,93.7811 +271358,77.449,91.8831 +271359,77.705,90.028451 +271360,77.931,88.2129 +271361,75.756,93.7711 +271362,76.086,91.8678 +271363,76.379,90.008533 +271364,76.64,88.189 +271365,74.355,93.7596 +271366,74.723,91.8519 +271367,75.053,89.989053 +271368,75.35,88.1664 +271369,72.955,93.7465 +271370,73.36,91.8356 +271371,73.726,89.970012 +271372,74.059,88.1452 +271373,71.555,93.732 +271374,71.997,91.8187 +271375,72.4,89.95141 +271376,72.769,88.1253 +271377,70.156,93.716 +271378,70.634,91.8013 +271379,71.073,89.933247 +271380,71.478,88.1069 +271381,68.757,93.6985 +271382,69.272,91.7834 +271383,69.746,89.915524 +271384,70.187,88.0898 +271385,67.358,93.6795 +271386,67.909,91.7649 +271387,68.42,89.89824 +271388,68.895,88.074 +271389,65.96,93.6589 +271390,66.547,91.746 +271391,67.093,89.88139 +271392,67.603,88.0597 +271393,64.562,93.6369 +271394,65.185,91.7265 +271395,65.766,89.86498 +271396,66.311,88.0467 +271397,63.165,93.6134 +271398,63.823,91.7066 +271399,64.439,89.84901 +271400,65.019,88.0351 +271401,61.768,93.5884 +271402,62.461,91.6861 +271403,63.112,89.83347 +271404,63.726,88.0248 +271405,60.371,93.5619 +271406,61.1,91.6651 +271407,61.785,89.81837 +271408,62.433,88.0159 +271409,58.976,93.5339 +271410,59.738,91.6436 +271411,60.457,89.80369 +271412,61.139,88.0084 +271413,57.58,93.5044 +271414,58.377,91.6215 +271415,59.13,89.78945 +271416,59.845,88.0022 +271417,56.186,93.4734 +271418,57.016,91.599 +271419,57.803,89.77564 +271420,58.551,87.9973 +271421,54.792,93.441 +271422,55.656,91.576 +271423,56.475,89.76225 +271424,57.256,87.9937 +271425,53.398,93.4071 +271426,54.295,91.5525 +271427,55.147,89.74928 +271428,55.96,87.9915 +271429,52.006,93.3718 +271430,52.935,91.5284 +271431,53.819,89.73673 +271432,54.664,87.9906 +271433,50.614,93.335 +271434,51.575,91.5039 +271435,52.491,89.7246 +271436,53.367,87.991 +271437,49.223,93.2968 +271438,50.216,91.4789 +271439,51.162,89.71288 +271440,52.07,87.9926 +271441,47.832,93.2572 +271442,48.856,91.4534 +271443,49.834,89.70157 +271444,50.772,87.9956 +271445,46.443,93.2162 +271446,47.497,91.4274 +271447,48.505,89.69067 +271448,49.473,87.9998 +271449,45.054,93.1738 +271450,46.139,91.4009 +271451,47.176,89.68017 +271452,48.174,88.0052 +271453,43.666,93.13 +271454,44.78,91.374 +271455,45.847,89.67006 +271456,46.874,88.0119 +271457,42.279,93.0848 +271458,43.422,91.3466 +271459,44.517,89.66035 +271460,45.573,88.0198 +271461,40.893,93.0382 +271462,42.064,91.3187 +271463,43.188,89.65103 +271464,44.271,88.029 +271465,39.508,92.9904 +271466,40.707,91.2904 +271467,41.858,89.64209 +271468,42.969,88.0393 +271469,38.124,92.9412 +271470,39.349,91.2616 +271471,40.528,89.63353 +271472,41.666,88.0508 +271473,36.741,92.8907 +271474,37.993,91.2324 +271475,39.197,89.62534 +271476,40.362,88.0635 +271477,35.358,92.8389 +271478,36.636,91.2027 +271479,37.866,89.61752 +271480,39.057,88.0773 +271481,33.977,92.7859 +271482,35.28,91.1726 +271483,36.536,89.61006 +271484,37.751,88.0923 +271485,32.597,92.7316 +271486,33.924,91.1421 +271487,35.204,89.60295 +271488,36.445,88.1084 +271489,31.218,92.6761 +271490,32.569,91.1111 +271491,33.873,89.5962 +271492,35.137,88.1255 +271493,29.84,92.6193 +271494,31.214,91.0798 +271495,32.541,89.58979 +271496,33.829,88.1438 +271497,28.463,92.5614 +271498,29.859,91.048 +271499,31.209,89.58371 +271500,32.519,88.1631 +271501,27.087,92.5023 +271502,28.505,91.0158 +271503,29.877,89.57797 +271504,31.209,88.1834 +271505,25.712,92.4421 +271506,27.151,90.98322 +271507,28.544,89.57255 +271508,29.898,88.2048 +271509,24.338,92.3807 +271510,25.797,90.95024 +271511,27.211,89.56745 +271512,28.585,88.2271 +271513,22.966,92.3183 +271514,24.444,90.91689 +271515,25.878,89.56265 +271516,27.272,88.2505 +271517,21.595,92.2547 +271518,23.092,90.88317 +271519,24.544,89.55816 +271520,25.958,88.2748 +271521,20.225,92.1902 +271522,21.739,90.84908 +271523,23.21,89.55397 +271524,24.642,88.3 +271525,18.856,92.1246 +271526,20.388,90.81464 +271527,21.876,89.55005 +271528,23.326,88.3261 +271529,17.488,92.058 +271530,19.036,90.77984 +271531,20.541,89.54642 +271532,22.008,88.3531 +271533,16.121,91.9904 +271534,17.685,90.74471 +271535,19.206,89.54306 +271536,20.689,88.381 +271537,14.756,91.9219 +271538,16.335,90.70925 +271539,17.871,89.53997 +271540,19.37,88.4097 +271541,13.392,91.8525 +271542,14.985,90.67346 +271543,16.535,89.53712 +271544,18.049,88.4392 +271545,12.03,91.7821 +271546,13.635,90.63736 +271547,15.199,89.53453 +271548,16.726,88.4695 +271549,10.668,91.711 +271550,12.286,90.60096 +271551,13.862,89.53217 +271552,15.403,88.5006 +271553,9.3081,91.6389 +271554,10.937,90.56426 +271555,12.526,89.53004 +271556,14.079,88.5324 +271557,7.9493,91.5661 +271558,9.5887,90.52728 +271559,11.189,89.52813 +271560,12.753,88.565 +271561,6.5918,91.4925 +271562,8.2409,90.49002 +271563,9.851,89.52643 +271564,11.426,88.5982 +271565,5.2356,91.4182 +271566,6.8935,90.45249 +271567,8.5131,89.52494 +271568,10.098,88.632 +271569,3.8807,91.3431 +271570,5.5466,90.41471 +271571,7.1748,89.52363 +271572,8.7691,88.6666 +271573,2.5271,91.2674 +271574,4.2001,90.37667 +271575,5.8361,89.52251 +271576,7.4387,88.7017 +271577,1.1749,91.191 +271578,2.8541,90.33841 +271579,4.4971,89.52157 +271580,6.107,88.7374 +271581,359.82,91.1139 +271582,1.5086,90.29991 +271583,3.1576,89.52079 +271584,4.7741,88.7736 +271585,358.47,91.0363 +271586,0.16359,90.2612 +271587,1.8178,89.52017 +271588,3.4399,88.8104 +271589,357.13,90.95815 +271590,358.82,90.22228 +271591,0.47756,89.51969 +271592,2.1045,88.8476 +271593,355.78,90.87944 +271594,357.47,90.18317 +271595,359.14,89.51935 +271596,0.76789,88.8853 +271597,354.43,90.80024 +271598,356.13,90.14386 +271599,357.8,89.51913 +271600,359.43,88.9235 +271601,353.09,90.72057 +271602,354.79,90.10439 +271603,356.45,89.51903 +271604,358.09,88.962 +271605,351.75,90.64046 +271606,353.45,90.064745 +271607,355.11,89.51904 +271608,356.75,89.00099 +271609,350.41,90.55996 +271610,352.1,90.024949 +271611,353.77,89.51915 +271612,355.41,89.04028 +271613,349.07,90.47909 +271614,350.76,89.985008 +271615,352.43,89.51934 +271616,354.07,89.07989 +271617,347.73,90.39789 +271618,349.42,89.944935 +271619,351.08,89.5196 +271620,352.72,89.11978 +271621,346.39,90.31638 +271622,348.08,89.904739 +271623,349.74,89.51994 +271624,351.38,89.15994 +271625,345.05,90.23461 +271626,346.74,89.86443 +271627,348.4,89.52032 +271628,350.03,89.20033 +271629,343.72,90.1526 +271630,345.4,89.82402 +271631,347.05,89.52076 +271632,348.68,89.24091 +271633,342.38,90.070393 +271634,344.06,89.78353 +271635,345.71,89.52123 +271636,347.33,89.28167 +271637,341.05,89.988014 +271638,342.72,89.74295 +271639,344.36,89.52172 +271640,345.98,89.32256 +271641,339.72,89.905499 +271642,341.38,89.7023 +271643,343.02,89.52223 +271644,344.63,89.36356 +271645,338.39,89.82288 +271646,340.05,89.6616 +271647,341.67,89.52275 +271648,343.28,89.40464 +271649,337.06,89.7402 +271650,338.71,89.62085 +271651,340.33,89.52325 +271652,341.92,89.44577 +271653,335.74,89.65747 +271654,337.37,89.58007 +271655,338.98,89.52374 +271656,340.57,89.48691 +271657,334.41,89.57475 +271658,336.03,89.53926 +271659,337.63,89.52421 +271660,339.21,89.52804 +271661,333.09,89.49206 +271662,334.7,89.49843 +271663,336.29,89.52463 +271664,337.85,89.56912 +271665,331.77,89.40943 +271666,333.36,89.45761 +271667,334.94,89.52501 +271668,336.49,89.61013 +271669,330.44,89.32689 +271670,332.03,89.41679 +271671,333.59,89.52533 +271672,335.13,89.65104 +271673,329.12,89.24449 +271674,330.69,89.37599 +271675,332.24,89.52559 +271676,333.77,89.6918 +271677,327.8,89.16224 +271678,329.36,89.33522 +271679,330.89,89.52576 +271680,332.41,89.73241 +271681,326.49,89.08019 +271682,328.03,89.29449 +271683,329.54,89.52584 +271684,331.04,89.77281 +271685,325.17,88.9984 +271686,326.69,89.25381 +271687,328.19,89.52583 +271688,329.68,89.81299 +271689,323.85,88.9168 +271690,325.36,89.2132 +271691,326.84,89.52571 +271692,328.31,89.85291 +271693,322.54,88.8355 +271694,324.03,89.17265 +271695,325.49,89.52546 +271696,326.94,89.89254 +271697,321.23,88.7546 +271698,322.69,89.13219 +271699,324.14,89.52509 +271700,325.57,89.931853 +271701,319.92,88.674 +271702,321.36,89.09182 +271703,322.79,89.52457 +271704,324.2,89.97082 +271705,318.6,88.5938 +271706,320.03,89.05156 +271707,321.44,89.52391 +271708,322.83,90.0094093 +271709,317.3,88.514 +271710,318.7,89.01141 +271711,320.09,89.52309 +271712,321.46,90.047592 +271713,315.99,88.4346 +271714,317.37,88.9714 +271715,318.74,89.5221 +271716,320.08,90.085339 +271717,314.68,88.3557 +271718,316.04,88.9315 +271719,317.38,89.52092 +271720,318.71,90.12262 +271721,313.37,88.2774 +271722,314.71,88.8917 +271723,316.03,89.51956 +271724,317.33,90.15941 +271725,312.07,88.1995 +271726,313.38,88.8521 +271727,314.68,89.518 +271728,315.96,90.19567 +271729,310.76,88.1223 +271730,312.05,88.8127 +271731,313.33,89.51623 +271732,314.58,90.23138 +271733,309.46,88.0456 +271734,310.73,88.7735 +271735,311.97,89.51425 +271736,313.2,90.26652 +271737,308.16,87.9695 +271738,309.4,88.7344 +271739,310.62,89.51203 +271740,311.82,90.30104 +271741,306.86,87.8941 +271742,308.07,88.6955 +271743,309.26,89.50958 +271744,310.44,90.33493 +271745,305.56,87.8194 +271746,306.74,88.6568 +271747,307.91,89.50689 +271748,309.06,90.36816 +271749,304.26,87.7454 +271750,305.42,88.6184 +271751,306.55,89.50394 +271752,307.68,90.40069 +271753,302.96,87.6721 +271754,304.09,88.5801 +271755,305.2,89.50072 +271756,306.29,90.43251 +271757,301.66,87.5996 +271758,302.76,88.5421 +271759,303.84,89.49724 +271760,304.91,90.46358 +271761,300.37,87.5279 +271762,301.44,88.5043 +271763,302.49,89.49347 +271764,303.52,90.49389 +271765,299.07,87.4569 +271766,300.11,88.4668 +271767,301.13,89.48941 +271768,302.14,90.5234 +271769,297.78,87.3868 +271770,298.79,88.4295 +271771,299.78,89.48506 +271772,300.75,90.55209 +271773,296.49,87.3176 +271774,297.46,88.3925 +271775,298.42,89.4804 +271776,299.36,90.57993 +271777,295.19,87.2493 +271778,296.14,88.3558 +271779,297.06,89.47543 +271780,297.97,90.6069 +271781,293.9,87.1818 +271782,294.81,88.3193 +271783,295.71,89.47013 +271784,296.58,90.63298 +271785,292.61,87.1153 +271786,293.49,88.2832 +271787,294.35,89.4645 +271788,295.19,90.65813 +271789,291.32,87.0498 +271790,292.16,88.2473 +271791,292.99,89.45854 +271792,293.8,90.68235 +271793,290.03,86.9852 +271794,290.84,88.2117 +271795,291.64,89.45223 +271796,292.41,90.7056 +271797,288.74,86.9216 +271798,289.52,88.1765 +271799,290.28,89.44557 +271800,291.02,90.72786 +271801,287.45,86.859 +271802,288.2,88.1415 +271803,288.92,89.43855 +271804,289.62,90.74911 +271805,286.16,86.7975 +271806,286.87,88.1069 +271807,287.56,89.43117 +271808,288.23,90.76933 +271809,284.88,86.737 +271810,285.55,88.0726 +271811,286.2,89.42341 +271812,286.84,90.7885 +271813,283.59,86.6777 +271814,284.23,88.0387 +271815,284.85,89.41527 +271816,285.44,90.80659 +271817,282.3,86.6194 +271818,282.91,88.0051 +271819,283.49,89.40675 +271820,284.05,90.82359 +271821,281.02,86.5622 +271822,281.58,87.9719 +271823,282.13,89.39783 +271824,282.65,90.83948 +271825,279.73,86.5061 +271826,280.26,87.939 +271827,280.77,89.38851 +271828,281.25,90.85424 +271829,278.45,86.4512 +271830,278.94,87.9064 +271831,279.41,89.3788 +271832,279.86,90.86784 +271833,277.16,86.3975 +271834,277.62,87.8743 +271835,278.05,89.36867 +271836,278.46,90.88028 +271837,275.88,86.3449 +271838,276.3,87.8425 +271839,276.69,89.35812 +271840,277.06,90.89153 +271841,274.6,86.2935 +271842,274.98,87.8111 +271843,275.33,89.34716 +271844,275.66,90.90158 +271845,273.31,86.2434 +271846,273.66,87.7801 +271847,273.98,89.33577 +271848,274.27,90.91042 +271849,272.03,86.1944 +271850,272.34,87.7495 +271851,272.62,89.32395 +271852,272.87,90.91801 +271853,270.75,86.1467 +271854,271.02,87.7192 +271855,271.26,89.31169 +271856,271.47,90.92436 +271857,269.47,86.1003 +271858,269.7,87.6894 +271859,269.9,89.299 +271860,270.07,90.92945 +271861,268.19,86.0551 +271862,268.38,87.66 +271863,268.54,89.28586 +271864,268.67,90.93326 +271865,266.9,86.0111 +271866,267.06,87.6309 +271867,267.18,89.27228 +271868,267.27,90.93577 +271869,265.62,85.9685 +271870,265.74,87.6023 +271871,265.82,89.25824 +271872,265.87,90.93699 +271873,264.34,85.9271 +271874,264.42,87.5741 +271875,264.46,89.24375 +271876,264.47,90.93689 +271877,263.06,85.887 +271878,263.1,87.5463 +271879,263.1,89.2288 +271880,263.07,90.93547 +271881,261.78,85.8483 +271882,261.78,87.519 +271883,261.74,89.21339 +271884,261.67,90.93271 +271885,260.5,85.8108 +271886,260.46,87.492 +271887,260.38,89.19752 +271888,260.27,90.9286 +271889,259.22,85.7747 +271890,259.14,87.4655 +271891,259.02,89.18118 +271892,258.87,90.92314 +271893,257.94,85.7398 +271894,257.82,87.4394 +271895,257.66,89.16437 +271896,257.47,90.91632 +271897,256.66,85.7064 +271898,256.5,87.4137 +271899,256.3,89.14709 +271900,256.07,90.90813 +271901,255.38,85.6742 +271902,255.18,87.3885 +271903,254.95,89.12934 +271904,254.67,90.89855 +271905,254.1,85.6434 +271906,253.86,87.3637 +271907,253.59,89.11111 +271908,253.28,90.8876 +271909,252.81,85.6139 +271910,252.54,87.3393 +271911,252.23,89.09241 +271912,251.88,90.87525 +271913,251.53,85.5858 +271914,251.22,87.3154 +271915,250.87,89.07323 +271916,250.48,90.86151 +271917,250.25,85.559 +271918,249.9,87.2919 +271919,249.51,89.05358 +271920,249.08,90.84638 +271921,248.97,85.5335 +271922,248.58,87.2689 +271923,248.15,89.03344 +271924,247.68,90.82984 +271925,247.69,85.5094 +271926,247.26,87.2462 +271927,246.79,89.01282 +271928,246.28,90.81189 +271929,246.41,85.4867 +271930,245.94,87.2241 +271931,245.43,88.9917 +271932,244.89,90.79254 +271933,245.12,85.4653 +271934,244.62,87.2023 +271935,244.08,88.9702 +271936,243.49,90.77178 +271937,243.84,85.4452 +271938,243.3,87.181 +271939,242.72,88.9481 +271940,242.09,90.74961 +271941,242.56,85.4265 +271942,241.98,87.1601 +271943,241.36,88.9256 +271944,240.7,90.72604 +271945,241.28,85.4091 +271946,240.66,87.1397 +271947,240,88.9026 +271948,239.3,90.70105 +271949,239.99,85.3931 +271950,239.34,87.1197 +271951,238.65,88.8791 +271952,237.9,90.67466 +271953,238.71,85.3783 +271954,238.02,87.1001 +271955,237.29,88.8551 +271956,236.51,90.64687 +271957,237.42,85.3649 +271958,236.7,87.081 +271959,235.93,88.8307 +271960,235.12,90.61768 +271961,236.14,85.3529 +271962,235.38,87.0623 +271963,234.58,88.8058 +271964,233.72,90.5871 +271965,234.85,85.3421 +271966,234.06,87.044 +271967,233.22,88.7804 +271968,232.33,90.55512 +271969,233.57,85.3326 +271970,232.74,87.0262 +271971,231.86,88.7545 +271972,230.94,90.52176 +271973,232.28,85.3245 +271974,231.42,87.0088 +271975,230.51,88.7282 +271976,229.55,90.48702 +271977,230.99,85.3176 +271978,230.09,86.9918 +271979,229.15,88.7014 +271980,228.15,90.4509 +271981,229.7,85.312 +271982,228.77,86.9752 +271983,227.8,88.6742 +271984,226.76,90.41343 +271985,228.42,85.3077 +271986,227.45,86.959 +271987,226.44,88.6465 +271988,225.38,90.37459 +271989,227.13,85.3046 +271990,226.13,86.9432 +271991,225.09,88.6184 +271992,223.99,90.33441 +271993,225.84,85.3028 +271994,224.81,86.9279 +271995,223.73,88.5898 +271996,222.6,90.2929 +271997,224.55,85.3022 +271998,223.48,86.913 +271999,222.38,88.5607 +272000,221.21,90.25006 +272001,223.25,85.3028 +272002,222.16,86.8984 +272003,221.02,88.5312 +272004,219.83,90.2059 +272005,221.96,85.3047 +272006,220.84,86.8843 +272007,219.67,88.5013 +272008,218.44,90.16044 +272009,220.67,85.3077 +272010,219.52,86.8705 +272011,218.32,88.4709 +272012,217.06,90.11369 +272013,219.38,85.3119 +272014,218.19,86.8572 +272015,216.96,88.4401 +272016,215.67,90.06566 +272017,218.08,85.3173 +272018,216.87,86.8442 +272019,215.61,88.4089 +272020,214.29,90.016371 +272021,216.79,85.3239 +272022,215.55,86.8316 +272023,214.26,88.3773 +272024,212.91,89.965834 +272025,215.49,85.3316 +272026,214.22,86.8193 +272027,212.91,88.3452 +272028,211.53,89.914066 +272029,214.19,85.3404 +272030,212.9,86.8075 +272031,211.55,88.3128 +272032,210.15,89.86108 +272033,212.89,85.3503 +272034,211.57,86.796 +272035,210.2,88.2799 +272036,208.77,89.8069 +272037,211.59,85.3613 +272038,210.25,86.7849 +272039,208.85,88.2466 +272040,207.4,89.75153 +272041,210.29,85.3734 +272042,208.92,86.7741 +272043,207.5,88.213 +272044,206.02,89.69501 +272045,208.99,85.3865 +272046,207.6,86.7636 +272047,206.15,88.179 +272048,204.65,89.63733 +272049,207.69,85.4006 +272050,206.27,86.7535 +272051,204.8,88.1445 +272052,203.27,89.57854 +272053,206.39,85.4158 +272054,204.95,86.7437 +272055,203.45,88.1098 +272056,201.9,89.51863 +272057,205.08,85.432 +272058,203.62,86.7343 +272059,202.1,88.0746 +272060,200.53,89.45765 +272061,203.78,85.4491 +272062,202.29,86.7252 +272063,200.76,88.0391 +272064,199.16,89.3956 +272065,202.47,85.4672 +272066,200.96,86.7164 +272067,199.41,88.0032 +272068,197.79,89.33251 +272069,201.16,85.4862 +272070,199.64,86.7078 +272071,198.06,87.967 +272072,196.43,89.2684 +272073,199.86,85.5061 +272074,198.31,86.6996 +272075,196.71,87.9305 +272076,195.06,89.20329 +272077,198.55,85.5269 +272078,196.98,86.6917 +272079,195.37,87.8936 +272080,193.7,89.13721 +272081,197.24,85.5485 +272082,195.65,86.6841 +272083,194.02,87.8565 +272084,192.33,89.07018 +272085,195.92,85.571 +272086,194.32,86.6767 +272087,192.67,87.819 +272088,190.97,89.00223 +272089,194.61,85.5943 +272090,192.99,86.6696 +272091,191.33,87.7812 +272092,189.61,88.9334 +272093,193.3,85.6184 +272094,191.66,86.6628 +272095,189.99,87.7431 +272096,188.25,88.8637 +272097,191.98,85.6433 +272098,190.33,86.6562 +272099,188.64,87.7047 +272100,186.89,88.7931 +272101,190.66,85.6689 +272102,189,86.6498 +272103,187.3,87.666 +272104,185.54,88.7217 +272105,189.34,85.6952 +272106,187.67,86.6437 +272107,185.95,87.6271 +272108,184.18,88.6495 +272109,188.02,85.7223 +272110,186.34,86.6378 +272111,184.61,87.5879 +272112,182.83,88.5765 +272113,186.7,85.7499 +272114,185.01,86.6321 +272115,183.27,87.5485 +272116,181.47,88.5028 +272117,185.38,85.7783 +272118,183.68,86.6267 +272119,181.93,87.5088 +272120,180.12,88.4284 +272121,184.06,85.8072 +272122,182.35,86.6214 +272123,180.59,87.4689 +272124,178.77,88.3533 +272125,182.73,85.8367 +272126,181.01,86.6163 +272127,179.24,87.4287 +272128,177.43,88.2776 +272129,181.41,85.8668 +272130,179.68,86.6114 +272131,177.9,87.3884 +272132,176.08,88.2012 +272133,180.08,85.8974 +272134,178.35,86.6067 +272135,176.56,87.3478 +272136,174.73,88.1243 +272137,178.75,85.9286 +272138,177.01,86.6022 +272139,175.23,87.3071 +272140,173.39,88.0467 +272141,177.42,85.9602 +272142,175.68,86.5978 +272143,173.89,87.2662 +272144,172.05,87.9687 +272145,176.09,85.9922 +272146,174.34,86.5935 +272147,172.55,87.225 +272148,170.71,87.8901 +272149,174.76,86.0247 +272150,173.01,86.5894 +272151,171.21,87.1838 +272152,169.37,87.811 +272153,173.43,86.0576 +272154,171.67,86.5854 +272155,169.87,87.1423 +272156,168.03,87.7315 +272157,172.09,86.0908 +272158,170.33,86.5815 +272159,168.54,87.1008 +272160,166.69,87.6516 +272161,170.75,86.1244 +272162,169,86.5777 +272163,167.2,87.0591 +272164,165.36,87.5713 +272165,169.42,86.1583 +272166,167.66,86.574 +272167,165.86,87.0172 +272168,164.02,87.4907 +272169,168.08,86.1924 +272170,166.32,86.5704 +272171,164.53,86.9753 +272172,162.69,87.4097 +272173,166.74,86.2268 +272174,164.98,86.5669 +272175,163.19,86.9332 +272176,161.36,87.3284 +272177,165.39,86.2615 +272178,163.65,86.5635 +272179,161.86,86.8911 +272180,160.03,87.2469 +272181,164.05,86.2963 +272182,162.31,86.5601 +272183,160.53,86.8488 +272184,158.7,87.1652 +272185,162.71,86.3313 +272186,160.97,86.5567 +272187,159.19,86.8065 +272188,157.38,87.0832 +272189,161.36,86.3664 +272190,159.63,86.5534 +272191,157.86,86.7642 +272192,156.05,87.0011 +272193,160.01,86.4016 +272194,158.29,86.5501 +272195,156.53,86.7218 +272196,154.73,86.9189 +272197,158.66,86.4369 +272198,156.95,86.5469 +272199,155.2,86.6793 +272200,153.4,86.8366 +272201,157.31,86.4723 +272202,155.61,86.5436 +272203,153.86,86.6368 +272204,152.08,86.7542 +272205,155.96,86.5076 +272206,154.27,86.5403 +272207,152.53,86.5943 +272208,150.76,86.6718 +272209,154.61,86.543 +272210,152.92,86.537 +272211,151.2,86.5518 +272212,149.45,86.5893 +272213,153.26,86.5783 +272214,151.58,86.5337 +272215,149.87,86.5093 +272216,148.13,86.507 +272217,151.9,86.6136 +272218,150.24,86.5304 +272219,148.54,86.4667 +272220,146.81,86.4246 +272221,150.55,86.6487 +272222,148.9,86.527 +272223,147.22,86.4243 +272224,145.5,86.3424 +272225,149.19,86.6837 +272226,147.55,86.5236 +272227,145.89,86.3818 +272228,144.19,86.2603 +272229,147.83,86.7185 +272230,146.21,86.5201 +272231,144.56,86.3394 +272232,142.88,86.1783 +272233,146.47,86.7532 +272234,144.87,86.5165 +272235,143.23,86.297 +272236,141.57,86.0965 +272237,145.11,86.7877 +272238,143.52,86.5129 +272239,141.9,86.2547 +272240,140.26,86.015 +272241,143.74,86.8219 +272242,142.18,86.5092 +272243,140.58,86.2125 +272244,138.95,85.9337 +272245,142.38,86.8558 +272246,140.83,86.5053 +272247,139.25,86.1703 +272248,137.64,85.8527 +272249,141.02,86.8894 +272250,139.49,86.5014 +272251,137.93,86.1283 +272252,136.34,85.772 +272253,139.65,86.9227 +272254,138.14,86.4973 +272255,136.6,86.0863 +272256,135.03,85.6916 +272257,138.28,86.9556 +272258,136.79,86.4931 +272259,135.28,86.0445 +272260,133.73,85.6117 +272261,136.91,86.9881 +272262,135.45,86.4887 +272263,133.95,86.0028 +272264,132.43,85.5321 +272265,135.54,87.0203 +272266,134.1,86.4842 +272267,132.63,85.9612 +272268,131.13,85.4529 +272269,134.17,87.0519 +272270,132.75,86.4796 +272271,131.31,85.9198 +272272,129.83,85.3743 +272273,132.8,87.0831 +272274,131.4,86.4748 +272275,129.98,85.8785 +272276,128.53,85.2961 +272277,131.43,87.1139 +272278,130.06,86.4697 +272279,128.66,85.8373 +272280,127.24,85.2184 +272281,130.05,87.144 +272282,128.71,86.4646 +272283,127.34,85.7964 +272284,125.94,85.1413 +272285,128.68,87.1737 +272286,127.36,86.4592 +272287,126.02,85.7556 +272288,124.65,85.0648 +272289,127.3,87.2027 +272290,126.01,86.4536 +272291,124.69,85.715 +272292,123.36,84.9888 +272293,125.92,87.2312 +272294,124.66,86.4478 +272295,123.37,85.6747 +272296,122.06,84.9135 +272297,124.54,87.259 +272298,123.31,86.4417 +272299,122.05,85.6345 +272300,120.77,84.8389 +272301,123.16,87.2861 +272302,121.96,86.4355 +272303,120.73,85.5945 +272304,119.48,84.765 +272305,121.78,87.3126 +272306,120.61,86.429 +272307,119.41,85.5548 +272308,118.19,84.6917 +272309,120.4,87.3384 +272310,119.26,86.4222 +272311,118.09,85.5153 +272312,116.9,84.6192 +272313,119.02,87.3634 +272314,117.91,86.4152 +272315,116.77,85.476 +272316,115.62,84.5475 +272317,117.63,87.3877 +272318,116.56,86.408 +272319,115.46,85.437 +272320,114.33,84.4766 +272321,116.25,87.4112 +272322,115.21,86.4004 +272323,114.14,85.3983 +272324,113.05,84.4064 +272325,114.86,87.4339 +272326,113.85,86.3926 +272327,112.82,85.3598 +272328,111.76,84.3372 +272329,113.48,87.4558 +272330,112.5,86.3845 +272331,111.5,85.3216 +272332,110.48,84.2687 +272333,112.09,87.4768 +272334,111.15,86.3761 +272335,110.18,85.2837 +272336,109.2,84.2012 +272337,110.7,87.4969 +272338,109.8,86.3674 +272339,108.87,85.2461 +272340,107.91,84.1346 +272341,109.32,87.5162 +272342,108.44,86.3584 +272343,107.55,85.2087 +272344,106.63,84.0689 +272345,107.93,87.5345 +272346,107.09,86.349 +272347,106.23,85.1717 +272348,105.35,84.0042 +272349,106.54,87.552 +272350,105.74,86.3394 +272351,104.92,85.135 +272352,104.07,83.9404 +272353,105.15,87.5684 +272354,104.39,86.3294 +272355,103.6,85.0986 +272356,102.79,83.8776 +272357,103.75,87.5839 +272358,103.03,86.319 +272359,102.29,85.0625 +272360,101.52,83.8159 +272361,102.36,87.5984 +272362,101.68,86.3084 +272363,100.97,85.0268 +272364,100.24,83.7551 +272365,100.97,87.6118 +272366,100.32,86.2973 +272367,99.655,84.9914 +272368,98.96,83.6955 +272369,99.577,87.6243 +272370,98.971,86.286 +272371,98.34,84.9564 +272372,97.684,83.6368 +272373,98.183,87.6357 +272374,97.617,86.2742 +272375,97.025,84.9217 +272376,96.408,83.5793 +272377,96.789,87.646 +272378,96.263,86.2621 +272379,95.71,84.8873 +272380,95.132,83.5229 +272381,95.395,87.6552 +272382,94.908,86.2496 +272383,94.396,84.8534 +272384,93.858,83.4676 +272385,94,87.6633 +272386,93.554,86.2368 +272387,93.082,84.8198 +272388,92.583,83.4135 +272389,92.604,87.6703 +272390,92.199,86.2235 +272391,91.768,84.7865 +272392,91.309,83.3605 +272393,91.208,87.6762 +272394,90.845,86.2099 +272395,90.454,84.7537 +272396,90.035,83.3086 +272397,89.812,87.6809 +272398,89.49,86.1959 +272399,89.14,84.7212 +272400,88.762,83.258 +272401,88.416,87.6845 +272402,88.135,86.1814 +272403,87.826,84.6891 +272404,87.489,83.2085 +272405,87.019,87.6869 +272406,86.78,86.1666 +272407,86.513,84.6574 +272408,86.217,83.1602 +272409,85.622,87.6881 +272410,85.426,86.1514 +272411,85.199,84.6262 +272412,84.945,83.1132 +272413,84.225,87.6881 +272414,84.071,86.1357 +272415,83.886,84.5953 +272416,83.672,83.0674 +272417,82.827,87.6869 +272418,82.716,86.1197 +272419,82.573,84.5648 +272420,82.401,83.0228 +272421,81.43,87.6844 +272422,81.361,86.1032 +272423,81.26,84.5347 +272424,81.129,82.9794 +272425,80.032,87.6807 +272426,80.006,86.0863 +272427,79.947,84.505 +272428,79.858,82.9374 +272429,78.634,87.6758 +272430,78.651,86.069 +272431,78.634,84.4758 +272432,78.586,82.8965 +272433,77.236,87.6696 +272434,77.296,86.0512 +272435,77.321,84.4469 +272436,77.315,82.857 +272437,75.838,87.6622 +272438,75.941,86.033 +272439,76.008,84.4185 +272440,76.044,82.8187 +272441,74.441,87.6535 +272442,74.586,86.0144 +272443,74.696,84.3905 +272444,74.773,82.7818 +272445,73.043,87.6435 +272446,73.231,85.9954 +272447,73.383,84.3629 +272448,73.501,82.7461 +272449,71.645,87.6322 +272450,71.876,85.9759 +272451,72.07,84.3358 +272452,72.23,82.7117 +272453,70.247,87.6196 +272454,70.521,85.956 +272455,70.758,84.3091 +272456,70.959,82.6786 +272457,68.85,87.6057 +272458,69.167,85.9356 +272459,69.445,84.2828 +272460,69.688,82.6469 +272461,67.453,87.5905 +272462,67.812,85.9148 +272463,68.132,84.2569 +272464,68.416,82.6164 +272465,66.056,87.5741 +272466,66.458,85.8936 +272467,66.819,84.2315 +272468,67.145,82.5872 +272469,64.659,87.5563 +272470,65.103,85.8719 +272471,65.507,84.2065 +272472,65.873,82.5594 +272473,63.262,87.5371 +272474,63.749,85.8497 +272475,64.194,84.1819 +272476,64.601,82.5329 +272477,61.866,87.5167 +272478,62.395,85.8272 +272479,62.881,84.1578 +272480,63.328,82.5076 +272481,60.47,87.495 +272482,61.041,85.8041 +272483,61.568,84.1341 +272484,62.056,82.4837 +272485,59.075,87.4719 +272486,59.687,85.7807 +272487,60.255,84.1108 +272488,60.783,82.4611 +272489,57.68,87.4475 +272490,58.334,85.7568 +272491,58.942,84.088 +272492,59.51,82.4398 +272493,56.285,87.4218 +272494,56.98,85.7324 +272495,57.629,84.0656 +272496,58.236,82.4199 +272497,54.891,87.3948 +272498,55.627,85.7076 +272499,56.315,84.0436 +272500,56.962,82.4012 +272501,53.497,87.3664 +272502,54.274,85.6824 +272503,55.002,84.0221 +272504,55.688,82.3838 +272505,52.104,87.3368 +272506,52.921,85.6567 +272507,53.688,84.001 +272508,54.413,82.3677 +272509,50.712,87.3058 +272510,51.568,85.6306 +272511,52.375,83.9803 +272512,53.138,82.3529 +272513,49.32,87.2736 +272514,50.216,85.6041 +272515,51.061,83.96 +272516,51.862,82.3394 +272517,47.929,87.24 +272518,48.864,85.5771 +272519,49.747,83.9402 +272520,50.585,82.3272 +272521,46.538,87.2051 +272522,47.512,85.5497 +272523,48.433,83.9207 +272524,49.308,82.3162 +272525,45.148,87.169 +272526,46.16,85.5218 +272527,47.118,83.9017 +272528,48.03,82.3065 +272529,43.759,87.1315 +272530,44.809,85.4935 +272531,45.804,83.8832 +272532,46.752,82.298 +272533,42.371,87.0928 +272534,43.457,85.4648 +272535,44.489,83.865 +272536,45.473,82.2908 +272537,40.983,87.0529 +272538,42.107,85.4357 +272539,43.174,83.8472 +272540,44.194,82.2848 +272541,39.597,87.0116 +272542,40.756,85.4062 +272543,41.859,83.8299 +272544,42.913,82.2801 +272545,38.211,86.9691 +272546,39.406,85.3762 +272547,40.543,83.8129 +272548,41.632,82.2765 +272549,36.826,86.9254 +272550,38.056,85.3459 +272551,39.228,83.7964 +272552,40.35,82.2742 +272553,35.442,86.8805 +272554,36.706,85.3151 +272555,37.912,83.7802 +272556,39.067,82.273 +272557,34.059,86.8343 +272558,35.357,85.2839 +272559,36.596,83.7645 +272560,37.784,82.273 +272561,32.677,86.7869 +272562,34.008,85.2523 +272563,35.279,83.7491 +272564,36.5,82.2742 +272565,31.296,86.7383 +272566,32.66,85.2203 +272567,33.963,83.7341 +272568,35.214,82.2765 +272569,29.916,86.6886 +272570,31.311,85.188 +272571,32.646,83.7195 +272572,33.928,82.2799 +272573,28.537,86.6377 +272574,29.963,85.1552 +272575,31.328,83.7052 +272576,32.641,82.2845 +272577,27.159,86.5856 +272578,28.616,85.1221 +272579,30.011,83.6914 +272580,31.353,82.2901 +272581,25.782,86.5324 +272582,27.269,85.0886 +272583,28.693,83.6779 +272584,30.064,82.2969 +272585,24.407,86.4781 +272586,25.922,85.0547 +272587,27.375,83.6647 +272588,28.774,82.3047 +272589,23.032,86.4227 +272590,24.576,85.0204 +272591,26.056,83.6519 +272592,27.483,82.3136 +272593,21.659,86.3662 +272594,23.23,84.9858 +272595,24.738,83.6394 +272596,26.191,82.3234 +272597,20.287,86.3086 +272598,21.885,84.9509 +272599,23.419,83.6273 +272600,24.898,82.3343 +272601,18.916,86.25 +272602,20.54,84.9156 +272603,22.099,83.6155 +272604,23.604,82.3462 +272605,17.546,86.1903 +272606,19.195,84.88 +272607,20.779,83.6041 +272608,22.308,82.3591 +272609,16.178,86.1297 +272610,17.851,84.844 +272611,19.459,83.593 +272612,21.012,82.3729 +272613,14.81,86.068 +272614,16.507,84.8077 +272615,18.139,83.5821 +272616,19.714,82.3877 +272617,13.445,86.0054 +272618,15.164,84.7711 +272619,16.818,83.5716 +272620,18.416,82.4034 +272621,12.08,85.9418 +272622,13.821,84.7341 +272623,15.496,83.5614 +272624,17.116,82.4199 +272625,10.717,85.8773 +272626,12.479,84.6969 +272627,14.175,83.5515 +272628,15.814,82.4373 +272629,9.3552,85.8119 +272630,11.137,84.6594 +272631,12.853,83.5419 +272632,14.512,82.4556 +272633,7.9948,85.7456 +272634,9.7955,84.6216 +272635,11.53,83.5325 +272636,13.209,82.4747 +272637,6.6357,85.6785 +272638,8.4545,84.5835 +272639,10.207,83.5234 +272640,11.904,82.4946 +272641,5.2781,85.6105 +272642,7.1141,84.5451 +272643,8.8842,83.5146 +272644,10.598,82.5153 +272645,3.9219,85.5417 +272646,5.7741,84.5064 +272647,7.5606,83.506 +272648,9.2905,82.5367 +272649,2.5671,85.4721 +272650,4.4347,84.4675 +272651,6.2366,83.4977 +272652,7.9819,82.5589 +272653,1.2137,85.4017 +272654,3.0957,84.4284 +272655,4.9121,83.4896 +272656,6.672,82.5817 +272657,359.86,85.3306 +272658,1.7572,84.389 +272659,3.5872,83.4818 +272660,5.3607,82.6053 +272661,358.51,85.2588 +272662,0.41924,84.3494 +272663,2.2619,83.4741 +272664,4.0482,82.6295 +272665,357.16,85.1863 +272666,359.08,84.3095 +272667,0.93622,83.4667 +272668,2.7343,82.6543 +272669,355.81,85.1132 +272670,357.74,84.2695 +272671,359.61,83.4595 +272672,1.4191,82.6798 +272673,354.47,85.0394 +272674,356.41,84.2292 +272675,358.28,83.4525 +272676,0.10255,82.7058 +272677,353.12,84.965 +272678,355.07,84.1887 +272679,356.96,83.4457 +272680,358.78,82.7324 +272681,351.78,84.8901 +272682,353.74,84.1481 +272683,355.63,83.439 +272684,357.47,82.7595 +272685,350.44,84.8145 +272686,352.4,84.1072 +272687,354.3,83.4325 +272688,356.14,82.7871 +272689,349.1,84.7385 +272690,351.07,84.0662 +272691,352.97,83.4262 +272692,354.82,82.8151 +272693,347.76,84.662 +272694,349.73,84.0251 +272695,351.64,83.4201 +272696,353.5,82.8436 +272697,346.42,84.585 +272698,348.4,83.9837 +272699,350.31,83.414 +272700,352.17,82.8726 +272701,345.09,84.5076 +272702,347.07,83.9423 +272703,348.99,83.4082 +272704,350.85,82.9019 +272705,343.76,84.4297 +272706,345.74,83.9007 +272707,347.65,83.4024 +272708,349.52,82.9316 +272709,342.42,84.3515 +272710,344.4,83.859 +272711,346.32,83.3967 +272712,348.19,82.9616 +272713,341.09,84.273 +272714,343.07,83.8172 +272715,344.99,83.3912 +272716,346.86,82.992 +272717,339.76,84.1941 +272718,341.74,83.7752 +272719,343.66,83.3858 +272720,345.53,83.0226 +272721,338.44,84.1149 +272722,340.41,83.7332 +272723,342.33,83.3804 +272724,344.2,83.0534 +272725,337.11,84.0355 +272726,339.08,83.6911 +272727,341,83.3751 +272728,342.86,83.0845 +272729,335.78,83.9559 +272730,337.75,83.6489 +272731,339.66,83.3699 +272732,341.52,83.1158 +272733,334.46,83.876 +272734,336.42,83.6067 +272735,338.33,83.3647 +272736,340.19,83.1473 +272737,333.14,83.796 +272738,335.1,83.5644 +272739,337,83.3596 +272740,338.85,83.1788 +272741,331.82,83.7159 +272742,333.77,83.5221 +272743,335.66,83.3546 +272744,337.51,83.2105 +272745,330.5,83.6356 +272746,332.44,83.4797 +272747,334.33,83.3495 +272748,336.17,83.2423 +272749,329.18,83.5553 +272750,331.12,83.4373 +272751,332.99,83.3445 +272752,334.82,83.2741 +272753,327.87,83.4749 +272754,329.79,83.3949 +272755,331.66,83.3395 +272756,333.48,83.306 +272757,326.56,83.3946 +272758,328.46,83.3525 +272759,330.32,83.3345 +272760,332.13,83.3378 +272761,325.24,83.3142 +272762,327.14,83.3101 +272763,328.99,83.3295 +272764,330.78,83.3697 +272765,323.93,83.2339 +272766,325.82,83.2677 +272767,327.65,83.3244 +272768,329.44,83.4014 +272769,322.62,83.1537 +272770,324.49,83.2254 +272771,326.31,83.3193 +272772,328.09,83.4331 +272773,321.31,83.0735 +272774,323.17,83.183 +272775,324.97,83.3142 +272776,326.73,83.4646 +272777,320.01,82.9936 +272778,321.85,83.1408 +272779,323.64,83.3091 +272780,325.38,83.496 +272781,318.7,82.9137 +272782,320.52,83.0986 +272783,322.3,83.3039 +272784,324.03,83.5273 +272785,317.4,82.8341 +272786,319.2,83.0564 +272787,320.96,83.2986 +272788,322.67,83.5583 +272789,316.1,82.7548 +272790,317.88,83.0143 +272791,319.62,83.2932 +272792,321.31,83.5891 +272793,314.79,82.6756 +272794,316.56,82.9723 +272795,318.28,83.2878 +272796,319.96,83.6196 +272797,313.49,82.5968 +272798,315.24,82.9305 +272799,316.94,83.2822 +272800,318.6,83.6499 +272801,312.2,82.5183 +272802,313.92,82.8887 +272803,315.6,83.2766 +272804,317.24,83.6798 +272805,310.9,82.4402 +272806,312.6,82.847 +272807,314.26,83.2708 +272808,315.87,83.7094 +272809,309.6,82.3624 +272810,311.28,82.8055 +272811,312.92,83.2649 +272812,314.51,83.7387 +272813,308.31,82.285 +272814,309.96,82.7641 +272815,311.57,83.2589 +272816,313.15,83.7675 +272817,307.02,82.2081 +272818,308.64,82.7228 +272819,310.23,83.2528 +272820,311.78,83.7959 +272821,305.72,82.1317 +272822,307.33,82.6817 +272823,308.89,83.2465 +272824,310.41,83.8239 +272825,304.43,82.0557 +272826,306.01,82.6407 +272827,307.55,83.24 +272828,309.04,83.8514 +272829,303.14,81.9802 +272830,304.69,82.5999 +272831,306.2,83.2334 +272832,307.67,83.8784 +272833,301.86,81.9054 +272834,303.38,82.5593 +272835,304.86,83.2265 +272836,306.3,83.9049 +272837,300.57,81.831 +272838,302.06,82.5189 +272839,303.51,83.2195 +272840,304.93,83.9308 +272841,299.28,81.7573 +272842,300.74,82.4787 +272843,302.17,83.2123 +272844,303.56,83.9561 +272845,298,81.6843 +272846,299.43,82.4387 +272847,300.82,83.2049 +272848,302.19,83.9809 +272849,296.71,81.6118 +272850,298.11,82.3989 +272851,299.48,83.1973 +272852,300.81,84.005 +272853,295.43,81.5401 +272854,296.8,82.3594 +272855,298.13,83.1895 +272856,299.43,84.0285 +272857,294.15,81.4691 +272858,295.49,82.3201 +272859,296.79,83.1815 +272860,298.06,84.0513 +272861,292.87,81.3988 +272862,294.17,82.281 +272863,295.44,83.1732 +272864,296.68,84.0734 +272865,291.59,81.3292 +272866,292.86,82.2421 +272867,294.1,83.1646 +272868,295.3,84.0948 +272869,290.31,81.2605 +272870,291.55,82.2036 +272871,292.75,83.1558 +272872,293.92,84.1155 +272873,289.04,81.1925 +272874,290.24,82.1652 +272875,291.4,83.1468 +272876,292.54,84.1353 +272877,287.76,81.1254 +272878,288.92,82.1272 +272879,290.06,83.1375 +272880,291.16,84.1544 +272881,286.48,81.0592 +272882,287.61,82.0894 +272883,288.71,83.1279 +272884,289.77,84.1727 +272885,285.21,80.9938 +272886,286.3,82.052 +272887,287.36,83.1181 +272888,288.39,84.1902 +272889,283.94,80.9293 +272890,284.99,82.0148 +272891,286.01,83.1079 +272892,287,84.2068 +272893,282.66,80.8657 +272894,283.68,81.9779 +272895,284.66,83.0975 +272896,285.62,84.2226 +272897,281.39,80.8031 +272898,282.37,81.9413 +272899,283.31,83.0867 +272900,284.23,84.2374 +272901,280.12,80.7414 +272902,281.06,81.9051 +272903,281.97,83.0757 +272904,282.85,84.2514 +272905,278.85,80.6807 +272906,279.75,81.8691 +272907,280.62,83.0643 +272908,281.46,84.2644 +272909,277.58,80.621 +272910,278.44,81.8335 +272911,279.27,83.0526 +272912,280.07,84.2765 +272913,276.31,80.5623 +272914,277.13,81.7983 +272915,277.92,83.0406 +272916,278.68,84.2876 +272917,275.04,80.5047 +272918,275.82,81.7633 +272919,276.57,83.0283 +272920,277.29,84.2977 +272921,273.77,80.4481 +272922,274.51,81.7288 +272923,275.22,83.0156 +272924,275.9,84.3068 +272925,272.51,80.3926 +272926,273.2,81.6945 +272927,273.87,83.0025 +272928,274.51,84.315 +272929,271.24,80.3381 +272930,271.89,81.6607 +272931,272.52,82.9892 +272932,273.12,84.322 +272933,269.97,80.2848 +272934,270.59,81.6272 +272935,271.17,82.9754 +272936,271.72,84.3281 +272937,268.71,80.2326 +272938,269.28,81.594 +272939,269.82,82.9614 +272940,270.33,84.3331 +272941,267.44,80.1815 +272942,267.97,81.5613 +272943,268.47,82.9469 +272944,268.94,84.3369 +272945,266.18,80.1315 +272946,266.66,81.5289 +272947,267.12,82.9321 +272948,267.54,84.3398 +272949,264.91,80.0827 +272950,265.35,81.4969 +272951,265.77,82.9169 +272952,266.15,84.3415 +272953,263.65,80.0351 +272954,264.05,81.4652 +272955,264.42,82.9013 +272956,264.76,84.3421 +272957,262.38,79.989 +272958,262.74,81.434 +272959,263.07,82.8854 +272960,263.36,84.3415 +272961,261.12,79.943 +272962,261.43,81.4032 +272963,261.71,82.8691 +272964,261.97,84.3398 +272965,259.86,79.899 +272966,260.13,81.3727 +272967,260.36,82.8523 +272968,260.57,84.337 +272969,258.59,79.857 +272970,258.82,81.3427 +272971,259.01,82.8352 +272972,259.17,84.333 +272973,257.33,79.815 +272974,257.51,81.3131 +272975,257.66,82.8177 +272976,257.78,84.3278 +272977,256.07,79.775 +272978,256.21,81.2838 +272979,256.31,82.7998 +272980,256.38,84.3215 +272981,254.81,79.735 +272982,254.9,81.255 +272983,254.96,82.7815 +272984,254.99,84.314 +272985,253.54,79.698 +272986,253.59,81.2266 +272987,253.61,82.7628 +272988,253.59,84.3052 +272989,252.28,79.661 +272990,252.29,81.1986 +272991,252.26,82.7437 +272992,252.19,84.2953 +272993,251.02,79.626 +272994,250.98,81.171 +272995,250.91,82.7242 +272996,250.8,84.2841 +272997,249.76,79.591 +272998,249.67,81.1439 +272999,249.55,82.7043 +273000,249.4,84.2718 +273001,248.5,79.559 +273002,248.37,81.1172 +273003,248.2,82.6839 +273004,248.01,84.2582 +273005,247.23,79.527 +273006,247.06,81.0908 +273007,246.85,82.6632 +273008,246.61,84.2433 +273009,245.97,79.497 +273010,245.75,81.065 +273011,245.5,82.642 +273012,245.21,84.2273 +273013,244.71,79.468 +273014,244.45,81.0395 +273015,244.15,82.6204 +273016,243.82,84.21 +273017,243.45,79.44 +273018,243.14,81.0145 +273019,242.8,82.5984 +273020,242.42,84.1915 +273021,242.18,79.413 +273022,241.83,80.9898 +273023,241.45,82.576 +273024,241.03,84.1717 +273025,240.92,79.388 +273026,240.53,80.9657 +273027,240.1,82.5532 +273028,239.63,84.1506 +273029,239.66,79.364 +273030,239.22,80.9419 +273031,238.75,82.53 +273032,238.24,84.1284 +273033,238.39,79.342 +273034,237.91,80.9186 +273035,237.4,82.5063 +273036,236.84,84.1048 +273037,237.13,79.32 +273038,236.61,80.8956 +273039,236.05,82.4822 +273040,235.45,84.0801 +273041,235.87,79.3 +273042,235.3,80.8732 +273043,234.7,82.4577 +273044,234.05,84.0541 +273045,234.6,79.282 +273046,233.99,80.8511 +273047,233.35,82.4328 +273048,232.66,84.0268 +273049,233.34,79.264 +273050,232.69,80.8295 +273051,232,82.4075 +273052,231.27,83.9983 +273053,232.07,79.248 +273054,231.38,80.8082 +273055,230.65,82.3818 +273056,229.87,83.9685 +273057,230.8,79.233 +273058,230.07,80.7874 +273059,229.3,82.3556 +273060,228.48,83.9376 +273061,229.54,79.219 +273062,228.76,80.7671 +273063,227.95,82.329 +273064,227.09,83.9053 +273065,228.27,79.206 +273066,227.46,80.7471 +273067,226.6,82.3021 +273068,225.7,83.8719 +273069,227,79.195 +273070,226.15,80.7275 +273071,225.25,82.2747 +273072,224.31,83.8372 +273073,225.73,79.185 +273074,224.84,80.7084 +273075,223.91,82.2469 +273076,222.92,83.8013 +273077,224.46,79.176 +273078,223.53,80.6897 +273079,222.56,82.2187 +273080,221.53,83.7642 +273081,223.19,79.169 +273082,222.22,80.6714 +273083,221.21,82.1902 +273084,220.14,83.7259 +273085,221.92,79.162 +273086,220.92,80.6534 +273087,219.86,82.1612 +273088,218.76,83.6864 +273089,220.65,79.157 +273090,219.61,80.6359 +273091,218.51,82.1318 +273092,217.37,83.6457 +273093,219.38,79.153 +273094,218.3,80.6188 +273095,217.17,82.1021 +273096,215.98,83.6038 +273097,218.11,79.15 +273098,216.99,80.6021 +273099,215.82,82.0719 +273100,214.6,83.5608 +273101,216.84,79.148 +273102,215.68,80.5857 +273103,214.47,82.0414 +273104,213.21,83.5166 +273105,215.56,79.148 +273106,214.37,80.5698 +273107,213.13,82.0105 +273108,211.83,83.4712 +273109,214.29,79.148 +273110,213.06,80.5542 +273111,211.78,81.9792 +273112,210.45,83.4247 +273113,213.01,79.15 +273114,211.75,80.539 +273115,210.44,81.9475 +273116,209.07,83.3771 +273117,211.73,79.153 +273118,210.44,80.5242 +273119,209.09,81.9155 +273120,207.69,83.3283 +273121,210.45,79.157 +273122,209.13,80.5097 +273123,207.75,81.8831 +273124,206.31,83.2785 +273125,209.18,79.161 +273126,207.82,80.4956 +273127,206.4,81.8504 +273128,204.93,83.2276 +273129,207.9,79.167 +273130,206.5,80.4819 +273131,205.06,81.8173 +273132,203.55,83.1756 +273133,206.61,79.175 +273134,205.19,80.4685 +273135,203.72,81.7839 +273136,202.18,83.1225 +273137,205.33,79.183 +273138,203.88,80.4555 +273139,202.37,81.7501 +273140,200.8,83.0684 +273141,204.05,79.192 +273142,202.57,80.4428 +273143,201.03,81.716 +273144,199.43,83.0133 +273145,202.77,79.202 +273146,201.26,80.4304 +273147,199.69,81.6815 +273148,198.06,82.9572 +273149,201.48,79.213 +273150,199.94,80.4183 +273151,198.35,81.6468 +273152,196.69,82.9 +273153,200.19,79.225 +273154,198.63,80.4066 +273155,197.01,81.6117 +273156,195.32,82.842 +273157,198.91,79.237 +273158,197.31,80.3952 +273159,195.66,81.5763 +273160,193.95,82.7829 +273161,197.62,79.251 +273162,196,80.3841 +273163,194.32,81.5406 +273164,192.58,82.7229 +273165,196.33,79.266 +273166,194.69,80.3733 +273167,192.98,81.5046 +273168,191.21,82.662 +273169,195.04,79.281 +273170,193.37,80.3628 +273171,191.64,81.4683 +273172,189.85,82.6002 +273173,193.74,79.298 +273174,192.05,80.3526 +273175,190.31,81.4317 +273176,188.49,82.5375 +273177,192.45,79.315 +273178,190.74,80.3427 +273179,188.97,81.3949 +273180,187.12,82.474 +273181,191.15,79.333 +273182,189.42,80.3331 +273183,187.63,81.3577 +273184,185.76,82.4096 +273185,189.86,79.352 +273186,188.11,80.3237 +273187,186.29,81.3204 +273188,184.41,82.3444 +273189,188.56,79.371 +273190,186.79,80.3146 +273191,184.95,81.2827 +273192,183.05,82.2784 +273193,187.26,79.392 +273194,185.47,80.3057 +273195,183.62,81.2448 +273196,181.69,82.2117 +273197,185.96,79.413 +273198,184.15,80.2971 +273199,182.28,81.2067 +273200,180.34,82.1442 +273201,184.66,79.434 +273202,182.83,80.2887 +273203,180.95,81.1683 +273204,178.98,82.076 +273205,183.36,79.456 +273206,181.52,80.2805 +273207,179.61,81.1298 +273208,177.63,82.0071 +273209,182.05,79.479 +273210,180.2,80.2725 +273211,178.28,81.091 +273212,176.28,81.9375 +273213,180.75,79.503 +273214,178.88,80.2648 +273215,176.94,81.052 +273216,174.93,81.8673 +273217,179.44,79.527 +273218,177.56,80.2573 +273219,175.61,81.0128 +273220,173.59,81.7964 +273221,178.13,79.552 +273222,176.23,80.2499 +273223,174.27,80.9734 +273224,172.24,81.725 +273225,176.82,79.577 +273226,174.91,80.2428 +273227,172.94,80.9338 +273228,170.9,81.653 +273229,175.51,79.603 +273230,173.59,80.2358 +273231,171.61,80.8941 +273232,169.55,81.5804 +273233,174.2,79.629 +273234,172.27,80.229 +273235,170.28,80.8542 +273236,168.21,81.5073 +273237,172.88,79.656 +273238,170.95,80.2223 +273239,168.95,80.8141 +273240,166.87,81.4337 +273241,171.57,79.683 +273242,169.62,80.2158 +273243,167.62,80.7739 +273244,165.54,81.3597 +273245,170.25,79.71 +273246,168.3,80.2095 +273247,166.29,80.7335 +273248,164.2,81.2852 +273249,168.93,79.738 +273250,166.98,80.2032 +273251,164.96,80.6931 +273252,162.87,81.2103 +273253,167.61,79.766 +273254,165.65,80.1971 +273255,163.63,80.6525 +273256,161.53,81.1351 +273257,166.29,79.795 +273258,164.33,80.1912 +273259,162.3,80.6118 +273260,160.2,81.0594 +273261,164.97,79.823 +273262,163,80.1853 +273263,160.97,80.571 +273264,158.87,80.9835 +273265,163.64,79.853 +273266,161.68,80.1795 +273267,159.65,80.5301 +273268,157.54,80.9072 +273269,162.32,79.882 +273270,160.35,80.1738 +273271,158.32,80.4891 +273272,156.22,80.8307 +273273,160.99,79.911 +273274,159.02,80.1682 +273275,156.99,80.4481 +273276,154.89,80.754 +273277,159.66,79.941 +273278,157.7,80.1626 +273279,155.67,80.407 +273280,153.57,80.677 +273281,158.33,79.971 +273282,156.37,80.1571 +273283,154.34,80.3658 +273284,152.25,80.5998 +273285,157,80.0008 +273286,155.04,80.1516 +273287,153.02,80.3246 +273288,150.93,80.5225 +273289,155.66,80.0309 +273290,153.71,80.1462 +273291,151.69,80.2834 +273292,149.61,80.4451 +273293,154.33,80.061 +273294,152.38,80.1409 +273295,150.37,80.2421 +273296,148.29,80.3676 +273297,152.99,80.0912 +273298,151.05,80.1355 +273299,149.05,80.2008 +273300,146.98,80.29 +273301,151.65,80.1213 +273302,149.72,80.1301 +273303,147.73,80.1596 +273304,145.66,80.2124 +273305,150.31,80.1515 +273306,148.39,80.1248 +273307,146.4,80.1183 +273308,144.35,80.1347 +273309,148.97,80.1816 +273310,147.06,80.1194 +273311,145.08,80.077 +273312,143.04,80.0571 +273313,147.63,80.2117 +273314,145.73,80.1141 +273315,143.76,80.0358 +273316,141.73,79.98 +273317,146.29,80.2416 +273318,144.39,80.1087 +273319,142.44,79.995 +273320,140.43,79.902 +273321,144.94,80.2714 +273322,143.06,80.1032 +273323,141.12,79.953 +273324,139.12,79.825 +273325,143.59,80.3011 +273326,141.73,80.0978 +273327,139.8,79.912 +273328,137.82,79.748 +273329,142.25,80.3306 +273330,140.4,80.0922 +273331,138.49,79.871 +273332,136.51,79.67 +273333,140.9,80.3599 +273334,139.06,80.0866 +273335,137.17,79.83 +273336,135.21,79.594 +273337,139.55,80.3889 +273338,137.73,80.081 +273339,135.85,79.789 +273340,133.91,79.517 +273341,138.19,80.4177 +273342,136.39,80.0752 +273343,134.53,79.749 +273344,132.62,79.441 +273345,136.84,80.4462 +273346,135.06,80.0694 +273347,133.22,79.708 +273348,131.32,79.365 +273349,135.48,80.4744 +273350,133.72,80.0634 +273351,131.9,79.667 +273352,130.02,79.289 +273353,134.13,80.5022 +273354,132.38,80.0574 +273355,130.59,79.627 +273356,128.73,79.213 +273357,132.77,80.5297 +273358,131.05,80.0512 +273359,129.27,79.587 +273360,127.44,79.138 +273361,131.41,80.5567 +273362,129.71,80.0449 +273363,127.96,79.546 +273364,126.15,79.064 +273365,130.05,80.5834 +273366,128.37,80.0385 +273367,126.64,79.506 +273368,124.86,78.99 +273369,128.69,80.6096 +273370,127.04,80.0319 +273371,125.33,79.466 +273372,123.57,78.916 +273373,127.33,80.6353 +273374,125.7,80.0251 +273375,124.02,79.427 +273376,122.28,78.843 +273377,125.96,80.6605 +273378,124.36,80.0182 +273379,122.7,79.387 +273380,121,78.77 +273381,124.6,80.6853 +273382,123.02,80.0112 +273383,121.39,79.348 +273384,119.71,78.698 +273385,123.23,80.7094 +273386,121.68,80.0039 +273387,120.08,79.309 +273388,118.43,78.626 +273389,121.86,80.733 +273390,120.34,79.997 +273391,118.77,79.27 +273392,117.15,78.555 +273393,120.49,80.756 +273394,119,79.989 +273395,117.46,79.231 +273396,115.87,78.484 +273397,119.12,80.7784 +273398,117.66,79.981 +273399,116.15,79.192 +273400,114.59,78.415 +273401,117.75,80.8002 +273402,116.32,79.973 +273403,114.84,79.154 +273404,113.31,78.346 +273405,116.38,80.8212 +273406,114.98,79.965 +273407,113.53,79.116 +273408,112.04,78.277 +273409,115,80.8416 +273410,113.63,79.956 +273411,112.22,79.078 +273412,110.76,78.209 +273413,113.63,80.8613 +273414,112.29,79.948 +273415,110.91,79.041 +273416,109.49,78.142 +273417,112.25,80.8803 +273418,110.95,79.939 +273419,109.6,79.003 +273420,108.21,78.076 +273421,110.87,80.8985 +273422,109.61,79.929 +273423,108.3,78.966 +273424,106.94,78.011 +273425,109.5,80.9159 +273426,108.26,79.92 +273427,106.99,78.929 +273428,105.67,77.946 +273429,108.12,80.9326 +273430,106.92,79.91 +273431,105.68,78.893 +273432,104.4,77.882 +273433,106.74,80.9484 +273434,105.58,79.9 +273435,104.37,78.856 +273436,103.13,77.819 +273437,105.36,80.9634 +273438,104.23,79.89 +273439,103.07,78.821 +273440,101.86,77.757 +273441,103.97,80.9775 +273442,102.89,79.879 +273443,101.76,78.785 +273444,100.6,77.696 +273445,102.59,80.9908 +273446,101.54,79.868 +273447,100.46,78.75 +273448,99.331,77.636 +273449,101.21,81.0032 +273450,100.2,79.857 +273451,99.151,78.714 +273452,98.066,77.577 +273453,99.822,81.0147 +273454,98.853,79.846 +273455,97.846,78.68 +273456,96.801,77.518 +273457,98.437,81.0252 +273458,97.507,79.834 +273459,96.541,78.645 +273460,95.537,77.461 +273461,97.051,81.0349 +273462,96.162,79.822 +273463,95.237,78.611 +273464,94.275,77.405 +273465,95.664,81.0435 +273466,94.816,79.81 +273467,93.932,78.578 +273468,93.012,77.349 +273469,94.276,81.0512 +273470,93.47,79.797 +273471,92.628,78.544 +273472,91.751,77.295 +273473,92.888,81.0579 +273474,92.124,79.784 +273475,91.325,78.511 +273476,90.49,77.242 +273477,91.499,81.0636 +273478,90.777,79.77 +273479,90.021,78.478 +273480,89.23,77.189 +273481,90.109,81.0682 +273482,89.43,79.757 +273483,88.718,78.446 +273484,87.971,77.138 +273485,88.719,81.0719 +273486,88.084,79.743 +273487,87.415,78.414 +273488,86.712,77.088 +273489,87.328,81.0745 +273490,86.737,79.728 +273491,86.112,78.383 +273492,85.453,77.039 +273493,85.937,81.076 +273494,85.39,79.713 +273495,84.809,78.351 +273496,84.196,76.992 +273497,84.545,81.0764 +273498,84.042,79.698 +273499,83.507,78.321 +273500,82.938,76.945 +273501,83.153,81.0758 +273502,82.695,79.683 +273503,82.205,78.29 +273504,81.681,76.899 +273505,81.76,81.0741 +273506,81.347,79.667 +273507,80.902,78.26 +273508,80.425,76.855 +273509,80.367,81.0712 +273510,80,79.651 +273511,79.6,78.23 +273512,79.169,76.812 +273513,78.974,81.0673 +273514,78.652,79.634 +273515,78.299,78.201 +273516,77.913,76.77 +273517,77.58,81.0622 +273518,77.304,79.617 +273519,76.997,78.172 +273520,76.657,76.729 +273521,76.186,81.056 +273522,75.956,79.6 +273523,75.695,78.144 +273524,75.402,76.689 +273525,74.791,81.0487 +273526,74.608,79.582 +273527,74.394,78.115 +273528,74.147,76.651 +273529,73.397,81.0402 +273530,73.261,79.564 +273531,73.092,78.088 +273532,72.892,76.613 +273533,72.002,81.0305 +273534,71.913,79.545 +273535,71.791,78.06 +273536,71.638,76.577 +273537,70.607,81.0197 +273538,70.564,79.526 +273539,70.49,78.034 +273540,70.383,76.543 +273541,69.212,81.0077 +273542,69.216,79.507 +273543,69.189,78.007 +273544,69.129,76.509 +273545,67.817,80.9945 +273546,67.868,79.487 +273547,67.887,77.981 +273548,67.874,76.477 +273549,66.422,80.9802 +273550,66.52,79.467 +273551,66.586,77.955 +273552,66.62,76.446 +273553,65.026,80.9646 +273554,65.172,79.447 +273555,65.285,77.93 +273556,65.366,76.416 +273557,63.631,80.9479 +273558,63.824,79.426 +273559,63.984,77.905 +273560,64.111,76.387 +273561,62.236,80.9299 +273562,62.476,79.405 +273563,62.683,77.881 +273564,62.857,76.36 +273565,60.841,80.9108 +273566,61.129,79.383 +273567,61.382,77.857 +273568,61.602,76.334 +273569,59.446,80.8905 +273570,59.781,79.361 +273571,60.081,77.833 +273572,60.347,76.309 +273573,58.051,80.869 +273574,58.433,79.338 +273575,58.78,77.81 +273576,59.092,76.285 +273577,56.657,80.8463 +273578,57.085,79.316 +273579,57.478,77.787 +273580,57.837,76.263 +273581,55.262,80.8224 +273582,55.738,79.292 +273583,56.177,77.765 +273584,56.582,76.242 +273585,53.868,80.7972 +273586,54.391,79.269 +273587,54.876,77.743 +273588,55.326,76.222 +273589,52.474,80.7709 +273590,53.043,79.244 +273591,53.574,77.722 +273592,54.07,76.203 +273593,51.081,80.7434 +273594,51.696,79.22 +273595,52.273,77.701 +273596,52.814,76.186 +273597,49.688,80.7147 +273598,50.349,79.195 +273599,50.971,77.68 +273600,51.557,76.17 +273601,48.295,80.6848 +273602,49.002,79.17 +273603,49.669,77.66 +273604,50.299,76.155 +273605,46.903,80.6537 +273606,47.656,79.144 +273607,48.367,77.64 +273608,49.042,76.141 +273609,45.512,80.6215 +273610,46.309,79.118 +273611,47.065,77.62 +273612,47.783,76.129 +273613,44.121,80.588 +273614,44.963,79.092 +273615,45.763,77.601 +273616,46.525,76.118 +273617,42.73,80.5534 +273618,43.617,79.065 +273619,44.461,77.583 +273620,45.265,76.108 +273621,41.34,80.5176 +273622,42.271,79.038 +273623,43.158,77.565 +273624,44.005,76.099 +273625,39.951,80.4807 +273626,40.926,79.01 +273627,41.855,77.547 +273628,42.745,76.091 +273629,38.562,80.4426 +273630,39.58,78.982 +273631,40.552,77.529 +273632,41.483,76.085 +273633,37.174,80.4033 +273634,38.235,78.954 +273635,39.249,77.512 +273636,40.221,76.079 +273637,35.787,80.363 +273638,36.891,78.925 +273639,37.946,77.496 +273640,38.959,76.075 +273641,34.4,80.3215 +273642,35.546,78.896 +273643,36.642,77.479 +273644,37.695,76.072 +273645,33.015,80.2788 +273646,34.202,78.866 +273647,35.339,77.463 +273648,36.431,76.07 +273649,31.63,80.2351 +273650,32.858,78.836 +273651,34.034,77.448 +273652,35.166,76.07 +273653,30.246,80.1903 +273654,31.514,78.806 +273655,32.73,77.433 +273656,33.9,76.07 +273657,28.863,80.1444 +273658,30.171,78.776 +273659,31.425,77.418 +273660,32.633,76.072 +273661,27.481,80.0974 +273662,28.828,78.745 +273663,30.12,77.404 +273664,31.365,76.074 +273665,26.1,80.0493 +273666,27.485,78.713 +273667,28.815,77.39 +273668,30.097,76.078 +273669,24.72,80.0002 +273670,26.143,78.682 +273671,27.51,77.376 +273672,28.827,76.083 +273673,23.34,79.95 +273674,24.801,78.65 +273675,26.204,77.363 +273676,27.557,76.088 +273677,21.962,79.899 +273678,23.46,78.618 +273679,24.898,77.35 +273680,26.285,76.095 +273681,20.585,79.847 +273682,22.118,78.585 +273683,23.591,77.337 +273684,25.012,76.103 +273685,19.21,79.794 +273686,20.778,78.552 +273687,22.284,77.325 +273688,23.739,76.112 +273689,17.835,79.74 +273690,19.437,78.519 +273691,20.977,77.313 +273692,22.464,76.122 +273693,16.461,79.684 +273694,18.097,78.485 +273695,19.67,77.301 +273696,21.188,76.132 +273697,15.089,79.628 +273698,16.758,78.451 +273699,18.362,77.29 +273700,19.911,76.144 +273701,13.718,79.571 +273702,15.419,78.417 +273703,17.054,77.279 +273704,18.632,76.156 +273705,12.348,79.514 +273706,14.08,78.383 +273707,15.745,77.268 +273708,17.353,76.17 +273709,10.98,79.455 +273710,12.742,78.348 +273711,14.436,77.258 +273712,16.072,76.184 +273713,9.6124,79.395 +273714,11.404,78.313 +273715,13.127,77.248 +273716,14.79,76.199 +273717,8.2465,79.335 +273718,10.066,78.277 +273719,11.817,77.238 +273720,13.507,76.215 +273721,6.882,79.274 +273722,8.7296,78.242 +273723,10.506,77.228 +273724,12.223,76.232 +273725,5.5188,79.211 +273726,7.3932,78.206 +273727,9.1958,77.219 +273728,10.937,76.25 +273729,4.1571,79.149 +273730,6.0572,78.17 +273731,7.8847,77.21 +273732,9.6501,76.268 +273733,2.7968,79.085 +273734,4.7218,78.133 +273735,6.5732,77.201 +273736,8.3617,76.287 +273737,1.4379,79.021 +273738,3.3868,78.097 +273739,5.2613,77.193 +273740,7.072,76.307 +273741,0.080456,78.955 +273742,2.0523,78.06 +273743,3.9489,77.185 +273744,5.781,76.328 +273745,358.72,78.89 +273746,0.71837,78.023 +273747,2.636,77.177 +273748,4.4885,76.349 +273749,357.37,78.823 +273750,359.38,77.986 +273751,1.3228,77.169 +273752,3.1947,76.371 +273753,356.02,78.756 +273754,358.05,77.948 +273755,0.0090021,77.161 +273756,1.8994,76.393 +273757,354.67,78.688 +273758,356.72,77.91 +273759,358.69,77.154 +273760,0.60273,76.417 +273761,353.32,78.62 +273762,355.39,77.873 +273763,357.38,77.147 +273764,359.3,76.44 +273765,351.97,78.551 +273766,354.06,77.835 +273767,356.06,77.14 +273768,358.01,76.464 +273769,350.62,78.481 +273770,352.73,77.796 +273771,354.75,77.133 +273772,356.7,76.489 +273773,349.28,78.411 +273774,351.4,77.758 +273775,353.43,77.126 +273776,355.4,76.514 +273777,347.93,78.341 +273778,350.07,77.719 +273779,352.12,77.12 +273780,354.1,76.54 +273781,346.59,78.27 +273782,348.74,77.681 +273783,350.8,77.114 +273784,352.79,76.566 +273785,345.25,78.198 +273786,347.41,77.642 +273787,349.48,77.107 +273788,351.48,76.593 +273789,343.91,78.126 +273790,346.08,77.603 +273791,348.16,77.101 +273792,350.18,76.62 +273793,342.58,78.054 +273794,344.75,77.564 +273795,346.85,77.095 +273796,348.87,76.647 +273797,341.24,77.981 +273798,343.42,77.524 +273799,345.53,77.09 +273800,347.55,76.675 +273801,339.91,77.908 +273802,342.1,77.485 +273803,344.21,77.084 +273804,346.24,76.703 +273805,338.57,77.835 +273806,340.77,77.446 +273807,342.89,77.079 +273808,344.93,76.731 +273809,337.24,77.761 +273810,339.45,77.406 +273811,341.57,77.073 +273812,343.61,76.76 +273813,335.92,77.687 +273814,338.12,77.366 +273815,340.24,77.068 +273816,342.29,76.789 +273817,334.59,77.613 +273818,336.8,77.327 +273819,338.92,77.063 +273820,340.97,76.818 +273821,333.26,77.538 +273822,335.47,77.287 +273823,337.6,77.057 +273824,339.65,76.847 +273825,331.94,77.464 +273826,334.15,77.247 +273827,336.28,77.052 +273828,338.33,76.876 +273829,330.62,77.389 +273830,332.83,77.207 +273831,334.96,77.047 +273832,337.01,76.906 +273833,329.3,77.314 +273834,331.51,77.167 +273835,333.63,77.042 +273836,335.68,76.935 +273837,327.98,77.239 +273838,330.19,77.128 +273839,332.31,77.037 +273840,334.35,76.965 +273841,326.66,77.164 +273842,328.87,77.088 +273843,330.98,77.032 +273844,333.03,76.995 +273845,325.35,77.089 +273846,327.55,77.048 +273847,329.66,77.027 +273848,331.7,77.024 +273849,324.04,77.014 +273850,326.23,77.008 +273851,328.33,77.022 +273852,330.36,77.054 +273853,322.72,76.939 +273854,324.91,76.968 +273855,327.01,77.017 +273856,329.03,77.084 +273857,321.41,76.864 +273858,323.59,76.928 +273859,325.68,77.012 +273860,327.7,77.113 +273861,320.11,76.789 +273862,322.27,76.888 +273863,324.35,77.007 +273864,326.36,77.143 +273865,318.8,76.714 +273866,320.95,76.848 +273867,323.02,77.002 +273868,325.02,77.172 +273869,317.5,76.639 +273870,319.64,76.809 +273871,321.7,76.997 +273872,323.68,77.201 +273873,316.19,76.564 +273874,318.32,76.769 +273875,320.37,76.992 +273876,322.34,77.23 +273877,314.89,76.49 +273878,317,76.729 +273879,319.04,76.987 +273880,321,77.259 +273881,313.59,76.416 +273882,315.69,76.69 +273883,317.71,76.981 +273884,319.65,77.288 +273885,312.29,76.342 +273886,314.37,76.65 +273887,316.38,76.976 +273888,318.31,77.316 +273889,311,76.268 +273890,313.06,76.611 +273891,315.05,76.97 +273892,316.96,77.344 +273893,309.7,76.195 +273894,311.75,76.572 +273895,313.72,76.965 +273896,315.61,77.372 +273897,308.41,76.122 +273898,310.43,76.533 +273899,312.38,76.959 +273900,314.26,77.399 +273901,307.12,76.049 +273902,309.12,76.494 +273903,311.05,76.954 +273904,312.91,77.426 +273905,305.82,75.977 +273906,307.81,76.455 +273907,309.72,76.948 +273908,311.56,77.453 +273909,304.54,75.905 +273910,306.5,76.416 +273911,308.39,76.942 +273912,310.21,77.479 +273913,303.25,75.833 +273914,305.19,76.377 +273915,307.05,76.935 +273916,308.85,77.505 +273917,301.96,75.762 +273918,303.88,76.339 +273919,305.72,76.929 +273920,307.49,77.53 +273921,300.68,75.692 +273922,302.57,76.301 +273923,304.38,76.923 +273924,306.14,77.555 +273925,299.4,75.622 +273926,301.26,76.263 +273927,303.05,76.916 +273928,304.78,77.579 +273929,298.11,75.552 +273930,299.95,76.225 +273931,301.71,76.909 +273932,303.42,77.603 +273933,296.83,75.483 +273934,298.64,76.187 +273935,300.38,76.902 +273936,302.05,77.626 +273937,295.56,75.415 +273938,297.33,76.15 +273939,299.04,76.895 +273940,300.69,77.649 +273941,294.28,75.347 +273942,296.02,76.112 +273943,297.71,76.888 +273944,299.32,77.671 +273945,293,75.28 +273946,294.72,76.075 +273947,296.37,76.88 +273948,297.96,77.692 +273949,291.73,75.214 +273950,293.41,76.039 +273951,295.03,76.872 +273952,296.59,77.713 +273953,290.45,75.148 +273954,292.1,76.002 +273955,293.69,76.864 +273956,295.22,77.733 +273957,289.18,75.083 +273958,290.8,75.966 +273959,292.35,76.856 +273960,293.85,77.752 +273961,287.91,75.019 +273962,289.49,75.929 +273963,291.02,76.847 +273964,292.48,77.771 +273965,286.64,74.955 +273966,288.19,75.894 +273967,289.68,76.839 +273968,291.11,77.789 +273969,285.37,74.893 +273970,286.88,75.858 +273971,288.34,76.83 +273972,289.74,77.806 +273973,284.11,74.831 +273974,285.58,75.823 +273975,287,76.821 +273976,288.36,77.822 +273977,282.84,74.77 +273978,284.28,75.788 +273979,285.66,76.811 +273980,286.99,77.838 +273981,281.57,74.71 +273982,282.97,75.753 +273983,284.32,76.801 +273984,285.61,77.852 +273985,280.31,74.65 +273986,281.67,75.718 +273987,282.98,76.791 +273988,284.23,77.866 +273989,279.05,74.592 +273990,280.37,75.684 +273991,281.64,76.781 +273992,282.85,77.879 +273993,277.79,74.534 +273994,279.07,75.65 +273995,280.29,76.77 +273996,281.47,77.892 +273997,276.53,74.478 +273998,277.76,75.617 +273999,278.95,76.759 +274000,280.09,77.903 +274001,275.27,74.422 +274002,276.46,75.584 +274003,277.61,76.748 +274004,278.71,77.913 +274005,274.01,74.367 +274006,275.16,75.551 +274007,276.27,76.736 +274008,277.33,77.923 +274009,272.75,74.314 +274010,273.86,75.518 +274011,274.93,76.725 +274012,275.95,77.931 +274013,271.49,74.261 +274014,272.56,75.486 +274015,273.58,76.712 +274016,274.56,77.939 +274017,270.23,74.209 +274018,271.26,75.454 +274019,272.24,76.7 +274020,273.18,77.945 +274021,268.98,74.159 +274022,269.96,75.422 +274023,270.9,76.687 +274024,271.79,77.951 +274025,267.72,74.109 +274026,268.66,75.391 +274027,269.55,76.674 +274028,270.4,77.955 +274029,266.47,74.06 +274030,267.36,75.36 +274031,268.21,76.66 +274032,269.02,77.959 +274033,265.22,74.013 +274034,266.06,75.33 +274035,266.87,76.647 +274036,267.63,77.961 +274037,263.96,73.967 +274038,264.76,75.3 +274039,265.52,76.632 +274040,266.24,77.963 +274041,262.71,73.921 +274042,263.46,75.27 +274043,264.18,76.618 +274044,264.85,77.963 +274045,261.46,73.877 +274046,262.17,75.241 +274047,262.83,76.603 +274048,263.46,77.963 +274049,260.21,73.834 +274050,260.87,75.212 +274051,261.49,76.588 +274052,262.07,77.961 +274053,258.96,73.792 +274054,259.57,75.183 +274055,260.14,76.572 +274056,260.68,77.958 +274057,257.71,73.752 +274058,258.27,75.155 +274059,258.8,76.556 +274060,259.29,77.954 +274061,256.46,73.712 +274062,256.97,75.127 +274063,257.45,76.54 +274064,257.9,77.949 +274065,255.21,73.674 +274066,255.68,75.099 +274067,256.11,76.523 +274068,256.51,77.943 +274069,253.96,73.636 +274070,254.38,75.072 +274071,254.76,76.506 +274072,255.11,77.936 +274073,252.71,73.6 +274074,253.08,75.046 +274075,253.42,76.488 +274076,253.72,77.928 +274077,251.46,73.566 +274078,251.78,75.019 +274079,252.07,76.471 +274080,252.33,77.918 +274081,250.21,73.532 +274082,250.49,74.993 +274083,250.73,76.452 +274084,250.93,77.907 +274085,248.96,73.5 +274086,249.19,74.968 +274087,249.38,76.434 +274088,249.54,77.896 +274089,247.72,73.468 +274090,247.89,74.943 +274091,248.03,76.415 +274092,248.14,77.883 +274093,246.47,73.438 +274094,246.6,74.918 +274095,246.69,76.395 +274096,246.75,77.869 +274097,245.22,73.41 +274098,245.3,74.894 +274099,245.34,76.375 +274100,245.36,77.853 +274101,243.97,73.382 +274102,244,74.87 +274103,244,76.355 +274104,243.96,77.837 +274105,242.73,73.356 +274106,242.71,74.846 +274107,242.65,76.335 +274108,242.57,77.819 +274109,241.48,73.331 +274110,241.41,74.823 +274111,241.31,76.314 +274112,241.17,77.8 +274113,240.23,73.307 +274114,240.11,74.801 +274115,239.96,76.292 +274116,239.78,77.78 +274117,238.98,73.284 +274118,238.81,74.778 +274119,238.61,76.271 +274120,238.38,77.759 +274121,237.73,73.263 +274122,237.52,74.757 +274123,237.27,76.248 +274124,236.99,77.737 +274125,236.49,73.243 +274126,236.22,74.735 +274127,235.92,76.226 +274128,235.59,77.714 +274129,235.24,73.224 +274130,234.92,74.714 +274131,234.58,76.203 +274132,234.2,77.689 +274133,233.99,73.206 +274134,233.63,74.694 +274135,233.23,76.18 +274136,232.8,77.663 +274137,232.74,73.19 +274138,232.33,74.673 +274139,231.89,76.156 +274140,231.41,77.636 +274141,231.49,73.174 +274142,231.03,74.654 +274143,230.54,76.132 +274144,230.02,77.608 +274145,230.24,73.16 +274146,229.74,74.634 +274147,229.2,76.107 +274148,228.62,77.579 +274149,228.99,73.147 +274150,228.44,74.615 +274151,227.85,76.082 +274152,227.23,77.548 +274153,227.74,73.136 +274154,227.14,74.597 +274155,226.51,76.057 +274156,225.84,77.516 +274157,226.49,73.125 +274158,225.84,74.578 +274159,225.16,76.031 +274160,224.45,77.484 +274161,225.24,73.116 +274162,224.55,74.561 +274163,223.82,76.005 +274164,223.05,77.45 +274165,223.99,73.108 +274166,223.25,74.543 +274167,222.47,75.979 +274168,221.66,77.414 +274169,222.73,73.101 +274170,221.95,74.526 +274171,221.13,75.952 +274172,220.27,77.378 +274173,221.48,73.095 +274174,220.65,74.509 +274175,219.79,75.925 +274176,218.88,77.341 +274177,220.23,73.091 +274178,219.35,74.493 +274179,218.44,75.897 +274180,217.49,77.302 +274181,218.97,73.087 +274182,218.05,74.477 +274183,217.1,75.869 +274184,216.1,77.263 +274185,217.72,73.085 +274186,216.76,74.462 +274187,215.76,75.841 +274188,214.72,77.222 +274189,216.46,73.084 +274190,215.46,74.447 +274191,214.41,75.813 +274192,213.33,77.18 +274193,215.2,73.084 +274194,214.16,74.432 +274195,213.07,75.784 +274196,211.94,77.137 +274197,213.95,73.085 +274198,212.86,74.418 +274199,211.73,75.754 +274200,210.55,77.093 +274201,212.69,73.087 +274202,211.56,74.404 +274203,210.39,75.724 +274204,209.17,77.048 +274205,211.43,73.09 +274206,210.26,74.39 +274207,209.04,75.694 +274208,207.78,77.002 +274209,210.17,73.094 +274210,208.96,74.377 +274211,207.7,75.664 +274212,206.4,76.955 +274213,208.91,73.1 +274214,207.66,74.364 +274215,206.36,75.633 +274216,205.02,76.907 +274217,207.65,73.106 +274218,206.36,74.351 +274219,205.02,75.602 +274220,203.64,76.858 +274221,206.38,73.113 +274222,205.05,74.339 +274223,203.68,75.571 +274224,202.26,76.808 +274225,205.12,73.122 +274226,203.75,74.327 +274227,202.34,75.539 +274228,200.88,76.757 +274229,203.85,73.131 +274230,202.45,74.315 +274231,201,75.507 +274232,199.5,76.705 +274233,202.59,73.141 +274234,201.15,74.304 +274235,199.66,75.474 +274236,198.12,76.652 +274237,201.32,73.152 +274238,199.85,74.293 +274239,198.32,75.442 +274240,196.74,76.598 +274241,200.05,73.164 +274242,198.54,74.283 +274243,196.98,75.409 +274244,195.37,76.543 +274245,198.78,73.177 +274246,197.24,74.272 +274247,195.65,75.375 +274248,193.99,76.487 +274249,197.51,73.191 +274250,195.94,74.262 +274251,194.31,75.342 +274252,192.62,76.43 +274253,196.24,73.206 +274254,194.63,74.252 +274255,192.97,75.308 +274256,191.25,76.373 +274257,194.97,73.222 +274258,193.33,74.243 +274259,191.63,75.274 +274260,189.88,76.314 +274261,193.69,73.238 +274262,192.02,74.234 +274263,190.3,75.239 +274264,188.51,76.255 +274265,192.42,73.255 +274266,190.72,74.225 +274267,188.96,75.205 +274268,187.14,76.195 +274269,191.14,73.273 +274270,189.41,74.216 +274271,187.63,75.17 +274272,185.77,76.134 +274273,189.86,73.292 +274274,188.11,74.208 +274275,186.29,75.135 +274276,184.41,76.073 +274277,188.58,73.312 +274278,186.8,74.2 +274279,184.96,75.099 +274280,183.04,76.01 +274281,187.3,73.332 +274282,185.49,74.192 +274283,183.62,75.064 +274284,181.68,75.947 +274285,186.02,73.353 +274286,184.18,74.184 +274287,182.29,75.028 +274288,180.32,75.884 +274289,184.73,73.374 +274290,182.88,74.177 +274291,180.96,74.992 +274292,178.96,75.819 +274293,183.45,73.396 +274294,181.57,74.169 +274295,179.62,74.955 +274296,177.6,75.754 +274297,182.16,73.419 +274298,180.26,74.162 +274299,178.29,74.919 +274300,176.25,75.688 +274301,180.87,73.443 +274302,178.95,74.156 +274303,176.96,74.882 +274304,174.89,75.622 +274305,179.58,73.466 +274306,177.64,74.149 +274307,175.63,74.845 +274308,173.54,75.555 +274309,178.29,73.491 +274310,176.33,74.143 +274311,174.3,74.808 +274312,172.19,75.487 +274313,177,73.516 +274314,175.02,74.136 +274315,172.97,74.771 +274316,170.84,75.419 +274317,175.7,73.541 +274318,173.71,74.13 +274319,171.64,74.733 +274320,169.49,75.351 +274321,174.41,73.567 +274322,172.4,74.124 +274323,170.31,74.695 +274324,168.14,75.282 +274325,173.11,73.594 +274326,171.08,74.119 +274327,168.98,74.658 +274328,166.79,75.212 +274329,171.81,73.621 +274330,169.77,74.113 +274331,167.65,74.62 +274332,165.45,75.142 +274333,170.51,73.648 +274334,168.46,74.108 +274335,166.33,74.582 +274336,164.11,75.072 +274337,169.21,73.675 +274338,167.14,74.102 +274339,165,74.544 +274340,162.77,75.001 +274341,167.91,73.703 +274342,165.83,74.097 +274343,163.67,74.505 +274344,161.43,74.93 +274345,166.6,73.732 +274346,164.51,74.092 +274347,162.35,74.467 +274348,160.09,74.858 +274349,165.3,73.76 +274350,163.2,74.087 +274351,161.02,74.428 +274352,158.76,74.786 +274353,163.99,73.789 +274354,161.88,74.082 +274355,159.7,74.39 +274356,157.42,74.714 +274357,162.68,73.818 +274358,160.57,74.077 +274359,158.37,74.351 +274360,156.09,74.642 +274361,161.37,73.847 +274362,159.25,74.072 +274363,157.05,74.313 +274364,154.76,74.569 +274365,160.05,73.876 +274366,157.93,74.068 +274367,155.73,74.274 +274368,153.43,74.496 +274369,158.74,73.906 +274370,156.61,74.063 +274371,154.41,74.235 +274372,152.1,74.423 +274373,157.42,73.935 +274374,155.3,74.058 +274375,153.09,74.196 +274376,150.78,74.35 +274377,156.1,73.965 +274378,153.98,74.054 +274379,151.76,74.157 +274380,149.46,74.277 +274381,154.79,73.994 +274382,152.66,74.049 +274383,150.44,74.118 +274384,148.14,74.203 +274385,153.46,74.024 +274386,151.34,74.045 +274387,149.12,74.079 +274388,146.82,74.13 +274389,152.14,74.054 +274390,150.02,74.04 +274391,147.81,74.04 +274392,145.5,74.056 +274393,150.82,74.084 +274394,148.69,74.036 +274395,146.49,74.001 +274396,144.18,73.983 +274397,149.49,74.113 +274398,147.37,74.031 +274399,145.17,73.962 +274400,142.87,73.909 +274401,148.16,74.143 +274402,146.05,74.026 +274403,143.85,73.923 +274404,141.55,73.836 +274405,146.83,74.172 +274406,144.73,74.022 +274407,142.53,73.885 +274408,140.24,73.763 +274409,145.5,74.202 +274410,143.4,74.017 +274411,141.22,73.846 +274412,138.94,73.689 +274413,144.17,74.231 +274414,142.08,74.013 +274415,139.9,73.807 +274416,137.63,73.616 +274417,142.84,74.26 +274418,140.76,74.008 +274419,138.59,73.768 +274420,136.32,73.543 +274421,141.5,74.289 +274422,139.43,74.003 +274423,137.27,73.729 +274424,135.02,73.47 +274425,140.17,74.317 +274426,138.1,73.998 +274427,135.96,73.691 +274428,133.72,73.398 +274429,138.83,74.345 +274430,136.78,73.993 +274431,134.65,73.652 +274432,132.42,73.325 +274433,137.49,74.373 +274434,135.45,73.988 +274435,133.33,73.614 +274436,131.12,73.253 +274437,136.14,74.401 +274438,134.13,73.983 +274439,132.02,73.576 +274440,129.82,73.181 +274441,134.8,74.428 +274442,132.8,73.978 +274443,130.71,73.537 +274444,128.53,73.11 +274445,133.46,74.455 +274446,131.47,73.972 +274447,129.4,73.499 +274448,127.23,73.039 +274449,132.11,74.482 +274450,130.14,73.967 +274451,128.09,73.461 +274452,125.94,72.968 +274453,130.76,74.508 +274454,128.81,73.961 +274455,126.78,73.424 +274456,124.65,72.897 +274457,129.41,74.534 +274458,127.48,73.955 +274459,125.47,73.386 +274460,123.36,72.827 +274461,128.06,74.559 +274462,126.15,73.949 +274463,124.16,73.348 +274464,122.08,72.758 +274465,126.71,74.584 +274466,124.82,73.943 +274467,122.85,73.311 +274468,120.79,72.689 +274469,125.36,74.608 +274470,123.49,73.937 +274471,121.54,73.274 +274472,119.51,72.62 +274473,124,74.631 +274474,122.16,73.931 +274475,120.24,73.237 +274476,118.22,72.552 +274477,122.64,74.654 +274478,120.83,73.924 +274479,118.93,73.2 +274480,116.94,72.485 +274481,121.29,74.677 +274482,119.49,73.917 +274483,117.62,73.163 +274484,115.67,72.418 +274485,119.93,74.699 +274486,118.16,73.91 +274487,116.32,73.127 +274488,114.39,72.352 +274489,118.57,74.72 +274490,116.83,73.903 +274491,115.01,73.091 +274492,113.11,72.286 +274493,117.2,74.741 +274494,115.49,73.895 +274495,113.71,73.055 +274496,111.84,72.221 +274497,115.84,74.76 +274498,114.16,73.888 +274499,112.4,73.019 +274500,110.56,72.157 +274501,114.48,74.78 +274502,112.82,73.88 +274503,111.1,72.984 +274504,109.29,72.093 +274505,113.11,74.798 +274506,111.49,73.872 +274507,109.8,72.948 +274508,108.02,72.031 +274509,111.74,74.816 +274510,110.15,73.863 +274511,108.49,72.913 +274512,106.75,71.968 +274513,110.37,74.833 +274514,108.82,73.855 +274515,107.19,72.879 +274516,105.49,71.907 +274517,109,74.849 +274518,107.48,73.846 +274519,105.89,72.844 +274520,104.22,71.847 +274521,107.63,74.864 +274522,106.14,73.836 +274523,104.59,72.81 +274524,102.96,71.787 +274525,106.26,74.879 +274526,104.81,73.827 +274527,103.29,72.776 +274528,101.69,71.728 +274529,104.89,74.892 +274530,103.47,73.817 +274531,101.99,72.742 +274532,100.43,71.67 +274533,103.51,74.905 +274534,102.13,73.807 +274535,100.68,72.709 +274536,99.168,71.613 +274537,102.14,74.917 +274538,100.79,73.797 +274539,99.385,72.676 +274540,97.908,71.557 +274541,100.76,74.928 +274542,99.455,73.786 +274543,98.086,72.643 +274544,96.649,71.501 +274545,99.385,74.938 +274546,98.116,73.775 +274547,96.786,72.611 +274548,95.391,71.447 +274549,98.006,74.947 +274550,96.777,73.764 +274551,95.488,72.579 +274552,94.134,71.394 +274553,96.626,74.956 +274554,95.437,73.752 +274555,94.189,72.547 +274556,92.878,71.341 +274557,95.246,74.963 +274558,94.097,73.74 +274559,92.891,72.515 +274560,91.624,71.29 +274561,93.864,74.969 +274562,92.757,73.728 +274563,91.594,72.484 +274564,90.37,71.239 +274565,92.482,74.975 +274566,91.416,73.716 +274567,90.296,72.454 +274568,89.117,71.19 +274569,91.099,74.979 +274570,90.076,73.703 +274571,88.999,72.423 +274572,87.865,71.141 +274573,89.714,74.982 +274574,88.735,73.69 +274575,87.702,72.393 +274576,86.614,71.094 +274577,88.329,74.984 +274578,87.393,73.676 +274579,86.406,72.363 +274580,85.364,71.048 +274581,86.944,74.986 +274582,86.052,73.662 +274583,85.11,72.334 +274584,84.114,71.003 +274585,85.557,74.986 +274586,84.71,73.648 +274587,83.814,72.305 +274588,82.865,70.958 +274589,84.17,74.985 +274590,83.368,73.633 +274591,82.518,72.276 +274592,81.617,70.915 +274593,82.782,74.983 +274594,82.025,73.618 +274595,81.222,72.248 +274596,80.37,70.874 +274597,81.393,74.98 +274598,80.683,73.603 +274599,79.927,72.22 +274600,79.123,70.833 +274601,80.004,74.975 +274602,79.34,73.587 +274603,78.632,72.192 +274604,77.877,70.793 +274605,78.614,74.97 +274606,77.998,73.571 +274607,77.337,72.165 +274608,76.632,70.755 +274609,77.224,74.964 +274610,76.655,73.554 +274611,76.043,72.138 +274612,75.387,70.717 +274613,75.833,74.956 +274614,75.311,73.538 +274615,74.748,72.112 +274616,74.142,70.681 +274617,74.442,74.948 +274618,73.968,73.52 +274619,73.454,72.086 +274620,72.898,70.646 +274621,73.05,74.938 +274622,72.625,73.503 +274623,72.16,72.06 +274624,71.654,70.613 +274625,71.658,74.927 +274626,71.281,73.485 +274627,70.866,72.035 +274628,70.411,70.58 +274629,70.265,74.915 +274630,69.937,73.466 +274631,69.572,72.01 +274632,69.168,70.549 +274633,68.872,74.901 +274634,68.594,73.447 +274635,68.278,71.986 +274636,67.925,70.518 +274637,67.479,74.887 +274638,67.25,73.428 +274639,66.985,71.962 +274640,66.683,70.489 +274641,66.085,74.871 +274642,65.906,73.409 +274643,65.691,71.938 +274644,65.44,70.462 +274645,64.692,74.855 +274646,64.562,73.389 +274647,64.398,71.915 +274648,64.198,70.435 +274649,63.298,74.837 +274650,63.218,73.368 +274651,63.105,71.892 +274652,62.956,70.41 +274653,61.903,74.818 +274654,61.874,73.348 +274655,61.811,71.87 +274656,61.714,70.386 +274657,60.509,74.797 +274658,60.53,73.327 +274659,60.518,71.848 +274660,60.472,70.363 +274661,59.115,74.776 +274662,59.186,73.305 +274663,59.225,71.826 +274664,59.23,70.341 +274665,57.72,74.753 +274666,57.842,73.283 +274667,57.931,71.805 +274668,57.988,70.321 +274669,56.326,74.73 +274670,56.498,73.261 +274671,56.638,71.784 +274672,56.746,70.301 +274673,54.931,74.705 +274674,55.154,73.238 +274675,55.345,71.764 +274676,55.504,70.283 +274677,53.537,74.679 +274678,53.81,73.215 +274679,54.052,71.744 +274680,54.262,70.266 +274681,52.142,74.651 +274682,52.466,73.191 +274683,52.758,71.724 +274684,53.019,70.251 +274685,50.748,74.623 +274686,51.122,73.167 +274687,51.465,71.705 +274688,51.777,70.236 +274689,49.354,74.593 +274690,49.778,73.143 +274691,50.171,71.686 +274692,50.534,70.223 +274693,47.96,74.562 +274694,48.435,73.118 +274695,48.878,71.668 +274696,49.29,70.211 +274697,46.567,74.531 +274698,47.091,73.093 +274699,47.584,71.649 +274700,48.047,70.2 +274701,45.173,74.497 +274702,45.748,73.068 +274703,46.291,71.632 +274704,46.803,70.191 +274705,43.78,74.463 +274706,44.405,73.042 +274707,44.997,71.615 +274708,45.558,70.182 +274709,42.388,74.428 +274710,43.061,73.016 +274711,43.703,71.598 +274712,44.313,70.175 +274713,40.995,74.391 +274714,41.718,72.989 +274715,42.409,71.581 +274716,43.068,70.169 +274717,39.604,74.354 +274718,40.376,72.962 +274719,41.114,71.565 +274720,41.822,70.164 +274721,38.212,74.315 +274722,39.033,72.935 +274723,39.82,71.549 +274724,40.575,70.16 +274725,36.821,74.275 +274726,37.691,72.907 +274727,38.525,71.534 +274728,39.328,70.158 +274729,35.431,74.234 +274730,36.348,72.879 +274731,37.231,71.519 +274732,38.08,70.156 +274733,34.041,74.192 +274734,35.006,72.85 +274735,35.936,71.504 +274736,36.832,70.156 +274737,32.652,74.149 +274738,33.665,72.822 +274739,34.64,71.49 +274740,35.582,70.156 +274741,31.264,74.105 +274742,32.323,72.792 +274743,33.345,71.476 +274744,34.332,70.158 +274745,29.876,74.06 +274746,30.982,72.763 +274747,32.049,71.463 +274748,33.081,70.161 +274749,28.489,74.014 +274750,29.641,72.733 +274751,30.753,71.45 +274752,31.83,70.165 +274753,27.103,73.966 +274754,28.3,72.703 +274755,29.457,71.437 +274756,30.577,70.17 +274757,25.717,73.918 +274758,26.96,72.672 +274759,28.161,71.424 +274760,29.324,70.176 +274761,24.333,73.869 +274762,25.62,72.641 +274763,26.864,71.412 +274764,28.07,70.183 +274765,22.949,73.819 +274766,24.28,72.61 +274767,25.567,71.4 +274768,26.814,70.191 +274769,21.566,73.767 +274770,22.94,72.578 +274771,24.269,71.389 +274772,25.558,70.2 +274773,20.184,73.715 +274774,21.601,72.546 +274775,22.972,71.378 +274776,24.301,70.21 +274777,18.803,73.662 +274778,20.262,72.514 +274779,21.674,71.367 +274780,23.043,70.22 +274781,17.423,73.608 +274782,18.924,72.482 +274783,20.375,71.356 +274784,21.783,70.232 +274785,16.044,73.553 +274786,17.586,72.449 +274787,19.077,71.346 +274788,20.523,70.245 +274789,14.667,73.497 +274790,16.248,72.416 +274791,17.778,71.336 +274792,19.261,70.259 +274793,13.29,73.44 +274794,14.911,72.382 +274795,16.478,71.326 +274796,17.998,70.273 +274797,11.914,73.382 +274798,13.574,72.349 +274799,15.178,71.317 +274800,16.734,70.288 +274801,10.54,73.324 +274802,12.238,72.315 +274803,13.878,71.308 +274804,15.469,70.305 +274805,9.167,73.265 +274806,10.902,72.28 +274807,12.578,71.299 +274808,14.202,70.322 +274809,7.7951,73.205 +274810,9.5661,72.246 +274811,11.277,71.29 +274812,12.935,70.339 +274813,6.4244,73.144 +274814,8.2309,72.211 +274815,9.9752,71.282 +274816,11.666,70.358 +274817,5.0551,73.082 +274818,6.8962,72.176 +274819,8.6734,71.274 +274820,10.395,70.377 +274821,3.6871,73.02 +274822,5.5619,72.141 +274823,7.3712,71.266 +274824,9.1238,70.397 +274825,2.3205,72.957 +274826,4.2281,72.105 +274827,6.0685,71.259 +274828,7.8508,70.418 +274829,0.9552,72.893 +274830,2.8948,72.069 +274831,4.7653,71.251 +274832,6.5764,70.439 +274833,359.59,72.828 +274834,1.5619,72.033 +274835,3.4618,71.244 +274836,5.3006,70.461 +274837,358.23,72.763 +274838,0.2296,71.997 +274839,2.1577,71.237 +274840,4.0234,70.484 +274841,356.87,72.698 +274842,358.9,71.961 +274843,0.8532,71.231 +274844,2.7447,70.507 +274845,355.51,72.631 +274846,357.57,71.924 +274847,359.55,71.224 +274848,1.4646,70.531 +274849,354.15,72.564 +274850,356.24,71.887 +274851,358.24,71.218 +274852,0.183,70.555 +274853,352.79,72.497 +274854,354.91,71.85 +274855,356.94,71.212 +274856,358.9,70.58 +274857,351.44,72.429 +274858,353.58,71.813 +274859,355.63,71.206 +274860,357.62,70.606 +274861,350.09,72.36 +274862,352.25,71.776 +274863,354.32,71.2 +274864,356.33,70.632 +274865,348.73,72.291 +274866,350.92,71.738 +274867,353.02,71.194 +274868,355.04,70.658 +274869,347.38,72.222 +274870,349.59,71.701 +274871,351.71,71.189 +274872,353.75,70.685 +274873,346.04,72.152 +274874,348.26,71.663 +274875,350.4,71.183 +274876,352.46,70.712 +274877,344.69,72.081 +274878,346.93,71.625 +274879,349.09,71.178 +274880,351.17,70.74 +274881,343.34,72.011 +274882,345.61,71.587 +274883,347.78,71.173 +274884,349.88,70.767 +274885,342,71.94 +274886,344.28,71.549 +274887,346.47,71.168 +274888,348.58,70.796 +274889,340.66,71.868 +274890,342.96,71.511 +274891,345.16,71.163 +274892,347.28,70.824 +274893,339.32,71.796 +274894,341.63,71.472 +274895,343.85,71.158 +274896,345.98,70.853 +274897,337.98,71.724 +274898,340.31,71.434 +274899,342.54,71.153 +274900,344.68,70.882 +274901,336.65,71.652 +274902,338.98,71.395 +274903,341.23,71.148 +274904,343.38,70.911 +274905,335.31,71.58 +274906,337.66,71.357 +274907,339.91,71.144 +274908,342.08,70.94 +274909,333.98,71.507 +274910,336.34,71.318 +274911,338.6,71.139 +274912,340.77,70.97 +274913,332.65,71.434 +274914,335.02,71.279 +274915,337.29,71.135 +274916,339.47,71 +274917,331.32,71.361 +274918,333.7,71.24 +274919,335.97,71.13 +274920,338.16,71.029 +274921,329.99,71.288 +274922,332.38,71.202 +274923,334.66,71.126 +274924,336.85,71.059 +274925,328.66,71.215 +274926,331.06,71.163 +274927,333.34,71.121 +274928,335.53,71.089 +274929,327.34,71.141 +274930,329.74,71.124 +274931,332.02,71.117 +274932,334.22,71.119 +274933,326.02,71.068 +274934,328.42,71.085 +274935,330.71,71.112 +274936,332.91,71.149 +274937,324.7,70.995 +274938,327.1,71.046 +274939,329.39,71.108 +274940,331.59,71.179 +274941,323.38,70.921 +274942,325.78,71.007 +274943,328.07,71.103 +274944,330.27,71.209 +274945,322.06,70.848 +274946,324.46,70.968 +274947,326.75,71.099 +274948,328.95,71.238 +274949,320.75,70.775 +274950,323.15,70.93 +274951,325.44,71.094 +274952,327.63,71.268 +274953,319.44,70.702 +274954,321.83,70.891 +274955,324.12,71.09 +274956,326.3,71.297 +274957,318.13,70.629 +274958,320.52,70.852 +274959,322.8,71.085 +274960,324.98,71.326 +274961,316.82,70.556 +274962,319.2,70.814 +274963,321.48,71.08 +274964,323.65,71.355 +274965,315.51,70.483 +274966,317.89,70.775 +274967,320.15,71.076 +274968,322.32,71.384 +274969,314.2,70.411 +274970,316.57,70.736 +274971,318.83,71.071 +274972,320.99,71.413 +274973,312.9,70.339 +274974,315.26,70.698 +274975,317.51,71.066 +274976,319.66,71.441 +274977,311.6,70.267 +274978,313.95,70.66 +274979,316.19,71.061 +274980,318.33,71.469 +274981,310.3,70.195 +274982,312.64,70.621 +274983,314.86,71.056 +274984,316.99,71.496 +274985,309,70.124 +274986,311.33,70.583 +274987,313.54,71.05 +274988,315.66,71.524 +274989,307.71,70.053 +274990,310.02,70.545 +274991,312.22,71.045 +274992,314.32,71.551 +274993,306.41,69.983 +274994,308.71,70.507 +274995,310.89,71.039 +274996,312.98,71.577 +274997,305.12,69.913 +274998,307.4,70.47 +274999,309.57,71.034 +275000,311.64,71.603 +275001,303.83,69.843 +275002,306.09,70.432 +275003,308.24,71.028 +275004,310.29,71.628 +275005,302.54,69.774 +275006,304.78,70.394 +275007,306.91,71.022 +275008,308.95,71.653 +275009,301.25,69.705 +275010,303.47,70.357 +275011,305.59,71.016 +275012,307.6,71.678 +275013,299.96,69.637 +275014,302.17,70.32 +275015,304.26,71.009 +275016,306.25,71.702 +275017,298.68,69.569 +275018,300.86,70.283 +275019,302.93,71.003 +275020,304.9,71.725 +275021,297.4,69.502 +275022,299.55,70.246 +275023,301.6,70.996 +275024,303.55,71.748 +275025,296.12,69.435 +275026,298.25,70.21 +275027,300.27,70.989 +275028,302.2,71.77 +275029,294.84,69.369 +275030,296.94,70.173 +275031,298.94,70.982 +275032,300.85,71.792 +275033,293.56,69.304 +275034,295.64,70.137 +275035,297.61,70.974 +275036,299.49,71.813 +275037,292.29,69.239 +275038,294.34,70.101 +275039,296.28,70.967 +275040,298.14,71.833 +275041,291.01,69.175 +275042,293.03,70.066 +275043,294.95,70.959 +275044,296.78,71.853 +275045,289.74,69.112 +275046,291.73,70.03 +275047,293.62,70.951 +275048,295.42,71.871 +275049,288.47,69.05 +275050,290.43,69.995 +275051,292.29,70.942 +275052,294.06,71.889 +275053,287.2,68.988 +275054,289.13,69.96 +275055,290.96,70.934 +275056,292.7,71.907 +275057,285.93,68.927 +275058,287.83,69.925 +275059,289.62,70.925 +275060,291.33,71.923 +275061,284.66,68.867 +275062,286.53,69.891 +275063,288.29,70.916 +275064,289.97,71.939 +275065,283.4,68.807 +275066,285.23,69.857 +275067,286.96,70.906 +275068,288.6,71.954 +275069,282.14,68.749 +275070,283.93,69.823 +275071,285.62,70.897 +275072,287.23,71.968 +275073,280.87,68.691 +275074,282.63,69.789 +275075,284.29,70.887 +275076,285.87,71.981 +275077,279.61,68.634 +275078,281.33,69.756 +275079,282.95,70.876 +275080,284.5,71.993 +275081,278.35,68.578 +275082,280.03,69.723 +275083,281.62,70.866 +275084,283.12,72.005 +275085,277.09,68.523 +275086,278.73,69.69 +275087,280.28,70.855 +275088,281.75,72.015 +275089,275.84,68.469 +275090,277.43,69.658 +275091,278.95,70.843 +275092,280.38,72.025 +275093,274.58,68.416 +275094,276.14,69.626 +275095,277.61,70.832 +275096,279,72.033 +275097,273.33,68.364 +275098,274.84,69.594 +275099,276.27,70.82 +275100,277.63,72.041 +275101,272.07,68.313 +275102,273.54,69.562 +275103,274.93,70.808 +275104,276.25,72.047 +275105,270.82,68.263 +275106,272.25,69.531 +275107,273.6,70.795 +275108,274.87,72.053 +275109,269.57,68.214 +275110,270.95,69.501 +275111,272.26,70.782 +275112,273.49,72.058 +275113,268.32,68.166 +275114,269.66,69.47 +275115,270.92,70.769 +275116,272.11,72.061 +275117,267.07,68.119 +275118,268.36,69.44 +275119,269.58,70.755 +275120,270.73,72.064 +275121,265.82,68.073 +275122,267.07,69.41 +275123,268.24,70.742 +275124,269.35,72.065 +275125,264.58,68.028 +275126,265.78,69.381 +275127,266.9,70.727 +275128,267.97,72.066 +275129,263.33,67.984 +275130,264.48,69.352 +275131,265.57,70.713 +275132,266.59,72.065 +275133,262.08,67.942 +275134,263.19,69.323 +275135,264.23,70.697 +275136,265.2,72.063 +275137,260.84,67.9 +275138,261.89,69.295 +275139,262.89,70.682 +275140,263.82,72.06 +275141,259.6,67.86 +275142,260.6,69.267 +275143,261.55,70.666 +275144,262.43,72.056 +275145,258.35,67.821 +275146,259.31,69.239 +275147,260.2,70.65 +275148,261.04,72.051 +275149,257.11,67.783 +275150,258.02,69.212 +275151,258.86,70.634 +275152,259.66,72.045 +275153,255.87,67.746 +275154,256.72,69.185 +275155,257.52,70.617 +275156,258.27,72.038 +275157,254.63,67.71 +275158,255.43,69.159 +275159,256.18,70.599 +275160,256.88,72.029 +275161,253.39,67.675 +275162,254.14,69.133 +275163,254.84,70.582 +275164,255.49,72.02 +275165,252.15,67.642 +275166,252.85,69.107 +275167,253.5,70.563 +275168,254.1,72.009 +275169,250.91,67.61 +275170,251.56,69.082 +275171,252.16,70.545 +275172,252.71,71.997 +275173,249.67,67.579 +275174,250.27,69.057 +275175,250.82,70.526 +275176,251.32,71.984 +275177,248.43,67.549 +275178,248.98,69.033 +275179,249.47,70.507 +275180,249.93,71.97 +275181,247.19,67.52 +275182,247.68,69.009 +275183,248.13,70.487 +275184,248.54,71.954 +275185,245.95,67.493 +275186,246.39,68.985 +275187,246.79,70.467 +275188,247.14,71.937 +275189,244.72,67.467 +275190,245.1,68.962 +275191,245.45,70.446 +275192,245.75,71.92 +275193,243.48,67.442 +275194,243.81,68.939 +275195,244.11,70.425 +275196,244.36,71.901 +275197,242.24,67.418 +275198,242.52,68.916 +275199,242.76,70.404 +275200,242.96,71.88 +275201,241.01,67.396 +275202,241.23,68.894 +275203,241.42,70.382 +275204,241.57,71.859 +275205,239.77,67.374 +275206,239.94,68.872 +275207,240.08,70.36 +275208,240.18,71.836 +275209,238.53,67.354 +275210,238.65,68.851 +275211,238.73,70.338 +275212,238.78,71.813 +275213,237.3,67.336 +275214,237.36,68.83 +275215,237.39,70.315 +275216,237.39,71.788 +275217,236.06,67.318 +275218,236.07,68.81 +275219,236.05,70.291 +275220,235.99,71.762 +275221,234.82,67.302 +275222,234.78,68.79 +275223,234.71,70.268 +275224,234.6,71.734 +275225,233.59,67.286 +275226,233.49,68.77 +275227,233.36,70.244 +275228,233.21,71.706 +275229,232.35,67.272 +275230,232.2,68.751 +275231,232.02,70.219 +275232,231.81,71.676 +275233,231.11,67.26 +275234,230.91,68.732 +275235,230.68,70.194 +275236,230.42,71.645 +275237,229.87,67.248 +275238,229.62,68.713 +275239,229.34,70.169 +275240,229.02,71.613 +275241,228.64,67.238 +275242,228.33,68.695 +275243,227.99,70.143 +275244,227.63,71.58 +275245,227.4,67.229 +275246,227.04,68.677 +275247,226.65,70.117 +275248,226.23,71.545 +275249,226.16,67.221 +275250,225.75,68.66 +275251,225.31,70.09 +275252,224.84,71.51 +275253,224.92,67.214 +275254,224.46,68.643 +275255,223.97,70.063 +275256,223.45,71.473 +275257,223.68,67.208 +275258,223.17,68.626 +275259,222.63,70.036 +275260,222.05,71.435 +275261,222.44,67.204 +275262,221.88,68.61 +275263,221.28,70.008 +275264,220.66,71.396 +275265,221.2,67.2 +275266,220.59,68.594 +275267,219.94,69.98 +275268,219.27,71.356 +275269,219.96,67.198 +275270,219.3,68.579 +275271,218.6,69.952 +275272,217.88,71.315 +275273,218.72,67.197 +275274,218.01,68.564 +275275,217.26,69.923 +275276,216.48,71.273 +275277,217.48,67.197 +275278,216.71,68.549 +275279,215.92,69.894 +275280,215.09,71.229 +275281,216.24,67.198 +275282,215.42,68.535 +275283,214.58,69.864 +275284,213.7,71.185 +275285,215,67.2 +275286,214.13,68.521 +275287,213.24,69.834 +275288,212.31,71.139 +275289,213.75,67.204 +275290,212.84,68.507 +275291,211.9,69.804 +275292,210.92,71.093 +275293,212.51,67.208 +275294,211.55,68.494 +275295,210.55,69.773 +275296,209.53,71.045 +275297,211.26,67.213 +275298,210.25,68.481 +275299,209.21,69.742 +275300,208.14,70.996 +275301,210.02,67.22 +275302,208.96,68.468 +275303,207.87,69.711 +275304,206.75,70.946 +275305,208.77,67.227 +275306,207.67,68.456 +275307,206.54,69.679 +275308,205.37,70.895 +275309,207.52,67.236 +275310,206.38,68.444 +275311,205.2,69.647 +275312,203.98,70.844 +275313,206.27,67.245 +275314,205.08,68.432 +275315,203.86,69.615 +275316,202.59,70.791 +275317,205.02,67.255 +275318,203.79,68.421 +275319,202.52,69.582 +275320,201.21,70.737 +275321,203.77,67.267 +275322,202.49,68.41 +275323,201.18,69.549 +275324,199.83,70.683 +275325,202.52,67.279 +275326,201.2,68.399 +275327,199.84,69.515 +275328,198.44,70.627 +275329,201.27,67.292 +275330,199.91,68.389 +275331,198.5,69.482 +275332,197.06,70.57 +275333,200.02,67.306 +275334,198.61,68.378 +275335,197.17,69.448 +275336,195.68,70.513 +275337,198.76,67.321 +275338,197.32,68.369 +275339,195.83,69.414 +275340,194.3,70.455 +275341,197.5,67.337 +275342,196.02,68.359 +275343,194.49,69.379 +275344,192.92,70.395 +275345,196.25,67.354 +275346,194.72,68.35 +275347,193.16,69.344 +275348,191.54,70.335 +275349,194.99,67.371 +275350,193.43,68.341 +275351,191.82,69.309 +275352,190.17,70.275 +275353,193.73,67.389 +275354,192.13,68.332 +275355,190.49,69.274 +275356,188.79,70.213 +275357,192.47,67.408 +275358,190.83,68.323 +275359,189.15,69.238 +275360,187.41,70.15 +275361,191.21,67.428 +275362,189.54,68.315 +275363,187.82,69.202 +275364,186.04,70.087 +275365,189.94,67.448 +275366,188.24,68.307 +275367,186.48,69.166 +275368,184.67,70.023 +275369,188.68,67.469 +275370,186.94,68.299 +275371,185.15,69.129 +275372,183.3,69.959 +275373,187.41,67.491 +275374,185.64,68.292 +275375,183.81,69.093 +275376,181.93,69.893 +275377,186.14,67.513 +275378,184.34,68.284 +275379,182.48,69.056 +275380,180.56,69.827 +275381,184.87,67.536 +275382,183.04,68.277 +275383,181.15,69.019 +275384,179.19,69.76 +275385,183.6,67.56 +275386,181.74,68.27 +275387,179.82,68.981 +275388,177.83,69.693 +275389,182.33,67.584 +275390,180.44,68.263 +275391,178.49,68.944 +275392,176.46,69.625 +275393,181.06,67.609 +275394,179.14,68.256 +275395,177.16,68.906 +275396,175.1,69.557 +275397,179.78,67.634 +275398,177.84,68.25 +275399,175.83,68.868 +275400,173.74,69.488 +275401,178.51,67.66 +275402,176.53,68.244 +275403,174.5,68.83 +275404,172.38,69.418 +275405,177.23,67.686 +275406,175.23,68.238 +275407,173.17,68.792 +275408,171.02,69.348 +275409,175.95,67.713 +275410,173.93,68.232 +275411,171.84,68.753 +275412,169.67,69.277 +275413,174.67,67.74 +275414,172.62,68.226 +275415,170.51,68.715 +275416,168.31,69.206 +275417,173.39,67.767 +275418,171.32,68.22 +275419,169.18,68.676 +275420,166.96,69.135 +275421,172.1,67.795 +275422,170.02,68.214 +275423,167.86,68.637 +275424,165.61,69.063 +275425,170.81,67.823 +275426,168.71,68.209 +275427,166.53,68.598 +275428,164.26,68.99 +275429,169.53,67.852 +275430,167.4,68.203 +275431,165.2,68.559 +275432,162.91,68.918 +275433,168.24,67.88 +275434,166.1,68.198 +275435,163.88,68.52 +275436,161.56,68.845 +275437,166.95,67.909 +275438,164.79,68.193 +275439,162.55,68.48 +275440,160.22,68.771 +275441,165.65,67.938 +275442,163.48,68.188 +275443,161.23,68.441 +275444,158.87,68.698 +275445,164.36,67.968 +275446,162.18,68.183 +275447,159.9,68.401 +275448,157.53,68.624 +275449,163.06,67.997 +275450,160.87,68.178 +275451,158.58,68.362 +275452,156.19,68.55 +275453,161.77,68.027 +275454,159.56,68.173 +275455,157.26,68.322 +275456,154.86,68.476 +275457,160.47,68.057 +275458,158.25,68.168 +275459,155.94,68.282 +275460,153.52,68.401 +275461,159.17,68.087 +275462,156.94,68.163 +275463,154.62,68.243 +275464,152.19,68.327 +275465,157.86,68.117 +275466,155.63,68.158 +275467,153.3,68.203 +275468,150.85,68.252 +275469,156.56,68.147 +275470,154.32,68.153 +275471,151.98,68.163 +275472,149.52,68.177 +275473,155.25,68.177 +275474,153,68.148 +275475,150.66,68.123 +275476,148.19,68.102 +275477,153.95,68.206 +275478,151.69,68.143 +275479,149.34,68.083 +275480,146.87,68.028 +275481,152.64,68.236 +275482,150.38,68.138 +275483,148.02,68.043 +275484,145.54,67.953 +275485,151.33,68.266 +275486,149.07,68.133 +275487,146.7,68.004 +275488,144.22,67.878 +275489,150.01,68.296 +275490,147.75,68.128 +275491,145.38,67.964 +275492,142.9,67.803 +275493,148.7,68.325 +275494,146.44,68.123 +275495,144.07,67.924 +275496,141.58,67.729 +275497,147.38,68.355 +275498,145.12,68.118 +275499,142.75,67.884 +275500,140.26,67.654 +275501,146.06,68.384 +275502,143.8,68.113 +275503,141.44,67.844 +275504,138.95,67.58 +275505,144.75,68.413 +275506,142.49,68.107 +275507,140.12,67.805 +275508,137.63,67.505 +275509,143.42,68.441 +275510,141.17,68.102 +275511,138.81,67.765 +275512,136.32,67.431 +275513,142.1,68.47 +275514,139.85,68.097 +275515,137.5,67.726 +275516,135.01,67.358 +275517,140.78,68.498 +275518,138.54,68.091 +275519,136.18,67.686 +275520,133.7,67.284 +275521,139.45,68.525 +275522,137.22,68.085 +275523,134.87,67.647 +275524,132.4,67.211 +275525,138.12,68.553 +275526,135.9,68.08 +275527,133.56,67.608 +275528,131.1,67.138 +275529,136.79,68.58 +275530,134.58,68.074 +275531,132.25,67.568 +275532,129.79,67.065 +275533,135.46,68.606 +275534,133.26,68.068 +275535,130.94,67.529 +275536,128.49,66.993 +275537,134.13,68.633 +275538,131.94,68.061 +275539,129.63,67.491 +275540,127.2,66.921 +275541,132.79,68.658 +275542,130.61,68.055 +275543,128.32,67.452 +275544,125.9,66.85 +275545,131.46,68.683 +275546,129.29,68.048 +275547,127.01,67.413 +275548,124.6,66.779 +275549,130.12,68.708 +275550,127.97,68.042 +275551,125.71,67.375 +275552,123.31,66.708 +275553,128.78,68.732 +275554,126.65,68.035 +275555,124.4,67.336 +275556,122.02,66.638 +275557,127.44,68.756 +275558,125.32,68.028 +275559,123.09,67.298 +275560,120.73,66.569 +275561,126.09,68.779 +275562,124,68.02 +275563,121.79,67.26 +275564,119.45,66.5 +275565,124.75,68.801 +275566,122.67,68.013 +275567,120.48,67.223 +275568,118.16,66.431 +275569,123.4,68.823 +275570,121.35,68.005 +275571,119.18,67.185 +275572,116.88,66.363 +275573,122.06,68.844 +275574,120.02,67.997 +275575,117.87,67.148 +275576,115.6,66.296 +275577,120.71,68.864 +275578,118.69,67.989 +275579,116.57,67.111 +275580,114.32,66.23 +275581,119.36,68.884 +275582,117.37,67.981 +275583,115.27,67.074 +275584,113.04,66.164 +275585,118,68.902 +275586,116.04,67.972 +275587,113.97,67.037 +275588,111.76,66.099 +275589,116.65,68.921 +275590,114.71,67.963 +275591,112.66,67.001 +275592,110.49,66.035 +275593,115.29,68.938 +275594,113.38,67.954 +275595,111.36,66.964 +275596,109.22,65.971 +275597,113.94,68.955 +275598,112.05,67.944 +275599,110.06,66.928 +275600,107.94,65.908 +275601,112.58,68.97 +275602,110.73,67.935 +275603,108.76,66.893 +275604,106.68,65.846 +275605,111.22,68.985 +275606,109.4,67.924 +275607,107.46,66.857 +275608,105.41,65.785 +275609,109.86,68.999 +275610,108.06,67.914 +275611,106.16,66.822 +275612,104.14,65.724 +275613,108.5,69.012 +275614,106.73,67.904 +275615,104.86,66.787 +275616,102.88,65.665 +275617,107.13,69.025 +275618,105.4,67.893 +275619,103.57,66.753 +275620,101.61,65.606 +275621,105.77,69.036 +275622,104.07,67.881 +275623,102.27,66.718 +275624,100.35,65.548 +275625,104.4,69.046 +275626,102.74,67.87 +275627,100.97,66.684 +275628,99.092,65.492 +275629,103.04,69.056 +275630,101.41,67.858 +275631,99.676,66.651 +275632,97.834,65.436 +275633,101.67,69.064 +275634,100.07,67.846 +275635,98.38,66.617 +275636,96.576,65.381 +275637,100.3,69.072 +275638,98.739,67.833 +275639,97.084,66.584 +275640,95.321,65.327 +275641,98.926,69.078 +275642,97.405,67.82 +275643,95.789,66.551 +275644,94.066,65.274 +275645,97.554,69.084 +275646,96.071,67.807 +275647,94.495,66.519 +275648,92.813,65.222 +275649,96.181,69.088 +275650,94.736,67.793 +275651,93.201,66.487 +275652,91.562,65.171 +275653,94.806,69.092 +275654,93.401,67.779 +275655,91.907,66.455 +275656,90.311,65.121 +275657,93.43,69.094 +275658,92.066,67.765 +275659,90.613,66.424 +275660,89.062,65.072 +275661,92.054,69.096 +275662,90.73,67.75 +275663,89.32,66.393 +275664,87.814,65.025 +275665,90.676,69.096 +275666,89.394,67.735 +275667,88.028,66.362 +275668,86.567,64.978 +275669,89.297,69.095 +275670,88.058,67.72 +275671,86.736,66.332 +275672,85.321,64.932 +275673,87.917,69.093 +275674,86.721,67.704 +275675,85.444,66.302 +275676,84.077,64.888 +275677,86.537,69.09 +275678,85.384,67.688 +275679,84.152,66.272 +275680,82.833,64.845 +275681,85.155,69.085 +275682,84.046,67.671 +275683,82.861,66.243 +275684,81.591,64.802 +275685,83.772,69.08 +275686,82.709,67.654 +275687,81.57,66.214 +275688,80.349,64.761 +275689,82.389,69.073 +275690,81.371,67.637 +275691,80.28,66.186 +275692,79.108,64.722 +275693,81.005,69.066 +275694,80.032,67.619 +275695,78.99,66.158 +275696,77.868,64.683 +275697,79.62,69.057 +275698,78.694,67.601 +275699,77.7,66.13 +275700,76.63,64.646 +275701,78.234,69.047 +275702,77.355,67.582 +275703,76.41,66.103 +275704,75.391,64.609 +275705,76.847,69.035 +275706,76.016,67.563 +275707,75.121,66.076 +275708,74.154,64.574 +275709,75.46,69.023 +275710,74.677,67.544 +275711,73.832,66.049 +275712,72.917,64.54 +275713,74.072,69.009 +275714,73.338,67.524 +275715,72.543,66.023 +275716,71.681,64.508 +275717,72.683,68.995 +275718,71.998,67.504 +275719,71.254,65.997 +275720,70.446,64.476 +275721,71.294,68.978 +275722,70.658,67.483 +275723,69.966,65.972 +275724,69.211,64.446 +275725,69.904,68.961 +275726,69.318,67.462 +275727,68.677,65.947 +275728,67.977,64.417 +275729,68.514,68.943 +275730,67.978,67.44 +275731,67.389,65.922 +275732,66.743,64.389 +275733,67.123,68.923 +275734,66.638,67.419 +275735,66.102,65.898 +275736,65.51,64.363 +275737,65.732,68.902 +275738,65.298,67.396 +275739,64.814,65.874 +275740,64.277,64.338 +275741,64.34,68.88 +275742,63.957,67.373 +275743,63.526,65.851 +275744,63.044,64.314 +275745,62.948,68.857 +275746,62.616,67.35 +275747,62.239,65.828 +275748,61.812,64.291 +275749,61.556,68.832 +275750,61.276,67.327 +275751,60.952,65.805 +275752,60.58,64.269 +275753,60.163,68.806 +275754,59.935,67.303 +275755,59.664,65.783 +275756,59.349,64.249 +275757,58.77,68.779 +275758,58.594,67.278 +275759,58.377,65.762 +275760,58.117,64.23 +275761,57.376,68.751 +275762,57.253,67.253 +275763,57.09,65.74 +275764,56.886,64.212 +275765,55.983,68.721 +275766,55.912,67.228 +275767,55.803,65.719 +275768,55.655,64.196 +275769,54.589,68.691 +275770,54.571,67.203 +275771,54.516,65.699 +275772,54.423,64.18 +275773,53.195,68.659 +275774,53.23,67.176 +275775,53.23,65.679 +275776,53.192,64.166 +275777,51.801,68.625 +275778,51.889,67.15 +275779,51.943,65.659 +275780,51.961,64.153 +275781,50.407,68.591 +275782,50.548,67.123 +275783,50.656,65.639 +275784,50.73,64.142 +275785,49.013,68.556 +275786,49.207,67.096 +275787,49.369,65.62 +275788,49.498,64.131 +275789,47.619,68.519 +275790,47.866,67.068 +275791,48.082,65.602 +275792,48.267,64.122 +275793,46.225,68.481 +275794,46.525,67.04 +275795,46.795,65.584 +275796,47.035,64.114 +275797,44.832,68.442 +275798,45.184,67.011 +275799,45.508,65.566 +275800,45.803,64.107 +275801,43.438,68.401 +275802,43.844,66.982 +275803,44.221,65.548 +275804,44.57,64.101 +275805,42.044,68.36 +275806,42.503,66.953 +275807,42.934,65.531 +275808,43.338,64.097 +275809,40.651,68.317 +275810,41.162,66.923 +275811,41.647,65.515 +275812,42.105,64.094 +275813,39.258,68.274 +275814,39.822,66.893 +275815,40.36,65.498 +275816,40.871,64.091 +275817,37.865,68.229 +275818,38.482,66.862 +275819,39.072,65.483 +275820,39.637,64.09 +275821,36.472,68.183 +275822,37.142,66.831 +275823,37.785,65.467 +275824,38.403,64.091 +275825,35.08,68.135 +275826,35.802,66.8 +275827,36.497,65.452 +275828,37.168,64.092 +275829,33.688,68.087 +275830,34.462,66.768 +275831,35.209,65.437 +275832,35.932,64.094 +275833,32.297,68.038 +275834,33.122,66.736 +275835,33.921,65.422 +275836,34.696,64.098 +275837,30.906,67.987 +275838,31.783,66.704 +275839,32.633,65.408 +275840,33.459,64.102 +275841,29.516,67.936 +275842,30.443,66.671 +275843,31.345,65.395 +275844,32.221,64.108 +275845,28.126,67.883 +275846,29.104,66.638 +275847,30.056,65.381 +275848,30.983,64.114 +275849,26.737,67.83 +275850,27.766,66.604 +275851,28.767,65.368 +275852,29.744,64.122 +275853,25.348,67.775 +275854,26.427,66.571 +275855,27.478,65.355 +275856,28.504,64.13 +275857,23.96,67.719 +275858,25.089,66.536 +275859,26.189,65.343 +275860,27.263,64.14 +275861,22.573,67.663 +275862,23.751,66.502 +275863,24.899,65.331 +275864,26.021,64.151 +275865,21.186,67.605 +275866,22.413,66.467 +275867,23.61,65.319 +275868,24.778,64.162 +275869,19.801,67.546 +275870,21.076,66.432 +275871,22.319,65.307 +275872,23.535,64.175 +275873,18.416,67.487 +275874,19.739,66.396 +275875,21.029,65.296 +275876,22.29,64.188 +275877,17.032,67.427 +275878,18.402,66.36 +275879,19.738,65.285 +275880,21.044,64.202 +275881,15.649,67.365 +275882,17.065,66.324 +275883,18.447,65.274 +275884,19.798,64.218 +275885,14.266,67.303 +275886,15.729,66.288 +275887,17.156,65.264 +275888,18.55,64.234 +275889,12.885,67.24 +275890,14.394,66.251 +275891,15.864,65.254 +275892,17.301,64.25 +275893,11.505,67.176 +275894,13.058,66.214 +275895,14.572,65.244 +275896,16.051,64.268 +275897,10.126,67.111 +275898,11.723,66.176 +275899,13.28,65.234 +275900,14.799,64.287 +275901,8.7476,67.046 +275902,10.389,66.139 +275903,11.987,65.225 +275904,13.547,64.306 +275905,7.3706,66.979 +275906,9.0546,66.101 +275907,10.693,65.216 +275908,12.293,64.326 +275909,5.9947,66.912 +275910,7.7208,66.063 +275911,9.3999,65.207 +275912,11.037,64.346 +275913,4.62,66.844 +275914,6.3875,66.024 +275915,8.1058,65.198 +275916,9.781,64.368 +275917,3.2465,66.776 +275918,5.0546,65.986 +275919,6.8114,65.19 +275920,8.5232,64.39 +275921,1.8743,66.706 +275922,3.7222,65.947 +275923,5.5165,65.182 +275924,7.2641,64.413 +275925,0.50337,66.637 +275926,2.3902,65.908 +275927,4.2212,65.174 +275928,6.0035,64.436 +275929,359.13,66.566 +275930,1.0587,65.868 +275931,2.9255,65.166 +275932,4.7415,64.46 +275933,357.77,66.495 +275934,359.73,65.829 +275935,1.6293,65.158 +275936,3.4781,64.484 +275937,356.4,66.423 +275938,358.4,65.789 +275939,0.33266,65.151 +275940,2.2133,64.509 +275941,355.03,66.351 +275942,357.07,65.749 +275943,359.04,65.143 +275944,0.9469,64.535 +275945,353.67,66.278 +275946,355.74,65.709 +275947,357.74,65.136 +275948,359.68,64.561 +275949,352.31,66.204 +275950,354.41,65.669 +275951,356.44,65.129 +275952,358.41,64.587 +275953,350.95,66.13 +275954,353.08,65.628 +275955,355.14,65.122 +275956,357.14,64.614 +275957,349.59,66.056 +275958,351.75,65.587 +275959,353.84,65.116 +275960,355.87,64.642 +275961,348.23,65.981 +275962,350.42,65.547 +275963,352.54,65.109 +275964,354.59,64.669 +275965,346.87,65.906 +275966,349.1,65.506 +275967,351.24,65.102 +275968,353.32,64.697 +275969,345.52,65.83 +275970,347.77,65.465 +275971,349.94,65.096 +275972,352.04,64.726 +275973,344.16,65.754 +275974,346.45,65.423 +275975,348.64,65.09 +275976,350.76,64.755 +275977,342.81,65.678 +275978,345.12,65.382 +275979,347.34,65.084 +275980,349.48,64.783 +275981,341.46,65.601 +275982,343.8,65.341 +275983,346.04,65.077 +275984,348.2,64.813 +275985,340.11,65.524 +275986,342.47,65.299 +275987,344.73,65.071 +275988,346.91,64.842 +275989,338.77,65.447 +275990,341.15,65.257 +275991,343.43,65.065 +275992,345.63,64.872 +275993,337.42,65.37 +275994,339.83,65.216 +275995,342.13,65.059 +275996,344.34,64.901 +275997,336.08,65.292 +275998,338.5,65.174 +275999,340.82,65.053 +276000,343.05,64.931 +276001,334.74,65.214 +276002,337.18,65.132 +276003,339.52,65.047 +276004,341.76,64.961 +276005,333.4,65.137 +276006,335.86,65.09 +276007,338.21,65.042 +276008,340.47,64.991 +276009,332.06,65.059 +276010,334.54,65.048 +276011,336.91,65.036 +276012,339.18,65.021 +276013,330.73,64.98 +276014,333.22,65.007 +276015,335.6,65.03 +276016,337.88,65.051 +276017,329.39,64.902 +276018,331.9,64.965 +276019,334.29,65.024 +276020,336.58,65.081 +276021,328.06,64.824 +276022,330.58,64.923 +276023,332.98,65.018 +276024,335.28,65.111 +276025,326.73,64.746 +276026,329.27,64.881 +276027,331.68,65.012 +276028,333.98,65.141 +276029,325.4,64.668 +276030,327.95,64.839 +276031,330.37,65.006 +276032,332.68,65.171 +276033,324.08,64.59 +276034,326.63,64.797 +276035,329.06,65 +276036,331.37,65.201 +276037,322.75,64.512 +276038,325.32,64.755 +276039,327.75,64.994 +276040,330.07,65.23 +276041,321.43,64.434 +276042,324,64.713 +276043,326.44,64.988 +276044,328.76,65.26 +276045,320.11,64.357 +276046,322.69,64.671 +276047,325.13,64.982 +276048,327.45,65.289 +276049,318.79,64.279 +276050,321.37,64.629 +276051,323.81,64.975 +276052,326.14,65.318 +276053,317.48,64.202 +276054,320.06,64.588 +276055,322.5,64.969 +276056,324.83,65.346 +276057,316.16,64.125 +276058,318.75,64.546 +276059,321.19,64.962 +276060,323.51,65.374 +276061,314.85,64.048 +276062,317.43,64.504 +276063,319.87,64.956 +276064,322.19,65.402 +276065,313.54,63.972 +276066,316.12,64.463 +276067,318.56,64.949 +276068,320.88,65.43 +276069,312.23,63.896 +276070,314.81,64.422 +276071,317.25,64.942 +276072,319.55,65.457 +276073,310.93,63.82 +276074,313.5,64.38 +276075,315.93,64.935 +276076,318.23,65.484 +276077,309.62,63.745 +276078,312.19,64.339 +276079,314.61,64.928 +276080,316.91,65.51 +276081,308.32,63.67 +276082,310.88,64.298 +276083,313.3,64.92 +276084,315.58,65.536 +276085,307.02,63.595 +276086,309.57,64.257 +276087,311.98,64.913 +276088,314.26,65.561 +276089,305.72,63.521 +276090,308.27,64.217 +276091,310.66,64.905 +276092,312.93,65.586 +276093,304.42,63.448 +276094,306.96,64.176 +276095,309.34,64.897 +276096,311.6,65.61 +276097,303.13,63.375 +276098,305.65,64.136 +276099,308.02,64.889 +276100,310.27,65.634 +276101,301.84,63.302 +276102,304.35,64.096 +276103,306.71,64.881 +276104,308.93,65.657 +276105,300.55,63.23 +276106,303.04,64.056 +276107,305.39,64.872 +276108,307.6,65.68 +276109,299.26,63.159 +276110,301.74,64.016 +276111,304.06,64.863 +276112,306.26,65.701 +276113,297.97,63.089 +276114,300.44,63.976 +276115,302.74,64.854 +276116,304.92,65.722 +276117,296.69,63.019 +276118,299.13,63.937 +276119,301.42,64.845 +276120,303.58,65.743 +276121,295.41,62.949 +276122,297.83,63.898 +276123,300.1,64.835 +276124,302.24,65.763 +276125,294.13,62.881 +276126,296.53,63.859 +276127,298.78,64.826 +276128,300.89,65.782 +276129,292.85,62.813 +276130,295.23,63.82 +276131,297.45,64.816 +276132,299.55,65.8 +276133,291.57,62.746 +276134,293.93,63.782 +276135,296.13,64.805 +276136,298.2,65.817 +276137,290.29,62.68 +276138,292.63,63.743 +276139,294.81,64.795 +276140,296.85,65.834 +276141,289.02,62.614 +276142,291.33,63.705 +276143,293.48,64.784 +276144,295.5,65.85 +276145,287.75,62.549 +276146,290.03,63.668 +276147,292.16,64.773 +276148,294.15,65.864 +276149,286.48,62.486 +276150,288.73,63.63 +276151,290.83,64.761 +276152,292.8,65.878 +276153,285.21,62.423 +276154,287.43,63.593 +276155,289.5,64.749 +276156,291.44,65.892 +276157,283.95,62.361 +276158,286.14,63.556 +276159,288.18,64.737 +276160,290.09,65.904 +276161,282.68,62.3 +276162,284.84,63.52 +276163,286.85,64.725 +276164,288.73,65.915 +276165,281.42,62.239 +276166,283.54,63.484 +276167,285.52,64.712 +276168,287.37,65.925 +276169,280.16,62.18 +276170,282.25,63.448 +276171,284.19,64.699 +276172,286.01,65.935 +276173,278.9,62.122 +276174,280.95,63.412 +276175,282.86,64.686 +276176,284.65,65.943 +276177,277.64,62.065 +276178,279.66,63.377 +276179,281.53,64.672 +276180,283.29,65.95 +276181,276.38,62.009 +276182,278.36,63.342 +276183,280.2,64.658 +276184,281.92,65.957 +276185,275.13,61.954 +276186,277.07,63.307 +276187,278.87,64.643 +276188,280.56,65.962 +276189,273.88,61.899 +276190,275.78,63.273 +276191,277.54,64.628 +276192,279.19,65.966 +276193,272.63,61.846 +276194,274.49,63.239 +276195,276.21,64.613 +276196,277.82,65.969 +276197,271.38,61.795 +276198,273.19,63.205 +276199,274.88,64.598 +276200,276.46,65.971 +276201,270.13,61.744 +276202,271.9,63.172 +276203,273.55,64.582 +276204,275.09,65.972 +276205,268.88,61.694 +276206,270.61,63.139 +276207,272.22,64.565 +276208,273.71,65.972 +276209,267.63,61.646 +276210,269.32,63.107 +276211,270.89,64.548 +276212,272.34,65.97 +276213,266.39,61.598 +276214,268.03,63.075 +276215,269.55,64.531 +276216,270.97,65.968 +276217,265.15,61.552 +276218,266.74,63.043 +276219,268.22,64.514 +276220,269.59,65.964 +276221,263.9,61.507 +276222,265.45,63.011 +276223,266.89,64.496 +276224,268.22,65.959 +276225,262.66,61.463 +276226,264.16,62.98 +276227,265.55,64.477 +276228,266.84,65.953 +276229,261.42,61.42 +276230,262.88,62.95 +276231,264.22,64.458 +276232,265.46,65.946 +276233,260.18,61.379 +276234,261.59,62.92 +276235,262.88,64.439 +276236,264.08,65.938 +276237,258.95,61.339 +276238,260.3,62.89 +276239,261.55,64.42 +276240,262.7,65.928 +276241,257.71,61.3 +276242,259.01,62.86 +276243,260.21,64.4 +276244,261.32,65.917 +276245,256.48,61.262 +276246,257.73,62.831 +276247,258.88,64.379 +276248,259.94,65.905 +276249,255.24,61.225 +276250,256.44,62.803 +276251,257.54,64.358 +276252,258.56,65.892 +276253,254.01,61.19 +276254,255.15,62.774 +276255,256.2,64.337 +276256,257.17,65.877 +276257,252.77,61.156 +276258,253.87,62.747 +276259,254.87,64.315 +276260,255.79,65.861 +276261,251.54,61.123 +276262,252.58,62.719 +276263,253.53,64.293 +276264,254.41,65.844 +276265,250.31,61.092 +276266,251.3,62.692 +276267,252.2,64.27 +276268,253.02,65.826 +276269,249.08,61.062 +276270,250.01,62.665 +276271,250.86,64.247 +276272,251.63,65.806 +276273,247.85,61.033 +276274,248.73,62.639 +276275,249.52,64.224 +276276,250.25,65.786 +276277,246.62,61.005 +276278,247.44,62.614 +276279,248.18,64.2 +276280,248.86,65.763 +276281,245.39,60.979 +276282,246.16,62.588 +276283,246.85,64.175 +276284,247.47,65.74 +276285,244.17,60.954 +276286,244.87,62.563 +276287,245.51,64.15 +276288,246.08,65.715 +276289,242.94,60.93 +276290,243.59,62.539 +276291,244.17,64.125 +276292,244.69,65.689 +276293,241.71,60.908 +276294,242.3,62.515 +276295,242.83,64.1 +276296,243.3,65.662 +276297,240.49,60.887 +276298,241.02,62.491 +276299,241.49,64.073 +276300,241.91,65.634 +276301,239.26,60.867 +276302,239.74,62.468 +276303,240.16,64.047 +276304,240.52,65.604 +276305,238.03,60.849 +276306,238.45,62.445 +276307,238.82,64.02 +276308,239.13,65.573 +276309,236.81,60.831 +276310,237.17,62.422 +276311,237.48,63.992 +276312,237.74,65.54 +276313,235.58,60.815 +276314,235.89,62.4 +276315,236.14,63.964 +276316,236.35,65.507 +276317,234.36,60.801 +276318,234.6,62.379 +276319,234.8,63.936 +276320,234.96,65.472 +276321,233.13,60.787 +276322,233.32,62.357 +276323,233.46,63.907 +276324,233.56,65.436 +276325,231.91,60.775 +276326,232.04,62.337 +276327,232.12,63.878 +276328,232.17,65.398 +276329,230.68,60.764 +276330,230.75,62.316 +276331,230.79,63.848 +276332,230.78,65.36 +276333,229.46,60.754 +276334,229.47,62.296 +276335,229.45,63.818 +276336,229.39,65.32 +276337,228.23,60.746 +276338,228.19,62.277 +276339,228.11,63.788 +276340,227.99,65.279 +276341,227.01,60.739 +276342,226.91,62.257 +276343,226.77,63.757 +276344,226.6,65.236 +276345,225.78,60.733 +276346,225.62,62.239 +276347,225.43,63.725 +276348,225.21,65.193 +276349,224.56,60.728 +276350,224.34,62.22 +276351,224.09,63.694 +276352,223.82,65.148 +276353,223.33,60.725 +276354,223.06,62.202 +276355,222.75,63.661 +276356,222.42,65.102 +276357,222.1,60.722 +276358,221.77,62.184 +276359,221.42,63.629 +276360,221.03,65.054 +276361,220.88,60.721 +276362,220.49,62.167 +276363,220.08,63.596 +276364,219.64,65.006 +276365,219.65,60.721 +276366,219.21,62.15 +276367,218.74,63.562 +276368,218.25,64.956 +276369,218.42,60.722 +276370,217.93,62.134 +276371,217.4,63.529 +276372,216.85,64.906 +276373,217.2,60.725 +276374,216.64,62.118 +276375,216.06,63.494 +276376,215.46,64.854 +276377,215.97,60.728 +276378,215.36,62.102 +276379,214.73,63.46 +276380,214.07,64.801 +276381,214.74,60.733 +276382,214.08,62.086 +276383,213.39,63.425 +276384,212.68,64.746 +276385,213.51,60.738 +276386,212.79,62.071 +276387,212.05,63.389 +276388,211.29,64.691 +276389,212.28,60.745 +276390,211.51,62.057 +276391,210.71,63.354 +276392,209.9,64.635 +276393,211.05,60.753 +276394,210.22,62.042 +276395,209.38,63.317 +276396,208.51,64.577 +276397,209.82,60.762 +276398,208.94,62.028 +276399,208.04,63.281 +276400,207.12,64.518 +276401,208.59,60.771 +276402,207.65,62.015 +276403,206.7,63.244 +276404,205.73,64.459 +276405,207.35,60.782 +276406,206.37,62.001 +276407,205.37,63.207 +276408,204.34,64.398 +276409,206.12,60.794 +276410,205.08,61.988 +276411,204.03,63.169 +276412,202.95,64.336 +276413,204.88,60.807 +276414,203.8,61.975 +276415,202.69,63.131 +276416,201.57,64.274 +276417,203.65,60.821 +276418,202.51,61.963 +276419,201.36,63.093 +276420,200.18,64.21 +276421,202.41,60.835 +276422,201.23,61.951 +276423,200.02,63.055 +276424,198.79,64.145 +276425,201.17,60.851 +276426,199.94,61.939 +276427,198.69,63.016 +276428,197.41,64.08 +276429,199.94,60.867 +276430,198.66,61.927 +276431,197.35,62.976 +276432,196.03,64.013 +276433,198.7,60.885 +276434,197.37,61.916 +276435,196.02,62.937 +276436,194.64,63.946 +276437,197.45,60.903 +276438,196.08,61.905 +276439,194.69,62.897 +276440,193.26,63.877 +276441,196.21,60.922 +276442,194.8,61.894 +276443,193.35,62.857 +276444,191.88,63.808 +276445,194.97,60.942 +276446,193.51,61.884 +276447,192.02,62.816 +276448,190.5,63.738 +276449,193.72,60.962 +276450,192.22,61.873 +276451,190.69,62.776 +276452,189.12,63.667 +276453,192.48,60.983 +276454,190.93,61.863 +276455,189.35,62.735 +276456,187.74,63.596 +276457,191.23,61.005 +276458,189.64,61.854 +276459,188.02,62.693 +276460,186.36,63.523 +276461,189.98,61.028 +276462,188.35,61.844 +276463,186.69,62.652 +276464,184.99,63.45 +276465,188.73,61.051 +276466,187.06,61.835 +276467,185.36,62.61 +276468,183.61,63.376 +276469,187.48,61.075 +276470,185.77,61.826 +276471,184.03,62.568 +276472,182.24,63.301 +276473,186.23,61.1 +276474,184.48,61.817 +276475,182.7,62.526 +276476,180.86,63.226 +276477,184.98,61.125 +276478,183.19,61.808 +276479,181.37,62.483 +276480,179.49,63.15 +276481,183.72,61.151 +276482,181.9,61.799 +276483,180.04,62.441 +276484,178.12,63.074 +276485,182.47,61.177 +276486,180.61,61.791 +276487,178.71,62.398 +276488,176.75,62.996 +276489,181.21,61.204 +276490,179.32,61.783 +276491,177.38,62.355 +276492,175.39,62.919 +276493,179.95,61.231 +276494,178.03,61.774 +276495,176.05,62.312 +276496,174.02,62.84 +276497,178.69,61.258 +276498,176.73,61.766 +276499,174.73,62.268 +276500,172.65,62.762 +276501,177.42,61.286 +276502,175.44,61.759 +276503,173.4,62.225 +276504,171.29,62.682 +276505,176.16,61.315 +276506,174.15,61.751 +276507,172.07,62.181 +276508,169.93,62.603 +276509,174.89,61.344 +276510,172.85,61.743 +276511,170.75,62.137 +276512,168.57,62.522 +276513,173.63,61.373 +276514,171.56,61.736 +276515,169.42,62.093 +276516,167.21,62.442 +276517,172.36,61.402 +276518,170.26,61.728 +276519,168.1,62.049 +276520,165.85,62.361 +276521,171.09,61.432 +276522,168.97,61.721 +276523,166.77,62.004 +276524,164.5,62.28 +276525,169.82,61.462 +276526,167.67,61.714 +276527,165.45,61.96 +276528,163.14,62.198 +276529,168.54,61.492 +276530,166.37,61.707 +276531,164.13,61.915 +276532,161.79,62.116 +276533,167.27,61.522 +276534,165.07,61.7 +276535,162.8,61.871 +276536,160.44,62.034 +276537,165.99,61.552 +276538,163.78,61.692 +276539,161.48,61.826 +276540,159.09,61.951 +276541,164.71,61.583 +276542,162.48,61.685 +276543,160.16,61.781 +276544,157.74,61.869 +276545,163.43,61.614 +276546,161.18,61.678 +276547,158.84,61.736 +276548,156.4,61.786 +276549,162.15,61.644 +276550,159.88,61.671 +276551,157.52,61.692 +276552,155.05,61.703 +276553,160.86,61.675 +276554,158.58,61.664 +276555,156.2,61.647 +276556,153.71,61.62 +276557,159.58,61.706 +276558,157.28,61.657 +276559,154.88,61.602 +276560,152.37,61.537 +276561,158.29,61.736 +276562,155.98,61.65 +276563,153.56,61.557 +276564,151.03,61.454 +276565,157,61.767 +276566,154.67,61.643 +276567,152.25,61.512 +276568,149.7,61.371 +276569,155.71,61.798 +276570,153.37,61.636 +276571,150.93,61.467 +276572,148.36,61.287 +276573,154.41,61.828 +276574,152.07,61.629 +276575,149.61,61.422 +276576,147.03,61.204 +276577,153.12,61.858 +276578,150.76,61.622 +276579,148.3,61.377 +276580,145.7,61.121 +276581,151.82,61.888 +276582,149.46,61.615 +276583,146.98,61.332 +276584,144.37,61.038 +276585,150.52,61.918 +276586,148.15,61.607 +276587,145.67,61.287 +276588,143.04,60.955 +276589,149.22,61.948 +276590,146.85,61.6 +276591,144.35,61.242 +276592,141.72,60.873 +276593,147.92,61.977 +276594,145.54,61.592 +276595,143.04,61.197 +276596,140.4,60.79 +276597,146.62,62.006 +276598,144.24,61.585 +276599,141.73,61.153 +276600,139.08,60.708 +276601,145.31,62.035 +276602,142.93,61.577 +276603,140.42,61.108 +276604,137.76,60.626 +276605,144,62.063 +276606,141.62,61.569 +276607,139.11,61.063 +276608,136.44,60.545 +276609,142.7,62.091 +276610,140.31,61.561 +276611,137.8,61.019 +276612,135.13,60.463 +276613,141.38,62.118 +276614,139,61.553 +276615,136.49,60.975 +276616,133.81,60.382 +276617,140.07,62.146 +276618,137.69,61.545 +276619,135.18,60.931 +276620,132.5,60.302 +276621,138.76,62.172 +276622,136.38,61.536 +276623,133.87,60.886 +276624,131.19,60.221 +276625,137.44,62.198 +276626,135.07,61.528 +276627,132.56,60.843 +276628,129.89,60.142 +276629,136.12,62.224 +276630,133.76,61.519 +276631,131.26,60.799 +276632,128.58,60.062 +276633,134.8,62.249 +276634,132.45,61.51 +276635,129.95,60.755 +276636,127.28,59.984 +276637,133.48,62.273 +276638,131.14,61.5 +276639,128.64,60.712 +276640,125.98,59.905 +276641,132.16,62.297 +276642,129.82,61.491 +276643,127.34,60.668 +276644,124.68,59.828 +276645,130.83,62.32 +276646,128.51,61.481 +276647,126.04,60.625 +276648,123.39,59.751 +276649,129.51,62.343 +276650,127.19,61.471 +276651,124.73,60.582 +276652,122.09,59.674 +276653,128.18,62.365 +276654,125.88,61.461 +276655,123.43,60.54 +276656,120.8,59.599 +276657,126.85,62.386 +276658,124.56,61.451 +276659,122.13,60.497 +276660,119.51,59.523 +276661,125.52,62.406 +276662,123.25,61.44 +276663,120.83,60.455 +276664,118.22,59.449 +276665,124.18,62.426 +276666,121.93,61.429 +276667,119.53,60.413 +276668,116.94,59.375 +276669,122.85,62.445 +276670,120.61,61.418 +276671,118.23,60.371 +276672,115.66,59.302 +276673,121.51,62.463 +276674,119.3,61.407 +276675,116.93,60.33 +276676,114.37,59.23 +276677,120.17,62.48 +276678,117.98,61.395 +276679,115.63,60.289 +276680,113.09,59.159 +276681,118.83,62.496 +276682,116.66,61.383 +276683,114.33,60.248 +276684,111.82,59.088 +276685,117.49,62.511 +276686,115.34,61.371 +276687,113.03,60.207 +276688,110.54,59.019 +276689,116.15,62.526 +276690,114.02,61.358 +276691,111.74,60.166 +276692,109.27,58.95 +276693,114.8,62.54 +276694,112.7,61.345 +276695,110.44,60.126 +276696,108,58.882 +276697,113.46,62.552 +276698,111.38,61.332 +276699,109.14,60.086 +276700,106.73,58.815 +276701,112.11,62.564 +276702,110.06,61.318 +276703,107.85,60.047 +276704,105.46,58.749 +276705,110.76,62.575 +276706,108.73,61.304 +276707,106.56,60.008 +276708,104.19,58.684 +276709,109.41,62.584 +276710,107.41,61.29 +276711,105.26,59.969 +276712,102.93,58.62 +276713,108.06,62.593 +276714,106.09,61.275 +276715,103.97,59.93 +276716,101.67,58.558 +276717,106.7,62.6 +276718,104.77,61.26 +276719,102.68,59.892 +276720,100.41,58.496 +276721,105.35,62.607 +276722,103.44,61.244 +276723,101.38,59.854 +276724,99.15,58.435 +276725,103.99,62.612 +276726,102.12,61.229 +276727,100.09,59.817 +276728,97.893,58.375 +276729,102.63,62.617 +276730,100.79,61.212 +276731,98.802,59.779 +276732,96.638,58.317 +276733,101.27,62.62 +276734,99.467,61.196 +276735,97.512,59.743 +276736,95.385,58.259 +276737,99.914,62.622 +276738,98.141,61.179 +276739,96.223,59.706 +276740,94.134,58.203 +276741,98.552,62.623 +276742,96.814,61.162 +276743,94.934,59.67 +276744,92.884,58.148 +276745,97.188,62.623 +276746,95.488,61.144 +276747,93.645,59.634 +276748,91.636,58.094 +276749,95.824,62.621 +276750,94.16,61.126 +276751,92.357,59.599 +276752,90.39,58.041 +276753,94.458,62.619 +276754,92.833,61.107 +276755,91.07,59.564 +276756,89.145,57.989 +276757,93.091,62.615 +276758,91.505,61.088 +276759,89.783,59.53 +276760,87.902,57.939 +276761,91.723,62.61 +276762,90.176,61.068 +276763,88.496,59.495 +276764,86.66,57.89 +276765,90.354,62.604 +276766,88.848,61.049 +276767,87.21,59.462 +276768,85.42,57.842 +276769,88.983,62.596 +276770,87.518,61.028 +276771,85.925,59.428 +276772,84.181,57.795 +276773,87.612,62.588 +276774,86.189,61.008 +276775,84.64,59.396 +276776,82.943,57.75 +276777,86.239,62.577 +276778,84.859,60.986 +276779,83.355,59.363 +276780,81.707,57.706 +276781,84.866,62.566 +276782,83.529,60.965 +276783,82.071,59.331 +276784,80.472,57.663 +276785,83.491,62.554 +276786,82.198,60.943 +276787,80.787,59.299 +276788,79.239,57.622 +276789,82.116,62.54 +276790,80.867,60.92 +276791,79.504,59.268 +276792,78.006,57.582 +276793,80.739,62.525 +276794,79.536,60.897 +276795,78.221,59.237 +276796,76.775,57.543 +276797,79.361,62.508 +276798,78.205,60.874 +276799,76.938,59.207 +276800,75.545,57.506 +276801,77.983,62.49 +276802,76.873,60.85 +276803,75.656,59.177 +276804,74.316,57.47 +276805,76.604,62.471 +276806,75.541,60.826 +276807,74.374,59.147 +276808,73.088,57.435 +276809,75.224,62.451 +276810,74.209,60.801 +276811,73.093,59.118 +276812,71.861,57.402 +276813,73.843,62.429 +276814,72.876,60.776 +276815,71.812,59.09 +276816,70.635,57.37 +276817,72.461,62.406 +276818,71.543,60.75 +276819,70.531,59.061 +276820,69.41,57.339 +276821,71.079,62.381 +276822,70.21,60.724 +276823,69.25,59.034 +276824,68.186,57.31 +276825,69.696,62.355 +276826,68.877,60.697 +276827,67.97,59.006 +276828,66.962,57.282 +276829,68.312,62.328 +276830,67.544,60.67 +276831,66.69,58.979 +276832,65.74,57.256 +276833,66.928,62.3 +276834,66.21,60.642 +276835,65.411,58.953 +276836,64.518,57.231 +276837,65.543,62.27 +276838,64.876,60.614 +276839,64.131,58.927 +276840,63.296,57.207 +276841,64.157,62.239 +276842,63.542,60.586 +276843,62.852,58.902 +276844,62.076,57.185 +276845,62.771,62.206 +276846,62.208,60.557 +276847,61.573,58.876 +276848,60.856,57.164 +276849,61.384,62.172 +276850,60.874,60.528 +276851,60.294,58.852 +276852,59.636,57.144 +276853,59.997,62.137 +276854,59.54,60.498 +276855,59.016,58.828 +276856,58.417,57.126 +276857,58.61,62.1 +276858,58.205,60.467 +276859,57.737,58.804 +276860,57.198,57.109 +276861,57.222,62.062 +276862,56.87,60.436 +276863,56.459,58.78 +276864,55.98,57.094 +276865,55.834,62.023 +276866,55.536,60.405 +276867,55.181,58.757 +276868,54.762,57.08 +276869,54.445,61.982 +276870,54.201,60.373 +276871,53.903,58.735 +276872,53.544,57.067 +276873,53.056,61.94 +276874,52.866,60.341 +276875,52.625,58.713 +276876,52.326,57.055 +276877,51.667,61.897 +276878,51.531,60.309 +276879,51.347,58.691 +276880,51.109,57.045 +276881,50.278,61.852 +276882,50.197,60.275 +276883,50.07,58.67 +276884,49.891,57.037 +276885,48.888,61.807 +276886,48.862,60.242 +276887,48.792,58.649 +276888,48.674,57.029 +276889,47.498,61.759 +276890,47.527,60.208 +276891,47.514,58.629 +276892,47.457,57.023 +276893,46.109,61.711 +276894,46.192,60.173 +276895,46.237,58.609 +276896,46.24,57.018 +276897,44.719,61.661 +276898,44.857,60.139 +276899,44.959,58.59 +276900,45.022,57.014 +276901,43.329,61.61 +276902,43.522,60.103 +276903,43.682,58.57 +276904,43.805,57.012 +276905,41.939,61.558 +276906,42.188,60.067 +276907,42.404,58.552 +276908,42.587,57.011 +276909,40.549,61.504 +276910,40.853,60.031 +276911,41.127,58.533 +276912,41.369,57.011 +276913,39.16,61.449 +276914,39.518,59.995 +276915,39.849,58.516 +276916,40.15,57.013 +276917,37.77,61.393 +276918,38.184,59.958 +276919,38.572,58.498 +276920,38.932,57.015 +276921,36.381,61.336 +276922,36.85,59.92 +276923,37.294,58.481 +276924,37.713,57.019 +276925,34.991,61.278 +276926,35.515,59.882 +276927,36.016,58.464 +276928,36.493,57.024 +276929,33.602,61.218 +276930,34.181,59.844 +276931,34.739,58.448 +276932,35.274,57.03 +276933,32.214,61.157 +276934,32.847,59.805 +276935,33.461,58.432 +276936,34.053,57.038 +276937,30.825,61.095 +276938,31.514,59.766 +276939,32.183,58.416 +276940,32.832,57.046 +276941,29.437,61.032 +276942,30.18,59.727 +276943,30.904,58.401 +276944,31.61,57.056 +276945,28.05,60.968 +276946,28.846,59.687 +276947,29.626,58.386 +276948,30.388,57.066 +276949,26.662,60.903 +276950,27.513,59.647 +276951,28.348,58.372 +276952,29.165,57.078 +276953,25.276,60.836 +276954,26.18,59.606 +276955,27.069,58.357 +276956,27.941,57.091 +276957,23.889,60.769 +276958,24.848,59.565 +276959,25.79,58.344 +276960,26.717,57.104 +276961,22.504,60.7 +276962,23.515,59.524 +276963,24.511,58.33 +276964,25.491,57.119 +276965,21.119,60.631 +276966,22.183,59.482 +276967,23.231,58.317 +276968,24.265,57.135 +276969,19.734,60.56 +276970,20.851,59.44 +276971,21.952,58.304 +276972,23.038,57.152 +276973,18.35,60.488 +276974,19.519,59.398 +276975,20.672,58.291 +276976,21.81,57.169 +276977,16.967,60.416 +276978,18.188,59.355 +276979,19.392,58.279 +276980,20.581,57.188 +276981,15.585,60.342 +276982,16.857,59.312 +276983,18.112,58.267 +276984,19.351,57.207 +276985,14.203,60.268 +276986,15.526,59.269 +276987,16.831,58.255 +276988,18.119,57.228 +276989,12.822,60.192 +276990,14.196,59.225 +276991,15.55,58.244 +276992,16.887,57.249 +276993,11.442,60.116 +276994,12.866,59.182 +276995,14.269,58.232 +276996,15.654,57.271 +276997,10.063,60.039 +276998,11.536,59.137 +276999,12.987,58.222 +277000,14.419,57.294 +277001,8.6851,59.961 +277002,10.207,59.093 +277003,11.705,58.211 +277004,13.183,57.317 +277005,7.308,59.882 +277006,8.8779,59.048 +277007,10.423,58.2 +277008,11.946,57.341 +277009,5.9318,59.803 +277010,7.5494,59.003 +277011,9.1404,58.19 +277012,10.708,57.366 +277013,4.5567,59.723 +277014,6.2214,58.958 +277015,7.8574,58.18 +277016,9.4679,57.392 +277017,3.1827,59.642 +277018,4.8937,58.912 +277019,6.574,58.17 +277020,8.2269,57.418 +277021,1.8098,59.56 +277022,3.5666,58.867 +277023,5.2902,58.161 +277024,6.9845,57.445 +277025,0.43808,59.478 +277026,2.2398,58.821 +277027,4.0061,58.151 +277028,5.7407,57.472 +277029,359.07,59.395 +277030,0.91357,58.774 +277031,2.7215,58.142 +277032,4.4955,57.5 +277033,357.7,59.311 +277034,359.59,58.728 +277035,1.4364,58.133 +277036,3.2488,57.529 +277037,356.33,59.227 +277038,358.26,58.681 +277039,0.15099,58.124 +277040,2.0007,57.558 +277041,354.96,59.142 +277042,356.94,58.635 +277043,358.87,58.116 +277044,0.75101,57.587 +277045,353.6,59.057 +277046,355.61,58.588 +277047,357.58,58.107 +277048,359.5,57.617 +277049,352.23,58.971 +277050,354.29,58.54 +277051,356.29,58.099 +277052,358.25,57.647 +277053,350.87,58.884 +277054,352.97,58.493 +277055,355,58.09 +277056,356.99,57.678 +277057,349.51,58.798 +277058,351.64,58.446 +277059,353.72,58.082 +277060,355.74,57.709 +277061,348.15,58.711 +277062,350.32,58.398 +277063,352.43,58.074 +277064,354.48,57.74 +277065,346.79,58.623 +277066,349,58.35 +277067,351.14,58.066 +277068,353.22,57.772 +277069,345.44,58.535 +277070,347.68,58.303 +277071,349.85,58.058 +277072,351.96,57.804 +277073,344.08,58.447 +277074,346.36,58.255 +277075,348.56,58.05 +277076,350.7,57.836 +277077,342.73,58.358 +277078,345.04,58.207 +277079,347.27,58.042 +277080,349.43,57.868 +277081,341.38,58.27 +277082,343.72,58.158 +277083,345.98,58.035 +277084,348.17,57.901 +277085,340.02,58.181 +277086,342.4,58.11 +277087,344.69,58.027 +277088,346.9,57.933 +277089,338.68,58.091 +277090,341.08,58.062 +277091,343.4,58.019 +277092,345.63,57.966 +277093,337.33,58.002 +277094,339.77,58.014 +277095,342.1,58.012 +277096,344.36,57.998 +277097,335.98,57.913 +277098,338.45,57.965 +277099,340.81,58.004 +277100,343.09,58.031 +277101,334.64,57.823 +277102,337.13,57.917 +277103,339.52,57.996 +277104,341.81,58.064 +277105,333.3,57.733 +277106,335.82,57.868 +277107,338.22,57.989 +277108,340.54,58.096 +277109,331.96,57.644 +277110,334.5,57.82 +277111,336.93,57.981 +277112,339.26,58.129 +277113,330.62,57.554 +277114,333.19,57.772 +277115,335.63,57.973 +277116,337.98,58.162 +277117,329.29,57.465 +277118,331.87,57.723 +277119,334.34,57.966 +277120,336.7,58.194 +277121,327.95,57.375 +277122,330.56,57.675 +277123,333.04,57.958 +277124,335.41,58.226 +277125,326.62,57.286 +277126,329.25,57.627 +277127,331.74,57.95 +277128,334.13,58.258 +277129,325.29,57.196 +277130,327.94,57.578 +277131,330.45,57.942 +277132,332.84,58.29 +277133,323.96,57.107 +277134,326.63,57.53 +277135,329.15,57.934 +277136,331.55,58.321 +277137,322.64,57.018 +277138,325.32,57.482 +277139,327.85,57.926 +277140,330.26,58.353 +277141,321.31,56.93 +277142,324.01,57.434 +277143,326.55,57.917 +277144,328.97,58.384 +277145,319.99,56.841 +277146,322.7,57.386 +277147,325.25,57.909 +277148,327.67,58.414 +277149,318.67,56.753 +277150,321.39,57.338 +277151,323.95,57.901 +277152,326.38,58.444 +277153,317.35,56.665 +277154,320.08,57.29 +277155,322.65,57.892 +277156,325.08,58.474 +277157,316.04,56.578 +277158,318.78,57.242 +277159,321.35,57.883 +277160,323.78,58.503 +277161,314.72,56.491 +277162,317.47,57.195 +277163,320.05,57.874 +277164,322.48,58.532 +277165,313.41,56.405 +277166,316.16,57.147 +277167,318.74,57.865 +277168,321.17,58.561 +277169,312.1,56.318 +277170,314.86,57.1 +277171,317.44,57.856 +277172,319.87,58.588 +277173,310.8,56.233 +277174,313.56,57.053 +277175,316.14,57.846 +277176,318.56,58.616 +277177,309.49,56.148 +277178,312.25,57.006 +277179,314.83,57.837 +277180,317.25,58.642 +277181,308.19,56.063 +277182,310.95,56.959 +277183,313.53,57.827 +277184,315.94,58.668 +277185,306.89,55.98 +277186,309.65,56.913 +277187,312.22,57.817 +277188,314.63,58.694 +277189,305.59,55.896 +277190,308.35,56.867 +277191,310.91,57.806 +277192,313.32,58.719 +277193,304.29,55.814 +277194,307.05,56.82 +277195,309.61,57.796 +277196,312,58.743 +277197,303,55.732 +277198,305.75,56.775 +277199,308.3,57.785 +277200,310.68,58.766 +277201,301.7,55.651 +277202,304.45,56.729 +277203,306.99,57.774 +277204,309.36,58.789 +277205,300.41,55.571 +277206,303.15,56.683 +277207,305.68,57.762 +277208,308.04,58.81 +277209,299.13,55.491 +277210,301.85,56.638 +277211,304.37,57.751 +277212,306.72,58.831 +277213,297.84,55.412 +277214,300.56,56.593 +277215,303.06,57.739 +277216,305.39,58.851 +277217,296.56,55.334 +277218,299.26,56.549 +277219,301.75,57.726 +277220,304.07,58.871 +277221,295.28,55.257 +277222,297.97,56.505 +277223,300.44,57.714 +277224,302.74,58.889 +277225,294,55.181 +277226,296.67,56.461 +277227,299.13,57.701 +277228,301.41,58.906 +277229,292.72,55.106 +277230,295.38,56.417 +277231,297.82,57.688 +277232,300.08,58.923 +277233,291.45,55.032 +277234,294.08,56.373 +277235,296.51,57.674 +277236,298.75,58.939 +277237,290.17,54.959 +277238,292.79,56.33 +277239,295.19,57.66 +277240,297.41,58.953 +277241,288.9,54.887 +277242,291.5,56.288 +277243,293.88,57.646 +277244,296.08,58.967 +277245,287.63,54.815 +277246,290.21,56.245 +277247,292.56,57.632 +277248,294.74,58.979 +277249,286.37,54.745 +277250,288.92,56.203 +277251,291.25,57.617 +277252,293.4,58.991 +277253,285.1,54.676 +277254,287.63,56.161 +277255,289.93,57.602 +277256,292.06,59.001 +277257,283.84,54.608 +277258,286.34,56.12 +277259,288.62,57.586 +277260,290.71,59.011 +277261,282.58,54.542 +277262,285.05,56.079 +277263,287.3,57.57 +277264,289.37,59.019 +277265,281.32,54.476 +277266,283.76,56.038 +277267,285.99,57.553 +277268,288.03,59.026 +277269,280.07,54.412 +277270,282.48,55.998 +277271,284.67,57.537 +277272,286.68,59.032 +277273,278.81,54.348 +277274,281.19,55.958 +277275,283.35,57.519 +277276,285.33,59.037 +277277,277.56,54.286 +277278,279.9,55.919 +277279,282.03,57.502 +277280,283.98,59.041 +277281,276.31,54.226 +277282,278.62,55.88 +277283,280.71,57.484 +277284,282.63,59.043 +277285,275.06,54.166 +277286,277.33,55.841 +277287,279.39,57.465 +277288,281.28,59.044 +277289,273.81,54.108 +277290,276.05,55.803 +277291,278.07,57.447 +277292,279.92,59.044 +277293,272.57,54.051 +277294,274.77,55.765 +277295,276.75,57.427 +277296,278.57,59.043 +277297,271.33,53.996 +277298,273.48,55.727 +277299,275.43,57.407 +277300,277.21,59.04 +277301,270.09,53.942 +277302,272.2,55.69 +277303,274.11,57.387 +277304,275.85,59.037 +277305,268.85,53.889 +277306,270.92,55.654 +277307,272.79,57.367 +277308,274.49,59.032 +277309,267.61,53.837 +277310,269.64,55.618 +277311,271.47,57.346 +277312,273.13,59.025 +277313,266.37,53.787 +277314,268.36,55.582 +277315,270.15,57.324 +277316,271.77,59.017 +277317,265.14,53.739 +277318,267.08,55.547 +277319,268.82,57.302 +277320,270.41,59.008 +277321,263.9,53.691 +277322,265.8,55.512 +277323,267.5,57.28 +277324,269.05,58.998 +277325,262.67,53.646 +277326,264.52,55.478 +277327,266.18,57.257 +277328,267.68,58.986 +277329,261.44,53.601 +277330,263.24,55.444 +277331,264.85,57.233 +277332,266.32,58.973 +277333,260.21,53.558 +277334,261.96,55.411 +277335,263.53,57.209 +277336,264.95,58.959 +277337,258.99,53.517 +277338,260.68,55.378 +277339,262.21,57.185 +277340,263.58,58.943 +277341,257.76,53.477 +277342,259.41,55.345 +277343,260.88,57.16 +277344,262.21,58.925 +277345,256.54,53.438 +277346,258.13,55.313 +277347,259.56,57.135 +277348,260.84,58.907 +277349,255.31,53.401 +277350,256.85,55.282 +277351,258.23,57.109 +277352,259.47,58.887 +277353,254.09,53.366 +277354,255.58,55.251 +277355,256.9,57.083 +277356,258.1,58.865 +277357,252.87,53.332 +277358,254.3,55.22 +277359,255.58,57.056 +277360,256.72,58.842 +277361,251.65,53.299 +277362,253.03,55.19 +277363,254.25,57.029 +277364,255.35,58.818 +277365,250.43,53.268 +277366,251.75,55.161 +277367,252.93,57.001 +277368,253.98,58.792 +277369,249.22,53.239 +277370,250.48,55.132 +277371,251.6,56.973 +277372,252.6,58.765 +277373,248,53.211 +277374,249.2,55.103 +277375,250.27,56.944 +277376,251.22,58.736 +277377,246.78,53.184 +277378,247.93,55.075 +277379,248.95,56.915 +277380,249.85,58.706 +277381,245.57,53.159 +277382,246.66,55.048 +277383,247.62,56.885 +277384,248.47,58.675 +277385,244.36,53.136 +277386,245.38,55.02 +277387,246.29,56.855 +277388,247.09,58.642 +277389,243.14,53.114 +277390,244.11,54.994 +277391,244.96,56.824 +277392,245.71,58.608 +277393,241.93,53.093 +277394,242.84,54.968 +277395,243.63,56.793 +277396,244.33,58.572 +277397,240.72,53.074 +277398,241.57,54.942 +277399,242.31,56.761 +277400,242.95,58.535 +277401,239.51,53.057 +277402,240.3,54.917 +277403,240.98,56.729 +277404,241.57,58.496 +277405,238.3,53.041 +277406,239.02,54.892 +277407,239.65,56.696 +277408,240.19,58.456 +277409,237.09,53.026 +277410,237.75,54.868 +277411,238.32,56.663 +277412,238.81,58.414 +277413,235.88,53.013 +277414,236.48,54.844 +277415,236.99,56.63 +277416,237.43,58.371 +277417,234.67,53.002 +277418,235.21,54.821 +277419,235.66,56.595 +277420,236.05,58.327 +277421,233.46,52.991 +277422,233.94,54.798 +277423,234.34,56.561 +277424,234.66,58.281 +277425,232.25,52.983 +277426,232.67,54.776 +277427,233.01,56.526 +277428,233.28,58.234 +277429,231.05,52.976 +277430,231.4,54.754 +277431,231.68,56.49 +277432,231.9,58.185 +277433,229.84,52.97 +277434,230.13,54.733 +277435,230.35,56.454 +277436,230.51,58.135 +277437,228.63,52.966 +277438,228.86,54.712 +277439,229.02,56.417 +277440,229.13,58.084 +277441,227.42,52.963 +277442,227.59,54.691 +277443,227.69,56.38 +277444,227.75,58.031 +277445,226.21,52.961 +277446,226.32,54.671 +277447,226.36,56.343 +277448,226.36,57.977 +277449,225.01,52.961 +277450,225.05,54.652 +277451,225.03,56.305 +277452,224.98,57.921 +277453,223.8,52.962 +277454,223.78,54.633 +277455,223.71,56.267 +277456,223.59,57.865 +277457,222.59,52.965 +277458,222.51,54.614 +277459,222.38,56.228 +277460,222.21,57.806 +277461,221.38,52.969 +277462,221.24,54.596 +277463,221.05,56.189 +277464,220.83,57.747 +277465,220.17,52.974 +277466,219.96,54.578 +277467,219.72,56.149 +277468,219.44,57.686 +277469,218.97,52.98 +277470,218.69,54.561 +277471,218.39,56.109 +277472,218.06,57.624 +277473,217.76,52.988 +277474,217.42,54.544 +277475,217.06,56.068 +277476,216.67,57.561 +277477,216.55,52.997 +277478,216.15,54.527 +277479,215.73,56.027 +277480,215.29,57.496 +277481,215.34,53.007 +277482,214.88,54.511 +277483,214.41,55.986 +277484,213.91,57.43 +277485,214.13,53.019 +277486,213.61,54.496 +277487,213.08,55.944 +277488,212.52,57.363 +277489,212.92,53.031 +277490,212.34,54.48 +277491,211.75,55.901 +277492,211.14,57.294 +277493,211.71,53.045 +277494,211.07,54.465 +277495,210.42,55.859 +277496,209.76,57.225 +277497,210.49,53.06 +277498,209.8,54.451 +277499,209.1,55.816 +277500,208.37,57.154 +277501,209.28,53.076 +277502,208.53,54.437 +277503,207.77,55.772 +277504,206.99,57.082 +277505,208.07,53.094 +277506,207.26,54.423 +277507,206.44,55.728 +277508,205.61,57.009 +277509,206.85,53.112 +277510,205.99,54.41 +277511,205.11,55.684 +277512,204.23,56.935 +277513,205.64,53.131 +277514,204.72,54.396 +277515,203.79,55.639 +277516,202.85,56.86 +277517,204.42,53.152 +277518,203.45,54.384 +277519,202.46,55.595 +277520,201.47,56.783 +277521,203.21,53.173 +277522,202.17,54.371 +277523,201.14,55.549 +277524,200.09,56.706 +277525,201.99,53.195 +277526,200.9,54.359 +277527,199.81,55.504 +277528,198.71,56.627 +277529,200.77,53.219 +277530,199.63,54.348 +277531,198.48,55.458 +277532,197.33,56.548 +277533,199.55,53.243 +277534,198.36,54.336 +277535,197.16,55.411 +277536,195.95,56.467 +277537,198.33,53.268 +277538,197.09,54.325 +277539,195.83,55.365 +277540,194.58,56.386 +277541,197.11,53.294 +277542,195.81,54.314 +277543,194.51,55.318 +277544,193.2,56.303 +277545,195.88,53.321 +277546,194.54,54.304 +277547,193.19,55.27 +277548,191.82,56.22 +277549,194.66,53.348 +277550,193.27,54.293 +277551,191.86,55.223 +277552,190.45,56.136 +277553,193.43,53.377 +277554,191.99,54.283 +277555,190.54,55.175 +277556,189.08,56.051 +277557,192.21,53.406 +277558,190.72,54.274 +277559,189.22,55.127 +277560,187.7,55.965 +277561,190.98,53.436 +277562,189.44,54.264 +277563,187.89,55.079 +277564,186.33,55.878 +277565,189.75,53.466 +277566,188.17,54.255 +277567,186.57,55.03 +277568,184.96,55.79 +277569,188.52,53.497 +277570,186.89,54.246 +277571,185.25,54.981 +277572,183.59,55.702 +277573,187.29,53.529 +277574,185.62,54.237 +277575,183.93,54.932 +277576,182.22,55.613 +277577,186.05,53.562 +277578,184.34,54.228 +277579,182.61,54.883 +277580,180.85,55.523 +277581,184.82,53.594 +277582,183.06,54.22 +277583,181.29,54.833 +277584,179.49,55.433 +277585,183.58,53.628 +277586,181.79,54.211 +277587,179.97,54.783 +277588,178.12,55.342 +277589,182.34,53.662 +277590,180.51,54.203 +277591,178.65,54.734 +277592,176.76,55.25 +277593,181.1,53.696 +277594,179.23,54.195 +277595,177.33,54.683 +277596,175.4,55.158 +277597,179.86,53.731 +277598,177.95,54.188 +277599,176.01,54.633 +277600,174.03,55.065 +277601,178.62,53.766 +277602,176.68,54.18 +277603,174.7,54.583 +277604,172.67,54.972 +277605,177.37,53.801 +277606,175.4,54.172 +277607,173.38,54.532 +277608,171.32,54.878 +277609,176.13,53.837 +277610,174.12,54.165 +277611,172.06,54.481 +277612,169.96,54.784 +277613,174.88,53.873 +277614,172.84,54.158 +277615,170.75,54.431 +277616,168.6,54.69 +277617,173.63,53.91 +277618,171.56,54.151 +277619,169.43,54.38 +277620,167.25,54.595 +277621,172.38,53.946 +277622,170.28,54.143 +277623,168.12,54.329 +277624,165.89,54.499 +277625,171.13,53.983 +277626,168.99,54.136 +277627,166.8,54.277 +277628,164.54,54.404 +277629,169.87,54.02 +277630,167.71,54.129 +277631,165.49,54.226 +277632,163.19,54.308 +277633,168.62,54.057 +277634,166.43,54.123 +277635,164.17,54.175 +277636,161.85,54.212 +277637,167.36,54.094 +277638,165.15,54.116 +277639,162.86,54.124 +277640,160.5,54.115 +277641,166.1,54.131 +277642,163.86,54.109 +277643,161.55,54.072 +277644,159.15,54.019 +277645,164.84,54.168 +277646,162.58,54.102 +277647,160.24,54.021 +277648,157.81,53.922 +277649,163.58,54.205 +277650,161.29,54.095 +277651,158.93,53.969 +277652,156.47,53.826 +277653,162.31,54.242 +277654,160.01,54.088 +277655,157.62,53.918 +277656,155.13,53.729 +277657,161.04,54.279 +277658,158.72,54.081 +277659,156.31,53.866 +277660,153.79,53.632 +277661,159.78,54.316 +277662,157.44,54.074 +277663,155,53.815 +277664,152.46,53.535 +277665,158.51,54.353 +277666,156.15,54.067 +277667,153.69,53.764 +277668,151.12,53.438 +277669,157.23,54.389 +277670,154.86,54.06 +277671,152.39,53.712 +277672,149.79,53.342 +277673,155.96,54.426 +277674,153.57,54.053 +277675,151.08,53.661 +277676,148.46,53.245 +277677,154.68,54.462 +277678,152.29,54.046 +277679,149.77,53.61 +277680,147.13,53.149 +277681,153.41,54.497 +277682,151,54.039 +277683,148.47,53.558 +277684,145.8,53.053 +277685,152.13,54.533 +277686,149.71,54.032 +277687,147.17,53.507 +277688,144.48,52.957 +277689,150.84,54.568 +277690,148.42,54.024 +277691,145.86,53.456 +277692,143.16,52.861 +277693,149.56,54.602 +277694,147.13,54.016 +277695,144.56,53.405 +277696,141.84,52.766 +277697,148.28,54.637 +277698,145.83,54.009 +277699,143.26,53.355 +277700,140.52,52.671 +277701,146.99,54.67 +277702,144.54,54.001 +277703,141.96,53.304 +277704,139.2,52.576 +277705,145.7,54.704 +277706,143.25,53.993 +277707,140.65,53.254 +277708,137.89,52.482 +277709,144.41,54.736 +277710,141.96,53.985 +277711,139.35,53.203 +277712,136.58,52.388 +277713,143.12,54.768 +277714,140.66,53.976 +277715,138.06,53.153 +277716,135.27,52.295 +277717,141.82,54.8 +277718,139.37,53.968 +277719,136.76,53.103 +277720,133.96,52.202 +277721,140.53,54.831 +277722,138.07,53.959 +277723,135.46,53.053 +277724,132.65,52.11 +277725,139.23,54.861 +277726,136.78,53.95 +277727,134.16,53.004 +277728,131.35,52.018 +277729,137.93,54.891 +277730,135.48,53.941 +277731,132.87,52.955 +277732,130.05,51.927 +277733,136.63,54.92 +277734,134.18,53.931 +277735,131.57,52.905 +277736,128.75,51.837 +277737,135.32,54.948 +277738,132.89,53.922 +277739,130.28,52.857 +277740,127.45,51.747 +277741,134.02,54.976 +277742,131.59,53.912 +277743,128.98,52.808 +277744,126.16,51.659 +277745,132.71,55.002 +277746,130.29,53.902 +277747,127.69,52.76 +277748,124.87,51.571 +277749,131.4,55.028 +277750,128.99,53.891 +277751,126.4,52.712 +277752,123.58,51.483 +277753,130.09,55.053 +277754,127.69,53.88 +277755,125.1,52.664 +277756,122.29,51.397 +277757,128.78,55.077 +277758,126.39,53.869 +277759,123.81,52.616 +277760,121,51.311 +277761,127.47,55.1 +277762,125.09,53.858 +277763,122.52,52.569 +277764,119.72,51.227 +277765,126.15,55.123 +277766,123.79,53.846 +277767,121.23,52.522 +277768,118.44,51.143 +277769,124.83,55.144 +277770,122.49,53.835 +277771,119.94,52.476 +277772,117.16,51.061 +277773,123.51,55.164 +277774,121.19,53.822 +277775,118.66,52.429 +277776,115.88,50.979 +277777,122.19,55.183 +277778,119.88,53.81 +277779,117.37,52.384 +277780,114.61,50.898 +277781,120.87,55.202 +277782,118.58,53.797 +277783,116.08,52.338 +277784,113.34,50.819 +277785,119.55,55.219 +277786,117.27,53.783 +277787,114.8,52.293 +277788,112.07,50.74 +277789,118.22,55.235 +277790,115.97,53.77 +277791,113.51,52.248 +277792,110.8,50.663 +277793,116.89,55.25 +277794,114.66,53.756 +277795,112.23,52.204 +277796,109.53,50.587 +277797,115.56,55.264 +277798,113.36,53.741 +277799,110.94,52.16 +277800,108.27,50.512 +277801,114.23,55.277 +277802,112.05,53.726 +277803,109.66,52.116 +277804,107.01,50.438 +277805,112.9,55.288 +277806,110.75,53.711 +277807,108.38,52.073 +277808,105.75,50.366 +277809,111.57,55.299 +277810,109.44,53.695 +277811,107.1,52.03 +277812,104.5,50.295 +277813,110.23,55.308 +277814,108.13,53.679 +277815,105.82,51.988 +277816,103.24,50.225 +277817,108.9,55.316 +277818,106.82,53.663 +277819,104.54,51.946 +277820,101.99,50.157 +277821,107.56,55.323 +277822,105.51,53.646 +277823,103.26,51.904 +277824,100.74,50.089 +277825,106.22,55.328 +277826,104.2,53.629 +277827,101.98,51.863 +277828,99.492,50.024 +277829,104.88,55.332 +277830,102.89,53.611 +277831,100.7,51.823 +277832,98.246,49.959 +277833,103.54,55.335 +277834,101.58,53.593 +277835,99.424,51.783 +277836,97.003,49.896 +277837,102.19,55.336 +277838,100.27,53.574 +277839,98.147,51.743 +277840,95.761,49.835 +277841,100.85,55.337 +277842,98.962,53.555 +277843,96.871,51.704 +277844,94.522,49.775 +277845,99.502,55.335 +277846,97.651,53.535 +277847,95.595,51.665 +277848,93.284,49.716 +277849,98.154,55.333 +277850,96.339,53.515 +277851,94.321,51.627 +277852,92.048,49.659 +277853,96.805,55.329 +277854,95.026,53.495 +277855,93.046,51.589 +277856,90.815,49.604 +277857,95.455,55.323 +277858,93.714,53.474 +277859,91.773,51.552 +277860,89.583,49.55 +277861,94.104,55.317 +277862,92.4,53.452 +277863,90.5,51.516 +277864,88.353,49.497 +277865,92.751,55.308 +277866,91.087,53.43 +277867,89.227,51.479 +277868,87.125,49.447 +277869,91.397,55.299 +277870,89.773,53.408 +277871,87.956,51.444 +277872,85.898,49.397 +277873,90.043,55.288 +277874,88.458,53.385 +277875,86.684,51.409 +277876,84.673,49.35 +277877,88.687,55.275 +277878,87.144,53.361 +277879,85.414,51.374 +277880,83.45,49.304 +277881,87.33,55.261 +277882,85.828,53.337 +277883,84.143,51.34 +277884,82.229,49.259 +277885,85.972,55.246 +277886,84.513,53.313 +277887,82.874,51.306 +277888,81.009,49.217 +277889,84.612,55.229 +277890,83.197,53.288 +277891,81.605,51.273 +277892,79.791,49.176 +277893,83.252,55.21 +277894,81.881,53.262 +277895,80.336,51.241 +277896,78.574,49.136 +277897,81.891,55.19 +277898,80.565,53.237 +277899,79.068,51.209 +277900,77.359,49.098 +277901,80.529,55.169 +277902,79.248,53.21 +277903,77.8,51.178 +277904,76.145,49.062 +277905,79.166,55.145 +277906,77.931,53.183 +277907,76.533,51.147 +277908,74.933,49.028 +277909,77.803,55.121 +277910,76.614,53.155 +277911,75.266,51.117 +277912,73.722,48.995 +277913,76.438,55.095 +277914,75.296,53.127 +277915,74,51.087 +277916,72.512,48.964 +277917,75.073,55.067 +277918,73.979,53.099 +277919,72.734,51.058 +277920,71.303,48.935 +277921,73.706,55.038 +277922,72.661,53.07 +277923,71.469,51.029 +277924,70.096,48.907 +277925,72.339,55.007 +277926,71.342,53.04 +277927,70.203,51.001 +277928,68.89,48.882 +277929,70.972,54.975 +277930,70.024,53.01 +277931,68.939,50.973 +277932,67.684,48.857 +277933,69.603,54.941 +277934,68.705,52.979 +277935,67.674,50.946 +277936,66.48,48.835 +277937,68.234,54.906 +277938,67.387,52.948 +277939,66.41,50.92 +277940,65.277,48.814 +277941,66.865,54.869 +277942,66.068,52.916 +277943,65.147,50.894 +277944,64.074,48.795 +277945,65.494,54.831 +277946,64.749,52.884 +277947,63.883,50.869 +277948,62.872,48.777 +277949,64.124,54.791 +277950,63.429,52.851 +277951,62.62,50.844 +277952,61.672,48.762 +277953,62.752,54.749 +277954,62.11,52.818 +277955,61.358,50.82 +277956,60.471,48.748 +277957,61.381,54.706 +277958,60.79,52.784 +277959,60.095,50.796 +277960,59.272,48.735 +277961,60.008,54.662 +277962,59.471,52.75 +277963,58.833,50.773 +277964,58.073,48.725 +277965,58.636,54.616 +277966,58.151,52.715 +277967,57.571,50.75 +277968,56.875,48.715 +277969,57.263,54.568 +277970,56.831,52.68 +277971,56.309,50.728 +277972,55.677,48.708 +277973,55.889,54.519 +277974,55.511,52.644 +277975,55.047,50.707 +277976,54.479,48.702 +277977,54.515,54.468 +277978,54.192,52.607 +277979,53.786,50.686 +277980,53.282,48.698 +277981,53.142,54.416 +277982,52.872,52.571 +277983,52.525,50.665 +277984,52.086,48.695 +277985,51.767,54.363 +277986,51.552,52.533 +277987,51.264,50.645 +277988,50.889,48.694 +277989,50.393,54.307 +277990,50.232,52.495 +277991,50.003,50.626 +277992,49.693,48.695 +277993,49.018,54.251 +277994,48.912,52.457 +277995,48.742,50.607 +277996,48.497,48.697 +277997,47.644,54.193 +277998,47.592,52.418 +277999,47.481,50.589 +278000,47.3,48.701 +278001,46.269,54.133 +278002,46.272,52.379 +278003,46.22,50.571 +278004,46.104,48.706 +278005,44.894,54.072 +278006,44.952,52.339 +278007,44.96,50.554 +278008,44.908,48.713 +278009,43.519,54.01 +278010,43.632,52.299 +278011,43.699,50.537 +278012,43.712,48.721 +278013,42.144,53.946 +278014,42.313,52.258 +278015,42.439,50.52 +278016,42.516,48.731 +278017,40.769,53.881 +278018,40.993,52.217 +278019,41.179,50.504 +278020,41.319,48.742 +278021,39.394,53.815 +278022,39.674,52.175 +278023,39.918,50.489 +278024,40.122,48.754 +278025,38.019,53.747 +278026,38.354,52.133 +278027,38.658,50.474 +278028,38.925,48.768 +278029,36.645,53.677 +278030,37.035,52.09 +278031,37.397,50.46 +278032,37.727,48.784 +278033,35.271,53.607 +278034,35.716,52.047 +278035,36.137,50.446 +278036,36.529,48.8 +278037,33.896,53.535 +278038,34.397,52.004 +278039,34.876,50.432 +278040,35.331,48.818 +278041,32.523,53.462 +278042,33.078,51.96 +278043,33.615,50.419 +278044,34.132,48.838 +278045,31.149,53.387 +278046,31.76,51.916 +278047,32.355,50.406 +278048,32.932,48.858 +278049,29.776,53.311 +278050,30.441,51.871 +278051,31.094,50.394 +278052,31.732,48.88 +278053,28.403,53.234 +278054,29.123,51.826 +278055,29.833,50.382 +278056,30.531,48.903 +278057,27.031,53.156 +278058,27.805,51.78 +278059,28.572,50.371 +278060,29.329,48.928 +278061,25.659,53.077 +278062,26.488,51.735 +278063,27.311,50.36 +278064,28.126,48.953 +278065,24.287,52.996 +278066,25.17,51.688 +278067,26.049,50.349 +278068,26.923,48.98 +278069,22.916,52.914 +278070,23.853,51.642 +278071,24.788,50.339 +278072,25.719,49.007 +278073,21.546,52.831 +278074,22.537,51.595 +278075,23.526,50.329 +278076,24.513,49.036 +278077,20.176,52.747 +278078,21.22,51.547 +278079,22.264,50.32 +278080,23.307,49.066 +278081,18.807,52.662 +278082,19.904,51.5 +278083,21.002,50.311 +278084,22.1,49.097 +278085,17.438,52.576 +278086,18.588,51.451 +278087,19.739,50.302 +278088,20.892,49.129 +278089,16.07,52.489 +278090,17.273,51.403 +278091,18.476,50.294 +278092,19.682,49.161 +278093,14.703,52.401 +278094,15.958,51.354 +278095,17.213,50.286 +278096,18.472,49.195 +278097,13.337,52.311 +278098,14.643,51.305 +278099,15.95,50.278 +278100,17.26,49.23 +278101,11.972,52.221 +278102,13.329,51.256 +278103,14.687,50.27 +278104,16.047,49.265 +278105,10.607,52.13 +278106,12.015,51.207 +278107,13.423,50.263 +278108,14.833,49.301 +278109,9.2436,52.038 +278110,10.701,51.157 +278111,12.159,50.256 +278112,13.617,49.339 +278113,7.8809,51.946 +278114,9.388,51.107 +278115,10.894,50.25 +278116,12.4,49.376 +278117,6.5192,51.852 +278118,8.0754,51.056 +278119,9.6292,50.244 +278120,11.182,49.415 +278121,5.1585,51.757 +278122,6.7632,51.006 +278123,8.3639,50.237 +278124,9.962,49.454 +278125,3.7989,51.662 +278126,5.4515,50.955 +278127,7.0984,50.232 +278128,8.7408,49.494 +278129,2.4403,51.566 +278130,4.1402,50.904 +278131,5.8324,50.226 +278132,7.5182,49.534 +278133,1.0829,51.47 +278134,2.8295,50.853 +278135,4.566,50.221 +278136,6.2941,49.575 +278137,359.73,51.372 +278138,1.5192,50.801 +278139,3.2993,50.216 +278140,5.0684,49.617 +278141,358.37,51.274 +278142,0.20952,50.75 +278143,2.0321,50.211 +278144,3.8412,49.659 +278145,357.02,51.176 +278146,358.9,50.698 +278147,0.7645,50.206 +278148,2.6124,49.701 +278149,355.67,51.077 +278150,357.59,50.646 +278151,359.5,50.201 +278152,1.3819,49.744 +278153,354.31,50.977 +278154,356.28,50.594 +278155,358.23,50.197 +278156,0.14988,49.788 +278157,352.96,50.877 +278158,354.98,50.541 +278159,356.96,50.192 +278160,358.92,49.831 +278161,351.62,50.776 +278162,353.67,50.489 +278163,355.69,50.188 +278164,357.68,49.875 +278165,350.27,50.675 +278166,352.36,50.437 +278167,354.42,50.184 +278168,356.44,49.919 +278169,348.92,50.574 +278170,351.06,50.384 +278171,353.15,50.18 +278172,355.2,49.964 +278173,347.58,50.472 +278174,349.75,50.331 +278175,351.88,50.176 +278176,353.96,50.008 +278177,346.24,50.37 +278178,348.45,50.279 +278179,350.61,50.172 +278180,352.72,50.053 +278181,344.9,50.267 +278182,347.14,50.226 +278183,349.34,50.169 +278184,351.48,50.098 +278185,343.56,50.164 +278186,345.84,50.173 +278187,348.06,50.165 +278188,350.23,50.143 +278189,342.22,50.062 +278190,344.54,50.12 +278191,346.79,50.162 +278192,348.98,50.188 +278193,340.88,49.959 +278194,343.24,50.067 +278195,345.52,50.158 +278196,347.74,50.233 +278197,339.55,49.855 +278198,341.93,50.014 +278199,344.24,50.154 +278200,346.48,50.278 +278201,338.21,49.752 +278202,340.63,49.961 +278203,342.97,50.151 +278204,345.23,50.323 +278205,336.88,49.649 +278206,339.33,49.908 +278207,341.69,50.147 +278208,343.98,50.368 +278209,335.55,49.546 +278210,338.03,49.856 +278211,340.42,50.144 +278212,342.72,50.413 +278213,334.23,49.442 +278214,336.74,49.803 +278215,339.14,50.14 +278216,341.46,50.458 +278217,332.9,49.339 +278218,335.44,49.75 +278219,337.87,50.137 +278220,340.2,50.502 +278221,331.58,49.236 +278222,334.14,49.697 +278223,336.59,50.133 +278224,338.94,50.546 +278225,330.26,49.133 +278226,332.84,49.645 +278227,335.31,50.129 +278228,337.67,50.59 +278229,328.94,49.03 +278230,331.55,49.592 +278231,334.03,50.126 +278232,336.41,50.634 +278233,327.62,48.928 +278234,330.25,49.54 +278235,332.75,50.122 +278236,335.14,50.677 +278237,326.3,48.826 +278238,328.96,49.488 +278239,331.47,50.118 +278240,333.87,50.72 +278241,324.99,48.724 +278242,327.66,49.435 +278243,330.19,50.114 +278244,332.6,50.762 +278245,323.68,48.622 +278246,326.37,49.383 +278247,328.91,50.109 +278248,331.32,50.804 +278249,322.37,48.521 +278250,325.08,49.332 +278251,327.63,50.105 +278252,330.05,50.845 +278253,321.06,48.421 +278254,323.79,49.28 +278255,326.35,50.1 +278256,328.77,50.886 +278257,319.76,48.32 +278258,322.5,49.229 +278259,325.07,50.096 +278260,327.49,50.926 +278261,318.45,48.221 +278262,321.21,49.177 +278263,323.79,50.091 +278264,326.21,50.966 +278265,317.15,48.122 +278266,319.92,49.126 +278267,322.5,50.086 +278268,324.93,51.005 +278269,315.85,48.023 +278270,318.63,49.075 +278271,321.22,50.08 +278272,323.64,51.044 +278273,314.56,47.925 +278274,317.34,49.025 +278275,319.93,50.075 +278276,322.36,51.081 +278277,313.26,47.828 +278278,316.06,48.975 +278279,318.65,50.069 +278280,321.07,51.118 +278281,311.97,47.732 +278282,314.77,48.925 +278283,317.36,50.063 +278284,319.78,51.154 +278285,310.68,47.636 +278286,313.49,48.875 +278287,316.08,50.057 +278288,318.49,51.19 +278289,309.39,47.541 +278290,312.2,48.825 +278291,314.79,50.051 +278292,317.19,51.224 +278293,308.1,47.447 +278294,310.92,48.776 +278295,313.5,50.044 +278296,315.9,51.258 +278297,306.82,47.354 +278298,309.63,48.727 +278299,312.21,50.037 +278300,314.6,51.291 +278301,305.54,47.262 +278302,308.35,48.679 +278303,310.92,50.03 +278304,313.3,51.323 +278305,304.26,47.171 +278306,307.07,48.631 +278307,309.64,50.022 +278308,312,51.354 +278309,302.99,47.081 +278310,305.79,48.583 +278311,308.35,50.014 +278312,310.7,51.384 +278313,301.71,46.992 +278314,304.51,48.536 +278315,307.05,50.006 +278316,309.39,51.413 +278317,300.44,46.904 +278318,303.23,48.488 +278319,305.76,49.998 +278320,308.09,51.441 +278321,299.17,46.817 +278322,301.95,48.442 +278323,304.47,49.989 +278324,306.78,51.468 +278325,297.9,46.731 +278326,300.68,48.395 +278327,303.18,49.98 +278328,305.47,51.494 +278329,296.64,46.646 +278330,299.4,48.35 +278331,301.89,49.97 +278332,304.16,51.519 +278333,295.38,46.563 +278334,298.12,48.304 +278335,300.59,49.96 +278336,302.85,51.542 +278337,294.12,46.481 +278338,296.85,48.259 +278339,299.3,49.95 +278340,301.53,51.565 +278341,292.86,46.4 +278342,295.57,48.215 +278343,298.01,49.939 +278344,300.22,51.586 +278345,291.6,46.321 +278346,294.3,48.17 +278347,296.71,49.928 +278348,298.9,51.606 +278349,290.35,46.243 +278350,293.03,48.127 +278351,295.42,49.917 +278352,297.58,51.625 +278353,289.1,46.166 +278354,291.76,48.084 +278355,294.12,49.905 +278356,296.26,51.643 +278357,287.85,46.091 +278358,290.48,48.041 +278359,292.83,49.892 +278360,294.94,51.659 +278361,286.61,46.017 +278362,289.21,47.999 +278363,291.53,49.88 +278364,293.61,51.674 +278365,285.36,45.945 +278366,287.94,47.957 +278367,290.23,49.866 +278368,292.29,51.688 +278369,284.12,45.874 +278370,286.67,47.916 +278371,288.93,49.853 +278372,290.96,51.7 +278373,282.88,45.805 +278374,285.41,47.875 +278375,287.64,49.839 +278376,289.64,51.711 +278377,281.64,45.737 +278378,284.14,47.835 +278379,286.34,49.824 +278380,288.31,51.721 +278381,280.41,45.671 +278382,282.87,47.795 +278383,285.04,49.809 +278384,286.98,51.729 +278385,279.17,45.607 +278386,281.6,47.756 +278387,283.74,49.794 +278388,285.64,51.736 +278389,277.94,45.544 +278390,280.34,47.718 +278391,282.44,49.778 +278392,284.31,51.741 +278393,276.71,45.483 +278394,279.07,47.68 +278395,281.14,49.761 +278396,282.98,51.745 +278397,275.49,45.424 +278398,277.81,47.642 +278399,279.84,49.744 +278400,281.64,51.747 +278401,274.26,45.366 +278402,276.55,47.605 +278403,278.54,49.727 +278404,280.3,51.748 +278405,273.04,45.31 +278406,275.28,47.569 +278407,277.24,49.709 +278408,278.96,51.748 +278409,271.82,45.256 +278410,274.02,47.533 +278411,275.93,49.691 +278412,277.63,51.746 +278413,270.6,45.204 +278414,272.76,47.498 +278415,274.63,49.672 +278416,276.28,51.742 +278417,269.38,45.153 +278418,271.5,47.464 +278419,273.33,49.652 +278420,274.94,51.737 +278421,268.17,45.105 +278422,270.24,47.43 +278423,272.03,49.632 +278424,273.6,51.73 +278425,266.95,45.058 +278426,268.98,47.396 +278427,270.72,49.612 +278428,272.26,51.722 +278429,265.74,45.013 +278430,267.72,47.364 +278431,269.42,49.591 +278432,270.91,51.712 +278433,264.53,44.97 +278434,266.46,47.332 +278435,268.11,49.569 +278436,269.56,51.701 +278437,263.33,44.929 +278438,265.2,47.3 +278439,266.81,49.547 +278440,268.22,51.688 +278441,262.12,44.889 +278442,263.94,47.269 +278443,265.5,49.525 +278444,266.87,51.673 +278445,260.91,44.852 +278446,262.68,47.239 +278447,264.2,49.501 +278448,265.52,51.657 +278449,259.71,44.816 +278450,261.43,47.209 +278451,262.89,49.478 +278452,264.17,51.639 +278453,258.51,44.783 +278454,260.17,47.18 +278455,261.59,49.453 +278456,262.82,51.62 +278457,257.31,44.751 +278458,258.91,47.152 +278459,260.28,49.429 +278460,261.47,51.599 +278461,256.11,44.721 +278462,257.66,47.124 +278463,258.98,49.403 +278464,260.12,51.576 +278465,254.91,44.693 +278466,256.4,47.097 +278467,257.67,49.377 +278468,258.76,51.552 +278469,253.71,44.668 +278470,255.15,47.071 +278471,256.36,49.351 +278472,257.41,51.526 +278473,252.52,44.644 +278474,253.89,47.045 +278475,255.06,49.324 +278476,256.06,51.498 +278477,251.32,44.622 +278478,252.64,47.02 +278479,253.75,49.297 +278480,254.7,51.469 +278481,250.13,44.602 +278482,251.39,46.995 +278483,252.44,49.268 +278484,253.35,51.438 +278485,248.94,44.583 +278486,250.13,46.971 +278487,251.14,49.24 +278488,251.99,51.405 +278489,247.75,44.567 +278490,248.88,46.948 +278491,249.83,49.211 +278492,250.63,51.371 +278493,246.56,44.553 +278494,247.63,46.925 +278495,248.52,49.181 +278496,249.27,51.335 +278497,245.37,44.541 +278498,246.38,46.903 +278499,247.21,49.151 +278500,247.92,51.298 +278501,244.18,44.53 +278502,245.13,46.882 +278503,245.91,49.12 +278504,246.56,51.259 +278505,242.99,44.522 +278506,243.87,46.861 +278507,244.6,49.088 +278508,245.2,51.218 +278509,241.81,44.515 +278510,242.62,46.841 +278511,243.29,49.056 +278512,243.84,51.175 +278513,240.62,44.51 +278514,241.37,46.822 +278515,241.98,49.024 +278516,242.48,51.131 +278517,239.43,44.507 +278518,240.12,46.803 +278519,240.68,48.991 +278520,241.12,51.085 +278521,238.25,44.506 +278522,238.87,46.784 +278523,239.37,48.957 +278524,239.76,51.038 +278525,237.06,44.507 +278526,237.62,46.767 +278527,238.06,48.923 +278528,238.4,50.989 +278529,235.88,44.51 +278530,236.37,46.75 +278531,236.75,48.889 +278532,237.04,50.939 +278533,234.69,44.514 +278534,235.12,46.733 +278535,235.44,48.854 +278536,235.68,50.886 +278537,233.51,44.521 +278538,233.87,46.718 +278539,234.13,48.818 +278540,234.32,50.833 +278541,232.32,44.529 +278542,232.62,46.703 +278543,232.83,48.782 +278544,232.96,50.777 +278545,231.14,44.539 +278546,231.37,46.688 +278547,231.52,48.745 +278548,231.59,50.72 +278549,229.96,44.55 +278550,230.12,46.674 +278551,230.21,48.708 +278552,230.23,50.662 +278553,228.77,44.564 +278554,228.87,46.661 +278555,228.9,48.67 +278556,228.87,50.602 +278557,227.59,44.579 +278558,227.63,46.648 +278559,227.59,48.632 +278560,227.51,50.54 +278561,226.4,44.595 +278562,226.38,46.635 +278563,226.29,48.593 +278564,226.15,50.477 +278565,225.22,44.614 +278566,225.13,46.624 +278567,224.98,48.554 +278568,224.79,50.412 +278569,224.03,44.634 +278570,223.88,46.613 +278571,223.67,48.514 +278572,223.43,50.346 +278573,222.85,44.655 +278574,222.63,46.602 +278575,222.36,48.474 +278576,222.07,50.279 +278577,221.66,44.678 +278578,221.38,46.592 +278579,221.06,48.434 +278580,220.7,50.21 +278581,220.48,44.703 +278582,220.13,46.583 +278583,219.75,48.393 +278584,219.34,50.139 +278585,219.29,44.729 +278586,218.88,46.574 +278587,218.44,48.351 +278588,217.98,50.067 +278589,218.1,44.757 +278590,217.63,46.565 +278591,217.14,48.309 +278592,216.62,49.994 +278593,216.92,44.786 +278594,216.38,46.557 +278595,215.83,48.267 +278596,215.26,49.919 +278597,215.73,44.817 +278598,215.13,46.55 +278599,214.52,48.224 +278600,213.9,49.843 +278601,214.54,44.849 +278602,213.88,46.543 +278603,213.22,48.181 +278604,212.55,49.765 +278605,213.35,44.882 +278606,212.63,46.536 +278607,211.91,48.137 +278608,211.19,49.687 +278609,212.16,44.917 +278610,211.38,46.53 +278611,210.61,48.093 +278612,209.83,49.607 +278613,210.97,44.953 +278614,210.13,46.525 +278615,209.3,48.048 +278616,208.47,49.525 +278617,209.77,44.99 +278618,208.88,46.52 +278619,208,48.003 +278620,207.12,49.442 +278621,208.58,45.029 +278622,207.63,46.515 +278623,206.69,47.958 +278624,205.76,49.359 +278625,207.38,45.068 +278626,206.38,46.511 +278627,205.39,47.912 +278628,204.4,49.273 +278629,206.19,45.109 +278630,205.13,46.507 +278631,204.09,47.866 +278632,203.05,49.187 +278633,204.99,45.151 +278634,203.88,46.504 +278635,202.78,47.82 +278636,201.69,49.1 +278637,203.79,45.194 +278638,202.63,46.501 +278639,201.48,47.773 +278640,200.34,49.011 +278641,202.59,45.238 +278642,201.38,46.499 +278643,200.18,47.726 +278644,198.99,48.921 +278645,201.39,45.283 +278646,200.13,46.497 +278647,198.87,47.679 +278648,197.64,48.831 +278649,200.19,45.329 +278650,198.87,46.495 +278651,197.57,47.631 +278652,196.28,48.739 +278653,198.99,45.376 +278654,197.62,46.493 +278655,196.27,47.583 +278656,194.93,48.646 +278657,197.78,45.424 +278658,196.37,46.492 +278659,194.97,47.535 +278660,193.58,48.552 +278661,196.58,45.473 +278662,195.12,46.492 +278663,193.67,47.487 +278664,192.24,48.457 +278665,195.37,45.523 +278666,193.86,46.491 +278667,192.37,47.438 +278668,190.89,48.362 +278669,194.16,45.573 +278670,192.61,46.491 +278671,191.07,47.389 +278672,189.54,48.265 +278673,192.95,45.624 +278674,191.35,46.491 +278675,189.77,47.339 +278676,188.2,48.167 +278677,191.74,45.676 +278678,190.1,46.492 +278679,188.47,47.29 +278680,186.85,48.069 +278681,190.53,45.728 +278682,188.84,46.493 +278683,187.17,47.24 +278684,185.51,47.97 +278685,189.31,45.781 +278686,187.59,46.494 +278687,185.87,47.19 +278688,184.17,47.87 +278689,188.09,45.835 +278690,186.33,46.495 +278691,184.58,47.14 +278692,182.83,47.769 +278693,186.88,45.889 +278694,185.08,46.496 +278695,183.28,47.09 +278696,181.49,47.668 +278697,185.66,45.943 +278698,183.82,46.498 +278699,181.99,47.04 +278700,180.15,47.566 +278701,184.43,45.998 +278702,182.56,46.5 +278703,180.69,46.989 +278704,178.81,47.464 +278705,183.21,46.054 +278706,181.31,46.502 +278707,179.39,46.938 +278708,177.48,47.36 +278709,181.99,46.109 +278710,180.05,46.505 +278711,178.1,46.887 +278712,176.14,47.257 +278713,180.76,46.166 +278714,178.79,46.507 +278715,176.81,46.836 +278716,174.81,47.153 +278717,179.53,46.222 +278718,177.53,46.51 +278719,175.51,46.785 +278720,173.48,47.048 +278721,178.3,46.279 +278722,176.27,46.512 +278723,174.22,46.734 +278724,172.15,46.943 +278725,177.07,46.335 +278726,175.01,46.515 +278727,172.93,46.683 +278728,170.82,46.837 +278729,175.83,46.392 +278730,173.75,46.518 +278731,171.64,46.632 +278732,169.5,46.732 +278733,174.6,46.449 +278734,172.49,46.521 +278735,170.35,46.58 +278736,168.17,46.625 +278737,173.36,46.507 +278738,171.23,46.524 +278739,169.06,46.529 +278740,166.85,46.519 +278741,172.12,46.564 +278742,169.96,46.528 +278743,167.77,46.478 +278744,165.53,46.412 +278745,170.88,46.621 +278746,168.7,46.531 +278747,166.48,46.426 +278748,164.21,46.306 +278749,169.63,46.678 +278750,167.44,46.534 +278751,165.19,46.375 +278752,162.89,46.199 +278753,168.39,46.735 +278754,166.18,46.538 +278755,163.9,46.324 +278756,161.57,46.092 +278757,167.14,46.792 +278758,164.91,46.541 +278759,162.62,46.273 +278760,160.26,45.985 +278761,165.89,46.849 +278762,163.65,46.544 +278763,161.33,46.221 +278764,158.94,45.878 +278765,164.64,46.905 +278766,162.38,46.548 +278767,160.05,46.17 +278768,157.63,45.771 +278769,163.39,46.961 +278770,161.11,46.551 +278771,158.76,46.119 +278772,156.32,45.664 +278773,162.13,47.017 +278774,159.85,46.554 +278775,157.48,46.068 +278776,155.02,45.557 +278777,160.88,47.073 +278778,158.58,46.558 +278779,156.2,46.018 +278780,153.71,45.45 +278781,159.62,47.128 +278782,157.31,46.561 +278783,154.91,45.967 +278784,152.41,45.344 +278785,158.36,47.183 +278786,156.05,46.564 +278787,153.63,45.916 +278788,151.1,45.238 +278789,157.09,47.238 +278790,154.78,46.567 +278791,152.35,45.866 +278792,149.81,45.132 +278793,155.83,47.291 +278794,153.51,46.57 +278795,151.07,45.816 +278796,148.51,45.026 +278797,154.56,47.345 +278798,152.24,46.573 +278799,149.79,45.766 +278800,147.21,44.921 +278801,153.3,47.398 +278802,150.97,46.575 +278803,148.51,45.716 +278804,145.92,44.817 +278805,152.03,47.45 +278806,149.7,46.578 +278807,147.24,45.667 +278808,144.63,44.712 +278809,150.75,47.502 +278810,148.42,46.58 +278811,145.96,45.617 +278812,143.34,44.609 +278813,149.48,47.553 +278814,147.15,46.582 +278815,144.68,45.568 +278816,142.05,44.506 +278817,148.2,47.603 +278818,145.88,46.584 +278819,143.41,45.52 +278820,140.77,44.403 +278821,146.93,47.652 +278822,144.61,46.586 +278823,142.13,45.471 +278824,139.48,44.302 +278825,145.65,47.701 +278826,143.33,46.587 +278827,140.86,45.423 +278828,138.2,44.201 +278829,144.37,47.749 +278830,142.06,46.589 +278831,139.59,45.375 +278832,136.92,44.1 +278833,143.08,47.796 +278834,140.78,46.59 +278835,138.32,45.327 +278836,135.65,44.001 +278837,141.8,47.842 +278838,139.51,46.591 +278839,137.04,45.28 +278840,134.37,43.902 +278841,140.51,47.888 +278842,138.23,46.591 +278843,135.77,45.233 +278844,133.1,43.805 +278845,139.23,47.932 +278846,136.95,46.592 +278847,134.5,45.187 +278848,131.83,43.708 +278849,137.94,47.975 +278850,135.68,46.592 +278851,133.23,45.14 +278852,130.57,43.612 +278853,136.64,48.018 +278854,134.4,46.591 +278855,131.97,45.095 +278856,129.3,43.517 +278857,135.35,48.059 +278858,133.12,46.591 +278859,130.7,45.049 +278860,128.04,43.424 +278861,134.06,48.099 +278862,131.84,46.59 +278863,129.43,45.004 +278864,126.78,43.331 +278865,132.76,48.139 +278866,130.56,46.589 +278867,128.17,44.96 +278868,125.52,43.24 +278869,131.46,48.177 +278870,129.28,46.587 +278871,126.9,44.916 +278872,124.27,43.15 +278873,130.16,48.214 +278874,128,46.585 +278875,125.64,44.872 +278876,123.01,43.061 +278877,128.86,48.249 +278878,126.72,46.583 +278879,124.37,44.829 +278880,121.76,42.973 +278881,127.56,48.284 +278882,125.44,46.58 +278883,123.11,44.786 +278884,120.51,42.887 +278885,126.25,48.317 +278886,124.16,46.577 +278887,121.85,44.744 +278888,119.27,42.802 +278889,124.95,48.35 +278890,122.87,46.574 +278891,120.59,44.702 +278892,118.02,42.718 +278893,123.64,48.38 +278894,121.59,46.57 +278895,119.32,44.661 +278896,116.78,42.636 +278897,122.33,48.41 +278898,120.31,46.566 +278899,118.06,44.62 +278900,115.54,42.556 +278901,121.02,48.438 +278902,119.02,46.561 +278903,116.81,44.58 +278904,114.3,42.477 +278905,119.71,48.465 +278906,117.74,46.556 +278907,115.55,44.541 +278908,113.07,42.4 +278909,118.39,48.49 +278910,116.45,46.551 +278911,114.29,44.502 +278912,111.84,42.324 +278913,117.08,48.514 +278914,115.17,46.545 +278915,113.03,44.463 +278916,110.6,42.25 +278917,115.76,48.537 +278918,113.88,46.538 +278919,111.78,44.425 +278920,109.38,42.177 +278921,114.45,48.558 +278922,112.6,46.531 +278923,110.52,44.388 +278924,108.15,42.106 +278925,113.13,48.578 +278926,111.31,46.524 +278927,109.26,44.351 +278928,106.93,42.037 +278929,111.81,48.596 +278930,110.02,46.516 +278931,108.01,44.315 +278932,105.7,41.97 +278933,110.49,48.613 +278934,108.73,46.508 +278935,106.76,44.28 +278936,104.48,41.905 +278937,109.16,48.628 +278938,107.45,46.499 +278939,105.5,44.245 +278940,103.27,41.841 +278941,107.84,48.642 +278942,106.16,46.49 +278943,104.25,44.211 +278944,102.05,41.779 +278945,106.52,48.654 +278946,104.87,46.48 +278947,103,44.177 +278948,100.84,41.72 +278949,105.19,48.664 +278950,103.58,46.47 +278951,101.75,44.144 +278952,99.626,41.662 +278953,103.86,48.673 +278954,102.29,46.459 +278955,100.5,44.112 +278956,98.416,41.606 +278957,102.53,48.681 +278958,101,46.448 +278959,99.248,44.08 +278960,97.209,41.552 +278961,101.21,48.686 +278962,99.709,46.436 +278963,97.999,44.05 +278964,96.003,41.5 +278965,99.875,48.691 +278966,98.418,46.423 +278967,96.75,44.019 +278968,94.799,41.45 +278969,98.544,48.693 +278970,97.127,46.411 +278971,95.502,43.99 +278972,93.596,41.402 +278973,97.212,48.694 +278974,95.836,46.397 +278975,94.254,43.961 +278976,92.396,41.356 +278977,95.878,48.693 +278978,94.544,46.383 +278979,93.007,43.933 +278980,91.197,41.313 +278981,94.544,48.691 +278982,93.252,46.368 +278983,91.761,43.905 +278984,90,41.271 +278985,93.21,48.686 +278986,91.96,46.353 +278987,90.515,43.878 +278988,88.804,41.231 +278989,91.874,48.68 +278990,90.668,46.338 +278991,89.269,43.852 +278992,87.611,41.194 +278993,90.537,48.673 +278994,89.375,46.322 +278995,88.024,43.827 +278996,86.418,41.159 +278997,89.2,48.664 +278998,88.082,46.305 +278999,86.779,43.802 +279000,85.227,41.126 +279001,87.862,48.653 +279002,86.789,46.287 +279003,85.535,43.778 +279004,84.038,41.095 +279005,86.523,48.64 +279006,85.496,46.269 +279007,84.292,43.755 +279008,82.849,41.066 +279009,85.184,48.625 +279010,84.202,46.251 +279011,83.048,43.732 +279012,81.662,41.039 +279013,83.844,48.609 +279014,82.908,46.232 +279015,81.805,43.711 +279016,80.477,41.015 +279017,82.503,48.591 +279018,81.614,46.212 +279019,80.563,43.689 +279020,79.292,40.993 +279021,81.162,48.571 +279022,80.32,46.192 +279023,79.321,43.669 +279024,78.109,40.973 +279025,79.82,48.55 +279026,79.026,46.171 +279027,78.079,43.65 +279028,76.927,40.955 +279029,78.478,48.527 +279030,77.732,46.15 +279031,76.838,43.631 +279032,75.745,40.939 +279033,77.135,48.502 +279034,76.437,46.128 +279035,75.597,43.612 +279036,74.565,40.926 +279037,75.792,48.475 +279038,75.143,46.106 +279039,74.356,43.595 +279040,73.385,40.915 +279041,74.449,48.447 +279042,73.848,46.083 +279043,73.116,43.578 +279044,72.207,40.906 +279045,73.105,48.417 +279046,72.553,46.059 +279047,71.875,43.562 +279048,71.028,40.899 +279049,71.761,48.385 +279050,71.258,46.035 +279051,70.636,43.547 +279052,69.851,40.894 +279053,70.416,48.351 +279054,69.963,46.01 +279055,69.396,43.533 +279056,68.674,40.892 +279057,69.071,48.316 +279058,68.668,45.985 +279059,68.156,43.519 +279060,67.498,40.891 +279061,67.726,48.279 +279062,67.373,45.959 +279063,66.917,43.506 +279064,66.322,40.893 +279065,66.381,48.24 +279066,66.078,45.933 +279067,65.678,43.493 +279068,65.147,40.897 +279069,65.036,48.199 +279070,64.783,45.906 +279071,64.439,43.482 +279072,63.972,40.903 +279073,63.69,48.157 +279074,63.488,45.878 +279075,63.2,43.471 +279076,62.797,40.911 +279077,62.345,48.113 +279078,62.194,45.85 +279079,61.962,43.46 +279080,61.623,40.922 +279081,60.999,48.067 +279082,60.899,45.821 +279083,60.723,43.451 +279084,60.448,40.934 +279085,59.653,48.02 +279086,59.604,45.792 +279087,59.485,43.442 +279088,59.274,40.948 +279089,58.308,47.971 +279090,58.309,45.762 +279091,58.247,43.434 +279092,58.1,40.965 +279093,56.962,47.92 +279094,57.014,45.732 +279095,57.008,43.426 +279096,56.925,40.983 +279097,55.617,47.867 +279098,55.72,45.701 +279099,55.77,43.42 +279100,55.751,41.004 +279101,54.271,47.813 +279102,54.425,45.67 +279103,54.532,43.414 +279104,54.576,41.026 +279105,52.926,47.758 +279106,53.131,45.638 +279107,53.294,43.408 +279108,53.401,41.05 +279109,51.581,47.7 +279110,51.837,45.606 +279111,52.056,43.403 +279112,52.226,41.077 +279113,50.237,47.641 +279114,50.543,45.573 +279115,50.817,43.399 +279116,51.05,41.105 +279117,48.892,47.581 +279118,49.249,45.539 +279119,49.579,43.396 +279120,49.874,41.135 +279121,47.548,47.519 +279122,47.955,45.505 +279123,48.341,43.393 +279124,48.697,41.166 +279125,46.204,47.455 +279126,46.662,45.471 +279127,47.102,43.391 +279128,47.52,41.2 +279129,44.861,47.39 +279130,45.369,45.436 +279131,45.864,43.389 +279132,46.342,41.235 +279133,43.518,47.323 +279134,44.076,45.401 +279135,44.625,43.388 +279136,45.163,41.272 +279137,42.175,47.255 +279138,42.783,45.365 +279139,43.387,43.388 +279140,43.984,41.311 +279141,40.833,47.185 +279142,41.49,45.329 +279143,42.148,43.388 +279144,42.804,41.352 +279145,39.491,47.114 +279146,40.198,45.292 +279147,40.909,43.389 +279148,41.623,41.394 +279149,38.15,47.041 +279150,38.906,45.255 +279151,39.669,43.39 +279152,40.441,41.438 +279153,36.81,46.967 +279154,37.614,45.217 +279155,38.43,43.392 +279156,39.258,41.483 +279157,35.47,46.892 +279158,36.323,45.179 +279159,37.19,43.395 +279160,38.074,41.53 +279161,34.131,46.815 +279162,35.032,45.141 +279163,35.951,43.398 +279164,36.889,41.578 +279165,32.793,46.736 +279166,33.741,45.102 +279167,34.71,43.401 +279168,35.703,41.627 +279169,31.455,46.657 +279170,32.451,45.063 +279171,33.47,43.405 +279172,34.515,41.678 +279173,30.118,46.576 +279174,31.161,45.023 +279175,32.229,43.41 +279176,33.327,41.731 +279177,28.782,46.494 +279178,29.872,44.983 +279179,30.989,43.415 +279180,32.137,41.785 +279181,27.447,46.41 +279182,28.582,44.943 +279183,29.747,43.421 +279184,30.946,41.84 +279185,26.112,46.326 +279186,27.294,44.902 +279187,28.506,43.427 +279188,29.753,41.896 +279189,24.779,46.24 +279190,26.005,44.861 +279191,27.264,43.434 +279192,28.56,41.953 +279193,23.446,46.153 +279194,24.717,44.82 +279195,26.022,43.441 +279196,27.364,42.012 +279197,22.114,46.065 +279198,23.43,44.778 +279199,24.779,43.448 +279200,26.168,42.072 +279201,20.784,45.975 +279202,22.143,44.736 +279203,23.536,43.456 +279204,24.969,42.132 +279205,19.454,45.885 +279206,20.856,44.694 +279207,22.293,43.464 +279208,23.77,42.194 +279209,18.126,45.793 +279210,19.57,44.651 +279211,21.049,43.473 +279212,22.568,42.257 +279213,16.798,45.701 +279214,18.284,44.608 +279215,19.805,43.482 +279216,21.365,42.321 +279217,15.472,45.608 +279218,16.999,44.565 +279219,18.561,43.491 +279220,20.161,42.385 +279221,14.147,45.513 +279222,15.715,44.522 +279223,17.316,43.501 +279224,18.954,42.451 +279225,12.823,45.418 +279226,14.43,44.478 +279227,16.07,43.511 +279228,17.746,42.517 +279229,11.501,45.322 +279230,13.147,44.434 +279231,14.825,43.522 +279232,16.537,42.584 +279233,10.179,45.225 +279234,11.864,44.39 +279235,13.578,43.533 +279236,15.325,42.652 +279237,8.8593,45.127 +279238,10.581,44.346 +279239,12.332,43.544 +279240,14.112,42.72 +279241,7.5407,45.028 +279242,9.2996,44.302 +279243,11.084,43.555 +279244,12.897,42.789 +279245,6.2234,44.929 +279246,8.0182,44.257 +279247,9.8367,43.567 +279248,11.681,42.858 +279249,4.9075,44.829 +279250,6.7375,44.212 +279251,8.5885,43.579 +279252,10.462,42.928 +279253,3.5931,44.728 +279254,5.4574,44.168 +279255,7.3398,43.591 +279256,9.2416,42.999 +279257,2.2801,44.627 +279258,4.1779,44.123 +279259,6.0906,43.603 +279260,8.0194,43.07 +279261,0.96867,44.525 +279262,2.8989,44.078 +279263,4.8408,43.616 +279264,6.7953,43.141 +279265,359.66,44.422 +279266,1.6207,44.032 +279267,3.5906,43.629 +279268,5.5693,43.213 +279269,358.35,44.319 +279270,0.34299,43.987 +279271,2.3398,43.642 +279272,4.3414,43.284 +279273,357.04,44.216 +279274,359.07,43.942 +279275,1.0884,43.655 +279276,3.1117,43.357 +279277,355.74,44.112 +279278,357.79,43.896 +279279,359.84,43.668 +279280,1.88,43.429 +279281,354.43,44.008 +279282,356.51,43.851 +279283,358.58,43.682 +279284,0.64641,43.501 +279285,353.13,43.903 +279286,355.24,43.805 +279287,357.33,43.695 +279288,359.41,43.574 +279289,351.83,43.799 +279290,353.96,43.76 +279291,356.08,43.709 +279292,358.17,43.647 +279293,350.53,43.694 +279294,352.69,43.715 +279295,354.82,43.723 +279296,356.93,43.719 +279297,349.24,43.588 +279298,351.42,43.669 +279299,353.57,43.737 +279300,355.69,43.792 +279301,347.94,43.483 +279302,350.15,43.624 +279303,352.31,43.751 +279304,354.45,43.865 +279305,346.65,43.377 +279306,348.87,43.578 +279307,351.06,43.765 +279308,353.2,43.937 +279309,345.36,43.272 +279310,347.6,43.533 +279311,349.8,43.779 +279312,351.96,44.009 +279313,344.07,43.166 +279314,346.33,43.488 +279315,348.54,43.793 +279316,350.71,44.082 +279317,342.78,43.061 +279318,345.06,43.443 +279319,347.29,43.807 +279320,349.46,44.153 +279321,341.5,42.955 +279322,343.79,43.398 +279323,346.03,43.821 +279324,348.2,44.225 +279325,340.21,42.85 +279326,342.53,43.353 +279327,344.77,43.835 +279328,346.95,44.296 +279329,338.93,42.745 +279330,341.26,43.309 +279331,343.51,43.849 +279332,345.69,44.367 +279333,337.65,42.64 +279334,339.99,43.264 +279335,342.25,43.863 +279336,344.44,44.438 +279337,336.37,42.535 +279338,338.73,43.22 +279339,340.99,43.877 +279340,343.17,44.508 +279341,335.1,42.431 +279342,337.46,43.176 +279343,339.73,43.89 +279344,341.91,44.577 +279345,333.83,42.327 +279346,336.2,43.132 +279347,338.47,43.904 +279348,340.65,44.646 +279349,332.55,42.223 +279350,334.93,43.088 +279351,337.2,43.918 +279352,339.38,44.714 +279353,331.28,42.12 +279354,333.67,43.045 +279355,335.94,43.931 +279356,338.11,44.782 +279357,330.02,42.018 +279358,332.41,43.002 +279359,334.68,43.945 +279360,336.84,44.849 +279361,328.75,41.916 +279362,331.15,42.959 +279363,333.41,43.958 +279364,335.57,44.916 +279365,327.49,41.814 +279366,329.89,42.916 +279367,332.15,43.971 +279368,334.3,44.982 +279369,326.23,41.714 +279370,328.63,42.874 +279371,330.88,43.983 +279372,333.03,45.047 +279373,324.97,41.614 +279374,327.37,42.832 +279375,329.62,43.996 +279376,331.75,45.111 +279377,323.71,41.514 +279378,326.11,42.791 +279379,328.35,44.008 +279380,330.47,45.174 +279381,322.46,41.416 +279382,324.85,42.749 +279383,327.09,44.021 +279384,329.19,45.236 +279385,321.2,41.318 +279386,323.59,42.708 +279387,325.82,44.033 +279388,327.91,45.298 +279389,319.95,41.222 +279390,322.34,42.668 +279391,324.55,44.044 +279392,326.62,45.359 +279393,318.71,41.126 +279394,321.08,42.628 +279395,323.28,44.056 +279396,325.34,45.418 +279397,317.46,41.031 +279398,319.83,42.588 +279399,322.01,44.067 +279400,324.05,45.477 +279401,316.22,40.938 +279402,318.57,42.549 +279403,320.74,44.078 +279404,322.76,45.534 +279405,314.97,40.845 +279406,317.32,42.51 +279407,319.47,44.088 +279408,321.47,45.591 +279409,313.74,40.754 +279410,316.07,42.472 +279411,318.2,44.099 +279412,320.18,45.646 +279413,312.5,40.664 +279414,314.81,42.434 +279415,316.93,44.109 +279416,318.89,45.701 +279417,311.26,40.575 +279418,313.56,42.396 +279419,315.66,44.118 +279420,317.59,45.754 +279421,310.03,40.487 +279422,312.31,42.359 +279423,314.39,44.127 +279424,316.3,45.805 +279425,308.8,40.401 +279426,311.06,42.323 +279427,313.11,44.136 +279428,315,45.856 +279429,307.57,40.316 +279430,309.81,42.287 +279431,311.84,44.145 +279432,313.7,45.906 +279433,306.34,40.233 +279434,308.56,42.252 +279435,310.57,44.153 +279436,312.4,45.954 +279437,305.12,40.151 +279438,307.32,42.217 +279439,309.29,44.161 +279440,311.1,46 +279441,303.9,40.07 +279442,306.07,42.183 +279443,308.02,44.168 +279444,309.79,46.046 +279445,302.68,39.991 +279446,304.82,42.149 +279447,306.74,44.175 +279448,308.49,46.09 +279449,301.46,39.914 +279450,303.58,42.116 +279451,305.47,44.182 +279452,307.18,46.133 +279453,300.24,39.838 +279454,302.33,42.083 +279455,304.19,44.188 +279456,305.87,46.174 +279457,299.03,39.765 +279458,301.09,42.052 +279459,302.91,44.194 +279460,304.57,46.214 +279461,297.82,39.692 +279462,299.84,42.02 +279463,301.64,44.199 +279464,303.26,46.252 +279465,296.61,39.622 +279466,298.6,41.99 +279467,300.36,44.204 +279468,301.94,46.289 +279469,295.4,39.554 +279470,297.36,41.96 +279471,299.08,44.208 +279472,300.63,46.325 +279473,294.19,39.487 +279474,296.11,41.93 +279475,297.8,44.212 +279476,299.32,46.359 +279477,292.99,39.422 +279478,294.87,41.902 +279479,296.52,44.215 +279480,298,46.391 +279481,291.79,39.359 +279482,293.63,41.874 +279483,295.25,44.218 +279484,296.69,46.422 +279485,290.59,39.298 +279486,292.39,41.846 +279487,293.97,44.221 +279488,295.37,46.451 +279489,289.39,39.239 +279490,291.15,41.82 +279491,292.69,44.223 +279492,294.05,46.479 +279493,288.19,39.183 +279494,289.91,41.794 +279495,291.41,44.224 +279496,292.73,46.505 +279497,286.99,39.128 +279498,288.67,41.769 +279499,290.13,44.225 +279500,291.41,46.529 +279501,285.8,39.075 +279502,287.43,41.744 +279503,288.85,44.225 +279504,290.09,46.552 +279505,284.61,39.025 +279506,286.2,41.72 +279507,287.56,44.225 +279508,288.77,46.573 +279509,283.42,38.976 +279510,284.96,41.697 +279511,286.28,44.224 +279512,287.45,46.593 +279513,282.23,38.93 +279514,283.72,41.675 +279515,285,44.223 +279516,286.13,46.61 +279517,281.04,38.886 +279518,282.48,41.654 +279519,283.72,44.221 +279520,284.8,46.626 +279521,279.86,38.844 +279522,281.25,41.633 +279523,282.44,44.219 +279524,283.48,46.641 +279525,278.67,38.805 +279526,280.01,41.613 +279527,281.15,44.216 +279528,282.15,46.653 +279529,277.49,38.767 +279530,278.78,41.593 +279531,279.87,44.213 +279532,280.83,46.664 +279533,276.31,38.732 +279534,277.54,41.575 +279535,278.59,44.209 +279536,279.5,46.673 +279537,275.12,38.7 +279538,276.31,41.557 +279539,277.31,44.204 +279540,278.17,46.68 +279541,273.95,38.669 +279542,275.07,41.54 +279543,276.02,44.199 +279544,276.84,46.686 +279545,272.77,38.641 +279546,273.84,41.524 +279547,274.74,44.193 +279548,275.51,46.69 +279549,271.59,38.616 +279550,272.61,41.509 +279551,273.46,44.187 +279552,274.18,46.692 +279553,270.41,38.592 +279554,271.37,41.494 +279555,272.17,44.18 +279556,272.85,46.692 +279557,269.24,38.571 +279558,270.14,41.48 +279559,270.89,44.173 +279560,271.52,46.69 +279561,268.06,38.553 +279562,268.91,41.467 +279563,269.6,44.165 +279564,270.19,46.687 +279565,266.89,38.537 +279566,267.68,41.455 +279567,268.32,44.156 +279568,268.86,46.682 +279569,265.72,38.523 +279570,266.44,41.444 +279571,267.04,44.147 +279572,267.53,46.675 +279573,264.54,38.512 +279574,265.21,41.433 +279575,265.75,44.137 +279576,266.2,46.666 +279577,263.37,38.503 +279578,263.98,41.423 +279579,264.47,44.127 +279580,264.87,46.655 +279581,262.2,38.496 +279582,262.75,41.414 +279583,263.18,44.116 +279584,263.54,46.643 +279585,261.03,38.492 +279586,261.52,41.406 +279587,261.9,44.104 +279588,262.2,46.629 +279589,259.86,38.49 +279590,260.28,41.398 +279591,260.61,44.092 +279592,260.87,46.613 +279593,258.69,38.491 +279594,259.05,41.392 +279595,259.33,44.08 +279596,259.54,46.595 +279597,257.52,38.494 +279598,257.82,41.386 +279599,258.04,44.066 +279600,258.21,46.575 +279601,256.35,38.499 +279602,256.59,41.381 +279603,256.76,44.053 +279604,256.87,46.554 +279605,255.18,38.507 +279606,255.36,41.377 +279607,255.47,44.038 +279608,255.54,46.53 +279609,254.01,38.517 +279610,254.13,41.373 +279611,254.19,44.023 +279612,254.21,46.505 +279613,252.84,38.53 +279614,252.9,41.371 +279615,252.91,44.008 +279616,252.87,46.478 +279617,251.67,38.544 +279618,251.67,41.369 +279619,251.62,43.991 +279620,251.54,46.45 +279621,250.5,38.562 +279622,250.44,41.368 +279623,250.34,43.975 +279624,250.21,46.419 +279625,249.33,38.581 +279626,249.21,41.367 +279627,249.05,43.957 +279628,248.88,46.387 +279629,248.16,38.603 +279630,247.98,41.368 +279631,247.77,43.94 +279632,247.54,46.353 +279633,246.99,38.627 +279634,246.75,41.369 +279635,246.48,43.921 +279636,246.21,46.317 +279637,245.82,38.653 +279638,245.51,41.371 +279639,245.2,43.902 +279640,244.88,46.28 +279641,244.65,38.681 +279642,244.28,41.374 +279643,243.92,43.883 +279644,243.55,46.24 +279645,243.47,38.712 +279646,243.05,41.377 +279647,242.63,43.863 +279648,242.22,46.2 +279649,242.3,38.745 +279650,241.82,41.381 +279651,241.35,43.842 +279652,240.89,46.157 +279653,241.13,38.78 +279654,240.59,41.386 +279655,240.07,43.821 +279656,239.56,46.112 +279657,239.95,38.817 +279658,239.36,41.392 +279659,238.78,43.799 +279660,238.23,46.066 +279661,238.78,38.856 +279662,238.13,41.398 +279663,237.5,43.777 +279664,236.9,46.019 +279665,237.6,38.897 +279666,236.89,41.406 +279667,236.22,43.754 +279668,235.57,45.969 +279669,236.43,38.94 +279670,235.66,41.413 +279671,234.94,43.731 +279672,234.24,45.918 +279673,235.25,38.985 +279674,234.43,41.422 +279675,233.65,43.708 +279676,232.91,45.866 +279677,234.07,39.032 +279678,233.2,41.431 +279679,232.37,43.683 +279680,231.58,45.811 +279681,232.89,39.081 +279682,231.96,41.441 +279683,231.09,43.659 +279684,230.26,45.756 +279685,231.71,39.132 +279686,230.73,41.452 +279687,229.81,43.634 +279688,228.93,45.698 +279689,230.53,39.185 +279690,229.5,41.463 +279691,228.53,43.608 +279692,227.61,45.639 +279693,229.35,39.239 +279694,228.26,41.475 +279695,227.25,43.582 +279696,226.28,45.579 +279697,228.16,39.296 +279698,227.03,41.487 +279699,225.97,43.555 +279700,224.96,45.517 +279701,226.98,39.354 +279702,225.8,41.501 +279703,224.69,43.528 +279704,223.64,45.453 +279705,225.79,39.413 +279706,224.56,41.514 +279707,223.41,43.501 +279708,222.31,45.388 +279709,224.6,39.475 +279710,223.33,41.529 +279711,222.13,43.473 +279712,220.99,45.322 +279713,223.41,39.537 +279714,222.09,41.544 +279715,220.85,43.445 +279716,219.67,45.254 +279717,222.22,39.602 +279718,220.85,41.559 +279719,219.57,43.416 +279720,218.35,45.185 +279721,221.02,39.668 +279722,219.62,41.575 +279723,218.29,43.387 +279724,217.04,45.114 +279725,219.83,39.735 +279726,218.38,41.592 +279727,217.02,43.357 +279728,215.72,45.042 +279729,218.63,39.804 +279730,217.14,41.609 +279731,215.74,43.328 +279732,214.4,44.969 +279733,217.44,39.874 +279734,215.91,41.627 +279735,214.46,43.297 +279736,213.09,44.894 +279737,216.24,39.946 +279738,214.67,41.645 +279739,213.19,43.267 +279740,211.77,44.819 +279741,215.03,40.018 +279742,213.43,41.664 +279743,211.91,43.236 +279744,210.46,44.742 +279745,213.83,40.092 +279746,212.19,41.683 +279747,210.64,43.205 +279748,209.15,44.663 +279749,212.63,40.168 +279750,210.95,41.703 +279751,209.36,43.173 +279752,207.84,44.584 +279753,211.42,40.244 +279754,209.71,41.723 +279755,208.09,43.141 +279756,206.53,44.503 +279757,210.21,40.321 +279758,208.47,41.744 +279759,206.81,43.109 +279760,205.22,44.422 +279761,209,40.4 +279762,207.23,41.765 +279763,205.54,43.077 +279764,203.92,44.339 +279765,207.79,40.479 +279766,205.99,41.787 +279767,204.27,43.044 +279768,202.61,44.255 +279769,206.58,40.559 +279770,204.75,41.809 +279771,202.99,43.011 +279772,201.31,44.171 +279773,205.36,40.641 +279774,203.51,41.831 +279775,201.72,42.978 +279776,200,44.085 +279777,204.14,40.723 +279778,202.26,41.854 +279779,200.45,42.945 +279780,198.7,43.998 +279781,202.92,40.806 +279782,201.02,41.877 +279783,199.18,42.911 +279784,197.4,43.911 +279785,201.7,40.889 +279786,199.77,41.9 +279787,197.91,42.877 +279788,196.11,43.822 +279789,200.48,40.973 +279790,198.53,41.924 +279791,196.64,42.843 +279792,194.81,43.733 +279793,199.25,41.058 +279794,197.28,41.948 +279795,195.37,42.809 +279796,193.51,43.643 +279797,198.03,41.144 +279798,196.04,41.972 +279799,194.1,42.775 +279800,192.22,43.552 +279801,196.8,41.23 +279802,194.79,41.997 +279803,192.84,42.74 +279804,190.93,43.46 +279805,195.56,41.316 +279806,193.54,42.022 +279807,191.57,42.706 +279808,189.64,43.368 +279809,194.33,41.403 +279810,192.3,42.047 +279811,190.3,42.671 +279812,188.35,43.275 +279813,193.1,41.491 +279814,191.05,42.072 +279815,189.04,42.636 +279816,187.06,43.182 +279817,191.86,41.578 +279818,189.8,42.098 +279819,187.77,42.601 +279820,185.78,43.088 +279821,190.62,41.666 +279822,188.55,42.124 +279823,186.51,42.566 +279824,184.49,42.993 +279825,189.38,41.755 +279826,187.3,42.15 +279827,185.24,42.531 +279828,183.21,42.898 +279829,188.13,41.843 +279830,186.05,42.176 +279831,183.98,42.496 +279832,181.93,42.803 +279833,186.89,41.932 +279834,184.8,42.202 +279835,182.72,42.461 +279836,180.65,42.707 +279837,185.64,42.02 +279838,183.54,42.229 +279839,181.46,42.426 +279840,179.38,42.611 +279841,184.39,42.109 +279842,182.29,42.255 +279843,180.2,42.391 +279844,178.1,42.515 +279845,183.14,42.198 +279846,181.04,42.282 +279847,178.93,42.356 +279848,176.83,42.418 +279849,181.89,42.287 +279850,179.78,42.309 +279851,177.67,42.321 +279852,175.56,42.321 +279853,180.63,42.375 +279854,178.53,42.336 +279855,176.42,42.286 +279856,174.29,42.224 +279857,179.38,42.464 +279858,177.27,42.363 +279859,175.16,42.251 +279860,173.02,42.127 +279861,178.12,42.552 +279862,176.02,42.39 +279863,173.9,42.216 +279864,171.76,42.03 +279865,176.86,42.64 +279866,174.76,42.417 +279867,172.64,42.181 +279868,170.5,41.933 +279869,175.6,42.728 +279870,173.5,42.444 +279871,171.38,42.147 +279872,169.23,41.836 +279873,174.33,42.815 +279874,172.25,42.471 +279875,170.13,42.112 +279876,167.98,41.738 +279877,173.07,42.902 +279878,170.99,42.498 +279879,168.87,42.078 +279880,166.72,41.641 +279881,171.8,42.989 +279882,169.73,42.525 +279883,167.62,42.044 +279884,165.46,41.545 +279885,170.53,43.075 +279886,168.47,42.552 +279887,166.36,42.01 +279888,164.21,41.448 +279889,169.26,43.161 +279890,167.21,42.579 +279891,165.11,41.976 +279892,162.96,41.352 +279893,167.98,43.246 +279894,165.95,42.606 +279895,163.86,41.943 +279896,161.71,41.256 +279897,166.71,43.331 +279898,164.69,42.633 +279899,162.61,41.909 +279900,160.46,41.16 +279901,165.43,43.415 +279902,163.42,42.659 +279903,161.36,41.876 +279904,159.22,41.065 +279905,164.15,43.499 +279906,162.16,42.686 +279907,160.1,41.844 +279908,157.97,40.971 +279909,162.87,43.581 +279910,160.9,42.712 +279911,158.86,41.811 +279912,156.73,40.876 +279913,161.59,43.663 +279914,159.63,42.738 +279915,157.61,41.779 +279916,155.49,40.783 +279917,160.3,43.745 +279918,158.37,42.764 +279919,156.36,41.747 +279920,154.26,40.69 +279921,159.02,43.825 +279922,157.1,42.79 +279923,155.11,41.716 +279924,153.02,40.598 +279925,157.73,43.905 +279926,155.84,42.816 +279927,153.86,41.684 +279928,151.79,40.506 +279929,156.44,43.983 +279930,154.57,42.841 +279931,152.62,41.653 +279932,150.56,40.415 +279933,155.15,44.061 +279934,153.31,42.867 +279935,151.37,41.623 +279936,149.33,40.325 +279937,153.86,44.138 +279938,152.04,42.892 +279939,150.12,41.593 +279940,148.1,40.236 +279941,152.57,44.214 +279942,150.77,42.917 +279943,148.88,41.563 +279944,146.88,40.148 +279945,151.27,44.289 +279946,149.5,42.941 +279947,147.63,41.534 +279948,145.65,40.061 +279949,149.98,44.362 +279950,148.23,42.965 +279951,146.39,41.505 +279952,144.43,39.975 +279953,148.68,44.435 +279954,146.96,42.989 +279955,145.15,41.477 +279956,143.21,39.89 +279957,147.38,44.507 +279958,145.69,43.013 +279959,143.91,41.449 +279960,142,39.806 +279961,146.08,44.577 +279962,144.42,43.036 +279963,142.66,41.422 +279964,140.78,39.724 +279965,144.78,44.646 +279966,143.15,43.059 +279967,141.42,41.395 +279968,139.57,39.642 +279969,143.47,44.714 +279970,141.88,43.082 +279971,140.18,41.368 +279972,138.36,39.562 +279973,142.17,44.781 +279974,140.61,43.104 +279975,138.94,41.342 +279976,137.15,39.483 +279977,140.86,44.846 +279978,139.34,43.126 +279979,137.7,41.317 +279980,135.94,39.405 +279981,139.55,44.911 +279982,138.06,43.148 +279983,136.46,41.292 +279984,134.73,39.329 +279985,138.25,44.973 +279986,136.79,43.169 +279987,135.22,41.268 +279988,133.53,39.255 +279989,136.94,45.035 +279990,135.51,43.19 +279991,133.99,41.244 +279992,132.33,39.182 +279993,135.63,45.095 +279994,134.24,43.21 +279995,132.75,41.221 +279996,131.13,39.11 +279997,134.31,45.154 +279998,132.97,43.23 +279999,131.51,41.199 +280000,129.93,39.04 +280001,133,45.211 +280002,131.69,43.25 +280003,130.28,41.177 +280004,128.73,38.972 +280005,131.69,45.267 +280006,130.41,43.269 +280007,129.04,41.156 +280008,127.54,38.905 +280009,130.37,45.321 +280010,129.14,43.288 +280011,127.8,41.135 +280012,126.34,38.841 +280013,129.06,45.374 +280014,127.86,43.306 +280015,126.57,41.115 +280016,125.15,38.778 +280017,127.74,45.425 +280018,126.59,43.324 +280019,125.33,41.096 +280020,123.96,38.716 +280021,126.42,45.475 +280022,125.31,43.341 +280023,124.1,41.077 +280024,122.77,38.657 +280025,125.1,45.523 +280026,124.03,43.358 +280027,122.87,41.059 +280028,121.58,38.599 +280029,123.78,45.57 +280030,122.75,43.375 +280031,121.63,41.042 +280032,120.4,38.544 +280033,122.46,45.615 +280034,121.48,43.39 +280035,120.4,41.025 +280036,119.21,38.49 +280037,121.14,45.658 +280038,120.2,43.406 +280039,119.17,41.009 +280040,118.03,38.439 +280041,119.82,45.7 +280042,118.92,43.421 +280043,117.94,40.994 +280044,116.85,38.389 +280045,118.5,45.74 +280046,117.64,43.435 +280047,116.7,40.98 +280048,115.67,38.342 +280049,117.18,45.779 +280050,116.36,43.449 +280051,115.47,40.966 +280052,114.49,38.297 +280053,115.85,45.815 +280054,115.08,43.462 +280055,114.24,40.953 +280056,113.31,38.253 +280057,114.53,45.85 +280058,113.8,43.475 +280059,113.01,40.941 +280060,112.13,38.212 +280061,113.2,45.884 +280062,112.52,43.487 +280063,111.78,40.929 +280064,110.95,38.174 +280065,111.88,45.915 +280066,111.24,43.499 +280067,110.55,40.919 +280068,109.78,38.137 +280069,110.55,45.945 +280070,109.96,43.51 +280071,109.32,40.909 +280072,108.6,38.103 +280073,109.22,45.973 +280074,108.68,43.521 +280075,108.09,40.9 +280076,107.43,38.071 +280077,107.9,46 +280078,107.4,43.531 +280079,106.86,40.891 +280080,106.26,38.041 +280081,106.57,46.024 +280082,106.12,43.54 +280083,105.63,40.884 +280084,105.09,38.014 +280085,105.24,46.047 +280086,104.84,43.549 +280087,104.4,40.877 +280088,103.91,37.989 +280089,103.92,46.068 +280090,103.56,43.558 +280091,103.17,40.871 +280092,102.74,37.966 +280093,102.59,46.087 +280094,102.27,43.565 +280095,101.94,40.866 +280096,101.57,37.946 +280097,101.26,46.105 +280098,100.99,43.573 +280099,100.71,40.861 +280100,100.4,37.928 +280101,99.929,46.12 +280102,99.712,43.579 +280103,99.481,40.858 +280104,99.232,37.912 +280105,98.6,46.134 +280106,98.43,43.585 +280107,98.252,40.855 +280108,98.063,37.899 +280109,97.271,46.146 +280110,97.149,43.591 +280111,97.023,40.853 +280112,96.894,37.888 +280113,95.942,46.156 +280114,95.867,43.596 +280115,95.794,40.852 +280116,95.725,37.88 +280117,94.613,46.165 +280118,94.585,43.6 +280119,94.565,40.852 +280120,94.556,37.875 +280121,93.284,46.171 +280122,93.304,43.604 +280123,93.336,40.852 +280124,93.387,37.871 +280125,91.954,46.176 +280126,92.022,43.607 +280127,92.107,40.854 +280128,92.218,37.87 +280129,90.625,46.179 +280130,90.74,43.609 +280131,90.878,40.856 +280132,91.049,37.872 +280133,89.296,46.18 +280134,89.458,43.611 +280135,89.649,40.859 +280136,89.88,37.876 +280137,87.967,46.179 +280138,88.177,43.613 +280139,88.42,40.862 +280140,88.711,37.883 +280141,86.638,46.176 +280142,86.895,43.613 +280143,87.191,40.867 +280144,87.541,37.892 +280145,85.309,46.172 +280146,85.613,43.614 +280147,85.962,40.872 +280148,86.371,37.903 +280149,83.98,46.165 +280150,84.332,43.613 +280151,84.732,40.879 +280152,85.201,37.917 +280153,82.652,46.157 +280154,83.051,43.612 +280155,83.503,40.886 +280156,84.03,37.933 +280157,81.324,46.147 +280158,81.769,43.611 +280159,82.273,40.894 +280160,82.859,37.952 +280161,79.996,46.136 +280162,80.488,43.609 +280163,81.043,40.902 +280164,81.687,37.973 +280165,78.669,46.122 +280166,79.207,43.606 +280167,79.813,40.912 +280168,80.514,37.997 +280169,77.342,46.107 +280170,77.926,43.603 +280171,78.583,40.922 +280172,79.34,38.023 +280173,76.015,46.09 +280174,76.645,43.599 +280175,77.352,40.933 +280176,78.166,38.051 +280177,74.689,46.071 +280178,75.365,43.594 +280179,76.122,40.945 +280180,76.991,38.082 +280181,73.364,46.05 +280182,74.084,43.589 +280183,74.891,40.957 +280184,75.815,38.115 +280185,72.039,46.028 +280186,72.804,43.584 +280187,73.659,40.971 +280188,74.638,38.15 +280189,70.714,46.003 +280190,71.524,43.578 +280191,72.428,40.985 +280192,73.459,38.188 +280193,69.391,45.978 +280194,70.244,43.571 +280195,71.196,41 +280196,72.28,38.227 +280197,68.067,45.95 +280198,68.965,43.564 +280199,69.963,41.016 +280200,71.1,38.269 +280201,66.745,45.921 +280202,67.685,43.556 +280203,68.731,41.032 +280204,69.918,38.314 +280205,65.423,45.89 +280206,66.406,43.548 +280207,67.498,41.05 +280208,68.735,38.36 +280209,64.102,45.857 +280210,65.128,43.539 +280211,66.265,41.068 +280212,67.551,38.409 +280213,62.782,45.822 +280214,63.849,43.53 +280215,65.031,41.086 +280216,66.365,38.46 +280217,61.462,45.786 +280218,62.571,43.52 +280219,63.797,41.106 +280220,65.178,38.513 +280221,60.143,45.749 +280222,61.293,43.51 +280223,62.562,41.126 +280224,63.989,38.567 +280225,58.826,45.709 +280226,60.016,43.499 +280227,61.327,41.147 +280228,62.799,38.624 +280229,57.509,45.669 +280230,58.739,43.487 +280231,60.092,41.168 +280232,61.608,38.683 +280233,56.193,45.626 +280234,57.462,43.476 +280235,58.856,41.19 +280236,60.414,38.744 +280237,54.878,45.582 +280238,56.185,43.463 +280239,57.619,41.213 +280240,59.219,38.807 +280241,53.564,45.536 +280242,54.909,43.45 +280243,56.382,41.237 +280244,58.023,38.872 +280245,52.251,45.489 +280246,53.633,43.437 +280247,55.145,41.261 +280248,56.825,38.938 +280249,50.939,45.441 +280250,52.358,43.424 +280251,53.907,41.286 +280252,55.624,39.006 +280253,49.629,45.391 +280254,51.083,43.409 +280255,52.669,41.312 +280256,54.423,39.076 +280257,48.319,45.339 +280258,49.809,43.395 +280259,51.43,41.338 +280260,53.219,39.148 +280261,47.011,45.286 +280262,48.535,43.38 +280263,50.19,41.365 +280264,52.013,39.221 +280265,45.703,45.232 +280266,47.261,43.365 +280267,48.95,41.392 +280268,50.806,39.296 +280269,44.397,45.176 +280270,45.988,43.349 +280271,47.709,41.42 +280272,49.597,39.373 +280273,43.093,45.119 +280274,44.715,43.333 +280275,46.468,41.448 +280276,48.386,39.451 +280277,41.789,45.061 +280278,43.443,43.316 +280279,45.226,41.477 +280280,47.172,39.531 +280281,40.487,45.001 +280282,42.171,43.299 +280283,43.984,41.507 +280284,45.957,39.612 +280285,39.186,44.94 +280286,40.9,43.282 +280287,42.741,41.537 +280288,44.74,39.694 +280289,37.887,44.878 +280290,39.629,43.264 +280291,41.497,41.568 +280292,43.521,39.778 +280293,36.589,44.814 +280294,38.359,43.246 +280295,40.253,41.599 +280296,42.3,39.863 +280297,35.292,44.75 +280298,37.089,43.228 +280299,39.008,41.631 +280300,41.077,39.949 +280301,33.997,44.684 +280302,35.819,43.209 +280303,37.762,41.663 +280304,39.852,40.037 +280305,32.704,44.617 +280306,34.551,43.19 +280307,36.516,41.696 +280308,38.625,40.125 +280309,31.411,44.549 +280310,33.282,43.171 +280311,35.269,41.729 +280312,37.395,40.215 +280313,30.121,44.48 +280314,32.015,43.151 +280315,34.022,41.762 +280316,36.164,40.306 +280317,28.832,44.41 +280318,30.748,43.132 +280319,32.774,41.796 +280320,34.93,40.398 +280321,27.544,44.339 +280322,29.481,43.112 +280323,31.525,41.83 +280324,33.695,40.49 +280325,26.259,44.267 +280326,28.215,43.091 +280327,30.275,41.865 +280328,32.457,40.584 +280329,24.974,44.194 +280330,26.949,43.071 +280331,29.025,41.9 +280332,31.218,40.678 +280333,23.692,44.121 +280334,25.684,43.05 +280335,27.774,41.936 +280336,29.976,40.774 +280337,22.411,44.046 +280338,24.42,43.029 +280339,26.523,41.972 +280340,28.732,40.87 +280341,21.132,43.971 +280342,23.156,43.008 +280343,25.27,42.008 +280344,27.486,40.966 +280345,19.854,43.894 +280346,21.893,42.987 +280347,24.017,42.044 +280348,26.238,41.063 +280349,18.579,43.817 +280350,20.631,42.966 +280351,22.764,42.081 +280352,24.988,41.161 +280353,17.305,43.74 +280354,19.369,42.944 +280355,21.509,42.118 +280356,23.736,41.26 +280357,16.032,43.662 +280358,18.107,42.922 +280359,20.254,42.155 +280360,22.482,41.359 +280361,14.762,43.583 +280362,16.846,42.901 +280363,18.999,42.193 +280364,21.226,41.458 +280365,13.493,43.503 +280366,15.586,42.879 +280367,17.742,42.231 +280368,19.967,41.558 +280369,12.227,43.423 +280370,14.327,42.857 +280371,16.485,42.269 +280372,18.707,41.658 +280373,10.962,43.343 +280374,13.068,42.835 +280375,15.227,42.307 +280376,17.445,41.758 +280377,9.6986,43.262 +280378,11.809,42.813 +280379,13.969,42.345 +280380,16.181,41.859 +280381,8.4374,43.181 +280382,10.552,42.79 +280383,12.709,42.384 +280384,14.914,41.96 +280385,7.1781,43.099 +280386,9.2944,42.768 +280387,11.45,42.422 +280388,13.646,42.061 +280389,5.9207,43.017 +280390,8.0378,42.746 +280391,10.189,42.461 +280392,12.376,42.162 +280393,4.6652,42.935 +280394,6.7819,42.724 +280395,8.9276,42.5 +280396,11.104,42.263 +280397,3.4116,42.852 +280398,5.5266,42.702 +280399,7.6656,42.539 +280400,9.83,42.364 +280401,2.1599,42.769 +280402,4.2719,42.68 +280403,6.403,42.578 +280404,8.554,42.465 +280405,0.91018,42.687 +280406,3.0178,42.658 +280407,5.1396,42.618 +280408,7.2763,42.566 +280409,359.66,42.604 +280410,1.7643,42.636 +280411,3.8755,42.657 +280412,5.9966,42.667 +280413,358.42,42.521 +280414,0.51143,42.614 +280415,2.6108,42.696 +280416,4.7151,42.767 +280417,357.17,42.438 +280418,359.26,42.592 +280419,1.3454,42.736 +280420,3.4318,42.868 +280421,355.93,42.355 +280422,358.01,42.57 +280423,0.079381,42.775 +280424,2.1468,42.968 +280425,354.69,42.272 +280426,356.76,42.549 +280427,358.81,42.814 +280428,0.85992,43.068 +280429,353.45,42.189 +280430,355.51,42.528 +280431,357.55,42.854 +280432,359.57,43.167 +280433,352.22,42.106 +280434,354.26,42.506 +280435,356.28,42.893 +280436,358.28,43.266 +280437,350.98,42.024 +280438,353.01,42.485 +280439,355.01,42.932 +280440,356.99,43.365 +280441,349.75,41.942 +280442,351.76,42.465 +280443,353.74,42.971 +280444,355.7,43.463 +280445,348.52,41.86 +280446,350.51,42.444 +280447,352.47,43.011 +280448,354.4,43.56 +280449,347.29,41.779 +280450,349.26,42.424 +280451,351.2,43.05 +280452,353.1,43.657 +280453,346.07,41.698 +280454,348.02,42.403 +280455,349.93,43.088 +280456,351.8,43.753 +280457,344.84,41.618 +280458,346.77,42.383 +280459,348.66,43.127 +280460,350.5,43.849 +280461,343.62,41.538 +280462,345.52,42.364 +280463,347.38,43.166 +280464,349.2,43.944 +280465,342.4,41.458 +280466,344.28,42.345 +280467,346.11,43.204 +280468,347.9,44.038 +280469,341.18,41.38 +280470,343.03,42.325 +280471,344.84,43.243 +280472,346.6,44.132 +280473,339.96,41.301 +280474,341.79,42.307 +280475,343.56,43.281 +280476,345.29,44.224 +280477,338.75,41.224 +280478,340.55,42.288 +280479,342.29,43.319 +280480,343.98,44.316 +280481,337.53,41.147 +280482,339.3,42.27 +280483,341.01,43.356 +280484,342.67,44.407 +280485,336.32,41.072 +280486,338.06,42.253 +280487,339.74,43.394 +280488,341.36,44.497 +280489,335.11,40.997 +280490,336.82,42.235 +280491,338.46,43.431 +280492,340.05,44.586 +280493,333.91,40.923 +280494,335.58,42.219 +280495,337.18,43.468 +280496,338.74,44.674 +280497,332.7,40.849 +280498,334.33,42.202 +280499,335.91,43.505 +280500,337.42,44.761 +280501,331.5,40.777 +280502,333.09,42.186 +280503,334.63,43.541 +280504,336.11,44.847 +280505,330.29,40.706 +280506,331.85,42.17 +280507,333.35,43.577 +280508,334.79,44.932 +280509,329.09,40.636 +280510,330.61,42.155 +280511,332.07,43.613 +280512,333.47,45.015 +280513,327.89,40.568 +280514,329.37,42.14 +280515,330.79,43.649 +280516,332.16,45.098 +280517,326.69,40.5 +280518,328.13,42.126 +280519,329.51,43.684 +280520,330.84,45.179 +280521,325.5,40.433 +280522,326.9,42.112 +280523,328.23,43.719 +280524,329.52,45.259 +280525,324.3,40.368 +280526,325.66,42.099 +280527,326.95,43.753 +280528,328.19,45.338 +280529,323.11,40.305 +280530,324.42,42.086 +280531,325.67,43.787 +280532,326.87,45.416 +280533,321.92,40.242 +280534,323.18,42.074 +280535,324.39,43.821 +280536,325.55,45.492 +280537,320.73,40.181 +280538,321.95,42.063 +280539,323.11,43.855 +280540,324.22,45.567 +280541,319.54,40.122 +280542,320.71,42.051 +280543,321.82,43.888 +280544,322.9,45.641 +280545,318.35,40.064 +280546,319.47,42.041 +280547,320.54,43.92 +280548,321.57,45.713 +280549,317.17,40.007 +280550,318.24,42.031 +280551,319.26,43.952 +280552,320.24,45.784 +280553,315.98,39.952 +280554,317,42.021 +280555,317.97,43.984 +280556,318.91,45.853 +280557,314.8,39.899 +280558,315.77,42.013 +280559,316.69,44.015 +280560,317.58,45.921 +280561,313.62,39.847 +280562,314.53,42.005 +280563,315.41,44.046 +280564,316.25,45.988 +280565,312.44,39.797 +280566,313.3,41.997 +280567,314.12,44.077 +280568,314.92,46.053 +280569,311.26,39.749 +280570,312.06,41.99 +280571,312.84,44.107 +280572,313.59,46.116 +280573,310.08,39.703 +280574,310.83,41.984 +280575,311.55,44.136 +280576,312.26,46.178 +280577,308.9,39.658 +280578,309.59,41.978 +280579,310.27,44.165 +280580,310.93,46.238 +280581,307.72,39.615 +280582,308.36,41.973 +280583,308.98,44.194 +280584,309.6,46.297 +280585,306.55,39.575 +280586,307.12,41.969 +280587,307.7,44.222 +280588,308.26,46.354 +280589,305.37,39.536 +280590,305.89,41.965 +280591,306.41,44.249 +280592,306.93,46.41 +280593,304.2,39.499 +280594,304.66,41.962 +280595,305.12,44.276 +280596,305.59,46.464 +280597,303.02,39.464 +280598,303.42,41.96 +280599,303.84,44.303 +280600,304.26,46.516 +280601,301.85,39.431 +280602,302.19,41.958 +280603,302.55,44.329 +280604,302.92,46.567 +280605,300.68,39.4 +280606,300.96,41.958 +280607,301.26,44.354 +280608,301.59,46.616 +280609,299.5,39.371 +280610,299.72,41.957 +280611,299.98,44.379 +280612,300.25,46.663 +280613,298.33,39.344 +280614,298.49,41.958 +280615,298.69,44.404 +280616,298.92,46.709 +280617,297.16,39.32 +280618,297.26,41.959 +280619,297.4,44.427 +280620,297.58,46.753 +280621,295.99,39.297 +280622,296.02,41.961 +280623,296.11,44.451 +280624,296.24,46.795 +280625,294.82,39.277 +280626,294.79,41.964 +280627,294.83,44.474 +280628,294.91,46.835 +280629,293.65,39.259 +280630,293.56,41.968 +280631,293.54,44.496 +280632,293.57,46.874 +280633,292.47,39.243 +280634,292.32,41.972 +280635,292.25,44.517 +280636,292.23,46.911 +280637,291.3,39.23 +280638,291.09,41.977 +280639,290.96,44.538 +280640,290.9,46.946 +280641,290.13,39.218 +280642,289.86,41.983 +280643,289.68,44.559 +280644,289.56,46.98 +280645,288.96,39.209 +280646,288.63,41.989 +280647,288.39,44.579 +280648,288.22,47.012 +280649,287.79,39.202 +280650,287.39,41.997 +280651,287.1,44.598 +280652,286.89,47.041 +280653,286.62,39.198 +280654,286.16,42.005 +280655,285.81,44.617 +280656,285.55,47.07 +280657,285.45,39.195 +280658,284.92,42.014 +280659,284.52,44.635 +280660,284.21,47.096 +280661,284.28,39.196 +280662,283.69,42.023 +280663,283.24,44.653 +280664,282.88,47.12 +280665,283.1,39.198 +280666,282.46,42.034 +280667,281.95,44.67 +280668,281.54,47.143 +280669,281.93,39.203 +280670,281.22,42.045 +280671,280.66,44.687 +280672,280.2,47.164 +280673,280.76,39.21 +280674,279.99,42.057 +280675,279.37,44.703 +280676,278.87,47.183 +280677,279.58,39.219 +280678,278.75,42.07 +280679,278.08,44.718 +280680,277.53,47.201 +280681,278.41,39.231 +280682,277.52,42.083 +280683,276.8,44.733 +280684,276.2,47.216 +280685,277.23,39.245 +280686,276.28,42.098 +280687,275.51,44.747 +280688,274.86,47.23 +280689,276.05,39.261 +280690,275.05,42.113 +280691,274.22,44.76 +280692,273.53,47.242 +280693,274.88,39.28 +280694,273.81,42.129 +280695,272.93,44.773 +280696,272.19,47.252 +280697,273.7,39.301 +280698,272.58,42.145 +280699,271.65,44.786 +280700,270.86,47.261 +280701,272.52,39.325 +280702,271.34,42.163 +280703,270.36,44.798 +280704,269.53,47.267 +280705,271.34,39.35 +280706,270.1,42.181 +280707,269.07,44.809 +280708,268.19,47.272 +280709,270.16,39.378 +280710,268.87,42.2 +280711,267.79,44.82 +280712,266.86,47.275 +280713,268.97,39.409 +280714,267.63,42.219 +280715,266.5,44.83 +280716,265.53,47.277 +280717,267.79,39.441 +280718,266.39,42.24 +280719,265.21,44.839 +280720,264.2,47.276 +280721,266.6,39.476 +280722,265.15,42.261 +280723,263.93,44.848 +280724,262.87,47.274 +280725,265.42,39.513 +280726,263.91,42.283 +280727,262.64,44.857 +280728,261.54,47.27 +280729,264.23,39.553 +280730,262.67,42.306 +280731,261.36,44.865 +280732,260.21,47.265 +280733,263.04,39.594 +280734,261.43,42.329 +280735,260.07,44.872 +280736,258.89,47.257 +280737,261.84,39.638 +280738,260.19,42.353 +280739,258.79,44.879 +280740,257.56,47.248 +280741,260.65,39.684 +280742,258.95,42.378 +280743,257.5,44.885 +280744,256.23,47.237 +280745,259.46,39.732 +280746,257.71,42.404 +280747,256.22,44.891 +280748,254.91,47.225 +280749,258.26,39.782 +280750,256.47,42.43 +280751,254.93,44.896 +280752,253.58,47.211 +280753,257.06,39.835 +280754,255.23,42.457 +280755,253.65,44.9 +280756,252.26,47.195 +280757,255.86,39.889 +280758,253.99,42.485 +280759,252.37,44.904 +280760,250.94,47.178 +280761,254.66,39.946 +280762,252.74,42.514 +280763,251.08,44.908 +280764,249.62,47.159 +280765,253.46,40.004 +280766,251.5,42.543 +280767,249.8,44.911 +280768,248.3,47.138 +280769,252.25,40.065 +280770,250.25,42.573 +280771,248.52,44.914 +280772,246.98,47.116 +280773,251.04,40.127 +280774,249.01,42.603 +280775,247.24,44.916 +280776,245.66,47.092 +280777,249.83,40.191 +280778,247.76,42.634 +280779,245.95,44.917 +280780,244.34,47.066 +280781,248.62,40.258 +280782,246.52,42.666 +280783,244.67,44.918 +280784,243.03,47.04 +280785,247.41,40.326 +280786,245.27,42.699 +280787,243.39,44.919 +280788,241.71,47.011 +280789,246.19,40.396 +280790,244.02,42.732 +280791,242.11,44.919 +280792,240.4,46.981 +280793,244.98,40.468 +280794,242.77,42.766 +280795,240.83,44.918 +280796,239.09,46.95 +280797,243.76,40.541 +280798,241.53,42.8 +280799,239.55,44.918 +280800,237.78,46.917 +280801,242.54,40.616 +280802,240.28,42.835 +280803,238.27,44.916 +280804,236.47,46.882 +280805,241.31,40.693 +280806,239.03,42.87 +280807,236.99,44.915 +280808,235.16,46.847 +280809,240.09,40.772 +280810,237.77,42.907 +280811,235.72,44.913 +280812,233.85,46.809 +280813,238.86,40.852 +280814,236.52,42.943 +280815,234.44,44.91 +280816,232.54,46.771 +280817,237.63,40.933 +280818,235.27,42.981 +280819,233.16,44.907 +280820,231.24,46.731 +280821,236.39,41.017 +280822,234.02,43.018 +280823,231.88,44.904 +280824,229.94,46.69 +280825,235.16,41.101 +280826,232.76,43.057 +280827,230.61,44.9 +280828,228.64,46.647 +280829,233.92,41.187 +280830,231.51,43.095 +280831,229.33,44.896 +280832,227.34,46.604 +280833,232.68,41.275 +280834,230.25,43.135 +280835,228.06,44.891 +280836,226.04,46.559 +280837,231.44,41.363 +280838,229,43.175 +280839,226.78,44.887 +280840,224.74,46.512 +280841,230.2,41.453 +280842,227.74,43.215 +280843,225.51,44.881 +280844,223.45,46.465 +280845,228.95,41.545 +280846,226.49,43.256 +280847,224.23,44.876 +280848,222.15,46.416 +280849,227.7,41.637 +280850,225.23,43.297 +280851,222.96,44.87 +280852,220.86,46.367 +280853,226.45,41.731 +280854,223.97,43.339 +280855,221.69,44.864 +280856,219.57,46.316 +280857,225.2,41.826 +280858,222.71,43.381 +280859,220.41,44.857 +280860,218.28,46.264 +280861,223.95,41.921 +280862,221.45,43.423 +280863,219.14,44.851 +280864,217,46.211 +280865,222.69,42.018 +280866,220.19,43.466 +280867,217.87,44.844 +280868,215.71,46.158 +280869,221.43,42.116 +280870,218.93,43.51 +280871,216.6,44.836 +280872,214.43,46.103 +280873,220.17,42.215 +280874,217.66,43.553 +280875,215.33,44.829 +280876,213.15,46.047 +280877,218.91,42.314 +280878,216.4,43.598 +280879,214.06,44.821 +280880,211.86,45.991 +280881,217.64,42.414 +280882,215.14,43.642 +280883,212.79,44.813 +280884,210.59,45.933 +280885,216.37,42.515 +280886,213.87,43.687 +280887,211.52,44.805 +280888,209.31,45.875 +280889,215.1,42.617 +280890,212.61,43.732 +280891,210.26,44.796 +280892,208.04,45.816 +280893,213.83,42.72 +280894,211.34,43.777 +280895,208.99,44.788 +280896,206.76,45.756 +280897,212.56,42.823 +280898,210.07,43.823 +280899,207.72,44.779 +280900,205.49,45.695 +280901,211.28,42.927 +280902,208.8,43.869 +280903,206.46,44.77 +280904,204.22,45.634 +280905,210,43.031 +280906,207.54,43.915 +280907,205.19,44.761 +280908,202.95,45.572 +280909,208.72,43.135 +280910,206.27,43.961 +280911,203.93,44.751 +280912,201.69,45.51 +280913,207.44,43.24 +280914,205,44.008 +280915,202.66,44.742 +280916,200.42,45.446 +280917,206.15,43.346 +280918,203.73,44.054 +280919,201.4,44.733 +280920,199.16,45.383 +280921,204.87,43.452 +280922,202.45,44.101 +280923,200.14,44.723 +280924,197.9,45.319 +280925,203.58,43.558 +280926,201.18,44.149 +280927,198.87,44.713 +280928,196.64,45.254 +280929,202.29,43.664 +280930,199.91,44.196 +280931,197.61,44.704 +280932,195.39,45.189 +280933,200.99,43.771 +280934,198.63,44.243 +280935,196.35,44.694 +280936,194.13,45.124 +280937,199.7,43.877 +280938,197.36,44.291 +280939,195.09,44.684 +280940,192.88,45.058 +280941,198.4,43.984 +280942,196.08,44.339 +280943,193.83,44.674 +280944,191.63,44.992 +280945,197.1,44.091 +280946,194.81,44.386 +280947,192.57,44.664 +280948,190.38,44.926 +280949,195.8,44.198 +280950,193.53,44.434 +280951,191.31,44.655 +280952,189.14,44.86 +280953,194.5,44.304 +280954,192.25,44.482 +280955,190.05,44.645 +280956,187.89,44.793 +280957,193.2,44.411 +280958,190.98,44.53 +280959,188.79,44.635 +280960,186.65,44.726 +280961,191.89,44.518 +280962,189.7,44.578 +280963,187.54,44.625 +280964,185.41,44.66 +280965,190.59,44.624 +280966,188.42,44.626 +280967,186.28,44.616 +280968,184.17,44.593 +280969,189.28,44.73 +280970,187.14,44.675 +280971,185.02,44.606 +280972,182.93,44.526 +280973,187.97,44.836 +280974,185.86,44.723 +280975,183.77,44.597 +280976,181.7,44.459 +280977,186.65,44.941 +280978,184.58,44.771 +280979,182.51,44.587 +280980,180.46,44.393 +280981,185.34,45.047 +280982,183.29,44.819 +280983,181.26,44.578 +280984,179.23,44.326 +280985,184.02,45.151 +280986,182.01,44.867 +280987,180,44.569 +280988,178,44.26 +280989,182.71,45.256 +280990,180.73,44.914 +280991,178.75,44.56 +280992,176.77,44.194 +280993,181.39,45.36 +280994,179.44,44.962 +280995,177.5,44.551 +280996,175.55,44.128 +280997,180.07,45.463 +280998,178.16,45.01 +280999,176.24,44.543 +281000,174.32,44.062 +281001,178.75,45.566 +281002,176.87,45.058 +281003,174.99,44.534 +281004,173.1,43.997 +281005,177.42,45.668 +281006,175.59,45.105 +281007,173.74,44.526 +281008,171.88,43.932 +281009,176.1,45.77 +281010,174.3,45.152 +281011,172.49,44.518 +281012,170.66,43.868 +281013,174.77,45.871 +281014,173.01,45.2 +281015,171.24,44.511 +281016,169.44,43.804 +281017,173.45,45.971 +281018,171.73,45.247 +281019,169.99,44.503 +281020,168.23,43.741 +281021,172.12,46.07 +281022,170.44,45.293 +281023,168.74,44.496 +281024,167.02,43.678 +281025,170.79,46.169 +281026,169.15,45.34 +281027,167.49,44.489 +281028,165.8,43.616 +281029,169.46,46.267 +281030,167.86,45.386 +281031,166.24,44.482 +281032,164.59,43.555 +281033,168.13,46.364 +281034,166.57,45.433 +281035,164.99,44.476 +281036,163.39,43.494 +281037,166.79,46.46 +281038,165.28,45.479 +281039,163.74,44.47 +281040,162.18,43.434 +281041,165.46,46.555 +281042,163.99,45.524 +281043,162.5,44.464 +281044,160.97,43.375 +281045,164.12,46.65 +281046,162.7,45.57 +281047,161.25,44.459 +281048,159.77,43.317 +281049,162.79,46.743 +281050,161.41,45.615 +281051,160,44.454 +281052,158.57,43.259 +281053,161.45,46.835 +281054,160.12,45.66 +281055,158.76,44.45 +281056,157.37,43.203 +281057,160.11,46.926 +281058,158.82,45.705 +281059,157.51,44.445 +281060,156.17,43.147 +281061,158.77,47.016 +281062,157.53,45.749 +281063,156.26,44.442 +281064,154.97,43.093 +281065,157.43,47.105 +281066,156.24,45.793 +281067,155.02,44.438 +281068,153.77,43.039 +281069,156.09,47.193 +281070,154.94,45.837 +281071,153.77,44.435 +281072,152.58,42.987 +281073,154.75,47.28 +281074,153.65,45.88 +281075,152.53,44.433 +281076,151.39,42.936 +281077,153.4,47.365 +281078,152.35,45.923 +281079,151.28,44.431 +281080,150.19,42.886 +281081,152.06,47.449 +281082,151.06,45.966 +281083,150.04,44.429 +281084,149,42.837 +281085,150.72,47.532 +281086,149.76,46.008 +281087,148.8,44.428 +281088,147.81,42.789 +281089,149.37,47.614 +281090,148.47,46.05 +281091,147.55,44.428 +281092,146.62,42.743 +281093,148.02,47.694 +281094,147.17,46.091 +281095,146.31,44.427 +281096,145.44,42.698 +281097,146.68,47.774 +281098,145.87,46.132 +281099,145.06,44.428 +281100,144.25,42.654 +281101,145.33,47.851 +281102,144.58,46.173 +281103,143.82,44.429 +281104,143.06,42.612 +281105,143.98,47.928 +281106,143.28,46.213 +281107,142.58,44.43 +281108,141.88,42.572 +281109,142.64,48.003 +281110,141.98,46.253 +281111,141.34,44.432 +281112,140.69,42.532 +281113,141.29,48.076 +281114,140.69,46.292 +281115,140.09,44.435 +281116,139.51,42.495 +281117,139.94,48.148 +281118,139.39,46.331 +281119,138.85,44.438 +281120,138.33,42.459 +281121,138.59,48.219 +281122,138.09,46.37 +281123,137.61,44.441 +281124,137.15,42.424 +281125,137.24,48.288 +281126,136.79,46.408 +281127,136.37,44.446 +281128,135.97,42.391 +281129,135.89,48.356 +281130,135.49,46.445 +281131,135.12,44.45 +281132,134.79,42.36 +281133,134.54,48.422 +281134,134.19,46.482 +281135,133.88,44.456 +281136,133.61,42.33 +281137,133.19,48.486 +281138,132.9,46.519 +281139,132.64,44.462 +281140,132.43,42.303 +281141,131.84,48.549 +281142,131.6,46.555 +281143,131.4,44.468 +281144,131.25,42.277 +281145,130.49,48.611 +281146,130.3,46.591 +281147,130.15,44.475 +281148,130.07,42.252 +281149,129.13,48.671 +281150,129,46.626 +281151,128.91,44.483 +281152,128.89,42.23 +281153,127.78,48.729 +281154,127.7,46.66 +281155,127.67,44.492 +281156,127.71,42.209 +281157,126.43,48.786 +281158,126.4,46.694 +281159,126.43,44.501 +281160,126.54,42.19 +281161,125.08,48.841 +281162,125.1,46.728 +281163,125.19,44.511 +281164,125.36,42.173 +281165,123.73,48.894 +281166,123.8,46.761 +281167,123.94,44.521 +281168,124.18,42.158 +281169,122.38,48.946 +281170,122.5,46.793 +281171,122.7,44.532 +281172,123,42.145 +281173,121.02,48.996 +281174,121.2,46.825 +281175,121.46,44.544 +281176,121.83,42.134 +281177,119.67,49.045 +281178,119.9,46.857 +281179,120.22,44.556 +281180,120.65,42.124 +281181,118.32,49.092 +281182,118.6,46.887 +281183,118.97,44.569 +281184,119.47,42.117 +281185,116.97,49.137 +281186,117.3,46.918 +281187,117.73,44.583 +281188,118.29,42.112 +281189,115.62,49.18 +281190,116,46.948 +281191,116.49,44.597 +281192,117.11,42.109 +281193,114.27,49.222 +281194,114.7,46.977 +281195,115.24,44.612 +281196,115.93,42.107 +281197,112.92,49.262 +281198,113.4,47.005 +281199,114,44.628 +281200,114.75,42.108 +281201,111.57,49.3 +281202,112.1,47.034 +281203,112.76,44.644 +281204,113.57,42.111 +281205,110.22,49.337 +281206,110.8,47.061 +281207,111.51,44.662 +281208,112.39,42.116 +281209,108.87,49.372 +281210,109.5,47.088 +281211,110.27,44.679 +281212,111.21,42.123 +281213,107.52,49.405 +281214,108.2,47.114 +281215,109.02,44.698 +281216,110.03,42.132 +281217,106.17,49.437 +281218,106.9,47.14 +281219,107.78,44.717 +281220,108.85,42.143 +281221,104.82,49.467 +281222,105.6,47.166 +281223,106.53,44.737 +281224,107.66,42.157 +281225,103.47,49.495 +281226,104.3,47.19 +281227,105.29,44.757 +281228,106.48,42.172 +281229,102.13,49.521 +281230,103,47.214 +281231,104.04,44.779 +281232,105.29,42.189 +281233,100.78,49.546 +281234,101.7,47.238 +281235,102.79,44.801 +281236,104.1,42.209 +281237,99.435,49.569 +281238,100.41,47.261 +281239,101.55,44.823 +281240,102.92,42.231 +281241,98.089,49.59 +281242,99.107,47.283 +281243,100.3,44.847 +281244,101.73,42.255 +281245,96.745,49.609 +281246,97.809,47.305 +281247,99.053,44.871 +281248,100.54,42.28 +281249,95.401,49.627 +281250,96.51,47.327 +281251,97.805,44.895 +281252,99.344,42.308 +281253,94.057,49.643 +281254,95.212,47.347 +281255,96.556,44.921 +281256,98.151,42.338 +281257,92.715,49.658 +281258,93.915,47.368 +281259,95.307,44.947 +281260,96.957,42.371 +281261,91.373,49.671 +281262,92.617,47.387 +281263,94.058,44.974 +281264,95.761,42.405 +281265,90.032,49.682 +281266,91.32,47.406 +281267,92.808,45.001 +281268,94.563,42.441 +281269,88.692,49.691 +281270,90.023,47.425 +281271,91.558,45.029 +281272,93.364,42.479 +281273,87.352,49.699 +281274,88.726,47.443 +281275,90.307,45.058 +281276,92.163,42.52 +281277,86.014,49.705 +281278,87.43,47.46 +281279,89.055,45.088 +281280,90.961,42.562 +281281,84.677,49.709 +281282,86.133,47.477 +281283,87.803,45.118 +281284,89.757,42.607 +281285,83.34,49.712 +281286,84.838,47.494 +281287,86.551,45.149 +281288,88.551,42.653 +281289,82.005,49.713 +281290,83.542,47.509 +281291,85.298,45.18 +281292,87.343,42.702 +281293,80.671,49.713 +281294,82.247,47.525 +281295,84.044,45.212 +281296,86.134,42.752 +281297,79.338,49.711 +281298,80.952,47.539 +281299,82.79,45.245 +281300,84.922,42.804 +281301,78.005,49.707 +281302,79.658,47.554 +281303,81.535,45.279 +281304,83.709,42.859 +281305,76.674,49.702 +281306,78.364,47.567 +281307,80.279,45.313 +281308,82.494,42.915 +281309,75.344,49.695 +281310,77.07,47.581 +281311,79.023,45.347 +281312,81.276,42.973 +281313,74.016,49.687 +281314,75.777,47.593 +281315,77.766,45.383 +281316,80.057,43.033 +281317,72.688,49.677 +281318,74.484,47.606 +281319,76.509,45.418 +281320,78.836,43.094 +281321,71.362,49.666 +281322,73.191,47.617 +281323,75.251,45.455 +281324,77.612,43.158 +281325,70.037,49.653 +281326,71.899,47.628 +281327,73.992,45.492 +281328,76.386,43.223 +281329,68.714,49.639 +281330,70.608,47.639 +281331,72.732,45.53 +281332,75.159,43.29 +281333,67.391,49.623 +281334,69.316,47.649 +281335,71.472,45.568 +281336,73.929,43.359 +281337,66.07,49.606 +281338,68.026,47.659 +281339,70.211,45.607 +281340,72.697,43.43 +281341,64.751,49.587 +281342,66.735,47.669 +281343,68.95,45.646 +281344,71.462,43.502 +281345,63.432,49.567 +281346,65.446,47.678 +281347,67.688,45.686 +281348,70.226,43.575 +281349,62.116,49.546 +281350,64.156,47.686 +281351,66.425,45.727 +281352,68.987,43.651 +281353,60.8,49.523 +281354,62.867,47.694 +281355,65.161,45.768 +281356,67.746,43.728 +281357,59.487,49.499 +281358,61.579,47.702 +281359,63.896,45.809 +281360,66.502,43.806 +281361,58.174,49.474 +281362,60.291,47.709 +281363,62.631,45.851 +281364,65.257,43.886 +281365,56.863,49.447 +281366,59.004,47.716 +281367,61.365,45.894 +281368,64.009,43.967 +281369,55.554,49.42 +281370,57.717,47.722 +281371,60.098,45.937 +281372,62.759,44.05 +281373,54.246,49.391 +281374,56.43,47.728 +281375,58.831,45.98 +281376,61.506,44.134 +281377,52.94,49.36 +281378,55.144,47.733 +281379,57.563,46.024 +281380,60.251,44.22 +281381,51.636,49.329 +281382,53.859,47.739 +281383,56.294,46.069 +281384,58.994,44.306 +281385,50.333,49.296 +281386,52.574,47.744 +281387,55.024,46.114 +281388,57.734,44.394 +281389,49.032,49.262 +281390,51.29,47.748 +281391,53.753,46.159 +281392,56.473,44.484 +281393,47.732,49.228 +281394,50.006,47.752 +281395,52.482,46.205 +281396,55.208,44.574 +281397,46.434,49.192 +281398,48.723,47.756 +281399,51.21,46.251 +281400,53.942,44.666 +281401,45.138,49.155 +281402,47.441,47.76 +281403,49.937,46.297 +281404,52.673,44.758 +281405,43.843,49.117 +281406,46.158,47.763 +281407,48.663,46.344 +281408,51.402,44.852 +281409,42.551,49.078 +281410,44.877,47.766 +281411,47.389,46.392 +281412,50.129,44.947 +281413,41.259,49.038 +281414,43.596,47.768 +281415,46.114,46.439 +281416,48.853,45.043 +281417,39.97,48.997 +281418,42.316,47.771 +281419,44.838,46.487 +281420,47.575,45.139 +281421,38.683,48.955 +281422,41.036,47.773 +281423,43.561,46.536 +281424,46.295,45.237 +281425,37.397,48.913 +281426,39.757,47.775 +281427,42.283,46.584 +281428,45.012,45.335 +281429,36.113,48.869 +281430,38.478,47.776 +281431,41.005,46.633 +281432,43.727,45.434 +281433,34.831,48.825 +281434,37.2,47.777 +281435,39.726,46.682 +281436,42.44,45.534 +281437,33.551,48.78 +281438,35.922,47.779 +281439,38.446,46.732 +281440,41.151,45.635 +281441,32.272,48.734 +281442,34.645,47.78 +281443,37.165,46.782 +281444,39.86,45.736 +281445,30.996,48.688 +281446,33.369,47.78 +281447,35.884,46.832 +281448,38.566,45.838 +281449,29.721,48.641 +281450,32.093,47.781 +281451,34.602,46.882 +281452,37.271,45.94 +281453,28.448,48.593 +281454,30.818,47.781 +281455,33.319,46.933 +281456,35.973,46.043 +281457,27.177,48.545 +281458,29.543,47.781 +281459,32.035,46.983 +281460,34.673,46.147 +281461,25.908,48.497 +281462,28.269,47.782 +281463,30.75,47.034 +281464,33.371,46.251 +281465,24.641,48.447 +281466,26.996,47.782 +281467,29.465,47.085 +281468,32.067,46.355 +281469,23.376,48.397 +281470,25.723,47.781 +281471,28.179,47.137 +281472,30.761,46.46 +281473,22.112,48.347 +281474,24.45,47.781 +281475,26.892,47.188 +281476,29.453,46.565 +281477,20.85,48.297 +281478,23.179,47.781 +281479,25.605,47.24 +281480,28.143,46.67 +281481,19.591,48.246 +281482,21.907,47.78 +281483,24.317,47.291 +281484,26.831,46.776 +281485,18.333,48.194 +281486,20.637,47.78 +281487,23.028,47.343 +281488,25.517,46.881 +281489,17.077,48.143 +281490,19.367,47.779 +281491,21.738,47.395 +281492,24.201,46.987 +281493,15.823,48.091 +281494,18.097,47.779 +281495,20.448,47.447 +281496,22.884,47.093 +281497,14.571,48.039 +281498,16.828,47.778 +281499,19.156,47.499 +281500,21.564,47.199 +281501,13.32,47.987 +281502,15.56,47.778 +281503,17.865,47.551 +281504,20.243,47.305 +281505,12.072,47.934 +281506,14.292,47.777 +281507,16.572,47.603 +281508,18.92,47.411 +281509,10.825,47.882 +281510,13.024,47.776 +281511,15.279,47.655 +281512,17.595,47.517 +281513,9.5807,47.829 +281514,11.758,47.776 +281515,13.985,47.707 +281516,16.268,47.623 +281517,8.3378,47.777 +281518,10.491,47.775 +281519,12.691,47.76 +281520,14.94,47.728 +281521,7.0968,47.724 +281522,9.2255,47.775 +281523,11.395,47.812 +281524,13.61,47.834 +281525,5.8576,47.672 +281526,7.9603,47.774 +281527,10.099,47.864 +281528,12.279,47.939 +281529,4.6202,47.62 +281530,6.6955,47.774 +281531,8.803,47.916 +281532,10.945,48.044 +281533,3.3846,47.567 +281534,5.4313,47.774 +281535,7.5058,47.968 +281536,9.6108,48.148 +281537,2.1508,47.515 +281538,4.1675,47.774 +281539,6.2081,48.02 +281540,8.2747,48.253 +281541,0.91877,47.464 +281542,2.9043,47.774 +281543,4.9097,48.072 +281544,6.9371,48.356 +281545,359.69,47.412 +281546,1.6415,47.774 +281547,3.6107,48.124 +281548,5.598,48.46 +281549,358.46,47.361 +281550,0.37919,47.774 +281551,2.3112,48.175 +281552,4.2575,48.563 +281553,357.23,47.31 +281554,359.12,47.775 +281555,1.0111,48.227 +281556,2.9157,48.665 +281557,356.01,47.259 +281558,357.86,47.775 +281559,359.71,48.278 +281560,1.5725,48.767 +281561,354.78,47.209 +281562,356.59,47.776 +281563,358.41,48.329 +281564,0.228,48.868 +281565,353.56,47.16 +281566,355.33,47.777 +281567,357.11,48.38 +281568,358.88,48.969 +281569,352.34,47.111 +281570,354.07,47.778 +281571,355.8,48.431 +281572,357.54,49.068 +281573,351.12,47.062 +281574,352.81,47.78 +281575,354.5,48.482 +281576,356.19,49.168 +281577,349.91,47.014 +281578,351.56,47.781 +281579,353.2,48.532 +281580,354.84,49.266 +281581,348.69,46.966 +281582,350.3,47.783 +281583,351.89,48.583 +281584,353.49,49.364 +281585,347.48,46.92 +281586,349.04,47.785 +281587,350.59,48.633 +281588,352.14,49.461 +281589,346.26,46.874 +281590,347.78,47.788 +281591,349.29,48.683 +281592,350.78,49.557 +281593,345.05,46.828 +281594,346.52,47.791 +281595,347.98,48.732 +281596,349.43,49.652 +281597,343.84,46.784 +281598,345.26,47.794 +281599,346.67,48.782 +281600,348.07,49.747 +281601,342.64,46.74 +281602,344.01,47.797 +281603,345.37,48.831 +281604,346.72,49.84 +281605,341.43,46.697 +281606,342.75,47.801 +281607,344.06,48.879 +281608,345.36,49.933 +281609,340.22,46.655 +281610,341.49,47.805 +281611,342.75,48.928 +281612,344.01,50.024 +281613,339.02,46.614 +281614,340.24,47.809 +281615,341.45,48.976 +281616,342.65,50.114 +281617,337.82,46.574 +281618,338.98,47.814 +281619,340.14,49.024 +281620,341.29,50.204 +281621,336.61,46.535 +281622,337.73,47.819 +281623,338.83,49.071 +281624,339.93,50.292 +281625,335.41,46.497 +281626,336.47,47.824 +281627,337.52,49.118 +281628,338.57,50.38 +281629,334.21,46.46 +281630,335.22,47.83 +281631,336.21,49.165 +281632,337.21,50.466 +281633,333.01,46.424 +281634,333.96,47.837 +281635,334.9,49.212 +281636,335.85,50.551 +281637,331.82,46.389 +281638,332.71,47.843 +281639,333.59,49.258 +281640,334.48,50.634 +281641,330.62,46.356 +281642,331.45,47.85 +281643,332.29,49.304 +281644,333.12,50.717 +281645,329.42,46.323 +281646,330.2,47.858 +281647,330.98,49.349 +281648,331.76,50.798 +281649,328.23,46.292 +281650,328.94,47.866 +281651,329.66,49.394 +281652,330.39,50.878 +281653,327.04,46.262 +281654,327.69,47.874 +281655,328.35,49.439 +281656,329.03,50.957 +281657,325.84,46.234 +281658,326.43,47.883 +281659,327.04,49.483 +281660,327.66,51.035 +281661,324.65,46.206 +281662,325.18,47.892 +281663,325.73,49.526 +281664,326.3,51.111 +281665,323.46,46.18 +281666,323.93,47.902 +281667,324.42,49.57 +281668,324.93,51.186 +281669,322.27,46.156 +281670,322.67,47.913 +281671,323.11,49.613 +281672,323.57,51.26 +281673,321.08,46.133 +281674,321.42,47.923 +281675,321.8,49.655 +281676,322.2,51.332 +281677,319.88,46.111 +281678,320.17,47.935 +281679,320.49,49.697 +281680,320.84,51.403 +281681,318.69,46.091 +281682,318.91,47.946 +281683,319.17,49.738 +281684,319.47,51.472 +281685,317.51,46.072 +281686,317.66,47.959 +281687,317.86,49.78 +281688,318.1,51.54 +281689,316.32,46.055 +281690,316.41,47.972 +281691,316.55,49.82 +281692,316.74,51.606 +281693,315.13,46.04 +281694,315.15,47.985 +281695,315.24,49.86 +281696,315.37,51.671 +281697,313.94,46.025 +281698,313.9,47.999 +281699,313.92,49.9 +281700,314,51.735 +281701,312.75,46.013 +281702,312.64,48.013 +281703,312.61,49.939 +281704,312.64,51.797 +281705,311.56,46.002 +281706,311.39,48.028 +281707,311.3,49.978 +281708,311.27,51.858 +281709,310.37,45.993 +281710,310.14,48.044 +281711,309.99,50.016 +281712,309.9,51.917 +281713,309.18,45.986 +281714,308.88,48.06 +281715,308.67,50.053 +281716,308.53,51.974 +281717,308,45.98 +281718,307.63,48.077 +281719,307.36,50.091 +281720,307.17,52.03 +281721,306.81,45.976 +281722,306.38,48.094 +281723,306.05,50.127 +281724,305.8,52.085 +281725,305.62,45.973 +281726,305.12,48.112 +281727,304.73,50.163 +281728,304.43,52.138 +281729,304.43,45.973 +281730,303.87,48.13 +281731,303.42,50.199 +281732,303.07,52.189 +281733,303.24,45.974 +281734,302.61,48.149 +281735,302.11,50.234 +281736,301.7,52.239 +281737,302.05,45.976 +281738,301.36,48.168 +281739,300.8,50.269 +281740,300.34,52.287 +281741,300.86,45.981 +281742,300.1,48.189 +281743,299.48,50.303 +281744,298.97,52.334 +281745,299.67,45.987 +281746,298.85,48.209 +281747,298.17,50.336 +281748,297.61,52.379 +281749,298.47,45.996 +281750,297.59,48.231 +281751,296.86,50.369 +281752,296.24,52.422 +281753,297.28,46.006 +281754,296.34,48.253 +281755,295.54,50.401 +281756,294.88,52.464 +281757,296.09,46.018 +281758,295.08,48.275 +281759,294.23,50.433 +281760,293.52,52.504 +281761,294.9,46.031 +281762,293.82,48.298 +281763,292.92,50.465 +281764,292.15,52.543 +281765,293.7,46.047 +281766,292.57,48.322 +281767,291.61,50.495 +281768,290.79,52.58 +281769,292.51,46.064 +281770,291.31,48.346 +281771,290.3,50.526 +281772,289.43,52.615 +281773,291.31,46.083 +281774,290.05,48.371 +281775,288.98,50.555 +281776,288.07,52.649 +281777,290.11,46.104 +281778,288.79,48.397 +281779,287.67,50.585 +281780,286.71,52.681 +281781,288.91,46.127 +281782,287.54,48.423 +281783,286.36,50.613 +281784,285.35,52.711 +281785,287.71,46.152 +281786,286.28,48.45 +281787,285.05,50.641 +281788,283.99,52.74 +281789,286.51,46.178 +281790,285.02,48.477 +281791,283.74,50.669 +281792,282.63,52.768 +281793,285.31,46.206 +281794,283.76,48.505 +281795,282.43,50.696 +281796,281.27,52.793 +281797,284.11,46.237 +281798,282.5,48.534 +281799,281.12,50.722 +281800,279.91,52.817 +281801,282.9,46.269 +281802,281.24,48.563 +281803,279.81,50.748 +281804,278.56,52.84 +281805,281.69,46.303 +281806,279.98,48.592 +281807,278.5,50.774 +281808,277.2,52.861 +281809,280.49,46.338 +281810,278.72,48.623 +281811,277.19,50.799 +281812,275.85,52.88 +281813,279.28,46.376 +281814,277.45,48.654 +281815,275.88,50.823 +281816,274.49,52.898 +281817,278.07,46.415 +281818,276.19,48.685 +281819,274.57,50.847 +281820,273.14,52.914 +281821,276.85,46.456 +281822,274.93,48.717 +281823,273.26,50.87 +281824,271.79,52.929 +281825,275.64,46.499 +281826,273.67,48.75 +281827,271.95,50.893 +281828,270.44,52.942 +281829,274.42,46.544 +281830,272.4,48.783 +281831,270.64,50.915 +281832,269.09,52.953 +281833,273.21,46.591 +281834,271.14,48.817 +281835,269.34,50.937 +281836,267.74,52.963 +281837,271.99,46.639 +281838,269.87,48.852 +281839,268.03,50.958 +281840,266.39,52.972 +281841,270.77,46.689 +281842,268.61,48.887 +281843,266.72,50.978 +281844,265.05,52.979 +281845,269.54,46.741 +281846,267.34,48.922 +281847,265.41,50.999 +281848,263.7,52.984 +281849,268.32,46.794 +281850,266.07,48.958 +281851,264.11,51.018 +281852,262.36,52.988 +281853,267.09,46.849 +281854,264.81,48.995 +281855,262.8,51.037 +281856,261.01,52.99 +281857,265.86,46.906 +281858,263.54,49.032 +281859,261.5,51.056 +281860,259.67,52.991 +281861,264.63,46.964 +281862,262.27,49.07 +281863,260.19,51.074 +281864,258.33,52.991 +281865,263.4,47.025 +281866,261,49.108 +281867,258.89,51.092 +281868,256.99,52.989 +281869,262.16,47.086 +281870,259.73,49.147 +281871,257.58,51.109 +281872,255.66,52.986 +281873,260.93,47.15 +281874,258.46,49.186 +281875,256.28,51.126 +281876,254.32,52.981 +281877,259.69,47.214 +281878,257.19,49.226 +281879,254.97,51.142 +281880,252.99,52.975 +281881,258.45,47.281 +281882,255.92,49.267 +281883,253.67,51.158 +281884,251.65,52.967 +281885,257.2,47.349 +281886,254.64,49.308 +281887,252.37,51.173 +281888,250.32,52.959 +281889,255.96,47.418 +281890,253.37,49.349 +281891,251.07,51.188 +281892,248.99,52.948 +281893,254.71,47.489 +281894,252.1,49.391 +281895,249.77,51.203 +281896,247.66,52.937 +281897,253.46,47.561 +281898,250.82,49.433 +281899,248.46,51.217 +281900,246.33,52.924 +281901,252.21,47.635 +281902,249.55,49.476 +281903,247.16,51.23 +281904,245.01,52.91 +281905,250.95,47.71 +281906,248.27,49.519 +281907,245.86,51.244 +281908,243.68,52.895 +281909,249.7,47.786 +281910,246.99,49.563 +281911,244.56,51.256 +281912,242.36,52.878 +281913,248.44,47.864 +281914,245.71,49.607 +281915,243.26,51.269 +281916,241.04,52.861 +281917,247.18,47.943 +281918,244.44,49.651 +281919,241.97,51.281 +281920,239.72,52.842 +281921,245.91,48.023 +281922,243.16,49.696 +281923,240.67,51.293 +281924,238.4,52.822 +281925,244.65,48.105 +281926,241.88,49.742 +281927,239.37,51.304 +281928,237.08,52.801 +281929,243.38,48.188 +281930,240.6,49.788 +281931,238.07,51.315 +281932,235.77,52.778 +281933,242.11,48.271 +281934,239.31,49.834 +281935,236.78,51.325 +281936,234.45,52.755 +281937,240.84,48.356 +281938,238.03,49.88 +281939,235.48,51.335 +281940,233.14,52.73 +281941,239.56,48.442 +281942,236.75,49.927 +281943,234.19,51.345 +281944,231.83,52.705 +281945,238.28,48.529 +281946,235.46,49.974 +281947,232.89,51.355 +281948,230.52,52.679 +281949,237,48.618 +281950,234.18,50.022 +281951,231.6,51.364 +281952,229.21,52.651 +281953,235.72,48.707 +281954,232.89,50.07 +281955,230.3,51.373 +281956,227.91,52.623 +281957,234.44,48.797 +281958,231.61,50.118 +281959,229.01,51.381 +281960,226.61,52.593 +281961,233.15,48.887 +281962,230.32,50.167 +281963,227.72,51.39 +281964,225.3,52.563 +281965,231.86,48.979 +281966,229.03,50.216 +281967,226.43,51.398 +281968,224.01,52.532 +281969,230.57,49.072 +281970,227.74,50.265 +281971,225.14,51.406 +281972,222.71,52.5 +281973,229.28,49.165 +281974,226.46,50.314 +281975,223.85,51.413 +281976,221.41,52.468 +281977,227.98,49.259 +281978,225.17,50.364 +281979,222.56,51.42 +281980,220.12,52.434 +281981,226.68,49.354 +281982,223.87,50.414 +281983,221.27,51.427 +281984,218.82,52.4 +281985,225.38,49.45 +281986,222.58,50.464 +281987,219.98,51.434 +281988,217.53,52.365 +281989,224.08,49.546 +281990,221.29,50.515 +281991,218.69,51.441 +281992,216.25,52.329 +281993,222.78,49.643 +281994,220,50.565 +281995,217.4,51.447 +281996,214.96,52.293 +281997,221.47,49.74 +281998,218.7,50.616 +281999,216.11,51.453 +282000,213.67,52.256 +282001,220.16,49.838 +282002,217.41,50.667 +282003,214.83,51.459 +282004,212.39,52.219 +282005,218.85,49.936 +282006,216.11,50.718 +282007,213.54,51.465 +282008,211.11,52.181 +282009,217.54,50.035 +282010,214.82,50.77 +282011,212.26,51.471 +282012,209.83,52.142 +282013,216.22,50.134 +282014,213.52,50.821 +282015,210.97,51.477 +282016,208.55,52.103 +282017,214.9,50.233 +282018,212.22,50.873 +282019,209.69,51.482 +282020,207.28,52.064 +282021,213.58,50.333 +282022,210.92,50.925 +282023,208.4,51.487 +282024,206,52.024 +282025,212.26,50.433 +282026,209.63,50.977 +282027,207.12,51.492 +282028,204.73,51.984 +282029,210.94,50.533 +282030,208.33,51.029 +282031,205.84,51.498 +282032,203.46,51.943 +282033,209.61,50.634 +282034,207.03,51.081 +282035,204.56,51.503 +282036,202.19,51.902 +282037,208.29,50.735 +282038,205.72,51.133 +282039,203.27,51.508 +282040,200.92,51.861 +282041,206.96,50.835 +282042,204.42,51.185 +282043,201.99,51.512 +282044,199.66,51.82 +282045,205.63,50.936 +282046,203.12,51.237 +282047,200.71,51.517 +282048,198.4,51.778 +282049,204.29,51.037 +282050,201.82,51.29 +282051,199.43,51.522 +282052,197.14,51.736 +282053,202.96,51.138 +282054,200.51,51.342 +282055,198.16,51.527 +282056,195.88,51.694 +282057,201.62,51.239 +282058,199.21,51.395 +282059,196.88,51.532 +282060,194.62,51.652 +282061,200.29,51.34 +282062,197.9,51.447 +282063,195.6,51.536 +282064,193.36,51.61 +282065,198.95,51.44 +282066,196.6,51.499 +282067,194.32,51.541 +282068,192.11,51.568 +282069,197.6,51.541 +282070,195.29,51.552 +282071,193.04,51.546 +282072,190.86,51.526 +282073,196.26,51.641 +282074,193.98,51.604 +282075,191.77,51.551 +282076,189.61,51.484 +282077,194.92,51.741 +282078,192.68,51.656 +282079,190.49,51.556 +282080,188.36,51.442 +282081,193.57,51.841 +282082,191.37,51.708 +282083,189.22,51.561 +282084,187.11,51.4 +282085,192.22,51.941 +282086,190.06,51.76 +282087,187.94,51.566 +282088,185.87,51.358 +282089,190.87,52.04 +282090,188.75,51.812 +282091,186.67,51.571 +282092,184.62,51.317 +282093,189.52,52.139 +282094,187.44,51.864 +282095,185.39,51.576 +282096,183.38,51.276 +282097,188.17,52.237 +282098,186.13,51.916 +282099,184.12,51.581 +282100,182.14,51.235 +282101,186.82,52.335 +282102,184.82,51.968 +282103,182.85,51.587 +282104,180.91,51.194 +282105,185.46,52.433 +282106,183.5,52.019 +282107,181.57,51.592 +282108,179.67,51.153 +282109,184.11,52.529 +282110,182.19,52.071 +282111,180.3,51.598 +282112,178.43,51.113 +282113,182.75,52.626 +282114,180.88,52.122 +282115,179.03,51.604 +282116,177.2,51.074 +282117,181.39,52.722 +282118,179.56,52.173 +282119,177.76,51.61 +282120,175.97,51.035 +282121,180.03,52.817 +282122,178.25,52.224 +282123,176.49,51.616 +282124,174.74,50.996 +282125,178.67,52.912 +282126,176.94,52.275 +282127,175.22,51.623 +282128,173.51,50.958 +282129,177.31,53.005 +282130,175.62,52.325 +282131,173.95,51.629 +282132,172.28,50.92 +282133,175.94,53.099 +282134,174.31,52.375 +282135,172.68,51.636 +282136,171.06,50.883 +282137,174.58,53.191 +282138,172.99,52.425 +282139,171.41,51.643 +282140,169.83,50.847 +282141,173.21,53.283 +282142,171.67,52.475 +282143,170.14,51.651 +282144,168.61,50.811 +282145,171.85,53.374 +282146,170.36,52.525 +282147,168.87,51.658 +282148,167.39,50.776 +282149,170.48,53.464 +282150,169.04,52.574 +282151,167.6,51.666 +282152,166.17,50.741 +282153,169.11,53.553 +282154,167.72,52.623 +282155,166.33,51.674 +282156,164.95,50.708 +282157,167.74,53.641 +282158,166.4,52.672 +282159,165.07,51.682 +282160,163.73,50.675 +282161,166.37,53.728 +282162,165.08,52.72 +282163,163.8,51.691 +282164,162.52,50.643 +282165,165,53.815 +282166,163.77,52.768 +282167,162.53,51.7 +282168,161.3,50.612 +282169,163.63,53.9 +282170,162.45,52.816 +282171,161.27,51.709 +282172,160.09,50.581 +282173,162.26,53.985 +282174,161.13,52.863 +282175,160,51.719 +282176,158.87,50.552 +282177,160.88,54.068 +282178,159.81,52.911 +282179,158.73,51.729 +282180,157.66,50.523 +282181,159.51,54.151 +282182,158.49,52.957 +282183,157.47,51.739 +282184,156.45,50.496 +282185,158.13,54.232 +282186,157.17,53.004 +282187,156.2,51.75 +282188,155.24,50.47 +282189,156.76,54.312 +282190,155.84,53.05 +282191,154.94,51.761 +282192,154.03,50.444 +282193,155.38,54.391 +282194,154.52,53.096 +282195,153.67,51.772 +282196,152.83,50.42 +282197,154.01,54.469 +282198,153.2,53.141 +282199,152.41,51.784 +282200,151.62,50.397 +282201,152.63,54.546 +282202,151.88,53.186 +282203,151.14,51.796 +282204,150.41,50.374 +282205,151.26,54.621 +282206,150.56,53.231 +282207,149.88,51.808 +282208,149.21,50.353 +282209,149.88,54.696 +282210,149.24,53.275 +282211,148.61,51.821 +282212,148,50.334 +282213,148.5,54.769 +282214,147.91,53.319 +282215,147.35,51.834 +282216,146.8,50.315 +282217,147.12,54.841 +282218,146.59,53.362 +282219,146.08,51.848 +282220,145.59,50.298 +282221,145.75,54.911 +282222,145.27,53.405 +282223,144.82,51.862 +282224,144.39,50.281 +282225,144.37,54.981 +282226,143.95,53.448 +282227,143.55,51.877 +282228,143.19,50.267 +282229,142.99,55.049 +282230,142.62,53.49 +282231,142.29,51.892 +282232,141.99,50.253 +282233,141.61,55.115 +282234,141.3,53.531 +282235,141.02,51.907 +282236,140.78,50.241 +282237,140.23,55.181 +282238,139.98,53.573 +282239,139.76,51.923 +282240,139.58,50.23 +282241,138.85,55.245 +282242,138.65,53.613 +282243,138.5,51.939 +282244,138.38,50.22 +282245,137.47,55.307 +282246,137.33,53.654 +282247,137.23,51.956 +282248,137.18,50.212 +282249,136.09,55.369 +282250,136.01,53.694 +282251,135.97,51.973 +282252,135.98,50.206 +282253,134.72,55.429 +282254,134.68,53.733 +282255,134.7,51.991 +282256,134.78,50.2 +282257,133.34,55.487 +282258,133.36,53.772 +282259,133.44,52.009 +282260,133.58,50.197 +282261,131.96,55.544 +282262,132.04,53.81 +282263,132.17,52.028 +282264,132.38,50.194 +282265,130.58,55.6 +282266,130.71,53.848 +282267,130.91,52.047 +282268,131.18,50.193 +282269,129.2,55.654 +282270,129.39,53.886 +282271,129.64,52.067 +282272,129.98,50.194 +282273,127.82,55.707 +282274,128.07,53.923 +282275,128.38,52.087 +282276,128.78,50.196 +282277,126.44,55.758 +282278,126.74,53.959 +282279,127.11,52.108 +282280,127.58,50.2 +282281,125.07,55.808 +282282,125.42,53.995 +282283,125.85,52.129 +282284,126.37,50.205 +282285,123.69,55.856 +282286,124.1,54.031 +282287,124.58,52.151 +282288,125.17,50.212 +282289,122.31,55.903 +282290,122.77,54.066 +282291,123.32,52.173 +282292,123.97,50.22 +282293,120.94,55.949 +282294,121.45,54.1 +282295,122.05,52.196 +282296,122.77,50.23 +282297,119.56,55.993 +282298,120.12,54.134 +282299,120.79,52.219 +282300,121.56,50.241 +282301,118.18,56.035 +282302,118.8,54.168 +282303,119.52,52.243 +282304,120.36,50.254 +282305,116.81,56.076 +282306,117.48,54.201 +282307,118.25,52.267 +282308,119.16,50.269 +282309,115.43,56.115 +282310,116.16,54.233 +282311,116.99,52.292 +282312,117.95,50.285 +282313,114.06,56.153 +282314,114.83,54.265 +282315,115.72,52.317 +282316,116.75,50.303 +282317,112.69,56.19 +282318,113.51,54.297 +282319,114.45,52.343 +282320,115.54,50.322 +282321,111.31,56.225 +282322,112.19,54.328 +282323,113.19,52.369 +282324,114.33,50.344 +282325,109.94,56.258 +282326,110.87,54.358 +282327,111.92,52.396 +282328,113.13,50.366 +282329,108.57,56.29 +282330,109.54,54.388 +282331,110.65,52.424 +282332,111.92,50.391 +282333,107.2,56.32 +282334,108.22,54.418 +282335,109.38,52.452 +282336,110.71,50.417 +282337,105.83,56.349 +282338,106.9,54.446 +282339,108.11,52.48 +282340,109.5,50.444 +282341,104.46,56.377 +282342,105.58,54.475 +282343,106.84,52.509 +282344,108.28,50.473 +282345,103.09,56.403 +282346,104.26,54.503 +282347,105.57,52.539 +282348,107.07,50.504 +282349,101.72,56.427 +282350,102.94,54.53 +282351,104.3,52.569 +282352,105.86,50.537 +282353,100.36,56.45 +282354,101.62,54.557 +282355,103.03,52.599 +282356,104.64,50.571 +282357,98.99,56.471 +282358,100.3,54.583 +282359,101.76,52.631 +282360,103.42,50.606 +282361,97.625,56.491 +282362,98.976,54.609 +282363,100.49,52.662 +282364,102.2,50.644 +282365,96.261,56.51 +282366,97.656,54.634 +282367,99.218,52.694 +282368,100.98,50.683 +282369,94.898,56.527 +282370,96.337,54.659 +282371,97.946,52.727 +282372,99.763,50.723 +282373,93.536,56.543 +282374,95.018,54.684 +282375,96.673,52.76 +282376,98.54,50.765 +282377,92.175,56.557 +282378,93.699,54.707 +282379,95.399,52.794 +282380,97.315,50.809 +282381,90.815,56.569 +282382,92.381,54.731 +282383,94.125,52.828 +282384,96.089,50.854 +282385,89.456,56.581 +282386,91.063,54.754 +282387,92.851,52.863 +282388,94.862,50.901 +282389,88.098,56.591 +282390,89.745,54.776 +282391,91.576,52.898 +282392,93.633,50.949 +282393,86.742,56.599 +282394,88.428,54.798 +282395,90.3,52.934 +282396,92.402,50.999 +282397,85.387,56.606 +282398,87.111,54.819 +282399,89.024,52.97 +282400,91.169,51.05 +282401,84.033,56.612 +282402,85.795,54.84 +282403,87.747,53.006 +282404,89.934,51.103 +282405,82.68,56.616 +282406,84.479,54.861 +282407,86.47,53.043 +282408,88.698,51.157 +282409,81.328,56.619 +282410,83.163,54.881 +282411,85.192,53.081 +282412,87.46,51.213 +282413,79.978,56.621 +282414,81.848,54.9 +282415,83.913,53.119 +282416,86.22,51.27 +282417,78.629,56.621 +282418,80.533,54.919 +282419,82.634,53.158 +282420,84.978,51.329 +282421,77.282,56.62 +282422,79.219,54.938 +282423,81.354,53.197 +282424,83.734,51.389 +282425,75.936,56.618 +282426,77.905,54.956 +282427,80.074,53.236 +282428,82.488,51.45 +282429,74.591,56.614 +282430,76.592,54.974 +282431,78.793,53.276 +282432,81.24,51.513 +282433,73.248,56.609 +282434,75.279,54.991 +282435,77.511,53.316 +282436,79.99,51.577 +282437,71.906,56.603 +282438,73.967,55.008 +282439,76.229,53.357 +282440,78.738,51.643 +282441,70.565,56.596 +282442,72.655,55.025 +282443,74.945,53.398 +282444,77.484,51.709 +282445,69.226,56.587 +282446,71.343,55.041 +282447,73.662,53.44 +282448,76.228,51.777 +282449,67.889,56.578 +282450,70.033,55.056 +282451,72.377,53.482 +282452,74.969,51.847 +282453,66.553,56.567 +282454,68.722,55.072 +282455,71.092,53.524 +282456,73.709,51.917 +282457,65.219,56.555 +282458,67.412,55.086 +282459,69.806,53.567 +282460,72.446,51.989 +282461,63.886,56.542 +282462,66.103,55.101 +282463,68.52,53.61 +282464,71.181,52.062 +282465,62.555,56.527 +282466,64.794,55.115 +282467,67.233,53.653 +282468,69.914,52.136 +282469,61.225,56.512 +282470,63.486,55.129 +282471,65.945,53.697 +282472,68.645,52.211 +282473,59.897,56.496 +282474,62.178,55.142 +282475,64.656,53.741 +282476,67.374,52.287 +282477,58.571,56.478 +282478,60.871,55.155 +282479,63.367,53.786 +282480,66.1,52.365 +282481,57.246,56.46 +282482,59.565,55.168 +282483,62.077,53.831 +282484,64.825,52.443 +282485,55.923,56.441 +282486,58.259,55.18 +282487,60.786,53.876 +282488,63.546,52.523 +282489,54.602,56.42 +282490,56.953,55.192 +282491,59.494,53.922 +282492,62.266,52.603 +282493,53.282,56.399 +282494,55.648,55.204 +282495,58.202,53.968 +282496,60.984,52.684 +282497,51.964,56.377 +282498,54.344,55.216 +282499,56.909,54.014 +282500,59.699,52.766 +282501,50.648,56.354 +282502,53.04,55.227 +282503,55.615,54.06 +282504,58.412,52.849 +282505,49.334,56.33 +282506,51.737,55.238 +282507,54.321,54.107 +282508,57.123,52.933 +282509,48.021,56.305 +282510,50.434,55.248 +282511,53.026,54.154 +282512,55.831,53.018 +282513,46.71,56.28 +282514,49.132,55.258 +282515,51.73,54.201 +282516,54.538,53.104 +282517,45.401,56.253 +282518,47.831,55.268 +282519,50.433,54.249 +282520,53.242,53.19 +282521,44.094,56.226 +282522,46.53,55.278 +282523,49.135,54.297 +282524,51.944,53.277 +282525,42.788,56.199 +282526,45.23,55.288 +282527,47.837,54.345 +282528,50.643,53.365 +282529,41.484,56.17 +282530,43.93,55.297 +282531,46.538,54.393 +282532,49.341,53.453 +282533,40.182,56.141 +282534,42.631,55.306 +282535,45.239,54.441 +282536,48.036,53.542 +282537,38.882,56.111 +282538,41.333,55.315 +282539,43.938,54.49 +282540,46.729,53.631 +282541,37.584,56.081 +282542,40.035,55.324 +282543,42.637,54.539 +282544,45.42,53.722 +282545,36.287,56.05 +282546,38.737,55.332 +282547,41.335,54.588 +282548,44.109,53.812 +282549,34.993,56.019 +282550,37.441,55.341 +282551,40.033,54.637 +282552,42.795,53.903 +282553,33.7,55.987 +282554,36.145,55.349 +282555,38.729,54.686 +282556,41.48,53.995 +282557,32.409,55.954 +282558,34.849,55.357 +282559,37.425,54.735 +282560,40.162,54.087 +282561,31.12,55.922 +282562,33.554,55.365 +282563,36.121,54.785 +282564,38.843,54.179 +282565,29.833,55.888 +282566,32.26,55.372 +282567,34.815,54.834 +282568,37.521,54.271 +282569,28.547,55.855 +282570,30.966,55.38 +282571,33.509,54.884 +282572,36.197,54.364 +282573,27.263,55.821 +282574,29.673,55.387 +282575,32.202,54.934 +282576,34.872,54.457 +282577,25.982,55.786 +282578,28.38,55.395 +282579,30.895,54.984 +282580,33.544,54.551 +282581,24.702,55.752 +282582,27.088,55.402 +282583,29.586,55.034 +282584,32.214,54.644 +282585,23.424,55.717 +282586,25.797,55.409 +282587,28.277,55.084 +282588,30.882,54.738 +282589,22.147,55.682 +282590,24.506,55.416 +282591,26.968,55.134 +282592,29.549,54.832 +282593,20.873,55.647 +282594,23.216,55.424 +282595,25.657,55.184 +282596,28.213,54.926 +282597,19.6,55.611 +282598,21.926,55.431 +282599,24.346,55.234 +282600,26.876,55.02 +282601,18.329,55.576 +282602,20.637,55.438 +282603,23.035,55.284 +282604,25.537,55.114 +282605,17.06,55.54 +282606,19.348,55.445 +282607,21.722,55.335 +282608,24.196,55.208 +282609,15.793,55.505 +282610,18.06,55.452 +282611,20.409,55.385 +282612,22.853,55.302 +282613,14.528,55.469 +282614,16.773,55.459 +282615,19.096,55.435 +282616,21.508,55.395 +282617,13.264,55.433 +282618,15.486,55.466 +282619,17.782,55.485 +282620,20.162,55.489 +282621,12.002,55.398 +282622,14.199,55.473 +282623,16.467,55.535 +282624,18.814,55.583 +282625,10.742,55.362 +282626,12.913,55.48 +282627,15.151,55.585 +282628,17.464,55.676 +282629,9.4831,55.327 +282630,11.628,55.487 +282631,13.835,55.635 +282632,16.113,55.769 +282633,8.2263,55.292 +282634,10.343,55.494 +282635,12.518,55.685 +282636,14.76,55.862 +282637,6.9712,55.256 +282638,9.0587,55.501 +282639,11.201,55.734 +282640,13.406,55.954 +282641,5.7178,55.222 +282642,7.7748,55.508 +282643,9.8833,55.784 +282644,12.05,56.046 +282645,4.4661,55.187 +282646,6.4915,55.516 +282647,8.5649,55.833 +282648,10.692,56.138 +282649,3.2159,55.153 +282650,5.2086,55.523 +282651,7.2459,55.883 +282652,9.3335,56.23 +282653,1.9675,55.119 +282654,3.9262,55.531 +282655,5.9263,55.932 +282656,7.9731,56.321 +282657,0.72056,55.085 +282658,2.6442,55.538 +282659,4.6063,55.981 +282660,6.6114,56.411 +282661,359.48,55.052 +282662,1.3627,55.546 +282663,3.2856,56.03 +282664,5.2483,56.501 +282665,358.23,55.019 +282666,0.081692,55.554 +282667,1.9645,56.079 +282668,3.8839,56.591 +282669,356.99,54.986 +282670,358.8,55.562 +282671,0.64287,56.127 +282672,2.5182,56.68 +282673,355.75,54.954 +282674,357.52,55.571 +282675,359.32,56.176 +282676,1.1513,56.768 +282677,354.51,54.923 +282678,356.24,55.579 +282679,358,56.224 +282680,359.78,56.856 +282681,353.27,54.892 +282682,354.96,55.588 +282683,356.68,56.272 +282684,358.41,56.943 +282685,352.04,54.862 +282686,353.68,55.597 +282687,355.35,56.32 +282688,357.04,57.029 +282689,350.8,54.832 +282690,352.4,55.606 +282691,354.03,56.367 +282692,355.67,57.115 +282693,349.57,54.803 +282694,351.13,55.615 +282695,352.7,56.415 +282696,354.3,57.2 +282697,348.33,54.774 +282698,349.85,55.625 +282699,351.38,56.462 +282700,352.93,57.284 +282701,347.1,54.747 +282702,348.57,55.634 +282703,350.05,56.508 +282704,351.55,57.367 +282705,345.87,54.72 +282706,347.29,55.644 +282707,348.73,56.555 +282708,350.18,57.45 +282709,344.65,54.693 +282710,346.02,55.655 +282711,347.4,56.601 +282712,348.8,57.532 +282713,343.42,54.668 +282714,344.74,55.665 +282715,346.07,56.647 +282716,347.42,57.612 +282717,342.19,54.643 +282718,343.46,55.676 +282719,344.75,56.693 +282720,346.04,57.692 +282721,340.97,54.619 +282722,342.19,55.687 +282723,343.42,56.738 +282724,344.66,57.771 +282725,339.74,54.596 +282726,340.91,55.698 +282727,342.09,56.783 +282728,343.28,57.85 +282729,338.52,54.574 +282730,339.64,55.71 +282731,340.77,56.828 +282732,341.9,57.927 +282733,337.3,54.553 +282734,338.36,55.722 +282735,339.44,56.872 +282736,340.52,58.003 +282737,336.08,54.533 +282738,337.09,55.734 +282739,338.11,56.916 +282740,339.14,58.078 +282741,334.86,54.514 +282742,335.81,55.747 +282743,336.78,56.96 +282744,337.76,58.152 +282745,333.64,54.495 +282746,334.54,55.759 +282747,335.45,57.003 +282748,336.38,58.225 +282749,332.42,54.478 +282750,333.26,55.773 +282751,334.12,57.046 +282752,334.99,58.297 +282753,331.2,54.462 +282754,331.99,55.786 +282755,332.79,57.089 +282756,333.61,58.368 +282757,329.99,54.447 +282758,330.72,55.8 +282759,331.46,57.131 +282760,332.22,58.438 +282761,328.77,54.433 +282762,329.44,55.815 +282763,330.13,57.173 +282764,330.84,58.506 +282765,327.55,54.42 +282766,328.17,55.829 +282767,328.8,57.214 +282768,329.46,58.574 +282769,326.34,54.408 +282770,326.9,55.844 +282771,327.47,57.255 +282772,328.07,58.64 +282773,325.13,54.398 +282774,325.62,55.86 +282775,326.14,57.296 +282776,326.68,58.705 +282777,323.91,54.388 +282778,324.35,55.876 +282779,324.81,57.336 +282780,325.3,58.769 +282781,322.7,54.38 +282782,323.08,55.892 +282783,323.48,57.376 +282784,323.91,58.832 +282785,321.49,54.373 +282786,321.8,55.908 +282787,322.15,57.415 +282788,322.53,58.893 +282789,320.27,54.367 +282790,320.53,55.925 +282791,320.82,57.454 +282792,321.14,58.953 +282793,319.06,54.363 +282794,319.26,55.943 +282795,319.49,57.493 +282796,319.75,59.012 +282797,317.85,54.359 +282798,317.98,55.961 +282799,318.16,57.531 +282800,318.37,59.07 +282801,316.64,54.358 +282802,316.71,55.979 +282803,316.83,57.568 +282804,316.98,59.126 +282805,315.43,54.357 +282806,315.44,55.998 +282807,315.49,57.606 +282808,315.59,59.181 +282809,314.21,54.358 +282810,314.16,56.017 +282811,314.16,57.642 +282812,314.21,59.235 +282813,313,54.36 +282814,312.89,56.036 +282815,312.83,57.679 +282816,312.82,59.287 +282817,311.79,54.363 +282818,311.62,56.056 +282819,311.5,57.715 +282820,311.43,59.338 +282821,310.58,54.368 +282822,310.35,56.077 +282823,310.17,57.75 +282824,310.05,59.388 +282825,309.37,54.374 +282826,309.07,56.098 +282827,308.84,57.785 +282828,308.66,59.436 +282829,308.16,54.381 +282830,307.8,56.119 +282831,307.51,57.819 +282832,307.27,59.483 +282833,306.95,54.39 +282834,306.53,56.141 +282835,306.18,57.853 +282836,305.89,59.528 +282837,305.73,54.401 +282838,305.25,56.163 +282839,304.84,57.887 +282840,304.5,59.573 +282841,304.52,54.412 +282842,303.98,56.186 +282843,303.51,57.92 +282844,303.12,59.615 +282845,303.31,54.426 +282846,302.7,56.209 +282847,302.18,57.952 +282848,301.73,59.657 +282849,302.1,54.44 +282850,301.43,56.233 +282851,300.85,57.985 +282852,300.35,59.697 +282853,300.88,54.456 +282854,300.16,56.257 +282855,299.52,58.016 +282856,298.97,59.736 +282857,299.67,54.474 +282858,298.88,56.281 +282859,298.19,58.047 +282860,297.58,59.773 +282861,298.45,54.493 +282862,297.61,56.307 +282863,296.86,58.078 +282864,296.2,59.809 +282865,297.24,54.513 +282866,296.33,56.332 +282867,295.53,58.108 +282868,294.82,59.843 +282869,296.02,54.535 +282870,295.06,56.358 +282871,294.2,58.138 +282872,293.44,59.876 +282873,294.81,54.558 +282874,293.78,56.384 +282875,292.87,58.167 +282876,292.06,59.908 +282877,293.59,54.583 +282878,292.5,56.411 +282879,291.54,58.196 +282880,290.68,59.938 +282881,292.37,54.609 +282882,291.23,56.439 +282883,290.21,58.224 +282884,289.3,59.967 +282885,291.15,54.637 +282886,289.95,56.467 +282887,288.88,58.252 +282888,287.92,59.994 +282889,289.93,54.666 +282890,288.67,56.495 +282891,287.55,58.279 +282892,286.54,60.02 +282893,288.71,54.696 +282894,287.4,56.524 +282895,286.22,58.306 +282896,285.16,60.045 +282897,287.49,54.728 +282898,286.12,56.553 +282899,284.89,58.332 +282900,283.78,60.068 +282901,286.27,54.762 +282902,284.84,56.583 +282903,283.56,58.358 +282904,282.41,60.09 +282905,285.04,54.797 +282906,283.56,56.613 +282907,282.24,58.383 +282908,281.03,60.11 +282909,283.82,54.833 +282910,282.29,56.644 +282911,280.91,58.408 +282912,279.66,60.129 +282913,282.59,54.871 +282914,281.01,56.675 +282915,279.58,58.432 +282916,278.29,60.147 +282917,281.36,54.91 +282918,279.73,56.706 +282919,278.25,58.456 +282920,276.92,60.163 +282921,280.13,54.951 +282922,278.45,56.738 +282923,276.93,58.48 +282924,275.54,60.178 +282925,278.9,54.993 +282926,277.17,56.771 +282927,275.6,58.503 +282928,274.17,60.192 +282929,277.67,55.036 +282930,275.89,56.804 +282931,274.27,58.525 +282932,272.81,60.204 +282933,276.44,55.081 +282934,274.6,56.837 +282935,272.95,58.547 +282936,271.44,60.215 +282937,275.2,55.127 +282938,273.32,56.871 +282939,271.62,58.569 +282940,270.07,60.224 +282941,273.97,55.175 +282942,272.04,56.905 +282943,270.3,58.59 +282944,268.71,60.233 +282945,272.73,55.224 +282946,270.76,56.94 +282947,268.97,58.611 +282948,267.34,60.24 +282949,271.49,55.274 +282950,269.47,56.975 +282951,267.65,58.631 +282952,265.98,60.245 +282953,270.25,55.326 +282954,268.19,57.01 +282955,266.32,58.651 +282956,264.62,60.25 +282957,269,55.379 +282958,266.91,57.046 +282959,265,58.67 +282960,263.25,60.253 +282961,267.76,55.433 +282962,265.62,57.083 +282963,263.68,58.689 +282964,261.9,60.255 +282965,266.51,55.488 +282966,264.34,57.119 +282967,262.35,58.708 +282968,260.54,60.256 +282969,265.27,55.545 +282970,263.05,57.157 +282971,261.03,58.726 +282972,259.18,60.255 +282973,264.02,55.603 +282974,261.76,57.194 +282975,259.71,58.743 +282976,257.82,60.253 +282977,262.76,55.662 +282978,260.47,57.232 +282979,258.39,58.761 +282980,256.47,60.25 +282981,261.51,55.723 +282982,259.19,57.271 +282983,257.07,58.777 +282984,255.12,60.246 +282985,260.25,55.784 +282986,257.9,57.309 +282987,255.75,58.794 +282988,253.77,60.241 +282989,259,55.847 +282990,256.61,57.348 +282991,254.43,58.81 +282992,252.42,60.234 +282993,257.74,55.911 +282994,255.32,57.388 +282995,253.11,58.826 +282996,251.07,60.227 +282997,256.48,55.976 +282998,254.03,57.428 +282999,251.79,58.841 +283000,249.72,60.218 +283001,255.21,56.042 +283002,252.74,57.468 +283003,250.47,58.856 +283004,248.38,60.209 +283005,253.95,56.109 +283006,251.45,57.509 +283007,249.15,58.87 +283008,247.03,60.198 +283009,252.68,56.177 +283010,250.15,57.549 +283011,247.84,58.885 +283012,245.69,60.186 +283013,251.41,56.247 +283014,248.86,57.591 +283015,246.52,58.898 +283016,244.35,60.173 +283017,250.14,56.317 +283018,247.57,57.632 +283019,245.2,58.912 +283020,243.01,60.159 +283021,248.87,56.388 +283022,246.27,57.674 +283023,243.89,58.925 +283024,241.67,60.145 +283025,247.59,56.46 +283026,244.98,57.716 +283027,242.57,58.938 +283028,240.34,60.129 +283029,246.31,56.534 +283030,243.68,57.759 +283031,241.26,58.95 +283032,239,60.112 +283033,245.03,56.608 +283034,242.39,57.801 +283035,239.94,58.963 +283036,237.67,60.095 +283037,243.75,56.682 +283038,241.09,57.844 +283039,238.63,58.975 +283040,236.34,60.076 +283041,242.47,56.758 +283042,239.79,57.888 +283043,237.32,58.986 +283044,235.01,60.057 +283045,241.18,56.835 +283046,238.49,57.931 +283047,236,58.997 +283048,233.68,60.037 +283049,239.89,56.912 +283050,237.19,57.975 +283051,234.69,59.008 +283052,232.35,60.016 +283053,238.6,56.99 +283054,235.89,58.019 +283055,233.38,59.019 +283056,231.03,59.994 +283057,237.31,57.069 +283058,234.59,58.063 +283059,232.07,59.03 +283060,229.71,59.971 +283061,236.02,57.149 +283062,233.29,58.108 +283063,230.76,59.04 +283064,228.39,59.948 +283065,234.72,57.229 +283066,231.99,58.152 +283067,229.45,59.05 +283068,227.07,59.924 +283069,233.42,57.31 +283070,230.69,58.197 +283071,228.14,59.06 +283072,225.75,59.899 +283073,232.12,57.391 +283074,229.39,58.243 +283075,226.83,59.069 +283076,224.43,59.874 +283077,230.82,57.473 +283078,228.08,58.288 +283079,225.52,59.079 +283080,223.12,59.848 +283081,229.51,57.556 +283082,226.78,58.333 +283083,224.22,59.088 +283084,221.81,59.822 +283085,228.2,57.639 +283086,225.47,58.379 +283087,222.91,59.097 +283088,220.5,59.795 +283089,226.9,57.722 +283090,224.17,58.425 +283091,221.61,59.105 +283092,219.19,59.767 +283093,225.58,57.807 +283094,222.86,58.471 +283095,220.3,59.114 +283096,217.88,59.739 +283097,224.27,57.891 +283098,221.55,58.517 +283099,218.99,59.122 +283100,216.58,59.71 +283101,222.95,57.976 +283102,220.24,58.563 +283103,217.69,59.131 +283104,215.27,59.681 +283105,221.64,58.061 +283106,218.93,58.609 +283107,216.39,59.139 +283108,213.97,59.652 +283109,220.32,58.147 +283110,217.62,58.656 +283111,215.08,59.147 +283112,212.67,59.622 +283113,218.99,58.232 +283114,216.31,58.702 +283115,213.78,59.154 +283116,211.38,59.591 +283117,217.67,58.318 +283118,215,58.749 +283119,212.48,59.162 +283120,210.08,59.561 +283121,216.34,58.405 +283122,213.69,58.796 +283123,211.18,59.17 +283124,208.79,59.53 +283125,215.02,58.491 +283126,212.38,58.842 +283127,209.88,59.177 +283128,207.49,59.499 +283129,213.69,58.578 +283130,211.07,58.889 +283131,208.58,59.185 +283132,206.2,59.467 +283133,212.35,58.665 +283134,209.75,58.936 +283135,207.28,59.192 +283136,204.91,59.436 +283137,211.02,58.752 +283138,208.44,58.983 +283139,205.98,59.199 +283140,203.63,59.404 +283141,209.68,58.839 +283142,207.12,59.03 +283143,204.68,59.207 +283144,202.34,59.372 +283145,208.35,58.926 +283146,205.81,59.076 +283147,203.38,59.214 +283148,201.06,59.34 +283149,207.01,59.013 +283150,204.49,59.123 +283151,202.09,59.221 +283152,199.78,59.308 +283153,205.67,59.1 +283154,203.17,59.17 +283155,200.79,59.228 +283156,198.5,59.276 +283157,204.32,59.186 +283158,201.86,59.217 +283159,199.49,59.235 +283160,197.22,59.243 +283161,202.98,59.273 +283162,200.54,59.264 +283163,198.2,59.242 +283164,195.94,59.211 +283165,201.63,59.36 +283166,199.22,59.311 +283167,196.9,59.25 +283168,194.67,59.179 +283169,200.28,59.446 +283170,197.9,59.357 +283171,195.61,59.257 +283172,193.4,59.147 +283173,198.93,59.533 +283174,196.58,59.404 +283175,194.32,59.264 +283176,192.13,59.115 +283177,197.58,59.619 +283178,195.26,59.451 +283179,193.02,59.271 +283180,190.86,59.083 +283181,196.23,59.705 +283182,193.94,59.497 +283183,191.73,59.278 +283184,189.59,59.051 +283185,194.87,59.79 +283186,192.62,59.543 +283187,190.44,59.286 +283188,188.32,59.02 +283189,193.51,59.875 +283190,191.29,59.59 +283191,189.15,59.293 +283192,187.06,58.988 +283193,192.16,59.96 +283194,189.97,59.636 +283195,187.85,59.301 +283196,185.8,58.957 +283197,190.8,60.045 +283198,188.65,59.682 +283199,186.56,59.308 +283200,184.54,58.926 +283201,189.43,60.129 +283202,187.32,59.728 +283203,185.27,59.316 +283204,183.28,58.896 +283205,188.07,60.212 +283206,186,59.773 +283207,183.98,59.324 +283208,182.02,58.866 +283209,186.71,60.296 +283210,184.67,59.819 +283211,182.69,59.332 +283212,180.76,58.836 +283213,185.34,60.378 +283214,183.35,59.864 +283215,181.41,59.34 +283216,179.51,58.807 +283217,183.97,60.46 +283218,182.02,59.91 +283219,180.12,59.348 +283220,178.25,58.778 +283221,182.61,60.542 +283222,180.69,59.955 +283223,178.83,59.356 +283224,177,58.749 +283225,181.24,60.623 +283226,179.37,59.999 +283227,177.54,59.365 +283228,175.75,58.721 +283229,179.87,60.703 +283230,178.04,60.044 +283231,176.25,59.374 +283232,174.5,58.694 +283233,178.49,60.783 +283234,176.71,60.088 +283235,174.97,59.382 +283236,173.26,58.667 +283237,177.12,60.862 +283238,175.38,60.133 +283239,173.68,59.392 +283240,172.01,58.641 +283241,175.75,60.941 +283242,174.05,60.177 +283243,172.4,59.401 +283244,170.77,58.615 +283245,174.37,61.018 +283246,172.73,60.22 +283247,171.11,59.41 +283248,169.52,58.59 +283249,172.99,61.095 +283250,171.4,60.264 +283251,169.83,59.42 +283252,168.28,58.566 +283253,171.62,61.171 +283254,170.06,60.307 +283255,168.54,59.43 +283256,167.04,58.542 +283257,170.24,61.247 +283258,168.73,60.35 +283259,167.26,59.44 +283260,165.8,58.519 +283261,168.86,61.321 +283262,167.4,60.393 +283263,165.97,59.45 +283264,164.56,58.497 +283265,167.48,61.395 +283266,166.07,60.435 +283267,164.69,59.461 +283268,163.33,58.475 +283269,166.1,61.468 +283270,164.74,60.477 +283271,163.41,59.472 +283272,162.09,58.455 +283273,164.71,61.54 +283274,163.41,60.519 +283275,162.12,59.483 +283276,160.86,58.435 +283277,163.33,61.611 +283278,162.08,60.56 +283279,160.84,59.495 +283280,159.62,58.416 +283281,161.95,61.681 +283282,160.74,60.601 +283283,159.56,59.506 +283284,158.39,58.398 +283285,160.56,61.75 +283286,159.41,60.642 +283287,158.28,59.518 +283288,157.16,58.38 +283289,159.18,61.818 +283290,158.08,60.683 +283291,156.99,59.531 +283292,155.93,58.364 +283293,157.79,61.886 +283294,156.74,60.723 +283295,155.71,59.543 +283296,154.7,58.349 +283297,156.4,61.952 +283298,155.41,60.763 +283299,154.43,59.556 +283300,153.47,58.334 +283301,155.02,62.017 +283302,154.07,60.802 +283303,153.15,59.57 +283304,152.24,58.321 +283305,153.63,62.081 +283306,152.74,60.841 +283307,151.87,59.583 +283308,151.02,58.309 +283309,152.24,62.144 +283310,151.41,60.88 +283311,150.59,59.597 +283312,149.79,58.297 +283313,150.85,62.206 +283314,150.07,60.918 +283315,149.31,59.611 +283316,148.56,58.287 +283317,149.46,62.267 +283318,148.74,60.956 +283319,148.03,59.626 +283320,147.34,58.278 +283321,148.07,62.326 +283322,147.4,60.994 +283323,146.75,59.641 +283324,146.12,58.27 +283325,146.68,62.385 +283326,146.06,61.031 +283327,145.47,59.656 +283328,144.89,58.263 +283329,145.29,62.442 +283330,144.73,61.068 +283331,144.19,59.672 +283332,143.67,58.257 +283333,143.9,62.499 +283334,143.39,61.104 +283335,142.91,59.688 +283336,142.45,58.252 +283337,142.51,62.554 +283338,142.06,61.14 +283339,141.63,59.705 +283340,141.22,58.248 +283341,141.12,62.608 +283342,140.72,61.176 +283343,140.35,59.721 +283344,140,58.246 +283345,139.73,62.66 +283346,139.39,61.211 +283347,139.07,59.739 +283348,138.78,58.245 +283349,138.34,62.712 +283350,138.05,61.246 +283351,137.79,59.756 +283352,137.56,58.245 +283353,136.95,62.762 +283354,136.71,61.28 +283355,136.51,59.774 +283356,136.34,58.246 +283357,135.56,62.811 +283358,135.38,61.314 +283359,135.23,59.793 +283360,135.12,58.248 +283361,134.17,62.859 +283362,134.04,61.347 +283363,133.95,59.812 +283364,133.9,58.252 +283365,132.78,62.905 +283366,132.7,61.38 +283367,132.67,59.831 +283368,132.68,58.257 +283369,131.38,62.95 +283370,131.37,61.413 +283371,131.39,59.85 +283372,131.46,58.263 +283373,129.99,62.994 +283374,130.03,61.445 +283375,130.11,59.87 +283376,130.24,58.271 +283377,128.6,63.037 +283378,128.7,61.477 +283379,128.83,59.891 +283380,129.02,58.279 +283381,127.21,63.078 +283382,127.36,61.508 +283383,127.55,59.912 +283384,127.8,58.289 +283385,125.82,63.118 +283386,126.02,61.539 +283387,126.27,59.933 +283388,126.58,58.301 +283389,124.43,63.157 +283390,124.69,61.569 +283391,124.99,59.955 +283392,125.36,58.314 +283393,123.04,63.194 +283394,123.35,61.599 +283395,123.71,59.977 +283396,124.14,58.328 +283397,121.65,63.231 +283398,122.01,61.629 +283399,122.43,59.999 +283400,122.92,58.343 +283401,120.26,63.265 +283402,120.68,61.658 +283403,121.15,60.022 +283404,121.7,58.36 +283405,118.88,63.299 +283406,119.34,61.686 +283407,119.87,60.046 +283408,120.47,58.378 +283409,117.49,63.331 +283410,118.01,61.714 +283411,118.59,60.07 +283412,119.25,58.397 +283413,116.1,63.362 +283414,116.67,61.742 +283415,117.31,60.094 +283416,118.03,58.417 +283417,114.71,63.391 +283418,115.34,61.769 +283419,116.03,60.119 +283420,116.81,58.44 +283421,113.33,63.42 +283422,114,61.796 +283423,114.75,60.144 +283424,115.58,58.463 +283425,111.94,63.446 +283426,112.66,61.822 +283427,113.47,60.169 +283428,114.36,58.488 +283429,110.55,63.472 +283430,111.33,61.848 +283431,112.19,60.195 +283432,113.14,58.514 +283433,109.17,63.496 +283434,109.99,61.873 +283435,110.9,60.222 +283436,111.91,58.541 +283437,107.78,63.519 +283438,108.66,61.898 +283439,109.62,60.249 +283440,110.68,58.57 +283441,106.4,63.541 +283442,107.33,61.923 +283443,108.34,60.276 +283444,109.46,58.6 +283445,105.02,63.561 +283446,105.99,61.947 +283447,107.06,60.304 +283448,108.23,58.631 +283449,103.64,63.58 +283450,104.66,61.97 +283451,105.77,60.332 +283452,107,58.664 +283453,102.26,63.598 +283454,103.32,61.994 +283455,104.49,60.36 +283456,105.77,58.698 +283457,100.88,63.614 +283458,101.99,62.016 +283459,103.21,60.389 +283460,104.54,58.733 +283461,99.496,63.629 +283462,100.66,62.038 +283463,101.92,60.419 +283464,103.31,58.77 +283465,98.118,63.643 +283466,99.325,62.06 +283467,100.64,60.449 +283468,102.08,58.808 +283469,96.74,63.656 +283470,97.992,62.082 +283471,99.354,60.479 +283472,100.84,58.847 +283473,95.363,63.667 +283474,96.66,62.102 +283475,98.069,60.51 +283476,99.607,58.888 +283477,93.988,63.677 +283478,95.328,62.123 +283479,96.783,60.541 +283480,98.37,58.93 +283481,92.613,63.686 +283482,93.997,62.143 +283483,95.497,60.572 +283484,97.133,58.973 +283485,91.24,63.693 +283486,92.665,62.163 +283487,94.21,60.604 +283488,95.894,59.017 +283489,89.868,63.699 +283490,91.335,62.182 +283491,92.923,60.636 +283492,94.654,59.063 +283493,88.496,63.704 +283494,90.004,62.2 +283495,91.636,60.669 +283496,93.412,59.11 +283497,87.126,63.708 +283498,88.674,62.219 +283499,90.348,60.702 +283500,92.17,59.158 +283501,85.757,63.711 +283502,87.344,62.237 +283503,89.06,60.736 +283504,90.925,59.207 +283505,84.389,63.712 +283506,86.015,62.254 +283507,87.771,60.77 +283508,89.679,59.258 +283509,83.023,63.713 +283510,84.686,62.271 +283511,86.482,60.804 +283512,88.432,59.31 +283513,81.657,63.712 +283514,83.358,62.288 +283515,85.192,60.838 +283516,87.183,59.363 +283517,80.293,63.71 +283518,82.03,62.304 +283519,83.902,60.873 +283520,85.933,59.417 +283521,78.931,63.707 +283522,80.702,62.32 +283523,82.611,60.909 +283524,84.681,59.472 +283525,77.569,63.702 +283526,79.375,62.336 +283527,81.32,60.945 +283528,83.427,59.528 +283529,76.209,63.697 +283530,78.048,62.351 +283531,80.028,60.981 +283532,82.172,59.585 +283533,74.85,63.691 +283534,76.722,62.366 +283535,78.735,61.017 +283536,80.915,59.644 +283537,73.493,63.683 +283538,75.396,62.38 +283539,77.442,61.054 +283540,79.656,59.703 +283541,72.137,63.675 +283542,74.071,62.394 +283543,76.149,61.091 +283544,78.395,59.764 +283545,70.783,63.665 +283546,72.746,62.408 +283547,74.854,61.128 +283548,77.133,59.825 +283549,69.43,63.655 +283550,71.422,62.421 +283551,73.56,61.166 +283552,75.868,59.888 +283553,68.078,63.643 +283554,70.098,62.434 +283555,72.264,61.204 +283556,74.602,59.952 +283557,66.728,63.631 +283558,68.775,62.447 +283559,70.968,61.242 +283560,73.334,60.016 +283561,65.38,63.617 +283562,67.452,62.459 +283563,69.672,61.281 +283564,72.065,60.081 +283565,64.033,63.603 +283566,66.13,62.471 +283567,68.375,61.32 +283568,70.793,60.148 +283569,62.687,63.588 +283570,64.808,62.483 +283571,67.077,61.359 +283572,69.519,60.215 +283573,61.343,63.572 +283574,63.487,62.494 +283575,65.778,61.399 +283576,68.244,60.283 +283577,60.001,63.555 +283578,62.166,62.506 +283579,64.479,61.438 +283580,66.966,60.352 +283581,58.66,63.537 +283582,60.846,62.516 +283583,63.18,61.478 +283584,65.687,60.422 +283585,57.321,63.518 +283586,59.527,62.527 +283587,61.879,61.519 +283588,64.405,60.492 +283589,55.984,63.499 +283590,58.208,62.537 +283591,60.578,61.559 +283592,63.122,60.563 +283593,54.648,63.479 +283594,56.889,62.547 +283595,59.277,61.6 +283596,61.836,60.635 +283597,53.314,63.458 +283598,55.571,62.557 +283599,57.974,61.641 +283600,60.549,60.708 +283601,51.981,63.436 +283602,54.254,62.567 +283603,56.671,61.682 +283604,59.259,60.782 +283605,50.65,63.414 +283606,52.937,62.576 +283607,55.368,61.723 +283608,57.968,60.856 +283609,49.321,63.391 +283610,51.621,62.585 +283611,54.064,61.765 +283612,56.674,60.93 +283613,47.994,63.367 +283614,50.305,62.594 +283615,52.759,61.807 +283616,55.379,61.005 +283617,46.668,63.343 +283618,48.99,62.602 +283619,51.453,61.849 +283620,54.081,61.081 +283621,45.344,63.318 +283622,47.676,62.611 +283623,50.147,61.891 +283624,52.781,61.158 +283625,44.022,63.292 +283626,46.362,62.619 +283627,48.84,61.933 +283628,51.479,61.235 +283629,42.701,63.266 +283630,45.049,62.627 +283631,47.532,61.976 +283632,50.175,61.312 +283633,41.383,63.24 +283634,43.736,62.635 +283635,46.224,62.018 +283636,48.869,61.39 +283637,40.066,63.213 +283638,42.424,62.642 +283639,44.915,62.061 +283640,47.561,61.468 +283641,38.751,63.186 +283642,41.113,62.65 +283643,43.605,62.104 +283644,46.251,61.547 +283645,37.437,63.158 +283646,39.802,62.657 +283647,42.295,62.147 +283648,44.939,61.626 +283649,36.125,63.13 +283650,38.491,62.664 +283651,40.984,62.19 +283652,43.625,61.705 +283653,34.816,63.101 +283654,37.182,62.671 +283655,39.672,62.233 +283656,42.309,61.785 +283657,33.507,63.072 +283658,35.873,62.678 +283659,38.36,62.276 +283660,40.991,61.864 +283661,32.201,63.043 +283662,34.564,62.685 +283663,37.047,62.32 +283664,39.671,61.945 +283665,30.897,63.013 +283666,33.256,62.692 +283667,35.734,62.363 +283668,38.349,62.025 +283669,29.594,62.984 +283670,31.949,62.699 +283671,34.419,62.407 +283672,37.025,62.106 +283673,28.293,62.954 +283674,30.642,62.705 +283675,33.104,62.45 +283676,35.698,62.186 +283677,26.994,62.923 +283678,29.336,62.712 +283679,31.789,62.494 +283680,34.37,62.267 +283681,25.696,62.893 +283682,28.03,62.718 +283683,30.472,62.537 +283684,33.04,62.348 +283685,24.4,62.862 +283686,26.725,62.725 +283687,29.156,62.581 +283688,31.708,62.429 +283689,23.106,62.832 +283690,25.421,62.731 +283691,27.838,62.624 +283692,30.375,62.51 +283693,21.814,62.801 +283694,24.117,62.737 +283695,26.52,62.668 +283696,29.039,62.591 +283697,20.524,62.77 +283698,22.814,62.744 +283699,25.201,62.712 +283700,27.701,62.672 +283701,19.235,62.74 +283702,21.511,62.75 +283703,23.882,62.755 +283704,26.362,62.753 +283705,17.948,62.709 +283706,20.209,62.756 +283707,22.561,62.799 +283708,25.02,62.834 +283709,16.663,62.678 +283710,18.907,62.763 +283711,21.241,62.842 +283712,23.677,62.915 +283713,15.38,62.647 +283714,17.606,62.769 +283715,19.919,62.885 +283716,22.332,62.995 +283717,14.098,62.617 +283718,16.306,62.775 +283719,18.597,62.929 +283720,20.985,63.076 +283721,12.818,62.586 +283722,15.006,62.782 +283723,17.275,62.972 +283724,19.637,63.156 +283725,11.54,62.556 +283726,13.707,62.788 +283727,15.952,63.015 +283728,18.287,63.236 +283729,10.263,62.526 +283730,12.408,62.795 +283731,14.628,63.058 +283732,16.935,63.316 +283733,8.9882,62.496 +283734,11.11,62.801 +283735,13.304,63.101 +283736,15.581,63.395 +283737,7.7149,62.467 +283738,9.812,62.808 +283739,11.979,63.144 +283740,14.226,63.474 +283741,6.4432,62.437 +283742,8.5148,62.815 +283743,10.654,63.187 +283744,12.869,63.553 +283745,5.1731,62.408 +283746,7.2181,62.821 +283747,9.3276,63.23 +283748,11.511,63.631 +283749,3.9046,62.38 +283750,5.9219,62.828 +283751,8.001,63.272 +283752,10.151,63.709 +283753,2.6378,62.351 +283754,4.6262,62.835 +283755,6.674,63.315 +283756,8.7897,63.787 +283757,1.3725,62.323 +283758,3.331,62.843 +283759,5.3464,63.357 +283760,7.4267,63.864 +283761,0.1087,62.296 +283762,2.0363,62.85 +283763,4.0182,63.399 +283764,6.0623,63.941 +283765,358.85,62.269 +283766,0.74206,62.857 +283767,2.6896,63.441 +283768,4.6965,64.017 +283769,357.59,62.242 +283770,359.45,62.865 +283771,1.3605,63.482 +283772,3.3293,64.092 +283773,356.33,62.216 +283774,358.15,62.873 +283775,0.030825,63.524 +283776,1.9607,64.167 +283777,355.07,62.19 +283778,356.86,62.881 +283779,358.7,63.565 +283780,0.59072,64.241 +283781,353.81,62.165 +283782,355.57,62.889 +283783,357.37,63.606 +283784,359.22,64.315 +283785,352.56,62.141 +283786,354.28,62.897 +283787,356.04,63.647 +283788,357.85,64.388 +283789,351.3,62.117 +283790,352.99,62.906 +283791,354.71,63.687 +283792,356.47,64.461 +283793,350.05,62.094 +283794,351.7,62.914 +283795,353.38,63.728 +283796,355.1,64.532 +283797,348.8,62.071 +283798,350.4,62.923 +283799,352.04,63.768 +283800,353.72,64.603 +283801,347.55,62.05 +283802,349.11,62.933 +283803,350.71,63.808 +283804,352.35,64.674 +283805,346.3,62.029 +283806,347.82,62.942 +283807,349.38,63.847 +283808,350.97,64.743 +283809,345.06,62.008 +283810,346.53,62.952 +283811,348.04,63.887 +283812,349.59,64.812 +283813,343.81,61.989 +283814,345.25,62.961 +283815,346.71,63.926 +283816,348.21,64.88 +283817,342.57,61.97 +283818,343.96,62.972 +283819,345.38,63.964 +283820,346.83,64.947 +283821,341.32,61.952 +283822,342.67,62.982 +283823,344.04,64.003 +283824,345.44,65.013 +283825,340.08,61.935 +283826,341.38,62.993 +283827,342.71,64.041 +283828,344.06,65.078 +283829,338.84,61.918 +283830,340.09,63.004 +283831,341.37,64.079 +283832,342.68,65.143 +283833,337.6,61.903 +283834,338.8,63.015 +283835,340.03,64.116 +283836,341.29,65.206 +283837,336.36,61.888 +283838,337.52,63.026 +283839,338.7,64.154 +283840,339.91,65.269 +283841,335.12,61.875 +283842,336.23,63.038 +283843,337.36,64.191 +283844,338.52,65.33 +283845,333.88,61.862 +283846,334.94,63.05 +283847,336.03,64.227 +283848,337.13,65.391 +283849,332.65,61.85 +283850,333.66,63.063 +283851,334.69,64.263 +283852,335.74,65.451 +283853,331.41,61.84 +283854,332.37,63.075 +283855,333.35,64.299 +283856,334.36,65.509 +283857,330.18,61.83 +283858,331.08,63.089 +283859,332.01,64.335 +283860,332.97,65.567 +283861,328.94,61.821 +283862,329.8,63.102 +283863,330.68,64.37 +283864,331.58,65.623 +283865,327.71,61.813 +283866,328.51,63.116 +283867,329.34,64.405 +283868,330.19,65.679 +283869,326.48,61.807 +283870,327.23,63.13 +283871,328,64.439 +283872,328.8,65.733 +283873,325.25,61.801 +283874,325.94,63.144 +283875,326.66,64.473 +283876,327.41,65.787 +283877,324.01,61.797 +283878,324.66,63.159 +283879,325.32,64.507 +283880,326.01,65.839 +283881,322.78,61.793 +283882,323.37,63.174 +283883,323.99,64.54 +283884,324.62,65.89 +283885,321.55,61.791 +283886,322.09,63.19 +283887,322.65,64.573 +283888,323.23,65.94 +283889,320.32,61.79 +283890,320.8,63.205 +283891,321.31,64.605 +283892,321.84,65.989 +283893,319.09,61.79 +283894,319.52,63.222 +283895,319.97,64.638 +283896,320.45,66.036 +283897,317.87,61.791 +283898,318.23,63.238 +283899,318.63,64.669 +283900,319.05,66.083 +283901,316.64,61.794 +283902,316.95,63.255 +283903,317.29,64.701 +283904,317.66,66.128 +283905,315.41,61.797 +283906,315.67,63.273 +283907,315.95,64.732 +283908,316.27,66.172 +283909,314.18,61.802 +283910,314.38,63.29 +283911,314.61,64.762 +283912,314.87,66.215 +283913,312.95,61.808 +283914,313.1,63.309 +283915,313.27,64.792 +283916,313.48,66.257 +283917,311.73,61.815 +283918,311.81,63.327 +283919,311.93,64.822 +283920,312.09,66.298 +283921,310.5,61.823 +283922,310.53,63.346 +283923,310.59,64.851 +283924,310.69,66.337 +283925,309.27,61.833 +283926,309.24,63.365 +283927,309.25,64.88 +283928,309.3,66.375 +283929,308.05,61.844 +283930,307.96,63.385 +283931,307.91,64.908 +283932,307.91,66.412 +283933,306.82,61.856 +283934,306.68,63.405 +283935,306.57,64.936 +283936,306.51,66.448 +283937,305.59,61.869 +283938,305.39,63.426 +283939,305.24,64.964 +283940,305.12,66.482 +283941,304.36,61.884 +283942,304.11,63.447 +283943,303.9,64.991 +283944,303.73,66.515 +283945,303.14,61.9 +283946,302.82,63.468 +283947,302.56,65.018 +283948,302.34,66.547 +283949,301.91,61.917 +283950,301.54,63.49 +283951,301.22,65.044 +283952,300.94,66.578 +283953,300.68,61.935 +283954,300.25,63.512 +283955,299.88,65.07 +283956,299.55,66.607 +283957,299.45,61.955 +283958,298.97,63.535 +283959,298.54,65.095 +283960,298.16,66.635 +283961,298.23,61.976 +283962,297.68,63.558 +283963,297.2,65.12 +283964,296.77,66.662 +283965,297,61.998 +283966,296.4,63.581 +283967,295.86,65.144 +283968,295.38,66.688 +283969,295.77,62.022 +283970,295.11,63.605 +283971,294.52,65.169 +283972,293.99,66.712 +283973,294.54,62.046 +283974,293.83,63.629 +283975,293.18,65.192 +283976,292.6,66.735 +283977,293.31,62.072 +283978,292.54,63.654 +283979,291.84,65.215 +283980,291.21,66.757 +283981,292.08,62.1 +283982,291.26,63.679 +283983,290.51,65.238 +283984,289.82,66.778 +283985,290.85,62.128 +283986,289.97,63.704 +283987,289.17,65.261 +283988,288.43,66.797 +283989,289.62,62.158 +283990,288.68,63.73 +283991,287.83,65.283 +283992,287.05,66.815 +283993,288.38,62.189 +283994,287.4,63.756 +283995,286.49,65.304 +283996,285.66,66.832 +283997,287.15,62.222 +283998,286.11,63.783 +283999,285.15,65.325 +284000,284.27,66.848 +284001,285.92,62.255 +284002,284.82,63.81 +284003,283.82,65.346 +284004,282.89,66.862 +284005,284.68,62.29 +284006,283.54,63.837 +284007,282.48,65.366 +284008,281.5,66.875 +284009,283.45,62.326 +284010,282.25,63.865 +284011,281.14,65.386 +284012,280.12,66.887 +284013,282.21,62.363 +284014,280.96,63.894 +284015,279.81,65.405 +284016,278.74,66.898 +284017,280.97,62.402 +284018,279.67,63.922 +284019,278.47,65.424 +284020,277.35,66.907 +284021,279.73,62.442 +284022,278.38,63.951 +284023,277.13,65.443 +284024,275.97,66.916 +284025,278.49,62.483 +284026,277.09,63.981 +284027,275.8,65.461 +284028,274.59,66.923 +284029,277.25,62.525 +284030,275.81,64.011 +284031,274.46,65.479 +284032,273.21,66.929 +284033,276.01,62.568 +284034,274.52,64.041 +284035,273.13,65.496 +284036,271.84,66.933 +284037,274.77,62.613 +284038,273.23,64.071 +284039,271.79,65.513 +284040,270.46,66.937 +284041,273.52,62.658 +284042,271.94,64.102 +284043,270.46,65.53 +284044,269.08,66.939 +284045,272.28,62.705 +284046,270.64,64.134 +284047,269.13,65.546 +284048,267.71,66.941 +284049,271.03,62.753 +284050,269.35,64.165 +284051,267.79,65.562 +284052,266.33,66.941 +284053,269.78,62.802 +284054,268.06,64.197 +284055,266.46,65.577 +284056,264.96,66.94 +284057,268.53,62.852 +284058,266.77,64.23 +284059,265.13,65.592 +284060,263.59,66.938 +284061,267.28,62.903 +284062,265.48,64.262 +284063,263.79,65.607 +284064,262.22,66.935 +284065,266.03,62.956 +284066,264.18,64.296 +284067,262.46,65.621 +284068,260.85,66.931 +284069,264.78,63.009 +284070,262.89,64.329 +284071,261.13,65.635 +284072,259.48,66.925 +284073,263.52,63.063 +284074,261.6,64.363 +284075,259.8,65.648 +284076,258.11,66.919 +284077,262.27,63.119 +284078,260.3,64.397 +284079,258.47,65.661 +284080,256.75,66.912 +284081,261.01,63.175 +284082,259.01,64.431 +284083,257.14,65.674 +284084,255.38,66.904 +284085,259.75,63.233 +284086,257.71,64.466 +284087,255.81,65.687 +284088,254.02,66.894 +284089,258.49,63.291 +284090,256.41,64.501 +284091,254.48,65.699 +284092,252.66,66.884 +284093,257.22,63.35 +284094,255.12,64.537 +284095,253.15,65.711 +284096,251.3,66.873 +284097,255.96,63.411 +284098,253.82,64.572 +284099,251.82,65.722 +284100,249.94,66.861 +284101,254.69,63.472 +284102,252.52,64.608 +284103,250.49,65.734 +284104,248.58,66.847 +284105,253.43,63.534 +284106,251.22,64.644 +284107,249.16,65.745 +284108,247.23,66.833 +284109,252.16,63.597 +284110,249.93,64.681 +284111,247.84,65.755 +284112,245.87,66.819 +284113,250.89,63.66 +284114,248.63,64.718 +284115,246.51,65.765 +284116,244.52,66.803 +284117,249.61,63.725 +284118,247.33,64.755 +284119,245.18,65.775 +284120,243.17,66.786 +284121,248.34,63.79 +284122,246.03,64.792 +284123,243.86,65.785 +284124,241.82,66.769 +284125,247.06,63.856 +284126,244.72,64.83 +284127,242.53,65.795 +284128,240.47,66.751 +284129,245.78,63.923 +284130,243.42,64.867 +284131,241.21,65.804 +284132,239.12,66.732 +284133,244.5,63.99 +284134,242.12,64.905 +284135,239.89,65.813 +284136,237.78,66.712 +284137,243.22,64.059 +284138,240.82,64.944 +284139,238.56,65.821 +284140,236.43,66.692 +284141,241.93,64.127 +284142,239.51,64.982 +284143,237.24,65.83 +284144,235.09,66.671 +284145,240.65,64.197 +284146,238.21,65.021 +284147,235.92,65.838 +284148,233.75,66.649 +284149,239.36,64.267 +284150,236.9,65.06 +284151,234.6,65.846 +284152,232.41,66.626 +284153,238.07,64.338 +284154,235.6,65.099 +284155,233.27,65.854 +284156,231.08,66.603 +284157,236.78,64.409 +284158,234.29,65.138 +284159,231.95,65.862 +284160,229.74,66.58 +284161,235.48,64.481 +284162,232.99,65.177 +284163,230.63,65.869 +284164,228.41,66.555 +284165,234.19,64.553 +284166,231.68,65.217 +284167,229.31,65.876 +284168,227.07,66.53 +284169,232.89,64.626 +284170,230.37,65.257 +284171,227.99,65.883 +284172,225.74,66.505 +284173,231.59,64.699 +284174,229.06,65.296 +284175,226.68,65.89 +284176,224.41,66.479 +284177,230.29,64.773 +284178,227.75,65.336 +284179,225.36,65.897 +284180,223.09,66.453 +284181,228.99,64.847 +284182,226.44,65.377 +284183,224.04,65.903 +284184,221.76,66.426 +284185,227.68,64.921 +284186,225.13,65.417 +284187,222.72,65.909 +284188,220.44,66.399 +284189,226.37,64.996 +284190,223.82,65.457 +284191,221.41,65.916 +284192,219.11,66.371 +284193,225.06,65.071 +284194,222.51,65.498 +284195,220.09,65.922 +284196,217.79,66.343 +284197,223.75,65.147 +284198,221.2,65.538 +284199,218.78,65.928 +284200,216.48,66.315 +284201,222.44,65.222 +284202,219.88,65.579 +284203,217.46,65.934 +284204,215.16,66.286 +284205,221.12,65.298 +284206,218.57,65.62 +284207,216.15,65.939 +284208,213.84,66.257 +284209,219.81,65.374 +284210,217.26,65.66 +284211,214.84,65.945 +284212,212.53,66.228 +284213,218.49,65.451 +284214,215.94,65.701 +284215,213.52,65.951 +284216,211.22,66.199 +284217,217.16,65.527 +284218,214.63,65.742 +284219,212.21,65.956 +284220,209.91,66.169 +284221,215.84,65.603 +284222,213.31,65.783 +284223,210.9,65.962 +284224,208.6,66.139 +284225,214.52,65.68 +284226,211.99,65.824 +284227,209.59,65.967 +284228,207.29,66.109 +284229,213.19,65.757 +284230,210.67,65.865 +284231,208.28,65.972 +284232,205.99,66.079 +284233,211.86,65.833 +284234,209.36,65.906 +284235,206.97,65.978 +284236,204.69,66.049 +284237,210.53,65.91 +284238,208.04,65.947 +284239,205.66,65.983 +284240,203.38,66.019 +284241,209.2,65.987 +284242,206.72,65.988 +284243,204.35,65.988 +284244,202.08,65.989 +284245,207.86,66.063 +284246,205.4,66.029 +284247,203.04,65.994 +284248,200.79,65.959 +284249,206.53,66.14 +284250,204.08,66.07 +284251,201.74,65.999 +284252,199.49,65.928 +284253,205.19,66.216 +284254,202.76,66.111 +284255,200.43,66.004 +284256,198.2,65.898 +284257,203.85,66.292 +284258,201.43,66.151 +284259,199.12,66.01 +284260,196.9,65.868 +284261,202.5,66.368 +284262,200.11,66.192 +284263,197.82,66.015 +284264,195.61,65.838 +284265,201.16,66.444 +284266,198.79,66.233 +284267,196.51,66.02 +284268,194.32,65.808 +284269,199.82,66.52 +284270,197.46,66.273 +284271,195.21,66.026 +284272,193.04,65.778 +284273,198.47,66.595 +284274,196.14,66.314 +284275,193.9,66.031 +284276,191.75,65.749 +284277,197.12,66.67 +284278,194.81,66.354 +284279,192.6,66.037 +284280,190.47,65.72 +284281,195.77,66.745 +284282,193.49,66.395 +284283,191.3,66.043 +284284,189.18,65.691 +284285,194.42,66.82 +284286,192.16,66.435 +284287,190,66.048 +284288,187.9,65.662 +284289,193.06,66.894 +284290,190.84,66.475 +284291,188.69,66.054 +284292,186.62,65.634 +284293,191.71,66.967 +284294,189.51,66.515 +284295,187.39,66.06 +284296,185.35,65.605 +284297,190.35,67.041 +284298,188.18,66.554 +284299,186.09,66.066 +284300,184.07,65.578 +284301,188.99,67.114 +284302,186.85,66.594 +284303,184.79,66.073 +284304,182.79,65.55 +284305,187.63,67.186 +284306,185.52,66.634 +284307,183.49,66.079 +284308,181.52,65.523 +284309,186.27,67.258 +284310,184.2,66.673 +284311,182.19,66.085 +284312,180.25,65.497 +284313,184.91,67.329 +284314,182.87,66.712 +284315,180.89,66.092 +284316,178.98,65.471 +284317,183.54,67.4 +284318,181.54,66.751 +284319,179.59,66.099 +284320,177.71,65.445 +284321,182.17,67.47 +284322,180.2,66.79 +284323,178.3,66.106 +284324,176.44,65.421 +284325,180.81,67.54 +284326,178.87,66.828 +284327,177,66.113 +284328,175.18,65.396 +284329,179.44,67.609 +284330,177.54,66.866 +284331,175.7,66.121 +284332,173.91,65.372 +284333,178.07,67.677 +284334,176.21,66.905 +284335,174.41,66.128 +284336,172.65,65.349 +284337,176.7,67.745 +284338,174.88,66.942 +284339,173.11,66.136 +284340,171.39,65.326 +284341,175.32,67.812 +284342,173.54,66.98 +284343,171.81,66.144 +284344,170.13,65.304 +284345,173.95,67.878 +284346,172.21,67.017 +284347,170.52,66.152 +284348,168.87,65.283 +284349,172.57,67.943 +284350,170.88,67.055 +284351,169.22,66.16 +284352,167.61,65.263 +284353,171.2,68.008 +284354,169.54,67.091 +284355,167.93,66.169 +284356,166.36,65.243 +284357,169.82,68.072 +284358,168.21,67.128 +284359,166.64,66.178 +284360,165.1,65.224 +284361,168.44,68.135 +284362,166.87,67.164 +284363,165.34,66.187 +284364,163.85,65.205 +284365,167.06,68.198 +284366,165.53,67.2 +284367,164.05,66.197 +284368,162.6,65.188 +284369,165.68,68.259 +284370,164.2,67.236 +284371,162.76,66.206 +284372,161.35,65.171 +284373,164.3,68.32 +284374,162.86,67.272 +284375,161.46,66.216 +284376,160.1,65.155 +284377,162.92,68.379 +284378,161.53,67.307 +284379,160.17,66.227 +284380,158.85,65.14 +284381,161.53,68.438 +284382,160.19,67.342 +284383,158.88,66.237 +284384,157.6,65.126 +284385,160.15,68.496 +284386,158.85,67.376 +284387,157.59,66.248 +284388,156.35,65.113 +284389,158.76,68.553 +284390,157.51,67.411 +284391,156.3,66.259 +284392,155.11,65.1 +284393,157.38,68.609 +284394,156.18,67.444 +284395,155.01,66.271 +284396,153.86,65.089 +284397,155.99,68.664 +284398,154.84,67.478 +284399,153.71,66.282 +284400,152.62,65.079 +284401,154.6,68.718 +284402,153.5,67.511 +284403,152.42,66.294 +284404,151.38,65.069 +284405,153.21,68.772 +284406,152.16,67.544 +284407,151.13,66.307 +284408,150.13,65.061 +284409,151.83,68.824 +284410,150.82,67.577 +284411,149.84,66.319 +284412,148.89,65.053 +284413,150.44,68.875 +284414,149.48,67.609 +284415,148.55,66.333 +284416,147.65,65.047 +284417,149.05,68.925 +284418,148.14,67.641 +284419,147.26,66.346 +284420,146.41,65.042 +284421,147.65,68.974 +284422,146.8,67.672 +284423,145.98,66.36 +284424,145.17,65.037 +284425,146.26,69.021 +284426,145.46,67.703 +284427,144.69,66.374 +284428,143.94,65.034 +284429,144.87,69.068 +284430,144.12,67.734 +284431,143.4,66.388 +284432,142.7,65.032 +284433,143.48,69.114 +284434,142.78,67.764 +284435,142.11,66.403 +284436,141.46,65.031 +284437,142.09,69.158 +284438,141.44,67.794 +284439,140.82,66.418 +284440,140.23,65.031 +284441,140.69,69.202 +284442,140.1,67.824 +284443,139.53,66.434 +284444,138.99,65.032 +284445,139.3,69.244 +284446,138.76,67.853 +284447,138.24,66.45 +284448,137.75,65.034 +284449,137.91,69.285 +284450,137.42,67.882 +284451,136.95,66.466 +284452,136.52,65.038 +284453,136.51,69.325 +284454,136.08,67.911 +284455,135.67,66.483 +284456,135.28,65.043 +284457,135.12,69.364 +284458,134.74,67.939 +284459,134.38,66.5 +284460,134.05,65.048 +284461,133.73,69.402 +284462,133.39,67.966 +284463,133.09,66.517 +284464,132.82,65.055 +284465,132.33,69.438 +284466,132.05,67.994 +284467,131.8,66.535 +284468,131.58,65.064 +284469,130.94,69.474 +284470,130.71,68.02 +284471,130.51,66.553 +284472,130.35,65.073 +284473,129.54,69.508 +284474,129.37,68.047 +284475,129.23,66.572 +284476,129.12,65.084 +284477,128.15,69.541 +284478,128.03,68.073 +284479,127.94,66.591 +284480,127.88,65.095 +284481,126.76,69.573 +284482,126.69,68.098 +284483,126.65,66.61 +284484,126.65,65.108 +284485,125.36,69.603 +284486,125.34,68.124 +284487,125.36,66.63 +284488,125.42,65.123 +284489,123.97,69.633 +284490,124,68.148 +284491,124.08,66.65 +284492,124.19,65.138 +284493,122.57,69.661 +284494,122.66,68.173 +284495,122.79,66.67 +284496,122.95,65.155 +284497,121.18,69.688 +284498,121.32,68.197 +284499,121.5,66.691 +284500,121.72,65.173 +284501,119.79,69.713 +284502,119.98,68.22 +284503,120.21,66.713 +284504,120.49,65.192 +284505,118.39,69.738 +284506,118.64,68.244 +284507,118.92,66.735 +284508,119.25,65.212 +284509,117,69.761 +284510,117.3,68.266 +284511,117.64,66.757 +284512,118.02,65.234 +284513,115.61,69.783 +284514,115.96,68.289 +284515,116.35,66.779 +284516,116.79,65.257 +284517,114.22,69.804 +284518,114.61,68.311 +284519,115.06,66.802 +284520,115.55,65.281 +284521,112.82,69.824 +284522,113.27,68.332 +284523,113.77,66.826 +284524,114.32,65.306 +284525,111.43,69.842 +284526,111.93,68.353 +284527,112.48,66.849 +284528,113.08,65.333 +284529,110.04,69.86 +284530,110.59,68.374 +284531,111.19,66.874 +284532,111.85,65.36 +284533,108.65,69.876 +284534,109.25,68.394 +284535,109.9,66.898 +284536,110.61,65.389 +284537,107.26,69.891 +284538,107.91,68.414 +284539,108.61,66.923 +284540,109.38,65.42 +284541,105.87,69.904 +284542,106.57,68.433 +284543,107.32,66.949 +284544,108.14,65.451 +284545,104.48,69.917 +284546,105.23,68.452 +284547,106.03,66.974 +284548,106.9,65.484 +284549,103.1,69.928 +284550,103.89,68.471 +284551,104.74,67 +284552,105.67,65.518 +284553,101.71,69.938 +284554,102.55,68.489 +284555,103.45,67.027 +284556,104.43,65.553 +284557,100.32,69.947 +284558,101.21,68.507 +284559,102.16,67.054 +284560,103.19,65.589 +284561,98.937,69.955 +284562,99.872,68.525 +284563,100.87,67.081 +284564,101.95,65.626 +284565,97.552,69.962 +284566,98.533,68.542 +284567,99.583,67.109 +284568,100.71,65.665 +284569,96.168,69.967 +284570,97.195,68.558 +284571,98.292,67.137 +284572,99.465,65.705 +284573,94.784,69.972 +284574,95.856,68.575 +284575,97,67.165 +284576,98.223,65.746 +284577,93.402,69.975 +284578,94.518,68.59 +284579,95.708,67.194 +284580,96.98,65.788 +284581,92.02,69.977 +284582,93.18,68.606 +284583,94.416,67.224 +284584,95.735,65.831 +284585,90.639,69.978 +284586,91.843,68.621 +284587,93.123,67.253 +284588,94.49,65.875 +284589,89.26,69.978 +284590,90.506,68.636 +284591,91.831,67.283 +284592,93.243,65.921 +284593,87.881,69.977 +284594,89.169,68.65 +284595,90.537,67.313 +284596,91.996,65.967 +284597,86.503,69.975 +284598,87.832,68.664 +284599,89.244,67.344 +284600,90.747,66.015 +284601,85.127,69.971 +284602,86.496,68.678 +284603,87.95,67.375 +284604,89.497,66.064 +284605,83.751,69.967 +284606,85.16,68.691 +284607,86.655,67.406 +284608,88.246,66.113 +284609,82.377,69.962 +284610,83.825,68.704 +284611,85.36,67.438 +284612,86.994,66.164 +284613,81.004,69.955 +284614,82.49,68.717 +284615,84.065,67.47 +284616,85.741,66.216 +284617,79.631,69.948 +284618,81.155,68.729 +284619,82.769,67.502 +284620,84.486,66.269 +284621,78.261,69.939 +284622,79.821,68.741 +284623,81.473,67.535 +284624,83.23,66.322 +284625,76.891,69.93 +284626,78.487,68.753 +284627,80.177,67.568 +284628,81.972,66.377 +284629,75.522,69.92 +284630,77.153,68.764 +284631,78.88,67.601 +284632,80.713,66.433 +284633,74.155,69.909 +284634,75.82,68.775 +284635,77.582,67.635 +284636,79.453,66.489 +284637,72.789,69.897 +284638,74.488,68.785 +284639,76.284,67.668 +284640,78.191,66.547 +284641,71.424,69.884 +284642,73.155,68.796 +284643,74.986,67.703 +284644,76.928,66.605 +284645,70.061,69.87 +284646,71.824,68.806 +284647,73.687,67.737 +284648,75.663,66.665 +284649,68.699,69.855 +284650,70.492,68.816 +284651,72.387,67.772 +284652,74.397,66.725 +284653,67.339,69.839 +284654,69.162,68.825 +284655,71.087,67.807 +284656,73.129,66.786 +284657,65.979,69.823 +284658,67.831,68.834 +284659,69.787,67.842 +284660,71.86,66.847 +284661,64.622,69.806 +284662,66.501,68.843 +284663,68.486,67.877 +284664,70.589,66.91 +284665,63.265,69.788 +284666,65.172,68.852 +284667,67.184,67.913 +284668,69.316,66.973 +284669,61.91,69.769 +284670,63.843,68.86 +284671,65.882,67.949 +284672,68.042,67.037 +284673,60.557,69.749 +284674,62.515,68.869 +284675,64.579,67.985 +284676,66.765,67.102 +284677,59.205,69.729 +284678,61.187,68.876 +284679,63.276,68.022 +284680,65.488,67.167 +284681,57.854,69.708 +284682,59.859,68.884 +284683,61.972,68.059 +284684,64.208,67.233 +284685,56.505,69.687 +284686,58.533,68.892 +284687,60.668,68.095 +284688,62.927,67.3 +284689,55.158,69.665 +284690,57.206,68.899 +284691,59.363,68.133 +284692,61.644,67.367 +284693,53.812,69.642 +284694,55.88,68.906 +284695,58.058,68.17 +284696,60.359,67.435 +284697,52.468,69.618 +284698,54.555,68.913 +284699,56.751,68.207 +284700,59.073,67.504 +284701,51.125,69.594 +284702,53.23,68.919 +284703,55.445,68.245 +284704,57.784,67.573 +284705,49.784,69.57 +284706,51.906,68.926 +284707,54.137,68.283 +284708,56.494,67.642 +284709,48.445,69.545 +284710,50.582,68.932 +284711,52.83,68.321 +284712,55.202,67.712 +284713,47.107,69.519 +284714,49.259,68.938 +284715,51.521,68.359 +284716,53.908,67.783 +284717,45.771,69.493 +284718,47.937,68.944 +284719,50.212,68.397 +284720,52.613,67.854 +284721,44.436,69.467 +284722,46.615,68.95 +284723,48.902,68.436 +284724,51.315,67.925 +284725,43.103,69.44 +284726,45.293,68.956 +284727,47.592,68.474 +284728,50.016,67.997 +284729,41.772,69.412 +284730,43.972,68.961 +284731,46.281,68.513 +284732,48.714,68.069 +284733,40.442,69.385 +284734,42.652,68.967 +284735,44.969,68.552 +284736,47.411,68.141 +284737,39.114,69.357 +284738,41.332,68.972 +284739,43.657,68.59 +284740,46.106,68.214 +284741,37.788,69.328 +284742,40.013,68.977 +284743,42.345,68.629 +284744,44.799,68.287 +284745,36.463,69.3 +284746,38.694,68.982 +284747,41.031,68.668 +284748,43.49,68.36 +284749,35.14,69.271 +284750,37.376,68.987 +284751,39.717,68.708 +284752,42.179,68.433 +284753,33.819,69.242 +284754,36.059,68.992 +284755,38.403,68.747 +284756,40.866,68.507 +284757,32.499,69.212 +284758,34.742,68.997 +284759,37.087,68.786 +284760,39.552,68.581 +284761,31.181,69.183 +284762,33.425,69.002 +284763,35.771,68.825 +284764,38.235,68.655 +284765,29.865,69.153 +284766,32.11,69.006 +284767,34.455,68.865 +284768,36.917,68.728 +284769,28.551,69.123 +284770,30.794,69.011 +284771,33.138,68.904 +284772,35.597,68.803 +284773,27.238,69.093 +284774,29.48,69.016 +284775,31.82,68.943 +284776,34.275,68.877 +284777,25.927,69.063 +284778,28.166,69.02 +284779,30.502,68.983 +284780,32.951,68.951 +284781,24.618,69.033 +284782,26.852,69.025 +284783,29.183,69.022 +284784,31.625,69.025 +284785,23.31,69.003 +284786,25.539,69.03 +284787,27.863,69.061 +284788,30.297,69.099 +284789,22.004,68.973 +284790,24.227,69.034 +284791,26.543,69.101 +284792,28.967,69.173 +284793,20.7,68.943 +284794,22.915,69.039 +284795,25.222,69.14 +284796,27.636,69.247 +284797,19.397,68.914 +284798,21.604,69.044 +284799,23.901,69.179 +284800,26.303,69.321 +284801,18.096,68.884 +284802,20.293,69.048 +284803,22.579,69.218 +284804,24.967,69.394 +284805,16.797,68.854 +284806,18.983,69.053 +284807,21.256,69.258 +284808,23.631,69.468 +284809,15.5,68.824 +284810,17.673,69.058 +284811,19.933,69.297 +284812,22.292,69.541 +284813,14.204,68.795 +284814,16.364,69.063 +284815,18.609,69.336 +284816,20.951,69.614 +284817,12.909,68.766 +284818,15.056,69.068 +284819,17.285,69.375 +284820,19.609,69.687 +284821,11.617,68.737 +284822,13.748,69.073 +284823,15.96,69.413 +284824,18.265,69.759 +284825,10.326,68.708 +284826,12.44,69.078 +284827,14.634,69.452 +284828,16.919,69.831 +284829,9.0366,68.68 +284830,11.134,69.083 +284831,13.308,69.491 +284832,15.572,69.903 +284833,7.7488,68.652 +284834,9.8273,69.088 +284835,11.981,69.529 +284836,14.223,69.975 +284837,6.4627,68.624 +284838,8.5214,69.094 +284839,10.654,69.568 +284840,12.872,70.046 +284841,5.1782,68.597 +284842,7.2161,69.099 +284843,9.3262,69.606 +284844,11.52,70.116 +284845,3.8952,68.57 +284846,5.9114,69.105 +284847,7.9978,69.644 +284848,10.166,70.187 +284849,2.6138,68.544 +284850,4.6071,69.111 +284851,6.6689,69.682 +284852,8.8103,70.256 +284853,1.3339,68.518 +284854,3.3033,69.117 +284855,5.3395,69.719 +284856,7.4532,70.326 +284857,0.055552,68.492 +284858,2,69.123 +284859,4.0096,69.757 +284860,6.0945,70.394 +284861,358.78,68.467 +284862,0.69724,69.129 +284863,2.6791,69.794 +284864,4.7342,70.463 +284865,357.5,68.442 +284866,359.39,69.136 +284867,1.3481,69.832 +284868,3.3725,70.53 +284869,356.23,68.419 +284870,358.09,69.142 +284871,0.016602,69.869 +284872,2.0093,70.597 +284873,354.96,68.395 +284874,356.79,69.149 +284875,358.68,69.906 +284876,0.64469,70.664 +284877,353.69,68.372 +284878,355.49,69.156 +284879,357.35,69.942 +284880,359.28,70.729 +284881,352.42,68.35 +284882,354.19,69.163 +284883,356.02,69.978 +284884,357.91,70.795 +284885,351.15,68.329 +284886,352.89,69.171 +284887,354.69,70.015 +284888,356.54,70.859 +284889,349.88,68.308 +284890,351.59,69.179 +284891,353.35,70.051 +284892,355.17,70.923 +284893,348.62,68.288 +284894,350.29,69.187 +284895,352.02,70.086 +284896,353.8,70.986 +284897,347.35,68.268 +284898,348.99,69.195 +284899,350.68,70.122 +284900,352.43,71.048 +284901,346.09,68.25 +284902,347.69,69.203 +284903,349.35,70.157 +284904,351.05,71.11 +284905,344.83,68.232 +284906,346.4,69.212 +284907,348.01,70.192 +284908,349.68,71.17 +284909,343.57,68.215 +284910,345.1,69.221 +284911,346.68,70.226 +284912,348.3,71.23 +284913,342.31,68.199 +284914,343.8,69.23 +284915,345.34,70.261 +284916,346.93,71.289 +284917,341.05,68.183 +284918,342.51,69.24 +284919,344,70.295 +284920,345.55,71.347 +284921,339.79,68.169 +284922,341.21,69.249 +284923,342.67,70.328 +284924,344.17,71.405 +284925,338.54,68.155 +284926,339.91,69.259 +284927,341.33,70.362 +284928,342.79,71.461 +284929,337.28,68.142 +284930,338.62,69.27 +284931,339.99,70.395 +284932,341.41,71.517 +284933,336.03,68.13 +284934,337.32,69.28 +284935,338.65,70.428 +284936,340.02,71.572 +284937,334.78,68.119 +284938,336.03,69.291 +284939,337.31,70.461 +284940,338.64,71.625 +284941,333.52,68.109 +284942,334.73,69.303 +284943,335.97,70.493 +284944,337.26,71.678 +284945,332.27,68.1 +284946,333.44,69.314 +284947,334.63,70.525 +284948,335.87,71.73 +284949,331.02,68.092 +284950,332.14,69.326 +284951,333.3,70.556 +284952,334.48,71.781 +284953,329.78,68.085 +284954,330.85,69.339 +284955,331.96,70.587 +284956,333.1,71.831 +284957,328.53,68.079 +284958,329.56,69.351 +284959,330.62,70.618 +284960,331.71,71.879 +284961,327.28,68.074 +284962,328.26,69.364 +284963,329.27,70.649 +284964,330.32,71.927 +284965,326.03,68.07 +284966,326.97,69.377 +284967,327.93,70.679 +284968,328.93,71.974 +284969,324.79,68.068 +284970,325.68,69.391 +284971,326.59,70.709 +284972,327.54,72.02 +284973,323.54,68.066 +284974,324.38,69.405 +284975,325.25,70.738 +284976,326.15,72.064 +284977,322.3,68.065 +284978,323.09,69.42 +284979,323.91,70.768 +284980,324.76,72.108 +284981,321.06,68.066 +284982,321.8,69.434 +284983,322.57,70.796 +284984,323.37,72.15 +284985,319.81,68.067 +284986,320.51,69.449 +284987,321.23,70.825 +284988,321.98,72.192 +284989,318.57,68.07 +284990,319.21,69.465 +284991,319.89,70.853 +284992,320.59,72.232 +284993,317.33,68.074 +284994,317.92,69.481 +284995,318.54,70.88 +284996,319.19,72.271 +284997,316.09,68.079 +284998,316.63,69.497 +284999,317.2,70.908 +285000,317.8,72.309 +285001,314.85,68.085 +285002,315.34,69.513 +285003,315.86,70.934 +285004,316.41,72.346 +285005,313.61,68.092 +285006,314.05,69.53 +285007,314.52,70.961 +285008,315.01,72.382 +285009,312.37,68.1 +285010,312.76,69.548 +285011,313.17,70.987 +285012,313.62,72.417 +285013,311.13,68.11 +285014,311.47,69.566 +285015,311.83,71.013 +285016,312.23,72.45 +285017,309.89,68.121 +285018,310.17,69.584 +285019,310.49,71.038 +285020,310.83,72.482 +285021,308.65,68.133 +285022,308.88,69.602 +285023,309.15,71.063 +285024,309.44,72.513 +285025,307.41,68.146 +285026,307.59,69.621 +285027,307.8,71.087 +285028,308.04,72.543 +285029,306.18,68.161 +285030,306.3,69.641 +285031,306.46,71.112 +285032,306.65,72.572 +285033,304.94,68.176 +285034,305.01,69.66 +285035,305.12,71.135 +285036,305.26,72.6 +285037,303.7,68.193 +285038,303.72,69.68 +285039,303.77,71.159 +285040,303.86,72.626 +285041,302.46,68.211 +285042,302.43,69.701 +285043,302.43,71.182 +285044,302.47,72.652 +285045,301.22,68.231 +285046,301.14,69.722 +285047,301.09,71.204 +285048,301.07,72.676 +285049,299.98,68.251 +285050,299.85,69.743 +285051,299.74,71.226 +285052,299.68,72.699 +285053,298.75,68.273 +285054,298.56,69.765 +285055,298.4,71.248 +285056,298.28,72.72 +285057,297.51,68.296 +285058,297.26,69.787 +285059,297.06,71.269 +285060,296.89,72.741 +285061,296.27,68.32 +285062,295.97,69.81 +285063,295.72,71.29 +285064,295.5,72.76 +285065,295.03,68.345 +285066,294.68,69.833 +285067,294.37,71.311 +285068,294.1,72.779 +285069,293.79,68.372 +285070,293.39,69.856 +285071,293.03,71.331 +285072,292.71,72.796 +285073,292.55,68.4 +285074,292.1,69.88 +285075,291.69,71.351 +285076,291.32,72.811 +285077,291.31,68.429 +285078,290.81,69.904 +285079,290.35,71.37 +285080,289.93,72.826 +285081,290.07,68.459 +285082,289.51,69.928 +285083,289,71.389 +285084,288.53,72.84 +285085,288.83,68.491 +285086,288.22,69.953 +285087,287.66,71.407 +285088,287.14,72.852 +285089,287.59,68.523 +285090,286.93,69.978 +285091,286.32,71.426 +285092,285.75,72.863 +285093,286.35,68.557 +285094,285.64,70.004 +285095,284.98,71.443 +285096,284.36,72.873 +285097,285.11,68.592 +285098,284.35,70.03 +285099,283.63,71.461 +285100,282.97,72.882 +285101,283.87,68.628 +285102,283.05,70.057 +285103,282.29,71.478 +285104,281.58,72.89 +285105,282.62,68.666 +285106,281.76,70.084 +285107,280.95,71.494 +285108,280.19,72.897 +285109,281.38,68.704 +285110,280.47,70.111 +285111,279.61,71.511 +285112,278.81,72.902 +285113,280.14,68.744 +285114,279.17,70.138 +285115,278.27,71.526 +285116,277.42,72.906 +285117,278.89,68.785 +285118,277.88,70.166 +285119,276.93,71.542 +285120,276.03,72.91 +285121,277.65,68.827 +285122,276.59,70.195 +285123,275.59,71.557 +285124,274.65,72.912 +285125,276.4,68.87 +285126,275.29,70.224 +285127,274.25,71.572 +285128,273.26,72.913 +285129,275.15,68.914 +285130,274,70.253 +285131,272.91,71.586 +285132,271.88,72.913 +285133,273.91,68.959 +285134,272.7,70.282 +285135,271.57,71.6 +285136,270.49,72.912 +285137,272.66,69.005 +285138,271.41,70.312 +285139,270.23,71.614 +285140,269.11,72.91 +285141,271.41,69.053 +285142,270.11,70.342 +285143,268.89,71.627 +285144,267.73,72.907 +285145,270.16,69.101 +285146,268.82,70.373 +285147,267.55,71.64 +285148,266.35,72.903 +285149,268.9,69.151 +285150,267.52,70.403 +285151,266.21,71.653 +285152,264.97,72.897 +285153,267.65,69.201 +285154,266.22,70.435 +285155,264.87,71.665 +285156,263.59,72.891 +285157,266.4,69.253 +285158,264.93,70.466 +285159,263.54,71.677 +285160,262.21,72.884 +285161,265.14,69.305 +285162,263.63,70.498 +285163,262.2,71.689 +285164,260.84,72.876 +285165,263.88,69.359 +285166,262.33,70.53 +285167,260.86,71.7 +285168,259.46,72.867 +285169,262.63,69.413 +285170,261.03,70.563 +285171,259.52,71.711 +285172,258.09,72.857 +285173,261.37,69.468 +285174,259.74,70.595 +285175,258.19,71.722 +285176,256.71,72.846 +285177,260.11,69.525 +285178,258.44,70.628 +285179,256.85,71.732 +285180,255.34,72.834 +285181,258.85,69.582 +285182,257.14,70.662 +285183,255.52,71.742 +285184,253.97,72.821 +285185,257.58,69.64 +285186,255.84,70.695 +285187,254.18,71.752 +285188,252.6,72.808 +285189,256.32,69.698 +285190,254.54,70.729 +285191,252.84,71.762 +285192,251.23,72.793 +285193,255.05,69.758 +285194,253.24,70.764 +285195,251.51,71.771 +285196,249.87,72.778 +285197,253.79,69.819 +285198,251.94,70.798 +285199,250.18,71.78 +285200,248.5,72.762 +285201,252.52,69.88 +285202,250.63,70.833 +285203,248.84,71.789 +285204,247.14,72.745 +285205,251.25,69.942 +285206,249.33,70.868 +285207,247.51,71.797 +285208,245.77,72.727 +285209,249.98,70.005 +285210,248.03,70.903 +285211,246.18,71.805 +285212,244.41,72.709 +285213,248.71,70.068 +285214,246.73,70.939 +285215,244.84,71.813 +285216,243.05,72.69 +285217,247.43,70.133 +285218,245.42,70.974 +285219,243.51,71.821 +285220,241.69,72.67 +285221,246.16,70.197 +285222,244.12,71.01 +285223,242.18,71.828 +285224,240.33,72.649 +285225,244.88,70.263 +285226,242.81,71.047 +285227,240.85,71.836 +285228,238.98,72.628 +285229,243.6,70.329 +285230,241.51,71.083 +285231,239.52,71.843 +285232,237.62,72.606 +285233,242.32,70.396 +285234,240.2,71.12 +285235,238.19,71.85 +285236,236.27,72.584 +285237,241.04,70.463 +285238,238.9,71.156 +285239,236.86,71.856 +285240,234.92,72.561 +285241,239.75,70.531 +285242,237.59,71.193 +285243,235.53,71.863 +285244,233.57,72.537 +285245,238.47,70.6 +285246,236.28,71.231 +285247,234.2,71.869 +285248,232.22,72.513 +285249,237.18,70.669 +285250,234.98,71.268 +285251,232.88,71.875 +285252,230.87,72.488 +285253,235.89,70.738 +285254,233.67,71.305 +285255,231.55,71.881 +285256,229.52,72.463 +285257,234.6,70.808 +285258,232.36,71.343 +285259,230.22,71.887 +285260,228.18,72.438 +285261,233.31,70.878 +285262,231.05,71.381 +285263,228.89,71.893 +285264,226.84,72.411 +285265,232.01,70.949 +285266,229.74,71.419 +285267,227.57,71.898 +285268,225.49,72.385 +285269,230.72,71.02 +285270,228.43,71.457 +285271,226.24,71.903 +285272,224.16,72.358 +285273,229.42,71.091 +285274,227.12,71.495 +285275,224.92,71.909 +285276,222.82,72.331 +285277,228.12,71.163 +285278,225.8,71.533 +285279,223.59,71.914 +285280,221.48,72.303 +285281,226.82,71.235 +285282,224.49,71.572 +285283,222.27,71.919 +285284,220.15,72.275 +285285,225.52,71.307 +285286,223.18,71.61 +285287,220.95,71.924 +285288,218.81,72.247 +285289,224.21,71.38 +285290,221.86,71.649 +285291,219.63,71.929 +285292,217.48,72.218 +285293,222.9,71.452 +285294,220.55,71.687 +285295,218.3,71.934 +285296,216.15,72.189 +285297,221.6,71.525 +285298,219.24,71.726 +285299,216.98,71.938 +285300,214.82,72.16 +285301,220.29,71.598 +285302,217.92,71.765 +285303,215.66,71.943 +285304,213.5,72.131 +285305,218.97,71.671 +285306,216.6,71.804 +285307,214.34,71.948 +285308,212.17,72.102 +285309,217.66,71.744 +285310,215.29,71.842 +285311,213.02,71.952 +285312,210.85,72.072 +285313,216.34,71.818 +285314,213.97,71.881 +285315,211.7,71.957 +285316,209.52,72.043 +285317,215.03,71.891 +285318,212.65,71.92 +285319,210.38,71.961 +285320,208.2,72.013 +285321,213.71,71.964 +285322,211.33,71.959 +285323,209.06,71.966 +285324,206.89,71.983 +285325,212.39,72.038 +285326,210.01,71.998 +285327,207.75,71.97 +285328,205.57,71.953 +285329,211.06,72.111 +285330,208.69,72.037 +285331,206.43,71.975 +285332,204.25,71.924 +285333,209.74,72.184 +285334,207.37,72.076 +285335,205.11,71.979 +285336,202.94,71.894 +285337,208.41,72.257 +285338,206.05,72.114 +285339,203.8,71.984 +285340,201.63,71.864 +285341,207.08,72.33 +285342,204.73,72.153 +285343,202.48,71.988 +285344,200.32,71.835 +285345,205.75,72.403 +285346,203.41,72.192 +285347,201.17,71.993 +285348,199.01,71.805 +285349,204.42,72.476 +285350,202.09,72.231 +285351,199.85,71.998 +285352,197.7,71.776 +285353,203.09,72.548 +285354,200.76,72.269 +285355,198.54,72.002 +285356,196.4,71.747 +285357,201.75,72.62 +285358,199.44,72.308 +285359,197.23,72.007 +285360,195.09,71.718 +285361,200.41,72.692 +285362,198.12,72.346 +285363,195.91,72.012 +285364,193.79,71.689 +285365,199.07,72.764 +285366,196.79,72.385 +285367,194.6,72.017 +285368,192.49,71.661 +285369,197.73,72.835 +285370,195.46,72.423 +285371,193.29,72.022 +285372,191.19,71.632 +285373,196.39,72.906 +285374,194.14,72.461 +285375,191.98,72.027 +285376,189.89,71.604 +285377,195.05,72.976 +285378,192.81,72.499 +285379,190.67,72.033 +285380,188.6,71.577 +285381,193.7,73.047 +285382,191.48,72.537 +285383,189.36,72.038 +285384,187.3,71.55 +285385,192.35,73.116 +285386,190.16,72.575 +285387,188.05,72.044 +285388,186.01,71.523 +285389,191,73.186 +285390,188.83,72.612 +285391,186.74,72.049 +285392,184.72,71.496 +285393,189.65,73.255 +285394,187.5,72.65 +285395,185.43,72.055 +285396,183.43,71.47 +285397,188.3,73.323 +285398,186.17,72.687 +285399,184.12,72.061 +285400,182.14,71.445 +285401,186.95,73.391 +285402,184.84,72.724 +285403,182.81,72.068 +285404,180.86,71.42 +285405,185.59,73.458 +285406,183.51,72.761 +285407,181.51,72.074 +285408,179.57,71.395 +285409,184.23,73.525 +285410,182.18,72.798 +285411,180.2,72.08 +285412,178.29,71.372 +285413,182.87,73.591 +285414,180.85,72.835 +285415,178.89,72.087 +285416,177.01,71.348 +285417,181.51,73.656 +285418,179.51,72.871 +285419,177.59,72.094 +285420,175.73,71.325 +285421,180.15,73.721 +285422,178.18,72.907 +285423,176.28,72.101 +285424,174.45,71.303 +285425,178.79,73.785 +285426,176.85,72.943 +285427,174.98,72.109 +285428,173.17,71.282 +285429,177.42,73.849 +285430,175.52,72.979 +285431,173.67,72.116 +285432,171.89,71.261 +285433,176.06,73.912 +285434,174.18,73.015 +285435,172.37,72.124 +285436,170.62,71.241 +285437,174.69,73.974 +285438,172.85,73.05 +285439,171.07,72.132 +285440,169.34,71.221 +285441,173.32,74.035 +285442,171.51,73.085 +285443,169.76,72.141 +285444,168.07,71.202 +285445,171.95,74.096 +285446,170.18,73.12 +285447,168.46,72.149 +285448,166.8,71.184 +285449,170.58,74.155 +285450,168.84,73.154 +285451,167.16,72.158 +285452,165.53,71.167 +285453,169.21,74.214 +285454,167.5,73.189 +285455,165.86,72.167 +285456,164.26,71.151 +285457,167.84,74.273 +285458,166.17,73.223 +285459,164.56,72.176 +285460,163,71.135 +285461,166.46,74.33 +285462,164.83,73.256 +285463,163.26,72.186 +285464,161.73,71.12 +285465,165.08,74.386 +285466,163.49,73.29 +285467,161.96,72.196 +285468,160.47,71.107 +285469,163.71,74.442 +285470,162.15,73.323 +285471,160.66,72.206 +285472,159.2,71.094 +285473,162.33,74.497 +285474,160.82,73.356 +285475,159.36,72.217 +285476,157.94,71.081 +285477,160.95,74.55 +285478,159.48,73.388 +285479,158.06,72.228 +285480,156.68,71.07 +285481,159.57,74.603 +285482,158.14,73.42 +285483,156.76,72.239 +285484,155.42,71.06 +285485,158.19,74.655 +285486,156.8,73.452 +285487,155.46,72.251 +285488,154.16,71.051 +285489,156.81,74.706 +285490,155.46,73.484 +285491,154.16,72.262 +285492,152.9,71.042 +285493,155.42,74.756 +285494,154.12,73.515 +285495,152.86,72.275 +285496,151.64,71.035 +285497,154.04,74.805 +285498,152.78,73.546 +285499,151.56,72.287 +285500,150.39,71.029 +285501,152.65,74.853 +285502,151.44,73.577 +285503,150.27,72.3 +285504,149.13,71.024 +285505,151.27,74.899 +285506,150.1,73.607 +285507,148.97,72.313 +285508,147.88,71.019 +285509,149.88,74.945 +285510,148.76,73.637 +285511,147.67,72.327 +285512,146.62,71.016 +285513,148.49,74.99 +285514,147.41,73.666 +285515,146.37,72.34 +285516,145.37,71.014 +285517,147.11,75.034 +285518,146.07,73.695 +285519,145.08,72.355 +285520,144.12,71.013 +285521,145.72,75.077 +285522,144.73,73.724 +285523,143.78,72.369 +285524,142.87,71.013 +285525,144.33,75.118 +285526,143.39,73.753 +285527,142.49,72.384 +285528,141.62,71.014 +285529,142.94,75.159 +285530,142.05,73.781 +285531,141.19,72.4 +285532,140.37,71.017 +285533,141.55,75.198 +285534,140.7,73.809 +285535,139.89,72.415 +285536,139.12,71.02 +285537,140.16,75.236 +285538,139.36,73.836 +285539,138.6,72.432 +285540,137.87,71.025 +285541,138.76,75.274 +285542,138.02,73.863 +285543,137.3,72.448 +285544,136.62,71.03 +285545,137.37,75.31 +285546,136.67,73.89 +285547,136.01,72.465 +285548,135.38,71.037 +285549,135.98,75.345 +285550,135.33,73.916 +285551,134.71,72.482 +285552,134.13,71.045 +285553,134.59,75.378 +285554,133.99,73.942 +285555,133.42,72.5 +285556,132.88,71.055 +285557,133.19,75.411 +285558,132.64,73.967 +285559,132.12,72.518 +285560,131.64,71.065 +285561,131.8,75.443 +285562,131.3,73.992 +285563,130.83,72.536 +285564,130.39,71.077 +285565,130.41,75.473 +285566,129.95,74.017 +285567,129.53,72.555 +285568,129.15,71.089 +285569,129.01,75.502 +285570,128.61,74.041 +285571,128.24,72.575 +285572,127.9,71.103 +285573,127.62,75.53 +285574,127.27,74.065 +285575,126.95,72.594 +285576,126.66,71.119 +285577,126.22,75.557 +285578,125.92,74.089 +285579,125.65,72.614 +285580,125.41,71.135 +285581,124.83,75.583 +285582,124.58,74.112 +285583,124.36,72.635 +285584,124.17,71.153 +285585,123.43,75.607 +285586,123.23,74.135 +285587,123.06,72.656 +285588,122.92,71.172 +285589,122.04,75.631 +285590,121.89,74.157 +285591,121.77,72.677 +285592,121.68,71.192 +285593,120.65,75.653 +285594,120.54,74.179 +285595,120.47,72.699 +285596,120.44,71.213 +285597,119.25,75.674 +285598,119.2,74.201 +285599,119.18,72.721 +285600,119.19,71.236 +285601,117.86,75.694 +285602,117.85,74.222 +285603,117.89,72.743 +285604,117.95,71.259 +285605,116.46,75.712 +285606,116.51,74.243 +285607,116.59,72.766 +285608,116.71,71.284 +285609,115.07,75.73 +285610,115.17,74.263 +285611,115.3,72.789 +285612,115.46,71.31 +285613,113.67,75.746 +285614,113.82,74.283 +285615,114,72.813 +285616,114.22,71.338 +285617,112.28,75.762 +285618,112.48,74.303 +285619,112.71,72.837 +285620,112.97,71.367 +285621,110.89,75.776 +285622,111.13,74.322 +285623,111.41,72.862 +285624,111.73,71.396 +285625,109.49,75.788 +285626,109.79,74.341 +285627,110.12,72.886 +285628,110.49,71.427 +285629,108.1,75.8 +285630,108.44,74.359 +285631,108.82,72.912 +285632,109.24,71.46 +285633,106.71,75.811 +285634,107.1,74.377 +285635,107.53,72.937 +285636,108,71.493 +285637,105.32,75.82 +285638,105.76,74.395 +285639,106.23,72.964 +285640,106.75,71.528 +285641,103.92,75.829 +285642,104.41,74.412 +285643,104.94,72.99 +285644,105.51,71.564 +285645,102.53,75.836 +285646,103.07,74.429 +285647,103.64,73.017 +285648,104.26,71.601 +285649,101.14,75.842 +285650,101.72,74.446 +285651,102.35,73.044 +285652,103.01,71.639 +285653,99.752,75.847 +285654,100.38,74.462 +285655,101.05,73.072 +285656,101.77,71.678 +285657,98.362,75.851 +285658,99.037,74.478 +285659,99.755,73.1 +285660,100.52,71.719 +285661,96.973,75.853 +285662,97.694,74.493 +285663,98.459,73.128 +285664,99.271,71.76 +285665,95.584,75.855 +285666,96.351,74.508 +285667,97.163,73.157 +285668,98.022,71.803 +285669,94.196,75.856 +285670,95.008,74.523 +285671,95.866,73.186 +285672,96.773,71.847 +285673,92.809,75.855 +285674,93.666,74.537 +285675,94.57,73.216 +285676,95.523,71.892 +285677,91.423,75.854 +285678,92.324,74.551 +285679,93.272,73.246 +285680,94.272,71.938 +285681,90.037,75.851 +285682,90.982,74.565 +285683,91.975,73.276 +285684,93.021,71.985 +285685,88.652,75.848 +285686,89.64,74.578 +285687,90.677,73.306 +285688,91.768,72.033 +285689,87.268,75.843 +285690,88.298,74.591 +285691,89.379,73.337 +285692,90.515,72.083 +285693,85.885,75.838 +285694,86.957,74.604 +285695,88.081,73.369 +285696,89.261,72.133 +285697,84.503,75.831 +285698,85.616,74.616 +285699,86.783,73.4 +285700,88.007,72.184 +285701,83.122,75.823 +285702,84.275,74.628 +285703,85.484,73.432 +285704,86.751,72.236 +285705,81.741,75.815 +285706,82.935,74.64 +285707,84.185,73.464 +285708,85.494,72.29 +285709,80.362,75.806 +285710,81.595,74.652 +285711,82.885,73.497 +285712,84.236,72.344 +285713,78.983,75.795 +285714,80.255,74.663 +285715,81.585,73.53 +285716,82.978,72.399 +285717,77.606,75.784 +285718,78.916,74.673 +285719,80.285,73.563 +285720,81.718,72.455 +285721,76.229,75.772 +285722,77.577,74.684 +285723,78.984,73.597 +285724,80.457,72.513 +285725,74.854,75.759 +285726,76.238,74.694 +285727,77.683,73.631 +285728,79.195,72.571 +285729,73.48,75.745 +285730,74.899,74.704 +285731,76.382,73.665 +285732,77.932,72.629 +285733,72.107,75.73 +285734,73.561,74.714 +285735,75.08,73.699 +285736,76.667,72.689 +285737,70.735,75.715 +285738,72.224,74.723 +285739,73.777,73.734 +285740,75.401,72.75 +285741,69.364,75.699 +285742,70.886,74.732 +285743,72.475,73.769 +285744,74.135,72.811 +285745,67.995,75.682 +285746,69.55,74.741 +285747,71.172,73.804 +285748,72.866,72.873 +285749,66.626,75.664 +285750,68.213,74.75 +285751,69.868,73.84 +285752,71.597,72.936 +285753,65.259,75.645 +285754,66.877,74.758 +285755,68.564,73.875 +285756,70.326,73 +285757,63.893,75.626 +285758,65.541,74.766 +285759,67.259,73.911 +285760,69.054,73.064 +285761,62.529,75.606 +285762,64.206,74.774 +285763,65.954,73.948 +285764,67.78,73.129 +285765,61.165,75.585 +285766,62.871,74.782 +285767,64.649,73.984 +285768,66.505,73.195 +285769,59.804,75.564 +285770,61.537,74.789 +285771,63.343,74.021 +285772,65.229,73.261 +285773,58.443,75.542 +285774,60.203,74.796 +285775,62.037,74.058 +285776,63.951,73.328 +285777,57.084,75.52 +285778,58.869,74.803 +285779,60.73,74.095 +285780,62.672,73.396 +285781,55.726,75.497 +285782,57.536,74.81 +285783,59.422,74.132 +285784,61.391,73.464 +285785,54.369,75.473 +285786,56.204,74.817 +285787,58.114,74.17 +285788,60.109,73.533 +285789,53.014,75.449 +285790,54.872,74.824 +285791,56.806,74.207 +285792,58.825,73.602 +285793,51.661,75.424 +285794,53.54,74.83 +285795,55.497,74.245 +285796,57.539,73.672 +285797,50.309,75.399 +285798,52.209,74.836 +285799,54.187,74.283 +285800,56.252,73.742 +285801,48.958,75.373 +285802,50.878,74.842 +285803,52.877,74.321 +285804,54.964,73.813 +285805,47.609,75.347 +285806,49.548,74.848 +285807,51.567,74.36 +285808,53.674,73.884 +285809,46.261,75.321 +285810,48.218,74.854 +285811,50.256,74.398 +285812,52.382,73.956 +285813,44.915,75.294 +285814,46.889,74.86 +285815,48.944,74.437 +285816,51.088,74.027 +285817,43.57,75.267 +285818,45.561,74.865 +285819,47.632,74.475 +285820,49.793,74.1 +285821,42.227,75.239 +285822,44.232,74.871 +285823,46.319,74.514 +285824,48.496,74.172 +285825,40.885,75.211 +285826,42.905,74.876 +285827,45.006,74.553 +285828,47.198,74.245 +285829,39.545,75.183 +285830,41.578,74.881 +285831,43.692,74.592 +285832,45.897,74.318 +285833,38.206,75.155 +285834,40.251,74.886 +285835,42.377,74.631 +285836,44.596,74.391 +285837,36.869,75.126 +285838,38.925,74.891 +285839,41.062,74.67 +285840,43.292,74.465 +285841,35.534,75.097 +285842,37.599,74.896 +285843,39.747,74.709 +285844,41.987,74.539 +285845,34.2,75.068 +285846,36.274,74.901 +285847,38.43,74.749 +285848,40.68,74.612 +285849,32.868,75.039 +285850,34.95,74.906 +285851,37.114,74.788 +285852,39.371,74.686 +285853,31.537,75.01 +285854,33.626,74.911 +285855,35.796,74.827 +285856,38.06,74.76 +285857,30.208,74.981 +285858,32.302,74.916 +285859,34.478,74.867 +285860,36.748,74.835 +285861,28.88,74.951 +285862,30.979,74.921 +285863,33.16,74.906 +285864,35.434,74.909 +285865,27.554,74.922 +285866,29.657,74.926 +285867,31.841,74.946 +285868,34.118,74.983 +285869,26.23,74.892 +285870,28.335,74.931 +285871,30.521,74.985 +285872,32.8,75.057 +285873,24.907,74.863 +285874,27.013,74.936 +285875,29.201,75.025 +285876,31.481,75.131 +285877,23.586,74.834 +285878,25.692,74.941 +285879,27.88,75.064 +285880,30.16,75.205 +285881,22.266,74.804 +285882,24.372,74.946 +285883,26.559,75.103 +285884,28.837,75.279 +285885,20.948,74.775 +285886,23.052,74.951 +285887,25.237,75.143 +285888,27.513,75.353 +285889,19.632,74.746 +285890,21.733,74.956 +285891,23.914,75.182 +285892,26.187,75.426 +285893,18.317,74.717 +285894,20.414,74.961 +285895,22.591,75.221 +285896,24.858,75.499 +285897,17.004,74.688 +285898,19.096,74.966 +285899,21.267,75.26 +285900,23.529,75.573 +285901,15.692,74.66 +285902,17.778,74.971 +285903,19.943,75.299 +285904,22.197,75.646 +285905,14.382,74.632 +285906,16.461,74.977 +285907,18.618,75.338 +285908,20.864,75.718 +285909,13.074,74.603 +285910,15.145,74.982 +285911,17.292,75.377 +285912,19.529,75.791 +285913,11.767,74.576 +285914,13.828,74.988 +285915,15.966,75.416 +285916,18.192,75.863 +285917,10.461,74.548 +285918,12.513,74.994 +285919,14.64,75.455 +285920,16.854,75.934 +285921,9.1575,74.521 +285922,11.198,74.999 +285923,13.313,75.494 +285924,15.514,76.005 +285925,7.8553,74.495 +285926,9.8831,75.005 +285927,11.985,75.532 +285928,14.172,76.076 +285929,6.5546,74.468 +285930,8.5691,75.011 +285931,10.657,75.57 +285932,12.829,76.147 +285933,5.2554,74.442 +285934,7.2555,75.018 +285935,9.3277,75.609 +285936,11.484,76.217 +285937,3.9577,74.417 +285938,5.9424,75.024 +285939,7.9984,75.647 +285940,10.137,76.286 +285941,2.6615,74.392 +285942,4.6298,75.03 +285943,6.6684,75.685 +285944,8.7891,76.355 +285945,1.3669,74.367 +285946,3.3177,75.037 +285947,5.338,75.722 +285948,7.4393,76.424 +285949,0.073685,74.344 +285950,2.006,75.044 +285951,4.007,75.76 +285952,6.0879,76.492 +285953,358.78,74.32 +285954,0.6949,75.051 +285955,2.6755,75.797 +285956,4.7349,76.559 +285957,357.49,74.297 +285958,359.38,75.059 +285959,1.3434,75.834 +285960,3.3803,76.626 +285961,356.2,74.275 +285962,358.07,75.066 +285963,0.010848,75.871 +285964,2.0243,76.692 +285965,354.92,74.254 +285966,356.76,75.074 +285967,358.68,75.908 +285968,0.66669,76.757 +285969,353.63,74.233 +285970,355.45,75.082 +285971,357.34,75.945 +285972,359.31,76.822 +285973,352.34,74.213 +285974,354.15,75.09 +285975,356.01,75.981 +285976,357.95,76.886 +285977,351.06,74.193 +285978,352.84,75.098 +285979,354.68,76.017 +285980,356.59,76.949 +285981,349.78,74.174 +285982,351.53,75.107 +285983,353.34,76.053 +285984,355.22,77.012 +285985,348.5,74.156 +285986,350.22,75.116 +285987,352.01,76.088 +285988,353.86,77.074 +285989,347.22,74.139 +285990,348.92,75.125 +285991,350.67,76.124 +285992,352.49,77.135 +285993,345.94,74.122 +285994,347.61,75.135 +285995,349.33,76.159 +285996,351.12,77.195 +285997,344.67,74.107 +285998,346.3,75.144 +285999,348,76.194 +286000,349.75,77.255 +286001,343.39,74.092 +286002,345,75.154 +286003,346.66,76.228 +286004,348.38,77.313 +286005,342.12,74.078 +286006,343.69,75.165 +286007,345.32,76.262 +286008,347.01,77.371 +286009,340.84,74.065 +286010,342.39,75.175 +286011,343.98,76.296 +286012,345.64,77.428 +286013,339.57,74.052 +286014,341.08,75.186 +286015,342.64,76.33 +286016,344.27,77.484 +286017,338.3,74.041 +286018,339.78,75.198 +286019,341.3,76.363 +286020,342.89,77.539 +286021,337.03,74.031 +286022,338.47,75.209 +286023,339.97,76.397 +286024,341.52,77.593 +286025,335.76,74.021 +286026,337.17,75.221 +286027,338.63,76.429 +286028,340.14,77.646 +286029,334.49,74.013 +286030,335.87,75.233 +286031,337.29,76.462 +286032,338.76,77.699 +286033,333.23,74.005 +286034,334.56,75.246 +286035,335.94,76.494 +286036,337.38,77.75 +286037,331.96,73.999 +286038,333.26,75.259 +286039,334.6,76.526 +286040,336,77.8 +286041,330.7,73.993 +286042,331.96,75.272 +286043,333.26,76.557 +286044,334.62,77.849 +286045,329.43,73.989 +286046,330.66,75.285 +286047,331.92,76.588 +286048,333.24,77.898 +286049,328.17,73.986 +286050,329.35,75.299 +286051,330.58,76.619 +286052,331.85,77.945 +286053,326.91,73.983 +286054,328.05,75.314 +286055,329.24,76.65 +286056,330.47,77.991 +286057,325.65,73.982 +286058,326.75,75.328 +286059,327.89,76.68 +286060,329.08,78.036 +286061,324.39,73.982 +286062,325.45,75.343 +286063,326.55,76.709 +286064,327.7,78.08 +286065,323.13,73.983 +286066,324.15,75.359 +286067,325.21,76.739 +286068,326.31,78.123 +286069,321.87,73.985 +286070,322.85,75.374 +286071,323.86,76.768 +286072,324.92,78.165 +286073,320.62,73.988 +286074,321.55,75.39 +286075,322.52,76.796 +286076,323.54,78.206 +286077,319.36,73.993 +286078,320.25,75.407 +286079,321.18,76.825 +286080,322.15,78.245 +286081,318.1,73.998 +286082,318.95,75.424 +286083,319.83,76.853 +286084,320.76,78.284 +286085,316.85,74.005 +286086,317.65,75.441 +286087,318.49,76.88 +286088,319.37,78.321 +286089,315.59,74.013 +286090,316.35,75.459 +286091,317.14,76.907 +286092,317.98,78.357 +286093,314.34,74.022 +286094,315.05,75.477 +286095,315.8,76.934 +286096,316.59,78.393 +286097,313.08,74.032 +286098,313.75,75.496 +286099,314.45,76.961 +286100,315.19,78.426 +286101,311.83,74.044 +286102,312.45,75.514 +286103,313.11,76.987 +286104,313.8,78.459 +286105,310.58,74.056 +286106,311.15,75.534 +286107,311.76,77.012 +286108,312.41,78.491 +286109,309.33,74.07 +286110,309.86,75.553 +286111,310.42,77.038 +286112,311.02,78.521 +286113,308.07,74.085 +286114,308.56,75.573 +286115,309.07,77.062 +286116,309.62,78.551 +286117,306.82,74.102 +286118,307.26,75.594 +286119,307.73,77.087 +286120,308.23,78.579 +286121,305.57,74.119 +286122,305.96,75.615 +286123,306.38,77.111 +286124,306.84,78.606 +286125,304.32,74.138 +286126,304.66,75.636 +286127,305.03,77.135 +286128,305.44,78.632 +286129,303.07,74.158 +286130,303.36,75.658 +286131,303.69,77.158 +286132,304.05,78.656 +286133,301.82,74.179 +286134,302.06,75.68 +286135,302.34,77.181 +286136,302.65,78.68 +286137,300.57,74.201 +286138,300.77,75.703 +286139,301,77.203 +286140,301.26,78.702 +286141,299.32,74.225 +286142,299.47,75.726 +286143,299.65,77.225 +286144,299.86,78.723 +286145,298.07,74.25 +286146,298.17,75.749 +286147,298.3,77.247 +286148,298.47,78.743 +286149,296.82,74.276 +286150,296.87,75.773 +286151,296.96,77.268 +286152,297.07,78.762 +286153,295.57,74.304 +286154,295.57,75.797 +286155,295.61,77.289 +286156,295.68,78.779 +286157,294.32,74.332 +286158,294.28,75.822 +286159,294.26,77.31 +286160,294.28,78.796 +286161,293.07,74.362 +286162,292.98,75.847 +286163,292.92,77.33 +286164,292.89,78.811 +286165,291.82,74.393 +286166,291.68,75.872 +286167,291.57,77.35 +286168,291.49,78.825 +286169,290.57,74.426 +286170,290.38,75.898 +286171,290.22,77.369 +286172,290.1,78.838 +286173,289.32,74.459 +286174,289.08,75.924 +286175,288.88,77.388 +286176,288.71,78.849 +286177,288.07,74.494 +286178,287.78,75.951 +286179,287.53,77.407 +286180,287.31,78.86 +286181,286.82,74.53 +286182,286.49,75.978 +286183,286.18,77.425 +286184,285.92,78.869 +286185,285.57,74.567 +286186,285.19,76.005 +286187,284.84,77.443 +286188,284.52,78.878 +286189,284.32,74.605 +286190,283.89,76.033 +286191,283.49,77.46 +286192,283.13,78.885 +286193,283.07,74.645 +286194,282.59,76.062 +286195,282.15,77.477 +286196,281.74,78.891 +286197,281.82,74.686 +286198,281.29,76.09 +286199,280.8,77.494 +286200,280.35,78.896 +286201,280.56,74.727 +286202,279.99,76.119 +286203,279.45,77.51 +286204,278.95,78.9 +286205,279.31,74.77 +286206,278.69,76.149 +286207,278.11,77.526 +286208,277.56,78.902 +286209,278.06,74.815 +286210,277.39,76.178 +286211,276.76,77.542 +286212,276.17,78.904 +286213,276.8,74.86 +286214,276.09,76.209 +286215,275.42,77.557 +286216,274.78,78.904 +286217,275.55,74.906 +286218,274.79,76.239 +286219,274.07,77.572 +286220,273.39,78.904 +286221,274.3,74.954 +286222,273.49,76.27 +286223,272.73,77.587 +286224,272,78.902 +286225,273.04,75.003 +286226,272.19,76.301 +286227,271.38,77.601 +286228,270.61,78.9 +286229,271.78,75.052 +286230,270.89,76.333 +286231,270.04,77.615 +286232,269.22,78.896 +286233,270.53,75.103 +286234,269.59,76.365 +286235,268.69,77.628 +286236,267.84,78.891 +286237,269.27,75.155 +286238,268.29,76.397 +286239,267.35,77.642 +286240,266.45,78.886 +286241,268.01,75.208 +286242,266.99,76.43 +286243,266.01,77.654 +286244,265.06,78.879 +286245,266.75,75.262 +286246,265.69,76.463 +286247,264.66,77.667 +286248,263.68,78.872 +286249,265.49,75.317 +286250,264.38,76.496 +286251,263.32,77.679 +286252,262.3,78.863 +286253,264.23,75.372 +286254,263.08,76.53 +286255,261.97,77.691 +286256,260.91,78.854 +286257,262.97,75.429 +286258,261.78,76.564 +286259,260.63,77.703 +286260,259.53,78.843 +286261,261.71,75.487 +286262,260.48,76.598 +286263,259.29,77.714 +286264,258.15,78.832 +286265,260.45,75.546 +286266,259.17,76.633 +286267,257.95,77.725 +286268,256.77,78.82 +286269,259.18,75.605 +286270,257.87,76.668 +286271,256.6,77.736 +286272,255.39,78.806 +286273,257.92,75.666 +286274,256.56,76.703 +286275,255.26,77.746 +286276,254.01,78.793 +286277,256.65,75.727 +286278,255.26,76.739 +286279,253.92,77.756 +286280,252.63,78.778 +286281,255.38,75.79 +286282,253.96,76.775 +286283,252.58,77.766 +286284,251.25,78.762 +286285,254.12,75.853 +286286,252.65,76.811 +286287,251.24,77.776 +286288,249.88,78.746 +286289,252.85,75.917 +286290,251.34,76.847 +286291,249.9,77.785 +286292,248.5,78.729 +286293,251.57,75.981 +286294,250.04,76.884 +286295,248.56,77.794 +286296,247.13,78.711 +286297,250.3,76.047 +286298,248.73,76.921 +286299,247.22,77.803 +286300,245.76,78.692 +286301,249.03,76.113 +286302,247.43,76.958 +286303,245.88,77.812 +286304,244.39,78.673 +286305,247.76,76.18 +286306,246.12,76.995 +286307,244.54,77.82 +286308,243.02,78.653 +286309,246.48,76.247 +286310,244.81,77.033 +286311,243.2,77.829 +286312,241.65,78.632 +286313,245.2,76.316 +286314,243.5,77.071 +286315,241.86,77.837 +286316,240.28,78.611 +286317,243.92,76.385 +286318,242.19,77.109 +286319,240.53,77.844 +286320,238.92,78.589 +286321,242.65,76.454 +286322,240.89,77.147 +286323,239.19,77.852 +286324,237.55,78.566 +286325,241.36,76.524 +286326,239.58,77.186 +286327,237.85,77.859 +286328,236.19,78.543 +286329,240.08,76.595 +286330,238.27,77.224 +286331,236.52,77.867 +286332,234.82,78.519 +286333,238.8,76.666 +286334,236.96,77.263 +286335,235.18,77.874 +286336,233.46,78.495 +286337,237.51,76.738 +286338,235.64,77.302 +286339,233.84,77.88 +286340,232.1,78.47 +286341,236.23,76.81 +286342,234.33,77.341 +286343,232.51,77.887 +286344,230.74,78.445 +286345,234.94,76.883 +286346,233.02,77.381 +286347,231.17,77.894 +286348,229.39,78.419 +286349,233.65,76.956 +286350,231.71,77.42 +286351,229.84,77.9 +286352,228.03,78.393 +286353,232.36,77.029 +286354,230.4,77.46 +286355,228.5,77.907 +286356,226.68,78.367 +286357,231.07,77.103 +286358,229.08,77.5 +286359,227.17,77.913 +286360,225.32,78.34 +286361,229.77,77.177 +286362,227.77,77.54 +286363,225.84,77.919 +286364,223.97,78.313 +286365,228.48,77.252 +286366,226.45,77.58 +286367,224.51,77.925 +286368,222.62,78.285 +286369,227.18,77.327 +286370,225.14,77.62 +286371,223.17,77.931 +286372,221.27,78.257 +286373,225.88,77.402 +286374,223.82,77.66 +286375,221.84,77.937 +286376,219.93,78.229 +286377,224.58,77.477 +286378,222.51,77.7 +286379,220.51,77.942 +286380,218.58,78.201 +286381,223.28,77.552 +286382,221.19,77.741 +286383,219.18,77.948 +286384,217.24,78.172 +286385,221.97,77.628 +286386,219.87,77.781 +286387,217.85,77.954 +286388,215.89,78.143 +286389,220.67,77.704 +286390,218.56,77.822 +286391,216.52,77.959 +286392,214.55,78.114 +286393,219.36,77.78 +286394,217.24,77.862 +286395,215.19,77.965 +286396,213.21,78.085 +286397,218.05,77.856 +286398,215.92,77.903 +286399,213.86,77.97 +286400,211.88,78.056 +286401,216.74,77.932 +286402,214.6,77.943 +286403,212.53,77.976 +286404,210.54,78.026 +286405,215.43,78.008 +286406,213.28,77.984 +286407,211.21,77.981 +286408,209.2,77.997 +286409,214.12,78.085 +286410,211.96,78.025 +286411,209.88,77.987 +286412,207.87,77.968 +286413,212.8,78.161 +286414,210.64,78.065 +286415,208.55,77.992 +286416,206.54,77.938 +286417,211.49,78.237 +286418,209.32,78.106 +286419,207.23,77.998 +286420,205.21,77.909 +286421,210.17,78.313 +286422,207.99,78.147 +286423,205.9,78.003 +286424,203.88,77.879 +286425,208.85,78.389 +286426,206.67,78.187 +286427,204.58,78.009 +286428,202.55,77.85 +286429,207.53,78.465 +286430,205.35,78.228 +286431,203.25,78.014 +286432,201.22,77.821 +286433,206.2,78.54 +286434,204.02,78.268 +286435,201.93,78.02 +286436,199.9,77.792 +286437,204.88,78.616 +286438,202.7,78.309 +286439,200.6,78.026 +286440,198.58,77.763 +286441,203.55,78.691 +286442,201.37,78.349 +286443,199.28,78.031 +286444,197.26,77.735 +286445,202.22,78.766 +286446,200.05,78.39 +286447,197.96,78.037 +286448,195.94,77.706 +286449,200.89,78.84 +286450,198.72,78.43 +286451,196.64,78.043 +286452,194.62,77.678 +286453,199.56,78.915 +286454,197.4,78.47 +286455,195.31,78.049 +286456,193.3,77.65 +286457,198.23,78.989 +286458,196.07,78.51 +286459,193.99,78.056 +286460,191.99,77.622 +286461,196.89,79.062 +286462,194.74,78.55 +286463,192.67,78.062 +286464,190.67,77.595 +286465,195.56,79.136 +286466,193.41,78.59 +286467,191.35,78.068 +286468,189.36,77.568 +286469,194.22,79.209 +286470,192.08,78.63 +286471,190.03,78.075 +286472,188.05,77.542 +286473,192.88,79.281 +286474,190.75,78.669 +286475,188.71,78.082 +286476,186.74,77.515 +286477,191.54,79.353 +286478,189.42,78.709 +286479,187.39,78.088 +286480,185.43,77.49 +286481,190.19,79.424 +286482,188.09,78.748 +286483,186.08,78.095 +286484,184.13,77.464 +286485,188.85,79.495 +286486,186.76,78.787 +286487,184.76,78.103 +286488,182.82,77.44 +286489,187.5,79.566 +286490,185.43,78.826 +286491,183.44,78.11 +286492,181.52,77.415 +286493,186.15,79.635 +286494,184.1,78.865 +286495,182.12,78.118 +286496,180.22,77.392 +286497,184.8,79.705 +286498,182.77,78.903 +286499,180.81,78.125 +286500,178.91,77.368 +286501,183.45,79.773 +286502,181.43,78.942 +286503,179.49,78.133 +286504,177.62,77.346 +286505,182.1,79.841 +286506,180.1,78.98 +286507,178.18,78.141 +286508,176.32,77.324 +286509,180.74,79.908 +286510,178.77,79.018 +286511,176.86,78.15 +286512,175.02,77.303 +286513,179.39,79.975 +286514,177.43,79.055 +286515,175.55,78.158 +286516,173.73,77.282 +286517,178.03,80.0409 +286518,176.1,79.093 +286519,174.23,78.167 +286520,172.43,77.262 +286521,176.67,80.106 +286522,174.76,79.13 +286523,172.92,78.176 +286524,171.14,77.243 +286525,175.31,80.1704 +286526,173.42,79.167 +286527,171.61,78.186 +286528,169.85,77.224 +286529,173.95,80.234 +286530,172.09,79.204 +286531,170.29,78.195 +286532,168.56,77.206 +286533,172.59,80.2968 +286534,170.75,79.241 +286535,168.98,78.205 +286536,167.27,77.189 +286537,171.22,80.3587 +286538,169.41,79.277 +286539,167.67,78.216 +286540,165.99,77.173 +286541,169.86,80.4198 +286542,168.07,79.313 +286543,166.36,78.226 +286544,164.7,77.158 +286545,168.49,80.4801 +286546,166.73,79.348 +286547,165.05,78.237 +286548,163.41,77.143 +286549,167.12,80.5394 +286550,165.4,79.384 +286551,163.73,78.248 +286552,162.13,77.13 +286553,165.75,80.5979 +286554,164.06,79.419 +286555,162.42,78.259 +286556,160.85,77.117 +286557,164.38,80.6555 +286558,162.72,79.454 +286559,161.11,78.271 +286560,159.57,77.105 +286561,163.01,80.7121 +286562,161.38,79.488 +286563,159.8,78.283 +286564,158.29,77.094 +286565,161.64,80.7677 +286566,160.04,79.522 +286567,158.5,78.295 +286568,157.01,77.084 +286569,160.26,80.8224 +286570,158.69,79.556 +286571,157.19,78.308 +286572,155.73,77.075 +286573,158.89,80.8761 +286574,157.35,79.59 +286575,155.88,78.321 +286576,154.46,77.067 +286577,157.51,80.9287 +286578,156.01,79.623 +286579,154.57,78.334 +286580,153.18,77.06 +286581,156.13,80.9804 +286582,154.67,79.656 +286583,153.26,78.348 +286584,151.91,77.054 +286585,154.75,81.031 +286586,153.33,79.689 +286587,151.95,78.362 +286588,150.63,77.049 +286589,153.37,81.0806 +286590,151.98,79.721 +286591,150.65,78.376 +286592,149.36,77.045 +286593,151.99,81.1291 +286594,150.64,79.753 +286595,149.34,78.391 +286596,148.09,77.042 +286597,150.61,81.1765 +286598,149.29,79.784 +286599,148.03,78.406 +286600,146.82,77.041 +286601,149.23,81.2229 +286602,147.95,79.815 +286603,146.73,78.421 +286604,145.55,77.04 +286605,147.84,81.2681 +286606,146.61,79.846 +286607,145.42,78.437 +286608,144.28,77.04 +286609,146.46,81.3122 +286610,145.26,79.876 +286611,144.11,78.453 +286612,143.01,77.042 +286613,145.07,81.3552 +286614,143.92,79.906 +286615,142.81,78.47 +286616,141.75,77.045 +286617,143.69,81.3971 +286618,142.57,79.936 +286619,141.5,78.487 +286620,140.48,77.048 +286621,142.3,81.4378 +286622,141.23,79.965 +286623,140.2,78.504 +286624,139.22,77.053 +286625,140.91,81.4774 +286626,139.88,79.994 +286627,138.89,78.522 +286628,137.95,77.06 +286629,139.52,81.5158 +286630,138.53,80.0229 +286631,137.59,78.54 +286632,136.69,77.067 +286633,138.14,81.5531 +286634,137.19,80.051 +286635,136.28,78.558 +286636,135.42,77.076 +286637,136.75,81.5891 +286638,135.84,80.0788 +286639,134.98,78.577 +286640,134.16,77.085 +286641,135.35,81.624 +286642,134.49,80.1061 +286643,133.68,78.597 +286644,132.9,77.096 +286645,133.96,81.6577 +286646,133.15,80.1331 +286647,132.37,78.617 +286648,131.64,77.108 +286649,132.57,81.6903 +286650,131.8,80.1597 +286651,131.07,78.637 +286652,130.38,77.122 +286653,131.18,81.7216 +286654,130.45,80.1859 +286655,129.76,78.657 +286656,129.12,77.136 +286657,129.79,81.7517 +286658,129.1,80.2116 +286659,128.46,78.678 +286660,127.86,77.152 +286661,128.39,81.7806 +286662,127.76,80.237 +286663,127.16,78.7 +286664,126.6,77.169 +286665,127,81.8083 +286666,126.41,80.262 +286667,125.85,78.722 +286668,125.34,77.188 +286669,125.61,81.8348 +286670,125.06,80.2866 +286671,124.55,78.744 +286672,124.08,77.207 +286673,124.21,81.8601 +286674,123.71,80.3107 +286675,123.25,78.767 +286676,122.82,77.228 +286677,122.82,81.8841 +286678,122.36,80.3345 +286679,121.94,78.79 +286680,121.56,77.25 +286681,121.42,81.907 +286682,121.01,80.3578 +286683,120.64,78.813 +286684,120.3,77.274 +286685,120.03,81.9286 +286686,119.66,80.3808 +286687,119.34,78.837 +286688,119.05,77.298 +286689,118.63,81.9491 +286690,118.32,80.4033 +286691,118.04,78.861 +286692,117.79,77.324 +286693,117.24,81.9683 +286694,116.97,80.4255 +286695,116.73,78.886 +286696,116.53,77.351 +286697,115.84,81.9863 +286698,115.62,80.4472 +286699,115.43,78.911 +286700,115.27,77.38 +286701,114.45,82.0031 +286702,114.27,80.4686 +286703,114.13,78.937 +286704,114.02,77.41 +286705,113.05,82.0187 +286706,112.92,80.4895 +286707,112.82,78.963 +286708,112.76,77.441 +286709,111.65,82.0331 +286710,111.57,80.5101 +286711,111.52,78.99 +286712,111.5,77.473 +286713,110.26,82.0463 +286714,110.22,80.5302 +286715,110.22,79.016 +286716,110.25,77.506 +286717,108.86,82.0584 +286718,108.87,80.5499 +286719,108.91,79.044 +286720,108.99,77.541 +286721,107.47,82.0692 +286722,107.52,80.5693 +286723,107.61,79.071 +286724,107.73,77.577 +286725,106.07,82.0789 +286726,106.17,80.5882 +286727,106.31,79.099 +286728,106.47,77.614 +286729,104.68,82.0874 +286730,104.83,80.6068 +286731,105.01,79.128 +286732,105.22,77.652 +286733,103.28,82.0947 +286734,103.48,80.625 +286735,103.7,79.157 +286736,103.96,77.692 +286737,101.89,82.1009 +286738,102.13,80.6428 +286739,102.4,79.186 +286740,102.7,77.733 +286741,100.49,82.106 +286742,100.78,80.6602 +286743,101.1,79.216 +286744,101.44,77.775 +286745,99.098,82.1099 +286746,99.429,80.6772 +286747,99.792,79.246 +286748,100.19,77.818 +286749,97.704,82.1127 +286750,98.081,80.6939 +286751,98.488,79.277 +286752,98.928,77.862 +286753,96.311,82.1144 +286754,96.732,80.7101 +286755,97.184,79.307 +286756,97.669,77.908 +286757,94.917,82.1149 +286758,95.383,80.726 +286759,95.88,79.339 +286760,96.409,77.955 +286761,93.525,82.1144 +286762,94.035,80.7416 +286763,94.576,79.37 +286764,95.15,78.002 +286765,92.133,82.1128 +286766,92.686,80.7568 +286767,93.272,79.402 +286768,93.889,78.051 +286769,90.741,82.1101 +286770,91.338,80.7716 +286771,91.967,79.435 +286772,92.629,78.102 +286773,89.35,82.1064 +286774,89.99,80.7861 +286775,90.663,79.468 +286776,91.367,78.153 +286777,87.959,82.1017 +286778,88.642,80.8002 +286779,89.358,79.501 +286780,90.106,78.205 +286781,86.569,82.0959 +286782,87.295,80.814 +286783,88.052,79.534 +286784,88.843,78.259 +286785,85.18,82.0891 +286786,85.947,80.8274 +286787,86.747,79.568 +286788,87.58,78.313 +286789,83.791,82.0813 +286790,84.6,80.8405 +286791,85.441,79.602 +286792,86.317,78.369 +286793,82.403,82.0725 +286794,83.252,80.8533 +286795,84.135,79.637 +286796,85.052,78.425 +286797,81.016,82.0628 +286798,81.906,80.8657 +286799,82.829,79.672 +286800,83.787,78.483 +286801,79.629,82.0521 +286802,80.559,80.8779 +286803,81.523,79.707 +286804,82.522,78.542 +286805,78.244,82.0405 +286806,79.212,80.8897 +286807,80.216,79.743 +286808,81.255,78.601 +286809,76.859,82.028 +286810,77.866,80.9012 +286811,78.909,79.778 +286812,79.988,78.662 +286813,75.475,82.0146 +286814,76.52,80.9125 +286815,77.601,79.815 +286816,78.72,78.723 +286817,74.091,82.0004 +286818,75.174,80.9234 +286819,76.294,79.851 +286820,77.45,78.786 +286821,72.709,81.9852 +286822,73.829,80.9341 +286823,74.986,79.888 +286824,76.18,78.849 +286825,71.327,81.9693 +286826,72.484,80.9444 +286827,73.677,79.925 +286828,74.91,78.913 +286829,69.947,81.9525 +286830,71.139,80.9545 +286831,72.369,79.962 +286832,73.638,78.978 +286833,68.567,81.9349 +286834,69.794,80.9644 +286835,71.06,80.0001 +286836,72.365,79.044 +286837,67.189,81.9166 +286838,68.45,80.9739 +286839,69.75,80.038 +286840,71.091,79.111 +286841,65.811,81.8975 +286842,67.106,80.9833 +286843,68.44,80.0762 +286844,69.816,79.178 +286845,64.435,81.8776 +286846,65.762,80.9923 +286847,67.13,80.1146 +286848,68.54,79.247 +286849,63.059,81.8571 +286850,64.419,81.0012 +286851,65.82,80.1533 +286852,67.263,79.316 +286853,61.685,81.8359 +286854,63.076,81.0098 +286855,64.509,80.1922 +286856,65.985,79.385 +286857,60.312,81.814 +286858,61.733,81.0182 +286859,63.197,80.2314 +286860,64.705,79.456 +286861,58.94,81.7915 +286862,60.391,81.0264 +286863,61.886,80.2708 +286864,63.425,79.527 +286865,57.569,81.7683 +286866,59.049,81.0344 +286867,60.573,80.3104 +286868,62.143,79.599 +286869,56.199,81.7446 +286870,57.708,81.0422 +286871,59.261,80.3502 +286872,60.86,79.671 +286873,54.83,81.7203 +286874,56.366,81.0497 +286875,57.948,80.3902 +286876,59.576,79.744 +286877,53.463,81.6955 +286878,55.026,81.0572 +286879,56.634,80.4304 +286880,58.291,79.817 +286881,52.097,81.6701 +286882,53.685,81.0644 +286883,55.32,80.4708 +286884,57.004,79.892 +286885,50.732,81.6442 +286886,52.345,81.0715 +286887,54.006,80.5114 +286888,55.716,79.966 +286889,49.368,81.6179 +286890,51.006,81.0784 +286891,52.691,80.5521 +286892,54.427,80.0412 +286893,48.006,81.5911 +286894,49.666,81.0852 +286895,51.376,80.5929 +286896,53.136,80.1167 +286897,46.645,81.564 +286898,48.328,81.0919 +286899,50.06,80.634 +286900,51.844,80.1926 +286901,45.285,81.5364 +286902,46.989,81.0984 +286903,48.743,80.6751 +286904,50.551,80.269 +286905,43.927,81.5084 +286906,45.651,81.1048 +286907,47.427,80.7164 +286908,49.256,80.3457 +286909,42.57,81.4802 +286910,44.314,81.1111 +286911,46.109,80.7578 +286912,47.959,80.4228 +286913,41.214,81.4516 +286914,42.977,81.1173 +286915,44.791,80.7993 +286916,46.662,80.5002 +286917,39.859,81.4227 +286918,41.64,81.1234 +286919,43.473,80.8409 +286920,45.363,80.5778 +286921,38.506,81.3936 +286922,40.304,81.1294 +286923,42.154,80.8826 +286924,44.062,80.6557 +286925,37.155,81.3642 +286926,38.968,81.1353 +286927,40.835,80.9244 +286928,42.76,80.7339 +286929,35.805,81.3346 +286930,37.633,81.1412 +286931,39.515,80.9662 +286932,41.456,80.8122 +286933,34.456,81.3049 +286934,36.298,81.1471 +286935,38.195,81.0081 +286936,40.151,80.8907 +286937,33.108,81.275 +286938,34.963,81.1528 +286939,36.874,81.0501 +286940,38.845,80.9694 +286941,31.762,81.245 +286942,33.629,81.1586 +286943,35.553,81.0921 +286944,37.537,81.0482 +286945,30.418,81.2149 +286946,32.296,81.1643 +286947,34.231,81.1341 +286948,36.227,81.127 +286949,29.075,81.1847 +286950,30.963,81.17 +286951,32.908,81.1762 +286952,34.916,81.2059 +286953,27.733,81.1545 +286954,29.63,81.1757 +286955,31.585,81.2182 +286956,33.603,81.2848 +286957,26.393,81.1243 +286958,28.298,81.1814 +286959,30.262,81.2603 +286960,32.289,81.3637 +286961,25.054,81.0941 +286962,26.967,81.1871 +286963,28.938,81.3024 +286964,30.973,81.4425 +286965,23.717,81.0639 +286966,25.635,81.1929 +286967,27.613,81.3444 +286968,29.656,81.5213 +286969,22.381,81.0339 +286970,24.305,81.1987 +286971,26.288,81.3864 +286972,28.337,81.6 +286973,21.046,81.0039 +286974,22.975,81.2045 +286975,24.962,81.4284 +286976,27.016,81.6786 +286977,19.713,80.974 +286978,21.645,81.2103 +286979,23.636,81.4703 +286980,25.694,81.757 +286981,18.382,80.9444 +286982,20.315,81.2162 +286983,22.309,81.5122 +286984,24.37,81.8352 +286985,17.052,80.9149 +286986,18.987,81.2222 +286987,20.982,81.554 +286988,23.045,81.9131 +286989,15.723,80.8856 +286990,17.658,81.2283 +286991,19.654,81.5957 +286992,21.718,81.9909 +286993,14.396,80.8566 +286994,16.33,81.2344 +286995,18.325,81.6374 +286996,20.389,82.0683 +286997,13.071,80.8278 +286998,15.003,81.2407 +286999,16.997,81.6789 +287000,19.059,82.1455 +287001,11.746,80.7993 +287002,13.676,81.2471 +287003,15.667,81.7204 +287004,17.727,82.2223 +287005,10.424,80.7712 +287006,12.35,81.2535 +287007,14.337,81.7617 +287008,16.394,82.2987 +287009,9.1025,80.7434 +287010,11.024,81.2601 +287011,13.006,81.8029 +287012,15.059,82.3748 +287013,7.7826,80.716 +287014,9.6981,81.2669 +287015,11.675,81.844 +287016,13.723,82.4504 +287017,6.4643,80.689 +287018,8.3731,81.2737 +287019,10.344,81.8849 +287020,12.385,82.5256 +287021,5.1473,80.6624 +287022,7.0485,81.2808 +287023,9.0113,81.9257 +287024,11.045,82.6003 +287025,3.8318,80.6363 +287026,5.7243,81.288 +287027,7.6786,81.9663 +287028,9.7038,82.6745 +287029,2.5177,80.6107 +287030,4.4006,81.2953 +287031,6.3453,82.0068 +287032,8.3611,82.7482 +287033,1.205,80.5856 +287034,3.0774,81.3028 +287035,5.0115,82.047 +287036,7.0168,82.8213 +287037,359.89,80.5611 +287038,1.7546,81.3106 +287039,3.6771,82.0871 +287040,5.6709,82.8939 +287041,358.58,80.5371 +287042,0.43231,81.3185 +287043,2.3423,82.127 +287044,4.3235,82.9658 +287045,357.28,80.5137 +287046,359.11,81.3266 +287047,1.0069,82.1667 +287048,2.9746,83.0371 +287049,355.97,80.4909 +287050,357.79,81.335 +287051,359.67,82.2062 +287052,1.6242,83.1077 +287053,354.66,80.4688 +287054,356.47,81.3435 +287055,358.33,82.2454 +287056,0.27225,83.1776 +287057,353.36,80.4473 +287058,355.15,81.3523 +287059,357,82.2845 +287060,358.92,83.2468 +287061,352.05,80.4265 +287062,353.83,81.3613 +287063,355.66,82.3232 +287064,357.56,83.3153 +287065,350.75,80.4065 +287066,352.51,81.3706 +287067,354.32,82.3618 +287068,356.21,83.3831 +287069,349.45,80.3872 +287070,351.19,81.3801 +287071,352.98,82.4001 +287072,354.85,83.45 +287073,348.15,80.3686 +287074,349.87,81.3899 +287075,351.65,82.4381 +287076,353.49,83.5161 +287077,346.86,80.3508 +287078,348.55,81.4 +287079,350.31,82.4758 +287080,352.13,83.5814 +287081,345.56,80.3339 +287082,347.23,81.4103 +287083,348.97,82.5133 +287084,350.77,83.6459 +287085,344.26,80.3178 +287086,345.92,81.4209 +287087,347.63,82.5505 +287088,349.4,83.7094 +287089,342.97,80.3025 +287090,344.6,81.4318 +287091,346.28,82.5874 +287092,348.04,83.7721 +287093,341.68,80.2881 +287094,343.28,81.443 +287095,344.94,82.624 +287096,346.67,83.8339 +287097,340.38,80.2746 +287098,341.96,81.4545 +287099,343.6,82.6603 +287100,345.31,83.8947 +287101,339.09,80.262 +287102,340.65,81.4664 +287103,342.26,82.6963 +287104,343.94,83.9546 +287105,337.8,80.2504 +287106,339.33,81.4785 +287107,340.92,82.732 +287108,342.57,84.0135 +287109,336.52,80.2397 +287110,338.02,81.491 +287111,339.57,82.7673 +287112,341.2,84.0714 +287113,335.23,80.23 +287114,336.7,81.5038 +287115,338.23,82.8024 +287116,339.82,84.1283 +287117,333.94,80.2212 +287118,335.39,81.5169 +287119,336.89,82.837 +287120,338.45,84.1841 +287121,332.66,80.2135 +287122,334.07,81.5304 +287123,335.54,82.8714 +287124,337.08,84.239 +287125,331.37,80.2069 +287126,332.76,81.5442 +287127,334.2,82.9054 +287128,335.7,84.2927 +287129,330.09,80.2012 +287130,331.44,81.5584 +287131,332.85,82.939 +287132,334.32,84.3454 +287133,328.81,80.1967 +287134,330.13,81.5729 +287135,331.51,82.9723 +287136,332.94,84.397 +287137,327.53,80.1932 +287138,328.82,81.5878 +287139,330.16,83.0052 +287140,331.57,84.4474 +287141,326.25,80.1908 +287142,327.51,81.6031 +287143,328.82,83.0377 +287144,330.19,84.4968 +287145,324.97,80.1896 +287146,326.19,81.6187 +287147,327.47,83.0699 +287148,328.8,84.545 +287149,323.69,80.1894 +287150,324.88,81.6347 +287151,326.12,83.1017 +287152,327.42,84.5921 +287153,322.41,80.1904 +287154,323.57,81.6511 +287155,324.77,83.1331 +287156,326.04,84.638 +287157,321.13,80.1926 +287158,322.26,81.6679 +287159,323.43,83.1641 +287160,324.65,84.6827 +287161,319.86,80.1959 +287162,320.94,81.6851 +287163,322.08,83.1947 +287164,323.27,84.7263 +287165,318.58,80.2004 +287166,319.63,81.7027 +287167,320.73,83.2249 +287168,321.88,84.7686 +287169,317.31,80.2061 +287170,318.32,81.7207 +287171,319.38,83.2548 +287172,320.5,84.8098 +287173,316.04,80.213 +287174,317.01,81.7391 +287175,318.03,83.2842 +287176,319.11,84.8498 +287177,314.76,80.2211 +287178,315.7,81.7579 +287179,316.68,83.3132 +287180,317.72,84.8885 +287181,313.49,80.2305 +287182,314.39,81.7771 +287183,315.34,83.3418 +287184,316.33,84.926 +287185,312.22,80.241 +287186,313.08,81.7967 +287187,313.99,83.37 +287188,314.94,84.9622 +287189,310.95,80.2528 +287190,311.77,81.8167 +287191,312.64,83.3978 +287192,313.55,84.9973 +287193,309.68,80.2659 +287194,310.46,81.8371 +287195,311.29,83.4252 +287196,312.16,85.031 +287197,308.41,80.2802 +287198,309.15,81.858 +287199,309.94,83.4522 +287200,310.77,85.0636 +287201,307.14,80.2958 +287202,307.84,81.8793 +287203,308.58,83.4787 +287204,309.38,85.0948 +287205,305.87,80.3126 +287206,306.53,81.901 +287207,307.23,83.5049 +287208,307.98,85.1248 +287209,304.6,80.3307 +287210,305.22,81.9231 +287211,305.88,83.5306 +287212,306.59,85.1536 +287213,303.33,80.3501 +287214,303.91,81.9457 +287215,304.53,83.5558 +287216,305.2,85.1811 +287217,302.07,80.3708 +287218,302.6,81.9686 +287219,303.18,83.5807 +287220,303.8,85.2073 +287221,300.8,80.3927 +287222,301.29,81.992 +287223,301.83,83.6051 +287224,302.41,85.2322 +287225,299.53,80.416 +287226,299.99,82.0159 +287227,300.48,83.6291 +287228,301.01,85.2559 +287229,298.27,80.4405 +287230,298.68,82.0401 +287231,299.13,83.6527 +287232,299.62,85.2783 +287233,297,80.4663 +287234,297.37,82.0648 +287235,297.77,83.6759 +287236,298.22,85.2994 +287237,295.73,80.4934 +287238,296.06,82.0899 +287239,296.42,83.6986 +287240,296.82,85.3193 +287241,294.47,80.5218 +287242,294.75,82.1155 +287243,295.07,83.7209 +287244,295.43,85.3379 +287245,293.2,80.5515 +287246,293.44,82.1415 +287247,293.72,83.7428 +287248,294.03,85.3552 +287249,291.94,80.5825 +287250,292.13,82.1679 +287251,292.37,83.7642 +287252,292.63,85.3713 +287253,290.67,80.6148 +287254,290.82,82.1947 +287255,291.01,83.7853 +287256,291.24,85.3861 +287257,289.4,80.6483 +287258,289.52,82.2219 +287259,289.66,83.8059 +287260,289.84,85.3997 +287261,288.14,80.6831 +287262,288.21,82.2496 +287263,288.31,83.8261 +287264,288.44,85.412 +287265,286.87,80.7192 +287266,286.9,82.2777 +287267,286.96,83.8459 +287268,287.05,85.4231 +287269,285.61,80.7566 +287270,285.59,82.3062 +287271,285.6,83.8652 +287272,285.65,85.433 +287273,284.34,80.7952 +287274,284.28,82.3351 +287275,284.25,83.8842 +287276,284.25,85.4416 +287277,283.08,80.8351 +287278,282.97,82.3645 +287279,282.9,83.9027 +287280,282.86,85.449 +287281,281.81,80.8762 +287282,281.66,82.3942 +287283,281.55,83.9209 +287284,281.46,85.4552 +287285,280.55,80.9186 +287286,280.35,82.4244 +287287,280.19,83.9386 +287288,280.06,85.4602 +287289,279.28,80.9622 +287290,279.05,82.455 +287291,278.84,83.9559 +287292,278.67,85.464 +287293,278.01,81.0071 +287294,277.74,82.4859 +287295,277.49,83.9728 +287296,277.27,85.4667 +287297,276.75,81.0531 +287298,276.43,82.5173 +287299,276.14,83.9894 +287300,275.87,85.4681 +287301,275.48,81.1004 +287302,275.12,82.5491 +287303,274.78,84.0055 +287304,274.48,85.4684 +287305,274.21,81.1488 +287306,273.81,82.5812 +287307,273.43,84.0212 +287308,273.08,85.4676 +287309,272.95,81.1984 +287310,272.5,82.6138 +287311,272.08,84.0366 +287312,271.69,85.4656 +287313,271.68,81.2492 +287314,271.19,82.6467 +287315,270.73,84.0516 +287316,270.29,85.4625 +287317,270.41,81.3011 +287318,269.88,82.68 +287319,269.37,84.0662 +287320,268.9,85.4583 +287321,269.14,81.3542 +287322,268.57,82.7137 +287323,268.02,84.0804 +287324,267.5,85.453 +287325,267.87,81.4084 +287326,267.26,82.7477 +287327,266.67,84.0943 +287328,266.11,85.4467 +287329,266.6,81.4637 +287330,265.95,82.7822 +287331,265.32,84.1078 +287332,264.72,85.4392 +287333,265.33,81.5202 +287334,264.64,82.8169 +287335,263.97,84.121 +287336,263.33,85.4307 +287337,264.06,81.5777 +287338,263.33,82.8521 +287339,262.62,84.1338 +287340,261.93,85.4212 +287341,262.79,81.6362 +287342,262.01,82.8875 +287343,261.26,84.1462 +287344,260.54,85.4107 +287345,261.52,81.6958 +287346,260.7,82.9233 +287347,259.91,84.1584 +287348,259.15,85.3992 +287349,260.25,81.7564 +287350,259.39,82.9595 +287351,258.56,84.1701 +287352,257.76,85.3867 +287353,258.97,81.8181 +287354,258.08,82.996 +287355,257.21,84.1816 +287356,256.37,85.3732 +287357,257.7,81.8807 +287358,256.77,83.0328 +287359,255.86,84.1927 +287360,254.98,85.3588 +287361,256.42,81.9443 +287362,255.45,83.0699 +287363,254.51,84.2036 +287364,253.6,85.3435 +287365,255.15,82.0088 +287366,254.14,83.1073 +287367,253.16,84.2141 +287368,252.21,85.3273 +287369,253.87,82.0743 +287370,252.83,83.1451 +287371,251.81,84.2243 +287372,250.82,85.3102 +287373,252.59,82.1406 +287374,251.51,83.1831 +287375,250.46,84.2342 +287376,249.44,85.2923 +287377,251.32,82.2079 +287378,250.2,83.2214 +287379,249.11,84.2439 +287380,248.05,85.2735 +287381,250.04,82.276 +287382,248.89,83.26 +287383,247.76,84.2532 +287384,246.67,85.2538 +287385,248.76,82.3449 +287386,247.57,83.2989 +287387,246.41,84.2623 +287388,245.29,85.2334 +287389,247.48,82.4147 +287390,246.26,83.338 +287391,245.07,84.2711 +287392,243.91,85.2122 +287393,246.2,82.4853 +287394,244.94,83.3774 +287395,243.72,84.2797 +287396,242.52,85.1903 +287397,244.91,82.5566 +287398,243.63,83.417 +287399,242.37,84.288 +287400,241.14,85.1676 +287401,243.63,82.6287 +287402,242.31,83.4569 +287403,241.02,84.2961 +287404,239.77,85.1443 +287405,242.34,82.7014 +287406,240.99,83.497 +287407,239.68,84.3039 +287408,238.39,85.1202 +287409,241.06,82.7749 +287410,239.68,83.5374 +287411,238.33,84.3115 +287412,237.01,85.0955 +287413,239.77,82.849 +287414,238.36,83.5779 +287415,236.98,84.3189 +287416,235.63,85.0702 +287417,238.48,82.9238 +287418,237.04,83.6187 +287419,235.64,84.3261 +287420,234.26,85.0442 +287421,237.19,82.9992 +287422,235.72,83.6596 +287423,234.29,84.3331 +287424,232.89,85.0177 +287425,235.9,83.0752 +287426,234.41,83.7008 +287427,232.94,84.3399 +287428,231.51,84.9906 +287429,234.61,83.1517 +287430,233.09,83.7421 +287431,231.6,84.3465 +287432,230.14,84.963 +287433,233.32,83.2287 +287434,231.77,83.7836 +287435,230.25,84.353 +287436,228.77,84.9349 +287437,232.02,83.3063 +287438,230.45,83.8252 +287439,228.91,84.3592 +287440,227.4,84.9063 +287441,230.73,83.3843 +287442,229.13,83.867 +287443,227.56,84.3654 +287444,226.04,84.8773 +287445,229.43,83.4628 +287446,227.81,83.909 +287447,226.22,84.3713 +287448,224.67,84.8478 +287449,228.14,83.5417 +287450,226.49,83.9511 +287451,224.88,84.3772 +287452,223.3,84.8179 +287453,226.84,83.6209 +287454,225.17,83.9933 +287455,223.53,84.3829 +287456,221.94,84.7877 +287457,225.54,83.7005 +287458,223.84,84.0356 +287459,222.19,84.3885 +287460,220.58,84.7571 +287461,224.23,83.7805 +287462,222.52,84.078 +287463,220.85,84.394 +287464,219.21,84.7262 +287465,222.93,83.8607 +287466,221.2,84.1205 +287467,219.51,84.3994 +287468,217.85,84.695 +287469,221.63,83.9412 +287470,219.88,84.1631 +287471,218.17,84.4046 +287472,216.5,84.6636 +287473,220.32,84.022 +287474,218.55,84.2058 +287475,216.82,84.4099 +287476,215.14,84.6319 +287477,219.01,84.1029 +287478,217.23,84.2485 +287479,215.48,84.415 +287480,213.78,84.6 +287481,217.71,84.184 +287482,215.9,84.2913 +287483,214.14,84.4201 +287484,212.43,84.5679 +287485,216.4,84.2653 +287486,214.58,84.3342 +287487,212.8,84.4251 +287488,211.07,84.5357 +287489,215.08,84.3467 +287490,213.25,84.377 +287491,211.46,84.4301 +287492,209.72,84.5034 +287493,213.77,84.4281 +287494,211.93,84.4199 +287495,210.13,84.435 +287496,208.37,84.471 +287497,212.46,84.5096 +287498,210.6,84.4628 +287499,208.79,84.44 +287500,207.02,84.4385 +287501,211.14,84.5911 +287502,209.27,84.5057 +287503,207.45,84.4449 +287504,205.67,84.406 +287505,209.83,84.6726 +287506,207.94,84.5486 +287507,206.11,84.4498 +287508,204.32,84.3735 +287509,208.51,84.7541 +287510,206.62,84.5915 +287511,204.77,84.4547 +287512,202.98,84.341 +287513,207.19,84.8355 +287514,205.29,84.6344 +287515,203.44,84.4596 +287516,201.63,84.3086 +287517,205.87,84.9168 +287518,203.96,84.6772 +287519,202.1,84.4646 +287520,200.29,84.2762 +287521,204.54,84.9979 +287522,202.63,84.72 +287523,200.77,84.4696 +287524,198.95,84.244 +287525,203.22,85.0789 +287526,201.3,84.7627 +287527,199.43,84.4746 +287528,197.61,84.2118 +287529,201.89,85.1596 +287530,199.97,84.8054 +287531,198.09,84.4797 +287532,196.27,84.1799 +287533,200.56,85.2402 +287534,198.64,84.8479 +287535,196.76,84.4849 +287536,194.93,84.1482 +287537,199.24,85.3205 +287538,197.3,84.8904 +287539,195.43,84.4901 +287540,193.6,84.1167 +287541,197.91,85.4005 +287542,195.97,84.9328 +287543,194.09,84.4955 +287544,192.26,84.0854 +287545,196.57,85.4801 +287546,194.64,84.9751 +287547,192.76,84.5009 +287548,190.93,84.0544 +287549,195.24,85.5594 +287550,193.31,85.0172 +287551,191.43,84.5064 +287552,189.6,84.0238 +287553,193.91,85.6384 +287554,191.97,85.0593 +287555,190.09,84.512 +287556,188.27,83.9934 +287557,192.57,85.7169 +287558,190.64,85.1012 +287559,188.76,84.5178 +287560,186.94,83.9635 +287561,191.23,85.795 +287562,189.3,85.1429 +287563,187.43,84.5237 +287564,185.61,83.9339 +287565,189.89,85.8726 +287566,187.97,85.1845 +287567,186.1,84.5297 +287568,184.28,83.9048 +287569,188.55,85.9497 +287570,186.63,85.2259 +287571,184.77,84.5359 +287572,182.96,83.8761 +287573,187.21,86.0262 +287574,185.29,85.2672 +287575,183.44,84.5422 +287576,181.63,83.8479 +287577,185.86,86.1022 +287578,183.96,85.3082 +287579,182.11,84.5487 +287580,180.31,83.8201 +287581,184.52,86.1777 +287582,182.62,85.3491 +287583,180.78,84.5554 +287584,178.99,83.793 +287585,183.17,86.2525 +287586,181.28,85.3897 +287587,179.45,84.5623 +287588,177.67,83.7663 +287589,181.82,86.3266 +287590,179.94,85.4302 +287591,178.12,84.5693 +287592,176.35,83.7403 +287593,180.47,86.4001 +287594,178.6,85.4704 +287595,176.79,84.5766 +287596,175.04,83.7149 +287597,179.12,86.4729 +287598,177.26,85.5104 +287599,175.47,84.5841 +287600,173.72,83.6901 +287601,177.77,86.545 +287602,175.92,85.5502 +287603,174.14,84.5918 +287604,172.41,83.6659 +287605,176.42,86.6163 +287606,174.58,85.5897 +287607,172.81,84.5997 +287608,171.09,83.6425 +287609,175.06,86.6868 +287610,173.24,85.6289 +287611,171.48,84.6079 +287612,169.78,83.6198 +287613,173.7,86.7566 +287614,171.9,85.6679 +287615,170.16,84.6163 +287616,168.47,83.5978 +287617,172.34,86.8255 +287618,170.56,85.7066 +287619,168.83,84.625 +287620,167.16,83.5765 +287621,170.98,86.8935 +287622,169.21,85.745 +287623,167.51,84.6339 +287624,165.85,83.5561 +287625,169.62,86.9607 +287626,167.87,85.7832 +287627,166.18,84.6431 +287628,164.55,83.5364 +287629,168.26,87.027 +287630,166.53,85.821 +287631,164.86,84.6526 +287632,163.24,83.5176 +287633,166.9,87.0924 +287634,165.18,85.8585 +287635,163.53,84.6623 +287636,161.94,83.4997 +287637,165.53,87.1568 +287638,163.84,85.8958 +287639,162.21,84.6724 +287640,160.64,83.4826 +287641,164.17,87.2202 +287642,162.49,85.9327 +287643,160.89,84.6827 +287644,159.33,83.4664 +287645,162.8,87.2827 +287646,161.15,85.9692 +287647,159.56,84.6934 +287648,158.03,83.4511 +287649,161.43,87.3441 +287650,159.8,86.0055 +287651,158.24,84.7044 +287652,156.73,83.4368 +287653,160.06,87.4045 +287654,158.46,86.0414 +287655,156.92,84.7157 +287656,155.43,83.4235 +287657,158.69,87.4639 +287658,157.11,86.0769 +287659,155.6,84.7273 +287660,154.14,83.4111 +287661,157.31,87.5222 +287662,155.76,86.1121 +287663,154.28,84.7393 +287664,152.84,83.3997 +287665,155.94,87.5793 +287666,154.42,86.1469 +287667,152.95,84.7516 +287668,151.54,83.3893 +287669,154.57,87.6354 +287670,153.07,86.1814 +287671,151.63,84.7642 +287672,150.25,83.38 +287673,153.19,87.6904 +287674,151.72,86.2154 +287675,150.31,84.7772 +287676,148.96,83.3717 +287677,151.81,87.7442 +287678,150.37,86.2492 +287679,148.99,84.7906 +287680,147.66,83.3646 +287681,150.43,87.7969 +287682,149.02,86.2825 +287683,147.67,84.8043 +287684,146.37,83.3585 +287685,149.05,87.8484 +287686,147.67,86.3154 +287687,146.35,84.8184 +287688,145.08,83.3535 +287689,147.67,87.8987 +287690,146.32,86.3479 +287691,145.03,84.8328 +287692,143.79,83.3496 +287693,146.29,87.9477 +287694,144.97,86.3801 +287695,143.71,84.8476 +287696,142.5,83.3469 +287697,144.91,87.9956 +287698,143.62,86.4118 +287699,142.39,84.8629 +287700,141.22,83.3453 +287701,143.53,88.0423 +287702,142.27,86.4431 +287703,141.08,84.8785 +287704,139.93,83.3449 +287705,142.14,88.0877 +287706,140.92,86.474 +287707,139.76,84.8945 +287708,138.64,83.3457 +287709,140.76,88.1318 +287710,139.57,86.5045 +287711,138.44,84.9109 +287712,137.36,83.3476 +287713,139.37,88.1747 +287714,138.22,86.5345 +287715,137.12,84.9277 +287716,136.07,83.3508 +287717,137.98,88.2163 +287718,136.86,86.5642 +287719,135.8,84.9449 +287720,134.79,83.3552 +287721,136.59,88.2566 +287722,135.51,86.5934 +287723,134.49,84.9625 +287724,133.51,83.3609 +287725,135.21,88.2956 +287726,134.16,86.6221 +287727,133.17,84.9805 +287728,132.22,83.3677 +287729,133.82,88.3333 +287730,132.81,86.6504 +287731,131.85,84.9989 +287732,130.94,83.3759 +287733,132.43,88.3697 +287734,131.45,86.6783 +287735,130.53,85.0178 +287736,129.66,83.3853 +287737,131.03,88.4048 +287738,130.1,86.7058 +287739,129.22,85.037 +287740,128.38,83.3959 +287741,129.64,88.4386 +287742,128.75,86.7328 +287743,127.9,85.0567 +287744,127.1,83.4079 +287745,128.25,88.471 +287746,127.39,86.7593 +287747,126.58,85.0769 +287748,125.82,83.4211 +287749,126.86,88.5021 +287750,126.04,86.7854 +287751,125.27,85.0974 +287752,124.54,83.4356 +287753,125.46,88.5319 +287754,124.68,86.8111 +287755,123.95,85.1184 +287756,123.26,83.4514 +287757,124.07,88.5603 +287758,123.33,86.8363 +287759,122.64,85.1398 +287760,121.98,83.4685 +287761,122.67,88.5873 +287762,121.97,86.861 +287763,121.32,85.1616 +287764,120.71,83.487 +287765,121.28,88.6131 +287766,120.62,86.8853 +287767,120,85.1839 +287768,119.43,83.5067 +287769,119.88,88.6374 +287770,119.26,86.9092 +287771,118.69,85.2066 +287772,118.15,83.5278 +287773,118.49,88.6604 +287774,117.91,86.9326 +287775,117.37,85.2297 +287776,116.88,83.5502 +287777,117.09,88.6821 +287778,116.55,86.9555 +287779,116.06,85.2532 +287780,115.6,83.5739 +287781,115.69,88.7024 +287782,115.2,86.978 +287783,114.74,85.2772 +287784,114.32,83.5989 +287785,114.3,88.7214 +287786,113.84,87 +287787,113.43,85.3017 +287788,113.05,83.6252 +287789,112.9,88.7391 +287790,112.48,87.0215 +287791,112.11,85.3265 +287792,111.77,83.6529 +287793,111.5,88.7553 +287794,111.13,87.0426 +287795,110.8,85.3518 +287796,110.5,83.6819 +287797,110.1,88.7703 +287798,109.77,87.0633 +287799,109.48,85.3776 +287800,109.22,83.7122 +287801,108.71,88.7839 +287802,108.42,87.0835 +287803,108.16,85.4037 +287804,107.95,83.7438 +287805,107.31,88.7962 +287806,107.06,87.1032 +287807,106.85,85.4303 +287808,106.67,83.7768 +287809,105.91,88.8072 +287810,105.7,87.1225 +287811,105.53,85.4573 +287812,105.4,83.8111 +287813,104.51,88.8168 +287814,104.35,87.1414 +287815,104.22,85.4848 +287816,104.12,83.8466 +287817,103.11,88.8252 +287818,102.99,87.1598 +287819,102.9,85.5126 +287820,102.85,83.8835 +287821,101.71,88.8322 +287822,101.63,87.1777 +287823,101.59,85.5409 +287824,101.57,83.9217 +287825,100.31,88.8379 +287826,100.28,87.1952 +287827,100.27,85.5697 +287828,100.3,83.9612 +287829,98.915,88.8424 +287830,98.919,87.2123 +287831,98.957,85.5988 +287832,99.025,84.0019 +287833,97.516,88.8456 +287834,97.563,87.2289 +287835,97.641,85.6283 +287836,97.75,84.0439 +287837,96.118,88.8475 +287838,96.206,87.2451 +287839,96.325,85.6583 +287840,96.474,84.0872 +287841,94.719,88.8482 +287842,94.849,87.2609 +287843,95.01,85.6887 +287844,95.199,84.1318 +287845,93.321,88.8476 +287846,93.492,87.2762 +287847,93.694,85.7194 +287848,93.924,84.1776 +287849,91.923,88.8458 +287850,92.136,87.2912 +287851,92.378,85.7506 +287852,92.648,84.2247 +287853,90.525,88.8428 +287854,90.779,87.3057 +287855,91.062,85.7822 +287856,91.372,84.2729 +287857,89.128,88.8385 +287858,89.422,87.3197 +287859,89.745,85.8142 +287860,90.095,84.3224 +287861,87.73,88.8331 +287862,88.066,87.3334 +287863,88.429,85.8465 +287864,88.819,84.3731 +287865,86.333,88.8265 +287866,86.71,87.3467 +287867,87.113,85.8793 +287868,87.541,84.425 +287869,84.937,88.8188 +287870,85.353,87.3596 +287871,85.796,85.9124 +287872,86.264,84.4781 +287873,83.541,88.8099 +287874,83.997,87.372 +287875,84.479,85.9459 +287876,84.986,84.5324 +287877,82.145,88.7998 +287878,82.641,87.3841 +287879,83.162,85.9797 +287880,83.708,84.5877 +287881,80.75,88.7887 +287882,81.285,87.3958 +287883,81.845,86.014 +287884,82.429,84.6443 +287885,79.355,88.7765 +287886,79.929,87.4071 +287887,80.527,86.0486 +287888,81.15,84.7019 +287889,77.961,88.7632 +287890,78.573,87.4181 +287891,79.21,86.0835 +287892,79.87,84.7606 +287893,76.567,88.7488 +287894,77.217,87.4286 +287895,77.892,86.1188 +287896,78.589,84.8204 +287897,75.174,88.7334 +287898,75.862,87.4389 +287899,76.574,86.1544 +287900,77.308,84.8813 +287901,73.781,88.717 +287902,74.507,87.4487 +287903,75.255,86.1904 +287904,76.027,84.9432 +287905,72.389,88.6995 +287906,73.152,87.4582 +287907,73.937,86.2267 +287908,74.744,85.0062 +287909,70.998,88.6811 +287910,71.797,87.4674 +287911,72.618,86.2633 +287912,73.461,85.0702 +287913,69.607,88.6618 +287914,70.442,87.4762 +287915,71.299,86.3002 +287916,72.178,85.1351 +287917,68.217,88.6415 +287918,69.087,87.4847 +287919,69.979,86.3374 +287920,70.893,85.201 +287921,66.828,88.6202 +287922,67.733,87.4929 +287923,68.66,86.3749 +287924,69.608,85.2679 +287925,65.44,88.5981 +287926,66.379,87.5007 +287927,67.34,86.4128 +287928,68.322,85.3357 +287929,64.052,88.5752 +287930,65.025,87.5083 +287931,66.02,86.4509 +287932,67.036,85.4043 +287933,62.665,88.5513 +287934,63.671,87.5156 +287935,64.699,86.4892 +287936,65.748,85.4739 +287937,61.28,88.5267 +287938,62.318,87.5225 +287939,63.378,86.5279 +287940,64.46,85.5443 +287941,59.894,88.5012 +287942,60.965,87.5292 +287943,62.057,86.5668 +287944,63.17,85.6155 +287945,58.51,88.475 +287946,59.612,87.5356 +287947,60.735,86.6059 +287948,61.88,85.6875 +287949,57.127,88.448 +287950,58.259,87.5418 +287951,59.413,86.6453 +287952,60.589,85.7604 +287953,55.745,88.4203 +287954,56.907,87.5476 +287955,58.091,86.685 +287956,59.297,85.8339 +287957,54.363,88.3919 +287958,55.555,87.5533 +287959,56.768,86.7248 +287960,58.004,85.9082 +287961,52.983,88.3629 +287962,54.203,87.5587 +287963,55.446,86.7649 +287964,56.71,85.9832 +287965,51.603,88.3331 +287966,52.852,87.5638 +287967,54.122,86.8052 +287968,55.415,86.0589 +287969,50.225,88.3028 +287970,51.5,87.5687 +287971,52.798,86.8457 +287972,54.119,86.1352 +287973,48.847,88.2718 +287974,50.149,87.5735 +287975,51.474,86.8863 +287976,52.822,86.2121 +287977,47.471,88.2403 +287978,48.799,87.578 +287979,50.15,86.9272 +287980,51.523,86.2896 +287981,46.096,88.2083 +287982,47.449,87.5823 +287983,48.825,86.9682 +287984,50.224,86.3677 +287985,44.722,88.1757 +287986,46.099,87.5864 +287987,47.5,87.0094 +287988,48.924,86.4463 +287989,43.349,88.1427 +287990,44.749,87.5904 +287991,46.174,87.0507 +287992,47.622,86.5254 +287993,41.977,88.1092 +287994,43.4,87.5941 +287995,44.848,87.0922 +287996,46.319,86.605 +287997,40.606,88.0752 +287998,42.051,87.5978 +287999,43.521,87.1338 +288000,45.015,86.6851 +288001,39.236,88.0409 +288002,40.703,87.6012 +288003,42.194,87.1755 +288004,43.71,86.7655 +288005,37.868,88.0062 +288006,39.354,87.6046 +288007,40.867,87.2174 +288008,42.404,86.8464 +288009,36.501,87.9711 +288010,38.007,87.6077 +288011,39.539,87.2593 +288012,41.096,86.9276 +288013,35.134,87.9357 +288014,36.659,87.6108 +288015,38.21,87.3014 +288016,39.788,87.0091 +288017,33.77,87.9001 +288018,35.312,87.6138 +288019,36.882,87.3435 +288020,38.478,87.0909 +288021,32.406,87.8642 +288022,33.965,87.6167 +288023,35.552,87.3857 +288024,37.167,87.1729 +288025,31.043,87.828 +288026,32.619,87.6194 +288027,34.223,87.4279 +288028,35.854,87.2552 +288029,29.682,87.7917 +288030,31.273,87.6221 +288031,32.892,87.4702 +288032,34.54,87.3377 +288033,28.322,87.7552 +288034,29.928,87.6247 +288035,31.562,87.5125 +288036,33.225,87.4204 +288037,26.964,87.7185 +288038,28.583,87.6273 +288039,30.231,87.5549 +288040,31.909,87.5032 +288041,25.606,87.6817 +288042,27.238,87.6298 +288043,28.899,87.5973 +288044,30.591,87.5861 +288045,24.25,87.6449 +288046,25.893,87.6323 +288047,27.567,87.6397 +288048,29.272,87.6691 +288049,22.895,87.608 +288050,24.549,87.6347 +288051,26.234,87.6821 +288052,27.951,87.7521 +288053,21.542,87.5711 +288054,23.206,87.6371 +288055,24.901,87.7244 +288056,26.629,87.8351 +288057,20.189,87.5342 +288058,21.863,87.6395 +288059,23.568,87.7668 +288060,25.306,87.918 +288061,18.839,87.4973 +288062,20.52,87.6419 +288063,22.234,87.8091 +288064,23.982,88.001 +288065,17.489,87.4605 +288066,19.178,87.6443 +288067,20.899,87.8514 +288068,22.656,88.0838 +288069,16.141,87.4238 +288070,17.836,87.6468 +288071,19.565,87.8936 +288072,21.329,88.1665 +288073,14.794,87.3872 +288074,16.494,87.6492 +288075,18.229,87.9357 +288076,20,88.249 +288077,13.448,87.3508 +288078,15.153,87.6517 +288079,16.893,87.9778 +288080,18.67,88.3314 +288081,12.103,87.3146 +288082,13.812,87.6543 +288083,15.557,88.0198 +288084,17.338,88.4135 +288085,10.76,87.2786 +288086,12.472,87.6569 +288087,14.22,88.0617 +288088,16.005,88.4954 +288089,9.4187,87.2428 +288090,11.132,87.6596 +288091,12.882,88.1034 +288092,14.671,88.577 +288093,8.0782,87.2073 +288094,9.7928,87.6624 +288095,11.544,88.1451 +288096,13.335,88.6583 +288097,6.7391,87.1722 +288098,8.4538,87.6652 +288099,10.206,88.1866 +288100,11.998,88.7392 +288101,5.4013,87.1373 +288102,7.1152,87.6682 +288103,8.8669,88.228 +288104,10.66,88.8197 +288105,4.0649,87.1028 +288106,5.777,87.6712 +288107,7.5274,88.2692 +288108,9.3199,88.8998 +288109,2.7297,87.0687 +288110,4.4391,87.6744 +288111,6.1875,88.3103 +288112,7.9786,88.9795 +288113,1.3958,87.035 +288114,3.1017,87.6777 +288115,4.8471,88.3512 +288116,6.6358,89.05872 +288117,0.063235,87.0018 +288118,1.7648,87.6812 +288119,3.5061,88.392 +288120,5.2917,89.13741 +288121,358.73,86.9691 +288122,0.42818,87.6848 +288123,2.1647,88.4325 +288124,3.9461,89.21556 +288125,357.4,86.9368 +288126,359.09,87.6885 +288127,0.82279,88.4728 +288128,2.5991,89.29315 +288129,356.07,86.9051 +288130,357.76,87.6924 +288131,359.48,88.5129 +288132,1.2508,89.37013 +288133,354.75,86.8739 +288134,356.42,87.6965 +288135,358.14,88.5528 +288136,359.9,89.44648 +288137,353.42,86.8434 +288138,355.09,87.7008 +288139,356.79,88.5925 +288140,358.55,89.52218 +288141,352.09,86.8134 +288142,353.75,87.7053 +288143,355.45,88.6319 +288144,357.2,89.59718 +288145,350.77,86.7841 +288146,352.42,87.71 +288147,354.11,88.6711 +288148,355.84,89.67146 +288149,349.45,86.7554 +288150,351.08,87.7149 +288151,352.76,88.71 +288152,354.49,89.745 +288153,348.13,86.7275 +288154,349.75,87.72 +288155,351.42,88.7487 +288156,353.13,89.81776 +288157,346.81,86.7002 +288158,348.42,87.7253 +288159,350.07,88.7871 +288160,351.77,89.88972 +288161,345.49,86.6737 +288162,347.08,87.7309 +288163,348.72,88.8252 +288164,350.41,89.96085 +288165,344.17,86.648 +288166,345.75,87.7367 +288167,347.38,88.863 +288168,349.05,90.031119 +288169,342.85,86.6231 +288170,344.42,87.7428 +288171,346.03,88.9005 +288172,347.69,90.1005 +288173,341.54,86.5989 +288174,343.09,87.7492 +288175,344.68,88.9377 +288176,346.33,90.16898 +288177,340.23,86.5757 +288178,341.76,87.7558 +288179,343.33,88.9745 +288180,344.96,90.23652 +288181,338.91,86.5532 +288182,340.43,87.7627 +288183,341.99,89.01105 +288184,343.6,90.30309 +288185,337.6,86.5317 +288186,339.1,87.7699 +288187,340.64,89.04725 +288188,342.23,90.36868 +288189,336.29,86.5111 +288190,337.77,87.7773 +288191,339.29,89.0831 +288192,340.86,90.43326 +288193,334.98,86.4914 +288194,336.44,87.7851 +288195,337.94,89.1186 +288196,339.49,90.4968 +288197,333.67,86.4727 +288198,335.11,87.7932 +288199,336.59,89.15374 +288200,338.12,90.55929 +288201,332.36,86.4549 +288202,333.78,87.8016 +288203,335.24,89.18851 +288204,336.75,90.6207 +288205,331.06,86.4381 +288206,332.45,87.8103 +288207,333.89,89.22291 +288208,335.38,90.681 +288209,329.75,86.4224 +288210,331.12,87.8194 +288211,332.53,89.25693 +288212,334,90.74018 +288213,328.45,86.4077 +288214,329.79,87.8288 +288215,331.18,89.29055 +288216,332.63,90.79822 +288217,327.14,86.394 +288218,328.46,87.8385 +288219,329.83,89.32379 +288220,331.25,90.85509 +288221,325.84,86.3814 +288222,327.14,87.8486 +288223,328.48,89.35662 +288224,329.87,90.91078 +288225,324.54,86.3699 +288226,325.81,87.859 +288227,327.12,89.38904 +288228,328.49,90.96527 +288229,323.24,86.3595 +288230,324.48,87.8698 +288231,325.77,89.42105 +288232,327.11,91.0185 +288233,321.94,86.3502 +288234,323.16,87.881 +288235,324.42,89.45264 +288236,325.73,91.0706 +288237,320.64,86.3421 +288238,321.83,87.8925 +288239,323.06,89.4838 +288240,324.35,91.1213 +288241,319.34,86.3352 +288242,320.5,87.9044 +288243,321.71,89.51453 +288244,322.97,91.1708 +288245,318.05,86.3294 +288246,319.18,87.9167 +288247,320.35,89.54483 +288248,321.58,91.219 +288249,316.75,86.3248 +288250,317.85,87.9294 +288251,319,89.57468 +288252,320.2,91.266 +288253,315.45,86.3214 +288254,316.53,87.9424 +288255,317.64,89.60409 +288256,318.81,91.3116 +288257,314.16,86.3192 +288258,315.2,87.9559 +288259,316.29,89.63304 +288260,317.43,91.3558 +288261,312.87,86.3183 +288262,313.88,87.9698 +288263,314.93,89.66155 +288264,316.04,91.3987 +288265,311.57,86.3185 +288266,312.55,87.984 +288267,313.57,89.68959 +288268,314.65,91.4403 +288269,310.28,86.3201 +288270,311.23,87.9987 +288271,312.22,89.71716 +288272,313.26,91.4805 +288273,308.99,86.3229 +288274,309.9,88.0138 +288275,310.86,89.74428 +288276,311.87,91.5193 +288277,307.7,86.327 +288278,308.58,88.0293 +288279,309.5,89.77092 +288280,310.48,91.5568 +288281,306.41,86.3324 +288282,307.25,88.0452 +288283,308.15,89.79708 +288284,309.09,91.5928 +288285,305.11,86.3391 +288286,305.93,88.0616 +288287,306.79,89.82277 +288288,307.7,91.6275 +288289,303.83,86.347 +288290,304.61,88.0783 +288291,305.43,89.84798 +288292,306.3,91.6607 +288293,302.54,86.3563 +288294,303.28,88.0955 +288295,304.07,89.87271 +288296,304.91,91.6925 +288297,301.25,86.367 +288298,301.96,88.1131 +288299,302.71,89.89695 +288300,303.51,91.7229 +288301,299.96,86.3789 +288302,300.64,88.1312 +288303,301.35,89.920712 +288304,302.12,91.7519 +288305,298.67,86.3922 +288306,299.31,88.1497 +288307,299.99,89.943981 +288308,300.72,91.7794 +288309,297.38,86.4068 +288310,297.99,88.1686 +288311,298.64,89.96676 +288312,299.33,91.8055 +288313,296.1,86.4227 +288314,296.67,88.1879 +288315,297.28,89.989048 +288316,297.93,91.8302 +288317,294.81,86.44 +288318,295.34,88.2077 +288319,295.92,90.010844 +288320,296.53,91.8534 +288321,293.52,86.4587 +288322,294.02,88.2279 +288323,294.56,90.032147 +288324,295.14,91.8752 +288325,292.24,86.4787 +288326,292.7,88.2486 +288327,293.2,90.052956 +288328,293.74,91.8955 +288329,290.95,86.5001 +288330,291.38,88.2697 +288331,291.84,90.07327 +288332,292.34,91.9144 +288333,289.67,86.5228 +288334,290.05,88.2912 +288335,290.48,90.093091 +288336,290.94,91.9319 +288337,288.38,86.5468 +288338,288.73,88.3131 +288339,289.12,90.11242 +288340,289.54,91.9479 +288341,287.1,86.5723 +288342,287.41,88.3355 +288343,287.76,90.13125 +288344,288.14,91.9624 +288345,285.81,86.5991 +288346,286.09,88.3584 +288347,286.4,90.14959 +288348,286.74,91.9756 +288349,284.53,86.6272 +288350,284.76,88.3817 +288351,285.03,90.16744 +288352,285.34,91.9873 +288353,283.24,86.6567 +288354,283.44,88.4054 +288355,283.67,90.1848 +288356,283.94,91.9976 +288357,281.96,86.6875 +288358,282.12,88.4295 +288359,282.31,90.20166 +288360,282.54,92.0064 +288361,280.67,86.7197 +288362,280.8,88.4541 +288363,280.95,90.21804 +288364,281.14,92.0139 +288365,279.39,86.7532 +288366,279.47,88.4791 +288367,279.59,90.23394 +288368,279.74,92.0199 +288369,278.11,86.7881 +288370,278.15,88.5045 +288371,278.23,90.24935 +288372,278.34,92.0245 +288373,276.82,86.8243 +288374,276.83,88.5304 +288375,276.87,90.26428 +288376,276.94,92.0278 +288377,275.54,86.8618 +288378,275.51,88.5567 +288379,275.51,90.27872 +288380,275.54,92.0296 +288381,274.25,86.9006 +288382,274.18,88.5834 +288383,274.15,90.2927 +288384,274.14,92.0301 +288385,272.97,86.9408 +288386,272.86,88.6105 +288387,272.79,90.30619 +288388,272.74,92.0293 +288389,271.68,86.9822 +288390,271.54,88.638 +288391,271.42,90.31922 +288392,271.34,92.027 +288393,270.4,87.0249 +288394,270.22,88.666 +288395,270.06,90.33178 +288396,269.94,92.0235 +288397,269.11,87.0689 +288398,268.89,88.6943 +288399,268.7,90.34388 +288400,268.54,92.0186 +288401,267.83,87.1142 +288402,267.57,88.7231 +288403,267.34,90.35552 +288404,267.14,92.0124 +288405,266.54,87.1608 +288406,266.25,88.7522 +288407,265.98,90.36671 +288408,265.74,92.0049 +288409,265.25,87.2085 +288410,264.92,88.7818 +288411,264.62,90.37744 +288412,264.34,91.9961 +288413,263.97,87.2576 +288414,263.6,88.8117 +288415,263.26,90.38773 +288416,262.94,91.986 +288417,262.68,87.3078 +288418,262.28,88.842 +288419,261.9,90.39758 +288420,261.54,91.9747 +288421,261.39,87.3593 +288422,260.95,88.8727 +288423,260.54,90.40699 +288424,260.14,91.9622 +288425,260.11,87.4119 +288426,259.63,88.9038 +288427,259.18,90.41597 +288428,258.75,91.9484 +288429,258.82,87.4657 +288430,258.31,88.9353 +288431,257.82,90.42453 +288432,257.35,91.9334 +288433,257.53,87.5207 +288434,256.98,88.9671 +288435,256.45,90.43266 +288436,255.95,91.9173 +288437,256.24,87.5768 +288438,255.66,88.9992 +288439,255.09,90.44038 +288440,254.55,91.8999 +288441,254.95,87.6341 +288442,254.33,89.03177 +288443,253.73,90.4477 +288444,253.16,91.8815 +288445,253.66,87.6925 +288446,253.01,89.06464 +288447,252.37,90.45461 +288448,251.76,91.8619 +288449,252.37,87.7519 +288450,251.68,89.09785 +288451,251.01,90.46113 +288452,250.37,91.8412 +288453,251.08,87.8125 +288454,250.36,89.1314 +288455,249.65,90.46726 +288456,248.97,91.8194 +288457,249.79,87.874 +288458,249.03,89.16527 +288459,248.29,90.47301 +288460,247.58,91.7965 +288461,248.49,87.9367 +288462,247.7,89.19946 +288463,246.94,90.47838 +288464,246.18,91.7726 +288465,247.2,88.0003 +288466,246.38,89.23396 +288467,245.58,90.48339 +288468,244.79,91.7477 +288469,245.91,88.0649 +288470,245.05,89.26877 +288471,244.22,90.48803 +288472,243.4,91.7218 +288473,244.61,88.1305 +288474,243.73,89.30387 +288475,242.86,90.49232 +288476,242.01,91.6949 +288477,243.32,88.1971 +288478,242.4,89.33926 +288479,241.5,90.49627 +288480,240.62,91.667 +288481,242.02,88.2645 +288482,241.07,89.37494 +288483,240.14,90.49988 +288484,239.23,91.6383 +288485,240.72,88.3329 +288486,239.74,89.41089 +288487,238.78,90.50317 +288488,237.84,91.6086 +288489,239.42,88.4021 +288490,238.42,89.4471 +288491,237.42,90.50613 +288492,236.45,91.5781 +288493,238.12,88.4722 +288494,237.09,89.48357 +288495,236.07,90.50878 +288496,235.06,91.5467 +288497,236.83,88.5432 +288498,235.76,89.52029 +288499,234.71,90.51112 +288500,233.67,91.5144 +288501,235.52,88.6149 +288502,234.43,89.55725 +288503,233.35,90.51317 +288504,232.29,91.4814 +288505,234.22,88.6874 +288506,233.1,89.59444 +288507,232,90.51494 +288508,230.9,91.4476 +288509,232.92,88.7606 +288510,231.77,89.63185 +288511,230.64,90.51642 +288512,229.52,91.4131 +288513,231.62,88.8346 +288514,230.44,89.66947 +288515,229.28,90.51764 +288516,228.14,91.3778 +288517,230.31,88.9093 +288518,229.11,89.70729 +288519,227.93,90.51859 +288520,226.75,91.3419 +288521,229.01,88.9846 +288522,227.78,89.74531 +288523,226.57,90.5193 +288524,225.37,91.3053 +288525,227.7,89.06058 +288526,226.45,89.78352 +288527,225.21,90.51977 +288528,223.99,91.268 +288529,226.39,89.13717 +288530,225.12,89.82189 +288531,223.86,90.52 +288532,222.61,91.2302 +288533,225.09,89.21434 +288534,223.79,89.86044 +288535,222.5,90.52001 +288536,221.24,91.1918 +288537,223.78,89.29206 +288538,222.46,89.89913 +288539,221.15,90.51981 +288540,219.86,91.1528 +288541,222.47,89.3703 +288542,221.12,89.937975 +288543,219.8,90.51941 +288544,218.48,91.1133 +288545,221.16,89.44904 +288546,219.79,89.97695 +288547,218.44,90.51881 +288548,217.11,91.0733 +288549,219.84,89.52824 +288550,218.46,90.016051 +288551,217.09,90.51803 +288552,215.73,91.0329 +288553,218.53,89.60787 +288554,217.12,90.055265 +288555,215.73,90.51708 +288556,214.36,90.99204 +288557,217.21,89.6879 +288558,215.79,90.094582 +288559,214.38,90.51596 +288560,212.99,90.95077 +288561,215.9,89.7683 +288562,214.46,90.13399 +288563,213.03,90.51469 +288564,211.62,90.90914 +288565,214.58,89.84904 +288566,213.12,90.17349 +288567,211.68,90.51328 +288568,210.25,90.86716 +288569,213.26,89.930083 +288570,211.79,90.21305 +288571,210.32,90.51174 +288572,208.88,90.82488 +288573,211.94,90.011402 +288574,210.45,90.25268 +288575,208.97,90.51007 +288576,207.51,90.78233 +288577,210.62,90.092963 +288578,209.11,90.29236 +288579,207.62,90.5083 +288580,206.15,90.73952 +288581,209.3,90.17473 +288582,207.78,90.33207 +288583,206.27,90.50642 +288584,204.78,90.6965 +288585,207.98,90.25668 +288586,206.44,90.37182 +288587,204.92,90.50445 +288588,203.42,90.65329 +288589,206.65,90.33877 +288590,205.1,90.41158 +288591,203.57,90.5024 +288592,202.06,90.60993 +288593,205.33,90.42097 +288594,203.76,90.45135 +288595,202.22,90.50028 +288596,200.7,90.56645 +288597,204,90.50325 +288598,202.43,90.49112 +288599,200.87,90.4981 +288600,199.34,90.52288 +288601,202.67,90.58558 +288602,201.09,90.53087 +288603,199.52,90.49588 +288604,197.98,90.47924 +288605,201.34,90.66792 +288606,199.75,90.5706 +288607,198.17,90.49361 +288608,196.62,90.43557 +288609,200.01,90.75023 +288610,198.41,90.61029 +288611,196.82,90.49132 +288612,195.26,90.39191 +288613,198.68,90.83249 +288614,197.07,90.64993 +288615,195.48,90.48901 +288616,193.91,90.34827 +288617,197.34,90.91466 +288618,195.73,90.68951 +288619,194.13,90.48669 +288620,192.55,90.3047 +288621,196.01,90.9967 +288622,194.39,90.72902 +288623,192.78,90.48438 +288624,191.2,90.26122 +288625,194.67,91.0786 +288626,193.04,90.76845 +288627,191.44,90.48208 +288628,189.85,90.21787 +288629,193.34,91.1603 +288630,191.7,90.80779 +288631,190.09,90.4798 +288632,188.5,90.17467 +288633,192,91.2418 +288634,190.36,90.84702 +288635,188.74,90.47756 +288636,187.15,90.13166 +288637,190.66,91.323 +288638,189.02,90.88614 +288639,187.4,90.47537 +288640,185.8,90.08887 +288641,189.32,91.4039 +288642,187.67,90.92514 +288643,186.05,90.47323 +288644,184.46,90.046323 +288645,187.97,91.4845 +288646,186.33,90.964 +288647,184.71,90.47116 +288648,183.11,90.0040536 +288649,186.63,91.5648 +288650,184.98,91.0027 +288651,183.36,90.46917 +288652,181.77,89.962092 +288653,185.29,91.6446 +288654,183.64,91.0413 +288655,182.02,90.46726 +288656,180.43,89.920468 +288657,183.94,91.724 +288658,182.29,91.0797 +288659,180.68,90.46545 +288660,179.09,89.87921 +288661,182.59,91.803 +288662,180.95,91.1179 +288663,179.33,90.46375 +288664,177.74,89.83835 +288665,181.24,91.8815 +288666,179.6,91.1559 +288667,177.99,90.46216 +288668,176.41,89.79792 +288669,179.89,91.9595 +288670,178.25,91.1937 +288671,176.65,90.4607 +288672,175.07,89.75794 +288673,178.54,92.0369 +288674,176.91,91.2313 +288675,175.31,90.45938 +288676,173.73,89.71845 +288677,177.19,92.1137 +288678,175.56,91.2687 +288679,173.96,90.45821 +288680,172.4,89.67947 +288681,175.83,92.1899 +288682,174.21,91.3058 +288683,172.62,90.45719 +288684,171.06,89.64103 +288685,174.48,92.2655 +288686,172.86,91.3428 +288687,171.28,90.45634 +288688,169.73,89.60317 +288689,173.12,92.3403 +288690,171.51,91.3794 +288691,169.94,90.45567 +288692,168.4,89.5659 +288693,171.76,92.4145 +288694,170.16,91.4158 +288695,168.6,90.45518 +288696,167.07,89.52926 +288697,170.4,92.4879 +288698,168.81,91.452 +288699,167.26,90.45488 +288700,165.74,89.49326 +288701,169.04,92.5605 +288702,167.46,91.4878 +288703,165.92,90.45479 +288704,164.41,89.45795 +288705,167.68,92.6324 +288706,166.11,91.5234 +288707,164.58,90.45491 +288708,163.08,89.42335 +288709,166.32,92.7034 +288710,164.76,91.5586 +288711,163.24,90.45525 +288712,161.76,89.38948 +288713,164.95,92.7735 +288714,163.41,91.5935 +288715,161.91,90.45583 +288716,160.43,89.35636 +288717,163.58,92.8428 +288718,162.06,91.6282 +288719,160.57,90.45664 +288720,159.11,89.32404 +288721,162.22,92.9111 +288722,160.71,91.6625 +288723,159.23,90.4577 +288724,157.79,89.29252 +288725,160.85,92.9785 +288726,159.35,91.6964 +288727,157.89,90.45902 +288728,156.47,89.26183 +288729,159.48,93.0449 +288730,158,91.73 +288731,156.56,90.4606 +288732,155.15,89.232 +288733,158.11,93.1103 +288734,156.65,91.7633 +288735,155.22,90.46245 +288736,153.83,89.20306 +288737,156.74,93.1747 +288738,155.29,91.7962 +288739,153.88,90.46459 +288740,152.51,89.17502 +288741,155.36,93.238 +288742,153.94,91.8287 +288743,152.55,90.46701 +288744,151.19,89.14791 +288745,153.99,93.3002 +288746,152.58,91.8609 +288747,151.21,90.46973 +288748,149.88,89.12175 +288749,152.62,93.3614 +288750,151.23,91.8926 +288751,149.88,90.47275 +288752,148.56,89.09656 +288753,151.24,93.4214 +288754,149.87,91.924 +288755,148.54,90.47609 +288756,147.25,89.07237 +288757,149.86,93.4802 +288758,148.51,91.9549 +288759,147.21,90.47974 +288760,145.94,89.0492 +288761,148.48,93.5379 +288762,147.16,91.9855 +288763,145.87,90.48372 +288764,144.62,89.02706 +288765,147.1,93.5944 +288766,145.8,92.0156 +288767,144.54,90.48803 +288768,143.31,89.00598 +288769,145.72,93.6497 +288770,144.44,92.0453 +288771,143.21,90.49268 +288772,142,88.986 +288773,144.34,93.7037 +288774,143.09,92.0745 +288775,141.87,90.49767 +288776,140.69,88.9671 +288777,142.96,93.7564 +288778,141.73,92.1034 +288779,140.54,90.50301 +288780,139.38,88.9493 +288781,141.57,93.8079 +288782,140.37,92.1318 +288783,139.21,90.50872 +288784,138.08,88.9326 +288785,140.19,93.8581 +288786,139.01,92.1597 +288787,137.87,90.51478 +288788,136.77,88.9171 +288789,138.8,93.9069 +288790,137.65,92.1872 +288791,136.54,90.52122 +288792,135.46,88.9028 +288793,137.42,93.9544 +288794,136.29,92.2142 +288795,135.21,90.52802 +288796,134.16,88.8896 +288797,136.03,94.0006 +288798,134.93,92.2407 +288799,133.88,90.53521 +288800,132.86,88.8776 +288801,134.64,94.0454 +288802,133.57,92.2668 +288803,132.54,90.54278 +288804,131.55,88.8669 +288805,133.25,94.0888 +288806,132.21,92.2924 +288807,131.21,90.55074 +288808,130.25,88.8574 +288809,131.86,94.1308 +288810,130.85,92.3175 +288811,129.88,90.5591 +288812,128.95,88.8491 +288813,130.47,94.1714 +288814,129.49,92.3421 +288815,128.55,90.56785 +288816,127.64,88.8421 +288817,129.08,94.2105 +288818,128.13,92.3662 +288819,127.22,90.57701 +288820,126.34,88.8363 +288821,127.69,94.2482 +288822,126.77,92.3898 +288823,125.89,90.58657 +288824,125.04,88.8318 +288825,126.3,94.2845 +288826,125.41,92.4129 +288827,124.56,90.59654 +288828,123.74,88.8287 +288829,124.9,94.3193 +288830,124.04,92.4355 +288831,123.23,90.60693 +288832,122.44,88.8268 +288833,123.51,94.3526 +288834,122.68,92.4576 +288835,121.9,90.61773 +288836,121.15,88.8262 +288837,122.11,94.3844 +288838,121.32,92.4792 +288839,120.57,90.62896 +288840,119.85,88.827 +288841,120.72,94.4147 +288842,119.96,92.5003 +288843,119.24,90.6406 +288844,118.55,88.8291 +288845,119.32,94.4436 +288846,118.59,92.5208 +288847,117.91,90.65267 +288848,117.25,88.8325 +288849,117.92,94.4709 +288850,117.23,92.5409 +288851,116.58,90.66517 +288852,115.96,88.8373 +288853,116.53,94.4967 +288854,115.87,92.5604 +288855,115.25,90.6781 +288856,114.66,88.8434 +288857,115.13,94.521 +288858,114.5,92.5794 +288859,113.92,90.69146 +288860,113.36,88.8509 +288861,113.73,94.5438 +288862,113.14,92.5978 +288863,112.59,90.70526 +288864,112.07,88.8597 +288865,112.33,94.565 +288866,111.78,92.6158 +288867,111.26,90.71949 +288868,110.77,88.87 +288869,110.93,94.5847 +288870,110.41,92.6332 +288871,109.93,90.73416 +288872,109.48,88.8816 +288873,109.53,94.6029 +288874,109.05,92.65 +288875,108.6,90.74926 +288876,108.18,88.8945 +288877,108.13,94.6195 +288878,107.69,92.6664 +288879,107.27,90.7648 +288880,106.89,88.9089 +288881,106.73,94.6346 +288882,106.32,92.6822 +288883,105.94,90.78078 +288884,105.6,88.9246 +288885,105.33,94.6482 +288886,104.96,92.6975 +288887,104.61,90.79719 +288888,104.3,88.9417 +288889,103.93,94.6602 +288890,103.59,92.7122 +288891,103.29,90.81405 +288892,103.01,88.9603 +288893,102.53,94.6707 +288894,102.23,92.7264 +288895,101.96,90.83134 +288896,101.72,88.9801 +288897,101.13,94.6797 +288898,100.86,92.7401 +288899,100.63,90.84907 +288900,100.42,89.00142 +288901,99.729,94.6871 +288902,99.498,92.7532 +288903,99.299,90.86724 +288904,99.128,89.02408 +288905,98.327,94.693 +288906,98.133,92.7659 +288907,97.97,90.88584 +288908,97.835,89.04812 +288909,96.925,94.6975 +288910,96.768,92.778 +288911,96.641,90.90488 +288912,96.542,89.07353 +288913,95.524,94.7004 +288914,95.403,92.7895 +288915,95.312,90.92435 +288916,95.249,89.10032 +288917,94.122,94.7018 +288918,94.038,92.8006 +288919,93.983,90.94425 +288920,93.955,89.12848 +288921,92.72,94.7017 +288922,92.673,92.8111 +288923,92.654,90.96459 +288924,92.662,89.158 +288925,91.318,94.7001 +288926,91.308,92.8211 +288927,91.325,90.98534 +288928,91.369,89.18888 +288929,89.916,94.697 +288930,89.942,92.8306 +288931,89.996,91.0065 +288932,90.075,89.22111 +288933,88.514,94.6925 +288934,88.577,92.8395 +288935,88.667,91.0281 +288936,88.781,89.25469 +288937,87.112,94.6865 +288938,87.212,92.848 +288939,87.338,91.0502 +288940,87.487,89.28961 +288941,85.711,94.6791 +288942,85.847,92.8559 +288943,86.009,91.0726 +288944,86.193,89.32585 +288945,84.309,94.6702 +288946,84.482,92.8634 +288947,84.679,91.0954 +288948,84.899,89.36342 +288949,82.908,94.6599 +288950,83.117,92.8703 +288951,83.35,91.1187 +288952,83.605,89.40229 +288953,81.507,94.6482 +288954,81.752,92.8767 +288955,82.02,91.1424 +288956,82.31,89.44247 +288957,80.106,94.6351 +288958,80.387,92.8827 +288959,80.691,91.1664 +288960,81.015,89.48393 +288961,78.706,94.6207 +288962,79.022,92.8881 +288963,79.361,91.1909 +288964,79.719,89.52667 +288965,77.305,94.6048 +288966,77.657,92.8931 +288967,78.031,91.2158 +288968,78.424,89.57068 +288969,75.905,94.5877 +288970,76.293,92.8976 +288971,76.701,91.241 +288972,77.127,89.61593 +288973,74.506,94.5692 +288974,74.928,92.9016 +288975,75.37,91.2666 +288976,75.831,89.66243 +288977,73.107,94.5494 +288978,73.564,92.9052 +288979,74.04,91.2926 +288980,74.534,89.71014 +288981,71.708,94.5283 +288982,72.199,92.9083 +288983,72.709,91.319 +288984,73.236,89.75906 +288985,70.31,94.5059 +288986,70.835,92.9109 +288987,71.378,91.3457 +288988,71.938,89.80918 +288989,68.912,94.4823 +288990,69.471,92.9131 +288991,70.047,91.3728 +288992,70.64,89.86047 +288993,67.514,94.4574 +288994,68.107,92.9148 +288995,68.716,91.4003 +288996,69.341,89.912919 +288997,66.118,94.4314 +288998,66.743,92.9161 +288999,67.385,91.4281 +289000,68.041,89.966508 +289001,64.721,94.4041 +289002,65.379,92.917 +289003,66.053,91.4562 +289004,66.741,90.02122 +289005,63.326,94.3757 +289006,64.016,92.9174 +289007,64.721,91.4847 +289008,65.441,90.077035 +289009,61.931,94.3461 +289010,62.652,92.9175 +289011,63.389,91.5135 +289012,64.139,90.13393 +289013,60.536,94.3154 +289014,61.289,92.9171 +289015,62.056,91.5426 +289016,62.837,90.1919 +289017,59.142,94.2836 +289018,59.926,92.9163 +289019,60.724,91.5721 +289020,61.534,90.2509 +289021,57.749,94.2508 +289022,58.563,92.9151 +289023,59.391,91.6018 +289024,60.231,90.31093 +289025,56.357,94.2168 +289026,57.201,92.9135 +289027,58.058,91.6319 +289028,58.927,90.37196 +289029,54.965,94.1819 +289030,55.838,92.9116 +289031,56.724,91.6622 +289032,57.622,90.43397 +289033,53.574,94.1459 +289034,54.476,92.9092 +289035,55.391,91.6928 +289036,56.316,90.49693 +289037,52.184,94.109 +289038,53.114,92.9066 +289039,54.057,91.7237 +289040,55.01,90.56082 +289041,50.795,94.0712 +289042,51.753,92.9035 +289043,52.722,91.7548 +289044,53.702,90.62562 +289045,49.406,94.0324 +289046,50.391,92.9001 +289047,51.388,91.7863 +289048,52.394,90.6913 +289049,48.018,93.9927 +289050,49.03,92.8964 +289051,50.053,91.8179 +289052,51.085,90.75784 +289053,46.632,93.9522 +289054,47.669,92.8923 +289055,48.718,91.8498 +289056,49.775,90.82522 +289057,45.246,93.9108 +289058,46.309,92.888 +289059,47.382,91.8819 +289060,48.465,90.8934 +289061,43.86,93.8686 +289062,44.948,92.8833 +289063,46.046,91.9143 +289064,47.153,90.96236 +289065,42.476,93.8256 +289066,43.588,92.8783 +289067,44.71,91.9469 +289068,45.841,91.0321 +289069,41.093,93.7819 +289070,42.228,92.873 +289071,43.373,91.9796 +289072,44.527,91.1025 +289073,39.711,93.7375 +289074,40.869,92.8675 +289075,42.036,92.0126 +289076,43.212,91.1736 +289077,38.33,93.6923 +289078,39.51,92.8616 +289079,40.699,92.0457 +289080,41.897,91.2454 +289081,36.949,93.6465 +289082,38.151,92.8555 +289083,39.362,92.079 +289084,40.581,91.3179 +289085,35.57,93.6001 +289086,36.792,92.8492 +289087,38.024,92.1125 +289088,39.263,91.391 +289089,34.192,93.5531 +289090,35.434,92.8426 +289091,36.685,92.1461 +289092,37.944,91.4646 +289093,32.814,93.5055 +289094,34.076,92.8358 +289095,35.346,92.1799 +289096,36.625,91.5388 +289097,31.438,93.4574 +289098,32.718,92.8287 +289099,34.007,92.2138 +289100,35.304,91.6135 +289101,30.063,93.4087 +289102,31.361,92.8215 +289103,32.668,92.2479 +289104,33.983,91.6887 +289105,28.689,93.3596 +289106,30.004,92.814 +289107,31.328,92.282 +289108,32.66,91.7644 +289109,27.316,93.31 +289110,28.647,92.8064 +289111,29.988,92.3162 +289112,31.336,91.8405 +289113,25.944,93.2601 +289114,27.291,92.7985 +289115,28.647,92.3506 +289116,30.011,91.917 +289117,24.573,93.2097 +289118,25.935,92.7905 +289119,27.306,92.385 +289120,28.685,91.9938 +289121,23.204,93.159 +289122,24.579,92.7824 +289123,25.964,92.4195 +289124,27.357,92.071 +289125,21.835,93.108 +289126,23.224,92.7741 +289127,24.623,92.454 +289128,26.029,92.1485 +289129,20.468,93.0566 +289130,21.869,92.7656 +289131,23.28,92.4886 +289132,24.699,92.2263 +289133,19.102,93.0051 +289134,20.515,92.7571 +289135,21.938,92.5232 +289136,23.369,92.3043 +289137,17.737,92.9533 +289138,19.161,92.7484 +289139,20.594,92.5579 +289140,22.037,92.3825 +289141,16.373,92.9013 +289142,17.807,92.7396 +289143,19.251,92.5925 +289144,20.704,92.4609 +289145,15.01,92.8492 +289146,16.453,92.7307 +289147,17.907,92.6272 +289148,19.369,92.5394 +289149,13.649,92.7969 +289150,15.1,92.7217 +289151,16.562,92.6618 +289152,18.034,92.618 +289153,12.288,92.7446 +289154,13.748,92.7127 +289155,15.218,92.6965 +289156,16.697,92.6967 +289157,10.929,92.6922 +289158,12.395,92.7036 +289159,13.872,92.7311 +289160,15.359,92.7755 +289161,9.5712,92.6397 +289162,11.043,92.6944 +289163,12.527,92.7657 +289164,14.02,92.8542 +289165,8.2144,92.5873 +289166,9.6917,92.6852 +289167,11.181,92.8002 +289168,12.68,92.9329 +289169,6.8589,92.5349 +289170,8.3406,92.676 +289171,9.834,92.8346 +289172,11.338,93.0115 +289173,5.5045,92.4826 +289174,6.9898,92.6668 +289175,8.4871,92.869 +289176,9.9954,93.0901 +289177,4.1514,92.4304 +289178,5.6393,92.6575 +289179,7.1396,92.9033 +289180,8.6513,93.1684 +289181,2.7994,92.3783 +289182,4.2893,92.6483 +289183,5.7918,92.9374 +289184,7.306,93.2467 +289185,1.4487,92.3264 +289186,2.9396,92.639 +289187,4.4435,92.9715 +289188,5.9595,93.3247 +289189,0.099113,92.2747 +289190,1.5903,92.6298 +289191,3.0948,93.0055 +289192,4.6117,93.4025 +289193,358.75,92.2232 +289194,0.24143,92.6207 +289195,1.7456,93.0393 +289196,3.2627,93.48 +289197,357.4,92.1719 +289198,358.89,92.6115 +289199,0.39602,93.0729 +289200,1.9124,93.5572 +289201,356.06,92.121 +289202,357.54,92.6025 +289203,359.05,93.1065 +289204,0.56096,93.6341 +289205,354.71,92.0704 +289206,356.2,92.5935 +289207,357.7,93.1398 +289208,359.21,93.7106 +289209,353.37,92.0201 +289210,354.85,92.5846 +289211,356.34,93.173 +289212,357.85,93.7866 +289213,352.03,91.9703 +289214,353.5,92.5757 +289215,354.99,93.206 +289216,356.5,93.8623 +289217,350.69,91.9208 +289218,352.16,92.567 +289219,353.64,93.2388 +289220,355.14,93.9375 +289221,349.35,91.8718 +289222,350.81,92.5584 +289223,352.29,93.2713 +289224,353.78,94.0121 +289225,348.01,91.8233 +289226,349.46,92.5499 +289227,350.94,93.3037 +289228,352.43,94.0862 +289229,346.67,91.7752 +289230,348.12,92.5415 +289231,349.58,93.3358 +289232,351.07,94.1598 +289233,345.33,91.7277 +289234,346.77,92.5333 +289235,348.23,93.3677 +289236,349.7,94.2327 +289237,344,91.6808 +289238,345.43,92.5252 +289239,346.88,93.3993 +289240,348.34,94.305 +289241,342.66,91.6345 +289242,344.08,92.5173 +289243,345.52,93.4307 +289244,346.98,94.3766 +289245,341.33,91.5887 +289246,342.74,92.5096 +289247,344.17,93.4618 +289248,345.61,94.4475 +289249,340,91.5437 +289250,341.4,92.502 +289251,342.81,93.4926 +289252,344.25,94.5177 +289253,338.67,91.4993 +289254,340.05,92.4946 +289255,341.46,93.5231 +289256,342.88,94.587 +289257,337.34,91.4556 +289258,338.71,92.4875 +289259,340.1,93.5533 +289260,341.51,94.6556 +289261,336.01,91.4126 +289262,337.37,92.4805 +289263,338.74,93.5832 +289264,340.14,94.7234 +289265,334.68,91.3704 +289266,336.02,92.4738 +289267,337.39,93.6127 +289268,338.77,94.7903 +289269,333.35,91.329 +289270,334.68,92.4672 +289271,336.03,93.642 +289272,337.4,94.8563 +289273,332.03,91.2884 +289274,333.34,92.461 +289275,334.67,93.6708 +289276,336.03,94.9214 +289277,330.7,91.2486 +289278,332,92.4549 +289279,333.32,93.6994 +289280,334.65,94.9855 +289281,329.38,91.2097 +289282,330.66,92.4491 +289283,331.96,93.7276 +289284,333.28,95.0486 +289285,328.06,91.1717 +289286,329.32,92.4436 +289287,330.6,93.7554 +289288,331.9,95.1108 +289289,326.74,91.1346 +289290,327.98,92.4384 +289291,329.24,93.7828 +289292,330.52,95.1719 +289293,325.42,91.0984 +289294,326.64,92.4334 +289295,327.88,93.8098 +289296,329.15,95.2319 +289297,324.1,91.0632 +289298,325.3,92.4287 +289299,326.52,93.8364 +289300,327.77,95.2908 +289301,322.78,91.029 +289302,323.96,92.4243 +289303,325.16,93.8627 +289304,326.39,95.3486 +289305,321.46,90.99572 +289306,322.62,92.4202 +289307,323.8,93.8885 +289308,325,95.4053 +289309,320.14,90.96351 +289310,321.28,92.4164 +289311,322.44,93.9139 +289312,323.62,95.4608 +289313,318.83,90.93233 +289314,319.94,92.413 +289315,321.08,93.9388 +289316,322.24,95.5151 +289317,317.51,90.90222 +289318,318.6,92.4098 +289319,319.72,93.9634 +289320,320.85,95.5682 +289321,316.2,90.8732 +289322,317.27,92.407 +289323,318.35,93.9874 +289324,319.47,95.62 +289325,314.88,90.84528 +289326,315.93,92.4045 +289327,316.99,94.0111 +289328,318.08,95.6706 +289329,313.57,90.81848 +289330,314.59,92.4024 +289331,315.63,94.0342 +289332,316.7,95.7199 +289333,312.26,90.79283 +289334,313.25,92.4006 +289335,314.27,94.0569 +289336,315.31,95.7678 +289337,310.95,90.76834 +289338,311.92,92.3992 +289339,312.9,94.0792 +289340,313.92,95.8145 +289341,309.64,90.74502 +289342,310.58,92.3981 +289343,311.54,94.1009 +289344,312.53,95.8598 +289345,308.33,90.7229 +289346,309.24,92.3974 +289347,310.18,94.1222 +289348,311.14,95.9037 +289349,307.02,90.70199 +289350,307.91,92.3971 +289351,308.81,94.143 +289352,309.75,95.9462 +289353,305.71,90.6823 +289354,306.57,92.3972 +289355,307.45,94.1632 +289356,308.36,95.9873 +289357,304.4,90.66386 +289358,305.23,92.3976 +289359,306.09,94.183 +289360,306.96,96.027 +289361,303.1,90.64667 +289362,303.9,92.3984 +289363,304.72,94.2023 +289364,305.57,96.0652 +289365,301.79,90.63075 +289366,302.56,92.3997 +289367,303.36,94.221 +289368,304.18,96.102 +289369,300.49,90.61611 +289370,301.23,92.4013 +289371,301.99,94.2393 +289372,302.78,96.1373 +289373,299.18,90.60277 +289374,299.89,92.4033 +289375,300.63,94.257 +289376,301.39,96.1711 +289377,297.88,90.59073 +289378,298.56,92.4057 +289379,299.26,94.2741 +289380,299.99,96.2035 +289381,296.57,90.58001 +289382,297.22,92.4086 +289383,297.89,94.2908 +289384,298.59,96.2343 +289385,295.27,90.57062 +289386,295.89,92.4118 +289387,296.53,94.3069 +289388,297.2,96.2635 +289389,293.96,90.56256 +289390,294.55,92.4155 +289391,295.16,94.3225 +289392,295.8,96.2913 +289393,292.66,90.55585 +289394,293.22,92.4196 +289395,293.8,94.3375 +289396,294.4,96.3175 +289397,291.36,90.5505 +289398,291.88,92.4241 +289399,292.43,94.352 +289400,293,96.3421 +289401,290.06,90.54651 +289402,290.55,92.429 +289403,291.06,94.366 +289404,291.6,96.3652 +289405,288.75,90.54389 +289406,289.22,92.4344 +289407,289.7,94.3794 +289408,290.2,96.3867 +289409,287.45,90.54264 +289410,287.88,92.4402 +289411,288.33,94.3922 +289412,288.8,96.4066 +289413,286.15,90.54278 +289414,286.55,92.4464 +289415,286.96,94.4045 +289416,287.4,96.4249 +289417,284.85,90.54431 +289418,285.21,92.4531 +289419,285.6,94.4163 +289420,286,96.4416 +289421,283.55,90.54722 +289422,283.88,92.4602 +289423,284.23,94.4274 +289424,284.6,96.4568 +289425,282.25,90.55154 +289426,282.55,92.4677 +289427,282.86,94.438 +289428,283.2,96.4703 +289429,280.95,90.55725 +289430,281.21,92.4757 +289431,281.49,94.4481 +289432,281.8,96.4823 +289433,279.65,90.56436 +289434,279.88,92.4841 +289435,280.13,94.4576 +289436,280.39,96.4926 +289437,278.35,90.57288 +289438,278.55,92.4929 +289439,278.76,94.4665 +289440,278.99,96.5013 +289441,277.05,90.58279 +289442,277.21,92.5022 +289443,277.39,94.4749 +289444,277.59,96.5084 +289445,275.75,90.59412 +289446,275.88,92.5119 +289447,276.02,94.4827 +289448,276.19,96.5139 +289449,274.45,90.60684 +289450,274.54,92.5221 +289451,274.66,94.49 +289452,274.79,96.5179 +289453,273.15,90.62097 +289454,273.21,92.5327 +289455,273.29,94.4967 +289456,273.38,96.5202 +289457,271.85,90.63649 +289458,271.88,92.5437 +289459,271.92,94.5028 +289460,271.98,96.5209 +289461,270.55,90.65342 +289462,270.54,92.5551 +289463,270.55,94.5084 +289464,270.58,96.52 +289465,269.25,90.67174 +289466,269.21,92.567 +289467,269.18,94.5134 +289468,269.17,96.5176 +289469,267.95,90.69145 +289470,267.88,92.5794 +289471,267.82,94.5179 +289472,267.77,96.5135 +289473,266.65,90.71254 +289474,266.54,92.5921 +289475,266.45,94.5218 +289476,266.37,96.5079 +289477,265.35,90.73501 +289478,265.21,92.6053 +289479,265.08,94.5251 +289480,264.97,96.5007 +289481,264.05,90.75886 +289482,263.88,92.6189 +289483,263.71,94.528 +289484,263.56,96.492 +289485,262.75,90.78407 +289486,262.54,92.633 +289487,262.34,94.5302 +289488,262.16,96.4817 +289489,261.45,90.81065 +289490,261.21,92.6474 +289491,260.98,94.5319 +289492,260.76,96.4699 +289493,260.15,90.83857 +289494,259.87,92.6623 +289495,259.61,94.5331 +289496,259.36,96.4565 +289497,258.85,90.86784 +289498,258.54,92.6776 +289499,258.24,94.5338 +289500,257.96,96.4417 +289501,257.55,90.89844 +289502,257.21,92.6933 +289503,256.87,94.5339 +289504,256.56,96.4253 +289505,256.25,90.93037 +289506,255.87,92.7094 +289507,255.51,94.5335 +289508,255.15,96.4075 +289509,254.94,90.9636 +289510,254.54,92.7259 +289511,254.14,94.5325 +289512,253.75,96.3881 +289513,253.64,90.99814 +289514,253.2,92.7428 +289515,252.77,94.5311 +289516,252.35,96.3674 +289517,252.34,91.034 +289518,251.87,92.7601 +289519,251.4,94.5291 +289520,250.95,96.3451 +289521,251.04,91.0711 +289522,250.53,92.7778 +289523,250.04,94.5266 +289524,249.55,96.3215 +289525,249.73,91.1094 +289526,249.2,92.7959 +289527,248.67,94.5236 +289528,248.15,96.2964 +289529,248.43,91.149 +289530,247.86,92.8144 +289531,247.3,94.5201 +289532,246.76,96.2699 +289533,247.12,91.1899 +289534,246.53,92.8332 +289535,245.94,94.5161 +289536,245.36,96.2421 +289537,245.82,91.2319 +289538,245.19,92.8524 +289539,244.57,94.5116 +289540,243.96,96.2129 +289541,244.51,91.2752 +289542,243.85,92.872 +289543,243.2,94.5067 +289544,242.56,96.1824 +289545,243.21,91.3196 +289546,242.52,92.8919 +289547,241.84,94.5013 +289548,241.17,96.1505 +289549,241.9,91.3652 +289550,241.18,92.9122 +289551,240.47,94.4954 +289552,239.77,96.1174 +289553,240.59,91.412 +289554,239.85,92.9328 +289555,239.11,94.489 +289556,238.37,96.083 +289557,239.28,91.4599 +289558,238.51,92.9538 +289559,237.74,94.4822 +289560,236.98,96.0473 +289561,237.97,91.5089 +289562,237.17,92.9751 +289563,236.38,94.4749 +289564,235.59,96.0105 +289565,236.66,91.559 +289566,235.83,92.9967 +289567,235.01,94.4672 +289568,234.19,95.9724 +289569,235.35,91.6102 +289570,234.5,93.0186 +289571,233.65,94.459 +289572,232.8,95.9331 +289573,234.04,91.6624 +289574,233.16,93.0409 +289575,232.28,94.4505 +289576,231.41,95.8927 +289577,232.73,91.7156 +289578,231.82,93.0634 +289579,230.92,94.4415 +289580,230.02,95.8512 +289581,231.42,91.7699 +289582,230.48,93.0862 +289583,229.55,94.4321 +289584,228.63,95.8085 +289585,230.11,91.8251 +289586,229.14,93.1094 +289587,228.19,94.4223 +289588,227.24,95.7648 +289589,228.79,91.8813 +289590,227.81,93.1328 +289591,226.82,94.4121 +289592,225.85,95.7201 +289593,227.48,91.9384 +289594,226.47,93.1565 +289595,225.46,94.4015 +289596,224.46,95.6743 +289597,226.16,91.9965 +289598,225.13,93.1804 +289599,224.1,94.3905 +289600,223.07,95.6275 +289601,224.84,92.0554 +289602,223.79,93.2046 +289603,222.73,94.3792 +289604,221.68,95.5797 +289605,223.53,92.1152 +289606,222.45,93.229 +289607,221.37,94.3675 +289608,220.3,95.5311 +289609,222.21,92.1758 +289610,221.11,93.2537 +289611,220.01,94.3555 +289612,218.91,95.4815 +289613,220.89,92.2373 +289614,219.77,93.2786 +289615,218.65,94.3431 +289616,217.53,95.431 +289617,219.57,92.2995 +289618,218.43,93.3037 +289619,217.29,94.3304 +289620,216.15,95.3797 +289621,218.25,92.3625 +289622,217.08,93.329 +289623,215.92,94.3174 +289624,214.77,95.3275 +289625,216.92,92.4262 +289626,215.74,93.3545 +289627,214.56,94.304 +289628,213.39,95.2746 +289629,215.6,92.4906 +289630,214.4,93.3802 +289631,213.2,94.2904 +289632,212.01,95.2209 +289633,214.28,92.5557 +289634,213.06,93.4061 +289635,211.84,94.2765 +289636,210.63,95.1665 +289637,212.95,92.6214 +289638,211.72,93.4322 +289639,210.48,94.2623 +289640,209.25,95.1114 +289641,211.63,92.6878 +289642,210.37,93.4584 +289643,209.12,94.2478 +289644,207.87,95.0556 +289645,210.3,92.7547 +289646,209.03,93.4848 +289647,207.76,94.233 +289648,206.5,94.9992 +289649,208.97,92.8222 +289650,207.68,93.5113 +289651,206.4,94.218 +289652,205.12,94.9422 +289653,207.64,92.8902 +289654,206.34,93.5379 +289655,205.04,94.2028 +289656,203.75,94.8847 +289657,206.31,92.9588 +289658,205,93.5646 +289659,203.69,94.1874 +289660,202.38,94.8266 +289661,204.98,93.0278 +289662,203.65,93.5915 +289663,202.33,94.1717 +289664,201.01,94.768 +289665,203.64,93.0972 +289666,202.31,93.6184 +289667,200.97,94.1558 +289668,199.64,94.7089 +289669,202.31,93.167 +289670,200.96,93.6455 +289671,199.61,94.1397 +289672,198.27,94.6494 +289673,200.98,93.2372 +289674,199.61,93.6726 +289675,198.25,94.1235 +289676,196.9,94.5895 +289677,199.64,93.3077 +289678,198.27,93.6997 +289679,196.9,94.107 +289680,195.53,94.5292 +289681,198.3,93.3785 +289682,196.92,93.727 +289683,195.54,94.0904 +289684,194.17,94.4686 +289685,196.96,93.4496 +289686,195.57,93.7542 +289687,194.19,94.0737 +289688,192.8,94.4077 +289689,195.62,93.521 +289690,194.23,93.7815 +289691,192.83,94.0568 +289692,191.44,94.3465 +289693,194.28,93.5925 +289694,192.88,93.8088 +289695,191.47,94.0398 +289696,190.08,94.2851 +289697,192.94,93.6643 +289698,191.53,93.8361 +289699,190.12,94.0226 +289700,188.71,94.2234 +289701,191.6,93.7361 +289702,190.18,93.8635 +289703,188.77,94.0054 +289704,187.35,94.1617 +289705,190.25,93.8081 +289706,188.83,93.8908 +289707,187.41,93.9881 +289708,186,94.0997 +289709,188.91,93.8802 +289710,187.48,93.918 +289711,186.06,93.9706 +289712,184.64,94.0377 +289713,187.56,93.9523 +289714,186.13,93.9453 +289715,184.7,93.9531 +289716,183.28,93.9756 +289717,186.21,94.0244 +289718,184.78,93.9725 +289719,183.35,93.9356 +289720,181.93,93.9135 +289721,184.87,94.0964 +289722,183.43,93.9996 +289723,182,93.918 +289724,180.57,93.8513 +289725,183.51,94.1684 +289726,182.08,94.0266 +289727,180.65,93.9003 +289728,179.22,93.7892 +289729,182.16,94.2403 +289730,180.73,94.0536 +289731,179.3,93.8826 +289732,177.87,93.7272 +289733,180.81,94.3121 +289734,179.38,94.0805 +289735,177.94,93.8649 +289736,176.52,93.6653 +289737,179.46,94.3837 +289738,178.02,94.1072 +289739,176.59,93.8472 +289740,175.17,93.6035 +289741,178.1,94.4551 +289742,176.67,94.1339 +289743,175.24,93.8295 +289744,173.82,93.5418 +289745,176.75,94.5263 +289746,175.32,94.1604 +289747,173.89,93.8119 +289748,172.47,93.4804 +289749,175.39,94.5972 +289750,173.96,94.1868 +289751,172.54,93.7942 +289752,171.13,93.4192 +289753,174.03,94.6678 +289754,172.61,94.213 +289755,171.19,93.7766 +289756,169.78,93.3582 +289757,172.67,94.7381 +289758,171.25,94.2391 +289759,169.84,93.759 +289760,168.44,93.2976 +289761,171.31,94.808 +289762,169.9,94.265 +289763,168.49,93.7415 +289764,167.1,93.2373 +289765,169.95,94.8775 +289766,168.54,94.2907 +289767,167.15,93.7241 +289768,165.75,93.1773 +289769,168.58,94.9465 +289770,167.19,94.3162 +289771,165.8,93.7067 +289772,164.41,93.1177 +289773,167.22,95.0151 +289774,165.83,94.3415 +289775,164.45,93.6895 +289776,163.08,93.0586 +289777,165.85,95.0832 +289778,164.48,94.3666 +289779,163.1,93.6723 +289780,161.74,92.9999 +289781,164.49,95.1507 +289782,163.12,94.3914 +289783,161.76,93.6553 +289784,160.4,92.9416 +289785,163.12,95.2176 +289786,161.76,94.4161 +289787,160.41,93.6384 +289788,159.07,92.8839 +289789,161.75,95.284 +289790,160.4,94.4404 +289791,159.06,93.6216 +289792,157.73,92.8268 +289793,160.38,95.3497 +289794,159.05,94.4645 +289795,157.72,93.605 +289796,156.4,92.7702 +289797,159.01,95.4147 +289798,157.69,94.4884 +289799,156.37,93.5885 +289800,155.07,92.7142 +289801,157.64,95.4791 +289802,156.33,94.5119 +289803,155.03,93.5722 +289804,153.73,92.6588 +289805,156.26,95.5427 +289806,154.97,94.5352 +289807,153.68,93.556 +289808,152.4,92.6041 +289809,154.89,95.6055 +289810,153.61,94.5581 +289811,152.34,93.5401 +289812,151.07,92.5501 +289813,153.51,95.6675 +289814,152.25,94.5807 +289815,151,93.5243 +289816,149.75,92.4968 +289817,152.14,95.7287 +289818,150.89,94.603 +289819,149.65,93.5087 +289820,148.42,92.4443 +289821,150.76,95.789 +289822,149.53,94.625 +289823,148.31,93.4934 +289824,147.09,92.3925 +289825,149.38,95.8485 +289826,148.17,94.6467 +289827,146.97,93.4783 +289828,145.77,92.3415 +289829,148,95.907 +289830,146.81,94.6679 +289831,145.62,93.4634 +289832,144.44,92.2913 +289833,146.62,95.9645 +289834,145.45,94.6889 +289835,144.28,93.4487 +289836,143.12,92.242 +289837,145.24,96.0211 +289838,144.09,94.7094 +289839,142.94,93.4343 +289840,141.8,92.1936 +289841,143.86,96.0767 +289842,142.72,94.7296 +289843,141.6,93.4202 +289844,140.48,92.146 +289845,142.47,96.1312 +289846,141.36,94.7494 +289847,140.26,93.4063 +289848,139.16,92.0994 +289849,141.09,96.1846 +289850,140,94.7687 +289851,138.91,93.3927 +289852,137.84,92.0537 +289853,139.7,96.237 +289854,138.63,94.7877 +289855,137.57,93.3794 +289856,136.52,92.009 +289857,138.32,96.2882 +289858,137.27,94.8063 +289859,136.23,93.3664 +289860,135.2,91.9653 +289861,136.93,96.3383 +289862,135.91,94.8244 +289863,134.89,93.3537 +289864,133.88,91.9226 +289865,135.54,96.3872 +289866,134.54,94.8421 +289867,133.55,93.3412 +289868,132.57,91.881 +289869,134.15,96.4349 +289870,133.18,94.8594 +289871,132.21,93.3291 +289872,131.25,91.8404 +289873,132.76,96.4814 +289874,131.81,94.8762 +289875,130.87,93.3173 +289876,129.94,91.8008 +289877,131.37,96.5266 +289878,130.45,94.8925 +289879,129.53,93.3059 +289880,128.63,91.7624 +289881,129.98,96.5705 +289882,129.08,94.9084 +289883,128.19,93.2948 +289884,127.31,91.7251 +289885,128.59,96.6132 +289886,127.72,94.9238 +289887,126.86,93.284 +289888,126,91.689 +289889,127.2,96.6545 +289890,126.35,94.9388 +289891,125.52,93.2736 +289892,124.69,91.654 +289893,125.8,96.6945 +289894,124.99,94.9532 +289895,124.18,93.2635 +289896,123.38,91.6201 +289897,124.41,96.7332 +289898,123.62,94.9672 +289899,122.84,93.2538 +289900,122.07,91.5875 +289901,123.02,96.7704 +289902,122.26,94.9807 +289903,121.5,93.2444 +289904,120.76,91.5561 +289905,121.62,96.8063 +289906,120.89,94.9937 +289907,120.17,93.2355 +289908,119.45,91.5259 +289909,120.22,96.8407 +289910,119.52,95.0061 +289911,118.83,93.2269 +289912,118.14,91.4969 +289913,118.83,96.8737 +289914,118.16,95.0181 +289915,117.49,93.2186 +289916,116.83,91.4692 +289917,117.43,96.9052 +289918,116.79,95.0295 +289919,116.15,93.2108 +289920,115.52,91.4427 +289921,116.03,96.9353 +289922,115.42,95.0404 +289923,114.82,93.2034 +289924,114.22,91.4176 +289925,114.63,96.9639 +289926,114.05,95.0508 +289927,113.48,93.1963 +289928,112.91,91.3937 +289929,113.24,96.9909 +289930,112.69,95.0607 +289931,112.14,93.1897 +289932,111.61,91.3712 +289933,111.84,97.0165 +289934,111.32,95.07 +289935,110.81,93.1835 +289936,110.3,91.3499 +289937,110.44,97.0405 +289938,109.95,95.0788 +289939,109.47,93.1777 +289940,108.99,91.33 +289941,109.04,97.063 +289942,108.58,95.087 +289943,108.13,93.1722 +289944,107.69,91.3114 +289945,107.64,97.0839 +289946,107.21,95.0947 +289947,106.8,93.1673 +289948,106.39,91.2942 +289949,106.24,97.1033 +289950,105.85,95.1018 +289951,105.46,93.1627 +289952,105.08,91.2784 +289953,104.83,97.121 +289954,104.48,95.1083 +289955,104.13,93.1585 +289956,103.78,91.2639 +289957,103.43,97.1372 +289958,103.11,95.1143 +289959,102.79,93.1548 +289960,102.47,91.2508 +289961,102.03,97.1518 +289962,101.74,95.1198 +289963,101.45,93.1515 +289964,101.17,91.239 +289965,100.63,97.1648 +289966,100.37,95.1247 +289967,100.12,93.1486 +289968,99.869,91.2287 +289969,99.227,97.1762 +289970,99.003,95.129 +289971,98.783,93.1462 +289972,98.566,91.2197 +289973,97.824,97.186 +289974,97.635,95.1327 +289975,97.448,93.1442 +289976,97.263,91.2121 +289977,96.422,97.1941 +289978,96.266,95.1359 +289979,96.112,93.1426 +289980,95.961,91.206 +289981,95.019,97.2006 +289982,94.897,95.1385 +289983,94.777,93.1415 +289984,94.659,91.2012 +289985,93.617,97.2055 +289986,93.528,95.1406 +289987,93.442,93.1408 +289988,93.357,91.1979 +289989,92.214,97.2088 +289990,92.159,95.142 +289991,92.106,93.1405 +289992,92.054,91.1959 +289993,90.811,97.2104 +289994,90.79,95.1429 +289995,90.771,93.1407 +289996,90.752,91.1954 +289997,89.408,97.2104 +289998,89.421,95.1432 +289999,89.435,93.1413 +290000,89.45,91.1963 +290001,88.005,97.2088 +290002,88.052,95.143 +290003,88.1,93.1423 +290004,88.148,91.1986 +290005,86.603,97.2055 +290006,86.684,95.1421 +290007,86.765,93.1438 +290008,86.846,91.2023 +290009,85.2,97.2006 +290010,85.315,95.1408 +290011,85.429,93.1457 +290012,85.544,91.2074 +290013,83.797,97.1941 +290014,83.946,95.1388 +290015,84.094,93.1481 +290016,84.242,91.2139 +290017,82.395,97.1859 +290018,82.577,95.1362 +290019,82.758,93.1509 +290020,82.939,91.2218 +290021,80.992,97.1761 +290022,81.208,95.1331 +290023,81.423,93.1541 +290024,81.637,91.2311 +290025,79.59,97.1648 +290026,79.84,95.1295 +290027,80.087,93.1578 +290028,80.334,91.2418 +290029,78.188,97.1518 +290030,78.471,95.1252 +290031,78.752,93.1619 +290032,79.031,91.2539 +290033,76.787,97.1372 +290034,77.102,95.1204 +290035,77.416,93.1664 +290036,77.728,91.2674 +290037,75.385,97.121 +290038,75.734,95.1151 +290039,76.08,93.1713 +290040,76.424,91.2823 +290041,73.984,97.1033 +290042,74.365,95.1091 +290043,74.744,93.1767 +290044,75.121,91.2985 +290045,72.583,97.084 +290046,72.997,95.1027 +290047,73.408,93.1825 +290048,73.817,91.3161 +290049,71.183,97.0631 +290050,71.629,95.0956 +290051,72.072,93.1887 +290052,72.512,91.3351 +290053,69.783,97.0406 +290054,70.261,95.0881 +290055,70.736,93.1953 +290056,71.208,91.3554 +290057,68.383,97.0167 +290058,68.893,95.08 +290059,69.399,93.2023 +290060,69.903,91.377 +290061,66.984,96.9912 +290062,67.525,95.0713 +290063,68.063,93.2098 +290064,68.597,91.4 +290065,65.585,96.9642 +290066,66.158,95.0621 +290067,66.726,93.2176 +290068,67.291,91.4242 +290069,64.187,96.9357 +290070,64.79,95.0524 +290071,65.389,93.2259 +290072,65.985,91.4498 +290073,62.789,96.9057 +290074,63.423,95.0421 +290075,64.052,93.2345 +290076,64.678,91.4767 +290077,61.392,96.8742 +290078,62.056,95.0314 +290079,62.715,93.2435 +290080,63.37,91.5048 +290081,59.995,96.8413 +290082,60.689,95.0201 +290083,61.378,93.2529 +290084,62.062,91.5342 +290085,58.599,96.807 +290086,59.322,95.0083 +290087,60.04,93.2627 +290088,60.754,91.5649 +290089,57.203,96.7713 +290090,57.956,94.996 +290091,58.703,93.2729 +290092,59.445,91.5967 +290093,55.809,96.7342 +290094,56.589,94.9832 +290095,57.365,93.2834 +290096,58.135,91.6298 +290097,54.414,96.6957 +290098,55.223,94.9699 +290099,56.027,93.2943 +290100,56.825,91.6641 +290101,53.021,96.6559 +290102,53.858,94.9561 +290103,54.688,93.3056 +290104,55.514,91.6996 +290105,51.628,96.6147 +290106,52.492,94.9418 +290107,53.35,93.3172 +290108,54.202,91.7363 +290109,50.236,96.5722 +290110,51.127,94.9271 +290111,52.011,93.3291 +290112,52.89,91.7741 +290113,48.845,96.5285 +290114,49.761,94.9119 +290115,50.672,93.3414 +290116,51.577,91.813 +290117,47.454,96.4835 +290118,48.397,94.8962 +290119,49.333,93.354 +290120,50.263,91.853 +290121,46.064,96.4372 +290122,47.032,94.8801 +290123,47.993,93.367 +290124,48.949,91.8942 +290125,44.675,96.3897 +290126,45.668,94.8636 +290127,46.653,93.3802 +290128,47.633,91.9364 +290129,43.287,96.3411 +290130,44.303,94.8466 +290131,45.313,93.3938 +290132,46.317,91.9796 +290133,41.9,96.2913 +290134,42.94,94.8292 +290135,43.973,93.4077 +290136,45,92.0239 +290137,40.514,96.2403 +290138,41.576,94.8113 +290139,42.632,93.4219 +290140,43.682,92.0692 +290141,39.128,96.1883 +290142,40.213,94.7931 +290143,41.291,93.4363 +290144,42.364,92.1154 +290145,37.744,96.1351 +290146,38.85,94.7744 +290147,39.95,93.4511 +290148,41.044,92.1627 +290149,36.36,96.081 +290150,37.488,94.7554 +290151,38.609,93.4661 +290152,39.724,92.2108 +290153,34.977,96.0257 +290154,36.125,94.7359 +290155,37.267,93.4814 +290156,38.402,92.2599 +290157,33.596,95.9695 +290158,34.763,94.7161 +290159,35.925,93.4969 +290160,37.08,92.3099 +290161,32.215,95.9124 +290162,33.402,94.696 +290163,34.582,93.5127 +290164,35.757,92.3607 +290165,30.835,95.8543 +290166,32.04,94.6754 +290167,33.24,93.5287 +290168,34.433,92.4123 +290169,29.456,95.7952 +290170,30.679,94.6546 +290171,31.897,93.5449 +290172,33.108,92.4648 +290173,28.078,95.7353 +290174,29.319,94.6333 +290175,30.553,93.5613 +290176,31.782,92.5181 +290177,26.702,95.6746 +290178,27.959,94.6118 +290179,29.209,93.578 +290180,30.454,92.5721 +290181,25.326,95.613 +290182,26.599,94.5899 +290183,27.865,93.5949 +290184,29.126,92.6268 +290185,23.952,95.5507 +290186,25.239,94.5677 +290187,26.521,93.6119 +290188,27.797,92.6823 +290189,22.578,95.4876 +290190,23.88,94.5453 +290191,25.176,93.6291 +290192,26.467,92.7384 +290193,21.206,95.4238 +290194,22.521,94.5225 +290195,23.831,93.6465 +290196,25.136,92.7952 +290197,19.834,95.3593 +290198,21.163,94.4995 +290199,22.486,93.6641 +290200,23.803,92.8525 +290201,18.464,95.2941 +290202,19.805,94.4762 +290203,21.14,93.6818 +290204,22.47,92.9105 +290205,17.095,95.2284 +290206,18.447,94.4526 +290207,19.794,93.6997 +290208,21.135,92.969 +290209,15.727,95.162 +290210,17.089,94.4288 +290211,18.447,93.7176 +290212,19.8,93.0281 +290213,14.36,95.0951 +290214,15.733,94.4048 +290215,17.1,93.7357 +290216,18.463,93.0877 +290217,12.995,95.0276 +290218,14.376,94.3805 +290219,15.753,93.7539 +290220,17.125,93.1477 +290221,11.63,94.9597 +290222,13.02,94.356 +290223,14.405,93.7722 +290224,15.786,93.2081 +290225,10.267,94.8913 +290226,11.664,94.3313 +290227,13.057,93.7906 +290228,14.446,93.269 +290229,8.9044,94.8225 +290230,10.309,94.3065 +290231,11.709,93.8091 +290232,13.105,93.3302 +290233,7.5433,94.7533 +290234,8.9536,94.2814 +290235,10.36,93.8276 +290236,11.762,93.3918 +290237,6.1835,94.6838 +290238,7.599,94.2562 +290239,9.0112,93.8462 +290240,10.419,93.4537 +290241,4.8248,94.6139 +290242,6.2448,94.2308 +290243,7.6616,93.8648 +290244,9.0739,93.5159 +290245,3.4672,94.5438 +290246,4.891,94.2053 +290247,6.3117,93.8835 +290248,7.7281,93.5783 +290249,2.1109,94.4734 +290250,3.5376,94.1796 +290251,4.9614,93.9022 +290252,6.381,93.6409 +290253,0.75576,94.4028 +290254,2.1846,94.1539 +290255,3.6108,93.9209 +290256,5.0328,93.7037 +290257,359.4,94.332 +290258,0.832,94.128 +290259,2.2597,93.9396 +290260,3.6834,93.7667 +290261,358.05,94.261 +290262,359.48,94.102 +290263,0.90826,93.9583 +290264,2.3328,93.8298 +290265,356.7,94.19 +290266,358.13,94.0759 +290267,359.56,93.9769 +290268,0.98106,93.8929 +290269,355.35,94.1189 +290270,356.78,94.0497 +290271,358.2,93.9955 +290272,359.63,93.9561 +290273,354,94.0477 +290274,355.43,94.0235 +290275,356.85,94.0141 +290276,358.27,94.0193 +290277,352.65,93.9765 +290278,354.08,93.9972 +290279,355.5,94.0326 +290280,356.92,94.0825 +290281,351.3,93.9053 +290282,352.72,93.9709 +290283,354.15,94.0511 +290284,355.56,94.1457 +290285,349.96,93.8342 +290286,351.38,93.9445 +290287,352.79,94.0695 +290288,354.2,94.2087 +290289,348.61,93.7632 +290290,350.03,93.9182 +290291,351.44,94.0877 +290292,352.85,94.2717 +290293,347.27,93.6923 +290294,348.68,93.8918 +290295,350.08,94.1059 +290296,351.49,94.3345 +290297,345.93,93.6216 +290298,347.33,93.8654 +290299,348.73,94.124 +290300,350.12,94.3971 +290301,344.59,93.551 +290302,345.98,93.839 +290303,347.37,94.1419 +290304,348.76,94.4595 +290305,343.25,93.4807 +290306,344.63,93.8127 +290307,346.02,94.1597 +290308,347.4,94.5216 +290309,341.91,93.4107 +290310,343.28,93.7864 +290311,344.66,94.1774 +290312,346.03,94.5834 +290313,340.57,93.3409 +290314,341.94,93.7601 +290315,343.3,94.1949 +290316,344.67,94.645 +290317,339.23,93.2715 +290318,340.59,93.7339 +290319,341.95,94.2122 +290320,343.3,94.7061 +290321,337.9,93.2024 +290322,339.25,93.7077 +290323,340.59,94.2294 +290324,341.93,94.7669 +290325,336.56,93.1337 +290326,337.9,93.6817 +290327,339.23,94.2463 +290328,340.56,94.8273 +290329,335.23,93.0654 +290330,336.55,93.6557 +290331,337.88,94.2631 +290332,339.19,94.8872 +290333,333.9,92.9976 +290334,335.21,93.6299 +290335,336.52,94.2796 +290336,337.82,94.9466 +290337,332.57,92.9302 +290338,333.86,93.6041 +290339,335.16,94.2959 +290340,336.45,95.0055 +290341,331.24,92.8634 +290342,332.52,93.5785 +290343,333.8,94.312 +290344,335.08,95.0638 +290345,329.91,92.7971 +290346,331.18,93.553 +290347,332.44,94.3279 +290348,333.7,95.1215 +290349,328.58,92.7314 +290350,329.83,93.5276 +290351,331.08,94.3434 +290352,332.33,95.1787 +290353,327.26,92.6662 +290354,328.49,93.5024 +290355,329.72,94.3588 +290356,330.95,95.2352 +290357,325.93,92.6017 +290358,327.15,93.4774 +290359,328.36,94.3738 +290360,329.57,95.291 +290361,324.61,92.5379 +290362,325.8,93.4525 +290363,327,94.3886 +290364,328.19,95.3461 +290365,323.28,92.4748 +290366,324.46,93.4278 +290367,325.64,94.403 +290368,326.81,95.4004 +290369,321.96,92.4123 +290370,323.12,93.4033 +290371,324.28,94.4172 +290372,325.43,95.454 +290373,320.64,92.3507 +290374,321.78,93.3791 +290375,322.92,94.431 +290376,324.05,95.5067 +290377,319.32,92.2898 +290378,320.44,93.355 +290379,321.55,94.4445 +290380,322.67,95.5586 +290381,318,92.2296 +290382,319.1,93.3311 +290383,320.19,94.4577 +290384,321.28,95.6097 +290385,316.68,92.1704 +290386,317.76,93.3075 +290387,318.83,94.4705 +290388,319.9,95.6599 +290389,315.36,92.1119 +290390,316.42,93.2841 +290391,317.47,94.4829 +290392,318.51,95.7091 +290393,314.04,92.0544 +290394,315.08,93.261 +290395,316.1,94.495 +290396,317.13,95.7574 +290397,312.73,91.9977 +290398,313.74,93.2381 +290399,314.74,94.5068 +290400,315.74,95.8047 +290401,311.41,91.942 +290402,312.4,93.2155 +290403,313.38,94.5181 +290404,314.35,95.8509 +290405,310.1,91.8872 +290406,311.06,93.1932 +290407,312.01,94.5291 +290408,312.96,95.8962 +290409,308.78,91.8334 +290410,309.72,93.1711 +290411,310.65,94.5396 +290412,311.57,95.9403 +290413,307.47,91.7806 +290414,308.38,93.1494 +290415,309.28,94.5498 +290416,310.18,95.9834 +290417,306.16,91.7288 +290418,307.04,93.1279 +290419,307.92,94.5595 +290420,308.79,96.0254 +290421,304.85,91.6781 +290422,305.7,93.1068 +290423,306.55,94.5688 +290424,307.4,96.0662 +290425,303.54,91.6284 +290426,304.37,93.0859 +290427,305.19,94.5777 +290428,306.01,96.1058 +290429,302.23,91.5798 +290430,303.03,93.0654 +290431,303.82,94.5861 +290432,304.61,96.1443 +290433,300.92,91.5323 +290434,301.69,93.0452 +290435,302.46,94.5941 +290436,303.22,96.1815 +290437,299.61,91.4859 +290438,300.35,93.0254 +290439,301.09,94.6017 +290440,301.83,96.2175 +290441,298.3,91.4406 +290442,299.02,93.0059 +290443,299.73,94.6087 +290444,300.43,96.2522 +290445,296.99,91.3965 +290446,297.68,92.9867 +290447,298.36,94.6153 +290448,299.03,96.2856 +290449,295.69,91.3536 +290450,296.34,92.9679 +290451,297,94.6215 +290452,297.64,96.3178 +290453,294.38,91.3119 +290454,295.01,92.9494 +290455,295.63,94.6271 +290456,296.24,96.3486 +290457,293.08,91.2714 +290458,293.67,92.9314 +290459,294.26,94.6323 +290460,294.84,96.378 +290461,291.77,91.2321 +290462,292.34,92.9137 +290463,292.9,94.637 +290464,293.44,96.4061 +290465,290.47,91.1941 +290466,291,92.8963 +290467,291.53,94.6411 +290468,292.05,96.4328 +290469,289.16,91.1573 +290470,289.67,92.8794 +290471,290.16,94.6448 +290472,290.65,96.458 +290473,287.86,91.1218 +290474,288.33,92.8628 +290475,288.79,94.648 +290476,289.25,96.4819 +290477,286.56,91.0876 +290478,287,92.8466 +290479,287.43,94.6506 +290480,287.85,96.5043 +290481,285.25,91.0546 +290482,285.66,92.8309 +290483,286.06,94.6527 +290484,286.45,96.5253 +290485,283.95,91.023 +290486,284.33,92.8155 +290487,284.69,94.6543 +290488,285.05,96.5447 +290489,282.65,90.99271 +290490,282.99,92.8005 +290491,283.32,94.6554 +290492,283.65,96.5627 +290493,281.35,90.96374 +290494,281.66,92.786 +290495,281.96,94.6559 +290496,282.24,96.5792 +290497,280.04,90.9361 +290498,280.32,92.7718 +290499,280.59,94.6559 +290500,280.84,96.5942 +290501,278.74,90.90981 +290502,278.99,92.7581 +290503,279.22,94.6554 +290504,279.44,96.6077 +290505,277.44,90.88488 +290506,277.65,92.7448 +290507,277.85,94.6543 +290508,278.04,96.6196 +290509,276.14,90.86131 +290510,276.32,92.7319 +290511,276.49,94.6527 +290512,276.64,96.6299 +290513,274.84,90.83911 +290514,274.99,92.7195 +290515,275.12,94.6505 +290516,275.23,96.6387 +290517,273.54,90.8183 +290518,273.65,92.7075 +290519,273.75,94.6478 +290520,273.83,96.646 +290521,272.24,90.79886 +290522,272.32,92.6959 +290523,272.38,94.6445 +290524,272.43,96.6516 +290525,270.94,90.78082 +290526,270.98,92.6847 +290527,271.01,94.6407 +290528,271.03,96.6557 +290529,269.64,90.76417 +290530,269.65,92.674 +290531,269.65,94.6363 +290532,269.62,96.6582 +290533,268.34,90.74892 +290534,268.32,92.6637 +290535,268.28,94.6313 +290536,268.22,96.6591 +290537,267.04,90.73507 +290538,266.98,92.6538 +290539,266.91,94.6258 +290540,266.82,96.6584 +290541,265.74,90.72262 +290542,265.65,92.6444 +290543,265.54,94.6197 +290544,265.42,96.6561 +290545,264.44,90.71158 +290546,264.31,92.6354 +290547,264.17,94.6131 +290548,264.01,96.6522 +290549,263.14,90.70194 +290550,262.98,92.6268 +290551,262.81,94.6058 +290552,262.61,96.6467 +290553,261.84,90.69371 +290554,261.65,92.6187 +290555,261.44,94.5981 +290556,261.21,96.6395 +290557,260.54,90.68688 +290558,260.31,92.611 +290559,260.07,94.5897 +290560,259.81,96.6308 +290561,259.24,90.68146 +290562,258.98,92.6038 +290563,258.7,94.5809 +290564,258.41,96.6205 +290565,257.94,90.67743 +290566,257.65,92.597 +290567,257.33,94.5714 +290568,257,96.6085 +290569,256.64,90.67481 +290570,256.31,92.5906 +290571,255.97,94.5614 +290572,255.6,96.5949 +290573,255.34,90.67359 +290574,254.98,92.5847 +290575,254.6,94.5508 +290576,254.2,96.5798 +290577,254.04,90.67375 +290578,253.64,92.5792 +290579,253.23,94.5397 +290580,252.8,96.563 +290581,252.73,90.6753 +290582,252.31,92.5742 +290583,251.87,94.528 +290584,251.4,96.5446 +290585,251.43,90.67824 +290586,250.97,92.5695 +290587,250.5,94.5157 +290588,250,96.5247 +290589,250.13,90.68255 +290590,249.64,92.5653 +290591,249.13,94.5029 +290592,248.6,96.5032 +290593,248.83,90.68823 +290594,248.31,92.5616 +290595,247.76,94.4896 +290596,247.2,96.48 +290597,247.52,90.69527 +290598,246.97,92.5582 +290599,246.4,94.4757 +290600,245.8,96.4554 +290601,246.22,90.70367 +290602,245.64,92.5553 +290603,245.03,94.4612 +290604,244.4,96.4291 +290605,244.92,90.71341 +290606,244.3,92.5528 +290607,243.67,94.4462 +290608,243.01,96.4014 +290609,243.61,90.72448 +290610,242.97,92.5507 +290611,242.3,94.4307 +290612,241.61,96.3721 +290613,242.31,90.73688 +290614,241.63,92.549 +290615,240.93,94.4146 +290616,240.21,96.3412 +290617,241,90.7506 +290618,240.3,92.5477 +290619,239.57,94.398 +290620,238.82,96.3089 +290621,239.7,90.76561 +290622,238.96,92.5469 +290623,238.2,94.3809 +290624,237.42,96.275 +290625,238.39,90.78192 +290626,237.62,92.5464 +290627,236.84,94.3633 +290628,236.03,96.2397 +290629,237.08,90.79951 +290630,236.29,92.5463 +290631,235.47,94.3451 +290632,234.63,96.2029 +290633,235.78,90.81836 +290634,234.95,92.5467 +290635,234.11,94.3265 +290636,233.24,96.1646 +290637,234.47,90.83846 +290638,233.62,92.5474 +290639,232.74,94.3073 +290640,231.85,96.1249 +290641,233.16,90.8598 +290642,232.28,92.5485 +290643,231.38,94.2876 +290644,230.45,96.0838 +290645,231.85,90.88236 +290646,230.94,92.5499 +290647,230.02,94.2674 +290648,229.06,96.0413 +290649,230.54,90.90613 +290650,229.61,92.5518 +290651,228.65,94.2468 +290652,227.67,95.9974 +290653,229.23,90.93108 +290654,228.27,92.554 +290655,227.29,94.2256 +290656,226.28,95.9521 +290657,227.92,90.95721 +290658,226.93,92.5565 +290659,225.92,94.204 +290660,224.89,95.9055 +290661,226.61,90.98449 +290662,225.59,92.5594 +290663,224.56,94.1819 +290664,223.51,95.8575 +290665,225.29,91.0129 +290666,224.26,92.5627 +290667,223.2,94.1593 +290668,222.12,95.8083 +290669,223.98,91.0424 +290670,222.92,92.5663 +290671,221.84,94.1363 +290672,220.73,95.7578 +290673,222.66,91.0731 +290674,221.58,92.5703 +290675,220.48,94.1129 +290676,219.35,95.706 +290677,221.35,91.1048 +290678,220.24,92.5745 +290679,219.11,94.0889 +290680,217.96,95.653 +290681,220.03,91.1375 +290682,218.9,92.5791 +290683,217.75,94.0646 +290684,216.58,95.5987 +290685,218.72,91.1713 +290686,217.56,92.584 +290687,216.39,94.0398 +290688,215.2,95.5433 +290689,217.4,91.2062 +290690,216.22,92.5892 +290691,215.03,94.0146 +290692,213.82,95.4867 +290693,216.08,91.242 +290694,214.88,92.5947 +290695,213.67,93.989 +290696,212.44,95.429 +290697,214.76,91.2788 +290698,213.54,92.6005 +290699,212.31,93.963 +290700,211.06,95.3702 +290701,213.44,91.3165 +290702,212.2,92.6066 +290703,210.95,93.9366 +290704,209.68,95.3103 +290705,212.12,91.3551 +290706,210.86,92.6129 +290707,209.59,93.9098 +290708,208.3,95.2494 +290709,210.79,91.3947 +290710,209.52,92.6196 +290711,208.23,93.8826 +290712,206.92,95.1874 +290713,209.47,91.4351 +290714,208.18,92.6264 +290715,206.87,93.8551 +290716,205.55,95.1244 +290717,208.14,91.4764 +290718,206.84,92.6336 +290719,205.52,93.8272 +290720,204.17,95.0605 +290721,206.82,91.5185 +290722,205.5,92.6409 +290723,204.16,93.799 +290724,202.8,94.9956 +290725,205.49,91.5614 +290726,204.15,92.6485 +290727,202.8,93.7704 +290728,201.43,94.9298 +290729,204.16,91.6051 +290730,202.81,92.6563 +290731,201.44,93.7415 +290732,200.06,94.8631 +290733,202.83,91.6495 +290734,201.47,92.6644 +290735,200.09,93.7122 +290736,198.69,94.7956 +290737,201.5,91.6947 +290738,200.13,92.6726 +290739,198.73,93.6827 +290740,197.32,94.7272 +290741,200.17,91.7405 +290742,198.78,92.681 +290743,197.38,93.6529 +290744,195.95,94.6581 +290745,198.84,91.787 +290746,197.44,92.6896 +290747,196.02,93.6227 +290748,194.59,94.5882 +290749,197.51,91.8342 +290750,196.09,92.6984 +290751,194.67,93.5923 +290752,193.22,94.5176 +290753,196.17,91.8819 +290754,194.75,92.7074 +290755,193.31,93.5616 +290756,191.86,94.4463 +290757,194.84,91.9303 +290758,193.4,92.7165 +290759,191.96,93.5307 +290760,190.49,94.3743 +290761,193.5,91.9792 +290762,192.06,92.7258 +290763,190.6,93.4995 +290764,189.13,94.3018 +290765,192.16,92.0286 +290766,190.71,92.7352 +290767,189.25,93.468 +290768,187.77,94.2286 +290769,190.82,92.0785 +290770,189.37,92.7447 +290771,187.9,93.4364 +290772,186.41,94.1548 +290773,189.48,92.1288 +290774,188.02,92.7543 +290775,186.54,93.4045 +290776,185.06,94.0806 +290777,188.14,92.1796 +290778,186.67,92.764 +290779,185.19,93.3724 +290780,183.7,94.0058 +290781,186.8,92.2308 +290782,185.33,92.7739 +290783,183.84,93.3401 +290784,182.34,93.9306 +290785,185.45,92.2824 +290786,183.98,92.7838 +290787,182.49,93.3077 +290788,180.99,93.855 +290789,184.11,92.3343 +290790,182.63,92.7938 +290791,181.14,93.275 +290792,179.64,93.7789 +290793,182.76,92.3865 +290794,181.28,92.8038 +290795,179.79,93.2422 +290796,178.28,93.7025 +290797,181.41,92.439 +290798,179.93,92.8139 +290799,178.44,93.2093 +290800,176.93,93.6258 +290801,180.06,92.4918 +290802,178.58,92.8241 +290803,177.09,93.1762 +290804,175.59,93.5488 +290805,178.71,92.5447 +290806,177.23,92.8343 +290807,175.74,93.143 +290808,174.24,93.4716 +290809,177.36,92.5979 +290810,175.88,92.8445 +290811,174.39,93.1096 +290812,172.89,93.3941 +290813,176.01,92.6512 +290814,174.53,92.8547 +290815,173.04,93.0762 +290816,171.54,93.3164 +290817,174.66,92.7046 +290818,173.18,92.8649 +290819,171.7,93.0427 +290820,170.2,93.2386 +290821,173.3,92.7581 +290822,171.83,92.8751 +290823,170.35,93.009 +290824,168.86,93.1607 +290825,171.95,92.8116 +290826,170.48,92.8852 +290827,169,92.9753 +290828,167.52,93.0827 +290829,170.59,92.8652 +290830,169.13,92.8954 +290831,167.66,92.9416 +290832,166.17,93.0046 +290833,169.23,92.9188 +290834,167.78,92.9054 +290835,166.31,92.9078 +290836,164.84,92.9265 +290837,167.87,92.9723 +290838,166.42,92.9155 +290839,164.96,92.874 +290840,163.5,92.8485 +290841,166.51,93.0257 +290842,165.07,92.9254 +290843,163.62,92.8401 +290844,162.16,92.7705 +290845,165.15,93.0791 +290846,163.72,92.9353 +290847,162.27,92.8062 +290848,160.82,92.6925 +290849,163.79,93.1323 +290850,162.36,92.9451 +290851,160.93,92.7724 +290852,159.49,92.6147 +290853,162.42,93.1853 +290854,161.01,92.9548 +290855,159.59,92.7385 +290856,158.16,92.5371 +290857,161.06,93.2381 +290858,159.65,92.9644 +290859,158.24,92.7046 +290860,156.82,92.4596 +290861,159.69,93.2907 +290862,158.3,92.9738 +290863,156.9,92.6708 +290864,155.49,92.3824 +290865,158.32,93.343 +290866,156.94,92.9831 +290867,155.56,92.637 +290868,154.16,92.3054 +290869,156.95,93.395 +290870,155.59,92.9923 +290871,154.22,92.6033 +290872,152.83,92.2287 +290873,155.58,93.4467 +290874,154.23,93.0013 +290875,152.87,92.5696 +290876,151.51,92.1524 +290877,154.21,93.498 +290878,152.88,93.0102 +290879,151.53,92.536 +290880,150.18,92.0764 +290881,152.84,93.5489 +290882,151.52,93.0189 +290883,150.19,92.5025 +290884,148.85,92.0007 +290885,151.47,93.5994 +290886,150.16,93.0274 +290887,148.85,92.4691 +290888,147.53,91.9255 +290889,150.09,93.6494 +290890,148.81,93.0357 +290891,147.51,92.4358 +290892,146.21,91.8507 +290893,148.72,93.6989 +290894,147.45,93.0437 +290895,146.17,92.4026 +290896,144.88,91.7764 +290897,147.34,93.7479 +290898,146.09,93.0516 +290899,144.83,92.3696 +290900,143.56,91.7026 +290901,145.96,93.7963 +290902,144.73,93.0593 +290903,143.49,92.3367 +290904,142.24,91.6294 +290905,144.59,93.8442 +290906,143.37,93.0666 +290907,142.15,92.3039 +290908,140.92,91.5567 +290909,143.21,93.8914 +290910,142.01,93.0738 +290911,140.81,92.2713 +290912,139.61,91.4846 +290913,141.83,93.938 +290914,140.66,93.0807 +290915,139.48,92.2388 +290916,138.29,91.4132 +290917,140.44,93.9839 +290918,139.3,93.0873 +290919,138.14,92.2066 +290920,136.97,91.3424 +290921,139.06,94.0291 +290922,137.94,93.0936 +290923,136.8,92.1745 +290924,135.66,91.2723 +290925,137.68,94.0735 +290926,136.58,93.0997 +290927,135.46,92.1426 +290928,134.34,91.2029 +290929,136.29,94.1172 +290930,135.22,93.1055 +290931,134.13,92.1109 +290932,133.03,91.1342 +290933,134.91,94.1601 +290934,133.86,93.1109 +290935,132.79,92.0795 +290936,131.72,91.0663 +290937,133.52,94.2021 +290938,132.49,93.116 +290939,131.46,92.0482 +290940,130.41,90.99921 +290941,132.14,94.2433 +290942,131.13,93.1208 +290943,130.12,92.0172 +290944,129.1,90.93293 +290945,130.75,94.2836 +290946,129.77,93.1253 +290947,128.79,91.9865 +290948,127.79,90.86751 +290949,129.36,94.323 +290950,128.41,93.1294 +290951,127.45,91.956 +290952,126.48,90.80295 +290953,127.97,94.3615 +290954,127.05,93.1332 +290955,126.12,91.9257 +290956,125.17,90.73929 +290957,126.58,94.399 +290958,125.69,93.1366 +290959,124.78,91.8958 +290960,123.87,90.67655 +290961,125.19,94.4355 +290962,124.32,93.1397 +290963,123.45,91.8661 +290964,122.56,90.61476 +290965,123.8,94.471 +290966,122.96,93.1423 +290967,122.11,91.8367 +290968,121.25,90.55394 +290969,122.4,94.5054 +290970,121.6,93.1446 +290971,120.78,91.8076 +290972,119.95,90.4941 +290973,121.01,94.5388 +290974,120.24,93.1465 +290975,119.45,91.7787 +290976,118.64,90.43528 +290977,119.62,94.5711 +290978,118.87,93.148 +290979,118.11,91.7502 +290980,117.34,90.3775 +290981,118.22,94.6022 +290982,117.51,93.149 +290983,116.78,91.7221 +290984,116.04,90.32077 +290985,116.83,94.6323 +290986,116.15,93.1497 +290987,115.45,91.6942 +290988,114.74,90.26511 +290989,115.43,94.6611 +290990,114.78,93.1499 +290991,114.12,91.6667 +290992,113.44,90.21056 +290993,114.04,94.6888 +290994,113.42,93.1497 +290995,112.78,91.6395 +290996,112.13,90.15711 +290997,112.64,94.7153 +290998,112.05,93.1491 +290999,111.45,91.6126 +291000,110.83,90.10481 +291001,111.24,94.7405 +291002,110.69,93.148 +291003,110.12,91.5862 +291004,109.54,90.053649 +291005,109.84,94.7645 +291006,109.32,93.1464 +291007,108.79,91.56 +291008,108.24,90.0036616 +291009,108.44,94.7872 +291010,107.96,93.1445 +291011,107.46,91.5342 +291012,106.94,89.95486 +291013,107.05,94.8086 +291014,106.6,93.142 +291015,106.13,91.5088 +291016,105.64,89.907261 +291017,105.65,94.8287 +291018,105.23,93.1391 +291019,104.8,91.4838 +291020,104.34,89.86088 +291021,104.25,94.8475 +291022,103.87,93.1357 +291023,103.46,91.4592 +291024,103.04,89.81573 +291025,102.85,94.865 +291026,102.5,93.1318 +291027,102.13,91.4349 +291028,101.75,89.77183 +291029,101.45,94.8811 +291030,101.14,93.1275 +291031,100.8,91.411 +291032,100.45,89.72919 +291033,100.05,94.8958 +291034,99.771,93.1226 +291035,99.473,91.3876 +291036,99.155,89.68782 +291037,98.646,94.9091 +291038,98.406,93.1173 +291039,98.143,91.3645 +291040,97.859,89.64773 +291041,97.245,94.921 +291042,97.04,93.1114 +291043,96.813,91.3418 +291044,96.564,89.60895 +291045,95.843,94.9315 +291046,95.675,93.1051 +291047,95.483,91.3195 +291048,95.269,89.57147 +291049,94.442,94.9405 +291050,94.31,93.0982 +291051,94.153,91.2977 +291052,93.974,89.53531 +291053,93.04,94.9481 +291054,92.945,93.0909 +291055,92.823,91.2762 +291056,92.679,89.50048 +291057,91.639,94.9543 +291058,91.579,93.083 +291059,91.494,91.2552 +291060,91.385,89.46698 +291061,90.237,94.9589 +291062,90.214,93.0746 +291063,90.164,91.2346 +291064,90.09,89.43483 +291065,88.835,94.9621 +291066,88.848,93.0657 +291067,88.834,91.2144 +291068,88.796,89.40403 +291069,87.433,94.9638 +291070,87.483,93.0563 +291071,87.505,91.1947 +291072,87.502,89.37459 +291073,86.031,94.964 +291074,86.118,93.0463 +291075,86.175,91.1754 +291076,86.208,89.34651 +291077,84.629,94.9627 +291078,84.753,93.0358 +291079,84.846,91.1565 +291080,84.914,89.31981 +291081,83.228,94.9599 +291082,83.387,93.0248 +291083,83.517,91.138 +291084,83.62,89.29448 +291085,81.826,94.9555 +291086,82.022,93.0133 +291087,82.187,91.12 +291088,82.326,89.27053 +291089,80.424,94.9497 +291090,80.657,93.0012 +291091,80.858,91.1024 +291092,81.032,89.24796 +291093,79.023,94.9422 +291094,79.292,92.9886 +291095,79.529,91.0853 +291096,79.738,89.22677 +291097,77.622,94.9333 +291098,77.927,92.9754 +291099,78.199,91.0685 +291100,78.443,89.20697 +291101,76.221,94.9228 +291102,76.562,92.9618 +291103,76.87,91.0523 +291104,77.149,89.18856 +291105,74.82,94.9108 +291106,75.197,92.9475 +291107,75.54,91.0364 +291108,75.855,89.17154 +291109,73.42,94.8972 +291110,73.833,92.9328 +291111,74.211,91.021 +291112,74.56,89.15591 +291113,72.02,94.8821 +291114,72.468,92.9175 +291115,72.882,91.0061 +291116,73.265,89.14166 +291117,70.62,94.8654 +291118,71.104,92.9017 +291119,71.552,90.99157 +291120,71.97,89.1288 +291121,69.22,94.8472 +291122,69.739,92.8853 +291123,70.222,90.97749 +291124,70.675,89.11732 +291125,67.821,94.8275 +291126,68.375,92.8684 +291127,68.893,90.96384 +291128,69.379,89.10723 +291129,66.423,94.8062 +291130,67.011,92.851 +291131,67.563,90.95064 +291132,68.083,89.0985 +291133,65.024,94.7834 +291134,65.647,92.8331 +291135,66.233,90.93787 +291136,66.787,89.09115 +291137,63.627,94.759 +291138,64.284,92.8146 +291139,64.903,90.92553 +291140,65.49,89.08517 +291141,62.23,94.7332 +291142,62.92,92.7956 +291143,63.573,90.91363 +291144,64.193,89.08055 +291145,60.833,94.7058 +291146,61.557,92.7761 +291147,62.243,90.90215 +291148,62.896,89.07728 +291149,59.437,94.6769 +291150,60.194,92.756 +291151,60.912,90.8911 +291152,61.598,89.07536 +291153,58.041,94.6464 +291154,58.831,92.7354 +291155,59.582,90.88048 +291156,60.3,89.07478 +291157,56.646,94.6145 +291158,57.469,92.7143 +291159,58.251,90.87028 +291160,59.001,89.07554 +291161,55.252,94.5811 +291162,56.106,92.6927 +291163,56.921,90.8605 +291164,57.701,89.07761 +291165,53.859,94.5462 +291166,54.744,92.6706 +291167,55.59,90.85113 +291168,56.401,89.081 +291169,52.466,94.5099 +291170,53.382,92.648 +291171,54.258,90.84218 +291172,55.101,89.08568 +291173,51.074,94.4721 +291174,52.021,92.6248 +291175,52.927,90.83364 +291176,53.8,89.09166 +291177,49.682,94.4328 +291178,50.659,92.6012 +291179,51.596,90.8255 +291180,52.498,89.09892 +291181,48.292,94.3921 +291182,49.298,92.5771 +291183,50.264,90.81777 +291184,51.196,89.10744 +291185,46.902,94.35 +291186,47.937,92.5525 +291187,48.932,90.81043 +291188,49.893,89.11722 +291189,45.513,94.3065 +291190,46.577,92.5274 +291191,47.6,90.80348 +291192,48.589,89.12824 +291193,44.125,94.2616 +291194,45.217,92.5018 +291195,46.268,90.79692 +291196,47.285,89.14048 +291197,42.738,94.2154 +291198,43.857,92.4757 +291199,44.935,90.79075 +291200,45.979,89.15394 +291201,41.351,94.1677 +291202,42.497,92.4492 +291203,43.602,90.78495 +291204,44.673,89.16859 +291205,39.966,94.1188 +291206,41.138,92.4222 +291207,42.269,90.77953 +291208,43.367,89.18442 +291209,38.581,94.0685 +291210,39.779,92.3948 +291211,40.936,90.77447 +291212,42.059,89.20142 +291213,37.198,94.0169 +291214,38.42,92.3669 +291215,39.603,90.76977 +291216,40.751,89.21956 +291217,35.815,93.9641 +291218,37.062,92.3385 +291219,38.269,90.76543 +291220,39.441,89.23882 +291221,34.434,93.91 +291222,35.704,92.3097 +291223,36.935,90.76144 +291224,38.131,89.2592 +291225,33.053,93.8546 +291226,34.347,92.2805 +291227,35.6,90.75778 +291228,36.82,89.28067 +291229,31.674,93.7981 +291230,32.989,92.2509 +291231,34.266,90.75447 +291232,35.508,89.30321 +291233,30.295,93.7403 +291234,31.633,92.2208 +291235,32.931,90.75149 +291236,34.196,89.32681 +291237,28.918,93.6814 +291238,30.276,92.1904 +291239,31.596,90.74882 +291240,32.882,89.35143 +291241,27.542,93.6213 +291242,28.92,92.1595 +291243,30.26,90.74648 +291244,31.567,89.37707 +291245,26.166,93.5601 +291246,27.564,92.1282 +291247,28.924,90.74444 +291248,30.251,89.40369 +291249,24.792,93.4978 +291250,26.209,92.0966 +291251,27.588,90.7427 +291252,28.935,89.43128 +291253,23.419,93.4344 +291254,24.854,92.0645 +291255,26.252,90.74125 +291256,27.617,89.45982 +291257,22.048,93.37 +291258,23.5,92.0321 +291259,24.915,90.74009 +291260,26.298,89.48928 +291261,20.677,93.3046 +291262,22.145,91.9994 +291263,23.578,90.73921 +291264,24.978,89.51964 +291265,19.308,93.2382 +291266,20.792,91.9663 +291267,22.24,90.7386 +291268,23.657,89.55087 +291269,17.939,93.1708 +291270,19.439,91.9328 +291271,20.902,90.73825 +291272,22.335,89.58296 +291273,16.572,93.1024 +291274,18.086,91.899 +291275,19.564,90.73815 +291276,21.012,89.61587 +291277,15.207,93.0332 +291278,16.733,91.8649 +291279,18.226,90.73829 +291280,19.688,89.64958 +291281,13.842,92.9631 +291282,15.381,91.8304 +291283,16.887,90.73867 +291284,18.363,89.68407 +291285,12.479,92.8921 +291286,14.03,91.7957 +291287,15.548,90.73928 +291288,17.036,89.71931 +291289,11.116,92.8203 +291290,12.679,91.7606 +291291,14.208,90.74011 +291292,15.709,89.75527 +291293,9.7556,92.7477 +291294,11.328,91.7253 +291295,12.868,90.74114 +291296,14.38,89.79193 +291297,8.396,92.6743 +291298,9.9777,91.6897 +291299,11.528,90.74237 +291300,13.05,89.82926 +291301,7.0377,92.6002 +291302,8.6279,91.6538 +291303,10.187,90.7438 +291304,11.719,89.86723 +291305,5.6807,92.5254 +291306,7.2785,91.6177 +291307,8.8464,90.7454 +291308,10.387,89.905825 +291309,4.3249,92.45 +291310,5.9296,91.5813 +291311,7.505,90.74718 +291312,9.0532,89.945004 +291313,2.9704,92.3739 +291314,4.5812,91.5446 +291315,6.1632,90.74912 +291316,7.7186,89.984743 +291317,1.6172,92.2972 +291318,3.2332,91.5078 +291319,4.8211,90.75121 +291320,6.3827,90.025014 +291321,0.26536,92.2199 +291322,1.8857,91.4707 +291323,3.4785,90.75344 +291324,5.0456,90.065788 +291325,358.91,92.1421 +291326,0.53863,91.4334 +291327,2.1356,90.75581 +291328,3.7073,90.10704 +291329,357.57,92.0638 +291330,359.19,91.3959 +291331,0.79234,90.75829 +291332,2.3678,90.14873 +291333,356.22,91.985 +291334,357.85,91.3582 +291335,359.45,90.76089 +291336,1.027,90.19084 +291337,354.87,91.9057 +291338,356.5,91.3204 +291339,358.1,90.76359 +291340,359.69,90.23333 +291341,353.53,91.8261 +291342,355.15,91.2824 +291343,356.76,90.76639 +291344,358.34,90.27618 +291345,352.18,91.746 +291346,353.81,91.2442 +291347,355.42,90.76926 +291348,357,90.31936 +291349,350.84,91.6656 +291350,352.47,91.2059 +291351,354.07,90.77221 +291352,355.65,90.36283 +291353,349.5,91.585 +291354,351.12,91.1675 +291355,352.72,90.77522 +291356,354.3,90.40657 +291357,348.16,91.504 +291358,349.78,91.1289 +291359,351.38,90.77828 +291360,352.96,90.45055 +291361,346.82,91.4228 +291362,348.44,91.0902 +291363,350.03,90.78138 +291364,351.61,90.49472 +291365,345.48,91.3414 +291366,347.09,91.0515 +291367,348.69,90.78451 +291368,350.26,90.53908 +291369,344.14,91.2598 +291370,345.75,91.0126 +291371,347.34,90.78766 +291372,348.9,90.58357 +291373,342.81,91.1781 +291374,344.41,90.97366 +291375,345.99,90.79082 +291376,347.55,90.62818 +291377,341.48,91.0963 +291378,343.07,90.93465 +291379,344.64,90.79397 +291380,346.2,90.67286 +291381,340.14,91.0144 +291382,341.73,90.89559 +291383,343.29,90.79712 +291384,344.84,90.7176 +291385,338.81,90.93241 +291386,340.39,90.85649 +291387,341.95,90.80024 +291388,343.48,90.76236 +291389,337.48,90.85046 +291390,339.05,90.81735 +291391,340.6,90.80332 +291392,342.13,90.8071 +291393,336.15,90.76853 +291394,337.71,90.7782 +291395,339.25,90.80637 +291396,340.77,90.8518 +291397,334.83,90.68667 +291398,336.37,90.73903 +291399,337.9,90.80935 +291400,339.41,90.89642 +291401,333.5,90.6049 +291402,335.03,90.69986 +291403,336.55,90.81228 +291404,338.04,90.94094 +291405,332.18,90.52325 +291406,333.69,90.6607 +291407,335.2,90.81512 +291408,336.68,90.98532 +291409,330.85,90.44177 +291410,332.36,90.62156 +291411,333.85,90.81788 +291412,335.32,91.0295 +291413,329.53,90.36048 +291414,331.02,90.58246 +291415,332.49,90.82055 +291416,333.95,91.0735 +291417,328.21,90.27942 +291418,329.68,90.5434 +291419,331.14,90.82311 +291420,332.59,91.1173 +291421,326.89,90.19861 +291422,328.35,90.5044 +291423,329.79,90.82554 +291424,331.22,91.1608 +291425,325.57,90.1181 +291426,327.01,90.46546 +291427,328.44,90.82785 +291428,329.85,91.2041 +291429,324.25,90.037903 +291430,325.68,90.4266 +291431,327.08,90.83003 +291432,328.48,91.247 +291433,322.94,89.958063 +291434,324.34,90.38782 +291435,325.73,90.83205 +291436,327.11,91.2895 +291437,321.62,89.87861 +291438,323.01,90.34915 +291439,324.38,90.83391 +291440,325.74,91.3317 +291441,320.31,89.79957 +291442,321.67,90.31058 +291443,323.02,90.83561 +291444,324.36,91.3734 +291445,318.99,89.72098 +291446,320.34,90.27213 +291447,321.67,90.83712 +291448,322.99,91.4147 +291449,317.68,89.64287 +291450,319.01,90.2338 +291451,320.32,90.83845 +291452,321.61,91.4556 +291453,316.37,89.56527 +291454,317.67,90.19562 +291455,318.96,90.83958 +291456,320.24,91.4959 +291457,315.06,89.48821 +291458,316.34,90.15759 +291459,317.61,90.84049 +291460,318.86,91.5357 +291461,313.75,89.41171 +291462,315.01,90.11971 +291463,316.25,90.84119 +291464,317.48,91.5749 +291465,312.44,89.33581 +291466,313.68,90.082004 +291467,314.9,90.84166 +291468,316.1,91.6135 +291469,311.14,89.26054 +291470,312.35,90.044476 +291471,313.54,90.8419 +291472,314.72,91.6516 +291473,309.83,89.18593 +291474,311.01,90.0071365 +291475,312.18,90.84188 +291476,313.34,91.6889 +291477,308.53,89.11199 +291478,309.68,89.969995 +291479,310.83,90.84161 +291480,311.95,91.7256 +291481,307.22,89.03877 +291482,308.35,89.93306 +291483,309.47,90.84107 +291484,310.57,91.7616 +291485,305.92,88.9663 +291486,307.02,89.89634 +291487,308.11,90.84026 +291488,309.19,91.7968 +291489,304.62,88.8946 +291490,305.69,89.85985 +291491,306.75,90.83916 +291492,307.8,91.8313 +291493,303.32,88.8236 +291494,304.36,89.82359 +291495,305.4,90.83777 +291496,306.41,91.865 +291497,302.02,88.7535 +291498,303.04,89.78758 +291499,304.04,90.83608 +291500,305.03,91.8979 +291501,300.72,88.6842 +291502,301.71,89.75182 +291503,302.68,90.83407 +291504,303.64,91.9299 +291505,299.42,88.6158 +291506,300.38,89.71632 +291507,301.32,90.83175 +291508,302.25,91.9611 +291509,298.12,88.5483 +291510,299.05,89.68109 +291511,299.96,90.8291 +291512,300.86,91.9914 +291513,296.82,88.4817 +291514,297.72,89.64613 +291515,298.61,90.82612 +291516,299.47,92.0207 +291517,295.53,88.4161 +291518,296.4,89.61146 +291519,297.25,90.82279 +291520,298.08,92.0491 +291521,294.23,88.3514 +291522,295.07,89.57709 +291523,295.89,90.81911 +291524,296.69,92.0766 +291525,292.94,88.2876 +291526,293.74,89.54301 +291527,294.53,90.81507 +291528,295.3,92.103 +291529,291.64,88.2249 +291530,292.41,89.50925 +291531,293.17,90.81067 +291532,293.9,92.1285 +291533,290.35,88.1632 +291534,291.09,89.4758 +291535,291.81,90.80589 +291536,292.51,92.1529 +291537,289.06,88.1026 +291538,289.76,89.44267 +291539,290.45,90.80073 +291540,291.11,92.1762 +291541,287.77,88.043 +291542,288.44,89.40987 +291543,289.09,90.79518 +291544,289.72,92.1985 +291545,286.47,87.9845 +291546,287.11,89.37741 +291547,287.73,90.78924 +291548,288.32,92.2197 +291549,285.18,87.9271 +291550,285.79,89.3453 +291551,286.37,90.7829 +291552,286.93,92.2397 +291553,283.89,87.8709 +291554,284.46,89.31353 +291555,285.01,90.77615 +291556,285.53,92.2586 +291557,282.6,87.8157 +291558,283.14,89.28212 +291559,283.65,90.76898 +291560,284.13,92.2763 +291561,281.31,87.7618 +291562,281.81,89.25107 +291563,282.29,90.7614 +291564,282.74,92.2929 +291565,280.02,87.709 +291566,280.49,89.22039 +291567,280.92,90.75339 +291568,281.34,92.3082 +291569,278.74,87.6574 +291570,279.16,89.19008 +291571,279.56,90.74495 +291572,279.94,92.3223 +291573,277.45,87.607 +291574,277.84,89.16015 +291575,278.2,90.73607 +291576,278.54,92.3352 +291577,276.16,87.5578 +291578,276.51,89.1306 +291579,276.84,90.72676 +291580,277.14,92.3468 +291581,274.87,87.5098 +291582,275.19,89.10145 +291583,275.48,90.71699 +291584,275.74,92.3572 +291585,273.59,87.4631 +291586,273.86,89.07268 +291587,274.12,90.70677 +291588,274.34,92.3663 +291589,272.3,87.4177 +291590,272.54,89.04432 +291591,272.76,90.6961 +291592,272.94,92.374 +291593,271.01,87.3735 +291594,271.22,89.01635 +291595,271.4,90.68497 +291596,271.55,92.3805 +291597,269.73,87.3306 +291598,269.89,88.9888 +291599,270.03,90.67337 +291600,270.14,92.3856 +291601,268.44,87.2889 +291602,268.57,88.9616 +291603,268.67,90.6613 +291604,268.74,92.3894 +291605,267.15,87.2486 +291606,267.25,88.9349 +291607,267.31,90.64876 +291608,267.34,92.3918 +291609,265.87,87.2096 +291610,265.92,88.9086 +291611,265.95,90.63575 +291612,265.94,92.3929 +291613,264.58,87.1719 +291614,264.6,88.8827 +291615,264.59,90.62226 +291616,264.54,92.3926 +291617,263.3,87.1356 +291618,263.28,88.8572 +291619,263.23,90.60828 +291620,263.14,92.3909 +291621,262.01,87.1005 +291622,261.95,88.8322 +291623,261.87,90.59383 +291624,261.74,92.3878 +291625,260.73,87.0668 +291626,260.63,88.8075 +291627,260.5,90.57888 +291628,260.34,92.3833 +291629,259.44,87.0345 +291630,259.31,88.7833 +291631,259.14,90.56345 +291632,258.94,92.3774 +291633,258.16,87.0035 +291634,257.99,88.7596 +291635,257.78,90.54752 +291636,257.54,92.37 +291637,256.87,86.9738 +291638,256.66,88.7363 +291639,256.42,90.5311 +291640,256.14,92.3613 +291641,255.58,86.9455 +291642,255.34,88.7134 +291643,255.06,90.51419 +291644,254.74,92.3511 +291645,254.3,86.9186 +291646,254.02,88.6909 +291647,253.7,90.49679 +291648,253.34,92.3394 +291649,253.01,86.893 +291650,252.69,88.6689 +291651,252.34,90.47888 +291652,251.94,92.3263 +291653,251.73,86.8688 +291654,251.37,88.6473 +291655,250.98,90.46048 +291656,250.54,92.3118 +291657,250.44,86.8459 +291658,250.05,88.6262 +291659,249.62,90.44158 +291660,249.14,92.2958 +291661,249.16,86.8244 +291662,248.72,88.6055 +291663,248.26,90.42219 +291664,247.75,92.2784 +291665,247.87,86.8042 +291666,247.4,88.5852 +291667,246.9,90.40229 +291668,246.35,92.2595 +291669,246.58,86.7855 +291670,246.08,88.5654 +291671,245.54,90.3819 +291672,244.95,92.2392 +291673,245.29,86.768 +291674,244.75,88.546 +291675,244.18,90.36101 +291676,243.55,92.2174 +291677,244.01,86.752 +291678,243.43,88.527 +291679,242.82,90.33962 +291680,242.16,92.1941 +291681,242.72,86.7372 +291682,242.11,88.5085 +291683,241.46,90.31774 +291684,240.76,92.1694 +291685,241.43,86.7239 +291686,240.78,88.4904 +291687,240.1,90.29536 +291688,239.36,92.1433 +291689,240.14,86.7118 +291690,239.46,88.4728 +291691,238.74,90.27249 +291692,237.97,92.1157 +291693,238.85,86.7011 +291694,238.14,88.4556 +291695,237.38,90.24913 +291696,236.57,92.0866 +291697,237.56,86.6918 +291698,236.81,88.4388 +291699,236.02,90.22527 +291700,235.18,92.0562 +291701,236.27,86.6837 +291702,235.49,88.4224 +291703,234.66,90.20094 +291704,233.79,92.0243 +291705,234.98,86.677 +291706,234.16,88.4065 +291707,233.3,90.17611 +291708,232.39,91.9909 +291709,233.69,86.6716 +291710,232.84,88.391 +291711,231.94,90.1508 +291712,231,91.9562 +291713,232.4,86.6674 +291714,231.51,88.3759 +291715,230.59,90.12502 +291716,229.61,91.92 +291717,231.11,86.6646 +291718,230.19,88.3612 +291719,229.23,90.098755 +291720,228.22,91.8825 +291721,229.81,86.663 +291722,228.86,88.347 +291723,227.87,90.072019 +291724,226.83,91.8435 +291725,228.52,86.6627 +291726,227.54,88.3331 +291727,226.51,90.044814 +291728,225.44,91.8032 +291729,227.22,86.6637 +291730,226.21,88.3197 +291731,225.16,90.017143 +291732,224.05,91.7615 +291733,225.93,86.6659 +291734,224.89,88.3066 +291735,223.8,89.98901 +291736,222.66,91.7184 +291737,224.63,86.6693 +291738,223.56,88.294 +291739,222.45,89.96042 +291740,221.28,91.674 +291741,223.34,86.674 +291742,222.24,88.2818 +291743,221.09,89.931378 +291744,219.89,91.6283 +291745,222.04,86.6798 +291746,220.91,88.2699 +291747,219.73,89.901887 +291748,218.51,91.5812 +291749,220.74,86.6869 +291750,219.58,88.2585 +291751,218.38,89.87195 +291752,217.12,91.5328 +291753,219.44,86.6951 +291754,218.26,88.2474 +291755,217.02,89.84158 +291756,215.74,91.4832 +291757,218.14,86.7044 +291758,216.93,88.2367 +291759,215.67,89.81078 +291760,214.36,91.4322 +291761,216.84,86.7149 +291762,215.6,88.2263 +291763,214.32,89.77955 +291764,212.98,91.3801 +291765,215.54,86.7266 +291766,214.27,88.2164 +291767,212.96,89.74789 +291768,211.6,91.3266 +291769,214.24,86.7393 +291770,212.95,88.2067 +291771,211.61,89.71582 +291772,210.22,91.272 +291773,212.93,86.7531 +291774,211.62,88.1975 +291775,210.26,89.68335 +291776,208.84,91.2161 +291777,211.63,86.768 +291778,210.29,88.1886 +291779,208.9,89.65047 +291780,207.47,91.1591 +291781,210.32,86.784 +291782,208.96,88.18 +291783,207.55,89.61719 +291784,206.09,91.1009 +291785,209.02,86.801 +291786,207.63,88.1717 +291787,206.2,89.58353 +291788,204.72,91.0415 +291789,207.71,86.819 +291790,206.3,88.1638 +291791,204.85,89.54948 +291792,203.34,90.98106 +291793,206.4,86.838 +291794,204.97,88.1562 +291795,203.5,89.51506 +291796,201.97,90.91949 +291797,205.09,86.8579 +291798,203.64,88.149 +291799,202.15,89.48027 +291800,200.6,90.85684 +291801,203.78,86.8788 +291802,202.31,88.142 +291803,200.8,89.44512 +291804,199.23,90.79314 +291805,202.47,86.9007 +291806,200.98,88.1353 +291807,199.45,89.40962 +291808,197.86,90.7284 +291809,201.16,86.9234 +291810,199.65,88.1289 +291811,198.1,89.37378 +291812,196.5,90.66266 +291813,199.84,86.947 +291814,198.32,88.1228 +291815,196.75,89.33759 +291816,195.13,90.59594 +291817,198.53,86.9715 +291818,196.99,88.117 +291819,195.4,89.30108 +291820,193.77,90.52825 +291821,197.21,86.9968 +291822,195.65,88.1115 +291823,194.05,89.26425 +291824,192.4,90.45964 +291825,195.89,87.0229 +291826,194.32,88.1062 +291827,192.71,89.22711 +291828,191.04,90.39012 +291829,194.57,87.0499 +291830,192.99,88.1011 +291831,191.36,89.18967 +291832,189.68,90.31972 +291833,193.25,87.0775 +291834,191.65,88.0963 +291835,190.01,89.15193 +291836,188.32,90.24847 +291837,191.93,87.1059 +291838,190.32,88.0918 +291839,188.67,89.11391 +291840,186.96,90.17639 +291841,190.61,87.1351 +291842,188.99,88.0874 +291843,187.32,89.07561 +291844,185.61,90.10352 +291845,189.29,87.1649 +291846,187.65,88.0833 +291847,185.98,89.03704 +291848,184.25,90.029873 +291849,187.96,87.1953 +291850,186.32,88.0794 +291851,184.63,88.9982 +291852,182.9,89.955491 +291853,186.64,87.2264 +291854,184.98,88.0757 +291855,183.29,88.9591 +291856,181.55,89.8804 +291857,185.31,87.2581 +291858,183.65,88.0722 +291859,181.94,88.9198 +291860,180.2,89.80462 +291861,183.98,87.2904 +291862,182.31,88.0689 +291863,180.6,88.8803 +291864,178.85,89.7282 +291865,182.65,87.3233 +291866,180.97,88.0657 +291867,179.26,88.8405 +291868,177.5,89.65115 +291869,181.32,87.3566 +291870,179.64,88.0627 +291871,177.92,88.8006 +291872,176.15,89.57351 +291873,179.99,87.3905 +291874,178.3,88.0599 +291875,176.57,88.7604 +291876,174.81,89.49531 +291877,178.65,87.4248 +291878,176.96,88.0572 +291879,175.23,88.7201 +291880,173.46,89.41658 +291881,177.32,87.4596 +291882,175.62,88.0546 +291883,173.89,88.6795 +291884,172.12,89.33735 +291885,175.98,87.4948 +291886,174.29,88.0521 +291887,172.55,88.6388 +291888,170.78,89.25766 +291889,174.65,87.5303 +291890,172.95,88.0498 +291891,171.21,88.598 +291892,169.44,89.17753 +291893,173.31,87.5662 +291894,171.61,88.0476 +291895,169.87,88.557 +291896,168.1,89.09699 +291897,171.97,87.6025 +291898,170.27,88.0455 +291899,168.53,88.5158 +291900,166.76,89.01609 +291901,170.63,87.639 +291902,168.93,88.0434 +291903,167.2,88.4745 +291904,165.43,88.9348 +291905,169.28,87.6758 +291906,167.59,88.0415 +291907,165.86,88.4332 +291908,164.09,88.8533 +291909,167.94,87.7128 +291910,166.25,88.0396 +291911,164.52,88.3917 +291912,162.76,88.7715 +291913,166.59,87.7501 +291914,164.91,88.0377 +291915,163.18,88.3501 +291916,161.43,88.6894 +291917,165.25,87.7875 +291918,163.56,88.0359 +291919,161.85,88.3084 +291920,160.1,88.6071 +291921,163.9,87.8251 +291922,162.22,88.0342 +291923,160.51,88.2666 +291924,158.77,88.5247 +291925,162.55,87.8627 +291926,160.88,88.0324 +291927,159.18,88.2248 +291928,157.44,88.442 +291929,161.2,87.9005 +291930,159.54,88.0307 +291931,157.84,88.183 +291932,156.12,88.3593 +291933,159.85,87.9384 +291934,158.19,88.029 +291935,156.51,88.1411 +291936,154.79,88.2765 +291937,158.49,87.9762 +291938,156.85,88.0273 +291939,155.17,88.0991 +291940,153.47,88.1937 +291941,157.14,88.0141 +291942,155.5,88.0255 +291943,153.84,88.0572 +291944,152.15,88.1108 +291945,155.78,88.0519 +291946,154.16,88.0238 +291947,152.51,88.0152 +291948,150.83,88.028 +291949,154.43,88.0897 +291950,152.82,88.022 +291951,151.17,87.9732 +291952,149.51,87.9452 +291953,153.07,88.1273 +291954,151.47,88.0201 +291955,149.84,87.9312 +291956,148.19,87.8625 +291957,151.71,88.1649 +291958,150.12,88.0182 +291959,148.51,87.8893 +291960,146.87,87.7799 +291961,150.35,88.2023 +291962,148.78,88.0163 +291963,147.18,87.8474 +291964,145.56,87.6975 +291965,148.99,88.2395 +291966,147.43,88.0142 +291967,145.85,87.8055 +291968,144.24,87.6152 +291969,147.62,88.2765 +291970,146.08,88.0121 +291971,144.52,87.7637 +291972,142.93,87.5332 +291973,146.26,88.3133 +291974,144.74,88.0099 +291975,143.19,87.722 +291976,141.62,87.4514 +291977,144.89,88.3498 +291978,143.39,88.0075 +291979,141.86,87.6803 +291980,140.31,87.3698 +291981,143.53,88.386 +291982,142.04,88.0051 +291983,140.53,87.6387 +291984,139,87.2886 +291985,142.16,88.4219 +291986,140.69,88.0025 +291987,139.2,87.5972 +291988,137.69,87.2077 +291989,140.79,88.4574 +291990,139.34,87.9998 +291991,137.88,87.5558 +291992,136.38,87.1272 +291993,139.42,88.4925 +291994,138,87.9969 +291995,136.55,87.5146 +291996,135.08,87.0471 +291997,138.05,88.5273 +291998,136.65,87.9939 +291999,135.22,87.4734 +292000,133.77,86.9674 +292001,136.67,88.5615 +292002,135.3,87.9907 +292003,133.9,87.4324 +292004,132.47,86.8881 +292005,135.3,88.5953 +292006,133.95,87.9874 +292007,132.57,87.3915 +292008,131.17,86.8094 +292009,133.93,88.6287 +292010,132.6,87.9838 +292011,131.24,87.3508 +292012,129.87,86.7312 +292013,132.55,88.6614 +292014,131.24,87.9801 +292015,129.92,87.3103 +292016,128.57,86.6535 +292017,131.17,88.6937 +292018,129.89,87.9762 +292019,128.59,87.2699 +292020,127.27,86.5764 +292021,129.8,88.7253 +292022,128.54,87.972 +292023,127.27,87.2297 +292024,125.97,86.4999 +292025,128.42,88.7563 +292026,127.19,87.9677 +292027,125.94,87.1897 +292028,124.68,86.424 +292029,127.04,88.7867 +292030,125.84,87.9631 +292031,124.62,87.1499 +292032,123.38,86.3488 +292033,125.66,88.8165 +292034,124.49,87.9582 +292035,123.3,87.1103 +292036,122.09,86.2743 +292037,124.27,88.8455 +292038,123.13,87.9532 +292039,121.97,87.071 +292040,120.79,86.2005 +292041,122.89,88.8738 +292042,121.78,87.9478 +292043,120.65,87.0318 +292044,119.5,86.1274 +292045,121.51,88.9014 +292046,120.43,87.9422 +292047,119.33,86.9929 +292048,118.21,86.0551 +292049,120.12,88.9283 +292050,119.07,87.9364 +292051,118.01,86.9543 +292052,116.92,85.9836 +292053,118.74,88.9543 +292054,117.72,87.9302 +292055,116.68,86.9159 +292056,115.63,85.9129 +292057,117.35,88.9795 +292058,116.37,87.9238 +292059,115.36,86.8778 +292060,114.34,85.8431 +292061,115.96,89.00393 +292062,115.01,87.917 +292063,114.04,86.8399 +292064,113.05,85.7741 +292065,114.57,89.02746 +292066,113.66,87.91 +292067,112.72,86.8023 +292068,111.76,85.706 +292069,113.19,89.05011 +292070,112.3,87.9026 +292071,111.4,86.765 +292072,110.48,85.6388 +292073,111.8,89.07185 +292074,110.95,87.8949 +292075,110.08,86.728 +292076,109.19,85.5725 +292077,110.41,89.09265 +292078,109.59,87.8869 +292079,108.76,86.6913 +292080,107.91,85.5072 +292081,109.01,89.11251 +292082,108.24,87.8786 +292083,107.44,86.655 +292084,106.62,85.4429 +292085,107.62,89.1314 +292086,106.88,87.8699 +292087,106.12,86.6189 +292088,105.34,85.3796 +292089,106.23,89.14929 +292090,105.53,87.8609 +292091,104.8,86.5831 +292092,104.06,85.3173 +292093,104.84,89.16617 +292094,104.17,87.8515 +292095,103.48,86.5477 +292096,102.77,85.256 +292097,103.44,89.18201 +292098,102.82,87.8418 +292099,102.17,86.5126 +292100,101.49,85.1958 +292101,102.05,89.1968 +292102,101.46,87.8316 +292103,100.85,86.4779 +292104,100.21,85.1367 +292105,100.66,89.21052 +292106,100.1,87.8212 +292107,99.529,86.4435 +292108,98.929,85.0787 +292109,99.261,89.22314 +292110,98.748,87.8103 +292111,98.211,86.4095 +292112,97.649,85.0217 +292113,97.865,89.23466 +292114,97.392,87.799 +292115,96.893,86.3758 +292116,96.369,84.9659 +292117,96.469,89.24506 +292118,96.035,87.7874 +292119,95.575,86.3425 +292120,95.09,84.9113 +292121,95.073,89.2543 +292122,94.678,87.7754 +292123,94.258,86.3096 +292124,93.812,84.8578 +292125,93.676,89.26239 +292126,93.322,87.7629 +292127,92.94,86.277 +292128,92.533,84.8055 +292129,92.279,89.26931 +292130,91.965,87.7501 +292131,91.623,86.2449 +292132,91.255,84.7543 +292133,90.882,89.27503 +292134,90.608,87.7368 +292135,90.306,86.2131 +292136,89.978,84.7044 +292137,89.484,89.27956 +292138,89.251,87.7231 +292139,88.99,86.1817 +292140,88.7,84.6557 +292141,88.086,89.28286 +292142,87.894,87.709 +292143,87.673,86.1507 +292144,87.423,84.6082 +292145,86.688,89.28493 +292146,86.537,87.6945 +292147,86.356,86.1201 +292148,86.147,84.5619 +292149,85.29,89.28576 +292150,85.18,87.6796 +292151,85.04,86.0899 +292152,84.87,84.5169 +292153,83.891,89.28533 +292154,83.823,87.6642 +292155,83.723,86.0601 +292156,83.594,84.4732 +292157,82.493,89.28363 +292158,82.466,87.6484 +292159,82.407,86.0308 +292160,82.318,84.4307 +292161,81.094,89.28065 +292162,81.109,87.6321 +292163,81.091,86.0018 +292164,81.042,84.3895 +292165,79.695,89.27639 +292166,79.752,87.6154 +292167,79.775,85.9733 +292168,79.766,84.3496 +292169,78.296,89.27082 +292170,78.395,87.5983 +292171,78.458,85.9452 +292172,78.49,84.311 +292173,76.898,89.26395 +292174,77.038,87.5807 +292175,77.142,85.9175 +292176,77.214,84.2737 +292177,75.499,89.25576 +292178,75.681,87.5627 +292179,75.826,85.8902 +292180,75.938,84.2377 +292181,74.1,89.24625 +292182,74.324,87.5442 +292183,74.51,85.8634 +292184,74.663,84.203 +292185,72.702,89.23541 +292186,72.967,87.5253 +292187,73.194,85.8369 +292188,73.387,84.1696 +292189,71.304,89.22324 +292190,71.61,87.5059 +292191,71.878,85.811 +292192,72.111,84.1375 +292193,69.905,89.20972 +292194,70.254,87.486 +292195,70.562,85.7854 +292196,70.835,84.1068 +292197,68.508,89.19486 +292198,68.897,87.4657 +292199,69.246,85.7603 +292200,69.559,84.0773 +292201,67.11,89.17864 +292202,67.541,87.4449 +292203,67.93,85.7356 +292204,68.282,84.0492 +292205,65.712,89.16107 +292206,66.185,87.4237 +292207,66.614,85.7114 +292208,67.006,84.0225 +292209,64.315,89.14215 +292210,64.828,87.402 +292211,65.298,85.6875 +292212,65.729,83.9971 +292213,62.919,89.12187 +292214,63.472,87.3799 +292215,63.982,85.6642 +292216,64.452,83.9729 +292217,61.522,89.10022 +292218,62.116,87.3573 +292219,62.666,85.6412 +292220,63.175,83.9502 +292221,60.126,89.07722 +292222,60.761,87.3342 +292223,61.349,85.6187 +292224,61.897,83.9287 +292225,58.731,89.05285 +292226,59.405,87.3107 +292227,60.033,85.5966 +292228,60.619,83.9086 +292229,57.336,89.02713 +292230,58.05,87.2867 +292231,58.716,85.575 +292232,59.341,83.8898 +292233,55.941,89.00005 +292234,56.695,87.2622 +292235,57.399,85.5538 +292236,58.062,83.8723 +292237,54.547,88.9716 +292238,55.34,87.2373 +292239,56.083,85.533 +292240,56.783,83.8561 +292241,53.154,88.9418 +292242,53.985,87.212 +292243,54.766,85.5127 +292244,55.503,83.8413 +292245,51.761,88.9107 +292246,52.63,87.1862 +292247,53.449,85.4928 +292248,54.223,83.8277 +292249,50.369,88.8782 +292250,51.276,87.1599 +292251,52.132,85.4733 +292252,52.942,83.8154 +292253,48.978,88.8444 +292254,49.922,87.1332 +292255,50.814,85.4542 +292256,51.661,83.8044 +292257,47.587,88.8092 +292258,48.568,87.106 +292259,49.497,85.4356 +292260,50.379,83.7947 +292261,46.197,88.7727 +292262,47.215,87.0784 +292263,48.179,85.4174 +292264,49.097,83.7863 +292265,44.808,88.7349 +292266,45.862,87.0504 +292267,46.861,85.3996 +292268,47.814,83.7792 +292269,43.419,88.6958 +292270,44.509,87.0219 +292271,45.543,85.3822 +292272,46.53,83.7732 +292273,42.031,88.6554 +292274,43.156,86.993 +292275,44.225,85.3652 +292276,45.245,83.7686 +292277,40.645,88.6137 +292278,41.804,86.9636 +292279,42.906,85.3486 +292280,43.96,83.7651 +292281,39.259,88.5707 +292282,40.451,86.9338 +292283,41.587,85.3324 +292284,42.674,83.7629 +292285,37.874,88.5264 +292286,39.1,86.9036 +292287,40.268,85.3167 +292288,41.388,83.7619 +292289,36.489,88.4809 +292290,37.748,86.873 +292291,38.949,85.3013 +292292,40.1,83.7621 +292293,35.106,88.4341 +292294,36.397,86.8419 +292295,37.63,85.2863 +292296,38.812,83.7635 +292297,33.724,88.3861 +292298,35.047,86.8104 +292299,36.31,85.2717 +292300,37.523,83.7661 +292301,32.343,88.3368 +292302,33.696,86.7786 +292303,34.99,85.2575 +292304,36.233,83.7698 +292305,30.963,88.2864 +292306,32.346,86.7463 +292307,33.67,85.2437 +292308,34.942,83.7746 +292309,29.584,88.2347 +292310,30.997,86.7136 +292311,32.349,85.2303 +292312,33.65,83.7806 +292313,28.206,88.1819 +292314,29.647,86.6805 +292315,31.028,85.2172 +292316,32.357,83.7876 +292317,26.829,88.1279 +292318,28.298,86.6471 +292319,29.707,85.2044 +292320,31.064,83.7958 +292321,25.453,88.0728 +292322,26.95,86.6133 +292323,28.385,85.1921 +292324,29.769,83.805 +292325,24.078,88.0165 +292326,25.602,86.579 +292327,27.064,85.18 +292328,28.473,83.8153 +292329,22.705,87.9591 +292330,24.254,86.5445 +292331,25.742,85.1684 +292332,27.177,83.8267 +292333,21.333,87.9006 +292334,22.907,86.5095 +292335,24.419,85.157 +292336,25.879,83.839 +292337,19.962,87.8411 +292338,21.56,86.4742 +292339,23.096,85.146 +292340,24.58,83.8524 +292341,18.592,87.7805 +292342,20.214,86.4386 +292343,21.773,85.1354 +292344,23.28,83.8667 +292345,17.223,87.7189 +292346,18.868,86.4026 +292347,20.45,85.125 +292348,21.979,83.882 +292349,15.856,87.6562 +292350,17.522,86.3662 +292351,19.126,85.115 +292352,20.677,83.8982 +292353,14.49,87.5926 +292354,16.177,86.3296 +292355,17.802,85.1052 +292356,19.374,83.9153 +292357,13.125,87.528 +292358,14.832,86.2926 +292359,16.477,85.0958 +292360,18.069,83.9334 +292361,11.762,87.4625 +292362,13.488,86.2553 +292363,15.152,85.0866 +292364,16.764,83.9523 +292365,10.4,87.396 +292366,12.145,86.2177 +292367,13.827,85.0778 +292368,15.457,83.972 +292369,9.0393,87.3286 +292370,10.801,86.1798 +292371,12.502,85.0692 +292372,14.149,83.9926 +292373,7.68,87.2604 +292374,9.4586,86.1416 +292375,11.176,85.0608 +292376,12.84,84.014 +292377,6.3221,87.1913 +292378,8.1163,86.1031 +292379,9.8491,85.0528 +292380,11.529,84.0362 +292381,4.9656,87.1214 +292382,6.7745,86.0644 +292383,8.5223,85.045 +292384,10.217,84.0591 +292385,3.6104,87.0506 +292386,5.4331,86.0254 +292387,7.195,85.0374 +292388,8.9044,84.0828 +292389,2.2567,86.9791 +292390,4.0923,85.9861 +292391,5.8674,85.0301 +292392,7.5902,84.1072 +292393,0.90445,86.9069 +292394,2.752,85.9466 +292395,4.5394,85.023 +292396,6.2746,84.1322 +292397,359.55,86.8339 +292398,1.4121,85.9068 +292399,3.2109,85.0161 +292400,4.9578,84.1579 +292401,358.2,86.7603 +292402,0.072764,85.8668 +292403,1.8821,85.0094 +292404,3.6397,84.1843 +292405,356.86,86.6859 +292406,358.73,85.8266 +292407,0.5528,85.0029 +292408,2.3202,84.2112 +292409,355.51,86.611 +292410,357.4,85.7862 +292411,359.22,84.9967 +292412,0.99942,84.2387 +292413,354.16,86.5354 +292414,356.06,85.7456 +292415,357.89,84.9906 +292416,359.68,84.2668 +292417,352.82,86.4592 +292418,354.72,85.7047 +292419,356.56,84.9847 +292420,358.35,84.2954 +292421,351.48,86.3825 +292422,353.38,85.6637 +292423,355.23,84.9789 +292424,357.03,84.3245 +292425,350.14,86.3053 +292426,352.05,85.6226 +292427,353.9,84.9733 +292428,355.7,84.3541 +292429,348.8,86.2275 +292430,350.71,85.5812 +292431,352.57,84.9679 +292432,354.38,84.3841 +292433,347.46,86.1493 +292434,349.38,85.5397 +292435,351.24,84.9625 +292436,353.05,84.4145 +292437,346.13,86.0707 +292438,348.04,85.4981 +292439,349.9,84.9574 +292440,351.72,84.4454 +292441,344.79,85.9916 +292442,346.71,85.4563 +292443,348.57,84.9523 +292444,350.38,84.4766 +292445,343.46,85.9122 +292446,345.37,85.4144 +292447,347.24,84.9473 +292448,349.05,84.5081 +292449,342.13,85.8325 +292450,344.04,85.3723 +292451,345.9,84.9425 +292452,347.72,84.5399 +292453,340.8,85.7524 +292454,342.71,85.3302 +292455,344.57,84.9377 +292456,346.38,84.572 +292457,339.47,85.672 +292458,341.38,85.288 +292459,343.23,84.933 +292460,345.04,84.6043 +292461,338.14,85.5914 +292462,340.04,85.2456 +292463,341.9,84.9284 +292464,343.71,84.6369 +292465,336.81,85.5106 +292466,338.71,85.2033 +292467,340.56,84.9239 +292468,342.37,84.6697 +292469,335.49,85.4295 +292470,337.38,85.1608 +292471,339.23,84.9194 +292472,341.02,84.7026 +292473,334.17,85.3483 +292474,336.05,85.1183 +292475,337.89,84.9149 +292476,339.68,84.7356 +292477,332.85,85.267 +292478,334.72,85.0757 +292479,336.55,84.9105 +292480,338.34,84.7688 +292481,331.53,85.1856 +292482,333.39,85.0331 +292483,335.21,84.9061 +292484,336.99,84.802 +292485,330.21,85.1041 +292486,332.07,84.9905 +292487,333.88,84.9017 +292488,335.65,84.8353 +292489,328.89,85.0226 +292490,330.74,84.9479 +292491,332.54,84.8973 +292492,334.3,84.8686 +292493,327.58,84.9411 +292494,329.41,84.9052 +292495,331.2,84.8929 +292496,332.95,84.9018 +292497,326.26,84.8596 +292498,328.08,84.8626 +292499,329.86,84.8885 +292500,331.6,84.9351 +292501,324.95,84.7782 +292502,326.76,84.82 +292503,328.52,84.8841 +292504,330.24,84.9682 +292505,323.64,84.6968 +292506,325.43,84.7774 +292507,327.18,84.8796 +292508,328.89,85.0013 +292509,322.33,84.6156 +292510,324.1,84.7348 +292511,325.84,84.8751 +292512,327.54,85.0342 +292513,321.02,84.5346 +292514,322.78,84.6923 +292515,324.5,84.8705 +292516,326.18,85.067 +292517,319.71,84.4537 +292518,321.45,84.6498 +292519,323.16,84.8659 +292520,324.82,85.0996 +292521,318.41,84.373 +292522,320.13,84.6075 +292523,321.82,84.8612 +292524,323.46,85.132 +292525,317.1,84.2926 +292526,318.81,84.5651 +292527,320.47,84.8564 +292528,322.1,85.1642 +292529,315.8,84.2124 +292530,317.48,84.5229 +292531,319.13,84.8515 +292532,320.74,85.196 +292533,314.5,84.1326 +292534,316.16,84.4808 +292535,317.79,84.8465 +292536,319.38,85.2276 +292537,313.2,84.0531 +292538,314.84,84.4388 +292539,316.45,84.8414 +292540,318.02,85.2589 +292541,311.9,83.974 +292542,313.52,84.3969 +292543,315.1,84.8361 +292544,316.65,85.2898 +292545,310.6,83.8952 +292546,312.2,84.3551 +292547,313.76,84.8308 +292548,315.28,85.3203 +292549,309.3,83.8169 +292550,310.88,84.3134 +292551,312.41,84.8253 +292552,313.92,85.3504 +292553,308.01,83.7391 +292554,309.56,84.2719 +292555,311.07,84.8196 +292556,312.55,85.3801 +292557,306.71,83.6617 +292558,308.24,84.2306 +292559,309.72,84.8138 +292560,311.18,85.4093 +292561,305.42,83.5848 +292562,306.92,84.1894 +292563,308.38,84.8078 +292564,309.81,85.4381 +292565,304.13,83.5085 +292566,305.6,84.1484 +292567,307.03,84.8016 +292568,308.44,85.4663 +292569,302.84,83.4327 +292570,304.28,84.1076 +292571,305.69,84.7953 +292572,307.06,85.4939 +292573,301.55,83.3576 +292574,302.96,84.0669 +292575,304.34,84.7887 +292576,305.69,85.5211 +292577,300.26,83.283 +292578,301.64,84.0265 +292579,302.99,84.782 +292580,304.31,85.5476 +292581,298.97,83.2091 +292582,300.32,83.9863 +292583,301.64,84.775 +292584,302.94,85.5735 +292585,297.69,83.1359 +292586,299.01,83.9463 +292587,300.3,84.7678 +292588,301.56,85.5987 +292589,296.4,83.0634 +292590,297.69,83.9065 +292591,298.95,84.7604 +292592,300.18,85.6233 +292593,295.12,82.9916 +292594,296.37,83.8669 +292595,297.6,84.7528 +292596,298.8,85.6472 +292597,293.84,82.9206 +292598,295.06,83.8276 +292599,296.25,84.7449 +292600,297.42,85.6704 +292601,292.55,82.8503 +292602,293.74,83.7886 +292603,294.9,84.7367 +292604,296.04,85.6929 +292605,291.27,82.7809 +292606,292.43,83.7498 +292607,293.56,84.7283 +292608,294.66,85.7146 +292609,289.99,82.7123 +292610,291.11,83.7113 +292611,292.21,84.7196 +292612,293.27,85.7355 +292613,288.71,82.6445 +292614,289.8,83.673 +292615,290.86,84.7107 +292616,291.89,85.7556 +292617,287.43,82.5776 +292618,288.48,83.6351 +292619,289.51,84.7014 +292620,290.5,85.7748 +292621,286.16,82.5116 +292622,287.17,83.5974 +292623,288.16,84.6919 +292624,289.12,85.7933 +292625,284.88,82.4465 +292626,285.86,83.56 +292627,286.81,84.682 +292628,287.73,85.8108 +292629,283.6,82.3823 +292630,284.54,83.523 +292631,285.46,84.6719 +292632,286.34,85.8275 +292633,282.33,82.3191 +292634,283.23,83.4862 +292635,284.1,84.6615 +292636,284.95,85.8432 +292637,281.05,82.2569 +292638,281.92,83.4498 +292639,282.75,84.6507 +292640,283.56,85.858 +292641,279.78,82.1957 +292642,280.6,83.4137 +292643,281.4,84.6396 +292644,282.18,85.8719 +292645,278.5,82.1355 +292646,279.29,83.3779 +292647,280.05,84.6282 +292648,280.78,85.8848 +292649,277.23,82.0763 +292650,277.98,83.3424 +292651,278.7,84.6164 +292652,279.39,85.8967 +292653,275.96,82.0182 +292654,276.67,83.3073 +292655,277.35,84.6043 +292656,278,85.9076 +292657,274.69,81.9612 +292658,275.36,83.2726 +292659,276,84.5918 +292660,276.61,85.9174 +292661,273.42,81.9052 +292662,274.04,83.2382 +292663,274.64,84.579 +292664,275.22,85.9263 +292665,272.15,81.8504 +292666,272.73,83.2042 +292667,273.29,84.5659 +292668,273.82,85.934 +292669,270.88,81.7966 +292670,271.42,83.1705 +292671,271.94,84.5523 +292672,272.43,85.9407 +292673,269.61,81.744 +292674,270.11,83.1372 +292675,270.59,84.5384 +292676,271.04,85.9463 +292677,268.34,81.6926 +292678,268.8,83.1043 +292679,269.24,84.5241 +292680,269.64,85.9509 +292681,267.07,81.6423 +292682,267.49,83.0718 +292683,267.88,84.5095 +292684,268.25,85.9542 +292685,265.8,81.5932 +292686,266.18,83.0396 +292687,266.53,84.4944 +292688,266.85,85.9565 +292689,264.53,81.5453 +292690,264.87,83.0079 +292691,265.18,84.479 +292692,265.46,85.9576 +292693,263.27,81.4986 +292694,263.56,82.9765 +292695,263.83,84.4632 +292696,264.06,85.9576 +292697,262,81.4531 +292698,262.25,82.9455 +292699,262.47,84.447 +292700,262.66,85.9564 +292701,260.73,81.4088 +292702,260.94,82.915 +292703,261.12,84.4303 +292704,261.27,85.954 +292705,259.46,81.3658 +292706,259.63,82.8848 +292707,259.77,84.4133 +292708,259.87,85.9504 +292709,258.2,81.3239 +292710,258.32,82.855 +292711,258.41,84.3959 +292712,258.47,85.9456 +292713,256.93,81.2834 +292714,257.01,82.8257 +292715,257.06,84.378 +292716,257.08,85.9396 +292717,255.66,81.2441 +292718,255.7,82.7968 +292719,255.71,84.3598 +292720,255.68,85.9324 +292721,254.4,81.206 +292722,254.39,82.7683 +292723,254.35,84.3411 +292724,254.28,85.9239 +292725,253.13,81.1693 +292726,253.08,82.7402 +292727,253,84.322 +292728,252.89,85.9142 +292729,251.87,81.1338 +292730,251.77,82.7125 +292731,251.65,84.3025 +292732,251.49,85.9033 +292733,250.6,81.0995 +292734,250.46,82.6853 +292735,250.3,84.2826 +292736,250.09,85.8911 +292737,249.33,81.0666 +292738,249.16,82.6584 +292739,248.94,84.2622 +292740,248.7,85.8777 +292741,248.07,81.035 +292742,247.85,82.632 +292743,247.59,84.2415 +292744,247.3,85.863 +292745,246.8,81.0046 +292746,246.54,82.6061 +292747,246.24,84.2203 +292748,245.9,85.847 +292749,245.53,80.9756 +292750,245.23,82.5805 +292751,244.89,84.1986 +292752,244.51,85.8298 +292753,244.27,80.9478 +292754,243.92,82.5554 +292755,243.53,84.1766 +292756,243.11,85.8113 +292757,243,80.9213 +292758,242.61,82.5307 +292759,242.18,84.1541 +292760,241.71,85.7915 +292761,241.73,80.8961 +292762,241.3,82.5065 +292763,240.83,84.1312 +292764,240.32,85.7705 +292765,240.46,80.8723 +292766,239.99,82.4827 +292767,239.48,84.1078 +292768,238.92,85.7482 +292769,239.19,80.8497 +292770,238.68,82.4593 +292771,238.13,84.0841 +292772,237.53,85.7245 +292773,237.93,80.8284 +292774,237.37,82.4363 +292775,236.77,84.0599 +292776,236.13,85.6997 +292777,236.66,80.8084 +292778,236.06,82.4137 +292779,235.42,84.0352 +292780,234.74,85.6735 +292781,235.39,80.7896 +292782,234.75,82.3916 +292783,234.07,84.0102 +292784,233.35,85.646 +292785,234.12,80.7722 +292786,233.44,82.3699 +292787,232.72,83.9847 +292788,231.95,85.6173 +292789,232.85,80.756 +292790,232.13,82.3487 +292791,231.37,83.9588 +292792,230.56,85.5873 +292793,231.58,80.7411 +292794,230.82,82.3279 +292795,230.02,83.9325 +292796,229.17,85.5561 +292797,230.31,80.7275 +292798,229.51,82.3074 +292799,228.67,83.9057 +292800,227.78,85.5235 +292801,229.04,80.7151 +292802,228.2,82.2874 +292803,227.32,83.8786 +292804,226.39,85.4897 +292805,227.76,80.704 +292806,226.89,82.2679 +292807,225.97,83.851 +292808,225,85.4547 +292809,226.49,80.6941 +292810,225.58,82.2487 +292811,224.62,83.823 +292812,223.61,85.4184 +292813,225.22,80.6855 +292814,224.27,82.2299 +292815,223.27,83.7945 +292816,222.22,85.3808 +292817,223.94,80.6781 +292818,222.95,82.2116 +292819,221.92,83.7657 +292820,220.83,85.3421 +292821,222.67,80.6719 +292822,221.64,82.1937 +292823,220.57,83.7365 +292824,219.44,85.3021 +292825,221.39,80.6669 +292826,220.33,82.1761 +292827,219.22,83.7068 +292828,218.06,85.2608 +292829,220.12,80.6631 +292830,219.02,82.159 +292831,217.87,83.6768 +292832,216.67,85.2184 +292833,218.84,80.6605 +292834,217.71,82.1423 +292835,216.52,83.6464 +292836,215.29,85.1748 +292837,217.56,80.659 +292838,216.39,82.1259 +292839,215.18,83.6155 +292840,213.9,85.13 +292841,216.28,80.6587 +292842,215.08,82.11 +292843,213.83,83.5843 +292844,212.52,85.0839 +292845,215,80.6596 +292846,213.77,82.0944 +292847,212.48,83.5527 +292848,211.14,85.0368 +292849,213.72,80.6615 +292850,212.45,82.0792 +292851,211.14,83.5207 +292852,209.76,84.9885 +292853,212.44,80.6646 +292854,211.14,82.0644 +292855,209.79,83.4884 +292856,208.38,84.939 +292857,211.16,80.6688 +292858,209.83,82.0499 +292859,208.44,83.4556 +292860,207,84.8884 +292861,209.87,80.6741 +292862,208.51,82.0358 +292863,207.1,83.4225 +292864,205.62,84.8367 +292865,208.59,80.6804 +292866,207.2,82.0221 +292867,205.75,83.3891 +292868,204.24,84.7839 +292869,207.3,80.6878 +292870,205.88,82.0087 +292871,204.41,83.3553 +292872,202.87,84.73 +292873,206.02,80.6962 +292874,204.57,81.9957 +292875,203.06,83.3211 +292876,201.49,84.6751 +292877,204.73,80.7056 +292878,203.25,81.983 +292879,201.72,83.2866 +292880,200.12,84.6191 +292881,203.44,80.716 +292882,201.94,81.9707 +292883,200.38,83.2517 +292884,198.75,84.562 +292885,202.15,80.7274 +292886,200.62,81.9587 +292887,199.03,83.2166 +292888,197.38,84.504 +292889,200.86,80.7398 +292890,199.3,81.947 +292891,197.69,83.1811 +292892,196.01,84.4449 +292893,199.57,80.7531 +292894,197.99,81.9356 +292895,196.35,83.1452 +292896,194.64,84.3849 +292897,198.27,80.7673 +292898,196.67,81.9245 +292899,195.01,83.1091 +292900,193.28,84.3239 +292901,196.98,80.7824 +292902,195.35,81.9138 +292903,193.66,83.0726 +292904,191.91,84.262 +292905,195.68,80.7983 +292906,194.03,81.9033 +292907,192.32,83.0359 +292908,190.55,84.1991 +292909,194.39,80.8152 +292910,192.71,81.8931 +292911,190.98,82.9989 +292912,189.18,84.1354 +292913,193.09,80.8328 +292914,191.4,81.8833 +292915,189.64,82.9615 +292916,187.82,84.0708 +292917,191.79,80.8513 +292918,190.08,81.8736 +292919,188.3,82.9239 +292920,186.46,84.0053 +292921,190.49,80.8705 +292922,188.76,81.8643 +292923,186.96,82.8861 +292924,185.1,83.939 +292925,189.19,80.8905 +292926,187.44,81.8552 +292927,185.63,82.8479 +292928,183.75,83.8719 +292929,187.88,80.9113 +292930,186.12,81.8464 +292931,184.29,82.8095 +292932,182.39,83.804 +292933,186.58,80.9327 +292934,184.8,81.8378 +292935,182.95,82.7709 +292936,181.04,83.7354 +292937,185.27,80.9549 +292938,183.47,81.8294 +292939,181.61,82.732 +292940,179.68,83.666 +292941,183.97,80.9777 +292942,182.15,81.8213 +292943,180.28,82.6929 +292944,178.33,83.5959 +292945,182.66,81.0012 +292946,180.83,81.8134 +292947,178.94,82.6536 +292948,176.98,83.5251 +292949,181.35,81.0252 +292950,179.51,81.8057 +292951,177.61,82.6141 +292952,175.63,83.4536 +292953,180.04,81.0499 +292954,178.18,81.7982 +292955,176.27,82.5743 +292956,174.29,83.3815 +292957,178.72,81.0751 +292958,176.86,81.7909 +292959,174.94,82.5344 +292960,172.94,83.3088 +292961,177.41,81.1009 +292962,175.54,81.7838 +292963,173.6,82.4943 +292964,171.6,83.2356 +292965,176.09,81.1271 +292966,174.21,81.7769 +292967,172.27,82.454 +292968,170.26,83.1617 +292969,174.78,81.1539 +292970,172.89,81.7701 +292971,170.94,82.4135 +292972,168.92,83.0874 +292973,173.46,81.1811 +292974,171.56,81.7635 +292975,169.6,82.3729 +292976,167.58,83.0125 +292977,172.14,81.2088 +292978,170.24,81.757 +292979,168.27,82.3321 +292980,166.24,82.9372 +292981,170.82,81.2368 +292982,168.91,81.7507 +292983,166.94,82.2912 +292984,164.9,82.8614 +292985,169.5,81.2652 +292986,167.58,81.7445 +292987,165.61,82.2501 +292988,163.57,82.7852 +292989,168.17,81.294 +292990,166.26,81.7385 +292991,164.28,82.209 +292992,162.24,82.7086 +292993,166.85,81.3231 +292994,164.93,81.7325 +292995,162.95,82.1677 +292996,160.9,82.6316 +292997,165.52,81.3525 +292998,163.6,81.7267 +292999,161.62,82.1263 +293000,159.58,82.5543 +293001,164.19,81.3822 +293002,162.27,81.721 +293003,160.29,82.0848 +293004,158.25,82.4767 +293005,162.86,81.4121 +293006,160.94,81.7153 +293007,158.96,82.0432 +293008,156.92,82.3989 +293009,161.53,81.4422 +293010,159.61,81.7097 +293011,157.64,82.0016 +293012,155.6,82.3208 +293013,160.2,81.4725 +293014,158.28,81.7042 +293015,156.31,81.9599 +293016,154.27,82.2425 +293017,158.86,81.5029 +293018,156.95,81.6987 +293019,154.98,81.9181 +293020,152.95,82.164 +293021,157.53,81.5335 +293022,155.62,81.6933 +293023,153.66,81.8763 +293024,151.63,82.0853 +293025,156.19,81.5642 +293026,154.29,81.6879 +293027,152.33,81.8344 +293028,150.31,82.0065 +293029,154.85,81.5949 +293030,152.96,81.6826 +293031,151.01,81.7926 +293032,149,81.9276 +293033,153.51,81.6257 +293034,151.62,81.6773 +293035,149.68,81.7507 +293036,147.68,81.8487 +293037,152.17,81.6565 +293038,150.29,81.6719 +293039,148.36,81.7088 +293040,146.37,81.7697 +293041,150.83,81.6873 +293042,148.96,81.6666 +293043,147.04,81.6669 +293044,145.05,81.6907 +293045,149.48,81.718 +293046,147.62,81.6613 +293047,145.71,81.625 +293048,143.74,81.6118 +293049,148.14,81.7487 +293050,146.29,81.656 +293051,144.39,81.5831 +293052,142.43,81.5329 +293053,146.79,81.7793 +293054,144.96,81.6506 +293055,143.07,81.5413 +293056,141.13,81.4541 +293057,145.44,81.8097 +293058,143.62,81.6452 +293059,141.75,81.4995 +293060,139.82,81.3754 +293061,144.09,81.84 +293062,142.29,81.6397 +293063,140.43,81.4578 +293064,138.51,81.2968 +293065,142.74,81.8701 +293066,140.95,81.6342 +293067,139.11,81.4161 +293068,137.21,81.2185 +293069,141.39,81.9 +293070,139.61,81.6286 +293071,137.79,81.3745 +293072,135.91,81.1403 +293073,140.03,81.9297 +293074,138.28,81.623 +293075,136.47,81.333 +293076,134.61,81.0623 +293077,138.68,81.9591 +293078,136.94,81.6172 +293079,135.15,81.2916 +293080,133.31,80.9847 +293081,137.32,81.9882 +293082,135.6,81.6114 +293083,133.83,81.2503 +293084,132.01,80.9073 +293085,135.96,82.017 +293086,134.26,81.6054 +293087,132.52,81.209 +293088,130.72,80.8302 +293089,134.6,82.0455 +293090,132.92,81.5994 +293091,131.2,81.168 +293092,129.42,80.7535 +293093,133.24,82.0736 +293094,131.59,81.5932 +293095,129.88,81.127 +293096,128.13,80.6772 +293097,131.88,82.1012 +293098,130.25,81.5869 +293099,128.57,81.0862 +293100,126.84,80.6013 +293101,130.52,82.1285 +293102,128.91,81.5805 +293103,127.25,81.0455 +293104,125.55,80.5258 +293105,129.15,82.1553 +293106,127.57,81.5739 +293107,125.93,81.005 +293108,124.26,80.4508 +293109,127.79,82.1816 +293110,126.22,81.5671 +293111,124.62,80.9646 +293112,122.97,80.3763 +293113,126.42,82.2075 +293114,124.88,81.5602 +293115,123.31,80.9244 +293116,121.68,80.3023 +293117,125.05,82.2328 +293118,123.54,81.5531 +293119,121.99,80.8844 +293120,120.4,80.2289 +293121,123.68,82.2575 +293122,122.2,81.5459 +293123,120.68,80.8446 +293124,119.11,80.156 +293125,122.31,82.2817 +293126,120.86,81.5384 +293127,119.37,80.805 +293128,117.83,80.0837 +293129,120.94,82.3053 +293130,119.52,81.5307 +293131,118.05,80.7656 +293132,116.55,80.0121 +293133,119.57,82.3283 +293134,118.17,81.5229 +293135,116.74,80.7264 +293136,115.27,79.941 +293137,118.19,82.3506 +293138,116.83,81.5148 +293139,115.43,80.6875 +293140,113.99,79.871 +293141,116.82,82.3722 +293142,115.49,81.5065 +293143,114.12,80.6488 +293144,112.71,79.801 +293145,115.44,82.3932 +293146,114.14,81.4979 +293147,112.81,80.6103 +293148,111.43,79.732 +293149,114.06,82.4134 +293150,112.8,81.4892 +293151,111.5,80.5721 +293152,110.15,79.664 +293153,112.68,82.4329 +293154,111.45,81.4801 +293155,110.19,80.5341 +293156,108.88,79.597 +293157,111.31,82.4517 +293158,110.11,81.4709 +293159,108.88,80.4964 +293160,107.61,79.53 +293161,109.93,82.4696 +293162,108.76,81.4613 +293163,107.57,80.459 +293164,106.33,79.465 +293165,108.54,82.4868 +293166,107.42,81.4515 +293167,106.26,80.4218 +293168,105.06,79.4 +293169,107.16,82.5031 +293170,106.07,81.4414 +293171,104.95,80.385 +293172,103.79,79.336 +293173,105.78,82.5186 +293174,104.73,81.4311 +293175,103.64,80.3484 +293176,102.52,79.273 +293177,104.39,82.5333 +293178,103.38,81.4204 +293179,102.33,80.3121 +293180,101.25,79.21 +293181,103.01,82.547 +293182,102.03,81.4095 +293183,101.02,80.2762 +293184,99.98,79.149 +293185,101.62,82.5599 +293186,100.69,81.3982 +293187,99.717,80.2405 +293188,98.712,79.089 +293189,100.24,82.5718 +293190,99.34,81.3867 +293191,98.41,80.2052 +293192,97.445,79.029 +293193,98.851,82.5828 +293194,97.993,81.3748 +293195,97.103,80.1702 +293196,96.179,78.971 +293197,97.463,82.5929 +293198,96.646,81.3626 +293199,95.796,80.1356 +293200,94.913,78.914 +293201,96.075,82.602 +293202,95.298,81.3501 +293203,94.49,80.1013 +293204,93.648,78.857 +293205,94.686,82.6101 +293206,93.95,81.3373 +293207,93.184,80.0673 +293208,92.384,78.802 +293209,93.296,82.6172 +293210,92.602,81.3241 +293211,91.878,80.0337 +293212,91.121,78.748 +293213,91.906,82.6232 +293214,91.254,81.3106 +293215,90.572,80.0004 +293216,89.858,78.695 +293217,90.515,82.6283 +293218,89.906,81.2967 +293219,89.266,79.968 +293220,88.595,78.642 +293221,89.123,82.6323 +293222,88.558,81.2825 +293223,87.961,79.935 +293224,87.333,78.592 +293225,87.731,82.6352 +293226,87.209,81.2679 +293227,86.656,79.903 +293228,86.072,78.542 +293229,86.338,82.6371 +293230,85.86,81.253 +293231,85.351,79.871 +293232,84.811,78.493 +293233,84.945,82.6378 +293234,84.511,81.2376 +293235,84.046,79.84 +293236,83.55,78.445 +293237,83.552,82.6375 +293238,83.162,81.222 +293239,82.742,79.809 +293240,82.29,78.399 +293241,82.158,82.6361 +293242,81.813,81.2059 +293243,81.437,79.778 +293244,81.031,78.354 +293245,80.764,82.6335 +293246,80.464,81.1895 +293247,80.133,79.748 +293248,79.771,78.31 +293249,79.37,82.6298 +293250,79.115,81.1727 +293251,78.829,79.718 +293252,78.512,78.267 +293253,77.975,82.625 +293254,77.766,81.1555 +293255,77.525,79.688 +293256,77.253,78.225 +293257,76.58,82.619 +293258,76.416,81.138 +293259,76.221,79.659 +293260,75.995,78.185 +293261,75.185,82.6119 +293262,75.067,81.12 +293263,74.917,79.631 +293264,74.736,78.145 +293265,73.79,82.6036 +293266,73.718,81.1017 +293267,73.613,79.603 +293268,73.478,78.107 +293269,72.394,82.5941 +293270,72.368,81.0829 +293271,72.31,79.575 +293272,72.22,78.071 +293273,70.999,82.5834 +293274,71.019,81.0638 +293275,71.006,79.547 +293276,70.962,78.035 +293277,69.603,82.5715 +293278,69.669,81.0442 +293279,69.702,79.52 +293280,69.704,78.001 +293281,68.207,82.5585 +293282,68.32,81.0243 +293283,68.399,79.494 +293284,68.446,77.968 +293285,66.812,82.5442 +293286,66.97,81.004 +293287,67.095,79.468 +293288,67.188,77.936 +293289,65.416,82.5288 +293290,65.621,80.9832 +293291,65.792,79.442 +293292,65.93,77.905 +293293,64.02,82.5121 +293294,64.272,80.9621 +293295,64.488,79.416 +293296,64.672,77.876 +293297,62.625,82.4942 +293298,62.923,80.9405 +293299,63.185,79.392 +293300,63.413,77.848 +293301,61.23,82.4751 +293302,61.573,80.9186 +293303,61.881,79.367 +293304,62.155,77.821 +293305,59.835,82.4548 +293306,60.224,80.8962 +293307,60.578,79.343 +293308,60.896,77.796 +293309,58.44,82.4333 +293310,58.875,80.8734 +293311,59.274,79.319 +293312,59.638,77.772 +293313,57.045,82.4105 +293314,57.527,80.8502 +293315,57.97,79.296 +293316,58.379,77.749 +293317,55.651,82.3866 +293318,56.178,80.8267 +293319,56.666,79.273 +293320,57.119,77.727 +293321,54.256,82.3614 +293322,54.829,80.8027 +293323,55.363,79.251 +293324,55.86,77.707 +293325,52.863,82.335 +293326,53.481,80.7783 +293327,54.059,79.229 +293328,54.6,77.687 +293329,51.469,82.3073 +293330,52.133,80.7535 +293331,52.755,79.207 +293332,53.339,77.669 +293333,50.077,82.2785 +293334,50.784,80.7283 +293335,51.45,79.186 +293336,52.078,77.653 +293337,48.684,82.2484 +293338,49.437,80.7026 +293339,50.146,79.166 +293340,50.817,77.637 +293341,47.292,82.2172 +293342,48.089,80.6766 +293343,48.842,79.145 +293344,49.555,77.623 +293345,45.901,82.1847 +293346,46.741,80.6502 +293347,47.537,79.125 +293348,48.293,77.61 +293349,44.51,82.151 +293350,45.394,80.6234 +293351,46.232,79.106 +293352,47.03,77.598 +293353,43.12,82.1162 +293354,44.047,80.5962 +293355,44.927,79.087 +293356,45.767,77.588 +293357,41.73,82.0801 +293358,42.7,80.5686 +293359,43.622,79.068 +293360,44.503,77.579 +293361,40.341,82.0429 +293362,41.353,80.5406 +293363,42.317,79.05 +293364,43.238,77.571 +293365,38.953,82.0045 +293366,40.007,80.5122 +293367,41.012,79.032 +293368,41.973,77.564 +293369,37.566,81.9649 +293370,38.661,80.4835 +293371,39.706,79.015 +293372,40.707,77.558 +293373,36.179,81.9242 +293374,37.315,80.4543 +293375,38.4,78.998 +293376,39.44,77.553 +293377,34.793,81.8823 +293378,35.97,80.4248 +293379,37.094,78.981 +293380,38.172,77.55 +293381,33.408,81.8393 +293382,34.624,80.3949 +293383,35.787,78.965 +293384,36.904,77.548 +293385,32.024,81.7952 +293386,33.279,80.3646 +293387,34.481,78.949 +293388,35.635,77.547 +293389,30.641,81.7499 +293390,31.935,80.334 +293391,33.174,78.933 +293392,34.364,77.547 +293393,29.259,81.7035 +293394,30.591,80.303 +293395,31.866,78.918 +293396,33.094,77.548 +293397,27.877,81.6561 +293398,29.247,80.2716 +293399,30.559,78.903 +293400,31.822,77.55 +293401,26.497,81.6075 +293402,27.903,80.2399 +293403,29.251,78.889 +293404,30.549,77.553 +293405,25.118,81.5579 +293406,26.56,80.2078 +293407,27.943,78.875 +293408,29.275,77.558 +293409,23.739,81.5072 +293410,25.217,80.1754 +293411,26.635,78.861 +293412,28,77.563 +293413,22.362,81.4555 +293414,23.875,80.1426 +293415,25.326,78.848 +293416,26.725,77.57 +293417,20.986,81.4028 +293418,22.533,80.1095 +293419,24.017,78.835 +293420,25.448,77.577 +293421,19.611,81.3491 +293422,21.191,80.0761 +293423,22.708,78.822 +293424,24.17,77.586 +293425,18.237,81.2943 +293426,19.85,80.0424 +293427,21.398,78.81 +293428,22.891,77.595 +293429,16.865,81.2386 +293430,18.509,80.0083 +293431,20.088,78.798 +293432,21.611,77.606 +293433,15.493,81.1819 +293434,17.168,79.974 +293435,18.777,78.786 +293436,20.33,77.617 +293437,14.123,81.1243 +293438,15.828,79.939 +293439,17.466,78.775 +293440,19.047,77.629 +293441,12.755,81.0658 +293442,14.489,79.904 +293443,16.155,78.764 +293444,17.764,77.643 +293445,11.387,81.0063 +293446,13.15,79.869 +293447,14.844,78.753 +293448,16.479,77.657 +293449,10.021,80.946 +293450,11.811,79.833 +293451,13.532,78.743 +293452,15.193,77.672 +293453,8.6559,80.8848 +293454,10.473,79.798 +293455,12.219,78.732 +293456,13.906,77.688 +293457,7.2925,80.8227 +293458,9.135,79.761 +293459,10.906,78.723 +293460,12.617,77.704 +293461,5.9304,80.7598 +293462,7.7977,79.725 +293463,9.5933,78.713 +293464,11.327,77.722 +293465,4.5697,80.6962 +293466,6.4609,79.688 +293467,8.2797,78.704 +293468,10.036,77.74 +293469,3.2104,80.6317 +293470,5.1246,79.651 +293471,6.9656,78.695 +293472,8.744,77.759 +293473,1.8526,80.5665 +293474,3.7888,79.614 +293475,5.6511,78.686 +293476,7.4503,77.779 +293477,0.49624,80.5005 +293478,2.4535,79.577 +293479,4.3362,78.677 +293480,6.1552,77.799 +293481,359.14,80.4338 +293482,1.1187,79.539 +293483,3.0209,78.669 +293484,4.8588,77.82 +293485,357.79,80.3664 +293486,359.78,79.501 +293487,1.7051,78.661 +293488,3.561,77.842 +293489,356.44,80.2984 +293490,358.45,79.463 +293491,0.38884,78.653 +293492,2.2618,77.864 +293493,355.09,80.2297 +293494,357.12,79.425 +293495,359.07,78.645 +293496,0.96117,77.887 +293497,353.74,80.1604 +293498,355.78,79.387 +293499,357.75,78.638 +293500,359.66,77.911 +293501,352.39,80.0904 +293502,354.45,79.348 +293503,356.44,78.63 +293504,358.36,77.935 +293505,351.04,80.02 +293506,353.12,79.309 +293507,355.12,78.623 +293508,357.05,77.96 +293509,349.7,79.949 +293510,351.79,79.27 +293511,353.8,78.616 +293512,355.74,77.985 +293513,348.36,79.877 +293514,350.46,79.231 +293515,352.48,78.61 +293516,354.44,78.011 +293517,347.02,79.805 +293518,349.13,79.192 +293519,351.16,78.603 +293520,353.13,78.037 +293521,345.68,79.733 +293522,347.8,79.152 +293523,349.84,78.597 +293524,351.82,78.064 +293525,344.34,79.66 +293526,346.47,79.113 +293527,348.52,78.59 +293528,350.5,78.091 +293529,343,79.586 +293530,345.14,79.073 +293531,347.2,78.584 +293532,349.19,78.118 +293533,341.67,79.513 +293534,343.81,79.033 +293535,345.88,78.578 +293536,347.88,78.146 +293537,340.34,79.439 +293538,342.49,78.993 +293539,344.56,78.572 +293540,346.56,78.174 +293541,339.01,79.364 +293542,341.16,78.953 +293543,343.23,78.567 +293544,345.24,78.202 +293545,337.68,79.289 +293546,339.83,78.913 +293547,341.91,78.561 +293548,343.92,78.231 +293549,336.35,79.214 +293550,338.51,78.873 +293551,340.59,78.555 +293552,342.6,78.26 +293553,335.02,79.139 +293554,337.18,78.832 +293555,339.26,78.55 +293556,341.28,78.289 +293557,333.7,79.064 +293558,335.86,78.792 +293559,337.94,78.544 +293560,339.95,78.318 +293561,332.38,78.988 +293562,334.53,78.752 +293563,336.61,78.539 +293564,338.63,78.347 +293565,331.05,78.912 +293566,333.21,78.711 +293567,335.29,78.534 +293568,337.3,78.377 +293569,329.74,78.836 +293570,331.89,78.671 +293571,333.96,78.528 +293572,335.97,78.407 +293573,328.42,78.76 +293574,330.57,78.63 +293575,332.64,78.523 +293576,334.64,78.436 +293577,327.1,78.684 +293578,329.24,78.59 +293579,331.31,78.518 +293580,333.31,78.466 +293581,325.79,78.607 +293582,327.92,78.549 +293583,329.98,78.513 +293584,331.97,78.496 +293585,324.47,78.531 +293586,326.6,78.508 +293587,328.65,78.508 +293588,330.64,78.526 +293589,323.16,78.455 +293590,325.28,78.468 +293591,327.33,78.502 +293592,329.3,78.556 +293593,321.85,78.379 +293594,323.96,78.427 +293595,326,78.497 +293596,327.96,78.585 +293597,320.55,78.303 +293598,322.64,78.387 +293599,324.67,78.492 +293600,326.62,78.615 +293601,319.24,78.227 +293602,321.33,78.346 +293603,323.34,78.487 +293604,325.28,78.644 +293605,317.93,78.151 +293606,320.01,78.306 +293607,322.01,78.481 +293608,323.94,78.674 +293609,316.63,78.075 +293610,318.69,78.266 +293611,320.68,78.476 +293612,322.6,78.703 +293613,315.33,77.999 +293614,317.37,78.225 +293615,319.35,78.471 +293616,321.25,78.732 +293617,314.03,77.924 +293618,316.06,78.185 +293619,318.01,78.465 +293620,319.9,78.761 +293621,312.73,77.849 +293622,314.74,78.145 +293623,316.68,78.459 +293624,318.56,78.789 +293625,311.44,77.774 +293626,313.43,78.105 +293627,315.35,78.454 +293628,317.21,78.818 +293629,310.14,77.699 +293630,312.11,78.065 +293631,314.02,78.448 +293632,315.86,78.846 +293633,308.85,77.625 +293634,310.8,78.025 +293635,312.68,78.442 +293636,314.5,78.873 +293637,307.55,77.551 +293638,309.48,77.986 +293639,311.35,78.436 +293640,313.15,78.9 +293641,306.26,77.478 +293642,308.17,77.946 +293643,310.01,78.43 +293644,311.79,78.927 +293645,304.97,77.405 +293646,306.86,77.907 +293647,308.68,78.424 +293648,310.44,78.954 +293649,303.69,77.332 +293650,305.55,77.868 +293651,307.34,78.418 +293652,309.08,78.98 +293653,302.4,77.26 +293654,304.23,77.828 +293655,306.01,78.411 +293656,307.72,79.005 +293657,301.12,77.188 +293658,302.92,77.79 +293659,304.67,78.404 +293660,306.36,79.03 +293661,299.83,77.117 +293662,301.61,77.751 +293663,303.33,78.398 +293664,305,79.055 +293665,298.55,77.046 +293666,300.3,77.712 +293667,302,78.391 +293668,303.63,79.079 +293669,297.27,76.976 +293670,298.99,77.674 +293671,300.66,78.383 +293672,302.27,79.103 +293673,295.99,76.907 +293674,297.68,77.636 +293675,299.32,78.376 +293676,300.9,79.125 +293677,294.71,76.838 +293678,296.38,77.598 +293679,297.98,78.369 +293680,299.53,79.148 +293681,293.43,76.77 +293682,295.07,77.56 +293683,296.64,78.361 +293684,298.17,79.169 +293685,292.16,76.702 +293686,293.76,77.523 +293687,295.3,78.353 +293688,296.8,79.19 +293689,290.88,76.635 +293690,292.45,77.485 +293691,293.96,78.345 +293692,295.43,79.211 +293693,289.61,76.569 +293694,291.14,77.448 +293695,292.62,78.336 +293696,294.05,79.23 +293697,288.34,76.504 +293698,289.84,77.412 +293699,291.28,78.327 +293700,292.68,79.249 +293701,287.07,76.439 +293702,288.53,77.375 +293703,289.94,78.319 +293704,291.31,79.268 +293705,285.8,76.376 +293706,287.23,77.339 +293707,288.6,78.309 +293708,289.93,79.285 +293709,284.53,76.313 +293710,285.92,77.303 +293711,287.26,78.3 +293712,288.55,79.302 +293713,283.26,76.25 +293714,284.62,77.267 +293715,285.92,78.29 +293716,287.18,79.318 +293717,282,76.189 +293718,283.31,77.232 +293719,284.58,78.28 +293720,285.8,79.333 +293721,280.73,76.129 +293722,282.01,77.197 +293723,283.23,78.27 +293724,284.42,79.347 +293725,279.47,76.069 +293726,280.7,77.162 +293727,281.89,78.26 +293728,283.04,79.36 +293729,278.2,76.01 +293730,279.4,77.127 +293731,280.55,78.249 +293732,281.66,79.373 +293733,276.94,75.953 +293734,278.09,77.093 +293735,279.21,78.238 +293736,280.27,79.384 +293737,275.68,75.896 +293738,276.79,77.059 +293739,277.86,78.226 +293740,278.89,79.395 +293741,274.42,75.84 +293742,275.49,77.026 +293743,276.52,78.215 +293744,277.51,79.405 +293745,273.16,75.786 +293746,274.19,76.993 +293747,275.17,78.203 +293748,276.12,79.413 +293749,271.9,75.732 +293750,272.88,76.96 +293751,273.83,78.19 +293752,274.74,79.421 +293753,270.64,75.679 +293754,271.58,76.927 +293755,272.49,78.178 +293756,273.35,79.428 +293757,269.38,75.627 +293758,270.28,76.895 +293759,271.14,78.165 +293760,271.96,79.434 +293761,268.12,75.577 +293762,268.98,76.863 +293763,269.8,78.151 +293764,270.58,79.439 +293765,266.87,75.527 +293766,267.68,76.832 +293767,268.45,78.138 +293768,269.19,79.443 +293769,265.61,75.479 +293770,266.38,76.801 +293771,267.11,78.123 +293772,267.8,79.446 +293773,264.36,75.431 +293774,265.08,76.77 +293775,265.76,78.109 +293776,266.41,79.448 +293777,263.1,75.385 +293778,263.78,76.739 +293779,264.42,78.094 +293780,265.02,79.448 +293781,261.85,75.34 +293782,262.48,76.709 +293783,263.07,78.079 +293784,263.63,79.448 +293785,260.59,75.296 +293786,261.18,76.68 +293787,261.72,78.064 +293788,262.24,79.446 +293789,259.34,75.253 +293790,259.88,76.651 +293791,260.38,78.048 +293792,260.84,79.444 +293793,258.09,75.211 +293794,258.58,76.622 +293795,259.03,78.032 +293796,259.45,79.44 +293797,256.84,75.171 +293798,257.28,76.593 +293799,257.68,78.015 +293800,258.06,79.436 +293801,255.58,75.132 +293802,255.98,76.565 +293803,256.34,77.998 +293804,256.67,79.43 +293805,254.33,75.093 +293806,254.68,76.537 +293807,254.99,77.981 +293808,255.27,79.423 +293809,253.08,75.056 +293810,253.38,76.51 +293811,253.65,77.963 +293812,253.88,79.415 +293813,251.83,75.021 +293814,252.08,76.483 +293815,252.3,77.945 +293816,252.48,79.406 +293817,250.58,74.986 +293818,250.78,76.457 +293819,250.95,77.927 +293820,251.09,79.395 +293821,249.33,74.953 +293822,249.48,76.431 +293823,249.61,77.908 +293824,249.7,79.384 +293825,248.08,74.921 +293826,248.18,76.405 +293827,248.26,77.889 +293828,248.3,79.371 +293829,246.82,74.89 +293830,246.88,76.38 +293831,246.91,77.869 +293832,246.91,79.357 +293833,245.57,74.86 +293834,245.59,76.355 +293835,245.57,77.849 +293836,245.51,79.342 +293837,244.32,74.832 +293838,244.29,76.331 +293839,244.22,77.829 +293840,244.12,79.326 +293841,243.07,74.805 +293842,242.99,76.306 +293843,242.87,77.808 +293844,242.72,79.308 +293845,241.82,74.779 +293846,241.69,76.283 +293847,241.52,77.787 +293848,241.33,79.29 +293849,240.57,74.754 +293850,240.39,76.26 +293851,240.18,77.765 +293852,239.93,79.27 +293853,239.32,74.731 +293854,239.09,76.237 +293855,238.83,77.743 +293856,238.54,79.249 +293857,238.07,74.708 +293858,237.79,76.214 +293859,237.49,77.721 +293860,237.14,79.227 +293861,236.82,74.687 +293862,236.49,76.193 +293863,236.14,77.698 +293864,235.75,79.204 +293865,235.56,74.668 +293866,235.2,76.171 +293867,234.79,77.675 +293868,234.35,79.179 +293869,234.31,74.649 +293870,233.9,76.15 +293871,233.45,77.652 +293872,232.96,79.154 +293873,233.06,74.632 +293874,232.6,76.129 +293875,232.1,77.628 +293876,231.57,79.127 +293877,231.81,74.616 +293878,231.3,76.109 +293879,230.75,77.603 +293880,230.17,79.099 +293881,230.55,74.601 +293882,230,76.089 +293883,229.41,77.579 +293884,228.78,79.069 +293885,229.3,74.587 +293886,228.7,76.069 +293887,228.06,77.554 +293888,227.39,79.039 +293889,228.05,74.575 +293890,227.4,76.05 +293891,226.72,77.528 +293892,226,79.008 +293893,226.79,74.564 +293894,226.1,76.032 +293895,225.37,77.502 +293896,224.6,78.975 +293897,225.54,74.554 +293898,224.8,76.013 +293899,224.03,77.476 +293900,223.21,78.941 +293901,224.28,74.545 +293902,223.5,75.995 +293903,222.68,77.449 +293904,221.82,78.906 +293905,223.03,74.537 +293906,222.2,75.978 +293907,221.34,77.422 +293908,220.43,78.87 +293909,221.77,74.531 +293910,220.9,75.961 +293911,219.99,77.395 +293912,219.04,78.832 +293913,220.51,74.526 +293914,219.6,75.944 +293915,218.65,77.367 +293916,217.65,78.794 +293917,219.25,74.522 +293918,218.3,75.928 +293919,217.3,77.339 +293920,216.26,78.754 +293921,217.99,74.519 +293922,217,75.912 +293923,215.96,77.31 +293924,214.88,78.714 +293925,216.74,74.517 +293926,215.7,75.896 +293927,214.62,77.281 +293928,213.49,78.672 +293929,215.47,74.516 +293930,214.39,75.881 +293931,213.27,77.252 +293932,212.1,78.629 +293933,214.21,74.516 +293934,213.09,75.866 +293935,211.93,77.222 +293936,210.72,78.585 +293937,212.95,74.518 +293938,211.79,75.852 +293939,210.59,77.192 +293940,209.33,78.54 +293941,211.69,74.52 +293942,210.49,75.838 +293943,209.25,77.162 +293944,207.95,78.494 +293945,210.42,74.524 +293946,209.19,75.824 +293947,207.9,77.131 +293948,206.57,78.447 +293949,209.16,74.529 +293950,207.88,75.81 +293951,206.56,77.1 +293952,205.19,78.399 +293953,207.89,74.535 +293954,206.58,75.797 +293955,205.22,77.069 +293956,203.81,78.349 +293957,206.63,74.541 +293958,205.28,75.785 +293959,203.88,77.037 +293960,202.43,78.299 +293961,205.36,74.549 +293962,203.97,75.772 +293963,202.54,77.005 +293964,201.05,78.248 +293965,204.09,74.558 +293966,202.67,75.76 +293967,201.2,76.973 +293968,199.67,78.196 +293969,202.82,74.567 +293970,201.36,75.749 +293971,199.86,76.94 +293972,198.29,78.143 +293973,201.55,74.578 +293974,200.06,75.737 +293975,198.52,76.907 +293976,196.92,78.088 +293977,200.28,74.59 +293978,198.75,75.726 +293979,197.18,76.874 +293980,195.54,78.033 +293981,199,74.602 +293982,197.45,75.716 +293983,195.84,76.841 +293984,194.17,77.977 +293985,197.73,74.616 +293986,196.14,75.705 +293987,194.5,76.807 +293988,192.8,77.921 +293989,196.45,74.63 +293990,194.84,75.695 +293991,193.17,76.772 +293992,191.43,77.863 +293993,195.18,74.645 +293994,193.53,75.685 +293995,191.83,76.738 +293996,190.06,77.804 +293997,193.9,74.661 +293998,192.22,75.676 +293999,190.49,76.703 +294000,188.69,77.745 +294001,192.62,74.678 +294002,190.92,75.666 +294003,189.15,76.668 +294004,187.32,77.685 +294005,191.34,74.695 +294006,189.61,75.657 +294007,187.82,76.633 +294008,185.96,77.623 +294009,190.05,74.714 +294010,188.3,75.649 +294011,186.48,76.598 +294012,184.6,77.562 +294013,188.77,74.733 +294014,186.99,75.64 +294015,185.15,76.562 +294016,183.23,77.499 +294017,187.49,74.752 +294018,185.68,75.632 +294019,183.81,76.526 +294020,181.87,77.436 +294021,186.2,74.773 +294022,184.37,75.624 +294023,182.48,76.49 +294024,180.51,77.372 +294025,184.91,74.794 +294026,183.06,75.616 +294027,181.15,76.453 +294028,179.15,77.307 +294029,183.62,74.816 +294030,181.75,75.608 +294031,179.81,76.417 +294032,177.8,77.241 +294033,182.33,74.838 +294034,180.44,75.601 +294035,178.48,76.38 +294036,176.44,77.175 +294037,181.04,74.861 +294038,179.13,75.594 +294039,177.15,76.343 +294040,175.09,77.109 +294041,179.75,74.885 +294042,177.82,75.587 +294043,175.82,76.305 +294044,173.74,77.041 +294045,178.45,74.909 +294046,176.5,75.58 +294047,174.49,76.268 +294048,172.39,76.973 +294049,177.16,74.934 +294050,175.19,75.574 +294051,173.16,76.23 +294052,171.04,76.905 +294053,175.86,74.959 +294054,173.88,75.567 +294055,171.83,76.192 +294056,169.69,76.836 +294057,174.56,74.985 +294058,172.56,75.561 +294059,170.5,76.155 +294060,168.34,76.766 +294061,173.26,75.011 +294062,171.25,75.555 +294063,169.17,76.116 +294064,167,76.696 +294065,171.96,75.037 +294066,169.93,75.549 +294067,167.84,76.078 +294068,165.66,76.626 +294069,170.65,75.064 +294070,168.62,75.544 +294071,166.51,76.04 +294072,164.32,76.555 +294073,169.35,75.092 +294074,167.3,75.538 +294075,165.18,76.001 +294076,162.98,76.484 +294077,168.04,75.119 +294078,165.99,75.532 +294079,163.86,75.963 +294080,161.64,76.412 +294081,166.73,75.147 +294082,164.67,75.527 +294083,162.53,75.924 +294084,160.3,76.34 +294085,165.42,75.176 +294086,163.35,75.522 +294087,161.21,75.885 +294088,158.97,76.268 +294089,164.11,75.204 +294090,162.03,75.517 +294091,159.88,75.846 +294092,157.64,76.195 +294093,162.8,75.233 +294094,160.72,75.511 +294095,158.56,75.807 +294096,156.31,76.122 +294097,161.48,75.262 +294098,159.4,75.506 +294099,157.23,75.768 +294100,154.98,76.049 +294101,160.17,75.291 +294102,158.08,75.502 +294103,155.91,75.729 +294104,153.65,75.975 +294105,158.85,75.321 +294106,156.76,75.497 +294107,154.59,75.69 +294108,152.33,75.902 +294109,157.53,75.35 +294110,155.44,75.492 +294111,153.27,75.65 +294112,151,75.828 +294113,156.21,75.38 +294114,154.12,75.487 +294115,151.94,75.611 +294116,149.68,75.754 +294117,154.89,75.409 +294118,152.79,75.482 +294119,150.62,75.572 +294120,148.36,75.68 +294121,153.56,75.439 +294122,151.47,75.477 +294123,149.3,75.533 +294124,147.04,75.606 +294125,152.24,75.468 +294126,150.15,75.473 +294127,147.98,75.493 +294128,145.73,75.532 +294129,150.91,75.498 +294130,148.83,75.468 +294131,146.66,75.454 +294132,144.41,75.458 +294133,149.58,75.528 +294134,147.5,75.463 +294135,145.35,75.415 +294136,143.1,75.384 +294137,148.25,75.557 +294138,146.18,75.459 +294139,144.03,75.375 +294140,141.79,75.31 +294141,146.92,75.587 +294142,144.85,75.454 +294143,142.71,75.336 +294144,140.48,75.236 +294145,145.58,75.616 +294146,143.53,75.449 +294147,141.39,75.297 +294148,139.17,75.162 +294149,144.25,75.645 +294150,142.2,75.444 +294151,140.08,75.258 +294152,137.86,75.088 +294153,142.91,75.674 +294154,140.88,75.439 +294155,138.76,75.218 +294156,136.56,75.014 +294157,141.57,75.703 +294158,139.55,75.434 +294159,137.45,75.179 +294160,135.25,74.941 +294161,140.23,75.732 +294162,138.22,75.429 +294163,136.13,75.14 +294164,133.95,74.867 +294165,138.89,75.76 +294166,136.89,75.424 +294167,134.82,75.101 +294168,132.65,74.794 +294169,137.55,75.788 +294170,135.57,75.419 +294171,133.5,75.063 +294172,131.36,74.721 +294173,136.2,75.816 +294174,134.24,75.414 +294175,132.19,75.024 +294176,130.06,74.649 +294177,134.86,75.843 +294178,132.91,75.408 +294179,130.88,74.985 +294180,128.76,74.577 +294181,133.51,75.87 +294182,131.58,75.403 +294183,129.57,74.947 +294184,127.47,74.505 +294185,132.16,75.897 +294186,130.25,75.397 +294187,128.26,74.908 +294188,126.18,74.433 +294189,130.81,75.923 +294190,128.92,75.391 +294191,126.95,74.87 +294192,124.89,74.362 +294193,129.46,75.949 +294194,127.58,75.386 +294195,125.63,74.832 +294196,123.6,74.291 +294197,128.11,75.975 +294198,126.25,75.38 +294199,124.33,74.794 +294200,122.32,74.221 +294201,126.75,75.999 +294202,124.92,75.373 +294203,123.02,74.757 +294204,121.03,74.151 +294205,125.39,76.024 +294206,123.59,75.367 +294207,121.71,74.719 +294208,119.75,74.082 +294209,124.04,76.048 +294210,122.25,75.36 +294211,120.4,74.682 +294212,118.47,74.013 +294213,122.68,76.071 +294214,120.92,75.354 +294215,119.09,74.644 +294216,117.19,73.945 +294217,121.32,76.094 +294218,119.59,75.347 +294219,117.78,74.607 +294220,115.91,73.878 +294221,119.96,76.116 +294222,118.25,75.34 +294223,116.48,74.571 +294224,114.63,73.811 +294225,118.59,76.137 +294226,116.92,75.332 +294227,115.17,74.534 +294228,113.35,73.744 +294229,117.23,76.158 +294230,115.58,75.325 +294231,113.87,74.498 +294232,112.08,73.679 +294233,115.86,76.178 +294234,114.25,75.317 +294235,112.56,74.461 +294236,110.8,73.614 +294237,114.5,76.198 +294238,112.91,75.309 +294239,111.26,74.426 +294240,109.53,73.549 +294241,113.13,76.216 +294242,111.57,75.301 +294243,109.95,74.39 +294244,108.26,73.486 +294245,111.76,76.234 +294246,110.24,75.292 +294247,108.65,74.354 +294248,106.99,73.423 +294249,110.39,76.252 +294250,108.9,75.284 +294251,107.35,74.319 +294252,105.72,73.361 +294253,109.02,76.268 +294254,107.56,75.275 +294255,106.04,74.284 +294256,104.46,73.299 +294257,107.64,76.284 +294258,106.22,75.266 +294259,104.74,74.25 +294260,103.19,73.239 +294261,106.27,76.299 +294262,104.88,75.256 +294263,103.44,74.216 +294264,101.93,73.179 +294265,104.89,76.313 +294266,103.54,75.246 +294267,102.14,74.182 +294268,100.66,73.121 +294269,103.52,76.326 +294270,102.21,75.236 +294271,100.83,74.148 +294272,99.402,73.063 +294273,102.14,76.338 +294274,100.87,75.226 +294275,99.533,74.114 +294276,98.141,73.006 +294277,100.76,76.35 +294278,99.525,75.215 +294279,98.233,74.081 +294280,96.881,72.95 +294281,99.383,76.36 +294282,98.185,75.204 +294283,96.932,74.048 +294284,95.622,72.894 +294285,98.003,76.37 +294286,96.845,75.193 +294287,95.633,74.016 +294288,94.364,72.84 +294289,96.622,76.378 +294290,95.504,75.181 +294291,94.333,73.984 +294292,93.107,72.787 +294293,95.24,76.386 +294294,94.162,75.17 +294295,93.034,73.952 +294296,91.851,72.735 +294297,93.857,76.393 +294298,92.821,75.157 +294299,91.735,73.92 +294300,90.596,72.683 +294301,92.473,76.398 +294302,91.479,75.145 +294303,90.436,73.889 +294304,89.341,72.633 +294305,91.089,76.403 +294306,90.137,75.132 +294307,89.138,73.858 +294308,88.088,72.584 +294309,89.703,76.407 +294310,88.795,75.119 +294311,87.84,73.828 +294312,86.835,72.536 +294313,88.317,76.41 +294314,87.452,75.105 +294315,86.542,73.798 +294316,85.583,72.489 +294317,86.93,76.411 +294318,86.11,75.091 +294319,85.245,73.768 +294320,84.332,72.443 +294321,85.542,76.412 +294322,84.767,75.077 +294323,83.947,73.739 +294324,83.082,72.398 +294325,84.154,76.411 +294326,83.424,75.062 +294327,82.65,73.709 +294328,81.832,72.354 +294329,82.765,76.41 +294330,82.08,75.048 +294331,81.354,73.681 +294332,80.583,72.312 +294333,81.376,76.407 +294334,80.737,75.032 +294335,80.057,73.653 +294336,79.334,72.27 +294337,79.985,76.404 +294338,79.393,75.016 +294339,78.761,73.625 +294340,78.086,72.23 +294341,78.595,76.399 +294342,78.049,75 +294343,77.464,73.597 +294344,76.838,72.19 +294345,77.204,76.393 +294346,76.705,74.984 +294347,76.168,73.57 +294348,75.591,72.152 +294349,75.812,76.386 +294350,75.361,74.967 +294351,74.872,73.543 +294352,74.345,72.115 +294353,74.42,76.378 +294354,74.017,74.95 +294355,73.577,73.517 +294356,73.098,72.08 +294357,73.027,76.368 +294358,72.673,74.932 +294359,72.281,73.491 +294360,71.852,72.045 +294361,71.635,76.358 +294362,71.328,74.914 +294363,70.986,73.465 +294364,70.607,72.012 +294365,70.241,76.346 +294366,69.983,74.896 +294367,69.69,73.44 +294368,69.361,71.98 +294369,68.848,76.334 +294370,68.639,74.877 +294371,68.395,73.415 +294372,68.116,71.949 +294373,67.454,76.32 +294374,67.294,74.858 +294375,67.1,73.391 +294376,66.871,71.919 +294377,66.06,76.305 +294378,65.949,74.839 +294379,65.805,73.367 +294380,65.626,71.89 +294381,64.666,76.289 +294382,64.605,74.819 +294383,64.51,73.343 +294384,64.382,71.863 +294385,63.272,76.271 +294386,63.26,74.799 +294387,63.215,73.32 +294388,63.137,71.837 +294389,61.877,76.253 +294390,61.915,74.778 +294391,61.92,73.297 +294392,61.892,71.812 +294393,60.483,76.233 +294394,60.57,74.757 +294395,60.625,73.275 +294396,60.648,71.789 +294397,59.088,76.212 +294398,59.225,74.735 +294399,59.33,73.253 +294400,59.403,71.766 +294401,57.694,76.19 +294402,57.881,74.714 +294403,58.035,73.231 +294404,58.158,71.745 +294405,56.299,76.167 +294406,56.536,74.691 +294407,56.741,73.21 +294408,56.914,71.725 +294409,54.905,76.142 +294410,55.191,74.669 +294411,55.446,73.189 +294412,55.669,71.706 +294413,53.51,76.117 +294414,53.847,74.646 +294415,54.151,73.169 +294416,54.423,71.689 +294417,52.116,76.09 +294418,52.502,74.622 +294419,52.856,73.149 +294420,53.178,71.672 +294421,50.722,76.062 +294422,51.158,74.598 +294423,51.561,73.13 +294424,51.932,71.657 +294425,49.328,76.033 +294426,49.813,74.574 +294427,50.265,73.11 +294428,50.686,71.643 +294429,47.935,76.003 +294430,48.469,74.55 +294431,48.97,73.092 +294432,49.44,71.631 +294433,46.542,75.972 +294434,47.125,74.525 +294435,47.675,73.073 +294436,48.193,71.619 +294437,45.149,75.939 +294438,45.781,74.499 +294439,46.379,73.055 +294440,46.946,71.609 +294441,43.756,75.905 +294442,44.437,74.474 +294443,45.084,73.038 +294444,45.698,71.6 +294445,42.364,75.871 +294446,43.093,74.447 +294447,43.788,73.021 +294448,44.45,71.592 +294449,40.972,75.835 +294450,41.75,74.421 +294451,42.492,73.004 +294452,43.201,71.585 +294453,39.581,75.798 +294454,40.406,74.394 +294455,41.196,72.988 +294456,41.952,71.579 +294457,38.19,75.76 +294458,39.063,74.367 +294459,39.9,72.972 +294460,40.702,71.575 +294461,36.8,75.72 +294462,37.72,74.339 +294463,38.603,72.956 +294464,39.452,71.572 +294465,35.411,75.68 +294466,36.378,74.311 +294467,37.307,72.941 +294468,38.201,71.569 +294469,34.022,75.638 +294470,35.035,74.283 +294471,36.01,72.926 +294472,36.949,71.568 +294473,32.633,75.596 +294474,33.693,74.254 +294475,34.713,72.911 +294476,35.696,71.568 +294477,31.246,75.552 +294478,32.351,74.225 +294479,33.416,72.897 +294480,34.443,71.57 +294481,29.859,75.508 +294482,31.01,74.196 +294483,32.118,72.883 +294484,33.189,71.572 +294485,28.473,75.462 +294486,29.668,74.166 +294487,30.82,72.87 +294488,31.934,71.575 +294489,27.088,75.415 +294490,28.327,74.136 +294491,29.522,72.857 +294492,30.678,71.579 +294493,25.704,75.367 +294494,26.986,74.105 +294495,28.224,72.844 +294496,29.421,71.585 +294497,24.32,75.318 +294498,25.646,74.074 +294499,26.925,72.832 +294500,28.163,71.591 +294501,22.937,75.269 +294502,24.306,74.043 +294503,25.626,72.82 +294504,26.904,71.599 +294505,21.556,75.218 +294506,22.966,74.012 +294507,24.327,72.808 +294508,25.645,71.607 +294509,20.175,75.166 +294510,21.626,73.98 +294511,23.027,72.796 +294512,24.384,71.616 +294513,18.796,75.114 +294514,20.287,73.948 +294515,21.727,72.785 +294516,23.122,71.627 +294517,17.417,75.06 +294518,18.949,73.915 +294519,20.427,72.775 +294520,21.859,71.638 +294521,16.039,75.005 +294522,17.61,73.883 +294523,19.127,72.764 +294524,20.595,71.65 +294525,14.663,74.95 +294526,16.272,73.85 +294527,17.826,72.754 +294528,19.33,71.663 +294529,13.288,74.894 +294530,14.935,73.816 +294531,16.524,72.744 +294532,18.064,71.677 +294533,11.914,74.836 +294534,13.598,73.783 +294535,15.222,72.734 +294536,16.796,71.692 +294537,10.541,74.778 +294538,12.261,73.749 +294539,13.92,72.725 +294540,15.528,71.708 +294541,9.1694,74.72 +294542,10.925,73.715 +294543,12.618,72.716 +294544,14.258,71.724 +294545,7.799,74.66 +294546,9.5887,73.68 +294547,11.315,72.707 +294548,12.986,71.742 +294549,6.43,74.599 +294550,8.2533,73.646 +294551,10.012,72.699 +294552,11.714,71.76 +294553,5.0623,74.538 +294554,6.9184,73.611 +294555,8.7079,72.691 +294556,10.44,71.778 +294557,3.6959,74.476 +294558,5.5839,73.576 +294559,7.4037,72.683 +294560,9.1648,71.798 +294561,2.3309,74.414 +294562,4.2498,73.54 +294563,6.099,72.675 +294564,7.8882,71.818 +294565,0.96732,74.35 +294566,2.9163,73.504 +294567,4.794,72.668 +294568,6.6103,71.839 +294569,359.61,74.286 +294570,1.5832,73.469 +294571,3.4885,72.66 +294572,5.331,71.861 +294573,358.24,74.221 +294574,0.25069,73.433 +294575,2.1825,72.653 +294576,4.0503,71.883 +294577,356.89,74.156 +294578,358.92,73.396 +294579,0.87602,72.646 +294580,2.7681,71.906 +294581,355.53,74.09 +294582,357.59,73.36 +294583,359.57,72.64 +294584,1.4845,71.929 +294585,354.17,74.023 +294586,356.26,73.323 +294587,358.26,72.633 +294588,0.19946,71.954 +294589,352.82,73.956 +294590,354.93,73.286 +294591,356.95,72.627 +294592,358.91,71.978 +294593,351.46,73.888 +294594,353.6,73.249 +294595,355.65,72.621 +294596,357.62,72.003 +294597,350.11,73.82 +294598,352.27,73.212 +294599,354.34,72.615 +294600,356.34,72.029 +294601,348.76,73.751 +294602,350.94,73.174 +294603,353.03,72.609 +294604,355.04,72.055 +294605,347.41,73.682 +294606,349.61,73.137 +294607,351.72,72.604 +294608,353.75,72.081 +294609,346.07,73.613 +294610,348.28,73.099 +294611,350.41,72.598 +294612,352.46,72.108 +294613,344.72,73.543 +294614,346.95,73.061 +294615,349.1,72.593 +294616,351.16,72.135 +294617,343.38,73.472 +294618,345.63,73.024 +294619,347.78,72.587 +294620,349.86,72.163 +294621,342.04,73.401 +294622,344.3,72.985 +294623,346.47,72.582 +294624,348.57,72.191 +294625,340.7,73.33 +294626,342.98,72.947 +294627,345.16,72.577 +294628,347.26,72.219 +294629,339.36,73.258 +294630,341.65,72.909 +294631,343.85,72.572 +294632,345.96,72.248 +294633,338.02,73.187 +294634,340.33,72.871 +294635,342.53,72.568 +294636,344.66,72.277 +294637,336.69,73.115 +294638,339,72.832 +294639,341.22,72.563 +294640,343.35,72.306 +294641,335.36,73.042 +294642,337.68,72.794 +294643,339.9,72.558 +294644,342.05,72.335 +294645,334.03,72.97 +294646,336.36,72.755 +294647,338.59,72.554 +294648,340.74,72.364 +294649,332.7,72.897 +294650,335.03,72.716 +294651,337.27,72.549 +294652,339.43,72.394 +294653,331.37,72.824 +294654,333.71,72.678 +294655,335.96,72.545 +294656,338.12,72.424 +294657,330.04,72.751 +294658,332.39,72.639 +294659,334.64,72.54 +294660,336.8,72.453 +294661,328.72,72.678 +294662,331.07,72.6 +294663,333.32,72.536 +294664,335.49,72.483 +294665,327.4,72.605 +294666,329.75,72.561 +294667,332.01,72.531 +294668,334.17,72.513 +294669,326.08,72.532 +294670,328.43,72.523 +294671,330.69,72.527 +294672,332.85,72.543 +294673,324.76,72.459 +294674,327.11,72.484 +294675,329.37,72.522 +294676,331.53,72.573 +294677,323.44,72.385 +294678,325.8,72.445 +294679,328.05,72.518 +294680,330.21,72.602 +294681,322.13,72.312 +294682,324.48,72.406 +294683,326.73,72.514 +294684,328.89,72.632 +294685,320.81,72.239 +294686,323.16,72.368 +294687,325.41,72.509 +294688,327.56,72.661 +294689,319.5,72.166 +294690,321.85,72.329 +294691,324.09,72.505 +294692,326.24,72.691 +294693,318.19,72.093 +294694,320.53,72.29 +294695,322.76,72.5 +294696,324.91,72.72 +294697,316.88,72.02 +294698,319.22,72.252 +294699,321.44,72.495 +294700,323.58,72.749 +294701,315.58,71.948 +294702,317.9,72.213 +294703,320.12,72.491 +294704,322.25,72.778 +294705,314.27,71.875 +294706,316.59,72.175 +294707,318.8,72.486 +294708,320.91,72.807 +294709,312.97,71.803 +294710,315.28,72.136 +294711,317.47,72.481 +294712,319.58,72.835 +294713,311.67,71.731 +294714,313.96,72.098 +294715,316.15,72.476 +294716,318.24,72.863 +294717,310.37,71.66 +294718,312.65,72.06 +294719,314.82,72.471 +294720,316.9,72.891 +294721,309.08,71.588 +294722,311.34,72.022 +294723,313.5,72.466 +294724,315.56,72.918 +294725,307.78,71.517 +294726,310.03,71.984 +294727,312.17,72.46 +294728,314.22,72.945 +294729,306.49,71.447 +294730,308.72,71.946 +294731,310.85,72.455 +294732,312.88,72.972 +294733,305.2,71.377 +294734,307.41,71.908 +294735,309.52,72.449 +294736,311.54,72.998 +294737,303.91,71.307 +294738,306.1,71.871 +294739,308.19,72.444 +294740,310.19,73.024 +294741,302.62,71.238 +294742,304.79,71.833 +294743,306.86,72.438 +294744,308.84,73.049 +294745,301.33,71.169 +294746,303.48,71.796 +294747,305.53,72.432 +294748,307.49,73.074 +294749,300.05,71.1 +294750,302.18,71.759 +294751,304.2,72.426 +294752,306.14,73.098 +294753,298.76,71.033 +294754,300.87,71.722 +294755,302.87,72.419 +294756,304.79,73.122 +294757,297.48,70.965 +294758,299.56,71.685 +294759,301.54,72.413 +294760,303.44,73.145 +294761,296.2,70.899 +294762,298.26,71.649 +294763,300.21,72.406 +294764,302.08,73.167 +294765,294.92,70.833 +294766,296.95,71.613 +294767,298.88,72.399 +294768,300.73,73.189 +294769,293.65,70.767 +294770,295.65,71.577 +294771,297.55,72.392 +294772,299.37,73.211 +294773,292.37,70.702 +294774,294.34,71.541 +294775,296.22,72.384 +294776,298.01,73.231 +294777,291.1,70.638 +294778,293.04,71.505 +294779,294.89,72.377 +294780,296.65,73.251 +294781,289.82,70.575 +294782,291.74,71.47 +294783,293.55,72.369 +294784,295.29,73.27 +294785,288.55,70.512 +294786,290.43,71.434 +294787,292.22,72.361 +294788,293.93,73.289 +294789,287.28,70.45 +294790,289.13,71.399 +294791,290.89,72.352 +294792,292.56,73.307 +294793,286.02,70.389 +294794,287.83,71.365 +294795,289.55,72.344 +294796,291.2,73.323 +294797,284.75,70.328 +294798,286.53,71.33 +294799,288.22,72.335 +294800,289.83,73.34 +294801,283.48,70.269 +294802,285.23,71.296 +294803,286.88,72.326 +294804,288.46,73.355 +294805,282.22,70.21 +294806,283.93,71.262 +294807,285.55,72.316 +294808,287.09,73.37 +294809,280.96,70.152 +294810,282.63,71.229 +294811,284.21,72.306 +294812,285.72,73.383 +294813,279.7,70.095 +294814,281.33,71.195 +294815,282.88,72.296 +294816,284.35,73.396 +294817,278.44,70.039 +294818,280.03,71.162 +294819,281.54,72.286 +294820,282.98,73.408 +294821,277.18,69.984 +294822,278.73,71.13 +294823,280.2,72.276 +294824,281.6,73.419 +294825,275.92,69.929 +294826,277.43,71.097 +294827,278.86,72.265 +294828,280.23,73.429 +294829,274.66,69.876 +294830,276.13,71.065 +294831,277.53,72.253 +294832,278.85,73.438 +294833,273.41,69.824 +294834,274.83,71.034 +294835,276.19,72.242 +294836,277.47,73.446 +294837,272.15,69.772 +294838,273.54,71.002 +294839,274.85,72.23 +294840,276.1,73.454 +294841,270.9,69.722 +294842,272.24,70.971 +294843,273.51,72.218 +294844,274.72,73.46 +294845,269.65,69.672 +294846,270.94,70.94 +294847,272.17,72.205 +294848,273.34,73.465 +294849,268.4,69.624 +294850,269.65,70.91 +294851,270.83,72.192 +294852,271.95,73.47 +294853,267.15,69.577 +294854,268.35,70.88 +294855,269.49,72.179 +294856,270.57,73.473 +294857,265.9,69.531 +294858,267.06,70.85 +294859,268.15,72.165 +294860,269.19,73.475 +294861,264.65,69.485 +294862,265.76,70.821 +294863,266.81,72.152 +294864,267.81,73.476 +294865,263.4,69.441 +294866,264.47,70.792 +294867,265.47,72.137 +294868,266.42,73.476 +294869,262.16,69.398 +294870,263.17,70.763 +294871,264.13,72.123 +294872,265.04,73.475 +294873,260.91,69.356 +294874,261.88,70.735 +294875,262.79,72.108 +294876,263.65,73.473 +294877,259.66,69.316 +294878,260.58,70.707 +294879,261.45,72.092 +294880,262.26,73.47 +294881,258.42,69.276 +294882,259.29,70.679 +294883,260.11,72.076 +294884,260.87,73.466 +294885,257.18,69.238 +294886,258,70.652 +294887,258.77,72.06 +294888,259.49,73.46 +294889,255.93,69.2 +294890,256.7,70.625 +294891,257.42,72.044 +294892,258.1,73.454 +294893,254.69,69.164 +294894,255.41,70.599 +294895,256.08,72.027 +294896,256.71,73.446 +294897,253.45,69.129 +294898,254.12,70.573 +294899,254.74,72.01 +294900,255.32,73.437 +294901,252.21,69.095 +294902,252.82,70.547 +294903,253.4,71.992 +294904,253.93,73.427 +294905,250.96,69.063 +294906,251.53,70.522 +294907,252.05,71.974 +294908,252.53,73.416 +294909,249.72,69.031 +294910,250.24,70.497 +294911,250.71,71.955 +294912,251.14,73.404 +294913,248.48,69.001 +294914,248.95,70.473 +294915,249.37,71.936 +294916,249.75,73.391 +294917,247.24,68.972 +294918,247.65,70.449 +294919,248.03,71.917 +294920,248.36,73.376 +294921,246,68.944 +294922,246.36,70.425 +294923,246.68,71.898 +294924,246.96,73.361 +294925,244.76,68.918 +294926,245.07,70.402 +294927,245.34,71.878 +294928,245.57,73.344 +294929,243.52,68.892 +294930,243.78,70.379 +294931,244,71.857 +294932,244.18,73.326 +294933,242.28,68.868 +294934,242.49,70.356 +294935,242.65,71.836 +294936,242.78,73.306 +294937,241.04,68.845 +294938,241.2,70.334 +294939,241.31,71.815 +294940,241.39,73.286 +294941,239.81,68.824 +294942,239.9,70.313 +294943,239.97,71.793 +294944,240,73.264 +294945,238.57,68.803 +294946,238.61,70.291 +294947,238.62,71.771 +294948,238.6,73.242 +294949,237.33,68.784 +294950,237.32,70.271 +294951,237.28,71.749 +294952,237.21,73.218 +294953,236.09,68.766 +294954,236.03,70.25 +294955,235.94,71.726 +294956,235.81,73.192 +294957,234.85,68.749 +294958,234.74,70.23 +294959,234.59,71.703 +294960,234.42,73.166 +294961,233.61,68.733 +294962,233.45,70.21 +294963,233.25,71.679 +294964,233.02,73.139 +294965,232.37,68.719 +294966,232.15,70.191 +294967,231.91,71.655 +294968,231.63,73.11 +294969,231.13,68.706 +294970,230.86,70.172 +294971,230.56,71.631 +294972,230.24,73.08 +294973,229.89,68.694 +294974,229.57,70.154 +294975,229.22,71.606 +294976,228.84,73.049 +294977,228.65,68.683 +294978,228.28,70.136 +294979,227.88,71.581 +294980,227.45,73.017 +294981,227.41,68.673 +294982,226.99,70.118 +294983,226.54,71.555 +294984,226.05,72.984 +294985,226.17,68.665 +294986,225.69,70.101 +294987,225.19,71.529 +294988,224.66,72.949 +294989,224.93,68.657 +294990,224.4,70.084 +294991,223.85,71.503 +294992,223.27,72.914 +294993,223.68,68.651 +294994,223.11,70.067 +294995,222.51,71.476 +294996,221.87,72.877 +294997,222.44,68.646 +294998,221.82,70.051 +294999,221.16,71.449 +295000,220.48,72.839 +295001,221.2,68.643 +295002,220.53,70.035 +295003,219.82,71.421 +295004,219.09,72.8 +295005,219.96,68.64 +295006,219.23,70.02 +295007,218.48,71.394 +295008,217.7,72.76 +295009,218.71,68.638 +295010,217.94,70.005 +295011,217.14,71.365 +295012,216.31,72.719 +295013,217.47,68.638 +295014,216.65,69.99 +295015,215.8,71.337 +295016,214.91,72.677 +295017,216.22,68.638 +295018,215.35,69.976 +295019,214.46,71.308 +295020,213.52,72.633 +295021,214.98,68.64 +295022,214.06,69.962 +295023,213.11,71.278 +295024,212.13,72.589 +295025,213.73,68.643 +295026,212.77,69.948 +295027,211.77,71.249 +295028,210.75,72.543 +295029,212.48,68.647 +295030,211.47,69.935 +295031,210.43,71.218 +295032,209.36,72.497 +295033,211.23,68.652 +295034,210.18,69.922 +295035,209.09,71.188 +295036,207.97,72.449 +295037,209.98,68.658 +295038,208.88,69.909 +295039,207.75,71.157 +295040,206.58,72.4 +295041,208.73,68.665 +295042,207.59,69.897 +295043,206.41,71.126 +295044,205.2,72.351 +295045,207.48,68.673 +295046,206.29,69.885 +295047,205.07,71.095 +295048,203.81,72.3 +295049,206.23,68.682 +295050,205,69.874 +295051,203.73,71.063 +295052,202.43,72.249 +295053,204.98,68.692 +295054,203.7,69.862 +295055,202.39,71.031 +295056,201.04,72.196 +295057,203.72,68.703 +295058,202.41,69.851 +295059,201.06,70.998 +295060,199.66,72.142 +295061,202.47,68.714 +295062,201.11,69.841 +295063,199.72,70.966 +295064,198.28,72.088 +295065,201.21,68.727 +295066,199.82,69.83 +295067,198.38,70.933 +295068,196.9,72.033 +295069,199.95,68.741 +295070,198.52,69.82 +295071,197.04,70.899 +295072,195.52,71.976 +295073,198.7,68.755 +295074,197.22,69.811 +295075,195.7,70.866 +295076,194.14,71.919 +295077,197.44,68.771 +295078,195.92,69.801 +295079,194.37,70.832 +295080,192.76,71.861 +295081,196.17,68.787 +295082,194.63,69.792 +295083,193.03,70.797 +295084,191.38,71.802 +295085,194.91,68.804 +295086,193.33,69.783 +295087,191.69,70.763 +295088,190.01,71.743 +295089,193.65,68.822 +295090,192.03,69.774 +295091,190.36,70.728 +295092,188.63,71.682 +295093,192.38,68.84 +295094,190.73,69.766 +295095,189.02,70.693 +295096,187.26,71.621 +295097,191.12,68.86 +295098,189.43,69.758 +295099,187.69,70.658 +295100,185.89,71.559 +295101,189.85,68.88 +295102,188.13,69.75 +295103,186.35,70.622 +295104,184.52,71.496 +295105,188.58,68.9 +295106,186.83,69.742 +295107,185.02,70.586 +295108,183.15,71.432 +295109,187.31,68.922 +295110,185.53,69.735 +295111,183.69,70.55 +295112,181.78,71.368 +295113,186.04,68.944 +295114,184.23,69.727 +295115,182.35,70.514 +295116,180.42,71.303 +295117,184.77,68.967 +295118,182.93,69.72 +295119,181.02,70.478 +295120,179.05,71.238 +295121,183.5,68.99 +295122,181.62,69.713 +295123,179.69,70.441 +295124,177.69,71.172 +295125,182.22,69.014 +295126,180.32,69.707 +295127,178.36,70.404 +295128,176.32,71.105 +295129,180.94,69.038 +295130,179.02,69.7 +295131,177.03,70.367 +295132,174.96,71.037 +295133,179.66,69.063 +295134,177.71,69.694 +295135,175.7,70.33 +295136,173.6,70.969 +295137,178.38,69.089 +295138,176.41,69.688 +295139,174.37,70.292 +295140,172.25,70.901 +295141,177.1,69.115 +295142,175.11,69.682 +295143,173.04,70.255 +295144,170.89,70.832 +295145,175.82,69.141 +295146,173.8,69.676 +295147,171.71,70.217 +295148,169.54,70.762 +295149,174.53,69.168 +295150,172.49,69.671 +295151,170.38,70.179 +295152,168.18,70.692 +295153,173.25,69.195 +295154,171.19,69.665 +295155,169.05,70.141 +295156,166.83,70.622 +295157,171.96,69.223 +295158,169.88,69.66 +295159,167.73,70.102 +295160,165.48,70.551 +295161,170.67,69.251 +295162,168.57,69.654 +295163,166.4,70.064 +295164,164.13,70.48 +295165,169.38,69.279 +295166,167.27,69.649 +295167,165.07,70.026 +295168,162.79,70.408 +295169,168.09,69.307 +295170,165.96,69.644 +295171,163.75,69.987 +295172,161.44,70.336 +295173,166.79,69.336 +295174,164.65,69.639 +295175,162.42,69.948 +295176,160.1,70.264 +295177,165.5,69.365 +295178,163.34,69.634 +295179,161.1,69.91 +295180,158.76,70.192 +295181,164.2,69.394 +295182,162.03,69.629 +295183,159.77,69.871 +295184,157.42,70.119 +295185,162.9,69.424 +295186,160.72,69.624 +295187,158.45,69.832 +295188,156.08,70.046 +295189,161.6,69.454 +295190,159.41,69.62 +295191,157.13,69.793 +295192,154.75,69.973 +295193,160.3,69.483 +295194,158.1,69.615 +295195,155.81,69.754 +295196,153.41,69.899 +295197,158.99,69.513 +295198,156.78,69.61 +295199,154.49,69.714 +295200,152.08,69.826 +295201,157.69,69.543 +295202,155.47,69.606 +295203,153.16,69.675 +295204,150.75,69.752 +295205,156.38,69.573 +295206,154.16,69.601 +295207,151.84,69.636 +295208,149.42,69.678 +295209,155.07,69.603 +295210,152.85,69.597 +295211,150.53,69.597 +295212,148.09,69.604 +295213,153.76,69.633 +295214,151.53,69.592 +295215,149.21,69.558 +295216,146.77,69.53 +295217,152.45,69.663 +295218,150.22,69.587 +295219,147.89,69.518 +295220,145.45,69.457 +295221,151.13,69.692 +295222,148.9,69.583 +295223,146.57,69.479 +295224,144.13,69.383 +295225,149.82,69.722 +295226,147.58,69.578 +295227,145.25,69.44 +295228,142.81,69.309 +295229,148.5,69.752 +295230,146.27,69.573 +295231,143.94,69.401 +295232,141.49,69.235 +295233,147.18,69.781 +295234,144.95,69.568 +295235,142.62,69.362 +295236,140.17,69.161 +295237,145.86,69.81 +295238,143.63,69.564 +295239,141.31,69.322 +295240,138.86,69.088 +295241,144.54,69.839 +295242,142.31,69.559 +295243,139.99,69.283 +295244,137.55,69.015 +295245,143.21,69.868 +295246,141,69.554 +295247,138.68,69.244 +295248,136.24,68.941 +295249,141.88,69.897 +295250,139.68,69.549 +295251,137.36,69.205 +295252,134.93,68.868 +295253,140.56,69.925 +295254,138.36,69.543 +295255,136.05,69.167 +295256,133.62,68.796 +295257,139.23,69.953 +295258,137.04,69.538 +295259,134.74,69.128 +295260,132.32,68.723 +295261,137.9,69.98 +295262,135.71,69.533 +295263,133.43,69.089 +295264,131.02,68.651 +295265,136.56,70.008 +295266,134.39,69.527 +295267,132.12,69.051 +295268,129.72,68.579 +295269,135.23,70.035 +295270,133.07,69.522 +295271,130.81,69.012 +295272,128.42,68.508 +295273,133.89,70.061 +295274,131.75,69.516 +295275,129.5,68.974 +295276,127.12,68.437 +295277,132.55,70.087 +295278,130.42,69.51 +295279,128.19,68.936 +295280,125.83,68.366 +295281,131.22,70.112 +295282,129.1,69.504 +295283,126.88,68.898 +295284,124.53,68.296 +295285,129.87,70.137 +295286,127.78,69.498 +295287,125.57,68.86 +295288,123.24,68.226 +295289,128.53,70.162 +295290,126.45,69.491 +295291,124.26,68.822 +295292,121.95,68.156 +295293,127.19,70.186 +295294,125.13,69.485 +295295,122.96,68.785 +295296,120.67,68.088 +295297,125.84,70.209 +295298,123.8,69.478 +295299,121.65,68.747 +295300,119.38,68.019 +295301,124.5,70.232 +295302,122.47,69.471 +295303,120.34,68.71 +295304,118.1,67.952 +295305,123.15,70.254 +295306,121.15,69.463 +295307,119.04,68.673 +295308,116.81,67.884 +295309,121.8,70.275 +295310,119.82,69.456 +295311,117.73,68.636 +295312,115.53,67.818 +295313,120.44,70.296 +295314,118.49,69.448 +295315,116.43,68.6 +295316,114.25,67.752 +295317,119.09,70.316 +295318,117.16,69.44 +295319,115.13,68.563 +295320,112.98,67.687 +295321,117.74,70.336 +295322,115.83,69.432 +295323,113.82,68.527 +295324,111.7,67.622 +295325,116.38,70.355 +295326,114.5,69.424 +295327,112.52,68.491 +295328,110.43,67.558 +295329,115.02,70.372 +295330,113.17,69.415 +295331,111.22,68.456 +295332,109.16,67.495 +295333,113.66,70.39 +295334,111.84,69.406 +295335,109.92,68.42 +295336,107.89,67.433 +295337,112.3,70.406 +295338,110.51,69.397 +295339,108.62,68.385 +295340,106.62,67.371 +295341,110.94,70.422 +295342,109.18,69.388 +295343,107.32,68.35 +295344,105.35,67.311 +295345,109.58,70.436 +295346,107.85,69.378 +295347,106.02,68.316 +295348,104.08,67.251 +295349,108.21,70.45 +295350,106.51,69.368 +295351,104.72,68.281 +295352,102.82,67.192 +295353,106.85,70.463 +295354,105.18,69.358 +295355,103.42,68.247 +295356,101.56,67.133 +295357,105.48,70.475 +295358,103.85,69.347 +295359,102.12,68.213 +295360,100.29,67.076 +295361,104.11,70.486 +295362,102.51,69.336 +295363,100.83,68.18 +295364,99.034,67.019 +295365,102.74,70.497 +295366,101.18,69.325 +295367,99.528,68.147 +295368,97.775,66.964 +295369,101.37,70.506 +295370,99.846,69.313 +295371,98.231,68.114 +295372,96.518,66.909 +295373,100,70.514 +295374,98.511,69.301 +295375,96.935,68.081 +295376,95.262,66.856 +295377,98.627,70.522 +295378,97.176,69.289 +295379,95.639,68.049 +295380,94.007,66.803 +295381,97.253,70.528 +295382,95.84,69.276 +295383,94.343,68.017 +295384,92.753,66.751 +295385,95.878,70.533 +295386,94.504,69.264 +295387,93.048,67.986 +295388,91.501,66.701 +295389,94.501,70.538 +295390,93.168,69.25 +295391,91.753,67.954 +295392,90.25,66.651 +295393,93.124,70.541 +295394,91.831,69.237 +295395,90.459,67.923 +295396,89,66.603 +295397,91.745,70.543 +295398,90.494,69.223 +295399,89.165,67.893 +295400,87.752,66.555 +295401,90.366,70.544 +295402,89.156,69.208 +295403,87.872,67.863 +295404,86.504,66.509 +295405,88.985,70.544 +295406,87.819,69.194 +295407,86.578,67.833 +295408,85.257,66.463 +295409,87.604,70.543 +295410,86.481,69.179 +295411,85.286,67.803 +295412,84.012,66.419 +295413,86.221,70.541 +295414,85.142,69.163 +295415,83.993,67.774 +295416,82.767,66.376 +295417,84.838,70.538 +295418,83.804,69.147 +295419,82.701,67.745 +295420,81.523,66.334 +295421,83.454,70.534 +295422,82.465,69.131 +295423,81.409,67.717 +295424,80.28,66.293 +295425,82.069,70.528 +295426,81.125,69.114 +295427,80.117,67.689 +295428,79.038,66.253 +295429,80.683,70.522 +295430,79.786,69.097 +295431,78.826,67.661 +295432,77.797,66.215 +295433,79.297,70.514 +295434,78.446,69.08 +295435,77.535,67.634 +295436,76.557,66.177 +295437,77.91,70.505 +295438,77.106,69.062 +295439,76.244,67.607 +295440,75.317,66.141 +295441,76.522,70.495 +295442,75.766,69.044 +295443,74.953,67.581 +295444,74.078,66.106 +295445,75.133,70.484 +295446,74.426,69.025 +295447,73.663,67.555 +295448,72.84,66.072 +295449,73.744,70.471 +295450,73.086,69.006 +295451,72.373,67.529 +295452,71.602,66.04 +295453,72.354,70.457 +295454,71.745,68.987 +295455,71.083,67.504 +295456,70.365,66.008 +295457,70.964,70.443 +295458,70.404,68.967 +295459,69.793,67.479 +295460,69.128,65.978 +295461,69.573,70.427 +295462,69.063,68.947 +295463,68.504,67.454 +295464,67.892,65.949 +295465,68.182,70.41 +295466,67.722,68.927 +295467,67.214,67.43 +295468,66.656,65.921 +295469,66.79,70.391 +295470,66.381,68.905 +295471,65.925,67.406 +295472,65.42,65.895 +295473,65.398,70.372 +295474,65.039,68.884 +295475,64.636,67.383 +295476,64.185,65.869 +295477,64.006,70.351 +295478,63.698,68.862 +295479,63.347,67.36 +295480,62.951,65.845 +295481,62.613,70.329 +295482,62.356,68.84 +295483,62.058,67.337 +295484,61.716,65.822 +295485,61.22,70.306 +295486,61.014,68.817 +295487,60.769,67.315 +295488,60.482,65.801 +295489,59.826,70.281 +295490,59.673,68.794 +295491,59.481,67.294 +295492,59.248,65.78 +295493,58.432,70.255 +295494,58.331,68.771 +295495,58.192,67.272 +295496,58.014,65.761 +295497,57.039,70.229 +295498,56.989,68.747 +295499,56.904,67.251 +295500,56.78,65.743 +295501,55.645,70.201 +295502,55.647,68.722 +295503,55.615,67.231 +295504,55.546,65.726 +295505,54.25,70.171 +295506,54.305,68.698 +295507,54.327,67.211 +295508,54.312,65.711 +295509,52.856,70.141 +295510,52.964,68.673 +295511,53.038,67.191 +295512,53.078,65.697 +295513,51.462,70.109 +295514,51.622,68.647 +295515,51.75,67.171 +295516,51.844,65.684 +295517,50.068,70.077 +295518,50.28,68.621 +295519,50.461,67.152 +295520,50.61,65.672 +295521,48.673,70.043 +295522,48.938,68.595 +295523,49.173,67.134 +295524,49.376,65.661 +295525,47.279,70.007 +295526,47.596,68.568 +295527,47.884,67.116 +295528,48.141,65.652 +295529,45.885,69.971 +295530,46.255,68.541 +295531,46.595,67.098 +295532,46.907,65.643 +295533,44.491,69.934 +295534,44.913,68.513 +295535,45.307,67.08 +295536,45.671,65.636 +295537,43.097,69.895 +295538,43.572,68.485 +295539,44.018,67.063 +295540,44.436,65.63 +295541,41.704,69.855 +295542,42.23,68.457 +295543,42.729,67.047 +295544,43.2,65.626 +295545,40.311,69.814 +295546,40.889,68.428 +295547,41.44,67.03 +295548,41.964,65.622 +295549,38.918,69.772 +295550,39.548,68.399 +295551,40.151,67.015 +295552,40.727,65.62 +295553,37.525,69.729 +295554,38.207,68.37 +295555,38.862,66.999 +295556,39.49,65.618 +295557,36.133,69.684 +295558,36.866,68.34 +295559,37.573,66.984 +295560,38.252,65.618 +295561,34.741,69.639 +295562,35.526,68.309 +295563,36.283,66.969 +295564,37.014,65.619 +295565,33.349,69.592 +295566,34.185,68.279 +295567,34.993,66.955 +295568,35.775,65.621 +295569,31.958,69.545 +295570,32.845,68.248 +295571,33.703,66.94 +295572,34.535,65.624 +295573,30.568,69.496 +295574,31.505,68.216 +295575,32.413,66.927 +295576,33.295,65.628 +295577,29.178,69.446 +295578,30.165,68.185 +295579,31.123,66.913 +295580,32.054,65.633 +295581,27.789,69.396 +295582,28.826,68.153 +295583,29.833,66.9 +295584,30.812,65.64 +295585,26.4,69.344 +295586,27.486,68.12 +295587,28.542,66.887 +295588,29.569,65.647 +295589,25.013,69.291 +295590,26.147,68.087 +295591,27.251,66.875 +295592,28.325,65.655 +295593,23.625,69.237 +295594,24.809,68.054 +295595,25.959,66.863 +295596,27.081,65.665 +295597,22.239,69.182 +295598,23.47,68.021 +295599,24.668,66.851 +295600,25.836,65.675 +295601,20.853,69.126 +295602,22.132,67.987 +295603,23.376,66.84 +295604,24.589,65.686 +295605,19.469,69.07 +295606,20.794,67.953 +295607,22.084,66.829 +295608,23.342,65.698 +295609,18.085,69.012 +295610,19.456,67.918 +295611,20.791,66.818 +295612,22.094,65.711 +295613,16.702,68.954 +295614,18.119,67.884 +295615,19.499,66.807 +295616,20.844,65.725 +295617,15.32,68.894 +295618,16.782,67.849 +295619,18.206,66.797 +295620,19.594,65.74 +295621,13.938,68.834 +295622,15.446,67.813 +295623,16.912,66.787 +295624,18.342,65.756 +295625,12.558,68.772 +295626,14.11,67.778 +295627,15.618,66.777 +295628,17.089,65.772 +295629,11.179,68.71 +295630,12.774,67.742 +295631,14.324,66.768 +295632,15.835,65.79 +295633,9.8014,68.648 +295634,11.439,67.706 +295635,13.03,66.758 +295636,14.58,65.808 +295637,8.4246,68.584 +295638,10.104,67.669 +295639,11.735,66.749 +295640,13.324,65.827 +295641,7.0489,68.519 +295642,8.769,67.632 +295643,10.439,66.741 +295644,12.066,65.846 +295645,5.6745,68.454 +295646,7.4349,67.595 +295647,9.1436,66.732 +295648,10.807,65.867 +295649,4.3012,68.388 +295650,6.1012,67.558 +295651,7.8474,66.724 +295652,9.5466,65.888 +295653,2.9292,68.322 +295654,4.768,67.521 +295655,6.5509,66.716 +295656,8.2849,65.909 +295657,1.5585,68.254 +295658,3.4352,67.483 +295659,5.2539,66.708 +295660,7.0219,65.932 +295661,0.18908,68.186 +295662,2.1029,67.445 +295663,3.9564,66.701 +295664,5.7575,65.955 +295665,358.82,68.118 +295666,0.77104,67.407 +295667,2.6585,66.693 +295668,4.4916,65.978 +295669,357.45,68.048 +295670,359.44,67.368 +295671,1.3602,66.686 +295672,3.2243,66.003 +295673,356.09,67.979 +295674,358.11,67.33 +295675,0.061348,66.679 +295676,1.9556,66.027 +295677,354.73,67.908 +295678,356.78,67.291 +295679,358.76,66.672 +295680,0.68534,66.052 +295681,353.36,67.837 +295682,355.45,67.252 +295683,357.46,66.665 +295684,359.41,66.078 +295685,352,67.766 +295686,354.12,67.213 +295687,356.16,66.659 +295688,358.14,66.104 +295689,350.64,67.694 +295690,352.79,67.173 +295691,354.86,66.652 +295692,356.87,66.131 +295693,349.29,67.621 +295694,351.46,67.134 +295695,353.56,66.646 +295696,355.59,66.158 +295697,347.93,67.548 +295698,350.13,67.094 +295699,352.26,66.64 +295700,354.31,66.186 +295701,346.57,67.475 +295702,348.81,67.055 +295703,350.96,66.634 +295704,353.03,66.213 +295705,345.22,67.401 +295706,347.48,67.015 +295707,349.65,66.628 +295708,351.75,66.242 +295709,343.87,67.327 +295710,346.15,66.975 +295711,348.35,66.622 +295712,350.47,66.27 +295713,342.52,67.253 +295714,344.83,66.934 +295715,347.05,66.616 +295716,349.18,66.299 +295717,341.17,67.178 +295718,343.5,66.894 +295719,345.74,66.61 +295720,347.9,66.328 +295721,339.83,67.103 +295722,342.18,66.854 +295723,344.44,66.605 +295724,346.61,66.357 +295725,338.48,67.028 +295726,340.86,66.813 +295727,343.13,66.599 +295728,345.32,66.386 +295729,337.14,66.952 +295730,339.53,66.773 +295731,341.82,66.594 +295732,344.03,66.416 +295733,335.8,66.877 +295734,338.21,66.732 +295735,340.52,66.588 +295736,342.74,66.446 +295737,334.46,66.801 +295738,336.89,66.692 +295739,339.21,66.583 +295740,341.44,66.476 +295741,333.12,66.725 +295742,335.57,66.651 +295743,337.9,66.578 +295744,340.15,66.506 +295745,331.79,66.649 +295746,334.25,66.61 +295747,336.6,66.572 +295748,338.85,66.535 +295749,330.45,66.572 +295750,332.93,66.569 +295751,335.29,66.567 +295752,337.55,66.565 +295753,329.12,66.496 +295754,331.61,66.529 +295755,333.98,66.562 +295756,336.25,66.595 +295757,327.79,66.42 +295758,330.29,66.488 +295759,332.67,66.556 +295760,334.94,66.625 +295761,326.46,66.343 +295762,328.97,66.447 +295763,331.36,66.551 +295764,333.64,66.655 +295765,325.14,66.267 +295766,327.65,66.406 +295767,330.04,66.545 +295768,332.33,66.685 +295769,323.81,66.191 +295770,326.34,66.365 +295771,328.73,66.54 +295772,331.02,66.715 +295773,322.49,66.115 +295774,325.02,66.324 +295775,327.42,66.534 +295776,329.72,66.744 +295777,321.17,66.039 +295778,323.7,66.284 +295779,326.11,66.529 +295780,328.4,66.774 +295781,319.85,65.963 +295782,322.39,66.243 +295783,324.79,66.523 +295784,327.09,66.803 +295785,318.54,65.887 +295786,321.07,66.202 +295787,323.48,66.517 +295788,325.77,66.832 +295789,317.22,65.812 +295790,319.76,66.162 +295791,322.17,66.511 +295792,324.46,66.86 +295793,315.91,65.736 +295794,318.45,66.121 +295795,320.85,66.505 +295796,323.14,66.889 +295797,314.6,65.661 +295798,317.13,66.081 +295799,319.53,66.499 +295800,321.82,66.917 +295801,313.29,65.587 +295802,315.82,66.041 +295803,318.22,66.493 +295804,320.5,66.944 +295805,311.98,65.512 +295806,314.51,66 +295807,316.9,66.487 +295808,319.17,66.972 +295809,310.68,65.438 +295810,313.2,65.96 +295811,315.58,66.481 +295812,317.85,66.999 +295813,309.38,65.364 +295814,311.89,65.92 +295815,314.27,66.474 +295816,316.52,67.025 +295817,308.08,65.291 +295818,310.58,65.88 +295819,312.95,66.467 +295820,315.19,67.051 +295821,306.78,65.218 +295822,309.27,65.841 +295823,311.63,66.46 +295824,313.86,67.077 +295825,305.48,65.146 +295826,307.96,65.801 +295827,310.31,66.453 +295828,312.53,67.102 +295829,304.19,65.074 +295830,306.66,65.761 +295831,308.99,66.446 +295832,311.2,67.127 +295833,302.89,65.002 +295834,305.35,65.722 +295835,307.67,66.439 +295836,309.86,67.151 +295837,301.6,64.931 +295838,304.04,65.683 +295839,306.34,66.431 +295840,308.52,67.174 +295841,300.31,64.861 +295842,302.74,65.644 +295843,305.02,66.423 +295844,307.18,67.197 +295845,299.02,64.791 +295846,301.43,65.605 +295847,303.7,66.415 +295848,305.84,67.219 +295849,297.74,64.722 +295850,300.13,65.567 +295851,302.38,66.407 +295852,304.5,67.241 +295853,296.46,64.653 +295854,298.83,65.529 +295855,301.05,66.398 +295856,303.16,67.261 +295857,295.17,64.585 +295858,297.52,65.49 +295859,299.73,66.389 +295860,301.81,67.282 +295861,293.89,64.518 +295862,296.22,65.452 +295863,298.4,66.38 +295864,300.47,67.301 +295865,292.62,64.452 +295866,294.92,65.415 +295867,297.08,66.371 +295868,299.12,67.32 +295869,291.34,64.386 +295870,293.62,65.377 +295871,295.75,66.362 +295872,297.77,67.338 +295873,290.07,64.321 +295874,292.32,65.34 +295875,294.43,66.352 +295876,296.42,67.355 +295877,288.79,64.257 +295878,291.02,65.303 +295879,293.1,66.342 +295880,295.06,67.371 +295881,287.52,64.193 +295882,289.72,65.267 +295883,291.77,66.331 +295884,293.71,67.387 +295885,286.25,64.131 +295886,288.42,65.23 +295887,290.44,66.321 +295888,292.35,67.401 +295889,284.99,64.069 +295890,287.12,65.194 +295891,289.12,66.31 +295892,291,67.415 +295893,283.72,64.008 +295894,285.82,65.158 +295895,287.79,66.299 +295896,289.64,67.428 +295897,282.46,63.948 +295898,284.52,65.123 +295899,286.46,66.287 +295900,288.28,67.44 +295901,281.19,63.889 +295902,283.23,65.087 +295903,285.13,66.275 +295904,286.92,67.451 +295905,279.93,63.831 +295906,281.93,65.052 +295907,283.8,66.263 +295908,285.55,67.461 +295909,278.67,63.774 +295910,280.63,65.018 +295911,282.47,66.25 +295912,284.19,67.47 +295913,277.42,63.717 +295914,279.34,64.983 +295915,281.14,66.237 +295916,282.82,67.479 +295917,276.16,63.662 +295918,278.04,64.949 +295919,279.8,66.224 +295920,281.46,67.486 +295921,274.9,63.608 +295922,276.75,64.916 +295923,278.47,66.211 +295924,280.09,67.492 +295925,273.65,63.555 +295926,275.46,64.882 +295927,277.14,66.197 +295928,278.72,67.497 +295929,272.4,63.503 +295930,274.16,64.849 +295931,275.81,66.182 +295932,277.35,67.501 +295933,271.15,63.452 +295934,272.87,64.817 +295935,274.47,66.168 +295936,275.98,67.504 +295937,269.9,63.402 +295938,271.58,64.784 +295939,273.14,66.153 +295940,274.6,67.506 +295941,268.65,63.353 +295942,270.28,64.752 +295943,271.81,66.137 +295944,273.23,67.507 +295945,267.4,63.305 +295946,268.99,64.721 +295947,270.47,66.121 +295948,271.86,67.506 +295949,266.16,63.258 +295950,267.7,64.689 +295951,269.14,66.105 +295952,270.48,67.505 +295953,264.92,63.213 +295954,266.41,64.658 +295955,267.8,66.089 +295956,269.1,67.502 +295957,263.67,63.168 +295958,265.12,64.628 +295959,266.47,66.072 +295960,267.72,67.499 +295961,262.43,63.125 +295962,263.83,64.598 +295963,265.13,66.054 +295964,266.34,67.494 +295965,261.19,63.083 +295966,262.54,64.568 +295967,263.8,66.037 +295968,264.96,67.488 +295969,259.95,63.042 +295970,261.25,64.539 +295971,262.46,66.018 +295972,263.58,67.481 +295973,258.71,63.003 +295974,259.96,64.51 +295975,261.12,66 +295976,262.2,67.472 +295977,257.47,62.964 +295978,258.67,64.481 +295979,259.79,65.981 +295980,260.82,67.463 +295981,256.24,62.927 +295982,257.39,64.453 +295983,258.45,65.961 +295984,259.43,67.452 +295985,255,62.891 +295986,256.1,64.425 +295987,257.11,65.942 +295988,258.05,67.44 +295989,253.76,62.856 +295990,254.81,64.397 +295991,255.77,65.921 +295992,256.67,67.427 +295993,252.53,62.823 +295994,253.52,64.37 +295995,254.44,65.901 +295996,255.28,67.412 +295997,251.3,62.79 +295998,252.23,64.344 +295999,253.1,65.88 +296000,253.89,67.397 +296001,250.06,62.759 +296002,250.95,64.318 +296003,251.76,65.858 +296004,252.51,67.38 +296005,248.83,62.729 +296006,249.66,64.292 +296007,250.42,65.836 +296008,251.12,67.362 +296009,247.6,62.701 +296010,248.37,64.266 +296011,249.08,65.814 +296012,249.73,67.342 +296013,246.37,62.673 +296014,247.09,64.241 +296015,247.74,65.791 +296016,248.34,67.322 +296017,245.14,62.647 +296018,245.8,64.217 +296019,246.4,65.768 +296020,246.95,67.3 +296021,243.91,62.623 +296022,244.52,64.192 +296023,245.06,65.744 +296024,245.56,67.277 +296025,242.68,62.599 +296026,243.23,64.169 +296027,243.73,65.72 +296028,244.17,67.252 +296029,241.45,62.577 +296030,241.94,64.145 +296031,242.39,65.696 +296032,242.78,67.227 +296033,240.22,62.556 +296034,240.66,64.122 +296035,241.05,65.671 +296036,241.39,67.2 +296037,238.99,62.536 +296038,239.37,64.1 +296039,239.71,65.645 +296040,239.99,67.172 +296041,237.76,62.518 +296042,238.09,64.077 +296043,238.37,65.619 +296044,238.6,67.143 +296045,236.53,62.5 +296046,236.8,64.056 +296047,237.03,65.593 +296048,237.21,67.112 +296049,235.3,62.485 +296050,235.52,64.034 +296051,235.69,65.567 +296052,235.82,67.08 +296053,234.08,62.47 +296054,234.23,64.013 +296055,234.35,65.539 +296056,234.42,67.047 +296057,232.85,62.456 +296058,232.95,63.993 +296059,233.01,65.512 +296060,233.03,67.013 +296061,231.62,62.444 +296062,231.66,63.973 +296063,231.67,65.484 +296064,231.64,66.977 +296065,230.39,62.433 +296066,230.38,63.953 +296067,230.33,65.456 +296068,230.24,66.941 +296069,229.16,62.423 +296070,229.09,63.934 +296071,228.99,65.427 +296072,228.85,66.903 +296073,227.93,62.415 +296074,227.81,63.915 +296075,227.65,65.398 +296076,227.46,66.863 +296077,226.71,62.408 +296078,226.52,63.896 +296079,226.31,65.368 +296080,226.06,66.823 +296081,225.48,62.401 +296082,225.24,63.878 +296083,224.97,65.338 +296084,224.67,66.781 +296085,224.25,62.397 +296086,223.95,63.86 +296087,223.63,65.308 +296088,223.28,66.738 +296089,223.02,62.393 +296090,222.67,63.843 +296091,222.29,65.277 +296092,221.88,66.694 +296093,221.79,62.39 +296094,221.38,63.825 +296095,220.95,65.246 +296096,220.49,66.649 +296097,220.56,62.389 +296098,220.1,63.809 +296099,219.61,65.214 +296100,219.1,66.603 +296101,219.33,62.389 +296102,218.81,63.793 +296103,218.27,65.182 +296104,217.7,66.555 +296105,218.1,62.389 +296106,217.53,63.777 +296107,216.93,65.149 +296108,216.31,66.507 +296109,216.87,62.392 +296110,216.24,63.761 +296111,215.59,65.117 +296112,214.92,66.457 +296113,215.63,62.395 +296114,214.96,63.746 +296115,214.25,65.083 +296116,213.53,66.406 +296117,214.4,62.399 +296118,213.67,63.731 +296119,212.91,65.05 +296120,212.14,66.354 +296121,213.17,62.404 +296122,212.38,63.716 +296123,211.58,65.016 +296124,210.75,66.301 +296125,211.93,62.41 +296126,211.1,63.702 +296127,210.24,64.982 +296128,209.36,66.247 +296129,210.7,62.418 +296130,209.81,63.688 +296131,208.9,64.947 +296132,207.97,66.192 +296133,209.46,62.426 +296134,208.52,63.675 +296135,207.56,64.912 +296136,206.58,66.135 +296137,208.23,62.436 +296138,207.24,63.662 +296139,206.22,64.876 +296140,205.19,66.078 +296141,206.99,62.446 +296142,205.95,63.649 +296143,204.89,64.841 +296144,203.8,66.02 +296145,205.75,62.458 +296146,204.66,63.636 +296147,203.55,64.804 +296148,202.41,65.96 +296149,204.51,62.47 +296150,203.38,63.624 +296151,202.21,64.768 +296152,201.02,65.9 +296153,203.27,62.483 +296154,202.09,63.612 +296155,200.88,64.731 +296156,199.64,65.839 +296157,202.03,62.497 +296158,200.8,63.601 +296159,199.54,64.694 +296160,198.25,65.776 +296161,200.79,62.513 +296162,199.51,63.589 +296163,198.2,64.657 +296164,196.87,65.713 +296165,199.55,62.529 +296166,198.22,63.578 +296167,196.87,64.619 +296168,195.49,65.649 +296169,198.3,62.545 +296170,196.93,63.567 +296171,195.53,64.581 +296172,194.1,65.584 +296173,197.06,62.563 +296174,195.64,63.557 +296175,194.2,64.543 +296176,192.72,65.518 +296177,195.81,62.582 +296178,194.35,63.547 +296179,192.86,64.504 +296180,191.34,65.452 +296181,194.56,62.601 +296182,193.06,63.537 +296183,191.53,64.465 +296184,189.96,65.384 +296185,193.32,62.621 +296186,191.77,63.527 +296187,190.2,64.426 +296188,188.58,65.316 +296189,192.07,62.641 +296190,190.48,63.517 +296191,188.86,64.386 +296192,187.2,65.247 +296193,190.81,62.663 +296194,189.19,63.508 +296195,187.53,64.347 +296196,185.83,65.177 +296197,189.56,62.685 +296198,187.9,63.499 +296199,186.2,64.307 +296200,184.45,65.106 +296201,188.31,62.708 +296202,186.61,63.49 +296203,184.87,64.266 +296204,183.08,65.035 +296205,187.05,62.731 +296206,185.31,63.481 +296207,183.53,64.226 +296208,181.7,64.963 +296209,185.79,62.755 +296210,184.02,63.473 +296211,182.2,64.185 +296212,180.33,64.89 +296213,184.54,62.78 +296214,182.73,63.465 +296215,180.87,64.144 +296216,178.96,64.817 +296217,183.28,62.805 +296218,181.43,63.457 +296219,179.54,64.103 +296220,177.59,64.743 +296221,182.02,62.831 +296222,180.14,63.449 +296223,178.21,64.062 +296224,176.22,64.668 +296225,180.75,62.857 +296226,178.84,63.441 +296227,176.88,64.02 +296228,174.86,64.593 +296229,179.49,62.883 +296230,177.55,63.433 +296231,175.55,63.979 +296232,173.49,64.518 +296233,178.22,62.91 +296234,176.25,63.426 +296235,174.23,63.937 +296236,172.13,64.442 +296237,176.96,62.938 +296238,174.96,63.419 +296239,172.9,63.895 +296240,170.77,64.365 +296241,175.69,62.966 +296242,173.66,63.411 +296243,171.57,63.853 +296244,169.41,64.288 +296245,174.42,62.994 +296246,172.36,63.404 +296247,170.24,63.81 +296248,168.05,64.21 +296249,173.15,63.023 +296250,171.07,63.397 +296251,168.92,63.768 +296252,166.69,64.133 +296253,171.87,63.052 +296254,169.77,63.39 +296255,167.59,63.725 +296256,165.33,64.054 +296257,170.6,63.081 +296258,168.47,63.384 +296259,166.27,63.682 +296260,163.98,63.976 +296261,169.32,63.11 +296262,167.17,63.377 +296263,164.94,63.64 +296264,162.63,63.897 +296265,168.04,63.14 +296266,165.87,63.37 +296267,163.62,63.597 +296268,161.28,63.817 +296269,166.76,63.169 +296270,164.57,63.364 +296271,162.3,63.554 +296272,159.93,63.738 +296273,165.48,63.199 +296274,163.27,63.357 +296275,160.97,63.51 +296276,158.58,63.658 +296277,164.2,63.23 +296278,161.97,63.35 +296279,159.65,63.467 +296280,157.23,63.578 +296281,162.91,63.26 +296282,160.67,63.344 +296283,158.33,63.424 +296284,155.89,63.498 +296285,161.62,63.29 +296286,159.36,63.337 +296287,157.01,63.381 +296288,154.55,63.418 +296289,160.34,63.32 +296290,158.06,63.331 +296291,155.69,63.337 +296292,153.21,63.337 +296293,159.04,63.35 +296294,156.76,63.324 +296295,154.37,63.294 +296296,151.87,63.257 +296297,157.75,63.381 +296298,155.45,63.318 +296299,153.05,63.25 +296300,150.53,63.177 +296301,156.46,63.411 +296302,154.15,63.311 +296303,151.73,63.207 +296304,149.2,63.096 +296305,155.16,63.441 +296306,152.84,63.305 +296307,150.41,63.163 +296308,147.87,63.015 +296309,153.87,63.471 +296310,151.54,63.298 +296311,149.1,63.12 +296312,146.53,62.935 +296313,152.57,63.501 +296314,150.23,63.292 +296315,147.78,63.077 +296316,145.21,62.855 +296317,151.26,63.531 +296318,148.92,63.285 +296319,146.47,63.033 +296320,143.88,62.774 +296321,149.96,63.56 +296322,147.61,63.278 +296323,145.15,62.99 +296324,142.55,62.694 +296325,148.66,63.59 +296326,146.31,63.271 +296327,143.84,62.947 +296328,141.23,62.614 +296329,147.35,63.619 +296330,145,63.264 +296331,142.52,62.903 +296332,139.91,62.534 +296333,146.04,63.647 +296334,143.69,63.257 +296335,141.21,62.86 +296336,138.59,62.454 +296337,144.73,63.676 +296338,142.38,63.25 +296339,139.9,62.817 +296340,137.27,62.375 +296341,143.42,63.704 +296342,141.07,63.243 +296343,138.59,62.774 +296344,135.96,62.296 +296345,142.11,63.732 +296346,139.75,63.236 +296347,137.27,62.731 +296348,134.64,62.217 +296349,140.79,63.759 +296350,138.44,63.228 +296351,135.96,62.688 +296352,133.33,62.139 +296353,139.48,63.786 +296354,137.13,63.22 +296355,134.65,62.645 +296356,132.02,62.06 +296357,138.16,63.812 +296358,135.82,63.213 +296359,133.34,62.603 +296360,130.72,61.983 +296361,136.84,63.838 +296362,134.5,63.204 +296363,132.04,62.56 +296364,129.41,61.905 +296365,135.51,63.864 +296366,133.19,63.196 +296367,130.73,62.518 +296368,128.11,61.828 +296369,134.19,63.889 +296370,131.87,63.188 +296371,129.42,62.476 +296372,126.81,61.752 +296373,132.87,63.913 +296374,130.56,63.179 +296375,128.12,62.434 +296376,125.51,61.676 +296377,131.54,63.937 +296378,129.24,63.171 +296379,126.81,62.392 +296380,124.21,61.601 +296381,130.21,63.96 +296382,127.93,63.162 +296383,125.5,62.35 +296384,122.92,61.526 +296385,128.88,63.983 +296386,126.61,63.152 +296387,124.2,62.309 +296388,121.62,61.452 +296389,127.55,64.005 +296390,125.29,63.143 +296391,122.9,62.268 +296392,120.33,61.378 +296393,126.21,64.026 +296394,123.97,63.133 +296395,121.59,62.227 +296396,119.05,61.305 +296397,124.88,64.046 +296398,122.65,63.123 +296399,120.29,62.186 +296400,117.76,61.233 +296401,123.54,64.066 +296402,121.34,63.113 +296403,118.99,62.145 +296404,116.47,61.162 +296405,122.2,64.085 +296406,120.02,63.103 +296407,117.69,62.105 +296408,115.19,61.091 +296409,120.86,64.103 +296410,118.69,63.092 +296411,116.39,62.065 +296412,113.91,61.021 +296413,119.52,64.121 +296414,117.37,63.081 +296415,115.09,62.025 +296416,112.63,60.951 +296417,118.17,64.137 +296418,116.05,63.07 +296419,113.79,61.985 +296420,111.35,60.883 +296421,116.83,64.153 +296422,114.73,63.058 +296423,112.49,61.946 +296424,110.08,60.815 +296425,115.48,64.168 +296426,113.41,63.046 +296427,111.19,61.907 +296428,108.81,60.748 +296429,114.13,64.182 +296430,112.08,63.034 +296431,109.89,61.868 +296432,107.54,60.682 +296433,112.78,64.195 +296434,110.76,63.022 +296435,108.6,61.829 +296436,106.27,60.617 +296437,111.43,64.207 +296438,109.44,63.009 +296439,107.3,61.791 +296440,105,60.553 +296441,110.08,64.218 +296442,108.11,62.995 +296443,106.01,61.753 +296444,103.73,60.49 +296445,108.72,64.228 +296446,106.79,62.982 +296447,104.71,61.715 +296448,102.47,60.428 +296449,107.37,64.237 +296450,105.46,62.968 +296451,103.42,61.678 +296452,101.21,60.367 +296453,106.01,64.245 +296454,104.13,62.954 +296455,102.12,61.641 +296456,99.948,60.307 +296457,104.65,64.252 +296458,102.81,62.939 +296459,100.83,61.605 +296460,98.689,60.247 +296461,103.29,64.258 +296462,101.48,62.924 +296463,99.536,61.568 +296464,97.432,60.189 +296465,101.93,64.263 +296466,100.15,62.909 +296467,98.243,61.532 +296468,96.177,60.132 +296469,100.57,64.267 +296470,98.825,62.893 +296471,96.952,61.497 +296472,94.924,60.076 +296473,99.202,64.27 +296474,97.497,62.877 +296475,95.66,61.461 +296476,93.672,60.021 +296477,97.837,64.272 +296478,96.168,62.861 +296479,94.37,61.426 +296480,92.421,59.968 +296481,96.471,64.272 +296482,94.839,62.844 +296483,93.08,61.392 +296484,91.173,59.915 +296485,95.103,64.272 +296486,93.509,62.827 +296487,91.79,61.358 +296488,89.925,59.863 +296489,93.734,64.27 +296490,92.179,62.809 +296491,90.501,61.324 +296492,88.68,59.813 +296493,92.364,64.267 +296494,90.848,62.791 +296495,89.212,61.29 +296496,87.435,59.764 +296497,90.992,64.263 +296498,89.517,62.773 +296499,87.924,61.257 +296500,86.192,59.716 +296501,89.62,64.257 +296502,88.186,62.754 +296503,86.636,61.225 +296504,84.951,59.669 +296505,88.246,64.251 +296506,86.855,62.735 +296507,85.349,61.192 +296508,83.71,59.624 +296509,86.872,64.243 +296510,85.523,62.715 +296511,84.062,61.161 +296512,82.471,59.58 +296513,85.496,64.234 +296514,84.19,62.695 +296515,82.775,61.129 +296516,81.234,59.537 +296517,84.119,64.224 +296518,82.858,62.674 +296519,81.489,61.098 +296520,79.997,59.495 +296521,82.742,64.212 +296522,81.525,62.653 +296523,80.203,61.067 +296524,78.762,59.455 +296525,81.363,64.199 +296526,80.191,62.632 +296527,78.918,61.037 +296528,77.528,59.415 +296529,79.984,64.185 +296530,78.858,62.61 +296531,77.633,61.007 +296532,76.295,59.377 +296533,78.603,64.17 +296534,77.524,62.588 +296535,76.348,60.978 +296536,75.062,59.341 +296537,77.222,64.154 +296538,76.19,62.565 +296539,75.064,60.949 +296540,73.831,59.306 +296541,75.84,64.136 +296542,74.856,62.542 +296543,73.78,60.92 +296544,72.601,59.272 +296545,74.457,64.117 +296546,73.521,62.518 +296547,72.496,60.892 +296548,71.372,59.239 +296549,73.074,64.096 +296550,72.186,62.494 +296551,71.213,60.864 +296552,70.144,59.208 +296553,71.689,64.074 +296554,70.851,62.469 +296555,69.93,60.837 +296556,68.916,59.177 +296557,70.304,64.051 +296558,69.516,62.444 +296559,68.647,60.81 +296560,67.689,59.149 +296561,68.919,64.027 +296562,68.18,62.419 +296563,67.365,60.784 +296564,66.463,59.121 +296565,67.532,64.001 +296566,66.844,62.393 +296567,66.083,60.758 +296568,65.237,59.095 +296569,66.145,63.974 +296570,65.509,62.367 +296571,64.801,60.732 +296572,64.013,59.071 +296573,64.758,63.946 +296574,64.172,62.34 +296575,63.519,60.707 +296576,62.788,59.047 +296577,63.37,63.916 +296578,62.836,62.312 +296579,62.237,60.682 +296580,61.565,59.025 +296581,61.981,63.885 +296582,61.5,62.285 +296583,60.956,60.658 +296584,60.341,59.004 +296585,60.593,63.853 +296586,60.164,62.257 +296587,59.674,60.634 +296588,59.118,58.985 +296589,59.203,63.82 +296590,58.827,62.228 +296591,58.393,60.61 +296592,57.896,58.967 +296593,57.814,63.785 +296594,57.49,62.199 +296595,57.112,60.587 +296596,56.674,58.95 +296597,56.423,63.749 +296598,56.154,62.169 +296599,55.832,60.565 +296600,55.452,58.935 +296601,55.033,63.711 +296602,54.817,62.139 +296603,54.551,60.542 +296604,54.23,58.92 +296605,53.642,63.672 +296606,53.48,62.109 +296607,53.27,60.521 +296608,53.009,58.908 +296609,52.252,63.632 +296610,52.143,62.078 +296611,51.99,60.499 +296612,51.788,58.896 +296613,50.86,63.591 +296614,50.806,62.047 +296615,50.709,60.478 +296616,50.566,58.886 +296617,49.469,63.548 +296618,49.469,62.015 +296619,49.429,60.458 +296620,49.345,58.877 +296621,48.078,63.504 +296622,48.132,61.983 +296623,48.149,60.438 +296624,48.124,58.869 +296625,46.686,63.459 +296626,46.795,61.95 +296627,46.868,60.418 +296628,46.903,58.863 +296629,45.295,63.413 +296630,45.459,61.917 +296631,45.588,60.398 +296632,45.681,58.857 +296633,43.903,63.365 +296634,44.122,61.884 +296635,44.308,60.38 +296636,44.46,58.854 +296637,42.512,63.316 +296638,42.785,61.85 +296639,43.028,60.361 +296640,43.238,58.851 +296641,41.12,63.266 +296642,41.448,61.815 +296643,41.747,60.343 +296644,42.016,58.849 +296645,39.729,63.215 +296646,40.112,61.781 +296647,40.467,60.325 +296648,40.793,58.849 +296649,38.338,63.162 +296650,38.775,61.746 +296651,39.186,60.308 +296652,39.571,58.85 +296653,36.947,63.109 +296654,37.439,61.71 +296655,37.906,60.291 +296656,38.348,58.852 +296657,35.556,63.054 +296658,36.102,61.674 +296659,36.625,60.274 +296660,37.124,58.855 +296661,34.165,62.998 +296662,34.766,61.638 +296663,35.345,60.258 +296664,35.9,58.86 +296665,32.775,62.94 +296666,33.43,61.601 +296667,34.064,60.242 +296668,34.676,58.865 +296669,31.385,62.882 +296670,32.094,61.564 +296671,32.783,60.227 +296672,33.45,58.872 +296673,29.996,62.822 +296674,30.759,61.526 +296675,31.502,60.211 +296676,32.225,58.88 +296677,28.607,62.762 +296678,29.423,61.488 +296679,30.22,60.197 +296680,30.998,58.888 +296681,27.218,62.7 +296682,28.088,61.45 +296683,28.939,60.182 +296684,29.771,58.898 +296685,25.83,62.637 +296686,26.753,61.411 +296687,27.657,60.168 +296688,28.543,58.909 +296689,24.442,62.573 +296690,25.418,61.372 +296691,26.375,60.154 +296692,27.315,58.921 +296693,23.055,62.509 +296694,24.083,61.333 +296695,25.093,60.141 +296696,26.085,58.934 +296697,21.668,62.443 +296698,22.749,61.293 +296699,23.811,60.128 +296700,24.855,58.948 +296701,20.282,62.376 +296702,21.415,61.253 +296703,22.528,60.115 +296704,23.624,58.963 +296705,18.897,62.308 +296706,20.081,61.212 +296707,21.246,60.102 +296708,22.392,58.979 +296709,17.513,62.239 +296710,18.748,61.172 +296711,19.963,60.09 +296712,21.158,58.995 +296713,16.129,62.169 +296714,17.415,61.131 +296715,18.679,60.078 +296716,19.924,59.013 +296717,14.746,62.098 +296718,16.082,61.089 +296719,17.396,60.066 +296720,18.689,59.031 +296721,13.364,62.027 +296722,14.749,61.048 +296723,16.112,60.055 +296724,17.453,59.051 +296725,11.983,61.954 +296726,13.417,61.006 +296727,14.827,60.044 +296728,16.215,59.071 +296729,10.602,61.881 +296730,12.086,60.963 +296731,13.543,60.033 +296732,14.976,59.092 +296733,9.2229,61.807 +296734,10.754,60.921 +296735,12.258,60.022 +296736,13.737,59.113 +296737,7.8446,61.732 +296738,9.4232,60.878 +296739,10.972,60.012 +296740,12.496,59.136 +296741,6.4672,61.656 +296742,8.0926,60.835 +296743,9.6868,60.002 +296744,11.253,59.159 +296745,5.0909,61.579 +296746,6.7624,60.791 +296747,8.4007,59.992 +296748,10.01,59.182 +296749,3.7157,61.502 +296750,5.4326,60.748 +296751,7.1143,59.982 +296752,8.7646,59.207 +296753,2.3416,61.424 +296754,4.1033,60.704 +296755,5.8275,59.973 +296756,7.5183,59.232 +296757,0.96868,61.346 +296758,2.7745,60.66 +296759,4.5402,59.963 +296760,6.2706,59.258 +296761,359.6,61.266 +296762,1.4461,60.615 +296763,3.2526,59.954 +296764,5.0215,59.284 +296765,358.23,61.186 +296766,0.11812,60.571 +296767,1.9645,59.945 +296768,3.7709,59.311 +296769,356.86,61.106 +296770,358.79,60.526 +296771,0.67599,59.936 +296772,2.5189,59.338 +296773,355.49,61.025 +296774,357.46,60.481 +296775,359.39,59.928 +296776,1.2654,59.366 +296777,354.12,60.943 +296778,356.14,60.436 +296779,358.1,59.919 +296780,0.01045,59.394 +296781,352.76,60.861 +296782,354.81,60.391 +296783,356.81,59.911 +296784,358.75,59.423 +296785,351.39,60.778 +296786,353.49,60.345 +296787,355.52,59.903 +296788,357.5,59.452 +296789,350.03,60.695 +296790,352.16,60.3 +296791,354.23,59.895 +296792,356.24,59.481 +296793,348.67,60.611 +296794,350.84,60.254 +296795,352.94,59.887 +296796,354.97,59.511 +296797,347.31,60.528 +296798,349.51,60.208 +296799,351.64,59.879 +296800,353.71,59.541 +296801,345.95,60.443 +296802,348.19,60.162 +296803,350.35,59.871 +296804,352.45,59.572 +296805,344.6,60.359 +296806,346.87,60.116 +296807,349.06,59.863 +296808,351.18,59.602 +296809,343.24,60.274 +296810,345.54,60.07 +296811,347.76,59.855 +296812,349.91,59.633 +296813,341.89,60.188 +296814,344.22,60.023 +296815,346.47,59.848 +296816,348.64,59.664 +296817,340.54,60.103 +296818,342.9,59.977 +296819,345.18,59.84 +296820,347.37,59.695 +296821,339.19,60.017 +296822,341.58,59.93 +296823,343.88,59.833 +296824,346.1,59.727 +296825,337.84,59.931 +296826,340.26,59.884 +296827,342.59,59.825 +296828,344.83,59.758 +296829,336.5,59.845 +296830,338.94,59.837 +296831,341.29,59.818 +296832,343.55,59.789 +296833,335.15,59.759 +296834,337.62,59.791 +296835,339.99,59.811 +296836,342.27,59.821 +296837,333.81,59.673 +296838,336.31,59.744 +296839,338.7,59.803 +296840,340.99,59.852 +296841,332.47,59.586 +296842,334.99,59.697 +296843,337.4,59.796 +296844,339.71,59.884 +296845,331.13,59.5 +296846,333.67,59.65 +296847,336.1,59.788 +296848,338.43,59.915 +296849,329.79,59.413 +296850,332.36,59.604 +296851,334.8,59.781 +296852,337.14,59.947 +296853,328.46,59.327 +296854,331.04,59.557 +296855,333.5,59.773 +296856,335.85,59.978 +296857,327.12,59.241 +296858,329.73,59.51 +296859,332.2,59.765 +296860,334.57,60.009 +296861,325.79,59.155 +296862,328.41,59.463 +296863,330.9,59.758 +296864,333.27,60.04 +296865,324.46,59.069 +296866,327.1,59.417 +296867,329.6,59.75 +296868,331.98,60.071 +296869,323.14,58.983 +296870,325.79,59.37 +296871,328.3,59.742 +296872,330.69,60.101 +296873,321.81,58.897 +296874,324.48,59.324 +296875,327,59.734 +296876,329.39,60.131 +296877,320.49,58.812 +296878,323.16,59.277 +296879,325.69,59.726 +296880,328.09,60.161 +296881,319.17,58.726 +296882,321.85,59.231 +296883,324.39,59.718 +296884,326.8,60.19 +296885,317.85,58.642 +296886,320.54,59.184 +296887,323.09,59.71 +296888,325.49,60.22 +296889,316.53,58.557 +296890,319.24,59.138 +296891,321.78,59.701 +296892,324.19,60.248 +296893,315.22,58.473 +296894,317.93,59.092 +296895,320.48,59.693 +296896,322.89,60.277 +296897,313.9,58.389 +296898,316.62,59.046 +296899,319.17,59.684 +296900,321.58,60.305 +296901,312.59,58.305 +296902,315.31,59 +296903,317.86,59.675 +296904,320.27,60.332 +296905,311.28,58.223 +296906,314.01,58.955 +296907,316.56,59.666 +296908,318.96,60.359 +296909,309.98,58.14 +296910,312.7,58.909 +296911,315.25,59.657 +296912,317.65,60.385 +296913,308.67,58.058 +296914,311.39,58.864 +296915,313.94,59.647 +296916,316.33,60.411 +296917,307.37,57.977 +296918,310.09,58.819 +296919,312.63,59.638 +296920,315.02,60.436 +296921,306.07,57.896 +296922,308.79,58.774 +296923,311.32,59.628 +296924,313.7,60.461 +296925,304.77,57.816 +296926,307.48,58.729 +296927,310.01,59.618 +296928,312.38,60.485 +296929,303.48,57.736 +296930,306.18,58.684 +296931,308.7,59.607 +296932,311.06,60.508 +296933,302.18,57.657 +296934,304.88,58.64 +296935,307.39,59.597 +296936,309.74,60.53 +296937,300.89,57.579 +296938,303.58,58.596 +296939,306.08,59.586 +296940,308.41,60.552 +296941,299.6,57.501 +296942,302.28,58.552 +296943,304.77,59.575 +296944,307.09,60.573 +296945,298.31,57.424 +296946,300.98,58.508 +296947,303.45,59.563 +296948,305.76,60.593 +296949,297.03,57.348 +296950,299.68,58.465 +296951,302.14,59.552 +296952,304.43,60.613 +296953,295.74,57.273 +296954,298.38,58.421 +296955,300.82,59.54 +296956,303.1,60.632 +296957,294.46,57.199 +296958,297.09,58.378 +296959,299.51,59.528 +296960,301.77,60.649 +296961,293.18,57.126 +296962,295.79,58.336 +296963,298.19,59.515 +296964,300.43,60.666 +296965,291.91,57.053 +296966,294.49,58.293 +296967,296.88,59.502 +296968,299.1,60.682 +296969,290.63,56.981 +296970,293.2,58.251 +296971,295.56,59.489 +296972,297.76,60.697 +296973,289.36,56.911 +296974,291.9,58.21 +296975,294.25,59.476 +296976,296.42,60.711 +296977,288.09,56.841 +296978,290.61,58.168 +296979,292.93,59.462 +296980,295.08,60.725 +296981,286.82,56.772 +296982,289.32,58.127 +296983,291.61,59.448 +296984,293.74,60.737 +296985,285.55,56.704 +296986,288.02,58.086 +296987,290.29,59.433 +296988,292.39,60.748 +296989,284.29,56.638 +296990,286.73,58.046 +296991,288.97,59.418 +296992,291.05,60.758 +296993,283.03,56.572 +296994,285.44,58.006 +296995,287.65,59.403 +296996,289.7,60.767 +296997,281.77,56.507 +296998,284.15,57.966 +296999,286.33,59.387 +297000,288.35,60.775 +297001,280.51,56.444 +297002,282.86,57.926 +297003,285.01,59.372 +297004,287,60.782 +297005,279.25,56.382 +297006,281.57,57.887 +297007,283.69,59.355 +297008,285.65,60.788 +297009,277.99,56.32 +297010,280.28,57.849 +297011,282.37,59.338 +297012,284.3,60.792 +297013,276.74,56.26 +297014,278.99,57.81 +297015,281.05,59.321 +297016,282.94,60.796 +297017,275.49,56.202 +297018,277.7,57.772 +297019,279.73,59.304 +297020,281.59,60.798 +297021,274.24,56.144 +297022,276.42,57.735 +297023,278.4,59.286 +297024,280.23,60.799 +297025,272.99,56.088 +297026,275.13,57.698 +297027,277.08,59.267 +297028,278.87,60.799 +297029,271.75,56.033 +297030,273.84,57.661 +297031,275.76,59.249 +297032,277.51,60.798 +297033,270.5,55.979 +297034,272.56,57.625 +297035,274.43,59.229 +297036,276.15,60.796 +297037,269.26,55.926 +297038,271.27,57.589 +297039,273.11,59.21 +297040,274.79,60.792 +297041,268.02,55.875 +297042,269.99,57.553 +297043,271.78,59.19 +297044,273.42,60.787 +297045,266.78,55.825 +297046,268.71,57.518 +297047,270.46,59.169 +297048,272.06,60.781 +297049,265.54,55.776 +297050,267.42,57.483 +297051,269.13,59.148 +297052,270.69,60.773 +297053,264.3,55.729 +297054,266.14,57.449 +297055,267.81,59.127 +297056,269.33,60.764 +297057,263.07,55.683 +297058,264.86,57.415 +297059,266.48,59.105 +297060,267.96,60.754 +297061,261.83,55.638 +297062,263.58,57.382 +297063,265.15,59.082 +297064,266.59,60.743 +297065,260.6,55.595 +297066,262.29,57.349 +297067,263.82,59.06 +297068,265.22,60.73 +297069,259.37,55.553 +297070,261.01,57.316 +297071,262.5,59.036 +297072,263.85,60.716 +297073,258.14,55.513 +297074,259.73,57.284 +297075,261.17,59.013 +297076,262.48,60.701 +297077,256.91,55.474 +297078,258.45,57.253 +297079,259.84,58.989 +297080,261.1,60.684 +297081,255.69,55.436 +297082,257.17,57.222 +297083,258.51,58.964 +297084,259.73,60.666 +297085,254.46,55.4 +297086,255.89,57.191 +297087,257.18,58.939 +297088,258.35,60.646 +297089,253.24,55.365 +297090,254.61,57.161 +297091,255.85,58.913 +297092,256.98,60.625 +297093,252.01,55.332 +297094,253.34,57.131 +297095,254.53,58.887 +297096,255.6,60.603 +297097,250.79,55.3 +297098,252.06,57.101 +297099,253.2,58.861 +297100,254.22,60.58 +297101,249.57,55.269 +297102,250.78,57.073 +297103,251.87,58.834 +297104,252.84,60.555 +297105,248.35,55.24 +297106,249.5,57.044 +297107,250.54,58.806 +297108,251.46,60.528 +297109,247.13,55.212 +297110,248.22,57.016 +297111,249.21,58.778 +297112,250.08,60.5 +297113,245.91,55.186 +297114,246.95,56.989 +297115,247.87,58.75 +297116,248.7,60.471 +297117,244.69,55.161 +297118,245.67,56.962 +297119,246.54,58.721 +297120,247.32,60.441 +297121,243.47,55.138 +297122,244.4,56.935 +297123,245.21,58.691 +297124,245.94,60.409 +297125,242.26,55.116 +297126,243.12,56.909 +297127,243.88,58.662 +297128,244.56,60.376 +297129,241.04,55.096 +297130,241.84,56.883 +297131,242.55,58.631 +297132,243.18,60.341 +297133,239.82,55.077 +297134,240.57,56.858 +297135,241.22,58.6 +297136,241.79,60.305 +297137,238.61,55.059 +297138,239.29,56.833 +297139,239.89,58.569 +297140,240.41,60.267 +297141,237.39,55.043 +297142,238.02,56.809 +297143,238.56,58.537 +297144,239.02,60.228 +297145,236.18,55.028 +297146,236.74,56.785 +297147,237.22,58.505 +297148,237.64,60.188 +297149,234.97,55.015 +297150,235.47,56.762 +297151,235.89,58.472 +297152,236.25,60.146 +297153,233.75,55.003 +297154,234.19,56.739 +297155,234.56,58.439 +297156,234.87,60.103 +297157,232.54,54.992 +297158,232.92,56.717 +297159,233.23,58.405 +297160,233.48,60.059 +297161,231.33,54.983 +297162,231.64,56.695 +297163,231.9,58.371 +297164,232.09,60.013 +297165,230.11,54.975 +297166,230.37,56.673 +297167,230.56,58.337 +297168,230.71,59.966 +297169,228.9,54.969 +297170,229.1,56.652 +297171,229.23,58.301 +297172,229.32,59.918 +297173,227.69,54.964 +297174,227.82,56.631 +297175,227.9,58.266 +297176,227.93,59.868 +297177,226.48,54.96 +297178,226.55,56.611 +297179,226.57,58.23 +297180,226.55,59.817 +297181,225.26,54.958 +297182,225.27,56.591 +297183,225.24,58.193 +297184,225.16,59.764 +297185,224.05,54.957 +297186,224,56.572 +297187,223.9,58.157 +297188,223.77,59.71 +297189,222.84,54.957 +297190,222.73,56.553 +297191,222.57,58.119 +297192,222.38,59.655 +297193,221.63,54.958 +297194,221.45,56.535 +297195,221.24,58.081 +297196,221,59.599 +297197,220.41,54.961 +297198,220.18,56.516 +297199,219.91,58.043 +297200,219.61,59.541 +297201,219.2,54.965 +297202,218.9,56.499 +297203,218.58,58.005 +297204,218.22,59.482 +297205,217.99,54.97 +297206,217.63,56.481 +297207,217.25,57.965 +297208,216.83,59.422 +297209,216.77,54.977 +297210,216.36,56.465 +297211,215.91,57.926 +297212,215.45,59.361 +297213,215.56,54.985 +297214,215.08,56.448 +297215,214.58,57.886 +297216,214.06,59.298 +297217,214.34,54.993 +297218,213.81,56.432 +297219,213.25,57.846 +297220,212.67,59.234 +297221,213.12,55.004 +297222,212.53,56.416 +297223,211.92,57.805 +297224,211.29,59.169 +297225,211.91,55.015 +297226,211.26,56.401 +297227,210.59,57.764 +297228,209.9,59.103 +297229,210.69,55.027 +297230,209.98,56.386 +297231,209.26,57.722 +297232,208.52,59.036 +297233,209.47,55.04 +297234,208.71,56.371 +297235,207.93,57.68 +297236,207.13,58.967 +297237,208.26,55.055 +297238,207.43,56.357 +297239,206.6,57.638 +297240,205.75,58.898 +297241,207.04,55.07 +297242,206.16,56.343 +297243,205.27,57.596 +297244,204.36,58.827 +297245,205.82,55.087 +297246,204.88,56.329 +297247,203.94,57.553 +297248,202.98,58.755 +297249,204.6,55.105 +297250,203.61,56.316 +297251,202.61,57.509 +297252,201.6,58.682 +297253,203.37,55.123 +297254,202.33,56.303 +297255,201.28,57.465 +297256,200.21,58.608 +297257,202.15,55.143 +297258,201.06,56.291 +297259,199.95,57.421 +297260,198.83,58.533 +297261,200.93,55.163 +297262,199.78,56.278 +297263,198.62,57.377 +297264,197.45,58.457 +297265,199.7,55.184 +297266,198.5,56.266 +297267,197.29,57.332 +297268,196.07,58.38 +297269,198.48,55.207 +297270,197.23,56.255 +297271,195.96,57.287 +297272,194.69,58.303 +297273,197.25,55.23 +297274,195.95,56.243 +297275,194.64,57.242 +297276,193.31,58.224 +297277,196.02,55.254 +297278,194.67,56.232 +297279,193.31,57.196 +297280,191.93,58.144 +297281,194.79,55.278 +297282,193.39,56.221 +297283,191.98,57.15 +297284,190.55,58.064 +297285,193.56,55.304 +297286,192.12,56.211 +297287,190.66,57.104 +297288,189.18,57.982 +297289,192.33,55.33 +297290,190.84,56.2 +297291,189.33,57.057 +297292,187.8,57.9 +297293,191.1,55.357 +297294,189.56,56.19 +297295,188,57.011 +297296,186.43,57.817 +297297,189.86,55.385 +297298,188.28,56.18 +297299,186.68,56.964 +297300,185.05,57.733 +297301,188.63,55.413 +297302,187,56.171 +297303,185.35,56.916 +297304,183.68,57.648 +297305,187.39,55.442 +297306,185.72,56.161 +297307,184.03,56.869 +297308,182.31,57.563 +297309,186.15,55.471 +297310,184.44,56.152 +297311,182.7,56.821 +297312,180.94,57.477 +297313,184.91,55.501 +297314,183.16,56.143 +297315,181.38,56.773 +297316,179.57,57.39 +297317,183.67,55.532 +297318,181.88,56.134 +297319,180.06,56.725 +297320,178.2,57.303 +297321,182.43,55.563 +297322,180.6,56.125 +297323,178.74,56.676 +297324,176.83,57.215 +297325,181.19,55.594 +297326,179.32,56.116 +297327,177.41,56.628 +297328,175.47,57.127 +297329,179.94,55.626 +297330,178.03,56.108 +297331,176.09,56.579 +297332,174.11,57.038 +297333,178.69,55.659 +297334,176.75,56.1 +297335,174.77,56.53 +297336,172.74,56.948 +297337,177.44,55.691 +297338,175.47,56.092 +297339,173.45,56.481 +297340,171.38,56.858 +297341,176.19,55.724 +297342,174.19,56.083 +297343,172.13,56.432 +297344,170.02,56.768 +297345,174.94,55.758 +297346,172.9,56.076 +297347,170.81,56.383 +297348,168.66,56.677 +297349,173.69,55.791 +297350,171.62,56.068 +297351,169.49,56.333 +297352,167.3,56.585 +297353,172.43,55.825 +297354,170.33,56.06 +297355,168.17,56.284 +297356,165.95,56.494 +297357,171.17,55.859 +297358,169.05,56.052 +297359,166.85,56.234 +297360,164.59,56.402 +297361,169.92,55.894 +297362,167.76,56.045 +297363,165.54,56.184 +297364,163.24,56.31 +297365,168.66,55.928 +297366,166.47,56.037 +297367,164.22,56.134 +297368,161.89,56.217 +297369,167.39,55.962 +297370,165.19,56.029 +297371,162.91,56.084 +297372,160.54,56.124 +297373,166.13,55.997 +297374,163.9,56.022 +297375,161.59,56.034 +297376,159.19,56.032 +297377,164.86,56.032 +297378,162.61,56.014 +297379,160.28,55.984 +297380,157.85,55.938 +297381,163.6,56.066 +297382,161.32,56.007 +297383,158.96,55.934 +297384,156.5,55.845 +297385,162.33,56.101 +297386,160.03,56 +297387,157.65,55.884 +297388,155.16,55.752 +297389,161.06,56.135 +297390,158.74,55.992 +297391,156.33,55.834 +297392,153.82,55.659 +297393,159.78,56.17 +297394,157.45,55.985 +297395,155.02,55.784 +297396,152.48,55.565 +297397,158.51,56.204 +297398,156.16,55.977 +297399,153.71,55.734 +297400,151.15,55.472 +297401,157.23,56.238 +297402,154.87,55.969 +297403,152.4,55.684 +297404,149.81,55.379 +297405,155.95,56.272 +297406,153.58,55.962 +297407,151.09,55.634 +297408,148.48,55.286 +297409,154.67,56.306 +297410,152.28,55.954 +297411,149.78,55.584 +297412,147.15,55.193 +297413,153.39,56.34 +297414,150.99,55.946 +297415,148.47,55.534 +297416,145.82,55.1 +297417,152.11,56.373 +297418,149.7,55.938 +297419,147.16,55.484 +297420,144.49,55.007 +297421,150.82,56.406 +297422,148.4,55.93 +297423,145.86,55.434 +297424,143.16,54.915 +297425,149.54,56.438 +297426,147.11,55.922 +297427,144.55,55.384 +297428,141.84,54.822 +297429,148.25,56.471 +297430,145.81,55.914 +297431,143.24,55.335 +297432,140.52,54.73 +297433,146.96,56.502 +297434,144.52,55.905 +297435,141.94,55.285 +297436,139.2,54.639 +297437,145.66,56.534 +297438,143.22,55.897 +297439,140.63,55.236 +297440,137.88,54.548 +297441,144.37,56.564 +297442,141.92,55.888 +297443,139.33,55.187 +297444,136.57,54.457 +297445,143.07,56.595 +297446,140.62,55.879 +297447,138.03,55.138 +297448,135.26,54.367 +297449,141.77,56.625 +297450,139.32,55.87 +297451,136.73,55.089 +297452,133.94,54.277 +297453,140.47,56.654 +297454,138.03,55.861 +297455,135.42,55.04 +297456,132.64,54.187 +297457,139.17,56.683 +297458,136.73,55.852 +297459,134.12,54.992 +297460,131.33,54.099 +297461,137.87,56.711 +297462,135.43,55.842 +297463,132.82,54.943 +297464,130.03,54.01 +297465,136.56,56.738 +297466,134.12,55.832 +297467,131.52,54.895 +297468,128.72,53.923 +297469,135.25,56.765 +297470,132.82,55.822 +297471,130.22,54.847 +297472,127.42,53.836 +297473,133.94,56.791 +297474,131.52,55.812 +297475,128.93,54.799 +297476,126.13,53.749 +297477,132.63,56.816 +297478,130.22,55.801 +297479,127.63,54.752 +297480,124.83,53.664 +297481,131.32,56.84 +297482,128.92,55.79 +297483,126.33,54.705 +297484,123.54,53.579 +297485,130.01,56.864 +297486,127.61,55.779 +297487,125.04,54.658 +297488,122.25,53.495 +297489,128.69,56.887 +297490,126.31,55.768 +297491,123.74,54.611 +297492,120.96,53.412 +297493,127.37,56.909 +297494,125,55.756 +297495,122.45,54.565 +297496,119.67,53.329 +297497,126.05,56.93 +297498,123.7,55.744 +297499,121.15,54.518 +297500,118.39,53.248 +297501,124.73,56.95 +297502,122.39,55.732 +297503,119.86,54.473 +297504,117.1,53.167 +297505,123.41,56.969 +297506,121.08,55.719 +297507,118.57,54.427 +297508,115.82,53.088 +297509,122.08,56.988 +297510,119.78,55.706 +297511,117.28,54.382 +297512,114.55,53.009 +297513,120.76,57.005 +297514,118.47,55.693 +297515,115.99,54.337 +297516,113.27,52.931 +297517,119.43,57.021 +297518,117.16,55.679 +297519,114.7,54.292 +297520,112,52.854 +297521,118.1,57.037 +297522,115.85,55.666 +297523,113.41,54.248 +297524,110.73,52.779 +297525,116.77,57.051 +297526,114.54,55.651 +297527,112.12,54.204 +297528,109.46,52.704 +297529,115.43,57.064 +297530,113.23,55.637 +297531,110.83,54.161 +297532,108.19,52.631 +297533,114.1,57.076 +297534,111.92,55.622 +297535,109.54,54.118 +297536,106.93,52.559 +297537,112.76,57.087 +297538,110.61,55.606 +297539,108.26,54.075 +297540,105.67,52.487 +297541,111.43,57.097 +297542,109.3,55.59 +297543,106.97,54.032 +297544,104.4,52.417 +297545,110.09,57.106 +297546,107.99,55.574 +297547,105.69,53.99 +297548,103.15,52.349 +297549,108.75,57.113 +297550,106.67,55.557 +297551,104.4,53.949 +297552,101.89,52.281 +297553,107.4,57.12 +297554,105.36,55.54 +297555,103.12,53.908 +297556,100.64,52.215 +297557,106.06,57.125 +297558,104.05,55.523 +297559,101.84,53.867 +297560,99.385,52.15 +297561,104.72,57.129 +297562,102.73,55.505 +297563,100.55,53.827 +297564,98.135,52.086 +297565,103.37,57.131 +297566,101.42,55.487 +297567,99.272,53.787 +297568,96.887,52.024 +297569,102.02,57.133 +297570,100.1,55.468 +297571,97.991,53.747 +297572,95.641,51.963 +297573,100.67,57.133 +297574,98.788,55.449 +297575,96.711,53.708 +297576,94.397,51.904 +297577,99.323,57.132 +297578,97.472,55.429 +297579,95.431,53.67 +297580,93.155,51.845 +297581,97.971,57.129 +297582,96.156,55.409 +297583,94.151,53.631 +297584,91.915,51.789 +297585,96.618,57.125 +297586,94.839,55.389 +297587,92.873,53.594 +297588,90.677,51.733 +297589,95.263,57.12 +297590,93.522,55.368 +297591,91.595,53.557 +297592,89.44,51.679 +297593,93.908,57.114 +297594,92.204,55.346 +297595,90.317,53.52 +297596,88.206,51.627 +297597,92.551,57.106 +297598,90.886,55.325 +297599,89.04,53.484 +297600,86.973,51.576 +297601,91.193,57.096 +297602,89.568,55.302 +297603,87.764,53.448 +297604,85.741,51.527 +297605,89.834,57.086 +297606,88.249,55.279 +297607,86.488,53.412 +297608,84.512,51.479 +297609,88.474,57.074 +297610,86.93,55.256 +297611,85.213,53.378 +297612,83.284,51.432 +297613,87.112,57.06 +297614,85.61,55.232 +297615,83.938,53.343 +297616,82.058,51.387 +297617,85.75,57.045 +297618,84.29,55.208 +297619,82.664,53.31 +297620,80.833,51.344 +297621,84.386,57.029 +297622,82.97,55.183 +297623,81.39,53.276 +297624,79.61,51.302 +297625,83.022,57.011 +297626,81.65,55.158 +297627,80.117,53.243 +297628,78.388,51.262 +297629,81.656,56.992 +297630,80.329,55.132 +297631,78.844,53.211 +297632,77.168,51.223 +297633,80.29,56.971 +297634,79.008,55.106 +297635,77.572,53.179 +297636,75.949,51.186 +297637,78.923,56.949 +297638,77.686,55.079 +297639,76.3,53.148 +297640,74.731,51.15 +297641,77.554,56.925 +297642,76.365,55.052 +297643,75.028,53.117 +297644,73.514,51.116 +297645,76.185,56.9 +297646,75.043,55.024 +297647,73.757,53.087 +297648,72.299,51.084 +297649,74.815,56.873 +297650,73.72,54.995 +297651,72.487,53.057 +297652,71.085,51.053 +297653,73.444,56.845 +297654,72.398,54.967 +297655,71.217,53.028 +297656,69.872,51.024 +297657,72.073,56.815 +297658,71.075,54.937 +297659,69.947,52.999 +297660,68.661,50.996 +297661,70.701,56.784 +297662,69.752,54.907 +297663,68.677,52.971 +297664,67.45,50.97 +297665,69.328,56.752 +297666,68.429,54.877 +297667,67.408,52.944 +297668,66.24,50.946 +297669,67.954,56.718 +297670,67.106,54.846 +297671,66.139,52.916 +297672,65.031,50.923 +297673,66.58,56.682 +297674,65.782,54.815 +297675,64.871,52.89 +297676,63.823,50.902 +297677,65.205,56.645 +297678,64.459,54.783 +297679,63.603,52.864 +297680,62.616,50.883 +297681,63.829,56.607 +297682,63.135,54.751 +297683,62.335,52.838 +297684,61.409,50.865 +297685,62.453,56.567 +297686,61.811,54.718 +297687,61.067,52.813 +297688,60.204,50.848 +297689,61.077,56.525 +297690,60.487,54.684 +297691,59.8,52.788 +297692,58.998,50.833 +297693,59.7,56.482 +297694,59.162,54.65 +297695,58.533,52.764 +297696,57.794,50.82 +297697,58.322,56.438 +297698,57.838,54.616 +297699,57.266,52.741 +297700,56.59,50.808 +297701,56.944,56.392 +297702,56.514,54.581 +297703,55.999,52.718 +297704,55.386,50.798 +297705,55.566,56.344 +297706,55.189,54.546 +297707,54.733,52.695 +297708,54.183,50.79 +297709,54.188,56.295 +297710,53.865,54.51 +297711,53.467,52.673 +297712,52.98,50.783 +297713,52.809,56.245 +297714,52.54,54.473 +297715,52.2,52.652 +297716,51.778,50.777 +297717,51.43,56.193 +297718,51.215,54.436 +297719,50.934,52.631 +297720,50.575,50.773 +297721,50.05,56.14 +297722,49.891,54.399 +297723,49.669,52.61 +297724,49.373,50.77 +297725,48.671,56.086 +297726,48.566,54.361 +297727,48.403,52.59 +297728,48.171,50.769 +297729,47.291,56.029 +297730,47.241,54.323 +297731,47.137,52.57 +297732,46.97,50.77 +297733,45.911,55.972 +297734,45.917,54.284 +297735,45.872,52.551 +297736,45.768,50.772 +297737,44.531,55.913 +297738,44.592,54.245 +297739,44.606,52.533 +297740,44.566,50.775 +297741,43.151,55.853 +297742,43.268,54.205 +297743,43.341,52.515 +297744,43.364,50.78 +297745,41.771,55.791 +297746,41.943,54.165 +297747,42.075,52.497 +297748,42.162,50.786 +297749,40.391,55.728 +297750,40.619,54.124 +297751,40.81,52.48 +297752,40.959,50.793 +297753,39.011,55.664 +297754,39.295,54.083 +297755,39.545,52.463 +297756,39.757,50.802 +297757,37.632,55.598 +297758,37.97,54.042 +297759,38.279,52.447 +297760,38.554,50.813 +297761,36.252,55.531 +297762,36.646,54 +297763,37.014,52.431 +297764,37.351,50.824 +297765,34.872,55.463 +297766,35.323,53.957 +297767,35.748,52.415 +297768,36.147,50.837 +297769,33.493,55.394 +297770,33.999,53.914 +297771,34.483,52.4 +297772,34.943,50.851 +297773,32.114,55.323 +297774,32.675,53.871 +297775,33.217,52.386 +297776,33.738,50.867 +297777,30.735,55.251 +297778,31.352,53.827 +297779,31.951,52.372 +297780,32.533,50.883 +297781,29.357,55.177 +297782,30.029,53.783 +297783,30.686,52.358 +297784,31.327,50.901 +297785,27.979,55.103 +297786,28.706,53.739 +297787,29.42,52.344 +297788,30.12,50.92 +297789,26.601,55.027 +297790,27.383,53.694 +297791,28.154,52.331 +297792,28.913,50.94 +297793,25.224,54.95 +297794,26.06,53.649 +297795,26.887,52.319 +297796,27.705,50.961 +297797,23.847,54.872 +297798,24.738,53.603 +297799,25.621,52.307 +297800,26.496,50.984 +297801,22.471,54.793 +297802,23.416,53.557 +297803,24.354,52.295 +297804,25.286,51.007 +297805,21.095,54.713 +297806,22.094,53.511 +297807,23.088,52.283 +297808,24.076,51.032 +297809,19.72,54.632 +297810,20.773,53.464 +297811,21.821,52.272 +297812,22.864,51.057 +297813,18.346,54.549 +297814,19.452,53.417 +297815,20.553,52.261 +297816,21.652,51.084 +297817,16.972,54.466 +297818,18.131,53.369 +297819,19.286,52.251 +297820,20.438,51.111 +297821,15.599,54.382 +297822,16.81,53.322 +297823,18.018,52.241 +297824,19.224,51.14 +297825,14.227,54.296 +297826,15.49,53.274 +297827,16.75,52.231 +297828,18.008,51.169 +297829,12.855,54.21 +297830,14.17,53.225 +297831,15.482,52.221 +297832,16.791,51.199 +297833,11.484,54.123 +297834,12.851,53.177 +297835,14.214,52.212 +297836,15.573,51.23 +297837,10.114,54.034 +297838,11.532,53.128 +297839,12.945,52.203 +297840,14.353,51.262 +297841,8.7452,53.945 +297842,10.213,53.079 +297843,11.676,52.194 +297844,13.133,51.294 +297845,7.3771,53.855 +297846,8.8953,53.029 +297847,10.406,52.186 +297848,11.911,51.328 +297849,6.01,53.765 +297850,7.5775,52.979 +297851,9.1362,52.178 +297852,10.687,51.362 +297853,4.6439,53.673 +297854,6.2602,52.929 +297855,7.866,52.17 +297856,9.4628,51.396 +297857,3.2788,53.581 +297858,4.9434,52.879 +297859,6.5954,52.162 +297860,8.2367,51.432 +297861,1.9148,53.488 +297862,3.627,52.829 +297863,5.3245,52.155 +297864,7.0092,51.467 +297865,0.55197,53.394 +297866,2.311,52.778 +297867,4.0531,52.147 +297868,5.7803,51.504 +297869,359.19,53.3 +297870,0.99562,52.727 +297871,2.7814,52.14 +297872,4.5498,51.541 +297873,357.83,53.205 +297874,359.68,52.676 +297875,1.5092,52.133 +297876,3.3178,51.578 +297877,356.47,53.109 +297878,358.37,52.625 +297879,0.23667,52.127 +297880,2.0843,51.616 +297881,355.11,53.013 +297882,357.05,52.574 +297883,358.96,52.12 +297884,0.84922,51.655 +297885,353.76,52.917 +297886,355.74,52.522 +297887,357.69,52.114 +297888,359.61,51.693 +297889,352.4,52.82 +297890,354.43,52.47 +297891,356.42,52.107 +297892,358.37,51.733 +297893,351.05,52.722 +297894,353.11,52.419 +297895,355.14,52.101 +297896,357.13,51.772 +297897,349.69,52.624 +297898,351.8,52.367 +297899,353.87,52.095 +297900,355.89,51.812 +297901,348.34,52.525 +297902,350.49,52.315 +297903,352.59,52.089 +297904,354.65,51.852 +297905,346.99,52.427 +297906,349.18,52.262 +297907,351.32,52.083 +297908,353.4,51.892 +297909,345.65,52.328 +297910,347.87,52.21 +297911,350.04,52.078 +297912,352.16,51.932 +297913,344.3,52.228 +297914,346.56,52.158 +297915,348.76,52.072 +297916,350.91,51.973 +297917,342.95,52.129 +297918,345.25,52.105 +297919,347.49,52.066 +297920,349.66,52.014 +297921,341.61,52.029 +297922,343.94,52.053 +297923,346.21,52.061 +297924,348.41,52.054 +297925,340.27,51.929 +297926,342.64,52.001 +297927,344.93,52.055 +297928,347.15,52.095 +297929,338.93,51.828 +297930,341.33,51.948 +297931,343.65,52.05 +297932,345.9,52.136 +297933,337.59,51.728 +297934,340.02,51.896 +297935,342.37,52.044 +297936,344.64,52.176 +297937,336.25,51.628 +297938,338.72,51.843 +297939,341.09,52.039 +297940,343.38,52.217 +297941,334.92,51.527 +297942,337.41,51.791 +297943,339.81,52.033 +297944,342.12,52.258 +297945,333.59,51.427 +297946,336.11,51.738 +297947,338.53,52.028 +297948,340.86,52.298 +297949,332.26,51.327 +297950,334.81,51.686 +297951,337.25,52.022 +297952,339.59,52.338 +297953,330.93,51.227 +297954,333.5,51.633 +297955,335.97,52.016 +297956,338.33,52.378 +297957,329.6,51.127 +297958,332.2,51.581 +297959,334.68,52.011 +297960,337.06,52.418 +297961,328.27,51.027 +297962,330.9,51.529 +297963,333.4,52.005 +297964,335.79,52.457 +297965,326.95,50.927 +297966,329.6,51.477 +297967,332.12,51.999 +297968,334.52,52.497 +297969,325.63,50.828 +297970,328.3,51.425 +297971,330.83,51.993 +297972,333.24,52.535 +297973,324.31,50.728 +297974,327,51.373 +297975,329.55,51.987 +297976,331.97,52.574 +297977,322.99,50.63 +297978,325.7,51.321 +297979,328.26,51.981 +297980,330.69,52.612 +297981,321.68,50.531 +297982,324.41,51.269 +297983,326.98,51.974 +297984,329.41,52.649 +297985,320.36,50.433 +297986,323.11,51.218 +297987,325.69,51.968 +297988,328.13,52.686 +297989,319.05,50.335 +297990,321.81,51.167 +297991,324.4,51.961 +297992,326.84,52.723 +297993,317.74,50.238 +297994,320.52,51.115 +297995,323.11,51.954 +297996,325.56,52.759 +297997,316.44,50.142 +297998,319.22,51.064 +297999,321.82,51.947 +298000,324.27,52.794 +298001,315.13,50.046 +298002,317.93,51.014 +298003,320.54,51.94 +298004,322.98,52.829 +298005,313.83,49.95 +298006,316.64,50.963 +298007,319.25,51.933 +298008,321.69,52.863 +298009,312.53,49.855 +298010,315.34,50.913 +298011,317.96,51.925 +298012,320.4,52.897 +298013,311.23,49.761 +298014,314.05,50.863 +298015,316.66,51.917 +298016,319.11,52.929 +298017,309.94,49.668 +298018,312.76,50.813 +298019,315.37,51.909 +298020,317.81,52.961 +298021,308.64,49.575 +298022,311.47,50.763 +298023,314.08,51.901 +298024,316.51,52.993 +298025,307.35,49.483 +298026,310.18,50.714 +298027,312.79,51.892 +298028,315.21,53.023 +298029,306.06,49.392 +298030,308.89,50.665 +298031,311.5,51.883 +298032,313.91,53.053 +298033,304.77,49.302 +298034,307.6,50.616 +298035,310.2,51.874 +298036,312.61,53.081 +298037,303.49,49.213 +298038,306.32,50.568 +298039,308.91,51.865 +298040,311.3,53.109 +298041,302.21,49.124 +298042,305.03,50.52 +298043,307.61,51.855 +298044,310,53.136 +298045,300.93,49.037 +298046,303.75,50.472 +298047,306.32,51.845 +298048,308.69,53.162 +298049,299.65,48.95 +298050,302.46,50.425 +298051,305.02,51.834 +298052,307.38,53.187 +298053,298.38,48.865 +298054,301.18,50.378 +298055,303.72,51.824 +298056,306.07,53.211 +298057,297.1,48.781 +298058,299.89,50.331 +298059,302.43,51.813 +298060,304.75,53.234 +298061,295.83,48.698 +298062,298.61,50.285 +298063,301.13,51.801 +298064,303.44,53.256 +298065,294.56,48.616 +298066,297.33,50.239 +298067,299.83,51.79 +298068,302.12,53.277 +298069,293.3,48.535 +298070,296.05,50.193 +298071,298.53,51.778 +298072,300.8,53.297 +298073,292.03,48.455 +298074,294.77,50.148 +298075,297.23,51.765 +298076,299.48,53.315 +298077,290.77,48.377 +298078,293.49,50.104 +298079,295.93,51.752 +298080,298.16,53.333 +298081,289.51,48.3 +298082,292.21,50.059 +298083,294.63,51.739 +298084,296.84,53.349 +298085,288.26,48.224 +298086,290.93,50.016 +298087,293.33,51.725 +298088,295.51,53.364 +298089,287,48.15 +298090,289.66,49.972 +298091,292.03,51.711 +298092,294.19,53.378 +298093,285.75,48.077 +298094,288.38,49.929 +298095,290.73,51.697 +298096,292.86,53.391 +298097,284.5,48.005 +298098,287.1,49.887 +298099,289.43,51.682 +298100,291.53,53.402 +298101,283.25,47.935 +298102,285.83,49.845 +298103,288.12,51.667 +298104,290.2,53.412 +298105,282.01,47.866 +298106,284.55,49.803 +298107,286.82,51.651 +298108,288.87,53.421 +298109,280.76,47.798 +298110,283.28,49.762 +298111,285.52,51.635 +298112,287.53,53.428 +298113,279.52,47.733 +298114,282.01,49.721 +298115,284.21,51.618 +298116,286.2,53.435 +298117,278.28,47.668 +298118,280.74,49.681 +298119,282.91,51.601 +298120,284.86,53.439 +298121,277.04,47.606 +298122,279.46,49.642 +298123,281.6,51.583 +298124,283.52,53.443 +298125,275.81,47.544 +298126,278.19,49.603 +298127,280.3,51.565 +298128,282.18,53.445 +298129,274.58,47.485 +298130,276.92,49.564 +298131,278.99,51.547 +298132,280.84,53.445 +298133,273.34,47.427 +298134,275.65,49.526 +298135,277.68,51.528 +298136,279.5,53.444 +298137,272.11,47.37 +298138,274.38,49.489 +298139,276.38,51.508 +298140,278.16,53.442 +298141,270.89,47.316 +298142,273.12,49.452 +298143,275.07,51.488 +298144,276.81,53.438 +298145,269.66,47.263 +298146,271.85,49.416 +298147,273.76,51.468 +298148,275.47,53.433 +298149,268.44,47.211 +298150,270.58,49.38 +298151,272.45,51.447 +298152,274.12,53.427 +298153,267.22,47.162 +298154,269.31,49.344 +298155,271.15,51.426 +298156,272.77,53.418 +298157,266,47.114 +298158,268.05,49.31 +298159,269.84,51.404 +298160,271.42,53.409 +298161,264.78,47.067 +298162,266.78,49.276 +298163,268.53,51.381 +298164,270.07,53.397 +298165,263.56,47.023 +298166,265.52,49.242 +298167,267.22,51.358 +298168,268.72,53.385 +298169,262.35,46.98 +298170,264.25,49.209 +298171,265.91,51.335 +298172,267.37,53.37 +298173,261.14,46.939 +298174,262.99,49.177 +298175,264.6,51.311 +298176,266.02,53.355 +298177,259.92,46.9 +298178,261.73,49.145 +298179,263.29,51.286 +298180,264.66,53.337 +298181,258.71,46.863 +298182,260.46,49.113 +298183,261.98,51.261 +298184,263.31,53.318 +298185,257.51,46.827 +298186,259.2,49.083 +298187,260.67,51.235 +298188,261.95,53.298 +298189,256.3,46.793 +298190,257.94,49.053 +298191,259.35,51.209 +298192,260.59,53.276 +298193,255.09,46.762 +298194,256.68,49.023 +298195,258.04,51.182 +298196,259.24,53.252 +298197,253.89,46.731 +298198,255.42,48.994 +298199,256.73,51.155 +298200,257.88,53.227 +298201,252.69,46.703 +298202,254.16,48.966 +298203,255.42,51.127 +298204,256.52,53.2 +298205,251.48,46.676 +298206,252.9,48.938 +298207,254.11,51.099 +298208,255.16,53.172 +298209,250.28,46.652 +298210,251.64,48.911 +298211,252.79,51.07 +298212,253.8,53.142 +298213,249.08,46.629 +298214,250.38,48.884 +298215,251.48,51.041 +298216,252.44,53.11 +298217,247.89,46.608 +298218,249.12,48.859 +298219,250.17,51.011 +298220,251.07,53.077 +298221,246.69,46.589 +298222,247.86,48.833 +298223,248.86,50.98 +298224,249.71,53.042 +298225,245.49,46.571 +298226,246.6,48.808 +298227,247.54,50.949 +298228,248.35,53.006 +298229,244.3,46.555 +298230,245.34,48.784 +298231,246.23,50.918 +298232,246.98,52.968 +298233,243.1,46.542 +298234,244.09,48.761 +298235,244.92,50.886 +298236,245.62,52.928 +298237,241.91,46.53 +298238,242.83,48.738 +298239,243.6,50.853 +298240,244.25,52.887 +298241,240.71,46.519 +298242,241.57,48.715 +298243,242.29,50.82 +298244,242.89,52.844 +298245,239.52,46.511 +298246,240.32,48.693 +298247,240.97,50.786 +298248,241.52,52.8 +298249,238.33,46.504 +298250,239.06,48.672 +298251,239.66,50.752 +298252,240.16,52.754 +298253,237.14,46.499 +298254,237.8,48.652 +298255,238.35,50.718 +298256,238.79,52.706 +298257,235.95,46.496 +298258,236.55,48.632 +298259,237.03,50.682 +298260,237.42,52.657 +298261,234.75,46.494 +298262,235.29,48.612 +298263,235.72,50.647 +298264,236.05,52.606 +298265,233.56,46.495 +298266,234.04,48.593 +298267,234.4,50.61 +298268,234.69,52.554 +298269,232.37,46.496 +298270,232.78,48.575 +298271,233.09,50.573 +298272,233.32,52.5 +298273,231.18,46.5 +298274,231.53,48.557 +298275,231.78,50.536 +298276,231.95,52.445 +298277,229.99,46.505 +298278,230.27,48.54 +298279,230.46,50.498 +298280,230.58,52.388 +298281,228.8,46.512 +298282,229.01,48.523 +298283,229.15,50.46 +298284,229.21,52.33 +298285,227.61,46.521 +298286,227.76,48.507 +298287,227.83,50.421 +298288,227.85,52.27 +298289,226.42,46.531 +298290,226.51,48.491 +298291,226.52,50.382 +298292,226.48,52.209 +298293,225.23,46.543 +298294,225.25,48.476 +298295,225.21,50.342 +298296,225.11,52.146 +298297,224.04,46.556 +298298,224,48.462 +298299,223.89,50.302 +298300,223.74,52.082 +298301,222.85,46.571 +298302,222.74,48.448 +298303,222.58,50.261 +298304,222.37,52.016 +298305,221.66,46.587 +298306,221.49,48.434 +298307,221.26,50.22 +298308,221,51.949 +298309,220.47,46.605 +298310,220.23,48.421 +298311,219.95,50.178 +298312,219.64,51.88 +298313,219.28,46.624 +298314,218.98,48.409 +298315,218.64,50.136 +298316,218.27,51.81 +298317,218.09,46.645 +298318,217.72,48.397 +298319,217.32,50.094 +298320,216.9,51.738 +298321,216.9,46.667 +298322,216.47,48.385 +298323,216.01,50.05 +298324,215.53,51.666 +298325,215.7,46.691 +298326,215.21,48.374 +298327,214.7,50.007 +298328,214.17,51.592 +298329,214.51,46.716 +298330,213.96,48.364 +298331,213.39,49.963 +298332,212.8,51.516 +298333,213.32,46.742 +298334,212.7,48.354 +298335,212.07,49.919 +298336,211.43,51.439 +298337,212.12,46.77 +298338,211.45,48.344 +298339,210.76,49.874 +298340,210.07,51.361 +298341,210.93,46.799 +298342,210.19,48.335 +298343,209.45,49.829 +298344,208.7,51.282 +298345,209.73,46.829 +298346,208.94,48.326 +298347,208.14,49.783 +298348,207.33,51.201 +298349,208.53,46.86 +298350,207.68,48.318 +298351,206.83,49.737 +298352,205.97,51.119 +298353,207.33,46.893 +298354,206.43,48.31 +298355,205.52,49.691 +298356,204.61,51.036 +298357,206.14,46.926 +298358,205.17,48.303 +298359,204.2,49.645 +298360,203.24,50.952 +298361,204.94,46.961 +298362,203.91,48.296 +298363,202.89,49.598 +298364,201.88,50.867 +298365,203.73,46.997 +298366,202.66,48.289 +298367,201.58,49.55 +298368,200.52,50.78 +298369,202.53,47.034 +298370,201.4,48.283 +298371,200.27,49.502 +298372,199.15,50.693 +298373,201.33,47.071 +298374,200.14,48.277 +298375,198.96,49.454 +298376,197.79,50.604 +298377,200.12,47.11 +298378,198.89,48.271 +298379,197.66,49.406 +298380,196.43,50.514 +298381,198.92,47.15 +298382,197.63,48.266 +298383,196.35,49.357 +298384,195.07,50.423 +298385,197.71,47.191 +298386,196.37,48.261 +298387,195.04,49.308 +298388,193.72,50.332 +298389,196.5,47.232 +298390,195.11,48.257 +298391,193.73,49.259 +298392,192.36,50.239 +298393,195.29,47.275 +298394,193.85,48.252 +298395,192.42,49.21 +298396,191,50.145 +298397,194.08,47.318 +298398,192.6,48.249 +298399,191.12,49.16 +298400,189.65,50.051 +298401,192.87,47.362 +298402,191.34,48.245 +298403,189.81,49.11 +298404,188.29,49.955 +298405,191.66,47.406 +298406,190.08,48.242 +298407,188.5,49.059 +298408,186.94,49.859 +298409,190.44,47.452 +298410,188.82,48.238 +298411,187.2,49.009 +298412,185.58,49.762 +298413,189.22,47.498 +298414,187.56,48.236 +298415,185.89,48.958 +298416,184.23,49.664 +298417,188,47.544 +298418,186.3,48.233 +298419,184.59,48.907 +298420,182.88,49.565 +298421,186.78,47.591 +298422,185.04,48.231 +298423,183.29,48.856 +298424,181.53,49.466 +298425,185.56,47.639 +298426,183.77,48.228 +298427,181.98,48.804 +298428,180.18,49.366 +298429,184.34,47.687 +298430,182.51,48.226 +298431,180.68,48.753 +298432,178.84,49.265 +298433,183.11,47.736 +298434,181.25,48.225 +298435,179.38,48.701 +298436,177.49,49.164 +298437,181.89,47.784 +298438,179.99,48.223 +298439,178.07,48.649 +298440,176.15,49.062 +298441,180.66,47.834 +298442,178.72,48.222 +298443,176.77,48.597 +298444,174.8,48.96 +298445,179.43,47.883 +298446,177.46,48.22 +298447,175.47,48.545 +298448,173.46,48.857 +298449,178.2,47.933 +298450,176.2,48.219 +298451,174.17,48.493 +298452,172.12,48.753 +298453,176.96,47.983 +298454,174.93,48.218 +298455,172.87,48.441 +298456,170.78,48.65 +298457,175.73,48.034 +298458,173.67,48.217 +298459,171.57,48.389 +298460,169.45,48.546 +298461,174.49,48.084 +298462,172.4,48.217 +298463,170.28,48.336 +298464,168.11,48.441 +298465,173.25,48.135 +298466,171.14,48.216 +298467,168.98,48.284 +298468,166.78,48.336 +298469,172.01,48.186 +298470,169.87,48.215 +298471,167.68,48.231 +298472,165.44,48.231 +298473,170.77,48.237 +298474,168.6,48.215 +298475,166.38,48.179 +298476,164.11,48.126 +298477,169.53,48.287 +298478,167.33,48.214 +298479,165.09,48.126 +298480,162.78,48.021 +298481,168.28,48.338 +298482,166.07,48.214 +298483,163.79,48.073 +298484,161.45,47.915 +298485,167.03,48.389 +298486,164.8,48.213 +298487,162.5,48.021 +298488,160.13,47.809 +298489,165.78,48.44 +298490,163.53,48.213 +298491,161.21,47.968 +298492,158.8,47.704 +298493,164.53,48.49 +298494,162.26,48.212 +298495,159.91,47.916 +298496,157.48,47.598 +298497,163.28,48.54 +298498,160.99,48.212 +298499,158.62,47.863 +298500,156.16,47.492 +298501,162.02,48.59 +298502,159.72,48.211 +298503,157.33,47.811 +298504,154.84,47.387 +298505,160.76,48.64 +298506,158.45,48.211 +298507,156.04,47.759 +298508,153.53,47.281 +298509,159.5,48.69 +298510,157.17,48.21 +298511,154.75,47.707 +298512,152.21,47.176 +298513,158.24,48.739 +298514,155.9,48.21 +298515,153.46,47.654 +298516,150.9,47.071 +298517,156.98,48.788 +298518,154.63,48.209 +298519,152.17,47.603 +298520,149.59,46.966 +298521,155.72,48.836 +298522,153.36,48.208 +298523,150.88,47.551 +298524,148.28,46.861 +298525,154.45,48.884 +298526,152.08,48.207 +298527,149.59,47.499 +298528,146.97,46.757 +298529,153.18,48.932 +298530,150.81,48.206 +298531,148.31,47.448 +298532,145.67,46.653 +298533,151.91,48.978 +298534,149.53,48.205 +298535,147.02,47.396 +298536,144.36,46.549 +298537,150.64,49.025 +298538,148.26,48.203 +298539,145.74,47.345 +298540,143.06,46.446 +298541,149.36,49.071 +298542,146.98,48.202 +298543,144.45,47.294 +298544,141.76,46.343 +298545,148.09,49.116 +298546,145.7,48.2 +298547,143.17,47.244 +298548,140.47,46.241 +298549,146.81,49.16 +298550,144.42,48.198 +298551,141.89,47.193 +298552,139.17,46.14 +298553,145.53,49.204 +298554,143.15,48.196 +298555,140.61,47.143 +298556,137.88,46.039 +298557,144.25,49.247 +298558,141.87,48.194 +298559,139.32,47.093 +298560,136.59,45.939 +298561,142.96,49.29 +298562,140.59,48.191 +298563,138.04,47.044 +298564,135.3,45.839 +298565,141.68,49.331 +298566,139.31,48.189 +298567,136.77,46.994 +298568,134.02,45.741 +298569,140.39,49.372 +298570,138.03,48.186 +298571,135.49,46.945 +298572,132.73,45.643 +298573,139.1,49.412 +298574,136.75,48.183 +298575,134.21,46.897 +298576,131.45,45.546 +298577,137.81,49.451 +298578,135.46,48.179 +298579,132.93,46.848 +298580,130.17,45.45 +298581,136.52,49.489 +298582,134.18,48.175 +298583,131.66,46.8 +298584,128.9,45.355 +298585,135.23,49.526 +298586,132.9,48.171 +298587,130.38,46.752 +298588,127.62,45.26 +298589,133.93,49.562 +298590,131.62,48.167 +298591,129.1,46.705 +298592,126.35,45.167 +298593,132.63,49.597 +298594,130.33,48.162 +298595,127.83,46.658 +298596,125.08,45.075 +298597,131.33,49.631 +298598,129.05,48.157 +298599,126.56,46.612 +298600,123.81,44.984 +298601,130.03,49.664 +298602,127.76,48.152 +298603,125.29,46.565 +298604,122.55,44.894 +298605,128.73,49.696 +298606,126.48,48.146 +298607,124.01,46.52 +298608,121.29,44.805 +298609,127.43,49.727 +298610,125.19,48.14 +298611,122.74,46.475 +298612,120.03,44.718 +298613,126.12,49.757 +298614,123.9,48.134 +298615,121.47,46.43 +298616,118.77,44.631 +298617,124.81,49.785 +298618,122.62,48.127 +298619,120.2,46.385 +298620,117.51,44.547 +298621,123.5,49.812 +298622,121.33,48.12 +298623,118.93,46.341 +298624,116.26,44.463 +298625,122.19,49.838 +298626,120.04,48.112 +298627,117.67,46.298 +298628,115.01,44.381 +298629,120.88,49.863 +298630,118.75,48.104 +298631,116.4,46.255 +298632,113.76,44.3 +298633,119.57,49.887 +298634,117.46,48.096 +298635,115.13,46.212 +298636,112.51,44.22 +298637,118.25,49.909 +298638,116.17,48.087 +298639,113.87,46.171 +298640,111.27,44.143 +298641,116.93,49.93 +298642,114.88,48.078 +298643,112.6,46.129 +298644,110.03,44.066 +298645,115.62,49.949 +298646,113.59,48.068 +298647,111.34,46.088 +298648,108.79,43.991 +298649,114.3,49.967 +298650,112.3,48.058 +298651,110.08,46.048 +298652,107.55,43.918 +298653,112.98,49.984 +298654,111.01,48.048 +298655,108.81,46.008 +298656,106.31,43.846 +298657,111.65,49.999 +298658,109.72,48.037 +298659,107.55,45.969 +298660,105.08,43.776 +298661,110.33,50.013 +298662,108.43,48.025 +298663,106.29,45.93 +298664,103.85,43.708 +298665,109,50.026 +298666,107.13,48.013 +298667,105.03,45.892 +298668,102.62,43.642 +298669,107.68,50.037 +298670,105.84,48.001 +298671,103.77,45.854 +298672,101.4,43.577 +298673,106.35,50.046 +298674,104.55,47.988 +298675,102.51,45.817 +298676,100.17,43.514 +298677,105.02,50.054 +298678,103.25,47.975 +298679,101.25,45.781 +298680,98.95,43.452 +298681,103.69,50.061 +298682,101.96,47.961 +298683,99.993,45.745 +298684,97.73,43.393 +298685,102.36,50.066 +298686,100.66,47.946 +298687,98.736,45.71 +298688,96.512,43.335 +298689,101.03,50.069 +298690,99.366,47.932 +298691,97.479,45.676 +298692,95.295,43.279 +298693,99.695,50.071 +298694,98.07,47.916 +298695,96.223,45.642 +298696,94.081,43.225 +298697,98.36,50.072 +298698,96.774,47.9 +298699,94.968,45.608 +298700,92.869,43.173 +298701,97.024,50.07 +298702,95.478,47.884 +298703,93.713,45.576 +298704,91.659,43.123 +298705,95.687,50.067 +298706,94.181,47.867 +298707,92.459,45.544 +298708,90.45,43.075 +298709,94.349,50.063 +298710,92.884,47.849 +298711,91.205,45.512 +298712,89.244,43.029 +298713,93.011,50.057 +298714,91.587,47.831 +298715,89.952,45.482 +298716,88.039,42.985 +298717,91.671,50.049 +298718,90.289,47.813 +298719,88.699,45.452 +298720,86.835,42.942 +298721,90.33,50.039 +298722,88.991,47.793 +298723,87.447,45.422 +298724,85.634,42.902 +298725,88.989,50.028 +298726,87.692,47.774 +298727,86.196,45.394 +298728,84.434,42.864 +298729,87.646,50.016 +298730,86.394,47.754 +298731,84.945,45.366 +298732,83.236,42.828 +298733,86.303,50.001 +298734,85.095,47.733 +298735,83.695,45.338 +298736,82.039,42.794 +298737,84.959,49.985 +298738,83.796,47.711 +298739,82.445,45.311 +298740,80.843,42.762 +298741,83.614,49.967 +298742,82.497,47.689 +298743,81.195,45.285 +298744,79.649,42.732 +298745,82.268,49.948 +298746,81.197,47.667 +298747,79.946,45.26 +298748,78.457,42.704 +298749,80.922,49.927 +298750,79.897,47.644 +298751,78.697,45.235 +298752,77.265,42.678 +298753,79.575,49.904 +298754,78.597,47.62 +298755,77.449,45.212 +298756,76.075,42.654 +298757,78.228,49.879 +298758,77.297,47.596 +298759,76.201,45.188 +298760,74.886,42.632 +298761,76.879,49.853 +298762,75.997,47.572 +298763,74.954,45.166 +298764,73.699,42.613 +298765,75.531,49.825 +298766,74.696,47.546 +298767,73.707,45.144 +298768,72.512,42.595 +298769,74.181,49.796 +298770,73.396,47.52 +298771,72.46,45.122 +298772,71.326,42.579 +298773,72.831,49.764 +298774,72.095,47.494 +298775,71.214,45.102 +298776,70.141,42.566 +298777,71.481,49.731 +298778,70.794,47.467 +298779,69.968,45.082 +298780,68.957,42.555 +298781,70.13,49.697 +298782,69.493,47.44 +298783,68.722,45.063 +298784,67.774,42.545 +298785,68.779,49.66 +298786,68.192,47.411 +298787,67.477,45.044 +298788,66.592,42.538 +298789,67.428,49.622 +298790,66.891,47.383 +298791,66.231,45.027 +298792,65.41,42.533 +298793,66.076,49.582 +298794,65.59,47.354 +298795,64.986,45.009 +298796,64.229,42.53 +298797,64.724,49.541 +298798,64.289,47.324 +298799,63.742,44.993 +298800,63.048,42.528 +298801,63.371,49.497 +298802,62.988,47.294 +298803,62.497,44.977 +298804,61.868,42.529 +298805,62.019,49.452 +298806,61.686,47.263 +298807,61.253,44.962 +298808,60.689,42.532 +298809,60.666,49.406 +298810,60.385,47.231 +298811,60.009,44.948 +298812,59.509,42.537 +298813,59.313,49.358 +298814,59.084,47.199 +298815,58.765,44.934 +298816,58.33,42.543 +298817,57.96,49.308 +298818,57.782,47.167 +298819,57.521,44.921 +298820,57.152,42.552 +298821,56.607,49.256 +298822,56.481,47.134 +298823,56.278,44.908 +298824,55.973,42.563 +298825,55.253,49.203 +298826,55.18,47.1 +298827,55.034,44.896 +298828,54.794,42.575 +298829,53.9,49.148 +298830,53.879,47.066 +298831,53.791,44.885 +298832,53.616,42.59 +298833,52.547,49.092 +298834,52.578,47.032 +298835,52.547,44.874 +298836,52.437,42.606 +298837,51.194,49.034 +298838,51.277,46.997 +298839,51.304,44.865 +298840,51.259,42.624 +298841,49.84,48.974 +298842,49.976,46.961 +298843,50.061,44.855 +298844,50.08,42.644 +298845,48.487,48.913 +298846,48.675,46.925 +298847,48.817,44.847 +298848,48.901,42.666 +298849,47.135,48.85 +298850,47.375,46.888 +298851,47.574,44.838 +298852,47.721,42.689 +298853,45.782,48.786 +298854,46.075,46.851 +298855,46.331,44.831 +298856,46.542,42.715 +298857,44.429,48.72 +298858,44.774,46.814 +298859,45.088,44.824 +298860,45.361,42.742 +298861,43.077,48.653 +298862,43.474,46.776 +298863,43.844,44.818 +298864,44.181,42.77 +298865,41.725,48.584 +298866,42.174,46.737 +298867,42.601,44.812 +298868,43,42.801 +298869,40.374,48.514 +298870,40.875,46.698 +298871,41.358,44.807 +298872,41.818,42.833 +298873,39.023,48.442 +298874,39.575,46.658 +298875,40.114,44.802 +298876,40.636,42.866 +298877,37.672,48.369 +298878,38.276,46.619 +298879,38.871,44.798 +298880,39.452,42.901 +298881,36.322,48.294 +298882,36.977,46.578 +298883,37.627,44.795 +298884,38.269,42.938 +298885,34.972,48.218 +298886,35.678,46.537 +298887,36.383,44.792 +298888,37.084,42.976 +298889,33.622,48.141 +298890,34.38,46.496 +298891,35.139,44.79 +298892,35.898,43.015 +298893,32.274,48.062 +298894,33.082,46.455 +298895,33.895,44.788 +298896,34.712,43.056 +298897,30.926,47.982 +298898,31.784,46.413 +298899,32.65,44.786 +298900,33.524,43.099 +298901,29.578,47.9 +298902,30.487,46.37 +298903,31.406,44.785 +298904,32.336,43.142 +298905,28.231,47.818 +298906,29.19,46.327 +298907,30.161,44.785 +298908,31.146,43.187 +298909,26.885,47.734 +298910,27.893,46.284 +298911,28.916,44.785 +298912,29.955,43.234 +298913,25.539,47.649 +298914,26.596,46.241 +298915,27.67,44.786 +298916,28.763,43.281 +298917,24.195,47.562 +298918,25.3,46.197 +298919,26.425,44.787 +298920,27.57,43.33 +298921,22.851,47.475 +298922,24.005,46.152 +298923,25.179,44.788 +298924,26.376,43.38 +298925,21.508,47.386 +298926,22.709,46.108 +298927,23.933,44.79 +298928,25.18,43.431 +298929,20.166,47.296 +298930,21.414,46.063 +298931,22.686,44.792 +298932,23.983,43.483 +298933,18.824,47.205 +298934,20.12,46.018 +298935,21.439,44.795 +298936,22.785,43.536 +298937,17.484,47.113 +298938,18.826,45.972 +298939,20.192,44.798 +298940,21.585,43.59 +298941,16.145,47.02 +298942,17.533,45.926 +298943,18.945,44.801 +298944,20.384,43.645 +298945,14.806,46.926 +298946,16.239,45.88 +298947,17.697,44.805 +298948,19.181,43.701 +298949,13.469,46.831 +298950,14.947,45.834 +298951,16.449,44.809 +298952,17.977,43.757 +298953,12.133,46.735 +298954,13.655,45.787 +298955,15.2,44.814 +298956,16.771,43.815 +298957,10.798,46.638 +298958,12.363,45.74 +298959,13.951,44.819 +298960,15.564,43.873 +298961,9.4636,46.54 +298962,11.072,45.693 +298963,12.702,44.824 +298964,14.355,43.932 +298965,8.1309,46.442 +298966,9.7815,45.646 +298967,11.452,44.829 +298968,13.144,43.992 +298969,6.7993,46.342 +298970,8.4914,45.598 +298971,10.202,44.835 +298972,11.931,44.053 +298973,5.4691,46.242 +298974,7.2019,45.551 +298975,8.951,44.841 +298976,10.717,44.114 +298977,4.1401,46.141 +298978,5.913,45.503 +298979,7.6998,44.847 +298980,9.5017,44.175 +298981,2.8124,46.04 +298982,4.6247,45.455 +298983,6.4482,44.854 +298984,8.2842,44.237 +298985,1.4861,45.938 +298986,3.3369,45.406 +298987,5.1961,44.86 +298988,7.0649,44.3 +298989,0.16121,45.835 +298990,2.0497,45.358 +298991,3.9436,44.867 +298992,5.8439,44.363 +298993,358.84,45.731 +298994,0.76309,45.31 +298995,2.6906,44.874 +298996,4.621,44.426 +298997,357.52,45.627 +298998,359.48,45.261 +298999,1.437,44.882 +299000,3.3964,44.49 +299001,356.2,45.523 +299002,358.19,45.213 +299003,0.18301,44.889 +299004,2.1699,44.554 +299005,354.88,45.418 +299006,356.91,45.164 +299007,358.93,44.897 +299008,0.94155,44.618 +299009,353.56,45.313 +299010,355.62,45.115 +299011,357.67,44.905 +299012,359.71,44.683 +299013,352.24,45.207 +299014,354.34,45.066 +299015,356.42,44.913 +299016,358.48,44.747 +299017,350.93,45.101 +299018,353.06,45.017 +299019,355.16,44.921 +299020,357.25,44.812 +299021,349.62,44.995 +299022,351.77,44.968 +299023,353.91,44.929 +299024,356.01,44.877 +299025,348.31,44.888 +299026,350.49,44.92 +299027,352.65,44.937 +299028,354.77,44.942 +299029,347,44.782 +299030,349.21,44.871 +299031,351.39,44.945 +299032,353.53,45.007 +299033,345.69,44.675 +299034,347.93,44.822 +299035,350.13,44.954 +299036,352.29,45.072 +299037,344.38,44.568 +299038,346.65,44.773 +299039,348.87,44.962 +299040,351.05,45.136 +299041,343.08,44.461 +299042,345.37,44.724 +299043,347.61,44.971 +299044,349.8,45.201 +299045,341.78,44.354 +299046,344.1,44.676 +299047,346.35,44.979 +299048,348.55,45.265 +299049,340.48,44.246 +299050,342.82,44.627 +299051,345.09,44.988 +299052,347.31,45.33 +299053,339.18,44.139 +299054,341.54,44.579 +299055,343.83,44.996 +299056,346.05,45.394 +299057,337.88,44.033 +299058,340.27,44.53 +299059,342.57,45.004 +299060,344.8,45.457 +299061,336.59,43.926 +299062,338.99,44.482 +299063,341.31,45.013 +299064,343.55,45.521 +299065,335.29,43.819 +299066,337.72,44.434 +299067,340.05,45.021 +299068,342.29,45.583 +299069,334,43.713 +299070,336.44,44.386 +299071,338.78,45.029 +299072,341.03,45.646 +299073,332.72,43.607 +299074,335.17,44.338 +299075,337.52,45.038 +299076,339.77,45.708 +299077,331.43,43.501 +299078,333.9,44.291 +299079,336.25,45.046 +299080,338.51,45.77 +299081,330.14,43.396 +299082,332.63,44.243 +299083,334.99,45.054 +299084,337.24,45.831 +299085,328.86,43.291 +299086,331.36,44.196 +299087,333.72,45.061 +299088,335.98,45.891 +299089,327.58,43.187 +299090,330.09,44.149 +299091,332.46,45.069 +299092,334.71,45.951 +299093,326.3,43.083 +299094,328.82,44.103 +299095,331.19,45.077 +299096,333.44,46.01 +299097,325.03,42.98 +299098,327.55,44.056 +299099,329.92,45.084 +299100,332.17,46.069 +299101,323.75,42.878 +299102,326.28,44.01 +299103,328.65,45.091 +299104,330.89,46.126 +299105,322.48,42.776 +299106,325.01,43.964 +299107,327.39,45.098 +299108,329.62,46.183 +299109,321.21,42.675 +299110,323.75,43.919 +299111,326.12,45.105 +299112,328.34,46.239 +299113,319.94,42.574 +299114,322.48,43.874 +299115,324.85,45.112 +299116,327.06,46.295 +299117,318.68,42.475 +299118,321.22,43.829 +299119,323.58,45.118 +299120,325.78,46.349 +299121,317.42,42.376 +299122,319.95,43.785 +299123,322.31,45.124 +299124,324.5,46.403 +299125,316.16,42.279 +299126,318.69,43.74 +299127,321.03,45.13 +299128,323.22,46.456 +299129,314.9,42.182 +299130,317.43,43.697 +299131,319.76,45.136 +299132,321.93,46.507 +299133,313.64,42.086 +299134,316.17,43.654 +299135,318.49,45.141 +299136,320.64,46.558 +299137,312.39,41.991 +299138,314.91,43.611 +299139,317.22,45.146 +299140,319.35,46.608 +299141,311.13,41.898 +299142,313.65,43.568 +299143,315.94,45.151 +299144,318.06,46.656 +299145,309.88,41.805 +299146,312.39,43.526 +299147,314.67,45.155 +299148,316.77,46.704 +299149,308.64,41.714 +299150,311.13,43.485 +299151,313.39,45.159 +299152,315.48,46.75 +299153,307.39,41.624 +299154,309.87,43.444 +299155,312.12,45.163 +299156,314.18,46.795 +299157,306.15,41.536 +299158,308.61,43.403 +299159,310.84,45.166 +299160,312.88,46.839 +299161,304.91,41.448 +299162,307.36,43.363 +299163,309.57,45.169 +299164,311.58,46.882 +299165,303.67,41.362 +299166,306.1,43.323 +299167,308.29,45.172 +299168,310.28,46.924 +299169,302.43,41.278 +299170,304.85,43.284 +299171,307.01,45.174 +299172,308.98,46.964 +299173,301.2,41.195 +299174,303.59,43.246 +299175,305.73,45.176 +299176,307.68,47.003 +299177,299.97,41.113 +299178,302.34,43.208 +299179,304.46,45.177 +299180,306.37,47.041 +299181,298.74,41.033 +299182,301.09,43.17 +299183,303.18,45.178 +299184,305.07,47.077 +299185,297.51,40.955 +299186,299.84,43.133 +299187,301.9,45.179 +299188,303.76,47.112 +299189,296.29,40.878 +299190,298.58,43.097 +299191,300.62,45.179 +299192,302.45,47.146 +299193,295.06,40.803 +299194,297.33,43.061 +299195,299.34,45.179 +299196,301.14,47.178 +299197,293.84,40.73 +299198,296.08,43.026 +299199,298.06,45.178 +299200,299.83,47.209 +299201,292.62,40.658 +299202,294.83,42.992 +299203,296.78,45.177 +299204,298.52,47.238 +299205,291.41,40.589 +299206,293.59,42.958 +299207,295.5,45.175 +299208,297.2,47.266 +299209,290.19,40.521 +299210,292.34,42.925 +299211,294.21,45.173 +299212,295.89,47.292 +299213,288.98,40.454 +299214,291.09,42.892 +299215,292.93,45.171 +299216,294.57,47.317 +299217,287.77,40.39 +299218,289.84,42.86 +299219,291.65,45.168 +299220,293.25,47.341 +299221,286.56,40.328 +299222,288.6,42.829 +299223,290.37,45.164 +299224,291.93,47.362 +299225,285.35,40.267 +299226,287.35,42.798 +299227,289.08,45.16 +299228,290.61,47.382 +299229,284.15,40.209 +299230,286.11,42.768 +299231,287.8,45.156 +299232,289.29,47.401 +299233,282.94,40.153 +299234,284.86,42.739 +299235,286.52,45.151 +299236,287.97,47.418 +299237,281.74,40.098 +299238,283.62,42.71 +299239,285.23,45.145 +299240,286.65,47.433 +299241,280.54,40.046 +299242,282.38,42.683 +299243,283.95,45.139 +299244,285.32,47.447 +299245,279.35,39.996 +299246,281.13,42.655 +299247,282.66,45.132 +299248,284,47.459 +299249,278.15,39.948 +299250,279.89,42.629 +299251,281.38,45.125 +299252,282.67,47.469 +299253,276.96,39.902 +299254,278.65,42.603 +299255,280.09,45.117 +299256,281.35,47.478 +299257,275.76,39.858 +299258,277.41,42.578 +299259,278.8,45.109 +299260,280.02,47.485 +299261,274.57,39.817 +299262,276.17,42.554 +299263,277.52,45.1 +299264,278.69,47.49 +299265,273.38,39.778 +299266,274.93,42.53 +299267,276.23,45.091 +299268,277.36,47.494 +299269,272.19,39.74 +299270,273.69,42.508 +299271,274.94,45.081 +299272,276.03,47.495 +299273,271.01,39.706 +299274,272.45,42.486 +299275,273.66,45.07 +299276,274.7,47.496 +299277,269.82,39.673 +299278,271.21,42.464 +299279,272.37,45.059 +299280,273.37,47.494 +299281,268.64,39.643 +299282,269.97,42.444 +299283,271.08,45.048 +299284,272.04,47.491 +299285,267.46,39.615 +299286,268.73,42.424 +299287,269.8,45.035 +299288,270.7,47.485 +299289,266.27,39.589 +299290,267.49,42.405 +299291,268.51,45.023 +299292,269.37,47.478 +299293,265.09,39.565 +299294,266.26,42.387 +299295,267.22,45.009 +299296,268.04,47.47 +299297,263.91,39.544 +299298,265.02,42.369 +299299,265.93,44.995 +299300,266.7,47.459 +299301,262.74,39.525 +299302,263.78,42.352 +299303,264.64,44.981 +299304,265.37,47.447 +299305,261.56,39.509 +299306,262.55,42.337 +299307,263.36,44.966 +299308,264.03,47.433 +299309,260.38,39.495 +299310,261.31,42.321 +299311,262.07,44.95 +299312,262.69,47.417 +299313,259.21,39.483 +299314,260.08,42.307 +299315,260.78,44.934 +299316,261.36,47.4 +299317,258.03,39.473 +299318,258.84,42.293 +299319,259.49,44.917 +299320,260.02,47.38 +299321,256.86,39.466 +299322,257.61,42.28 +299323,258.2,44.9 +299324,258.68,47.359 +299325,255.68,39.461 +299326,256.37,42.268 +299327,256.91,44.882 +299328,257.35,47.336 +299329,254.51,39.458 +299330,255.14,42.257 +299331,255.62,44.863 +299332,256.01,47.311 +299333,253.34,39.458 +299334,253.9,42.246 +299335,254.33,44.844 +299336,254.67,47.285 +299337,252.16,39.46 +299338,252.67,42.237 +299339,253.04,44.824 +299340,253.33,47.256 +299341,250.99,39.464 +299342,251.43,42.227 +299343,251.76,44.804 +299344,252,47.226 +299345,249.82,39.47 +299346,250.2,42.219 +299347,250.47,44.783 +299348,250.66,47.195 +299349,248.65,39.479 +299350,248.96,42.212 +299351,249.18,44.762 +299352,249.32,47.161 +299353,247.48,39.49 +299354,247.73,42.205 +299355,247.89,44.74 +299356,247.98,47.126 +299357,246.31,39.503 +299358,246.5,42.199 +299359,246.6,44.717 +299360,246.64,47.088 +299361,245.14,39.518 +299362,245.26,42.194 +299363,245.31,44.694 +299364,245.31,47.05 +299365,243.96,39.536 +299366,244.03,42.189 +299367,244.02,44.67 +299368,243.97,47.009 +299369,242.79,39.556 +299370,242.79,42.185 +299371,242.73,44.646 +299372,242.63,46.967 +299373,241.62,39.578 +299374,241.56,42.182 +299375,241.45,44.621 +299376,241.29,46.923 +299377,240.45,39.602 +299378,240.33,42.18 +299379,240.16,44.596 +299380,239.95,46.877 +299381,239.28,39.628 +299382,239.09,42.178 +299383,238.87,44.57 +299384,238.62,46.829 +299385,238.11,39.656 +299386,237.86,42.177 +299387,237.58,44.544 +299388,237.28,46.78 +299389,236.93,39.686 +299390,236.63,42.177 +299391,236.29,44.517 +299392,235.94,46.729 +299393,235.76,39.718 +299394,235.39,42.178 +299395,235.01,44.49 +299396,234.61,46.677 +299397,234.58,39.752 +299398,234.16,42.179 +299399,233.72,44.462 +299400,233.27,46.623 +299401,233.41,39.789 +299402,232.92,42.181 +299403,232.43,44.433 +299404,231.93,46.567 +299405,232.23,39.827 +299406,231.69,42.183 +299407,231.14,44.404 +299408,230.6,46.509 +299409,231.06,39.867 +299410,230.45,42.186 +299411,229.86,44.375 +299412,229.26,46.45 +299413,229.88,39.909 +299414,229.22,42.19 +299415,228.57,44.345 +299416,227.93,46.39 +299417,228.7,39.952 +299418,227.99,42.195 +299419,227.28,44.314 +299420,226.59,46.328 +299421,227.52,39.998 +299422,226.75,42.2 +299423,226,44.283 +299424,225.26,46.264 +299425,226.34,40.045 +299426,225.52,42.206 +299427,224.71,44.252 +299428,223.93,46.199 +299429,225.16,40.094 +299430,224.28,42.212 +299431,223.43,44.22 +299432,222.6,46.132 +299433,223.98,40.145 +299434,223.04,42.219 +299435,222.14,44.188 +299436,221.27,46.064 +299437,222.8,40.197 +299438,221.81,42.227 +299439,220.86,44.155 +299440,219.93,45.994 +299441,221.61,40.251 +299442,220.57,42.235 +299443,219.57,44.122 +299444,218.6,45.923 +299445,220.43,40.306 +299446,219.34,42.244 +299447,218.29,44.089 +299448,217.28,45.851 +299449,219.24,40.363 +299450,218.1,42.253 +299451,217,44.055 +299452,215.95,45.777 +299453,218.05,40.421 +299454,216.86,42.263 +299455,215.72,44.02 +299456,214.62,45.702 +299457,216.86,40.481 +299458,215.62,42.274 +299459,214.44,43.986 +299460,213.29,45.625 +299461,215.67,40.542 +299462,214.39,42.285 +299463,213.15,43.95 +299464,211.97,45.547 +299465,214.48,40.605 +299466,213.15,42.296 +299467,211.87,43.915 +299468,210.64,45.468 +299469,213.29,40.669 +299470,211.91,42.308 +299471,210.59,43.879 +299472,209.32,45.388 +299473,212.09,40.734 +299474,210.67,42.321 +299475,209.31,43.843 +299476,208,45.306 +299477,210.89,40.8 +299478,209.43,42.334 +299479,208.03,43.806 +299480,206.67,45.223 +299481,209.69,40.868 +299482,208.19,42.347 +299483,206.75,43.769 +299484,205.35,45.139 +299485,208.49,40.936 +299486,206.95,42.361 +299487,205.47,43.732 +299488,204.03,45.054 +299489,207.29,41.006 +299490,205.71,42.375 +299491,204.19,43.695 +299492,202.72,44.968 +299493,206.09,41.077 +299494,204.47,42.39 +299495,202.91,43.657 +299496,201.4,44.88 +299497,204.88,41.148 +299498,203.23,42.405 +299499,201.63,43.619 +299500,200.08,44.792 +299501,203.68,41.221 +299502,201.99,42.421 +299503,200.35,43.581 +299504,198.77,44.702 +299505,202.47,41.295 +299506,200.74,42.437 +299507,199.07,43.542 +299508,197.45,44.612 +299509,201.26,41.369 +299510,199.5,42.453 +299511,197.8,43.503 +299512,196.14,44.52 +299513,200.04,41.444 +299514,198.26,42.47 +299515,196.52,43.464 +299516,194.83,44.428 +299517,198.83,41.52 +299518,197.01,42.487 +299519,195.25,43.425 +299520,193.52,44.335 +299521,197.61,41.596 +299522,195.77,42.504 +299523,193.97,43.386 +299524,192.21,44.241 +299525,196.39,41.674 +299526,194.52,42.522 +299527,192.7,43.346 +299528,190.91,44.146 +299529,195.17,41.751 +299530,193.28,42.54 +299531,191.42,43.307 +299532,189.6,44.051 +299533,193.95,41.83 +299534,192.03,42.558 +299535,190.15,43.267 +299536,188.3,43.954 +299537,192.73,41.908 +299538,190.79,42.577 +299539,188.88,43.227 +299540,187,43.858 +299541,191.5,41.988 +299542,189.54,42.596 +299543,187.6,43.186 +299544,185.7,43.76 +299545,190.28,42.067 +299546,188.29,42.615 +299547,186.33,43.146 +299548,184.4,43.662 +299549,189.05,42.147 +299550,187.04,42.634 +299551,185.06,43.106 +299552,183.1,43.563 +299553,187.82,42.228 +299554,185.79,42.653 +299555,183.79,43.065 +299556,181.8,43.464 +299557,186.58,42.308 +299558,184.54,42.673 +299559,182.52,43.025 +299560,180.51,43.364 +299561,185.35,42.389 +299562,183.29,42.693 +299563,181.25,42.984 +299564,179.22,43.264 +299565,184.11,42.47 +299566,182.04,42.713 +299567,179.98,42.944 +299568,177.93,43.163 +299569,182.87,42.551 +299570,180.79,42.733 +299571,178.71,42.903 +299572,176.64,43.062 +299573,181.63,42.632 +299574,179.54,42.753 +299575,177.45,42.863 +299576,175.35,42.961 +299577,180.39,42.713 +299578,178.29,42.773 +299579,176.18,42.822 +299580,174.06,42.859 +299581,179.14,42.795 +299582,177.03,42.794 +299583,174.92,42.782 +299584,172.78,42.758 +299585,177.89,42.876 +299586,175.78,42.814 +299587,173.65,42.741 +299588,171.5,42.656 +299589,176.64,42.957 +299590,174.53,42.835 +299591,172.39,42.701 +299592,170.22,42.554 +299593,175.39,43.037 +299594,173.27,42.855 +299595,171.12,42.66 +299596,168.94,42.452 +299597,174.14,43.118 +299598,172.02,42.876 +299599,169.86,42.62 +299600,167.67,42.35 +299601,172.89,43.198 +299602,170.76,42.897 +299603,168.6,42.58 +299604,166.39,42.248 +299605,171.63,43.279 +299606,169.5,42.917 +299607,167.33,42.54 +299608,165.12,42.146 +299609,170.37,43.358 +299610,168.25,42.938 +299611,166.07,42.5 +299612,163.85,42.044 +299613,169.11,43.438 +299614,166.99,42.959 +299615,164.81,42.46 +299616,162.58,41.942 +299617,167.85,43.517 +299618,165.73,42.979 +299619,163.55,42.421 +299620,161.31,41.84 +299621,166.58,43.595 +299622,164.47,43 +299623,162.3,42.381 +299624,160.05,41.739 +299625,165.32,43.673 +299626,163.21,43.02 +299627,161.04,42.342 +299628,158.79,41.638 +299629,164.05,43.751 +299630,161.95,43.04 +299631,159.78,42.303 +299632,157.53,41.537 +299633,162.78,43.827 +299634,160.69,43.061 +299635,158.52,42.265 +299636,156.27,41.437 +299637,161.51,43.904 +299638,159.43,43.081 +299639,157.27,42.226 +299640,155.01,41.337 +299641,160.24,43.979 +299642,158.17,43.101 +299643,156.01,42.188 +299644,153.76,41.238 +299645,158.96,44.054 +299646,156.9,43.121 +299647,154.76,42.15 +299648,152.51,41.139 +299649,157.68,44.128 +299650,155.64,43.14 +299651,153.5,42.113 +299652,151.26,41.041 +299653,156.41,44.202 +299654,154.38,43.16 +299655,152.25,42.075 +299656,150.01,40.944 +299657,155.13,44.274 +299658,153.11,43.179 +299659,151,42.038 +299660,148.76,40.847 +299661,153.84,44.346 +299662,151.85,43.198 +299663,149.75,42.002 +299664,147.52,40.751 +299665,152.56,44.416 +299666,150.58,43.217 +299667,148.49,41.966 +299668,146.28,40.656 +299669,151.27,44.486 +299670,149.32,43.236 +299671,147.24,41.93 +299672,145.04,40.562 +299673,149.99,44.555 +299674,148.05,43.254 +299675,145.99,41.894 +299676,143.8,40.469 +299677,148.7,44.623 +299678,146.78,43.272 +299679,144.74,41.859 +299680,142.56,40.376 +299681,147.41,44.69 +299682,145.51,43.29 +299683,143.5,41.825 +299684,141.33,40.285 +299685,146.12,44.756 +299686,144.25,43.308 +299687,142.25,41.79 +299688,140.1,40.194 +299689,144.82,44.821 +299690,142.98,43.325 +299691,141,41.757 +299692,138.87,40.105 +299693,143.53,44.884 +299694,141.71,43.342 +299695,139.75,41.723 +299696,137.64,40.017 +299697,142.23,44.947 +299698,140.44,43.359 +299699,138.51,41.691 +299700,136.42,39.93 +299701,140.94,45.008 +299702,139.17,43.375 +299703,137.26,41.658 +299704,135.2,39.845 +299705,139.64,45.068 +299706,137.9,43.391 +299707,136.02,41.627 +299708,133.97,39.76 +299709,138.34,45.127 +299710,136.62,43.407 +299711,134.78,41.595 +299712,132.76,39.678 +299713,137.04,45.184 +299714,135.35,43.422 +299715,133.53,41.565 +299716,131.54,39.596 +299717,135.73,45.24 +299718,134.08,43.437 +299719,132.29,41.535 +299720,130.32,39.516 +299721,134.43,45.295 +299722,132.81,43.452 +299723,131.05,41.505 +299724,129.11,39.437 +299725,133.12,45.349 +299726,131.53,43.466 +299727,129.81,41.476 +299728,127.9,39.36 +299729,131.82,45.401 +299730,130.26,43.48 +299731,128.57,41.448 +299732,126.69,39.285 +299733,130.51,45.452 +299734,128.99,43.493 +299735,127.33,41.42 +299736,125.48,39.211 +299737,129.2,45.501 +299738,127.71,43.506 +299739,126.09,41.393 +299740,124.28,39.139 +299741,127.89,45.549 +299742,126.44,43.518 +299743,124.85,41.366 +299744,123.08,39.069 +299745,126.58,45.595 +299746,125.16,43.53 +299747,123.61,41.34 +299748,121.87,39 +299749,125.27,45.64 +299750,123.89,43.542 +299751,122.37,41.315 +299752,120.67,38.933 +299753,123.95,45.684 +299754,122.61,43.553 +299755,121.13,41.29 +299756,119.48,38.868 +299757,122.64,45.725 +299758,121.33,43.564 +299759,119.9,41.266 +299760,118.28,38.805 +299761,121.32,45.766 +299762,120.06,43.574 +299763,118.66,41.243 +299764,117.09,38.744 +299765,120,45.804 +299766,118.78,43.584 +299767,117.42,41.22 +299768,115.89,38.685 +299769,118.69,45.841 +299770,117.5,43.593 +299771,116.19,41.198 +299772,114.7,38.627 +299773,117.37,45.877 +299774,116.22,43.601 +299775,114.95,41.177 +299776,113.51,38.572 +299777,116.05,45.911 +299778,114.94,43.61 +299779,113.72,41.157 +299780,112.32,38.519 +299781,114.73,45.943 +299782,113.67,43.617 +299783,112.48,41.137 +299784,111.14,38.468 +299785,113.41,45.973 +299786,112.39,43.624 +299787,111.25,41.118 +299788,109.95,38.419 +299789,112.09,46.002 +299790,111.11,43.631 +299791,110.02,41.1 +299792,108.77,38.372 +299793,110.76,46.029 +299794,109.83,43.637 +299795,108.78,41.082 +299796,107.58,38.328 +299797,109.44,46.054 +299798,108.55,43.642 +299799,107.55,41.065 +299800,106.4,38.285 +299801,108.12,46.078 +299802,107.27,43.647 +299803,106.32,41.049 +299804,105.22,38.245 +299805,106.79,46.1 +299806,105.99,43.652 +299807,105.08,41.034 +299808,104.04,38.207 +299809,105.47,46.12 +299810,104.71,43.656 +299811,103.85,41.02 +299812,102.87,38.172 +299813,104.14,46.139 +299814,103.43,43.659 +299815,102.62,41.006 +299816,101.69,38.139 +299817,102.82,46.155 +299818,102.15,43.662 +299819,101.39,40.993 +299820,100.51,38.108 +299821,101.49,46.17 +299822,100.87,43.664 +299823,100.16,40.981 +299824,99.337,38.079 +299825,100.16,46.183 +299826,99.585,43.665 +299827,98.929,40.97 +299828,98.163,38.053 +299829,98.836,46.194 +299830,98.304,43.666 +299831,97.698,40.959 +299832,96.99,38.029 +299833,97.508,46.204 +299834,97.023,43.667 +299835,96.468,40.95 +299836,95.817,38.008 +299837,96.18,46.212 +299838,95.741,43.667 +299839,95.238,40.941 +299840,94.645,37.989 +299841,94.852,46.217 +299842,94.46,43.666 +299843,94.008,40.933 +299844,93.474,37.972 +299845,93.523,46.221 +299846,93.178,43.665 +299847,92.779,40.925 +299848,92.303,37.958 +299849,92.194,46.224 +299850,91.896,43.663 +299851,91.549,40.919 +299852,91.133,37.947 +299853,90.865,46.224 +299854,90.614,43.66 +299855,90.32,40.913 +299856,89.963,37.937 +299857,89.535,46.223 +299858,89.332,43.657 +299859,89.09,40.908 +299860,88.794,37.931 +299861,88.206,46.219 +299862,88.05,43.654 +299863,87.861,40.904 +299864,87.624,37.926 +299865,86.876,46.214 +299866,86.768,43.65 +299867,86.632,40.901 +299868,86.455,37.924 +299869,85.547,46.207 +299870,85.486,43.645 +299871,85.403,40.899 +299872,85.286,37.925 +299873,84.217,46.199 +299874,84.204,43.639 +299875,84.174,40.897 +299876,84.118,37.928 +299877,82.888,46.188 +299878,82.923,43.633 +299879,82.945,40.897 +299880,82.949,37.934 +299881,81.558,46.176 +299882,81.641,43.627 +299883,81.716,40.897 +299884,81.78,37.942 +299885,80.229,46.161 +299886,80.359,43.62 +299887,80.487,40.898 +299888,80.611,37.952 +299889,78.899,46.145 +299890,79.077,43.612 +299891,79.258,40.899 +299892,79.442,37.965 +299893,77.57,46.128 +299894,77.795,43.604 +299895,78.028,40.902 +299896,78.272,37.98 +299897,76.241,46.108 +299898,76.514,43.595 +299899,76.799,40.905 +299900,77.102,37.997 +299901,74.912,46.087 +299902,75.232,43.585 +299903,75.57,40.909 +299904,75.932,38.017 +299905,73.584,46.063 +299906,73.951,43.575 +299907,74.34,40.914 +299908,74.761,38.04 +299909,72.256,46.038 +299910,72.669,43.565 +299911,73.111,40.92 +299912,73.59,38.065 +299913,70.928,46.012 +299914,71.388,43.553 +299915,71.881,40.926 +299916,72.418,38.092 +299917,69.6,45.983 +299918,70.107,43.542 +299919,70.651,40.934 +299920,71.246,38.121 +299921,68.273,45.953 +299922,68.826,43.529 +299923,69.421,40.942 +299924,70.073,38.153 +299925,66.947,45.921 +299926,67.546,43.517 +299927,68.191,40.951 +299928,68.899,38.186 +299929,65.621,45.887 +299930,66.265,43.503 +299931,66.96,40.96 +299932,67.724,38.223 +299933,64.295,45.851 +299934,64.985,43.489 +299935,65.73,40.971 +299936,66.548,38.261 +299937,62.97,45.814 +299938,63.705,43.475 +299939,64.499,40.982 +299940,65.371,38.302 +299941,61.645,45.775 +299942,62.425,43.46 +299943,63.268,40.994 +299944,64.194,38.344 +299945,60.322,45.734 +299946,61.146,43.444 +299947,62.036,41.006 +299948,63.015,38.389 +299949,58.998,45.692 +299950,59.866,43.428 +299951,60.804,41.019 +299952,61.835,38.436 +299953,57.676,45.648 +299954,58.587,43.412 +299955,59.572,41.034 +299956,60.654,38.485 +299957,56.354,45.603 +299958,57.309,43.395 +299959,58.34,41.048 +299960,59.471,38.536 +299961,55.033,45.556 +299962,56.03,43.377 +299963,57.107,41.064 +299964,58.288,38.589 +299965,53.713,45.507 +299966,54.752,43.359 +299967,55.874,41.08 +299968,57.103,38.644 +299969,52.393,45.456 +299970,53.474,43.34 +299971,54.64,41.097 +299972,55.916,38.701 +299973,51.075,45.405 +299974,52.197,43.321 +299975,53.406,41.114 +299976,54.729,38.76 +299977,49.757,45.351 +299978,50.92,43.302 +299979,52.172,41.132 +299980,53.539,38.82 +299981,48.441,45.296 +299982,49.643,43.282 +299983,50.937,41.151 +299984,52.349,38.883 +299985,47.125,45.24 +299986,48.367,43.262 +299987,49.702,41.171 +299988,51.156,38.947 +299989,45.81,45.182 +299990,47.091,43.241 +299991,48.466,41.191 +299992,49.962,39.013 +299993,44.496,45.122 +299994,45.815,43.22 +299995,47.23,41.212 +299996,48.767,39.081 +299997,43.184,45.062 +299998,44.54,43.198 +299999,45.994,41.233 +300000,47.569,39.15 +300001,41.872,44.999 +300002,43.266,43.176 +300003,44.757,41.255 +300004,46.371,39.221 +300005,40.562,44.936 +300006,41.991,43.154 +300007,43.519,41.277 +300008,45.17,39.293 +300009,39.252,44.871 +300010,40.717,43.131 +300011,42.281,41.3 +300012,43.967,39.367 +300013,37.944,44.805 +300014,39.444,43.107 +300015,41.043,41.324 +300016,42.763,39.442 +300017,36.637,44.737 +300018,38.171,43.084 +300019,39.804,41.348 +300020,41.557,39.519 +300021,35.332,44.668 +300022,36.899,43.06 +300023,38.564,41.373 +300024,40.349,39.597 +300025,34.027,44.598 +300026,35.627,43.036 +300027,37.324,41.398 +300028,39.14,39.676 +300029,32.724,44.527 +300030,34.355,43.011 +300031,36.083,41.424 +300032,37.928,39.757 +300033,31.423,44.455 +300034,33.084,42.986 +300035,34.842,41.45 +300036,36.715,39.839 +300037,30.122,44.381 +300038,31.814,42.961 +300039,33.6,41.477 +300040,35.499,39.922 +300041,28.823,44.306 +300042,30.544,42.935 +300043,32.358,41.504 +300044,34.282,40.006 +300045,27.526,44.231 +300046,29.274,42.91 +300047,31.115,41.532 +300048,33.062,40.091 +300049,26.23,44.154 +300050,28.006,42.883 +300051,29.871,41.56 +300052,31.841,40.177 +300053,24.935,44.076 +300054,26.737,42.857 +300055,28.627,41.588 +300056,30.618,40.264 +300057,23.642,43.997 +300058,25.47,42.83 +300059,27.382,41.617 +300060,29.392,40.352 +300061,22.35,43.917 +300062,24.202,42.804 +300063,26.137,41.646 +300064,28.165,40.441 +300065,21.06,43.837 +300066,22.936,42.777 +300067,24.89,41.676 +300068,26.936,40.531 +300069,19.772,43.755 +300070,21.67,42.749 +300071,23.644,41.706 +300072,25.705,40.621 +300073,18.485,43.673 +300074,20.404,42.722 +300075,22.396,41.736 +300076,24.471,40.712 +300077,17.2,43.59 +300078,19.139,42.694 +300079,21.148,41.767 +300080,23.236,40.804 +300081,15.916,43.506 +300082,17.875,42.667 +300083,19.9,41.797 +300084,21.998,40.897 +300085,14.635,43.421 +300086,16.611,42.639 +300087,18.65,41.829 +300088,20.759,40.99 +300089,13.354,43.336 +300090,15.348,42.611 +300091,17.4,41.86 +300092,19.518,41.083 +300093,12.076,43.25 +300094,14.085,42.583 +300095,16.15,41.892 +300096,18.274,41.177 +300097,10.799,43.163 +300098,12.824,42.554 +300099,14.899,41.924 +300100,17.029,41.272 +300101,9.5244,43.076 +300102,11.562,42.526 +300103,13.647,41.956 +300104,15.781,41.366 +300105,8.2512,42.989 +300106,10.302,42.498 +300107,12.394,41.989 +300108,14.532,41.461 +300109,6.9799,42.901 +300110,9.0415,42.469 +300111,11.141,42.021 +300112,13.28,41.557 +300113,5.7104,42.812 +300114,7.7821,42.441 +300115,9.8869,42.054 +300116,12.027,41.652 +300117,4.4428,42.723 +300118,6.5233,42.412 +300119,8.6324,42.087 +300120,10.771,41.748 +300121,3.177,42.634 +300122,5.2652,42.383 +300123,7.3771,42.12 +300124,9.514,41.844 +300125,1.913,42.545 +300126,4.0076,42.355 +300127,6.1212,42.153 +300128,8.2547,41.939 +300129,0.65099,42.455 +300130,2.7507,42.326 +300131,4.8647,42.187 +300132,6.9934,42.035 +300133,359.39,42.365 +300134,1.4945,42.298 +300135,3.6074,42.22 +300136,5.7301,42.131 +300137,358.13,42.275 +300138,0.23887,42.27 +300139,2.3495,42.254 +300140,4.4649,42.227 +300141,356.88,42.184 +300142,358.98,42.241 +300143,1.091,42.287 +300144,3.1979,42.322 +300145,355.62,42.094 +300146,357.73,42.213 +300147,359.83,42.321 +300148,1.9289,42.418 +300149,354.37,42.003 +300150,356.48,42.185 +300151,358.57,42.355 +300152,0.65809,42.513 +300153,353.12,41.913 +300154,355.22,42.157 +300155,357.31,42.388 +300156,359.39,42.608 +300157,351.87,41.823 +300158,353.97,42.129 +300159,356.05,42.422 +300160,358.11,42.703 +300161,350.62,41.733 +300162,352.72,42.101 +300163,354.79,42.456 +300164,356.83,42.797 +300165,349.38,41.643 +300166,351.47,42.073 +300167,353.53,42.489 +300168,355.56,42.891 +300169,348.14,41.553 +300170,350.22,42.046 +300171,352.26,42.523 +300172,354.28,42.984 +300173,346.9,41.463 +300174,348.97,42.019 +300175,351,42.557 +300176,352.99,43.077 +300177,345.66,41.374 +300178,347.72,41.992 +300179,349.73,42.59 +300180,351.71,43.17 +300181,344.42,41.285 +300182,346.47,41.965 +300183,348.47,42.624 +300184,350.43,43.261 +300185,343.19,41.197 +300186,345.22,41.938 +300187,347.2,42.657 +300188,349.14,43.353 +300189,341.95,41.109 +300190,343.97,41.912 +300191,345.94,42.69 +300192,347.85,43.443 +300193,340.72,41.021 +300194,342.73,41.886 +300195,344.67,42.723 +300196,346.56,43.533 +300197,339.49,40.934 +300198,341.48,41.86 +300199,343.4,42.756 +300200,345.27,43.622 +300201,338.27,40.848 +300202,340.23,41.835 +300203,342.14,42.789 +300204,343.98,43.711 +300205,337.04,40.762 +300206,338.99,41.81 +300207,340.87,42.821 +300208,342.68,43.798 +300209,335.82,40.677 +300210,337.75,41.785 +300211,339.6,42.854 +300212,341.39,43.885 +300213,334.6,40.593 +300214,336.5,41.761 +300215,338.33,42.886 +300216,340.09,43.971 +300217,333.38,40.51 +300218,335.26,41.737 +300219,337.06,42.918 +300220,338.79,44.056 +300221,332.16,40.427 +300222,334.02,41.713 +300223,335.79,42.95 +300224,337.49,44.14 +300225,330.95,40.346 +300226,332.77,41.69 +300227,334.52,42.981 +300228,336.19,44.223 +300229,329.73,40.265 +300230,331.53,41.667 +300231,333.24,43.012 +300232,334.88,44.305 +300233,328.52,40.185 +300234,330.29,41.645 +300235,331.97,43.043 +300236,333.58,44.386 +300237,327.31,40.107 +300238,329.05,41.623 +300239,330.7,43.074 +300240,332.27,44.466 +300241,326.11,40.029 +300242,327.81,41.601 +300243,329.42,43.104 +300244,330.96,44.545 +300245,324.9,39.953 +300246,326.57,41.58 +300247,328.15,43.134 +300248,329.65,44.622 +300249,323.7,39.878 +300250,325.33,41.56 +300251,326.88,43.164 +300252,328.34,44.699 +300253,322.49,39.804 +300254,324.09,41.54 +300255,325.6,43.193 +300256,327.03,44.774 +300257,321.29,39.731 +300258,322.86,41.52 +300259,324.33,43.223 +300260,325.72,44.848 +300261,320.09,39.66 +300262,321.62,41.501 +300263,323.05,43.251 +300264,324.41,44.921 +300265,318.9,39.59 +300266,320.38,41.483 +300267,321.77,43.28 +300268,323.09,44.992 +300269,317.7,39.522 +300270,319.14,41.465 +300271,320.5,43.308 +300272,321.78,45.062 +300273,316.51,39.455 +300274,317.91,41.448 +300275,319.22,43.335 +300276,320.46,45.131 +300277,315.32,39.39 +300278,316.67,41.431 +300279,317.94,43.362 +300280,319.14,45.198 +300281,314.12,39.326 +300282,315.44,41.415 +300283,316.66,43.389 +300284,317.82,45.264 +300285,312.93,39.264 +300286,314.2,41.399 +300287,315.39,43.415 +300288,316.5,45.329 +300289,311.75,39.203 +300290,312.97,41.384 +300291,314.11,43.441 +300292,315.18,45.392 +300293,310.56,39.144 +300294,311.73,41.37 +300295,312.83,43.467 +300296,313.86,45.453 +300297,309.37,39.087 +300298,310.5,41.356 +300299,311.55,43.492 +300300,312.54,45.513 +300301,308.19,39.032 +300302,309.26,41.343 +300303,310.27,43.516 +300304,311.22,45.572 +300305,307.01,38.978 +300306,308.03,41.331 +300307,308.99,43.54 +300308,309.89,45.629 +300309,305.83,38.927 +300310,306.8,41.319 +300311,307.71,43.564 +300312,308.57,45.684 +300313,304.65,38.877 +300314,305.57,41.308 +300315,306.43,43.587 +300316,307.24,45.738 +300317,303.47,38.829 +300318,304.33,41.297 +300319,305.15,43.61 +300320,305.92,45.791 +300321,302.29,38.783 +300322,303.1,41.288 +300323,303.86,43.632 +300324,304.59,45.841 +300325,301.11,38.739 +300326,301.87,41.279 +300327,302.58,43.653 +300328,303.26,45.89 +300329,299.94,38.698 +300330,300.64,41.271 +300331,301.3,43.675 +300332,301.94,45.938 +300333,298.76,38.658 +300334,299.41,41.263 +300335,300.02,43.695 +300336,300.61,45.983 +300337,297.59,38.62 +300338,298.17,41.256 +300339,298.74,43.715 +300340,299.28,46.027 +300341,296.41,38.585 +300342,296.94,41.25 +300343,297.45,43.735 +300344,297.95,46.07 +300345,295.24,38.551 +300346,295.71,41.245 +300347,296.17,43.754 +300348,296.62,46.11 +300349,294.07,38.52 +300350,294.48,41.24 +300351,294.89,43.772 +300352,295.29,46.149 +300353,292.9,38.491 +300354,293.25,41.237 +300355,293.61,43.79 +300356,293.96,46.186 +300357,291.72,38.465 +300358,292.02,41.234 +300359,292.32,43.807 +300360,292.63,46.222 +300361,290.55,38.44 +300362,290.79,41.231 +300363,291.04,43.824 +300364,291.3,46.255 +300365,289.38,38.418 +300366,289.56,41.23 +300367,289.76,43.841 +300368,289.97,46.287 +300369,288.21,38.398 +300370,288.33,41.229 +300371,288.47,43.856 +300372,288.63,46.317 +300373,287.04,38.381 +300374,287.1,41.229 +300375,287.19,43.871 +300376,287.3,46.346 +300377,285.87,38.365 +300378,285.87,41.23 +300379,285.91,43.886 +300380,285.97,46.372 +300381,284.7,38.353 +300382,284.64,41.232 +300383,284.62,43.9 +300384,284.64,46.397 +300385,283.53,38.342 +300386,283.41,41.234 +300387,283.34,43.913 +300388,283.31,46.42 +300389,282.37,38.334 +300390,282.18,41.237 +300391,282.05,43.926 +300392,281.97,46.441 +300393,281.2,38.328 +300394,280.95,41.241 +300395,280.77,43.938 +300396,280.64,46.461 +300397,280.03,38.325 +300398,279.72,41.246 +300399,279.49,43.95 +300400,279.31,46.478 +300401,278.86,38.324 +300402,278.49,41.252 +300403,278.2,43.961 +300404,277.98,46.494 +300405,277.69,38.325 +300406,277.26,41.258 +300407,276.92,43.971 +300408,276.65,46.508 +300409,276.52,38.329 +300410,276.02,41.265 +300411,275.63,43.981 +300412,275.32,46.52 +300413,275.34,38.336 +300414,274.79,41.273 +300415,274.35,43.991 +300416,273.98,46.53 +300417,274.17,38.344 +300418,273.56,41.282 +300419,273.07,43.999 +300420,272.65,46.539 +300421,273,38.356 +300422,272.33,41.292 +300423,271.78,44.008 +300424,271.32,46.545 +300425,271.83,38.369 +300426,271.1,41.302 +300427,270.5,44.015 +300428,269.99,46.55 +300429,270.66,38.385 +300430,269.87,41.314 +300431,269.22,44.022 +300432,268.66,46.553 +300433,269.48,38.404 +300434,268.64,41.326 +300435,267.93,44.028 +300436,267.33,46.554 +300437,268.31,38.424 +300438,267.4,41.338 +300439,266.65,44.034 +300440,266,46.554 +300441,267.13,38.447 +300442,266.17,41.352 +300443,265.37,44.039 +300444,264.67,46.551 +300445,265.95,38.473 +300446,264.94,41.367 +300447,264.08,44.044 +300448,263.34,46.547 +300449,264.78,38.501 +300450,263.7,41.382 +300451,262.8,44.048 +300452,262.02,46.541 +300453,263.6,38.531 +300454,262.47,41.398 +300455,261.52,44.052 +300456,260.69,46.533 +300457,262.42,38.564 +300458,261.24,41.415 +300459,260.23,44.055 +300460,259.36,46.524 +300461,261.24,38.599 +300462,260,41.432 +300463,258.95,44.057 +300464,258.03,46.513 +300465,260.05,38.636 +300466,258.77,41.45 +300467,257.67,44.059 +300468,256.71,46.5 +300469,258.87,38.675 +300470,257.53,41.47 +300471,256.39,44.06 +300472,255.38,46.485 +300473,257.69,38.717 +300474,256.3,41.489 +300475,255.11,44.061 +300476,254.06,46.468 +300477,256.5,38.761 +300478,255.06,41.51 +300479,253.83,44.061 +300480,252.74,46.45 +300481,255.31,38.807 +300482,253.83,41.531 +300483,252.54,44.061 +300484,251.41,46.43 +300485,254.12,38.856 +300486,252.59,41.554 +300487,251.26,44.06 +300488,250.09,46.409 +300489,252.93,38.906 +300490,251.35,41.576 +300491,249.98,44.058 +300492,248.77,46.385 +300493,251.74,38.959 +300494,250.12,41.6 +300495,248.7,44.056 +300496,247.45,46.36 +300497,250.54,39.013 +300498,248.88,41.624 +300499,247.42,44.054 +300500,246.13,46.334 +300501,249.35,39.07 +300502,247.64,41.649 +300503,246.14,44.051 +300504,244.81,46.305 +300505,248.15,39.129 +300506,246.4,41.675 +300507,244.87,44.047 +300508,243.49,46.276 +300509,246.95,39.19 +300510,245.16,41.701 +300511,243.59,44.043 +300512,242.18,46.244 +300513,245.75,39.253 +300514,243.92,41.728 +300515,242.31,44.039 +300516,240.86,46.211 +300517,244.55,39.317 +300518,242.68,41.756 +300519,241.03,44.034 +300520,239.55,46.176 +300521,243.34,39.384 +300522,241.44,41.785 +300523,239.75,44.028 +300524,238.23,46.14 +300525,242.14,39.452 +300526,240.2,41.814 +300527,238.47,44.022 +300528,236.92,46.103 +300529,240.93,39.523 +300530,238.95,41.843 +300531,237.2,44.016 +300532,235.61,46.063 +300533,239.72,39.595 +300534,237.71,41.874 +300535,235.92,44.009 +300536,234.3,46.023 +300537,238.51,39.668 +300538,236.47,41.905 +300539,234.65,44.002 +300540,232.99,45.981 +300541,237.29,39.744 +300542,235.22,41.936 +300543,233.37,43.994 +300544,231.68,45.937 +300545,236.07,39.821 +300546,233.98,41.968 +300547,232.09,43.986 +300548,230.38,45.892 +300549,234.86,39.9 +300550,232.73,42.001 +300551,230.82,43.977 +300552,229.07,45.846 +300553,233.64,39.98 +300554,231.49,42.035 +300555,229.55,43.968 +300556,227.77,45.798 +300557,232.41,40.062 +300558,230.24,42.068 +300559,228.27,43.959 +300560,226.47,45.749 +300561,231.19,40.145 +300562,228.99,42.103 +300563,227,43.949 +300564,225.17,45.699 +300565,229.96,40.23 +300566,227.74,42.138 +300567,225.73,43.939 +300568,223.87,45.647 +300569,228.73,40.316 +300570,226.49,42.173 +300571,224.45,43.928 +300572,222.57,45.594 +300573,227.5,40.403 +300574,225.24,42.209 +300575,223.18,43.917 +300576,221.27,45.54 +300577,226.27,40.492 +300578,223.99,42.246 +300579,221.91,43.906 +300580,219.98,45.485 +300581,225.03,40.582 +300582,222.74,42.283 +300583,220.64,43.895 +300584,218.69,45.428 +300585,223.8,40.673 +300586,221.49,42.32 +300587,219.37,43.883 +300588,217.39,45.371 +300589,222.56,40.766 +300590,220.24,42.358 +300591,218.1,43.871 +300592,216.1,45.312 +300593,221.31,40.859 +300594,218.99,42.397 +300595,216.83,43.858 +300596,214.82,45.252 +300597,220.07,40.953 +300598,217.73,42.435 +300599,215.56,43.845 +300600,213.53,45.192 +300601,218.82,41.049 +300602,216.48,42.475 +300603,214.29,43.832 +300604,212.24,45.13 +300605,217.57,41.145 +300606,215.22,42.514 +300607,213.03,43.819 +300608,210.96,45.067 +300609,216.32,41.242 +300610,213.97,42.554 +300611,211.76,43.806 +300612,209.68,45.003 +300613,215.07,41.34 +300614,212.71,42.594 +300615,210.49,43.792 +300616,208.4,44.939 +300617,213.82,41.439 +300618,211.45,42.635 +300619,209.23,43.778 +300620,207.12,44.873 +300621,212.56,41.539 +300622,210.2,42.676 +300623,207.96,43.764 +300624,205.84,44.807 +300625,211.3,41.639 +300626,208.94,42.717 +300627,206.7,43.75 +300628,204.57,44.74 +300629,210.04,41.74 +300630,207.68,42.759 +300631,205.43,43.735 +300632,203.29,44.672 +300633,208.78,41.842 +300634,206.42,42.801 +300635,204.17,43.72 +300636,202.02,44.604 +300637,207.51,41.944 +300638,205.16,42.843 +300639,202.91,43.706 +300640,200.75,44.534 +300641,206.24,42.047 +300642,203.89,42.886 +300643,201.64,43.691 +300644,199.48,44.464 +300645,204.97,42.15 +300646,202.63,42.928 +300647,200.38,43.676 +300648,198.22,44.394 +300649,203.7,42.253 +300650,201.37,42.971 +300651,199.12,43.66 +300652,196.95,44.323 +300653,202.43,42.357 +300654,200.1,43.014 +300655,197.86,43.645 +300656,195.69,44.251 +300657,201.15,42.461 +300658,198.84,43.058 +300659,196.6,43.63 +300660,194.43,44.179 +300661,199.88,42.566 +300662,197.57,43.101 +300663,195.34,43.614 +300664,193.17,44.107 +300665,198.6,42.67 +300666,196.31,43.145 +300667,194.08,43.599 +300668,191.92,44.034 +300669,197.31,42.775 +300670,195.04,43.189 +300671,192.82,43.583 +300672,190.66,43.961 +300673,196.03,42.88 +300674,193.77,43.233 +300675,191.57,43.568 +300676,189.41,43.887 +300677,194.75,42.985 +300678,192.51,43.277 +300679,190.31,43.552 +300680,188.16,43.813 +300681,193.46,43.09 +300682,191.24,43.321 +300683,189.05,43.537 +300684,186.91,43.739 +300685,192.17,43.195 +300686,189.97,43.365 +300687,187.8,43.521 +300688,185.66,43.665 +300689,190.88,43.3 +300690,188.7,43.409 +300691,186.54,43.506 +300692,184.42,43.59 +300693,189.59,43.404 +300694,187.43,43.454 +300695,185.29,43.491 +300696,183.17,43.516 +300697,188.29,43.509 +300698,186.15,43.498 +300699,184.03,43.475 +300700,181.93,43.441 +300701,187,43.613 +300702,184.88,43.543 +300703,182.78,43.46 +300704,180.69,43.366 +300705,185.7,43.717 +300706,183.61,43.587 +300707,181.53,43.445 +300708,179.45,43.292 +300709,184.4,43.821 +300710,182.33,43.631 +300711,180.27,43.43 +300712,178.22,43.217 +300713,183.1,43.924 +300714,181.06,43.676 +300715,179.02,43.415 +300716,176.99,43.143 +300717,181.79,44.027 +300718,179.78,43.72 +300719,177.77,43.4 +300720,175.75,43.069 +300721,180.49,44.13 +300722,178.51,43.764 +300723,176.52,43.386 +300724,174.52,42.995 +300725,179.18,44.232 +300726,177.23,43.809 +300727,175.27,43.372 +300728,173.3,42.921 +300729,177.87,44.334 +300730,175.96,43.853 +300731,174.02,43.357 +300732,172.07,42.848 +300733,176.57,44.435 +300734,174.68,43.897 +300735,172.77,43.343 +300736,170.85,42.775 +300737,175.25,44.535 +300738,173.4,43.941 +300739,171.52,43.33 +300740,169.62,42.702 +300741,173.94,44.635 +300742,172.12,43.985 +300743,170.28,43.316 +300744,168.4,42.63 +300745,172.63,44.734 +300746,170.84,44.028 +300747,169.03,43.303 +300748,167.18,42.558 +300749,171.31,44.832 +300750,169.56,44.072 +300751,167.78,43.29 +300752,165.97,42.487 +300753,170,44.93 +300754,168.28,44.115 +300755,166.53,43.277 +300756,164.75,42.416 +300757,168.68,45.027 +300758,167,44.158 +300759,165.29,43.265 +300760,163.54,42.346 +300761,167.36,45.123 +300762,165.72,44.201 +300763,164.04,43.253 +300764,162.33,42.277 +300765,166.04,45.218 +300766,164.44,44.244 +300767,162.8,43.241 +300768,161.12,42.208 +300769,164.72,45.312 +300770,163.15,44.287 +300771,161.55,43.23 +300772,159.91,42.14 +300773,163.39,45.405 +300774,161.87,44.329 +300775,160.31,43.219 +300776,158.7,42.074 +300777,162.07,45.498 +300778,160.59,44.371 +300779,159.06,43.208 +300780,157.5,42.007 +300781,160.74,45.589 +300782,159.3,44.413 +300783,157.82,43.198 +300784,156.3,41.942 +300785,159.42,45.679 +300786,158.02,44.454 +300787,156.58,43.188 +300788,155.1,41.878 +300789,158.09,45.769 +300790,156.73,44.495 +300791,155.34,43.178 +300792,153.9,41.815 +300793,156.76,45.857 +300794,155.45,44.536 +300795,154.09,43.169 +300796,152.7,41.752 +300797,155.43,45.944 +300798,154.16,44.577 +300799,152.85,43.16 +300800,151.5,41.691 +300801,154.1,46.03 +300802,152.87,44.617 +300803,151.61,43.152 +300804,150.31,41.631 +300805,152.77,46.114 +300806,151.59,44.657 +300807,150.37,43.144 +300808,149.11,41.572 +300809,151.44,46.198 +300810,150.3,44.696 +300811,149.13,43.137 +300812,147.92,41.515 +300813,150.1,46.28 +300814,149.01,44.736 +300815,147.89,43.13 +300816,146.73,41.458 +300817,148.77,46.361 +300818,147.72,44.774 +300819,146.65,43.124 +300820,145.54,41.403 +300821,147.43,46.44 +300822,146.43,44.813 +300823,145.41,43.118 +300824,144.35,41.35 +300825,146.1,46.519 +300826,145.14,44.851 +300827,144.17,43.113 +300828,143.17,41.297 +300829,144.76,46.595 +300830,143.86,44.889 +300831,142.93,43.108 +300832,141.98,41.247 +300833,143.42,46.671 +300834,142.57,44.926 +300835,141.69,43.104 +300836,140.79,41.197 +300837,142.09,46.745 +300838,141.28,44.963 +300839,140.45,43.101 +300840,139.61,41.149 +300841,140.75,46.818 +300842,139.98,44.999 +300843,139.21,43.098 +300844,138.43,41.103 +300845,139.41,46.889 +300846,138.69,45.035 +300847,137.97,43.095 +300848,137.25,41.058 +300849,138.07,46.959 +300850,137.4,45.071 +300851,136.74,43.093 +300852,136.07,41.015 +300853,136.73,47.027 +300854,136.11,45.106 +300855,135.5,43.092 +300856,134.89,40.973 +300857,135.39,47.094 +300858,134.82,45.14 +300859,134.26,43.091 +300860,133.71,40.934 +300861,134.05,47.159 +300862,133.53,45.174 +300863,133.02,43.091 +300864,132.53,40.896 +300865,132.7,47.223 +300866,132.24,45.208 +300867,131.78,43.092 +300868,131.35,40.859 +300869,131.36,47.285 +300870,130.94,45.241 +300871,130.55,43.093 +300872,130.17,40.825 +300873,130.02,47.346 +300874,129.65,45.274 +300875,129.31,43.095 +300876,129,40.792 +300877,128.68,47.405 +300878,128.36,45.306 +300879,128.07,43.097 +300880,127.82,40.761 +300881,127.33,47.462 +300882,127.07,45.338 +300883,126.83,43.1 +300884,126.65,40.732 +300885,125.99,47.518 +300886,125.77,45.369 +300887,125.6,43.104 +300888,125.47,40.705 +300889,124.65,47.572 +300890,124.48,45.399 +300891,124.36,43.109 +300892,124.3,40.68 +300893,123.3,47.625 +300894,123.19,45.429 +300895,123.12,43.114 +300896,123.12,40.657 +300897,121.96,47.676 +300898,121.89,45.459 +300899,121.89,43.12 +300900,121.95,40.636 +300901,120.62,47.725 +300902,120.6,45.488 +300903,120.65,43.126 +300904,120.78,40.617 +300905,119.27,47.772 +300906,119.31,45.516 +300907,119.41,43.134 +300908,119.6,40.6 +300909,117.93,47.818 +300910,118.01,45.544 +300911,118.17,43.141 +300912,118.43,40.585 +300913,116.58,47.862 +300914,116.72,45.572 +300915,116.94,43.15 +300916,117.26,40.572 +300917,115.24,47.904 +300918,115.43,45.599 +300919,115.7,43.159 +300920,116.08,40.562 +300921,113.9,47.945 +300922,114.13,45.625 +300923,114.46,43.17 +300924,114.91,40.553 +300925,112.55,47.984 +300926,112.84,45.651 +300927,113.22,43.18 +300928,113.73,40.546 +300929,111.21,48.021 +300930,111.55,45.676 +300931,111.98,43.192 +300932,112.56,40.542 +300933,109.86,48.057 +300934,110.25,45.7 +300935,110.75,43.204 +300936,111.38,40.54 +300937,108.52,48.09 +300938,108.96,45.724 +300939,109.51,43.217 +300940,110.21,40.54 +300941,107.18,48.122 +300942,107.66,45.748 +300943,108.27,43.231 +300944,109.03,40.542 +300945,105.84,48.152 +300946,106.37,45.771 +300947,107.03,43.245 +300948,107.86,40.546 +300949,104.49,48.181 +300950,105.08,45.793 +300951,105.79,43.26 +300952,106.68,40.553 +300953,103.15,48.207 +300954,103.78,45.815 +300955,104.55,43.276 +300956,105.5,40.562 +300957,101.81,48.232 +300958,102.49,45.836 +300959,103.31,43.293 +300960,104.32,40.573 +300961,100.47,48.255 +300962,101.2,45.857 +300963,102.07,43.31 +300964,103.14,40.586 +300965,99.127,48.277 +300966,99.904,45.877 +300967,100.83,43.328 +300968,101.96,40.601 +300969,97.786,48.296 +300970,98.611,45.896 +300971,99.59,43.347 +300972,100.78,40.619 +300973,96.446,48.314 +300974,97.318,45.915 +300975,98.349,43.367 +300976,99.597,40.639 +300977,95.107,48.33 +300978,96.025,45.933 +300979,97.108,43.387 +300980,98.413,40.661 +300981,93.768,48.345 +300982,94.733,45.951 +300983,95.866,43.408 +300984,97.228,40.686 +300985,92.43,48.358 +300986,93.44,45.968 +300987,94.624,43.43 +300988,96.042,40.712 +300989,91.093,48.368 +300990,92.148,45.985 +300991,93.381,43.453 +300992,94.855,40.741 +300993,89.756,48.378 +300994,90.856,46.001 +300995,92.138,43.476 +300996,93.666,40.772 +300997,88.42,48.385 +300998,89.564,46.016 +300999,90.894,43.5 +301000,92.476,40.805 +301001,87.085,48.391 +301002,88.273,46.031 +301003,89.65,43.525 +301004,91.285,40.84 +301005,85.751,48.395 +301006,86.982,46.045 +301007,88.406,43.55 +301008,90.092,40.878 +301009,84.417,48.397 +301010,85.691,46.059 +301011,87.161,43.576 +301012,88.897,40.918 +301013,83.084,48.398 +301014,84.4,46.072 +301015,85.916,43.603 +301016,87.701,40.959 +301017,81.752,48.397 +301018,83.11,46.085 +301019,84.67,43.63 +301020,86.503,41.003 +301021,80.421,48.394 +301022,81.819,46.097 +301023,83.423,43.659 +301024,85.304,41.049 +301025,79.091,48.389 +301026,80.53,46.109 +301027,82.176,43.688 +301028,84.102,41.097 +301029,77.762,48.383 +301030,79.24,46.12 +301031,80.928,43.717 +301032,82.899,41.148 +301033,76.434,48.376 +301034,77.951,46.13 +301035,79.68,43.748 +301036,81.694,41.2 +301037,75.107,48.366 +301038,76.662,46.14 +301039,78.431,43.779 +301040,80.487,41.254 +301041,73.781,48.355 +301042,75.374,46.15 +301043,77.182,43.81 +301044,79.279,41.31 +301045,72.457,48.343 +301046,74.086,46.159 +301047,75.932,43.842 +301048,78.068,41.368 +301049,71.133,48.329 +301050,72.798,46.167 +301051,74.681,43.875 +301052,76.856,41.428 +301053,69.81,48.313 +301054,71.511,46.175 +301055,73.43,43.909 +301056,75.641,41.49 +301057,68.489,48.296 +301058,70.224,46.182 +301059,72.178,43.943 +301060,74.424,41.554 +301061,67.169,48.277 +301062,68.937,46.189 +301063,70.926,43.978 +301064,73.205,41.62 +301065,65.85,48.257 +301066,67.651,46.196 +301067,69.673,44.014 +301068,71.985,41.688 +301069,64.532,48.235 +301070,66.365,46.202 +301071,68.419,44.05 +301072,70.762,41.757 +301073,63.216,48.212 +301074,65.08,46.207 +301075,67.164,44.086 +301076,69.536,41.828 +301077,61.901,48.188 +301078,63.795,46.212 +301079,65.909,44.124 +301080,68.309,41.901 +301081,60.587,48.162 +301082,62.511,46.217 +301083,64.653,44.162 +301084,67.08,41.975 +301085,59.275,48.134 +301086,61.227,46.221 +301087,63.396,44.2 +301088,65.848,42.052 +301089,57.964,48.105 +301090,59.944,46.225 +301091,62.139,44.239 +301092,64.614,42.129 +301093,56.655,48.075 +301094,58.661,46.228 +301095,60.881,44.279 +301096,63.378,42.209 +301097,55.347,48.044 +301098,57.378,46.231 +301099,59.622,44.319 +301100,62.139,42.29 +301101,54.041,48.011 +301102,56.096,46.233 +301103,58.363,44.359 +301104,60.899,42.372 +301105,52.736,47.977 +301106,54.815,46.235 +301107,57.102,44.4 +301108,59.656,42.456 +301109,51.432,47.941 +301110,53.534,46.237 +301111,55.841,44.442 +301112,58.411,42.541 +301113,50.13,47.905 +301114,52.253,46.238 +301115,54.579,44.484 +301116,57.163,42.628 +301117,48.83,47.867 +301118,50.973,46.239 +301119,53.317,44.527 +301120,55.913,42.716 +301121,47.531,47.828 +301122,49.694,46.24 +301123,52.054,44.57 +301124,54.661,42.805 +301125,46.234,47.788 +301126,48.415,46.24 +301127,50.79,44.613 +301128,53.407,42.895 +301129,44.939,47.747 +301130,47.137,46.24 +301131,49.525,44.657 +301132,52.15,42.987 +301133,43.645,47.704 +301134,45.859,46.24 +301135,48.259,44.702 +301136,50.891,43.08 +301137,42.353,47.661 +301138,44.581,46.239 +301139,46.993,44.747 +301140,49.63,43.174 +301141,41.062,47.617 +301142,43.305,46.238 +301143,45.726,44.792 +301144,48.366,43.269 +301145,39.774,47.571 +301146,42.028,46.237 +301147,44.458,44.838 +301148,47.1,43.365 +301149,38.487,47.525 +301150,40.753,46.235 +301151,43.189,44.884 +301152,45.832,43.462 +301153,37.202,47.477 +301154,39.478,46.233 +301155,41.92,44.93 +301156,44.562,43.56 +301157,35.918,47.429 +301158,38.203,46.231 +301159,40.649,44.977 +301160,43.29,43.659 +301161,34.636,47.38 +301162,36.929,46.228 +301163,39.378,45.024 +301164,42.015,43.759 +301165,33.356,47.33 +301166,35.656,46.226 +301167,38.107,45.071 +301168,40.738,43.859 +301169,32.078,47.279 +301170,34.383,46.223 +301171,36.834,45.119 +301172,39.459,43.961 +301173,30.802,47.228 +301174,33.111,46.22 +301175,35.561,45.167 +301176,38.177,44.063 +301177,29.528,47.176 +301178,31.839,46.217 +301179,34.287,45.215 +301180,36.894,44.165 +301181,28.255,47.123 +301182,30.568,46.213 +301183,33.012,45.263 +301184,35.608,44.269 +301185,26.984,47.069 +301186,29.298,46.21 +301187,31.736,45.312 +301188,34.32,44.372 +301189,25.715,47.015 +301190,28.028,46.206 +301191,30.46,45.361 +301192,33.03,44.477 +301193,24.448,46.96 +301194,26.758,46.202 +301195,29.183,45.41 +301196,31.738,44.582 +301197,23.183,46.905 +301198,25.49,46.198 +301199,27.905,45.46 +301200,30.444,44.687 +301201,21.92,46.849 +301202,24.221,46.194 +301203,26.626,45.509 +301204,29.148,44.793 +301205,20.658,46.793 +301206,22.954,46.19 +301207,25.347,45.559 +301208,27.85,44.899 +301209,19.399,46.736 +301210,21.687,46.185 +301211,24.066,45.609 +301212,26.55,45.005 +301213,18.141,46.679 +301214,20.42,46.181 +301215,22.786,45.659 +301216,25.248,45.111 +301217,16.885,46.621 +301218,19.154,46.176 +301219,21.504,45.709 +301220,23.944,45.218 +301221,15.632,46.563 +301222,17.889,46.172 +301223,20.222,45.76 +301224,22.638,45.325 +301225,14.38,46.505 +301226,16.624,46.167 +301227,18.938,45.81 +301228,21.33,45.432 +301229,13.13,46.447 +301230,15.36,46.163 +301231,17.655,45.861 +301232,20.02,45.539 +301233,11.881,46.388 +301234,14.096,46.158 +301235,16.37,45.911 +301236,18.709,45.646 +301237,10.635,46.329 +301238,12.833,46.153 +301239,15.085,45.962 +301240,17.395,45.753 +301241,9.3908,46.27 +301242,11.571,46.149 +301243,13.799,46.013 +301244,16.08,45.86 +301245,8.1483,46.211 +301246,10.309,46.144 +301247,12.512,46.063 +301248,14.763,45.967 +301249,6.9077,46.152 +301250,9.0472,46.14 +301251,11.225,46.114 +301252,13.445,46.074 +301253,5.669,46.093 +301254,7.7863,46.135 +301255,9.9372,46.165 +301256,12.124,46.18 +301257,4.4321,46.034 +301258,6.5258,46.131 +301259,8.6486,46.216 +301260,10.803,46.286 +301261,3.1971,45.975 +301262,5.2659,46.127 +301263,7.3593,46.266 +301264,9.4791,46.392 +301265,1.9639,45.917 +301266,4.0066,46.123 +301267,6.0694,46.317 +301268,8.1541,46.498 +301269,0.73255,45.858 +301270,2.7477,46.119 +301271,4.7788,46.368 +301272,6.8274,46.603 +301273,359.5,45.8 +301274,1.4893,46.115 +301275,3.4876,46.418 +301276,5.4993,46.708 +301277,358.28,45.742 +301278,0.2314,46.111 +301279,2.1958,46.469 +301280,4.1697,46.813 +301281,357.05,45.684 +301282,358.97,46.108 +301283,0.90339,46.519 +301284,2.8386,46.917 +301285,355.83,45.626 +301286,357.72,46.104 +301287,359.61,46.569 +301288,1.5061,47.02 +301289,354.6,45.569 +301290,356.46,46.101 +301291,358.32,46.619 +301292,0.17229,47.123 +301293,353.38,45.512 +301294,355.2,46.098 +301295,357.02,46.669 +301296,358.84,47.225 +301297,352.16,45.456 +301298,353.95,46.095 +301299,355.73,46.719 +301300,357.5,47.327 +301301,350.95,45.4 +301302,352.69,46.092 +301303,354.43,46.769 +301304,356.16,47.428 +301305,349.73,45.345 +301306,351.44,46.09 +301307,353.14,46.818 +301308,354.82,47.528 +301309,348.52,45.291 +301310,350.18,46.088 +301311,351.84,46.867 +301312,353.48,47.628 +301313,347.3,45.237 +301314,348.93,46.086 +301315,350.54,46.916 +301316,352.14,47.727 +301317,346.09,45.183 +301318,347.68,46.085 +301319,349.25,46.965 +301320,350.8,47.824 +301321,344.88,45.131 +301322,346.42,46.083 +301323,347.95,47.014 +301324,349.46,47.921 +301325,343.68,45.079 +301326,345.17,46.083 +301327,346.65,47.062 +301328,348.11,48.018 +301329,342.47,45.028 +301330,343.92,46.082 +301331,345.35,47.11 +301332,346.77,48.113 +301333,341.26,44.978 +301334,342.67,46.082 +301335,344.05,47.158 +301336,345.42,48.207 +301337,340.06,44.928 +301338,341.42,46.082 +301339,342.75,47.206 +301340,344.07,48.301 +301341,338.86,44.88 +301342,340.16,46.082 +301343,341.45,47.253 +301344,342.72,48.393 +301345,337.66,44.833 +301346,338.91,46.083 +301347,340.15,47.3 +301348,341.37,48.484 +301349,336.46,44.786 +301350,337.66,46.084 +301351,338.85,47.347 +301352,340.02,48.574 +301353,335.26,44.741 +301354,336.41,46.086 +301355,337.55,47.393 +301356,338.67,48.664 +301357,334.06,44.696 +301358,335.16,46.088 +301359,336.25,47.439 +301360,337.32,48.751 +301361,332.87,44.653 +301362,333.91,46.09 +301363,334.94,47.484 +301364,335.97,48.838 +301365,331.67,44.611 +301366,332.66,46.093 +301367,333.64,47.53 +301368,334.61,48.924 +301369,330.48,44.57 +301370,331.41,46.096 +301371,332.34,47.575 +301372,333.26,49.008 +301373,329.29,44.53 +301374,330.16,46.1 +301375,331.04,47.619 +301376,331.9,49.092 +301377,328.1,44.492 +301378,328.91,46.104 +301379,329.73,47.663 +301380,330.55,49.174 +301381,326.91,44.455 +301382,327.67,46.108 +301383,328.43,47.707 +301384,329.19,49.254 +301385,325.72,44.419 +301386,326.42,46.114 +301387,327.12,47.75 +301388,327.84,49.334 +301389,324.53,44.384 +301390,325.17,46.119 +301391,325.82,47.793 +301392,326.48,49.412 +301393,323.34,44.351 +301394,323.92,46.125 +301395,324.52,47.836 +301396,325.12,49.488 +301397,322.15,44.32 +301398,322.67,46.132 +301399,323.21,47.878 +301400,323.77,49.564 +301401,320.97,44.29 +301402,321.42,46.139 +301403,321.91,47.92 +301404,322.41,49.637 +301405,319.78,44.261 +301406,320.18,46.146 +301407,320.6,47.961 +301408,321.05,49.71 +301409,318.59,44.234 +301410,318.93,46.155 +301411,319.3,48.002 +301412,319.69,49.781 +301413,317.41,44.208 +301414,317.68,46.163 +301415,317.99,48.042 +301416,318.33,49.851 +301417,316.23,44.184 +301418,316.43,46.173 +301419,316.68,48.082 +301420,316.97,49.919 +301421,315.04,44.162 +301422,315.18,46.182 +301423,315.38,48.121 +301424,315.61,49.985 +301425,313.86,44.141 +301426,313.94,46.193 +301427,314.07,48.16 +301428,314.25,50.051 +301429,312.67,44.122 +301430,312.69,46.204 +301431,312.77,48.198 +301432,312.89,50.114 +301433,311.49,44.104 +301434,311.44,46.215 +301435,311.46,48.236 +301436,311.53,50.176 +301437,310.31,44.088 +301438,310.19,46.227 +301439,310.15,48.273 +301440,310.17,50.237 +301441,309.12,44.074 +301442,308.94,46.24 +301443,308.85,48.31 +301444,308.81,50.296 +301445,307.94,44.062 +301446,307.7,46.253 +301447,307.54,48.347 +301448,307.45,50.353 +301449,306.76,44.052 +301450,306.45,46.267 +301451,306.23,48.383 +301452,306.1,50.409 +301453,305.58,44.043 +301454,305.2,46.282 +301455,304.93,48.418 +301456,304.74,50.464 +301457,304.39,44.036 +301458,303.95,46.297 +301459,303.62,48.453 +301460,303.38,50.516 +301461,303.21,44.031 +301462,302.7,46.313 +301463,302.31,48.487 +301464,302.02,50.567 +301465,302.03,44.028 +301466,301.45,46.329 +301467,301.01,48.521 +301468,300.66,50.617 +301469,300.84,44.027 +301470,300.2,46.346 +301471,299.7,48.554 +301472,299.3,50.665 +301473,299.66,44.027 +301474,298.95,46.363 +301475,298.39,48.586 +301476,297.94,50.711 +301477,298.47,44.03 +301478,297.7,46.382 +301479,297.09,48.619 +301480,296.58,50.755 +301481,297.29,44.034 +301482,296.45,46.401 +301483,295.78,48.65 +301484,295.22,50.798 +301485,296.1,44.04 +301486,295.2,46.42 +301487,294.47,48.681 +301488,293.87,50.84 +301489,294.91,44.049 +301490,293.95,46.44 +301491,293.17,48.712 +301492,292.51,50.879 +301493,293.73,44.059 +301494,292.7,46.461 +301495,291.86,48.742 +301496,291.15,50.917 +301497,292.54,44.071 +301498,291.45,46.483 +301499,290.55,48.771 +301500,289.8,50.953 +301501,291.35,44.085 +301502,290.2,46.505 +301503,289.25,48.8 +301504,288.44,50.988 +301505,290.16,44.101 +301506,288.95,46.527 +301507,287.94,48.828 +301508,287.08,51.021 +301509,288.97,44.119 +301510,287.7,46.551 +301511,286.63,48.856 +301512,285.73,51.052 +301513,287.77,44.139 +301514,286.45,46.575 +301515,285.33,48.883 +301516,284.38,51.082 +301517,286.58,44.161 +301518,285.19,46.599 +301519,284.02,48.91 +301520,283.02,51.11 +301521,285.39,44.185 +301522,283.94,46.625 +301523,282.72,48.936 +301524,281.67,51.136 +301525,284.19,44.211 +301526,282.69,46.651 +301527,281.41,48.961 +301528,280.32,51.161 +301529,282.99,44.239 +301530,281.43,46.677 +301531,280.11,48.986 +301532,278.97,51.184 +301533,281.8,44.269 +301534,280.18,46.705 +301535,278.8,49.01 +301536,277.61,51.205 +301537,280.6,44.3 +301538,278.92,46.733 +301539,277.5,49.034 +301540,276.26,51.225 +301541,279.39,44.334 +301542,277.67,46.761 +301543,276.2,49.058 +301544,274.92,51.243 +301545,278.19,44.37 +301546,276.41,46.79 +301547,274.89,49.08 +301548,273.57,51.259 +301549,276.99,44.407 +301550,275.16,46.82 +301551,273.59,49.103 +301552,272.22,51.274 +301553,275.78,44.447 +301554,273.9,46.851 +301555,272.28,49.124 +301556,270.87,51.287 +301557,274.57,44.488 +301558,272.64,46.882 +301559,270.98,49.145 +301560,269.53,51.299 +301561,273.36,44.532 +301562,271.38,46.913 +301563,269.68,49.166 +301564,268.18,51.309 +301565,272.15,44.577 +301566,270.13,46.946 +301567,268.38,49.186 +301568,266.84,51.317 +301569,270.94,44.624 +301570,268.87,46.979 +301571,267.07,49.205 +301572,265.5,51.324 +301573,269.73,44.673 +301574,267.61,47.012 +301575,265.77,49.224 +301576,264.16,51.329 +301577,268.51,44.724 +301578,266.35,47.046 +301579,264.47,49.243 +301580,262.82,51.333 +301581,267.29,44.777 +301582,265.09,47.081 +301583,263.17,49.261 +301584,261.48,51.335 +301585,266.07,44.831 +301586,263.82,47.116 +301587,261.87,49.278 +301588,260.14,51.335 +301589,264.85,44.887 +301590,262.56,47.152 +301591,260.57,49.295 +301592,258.8,51.334 +301593,263.63,44.945 +301594,261.3,47.189 +301595,259.27,49.312 +301596,257.47,51.332 +301597,262.4,45.005 +301598,260.04,47.226 +301599,257.97,49.328 +301600,256.13,51.328 +301601,261.17,45.067 +301602,258.77,47.264 +301603,256.67,49.343 +301604,254.8,51.322 +301605,259.94,45.13 +301606,257.51,47.302 +301607,255.37,49.358 +301608,253.47,51.316 +301609,258.71,45.195 +301610,256.24,47.341 +301611,254.07,49.373 +301612,252.14,51.307 +301613,257.47,45.261 +301614,254.98,47.38 +301615,252.78,49.387 +301616,250.81,51.297 +301617,256.24,45.329 +301618,253.71,47.42 +301619,251.48,49.4 +301620,249.48,51.286 +301621,255,45.399 +301622,252.44,47.46 +301623,250.18,49.413 +301624,248.16,51.274 +301625,253.76,45.47 +301626,251.17,47.501 +301627,248.89,49.426 +301628,246.83,51.26 +301629,252.51,45.543 +301630,249.9,47.543 +301631,247.59,49.438 +301632,245.51,51.244 +301633,251.27,45.617 +301634,248.63,47.584 +301635,246.3,49.45 +301636,244.19,51.228 +301637,250.02,45.693 +301638,247.36,47.627 +301639,245,49.461 +301640,242.87,51.21 +301641,248.77,45.771 +301642,246.09,47.67 +301643,243.71,49.472 +301644,241.55,51.191 +301645,247.52,45.849 +301646,244.82,47.713 +301647,242.41,49.483 +301648,240.23,51.17 +301649,246.26,45.929 +301650,243.55,47.757 +301651,241.12,49.493 +301652,238.91,51.149 +301653,245,46.011 +301654,242.28,47.801 +301655,239.83,49.502 +301656,237.6,51.126 +301657,243.74,46.093 +301658,241,47.846 +301659,238.53,49.512 +301660,236.29,51.102 +301661,242.48,46.177 +301662,239.73,47.891 +301663,237.24,49.521 +301664,234.97,51.076 +301665,241.22,46.262 +301666,238.45,47.937 +301667,235.95,49.529 +301668,233.67,51.05 +301669,239.95,46.349 +301670,237.17,47.983 +301671,234.66,49.537 +301672,232.36,51.022 +301673,238.68,46.436 +301674,235.9,48.029 +301675,233.37,49.545 +301676,231.05,50.994 +301677,237.41,46.525 +301678,234.62,48.076 +301679,232.08,49.553 +301680,229.75,50.964 +301681,236.14,46.615 +301682,233.34,48.123 +301683,230.79,49.56 +301684,228.44,50.933 +301685,234.86,46.706 +301686,232.06,48.171 +301687,229.5,49.567 +301688,227.14,50.902 +301689,233.58,46.798 +301690,230.78,48.219 +301691,228.22,49.573 +301692,225.84,50.869 +301693,232.3,46.89 +301694,229.5,48.267 +301695,226.93,49.58 +301696,224.55,50.836 +301697,231.02,46.984 +301698,228.22,48.316 +301699,225.64,49.586 +301700,223.25,50.801 +301701,229.73,47.079 +301702,226.93,48.365 +301703,224.36,49.591 +301704,221.96,50.766 +301705,228.45,47.174 +301706,225.65,48.414 +301707,223.07,49.597 +301708,220.66,50.729 +301709,227.16,47.27 +301710,224.37,48.463 +301711,221.78,49.602 +301712,219.37,50.692 +301713,225.87,47.367 +301714,223.08,48.513 +301715,220.5,49.607 +301716,218.09,50.654 +301717,224.57,47.465 +301718,221.8,48.563 +301719,219.22,49.612 +301720,216.8,50.616 +301721,223.27,47.564 +301722,220.51,48.614 +301723,217.93,49.616 +301724,215.51,50.576 +301725,221.98,47.663 +301726,219.22,48.664 +301727,216.65,49.62 +301728,214.23,50.536 +301729,220.68,47.762 +301730,217.93,48.715 +301731,215.37,49.624 +301732,212.95,50.496 +301733,219.37,47.863 +301734,216.65,48.766 +301735,214.09,49.628 +301736,211.67,50.454 +301737,218.07,47.963 +301738,215.36,48.817 +301739,212.81,49.632 +301740,210.39,50.412 +301741,216.76,48.065 +301742,214.07,48.869 +301743,211.53,49.636 +301744,209.12,50.37 +301745,215.45,48.166 +301746,212.77,48.92 +301747,210.25,49.639 +301748,207.84,50.327 +301749,214.14,48.268 +301750,211.48,48.972 +301751,208.97,49.642 +301752,206.57,50.283 +301753,212.83,48.371 +301754,210.19,49.024 +301755,207.69,49.646 +301756,205.3,50.239 +301757,211.51,48.474 +301758,208.9,49.076 +301759,206.41,49.649 +301760,204.03,50.195 +301761,210.19,48.577 +301762,207.6,49.128 +301763,205.13,49.652 +301764,202.77,50.15 +301765,208.88,48.68 +301766,206.31,49.18 +301767,203.85,49.654 +301768,201.5,50.105 +301769,207.55,48.783 +301770,205.01,49.233 +301771,202.58,49.657 +301772,200.24,50.059 +301773,206.23,48.887 +301774,203.72,49.285 +301775,201.3,49.66 +301776,198.98,50.014 +301777,204.91,48.99 +301778,202.42,49.338 +301779,200.03,49.663 +301780,197.72,49.968 +301781,203.58,49.094 +301782,201.12,49.39 +301783,198.75,49.665 +301784,196.46,49.922 +301785,202.25,49.198 +301786,199.82,49.443 +301787,197.48,49.668 +301788,195.21,49.875 +301789,200.92,49.302 +301790,198.52,49.496 +301791,196.2,49.671 +301792,193.96,49.829 +301793,199.59,49.405 +301794,197.22,49.548 +301795,194.93,49.673 +301796,192.7,49.782 +301797,198.25,49.509 +301798,195.92,49.601 +301799,193.66,49.676 +301800,191.45,49.736 +301801,196.92,49.612 +301802,194.62,49.654 +301803,192.39,49.679 +301804,190.21,49.689 +301805,195.58,49.715 +301806,193.32,49.706 +301807,191.12,49.681 +301808,188.96,49.642 +301809,194.24,49.818 +301810,192.02,49.759 +301811,189.84,49.684 +301812,187.72,49.596 +301813,192.9,49.921 +301814,190.72,49.811 +301815,188.57,49.687 +301816,186.47,49.549 +301817,191.56,50.024 +301818,189.41,49.864 +301819,187.3,49.69 +301820,185.23,49.503 +301821,190.22,50.126 +301822,188.11,49.916 +301823,186.03,49.693 +301824,184,49.457 +301825,188.87,50.227 +301826,186.8,49.969 +301827,184.77,49.696 +301828,182.76,49.411 +301829,187.53,50.329 +301830,185.5,50.021 +301831,183.5,49.699 +301832,181.52,49.365 +301833,186.18,50.43 +301834,184.19,50.073 +301835,182.23,49.702 +301836,180.29,49.32 +301837,184.83,50.53 +301838,182.88,50.125 +301839,180.96,49.706 +301840,179.06,49.275 +301841,183.48,50.63 +301842,181.58,50.177 +301843,179.69,49.71 +301844,177.83,49.23 +301845,182.13,50.729 +301846,180.27,50.228 +301847,178.43,49.713 +301848,176.6,49.186 +301849,180.77,50.828 +301850,178.96,50.28 +301851,177.16,49.717 +301852,175.37,49.142 +301853,179.42,50.926 +301854,177.65,50.331 +301855,175.9,49.722 +301856,174.15,49.099 +301857,178.07,51.023 +301858,176.34,50.382 +301859,174.63,49.726 +301860,172.92,49.056 +301861,176.71,51.12 +301862,175.03,50.433 +301863,173.36,49.731 +301864,171.7,49.013 +301865,175.35,51.216 +301866,173.72,50.484 +301867,172.1,49.735 +301868,170.48,48.972 +301869,173.99,51.311 +301870,172.41,50.535 +301871,170.84,49.74 +301872,169.26,48.93 +301873,172.63,51.406 +301874,171.1,50.585 +301875,169.57,49.746 +301876,168.04,48.89 +301877,171.27,51.5 +301878,169.79,50.635 +301879,168.31,49.751 +301880,166.82,48.85 +301881,169.91,51.592 +301882,168.48,50.685 +301883,167.05,49.757 +301884,165.61,48.811 +301885,168.55,51.684 +301886,167.17,50.734 +301887,165.78,49.763 +301888,164.39,48.773 +301889,167.18,51.775 +301890,165.85,50.783 +301891,164.52,49.77 +301892,163.18,48.735 +301893,165.82,51.865 +301894,164.54,50.832 +301895,163.26,49.776 +301896,161.97,48.699 +301897,164.45,51.954 +301898,163.23,50.881 +301899,162,49.784 +301900,160.76,48.663 +301901,163.09,52.043 +301902,161.91,50.929 +301903,160.73,49.791 +301904,159.55,48.628 +301905,161.72,52.13 +301906,160.6,50.977 +301907,159.47,49.799 +301908,158.34,48.594 +301909,160.35,52.216 +301910,159.28,51.025 +301911,158.21,49.807 +301912,157.14,48.561 +301913,158.99,52.301 +301914,157.97,51.072 +301915,156.95,49.815 +301916,155.93,48.529 +301917,157.62,52.384 +301918,156.65,51.119 +301919,155.69,49.824 +301920,154.73,48.498 +301921,156.25,52.467 +301922,155.34,51.166 +301923,154.43,49.833 +301924,153.52,48.469 +301925,154.88,52.549 +301926,154.02,51.212 +301927,153.17,49.843 +301928,152.32,48.44 +301929,153.51,52.629 +301930,152.7,51.258 +301931,151.91,49.853 +301932,151.12,48.412 +301933,152.14,52.708 +301934,151.39,51.303 +301935,150.65,49.863 +301936,149.92,48.386 +301937,150.77,52.786 +301938,150.07,51.349 +301939,149.39,49.874 +301940,148.72,48.361 +301941,149.39,52.863 +301942,148.75,51.393 +301943,148.13,49.885 +301944,147.52,48.337 +301945,148.02,52.938 +301946,147.44,51.437 +301947,146.87,49.896 +301948,146.32,48.314 +301949,146.65,53.012 +301950,146.12,51.481 +301951,145.61,49.909 +301952,145.12,48.292 +301953,145.28,53.085 +301954,144.8,51.525 +301955,144.35,49.921 +301956,143.92,48.272 +301957,143.9,53.157 +301958,143.48,51.568 +301959,143.09,49.934 +301960,142.73,48.253 +301961,142.53,53.227 +301962,142.17,51.61 +301963,141.83,49.947 +301964,141.53,48.236 +301965,141.16,53.296 +301966,140.85,51.653 +301967,140.57,49.961 +301968,140.33,48.22 +301969,139.78,53.363 +301970,139.53,51.694 +301971,139.31,49.976 +301972,139.14,48.205 +301973,138.41,53.429 +301974,138.21,51.735 +301975,138.05,49.991 +301976,137.94,48.192 +301977,137.04,53.494 +301978,136.89,51.776 +301979,136.79,50.006 +301980,136.75,48.18 +301981,135.66,53.557 +301982,135.57,51.816 +301983,135.53,50.022 +301984,135.55,48.17 +301985,134.29,53.619 +301986,134.26,51.856 +301987,134.28,50.038 +301988,134.36,48.161 +301989,132.92,53.68 +301990,132.94,51.896 +301991,133.02,50.055 +301992,133.16,48.153 +301993,131.54,53.739 +301994,131.62,51.934 +301995,131.76,50.072 +301996,131.97,48.148 +301997,130.17,53.796 +301998,130.3,51.973 +301999,130.5,50.09 +302000,130.77,48.143 +302001,128.8,53.852 +302002,128.98,52.011 +302003,129.24,50.109 +302004,129.58,48.141 +302005,127.42,53.906 +302006,127.66,52.048 +302007,127.98,50.128 +302008,128.38,48.14 +302009,126.05,53.959 +302010,126.34,52.085 +302011,126.72,50.147 +302012,127.19,48.14 +302013,124.68,54.011 +302014,125.02,52.121 +302015,125.46,50.167 +302016,125.99,48.143 +302017,123.3,54.061 +302018,123.71,52.157 +302019,124.2,50.188 +302020,124.8,48.146 +302021,121.93,54.109 +302022,122.39,52.192 +302023,122.94,50.209 +302024,123.6,48.152 +302025,120.56,54.156 +302026,121.07,52.227 +302027,121.68,50.231 +302028,122.4,48.159 +302029,119.19,54.202 +302030,119.75,52.262 +302031,120.41,50.253 +302032,121.21,48.168 +302033,117.82,54.245 +302034,118.43,52.295 +302035,119.15,50.275 +302036,120.01,48.178 +302037,116.45,54.288 +302038,117.11,52.329 +302039,117.89,50.299 +302040,118.81,48.19 +302041,115.08,54.328 +302042,115.79,52.361 +302043,116.63,50.323 +302044,117.61,48.204 +302045,113.71,54.368 +302046,114.48,52.394 +302047,115.37,50.347 +302048,116.41,48.22 +302049,112.34,54.405 +302050,113.16,52.425 +302051,114.11,50.372 +302052,115.21,48.237 +302053,110.97,54.441 +302054,111.84,52.456 +302055,112.84,50.398 +302056,114.01,48.256 +302057,109.6,54.476 +302058,110.52,52.487 +302059,111.58,50.424 +302060,112.81,48.277 +302061,108.24,54.509 +302062,109.21,52.517 +302063,110.32,50.45 +302064,111.6,48.299 +302065,106.87,54.54 +302066,107.89,52.547 +302067,109.05,50.478 +302068,110.4,48.323 +302069,105.51,54.57 +302070,106.57,52.576 +302071,107.79,50.505 +302072,109.19,48.349 +302073,104.14,54.598 +302074,105.25,52.604 +302075,106.52,50.534 +302076,107.99,48.377 +302077,102.78,54.625 +302078,103.94,52.632 +302079,105.26,50.563 +302080,106.78,48.406 +302081,101.41,54.65 +302082,102.62,52.66 +302083,103.99,50.592 +302084,105.57,48.437 +302085,100.05,54.674 +302086,101.31,52.687 +302087,102.73,50.622 +302088,104.36,48.47 +302089,98.69,54.696 +302090,99.99,52.713 +302091,101.46,50.653 +302092,103.15,48.505 +302093,97.33,54.717 +302094,98.675,52.739 +302095,100.19,50.684 +302096,101.93,48.541 +302097,95.97,54.736 +302098,97.359,52.764 +302099,98.928,50.716 +302100,100.72,48.579 +302101,94.612,54.753 +302102,96.045,52.789 +302103,97.66,50.748 +302104,99.504,48.618 +302105,93.254,54.769 +302106,94.73,52.814 +302107,96.392,50.781 +302108,98.286,48.66 +302109,91.898,54.784 +302110,93.416,52.838 +302111,95.123,50.814 +302112,97.067,48.703 +302113,90.542,54.797 +302114,92.102,52.861 +302115,93.854,50.848 +302116,95.846,48.747 +302117,89.188,54.808 +302118,90.788,52.884 +302119,92.584,50.882 +302120,94.623,48.793 +302121,87.834,54.818 +302122,89.475,52.906 +302123,91.313,50.917 +302124,93.399,48.841 +302125,86.482,54.827 +302126,88.163,52.928 +302127,90.042,50.953 +302128,92.173,48.891 +302129,85.131,54.834 +302130,86.85,52.949 +302131,88.771,50.989 +302132,90.945,48.942 +302133,83.782,54.84 +302134,85.538,52.97 +302135,87.499,51.025 +302136,89.715,48.995 +302137,82.433,54.844 +302138,84.227,52.99 +302139,86.226,51.062 +302140,88.484,49.049 +302141,81.086,54.847 +302142,82.915,53.01 +302143,84.953,51.1 +302144,87.25,49.105 +302145,79.74,54.848 +302146,81.605,53.03 +302147,83.679,51.138 +302148,86.015,49.163 +302149,78.395,54.849 +302150,80.294,53.049 +302151,82.404,51.176 +302152,84.777,49.222 +302153,77.052,54.847 +302154,78.985,53.067 +302155,81.129,51.215 +302156,83.538,49.282 +302157,75.71,54.845 +302158,77.675,53.085 +302159,79.853,51.255 +302160,82.296,49.344 +302161,74.369,54.841 +302162,76.366,53.103 +302163,78.576,51.295 +302164,81.053,49.408 +302165,73.03,54.835 +302166,75.058,53.12 +302167,77.299,51.335 +302168,79.807,49.473 +302169,71.692,54.829 +302170,73.75,53.136 +302171,76.021,51.376 +302172,78.56,49.539 +302173,70.356,54.821 +302174,72.442,53.153 +302175,74.742,51.418 +302176,77.31,49.607 +302177,69.021,54.812 +302178,71.135,53.168 +302179,73.463,51.459 +302180,76.058,49.676 +302181,67.688,54.802 +302182,69.829,53.184 +302183,72.183,51.502 +302184,74.803,49.746 +302185,66.356,54.79 +302186,68.523,53.199 +302187,70.902,51.544 +302188,73.547,49.818 +302189,65.026,54.777 +302190,67.217,53.213 +302191,69.621,51.587 +302192,72.288,49.891 +302193,63.697,54.763 +302194,65.912,53.228 +302195,68.339,51.631 +302196,71.028,49.965 +302197,62.37,54.748 +302198,64.608,53.241 +302199,67.056,51.675 +302200,69.765,50.041 +302201,61.044,54.732 +302202,63.304,53.255 +302203,65.772,51.719 +302204,68.499,50.118 +302205,59.72,54.715 +302206,62,53.268 +302207,64.488,51.764 +302208,67.232,50.195 +302209,58.398,54.696 +302210,60.697,53.28 +302211,63.203,51.809 +302212,65.962,50.275 +302213,57.077,54.677 +302214,59.395,53.293 +302215,61.917,51.855 +302216,64.69,50.355 +302217,55.758,54.656 +302218,58.093,53.305 +302219,60.63,51.9 +302220,63.416,50.436 +302221,54.441,54.635 +302222,56.792,53.316 +302223,59.343,51.947 +302224,62.139,50.518 +302225,53.125,54.612 +302226,55.492,53.328 +302227,58.055,51.993 +302228,60.86,50.602 +302229,51.811,54.589 +302230,54.191,53.339 +302231,56.766,52.04 +302232,59.579,50.686 +302233,50.499,54.564 +302234,52.892,53.349 +302235,55.477,52.087 +302236,58.295,50.771 +302237,49.189,54.539 +302238,51.593,53.36 +302239,54.186,52.135 +302240,57.01,50.858 +302241,47.88,54.513 +302242,50.295,53.37 +302243,52.895,52.182 +302244,55.722,50.945 +302245,46.573,54.486 +302246,48.997,53.379 +302247,51.603,52.23 +302248,54.431,51.033 +302249,45.268,54.458 +302250,47.7,53.389 +302251,50.311,52.279 +302252,53.139,51.121 +302253,43.965,54.429 +302254,46.403,53.398 +302255,49.018,52.327 +302256,51.844,51.211 +302257,42.663,54.4 +302258,45.107,53.407 +302259,47.724,52.376 +302260,50.547,51.301 +302261,41.363,54.369 +302262,43.812,53.416 +302263,46.429,52.425 +302264,49.248,51.392 +302265,40.065,54.338 +302266,42.517,53.424 +302267,45.133,52.474 +302268,47.946,51.484 +302269,38.769,54.307 +302270,41.223,53.433 +302271,43.837,52.524 +302272,46.643,51.576 +302273,37.475,54.275 +302274,39.929,53.441 +302275,42.54,52.574 +302276,45.337,51.669 +302277,36.182,54.242 +302278,38.636,53.449 +302279,41.242,52.624 +302280,44.029,51.763 +302281,34.892,54.208 +302282,37.343,53.456 +302283,39.943,52.674 +302284,42.719,51.857 +302285,33.603,54.174 +302286,36.051,53.464 +302287,38.644,52.724 +302288,41.406,51.951 +302289,32.316,54.14 +302290,34.76,53.471 +302291,37.344,52.775 +302292,40.092,52.046 +302293,31.031,54.105 +302294,33.469,53.478 +302295,36.043,52.825 +302296,38.776,52.141 +302297,29.748,54.07 +302298,32.179,53.486 +302299,34.742,52.876 +302300,37.457,52.237 +302301,28.466,54.034 +302302,30.89,53.492 +302303,33.439,52.927 +302304,36.136,52.333 +302305,27.187,53.997 +302306,29.601,53.499 +302307,32.136,52.978 +302308,34.814,52.43 +302309,25.909,53.961 +302310,28.312,53.506 +302311,30.833,53.029 +302312,33.489,52.526 +302313,24.633,53.924 +302314,27.025,53.513 +302315,29.528,53.08 +302316,32.162,52.623 +302317,23.359,53.887 +302318,25.737,53.519 +302319,28.223,53.131 +302320,30.834,52.72 +302321,22.087,53.849 +302322,24.451,53.526 +302323,26.917,53.183 +302324,29.503,52.817 +302325,20.817,53.811 +302326,23.164,53.532 +302327,25.611,53.234 +302328,28.17,52.915 +302329,19.548,53.774 +302330,21.879,53.538 +302331,24.304,53.285 +302332,26.836,53.012 +302333,18.281,53.735 +302334,20.594,53.545 +302335,22.996,53.337 +302336,25.5,53.109 +302337,17.017,53.697 +302338,19.31,53.551 +302339,21.687,53.388 +302340,24.162,53.207 +302341,15.753,53.659 +302342,18.026,53.557 +302343,20.378,53.44 +302344,22.822,53.304 +302345,14.492,53.621 +302346,16.742,53.563 +302347,19.068,53.491 +302348,21.481,53.401 +302349,13.233,53.582 +302350,15.46,53.569 +302351,17.758,53.542 +302352,20.137,53.499 +302353,11.975,53.544 +302354,14.177,53.576 +302355,16.447,53.594 +302356,18.792,53.596 +302357,10.719,53.506 +302358,12.896,53.582 +302359,15.135,53.645 +302360,17.446,53.693 +302361,9.465,53.468 +302362,11.614,53.588 +302363,13.823,53.696 +302364,16.097,53.789 +302365,8.2125,53.43 +302366,10.334,53.595 +302367,12.51,53.748 +302368,14.748,53.886 +302369,6.9618,53.392 +302370,9.0534,53.601 +302371,11.196,53.799 +302372,13.396,53.982 +302373,5.7128,53.354 +302374,7.7737,53.608 +302375,9.8819,53.85 +302376,12.043,54.078 +302377,4.4654,53.316 +302378,6.4944,53.614 +302379,8.5672,53.901 +302380,10.689,54.173 +302381,3.2198,53.279 +302382,5.2157,53.621 +302383,7.2518,53.951 +302384,9.3329,54.268 +302385,1.9758,53.242 +302386,3.9374,53.628 +302387,5.9359,54.002 +302388,7.9756,54.363 +302389,0.73335,53.206 +302390,2.6596,53.635 +302391,4.6195,54.053 +302392,6.6169,54.457 +302393,359.49,53.169 +302394,1.3823,53.642 +302395,3.3025,54.103 +302396,5.2569,54.55 +302397,358.25,53.134 +302398,0.10538,53.649 +302399,1.985,54.153 +302400,3.8956,54.644 +302401,357.02,53.098 +302402,358.83,53.657 +302403,0.66702,54.203 +302404,2.5329,54.736 +302405,355.78,53.063 +302406,357.55,53.664 +302407,359.35,54.253 +302408,1.1691,54.828 +302409,354.54,53.029 +302410,356.28,53.672 +302411,358.03,54.303 +302412,359.8,54.92 +302413,353.31,52.995 +302414,355,53.68 +302415,356.71,54.352 +302416,358.44,55.01 +302417,352.08,52.961 +302418,353.73,53.688 +302419,355.39,54.401 +302420,357.07,55.1 +302421,350.85,52.929 +302422,352.45,53.696 +302423,354.07,54.45 +302424,355.7,55.19 +302425,349.62,52.897 +302426,351.18,53.705 +302427,352.75,54.499 +302428,354.33,55.278 +302429,348.39,52.865 +302430,349.91,53.714 +302431,351.43,54.548 +302432,352.96,55.366 +302433,347.17,52.834 +302434,348.63,53.723 +302435,350.11,54.596 +302436,351.59,55.453 +302437,345.94,52.804 +302438,347.36,53.732 +302439,348.78,54.644 +302440,350.22,55.539 +302441,344.72,52.775 +302442,346.09,53.741 +302443,347.46,54.692 +302444,348.84,55.625 +302445,343.5,52.746 +302446,344.81,53.751 +302447,346.14,54.739 +302448,347.47,55.709 +302449,342.27,52.719 +302450,343.54,53.761 +302451,344.81,54.786 +302452,346.1,55.793 +302453,341.05,52.692 +302454,342.27,53.772 +302455,343.49,54.833 +302456,344.72,55.875 +302457,339.84,52.666 +302458,341,53.782 +302459,342.17,54.88 +302460,343.34,55.957 +302461,338.62,52.641 +302462,339.73,53.793 +302463,340.84,54.926 +302464,341.97,56.037 +302465,337.4,52.617 +302466,338.46,53.805 +302467,339.52,54.972 +302468,340.59,56.117 +302469,336.18,52.593 +302470,337.19,53.816 +302471,338.19,55.017 +302472,339.21,56.196 +302473,334.97,52.571 +302474,335.91,53.828 +302475,336.87,55.062 +302476,337.83,56.273 +302477,333.76,52.55 +302478,334.64,53.84 +302479,335.54,55.107 +302480,336.45,56.35 +302481,332.54,52.53 +302482,333.37,53.853 +302483,334.22,55.152 +302484,335.07,56.425 +302485,331.33,52.511 +302486,332.1,53.866 +302487,332.89,55.196 +302488,333.69,56.499 +302489,330.12,52.493 +302490,330.83,53.879 +302491,331.56,55.239 +302492,332.31,56.572 +302493,328.91,52.476 +302494,329.56,53.893 +302495,330.24,55.283 +302496,330.93,56.644 +302497,327.7,52.46 +302498,328.29,53.907 +302499,328.91,55.326 +302500,329.55,56.715 +302501,326.49,52.446 +302502,327.03,53.922 +302503,327.58,55.368 +302504,328.16,56.785 +302505,325.28,52.433 +302506,325.76,53.937 +302507,326.26,55.41 +302508,326.78,56.853 +302509,324.07,52.421 +302510,324.49,53.952 +302511,324.93,55.452 +302512,325.4,56.92 +302513,322.86,52.41 +302514,323.22,53.968 +302515,323.6,55.493 +302516,324.02,56.986 +302517,321.65,52.4 +302518,321.95,53.984 +302519,322.28,55.534 +302520,322.63,57.051 +302521,320.45,52.392 +302522,320.68,54.001 +302523,320.95,55.574 +302524,321.25,57.114 +302525,319.24,52.385 +302526,319.41,54.018 +302527,319.62,55.614 +302528,319.87,57.176 +302529,318.03,52.379 +302530,318.14,54.035 +302531,318.29,55.654 +302532,318.48,57.236 +302533,316.83,52.375 +302534,316.87,54.053 +302535,316.97,55.693 +302536,317.1,57.296 +302537,315.62,52.372 +302538,315.6,54.071 +302539,315.64,55.732 +302540,315.72,57.354 +302541,314.41,52.37 +302542,314.33,54.09 +302543,314.31,55.77 +302544,314.33,57.41 +302545,313.21,52.37 +302546,313.06,54.109 +302547,312.98,55.808 +302548,312.95,57.466 +302549,312,52.371 +302550,311.8,54.129 +302551,311.65,55.845 +302552,311.57,57.52 +302553,310.79,52.373 +302554,310.53,54.149 +302555,310.33,55.882 +302556,310.18,57.572 +302557,309.59,52.377 +302558,309.26,54.17 +302559,309,55.918 +302560,308.8,57.623 +302561,308.38,52.383 +302562,307.99,54.191 +302563,307.67,55.954 +302564,307.42,57.673 +302565,307.17,52.39 +302566,306.72,54.212 +302567,306.34,55.989 +302568,306.03,57.721 +302569,305.97,52.398 +302570,305.45,54.234 +302571,305.01,56.024 +302572,304.65,57.768 +302573,304.76,52.408 +302574,304.18,54.257 +302575,303.69,56.058 +302576,303.27,57.814 +302577,303.55,52.419 +302578,302.91,54.28 +302579,302.36,56.092 +302580,301.89,57.858 +302581,302.34,52.432 +302582,301.64,54.304 +302583,301.03,56.125 +302584,300.51,57.9 +302585,301.13,52.446 +302586,300.37,54.328 +302587,299.7,56.158 +302588,299.13,57.942 +302589,299.92,52.462 +302590,299.1,54.352 +302591,298.38,56.191 +302592,297.75,57.981 +302593,298.71,52.479 +302594,297.82,54.377 +302595,297.05,56.223 +302596,296.37,58.02 +302597,297.5,52.498 +302598,296.55,54.402 +302599,295.72,56.254 +302600,294.99,58.056 +302601,296.29,52.519 +302602,295.28,54.428 +302603,294.39,56.285 +302604,293.61,58.092 +302605,295.08,52.541 +302606,294.01,54.455 +302607,293.07,56.315 +302608,292.23,58.126 +302609,293.87,52.564 +302610,292.74,54.482 +302611,291.74,56.345 +302612,290.86,58.158 +302613,292.65,52.589 +302614,291.46,54.509 +302615,290.41,56.375 +302616,289.48,58.189 +302617,291.44,52.615 +302618,290.19,54.537 +302619,289.09,56.404 +302620,288.11,58.219 +302621,290.22,52.644 +302622,288.92,54.566 +302623,287.76,56.432 +302624,286.73,58.247 +302625,289.01,52.673 +302626,287.65,54.594 +302627,286.44,56.46 +302628,285.36,58.273 +302629,287.79,52.704 +302630,286.37,54.624 +302631,285.11,56.487 +302632,283.98,58.299 +302633,286.57,52.737 +302634,285.1,54.654 +302635,283.79,56.514 +302636,282.61,58.322 +302637,285.35,52.771 +302638,283.82,54.684 +302639,282.46,56.541 +302640,281.24,58.345 +302641,284.13,52.807 +302642,282.55,54.715 +302643,281.14,56.567 +302644,279.87,58.366 +302645,282.91,52.844 +302646,281.27,54.746 +302647,279.81,56.592 +302648,278.5,58.385 +302649,281.68,52.882 +302650,280,54.778 +302651,278.49,56.617 +302652,277.13,58.403 +302653,280.46,52.923 +302654,278.72,54.811 +302655,277.16,56.642 +302656,275.76,58.42 +302657,279.23,52.964 +302658,277.44,54.843 +302659,275.84,56.666 +302660,274.4,58.435 +302661,278,53.007 +302662,276.16,54.877 +302663,274.52,56.689 +302664,273.03,58.449 +302665,276.77,53.052 +302666,274.89,54.911 +302667,273.2,56.712 +302668,271.67,58.462 +302669,275.54,53.098 +302670,273.61,54.945 +302671,271.87,56.735 +302672,270.3,58.473 +302673,274.31,53.146 +302674,272.33,54.979 +302675,270.55,56.757 +302676,268.94,58.482 +302677,273.07,53.195 +302678,271.05,55.015 +302679,269.23,56.778 +302680,267.58,58.491 +302681,271.84,53.245 +302682,269.77,55.05 +302683,267.91,56.8 +302684,266.22,58.498 +302685,270.6,53.297 +302686,268.49,55.086 +302687,266.59,56.82 +302688,264.86,58.504 +302689,269.36,53.35 +302690,267.21,55.123 +302691,265.27,56.84 +302692,263.5,58.508 +302693,268.12,53.404 +302694,265.93,55.16 +302695,263.95,56.86 +302696,262.15,58.511 +302697,266.88,53.46 +302698,264.64,55.197 +302699,262.63,56.88 +302700,260.79,58.513 +302701,265.63,53.518 +302702,263.36,55.235 +302703,261.31,56.899 +302704,259.44,58.513 +302705,264.39,53.576 +302706,262.08,55.273 +302707,259.99,56.917 +302708,258.08,58.513 +302709,263.14,53.636 +302710,260.79,55.312 +302711,258.67,56.935 +302712,256.73,58.511 +302713,261.89,53.697 +302714,259.51,55.351 +302715,257.35,56.953 +302716,255.38,58.507 +302717,260.63,53.76 +302718,258.22,55.39 +302719,256.04,56.97 +302720,254.04,58.503 +302721,259.38,53.823 +302722,256.94,55.43 +302723,254.72,56.987 +302724,252.69,58.497 +302725,258.12,53.888 +302726,255.65,55.471 +302727,253.4,57.003 +302728,251.34,58.491 +302729,256.86,53.954 +302730,254.36,55.511 +302731,252.09,57.019 +302732,250,58.483 +302733,255.6,54.022 +302734,253.08,55.552 +302735,250.77,57.035 +302736,248.66,58.474 +302737,254.34,54.09 +302738,251.79,55.594 +302739,249.46,57.05 +302740,247.32,58.463 +302741,253.08,54.16 +302742,250.5,55.636 +302743,248.14,57.065 +302744,245.98,58.452 +302745,251.81,54.23 +302746,249.21,55.678 +302747,246.83,57.079 +302748,244.64,58.44 +302749,250.54,54.302 +302750,247.92,55.72 +302751,245.52,57.093 +302752,243.3,58.426 +302753,249.27,54.375 +302754,246.63,55.763 +302755,244.2,57.107 +302756,241.97,58.412 +302757,248,54.449 +302758,245.33,55.806 +302759,242.89,57.121 +302760,240.64,58.397 +302761,246.72,54.523 +302762,244.04,55.85 +302763,241.58,57.134 +302764,239.31,58.38 +302765,245.44,54.599 +302766,242.75,55.893 +302767,240.27,57.146 +302768,237.98,58.363 +302769,244.16,54.676 +302770,241.45,55.937 +302771,238.96,57.159 +302772,236.65,58.344 +302773,242.88,54.754 +302774,240.16,55.982 +302775,237.65,57.171 +302776,235.32,58.325 +302777,241.6,54.832 +302778,238.86,56.027 +302779,236.34,57.183 +302780,234,58.305 +302781,240.31,54.911 +302782,237.57,56.071 +302783,235.03,57.194 +302784,232.67,58.284 +302785,239.02,54.992 +302786,236.27,56.117 +302787,233.72,57.206 +302788,231.35,58.262 +302789,237.73,55.073 +302790,234.97,56.162 +302791,232.42,57.217 +302792,230.03,58.24 +302793,236.44,55.154 +302794,233.67,56.208 +302795,231.11,57.227 +302796,228.72,58.216 +302797,235.15,55.237 +302798,232.37,56.254 +302799,229.8,57.238 +302800,227.4,58.192 +302801,233.85,55.32 +302802,231.07,56.3 +302803,228.5,57.248 +302804,226.09,58.167 +302805,232.55,55.404 +302806,229.77,56.346 +302807,227.19,57.258 +302808,224.77,58.141 +302809,231.25,55.489 +302810,228.47,56.393 +302811,225.89,57.267 +302812,223.46,58.115 +302813,229.94,55.574 +302814,227.17,56.44 +302815,224.58,57.277 +302816,222.15,58.088 +302817,228.64,55.659 +302818,225.87,56.487 +302819,223.28,57.286 +302820,220.85,58.061 +302821,227.33,55.746 +302822,224.56,56.534 +302823,221.98,57.295 +302824,219.54,58.032 +302825,226.02,55.832 +302826,223.26,56.581 +302827,220.68,57.304 +302828,218.24,58.004 +302829,224.71,55.919 +302830,221.96,56.629 +302831,219.37,57.313 +302832,216.94,57.974 +302833,223.39,56.007 +302834,220.65,56.677 +302835,218.07,57.321 +302836,215.64,57.945 +302837,222.08,56.095 +302838,219.34,56.724 +302839,216.77,57.33 +302840,214.34,57.914 +302841,220.76,56.184 +302842,218.04,56.772 +302843,215.47,57.338 +302844,213.04,57.884 +302845,219.44,56.272 +302846,216.73,56.82 +302847,214.17,57.346 +302848,211.75,57.853 +302849,218.11,56.361 +302850,215.42,56.868 +302851,212.87,57.354 +302852,210.46,57.821 +302853,216.79,56.451 +302854,214.11,56.917 +302855,211.58,57.362 +302856,209.17,57.789 +302857,215.46,56.54 +302858,212.8,56.965 +302859,210.28,57.37 +302860,207.88,57.757 +302861,214.13,56.63 +302862,211.49,57.013 +302863,208.98,57.377 +302864,206.59,57.725 +302865,212.8,56.72 +302866,210.18,57.062 +302867,207.69,57.385 +302868,205.3,57.692 +302869,211.47,56.81 +302870,208.87,57.11 +302871,206.39,57.392 +302872,204.02,57.659 +302873,210.14,56.9 +302874,207.56,57.159 +302875,205.1,57.4 +302876,202.74,57.626 +302877,208.8,56.991 +302878,206.24,57.207 +302879,203.8,57.407 +302880,201.46,57.593 +302881,207.46,57.081 +302882,204.93,57.256 +302883,202.51,57.414 +302884,200.18,57.56 +302885,206.12,57.171 +302886,203.61,57.304 +302887,201.21,57.422 +302888,198.91,57.526 +302889,204.78,57.261 +302890,202.3,57.353 +302891,199.92,57.429 +302892,197.63,57.493 +302893,203.44,57.352 +302894,200.98,57.401 +302895,198.63,57.436 +302896,196.36,57.459 +302897,202.09,57.442 +302898,199.67,57.449 +302899,197.34,57.443 +302900,195.09,57.425 +302901,200.74,57.532 +302902,198.35,57.498 +302903,196.04,57.451 +302904,193.82,57.392 +302905,199.39,57.621 +302906,197.03,57.546 +302907,194.75,57.458 +302908,192.55,57.358 +302909,198.04,57.711 +302910,195.71,57.595 +302911,193.46,57.465 +302912,191.29,57.325 +302913,196.69,57.8 +302914,194.39,57.643 +302915,192.17,57.472 +302916,190.02,57.292 +302917,195.34,57.889 +302918,193.07,57.691 +302919,190.89,57.48 +302920,188.76,57.259 +302921,193.98,57.978 +302922,191.75,57.739 +302923,189.6,57.487 +302924,187.5,57.226 +302925,192.62,58.067 +302926,190.43,57.787 +302927,188.31,57.495 +302928,186.24,57.193 +302929,191.27,58.155 +302930,189.11,57.835 +302931,187.02,57.503 +302932,184.98,57.161 +302933,189.9,58.242 +302934,187.79,57.882 +302935,185.73,57.51 +302936,183.73,57.128 +302937,188.54,58.33 +302938,186.47,57.93 +302939,184.45,57.518 +302940,182.47,57.097 +302941,187.18,58.417 +302942,185.15,57.977 +302943,183.16,57.526 +302944,181.22,57.065 +302945,185.82,58.503 +302946,183.82,58.024 +302947,181.88,57.534 +302948,179.97,57.034 +302949,184.45,58.589 +302950,182.5,58.071 +302951,180.59,57.542 +302952,178.72,57.003 +302953,183.08,58.674 +302954,181.17,58.118 +302955,179.31,57.551 +302956,177.47,56.973 +302957,181.71,58.759 +302958,179.85,58.165 +302959,178.02,57.559 +302960,176.23,56.943 +302961,180.34,58.843 +302962,178.52,58.211 +302963,176.74,57.568 +302964,174.98,56.914 +302965,178.97,58.926 +302966,177.2,58.258 +302967,175.45,57.577 +302968,173.74,56.885 +302969,177.6,59.009 +302970,175.87,58.304 +302971,174.17,57.586 +302972,172.5,56.857 +302973,176.23,59.091 +302974,174.54,58.35 +302975,172.89,57.595 +302976,171.26,56.83 +302977,174.85,59.173 +302978,173.22,58.395 +302979,171.61,57.605 +302980,170.02,56.803 +302981,173.48,59.253 +302982,171.89,58.44 +302983,170.32,57.614 +302984,168.78,56.776 +302985,172.1,59.333 +302986,170.56,58.486 +302987,169.04,57.624 +302988,167.54,56.751 +302989,170.73,59.412 +302990,169.23,58.53 +302991,167.76,57.634 +302992,166.31,56.726 +302993,169.35,59.49 +302994,167.9,58.575 +302995,166.48,57.645 +302996,165.07,56.702 +302997,167.97,59.568 +302998,166.58,58.619 +302999,165.2,57.655 +303000,163.84,56.678 +303001,166.59,59.644 +303002,165.25,58.663 +303003,163.92,57.666 +303004,162.61,56.656 +303005,165.21,59.72 +303006,163.92,58.707 +303007,162.64,57.677 +303008,161.38,56.634 +303009,163.83,59.795 +303010,162.59,58.75 +303011,161.36,57.689 +303012,160.15,56.613 +303013,162.44,59.869 +303014,161.26,58.793 +303015,160.08,57.701 +303016,158.92,56.593 +303017,161.06,59.941 +303018,159.92,58.836 +303019,158.8,57.713 +303020,157.69,56.574 +303021,159.68,60.013 +303022,158.59,58.878 +303023,157.52,57.725 +303024,156.47,56.555 +303025,158.29,60.084 +303026,157.26,58.92 +303027,156.25,57.738 +303028,155.24,56.538 +303029,156.91,60.154 +303030,155.93,58.962 +303031,154.97,57.751 +303032,154.02,56.522 +303033,155.52,60.223 +303034,154.6,59.003 +303035,153.69,57.764 +303036,152.79,56.506 +303037,154.14,60.29 +303038,153.27,59.044 +303039,152.41,57.777 +303040,151.57,56.492 +303041,152.75,60.357 +303042,151.93,59.085 +303043,151.13,57.791 +303044,150.35,56.479 +303045,151.36,60.423 +303046,150.6,59.125 +303047,149.86,57.806 +303048,149.13,56.467 +303049,149.97,60.487 +303050,149.27,59.165 +303051,148.58,57.82 +303052,147.91,56.456 +303053,148.59,60.55 +303054,147.93,59.204 +303055,147.3,57.835 +303056,146.69,56.446 +303057,147.2,60.612 +303058,146.6,59.243 +303059,146.02,57.851 +303060,145.47,56.437 +303061,145.81,60.673 +303062,145.27,59.282 +303063,144.75,57.867 +303064,144.25,56.429 +303065,144.42,60.733 +303066,143.93,59.32 +303067,143.47,57.883 +303068,143.03,56.422 +303069,143.03,60.792 +303070,142.6,59.358 +303071,142.19,57.899 +303072,141.81,56.417 +303073,141.64,60.849 +303074,141.27,59.395 +303075,140.92,57.916 +303076,140.6,56.413 +303077,140.25,60.905 +303078,139.93,59.432 +303079,139.64,57.933 +303080,139.38,56.41 +303081,138.87,60.96 +303082,138.6,59.469 +303083,138.36,57.951 +303084,138.16,56.408 +303085,137.48,61.013 +303086,137.26,59.505 +303087,137.09,57.969 +303088,136.95,56.407 +303089,136.09,61.066 +303090,135.93,59.541 +303091,135.81,57.988 +303092,135.73,56.408 +303093,134.7,61.117 +303094,134.6,59.576 +303095,134.53,58.007 +303096,134.51,56.41 +303097,133.31,61.167 +303098,133.26,59.611 +303099,133.26,58.026 +303100,133.3,56.413 +303101,131.92,61.215 +303102,131.93,59.645 +303103,131.98,58.046 +303104,132.08,56.418 +303105,130.53,61.262 +303106,130.59,59.679 +303107,130.7,58.066 +303108,130.86,56.424 +303109,129.14,61.308 +303110,129.26,59.712 +303111,129.43,58.087 +303112,129.65,56.431 +303113,127.75,61.353 +303114,127.93,59.745 +303115,128.15,58.108 +303116,128.43,56.439 +303117,126.36,61.396 +303118,126.59,59.778 +303119,126.87,58.129 +303120,127.22,56.449 +303121,124.98,61.438 +303122,125.26,59.81 +303123,125.6,58.151 +303124,126,56.461 +303125,123.59,61.478 +303126,123.92,59.842 +303127,124.32,58.174 +303128,124.78,56.473 +303129,122.2,61.517 +303130,122.59,59.873 +303131,123.04,58.196 +303132,123.57,56.487 +303133,120.81,61.555 +303134,121.26,59.904 +303135,121.76,58.22 +303136,122.35,56.502 +303137,119.43,61.592 +303138,119.92,59.934 +303139,120.49,58.243 +303140,121.13,56.519 +303141,118.04,61.627 +303142,118.59,59.964 +303143,119.21,58.267 +303144,119.91,56.537 +303145,116.65,61.66 +303146,117.25,59.993 +303147,117.93,58.292 +303148,118.69,56.557 +303149,115.27,61.693 +303150,115.92,60.022 +303151,116.65,58.317 +303152,117.47,56.578 +303153,113.89,61.724 +303154,114.59,60.05 +303155,115.37,58.342 +303156,116.25,56.6 +303157,112.5,61.754 +303158,113.25,60.078 +303159,114.09,58.368 +303160,115.03,56.623 +303161,111.12,61.782 +303162,111.92,60.106 +303163,112.82,58.395 +303164,113.81,56.648 +303165,109.73,61.809 +303166,110.59,60.132 +303167,111.54,58.422 +303168,112.59,56.675 +303169,108.35,61.834 +303170,109.26,60.159 +303171,110.26,58.449 +303172,111.37,56.703 +303173,106.97,61.859 +303174,107.92,60.185 +303175,108.98,58.477 +303176,110.14,56.732 +303177,105.59,61.882 +303178,106.59,60.211 +303179,107.7,58.505 +303180,108.92,56.763 +303181,104.21,61.903 +303182,105.26,60.236 +303183,106.42,58.533 +303184,107.7,56.795 +303185,102.83,61.923 +303186,103.93,60.26 +303187,105.14,58.562 +303188,106.47,56.828 +303189,101.45,61.942 +303190,102.6,60.284 +303191,103.85,58.592 +303192,105.24,56.863 +303193,100.08,61.96 +303194,101.27,60.308 +303195,102.57,58.622 +303196,104.01,56.899 +303197,98.7,61.976 +303198,99.936,60.331 +303199,101.29,58.652 +303200,102.78,56.936 +303201,97.324,61.991 +303202,98.606,60.354 +303203,100.01,58.683 +303204,101.55,56.975 +303205,95.95,62.004 +303206,97.276,60.377 +303207,98.726,58.714 +303208,100.32,57.015 +303209,94.576,62.016 +303210,95.946,60.398 +303211,97.443,58.746 +303212,99.087,57.057 +303213,93.204,62.027 +303214,94.617,60.42 +303215,96.159,58.778 +303216,97.852,57.1 +303217,91.833,62.037 +303218,93.288,60.441 +303219,94.875,58.81 +303220,96.616,57.144 +303221,90.462,62.045 +303222,91.959,60.461 +303223,93.59,58.843 +303224,95.379,57.189 +303225,89.093,62.053 +303226,90.631,60.482 +303227,92.305,58.877 +303228,94.14,57.236 +303229,87.725,62.058 +303230,89.303,60.501 +303231,91.02,58.91 +303232,92.9,57.284 +303233,86.358,62.063 +303234,87.976,60.52 +303235,89.734,58.945 +303236,91.658,57.334 +303237,84.993,62.066 +303238,86.649,60.539 +303239,88.447,58.979 +303240,90.415,57.384 +303241,83.628,62.069 +303242,85.322,60.558 +303243,87.16,59.014 +303244,89.17,57.436 +303245,82.265,62.07 +303246,83.996,60.576 +303247,85.873,59.049 +303248,87.923,57.489 +303249,80.903,62.069 +303250,82.67,60.593 +303251,84.585,59.085 +303252,86.675,57.543 +303253,79.543,62.068 +303254,81.344,60.61 +303255,83.296,59.121 +303256,85.426,57.599 +303257,78.184,62.065 +303258,80.019,60.627 +303259,82.007,59.158 +303260,84.174,57.656 +303261,76.826,62.062 +303262,78.695,60.644 +303263,80.717,59.195 +303264,82.921,57.713 +303265,75.469,62.057 +303266,77.371,60.66 +303267,79.427,59.232 +303268,81.666,57.772 +303269,74.114,62.051 +303270,76.047,60.675 +303271,78.136,59.27 +303272,80.409,57.833 +303273,72.76,62.044 +303274,74.724,60.69 +303275,76.844,59.308 +303276,79.15,57.894 +303277,71.408,62.036 +303278,73.402,60.705 +303279,75.552,59.346 +303280,77.89,57.956 +303281,70.057,62.027 +303282,72.08,60.72 +303283,74.26,59.384 +303284,76.627,58.019 +303285,68.708,62.017 +303286,70.758,60.734 +303287,72.966,59.423 +303288,75.363,58.084 +303289,67.36,62.005 +303290,69.437,60.748 +303291,71.672,59.463 +303292,74.097,58.149 +303293,66.014,61.993 +303294,68.116,60.761 +303295,70.378,59.502 +303296,72.829,58.215 +303297,64.669,61.98 +303298,66.796,60.774 +303299,69.083,59.542 +303300,71.559,58.283 +303301,63.326,61.966 +303302,65.477,60.787 +303303,67.787,59.582 +303304,70.287,58.351 +303305,61.984,61.951 +303306,64.158,60.799 +303307,66.491,59.623 +303308,69.013,58.42 +303309,60.644,61.935 +303310,62.839,60.811 +303311,65.193,59.664 +303312,67.736,58.49 +303313,59.306,61.918 +303314,61.521,60.823 +303315,63.896,59.705 +303316,66.458,58.561 +303317,57.969,61.9 +303318,60.204,60.835 +303319,62.597,59.746 +303320,65.178,58.633 +303321,56.634,61.882 +303322,58.887,60.846 +303323,61.298,59.788 +303324,63.896,58.706 +303325,55.301,61.862 +303326,57.571,60.857 +303327,59.998,59.83 +303328,62.612,58.779 +303329,53.969,61.842 +303330,56.256,60.868 +303331,58.698,59.872 +303332,61.325,58.853 +303333,52.639,61.821 +303334,54.94,60.878 +303335,57.397,59.914 +303336,60.037,58.928 +303337,51.31,61.799 +303338,53.626,60.888 +303339,56.095,59.957 +303340,58.746,59.004 +303341,49.984,61.777 +303342,52.312,60.898 +303343,54.793,60 +303344,57.454,59.08 +303345,48.659,61.754 +303346,50.999,60.908 +303347,53.49,60.043 +303348,56.159,59.157 +303349,47.335,61.73 +303350,49.686,60.917 +303351,52.186,60.086 +303352,54.862,59.235 +303353,46.014,61.706 +303354,48.374,60.926 +303355,50.881,60.129 +303356,53.563,59.313 +303357,44.694,61.681 +303358,47.062,60.935 +303359,49.576,60.173 +303360,52.263,59.392 +303361,43.376,61.655 +303362,45.751,60.944 +303363,48.27,60.217 +303364,50.959,59.471 +303365,42.06,61.629 +303366,44.441,60.953 +303367,46.964,60.261 +303368,49.654,59.551 +303369,40.745,61.602 +303370,43.131,60.961 +303371,45.656,60.305 +303372,48.347,59.631 +303373,39.433,61.575 +303374,41.822,60.969 +303375,44.349,60.349 +303376,47.038,59.712 +303377,38.122,61.547 +303378,40.513,60.977 +303379,43.04,60.393 +303380,45.726,59.793 +303381,36.812,61.519 +303382,39.205,60.985 +303383,41.731,60.438 +303384,44.413,59.875 +303385,35.505,61.491 +303386,37.898,60.993 +303387,40.421,60.482 +303388,43.097,59.957 +303389,34.2,61.462 +303390,36.591,61.001 +303391,39.11,60.527 +303392,41.78,60.039 +303393,32.896,61.433 +303394,35.284,61.008 +303395,37.799,60.572 +303396,40.46,60.121 +303397,31.594,61.403 +303398,33.979,61.015 +303399,36.487,60.616 +303400,39.138,60.204 +303401,30.294,61.373 +303402,32.674,61.023 +303403,35.174,60.661 +303404,37.815,60.287 +303405,28.995,61.343 +303406,31.369,61.03 +303407,33.861,60.706 +303408,36.489,60.37 +303409,27.699,61.312 +303410,30.065,61.037 +303411,32.547,60.751 +303412,35.161,60.454 +303413,26.404,61.282 +303414,28.762,61.044 +303415,31.232,60.796 +303416,33.832,60.537 +303417,25.111,61.251 +303418,27.459,61.051 +303419,29.916,60.842 +303420,32.5,60.621 +303421,23.82,61.22 +303422,26.157,61.058 +303423,28.6,60.887 +303424,31.167,60.705 +303425,22.53,61.189 +303426,24.856,61.065 +303427,27.284,60.932 +303428,29.831,60.788 +303429,21.242,61.157 +303430,23.555,61.071 +303431,25.967,60.977 +303432,28.494,60.872 +303433,19.957,61.126 +303434,22.254,61.078 +303435,24.649,61.022 +303436,27.155,60.956 +303437,18.672,61.095 +303438,20.955,61.085 +303439,23.33,61.067 +303440,25.814,61.04 +303441,17.39,61.064 +303442,19.655,61.092 +303443,22.011,61.112 +303444,24.471,61.123 +303445,16.109,61.032 +303446,18.357,61.099 +303447,20.691,61.157 +303448,23.126,61.207 +303449,14.831,61.001 +303450,17.058,61.105 +303451,19.37,61.202 +303452,21.78,61.29 +303453,13.553,60.97 +303454,15.761,61.112 +303455,18.049,61.247 +303456,20.431,61.373 +303457,12.278,60.939 +303458,14.464,61.119 +303459,16.728,61.292 +303460,19.082,61.456 +303461,11.004,60.908 +303462,13.167,61.126 +303463,15.405,61.337 +303464,17.73,61.539 +303465,9.732,60.877 +303466,11.871,61.133 +303467,14.083,61.381 +303468,16.377,61.621 +303469,8.4616,60.847 +303470,10.576,61.14 +303471,12.759,61.426 +303472,15.022,61.703 +303473,7.1928,60.817 +303474,9.2809,61.147 +303475,11.435,61.47 +303476,13.665,61.785 +303477,5.9257,60.787 +303478,7.9865,61.154 +303479,10.111,61.515 +303480,12.307,61.867 +303481,4.6602,60.757 +303482,6.6926,61.161 +303483,8.7854,61.559 +303484,10.947,61.948 +303485,3.3963,60.728 +303486,5.3992,61.169 +303487,7.4598,61.603 +303488,9.5862,62.029 +303489,2.134,60.699 +303490,4.1063,61.176 +303491,6.1336,61.647 +303492,8.2235,62.109 +303493,0.87321,60.67 +303494,2.8139,61.184 +303495,4.8068,61.691 +303496,6.8593,62.189 +303497,359.61,60.642 +303498,1.5219,61.192 +303499,3.4796,61.734 +303500,5.4938,62.268 +303501,358.36,60.614 +303502,0.23047,61.2 +303503,2.1518,61.778 +303504,4.1268,62.347 +303505,357.1,60.587 +303506,358.94,61.208 +303507,0.82355,61.821 +303508,2.7585,62.425 +303509,355.85,60.56 +303510,357.65,61.216 +303511,359.49,61.864 +303512,1.3889,62.502 +303513,354.59,60.534 +303514,356.36,61.224 +303515,358.17,61.907 +303516,0.017953,62.579 +303517,353.34,60.508 +303518,355.07,61.233 +303519,356.84,61.949 +303520,358.65,62.656 +303521,352.09,60.483 +303522,353.78,61.242 +303523,355.51,61.992 +303524,357.27,62.731 +303525,350.84,60.459 +303526,352.49,61.251 +303527,354.18,62.034 +303528,355.9,62.806 +303529,349.59,60.435 +303530,351.2,61.26 +303531,352.84,62.076 +303532,354.52,62.881 +303533,348.35,60.412 +303534,349.91,61.269 +303535,351.51,62.117 +303536,353.15,62.954 +303537,347.1,60.39 +303538,348.63,61.279 +303539,350.18,62.158 +303540,351.77,63.027 +303541,345.86,60.368 +303542,347.34,61.289 +303543,348.85,62.2 +303544,350.39,63.099 +303545,344.62,60.347 +303546,346.05,61.299 +303547,347.52,62.24 +303548,349.01,63.171 +303549,343.37,60.327 +303550,344.77,61.309 +303551,346.18,62.281 +303552,347.63,63.241 +303553,342.13,60.307 +303554,343.48,61.32 +303555,344.85,62.321 +303556,346.25,63.31 +303557,340.89,60.289 +303558,342.19,61.33 +303559,343.52,62.361 +303560,344.86,63.379 +303561,339.66,60.271 +303562,340.91,61.342 +303563,342.18,62.401 +303564,343.48,63.447 +303565,338.42,60.254 +303566,339.62,61.353 +303567,340.85,62.44 +303568,342.1,63.514 +303569,337.18,60.238 +303570,338.34,61.365 +303571,339.51,62.479 +303572,340.71,63.58 +303573,335.95,60.223 +303574,337.05,61.377 +303575,338.18,62.518 +303576,339.32,63.645 +303577,334.71,60.209 +303578,335.77,61.389 +303579,336.84,62.556 +303580,337.94,63.709 +303581,333.48,60.196 +303582,334.48,61.402 +303583,335.51,62.594 +303584,336.55,63.772 +303585,332.25,60.183 +303586,333.2,61.414 +303587,334.17,62.632 +303588,335.16,63.834 +303589,331.02,60.172 +303590,331.92,61.428 +303591,332.83,62.669 +303592,333.77,63.895 +303593,329.79,60.162 +303594,330.63,61.441 +303595,331.5,62.706 +303596,332.38,63.955 +303597,328.56,60.153 +303598,329.35,61.455 +303599,330.16,62.743 +303600,331,64.013 +303601,327.33,60.145 +303602,328.07,61.469 +303603,328.83,62.779 +303604,329.61,64.071 +303605,326.1,60.138 +303606,326.78,61.484 +303607,327.49,62.815 +303608,328.22,64.128 +303609,324.87,60.132 +303610,325.5,61.499 +303611,326.15,62.85 +303612,326.82,64.183 +303613,323.64,60.127 +303614,324.22,61.514 +303615,324.81,62.885 +303616,325.43,64.238 +303617,322.42,60.123 +303618,322.93,61.53 +303619,323.48,62.92 +303620,324.04,64.291 +303621,321.19,60.12 +303622,321.65,61.546 +303623,322.14,62.954 +303624,322.65,64.343 +303625,319.97,60.119 +303626,320.37,61.562 +303627,320.8,62.988 +303628,321.26,64.394 +303629,318.74,60.119 +303630,319.09,61.579 +303631,319.46,63.021 +303632,319.87,64.444 +303633,317.52,60.12 +303634,317.81,61.596 +303635,318.13,63.054 +303636,318.47,64.493 +303637,316.29,60.122 +303638,316.52,61.614 +303639,316.79,63.087 +303640,317.08,64.54 +303641,315.07,60.125 +303642,315.24,61.632 +303643,315.45,63.119 +303644,315.69,64.586 +303645,313.84,60.129 +303646,313.96,61.65 +303647,314.11,63.151 +303648,314.3,64.631 +303649,312.62,60.135 +303650,312.68,61.669 +303651,312.77,63.183 +303652,312.9,64.675 +303653,311.39,60.142 +303654,311.39,61.688 +303655,311.44,63.213 +303656,311.51,64.717 +303657,310.17,60.15 +303658,310.11,61.708 +303659,310.1,63.244 +303660,310.12,64.759 +303661,308.95,60.16 +303662,308.83,61.728 +303663,308.76,63.274 +303664,308.73,64.799 +303665,307.72,60.171 +303666,307.55,61.748 +303667,307.42,63.304 +303668,307.33,64.837 +303669,306.5,60.183 +303670,306.27,61.769 +303671,306.08,63.333 +303672,305.94,64.875 +303673,305.27,60.196 +303674,304.98,61.79 +303675,304.74,63.362 +303676,304.55,64.911 +303677,304.05,60.211 +303678,303.7,61.812 +303679,303.41,63.39 +303680,303.16,64.946 +303681,302.83,60.226 +303682,302.42,61.834 +303683,302.07,63.418 +303684,301.77,64.98 +303685,301.6,60.244 +303686,301.14,61.856 +303687,300.73,63.446 +303688,300.38,65.012 +303689,300.38,60.262 +303690,299.85,61.879 +303691,299.39,63.473 +303692,298.99,65.043 +303693,299.15,60.282 +303694,298.57,61.902 +303695,298.05,63.499 +303696,297.6,65.073 +303697,297.93,60.303 +303698,297.29,61.926 +303699,296.72,63.525 +303700,296.21,65.101 +303701,296.7,60.325 +303702,296,61.95 +303703,295.38,63.551 +303704,294.82,65.129 +303705,295.47,60.349 +303706,294.72,61.974 +303707,294.04,63.576 +303708,293.43,65.154 +303709,294.25,60.374 +303710,293.44,61.999 +303711,292.71,63.601 +303712,292.04,65.179 +303713,293.02,60.4 +303714,292.15,62.025 +303715,291.37,63.625 +303716,290.65,65.202 +303717,291.79,60.428 +303718,290.87,62.05 +303719,290.03,63.649 +303720,289.27,65.225 +303721,290.56,60.457 +303722,289.58,62.077 +303723,288.69,63.673 +303724,287.88,65.245 +303725,289.33,60.487 +303726,288.3,62.103 +303727,287.36,63.696 +303728,286.5,65.265 +303729,288.1,60.518 +303730,287.02,62.13 +303731,286.02,63.718 +303732,285.11,65.283 +303733,286.87,60.551 +303734,285.73,62.158 +303735,284.69,63.741 +303736,283.73,65.3 +303737,285.64,60.585 +303738,284.44,62.185 +303739,283.35,63.762 +303740,282.34,65.316 +303741,284.4,60.62 +303742,283.16,62.214 +303743,282.02,63.784 +303744,280.96,65.33 +303745,283.17,60.657 +303746,281.87,62.242 +303747,280.68,63.805 +303748,279.58,65.343 +303749,281.93,60.695 +303750,280.59,62.271 +303751,279.35,63.825 +303752,278.2,65.355 +303753,280.7,60.734 +303754,279.3,62.301 +303755,278.01,63.845 +303756,276.82,65.366 +303757,279.46,60.774 +303758,278.01,62.331 +303759,276.68,63.865 +303760,275.44,65.376 +303761,278.22,60.816 +303762,276.72,62.361 +303763,275.34,63.884 +303764,274.06,65.384 +303765,276.98,60.859 +303766,275.44,62.392 +303767,274.01,63.902 +303768,272.69,65.391 +303769,275.74,60.903 +303770,274.15,62.423 +303771,272.68,63.921 +303772,271.31,65.397 +303773,274.5,60.948 +303774,272.86,62.454 +303775,271.34,63.939 +303776,269.93,65.401 +303777,273.26,60.994 +303778,271.57,62.486 +303779,270.01,63.956 +303780,268.56,65.405 +303781,272.01,61.042 +303782,270.28,62.518 +303783,268.68,63.973 +303784,267.19,65.407 +303785,270.77,61.09 +303786,268.99,62.551 +303787,267.35,63.99 +303788,265.82,65.408 +303789,269.52,61.14 +303790,267.7,62.584 +303791,266.01,64.006 +303792,264.45,65.408 +303793,268.27,61.191 +303794,266.41,62.617 +303795,264.68,64.022 +303796,263.08,65.407 +303797,267.02,61.243 +303798,265.12,62.651 +303799,263.35,64.038 +303800,261.71,65.405 +303801,265.77,61.297 +303802,263.83,62.685 +303803,262.02,64.053 +303804,260.34,65.402 +303805,264.52,61.351 +303806,262.53,62.719 +303807,260.69,64.068 +303808,258.98,65.397 +303809,263.26,61.406 +303810,261.24,62.754 +303811,259.36,64.082 +303812,257.61,65.392 +303813,262.01,61.463 +303814,259.95,62.789 +303815,258.03,64.096 +303816,256.25,65.385 +303817,260.75,61.52 +303818,258.65,62.824 +303819,256.71,64.11 +303820,254.89,65.378 +303821,259.49,61.579 +303822,257.36,62.86 +303823,255.38,64.123 +303824,253.53,65.369 +303825,258.23,61.638 +303826,256.06,62.896 +303827,254.05,64.136 +303828,252.17,65.359 +303829,256.96,61.699 +303830,254.77,62.932 +303831,252.72,64.149 +303832,250.81,65.349 +303833,255.7,61.76 +303834,253.47,62.969 +303835,251.4,64.161 +303836,249.46,65.337 +303837,254.43,61.822 +303838,252.17,63.006 +303839,250.07,64.173 +303840,248.1,65.325 +303841,253.16,61.886 +303842,250.88,63.043 +303843,248.75,64.185 +303844,246.75,65.311 +303845,251.89,61.95 +303846,249.58,63.08 +303847,247.42,64.196 +303848,245.4,65.297 +303849,250.62,62.015 +303850,248.28,63.118 +303851,246.1,64.207 +303852,244.05,65.282 +303853,249.35,62.081 +303854,246.98,63.156 +303855,244.77,64.218 +303856,242.7,65.266 +303857,248.07,62.147 +303858,245.68,63.195 +303859,243.45,64.229 +303860,241.35,65.249 +303861,246.79,62.215 +303862,244.38,63.233 +303863,242.13,64.239 +303864,240.01,65.231 +303865,245.51,62.283 +303866,243.08,63.272 +303867,240.8,64.249 +303868,238.66,65.213 +303869,244.23,62.352 +303870,241.78,63.311 +303871,239.48,64.258 +303872,237.32,65.193 +303873,242.95,62.421 +303874,240.48,63.35 +303875,238.16,64.268 +303876,235.98,65.173 +303877,241.66,62.492 +303878,239.17,63.39 +303879,236.84,64.277 +303880,234.64,65.153 +303881,240.38,62.563 +303882,237.87,63.43 +303883,235.52,64.286 +303884,233.3,65.131 +303885,239.09,62.634 +303886,236.56,63.47 +303887,234.2,64.294 +303888,231.97,65.109 +303889,237.8,62.706 +303890,235.26,63.51 +303891,232.88,64.303 +303892,230.63,65.086 +303893,236.5,62.779 +303894,233.95,63.55 +303895,231.56,64.311 +303896,229.3,65.063 +303897,235.21,62.853 +303898,232.65,63.59 +303899,230.24,64.319 +303900,227.97,65.039 +303901,233.91,62.927 +303902,231.34,63.631 +303903,228.93,64.327 +303904,226.64,65.014 +303905,232.61,63.001 +303906,230.03,63.672 +303907,227.61,64.335 +303908,225.32,64.989 +303909,231.31,63.076 +303910,228.73,63.713 +303911,226.29,64.342 +303912,223.99,64.963 +303913,230.01,63.151 +303914,227.42,63.754 +303915,224.98,64.349 +303916,222.67,64.937 +303917,228.7,63.227 +303918,226.11,63.795 +303919,223.66,64.356 +303920,221.34,64.91 +303921,227.4,63.303 +303922,224.8,63.837 +303923,222.35,64.363 +303924,220.02,64.883 +303925,226.09,63.38 +303926,223.49,63.878 +303927,221.03,64.37 +303928,218.71,64.856 +303929,224.78,63.457 +303930,222.18,63.92 +303931,219.72,64.377 +303932,217.39,64.828 +303933,223.46,63.534 +303934,220.86,63.961 +303935,218.41,64.383 +303936,216.07,64.8 +303937,222.15,63.611 +303938,219.55,64.003 +303939,217.1,64.39 +303940,214.76,64.771 +303941,220.83,63.689 +303942,218.24,64.045 +303943,215.78,64.396 +303944,213.45,64.742 +303945,219.51,63.767 +303946,216.92,64.087 +303947,214.47,64.402 +303948,212.14,64.713 +303949,218.19,63.845 +303950,215.61,64.129 +303951,213.16,64.408 +303952,210.83,64.683 +303953,216.87,63.923 +303954,214.29,64.171 +303955,211.85,64.414 +303956,209.52,64.654 +303957,215.54,64.001 +303958,212.98,64.213 +303959,210.54,64.42 +303960,208.22,64.624 +303961,214.21,64.08 +303962,211.66,64.255 +303963,209.24,64.426 +303964,206.92,64.594 +303965,212.88,64.158 +303966,210.34,64.297 +303967,207.93,64.432 +303968,205.62,64.564 +303969,211.55,64.237 +303970,209.03,64.339 +303971,206.62,64.438 +303972,204.32,64.533 +303973,210.22,64.315 +303974,207.71,64.382 +303975,205.31,64.444 +303976,203.02,64.503 +303977,208.89,64.394 +303978,206.39,64.424 +303979,204.01,64.45 +303980,201.72,64.472 +303981,207.55,64.473 +303982,205.07,64.466 +303983,202.7,64.455 +303984,200.43,64.442 +303985,206.21,64.551 +303986,203.75,64.508 +303987,201.4,64.461 +303988,199.14,64.412 +303989,204.87,64.629 +303990,202.43,64.55 +303991,200.09,64.467 +303992,197.85,64.381 +303993,203.53,64.707 +303994,201.11,64.592 +303995,198.79,64.473 +303996,196.56,64.351 +303997,202.18,64.785 +303998,199.78,64.634 +303999,197.48,64.478 +304000,195.27,64.321 +304001,200.84,64.863 +304002,198.46,64.676 +304003,196.18,64.484 +304004,193.99,64.291 +304005,199.49,64.941 +304006,197.14,64.717 +304007,194.88,64.49 +304008,192.7,64.261 +304009,198.14,65.018 +304010,195.81,64.759 +304011,193.58,64.496 +304012,191.42,64.231 +304013,196.79,65.095 +304014,194.49,64.801 +304015,192.28,64.502 +304016,190.14,64.201 +304017,195.44,65.172 +304018,193.16,64.842 +304019,190.98,64.508 +304020,188.86,64.172 +304021,194.09,65.248 +304022,191.84,64.883 +304023,189.68,64.514 +304024,187.58,64.143 +304025,192.73,65.325 +304026,190.51,64.925 +304027,188.38,64.521 +304028,186.31,64.114 +304029,191.37,65.4 +304030,189.19,64.966 +304031,187.08,64.527 +304032,185.03,64.086 +304033,190.01,65.475 +304034,187.86,65.007 +304035,185.78,64.534 +304036,183.76,64.058 +304037,188.65,65.55 +304038,186.53,65.048 +304039,184.48,64.54 +304040,182.49,64.03 +304041,187.29,65.625 +304042,185.2,65.088 +304043,183.18,64.547 +304044,181.22,64.003 +304045,185.93,65.698 +304046,183.87,65.129 +304047,181.89,64.554 +304048,179.95,63.976 +304049,184.56,65.772 +304050,182.54,65.169 +304051,180.59,64.561 +304052,178.69,63.95 +304053,183.2,65.844 +304054,181.21,65.209 +304055,179.29,64.568 +304056,177.42,63.924 +304057,181.83,65.917 +304058,179.88,65.249 +304059,178,64.576 +304060,176.16,63.898 +304061,180.46,65.988 +304062,178.55,65.289 +304063,176.7,64.583 +304064,174.9,63.874 +304065,179.09,66.059 +304066,177.22,65.328 +304067,175.41,64.591 +304068,173.64,63.849 +304069,177.72,66.129 +304070,175.89,65.367 +304071,174.11,64.599 +304072,172.38,63.826 +304073,176.34,66.199 +304074,174.56,65.406 +304075,172.82,64.607 +304076,171.12,63.803 +304077,174.97,66.268 +304078,173.22,65.445 +304079,171.52,64.615 +304080,169.87,63.78 +304081,173.59,66.336 +304082,171.89,65.484 +304083,170.23,64.624 +304084,168.61,63.759 +304085,172.22,66.404 +304086,170.56,65.522 +304087,168.94,64.633 +304088,167.36,63.738 +304089,170.84,66.47 +304090,169.22,65.56 +304091,167.65,64.642 +304092,166.11,63.717 +304093,169.46,66.536 +304094,167.89,65.598 +304095,166.35,64.651 +304096,164.86,63.698 +304097,168.08,66.601 +304098,166.55,65.635 +304099,165.06,64.66 +304100,163.61,63.679 +304101,166.7,66.666 +304102,165.22,65.672 +304103,163.77,64.67 +304104,162.36,63.661 +304105,165.32,66.729 +304106,163.88,65.709 +304107,162.48,64.68 +304108,161.11,63.644 +304109,163.94,66.792 +304110,162.55,65.746 +304111,161.19,64.691 +304112,159.86,63.628 +304113,162.55,66.853 +304114,161.21,65.782 +304115,159.9,64.701 +304116,158.62,63.612 +304117,161.17,66.914 +304118,159.87,65.818 +304119,158.61,64.712 +304120,157.38,63.598 +304121,159.78,66.974 +304122,158.54,65.854 +304123,157.32,64.723 +304124,156.13,63.584 +304125,158.4,67.033 +304126,157.2,65.889 +304127,156.03,64.735 +304128,154.89,63.571 +304129,157.01,67.091 +304130,155.86,65.924 +304131,154.74,64.747 +304132,153.65,63.559 +304133,155.62,67.148 +304134,154.52,65.959 +304135,153.45,64.759 +304136,152.41,63.549 +304137,154.23,67.203 +304138,153.19,65.993 +304139,152.17,64.771 +304140,151.17,63.539 +304141,152.84,67.258 +304142,151.85,66.027 +304143,150.88,64.784 +304144,149.93,63.53 +304145,151.45,67.312 +304146,150.51,66.061 +304147,149.59,64.797 +304148,148.69,63.522 +304149,150.06,67.365 +304150,149.17,66.094 +304151,148.3,64.81 +304152,147.46,63.515 +304153,148.67,67.417 +304154,147.83,66.127 +304155,147.01,64.824 +304156,146.22,63.51 +304157,147.28,67.467 +304158,146.49,66.159 +304159,145.73,64.838 +304160,144.98,63.505 +304161,145.89,67.517 +304162,145.15,66.192 +304163,144.44,64.853 +304164,143.75,63.501 +304165,144.5,67.566 +304166,143.81,66.223 +304167,143.15,64.867 +304168,142.52,63.499 +304169,143.11,67.613 +304170,142.47,66.255 +304171,141.87,64.883 +304172,141.28,63.497 +304173,141.71,67.659 +304174,141.13,66.286 +304175,140.58,64.898 +304176,140.05,63.497 +304177,140.32,67.704 +304178,139.79,66.316 +304179,139.29,64.914 +304180,138.82,63.498 +304181,138.93,67.748 +304182,138.45,66.347 +304183,138.01,64.93 +304184,137.58,63.5 +304185,137.54,67.791 +304186,137.11,66.377 +304187,136.72,64.947 +304188,136.35,63.503 +304189,136.14,67.833 +304190,135.77,66.406 +304191,135.43,64.964 +304192,135.12,63.507 +304193,134.75,67.873 +304194,134.43,66.435 +304195,134.15,64.981 +304196,133.89,63.513 +304197,133.35,67.913 +304198,133.09,66.464 +304199,132.86,64.999 +304200,132.66,63.52 +304201,131.96,67.951 +304202,131.75,66.492 +304203,131.57,65.017 +304204,131.43,63.528 +304205,130.57,67.988 +304206,130.41,66.52 +304207,130.29,65.036 +304208,130.2,63.537 +304209,129.17,68.023 +304210,129.07,66.547 +304211,129,65.055 +304212,128.97,63.547 +304213,127.78,68.058 +304214,127.73,66.574 +304215,127.72,65.074 +304216,127.74,63.559 +304217,126.38,68.091 +304218,126.39,66.601 +304219,126.43,65.094 +304220,126.51,63.571 +304221,124.99,68.123 +304222,125.05,66.627 +304223,125.14,65.114 +304224,125.28,63.585 +304225,123.6,68.154 +304226,123.71,66.653 +304227,123.86,65.135 +304228,124.05,63.601 +304229,122.2,68.184 +304230,122.37,66.678 +304231,122.57,65.155 +304232,122.82,63.617 +304233,120.81,68.212 +304234,121.03,66.703 +304235,121.28,65.177 +304236,121.59,63.635 +304237,119.42,68.239 +304238,119.69,66.727 +304239,120,65.199 +304240,120.36,63.654 +304241,118.03,68.265 +304242,118.35,66.751 +304243,118.71,65.221 +304244,119.13,63.674 +304245,116.63,68.29 +304246,117.01,66.775 +304247,117.42,65.243 +304248,117.89,63.696 +304249,115.24,68.313 +304250,115.66,66.798 +304251,116.14,65.266 +304252,116.66,63.718 +304253,113.85,68.335 +304254,114.32,66.821 +304255,114.85,65.29 +304256,115.43,63.742 +304257,112.46,68.356 +304258,112.98,66.843 +304259,113.56,65.313 +304260,114.2,63.768 +304261,111.07,68.376 +304262,111.65,66.865 +304263,112.28,65.338 +304264,112.97,63.794 +304265,109.68,68.395 +304266,110.31,66.887 +304267,110.99,65.362 +304268,111.73,63.822 +304269,108.29,68.412 +304270,108.97,66.908 +304271,109.7,65.387 +304272,110.5,63.851 +304273,106.9,68.428 +304274,107.63,66.929 +304275,108.41,65.413 +304276,109.27,63.881 +304277,105.51,68.443 +304278,106.29,66.949 +304279,107.12,65.438 +304280,108.03,63.913 +304281,104.13,68.457 +304282,104.95,66.969 +304283,105.84,65.465 +304284,106.8,63.945 +304285,102.74,68.469 +304286,103.61,66.988 +304287,104.55,65.491 +304288,105.56,63.979 +304289,101.35,68.48 +304290,102.27,67.007 +304291,103.26,65.518 +304292,104.32,64.014 +304293,99.97,68.49 +304294,100.93,67.026 +304295,101.97,65.546 +304296,103.09,64.051 +304297,98.585,68.499 +304298,99.595,67.044 +304299,100.68,65.573 +304300,101.85,64.088 +304301,97.202,68.507 +304302,98.258,67.062 +304303,99.39,65.601 +304304,100.61,64.127 +304305,95.819,68.514 +304306,96.92,67.079 +304307,98.1,65.63 +304308,99.367,64.167 +304309,94.437,68.519 +304310,95.583,67.096 +304311,96.81,65.659 +304312,98.126,64.208 +304313,93.057,68.523 +304314,94.246,67.113 +304315,95.519,65.688 +304316,96.884,64.25 +304317,91.677,68.526 +304318,92.91,67.129 +304319,94.228,65.718 +304320,95.64,64.293 +304321,90.298,68.528 +304322,91.574,67.145 +304323,92.936,65.748 +304324,94.396,64.338 +304325,88.92,68.529 +304326,90.238,67.161 +304327,91.644,65.778 +304328,93.15,64.384 +304329,87.543,68.529 +304330,88.902,67.176 +304331,90.352,65.809 +304332,91.904,64.43 +304333,86.167,68.528 +304334,87.567,67.19 +304335,89.059,65.84 +304336,90.656,64.478 +304337,84.793,68.525 +304338,86.232,67.205 +304339,87.766,65.872 +304340,89.406,64.527 +304341,83.419,68.522 +304342,84.898,67.219 +304343,86.473,65.903 +304344,88.156,64.577 +304345,82.047,68.517 +304346,83.564,67.232 +304347,85.179,65.936 +304348,86.904,64.628 +304349,80.675,68.512 +304350,82.23,67.246 +304351,83.885,65.968 +304352,85.651,64.68 +304353,79.305,68.505 +304354,80.897,67.258 +304355,82.59,66.001 +304356,84.397,64.733 +304357,77.937,68.497 +304358,79.564,67.271 +304359,81.294,66.034 +304360,83.141,64.788 +304361,76.569,68.489 +304362,78.232,67.283 +304363,79.999,66.067 +304364,81.884,64.843 +304365,75.203,68.479 +304366,76.9,67.295 +304367,78.702,66.101 +304368,80.625,64.899 +304369,73.838,68.469 +304370,75.568,67.307 +304371,77.406,66.135 +304372,79.364,64.956 +304373,72.474,68.457 +304374,74.237,67.318 +304375,76.108,66.17 +304376,78.103,65.014 +304377,71.112,68.445 +304378,72.906,67.329 +304379,74.811,66.204 +304380,76.839,65.072 +304381,69.751,68.432 +304382,71.576,67.34 +304383,73.512,66.239 +304384,75.574,65.132 +304385,68.391,68.417 +304386,70.247,67.35 +304387,72.214,66.275 +304388,74.308,65.193 +304389,67.033,68.402 +304390,68.917,67.36 +304391,70.914,66.31 +304392,73.04,65.254 +304393,65.676,68.387 +304394,67.589,67.37 +304395,69.614,66.346 +304396,71.77,65.317 +304397,64.321,68.37 +304398,66.26,67.379 +304399,68.314,66.382 +304400,70.498,65.38 +304401,62.967,68.352 +304402,64.933,67.388 +304403,67.013,66.418 +304404,69.225,65.443 +304405,61.615,68.334 +304406,63.605,67.397 +304407,65.711,66.455 +304408,67.95,65.508 +304409,60.264,68.315 +304410,62.279,67.406 +304411,64.409,66.492 +304412,66.673,65.573 +304413,58.915,68.295 +304414,60.952,67.414 +304415,63.107,66.529 +304416,65.395,65.639 +304417,57.567,68.275 +304418,59.627,67.422 +304419,61.803,66.566 +304420,64.114,65.706 +304421,56.221,68.254 +304422,58.302,67.43 +304423,60.499,66.603 +304424,62.832,65.773 +304425,54.876,68.232 +304426,56.977,67.438 +304427,59.195,66.641 +304428,61.548,65.841 +304429,53.533,68.209 +304430,55.653,67.446 +304431,57.89,66.679 +304432,60.262,65.91 +304433,52.192,68.186 +304434,54.329,67.453 +304435,56.584,66.717 +304436,58.975,65.979 +304437,50.852,68.163 +304438,53.006,67.46 +304439,55.278,66.755 +304440,57.685,66.049 +304441,49.513,68.138 +304442,51.684,67.467 +304443,53.971,66.794 +304444,56.394,66.119 +304445,48.177,68.113 +304446,50.362,67.474 +304447,52.664,66.832 +304448,55.101,66.19 +304449,46.842,68.088 +304450,49.04,67.48 +304451,51.356,66.871 +304452,53.805,66.261 +304453,45.509,68.062 +304454,47.72,67.486 +304455,50.047,66.91 +304456,52.508,66.333 +304457,44.177,68.036 +304458,46.399,67.493 +304459,48.738,66.949 +304460,51.209,66.405 +304461,42.847,68.009 +304462,45.08,67.499 +304463,47.428,66.988 +304464,49.908,66.478 +304465,41.519,67.982 +304466,43.761,67.505 +304467,46.117,67.027 +304468,48.606,66.551 +304469,40.192,67.955 +304470,42.442,67.51 +304471,44.806,67.067 +304472,47.301,66.624 +304473,38.867,67.927 +304474,41.124,67.516 +304475,43.494,67.106 +304476,45.994,66.697 +304477,37.544,67.898 +304478,39.807,67.522 +304479,42.181,67.146 +304480,44.685,66.771 +304481,36.223,67.87 +304482,38.49,67.527 +304483,40.868,67.185 +304484,43.375,66.845 +304485,34.903,67.841 +304486,37.174,67.532 +304487,39.555,67.225 +304488,42.062,66.92 +304489,33.585,67.812 +304490,35.858,67.538 +304491,38.24,67.265 +304492,40.748,66.994 +304493,32.268,67.783 +304494,34.543,67.543 +304495,36.925,67.305 +304496,39.432,67.069 +304497,30.954,67.753 +304498,33.229,67.548 +304499,35.609,67.345 +304500,38.113,67.144 +304501,29.641,67.723 +304502,31.915,67.553 +304503,34.293,67.384 +304504,36.793,67.219 +304505,28.33,67.694 +304506,30.601,67.558 +304507,32.976,67.424 +304508,35.471,67.294 +304509,27.02,67.664 +304510,29.289,67.563 +304511,31.659,67.464 +304512,34.147,67.369 +304513,25.713,67.634 +304514,27.977,67.568 +304515,30.341,67.504 +304516,32.821,67.444 +304517,24.407,67.604 +304518,26.665,67.573 +304519,29.022,67.544 +304520,31.493,67.519 +304521,23.102,67.573 +304522,25.354,67.577 +304523,27.702,67.584 +304524,30.164,67.594 +304525,21.8,67.543 +304526,24.043,67.582 +304527,26.382,67.624 +304528,28.832,67.669 +304529,20.499,67.513 +304530,22.734,67.587 +304531,25.062,67.664 +304532,27.499,67.744 +304533,19.2,67.483 +304534,21.424,67.592 +304535,23.741,67.704 +304536,26.163,67.819 +304537,17.902,67.453 +304538,20.115,67.597 +304539,22.419,67.744 +304540,24.826,67.894 +304541,16.606,67.423 +304542,18.807,67.602 +304543,21.096,67.784 +304544,23.488,67.968 +304545,15.312,67.394 +304546,17.5,67.607 +304547,19.773,67.824 +304548,22.147,68.043 +304549,14.02,67.364 +304550,16.193,67.612 +304551,18.45,67.863 +304552,20.804,68.117 +304553,12.729,67.335 +304554,14.886,67.617 +304555,17.125,67.903 +304556,19.46,68.191 +304557,11.44,67.305 +304558,13.58,67.623 +304559,15.8,67.942 +304560,18.114,68.264 +304561,10.153,67.277 +304562,12.275,67.628 +304563,14.475,67.982 +304564,16.767,68.337 +304565,8.8668,67.248 +304566,10.97,67.633 +304567,13.149,68.021 +304568,15.417,68.41 +304569,7.5826,67.22 +304570,9.6653,67.639 +304571,11.823,68.06 +304572,14.066,68.483 +304573,6.3,67.192 +304574,8.3614,67.644 +304575,10.495,68.099 +304576,12.714,68.555 +304577,5.019,67.164 +304578,7.0581,67.65 +304579,9.1678,68.138 +304580,11.359,68.627 +304581,3.7396,67.137 +304582,5.7552,67.656 +304583,7.8396,68.177 +304584,10.003,68.698 +304585,2.4617,67.11 +304586,4.4529,67.662 +304587,6.5108,68.215 +304588,8.646,68.769 +304589,1.1854,67.084 +304590,3.1511,67.668 +304591,5.1816,68.254 +304592,7.2869,68.84 +304593,359.91,67.058 +304594,1.8498,67.674 +304595,3.8518,68.292 +304596,5.9264,68.91 +304597,358.64,67.032 +304598,0.54894,67.681 +304599,2.5214,68.33 +304600,4.5643,68.979 +304601,357.37,67.007 +304602,359.25,67.687 +304603,1.1906,68.368 +304604,3.2008,69.048 +304605,356.1,66.983 +304606,357.95,67.694 +304607,359.86,68.405 +304608,1.8358,69.116 +304609,354.83,66.959 +304610,356.65,67.701 +304611,358.53,68.443 +304612,0.46943,69.184 +304613,353.56,66.936 +304614,355.35,67.708 +304615,357.2,68.48 +304616,359.1,69.251 +304617,352.29,66.914 +304618,354.05,67.716 +304619,355.86,68.517 +304620,357.73,69.317 +304621,351.03,66.892 +304622,352.75,67.723 +304623,354.53,68.554 +304624,356.36,69.383 +304625,349.77,66.87 +304626,351.46,67.731 +304627,353.2,68.591 +304628,354.99,69.448 +304629,348.5,66.85 +304630,350.16,67.739 +304631,351.86,68.627 +304632,353.62,69.512 +304633,347.24,66.83 +304634,348.86,67.747 +304635,350.53,68.663 +304636,352.24,69.575 +304637,345.98,66.811 +304638,347.57,67.756 +304639,349.19,68.699 +304640,350.87,69.638 +304641,344.73,66.793 +304642,346.27,67.765 +304643,347.86,68.734 +304644,349.49,69.7 +304645,343.47,66.775 +304646,344.97,67.774 +304647,346.52,68.769 +304648,348.11,69.761 +304649,342.21,66.758 +304650,343.68,67.783 +304651,345.18,68.804 +304652,346.73,69.821 +304653,340.96,66.743 +304654,342.38,67.793 +304655,343.85,68.839 +304656,345.35,69.881 +304657,339.7,66.728 +304658,341.09,67.802 +304659,342.51,68.874 +304660,343.97,69.939 +304661,338.45,66.713 +304662,339.8,67.813 +304663,341.17,68.908 +304664,342.59,69.997 +304665,337.2,66.7 +304666,338.5,67.823 +304667,339.84,68.941 +304668,341.21,70.054 +304669,335.95,66.688 +304670,337.21,67.834 +304671,338.5,68.975 +304672,339.83,70.11 +304673,334.7,66.676 +304674,335.91,67.845 +304675,337.16,69.008 +304676,338.44,70.165 +304677,333.45,66.666 +304678,334.62,67.856 +304679,335.82,69.041 +304680,337.06,70.219 +304681,332.21,66.656 +304682,333.33,67.868 +304683,334.48,69.073 +304684,335.67,70.272 +304685,330.96,66.648 +304686,332.04,67.88 +304687,333.14,69.106 +304688,334.28,70.324 +304689,329.72,66.64 +304690,330.74,67.892 +304691,331.8,69.137 +304692,332.89,70.375 +304693,328.47,66.634 +304694,329.45,67.905 +304695,330.46,69.169 +304696,331.51,70.425 +304697,327.23,66.628 +304698,328.16,67.918 +304699,329.12,69.2 +304700,330.12,70.474 +304701,325.98,66.624 +304702,326.87,67.931 +304703,327.78,69.231 +304704,328.73,70.522 +304705,324.74,66.62 +304706,325.58,67.945 +304707,326.44,69.261 +304708,327.34,70.568 +304709,323.5,66.618 +304710,324.29,67.959 +304711,325.1,69.291 +304712,325.95,70.614 +304713,322.26,66.617 +304714,323,67.973 +304715,323.76,69.321 +304716,324.55,70.659 +304717,321.02,66.617 +304718,321.71,67.988 +304719,322.42,69.35 +304720,323.16,70.703 +304721,319.78,66.618 +304722,320.42,68.003 +304723,321.08,69.379 +304724,321.77,70.745 +304725,318.54,66.62 +304726,319.13,68.019 +304727,319.74,69.408 +304728,320.38,70.787 +304729,317.3,66.623 +304730,317.84,68.034 +304731,318.4,69.436 +304732,318.99,70.827 +304733,316.07,66.628 +304734,316.55,68.051 +304735,317.05,69.464 +304736,317.59,70.866 +304737,314.83,66.633 +304738,315.26,68.067 +304739,315.71,69.491 +304740,316.2,70.904 +304741,313.59,66.64 +304742,313.97,68.084 +304743,314.37,69.518 +304744,314.8,70.941 +304745,312.35,66.648 +304746,312.68,68.102 +304747,313.03,69.545 +304748,313.41,70.977 +304749,311.12,66.657 +304750,311.39,68.119 +304751,311.69,69.571 +304752,312.02,71.011 +304753,309.88,66.668 +304754,310.1,68.138 +304755,310.34,69.597 +304756,310.62,71.045 +304757,308.64,66.679 +304758,308.81,68.156 +304759,309,69.623 +304760,309.23,71.077 +304761,307.41,66.692 +304762,307.52,68.175 +304763,307.66,69.648 +304764,307.83,71.108 +304765,306.17,66.706 +304766,306.23,68.194 +304767,306.32,69.672 +304768,306.44,71.138 +304769,304.94,66.721 +304770,304.94,68.214 +304771,304.98,69.696 +304772,305.04,71.166 +304773,303.7,66.737 +304774,303.65,68.234 +304775,303.63,69.72 +304776,303.65,71.194 +304777,302.47,66.755 +304778,302.36,68.255 +304779,302.29,69.744 +304780,302.26,71.22 +304781,301.23,66.774 +304782,301.07,68.276 +304783,300.95,69.767 +304784,300.86,71.245 +304785,299.99,66.794 +304786,299.78,68.297 +304787,299.61,69.789 +304788,299.47,71.269 +304789,298.76,66.815 +304790,298.49,68.319 +304791,298.26,69.812 +304792,298.07,71.292 +304793,297.52,66.838 +304794,297.2,68.341 +304795,296.92,69.833 +304796,296.68,71.313 +304797,296.29,66.861 +304798,295.91,68.364 +304799,295.58,69.855 +304800,295.29,71.334 +304801,295.05,66.886 +304802,294.62,68.386 +304803,294.24,69.876 +304804,293.9,71.353 +304805,293.81,66.912 +304806,293.33,68.41 +304807,292.9,69.896 +304808,292.5,71.371 +304809,292.58,66.94 +304810,292.04,68.434 +304811,291.55,69.917 +304812,291.11,71.388 +304813,291.34,66.968 +304814,290.75,68.458 +304815,290.21,69.936 +304816,289.72,71.403 +304817,290.1,66.998 +304818,289.46,68.482 +304819,288.87,69.956 +304820,288.33,71.418 +304821,288.86,67.029 +304822,288.17,68.507 +304823,287.53,69.975 +304824,286.94,71.431 +304825,287.62,67.061 +304826,286.88,68.532 +304827,286.19,69.993 +304828,285.55,71.443 +304829,286.39,67.095 +304830,285.59,68.558 +304831,284.85,70.012 +304832,284.16,71.454 +304833,285.15,67.129 +304834,284.3,68.584 +304835,283.51,70.029 +304836,282.77,71.463 +304837,283.9,67.165 +304838,283,68.611 +304839,282.17,70.047 +304840,281.38,71.472 +304841,282.66,67.202 +304842,281.71,68.638 +304843,280.82,70.064 +304844,279.99,71.479 +304845,281.42,67.24 +304846,280.42,68.665 +304847,279.48,70.08 +304848,278.61,71.486 +304849,280.18,67.28 +304850,279.13,68.692 +304851,278.14,70.097 +304852,277.22,71.491 +304853,278.94,67.32 +304854,277.84,68.72 +304855,276.8,70.113 +304856,275.84,71.495 +304857,277.69,67.362 +304858,276.54,68.749 +304859,275.47,70.128 +304860,274.45,71.498 +304861,276.45,67.404 +304862,275.25,68.778 +304863,274.13,70.143 +304864,273.07,71.5 +304865,275.2,67.448 +304866,273.96,68.807 +304867,272.79,70.158 +304868,271.68,71.5 +304869,273.95,67.493 +304870,272.66,68.836 +304871,271.45,70.172 +304872,270.3,71.5 +304873,272.71,67.539 +304874,271.37,68.866 +304875,270.11,70.186 +304876,268.92,71.499 +304877,271.46,67.586 +304878,270.07,68.896 +304879,268.77,70.2 +304880,267.54,71.496 +304881,270.21,67.634 +304882,268.78,68.927 +304883,267.43,70.213 +304884,266.16,71.493 +304885,268.96,67.683 +304886,267.48,68.957 +304887,266.1,70.226 +304888,264.79,71.488 +304889,267.7,67.734 +304890,266.19,68.989 +304891,264.76,70.239 +304892,263.41,71.483 +304893,266.45,67.785 +304894,264.89,69.02 +304895,263.42,70.251 +304896,262.03,71.476 +304897,265.2,67.837 +304898,263.6,69.052 +304899,262.09,70.263 +304900,260.66,71.468 +304901,263.94,67.89 +304902,262.3,69.084 +304903,260.75,70.275 +304904,259.28,71.46 +304905,262.68,67.944 +304906,261,69.117 +304907,259.42,70.286 +304908,257.91,71.45 +304909,261.42,67.999 +304910,259.71,69.15 +304911,258.08,70.297 +304912,256.54,71.44 +304913,260.16,68.055 +304914,258.41,69.183 +304915,256.75,70.308 +304916,255.17,71.429 +304917,258.9,68.112 +304918,257.11,69.216 +304919,255.41,70.318 +304920,253.8,71.416 +304921,257.64,68.17 +304922,255.81,69.25 +304923,254.08,70.328 +304924,252.43,71.403 +304925,256.38,68.229 +304926,254.51,69.284 +304927,252.74,70.338 +304928,251.07,71.389 +304929,255.11,68.288 +304930,253.21,69.318 +304931,251.41,70.347 +304932,249.7,71.374 +304933,253.84,68.348 +304934,251.91,69.353 +304935,250.08,70.357 +304936,248.34,71.359 +304937,252.58,68.41 +304938,250.61,69.387 +304939,248.75,70.365 +304940,246.98,71.342 +304941,251.31,68.471 +304942,249.31,69.422 +304943,247.41,70.374 +304944,245.61,71.325 +304945,250.04,68.534 +304946,248.01,69.458 +304947,246.08,70.383 +304948,244.26,71.307 +304949,248.76,68.598 +304950,246.7,69.493 +304951,244.75,70.391 +304952,242.9,71.288 +304953,247.49,68.662 +304954,245.4,69.529 +304955,243.42,70.399 +304956,241.54,71.269 +304957,246.21,68.726 +304958,244.1,69.565 +304959,242.09,70.406 +304960,240.18,71.248 +304961,244.93,68.792 +304962,242.79,69.601 +304963,240.76,70.414 +304964,238.83,71.228 +304965,243.65,68.858 +304966,241.49,69.638 +304967,239.43,70.421 +304968,237.48,71.206 +304969,242.37,68.925 +304970,240.18,69.674 +304971,238.11,70.428 +304972,236.13,71.184 +304973,241.09,68.992 +304974,238.88,69.711 +304975,236.78,70.435 +304976,234.78,71.161 +304977,239.81,69.06 +304978,237.57,69.748 +304979,235.45,70.441 +304980,233.43,71.138 +304981,238.52,69.128 +304982,236.26,69.785 +304983,234.12,70.448 +304984,232.08,71.114 +304985,237.23,69.197 +304986,234.96,69.823 +304987,232.8,70.454 +304988,230.74,71.089 +304989,235.94,69.266 +304990,233.65,69.86 +304991,231.47,70.46 +304992,229.4,71.064 +304993,234.65,69.336 +304994,232.34,69.898 +304995,230.15,70.466 +304996,228.05,71.039 +304997,233.36,69.406 +304998,231.03,69.936 +304999,228.82,70.472 +305000,226.71,71.013 +305001,232.06,69.477 +305002,229.72,69.974 +305003,227.5,70.478 +305004,225.37,70.986 +305005,230.76,69.548 +305006,228.41,70.012 +305007,226.17,70.483 +305008,224.04,70.959 +305009,229.47,69.62 +305010,227.1,70.05 +305011,224.85,70.488 +305012,222.7,70.932 +305013,228.16,69.691 +305014,225.79,70.089 +305015,223.53,70.494 +305016,221.37,70.904 +305017,226.86,69.763 +305018,224.48,70.127 +305019,222.21,70.499 +305020,220.04,70.877 +305021,225.56,69.836 +305022,223.16,70.166 +305023,220.88,70.504 +305024,218.71,70.848 +305025,224.25,69.908 +305026,221.85,70.204 +305027,219.56,70.509 +305028,217.38,70.82 +305029,222.94,69.981 +305030,220.54,70.243 +305031,218.24,70.513 +305032,216.05,70.791 +305033,221.63,70.054 +305034,219.22,70.282 +305035,216.92,70.518 +305036,214.72,70.762 +305037,220.32,70.127 +305038,217.91,70.321 +305039,215.6,70.523 +305040,213.4,70.733 +305041,219.01,70.2 +305042,216.59,70.359 +305043,214.29,70.528 +305044,212.08,70.703 +305045,217.69,70.274 +305046,215.27,70.398 +305047,212.97,70.532 +305048,210.76,70.674 +305049,216.38,70.347 +305050,213.96,70.437 +305051,211.65,70.537 +305052,209.44,70.644 +305053,215.06,70.42 +305054,212.64,70.476 +305055,210.33,70.541 +305056,208.12,70.614 +305057,213.73,70.494 +305058,211.32,70.515 +305059,209.02,70.546 +305060,206.81,70.584 +305061,212.41,70.567 +305062,210,70.554 +305063,207.7,70.55 +305064,205.49,70.554 +305065,211.09,70.641 +305066,208.68,70.593 +305067,206.39,70.555 +305068,204.18,70.525 +305069,209.76,70.714 +305070,207.36,70.632 +305071,205.07,70.559 +305072,202.87,70.495 +305073,208.43,70.788 +305074,206.04,70.671 +305075,203.76,70.564 +305076,201.56,70.465 +305077,207.1,70.861 +305078,204.72,70.71 +305079,202.44,70.568 +305080,200.26,70.435 +305081,205.77,70.934 +305082,203.4,70.749 +305083,201.13,70.573 +305084,198.95,70.405 +305085,204.44,71.007 +305086,202.08,70.788 +305087,199.82,70.577 +305088,197.65,70.376 +305089,203.1,71.079 +305090,200.75,70.826 +305091,198.51,70.582 +305092,196.34,70.346 +305093,201.76,71.152 +305094,199.43,70.865 +305095,197.2,70.587 +305096,195.04,70.317 +305097,200.42,71.224 +305098,198.11,70.904 +305099,195.88,70.592 +305100,193.75,70.288 +305101,199.08,71.296 +305102,196.78,70.942 +305103,194.57,70.597 +305104,192.45,70.259 +305105,197.74,71.367 +305106,195.46,70.98 +305107,193.26,70.602 +305108,191.15,70.231 +305109,196.4,71.439 +305110,194.13,71.019 +305111,191.95,70.607 +305112,189.86,70.203 +305113,195.05,71.51 +305114,192.8,71.057 +305115,190.65,70.612 +305116,188.57,70.175 +305117,193.7,71.58 +305118,191.48,71.095 +305119,189.34,70.617 +305120,187.28,70.147 +305121,192.35,71.65 +305122,190.15,71.133 +305123,188.03,70.623 +305124,185.99,70.12 +305125,191,71.72 +305126,188.82,71.17 +305127,186.72,70.628 +305128,184.7,70.093 +305129,189.65,71.789 +305130,187.49,71.208 +305131,185.42,70.634 +305132,183.41,70.067 +305133,188.29,71.858 +305134,186.16,71.246 +305135,184.11,70.64 +305136,182.13,70.041 +305137,186.94,71.926 +305138,184.83,71.283 +305139,182.81,70.646 +305140,180.85,70.016 +305141,185.58,71.994 +305142,183.5,71.32 +305143,181.5,70.652 +305144,179.56,69.991 +305145,184.22,72.061 +305146,182.17,71.357 +305147,180.2,70.659 +305148,178.28,69.966 +305149,182.86,72.127 +305150,180.84,71.394 +305151,178.89,70.665 +305152,177.01,69.942 +305153,181.5,72.193 +305154,179.51,71.43 +305155,177.59,70.672 +305156,175.73,69.919 +305157,180.14,72.258 +305158,178.18,71.466 +305159,176.28,70.679 +305160,174.45,69.897 +305161,178.77,72.323 +305162,176.84,71.502 +305163,174.98,70.686 +305164,173.18,69.875 +305165,177.4,72.387 +305166,175.51,71.538 +305167,173.68,70.693 +305168,171.91,69.853 +305169,176.04,72.45 +305170,174.18,71.574 +305171,172.38,70.701 +305172,170.64,69.832 +305173,174.67,72.513 +305174,172.84,71.609 +305175,171.08,70.709 +305176,169.37,69.812 +305177,173.3,72.575 +305178,171.51,71.645 +305179,169.78,70.717 +305180,168.1,69.793 +305181,171.93,72.636 +305182,170.17,71.679 +305183,168.47,70.726 +305184,166.83,69.775 +305185,170.55,72.696 +305186,168.84,71.714 +305187,167.17,70.734 +305188,165.56,69.757 +305189,169.18,72.755 +305190,167.5,71.748 +305191,165.87,70.743 +305192,164.3,69.74 +305193,167.8,72.814 +305194,166.16,71.783 +305195,164.58,70.752 +305196,163.03,69.724 +305197,166.43,72.872 +305198,164.83,71.816 +305199,163.28,70.762 +305200,161.77,69.709 +305201,165.05,72.929 +305202,163.49,71.85 +305203,161.98,70.771 +305204,160.51,69.694 +305205,163.67,72.985 +305206,162.15,71.883 +305207,160.68,70.781 +305208,159.25,69.68 +305209,162.29,73.04 +305210,160.81,71.916 +305211,159.38,70.792 +305212,157.99,69.668 +305213,160.91,73.094 +305214,159.47,71.949 +305215,158.08,70.802 +305216,156.73,69.656 +305217,159.53,73.148 +305218,158.14,71.981 +305219,156.79,70.813 +305220,155.48,69.645 +305221,158.15,73.2 +305222,156.8,72.013 +305223,155.49,70.824 +305224,154.22,69.635 +305225,156.76,73.251 +305226,155.46,72.045 +305227,154.19,70.836 +305228,152.97,69.626 +305229,155.38,73.302 +305230,154.12,72.076 +305231,152.9,70.848 +305232,151.71,69.618 +305233,153.99,73.351 +305234,152.78,72.107 +305235,151.6,70.86 +305236,150.46,69.611 +305237,152.61,73.4 +305238,151.44,72.138 +305239,150.31,70.873 +305240,149.21,69.605 +305241,151.22,73.447 +305242,150.1,72.168 +305243,149.01,70.886 +305244,147.96,69.601 +305245,149.83,73.494 +305246,148.76,72.198 +305247,147.71,70.899 +305248,146.71,69.597 +305249,148.45,73.539 +305250,147.41,72.228 +305251,146.42,70.912 +305252,145.46,69.594 +305253,147.06,73.583 +305254,146.07,72.257 +305255,145.12,70.926 +305256,144.21,69.592 +305257,145.67,73.626 +305258,144.73,72.286 +305259,143.83,70.941 +305260,142.96,69.592 +305261,144.28,73.669 +305262,143.39,72.315 +305263,142.54,70.955 +305264,141.71,69.592 +305265,142.89,73.71 +305266,142.05,72.343 +305267,141.24,70.971 +305268,140.47,69.594 +305269,141.5,73.75 +305270,140.71,72.371 +305271,139.95,70.986 +305272,139.22,69.596 +305273,140.1,73.789 +305274,139.36,72.398 +305275,138.65,71.002 +305276,137.98,69.6 +305277,138.71,73.826 +305278,138.02,72.425 +305279,137.36,71.018 +305280,136.73,69.605 +305281,137.32,73.863 +305282,136.68,72.452 +305283,136.07,71.034 +305284,135.49,69.611 +305285,135.93,73.899 +305286,135.33,72.479 +305287,134.77,71.051 +305288,134.24,69.619 +305289,134.53,73.933 +305290,133.99,72.504 +305291,133.48,71.069 +305292,133,69.627 +305293,133.14,73.966 +305294,132.65,72.53 +305295,132.19,71.087 +305296,131.76,69.637 +305297,131.75,73.998 +305298,131.3,72.555 +305299,130.9,71.105 +305300,130.52,69.648 +305301,130.35,74.029 +305302,129.96,72.58 +305303,129.6,71.123 +305304,129.27,69.66 +305305,128.96,74.059 +305306,128.62,72.604 +305307,128.31,71.142 +305308,128.03,69.673 +305309,127.56,74.088 +305310,127.27,72.629 +305311,127.02,71.161 +305312,126.79,69.688 +305313,126.17,74.115 +305314,125.93,72.652 +305315,125.72,71.181 +305316,125.55,69.703 +305317,124.77,74.141 +305318,124.59,72.675 +305319,124.43,71.201 +305320,124.31,69.72 +305321,123.38,74.166 +305322,123.24,72.698 +305323,123.14,71.222 +305324,123.07,69.738 +305325,121.98,74.19 +305326,121.9,72.721 +305327,121.85,71.243 +305328,121.83,69.758 +305329,120.59,74.213 +305330,120.56,72.743 +305331,120.55,71.264 +305332,120.58,69.778 +305333,119.2,74.235 +305334,119.21,72.764 +305335,119.26,71.286 +305336,119.34,69.8 +305337,117.8,74.255 +305338,117.87,72.786 +305339,117.97,71.308 +305340,118.1,69.823 +305341,116.41,74.274 +305342,116.52,72.807 +305343,116.68,71.33 +305344,116.86,69.847 +305345,115.01,74.292 +305346,115.18,72.827 +305347,115.38,71.353 +305348,115.62,69.872 +305349,113.62,74.309 +305350,113.84,72.847 +305351,114.09,71.377 +305352,114.38,69.899 +305353,112.23,74.325 +305354,112.49,72.867 +305355,112.8,71.4 +305356,113.14,69.927 +305357,110.83,74.339 +305358,111.15,72.886 +305359,111.5,71.424 +305360,111.9,69.956 +305361,109.44,74.353 +305362,109.81,72.905 +305363,110.21,71.449 +305364,110.65,69.986 +305365,108.05,74.365 +305366,108.46,72.923 +305367,108.92,71.474 +305368,109.41,70.018 +305369,106.66,74.376 +305370,107.12,72.942 +305371,107.62,71.499 +305372,108.17,70.05 +305373,105.27,74.386 +305374,105.78,72.959 +305375,106.33,71.525 +305376,106.93,70.084 +305377,103.87,74.395 +305378,104.43,72.977 +305379,105.04,71.551 +305380,105.68,70.119 +305381,102.48,74.403 +305382,103.09,72.994 +305383,103.74,71.577 +305384,104.44,70.155 +305385,101.09,74.409 +305386,101.75,73.01 +305387,102.45,71.604 +305388,103.2,70.193 +305389,99.705,74.415 +305390,100.41,73.026 +305391,101.15,71.631 +305392,101.95,70.231 +305393,98.316,74.419 +305394,99.064,73.042 +305395,99.859,71.659 +305396,100.7,70.271 +305397,96.928,74.422 +305398,97.722,73.058 +305399,98.564,71.687 +305400,99.458,70.312 +305401,95.54,74.424 +305402,96.38,73.073 +305403,97.269,71.715 +305404,98.212,70.354 +305405,94.154,74.425 +305406,95.038,73.088 +305407,95.974,71.744 +305408,96.964,70.397 +305409,92.768,74.425 +305410,93.697,73.102 +305411,94.678,71.773 +305412,95.716,70.441 +305413,91.383,74.424 +305414,92.356,73.116 +305415,93.382,71.803 +305416,94.467,70.486 +305417,89.998,74.422 +305418,91.015,73.13 +305419,92.086,71.833 +305420,93.217,70.533 +305421,88.615,74.419 +305422,89.674,73.143 +305423,90.79,71.863 +305424,91.966,70.58 +305425,87.232,74.415 +305426,88.334,73.156 +305427,89.493,71.893 +305428,90.714,70.629 +305429,85.851,74.41 +305430,86.994,73.169 +305431,88.196,71.924 +305432,89.462,70.678 +305433,84.47,74.404 +305434,85.654,73.181 +305435,86.899,71.955 +305436,88.208,70.729 +305437,83.09,74.397 +305438,84.315,73.193 +305439,85.601,71.987 +305440,86.954,70.78 +305441,81.711,74.388 +305442,82.975,73.205 +305443,84.303,72.019 +305444,85.698,70.833 +305445,80.333,74.379 +305446,81.637,73.216 +305447,83.004,72.051 +305448,84.441,70.886 +305449,78.957,74.369 +305450,80.298,73.227 +305451,81.705,72.084 +305452,83.184,70.941 +305453,77.581,74.359 +305454,78.96,73.238 +305455,80.406,72.116 +305456,81.925,70.996 +305457,76.206,74.347 +305458,77.622,73.248 +305459,79.107,72.15 +305460,80.665,71.052 +305461,74.833,74.334 +305462,76.285,73.259 +305463,77.807,72.183 +305464,79.404,71.109 +305465,73.46,74.321 +305466,74.948,73.268 +305467,76.506,72.217 +305468,78.141,71.168 +305469,72.089,74.306 +305470,73.611,73.278 +305471,75.205,72.251 +305472,76.877,71.226 +305473,70.719,74.291 +305474,72.275,73.287 +305475,73.904,72.285 +305476,75.612,71.286 +305477,69.351,74.275 +305478,70.939,73.296 +305479,72.602,72.32 +305480,74.346,71.347 +305481,67.983,74.258 +305482,69.604,73.305 +305483,71.3,72.354 +305484,73.078,71.408 +305485,66.617,74.241 +305486,68.269,73.314 +305487,69.997,72.39 +305488,71.809,71.47 +305489,65.252,74.222 +305490,66.935,73.322 +305491,68.694,72.425 +305492,70.539,71.533 +305493,63.888,74.203 +305494,65.6,73.33 +305495,67.391,72.461 +305496,69.267,71.597 +305497,62.526,74.184 +305498,64.267,73.338 +305499,66.087,72.496 +305500,67.994,71.661 +305501,61.165,74.163 +305502,62.933,73.345 +305503,64.782,72.532 +305504,66.719,71.726 +305505,59.805,74.142 +305506,61.601,73.353 +305507,63.477,72.569 +305508,65.443,71.792 +305509,58.447,74.12 +305510,60.268,73.36 +305511,62.171,72.605 +305512,64.165,71.858 +305513,57.09,74.098 +305514,58.937,73.367 +305515,60.865,72.642 +305516,62.885,71.925 +305517,55.735,74.075 +305518,57.605,73.374 +305519,59.559,72.679 +305520,61.605,71.993 +305521,54.381,74.052 +305522,56.274,73.38 +305523,58.251,72.716 +305524,60.322,72.061 +305525,53.028,74.028 +305526,54.944,73.387 +305527,56.944,72.753 +305528,59.038,72.129 +305529,51.677,74.003 +305530,53.614,73.393 +305531,55.636,72.791 +305532,57.752,72.198 +305533,50.328,73.978 +305534,52.284,73.399 +305535,54.327,72.828 +305536,56.465,72.268 +305537,48.98,73.952 +305538,50.956,73.405 +305539,53.017,72.866 +305540,55.176,72.338 +305541,47.633,73.926 +305542,49.627,73.411 +305543,51.708,72.904 +305544,53.885,72.408 +305545,46.288,73.9 +305546,48.299,73.416 +305547,50.397,72.942 +305548,52.593,72.479 +305549,44.944,73.873 +305550,46.972,73.422 +305551,49.086,72.98 +305552,51.299,72.55 +305553,43.603,73.846 +305554,45.645,73.427 +305555,47.775,73.018 +305556,50.003,72.622 +305557,42.262,73.819 +305558,44.319,73.432 +305559,46.463,73.057 +305560,48.705,72.694 +305561,40.923,73.791 +305562,42.993,73.438 +305563,45.15,73.095 +305564,47.406,72.766 +305565,39.586,73.763 +305566,41.667,73.443 +305567,43.837,73.134 +305568,46.105,72.838 +305569,38.25,73.734 +305570,40.343,73.448 +305571,42.523,73.173 +305572,44.803,72.911 +305573,36.916,73.705 +305574,39.018,73.453 +305575,41.208,73.211 +305576,43.498,72.984 +305577,35.584,73.677 +305578,37.695,73.457 +305579,39.893,73.25 +305580,42.192,73.057 +305581,34.253,73.648 +305582,36.371,73.462 +305583,38.578,73.289 +305584,40.884,73.13 +305585,32.924,73.618 +305586,35.049,73.467 +305587,37.261,73.328 +305588,39.574,73.204 +305589,31.596,73.589 +305590,33.727,73.472 +305591,35.945,73.367 +305592,38.262,73.277 +305593,30.27,73.56 +305594,32.405,73.476 +305595,34.627,73.406 +305596,36.949,73.35 +305597,28.946,73.53 +305598,31.084,73.481 +305599,33.309,73.445 +305600,35.634,73.424 +305601,27.623,73.501 +305602,29.764,73.486 +305603,31.991,73.484 +305604,34.317,73.498 +305605,26.302,73.471 +305606,28.444,73.49 +305607,30.672,73.523 +305608,32.998,73.571 +305609,24.982,73.441 +305610,27.124,73.495 +305611,29.352,73.562 +305612,31.678,73.645 +305613,23.664,73.412 +305614,25.805,73.5 +305615,28.031,73.601 +305616,30.355,73.718 +305617,22.348,73.382 +305618,24.487,73.504 +305619,26.71,73.64 +305620,29.031,73.791 +305621,21.033,73.353 +305622,23.169,73.509 +305623,25.389,73.679 +305624,27.705,73.865 +305625,19.72,73.324 +305626,21.852,73.514 +305627,24.067,73.718 +305628,26.378,73.938 +305629,18.409,73.294 +305630,20.535,73.519 +305631,22.744,73.757 +305632,25.048,74.011 +305633,17.099,73.265 +305634,19.219,73.524 +305635,21.421,73.796 +305636,23.717,74.083 +305637,15.791,73.237 +305638,17.903,73.529 +305639,20.097,73.835 +305640,22.384,74.156 +305641,14.484,73.208 +305642,16.588,73.534 +305643,18.773,73.873 +305644,21.049,74.228 +305645,13.179,73.18 +305646,15.274,73.539 +305647,17.448,73.912 +305648,19.713,74.3 +305649,11.875,73.152 +305650,13.96,73.544 +305651,16.122,73.95 +305652,18.375,74.371 +305653,10.574,73.124 +305654,12.646,73.55 +305655,14.796,73.989 +305656,17.035,74.442 +305657,9.2734,73.097 +305658,11.333,73.555 +305659,13.469,74.027 +305660,15.694,74.513 +305661,7.9747,73.07 +305662,10.021,73.561 +305663,12.142,74.065 +305664,14.35,74.584 +305665,6.6775,73.043 +305666,8.7087,73.566 +305667,10.814,74.103 +305668,13.005,74.654 +305669,5.3819,73.017 +305670,7.3972,73.572 +305671,9.4855,74.141 +305672,11.659,74.723 +305673,4.0879,72.991 +305674,6.0862,73.578 +305675,8.1566,74.179 +305676,10.311,74.793 +305677,2.7953,72.966 +305678,4.7758,73.585 +305679,6.8271,74.216 +305680,8.9609,74.861 +305681,1.5043,72.941 +305682,3.4658,73.591 +305683,5.497,74.254 +305684,7.6095,74.929 +305685,0.21476,72.916 +305686,2.1563,73.598 +305687,4.1665,74.291 +305688,6.2566,74.997 +305689,358.93,72.893 +305690,0.8473,73.604 +305691,2.8354,74.328 +305692,4.902,75.064 +305693,357.64,72.869 +305694,359.54,73.611 +305695,1.5037,74.365 +305696,3.546,75.13 +305697,356.35,72.847 +305698,358.23,73.618 +305699,0.17161,74.401 +305700,2.1884,75.196 +305701,355.07,72.825 +305702,356.92,73.626 +305703,358.84,74.438 +305704,0.82926,75.261 +305705,353.79,72.803 +305706,355.62,73.633 +305707,357.51,74.474 +305708,359.47,75.326 +305709,352.51,72.783 +305710,354.31,73.641 +305711,356.17,74.51 +305712,358.11,75.39 +305713,351.23,72.763 +305714,353,73.649 +305715,354.84,74.546 +305716,356.74,75.453 +305717,349.95,72.743 +305718,351.7,73.657 +305719,353.5,74.581 +305720,355.38,75.515 +305721,348.67,72.725 +305722,350.39,73.666 +305723,352.17,74.617 +305724,354.01,75.577 +305725,347.4,72.707 +305726,349.09,73.675 +305727,350.83,74.652 +305728,352.64,75.638 +305729,346.12,72.69 +305730,347.78,73.684 +305731,349.5,74.686 +305732,351.28,75.698 +305733,344.85,72.674 +305734,346.48,73.693 +305735,348.16,74.721 +305736,349.91,75.757 +305737,343.58,72.658 +305738,345.17,73.703 +305739,346.82,74.755 +305740,348.53,75.815 +305741,342.31,72.644 +305742,343.87,73.713 +305743,345.49,74.789 +305744,347.16,75.873 +305745,341.04,72.63 +305746,342.57,73.723 +305747,344.15,74.823 +305748,345.79,75.93 +305749,339.77,72.617 +305750,341.27,73.733 +305751,342.81,74.856 +305752,344.41,75.986 +305753,338.5,72.605 +305754,339.96,73.744 +305755,341.47,74.889 +305756,343.04,76.041 +305757,337.24,72.594 +305758,338.66,73.755 +305759,340.13,74.922 +305760,341.66,76.095 +305761,335.97,72.584 +305762,337.36,73.767 +305763,338.79,74.955 +305764,340.28,76.148 +305765,334.71,72.575 +305766,336.06,73.778 +305767,337.45,74.987 +305768,338.9,76.2 +305769,333.45,72.567 +305770,334.76,73.79 +305771,336.11,75.019 +305772,337.52,76.251 +305773,332.19,72.56 +305774,333.46,73.803 +305775,334.77,75.05 +305776,336.14,76.301 +305777,330.93,72.554 +305778,332.16,73.816 +305779,333.43,75.081 +305780,334.76,76.35 +305781,329.67,72.549 +305782,330.86,73.829 +305783,332.09,75.112 +305784,333.37,76.399 +305785,328.41,72.545 +305786,329.56,73.842 +305787,330.75,75.143 +305788,331.99,76.446 +305789,327.15,72.542 +305790,328.26,73.856 +305791,329.41,75.173 +305792,330.6,76.492 +305793,325.89,72.54 +305794,326.96,73.87 +305795,328.07,75.203 +305796,329.22,76.537 +305797,324.64,72.539 +305798,325.66,73.885 +305799,326.72,75.232 +305800,327.83,76.581 +305801,323.38,72.539 +305802,324.36,73.899 +305803,325.38,75.261 +305804,326.44,76.624 +305805,322.13,72.54 +305806,323.06,73.915 +305807,324.04,75.29 +305808,325.06,76.666 +305809,320.87,72.543 +305810,321.77,73.93 +305811,322.7,75.319 +305812,323.67,76.707 +305813,319.62,72.547 +305814,320.47,73.946 +305815,321.35,75.347 +305816,322.28,76.747 +305817,318.37,72.551 +305818,319.17,73.963 +305819,320.01,75.374 +305820,320.89,76.785 +305821,317.11,72.557 +305822,317.87,73.979 +305823,318.67,75.402 +305824,319.5,76.823 +305825,315.86,72.564 +305826,316.58,73.997 +305827,317.32,75.429 +305828,318.1,76.859 +305829,314.61,72.573 +305830,315.28,74.014 +305831,315.98,75.455 +305832,316.71,76.894 +305833,313.36,72.582 +305834,313.98,74.032 +305835,314.63,75.481 +305836,315.32,76.928 +305837,312.11,72.593 +305838,312.68,74.05 +305839,313.29,75.507 +305840,313.93,76.961 +305841,310.86,72.604 +305842,311.39,74.069 +305843,311.94,75.532 +305844,312.54,76.993 +305845,309.62,72.617 +305846,310.09,74.088 +305847,310.6,75.557 +305848,311.14,77.024 +305849,308.37,72.632 +305850,308.79,74.108 +305851,309.25,75.582 +305852,309.75,77.053 +305853,307.12,72.647 +305854,307.5,74.128 +305855,307.91,75.606 +305856,308.35,77.081 +305857,305.87,72.664 +305858,306.2,74.148 +305859,306.56,75.63 +305860,306.96,77.109 +305861,304.62,72.682 +305862,304.91,74.169 +305863,305.22,75.654 +305864,305.57,77.135 +305865,303.38,72.701 +305866,303.61,74.19 +305867,303.87,75.677 +305868,304.17,77.159 +305869,302.13,72.721 +305870,302.31,74.212 +305871,302.53,75.699 +305872,302.78,77.183 +305873,300.88,72.743 +305874,301.02,74.234 +305875,301.18,75.722 +305876,301.38,77.205 +305877,299.64,72.766 +305878,299.72,74.256 +305879,299.84,75.744 +305880,299.99,77.227 +305881,298.39,72.79 +305882,298.42,74.279 +305883,298.49,75.765 +305884,298.59,77.247 +305885,297.14,72.815 +305886,297.13,74.302 +305887,297.15,75.786 +305888,297.2,77.266 +305889,295.9,72.841 +305890,295.83,74.326 +305891,295.8,75.807 +305892,295.8,77.284 +305893,294.65,72.869 +305894,294.54,74.35 +305895,294.46,75.827 +305896,294.41,77.3 +305897,293.4,72.898 +305898,293.24,74.374 +305899,293.11,75.847 +305900,293.02,77.316 +305901,292.16,72.928 +305902,291.94,74.399 +305903,291.77,75.867 +305904,291.62,77.33 +305905,290.91,72.959 +305906,290.65,74.424 +305907,290.42,75.886 +305908,290.23,77.343 +305909,289.66,72.992 +305910,289.35,74.45 +305911,289.07,75.905 +305912,288.83,77.355 +305913,288.41,73.026 +305914,288.05,74.476 +305915,287.73,75.923 +305916,287.44,77.366 +305917,287.17,73.061 +305918,286.76,74.502 +305919,286.38,75.941 +305920,286.05,77.375 +305921,285.92,73.097 +305922,285.46,74.529 +305923,285.04,75.959 +305924,284.65,77.384 +305925,284.67,73.134 +305926,284.16,74.556 +305927,283.69,75.976 +305928,283.26,77.391 +305929,283.42,73.173 +305930,282.87,74.584 +305931,282.35,75.993 +305932,281.87,77.398 +305933,282.17,73.212 +305934,281.57,74.612 +305935,281,76.009 +305936,280.48,77.403 +305937,280.92,73.253 +305938,280.27,74.64 +305939,279.66,76.025 +305940,279.09,77.407 +305941,279.67,73.295 +305942,278.97,74.669 +305943,278.32,76.041 +305944,277.7,77.41 +305945,278.42,73.338 +305946,277.68,74.698 +305947,276.97,76.057 +305948,276.31,77.412 +305949,277.17,73.383 +305950,276.38,74.728 +305951,275.63,76.072 +305952,274.92,77.413 +305953,275.92,73.428 +305954,275.08,74.758 +305955,274.28,76.086 +305956,273.53,77.412 +305957,274.67,73.475 +305958,273.78,74.788 +305959,272.94,76.101 +305960,272.14,77.411 +305961,273.41,73.522 +305962,272.48,74.819 +305963,271.6,76.115 +305964,270.75,77.409 +305965,272.16,73.571 +305966,271.18,74.85 +305967,270.25,76.128 +305968,269.37,77.406 +305969,270.91,73.621 +305970,269.88,74.881 +305971,268.91,76.142 +305972,267.98,77.401 +305973,269.65,73.671 +305974,268.58,74.913 +305975,267.57,76.155 +305976,266.6,77.396 +305977,268.39,73.723 +305978,267.28,74.945 +305979,266.22,76.167 +305980,265.21,77.389 +305981,267.14,73.776 +305982,265.98,74.977 +305983,264.88,76.18 +305984,263.83,77.382 +305985,265.88,73.83 +305986,264.68,75.01 +305987,263.54,76.192 +305988,262.45,77.374 +305989,264.62,73.885 +305990,263.38,75.043 +305991,262.2,76.203 +305992,261.06,77.365 +305993,263.36,73.94 +305994,262.08,75.076 +305995,260.86,76.215 +305996,259.68,77.354 +305997,262.1,73.997 +305998,260.78,75.11 +305999,259.52,76.226 +306000,258.3,77.343 +306001,260.84,74.055 +306002,259.48,75.144 +306003,258.17,76.237 +306004,256.92,77.332 +306005,259.58,74.113 +306006,258.18,75.178 +306007,256.83,76.247 +306008,255.55,77.319 +306009,258.31,74.173 +306010,256.87,75.213 +306011,255.49,76.258 +306012,254.17,77.305 +306013,257.05,74.233 +306014,255.57,75.248 +306015,254.15,76.267 +306016,252.79,77.291 +306017,255.78,74.294 +306018,254.27,75.283 +306019,252.81,76.277 +306020,251.42,77.275 +306021,254.51,74.356 +306022,252.96,75.318 +306023,251.48,76.287 +306024,250.05,77.259 +306025,253.25,74.419 +306026,251.66,75.354 +306027,250.14,76.296 +306028,248.67,77.242 +306029,251.98,74.482 +306030,250.36,75.39 +306031,248.8,76.305 +306032,247.3,77.225 +306033,250.7,74.547 +306034,249.05,75.426 +306035,247.46,76.313 +306036,245.93,77.206 +306037,249.43,74.612 +306038,247.74,75.462 +306039,246.12,76.322 +306040,244.56,77.187 +306041,248.16,74.677 +306042,246.44,75.499 +306043,244.79,76.33 +306044,243.19,77.167 +306045,246.88,74.744 +306046,245.13,75.536 +306047,243.45,76.338 +306048,241.83,77.147 +306049,245.61,74.811 +306050,243.83,75.573 +306051,242.11,76.346 +306052,240.46,77.126 +306053,244.33,74.879 +306054,242.52,75.611 +306055,240.78,76.353 +306056,239.1,77.104 +306057,243.05,74.947 +306058,241.21,75.648 +306059,239.44,76.361 +306060,237.74,77.082 +306061,241.77,75.016 +306062,239.9,75.686 +306063,238.11,76.368 +306064,236.38,77.059 +306065,240.49,75.085 +306066,238.59,75.724 +306067,236.77,76.375 +306068,235.02,77.035 +306069,239.21,75.155 +306070,237.28,75.762 +306071,235.44,76.382 +306072,233.66,77.011 +306073,237.92,75.226 +306074,235.97,75.801 +306075,234.1,76.388 +306076,232.3,76.987 +306077,236.64,75.297 +306078,234.66,75.839 +306079,232.77,76.395 +306080,230.94,76.962 +306081,235.35,75.368 +306082,233.35,75.878 +306083,231.44,76.401 +306084,229.59,76.936 +306085,234.06,75.44 +306086,232.04,75.917 +306087,230.1,76.407 +306088,228.24,76.91 +306089,232.77,75.513 +306090,230.73,75.956 +306091,228.77,76.414 +306092,226.89,76.884 +306093,231.48,75.585 +306094,229.42,75.995 +306095,227.44,76.42 +306096,225.54,76.857 +306097,230.18,75.658 +306098,228.11,76.034 +306099,226.11,76.425 +306100,224.19,76.83 +306101,228.89,75.732 +306102,226.79,76.073 +306103,224.78,76.431 +306104,222.84,76.803 +306105,227.59,75.805 +306106,225.48,76.113 +306107,223.45,76.437 +306108,221.49,76.775 +306109,226.29,75.879 +306110,224.16,76.152 +306111,222.12,76.442 +306112,220.15,76.747 +306113,224.99,75.954 +306114,222.85,76.192 +306115,220.79,76.448 +306116,218.81,76.718 +306117,223.69,76.028 +306118,221.53,76.232 +306119,219.46,76.453 +306120,217.47,76.69 +306121,222.38,76.103 +306122,220.22,76.272 +306123,218.13,76.459 +306124,216.13,76.661 +306125,221.08,76.177 +306126,218.9,76.311 +306127,216.81,76.464 +306128,214.79,76.632 +306129,219.77,76.252 +306130,217.58,76.351 +306131,215.48,76.469 +306132,213.45,76.603 +306133,218.46,76.327 +306134,216.27,76.391 +306135,214.15,76.474 +306136,212.12,76.574 +306137,217.15,76.402 +306138,214.95,76.431 +306139,212.83,76.48 +306140,210.78,76.545 +306141,215.84,76.477 +306142,213.63,76.471 +306143,211.5,76.485 +306144,209.45,76.516 +306145,214.53,76.552 +306146,212.31,76.511 +306147,210.18,76.49 +306148,208.12,76.486 +306149,213.21,76.627 +306150,210.99,76.551 +306151,208.85,76.495 +306152,206.79,76.457 +306153,211.89,76.702 +306154,209.67,76.591 +306155,207.53,76.5 +306156,205.47,76.428 +306157,210.57,76.777 +306158,208.35,76.631 +306159,206.21,76.506 +306160,204.14,76.398 +306161,209.25,76.852 +306162,207.02,76.671 +306163,204.88,76.511 +306164,202.82,76.369 +306165,207.93,76.927 +306166,205.7,76.711 +306167,203.56,76.516 +306168,201.49,76.34 +306169,206.61,77.001 +306170,204.38,76.751 +306171,202.24,76.522 +306172,200.17,76.311 +306173,205.28,77.076 +306174,203.06,76.791 +306175,200.92,76.527 +306176,198.85,76.282 +306177,203.95,77.15 +306178,201.73,76.831 +306179,199.6,76.533 +306180,197.54,76.253 +306181,202.62,77.224 +306182,200.41,76.87 +306183,198.28,76.538 +306184,196.22,76.225 +306185,201.29,77.297 +306186,199.08,76.91 +306187,196.96,76.544 +306188,194.9,76.197 +306189,199.96,77.371 +306190,197.76,76.949 +306191,195.64,76.55 +306192,193.59,76.169 +306193,198.63,77.444 +306194,196.43,76.989 +306195,194.32,76.555 +306196,192.28,76.141 +306197,197.29,77.516 +306198,195.1,77.028 +306199,193,76.561 +306200,190.97,76.114 +306201,195.95,77.589 +306202,193.77,77.067 +306203,191.68,76.567 +306204,189.66,76.086 +306205,194.61,77.66 +306206,192.45,77.107 +306207,190.36,76.574 +306208,188.35,76.06 +306209,193.27,77.732 +306210,191.12,77.146 +306211,189.05,76.58 +306212,187.05,76.034 +306213,191.93,77.803 +306214,189.79,77.184 +306215,187.73,76.587 +306216,185.74,76.008 +306217,190.58,77.873 +306218,188.46,77.223 +306219,186.42,76.593 +306220,184.44,75.982 +306221,189.24,77.943 +306222,187.13,77.262 +306223,185.1,76.6 +306224,183.14,75.957 +306225,187.89,78.013 +306226,185.8,77.3 +306227,183.79,76.607 +306228,181.84,75.933 +306229,186.54,78.082 +306230,184.47,77.338 +306231,182.47,76.614 +306232,180.54,75.909 +306233,185.19,78.15 +306234,183.13,77.376 +306235,181.16,76.622 +306236,179.25,75.886 +306237,183.84,78.218 +306238,181.8,77.414 +306239,179.84,76.629 +306240,177.95,75.863 +306241,182.49,78.285 +306242,180.47,77.451 +306243,178.53,76.637 +306244,176.66,75.841 +306245,181.13,78.351 +306246,179.14,77.489 +306247,177.22,76.645 +306248,175.37,75.819 +306249,179.77,78.417 +306250,177.8,77.526 +306251,175.91,76.654 +306252,174.07,75.799 +306253,178.41,78.482 +306254,176.47,77.563 +306255,174.59,76.662 +306256,172.79,75.778 +306257,177.06,78.546 +306258,175.13,77.6 +306259,173.28,76.671 +306260,171.5,75.759 +306261,175.69,78.61 +306262,173.8,77.636 +306263,171.97,76.68 +306264,170.21,75.74 +306265,174.33,78.673 +306266,172.46,77.672 +306267,170.66,76.689 +306268,168.92,75.722 +306269,172.97,78.735 +306270,171.12,77.708 +306271,169.35,76.699 +306272,167.64,75.705 +306273,171.6,78.796 +306274,169.79,77.744 +306275,168.04,76.708 +306276,166.36,75.688 +306277,170.24,78.856 +306278,168.45,77.779 +306279,166.73,76.718 +306280,165.08,75.673 +306281,168.87,78.916 +306282,167.11,77.815 +306283,165.43,76.729 +306284,163.8,75.658 +306285,167.5,78.975 +306286,165.77,77.849 +306287,164.12,76.739 +306288,162.52,75.644 +306289,166.13,79.033 +306290,164.44,77.884 +306291,162.81,76.75 +306292,161.24,75.631 +306293,164.76,79.089 +306294,163.1,77.918 +306295,161.5,76.762 +306296,159.96,75.619 +306297,163.38,79.145 +306298,161.76,77.952 +306299,160.2,76.773 +306300,158.69,75.607 +306301,162.01,79.201 +306302,160.42,77.986 +306303,158.89,76.785 +306304,157.41,75.597 +306305,160.63,79.255 +306306,159.08,78.019 +306307,157.58,76.797 +306308,156.14,75.588 +306309,159.26,79.308 +306310,157.74,78.052 +306311,156.28,76.81 +306312,154.87,75.579 +306313,157.88,79.36 +306314,156.4,78.085 +306315,154.97,76.823 +306316,153.6,75.572 +306317,156.5,79.411 +306318,155.05,78.118 +306319,153.66,76.836 +306320,152.33,75.565 +306321,155.12,79.461 +306322,153.71,78.15 +306323,152.36,76.849 +306324,151.06,75.56 +306325,153.74,79.51 +306326,152.37,78.181 +306327,151.06,76.863 +306328,149.79,75.556 +306329,152.36,79.558 +306330,151.03,78.213 +306331,149.75,76.878 +306332,148.52,75.552 +306333,150.97,79.605 +306334,149.68,78.244 +306335,148.45,76.892 +306336,147.25,75.55 +306337,149.59,79.651 +306338,148.34,78.275 +306339,147.14,76.907 +306340,145.99,75.549 +306341,148.21,79.696 +306342,147,78.305 +306343,145.84,76.923 +306344,144.72,75.549 +306345,146.82,79.74 +306346,145.65,78.335 +306347,144.54,76.938 +306348,143.46,75.55 +306349,145.43,79.782 +306350,144.31,78.365 +306351,143.23,76.954 +306352,142.2,75.552 +306353,144.05,79.824 +306354,142.97,78.394 +306355,141.93,76.971 +306356,140.94,75.556 +306357,142.66,79.864 +306358,141.62,78.423 +306359,140.63,76.988 +306360,139.67,75.56 +306361,141.27,79.904 +306362,140.28,78.451 +306363,139.32,77.005 +306364,138.41,75.566 +306365,139.88,79.942 +306366,138.93,78.479 +306367,138.02,77.023 +306368,137.15,75.572 +306369,138.49,79.979 +306370,137.59,78.507 +306371,136.72,77.041 +306372,135.9,75.58 +306373,137.1,80.0147 +306374,136.24,78.534 +306375,135.42,77.059 +306376,134.64,75.59 +306377,135.71,80.0493 +306378,134.89,78.561 +306379,134.12,77.078 +306380,133.38,75.6 +306381,134.32,80.0829 +306382,133.55,78.588 +306383,132.82,77.097 +306384,132.12,75.612 +306385,132.93,80.1152 +306386,132.2,78.614 +306387,131.51,77.117 +306388,130.86,75.624 +306389,131.54,80.1464 +306390,130.85,78.64 +306391,130.21,77.137 +306392,129.61,75.638 +306393,130.14,80.1763 +306394,129.51,78.665 +306395,128.91,77.158 +306396,128.35,75.654 +306397,128.75,80.2051 +306398,128.16,78.69 +306399,127.61,77.179 +306400,127.1,75.67 +306401,127.36,80.2327 +306402,126.81,78.715 +306403,126.31,77.2 +306404,125.84,75.688 +306405,125.96,80.2592 +306406,125.47,78.739 +306407,125.01,77.222 +306408,124.59,75.707 +306409,124.57,80.2844 +306410,124.12,78.763 +306411,123.71,77.244 +306412,123.33,75.727 +306413,123.17,80.3084 +306414,122.77,78.787 +306415,122.41,77.266 +306416,122.08,75.748 +306417,121.78,80.3312 +306418,121.43,78.81 +306419,121.11,77.289 +306420,120.82,75.771 +306421,120.38,80.3529 +306422,120.08,78.832 +306423,119.81,77.313 +306424,119.57,75.795 +306425,118.99,80.3733 +306426,118.73,78.855 +306427,118.51,77.336 +306428,118.32,75.82 +306429,117.59,80.3926 +306430,117.38,78.876 +306431,117.21,77.361 +306432,117.06,75.847 +306433,116.2,80.4107 +306434,116.04,78.898 +306435,115.91,77.385 +306436,115.81,75.874 +306437,114.8,80.4275 +306438,114.69,78.919 +306439,114.61,77.41 +306440,114.56,75.903 +306441,113.41,80.4432 +306442,113.34,78.94 +306443,113.3,77.436 +306444,113.3,75.933 +306445,112.01,80.4578 +306446,111.99,78.96 +306447,112,77.462 +306448,112.05,75.965 +306449,110.62,80.4711 +306450,110.64,78.98 +306451,110.7,77.488 +306452,110.8,75.997 +306453,109.22,80.4833 +306454,109.3,78.999 +306455,109.4,77.515 +306456,109.54,76.031 +306457,107.83,80.4943 +306458,107.95,79.018 +306459,108.1,77.542 +306460,108.29,76.066 +306461,106.43,80.5041 +306462,106.6,79.037 +306463,106.8,77.569 +306464,107.03,76.103 +306465,105.04,80.5128 +306466,105.25,79.055 +306467,105.5,77.597 +306468,105.78,76.14 +306469,103.64,80.5204 +306470,103.91,79.073 +306471,104.2,77.626 +306472,104.53,76.179 +306473,102.25,80.5268 +306474,102.56,79.091 +306475,102.9,77.654 +306476,103.27,76.219 +306477,100.86,80.532 +306478,101.21,79.108 +306479,101.6,77.683 +306480,102.02,76.26 +306481,99.463,80.5362 +306482,99.863,79.125 +306483,100.3,77.713 +306484,100.76,76.302 +306485,98.07,80.5393 +306486,98.516,79.141 +306487,98.995,77.743 +306488,99.507,76.346 +306489,96.678,80.5412 +306490,97.169,79.157 +306491,97.693,77.773 +306492,98.252,76.39 +306493,95.286,80.5421 +306494,95.822,79.173 +306495,96.392,77.804 +306496,96.995,76.436 +306497,93.894,80.5419 +306498,94.475,79.188 +306499,95.09,77.835 +306500,95.739,76.483 +306501,92.503,80.5406 +306502,93.128,79.203 +306503,93.787,77.866 +306504,94.482,76.531 +306505,91.113,80.5382 +306506,91.782,79.218 +306507,92.485,77.898 +306508,93.224,76.58 +306509,89.723,80.5349 +306510,90.435,79.232 +306511,91.183,77.93 +306512,91.966,76.631 +306513,88.334,80.5305 +306514,89.089,79.246 +306515,89.88,77.963 +306516,90.707,76.682 +306517,86.946,80.525 +306518,87.743,79.26 +306519,88.577,77.996 +306520,89.447,76.734 +306521,85.558,80.5186 +306522,86.397,79.273 +306523,87.273,78.029 +306524,88.187,76.788 +306525,84.171,80.5112 +306526,85.052,79.286 +306527,85.97,78.062 +306528,86.926,76.842 +306529,82.784,80.5029 +306530,83.706,79.299 +306531,84.666,78.096 +306532,85.665,76.898 +306533,81.399,80.4935 +306534,82.361,79.311 +306535,83.362,78.131 +306536,84.402,76.954 +306537,80.014,80.4833 +306538,81.016,79.323 +306539,82.058,78.165 +306540,83.139,77.012 +306541,78.63,80.4721 +306542,79.672,79.335 +306543,80.753,78.2 +306544,81.875,77.07 +306545,77.247,80.46 +306546,78.327,79.346 +306547,79.448,78.235 +306548,80.61,77.13 +306549,75.865,80.4471 +306550,76.983,79.357 +306551,78.142,78.271 +306552,79.344,77.19 +306553,74.483,80.4332 +306554,75.639,79.368 +306555,76.837,78.307 +306556,78.077,77.252 +306557,73.103,80.4186 +306558,74.296,79.378 +306559,75.531,78.343 +306560,76.81,77.314 +306561,71.724,80.4031 +306562,72.953,79.389 +306563,74.224,78.379 +306564,75.541,77.377 +306565,70.345,80.3868 +306566,71.61,79.399 +306567,72.918,78.416 +306568,74.271,77.441 +306569,68.968,80.3697 +306570,70.267,79.408 +306571,71.611,78.453 +306572,73.001,77.506 +306573,67.591,80.3518 +306574,68.925,79.418 +306575,70.303,78.49 +306576,71.729,77.571 +306577,66.216,80.3332 +306578,67.583,79.427 +306579,68.995,78.528 +306580,70.456,77.637 +306581,64.842,80.3139 +306582,66.241,79.436 +306583,67.687,78.566 +306584,69.182,77.704 +306585,63.469,80.2938 +306586,64.9,79.445 +306587,66.378,78.604 +306588,67.906,77.772 +306589,62.097,80.2731 +306590,63.559,79.453 +306591,65.069,78.642 +306592,66.63,77.841 +306593,60.726,80.2518 +306594,62.218,79.462 +306595,63.76,78.68 +306596,65.352,77.91 +306597,59.357,80.2297 +306598,60.878,79.47 +306599,62.45,78.719 +306600,64.074,77.98 +306601,57.988,80.2071 +306602,59.539,79.478 +306603,61.139,78.758 +306604,62.794,78.05 +306605,56.621,80.1839 +306606,58.199,79.485 +306607,59.828,78.797 +306608,61.512,78.121 +306609,55.255,80.1602 +306610,56.86,79.493 +306611,58.517,78.837 +306612,60.23,78.193 +306613,53.89,80.1358 +306614,55.522,79.5 +306615,57.205,78.876 +306616,58.946,78.265 +306617,52.527,80.111 +306618,54.183,79.507 +306619,55.893,78.916 +306620,57.66,78.338 +306621,51.165,80.0857 +306622,52.846,79.515 +306623,54.581,78.956 +306624,56.373,78.411 +306625,49.804,80.0599 +306626,51.508,79.521 +306627,53.267,78.996 +306628,55.085,78.485 +306629,48.445,80.0337 +306630,50.171,79.528 +306631,51.954,79.036 +306632,53.796,78.559 +306633,47.086,80.007 +306634,48.835,79.535 +306635,50.64,79.076 +306636,52.505,78.634 +306637,45.73,79.98 +306638,47.499,79.541 +306639,49.325,79.117 +306640,51.213,78.709 +306641,44.374,79.953 +306642,46.163,79.548 +306643,48.01,79.157 +306644,49.919,78.785 +306645,43.02,79.925 +306646,44.828,79.554 +306647,46.694,79.198 +306648,48.624,78.86 +306649,41.668,79.897 +306650,43.493,79.56 +306651,45.378,79.239 +306652,47.327,78.936 +306653,40.316,79.868 +306654,42.159,79.566 +306655,44.061,79.28 +306656,46.028,79.013 +306657,38.967,79.84 +306658,40.825,79.572 +306659,42.744,79.321 +306660,44.729,79.089 +306661,37.618,79.811 +306662,39.492,79.578 +306663,41.426,79.362 +306664,43.427,79.166 +306665,36.271,79.782 +306666,38.159,79.584 +306667,40.108,79.403 +306668,42.124,79.243 +306669,34.926,79.753 +306670,36.827,79.589 +306671,38.789,79.444 +306672,40.82,79.32 +306673,33.582,79.724 +306674,35.495,79.595 +306675,37.47,79.486 +306676,39.514,79.397 +306677,32.239,79.694 +306678,34.163,79.601 +306679,36.15,79.527 +306680,38.206,79.475 +306681,30.898,79.664 +306682,32.832,79.607 +306683,34.83,79.568 +306684,36.897,79.552 +306685,29.558,79.635 +306686,31.502,79.612 +306687,33.509,79.61 +306688,35.586,79.63 +306689,28.22,79.605 +306690,30.172,79.618 +306691,32.187,79.651 +306692,34.274,79.707 +306693,26.883,79.575 +306694,28.842,79.624 +306695,30.865,79.693 +306696,32.96,79.785 +306697,25.548,79.546 +306698,27.513,79.629 +306699,29.543,79.734 +306700,31.644,79.862 +306701,24.214,79.516 +306702,26.185,79.635 +306703,28.22,79.775 +306704,30.327,79.94 +306705,22.882,79.487 +306706,24.857,79.641 +306707,26.896,79.817 +306708,29.008,80.0172 +306709,21.552,79.457 +306710,23.529,79.647 +306711,25.572,79.858 +306712,27.688,80.0944 +306713,20.222,79.428 +306714,22.202,79.652 +306715,24.247,79.899 +306716,26.366,80.1715 +306717,18.895,79.399 +306718,20.875,79.658 +306719,22.922,79.941 +306720,25.042,80.2483 +306721,17.568,79.37 +306722,19.549,79.664 +306723,21.596,79.982 +306724,23.717,80.325 +306725,16.244,79.341 +306726,18.224,79.67 +306727,20.269,80.0229 +306728,22.39,80.4014 +306729,14.92,79.312 +306730,16.898,79.676 +306731,18.942,80.0639 +306732,21.061,80.4775 +306733,13.599,79.284 +306734,15.574,79.683 +306735,17.615,80.1048 +306736,19.731,80.5533 +306737,12.279,79.256 +306738,14.249,79.689 +306739,16.286,80.1456 +306740,18.399,80.6288 +306741,10.96,79.228 +306742,12.926,79.695 +306743,14.958,80.1864 +306744,17.065,80.704 +306745,9.6425,79.201 +306746,11.603,79.702 +306747,13.629,80.227 +306748,15.73,80.7787 +306749,8.3267,79.174 +306750,10.28,79.709 +306751,12.299,80.2674 +306752,14.393,80.8531 +306753,7.0124,79.148 +306754,8.9576,79.716 +306755,10.968,80.3078 +306756,13.055,80.927 +306757,5.6995,79.122 +306758,7.6358,79.723 +306759,9.6376,80.348 +306760,11.715,81.0004 +306761,4.3881,79.096 +306762,6.3144,79.73 +306763,8.3061,80.388 +306764,10.373,81.0733 +306765,3.0781,79.071 +306766,4.9936,79.737 +306767,6.9742,80.4279 +306768,9.0302,81.1458 +306769,1.7696,79.046 +306770,3.6732,79.745 +306771,5.6417,80.4676 +306772,7.6855,81.2176 +306773,0.46248,79.022 +306774,2.3533,79.752 +306775,4.3087,80.5071 +306776,6.3392,81.2889 +306777,359.16,78.998 +306778,1.0338,79.76 +306779,2.9752,80.5464 +306780,4.9913,81.3596 +306781,357.85,78.975 +306782,359.71,79.768 +306783,1.6411,80.5855 +306784,3.6419,81.4297 +306785,356.55,78.953 +306786,358.4,79.777 +306787,0.30651,80.6244 +306788,2.291,81.4992 +306789,355.25,78.931 +306790,357.08,79.785 +306791,358.97,80.6632 +306792,0.93854,81.5679 +306793,353.95,78.91 +306794,355.76,79.794 +306795,357.64,80.7016 +306796,359.58,81.636 +306797,352.65,78.89 +306798,354.44,79.803 +306799,356.3,80.7399 +306800,358.23,81.7033 +306801,351.35,78.87 +306802,353.13,79.812 +306803,354.96,80.7779 +306804,356.87,81.7699 +306805,350.06,78.851 +306806,351.81,79.822 +306807,353.63,80.8157 +306808,355.51,81.8358 +306809,348.76,78.833 +306810,350.49,79.831 +306811,352.29,80.8532 +306812,354.15,81.9008 +306813,347.47,78.816 +306814,349.18,79.841 +306815,350.95,80.8904 +306816,352.79,81.965 +306817,346.18,78.799 +306818,347.86,79.852 +306819,349.61,80.9274 +306820,351.43,82.0284 +306821,344.88,78.783 +306822,346.55,79.862 +306823,348.27,80.9641 +306824,350.07,82.091 +306825,343.59,78.768 +306826,345.23,79.873 +306827,346.93,81.0006 +306828,348.7,82.1527 +306829,342.31,78.754 +306830,343.92,79.884 +306831,345.59,81.0367 +306832,347.33,82.2134 +306833,341.02,78.741 +306834,342.61,79.896 +306835,344.25,81.0725 +306836,345.97,82.2733 +306837,339.73,78.729 +306838,341.29,79.908 +306839,342.91,81.1081 +306840,344.6,82.3322 +306841,338.45,78.717 +306842,339.98,79.92 +306843,341.57,81.1433 +306844,343.23,82.3902 +306845,337.16,78.707 +306846,338.67,79.932 +306847,340.23,81.1782 +306848,341.85,82.4472 +306849,335.88,78.698 +306850,337.36,79.945 +306851,338.89,81.2128 +306852,340.48,82.5033 +306853,334.6,78.689 +306854,336.04,79.958 +306855,337.54,81.247 +306856,339.11,82.5583 +306857,333.32,78.682 +306858,334.73,79.971 +306859,336.2,81.281 +306860,337.73,82.6123 +306861,332.04,78.675 +306862,333.42,79.985 +306863,334.86,81.3145 +306864,336.36,82.6652 +306865,330.76,78.67 +306866,332.11,79.999 +306867,333.51,81.3478 +306868,334.98,82.7171 +306869,329.48,78.665 +306870,330.8,80.0136 +306871,332.17,81.3807 +306872,333.6,82.768 +306873,328.21,78.662 +306874,329.49,80.0285 +306875,330.83,81.4132 +306876,332.22,82.8177 +306877,326.93,78.66 +306878,328.18,80.0437 +306879,329.48,81.4454 +306880,330.84,82.8664 +306881,325.66,78.659 +306882,326.87,80.0593 +306883,328.14,81.4772 +306884,329.46,82.9139 +306885,324.38,78.659 +306886,325.56,80.0752 +306887,326.79,81.5086 +306888,328.07,82.9604 +306889,323.11,78.66 +306890,324.25,80.0915 +306891,325.44,81.5397 +306892,326.69,83.0057 +306893,321.84,78.662 +306894,322.94,80.1082 +306895,324.1,81.5704 +306896,325.31,83.0498 +306897,320.57,78.666 +306898,321.64,80.1253 +306899,322.75,81.6007 +306900,323.92,83.0928 +306901,319.3,78.67 +306902,320.33,80.1428 +306903,321.4,81.6306 +306904,322.54,83.1347 +306905,318.03,78.676 +306906,319.02,80.1607 +306907,320.06,81.6602 +306908,321.15,83.1753 +306909,316.76,78.683 +306910,317.71,80.179 +306911,318.71,81.6893 +306912,319.76,83.2148 +306913,315.49,78.691 +306914,316.4,80.1977 +306915,317.36,81.7181 +306916,318.37,83.2531 +306917,314.22,78.701 +306918,315.1,80.2168 +306919,316.01,81.7464 +306920,316.98,83.2902 +306921,312.95,78.712 +306922,313.79,80.2363 +306923,314.67,81.7744 +306924,315.59,83.3261 +306925,311.69,78.723 +306926,312.48,80.2562 +306927,313.32,81.8019 +306928,314.2,83.3608 +306929,310.42,78.736 +306930,311.17,80.2766 +306931,311.97,81.8291 +306932,312.81,83.3942 +306933,309.16,78.751 +306934,309.87,80.2973 +306935,310.62,81.8558 +306936,311.42,83.4265 +306937,307.89,78.766 +306938,308.56,80.3185 +306939,309.27,81.8822 +306940,310.03,83.4575 +306941,306.63,78.783 +306942,307.26,80.3401 +306943,307.92,81.9081 +306944,308.63,83.4873 +306945,305.36,78.801 +306946,305.95,80.3621 +306947,306.57,81.9336 +306948,307.24,83.5158 +306949,304.1,78.821 +306950,304.64,80.3845 +306951,305.22,81.9587 +306952,305.85,83.5431 +306953,302.84,78.841 +306954,303.34,80.4074 +306955,303.87,81.9834 +306956,304.45,83.5692 +306957,301.57,78.863 +306958,302.03,80.4306 +306959,302.52,82.0077 +306960,303.06,83.5941 +306961,300.31,78.886 +306962,300.72,80.4543 +306963,301.17,82.0316 +306964,301.66,83.6177 +306965,299.05,78.911 +306966,299.42,80.4785 +306967,299.82,82.055 +306968,300.27,83.64 +306969,297.79,78.936 +306970,298.11,80.503 +306971,298.47,82.0781 +306972,298.87,83.6611 +306973,296.53,78.963 +306974,296.81,80.528 +306975,297.12,82.1007 +306976,297.48,83.681 +306977,295.26,78.992 +306978,295.5,80.5534 +306979,295.77,82.1229 +306980,296.08,83.6997 +306981,294,79.021 +306982,294.2,80.5792 +306983,294.42,82.1447 +306984,294.68,83.7171 +306985,292.74,79.052 +306986,292.89,80.6054 +306987,293.07,82.1661 +306988,293.29,83.7333 +306989,291.48,79.084 +306990,291.58,80.6321 +306991,291.72,82.1871 +306992,291.89,83.7483 +306993,290.22,79.118 +306994,290.28,80.6592 +306995,290.37,82.2076 +306996,290.5,83.762 +306997,288.96,79.152 +306998,288.97,80.6867 +306999,289.02,82.2278 +307000,289.1,83.7745 +307001,287.7,79.188 +307002,287.67,80.7146 +307003,287.67,82.2476 +307004,287.7,83.7859 +307005,286.44,79.225 +307006,286.36,80.7429 +307007,286.32,82.2669 +307008,286.31,83.796 +307009,285.17,79.263 +307010,285.05,80.7717 +307011,284.97,82.2859 +307012,284.91,83.8049 +307013,283.91,79.303 +307014,283.75,80.8008 +307015,283.62,82.3044 +307016,283.51,83.8126 +307017,282.65,79.344 +307018,282.44,80.8304 +307019,282.27,82.3226 +307020,282.12,83.8192 +307021,281.39,79.386 +307022,281.14,80.8604 +307023,280.91,82.3403 +307024,280.72,83.8246 +307025,280.13,79.429 +307026,279.83,80.8907 +307027,279.56,82.3577 +307028,279.33,83.8288 +307029,278.87,79.474 +307030,278.52,80.9215 +307031,278.21,82.3747 +307032,277.93,83.8318 +307033,277.6,79.519 +307034,277.22,80.9527 +307035,276.86,82.3913 +307036,276.54,83.8338 +307037,276.34,79.566 +307038,275.91,80.9842 +307039,275.51,82.4075 +307040,275.14,83.8346 +307041,275.08,79.614 +307042,274.6,81.0162 +307043,274.16,82.4233 +307044,273.75,83.8342 +307045,273.81,79.663 +307046,273.3,81.0485 +307047,272.81,82.4388 +307048,272.35,83.8328 +307049,272.55,79.714 +307050,271.99,81.0812 +307051,271.46,82.4539 +307052,270.96,83.8303 +307053,271.28,79.765 +307054,270.68,81.1143 +307055,270.11,82.4686 +307056,269.57,83.8267 +307057,270.02,79.818 +307058,269.38,81.1478 +307059,268.76,82.483 +307060,268.18,83.822 +307061,268.75,79.872 +307062,268.07,81.1816 +307063,267.41,82.497 +307064,266.78,83.8163 +307065,267.49,79.926 +307066,266.76,81.2158 +307067,266.06,82.5107 +307068,265.39,83.8095 +307069,266.22,79.982 +307070,265.45,81.2503 +307071,264.71,82.524 +307072,264,83.8017 +307073,264.95,80.0392 +307074,264.14,81.2852 +307075,263.36,82.537 +307076,262.61,83.7929 +307077,263.69,80.0972 +307078,262.83,81.3204 +307079,262.01,82.5497 +307080,261.22,83.7832 +307081,262.42,80.1562 +307082,261.53,81.356 +307083,260.66,82.562 +307084,259.83,83.7724 +307085,261.15,80.2163 +307086,260.22,81.3919 +307087,259.32,82.574 +307088,258.45,83.7607 +307089,259.88,80.2773 +307090,258.91,81.4281 +307091,257.97,82.5857 +307092,257.06,83.7481 +307093,258.61,80.3392 +307094,257.6,81.4647 +307095,256.62,82.5971 +307096,255.67,83.7345 +307097,257.34,80.4022 +307098,256.29,81.5016 +307099,255.27,82.6081 +307100,254.29,83.72 +307101,256.06,80.466 +307102,254.98,81.5387 +307103,253.92,82.6189 +307104,252.9,83.7047 +307105,254.79,80.5308 +307106,253.67,81.5762 +307107,252.58,82.6294 +307108,251.52,83.6885 +307109,253.52,80.5964 +307110,252.36,81.614 +307111,251.23,82.6396 +307112,250.13,83.6714 +307113,252.24,80.663 +307114,251.04,81.652 +307115,249.88,82.6495 +307116,248.75,83.6536 +307117,250.96,80.7303 +307118,249.73,81.6903 +307119,248.53,82.6592 +307120,247.37,83.6349 +307121,249.69,80.7985 +307122,248.42,81.7289 +307123,247.19,82.6686 +307124,245.99,83.6155 +307125,248.41,80.8675 +307126,247.11,81.7678 +307127,245.84,82.6777 +307128,244.61,83.5953 +307129,247.13,80.9372 +307130,245.8,81.8069 +307131,244.5,82.6866 +307132,243.23,83.5744 +307133,245.85,81.0077 +307134,244.48,81.8463 +307135,243.15,82.6953 +307136,241.85,83.5527 +307137,244.57,81.079 +307138,243.17,81.8858 +307139,241.81,82.7037 +307140,240.48,83.5304 +307141,243.29,81.1509 +307142,241.86,81.9257 +307143,240.46,82.7119 +307144,239.1,83.5074 +307145,242,81.2235 +307146,240.54,81.9657 +307147,239.12,82.7199 +307148,237.73,83.4838 +307149,240.72,81.2967 +307150,239.23,82.006 +307151,237.77,82.7276 +307152,236.35,83.4596 +307153,239.43,81.3706 +307154,237.91,82.0465 +307155,236.43,82.7352 +307156,234.98,83.4347 +307157,238.15,81.445 +307158,236.6,82.0871 +307159,235.08,82.7426 +307160,233.61,83.4093 +307161,236.86,81.5201 +307162,235.28,82.128 +307163,233.74,82.7498 +307164,232.24,83.3834 +307165,235.57,81.5956 +307166,233.96,82.169 +307167,232.4,82.7568 +307168,230.87,83.3569 +307169,234.28,81.6717 +307170,232.65,82.2102 +307171,231.06,82.7637 +307172,229.51,83.33 +307173,232.99,81.7483 +307174,231.33,82.2516 +307175,229.71,82.7704 +307176,228.14,83.3026 +307177,231.69,81.8253 +307178,230.01,82.2931 +307179,228.37,82.777 +307180,226.77,83.2747 +307181,230.4,81.9027 +307182,228.69,82.3347 +307183,227.03,82.7834 +307184,225.41,83.2465 +307185,229.1,81.9806 +307186,227.38,82.3765 +307187,225.69,82.7897 +307188,224.05,83.2178 +307189,227.81,82.0588 +307190,226.06,82.4184 +307191,224.35,82.7959 +307192,222.69,83.1888 +307193,226.51,82.1373 +307194,224.74,82.4604 +307195,223.01,82.8019 +307196,221.33,83.1595 +307197,225.21,82.2162 +307198,223.42,82.5026 +307199,221.67,82.8079 +307200,219.97,83.1298 +307201,223.91,82.2953 +307202,222.1,82.5448 +307203,220.33,82.8138 +307204,218.61,83.0999 +307205,222.61,82.3747 +307206,220.77,82.5871 +307207,218.99,82.8195 +307208,217.26,83.0697 +307209,221.3,82.4544 +307210,219.45,82.6295 +307211,217.65,82.8253 +307212,215.9,83.0393 +307213,220,82.5342 +307214,218.13,82.6719 +307215,216.32,82.8309 +307216,214.55,83.0087 +307217,218.69,82.6142 +307218,216.81,82.7144 +307219,214.98,82.8365 +307220,213.2,82.978 +307221,217.38,82.6943 +307222,215.49,82.7569 +307223,213.64,82.8421 +307224,211.85,82.9471 +307225,216.07,82.7745 +307226,214.16,82.7995 +307227,212.3,82.8476 +307228,210.5,82.9161 +307229,214.76,82.8548 +307230,212.84,82.8421 +307231,210.97,82.8531 +307232,209.15,82.885 +307233,213.45,82.9351 +307234,211.51,82.8847 +307235,209.63,82.8585 +307236,207.8,82.8538 +307237,212.13,83.0154 +307238,210.19,82.9273 +307239,208.3,82.864 +307240,206.46,82.8227 +307241,210.82,83.0957 +307242,208.86,82.97 +307243,206.96,82.8695 +307244,205.11,82.7915 +307245,209.5,83.176 +307246,207.54,83.0126 +307247,205.63,82.875 +307248,203.77,82.7603 +307249,208.18,83.2561 +307250,206.21,83.0551 +307251,204.29,82.8805 +307252,202.43,82.7293 +307253,206.86,83.3362 +307254,204.88,83.0977 +307255,202.96,82.886 +307256,201.09,82.6983 +307257,205.54,83.4161 +307258,203.55,83.1402 +307259,201.63,82.8916 +307260,199.75,82.6674 +307261,204.22,83.4959 +307262,202.23,83.1826 +307263,200.3,82.8972 +307264,198.42,82.6367 +307265,202.89,83.5754 +307266,200.9,83.225 +307267,198.96,82.9029 +307268,197.08,82.6061 +307269,201.56,83.6547 +307270,199.57,83.2673 +307271,197.63,82.9087 +307272,195.75,82.5757 +307273,200.24,83.7338 +307274,198.24,83.3095 +307275,196.3,82.9145 +307276,194.42,82.5456 +307277,198.91,83.8125 +307278,196.91,83.3517 +307279,194.97,82.9204 +307280,193.09,82.5157 +307281,197.58,83.891 +307282,195.58,83.3937 +307283,193.64,82.9265 +307284,191.76,82.4861 +307285,196.24,83.969 +307286,194.24,83.4356 +307287,192.31,82.9326 +307288,190.43,82.4569 +307289,194.91,84.0467 +307290,192.91,83.4774 +307291,190.98,82.9388 +307292,189.1,82.4279 +307293,193.57,84.124 +307294,191.58,83.519 +307295,189.65,82.9452 +307296,187.78,82.3994 +307297,192.24,84.2008 +307298,190.25,83.5605 +307299,188.32,82.9517 +307300,186.46,82.3712 +307301,190.9,84.2772 +307302,188.91,83.6019 +307303,186.99,82.9584 +307304,185.13,82.3434 +307305,189.56,84.3531 +307306,187.58,83.6431 +307307,185.67,82.9652 +307308,183.81,82.3161 +307309,188.21,84.4285 +307310,186.24,83.6841 +307311,184.34,82.9722 +307312,182.49,82.2893 +307313,186.87,84.5032 +307314,184.91,83.725 +307315,183.01,82.9793 +307316,181.17,82.263 +307317,185.53,84.5775 +307318,183.57,83.7656 +307319,181.69,82.9867 +307320,179.86,82.2372 +307321,184.18,84.6511 +307322,182.24,83.8061 +307323,180.36,82.9942 +307324,178.54,82.212 +307325,182.83,84.724 +307326,180.9,83.8463 +307327,179.04,83.0019 +307328,177.23,82.1873 +307329,181.48,84.7964 +307330,179.56,83.8864 +307331,177.71,83.0099 +307332,175.92,82.1633 +307333,180.13,84.868 +307334,178.23,83.9262 +307335,176.39,83.018 +307336,174.61,82.1399 +307337,178.78,84.9389 +307338,176.89,83.9658 +307339,175.06,83.0264 +307340,173.3,82.1172 +307341,177.42,85.0091 +307342,175.55,84.0051 +307343,173.74,83.035 +307344,171.99,82.0951 +307345,176.07,85.0785 +307346,174.21,84.0442 +307347,172.42,83.0438 +307348,170.68,82.0737 +307349,174.71,85.1471 +307350,172.87,84.083 +307351,171.09,83.0529 +307352,169.37,82.0531 +307353,173.35,85.2149 +307354,171.53,84.1216 +307355,169.77,83.0622 +307356,168.07,82.0333 +307357,171.99,85.2818 +307358,170.19,84.1599 +307359,168.45,83.0719 +307360,166.77,82.0142 +307361,170.63,85.3479 +307362,168.85,84.1979 +307363,167.13,83.0817 +307364,165.46,81.9959 +307365,169.27,85.4132 +307366,167.5,84.2356 +307367,165.81,83.0919 +307368,164.16,81.9785 +307369,167.91,85.4775 +307370,166.16,84.2731 +307371,164.48,83.1024 +307372,162.86,81.9619 +307373,166.54,85.5409 +307374,164.82,84.3102 +307375,163.16,83.1131 +307376,161.56,81.9461 +307377,165.18,85.6033 +307378,163.48,84.347 +307379,161.84,83.1241 +307380,160.27,81.9313 +307381,163.81,85.6648 +307382,162.13,84.3835 +307383,160.52,83.1355 +307384,158.97,81.9174 +307385,162.44,85.7253 +307386,160.79,84.4197 +307387,159.2,83.1472 +307388,157.68,81.9044 +307389,161.07,85.7848 +307390,159.44,84.4555 +307391,157.89,83.1592 +307392,156.38,81.8924 +307393,159.7,85.8432 +307394,158.1,84.491 +307395,156.57,83.1715 +307396,155.09,81.8813 +307397,158.33,85.9006 +307398,156.75,84.5261 +307399,155.25,83.1841 +307400,153.8,81.8712 +307401,156.95,85.9569 +307402,155.41,84.5609 +307403,153.93,83.1971 +307404,152.51,81.8622 +307405,155.58,86.0122 +307406,154.06,84.5954 +307407,152.61,83.2105 +307408,151.22,81.8542 +307409,154.2,86.0664 +307410,152.72,84.6295 +307411,151.3,83.2241 +307412,149.93,81.8472 +307413,152.82,86.1194 +307414,151.37,84.6632 +307415,149.98,83.2382 +307416,148.64,81.8413 +307417,151.44,86.1713 +307418,150.02,84.6965 +307419,148.66,83.2526 +307420,147.35,81.8365 +307421,150.06,86.2221 +307422,148.67,84.7295 +307423,147.35,83.2674 +307424,146.07,81.8328 +307425,148.68,86.2717 +307426,147.33,84.7621 +307427,146.03,83.2825 +307428,144.78,81.8302 +307429,147.3,86.3201 +307430,145.98,84.7943 +307431,144.71,83.2981 +307432,143.5,81.8287 +307433,145.92,86.3674 +307434,144.63,84.8261 +307435,143.4,83.314 +307436,142.22,81.8284 +307437,144.54,86.4134 +307438,143.28,84.8575 +307439,142.08,83.3303 +307440,140.93,81.8292 +307441,143.15,86.4583 +307442,141.93,84.8885 +307443,140.77,83.347 +307444,139.65,81.8312 +307445,141.77,86.5019 +307446,140.58,84.9191 +307447,139.45,83.3641 +307448,138.37,81.8344 +307449,140.38,86.5443 +307450,139.23,84.9493 +307451,138.14,83.3816 +307452,137.09,81.8388 +307453,138.99,86.5854 +307454,137.88,84.979 +307455,136.82,83.3995 +307456,135.81,81.8444 +307457,137.61,86.6253 +307458,136.53,85.0084 +307459,135.51,83.4178 +307460,134.53,81.8512 +307461,136.22,86.664 +307462,135.18,85.0373 +307463,134.19,83.4365 +307464,133.26,81.8593 +307465,134.83,86.7013 +307466,133.83,85.0658 +307467,132.88,83.4556 +307468,131.98,81.8685 +307469,133.44,86.7374 +307470,132.48,85.0939 +307471,131.57,83.4751 +307472,130.7,81.8791 +307473,132.05,86.7722 +307474,131.12,85.1216 +307475,130.25,83.4951 +307476,129.43,81.8909 +307477,130.65,86.8058 +307478,129.77,85.1488 +307479,128.94,83.5154 +307480,128.15,81.9039 +307481,129.26,86.838 +307482,128.42,85.1756 +307483,127.63,83.5362 +307484,126.88,81.9183 +307485,127.87,86.8689 +307486,127.07,85.202 +307487,126.31,83.5575 +307488,125.6,81.9339 +307489,126.48,86.8986 +307490,125.72,85.2279 +307491,125,83.5791 +307492,124.33,81.9508 +307493,125.08,86.9269 +307494,124.36,85.2534 +307495,123.69,83.6012 +307496,123.06,81.969 +307497,123.69,86.9539 +307498,123.01,85.2785 +307499,122.38,83.6237 +307500,121.78,81.9885 +307501,122.29,86.9797 +307502,121.66,85.3031 +307503,121.06,83.6466 +307504,120.51,82.0092 +307505,120.9,87.0041 +307506,120.3,85.3273 +307507,119.75,83.67 +307508,119.24,82.0313 +307509,119.5,87.0272 +307510,118.95,85.351 +307511,118.44,83.6938 +307512,117.97,82.0547 +307513,118.11,87.049 +307514,117.6,85.3743 +307515,117.13,83.718 +307516,116.7,82.0794 +307517,116.71,87.0695 +307518,116.24,85.3972 +307519,115.82,83.7427 +307520,115.43,82.1054 +307521,115.31,87.0887 +307522,114.89,85.4196 +307523,114.5,83.7678 +307524,114.15,82.1327 +307525,113.92,87.1065 +307526,113.53,85.4415 +307527,113.19,83.7933 +307528,112.88,82.1613 +307529,112.52,87.1231 +307530,112.18,85.4631 +307531,111.88,83.8192 +307532,111.61,82.1912 +307533,111.12,87.1384 +307534,110.83,85.4842 +307535,110.57,83.8456 +307536,110.34,82.2225 +307537,109.72,87.1524 +307538,109.47,85.5049 +307539,109.25,83.8724 +307540,109.07,82.255 +307541,108.33,87.1651 +307542,108.12,85.5251 +307543,107.94,83.8996 +307544,107.8,82.2888 +307545,106.93,87.1765 +307546,106.76,85.5449 +307547,106.63,83.9273 +307548,106.53,82.324 +307549,105.53,87.1867 +307550,105.41,85.5642 +307551,105.32,83.9554 +307552,105.26,82.3604 +307553,104.13,87.1956 +307554,104.05,85.5832 +307555,104.01,83.9839 +307556,103.99,82.3981 +307557,102.74,87.2032 +307558,102.7,85.6017 +307559,102.69,84.0128 +307560,102.72,82.437 +307561,101.34,87.2096 +307562,101.34,85.6198 +307563,101.38,84.0422 +307564,101.45,82.4773 +307565,99.94,87.2147 +307566,99.989,85.6374 +307567,100.07,84.0719 +307568,100.18,82.5188 +307569,98.542,87.2186 +307570,98.634,85.6547 +307571,98.758,84.1021 +307572,98.911,82.5616 +307573,97.144,87.2213 +307574,97.28,85.6715 +307575,97.445,84.1327 +307576,97.641,82.6056 +307577,95.747,87.2227 +307578,95.925,85.6879 +307579,96.133,84.1637 +307580,96.37,82.6509 +307581,94.35,87.223 +307582,94.57,85.7039 +307583,94.82,84.195 +307584,95.099,82.6973 +307585,92.953,87.2221 +307586,93.216,85.7195 +307587,93.507,84.2268 +307588,93.827,82.7451 +307589,91.557,87.22 +307590,91.861,85.7347 +307591,92.195,84.259 +307592,92.556,82.794 +307593,90.16,87.2167 +307594,90.507,85.7495 +307595,90.882,84.2916 +307596,91.284,82.8441 +307597,88.764,87.2123 +307598,89.153,85.7639 +307599,89.568,84.3245 +307600,90.011,82.8954 +307601,87.369,87.2067 +307602,87.798,85.7779 +307603,88.255,84.3579 +307604,88.739,82.9478 +307605,85.974,87.2001 +307606,86.444,85.7915 +307607,86.942,84.3916 +307608,87.465,83.0015 +307609,84.579,87.1923 +307610,85.09,85.8047 +307611,85.628,84.4256 +307612,86.192,83.0562 +307613,83.185,87.1834 +307614,83.736,85.8176 +307615,84.314,84.4601 +307616,84.918,83.1121 +307617,81.791,87.1735 +307618,82.382,85.8301 +307619,83,84.4949 +307620,83.643,83.1691 +307621,80.398,87.1625 +307622,81.029,85.8423 +307623,81.686,84.53 +307624,82.368,83.2272 +307625,79.005,87.1504 +307626,79.675,85.8541 +307627,80.371,84.5656 +307628,81.092,83.2864 +307629,77.613,87.1374 +307630,78.322,85.8655 +307631,79.056,84.6014 +307632,79.816,83.3466 +307633,76.221,87.1233 +307634,76.969,85.8766 +307635,77.741,84.6376 +307636,78.539,83.4079 +307637,74.83,87.1083 +307638,75.616,85.8873 +307639,76.426,84.6741 +307640,77.261,83.4702 +307641,73.44,87.0923 +307642,74.263,85.8977 +307643,75.111,84.711 +307644,75.983,83.5335 +307645,72.051,87.0753 +307646,72.91,85.9078 +307647,73.795,84.7481 +307648,74.704,83.5977 +307649,70.662,87.0574 +307650,71.558,85.9176 +307651,72.479,84.7856 +307652,73.424,83.663 +307653,69.274,87.0387 +307654,70.206,85.9271 +307655,71.163,84.8233 +307656,72.144,83.7292 +307657,67.887,87.019 +307658,68.854,85.9362 +307659,69.846,84.8614 +307660,70.862,83.7962 +307661,66.5,86.9985 +307662,67.502,85.9451 +307663,68.529,84.8998 +307664,69.58,83.8642 +307665,65.115,86.9772 +307666,66.151,85.9536 +307667,67.212,84.9384 +307668,68.297,83.9331 +307669,63.73,86.955 +307670,64.8,85.9619 +307671,65.894,84.9773 +307672,67.013,84.0028 +307673,62.346,86.932 +307674,63.449,85.9699 +307675,64.576,85.0165 +307676,65.729,84.0734 +307677,60.963,86.9083 +307678,62.098,85.9777 +307679,63.258,85.0559 +307680,64.443,84.1447 +307681,59.581,86.8839 +307682,60.748,85.9852 +307683,61.939,85.0956 +307684,63.156,84.2168 +307685,58.2,86.8587 +307686,59.397,85.9924 +307687,60.62,85.1355 +307688,61.869,84.2897 +307689,56.82,86.8328 +307690,58.048,85.9994 +307691,59.301,85.1756 +307692,60.58,84.3633 +307693,55.441,86.8063 +307694,56.698,86.0061 +307695,57.981,85.216 +307696,59.29,84.4376 +307697,54.063,86.7791 +307698,55.349,86.0127 +307699,56.661,85.2566 +307700,58,84.5126 +307701,52.686,86.7513 +307702,54,86.019 +307703,55.341,85.2974 +307704,56.708,84.5883 +307705,51.31,86.7229 +307706,52.651,86.0251 +307707,54.02,85.3383 +307708,55.415,84.6645 +307709,49.935,86.6939 +307710,51.303,86.031 +307711,52.698,85.3795 +307712,54.121,84.7414 +307713,48.562,86.6644 +307714,49.955,86.0367 +307715,51.377,85.4209 +307716,52.826,84.8188 +307717,47.189,86.6343 +307718,48.608,86.0422 +307719,50.055,85.4624 +307720,51.53,84.8967 +307721,45.817,86.6038 +307722,47.26,86.0475 +307723,48.732,85.5041 +307724,50.233,84.9752 +307725,44.447,86.5729 +307726,45.913,86.0527 +307727,47.409,85.5459 +307728,48.934,85.0541 +307729,43.078,86.5414 +307730,44.567,86.0578 +307731,46.086,85.5878 +307732,47.635,85.1335 +307733,41.71,86.5096 +307734,43.221,86.0627 +307735,44.762,85.6299 +307736,46.334,85.2133 +307737,40.343,86.4774 +307738,41.875,86.0674 +307739,43.438,85.6721 +307740,45.031,85.2935 +307741,38.977,86.4449 +307742,40.53,86.072 +307743,42.113,85.7145 +307744,43.728,85.3741 +307745,37.613,86.412 +307746,39.185,86.0766 +307747,40.788,85.7569 +307748,42.423,85.455 +307749,36.25,86.3789 +307750,37.84,86.081 +307751,39.462,85.7994 +307752,41.117,85.5362 +307753,34.888,86.3455 +307754,36.496,86.0853 +307755,38.136,85.842 +307756,39.81,85.6176 +307757,33.527,86.3118 +307758,35.152,86.0895 +307759,36.809,85.8846 +307760,38.501,85.6993 +307761,32.168,86.278 +307762,33.808,86.0936 +307763,35.482,85.9274 +307764,37.191,85.7812 +307765,30.81,86.2439 +307766,32.465,86.0977 +307767,34.155,85.9701 +307768,35.88,85.8633 +307769,29.453,86.2097 +307770,31.122,86.1017 +307771,32.827,86.0129 +307772,34.568,85.9455 +307773,28.097,86.1754 +307774,29.78,86.1057 +307775,31.498,86.0558 +307776,33.254,86.0279 +307777,26.743,86.141 +307778,28.438,86.1096 +307779,30.169,86.0986 +307780,31.938,86.1103 +307781,25.39,86.1066 +307782,27.097,86.1135 +307783,28.84,86.1415 +307784,30.621,86.1928 +307785,24.039,86.0721 +307786,25.756,86.1174 +307787,27.51,86.1844 +307788,29.303,86.2753 +307789,22.689,86.0376 +307790,24.415,86.1212 +307791,26.179,86.2272 +307792,27.984,86.3578 +307793,21.34,86.0031 +307794,23.075,86.1251 +307795,24.849,86.27 +307796,26.663,86.4402 +307797,19.992,85.9687 +307798,21.735,86.129 +307799,23.517,86.3128 +307800,25.34,86.5226 +307801,18.646,85.9343 +307802,20.396,86.1329 +307803,22.185,86.3556 +307804,24.017,86.6048 +307805,17.301,85.9001 +307806,19.057,86.1368 +307807,20.853,86.3982 +307808,22.691,86.6869 +307809,15.958,85.8661 +307810,17.718,86.1408 +307811,19.52,86.4409 +307812,21.365,86.7689 +307813,14.615,85.8321 +307814,16.38,86.1448 +307815,18.186,86.4834 +307816,20.037,86.8506 +307817,13.275,85.7984 +307818,15.043,86.1489 +307819,16.852,86.5259 +307820,18.707,86.9321 +307821,11.935,85.765 +307822,13.705,86.1531 +307823,15.518,86.5683 +307824,17.376,87.0133 +307825,10.597,85.7318 +307826,12.368,86.1573 +307827,14.183,86.6105 +307828,16.043,87.0943 +307829,9.2603,85.6988 +307830,11.032,86.1617 +307831,12.847,86.6527 +307832,14.709,87.1749 +307833,7.9249,85.6662 +307834,9.6961,86.1661 +307835,11.511,86.6947 +307836,13.374,87.2551 +307837,6.5908,85.634 +307838,8.3606,86.1706 +307839,10.174,86.7366 +307840,12.037,87.335 +307841,5.2581,85.6021 +307842,7.0254,86.1753 +307843,8.8374,86.7783 +307844,10.699,87.4144 +307845,3.9268,85.5706 +307846,5.6908,86.1801 +307847,7.4998,86.8199 +307848,9.3591,87.4933 +307849,2.5968,85.5395 +307850,4.3565,86.185 +307851,6.1617,86.8613 +307852,8.0179,87.5718 +307853,1.2681,85.5089 +307854,3.0226,86.1901 +307855,4.8231,86.9025 +307856,6.6752,87.6498 +307857,359.94,85.4788 +307858,1.6892,86.1953 +307859,3.4841,86.9436 +307860,5.3311,87.7272 +307861,358.61,85.4492 +307862,0.35618,86.2007 +307863,2.1445,86.9844 +307864,3.9856,87.8041 +307865,357.29,85.4201 +307866,359.02,86.2062 +307867,0.80436,87.0251 +307868,2.6385,87.8803 +307869,355.97,85.3916 +307870,357.69,86.212 +307871,359.46,87.0655 +307872,1.2901,87.956 +307873,354.64,85.3637 +307874,356.36,86.2179 +307875,358.12,87.1057 +307876,359.94,88.0309 +307877,353.32,85.3364 +307878,355.03,86.2241 +307879,356.78,87.1457 +307880,358.59,88.1052 +307881,352,85.3098 +307882,353.7,86.2305 +307883,355.44,87.1855 +307884,357.24,88.1787 +307885,350.69,85.2838 +307886,352.37,86.237 +307887,354.1,87.2249 +307888,355.88,88.2515 +307889,349.37,85.2585 +307890,351.04,86.2438 +307891,352.75,87.2642 +307892,354.53,88.3236 +307893,348.05,85.234 +307894,349.71,86.2509 +307895,351.41,87.3031 +307896,353.17,88.3948 +307897,346.74,85.2102 +307898,348.38,86.2582 +307899,350.07,87.3418 +307900,351.81,88.4652 +307901,345.42,85.1871 +307902,347.05,86.2657 +307903,348.72,87.3802 +307904,350.45,88.5348 +307905,344.11,85.1649 +307906,345.72,86.2735 +307907,347.38,87.4183 +307908,349.09,88.6034 +307909,342.8,85.1435 +307910,344.39,86.2816 +307911,346.03,87.456 +307912,347.73,88.6712 +307913,341.49,85.1229 +307914,343.06,86.2899 +307915,344.69,87.4935 +307916,346.36,88.7381 +307917,340.18,85.1032 +307918,341.74,86.2986 +307919,343.34,87.5307 +307920,345,88.804 +307921,338.88,85.0843 +307922,340.41,86.3075 +307923,341.99,87.5675 +307924,343.63,88.8689 +307925,337.57,85.0664 +307926,339.08,86.3167 +307927,340.64,87.604 +307928,342.27,88.9328 +307929,336.26,85.0495 +307930,337.76,86.3263 +307931,339.3,87.6401 +307932,340.9,88.9957 +307933,334.96,85.0334 +307934,336.43,86.3361 +307935,337.95,87.6759 +307936,339.53,89.05759 +307937,333.66,85.0184 +307938,335.1,86.3463 +307939,336.6,87.7114 +307940,338.16,89.11839 +307941,332.36,85.0043 +307942,333.78,86.3568 +307943,335.25,87.7465 +307944,336.78,89.17811 +307945,331.05,84.9913 +307946,332.45,86.3676 +307947,333.9,87.7812 +307948,335.41,89.23673 +307949,329.75,84.9793 +307950,331.13,86.3787 +307951,332.55,87.8155 +307952,334.04,89.29422 +307953,328.46,84.9683 +307954,329.8,86.3903 +307955,331.2,87.8495 +307956,332.66,89.35057 +307957,327.16,84.9584 +307958,328.48,86.4021 +307959,329.85,87.883 +307960,331.28,89.40575 +307961,325.86,84.9496 +307962,327.16,86.4143 +307963,328.5,87.9162 +307964,329.9,89.45976 +307965,324.56,84.9419 +307966,325.83,86.4269 +307967,327.15,87.9489 +307968,328.52,89.51257 +307969,323.27,84.9353 +307970,324.51,86.4399 +307971,325.8,87.9813 +307972,327.14,89.56417 +307973,321.97,84.9299 +307974,323.19,86.4532 +307975,324.45,88.0132 +307976,325.76,89.61454 +307977,320.68,84.9256 +307978,321.86,86.4669 +307979,323.09,88.0448 +307980,324.38,89.66367 +307981,319.39,84.9225 +307982,320.54,86.481 +307983,321.74,88.0759 +307984,323,89.71154 +307985,318.1,84.9206 +307986,319.22,86.4955 +307987,320.39,88.1065 +307988,321.61,89.75814 +307989,316.81,84.9199 +307990,317.9,86.5104 +307991,319.03,88.1368 +307992,320.23,89.80345 +307993,315.52,84.9203 +307994,316.57,86.5257 +307995,317.68,88.1666 +307996,318.84,89.84747 +307997,314.23,84.922 +307998,315.25,86.5413 +307999,316.33,88.1959 +308000,317.45,89.89017 +308001,312.94,84.925 +308002,313.93,86.5574 +308003,314.97,88.2249 +308004,316.07,89.931563 +308005,311.65,84.9292 +308006,312.61,86.5739 +308007,313.62,88.2533 +308008,314.68,89.971621 +308009,310.36,84.9346 +308010,311.29,86.5908 +308011,312.26,88.2814 +308012,313.29,90.01034 +308013,309.08,84.9413 +308014,309.97,86.6081 +308015,310.91,88.3089 +308016,311.9,90.04771 +308017,307.79,84.9493 +308018,308.65,86.6259 +308019,309.55,88.336 +308020,310.51,90.083725 +308021,306.5,84.9586 +308022,307.33,86.644 +308023,308.2,88.3627 +308024,309.11,90.11838 +308025,305.22,84.9692 +308026,306.01,86.6626 +308027,306.84,88.3889 +308028,307.72,90.15166 +308029,303.93,84.981 +308030,304.69,86.6816 +308031,305.48,88.4146 +308032,306.33,90.18356 +308033,302.65,84.9942 +308034,303.37,86.701 +308035,304.13,88.4398 +308036,304.94,90.21408 +308037,301.37,85.0087 +308038,302.05,86.7209 +308039,302.77,88.4646 +308040,303.54,90.24322 +308041,300.08,85.0245 +308042,300.73,86.7412 +308043,301.41,88.4889 +308044,302.15,90.27097 +308045,298.8,85.0417 +308046,299.41,86.7619 +308047,300.06,88.5128 +308048,300.75,90.29732 +308049,297.52,85.0602 +308050,298.09,86.7831 +308051,298.7,88.5361 +308052,299.35,90.32228 +308053,296.24,85.08 +308054,296.77,86.8047 +308055,297.34,88.559 +308056,297.96,90.34585 +308057,294.96,85.1011 +308058,295.45,86.8267 +308059,295.98,88.5815 +308060,296.56,90.36802 +308061,293.67,85.1236 +308062,294.13,86.8492 +308063,294.63,88.6034 +308064,295.16,90.38879 +308065,292.39,85.1474 +308066,292.81,86.8721 +308067,293.27,88.6249 +308068,293.77,90.40816 +308069,291.11,85.1726 +308070,291.49,86.8954 +308071,291.91,88.6459 +308072,292.37,90.42614 +308073,289.83,85.1991 +308074,290.17,86.9192 +308075,290.55,88.6664 +308076,290.97,90.44273 +308077,288.55,85.2269 +308078,288.85,86.9434 +308079,289.19,88.6864 +308080,289.57,90.45793 +308081,287.27,85.2561 +308082,287.54,86.9681 +308083,287.83,88.706 +308084,288.17,90.47174 +308085,285.99,85.2866 +308086,286.22,86.9931 +308087,286.48,88.7251 +308088,286.77,90.48417 +308089,284.71,85.3185 +308090,284.9,87.0187 +308091,285.12,88.7437 +308092,285.37,90.49523 +308093,283.43,85.3517 +308094,283.58,87.0446 +308095,283.76,88.7619 +308096,283.97,90.50491 +308097,282.15,85.3862 +308098,282.26,87.071 +308099,282.4,88.7796 +308100,282.57,90.51324 +308101,280.87,85.422 +308102,280.94,87.0978 +308103,281.04,88.7968 +308104,281.18,90.5202 +308105,279.59,85.4592 +308106,279.62,87.125 +308107,279.68,88.8135 +308108,279.78,90.52581 +308109,278.31,85.4977 +308110,278.3,87.1526 +308111,278.32,88.8298 +308112,278.38,90.53009 +308113,277.03,85.5374 +308114,276.98,87.1807 +308115,276.96,88.8457 +308116,276.98,90.53303 +308117,275.75,85.5785 +308118,275.66,87.2092 +308119,275.6,88.861 +308120,275.58,90.53465 +308121,274.47,85.6208 +308122,274.34,87.2381 +308123,274.25,88.876 +308124,274.18,90.53497 +308125,273.19,85.6645 +308126,273.03,87.2674 +308127,272.89,88.8905 +308128,272.78,90.53398 +308129,271.91,85.7094 +308130,271.71,87.2971 +308131,271.53,88.9045 +308132,271.38,90.5317 +308133,270.63,85.7555 +308134,270.39,87.3272 +308135,270.17,88.9181 +308136,269.98,90.52815 +308137,269.35,85.8029 +308138,269.07,87.3578 +308139,268.81,88.9312 +308140,268.58,90.52334 +308141,268.07,85.8516 +308142,267.75,87.3887 +308143,267.45,88.944 +308144,267.18,90.51728 +308145,266.79,85.9014 +308146,266.43,87.42 +308147,266.09,88.9562 +308148,265.78,90.50999 +308149,265.51,85.9525 +308150,265.11,87.4517 +308151,264.73,88.9681 +308152,264.39,90.50147 +308153,264.22,86.0048 +308154,263.79,87.4838 +308155,263.37,88.9796 +308156,262.99,90.49176 +308157,262.94,86.0582 +308158,262.47,87.5162 +308159,262.02,88.9906 +308160,261.59,90.48086 +308161,261.66,86.1129 +308162,261.15,87.549 +308163,260.66,89.00121 +308164,260.19,90.46879 +308165,260.37,86.1686 +308166,259.82,87.5822 +308167,259.3,89.01143 +308168,258.8,90.45556 +308169,259.09,86.2255 +308170,258.5,87.6158 +308171,257.94,89.02125 +308172,257.4,90.4412 +308173,257.8,86.2836 +308174,257.18,87.6497 +308175,256.58,89.03068 +308176,256,90.42573 +308177,256.52,86.3427 +308178,255.86,87.6839 +308179,255.22,89.03972 +308180,254.61,90.40916 +308181,255.23,86.4029 +308182,254.54,87.7185 +308183,253.87,89.04838 +308184,253.22,90.39151 +308185,253.95,86.4642 +308186,253.22,87.7535 +308187,252.51,89.05667 +308188,251.82,90.3728 +308189,252.66,86.5265 +308190,251.9,87.7887 +308191,251.15,89.06459 +308192,250.43,90.35306 +308193,251.37,86.5899 +308194,250.57,87.8243 +308195,249.79,89.07215 +308196,249.04,90.3323 +308197,250.08,86.6542 +308198,249.25,87.8602 +308199,248.44,89.07935 +308200,247.64,90.31055 +308201,248.79,86.7196 +308202,247.93,87.8964 +308203,247.08,89.08621 +308204,246.25,90.28782 +308205,247.5,86.7859 +308206,246.6,87.9329 +308207,245.72,89.09274 +308208,244.86,90.26415 +308209,246.21,86.8531 +308210,245.28,87.9697 +308211,244.37,89.09893 +308212,243.47,90.23955 +308213,244.92,86.9213 +308214,243.96,88.0068 +308215,243.01,89.10479 +308216,242.08,90.21405 +308217,243.63,86.9903 +308218,242.63,88.0441 +308219,241.65,89.11034 +308220,240.69,90.18766 +308221,242.34,87.0603 +308222,241.31,88.0817 +308223,240.3,89.11559 +308224,239.31,90.16042 +308225,241.04,87.131 +308226,239.98,88.1196 +308227,238.94,89.12053 +308228,237.92,90.13235 +308229,239.75,87.2026 +308230,238.66,88.1578 +308231,237.59,89.12518 +308232,236.53,90.10348 +308233,238.45,87.275 +308234,237.33,88.1961 +308235,236.23,89.12955 +308236,235.15,90.073826 +308237,237.16,87.3482 +308238,236.01,88.2348 +308239,234.88,89.13364 +308240,233.76,90.043417 +308241,235.86,87.4221 +308242,234.68,88.2736 +308243,233.52,89.13747 +308244,232.38,90.01228 +308245,234.56,87.4967 +308246,233.36,88.3127 +308247,232.17,89.14104 +308248,231,89.980441 +308249,233.26,87.5721 +308250,232.03,88.3519 +308251,230.81,89.14436 +308252,229.62,89.947927 +308253,231.96,87.6481 +308254,230.7,88.3914 +308255,229.46,89.14744 +308256,228.24,89.914765 +308257,230.66,87.7247 +308258,229.37,88.431 +308259,228.11,89.15029 +308260,226.86,89.88098 +308261,229.36,87.8019 +308262,228.05,88.4709 +308263,226.75,89.15292 +308264,225.48,89.84661 +308265,228.05,87.8797 +308266,226.72,88.5109 +308267,225.4,89.15534 +308268,224.1,89.81167 +308269,226.75,87.9581 +308270,225.39,88.551 +308271,224.05,89.15756 +308272,222.73,89.77619 +308273,225.44,88.0369 +308274,224.06,88.5913 +308275,222.7,89.15958 +308276,221.35,89.7402 +308277,224.14,88.1163 +308278,222.73,88.6318 +308279,221.34,89.16142 +308280,219.98,89.70374 +308281,222.83,88.1961 +308282,221.4,88.6724 +308283,219.99,89.16309 +308284,218.6,89.66682 +308285,221.52,88.2764 +308286,220.07,88.7131 +308287,218.64,89.16459 +308288,217.23,89.62948 +308289,220.21,88.3571 +308290,218.74,88.7539 +308291,217.29,89.16594 +308292,215.86,89.59175 +308293,218.9,88.4381 +308294,217.41,88.7948 +308295,215.94,89.16714 +308296,214.49,89.55366 +308297,217.58,88.5195 +308298,216.08,88.8358 +308299,214.59,89.16821 +308300,213.12,89.51523 +308301,216.27,88.6012 +308302,214.74,88.8769 +308303,213.24,89.16916 +308304,211.76,89.4765 +308305,214.96,88.6831 +308306,213.41,88.918 +308307,211.89,89.16999 +308308,210.39,89.43749 +308309,213.64,88.7653 +308310,212.08,88.9592 +308311,210.54,89.17072 +308312,209.02,89.39824 +308313,212.32,88.8477 +308314,210.75,89.00049 +308315,209.19,89.17136 +308316,207.66,89.35878 +308317,211,88.9303 +308318,209.41,89.04178 +308319,207.84,89.17191 +308320,206.3,89.31913 +308321,209.68,89.01302 +308322,208.08,89.0831 +308323,206.5,89.17239 +308324,204.94,89.27933 +308325,208.36,89.09587 +308326,206.74,89.12443 +308327,205.15,89.17281 +308328,203.58,89.23941 +308329,207.04,89.17879 +308330,205.41,89.16576 +308331,203.8,89.17317 +308332,202.22,89.19939 +308333,205.72,89.26177 +308334,204.07,89.20709 +308335,202.45,89.17349 +308336,200.86,89.15931 +308337,204.39,89.34476 +308338,202.74,89.2484 +308339,201.11,89.17378 +308340,199.51,89.1192 +308341,203.06,89.42773 +308342,201.4,89.28969 +308343,199.76,89.17405 +308344,198.15,89.07908 +308345,201.74,89.51066 +308346,200.06,89.33093 +308347,198.42,89.17431 +308348,196.8,89.039 +308349,200.41,89.5935 +308350,198.73,89.37212 +308351,197.07,89.17456 +308352,195.44,88.999 +308353,199.08,89.67622 +308354,197.39,89.41326 +308355,195.73,89.17483 +308356,194.09,88.959 +308357,197.74,89.75879 +308358,196.05,89.45432 +308359,194.38,89.17511 +308360,192.74,88.9192 +308361,196.41,89.84118 +308362,194.71,89.4953 +308363,193.04,89.17543 +308364,191.39,88.8796 +308365,195.08,89.923358 +308366,193.37,89.53618 +308367,191.69,89.17578 +308368,190.05,88.8401 +308369,193.74,90.0052842 +308370,192.03,89.57697 +308371,190.35,89.17619 +308372,188.7,88.8008 +308373,192.4,90.086928 +308374,190.69,89.61763 +308375,189.01,89.17666 +308376,187.36,88.7618 +308377,191.06,90.16826 +308378,189.35,89.65818 +308379,187.67,89.1772 +308380,186.01,88.723 +308381,189.72,90.24924 +308382,188.01,89.69858 +308383,186.32,89.17781 +308384,184.67,88.6845 +308385,188.38,90.32984 +308386,186.67,89.73884 +308387,184.98,89.17853 +308388,183.33,88.6464 +308389,187.04,90.41003 +308390,185.32,89.77894 +308391,183.64,89.17934 +308392,181.99,88.6086 +308393,185.7,90.48977 +308394,183.98,89.81887 +308395,182.3,89.18026 +308396,180.65,88.5712 +308397,184.35,90.56904 +308398,182.64,89.85863 +308399,180.96,89.1813 +308400,179.32,88.5343 +308401,183,90.6478 +308402,181.29,89.8982 +308403,179.62,89.18248 +308404,177.98,88.4977 +308405,181.66,90.72601 +308406,179.95,89.937565 +308407,178.28,89.18379 +308408,176.65,88.4617 +308409,180.31,90.80366 +308410,178.6,89.976723 +308411,176.94,89.18525 +308412,175.31,88.4261 +308413,178.95,90.8807 +308414,177.26,90.015662 +308415,175.6,89.18688 +308416,173.98,88.3911 +308417,177.6,90.95711 +308418,175.91,90.054372 +308419,174.26,89.18867 +308420,172.65,88.3566 +308421,176.25,91.0328 +308422,174.57,90.092843 +308423,172.93,89.19064 +308424,171.32,88.3228 +308425,174.89,91.1079 +308426,173.22,90.13106 +308427,171.59,89.1928 +308428,169.99,88.2895 +308429,173.54,91.1822 +308430,171.87,90.16903 +308431,170.25,89.19516 +308432,168.66,88.2569 +308433,172.18,91.2558 +308434,170.53,90.20672 +308435,168.91,89.19772 +308436,167.34,88.2249 +308437,170.82,91.3286 +308438,169.18,90.24414 +308439,167.58,89.2005 +308440,166.01,88.1937 +308441,169.46,91.4005 +308442,167.83,90.28127 +308443,166.24,89.2035 +308444,164.69,88.1631 +308445,168.1,91.4716 +308446,166.48,90.3181 +308447,164.91,89.20673 +308448,163.37,88.1333 +308449,166.74,91.5419 +308450,165.13,90.35463 +308451,163.57,89.21021 +308452,162.05,88.1043 +308453,165.37,91.6113 +308454,163.78,90.39084 +308455,162.23,89.21393 +308456,160.73,88.0761 +308457,164.01,91.6797 +308458,162.43,90.42673 +308459,160.9,89.21792 +308460,159.41,88.0487 +308461,162.64,91.7472 +308462,161.08,90.46228 +308463,159.57,89.22216 +308464,158.09,88.0221 +308465,161.27,91.8137 +308466,159.73,90.4975 +308467,158.23,89.22669 +308468,156.77,87.9964 +308469,159.9,91.8792 +308470,158.38,90.53237 +308471,156.9,89.23149 +308472,155.46,87.9716 +308473,158.53,91.9436 +308474,157.03,90.56687 +308475,155.56,89.23658 +308476,154.14,87.9477 +308477,157.16,92.007 +308478,155.67,90.60102 +308479,154.23,89.24198 +308480,152.83,87.9248 +308481,155.79,92.0694 +308482,154.32,90.63479 +308483,152.9,89.24767 +308484,151.52,87.9028 +308485,154.42,92.1306 +308486,152.97,90.66818 +308487,151.57,89.25368 +308488,150.21,87.8818 +308489,153.04,92.1907 +308490,151.61,90.70118 +308491,150.23,89.26001 +308492,148.9,87.8618 +308493,151.66,92.2497 +308494,150.26,90.73379 +308495,148.9,89.26666 +308496,147.59,87.8428 +308497,150.29,92.3075 +308498,148.91,90.76599 +308499,147.57,89.27365 +308500,146.28,87.8248 +308501,148.91,92.3641 +308502,147.55,90.79779 +308503,146.24,89.28097 +308504,144.97,87.8079 +308505,147.53,92.4195 +308506,146.2,90.82917 +308507,144.91,89.28864 +308508,143.66,87.7921 +308509,146.15,92.4736 +308510,144.84,90.86012 +308511,143.58,89.29666 +308512,142.36,87.7774 +308513,144.77,92.5265 +308514,143.48,90.89065 +308515,142.25,89.30504 +308516,141.05,87.7639 +308517,143.39,92.5782 +308518,142.13,90.92074 +308519,140.92,89.31378 +308520,139.75,87.7514 +308521,142,92.6285 +308522,140.77,90.95039 +308523,139.59,89.3229 +308524,138.45,87.7401 +308525,140.62,92.6776 +308526,139.41,90.97959 +308527,138.26,89.33238 +308528,137.14,87.73 +308529,139.23,92.7253 +308530,138.06,91.0083 +308531,136.93,89.34225 +308532,135.84,87.721 +308533,137.85,92.7717 +308534,136.7,91.0366 +308535,135.6,89.3525 +308536,134.54,87.7133 +308537,136.46,92.8167 +308538,135.34,91.0645 +308539,134.27,89.36314 +308540,133.24,87.7067 +308541,135.07,92.8604 +308542,133.98,91.0918 +308543,132.94,89.37417 +308544,131.94,87.7014 +308545,133.68,92.9027 +308546,132.62,91.1187 +308547,131.61,89.3856 +308548,130.65,87.6974 +308549,132.29,92.9436 +308550,131.27,91.1451 +308551,130.29,89.39744 +308552,129.35,87.6945 +308553,130.9,92.9831 +308554,129.91,91.171 +308555,128.96,89.40968 +308556,128.05,87.693 +308557,129.51,93.0212 +308558,128.55,91.1965 +308559,127.63,89.42233 +308560,126.75,87.6927 +308561,128.12,93.0578 +308562,127.19,91.2215 +308563,126.3,89.43539 +308564,125.46,87.6937 +308565,126.73,93.0931 +308566,125.83,91.2459 +308567,124.98,89.44888 +308568,124.16,87.6961 +308569,125.33,93.1268 +308570,124.47,91.2699 +308571,123.65,89.46278 +308572,122.87,87.6997 +308573,123.94,93.1592 +308574,123.11,91.2934 +308575,122.32,89.4771 +308576,121.57,87.7046 +308577,122.54,93.19 +308578,121.75,91.3163 +308579,120.99,89.49185 +308580,120.28,87.7109 +308581,121.15,93.2194 +308582,120.39,91.3388 +308583,119.67,89.50703 +308584,118.99,87.7185 +308585,119.75,93.2473 +308586,119.02,91.3608 +308587,118.34,89.52263 +308588,117.69,87.7274 +308589,118.36,93.2738 +308590,117.66,91.3822 +308591,117.01,89.53867 +308592,116.4,87.7377 +308593,116.96,93.2988 +308594,116.3,91.4032 +308595,115.69,89.55514 +308596,115.11,87.7494 +308597,115.56,93.3222 +308598,114.94,91.4236 +308599,114.36,89.57205 +308600,113.82,87.7624 +308601,114.16,93.3442 +308602,113.58,91.4435 +308603,113.04,89.58939 +308604,112.53,87.7767 +308605,112.76,93.3647 +308606,112.22,91.4629 +308607,111.71,89.60717 +308608,111.24,87.7924 +308609,111.37,93.3837 +308610,110.85,91.4818 +308611,110.38,89.62539 +308612,109.95,87.8095 +308613,109.97,93.4012 +308614,109.49,91.5002 +308615,109.06,89.64404 +308616,108.66,87.828 +308617,108.57,93.4172 +308618,108.13,91.5181 +308619,107.73,89.66313 +308620,107.37,87.8478 +308621,107.17,93.4318 +308622,106.77,91.5354 +308623,106.4,89.68266 +308624,106.08,87.869 +308625,105.77,93.4448 +308626,105.4,91.5523 +308627,105.08,89.70263 +308628,104.79,87.8916 +308629,104.37,93.4564 +308630,104.04,91.5686 +308631,103.75,89.72304 +308632,103.5,87.9155 +308633,102.97,93.4664 +308634,102.68,91.5844 +308635,102.43,89.74388 +308636,102.21,87.9408 +308637,101.57,93.475 +308638,101.32,91.5997 +308639,101.1,89.76516 +308640,100.92,87.9675 +308641,100.16,93.4821 +308642,99.952,91.6145 +308643,99.775,89.78687 +308644,99.629,87.9956 +308645,98.763,93.4878 +308646,98.589,91.6288 +308647,98.45,89.80901 +308648,98.34,88.025 +308649,97.362,93.492 +308650,97.226,91.6426 +308651,97.124,89.83159 +308652,97.051,88.0557 +308653,95.96,93.4947 +308654,95.863,91.6559 +308655,95.798,89.8546 +308656,95.762,88.0879 +308657,94.559,93.496 +308658,94.499,91.6686 +308659,94.472,89.87803 +308660,94.472,88.1213 +308661,93.158,93.4959 +308662,93.136,91.6809 +308663,93.146,89.901887 +308664,93.183,88.1561 +308665,91.757,93.4944 +308666,91.773,91.6927 +308667,91.82,89.926167 +308668,91.894,88.1923 +308669,90.355,93.4914 +308670,90.41,91.7039 +308671,90.493,89.950866 +308672,90.604,88.2297 +308673,88.954,93.487 +308674,89.046,91.7147 +308675,89.167,89.975981 +308676,89.314,88.2685 +308677,87.553,93.4812 +308678,87.683,91.725 +308679,87.841,90.0015091 +308680,88.024,88.3086 +308681,86.152,93.4741 +308682,86.32,91.7348 +308683,86.514,90.027446 +308684,86.734,88.35 +308685,84.752,93.4656 +308686,84.957,91.7442 +308687,85.188,90.053788 +308688,85.443,88.3927 +308689,83.351,93.4557 +308690,83.593,91.753 +308691,83.861,90.080532 +308692,84.153,88.4367 +308693,81.951,93.4445 +308694,82.23,91.7614 +308695,82.534,90.10767 +308696,82.862,88.4819 +308697,80.551,93.432 +308698,80.867,91.7693 +308699,81.207,90.13521 +308700,81.57,88.5284 +308701,79.151,93.4182 +308702,79.504,91.7768 +308703,79.88,90.16313 +308704,80.279,88.5761 +308705,77.752,93.403 +308706,78.141,91.7838 +308707,78.553,90.19143 +308708,78.986,88.625 +308709,76.353,93.3867 +308710,76.778,91.7903 +308711,77.226,90.22011 +308712,77.694,88.6752 +308713,74.955,93.369 +308714,75.416,91.7964 +308715,75.898,90.24917 +308716,76.401,88.7266 +308717,73.556,93.3501 +308718,74.053,91.8021 +308719,74.57,90.27859 +308720,75.107,88.7791 +308721,72.159,93.33 +308722,72.691,91.8073 +308723,73.243,90.30837 +308724,73.814,88.8328 +308725,70.762,93.3087 +308726,71.328,91.8121 +308727,71.914,90.3385 +308728,72.519,88.8877 +308729,69.365,93.2863 +308730,69.966,91.8165 +308731,70.586,90.36899 +308732,71.224,88.9437 +308733,67.969,93.2627 +308734,68.604,91.8204 +308735,69.257,90.39981 +308736,69.929,89.00078 +308737,66.573,93.2379 +308738,67.242,91.824 +308739,67.929,90.43098 +308740,68.632,89.05898 +308741,65.178,93.212 +308742,65.88,91.8271 +308743,66.6,90.46247 +308744,67.336,89.11826 +308745,63.784,93.1851 +308746,64.519,91.8299 +308747,65.27,90.49428 +308748,66.038,89.17859 +308749,62.39,93.157 +308750,63.157,91.8322 +308751,63.941,90.52641 +308752,64.74,89.23995 +308753,60.997,93.128 +308754,61.796,91.8342 +308755,62.611,90.55884 +308756,63.441,89.30233 +308757,59.604,93.0979 +308758,60.435,91.8358 +308759,61.281,90.59158 +308760,62.142,89.3657 +308761,58.213,93.0668 +308762,59.074,91.8371 +308763,59.951,90.6246 +308764,60.841,89.43004 +308765,56.822,93.0347 +308766,57.714,91.838 +308767,58.62,90.65791 +308768,59.54,89.49533 +308769,55.432,93.0017 +308770,56.353,91.8385 +308771,57.289,90.6915 +308772,58.239,89.56154 +308773,54.042,92.9678 +308774,54.993,91.8387 +308775,55.958,90.72535 +308776,56.936,89.62865 +308777,52.654,92.933 +308778,53.633,91.8386 +308779,54.626,90.75946 +308780,55.633,89.69663 +308781,51.266,92.8973 +308782,52.273,91.8381 +308783,53.295,90.79383 +308784,54.328,89.76547 +308785,49.879,92.8608 +308786,50.914,91.8373 +308787,51.962,90.82843 +308788,53.023,89.83513 +308789,48.493,92.8235 +308790,49.555,91.8362 +308791,50.63,90.86327 +308792,51.717,89.905587 +308793,47.108,92.7854 +308794,48.196,91.8349 +308795,49.297,90.89833 +308796,50.41,89.976819 +308797,45.723,92.7465 +308798,46.837,91.8332 +308799,47.964,90.9336 +308800,49.102,90.048798 +308801,44.34,92.7069 +308802,45.479,91.8312 +308803,46.631,90.96908 +308804,47.793,90.12149 +308805,42.958,92.6666 +308806,44.121,91.829 +308807,45.297,91.0048 +308808,46.484,90.19488 +308809,41.576,92.6256 +308810,42.763,91.8265 +308811,43.962,91.0406 +308812,45.173,90.26893 +308813,40.196,92.584 +308814,41.406,91.8238 +308815,42.628,91.0767 +308816,43.861,90.34362 +308817,38.817,92.5418 +308818,40.049,91.8209 +308819,41.293,91.1129 +308820,42.548,90.41891 +308821,37.438,92.499 +308822,38.692,91.8177 +308823,39.958,91.1492 +308824,41.234,90.49477 +308825,36.061,92.4557 +308826,37.335,91.8142 +308827,38.622,91.1857 +308828,39.919,90.57118 +308829,34.685,92.4118 +308830,35.979,91.8106 +308831,37.286,91.2224 +308832,38.603,90.64811 +308833,33.31,92.3674 +308834,34.623,91.8068 +308835,35.949,91.2591 +308836,37.286,90.72553 +308837,31.935,92.3226 +308838,33.268,91.8028 +308839,34.613,91.296 +308840,35.968,90.8034 +308841,30.562,92.2773 +308842,31.913,91.7986 +308843,33.275,91.333 +308844,34.649,90.88169 +308845,29.191,92.2317 +308846,30.558,91.7942 +308847,31.938,91.3701 +308848,33.329,90.96037 +308849,27.82,92.1856 +308850,29.203,91.7897 +308851,30.599,91.4072 +308852,32.007,91.0394 +308853,26.45,92.1393 +308854,27.849,91.785 +308855,29.261,91.4445 +308856,30.684,91.1188 +308857,25.082,92.0926 +308858,26.495,91.7802 +308859,27.922,91.4818 +308860,29.36,91.1985 +308861,23.714,92.0456 +308862,25.142,91.7752 +308863,26.583,91.5191 +308864,28.035,91.2784 +308865,22.348,91.9985 +308866,23.789,91.7702 +308867,25.243,91.5565 +308868,26.709,91.3586 +308869,20.983,91.9511 +308870,22.436,91.765 +308871,23.903,91.5939 +308872,25.382,91.4389 +308873,19.619,91.9035 +308874,21.084,91.7597 +308875,22.562,91.6314 +308876,24.053,91.5195 +308877,18.256,91.8558 +308878,19.732,91.7544 +308879,21.221,91.6688 +308880,22.723,91.6001 +308881,16.895,91.8079 +308882,18.38,91.7489 +308883,19.88,91.7063 +308884,21.392,91.6809 +308885,15.535,91.76 +308886,17.029,91.7435 +308887,18.538,91.7437 +308888,20.06,91.7617 +308889,14.176,91.712 +308890,15.678,91.7379 +308891,17.195,91.7811 +308892,18.727,91.8426 +308893,12.818,91.664 +308894,14.327,91.7323 +308895,15.852,91.8185 +308896,17.392,91.9235 +308897,11.461,91.616 +308898,12.977,91.7267 +308899,14.509,91.8558 +308900,16.056,92.0043 +308901,10.106,91.5681 +308902,11.628,91.7211 +308903,13.165,91.893 +308904,14.719,92.085 +308905,8.7515,91.5202 +308906,10.278,91.7154 +308907,11.821,91.9302 +308908,13.38,92.1657 +308909,7.3985,91.4724 +308910,8.9292,91.7098 +308911,10.477,91.9673 +308912,12.04,92.2462 +308913,6.0467,91.4248 +308914,7.5806,91.7041 +308915,9.1316,92.0043 +308916,10.699,92.3266 +308917,4.6962,91.3774 +308918,6.2324,91.6985 +308919,7.7861,92.0412 +308920,9.357,92.4067 +308921,3.3469,91.3301 +308922,4.8846,91.6929 +308923,6.4402,92.078 +308924,8.0134,92.4866 +308925,1.9988,91.2831 +308926,3.5371,91.6874 +308927,5.0937,92.1147 +308928,6.6686,92.5662 +308929,0.65192,91.2363 +308930,2.1901,91.6819 +308931,3.7469,92.1512 +308932,5.3224,92.6455 +308933,359.31,91.1898 +308934,0.8434,91.6765 +308935,2.3996,92.1875 +308936,3.975,92.7245 +308937,357.96,91.1437 +308938,359.5,91.6711 +308939,1.0518,92.2238 +308940,2.6263,92.8031 +308941,356.62,91.0979 +308942,358.15,91.6659 +308943,359.7,92.2598 +308944,1.2764,92.8813 +308945,355.28,91.0525 +308946,356.81,91.6607 +308947,358.35,92.2957 +308948,359.93,92.9591 +308949,353.94,91.0075 +308950,355.46,91.6557 +308951,357.01,92.3313 +308952,358.57,93.0363 +308953,352.6,90.96292 +308954,354.12,91.6507 +308955,355.66,92.3668 +308956,357.22,93.1131 +308957,351.26,90.91884 +308958,352.77,91.6459 +308959,354.31,92.402 +308960,355.86,93.1893 +308961,349.92,90.87526 +308962,351.43,91.6412 +308963,352.96,92.437 +308964,354.51,93.265 +308965,348.58,90.83221 +308966,350.08,91.6367 +308967,351.6,92.4718 +308968,353.15,93.34 +308969,347.25,90.78972 +308970,348.74,91.6323 +308971,350.25,92.5064 +308972,351.79,93.4144 +308973,345.92,90.74782 +308974,347.4,91.6281 +308975,348.9,92.5407 +308976,350.43,93.4881 +308977,344.58,90.70654 +308978,346.05,91.624 +308979,347.55,92.5747 +308980,349.07,93.5612 +308981,343.25,90.6659 +308982,344.71,91.6202 +308983,346.2,92.6084 +308984,347.71,93.6334 +308985,341.92,90.62594 +308986,343.37,91.6165 +308987,344.84,92.6419 +308988,346.34,93.705 +308989,340.59,90.58667 +308990,342.03,91.6131 +308991,343.49,92.675 +308992,344.98,93.7757 +308993,339.27,90.54813 +308994,340.69,91.6098 +308995,342.14,92.7079 +308996,343.61,93.8456 +308997,337.94,90.51035 +308998,339.35,91.6068 +308999,340.78,92.7404 +309000,342.25,93.9146 +309001,336.61,90.47334 +309002,338.01,91.604 +309003,339.43,92.7726 +309004,340.88,93.9828 +309005,335.29,90.43713 +309006,336.67,91.6015 +309007,338.07,92.8045 +309008,339.51,94.05 +309009,333.96,90.40176 +309010,335.33,91.5992 +309011,336.72,92.836 +309012,338.14,94.1163 +309013,332.64,90.36724 +309014,333.99,91.5971 +309015,335.36,92.8672 +309016,336.76,94.1816 +309017,331.32,90.3336 +309018,332.65,91.5953 +309019,334,92.898 +309020,335.39,94.2459 +309021,330,90.30086 +309022,331.31,91.5938 +309023,332.65,92.9284 +309024,334.02,94.3092 +309025,328.68,90.26905 +309026,329.97,91.5926 +309027,331.29,92.9585 +309028,332.64,94.3714 +309029,327.36,90.23818 +309030,328.63,91.5916 +309031,329.93,92.9882 +309032,331.26,94.4326 +309033,326.04,90.20829 +309034,327.3,91.591 +309035,328.58,93.0174 +309036,329.89,94.4926 +309037,324.73,90.17939 +309038,325.96,91.5907 +309039,327.22,93.0463 +309040,328.51,94.5515 +309041,323.41,90.15151 +309042,324.62,91.5906 +309043,325.86,93.0748 +309044,327.13,94.6092 +309045,322.1,90.12466 +309046,323.28,91.5909 +309047,324.5,93.1028 +309048,325.75,94.6658 +309049,320.78,90.09887 +309050,321.95,91.5915 +309051,323.14,93.1304 +309052,324.37,94.7211 +309053,319.47,90.074157 +309054,320.61,91.5925 +309055,321.78,93.1576 +309056,322.98,94.7752 +309057,318.16,90.05054 +309058,319.28,91.5938 +309059,320.42,93.1843 +309060,321.6,94.8281 +309061,316.85,90.028039 +309062,317.94,91.5954 +309063,319.06,93.2106 +309064,320.22,94.8797 +309065,315.54,90.006671 +309066,316.6,91.5974 +309067,317.7,93.2364 +309068,318.83,94.9299 +309069,314.23,89.986455 +309070,315.27,91.5998 +309071,316.34,93.2618 +309072,317.44,94.9789 +309073,312.92,89.967408 +309074,313.93,91.6025 +309075,314.98,93.2867 +309076,316.06,95.0265 +309077,311.61,89.949546 +309078,312.6,91.6055 +309079,313.62,93.3111 +309080,314.67,95.0728 +309081,310.3,89.932887 +309082,311.26,91.609 +309083,312.25,93.3351 +309084,313.28,95.1177 +309085,309,89.917444 +309086,309.93,91.6128 +309087,310.89,93.3585 +309088,311.89,95.1612 +309089,307.69,89.903234 +309090,308.6,91.6171 +309091,309.53,93.3815 +309092,310.5,95.2034 +309093,306.38,89.89027 +309094,307.26,91.6217 +309095,308.17,93.4039 +309096,309.11,95.244 +309097,305.08,89.87857 +309098,305.93,91.6267 +309099,306.8,93.4259 +309100,307.71,95.2833 +309101,303.78,89.86814 +309102,304.59,91.6321 +309103,305.44,93.4474 +309104,306.32,95.3211 +309105,302.47,89.85899 +309106,303.26,91.6379 +309107,304.08,93.4683 +309108,304.93,95.3574 +309109,301.17,89.85114 +309110,301.93,91.6441 +309111,302.71,93.4887 +309112,303.53,95.3922 +309113,299.87,89.8446 +309114,300.59,91.6507 +309115,301.35,93.5086 +309116,302.14,95.4256 +309117,298.57,89.83938 +309118,299.26,91.6578 +309119,299.99,93.528 +309120,300.74,95.4574 +309121,297.26,89.83549 +309122,297.93,91.6652 +309123,298.62,93.5469 +309124,299.35,95.4878 +309125,295.96,89.83294 +309126,296.6,91.6731 +309127,297.26,93.5652 +309128,297.95,95.5166 +309129,294.66,89.83173 +309130,295.26,91.6814 +309131,295.89,93.583 +309132,296.55,95.5439 +309133,293.36,89.83188 +309134,293.93,91.6901 +309135,294.53,93.6003 +309136,295.15,95.5696 +309137,292.06,89.83339 +309138,292.6,91.6993 +309139,293.16,93.617 +309140,293.76,95.5938 +309141,290.76,89.83627 +309142,291.27,91.7089 +309143,291.8,93.6332 +309144,292.36,95.6164 +309145,289.46,89.84052 +309146,289.93,91.7189 +309147,290.43,93.6488 +309148,290.96,95.6375 +309149,288.17,89.84615 +309150,288.6,91.7294 +309151,289.06,93.6639 +309152,289.56,95.657 +309153,286.87,89.85317 +309154,287.27,91.7402 +309155,287.7,93.6785 +309156,288.16,95.6749 +309157,285.57,89.86157 +309158,285.94,91.7516 +309159,286.33,93.6925 +309160,286.76,95.6913 +309161,284.27,89.87136 +309162,284.61,91.7633 +309163,284.97,93.7059 +309164,285.36,95.7061 +309165,282.97,89.88255 +309166,283.28,91.7755 +309167,283.6,93.7188 +309168,283.96,95.7193 +309169,281.68,89.89512 +309170,281.94,91.7882 +309171,282.23,93.7312 +309172,282.55,95.731 +309173,280.38,89.9091 +309174,280.61,91.8012 +309175,280.87,93.743 +309176,281.15,95.741 +309177,279.08,89.924471 +309178,279.28,91.8148 +309179,279.5,93.7543 +309180,279.75,95.7495 +309181,277.79,89.941237 +309182,277.95,91.8287 +309183,278.14,93.765 +309184,278.35,95.7564 +309185,276.49,89.959397 +309186,276.62,91.8431 +309187,276.77,93.7752 +309188,276.95,95.7618 +309189,275.19,89.978949 +309190,275.29,91.8579 +309191,275.4,93.7848 +309192,275.54,95.7656 +309193,273.89,89.99989153 +309194,273.95,91.8732 +309195,274.04,93.7938 +309196,274.14,95.7678 +309197,272.6,90.02222 +309198,272.62,91.8889 +309199,272.67,93.8024 +309200,272.74,95.7685 +309201,271.3,90.045932 +309202,271.29,91.905 +309203,271.3,93.8104 +309204,271.34,95.7676 +309205,270,90.071021 +309206,269.96,91.9216 +309207,269.94,93.8178 +309208,269.94,95.7652 +309209,268.71,90.097484 +309210,268.63,91.9385 +309211,268.57,93.8247 +309212,268.53,95.7612 +309213,267.41,90.12531 +309214,267.3,91.956 +309215,267.2,93.8311 +309216,267.13,95.7558 +309217,266.11,90.1545 +309218,265.96,91.9738 +309219,265.84,93.8369 +309220,265.73,95.7488 +309221,264.81,90.18504 +309222,264.63,91.992 +309223,264.47,93.8422 +309224,264.33,95.7403 +309225,263.52,90.21693 +309226,263.3,92.0107 +309227,263.1,93.847 +309228,262.92,95.7303 +309229,262.22,90.25015 +309230,261.97,92.0298 +309231,261.74,93.8513 +309232,261.52,95.7188 +309233,260.92,90.2847 +309234,260.64,92.0493 +309235,260.37,93.855 +309236,260.12,95.7059 +309237,259.62,90.32056 +309238,259.3,92.0692 +309239,259,93.8582 +309240,258.72,95.6915 +309241,258.32,90.35773 +309242,257.97,92.0895 +309243,257.64,93.8609 +309244,257.32,95.6756 +309245,257.02,90.39619 +309246,256.64,92.1102 +309247,256.27,93.8631 +309248,255.92,95.6584 +309249,255.72,90.43593 +309250,255.31,92.1313 +309251,254.9,93.8648 +309252,254.52,95.6397 +309253,254.42,90.47694 +309254,253.97,92.1528 +309255,253.54,93.866 +309256,253.12,95.6196 +309257,253.12,90.51921 +309258,252.64,92.1747 +309259,252.17,93.8667 +309260,251.72,95.5981 +309261,251.82,90.56272 +309262,251.31,92.197 +309263,250.8,93.8669 +309264,250.32,95.5753 +309265,250.52,90.60745 +309266,249.97,92.2196 +309267,249.44,93.8667 +309268,248.92,95.5512 +309269,249.22,90.6534 +309270,248.64,92.2426 +309271,248.07,93.8659 +309272,247.52,95.5257 +309273,247.92,90.70053 +309274,247.31,92.266 +309275,246.71,93.8647 +309276,246.12,95.4989 +309277,246.61,90.74885 +309278,245.97,92.2897 +309279,245.34,93.863 +309280,244.73,95.4709 +309281,245.31,90.79833 +309282,244.64,92.3137 +309283,243.98,93.8609 +309284,243.33,95.4415 +309285,244,90.84895 +309286,243.3,92.3382 +309287,242.61,93.8583 +309288,241.93,95.411 +309289,242.7,90.90069 +309290,241.97,92.3629 +309291,241.25,93.8553 +309292,240.54,95.3792 +309293,241.39,90.95354 +309294,240.63,92.388 +309295,239.88,93.8518 +309296,239.14,95.3462 +309297,240.09,91.0075 +309298,239.3,92.4134 +309299,238.52,93.8479 +309300,237.75,95.3121 +309301,238.78,91.0625 +309302,237.96,92.4391 +309303,237.15,93.8436 +309304,236.35,95.2768 +309305,237.47,91.1185 +309306,236.63,92.4652 +309307,235.79,93.8389 +309308,234.96,95.2403 +309309,236.17,91.1756 +309310,235.29,92.4915 +309311,234.43,93.8337 +309312,233.57,95.2028 +309313,234.86,91.2336 +309314,233.96,92.5182 +309315,233.06,93.8282 +309316,232.18,95.1642 +309317,233.55,91.2927 +309318,232.62,92.5451 +309319,231.7,93.8222 +309320,230.79,95.1246 +309321,232.24,91.3527 +309322,231.28,92.5723 +309323,230.33,93.8159 +309324,229.4,95.0839 +309325,230.93,91.4136 +309326,229.94,92.5997 +309327,228.97,93.8092 +309328,228.01,95.0422 +309329,229.61,91.4754 +309330,228.61,92.6275 +309331,227.61,93.8022 +309332,226.62,94.9996 +309333,228.3,91.5381 +309334,227.27,92.6555 +309335,226.25,93.7948 +309336,225.23,94.956 +309337,226.99,91.6017 +309338,225.93,92.6837 +309339,224.88,93.787 +309340,223.84,94.9116 +309341,225.67,91.6661 +309342,224.59,92.7121 +309343,223.52,93.7789 +309344,222.46,94.8662 +309345,224.36,91.7313 +309346,223.26,92.7408 +309347,222.16,93.7705 +309348,221.07,94.82 +309349,223.04,91.7973 +309350,221.92,92.7697 +309351,220.8,93.7617 +309352,219.69,94.773 +309353,221.72,91.864 +309354,220.58,92.7988 +309355,219.44,93.7527 +309356,218.31,94.7251 +309357,220.4,91.9315 +309358,219.24,92.8282 +309359,218.08,93.7433 +309360,216.92,94.6765 +309361,219.08,91.9996 +309362,217.9,92.8577 +309363,216.72,93.7337 +309364,215.54,94.6272 +309365,217.76,92.0684 +309366,216.56,92.8873 +309367,215.36,93.7237 +309368,214.16,94.5771 +309369,216.44,92.1379 +309370,215.22,92.9172 +309371,214,93.7135 +309372,212.78,94.5264 +309373,215.12,92.208 +309374,213.88,92.9472 +309375,212.64,93.7031 +309376,211.41,94.4751 +309377,213.8,92.2786 +309378,212.53,92.9773 +309379,211.28,93.6924 +309380,210.03,94.4231 +309381,212.47,92.3498 +309382,211.19,93.0076 +309383,209.92,93.6814 +309384,208.65,94.3706 +309385,211.15,92.4215 +309386,209.85,93.038 +309387,208.56,93.6702 +309388,207.28,94.3175 +309389,209.82,92.4937 +309390,208.51,93.0686 +309391,207.2,93.6588 +309392,205.9,94.2639 +309393,208.49,92.5664 +309394,207.17,93.0992 +309395,205.85,93.6472 +309396,204.53,94.2098 +309397,207.16,92.6394 +309398,205.82,93.1299 +309399,204.49,93.6354 +309400,203.16,94.1552 +309401,205.83,92.7129 +309402,204.48,93.1608 +309403,203.13,93.6234 +309404,201.79,94.1003 +309405,204.5,92.7868 +309406,203.13,93.1916 +309407,201.77,93.6112 +309408,200.42,94.0449 +309409,203.17,92.8609 +309410,201.79,93.2226 +309411,200.42,93.5989 +309412,199.05,93.9892 +309413,201.83,92.9354 +309414,200.45,93.2536 +309415,199.06,93.5864 +309416,197.68,93.9332 +309417,200.5,93.0101 +309418,199.1,93.2847 +309419,197.71,93.5738 +309420,196.32,93.8769 +309421,199.16,93.0851 +309422,197.75,93.3157 +309423,196.35,93.561 +309424,194.95,93.8203 +309425,197.83,93.1602 +309426,196.41,93.3468 +309427,195,93.5481 +309428,193.59,93.7636 +309429,196.49,93.2356 +309430,195.06,93.3779 +309431,193.64,93.5351 +309432,192.23,93.7066 +309433,195.15,93.311 +309434,193.72,93.409 +309435,192.29,93.522 +309436,190.86,93.6495 +309437,193.81,93.3866 +309438,192.37,93.4401 +309439,190.93,93.5088 +309440,189.5,93.5922 +309441,192.47,93.4622 +309442,191.02,93.4712 +309443,189.58,93.4956 +309444,188.14,93.5349 +309445,191.13,93.5379 +309446,189.67,93.5022 +309447,188.23,93.4822 +309448,186.79,93.4775 +309449,189.78,93.6135 +309450,188.32,93.5332 +309451,186.87,93.4688 +309452,185.43,93.42 +309453,188.44,93.6891 +309454,186.98,93.5641 +309455,185.52,93.4554 +309456,184.07,93.3626 +309457,187.09,93.7647 +309458,185.63,93.5949 +309459,184.17,93.4419 +309460,182.72,93.3053 +309461,185.74,93.8401 +309462,184.28,93.6257 +309463,182.82,93.4285 +309464,181.37,93.248 +309465,184.39,93.9154 +309466,182.93,93.6563 +309467,181.47,93.415 +309468,180.01,93.1908 +309469,183.04,93.9905 +309470,181.58,93.6869 +309471,180.12,93.4015 +309472,178.66,93.1337 +309473,181.69,94.0654 +309474,180.22,93.7173 +309475,178.77,93.388 +309476,177.31,93.0768 +309477,180.34,94.1401 +309478,178.87,93.7476 +309479,177.42,93.3745 +309480,175.97,93.0202 +309481,178.99,94.2144 +309482,177.52,93.7778 +309483,176.07,93.3611 +309484,174.62,92.9637 +309485,177.63,94.2885 +309486,176.17,93.8078 +309487,174.72,93.3477 +309488,173.27,92.9076 +309489,176.27,94.3622 +309490,174.82,93.8377 +309491,173.37,93.3344 +309492,171.93,92.8517 +309493,174.92,94.4356 +309494,173.46,93.8673 +309495,172.02,93.3211 +309496,170.58,92.7962 +309497,173.56,94.5085 +309498,172.11,93.8968 +309499,170.67,93.3079 +309500,169.24,92.741 +309501,172.2,94.581 +309502,170.76,93.9261 +309503,169.32,93.2948 +309504,167.9,92.6862 +309505,170.84,94.653 +309506,169.4,93.9552 +309507,167.98,93.2818 +309508,166.56,92.6319 +309509,169.48,94.7244 +309510,168.05,93.9841 +309511,166.63,93.2689 +309512,165.22,92.578 +309513,168.11,94.7954 +309514,166.69,94.0127 +309515,165.28,93.2561 +309516,163.88,92.5246 +309517,166.75,94.8657 +309518,165.34,94.0411 +309519,163.94,93.2435 +309520,162.55,92.4717 +309521,165.38,94.9354 +309522,163.98,94.0693 +309523,162.59,93.231 +309524,161.21,92.4193 +309525,164.02,95.0045 +309526,162.62,94.0972 +309527,161.24,93.2186 +309528,159.88,92.3676 +309529,162.65,95.0729 +309530,161.27,94.1248 +309531,159.9,93.2064 +309532,158.54,92.3164 +309533,161.28,95.1406 +309534,159.91,94.1521 +309535,158.55,93.1944 +309536,157.21,92.2659 +309537,159.91,95.2075 +309538,158.55,94.1792 +309539,157.21,93.1826 +309540,155.88,92.216 +309541,158.54,95.2737 +309542,157.19,94.2059 +309543,155.86,93.1709 +309544,154.55,92.1668 +309545,157.16,95.339 +309546,155.84,94.2323 +309547,154.52,93.1594 +309548,153.22,92.1183 +309549,155.79,95.4035 +309550,154.48,94.2584 +309551,153.18,93.1482 +309552,151.89,92.0706 +309553,154.42,95.4671 +309554,153.12,94.2842 +309555,151.83,93.1371 +309556,150.56,92.0237 +309557,153.04,95.5298 +309558,151.76,94.3096 +309559,150.49,93.1263 +309560,149.24,91.9775 +309561,151.66,95.5916 +309562,150.4,94.3347 +309563,149.15,93.1158 +309564,147.91,91.9322 +309565,150.29,95.6525 +309566,149.04,94.3594 +309567,147.81,93.1054 +309568,146.59,91.8877 +309569,148.91,95.7123 +309570,147.68,94.3837 +309571,146.47,93.0953 +309572,145.26,91.8441 +309573,147.53,95.7711 +309574,146.32,94.4077 +309575,145.12,93.0855 +309576,143.94,91.8014 +309577,146.15,95.8289 +309578,144.96,94.4313 +309579,143.78,93.076 +309580,142.62,91.7596 +309581,144.76,95.8855 +309582,143.6,94.4544 +309583,142.44,93.0667 +309584,141.3,91.7187 +309585,143.38,95.9411 +309586,142.23,94.4772 +309587,141.1,93.0577 +309588,139.98,91.6789 +309589,142,95.9956 +309590,140.87,94.4996 +309591,139.76,93.049 +309592,138.66,91.64 +309593,140.61,96.0489 +309594,139.51,94.5215 +309595,138.42,93.0406 +309596,137.35,91.6021 +309597,139.23,96.101 +309598,138.15,94.543 +309599,137.08,93.0326 +309600,136.03,91.5653 +309601,137.84,96.1519 +309602,136.78,94.5641 +309603,135.74,93.0248 +309604,134.71,91.5295 +309605,136.45,96.2015 +309606,135.42,94.5847 +309607,134.4,93.0174 +309608,133.4,91.4948 +309609,135.07,96.25 +309610,134.06,94.6048 +309611,133.06,93.0103 +309612,132.08,91.4612 +309613,133.68,96.2971 +309614,132.69,94.6245 +309615,131.72,93.0035 +309616,130.77,91.4288 +309617,132.29,96.3429 +309618,131.33,94.6438 +309619,130.39,92.9971 +309620,129.46,91.3974 +309621,130.9,96.3874 +309622,129.96,94.6625 +309623,129.05,92.991 +309624,128.14,91.3672 +309625,129.5,96.4306 +309626,128.6,94.6808 +309627,127.71,92.9853 +309628,126.83,91.3382 +309629,128.11,96.4724 +309630,127.23,94.6986 +309631,126.37,92.9799 +309632,125.52,91.3104 +309633,126.72,96.5128 +309634,125.87,94.7159 +309635,125.03,92.9749 +309636,124.21,91.2838 +309637,125.33,96.5518 +309638,124.5,94.7327 +309639,123.7,92.9703 +309640,122.9,91.2584 +309641,123.93,96.5894 +309642,123.14,94.7489 +309643,122.36,92.9661 +309644,121.59,91.2342 +309645,122.54,96.6255 +309646,121.77,94.7647 +309647,121.02,92.9622 +309648,120.29,91.2113 +309649,121.14,96.6602 +309650,120.41,94.78 +309651,119.69,92.9587 +309652,118.98,91.1897 +309653,119.74,96.6934 +309654,119.04,94.7947 +309655,118.35,92.9557 +309656,117.67,91.1693 +309657,118.35,96.7251 +309658,117.67,94.8089 +309659,117.01,92.953 +309660,116.37,91.1502 +309661,116.95,96.7553 +309662,116.31,94.8226 +309663,115.68,92.9507 +309664,115.06,91.1325 +309665,115.55,96.784 +309666,114.94,94.8357 +309667,114.34,92.9489 +309668,113.75,91.116 +309669,114.15,96.8111 +309670,113.57,94.8483 +309671,113,92.9474 +309672,112.45,91.1009 +309673,112.76,96.8368 +309674,112.2,94.8604 +309675,111.67,92.9464 +309676,111.14,91.0871 +309677,111.36,96.8608 +309678,110.84,94.8719 +309679,110.33,92.9458 +309680,109.84,91.0747 +309681,109.96,96.8833 +309682,109.47,94.8828 +309683,109,92.9455 +309684,108.54,91.0636 +309685,108.56,96.9042 +309686,108.1,94.8932 +309687,107.66,92.9458 +309688,107.23,91.0539 +309689,107.16,96.9235 +309690,106.73,94.9031 +309691,106.33,92.9464 +309692,105.93,91.0455 +309693,105.75,96.9413 +309694,105.37,94.9124 +309695,104.99,92.9475 +309696,104.63,91.0386 +309697,104.35,96.9574 +309698,104,94.9211 +309699,103.65,92.949 +309700,103.32,91.033 +309701,102.95,96.9719 +309702,102.63,94.9293 +309703,102.32,92.9509 +309704,102.02,91.0288 +309705,101.55,96.9849 +309706,101.26,94.9369 +309707,100.98,92.9533 +309708,100.72,91.026 +309709,100.15,96.9962 +309710,99.892,94.9439 +309711,99.649,92.9561 +309712,99.417,91.0246 +309713,98.746,97.0059 +309714,98.524,94.9504 +309715,98.314,92.9593 +309716,98.115,91.0246 +309717,97.343,97.0139 +309718,97.156,94.9563 +309719,96.979,92.963 +309720,96.813,91.026 +309721,95.941,97.0204 +309722,95.787,94.9616 +309723,95.644,92.9671 +309724,95.512,91.0288 +309725,94.538,97.0252 +309726,94.418,94.9663 +309727,94.31,92.9717 +309728,94.21,91.033 +309729,93.136,97.0284 +309730,93.05,94.9705 +309731,92.975,92.9767 +309732,92.909,91.0387 +309733,91.733,97.0299 +309734,91.681,94.9742 +309735,91.64,92.9821 +309736,91.607,91.0457 +309737,90.33,97.0299 +309738,90.312,94.9772 +309739,90.305,92.9879 +309740,90.306,91.0542 +309741,88.927,97.0282 +309742,88.944,94.9797 +309743,88.97,92.9942 +309744,89.004,91.064 +309745,87.524,97.0249 +309746,87.575,94.9816 +309747,87.635,93.001 +309748,87.703,91.0753 +309749,86.122,97.02 +309750,86.206,94.9829 +309751,86.3,93.0081 +309752,86.401,91.0879 +309753,84.719,97.0134 +309754,84.838,94.9837 +309755,84.965,93.0157 +309756,85.099,91.102 +309757,83.317,97.0053 +309758,83.469,94.9839 +309759,83.63,93.0238 +309760,83.798,91.1175 +309761,81.914,96.9956 +309762,82.101,94.9836 +309763,82.295,93.0322 +309764,82.496,91.1343 +309765,80.512,96.9843 +309766,80.732,94.9827 +309767,80.96,93.0411 +309768,81.193,91.1525 +309769,79.11,96.9714 +309770,79.364,94.9812 +309771,79.624,93.0504 +309772,79.891,91.1721 +309773,77.708,96.957 +309774,77.995,94.9792 +309775,78.289,93.0602 +309776,78.588,91.1931 +309777,76.307,96.941 +309778,76.627,94.9767 +309779,76.953,93.0703 +309780,77.285,91.2154 +309781,74.905,96.9234 +309782,75.259,94.9735 +309783,75.618,93.0809 +309784,75.982,91.2391 +309785,73.504,96.9043 +309786,73.891,94.9699 +309787,74.282,93.0919 +309788,74.679,91.2641 +309789,72.104,96.8837 +309790,72.523,94.9657 +309791,72.946,93.1033 +309792,73.375,91.2905 +309793,70.703,96.8616 +309794,71.155,94.961 +309795,71.61,93.1151 +309796,72.07,91.3182 +309797,69.304,96.838 +309798,69.787,94.9557 +309799,70.274,93.1273 +309800,70.766,91.3472 +309801,67.904,96.8129 +309802,68.419,94.9499 +309803,68.938,93.1399 +309804,69.461,91.3775 +309805,66.505,96.7863 +309806,67.052,94.9436 +309807,67.602,93.1529 +309808,68.155,91.4091 +309809,65.107,96.7583 +309810,65.684,94.9368 +309811,66.265,93.1663 +309812,66.849,91.4419 +309813,63.709,96.7288 +309814,64.317,94.9294 +309815,64.929,93.1801 +309816,65.543,91.476 +309817,62.311,96.698 +309818,62.95,94.9216 +309819,63.592,93.1942 +309820,64.236,91.5114 +309821,60.914,96.6657 +309822,61.583,94.9132 +309823,62.255,93.2088 +309824,62.928,91.548 +309825,59.518,96.6321 +309826,60.217,94.9044 +309827,60.917,93.2237 +309828,61.62,91.5858 +309829,58.122,96.5971 +309830,58.85,94.895 +309831,59.58,93.2389 +309832,60.311,91.6248 +309833,56.727,96.5608 +309834,57.484,94.8852 +309835,58.242,93.2545 +309836,59.002,91.665 +309837,55.332,96.5232 +309838,56.118,94.8749 +309839,56.904,93.2705 +309840,57.692,91.7064 +309841,53.939,96.4843 +309842,54.752,94.8641 +309843,55.566,93.2868 +309844,56.381,91.7489 +309845,52.545,96.4441 +309846,53.386,94.8529 +309847,54.228,93.3034 +309848,55.07,91.7925 +309849,51.153,96.4027 +309850,52.021,94.8412 +309851,52.889,93.3204 +309852,53.758,91.8373 +309853,49.761,96.3601 +309854,50.656,94.8291 +309855,51.55,93.3377 +309856,52.445,91.8831 +309857,48.37,96.3162 +309858,49.291,94.8165 +309859,50.211,93.3553 +309860,51.132,91.93 +309861,46.98,96.2712 +309862,47.926,94.8035 +309863,48.872,93.3732 +309864,49.817,91.9779 +309865,45.591,96.2251 +309866,46.562,94.7901 +309867,47.532,93.3914 +309868,48.502,92.0269 +309869,44.202,96.1778 +309870,45.197,94.7763 +309871,46.192,93.41 +309872,47.187,92.0769 +309873,42.815,96.1294 +309874,43.834,94.762 +309875,44.852,93.4288 +309876,45.87,92.1278 +309877,41.428,96.08 +309878,42.47,94.7474 +309879,43.511,93.4478 +309880,44.552,92.1798 +309881,40.042,96.0296 +309882,41.107,94.7323 +309883,42.171,93.4672 +309884,43.234,92.2326 +309885,38.657,95.9781 +309886,39.744,94.7169 +309887,40.83,93.4868 +309888,41.915,92.2864 +309889,37.273,95.9257 +309890,38.381,94.7011 +309891,39.488,93.5066 +309892,40.594,92.341 +309893,35.89,95.8723 +309894,37.019,94.685 +309895,38.147,93.5267 +309896,39.273,92.3965 +309897,34.508,95.818 +309898,35.656,94.6685 +309899,36.804,93.5471 +309900,37.951,92.4528 +309901,33.126,95.7628 +309902,34.295,94.6516 +309903,35.462,93.5676 +309904,36.628,92.51 +309905,31.746,95.7067 +309906,32.933,94.6344 +309907,34.119,93.5884 +309908,35.304,92.5679 +309909,30.367,95.6498 +309910,31.572,94.6169 +309911,32.776,93.6094 +309912,33.979,92.6266 +309913,28.989,95.5921 +309914,30.211,94.5991 +309915,31.433,93.6305 +309916,32.653,92.686 +309917,27.611,95.5337 +309918,28.851,94.581 +309919,30.089,93.6519 +309920,31.326,92.7461 +309921,26.235,95.4745 +309922,27.491,94.5625 +309923,28.745,93.6734 +309924,29.998,92.8068 +309925,24.86,95.4146 +309926,26.131,94.5438 +309927,27.401,93.6951 +309928,28.669,92.8682 +309929,23.486,95.354 +309930,24.772,94.5248 +309931,26.056,93.717 +309932,27.339,92.9303 +309933,22.113,95.2928 +309934,23.413,94.5056 +309935,24.711,93.739 +309936,26.008,92.9929 +309937,20.741,95.231 +309938,22.054,94.4861 +309939,23.366,93.7611 +309940,24.676,93.056 +309941,19.37,95.1686 +309942,20.695,94.4664 +309943,22.02,93.7834 +309944,23.343,93.1197 +309945,18.001,95.1057 +309946,19.337,94.4464 +309947,20.674,93.8058 +309948,22.008,93.1839 +309949,16.632,95.0422 +309950,17.98,94.4262 +309951,19.327,93.8283 +309952,20.673,93.2485 +309953,15.265,94.9783 +309954,16.623,94.4058 +309955,17.98,93.8508 +309956,19.336,93.3136 +309957,13.898,94.914 +309958,15.266,94.3852 +309959,16.633,93.8735 +309960,17.998,93.379 +309961,12.533,94.8492 +309962,13.909,94.3644 +309963,15.285,93.8962 +309964,16.659,93.4448 +309965,11.169,94.7841 +309966,12.553,94.3434 +309967,13.937,93.919 +309968,15.319,93.511 +309969,9.8064,94.7186 +309970,11.197,94.3223 +309971,12.589,93.9419 +309972,13.978,93.5775 +309973,8.4447,94.6529 +309974,9.8421,94.301 +309975,11.24,93.9648 +309976,12.636,93.6442 +309977,7.0842,94.5868 +309978,8.4872,94.2796 +309979,9.8905,93.9877 +309980,11.293,93.7112 +309981,5.7248,94.5205 +309982,7.1326,94.258 +309983,8.5409,94.0106 +309984,9.9479,93.7783 +309985,4.3666,94.454 +309986,5.7785,94.2364 +309987,7.1908,94.0335 +309988,8.6021,93.8457 +309989,3.0096,94.3874 +309990,4.4247,94.2146 +309991,5.8404,94.0565 +309992,7.2551,93.9132 +309993,1.6538,94.3206 +309994,3.0713,94.1927 +309995,4.4896,94.0794 +309996,5.907,93.9808 +309997,0.2991,94.2537 +309998,1.7183,94.1707 +309999,3.1384,94.1023 +310000,4.5577,94.0484 +310001,358.95,94.1867 +310002,0.36571,94.1487 +310003,1.7868,94.1251 +310004,3.2072,94.1161 +310005,357.59,94.1197 +310006,359.01,94.1266 +310007,0.43479,94.1479 +310008,1.8556,94.1838 +310009,356.24,94.0527 +310010,357.66,94.1044 +310011,359.08,94.1707 +310012,0.50271,94.2515 +310013,354.89,93.9858 +310014,356.31,94.0822 +310015,357.73,94.1933 +310016,359.15,94.3191 +310017,353.54,93.9189 +310018,354.96,94.06 +310019,356.38,94.2159 +310020,357.79,94.3866 +310021,352.2,93.8521 +310022,353.61,94.0377 +310023,355.02,94.2384 +310024,356.44,94.454 +310025,350.85,93.7854 +310026,352.26,94.0155 +310027,353.67,94.2608 +310028,355.08,94.5212 +310029,349.5,93.719 +310030,350.91,93.9932 +310031,352.31,94.283 +310032,353.72,94.5882 +310033,348.16,93.6527 +310034,349.56,93.971 +310035,350.96,94.3051 +310036,352.36,94.655 +310037,346.82,93.5866 +310038,348.21,93.9488 +310039,349.6,94.3271 +310040,351,94.7215 +310041,345.48,93.5208 +310042,346.86,93.9266 +310043,348.25,94.349 +310044,349.64,94.7877 +310045,344.13,93.4553 +310046,345.51,93.9045 +310047,346.89,94.3706 +310048,348.27,94.8536 +310049,342.8,93.3902 +310050,344.17,93.8824 +310051,345.54,94.3921 +310052,346.91,94.9191 +310053,341.46,93.3254 +310054,342.82,93.8605 +310055,344.18,94.4134 +310056,345.54,94.9842 +310057,340.12,93.261 +310058,341.47,93.8385 +310059,342.82,94.4345 +310060,344.18,95.0489 +310061,338.78,93.197 +310062,340.12,93.8167 +310063,341.47,94.4554 +310064,342.81,95.1131 +310065,337.45,93.1335 +310066,338.78,93.795 +310067,340.11,94.4761 +310068,341.44,95.1768 +310069,336.11,93.0705 +310070,337.43,93.7734 +310071,338.75,94.4965 +310072,340.07,95.2399 +310073,334.78,93.008 +310074,336.09,93.752 +310075,337.39,94.5167 +310076,338.7,95.3025 +310077,333.45,92.946 +310078,334.74,93.7306 +310079,336.03,94.5367 +310080,337.33,95.3645 +310081,332.12,92.8846 +310082,333.4,93.7094 +310083,334.67,94.5564 +310084,335.95,95.4258 +310085,330.79,92.8238 +310086,332.05,93.6884 +310087,333.31,94.5758 +310088,334.58,95.4865 +310089,329.46,92.7637 +310090,330.71,93.6675 +310091,331.95,94.595 +310092,333.2,95.5464 +310093,328.13,92.7042 +310094,329.36,93.6468 +310095,330.59,94.6138 +310096,331.83,95.6057 +310097,326.81,92.6455 +310098,328.02,93.6263 +310099,329.23,94.6323 +310100,330.45,95.6641 +310101,325.48,92.5874 +310102,326.68,93.606 +310103,327.87,94.6506 +310104,329.07,95.7218 +310105,324.16,92.5301 +310106,325.33,93.5859 +310107,326.51,94.6685 +310108,327.69,95.7787 +310109,322.83,92.4736 +310110,323.99,93.566 +310111,325.15,94.686 +310112,326.31,95.8346 +310113,321.51,92.4179 +310114,322.65,93.5463 +310115,323.79,94.7033 +310116,324.93,95.8897 +310117,320.19,92.363 +310118,321.31,93.5269 +310119,322.42,94.7201 +310120,323.55,95.9439 +310121,318.87,92.3089 +310122,319.96,93.5077 +310123,321.06,94.7366 +310124,322.16,95.9972 +310125,317.55,92.2558 +310126,318.62,93.4887 +310127,319.7,94.7528 +310128,320.78,96.0494 +310129,316.23,92.2035 +310130,317.28,93.4701 +310131,318.34,94.7685 +310132,319.39,96.1007 +310133,314.91,92.1522 +310134,315.94,93.4516 +310135,316.97,94.7839 +310136,318.01,96.1509 +310137,313.59,92.1018 +310138,314.6,93.4335 +310139,315.61,94.7989 +310140,316.62,96.2 +310141,312.28,92.0524 +310142,313.26,93.4156 +310143,314.24,94.8134 +310144,315.23,96.2481 +310145,310.96,92.004 +310146,311.92,93.3981 +310147,312.88,94.8276 +310148,313.84,96.295 +310149,309.65,91.9567 +310150,310.58,93.3808 +310151,311.52,94.8413 +310152,312.45,96.3408 +310153,308.33,91.9104 +310154,309.24,93.3638 +310155,310.15,94.8546 +310156,311.06,96.3855 +310157,307.02,91.8651 +310158,307.9,93.3472 +310159,308.79,94.8674 +310160,309.67,96.4289 +310161,305.71,91.8209 +310162,306.56,93.3309 +310163,307.42,94.8798 +310164,308.28,96.4711 +310165,304.4,91.7779 +310166,305.23,93.3149 +310167,306.06,94.8918 +310168,306.89,96.5121 +310169,303.09,91.7359 +310170,303.89,93.2992 +310171,304.69,94.9033 +310172,305.49,96.5518 +310173,301.78,91.6951 +310174,302.55,93.2839 +310175,303.32,94.9143 +310176,304.1,96.5903 +310177,300.47,91.6555 +310178,301.21,93.2689 +310179,301.96,94.9249 +310180,302.7,96.6274 +310181,299.16,91.617 +310182,299.87,93.2543 +310183,300.59,94.9349 +310184,301.31,96.6632 +310185,297.85,91.5798 +310186,298.54,93.2401 +310187,299.22,94.9445 +310188,299.91,96.6976 +310189,296.54,91.5437 +310190,297.2,93.2262 +310191,297.86,94.9536 +310192,298.51,96.7306 +310193,295.23,91.5089 +310194,295.86,93.2127 +310195,296.49,94.9621 +310196,297.12,96.7623 +310197,293.93,91.4754 +310198,294.53,93.1995 +310199,295.12,94.9702 +310200,295.72,96.7925 +310201,292.62,91.4431 +310202,293.19,93.1868 +310203,293.76,94.9778 +310204,294.32,96.8214 +310205,291.31,91.412 +310206,291.85,93.1744 +310207,292.39,94.9848 +310208,292.92,96.8487 +310209,290.01,91.3823 +310210,290.52,93.1625 +310211,291.02,94.9913 +310212,291.52,96.8746 +310213,288.7,91.3538 +310214,289.18,93.1509 +310215,289.65,94.9973 +310216,290.12,96.8991 +310217,287.4,91.3267 +310218,287.84,93.1397 +310219,288.29,95.0028 +310220,288.72,96.922 +310221,286.09,91.3009 +310222,286.51,93.129 +310223,286.92,95.0077 +310224,287.32,96.9434 +310225,284.79,91.2764 +310226,285.17,93.1186 +310227,285.55,95.0121 +310228,285.92,96.9633 +310229,283.49,91.2532 +310230,283.84,93.1087 +310231,284.18,95.0159 +310232,284.52,96.9816 +310233,282.18,91.2314 +310234,282.5,93.0992 +310235,282.81,95.0192 +310236,283.12,96.9985 +310237,280.88,91.211 +310238,281.17,93.0901 +310239,281.44,95.0219 +310240,281.72,97.0137 +310241,279.58,91.192 +310242,279.83,93.0814 +310243,280.08,95.0241 +310244,280.32,97.0274 +310245,278.28,91.1743 +310246,278.49,93.0731 +310247,278.71,95.0258 +310248,278.91,97.0395 +310249,276.97,91.158 +310250,277.16,93.0653 +310251,277.34,95.0268 +310252,277.51,97.05 +310253,275.67,91.1431 +310254,275.82,93.0579 +310255,275.97,95.0273 +310256,276.11,97.0589 +310257,274.37,91.1295 +310258,274.49,93.051 +310259,274.6,95.0273 +310260,274.71,97.0662 +310261,273.07,91.1174 +310262,273.15,93.0444 +310263,273.23,95.0267 +310264,273.3,97.0719 +310265,271.77,91.1067 +310266,271.82,93.0383 +310267,271.86,95.0255 +310268,271.9,97.076 +310269,270.46,91.0974 +310270,270.48,93.0327 +310271,270.5,95.0237 +310272,270.5,97.0785 +310273,269.16,91.0895 +310274,269.15,93.0274 +310275,269.13,95.0214 +310276,269.1,97.0793 +310277,267.86,91.083 +310278,267.81,93.0227 +310279,267.76,95.0185 +310280,267.69,97.0785 +310281,266.56,91.0779 +310282,266.48,93.0183 +310283,266.39,95.015 +310284,266.29,97.0761 +310285,265.26,91.0742 +310286,265.14,93.0144 +310287,265.02,95.011 +310288,264.89,97.0721 +310289,263.96,91.0719 +310290,263.81,93.0109 +310291,263.65,95.0064 +310292,263.49,97.0664 +310293,262.65,91.0711 +310294,262.47,93.0079 +310295,262.28,95.0012 +310296,262.08,97.0592 +310297,261.35,91.0716 +310298,261.14,93.0053 +310299,260.92,94.9954 +310300,260.68,97.0503 +310301,260.05,91.0736 +310302,259.8,93.0031 +310303,259.55,94.9891 +310304,259.28,97.0397 +310305,258.75,91.0769 +310306,258.47,93.0014 +310307,258.18,94.9822 +310308,257.88,97.0276 +310309,257.45,91.0816 +310310,257.13,93.0001 +310311,256.81,94.9748 +310312,256.48,97.0138 +310313,256.14,91.0878 +310314,255.8,92.9992 +310315,255.44,94.9668 +310316,255.07,96.9984 +310317,254.84,91.0953 +310318,254.46,92.9988 +310319,254.07,94.9582 +310320,253.67,96.9815 +310321,253.54,91.1042 +310322,253.13,92.9988 +310323,252.71,94.9491 +310324,252.27,96.9629 +310325,252.23,91.1145 +310326,251.79,92.9992 +310327,251.34,94.9394 +310328,250.87,96.9427 +310329,250.93,91.1261 +310330,250.46,93.0001 +310331,249.97,94.9291 +310332,249.47,96.921 +310333,249.63,91.1391 +310334,249.12,93.0013 +310335,248.6,94.9183 +310336,248.07,96.8977 +310337,248.32,91.1535 +310338,247.78,93.003 +310339,247.24,94.907 +310340,246.67,96.8729 +310341,247.02,91.1692 +310342,246.45,93.0051 +310343,245.87,94.8951 +310344,245.28,96.8464 +310345,245.71,91.1862 +310346,245.11,93.0076 +310347,244.5,94.8827 +310348,243.88,96.8185 +310349,244.4,91.2045 +310350,243.78,93.0106 +310351,243.13,94.8697 +310352,242.48,96.789 +310353,243.1,91.2242 +310354,242.44,93.0139 +310355,241.77,94.8562 +310356,241.08,96.7581 +310357,241.79,91.2451 +310358,241.1,93.0176 +310359,240.4,94.8422 +310360,239.69,96.7256 +310361,240.48,91.2673 +310362,239.77,93.0217 +310363,239.03,94.8276 +310364,238.29,96.6917 +310365,239.18,91.2908 +310366,238.43,93.0262 +310367,237.67,94.8125 +310368,236.89,96.6563 +310369,237.87,91.3156 +310370,237.09,93.0311 +310371,236.3,94.797 +310372,235.5,96.6194 +310373,236.56,91.3416 +310374,235.75,93.0364 +310375,234.94,94.7809 +310376,234.11,96.5811 +310377,235.25,91.3688 +310378,234.42,93.042 +310379,233.57,94.7643 +310380,232.71,96.5415 +310381,233.94,91.3972 +310382,233.08,93.048 +310383,232.21,94.7472 +310384,231.32,96.5004 +310385,232.63,91.4268 +310386,231.74,93.0544 +310387,230.84,94.7296 +310388,229.93,96.458 +310389,231.31,91.4576 +310390,230.4,93.0611 +310391,229.48,94.7115 +310392,228.54,96.4142 +310393,230,91.4896 +310394,229.06,93.0682 +310395,228.11,94.693 +310396,227.15,96.369 +310397,228.69,91.5227 +310398,227.72,93.0756 +310399,226.75,94.674 +310400,225.76,96.3226 +310401,227.37,91.5569 +310402,226.39,93.0834 +310403,225.38,94.6545 +310404,224.37,96.2749 +310405,226.06,91.5922 +310406,225.05,93.0915 +310407,224.02,94.6346 +310408,222.98,96.226 +310409,224.74,91.6286 +310410,223.71,93.0999 +310411,222.66,94.6142 +310412,221.59,96.1758 +310413,223.43,91.666 +310414,222.37,93.1087 +310415,221.29,94.5934 +310416,220.21,96.1243 +310417,222.11,91.7045 +310418,221.03,93.1177 +310419,219.93,94.5722 +310420,218.82,96.0717 +310421,220.79,91.7441 +310422,219.69,93.1271 +310423,218.57,94.5505 +310424,217.44,96.018 +310425,219.47,91.7846 +310426,218.35,93.1367 +310427,217.21,94.5284 +310428,216.06,95.9631 +310429,218.15,91.8261 +310430,217.01,93.1467 +310431,215.85,94.5059 +310432,214.67,95.9071 +310433,216.83,91.8685 +310434,215.66,93.1569 +310435,214.48,94.483 +310436,213.29,95.85 +310437,215.51,91.9119 +310438,214.32,93.1674 +310439,213.12,94.4597 +310440,211.91,95.7919 +310441,214.19,91.9561 +310442,212.98,93.1781 +310443,211.76,94.4361 +310444,210.53,95.7327 +310445,212.86,92.0013 +310446,211.64,93.1891 +310447,210.4,94.412 +310448,209.15,95.6726 +310449,211.54,92.0473 +310450,210.3,93.2004 +310451,209.04,94.3876 +310452,207.78,95.6114 +310453,210.21,92.0941 +310454,208.95,93.2119 +310455,207.68,94.3629 +310456,206.4,95.5494 +310457,208.89,92.1418 +310458,207.61,93.2236 +310459,206.32,94.3378 +310460,205.02,95.4864 +310461,207.56,92.1902 +310462,206.27,93.2355 +310463,204.96,94.3123 +310464,203.65,95.4226 +310465,206.23,92.2393 +310466,204.92,93.2476 +310467,203.61,94.2866 +310468,202.28,95.3579 +310469,204.9,92.2892 +310470,203.58,93.26 +310471,202.25,94.2605 +310472,200.91,95.2924 +310473,203.57,92.3398 +310474,202.23,93.2725 +310475,200.89,94.2341 +310476,199.53,95.2261 +310477,202.24,92.391 +310478,200.89,93.2852 +310479,199.53,94.2074 +310480,198.16,95.1591 +310481,200.9,92.4429 +310482,199.54,93.2981 +310483,198.18,94.1805 +310484,196.8,95.0913 +310485,199.57,92.4954 +310486,198.2,93.3111 +310487,196.82,94.1532 +310488,195.43,95.0229 +310489,198.23,92.5484 +310490,196.85,93.3243 +310491,195.46,94.1257 +310492,194.06,94.9538 +310493,196.9,92.6021 +310494,195.51,93.3377 +310495,194.11,94.098 +310496,192.7,94.8841 +310497,195.56,92.6562 +310498,194.16,93.3511 +310499,192.75,94.07 +310500,191.33,94.8138 +310501,194.22,92.7108 +310502,192.81,93.3647 +310503,191.4,94.0418 +310504,189.97,94.7429 +310505,192.88,92.7659 +310506,191.47,93.3784 +310507,190.04,94.0134 +310508,188.61,94.6715 +310509,191.54,92.8214 +310510,190.12,93.3922 +310511,188.69,93.9847 +310512,187.25,94.5997 +310513,190.2,92.8774 +310514,188.77,93.4061 +310515,187.33,93.9559 +310516,185.89,94.5273 +310517,188.85,92.9336 +310518,187.42,93.42 +310519,185.98,93.9268 +310520,184.53,94.4546 +310521,187.51,92.9903 +310522,186.07,93.4341 +310523,184.63,93.8976 +310524,183.17,94.3815 +310525,186.16,93.0472 +310526,184.72,93.4481 +310527,183.27,93.8682 +310528,181.82,94.308 +310529,184.82,93.1044 +310530,183.37,93.4623 +310531,181.92,93.8387 +310532,180.46,94.2342 +310533,183.47,93.1618 +310534,182.02,93.4764 +310535,180.57,93.809 +310536,179.11,94.1601 +310537,182.12,93.2195 +310538,180.67,93.4906 +310539,179.22,93.7792 +310540,177.76,94.0858 +310541,180.77,93.2773 +310542,179.32,93.5048 +310543,177.87,93.7493 +310544,176.41,94.0113 +310545,179.42,93.3353 +310546,177.97,93.519 +310547,176.52,93.7193 +310548,175.06,93.9366 +310549,178.07,93.3934 +310550,176.62,93.5332 +310551,175.17,93.6892 +310552,173.71,93.8617 +310553,176.71,93.4515 +310554,175.27,93.5474 +310555,173.82,93.659 +310556,172.36,93.7868 +310557,175.36,93.5098 +310558,173.92,93.5615 +310559,172.47,93.6287 +310560,171.02,93.7117 +310561,174,93.568 +310562,172.56,93.5756 +310563,171.12,93.5983 +310564,169.67,93.6366 +310565,172.64,93.6262 +310566,171.21,93.5896 +310567,169.77,93.5679 +310568,168.33,93.5615 +310569,171.28,93.6843 +310570,169.86,93.6036 +310571,168.42,93.5375 +310572,166.99,93.4865 +310573,169.92,93.7424 +310574,168.5,93.6175 +310575,167.08,93.507 +310576,165.64,93.4115 +310577,168.56,93.8004 +310578,167.15,93.6313 +310579,165.73,93.4766 +310580,164.3,93.3366 +310581,167.2,93.8582 +310582,165.79,93.645 +310583,164.38,93.4461 +310584,162.97,93.2618 +310585,165.84,93.9158 +310586,164.44,93.6586 +310587,163.04,93.4156 +310588,161.63,93.1872 +310589,164.47,93.9732 +310590,163.08,93.6721 +310591,161.69,93.3851 +310592,160.29,93.1127 +310593,163.11,94.0303 +310594,161.73,93.6855 +310595,160.34,93.3547 +310596,158.96,93.0386 +310597,161.74,94.0872 +310598,160.37,93.6987 +310599,159,93.3243 +310600,157.62,92.9646 +310601,160.37,94.1437 +310602,159.02,93.7117 +310603,157.65,93.294 +310604,156.29,92.891 +310605,159,94.1999 +310606,157.66,93.7246 +310607,156.31,93.2637 +310608,154.96,92.8177 +310609,157.63,94.2557 +310610,156.3,93.7373 +310611,154.97,93.2335 +310612,153.63,92.7447 +310613,156.26,94.3111 +310614,154.95,93.7499 +310615,153.62,93.2033 +310616,152.3,92.6721 +310617,154.89,94.366 +310618,153.59,93.7622 +310619,152.28,93.1733 +310620,150.97,92.6 +310621,153.52,94.4205 +310622,152.23,93.7743 +310623,150.94,93.1434 +310624,149.64,92.5283 +310625,152.14,94.4745 +310626,150.87,93.7862 +310627,149.59,93.1136 +310628,148.31,92.4571 +310629,150.77,94.5279 +310630,149.51,93.7979 +310631,148.25,93.0839 +310632,146.99,92.3864 +310633,149.39,94.5807 +310634,148.15,93.8093 +310635,146.91,93.0543 +310636,145.66,92.3163 +310637,148.01,94.6329 +310638,146.79,93.8205 +310639,145.57,93.0249 +310640,144.34,92.2467 +310641,146.63,94.6845 +310642,145.43,93.8314 +310643,144.23,92.9957 +310644,143.02,92.1778 +310645,145.25,94.7354 +310646,144.07,93.8421 +310647,142.89,92.9666 +310648,141.7,92.1094 +310649,143.87,94.7856 +310650,142.71,93.8524 +310651,141.55,92.9377 +310652,140.38,92.0418 +310653,142.49,94.8351 +310654,141.35,93.8625 +310655,140.21,92.909 +310656,139.06,91.9748 +310657,141.11,94.8838 +310658,139.99,93.8723 +310659,138.87,92.8805 +310660,137.74,91.9086 +310661,139.73,94.9317 +310662,138.63,93.8818 +310663,137.53,92.8522 +310664,136.42,91.8431 +310665,138.34,94.9788 +310666,137.27,93.8909 +310667,136.19,92.8241 +310668,135.11,91.7783 +310669,136.96,95.025 +310670,135.91,93.8997 +310671,134.85,92.7962 +310672,133.79,91.7144 +310673,135.57,95.0704 +310674,134.54,93.9082 +310675,133.51,92.7686 +310676,132.48,91.6513 +310677,134.18,95.1148 +310678,133.18,93.9164 +310679,132.18,92.7412 +310680,131.16,91.5891 +310681,132.79,95.1583 +310682,131.82,93.9241 +310683,130.84,92.714 +310684,129.85,91.5277 +310685,131.4,95.2009 +310686,130.46,93.9316 +310687,129.5,92.6871 +310688,128.54,91.4673 +310689,130.02,95.2424 +310690,129.09,93.9386 +310691,128.16,92.6605 +310692,127.23,91.4078 +310693,128.62,95.2829 +310694,127.73,93.9453 +310695,126.83,92.6342 +310696,125.92,91.3492 +310697,127.23,95.3224 +310698,126.37,93.9515 +310699,125.49,92.6082 +310700,124.61,91.2916 +310701,125.84,95.3608 +310702,125,93.9574 +310703,124.15,92.5824 +310704,123.3,91.235 +310705,124.45,95.3981 +310706,123.64,93.9628 +310707,122.82,92.5569 +310708,121.99,91.1794 +310709,123.06,95.4343 +310710,122.27,93.9679 +310711,121.48,92.5318 +310712,120.68,91.1249 +310713,121.66,95.4693 +310714,120.91,93.9725 +310715,120.15,92.507 +310716,119.38,91.0714 +310717,120.27,95.5032 +310718,119.55,93.9767 +310719,118.81,92.4825 +310720,118.07,91.019 +310721,118.87,95.5358 +310722,118.18,93.9804 +310723,117.48,92.4583 +310724,116.76,90.9677 +310725,117.48,95.5673 +310726,116.81,93.9837 +310727,116.14,92.4345 +310728,115.46,90.91754 +310729,116.08,95.5975 +310730,115.45,93.9866 +310731,114.81,92.411 +310732,114.15,90.86851 +310733,114.68,95.6264 +310734,114.08,93.989 +310735,113.47,92.3878 +310736,112.85,90.82065 +310737,113.28,95.654 +310738,112.72,93.9909 +310739,112.14,92.365 +310740,111.55,90.77396 +310741,111.89,95.6804 +310742,111.35,93.9924 +310743,110.81,92.3426 +310744,110.25,90.72846 +310745,110.49,95.7054 +310746,109.99,93.9934 +310747,109.47,92.3206 +310748,108.94,90.68418 +310749,109.09,95.7291 +310750,108.62,93.9939 +310751,108.14,92.2989 +310752,107.64,90.64112 +310753,107.69,95.7514 +310754,107.25,93.9939 +310755,106.81,92.2776 +310756,106.34,90.5993 +310757,106.29,95.7723 +310758,105.89,93.9934 +310759,105.47,92.2567 +310760,105.04,90.55874 +310761,104.89,95.7919 +310762,104.52,93.9924 +310763,104.14,92.2362 +310764,103.74,90.51944 +310765,103.49,95.81 +310766,103.16,93.9909 +310767,102.81,92.216 +310768,102.44,90.48143 +310769,102.09,95.8267 +310770,101.79,93.9889 +310771,101.47,92.1963 +310772,101.14,90.44471 +310773,100.69,95.8419 +310774,100.42,93.9864 +310775,100.14,92.177 +310776,99.842,90.4093 +310777,99.285,95.8557 +310778,99.056,93.9834 +310779,98.808,92.1581 +310780,98.543,90.3752 +310781,97.884,95.868 +310782,97.69,93.9799 +310783,97.476,92.1395 +310784,97.245,90.34242 +310785,96.482,95.8788 +310786,96.323,93.9758 +310787,96.144,92.1214 +310788,95.946,90.31099 +310789,95.08,95.8882 +310790,94.956,93.9712 +310791,94.811,92.1038 +310792,94.648,90.2809 +310793,93.678,95.896 +310794,93.589,93.966 +310795,93.479,92.0865 +310796,93.35,90.25216 +310797,92.276,95.9023 +310798,92.222,93.9604 +310799,92.147,92.0697 +310800,92.053,90.22478 +310801,90.873,95.9071 +310802,90.856,93.9542 +310803,90.815,92.0533 +310804,90.755,90.19877 +310805,89.471,95.9103 +310806,89.489,93.9474 +310807,89.483,92.0373 +310808,89.458,90.17414 +310809,88.069,95.912 +310810,88.122,93.9401 +310811,88.151,92.0218 +310812,88.16,90.15088 +310813,86.666,95.9121 +310814,86.755,93.9323 +310815,86.819,92.0066 +310816,86.863,90.12901 +310817,85.264,95.9107 +310818,85.388,93.9239 +310819,85.488,91.992 +310820,85.565,90.10853 +310821,83.862,95.9077 +310822,84.022,93.915 +310823,84.156,91.9777 +310824,84.268,90.089438 +310825,82.46,95.9031 +310826,82.655,93.9055 +310827,82.824,91.9639 +310828,82.971,90.071741 +310829,81.058,95.897 +310830,81.288,93.8955 +310831,81.492,91.9505 +310832,81.673,90.05544 +310833,79.656,95.8893 +310834,79.922,93.8849 +310835,80.16,91.9376 +310836,80.376,90.040536 +310837,78.255,95.88 +310838,78.555,93.8738 +310839,78.828,91.9251 +310840,79.078,90.02703 +310841,76.853,95.8691 +310842,77.189,93.8621 +310843,77.497,91.9131 +310844,77.78,90.014922 +310845,75.452,95.8567 +310846,75.823,93.8499 +310847,76.165,91.9015 +310848,76.483,90.0042111 +310849,74.051,95.8427 +310850,74.456,93.8371 +310851,74.833,91.8903 +310852,75.184,89.9948956 +310853,72.651,95.8271 +310854,73.09,93.8238 +310855,73.501,91.8795 +310856,73.886,89.986973 +310857,71.251,95.8099 +310858,71.724,93.81 +310859,72.168,91.8692 +310860,72.588,89.980441 +310861,69.851,95.7911 +310862,70.359,93.7955 +310863,70.836,91.8594 +310864,71.289,89.975296 +310865,68.452,95.7708 +310866,68.993,93.7806 +310867,69.504,91.8499 +310868,69.99,89.971533 +310869,67.053,95.7489 +310870,67.627,93.7651 +310871,68.172,91.8409 +310872,68.69,89.969147 +310873,65.654,95.7254 +310874,66.262,93.749 +310875,66.839,91.8324 +310876,67.39,89.968133 +310877,64.256,95.7004 +310878,64.897,93.7324 +310879,65.507,91.8242 +310880,66.09,89.968484 +310881,62.858,95.6739 +310882,63.532,93.7153 +310883,64.174,91.8165 +310884,64.789,89.970193 +310885,61.461,95.6458 +310886,62.167,93.6976 +310887,62.841,91.8092 +310888,63.488,89.973252 +310889,60.065,95.6161 +310890,60.803,93.6794 +310891,61.508,91.8024 +310892,62.187,89.977653 +310893,58.669,95.585 +310894,59.438,93.6607 +310895,60.175,91.7959 +310896,60.885,89.983388 +310897,57.274,95.5523 +310898,58.074,93.6414 +310899,58.842,91.7899 +310900,59.583,89.9904454 +310901,55.879,95.5182 +310902,56.71,93.6217 +310903,57.508,91.7843 +310904,58.28,89.9988157 +310905,54.485,95.4825 +310906,55.346,93.6014 +310907,56.175,91.7791 +310908,56.976,90.0084878 +310909,53.092,95.4454 +310910,53.983,93.5806 +310911,54.841,91.7743 +310912,55.672,90.01945 +310913,51.7,95.4069 +310914,52.62,93.5593 +310915,53.507,91.7699 +310916,54.367,90.03169 +310917,50.308,95.3668 +310918,51.257,93.5374 +310919,52.173,91.7659 +310920,53.062,90.045195 +310921,48.917,95.3254 +310922,49.894,93.5151 +310923,50.839,91.7622 +310924,51.756,90.05995 +310925,47.527,95.2825 +310926,48.532,93.4923 +310927,49.504,91.759 +310928,50.449,90.075943 +310929,46.137,95.2383 +310930,47.17,93.469 +310931,48.169,91.7562 +310932,49.141,90.093158 +310933,44.749,95.1926 +310934,45.808,93.4452 +310935,46.834,91.7537 +310936,47.833,90.11158 +310937,43.361,95.1456 +310938,44.446,93.421 +310939,45.499,91.7516 +310940,46.524,90.13119 +310941,41.974,95.0973 +310942,43.085,93.3962 +310943,44.164,91.7499 +310944,45.215,90.15198 +310945,40.588,95.0476 +310946,41.724,93.371 +310947,42.828,91.7485 +310948,43.904,90.17392 +310949,39.203,94.9967 +310950,40.364,93.3454 +310951,41.492,91.7475 +310952,42.593,90.19701 +310953,37.819,94.9444 +310954,39.003,93.3193 +310955,40.156,91.7468 +310956,41.281,90.22121 +310957,36.436,94.8909 +310958,37.643,93.2927 +310959,38.819,91.7465 +310960,39.968,90.24652 +310961,35.054,94.8362 +310962,36.284,93.2657 +310963,37.482,91.7465 +310964,38.654,90.2729 +310965,33.673,94.7802 +310966,34.925,93.2383 +310967,36.145,91.7468 +310968,37.339,90.30035 +310969,32.293,94.7231 +310970,33.566,93.2105 +310971,34.808,91.7474 +310972,36.024,90.32885 +310973,30.913,94.6648 +310974,32.207,93.1822 +310975,33.47,91.7484 +310976,34.707,90.35836 +310977,29.535,94.6053 +310978,30.849,93.1536 +310979,32.133,91.7497 +310980,33.39,90.38887 +310981,28.158,94.5448 +310982,29.491,93.1245 +310983,30.794,91.7512 +310984,32.071,90.42037 +310985,26.783,94.4831 +310986,28.134,93.095 +310987,29.456,91.7531 +310988,30.752,90.45281 +310989,25.408,94.4204 +310990,26.777,93.0652 +310991,28.117,91.7552 +310992,29.431,90.48619 +310993,24.034,94.3566 +310994,25.42,93.035 +310995,26.778,91.7576 +310996,28.11,90.52048 +310997,22.661,94.2919 +310998,24.064,93.0044 +310999,25.438,91.7603 +311000,26.787,90.55565 +311001,21.29,94.2261 +311002,22.708,92.9735 +311003,24.098,91.7633 +311004,25.464,90.59168 +311005,19.92,94.1594 +311006,21.353,92.9422 +311007,22.758,91.7664 +311008,24.139,90.62855 +311009,18.551,94.0918 +311010,19.998,92.9106 +311011,21.418,91.7699 +311012,22.814,90.66623 +311013,17.183,94.0233 +311014,18.643,92.8786 +311015,20.077,91.7735 +311016,21.487,90.70469 +311017,15.816,93.9539 +311018,17.289,92.8464 +311019,18.736,91.7774 +311020,20.159,90.74391 +311021,14.45,93.8837 +311022,15.935,92.8138 +311023,17.394,91.7815 +311024,18.83,90.78387 +311025,13.086,93.8127 +311026,14.582,92.7809 +311027,16.052,91.7858 +311028,17.5,90.82453 +311029,11.723,93.7409 +311030,13.229,92.7478 +311031,14.71,91.7903 +311032,16.169,90.86586 +311033,10.361,93.6684 +311034,11.876,92.7143 +311035,13.367,91.795 +311036,14.837,90.90785 +311037,9.0003,93.5951 +311038,10.524,92.6806 +311039,12.024,91.7999 +311040,13.503,90.95047 +311041,7.6408,93.5212 +311042,9.1722,92.6467 +311043,10.681,91.8049 +311044,12.168,90.99367 +311045,6.2826,93.4467 +311046,7.821,92.6125 +311047,9.3373,91.8101 +311048,10.833,91.0374 +311049,4.9256,93.3715 +311050,6.4702,92.578 +311051,7.9932,91.8154 +311052,9.4956,91.0818 +311053,3.5699,93.2957 +311054,5.1198,92.5433 +311055,6.6487,91.8209 +311056,8.1575,91.1266 +311057,2.2155,93.2194 +311058,3.7699,92.5084 +311059,5.3039,91.8265 +311060,6.8181,91.1719 +311061,0.86226,93.1426 +311062,2.4204,92.4733 +311063,3.9587,91.8322 +311064,5.4775,91.2176 +311065,359.51,93.0653 +311066,1.0714,92.438 +311067,2.6131,91.838 +311068,4.1358,91.2638 +311069,358.16,92.9876 +311070,359.72,92.4025 +311071,1.2671,91.844 +311072,2.7928,91.3104 +311073,356.81,92.9094 +311074,358.37,92.3669 +311075,359.92,91.85 +311076,1.4486,91.3573 +311077,355.46,92.8309 +311078,357.03,92.3311 +311079,358.57,91.8561 +311080,0.10324,91.4045 +311081,354.12,92.752 +311082,355.68,92.2951 +311083,357.23,91.8622 +311084,358.76,91.4521 +311085,352.77,92.6728 +311086,354.33,92.259 +311087,355.88,91.8684 +311088,357.41,91.4999 +311089,351.43,92.5934 +311090,352.99,92.2227 +311091,354.53,91.8747 +311092,356.06,91.5479 +311093,350.08,92.5136 +311094,351.64,92.1864 +311095,353.18,91.8809 +311096,354.71,91.5962 +311097,348.74,92.4337 +311098,350.3,92.1499 +311099,351.83,91.8873 +311100,353.36,91.6446 +311101,347.4,92.3536 +311102,348.95,92.1133 +311103,350.49,91.8936 +311104,352.01,91.6932 +311105,346.06,92.2734 +311106,347.61,92.0767 +311107,349.14,91.8999 +311108,350.65,91.7419 +311109,344.72,92.193 +311110,346.26,92.04 +311111,347.79,91.9062 +311112,349.3,91.7907 +311113,343.39,92.1126 +311114,344.92,92.0032 +311115,346.44,91.9125 +311116,347.94,91.8395 +311117,342.05,92.0321 +311118,343.57,91.9664 +311119,345.09,91.9188 +311120,346.58,91.8883 +311121,340.72,91.9516 +311122,342.23,91.9295 +311123,343.73,91.925 +311124,345.22,91.9371 +311125,339.38,91.8712 +311126,340.89,91.8926 +311127,342.38,91.9311 +311128,343.86,91.9859 +311129,338.05,91.7908 +311130,339.55,91.8557 +311131,341.03,91.9373 +311132,342.5,92.0346 +311133,336.72,91.7105 +311134,338.21,91.8188 +311135,339.68,91.9433 +311136,341.14,92.0832 +311137,335.39,91.6304 +311138,336.87,91.7818 +311139,338.33,91.9492 +311140,339.78,92.1316 +311141,334.06,91.5504 +311142,335.52,91.7449 +311143,336.97,91.9551 +311144,338.41,92.1798 +311145,332.74,91.4706 +311146,334.18,91.7081 +311147,335.62,91.9608 +311148,337.05,92.2279 +311149,331.41,91.391 +311150,332.84,91.6712 +311151,334.27,91.9665 +311152,335.68,92.2757 +311153,330.09,91.3117 +311154,331.51,91.6344 +311155,332.91,91.972 +311156,334.31,92.3233 +311157,328.76,91.2327 +311158,330.17,91.5977 +311159,331.56,91.9773 +311160,332.94,92.3705 +311161,327.44,91.154 +311162,328.83,91.5611 +311163,330.21,91.9825 +311164,331.57,92.4174 +311165,326.12,91.0756 +311166,327.49,91.5245 +311167,328.85,91.9876 +311168,330.2,92.4639 +311169,324.8,90.99769 +311170,326.15,91.488 +311171,327.5,91.9925 +311172,328.83,92.5101 +311173,323.48,90.92016 +311174,324.81,91.4516 +311175,326.14,91.9972 +311176,327.45,92.5558 +311177,322.16,90.84309 +311178,323.48,91.4154 +311179,324.78,92.0017 +311180,326.08,92.6011 +311181,320.85,90.7665 +311182,322.14,91.3792 +311183,323.43,92.006 +311184,324.7,92.6459 +311185,319.53,90.69042 +311186,320.81,91.3432 +311187,322.07,92.0101 +311188,323.32,92.6901 +311189,318.21,90.61488 +311190,319.47,91.3074 +311191,320.71,92.014 +311192,321.95,92.7338 +311193,316.9,90.53992 +311194,318.13,91.2717 +311195,319.36,92.0177 +311196,320.57,92.7769 +311197,315.59,90.46556 +311198,316.8,91.2361 +311199,318,92.0211 +311200,319.19,92.8195 +311201,314.28,90.39184 +311202,315.46,91.2007 +311203,316.64,92.0243 +311204,317.81,92.8613 +311205,312.97,90.31877 +311206,314.13,91.1656 +311207,315.28,92.0272 +311208,316.42,92.9025 +311209,311.66,90.24639 +311210,312.8,91.1306 +311211,313.92,92.0298 +311212,315.04,92.9431 +311213,310.35,90.17473 +311214,311.46,91.0958 +311215,312.57,92.0322 +311216,313.66,92.9828 +311217,309.04,90.10381 +311218,310.13,91.0612 +311219,311.21,92.0342 +311220,312.27,93.0219 +311221,307.73,90.033663 +311222,308.8,91.0269 +311223,309.85,92.036 +311224,310.89,93.0601 +311225,306.43,89.964312 +311226,307.46,90.99276 +311227,308.49,92.0375 +311228,309.5,93.0976 +311229,305.12,89.89578 +311230,306.13,90.95889 +311231,307.13,92.0386 +311232,308.11,93.1341 +311233,303.82,89.82811 +311234,304.8,90.92526 +311235,305.77,92.0394 +311236,306.72,93.1699 +311237,302.51,89.7613 +311238,303.47,90.8919 +311239,304.41,92.0399 +311240,305.34,93.2047 +311241,301.21,89.69539 +311242,302.14,90.8588 +311243,303.05,92.0401 +311244,303.95,93.2386 +311245,299.91,89.63041 +311246,300.81,90.82597 +311247,301.69,92.0399 +311248,302.55,93.2716 +311249,298.61,89.56637 +311250,299.48,90.79343 +311251,300.33,92.0393 +311252,301.16,93.3036 +311253,297.31,89.5033 +311254,298.14,90.76118 +311255,298.97,92.0384 +311256,299.77,93.3346 +311257,296.01,89.44122 +311258,296.81,90.72922 +311259,297.6,92.0371 +311260,298.38,93.3646 +311261,294.71,89.38015 +311262,295.48,90.69758 +311263,296.24,92.0355 +311264,296.98,93.3935 +311265,293.41,89.32012 +311266,294.15,90.66624 +311267,294.88,92.0334 +311268,295.59,93.4214 +311269,292.12,89.26114 +311270,292.83,90.63523 +311271,293.52,92.0309 +311272,294.2,93.4482 +311273,290.82,89.20324 +311274,291.5,90.60455 +311275,292.16,92.0281 +311276,292.8,93.4739 +311277,289.52,89.14643 +311278,290.17,90.5742 +311279,290.8,92.0248 +311280,291.4,93.4984 +311281,288.23,89.09073 +311282,288.84,90.5442 +311283,289.43,92.0211 +311284,290.01,93.5218 +311285,286.93,89.03617 +311286,287.51,90.51454 +311287,288.07,92.017 +311288,288.61,93.544 +311289,285.64,88.9827 +311290,286.18,90.48524 +311291,286.71,92.0124 +311292,287.21,93.565 +311293,284.34,88.9305 +311294,284.85,90.45629 +311295,285.35,92.0075 +311296,285.82,93.5848 +311297,283.05,88.8794 +311298,283.53,90.42772 +311299,283.98,92.002 +311300,284.42,93.6033 +311301,281.76,88.8296 +311302,282.2,90.39952 +311303,282.62,91.9962 +311304,283.02,93.6206 +311305,280.46,88.7809 +311306,280.87,90.37169 +311307,281.26,91.9898 +311308,281.62,93.6366 +311309,279.17,88.7335 +311310,279.54,90.34425 +311311,279.89,91.9831 +311312,280.22,93.6513 +311313,277.88,88.6873 +311314,278.22,90.31719 +311315,278.53,91.9758 +311316,278.82,93.6647 +311317,276.59,88.6424 +311318,276.89,90.29053 +311319,277.17,91.9681 +311320,277.42,93.6768 +311321,275.3,88.5987 +311322,275.56,90.26426 +311323,275.8,91.9599 +311324,276.02,93.6875 +311325,274,88.5563 +311326,274.23,90.2384 +311327,274.44,91.9513 +311328,274.62,93.6969 +311329,272.71,88.5152 +311330,272.91,90.21294 +311331,273.08,91.9421 +311332,273.22,93.7049 +311333,271.42,88.4754 +311334,271.58,90.18789 +311335,271.71,91.9325 +311336,271.82,93.7116 +311337,270.13,88.437 +311338,270.25,90.16326 +311339,270.35,91.9224 +311340,270.42,93.7168 +311341,268.84,88.3998 +311342,268.93,90.13904 +311343,268.99,91.9117 +311344,269.02,93.7206 +311345,267.55,88.364 +311346,267.6,90.11524 +311347,267.62,91.9006 +311348,267.61,93.723 +311349,266.26,88.3295 +311350,266.27,90.091858 +311351,266.26,91.889 +311352,266.21,93.724 +311353,264.97,88.2963 +311354,264.95,90.068906 +311355,264.9,91.8769 +311356,264.81,93.7235 +311357,263.68,88.2645 +311358,263.62,90.046381 +311359,263.53,91.8643 +311360,263.41,93.7216 +311361,262.39,88.2341 +311362,262.3,90.024287 +311363,262.17,91.8511 +311364,262.01,93.7183 +311365,261.1,88.205 +311366,260.97,90.0026242 +311367,260.81,91.8375 +311368,260.61,93.7134 +311369,259.81,88.1772 +311370,259.64,89.981395 +311371,259.44,91.8234 +311372,259.21,93.7071 +311373,258.52,88.1509 +311374,258.32,89.960601 +311375,258.08,91.8087 +311376,257.81,93.6993 +311377,257.23,88.1259 +311378,256.99,89.940244 +311379,256.72,91.7935 +311380,256.41,93.6901 +311381,255.94,88.1023 +311382,255.66,89.920324 +311383,255.35,91.7778 +311384,255.01,93.6793 +311385,254.65,88.0801 +311386,254.34,89.900843 +311387,253.99,91.7616 +311388,253.61,93.667 +311389,253.36,88.0592 +311390,253.01,89.8818 +311391,252.63,91.7449 +311392,252.21,93.6533 +311393,252.07,88.0397 +311394,251.69,89.8632 +311395,251.27,91.7277 +311396,250.81,93.638 +311397,250.78,88.0216 +311398,250.36,89.84503 +311399,249.9,91.7099 +311400,249.41,93.6213 +311401,249.49,88.0049 +311402,249.03,89.82731 +311403,248.54,91.6917 +311404,248.01,93.603 +311405,248.2,87.9895 +311406,247.71,89.81002 +311407,247.18,91.6729 +311408,246.61,93.5833 +311409,246.91,87.9755 +311410,246.38,89.79317 +311411,245.82,91.6536 +311412,245.21,93.5621 +311413,245.62,87.9629 +311414,245.05,89.77676 +311415,244.45,91.6338 +311416,243.81,93.5393 +311417,244.32,87.9516 +311418,243.73,89.76078 +311419,243.09,91.6134 +311420,242.42,93.5151 +311421,243.03,87.9417 +311422,242.4,89.74524 +311423,241.73,91.5926 +311424,241.02,93.4894 +311425,241.74,87.9331 +311426,241.07,89.73013 +311427,240.37,91.5712 +311428,239.62,93.4622 +311429,240.44,87.9259 +311430,239.75,89.71545 +311431,239.01,91.5494 +311432,238.23,93.4335 +311433,239.15,87.92 +311434,238.42,89.70121 +311435,237.65,91.527 +311436,236.83,93.4033 +311437,237.86,87.9154 +311438,237.09,89.68738 +311439,236.29,91.5041 +311440,235.44,93.3717 +311441,236.56,87.9122 +311442,235.76,89.67399 +311443,234.93,91.4808 +311444,234.05,93.3386 +311445,235.26,87.9103 +311446,234.44,89.66101 +311447,233.57,91.4569 +311448,232.65,93.304 +311449,233.97,87.9097 +311450,233.11,89.64845 +311451,232.21,91.4325 +311452,231.26,93.268 +311453,232.67,87.9104 +311454,231.78,89.63631 +311455,230.85,91.4077 +311456,229.87,93.2306 +311457,231.37,87.9123 +311458,230.45,89.62458 +311459,229.49,91.3823 +311460,228.48,93.1917 +311461,230.08,87.9156 +311462,229.12,89.61325 +311463,228.13,91.3565 +311464,227.09,93.1515 +311465,228.78,87.9201 +311466,227.79,89.60234 +311467,226.77,91.3302 +311468,225.7,93.1098 +311469,227.48,87.9258 +311470,226.47,89.59182 +311471,225.41,91.3034 +311472,224.31,93.0667 +311473,226.18,87.9328 +311474,225.14,89.58169 +311475,224.05,91.2762 +311476,222.92,93.0223 +311477,224.88,87.941 +311478,223.81,89.57196 +311479,222.7,91.2484 +311480,221.54,92.9765 +311481,223.58,87.9504 +311482,222.48,89.56261 +311483,221.34,91.2203 +311484,220.15,92.9294 +311485,222.27,87.961 +311486,221.15,89.55365 +311487,219.98,91.1916 +311488,218.77,92.8809 +311489,220.97,87.9727 +311490,219.82,89.54506 +311491,218.62,91.1625 +311492,217.38,92.8311 +311493,219.67,87.9857 +311494,218.49,89.53684 +311495,217.27,91.133 +311496,216,92.7801 +311497,218.36,87.9997 +311498,217.16,89.52899 +311499,215.91,91.103 +311500,214.62,92.7277 +311501,217.06,88.0149 +311502,215.83,89.5215 +311503,214.56,91.0726 +311504,213.24,92.6741 +311505,215.75,88.0312 +311506,214.49,89.51436 +311507,213.2,91.0418 +311508,211.86,92.6193 +311509,214.44,88.0486 +311510,213.16,89.50757 +311511,211.85,91.0106 +311512,210.48,92.5632 +311513,213.13,88.067 +311514,211.83,89.50112 +311515,210.49,90.97889 +311516,209.1,92.5059 +311517,211.82,88.0865 +311518,210.5,89.495 +311519,209.14,90.94682 +311520,207.73,92.4475 +311521,210.51,88.1071 +311522,209.17,89.48921 +311523,207.78,90.91436 +311524,206.35,92.3879 +311525,209.2,88.1286 +311526,207.83,89.48375 +311527,206.43,90.8815 +311528,204.98,92.3271 +311529,207.89,88.1511 +311530,206.5,89.47859 +311531,205.08,90.84826 +311532,203.6,92.2653 +311533,206.57,88.1746 +311534,205.17,89.47375 +311535,203.72,90.81464 +311536,202.23,92.2024 +311537,205.26,88.1991 +311538,203.83,89.4692 +311539,202.37,90.78066 +311540,200.86,92.1384 +311541,203.94,88.2244 +311542,202.5,89.46494 +311543,201.02,90.74631 +311544,199.49,92.0733 +311545,202.63,88.2507 +311546,201.17,89.46097 +311547,199.67,90.71161 +311548,198.12,92.0073 +311549,201.31,88.2778 +311550,199.83,89.45727 +311551,198.32,90.67657 +311552,196.76,91.9403 +311553,199.99,88.3058 +311554,198.5,89.45385 +311555,196.97,90.64119 +311556,195.39,91.8723 +311557,198.67,88.3346 +311558,197.16,89.45068 +311559,195.62,90.60548 +311560,194.03,91.8034 +311561,197.35,88.3642 +311562,195.83,89.44776 +311563,194.27,90.56946 +311564,192.66,91.7335 +311565,196.03,88.3946 +311566,194.49,89.44509 +311567,192.92,90.53313 +311568,191.3,91.6628 +311569,194.7,88.4258 +311570,193.15,89.44265 +311571,191.57,90.4965 +311572,189.94,91.5913 +311573,193.38,88.4577 +311574,191.82,89.44044 +311575,190.22,90.45958 +311576,188.58,91.5189 +311577,192.05,88.4902 +311578,190.48,89.43844 +311579,188.87,90.42237 +311580,187.22,91.4457 +311581,190.73,88.5235 +311582,189.14,89.43665 +311583,187.52,90.3849 +311584,185.87,91.3718 +311585,189.4,88.5574 +311586,187.8,89.43507 +311587,186.18,90.34716 +311588,184.51,91.2971 +311589,188.07,88.5919 +311590,186.47,89.43367 +311591,184.83,90.30917 +311592,183.16,91.2217 +311593,186.74,88.627 +311594,185.13,89.43245 +311595,183.48,90.27094 +311596,181.8,91.1457 +311597,185.4,88.6627 +311598,183.79,89.4314 +311599,182.14,90.23248 +311600,180.45,91.069 +311601,184.07,88.6989 +311602,182.45,89.43052 +311603,180.79,90.19379 +311604,179.1,90.99172 +311605,182.74,88.7357 +311606,181.11,89.42978 +311607,179.45,90.15489 +311608,177.75,90.91384 +311609,181.4,88.7729 +311610,179.77,89.42919 +311611,178.1,90.11579 +311612,176.41,90.83542 +311613,180.06,88.8105 +311614,178.43,89.42873 +311615,176.76,90.076498 +311616,175.06,90.75648 +311617,178.73,88.8486 +311618,177.09,89.4284 +311619,175.42,90.037025 +311620,173.71,90.67706 +311621,177.39,88.8871 +311622,175.75,89.42817 +311623,174.07,89.9973804 +311624,172.37,90.59718 +311625,176.05,88.926 +311626,174.4,89.42805 +311627,172.73,89.957576 +311628,171.03,90.51689 +311629,174.7,88.9652 +311630,173.06,89.42803 +311631,171.39,89.917621 +311632,169.69,90.43621 +311633,173.36,89.00465 +311634,171.72,89.42808 +311635,170.05,89.87753 +311636,168.35,90.35518 +311637,172.02,89.04443 +311638,170.38,89.42821 +311639,168.71,89.83731 +311640,167.01,90.27382 +311641,170.67,89.08445 +311642,169.03,89.4284 +311643,167.37,89.79697 +311644,165.67,90.19217 +311645,169.32,89.12468 +311646,167.69,89.42865 +311647,166.03,89.75652 +311648,164.34,90.11028 +311649,167.97,89.16511 +311650,166.34,89.42893 +311651,164.69,89.71598 +311652,163.01,90.028155 +311653,166.62,89.20569 +311654,165,89.42925 +311655,163.35,89.67535 +311656,161.67,89.945845 +311657,165.27,89.2464 +311658,163.66,89.42959 +311659,162.01,89.63465 +311660,160.34,89.86338 +311661,163.92,89.2872 +311662,162.31,89.42993 +311663,160.67,89.59389 +311664,159.01,89.78079 +311665,162.57,89.32808 +311666,160.96,89.43028 +311667,159.34,89.55307 +311668,157.68,89.69811 +311669,161.21,89.36898 +311670,159.62,89.43063 +311671,158,89.51221 +311672,156.36,89.61538 +311673,159.86,89.40989 +311674,158.27,89.43095 +311675,156.66,89.47132 +311676,155.03,89.53263 +311677,158.5,89.45078 +311678,156.92,89.43123 +311679,155.33,89.43041 +311680,153.7,89.44988 +311681,157.14,89.49161 +311682,155.58,89.43148 +311683,153.99,89.38949 +311684,152.38,89.36718 +311685,155.78,89.53235 +311686,154.23,89.43168 +311687,152.66,89.34858 +311688,151.06,89.28455 +311689,154.42,89.57297 +311690,152.88,89.43182 +311691,151.32,89.30767 +311692,149.74,89.20203 +311693,153.06,89.61345 +311694,151.53,89.43188 +311695,149.99,89.26679 +311696,148.42,89.11966 +311697,151.69,89.65375 +311698,150.18,89.43186 +311699,148.65,89.22594 +311700,147.1,89.03746 +311701,150.33,89.69384 +311702,148.84,89.43175 +311703,147.32,89.18514 +311704,145.78,88.9555 +311705,148.96,89.73369 +311706,147.49,89.43154 +311707,145.99,89.1444 +311708,144.47,88.8737 +311709,147.6,89.77328 +311710,146.14,89.43121 +311711,144.65,89.10372 +311712,143.15,88.7922 +311713,146.23,89.81256 +311714,144.79,89.43077 +311715,143.32,89.06312 +311716,141.84,88.711 +311717,144.86,89.85152 +311718,143.43,89.43018 +311719,141.99,89.0226 +311720,140.53,88.6302 +311721,143.49,89.89011 +311722,142.08,89.42946 +311723,140.66,88.9822 +311724,139.22,88.5497 +311725,142.12,89.928324 +311726,140.73,89.42858 +311727,139.33,88.9419 +311728,137.91,88.4696 +311729,140.74,89.966115 +311730,139.38,89.42754 +311731,138,88.9017 +311732,136.6,88.39 +311733,139.37,90.0034601 +311734,138.03,89.42633 +311735,136.67,88.8616 +311736,135.29,88.3108 +311737,138,90.040329 +311738,136.68,89.42493 +311739,135.34,88.8217 +311740,133.98,88.232 +311741,136.62,90.076693 +311742,135.32,89.42334 +311743,134.01,88.7819 +311744,132.68,88.1538 +311745,135.24,90.11252 +311746,133.97,89.42155 +311747,132.68,88.7423 +311748,131.37,88.0762 +311749,133.86,90.14779 +311750,132.62,89.41955 +311751,131.35,88.7029 +311752,130.07,87.9991 +311753,132.48,90.18247 +311754,131.26,89.41733 +311755,130.02,88.6636 +311756,128.77,87.9227 +311757,131.1,90.21653 +311758,129.91,89.41487 +311759,128.7,88.6245 +311760,127.47,87.8468 +311761,129.72,90.24995 +311762,128.56,89.41218 +311763,127.37,88.5856 +311764,126.17,87.7716 +311765,128.34,90.2827 +311766,127.2,89.40924 +311767,126.04,88.5469 +311768,124.87,87.6972 +311769,126.96,90.31474 +311770,125.85,89.40605 +311771,124.72,88.5085 +311772,123.57,87.6234 +311773,125.57,90.34606 +311774,124.49,89.40258 +311775,123.39,88.4702 +311776,122.27,87.5504 +311777,124.19,90.37662 +311778,123.14,89.39885 +311779,122.06,88.4322 +311780,120.98,87.4781 +311781,122.8,90.40641 +311782,121.78,89.39482 +311783,120.74,88.3944 +311784,119.68,87.4066 +311785,121.42,90.4354 +311786,120.42,89.39051 +311787,119.41,88.3569 +311788,118.39,87.336 +311789,120.03,90.46355 +311790,119.07,89.3859 +311791,118.09,88.3197 +311792,117.09,87.2662 +311793,118.64,90.49085 +311794,117.71,89.38098 +311795,116.76,88.2827 +311796,115.8,87.1973 +311797,117.25,90.51727 +311798,116.36,89.37574 +311799,115.44,88.246 +311800,114.51,87.1292 +311801,115.86,90.54279 +311802,115,89.37018 +311803,114.12,88.2096 +311804,113.22,87.0621 +311805,114.47,90.56738 +311806,113.64,89.36429 +311807,112.79,88.1734 +311808,111.92,86.9959 +311809,113.08,90.59102 +311810,112.29,89.35805 +311811,111.47,88.1376 +311812,110.63,86.9307 +311813,111.69,90.61369 +311814,110.93,89.35147 +311815,110.15,88.102 +311816,109.35,86.8665 +311817,110.3,90.63537 +311818,109.57,89.34454 +311819,108.82,88.0668 +311820,108.06,86.8033 +311821,108.9,90.65603 +311822,108.21,89.33725 +311823,107.5,88.0319 +311824,106.77,86.7411 +311825,107.51,90.67565 +311826,106.85,89.32959 +311827,106.18,87.9974 +311828,105.48,86.6799 +311829,106.11,90.69421 +311830,105.5,89.32155 +311831,104.86,87.9631 +311832,104.2,86.6198 +311833,104.72,90.71169 +311834,104.14,89.31313 +311835,103.53,87.9292 +311836,102.91,86.5608 +311837,103.32,90.72808 +311838,102.78,89.30433 +311839,102.21,87.8957 +311840,101.62,86.5029 +311841,101.93,90.74334 +311842,101.42,89.29513 +311843,100.89,87.8625 +311844,100.34,86.4461 +311845,100.53,90.75747 +311846,100.06,89.28553 +311847,99.57,87.8297 +311848,99.054,86.3904 +311849,99.135,90.77045 +311850,98.705,89.27553 +311851,98.249,87.7972 +311852,97.77,86.3359 +311853,97.738,90.78225 +311854,97.346,89.26511 +311855,96.928,87.7651 +311856,96.487,86.2826 +311857,96.34,90.79286 +311858,95.987,89.25428 +311859,95.608,87.7334 +311860,95.203,86.2305 +311861,94.942,90.80227 +311862,94.628,89.24303 +311863,94.287,87.7021 +311864,93.921,86.1795 +311865,93.544,90.81045 +311866,93.269,89.23135 +311867,92.967,87.6711 +311868,92.638,86.1298 +311869,92.145,90.8174 +311870,91.91,89.21924 +311871,91.646,87.6406 +311872,91.356,86.0813 +311873,90.747,90.8231 +311874,90.551,89.2067 +311875,90.326,87.6104 +311876,90.074,86.034 +311877,89.348,90.82753 +311878,89.192,89.19371 +311879,89.006,87.5806 +311880,88.793,85.988 +311881,87.949,90.83068 +311882,87.833,89.18029 +311883,87.686,87.5513 +311884,87.511,85.9432 +311885,86.549,90.83253 +311886,86.473,89.16641 +311887,86.366,87.5223 +311888,86.23,85.8997 +311889,85.15,90.83309 +311890,85.114,89.15209 +311891,85.047,87.4938 +311892,84.949,85.8575 +311893,83.75,90.83232 +311894,83.755,89.1373 +311895,83.727,87.4657 +311896,83.669,85.8165 +311897,82.351,90.83023 +311898,82.396,89.12206 +311899,82.407,87.438 +311900,82.388,85.7769 +311901,80.951,90.82681 +311902,81.037,89.10636 +311903,81.088,87.4107 +311904,81.108,85.7386 +311905,79.551,90.82203 +311906,79.677,89.0902 +311907,79.768,87.3838 +311908,79.827,85.7016 +311909,78.152,90.81591 +311910,78.318,89.07357 +311911,78.449,87.3574 +311912,78.547,85.6659 +311913,76.752,90.80842 +311914,76.959,89.05647 +311915,77.129,87.3314 +311916,77.266,85.6315 +311917,75.353,90.79955 +311918,75.6,89.0389 +311919,75.81,87.3058 +311920,75.986,85.5985 +311921,73.954,90.78931 +311922,74.242,89.02086 +311923,74.491,87.2806 +311924,74.705,85.5668 +311925,72.555,90.77769 +311926,72.883,89.00235 +311927,73.171,87.2559 +311928,73.424,85.5364 +311929,71.156,90.76468 +311930,71.524,88.9834 +311931,71.852,87.2316 +311932,72.144,85.5074 +311933,69.757,90.75028 +311934,70.165,88.9639 +311935,70.532,87.2078 +311936,70.863,85.4797 +311937,68.359,90.73448 +311938,68.807,88.944 +311939,69.213,87.1844 +311940,69.582,85.4534 +311941,66.961,90.71728 +311942,67.449,88.9235 +311943,67.893,87.1614 +311944,68.3,85.4284 +311945,65.563,90.69867 +311946,66.09,88.9026 +311947,66.574,87.1389 +311948,67.019,85.4048 +311949,64.166,90.67867 +311950,64.732,88.8813 +311951,65.254,87.1168 +311952,65.737,85.3825 +311953,62.769,90.65725 +311954,63.374,88.8594 +311955,63.935,87.0951 +311956,64.455,85.3615 +311957,61.373,90.63444 +311958,62.017,88.8371 +311959,62.615,87.0739 +311960,63.173,85.3419 +311961,59.977,90.61022 +311962,60.659,88.8143 +311963,61.295,87.0531 +311964,61.89,85.3236 +311965,58.581,90.58459 +311966,59.302,88.791 +311967,59.975,87.0328 +311968,60.607,85.3067 +311969,57.186,90.55756 +311970,57.945,88.7672 +311971,58.655,87.0129 +311972,59.323,85.2911 +311973,55.792,90.52914 +311974,56.588,88.743 +311975,57.335,86.9934 +311976,58.039,85.2768 +311977,54.398,90.49932 +311978,55.231,88.7183 +311979,56.014,86.9743 +311980,56.755,85.2638 +311981,53.004,90.46811 +311982,53.874,88.6931 +311983,54.694,86.9557 +311984,55.47,85.2522 +311985,51.612,90.43551 +311986,52.518,88.6674 +311987,53.373,86.9375 +311988,54.184,85.2418 +311989,50.22,90.40154 +311990,51.162,88.6413 +311991,52.052,86.9198 +311992,52.898,85.2328 +311993,48.829,90.36619 +311994,49.806,88.6148 +311995,50.731,86.9024 +311996,51.612,85.225 +311997,47.438,90.32947 +311998,48.451,88.5877 +311999,49.41,86.8855 +312000,50.324,85.2186 +312001,46.049,90.2914 +312002,47.096,88.5602 +312003,48.089,86.869 +312004,49.037,85.2134 +312005,44.66,90.25198 +312006,45.741,88.5323 +312007,46.767,86.8529 +312008,47.748,85.2095 +312009,43.272,90.21122 +312010,44.386,88.5039 +312011,45.446,86.8372 +312012,46.459,85.2068 +312013,41.885,90.16912 +312014,43.032,88.475 +312015,44.124,86.8219 +312016,45.169,85.2054 +312017,40.498,90.12571 +312018,41.678,88.4457 +312019,42.802,86.8071 +312020,43.878,85.2052 +312021,39.113,90.080997 +312022,40.324,88.416 +312023,41.479,86.7926 +312024,42.587,85.2062 +312025,37.728,90.034984 +312026,38.971,88.3858 +312027,40.157,86.7785 +312028,41.295,85.2084 +312029,36.345,89.98769 +312030,37.618,88.3552 +312031,38.834,86.7648 +312032,40.002,85.2118 +312033,34.962,89.939127 +312034,36.265,88.3242 +312035,37.511,86.7515 +312036,38.708,85.2164 +312037,33.581,89.88931 +312038,34.913,88.2927 +312039,36.187,86.7386 +312040,37.413,85.2221 +312041,32.2,89.83826 +312042,33.561,88.2609 +312043,34.864,86.7261 +312044,36.118,85.229 +312045,30.821,89.78598 +312046,32.209,88.2286 +312047,33.54,86.7139 +312048,34.821,85.2371 +312049,29.442,89.73249 +312050,30.858,88.1959 +312051,32.215,86.7021 +312052,33.524,85.2462 +312053,28.065,89.67782 +312054,29.507,88.1628 +312055,30.891,86.6906 +312056,32.226,85.2564 +312057,26.689,89.62197 +312058,28.156,88.1294 +312059,29.566,86.6796 +312060,30.926,85.2677 +312061,25.314,89.56497 +312062,26.806,88.0955 +312063,28.241,86.6688 +312064,29.626,85.2801 +312065,23.94,89.50684 +312066,25.457,88.0613 +312067,26.915,86.6584 +312068,28.325,85.2935 +312069,22.567,89.44759 +312070,24.107,88.0266 +312071,25.59,86.6484 +312072,27.022,85.308 +312073,21.195,89.38725 +312074,22.759,87.9917 +312075,24.264,86.6386 +312076,25.719,85.3234 +312077,19.825,89.32583 +312078,21.41,87.9563 +312079,22.937,86.6292 +312080,24.415,85.3398 +312081,18.456,89.26337 +312082,20.062,87.9206 +312083,21.61,86.6201 +312084,23.109,85.3572 +312085,17.088,89.19987 +312086,18.715,87.8846 +312087,20.283,86.6113 +312088,21.802,85.3755 +312089,15.722,89.13536 +312090,17.368,87.8482 +312091,18.956,86.6028 +312092,20.495,85.3948 +312093,14.356,89.06987 +312094,16.021,87.8115 +312095,17.628,86.5947 +312096,19.186,85.4149 +312097,12.993,89.00342 +312098,14.675,87.7744 +312099,16.3,86.5868 +312100,17.876,85.4359 +312101,11.63,88.936 +312102,13.329,87.7371 +312103,14.971,86.5791 +312104,16.565,85.4578 +312105,10.269,88.8677 +312106,11.984,87.6994 +312107,13.642,86.5718 +312108,15.252,85.4805 +312109,8.9086,88.7985 +312110,10.639,87.6614 +312111,12.313,86.5647 +312112,13.939,85.504 +312113,7.55,88.7285 +312114,9.2945,87.6232 +312115,10.983,86.5579 +312116,12.624,85.5283 +312117,6.1927,88.6576 +312118,7.9506,87.5847 +312119,9.6532,86.5513 +312120,11.308,85.5533 +312121,4.8368,88.5859 +312122,6.6072,87.5458 +312123,8.3227,86.5449 +312124,9.9905,85.5791 +312125,3.4823,88.5134 +312126,5.2643,87.5068 +312127,6.9919,86.5388 +312128,8.672,85.6056 +312129,2.1292,88.4402 +312130,3.9218,87.4674 +312131,5.6606,86.5329 +312132,7.3523,85.6327 +312133,0.77752,88.3662 +312134,2.5799,87.4279 +312135,4.329,86.5272 +312136,6.0312,85.6605 +312137,359.43,88.2916 +312138,1.2384,87.3881 +312139,2.9969,86.5218 +312140,4.7089,85.689 +312141,358.08,88.2162 +312142,359.9,87.348 +312143,1.6644,86.5165 +312144,3.3853,85.718 +312145,356.73,88.1403 +312146,358.56,87.3078 +312147,0.33158,86.5114 +312148,2.0604,85.7476 +312149,355.38,88.0637 +312150,357.22,87.2673 +312151,359,86.5065 +312152,0.73424,85.7778 +312153,354.04,87.9865 +312154,355.88,87.2266 +312155,357.66,86.5017 +312156,359.41,85.8084 +312157,352.7,87.9088 +312158,354.54,87.1858 +312159,356.33,86.4972 +312160,358.08,85.8396 +312161,351.36,87.8306 +312162,353.2,87.1447 +312163,355,86.4927 +312164,356.75,85.8713 +312165,350.02,87.7518 +312166,351.86,87.1035 +312167,353.66,86.4884 +312168,355.42,85.9034 +312169,348.68,87.6726 +312170,350.52,87.0621 +312171,352.33,86.4843 +312172,354.08,85.9358 +312173,347.34,87.593 +312174,349.19,87.0206 +312175,350.99,86.4802 +312176,352.75,85.9687 +312177,346,87.513 +312178,347.85,86.979 +312179,349.65,86.4763 +312180,351.41,86.0019 +312181,344.67,87.4326 +312182,346.52,86.9372 +312183,348.32,86.4725 +312184,350.08,86.0355 +312185,343.34,87.3518 +312186,345.18,86.8953 +312187,346.98,86.4687 +312188,348.74,86.0693 +312189,342,87.2708 +312190,343.85,86.8533 +312191,345.64,86.4651 +312192,347.4,86.1035 +312193,340.67,87.1894 +312194,342.51,86.8111 +312195,344.3,86.4615 +312196,346.06,86.1378 +312197,339.35,87.1079 +312198,341.18,86.7689 +312199,342.97,86.458 +312200,344.72,86.1724 +312201,338.02,87.0261 +312202,339.84,86.7266 +312203,341.63,86.4545 +312204,343.37,86.2071 +312205,336.69,86.9441 +312206,338.51,86.6843 +312207,340.29,86.4511 +312208,342.03,86.242 +312209,335.37,86.862 +312210,337.18,86.6419 +312211,338.95,86.4477 +312212,340.68,86.277 +312213,334.04,86.7798 +312214,335.85,86.5994 +312215,337.61,86.4443 +312216,339.33,86.3122 +312217,332.72,86.6975 +312218,334.51,86.5569 +312219,336.27,86.441 +312220,337.98,86.3473 +312221,331.4,86.6151 +312222,333.18,86.5144 +312223,334.93,86.4376 +312224,336.63,86.3825 +312225,330.08,86.5327 +312226,331.85,86.4719 +312227,333.59,86.4343 +312228,335.28,86.4177 +312229,328.77,86.4504 +312230,330.52,86.4293 +312231,332.24,86.4309 +312232,333.93,86.4529 +312233,327.45,86.368 +312234,329.19,86.3868 +312235,330.9,86.4275 +312236,332.58,86.4881 +312237,326.14,86.2858 +312238,327.87,86.3442 +312239,329.56,86.4241 +312240,331.22,86.5231 +312241,324.82,86.2037 +312242,326.54,86.3018 +312243,328.22,86.4206 +312244,329.86,86.5581 +312245,323.51,86.1216 +312246,325.21,86.2593 +312247,326.87,86.417 +312248,328.51,86.5929 +312249,322.2,86.0398 +312250,323.88,86.2169 +312251,325.53,86.4134 +312252,327.15,86.6275 +312253,320.89,85.9582 +312254,322.55,86.1745 +312255,324.19,86.4097 +312256,325.79,86.6619 +312257,319.58,85.8768 +312258,321.23,86.1322 +312259,322.84,86.406 +312260,324.42,86.6961 +312261,318.28,85.7956 +312262,319.9,86.09 +312263,321.5,86.4021 +312264,323.06,86.73 +312265,316.97,85.7148 +312266,318.58,86.0479 +312267,320.15,86.3981 +312268,321.7,86.7637 +312269,315.67,85.6343 +312270,317.25,86.0058 +312271,318.81,86.394 +312272,320.33,86.797 +312273,314.36,85.5541 +312274,315.93,85.9639 +312275,317.46,86.3898 +312276,318.96,86.83 +312277,313.06,85.4743 +312278,314.6,85.9221 +312279,316.11,86.3855 +312280,317.6,86.8626 +312281,311.76,85.395 +312282,313.28,85.8804 +312283,314.77,86.381 +312284,316.23,86.8949 +312285,310.46,85.3161 +312286,311.95,85.8389 +312287,313.42,86.3764 +312288,314.86,86.9266 +312289,309.16,85.2376 +312290,310.63,85.7975 +312291,312.07,86.3716 +312292,313.48,86.958 +312293,307.87,85.1597 +312294,309.31,85.7563 +312295,310.72,86.3666 +312296,312.11,86.9888 +312297,306.57,85.0823 +312298,307.99,85.7152 +312299,309.38,86.3614 +312300,310.74,87.0192 +312301,305.28,85.0055 +312302,306.67,85.6743 +312303,308.03,86.3561 +312304,309.36,87.049 +312305,303.98,84.9292 +312306,305.34,85.6336 +312307,306.68,86.3505 +312308,307.99,87.0783 +312309,302.69,84.8536 +312310,304.02,85.5931 +312311,305.33,86.3448 +312312,306.61,87.1069 +312313,301.4,84.7786 +312314,302.7,85.5528 +312315,303.98,86.3388 +312316,305.23,87.135 +312317,300.11,84.7043 +312318,301.38,85.5127 +312319,302.63,86.3326 +312320,303.85,87.1624 +312321,298.82,84.6306 +312322,300.06,85.4728 +312323,301.28,86.3262 +312324,302.47,87.1891 +312325,297.53,84.5577 +312326,298.74,85.4331 +312327,299.93,86.3195 +312328,301.09,87.2152 +312329,296.24,84.4856 +312330,297.42,85.3937 +312331,298.58,86.3126 +312332,299.71,87.2405 +312333,294.96,84.4142 +312334,296.11,85.3545 +312335,297.23,86.3054 +312336,298.33,87.2651 +312337,293.67,84.3437 +312338,294.79,85.3156 +312339,295.88,86.2979 +312340,296.94,87.2889 +312341,292.39,84.2739 +312342,293.47,85.277 +312343,294.53,86.2902 +312344,295.56,87.3119 +312345,291.1,84.205 +312346,292.15,85.2386 +312347,293.17,86.2822 +312348,294.17,87.3342 +312349,289.82,84.137 +312350,290.83,85.2005 +312351,291.82,86.2739 +312352,292.79,87.3556 +312353,288.54,84.0699 +312354,289.52,85.1627 +312355,290.47,86.2653 +312356,291.4,87.3761 +312357,287.26,84.0037 +312358,288.2,85.1252 +312359,289.12,86.2564 +312360,290.01,87.3958 +312361,285.98,83.9384 +312362,286.88,85.0879 +312363,287.77,86.2472 +312364,288.62,87.4145 +312365,284.7,83.8741 +312366,285.57,85.051 +312367,286.41,86.2376 +312368,287.23,87.4323 +312369,283.42,83.8107 +312370,284.25,85.0144 +312371,285.06,86.2278 +312372,285.84,87.4492 +312373,282.14,83.7484 +312374,282.94,84.9782 +312375,283.71,86.2176 +312376,284.45,87.4652 +312377,280.86,83.6871 +312378,281.62,84.9422 +312379,282.35,86.2071 +312380,283.06,87.4801 +312381,279.58,83.6268 +312382,280.3,84.9066 +312383,281,86.1962 +312384,281.67,87.4941 +312385,278.31,83.5676 +312386,278.99,84.8714 +312387,279.65,86.1849 +312388,280.28,87.507 +312389,277.03,83.5095 +312390,277.67,84.8364 +312391,278.29,86.1734 +312392,278.88,87.5189 +312393,275.76,83.4524 +312394,276.36,84.8019 +312395,276.94,86.1614 +312396,277.49,87.5297 +312397,274.48,83.3965 +312398,275.05,84.7677 +312399,275.58,86.1491 +312400,276.1,87.5395 +312401,273.21,83.3417 +312402,273.73,84.7338 +312403,274.23,86.1364 +312404,274.7,87.5481 +312405,271.93,83.288 +312406,272.42,84.7004 +312407,272.88,86.1233 +312408,273.31,87.5557 +312409,270.66,83.2355 +312410,271.1,84.6673 +312411,271.52,86.1098 +312412,271.91,87.5621 +312413,269.39,83.1842 +312414,269.79,84.6346 +312415,270.17,86.096 +312416,270.52,87.5674 +312417,268.11,83.134 +312418,268.48,84.6022 +312419,268.81,86.0817 +312420,269.12,87.5716 +312421,266.84,83.085 +312422,267.16,84.5703 +312423,267.46,86.0671 +312424,267.72,87.5746 +312425,265.57,83.0373 +312426,265.85,84.5388 +312427,266.1,86.0521 +312428,266.33,87.5764 +312429,264.3,82.9907 +312430,264.54,84.5076 +312431,264.75,86.0366 +312432,264.93,87.577 +312433,263.03,82.9454 +312434,263.22,84.4769 +312435,263.39,86.0207 +312436,263.53,87.5764 +312437,261.75,82.9014 +312438,261.91,84.4465 +312439,262.04,86.0044 +312440,262.13,87.5746 +312441,260.48,82.8586 +312442,260.6,84.4166 +312443,260.68,85.9877 +312444,260.74,87.5715 +312445,259.21,82.817 +312446,259.29,84.3871 +312447,259.33,85.9706 +312448,259.34,87.5672 +312449,257.94,82.7767 +312450,257.97,84.358 +312451,257.97,85.9531 +312452,257.94,87.5617 +312453,256.67,82.7377 +312454,256.66,84.3293 +312455,256.62,85.9351 +312456,256.54,87.5549 +312457,255.4,82.7 +312458,255.35,84.301 +312459,255.26,85.9167 +312460,255.15,87.5469 +312461,254.13,82.6636 +312462,254.04,84.2732 +312463,253.91,85.8979 +312464,253.75,87.5376 +312465,252.86,82.6284 +312466,252.72,84.2458 +312467,252.55,85.8786 +312468,252.35,87.527 +312469,251.59,82.5946 +312470,251.41,84.2188 +312471,251.2,85.8589 +312472,250.95,87.5151 +312473,250.32,82.5621 +312474,250.1,84.1922 +312475,249.85,85.8388 +312476,249.56,87.5019 +312477,249.04,82.5308 +312478,248.79,84.1661 +312479,248.49,85.8182 +312480,248.16,87.4874 +312481,247.77,82.5009 +312482,247.47,84.1404 +312483,247.14,85.7971 +312484,246.76,87.4716 +312485,246.5,82.4723 +312486,246.16,84.1151 +312487,245.78,85.7757 +312488,245.36,87.4545 +312489,245.23,82.445 +312490,244.85,84.0903 +312491,244.43,85.7538 +312492,243.97,87.4361 +312493,243.96,82.419 +312494,243.54,84.0659 +312495,243.07,85.7314 +312496,242.57,87.4164 +312497,242.69,82.3943 +312498,242.22,84.0419 +312499,241.72,85.7086 +312500,241.17,87.3954 +312501,241.41,82.3709 +312502,240.91,84.0184 +312503,240.37,85.6854 +312504,239.78,87.3731 +312505,240.14,82.3488 +312506,239.6,83.9953 +312507,239.01,85.6617 +312508,238.38,87.3494 +312509,238.87,82.3281 +312510,238.28,83.9726 +312511,237.66,85.6376 +312512,236.99,87.3244 +312513,237.59,82.3086 +312514,236.97,83.9503 +312515,236.31,85.613 +312516,235.59,87.2981 +312517,236.32,82.2905 +312518,235.66,83.9285 +312519,234.95,85.588 +312520,234.2,87.2705 +312521,235.05,82.2736 +312522,234.34,83.9071 +312523,233.6,85.5626 +312524,232.81,87.2416 +312525,233.77,82.258 +312526,233.03,83.8862 +312527,232.25,85.5367 +312528,231.41,87.2114 +312529,232.5,82.2437 +312530,231.72,83.8656 +312531,230.9,85.5104 +312532,230.02,87.1799 +312533,231.22,82.2307 +312534,230.4,83.8455 +312535,229.54,85.4837 +312536,228.63,87.147 +312537,229.94,82.219 +312538,229.09,83.8259 +312539,228.19,85.4565 +312540,227.24,87.1129 +312541,228.67,82.2085 +312542,227.78,83.8066 +312543,226.84,85.4289 +312544,225.85,87.0775 +312545,227.39,82.1993 +312546,226.46,83.7877 +312547,225.49,85.4008 +312548,224.46,87.0408 +312549,226.11,82.1913 +312550,225.15,83.7693 +312551,224.14,85.3723 +312552,223.07,87.0028 +312553,224.83,82.1846 +312554,223.83,83.7513 +312555,222.79,85.3434 +312556,221.68,86.9636 +312557,223.55,82.1791 +312558,222.52,83.7337 +312559,221.44,85.3141 +312560,220.3,86.9231 +312561,222.27,82.1748 +312562,221.2,83.7165 +312563,220.08,85.2844 +312564,218.91,86.8813 +312565,220.99,82.1717 +312566,219.89,83.6996 +312567,218.73,85.2543 +312568,217.52,86.8383 +312569,219.71,82.1699 +312570,218.57,83.6832 +312571,217.39,85.2237 +312572,216.14,86.7941 +312573,218.43,82.1691 +312574,217.26,83.6672 +312575,216.04,85.1927 +312576,214.76,86.7486 +312577,217.14,82.1696 +312578,215.94,83.6516 +312579,214.69,85.1614 +312580,213.37,86.7019 +312581,215.86,82.1712 +312582,214.62,83.6364 +312583,213.34,85.1296 +312584,211.99,86.6541 +312585,214.57,82.174 +312586,213.31,83.6215 +312587,211.99,85.0975 +312588,210.61,86.605 +312589,213.29,82.1778 +312590,211.99,83.607 +312591,210.64,85.0649 +312592,209.23,86.5548 +312593,212,82.1828 +312594,210.67,83.5929 +312595,209.29,85.032 +312596,207.85,86.5034 +312597,210.71,82.1889 +312598,209.36,83.5792 +312599,207.95,84.9987 +312600,206.48,86.4509 +312601,209.42,82.196 +312602,208.04,83.5658 +312603,206.6,84.9651 +312604,205.1,86.3973 +312605,208.13,82.2042 +312606,206.72,83.5527 +312607,205.25,84.931 +312608,203.72,86.3425 +312609,206.84,82.2135 +312610,205.4,83.54 +312611,203.91,84.8966 +312612,202.35,86.2867 +312613,205.55,82.2238 +312614,204.08,83.5277 +312615,202.56,84.8619 +312616,200.98,86.2297 +312617,204.26,82.235 +312618,202.76,83.5157 +312619,201.22,84.8268 +312620,199.61,86.1718 +312621,202.96,82.2473 +312622,201.44,83.504 +312623,199.87,84.7913 +312624,198.24,86.1127 +312625,201.67,82.2605 +312626,200.13,83.4927 +312627,198.53,84.7556 +312628,196.87,86.0527 +312629,200.37,82.2747 +312630,198.8,83.4817 +312631,197.18,84.7194 +312632,195.5,85.9917 +312633,199.07,82.2897 +312634,197.48,83.4709 +312635,195.84,84.683 +312636,194.13,85.9296 +312637,197.77,82.3057 +312638,196.16,83.4605 +312639,194.5,84.6463 +312640,192.77,85.8666 +312641,196.47,82.3226 +312642,194.84,83.4504 +312643,193.16,84.6092 +312644,191.4,85.8027 +312645,195.17,82.3403 +312646,193.52,83.4406 +312647,191.81,84.5719 +312648,190.04,85.7379 +312649,193.87,82.3589 +312650,192.2,83.431 +312651,190.47,84.5342 +312652,188.68,85.6722 +312653,192.56,82.3783 +312654,190.88,83.4217 +312655,189.13,84.4963 +312656,187.32,85.6056 +312657,191.26,82.3984 +312658,189.55,83.4127 +312659,187.79,84.4581 +312660,185.96,85.5381 +312661,189.95,82.4194 +312662,188.23,83.404 +312663,186.45,84.4196 +312664,184.6,85.4698 +312665,188.65,82.4411 +312666,186.91,83.3955 +312667,185.11,84.3809 +312668,183.25,85.4008 +312669,187.34,82.4635 +312670,185.58,83.3873 +312671,183.77,84.3419 +312672,181.89,85.3309 +312673,186.03,82.4865 +312674,184.26,83.3792 +312675,182.43,84.3026 +312676,180.54,85.2603 +312677,184.72,82.5103 +312678,182.93,83.3715 +312679,181.1,84.2631 +312680,179.19,85.189 +312681,183.4,82.5347 +312682,181.61,83.3639 +312683,179.76,84.2234 +312684,177.84,85.1169 +312685,182.09,82.5597 +312686,180.28,83.3565 +312687,178.42,84.1835 +312688,176.49,85.0442 +312689,180.77,82.5854 +312690,178.96,83.3494 +312691,177.08,84.1434 +312692,175.15,84.9709 +312693,179.46,82.6115 +312694,177.63,83.3424 +312695,175.75,84.103 +312696,173.8,84.8969 +312697,178.14,82.6383 +312698,176.3,83.3356 +312699,174.41,84.0625 +312700,172.46,84.8224 +312701,176.82,82.6655 +312702,174.98,83.329 +312703,173.08,84.0218 +312704,171.11,84.7472 +312705,175.5,82.6932 +312706,173.65,83.3226 +312707,171.74,83.9809 +312708,169.77,84.6716 +312709,174.17,82.7214 +312710,172.32,83.3163 +312711,170.41,83.9398 +312712,168.43,84.5954 +312713,172.85,82.7501 +312714,170.99,83.3102 +312715,169.07,83.8986 +312716,167.1,84.5187 +312717,171.53,82.7791 +312718,169.66,83.3042 +312719,167.74,83.8573 +312720,165.76,84.4416 +312721,170.2,82.8085 +312722,168.33,83.2983 +312723,166.41,83.8158 +312724,164.43,84.3641 +312725,168.87,82.8383 +312726,167,83.2926 +312727,165.08,83.7742 +312728,163.09,84.2862 +312729,167.54,82.8683 +312730,165.67,83.2869 +312731,163.75,83.7324 +312732,161.76,84.2079 +312733,166.21,82.8987 +312734,164.34,83.2814 +312735,162.42,83.6906 +312736,160.43,84.1293 +312737,164.88,82.9294 +312738,163.01,83.276 +312739,161.09,83.6486 +312740,159.1,84.0504 +312741,163.54,82.9602 +312742,161.68,83.2706 +312743,159.76,83.6066 +312744,157.78,83.9712 +312745,162.21,82.9913 +312746,160.34,83.2653 +312747,158.43,83.5645 +312748,156.45,83.8918 +312749,160.87,83.0226 +312750,159.01,83.2601 +312751,157.1,83.5223 +312752,155.13,83.8121 +312753,159.54,83.054 +312754,157.68,83.2549 +312755,155.77,83.4801 +312756,153.8,83.7323 +312757,158.2,83.0856 +312758,156.34,83.2498 +312759,154.44,83.4378 +312760,152.48,83.6523 +312761,156.85,83.1173 +312762,155.01,83.2447 +312763,153.11,83.3954 +312764,151.16,83.5722 +312765,155.51,83.149 +312766,153.68,83.2397 +312767,151.79,83.3531 +312768,149.85,83.492 +312769,154.17,83.1807 +312770,152.34,83.2346 +312771,150.46,83.3107 +312772,148.53,83.4117 +312773,152.82,83.2125 +312774,151,83.2296 +312775,149.14,83.2683 +312776,147.22,83.3314 +312777,151.48,83.2443 +312778,149.67,83.2245 +312779,147.81,83.226 +312780,145.9,83.2512 +312781,150.13,83.276 +312782,148.33,83.2195 +312783,146.49,83.1836 +312784,144.59,83.1709 +312785,148.78,83.3076 +312786,147,83.2144 +312787,145.16,83.1412 +312788,143.28,83.0907 +312789,147.43,83.3392 +312790,145.66,83.2093 +312791,143.84,83.0989 +312792,141.97,83.0106 +312793,146.08,83.3706 +312794,144.32,83.2041 +312795,142.52,83.0567 +312796,140.66,82.9306 +312797,144.73,83.4018 +312798,142.98,83.1989 +312799,141.19,83.0144 +312800,139.36,82.8508 +312801,143.37,83.4329 +312802,141.64,83.1936 +312803,139.87,82.9723 +312804,138.05,82.7712 +312805,142.01,83.4637 +312806,140.3,83.1883 +312807,138.55,82.9302 +312808,136.75,82.6917 +312809,140.66,83.4943 +312810,138.97,83.1829 +312811,137.23,82.8882 +312812,135.45,82.6125 +312813,139.3,83.5247 +312814,137.63,83.1774 +312815,135.91,82.8463 +312816,134.15,82.5336 +312817,137.94,83.5547 +312818,136.28,83.1717 +312819,134.59,82.8044 +312820,132.85,82.455 +312821,136.58,83.5844 +312822,134.94,83.166 +312823,133.27,82.7627 +312824,131.55,82.3768 +312825,135.21,83.6138 +312826,133.6,83.1602 +312827,131.95,82.7211 +312828,130.26,82.2989 +312829,133.85,83.6428 +312830,132.26,83.1542 +312831,130.63,82.6797 +312832,128.96,82.2213 +312833,132.49,83.6713 +312834,130.92,83.1481 +312835,129.31,82.6384 +312836,127.67,82.1442 +312837,131.12,83.6995 +312838,129.58,83.1419 +312839,128,82.5972 +312840,126.37,82.0676 +312841,129.75,83.7272 +312842,128.23,83.1355 +312843,126.68,82.5562 +312844,125.08,81.9914 +312845,128.38,83.7544 +312846,126.89,83.1289 +312847,125.36,82.5153 +312848,123.79,81.9158 +312849,127.01,83.7811 +312850,125.55,83.1222 +312851,124.05,82.4747 +312852,122.5,81.8406 +312853,125.64,83.8073 +312854,124.2,83.1152 +312855,122.73,82.4342 +312856,121.22,81.7661 +312857,124.27,83.8329 +312858,122.86,83.1081 +312859,121.41,82.3939 +312860,119.93,81.6921 +312861,122.9,83.8579 +312862,121.52,83.1008 +312863,120.1,82.3538 +312864,118.65,81.6187 +312865,121.52,83.8823 +312866,120.17,83.0933 +312867,118.78,82.3139 +312868,117.36,81.546 +312869,120.15,83.9061 +312870,118.83,83.0856 +312871,117.47,82.2742 +312872,116.08,81.474 +312873,118.77,83.9292 +312874,117.48,83.0777 +312875,116.16,82.2348 +312876,114.8,81.4026 +312877,117.39,83.9516 +312878,116.14,83.0695 +312879,114.84,82.1956 +312880,113.52,81.332 +312881,116.02,83.9733 +312882,114.79,83.0611 +312883,113.53,82.1567 +312884,112.24,81.2621 +312885,114.64,83.9943 +312886,113.44,83.0524 +312887,112.22,82.118 +312888,110.96,81.193 +312889,113.26,84.0146 +312890,112.1,83.0435 +312891,110.9,82.0795 +312892,109.68,81.1246 +312893,111.87,84.0341 +312894,110.75,83.0343 +312895,109.59,82.0414 +312896,108.4,81.0571 +312897,110.49,84.0527 +312898,109.4,83.0249 +312899,108.28,82.0035 +312900,107.13,80.9904 +312901,109.11,84.0706 +312902,108.05,83.0152 +312903,106.97,81.9659 +312904,105.85,80.9246 +312905,107.72,84.0876 +312906,106.71,83.0051 +312907,105.66,81.9285 +312908,104.58,80.8597 +312909,106.34,84.1038 +312910,105.36,82.9949 +312911,104.35,81.8915 +312912,103.31,80.7956 +312913,104.95,84.1191 +312914,104.01,82.9843 +312915,103.04,81.8548 +312916,102.03,80.7325 +312917,103.57,84.1335 +312918,102.66,82.9734 +312919,101.73,81.8184 +312920,100.76,80.6704 +312921,102.18,84.147 +312922,101.31,82.9622 +312923,100.42,81.7823 +312924,99.49,80.6092 +312925,100.79,84.1596 +312926,99.964,82.9507 +312927,99.107,81.7465 +312928,98.22,80.549 +312929,99.402,84.1711 +312930,98.615,82.9388 +312931,97.798,81.7111 +312932,96.951,80.4898 +312933,98.013,84.1818 +312934,97.266,82.9266 +312935,96.489,81.676 +312936,95.682,80.4316 +312937,96.623,84.1914 +312938,95.916,82.9141 +312939,95.18,81.6413 +312940,94.414,80.3745 +312941,95.232,84.2 +312942,94.566,82.9013 +312943,93.871,81.6069 +312944,93.147,80.3184 +312945,93.841,84.2077 +312946,93.216,82.8881 +312947,92.563,81.5728 +312948,91.88,80.2634 +312949,92.449,84.2142 +312950,91.866,82.8746 +312951,91.255,81.5391 +312952,90.614,80.2095 +312953,91.057,84.2198 +312954,90.516,82.8607 +312955,89.947,81.5058 +312956,89.348,80.1567 +312957,89.664,84.2242 +312958,89.166,82.8464 +312959,88.639,81.4729 +312960,88.083,80.105 +312961,88.27,84.2276 +312962,87.816,82.8318 +312963,87.331,81.4403 +312964,86.818,80.0545 +312965,86.877,84.2299 +312966,86.465,82.8168 +312967,86.024,81.4081 +312968,85.553,80.0051 +312969,85.482,84.2311 +312970,85.114,82.8015 +312971,84.717,81.3763 +312972,84.289,79.957 +312973,84.088,84.2311 +312974,83.764,82.7857 +312975,83.41,81.3448 +312976,83.026,79.91 +312977,82.693,84.23 +312978,82.413,82.7696 +312979,82.103,81.3138 +312980,81.763,79.864 +312981,81.298,84.2278 +312982,81.062,82.7531 +312983,80.796,81.2832 +312984,80.499,79.819 +312985,79.903,84.2244 +312986,79.711,82.7362 +312987,79.489,81.2529 +312988,79.237,79.776 +312989,78.507,84.2199 +312990,78.36,82.7189 +312991,78.182,81.2231 +312992,77.974,79.734 +312993,77.111,84.2142 +312994,77.009,82.7013 +312995,76.876,81.1937 +312996,76.712,79.693 +312997,75.715,84.2073 +312998,75.658,82.6832 +312999,75.569,81.1646 +313000,75.45,79.653 +313001,74.319,84.1992 +313002,74.307,82.6647 +313003,74.263,81.136 +313004,74.188,79.614 +313005,72.923,84.1899 +313006,72.956,82.6458 +313007,72.957,81.1078 +313008,72.926,79.577 +313009,71.527,84.1794 +313010,71.605,82.6265 +313011,71.65,81.08 +313012,71.664,79.541 +313013,70.13,84.1677 +313014,70.254,82.6068 +313015,70.344,81.0527 +313016,70.402,79.506 +313017,68.734,84.1548 +313018,68.903,82.5867 +313019,69.038,81.0257 +313020,69.14,79.472 +313021,67.338,84.1406 +313022,67.552,82.5662 +313023,67.732,80.9992 +313024,67.878,79.44 +313025,65.942,84.1252 +313026,66.202,82.5453 +313027,66.426,80.9731 +313028,66.616,79.409 +313029,64.546,84.1086 +313030,64.851,82.5239 +313031,65.119,80.9474 +313032,65.354,79.38 +313033,63.15,84.0908 +313034,63.5,82.5022 +313035,63.813,80.9221 +313036,64.091,79.351 +313037,61.754,84.0717 +313038,62.15,82.48 +313039,62.507,80.8973 +313040,62.829,79.324 +313041,60.359,84.0513 +313042,60.799,82.4574 +313043,61.201,80.8729 +313044,61.566,79.298 +313045,58.964,84.0297 +313046,59.449,82.4344 +313047,59.894,80.8489 +313048,60.303,79.273 +313049,57.569,84.0069 +313050,58.098,82.411 +313051,58.588,80.8254 +313052,59.04,79.25 +313053,56.174,83.9828 +313054,56.748,82.3872 +313055,57.281,80.8022 +313056,57.777,79.228 +313057,54.78,83.9575 +313058,55.398,82.3629 +313059,55.975,80.7795 +313060,56.513,79.207 +313061,53.387,83.931 +313062,54.049,82.3383 +313063,54.668,80.7572 +313064,55.249,79.188 +313065,51.993,83.9032 +313066,52.699,82.3132 +313067,53.361,80.7354 +313068,53.984,79.17 +313069,50.6,83.8741 +313070,51.35,82.2877 +313071,52.054,80.7139 +313072,52.719,79.153 +313073,49.208,83.8438 +313074,50,82.2618 +313075,50.747,80.6929 +313076,51.453,79.137 +313077,47.816,83.8123 +313078,48.651,82.2355 +313079,49.44,80.6723 +313080,50.187,79.122 +313081,46.425,83.7795 +313082,47.302,82.2087 +313083,48.133,80.6521 +313084,48.921,79.109 +313085,45.034,83.7456 +313086,45.954,82.1816 +313087,46.825,80.6324 +313088,47.654,79.097 +313089,43.645,83.7104 +313090,44.605,82.1541 +313091,45.517,80.613 +313092,46.386,79.087 +313093,42.255,83.674 +313094,43.257,82.1261 +313095,44.21,80.5941 +313096,45.118,79.077 +313097,40.867,83.6363 +313098,41.91,82.0978 +313099,42.901,80.5756 +313100,43.849,79.069 +313101,39.479,83.5975 +313102,40.562,82.0691 +313103,41.593,80.5574 +313104,42.579,79.062 +313105,38.092,83.5575 +313106,39.215,82.0399 +313107,40.285,80.5397 +313108,41.309,79.056 +313109,36.706,83.5163 +313110,37.868,82.0104 +313111,38.976,80.5224 +313112,40.037,79.051 +313113,35.32,83.474 +313114,36.521,81.9805 +313115,37.667,80.5054 +313116,38.765,79.048 +313117,33.936,83.4304 +313118,35.174,81.9502 +313119,36.358,80.4889 +313120,37.493,79.045 +313121,32.552,83.3857 +313122,33.828,81.9195 +313123,35.048,80.4727 +313124,36.219,79.044 +313125,31.169,83.3399 +313126,32.483,81.8885 +313127,33.739,80.457 +313128,34.945,79.044 +313129,29.788,83.293 +313130,31.137,81.8571 +313131,32.429,80.4416 +313132,33.669,79.045 +313133,28.407,83.2449 +313134,29.792,81.8253 +313135,31.118,80.4265 +313136,32.393,79.047 +313137,27.027,83.1957 +313138,28.447,81.7931 +313139,29.808,80.4119 +313140,31.116,79.05 +313141,25.648,83.1454 +313142,27.103,81.7606 +313143,28.497,80.3976 +313144,29.838,79.055 +313145,24.271,83.0941 +313146,25.759,81.7277 +313147,27.186,80.3837 +313148,28.559,79.06 +313149,22.894,83.0416 +313150,24.416,81.6945 +313151,25.874,80.3701 +313152,27.279,79.067 +313153,21.519,82.9882 +313154,23.072,81.6609 +313155,24.562,80.3569 +313156,25.998,79.074 +313157,20.145,82.9337 +313158,21.73,81.627 +313159,23.25,80.344 +313160,24.715,79.083 +313161,18.772,82.8781 +313162,20.387,81.5928 +313163,21.938,80.3315 +313164,23.432,79.092 +313165,17.4,82.8216 +313166,19.045,81.5583 +313167,20.625,80.3192 +313168,22.148,79.102 +313169,16.029,82.7641 +313170,17.704,81.5234 +313171,19.311,80.3074 +313172,20.862,79.114 +313173,14.66,82.7057 +313174,16.363,81.4882 +313175,17.998,80.2958 +313176,19.576,79.126 +313177,13.292,82.6463 +313178,15.022,81.4527 +313179,16.684,80.2845 +313180,18.288,79.14 +313181,11.925,82.5859 +313182,13.682,81.4169 +313183,15.37,80.2736 +313184,16.999,79.154 +313185,10.56,82.5247 +313186,12.342,81.3808 +313187,14.055,80.2629 +313188,15.708,79.169 +313189,9.1959,82.4625 +313190,11.003,81.3444 +313191,12.74,80.2526 +313192,14.417,79.185 +313193,7.8332,82.3995 +313194,9.6639,81.3077 +313195,11.424,80.2425 +313196,13.124,79.201 +313197,6.472,82.3357 +313198,8.3256,81.2708 +313199,10.108,80.2327 +313200,11.83,79.219 +313201,5.1121,82.271 +313202,6.9877,81.2336 +313203,8.7919,80.2232 +313204,10.535,79.237 +313205,3.7536,82.2056 +313206,5.6504,81.1961 +313207,7.4751,80.2139 +313208,9.2383,79.256 +313209,2.3966,82.1393 +313210,4.3135,81.1584 +313211,6.1579,80.2049 +313212,7.9404,79.276 +313213,1.0411,82.0723 +313214,2.9771,81.1205 +313215,4.8403,80.1962 +313216,6.6412,79.297 +313217,359.69,82.0046 +313218,1.6412,81.0823 +313219,3.5223,80.1877 +313220,5.3407,79.318 +313221,358.33,81.9361 +313222,0.3058,81.0439 +313223,2.2038,80.1794 +313224,4.0387,79.34 +313225,356.98,81.867 +313226,358.97,81.0052 +313227,0.88484,80.1713 +313228,2.7354,79.362 +313229,355.63,81.7972 +313230,357.64,80.9664 +313231,359.57,80.1635 +313232,1.4307,79.386 +313233,354.29,81.7268 +313234,356.3,80.9273 +313235,358.25,80.1558 +313236,0.12466,79.409 +313237,352.94,81.6557 +313238,354.97,80.8881 +313239,356.93,80.1484 +313240,358.82,79.434 +313241,351.59,81.5841 +313242,353.64,80.8486 +313243,355.6,80.1411 +313244,357.51,79.459 +313245,350.25,81.5119 +313246,352.3,80.809 +313247,354.28,80.1341 +313248,356.2,79.484 +313249,348.91,81.4392 +313250,350.97,80.7693 +313251,352.96,80.1272 +313252,354.89,79.51 +313253,347.57,81.366 +313254,349.64,80.7293 +313255,351.64,80.1204 +313256,353.57,79.536 +313257,346.23,81.2923 +313258,348.31,80.6892 +313259,350.32,80.1138 +313260,352.26,79.563 +313261,344.89,81.2181 +313262,346.98,80.649 +313263,348.99,80.1074 +313264,350.94,79.59 +313265,343.56,81.1436 +313266,345.65,80.6086 +313267,347.67,80.1011 +313268,349.62,79.618 +313269,342.22,81.0686 +313270,344.32,80.5682 +313271,346.35,80.095 +313272,348.31,79.646 +313273,340.89,80.9932 +313274,342.99,80.5276 +313275,345.02,80.0889 +313276,346.98,79.674 +313277,339.56,80.9175 +313278,341.67,80.4869 +313279,343.7,80.083 +313280,345.66,79.703 +313281,338.23,80.8415 +313282,340.34,80.4461 +313283,342.37,80.0771 +313284,344.34,79.732 +313285,336.91,80.7653 +313286,339.01,80.4052 +313287,341.05,80.0714 +313288,343.01,79.761 +313289,335.58,80.6887 +313290,337.69,80.3642 +313291,339.72,80.0657 +313292,341.69,79.79 +313293,334.26,80.612 +313294,336.36,80.3232 +313295,338.39,80.0601 +313296,340.36,79.82 +313297,332.93,80.535 +313298,335.03,80.2821 +313299,337.06,80.0546 +313300,339.03,79.85 +313301,331.61,80.4579 +313302,333.71,80.241 +313303,335.74,80.0491 +313304,337.7,79.88 +313305,330.29,80.3806 +313306,332.39,80.1998 +313307,334.41,80.0437 +313308,336.37,79.91 +313309,328.98,80.3032 +313310,331.06,80.1586 +313311,333.08,80.0383 +313312,335.03,79.94 +313313,327.66,80.2257 +313314,329.74,80.1174 +313315,331.75,80.033 +313316,333.7,79.97 +313317,326.35,80.1482 +313318,328.42,80.0761 +313319,330.42,80.0276 +313320,332.36,80 +313321,325.03,80.0707 +313322,327.1,80.0349 +313323,329.09,80.0223 +313324,331.02,80.03 +313325,323.72,79.993 +313326,325.77,79.994 +313327,327.76,80.0169 +313328,329.68,80.0601 +313329,322.41,79.916 +313330,324.45,79.952 +313331,326.43,80.0116 +313332,328.34,80.0902 +313333,321.1,79.838 +313334,323.13,79.911 +313335,325.1,80.0062 +313336,327,80.1201 +313337,319.8,79.761 +313338,321.81,79.87 +313339,323.76,80.0008 +313340,325.65,80.15 +313341,318.49,79.684 +313342,320.49,79.829 +313343,322.43,79.995 +313344,324.31,80.1797 +313345,317.19,79.607 +313346,319.18,79.788 +313347,321.1,79.99 +313348,322.96,80.2093 +313349,315.89,79.53 +313350,317.86,79.747 +313351,319.76,79.984 +313352,321.61,80.2386 +313353,314.59,79.453 +313354,316.54,79.706 +313355,318.43,79.979 +313356,320.26,80.2678 +313357,313.29,79.377 +313358,315.22,79.665 +313359,317.1,79.973 +313360,318.91,80.2967 +313361,311.99,79.301 +313362,313.91,79.625 +313363,315.76,79.967 +313364,317.56,80.3253 +313365,310.7,79.225 +313366,312.59,79.584 +313367,314.43,79.961 +313368,316.2,80.3536 +313369,309.4,79.149 +313370,311.27,79.544 +313371,313.09,79.955 +313372,314.85,80.3816 +313373,308.11,79.074 +313374,309.96,79.503 +313375,311.75,79.949 +313376,313.49,80.4092 +313377,306.82,78.999 +313378,308.65,79.463 +313379,310.42,79.943 +313380,312.13,80.4365 +313381,305.53,78.925 +313382,307.33,79.423 +313383,309.08,79.937 +313384,310.77,80.4634 +313385,304.24,78.851 +313386,306.02,79.383 +313387,307.74,79.93 +313388,309.41,80.4898 +313389,302.95,78.778 +313390,304.7,79.343 +313391,306.4,79.923 +313392,308.05,80.5157 +313393,301.66,78.705 +313394,303.39,79.304 +313395,305.06,79.917 +313396,306.69,80.5412 +313397,300.38,78.632 +313398,302.08,79.264 +313399,303.73,79.91 +313400,305.32,80.5662 +313401,299.1,78.56 +313402,300.77,79.225 +313403,302.39,79.903 +313404,303.96,80.5906 +313405,297.81,78.489 +313406,299.46,79.186 +313407,301.05,79.895 +313408,302.59,80.6145 +313409,296.53,78.418 +313410,298.15,79.147 +313411,299.71,79.888 +313412,301.22,80.6378 +313413,295.25,78.348 +313414,296.84,79.109 +313415,298.37,79.88 +313416,299.85,80.6605 +313417,293.98,78.279 +313418,295.53,79.07 +313419,297.03,79.872 +313420,298.48,80.6826 +313421,292.7,78.21 +313422,294.22,79.032 +313423,295.68,79.864 +313424,297.11,80.704 +313425,291.42,78.142 +313426,292.91,78.994 +313427,294.34,79.856 +313428,295.73,80.7247 +313429,290.15,78.075 +313430,291.6,78.956 +313431,293,79.847 +313432,294.36,80.7448 +313433,288.88,78.008 +313434,290.29,78.919 +313435,291.66,79.838 +313436,292.99,80.7641 +313437,287.6,77.942 +313438,288.98,78.882 +313439,290.32,79.829 +313440,291.61,80.7827 +313441,286.33,77.877 +313442,287.67,78.845 +313443,288.97,79.82 +313444,290.23,80.8005 +313445,285.06,77.813 +313446,286.37,78.808 +313447,287.63,79.81 +313448,288.85,80.8176 +313449,283.79,77.75 +313450,285.06,78.772 +313451,286.29,79.8 +313452,287.47,80.8338 +313453,282.52,77.688 +313454,283.75,78.736 +313455,284.94,79.79 +313456,286.09,80.8493 +313457,281.26,77.626 +313458,282.45,78.7 +313459,283.6,79.78 +313460,284.71,80.8639 +313461,279.99,77.565 +313462,281.14,78.664 +313463,282.26,79.769 +313464,283.33,80.8776 +313465,278.72,77.506 +313466,279.84,78.629 +313467,280.91,79.758 +313468,281.95,80.8904 +313469,277.46,77.447 +313470,278.53,78.594 +313471,279.57,79.747 +313472,280.56,80.9024 +313473,276.19,77.389 +313474,277.23,78.56 +313475,278.22,79.735 +313476,279.18,80.9134 +313477,274.93,77.332 +313478,275.92,78.526 +313479,276.88,79.724 +313480,277.79,80.9235 +313481,273.67,77.276 +313482,274.62,78.492 +313483,275.53,79.711 +313484,276.41,80.9327 +313485,272.41,77.221 +313486,273.31,78.458 +313487,274.18,79.699 +313488,275.02,80.9409 +313489,271.15,77.168 +313490,272.01,78.425 +313491,272.84,79.686 +313492,273.63,80.9481 +313493,269.89,77.115 +313494,270.71,78.392 +313495,271.49,79.673 +313496,272.24,80.9543 +313497,268.63,77.063 +313498,269.4,78.36 +313499,270.15,79.659 +313500,270.85,80.9595 +313501,267.37,77.013 +313502,268.1,78.328 +313503,268.8,79.645 +313504,269.46,80.9637 +313505,266.11,76.963 +313506,266.8,78.296 +313507,267.45,79.631 +313508,268.07,80.9669 +313509,264.85,76.915 +313510,265.49,78.265 +313511,266.1,79.617 +313512,266.68,80.969 +313513,263.59,76.868 +313514,264.19,78.234 +313515,264.76,79.602 +313516,265.29,80.97 +313517,262.34,76.821 +313518,262.89,78.203 +313519,263.41,79.586 +313520,263.9,80.9699 +313521,261.08,76.776 +313522,261.59,78.173 +313523,262.06,79.571 +313524,262.51,80.9688 +313525,259.82,76.733 +313526,260.29,78.143 +313527,260.72,79.555 +313528,261.11,80.9666 +313529,258.57,76.69 +313530,258.98,78.113 +313531,259.37,79.538 +313532,259.72,80.9632 +313533,257.31,76.649 +313534,257.68,78.084 +313535,258.02,79.521 +313536,258.33,80.9587 +313537,256.06,76.608 +313538,256.38,78.056 +313539,256.67,79.504 +313540,256.93,80.9531 +313541,254.8,76.569 +313542,255.08,78.027 +313543,255.33,79.487 +313544,255.54,80.9464 +313545,253.55,76.531 +313546,253.78,77.999 +313547,253.98,79.469 +313548,254.14,80.9385 +313549,252.29,76.495 +313550,252.48,77.972 +313551,252.63,79.451 +313552,252.75,80.9295 +313553,251.04,76.459 +313554,251.18,77.945 +313555,251.28,79.432 +313556,251.35,80.9193 +313557,249.79,76.425 +313558,249.88,77.918 +313559,249.93,79.413 +313560,249.96,80.9079 +313561,248.53,76.392 +313562,248.57,77.892 +313563,248.59,79.393 +313564,248.56,80.8954 +313565,247.28,76.36 +313566,247.27,77.866 +313567,247.24,79.374 +313568,247.17,80.8817 +313569,246.02,76.33 +313570,245.97,77.841 +313571,245.89,79.353 +313572,245.77,80.8668 +313573,244.77,76.301 +313574,244.67,77.816 +313575,244.54,79.333 +313576,244.38,80.8507 +313577,243.51,76.273 +313578,243.37,77.791 +313579,243.19,79.312 +313580,242.98,80.8334 +313581,242.26,76.246 +313582,242.07,77.767 +313583,241.85,79.29 +313584,241.59,80.815 +313585,241.01,76.22 +313586,240.77,77.743 +313587,240.5,79.268 +313588,240.19,80.7953 +313589,239.75,76.196 +313590,239.47,77.72 +313591,239.15,79.246 +313592,238.8,80.7745 +313593,238.5,76.173 +313594,238.17,77.697 +313595,237.8,79.223 +313596,237.4,80.7524 +313597,237.24,76.152 +313598,236.87,77.674 +313599,236.46,79.2 +313600,236.01,80.7291 +313601,235.99,76.131 +313602,235.56,77.652 +313603,235.11,79.177 +313604,234.62,80.7047 +313605,234.73,76.112 +313606,234.26,77.63 +313607,233.76,79.153 +313608,233.22,80.679 +313609,233.47,76.094 +313610,232.96,77.609 +313611,232.41,79.129 +313612,231.83,80.6522 +313613,232.22,76.077 +313614,231.66,77.588 +313615,231.07,79.104 +313616,230.43,80.6241 +313617,230.96,76.061 +313618,230.36,77.568 +313619,229.72,79.079 +313620,229.04,80.5949 +313621,229.7,76.047 +313622,229.06,77.548 +313623,228.37,79.054 +313624,227.65,80.5645 +313625,228.45,76.034 +313626,227.76,77.528 +313627,227.03,79.028 +313628,226.26,80.5329 +313629,227.19,76.022 +313630,226.45,77.509 +313631,225.68,79.002 +313632,224.87,80.5001 +313633,225.93,76.012 +313634,225.15,77.49 +313635,224.33,78.975 +313636,223.47,80.4661 +313637,224.67,76.002 +313638,223.85,77.472 +313639,222.99,78.948 +313640,222.08,80.431 +313641,223.41,75.994 +313642,222.55,77.454 +313643,221.64,78.921 +313644,220.69,80.3947 +313645,222.15,75.987 +313646,221.24,77.436 +313647,220.3,78.893 +313648,219.31,80.3573 +313649,220.89,75.981 +313650,219.94,77.419 +313651,218.95,78.865 +313652,217.92,80.3187 +313653,219.63,75.976 +313654,218.64,77.402 +313655,217.61,78.836 +313656,216.53,80.279 +313657,218.36,75.973 +313658,217.33,77.386 +313659,216.26,78.808 +313660,215.14,80.2381 +313661,217.1,75.97 +313662,216.03,77.37 +313663,214.92,78.778 +313664,213.76,80.1961 +313665,215.84,75.969 +313666,214.73,77.354 +313667,213.57,78.749 +313668,212.37,80.153 +313669,214.57,75.969 +313670,213.42,77.339 +313671,212.23,78.719 +313672,210.99,80.1088 +313673,213.3,75.97 +313674,212.12,77.324 +313675,210.89,78.688 +313676,209.6,80.0635 +313677,212.04,75.972 +313678,210.81,77.309 +313679,209.54,78.658 +313680,208.22,80.0171 +313681,210.77,75.975 +313682,209.51,77.295 +313683,208.2,78.627 +313684,206.84,79.97 +313685,209.5,75.979 +313686,208.2,77.281 +313687,206.86,78.595 +313688,205.46,79.921 +313689,208.23,75.984 +313690,206.9,77.268 +313691,205.52,78.563 +313692,204.08,79.872 +313693,206.96,75.99 +313694,205.59,77.255 +313695,204.18,78.531 +313696,202.7,79.821 +313697,205.69,75.998 +313698,204.29,77.242 +313699,202.83,78.499 +313700,201.32,79.77 +313701,204.42,76.006 +313702,202.98,77.229 +313703,201.49,78.466 +313704,199.95,79.717 +313705,203.14,76.015 +313706,201.67,77.217 +313707,200.15,78.433 +313708,198.57,79.663 +313709,201.87,76.025 +313710,200.37,77.205 +313711,198.81,78.4 +313712,197.2,79.609 +313713,200.59,76.037 +313714,199.06,77.194 +313715,197.47,78.366 +313716,195.82,79.553 +313717,199.31,76.049 +313718,197.75,77.183 +313719,196.13,78.332 +313720,194.45,79.497 +313721,198.03,76.062 +313722,196.44,77.172 +313723,194.79,78.298 +313724,193.08,79.44 +313725,196.75,76.076 +313726,195.13,77.161 +313727,193.46,78.263 +313728,191.71,79.382 +313729,195.47,76.09 +313730,193.83,77.151 +313731,192.12,78.228 +313732,190.34,79.322 +313733,194.19,76.106 +313734,192.52,77.141 +313735,190.78,78.193 +313736,188.98,79.262 +313737,192.91,76.122 +313738,191.21,77.132 +313739,189.44,78.158 +313740,187.61,79.202 +313741,191.62,76.14 +313742,189.9,77.122 +313743,188.11,78.122 +313744,186.25,79.14 +313745,190.34,76.157 +313746,188.58,77.113 +313747,186.77,78.086 +313748,184.88,79.078 +313749,189.05,76.176 +313750,187.27,77.104 +313751,185.43,78.05 +313752,183.52,79.015 +313753,187.76,76.196 +313754,185.96,77.096 +313755,184.1,78.013 +313756,182.16,78.951 +313757,186.47,76.216 +313758,184.65,77.087 +313759,182.76,77.977 +313760,180.8,78.886 +313761,185.18,76.237 +313762,183.34,77.079 +313763,181.43,77.94 +313764,179.45,78.821 +313765,183.89,76.258 +313766,182.02,77.071 +313767,180.1,77.903 +313768,178.09,78.754 +313769,182.59,76.28 +313770,180.71,77.064 +313771,178.76,77.865 +313772,176.74,78.688 +313773,181.3,76.303 +313774,179.4,77.056 +313775,177.43,77.828 +313776,175.39,78.62 +313777,180,76.327 +313778,178.08,77.049 +313779,176.1,77.79 +313780,174.04,78.552 +313781,178.7,76.351 +313782,176.77,77.042 +313783,174.77,77.752 +313784,172.69,78.484 +313785,177.4,76.375 +313786,175.45,77.035 +313787,173.44,77.714 +313788,171.34,78.415 +313789,176.1,76.4 +313790,174.14,77.028 +313791,172.11,77.676 +313792,169.99,78.345 +313793,174.8,76.426 +313794,172.82,77.022 +313795,170.78,77.637 +313796,168.65,78.275 +313797,173.49,76.452 +313798,171.51,77.015 +313799,169.45,77.599 +313800,167.31,78.204 +313801,172.19,76.478 +313802,170.19,77.009 +313803,168.12,77.56 +313804,165.96,78.133 +313805,170.88,76.505 +313806,168.87,77.003 +313807,166.79,77.521 +313808,164.63,78.061 +313809,169.57,76.532 +313810,167.55,76.997 +313811,165.46,77.482 +313812,163.29,77.989 +313813,168.26,76.559 +313814,166.23,76.991 +313815,164.13,77.443 +313816,161.95,77.917 +313817,166.95,76.587 +313818,164.91,76.986 +313819,162.81,77.404 +313820,160.62,77.844 +313821,165.63,76.615 +313822,163.59,76.98 +313823,161.48,77.364 +313824,159.28,77.771 +313825,164.32,76.644 +313826,162.27,76.975 +313827,160.16,77.325 +313828,157.95,77.697 +313829,163,76.673 +313830,160.95,76.969 +313831,158.83,77.285 +313832,156.62,77.623 +313833,161.68,76.701 +313834,159.63,76.964 +313835,157.51,77.246 +313836,155.3,77.549 +313837,160.36,76.731 +313838,158.31,76.959 +313839,156.18,77.206 +313840,153.97,77.475 +313841,159.04,76.76 +313842,156.99,76.954 +313843,154.86,77.166 +313844,152.65,77.401 +313845,157.72,76.789 +313846,155.67,76.948 +313847,153.54,77.127 +313848,151.32,77.326 +313849,156.4,76.819 +313850,154.34,76.943 +313851,152.21,77.087 +313852,150,77.251 +313853,155.07,76.848 +313854,153.02,76.938 +313855,150.89,77.047 +313856,148.68,77.176 +313857,153.74,76.878 +313858,151.69,76.933 +313859,149.57,77.007 +313860,147.36,77.102 +313861,152.41,76.908 +313862,150.37,76.928 +313863,148.25,76.967 +313864,146.05,77.027 +313865,151.08,76.937 +313866,149.04,76.923 +313867,146.93,76.927 +313868,144.73,76.952 +313869,149.75,76.967 +313870,147.72,76.918 +313871,145.61,76.887 +313872,143.42,76.876 +313873,148.42,76.997 +313874,146.39,76.914 +313875,144.29,76.848 +313876,142.11,76.801 +313877,147.08,77.026 +313878,145.07,76.909 +313879,142.98,76.808 +313880,140.8,76.726 +313881,145.75,77.055 +313882,143.74,76.904 +313883,141.66,76.768 +313884,139.49,76.652 +313885,144.41,77.085 +313886,142.41,76.898 +313887,140.34,76.728 +313888,138.19,76.577 +313889,143.07,77.114 +313890,141.08,76.893 +313891,139.02,76.689 +313892,136.88,76.502 +313893,141.73,77.143 +313894,139.75,76.888 +313895,137.71,76.649 +313896,135.58,76.428 +313897,140.38,77.171 +313898,138.42,76.883 +313899,136.39,76.609 +313900,134.28,76.354 +313901,139.04,77.2 +313902,137.09,76.878 +313903,135.08,76.57 +313904,132.98,76.28 +313905,137.69,77.228 +313906,135.76,76.872 +313907,133.76,76.531 +313908,131.68,76.206 +313909,136.35,77.256 +313910,134.43,76.867 +313911,132.45,76.491 +313912,130.39,76.132 +313913,135,77.284 +313914,133.1,76.861 +313915,131.14,76.452 +313916,129.09,76.059 +313917,133.65,77.311 +313918,131.77,76.856 +313919,129.82,76.413 +313920,127.8,75.986 +313921,132.29,77.338 +313922,130.44,76.85 +313923,128.51,76.374 +313924,126.51,75.914 +313925,130.94,77.364 +313926,129.11,76.844 +313927,127.2,76.336 +313928,125.22,75.842 +313929,129.59,77.39 +313930,127.77,76.838 +313931,125.89,76.297 +313932,123.93,75.77 +313933,128.23,77.416 +313934,126.44,76.832 +313935,124.58,76.258 +313936,122.65,75.699 +313937,126.87,77.441 +313938,125.1,76.825 +313939,123.27,76.22 +313940,121.36,75.628 +313941,125.51,77.465 +313942,123.77,76.819 +313943,121.96,76.182 +313944,120.08,75.558 +313945,124.15,77.489 +313946,122.43,76.812 +313947,120.65,76.144 +313948,118.79,75.488 +313949,122.79,77.513 +313950,121.1,76.805 +313951,119.34,76.106 +313952,117.51,75.419 +313953,121.43,77.536 +313954,119.76,76.798 +313955,118.03,76.069 +313956,116.23,75.35 +313957,120.07,77.558 +313958,118.43,76.791 +313959,116.73,76.031 +313960,114.96,75.282 +313961,118.7,77.58 +313962,117.09,76.783 +313963,115.42,75.994 +313964,113.68,75.215 +313965,117.33,77.601 +313966,115.75,76.776 +313967,114.11,75.957 +313968,112.4,75.148 +313969,115.97,77.621 +313970,114.42,76.768 +313971,112.81,75.921 +313972,111.13,75.082 +313973,114.6,77.641 +313974,113.08,76.76 +313975,111.5,75.884 +313976,109.86,75.017 +313977,113.23,77.66 +313978,111.74,76.751 +313979,110.19,75.848 +313980,108.59,74.953 +313981,111.86,77.678 +313982,110.4,76.743 +313983,108.89,75.812 +313984,107.32,74.889 +313985,110.48,77.696 +313986,109.06,76.734 +313987,107.58,75.776 +313988,106.05,74.826 +313989,109.11,77.713 +313990,107.72,76.725 +313991,106.28,75.741 +313992,104.78,74.763 +313993,107.74,77.729 +313994,106.38,76.715 +313995,104.98,75.706 +313996,103.51,74.702 +313997,106.36,77.744 +313998,105.04,76.706 +313999,103.67,75.671 +314000,102.25,74.641 +314001,104.98,77.758 +314002,103.7,76.696 +314003,102.37,75.636 +314004,100.98,74.582 +314005,103.6,77.772 +314006,102.36,76.686 +314007,101.07,75.602 +314008,99.72,74.523 +314009,102.23,77.784 +314010,101.02,76.675 +314011,99.765,75.568 +314012,98.457,74.465 +314013,100.85,77.796 +314014,99.679,76.664 +314015,98.463,75.534 +314016,97.196,74.408 +314017,99.465,77.807 +314018,98.337,76.653 +314019,97.162,75.501 +314020,95.936,74.352 +314021,98.083,77.817 +314022,96.995,76.642 +314023,95.861,75.468 +314024,94.676,74.296 +314025,96.7,77.826 +314026,95.653,76.63 +314027,94.56,75.435 +314028,93.418,74.242 +314029,95.317,77.834 +314030,94.311,76.618 +314031,93.259,75.403 +314032,92.16,74.189 +314033,93.932,77.841 +314034,92.968,76.606 +314035,91.959,75.371 +314036,90.903,74.137 +314037,92.547,77.847 +314038,91.625,76.593 +314039,90.659,75.339 +314040,89.647,74.086 +314041,91.161,77.852 +314042,90.282,76.58 +314043,89.359,75.308 +314044,88.392,74.036 +314045,89.774,77.856 +314046,88.938,76.567 +314047,88.06,75.277 +314048,87.137,73.986 +314049,88.387,77.859 +314050,87.594,76.554 +314051,86.76,75.246 +314052,85.884,73.938 +314053,86.999,77.861 +314054,86.25,76.54 +314055,85.461,75.216 +314056,84.63,73.892 +314057,85.61,77.862 +314058,84.906,76.525 +314059,84.163,75.186 +314060,83.378,73.846 +314061,84.221,77.862 +314062,83.562,76.511 +314063,82.864,75.156 +314064,82.126,73.801 +314065,82.831,77.861 +314066,82.217,76.495 +314067,81.566,75.127 +314068,80.875,73.758 +314069,81.44,77.859 +314070,80.873,76.48 +314071,80.268,75.098 +314072,79.624,73.715 +314073,80.049,77.855 +314074,79.528,76.464 +314075,78.97,75.07 +314076,78.374,73.674 +314077,78.658,77.851 +314078,78.183,76.448 +314079,77.672,75.042 +314080,77.124,73.634 +314081,77.266,77.845 +314082,76.838,76.432 +314083,76.374,75.014 +314084,75.874,73.595 +314085,75.873,77.839 +314086,75.493,76.415 +314087,75.077,74.987 +314088,74.625,73.557 +314089,74.481,77.831 +314090,74.147,76.397 +314091,73.78,74.96 +314092,73.376,73.52 +314093,73.087,77.822 +314094,72.802,76.38 +314095,72.482,74.934 +314096,72.128,73.485 +314097,71.694,77.812 +314098,71.457,76.362 +314099,71.185,74.907 +314100,70.88,73.451 +314101,70.3,77.801 +314102,70.111,76.343 +314103,69.888,74.882 +314104,69.632,73.418 +314105,68.906,77.789 +314106,68.765,76.325 +314107,68.591,74.856 +314108,68.384,73.386 +314109,67.512,77.775 +314110,67.42,76.305 +314111,67.295,74.832 +314112,67.136,73.355 +314113,66.118,77.76 +314114,66.074,76.286 +314115,65.998,74.807 +314116,65.889,73.326 +314117,64.723,77.745 +314118,64.729,76.266 +314119,64.701,74.783 +314120,64.641,73.298 +314121,63.329,77.728 +314122,63.383,76.245 +314123,63.404,74.759 +314124,63.394,73.271 +314125,61.934,77.709 +314126,62.037,76.225 +314127,62.108,74.736 +314128,62.146,73.245 +314129,60.539,77.69 +314130,60.691,76.204 +314131,60.811,74.713 +314132,60.899,73.221 +314133,59.145,77.67 +314134,59.346,76.182 +314135,59.515,74.691 +314136,59.651,73.197 +314137,57.75,77.648 +314138,58,76.16 +314139,58.218,74.669 +314140,58.403,73.175 +314141,56.356,77.625 +314142,56.655,76.138 +314143,56.921,74.647 +314144,57.156,73.155 +314145,54.961,77.601 +314146,55.309,76.115 +314147,55.624,74.626 +314148,55.907,73.135 +314149,53.567,77.576 +314150,53.964,76.092 +314151,54.328,74.605 +314152,54.659,73.117 +314153,52.173,77.549 +314154,52.619,76.068 +314155,53.031,74.585 +314156,53.411,73.1 +314157,50.779,77.522 +314158,51.273,76.045 +314159,51.734,74.565 +314160,52.162,73.084 +314161,49.386,77.493 +314162,49.928,76.02 +314163,50.437,74.545 +314164,50.913,73.069 +314165,47.992,77.463 +314166,48.583,75.996 +314167,49.14,74.526 +314168,49.663,73.056 +314169,46.599,77.432 +314170,47.239,75.971 +314171,47.842,74.507 +314172,48.413,73.043 +314173,45.207,77.4 +314174,45.894,75.945 +314175,46.545,74.489 +314176,47.163,73.032 +314177,43.815,77.367 +314178,44.549,75.919 +314179,45.248,74.471 +314180,45.912,73.022 +314181,42.423,77.332 +314182,43.205,75.893 +314183,43.95,74.453 +314184,44.66,73.014 +314185,41.032,77.297 +314186,41.861,75.867 +314187,42.652,74.436 +314188,43.408,73.006 +314189,39.642,77.26 +314190,40.517,75.84 +314191,41.354,74.419 +314192,42.156,73 +314193,38.252,77.222 +314194,39.173,75.812 +314195,40.056,74.403 +314196,40.902,72.995 +314197,36.862,77.183 +314198,37.83,75.785 +314199,38.758,74.387 +314200,39.648,72.991 +314201,35.473,77.143 +314202,36.487,75.756 +314203,37.459,74.371 +314204,38.394,72.988 +314205,34.085,77.102 +314206,35.144,75.728 +314207,36.16,74.356 +314208,37.138,72.986 +314209,32.698,77.059 +314210,33.801,75.699 +314211,34.861,74.341 +314212,35.882,72.985 +314213,31.311,77.016 +314214,32.459,75.67 +314215,33.562,74.326 +314216,34.625,72.986 +314217,29.925,76.972 +314218,31.117,75.64 +314219,32.262,74.312 +314220,33.368,72.988 +314221,28.54,76.926 +314222,29.775,75.611 +314223,30.963,74.298 +314224,32.109,72.99 +314225,27.156,76.88 +314226,28.433,75.58 +314227,29.662,74.285 +314228,30.85,72.994 +314229,25.773,76.832 +314230,27.092,75.55 +314231,28.362,74.272 +314232,29.589,72.999 +314233,24.39,76.783 +314234,25.751,75.519 +314235,27.061,74.259 +314236,28.328,73.004 +314237,23.009,76.734 +314238,24.41,75.488 +314239,25.761,74.247 +314240,27.066,73.011 +314241,21.629,76.683 +314242,23.07,75.456 +314243,24.459,74.235 +314244,25.802,73.019 +314245,20.249,76.632 +314246,21.73,75.424 +314247,23.158,74.223 +314248,24.538,73.028 +314249,18.871,76.579 +314250,20.391,75.392 +314251,21.856,74.211 +314252,23.273,73.038 +314253,17.493,76.526 +314254,19.052,75.36 +314255,20.553,74.2 +314256,22.006,73.048 +314257,16.117,76.471 +314258,17.713,75.327 +314259,19.251,74.19 +314260,20.739,73.06 +314261,14.742,76.416 +314262,16.375,75.294 +314263,17.948,74.179 +314264,19.47,73.072 +314265,13.368,76.36 +314266,15.037,75.26 +314267,16.644,74.169 +314268,18.2,73.086 +314269,11.996,76.303 +314270,13.699,75.227 +314271,15.341,74.159 +314272,16.929,73.1 +314273,10.624,76.245 +314274,12.362,75.193 +314275,14.037,74.149 +314276,15.656,73.115 +314277,9.2543,76.186 +314278,11.025,75.158 +314279,12.732,74.14 +314280,14.383,73.131 +314281,7.8854,76.127 +314282,9.6893,75.124 +314283,11.427,74.131 +314284,13.108,73.148 +314285,6.5179,76.066 +314286,8.3535,75.089 +314287,10.122,74.122 +314288,11.832,73.166 +314289,5.1517,76.005 +314290,7.0183,75.054 +314291,8.8159,74.114 +314292,10.554,73.184 +314293,3.7869,75.943 +314294,5.6834,75.019 +314295,7.5097,74.106 +314296,9.2756,73.203 +314297,2.4235,75.881 +314298,4.3491,74.983 +314299,6.203,74.098 +314300,7.9955,73.223 +314301,1.0615,75.817 +314302,3.0152,74.947 +314303,4.896,74.09 +314304,6.714,73.244 +314305,359.7,75.753 +314306,1.6819,74.911 +314307,3.5884,74.082 +314308,5.4311,73.265 +314309,358.34,75.688 +314310,0.34902,74.875 +314311,2.2804,74.075 +314312,4.1468,73.287 +314313,356.98,75.623 +314314,359.02,74.839 +314315,0.97192,74.068 +314316,2.8611,73.309 +314317,355.63,75.557 +314318,357.68,74.802 +314319,359.66,74.061 +314320,1.574,73.332 +314321,354.27,75.49 +314322,356.35,74.765 +314323,358.35,74.054 +314324,0.28537,73.356 +314325,352.92,75.423 +314326,355.02,74.728 +314327,357.04,74.048 +314328,359,73.38 +314329,351.57,75.355 +314330,353.69,74.691 +314331,355.73,74.041 +314332,357.7,73.405 +314333,350.22,75.287 +314334,352.36,74.654 +314335,354.42,74.035 +314336,356.41,73.43 +314337,348.87,75.218 +314338,351.03,74.616 +314339,353.11,74.029 +314340,355.12,73.456 +314341,347.52,75.149 +314342,349.7,74.579 +314343,351.8,74.023 +314344,353.82,73.482 +314345,346.18,75.079 +314346,348.38,74.541 +314347,350.49,74.018 +314348,352.52,73.509 +314349,344.84,75.009 +314350,347.05,74.503 +314351,349.17,74.012 +314352,351.22,73.536 +314353,343.5,74.938 +314354,345.72,74.465 +314355,347.86,74.007 +314356,349.92,73.563 +314357,342.16,74.867 +314358,344.4,74.427 +314359,346.55,74.002 +314360,348.62,73.591 +314361,340.82,74.796 +314362,343.07,74.388 +314363,345.23,73.996 +314364,347.32,73.619 +314365,339.48,74.724 +314366,341.74,74.35 +314367,343.92,73.991 +314368,346.01,73.647 +314369,338.15,74.653 +314370,340.42,74.311 +314371,342.6,73.986 +314372,344.7,73.676 +314373,336.81,74.58 +314374,339.1,74.273 +314375,341.29,73.981 +314376,343.4,73.705 +314377,335.48,74.508 +314378,337.77,74.234 +314379,339.97,73.977 +314380,342.08,73.734 +314381,334.15,74.435 +314382,336.45,74.195 +314383,338.65,73.972 +314384,340.77,73.763 +314385,332.82,74.362 +314386,335.13,74.157 +314387,337.33,73.967 +314388,339.46,73.792 +314389,331.5,74.289 +314390,333.81,74.118 +314391,336.02,73.963 +314392,338.14,73.822 +314393,330.17,74.216 +314394,332.48,74.079 +314395,334.7,73.958 +314396,336.83,73.851 +314397,328.85,74.143 +314398,331.16,74.04 +314399,333.38,73.953 +314400,335.51,73.881 +314401,327.53,74.069 +314402,329.84,74.001 +314403,332.06,73.949 +314404,334.19,73.911 +314405,326.21,73.996 +314406,328.52,73.962 +314407,330.74,73.944 +314408,332.87,73.941 +314409,324.9,73.922 +314410,327.2,73.923 +314411,329.42,73.94 +314412,331.54,73.97 +314413,323.58,73.849 +314414,325.89,73.884 +314415,328.1,73.935 +314416,330.22,74 +314417,322.27,73.775 +314418,324.57,73.845 +314419,326.77,73.931 +314420,328.89,74.03 +314421,320.95,73.702 +314422,323.25,73.806 +314423,325.45,73.926 +314424,327.57,74.059 +314425,319.64,73.629 +314426,321.94,73.768 +314427,324.13,73.922 +314428,326.24,74.089 +314429,318.34,73.555 +314430,320.62,73.729 +314431,322.8,73.917 +314432,324.9,74.118 +314433,317.03,73.482 +314434,319.3,73.69 +314435,321.48,73.912 +314436,323.57,74.147 +314437,315.72,73.409 +314438,317.99,73.651 +314439,320.16,73.908 +314440,322.24,74.176 +314441,314.42,73.337 +314442,316.68,73.613 +314443,318.83,73.903 +314444,320.9,74.205 +314445,313.12,73.264 +314446,315.36,73.574 +314447,317.51,73.898 +314448,319.56,74.233 +314449,311.82,73.192 +314450,314.05,73.536 +314451,316.18,73.893 +314452,318.22,74.261 +314453,310.52,73.12 +314454,312.74,73.497 +314455,314.85,73.888 +314456,316.88,74.289 +314457,309.23,73.048 +314458,311.42,73.459 +314459,313.53,73.883 +314460,315.54,74.317 +314461,307.93,72.977 +314462,310.11,73.421 +314463,312.2,73.877 +314464,314.2,74.344 +314465,306.64,72.906 +314466,308.8,73.383 +314467,310.87,73.872 +314468,312.85,74.37 +314469,305.35,72.835 +314470,307.49,73.345 +314471,309.54,73.866 +314472,311.51,74.397 +314473,304.06,72.765 +314474,306.18,73.307 +314475,308.21,73.861 +314476,310.16,74.423 +314477,302.77,72.696 +314478,304.87,73.27 +314479,306.88,73.855 +314480,308.81,74.448 +314481,301.49,72.626 +314482,303.56,73.232 +314483,305.55,73.849 +314484,307.46,74.473 +314485,300.2,72.558 +314486,302.26,73.195 +314487,304.22,73.843 +314488,306.1,74.498 +314489,298.92,72.489 +314490,300.95,73.158 +314491,302.89,73.836 +314492,304.75,74.521 +314493,297.64,72.422 +314494,299.64,73.121 +314495,301.56,73.83 +314496,303.39,74.545 +314497,296.36,72.354 +314498,298.34,73.084 +314499,300.23,73.823 +314500,302.04,74.568 +314501,295.08,72.288 +314502,297.03,73.048 +314503,298.89,73.816 +314504,300.68,74.59 +314505,293.8,72.222 +314506,295.72,73.012 +314507,297.56,73.809 +314508,299.32,74.611 +314509,292.53,72.157 +314510,294.42,72.976 +314511,296.23,73.801 +314512,297.96,74.632 +314513,291.25,72.092 +314514,293.11,72.94 +314515,294.89,73.794 +314516,296.59,74.653 +314517,289.98,72.028 +314518,291.81,72.904 +314519,293.56,73.786 +314520,295.23,74.672 +314521,288.71,71.965 +314522,290.51,72.869 +314523,292.22,73.778 +314524,293.87,74.691 +314525,287.44,71.903 +314526,289.2,72.834 +314527,290.89,73.77 +314528,292.5,74.709 +314529,286.17,71.841 +314530,287.9,72.799 +314531,289.55,73.761 +314532,291.13,74.726 +314533,284.9,71.78 +314534,286.6,72.764 +314535,288.22,73.753 +314536,289.76,74.743 +314537,283.64,71.72 +314538,285.3,72.73 +314539,286.88,73.743 +314540,288.39,74.759 +314541,282.38,71.661 +314542,284,72.696 +314543,285.54,73.734 +314544,287.02,74.774 +314545,281.11,71.602 +314546,282.7,72.662 +314547,284.21,73.725 +314548,285.65,74.788 +314549,279.85,71.544 +314550,281.39,72.628 +314551,282.87,73.715 +314552,284.28,74.801 +314553,278.59,71.488 +314554,280.09,72.595 +314555,281.53,73.704 +314556,282.9,74.813 +314557,277.33,71.432 +314558,278.8,72.562 +314559,280.19,73.694 +314560,281.52,74.825 +314561,276.07,71.377 +314562,277.5,72.53 +314563,278.85,73.683 +314564,280.15,74.835 +314565,274.81,71.323 +314566,276.2,72.498 +314567,277.51,73.672 +314568,278.77,74.845 +314569,273.56,71.27 +314570,274.9,72.466 +314571,276.17,73.661 +314572,277.39,74.854 +314573,272.3,71.218 +314574,273.6,72.434 +314575,274.83,73.649 +314576,276.01,74.862 +314577,271.05,71.167 +314578,272.3,72.403 +314579,273.49,73.637 +314580,274.63,74.868 +314581,269.8,71.117 +314582,271.01,72.372 +314583,272.15,73.625 +314584,273.25,74.874 +314585,268.54,71.069 +314586,269.71,72.341 +314587,270.81,73.612 +314588,271.87,74.879 +314589,267.29,71.021 +314590,268.41,72.311 +314591,269.47,73.599 +314592,270.48,74.883 +314593,266.04,70.974 +314594,267.11,72.281 +314595,268.13,73.585 +314596,269.1,74.886 +314597,264.79,70.928 +314598,265.82,72.251 +314599,266.79,73.572 +314600,267.71,74.887 +314601,263.54,70.883 +314602,264.52,72.222 +314603,265.45,73.558 +314604,266.33,74.888 +314605,262.29,70.84 +314606,263.23,72.193 +314607,264.11,73.543 +314608,264.94,74.888 +314609,261.05,70.797 +314610,261.93,72.165 +314611,262.77,73.528 +314612,263.55,74.886 +314613,259.8,70.756 +314614,260.64,72.137 +314615,261.42,73.513 +314616,262.16,74.884 +314617,258.55,70.716 +314618,259.34,72.109 +314619,260.08,73.498 +314620,260.77,74.88 +314621,257.31,70.677 +314622,258.05,72.082 +314623,258.74,73.482 +314624,259.39,74.875 +314625,256.06,70.639 +314626,256.75,72.055 +314627,257.39,73.465 +314628,258,74.869 +314629,254.82,70.602 +314630,255.46,72.028 +314631,256.05,73.449 +314632,256.61,74.863 +314633,253.57,70.567 +314634,254.16,72.002 +314635,254.71,73.432 +314636,255.21,74.854 +314637,252.33,70.532 +314638,252.87,71.976 +314639,253.37,73.414 +314640,253.82,74.845 +314641,251.09,70.499 +314642,251.57,71.951 +314643,252.02,73.396 +314644,252.43,74.835 +314645,249.84,70.467 +314646,250.28,71.926 +314647,250.68,73.378 +314648,251.04,74.823 +314649,248.6,70.436 +314650,248.99,71.901 +314651,249.33,73.36 +314652,249.65,74.811 +314653,247.36,70.407 +314654,247.69,71.877 +314655,247.99,73.341 +314656,248.25,74.797 +314657,246.12,70.378 +314658,246.4,71.853 +314659,246.65,73.321 +314660,246.86,74.782 +314661,244.87,70.351 +314662,245.11,71.83 +314663,245.3,73.302 +314664,245.47,74.766 +314665,243.63,70.325 +314666,243.81,71.806 +314667,243.96,73.281 +314668,244.07,74.748 +314669,242.39,70.3 +314670,242.52,71.784 +314671,242.62,73.261 +314672,242.68,74.73 +314673,241.15,70.277 +314674,241.23,71.762 +314675,241.27,73.24 +314676,241.28,74.71 +314677,239.91,70.255 +314678,239.93,71.74 +314679,239.93,73.219 +314680,239.89,74.689 +314681,238.66,70.233 +314682,238.64,71.718 +314683,238.58,73.197 +314684,238.49,74.667 +314685,237.42,70.214 +314686,237.35,71.697 +314687,237.24,73.175 +314688,237.1,74.644 +314689,236.18,70.195 +314690,236.05,71.677 +314691,235.9,73.152 +314692,235.71,74.62 +314693,234.94,70.177 +314694,234.76,71.656 +314695,234.55,73.129 +314696,234.31,74.594 +314697,233.7,70.161 +314698,233.47,71.637 +314699,233.21,73.106 +314700,232.92,74.568 +314701,232.45,70.146 +314702,232.17,71.617 +314703,231.86,73.082 +314704,231.52,74.54 +314705,231.21,70.132 +314706,230.88,71.598 +314707,230.52,73.058 +314708,230.13,74.511 +314709,229.97,70.12 +314710,229.59,71.58 +314711,229.18,73.034 +314712,228.73,74.481 +314713,228.73,70.108 +314714,228.29,71.561 +314715,227.83,73.009 +314716,227.34,74.449 +314717,227.48,70.098 +314718,227,71.543 +314719,226.49,72.983 +314720,225.95,74.417 +314721,226.24,70.089 +314722,225.71,71.526 +314723,225.15,72.958 +314724,224.55,74.383 +314725,224.99,70.081 +314726,224.41,71.509 +314727,223.8,72.932 +314728,223.16,74.348 +314729,223.75,70.075 +314730,223.12,71.492 +314731,222.46,72.905 +314732,221.77,74.313 +314733,222.5,70.069 +314734,221.83,71.476 +314735,221.12,72.879 +314736,220.38,74.276 +314737,221.26,70.065 +314738,220.53,71.46 +314739,219.77,72.851 +314740,218.98,74.237 +314741,220.01,70.061 +314742,219.24,71.444 +314743,218.43,72.824 +314744,217.59,74.198 +314745,218.76,70.059 +314746,217.94,71.429 +314747,217.09,72.796 +314748,216.2,74.158 +314749,217.51,70.058 +314750,216.65,71.414 +314751,215.75,72.768 +314752,214.81,74.116 +314753,216.27,70.058 +314754,215.35,71.4 +314755,214.41,72.739 +314756,213.42,74.074 +314757,215.02,70.059 +314758,214.06,71.386 +314759,213.06,72.71 +314760,212.03,74.03 +314761,213.77,70.062 +314762,212.76,71.372 +314763,211.72,72.681 +314764,210.65,73.985 +314765,212.52,70.065 +314766,211.47,71.359 +314767,210.38,72.651 +314768,209.26,73.94 +314769,211.26,70.07 +314770,210.17,71.346 +314771,209.04,72.621 +314772,207.87,73.893 +314773,210.01,70.075 +314774,208.87,71.333 +314775,207.7,72.59 +314776,206.49,73.845 +314777,208.76,70.081 +314778,207.58,71.321 +314779,206.36,72.56 +314780,205.1,73.796 +314781,207.5,70.089 +314782,206.28,71.309 +314783,205.02,72.528 +314784,203.72,73.747 +314785,206.25,70.097 +314786,204.98,71.297 +314787,203.68,72.497 +314788,202.33,73.696 +314789,204.99,70.107 +314790,203.69,71.286 +314791,202.34,72.465 +314792,200.95,73.644 +314793,203.73,70.117 +314794,202.39,71.275 +314795,201,72.433 +314796,199.57,73.591 +314797,202.48,70.129 +314798,201.09,71.264 +314799,199.66,72.401 +314800,198.19,73.538 +314801,201.22,70.141 +314802,199.79,71.254 +314803,198.33,72.368 +314804,196.81,73.483 +314805,199.95,70.154 +314806,198.49,71.244 +314807,196.99,72.335 +314808,195.43,73.428 +314809,198.69,70.168 +314810,197.19,71.234 +314811,195.65,72.302 +314812,194.05,73.372 +314813,197.43,70.183 +314814,195.9,71.224 +314815,194.31,72.268 +314816,192.68,73.314 +314817,196.17,70.199 +314818,194.6,71.215 +314819,192.98,72.235 +314820,191.3,73.256 +314821,194.9,70.215 +314822,193.29,71.206 +314823,191.64,72.2 +314824,189.93,73.197 +314825,193.63,70.233 +314826,191.99,71.197 +314827,190.3,72.166 +314828,188.55,73.138 +314829,192.37,70.251 +314830,190.69,71.189 +314831,188.97,72.131 +314832,187.18,73.077 +314833,191.1,70.27 +314834,189.39,71.181 +314835,187.63,72.096 +314836,185.81,73.016 +314837,189.83,70.289 +314838,188.09,71.173 +314839,186.3,72.061 +314840,184.44,72.954 +314841,188.55,70.31 +314842,186.79,71.165 +314843,184.97,72.026 +314844,183.08,72.891 +314845,187.28,70.331 +314846,185.48,71.158 +314847,183.63,71.99 +314848,181.71,72.828 +314849,186,70.352 +314850,184.18,71.15 +314851,182.3,71.954 +314852,180.35,72.764 +314853,184.73,70.375 +314854,182.88,71.143 +314855,180.97,71.918 +314856,178.98,72.699 +314857,183.45,70.398 +314858,181.57,71.137 +314859,179.63,71.882 +314860,177.62,72.633 +314861,182.17,70.421 +314862,180.27,71.13 +314863,178.3,71.845 +314864,176.26,72.567 +314865,180.89,70.445 +314866,178.96,71.123 +314867,176.97,71.809 +314868,174.9,72.501 +314869,179.61,70.47 +314870,177.66,71.117 +314871,175.64,71.772 +314872,173.54,72.433 +314873,178.33,70.495 +314874,176.35,71.111 +314875,174.31,71.735 +314876,172.19,72.366 +314877,177.04,70.521 +314878,175.05,71.105 +314879,172.98,71.697 +314880,170.83,72.297 +314881,175.75,70.547 +314882,173.74,71.099 +314883,171.65,71.66 +314884,169.48,72.229 +314885,174.47,70.574 +314886,172.43,71.094 +314887,170.32,71.622 +314888,168.13,72.159 +314889,173.18,70.6 +314890,171.12,71.088 +314891,169,71.585 +314892,166.78,72.09 +314893,171.89,70.628 +314894,169.81,71.083 +314895,167.67,71.547 +314896,165.43,72.019 +314897,170.59,70.656 +314898,168.51,71.078 +314899,166.34,71.509 +314900,164.09,71.949 +314901,169.3,70.684 +314902,167.2,71.073 +314903,165.02,71.471 +314904,162.74,71.878 +314905,168,70.712 +314906,165.89,71.068 +314907,163.69,71.432 +314908,161.4,71.807 +314909,166.7,70.741 +314910,164.58,71.063 +314911,162.36,71.394 +314912,160.06,71.735 +314913,165.41,70.769 +314914,163.26,71.058 +314915,161.04,71.356 +314916,158.72,71.663 +314917,164.1,70.799 +314918,161.95,71.053 +314919,159.72,71.317 +314920,157.38,71.591 +314921,162.8,70.828 +314922,160.64,71.049 +314923,158.39,71.279 +314924,156.05,71.519 +314925,161.5,70.857 +314926,159.33,71.044 +314927,157.07,71.24 +314928,154.71,71.446 +314929,160.19,70.887 +314930,158.01,71.039 +314931,155.75,71.201 +314932,153.38,71.373 +314933,158.88,70.917 +314934,156.7,71.035 +314935,154.43,71.162 +314936,152.05,71.3 +314937,157.57,70.946 +314938,155.39,71.03 +314939,153.11,71.124 +314940,150.72,71.227 +314941,156.26,70.976 +314942,154.07,71.026 +314943,151.79,71.085 +314944,149.39,71.154 +314945,154.95,71.006 +314946,152.75,71.022 +314947,150.47,71.046 +314948,148.07,71.081 +314949,153.64,71.036 +314950,151.44,71.017 +314951,149.15,71.007 +314952,146.75,71.007 +314953,152.32,71.066 +314954,150.12,71.013 +314955,147.83,70.968 +314956,145.43,70.934 +314957,151,71.096 +314958,148.8,71.008 +314959,146.51,70.929 +314960,144.11,70.861 +314961,149.68,71.126 +314962,147.49,71.004 +314963,145.19,70.89 +314964,142.79,70.787 +314965,148.36,71.155 +314966,146.17,70.999 +314967,143.88,70.852 +314968,141.47,70.714 +314969,147.04,71.185 +314970,144.85,70.995 +314971,142.56,70.813 +314972,140.16,70.641 +314973,145.72,71.214 +314974,143.53,70.99 +314975,141.24,70.774 +314976,138.85,70.568 +314977,144.39,71.243 +314978,142.21,70.985 +314979,139.93,70.735 +314980,137.54,70.495 +314981,143.06,71.272 +314982,140.89,70.98 +314983,138.61,70.697 +314984,136.23,70.422 +314985,141.73,71.301 +314986,139.57,70.976 +314987,137.3,70.658 +314988,134.92,70.35 +314989,140.4,71.329 +314990,138.25,70.971 +314991,135.99,70.62 +314992,133.62,70.277 +314993,139.07,71.357 +314994,136.92,70.966 +314995,134.68,70.581 +314996,132.31,70.205 +314997,137.74,71.385 +314998,135.6,70.961 +314999,133.36,70.543 +315000,131.01,70.133 +315001,136.4,71.412 +315002,134.28,70.955 +315003,132.05,70.505 +315004,129.71,70.062 +315005,135.06,71.439 +315006,132.95,70.95 +315007,130.74,70.467 +315008,128.42,69.991 +315009,133.73,71.466 +315010,131.63,70.944 +315011,129.43,70.429 +315012,127.12,69.92 +315013,132.39,71.492 +315014,130.3,70.939 +315015,128.12,70.391 +315016,125.83,69.85 +315017,131.04,71.518 +315018,128.98,70.933 +315019,126.81,70.353 +315020,124.54,69.78 +315021,129.7,71.543 +315022,127.65,70.927 +315023,125.5,70.315 +315024,123.25,69.71 +315025,128.35,71.568 +315026,126.33,70.921 +315027,124.2,70.278 +315028,121.96,69.641 +315029,127.01,71.592 +315030,125,70.915 +315031,122.89,70.241 +315032,120.67,69.573 +315033,125.66,71.616 +315034,123.67,70.908 +315035,121.58,70.204 +315036,119.39,69.505 +315037,124.31,71.639 +315038,122.34,70.902 +315039,120.28,70.167 +315040,118.1,69.437 +315041,122.96,71.662 +315042,121.01,70.895 +315043,118.97,70.13 +315044,116.82,69.37 +315045,121.61,71.684 +315046,119.68,70.888 +315047,117.67,70.094 +315048,115.54,69.304 +315049,120.25,71.705 +315050,118.35,70.88 +315051,116.36,70.058 +315052,114.26,69.238 +315053,118.9,71.725 +315054,117.02,70.873 +315055,115.06,70.021 +315056,112.99,69.173 +315057,117.54,71.745 +315058,115.69,70.865 +315059,113.76,69.986 +315060,111.71,69.109 +315061,116.18,71.764 +315062,114.36,70.857 +315063,112.45,69.95 +315064,110.44,69.045 +315065,114.82,71.783 +315066,113.03,70.849 +315067,111.15,69.915 +315068,109.17,68.982 +315069,113.46,71.801 +315070,111.7,70.84 +315071,109.85,69.88 +315072,107.9,68.92 +315073,112.1,71.817 +315074,110.37,70.832 +315075,108.55,69.845 +315076,106.63,68.859 +315077,110.73,71.834 +315078,109.03,70.823 +315079,107.25,69.81 +315080,105.36,68.798 +315081,109.37,71.849 +315082,107.7,70.813 +315083,105.95,69.776 +315084,104.09,68.738 +315085,108,71.863 +315086,106.37,70.804 +315087,104.65,69.742 +315088,102.83,68.679 +315089,106.63,71.877 +315090,105.03,70.794 +315091,103.35,69.708 +315092,101.57,68.621 +315093,105.26,71.89 +315094,103.7,70.784 +315095,102.05,69.674 +315096,100.31,68.564 +315097,103.89,71.901 +315098,102.36,70.773 +315099,100.75,69.641 +315100,99.045,68.508 +315101,102.52,71.912 +315102,101.03,70.762 +315103,99.451,69.608 +315104,97.786,68.452 +315105,101.15,71.922 +315106,99.691,70.751 +315107,98.153,69.576 +315108,96.528,68.398 +315109,99.775,71.931 +315110,98.355,70.74 +315111,96.856,69.543 +315112,95.272,68.344 +315113,98.4,71.939 +315114,97.018,70.728 +315115,95.559,69.511 +315116,94.016,68.291 +315117,97.024,71.947 +315118,95.681,70.716 +315119,94.263,69.48 +315120,92.762,68.24 +315121,95.647,71.953 +315122,94.344,70.704 +315123,92.967,69.449 +315124,91.509,68.189 +315125,94.269,71.958 +315126,93.006,70.691 +315127,91.671,69.418 +315128,90.258,68.139 +315129,92.89,71.962 +315130,91.668,70.678 +315131,90.376,69.387 +315132,89.007,68.091 +315133,91.51,71.965 +315134,90.33,70.664 +315135,89.081,69.357 +315136,87.757,68.043 +315137,90.129,71.967 +315138,88.991,70.651 +315139,87.787,69.327 +315140,86.509,67.997 +315141,88.746,71.968 +315142,87.652,70.636 +315143,86.492,69.297 +315144,85.261,67.951 +315145,87.364,71.968 +315146,86.313,70.622 +315147,85.199,69.268 +315148,84.014,67.907 +315149,85.98,71.967 +315150,84.974,70.607 +315151,83.905,69.239 +315152,82.769,67.864 +315153,84.595,71.964 +315154,83.634,70.592 +315155,82.612,69.21 +315156,81.524,67.822 +315157,83.21,71.961 +315158,82.294,70.576 +315159,81.319,69.182 +315160,80.279,67.781 +315161,81.824,71.956 +315162,80.953,70.56 +315163,80.026,69.154 +315164,79.036,67.741 +315165,80.437,71.951 +315166,79.613,70.544 +315167,78.733,69.127 +315168,77.793,67.702 +315169,79.049,71.944 +315170,78.272,70.527 +315171,77.441,69.1 +315172,76.551,67.665 +315173,77.661,71.936 +315174,76.931,70.51 +315175,76.149,69.073 +315176,75.31,67.628 +315177,76.272,71.927 +315178,75.59,70.492 +315179,74.857,69.047 +315180,74.069,67.593 +315181,74.882,71.917 +315182,74.249,70.474 +315183,73.566,69.021 +315184,72.829,67.559 +315185,73.492,71.905 +315186,72.907,70.456 +315187,72.275,68.996 +315188,71.59,67.526 +315189,72.101,71.893 +315190,71.566,70.437 +315191,70.983,68.971 +315192,70.351,67.495 +315193,70.71,71.879 +315194,70.224,70.418 +315195,69.692,68.946 +315196,69.112,67.464 +315197,69.319,71.864 +315198,68.882,70.399 +315199,68.401,68.922 +315200,67.874,67.435 +315201,67.927,71.848 +315202,67.54,70.379 +315203,67.111,68.898 +315204,66.636,67.407 +315205,66.534,71.831 +315206,66.198,70.358 +315207,65.82,68.874 +315208,65.399,67.38 +315209,65.141,71.813 +315210,64.856,70.338 +315211,64.53,68.851 +315212,64.161,67.354 +315213,63.748,71.793 +315214,63.513,70.317 +315215,63.239,68.829 +315216,62.924,67.33 +315217,62.355,71.772 +315218,62.171,70.295 +315219,61.949,68.806 +315220,61.688,67.307 +315221,60.961,71.75 +315222,60.828,70.273 +315223,60.659,68.784 +315224,60.451,67.285 +315225,59.567,71.727 +315226,59.486,70.251 +315227,59.369,68.763 +315228,59.214,67.264 +315229,58.173,71.703 +315230,58.143,70.228 +315231,58.079,68.742 +315232,57.978,67.245 +315233,56.779,71.677 +315234,56.801,70.205 +315235,56.789,68.721 +315236,56.742,67.227 +315237,55.384,71.65 +315238,55.458,70.181 +315239,55.499,68.701 +315240,55.505,67.21 +315241,53.99,71.622 +315242,54.116,70.157 +315243,54.209,68.681 +315244,54.269,67.194 +315245,52.596,71.593 +315246,52.773,70.133 +315247,52.919,68.661 +315248,53.032,67.179 +315249,51.201,71.563 +315250,51.431,70.108 +315251,51.629,68.642 +315252,51.795,67.166 +315253,49.807,71.531 +315254,50.088,70.083 +315255,50.339,68.623 +315256,50.558,67.154 +315257,48.413,71.499 +315258,48.746,70.057 +315259,49.049,68.605 +315260,49.321,67.143 +315261,47.018,71.465 +315262,47.403,70.031 +315263,47.758,68.587 +315264,48.084,67.133 +315265,45.624,71.43 +315266,46.061,70.005 +315267,46.468,68.569 +315268,46.846,67.124 +315269,44.231,71.394 +315270,44.719,69.978 +315271,45.178,68.552 +315272,45.608,67.117 +315273,42.837,71.356 +315274,43.377,69.951 +315275,43.887,68.535 +315276,44.37,67.111 +315277,41.444,71.318 +315278,42.035,69.924 +315279,42.597,68.519 +315280,43.131,67.105 +315281,40.051,71.278 +315282,40.693,69.896 +315283,41.306,68.503 +315284,41.891,67.101 +315285,38.658,71.238 +315286,39.351,69.867 +315287,40.016,68.487 +315288,40.652,67.099 +315289,37.266,71.196 +315290,38.01,69.839 +315291,38.725,68.472 +315292,39.411,67.097 +315293,35.874,71.153 +315294,36.669,69.81 +315295,37.433,68.457 +315296,38.17,67.096 +315297,34.483,71.109 +315298,35.328,69.78 +315299,36.142,68.442 +315300,36.929,67.097 +315301,33.092,71.064 +315302,33.987,69.75 +315303,34.851,68.428 +315304,35.686,67.099 +315305,31.702,71.018 +315306,32.646,69.72 +315307,33.559,68.414 +315308,34.443,67.101 +315309,30.312,70.971 +315310,31.305,69.69 +315311,32.267,68.401 +315312,33.2,67.105 +315313,28.923,70.922 +315314,29.965,69.659 +315315,30.975,68.388 +315316,31.955,67.11 +315317,27.535,70.873 +315318,28.625,69.628 +315319,29.683,68.375 +315320,30.71,67.116 +315321,26.147,70.823 +315322,27.285,69.596 +315323,28.39,68.362 +315324,29.464,67.123 +315325,24.76,70.771 +315326,25.946,69.564 +315327,27.097,68.35 +315328,28.217,67.131 +315329,23.374,70.719 +315330,24.607,69.532 +315331,25.804,68.338 +315332,26.969,67.14 +315333,21.988,70.666 +315334,23.268,69.499 +315335,24.511,68.327 +315336,25.72,67.149 +315337,20.604,70.611 +315338,21.929,69.466 +315339,23.217,68.315 +315340,24.47,67.16 +315341,19.22,70.556 +315342,20.591,69.433 +315343,21.923,68.304 +315344,23.219,67.172 +315345,17.837,70.5 +315346,19.253,69.399 +315347,20.629,68.294 +315348,21.967,67.185 +315349,16.455,70.443 +315350,17.916,69.366 +315351,19.334,68.284 +315352,20.714,67.198 +315353,15.075,70.385 +315354,16.579,69.331 +315355,18.039,68.274 +315356,19.46,67.213 +315357,13.695,70.326 +315358,15.242,69.297 +315359,16.743,68.264 +315360,18.205,67.228 +315361,12.316,70.267 +315362,13.905,69.262 +315363,15.448,68.254 +315364,16.949,67.244 +315365,10.938,70.206 +315366,12.569,69.227 +315367,14.152,68.245 +315368,15.691,67.261 +315369,9.5619,70.145 +315370,11.234,69.192 +315371,12.855,68.236 +315372,14.432,67.279 +315373,8.1865,70.083 +315374,9.8985,69.156 +315375,11.558,68.227 +315376,13.172,67.298 +315377,6.8123,70.02 +315378,8.5637,69.12 +315379,10.261,68.219 +315380,11.911,67.317 +315381,5.4394,69.956 +315382,7.2293,69.084 +315383,8.9631,68.211 +315384,10.648,67.337 +315385,4.0677,69.892 +315386,5.8954,69.048 +315387,7.665,68.203 +315388,9.3841,67.358 +315389,2.6973,69.827 +315390,4.5619,69.011 +315391,6.3664,68.195 +315392,8.1188,67.379 +315393,1.3282,69.761 +315394,3.2289,68.975 +315395,5.0674,68.188 +315396,6.8521,67.401 +315397,359.96,69.695 +315398,1.8963,68.938 +315399,3.768,68.18 +315400,5.584,67.424 +315401,358.59,69.627 +315402,0.56426,68.9 +315403,2.4681,68.173 +315404,4.3144,67.447 +315405,357.23,69.56 +315406,359.23,68.863 +315407,1.1677,68.166 +315408,3.0435,67.471 +315409,355.87,69.491 +315410,357.9,68.825 +315411,359.87,68.159 +315412,1.771,67.495 +315413,354.5,69.423 +315414,356.57,68.787 +315415,358.57,68.153 +315416,0.49711,67.52 +315417,353.14,69.353 +315418,355.24,68.749 +315419,357.26,68.146 +315420,359.22,67.546 +315421,351.78,69.283 +315422,353.91,68.711 +315423,355.96,68.14 +315424,357.94,67.572 +315425,350.43,69.213 +315426,352.58,68.673 +315427,354.66,68.134 +315428,356.67,67.598 +315429,349.07,69.142 +315430,351.25,68.634 +315431,353.36,68.128 +315432,355.39,67.625 +315433,347.72,69.07 +315434,349.93,68.595 +315435,352.05,68.122 +315436,354.1,67.652 +315437,346.36,68.999 +315438,348.6,68.556 +315439,350.75,68.117 +315440,352.82,67.68 +315441,345.01,68.926 +315442,347.27,68.517 +315443,349.44,68.111 +315444,351.54,67.708 +315445,343.66,68.854 +315446,345.95,68.478 +315447,348.14,68.106 +315448,350.25,67.736 +315449,342.32,68.781 +315450,344.62,68.439 +315451,346.83,68.1 +315452,348.96,67.765 +315453,340.97,68.708 +315454,343.29,68.4 +315455,345.52,68.095 +315456,347.67,67.794 +315457,339.63,68.634 +315458,341.97,68.36 +315459,344.22,68.09 +315460,346.38,67.823 +315461,338.28,68.56 +315462,340.65,68.321 +315463,342.91,68.085 +315464,345.09,67.852 +315465,336.94,68.486 +315466,339.32,68.281 +315467,341.6,68.079 +315468,343.79,67.882 +315469,335.6,68.412 +315470,338,68.241 +315471,340.29,68.074 +315472,342.5,67.911 +315473,334.27,68.338 +315474,336.68,68.202 +315475,338.98,68.069 +315476,341.2,67.941 +315477,332.93,68.263 +315478,335.36,68.162 +315479,337.67,68.064 +315480,339.9,67.971 +315481,331.6,68.189 +315482,334.04,68.122 +315483,336.36,68.059 +315484,338.6,68.001 +315485,330.27,68.114 +315486,332.72,68.082 +315487,335.05,68.055 +315488,337.3,68.031 +315489,328.94,68.039 +315490,331.4,68.042 +315491,333.74,68.05 +315492,335.99,68.061 +315493,327.61,67.964 +315494,330.08,68.002 +315495,332.43,68.045 +315496,334.68,68.09 +315497,326.28,67.889 +315498,328.76,67.963 +315499,331.12,68.04 +315500,333.38,68.12 +315501,324.96,67.814 +315502,327.44,67.923 +315503,329.8,68.035 +315504,332.07,68.15 +315505,323.64,67.739 +315506,326.12,67.883 +315507,328.49,68.03 +315508,330.75,68.18 +315509,322.32,67.665 +315510,324.81,67.843 +315511,327.18,68.025 +315512,329.44,68.209 +315513,321,67.59 +315514,323.49,67.803 +315515,325.86,68.019 +315516,328.13,68.239 +315517,319.68,67.515 +315518,322.18,67.763 +315519,324.55,68.014 +315520,326.81,68.268 +315521,318.37,67.441 +315522,320.86,67.723 +315523,323.23,68.009 +315524,325.49,68.297 +315525,317.05,67.367 +315526,319.55,67.684 +315527,321.91,68.004 +315528,324.17,68.326 +315529,315.74,67.293 +315530,318.23,67.644 +315531,320.6,67.998 +315532,322.85,68.354 +315533,314.43,67.219 +315534,316.92,67.605 +315535,319.28,67.993 +315536,321.52,68.383 +315537,313.13,67.145 +315538,315.61,67.565 +315539,317.96,67.987 +315540,320.2,68.411 +315541,311.82,67.072 +315542,314.3,67.526 +315543,316.64,67.981 +315544,318.87,68.438 +315545,310.52,66.999 +315546,312.99,67.486 +315547,315.32,67.975 +315548,317.54,68.465 +315549,309.22,66.927 +315550,311.68,67.447 +315551,314,67.969 +315552,316.21,68.492 +315553,307.92,66.855 +315554,310.37,67.408 +315555,312.68,67.963 +315556,314.88,68.518 +315557,306.62,66.783 +315558,309.06,67.369 +315559,311.36,67.957 +315560,313.55,68.544 +315561,305.33,66.712 +315562,307.75,67.331 +315563,310.04,67.95 +315564,312.21,68.57 +315565,304.03,66.641 +315566,306.44,67.292 +315567,308.71,67.944 +315568,310.88,68.595 +315569,302.74,66.57 +315570,305.13,67.254 +315571,307.39,67.937 +315572,309.54,68.619 +315573,301.45,66.5 +315574,303.83,67.215 +315575,306.07,67.93 +315576,308.2,68.643 +315577,300.16,66.431 +315578,302.52,67.177 +315579,304.74,67.923 +315580,306.85,68.666 +315581,298.88,66.362 +315582,301.21,67.139 +315583,303.42,67.915 +315584,305.51,68.689 +315585,297.59,66.294 +315586,299.91,67.102 +315587,302.1,67.908 +315588,304.17,68.711 +315589,296.31,66.227 +315590,298.61,67.064 +315591,300.77,67.9 +315592,302.82,68.732 +315593,295.03,66.16 +315594,297.3,67.027 +315595,299.44,67.892 +315596,301.47,68.753 +315597,293.75,66.094 +315598,296,66.99 +315599,298.12,67.883 +315600,300.12,68.773 +315601,292.47,66.028 +315602,294.7,66.953 +315603,296.79,67.875 +315604,298.77,68.792 +315605,291.2,65.963 +315606,293.39,66.916 +315607,295.46,67.866 +315608,297.42,68.811 +315609,289.92,65.899 +315610,292.09,66.88 +315611,294.13,67.857 +315612,296.06,68.828 +315613,288.65,65.836 +315614,290.79,66.844 +315615,292.81,67.847 +315616,294.71,68.845 +315617,287.38,65.773 +315618,289.49,66.808 +315619,291.48,67.838 +315620,293.35,68.861 +315621,286.11,65.711 +315622,288.19,66.772 +315623,290.15,67.828 +315624,291.99,68.877 +315625,284.85,65.651 +315626,286.89,66.737 +315627,288.82,67.818 +315628,290.63,68.891 +315629,283.58,65.591 +315630,285.59,66.702 +315631,287.49,67.807 +315632,289.27,68.905 +315633,282.32,65.531 +315634,284.3,66.667 +315635,286.16,67.796 +315636,287.91,68.918 +315637,281.05,65.473 +315638,283,66.633 +315639,284.82,67.785 +315640,286.55,68.929 +315641,279.79,65.416 +315642,281.7,66.598 +315643,283.49,67.774 +315644,285.18,68.94 +315645,278.53,65.359 +315646,280.4,66.564 +315647,282.16,67.762 +315648,283.81,68.95 +315649,277.28,65.304 +315650,279.11,66.531 +315651,280.83,67.75 +315652,282.45,68.959 +315653,276.02,65.249 +315654,277.81,66.498 +315655,279.49,67.737 +315656,281.08,68.967 +315657,274.76,65.196 +315658,276.52,66.465 +315659,278.16,67.725 +315660,279.71,68.974 +315661,273.51,65.143 +315662,275.22,66.432 +315663,276.83,67.711 +315664,278.33,68.98 +315665,272.26,65.092 +315666,273.93,66.4 +315667,275.49,67.698 +315668,276.96,68.985 +315669,271.01,65.041 +315670,272.63,66.368 +315671,274.16,67.684 +315672,275.59,68.989 +315673,269.76,64.992 +315674,271.34,66.336 +315675,272.82,67.67 +315676,274.21,68.992 +315677,268.51,64.943 +315678,270.05,66.305 +315679,271.49,67.655 +315680,272.84,68.994 +315681,267.26,64.896 +315682,268.75,66.274 +315683,270.15,67.64 +315684,271.46,68.995 +315685,266.02,64.85 +315686,267.46,66.243 +315687,268.81,67.625 +315688,270.08,68.994 +315689,264.77,64.805 +315690,266.17,66.213 +315691,267.48,67.61 +315692,268.7,68.993 +315693,263.53,64.761 +315694,264.88,66.183 +315695,266.14,67.593 +315696,267.32,68.99 +315697,262.28,64.718 +315698,263.59,66.154 +315699,264.8,67.577 +315700,265.94,68.987 +315701,261.04,64.676 +315702,262.3,66.125 +315703,263.47,67.56 +315704,264.56,68.982 +315705,259.8,64.636 +315706,261.01,66.096 +315707,262.13,67.543 +315708,263.18,68.976 +315709,258.56,64.597 +315710,259.72,66.068 +315711,260.79,67.525 +315712,261.79,68.968 +315713,257.32,64.558 +315714,258.43,66.04 +315715,259.45,67.507 +315716,260.41,68.96 +315717,256.08,64.521 +315718,257.14,66.012 +315719,258.11,67.489 +315720,259.02,68.951 +315721,254.84,64.486 +315722,255.85,65.985 +315723,256.78,67.47 +315724,257.64,68.94 +315725,253.61,64.451 +315726,254.56,65.958 +315727,255.44,67.451 +315728,256.25,68.928 +315729,252.37,64.418 +315730,253.27,65.932 +315731,254.1,67.431 +315732,254.86,68.915 +315733,251.14,64.386 +315734,251.98,65.906 +315735,252.76,67.411 +315736,253.48,68.901 +315737,249.9,64.355 +315738,250.69,65.88 +315739,251.42,67.391 +315740,252.09,68.885 +315741,248.67,64.325 +315742,249.4,65.855 +315743,250.08,67.37 +315744,250.7,68.869 +315745,247.43,64.297 +315746,248.11,65.83 +315747,248.74,67.348 +315748,249.31,68.851 +315749,246.2,64.27 +315750,246.83,65.806 +315751,247.4,67.327 +315752,247.92,68.831 +315753,244.97,64.244 +315754,245.54,65.782 +315755,246.06,67.304 +315756,246.53,68.811 +315757,243.73,64.219 +315758,244.25,65.758 +315759,244.72,67.282 +315760,245.13,68.79 +315761,242.5,64.196 +315762,242.96,65.735 +315763,243.38,67.259 +315764,243.74,68.767 +315765,241.27,64.173 +315766,241.68,65.712 +315767,242.04,67.235 +315768,242.35,68.743 +315769,240.04,64.152 +315770,240.39,65.69 +315771,240.7,67.212 +315772,240.96,68.717 +315773,238.81,64.133 +315774,239.1,65.668 +315775,239.35,67.187 +315776,239.56,68.691 +315777,237.58,64.114 +315778,237.82,65.646 +315779,238.01,67.163 +315780,238.17,68.663 +315781,236.34,64.097 +315782,236.53,65.625 +315783,236.67,67.138 +315784,236.78,68.634 +315785,235.11,64.081 +315786,235.24,65.604 +315787,235.33,67.112 +315788,235.38,68.604 +315789,233.88,64.066 +315790,233.96,65.583 +315791,233.99,67.086 +315792,233.99,68.573 +315793,232.65,64.053 +315794,232.67,65.563 +315795,232.65,67.06 +315796,232.6,68.54 +315797,231.42,64.04 +315798,231.38,65.544 +315799,231.31,67.033 +315800,231.2,68.506 +315801,230.19,64.029 +315802,230.1,65.525 +315803,229.97,67.006 +315804,229.81,68.471 +315805,228.96,64.019 +315806,228.81,65.506 +315807,228.63,66.978 +315808,228.42,68.435 +315809,227.73,64.011 +315810,227.52,65.487 +315811,227.29,66.95 +315812,227.02,68.398 +315813,226.49,64.003 +315814,226.24,65.469 +315815,225.95,66.922 +315816,225.63,68.359 +315817,225.26,63.997 +315818,224.95,65.452 +315819,224.61,66.893 +315820,224.23,68.319 +315821,224.03,63.992 +315822,223.66,65.434 +315823,223.26,66.864 +315824,222.84,68.278 +315825,222.8,63.988 +315826,222.37,65.417 +315827,221.92,66.834 +315828,221.45,68.236 +315829,221.56,63.985 +315830,221.09,65.401 +315831,220.58,66.804 +315832,220.05,68.193 +315833,220.33,63.983 +315834,219.8,65.385 +315835,219.24,66.774 +315836,218.66,68.149 +315837,219.1,63.983 +315838,218.51,65.369 +315839,217.9,66.743 +315840,217.27,68.103 +315841,217.86,63.983 +315842,217.23,65.354 +315843,216.56,66.712 +315844,215.87,68.056 +315845,216.63,63.985 +315846,215.94,65.339 +315847,215.22,66.68 +315848,214.48,68.009 +315849,215.39,63.988 +315850,214.65,65.324 +315851,213.88,66.648 +315852,213.09,67.96 +315853,214.16,63.992 +315854,213.36,65.309 +315855,212.54,66.616 +315856,211.7,67.91 +315857,212.92,63.997 +315858,212.07,65.295 +315859,211.2,66.583 +315860,210.31,67.859 +315861,211.68,64.003 +315862,210.79,65.282 +315863,209.87,66.55 +315864,208.92,67.807 +315865,210.44,64.01 +315866,209.5,65.268 +315867,208.53,66.517 +315868,207.53,67.753 +315869,209.2,64.018 +315870,208.21,65.255 +315871,207.19,66.483 +315872,206.14,67.699 +315873,207.96,64.027 +315874,206.92,65.243 +315875,205.85,66.449 +315876,204.75,67.644 +315877,206.72,64.037 +315878,205.63,65.23 +315879,204.51,66.414 +315880,203.36,67.588 +315881,205.48,64.048 +315882,204.34,65.218 +315883,203.17,66.38 +315884,201.98,67.531 +315885,204.24,64.06 +315886,203.05,65.207 +315887,201.84,66.344 +315888,200.59,67.472 +315889,202.99,64.073 +315890,201.76,65.195 +315891,200.5,66.309 +315892,199.21,67.413 +315893,201.75,64.087 +315894,200.47,65.184 +315895,199.16,66.273 +315896,197.82,67.353 +315897,200.5,64.102 +315898,199.18,65.173 +315899,197.83,66.237 +315900,196.44,67.292 +315901,199.26,64.117 +315902,197.89,65.163 +315903,196.49,66.201 +315904,195.05,67.23 +315905,198.01,64.134 +315906,196.6,65.152 +315907,195.15,66.164 +315908,193.67,67.167 +315909,196.76,64.151 +315910,195.3,65.142 +315911,193.82,66.127 +315912,192.29,67.104 +315913,195.51,64.169 +315914,194.01,65.132 +315915,192.48,66.09 +315916,190.91,67.039 +315917,194.26,64.188 +315918,192.72,65.123 +315919,191.15,66.052 +315920,189.53,66.974 +315921,193,64.208 +315922,191.43,65.114 +315923,189.81,66.014 +315924,188.16,66.908 +315925,191.75,64.228 +315926,190.13,65.105 +315927,188.48,65.976 +315928,186.78,66.841 +315929,190.49,64.249 +315930,188.84,65.096 +315931,187.15,65.938 +315932,185.4,66.774 +315933,189.24,64.271 +315934,187.55,65.087 +315935,185.81,65.899 +315936,184.03,66.705 +315937,187.98,64.293 +315938,186.25,65.079 +315939,184.48,65.86 +315940,182.66,66.636 +315941,186.72,64.316 +315942,184.96,65.071 +315943,183.15,65.821 +315944,181.28,66.567 +315945,185.46,64.34 +315946,183.66,65.063 +315947,181.82,65.782 +315948,179.91,66.496 +315949,184.2,64.364 +315950,182.37,65.055 +315951,180.49,65.743 +315952,178.55,66.425 +315953,182.93,64.389 +315954,181.07,65.047 +315955,179.15,65.703 +315956,177.18,66.354 +315957,181.67,64.414 +315958,179.77,65.04 +315959,177.82,65.663 +315960,175.81,66.281 +315961,180.4,64.44 +315962,178.48,65.033 +315963,176.49,65.623 +315964,174.45,66.209 +315965,179.13,64.466 +315966,177.18,65.025 +315967,175.16,65.582 +315968,173.08,66.135 +315969,177.86,64.493 +315970,175.88,65.018 +315971,173.84,65.542 +315972,171.72,66.062 +315973,176.59,64.52 +315974,174.58,65.012 +315975,172.51,65.501 +315976,170.36,65.987 +315977,175.32,64.547 +315978,173.28,65.005 +315979,171.18,65.46 +315980,169,65.912 +315981,174.04,64.575 +315982,171.98,64.998 +315983,169.85,65.42 +315984,167.64,65.837 +315985,172.77,64.603 +315986,170.68,64.992 +315987,168.53,65.378 +315988,166.29,65.762 +315989,171.49,64.632 +315990,169.38,64.985 +315991,167.2,65.337 +315992,164.93,65.686 +315993,170.21,64.661 +315994,168.08,64.979 +315995,165.88,65.296 +315996,163.58,65.609 +315997,168.93,64.69 +315998,166.78,64.973 +315999,164.55,65.254 +316000,162.23,65.533 +316001,167.65,64.719 +316002,165.48,64.967 +316003,163.23,65.213 +316004,160.88,65.456 +316005,166.36,64.749 +316006,164.17,64.961 +316007,161.9,65.171 +316008,159.53,65.379 +316009,165.08,64.778 +316010,162.87,64.955 +316011,160.58,65.129 +316012,158.19,65.301 +316013,163.79,64.808 +316014,161.57,64.949 +316015,159.26,65.088 +316016,156.84,65.224 +316017,162.5,64.838 +316018,160.26,64.943 +316019,157.93,65.046 +316020,155.5,65.146 +316021,161.21,64.868 +316022,158.96,64.937 +316023,156.61,65.004 +316024,154.16,65.068 +316025,159.91,64.898 +316026,157.65,64.931 +316027,155.29,64.962 +316028,152.82,64.99 +316029,158.62,64.928 +316030,156.35,64.925 +316031,153.97,64.92 +316032,151.49,64.912 +316033,157.32,64.958 +316034,155.04,64.919 +316035,152.65,64.878 +316036,150.15,64.833 +316037,156.03,64.988 +316038,153.73,64.913 +316039,151.33,64.836 +316040,148.82,64.755 +316041,154.73,65.018 +316042,152.42,64.907 +316043,150.02,64.794 +316044,147.49,64.677 +316045,153.42,65.048 +316046,151.11,64.901 +316047,148.7,64.752 +316048,146.16,64.599 +316049,152.12,65.078 +316050,149.81,64.895 +316051,147.38,64.71 +316052,144.83,64.52 +316053,150.82,65.108 +316054,148.5,64.889 +316055,146.07,64.668 +316056,143.51,64.442 +316057,149.51,65.137 +316058,147.19,64.883 +316059,144.75,64.626 +316060,142.18,64.364 +316061,148.2,65.166 +316062,145.87,64.877 +316063,143.43,64.584 +316064,140.86,64.286 +316065,146.89,65.195 +316066,144.56,64.87 +316067,142.12,64.542 +316068,139.54,64.209 +316069,145.58,65.224 +316070,143.25,64.864 +316071,140.81,64.5 +316072,138.22,64.131 +316073,144.26,65.252 +316074,141.94,64.857 +316075,139.49,64.458 +316076,136.91,64.054 +316077,142.95,65.28 +316078,140.63,64.851 +316079,138.18,64.416 +316080,135.6,63.977 +316081,141.63,65.308 +316082,139.31,64.844 +316083,136.87,64.375 +316084,134.28,63.9 +316085,140.31,65.336 +316086,138,64.837 +316087,135.56,64.333 +316088,132.97,63.824 +316089,138.99,65.363 +316090,136.68,64.83 +316091,134.25,64.292 +316092,131.67,63.748 +316093,137.67,65.389 +316094,135.37,64.823 +316095,132.94,64.251 +316096,130.36,63.672 +316097,136.35,65.415 +316098,134.05,64.816 +316099,131.63,64.209 +316100,129.06,63.597 +316101,135.02,65.441 +316102,132.73,64.808 +316103,130.32,64.168 +316104,127.76,63.522 +316105,133.69,65.466 +316106,131.42,64.8 +316107,129.01,64.128 +316108,126.46,63.448 +316109,132.36,65.49 +316110,130.1,64.792 +316111,127.71,64.087 +316112,125.16,63.374 +316113,131.03,65.514 +316114,128.78,64.784 +316115,126.4,64.046 +316116,123.86,63.3 +316117,129.7,65.538 +316118,127.46,64.776 +316119,125.09,64.006 +316120,122.57,63.227 +316121,128.36,65.561 +316122,126.14,64.768 +316123,123.79,63.966 +316124,121.28,63.155 +316125,127.03,65.583 +316126,124.82,64.759 +316127,122.48,63.926 +316128,119.99,63.083 +316129,125.69,65.604 +316130,123.5,64.75 +316131,121.18,63.886 +316132,118.7,63.012 +316133,124.35,65.625 +316134,122.18,64.741 +316135,119.88,63.846 +316136,117.42,62.942 +316137,123.01,65.645 +316138,120.86,64.731 +316139,118.57,63.807 +316140,116.13,62.872 +316141,121.67,65.664 +316142,119.54,64.722 +316143,117.27,63.768 +316144,114.85,62.803 +316145,120.32,65.683 +316146,118.21,64.712 +316147,115.97,63.729 +316148,113.57,62.735 +316149,118.98,65.701 +316150,116.89,64.702 +316151,114.67,63.69 +316152,112.29,62.667 +316153,117.63,65.718 +316154,115.57,64.691 +316155,113.37,63.652 +316156,111.02,62.6 +316157,116.28,65.734 +316158,114.24,64.68 +316159,112.07,63.614 +316160,109.74,62.534 +316161,114.93,65.749 +316162,112.92,64.669 +316163,110.77,63.576 +316164,108.47,62.469 +316165,113.58,65.764 +316166,111.59,64.658 +316167,109.47,63.538 +316168,107.2,62.405 +316169,112.23,65.777 +316170,110.27,64.646 +316171,108.17,63.501 +316172,105.93,62.341 +316173,110.87,65.79 +316174,108.94,64.634 +316175,106.88,63.464 +316176,104.66,62.279 +316177,109.52,65.802 +316178,107.61,64.622 +316179,105.58,63.427 +316180,103.4,62.217 +316181,108.16,65.813 +316182,106.28,64.609 +316183,104.28,63.391 +316184,102.13,62.156 +316185,106.8,65.822 +316186,104.96,64.596 +316187,102.99,63.354 +316188,100.87,62.096 +316189,105.44,65.831 +316190,103.63,64.583 +316191,101.69,63.318 +316192,99.612,62.038 +316193,104.08,65.839 +316194,102.3,64.569 +316195,100.4,63.283 +316196,98.354,61.98 +316197,102.71,65.846 +316198,100.97,64.555 +316199,99.104,63.248 +316200,97.097,61.923 +316201,101.35,65.852 +316202,99.64,64.541 +316203,97.811,63.213 +316204,95.841,61.867 +316205,99.983,65.856 +316206,98.31,64.526 +316207,96.518,63.178 +316208,94.588,61.812 +316209,98.616,65.86 +316210,96.979,64.511 +316211,95.225,63.144 +316212,93.335,61.759 +316213,97.247,65.862 +316214,95.648,64.496 +316215,93.933,63.11 +316216,92.084,61.706 +316217,95.878,65.864 +316218,94.317,64.48 +316219,92.641,63.077 +316220,90.835,61.655 +316221,94.507,65.864 +316222,92.985,64.464 +316223,91.35,63.044 +316224,89.587,61.604 +316225,93.135,65.863 +316226,91.653,64.447 +316227,90.06,63.011 +316228,88.34,61.555 +316229,91.762,65.861 +316230,90.32,64.43 +316231,88.77,62.978 +316232,87.095,61.507 +316233,90.388,65.858 +316234,88.987,64.413 +316235,87.48,62.946 +316236,85.851,61.46 +316237,89.013,65.854 +316238,87.654,64.395 +316239,86.19,62.915 +316240,84.609,61.414 +316241,87.637,65.849 +316242,86.32,64.377 +316243,84.902,62.883 +316244,83.367,61.37 +316245,86.26,65.842 +316246,84.986,64.358 +316247,83.613,62.853 +316248,82.127,61.326 +316249,84.882,65.834 +316250,83.652,64.339 +316251,82.325,62.822 +316252,80.888,61.284 +316253,83.502,65.825 +316254,82.317,64.319 +316255,81.037,62.792 +316256,79.65,61.243 +316257,82.122,65.815 +316258,80.982,64.299 +316259,79.75,62.762 +316260,78.413,61.203 +316261,80.741,65.803 +316262,79.647,64.279 +316263,78.463,62.733 +316264,77.177,61.165 +316265,79.359,65.791 +316266,78.311,64.258 +316267,77.176,62.704 +316268,75.942,61.128 +316269,77.977,65.777 +316270,76.976,64.237 +316271,75.89,62.675 +316272,74.708,61.092 +316273,76.593,65.761 +316274,75.639,64.216 +316275,74.604,62.647 +316276,73.475,61.057 +316277,75.209,65.745 +316278,74.303,64.194 +316279,73.318,62.62 +316280,72.243,61.024 +316281,73.824,65.727 +316282,72.967,64.171 +316283,72.032,62.592 +316284,71.012,60.991 +316285,72.438,65.708 +316286,71.63,64.148 +316287,70.747,62.565 +316288,69.781,60.961 +316289,71.051,65.688 +316290,70.293,64.125 +316291,69.462,62.539 +316292,68.551,60.931 +316293,69.664,65.666 +316294,68.956,64.101 +316295,68.178,62.513 +316296,67.322,60.903 +316297,68.276,65.644 +316298,67.618,64.077 +316299,66.893,62.487 +316300,66.093,60.876 +316301,66.888,65.62 +316302,66.281,64.052 +316303,65.609,62.462 +316304,64.865,60.85 +316305,65.499,65.594 +316306,64.943,64.027 +316307,64.325,62.437 +316308,63.638,60.825 +316309,64.11,65.568 +316310,63.605,64.001 +316311,63.041,62.413 +316312,62.411,60.802 +316313,62.72,65.54 +316314,62.267,63.975 +316315,61.757,62.389 +316316,61.184,60.78 +316317,61.33,65.51 +316318,60.929,63.949 +316319,60.474,62.365 +316320,59.958,60.76 +316321,59.939,65.48 +316322,59.591,63.922 +316323,59.191,62.342 +316324,58.732,60.741 +316325,58.548,65.448 +316326,58.253,63.895 +316327,57.907,62.319 +316328,57.507,60.723 +316329,57.157,65.415 +316330,56.914,63.867 +316331,56.624,62.297 +316332,56.282,60.706 +316333,55.765,65.381 +316334,55.576,63.839 +316335,55.341,62.275 +316336,55.057,60.69 +316337,54.373,65.345 +316338,54.238,63.81 +316339,54.058,62.254 +316340,53.832,60.676 +316341,52.981,65.308 +316342,52.899,63.781 +316343,52.775,62.233 +316344,52.607,60.663 +316345,51.589,65.27 +316346,51.56,63.752 +316347,51.493,62.212 +316348,51.382,60.652 +316349,50.196,65.231 +316350,50.222,63.722 +316351,50.21,62.192 +316352,50.157,60.642 +316353,48.804,65.19 +316354,48.883,63.691 +316355,48.927,62.172 +316356,48.933,60.632 +316357,47.411,65.148 +316358,47.545,63.661 +316359,47.644,62.152 +316360,47.708,60.625 +316361,46.018,65.105 +316362,46.206,63.629 +316363,46.362,62.133 +316364,46.483,60.618 +316365,44.625,65.061 +316366,44.868,63.598 +316367,45.079,62.115 +316368,45.258,60.613 +316369,43.233,65.015 +316370,43.529,63.566 +316371,43.796,62.096 +316372,44.032,60.608 +316373,41.84,64.969 +316374,42.191,63.533 +316375,42.514,62.078 +316376,42.806,60.605 +316377,40.448,64.921 +316378,40.853,63.5 +316379,41.231,62.061 +316380,41.581,60.604 +316381,39.055,64.872 +316382,39.515,63.467 +316383,39.948,62.044 +316384,40.354,60.603 +316385,37.663,64.821 +316386,38.177,63.433 +316387,38.665,62.027 +316388,39.127,60.604 +316389,36.271,64.77 +316390,36.839,63.399 +316391,37.382,62.011 +316392,37.9,60.605 +316393,34.88,64.717 +316394,35.501,63.365 +316395,36.098,61.995 +316396,36.673,60.608 +316397,33.489,64.664 +316398,34.163,63.33 +316399,34.815,61.979 +316400,35.444,60.612 +316401,32.098,64.609 +316402,32.826,63.295 +316403,33.532,61.964 +316404,34.216,60.617 +316405,30.707,64.553 +316406,31.488,63.259 +316407,32.248,61.949 +316408,32.986,60.623 +316409,29.317,64.496 +316410,30.151,63.223 +316411,30.964,61.934 +316412,31.756,60.631 +316413,27.927,64.437 +316414,28.814,63.186 +316415,29.68,61.92 +316416,30.525,60.639 +316417,26.538,64.378 +316418,27.478,63.15 +316419,28.396,61.906 +316420,29.294,60.648 +316421,25.15,64.318 +316422,26.141,63.113 +316423,27.112,61.892 +316424,28.062,60.659 +316425,23.761,64.257 +316426,24.805,63.075 +316427,25.827,61.879 +316428,26.829,60.67 +316429,22.374,64.194 +316430,23.469,63.037 +316431,24.542,61.866 +316432,25.595,60.682 +316433,20.987,64.131 +316434,22.133,62.999 +316435,23.257,61.853 +316436,24.36,60.695 +316437,19.601,64.067 +316438,20.798,62.96 +316439,21.972,61.841 +316440,23.124,60.71 +316441,18.216,64.001 +316442,19.463,62.922 +316443,20.686,61.829 +316444,21.887,60.725 +316445,16.831,63.935 +316446,18.128,62.882 +316447,19.4,61.817 +316448,20.649,60.741 +316449,15.448,63.868 +316450,16.794,62.843 +316451,18.114,61.806 +316452,19.41,60.758 +316453,14.065,63.8 +316454,15.46,62.803 +316455,16.827,61.794 +316456,18.17,60.775 +316457,12.683,63.731 +316458,14.126,62.763 +316459,15.54,61.784 +316460,16.929,60.794 +316461,11.302,63.661 +316462,12.793,62.723 +316463,14.253,61.773 +316464,15.687,60.813 +316465,9.9216,63.591 +316466,11.459,62.682 +316467,12.966,61.762 +316468,14.444,60.834 +316469,8.5425,63.519 +316470,10.127,62.641 +316471,11.678,61.752 +316472,13.199,60.854 +316473,7.1644,63.447 +316474,8.7946,62.6 +316475,10.389,61.742 +316476,11.953,60.876 +316477,5.7874,63.374 +316478,7.4628,62.558 +316479,9.1008,61.733 +316480,10.706,60.898 +316481,4.4116,63.3 +316482,6.1314,62.517 +316483,7.8118,61.723 +316484,9.4573,60.921 +316485,3.0368,63.226 +316486,4.8004,62.475 +316487,6.5223,61.714 +316488,8.2075,60.945 +316489,1.6633,63.151 +316490,3.4698,62.432 +316491,5.2325,61.705 +316492,6.9563,60.969 +316493,0.29095,63.075 +316494,2.1398,62.39 +316495,3.9422,61.696 +316496,5.7037,60.994 +316497,358.92,62.999 +316498,0.81014,62.347 +316499,2.6515,61.687 +316500,4.4497,61.02 +316501,357.55,62.922 +316502,359.48,62.304 +316503,1.3603,61.678 +316504,3.1942,61.046 +316505,356.18,62.844 +316506,358.15,62.261 +316507,0.068708,61.67 +316508,1.9373,61.072 +316509,354.81,62.766 +316510,356.82,62.218 +316511,358.78,61.662 +316512,0.67893,61.099 +316513,353.45,62.687 +316514,355.5,62.175 +316515,357.48,61.654 +316516,359.42,61.126 +316517,352.08,62.608 +316518,354.17,62.131 +316519,356.19,61.646 +316520,358.16,61.154 +316521,350.72,62.528 +316522,352.84,62.087 +316523,354.9,61.638 +316524,356.89,61.183 +316525,349.36,62.448 +316526,351.52,62.043 +316527,353.6,61.63 +316528,355.63,61.211 +316529,348,62.368 +316530,350.19,61.999 +316531,352.31,61.623 +316532,354.36,61.24 +316533,346.64,62.287 +316534,348.87,61.955 +316535,351.01,61.615 +316536,353.1,61.269 +316537,345.29,62.205 +316538,347.54,61.911 +316539,349.72,61.608 +316540,351.83,61.299 +316541,343.93,62.124 +316542,346.22,61.866 +316543,348.42,61.601 +316544,350.56,61.329 +316545,342.58,62.042 +316546,344.89,61.822 +316547,347.13,61.593 +316548,349.28,61.359 +316549,341.23,61.959 +316550,343.57,61.777 +316551,345.83,61.586 +316552,348.01,61.389 +316553,339.88,61.877 +316554,342.25,61.732 +316555,344.53,61.579 +316556,346.73,61.419 +316557,338.53,61.794 +316558,340.93,61.687 +316559,343.23,61.572 +316560,345.45,61.45 +316561,337.18,61.711 +316562,339.61,61.642 +316563,341.93,61.565 +316564,344.17,61.481 +316565,335.84,61.628 +316566,338.29,61.597 +316567,340.64,61.558 +316568,342.89,61.511 +316569,334.49,61.545 +316570,336.97,61.552 +316571,339.34,61.551 +316572,341.61,61.542 +316573,333.15,61.462 +316574,335.65,61.507 +316575,338.04,61.544 +316576,340.33,61.573 +316577,331.81,61.378 +316578,334.33,61.462 +316579,336.73,61.537 +316580,339.04,61.603 +316581,330.47,61.295 +316582,333.01,61.417 +316583,335.43,61.53 +316584,337.75,61.634 +316585,329.14,61.212 +316586,331.7,61.372 +316587,334.13,61.523 +316588,336.46,61.665 +316589,327.8,61.128 +316590,330.38,61.327 +316591,332.83,61.515 +316592,335.17,61.695 +316593,326.47,61.045 +316594,329.06,61.282 +316595,331.52,61.508 +316596,333.88,61.726 +316597,325.14,60.962 +316598,327.75,61.237 +316599,330.22,61.501 +316600,332.58,61.756 +316601,323.82,60.879 +316602,326.43,61.192 +316603,328.92,61.494 +316604,331.28,61.786 +316605,322.49,60.796 +316606,325.12,61.147 +316607,327.61,61.486 +316608,329.98,61.816 +316609,321.17,60.713 +316610,323.81,61.102 +316611,326.31,61.479 +316612,328.68,61.845 +316613,319.84,60.631 +316614,322.49,61.057 +316615,325,61.471 +316616,327.38,61.874 +316617,318.52,60.548 +316618,321.18,61.012 +316619,323.69,61.463 +316620,326.08,61.903 +316621,317.21,60.466 +316622,319.87,60.968 +316623,322.39,61.456 +316624,324.77,61.932 +316625,315.89,60.385 +316626,318.56,60.923 +316627,321.08,61.448 +316628,323.46,61.96 +316629,314.58,60.303 +316630,317.25,60.879 +316631,319.77,61.439 +316632,322.15,61.988 +316633,313.26,60.222 +316634,315.94,60.834 +316635,318.46,61.431 +316636,320.84,62.015 +316637,311.95,60.142 +316638,314.63,60.79 +316639,317.15,61.423 +316640,319.53,62.042 +316641,310.65,60.061 +316642,313.33,60.746 +316643,315.84,61.414 +316644,318.21,62.068 +316645,309.34,59.982 +316646,312.02,60.702 +316647,314.53,61.405 +316648,316.9,62.094 +316649,308.04,59.903 +316650,310.71,60.658 +316651,313.22,61.396 +316652,315.58,62.12 +316653,306.74,59.824 +316654,309.41,60.614 +316655,311.9,61.387 +316656,314.26,62.144 +316657,305.44,59.746 +316658,308.1,60.571 +316659,310.59,61.378 +316660,312.94,62.169 +316661,304.14,59.668 +316662,306.8,60.528 +316663,309.28,61.368 +316664,311.61,62.192 +316665,302.85,59.591 +316666,305.49,60.484 +316667,307.97,61.359 +316668,310.29,62.215 +316669,301.55,59.515 +316670,304.19,60.442 +316671,306.65,61.349 +316672,308.96,62.237 +316673,300.26,59.439 +316674,302.89,60.399 +316675,305.34,61.338 +316676,307.63,62.259 +316677,298.97,59.364 +316678,301.59,60.356 +316679,304.02,61.328 +316680,306.3,62.28 +316681,297.69,59.29 +316682,300.29,60.314 +316683,302.7,61.317 +316684,304.97,62.3 +316685,296.4,59.216 +316686,298.99,60.272 +316687,301.39,61.306 +316688,303.63,62.319 +316689,295.12,59.144 +316690,297.69,60.23 +316691,300.07,61.294 +316692,302.3,62.337 +316693,293.84,59.072 +316694,296.39,60.189 +316695,298.75,61.283 +316696,300.96,62.355 +316697,292.56,59.001 +316698,295.09,60.148 +316699,297.43,61.271 +316700,299.62,62.372 +316701,291.28,58.93 +316702,293.79,60.107 +316703,296.11,61.259 +316704,298.28,62.388 +316705,290.01,58.861 +316706,292.49,60.066 +316707,294.8,61.246 +316708,296.94,62.403 +316709,288.74,58.792 +316710,291.2,60.026 +316711,293.48,61.233 +316712,295.6,62.417 +316713,287.46,58.725 +316714,289.9,59.986 +316715,292.15,61.22 +316716,294.25,62.43 +316717,286.2,58.658 +316718,288.61,59.946 +316719,290.83,61.207 +316720,292.9,62.442 +316721,284.93,58.593 +316722,287.31,59.906 +316723,289.51,61.193 +316724,291.56,62.453 +316725,283.66,58.528 +316726,286.02,59.867 +316727,288.19,61.179 +316728,290.21,62.463 +316729,282.4,58.464 +316730,284.73,59.828 +316731,286.87,61.164 +316732,288.86,62.473 +316733,281.14,58.402 +316734,283.43,59.79 +316735,285.54,61.149 +316736,287.5,62.481 +316737,279.88,58.34 +316738,282.14,59.752 +316739,284.22,61.134 +316740,286.15,62.488 +316741,278.62,58.28 +316742,280.85,59.714 +316743,282.9,61.118 +316744,284.79,62.494 +316745,277.37,58.221 +316746,279.56,59.676 +316747,281.57,61.102 +316748,283.44,62.499 +316749,276.11,58.162 +316750,278.27,59.639 +316751,280.25,61.086 +316752,282.08,62.503 +316753,274.86,58.105 +316754,276.98,59.603 +316755,278.92,61.069 +316756,280.72,62.505 +316757,273.61,58.049 +316758,275.69,59.566 +316759,277.6,61.052 +316760,279.36,62.507 +316761,272.36,57.995 +316762,274.4,59.53 +316763,276.27,61.034 +316764,278,62.507 +316765,271.11,57.941 +316766,273.11,59.495 +316767,274.94,61.016 +316768,276.63,62.507 +316769,269.87,57.889 +316770,271.82,59.459 +316771,273.62,60.998 +316772,275.27,62.505 +316773,268.62,57.838 +316774,270.54,59.425 +316775,272.29,60.979 +316776,273.9,62.501 +316777,267.38,57.788 +316778,269.25,59.39 +316779,270.96,60.959 +316780,272.53,62.497 +316781,266.14,57.739 +316782,267.96,59.356 +316783,269.63,60.94 +316784,271.17,62.491 +316785,264.9,57.692 +316786,266.68,59.322 +316787,268.3,60.92 +316788,269.8,62.484 +316789,263.66,57.646 +316790,265.39,59.289 +316791,266.97,60.899 +316792,268.43,62.476 +316793,262.43,57.601 +316794,264.11,59.256 +316795,265.64,60.878 +316796,267.05,62.467 +316797,261.19,57.557 +316798,262.82,59.224 +316799,264.31,60.857 +316800,265.68,62.456 +316801,259.96,57.515 +316802,261.54,59.192 +316803,262.98,60.835 +316804,264.31,62.444 +316805,258.72,57.474 +316806,260.26,59.161 +316807,261.65,60.812 +316808,262.93,62.431 +316809,257.49,57.435 +316810,258.97,59.129 +316811,260.32,60.79 +316812,261.56,62.417 +316813,256.26,57.397 +316814,257.69,59.099 +316815,258.99,60.766 +316816,260.18,62.401 +316817,255.03,57.36 +316818,256.41,59.069 +316819,257.66,60.743 +316820,258.8,62.384 +316821,253.8,57.324 +316822,255.13,59.039 +316823,256.33,60.719 +316824,257.42,62.365 +316825,252.58,57.29 +316826,253.85,59.009 +316827,255,60.694 +316828,256.04,62.345 +316829,251.35,57.258 +316830,252.57,58.98 +316831,253.66,60.669 +316832,254.66,62.324 +316833,250.13,57.226 +316834,251.28,58.952 +316835,252.33,60.643 +316836,253.28,62.302 +316837,248.9,57.196 +316838,250,58.924 +316839,251,60.617 +316840,251.9,62.278 +316841,247.68,57.168 +316842,248.72,58.896 +316843,249.67,60.591 +316844,250.52,62.253 +316845,246.45,57.14 +316846,247.44,58.869 +316847,248.33,60.564 +316848,249.13,62.226 +316849,245.23,57.115 +316850,246.16,58.842 +316851,247,60.537 +316852,247.75,62.198 +316853,244.01,57.09 +316854,244.88,58.816 +316855,245.67,60.509 +316856,246.37,62.169 +316857,242.79,57.067 +316858,243.61,58.79 +316859,244.33,60.48 +316860,244.98,62.138 +316861,241.57,57.045 +316862,242.33,58.765 +316863,243,60.452 +316864,243.6,62.106 +316865,240.35,57.025 +316866,241.05,58.74 +316867,241.66,60.422 +316868,242.21,62.073 +316869,239.13,57.006 +316870,239.77,58.715 +316871,240.33,60.393 +316872,240.82,62.038 +316873,237.91,56.988 +316874,238.49,58.691 +316875,239,60.362 +316876,239.44,62.003 +316877,236.69,56.972 +316878,237.21,58.668 +316879,237.66,60.332 +316880,238.05,61.965 +316881,235.48,56.957 +316882,235.94,58.644 +316883,236.33,60.301 +316884,236.66,61.927 +316885,234.26,56.944 +316886,234.66,58.622 +316887,234.99,60.269 +316888,235.27,61.886 +316889,233.04,56.932 +316890,233.38,58.599 +316891,233.66,60.237 +316892,233.88,61.845 +316893,231.82,56.921 +316894,232.1,58.577 +316895,232.32,60.205 +316896,232.49,61.802 +316897,230.61,56.911 +316898,230.82,58.556 +316899,230.99,60.172 +316900,231.11,61.758 +316901,229.39,56.903 +316902,229.55,58.535 +316903,229.65,60.138 +316904,229.72,61.713 +316905,228.17,56.896 +316906,228.27,58.514 +316907,228.32,60.104 +316908,228.33,61.667 +316909,226.96,56.891 +316910,226.99,58.494 +316911,226.98,60.07 +316912,226.94,61.619 +316913,225.74,56.886 +316914,225.71,58.474 +316915,225.65,60.035 +316916,225.55,61.569 +316917,224.52,56.883 +316918,224.44,58.455 +316919,224.32,60 +316920,224.16,61.519 +316921,223.3,56.882 +316922,223.16,58.436 +316923,222.98,59.965 +316924,222.77,61.467 +316925,222.09,56.881 +316926,221.88,58.417 +316927,221.65,59.929 +316928,221.38,61.414 +316929,220.87,56.882 +316930,220.61,58.399 +316931,220.31,59.892 +316932,219.99,61.36 +316933,219.65,56.884 +316934,219.33,58.381 +316935,218.98,59.855 +316936,218.6,61.304 +316937,218.43,56.887 +316938,218.05,58.364 +316939,217.64,59.818 +316940,217.21,61.248 +316941,217.21,56.892 +316942,216.77,58.347 +316943,216.31,59.78 +316944,215.82,61.19 +316945,215.99,56.897 +316946,215.5,58.331 +316947,214.98,59.742 +316948,214.43,61.131 +316949,214.77,56.904 +316950,214.22,58.314 +316951,213.64,59.703 +316952,213.04,61.07 +316953,213.55,56.912 +316954,212.94,58.298 +316955,212.31,59.664 +316956,211.65,61.009 +316957,212.33,56.921 +316958,211.66,58.283 +316959,210.97,59.625 +316960,210.27,60.946 +316961,211.11,56.931 +316962,210.38,58.268 +316963,209.64,59.585 +316964,208.88,60.882 +316965,209.89,56.942 +316966,209.11,58.253 +316967,208.31,59.545 +316968,207.49,60.817 +316969,208.67,56.954 +316970,207.83,58.239 +316971,206.97,59.505 +316972,206.1,60.751 +316973,207.44,56.968 +316974,206.55,58.225 +316975,205.64,59.464 +316976,204.72,60.684 +316977,206.22,56.982 +316978,205.27,58.211 +316979,204.31,59.423 +316980,203.33,60.616 +316981,204.99,56.997 +316982,203.99,58.197 +316983,202.98,59.381 +316984,201.95,60.547 +316985,203.77,57.013 +316986,202.71,58.184 +316987,201.65,59.339 +316988,200.56,60.477 +316989,202.54,57.031 +316990,201.43,58.172 +316991,200.31,59.297 +316992,199.18,60.405 +316993,201.31,57.049 +316994,200.15,58.159 +316995,198.98,59.254 +316996,197.79,60.333 +316997,200.08,57.068 +316998,198.87,58.147 +316999,197.65,59.211 +317000,196.41,60.26 +317001,198.85,57.088 +317002,197.59,58.135 +317003,196.32,59.168 +317004,195.03,60.186 +317005,197.62,57.109 +317006,196.31,58.123 +317007,194.99,59.125 +317008,193.65,60.111 +317009,196.39,57.13 +317010,195.03,58.112 +317011,193.66,59.081 +317012,192.27,60.035 +317013,195.15,57.153 +317014,193.75,58.101 +317015,192.33,59.037 +317016,190.89,59.958 +317017,193.92,57.176 +317018,192.47,58.09 +317019,191,58.992 +317020,189.51,59.88 +317021,192.68,57.2 +317022,191.19,58.079 +317023,189.67,58.948 +317024,188.13,59.802 +317025,191.45,57.224 +317026,189.91,58.069 +317027,188.34,58.903 +317028,186.76,59.723 +317029,190.21,57.25 +317030,188.62,58.059 +317031,187.01,58.857 +317032,185.38,59.643 +317033,188.97,57.275 +317034,187.34,58.049 +317035,185.69,58.812 +317036,184.01,59.562 +317037,187.73,57.302 +317038,186.06,58.039 +317039,184.36,58.766 +317040,182.63,59.48 +317041,186.48,57.329 +317042,184.77,58.03 +317043,183.03,58.72 +317044,181.26,59.398 +317045,185.24,57.357 +317046,183.49,58.021 +317047,181.71,58.674 +317048,179.89,59.315 +317049,183.99,57.385 +317050,182.2,58.011 +317051,180.38,58.627 +317052,178.52,59.232 +317053,182.75,57.414 +317054,180.92,58.002 +317055,179.06,58.581 +317056,177.15,59.148 +317057,181.5,57.444 +317058,179.63,57.994 +317059,177.73,58.534 +317060,175.78,59.063 +317061,180.25,57.473 +317062,178.35,57.985 +317063,176.41,58.487 +317064,174.42,58.978 +317065,179,57.503 +317066,177.06,57.976 +317067,175.08,58.44 +317068,173.05,58.892 +317069,177.74,57.534 +317070,175.77,57.968 +317071,173.76,58.393 +317072,171.69,58.806 +317073,176.49,57.565 +317074,174.49,57.96 +317075,172.44,58.345 +317076,170.33,58.719 +317077,175.23,57.596 +317078,173.2,57.952 +317079,171.11,58.297 +317080,168.97,58.632 +317081,173.97,57.628 +317082,171.91,57.944 +317083,169.79,58.25 +317084,167.61,58.544 +317085,172.72,57.66 +317086,170.62,57.936 +317087,168.47,58.202 +317088,166.25,58.456 +317089,171.45,57.692 +317090,169.33,57.928 +317091,167.15,58.154 +317092,164.89,58.368 +317093,170.19,57.724 +317094,168.04,57.92 +317095,165.83,58.106 +317096,163.54,58.279 +317097,168.93,57.756 +317098,166.75,57.912 +317099,164.51,58.058 +317100,162.19,58.19 +317101,167.66,57.789 +317102,165.46,57.904 +317103,163.19,58.009 +317104,160.83,58.101 +317105,166.39,57.822 +317106,164.17,57.897 +317107,161.87,57.961 +317108,159.49,58.012 +317109,165.12,57.854 +317110,162.88,57.889 +317111,160.56,57.912 +317112,158.14,57.923 +317113,163.85,57.887 +317114,161.59,57.881 +317115,159.24,57.864 +317116,156.79,57.833 +317117,162.58,57.92 +317118,160.29,57.874 +317119,157.92,57.816 +317120,155.45,57.743 +317121,161.3,57.953 +317122,159,57.866 +317123,156.61,57.767 +317124,154.1,57.653 +317125,160.03,57.986 +317126,157.71,57.858 +317127,155.29,57.719 +317128,152.76,57.563 +317129,158.75,58.018 +317130,156.41,57.851 +317131,153.98,57.67 +317132,151.43,57.474 +317133,157.47,58.051 +317134,155.12,57.843 +317135,152.66,57.621 +317136,150.09,57.384 +317137,156.19,58.083 +317138,153.82,57.835 +317139,151.35,57.573 +317140,148.75,57.294 +317141,154.9,58.115 +317142,152.53,57.827 +317143,150.04,57.524 +317144,147.42,57.204 +317145,153.62,58.147 +317146,151.23,57.819 +317147,148.73,57.476 +317148,146.09,57.115 +317149,152.33,58.179 +317150,149.93,57.811 +317151,147.41,57.428 +317152,144.76,57.025 +317153,151.04,58.211 +317154,148.63,57.803 +317155,146.1,57.379 +317156,143.43,56.936 +317157,149.75,58.242 +317158,147.33,57.795 +317159,144.79,57.331 +317160,142.11,56.847 +317161,148.45,58.273 +317162,146.03,57.787 +317163,143.49,57.283 +317164,140.78,56.758 +317165,147.16,58.303 +317166,144.73,57.778 +317167,142.18,57.235 +317168,139.46,56.67 +317169,145.86,58.333 +317170,143.43,57.77 +317171,140.87,57.187 +317172,138.14,56.581 +317173,144.57,58.363 +317174,142.13,57.761 +317175,139.56,57.139 +317176,136.83,56.494 +317177,143.26,58.392 +317178,140.83,57.752 +317179,138.26,57.091 +317180,135.51,56.406 +317181,141.96,58.421 +317182,139.53,57.743 +317183,136.95,57.044 +317184,134.2,56.319 +317185,140.66,58.449 +317186,138.23,57.734 +317187,135.65,56.996 +317188,132.89,56.233 +317189,139.35,58.477 +317190,136.92,57.725 +317191,134.34,56.949 +317192,131.58,56.147 +317193,138.05,58.504 +317194,135.62,57.715 +317195,133.04,56.902 +317196,130.27,56.061 +317197,136.74,58.53 +317198,134.31,57.705 +317199,131.74,56.855 +317200,128.97,55.976 +317201,135.43,58.556 +317202,133.01,57.695 +317203,130.43,56.808 +317204,127.67,55.892 +317205,134.11,58.581 +317206,131.7,57.685 +317207,129.13,56.762 +317208,126.37,55.808 +317209,132.8,58.606 +317210,130.4,57.675 +317211,127.83,56.715 +317212,125.07,55.725 +317213,131.48,58.63 +317214,129.09,57.664 +317215,126.53,56.669 +317216,123.77,55.642 +317217,130.16,58.653 +317218,127.78,57.653 +317219,125.23,56.623 +317220,122.48,55.561 +317221,128.84,58.675 +317222,126.47,57.642 +317223,123.94,56.578 +317224,121.19,55.48 +317225,127.52,58.696 +317226,125.17,57.63 +317227,122.64,56.532 +317228,119.9,55.399 +317229,126.2,58.717 +317230,123.86,57.618 +317231,121.34,56.487 +317232,118.61,55.32 +317233,124.87,58.737 +317234,122.55,57.606 +317235,120.04,56.442 +317236,117.33,55.242 +317237,123.55,58.756 +317238,121.24,57.594 +317239,118.75,56.398 +317240,116.05,55.164 +317241,122.22,58.774 +317242,119.93,57.581 +317243,117.45,56.353 +317244,114.77,55.087 +317245,120.89,58.791 +317246,118.61,57.568 +317247,116.16,56.309 +317248,113.49,55.011 +317249,119.56,58.807 +317250,117.3,57.555 +317251,114.87,56.266 +317252,112.21,54.936 +317253,118.22,58.822 +317254,115.99,57.541 +317255,113.57,56.222 +317256,110.94,54.862 +317257,116.89,58.837 +317258,114.68,57.527 +317259,112.28,56.179 +317260,109.67,54.789 +317261,115.55,58.85 +317262,113.36,57.513 +317263,110.99,56.137 +317264,108.4,54.717 +317265,114.21,58.862 +317266,112.05,57.498 +317267,109.7,56.094 +317268,107.13,54.647 +317269,112.87,58.873 +317270,110.73,57.483 +317271,108.41,56.052 +317272,105.86,54.577 +317273,111.53,58.883 +317274,109.42,57.468 +317275,107.12,56.011 +317276,104.6,54.508 +317277,110.19,58.892 +317278,108.1,57.452 +317279,105.83,55.969 +317280,103.34,54.441 +317281,108.85,58.9 +317282,106.79,57.435 +317283,104.54,55.928 +317284,102.08,54.374 +317285,107.5,58.906 +317286,105.47,57.419 +317287,103.26,55.888 +317288,100.82,54.309 +317289,106.15,58.912 +317290,104.15,57.402 +317291,101.97,55.848 +317292,99.568,54.245 +317293,104.8,58.916 +317294,102.83,57.384 +317295,100.68,55.808 +317296,98.315,54.182 +317297,103.45,58.919 +317298,101.52,57.367 +317299,99.399,55.769 +317300,97.064,54.121 +317301,102.1,58.921 +317302,100.2,57.348 +317303,98.114,55.73 +317304,95.814,54.06 +317305,100.75,58.922 +317306,98.878,57.33 +317307,96.83,55.691 +317308,94.567,54.001 +317309,99.396,58.921 +317310,97.559,57.311 +317311,95.546,55.653 +317312,93.321,53.944 +317313,98.04,58.92 +317314,96.239,57.291 +317315,94.263,55.615 +317316,92.077,53.887 +317317,96.683,58.917 +317318,94.918,57.271 +317319,92.981,55.578 +317320,90.835,53.832 +317321,95.325,58.912 +317322,93.597,57.251 +317323,91.699,55.541 +317324,89.594,53.779 +317325,93.966,58.907 +317326,92.276,57.23 +317327,90.417,55.505 +317328,88.356,53.726 +317329,92.606,58.9 +317330,90.954,57.209 +317331,89.137,55.469 +317332,87.119,53.675 +317333,91.244,58.891 +317334,89.632,57.187 +317335,87.856,55.433 +317336,85.884,53.626 +317337,89.881,58.882 +317338,88.309,57.165 +317339,86.577,55.398 +317340,84.65,53.578 +317341,88.517,58.871 +317342,86.986,57.142 +317343,85.298,55.363 +317344,83.418,53.531 +317345,87.152,58.858 +317346,85.663,57.119 +317347,84.019,55.329 +317348,82.187,53.486 +317349,85.786,58.844 +317350,84.339,57.095 +317351,82.741,55.296 +317352,80.958,53.442 +317353,84.418,58.829 +317354,83.015,57.071 +317355,81.463,55.262 +317356,79.73,53.4 +317357,83.05,58.813 +317358,81.691,57.046 +317359,80.186,55.23 +317360,78.504,53.359 +317361,81.681,58.795 +317362,80.367,57.021 +317363,78.909,55.197 +317364,77.279,53.319 +317365,80.31,58.776 +317366,79.042,56.996 +317367,77.633,55.166 +317368,76.056,53.281 +317369,78.939,58.755 +317370,77.716,56.97 +317371,76.357,55.134 +317372,74.833,53.245 +317373,77.567,58.733 +317374,76.391,56.943 +317375,75.081,55.104 +317376,73.612,53.21 +317377,76.194,58.709 +317378,75.065,56.916 +317379,73.806,55.073 +317380,72.393,53.177 +317381,74.82,58.684 +317382,73.739,56.889 +317383,72.531,55.043 +317384,71.174,53.145 +317385,73.446,58.658 +317386,72.413,56.861 +317387,71.257,55.014 +317388,69.956,53.114 +317389,72.07,58.63 +317390,71.086,56.832 +317391,69.983,54.985 +317392,68.739,53.086 +317393,70.694,58.601 +317394,69.759,56.803 +317395,68.71,54.957 +317396,67.524,53.058 +317397,69.317,58.57 +317398,68.432,56.774 +317399,67.436,54.929 +317400,66.309,53.032 +317401,67.94,58.538 +317402,67.105,56.744 +317403,66.163,54.901 +317404,65.095,53.008 +317405,66.561,58.504 +317406,65.778,56.713 +317407,64.891,54.875 +317408,63.882,52.985 +317409,65.183,58.469 +317410,64.45,56.682 +317411,63.618,54.848 +317412,62.67,52.964 +317413,63.803,58.432 +317414,63.122,56.651 +317415,62.346,54.822 +317416,61.458,52.944 +317417,62.423,58.394 +317418,61.794,56.619 +317419,61.074,54.797 +317420,60.247,52.926 +317421,61.043,58.355 +317422,60.466,56.586 +317423,59.803,54.772 +317424,59.037,52.909 +317425,59.662,58.314 +317426,59.138,56.553 +317427,58.531,54.747 +317428,57.827,52.894 +317429,58.28,58.272 +317430,57.81,56.52 +317431,57.26,54.723 +317432,56.618,52.88 +317433,56.899,58.228 +317434,56.482,56.486 +317435,55.989,54.7 +317436,55.409,52.867 +317437,55.516,58.183 +317438,55.153,56.452 +317439,54.718,54.677 +317440,54.2,52.857 +317441,54.134,58.137 +317442,53.825,56.417 +317443,53.448,54.654 +317444,52.992,52.847 +317445,52.751,58.089 +317446,52.496,56.381 +317447,52.177,54.632 +317448,51.784,52.839 +317449,51.368,58.039 +317450,51.168,56.345 +317451,50.907,54.61 +317452,50.577,52.833 +317453,49.984,57.989 +317454,49.839,56.309 +317455,49.637,54.589 +317456,49.369,52.828 +317457,48.601,57.937 +317458,48.511,56.272 +317459,48.367,54.569 +317460,48.162,52.824 +317461,47.217,57.883 +317462,47.182,56.235 +317463,47.097,54.548 +317464,46.955,52.822 +317465,45.833,57.828 +317466,45.853,56.197 +317467,45.827,54.529 +317468,45.747,52.821 +317469,44.449,57.772 +317470,44.525,56.159 +317471,44.557,54.509 +317472,44.54,52.821 +317473,43.065,57.714 +317474,43.196,56.12 +317475,43.287,54.49 +317476,43.333,52.823 +317477,41.681,57.656 +317478,41.868,56.081 +317479,42.017,54.472 +317480,42.125,52.827 +317481,40.297,57.595 +317482,40.539,56.042 +317483,40.747,54.454 +317484,40.917,52.831 +317485,38.913,57.534 +317486,39.211,56.002 +317487,39.478,54.436 +317488,39.709,52.837 +317489,37.529,57.471 +317490,37.883,55.961 +317491,38.208,54.419 +317492,38.501,52.844 +317493,36.146,57.407 +317494,36.555,55.92 +317495,36.938,54.402 +317496,37.292,52.853 +317497,34.762,57.342 +317498,35.227,55.879 +317499,35.668,54.386 +317500,36.083,52.862 +317501,33.379,57.275 +317502,33.899,55.837 +317503,34.398,54.37 +317504,34.873,52.873 +317505,31.996,57.207 +317506,32.571,55.795 +317507,33.128,54.355 +317508,33.663,52.885 +317509,30.613,57.138 +317510,31.244,55.753 +317511,31.858,54.34 +317512,32.453,52.899 +317513,29.23,57.068 +317514,29.917,55.71 +317515,30.587,54.325 +317516,31.241,52.913 +317517,27.848,56.996 +317518,28.59,55.667 +317519,29.317,54.311 +317520,30.03,52.929 +317521,26.466,56.924 +317522,27.263,55.623 +317523,28.046,54.297 +317524,28.817,52.946 +317525,25.085,56.85 +317526,25.936,55.579 +317527,26.776,54.283 +317528,27.604,52.964 +317529,23.704,56.775 +317530,24.61,55.534 +317531,25.505,54.27 +317532,26.389,52.982 +317533,22.324,56.699 +317534,23.284,55.489 +317535,24.234,54.257 +317536,25.174,53.002 +317537,20.944,56.622 +317538,21.958,55.444 +317539,22.962,54.244 +317540,23.959,53.023 +317541,19.565,56.544 +317542,20.632,55.399 +317543,21.691,54.232 +317544,22.742,53.045 +317545,18.186,56.465 +317546,19.307,55.353 +317547,20.419,54.22 +317548,21.524,53.068 +317549,16.809,56.385 +317550,17.982,55.307 +317551,19.147,54.209 +317552,20.305,53.092 +317553,15.431,56.304 +317554,16.657,55.26 +317555,17.875,54.197 +317556,19.085,53.117 +317557,14.055,56.222 +317558,15.333,55.213 +317559,16.602,54.187 +317560,17.864,53.143 +317561,12.679,56.139 +317562,14.009,55.166 +317563,15.329,54.176 +317564,16.642,53.169 +317565,11.304,56.055 +317566,12.685,55.119 +317567,14.056,54.165 +317568,15.419,53.196 +317569,9.9304,55.97 +317570,11.362,55.071 +317571,12.783,54.155 +317572,14.195,53.225 +317573,8.5573,55.884 +317574,10.039,55.023 +317575,11.509,54.145 +317576,12.969,53.253 +317577,7.1851,55.798 +317578,8.7168,54.975 +317579,10.235,54.136 +317580,11.742,53.283 +317581,5.8139,55.71 +317582,7.3948,54.926 +317583,8.9607,54.126 +317584,10.514,53.313 +317585,4.4437,55.622 +317586,6.0732,54.877 +317587,7.686,54.117 +317588,9.284,53.344 +317589,3.0746,55.533 +317590,4.7521,54.828 +317591,6.4108,54.108 +317592,8.053,53.376 +317593,1.7066,55.444 +317594,3.4314,54.779 +317595,5.1353,54.1 +317596,6.8206,53.408 +317597,0.33963,55.354 +317598,2.1112,54.729 +317599,3.8594,54.091 +317600,5.5868,53.441 +317601,358.97,55.263 +317602,0.79144,54.68 +317603,2.583,54.083 +317604,4.3515,53.474 +317605,357.61,55.171 +317606,359.47,54.63 +317607,1.3063,54.075 +317608,3.1147,53.508 +317609,356.25,55.079 +317610,358.15,54.58 +317611,0.029125,54.067 +317612,1.8764,53.542 +317613,354.88,54.987 +317614,356.84,54.529 +317615,358.75,54.059 +317616,0.63652,53.577 +317617,353.52,54.893 +317618,355.52,54.479 +317619,357.47,54.051 +317620,359.4,53.612 +317621,352.16,54.8 +317622,354.2,54.428 +317623,356.19,54.044 +317624,358.15,53.648 +317625,350.81,54.706 +317626,352.88,54.378 +317627,354.92,54.036 +317628,356.91,53.684 +317629,349.45,54.611 +317630,351.57,54.327 +317631,353.64,54.029 +317632,355.66,53.72 +317633,348.09,54.516 +317634,350.25,54.276 +317635,352.36,54.022 +317636,354.41,53.756 +317637,346.74,54.421 +317638,348.94,54.225 +317639,351.08,54.015 +317640,353.16,53.793 +317641,345.39,54.325 +317642,347.62,54.174 +317643,349.8,54.008 +317644,351.91,53.83 +317645,344.04,54.229 +317646,346.31,54.122 +317647,348.51,54.001 +317648,350.66,53.867 +317649,342.69,54.133 +317650,345,54.071 +317651,347.23,53.994 +317652,349.4,53.904 +317653,341.34,54.036 +317654,343.68,54.02 +317655,345.95,53.987 +317656,348.15,53.941 +317657,340,53.94 +317658,342.37,53.968 +317659,344.67,53.98 +317660,346.89,53.978 +317661,338.65,53.843 +317662,341.06,53.917 +317663,343.38,53.973 +317664,345.63,54.016 +317665,337.31,53.746 +317666,339.75,53.865 +317667,342.1,53.967 +317668,344.37,54.053 +317669,335.97,53.649 +317670,338.44,53.814 +317671,340.81,53.96 +317672,343.1,54.09 +317673,334.63,53.552 +317674,337.13,53.762 +317675,339.53,53.953 +317676,341.84,54.128 +317677,333.29,53.455 +317678,335.82,53.711 +317679,338.24,53.946 +317680,340.57,54.165 +317681,331.96,53.358 +317682,334.51,53.659 +317683,336.96,53.939 +317684,339.3,54.202 +317685,330.62,53.261 +317686,333.21,53.608 +317687,335.67,53.932 +317688,338.03,54.238 +317689,329.29,53.164 +317690,331.9,53.556 +317691,334.38,53.925 +317692,336.76,54.275 +317693,327.96,53.067 +317694,330.59,53.505 +317695,333.1,53.918 +317696,335.49,54.311 +317697,326.64,52.971 +317698,329.29,53.453 +317699,331.81,53.911 +317700,334.21,54.347 +317701,325.31,52.875 +317702,327.98,53.402 +317703,330.52,53.904 +317704,332.93,54.383 +317705,323.99,52.779 +317706,326.68,53.351 +317707,329.23,53.897 +317708,331.65,54.419 +317709,322.67,52.683 +317710,325.38,53.3 +317711,327.94,53.889 +317712,330.37,54.454 +317713,321.35,52.587 +317714,324.08,53.249 +317715,326.65,53.882 +317716,329.09,54.488 +317717,320.03,52.492 +317718,322.77,53.198 +317719,325.36,53.874 +317720,327.8,54.522 +317721,318.71,52.397 +317722,321.47,53.148 +317723,324.06,53.866 +317724,326.51,54.556 +317725,317.4,52.303 +317726,320.17,53.097 +317727,322.77,53.858 +317728,325.22,54.589 +317729,316.09,52.209 +317730,318.87,53.047 +317731,321.48,53.85 +317732,323.93,54.622 +317733,314.78,52.116 +317734,317.58,52.997 +317735,320.18,53.841 +317736,322.64,54.654 +317737,313.47,52.023 +317738,316.28,52.947 +317739,318.89,53.833 +317740,321.34,54.686 +317741,312.17,51.931 +317742,314.98,52.897 +317743,317.6,53.824 +317744,320.05,54.717 +317745,310.87,51.84 +317746,313.68,52.848 +317747,316.3,53.815 +317748,318.75,54.747 +317749,309.57,51.749 +317750,312.39,52.798 +317751,315,53.806 +317752,317.45,54.776 +317753,308.27,51.659 +317754,311.09,52.749 +317755,313.71,53.796 +317756,316.15,54.805 +317757,306.97,51.569 +317758,309.8,52.701 +317759,312.41,53.787 +317760,314.84,54.833 +317761,305.68,51.48 +317762,308.51,52.652 +317763,311.11,53.777 +317764,313.54,54.86 +317765,304.39,51.393 +317766,307.21,52.604 +317767,309.81,53.767 +317768,312.23,54.887 +317769,303.1,51.305 +317770,305.92,52.556 +317771,308.51,53.756 +317772,310.92,54.912 +317773,301.81,51.219 +317774,304.63,52.508 +317775,307.22,53.745 +317776,309.61,54.937 +317777,300.53,51.134 +317778,303.34,52.461 +317779,305.92,53.734 +317780,308.3,54.961 +317781,299.25,51.05 +317782,302.05,52.413 +317783,304.61,53.723 +317784,306.98,54.984 +317785,297.97,50.966 +317786,300.76,52.367 +317787,303.31,53.711 +317788,305.67,55.006 +317789,296.69,50.884 +317790,299.47,52.32 +317791,302.01,53.699 +317792,304.35,55.027 +317793,295.41,50.802 +317794,298.19,52.274 +317795,300.71,53.687 +317796,303.03,55.047 +317797,294.14,50.722 +317798,296.9,52.228 +317799,299.41,53.674 +317800,301.71,55.066 +317801,292.87,50.643 +317802,295.61,52.183 +317803,298.1,53.661 +317804,300.39,55.084 +317805,291.6,50.565 +317806,294.33,52.138 +317807,296.8,53.647 +317808,299.06,55.101 +317809,290.34,50.488 +317810,293.04,52.093 +317811,295.49,53.634 +317812,297.74,55.117 +317813,289.07,50.412 +317814,291.76,52.049 +317815,294.19,53.619 +317816,296.41,55.132 +317817,287.81,50.338 +317818,290.48,52.005 +317819,292.88,53.605 +317820,295.08,55.145 +317821,286.55,50.264 +317822,289.19,51.962 +317823,291.58,53.59 +317824,293.75,55.157 +317825,285.29,50.192 +317826,287.91,51.919 +317827,290.27,53.575 +317828,292.42,55.169 +317829,284.04,50.121 +317830,286.63,51.876 +317831,288.96,53.559 +317832,291.08,55.179 +317833,282.79,50.052 +317834,285.35,51.834 +317835,287.66,53.543 +317836,289.75,55.187 +317837,281.53,49.984 +317838,284.07,51.792 +317839,286.35,53.526 +317840,288.41,55.195 +317841,280.29,49.917 +317842,282.79,51.751 +317843,285.04,53.509 +317844,287.07,55.201 +317845,279.04,49.852 +317846,281.52,51.71 +317847,283.73,53.491 +317848,285.73,55.206 +317849,277.79,49.788 +317850,280.24,51.669 +317851,282.42,53.474 +317852,284.39,55.21 +317853,276.55,49.726 +317854,278.96,51.63 +317855,281.11,53.455 +317856,283.05,55.212 +317857,275.31,49.665 +317858,277.69,51.59 +317859,279.8,53.436 +317860,281.7,55.213 +317861,274.07,49.605 +317862,276.41,51.551 +317863,278.49,53.417 +317864,280.36,55.213 +317865,272.84,49.547 +317866,275.13,51.513 +317867,277.18,53.397 +317868,279.01,55.211 +317869,271.6,49.491 +317870,273.86,51.475 +317871,275.86,53.377 +317872,277.67,55.208 +317873,270.37,49.436 +317874,272.59,51.437 +317875,274.55,53.357 +317876,276.32,55.204 +317877,269.14,49.383 +317878,271.31,51.4 +317879,273.24,53.335 +317880,274.97,55.198 +317881,267.91,49.331 +317882,270.04,51.364 +317883,271.93,53.314 +317884,273.61,55.19 +317885,266.68,49.281 +317886,268.77,51.328 +317887,270.61,53.292 +317888,272.26,55.182 +317889,265.46,49.232 +317890,267.5,51.292 +317891,269.3,53.269 +317892,270.91,55.171 +317893,264.23,49.185 +317894,266.23,51.257 +317895,267.99,53.246 +317896,269.55,55.16 +317897,263.01,49.14 +317898,264.96,51.223 +317899,266.67,53.222 +317900,268.2,55.147 +317901,261.79,49.096 +317902,263.69,51.189 +317903,265.36,53.198 +317904,266.84,55.132 +317905,260.57,49.054 +317906,262.42,51.156 +317907,264.04,53.173 +317908,265.48,55.116 +317909,259.35,49.014 +317910,261.15,51.123 +317911,262.72,53.148 +317912,264.12,55.098 +317913,258.14,48.975 +317914,259.88,51.091 +317915,261.41,53.123 +317916,262.76,55.079 +317917,256.92,48.938 +317918,258.61,51.059 +317919,260.09,53.096 +317920,261.4,55.059 +317921,255.71,48.903 +317922,257.35,51.028 +317923,258.78,53.07 +317924,260.04,55.037 +317925,254.5,48.869 +317926,256.08,50.998 +317927,257.46,53.043 +317928,258.68,55.013 +317929,253.29,48.837 +317930,254.81,50.968 +317931,256.14,53.015 +317932,257.31,54.988 +317933,252.08,48.807 +317934,253.55,50.938 +317935,254.83,52.987 +317936,255.95,54.961 +317937,250.87,48.778 +317938,252.28,50.909 +317939,253.51,52.958 +317940,254.58,54.933 +317941,249.67,48.751 +317942,251.02,50.881 +317943,252.19,52.928 +317944,253.22,54.903 +317945,248.46,48.726 +317946,249.75,50.853 +317947,250.87,52.899 +317948,251.85,54.872 +317949,247.26,48.703 +317950,248.49,50.826 +317951,249.55,52.868 +317952,250.48,54.839 +317953,246.05,48.681 +317954,247.23,50.799 +317955,248.24,52.837 +317956,249.11,54.804 +317957,244.85,48.661 +317958,245.96,50.773 +317959,246.92,52.806 +317960,247.74,54.768 +317961,243.65,48.643 +317962,244.7,50.747 +317963,245.6,52.774 +317964,246.38,54.731 +317965,242.45,48.626 +317966,243.44,50.722 +317967,244.28,52.742 +317968,245.01,54.692 +317969,241.25,48.611 +317970,242.17,50.698 +317971,242.96,52.709 +317972,243.63,54.651 +317973,240.05,48.598 +317974,240.91,50.674 +317975,241.64,52.675 +317976,242.26,54.609 +317977,238.85,48.586 +317978,239.65,50.65 +317979,240.32,52.641 +317980,240.89,54.565 +317981,237.65,48.577 +317982,238.39,50.628 +317983,239,52.607 +317984,239.52,54.52 +317985,236.45,48.568 +317986,237.13,50.605 +317987,237.68,52.572 +317988,238.15,54.473 +317989,235.26,48.562 +317990,235.86,50.584 +317991,236.36,52.536 +317992,236.77,54.425 +317993,234.06,48.557 +317994,234.6,50.562 +317995,235.04,52.5 +317996,235.4,54.375 +317997,232.86,48.553 +317998,233.34,50.542 +317999,233.73,52.463 +318000,234.03,54.324 +318001,231.67,48.552 +318002,232.08,50.522 +318003,232.41,52.426 +318004,232.65,54.271 +318005,230.47,48.551 +318006,230.82,50.502 +318007,231.09,52.389 +318008,231.28,54.217 +318009,229.27,48.553 +318010,229.56,50.483 +318011,229.77,52.351 +318012,229.91,54.161 +318013,228.08,48.556 +318014,228.3,50.464 +318015,228.45,52.312 +318016,228.53,54.104 +318017,226.88,48.56 +318018,227.04,50.446 +318019,227.13,52.273 +318020,227.16,54.045 +318021,225.69,48.566 +318022,225.78,50.429 +318023,225.81,52.234 +318024,225.78,53.985 +318025,224.49,48.574 +318026,224.52,50.412 +318027,224.49,52.194 +318028,224.41,53.924 +318029,223.3,48.583 +318030,223.26,50.395 +318031,223.17,52.153 +318032,223.03,53.861 +318033,222.1,48.593 +318034,222,50.379 +318035,221.85,52.112 +318036,221.66,53.796 +318037,220.9,48.605 +318038,220.74,50.363 +318039,220.53,52.071 +318040,220.29,53.73 +318041,219.71,48.619 +318042,219.48,50.348 +318043,219.21,52.029 +318044,218.91,53.663 +318045,218.51,48.634 +318046,218.22,50.334 +318047,217.89,51.987 +318048,217.54,53.595 +318049,217.31,48.65 +318050,216.96,50.32 +318051,216.57,51.944 +318052,216.16,53.525 +318053,216.11,48.667 +318054,215.7,50.306 +318055,215.25,51.901 +318056,214.79,53.453 +318057,214.92,48.686 +318058,214.44,50.293 +318059,213.94,51.857 +318060,213.41,53.381 +318061,213.72,48.706 +318062,213.18,50.28 +318063,212.62,51.813 +318064,212.04,53.307 +318065,212.52,48.728 +318066,211.92,50.267 +318067,211.3,51.768 +318068,210.67,53.232 +318069,211.32,48.75 +318070,210.66,50.255 +318071,209.98,51.724 +318072,209.3,53.155 +318073,210.12,48.774 +318074,209.4,50.244 +318075,208.66,51.678 +318076,207.92,53.078 +318077,208.91,48.799 +318078,208.14,50.233 +318079,207.35,51.633 +318080,206.55,52.999 +318081,207.71,48.825 +318082,206.87,50.222 +318083,206.03,51.587 +318084,205.18,52.919 +318085,206.51,48.853 +318086,205.61,50.212 +318087,204.71,51.54 +318088,203.81,52.838 +318089,205.3,48.881 +318090,204.35,50.202 +318091,203.4,51.493 +318092,202.44,52.755 +318093,204.1,48.911 +318094,203.09,50.192 +318095,202.08,51.446 +318096,201.07,52.672 +318097,202.89,48.941 +318098,201.83,50.183 +318099,200.76,51.399 +318100,199.7,52.587 +318101,201.69,48.973 +318102,200.57,50.174 +318103,199.45,51.351 +318104,198.33,52.502 +318105,200.48,49.005 +318106,199.3,50.166 +318107,198.13,51.303 +318108,196.96,52.415 +318109,199.27,49.039 +318110,198.04,50.158 +318111,196.82,51.254 +318112,195.6,52.327 +318113,198.06,49.073 +318114,196.78,50.15 +318115,195.5,51.205 +318116,194.23,52.238 +318117,196.85,49.108 +318118,195.52,50.143 +318119,194.19,51.156 +318120,192.86,52.149 +318121,195.63,49.145 +318122,194.25,50.135 +318123,192.88,51.107 +318124,191.5,52.058 +318125,194.42,49.181 +318126,192.99,50.129 +318127,191.56,51.057 +318128,190.14,51.966 +318129,193.2,49.219 +318130,191.73,50.122 +318131,190.25,51.007 +318132,188.77,51.874 +318133,191.98,49.258 +318134,190.46,50.116 +318135,188.94,50.957 +318136,187.41,51.781 +318137,190.77,49.297 +318138,189.2,50.11 +318139,187.62,50.907 +318140,186.05,51.687 +318141,189.55,49.336 +318142,187.93,50.104 +318143,186.31,50.856 +318144,184.69,51.592 +318145,188.33,49.377 +318146,186.67,50.098 +318147,185,50.805 +318148,183.33,51.496 +318149,187.1,49.418 +318150,185.4,50.093 +318151,183.69,50.754 +318152,181.97,51.4 +318153,185.88,49.459 +318154,184.13,50.088 +318155,182.38,50.702 +318156,180.62,51.302 +318157,184.65,49.502 +318158,182.87,50.083 +318159,181.07,50.651 +318160,179.26,51.205 +318161,183.42,49.544 +318162,181.6,50.078 +318163,179.76,50.599 +318164,177.91,51.106 +318165,182.2,49.587 +318166,180.33,50.073 +318167,178.45,50.547 +318168,176.56,51.007 +318169,180.96,49.63 +318170,179.07,50.069 +318171,177.15,50.495 +318172,175.2,50.908 +318173,179.73,49.674 +318174,177.8,50.065 +318175,175.84,50.443 +318176,173.85,50.808 +318177,178.5,49.718 +318178,176.53,50.061 +318179,174.53,50.391 +318180,172.5,50.707 +318181,177.26,49.763 +318182,175.26,50.057 +318183,173.22,50.338 +318184,171.16,50.606 +318185,176.02,49.807 +318186,173.99,50.053 +318187,171.92,50.286 +318188,169.81,50.505 +318189,174.79,49.852 +318190,172.72,50.049 +318191,170.61,50.233 +318192,168.47,50.403 +318193,173.54,49.897 +318194,171.45,50.045 +318195,169.31,50.18 +318196,167.12,50.301 +318197,172.3,49.943 +318198,170.18,50.042 +318199,168.01,50.128 +318200,165.78,50.198 +318201,171.06,49.988 +318202,168.91,50.038 +318203,166.7,50.075 +318204,164.44,50.096 +318205,169.81,50.033 +318206,167.63,50.035 +318207,165.4,50.022 +318208,163.1,49.993 +318209,168.56,50.079 +318210,166.36,50.031 +318211,164.1,49.969 +318212,161.77,49.89 +318213,167.31,50.124 +318214,165.09,50.028 +318215,162.8,49.916 +318216,160.43,49.786 +318217,166.06,50.17 +318218,163.81,50.025 +318219,161.5,49.863 +318220,159.1,49.683 +318221,164.81,50.215 +318222,162.54,50.021 +318223,160.2,49.81 +318224,157.77,49.579 +318225,163.55,50.26 +318226,161.26,50.018 +318227,158.9,49.757 +318228,156.44,49.476 +318229,162.3,50.305 +318230,159.99,50.015 +318231,157.6,49.705 +318232,155.11,49.372 +318233,161.04,50.35 +318234,158.71,50.011 +318235,156.3,49.652 +318236,153.78,49.269 +318237,159.78,50.394 +318238,157.44,50.008 +318239,155,49.599 +318240,152.46,49.166 +318241,158.51,50.439 +318242,156.16,50.004 +318243,153.71,49.546 +318244,151.14,49.063 +318245,157.25,50.483 +318246,154.88,50.001 +318247,152.41,49.494 +318248,149.82,48.959 +318249,155.98,50.527 +318250,153.6,49.997 +318251,151.11,49.441 +318252,148.5,48.857 +318253,154.71,50.57 +318254,152.33,49.993 +318255,149.82,49.389 +318256,147.18,48.754 +318257,153.44,50.613 +318258,151.05,49.989 +318259,148.53,49.337 +318260,145.87,48.652 +318261,152.17,50.655 +318262,149.77,49.985 +318263,147.23,49.285 +318264,144.55,48.55 +318265,150.9,50.697 +318266,148.49,49.981 +318267,145.94,49.233 +318268,143.24,48.448 +318269,149.62,50.739 +318270,147.2,49.977 +318271,144.65,49.181 +318272,141.93,48.347 +318273,148.34,50.78 +318274,145.92,49.972 +318275,143.36,49.13 +318276,140.63,48.247 +318277,147.06,50.82 +318278,144.64,49.968 +318279,142.07,49.078 +318280,139.32,48.146 +318281,145.78,50.86 +318282,143.36,49.963 +318283,140.78,49.027 +318284,138.02,48.047 +318285,144.5,50.899 +318286,142.07,49.958 +318287,139.49,48.976 +318288,136.72,47.948 +318289,143.21,50.937 +318290,140.79,49.953 +318291,138.2,48.926 +318292,135.42,47.849 +318293,141.93,50.975 +318294,139.51,49.948 +318295,136.92,48.875 +318296,134.13,47.752 +318297,140.64,51.012 +318298,138.22,49.942 +318299,135.63,48.825 +318300,132.84,47.655 +318301,139.35,51.048 +318302,136.94,49.936 +318303,134.35,48.775 +318304,131.54,47.558 +318305,138.06,51.084 +318306,135.65,49.93 +318307,133.06,48.725 +318308,130.26,47.463 +318309,136.76,51.118 +318310,134.36,49.924 +318311,131.78,48.676 +318312,128.97,47.368 +318313,135.47,51.152 +318314,133.07,49.917 +318315,130.5,48.627 +318316,127.69,47.275 +318317,134.17,51.185 +318318,131.79,49.91 +318319,129.21,48.578 +318320,126.4,47.182 +318321,132.87,51.217 +318322,130.5,49.903 +318323,127.93,48.53 +318324,125.12,47.09 +318325,131.57,51.248 +318326,129.21,49.895 +318327,126.65,48.482 +318328,123.85,46.999 +318329,130.26,51.277 +318330,127.92,49.888 +318331,125.37,48.435 +318332,122.57,46.909 +318333,128.96,51.306 +318334,126.63,49.879 +318335,124.09,48.387 +318336,121.3,46.82 +318337,127.65,51.334 +318338,125.34,49.871 +318339,122.81,48.34 +318340,120.03,46.733 +318341,126.35,51.361 +318342,124.05,49.862 +318343,121.54,48.294 +318344,118.76,46.646 +318345,125.04,51.387 +318346,122.76,49.853 +318347,120.26,48.248 +318348,117.5,46.561 +318349,123.72,51.411 +318350,121.46,49.843 +318351,118.98,48.202 +318352,116.23,46.476 +318353,122.41,51.435 +318354,120.17,49.833 +318355,117.71,48.157 +318356,114.97,46.393 +318357,121.1,51.457 +318358,118.88,49.823 +318359,116.43,48.112 +318360,113.71,46.312 +318361,119.78,51.478 +318362,117.58,49.812 +318363,115.16,48.068 +318364,112.46,46.232 +318365,118.46,51.498 +318366,116.29,49.801 +318367,113.89,48.024 +318368,111.2,46.153 +318369,117.14,51.516 +318370,114.99,49.79 +318371,112.62,47.981 +318372,109.95,46.075 +318373,115.82,51.534 +318374,113.7,49.778 +318375,111.34,47.938 +318376,108.7,45.999 +318377,114.5,51.55 +318378,112.4,49.766 +318379,110.07,47.895 +318380,107.45,45.924 +318381,113.18,51.564 +318382,111.11,49.753 +318383,108.8,47.853 +318384,106.21,45.851 +318385,111.85,51.578 +318386,109.81,49.74 +318387,107.53,47.812 +318388,104.97,45.779 +318389,110.52,51.59 +318390,108.51,49.726 +318391,106.27,47.771 +318392,103.73,45.709 +318393,109.2,51.6 +318394,107.21,49.712 +318395,105,47.73 +318396,102.49,45.64 +318397,107.87,51.61 +318398,105.91,49.697 +318399,103.73,47.691 +318400,101.25,45.573 +318401,106.54,51.618 +318402,104.62,49.682 +318403,102.46,47.651 +318404,100.02,45.508 +318405,105.2,51.624 +318406,103.32,49.667 +318407,101.2,47.612 +318408,98.785,45.444 +318409,103.87,51.629 +318410,102.02,49.651 +318411,99.934,47.574 +318412,97.555,45.382 +318413,102.54,51.633 +318414,100.72,49.634 +318415,98.669,47.536 +318416,96.328,45.322 +318417,101.2,51.635 +318418,99.416,49.617 +318419,97.406,47.499 +318420,95.102,45.263 +318421,99.863,51.635 +318422,98.115,49.6 +318423,96.143,47.463 +318424,93.879,45.206 +318425,98.525,51.634 +318426,96.814,49.582 +318427,94.88,47.427 +318428,92.657,45.151 +318429,97.185,51.632 +318430,95.512,49.563 +318431,93.618,47.391 +318432,91.438,45.098 +318433,95.844,51.628 +318434,94.21,49.544 +318435,92.357,47.357 +318436,90.22,45.046 +318437,94.503,51.622 +318438,92.908,49.525 +318439,91.096,47.323 +318440,89.004,44.997 +318441,93.16,51.615 +318442,91.605,49.505 +318443,89.836,47.289 +318444,87.79,44.949 +318445,91.816,51.606 +318446,90.302,49.484 +318447,88.577,47.256 +318448,86.578,44.903 +318449,90.471,51.596 +318450,88.998,49.463 +318451,87.318,47.224 +318452,85.368,44.859 +318453,89.125,51.584 +318454,87.695,49.442 +318455,86.06,47.192 +318456,84.159,44.816 +318457,87.778,51.571 +318458,86.39,49.42 +318459,84.802,47.161 +318460,82.952,44.776 +318461,86.43,51.556 +318462,85.086,49.397 +318463,83.545,47.13 +318464,81.746,44.737 +318465,85.081,51.539 +318466,83.781,49.374 +318467,82.288,47.1 +318468,80.542,44.701 +318469,83.731,51.521 +318470,82.476,49.35 +318471,81.032,47.071 +318472,79.34,44.666 +318473,82.381,51.501 +318474,81.171,49.326 +318475,79.776,47.043 +318476,78.139,44.634 +318477,81.03,51.479 +318478,79.866,49.301 +318479,78.52,47.015 +318480,76.939,44.603 +318481,79.677,51.456 +318482,78.56,49.275 +318483,77.266,46.987 +318484,75.741,44.574 +318485,78.325,51.431 +318486,77.254,49.249 +318487,76.011,46.961 +318488,74.544,44.547 +318489,76.971,51.404 +318490,75.948,49.223 +318491,74.757,46.934 +318492,73.349,44.522 +318493,75.617,51.376 +318494,74.642,49.196 +318495,73.504,46.909 +318496,72.154,44.499 +318497,74.262,51.346 +318498,73.335,49.168 +318499,72.25,46.884 +318500,70.961,44.478 +318501,72.906,51.315 +318502,72.029,49.14 +318503,70.998,46.86 +318504,69.769,44.459 +318505,71.55,51.282 +318506,70.722,49.111 +318507,69.745,46.837 +318508,68.577,44.442 +318509,70.193,51.247 +318510,69.415,49.082 +318511,68.493,46.814 +318512,67.387,44.426 +318513,68.836,51.211 +318514,68.108,49.052 +318515,67.241,46.792 +318516,66.198,44.413 +318517,67.479,51.173 +318518,66.8,49.022 +318519,65.99,46.77 +318520,65.009,44.402 +318521,66.12,51.133 +318522,65.493,48.991 +318523,64.739,46.749 +318524,63.821,44.392 +318525,64.762,51.092 +318526,64.186,48.959 +318527,63.488,46.729 +318528,62.634,44.385 +318529,63.403,51.048 +318530,62.878,48.927 +318531,62.237,46.709 +318532,61.447,44.379 +318533,62.044,51.004 +318534,61.571,48.895 +318535,60.987,46.69 +318536,60.261,44.375 +318537,60.684,50.958 +318538,60.263,48.862 +318539,59.737,46.672 +318540,59.076,44.374 +318541,59.324,50.91 +318542,58.955,48.828 +318543,58.487,46.654 +318544,57.891,44.374 +318545,57.964,50.86 +318546,57.648,48.794 +318547,57.237,46.637 +318548,56.706,44.375 +318549,56.604,50.809 +318550,56.34,48.759 +318551,55.987,46.62 +318552,55.522,44.379 +318553,55.243,50.756 +318554,55.032,48.724 +318555,54.738,46.604 +318556,54.338,44.385 +318557,53.882,50.702 +318558,53.725,48.688 +318559,53.489,46.589 +318560,53.154,44.392 +318561,52.521,50.646 +318562,52.417,48.652 +318563,52.24,46.574 +318564,51.97,44.401 +318565,51.161,50.588 +318566,51.11,48.615 +318567,50.991,46.56 +318568,50.787,44.412 +318569,49.8,50.529 +318570,49.802,48.578 +318571,49.742,46.546 +318572,49.603,44.425 +318573,48.439,50.469 +318574,48.495,48.54 +318575,48.493,46.533 +318576,48.419,44.439 +318577,47.078,50.407 +318578,47.187,48.502 +318579,47.244,46.521 +318580,47.235,44.455 +318581,45.717,50.343 +318582,45.88,48.463 +318583,45.995,46.509 +318584,46.051,44.473 +318585,44.356,50.278 +318586,44.573,48.424 +318587,44.747,46.498 +318588,44.867,44.492 +318589,42.996,50.211 +318590,43.266,48.384 +318591,43.498,46.487 +318592,43.683,44.513 +318593,41.635,50.143 +318594,41.959,48.344 +318595,42.249,46.477 +318596,42.498,44.536 +318597,40.275,50.073 +318598,40.653,48.303 +318599,41,46.467 +318600,41.312,44.56 +318601,38.915,50.002 +318602,39.346,48.262 +318603,39.752,46.458 +318604,40.126,44.585 +318605,37.556,49.93 +318606,38.04,48.221 +318607,38.503,46.45 +318608,38.94,44.613 +318609,36.196,49.856 +318610,36.734,48.178 +318611,37.254,46.442 +318612,37.753,44.641 +318613,34.837,49.781 +318614,35.428,48.136 +318615,36.005,46.434 +318616,36.565,44.671 +318617,33.479,49.704 +318618,34.122,48.093 +318619,34.756,46.427 +318620,35.377,44.703 +318621,32.121,49.626 +318622,32.817,48.05 +318623,33.506,46.421 +318624,34.188,44.736 +318625,30.763,49.547 +318626,31.512,48.006 +318627,32.257,46.415 +318628,32.998,44.77 +318629,29.406,49.466 +318630,30.207,47.962 +318631,31.008,46.409 +318632,31.807,44.806 +318633,28.049,49.384 +318634,28.903,47.917 +318635,29.758,46.404 +318636,30.615,44.843 +318637,26.693,49.301 +318638,27.598,47.872 +318639,28.508,46.4 +318640,29.422,44.881 +318641,25.338,49.217 +318642,26.294,47.827 +318643,27.258,46.396 +318644,28.228,44.92 +318645,23.983,49.131 +318646,24.991,47.781 +318647,26.007,46.392 +318648,27.034,44.961 +318649,22.629,49.044 +318650,23.688,47.735 +318651,24.757,46.388 +318652,25.838,45.003 +318653,21.275,48.956 +318654,22.385,47.689 +318655,23.506,46.386 +318656,24.641,45.045 +318657,19.923,48.867 +318658,21.082,47.642 +318659,22.255,46.383 +318660,23.442,45.089 +318661,18.571,48.777 +318662,19.78,47.595 +318663,21.004,46.381 +318664,22.243,45.134 +318665,17.22,48.686 +318666,18.478,47.548 +318667,19.752,46.379 +318668,21.042,45.18 +318669,15.87,48.594 +318670,17.177,47.5 +318671,18.5,46.378 +318672,19.84,45.227 +318673,14.521,48.5 +318674,15.876,47.452 +318675,17.248,46.377 +318676,18.636,45.275 +318677,13.172,48.406 +318678,14.576,47.404 +318679,15.995,46.376 +318680,17.431,45.324 +318681,11.825,48.311 +318682,13.276,47.355 +318683,14.742,46.376 +318684,16.225,45.373 +318685,10.479,48.215 +318686,11.977,47.307 +318687,13.489,46.376 +318688,15.017,45.423 +318689,9.1333,48.118 +318690,10.677,47.258 +318691,12.235,46.376 +318692,13.808,45.474 +318693,7.7891,48.02 +318694,9.379,47.208 +318695,10.981,46.377 +318696,12.597,45.526 +318697,6.4461,47.921 +318698,8.081,47.159 +318699,9.7268,46.378 +318700,11.385,45.579 +318701,5.1042,47.822 +318702,6.7835,47.109 +318703,8.472,46.379 +318704,10.171,45.632 +318705,3.7635,47.722 +318706,5.4865,47.059 +318707,7.2168,46.38 +318708,8.9554,45.685 +318709,2.424,47.621 +318710,4.1901,47.009 +318711,5.9611,46.382 +318712,7.7381,45.74 +318713,1.0857,47.519 +318714,2.8942,46.959 +318715,4.705,46.384 +318716,6.5193,45.795 +318717,359.75,47.417 +318718,1.5988,46.909 +318719,3.4484,46.386 +318720,5.2987,45.85 +318721,358.41,47.314 +318722,0.3041,46.858 +318723,2.1914,46.388 +318724,4.0764,45.905 +318725,357.08,47.211 +318726,359.01,46.807 +318727,0.93399,46.391 +318728,2.8523,45.961 +318729,355.75,47.107 +318730,357.72,46.757 +318731,359.68,46.393 +318732,1.6265,46.018 +318733,354.41,47.002 +318734,356.42,46.706 +318735,358.42,46.396 +318736,0.39898,46.075 +318737,353.08,46.897 +318738,355.13,46.655 +318739,357.16,46.399 +318740,359.17,46.131 +318741,351.76,46.792 +318742,353.84,46.604 +318743,355.9,46.402 +318744,357.94,46.189 +318745,350.43,46.687 +318746,352.55,46.553 +318747,354.64,46.405 +318748,356.71,46.246 +318749,349.1,46.581 +318750,351.26,46.502 +318751,353.38,46.409 +318752,355.47,46.303 +318753,347.78,46.474 +318754,349.97,46.45 +318755,352.12,46.412 +318756,354.23,46.361 +318757,346.46,46.368 +318758,348.68,46.399 +318759,350.86,46.416 +318760,353,46.419 +318761,345.14,46.261 +318762,347.39,46.348 +318763,349.59,46.419 +318764,351.76,46.476 +318765,343.82,46.154 +318766,346.1,46.297 +318767,348.33,46.423 +318768,350.51,46.534 +318769,342.5,46.047 +318770,344.82,46.246 +318771,347.07,46.426 +318772,349.27,46.592 +318773,341.19,45.94 +318774,343.53,46.194 +318775,345.81,46.43 +318776,348.02,46.649 +318777,339.87,45.833 +318778,342.24,46.143 +318779,344.54,46.434 +318780,346.77,46.706 +318781,338.56,45.726 +318782,340.96,46.092 +318783,343.28,46.437 +318784,345.53,46.763 +318785,337.25,45.619 +318786,339.67,46.041 +318787,342.01,46.441 +318788,344.27,46.82 +318789,335.94,45.512 +318790,338.39,45.99 +318791,340.75,46.445 +318792,343.02,46.877 +318793,334.64,45.405 +318794,337.11,45.94 +318795,339.48,46.448 +318796,341.76,46.933 +318797,333.33,45.299 +318798,335.83,45.889 +318799,338.21,46.452 +318800,340.51,46.989 +318801,332.03,45.192 +318802,334.54,45.839 +318803,336.94,46.455 +318804,339.25,47.045 +318805,330.73,45.086 +318806,333.26,45.788 +318807,335.68,46.459 +318808,337.99,47.1 +318809,329.43,44.98 +318810,331.98,45.738 +318811,334.41,46.462 +318812,336.72,47.154 +318813,328.14,44.875 +318814,330.7,45.688 +318815,333.14,46.465 +318816,335.46,47.209 +318817,326.84,44.77 +318818,329.43,45.639 +318819,331.87,46.468 +318820,334.19,47.262 +318821,325.55,44.665 +318822,328.15,45.589 +318823,330.6,46.471 +318824,332.92,47.315 +318825,324.26,44.561 +318826,326.87,45.54 +318827,329.33,46.474 +318828,331.65,47.368 +318829,322.98,44.458 +318830,325.6,45.491 +318831,328.06,46.476 +318832,330.38,47.42 +318833,321.69,44.355 +318834,324.32,45.442 +318835,326.78,46.479 +318836,329.11,47.471 +318837,320.41,44.253 +318838,323.05,45.393 +318839,325.51,46.481 +318840,327.83,47.521 +318841,319.13,44.151 +318842,321.77,45.345 +318843,324.24,46.483 +318844,326.55,47.571 +318845,317.85,44.051 +318846,320.5,45.297 +318847,322.96,46.484 +318848,325.27,47.62 +318849,316.57,43.951 +318850,319.23,45.249 +318851,321.69,46.486 +318852,323.99,47.668 +318853,315.29,43.852 +318854,317.96,45.202 +318855,320.41,46.487 +318856,322.71,47.715 +318857,314.02,43.753 +318858,316.68,45.155 +318859,319.14,46.488 +318860,321.42,47.761 +318861,312.75,43.656 +318862,315.41,45.109 +318863,317.86,46.489 +318864,320.14,47.806 +318865,311.48,43.56 +318866,314.15,45.062 +318867,316.59,46.49 +318868,318.85,47.851 +318869,310.22,43.464 +318870,312.88,45.016 +318871,315.31,46.49 +318872,317.56,47.894 +318873,308.96,43.37 +318874,311.61,44.971 +318875,314.03,46.49 +318876,316.27,47.937 +318877,307.7,43.277 +318878,310.34,44.926 +318879,312.75,46.489 +318880,314.97,47.978 +318881,306.44,43.185 +318882,309.08,44.881 +318883,311.47,46.489 +318884,313.68,48.018 +318885,305.18,43.094 +318886,307.81,44.837 +318887,310.19,46.488 +318888,312.38,48.058 +318889,303.93,43.004 +318890,306.55,44.793 +318891,308.92,46.486 +318892,311.08,48.096 +318893,302.67,42.916 +318894,305.28,44.75 +318895,307.63,46.484 +318896,309.78,48.133 +318897,301.43,42.829 +318898,304.02,44.707 +318899,306.35,46.482 +318900,308.48,48.168 +318901,300.18,42.743 +318902,302.76,44.665 +318903,305.07,46.48 +318904,307.18,48.203 +318905,298.93,42.659 +318906,301.5,44.623 +318907,303.79,46.477 +318908,305.87,48.236 +318909,297.69,42.576 +318910,300.24,44.582 +318911,302.51,46.474 +318912,304.56,48.268 +318913,296.45,42.494 +318914,298.98,44.541 +318915,301.22,46.47 +318916,303.26,48.299 +318917,295.21,42.414 +318918,297.72,44.501 +318919,299.94,46.466 +318920,301.95,48.328 +318921,293.98,42.336 +318922,296.46,44.461 +318923,298.66,46.461 +318924,300.64,48.356 +318925,292.74,42.259 +318926,295.2,44.422 +318927,297.37,46.456 +318928,299.32,48.383 +318929,291.51,42.184 +318930,293.94,44.383 +318931,296.09,46.451 +318932,298.01,48.408 +318933,290.28,42.111 +318934,292.69,44.345 +318935,294.8,46.445 +318936,296.69,48.432 +318937,289.06,42.039 +318938,291.43,44.308 +318939,293.52,46.439 +318940,295.38,48.454 +318941,287.83,41.969 +318942,290.18,44.271 +318943,292.23,46.432 +318944,294.06,48.475 +318945,286.61,41.901 +318946,288.92,44.235 +318947,290.94,46.425 +318948,292.74,48.495 +318949,285.39,41.834 +318950,287.67,44.199 +318951,289.66,46.417 +318952,291.42,48.513 +318953,284.17,41.77 +318954,286.42,44.164 +318955,288.37,46.409 +318956,290.1,48.529 +318957,282.95,41.707 +318958,285.16,44.13 +318959,287.08,46.4 +318960,288.78,48.544 +318961,281.74,41.646 +318962,283.91,44.096 +318963,285.79,46.391 +318964,287.45,48.557 +318965,280.53,41.587 +318966,282.66,44.063 +318967,284.5,46.382 +318968,286.13,48.569 +318969,279.32,41.53 +318970,281.41,44.03 +318971,283.22,46.371 +318972,284.8,48.58 +318973,278.11,41.475 +318974,280.16,43.999 +318975,281.93,46.361 +318976,283.47,48.588 +318977,276.9,41.422 +318978,278.91,43.968 +318979,280.64,46.349 +318980,282.15,48.595 +318981,275.7,41.371 +318982,277.66,43.937 +318983,279.35,46.338 +318984,280.82,48.601 +318985,274.49,41.322 +318986,276.42,43.907 +318987,278.06,46.325 +318988,279.49,48.605 +318989,273.29,41.275 +318990,275.17,43.878 +318991,276.76,46.312 +318992,278.16,48.607 +318993,272.09,41.23 +318994,273.92,43.85 +318995,275.47,46.299 +318996,276.82,48.607 +318997,270.9,41.188 +318998,272.67,43.822 +318999,274.18,46.285 +319000,275.49,48.606 +319001,269.7,41.147 +319002,271.43,43.795 +319003,272.89,46.271 +319004,274.16,48.603 +319005,268.51,41.109 +319006,270.18,43.769 +319007,271.6,46.256 +319008,272.82,48.599 +319009,267.31,41.072 +319010,268.94,43.743 +319011,270.31,46.24 +319012,271.49,48.592 +319013,266.12,41.038 +319014,267.69,43.718 +319015,269.01,46.224 +319016,270.15,48.584 +319017,264.93,41.006 +319018,266.45,43.694 +319019,267.72,46.207 +319020,268.81,48.575 +319021,263.74,40.976 +319022,265.21,43.671 +319023,266.43,46.19 +319024,267.47,48.563 +319025,262.56,40.948 +319026,263.96,43.648 +319027,265.14,46.172 +319028,266.14,48.55 +319029,261.37,40.923 +319030,262.72,43.626 +319031,263.84,46.154 +319032,264.8,48.535 +319033,260.19,40.9 +319034,261.48,43.605 +319035,262.55,46.135 +319036,263.46,48.519 +319037,259,40.879 +319038,260.24,43.584 +319039,261.26,46.115 +319040,262.12,48.5 +319041,257.82,40.86 +319042,258.99,43.565 +319043,259.96,46.095 +319044,260.77,48.48 +319045,256.64,40.843 +319046,257.75,43.546 +319047,258.67,46.074 +319048,259.43,48.458 +319049,255.46,40.829 +319050,256.51,43.527 +319051,257.37,46.053 +319052,258.09,48.435 +319053,254.28,40.816 +319054,255.27,43.51 +319055,256.08,46.031 +319056,256.75,48.41 +319057,253.1,40.806 +319058,254.03,43.493 +319059,254.79,46.009 +319060,255.41,48.382 +319061,251.92,40.798 +319062,252.79,43.477 +319063,253.49,45.986 +319064,254.06,48.354 +319065,250.74,40.793 +319066,251.55,43.461 +319067,252.2,45.962 +319068,252.72,48.323 +319069,249.57,40.789 +319070,250.31,43.447 +319071,250.9,45.938 +319072,251.38,48.291 +319073,248.39,40.788 +319074,249.07,43.433 +319075,249.61,45.913 +319076,250.03,48.257 +319077,247.21,40.789 +319078,247.83,43.42 +319079,248.31,45.888 +319080,248.69,48.221 +319081,246.04,40.792 +319082,246.6,43.407 +319083,247.02,45.862 +319084,247.34,48.183 +319085,244.86,40.797 +319086,245.36,43.395 +319087,245.72,45.836 +319088,246,48.144 +319089,243.69,40.804 +319090,244.12,43.384 +319091,244.43,45.809 +319092,244.65,48.103 +319093,242.52,40.813 +319094,242.88,43.374 +319095,243.14,45.781 +319096,243.31,48.06 +319097,241.34,40.825 +319098,241.64,43.364 +319099,241.84,45.753 +319100,241.96,48.016 +319101,240.17,40.838 +319102,240.4,43.355 +319103,240.55,45.725 +319104,240.62,47.97 +319105,238.99,40.854 +319106,239.17,43.347 +319107,239.25,45.696 +319108,239.27,47.922 +319109,237.82,40.872 +319110,237.93,43.339 +319111,237.96,45.666 +319112,237.93,47.872 +319113,236.64,40.891 +319114,236.69,43.333 +319115,236.66,45.636 +319116,236.58,47.821 +319117,235.47,40.913 +319118,235.45,43.326 +319119,235.37,45.605 +319120,235.24,47.768 +319121,234.3,40.936 +319122,234.21,43.321 +319123,234.08,45.574 +319124,233.89,47.714 +319125,233.12,40.962 +319126,232.98,43.316 +319127,232.78,45.542 +319128,232.55,47.658 +319129,231.95,40.989 +319130,231.74,43.312 +319131,231.49,45.51 +319132,231.2,47.6 +319133,230.77,41.019 +319134,230.5,43.308 +319135,230.19,45.477 +319136,229.86,47.541 +319137,229.59,41.05 +319138,229.26,43.305 +319139,228.9,45.443 +319140,228.52,47.48 +319141,228.42,41.083 +319142,228.02,43.303 +319143,227.61,45.41 +319144,227.17,47.417 +319145,227.24,41.118 +319146,226.79,43.301 +319147,226.31,45.375 +319148,225.83,47.353 +319149,226.06,41.154 +319150,225.55,43.3 +319151,225.02,45.341 +319152,224.49,47.287 +319153,224.88,41.192 +319154,224.31,43.3 +319155,223.73,45.305 +319156,223.14,47.22 +319157,223.7,41.232 +319158,223.07,43.3 +319159,222.44,45.27 +319160,221.8,47.152 +319161,222.52,41.274 +319162,221.83,43.301 +319163,221.15,45.233 +319164,220.46,47.082 +319165,221.34,41.317 +319166,220.59,43.303 +319167,219.85,45.197 +319168,219.12,47.01 +319169,220.16,41.362 +319170,219.36,43.305 +319171,218.56,45.16 +319172,217.78,46.937 +319173,218.98,41.408 +319174,218.12,43.307 +319175,217.27,45.122 +319176,216.44,46.862 +319177,217.79,41.456 +319178,216.88,43.31 +319179,215.98,45.084 +319180,215.1,46.787 +319181,216.61,41.505 +319182,215.64,43.314 +319183,214.69,45.046 +319184,213.76,46.709 +319185,215.42,41.556 +319186,214.4,43.318 +319187,213.4,45.007 +319188,212.43,46.631 +319189,214.23,41.608 +319190,213.16,43.323 +319191,212.11,44.968 +319192,211.09,46.551 +319193,213.04,41.662 +319194,211.92,43.328 +319195,210.82,44.929 +319196,209.75,46.47 +319197,211.85,41.716 +319198,210.68,43.334 +319199,209.53,44.889 +319200,208.42,46.387 +319201,210.66,41.772 +319202,209.43,43.34 +319203,208.24,44.849 +319204,207.08,46.303 +319205,209.47,41.83 +319206,208.19,43.346 +319207,206.96,44.808 +319208,205.75,46.218 +319209,208.27,41.888 +319210,206.95,43.354 +319211,205.67,44.767 +319212,204.42,46.132 +319213,207.08,41.948 +319214,205.71,43.361 +319215,204.38,44.726 +319216,203.09,46.045 +319217,205.88,42.008 +319218,204.47,43.369 +319219,203.09,44.684 +319220,201.76,45.957 +319221,204.68,42.07 +319222,203.22,43.378 +319223,201.81,44.643 +319224,200.43,45.867 +319225,203.48,42.133 +319226,201.98,43.386 +319227,200.52,44.6 +319228,199.1,45.776 +319229,202.28,42.196 +319230,200.74,43.396 +319231,199.24,44.558 +319232,197.77,45.685 +319233,201.07,42.261 +319234,199.49,43.405 +319235,197.95,44.515 +319236,196.44,45.592 +319237,199.87,42.326 +319238,198.25,43.415 +319239,196.67,44.472 +319240,195.12,45.498 +319241,198.66,42.393 +319242,197,43.426 +319243,195.38,44.429 +319244,193.8,45.404 +319245,197.45,42.46 +319246,195.76,43.436 +319247,194.1,44.386 +319248,192.47,45.308 +319249,196.24,42.528 +319250,194.51,43.447 +319251,192.82,44.342 +319252,191.15,45.212 +319253,195.03,42.596 +319254,193.27,43.459 +319255,191.53,44.298 +319256,189.83,45.115 +319257,193.82,42.665 +319258,192.02,43.47 +319259,190.25,44.254 +319260,188.51,45.017 +319261,192.6,42.735 +319262,190.77,43.482 +319263,188.97,44.21 +319264,187.2,44.918 +319265,191.38,42.805 +319266,189.52,43.494 +319267,187.69,44.166 +319268,185.88,44.819 +319269,190.16,42.876 +319270,188.28,43.507 +319271,186.41,44.121 +319272,184.57,44.719 +319273,188.94,42.947 +319274,187.03,43.519 +319275,185.13,44.076 +319276,183.25,44.618 +319277,187.72,43.019 +319278,185.78,43.532 +319279,183.85,44.032 +319280,181.94,44.516 +319281,186.49,43.091 +319282,184.53,43.545 +319283,182.57,43.987 +319284,180.63,44.414 +319285,185.27,43.163 +319286,183.28,43.559 +319287,181.3,43.942 +319288,179.32,44.312 +319289,184.04,43.235 +319290,182.03,43.572 +319291,180.02,43.897 +319292,178.02,44.209 +319293,182.81,43.308 +319294,180.78,43.586 +319295,178.74,43.852 +319296,176.71,44.106 +319297,181.58,43.381 +319298,179.52,43.6 +319299,177.47,43.807 +319300,175.41,44.002 +319301,180.34,43.454 +319302,178.27,43.613 +319303,176.19,43.762 +319304,174.11,43.898 +319305,179.1,43.527 +319306,177.02,43.628 +319307,174.92,43.716 +319308,172.8,43.793 +319309,177.87,43.601 +319310,175.76,43.642 +319311,173.65,43.671 +319312,171.51,43.688 +319313,176.63,43.674 +319314,174.51,43.656 +319315,172.37,43.626 +319316,170.21,43.583 +319317,175.38,43.747 +319318,173.26,43.67 +319319,171.1,43.581 +319320,168.91,43.478 +319321,174.14,43.82 +319322,172,43.685 +319323,169.83,43.536 +319324,167.62,43.373 +319325,172.89,43.893 +319326,170.74,43.699 +319327,168.56,43.491 +319328,166.33,43.268 +319329,171.65,43.966 +319330,169.49,43.713 +319331,167.29,43.446 +319332,165.04,43.162 +319333,170.4,44.038 +319334,168.23,43.728 +319335,166.02,43.401 +319336,163.75,43.057 +319337,169.14,44.111 +319338,166.97,43.742 +319339,164.75,43.356 +319340,162.47,42.951 +319341,167.89,44.183 +319342,165.72,43.757 +319343,163.48,43.312 +319344,161.18,42.846 +319345,166.63,44.254 +319346,164.46,43.771 +319347,162.21,43.267 +319348,159.9,42.741 +319349,165.38,44.326 +319350,163.2,43.786 +319351,160.95,43.223 +319352,158.62,42.636 +319353,164.12,44.396 +319354,161.94,43.8 +319355,159.68,43.179 +319356,157.34,42.532 +319357,162.86,44.467 +319358,160.68,43.814 +319359,158.42,43.135 +319360,156.07,42.427 +319361,161.59,44.537 +319362,159.41,43.828 +319363,157.15,43.091 +319364,154.79,42.323 +319365,160.33,44.606 +319366,158.15,43.842 +319367,155.89,43.048 +319368,153.52,42.219 +319369,159.06,44.675 +319370,156.89,43.856 +319371,154.63,43.005 +319372,152.25,42.116 +319373,157.79,44.743 +319374,155.63,43.87 +319375,153.36,42.962 +319376,150.98,42.014 +319377,156.52,44.81 +319378,154.36,43.884 +319379,152.1,42.919 +319380,149.72,41.911 +319381,155.25,44.877 +319382,153.1,43.897 +319383,150.84,42.876 +319384,148.45,41.81 +319385,153.97,44.943 +319386,151.84,43.911 +319387,149.58,42.834 +319388,147.19,41.709 +319389,152.7,45.008 +319390,150.57,43.924 +319391,148.32,42.792 +319392,145.93,41.609 +319393,151.42,45.072 +319394,149.3,43.937 +319395,147.06,42.751 +319396,144.68,41.509 +319397,150.14,45.136 +319398,148.04,43.949 +319399,145.81,42.71 +319400,143.42,41.41 +319401,148.86,45.198 +319402,146.77,43.962 +319403,144.55,42.669 +319404,142.17,41.312 +319405,147.58,45.26 +319406,145.5,43.974 +319407,143.29,42.628 +319408,140.92,41.215 +319409,146.29,45.321 +319410,144.24,43.986 +319411,142.04,42.588 +319412,139.67,41.119 +319413,145.01,45.38 +319414,142.97,43.998 +319415,140.78,42.549 +319416,138.42,41.024 +319417,143.72,45.439 +319418,141.7,44.009 +319419,139.53,42.509 +319420,137.18,40.93 +319421,142.43,45.497 +319422,140.43,44.021 +319423,138.27,42.471 +319424,135.94,40.837 +319425,141.14,45.553 +319426,139.16,44.031 +319427,137.02,42.432 +319428,134.7,40.745 +319429,139.85,45.609 +319430,137.89,44.042 +319431,135.77,42.395 +319432,133.46,40.654 +319433,138.55,45.663 +319434,136.62,44.052 +319435,134.52,42.357 +319436,132.22,40.565 +319437,137.26,45.716 +319438,135.34,44.062 +319439,133.27,42.32 +319440,130.99,40.477 +319441,135.96,45.768 +319442,134.07,44.072 +319443,132.02,42.284 +319444,129.76,40.39 +319445,134.66,45.819 +319446,132.8,44.081 +319447,130.77,42.248 +319448,128.53,40.304 +319449,133.36,45.868 +319450,131.52,44.09 +319451,129.52,42.213 +319452,127.3,40.22 +319453,132.06,45.916 +319454,130.25,44.098 +319455,128.27,42.178 +319456,126.08,40.137 +319457,130.76,45.963 +319458,128.98,44.106 +319459,127.02,42.143 +319460,124.86,40.056 +319461,129.45,46.008 +319462,127.7,44.114 +319463,125.78,42.11 +319464,123.63,39.977 +319465,128.15,46.053 +319466,126.43,44.121 +319467,124.53,42.077 +319468,122.42,39.899 +319469,126.84,46.095 +319470,125.15,44.128 +319471,123.29,42.044 +319472,121.2,39.822 +319473,125.53,46.136 +319474,123.87,44.134 +319475,122.04,42.012 +319476,119.98,39.748 +319477,124.22,46.176 +319478,122.6,44.14 +319479,120.8,41.981 +319480,118.77,39.675 +319481,122.91,46.215 +319482,121.32,44.146 +319483,119.56,41.95 +319484,117.56,39.604 +319485,121.6,46.251 +319486,120.04,44.151 +319487,118.31,41.92 +319488,116.35,39.534 +319489,120.29,46.287 +319490,118.77,44.155 +319491,117.07,41.891 +319492,115.15,39.467 +319493,118.97,46.32 +319494,117.49,44.159 +319495,115.83,41.862 +319496,113.94,39.401 +319497,117.66,46.353 +319498,116.21,44.163 +319499,114.59,41.834 +319500,112.74,39.337 +319501,116.34,46.383 +319502,114.93,44.166 +319503,113.35,41.807 +319504,111.54,39.275 +319505,115.03,46.412 +319506,113.65,44.169 +319507,112.11,41.78 +319508,110.34,39.215 +319509,113.71,46.44 +319510,112.37,44.171 +319511,110.87,41.754 +319512,109.14,39.157 +319513,112.39,46.466 +319514,111.09,44.172 +319515,109.63,41.729 +319516,107.95,39.102 +319517,111.07,46.49 +319518,109.81,44.174 +319519,108.39,41.704 +319520,106.75,39.048 +319521,109.75,46.512 +319522,108.53,44.174 +319523,107.15,41.68 +319524,105.56,38.996 +319525,108.43,46.533 +319526,107.25,44.174 +319527,105.92,41.657 +319528,104.37,38.947 +319529,107.1,46.553 +319530,105.97,44.174 +319531,104.68,41.635 +319532,103.18,38.9 +319533,105.78,46.57 +319534,104.69,44.173 +319535,103.44,41.613 +319536,101.99,38.855 +319537,104.45,46.586 +319538,103.4,44.171 +319539,102.21,41.592 +319540,100.8,38.812 +319541,103.13,46.6 +319542,102.12,44.169 +319543,100.97,41.572 +319544,99.62,38.771 +319545,101.8,46.612 +319546,100.84,44.166 +319547,99.735,41.553 +319548,98.436,38.733 +319549,100.48,46.623 +319550,99.557,44.163 +319551,98.5,41.534 +319552,97.254,38.697 +319553,99.151,46.632 +319554,98.275,44.159 +319555,97.266,41.516 +319556,96.073,38.663 +319557,97.823,46.639 +319558,96.992,44.155 +319559,96.032,41.499 +319560,94.893,38.631 +319561,96.495,46.644 +319562,95.708,44.15 +319563,94.798,41.483 +319564,93.714,38.602 +319565,95.166,46.647 +319566,94.425,44.144 +319567,93.564,41.467 +319568,92.537,38.575 +319569,93.837,46.649 +319570,93.142,44.138 +319571,92.331,41.453 +319572,91.36,38.551 +319573,92.507,46.649 +319574,91.858,44.131 +319575,91.098,41.439 +319576,90.184,38.529 +319577,91.177,46.647 +319578,90.574,44.124 +319579,89.866,41.426 +319580,89.009,38.509 +319581,89.846,46.643 +319582,89.29,44.116 +319583,88.634,41.413 +319584,87.835,38.492 +319585,88.515,46.638 +319586,88.006,44.108 +319587,87.401,41.402 +319588,86.662,38.477 +319589,87.184,46.631 +319590,86.722,44.099 +319591,86.17,41.391 +319592,85.49,38.465 +319593,85.852,46.622 +319594,85.438,44.089 +319595,84.938,41.381 +319596,84.318,38.455 +319597,84.52,46.611 +319598,84.154,44.079 +319599,83.707,41.372 +319600,83.146,38.447 +319601,83.188,46.598 +319602,82.87,44.068 +319603,82.475,41.364 +319604,81.975,38.442 +319605,81.856,46.583 +319606,81.585,44.057 +319607,81.244,41.356 +319608,80.805,38.439 +319609,80.524,46.567 +319610,80.301,44.045 +319611,80.013,41.349 +319612,79.634,38.439 +319613,79.191,46.549 +319614,79.017,44.033 +319615,78.782,41.343 +319616,78.464,38.44 +319617,77.859,46.529 +319618,77.732,44.02 +319619,77.551,41.338 +319620,77.295,38.445 +319621,76.526,46.507 +319622,76.448,44.006 +319623,76.321,41.334 +319624,76.125,38.452 +319625,75.194,46.483 +319626,75.164,43.992 +319627,75.09,41.33 +319628,74.956,38.461 +319629,73.861,46.458 +319630,73.879,43.977 +319631,73.859,41.328 +319632,73.786,38.472 +319633,72.529,46.431 +319634,72.595,43.961 +319635,72.629,41.326 +319636,72.617,38.486 +319637,71.196,46.402 +319638,71.311,43.945 +319639,71.398,41.325 +319640,71.447,38.502 +319641,69.864,46.371 +319642,70.027,43.929 +319643,70.168,41.324 +319644,70.277,38.52 +319645,68.532,46.339 +319646,68.743,43.912 +319647,68.937,41.325 +319648,69.107,38.541 +319649,67.2,46.304 +319650,67.459,43.894 +319651,67.706,41.326 +319652,67.937,38.564 +319653,65.869,46.268 +319654,66.175,43.876 +319655,66.476,41.328 +319656,66.766,38.589 +319657,64.538,46.23 +319658,64.892,43.857 +319659,65.245,41.33 +319660,65.594,38.617 +319661,63.207,46.191 +319662,63.608,43.838 +319663,64.014,41.334 +319664,64.423,38.647 +319665,61.876,46.15 +319666,62.325,43.818 +319667,62.783,41.338 +319668,63.25,38.679 +319669,60.546,46.107 +319670,61.042,43.798 +319671,61.552,41.343 +319672,62.077,38.713 +319673,59.216,46.062 +319674,59.759,43.777 +319675,60.32,41.349 +319676,60.903,38.749 +319677,57.887,46.016 +319678,58.476,43.755 +319679,59.089,41.355 +319680,59.729,38.787 +319681,56.558,45.968 +319682,57.194,43.733 +319683,57.857,41.362 +319684,58.553,38.827 +319685,55.229,45.918 +319686,55.912,43.711 +319687,56.625,41.37 +319688,57.377,38.87 +319689,53.902,45.867 +319690,54.63,43.688 +319691,55.393,41.378 +319692,56.2,38.914 +319693,52.575,45.814 +319694,53.348,43.664 +319695,54.161,41.388 +319696,55.022,38.961 +319697,51.248,45.759 +319698,52.067,43.64 +319699,52.928,41.398 +319700,53.842,39.009 +319701,49.922,45.703 +319702,50.786,43.616 +319703,51.695,41.408 +319704,52.662,39.059 +319705,48.597,45.646 +319706,49.505,43.591 +319707,50.462,41.419 +319708,51.48,39.111 +319709,47.273,45.587 +319710,48.225,43.565 +319711,49.228,41.431 +319712,50.297,39.165 +319713,45.949,45.526 +319714,46.944,43.54 +319715,47.995,41.444 +319716,49.113,39.221 +319717,44.626,45.464 +319718,45.665,43.513 +319719,46.76,41.457 +319720,47.928,39.278 +319721,43.304,45.4 +319722,44.385,43.486 +319723,45.526,41.471 +319724,46.741,39.337 +319725,41.983,45.335 +319726,43.106,43.459 +319727,44.291,41.485 +319728,45.553,39.398 +319729,40.663,45.268 +319730,41.827,43.432 +319731,43.056,41.5 +319732,44.364,39.46 +319733,39.344,45.2 +319734,40.549,43.404 +319735,41.82,41.516 +319736,43.173,39.524 +319737,38.026,45.131 +319738,39.271,43.375 +319739,40.584,41.532 +319740,41.98,39.59 +319741,36.709,45.06 +319742,37.994,43.346 +319743,39.348,41.549 +319744,40.786,39.657 +319745,35.392,44.988 +319746,36.717,43.317 +319747,38.111,41.566 +319748,39.59,39.725 +319749,34.077,44.915 +319750,35.44,43.288 +319751,36.874,41.584 +319752,38.393,39.795 +319753,32.763,44.84 +319754,34.164,43.258 +319755,35.636,41.603 +319756,37.194,39.866 +319757,31.451,44.764 +319758,32.888,43.227 +319759,34.398,41.621 +319760,35.993,39.939 +319761,30.139,44.687 +319762,31.613,43.197 +319763,33.159,41.641 +319764,34.79,40.013 +319765,28.828,44.609 +319766,30.338,43.166 +319767,31.92,41.661 +319768,33.586,40.088 +319769,27.519,44.529 +319770,29.064,43.134 +319771,30.68,41.681 +319772,32.38,40.164 +319773,26.211,44.449 +319774,27.79,43.103 +319775,29.44,41.702 +319776,31.172,40.241 +319777,24.905,44.367 +319778,26.517,43.071 +319779,28.199,41.723 +319780,29.963,40.319 +319781,23.599,44.284 +319782,25.244,43.039 +319783,26.958,41.745 +319784,28.751,40.398 +319785,22.295,44.2 +319786,23.972,43.007 +319787,25.716,41.767 +319788,27.538,40.479 +319789,20.993,44.116 +319790,22.7,42.974 +319791,24.474,41.79 +319792,26.323,40.56 +319793,19.692,44.03 +319794,21.429,42.941 +319795,23.231,41.813 +319796,25.106,40.642 +319797,18.392,43.943 +319798,20.158,42.908 +319799,21.987,41.836 +319800,23.887,40.725 +319801,17.094,43.856 +319802,18.888,42.875 +319803,20.743,41.859 +319804,22.666,40.808 +319805,15.797,43.767 +319806,17.619,42.841 +319807,19.499,41.883 +319808,21.443,40.893 +319809,14.502,43.678 +319810,16.35,42.807 +319811,18.254,41.908 +319812,20.218,40.978 +319813,13.208,43.588 +319814,15.082,42.774 +319815,17.008,41.932 +319816,18.991,41.064 +319817,11.916,43.497 +319818,13.814,42.74 +319819,15.762,41.957 +319820,17.762,41.15 +319821,10.626,43.406 +319822,12.547,42.705 +319823,14.515,41.982 +319824,16.532,41.236 +319825,9.3372,43.314 +319826,11.281,42.671 +319827,13.267,42.008 +319828,15.299,41.324 +319829,8.05,43.221 +319830,10.015,42.637 +319831,12.019,42.034 +319832,14.064,41.411 +319833,6.7646,43.128 +319834,8.7499,42.602 +319835,10.77,42.06 +319836,12.828,41.499 +319837,5.4809,43.034 +319838,7.4853,42.568 +319839,9.5207,42.086 +319840,11.589,41.588 +319841,4.1989,42.94 +319842,6.2213,42.533 +319843,8.2707,42.112 +319844,10.348,41.676 +319845,2.9186,42.845 +319846,4.958,42.499 +319847,7.02,42.139 +319848,9.1057,41.765 +319849,1.6402,42.75 +319850,3.6954,42.464 +319851,5.7688,42.165 +319852,7.8611,41.854 +319853,0.36353,42.654 +319854,2.4334,42.429 +319855,4.5169,42.192 +319856,6.6146,41.943 +319857,359.09,42.558 +319858,1.172,42.395 +319859,3.2643,42.219 +319860,5.366,42.032 +319861,357.82,42.462 +319862,359.91,42.36 +319863,2.0112,42.246 +319864,4.1156,42.122 +319865,356.54,42.366 +319866,358.65,42.325 +319867,0.75736,42.273 +319868,2.8631,42.211 +319869,355.28,42.269 +319870,357.39,42.291 +319871,359.5,42.301 +319872,1.6087,42.3 +319873,354.01,42.173 +319874,356.13,42.256 +319875,358.25,42.328 +319876,0.35244,42.389 +319877,352.74,42.076 +319878,354.88,42.222 +319879,356.99,42.356 +319880,359.09,42.478 +319881,351.48,41.979 +319882,353.62,42.187 +319883,355.74,42.383 +319884,357.83,42.567 +319885,350.22,41.882 +319886,352.36,42.153 +319887,354.48,42.411 +319888,356.57,42.655 +319889,348.96,41.786 +319890,351.1,42.119 +319891,353.22,42.438 +319892,355.31,42.743 +319893,347.7,41.689 +319894,349.85,42.085 +319895,351.96,42.466 +319896,354.04,42.831 +319897,346.44,41.593 +319898,348.59,42.051 +319899,350.7,42.493 +319900,352.77,42.919 +319901,345.19,41.496 +319902,347.34,42.018 +319903,349.44,42.52 +319904,351.51,43.006 +319905,343.94,41.4 +319906,346.09,41.984 +319907,348.18,42.548 +319908,350.23,43.092 +319909,342.69,41.305 +319910,344.83,41.951 +319911,346.92,42.575 +319912,348.96,43.178 +319913,341.44,41.209 +319914,343.58,41.918 +319915,345.66,42.602 +319916,347.69,43.264 +319917,340.2,41.114 +319918,342.33,41.885 +319919,344.4,42.63 +319920,346.41,43.349 +319921,338.95,41.02 +319922,341.08,41.853 +319923,343.14,42.657 +319924,345.13,43.433 +319925,337.71,40.925 +319926,339.83,41.82 +319927,341.87,42.683 +319928,343.85,43.517 +319929,336.47,40.832 +319930,338.58,41.788 +319931,340.61,42.71 +319932,342.57,43.6 +319933,335.23,40.739 +319934,337.33,41.757 +319935,339.35,42.737 +319936,341.29,43.682 +319937,334,40.647 +319938,336.08,41.725 +319939,338.08,42.763 +319940,340,43.763 +319941,332.76,40.555 +319942,334.84,41.694 +319943,336.82,42.79 +319944,338.71,43.844 +319945,331.53,40.464 +319946,333.59,41.664 +319947,335.55,42.816 +319948,337.43,43.923 +319949,330.3,40.374 +319950,332.34,41.633 +319951,334.28,42.841 +319952,336.14,44.002 +319953,329.08,40.285 +319954,331.1,41.604 +319955,333.02,42.867 +319956,334.84,44.08 +319957,327.85,40.197 +319958,329.85,41.574 +319959,331.75,42.892 +319960,333.55,44.157 +319961,326.63,40.11 +319962,328.61,41.545 +319963,330.48,42.917 +319964,332.26,44.233 +319965,325.41,40.023 +319966,327.37,41.516 +319967,329.21,42.942 +319968,330.96,44.308 +319969,324.19,39.938 +319970,326.12,41.488 +319971,327.94,42.967 +319972,329.66,44.382 +319973,322.97,39.854 +319974,324.88,41.46 +319975,326.67,42.991 +319976,328.36,44.454 +319977,321.75,39.771 +319978,323.64,41.433 +319979,325.4,43.015 +319980,327.06,44.526 +319981,320.54,39.689 +319982,322.4,41.406 +319983,324.13,43.039 +319984,325.76,44.596 +319985,319.33,39.608 +319986,321.16,41.38 +319987,322.86,43.062 +319988,324.46,44.665 +319989,318.12,39.529 +319990,319.92,41.354 +319991,321.59,43.085 +319992,323.16,44.733 +319993,316.91,39.451 +319994,318.68,41.329 +319995,320.31,43.108 +319996,321.85,44.8 +319997,315.7,39.375 +319998,317.44,41.304 +319999,319.04,43.13 +320000,320.54,44.866 +320001,314.5,39.3 +320002,316.2,41.28 +320003,317.77,43.152 +320004,319.23,44.93 +320005,313.3,39.226 +320006,314.96,41.256 +320007,316.49,43.173 +320008,317.93,44.992 +320009,312.1,39.154 +320010,313.72,41.233 +320011,315.22,43.195 +320012,316.62,45.054 +320013,310.9,39.083 +320014,312.49,41.211 +320015,313.95,43.215 +320016,315.3,45.114 +320017,309.7,39.014 +320018,311.25,41.189 +320019,312.67,43.236 +320020,313.99,45.172 +320021,308.5,38.947 +320022,310.01,41.168 +320023,311.4,43.255 +320024,312.68,45.23 +320025,307.31,38.882 +320026,308.78,41.147 +320027,310.12,43.275 +320028,311.36,45.285 +320029,306.12,38.818 +320030,307.54,41.127 +320031,308.84,43.294 +320032,310.05,45.34 +320033,304.93,38.756 +320034,306.31,41.108 +320035,307.57,43.312 +320036,308.73,45.392 +320037,303.74,38.696 +320038,305.07,41.089 +320039,306.29,43.33 +320040,307.41,45.443 +320041,302.55,38.638 +320042,303.84,41.071 +320043,305.01,43.348 +320044,306.09,45.493 +320045,301.36,38.581 +320046,302.61,41.054 +320047,303.73,43.365 +320048,304.78,45.541 +320049,300.18,38.527 +320050,301.37,41.038 +320051,302.46,43.382 +320052,303.46,45.587 +320053,298.99,38.475 +320054,300.14,41.022 +320055,301.18,43.398 +320056,302.13,45.632 +320057,297.81,38.424 +320058,298.91,41.006 +320059,299.9,43.414 +320060,300.81,45.676 +320061,296.63,38.376 +320062,297.68,40.992 +320063,298.62,43.429 +320064,299.49,45.717 +320065,295.45,38.33 +320066,296.44,40.978 +320067,297.34,43.443 +320068,298.17,45.757 +320069,294.27,38.286 +320070,295.21,40.965 +320071,296.06,43.457 +320072,296.84,45.795 +320073,293.09,38.244 +320074,293.98,40.953 +320075,294.78,43.471 +320076,295.52,45.832 +320077,291.92,38.204 +320078,292.75,40.942 +320079,293.5,43.484 +320080,294.19,45.867 +320081,290.74,38.167 +320082,291.52,40.931 +320083,292.22,43.496 +320084,292.87,45.9 +320085,289.57,38.131 +320086,290.29,40.921 +320087,290.94,43.508 +320088,291.54,45.931 +320089,288.39,38.098 +320090,289.06,40.912 +320091,289.66,43.52 +320092,290.22,45.961 +320093,287.22,38.068 +320094,287.83,40.903 +320095,288.38,43.531 +320096,288.89,45.988 +320097,286.05,38.039 +320098,286.6,40.896 +320099,287.1,43.541 +320100,287.56,46.015 +320101,284.88,38.013 +320102,285.37,40.889 +320103,285.82,43.55 +320104,286.24,46.039 +320105,283.7,37.989 +320106,284.14,40.883 +320107,284.54,43.56 +320108,284.91,46.061 +320109,282.53,37.968 +320110,282.91,40.877 +320111,283.26,43.568 +320112,283.58,46.082 +320113,281.36,37.949 +320114,281.68,40.873 +320115,281.97,43.576 +320116,282.25,46.101 +320117,280.19,37.932 +320118,280.45,40.869 +320119,280.69,43.584 +320120,280.92,46.118 +320121,279.02,37.918 +320122,279.22,40.867 +320123,279.41,43.59 +320124,279.59,46.134 +320125,277.85,37.906 +320126,277.99,40.864 +320127,278.13,43.597 +320128,278.26,46.147 +320129,276.69,37.897 +320130,276.76,40.863 +320131,276.85,43.602 +320132,276.93,46.159 +320133,275.52,37.89 +320134,275.54,40.863 +320135,275.57,43.607 +320136,275.6,46.169 +320137,274.35,37.886 +320138,274.31,40.863 +320139,274.28,43.612 +320140,274.28,46.177 +320141,273.18,37.884 +320142,273.08,40.865 +320143,273,43.616 +320144,272.95,46.183 +320145,272.01,37.884 +320146,271.85,40.867 +320147,271.72,43.619 +320148,271.62,46.187 +320149,270.84,37.887 +320150,270.62,40.869 +320151,270.44,43.622 +320152,270.29,46.19 +320153,269.67,37.893 +320154,269.39,40.873 +320155,269.16,43.624 +320156,268.96,46.191 +320157,268.5,37.901 +320158,268.16,40.878 +320159,267.88,43.626 +320160,267.63,46.19 +320161,267.33,37.911 +320162,266.93,40.883 +320163,266.59,43.627 +320164,266.3,46.187 +320165,266.16,37.924 +320166,265.7,40.889 +320167,265.31,43.627 +320168,264.97,46.182 +320169,264.99,37.939 +320170,264.47,40.896 +320171,264.03,43.627 +320172,263.64,46.175 +320173,263.82,37.957 +320174,263.24,40.904 +320175,262.75,43.626 +320176,262.31,46.167 +320177,262.65,37.977 +320178,262.01,40.912 +320179,261.47,43.625 +320180,260.99,46.157 +320181,261.48,37.999 +320182,260.78,40.922 +320183,260.19,43.623 +320184,259.66,46.145 +320185,260.3,38.024 +320186,259.55,40.932 +320187,258.91,43.62 +320188,258.33,46.131 +320189,259.13,38.051 +320190,258.32,40.943 +320191,257.62,43.617 +320192,257.01,46.115 +320193,257.95,38.081 +320194,257.09,40.955 +320195,256.34,43.613 +320196,255.68,46.098 +320197,256.78,38.113 +320198,255.86,40.967 +320199,255.06,43.609 +320200,254.35,46.079 +320201,255.6,38.147 +320202,254.63,40.981 +320203,253.78,43.604 +320204,253.03,46.058 +320205,254.42,38.184 +320206,253.4,40.995 +320207,252.5,43.599 +320208,251.7,46.035 +320209,253.24,38.222 +320210,252.17,41.01 +320211,251.22,43.593 +320212,250.38,46.011 +320213,252.06,38.264 +320214,250.93,41.025 +320215,249.94,43.587 +320216,249.06,45.985 +320217,250.88,38.307 +320218,249.7,41.042 +320219,248.66,43.58 +320220,247.73,45.957 +320221,249.7,38.352 +320222,248.47,41.059 +320223,247.38,43.572 +320224,246.41,45.927 +320225,248.52,38.4 +320226,247.23,41.077 +320227,246.11,43.564 +320228,245.09,45.896 +320229,247.33,38.45 +320230,246,41.096 +320231,244.83,43.556 +320232,243.77,45.863 +320233,246.14,38.502 +320234,244.77,41.115 +320235,243.55,43.547 +320236,242.45,45.829 +320237,244.96,38.556 +320238,243.53,41.135 +320239,242.27,43.537 +320240,241.13,45.792 +320241,243.77,38.612 +320242,242.3,41.156 +320243,240.99,43.527 +320244,239.81,45.755 +320245,242.57,38.67 +320246,241.06,41.178 +320247,239.72,43.516 +320248,238.49,45.715 +320249,241.38,38.73 +320250,239.83,41.2 +320251,238.44,43.505 +320252,237.18,45.674 +320253,240.19,38.792 +320254,238.59,41.223 +320255,237.16,43.494 +320256,235.86,45.632 +320257,238.99,38.856 +320258,237.35,41.246 +320259,235.89,43.482 +320260,234.55,45.587 +320261,237.79,38.922 +320262,236.12,41.27 +320263,234.61,43.469 +320264,233.24,45.542 +320265,236.59,38.989 +320266,234.88,41.295 +320267,233.33,43.456 +320268,231.92,45.494 +320269,235.39,39.058 +320270,233.64,41.321 +320271,232.06,43.443 +320272,230.61,45.446 +320273,234.19,39.129 +320274,232.4,41.347 +320275,230.78,43.429 +320276,229.3,45.396 +320277,232.98,39.202 +320278,231.16,41.374 +320279,229.51,43.415 +320280,227.99,45.344 +320281,231.78,39.276 +320282,229.92,41.401 +320283,228.24,43.4 +320284,226.69,45.291 +320285,230.57,39.352 +320286,228.68,41.429 +320287,226.96,43.385 +320288,225.38,45.237 +320289,229.36,39.43 +320290,227.44,41.458 +320291,225.69,43.369 +320292,224.07,45.181 +320293,228.14,39.509 +320294,226.2,41.487 +320295,224.42,43.353 +320296,222.77,45.124 +320297,226.93,39.589 +320298,224.95,41.517 +320299,223.14,43.337 +320300,221.47,45.065 +320301,225.71,39.671 +320302,223.71,41.547 +320303,221.87,43.32 +320304,220.17,45.006 +320305,224.49,39.755 +320306,222.47,41.578 +320307,220.6,43.303 +320308,218.87,44.945 +320309,223.27,39.839 +320310,221.22,41.609 +320311,219.33,43.286 +320312,217.57,44.882 +320313,222.05,39.925 +320314,219.98,41.641 +320315,218.06,43.268 +320316,216.27,44.819 +320317,220.83,40.012 +320318,218.73,41.673 +320319,216.79,43.25 +320320,214.97,44.754 +320321,219.6,40.1 +320322,217.49,41.706 +320323,215.52,43.232 +320324,213.68,44.689 +320325,218.37,40.19 +320326,216.24,41.739 +320327,214.25,43.213 +320328,212.39,44.622 +320329,217.14,40.28 +320330,214.99,41.772 +320331,212.99,43.195 +320332,211.1,44.554 +320333,215.91,40.372 +320334,213.74,41.806 +320335,211.72,43.175 +320336,209.81,44.485 +320337,214.67,40.464 +320338,212.5,41.841 +320339,210.45,43.156 +320340,208.52,44.415 +320341,213.43,40.558 +320342,211.25,41.876 +320343,209.19,43.136 +320344,207.23,44.344 +320345,212.19,40.652 +320346,210,41.911 +320347,207.92,43.116 +320348,205.95,44.272 +320349,210.95,40.747 +320350,208.75,41.947 +320351,206.65,43.096 +320352,204.66,44.2 +320353,209.71,40.843 +320354,207.49,41.983 +320355,205.39,43.076 +320356,203.38,44.126 +320357,208.46,40.939 +320358,206.24,42.019 +320359,204.13,43.055 +320360,202.1,44.052 +320361,207.22,41.036 +320362,204.99,42.056 +320363,202.86,43.035 +320364,200.82,43.976 +320365,205.97,41.134 +320366,203.73,42.093 +320367,201.6,43.014 +320368,199.55,43.901 +320369,204.71,41.233 +320370,202.48,42.13 +320371,200.34,42.993 +320372,198.27,43.824 +320373,203.46,41.332 +320374,201.23,42.167 +320375,199.08,42.972 +320376,197,43.747 +320377,202.21,41.431 +320378,199.97,42.205 +320379,197.81,42.95 +320380,195.73,43.669 +320381,200.95,41.531 +320382,198.71,42.243 +320383,196.55,42.929 +320384,194.46,43.59 +320385,199.69,41.631 +320386,197.46,42.281 +320387,195.29,42.907 +320388,193.19,43.511 +320389,198.43,41.732 +320390,196.2,42.32 +320391,194.03,42.886 +320392,191.93,43.431 +320393,197.16,41.832 +320394,194.94,42.358 +320395,192.78,42.864 +320396,190.66,43.351 +320397,195.9,41.933 +320398,193.68,42.397 +320399,191.52,42.843 +320400,189.4,43.27 +320401,194.63,42.035 +320402,192.42,42.436 +320403,190.26,42.821 +320404,188.14,43.189 +320405,193.36,42.136 +320406,191.16,42.475 +320407,189,42.799 +320408,186.88,43.108 +320409,192.09,42.237 +320410,189.9,42.515 +320411,187.75,42.777 +320412,185.63,43.027 +320413,190.81,42.339 +320414,188.64,42.554 +320415,186.49,42.756 +320416,184.37,42.945 +320417,189.54,42.44 +320418,187.37,42.593 +320419,185.24,42.734 +320420,183.12,42.863 +320421,188.26,42.541 +320422,186.11,42.633 +320423,183.98,42.712 +320424,181.87,42.78 +320425,186.98,42.643 +320426,184.85,42.673 +320427,182.73,42.691 +320428,180.62,42.698 +320429,185.7,42.744 +320430,183.58,42.712 +320431,181.47,42.669 +320432,179.38,42.616 +320433,184.42,42.845 +320434,182.32,42.752 +320435,180.22,42.648 +320436,178.13,42.533 +320437,183.13,42.945 +320438,181.05,42.792 +320439,178.97,42.627 +320440,176.89,42.451 +320441,181.84,43.045 +320442,179.78,42.831 +320443,177.72,42.606 +320444,175.65,42.368 +320445,180.56,43.145 +320446,178.52,42.871 +320447,176.47,42.585 +320448,174.41,42.286 +320449,179.27,43.245 +320450,177.25,42.911 +320451,175.22,42.564 +320452,173.17,42.204 +320453,177.97,43.344 +320454,175.98,42.95 +320455,173.97,42.543 +320456,171.94,42.122 +320457,176.68,43.443 +320458,174.71,42.99 +320459,172.72,42.522 +320460,170.7,42.04 +320461,175.38,43.541 +320462,173.44,43.03 +320463,171.47,42.502 +320464,169.47,41.959 +320465,174.09,43.638 +320466,172.17,43.069 +320467,170.22,42.482 +320468,168.24,41.878 +320469,172.79,43.735 +320470,170.9,43.108 +320471,168.98,42.462 +320472,167.02,41.797 +320473,171.49,43.832 +320474,169.63,43.147 +320475,167.73,42.443 +320476,165.79,41.717 +320477,170.19,43.927 +320478,168.35,43.187 +320479,166.48,42.423 +320480,164.57,41.637 +320481,168.88,44.022 +320482,167.08,43.225 +320483,165.24,42.404 +320484,163.35,41.558 +320485,167.58,44.117 +320486,165.81,43.264 +320487,163.99,42.385 +320488,162.13,41.479 +320489,166.27,44.21 +320490,164.53,43.303 +320491,162.75,42.367 +320492,160.91,41.401 +320493,164.97,44.303 +320494,163.26,43.341 +320495,161.5,42.349 +320496,159.69,41.324 +320497,163.66,44.394 +320498,161.98,43.379 +320499,160.26,42.331 +320500,158.48,41.248 +320501,162.35,44.485 +320502,160.71,43.417 +320503,159.02,42.313 +320504,157.27,41.172 +320505,161.04,44.575 +320506,159.43,43.455 +320507,157.77,42.296 +320508,156.06,41.097 +320509,159.72,44.664 +320510,158.15,43.493 +320511,156.53,42.28 +320512,154.85,41.023 +320513,158.41,44.752 +320514,156.88,43.53 +320515,155.29,42.263 +320516,153.64,40.95 +320517,157.09,44.839 +320518,155.6,43.567 +320519,154.05,42.247 +320520,152.44,40.877 +320521,155.78,44.925 +320522,154.32,43.603 +320523,152.81,42.232 +320524,151.23,40.806 +320525,154.46,45.009 +320526,153.04,43.64 +320527,151.57,42.217 +320528,150.03,40.736 +320529,153.14,45.093 +320530,151.76,43.676 +320531,150.33,42.202 +320532,148.83,40.667 +320533,151.82,45.175 +320534,150.48,43.712 +320535,149.09,42.188 +320536,147.63,40.599 +320537,150.5,45.256 +320538,149.2,43.747 +320539,147.85,42.175 +320540,146.44,40.533 +320541,149.18,45.336 +320542,147.92,43.782 +320543,146.61,42.161 +320544,145.24,40.467 +320545,147.86,45.415 +320546,146.64,43.817 +320547,145.37,42.149 +320548,144.05,40.403 +320549,146.53,45.492 +320550,145.36,43.851 +320551,144.14,42.137 +320552,142.86,40.34 +320553,145.21,45.568 +320554,144.07,43.885 +320555,142.9,42.125 +320556,141.67,40.279 +320557,143.88,45.643 +320558,142.79,43.919 +320559,141.66,42.114 +320560,140.48,40.219 +320561,142.55,45.717 +320562,141.51,43.952 +320563,140.42,42.104 +320564,139.29,40.161 +320565,141.23,45.789 +320566,140.23,43.985 +320567,139.19,42.094 +320568,138.1,40.104 +320569,139.9,45.859 +320570,138.94,44.017 +320571,137.95,42.084 +320572,136.92,40.048 +320573,138.57,45.928 +320574,137.66,44.049 +320575,136.72,42.076 +320576,135.73,39.995 +320577,137.24,45.996 +320578,136.37,44.08 +320579,135.48,42.067 +320580,134.55,39.942 +320581,135.91,46.062 +320582,135.09,44.111 +320583,134.25,42.06 +320584,133.37,39.892 +320585,134.58,46.127 +320586,133.8,44.142 +320587,133.01,42.053 +320588,132.19,39.843 +320589,133.24,46.19 +320590,132.52,44.172 +320591,131.78,42.047 +320592,131.01,39.796 +320593,131.91,46.252 +320594,131.23,44.202 +320595,130.54,42.041 +320596,129.83,39.751 +320597,130.58,46.312 +320598,129.95,44.231 +320599,129.31,42.036 +320600,128.65,39.708 +320601,129.24,46.37 +320602,128.66,44.26 +320603,128.07,42.032 +320604,127.48,39.666 +320605,127.91,46.427 +320606,127.38,44.288 +320607,126.84,42.028 +320608,126.3,39.626 +320609,126.58,46.483 +320610,126.09,44.316 +320611,125.6,42.025 +320612,125.13,39.589 +320613,125.24,46.536 +320614,124.8,44.343 +320615,124.37,42.023 +320616,123.95,39.553 +320617,123.91,46.588 +320618,123.52,44.369 +320619,123.14,42.021 +320620,122.78,39.519 +320621,122.57,46.639 +320622,122.23,44.396 +320623,121.9,42.02 +320624,121.6,39.488 +320625,121.23,46.687 +320626,120.94,44.421 +320627,120.67,42.02 +320628,120.43,39.458 +320629,119.9,46.734 +320630,119.65,44.446 +320631,119.44,42.021 +320632,119.26,39.43 +320633,118.56,46.78 +320634,118.37,44.471 +320635,118.2,42.022 +320636,118.09,39.405 +320637,117.22,46.823 +320638,117.08,44.495 +320639,116.97,42.024 +320640,116.92,39.382 +320641,115.89,46.865 +320642,115.79,44.518 +320643,115.74,42.027 +320644,115.74,39.36 +320645,114.55,46.905 +320646,114.5,44.541 +320647,114.5,42.03 +320648,114.57,39.341 +320649,113.21,46.943 +320650,113.21,44.564 +320651,113.27,42.034 +320652,113.4,39.325 +320653,111.88,46.98 +320654,111.93,44.585 +320655,112.04,42.039 +320656,112.23,39.31 +320657,110.54,47.015 +320658,110.64,44.607 +320659,110.8,42.045 +320660,111.06,39.298 +320661,109.2,47.048 +320662,109.35,44.627 +320663,109.57,42.051 +320664,109.89,39.288 +320665,107.86,47.079 +320666,108.06,44.647 +320667,108.34,42.059 +320668,108.72,39.28 +320669,106.53,47.109 +320670,106.77,44.667 +320671,107.1,42.067 +320672,107.55,39.274 +320673,105.19,47.137 +320674,105.48,44.686 +320675,105.87,42.075 +320676,106.37,39.271 +320677,103.85,47.163 +320678,104.2,44.704 +320679,104.63,42.085 +320680,105.2,39.27 +320681,102.51,47.187 +320682,102.91,44.722 +320683,103.4,42.095 +320684,104.03,39.271 +320685,101.18,47.209 +320686,101.62,44.739 +320687,102.17,42.106 +320688,102.86,39.275 +320689,99.842,47.23 +320690,100.33,44.756 +320691,100.93,42.118 +320692,101.68,39.281 +320693,98.506,47.249 +320694,99.044,44.772 +320695,99.697,42.131 +320696,100.51,39.289 +320697,97.17,47.266 +320698,97.756,44.787 +320699,98.462,42.144 +320700,99.334,39.3 +320701,95.835,47.281 +320702,96.468,44.802 +320703,97.226,42.158 +320704,98.158,39.313 +320705,94.5,47.295 +320706,95.18,44.816 +320707,95.991,42.173 +320708,96.981,39.328 +320709,93.166,47.306 +320710,93.892,44.83 +320711,94.755,42.189 +320712,95.804,39.346 +320713,91.831,47.316 +320714,92.605,44.843 +320715,93.518,42.206 +320716,94.625,39.366 +320717,90.498,47.324 +320718,91.318,44.856 +320719,92.282,42.223 +320720,93.446,39.388 +320721,89.165,47.331 +320722,90.03,44.868 +320723,91.045,42.241 +320724,92.266,39.413 +320725,87.832,47.335 +320726,88.743,44.879 +320727,89.808,42.26 +320728,91.084,39.44 +320729,86.501,47.338 +320730,87.456,44.89 +320731,88.57,42.279 +320732,89.901,39.469 +320733,85.169,47.339 +320734,86.17,44.9 +320735,87.332,42.3 +320736,88.717,39.5 +320737,83.839,47.338 +320738,84.883,44.91 +320739,86.093,42.321 +320740,87.532,39.534 +320741,82.509,47.336 +320742,83.597,44.919 +320743,84.855,42.342 +320744,86.345,39.57 +320745,81.18,47.332 +320746,82.311,44.928 +320747,83.615,42.365 +320748,85.157,39.608 +320749,79.851,47.326 +320750,81.025,44.936 +320751,82.375,42.388 +320752,83.967,39.649 +320753,78.524,47.318 +320754,79.74,44.943 +320755,81.135,42.412 +320756,82.776,39.691 +320757,77.197,47.309 +320758,78.455,44.95 +320759,79.894,42.437 +320760,81.583,39.736 +320761,75.871,47.298 +320762,77.17,44.956 +320763,78.653,42.463 +320764,80.389,39.783 +320765,74.546,47.285 +320766,75.885,44.962 +320767,77.411,42.489 +320768,79.193,39.832 +320769,73.222,47.271 +320770,74.601,44.967 +320771,76.169,42.516 +320772,77.995,39.884 +320773,71.899,47.254 +320774,73.317,44.972 +320775,74.926,42.544 +320776,76.795,39.937 +320777,70.577,47.237 +320778,72.033,44.976 +320779,73.683,42.572 +320780,75.594,39.993 +320781,69.256,47.218 +320782,70.75,44.98 +320783,72.439,42.601 +320784,74.391,40.05 +320785,67.936,47.197 +320786,69.467,44.983 +320787,71.194,42.631 +320788,73.186,40.109 +320789,66.617,47.174 +320790,68.184,44.986 +320791,69.949,42.661 +320792,71.979,40.171 +320793,65.299,47.15 +320794,66.902,44.988 +320795,68.704,42.692 +320796,70.77,40.234 +320797,63.983,47.125 +320798,65.62,44.99 +320799,67.457,42.724 +320800,69.559,40.3 +320801,62.667,47.097 +320802,64.339,44.991 +320803,66.21,42.756 +320804,68.346,40.367 +320805,61.353,47.069 +320806,63.058,44.992 +320807,64.963,42.789 +320808,67.131,40.436 +320809,60.04,47.039 +320810,61.777,44.992 +320811,63.714,42.823 +320812,65.914,40.507 +320813,58.728,47.007 +320814,60.497,44.992 +320815,62.465,42.857 +320816,64.695,40.579 +320817,57.418,46.974 +320818,59.217,44.992 +320819,61.216,42.892 +320820,63.474,40.654 +320821,56.109,46.94 +320822,57.938,44.99 +320823,59.966,42.928 +320824,62.251,40.73 +320825,54.801,46.904 +320826,56.659,44.989 +320827,58.715,42.964 +320828,61.025,40.807 +320829,53.494,46.866 +320830,55.381,44.987 +320831,57.463,43 +320832,59.798,40.887 +320833,52.189,46.828 +320834,54.103,44.985 +320835,56.211,43.037 +320836,58.568,40.967 +320837,50.886,46.788 +320838,52.826,44.982 +320839,54.958,43.075 +320840,57.336,41.05 +320841,49.584,46.747 +320842,51.549,44.979 +320843,53.704,43.113 +320844,56.102,41.134 +320845,48.283,46.704 +320846,50.272,44.975 +320847,52.45,43.152 +320848,54.865,41.219 +320849,46.984,46.66 +320850,48.997,44.971 +320851,51.195,43.191 +320852,53.627,41.306 +320853,45.686,46.615 +320854,47.721,44.967 +320855,49.939,43.231 +320856,52.386,41.394 +320857,44.39,46.569 +320858,46.446,44.963 +320859,48.682,43.272 +320860,51.143,41.483 +320861,43.096,46.522 +320862,45.172,44.958 +320863,47.425,43.312 +320864,49.898,41.574 +320865,41.803,46.473 +320866,43.898,44.952 +320867,46.167,43.354 +320868,48.65,41.666 +320869,40.511,46.424 +320870,42.625,44.947 +320871,44.908,43.395 +320872,47.4,41.759 +320873,39.222,46.373 +320874,41.352,44.941 +320875,43.648,43.437 +320876,46.149,41.853 +320877,37.934,46.321 +320878,40.08,44.935 +320879,42.388,43.48 +320880,44.894,41.948 +320881,36.647,46.268 +320882,38.808,44.928 +320883,41.127,43.523 +320884,43.638,42.044 +320885,35.363,46.215 +320886,37.537,44.921 +320887,39.865,43.566 +320888,42.379,42.142 +320889,34.08,46.16 +320890,36.266,44.914 +320891,38.602,43.61 +320892,41.118,42.24 +320893,32.799,46.104 +320894,34.996,44.907 +320895,37.339,43.654 +320896,39.855,42.339 +320897,31.519,46.048 +320898,33.727,44.899 +320899,36.075,43.698 +320900,38.59,42.439 +320901,30.242,45.991 +320902,32.458,44.892 +320903,34.81,43.743 +320904,37.323,42.54 +320905,28.966,45.932 +320906,31.19,44.884 +320907,33.544,43.788 +320908,36.053,42.641 +320909,27.692,45.874 +320910,29.922,44.876 +320911,32.278,43.834 +320912,34.781,42.743 +320913,26.419,45.814 +320914,28.655,44.867 +320915,31.011,43.879 +320916,33.507,42.846 +320917,25.149,45.754 +320918,27.388,44.859 +320919,29.743,43.925 +320920,32.231,42.949 +320921,23.88,45.693 +320922,26.122,44.85 +320923,28.474,43.972 +320924,30.953,43.053 +320925,22.614,45.631 +320926,24.857,44.841 +320927,27.205,44.018 +320928,29.673,43.158 +320929,21.349,45.569 +320930,23.592,44.832 +320931,25.935,44.065 +320932,28.391,43.263 +320933,20.086,45.506 +320934,22.328,44.823 +320935,24.664,44.112 +320936,27.106,43.368 +320937,18.824,45.443 +320938,21.064,44.814 +320939,23.392,44.159 +320940,25.82,43.474 +320941,17.565,45.379 +320942,19.801,44.805 +320943,22.12,44.206 +320944,24.532,43.58 +320945,16.308,45.315 +320946,18.538,44.796 +320947,20.847,44.253 +320948,23.241,43.686 +320949,15.052,45.25 +320950,17.277,44.786 +320951,19.573,44.301 +320952,21.949,43.792 +320953,13.799,45.185 +320954,16.015,44.777 +320955,18.298,44.349 +320956,20.655,43.899 +320957,12.547,45.12 +320958,14.754,44.767 +320959,17.023,44.397 +320960,19.358,44.006 +320961,11.297,45.054 +320962,13.494,44.758 +320963,15.747,44.445 +320964,18.06,44.113 +320965,10.05,44.988 +320966,12.235,44.749 +320967,14.47,44.493 +320968,16.76,44.219 +320969,8.8036,44.922 +320970,10.975,44.739 +320971,13.193,44.541 +320972,15.459,44.326 +320973,7.5596,44.856 +320974,9.7169,44.73 +320975,11.914,44.589 +320976,14.155,44.433 +320977,6.3175,44.79 +320978,8.459,44.72 +320979,10.636,44.637 +320980,12.85,44.54 +320981,5.0773,44.724 +320982,7.2016,44.711 +320983,9.356,44.685 +320984,11.543,44.646 +320985,3.839,44.658 +320986,5.9447,44.702 +320987,8.0757,44.734 +320988,10.234,44.753 +320989,2.6026,44.591 +320990,4.6884,44.693 +320991,6.7948,44.782 +320992,8.9234,44.859 +320993,1.3681,44.525 +320994,3.4326,44.684 +320995,5.5133,44.83 +320996,7.6112,44.965 +320997,0.13547,44.459 +320998,2.1774,44.675 +320999,4.231,44.879 +321000,6.2974,45.07 +321001,358.9,44.393 +321002,0.92268,44.666 +321003,2.9481,44.927 +321004,4.982,45.175 +321005,357.68,44.327 +321006,359.67,44.657 +321007,1.6646,44.975 +321008,3.6651,45.28 +321009,356.45,44.262 +321010,358.41,44.649 +321011,0.38046,45.023 +321012,2.3465,45.384 +321013,355.22,44.197 +321014,357.16,44.64 +321015,359.1,45.071 +321016,1.0265,45.488 +321017,354,44.132 +321018,355.91,44.632 +321019,357.81,45.119 +321020,359.71,45.591 +321021,352.78,44.067 +321022,354.66,44.624 +321023,356.52,45.167 +321024,358.38,45.694 +321025,351.56,44.003 +321026,353.41,44.616 +321027,355.24,45.214 +321028,357.06,45.796 +321029,350.34,43.94 +321030,352.15,44.609 +321031,353.95,45.262 +321032,355.73,45.897 +321033,349.12,43.877 +321034,350.9,44.602 +321035,352.66,45.309 +321036,354.4,45.998 +321037,347.91,43.814 +321038,349.65,44.595 +321039,351.37,45.356 +321040,353.08,46.098 +321041,346.7,43.752 +321042,348.4,44.588 +321043,350.09,45.403 +321044,351.75,46.197 +321045,345.49,43.691 +321046,347.15,44.581 +321047,348.8,45.45 +321048,350.42,46.296 +321049,344.28,43.63 +321050,345.9,44.575 +321051,347.51,45.496 +321052,349.08,46.393 +321053,343.07,43.57 +321054,344.66,44.569 +321055,346.22,45.543 +321056,347.75,46.49 +321057,341.86,43.511 +321058,343.41,44.564 +321059,344.92,45.589 +321060,346.42,46.586 +321061,340.66,43.453 +321062,342.16,44.559 +321063,343.63,45.635 +321064,345.08,46.681 +321065,339.46,43.395 +321066,340.91,44.554 +321067,342.34,45.68 +321068,343.74,46.775 +321069,338.25,43.339 +321070,339.67,44.549 +321071,341.05,45.725 +321072,342.41,46.868 +321073,337.05,43.283 +321074,338.42,44.545 +321075,339.76,45.771 +321076,341.07,46.96 +321077,335.86,43.229 +321078,337.17,44.542 +321079,338.46,45.815 +321080,339.73,47.051 +321081,334.66,43.175 +321082,335.93,44.538 +321083,337.17,45.86 +321084,338.39,47.14 +321085,333.46,43.122 +321086,334.68,44.536 +321087,335.88,45.904 +321088,337.05,47.229 +321089,332.27,43.071 +321090,333.44,44.533 +321091,334.58,45.947 +321092,335.7,47.316 +321093,331.07,43.021 +321094,332.19,44.531 +321095,333.29,45.991 +321096,334.36,47.403 +321097,329.88,42.972 +321098,330.95,44.53 +321099,331.99,46.034 +321100,333.02,47.488 +321101,328.69,42.924 +321102,329.7,44.529 +321103,330.69,46.077 +321104,331.67,47.572 +321105,327.5,42.877 +321106,328.46,44.528 +321107,329.4,46.119 +321108,330.33,47.654 +321109,326.31,42.832 +321110,327.21,44.528 +321111,328.1,46.161 +321112,328.98,47.736 +321113,325.13,42.788 +321114,325.97,44.528 +321115,326.81,46.202 +321116,327.63,47.816 +321117,323.94,42.746 +321118,324.73,44.529 +321119,325.51,46.243 +321120,326.29,47.894 +321121,322.75,42.705 +321122,323.48,44.531 +321123,324.21,46.284 +321124,324.94,47.971 +321125,321.57,42.665 +321126,322.24,44.533 +321127,322.91,46.324 +321128,323.59,48.047 +321129,320.39,42.627 +321130,321,44.535 +321131,321.62,46.364 +321132,322.24,48.122 +321133,319.2,42.59 +321134,319.75,44.538 +321135,320.32,46.404 +321136,320.89,48.195 +321137,318.02,42.555 +321138,318.51,44.542 +321139,319.02,46.443 +321140,319.54,48.267 +321141,316.84,42.522 +321142,317.27,44.546 +321143,317.72,46.481 +321144,318.19,48.337 +321145,315.66,42.49 +321146,316.02,44.551 +321147,316.42,46.519 +321148,316.84,48.405 +321149,314.48,42.46 +321150,314.78,44.556 +321151,315.12,46.557 +321152,315.49,48.473 +321153,313.3,42.431 +321154,313.54,44.562 +321155,313.82,46.594 +321156,314.14,48.538 +321157,312.12,42.404 +321158,312.3,44.568 +321159,312.52,46.63 +321160,312.79,48.602 +321161,310.94,42.379 +321162,311.05,44.575 +321163,311.22,46.666 +321164,311.44,48.665 +321165,309.76,42.356 +321166,309.81,44.583 +321167,309.92,46.702 +321168,310.09,48.726 +321169,308.58,42.335 +321170,308.57,44.591 +321171,308.62,46.737 +321172,308.73,48.785 +321173,307.4,42.315 +321174,307.33,44.6 +321175,307.32,46.772 +321176,307.38,48.843 +321177,306.23,42.297 +321178,306.08,44.61 +321179,306.02,46.806 +321180,306.03,48.899 +321181,305.05,42.282 +321182,304.84,44.62 +321183,304.72,46.839 +321184,304.68,48.954 +321185,303.87,42.268 +321186,303.6,44.631 +321187,303.42,46.872 +321188,303.33,49.007 +321189,302.69,42.256 +321190,302.36,44.643 +321191,302.12,46.905 +321192,301.97,49.058 +321193,301.51,42.245 +321194,301.11,44.655 +321195,300.82,46.937 +321196,300.62,49.108 +321197,300.34,42.237 +321198,299.87,44.668 +321199,299.52,46.968 +321200,299.27,49.156 +321201,299.16,42.231 +321202,298.63,44.681 +321203,298.22,46.999 +321204,297.92,49.202 +321205,297.98,42.227 +321206,297.38,44.696 +321207,296.92,47.029 +321208,296.57,49.247 +321209,296.8,42.225 +321210,296.14,44.711 +321211,295.62,47.059 +321212,295.21,49.29 +321213,295.62,42.225 +321214,294.89,44.726 +321215,294.32,47.088 +321216,293.86,49.331 +321217,294.44,42.227 +321218,293.65,44.742 +321219,293.02,47.117 +321220,292.51,49.371 +321221,293.26,42.231 +321222,292.41,44.759 +321223,291.72,47.145 +321224,291.16,49.409 +321225,292.08,42.237 +321226,291.16,44.777 +321227,290.42,47.172 +321228,289.81,49.445 +321229,290.89,42.245 +321230,289.92,44.795 +321231,289.12,47.199 +321232,288.46,49.479 +321233,289.71,42.255 +321234,288.67,44.814 +321235,287.82,47.226 +321236,287.11,49.512 +321237,288.53,42.267 +321238,287.43,44.834 +321239,286.52,47.252 +321240,285.76,49.543 +321241,287.34,42.282 +321242,286.18,44.854 +321243,285.22,47.277 +321244,284.41,49.573 +321245,286.16,42.298 +321246,284.93,44.875 +321247,283.92,47.302 +321248,283.07,49.6 +321249,284.97,42.317 +321250,283.69,44.897 +321251,282.62,47.326 +321252,281.72,49.626 +321253,283.78,42.337 +321254,282.44,44.92 +321255,281.32,47.349 +321256,280.37,49.65 +321257,282.59,42.36 +321258,281.19,44.943 +321259,280.02,47.372 +321260,279.03,49.673 +321261,281.4,42.385 +321262,279.95,44.967 +321263,278.72,47.395 +321264,277.68,49.694 +321265,280.21,42.412 +321266,278.7,44.991 +321267,277.43,47.417 +321268,276.34,49.713 +321269,279.02,42.441 +321270,277.45,45.016 +321271,276.13,47.438 +321272,274.99,49.73 +321273,277.82,42.472 +321274,276.2,45.042 +321275,274.83,47.459 +321276,273.65,49.746 +321277,276.63,42.505 +321278,274.95,45.069 +321279,273.53,47.479 +321280,272.31,49.76 +321281,275.43,42.54 +321282,273.7,45.096 +321283,272.23,47.499 +321284,270.96,49.772 +321285,274.23,42.577 +321286,272.45,45.124 +321287,270.93,47.518 +321288,269.62,49.783 +321289,273.03,42.617 +321290,271.2,45.153 +321291,269.64,47.536 +321292,268.28,49.792 +321293,271.83,42.658 +321294,269.95,45.182 +321295,268.34,47.554 +321296,266.94,49.799 +321297,270.63,42.701 +321298,268.7,45.212 +321299,267.04,47.572 +321300,265.6,49.805 +321301,269.42,42.747 +321302,267.44,45.243 +321303,265.75,47.589 +321304,264.27,49.809 +321305,268.22,42.794 +321306,266.19,45.274 +321307,264.45,47.605 +321308,262.93,49.811 +321309,267.01,42.843 +321310,264.94,45.306 +321311,263.16,47.621 +321312,261.6,49.812 +321313,265.8,42.895 +321314,263.68,45.338 +321315,261.86,47.636 +321316,260.26,49.811 +321317,264.58,42.948 +321318,262.43,45.371 +321319,260.57,47.651 +321320,258.93,49.809 +321321,263.37,43.003 +321322,261.17,45.405 +321323,259.27,47.665 +321324,257.6,49.805 +321325,262.15,43.06 +321326,259.91,45.44 +321327,257.98,47.679 +321328,256.27,49.799 +321329,260.93,43.119 +321330,258.66,45.475 +321331,256.68,47.692 +321332,254.94,49.792 +321333,259.71,43.179 +321334,257.4,45.511 +321335,255.39,47.705 +321336,253.61,49.784 +321337,258.49,43.242 +321338,256.14,45.547 +321339,254.1,47.717 +321340,252.28,49.774 +321341,257.26,43.306 +321342,254.88,45.584 +321343,252.8,47.729 +321344,250.95,49.762 +321345,256.04,43.372 +321346,253.62,45.621 +321347,251.51,47.74 +321348,249.63,49.749 +321349,254.81,43.44 +321350,252.36,45.659 +321351,250.22,47.751 +321352,248.31,49.734 +321353,253.58,43.509 +321354,251.1,45.698 +321355,248.93,47.761 +321356,246.98,49.718 +321357,252.34,43.58 +321358,249.84,45.737 +321359,247.64,47.771 +321360,245.66,49.701 +321361,251.11,43.653 +321362,248.58,45.777 +321363,246.35,47.78 +321364,244.34,49.682 +321365,249.87,43.728 +321366,247.32,45.817 +321367,245.06,47.789 +321368,243.03,49.662 +321369,248.63,43.804 +321370,246.05,45.858 +321371,243.77,47.798 +321372,241.71,49.64 +321373,247.39,43.881 +321374,244.79,45.899 +321375,242.48,47.806 +321376,240.39,49.617 +321377,246.14,43.96 +321378,243.52,45.941 +321379,241.19,47.814 +321380,239.08,49.593 +321381,244.9,44.04 +321382,242.26,45.984 +321383,239.9,47.821 +321384,237.77,49.568 +321385,243.65,44.122 +321386,240.99,46.026 +321387,238.61,47.828 +321388,236.46,49.541 +321389,242.39,44.206 +321390,239.72,46.07 +321391,237.33,47.834 +321392,235.15,49.513 +321393,241.14,44.29 +321394,238.45,46.114 +321395,236.04,47.84 +321396,233.84,49.484 +321397,239.88,44.376 +321398,237.18,46.158 +321399,234.75,47.846 +321400,232.54,49.453 +321401,238.62,44.463 +321402,235.91,46.203 +321403,233.47,47.851 +321404,231.23,49.422 +321405,237.36,44.552 +321406,234.64,46.248 +321407,232.18,47.856 +321408,229.93,49.389 +321409,236.1,44.642 +321410,233.37,46.293 +321411,230.9,47.861 +321412,228.63,49.355 +321413,234.83,44.732 +321414,232.1,46.339 +321415,229.61,47.865 +321416,227.33,49.32 +321417,233.57,44.824 +321418,230.83,46.386 +321419,228.33,47.869 +321420,226.03,49.284 +321421,232.3,44.917 +321422,229.55,46.433 +321423,227.05,47.873 +321424,224.74,49.247 +321425,231.02,45.011 +321426,228.28,46.48 +321427,225.77,47.876 +321428,223.44,49.209 +321429,229.75,45.106 +321430,227,46.527 +321431,224.48,47.879 +321432,222.15,49.17 +321433,228.47,45.202 +321434,225.73,46.575 +321435,223.2,47.882 +321436,220.86,49.13 +321437,227.19,45.299 +321438,224.45,46.623 +321439,221.92,47.884 +321440,219.57,49.089 +321441,225.91,45.397 +321442,223.17,46.672 +321443,220.64,47.886 +321444,218.28,49.048 +321445,224.63,45.496 +321446,221.9,46.721 +321447,219.36,47.888 +321448,217,49.005 +321449,223.34,45.595 +321450,220.62,46.77 +321451,218.09,47.89 +321452,215.71,48.962 +321453,222.05,45.695 +321454,219.34,46.82 +321455,216.81,47.892 +321456,214.43,48.918 +321457,220.76,45.796 +321458,218.06,46.869 +321459,215.53,47.893 +321460,213.15,48.873 +321461,219.47,45.897 +321462,216.77,46.919 +321463,214.25,47.894 +321464,211.88,48.827 +321465,218.17,46 +321466,215.49,46.969 +321467,212.98,47.895 +321468,210.6,48.781 +321469,216.88,46.102 +321470,214.21,47.02 +321471,211.7,47.896 +321472,209.33,48.734 +321473,215.58,46.205 +321474,212.93,47.071 +321475,210.42,47.896 +321476,208.05,48.687 +321477,214.28,46.309 +321478,211.64,47.121 +321479,209.15,47.897 +321480,206.78,48.639 +321481,212.97,46.413 +321482,210.36,47.173 +321483,207.88,47.897 +321484,205.51,48.59 +321485,211.67,46.517 +321486,209.07,47.224 +321487,206.6,47.897 +321488,204.25,48.541 +321489,210.36,46.622 +321490,207.78,47.275 +321491,205.33,47.897 +321492,202.98,48.491 +321493,209.05,46.727 +321494,206.5,47.327 +321495,204.06,47.897 +321496,201.72,48.441 +321497,207.74,46.832 +321498,205.21,47.378 +321499,202.78,47.897 +321500,200.46,48.391 +321501,206.43,46.938 +321502,203.92,47.43 +321503,201.51,47.897 +321504,199.2,48.34 +321505,205.11,47.043 +321506,202.63,47.482 +321507,200.24,47.897 +321508,197.94,48.289 +321509,203.79,47.149 +321510,201.34,47.534 +321511,198.97,47.896 +321512,196.69,48.238 +321513,202.47,47.255 +321514,200.05,47.586 +321515,197.7,47.896 +321516,195.43,48.187 +321517,201.15,47.361 +321518,198.75,47.638 +321519,196.43,47.896 +321520,194.18,48.135 +321521,199.83,47.467 +321522,197.46,47.69 +321523,195.16,47.895 +321524,192.93,48.083 +321525,198.51,47.572 +321526,196.17,47.743 +321527,193.9,47.895 +321528,191.68,48.031 +321529,197.18,47.678 +321530,194.88,47.795 +321531,192.63,47.894 +321532,190.44,47.979 +321533,195.85,47.784 +321534,193.58,47.847 +321535,191.36,47.894 +321536,189.19,47.927 +321537,194.52,47.889 +321538,192.29,47.899 +321539,190.1,47.894 +321540,187.95,47.875 +321541,193.19,47.994 +321542,190.99,47.951 +321543,188.83,47.894 +321544,186.71,47.823 +321545,191.86,48.099 +321546,189.69,48.004 +321547,187.56,47.894 +321548,185.47,47.771 +321549,190.53,48.204 +321550,188.4,48.056 +321551,186.3,47.893 +321552,184.23,47.719 +321553,189.19,48.308 +321554,187.1,48.108 +321555,185.04,47.894 +321556,183,47.667 +321557,187.85,48.412 +321558,185.8,48.16 +321559,183.77,47.894 +321560,181.77,47.616 +321561,186.51,48.516 +321562,184.5,48.212 +321563,182.51,47.894 +321564,180.53,47.564 +321565,185.17,48.619 +321566,183.2,48.263 +321567,181.24,47.894 +321568,179.3,47.513 +321569,183.83,48.721 +321570,181.9,48.315 +321571,179.98,47.895 +321572,178.08,47.463 +321573,182.49,48.823 +321574,180.6,48.367 +321575,178.72,47.896 +321576,176.85,47.412 +321577,181.14,48.925 +321578,179.3,48.418 +321579,177.46,47.897 +321580,175.63,47.362 +321581,179.8,49.026 +321582,178,48.469 +321583,176.2,47.898 +321584,174.4,47.313 +321585,178.45,49.126 +321586,176.69,48.52 +321587,174.94,47.899 +321588,173.18,47.264 +321589,177.1,49.226 +321590,175.39,48.571 +321591,173.68,47.901 +321592,171.96,47.215 +321593,175.75,49.324 +321594,174.09,48.622 +321595,172.42,47.902 +321596,170.74,47.167 +321597,174.4,49.422 +321598,172.78,48.672 +321599,171.16,47.904 +321600,169.53,47.12 +321601,173.05,49.52 +321602,171.48,48.722 +321603,169.9,47.907 +321604,168.31,47.073 +321605,171.7,49.616 +321606,170.17,48.772 +321607,168.64,47.909 +321608,167.1,47.027 +321609,170.35,49.712 +321610,168.87,48.822 +321611,167.38,47.912 +321612,165.88,46.982 +321613,168.99,49.807 +321614,167.56,48.872 +321615,166.12,47.915 +321616,164.67,46.937 +321617,167.64,49.901 +321618,166.26,48.921 +321619,164.87,47.918 +321620,163.46,46.893 +321621,166.28,49.994 +321622,164.95,48.97 +321623,163.61,47.922 +321624,162.26,46.85 +321625,164.92,50.086 +321626,163.64,49.019 +321627,162.35,47.926 +321628,161.05,46.808 +321629,163.57,50.177 +321630,162.33,49.067 +321631,161.09,47.931 +321632,159.84,46.767 +321633,162.21,50.267 +321634,161.03,49.115 +321635,159.84,47.935 +321636,158.64,46.727 +321637,160.85,50.356 +321638,159.72,49.163 +321639,158.58,47.94 +321640,157.44,46.687 +321641,159.49,50.443 +321642,158.41,49.21 +321643,157.33,47.946 +321644,156.24,46.649 +321645,158.13,50.53 +321646,157.1,49.258 +321647,156.07,47.952 +321648,155.03,46.612 +321649,156.76,50.616 +321650,155.79,49.304 +321651,154.81,47.958 +321652,153.83,46.576 +321653,155.4,50.7 +321654,154.48,49.351 +321655,153.56,47.964 +321656,152.64,46.54 +321657,154.04,50.783 +321658,153.17,49.397 +321659,152.3,47.971 +321660,151.44,46.507 +321661,152.67,50.866 +321662,151.86,49.442 +321663,151.05,47.979 +321664,150.24,46.474 +321665,151.31,50.946 +321666,150.55,49.488 +321667,149.79,47.987 +321668,149.05,46.442 +321669,149.95,51.026 +321670,149.24,49.532 +321671,148.54,47.995 +321672,147.85,46.412 +321673,148.58,51.104 +321674,147.93,49.577 +321675,147.29,48.004 +321676,146.66,46.383 +321677,147.22,51.181 +321678,146.62,49.621 +321679,146.03,48.013 +321680,145.46,46.355 +321681,145.85,51.257 +321682,145.3,49.665 +321683,144.78,48.023 +321684,144.27,46.329 +321685,144.48,51.331 +321686,143.99,49.708 +321687,143.52,48.033 +321688,143.08,46.304 +321689,143.12,51.404 +321690,142.68,49.75 +321691,142.27,48.044 +321692,141.89,46.28 +321693,141.75,51.476 +321694,141.37,49.793 +321695,141.01,48.055 +321696,140.7,46.258 +321697,140.38,51.546 +321698,140.06,49.835 +321699,139.76,48.067 +321700,139.51,46.237 +321701,139.02,51.615 +321702,138.74,49.876 +321703,138.51,48.079 +321704,138.32,46.218 +321705,137.65,51.682 +321706,137.43,49.917 +321707,137.25,48.091 +321708,137.13,46.2 +321709,136.28,51.748 +321710,136.12,49.957 +321711,136,48.105 +321712,135.94,46.184 +321713,134.91,51.812 +321714,134.8,49.997 +321715,134.75,48.118 +321716,134.75,46.169 +321717,133.55,51.875 +321718,133.49,50.037 +321719,133.49,48.133 +321720,133.56,46.156 +321721,132.18,51.937 +321722,132.18,50.076 +321723,132.24,48.147 +321724,132.37,46.145 +321725,130.81,51.997 +321726,130.87,50.114 +321727,130.98,48.163 +321728,131.18,46.135 +321729,129.44,52.055 +321730,129.55,50.152 +321731,129.73,48.179 +321732,129.99,46.127 +321733,128.08,52.112 +321734,128.24,50.19 +321735,128.47,48.195 +321736,128.8,46.12 +321737,126.71,52.168 +321738,126.93,50.227 +321739,127.22,48.212 +321740,127.61,46.115 +321741,125.34,52.221 +321742,125.61,50.263 +321743,125.97,48.23 +321744,126.42,46.112 +321745,123.98,52.274 +321746,124.3,50.299 +321747,124.71,48.248 +321748,125.23,46.11 +321749,122.61,52.324 +321750,122.99,50.335 +321751,123.46,48.267 +321752,124.04,46.111 +321753,121.24,52.374 +321754,121.67,50.37 +321755,122.2,48.286 +321756,122.85,46.113 +321757,119.88,52.421 +321758,120.36,50.404 +321759,120.95,48.306 +321760,121.66,46.117 +321761,118.51,52.467 +321762,119.05,50.438 +321763,119.69,48.327 +321764,120.47,46.122 +321765,117.15,52.512 +321766,117.73,50.471 +321767,118.43,48.348 +321768,119.28,46.129 +321769,115.78,52.554 +321770,116.42,50.504 +321771,117.18,48.369 +321772,118.09,46.138 +321773,114.42,52.596 +321774,115.11,50.537 +321775,115.92,48.392 +321776,116.89,46.149 +321777,113.06,52.635 +321778,113.79,50.568 +321779,114.67,48.414 +321780,115.7,46.162 +321781,111.69,52.673 +321782,112.48,50.599 +321783,113.41,48.438 +321784,114.51,46.177 +321785,110.33,52.71 +321786,111.17,50.63 +321787,112.15,48.462 +321788,113.31,46.193 +321789,108.97,52.744 +321790,109.86,50.66 +321791,110.89,48.487 +321792,112.11,46.211 +321793,107.61,52.778 +321794,108.55,50.69 +321795,109.64,48.512 +321796,110.92,46.231 +321797,106.24,52.809 +321798,107.23,50.719 +321799,108.38,48.538 +321800,109.72,46.253 +321801,104.88,52.839 +321802,105.92,50.747 +321803,107.12,48.564 +321804,108.52,46.277 +321805,103.53,52.867 +321806,104.61,50.775 +321807,105.86,48.591 +321808,107.32,46.302 +321809,102.17,52.894 +321810,103.3,50.803 +321811,104.6,48.619 +321812,106.12,46.33 +321813,100.81,52.919 +321814,101.99,50.83 +321815,103.34,48.647 +321816,104.91,46.359 +321817,99.451,52.943 +321818,100.68,50.856 +321819,102.08,48.676 +321820,103.71,46.39 +321821,98.095,52.965 +321822,99.366,50.882 +321823,100.82,48.706 +321824,102.5,46.423 +321825,96.74,52.985 +321826,98.055,50.907 +321827,99.557,48.736 +321828,101.3,46.458 +321829,95.385,53.004 +321830,96.745,50.932 +321831,98.295,48.767 +321832,100.09,46.494 +321833,94.032,53.021 +321834,95.436,50.956 +321835,97.033,48.798 +321836,98.877,46.533 +321837,92.679,53.037 +321838,94.126,50.98 +321839,95.77,48.83 +321840,97.665,46.573 +321841,91.327,53.051 +321842,92.817,51.003 +321843,94.507,48.862 +321844,96.451,46.615 +321845,89.977,53.063 +321846,91.508,51.025 +321847,93.243,48.895 +321848,95.236,46.658 +321849,88.627,53.074 +321850,90.2,51.047 +321851,91.978,48.929 +321852,94.019,46.704 +321853,87.279,53.084 +321854,88.892,51.069 +321855,90.713,48.963 +321856,92.801,46.751 +321857,85.931,53.092 +321858,87.584,51.09 +321859,89.447,48.998 +321860,91.58,46.8 +321861,84.585,53.098 +321862,86.277,51.111 +321863,88.181,49.033 +321864,90.358,46.851 +321865,83.24,53.103 +321866,84.97,51.131 +321867,86.914,49.069 +321868,89.134,46.903 +321869,81.896,53.107 +321870,83.663,51.15 +321871,85.647,49.105 +321872,87.908,46.957 +321873,80.554,53.109 +321874,82.357,51.169 +321875,84.379,49.142 +321876,86.68,47.013 +321877,79.212,53.109 +321878,81.051,51.188 +321879,83.11,49.18 +321880,85.45,47.07 +321881,77.872,53.108 +321882,79.746,51.206 +321883,81.841,49.218 +321884,84.218,47.13 +321885,76.534,53.106 +321886,78.441,51.224 +321887,80.571,49.256 +321888,82.984,47.19 +321889,75.196,53.102 +321890,77.136,51.241 +321891,79.3,49.295 +321892,81.748,47.253 +321893,73.86,53.097 +321894,75.832,51.257 +321895,78.029,49.335 +321896,80.51,47.316 +321897,72.525,53.09 +321898,74.529,51.274 +321899,76.756,49.375 +321900,79.27,47.382 +321901,71.192,53.083 +321902,73.225,51.289 +321903,75.484,49.415 +321904,78.027,47.449 +321905,69.86,53.073 +321906,71.923,51.305 +321907,74.21,49.457 +321908,76.783,47.517 +321909,68.53,53.063 +321910,70.621,51.319 +321911,72.936,49.498 +321912,75.536,47.587 +321913,67.201,53.051 +321914,69.319,51.334 +321915,71.661,49.54 +321916,74.287,47.658 +321917,65.873,53.038 +321918,68.018,51.348 +321919,70.386,49.583 +321920,73.035,47.731 +321921,64.547,53.024 +321922,66.717,51.361 +321923,69.109,49.626 +321924,71.782,47.805 +321925,63.223,53.008 +321926,65.417,51.375 +321927,67.832,49.669 +321928,70.526,47.881 +321929,61.9,52.991 +321930,64.117,51.387 +321931,66.555,49.713 +321932,69.268,47.958 +321933,60.578,52.973 +321934,62.818,51.4 +321935,65.276,49.757 +321936,68.008,48.036 +321937,59.259,52.954 +321938,61.519,51.412 +321939,63.997,49.802 +321940,66.745,48.115 +321941,57.94,52.934 +321942,60.221,51.423 +321943,62.717,49.847 +321944,65.48,48.196 +321945,56.624,52.912 +321946,58.924,51.434 +321947,61.436,49.893 +321948,64.213,48.278 +321949,55.309,52.89 +321950,57.627,51.445 +321951,60.155,49.939 +321952,62.944,48.361 +321953,53.996,52.866 +321954,56.33,51.456 +321955,58.872,49.985 +321956,61.672,48.445 +321957,52.685,52.842 +321958,55.034,51.466 +321959,57.589,50.032 +321960,60.398,48.53 +321961,51.375,52.816 +321962,53.739,51.476 +321963,56.306,50.079 +321964,59.121,48.616 +321965,50.067,52.789 +321966,52.444,51.485 +321967,55.021,50.126 +321968,57.842,48.704 +321969,48.76,52.762 +321970,51.15,51.495 +321971,53.736,50.174 +321972,56.561,48.792 +321973,47.456,52.733 +321974,49.857,51.503 +321975,52.45,50.222 +321976,55.278,48.881 +321977,46.153,52.704 +321978,48.563,51.512 +321979,51.163,50.27 +321980,53.992,48.972 +321981,44.852,52.673 +321982,47.271,51.52 +321983,49.875,50.319 +321984,52.704,49.063 +321985,43.553,52.642 +321986,45.979,51.528 +321987,48.587,50.368 +321988,51.414,49.155 +321989,42.255,52.61 +321990,44.688,51.536 +321991,47.298,50.417 +321992,50.122,49.247 +321993,40.959,52.577 +321994,43.397,51.544 +321995,46.008,50.467 +321996,48.827,49.341 +321997,39.665,52.544 +321998,42.107,51.551 +321999,44.717,50.517 +322000,47.53,49.435 +322001,38.373,52.51 +322002,40.817,51.558 +322003,43.426,50.567 +322004,46.231,49.53 +322005,37.083,52.475 +322006,39.528,51.565 +322007,42.133,50.617 +322008,44.93,49.626 +322009,35.795,52.439 +322010,38.24,51.571 +322011,40.84,50.667 +322012,43.626,49.722 +322013,34.508,52.403 +322014,36.952,51.578 +322015,39.547,50.718 +322016,42.32,49.819 +322017,33.224,52.366 +322018,35.665,51.584 +322019,38.252,50.769 +322020,41.012,49.916 +322021,31.941,52.328 +322022,34.378,51.59 +322023,36.957,50.82 +322024,39.702,50.014 +322025,30.66,52.291 +322026,33.092,51.596 +322027,35.661,50.871 +322028,38.39,50.112 +322029,29.381,52.252 +322030,31.807,51.602 +322031,34.364,50.923 +322032,37.076,50.211 +322033,28.103,52.213 +322034,30.522,51.608 +322035,33.067,50.974 +322036,35.76,50.31 +322037,26.828,52.174 +322038,29.237,51.613 +322039,31.768,51.026 +322040,34.441,50.409 +322041,25.554,52.134 +322042,27.953,51.618 +322043,30.469,51.078 +322044,33.121,50.509 +322045,24.283,52.094 +322046,26.67,51.624 +322047,29.17,51.13 +322048,31.798,50.609 +322049,23.013,52.053 +322050,25.388,51.629 +322051,27.869,51.182 +322052,30.474,50.709 +322053,21.745,52.013 +322054,24.106,51.634 +322055,26.568,51.234 +322056,29.148,50.809 +322057,20.479,51.972 +322058,22.824,51.639 +322059,25.266,51.286 +322060,27.82,50.91 +322061,19.215,51.93 +322062,21.543,51.644 +322063,23.964,51.338 +322064,26.49,51.01 +322065,17.952,51.889 +322066,20.263,51.649 +322067,22.661,51.391 +322068,25.158,51.111 +322069,16.692,51.847 +322070,18.983,51.654 +322071,21.357,51.443 +322072,23.824,51.212 +322073,15.433,51.806 +322074,17.704,51.659 +322075,20.052,51.495 +322076,22.488,51.312 +322077,14.176,51.764 +322078,16.425,51.664 +322079,18.747,51.547 +322080,21.151,51.413 +322081,12.921,51.722 +322082,15.147,51.669 +322083,17.441,51.6 +322084,19.812,51.514 +322085,11.667,51.68 +322086,13.869,51.673 +322087,16.135,51.652 +322088,18.471,51.614 +322089,10.416,51.638 +322090,12.592,51.678 +322091,14.828,51.704 +322092,17.129,51.714 +322093,9.1661,51.597 +322094,11.316,51.683 +322095,13.52,51.757 +322096,15.785,51.814 +322097,7.9181,51.555 +322098,10.039,51.688 +322099,12.211,51.809 +322100,14.439,51.914 +322101,6.6719,51.514 +322102,8.7638,51.694 +322103,10.902,51.861 +322104,13.092,52.013 +322105,5.4273,51.472 +322106,7.4887,51.699 +322107,9.5926,51.913 +322108,11.744,52.113 +322109,4.1845,51.431 +322110,6.2141,51.704 +322111,8.2823,51.965 +322112,10.393,52.212 +322113,2.9434,51.39 +322114,4.94,51.709 +322115,6.9715,52.017 +322116,9.0418,52.31 +322117,1.704,51.349 +322118,3.6663,51.715 +322119,5.6601,52.068 +322120,7.6888,52.408 +322121,0.46617,51.309 +322122,2.3931,51.72 +322123,4.3481,52.12 +322124,6.3344,52.506 +322125,359.23,51.269 +322126,1.1204,51.726 +322127,3.0356,52.171 +322128,4.9786,52.603 +322129,358,51.23 +322130,359.85,51.732 +322131,1.7226,52.223 +322132,3.6215,52.699 +322133,356.76,51.19 +322134,358.58,51.738 +322135,0.409,52.274 +322136,2.2632,52.795 +322137,355.53,51.152 +322138,357.3,51.744 +322139,359.09,52.325 +322140,0.90356,52.891 +322141,354.3,51.113 +322142,356.03,51.751 +322143,357.78,52.375 +322144,359.54,52.985 +322145,353.07,51.076 +322146,354.76,51.757 +322147,356.47,52.426 +322148,358.18,53.079 +322149,351.85,51.039 +322150,353.49,51.764 +322151,355.15,52.476 +322152,356.82,53.173 +322153,350.62,51.002 +322154,352.22,51.771 +322155,353.83,52.526 +322156,355.45,53.266 +322157,349.4,50.966 +322158,350.95,51.779 +322159,352.52,52.576 +322160,354.09,53.358 +322161,348.17,50.931 +322162,349.68,51.786 +322163,351.2,52.626 +322164,352.72,53.449 +322165,346.95,50.896 +322166,348.42,51.794 +322167,349.88,52.675 +322168,351.35,53.539 +322169,345.73,50.863 +322170,347.15,51.802 +322171,348.56,52.724 +322172,349.99,53.628 +322173,344.51,50.829 +322174,345.88,51.81 +322175,347.25,52.773 +322176,348.62,53.717 +322177,343.3,50.797 +322178,344.61,51.819 +322179,345.93,52.822 +322180,347.25,53.805 +322181,342.08,50.766 +322182,343.34,51.828 +322183,344.61,52.87 +322184,345.88,53.892 +322185,340.87,50.735 +322186,342.08,51.837 +322187,343.29,52.918 +322188,344.51,53.977 +322189,339.65,50.706 +322190,340.81,51.846 +322191,341.97,52.965 +322192,343.13,54.062 +322193,338.44,50.677 +322194,339.54,51.856 +322195,340.65,53.013 +322196,341.76,54.146 +322197,337.23,50.649 +322198,338.28,51.866 +322199,339.33,53.06 +322200,340.39,54.229 +322201,336.02,50.622 +322202,337.01,51.877 +322203,338.01,53.106 +322204,339.01,54.311 +322205,334.81,50.596 +322206,335.74,51.888 +322207,336.69,53.153 +322208,337.64,54.391 +322209,333.6,50.572 +322210,334.48,51.899 +322211,335.37,53.199 +322212,336.26,54.471 +322213,332.39,50.548 +322214,333.21,51.91 +322215,334.05,53.244 +322216,334.89,54.549 +322217,331.18,50.525 +322218,331.95,51.922 +322219,332.72,53.289 +322220,333.51,54.627 +322221,329.98,50.504 +322222,330.68,51.935 +322223,331.4,53.334 +322224,332.13,54.703 +322225,328.77,50.484 +322226,329.42,51.947 +322227,330.08,53.379 +322228,330.76,54.778 +322229,327.56,50.465 +322230,328.15,51.96 +322231,328.76,53.423 +322232,329.38,54.851 +322233,326.36,50.447 +322234,326.89,51.974 +322235,327.43,53.466 +322236,328,54.924 +322237,325.16,50.43 +322238,325.62,51.988 +322239,326.11,53.509 +322240,326.62,54.995 +322241,323.95,50.415 +322242,324.36,52.002 +322243,324.79,53.552 +322244,325.24,55.065 +322245,322.75,50.401 +322246,323.09,52.017 +322247,323.47,53.594 +322248,323.86,55.134 +322249,321.55,50.388 +322250,321.83,52.032 +322251,322.14,53.636 +322252,322.49,55.201 +322253,320.35,50.376 +322254,320.56,52.048 +322255,320.82,53.678 +322256,321.11,55.267 +322257,319.14,50.366 +322258,319.3,52.064 +322259,319.49,53.719 +322260,319.73,55.332 +322261,317.94,50.357 +322262,318.03,52.081 +322263,318.17,53.759 +322264,318.35,55.395 +322265,316.74,50.35 +322266,316.77,52.098 +322267,316.85,53.799 +322268,316.97,55.457 +322269,315.54,50.344 +322270,315.5,52.115 +322271,315.52,53.839 +322272,315.59,55.518 +322273,314.34,50.34 +322274,314.24,52.133 +322275,314.2,53.878 +322276,314.21,55.577 +322277,313.14,50.337 +322278,312.98,52.152 +322279,312.88,53.917 +322280,312.83,55.635 +322281,311.94,50.335 +322282,311.71,52.171 +322283,311.55,53.955 +322284,311.45,55.691 +322285,310.74,50.335 +322286,310.45,52.19 +322287,310.23,53.993 +322288,310.07,55.746 +322289,309.54,50.336 +322290,309.18,52.21 +322291,308.9,54.03 +322292,308.7,55.8 +322293,308.33,50.339 +322294,307.92,52.231 +322295,307.58,54.067 +322296,307.32,55.852 +322297,307.13,50.344 +322298,306.65,52.251 +322299,306.26,54.103 +322300,305.94,55.902 +322301,305.93,50.349 +322302,305.38,52.273 +322303,304.93,54.139 +322304,304.56,55.951 +322305,304.73,50.357 +322306,304.12,52.295 +322307,303.61,54.174 +322308,303.18,55.999 +322309,303.53,50.366 +322310,302.85,52.317 +322311,302.28,54.209 +322312,301.81,56.045 +322313,302.32,50.377 +322314,301.59,52.34 +322315,300.96,54.243 +322316,300.43,56.09 +322317,301.12,50.389 +322318,300.32,52.364 +322319,299.64,54.277 +322320,299.05,56.133 +322321,299.92,50.403 +322322,299.05,52.388 +322323,298.31,54.31 +322324,297.68,56.175 +322325,298.71,50.418 +322326,297.79,52.412 +322327,296.99,54.343 +322328,296.3,56.215 +322329,297.51,50.435 +322330,296.52,52.437 +322331,295.67,54.375 +322332,294.93,56.254 +322333,296.3,50.454 +322334,295.25,52.463 +322335,294.34,54.407 +322336,293.55,56.291 +322337,295.09,50.474 +322338,293.99,52.489 +322339,293.02,54.438 +322340,292.18,56.327 +322341,293.89,50.496 +322342,292.72,52.516 +322343,291.7,54.469 +322344,290.81,56.361 +322345,292.68,50.519 +322346,291.45,52.543 +322347,290.38,54.499 +322348,289.43,56.394 +322349,291.47,50.544 +322350,290.18,52.571 +322351,289.05,54.529 +322352,288.06,56.425 +322353,290.26,50.571 +322354,288.91,52.599 +322355,287.73,54.558 +322356,286.69,56.455 +322357,289.04,50.599 +322358,287.64,52.628 +322359,286.41,54.587 +322360,285.32,56.483 +322361,287.83,50.629 +322362,286.37,52.657 +322363,285.09,54.615 +322364,283.95,56.51 +322365,286.62,50.661 +322366,285.1,52.687 +322367,283.77,54.643 +322368,282.58,56.535 +322369,285.4,50.694 +322370,283.83,52.717 +322371,282.45,54.67 +322372,281.21,56.559 +322373,284.18,50.729 +322374,282.56,52.748 +322375,281.13,54.696 +322376,279.85,56.582 +322377,282.97,50.765 +322378,281.29,52.779 +322379,279.81,54.722 +322380,278.48,56.602 +322381,281.75,50.803 +322382,280.02,52.811 +322383,278.49,54.748 +322384,277.12,56.622 +322385,280.53,50.842 +322386,278.74,52.843 +322387,277.17,54.773 +322388,275.75,56.64 +322389,279.3,50.884 +322390,277.47,52.876 +322391,275.85,54.798 +322392,274.39,56.656 +322393,278.08,50.926 +322394,276.2,52.909 +322395,274.53,54.822 +322396,273.03,56.671 +322397,276.86,50.97 +322398,274.92,52.943 +322399,273.21,54.846 +322400,271.67,56.685 +322401,275.63,51.016 +322402,273.65,52.978 +322403,271.89,54.869 +322404,270.31,56.697 +322405,274.4,51.064 +322406,272.37,53.013 +322407,270.57,54.891 +322408,268.95,56.707 +322409,273.17,51.113 +322410,271.1,53.048 +322411,269.25,54.914 +322412,267.59,56.717 +322413,271.94,51.163 +322414,269.82,53.084 +322415,267.94,54.935 +322416,266.24,56.725 +322417,270.7,51.215 +322418,268.55,53.12 +322419,266.62,54.956 +322420,264.88,56.731 +322421,269.47,51.268 +322422,267.27,53.157 +322423,265.3,54.977 +322424,263.53,56.736 +322425,268.23,51.323 +322426,265.99,53.194 +322427,263.99,54.997 +322428,262.17,56.74 +322429,266.99,51.379 +322430,264.71,53.232 +322431,262.67,55.017 +322432,260.82,56.742 +322433,265.75,51.437 +322434,263.43,53.27 +322435,261.36,55.037 +322436,259.47,56.743 +322437,264.51,51.496 +322438,262.15,53.309 +322439,260.04,55.055 +322440,258.12,56.743 +322441,263.26,51.557 +322442,260.87,53.348 +322443,258.73,55.074 +322444,256.78,56.742 +322445,262.02,51.619 +322446,259.59,53.388 +322447,257.41,55.092 +322448,255.43,56.739 +322449,260.77,51.682 +322450,258.31,53.428 +322451,256.1,55.11 +322452,254.09,56.735 +322453,259.52,51.746 +322454,257.03,53.468 +322455,254.79,55.127 +322456,252.74,56.73 +322457,258.26,51.812 +322458,255.75,53.509 +322459,253.47,55.143 +322460,251.4,56.723 +322461,257.01,51.88 +322462,254.46,53.55 +322463,252.16,55.16 +322464,250.06,56.715 +322465,255.75,51.948 +322466,253.18,53.592 +322467,250.85,55.176 +322468,248.72,56.706 +322469,254.49,52.018 +322470,251.89,53.634 +322471,249.54,55.191 +322472,247.39,56.696 +322473,253.23,52.089 +322474,250.61,53.676 +322475,248.23,55.206 +322476,246.05,56.685 +322477,251.97,52.161 +322478,249.32,53.719 +322479,246.92,55.221 +322480,244.72,56.672 +322481,250.7,52.234 +322482,248.03,53.762 +322483,245.61,55.235 +322484,243.38,56.659 +322485,249.43,52.308 +322486,246.75,53.806 +322487,244.3,55.249 +322488,242.05,56.644 +322489,248.16,52.384 +322490,245.46,53.85 +322491,242.99,55.263 +322492,240.72,56.629 +322493,246.89,52.46 +322494,244.17,53.894 +322495,241.68,55.276 +322496,239.4,56.612 +322497,245.61,52.538 +322498,242.88,53.939 +322499,240.38,55.289 +322500,238.07,56.594 +322501,244.34,52.617 +322502,241.59,53.984 +322503,239.07,55.302 +322504,236.75,56.576 +322505,243.06,52.696 +322506,240.3,54.029 +322507,237.76,55.314 +322508,235.42,56.556 +322509,241.78,52.777 +322510,239,54.075 +322511,236.46,55.326 +322512,234.1,56.535 +322513,240.49,52.858 +322514,237.71,54.121 +322515,235.15,55.338 +322516,232.78,56.514 +322517,239.21,52.941 +322518,236.42,54.167 +322519,233.85,55.349 +322520,231.47,56.491 +322521,237.92,53.024 +322522,235.12,54.214 +322523,232.55,55.36 +322524,230.15,56.468 +322525,236.63,53.108 +322526,233.83,54.26 +322527,231.24,55.371 +322528,228.84,56.444 +322529,235.34,53.193 +322530,232.53,54.307 +322531,229.94,55.381 +322532,227.52,56.419 +322533,234.04,53.279 +322534,231.24,54.355 +322535,228.64,55.391 +322536,226.21,56.393 +322537,232.75,53.365 +322538,229.94,54.402 +322539,227.34,55.401 +322540,224.9,56.367 +322541,231.45,53.452 +322542,228.64,54.45 +322543,226.04,55.411 +322544,223.6,56.339 +322545,230.15,53.54 +322546,227.34,54.498 +322547,224.74,55.421 +322548,222.29,56.311 +322549,228.84,53.628 +322550,226.04,54.546 +322551,223.44,55.43 +322552,220.99,56.283 +322553,227.54,53.717 +322554,224.74,54.595 +322555,222.14,55.439 +322556,219.69,56.254 +322557,226.23,53.807 +322558,223.44,54.643 +322559,220.84,55.448 +322560,218.39,56.224 +322561,224.92,53.897 +322562,222.14,54.692 +322563,219.54,55.456 +322564,217.09,56.193 +322565,223.61,53.987 +322566,220.84,54.741 +322567,218.24,55.465 +322568,215.79,56.162 +322569,222.29,54.078 +322570,219.53,54.79 +322571,216.95,55.473 +322572,214.5,56.131 +322573,220.97,54.17 +322574,218.23,54.839 +322575,215.65,55.481 +322576,213.21,56.099 +322577,219.66,54.262 +322578,216.93,54.889 +322579,214.35,55.489 +322580,211.92,56.066 +322581,218.34,54.354 +322582,215.62,54.938 +322583,213.06,55.497 +322584,210.63,56.034 +322585,217.01,54.446 +322586,214.31,54.988 +322587,211.76,55.505 +322588,209.34,56 +322589,215.69,54.539 +322590,213.01,55.037 +322591,210.47,55.512 +322592,208.06,55.967 +322593,214.36,54.632 +322594,211.7,55.087 +322595,209.18,55.52 +322596,206.77,55.933 +322597,213.03,54.725 +322598,210.39,55.137 +322599,207.89,55.527 +322600,205.49,55.898 +322601,211.7,54.819 +322602,209.08,55.187 +322603,206.59,55.534 +322604,204.21,55.864 +322605,210.37,54.912 +322606,207.77,55.237 +322607,205.3,55.542 +322608,202.93,55.829 +322609,209.04,55.006 +322610,206.46,55.287 +322611,204.01,55.549 +322612,201.66,55.794 +322613,207.7,55.099 +322614,205.15,55.337 +322615,202.72,55.556 +322616,200.38,55.759 +322617,206.36,55.193 +322618,203.84,55.387 +322619,201.43,55.563 +322620,199.11,55.724 +322621,205.02,55.287 +322622,202.53,55.437 +322623,200.14,55.57 +322624,197.84,55.688 +322625,203.68,55.381 +322626,201.22,55.487 +322627,198.85,55.577 +322628,196.57,55.653 +322629,202.34,55.474 +322630,199.9,55.537 +322631,197.56,55.584 +322632,195.31,55.617 +322633,200.99,55.568 +322634,198.59,55.587 +322635,196.28,55.591 +322636,194.04,55.582 +322637,199.64,55.661 +322638,197.27,55.637 +322639,194.99,55.598 +322640,192.78,55.546 +322641,198.29,55.754 +322642,195.96,55.687 +322643,193.7,55.605 +322644,191.52,55.511 +322645,196.94,55.847 +322646,194.64,55.737 +322647,192.42,55.612 +322648,190.26,55.476 +322649,195.59,55.94 +322650,193.33,55.787 +322651,191.13,55.619 +322652,189,55.44 +322653,194.24,56.032 +322654,192.01,55.836 +322655,189.85,55.627 +322656,187.74,55.405 +322657,192.88,56.124 +322658,190.69,55.886 +322659,188.56,55.634 +322660,186.49,55.371 +322661,191.53,56.216 +322662,189.37,55.935 +322663,187.28,55.641 +322664,185.23,55.336 +322665,190.17,56.308 +322666,188.05,55.985 +322667,186,55.649 +322668,183.98,55.302 +322669,188.81,56.399 +322670,186.74,56.034 +322671,184.71,55.656 +322672,182.73,55.268 +322673,187.45,56.489 +322674,185.42,56.083 +322675,183.43,55.664 +322676,181.48,55.234 +322677,186.08,56.579 +322678,184.09,56.132 +322679,182.15,55.672 +322680,180.24,55.201 +322681,184.72,56.669 +322682,182.77,56.181 +322683,180.87,55.68 +322684,178.99,55.168 +322685,183.36,56.758 +322686,181.45,56.229 +322687,179.58,55.688 +322688,177.75,55.135 +322689,181.99,56.846 +322690,180.13,56.278 +322691,178.3,55.696 +322692,176.51,55.103 +322693,180.62,56.934 +322694,178.81,56.326 +322695,177.02,55.704 +322696,175.27,55.071 +322697,179.25,57.021 +322698,177.48,56.374 +322699,175.74,55.713 +322700,174.03,55.04 +322701,177.88,57.108 +322702,176.16,56.422 +322703,174.46,55.722 +322704,172.79,55.01 +322705,176.51,57.194 +322706,174.84,56.469 +322707,173.19,55.731 +322708,171.55,54.98 +322709,175.14,57.279 +322710,173.51,56.516 +322711,171.91,55.74 +322712,170.32,54.951 +322713,173.77,57.363 +322714,172.19,56.563 +322715,170.63,55.749 +322716,169.09,54.922 +322717,172.39,57.447 +322718,170.86,56.61 +322719,169.35,55.759 +322720,167.85,54.894 +322721,171.02,57.53 +322722,169.54,56.657 +322723,168.07,55.769 +322724,166.62,54.867 +322725,169.64,57.612 +322726,168.21,56.703 +322727,166.8,55.779 +322728,165.39,54.84 +322729,168.26,57.693 +322730,166.88,56.749 +322731,165.52,55.789 +322732,164.17,54.814 +322733,166.89,57.773 +322734,165.56,56.795 +322735,164.24,55.8 +322736,162.94,54.789 +322737,165.51,57.853 +322738,164.23,56.84 +322739,162.97,55.811 +322740,161.71,54.765 +322741,164.13,57.931 +322742,162.9,56.885 +322743,161.69,55.822 +322744,160.49,54.742 +322745,162.75,58.009 +322746,161.58,56.93 +322747,160.41,55.833 +322748,159.26,54.719 +322749,161.37,58.085 +322750,160.25,56.975 +322751,159.14,55.845 +322752,158.04,54.698 +322753,159.99,58.161 +322754,158.92,57.019 +322755,157.86,55.857 +322756,156.82,54.677 +322757,158.6,58.235 +322758,157.59,57.062 +322759,156.59,55.87 +322760,155.6,54.657 +322761,157.22,58.309 +322762,156.26,57.106 +322763,155.31,55.882 +322764,154.38,54.639 +322765,155.84,58.381 +322766,154.93,57.149 +322767,154.04,55.895 +322768,153.16,54.621 +322769,154.45,58.452 +322770,153.6,57.192 +322771,152.76,55.909 +322772,151.94,54.604 +322773,153.07,58.522 +322774,152.27,57.234 +322775,151.49,55.922 +322776,150.72,54.589 +322777,151.69,58.591 +322778,150.94,57.276 +322779,150.22,55.937 +322780,149.51,54.574 +322781,150.3,58.659 +322782,149.61,57.317 +322783,148.94,55.951 +322784,148.29,54.561 +322785,148.91,58.726 +322786,148.28,57.359 +322787,147.67,55.966 +322788,147.07,54.549 +322789,147.53,58.792 +322790,146.95,57.399 +322791,146.39,55.981 +322792,145.86,54.537 +322793,146.14,58.856 +322794,145.62,57.44 +322795,145.12,55.997 +322796,144.65,54.527 +322797,144.76,58.919 +322798,144.29,57.48 +322799,143.85,56.013 +322800,143.43,54.519 +322801,143.37,58.981 +322802,142.96,57.519 +322803,142.57,56.029 +322804,142.22,54.511 +322805,141.98,59.042 +322806,141.63,57.558 +322807,141.3,56.046 +322808,141.01,54.505 +322809,140.6,59.101 +322810,140.3,57.597 +322811,140.03,56.063 +322812,139.79,54.5 +322813,139.21,59.16 +322814,138.97,57.635 +322815,138.75,56.081 +322816,138.58,54.496 +322817,137.82,59.216 +322818,137.63,57.673 +322819,137.48,56.099 +322820,137.37,54.493 +322821,136.44,59.272 +322822,136.3,57.711 +322823,136.21,56.117 +322824,136.16,54.492 +322825,135.05,59.326 +322826,134.97,57.747 +322827,134.94,56.136 +322828,134.94,54.492 +322829,133.66,59.379 +322830,133.64,57.784 +322831,133.66,56.155 +322832,133.73,54.493 +322833,132.28,59.431 +322834,132.31,57.82 +322835,132.39,56.175 +322836,132.52,54.496 +322837,130.89,59.481 +322838,130.98,57.856 +322839,131.11,56.195 +322840,131.31,54.5 +322841,129.5,59.53 +322842,129.65,57.891 +322843,129.84,56.216 +322844,130.1,54.505 +322845,128.12,59.578 +322846,128.31,57.925 +322847,128.57,56.237 +322848,128.89,54.512 +322849,126.73,59.624 +322850,126.98,57.959 +322851,127.29,56.259 +322852,127.67,54.52 +322853,125.35,59.669 +322854,125.65,57.993 +322855,126.02,56.281 +322856,126.46,54.53 +322857,123.96,59.712 +322858,124.32,58.026 +322859,124.75,56.303 +322860,125.25,54.541 +322861,122.57,59.754 +322862,122.99,58.059 +322863,123.47,56.326 +322864,124.04,54.553 +322865,121.19,59.795 +322866,121.66,58.091 +322867,122.2,56.349 +322868,122.82,54.567 +322869,119.81,59.834 +322870,120.33,58.123 +322871,120.92,56.373 +322872,121.61,54.582 +322873,118.42,59.872 +322874,119,58.155 +322875,119.65,56.397 +322876,120.4,54.599 +322877,117.04,59.909 +322878,117.66,58.185 +322879,118.37,56.422 +322880,119.18,54.617 +322881,115.66,59.944 +322882,116.33,58.216 +322883,117.1,56.447 +322884,117.97,54.637 +322885,114.27,59.978 +322886,115,58.246 +322887,115.82,56.473 +322888,116.75,54.658 +322889,112.89,60.01 +322890,113.67,58.275 +322891,114.55,56.499 +322892,115.53,54.68 +322893,111.51,60.041 +322894,112.34,58.304 +322895,113.27,56.526 +322896,114.32,54.704 +322897,110.13,60.07 +322898,111.01,58.332 +322899,112,56.553 +322900,113.1,54.729 +322901,108.75,60.099 +322902,109.68,58.36 +322903,110.72,56.58 +322904,111.88,54.756 +322905,107.37,60.125 +322906,108.35,58.388 +322907,109.44,56.608 +322908,110.66,54.785 +322909,106,60.151 +322910,107.02,58.415 +322911,108.17,56.637 +322912,109.44,54.814 +322913,104.62,60.175 +322914,105.69,58.441 +322915,106.89,56.666 +322916,108.22,54.846 +322917,103.24,60.197 +322918,104.37,58.467 +322919,105.61,56.695 +322920,107,54.878 +322921,101.87,60.218 +322922,103.04,58.493 +322923,104.33,56.725 +322924,105.77,54.912 +322925,100.49,60.238 +322926,101.71,58.518 +322927,103.05,56.755 +322928,104.55,54.948 +322929,99.118,60.256 +322930,100.38,58.543 +322931,101.77,56.786 +322932,103.32,54.985 +322933,97.745,60.273 +322934,99.053,58.567 +322935,100.49,56.818 +322936,102.09,55.023 +322937,96.373,60.289 +322938,97.726,58.59 +322939,99.215,56.849 +322940,100.87,55.063 +322941,95.002,60.303 +322942,96.399,58.614 +322943,97.934,56.881 +322944,99.635,55.104 +322945,93.632,60.316 +322946,95.072,58.636 +322947,96.654,56.914 +322948,98.404,55.147 +322949,92.264,60.328 +322950,93.746,58.659 +322951,95.372,56.947 +322952,97.171,55.191 +322953,90.896,60.338 +322954,92.42,58.68 +322955,94.091,56.981 +322956,95.937,55.236 +322957,89.529,60.347 +322958,91.094,58.702 +322959,92.808,57.015 +322960,94.701,55.283 +322961,88.164,60.355 +322962,89.769,58.723 +322963,91.526,57.049 +322964,93.464,55.331 +322965,86.8,60.361 +322966,88.444,58.743 +322967,90.242,57.084 +322968,92.225,55.38 +322969,85.437,60.366 +322970,87.119,58.763 +322971,88.959,57.119 +322972,90.985,55.431 +322973,84.075,60.37 +322974,85.795,58.783 +322975,87.674,57.155 +322976,89.743,55.483 +322977,82.715,60.373 +322978,84.472,58.802 +322979,86.389,57.191 +322980,88.499,55.536 +322981,81.355,60.374 +322982,83.149,58.82 +322983,85.104,57.227 +322984,87.254,55.591 +322985,79.998,60.374 +322986,81.826,58.839 +322987,83.818,57.264 +322988,86.007,55.647 +322989,78.641,60.373 +322990,80.504,58.857 +322991,82.532,57.301 +322992,84.758,55.704 +322993,77.286,60.371 +322994,79.182,58.874 +322995,81.244,57.339 +322996,83.507,55.763 +322997,75.932,60.367 +322998,77.86,58.891 +322999,79.957,57.377 +323000,82.255,55.822 +323001,74.579,60.363 +323002,76.539,58.908 +323003,78.668,57.416 +323004,81,55.883 +323005,73.228,60.357 +323006,75.219,58.924 +323007,77.38,57.454 +323008,79.744,55.945 +323009,71.879,60.35 +323010,73.899,58.94 +323011,76.09,57.494 +323012,78.486,56.008 +323013,70.531,60.342 +323014,72.58,58.955 +323015,74.8,57.533 +323016,77.226,56.072 +323017,69.184,60.333 +323018,71.261,58.97 +323019,73.509,57.573 +323020,75.963,56.138 +323021,67.839,60.323 +323022,69.942,58.985 +323023,72.218,57.613 +323024,74.699,56.204 +323025,66.495,60.311 +323026,68.624,58.999 +323027,70.926,57.654 +323028,73.433,56.272 +323029,65.153,60.299 +323030,67.307,59.013 +323031,69.633,57.695 +323032,72.165,56.34 +323033,63.813,60.286 +323034,65.99,59.027 +323035,68.339,57.736 +323036,70.895,56.41 +323037,62.474,60.272 +323038,64.674,59.04 +323039,67.045,57.778 +323040,69.623,56.48 +323041,61.137,60.256 +323042,63.358,59.053 +323043,65.751,57.82 +323044,68.348,56.552 +323045,59.801,60.24 +323046,62.043,59.066 +323047,64.455,57.862 +323048,67.072,56.624 +323049,58.467,60.223 +323050,60.728,59.078 +323051,63.159,57.904 +323052,65.793,56.698 +323053,57.135,60.205 +323054,59.414,59.09 +323055,61.862,57.947 +323056,64.513,56.772 +323057,55.804,60.186 +323058,58.101,59.102 +323059,60.565,57.99 +323060,63.23,56.847 +323061,54.475,60.167 +323062,56.788,59.114 +323063,59.267,58.033 +323064,61.945,56.923 +323065,53.148,60.146 +323066,55.475,59.125 +323067,57.968,58.077 +323068,60.658,57 +323069,51.822,60.125 +323070,54.163,59.136 +323071,56.669,58.121 +323072,59.369,57.077 +323073,50.498,60.103 +323074,52.852,59.146 +323075,55.368,58.165 +323076,58.078,57.155 +323077,49.176,60.08 +323078,51.541,59.157 +323079,54.067,58.209 +323080,56.785,57.234 +323081,47.855,60.057 +323082,50.231,59.167 +323083,52.766,58.253 +323084,55.489,57.314 +323085,46.537,60.032 +323086,48.922,59.177 +323087,51.464,58.298 +323088,54.192,57.394 +323089,45.22,60.007 +323090,47.613,59.186 +323091,50.161,58.343 +323092,52.892,57.475 +323093,43.904,59.982 +323094,46.304,59.196 +323095,48.857,58.388 +323096,51.59,57.557 +323097,42.591,59.956 +323098,44.997,59.205 +323099,47.552,58.433 +323100,50.286,57.639 +323101,41.279,59.929 +323102,43.69,59.214 +323103,46.247,58.479 +323104,48.98,57.722 +323105,39.97,59.902 +323106,42.383,59.223 +323107,44.941,58.525 +323108,47.671,57.805 +323109,38.662,59.874 +323110,41.077,59.231 +323111,43.635,58.57 +323112,46.361,57.888 +323113,37.355,59.846 +323114,39.772,59.24 +323115,42.328,58.616 +323116,45.048,57.972 +323117,36.051,59.817 +323118,38.467,59.248 +323119,41.02,58.662 +323120,43.734,58.057 +323121,34.748,59.788 +323122,37.163,59.256 +323123,39.711,58.708 +323124,42.417,58.142 +323125,33.447,59.758 +323126,35.859,59.264 +323127,38.402,58.755 +323128,41.098,58.227 +323129,32.148,59.728 +323130,34.556,59.272 +323131,37.092,58.801 +323132,39.777,58.312 +323133,30.851,59.698 +323134,33.254,59.28 +323135,35.781,58.847 +323136,38.455,58.398 +323137,29.556,59.667 +323138,31.952,59.288 +323139,34.47,58.894 +323140,37.13,58.484 +323141,28.262,59.636 +323142,30.651,59.295 +323143,33.158,58.941 +323144,35.803,58.57 +323145,26.97,59.605 +323146,29.35,59.303 +323147,31.845,58.987 +323148,34.474,58.656 +323149,25.681,59.573 +323150,28.05,59.31 +323151,30.532,59.034 +323152,33.143,58.743 +323153,24.392,59.542 +323154,26.751,59.317 +323155,29.218,59.081 +323156,31.81,58.83 +323157,23.106,59.51 +323158,25.452,59.325 +323159,27.903,59.127 +323160,30.476,58.916 +323161,21.821,59.478 +323162,24.154,59.332 +323163,26.587,59.174 +323164,29.139,59.003 +323165,20.539,59.446 +323166,22.856,59.339 +323167,25.271,59.221 +323168,27.8,59.09 +323169,19.258,59.414 +323170,21.559,59.346 +323171,23.955,59.268 +323172,26.46,59.177 +323173,17.978,59.382 +323174,20.262,59.353 +323175,22.637,59.314 +323176,25.118,59.263 +323177,16.701,59.35 +323178,18.966,59.36 +323179,21.319,59.361 +323180,23.774,59.35 +323181,15.425,59.317 +323182,17.671,59.367 +323183,20.001,59.408 +323184,22.428,59.436 +323185,14.151,59.285 +323186,16.376,59.375 +323187,18.682,59.454 +323188,21.08,59.523 +323189,12.879,59.253 +323190,15.081,59.382 +323191,17.362,59.501 +323192,19.731,59.609 +323193,11.608,59.221 +323194,13.788,59.389 +323195,16.041,59.547 +323196,18.38,59.695 +323197,10.339,59.19 +323198,12.494,59.396 +323199,14.72,59.594 +323200,17.028,59.781 +323201,9.0723,59.158 +323202,11.202,59.403 +323203,13.399,59.64 +323204,15.673,59.866 +323205,7.8068,59.127 +323206,9.9093,59.411 +323207,12.076,59.686 +323208,14.317,59.951 +323209,6.543,59.096 +323210,8.6176,59.418 +323211,10.754,59.732 +323212,12.96,60.036 +323213,5.2808,59.065 +323214,7.3263,59.426 +323215,9.4303,59.778 +323216,11.601,60.121 +323217,4.0203,59.034 +323218,6.0356,59.433 +323219,8.1064,59.824 +323220,10.24,60.205 +323221,2.7613,59.004 +323222,4.7454,59.441 +323223,6.782,59.87 +323224,8.8783,60.288 +323225,1.5039,58.974 +323226,3.4556,59.449 +323227,5.457,59.916 +323228,7.5148,60.372 +323229,0.24813,58.944 +323230,2.1663,59.457 +323231,4.1315,59.961 +323232,6.1499,60.454 +323233,358.99,58.915 +323234,0.87754,59.465 +323235,2.8055,60.006 +323236,4.7837,60.537 +323237,357.74,58.887 +323238,359.59,59.473 +323239,1.479,60.051 +323240,3.416,60.618 +323241,356.49,58.859 +323242,358.3,59.482 +323243,0.15199,60.096 +323244,2.0471,60.699 +323245,355.24,58.831 +323246,357.01,59.49 +323247,358.82,60.141 +323248,0.67688,60.78 +323249,353.99,58.804 +323250,355.73,59.499 +323251,357.5,60.185 +323252,359.31,60.86 +323253,352.74,58.777 +323254,354.44,59.508 +323255,356.17,60.229 +323256,357.93,60.939 +323257,351.5,58.751 +323258,353.15,59.517 +323259,354.84,60.273 +323260,356.56,61.018 +323261,350.26,58.726 +323262,351.87,59.526 +323263,353.51,60.317 +323264,355.18,61.096 +323265,349.01,58.701 +323266,350.58,59.536 +323267,352.18,60.36 +323268,353.81,61.173 +323269,347.77,58.677 +323270,349.3,59.546 +323271,350.85,60.404 +323272,352.43,61.249 +323273,346.53,58.654 +323274,348.01,59.556 +323275,349.52,60.447 +323276,351.05,61.325 +323277,345.29,58.631 +323278,346.73,59.566 +323279,348.19,60.489 +323280,349.67,61.4 +323281,344.05,58.61 +323282,345.44,59.577 +323283,346.86,60.532 +323284,348.29,61.474 +323285,342.82,58.589 +323286,344.16,59.587 +323287,345.53,60.574 +323288,346.91,61.547 +323289,341.58,58.568 +323290,342.88,59.598 +323291,344.19,60.616 +323292,345.53,61.619 +323293,340.35,58.549 +323294,341.59,59.61 +323295,342.86,60.657 +323296,344.15,61.69 +323297,339.11,58.53 +323298,340.31,59.621 +323299,341.53,60.698 +323300,342.76,61.761 +323301,337.88,58.513 +323302,339.03,59.633 +323303,340.2,60.739 +323304,341.38,61.83 +323305,336.65,58.496 +323306,337.75,59.645 +323307,338.86,60.78 +323308,340,61.899 +323309,335.42,58.48 +323310,336.47,59.658 +323311,337.53,60.82 +323312,338.61,61.966 +323313,334.19,58.465 +323314,335.18,59.67 +323315,336.19,60.86 +323316,337.22,62.033 +323317,332.96,58.452 +323318,333.9,59.683 +323319,334.86,60.899 +323320,335.84,62.098 +323321,331.73,58.439 +323322,332.62,59.697 +323323,333.53,60.939 +323324,334.45,62.163 +323325,330.51,58.427 +323326,331.34,59.71 +323327,332.19,60.977 +323328,333.06,62.226 +323329,329.28,58.416 +323330,330.06,59.725 +323331,330.86,61.016 +323332,331.67,62.289 +323333,328.06,58.406 +323334,328.78,59.739 +323335,329.52,61.054 +323336,330.28,62.35 +323337,326.83,58.398 +323338,327.5,59.754 +323339,328.19,61.092 +323340,328.89,62.41 +323341,325.61,58.39 +323342,326.22,59.769 +323343,326.85,61.129 +323344,327.5,62.469 +323345,324.38,58.383 +323346,324.94,59.784 +323347,325.52,61.166 +323348,326.11,62.527 +323349,323.16,58.378 +323350,323.66,59.8 +323351,324.18,61.202 +323352,324.72,62.584 +323353,321.94,58.374 +323354,322.38,59.816 +323355,322.84,61.238 +323356,323.33,62.639 +323357,320.71,58.371 +323358,321.1,59.833 +323359,321.51,61.274 +323360,321.94,62.694 +323361,319.49,58.369 +323362,319.82,59.85 +323363,320.17,61.309 +323364,320.55,62.747 +323365,318.27,58.368 +323366,318.54,59.867 +323367,318.84,61.344 +323368,319.16,62.799 +323369,317.05,58.369 +323370,317.26,59.885 +323371,317.5,61.379 +323372,317.77,62.85 +323373,315.83,58.371 +323374,315.98,59.903 +323375,316.16,61.413 +323376,316.38,62.899 +323377,314.61,58.374 +323378,314.7,59.922 +323379,314.83,61.446 +323380,314.99,62.947 +323381,313.39,58.378 +323382,313.42,59.941 +323383,313.49,61.48 +323384,313.6,62.994 +323385,312.17,58.383 +323386,312.14,59.96 +323387,312.15,61.512 +323388,312.21,63.04 +323389,310.95,58.39 +323390,310.86,59.98 +323391,310.82,61.545 +323392,310.81,63.085 +323393,309.73,58.398 +323394,309.58,60 +323395,309.48,61.577 +323396,309.42,63.128 +323397,308.51,58.408 +323398,308.3,60.021 +323399,308.14,61.608 +323400,308.03,63.17 +323401,307.29,58.418 +323402,307.02,60.042 +323403,306.81,61.639 +323404,306.64,63.21 +323405,306.07,58.43 +323406,305.74,60.063 +323407,305.47,61.67 +323408,305.25,63.25 +323409,304.85,58.444 +323410,304.46,60.085 +323411,304.13,61.7 +323412,303.86,63.288 +323413,303.63,58.458 +323414,303.18,60.107 +323415,302.8,61.729 +323416,302.47,63.325 +323417,302.4,58.474 +323418,301.9,60.13 +323419,301.46,61.758 +323420,301.08,63.36 +323421,301.18,58.491 +323422,300.62,60.153 +323423,300.13,61.787 +323424,299.69,63.394 +323425,299.96,58.51 +323426,299.34,60.176 +323427,298.79,61.815 +323428,298.3,63.427 +323429,298.74,58.53 +323430,298.06,60.2 +323431,297.45,61.843 +323432,296.92,63.458 +323433,297.52,58.551 +323434,296.78,60.225 +323435,296.12,61.871 +323436,295.53,63.488 +323437,296.29,58.574 +323438,295.5,60.25 +323439,294.78,61.898 +323440,294.14,63.517 +323441,295.07,58.598 +323442,294.21,60.275 +323443,293.45,61.924 +323444,292.76,63.545 +323445,293.84,58.623 +323446,292.93,60.301 +323447,292.11,61.95 +323448,291.37,63.571 +323449,292.62,58.649 +323450,291.65,60.327 +323451,290.78,61.976 +323452,289.98,63.596 +323453,291.39,58.677 +323454,290.37,60.353 +323455,289.44,62.001 +323456,288.6,63.619 +323457,290.17,58.707 +323458,289.09,60.38 +323459,288.11,62.025 +323460,287.22,63.642 +323461,288.94,58.737 +323462,287.8,60.408 +323463,286.77,62.05 +323464,285.83,63.662 +323465,287.71,58.769 +323466,286.52,60.436 +323467,285.44,62.073 +323468,284.45,63.682 +323469,286.48,58.803 +323470,285.24,60.464 +323471,284.1,62.097 +323472,283.07,63.7 +323473,285.25,58.837 +323474,283.95,60.493 +323475,282.77,62.119 +323476,281.69,63.717 +323477,284.02,58.873 +323478,282.67,60.522 +323479,281.44,62.142 +323480,280.31,63.733 +323481,282.79,58.91 +323482,281.39,60.551 +323483,280.1,62.164 +323484,278.93,63.748 +323485,281.55,58.949 +323486,280.1,60.581 +323487,278.77,62.185 +323488,277.55,63.761 +323489,280.32,58.989 +323490,278.82,60.612 +323491,277.44,62.206 +323492,276.17,63.773 +323493,279.08,59.03 +323494,277.53,60.643 +323495,276.11,62.227 +323496,274.8,63.783 +323497,277.85,59.072 +323498,276.24,60.674 +323499,274.77,62.247 +323500,273.42,63.793 +323501,276.61,59.116 +323502,274.96,60.705 +323503,273.44,62.267 +323504,272.05,63.801 +323505,275.37,59.161 +323506,273.67,60.737 +323507,272.11,62.286 +323508,270.67,63.808 +323509,274.13,59.207 +323510,272.38,60.77 +323511,270.78,62.305 +323512,269.3,63.813 +323513,272.89,59.254 +323514,271.1,60.803 +323515,269.45,62.324 +323516,267.93,63.818 +323517,271.64,59.303 +323518,269.81,60.836 +323519,268.12,62.342 +323520,266.56,63.821 +323521,270.4,59.353 +323522,268.52,60.869 +323523,266.79,62.359 +323524,265.19,63.823 +323525,269.15,59.404 +323526,267.23,60.903 +323527,265.46,62.377 +323528,263.82,63.824 +323529,267.9,59.456 +323530,265.94,60.938 +323531,264.13,62.393 +323532,262.46,63.824 +323533,266.65,59.509 +323534,264.65,60.972 +323535,262.8,62.41 +323536,261.09,63.822 +323537,265.4,59.564 +323538,263.36,61.007 +323539,261.48,62.426 +323540,259.73,63.82 +323541,264.15,59.619 +323542,262.07,61.043 +323543,260.15,62.442 +323544,258.37,63.816 +323545,262.89,59.676 +323546,260.78,61.079 +323547,258.82,62.457 +323548,257.01,63.811 +323549,261.64,59.734 +323550,259.48,61.115 +323551,257.5,62.472 +323552,255.65,63.805 +323553,260.38,59.792 +323554,258.19,61.151 +323555,256.17,62.486 +323556,254.29,63.798 +323557,259.12,59.852 +323558,256.9,61.188 +323559,254.84,62.501 +323560,252.93,63.791 +323561,257.86,59.913 +323562,255.6,61.225 +323563,253.52,62.514 +323564,251.58,63.782 +323565,256.6,59.975 +323566,254.31,61.263 +323567,252.19,62.528 +323568,250.22,63.772 +323569,255.33,60.038 +323570,253.01,61.301 +323571,250.87,62.541 +323572,248.87,63.761 +323573,254.06,60.102 +323574,251.72,61.339 +323575,249.55,62.554 +323576,247.52,63.749 +323577,252.8,60.167 +323578,250.42,61.377 +323579,248.22,62.566 +323580,246.17,63.736 +323581,251.52,60.232 +323582,249.13,61.416 +323583,246.9,62.579 +323584,244.82,63.722 +323585,250.25,60.299 +323586,247.83,61.455 +323587,245.58,62.59 +323588,243.47,63.707 +323589,248.98,60.366 +323590,246.53,61.494 +323591,244.26,62.602 +323592,242.13,63.691 +323593,247.7,60.435 +323594,245.23,61.533 +323595,242.93,62.613 +323596,240.78,63.675 +323597,246.42,60.504 +323598,243.93,61.573 +323599,241.61,62.624 +323600,239.44,63.657 +323601,245.14,60.574 +323602,242.63,61.613 +323603,240.29,62.635 +323604,238.1,63.639 +323605,243.86,60.644 +323606,241.33,61.654 +323607,238.97,62.645 +323608,236.76,63.62 +323609,242.58,60.716 +323610,240.03,61.694 +323611,237.66,62.655 +323612,235.43,63.6 +323613,241.29,60.788 +323614,238.73,61.735 +323615,236.34,62.665 +323616,234.09,63.58 +323617,240,60.861 +323618,237.43,61.776 +323619,235.02,62.675 +323620,232.76,63.559 +323621,238.71,60.934 +323622,236.12,61.817 +323623,233.7,62.684 +323624,231.43,63.537 +323625,237.42,61.009 +323626,234.82,61.858 +323627,232.39,62.693 +323628,230.1,63.514 +323629,236.12,61.083 +323630,233.51,61.9 +323631,231.07,62.702 +323632,228.77,63.491 +323633,234.83,61.159 +323634,232.21,61.942 +323635,229.75,62.711 +323636,227.44,63.467 +323637,233.53,61.235 +323638,230.9,61.984 +323639,228.44,62.719 +323640,226.11,63.442 +323641,232.23,61.311 +323642,229.6,62.026 +323643,227.12,62.727 +323644,224.79,63.417 +323645,230.93,61.388 +323646,228.29,62.068 +323647,225.81,62.736 +323648,223.47,63.391 +323649,229.62,61.465 +323650,226.98,62.11 +323651,224.5,62.743 +323652,222.15,63.365 +323653,228.31,61.543 +323654,225.67,62.153 +323655,223.18,62.751 +323656,220.83,63.339 +323657,227.01,61.622 +323658,224.36,62.196 +323659,221.87,62.759 +323660,219.52,63.311 +323661,225.69,61.7 +323662,223.05,62.239 +323663,220.56,62.766 +323664,218.2,63.284 +323665,224.38,61.779 +323666,221.74,62.281 +323667,219.25,62.773 +323668,216.89,63.256 +323669,223.07,61.859 +323670,220.43,62.325 +323671,217.94,62.78 +323672,215.58,63.228 +323673,221.75,61.938 +323674,219.12,62.368 +323675,216.63,62.787 +323676,214.27,63.199 +323677,220.43,62.018 +323678,217.81,62.411 +323679,215.32,62.794 +323680,212.96,63.17 +323681,219.11,62.098 +323682,216.49,62.454 +323683,214.01,62.801 +323684,211.65,63.14 +323685,217.79,62.178 +323686,215.18,62.497 +323687,212.71,62.808 +323688,210.35,63.111 +323689,216.46,62.259 +323690,213.86,62.541 +323691,211.4,62.814 +323692,209.05,63.081 +323693,215.14,62.339 +323694,212.55,62.584 +323695,210.09,62.821 +323696,207.75,63.051 +323697,213.81,62.42 +323698,211.23,62.628 +323699,208.79,62.827 +323700,206.45,63.021 +323701,212.48,62.501 +323702,209.92,62.671 +323703,207.48,62.834 +323704,205.15,62.99 +323705,211.14,62.582 +323706,208.6,62.715 +323707,206.18,62.84 +323708,203.86,62.96 +323709,209.81,62.663 +323710,207.28,62.758 +323711,204.87,62.846 +323712,202.56,62.929 +323713,208.47,62.744 +323714,205.96,62.802 +323715,203.57,62.853 +323716,201.27,62.898 +323717,207.13,62.824 +323718,204.64,62.845 +323719,202.26,62.859 +323720,199.98,62.867 +323721,205.79,62.905 +323722,203.32,62.889 +323723,200.96,62.865 +323724,198.69,62.837 +323725,204.45,62.986 +323726,202,62.932 +323727,199.66,62.872 +323728,197.41,62.806 +323729,203.11,63.066 +323730,200.68,62.975 +323731,198.36,62.878 +323732,196.12,62.775 +323733,201.76,63.147 +323734,199.36,63.019 +323735,197.06,62.884 +323736,194.84,62.745 +323737,200.41,63.227 +323738,198.04,63.062 +323739,195.76,62.89 +323740,193.56,62.714 +323741,199.07,63.307 +323742,196.72,63.105 +323743,194.46,62.897 +323744,192.28,62.684 +323745,197.71,63.386 +323746,195.39,63.148 +323747,193.16,62.903 +323748,191,62.654 +323749,196.36,63.466 +323750,194.07,63.191 +323751,191.86,62.91 +323752,189.72,62.624 +323753,195.01,63.545 +323754,192.74,63.234 +323755,190.56,62.916 +323756,188.45,62.594 +323757,193.65,63.624 +323758,191.42,63.277 +323759,189.26,62.923 +323760,187.18,62.565 +323761,192.29,63.702 +323762,190.09,63.319 +323763,187.97,62.93 +323764,185.91,62.536 +323765,190.94,63.78 +323766,188.77,63.362 +323767,186.67,62.937 +323768,184.64,62.507 +323769,189.58,63.858 +323770,187.44,63.404 +323771,185.37,62.944 +323772,183.37,62.478 +323773,188.21,63.935 +323774,186.11,63.446 +323775,184.08,62.951 +323776,182.1,62.45 +323777,186.85,64.012 +323778,184.78,63.488 +323779,182.78,62.958 +323780,180.84,62.422 +323781,185.48,64.088 +323782,183.46,63.53 +323783,181.49,62.965 +323784,179.57,62.395 +323785,184.12,64.164 +323786,182.13,63.572 +323787,180.19,62.973 +323788,178.31,62.368 +323789,182.75,64.239 +323790,180.8,63.613 +323791,178.9,62.98 +323792,177.05,62.342 +323793,181.38,64.313 +323794,179.47,63.654 +323795,177.61,62.988 +323796,175.79,62.316 +323797,180.01,64.387 +323798,178.14,63.695 +323799,176.31,62.996 +323800,174.53,62.291 +323801,178.64,64.46 +323802,176.81,63.736 +323803,175.02,63.004 +323804,173.28,62.266 +323805,177.27,64.533 +323806,175.47,63.777 +323807,173.73,63.013 +323808,172.02,62.242 +323809,175.89,64.605 +323810,174.14,63.817 +323811,172.44,63.021 +323812,170.77,62.218 +323813,174.52,64.676 +323814,172.81,63.857 +323815,171.15,63.03 +323816,169.52,62.196 +323817,173.14,64.747 +323818,171.48,63.897 +323819,169.86,63.039 +323820,168.27,62.173 +323821,171.76,64.816 +323822,170.15,63.937 +323823,168.57,63.048 +323824,167.02,62.152 +323825,170.38,64.885 +323826,168.81,63.976 +323827,167.28,63.058 +323828,165.77,62.131 +323829,169,64.953 +323830,167.48,64.015 +323831,165.99,63.067 +323832,164.52,62.111 +323833,167.62,65.021 +323834,166.14,64.054 +323835,164.7,63.077 +323836,163.28,62.092 +323837,166.24,65.087 +323838,164.81,64.093 +323839,163.41,63.088 +323840,162.03,62.074 +323841,164.86,65.153 +323842,163.47,64.131 +323843,162.12,63.098 +323844,160.79,62.056 +323845,163.48,65.218 +323846,162.14,64.169 +323847,160.83,63.109 +323848,159.55,62.039 +323849,162.09,65.281 +323850,160.8,64.207 +323851,159.54,63.12 +323852,158.31,62.023 +323853,160.71,65.344 +323854,159.47,64.244 +323855,158.26,63.131 +323856,157.07,62.008 +323857,159.32,65.406 +323858,158.13,64.281 +323859,156.97,63.143 +323860,155.83,61.994 +323861,157.93,65.467 +323862,156.79,64.317 +323863,155.68,63.155 +323864,154.59,61.981 +323865,156.55,65.527 +323866,155.46,64.354 +323867,154.39,63.167 +323868,153.35,61.969 +323869,155.16,65.586 +323870,154.12,64.39 +323871,153.11,63.18 +323872,152.12,61.958 +323873,153.77,65.644 +323874,152.78,64.425 +323875,151.82,63.192 +323876,150.88,61.947 +323877,152.38,65.701 +323878,151.45,64.461 +323879,150.53,63.206 +323880,149.65,61.938 +323881,150.99,65.757 +323882,150.11,64.495 +323883,149.25,63.219 +323884,148.41,61.93 +323885,149.6,65.812 +323886,148.77,64.53 +323887,147.96,63.233 +323888,147.18,61.923 +323889,148.21,65.866 +323890,147.43,64.564 +323891,146.68,63.247 +323892,145.95,61.917 +323893,146.82,65.919 +323894,146.09,64.598 +323895,145.39,63.262 +323896,144.71,61.911 +323897,145.43,65.97 +323898,144.75,64.631 +323899,144.11,63.277 +323900,143.48,61.908 +323901,144.03,66.021 +323902,143.42,64.664 +323903,142.82,63.292 +323904,142.25,61.905 +323905,142.64,66.07 +323906,142.08,64.697 +323907,141.54,63.308 +323908,141.02,61.903 +323909,141.25,66.118 +323910,140.74,64.729 +323911,140.25,63.324 +323912,139.79,61.902 +323913,139.86,66.165 +323914,139.4,64.761 +323915,138.97,63.34 +323916,138.56,61.903 +323917,138.46,66.211 +323918,138.06,64.793 +323919,137.68,63.357 +323920,137.34,61.905 +323921,137.07,66.256 +323922,136.72,64.824 +323923,136.4,63.374 +323924,136.11,61.908 +323925,135.68,66.299 +323926,135.38,64.854 +323927,135.11,63.391 +323928,134.88,61.912 +323929,134.28,66.342 +323930,134.04,64.884 +323931,133.83,63.409 +323932,133.65,61.917 +323933,132.89,66.383 +323934,132.7,64.914 +323935,132.55,63.427 +323936,132.42,61.923 +323937,131.5,66.423 +323938,131.36,64.944 +323939,131.26,63.446 +323940,131.2,61.931 +323941,130.1,66.461 +323942,130.02,64.973 +323943,129.98,63.465 +323944,129.97,61.94 +323945,128.71,66.499 +323946,128.68,65.001 +323947,128.69,63.485 +323948,128.74,61.95 +323949,127.32,66.535 +323950,127.34,65.029 +323951,127.41,63.505 +323952,127.51,61.962 +323953,125.92,66.57 +323954,126,65.057 +323955,126.12,63.525 +323956,126.29,61.974 +323957,124.53,66.604 +323958,124.66,65.084 +323959,124.84,63.546 +323960,125.06,61.988 +323961,123.14,66.636 +323962,123.33,65.111 +323963,123.56,63.567 +323964,123.83,62.003 +323965,121.75,66.667 +323966,121.99,65.138 +323967,122.27,63.588 +323968,122.61,62.02 +323969,120.35,66.697 +323970,120.65,65.164 +323971,120.99,63.61 +323972,121.38,62.038 +323973,118.96,66.726 +323974,119.31,65.189 +323975,119.7,63.632 +323976,120.15,62.057 +323977,117.57,66.753 +323978,117.97,65.214 +323979,118.42,63.655 +323980,118.92,62.077 +323981,116.18,66.78 +323982,116.63,65.239 +323983,117.13,63.678 +323984,117.69,62.098 +323985,114.79,66.805 +323986,115.29,65.263 +323987,115.85,63.702 +323988,116.46,62.121 +323989,113.4,66.828 +323990,113.95,65.287 +323991,114.56,63.726 +323992,115.23,62.145 +323993,112.01,66.851 +323994,112.61,65.31 +323995,113.27,63.75 +323996,114,62.17 +323997,110.62,66.872 +323998,111.27,65.333 +323999,111.99,63.775 +324000,112.77,62.197 +324001,109.23,66.892 +324002,109.94,65.356 +324003,110.7,63.8 +324004,111.54,62.225 +324005,107.85,66.911 +324006,108.6,65.378 +324007,109.42,63.825 +324008,110.31,62.254 +324009,106.46,66.928 +324010,107.26,65.4 +324011,108.13,63.851 +324012,109.08,62.284 +324013,105.07,66.944 +324014,105.92,65.421 +324015,106.84,63.878 +324016,107.85,62.316 +324017,103.69,66.959 +324018,104.58,65.442 +324019,105.56,63.905 +324020,106.61,62.349 +324021,102.3,66.973 +324022,103.25,65.462 +324023,104.27,63.932 +324024,105.38,62.383 +324025,100.92,66.985 +324026,101.91,65.482 +324027,102.98,63.959 +324028,104.14,62.418 +324029,99.533,66.997 +324030,100.57,65.502 +324031,101.69,63.987 +324032,102.91,62.455 +324033,98.151,67.007 +324034,99.236,65.521 +324035,100.41,64.016 +324036,101.67,62.493 +324037,96.769,67.016 +324038,97.9,65.539 +324039,99.117,64.045 +324040,100.43,62.532 +324041,95.388,67.023 +324042,96.564,65.558 +324043,97.828,64.074 +324044,99.192,62.572 +324045,94.008,67.03 +324046,95.228,65.576 +324047,96.539,64.103 +324048,97.952,62.614 +324049,92.629,67.035 +324050,93.893,65.593 +324051,95.249,64.133 +324052,96.711,62.656 +324053,91.251,67.039 +324054,92.558,65.61 +324055,93.959,64.164 +324056,95.469,62.7 +324057,89.875,67.042 +324058,91.223,65.627 +324059,92.669,64.194 +324060,94.225,62.745 +324061,88.499,67.044 +324062,89.889,65.643 +324063,91.378,64.225 +324064,92.98,62.791 +324065,87.124,67.045 +324066,88.555,65.659 +324067,90.087,64.257 +324068,91.734,62.839 +324069,85.75,67.045 +324070,87.221,65.675 +324071,88.795,64.289 +324072,90.487,62.887 +324073,84.378,67.043 +324074,85.888,65.69 +324075,87.503,64.321 +324076,89.238,62.936 +324077,83.006,67.04 +324078,84.555,65.705 +324079,86.211,64.353 +324080,87.989,62.987 +324081,81.636,67.037 +324082,83.223,65.719 +324083,84.918,64.386 +324084,86.737,63.039 +324085,80.267,67.032 +324086,81.891,65.733 +324087,83.625,64.419 +324088,85.485,63.091 +324089,78.9,67.026 +324090,80.559,65.747 +324091,82.331,64.453 +324092,84.23,63.145 +324093,77.533,67.02 +324094,79.228,65.76 +324095,81.036,64.487 +324096,82.975,63.2 +324097,76.168,67.012 +324098,77.897,65.773 +324099,79.741,64.521 +324100,81.717,63.256 +324101,74.804,67.003 +324102,76.567,65.786 +324103,78.446,64.555 +324104,80.459,63.313 +324105,73.442,66.993 +324106,75.237,65.798 +324107,77.15,64.59 +324108,79.198,63.37 +324109,72.08,66.982 +324110,73.908,65.81 +324111,75.854,64.625 +324112,77.936,63.429 +324113,70.721,66.971 +324114,72.579,65.822 +324115,74.557,64.661 +324116,76.673,63.489 +324117,69.362,66.958 +324118,71.25,65.833 +324119,73.259,64.697 +324120,75.408,63.549 +324121,68.005,66.944 +324122,69.922,65.844 +324123,71.961,64.733 +324124,74.141,63.611 +324125,66.65,66.93 +324126,68.595,65.855 +324127,70.663,64.769 +324128,72.872,63.673 +324129,65.296,66.915 +324130,67.268,65.865 +324131,69.363,64.805 +324132,71.602,63.736 +324133,63.943,66.899 +324134,65.941,65.875 +324135,68.064,64.842 +324136,70.329,63.8 +324137,62.592,66.882 +324138,64.615,65.885 +324139,66.763,64.879 +324140,69.056,63.865 +324141,61.243,66.864 +324142,63.29,65.895 +324143,65.462,64.917 +324144,67.78,63.93 +324145,59.895,66.845 +324146,61.965,65.904 +324147,64.161,64.954 +324148,66.502,63.997 +324149,58.548,66.826 +324150,60.641,65.913 +324151,62.859,64.992 +324152,65.223,64.064 +324153,57.203,66.806 +324154,59.317,65.922 +324155,61.556,65.03 +324156,63.942,64.131 +324157,55.86,66.785 +324158,57.993,65.93 +324159,60.253,65.069 +324160,62.658,64.2 +324161,54.519,66.764 +324162,56.671,65.939 +324163,58.949,65.107 +324164,61.373,64.269 +324165,53.178,66.742 +324166,55.348,65.947 +324167,57.644,65.146 +324168,60.087,64.339 +324169,51.84,66.719 +324170,54.027,65.955 +324171,56.339,65.185 +324172,58.798,64.409 +324173,50.503,66.695 +324174,52.706,65.962 +324175,55.034,65.224 +324176,57.507,64.48 +324177,49.168,66.671 +324178,51.385,65.97 +324179,53.727,65.263 +324180,56.214,64.551 +324181,47.835,66.647 +324182,50.065,65.977 +324183,52.42,65.302 +324184,54.92,64.623 +324185,46.503,66.622 +324186,48.746,65.984 +324187,51.112,65.342 +324188,53.623,64.696 +324189,45.173,66.596 +324190,47.427,65.991 +324191,49.804,65.382 +324192,52.325,64.769 +324193,43.844,66.57 +324194,46.109,65.998 +324195,48.495,65.422 +324196,51.024,64.842 +324197,42.517,66.544 +324198,44.791,66.004 +324199,47.186,65.462 +324200,49.722,64.916 +324201,41.192,66.517 +324202,43.474,66.011 +324203,45.875,65.502 +324204,48.417,64.99 +324205,39.869,66.489 +324206,42.157,66.017 +324207,44.565,65.542 +324208,47.111,65.064 +324209,38.547,66.461 +324210,40.841,66.023 +324211,43.253,65.582 +324212,45.803,65.139 +324213,37.228,66.433 +324214,39.526,66.029 +324215,41.941,65.623 +324216,44.492,65.214 +324217,35.909,66.405 +324218,38.211,66.035 +324219,40.628,65.663 +324220,43.18,65.29 +324221,34.593,66.376 +324222,36.897,66.041 +324223,39.315,65.704 +324224,41.866,65.365 +324225,33.278,66.347 +324226,35.583,66.046 +324227,38.001,65.745 +324228,40.549,65.441 +324229,31.965,66.318 +324230,34.27,66.052 +324231,36.686,65.785 +324232,39.231,65.517 +324233,30.654,66.288 +324234,32.958,66.058 +324235,35.371,65.826 +324236,37.911,65.593 +324237,29.345,66.259 +324238,31.646,66.063 +324239,34.055,65.867 +324240,36.589,65.67 +324241,28.037,66.229 +324242,30.335,66.068 +324243,32.738,65.908 +324244,35.265,65.746 +324245,26.731,66.199 +324246,29.024,66.074 +324247,31.421,65.949 +324248,33.939,65.823 +324249,25.427,66.169 +324250,27.714,66.079 +324251,30.103,65.99 +324252,32.611,65.899 +324253,24.124,66.138 +324254,26.404,66.084 +324255,28.784,66.03 +324256,31.282,65.976 +324257,22.824,66.108 +324258,25.095,66.09 +324259,27.465,66.071 +324260,29.95,66.052 +324261,21.525,66.078 +324262,23.787,66.095 +324263,26.145,66.112 +324264,28.616,66.129 +324265,20.227,66.048 +324266,22.479,66.1 +324267,24.825,66.153 +324268,27.281,66.205 +324269,18.932,66.017 +324270,21.172,66.105 +324271,23.504,66.194 +324272,25.944,66.282 +324273,17.638,65.987 +324274,19.865,66.111 +324275,22.182,66.235 +324276,24.605,66.358 +324277,16.346,65.957 +324278,18.559,66.116 +324279,20.86,66.275 +324280,23.264,66.434 +324281,15.055,65.927 +324282,17.253,66.121 +324283,19.537,66.316 +324284,21.921,66.51 +324285,13.766,65.898 +324286,15.948,66.127 +324287,18.214,66.356 +324288,20.577,66.585 +324289,12.479,65.868 +324290,14.644,66.132 +324291,16.89,66.397 +324292,19.231,66.661 +324293,11.194,65.839 +324294,13.34,66.138 +324295,15.565,66.437 +324296,17.883,66.736 +324297,9.9101,65.809 +324298,12.036,66.143 +324299,14.24,66.478 +324300,16.533,66.811 +324301,8.6279,65.781 +324302,10.733,66.149 +324303,12.914,66.518 +324304,15.182,66.885 +324305,7.3474,65.752 +324306,9.4312,66.155 +324307,11.588,66.558 +324308,13.829,66.959 +324309,6.0685,65.724 +324310,8.1294,66.161 +324311,10.261,66.598 +324312,12.475,67.033 +324313,4.7912,65.696 +324314,6.8281,66.167 +324315,8.9336,66.638 +324316,11.118,67.107 +324317,3.5155,65.668 +324318,5.5273,66.173 +324319,7.6056,66.677 +324320,9.7607,67.18 +324321,2.2413,65.641 +324322,4.227,66.179 +324323,6.2771,66.717 +324324,8.4014,67.252 +324325,0.96874,65.614 +324326,2.9273,66.186 +324327,4.948,66.756 +324328,7.0405,67.324 +324329,359.7,65.588 +324330,1.628,66.192 +324331,3.6184,66.795 +324332,5.6781,67.396 +324333,358.43,65.563 +324334,0.32921,66.199 +324335,2.2884,66.834 +324336,4.3143,67.467 +324337,357.16,65.537 +324338,359.03,66.206 +324339,0.95776,66.873 +324340,2.949,67.537 +324341,355.89,65.513 +324342,357.73,66.213 +324343,359.63,66.911 +324344,1.5824,67.607 +324345,354.63,65.488 +324346,356.44,66.22 +324347,358.3,66.95 +324348,0.21428,67.676 +324349,353.36,65.465 +324350,355.14,66.228 +324351,356.96,66.988 +324352,358.84,67.744 +324353,352.1,65.442 +324354,353.84,66.235 +324355,355.63,67.026 +324356,357.47,67.812 +324357,350.84,65.42 +324358,352.55,66.243 +324359,354.3,67.064 +324360,356.1,67.88 +324361,349.58,65.398 +324362,351.25,66.251 +324363,352.96,67.101 +324364,354.73,67.946 +324365,348.32,65.377 +324366,349.96,66.259 +324367,351.63,67.138 +324368,353.35,68.012 +324369,347.07,65.357 +324370,348.66,66.268 +324371,350.3,67.175 +324372,351.98,68.077 +324373,345.81,65.337 +324374,347.37,66.277 +324375,348.96,67.212 +324376,350.6,68.141 +324377,344.56,65.319 +324378,346.07,66.286 +324379,347.63,67.248 +324380,349.22,68.205 +324381,343.3,65.301 +324382,344.78,66.295 +324383,346.29,67.284 +324384,347.84,68.267 +324385,342.05,65.284 +324386,343.49,66.304 +324387,344.95,67.32 +324388,346.46,68.329 +324389,340.8,65.267 +324390,342.19,66.314 +324391,343.62,67.356 +324392,345.08,68.39 +324393,339.55,65.252 +324394,340.9,66.324 +324395,342.28,67.391 +324396,343.7,68.45 +324397,338.3,65.237 +324398,339.61,66.335 +324399,340.95,67.426 +324400,342.32,68.51 +324401,337.05,65.223 +324402,338.32,66.345 +324403,339.61,67.461 +324404,340.93,68.568 +324405,335.81,65.211 +324406,337.02,66.356 +324407,338.27,67.495 +324408,339.55,68.625 +324409,334.56,65.199 +324410,335.73,66.368 +324411,336.93,67.529 +324412,338.16,68.682 +324413,333.32,65.188 +324414,334.44,66.379 +324415,335.59,67.563 +324416,336.78,68.737 +324417,332.07,65.178 +324418,333.15,66.391 +324419,334.26,67.596 +324420,335.39,68.792 +324421,330.83,65.169 +324422,331.86,66.403 +324423,332.92,67.629 +324424,334,68.845 +324425,329.59,65.161 +324426,330.57,66.416 +324427,331.58,67.662 +324428,332.61,68.898 +324429,328.35,65.154 +324430,329.28,66.429 +324431,330.24,67.694 +324432,331.22,68.949 +324433,327.11,65.148 +324434,327.99,66.442 +324435,328.9,67.726 +324436,329.84,69 +324437,325.87,65.143 +324438,326.7,66.455 +324439,327.56,67.758 +324440,328.44,69.049 +324441,324.63,65.139 +324442,325.41,66.469 +324443,326.22,67.789 +324444,327.05,69.098 +324445,323.39,65.137 +324446,324.12,66.483 +324447,324.88,67.82 +324448,325.66,69.145 +324449,322.15,65.135 +324450,322.83,66.498 +324451,323.54,67.85 +324452,324.27,69.191 +324453,320.92,65.135 +324454,321.54,66.513 +324455,322.2,67.881 +324456,322.88,69.236 +324457,319.68,65.135 +324458,320.26,66.528 +324459,320.86,67.91 +324460,321.49,69.28 +324461,318.44,65.137 +324462,318.97,66.544 +324463,319.52,67.94 +324464,320.09,69.323 +324465,317.21,65.14 +324466,317.68,66.56 +324467,318.18,67.969 +324468,318.7,69.365 +324469,315.97,65.144 +324470,316.39,66.576 +324471,316.83,67.997 +324472,317.31,69.405 +324473,314.74,65.149 +324474,315.1,66.593 +324475,315.49,68.025 +324476,315.91,69.444 +324477,313.51,65.155 +324478,313.81,66.61 +324479,314.15,68.053 +324480,314.52,69.483 +324481,312.27,65.163 +324482,312.53,66.628 +324483,312.81,68.081 +324484,313.12,69.52 +324485,311.04,65.172 +324486,311.24,66.646 +324487,311.47,68.108 +324488,311.73,69.556 +324489,309.8,65.182 +324490,309.95,66.664 +324491,310.13,68.134 +324492,310.34,69.59 +324493,308.57,65.193 +324494,308.66,66.683 +324495,308.79,68.16 +324496,308.94,69.624 +324497,307.34,65.205 +324498,307.37,66.702 +324499,307.44,68.186 +324500,307.55,69.656 +324501,306.11,65.219 +324502,306.09,66.722 +324503,306.1,68.212 +324504,306.15,69.687 +324505,304.87,65.234 +324506,304.8,66.742 +324507,304.76,68.237 +324508,304.76,69.717 +324509,303.64,65.25 +324510,303.51,66.762 +324511,303.42,68.261 +324512,303.37,69.746 +324513,302.41,65.267 +324514,302.22,66.783 +324515,302.08,68.285 +324516,301.97,69.774 +324517,301.17,65.285 +324518,300.93,66.804 +324519,300.74,68.309 +324520,300.58,69.8 +324521,299.94,65.305 +324522,299.65,66.825 +324523,299.39,68.332 +324524,299.18,69.825 +324525,298.71,65.326 +324526,298.36,66.847 +324527,298.05,68.355 +324528,297.79,69.849 +324529,297.47,65.348 +324530,297.07,66.87 +324531,296.71,68.378 +324532,296.4,69.872 +324533,296.24,65.372 +324534,295.78,66.892 +324535,295.37,68.4 +324536,295.01,69.893 +324537,295,65.396 +324538,294.49,66.915 +324539,294.03,68.422 +324540,293.61,69.913 +324541,293.77,65.422 +324542,293.2,66.939 +324543,292.69,68.443 +324544,292.22,69.932 +324545,292.54,65.449 +324546,291.91,66.963 +324547,291.35,68.464 +324548,290.83,69.95 +324549,291.3,65.478 +324550,290.63,66.987 +324551,290.01,68.484 +324552,289.44,69.967 +324553,290.06,65.507 +324554,289.34,67.012 +324555,288.67,68.504 +324556,288.05,69.982 +324557,288.83,65.538 +324558,288.05,67.037 +324559,287.33,68.524 +324560,286.66,69.997 +324561,287.59,65.57 +324562,286.76,67.063 +324563,285.99,68.543 +324564,285.27,70.01 +324565,286.35,65.603 +324566,285.47,67.089 +324567,284.65,68.562 +324568,283.88,70.022 +324569,285.12,65.638 +324570,284.18,67.115 +324571,283.31,68.58 +324572,282.5,70.032 +324573,283.88,65.673 +324574,282.89,67.142 +324575,281.97,68.598 +324576,281.11,70.042 +324577,282.64,65.71 +324578,281.6,67.169 +324579,280.63,68.616 +324580,279.72,70.05 +324581,281.4,65.748 +324582,280.31,67.196 +324583,279.29,68.633 +324584,278.34,70.057 +324585,280.15,65.787 +324586,279.01,67.224 +324587,277.95,68.65 +324588,276.95,70.064 +324589,278.91,65.827 +324590,277.72,67.252 +324591,276.61,68.666 +324592,275.57,70.068 +324593,277.67,65.869 +324594,276.43,67.281 +324595,275.27,68.682 +324596,274.19,70.072 +324597,276.43,65.911 +324598,275.14,67.31 +324599,273.93,68.698 +324600,272.8,70.075 +324601,275.18,65.955 +324602,273.85,67.339 +324603,272.6,68.713 +324604,271.42,70.076 +324605,273.93,66 +324606,272.55,67.369 +324607,271.26,68.728 +324608,270.04,70.077 +324609,272.69,66.046 +324610,271.26,67.399 +324611,269.92,68.743 +324612,268.66,70.076 +324613,271.44,66.093 +324614,269.97,67.429 +324615,268.59,68.757 +324616,267.28,70.075 +324617,270.19,66.141 +324618,268.67,67.46 +324619,267.25,68.771 +324620,265.91,70.072 +324621,268.94,66.19 +324622,267.38,67.491 +324623,265.91,68.784 +324624,264.53,70.068 +324625,267.69,66.24 +324626,266.08,67.523 +324627,264.58,68.797 +324628,263.16,70.063 +324629,266.44,66.291 +324630,264.79,67.554 +324631,263.24,68.81 +324632,261.78,70.057 +324633,265.18,66.344 +324634,263.49,67.586 +324635,261.91,68.823 +324636,260.41,70.05 +324637,263.93,66.397 +324638,262.2,67.619 +324639,260.57,68.835 +324640,259.04,70.043 +324641,262.67,66.451 +324642,260.9,67.652 +324643,259.24,68.846 +324644,257.67,70.034 +324645,261.41,66.506 +324646,259.6,67.685 +324647,257.9,68.858 +324648,256.3,70.024 +324649,260.15,66.562 +324650,258.31,67.718 +324651,256.57,68.869 +324652,254.93,70.013 +324653,258.89,66.619 +324654,257.01,67.752 +324655,255.24,68.88 +324656,253.56,70.002 +324657,257.63,66.677 +324658,255.71,67.786 +324659,253.9,68.89 +324660,252.2,69.989 +324661,256.36,66.736 +324662,254.41,67.82 +324663,252.57,68.9 +324664,250.83,69.976 +324665,255.1,66.796 +324666,253.11,67.854 +324667,251.24,68.91 +324668,249.47,69.961 +324669,253.83,66.856 +324670,251.81,67.889 +324671,249.91,68.92 +324672,248.11,69.946 +324673,252.56,66.917 +324674,250.51,67.924 +324675,248.58,68.929 +324676,246.75,69.93 +324677,251.29,66.979 +324678,249.21,67.96 +324679,247.25,68.938 +324680,245.39,69.913 +324681,250.02,67.042 +324682,247.91,67.995 +324683,245.92,68.947 +324684,244.03,69.896 +324685,248.75,67.106 +324686,246.61,68.031 +324687,244.59,68.956 +324688,242.68,69.877 +324689,247.47,67.17 +324690,245.31,68.067 +324691,243.26,68.964 +324692,241.32,69.858 +324693,246.2,67.235 +324694,244,68.104 +324695,241.93,68.972 +324696,239.97,69.838 +324697,244.92,67.301 +324698,242.7,68.14 +324699,240.61,68.98 +324700,238.62,69.818 +324701,243.64,67.367 +324702,241.4,68.177 +324703,239.28,68.987 +324704,237.27,69.797 +324705,242.36,67.434 +324706,240.09,68.214 +324707,237.95,68.994 +324708,235.92,69.775 +324709,241.07,67.502 +324710,238.79,68.251 +324711,236.62,69.002 +324712,234.57,69.752 +324713,239.79,67.57 +324714,237.48,68.288 +324715,235.3,69.009 +324716,233.23,69.729 +324717,238.5,67.638 +324718,236.17,68.326 +324719,233.97,69.015 +324720,231.88,69.705 +324721,237.21,67.708 +324722,234.87,68.363 +324723,232.65,69.022 +324724,230.54,69.681 +324725,235.92,67.777 +324726,233.56,68.401 +324727,231.33,69.028 +324728,229.2,69.656 +324729,234.63,67.847 +324730,232.25,68.439 +324731,230,69.034 +324732,227.86,69.631 +324733,233.33,67.918 +324734,230.94,68.478 +324735,228.68,69.04 +324736,226.52,69.605 +324737,232.04,67.989 +324738,229.63,68.516 +324739,227.36,69.046 +324740,225.19,69.579 +324741,230.74,68.061 +324742,228.32,68.554 +324743,226.03,69.052 +324744,223.85,69.552 +324745,229.44,68.132 +324746,227.01,68.593 +324747,224.71,69.057 +324748,222.52,69.525 +324749,228.13,68.205 +324750,225.7,68.632 +324751,223.39,69.063 +324752,221.19,69.498 +324753,226.83,68.277 +324754,224.39,68.67 +324755,222.07,69.068 +324756,219.86,69.47 +324757,225.53,68.35 +324758,223.08,68.709 +324759,220.75,69.073 +324760,218.53,69.442 +324761,224.22,68.423 +324762,221.76,68.748 +324763,219.43,69.079 +324764,217.21,69.413 +324765,222.91,68.496 +324766,220.45,68.787 +324767,218.11,69.084 +324768,215.88,69.384 +324769,221.6,68.569 +324770,219.14,68.826 +324771,216.8,69.089 +324772,214.56,69.355 +324773,220.28,68.643 +324774,217.82,68.865 +324775,215.48,69.093 +324776,213.24,69.326 +324777,218.97,68.717 +324778,216.51,68.905 +324779,214.16,69.098 +324780,211.92,69.297 +324781,217.65,68.791 +324782,215.19,68.944 +324783,212.85,69.103 +324784,210.6,69.267 +324785,216.33,68.865 +324786,213.87,68.983 +324787,211.53,69.108 +324788,209.29,69.237 +324789,215.01,68.939 +324790,212.56,69.023 +324791,210.22,69.112 +324792,207.97,69.208 +324793,213.69,69.013 +324794,211.24,69.062 +324795,208.9,69.117 +324796,206.66,69.178 +324797,212.36,69.087 +324798,209.92,69.101 +324799,207.59,69.122 +324800,205.35,69.148 +324801,211.04,69.161 +324802,208.6,69.14 +324803,206.27,69.126 +324804,204.04,69.118 +324805,209.71,69.235 +324806,207.28,69.18 +324807,204.96,69.131 +324808,202.74,69.088 +324809,208.38,69.309 +324810,205.96,69.219 +324811,203.65,69.135 +324812,201.43,69.058 +324813,207.05,69.383 +324814,204.64,69.258 +324815,202.34,69.14 +324816,200.13,69.028 +324817,205.71,69.456 +324818,203.32,69.297 +324819,201.03,69.145 +324820,198.82,68.998 +324821,204.38,69.53 +324822,201.99,69.337 +324823,199.72,69.149 +324824,197.52,68.968 +324825,203.04,69.603 +324826,200.67,69.376 +324827,198.41,69.154 +324828,196.23,68.938 +324829,201.7,69.676 +324830,199.35,69.415 +324831,197.1,69.159 +324832,194.93,68.909 +324833,200.36,69.749 +324834,198.02,69.454 +324835,195.79,69.164 +324836,193.63,68.88 +324837,199.01,69.822 +324838,196.7,69.492 +324839,194.48,69.169 +324840,192.34,68.851 +324841,197.67,69.894 +324842,195.37,69.531 +324843,193.17,69.174 +324844,191.05,68.822 +324845,196.32,69.966 +324846,194.05,69.57 +324847,191.86,69.179 +324848,189.76,68.793 +324849,194.98,70.037 +324850,192.72,69.608 +324851,190.56,69.184 +324852,188.47,68.765 +324853,193.63,70.109 +324854,191.39,69.647 +324855,189.25,69.19 +324856,187.18,68.737 +324857,192.27,70.179 +324858,190.07,69.685 +324859,187.94,69.195 +324860,185.9,68.71 +324861,190.92,70.25 +324862,188.74,69.723 +324863,186.64,69.201 +324864,184.61,68.683 +324865,189.57,70.32 +324866,187.41,69.761 +324867,185.33,69.206 +324868,183.33,68.656 +324869,188.21,70.389 +324870,186.08,69.799 +324871,184.03,69.212 +324872,182.05,68.63 +324873,186.85,70.458 +324874,184.75,69.837 +324875,182.73,69.218 +324876,180.77,68.604 +324877,185.49,70.527 +324878,183.42,69.874 +324879,181.42,69.225 +324880,179.49,68.579 +324881,184.13,70.594 +324882,182.09,69.911 +324883,180.12,69.231 +324884,178.21,68.554 +324885,182.77,70.662 +324886,180.76,69.948 +324887,178.82,69.237 +324888,176.94,68.53 +324889,181.41,70.728 +324890,179.43,69.985 +324891,177.52,69.244 +324892,175.67,68.506 +324893,180.04,70.795 +324894,178.1,70.022 +324895,176.22,69.251 +324896,174.39,68.483 +324897,178.68,70.86 +324898,176.76,70.058 +324899,174.91,69.258 +324900,173.12,68.46 +324901,177.31,70.925 +324902,175.43,70.095 +324903,173.61,69.266 +324904,171.85,68.439 +324905,175.94,70.989 +324906,174.1,70.131 +324907,172.31,69.273 +324908,170.59,68.417 +324909,174.57,71.052 +324910,172.76,70.166 +324911,171.02,69.281 +324912,169.32,68.397 +324913,173.2,71.115 +324914,171.43,70.202 +324915,169.72,69.289 +324916,168.05,68.377 +324917,171.82,71.177 +324918,170.09,70.237 +324919,168.42,69.297 +324920,166.79,68.358 +324921,170.45,71.238 +324922,168.76,70.272 +324923,167.12,69.306 +324924,165.53,68.34 +324925,169.07,71.298 +324926,167.42,70.307 +324927,165.82,69.315 +324928,164.27,68.323 +324929,167.7,71.357 +324930,166.08,70.341 +324931,164.52,69.324 +324932,163.01,68.306 +324933,166.32,71.416 +324934,164.75,70.376 +324935,163.23,69.333 +324936,161.75,68.29 +324937,164.94,71.474 +324938,163.41,70.41 +324939,161.93,69.343 +324940,160.49,68.275 +324941,163.56,71.531 +324942,162.07,70.443 +324943,160.63,69.353 +324944,159.23,68.261 +324945,162.18,71.587 +324946,160.74,70.476 +324947,159.34,69.363 +324948,157.98,68.248 +324949,160.8,71.642 +324950,159.4,70.509 +324951,158.04,69.374 +324952,156.72,68.235 +324953,159.41,71.696 +324954,158.06,70.542 +324955,156.75,69.384 +324956,155.47,68.224 +324957,158.03,71.749 +324958,156.72,70.575 +324959,155.45,69.395 +324960,154.22,68.213 +324961,156.65,71.802 +324962,155.38,70.607 +324963,154.16,69.407 +324964,152.97,68.204 +324965,155.26,71.853 +324966,154.04,70.638 +324967,152.86,69.419 +324968,151.72,68.195 +324969,153.87,71.903 +324970,152.7,70.67 +324971,151.57,69.431 +324972,150.47,68.188 +324973,152.49,71.952 +324974,151.36,70.701 +324975,150.27,69.443 +324976,149.22,68.181 +324977,151.1,72.001 +324978,150.02,70.731 +324979,148.98,69.456 +324980,147.97,68.176 +324981,149.71,72.048 +324982,148.68,70.762 +324983,147.69,69.469 +324984,146.72,68.171 +324985,148.32,72.094 +324986,147.34,70.792 +324987,146.39,69.483 +324988,145.48,68.168 +324989,146.93,72.139 +324990,146,70.821 +324991,145.1,69.496 +324992,144.23,68.166 +324993,145.54,72.183 +324994,144.66,70.851 +324995,143.81,69.511 +324996,142.99,68.164 +324997,144.15,72.227 +324998,143.32,70.88 +324999,142.52,69.525 +325000,141.74,68.164 +325001,142.76,72.268 +325002,141.98,70.908 +325003,141.22,69.54 +325004,140.5,68.165 +325005,141.37,72.309 +325006,140.63,70.936 +325007,139.93,69.555 +325008,139.26,68.167 +325009,139.97,72.349 +325010,139.29,70.964 +325011,138.64,69.571 +325012,138.02,68.171 +325013,138.58,72.388 +325014,137.95,70.992 +325015,137.35,69.587 +325016,136.77,68.175 +325017,137.19,72.425 +325018,136.61,71.019 +325019,136.06,69.603 +325020,135.53,68.18 +325021,135.8,72.461 +325022,135.26,71.045 +325023,134.76,69.62 +325024,134.29,68.187 +325025,134.4,72.497 +325026,133.92,71.072 +325027,133.47,69.637 +325028,133.05,68.195 +325029,133.01,72.531 +325030,132.58,71.097 +325031,132.18,69.655 +325032,131.81,68.204 +325033,131.61,72.564 +325034,131.24,71.123 +325035,130.89,69.673 +325036,130.57,68.214 +325037,130.22,72.595 +325038,129.89,71.148 +325039,129.6,69.691 +325040,129.33,68.226 +325041,128.83,72.626 +325042,128.55,71.173 +325043,128.31,69.71 +325044,128.09,68.238 +325045,127.43,72.655 +325046,127.21,71.197 +325047,127.02,69.729 +325048,126.86,68.252 +325049,126.04,72.683 +325050,125.86,71.221 +325051,125.73,69.748 +325052,125.62,68.267 +325053,124.64,72.711 +325054,124.52,71.245 +325055,124.43,69.768 +325056,124.38,68.283 +325057,123.25,72.736 +325058,123.18,71.268 +325059,123.14,69.789 +325060,123.14,68.301 +325061,121.85,72.761 +325062,121.84,71.29 +325063,121.85,69.809 +325064,121.9,68.319 +325065,120.46,72.785 +325066,120.49,71.313 +325067,120.56,69.831 +325068,120.66,68.339 +325069,119.06,72.807 +325070,119.15,71.335 +325071,119.27,69.852 +325072,119.43,68.36 +325073,117.67,72.828 +325074,117.81,71.356 +325075,117.98,69.874 +325076,118.19,68.383 +325077,116.28,72.848 +325078,116.46,71.377 +325079,116.69,69.896 +325080,116.95,68.406 +325081,114.88,72.867 +325082,115.12,71.398 +325083,115.4,69.919 +325084,115.71,68.431 +325085,113.49,72.884 +325086,113.78,71.418 +325087,114.1,69.942 +325088,114.47,68.457 +325089,112.1,72.901 +325090,112.44,71.438 +325091,112.81,69.966 +325092,113.23,68.484 +325093,110.71,72.916 +325094,111.09,71.458 +325095,111.52,69.99 +325096,111.99,68.513 +325097,109.31,72.93 +325098,109.75,71.477 +325099,110.23,70.014 +325100,110.75,68.542 +325101,107.92,72.943 +325102,108.41,71.496 +325103,108.94,70.039 +325104,109.51,68.573 +325105,106.53,72.955 +325106,107.07,71.514 +325107,107.64,70.064 +325108,108.27,68.605 +325109,105.14,72.966 +325110,105.72,71.532 +325111,106.35,70.089 +325112,107.03,68.638 +325113,103.75,72.975 +325114,104.38,71.55 +325115,105.06,70.115 +325116,105.79,68.673 +325117,102.36,72.983 +325118,103.04,71.567 +325119,103.77,70.141 +325120,104.55,68.708 +325121,100.97,72.991 +325122,101.7,71.584 +325123,102.47,70.168 +325124,103.31,68.745 +325125,99.582,72.997 +325126,100.36,71.6 +325127,101.18,70.195 +325128,102.06,68.783 +325129,98.195,73.002 +325130,99.015,71.616 +325131,99.888,70.222 +325132,100.82,68.822 +325133,96.808,73.005 +325134,97.674,71.632 +325135,98.595,70.25 +325136,99.574,68.862 +325137,95.421,73.008 +325138,96.333,71.647 +325139,97.301,70.278 +325140,98.329,68.904 +325141,94.036,73.01 +325142,94.993,71.662 +325143,96.007,70.307 +325144,97.082,68.946 +325145,92.651,73.01 +325146,93.652,71.677 +325147,94.712,70.336 +325148,95.836,68.99 +325149,91.267,73.01 +325150,92.312,71.691 +325151,93.417,70.365 +325152,94.588,69.034 +325153,89.884,73.008 +325154,90.973,71.705 +325155,92.122,70.395 +325156,93.339,69.08 +325157,88.502,73.006 +325158,89.633,71.718 +325159,90.827,70.425 +325160,92.09,69.127 +325161,87.121,73.002 +325162,88.294,71.731 +325163,89.531,70.455 +325164,90.839,69.175 +325165,85.741,72.997 +325166,86.955,71.744 +325167,88.235,70.486 +325168,89.588,69.224 +325169,84.362,72.992 +325170,85.617,71.757 +325171,86.939,70.517 +325172,88.335,69.274 +325173,82.983,72.985 +325174,84.278,71.769 +325175,85.642,70.548 +325176,87.082,69.325 +325177,81.606,72.978 +325178,82.94,71.781 +325179,84.345,70.58 +325180,85.827,69.377 +325181,80.23,72.969 +325182,81.603,71.792 +325183,83.048,70.612 +325184,84.571,69.43 +325185,78.855,72.959 +325186,80.266,71.803 +325187,81.75,70.644 +325188,83.314,69.484 +325189,77.481,72.949 +325190,78.929,71.814 +325191,80.452,70.677 +325192,82.056,69.538 +325193,76.108,72.938 +325194,77.593,71.825 +325195,79.153,70.709 +325196,80.797,69.594 +325197,74.737,72.925 +325198,76.257,71.835 +325199,77.854,70.743 +325200,79.536,69.651 +325201,73.366,72.912 +325202,74.921,71.845 +325203,76.554,70.776 +325204,78.274,69.708 +325205,71.997,72.898 +325206,73.586,71.854 +325207,75.254,70.81 +325208,77.011,69.767 +325209,70.629,72.883 +325210,72.251,71.864 +325211,73.954,70.844 +325212,75.746,69.826 +325213,69.262,72.868 +325214,70.917,71.873 +325215,72.653,70.878 +325216,74.48,69.886 +325217,67.897,72.851 +325218,69.583,71.882 +325219,71.352,70.913 +325220,73.213,69.947 +325221,66.533,72.834 +325222,68.249,71.89 +325223,70.05,70.948 +325224,71.944,70.009 +325225,65.17,72.816 +325226,66.916,71.899 +325227,68.747,70.983 +325228,70.674,70.071 +325229,63.808,72.797 +325230,65.583,71.907 +325231,67.444,71.018 +325232,69.402,70.134 +325233,62.448,72.778 +325234,64.251,71.915 +325235,66.141,71.054 +325236,68.128,70.198 +325237,61.09,72.757 +325238,62.919,71.922 +325239,64.837,71.09 +325240,66.853,70.263 +325241,59.732,72.737 +325242,61.588,71.93 +325243,63.533,71.126 +325244,65.577,70.328 +325245,58.377,72.715 +325246,60.257,71.937 +325247,62.228,71.162 +325248,64.299,70.394 +325249,57.022,72.693 +325250,58.927,71.944 +325251,60.922,71.199 +325252,63.019,70.46 +325253,55.669,72.67 +325254,57.597,71.951 +325255,59.617,71.236 +325256,61.738,70.527 +325257,54.318,72.647 +325258,56.268,71.957 +325259,58.31,71.272 +325260,60.455,70.595 +325261,52.968,72.623 +325262,54.939,71.964 +325263,57.003,71.309 +325264,59.17,70.663 +325265,51.619,72.599 +325266,53.611,71.97 +325267,55.695,71.347 +325268,57.884,70.732 +325269,50.272,72.574 +325270,52.283,71.976 +325271,54.387,71.384 +325272,56.596,70.801 +325273,48.927,72.548 +325274,50.956,71.982 +325275,53.078,71.422 +325276,55.307,70.87 +325277,47.583,72.522 +325278,49.629,71.987 +325279,51.769,71.459 +325280,54.015,70.94 +325281,46.24,72.496 +325282,48.303,71.993 +325283,50.459,71.497 +325284,52.722,71.011 +325285,44.9,72.469 +325286,46.977,71.998 +325287,49.149,71.535 +325288,51.427,71.082 +325289,43.56,72.442 +325290,45.652,72.004 +325291,47.838,71.573 +325292,50.13,71.153 +325293,42.223,72.415 +325294,44.327,72.009 +325295,46.526,71.612 +325296,48.832,71.225 +325297,40.887,72.387 +325298,43.003,72.014 +325299,45.214,71.65 +325300,47.532,71.296 +325301,39.552,72.359 +325302,41.68,72.019 +325303,43.901,71.688 +325304,46.23,71.368 +325305,38.22,72.33 +325306,40.357,72.024 +325307,42.588,71.727 +325308,44.926,71.441 +325309,36.889,72.302 +325310,39.034,72.029 +325311,41.274,71.765 +325312,43.62,71.513 +325313,35.559,72.273 +325314,37.712,72.034 +325315,39.959,71.804 +325316,42.313,71.586 +325317,34.231,72.244 +325318,36.391,72.038 +325319,38.644,71.843 +325320,41.004,71.659 +325321,32.905,72.214 +325322,35.07,72.043 +325323,37.328,71.882 +325324,39.693,71.732 +325325,31.58,72.185 +325326,33.75,72.048 +325327,36.012,71.92 +325328,38.38,71.805 +325329,30.257,72.155 +325330,32.43,72.052 +325331,34.695,71.959 +325332,37.065,71.879 +325333,28.936,72.126 +325334,31.111,72.057 +325335,33.377,71.998 +325336,35.748,71.952 +325337,27.616,72.096 +325338,29.792,72.061 +325339,32.059,72.037 +325340,34.43,72.025 +325341,26.298,72.066 +325342,28.474,72.066 +325343,30.74,72.076 +325344,33.11,72.099 +325345,24.982,72.037 +325346,27.157,72.07 +325347,29.421,72.115 +325348,31.788,72.172 +325349,23.667,72.007 +325350,25.84,72.075 +325351,28.101,72.154 +325352,30.464,72.245 +325353,22.354,71.977 +325354,24.523,72.079 +325355,26.78,72.193 +325356,29.138,72.318 +325357,21.043,71.948 +325358,23.207,72.084 +325359,25.459,72.231 +325360,27.811,72.391 +325361,19.733,71.918 +325362,21.892,72.088 +325363,24.137,72.27 +325364,26.482,72.464 +325365,18.425,71.889 +325366,20.577,72.093 +325367,22.815,72.309 +325368,25.151,72.537 +325369,17.118,71.859 +325370,19.263,72.098 +325371,21.492,72.347 +325372,23.818,72.609 +325373,15.813,71.83 +325374,17.949,72.103 +325375,20.168,72.386 +325376,22.483,72.682 +325377,14.51,71.802 +325378,16.636,72.108 +325379,18.844,72.425 +325380,21.147,72.754 +325381,13.209,71.773 +325382,15.324,72.112 +325383,17.519,72.463 +325384,19.809,72.825 +325385,11.909,71.745 +325386,14.012,72.117 +325387,16.194,72.501 +325388,18.469,72.897 +325389,10.61,71.717 +325390,12.7,72.123 +325391,14.868,72.54 +325392,17.128,72.968 +325393,9.3133,71.689 +325394,11.389,72.128 +325395,13.542,72.578 +325396,15.784,73.039 +325397,8.0181,71.661 +325398,10.079,72.133 +325399,12.215,72.616 +325400,14.44,73.109 +325401,6.7244,71.634 +325402,8.7685,72.139 +325403,10.887,72.654 +325404,13.093,73.179 +325405,5.4323,71.608 +325406,7.4591,72.144 +325407,9.5592,72.691 +325408,11.745,73.249 +325409,4.1418,71.582 +325410,6.1501,72.15 +325411,8.2305,72.729 +325412,10.395,73.318 +325413,2.8527,71.556 +325414,4.8417,72.156 +325415,6.9013,72.766 +325416,9.0434,73.386 +325417,1.5652,71.531 +325418,3.5337,72.162 +325419,5.5716,72.804 +325420,7.6903,73.455 +325421,0.27925,71.506 +325422,2.2262,72.169 +325423,4.2413,72.841 +325424,6.3357,73.522 +325425,358.99,71.482 +325426,0.91927,72.175 +325427,2.9105,72.877 +325428,4.9795,73.589 +325429,357.71,71.458 +325430,359.61,72.182 +325431,1.5792,72.914 +325432,3.6217,73.656 +325433,356.43,71.435 +325434,358.31,72.189 +325435,0.24738,72.951 +325436,2.2625,73.721 +325437,355.15,71.412 +325438,357,72.196 +325439,358.92,72.987 +325440,0.90173,73.787 +325441,353.87,71.391 +325442,355.7,72.203 +325443,357.58,73.023 +325444,359.54,73.851 +325445,352.59,71.369 +325446,354.39,72.21 +325447,356.25,73.059 +325448,358.18,73.915 +325449,351.32,71.349 +325450,353.09,72.218 +325451,354.92,73.095 +325452,356.81,73.978 +325453,350.04,71.329 +325454,351.78,72.226 +325455,353.58,73.13 +325456,355.44,74.041 +325457,348.77,71.31 +325458,350.48,72.234 +325459,352.25,73.165 +325460,354.08,74.102 +325461,347.5,71.291 +325462,349.18,72.243 +325463,350.91,73.2 +325464,352.71,74.163 +325465,346.23,71.274 +325466,347.87,72.251 +325467,349.58,73.235 +325468,351.34,74.224 +325469,344.96,71.257 +325470,346.57,72.26 +325471,348.24,73.269 +325472,349.97,74.283 +325473,343.69,71.241 +325474,345.27,72.27 +325475,346.9,73.303 +325476,348.59,74.342 +325477,342.42,71.226 +325478,343.97,72.279 +325479,345.57,73.337 +325480,347.22,74.399 +325481,341.16,71.212 +325482,342.67,72.289 +325483,344.23,73.371 +325484,345.84,74.456 +325485,339.89,71.198 +325486,341.37,72.299 +325487,342.89,73.404 +325488,344.47,74.512 +325489,338.63,71.186 +325490,340.07,72.31 +325491,341.55,73.437 +325492,343.09,74.567 +325493,337.37,71.174 +325494,338.77,72.32 +325495,340.21,73.47 +325496,341.71,74.622 +325497,336.11,71.163 +325498,337.47,72.331 +325499,338.88,73.502 +325500,340.33,74.675 +325501,334.85,71.153 +325502,336.17,72.343 +325503,337.54,73.534 +325504,338.95,74.727 +325505,333.59,71.145 +325506,334.87,72.354 +325507,336.2,73.566 +325508,337.57,74.779 +325509,332.33,71.137 +325510,333.57,72.366 +325511,334.86,73.597 +325512,336.19,74.829 +325513,331.07,71.13 +325514,332.27,72.379 +325515,333.52,73.628 +325516,334.8,74.879 +325517,329.82,71.124 +325518,330.98,72.391 +325519,332.18,73.659 +325520,333.42,74.927 +325521,328.56,71.119 +325522,329.68,72.404 +325523,330.83,73.69 +325524,332.03,74.974 +325525,327.31,71.116 +325526,328.38,72.418 +325527,329.49,73.72 +325528,330.65,75.021 +325529,326.05,71.113 +325530,327.08,72.431 +325531,328.15,73.75 +325532,329.26,75.066 +325533,324.8,71.112 +325534,325.79,72.446 +325535,326.81,73.779 +325536,327.87,75.11 +325537,323.55,71.111 +325538,324.49,72.46 +325539,325.47,73.808 +325540,326.48,75.154 +325541,322.3,71.112 +325542,323.19,72.475 +325543,324.13,73.837 +325544,325.09,75.196 +325545,321.05,71.113 +325546,321.9,72.49 +325547,322.78,73.865 +325548,323.7,75.237 +325549,319.8,71.116 +325550,320.6,72.506 +325551,321.44,73.893 +325552,322.31,75.277 +325553,318.55,71.12 +325554,319.31,72.522 +325555,320.1,73.92 +325556,320.92,75.316 +325557,317.3,71.125 +325558,318.01,72.538 +325559,318.75,73.948 +325560,319.53,75.354 +325561,316.05,71.132 +325562,316.72,72.555 +325563,317.41,73.974 +325564,318.14,75.39 +325565,314.81,71.139 +325566,315.42,72.572 +325567,316.07,74.001 +325568,316.75,75.426 +325569,313.56,71.148 +325570,314.13,72.589 +325571,314.72,74.027 +325572,315.36,75.46 +325573,312.31,71.158 +325574,312.83,72.607 +325575,313.38,74.053 +325576,313.96,75.494 +325577,311.07,71.169 +325578,311.54,72.625 +325579,312.04,74.078 +325580,312.57,75.526 +325581,309.82,71.181 +325582,310.24,72.644 +325583,310.69,74.103 +325584,311.18,75.557 +325585,308.58,71.194 +325586,308.95,72.663 +325587,309.35,74.127 +325588,309.78,75.586 +325589,307.33,71.209 +325590,307.65,72.682 +325591,308,74.152 +325592,308.39,75.615 +325593,306.09,71.225 +325594,306.36,72.702 +325595,306.66,74.175 +325596,306.99,75.643 +325597,304.84,71.242 +325598,305.06,72.723 +325599,305.32,74.199 +325600,305.6,75.669 +325601,303.6,71.26 +325602,303.77,72.743 +325603,303.97,74.222 +325604,304.21,75.694 +325605,302.35,71.279 +325606,302.47,72.764 +325607,302.63,74.244 +325608,302.81,75.718 +325609,301.11,71.3 +325610,301.18,72.786 +325611,301.28,74.267 +325612,301.42,75.741 +325613,299.87,71.322 +325614,299.89,72.808 +325615,299.94,74.288 +325616,300.02,75.762 +325617,298.62,71.345 +325618,298.59,72.83 +325619,298.59,74.31 +325620,298.63,75.783 +325621,297.38,71.37 +325622,297.3,72.853 +325623,297.25,74.331 +325624,297.23,75.802 +325625,296.13,71.395 +325626,296,72.876 +325627,295.9,74.351 +325628,295.84,75.82 +325629,294.89,71.422 +325630,294.71,72.899 +325631,294.56,74.372 +325632,294.44,75.837 +325633,293.65,71.45 +325634,293.41,72.923 +325635,293.21,74.391 +325636,293.05,75.853 +325637,292.4,71.479 +325638,292.12,72.948 +325639,291.87,74.411 +325640,291.66,75.868 +325641,291.16,71.51 +325642,290.82,72.972 +325643,290.53,74.43 +325644,290.26,75.881 +325645,289.91,71.541 +325646,289.53,72.997 +325647,289.18,74.449 +325648,288.87,75.894 +325649,288.67,71.574 +325650,288.23,73.023 +325651,287.84,74.467 +325652,287.48,75.905 +325653,287.42,71.608 +325654,286.94,73.049 +325655,286.49,74.485 +325656,286.08,75.915 +325657,286.18,71.644 +325658,285.64,73.075 +325659,285.15,74.502 +325660,284.69,75.924 +325661,284.93,71.68 +325662,284.35,73.102 +325663,283.8,74.519 +325664,283.3,75.932 +325665,283.69,71.718 +325666,283.05,73.129 +325667,282.46,74.536 +325668,281.91,75.938 +325669,282.44,71.756 +325670,281.76,73.156 +325671,281.12,74.553 +325672,280.52,75.944 +325673,281.19,71.796 +325674,280.46,73.184 +325675,279.77,74.569 +325676,279.13,75.948 +325677,279.94,71.837 +325678,279.16,73.212 +325679,278.43,74.584 +325680,277.74,75.951 +325681,278.7,71.879 +325682,277.87,73.241 +325683,277.09,74.6 +325684,276.35,75.954 +325685,277.45,71.923 +325686,276.57,73.27 +325687,275.74,74.615 +325688,274.96,75.955 +325689,276.2,71.967 +325690,275.27,73.299 +325691,274.4,74.629 +325692,273.57,75.955 +325693,274.95,72.013 +325694,273.98,73.329 +325695,273.06,74.643 +325696,272.19,75.954 +325697,273.69,72.059 +325698,272.68,73.359 +325699,271.72,74.657 +325700,270.8,75.952 +325701,272.44,72.107 +325702,271.38,73.389 +325703,270.37,74.671 +325704,269.42,75.949 +325705,271.19,72.156 +325706,270.08,73.42 +325707,269.03,74.684 +325708,268.03,75.945 +325709,269.94,72.206 +325710,268.79,73.451 +325711,267.69,74.697 +325712,266.65,75.94 +325713,268.68,72.256 +325714,267.49,73.483 +325715,266.35,74.709 +325716,265.26,75.934 +325717,267.43,72.308 +325718,266.19,73.515 +325719,265.01,74.722 +325720,263.88,75.927 +325721,266.17,72.361 +325722,264.89,73.547 +325723,263.67,74.733 +325724,262.5,75.919 +325725,264.91,72.415 +325726,263.59,73.579 +325727,262.33,74.745 +325728,261.12,75.91 +325729,263.66,72.47 +325730,262.29,73.612 +325731,260.99,74.756 +325732,259.74,75.9 +325733,262.4,72.525 +325734,260.99,73.645 +325735,259.65,74.767 +325736,258.36,75.89 +325737,261.14,72.582 +325738,259.69,73.679 +325739,258.31,74.778 +325740,256.99,75.878 +325741,259.87,72.64 +325742,258.39,73.712 +325743,256.97,74.788 +325744,255.61,75.865 +325745,258.61,72.698 +325746,257.09,73.746 +325747,255.63,74.798 +325748,254.24,75.852 +325749,257.35,72.757 +325750,255.79,73.781 +325751,254.29,74.808 +325752,252.86,75.838 +325753,256.08,72.817 +325754,254.48,73.815 +325755,252.96,74.818 +325756,251.49,75.823 +325757,254.82,72.878 +325758,253.18,73.85 +325759,251.62,74.827 +325760,250.12,75.807 +325761,253.55,72.94 +325762,251.88,73.885 +325763,250.28,74.836 +325764,248.75,75.79 +325765,252.28,73.003 +325766,250.58,73.921 +325767,248.94,74.845 +325768,247.38,75.773 +325769,251.01,73.066 +325770,249.27,73.956 +325771,247.61,74.853 +325772,246.01,75.755 +325773,249.74,73.13 +325774,247.97,73.992 +325775,246.27,74.861 +325776,244.64,75.736 +325777,248.47,73.195 +325778,246.66,74.028 +325779,244.94,74.869 +325780,243.28,75.716 +325781,247.19,73.26 +325782,245.36,74.065 +325783,243.6,74.877 +325784,241.91,75.696 +325785,245.92,73.326 +325786,244.05,74.101 +325787,242.27,74.885 +325788,240.55,75.675 +325789,244.64,73.393 +325790,242.75,74.138 +325791,240.93,74.892 +325792,239.19,75.653 +325793,243.36,73.46 +325794,241.44,74.175 +325795,239.6,74.899 +325796,237.83,75.631 +325797,242.08,73.528 +325798,240.13,74.212 +325799,238.26,74.906 +325800,236.47,75.608 +325801,240.8,73.597 +325802,238.82,74.25 +325803,236.93,74.913 +325804,235.11,75.585 +325805,239.52,73.666 +325806,237.52,74.287 +325807,235.6,74.92 +325808,233.76,75.561 +325809,238.23,73.736 +325810,236.21,74.325 +325811,234.27,74.926 +325812,232.4,75.537 +325813,236.94,73.806 +325814,234.9,74.363 +325815,232.94,74.933 +325816,231.05,75.512 +325817,235.66,73.876 +325818,233.59,74.401 +325819,231.6,74.939 +325820,229.7,75.486 +325821,234.37,73.947 +325822,232.28,74.439 +325823,230.27,74.945 +325824,228.35,75.461 +325825,233.08,74.018 +325826,230.97,74.478 +325827,228.94,74.951 +325828,227,75.434 +325829,231.78,74.09 +325830,229.65,74.516 +325831,227.61,74.956 +325832,225.65,75.408 +325833,230.49,74.162 +325834,228.34,74.555 +325835,226.28,74.962 +325836,224.31,75.381 +325837,229.19,74.235 +325838,227.03,74.594 +325839,224.96,74.967 +325840,222.96,75.353 +325841,227.9,74.307 +325842,225.72,74.633 +325843,223.63,74.973 +325844,221.62,75.326 +325845,226.6,74.38 +325846,224.4,74.672 +325847,222.3,74.978 +325848,220.28,75.298 +325849,225.3,74.454 +325850,223.09,74.711 +325851,220.97,74.983 +325852,218.94,75.269 +325853,223.99,74.527 +325854,221.77,74.75 +325855,219.65,74.989 +325856,217.6,75.241 +325857,222.69,74.601 +325858,220.46,74.789 +325859,218.32,74.994 +325860,216.26,75.212 +325861,221.38,74.675 +325862,219.14,74.828 +325863,217,74.999 +325864,214.93,75.183 +325865,220.08,74.749 +325866,217.83,74.868 +325867,215.67,75.004 +325868,213.6,75.154 +325869,218.77,74.823 +325870,216.51,74.907 +325871,214.35,75.009 +325872,212.26,75.125 +325873,217.45,74.897 +325874,215.19,74.947 +325875,213.02,75.014 +325876,210.93,75.096 +325877,216.14,74.971 +325878,213.87,74.986 +325879,211.7,75.019 +325880,209.6,75.066 +325881,214.83,75.045 +325882,212.56,75.025 +325883,210.38,75.024 +325884,208.28,75.037 +325885,213.51,75.119 +325886,211.24,75.065 +325887,209.05,75.028 +325888,206.95,75.008 +325889,212.19,75.193 +325890,209.92,75.104 +325891,207.73,75.033 +325892,205.63,74.978 +325893,210.87,75.267 +325894,208.6,75.144 +325895,206.41,75.038 +325896,204.31,74.949 +325897,209.55,75.341 +325898,207.27,75.183 +325899,205.09,75.043 +325900,202.99,74.919 +325901,208.23,75.415 +325902,205.95,75.223 +325903,203.77,75.048 +325904,201.67,74.89 +325905,206.9,75.489 +325906,204.63,75.262 +325907,202.45,75.053 +325908,200.35,74.861 +325909,205.57,75.562 +325910,203.31,75.301 +325911,201.13,75.058 +325912,199.03,74.832 +325913,204.25,75.636 +325914,201.98,75.341 +325915,199.81,75.064 +325916,197.72,74.803 +325917,202.92,75.709 +325918,200.66,75.38 +325919,198.49,75.069 +325920,196.41,74.775 +325921,201.58,75.782 +325922,199.33,75.419 +325923,197.18,75.074 +325924,195.09,74.746 +325925,200.25,75.854 +325926,198.01,75.458 +325927,195.86,75.08 +325928,193.79,74.718 +325929,198.91,75.926 +325930,196.68,75.497 +325931,194.54,75.085 +325932,192.48,74.69 +325933,197.58,75.998 +325934,195.36,75.536 +325935,193.23,75.091 +325936,191.17,74.662 +325937,196.24,76.07 +325938,194.03,75.574 +325939,191.91,75.097 +325940,189.87,74.635 +325941,194.9,76.141 +325942,192.7,75.613 +325943,190.6,75.102 +325944,188.56,74.608 +325945,193.55,76.212 +325946,191.38,75.651 +325947,189.28,75.108 +325948,187.26,74.582 +325949,192.21,76.282 +325950,190.05,75.69 +325951,187.97,75.115 +325952,185.96,74.556 +325953,190.87,76.352 +325954,188.72,75.728 +325955,186.65,75.121 +325956,184.66,74.53 +325957,189.52,76.421 +325958,187.39,75.766 +325959,185.34,75.127 +325960,183.36,74.505 +325961,188.17,76.49 +325962,186.06,75.804 +325963,184.03,75.134 +325964,182.07,74.48 +325965,186.82,76.558 +325966,184.73,75.841 +325967,182.72,75.141 +325968,180.77,74.456 +325969,185.47,76.626 +325970,183.4,75.879 +325971,181.4,75.148 +325972,179.48,74.432 +325973,184.11,76.693 +325974,182.06,75.916 +325975,180.09,75.155 +325976,178.19,74.409 +325977,182.76,76.759 +325978,180.73,75.953 +325979,178.78,75.163 +325980,176.9,74.387 +325981,181.4,76.825 +325982,179.4,75.99 +325983,177.47,75.17 +325984,175.61,74.365 +325985,180.04,76.89 +325986,178.07,76.027 +325987,176.16,75.178 +325988,174.32,74.344 +325989,178.68,76.955 +325990,176.73,76.063 +325991,174.85,75.186 +325992,173.04,74.323 +325993,177.32,77.019 +325994,175.4,76.099 +325995,173.55,75.195 +325996,171.75,74.303 +325997,175.96,77.082 +325998,174.06,76.135 +325999,172.24,75.203 +326000,170.47,74.284 +326001,174.6,77.144 +326002,172.73,76.171 +326003,170.93,75.212 +326004,169.19,74.265 +326005,173.23,77.206 +326006,171.39,76.207 +326007,169.62,75.221 +326008,167.91,74.248 +326009,171.86,77.266 +326010,170.06,76.242 +326011,168.31,75.23 +326012,166.63,74.231 +326013,170.5,77.326 +326014,168.72,76.277 +326015,167.01,75.24 +326016,165.35,74.215 +326017,169.13,77.385 +326018,167.38,76.312 +326019,165.7,75.25 +326020,164.08,74.2 +326021,167.76,77.444 +326022,166.04,76.346 +326023,164.4,75.26 +326024,162.8,74.185 +326025,166.38,77.501 +326026,164.71,76.38 +326027,163.09,75.271 +326028,161.53,74.172 +326029,165.01,77.558 +326030,163.37,76.414 +326031,161.78,75.281 +326032,160.26,74.159 +326033,163.64,77.613 +326034,162.03,76.448 +326035,160.48,75.292 +326036,158.98,74.147 +326037,162.26,77.668 +326038,160.69,76.481 +326039,159.18,75.304 +326040,157.71,74.136 +326041,160.88,77.722 +326042,159.35,76.514 +326043,157.87,75.316 +326044,156.44,74.126 +326045,159.51,77.774 +326046,158.01,76.547 +326047,156.57,75.328 +326048,155.18,74.117 +326049,158.13,77.826 +326050,156.67,76.579 +326051,155.26,75.34 +326052,153.91,74.109 +326053,156.75,77.877 +326054,155.33,76.611 +326055,153.96,75.353 +326056,152.64,74.102 +326057,155.37,77.927 +326058,153.99,76.643 +326059,152.66,75.366 +326060,151.38,74.096 +326061,153.99,77.976 +326062,152.65,76.674 +326063,151.36,75.379 +326064,150.11,74.091 +326065,152.6,78.023 +326066,151.3,76.705 +326067,150.05,75.393 +326068,148.85,74.087 +326069,151.22,78.07 +326070,149.96,76.736 +326071,148.75,75.407 +326072,147.59,74.085 +326073,149.84,78.116 +326074,148.62,76.766 +326075,147.45,75.422 +326076,146.33,74.083 +326077,148.45,78.16 +326078,147.28,76.796 +326079,146.15,75.436 +326080,145.07,74.082 +326081,147.06,78.204 +326082,145.93,76.826 +326083,144.85,75.452 +326084,143.81,74.083 +326085,145.68,78.246 +326086,144.59,76.855 +326087,143.55,75.467 +326088,142.55,74.084 +326089,144.29,78.288 +326090,143.25,76.884 +326091,142.25,75.483 +326092,141.29,74.087 +326093,142.9,78.328 +326094,141.9,76.912 +326095,140.95,75.499 +326096,140.03,74.091 +326097,141.51,78.367 +326098,140.56,76.94 +326099,139.65,75.516 +326100,138.77,74.096 +326101,140.12,78.405 +326102,139.21,76.968 +326103,138.35,75.533 +326104,137.52,74.102 +326105,138.73,78.442 +326106,137.87,76.996 +326107,137.05,75.551 +326108,136.26,74.109 +326109,137.34,78.478 +326110,136.53,77.023 +326111,135.75,75.569 +326112,135.01,74.117 +326113,135.95,78.513 +326114,135.18,77.049 +326115,134.45,75.587 +326116,133.75,74.127 +326117,134.56,78.546 +326118,133.83,77.075 +326119,133.15,75.606 +326120,132.5,74.138 +326121,133.17,78.578 +326122,132.49,77.101 +326123,131.85,75.625 +326124,131.25,74.15 +326125,131.77,78.609 +326126,131.14,77.127 +326127,130.55,75.644 +326128,129.99,74.163 +326129,130.38,78.639 +326130,129.8,77.152 +326131,129.25,75.664 +326132,128.74,74.178 +326133,128.99,78.668 +326134,128.45,77.177 +326135,127.95,75.685 +326136,127.49,74.193 +326137,127.59,78.696 +326138,127.11,77.201 +326139,126.66,75.705 +326140,126.24,74.21 +326141,126.2,78.722 +326142,125.76,77.225 +326143,125.36,75.727 +326144,124.99,74.228 +326145,124.8,78.747 +326146,124.41,77.248 +326147,124.06,75.748 +326148,123.74,74.248 +326149,123.41,78.772 +326150,123.07,77.271 +326151,122.76,75.77 +326152,122.49,74.268 +326153,122.01,78.794 +326154,121.72,77.294 +326155,121.46,75.792 +326156,121.24,74.29 +326157,120.62,78.816 +326158,120.38,77.317 +326159,120.16,75.815 +326160,119.98,74.313 +326161,119.23,78.837 +326162,119.03,77.339 +326163,118.87,75.838 +326164,118.73,74.338 +326165,117.83,78.856 +326166,117.68,77.36 +326167,117.57,75.862 +326168,117.48,74.363 +326169,116.44,78.874 +326170,116.34,77.381 +326171,116.27,75.886 +326172,116.23,74.39 +326173,115.04,78.891 +326174,114.99,77.402 +326175,114.97,75.91 +326176,114.98,74.418 +326177,113.65,78.907 +326178,113.64,77.422 +326179,113.67,75.935 +326180,113.73,74.447 +326181,112.25,78.922 +326182,112.3,77.442 +326183,112.37,75.961 +326184,112.48,74.478 +326185,110.86,78.935 +326186,110.95,77.462 +326187,111.08,75.986 +326188,111.23,74.509 +326189,109.46,78.948 +326190,109.6,77.481 +326191,109.78,76.012 +326192,109.98,74.542 +326193,108.07,78.959 +326194,108.26,77.5 +326195,108.48,76.039 +326196,108.73,74.577 +326197,106.67,78.969 +326198,106.91,77.519 +326199,107.18,76.066 +326200,107.48,74.612 +326201,105.28,78.978 +326202,105.56,77.537 +326203,105.88,76.093 +326204,106.23,74.648 +326205,103.89,78.985 +326206,104.22,77.554 +326207,104.58,76.121 +326208,104.98,74.686 +326209,102.49,78.992 +326210,102.87,77.572 +326211,103.28,76.149 +326212,103.73,74.725 +326213,101.1,78.998 +326214,101.53,77.589 +326215,101.98,76.177 +326216,102.48,74.765 +326217,99.708,79.002 +326218,100.18,77.605 +326219,100.69,76.206 +326220,101.23,74.807 +326221,98.317,79.005 +326222,98.833,77.621 +326223,99.386,76.235 +326224,99.974,74.849 +326225,96.925,79.007 +326226,97.488,77.637 +326227,98.086,76.265 +326228,98.721,74.893 +326229,95.534,79.009 +326230,96.142,77.653 +326231,96.786,76.295 +326232,97.468,74.937 +326233,94.144,79.009 +326234,94.797,77.668 +326235,95.486,76.325 +326236,96.214,74.983 +326237,92.754,79.008 +326238,93.452,77.682 +326239,94.186,76.356 +326240,94.959,75.03 +326241,91.365,79.006 +326242,92.106,77.697 +326243,92.886,76.387 +326244,93.704,75.078 +326245,89.977,79.002 +326246,90.762,77.711 +326247,91.585,76.419 +326248,92.449,75.128 +326249,88.589,78.998 +326250,89.417,77.725 +326251,90.284,76.451 +326252,91.192,75.178 +326253,87.202,78.993 +326254,88.072,77.738 +326255,88.983,76.483 +326256,89.935,75.229 +326257,85.816,78.987 +326258,86.728,77.751 +326259,87.681,76.515 +326260,88.677,75.282 +326261,84.43,78.98 +326262,85.384,77.764 +326263,86.38,76.548 +326264,87.419,75.335 +326265,83.045,78.972 +326266,84.04,77.776 +326267,85.078,76.581 +326268,86.159,75.389 +326269,81.661,78.963 +326270,82.697,77.788 +326271,83.776,76.615 +326272,84.899,75.445 +326273,80.278,78.953 +326274,81.354,77.8 +326275,82.473,76.649 +326276,83.638,75.501 +326277,78.896,78.942 +326278,80.011,77.812 +326279,81.17,76.683 +326280,82.376,75.559 +326281,77.515,78.93 +326282,78.668,77.823 +326283,79.867,76.718 +326284,81.113,75.617 +326285,76.134,78.918 +326286,77.326,77.834 +326287,78.563,76.752 +326288,79.85,75.676 +326289,74.755,78.904 +326290,75.984,77.844 +326291,77.259,76.788 +326292,78.585,75.736 +326293,73.377,78.89 +326294,74.642,77.855 +326295,75.955,76.823 +326296,77.319,75.797 +326297,71.999,78.875 +326298,73.3,77.865 +326299,74.65,76.859 +326300,76.052,75.859 +326301,70.623,78.859 +326302,71.959,77.874 +326303,73.345,76.895 +326304,74.784,75.922 +326305,69.248,78.842 +326306,70.618,77.884 +326307,72.04,76.931 +326308,73.515,75.985 +326309,67.873,78.825 +326310,69.278,77.893 +326311,70.734,76.968 +326312,72.245,76.05 +326313,66.5,78.806 +326314,67.938,77.902 +326315,69.428,77.004 +326316,70.973,76.115 +326317,65.129,78.787 +326318,66.598,77.911 +326319,68.121,77.041 +326320,69.701,76.181 +326321,63.758,78.768 +326322,65.259,77.92 +326323,66.814,77.079 +326324,68.427,76.247 +326325,62.388,78.747 +326326,63.92,77.928 +326327,65.507,77.116 +326328,67.152,76.315 +326329,61.02,78.726 +326330,62.581,77.936 +326331,64.199,77.154 +326332,65.876,76.382 +326333,59.653,78.705 +326334,61.243,77.944 +326335,62.89,77.192 +326336,64.598,76.451 +326337,58.287,78.682 +326338,59.905,77.952 +326339,61.581,77.23 +326340,63.319,76.52 +326341,56.922,78.66 +326342,58.568,77.959 +326343,60.272,77.269 +326344,62.039,76.59 +326345,55.559,78.636 +326346,57.231,77.967 +326347,58.962,77.307 +326348,60.757,76.661 +326349,54.197,78.612 +326350,55.895,77.974 +326351,57.652,77.346 +326352,59.474,76.732 +326353,52.836,78.588 +326354,54.558,77.981 +326355,56.341,77.385 +326356,58.19,76.803 +326357,51.477,78.563 +326358,53.223,77.988 +326359,55.03,77.424 +326360,56.904,76.875 +326361,50.119,78.537 +326362,51.888,77.994 +326363,53.718,77.464 +326364,55.617,76.948 +326365,48.762,78.511 +326366,50.553,78.001 +326367,52.406,77.503 +326368,54.328,77.021 +326369,47.407,78.485 +326370,49.218,78.007 +326371,51.094,77.543 +326372,53.038,77.094 +326373,46.053,78.458 +326374,47.885,78.014 +326375,49.78,77.582 +326376,51.746,77.168 +326377,44.7,78.431 +326378,46.551,78.02 +326379,48.467,77.622 +326380,50.453,77.242 +326381,43.349,78.404 +326382,45.218,78.026 +326383,47.152,77.662 +326384,49.158,77.316 +326385,42,78.376 +326386,43.886,78.032 +326387,45.837,77.703 +326388,47.862,77.391 +326389,40.652,78.348 +326390,42.554,78.038 +326391,44.522,77.743 +326392,46.564,77.466 +326393,39.305,78.32 +326394,41.222,78.043 +326395,43.206,77.783 +326396,45.264,77.541 +326397,37.96,78.291 +326398,39.891,78.049 +326399,41.89,77.823 +326400,43.963,77.617 +326401,36.616,78.263 +326402,38.56,78.055 +326403,40.573,77.864 +326404,42.661,77.692 +326405,35.274,78.234 +326406,37.23,78.06 +326407,39.255,77.904 +326408,41.356,77.768 +326409,33.933,78.205 +326410,35.901,78.066 +326411,37.937,77.945 +326412,40.051,77.844 +326413,32.594,78.175 +326414,34.572,78.072 +326415,36.619,77.986 +326416,38.743,77.92 +326417,31.256,78.146 +326418,33.243,78.077 +326419,35.3,78.026 +326420,37.434,77.997 +326421,29.92,78.117 +326422,31.915,78.083 +326423,33.98,78.067 +326424,36.123,78.073 +326425,28.585,78.087 +326426,30.587,78.088 +326427,32.66,78.108 +326428,34.811,78.149 +326429,27.252,78.058 +326430,29.26,78.093 +326431,31.339,78.148 +326432,33.496,78.225 +326433,25.92,78.028 +326434,27.934,78.099 +326435,30.018,78.189 +326436,32.181,78.302 +326437,24.59,77.999 +326438,26.607,78.105 +326439,28.696,78.23 +326440,30.863,78.378 +326441,23.261,77.97 +326442,25.282,78.11 +326443,27.373,78.271 +326444,29.544,78.454 +326445,21.934,77.941 +326446,23.957,78.116 +326447,26.05,78.311 +326448,28.223,78.53 +326449,20.608,77.911 +326450,22.632,78.121 +326451,24.726,78.352 +326452,26.901,78.606 +326453,19.284,77.882 +326454,21.308,78.127 +326455,23.402,78.392 +326456,25.577,78.681 +326457,17.962,77.854 +326458,19.984,78.133 +326459,22.077,78.433 +326460,24.251,78.757 +326461,16.641,77.825 +326462,18.661,78.139 +326463,20.752,78.473 +326464,22.923,78.832 +326465,15.321,77.797 +326466,17.339,78.145 +326467,19.426,78.514 +326468,21.594,78.907 +326469,14.004,77.769 +326470,16.016,78.151 +326471,18.1,78.554 +326472,20.263,78.981 +326473,12.687,77.741 +326474,14.695,78.157 +326475,16.773,78.594 +326476,18.931,79.056 +326477,11.372,77.713 +326478,13.374,78.163 +326479,15.445,78.634 +326480,17.597,79.129 +326481,10.059,77.686 +326482,12.053,78.169 +326483,14.117,78.674 +326484,16.261,79.203 +326485,8.747,77.659 +326486,10.733,78.176 +326487,12.788,78.714 +326488,14.924,79.276 +326489,7.4366,77.633 +326490,9.4133,78.182 +326491,11.459,78.754 +326492,13.585,79.349 +326493,6.1277,77.607 +326494,8.0942,78.189 +326495,10.129,78.793 +326496,12.244,79.421 +326497,4.8202,77.582 +326498,6.7755,78.196 +326499,8.799,78.833 +326500,10.902,79.493 +326501,3.5143,77.557 +326502,5.4573,78.203 +326503,7.4681,78.872 +326504,9.5577,79.564 +326505,2.2098,77.532 +326506,4.1395,78.211 +326507,6.1367,78.911 +326508,8.2122,79.635 +326509,0.90678,77.508 +326510,2.8223,78.218 +326511,4.8047,78.95 +326512,6.8651,79.705 +326513,359.61,77.485 +326514,1.5055,78.226 +326515,3.4723,78.988 +326516,5.5164,79.775 +326517,358.31,77.462 +326518,0.18917,78.234 +326519,2.1393,79.027 +326520,4.1662,79.844 +326521,357.01,77.439 +326522,358.87,78.242 +326523,0.80574,79.065 +326524,2.8145,79.912 +326525,355.71,77.418 +326526,357.56,78.25 +326527,359.47,79.103 +326528,1.4612,79.98 +326529,354.41,77.397 +326530,356.24,78.259 +326531,358.14,79.141 +326532,0.1064,80.0469 +326533,353.12,77.376 +326534,354.93,78.267 +326535,356.8,79.179 +326536,358.75,80.1133 +326537,351.83,77.357 +326538,353.61,78.276 +326539,355.47,79.216 +326540,357.39,80.1789 +326541,350.53,77.338 +326542,352.3,78.286 +326543,354.13,79.254 +326544,356.03,80.2437 +326545,349.24,77.32 +326546,350.99,78.295 +326547,352.79,79.291 +326548,354.67,80.3078 +326549,347.95,77.302 +326550,349.67,78.305 +326551,351.46,79.327 +326552,353.31,80.3711 +326553,346.67,77.286 +326554,348.36,78.315 +326555,350.12,79.364 +326556,351.95,80.4336 +326557,345.38,77.27 +326558,347.05,78.325 +326559,348.78,79.4 +326560,350.58,80.4952 +326561,344.09,77.255 +326562,345.74,78.336 +326563,347.44,79.436 +326564,349.22,80.556 +326565,342.81,77.241 +326566,344.43,78.347 +326567,346.1,79.471 +326568,347.85,80.6159 +326569,341.53,77.227 +326570,343.12,78.358 +326571,344.76,79.507 +326572,346.48,80.6749 +326573,340.24,77.215 +326574,341.81,78.369 +326575,343.43,79.542 +326576,345.11,80.733 +326577,338.96,77.204 +326578,340.5,78.381 +326579,342.08,79.576 +326580,343.74,80.7902 +326581,337.68,77.193 +326582,339.19,78.393 +326583,340.74,79.611 +326584,342.37,80.8464 +326585,336.41,77.184 +326586,337.88,78.406 +326587,339.4,79.645 +326588,340.99,80.9017 +326589,335.13,77.175 +326590,336.57,78.419 +326591,338.06,79.679 +326592,339.62,80.956 +326593,333.85,77.167 +326594,335.26,78.432 +326595,336.72,79.712 +326596,338.24,81.0092 +326597,332.58,77.161 +326598,333.95,78.445 +326599,335.38,79.745 +326600,336.86,81.0615 +326601,331.3,77.155 +326602,332.64,78.459 +326603,334.04,79.778 +326604,335.49,81.1127 +326605,330.03,77.151 +326606,331.34,78.473 +326607,332.69,79.81 +326608,334.11,81.1629 +326609,328.76,77.147 +326610,330.03,78.488 +326611,331.35,79.842 +326612,332.73,81.2121 +326613,327.49,77.145 +326614,328.72,78.503 +326615,330.01,79.874 +326616,331.34,81.2601 +326617,326.22,77.144 +326618,327.41,78.518 +326619,328.66,79.905 +326620,329.96,81.3071 +326621,324.95,77.144 +326622,326.11,78.534 +326623,327.32,79.936 +326624,328.58,81.353 +326625,323.68,77.145 +326626,324.8,78.55 +326627,325.97,79.967 +326628,327.19,81.3978 +326629,322.41,77.147 +326630,323.5,78.566 +326631,324.63,79.997 +326632,325.81,81.4414 +326633,321.14,77.15 +326634,322.19,78.583 +326635,323.28,80.0273 +326636,324.42,81.4839 +326637,319.88,77.154 +326638,320.88,78.6 +326639,321.94,80.0569 +326640,323.04,81.5253 +326641,318.61,77.16 +326642,319.58,78.618 +326643,320.59,80.086 +326644,321.65,81.5656 +326645,317.35,77.167 +326646,318.27,78.635 +326647,319.24,80.1148 +326648,320.26,81.6046 +326649,316.08,77.175 +326650,316.97,78.654 +326651,317.9,80.1432 +326652,318.87,81.6426 +326653,314.82,77.184 +326654,315.66,78.673 +326655,316.55,80.1712 +326656,317.48,81.6793 +326657,313.56,77.194 +326658,314.36,78.692 +326659,315.2,80.1988 +326660,316.09,81.7149 +326661,312.3,77.206 +326662,313.06,78.711 +326663,313.86,80.226 +326664,314.7,81.7492 +326665,311.03,77.218 +326666,311.75,78.731 +326667,312.51,80.2528 +326668,313.31,81.7824 +326669,309.77,77.232 +326670,310.45,78.752 +326671,311.16,80.2792 +326672,311.92,81.8144 +326673,308.51,77.248 +326674,309.14,78.773 +326675,309.81,80.3052 +326676,310.53,81.8452 +326677,307.25,77.264 +326678,307.84,78.794 +326679,308.47,80.3308 +326680,309.13,81.8748 +326681,305.99,77.282 +326682,306.54,78.815 +326683,307.12,80.3561 +326684,307.74,81.9032 +326685,304.73,77.301 +326686,305.23,78.837 +326687,305.77,80.3809 +326688,306.35,81.9303 +326689,303.47,77.321 +326690,303.93,78.86 +326691,304.42,80.4053 +326692,304.95,81.9563 +326693,302.22,77.342 +326694,302.63,78.883 +326695,303.07,80.4293 +326696,303.56,81.981 +326697,300.96,77.365 +326698,301.32,78.906 +326699,301.72,80.4529 +326700,302.16,82.0046 +326701,299.7,77.389 +326702,300.02,78.93 +326703,300.38,80.4761 +326704,300.77,82.0269 +326705,298.44,77.414 +326706,298.72,78.954 +326707,299.03,80.4989 +326708,299.37,82.048 +326709,297.18,77.441 +326710,297.41,78.979 +326711,297.68,80.5213 +326712,297.98,82.0679 +326713,295.93,77.469 +326714,296.11,79.004 +326715,296.33,80.5433 +326716,296.58,82.0865 +326717,294.67,77.498 +326718,294.81,79.029 +326719,294.98,80.5649 +326720,295.19,82.104 +326721,293.41,77.528 +326722,293.5,79.055 +326723,293.63,80.586 +326724,293.79,82.1203 +326725,292.15,77.559 +326726,292.2,79.081 +326727,292.28,80.6068 +326728,292.39,82.1353 +326729,290.9,77.592 +326730,290.9,79.108 +326731,290.93,80.6272 +326732,291,82.1492 +326733,289.64,77.626 +326734,289.6,79.135 +326735,289.58,80.6472 +326736,289.6,82.1619 +326737,288.38,77.662 +326738,288.29,79.162 +326739,288.23,80.6667 +326740,288.21,82.1734 +326741,287.13,77.698 +326742,286.99,79.19 +326743,286.88,80.6859 +326744,286.81,82.1837 +326745,285.87,77.736 +326746,285.69,79.219 +326747,285.54,80.7047 +326748,285.42,82.1928 +326749,284.61,77.775 +326750,284.38,79.247 +326751,284.19,80.7231 +326752,284.02,82.2008 +326753,283.35,77.815 +326754,283.08,79.276 +326755,282.84,80.7412 +326756,282.63,82.2076 +326757,282.09,77.856 +326758,281.78,79.306 +326759,281.49,80.7588 +326760,281.23,82.2133 +326761,280.84,77.899 +326762,280.47,79.336 +326763,280.14,80.776 +326764,279.84,82.2178 +326765,279.58,77.943 +326766,279.17,79.366 +326767,278.79,80.7929 +326768,278.44,82.2212 +326769,278.32,77.988 +326770,277.86,79.397 +326771,277.44,80.8094 +326772,277.05,82.2234 +326773,277.06,78.034 +326774,276.56,79.428 +326775,276.09,80.8255 +326776,275.66,82.2246 +326777,275.8,78.081 +326778,275.26,79.46 +326779,274.74,80.8413 +326780,274.26,82.2247 +326781,274.54,78.13 +326782,273.95,79.491 +326783,273.4,80.8567 +326784,272.87,82.2236 +326785,273.28,78.179 +326786,272.65,79.524 +326787,272.05,80.8717 +326788,271.48,82.2215 +326789,272.02,78.23 +326790,271.34,79.556 +326791,270.7,80.8864 +326792,270.09,82.2184 +326793,270.76,78.282 +326794,270.04,79.589 +326795,269.35,80.9007 +326796,268.7,82.2141 +326797,269.49,78.335 +326798,268.73,79.623 +326799,268,80.9147 +326800,267.31,82.2089 +326801,268.23,78.389 +326802,267.43,79.656 +326803,266.65,80.9283 +326804,265.92,82.2026 +326805,266.97,78.444 +326806,266.12,79.69 +326807,265.31,80.9416 +326808,264.53,82.1954 +326809,265.7,78.5 +326810,264.81,79.725 +326811,263.96,80.9546 +326812,263.14,82.1871 +326813,264.44,78.557 +326814,263.51,79.76 +326815,262.61,80.9672 +326816,261.75,82.1779 +326817,263.17,78.615 +326818,262.2,79.795 +326819,261.27,80.9795 +326820,260.36,82.1677 +326821,261.91,78.674 +326822,260.9,79.83 +326823,259.92,80.9915 +326824,258.98,82.1566 +326825,260.64,78.734 +326826,259.59,79.866 +326827,258.57,81.0032 +326828,257.59,82.1445 +326829,259.37,78.795 +326830,258.28,79.902 +326831,257.23,81.0146 +326832,256.21,82.1316 +326833,258.1,78.857 +326834,256.97,79.938 +326835,255.88,81.0257 +326836,254.82,82.1177 +326837,256.83,78.92 +326838,255.67,79.975 +326839,254.53,81.0365 +326840,253.44,82.103 +326841,255.56,78.984 +326842,254.36,80.0119 +326843,253.19,81.0471 +326844,252.06,82.0875 +326845,254.29,79.049 +326846,253.05,80.0492 +326847,251.84,81.0573 +326848,250.68,82.0711 +326849,253.02,79.114 +326850,251.74,80.0867 +326851,250.5,81.0673 +326852,249.3,82.054 +326853,251.75,79.181 +326854,250.43,80.1245 +326855,249.15,81.077 +326856,247.92,82.036 +326857,250.47,79.248 +326858,249.12,80.1626 +326859,247.81,81.0865 +326860,246.54,82.0173 +326861,249.2,79.316 +326862,247.81,80.2009 +326863,246.47,81.0957 +326864,245.16,81.9978 +326865,247.92,79.384 +326866,246.5,80.2395 +326867,245.12,81.1047 +326868,243.79,81.9776 +326869,246.64,79.454 +326870,245.19,80.2784 +326871,243.78,81.1134 +326872,242.41,81.9567 +326873,245.36,79.524 +326874,243.88,80.3175 +326875,242.44,81.1219 +326876,241.04,81.9352 +326877,244.08,79.595 +326878,242.57,80.3568 +326879,241.09,81.1302 +326880,239.66,81.9129 +326881,242.8,79.666 +326882,241.25,80.3963 +326883,239.75,81.1383 +326884,238.29,81.8901 +326885,241.52,79.738 +326886,239.94,80.436 +326887,238.41,81.1462 +326888,236.92,81.8666 +326889,240.23,79.811 +326890,238.63,80.476 +326891,237.07,81.1539 +326892,235.55,81.8426 +326893,238.95,79.884 +326894,237.31,80.5161 +326895,235.73,81.1614 +326896,234.18,81.818 +326897,237.66,79.958 +326898,236,80.5564 +326899,234.39,81.1688 +326900,232.82,81.7929 +326901,236.38,80.0325 +326902,234.69,80.5969 +326903,233.05,81.1759 +326904,231.45,81.7672 +326905,235.09,80.1074 +326906,233.37,80.6376 +326907,231.71,81.183 +326908,230.09,81.7411 +326909,233.8,80.1828 +326910,232.06,80.6784 +326911,230.37,81.1898 +326912,228.72,81.7146 +326913,232.51,80.2586 +326914,230.74,80.7194 +326915,229.03,81.1965 +326916,227.36,81.6876 +326917,231.21,80.3348 +326918,229.42,80.7606 +326919,227.69,81.2031 +326920,226,81.6601 +326921,229.92,80.4114 +326922,228.11,80.8018 +326923,226.35,81.2096 +326924,224.64,81.6324 +326925,228.62,80.4884 +326926,226.79,80.8432 +326927,225.01,81.2159 +326928,223.28,81.6042 +326929,227.33,80.5657 +326930,225.47,80.8847 +326931,223.67,81.2222 +326932,221.93,81.5757 +326933,226.03,80.6433 +326934,224.16,80.9263 +326935,222.34,81.2283 +326936,220.57,81.547 +326937,224.73,80.7212 +326938,222.84,80.968 +326939,221,81.2344 +326940,219.22,81.5179 +326941,223.43,80.7993 +326942,221.52,81.0097 +326943,219.66,81.2404 +326944,217.86,81.4886 +326945,222.12,80.8776 +326946,220.2,81.0516 +326947,218.33,81.2463 +326948,216.51,81.4591 +326949,220.82,80.9561 +326950,218.88,81.0935 +326951,216.99,81.2521 +326952,215.16,81.4294 +326953,219.51,81.0348 +326954,217.56,81.1355 +326955,215.66,81.2579 +326956,213.81,81.3996 +326957,218.21,81.1136 +326958,216.24,81.1775 +326959,214.32,81.2637 +326960,212.47,81.3696 +326961,216.9,81.1925 +326962,214.91,81.2195 +326963,212.99,81.2694 +326964,211.12,81.3395 +326965,215.59,81.2714 +326966,213.59,81.2616 +326967,211.66,81.2751 +326968,209.78,81.3093 +326969,214.28,81.3504 +326970,212.27,81.3037 +326971,210.32,81.2808 +326972,208.43,81.279 +326973,212.96,81.4294 +326974,210.95,81.3458 +326975,208.99,81.2865 +326976,207.09,81.2488 +326977,211.65,81.5084 +326978,209.62,81.3879 +326979,207.66,81.2922 +326980,205.75,81.2185 +326981,210.33,81.5873 +326982,208.3,81.43 +326983,206.33,81.298 +326984,204.42,81.1883 +326985,209.01,81.6662 +326986,206.97,81.4721 +326987,205,81.3037 +326988,203.08,81.1581 +326989,207.69,81.7449 +326990,205.65,81.5141 +326991,203.67,81.3095 +326992,201.74,81.128 +326993,206.37,81.8235 +326994,204.32,81.5561 +326995,202.33,81.3153 +326996,200.41,81.0981 +326997,205.05,81.9019 +326998,202.99,81.5981 +326999,201.01,81.3212 +327000,199.08,81.0682 +327001,203.72,81.9801 +327002,201.67,81.64 +327003,199.68,81.3271 +327004,197.75,81.0386 +327005,202.4,82.0581 +327006,200.34,81.6818 +327007,198.35,81.3331 +327008,196.42,81.0092 +327009,201.07,82.1358 +327010,199.01,81.7235 +327011,197.02,81.3392 +327012,195.09,80.9799 +327013,199.74,82.2132 +327014,197.68,81.7652 +327015,195.69,81.3454 +327016,193.76,80.951 +327017,198.41,82.2903 +327018,196.35,81.8067 +327019,194.36,81.3517 +327020,192.44,80.9223 +327021,197.08,82.367 +327022,195.02,81.8481 +327023,193.04,81.3581 +327024,191.11,80.8939 +327025,195.74,82.4434 +327026,193.69,81.8894 +327027,191.71,81.3646 +327028,189.79,80.8659 +327029,194.41,82.5194 +327030,192.36,81.9306 +327031,190.38,81.3713 +327032,188.47,80.8382 +327033,193.07,82.5949 +327034,191.03,81.9717 +327035,189.06,81.3781 +327036,187.15,80.811 +327037,191.73,82.67 +327038,189.7,82.0126 +327039,187.73,81.385 +327040,185.83,80.7841 +327041,190.39,82.7445 +327042,188.37,82.0533 +327043,186.41,81.3921 +327044,184.51,80.7577 +327045,189.05,82.8186 +327046,187.03,82.0939 +327047,185.08,81.3994 +327048,183.2,80.7318 +327049,187.71,82.8921 +327050,185.7,82.1343 +327051,183.76,81.4068 +327052,181.89,80.7064 +327053,186.36,82.9651 +327054,184.36,82.1746 +327055,182.44,81.4144 +327056,180.57,80.6814 +327057,185.02,83.0374 +327058,183.03,82.2146 +327059,181.12,81.4222 +327060,179.26,80.6571 +327061,183.67,83.1091 +327062,181.69,82.2544 +327063,179.79,81.4302 +327064,177.95,80.6333 +327065,182.32,83.1802 +327066,180.36,82.2941 +327067,178.47,81.4384 +327068,176.64,80.6102 +327069,180.97,83.2506 +327070,179.02,82.3335 +327071,177.15,81.4469 +327072,175.34,80.5876 +327073,179.61,83.3203 +327074,177.69,82.3726 +327075,175.83,81.4555 +327076,174.03,80.5658 +327077,178.26,83.3893 +327078,176.35,82.4116 +327079,174.51,81.4644 +327080,172.73,80.5445 +327081,176.9,83.4575 +327082,175.01,82.4503 +327083,173.19,81.4735 +327084,171.42,80.5241 +327085,175.55,83.5249 +327086,173.67,82.4888 +327087,171.87,81.4829 +327088,170.12,80.5043 +327089,174.19,83.5916 +327090,172.33,82.527 +327091,170.55,81.4925 +327092,168.82,80.4853 +327093,172.83,83.6574 +327094,170.99,82.5649 +327095,169.23,81.5024 +327096,167.52,80.467 +327097,171.47,83.7224 +327098,169.66,82.6026 +327099,167.91,81.5126 +327100,166.23,80.4496 +327101,170.11,83.7866 +327102,168.31,82.64 +327103,166.59,81.5231 +327104,164.93,80.4329 +327105,168.74,83.8498 +327106,166.97,82.677 +327107,165.28,81.5338 +327108,163.64,80.4172 +327109,167.38,83.9122 +327110,165.63,82.7138 +327111,163.96,81.5448 +327112,162.34,80.4022 +327113,166.01,83.9736 +327114,164.29,82.7503 +327115,162.64,81.5562 +327116,161.05,80.3882 +327117,164.64,84.0341 +327118,162.95,82.7865 +327119,161.32,81.5678 +327120,159.76,80.3751 +327121,163.27,84.0936 +327122,161.61,82.8224 +327123,160.01,81.5798 +327124,158.47,80.3629 +327125,161.9,84.1521 +327126,160.26,82.858 +327127,158.69,81.592 +327128,157.18,80.3516 +327129,160.53,84.2096 +327130,158.92,82.8932 +327131,157.38,81.6046 +327132,155.89,80.3413 +327133,159.16,84.2661 +327134,157.58,82.9281 +327135,156.06,81.6176 +327136,154.6,80.332 +327137,157.78,84.3215 +327138,156.23,82.9626 +327139,154.75,81.6308 +327140,153.32,80.3237 +327141,156.41,84.3759 +327142,154.89,82.9968 +327143,153.43,81.6445 +327144,152.03,80.3164 +327145,155.03,84.4293 +327146,153.54,83.0307 +327147,152.12,81.6584 +327148,150.75,80.3102 +327149,153.65,84.4815 +327150,152.2,83.0642 +327151,150.8,81.6728 +327152,149.46,80.305 +327153,152.28,84.5327 +327154,150.85,83.0973 +327155,149.49,81.6875 +327156,148.18,80.3009 +327157,150.9,84.5827 +327158,149.51,83.1301 +327159,148.18,81.7025 +327160,146.9,80.2979 +327161,149.51,84.6316 +327162,148.16,83.1625 +327163,146.86,81.718 +327164,145.62,80.296 +327165,148.13,84.6793 +327166,146.81,83.1945 +327167,145.55,81.7338 +327168,144.34,80.2952 +327169,146.75,84.7259 +327170,145.47,83.2261 +327171,144.24,81.75 +327172,143.06,80.2956 +327173,145.37,84.7713 +327174,144.12,83.2574 +327175,142.93,81.7665 +327176,141.79,80.297 +327177,143.98,84.8156 +327178,142.77,83.2882 +327179,141.62,81.7835 +327180,140.51,80.2997 +327181,142.6,84.8587 +327182,141.42,83.3187 +327183,140.3,81.8009 +327184,139.23,80.3035 +327185,141.21,84.9005 +327186,140.07,83.3487 +327187,138.99,81.8186 +327188,137.96,80.3085 +327189,139.82,84.9412 +327190,138.73,83.3784 +327191,137.68,81.8368 +327192,136.68,80.3147 +327193,138.44,84.9806 +327194,137.38,83.4077 +327195,136.37,81.8553 +327196,135.41,80.3222 +327197,137.05,85.0188 +327198,136.03,83.4365 +327199,135.06,81.8743 +327200,134.14,80.3308 +327201,135.66,85.0558 +327202,134.68,83.465 +327203,133.75,81.8937 +327204,132.87,80.3407 +327205,134.27,85.0915 +327206,133.33,83.493 +327207,132.44,81.9135 +327208,131.59,80.3518 +327209,132.88,85.126 +327210,131.98,83.5206 +327211,131.13,81.9337 +327212,130.32,80.3641 +327213,131.48,85.1592 +327214,130.63,83.5478 +327215,129.82,81.9543 +327216,129.05,80.3777 +327217,130.09,85.1912 +327218,129.28,83.5746 +327219,128.51,81.9753 +327220,127.78,80.3926 +327221,128.7,85.2219 +327222,127.93,83.601 +327223,127.2,81.9968 +327224,126.51,80.4087 +327225,127.31,85.2514 +327226,126.58,83.6269 +327227,125.89,82.0187 +327228,125.24,80.4261 +327229,125.91,85.2796 +327230,125.22,83.6524 +327231,124.58,82.041 +327232,123.98,80.4448 +327233,124.52,85.3065 +327234,123.87,83.6775 +327235,123.27,82.0638 +327236,122.71,80.4647 +327237,123.12,85.3321 +327238,122.52,83.7022 +327239,121.96,82.0869 +327240,121.44,80.4859 +327241,121.73,85.3565 +327242,121.17,83.7265 +327243,120.65,82.1105 +327244,120.17,80.5085 +327245,120.33,85.3796 +327246,119.82,83.7503 +327247,119.34,82.1345 +327248,118.9,80.5323 +327249,118.94,85.4015 +327250,118.47,83.7737 +327251,118.03,82.159 +327252,117.64,80.5574 +327253,117.54,85.422 +327254,117.11,83.7966 +327255,116.72,82.1839 +327256,116.37,80.5838 +327257,116.15,85.4413 +327258,115.76,83.8192 +327259,115.42,82.2092 +327260,115.11,80.6114 +327261,114.75,85.4593 +327262,114.41,83.8413 +327263,114.11,82.2349 +327264,113.84,80.6404 +327265,113.35,85.4761 +327266,113.06,83.863 +327267,112.8,82.2611 +327268,112.57,80.6707 +327269,111.96,85.4916 +327270,111.7,83.8842 +327271,111.49,82.2877 +327272,111.31,80.7022 +327273,110.56,85.5058 +327274,110.35,83.9051 +327275,110.18,82.3147 +327276,110.04,80.7351 +327277,109.16,85.5188 +327278,109,83.9255 +327279,108.87,82.3421 +327280,108.78,80.7692 +327281,107.77,85.5306 +327282,107.65,83.9455 +327283,107.56,82.37 +327284,107.51,80.8046 +327285,106.37,85.5411 +327286,106.29,83.9651 +327287,106.25,82.3983 +327288,106.24,80.8412 +327289,104.97,85.5504 +327290,104.94,83.9843 +327291,104.94,82.427 +327292,104.98,80.8792 +327293,103.57,85.5585 +327294,103.59,84.003 +327295,103.64,82.4561 +327296,103.71,80.9184 +327297,102.18,85.5653 +327298,102.24,84.0214 +327299,102.33,82.4856 +327300,102.45,80.9588 +327301,100.78,85.5709 +327302,100.88,84.0393 +327303,101.02,82.5155 +327304,101.18,81.0005 +327305,99.384,85.5754 +327306,99.531,84.0569 +327307,99.708,82.5459 +327308,99.915,81.0435 +327309,97.988,85.5786 +327310,98.178,84.074 +327311,98.399,82.5766 +327312,98.649,81.0876 +327313,96.592,85.5807 +327314,96.825,84.0907 +327315,97.089,82.6078 +327316,97.382,81.133 +327317,95.196,85.5816 +327318,95.473,84.1071 +327319,95.78,82.6393 +327320,96.116,81.1796 +327321,93.8,85.5813 +327322,94.12,84.123 +327323,94.47,82.6713 +327324,94.848,81.2274 +327325,92.405,85.58 +327326,92.768,84.1386 +327327,93.16,82.7036 +327328,93.581,81.2764 +327329,91.01,85.5774 +327330,91.416,84.1537 +327331,91.85,82.7363 +327332,92.313,81.3265 +327333,89.615,85.5738 +327334,90.063,84.1685 +327335,90.54,82.7694 +327336,91.045,81.3779 +327337,88.221,85.5691 +327338,88.711,84.183 +327339,89.23,82.8029 +327340,89.776,81.4303 +327341,86.827,85.5632 +327342,87.359,84.197 +327343,87.919,82.8368 +327344,88.507,81.4839 +327345,85.434,85.5563 +327346,86.007,84.2107 +327347,86.608,82.871 +327348,87.237,81.5387 +327349,84.041,85.5484 +327350,84.655,84.224 +327351,85.298,82.9056 +327352,85.967,81.5945 +327353,82.649,85.5394 +327354,83.304,84.237 +327355,83.986,82.9405 +327356,84.696,81.6514 +327357,81.257,85.5293 +327358,81.952,84.2496 +327359,82.675,82.9758 +327360,83.425,81.7094 +327361,79.866,85.5183 +327362,80.601,84.2619 +327363,81.363,83.0114 +327364,82.153,81.7685 +327365,78.476,85.5063 +327366,79.25,84.2739 +327367,80.052,83.0474 +327368,80.881,81.8286 +327369,77.086,85.4933 +327370,77.899,84.2855 +327371,78.74,83.0837 +327372,79.607,81.8897 +327373,75.697,85.4794 +327374,76.548,84.2968 +327375,77.427,83.1203 +327376,78.334,81.9518 +327377,74.309,85.4645 +327378,75.198,84.3077 +327379,76.115,83.1573 +327380,77.059,82.0149 +327381,72.921,85.4487 +327382,73.848,84.3184 +327383,74.802,83.1946 +327384,75.784,82.0789 +327385,71.534,85.432 +327386,72.498,84.3288 +327387,73.488,83.2321 +327388,74.507,82.1439 +327389,70.148,85.4144 +327390,71.148,84.3388 +327391,72.175,83.27 +327392,73.23,82.2098 +327393,68.763,85.396 +327394,69.798,84.3486 +327395,70.861,83.3082 +327396,71.952,82.2766 +327397,67.379,85.3768 +327398,68.449,84.3581 +327399,69.547,83.3466 +327400,70.674,82.3443 +327401,65.996,85.3567 +327402,67.1,84.3673 +327403,68.233,83.3853 +327404,69.394,82.4128 +327405,64.613,85.3359 +327406,65.751,84.3762 +327407,66.918,83.4243 +327408,68.114,82.4822 +327409,63.231,85.3143 +327410,64.402,84.3849 +327411,65.603,83.4636 +327412,66.832,82.5523 +327413,61.851,85.2919 +327414,63.054,84.3933 +327415,64.287,83.5031 +327416,65.55,82.6233 +327417,60.471,85.2689 +327418,61.706,84.4014 +327419,62.971,83.5429 +327420,64.266,82.695 +327421,59.093,85.2451 +327422,60.359,84.4094 +327423,61.655,83.5829 +327424,62.982,82.7674 +327425,57.715,85.2207 +327426,59.011,84.4171 +327427,60.338,83.6231 +327428,61.696,82.8406 +327429,56.338,85.1956 +327430,57.664,84.4246 +327431,59.021,83.6635 +327432,60.41,82.9144 +327433,54.963,85.1699 +327434,56.318,84.4318 +327435,57.704,83.7042 +327436,59.122,82.9889 +327437,53.588,85.1436 +327438,54.971,84.4389 +327439,56.386,83.745 +327440,57.833,83.064 +327441,52.215,85.1167 +327442,53.625,84.4458 +327443,55.068,83.7861 +327444,56.543,83.1397 +327445,50.843,85.0893 +327446,52.28,84.4524 +327447,53.749,83.8273 +327448,55.252,83.2159 +327449,49.472,85.0614 +327450,50.934,84.4589 +327451,52.43,83.8687 +327452,53.96,83.2928 +327453,48.102,85.033 +327454,49.589,84.4653 +327455,51.111,83.9103 +327456,52.667,83.3701 +327457,46.733,85.0041 +327458,48.245,84.4714 +327459,49.791,83.952 +327460,51.372,83.4479 +327461,45.366,84.9747 +327462,46.9,84.4774 +327463,48.47,83.9939 +327464,50.076,83.5262 +327465,43.999,84.945 +327466,45.557,84.4833 +327467,47.149,84.0359 +327468,48.779,83.6049 +327469,42.634,84.9148 +327470,44.213,84.489 +327471,45.828,84.0781 +327472,47.48,83.684 +327473,41.27,84.8843 +327474,42.87,84.4946 +327475,44.506,84.1203 +327476,46.181,83.7635 +327477,39.908,84.8535 +327478,41.527,84.5001 +327479,43.184,84.1627 +327480,44.88,83.8434 +327481,38.547,84.8224 +327482,40.185,84.5055 +327483,41.861,84.2052 +327484,43.577,83.9235 +327485,37.187,84.791 +327486,38.843,84.5108 +327487,40.538,84.2478 +327488,42.274,84.0039 +327489,35.828,84.7593 +327490,37.502,84.516 +327491,39.215,84.2904 +327492,40.969,84.0846 +327493,34.47,84.7274 +327494,36.161,84.5212 +327495,37.891,84.3331 +327496,39.662,84.1655 +327497,33.114,84.6953 +327498,34.82,84.5262 +327499,36.566,84.3759 +327500,38.354,84.2466 +327501,31.759,84.6631 +327502,33.48,84.5312 +327503,35.241,84.4187 +327504,37.045,84.3279 +327505,30.406,84.6307 +327506,32.14,84.5362 +327507,33.915,84.4616 +327508,35.734,84.4092 +327509,29.054,84.5983 +327510,30.8,84.5411 +327511,32.589,84.5045 +327512,34.422,84.4907 +327513,27.703,84.5657 +327514,29.461,84.546 +327515,31.263,84.5474 +327516,33.109,84.5723 +327517,26.354,84.5331 +327518,28.123,84.5509 +327519,29.935,84.5903 +327520,31.794,84.6539 +327521,25.005,84.5005 +327522,26.785,84.5557 +327523,28.608,84.6332 +327524,30.478,84.7354 +327525,23.659,84.4678 +327526,25.447,84.5606 +327527,27.28,84.6761 +327528,29.16,84.817 +327529,22.313,84.4353 +327530,24.11,84.5655 +327531,25.951,84.719 +327532,27.841,84.8985 +327533,20.97,84.4027 +327534,22.773,84.5704 +327535,24.622,84.7618 +327536,26.52,84.9799 +327537,19.627,84.3703 +327538,21.437,84.5753 +327539,23.292,84.8047 +327540,25.198,85.0612 +327541,18.286,84.338 +327542,20.101,84.5802 +327543,21.962,84.8474 +327544,23.874,85.1424 +327545,16.946,84.3059 +327546,18.765,84.5852 +327547,20.631,84.8901 +327548,22.549,85.2233 +327549,15.608,84.2739 +327550,17.43,84.5903 +327551,19.3,84.9327 +327552,21.222,85.3041 +327553,14.271,84.2422 +327554,16.095,84.5955 +327555,17.968,84.9753 +327556,19.894,85.3846 +327557,12.935,84.2106 +327558,14.761,84.6007 +327559,16.636,85.0177 +327560,18.564,85.4648 +327561,11.601,84.1794 +327562,13.427,84.606 +327563,15.303,85.0601 +327564,17.233,85.5448 +327565,10.268,84.1484 +327566,12.094,84.6114 +327567,13.97,85.1023 +327568,15.901,85.6243 +327569,8.9363,84.1178 +327570,10.761,84.6169 +327571,12.636,85.1444 +327572,14.566,85.7036 +327573,7.6063,84.0875 +327574,9.4289,84.6225 +327575,11.302,85.1864 +327576,13.231,85.7824 +327577,6.2775,84.0576 +327578,8.0969,84.6283 +327579,9.9668,85.2282 +327580,11.894,85.8608 +327581,4.9502,84.0281 +327582,6.7653,84.6342 +327583,8.6314,85.2699 +327584,10.555,85.9388 +327585,3.6242,83.9991 +327586,5.4342,84.6402 +327587,7.2955,85.3114 +327588,9.2147,86.0162 +327589,2.2996,83.9705 +327590,4.1035,84.6464 +327591,5.959,85.3528 +327592,7.873,86.0932 +327593,0.97638,83.9424 +327594,2.7733,84.6527 +327595,4.6221,85.3939 +327596,6.5299,86.1696 +327597,359.65,83.9148 +327598,1.4434,84.6592 +327599,3.2846,85.4349 +327600,5.1853,86.2454 +327601,358.33,83.8877 +327602,0.11402,84.666 +327603,1.9466,85.4757 +327604,3.8392,86.3206 +327605,357.01,83.8612 +327606,358.79,84.6728 +327607,0.6081,85.5163 +327608,2.4916,86.3952 +327609,355.7,83.8353 +327610,357.46,84.6799 +327611,359.27,85.5566 +327612,1.1425,86.4692 +327613,354.38,83.8101 +327614,356.13,84.6872 +327615,357.93,85.5967 +327616,359.79,86.5424 +327617,353.06,83.7855 +327618,354.8,84.6948 +327619,356.59,85.6366 +327620,358.44,86.615 +327621,351.75,83.7615 +327622,353.47,84.7025 +327623,355.25,85.6763 +327624,357.09,86.6868 +327625,350.44,83.7383 +327626,352.15,84.7105 +327627,353.91,85.7157 +327628,355.73,86.7578 +327629,349.13,83.7158 +327630,350.82,84.7187 +327631,352.57,85.7548 +327632,354.38,86.8281 +327633,347.82,83.694 +327634,349.49,84.7271 +327635,351.22,85.7937 +327636,353.02,86.8975 +327637,346.51,83.673 +327638,348.17,84.7359 +327639,349.88,85.8323 +327640,351.66,86.9661 +327641,345.2,83.6528 +327642,346.84,84.7449 +327643,348.54,85.8705 +327644,350.3,87.0339 +327645,343.89,83.6334 +327646,345.52,84.7541 +327647,347.2,85.9085 +327648,348.94,87.1007 +327649,342.59,83.6148 +327650,344.19,84.7637 +327651,345.85,85.9462 +327652,347.57,87.1666 +327653,341.28,83.5971 +327654,342.87,84.7735 +327655,344.51,85.9836 +327656,346.21,87.2316 +327657,339.98,83.5803 +327658,341.55,84.7836 +327659,343.16,86.0207 +327660,344.84,87.2957 +327661,338.68,83.5645 +327662,340.22,84.794 +327663,341.82,86.0575 +327664,343.48,87.3588 +327665,337.38,83.5495 +327666,338.9,84.8048 +327667,340.47,86.0939 +327668,342.11,87.4208 +327669,336.08,83.5355 +327670,337.58,84.8158 +327671,339.13,86.1299 +327672,340.74,87.4819 +327673,334.78,83.5224 +327674,336.25,84.8272 +327675,337.78,86.1657 +327676,339.37,87.5419 +327677,333.48,83.5104 +327678,334.93,84.8389 +327679,336.43,86.201 +327680,338,87.6008 +327681,332.19,83.4994 +327682,333.61,84.851 +327683,335.09,86.2361 +327684,336.62,87.6587 +327685,330.89,83.4893 +327686,332.29,84.8634 +327687,333.74,86.2707 +327688,335.25,87.7154 +327689,329.6,83.4804 +327690,330.97,84.8761 +327691,332.39,86.305 +327692,333.87,87.771 +327693,328.3,83.4725 +327694,329.65,84.8892 +327695,331.04,86.3389 +327696,332.5,87.8255 +327697,327.01,83.4657 +327698,328.33,84.9026 +327699,329.69,86.3724 +327700,331.12,87.8789 +327701,325.72,83.46 +327702,327.01,84.9165 +327703,328.34,86.4055 +327704,329.74,87.9311 +327705,324.43,83.4554 +327706,325.69,84.9306 +327707,326.99,86.4383 +327708,328.36,87.9821 +327709,323.14,83.4519 +327710,324.37,84.9452 +327711,325.64,86.4706 +327712,326.98,88.0319 +327713,321.85,83.4496 +327714,323.05,84.9601 +327715,324.29,86.5025 +327716,325.6,88.0805 +327717,320.56,83.4484 +327718,321.73,84.9755 +327719,322.94,86.5341 +327720,324.21,88.1278 +327721,319.28,83.4484 +327722,320.41,84.9912 +327723,321.59,86.5652 +327724,322.83,88.174 +327725,317.99,83.4496 +327726,319.09,85.0073 +327727,320.24,86.5959 +327728,321.44,88.2188 +327729,316.71,83.452 +327730,317.77,85.0238 +327731,318.89,86.6261 +327732,320.06,88.2624 +327733,315.42,83.4557 +327734,316.45,85.0407 +327735,317.53,86.656 +327736,318.67,88.3048 +327737,314.14,83.4605 +327738,315.14,85.058 +327739,316.18,86.6854 +327740,317.28,88.3458 +327741,312.85,83.4666 +327742,313.82,85.0758 +327743,314.83,86.7144 +327744,315.9,88.3856 +327745,311.57,83.4739 +327746,312.5,85.0939 +327747,313.48,86.7429 +327748,314.51,88.424 +327749,310.29,83.4825 +327750,311.18,85.1125 +327751,312.12,86.771 +327752,313.12,88.4612 +327753,309.01,83.4924 +327754,309.87,85.1314 +327755,310.77,86.7987 +327756,311.73,88.497 +327757,307.73,83.5035 +327758,308.55,85.1508 +327759,309.42,86.8259 +327760,310.33,88.5315 +327761,306.45,83.5159 +327762,307.23,85.1706 +327763,308.06,86.8527 +327764,308.94,88.5647 +327765,305.17,83.5296 +327766,305.92,85.1909 +327767,306.71,86.879 +327768,307.55,88.5965 +327769,303.89,83.5446 +327770,304.6,85.2115 +327771,305.35,86.9049 +327772,306.16,88.627 +327773,302.61,83.5609 +327774,303.28,85.2326 +327775,304,86.9303 +327776,304.76,88.6562 +327777,301.33,83.5785 +327778,301.97,85.2542 +327779,302.64,86.9553 +327780,303.37,88.684 +327781,300.05,83.5974 +327782,300.65,85.2761 +327783,301.29,86.9798 +327784,301.97,88.7105 +327785,298.78,83.6177 +327786,299.33,85.2985 +327787,299.93,87.0038 +327788,300.58,88.7356 +327789,297.5,83.6392 +327790,298.02,85.3213 +327791,298.58,87.0274 +327792,299.18,88.7593 +327793,296.22,83.6621 +327794,296.7,85.3446 +327795,297.22,87.0506 +327796,297.78,88.7817 +327797,294.95,83.6863 +327798,295.39,85.3683 +327799,295.87,87.0733 +327800,296.39,88.8028 +327801,293.67,83.7119 +327802,294.07,85.3924 +327803,294.51,87.0955 +327804,294.99,88.8225 +327805,292.39,83.7387 +327806,292.76,85.417 +327807,293.15,87.1173 +327808,293.59,88.8409 +327809,291.12,83.7669 +327810,291.44,85.442 +327811,291.8,87.1386 +327812,292.2,88.8579 +327813,289.84,83.7964 +327814,290.12,85.4674 +327815,290.44,87.1594 +327816,290.8,88.8735 +327817,288.57,83.8272 +327818,288.81,85.4933 +327819,289.08,87.1798 +327820,289.4,88.8879 +327821,287.29,83.8593 +327822,287.49,85.5196 +327823,287.73,87.1998 +327824,288,88.9008 +327825,286.02,83.8928 +327826,286.18,85.5463 +327827,286.37,87.2193 +327828,286.6,88.9125 +327829,284.74,83.9276 +327830,284.86,85.5734 +327831,285.01,87.2383 +327832,285.2,88.9228 +327833,283.47,83.9636 +327834,283.55,85.601 +327835,283.66,87.2569 +327836,283.81,88.9319 +327837,282.19,84.001 +327838,282.23,85.629 +327839,282.3,87.2751 +327840,282.41,88.9396 +327841,280.92,84.0397 +327842,280.92,85.6574 +327843,280.94,87.2928 +327844,281.01,88.946 +327845,279.64,84.0797 +327846,279.6,85.6863 +327847,279.59,87.31 +327848,279.61,88.9511 +327849,278.37,84.1209 +327850,278.28,85.7155 +327851,278.23,87.3269 +327852,278.21,88.9549 +327853,277.09,84.1634 +327854,276.97,85.7452 +327855,276.87,87.3432 +327856,276.81,88.9575 +327857,275.82,84.2072 +327858,275.65,85.7753 +327859,275.52,87.3592 +327860,275.41,88.9588 +327861,274.54,84.2523 +327862,274.34,85.8058 +327863,274.16,87.3747 +327864,274.01,88.9588 +327865,273.26,84.2986 +327866,273.02,85.8367 +327867,272.8,87.3898 +327868,272.62,88.9576 +327869,271.99,84.3461 +327870,271.7,85.868 +327871,271.45,87.4045 +327872,271.22,88.9552 +327873,270.71,84.3949 +327874,270.39,85.8996 +327875,270.09,87.4187 +327876,269.82,88.9516 +327877,269.43,84.4449 +327878,269.07,85.9317 +327879,268.73,87.4326 +327880,268.42,88.9467 +327881,268.16,84.496 +327882,267.75,85.9642 +327883,267.38,87.446 +327884,267.03,88.9407 +327885,266.88,84.5484 +327886,266.44,85.997 +327887,266.02,87.459 +327888,265.63,88.9335 +327889,265.6,84.6019 +327890,265.12,86.0303 +327891,264.66,87.4717 +327892,264.23,88.9251 +327893,264.32,84.6566 +327894,263.8,86.0639 +327895,263.31,87.4839 +327896,262.84,88.9157 +327897,263.04,84.7125 +327898,262.49,86.0979 +327899,261.95,87.4957 +327900,261.44,88.905 +327901,261.77,84.7694 +327902,261.17,86.1322 +327903,260.59,87.5072 +327904,260.05,88.8933 +327905,260.49,84.8275 +327906,259.85,86.1669 +327907,259.24,87.5183 +327908,258.65,88.8805 +327909,259.21,84.8867 +327910,258.53,86.2019 +327911,257.88,87.529 +327912,257.26,88.8666 +327913,257.92,84.9469 +327914,257.21,86.2373 +327915,256.53,87.5393 +327916,255.86,88.8517 +327917,256.64,85.0082 +327918,255.9,86.273 +327919,255.17,87.5493 +327920,254.47,88.8357 +327921,255.36,85.0706 +327922,254.58,86.3091 +327923,253.82,87.5589 +327924,253.08,88.8187 +327925,254.08,85.1339 +327926,253.26,86.3454 +327927,252.46,87.5682 +327928,251.69,88.8007 +327929,252.79,85.1983 +327930,251.94,86.3821 +327931,251.11,87.5771 +327932,250.29,88.7818 +327933,251.51,85.2636 +327934,250.62,86.4191 +327935,249.75,87.5857 +327936,248.9,88.7619 +327937,250.22,85.3299 +327938,249.3,86.4564 +327939,248.4,87.594 +327940,247.51,88.741 +327941,248.94,85.3972 +327942,247.98,86.494 +327943,247.04,87.6019 +327944,246.13,88.7193 +327945,247.65,85.4653 +327946,246.66,86.5319 +327947,245.69,87.6096 +327948,244.74,88.6967 +327949,246.37,85.5343 +327950,245.34,86.5701 +327951,244.33,87.6169 +327952,243.35,88.6732 +327953,245.08,85.6042 +327954,244.02,86.6085 +327955,242.98,87.6239 +327956,241.96,88.6489 +327957,243.79,85.675 +327958,242.7,86.6473 +327959,241.63,87.6307 +327960,240.58,88.6237 +327961,242.5,85.7466 +327962,241.38,86.6862 +327963,240.27,87.6372 +327964,239.19,88.5978 +327965,241.21,85.8189 +327966,240.05,86.7254 +327967,238.92,87.6433 +327968,237.81,88.5711 +327969,239.92,85.892 +327970,238.73,86.7649 +327971,237.57,87.6493 +327972,236.43,88.5436 +327973,238.62,85.9659 +327974,237.41,86.8046 +327975,236.22,87.655 +327976,235.04,88.5155 +327977,237.33,86.0405 +327978,236.09,86.8445 +327979,234.86,87.6604 +327980,233.66,88.4866 +327981,236.03,86.1158 +327982,234.76,86.8846 +327983,233.51,87.6656 +327984,232.28,88.4571 +327985,234.74,86.1917 +327986,233.44,86.9249 +327987,232.16,87.6705 +327988,230.9,88.427 +327989,233.44,86.2683 +327990,232.11,86.9654 +327991,230.81,87.6753 +327992,229.53,88.3962 +327993,232.14,86.3455 +327994,230.79,87.0061 +327995,229.46,87.6798 +327996,228.15,88.3649 +327997,230.84,86.4232 +327998,229.46,87.047 +327999,228.11,87.6841 +328000,226.77,88.3329 +328001,229.54,86.5015 +328002,228.14,87.088 +328003,226.76,87.6882 +328004,225.4,88.3005 +328005,228.24,86.5804 +328006,226.81,87.1292 +328007,225.41,87.6922 +328008,224.02,88.2676 +328009,226.94,86.6597 +328010,225.49,87.1706 +328011,224.06,87.696 +328012,222.65,88.2341 +328013,225.64,86.7395 +328014,224.16,87.2121 +328015,222.71,87.6996 +328016,221.28,88.2003 +328017,224.33,86.8197 +328018,222.83,87.2537 +328019,221.36,87.703 +328020,219.91,88.166 +328021,223.03,86.9003 +328022,221.51,87.2954 +328023,220.01,87.7063 +328024,218.54,88.1313 +328025,221.72,86.9813 +328026,220.18,87.3373 +328027,218.66,87.7095 +328028,217.17,88.0963 +328029,220.41,87.0627 +328030,218.85,87.3792 +328031,217.31,87.7125 +328032,215.8,88.0609 +328033,219.1,87.1443 +328034,217.52,87.4212 +328035,215.97,87.7154 +328036,214.44,88.0252 +328037,217.79,87.2263 +328038,216.19,87.4633 +328039,214.62,87.7182 +328040,213.07,87.9893 +328041,216.48,87.3085 +328042,214.86,87.5055 +328043,213.27,87.7209 +328044,211.71,87.9531 +328045,215.17,87.3909 +328046,213.53,87.5477 +328047,211.93,87.7235 +328048,210.35,87.9167 +328049,213.85,87.4734 +328050,212.2,87.59 +328051,210.58,87.7261 +328052,208.99,87.88 +328053,212.54,87.5562 +328054,210.87,87.6322 +328055,209.24,87.7286 +328056,207.63,87.8433 +328057,211.22,87.639 +328058,209.54,87.6746 +328059,207.89,87.731 +328060,206.27,87.8064 +328061,209.9,87.722 +328062,208.21,87.7169 +328063,206.55,87.7334 +328064,204.91,87.7694 +328065,208.58,87.805 +328066,206.88,87.7592 +328067,205.2,87.7357 +328068,203.56,87.7324 +328069,207.26,87.888 +328070,205.54,87.8016 +328071,203.86,87.738 +328072,202.2,87.6953 +328073,205.94,87.971 +328074,204.21,87.8439 +328075,202.51,87.7403 +328076,200.85,87.6582 +328077,204.61,88.054 +328078,202.87,87.8862 +328079,201.17,87.7426 +328080,199.5,87.6211 +328081,203.29,88.1369 +328082,201.54,87.9284 +328083,199.83,87.7449 +328084,198.15,87.5841 +328085,201.96,88.2197 +328086,200.21,87.9706 +328087,198.49,87.7472 +328088,196.8,87.5471 +328089,200.63,88.3024 +328090,198.87,88.0128 +328091,197.14,87.7495 +328092,195.45,87.5103 +328093,199.3,88.3848 +328094,197.53,88.0548 +328095,195.8,87.7518 +328096,194.1,87.4736 +328097,197.97,88.4671 +328098,196.2,88.0968 +328099,194.46,87.7542 +328100,192.76,87.437 +328101,196.64,88.5492 +328102,194.86,88.1387 +328103,193.12,87.7567 +328104,191.41,87.4007 +328105,195.31,88.631 +328106,193.52,88.1805 +328107,191.78,87.7592 +328108,190.07,87.3646 +328109,193.97,88.7124 +328110,192.19,88.2222 +328111,190.44,87.7618 +328112,188.73,87.3288 +328113,192.63,88.7936 +328114,190.85,88.2637 +328115,189.1,87.7645 +328116,187.39,87.2932 +328117,191.3,88.8744 +328118,189.51,88.3051 +328119,187.76,87.7672 +328120,186.05,87.258 +328121,189.96,88.9548 +328122,188.17,88.3464 +328123,186.42,87.7701 +328124,184.71,87.2231 +328125,188.62,89.03472 +328126,186.83,88.3875 +328127,185.08,87.7731 +328128,183.38,87.1886 +328129,187.27,89.11423 +328130,185.49,88.4284 +328131,183.75,87.7762 +328132,182.04,87.1544 +328133,185.93,89.19324 +328134,184.15,88.4692 +328135,182.41,87.7795 +328136,180.71,87.1208 +328137,184.59,89.27173 +328138,182.81,88.5098 +328139,181.07,87.7828 +328140,179.38,87.0875 +328141,183.24,89.34967 +328142,181.47,88.5502 +328143,179.74,87.7864 +328144,178.05,87.0548 +328145,181.89,89.42702 +328146,180.12,88.5904 +328147,178.4,87.7901 +328148,176.72,87.0226 +328149,180.54,89.50376 +328150,178.78,88.6304 +328151,177.06,87.7939 +328152,175.39,86.9909 +328153,179.19,89.57986 +328154,177.44,88.6701 +328155,175.73,87.798 +328156,174.06,86.9598 +328157,177.84,89.65528 +328158,176.09,88.7096 +328159,174.39,87.8022 +328160,172.73,86.9293 +328161,176.49,89.73001 +328162,174.75,88.7489 +328163,173.06,87.8066 +328164,171.41,86.8994 +328165,175.13,89.804 +328166,173.4,88.7879 +328167,171.72,87.8113 +328168,170.09,86.8702 +328169,173.78,89.87723 +328170,172.06,88.8266 +328171,170.39,87.8161 +328172,168.76,86.8416 +328173,172.42,89.949672 +328174,170.71,88.8651 +328175,169.06,87.8212 +328176,167.44,86.8138 +328177,171.06,90.0213 +328178,169.37,88.9033 +328179,167.72,87.8265 +328180,166.12,86.7867 +328181,169.7,90.092084 +328182,168.02,88.9412 +328183,166.39,87.8321 +328184,164.81,86.7603 +328185,168.34,90.162 +328186,166.67,88.9788 +328187,165.06,87.8379 +328188,163.49,86.7347 +328189,166.98,90.23102 +328190,165.33,89.01613 +328191,163.73,87.8439 +328192,162.17,86.7099 +328193,165.61,90.29911 +328194,163.98,89.05311 +328195,162.4,87.8503 +328196,160.86,86.6859 +328197,164.25,90.36625 +328198,162.63,89.08977 +328199,161.06,87.8569 +328200,159.54,86.6628 +328201,162.88,90.43243 +328202,161.28,89.12609 +328203,159.73,87.8637 +328204,158.23,86.6406 +328205,161.51,90.4976 +328206,159.93,89.16208 +328207,158.4,87.8709 +328208,156.92,86.6192 +328209,160.14,90.56175 +328210,158.58,89.19771 +328211,157.07,87.8784 +328212,155.61,86.5988 +328213,158.77,90.62486 +328214,157.23,89.23299 +328215,155.74,87.8862 +328216,154.3,86.5793 +328217,157.4,90.6869 +328218,155.88,89.2679 +328219,154.41,87.8942 +328220,152.99,86.5608 +328221,156.03,90.74784 +328222,154.53,89.30245 +328223,153.08,87.9026 +328224,151.68,86.5433 +328225,154.66,90.80768 +328226,153.18,89.33661 +328227,151.75,87.9114 +328228,150.38,86.5268 +328229,153.28,90.86638 +328230,151.83,89.37039 +328231,150.43,87.9204 +328232,149.07,86.5113 +328233,151.91,90.92392 +328234,150.47,89.40378 +328235,149.1,87.9298 +328236,147.77,86.4968 +328237,150.53,90.98029 +328238,149.12,89.43677 +328239,147.77,87.9396 +328240,146.46,86.4834 +328241,149.15,91.0355 +328242,147.77,89.46935 +328243,146.44,87.9497 +328244,145.16,86.4711 +328245,147.77,91.0894 +328246,146.42,89.50152 +328247,145.12,87.9601 +328248,143.86,86.4599 +328249,146.39,91.1422 +328250,145.06,89.53327 +328251,143.79,87.9709 +328252,142.56,86.4498 +328253,145.01,91.1937 +328254,143.71,89.5646 +328255,142.46,87.9821 +328256,141.26,86.4408 +328257,143.63,91.2439 +328258,142.35,89.5955 +328259,141.13,87.9937 +328260,139.96,86.433 +328261,142.24,91.2928 +328262,141,89.62597 +328263,139.81,88.0056 +328264,138.66,86.4263 +328265,140.86,91.3405 +328266,139.64,89.65599 +328267,138.48,88.0179 +328268,137.37,86.4209 +328269,139.47,91.3868 +328270,138.29,89.68558 +328271,137.16,88.0306 +328272,136.07,86.4166 +328273,138.09,91.4318 +328274,136.93,89.71471 +328275,135.83,88.0437 +328276,134.77,86.4135 +328277,136.7,91.4755 +328278,135.58,89.74339 +328279,134.51,88.0572 +328280,133.48,86.4117 +328281,135.31,91.5178 +328282,134.22,89.77161 +328283,133.18,88.0711 +328284,132.19,86.4111 +328285,133.92,91.5588 +328286,132.86,89.79936 +328287,131.86,88.0854 +328288,130.89,86.4117 +328289,132.53,91.5984 +328290,131.51,89.82666 +328291,130.53,88.1001 +328292,129.6,86.4136 +328293,131.14,91.6366 +328294,130.15,89.85348 +328295,129.21,88.1152 +328296,128.31,86.4168 +328297,129.75,91.6734 +328298,128.79,89.87983 +328299,127.88,88.1308 +328300,127.02,86.4213 +328301,128.36,91.7088 +328302,127.43,89.9057 +328303,126.56,88.1467 +328304,125.73,86.427 +328305,126.97,91.7428 +328306,126.07,89.931093 +328307,125.23,88.1631 +328308,124.43,86.4341 +328309,125.57,91.7754 +328310,124.72,89.956004 +328311,123.91,88.1799 +328312,123.15,86.4424 +328313,124.18,91.8066 +328314,123.36,89.980431 +328315,122.59,88.1972 +328316,121.86,86.4521 +328317,122.78,91.8363 +328318,122,90.0043715 +328319,121.26,88.2148 +328320,120.57,86.4631 +328321,121.39,91.8646 +328322,120.64,90.027823 +328323,119.94,88.2329 +328324,119.28,86.4755 +328325,119.99,91.8915 +328326,119.28,90.050785 +328327,118.62,88.2514 +328328,117.99,86.4891 +328329,118.6,91.9169 +328330,117.92,90.073255 +328331,117.29,88.2704 +328332,116.7,86.5041 +328333,117.2,91.9409 +328334,116.56,90.095232 +328335,115.97,88.2898 +328336,115.42,86.5205 +328337,115.8,91.9634 +328338,115.2,90.11672 +328339,114.65,88.3096 +328340,114.13,86.5382 +328341,114.4,91.9845 +328342,113.84,90.1377 +328343,113.32,88.3299 +328344,112.84,86.5573 +328345,113.01,92.0042 +328346,112.48,90.1582 +328347,112,88.3506 +328348,111.56,86.5777 +328349,111.61,92.0224 +328350,111.12,90.1782 +328351,110.68,88.3717 +328352,110.27,86.5994 +328353,110.21,92.0392 +328354,109.76,90.1977 +328355,109.36,88.3933 +328356,108.99,86.6226 +328357,108.81,92.0545 +328358,108.4,90.21671 +328359,108.03,88.4153 +328360,107.7,86.647 +328361,107.41,92.0683 +328362,107.04,90.23522 +328363,106.71,88.4378 +328364,106.42,86.6729 +328365,106.01,92.0808 +328366,105.68,90.25324 +328367,105.39,88.4606 +328368,105.13,86.7001 +328369,104.61,92.0918 +328370,104.32,90.27076 +328371,104.06,88.484 +328372,103.85,86.7286 +328373,103.21,92.1014 +328374,102.96,90.2878 +328375,102.74,88.5077 +328376,102.56,86.7585 +328377,101.81,92.1095 +328378,101.6,90.30434 +328379,101.42,88.5319 +328380,101.28,86.7898 +328381,100.41,92.1163 +328382,100.24,90.3204 +328383,100.1,88.5565 +328384,99.991,86.8224 +328385,99.009,92.1216 +328386,98.874,90.33596 +328387,98.774,88.5816 +328388,98.706,86.8563 +328389,97.608,92.1255 +328390,97.513,90.35105 +328391,97.452,88.6071 +328392,97.421,86.8916 +328393,96.208,92.1281 +328394,96.152,90.36565 +328395,96.129,88.633 +328396,96.136,86.9282 +328397,94.807,92.1292 +328398,94.79,90.37977 +328399,94.806,88.6593 +328400,94.851,86.9661 +328401,93.407,92.129 +328402,93.429,90.39342 +328403,93.483,88.686 +328404,93.566,87.0053 +328405,92.006,92.1275 +328406,92.068,90.40659 +328407,92.16,88.7132 +328408,92.281,87.0459 +328409,90.606,92.1246 +328410,90.707,90.41929 +328411,90.837,88.7408 +328412,90.996,87.0877 +328413,89.206,92.1203 +328414,89.345,90.43153 +328415,89.514,88.7687 +328416,89.71,87.1308 +328417,87.806,92.1147 +328418,87.984,90.4433 +328419,88.191,88.7971 +328420,88.424,87.1753 +328421,86.406,92.1078 +328422,86.623,90.45462 +328423,86.868,88.8259 +328424,87.138,87.2209 +328425,85.006,92.0996 +328426,85.262,90.46548 +328427,85.544,88.8551 +328428,85.852,87.2678 +328429,83.607,92.0902 +328430,83.901,90.47589 +328431,84.221,88.8847 +328432,84.565,87.316 +328433,82.208,92.0794 +328434,82.539,90.48585 +328435,82.897,88.9146 +328436,83.278,87.3654 +328437,80.809,92.0674 +328438,81.179,90.49538 +328439,81.573,88.945 +328440,81.991,87.416 +328441,79.41,92.0542 +328442,79.818,90.50447 +328443,80.249,88.9757 +328444,80.703,87.4679 +328445,78.012,92.0398 +328446,78.457,90.51313 +328447,78.925,89.00682 +328448,79.415,87.5209 +328449,76.615,92.0241 +328450,77.096,90.52136 +328451,77.6,89.03829 +328452,78.126,87.575 +328453,75.218,92.0073 +328454,75.736,90.52918 +328455,76.276,89.07013 +328456,76.837,87.6304 +328457,73.821,91.9893 +328458,74.375,90.53658 +328459,74.951,89.10231 +328460,75.547,87.6869 +328461,72.425,91.9702 +328462,73.015,90.54358 +328463,73.626,89.13485 +328464,74.257,87.7445 +328465,71.029,91.95 +328466,71.655,90.55018 +328467,72.301,89.16774 +328468,72.966,87.8032 +328469,69.634,91.9286 +328470,70.295,90.55638 +328471,70.975,89.20096 +328472,71.675,87.863 +328473,68.239,91.9062 +328474,68.935,90.5622 +328475,69.65,89.23451 +328476,70.383,87.9238 +328477,66.845,91.8827 +328478,67.575,90.56763 +328479,68.324,89.26838 +328480,69.091,87.9857 +328481,65.452,91.8582 +328482,66.215,90.5727 +328483,66.998,89.30257 +328484,67.797,88.0486 +328485,64.059,91.8327 +328486,64.856,90.5774 +328487,65.671,89.33707 +328488,66.503,88.1126 +328489,62.667,91.8061 +328490,63.497,90.58174 +328491,64.344,89.37187 +328492,65.209,88.1775 +328493,61.276,91.7786 +328494,62.138,90.58573 +328495,63.017,89.40697 +328496,63.913,88.2434 +328497,59.886,91.7502 +328498,60.779,90.58937 +328499,61.69,89.44235 +328500,62.617,88.3102 +328501,58.496,91.7209 +328502,59.421,90.59269 +328503,60.363,89.47801 +328504,61.32,88.3779 +328505,57.107,91.6906 +328506,58.063,90.59567 +328507,59.035,89.51394 +328508,60.022,88.4465 +328509,55.719,91.6595 +328510,56.705,90.59834 +328511,57.707,89.55013 +328512,58.724,88.516 +328513,54.331,91.6275 +328514,55.347,90.60069 +328515,56.378,89.58658 +328516,57.424,88.5864 +328517,52.945,91.5948 +328518,53.989,90.60275 +328519,55.049,89.62327 +328520,56.124,88.6575 +328521,51.559,91.5612 +328522,52.632,90.60451 +328523,53.72,89.66019 +328524,54.823,88.7295 +328525,50.174,91.5269 +328526,51.275,90.60599 +328527,52.391,89.69735 +328528,53.521,88.8022 +328529,48.791,91.4918 +328530,49.918,90.60719 +328531,51.061,89.73472 +328532,52.218,88.8757 +328533,47.408,91.456 +328534,48.562,90.60813 +328535,49.731,89.77229 +328536,50.914,88.9498 +328537,46.026,91.4196 +328538,47.205,90.6088 +328539,48.4,89.81007 +328540,49.609,89.02467 +328541,44.645,91.3825 +328542,45.85,90.60924 +328543,47.069,89.84804 +328544,48.303,89.10018 +328545,43.265,91.3448 +328546,44.494,90.60943 +328547,45.738,89.88619 +328548,46.996,89.17632 +328549,41.886,91.3064 +328550,43.139,90.60939 +328551,44.406,89.924506 +328552,45.688,89.25306 +328553,40.508,91.2675 +328554,41.784,90.60914 +328555,43.074,89.962985 +328556,44.379,89.33037 +328557,39.131,91.2281 +328558,40.429,90.60867 +328559,41.742,90.0016141 +328560,43.069,89.40822 +328561,37.756,91.1882 +328562,39.075,90.60801 +328563,40.409,90.040384 +328564,41.758,89.48659 +328565,36.381,91.1478 +328566,37.721,90.60715 +328567,39.076,90.079284 +328568,40.445,89.56543 +328569,35.007,91.1069 +328570,36.367,90.60612 +328571,37.742,90.1183 +328572,39.132,89.64473 +328573,33.635,91.0656 +328574,35.014,90.60491 +328575,36.408,90.15743 +328576,37.817,89.72444 +328577,32.264,91.024 +328578,33.661,90.60355 +328579,35.074,90.19666 +328580,36.502,89.80455 +328581,30.893,90.98194 +328582,32.308,90.60204 +328583,33.739,90.23598 +328584,35.185,89.88501 +328585,29.524,90.93958 +328586,30.956,90.60038 +328587,32.403,90.27537 +328588,33.867,89.965799 +328589,28.156,90.89693 +328590,29.604,90.5986 +328591,31.068,90.31484 +328592,32.548,90.046882 +328593,26.789,90.85401 +328594,28.252,90.5967 +328595,29.732,90.35436 +328596,31.227,90.12823 +328597,25.424,90.81086 +328598,26.901,90.59469 +328599,28.395,90.39392 +328600,29.906,90.2098 +328601,24.06,90.7675 +328602,25.55,90.59259 +328603,27.058,90.43352 +328604,28.583,90.29157 +328605,22.696,90.72397 +328606,24.199,90.59039 +328607,25.721,90.47315 +328608,27.259,90.37351 +328609,21.334,90.6803 +328610,22.849,90.58812 +328611,24.383,90.51279 +328612,25.934,90.45558 +328613,19.974,90.63651 +328614,21.5,90.58578 +328615,23.044,90.55243 +328616,24.607,90.53774 +328617,18.614,90.59265 +328618,20.15,90.58339 +328619,21.705,90.59206 +328620,23.279,90.61997 +328621,17.256,90.54873 +328622,18.801,90.58095 +328623,20.366,90.63167 +328624,21.95,90.70224 +328625,15.899,90.5048 +328626,17.453,90.57848 +328627,19.026,90.67126 +328628,20.62,90.7845 +328629,14.543,90.46088 +328630,16.104,90.57598 +328631,17.686,90.7108 +328632,19.288,90.86672 +328633,13.188,90.417 +328634,14.756,90.57347 +328635,16.346,90.75028 +328636,17.955,90.94888 +328637,11.835,90.3732 +328638,13.409,90.57096 +328639,15.005,90.78971 +328640,16.621,91.0309 +328641,10.483,90.3295 +328642,12.062,90.56845 +328643,13.663,90.82906 +328644,15.286,91.1129 +328645,9.1316,90.28594 +328646,10.715,90.56596 +328647,12.321,90.86832 +328648,13.949,91.1946 +328649,7.782,90.24255 +328650,9.3689,90.5635 +328651,10.978,90.90748 +328652,12.611,91.2762 +328653,6.4336,90.19935 +328654,8.023,90.56108 +328655,9.6355,90.94654 +328656,11.271,91.3575 +328657,5.0865,90.15638 +328658,6.6775,90.5587 +328659,8.2921,90.98548 +328660,9.9307,91.4385 +328661,3.7406,90.11368 +328662,5.3324,90.55639 +328663,6.9482,91.0243 +328664,8.5886,91.5192 +328665,2.396,90.07126 +328666,3.9877,90.55415 +328667,5.6038,91.063 +328668,7.2453,91.5996 +328669,1.0526,90.029162 +328670,2.6433,90.55199 +328671,4.259,91.1015 +328672,5.9006,91.6797 +328673,359.71,89.987413 +328674,1.2994,90.54991 +328675,2.9137,91.1398 +328676,4.5546,91.7593 +328677,358.37,89.946043 +328678,359.96,90.54794 +328679,1.5679,91.178 +328680,3.2073,91.8385 +328681,357.03,89.905083 +328682,358.61,90.54608 +328683,0.22173,91.216 +328684,1.8587,91.9172 +328685,355.69,89.86456 +328686,357.27,90.54434 +328687,358.88,91.2538 +328688,0.50879,91.9954 +328689,354.35,89.8245 +328690,355.93,90.54273 +328691,357.53,91.2914 +328692,359.16,92.0731 +328693,353.02,89.78495 +328694,354.59,90.54126 +328695,356.18,91.3288 +328696,357.81,92.1502 +328697,351.68,89.74591 +328698,353.24,90.53994 +328699,354.83,91.3659 +328700,356.45,92.2267 +328701,350.35,89.70743 +328702,351.9,90.53879 +328703,353.48,91.4029 +328704,355.1,92.3026 +328705,349.02,89.66953 +328706,350.56,90.5378 +328707,352.13,91.4395 +328708,353.74,92.3778 +328709,347.69,89.63224 +328710,349.22,90.53699 +328711,350.79,91.476 +328712,352.38,92.4523 +328713,346.36,89.59559 +328714,347.88,90.53637 +328715,349.44,91.5121 +328716,351.02,92.5261 +328717,345.03,89.5596 +328718,346.54,90.53594 +328719,348.09,91.548 +328720,349.66,92.5992 +328721,343.7,89.5243 +328722,345.2,90.53573 +328723,346.73,91.5836 +328724,348.3,92.6714 +328725,342.37,89.48971 +328726,343.86,90.53573 +328727,345.38,91.6189 +328728,346.94,92.7429 +328729,341.05,89.45587 +328730,342.52,90.53595 +328731,344.03,91.6539 +328732,345.57,92.8135 +328733,339.72,89.42281 +328734,341.19,90.53641 +328735,342.68,91.6885 +328736,344.21,92.8832 +328737,338.4,89.39053 +328738,339.85,90.53711 +328739,341.33,91.7229 +328740,342.84,92.952 +328741,337.08,89.35907 +328742,338.51,90.53807 +328743,339.97,91.7569 +328744,341.47,93.0199 +328745,335.76,89.32846 +328746,337.17,90.53928 +328747,338.62,91.7906 +328748,340.11,93.0868 +328749,334.44,89.29872 +328750,335.84,90.54076 +328751,337.27,91.8239 +328752,338.74,93.1527 +328753,333.12,89.26987 +328754,334.5,90.54251 +328755,335.91,91.8569 +328756,337.36,93.2177 +328757,331.8,89.24193 +328758,333.16,90.54455 +328759,334.56,91.8895 +328760,335.99,93.2816 +328761,330.48,89.21493 +328762,331.83,90.54688 +328763,333.2,91.9217 +328764,334.62,93.3444 +328765,329.17,89.1889 +328766,330.49,90.54951 +328767,331.85,91.9535 +328768,333.24,93.4061 +328769,327.85,89.16384 +328770,329.16,90.55244 +328771,330.49,91.985 +328772,331.87,93.4667 +328773,326.54,89.13979 +328774,327.82,90.55569 +328775,329.14,92.016 +328776,330.49,93.5262 +328777,325.23,89.11677 +328778,326.49,90.55926 +328779,327.78,92.0466 +328780,329.11,93.5845 +328781,323.92,89.09479 +328782,325.15,90.56316 +328783,326.42,92.0769 +328784,327.73,93.6416 +328785,322.61,89.07388 +328786,323.82,90.56739 +328787,325.07,92.1067 +328788,326.35,93.6975 +328789,321.3,89.05405 +328790,322.48,90.57196 +328791,323.71,92.136 +328792,324.97,93.7522 +328793,319.99,89.03532 +328794,321.15,90.57688 +328795,322.35,92.165 +328796,323.59,93.8056 +328797,318.68,89.01772 +328798,319.82,90.58215 +328799,320.99,92.1935 +328800,322.21,93.8578 +328801,317.37,89.00126 +328802,318.48,90.58778 +328803,319.63,92.2215 +328804,320.82,93.9087 +328805,316.06,88.986 +328806,317.15,90.59378 +328807,318.27,92.2491 +328808,319.44,93.9582 +328809,314.76,88.9718 +328810,315.82,90.60015 +328811,316.91,92.2762 +328812,318.05,94.0064 +328813,313.45,88.9589 +328814,314.49,90.60689 +328815,315.55,92.3029 +328816,316.66,94.0533 +328817,312.15,88.9471 +328818,313.15,90.61402 +328819,314.19,92.3291 +328820,315.28,94.0988 +328821,310.85,88.9366 +328822,311.82,90.62153 +328823,312.83,92.3548 +328824,313.89,94.143 +328825,309.54,88.9273 +328826,310.49,90.62944 +328827,311.47,92.38 +328828,312.5,94.1857 +328829,308.24,88.9193 +328830,309.16,90.63774 +328831,310.11,92.4048 +328832,311.11,94.227 +328833,306.94,88.9125 +328834,307.83,90.64643 +328835,308.75,92.429 +328836,309.72,94.267 +328837,305.64,88.907 +328838,306.5,90.65554 +328839,307.39,92.4528 +328840,308.33,94.3054 +328841,304.34,88.9028 +328842,305.17,90.66505 +328843,306.03,92.476 +328844,306.93,94.3424 +328845,303.04,88.8999 +328846,303.84,90.67497 +328847,304.67,92.4988 +328848,305.54,94.378 +328849,301.74,88.8983 +328850,302.5,90.68531 +328851,303.3,92.521 +328852,304.15,94.4121 +328853,300.44,88.898 +328854,301.17,90.69606 +328855,301.94,92.5427 +328856,302.75,94.4447 +328857,299.14,88.8991 +328858,299.84,90.70724 +328859,300.58,92.5639 +328860,301.36,94.4758 +328861,297.84,88.9014 +328862,298.51,90.71884 +328863,299.22,92.5846 +328864,299.96,94.5054 +328865,296.55,88.9051 +328866,297.18,90.73087 +328867,297.85,92.6048 +328868,298.56,94.5335 +328869,295.25,88.9102 +328870,295.85,90.74332 +328871,296.49,92.6244 +328872,297.17,94.5601 +328873,293.95,88.9166 +328874,294.52,90.75621 +328875,295.13,92.6436 +328876,295.77,94.5852 +328877,292.66,88.9244 +328878,293.19,90.76953 +328879,293.76,92.6622 +328880,294.37,94.6088 +328881,291.36,88.9336 +328882,291.87,90.78328 +328883,292.4,92.6802 +328884,292.97,94.6308 +328885,290.07,88.9441 +328886,290.54,90.79747 +328887,291.04,92.6978 +328888,291.57,94.6513 +328889,288.77,88.956 +328890,289.21,90.81209 +328891,289.67,92.7148 +328892,290.17,94.6702 +328893,287.48,88.9693 +328894,287.88,90.82716 +328895,288.31,92.7313 +328896,288.77,94.6876 +328897,286.18,88.984 +328898,286.55,90.84266 +328899,286.94,92.7472 +328900,287.37,94.7035 +328901,284.89,89 +328902,285.22,90.85859 +328903,285.58,92.7626 +328904,285.97,94.7179 +328905,283.59,89.01744 +328906,283.89,90.87497 +328907,284.21,92.7775 +328908,284.57,94.7307 +328909,282.3,89.03625 +328910,282.56,90.89178 +328911,282.85,92.7918 +328912,283.17,94.7419 +328913,281.01,89.05646 +328914,281.23,90.90904 +328915,281.48,92.8057 +328916,281.77,94.7517 +328917,279.71,89.07805 +328918,279.9,90.92673 +328919,280.12,92.8189 +328920,280.37,94.7599 +328921,278.42,89.10102 +328922,278.57,90.94485 +328923,278.75,92.8317 +328924,278.97,94.7665 +328925,277.13,89.12537 +328926,277.24,90.96341 +328927,277.39,92.8439 +328928,277.57,94.7717 +328929,275.83,89.1511 +328930,275.92,90.98241 +328931,276.02,92.8556 +328932,276.16,94.7753 +328933,274.54,89.1782 +328934,274.59,91.0018 +328935,274.66,92.8667 +328936,274.76,94.7775 +328937,273.25,89.20666 +328938,273.26,91.0217 +328939,273.29,92.8774 +328940,273.36,94.7781 +328941,271.95,89.2365 +328942,271.93,91.042 +328943,271.93,92.8875 +328944,271.96,94.7772 +328945,270.66,89.26768 +328946,270.6,91.0627 +328947,270.56,92.8971 +328948,270.56,94.7749 +328949,269.36,89.30022 +328950,269.27,91.0838 +328951,269.2,92.9062 +328952,269.15,94.771 +328953,268.07,89.33411 +328954,267.94,91.1054 +328955,267.83,92.9147 +328956,267.75,94.7657 +328957,266.78,89.36932 +328958,266.61,91.1274 +328959,266.47,92.9228 +328960,266.35,94.759 +328961,265.48,89.40587 +328962,265.28,91.1498 +328963,265.1,92.9303 +328964,264.95,94.7508 +328965,264.19,89.44373 +328966,263.95,91.1726 +328967,263.74,92.9373 +328968,263.55,94.7412 +328969,262.89,89.4829 +328970,262.62,91.1958 +328971,262.37,92.9439 +328972,262.15,94.7301 +328973,261.6,89.52336 +328974,261.29,91.2194 +328975,261.01,92.9499 +328976,260.75,94.7177 +328977,260.3,89.56511 +328978,259.96,91.2434 +328979,259.64,92.9555 +328980,259.34,94.7038 +328981,259.01,89.60813 +328982,258.63,91.2678 +328983,258.28,92.9605 +328984,257.94,94.6886 +328985,257.71,89.65241 +328986,257.3,91.2926 +328987,256.91,92.9651 +328988,256.54,94.672 +328989,256.41,89.69794 +328990,255.97,91.3178 +328991,255.55,92.9692 +328992,255.14,94.6541 +328993,255.12,89.7447 +328994,254.64,91.3433 +328995,254.18,92.9728 +328996,253.74,94.6349 +328997,253.82,89.79268 +328998,253.31,91.3693 +328999,252.82,92.976 +329000,252.35,94.6144 +329001,252.52,89.84186 +329002,251.98,91.3956 +329003,251.45,92.9787 +329004,250.95,94.5925 +329005,251.22,89.89223 +329006,250.65,91.4222 +329007,250.09,92.9809 +329008,249.55,94.5694 +329009,249.92,89.943765 +329010,249.32,91.4493 +329011,248.73,92.9827 +329012,248.15,94.5451 +329013,248.62,89.9964535 +329014,247.98,91.4766 +329015,247.36,92.984 +329016,246.75,94.5195 +329017,247.32,90.050277 +329018,246.65,91.5044 +329019,246,92.9849 +329020,245.36,94.4927 +329021,246.02,90.10522 +329022,245.32,91.5324 +329023,244.63,92.9854 +329024,243.96,94.4648 +329025,244.72,90.16125 +329026,243.99,91.5608 +329027,243.27,92.9855 +329028,242.57,94.4356 +329029,243.42,90.21836 +329030,242.66,91.5895 +329031,241.91,92.9851 +329032,241.17,94.4054 +329033,242.12,90.27653 +329034,241.32,91.6186 +329035,240.54,92.9843 +329036,239.78,94.374 +329037,240.81,90.33574 +329038,239.99,91.6479 +329039,239.18,92.9831 +329040,238.38,94.3415 +329041,239.51,90.39596 +329042,238.66,91.6776 +329043,237.82,92.9816 +329044,236.99,94.308 +329045,238.21,90.45717 +329046,237.32,91.7075 +329047,236.46,92.9796 +329048,235.6,94.2734 +329049,236.9,90.51935 +329050,235.99,91.7377 +329051,235.09,92.9773 +329052,234.21,94.2378 +329053,235.59,90.58248 +329054,234.66,91.7683 +329055,233.73,92.9746 +329056,232.82,94.2012 +329057,234.29,90.64653 +329058,233.32,91.799 +329059,232.37,92.9715 +329060,231.43,94.1637 +329061,232.98,90.71148 +329062,231.99,91.8301 +329063,231.01,92.9681 +329064,230.04,94.1252 +329065,231.67,90.77731 +329066,230.65,91.8614 +329067,229.65,92.9644 +329068,228.65,94.0858 +329069,230.36,90.84398 +329070,229.32,91.8929 +329071,228.28,92.9603 +329072,227.26,94.0455 +329073,229.05,90.91147 +329074,227.98,91.9247 +329075,226.92,92.9559 +329076,225.88,94.0043 +329077,227.74,90.97977 +329078,226.65,91.9567 +329079,225.56,92.9511 +329080,224.49,93.9623 +329081,226.43,91.0488 +329082,225.31,91.9889 +329083,224.2,92.9461 +329084,223.11,93.9196 +329085,225.11,91.1186 +329086,223.97,92.0214 +329087,222.84,92.9407 +329088,221.72,93.876 +329089,223.8,91.1892 +329090,222.64,92.054 +329091,221.48,92.9351 +329092,220.34,93.8317 +329093,222.48,91.2604 +329094,221.3,92.0868 +329095,220.12,92.9292 +329096,218.96,93.7867 +329097,221.17,91.3322 +329098,219.96,92.1198 +329099,218.76,92.923 +329100,217.58,93.741 +329101,219.85,91.4047 +329102,218.62,92.153 +329103,217.41,92.9166 +329104,216.2,93.6947 +329105,218.53,91.4778 +329106,217.29,92.1863 +329107,216.05,92.9099 +329108,214.82,93.6478 +329109,217.21,91.5515 +329110,215.95,92.2198 +329111,214.69,92.903 +329112,213.44,93.6002 +329113,215.89,91.6257 +329114,214.61,92.2534 +329115,213.33,92.8958 +329116,212.06,93.5521 +329117,214.57,91.7005 +329118,213.27,92.2871 +329119,211.97,92.8884 +329120,210.69,93.5035 +329121,213.25,91.7757 +329122,211.93,92.321 +329123,210.62,92.8808 +329124,209.31,93.4543 +329125,211.92,91.8513 +329126,210.59,92.355 +329127,209.26,92.8731 +329128,207.94,93.4047 +329129,210.6,91.9274 +329130,209.25,92.389 +329131,207.9,92.8651 +329132,206.57,93.3547 +329133,209.27,92.0038 +329134,207.91,92.4232 +329135,206.55,92.8569 +329136,205.19,93.3043 +329137,207.95,92.0807 +329138,206.56,92.4574 +329139,205.19,92.8486 +329140,203.82,93.2535 +329141,206.62,92.1578 +329142,205.22,92.4917 +329143,203.83,92.8402 +329144,202.45,93.2023 +329145,205.29,92.2352 +329146,203.88,92.5261 +329147,202.48,92.8315 +329148,201.09,93.1509 +329149,203.96,92.3129 +329150,202.54,92.5605 +329151,201.12,92.8228 +329152,199.72,93.0991 +329153,202.63,92.3908 +329154,201.2,92.5949 +329155,199.77,92.8139 +329156,198.35,93.0472 +329157,201.3,92.4689 +329158,199.85,92.6293 +329159,198.42,92.8049 +329160,196.99,92.995 +329161,199.96,92.5472 +329162,198.51,92.6638 +329163,197.06,92.7958 +329164,195.63,92.9427 +329165,198.63,92.6256 +329166,197.16,92.6982 +329167,195.71,92.7867 +329168,194.26,92.8902 +329169,197.29,92.7041 +329170,195.82,92.7327 +329171,194.36,92.7774 +329172,192.9,92.8375 +329173,195.95,92.7826 +329174,194.47,92.7671 +329175,193,92.7681 +329176,191.54,92.7849 +329177,194.61,92.8611 +329178,193.13,92.8015 +329179,191.65,92.7587 +329180,190.18,92.7321 +329181,193.27,92.9397 +329182,191.78,92.8358 +329183,190.3,92.7493 +329184,188.83,92.6794 +329185,191.93,93.0182 +329186,190.44,92.8701 +329187,188.95,92.7398 +329188,187.47,92.6266 +329189,190.59,93.0966 +329190,189.09,92.9043 +329191,187.6,92.7303 +329192,186.12,92.574 +329193,189.25,93.1749 +329194,187.74,92.9384 +329195,186.25,92.7208 +329196,184.76,92.5213 +329197,187.9,93.2531 +329198,186.39,92.9724 +329199,184.9,92.7113 +329200,183.41,92.4689 +329201,186.56,93.3311 +329202,185.05,93.0063 +329203,183.55,92.7018 +329204,182.06,92.4165 +329205,185.21,93.4088 +329206,183.7,93.0402 +329207,182.2,92.6923 +329208,180.71,92.3644 +329209,183.86,93.4864 +329210,182.35,93.0738 +329211,180.85,92.6828 +329212,179.36,92.3124 +329213,182.51,93.5636 +329214,181,93.1074 +329215,179.5,92.6734 +329216,178.01,92.2607 +329217,181.16,93.6405 +329218,179.65,93.1408 +329219,178.15,92.664 +329220,176.66,92.2093 +329221,179.81,93.7171 +329222,178.3,93.174 +329223,176.8,92.6547 +329224,175.32,92.1581 +329225,178.45,93.7932 +329226,176.95,93.2071 +329227,175.45,92.6455 +329228,173.97,92.1073 +329229,177.1,93.869 +329230,175.6,93.24 +329231,174.11,92.6363 +329232,172.63,92.0569 +329233,175.74,93.9443 +329234,174.24,93.2727 +329235,172.76,92.6273 +329236,171.29,92.0068 +329237,174.39,94.0191 +329238,172.89,93.3052 +329239,171.41,92.6183 +329240,169.95,91.9572 +329241,173.03,94.0934 +329242,171.54,93.3374 +329243,170.07,92.6095 +329244,168.61,91.9081 +329245,171.67,94.1671 +329246,170.19,93.3695 +329247,168.72,92.6008 +329248,167.27,91.8594 +329249,170.31,94.2402 +329250,168.83,93.4013 +329251,167.37,92.5922 +329252,165.93,91.8113 +329253,168.95,94.3127 +329254,167.48,93.4329 +329255,166.03,92.5838 +329256,164.6,91.7637 +329257,167.58,94.3846 +329258,166.13,93.4642 +329259,164.69,92.5755 +329260,163.26,91.7166 +329261,166.22,94.4558 +329262,164.77,93.4952 +329263,163.34,92.5674 +329264,161.93,91.6702 +329265,164.85,94.5262 +329266,163.42,93.526 +329267,162,92.5594 +329268,160.6,91.6244 +329269,163.49,94.5959 +329270,162.06,93.5564 +329271,160.65,92.5517 +329272,159.26,91.5793 +329273,162.12,94.6649 +329274,160.7,93.5866 +329275,159.31,92.5441 +329276,157.93,91.5348 +329277,160.75,94.733 +329278,159.35,93.6165 +329279,157.97,92.5367 +329280,156.6,91.4911 +329281,159.38,94.8002 +329282,157.99,93.646 +329283,156.62,92.5296 +329284,155.28,91.4481 +329285,158.01,94.8666 +329286,156.63,93.6752 +329287,155.28,92.5226 +329288,153.95,91.4059 +329289,156.63,94.9321 +329290,155.28,93.7041 +329291,153.94,92.5159 +329292,152.62,91.3644 +329293,155.26,94.9967 +329294,153.92,93.7326 +329295,152.6,92.5095 +329296,151.3,91.3238 +329297,153.89,95.0603 +329298,152.56,93.7608 +329299,151.26,92.5033 +329300,149.97,91.2841 +329301,152.51,95.1228 +329302,151.2,93.7886 +329303,149.92,92.4973 +329304,148.65,91.2452 +329305,151.13,95.1844 +329306,149.84,93.8161 +329307,148.58,92.4916 +329308,147.33,91.2072 +329309,149.76,95.2449 +329310,148.48,93.8431 +329311,147.24,92.4862 +329312,146.01,91.1701 +329313,148.38,95.3044 +329314,147.12,93.8698 +329315,145.9,92.481 +329316,144.69,91.134 +329317,147,95.3627 +329318,145.76,93.896 +329319,144.56,92.4762 +329320,143.37,91.0988 +329321,145.62,95.4199 +329322,144.4,93.9219 +329323,143.22,92.4716 +329324,142.05,91.0646 +329325,144.23,95.476 +329326,143.04,93.9473 +329327,141.88,92.4674 +329328,140.73,91.0315 +329329,142.85,95.5309 +329330,141.68,93.9723 +329331,140.54,92.4634 +329332,139.41,90.99933 +329333,141.47,95.5845 +329334,140.32,93.9969 +329335,139.2,92.4598 +329336,138.1,90.96825 +329337,140.08,95.637 +329338,138.96,94.021 +329339,137.86,92.4565 +329340,136.78,90.93823 +329341,138.7,95.6881 +329342,137.6,94.0447 +329343,136.52,92.4536 +329344,135.47,90.90931 +329345,137.31,95.7381 +329346,136.24,94.0679 +329347,135.19,92.4509 +329348,134.16,90.88151 +329349,135.92,95.7867 +329350,134.87,94.0907 +329351,133.85,92.4487 +329352,132.84,90.85483 +329353,134.53,95.834 +329354,133.51,94.1129 +329355,132.51,92.4467 +329356,131.53,90.82931 +329357,133.14,95.8799 +329358,132.15,94.1348 +329359,131.17,92.4452 +329360,130.22,90.80495 +329361,131.75,95.9245 +329362,130.78,94.1561 +329363,129.84,92.444 +329364,128.91,90.78177 +329365,130.36,95.9677 +329366,129.42,94.1769 +329367,128.5,92.4432 +329368,127.6,90.7598 +329369,128.97,96.0095 +329370,128.06,94.1973 +329371,127.16,92.4427 +329372,126.29,90.73904 +329373,127.58,96.0499 +329374,126.69,94.2171 +329375,125.83,92.4426 +329376,124.99,90.71952 +329377,126.19,96.0889 +329378,125.33,94.2365 +329379,124.49,92.4429 +329380,123.68,90.70124 +329381,124.79,96.1264 +329382,123.96,94.2553 +329383,123.16,92.4436 +329384,122.37,90.68422 +329385,123.4,96.1624 +329386,122.6,94.2736 +329387,121.82,92.4447 +329388,121.06,90.66848 +329389,122,96.197 +329390,121.23,94.2914 +329391,120.48,92.4462 +329392,119.76,90.65403 +329393,120.61,96.23 +329394,119.87,94.3087 +329395,119.15,92.4481 +329396,118.45,90.64087 +329397,119.21,96.2616 +329398,118.5,94.3255 +329399,117.81,92.4504 +329400,117.15,90.62902 +329401,117.81,96.2916 +329402,117.13,94.3417 +329403,116.48,92.4532 +329404,115.85,90.6185 +329405,116.42,96.3201 +329406,115.77,94.3574 +329407,115.14,92.4563 +329408,114.54,90.60931 +329409,115.02,96.3471 +329410,114.4,94.3725 +329411,113.81,92.4599 +329412,113.24,90.60146 +329413,113.62,96.3725 +329414,113.04,94.3871 +329415,112.48,92.4638 +329416,111.94,90.59496 +329417,112.22,96.3964 +329418,111.67,94.4011 +329419,111.14,92.4682 +329420,110.63,90.58982 +329421,110.82,96.4186 +329422,110.3,94.4146 +329423,109.81,92.473 +329424,109.33,90.58605 +329425,109.42,96.4393 +329426,108.94,94.4276 +329427,108.47,92.4783 +329428,108.03,90.58364 +329429,108.02,96.4585 +329430,107.57,94.44 +329431,107.14,92.484 +329432,106.73,90.58262 +329433,106.62,96.476 +329434,106.2,94.4518 +329435,105.8,92.4901 +329436,105.43,90.58298 +329437,105.22,96.4919 +329438,104.83,94.4631 +329439,104.47,92.4966 +329440,104.13,90.58474 +329441,103.82,96.5062 +329442,103.47,94.4738 +329443,103.14,92.5036 +329444,102.83,90.58788 +329445,102.42,96.519 +329446,102.1,94.484 +329447,101.8,92.511 +329448,101.52,90.59243 +329449,101.01,96.5301 +329450,100.73,94.4936 +329451,100.47,92.5189 +329452,100.22,90.59837 +329453,99.613,96.5396 +329454,99.364,94.5026 +329455,99.135,92.5272 +329456,98.924,90.60572 +329457,98.211,96.5475 +329458,97.996,94.5111 +329459,97.802,92.5359 +329460,97.624,90.61447 +329461,96.808,96.5538 +329462,96.628,94.519 +329463,96.468,92.5451 +329464,96.325,90.62462 +329465,95.406,96.5585 +329466,95.261,94.5263 +329467,95.134,92.5547 +329468,95.025,90.63617 +329469,94.003,96.5616 +329470,93.893,94.5331 +329471,93.801,92.5647 +329472,93.725,90.64913 +329473,92.601,96.5631 +329474,92.525,94.5394 +329475,92.467,92.5752 +329476,92.425,90.6635 +329477,91.198,96.563 +329478,91.157,94.545 +329479,91.133,92.5861 +329480,91.125,90.67926 +329481,89.795,96.5613 +329482,89.789,94.5502 +329483,89.8,92.5975 +329484,89.826,90.69641 +329485,88.393,96.558 +329486,88.421,94.5547 +329487,88.466,92.6093 +329488,88.526,90.71497 +329489,86.99,96.5532 +329490,87.053,94.5587 +329491,87.132,92.6215 +329492,87.226,90.7349 +329493,85.588,96.5467 +329494,85.685,94.5622 +329495,85.798,92.6341 +329496,85.926,90.75623 +329497,84.185,96.5387 +329498,84.317,94.565 +329499,84.464,92.6472 +329500,84.625,90.77893 +329501,82.783,96.5292 +329502,82.949,94.5674 +329503,83.13,92.6607 +329504,83.325,90.803 +329505,81.381,96.5181 +329506,81.581,94.5692 +329507,81.796,92.6746 +329508,82.024,90.82844 +329509,79.979,96.5054 +329510,80.213,94.5705 +329511,80.462,92.689 +329512,80.723,90.85524 +329513,78.577,96.4913 +329514,78.846,94.5712 +329515,79.128,92.7037 +329516,79.422,90.88338 +329517,77.175,96.4756 +329518,77.478,94.5714 +329519,77.794,92.7189 +329520,78.121,90.91286 +329521,75.774,96.4584 +329522,76.11,94.571 +329523,76.459,92.7345 +329524,76.819,90.94367 +329525,74.373,96.4398 +329526,74.743,94.5701 +329527,75.125,92.7505 +329528,75.517,90.97581 +329529,72.973,96.4197 +329530,73.375,94.5687 +329531,73.79,92.7668 +329532,74.215,91.0092 +329533,71.573,96.3981 +329534,72.008,94.5668 +329535,72.455,92.7836 +329536,72.912,91.044 +329537,70.173,96.3751 +329538,70.641,94.5644 +329539,71.12,92.8008 +329540,71.609,91.08 +329541,68.773,96.3506 +329542,69.274,94.5614 +329543,69.785,92.8184 +329544,70.305,91.1173 +329545,67.374,96.3248 +329546,67.907,94.558 +329547,68.449,92.8363 +329548,69.001,91.1558 +329549,65.976,96.2975 +329550,66.54,94.5541 +329551,67.114,92.8546 +329552,67.696,91.1956 +329553,64.578,96.2689 +329554,65.174,94.5496 +329555,65.778,92.8733 +329556,66.391,91.2366 +329557,63.18,96.239 +329558,63.807,94.5447 +329559,64.442,92.8924 +329560,65.086,91.2789 +329561,61.783,96.2077 +329562,62.441,94.5393 +329563,63.106,92.9118 +329564,63.779,91.3223 +329565,60.387,96.1751 +329566,61.075,94.5334 +329567,61.77,92.9316 +329568,62.473,91.3669 +329569,58.991,96.1412 +329570,59.709,94.5271 +329571,60.433,92.9518 +329572,61.165,91.4127 +329573,57.596,96.1061 +329574,58.343,94.5202 +329575,59.097,92.9722 +329576,59.857,91.4596 +329577,56.202,96.0697 +329578,56.977,94.513 +329579,57.76,92.993 +329580,58.548,91.5076 +329581,54.808,96.0321 +329582,55.612,94.5053 +329583,56.423,93.0142 +329584,57.239,91.5567 +329585,53.415,95.9933 +329586,54.247,94.4971 +329587,55.085,93.0356 +329588,55.929,91.6069 +329589,52.022,95.9533 +329590,52.882,94.4885 +329591,53.747,93.0574 +329592,54.618,91.6582 +329593,50.63,95.9122 +329594,51.517,94.4795 +329595,52.41,93.0795 +329596,53.307,91.7105 +329597,49.24,95.8699 +329598,50.153,94.4701 +329599,51.071,93.1019 +329600,51.994,91.7639 +329601,47.849,95.8266 +329602,48.789,94.4603 +329603,49.733,93.1246 +329604,50.681,91.8182 +329605,46.46,95.7822 +329606,47.425,94.4501 +329607,48.394,93.1475 +329608,49.367,91.8735 +329609,45.072,95.7368 +329610,46.061,94.4394 +329611,47.055,93.1707 +329612,48.053,91.9298 +329613,43.684,95.6903 +329614,44.698,94.4284 +329615,45.716,93.1942 +329616,46.737,91.987 +329617,42.297,95.6429 +329618,43.335,94.4171 +329619,44.376,93.218 +329620,45.421,92.0451 +329621,40.911,95.5945 +329622,41.972,94.4053 +329623,43.036,93.242 +329624,44.103,92.1041 +329625,39.526,95.5452 +329626,40.609,94.3932 +329627,41.696,93.2663 +329628,42.785,92.1639 +329629,38.142,95.495 +329630,39.247,94.3808 +329631,40.355,93.2907 +329632,41.466,92.2246 +329633,36.759,95.4439 +329634,37.885,94.368 +329635,39.014,93.3155 +329636,40.146,92.286 +329637,35.377,95.392 +329638,36.523,94.3549 +329639,37.673,93.3404 +329640,38.825,92.3483 +329641,33.995,95.3392 +329642,35.162,94.3415 +329643,36.331,93.3655 +329644,37.503,92.4113 +329645,32.615,95.2857 +329646,33.801,94.3277 +329647,34.989,93.3908 +329648,36.18,92.475 +329649,31.236,95.2314 +329650,32.44,94.3137 +329651,33.647,93.4163 +329652,34.856,92.5394 +329653,29.857,95.1765 +329654,31.08,94.2994 +329655,32.305,93.442 +329656,33.531,92.6044 +329657,28.48,95.1208 +329658,29.72,94.2848 +329659,30.962,93.4678 +329660,32.206,92.6701 +329661,27.104,95.0645 +329662,28.36,94.2699 +329663,29.618,93.4938 +329664,30.879,92.7364 +329665,25.729,95.0076 +329666,27,94.2548 +329667,28.275,93.52 +329668,29.55,92.8033 +329669,24.355,94.95 +329670,25.641,94.2395 +329671,26.931,93.5462 +329672,28.221,92.8707 +329673,22.982,94.892 +329674,24.283,94.2239 +329675,25.586,93.5726 +329676,26.891,92.9387 +329677,21.61,94.8334 +329678,22.924,94.208 +329679,24.241,93.5991 +329680,25.56,93.0071 +329681,20.239,94.7743 +329682,21.566,94.192 +329683,22.896,93.6258 +329684,24.228,93.076 +329685,18.869,94.7147 +329686,20.209,94.1757 +329687,21.551,93.6525 +329688,22.894,93.1453 +329689,17.501,94.6548 +329690,18.851,94.1593 +329691,20.205,93.6793 +329692,21.56,93.215 +329693,16.133,94.5944 +329694,17.494,94.1427 +329695,18.858,93.7061 +329696,20.224,93.285 +329697,14.767,94.5337 +329698,16.138,94.1259 +329699,17.512,93.733 +329700,18.887,93.3554 +329701,13.402,94.4726 +329702,14.782,94.109 +329703,16.165,93.76 +329704,17.549,93.426 +329705,12.038,94.4113 +329706,13.426,94.0919 +329707,14.817,93.787 +329708,16.21,93.497 +329709,10.675,94.3497 +329710,12.07,94.0746 +329711,13.469,93.814 +329712,14.87,93.5681 +329713,9.3133,94.2879 +329714,10.715,94.0573 +329715,12.121,93.8411 +329716,13.528,93.6395 +329717,7.9528,94.2259 +329718,9.3607,94.0398 +329719,10.772,93.8681 +329720,12.186,93.711 +329721,6.5934,94.1637 +329722,8.0065,94.0223 +329723,9.4231,93.8951 +329724,10.842,93.7826 +329725,5.2352,94.1014 +329726,6.6525,94.0046 +329727,8.0736,93.9222 +329728,9.4968,93.8544 +329729,3.8782,94.039 +329730,5.299,93.9868 +329731,6.7237,93.9491 +329732,8.1507,93.9262 +329733,2.5223,93.9766 +329734,3.9459,93.969 +329735,5.3734,93.9761 +329736,6.8033,93.998 +329737,1.1677,93.9141 +329738,2.5931,93.9512 +329739,4.0227,94.003 +329740,5.4548,94.0698 +329741,359.81,93.8517 +329742,1.2408,93.9332 +329743,2.6716,94.0298 +329744,4.1051,94.1416 +329745,358.46,93.7893 +329746,359.89,93.9153 +329747,1.3201,94.0566 +329748,2.7542,94.2133 +329749,357.11,93.727 +329750,358.54,93.8973 +329751,359.97,94.0832 +329752,1.4022,94.2849 +329753,355.76,93.6648 +329754,357.19,93.8793 +329755,358.62,94.1098 +329756,0.048886,94.3564 +329757,354.41,93.6027 +329758,355.84,93.8613 +329759,357.26,94.1362 +329760,358.69,94.4277 +329761,353.06,93.5408 +329762,354.48,93.8433 +329763,355.91,94.1626 +329764,357.34,94.4987 +329765,351.72,93.4791 +329766,353.13,93.8254 +329767,354.56,94.1888 +329768,355.98,94.5695 +329769,350.37,93.4177 +329770,351.78,93.8074 +329771,353.2,94.2148 +329772,354.62,94.6401 +329773,349.03,93.3565 +329774,350.44,93.7895 +329775,351.85,94.2407 +329776,353.26,94.7103 +329777,347.69,93.2957 +329778,349.09,93.7717 +329779,350.49,94.2664 +329780,351.9,94.7802 +329781,346.34,93.2351 +329782,347.74,93.7539 +329783,349.14,94.292 +329784,350.54,94.8496 +329785,345,93.175 +329786,346.39,93.7362 +329787,347.78,94.3173 +329788,349.18,94.9187 +329789,343.66,93.1152 +329790,345.04,93.7186 +329791,346.43,94.3425 +329792,347.82,94.9873 +329793,342.33,93.0559 +329794,343.69,93.7011 +329795,345.07,94.3675 +329796,346.45,95.0555 +329797,340.99,92.9971 +329798,342.35,93.6837 +329799,343.71,94.3922 +329800,345.09,95.1231 +329801,339.65,92.9387 +329802,341,93.6664 +329803,342.36,94.4167 +329804,343.72,95.1901 +329805,338.32,92.8809 +329806,339.65,93.6492 +329807,341,94.4409 +329808,342.35,95.2566 +329809,336.98,92.8236 +329810,338.31,93.6322 +329811,339.64,94.4649 +329812,340.98,95.3225 +329813,335.65,92.7669 +329814,336.96,93.6153 +329815,338.28,94.4886 +329816,339.61,95.3877 +329817,334.32,92.7108 +329818,335.62,93.5986 +329819,336.92,94.5121 +329820,338.24,95.4522 +329821,332.99,92.6554 +329822,334.27,93.582 +329823,335.57,94.5353 +329824,336.86,95.516 +329825,331.66,92.6006 +329826,332.93,93.5657 +329827,334.21,94.5581 +329828,335.49,95.5791 +329829,330.33,92.5465 +329830,331.58,93.5495 +329831,332.85,94.5807 +329832,334.12,95.6414 +329833,329,92.4931 +329834,330.24,93.5335 +329835,331.49,94.6029 +329836,332.74,95.7028 +329837,327.68,92.4406 +329838,328.9,93.5177 +329839,330.13,94.6248 +329840,331.36,95.7634 +329841,326.35,92.3887 +329842,327.55,93.5022 +329843,328.77,94.6464 +329844,329.98,95.8232 +329845,325.02,92.3377 +329846,326.21,93.4868 +329847,327.4,94.6677 +329848,328.6,95.882 +329849,323.7,92.2875 +329850,324.87,93.4717 +329851,326.04,94.6885 +329852,327.22,95.9399 +329853,322.38,92.2382 +329854,323.53,93.4569 +329855,324.68,94.709 +329856,325.84,95.9969 +329857,321.06,92.1898 +329858,322.18,93.4423 +329859,323.32,94.7292 +329860,324.46,96.0528 +329861,319.74,92.1423 +329862,320.84,93.4279 +329863,321.96,94.7489 +329864,323.08,96.1078 +329865,318.42,92.0957 +329866,319.5,93.4139 +329867,320.59,94.7683 +329868,321.69,96.1616 +329869,317.1,92.05 +329870,318.16,93.4001 +329871,319.23,94.7872 +329872,320.31,96.2144 +329873,315.78,92.0054 +329874,316.82,93.3866 +329875,317.87,94.8058 +329876,318.92,96.2661 +329877,314.46,91.9617 +329878,315.48,93.3733 +329879,316.5,94.8239 +329880,317.54,96.3167 +329881,313.14,91.9191 +329882,314.14,93.3604 +329883,315.14,94.8416 +329884,316.15,96.3661 +329885,311.83,91.8775 +329886,312.8,93.3478 +329887,313.78,94.8589 +329888,314.76,96.4143 +329889,310.51,91.837 +329890,311.46,93.3355 +329891,312.41,94.8757 +329892,313.37,96.4613 +329893,309.2,91.7975 +329894,310.12,93.3236 +329895,311.05,94.8921 +329896,311.98,96.5071 +329897,307.89,91.7592 +329898,308.78,93.3119 +329899,309.68,94.908 +329900,310.59,96.5516 +329901,306.57,91.722 +329902,307.44,93.3007 +329903,308.32,94.9234 +329904,309.2,96.5948 +329905,305.26,91.6859 +329906,306.1,93.2897 +329907,306.95,94.9384 +329908,307.81,96.6367 +329909,303.95,91.651 +329910,304.77,93.2791 +329911,305.59,94.9529 +329912,306.41,96.6773 +329913,302.64,91.6173 +329914,303.43,93.2689 +329915,304.22,94.9669 +329916,305.02,96.7166 +329917,301.33,91.5848 +329918,302.09,93.259 +329919,302.85,94.9804 +329920,303.62,96.7545 +329921,300.02,91.5535 +329922,300.75,93.2495 +329923,301.49,94.9934 +329924,302.23,96.791 +329925,298.71,91.5235 +329926,299.41,93.2403 +329927,300.12,95.0059 +329928,300.83,96.8261 +329929,297.4,91.4946 +329930,298.08,93.2316 +329931,298.75,95.018 +329932,299.44,96.8597 +329933,296.1,91.4671 +329934,296.74,93.2232 +329935,297.39,95.0294 +329936,298.04,96.8919 +329937,294.79,91.4408 +329938,295.4,93.2152 +329939,296.02,95.0404 +329940,296.64,96.9227 +329941,293.48,91.4158 +329942,294.07,93.2076 +329943,294.65,95.0509 +329944,295.24,96.952 +329945,292.18,91.3921 +329946,292.73,93.2004 +329947,293.28,95.0608 +329948,293.85,96.9797 +329949,290.87,91.3697 +329950,291.39,93.1937 +329951,291.92,95.0701 +329952,292.45,97.006 +329953,289.57,91.3486 +329954,290.06,93.1873 +329955,290.55,95.079 +329956,291.05,97.0308 +329957,288.26,91.3289 +329958,288.72,93.1813 +329959,289.18,95.0873 +329960,289.65,97.054 +329961,286.96,91.3105 +329962,287.38,93.1758 +329963,287.81,95.095 +329964,288.25,97.0756 +329965,285.65,91.2935 +329966,286.05,93.1706 +329967,286.44,95.1022 +329968,286.85,97.0958 +329969,284.35,91.2778 +329970,284.71,93.1659 +329971,285.08,95.1089 +329972,285.45,97.1143 +329973,283.04,91.2635 +329974,283.37,93.1616 +329975,283.71,95.1149 +329976,284.04,97.1312 +329977,281.74,91.2505 +329978,282.04,93.1577 +329979,282.34,95.1205 +329980,282.64,97.1466 +329981,280.44,91.239 +329982,280.7,93.1543 +329983,280.97,95.1254 +329984,281.24,97.1604 +329985,279.14,91.2288 +329986,279.37,93.1513 +329987,279.6,95.1298 +329988,279.84,97.1725 +329989,277.83,91.2201 +329990,278.03,93.1487 +329991,278.23,95.1337 +329992,278.44,97.1831 +329993,276.53,91.2127 +329994,276.7,93.1465 +329995,276.86,95.1369 +329996,277.03,97.192 +329997,275.23,91.2068 +329998,275.36,93.1448 +329999,275.5,95.1396 +330000,275.63,97.1993 +330001,273.93,91.2022 +330002,274.03,93.1436 +330003,274.13,95.1417 +330004,274.23,97.205 +330005,272.62,91.1991 +330006,272.69,93.1427 +330007,272.76,95.1433 +330008,272.83,97.209 +330009,271.32,91.1973 +330010,271.36,93.1423 +330011,271.39,95.1443 +330012,271.42,97.2115 +330013,270.02,91.197 +330014,270.02,93.1424 +330015,270.02,95.1447 +330016,270.02,97.2122 +330017,268.72,91.1981 +330018,268.68,93.1428 +330019,268.65,95.1445 +330020,268.62,97.2114 +330021,267.42,91.2006 +330022,267.35,93.1437 +330023,267.28,95.1438 +330024,267.22,97.2089 +330025,266.11,91.2045 +330026,266.01,93.1451 +330027,265.91,95.1425 +330028,265.81,97.2048 +330029,264.81,91.2098 +330030,264.68,93.1469 +330031,264.54,95.1406 +330032,264.41,97.1991 +330033,263.51,91.2165 +330034,263.34,93.1491 +330035,263.18,95.1381 +330036,263.01,97.1917 +330037,262.21,91.2246 +330038,262.01,93.1517 +330039,261.81,95.1351 +330040,261.61,97.1827 +330041,260.9,91.2341 +330042,260.67,93.1548 +330043,260.44,95.1315 +330044,260.2,97.1721 +330045,259.6,91.245 +330046,259.34,93.1583 +330047,259.07,95.1273 +330048,258.8,97.1599 +330049,258.3,91.2573 +330050,258,93.1623 +330051,257.7,95.1226 +330052,257.4,97.1461 +330053,256.99,91.271 +330054,256.66,93.1667 +330055,256.33,95.1173 +330056,256,97.1307 +330057,255.69,91.2861 +330058,255.33,93.1715 +330059,254.96,95.1115 +330060,254.6,97.1137 +330061,254.39,91.3025 +330062,253.99,93.1767 +330063,253.6,95.1051 +330064,253.2,97.0951 +330065,253.08,91.3203 +330066,252.66,93.1823 +330067,252.23,95.0981 +330068,251.79,97.075 +330069,251.78,91.3394 +330070,251.32,93.1884 +330071,250.86,95.0906 +330072,250.39,97.0533 +330073,250.47,91.3599 +330074,249.98,93.1949 +330075,249.49,95.0826 +330076,248.99,97.03 +330077,249.17,91.3817 +330078,248.65,93.2017 +330079,248.12,95.074 +330080,247.6,97.0053 +330081,247.86,91.4048 +330082,247.31,93.209 +330083,246.76,95.0649 +330084,246.2,96.979 +330085,246.56,91.4292 +330086,245.97,93.2167 +330087,245.39,95.0552 +330088,244.8,96.9512 +330089,245.25,91.455 +330090,244.64,93.2248 +330091,244.02,95.045 +330092,243.4,96.9219 +330093,243.94,91.482 +330094,243.3,93.2333 +330095,242.65,95.0343 +330096,242,96.8911 +330097,242.63,91.5103 +330098,241.96,93.2422 +330099,241.29,95.0231 +330100,240.61,96.8589 +330101,241.33,91.5398 +330102,240.63,93.2514 +330103,239.92,95.0113 +330104,239.21,96.8252 +330105,240.02,91.5706 +330106,239.29,93.261 +330107,238.55,94.999 +330108,237.81,96.7901 +330109,238.71,91.6026 +330110,237.95,93.271 +330111,237.19,94.9863 +330112,236.42,96.7536 +330113,237.4,91.6359 +330114,236.61,93.2814 +330115,235.82,94.973 +330116,235.02,96.7158 +330117,236.09,91.6703 +330118,235.27,93.2921 +330119,234.46,94.9593 +330120,233.63,96.6765 +330121,234.78,91.7059 +330122,233.94,93.3032 +330123,233.09,94.945 +330124,232.24,96.636 +330125,233.46,91.7426 +330126,232.6,93.3147 +330127,231.72,94.9303 +330128,230.84,96.5941 +330129,232.15,91.7805 +330130,231.26,93.3264 +330131,230.36,94.9151 +330132,229.45,96.5509 +330133,230.84,91.8196 +330134,229.92,93.3386 +330135,228.99,94.8995 +330136,228.06,96.5064 +330137,229.52,91.8597 +330138,228.58,93.351 +330139,227.63,94.8834 +330140,226.67,96.4607 +330141,228.21,91.9009 +330142,227.24,93.3638 +330143,226.26,94.8668 +330144,225.28,96.4137 +330145,226.89,91.9432 +330146,225.9,93.3768 +330147,224.9,94.8499 +330148,223.89,96.3656 +330149,225.58,91.9865 +330150,224.56,93.3902 +330151,223.54,94.8324 +330152,222.51,96.3162 +330153,224.26,92.0308 +330154,223.22,93.4039 +330155,222.17,94.8146 +330156,221.12,96.2657 +330157,222.94,92.0761 +330158,221.88,93.4179 +330159,220.81,94.7963 +330160,219.73,96.2141 +330161,221.62,92.1224 +330162,220.54,93.4322 +330163,219.45,94.7776 +330164,218.35,96.1614 +330165,220.3,92.1697 +330166,219.2,93.4467 +330167,218.08,94.7586 +330168,216.96,96.1076 +330169,218.98,92.2179 +330170,217.85,93.4615 +330171,216.72,94.7391 +330172,215.58,96.0528 +330173,217.66,92.267 +330174,216.51,93.4766 +330175,215.36,94.7192 +330176,214.2,95.997 +330177,216.34,92.3169 +330178,215.17,93.4919 +330179,214,94.699 +330180,212.82,95.9402 +330181,215.01,92.3677 +330182,213.83,93.5075 +330183,212.64,94.6784 +330184,211.44,95.8824 +330185,213.69,92.4194 +330186,212.48,93.5233 +330187,211.27,94.6575 +330188,210.06,95.8237 +330189,212.36,92.4718 +330190,211.14,93.5393 +330191,209.91,94.6362 +330192,208.68,95.7641 +330193,211.04,92.525 +330194,209.8,93.5555 +330195,208.55,94.6146 +330196,207.3,95.7036 +330197,209.71,92.579 +330198,208.45,93.572 +330199,207.19,94.5927 +330200,205.93,95.6423 +330201,208.38,92.6337 +330202,207.11,93.5886 +330203,205.83,94.5704 +330204,204.55,95.5802 +330205,207.05,92.6891 +330206,205.77,93.6054 +330207,204.47,94.5478 +330208,203.18,95.5173 +330209,205.72,92.7451 +330210,204.42,93.6224 +330211,203.12,94.525 +330212,201.81,95.4537 +330213,204.39,92.8018 +330214,203.08,93.6396 +330215,201.76,94.5019 +330216,200.43,95.3893 +330217,203.05,92.859 +330218,201.73,93.6569 +330219,200.4,94.4784 +330220,199.06,95.3243 +330221,201.72,92.9169 +330222,200.38,93.6744 +330223,199.04,94.4548 +330224,197.69,95.2587 +330225,200.39,92.9753 +330226,199.04,93.692 +330227,197.68,94.4308 +330228,196.32,95.1924 +330229,199.05,93.0342 +330230,197.69,93.7097 +330231,196.33,94.4067 +330232,194.96,95.1256 +330233,197.71,93.0936 +330234,196.34,93.7275 +330235,194.97,94.3823 +330236,193.59,95.0582 +330237,196.37,93.1535 +330238,195,93.7455 +330239,193.61,94.3576 +330240,192.23,94.9903 +330241,195.03,93.2138 +330242,193.65,93.7635 +330243,192.26,94.3328 +330244,190.86,94.922 +330245,193.69,93.2745 +330246,192.3,93.7816 +330247,190.9,94.3078 +330248,189.5,94.8531 +330249,192.35,93.3355 +330250,190.95,93.7998 +330251,189.55,94.2826 +330252,188.14,94.7839 +330253,191.01,93.3969 +330254,189.6,93.8181 +330255,188.19,94.2572 +330256,186.78,94.7143 +330257,189.66,93.4586 +330258,188.25,93.8364 +330259,186.84,94.2316 +330260,185.42,94.6444 +330261,188.32,93.5205 +330262,186.9,93.8547 +330263,185.48,94.2059 +330264,184.06,94.5742 +330265,186.97,93.5827 +330266,185.55,93.8731 +330267,184.13,94.1801 +330268,182.7,94.5037 +330269,185.63,93.6451 +330270,184.2,93.8915 +330271,182.78,94.1541 +330272,181.35,94.4329 +330273,184.28,93.7076 +330274,182.85,93.9099 +330275,181.42,94.128 +330276,179.99,94.3619 +330277,182.93,93.7703 +330278,181.5,93.9283 +330279,180.07,94.1018 +330280,178.64,94.2908 +330281,181.58,93.8331 +330282,180.15,93.9467 +330283,178.72,94.0755 +330284,177.29,94.2196 +330285,180.22,93.896 +330286,178.8,93.9651 +330287,177.37,94.0491 +330288,175.94,94.1482 +330289,178.87,93.9589 +330290,177.45,93.9834 +330291,176.02,94.0226 +330292,174.59,94.0768 +330293,177.51,94.0217 +330294,176.09,94.0016 +330295,174.67,93.9961 +330296,173.24,94.0053 +330297,176.16,94.0846 +330298,174.74,94.0198 +330299,173.32,93.9695 +330300,171.89,93.9339 +330301,174.8,94.1474 +330302,173.39,94.038 +330303,171.97,93.9429 +330304,170.55,93.8625 +330305,173.44,94.2101 +330306,172.03,94.056 +330307,170.62,93.9163 +330308,169.2,93.7911 +330309,172.08,94.2727 +330310,170.68,94.074 +330311,169.27,93.8896 +330312,167.86,93.7199 +330313,170.72,94.3351 +330314,169.32,94.0918 +330315,167.92,93.8629 +330316,166.51,93.6488 +330317,169.36,94.3973 +330318,167.97,94.1096 +330319,166.57,93.8363 +330320,165.17,93.5778 +330321,168,94.4593 +330322,166.61,94.1272 +330323,165.22,93.8096 +330324,163.83,93.5071 +330325,166.64,94.521 +330326,165.26,94.1446 +330327,163.88,93.783 +330328,162.49,93.4366 +330329,165.27,94.5824 +330330,163.9,94.1619 +330331,162.53,93.7565 +330332,161.16,93.3664 +330333,163.9,94.6435 +330334,162.54,94.1791 +330335,161.18,93.7299 +330336,159.82,93.2964 +330337,162.54,94.7042 +330338,161.19,94.1961 +330339,159.84,93.7035 +330340,158.48,93.2269 +330341,161.17,94.7645 +330342,159.83,94.2128 +330343,158.49,93.6771 +330344,157.15,93.1576 +330345,159.8,94.8244 +330346,158.47,94.2294 +330347,157.14,93.6508 +330348,155.81,93.0888 +330349,158.43,94.8838 +330350,157.11,94.2458 +330351,155.8,93.6246 +330352,154.48,93.0204 +330353,157.06,94.9427 +330354,155.76,94.262 +330355,154.45,93.5985 +330356,153.15,92.9525 +330357,155.68,95.0011 +330358,154.4,94.278 +330359,153.11,93.5725 +330360,151.82,92.885 +330361,154.31,95.0589 +330362,153.04,94.2937 +330363,151.77,93.5466 +330364,150.49,92.8181 +330365,152.93,95.1162 +330366,151.68,94.3091 +330367,150.42,93.5209 +330368,149.16,92.7518 +330369,151.56,95.1728 +330370,150.32,94.3243 +330371,149.08,93.4953 +330372,147.84,92.686 +330373,150.18,95.2287 +330374,148.96,94.3393 +330375,147.74,93.4699 +330376,146.51,92.6208 +330377,148.8,95.2839 +330378,147.6,94.3539 +330379,146.39,93.4447 +330380,145.19,92.5563 +330381,147.42,95.3385 +330382,146.24,94.3683 +330383,145.05,93.4196 +330384,143.86,92.4924 +330385,146.04,95.3922 +330386,144.88,94.3823 +330387,143.71,93.3947 +330388,142.54,92.4293 +330389,144.66,95.4452 +330390,143.52,94.3961 +330391,142.37,93.37 +330392,141.22,92.3668 +330393,143.28,95.4973 +330394,142.15,94.4095 +330395,141.03,93.3455 +330396,139.9,92.3052 +330397,141.9,95.5487 +330398,140.79,94.4226 +330399,139.68,93.3213 +330400,138.58,92.2443 +330401,140.51,95.5991 +330402,139.43,94.4354 +330403,138.34,93.2972 +330404,137.26,92.1842 +330405,139.13,95.6486 +330406,138.07,94.4478 +330407,137,93.2734 +330408,135.94,92.1249 +330409,137.74,95.6972 +330410,136.7,94.4598 +330411,135.66,93.2499 +330412,134.62,92.0665 +330413,136.35,95.7448 +330414,135.34,94.4715 +330415,134.32,93.2265 +330416,133.3,92.009 +330417,134.97,95.7914 +330418,133.98,94.4828 +330419,132.98,93.2035 +330420,131.99,91.9524 +330421,133.58,95.8371 +330422,132.61,94.4937 +330423,131.65,93.1807 +330424,130.67,91.8968 +330425,132.19,95.8816 +330426,131.25,94.5043 +330427,130.31,93.1582 +330428,129.36,91.8421 +330429,130.8,95.9251 +330430,129.89,94.5144 +330431,128.97,93.136 +330432,128.05,91.7884 +330433,129.41,95.9675 +330434,128.52,94.5241 +330435,127.63,93.1141 +330436,126.73,91.7356 +330437,128.02,96.0087 +330438,127.16,94.5334 +330439,126.29,93.0924 +330440,125.42,91.684 +330441,126.62,96.0489 +330442,125.79,94.5423 +330443,124.95,93.0711 +330444,124.11,91.6333 +330445,125.23,96.0878 +330446,124.43,94.5507 +330447,123.62,93.0501 +330448,122.8,91.5837 +330449,123.84,96.1255 +330450,123.06,94.5587 +330451,122.28,93.0295 +330452,121.49,91.5353 +330453,122.44,96.162 +330454,121.7,94.5663 +330455,120.94,93.0091 +330456,120.18,91.4879 +330457,121.05,96.1972 +330458,120.33,94.5734 +330459,119.61,92.9891 +330460,118.88,91.4416 +330461,119.65,96.2312 +330462,118.96,94.58 +330463,118.27,92.9695 +330464,117.57,91.3965 +330465,118.25,96.2639 +330466,117.6,94.5862 +330467,116.93,92.9501 +330468,116.26,91.3526 +330469,116.86,96.2953 +330470,116.23,94.5919 +330471,115.6,92.9312 +330472,114.95,91.3099 +330473,115.46,96.3253 +330474,114.86,94.5971 +330475,114.26,92.9126 +330476,113.65,91.2683 +330477,114.06,96.354 +330478,113.5,94.6018 +330479,112.93,92.8944 +330480,112.34,91.228 +330481,112.66,96.3813 +330482,112.13,94.606 +330483,111.59,92.8765 +330484,111.04,91.1889 +330485,111.26,96.4072 +330486,110.76,94.6097 +330487,110.25,92.8591 +330488,109.74,91.151 +330489,109.87,96.4317 +330490,109.4,94.6129 +330491,108.92,92.842 +330492,108.43,91.1144 +330493,108.47,96.4547 +330494,108.03,94.6156 +330495,107.58,92.8253 +330496,107.13,91.0791 +330497,107.07,96.4764 +330498,106.66,94.6178 +330499,106.25,92.809 +330500,105.83,91.0451 +330501,105.66,96.4965 +330502,105.3,94.6195 +330503,104.91,92.7931 +330504,104.52,91.0123 +330505,104.26,96.5152 +330506,103.93,94.6206 +330507,103.58,92.7776 +330508,103.22,90.98093 +330509,102.86,96.5324 +330510,102.56,94.6212 +330511,102.25,92.7625 +330512,101.92,90.95083 +330513,101.46,96.5481 +330514,101.19,94.6213 +330515,100.91,92.7478 +330516,100.62,90.92206 +330517,100.06,96.5622 +330518,99.825,94.6208 +330519,99.576,92.7336 +330520,99.316,90.89464 +330521,98.658,96.5749 +330522,98.457,94.6198 +330523,98.242,92.7197 +330524,98.015,90.86857 +330525,97.256,96.586 +330526,97.089,94.6183 +330527,96.908,92.7063 +330528,96.714,90.84386 +330529,95.854,96.5955 +330530,95.721,94.6162 +330531,95.574,92.6933 +330532,95.414,90.82051 +330533,94.451,96.6035 +330534,94.353,94.6135 +330535,94.24,92.6807 +330536,94.113,90.79854 +330537,93.049,96.6099 +330538,92.985,94.6104 +330539,92.906,92.6686 +330540,92.813,90.77795 +330541,91.646,96.6148 +330542,91.617,94.6066 +330543,91.572,92.6569 +330544,91.513,90.75875 +330545,90.244,96.618 +330546,90.249,94.6023 +330547,90.239,92.6456 +330548,90.213,90.74093 +330549,88.841,96.6197 +330550,88.882,94.5974 +330551,88.905,92.6348 +330552,88.913,90.72452 +330553,87.438,96.6198 +330554,87.514,94.592 +330555,87.571,92.6243 +330556,87.613,90.7095 +330557,86.036,96.6182 +330558,86.146,94.586 +330559,86.237,92.6144 +330560,86.313,90.69588 +330561,84.633,96.6151 +330562,84.778,94.5795 +330563,84.904,92.6048 +330564,85.014,90.68366 +330565,83.231,96.6104 +330566,83.41,94.5724 +330567,83.57,92.5957 +330568,83.714,90.67285 +330569,81.829,96.604 +330570,82.042,94.5647 +330571,82.236,92.5871 +330572,82.414,90.66345 +330573,80.427,96.5961 +330574,80.674,94.5565 +330575,80.902,92.5788 +330576,81.113,90.65545 +330577,79.025,96.5865 +330578,79.307,94.5477 +330579,79.569,92.571 +330580,79.813,90.64885 +330581,77.623,96.5754 +330582,77.939,94.5383 +330583,78.235,92.5637 +330584,78.513,90.64366 +330585,76.222,96.5626 +330586,76.572,94.5284 +330587,76.901,92.5568 +330588,77.212,90.63987 +330589,74.821,96.5482 +330590,75.204,94.5179 +330591,75.567,92.5503 +330592,75.912,90.63747 +330593,73.42,96.5323 +330594,73.837,94.5069 +330595,74.233,92.5443 +330596,74.611,90.63647 +330597,72.019,96.5147 +330598,72.47,94.4953 +330599,72.899,92.5387 +330600,73.309,90.63686 +330601,70.619,96.4955 +330602,71.103,94.4832 +330603,71.565,92.5335 +330604,72.008,90.63863 +330605,69.219,96.4748 +330606,69.736,94.4705 +330607,70.23,92.5287 +330608,70.706,90.64179 +330609,67.82,96.4524 +330610,68.369,94.4572 +330611,68.896,92.5244 +330612,69.404,90.64631 +330613,66.421,96.4285 +330614,67.003,94.4434 +330615,67.562,92.5205 +330616,68.101,90.6522 +330617,65.023,96.4031 +330618,65.636,94.429 +330619,66.227,92.5171 +330620,66.798,90.65945 +330621,63.625,96.3761 +330622,64.27,94.4142 +330623,64.892,92.514 +330624,65.495,90.66806 +330625,62.227,96.3475 +330626,62.904,94.3987 +330627,63.557,92.5114 +330628,64.191,90.678 +330629,60.83,96.3174 +330630,61.538,94.3828 +330631,62.222,92.5092 +330632,62.887,90.68927 +330633,59.434,96.2858 +330634,60.173,94.3663 +330635,60.887,92.5074 +330636,61.582,90.70186 +330637,58.038,96.2527 +330638,58.807,94.3492 +330639,59.552,92.506 +330640,60.277,90.71576 +330641,56.643,96.2181 +330642,57.442,94.3317 +330643,58.217,92.505 +330644,58.971,90.73096 +330645,55.249,96.1821 +330646,56.077,94.3136 +330647,56.881,92.5044 +330648,57.665,90.74745 +330649,53.855,96.1445 +330650,54.712,94.295 +330651,55.545,92.5042 +330652,56.358,90.76521 +330653,52.462,96.1055 +330654,53.348,94.2759 +330655,54.209,92.5044 +330656,55.05,90.78423 +330657,51.07,96.0651 +330658,51.983,94.2563 +330659,52.873,92.505 +330660,53.742,90.80449 +330661,49.678,96.0233 +330662,50.619,94.2362 +330663,51.536,92.5059 +330664,52.433,90.82599 +330665,48.288,95.98 +330666,49.256,94.2156 +330667,50.2,92.5073 +330668,51.123,90.84869 +330669,46.898,95.9354 +330670,47.892,94.1945 +330671,48.863,92.509 +330672,49.813,90.8726 +330673,45.508,95.8895 +330674,46.529,94.173 +330675,47.526,92.511 +330676,48.502,90.89769 +330677,44.12,95.8421 +330678,45.166,94.1509 +330679,46.188,92.5135 +330680,47.19,90.92394 +330681,42.732,95.7935 +330682,43.804,94.1284 +330683,44.851,92.5162 +330684,45.878,90.95134 +330685,41.346,95.7436 +330686,42.441,94.1054 +330687,43.513,92.5193 +330688,44.564,90.97987 +330689,39.96,95.6924 +330690,41.079,94.082 +330691,42.175,92.5228 +330692,43.25,91.0095 +330693,38.575,95.64 +330694,39.718,94.0582 +330695,40.836,92.5266 +330696,41.935,91.0402 +330697,37.192,95.5863 +330698,38.356,94.0338 +330699,39.498,92.5307 +330700,40.619,91.072 +330701,35.809,95.5315 +330702,36.995,94.0091 +330703,38.159,92.5351 +330704,39.303,91.1049 +330705,34.427,95.4755 +330706,35.635,93.9839 +330707,36.82,92.5399 +330708,37.985,91.1388 +330709,33.046,95.4183 +330710,34.274,93.9584 +330711,35.48,92.5449 +330712,36.667,91.1736 +330713,31.666,95.36 +330714,32.914,93.9324 +330715,34.14,92.5503 +330716,35.347,91.2095 +330717,30.287,95.3006 +330718,31.555,93.906 +330719,32.8,92.5559 +330720,34.027,91.2463 +330721,28.909,95.2401 +330722,30.195,93.8792 +330723,31.46,92.5618 +330724,32.706,91.2841 +330725,27.532,95.1786 +330726,28.836,93.852 +330727,30.119,92.568 +330728,31.383,91.3228 +330729,26.157,95.116 +330730,27.478,93.8245 +330731,28.778,92.5744 +330732,30.06,91.3624 +330733,24.782,95.0525 +330734,26.12,93.7966 +330735,27.437,92.5811 +330736,28.736,91.4028 +330737,23.408,94.988 +330738,24.762,93.7684 +330739,26.095,92.5881 +330740,27.41,91.4441 +330741,22.036,94.9226 +330742,23.404,93.7398 +330743,24.753,92.5952 +330744,26.084,91.4862 +330745,20.665,94.8563 +330746,22.047,93.7108 +330747,23.411,92.6026 +330748,24.757,91.5291 +330749,19.294,94.7891 +330750,20.691,93.6816 +330751,22.068,92.6103 +330752,23.428,91.5727 +330753,17.925,94.7211 +330754,19.334,93.652 +330755,20.725,92.6181 +330756,22.099,91.6171 +330757,16.557,94.6523 +330758,17.979,93.6221 +330759,19.382,92.6262 +330760,20.768,91.6622 +330761,15.191,94.5827 +330762,16.623,93.5919 +330763,18.038,92.6344 +330764,19.436,91.708 +330765,13.825,94.5124 +330766,15.268,93.5615 +330767,16.694,92.6428 +330768,18.103,91.7544 +330769,12.461,94.4413 +330770,13.914,93.5307 +330771,15.35,92.6514 +330772,16.769,91.8015 +330773,11.098,94.3696 +330774,12.559,93.4997 +330775,14.005,92.6601 +330776,15.434,91.8491 +330777,9.7356,94.2972 +330778,11.206,93.4684 +330779,12.66,92.669 +330780,14.098,91.8974 +330781,8.3748,94.2242 +330782,9.8522,93.4369 +330783,11.314,92.6781 +330784,12.761,91.9461 +330785,7.0152,94.1507 +330786,8.4992,93.4052 +330787,9.9682,92.6872 +330788,11.422,91.9954 +330789,5.6569,94.0765 +330790,7.1467,93.3732 +330791,8.6219,92.6965 +330792,10.083,92.0452 +330793,4.2997,94.0019 +330794,5.7946,93.341 +330795,7.2753,92.7059 +330796,8.7416,92.0954 +330797,2.9438,93.9268 +330798,4.4429,93.3087 +330799,5.9283,92.7154 +330800,7.3996,92.146 +330801,1.5891,93.8512 +330802,3.0917,93.2761 +330803,4.5809,92.725 +330804,6.0564,92.197 +330805,0.23568,93.7753 +330806,1.7409,93.2433 +330807,3.2331,92.7347 +330808,4.712,92.2484 +330809,358.88,93.6989 +330810,0.3905,93.2104 +330811,1.885,92.7445 +330812,3.3664,92.3001 +330813,357.53,93.6222 +330814,359.04,93.1773 +330815,0.53648,92.7543 +330816,2.0196,92.3521 +330817,356.18,93.5452 +330818,357.69,93.1441 +330819,359.19,92.7641 +330820,0.67159,92.4044 +330821,354.83,93.4679 +330822,356.34,93.1108 +330823,357.84,92.774 +330824,359.32,92.4569 +330825,353.49,93.3904 +330826,354.99,93.0773 +330827,356.49,92.7839 +330828,357.97,92.5097 +330829,352.14,93.3127 +330830,353.65,93.0437 +330831,355.14,92.7939 +330832,356.62,92.5625 +330833,350.8,93.2348 +330834,352.3,93.01 +330835,353.79,92.8038 +330836,355.27,92.6156 +330837,349.45,93.1567 +330838,350.95,92.9762 +330839,352.44,92.8138 +330840,353.91,92.6687 +330841,348.11,93.0786 +330842,349.6,92.9423 +330843,351.09,92.8237 +330844,352.56,92.7219 +330845,346.77,93.0004 +330846,348.26,92.9084 +330847,349.73,92.8336 +330848,351.2,92.7752 +330849,345.43,92.9221 +330850,346.91,92.8744 +330851,348.38,92.8434 +330852,349.84,92.8284 +330853,344.09,92.8439 +330854,345.56,92.8404 +330855,347.03,92.8532 +330856,348.49,92.8816 +330857,342.75,92.7656 +330858,344.22,92.8063 +330859,345.68,92.863 +330860,347.13,92.9348 +330861,341.42,92.6875 +330862,342.87,92.7723 +330863,344.32,92.8726 +330864,345.76,92.9879 +330865,340.08,92.6094 +330866,341.53,92.7382 +330867,342.97,92.8822 +330868,344.4,93.0409 +330869,338.75,92.5315 +330870,340.19,92.7041 +330871,341.62,92.8917 +330872,343.04,93.0937 +330873,337.41,92.4538 +330874,338.84,92.67 +330875,340.26,92.9011 +330876,341.67,93.1464 +330877,336.08,92.3762 +330878,337.5,92.6359 +330879,338.91,92.9104 +330880,340.31,93.1988 +330881,334.75,92.2989 +330882,336.16,92.6019 +330883,337.55,92.9195 +330884,338.94,93.251 +330885,333.42,92.2218 +330886,334.81,92.5679 +330887,336.2,92.9285 +330888,337.57,93.3029 +330889,332.1,92.1451 +330890,333.47,92.534 +330891,334.84,92.9374 +330892,336.2,93.3544 +330893,330.77,92.0686 +330894,332.13,92.5002 +330895,333.49,92.9461 +330896,334.83,93.4057 +330897,329.44,91.9926 +330898,330.79,92.4664 +330899,332.13,92.9546 +330900,333.46,93.4565 +330901,328.12,91.9169 +330902,329.45,92.4327 +330903,330.77,92.963 +330904,332.09,93.507 +330905,326.79,91.8417 +330906,328.11,92.3991 +330907,329.42,92.9712 +330908,330.72,93.557 +330909,325.47,91.7669 +330910,326.77,92.3656 +330911,328.06,92.9791 +330912,329.34,93.6065 +330913,324.15,91.6926 +330914,325.43,92.3323 +330915,326.7,92.9869 +330916,327.97,93.6555 +330917,322.83,91.6188 +330918,324.09,92.2991 +330919,325.34,92.9944 +330920,326.59,93.704 +330921,321.51,91.5456 +330922,322.75,92.266 +330923,323.99,93.0017 +330924,325.21,93.7519 +330925,320.19,91.4729 +330926,321.41,92.2331 +330927,322.63,93.0088 +330928,323.83,93.7992 +330929,318.88,91.4009 +330930,320.08,92.2003 +330931,321.27,93.0156 +330932,322.45,93.8459 +330933,317.56,91.3295 +330934,318.74,92.1677 +330935,319.91,93.0221 +330936,321.07,93.892 +330937,316.24,91.2588 +330938,317.4,92.1353 +330939,318.55,93.0284 +330940,319.69,93.9373 +330941,314.93,91.1887 +330942,316.06,92.1031 +330943,317.19,93.0344 +330944,318.31,93.9819 +330945,313.62,91.1194 +330946,314.73,92.0711 +330947,315.83,93.0401 +330948,316.92,94.0258 +330949,312.3,91.0509 +330950,313.39,92.0392 +330951,314.47,93.0455 +330952,315.54,94.0689 +330953,310.99,90.98307 +330954,312.06,92.0077 +330955,313.11,93.0505 +330956,314.15,94.1112 +330957,309.68,90.91609 +330958,310.72,91.9763 +330959,311.75,93.0553 +330960,312.77,94.1526 +330961,308.37,90.84995 +330962,309.38,91.9452 +330963,310.39,93.0597 +330964,311.38,94.1932 +330965,307.06,90.78465 +330966,308.05,91.9143 +330967,309.03,93.0638 +330968,309.99,94.2329 +330969,305.76,90.72024 +330970,306.71,91.8837 +330971,307.66,93.0676 +330972,308.6,94.2716 +330973,304.45,90.65673 +330974,305.38,91.8533 +330975,306.3,93.071 +330976,307.21,94.3095 +330977,303.14,90.59416 +330978,304.05,91.8233 +330979,304.94,93.074 +330980,305.82,94.3463 +330981,301.84,90.53253 +330982,302.71,91.7935 +330983,303.58,93.0767 +330984,304.43,94.3822 +330985,300.53,90.47189 +330986,301.38,91.764 +330987,302.21,93.079 +330988,303.04,94.417 +330989,299.23,90.41224 +330990,300.05,91.7348 +330991,300.85,93.0809 +330992,301.64,94.4508 +330993,297.92,90.35361 +330994,298.71,91.7059 +330995,299.49,93.0824 +330996,300.25,94.4835 +330997,296.62,90.29603 +330998,297.38,91.6773 +330999,298.13,93.0835 +331000,298.86,94.515 +331001,295.32,90.23951 +331002,296.05,91.649 +331003,296.76,93.0841 +331004,297.46,94.5455 +331005,294.02,90.18407 +331006,294.72,91.6211 +331007,295.4,93.0844 +331008,296.07,94.5748 +331009,292.72,90.12973 +331010,293.38,91.5934 +331011,294.03,93.0842 +331012,294.67,94.603 +331013,291.42,90.076518 +331014,292.05,91.5662 +331015,292.67,93.0836 +331016,293.27,94.63 +331017,290.12,90.024444 +331018,290.72,91.5393 +331019,291.31,93.0826 +331020,291.88,94.6557 +331021,288.82,89.973528 +331022,289.39,91.5127 +331023,289.94,93.0811 +331024,290.48,94.6802 +331025,287.52,89.923787 +331026,288.06,91.4865 +331027,288.58,93.0792 +331028,289.08,94.7035 +331029,286.22,89.87524 +331030,286.73,91.4606 +331031,287.21,93.0768 +331032,287.68,94.7255 +331033,284.92,89.8279 +331034,285.4,91.4352 +331035,285.85,93.074 +331036,286.28,94.7462 +331037,283.63,89.78178 +331038,284.06,91.4101 +331039,284.48,93.0706 +331040,284.88,94.7655 +331041,282.33,89.7369 +331042,282.73,91.3854 +331043,283.12,93.0668 +331044,283.48,94.7836 +331045,281.03,89.69327 +331046,281.4,91.361 +331047,281.75,93.0626 +331048,282.08,94.8003 +331049,279.74,89.6509 +331050,280.07,91.3371 +331051,280.39,93.0578 +331052,280.68,94.8156 +331053,278.44,89.60981 +331054,278.74,91.3136 +331055,279.02,93.0525 +331056,279.28,94.8296 +331057,277.15,89.57001 +331058,277.41,91.2904 +331059,277.66,93.0468 +331060,277.88,94.8421 +331061,275.85,89.53151 +331062,276.08,91.2677 +331063,276.29,93.0405 +331064,276.48,94.8533 +331065,274.56,89.49433 +331066,274.75,91.2454 +331067,274.93,93.0338 +331068,275.08,94.863 +331069,273.26,89.45846 +331070,273.42,91.2235 +331071,273.56,93.0265 +331072,273.68,94.8713 +331073,271.97,89.42393 +331074,272.09,91.202 +331075,272.2,93.0188 +331076,272.28,94.8781 +331077,270.67,89.39073 +331078,270.77,91.1809 +331079,270.83,93.0105 +331080,270.88,94.8835 +331081,269.38,89.35888 +331082,269.44,91.1602 +331083,269.47,93.0017 +331084,269.47,94.8874 +331085,268.09,89.32838 +331086,268.11,91.14 +331087,268.1,92.9924 +331088,268.07,94.8898 +331089,266.79,89.29925 +331090,266.78,91.1202 +331091,266.74,92.9825 +331092,266.67,94.8907 +331093,265.5,89.27148 +331094,265.45,91.1009 +331095,265.37,92.9722 +331096,265.27,94.8901 +331097,264.2,89.24508 +331098,264.12,91.0819 +331099,264.01,92.9613 +331100,263.87,94.888 +331101,262.91,89.22006 +331102,262.79,91.0634 +331103,262.64,92.9499 +331104,262.46,94.8844 +331105,261.62,89.19642 +331106,261.46,91.0453 +331107,261.28,92.9379 +331108,261.06,94.8793 +331109,260.32,89.17416 +331110,260.13,91.0277 +331111,259.91,92.9254 +331112,259.66,94.8727 +331113,259.03,89.15329 +331114,258.8,91.0105 +331115,258.55,92.9124 +331116,258.26,94.8645 +331117,257.73,89.1338 +331118,257.47,90.99376 +331119,257.18,92.8989 +331120,256.86,94.8548 +331121,256.44,89.1157 +331122,256.14,90.97744 +331123,255.82,92.8848 +331124,255.46,94.8435 +331125,255.15,89.09898 +331126,254.81,90.96156 +331127,254.45,92.8702 +331128,254.06,94.8307 +331129,253.85,89.08366 +331130,253.49,90.94612 +331131,253.09,92.855 +331132,252.66,94.8164 +331133,252.56,89.06972 +331134,252.16,90.93112 +331135,251.72,92.8393 +331136,251.26,94.8005 +331137,251.26,89.05716 +331138,250.83,90.91656 +331139,250.36,92.8231 +331140,249.86,94.7831 +331141,249.97,89.04599 +331142,249.5,90.90244 +331143,249,92.8064 +331144,248.46,94.7642 +331145,248.67,89.03619 +331146,248.17,90.88875 +331147,247.63,92.7891 +331148,247.06,94.7437 +331149,247.38,89.02777 +331150,246.84,90.8755 +331151,246.27,92.7713 +331152,245.66,94.7216 +331153,246.08,89.02071 +331154,245.51,90.86268 +331155,244.91,92.7529 +331156,244.26,94.6981 +331157,244.78,89.01502 +331158,244.18,90.8503 +331159,243.54,92.7341 +331160,242.87,94.673 +331161,243.49,89.01069 +331162,242.85,90.83835 +331163,242.18,92.7147 +331164,241.47,94.6464 +331165,242.19,89.00771 +331166,241.52,90.82683 +331167,240.82,92.6948 +331168,240.07,94.6183 +331169,240.89,89.00607 +331170,240.19,90.81573 +331171,239.45,92.6743 +331172,238.68,94.5886 +331173,239.59,89.00577 +331174,238.86,90.80506 +331175,238.09,92.6534 +331176,237.28,94.5575 +331177,238.29,89.0068 +331178,237.53,90.79481 +331179,236.73,92.6319 +331180,235.89,94.5249 +331181,236.99,89.00914 +331182,236.2,90.78497 +331183,235.37,92.6099 +331184,234.49,94.4908 +331185,235.69,89.01279 +331186,234.87,90.77556 +331187,234,92.5874 +331188,233.1,94.4552 +331189,234.39,89.01774 +331190,233.53,90.76655 +331191,232.64,92.5644 +331192,231.71,94.4181 +331193,233.09,89.02397 +331194,232.2,90.75795 +331195,231.28,92.5409 +331196,230.32,94.3796 +331197,231.79,89.03148 +331198,230.87,90.74976 +331199,229.92,92.5169 +331200,228.93,94.3397 +331201,230.49,89.04024 +331202,229.54,90.74197 +331203,228.56,92.4924 +331204,227.54,94.2983 +331205,229.19,89.05026 +331206,228.21,90.73457 +331207,227.2,92.4675 +331208,226.15,94.2556 +331209,227.88,89.06151 +331210,226.88,90.72756 +331211,225.84,92.442 +331212,224.76,94.2114 +331213,226.58,89.07398 +331214,225.54,90.72094 +331215,224.48,92.4161 +331216,223.37,94.1659 +331217,225.27,89.08765 +331218,224.21,90.7147 +331219,223.12,92.3897 +331220,221.98,94.119 +331221,223.97,89.10252 +331222,222.88,90.70883 +331223,221.76,92.3628 +331224,220.6,94.0707 +331225,222.66,89.11855 +331226,221.55,90.70334 +331227,220.4,92.3355 +331228,219.21,94.0212 +331229,221.35,89.13574 +331230,220.21,90.69821 +331231,219.04,92.3077 +331232,217.83,93.9703 +331233,220.04,89.15407 +331234,218.88,90.69344 +331235,217.68,92.2794 +331236,216.45,93.9181 +331237,218.73,89.17352 +331238,217.55,90.68902 +331239,216.33,92.2508 +331240,215.06,93.8647 +331241,217.42,89.19407 +331242,216.21,90.68495 +331243,214.97,92.2216 +331244,213.68,93.81 +331245,216.11,89.21571 +331246,214.88,90.68122 +331247,213.61,92.1921 +331248,212.3,93.754 +331249,214.8,89.23841 +331250,213.54,90.67782 +331251,212.25,92.1621 +331252,210.92,93.6969 +331253,213.49,89.26215 +331254,212.21,90.67475 +331255,210.9,92.1318 +331256,209.55,93.6386 +331257,212.17,89.28691 +331258,210.87,90.672 +331259,209.54,92.101 +331260,208.17,93.5791 +331261,210.86,89.31268 +331262,209.54,90.66956 +331263,208.18,92.0698 +331264,206.79,93.5185 +331265,209.54,89.33943 +331266,208.2,90.66743 +331267,206.83,92.0382 +331268,205.42,93.4568 +331269,208.22,89.36713 +331270,206.87,90.66559 +331271,205.47,92.0063 +331272,204.05,93.394 +331273,206.91,89.39577 +331274,205.53,90.66405 +331275,204.12,91.9739 +331276,202.67,93.3301 +331277,205.59,89.42532 +331278,204.19,90.66279 +331279,202.77,91.9412 +331280,201.3,93.2652 +331281,204.27,89.45577 +331282,202.86,90.6618 +331283,201.41,91.9082 +331284,199.93,93.1993 +331285,202.95,89.48707 +331286,201.52,90.66108 +331287,200.06,91.8748 +331288,198.56,93.1324 +331289,201.62,89.51922 +331290,200.18,90.66062 +331291,198.71,91.841 +331292,197.2,93.0646 +331293,200.3,89.55219 +331294,198.84,90.66041 +331295,197.35,91.807 +331296,195.83,92.9958 +331297,198.98,89.58594 +331298,197.5,90.66043 +331299,196,91.7726 +331300,194.46,92.9261 +331301,197.65,89.62046 +331302,196.17,90.6607 +331303,194.65,91.7378 +331304,193.1,92.8556 +331305,196.32,89.65572 +331306,194.83,90.66118 +331307,193.3,91.7028 +331308,191.74,92.7842 +331309,195,89.6917 +331310,193.49,90.66188 +331311,191.95,91.6675 +331312,190.38,92.712 +331313,193.67,89.72836 +331314,192.15,90.66278 +331315,190.6,91.6319 +331316,189.02,92.639 +331317,192.34,89.76568 +331318,190.81,90.66388 +331319,189.25,91.5961 +331320,187.66,92.5653 +331321,191,89.80363 +331322,189.47,90.66517 +331323,187.9,91.5599 +331324,186.3,92.4908 +331325,189.67,89.84219 +331326,188.12,90.66664 +331327,186.55,91.5235 +331328,184.94,92.4157 +331329,188.34,89.88133 +331330,186.78,90.66827 +331331,185.2,91.4869 +331332,183.59,92.3399 +331333,187,89.921012 +331334,185.44,90.67006 +331335,183.85,91.45 +331336,182.23,92.2635 +331337,185.67,89.961217 +331338,184.1,90.672 +331339,182.5,91.4129 +331340,180.88,92.1865 +331341,184.33,90.0019136 +331342,182.76,90.67408 +331343,181.16,91.3756 +331344,179.53,92.1089 +331345,182.99,90.043073 +331346,181.41,90.67629 +331347,179.81,91.3381 +331348,178.18,92.0308 +331349,181.65,90.084665 +331350,180.07,90.67862 +331351,178.46,91.3004 +331352,176.83,91.9523 +331353,180.31,90.12666 +331354,178.73,90.68106 +331355,177.12,91.2625 +331356,175.49,91.8732 +331357,178.97,90.16903 +331358,177.38,90.68359 +331359,175.77,91.2245 +331360,174.14,91.7937 +331361,177.62,90.21175 +331362,176.04,90.68621 +331363,174.43,91.1863 +331364,172.79,91.7138 +331365,176.28,90.25478 +331366,174.69,90.68892 +331367,173.08,91.1479 +331368,171.45,91.6336 +331369,174.93,90.29809 +331370,173.35,90.69169 +331371,171.74,91.1094 +331372,170.11,91.553 +331373,173.59,90.34166 +331374,172,90.69451 +331375,170.4,91.0708 +331376,168.77,91.4722 +331377,172.24,90.38545 +331378,170.66,90.69739 +331379,169.05,91.032 +331380,167.43,91.391 +331381,170.89,90.42943 +331382,169.31,90.7003 +331383,167.71,90.9932 +331384,166.09,91.3097 +331385,169.54,90.47358 +331386,167.96,90.70324 +331387,166.37,90.95425 +331388,164.75,91.2281 +331389,168.18,90.51785 +331390,166.62,90.70619 +331391,165.03,90.91522 +331392,163.42,91.1464 +331393,166.83,90.56223 +331394,165.27,90.70915 +331395,163.69,90.87612 +331396,162.09,91.0645 +331397,165.48,90.60667 +331398,163.92,90.7121 +331399,162.35,90.83696 +331400,160.75,90.98261 +331401,164.12,90.65115 +331402,162.57,90.71504 +331403,161.01,90.79775 +331404,159.42,90.90061 +331405,162.76,90.69564 +331406,161.22,90.71795 +331407,159.67,90.7585 +331408,158.09,90.81858 +331409,161.4,90.74011 +331410,159.87,90.72083 +331411,158.33,90.71922 +331412,156.76,90.73656 +331413,160.04,90.78452 +331414,158.52,90.72365 +331415,156.99,90.67992 +331416,155.43,90.65458 +331417,158.68,90.82884 +331418,157.18,90.72642 +331419,155.65,90.64062 +331420,154.11,90.57267 +331421,157.32,90.87304 +331422,155.82,90.72912 +331423,154.31,90.60132 +331424,152.78,90.49087 +331425,155.96,90.9171 +331426,154.47,90.73174 +331427,152.97,90.56203 +331428,151.46,90.40921 +331429,154.59,90.96098 +331430,153.12,90.73427 +331431,151.64,90.52278 +331432,150.14,90.32772 +331433,153.23,91.0046 +331434,151.77,90.7367 +331435,150.3,90.48356 +331436,148.81,90.24644 +331437,151.86,91.0481 +331438,150.42,90.73902 +331439,148.96,90.44439 +331440,147.49,90.16539 +331441,150.49,91.0912 +331442,149.07,90.74122 +331443,147.63,90.40528 +331444,146.17,90.084616 +331445,149.12,91.1341 +331446,147.72,90.74329 +331447,146.29,90.36624 +331448,144.86,90.004143 +331449,147.75,91.1766 +331450,146.36,90.74521 +331451,144.96,90.32728 +331452,143.54,89.924005 +331453,146.38,91.2187 +331454,145.01,90.74698 +331455,143.62,90.28841 +331456,142.22,89.84423 +331457,145.01,91.2605 +331458,143.66,90.74859 +331459,142.29,90.24965 +331460,140.91,89.76486 +331461,143.63,91.3018 +331462,142.3,90.75003 +331463,140.96,90.21099 +331464,139.6,89.68591 +331465,142.26,91.3427 +331466,140.95,90.75129 +331467,139.62,90.17246 +331468,138.28,89.60742 +331469,140.88,91.383 +331470,139.59,90.75235 +331471,138.29,90.13406 +331472,136.97,89.52943 +331473,139.51,91.4229 +331474,138.24,90.75321 +331475,136.96,90.095806 +331476,135.66,89.45195 +331477,138.13,91.4622 +331478,136.88,90.75386 +331479,135.63,90.057703 +331480,134.35,89.37502 +331481,136.75,91.501 +331482,135.53,90.75429 +331483,134.29,90.019764 +331484,133.04,89.29867 +331485,135.37,91.5391 +331486,134.17,90.75449 +331487,132.96,89.981998 +331488,131.74,89.22293 +331489,133.99,91.5767 +331490,132.82,90.75444 +331491,131.63,89.944414 +331492,130.43,89.14782 +331493,132.61,91.6135 +331494,131.46,90.75415 +331495,130.3,89.907022 +331496,129.13,89.07338 +331497,131.22,91.6497 +331498,130.1,90.75359 +331499,128.97,89.86983 +331500,127.82,88.9996 +331501,129.84,91.6851 +331502,128.75,90.75277 +331503,127.64,89.83285 +331504,126.52,88.9266 +331505,128.46,91.7198 +331506,127.39,90.75167 +331507,126.31,89.7961 +331508,125.22,88.8543 +331509,127.07,91.7538 +331510,126.03,90.75028 +331511,124.98,89.75957 +331512,123.92,88.7828 +331513,125.68,91.7869 +331514,124.68,90.7486 +331515,123.65,89.72328 +331516,122.62,88.7121 +331517,124.3,91.8192 +331518,123.32,90.74661 +331519,122.32,89.68723 +331520,121.32,88.6422 +331521,122.91,91.8507 +331522,121.96,90.74431 +331523,121,89.65145 +331524,120.02,88.5732 +331525,121.52,91.8813 +331526,120.6,90.74168 +331527,119.67,89.61592 +331528,118.72,88.5051 +331529,120.13,91.911 +331530,119.24,90.73873 +331531,118.34,89.58067 +331532,117.42,88.4378 +331533,118.74,91.9398 +331534,117.88,90.73544 +331535,117.01,89.5457 +331536,116.13,88.3715 +331537,117.35,91.9676 +331538,116.53,90.73181 +331539,115.69,89.51102 +331540,114.83,88.3061 +331541,115.95,91.9944 +331542,115.17,90.72782 +331543,114.36,89.47663 +331544,113.54,88.2417 +331545,114.56,92.0203 +331546,113.81,90.72348 +331547,113.03,89.44255 +331548,112.24,88.1783 +331549,113.17,92.0451 +331550,112.45,90.71876 +331551,111.71,89.40878 +331552,110.95,88.1158 +331553,111.77,92.0689 +331554,111.09,90.71367 +331555,110.38,89.37533 +331556,109.65,88.0545 +331557,110.38,92.0916 +331558,109.73,90.7082 +331559,109.05,89.34221 +331560,108.36,87.9941 +331561,108.99,92.1132 +331562,108.37,90.70233 +331563,107.73,89.30941 +331564,107.07,87.9349 +331565,107.59,92.1337 +331566,107.01,90.69607 +331567,106.4,89.27696 +331568,105.78,87.8767 +331569,106.19,92.1531 +331570,105.65,90.68941 +331571,105.08,89.24486 +331572,104.49,87.8197 +331573,104.8,92.1713 +331574,104.29,90.68234 +331575,103.75,89.2131 +331576,103.2,87.7637 +331577,103.4,92.1884 +331578,102.93,90.67486 +331579,102.43,89.1817 +331580,101.91,87.709 +331581,102,92.2043 +331582,101.56,90.66695 +331583,101.1,89.15067 +331584,100.62,87.6553 +331585,100.6,92.2189 +331586,100.2,90.65862 +331587,99.78,89.12001 +331588,99.333,87.6029 +331589,99.205,92.2324 +331590,98.843,90.64985 +331591,98.456,89.08972 +331592,98.045,87.5517 +331593,97.807,92.2446 +331594,97.482,90.64065 +331595,97.132,89.05982 +331596,96.758,87.5016 +331597,96.408,92.2556 +331598,96.121,90.631 +331599,95.808,89.0303 +331600,95.47,87.4528 +331601,95.008,92.2652 +331602,94.76,90.62091 +331603,94.484,89.00117 +331604,94.184,87.4052 +331605,93.609,92.2736 +331606,93.399,90.61037 +331607,93.161,88.9724 +331608,92.897,87.3589 +331609,92.209,92.2807 +331610,92.037,90.59937 +331611,91.837,88.9441 +331612,91.611,87.3138 +331613,90.809,92.2865 +331614,90.676,90.5879 +331615,90.514,88.9162 +331616,90.324,87.27 +331617,89.409,92.2909 +331618,89.315,90.57598 +331619,89.191,88.8886 +331620,89.039,87.2275 +331621,88.009,92.294 +331622,87.954,90.56358 +331623,87.867,88.8615 +331624,87.753,87.1863 +331625,86.609,92.2957 +331626,86.592,90.55072 +331627,86.544,88.8348 +331628,86.468,87.1464 +331629,85.208,92.2961 +331630,85.231,90.53737 +331631,85.221,88.8085 +331632,85.182,87.1078 +331633,83.808,92.2951 +331634,83.87,90.52355 +331635,83.898,88.7827 +331636,83.897,87.0705 +331637,82.407,92.2927 +331638,82.508,90.50925 +331639,82.575,88.7572 +331640,82.612,87.0345 +331641,81.007,92.2889 +331642,81.147,90.49446 +331643,81.253,88.7322 +331644,81.327,86.9999 +331645,79.607,92.2836 +331646,79.786,90.47919 +331647,79.93,88.7077 +331648,80.042,86.9666 +331649,78.206,92.277 +331650,78.425,90.46343 +331651,78.607,88.6835 +331652,78.757,86.9347 +331653,76.806,92.269 +331654,77.064,90.44718 +331655,77.284,88.6598 +331656,77.471,86.9041 +331657,75.406,92.2595 +331658,75.703,90.43043 +331659,75.961,88.6365 +331660,76.186,86.8748 +331661,74.006,92.2486 +331662,74.342,90.4132 +331663,74.639,88.6137 +331664,74.901,86.8469 +331665,72.607,92.2363 +331666,72.981,90.39546 +331667,73.316,88.5912 +331668,73.616,86.8204 +331669,71.208,92.2225 +331670,71.621,90.37724 +331671,71.993,88.5693 +331672,72.33,86.7952 +331673,69.809,92.2073 +331674,70.26,90.35851 +331675,70.67,88.5477 +331676,71.044,86.7714 +331677,68.41,92.1906 +331678,68.9,90.33929 +331679,69.347,88.5266 +331680,69.758,86.7489 +331681,67.011,92.1725 +331682,67.539,90.31958 +331683,68.024,88.506 +331684,68.472,86.7278 +331685,65.614,92.1529 +331686,66.179,90.29936 +331687,66.701,88.4857 +331688,67.186,86.7081 +331689,64.216,92.1319 +331690,64.819,90.27865 +331691,65.378,88.466 +331692,65.899,86.6897 +331693,62.819,92.1094 +331694,63.459,90.25745 +331695,64.055,88.4466 +331696,64.612,86.6727 +331697,61.422,92.0855 +331698,62.1,90.23574 +331699,62.732,88.4277 +331700,63.324,86.657 +331701,60.026,92.0601 +331702,60.74,90.21355 +331703,61.409,88.4092 +331704,62.037,86.6427 +331705,58.63,92.0333 +331706,59.381,90.19086 +331707,60.085,88.3912 +331708,60.748,86.6297 +331709,57.235,92.005 +331710,58.022,90.16768 +331711,58.761,88.3736 +331712,59.46,86.6181 +331713,55.841,91.9753 +331714,56.663,90.14401 +331715,57.438,88.3564 +331716,58.171,86.6077 +331717,54.447,91.9442 +331718,55.305,90.11986 +331719,56.114,88.3397 +331720,56.881,86.5988 +331721,53.054,91.9116 +331722,53.947,90.095214 +331723,54.79,88.3233 +331724,55.591,86.5911 +331725,51.661,91.8777 +331726,52.588,90.070089 +331727,53.466,88.3075 +331728,54.3,86.5847 +331729,50.27,91.8423 +331730,51.231,90.044484 +331731,52.141,88.292 +331732,53.009,86.5797 +331733,48.879,91.8055 +331734,49.873,90.018403 +331735,50.817,88.2769 +331736,51.717,86.5759 +331737,47.488,91.7673 +331738,48.516,89.991847 +331739,49.492,88.2623 +331740,50.425,86.5734 +331741,46.099,91.7277 +331742,47.159,89.964821 +331743,48.167,88.2481 +331744,49.132,86.5722 +331745,44.71,91.6868 +331746,45.802,89.937328 +331747,46.842,88.2343 +331748,47.838,86.5723 +331749,43.322,91.6445 +331750,44.446,89.909373 +331751,45.517,88.2209 +331752,46.544,86.5736 +331753,41.935,91.6008 +331754,43.09,89.88096 +331755,44.191,88.2078 +331756,45.248,86.5761 +331757,40.549,91.5558 +331758,41.734,89.85209 +331759,42.865,88.1952 +331760,43.952,86.5799 +331761,39.164,91.5095 +331762,40.378,89.82277 +331763,41.539,88.183 +331764,42.656,86.5848 +331765,37.78,91.4619 +331766,39.023,89.79301 +331767,40.213,88.1712 +331768,41.358,86.591 +331769,36.397,91.4129 +331770,37.668,89.7628 +331771,38.887,88.1598 +331772,40.06,86.5983 +331773,35.014,91.3627 +331774,36.314,89.73217 +331775,37.56,88.1487 +331776,38.761,86.6069 +331777,33.633,91.3113 +331778,34.96,89.7011 +331779,36.233,88.138 +331780,37.461,86.6165 +331781,32.253,91.2585 +331782,33.606,89.66961 +331783,34.906,88.1277 +331784,36.16,86.6273 +331785,30.874,91.2046 +331786,32.253,89.6377 +331787,33.578,88.1177 +331788,34.858,86.6392 +331789,29.496,91.1494 +331790,30.9,89.60538 +331791,32.25,88.1081 +331792,33.555,86.6523 +331793,28.119,91.093 +331794,29.547,89.57265 +331795,30.922,88.0989 +331796,32.251,86.6663 +331797,26.743,91.0355 +331798,28.195,89.53953 +331799,29.594,88.0899 +331800,30.947,86.6815 +331801,25.368,90.97681 +331802,26.843,89.50601 +331803,28.265,88.0814 +331804,29.641,86.6977 +331805,23.995,90.91699 +331806,25.492,89.47211 +331807,26.936,88.0731 +331808,28.334,86.7149 +331809,22.623,90.85605 +331810,24.141,89.43783 +331811,25.606,88.0652 +331812,27.027,86.7331 +331813,21.251,90.79403 +331814,22.79,89.40318 +331815,24.277,88.0576 +331816,25.718,86.7524 +331817,19.881,90.73094 +331818,21.44,89.36817 +331819,22.946,88.0503 +331820,24.408,86.7725 +331821,18.513,90.6668 +331822,20.09,89.3328 +331823,21.616,88.0434 +331824,23.097,86.7936 +331825,17.145,90.60165 +331826,18.741,89.29708 +331827,20.285,88.0367 +331828,21.785,86.8157 +331829,15.779,90.5355 +331830,17.392,89.26102 +331831,18.954,88.0303 +331832,20.472,86.8386 +331833,14.414,90.46837 +331834,16.044,89.22463 +331835,17.623,88.0242 +331836,19.158,86.8624 +331837,13.05,90.40031 +331838,14.696,89.18791 +331839,16.291,88.0183 +331840,17.842,86.887 +331841,11.688,90.33132 +331842,13.348,89.15088 +331843,14.959,88.0127 +331844,16.526,86.9125 +331845,10.327,90.26143 +331846,12.001,89.11354 +331847,13.626,88.0074 +331848,15.208,86.9387 +331849,8.9672,90.19069 +331850,10.655,89.07591 +331851,12.293,88.0023 +331852,13.889,86.9658 +331853,7.6087,90.1191 +331854,9.3088,89.03798 +331855,10.96,87.9975 +331856,12.569,86.9936 +331857,6.2517,90.046694 +331858,7.9631,88.9998 +331859,9.6265,87.9929 +331860,11.248,87.0221 +331861,4.8959,89.973508 +331862,6.6179,88.9613 +331863,8.2924,87.9885 +331864,9.9252,87.0513 +331865,3.5415,89.89957 +331866,5.2732,88.9226 +331867,6.958,87.9844 +331868,8.6014,87.0812 +331869,2.1885,89.8249 +331870,3.929,88.8836 +331871,5.6232,87.9804 +331872,7.2764,87.1117 +331873,0.83688,89.74953 +331874,2.5852,88.8443 +331875,4.288,87.9767 +331876,5.9501,87.1429 +331877,359.49,89.67349 +331878,1.242,88.8049 +331879,2.9524,87.9731 +331880,4.6226,87.1747 +331881,358.14,89.59682 +331882,359.9,88.7652 +331883,1.6164,87.9697 +331884,3.2938,87.207 +331885,356.79,89.51954 +331886,358.56,88.7253 +331887,0.27996,87.9665 +331888,1.9638,87.2399 +331889,355.44,89.44168 +331890,357.22,88.6852 +331891,358.94,87.9634 +331892,0.63242,87.2732 +331893,354.1,89.36327 +331894,355.87,88.6448 +331895,357.61,87.9605 +331896,359.3,87.3071 +331897,352.76,89.28434 +331898,354.53,88.6044 +331899,356.27,87.9577 +331900,357.97,87.3414 +331901,351.41,89.20493 +331902,353.19,88.5637 +331903,354.93,87.9551 +331904,356.63,87.3762 +331905,350.07,89.12507 +331906,351.85,88.5229 +331907,353.59,87.9526 +331908,355.29,87.4113 +331909,348.73,89.04478 +331910,350.51,88.4819 +331911,352.25,87.9501 +331912,353.96,87.4468 +331913,347.4,88.9641 +331914,349.17,88.4408 +331915,350.91,87.9478 +331916,352.62,87.4827 +331917,346.06,88.8831 +331918,347.84,88.3995 +331919,349.57,87.9456 +331920,351.28,87.5189 +331921,344.73,88.8017 +331922,346.5,88.3581 +331923,348.23,87.9435 +331924,349.93,87.5553 +331925,343.39,88.7201 +331926,345.16,88.3166 +331927,346.89,87.9414 +331928,348.59,87.592 +331929,342.06,88.6381 +331930,343.82,88.275 +331931,345.55,87.9394 +331932,347.25,87.6289 +331933,340.73,88.556 +331934,342.49,88.2334 +331935,344.21,87.9375 +331936,345.9,87.6661 +331937,339.4,88.4737 +331938,341.15,88.1916 +331939,342.87,87.9356 +331940,344.55,87.7034 +331941,338.07,88.3911 +331942,339.82,88.1498 +331943,341.53,87.9337 +331944,343.21,87.7408 +331945,336.75,88.3085 +331946,338.48,88.1079 +331947,340.18,87.9318 +331948,341.86,87.7783 +331949,335.42,88.2258 +331950,337.15,88.0659 +331951,338.84,87.93 +331952,340.51,87.8159 +331953,334.1,88.143 +331954,335.81,88.0239 +331955,337.5,87.9282 +331956,339.15,87.8536 +331957,332.77,88.0601 +331958,334.48,87.9819 +331959,336.15,87.9263 +331960,337.8,87.8913 +331961,331.45,87.9773 +331962,333.15,87.9399 +331963,334.81,87.9244 +331964,336.45,87.9289 +331965,330.13,87.8945 +331966,331.81,87.8979 +331967,333.47,87.9225 +331968,335.09,87.9666 +331969,328.81,87.8117 +331970,330.48,87.8559 +331971,332.12,87.9206 +331972,333.73,88.0041 +331973,327.5,87.7291 +331974,329.15,87.8139 +331975,330.78,87.9186 +331976,332.37,88.0415 +331977,326.18,87.6466 +331978,327.82,87.7719 +331979,329.43,87.9166 +331980,331.01,88.0789 +331981,324.87,87.5642 +331982,326.49,87.7299 +331983,328.08,87.9145 +331984,329.65,88.116 +331985,323.55,87.482 +331986,325.16,87.6881 +331987,326.74,87.9123 +331988,328.29,88.1529 +331989,322.24,87.4001 +331990,323.83,87.6462 +331991,325.39,87.91 +331992,326.93,88.1897 +331993,320.93,87.3184 +331994,322.5,87.6044 +331995,324.04,87.9076 +331996,325.56,88.2262 +331997,319.62,87.237 +331998,321.17,87.5628 +331999,322.7,87.9051 +332000,324.2,88.2624 +332001,318.31,87.1559 +332002,319.84,87.5212 +332003,321.35,87.9025 +332004,322.83,88.2982 +332005,317.01,87.0752 +332006,318.51,87.4797 +332007,320,87.8997 +332008,321.46,88.3338 +332009,315.7,86.9948 +332010,317.19,87.4383 +332011,318.65,87.8969 +332012,320.09,88.369 +332013,314.4,86.9149 +332014,315.86,87.397 +332015,317.3,87.8938 +332016,318.72,88.4038 +332017,313.09,86.8354 +332018,314.53,87.3558 +332019,315.95,87.8906 +332020,317.35,88.4381 +332021,311.79,86.7564 +332022,313.21,87.3148 +332023,314.6,87.8873 +332024,315.98,88.472 +332025,310.49,86.6778 +332026,311.88,87.274 +332027,313.25,87.8837 +332028,314.6,88.5055 +332029,309.19,86.5998 +332030,310.56,87.2333 +332031,311.9,87.88 +332032,313.23,88.5384 +332033,307.89,86.5224 +332034,309.23,87.1928 +332035,310.55,87.8761 +332036,311.85,88.5707 +332037,306.59,86.4455 +332038,307.91,87.1524 +332039,309.2,87.872 +332040,310.47,88.6026 +332041,305.3,86.3693 +332042,306.58,87.1123 +332043,307.85,87.8676 +332044,309.09,88.6338 +332045,304,86.2937 +332046,305.26,87.0723 +332047,306.5,87.8631 +332048,307.71,88.6644 +332049,302.7,86.2188 +332050,303.94,87.0325 +332051,305.15,87.8583 +332052,306.33,88.6943 +332053,301.41,86.1445 +332054,302.61,86.993 +332055,303.79,87.8532 +332056,304.95,88.7236 +332057,300.12,86.071 +332058,301.29,86.9537 +332059,302.44,87.8479 +332060,303.57,88.7522 +332061,298.83,85.9983 +332062,299.97,86.9146 +332063,301.09,87.8424 +332064,302.19,88.7801 +332065,297.53,85.9263 +332066,298.65,86.8757 +332067,299.73,87.8366 +332068,300.8,88.8072 +332069,296.24,85.8551 +332070,297.32,86.8371 +332071,298.38,87.8305 +332072,299.42,88.8336 +332073,294.96,85.7847 +332074,296,86.7988 +332075,297.03,87.8241 +332076,298.03,88.8591 +332077,293.67,85.7152 +332078,294.68,86.7607 +332079,295.67,87.8174 +332080,296.65,88.8838 +332081,292.38,85.6466 +332082,293.36,86.7229 +332083,294.32,87.8105 +332084,295.26,88.9077 +332085,291.09,85.5789 +332086,292.04,86.6854 +332087,292.97,87.8032 +332088,293.87,88.9307 +332089,289.81,85.512 +332090,290.72,86.6482 +332091,291.61,87.7956 +332092,292.48,88.9528 +332093,288.52,85.4462 +332094,289.4,86.6113 +332095,290.26,87.7877 +332096,291.09,88.974 +332097,287.24,85.3813 +332098,288.08,86.5747 +332099,288.9,87.7795 +332100,289.7,88.9943 +332101,285.95,85.3173 +332102,286.76,86.5384 +332103,287.55,87.7709 +332104,288.31,89.01363 +332105,284.67,85.2544 +332106,285.44,86.5024 +332107,286.19,87.762 +332108,286.92,89.03196 +332109,283.39,85.1925 +332110,284.12,86.4667 +332111,284.84,87.7527 +332112,285.53,89.04929 +332113,282.11,85.1317 +332114,282.8,86.4314 +332115,283.48,87.7431 +332116,284.13,89.0656 +332117,280.83,85.0719 +332118,281.49,86.3964 +332119,282.12,87.7331 +332120,282.74,89.08088 +332121,279.54,85.0132 +332122,280.17,86.3618 +332123,280.77,87.7228 +332124,281.34,89.09509 +332125,278.26,84.9556 +332126,278.85,86.3275 +332127,279.41,87.712 +332128,279.95,89.10822 +332129,276.98,84.8991 +332130,277.53,86.2935 +332131,278.06,87.7009 +332132,278.55,89.12026 +332133,275.71,84.8438 +332134,276.22,86.26 +332135,276.7,87.6894 +332136,277.16,89.13119 +332137,274.43,84.7896 +332138,274.9,86.2268 +332139,275.34,87.6775 +332140,275.76,89.14098 +332141,273.15,84.7365 +332142,273.58,86.194 +332143,273.99,87.6652 +332144,274.37,89.14963 +332145,271.87,84.6847 +332146,272.26,86.1615 +332147,272.63,87.6526 +332148,272.97,89.15712 +332149,270.59,84.634 +332150,270.95,86.1295 +332151,271.27,87.6395 +332152,271.57,89.16342 +332153,269.32,84.5845 +332154,269.63,86.0978 +332155,269.92,87.626 +332156,270.18,89.16853 +332157,268.04,84.5363 +332158,268.31,86.0665 +332159,268.56,87.612 +332160,268.78,89.17244 +332161,266.76,84.4893 +332162,267,86.0356 +332163,267.2,87.5977 +332164,267.38,89.17512 +332165,265.49,84.4435 +332166,265.68,86.0052 +332167,265.85,87.5829 +332168,265.98,89.17657 +332169,264.21,84.399 +332170,264.36,85.9751 +332171,264.49,87.5677 +332172,264.58,89.17677 +332173,262.93,84.3557 +332174,263.05,85.9454 +332175,263.13,87.5521 +332176,263.18,89.17572 +332177,261.66,84.3137 +332178,261.73,85.9162 +332179,261.78,87.536 +332180,261.79,89.17339 +332181,260.38,84.273 +332182,260.42,85.8873 +332183,260.42,87.5195 +332184,260.39,89.16979 +332185,259.11,84.2336 +332186,259.1,85.8589 +332187,259.06,87.5026 +332188,258.99,89.16489 +332189,257.83,84.1955 +332190,257.78,85.8309 +332191,257.7,87.4852 +332192,257.59,89.15869 +332193,256.56,84.1587 +332194,256.47,85.8034 +332195,256.35,87.4673 +332196,256.19,89.15119 +332197,255.28,84.1232 +332198,255.15,85.7762 +332199,254.99,87.449 +332200,254.79,89.14237 +332201,254.01,84.089 +332202,253.84,85.7495 +332203,253.63,87.4303 +332204,253.39,89.13223 +332205,252.73,84.0561 +332206,252.52,85.7232 +332207,252.28,87.4111 +332208,252,89.12076 +332209,251.45,84.0245 +332210,251.21,85.6973 +332211,250.92,87.3915 +332212,250.6,89.10795 +332213,250.18,83.9943 +332214,249.89,85.6719 +332215,249.56,87.3714 +332216,249.2,89.0938 +332217,248.9,83.9654 +332218,248.57,85.6469 +332219,248.21,87.3508 +332220,247.8,89.07831 +332221,247.63,83.9378 +332222,247.26,85.6224 +332223,246.85,87.3298 +332224,246.4,89.06147 +332225,246.35,83.9115 +332226,245.94,85.5983 +332227,245.5,87.3083 +332228,245.01,89.04327 +332229,245.07,83.8866 +332230,244.63,85.5746 +332231,244.14,87.2864 +332232,243.61,89.02372 +332233,243.8,83.863 +332234,243.31,85.5513 +332235,242.78,87.264 +332236,242.21,89.00282 +332237,242.52,83.8407 +332238,241.99,85.5285 +332239,241.43,87.2411 +332240,240.82,88.9806 +332241,241.24,83.8197 +332242,240.68,85.5061 +332243,240.07,87.2178 +332244,239.42,88.9569 +332245,239.96,83.8001 +332246,239.36,85.4842 +332247,238.72,87.1941 +332248,238.03,88.932 +332249,238.69,83.7818 +332250,238.05,85.4627 +332251,237.36,87.1698 +332252,236.63,88.9056 +332253,237.41,83.7648 +332254,236.73,85.4416 +332255,236.01,87.1452 +332256,235.24,88.8779 +332257,236.13,83.7491 +332258,235.41,85.4209 +332259,234.65,87.12 +332260,233.84,88.8489 +332261,234.85,83.7347 +332262,234.1,85.4007 +332263,233.3,87.0944 +332264,232.45,88.8185 +332265,233.57,83.7216 +332266,232.78,85.3809 +332267,231.94,87.0684 +332268,231.06,88.7868 +332269,232.29,83.7098 +332270,231.46,85.3615 +332271,230.59,87.0419 +332272,229.67,88.7537 +332273,231.01,83.6993 +332274,230.14,85.3426 +332275,229.24,87.0149 +332276,228.28,88.7193 +332277,229.73,83.69 +332278,228.83,85.3241 +332279,227.88,86.9876 +332280,226.89,88.6836 +332281,228.44,83.6821 +332282,227.51,85.306 +332283,226.53,86.9597 +332284,225.5,88.6465 +332285,227.16,83.6754 +332286,226.19,85.2883 +332287,225.18,86.9315 +332288,224.11,88.6081 +332289,225.88,83.6699 +332290,224.87,85.271 +332291,223.82,86.9027 +332292,222.72,88.5685 +332293,224.59,83.6657 +332294,223.56,85.2542 +332295,222.47,86.8736 +332296,221.33,88.5275 +332297,223.31,83.6627 +332298,222.24,85.2377 +332299,221.12,86.844 +332300,219.94,88.4852 +332301,222.02,83.6609 +332302,220.92,85.2216 +332303,219.77,86.814 +332304,218.56,88.4417 +332305,220.73,83.6603 +332306,219.6,85.206 +332307,218.42,86.7836 +332308,217.17,88.3969 +332309,219.45,83.6609 +332310,218.28,85.1907 +332311,217.07,86.7528 +332312,215.79,88.3508 +332313,218.16,83.6627 +332314,216.96,85.1758 +332315,215.71,86.7215 +332316,214.41,88.3035 +332317,216.87,83.6657 +332318,215.64,85.1614 +332319,214.36,86.6898 +332320,213.03,88.255 +332321,215.58,83.6698 +332322,214.32,85.1473 +332323,213.01,86.6578 +332324,211.65,88.2052 +332325,214.29,83.675 +332326,213,85.1335 +332327,211.66,86.6253 +332328,210.27,88.1543 +332329,213,83.6814 +332330,211.68,85.1202 +332331,210.31,86.5924 +332332,208.89,88.1022 +332333,211.7,83.6888 +332334,210.36,85.1072 +332335,208.97,86.5592 +332336,207.51,88.0489 +332337,210.41,83.6973 +332338,209.04,85.0945 +332339,207.62,86.5255 +332340,206.13,87.9944 +332341,209.11,83.7069 +332342,207.72,85.0823 +332343,206.27,86.4915 +332344,204.76,87.9388 +332345,207.82,83.7176 +332346,206.4,85.0703 +332347,204.92,86.4571 +332348,203.38,87.8821 +332349,206.52,83.7292 +332350,205.07,85.0587 +332351,203.57,86.4224 +332352,202.01,87.8243 +332353,205.22,83.7419 +332354,203.75,85.0475 +332355,202.23,86.3873 +332356,200.64,87.7654 +332357,203.93,83.7556 +332358,202.43,85.0366 +332359,200.88,86.3518 +332360,199.27,87.7055 +332361,202.63,83.7702 +332362,201.11,85.026 +332363,199.53,86.316 +332364,197.9,87.6445 +332365,201.32,83.7858 +332366,199.78,85.0157 +332367,198.19,86.2798 +332368,196.53,87.5824 +332369,200.02,83.8023 +332370,198.46,85.0057 +332371,196.84,86.2433 +332372,195.17,87.5194 +332373,198.72,83.8198 +332374,197.14,84.996 +332375,195.5,86.2065 +332376,193.8,87.4554 +332377,197.41,83.8381 +332378,195.81,84.9866 +332379,194.15,86.1694 +332380,192.44,87.3905 +332381,196.11,83.8572 +332382,194.49,84.9775 +332383,192.81,86.132 +332384,191.07,87.3246 +332385,194.8,83.8772 +332386,193.16,84.9687 +332387,191.47,86.0942 +332388,189.71,87.2578 +332389,193.49,83.8981 +332390,191.83,84.9602 +332391,190.12,86.0562 +332392,188.35,87.1901 +332393,192.18,83.9197 +332394,190.51,84.9519 +332395,188.78,86.0179 +332396,186.99,87.1215 +332397,190.87,83.9421 +332398,189.18,84.9439 +332399,187.44,85.9793 +332400,185.64,87.0521 +332401,189.56,83.9652 +332402,187.86,84.9361 +332403,186.1,85.9404 +332404,184.28,86.9819 +332405,188.25,83.9891 +332406,186.53,84.9286 +332407,184.76,85.9013 +332408,182.93,86.9109 +332409,186.93,84.0137 +332410,185.2,84.9213 +332411,183.42,85.8619 +332412,181.57,86.8391 +332413,185.62,84.0389 +332414,183.87,84.9143 +332415,182.08,85.8222 +332416,180.22,86.7666 +332417,184.3,84.0648 +332418,182.54,84.9074 +332419,180.74,85.7824 +332420,178.87,86.6934 +332421,182.98,84.0912 +332422,181.22,84.9008 +332423,179.4,85.7423 +332424,177.52,86.6196 +332425,181.66,84.1183 +332426,179.89,84.8943 +332427,178.06,85.702 +332428,176.17,86.545 +332429,180.34,84.146 +332430,178.56,84.8881 +332431,176.72,85.6615 +332432,174.83,86.4698 +332433,179.02,84.1742 +332434,177.23,84.882 +332435,175.38,85.6208 +332436,173.48,86.3941 +332437,177.69,84.2029 +332438,175.9,84.8761 +332439,174.05,85.5799 +332440,172.14,86.3177 +332441,176.37,84.2321 +332442,174.57,84.8703 +332443,172.71,85.5388 +332444,170.8,86.2409 +332445,175.04,84.2617 +332446,173.23,84.8647 +332447,171.38,85.4975 +332448,169.46,86.1635 +332449,173.71,84.2918 +332450,171.9,84.8593 +332451,170.04,85.4561 +332452,168.12,86.0856 +332453,172.39,84.3223 +332454,170.57,84.854 +332455,168.71,85.4145 +332456,166.79,86.0073 +332457,171.05,84.3532 +332458,169.24,84.8488 +332459,167.37,85.3728 +332460,165.45,85.9285 +332461,169.72,84.3844 +332462,167.9,84.8437 +332463,166.04,85.331 +332464,164.12,85.8494 +332465,168.39,84.416 +332466,166.57,84.8387 +332467,164.7,85.289 +332468,162.78,85.7699 +332469,167.05,84.4478 +332470,165.24,84.8339 +332471,163.37,85.2469 +332472,161.45,85.6901 +332473,165.72,84.4799 +332474,163.9,84.8291 +332475,162.04,85.2048 +332476,160.12,85.6099 +332477,164.38,84.5122 +332478,162.57,84.8244 +332479,160.71,85.1625 +332480,158.8,85.5295 +332481,163.04,84.5447 +332482,161.23,84.8197 +332483,159.38,85.1202 +332484,157.47,85.4489 +332485,161.7,84.5774 +332486,159.9,84.8151 +332487,158.04,85.0777 +332488,156.14,85.368 +332489,160.36,84.6103 +332490,158.56,84.8106 +332491,156.71,85.0353 +332492,154.82,85.287 +332493,159.02,84.6433 +332494,157.22,84.8061 +332495,155.39,84.9927 +332496,153.5,85.2058 +332497,157.67,84.6764 +332498,155.89,84.8016 +332499,154.06,84.9502 +332500,152.18,85.1245 +332501,156.33,84.7095 +332502,154.55,84.7972 +332503,152.73,84.9076 +332504,150.86,85.0431 +332505,154.98,84.7427 +332506,153.21,84.7928 +332507,151.4,84.8649 +332508,149.54,84.9617 +332509,153.63,84.7758 +332510,151.87,84.7883 +332511,150.07,84.8223 +332512,148.23,84.8803 +332513,152.28,84.809 +332514,150.53,84.7839 +332515,148.74,84.7797 +332516,146.91,84.7988 +332517,150.93,84.8421 +332518,149.19,84.7794 +332519,147.42,84.737 +332520,145.6,84.7174 +332521,149.58,84.8751 +332522,147.85,84.7749 +332523,146.09,84.6944 +332524,144.29,84.6361 +332525,148.22,84.908 +332526,146.51,84.7703 +332527,144.77,84.6519 +332528,142.98,84.5549 +332529,146.87,84.9408 +332530,145.17,84.7657 +332531,143.44,84.6093 +332532,141.67,84.4738 +332533,145.51,84.9734 +332534,143.83,84.7611 +332535,142.12,84.5669 +332536,140.36,84.3929 +332537,144.15,85.0058 +332538,142.49,84.7564 +332539,140.79,84.5244 +332540,139.05,84.3122 +332541,142.79,85.0379 +332542,141.15,84.7516 +332543,139.47,84.4821 +332544,137.75,84.2317 +332545,141.43,85.0699 +332546,139.81,84.7467 +332547,138.14,84.4398 +332548,136.44,84.1514 +332549,140.07,85.1015 +332550,138.47,84.7417 +332551,136.82,84.3976 +332552,135.14,84.0715 +332553,138.71,85.1328 +332554,137.12,84.7366 +332555,135.5,84.3556 +332556,133.84,83.9919 +332557,137.35,85.1638 +332558,135.78,84.7314 +332559,134.18,84.3136 +332560,132.54,83.9126 +332561,135.98,85.1945 +332562,134.44,84.726 +332563,132.86,84.2718 +332564,131.24,83.8337 +332565,134.61,85.2247 +332566,133.09,84.7206 +332567,131.54,84.23 +332568,129.95,83.7552 +332569,133.25,85.2545 +332570,131.75,84.7149 +332571,130.22,84.1885 +332572,128.65,83.6771 +332573,131.88,85.2839 +332574,130.4,84.7092 +332575,128.9,84.147 +332576,127.35,83.5995 +332577,130.51,85.3128 +332578,129.06,84.7032 +332579,127.58,84.1058 +332580,126.06,83.5224 +332581,129.13,85.3412 +332582,127.71,84.6971 +332583,126.26,84.0647 +332584,124.77,83.4458 +332585,127.76,85.3691 +332586,126.37,84.6908 +332587,124.94,84.0237 +332588,123.48,83.3698 +332589,126.39,85.3965 +332590,125.02,84.6843 +332591,123.62,83.983 +332592,122.19,83.2944 +332593,125.01,85.4232 +332594,123.67,84.6777 +332595,122.3,83.9425 +332596,120.9,83.2195 +332597,123.64,85.4494 +332598,122.33,84.6708 +332599,120.98,83.9021 +332600,119.61,83.1453 +332601,122.26,85.4749 +332602,120.98,84.6637 +332603,119.67,83.862 +332604,118.32,83.0718 +332605,120.88,85.4998 +332606,119.63,84.6563 +332607,118.35,83.8221 +332608,117.04,82.9989 +332609,119.5,85.524 +332610,118.28,84.6488 +332611,117.03,83.7824 +332612,115.75,82.9268 +332613,118.12,85.5475 +332614,116.94,84.641 +332615,115.72,83.743 +332616,114.47,82.8554 +332617,116.74,85.5702 +332618,115.59,84.6329 +332619,114.4,83.7038 +332620,113.19,82.7847 +332621,115.36,85.5923 +332622,114.24,84.6246 +332623,113.09,83.6649 +332624,111.91,82.7149 +332625,113.98,85.6135 +332626,112.89,84.6161 +332627,111.77,83.6262 +332628,110.63,82.6458 +332629,112.6,85.634 +332630,111.54,84.6072 +332631,110.46,83.5878 +332632,109.35,82.5776 +332633,111.21,85.6537 +332634,110.19,84.5981 +332635,109.14,83.5497 +332636,108.07,82.5103 +332637,109.83,85.6725 +332638,108.84,84.5887 +332639,107.83,83.5119 +332640,106.79,82.4438 +332641,108.44,85.6904 +332642,107.49,84.579 +332643,106.52,83.4744 +332644,105.51,82.3782 +332645,107.05,85.7075 +332646,106.14,84.569 +332647,105.2,83.4371 +332648,104.24,82.3136 +332649,105.66,85.7237 +332650,104.79,84.5587 +332651,103.89,83.4002 +332652,102.96,82.2499 +332653,104.28,85.7389 +332654,103.44,84.5481 +332655,102.58,83.3636 +332656,101.69,82.1871 +332657,102.89,85.7533 +332658,102.09,84.5371 +332659,101.26,83.3273 +332660,100.41,82.1254 +332661,101.5,85.7666 +332662,100.74,84.5259 +332663,99.952,83.2913 +332664,99.138,82.0646 +332665,100.11,85.779 +332666,99.387,84.5143 +332667,98.64,83.2557 +332668,97.866,82.0049 +332669,98.716,85.7904 +332670,98.035,84.5023 +332671,97.328,83.2204 +332672,96.593,81.9462 +332673,97.324,85.8008 +332674,96.684,84.49 +332675,96.016,83.1855 +332676,95.322,81.8886 +332677,95.932,85.8101 +332678,95.332,84.4774 +332679,94.705,83.1509 +332680,94.051,81.8321 +332681,94.539,85.8184 +332682,93.98,84.4644 +332683,93.394,83.1167 +332684,92.78,81.7766 +332685,93.145,85.8257 +332686,92.628,84.4511 +332687,92.083,83.0828 +332688,91.51,81.7223 +332689,91.752,85.8318 +332690,91.276,84.4373 +332691,90.772,83.0493 +332692,90.241,81.6691 +332693,90.357,85.8369 +332694,89.924,84.4232 +332695,89.462,83.0162 +332696,88.972,81.617 +332697,88.963,85.8409 +332698,88.571,84.4088 +332699,88.151,82.9834 +332700,87.703,81.5661 +332701,87.568,85.8437 +332702,87.219,84.3939 +332703,86.841,82.9511 +332704,86.435,81.5164 +332705,86.172,85.8454 +332706,85.866,84.3787 +332707,85.531,82.9191 +332708,85.167,81.4678 +332709,84.777,85.846 +332710,84.514,84.3631 +332711,84.221,82.8875 +332712,83.9,81.4204 +332713,83.381,85.8454 +332714,83.161,84.347 +332715,82.912,82.8563 +332716,82.633,81.3743 +332717,81.985,85.8436 +332718,81.808,84.3306 +332719,81.602,82.8255 +332720,81.366,81.3293 +332721,80.588,85.8406 +332722,80.456,84.3138 +332723,80.292,82.7951 +332724,80.099,81.2856 +332725,79.192,85.8365 +332726,79.103,84.2966 +332727,78.983,82.7652 +332728,78.832,81.2431 +332729,77.795,85.8311 +332730,77.75,84.279 +332731,77.673,82.7356 +332732,77.566,81.2018 +332733,76.398,85.8245 +332734,76.397,84.2609 +332735,76.364,82.7064 +332736,76.299,81.1618 +332737,75.001,85.8167 +332738,75.045,84.2425 +332739,75.055,82.6777 +332740,75.033,81.1231 +332741,73.604,85.8077 +332742,73.692,84.2236 +332743,73.746,82.6494 +332744,73.767,81.0856 +332745,72.207,85.7975 +332746,72.339,84.2043 +332747,72.436,82.6215 +332748,72.501,81.0494 +332749,70.81,85.786 +332750,70.986,84.1846 +332751,71.127,82.594 +332752,71.235,81.0145 +332753,69.413,85.7732 +332754,69.634,84.1645 +332755,69.818,82.5669 +332756,69.969,80.9808 +332757,68.017,85.7592 +332758,68.281,84.144 +332759,68.509,82.5403 +332760,68.703,80.9485 +332761,66.62,85.7439 +332762,66.929,84.123 +332763,67.2,82.5141 +332764,67.436,80.9174 +332765,65.224,85.7274 +332766,65.576,84.1016 +332767,65.891,82.4883 +332768,66.17,80.8876 +332769,63.827,85.7096 +332770,64.224,84.0798 +332771,64.582,82.4629 +332772,64.903,80.8591 +332773,62.431,85.6905 +332774,62.872,84.0575 +332775,63.272,82.438 +332776,63.636,80.8319 +332777,61.036,85.6702 +332778,61.52,84.0348 +332779,61.963,82.4135 +332780,62.369,80.806 +332781,59.64,85.6485 +332782,60.168,84.0117 +332783,60.654,82.3894 +332784,61.102,80.7814 +332785,58.245,85.6256 +332786,58.816,83.9882 +332787,59.344,82.3658 +332788,59.835,80.7581 +332789,56.85,85.6015 +332790,57.464,83.9642 +332791,58.035,82.3426 +332792,58.567,80.736 +332793,55.456,85.576 +332794,56.113,83.9399 +332795,56.725,82.3198 +332796,57.298,80.7153 +332797,54.062,85.5493 +332798,54.761,83.915 +332799,55.416,82.2975 +332800,56.03,80.6959 +332801,52.669,85.5213 +332802,53.41,83.8898 +332803,54.106,82.2755 +332804,54.761,80.6777 +332805,51.276,85.492 +332806,52.059,83.8641 +332807,52.796,82.254 +332808,53.491,80.6608 +332809,49.883,85.4614 +332810,50.709,83.8381 +332811,51.486,82.233 +332812,52.221,80.6452 +332813,48.492,85.4296 +332814,49.358,83.8115 +332815,50.176,82.2123 +332816,50.951,80.6308 +332817,47.1,85.3966 +332818,48.008,83.7846 +332819,48.865,82.1921 +332820,49.68,80.6177 +332821,45.71,85.3622 +332822,46.658,83.7573 +332823,47.555,82.1722 +332824,48.408,80.6059 +332825,44.32,85.3266 +332826,45.308,83.7295 +332827,46.244,82.1528 +332828,47.136,80.5953 +332829,42.931,85.2898 +332830,43.958,83.7013 +332831,44.933,82.1339 +332832,45.863,80.586 +332833,41.543,85.2517 +332834,42.609,83.6727 +332835,43.622,82.1153 +332836,44.589,80.5779 +332837,40.155,85.2125 +332838,41.26,83.6437 +332839,42.311,82.0971 +332840,43.315,80.571 +332841,38.768,85.1719 +332842,39.911,83.6143 +332843,40.999,82.0793 +332844,42.04,80.5653 +332845,37.382,85.1302 +332846,38.563,83.5845 +332847,39.688,82.062 +332848,40.764,80.5608 +332849,35.997,85.0873 +332850,37.215,83.5543 +332851,38.376,82.045 +332852,39.488,80.5575 +332853,34.613,85.0432 +332854,35.867,83.5237 +332855,37.064,82.0285 +332856,38.211,80.5553 +332857,33.23,84.9978 +332858,34.519,83.4927 +332859,35.751,82.0123 +332860,36.933,80.5544 +332861,31.847,84.9514 +332862,33.172,83.4614 +332863,34.438,81.9965 +332864,35.654,80.5546 +332865,30.466,84.9037 +332866,31.826,83.4296 +332867,33.125,81.9811 +332868,34.374,80.5559 +332869,29.085,84.8549 +332870,30.479,83.3975 +332871,31.812,81.966 +332872,33.093,80.5583 +332873,27.706,84.805 +332874,29.133,83.365 +332875,30.498,81.9514 +332876,31.811,80.5619 +332877,26.328,84.754 +332878,27.787,83.3321 +332879,29.185,81.9371 +332880,30.529,80.5665 +332881,24.951,84.7018 +332882,26.442,83.2989 +332883,27.87,81.9231 +332884,29.245,80.5722 +332885,23.575,84.6486 +332886,25.097,83.2653 +332887,26.556,81.9096 +332888,27.96,80.579 +332889,22.2,84.5943 +332890,23.753,83.2313 +332891,25.241,81.8963 +332892,26.675,80.5868 +332893,20.826,84.5389 +332894,22.408,83.197 +332895,23.926,81.8835 +332896,25.388,80.5956 +332897,19.454,84.4825 +332898,21.065,83.1624 +332899,22.61,81.8709 +332900,24.1,80.6054 +332901,18.082,84.4251 +332902,19.721,83.1274 +332903,21.295,81.8587 +332904,22.811,80.6162 +332905,16.712,84.3667 +332906,18.379,83.0921 +332907,19.978,81.8468 +332908,21.521,80.628 +332909,15.344,84.3073 +332910,17.036,83.0565 +332911,18.662,81.8353 +332912,20.23,80.6408 +332913,13.976,84.2469 +332914,15.694,83.0205 +332915,17.345,81.824 +332916,18.938,80.6544 +332917,12.61,84.1855 +332918,14.353,82.9843 +332919,16.028,81.8131 +332920,17.645,80.669 +332921,11.245,84.1233 +332922,13.012,82.9477 +332923,14.71,81.8024 +332924,16.35,80.6844 +332925,9.8816,84.0601 +332926,11.671,82.9109 +332927,13.392,81.7921 +332928,15.054,80.7007 +332929,8.5195,83.996 +332930,10.331,82.8737 +332931,12.073,81.782 +332932,13.757,80.7179 +332933,7.1587,83.9311 +332934,8.9912,82.8363 +332935,10.754,81.7723 +332936,12.459,80.7359 +332937,5.7993,83.8653 +332938,7.652,82.7986 +332939,9.4352,81.7628 +332940,11.159,80.7546 +332941,4.4414,83.7988 +332942,6.3134,82.7607 +332943,8.1156,81.7535 +332944,9.8581,80.7742 +332945,3.0849,83.7314 +332946,4.9751,82.7224 +332947,6.7955,81.7445 +332948,8.5559,80.7945 +332949,1.7298,83.6632 +332950,3.6374,82.684 +332951,5.475,81.7358 +332952,7.2524,80.8155 +332953,0.37624,83.5943 +332954,2.3002,82.6453 +332955,4.154,81.7273 +332956,5.9476,80.8372 +332957,359.02,83.5247 +332958,0.96351,82.6063 +332959,2.8327,81.719 +332960,4.6414,80.8596 +332961,357.67,83.4544 +332962,359.63,82.5672 +332963,1.5109,81.711 +332964,3.3339,80.8827 +332965,356.32,83.3834 +332966,358.29,82.5278 +332967,0.18864,81.7032 +332968,2.025,80.9064 +332969,354.98,83.3117 +332970,356.96,82.4882 +332971,358.87,81.6956 +332972,0.71477,80.9307 +332973,353.63,83.2394 +332974,355.62,82.4484 +332975,357.54,81.6882 +332976,359.4,80.9555 +332977,352.29,83.1666 +332978,354.29,82.4084 +332979,356.22,81.6809 +332980,358.09,80.981 +332981,350.94,83.0931 +332982,352.95,82.3682 +332983,354.9,81.6739 +332984,356.78,81.0069 +332985,349.6,83.0191 +332986,351.62,82.3279 +332987,353.57,81.667 +332988,355.46,81.0333 +332989,348.26,82.9446 +332990,350.29,82.2874 +332991,352.25,81.6603 +332992,354.14,81.0603 +332993,346.92,82.8696 +332994,348.96,82.2467 +332995,350.92,81.6538 +332996,352.82,81.0876 +332997,345.59,82.7942 +332998,347.63,82.2059 +332999,349.59,81.6474 +333000,351.5,81.1154 +333001,344.25,82.7183 +333002,346.29,82.165 +333003,348.27,81.6411 +333004,350.18,81.1436 +333005,342.92,82.642 +333006,344.96,82.1239 +333007,346.94,81.635 +333008,348.86,81.1721 +333009,341.59,82.5653 +333010,343.63,82.0827 +333011,345.61,81.6289 +333012,347.53,81.201 +333013,340.26,82.4883 +333014,342.3,82.0414 +333015,344.29,81.623 +333016,346.21,81.2302 +333017,338.93,82.411 +333018,340.98,82 +333019,342.96,81.6172 +333020,344.88,81.2596 +333021,337.6,82.3334 +333022,339.65,81.9585 +333023,341.63,81.6115 +333024,343.55,81.2893 +333025,336.27,82.2555 +333026,338.32,81.9169 +333027,340.3,81.6059 +333028,342.22,81.3193 +333029,334.95,82.1774 +333030,336.99,81.8753 +333031,338.97,81.6003 +333032,340.89,81.3494 +333033,333.63,82.0991 +333034,335.67,81.8336 +333035,337.64,81.5948 +333036,339.56,81.3797 +333037,332.31,82.0206 +333038,334.34,81.7919 +333039,336.31,81.5894 +333040,338.22,81.4102 +333041,330.99,81.942 +333042,333.01,81.7501 +333043,334.98,81.584 +333044,336.89,81.4408 +333045,329.67,81.8632 +333046,331.69,81.7082 +333047,333.65,81.5786 +333048,335.55,81.4714 +333049,328.35,81.7844 +333050,330.37,81.6664 +333051,332.32,81.5732 +333052,334.21,81.5021 +333053,327.04,81.7055 +333054,329.04,81.6245 +333055,330.98,81.5679 +333056,332.87,81.5329 +333057,325.72,81.6266 +333058,327.72,81.5827 +333059,329.65,81.5626 +333060,331.53,81.5636 +333061,324.41,81.5478 +333062,326.4,81.5408 +333063,328.32,81.5573 +333064,330.18,81.5943 +333065,323.1,81.4689 +333066,325.07,81.499 +333067,326.98,81.5519 +333068,328.84,81.625 +333069,321.79,81.3902 +333070,323.75,81.4572 +333071,325.65,81.5465 +333072,327.49,81.6556 +333073,320.49,81.3115 +333074,322.43,81.4154 +333075,324.31,81.5412 +333076,326.15,81.686 +333077,319.18,81.2329 +333078,321.11,81.3737 +333079,322.98,81.5357 +333080,324.8,81.7164 +333081,317.88,81.1546 +333082,319.79,81.332 +333083,321.64,81.5302 +333084,323.45,81.7465 +333085,316.57,81.0764 +333086,318.47,81.2904 +333087,320.31,81.5247 +333088,322.1,81.7765 +333089,315.27,80.9984 +333090,317.15,81.2489 +333091,318.97,81.519 +333092,320.74,81.8063 +333093,313.97,80.9207 +333094,315.83,81.2075 +333095,317.63,81.5133 +333096,319.39,81.8358 +333097,312.68,80.8432 +333098,314.51,81.1661 +333099,316.3,81.5076 +333100,318.03,81.865 +333101,311.38,80.766 +333102,313.2,81.1249 +333103,314.96,81.5017 +333104,316.67,81.8939 +333105,310.08,80.6892 +333106,311.88,81.0838 +333107,313.62,81.4957 +333108,315.32,81.9225 +333109,308.79,80.6128 +333110,310.56,81.0428 +333111,312.28,81.4896 +333112,313.96,81.9507 +333113,307.5,80.5367 +333114,309.25,81.0019 +333115,310.94,81.4833 +333116,312.59,81.9786 +333117,306.21,80.4611 +333118,307.93,80.9612 +333119,309.6,81.477 +333120,311.23,82.006 +333121,304.92,80.3859 +333122,306.61,80.9206 +333123,308.26,81.4704 +333124,309.87,82.0331 +333125,303.63,80.3112 +333126,305.3,80.8802 +333127,306.92,81.4638 +333128,308.5,82.0596 +333129,302.34,80.237 +333130,303.98,80.84 +333131,305.58,81.457 +333132,307.14,82.0857 +333133,301.05,80.1633 +333134,302.67,80.7999 +333135,304.24,81.45 +333136,305.77,82.1112 +333137,299.77,80.0902 +333138,301.36,80.76 +333139,302.9,81.4428 +333140,304.4,82.1362 +333141,298.49,80.0177 +333142,300.04,80.7204 +333143,301.56,81.4354 +333144,303.03,82.1607 +333145,297.2,79.946 +333146,298.73,80.6809 +333147,300.22,81.4279 +333148,301.66,82.1846 +333149,295.92,79.875 +333150,297.42,80.6416 +333151,298.87,81.4201 +333152,300.29,82.2078 +333153,294.64,79.804 +333154,296.11,80.6026 +333155,297.53,81.4122 +333156,298.91,82.2305 +333157,293.36,79.734 +333158,294.8,80.5638 +333159,296.19,81.404 +333160,297.54,82.2524 +333161,292.09,79.665 +333162,293.49,80.5252 +333163,294.84,81.3956 +333164,296.16,82.2737 +333165,290.81,79.596 +333166,292.17,80.4869 +333167,293.5,81.3869 +333168,294.79,82.2943 +333169,289.53,79.529 +333170,290.86,80.4488 +333171,292.16,81.378 +333172,293.41,82.3142 +333173,288.26,79.462 +333174,289.55,80.411 +333175,290.81,81.3689 +333176,292.03,82.3333 +333177,286.98,79.396 +333178,288.24,80.3735 +333179,289.47,81.3595 +333180,290.65,82.3517 +333181,285.71,79.33 +333182,286.94,80.3362 +333183,288.12,81.3498 +333184,289.27,82.3692 +333185,284.44,79.266 +333186,285.63,80.2992 +333187,286.78,81.3399 +333188,287.89,82.386 +333189,283.17,79.202 +333190,284.32,80.2625 +333191,285.43,81.3297 +333192,286.51,82.4019 +333193,281.9,79.14 +333194,283.01,80.2261 +333195,284.09,81.3192 +333196,285.13,82.417 +333197,280.63,79.078 +333198,281.7,80.1901 +333199,282.74,81.3084 +333200,283.74,82.4312 +333201,279.36,79.017 +333202,280.4,80.1543 +333203,281.39,81.2974 +333204,282.36,82.4445 +333205,278.1,78.957 +333206,279.09,80.1188 +333207,280.05,81.286 +333208,280.97,82.4569 +333209,276.83,78.898 +333210,277.78,80.0837 +333211,278.7,81.2743 +333212,279.58,82.4684 +333213,275.56,78.841 +333214,276.47,80.0489 +333215,277.35,81.2623 +333216,278.2,82.4789 +333217,274.3,78.784 +333218,275.17,80.0144 +333219,276,81.25 +333220,276.81,82.4885 +333221,273.03,78.728 +333222,273.86,79.98 +333223,274.66,81.2373 +333224,275.42,82.4971 +333225,271.77,78.673 +333226,272.56,79.947 +333227,273.31,81.2243 +333228,274.03,82.5048 +333229,270.51,78.619 +333230,271.25,79.913 +333231,271.96,81.211 +333232,272.64,82.5114 +333233,269.24,78.567 +333234,269.94,79.88 +333235,270.61,81.1973 +333236,271.25,82.5169 +333237,267.98,78.515 +333238,268.64,79.847 +333239,269.26,81.1833 +333240,269.86,82.5215 +333241,266.72,78.465 +333242,267.33,79.815 +333243,267.92,81.1689 +333244,268.47,82.525 +333245,265.46,78.416 +333246,266.03,79.783 +333247,266.57,81.1542 +333248,267.07,82.5274 +333249,264.2,78.368 +333250,264.72,79.751 +333251,265.22,81.1391 +333252,265.68,82.5288 +333253,262.94,78.321 +333254,263.42,79.72 +333255,263.87,81.1236 +333256,264.29,82.529 +333257,261.68,78.275 +333258,262.12,79.689 +333259,262.52,81.1078 +333260,262.9,82.5282 +333261,260.42,78.23 +333262,260.81,79.659 +333263,261.17,81.0916 +333264,261.5,82.5262 +333265,259.16,78.187 +333266,259.51,79.629 +333267,259.82,81.075 +333268,260.11,82.5231 +333269,257.9,78.144 +333270,258.2,79.599 +333271,258.47,81.0581 +333272,258.71,82.5189 +333273,256.64,78.103 +333274,256.9,79.57 +333275,257.12,81.0407 +333276,257.32,82.5136 +333277,255.39,78.063 +333278,255.6,79.541 +333279,255.78,81.023 +333280,255.92,82.507 +333281,254.13,78.025 +333282,254.29,79.513 +333283,254.43,81.0049 +333284,254.53,82.4994 +333285,252.87,77.987 +333286,252.99,79.485 +333287,253.08,80.9864 +333288,253.13,82.4905 +333289,251.61,77.951 +333290,251.69,79.457 +333291,251.73,80.9674 +333292,251.74,82.4805 +333293,250.35,77.916 +333294,250.38,79.43 +333295,250.38,80.9481 +333296,250.34,82.4693 +333297,249.1,77.882 +333298,249.08,79.403 +333299,249.03,80.9284 +333300,248.95,82.4569 +333301,247.84,77.85 +333302,247.78,79.377 +333303,247.68,80.9083 +333304,247.55,82.4433 +333305,246.58,77.819 +333306,246.47,79.351 +333307,246.33,80.8878 +333308,246.15,82.4285 +333309,245.32,77.789 +333310,245.17,79.325 +333311,244.98,80.8669 +333312,244.76,82.4125 +333313,244.07,77.76 +333314,243.87,79.3 +333315,243.63,80.8456 +333316,243.36,82.3952 +333317,242.81,77.733 +333318,242.56,79.276 +333319,242.28,80.8239 +333320,241.97,82.3768 +333321,241.55,77.707 +333322,241.26,79.251 +333323,240.93,80.8018 +333324,240.57,82.3572 +333325,240.29,77.682 +333326,239.96,79.227 +333327,239.59,80.7792 +333328,239.18,82.3363 +333329,239.03,77.658 +333330,238.65,79.204 +333331,238.24,80.7563 +333332,237.78,82.3142 +333333,237.77,77.636 +333334,237.35,79.181 +333335,236.89,80.733 +333336,236.39,82.2909 +333337,236.51,77.615 +333338,236.04,79.158 +333339,235.54,80.7092 +333340,234.99,82.2664 +333341,235.25,77.595 +333342,234.74,79.136 +333343,234.19,80.6851 +333344,233.6,82.2407 +333345,233.99,77.576 +333346,233.44,79.115 +333347,232.84,80.6605 +333348,232.21,82.2138 +333349,232.73,77.559 +333350,232.13,79.093 +333351,231.49,80.6355 +333352,230.81,82.1856 +333353,231.47,77.543 +333354,230.83,79.072 +333355,230.15,80.6102 +333356,229.42,82.1562 +333357,230.21,77.528 +333358,229.52,79.052 +333359,228.8,80.5844 +333360,228.03,82.1256 +333361,228.95,77.514 +333362,228.22,79.032 +333363,227.45,80.5582 +333364,226.64,82.0939 +333365,227.69,77.502 +333366,226.92,79.012 +333367,226.1,80.5317 +333368,225.25,82.0609 +333369,226.43,77.491 +333370,225.61,78.993 +333371,224.76,80.5047 +333372,223.86,82.0267 +333373,225.16,77.481 +333374,224.31,78.974 +333375,223.41,80.4774 +333376,222.47,81.9913 +333377,223.9,77.472 +333378,223,78.955 +333379,222.06,80.4496 +333380,221.08,81.9548 +333381,222.63,77.465 +333382,221.7,78.937 +333383,220.72,80.4215 +333384,219.69,81.917 +333385,221.37,77.458 +333386,220.39,78.92 +333387,219.37,80.393 +333388,218.3,81.8781 +333389,220.1,77.453 +333390,219.09,78.903 +333391,218.02,80.364 +333392,216.91,81.8381 +333393,218.83,77.449 +333394,217.78,78.886 +333395,216.68,80.3348 +333396,215.53,81.7969 +333397,217.57,77.446 +333398,216.47,78.869 +333399,215.33,80.3051 +333400,214.14,81.7545 +333401,216.3,77.445 +333402,215.17,78.853 +333403,213.99,80.275 +333404,212.76,81.711 +333405,215.03,77.444 +333406,213.86,78.837 +333407,212.64,80.2446 +333408,211.37,81.6664 +333409,213.76,77.445 +333410,212.55,78.822 +333411,211.3,80.2139 +333412,209.99,81.6207 +333413,212.49,77.446 +333414,211.25,78.807 +333415,209.96,80.1827 +333416,208.61,81.5738 +333417,211.22,77.449 +333418,209.94,78.793 +333419,208.61,80.1512 +333420,207.23,81.5259 +333421,209.94,77.453 +333422,208.63,78.778 +333423,207.27,80.1194 +333424,205.85,81.4769 +333425,208.67,77.458 +333426,207.32,78.764 +333427,205.93,80.0872 +333428,204.47,81.4269 +333429,207.39,77.464 +333430,206.01,78.751 +333431,204.58,80.0546 +333432,203.09,81.3758 +333433,206.12,77.471 +333434,204.71,78.738 +333435,203.24,80.0218 +333436,201.71,81.3237 +333437,204.84,77.479 +333438,203.4,78.725 +333439,201.9,79.989 +333440,200.34,81.2705 +333441,203.56,77.488 +333442,202.09,78.712 +333443,200.56,79.955 +333444,198.96,81.2164 +333445,202.28,77.497 +333446,200.78,78.7 +333447,199.22,79.921 +333448,197.59,81.1613 +333449,201,77.508 +333450,199.47,78.689 +333451,197.88,79.887 +333452,196.22,81.1052 +333453,199.72,77.52 +333454,198.16,78.677 +333455,196.54,79.852 +333456,194.85,81.0481 +333457,198.44,77.533 +333458,196.85,78.666 +333459,195.2,79.818 +333460,193.48,80.9901 +333461,197.16,77.547 +333462,195.54,78.655 +333463,193.86,79.783 +333464,192.11,80.9312 +333465,195.87,77.561 +333466,194.22,78.644 +333467,192.52,79.747 +333468,190.74,80.8714 +333469,194.58,77.576 +333470,192.91,78.634 +333471,191.18,79.712 +333472,189.38,80.8108 +333473,193.3,77.593 +333474,191.6,78.624 +333475,189.84,79.676 +333476,188.01,80.7492 +333477,192.01,77.61 +333478,190.29,78.614 +333479,188.5,79.639 +333480,186.65,80.6869 +333481,190.72,77.627 +333482,188.97,78.605 +333483,187.17,79.603 +333484,185.29,80.6237 +333485,189.43,77.646 +333486,187.66,78.596 +333487,185.83,79.566 +333488,183.93,80.5597 +333489,188.13,77.665 +333490,186.35,78.587 +333491,184.49,79.529 +333492,182.57,80.495 +333493,186.84,77.685 +333494,185.03,78.578 +333495,183.16,79.492 +333496,181.21,80.4295 +333497,185.55,77.706 +333498,183.72,78.57 +333499,181.82,79.455 +333500,179.86,80.3632 +333501,184.25,77.728 +333502,182.4,78.561 +333503,180.49,79.417 +333504,178.5,80.2963 +333505,182.95,77.75 +333506,181.09,78.553 +333507,179.16,79.379 +333508,177.15,80.2287 +333509,181.65,77.772 +333510,179.77,78.546 +333511,177.82,79.341 +333512,175.8,80.1604 +333513,180.35,77.796 +333514,178.45,78.538 +333515,176.49,79.303 +333516,174.45,80.0915 +333517,179.05,77.819 +333518,177.14,78.531 +333519,175.16,79.264 +333520,173.1,80.022 +333521,177.74,77.844 +333522,175.82,78.524 +333523,173.82,79.225 +333524,171.75,79.952 +333525,176.44,77.869 +333526,174.5,78.517 +333527,172.49,79.187 +333528,170.41,79.881 +333529,175.13,77.894 +333530,173.18,78.51 +333531,171.16,79.148 +333532,169.07,79.81 +333533,173.82,77.92 +333534,171.86,78.503 +333535,169.83,79.108 +333536,167.72,79.738 +333537,172.51,77.947 +333538,170.54,78.497 +333539,168.5,79.069 +333540,166.38,79.666 +333541,171.2,77.973 +333542,169.22,78.49 +333543,167.17,79.029 +333544,165.04,79.594 +333545,169.89,78 +333546,167.9,78.484 +333547,165.84,78.99 +333548,163.71,79.52 +333549,168.58,78.028 +333550,166.58,78.478 +333551,164.52,78.95 +333552,162.37,79.447 +333553,167.26,78.056 +333554,165.26,78.472 +333555,163.19,78.91 +333556,161.04,79.373 +333557,165.94,78.084 +333558,163.94,78.466 +333559,161.86,78.87 +333560,159.71,79.299 +333561,164.62,78.113 +333562,162.61,78.461 +333563,160.54,78.83 +333564,158.38,79.224 +333565,163.3,78.141 +333566,161.29,78.455 +333567,159.21,78.79 +333568,157.05,79.15 +333569,161.98,78.17 +333570,159.97,78.449 +333571,157.88,78.75 +333572,155.72,79.075 +333573,160.66,78.199 +333574,158.64,78.444 +333575,156.56,78.71 +333576,154.4,78.999 +333577,159.33,78.229 +333578,157.32,78.438 +333579,155.23,78.669 +333580,153.07,78.924 +333581,158.01,78.258 +333582,155.99,78.433 +333583,153.91,78.629 +333584,151.75,78.848 +333585,156.68,78.288 +333586,154.67,78.428 +333587,152.59,78.588 +333588,150.43,78.772 +333589,155.35,78.318 +333590,153.34,78.423 +333591,151.27,78.548 +333592,149.11,78.696 +333593,154.02,78.347 +333594,152.02,78.417 +333595,149.94,78.507 +333596,147.79,78.62 +333597,152.69,78.377 +333598,150.69,78.412 +333599,148.62,78.467 +333600,146.48,78.544 +333601,151.35,78.407 +333602,149.36,78.407 +333603,147.3,78.426 +333604,145.16,78.468 +333605,150.02,78.437 +333606,148.03,78.402 +333607,145.98,78.386 +333608,143.85,78.392 +333609,148.68,78.466 +333610,146.71,78.397 +333611,144.66,78.345 +333612,142.54,78.316 +333613,147.34,78.496 +333614,145.38,78.391 +333615,143.34,78.305 +333616,141.23,78.239 +333617,146,78.526 +333618,144.05,78.386 +333619,142.02,78.265 +333620,139.93,78.163 +333621,144.66,78.555 +333622,142.72,78.381 +333623,140.71,78.224 +333624,138.62,78.088 +333625,143.32,78.584 +333626,141.39,78.376 +333627,139.39,78.184 +333628,137.32,78.012 +333629,141.97,78.613 +333630,140.06,78.37 +333631,138.07,78.144 +333632,136.01,77.936 +333633,140.63,78.642 +333634,138.72,78.365 +333635,136.75,78.103 +333636,134.71,77.861 +333637,139.28,78.671 +333638,137.39,78.359 +333639,135.44,78.063 +333640,133.41,77.786 +333641,137.93,78.699 +333642,136.06,78.354 +333643,134.12,78.023 +333644,132.12,77.711 +333645,136.58,78.727 +333646,134.73,78.348 +333647,132.81,77.983 +333648,130.82,77.636 +333649,135.23,78.755 +333650,133.39,78.342 +333651,131.49,77.944 +333652,129.53,77.562 +333653,133.88,78.783 +333654,132.06,78.336 +333655,130.18,77.904 +333656,128.23,77.488 +333657,132.52,78.81 +333658,130.73,78.33 +333659,128.87,77.864 +333660,126.94,77.414 +333661,131.17,78.836 +333662,129.39,78.324 +333663,127.55,77.825 +333664,125.65,77.341 +333665,129.81,78.863 +333666,128.06,78.318 +333667,126.24,77.786 +333668,124.36,77.268 +333669,128.45,78.888 +333670,126.72,78.312 +333671,124.93,77.746 +333672,123.08,77.196 +333673,127.09,78.914 +333674,125.38,78.305 +333675,123.62,77.708 +333676,121.79,77.124 +333677,125.73,78.939 +333678,124.05,78.298 +333679,122.31,77.669 +333680,120.51,77.052 +333681,124.37,78.963 +333682,122.71,78.291 +333683,121,77.63 +333684,119.22,76.982 +333685,123,78.987 +333686,121.37,78.284 +333687,119.69,77.592 +333688,117.94,76.911 +333689,121.64,79.01 +333690,120.04,78.277 +333691,118.38,77.553 +333692,116.66,76.842 +333693,120.27,79.032 +333694,118.7,78.27 +333695,117.07,77.515 +333696,115.38,76.772 +333697,118.9,79.054 +333698,117.36,78.262 +333699,115.76,77.478 +333700,114.11,76.704 +333701,117.53,79.076 +333702,116.02,78.254 +333703,114.45,77.44 +333704,112.83,76.636 +333705,116.16,79.097 +333706,114.68,78.246 +333707,113.15,77.403 +333708,111.55,76.569 +333709,114.79,79.117 +333710,113.34,78.238 +333711,111.84,77.366 +333712,110.28,76.503 +333713,113.42,79.136 +333714,112,78.229 +333715,110.53,77.329 +333716,109.01,76.437 +333717,112.05,79.154 +333718,110.66,78.22 +333719,109.23,77.292 +333720,107.74,76.372 +333721,110.67,79.172 +333722,109.32,78.211 +333723,107.92,77.256 +333724,106.47,76.308 +333725,109.3,79.189 +333726,107.98,78.202 +333727,106.61,77.22 +333728,105.2,76.244 +333729,107.92,79.206 +333730,106.64,78.193 +333731,105.31,77.184 +333732,103.93,76.182 +333733,106.54,79.221 +333734,105.3,78.183 +333735,104,77.148 +333736,102.66,76.12 +333737,105.16,79.236 +333738,103.95,78.173 +333739,102.7,77.113 +333740,101.4,76.059 +333741,103.78,79.25 +333742,102.61,78.162 +333743,101.4,77.078 +333744,100.13,75.999 +333745,102.4,79.263 +333746,101.27,78.152 +333747,100.09,77.044 +333748,98.867,75.94 +333749,101.02,79.275 +333750,99.926,78.141 +333751,98.788,77.009 +333752,97.604,75.882 +333753,99.639,79.286 +333754,98.583,78.13 +333755,97.485,76.975 +333756,96.342,75.825 +333757,98.255,79.296 +333758,97.24,78.118 +333759,96.182,76.942 +333760,95.081,75.769 +333761,96.871,79.305 +333762,95.896,78.106 +333763,94.88,76.908 +333764,93.82,75.713 +333765,95.486,79.314 +333766,94.552,78.094 +333767,93.577,76.875 +333768,92.561,75.659 +333769,94.1,79.321 +333770,93.208,78.082 +333771,92.275,76.843 +333772,91.302,75.606 +333773,92.714,79.328 +333774,91.863,78.069 +333775,90.974,76.81 +333776,90.044,75.554 +333777,91.326,79.333 +333778,90.519,78.056 +333779,89.672,76.778 +333780,88.787,75.503 +333781,89.938,79.337 +333782,89.174,78.042 +333783,88.371,76.747 +333784,87.53,75.453 +333785,88.55,79.341 +333786,87.829,78.028 +333787,87.07,76.715 +333788,86.274,75.404 +333789,87.16,79.343 +333790,86.483,78.014 +333791,85.77,76.685 +333792,85.018,75.356 +333793,85.77,79.344 +333794,85.138,78 +333795,84.469,76.654 +333796,83.764,75.309 +333797,84.38,79.345 +333798,83.792,77.985 +333799,83.169,76.624 +333800,82.509,75.263 +333801,82.989,79.344 +333802,82.446,77.97 +333803,81.869,76.594 +333804,81.256,75.219 +333805,81.597,79.342 +333806,81.101,77.954 +333807,80.569,76.565 +333808,80.002,75.175 +333809,80.205,79.339 +333810,79.755,77.938 +333811,79.269,76.536 +333812,78.749,75.133 +333813,78.813,79.335 +333814,78.408,77.922 +333815,77.97,76.507 +333816,77.497,75.092 +333817,77.42,79.33 +333818,77.062,77.905 +333819,76.671,76.479 +333820,76.245,75.052 +333821,76.027,79.323 +333822,75.716,77.888 +333823,75.371,76.451 +333824,74.993,75.013 +333825,74.634,79.316 +333826,74.369,77.871 +333827,74.072,76.423 +333828,73.741,74.976 +333829,73.24,79.307 +333830,73.023,77.853 +333831,72.773,76.396 +333832,72.49,74.939 +333833,71.846,79.297 +333834,71.676,77.835 +333835,71.474,76.37 +333836,71.239,74.904 +333837,70.451,79.286 +333838,70.33,77.816 +333839,70.175,76.343 +333840,69.988,74.87 +333841,69.057,79.274 +333842,68.983,77.797 +333843,68.877,76.318 +333844,68.738,74.838 +333845,67.662,79.261 +333846,67.636,77.778 +333847,67.578,76.292 +333848,67.487,74.806 +333849,66.268,79.247 +333850,66.29,77.758 +333851,66.279,76.267 +333852,66.236,74.776 +333853,64.873,79.231 +333854,64.943,77.738 +333855,64.98,76.242 +333856,64.986,74.747 +333857,63.478,79.214 +333858,63.596,77.717 +333859,63.682,76.218 +333860,63.735,74.719 +333861,62.083,79.196 +333862,62.25,77.696 +333863,62.383,76.194 +333864,62.485,74.692 +333865,60.688,79.177 +333866,60.903,77.675 +333867,61.085,76.171 +333868,61.234,74.667 +333869,59.293,79.157 +333870,59.556,77.653 +333871,59.786,76.148 +333872,59.983,74.643 +333873,57.899,79.136 +333874,58.21,77.631 +333875,58.487,76.125 +333876,58.732,74.62 +333877,56.504,79.113 +333878,56.863,77.608 +333879,57.189,76.103 +333880,57.481,74.599 +333881,55.11,79.089 +333882,55.517,77.586 +333883,55.89,76.082 +333884,56.23,74.578 +333885,53.716,79.064 +333886,54.171,77.562 +333887,54.591,76.06 +333888,54.978,74.559 +333889,52.322,79.038 +333890,52.825,77.539 +333891,53.292,76.039 +333892,53.726,74.541 +333893,50.928,79.01 +333894,51.479,77.514 +333895,51.993,76.019 +333896,52.474,74.524 +333897,49.535,78.982 +333898,50.133,77.49 +333899,50.694,75.999 +333900,51.221,74.509 +333901,48.142,78.952 +333902,48.787,77.465 +333903,49.395,75.979 +333904,49.968,74.495 +333905,46.75,78.921 +333906,47.442,77.44 +333907,48.096,75.96 +333908,48.715,74.482 +333909,45.357,78.889 +333910,46.096,77.414 +333911,46.796,75.941 +333912,47.461,74.47 +333913,43.966,78.856 +333914,44.751,77.388 +333915,45.497,75.922 +333916,46.207,74.459 +333917,42.575,78.821 +333918,43.406,77.362 +333919,44.197,75.904 +333920,44.952,74.45 +333921,41.184,78.786 +333922,42.061,77.335 +333923,42.897,75.887 +333924,43.696,74.442 +333925,39.794,78.749 +333926,40.716,77.308 +333927,41.597,75.869 +333928,42.44,74.435 +333929,38.405,78.711 +333930,39.372,77.28 +333931,40.297,75.852 +333932,41.183,74.429 +333933,37.016,78.672 +333934,38.028,77.252 +333935,38.996,75.836 +333936,39.925,74.424 +333937,35.628,78.632 +333938,36.684,77.224 +333939,37.696,75.82 +333940,38.667,74.421 +333941,34.241,78.591 +333942,35.34,77.195 +333943,36.395,75.804 +333944,37.408,74.418 +333945,32.854,78.549 +333946,33.997,77.166 +333947,35.093,75.789 +333948,36.149,74.417 +333949,31.468,78.506 +333950,32.654,77.137 +333951,33.792,75.774 +333952,34.888,74.417 +333953,30.083,78.461 +333954,31.311,77.107 +333955,32.49,75.759 +333956,33.627,74.418 +333957,28.699,78.416 +333958,29.969,77.077 +333959,31.188,75.745 +333960,32.364,74.42 +333961,27.316,78.369 +333962,28.627,77.046 +333963,29.886,75.731 +333964,31.101,74.423 +333965,25.934,78.321 +333966,27.285,77.016 +333967,28.584,75.717 +333968,29.837,74.427 +333969,24.552,78.273 +333970,25.943,76.984 +333971,27.281,75.704 +333972,28.572,74.432 +333973,23.172,78.223 +333974,24.602,76.953 +333975,25.978,75.691 +333976,27.306,74.438 +333977,21.793,78.173 +333978,23.261,76.921 +333979,24.674,75.679 +333980,26.039,74.446 +333981,20.414,78.121 +333982,21.921,76.889 +333983,23.371,75.667 +333984,24.771,74.454 +333985,19.037,78.068 +333986,20.581,76.856 +333987,22.067,75.655 +333988,23.502,74.463 +333989,17.661,78.015 +333990,19.241,76.824 +333991,20.762,75.643 +333992,22.231,74.473 +333993,16.286,77.96 +333994,17.902,76.791 +333995,19.457,75.632 +333996,20.96,74.484 +333997,14.913,77.905 +333998,16.563,76.757 +333999,18.152,75.621 +334000,19.688,74.496 +334001,13.54,77.848 +334002,15.225,76.724 +334003,16.847,75.611 +334004,18.414,74.509 +334005,12.169,77.791 +334006,13.887,76.69 +334007,15.541,75.6 +334008,17.139,74.523 +334009,10.799,77.733 +334010,12.549,76.655 +334011,14.234,75.59 +334012,15.863,74.538 +334013,9.4299,77.674 +334014,11.212,76.621 +334015,12.928,75.581 +334016,14.586,74.553 +334017,8.0624,77.614 +334018,9.8755,76.586 +334019,11.621,75.571 +334020,13.307,74.57 +334021,6.6963,77.554 +334022,8.5393,76.551 +334023,10.313,75.562 +334024,12.027,74.587 +334025,5.3316,77.492 +334026,7.2036,76.516 +334027,9.005,75.553 +334028,10.746,74.605 +334029,3.9682,77.43 +334030,5.8683,76.48 +334031,7.6967,75.545 +334032,9.4636,74.623 +334033,2.6063,77.367 +334034,4.5335,76.444 +334035,6.3879,75.536 +334036,8.1797,74.643 +334037,1.2458,77.304 +334038,3.1992,76.408 +334039,5.0786,75.528 +334040,6.8946,74.663 +334041,359.89,77.239 +334042,1.8654,76.372 +334043,3.7689,75.52 +334044,5.608,74.684 +334045,358.53,77.174 +334046,0.53209,76.335 +334047,2.4587,75.513 +334048,4.32,74.705 +334049,357.17,77.108 +334050,359.2,76.299 +334051,1.1481,75.505 +334052,3.0307,74.727 +334053,355.82,77.042 +334054,357.87,76.262 +334055,359.84,75.498 +334056,1.7399,74.75 +334057,354.47,76.975 +334058,356.54,76.224 +334059,358.53,75.491 +334060,0.44762,74.773 +334061,353.11,76.908 +334062,355.2,76.187 +334063,357.21,75.484 +334064,359.15,74.797 +334065,351.76,76.839 +334066,353.87,76.15 +334067,355.9,75.478 +334068,357.86,74.822 +334069,350.42,76.771 +334070,352.54,76.112 +334071,354.59,75.471 +334072,356.56,74.847 +334073,349.07,76.702 +334074,351.21,76.074 +334075,353.27,75.465 +334076,355.26,74.872 +334077,347.72,76.632 +334078,349.88,76.036 +334079,351.96,75.459 +334080,353.96,74.898 +334081,346.38,76.562 +334082,348.56,75.998 +334083,350.65,75.453 +334084,352.66,74.924 +334085,345.04,76.491 +334086,347.23,75.96 +334087,349.33,75.447 +334088,351.36,74.951 +334089,343.7,76.42 +334090,345.9,75.921 +334091,348.02,75.441 +334092,350.06,74.978 +334093,342.36,76.349 +334094,344.57,75.883 +334095,346.7,75.436 +334096,348.75,75.006 +334097,341.02,76.277 +334098,343.25,75.844 +334099,345.38,75.43 +334100,347.44,75.034 +334101,339.69,76.205 +334102,341.92,75.805 +334103,344.07,75.425 +334104,346.13,75.062 +334105,338.36,76.132 +334106,340.6,75.767 +334107,342.75,75.42 +334108,344.82,75.09 +334109,337.02,76.06 +334110,339.27,75.728 +334111,341.43,75.415 +334112,343.51,75.119 +334113,335.69,75.987 +334114,337.95,75.689 +334115,340.11,75.41 +334116,342.2,75.148 +334117,334.37,75.913 +334118,336.62,75.649 +334119,338.79,75.405 +334120,340.88,75.177 +334121,333.04,75.84 +334122,335.3,75.61 +334123,337.47,75.4 +334124,339.57,75.206 +334125,331.71,75.766 +334126,333.98,75.571 +334127,336.15,75.395 +334128,338.25,75.235 +334129,330.39,75.692 +334130,332.66,75.532 +334131,334.83,75.39 +334132,336.93,75.265 +334133,329.07,75.619 +334134,331.34,75.493 +334135,333.51,75.385 +334136,335.61,75.295 +334137,327.75,75.545 +334138,330.02,75.453 +334139,332.19,75.381 +334140,334.28,75.324 +334141,326.43,75.471 +334142,328.7,75.414 +334143,330.87,75.376 +334144,332.96,75.354 +334145,325.12,75.397 +334146,327.38,75.375 +334147,329.54,75.371 +334148,331.63,75.384 +334149,323.8,75.322 +334150,326.06,75.335 +334151,328.22,75.366 +334152,330.3,75.413 +334153,322.49,75.248 +334154,324.74,75.296 +334155,326.9,75.362 +334156,328.97,75.443 +334157,321.18,75.174 +334158,323.42,75.257 +334159,325.57,75.357 +334160,327.64,75.472 +334161,319.87,75.1 +334162,322.1,75.218 +334163,324.25,75.352 +334164,326.31,75.502 +334165,318.56,75.027 +334166,320.79,75.179 +334167,322.92,75.347 +334168,324.98,75.531 +334169,317.26,74.953 +334170,319.47,75.139 +334171,321.6,75.343 +334172,323.64,75.56 +334173,315.95,74.879 +334174,318.16,75.1 +334175,320.27,75.338 +334176,322.3,75.589 +334177,314.65,74.806 +334178,316.84,75.061 +334179,318.94,75.333 +334180,320.96,75.618 +334181,313.35,74.733 +334182,315.53,75.022 +334183,317.62,75.328 +334184,319.62,75.646 +334185,312.05,74.66 +334186,314.21,74.984 +334187,316.29,75.323 +334188,318.28,75.674 +334189,310.76,74.587 +334190,312.9,74.945 +334191,314.96,75.317 +334192,316.94,75.702 +334193,309.46,74.515 +334194,311.59,74.906 +334195,313.63,75.312 +334196,315.59,75.73 +334197,308.17,74.443 +334198,310.28,74.868 +334199,312.3,75.307 +334200,314.25,75.757 +334201,306.87,74.371 +334202,308.96,74.829 +334203,310.97,75.301 +334204,312.9,75.784 +334205,305.58,74.3 +334206,307.65,74.791 +334207,309.64,75.295 +334208,311.55,75.811 +334209,304.29,74.229 +334210,306.34,74.753 +334211,308.31,75.29 +334212,310.2,75.837 +334213,303.01,74.159 +334214,305.03,74.715 +334215,306.98,75.284 +334216,308.85,75.862 +334217,301.72,74.089 +334218,303.72,74.677 +334219,305.65,75.278 +334220,307.49,75.887 +334221,300.44,74.019 +334222,302.42,74.639 +334223,304.31,75.271 +334224,306.14,75.912 +334225,299.15,73.95 +334226,301.11,74.602 +334227,302.98,75.265 +334228,304.78,75.936 +334229,297.87,73.882 +334230,299.8,74.565 +334231,301.65,75.258 +334232,303.42,75.96 +334233,296.59,73.814 +334234,298.49,74.528 +334235,300.31,75.251 +334236,302.06,75.983 +334237,295.31,73.747 +334238,297.19,74.491 +334239,298.98,75.244 +334240,300.7,76.005 +334241,294.04,73.68 +334242,295.88,74.454 +334243,297.64,75.237 +334244,299.34,76.027 +334245,292.76,73.614 +334246,294.57,74.418 +334247,296.31,75.23 +334248,297.98,76.048 +334249,291.49,73.549 +334250,293.27,74.381 +334251,294.97,75.222 +334252,296.61,76.069 +334253,290.21,73.484 +334254,291.96,74.345 +334255,293.64,75.214 +334256,295.25,76.089 +334257,288.94,73.42 +334258,290.66,74.31 +334259,292.3,75.206 +334260,293.88,76.108 +334261,287.67,73.357 +334262,289.35,74.274 +334263,290.96,75.198 +334264,292.51,76.126 +334265,286.4,73.294 +334266,288.05,74.239 +334267,289.63,75.189 +334268,291.14,76.144 +334269,285.14,73.233 +334270,286.75,74.204 +334271,288.29,75.181 +334272,289.77,76.161 +334273,283.87,73.172 +334274,285.44,74.169 +334275,286.95,75.172 +334276,288.4,76.177 +334277,282.61,73.112 +334278,284.14,74.135 +334279,285.61,75.162 +334280,287.02,76.192 +334281,281.34,73.053 +334282,282.84,74.101 +334283,284.28,75.153 +334284,285.65,76.206 +334285,280.08,72.994 +334286,281.54,74.067 +334287,282.94,75.143 +334288,284.27,76.22 +334289,278.82,72.937 +334290,280.24,74.033 +334291,281.6,75.132 +334292,282.9,76.233 +334293,277.56,72.88 +334294,278.94,74 +334295,280.26,75.122 +334296,281.52,76.245 +334297,276.3,72.825 +334298,277.64,73.967 +334299,278.92,75.111 +334300,280.14,76.256 +334301,275.04,72.77 +334302,276.34,73.934 +334303,277.58,75.1 +334304,278.76,76.266 +334305,273.78,72.716 +334306,275.04,73.902 +334307,276.24,75.089 +334308,277.38,76.275 +334309,272.53,72.663 +334310,273.74,73.87 +334311,274.9,75.077 +334312,276,76.283 +334313,271.27,72.612 +334314,272.44,73.838 +334315,273.55,75.065 +334316,274.62,76.29 +334317,270.02,72.561 +334318,271.14,73.807 +334319,272.21,75.053 +334320,273.23,76.297 +334321,268.76,72.511 +334322,269.84,73.776 +334323,270.87,75.04 +334324,271.85,76.302 +334325,267.51,72.463 +334326,268.54,73.745 +334327,269.53,75.027 +334328,270.47,76.306 +334329,266.26,72.415 +334330,267.25,73.715 +334331,268.19,75.014 +334332,269.08,76.309 +334333,265,72.369 +334334,265.95,73.685 +334335,266.84,75 +334336,267.69,76.311 +334337,263.75,72.323 +334338,264.65,73.655 +334339,265.5,74.986 +334340,266.31,76.313 +334341,262.5,72.279 +334342,263.35,73.626 +334343,264.16,74.971 +334344,264.92,76.313 +334345,261.25,72.236 +334346,262.06,73.597 +334347,262.82,74.957 +334348,263.53,76.312 +334349,260.01,72.194 +334350,260.76,73.569 +334351,261.47,74.942 +334352,262.14,76.31 +334353,258.76,72.153 +334354,259.46,73.541 +334355,260.13,74.926 +334356,260.75,76.307 +334357,257.51,72.113 +334358,258.17,73.513 +334359,258.78,74.91 +334360,259.36,76.302 +334361,256.26,72.074 +334362,256.87,73.486 +334363,257.44,74.894 +334364,257.97,76.297 +334365,255.02,72.037 +334366,255.58,73.459 +334367,256.1,74.877 +334368,256.58,76.291 +334369,253.77,72 +334370,254.28,73.432 +334371,254.75,74.86 +334372,255.19,76.283 +334373,252.52,71.965 +334374,252.99,73.406 +334375,253.41,74.843 +334376,253.79,76.274 +334377,251.28,71.931 +334378,251.69,73.38 +334379,252.06,74.825 +334380,252.4,76.265 +334381,250.03,71.898 +334382,250.39,73.355 +334383,250.72,74.807 +334384,251.01,76.254 +334385,248.79,71.867 +334386,249.1,73.33 +334387,249.38,74.789 +334388,249.62,76.242 +334389,247.54,71.837 +334390,247.8,73.305 +334391,248.03,74.77 +334392,248.22,76.228 +334393,246.3,71.807 +334394,246.51,73.281 +334395,246.69,74.751 +334396,246.83,76.214 +334397,245.05,71.779 +334398,245.21,73.257 +334399,245.34,74.731 +334400,245.43,76.198 +334401,243.81,71.753 +334402,243.92,73.234 +334403,244,74.711 +334404,244.04,76.181 +334405,242.56,71.727 +334406,242.62,73.211 +334407,242.65,74.69 +334408,242.65,76.164 +334409,241.32,71.703 +334410,241.33,73.189 +334411,241.31,74.67 +334412,241.25,76.144 +334413,240.08,71.68 +334414,240.04,73.166 +334415,239.96,74.648 +334416,239.86,76.124 +334417,238.83,71.658 +334418,238.74,73.145 +334419,238.62,74.627 +334420,238.46,76.103 +334421,237.59,71.638 +334422,237.45,73.123 +334423,237.27,74.605 +334424,237.07,76.08 +334425,236.34,71.618 +334426,236.15,73.102 +334427,235.93,74.582 +334428,235.67,76.056 +334429,235.1,71.6 +334430,234.86,73.082 +334431,234.58,74.559 +334432,234.28,76.031 +334433,233.85,71.583 +334434,233.56,73.062 +334435,233.24,74.536 +334436,232.88,76.005 +334437,232.61,71.567 +334438,232.27,73.042 +334439,231.89,74.513 +334440,231.49,75.978 +334441,231.36,71.553 +334442,230.97,73.023 +334443,230.55,74.489 +334444,230.1,75.95 +334445,230.11,71.54 +334446,229.68,73.004 +334447,229.21,74.464 +334448,228.7,75.92 +334449,228.87,71.527 +334450,228.38,72.985 +334451,227.86,74.439 +334452,227.31,75.889 +334453,227.62,71.516 +334454,227.09,72.967 +334455,226.52,74.414 +334456,225.92,75.857 +334457,226.37,71.507 +334458,225.79,72.949 +334459,225.17,74.389 +334460,224.52,75.824 +334461,225.13,71.498 +334462,224.49,72.932 +334463,223.83,74.363 +334464,223.13,75.79 +334465,223.88,71.491 +334466,223.2,72.915 +334467,222.49,74.337 +334468,221.74,75.755 +334469,222.63,71.485 +334470,221.9,72.898 +334471,221.14,74.31 +334472,220.35,75.718 +334473,221.38,71.48 +334474,220.61,72.882 +334475,219.8,74.283 +334476,218.96,75.681 +334477,220.13,71.476 +334478,219.31,72.866 +334479,218.46,74.255 +334480,217.57,75.642 +334481,218.88,71.473 +334482,218.01,72.851 +334483,217.11,74.228 +334484,216.18,75.602 +334485,217.63,71.471 +334486,216.72,72.836 +334487,215.77,74.199 +334488,214.79,75.561 +334489,216.38,71.471 +334490,215.42,72.821 +334491,214.43,74.171 +334492,213.4,75.519 +334493,215.12,71.471 +334494,214.12,72.807 +334495,213.09,74.142 +334496,212.01,75.476 +334497,213.87,71.473 +334498,212.83,72.793 +334499,211.75,74.113 +334500,210.62,75.432 +334501,212.62,71.476 +334502,211.53,72.779 +334503,210.4,74.083 +334504,209.24,75.387 +334505,211.36,71.48 +334506,210.23,72.766 +334507,209.06,74.053 +334508,207.85,75.341 +334509,210.11,71.484 +334510,208.93,72.753 +334511,207.72,74.023 +334512,206.47,75.293 +334513,208.85,71.49 +334514,207.64,72.74 +334515,206.38,73.992 +334516,205.08,75.245 +334517,207.59,71.497 +334518,206.34,72.728 +334519,205.04,73.961 +334520,203.7,75.196 +334521,206.33,71.505 +334522,205.04,72.716 +334523,203.7,73.93 +334524,202.32,75.146 +334525,205.07,71.514 +334526,203.74,72.705 +334527,202.36,73.898 +334528,200.93,75.094 +334529,203.81,71.524 +334530,202.44,72.693 +334531,201.02,73.866 +334532,199.55,75.042 +334533,202.55,71.535 +334534,201.14,72.682 +334535,199.68,73.834 +334536,198.18,74.989 +334537,201.29,71.546 +334538,199.84,72.672 +334539,198.34,73.802 +334540,196.8,74.935 +334541,200.02,71.559 +334542,198.54,72.662 +334543,197.01,73.769 +334544,195.42,74.88 +334545,198.76,71.572 +334546,197.24,72.652 +334547,195.67,73.736 +334548,194.04,74.824 +334549,197.49,71.587 +334550,195.94,72.642 +334551,194.33,73.702 +334552,192.67,74.768 +334553,196.22,71.602 +334554,194.63,72.632 +334555,192.99,73.669 +334556,191.3,74.71 +334557,194.95,71.618 +334558,193.33,72.623 +334559,191.66,73.635 +334560,189.92,74.652 +334561,193.68,71.635 +334562,192.03,72.614 +334563,190.32,73.6 +334564,188.55,74.592 +334565,192.41,71.653 +334566,190.73,72.606 +334567,188.99,73.566 +334568,187.18,74.532 +334569,191.14,71.671 +334570,189.42,72.597 +334571,187.65,73.531 +334572,185.81,74.471 +334573,189.86,71.69 +334574,188.12,72.589 +334575,186.32,73.496 +334576,184.45,74.41 +334577,188.59,71.71 +334578,186.81,72.582 +334579,184.98,73.461 +334580,183.08,74.348 +334581,187.31,71.731 +334582,185.51,72.574 +334583,183.65,73.425 +334584,181.72,74.285 +334585,186.03,71.752 +334586,184.2,72.566 +334587,182.31,73.389 +334588,180.35,74.221 +334589,184.75,71.774 +334590,182.9,72.559 +334591,180.98,73.353 +334592,178.99,74.156 +334593,183.47,71.797 +334594,181.59,72.552 +334595,179.65,73.317 +334596,177.63,74.091 +334597,182.19,71.82 +334598,180.29,72.546 +334599,178.32,73.281 +334600,176.27,74.026 +334601,180.91,71.844 +334602,178.98,72.539 +334603,176.99,73.244 +334604,174.92,73.959 +334605,179.62,71.868 +334606,177.67,72.533 +334607,175.66,73.207 +334608,173.56,73.893 +334609,178.33,71.893 +334610,176.36,72.527 +334611,174.33,73.17 +334612,172.21,73.825 +334613,177.04,71.918 +334614,175.06,72.521 +334615,173,73.133 +334616,170.85,73.757 +334617,175.75,71.944 +334618,173.75,72.515 +334619,171.67,73.096 +334620,169.5,73.689 +334621,174.46,71.97 +334622,172.44,72.509 +334623,170.34,73.059 +334624,168.15,73.62 +334625,173.17,71.997 +334626,171.13,72.503 +334627,169.01,73.021 +334628,166.81,73.55 +334629,171.87,72.024 +334630,169.82,72.498 +334631,167.68,72.983 +334632,165.46,73.48 +334633,170.58,72.052 +334634,168.51,72.493 +334635,166.36,72.945 +334636,164.12,73.41 +334637,169.28,72.079 +334638,167.19,72.488 +334639,165.03,72.907 +334640,162.77,73.339 +334641,167.98,72.107 +334642,165.88,72.483 +334643,163.7,72.869 +334644,161.43,73.268 +334645,166.68,72.136 +334646,164.57,72.478 +334647,162.38,72.831 +334648,160.09,73.197 +334649,165.38,72.165 +334650,163.26,72.473 +334651,161.05,72.793 +334652,158.76,73.125 +334653,164.07,72.194 +334654,161.94,72.468 +334655,159.73,72.754 +334656,157.42,73.054 +334657,162.77,72.223 +334658,160.63,72.463 +334659,158.41,72.716 +334660,156.09,72.981 +334661,161.46,72.252 +334662,159.31,72.459 +334663,157.08,72.677 +334664,154.75,72.909 +334665,160.15,72.281 +334666,158,72.454 +334667,155.76,72.639 +334668,153.42,72.836 +334669,158.84,72.311 +334670,156.68,72.45 +334671,154.44,72.6 +334672,152.09,72.764 +334673,157.53,72.341 +334674,155.37,72.445 +334675,153.12,72.561 +334676,150.77,72.691 +334677,156.21,72.371 +334678,154.05,72.441 +334679,151.8,72.523 +334680,149.44,72.618 +334681,154.9,72.4 +334682,152.73,72.436 +334683,150.48,72.484 +334684,148.12,72.545 +334685,153.58,72.43 +334686,151.41,72.432 +334687,149.16,72.445 +334688,146.8,72.471 +334689,152.26,72.46 +334690,150.1,72.427 +334691,147.84,72.406 +334692,145.48,72.398 +334693,150.94,72.49 +334694,148.78,72.423 +334695,146.52,72.367 +334696,144.16,72.325 +334697,149.62,72.519 +334698,147.46,72.419 +334699,145.2,72.329 +334700,142.84,72.252 +334701,148.3,72.549 +334702,146.14,72.414 +334703,143.89,72.29 +334704,141.53,72.179 +334705,146.97,72.579 +334706,144.82,72.41 +334707,142.57,72.251 +334708,140.22,72.105 +334709,145.64,72.608 +334710,143.49,72.405 +334711,141.25,72.213 +334712,138.91,72.032 +334713,144.31,72.637 +334714,142.17,72.4 +334715,139.94,72.174 +334716,137.6,71.96 +334717,142.98,72.666 +334718,140.85,72.396 +334719,138.62,72.135 +334720,136.29,71.887 +334721,141.65,72.695 +334722,139.53,72.391 +334723,137.31,72.097 +334724,134.99,71.814 +334725,140.32,72.723 +334726,138.2,72.386 +334727,136,72.058 +334728,133.68,71.742 +334729,138.98,72.752 +334730,136.88,72.381 +334731,134.68,72.02 +334732,132.38,71.67 +334733,137.65,72.779 +334734,135.55,72.376 +334735,133.37,71.982 +334736,131.08,71.598 +334737,136.31,72.807 +334738,134.23,72.371 +334739,132.06,71.944 +334740,129.78,71.527 +334741,134.97,72.834 +334742,132.9,72.366 +334743,130.75,71.906 +334744,128.49,71.456 +334745,133.63,72.861 +334746,131.58,72.361 +334747,129.44,71.868 +334748,127.19,71.385 +334749,132.28,72.887 +334750,130.25,72.355 +334751,128.13,71.83 +334752,125.9,71.315 +334753,130.94,72.913 +334754,128.92,72.349 +334755,126.82,71.792 +334756,124.61,71.245 +334757,129.59,72.939 +334758,127.6,72.344 +334759,125.51,71.755 +334760,123.32,71.175 +334761,128.24,72.964 +334762,126.27,72.338 +334763,124.2,71.718 +334764,122.03,71.106 +334765,126.89,72.989 +334766,124.94,72.332 +334767,122.89,71.68 +334768,120.75,71.037 +334769,125.54,73.013 +334770,123.61,72.325 +334771,121.59,71.644 +334772,119.46,70.969 +334773,124.19,73.036 +334774,122.28,72.319 +334775,120.28,71.607 +334776,118.18,70.902 +334777,122.84,73.059 +334778,120.95,72.312 +334779,118.97,71.57 +334780,116.9,70.835 +334781,121.48,73.081 +334782,119.62,72.305 +334783,117.67,71.534 +334784,115.62,70.768 +334785,120.13,73.103 +334786,118.29,72.298 +334787,116.36,71.497 +334788,114.34,70.703 +334789,118.77,73.124 +334790,116.96,72.291 +334791,115.06,71.461 +334792,113.07,70.638 +334793,117.41,73.144 +334794,115.62,72.283 +334795,113.75,71.426 +334796,111.79,70.573 +334797,116.05,73.163 +334798,114.29,72.276 +334799,112.45,71.39 +334800,110.52,70.509 +334801,114.69,73.182 +334802,112.96,72.268 +334803,111.15,71.355 +334804,109.25,70.446 +334805,113.32,73.2 +334806,111.63,72.259 +334807,109.85,71.32 +334808,107.98,70.384 +334809,111.96,73.218 +334810,110.29,72.251 +334811,108.54,71.285 +334812,106.71,70.322 +334813,110.59,73.234 +334814,108.96,72.242 +334815,107.24,71.25 +334816,105.44,70.261 +334817,109.22,73.25 +334818,107.62,72.233 +334819,105.94,71.216 +334820,104.17,70.201 +334821,107.86,73.265 +334822,106.29,72.224 +334823,104.64,71.182 +334824,102.91,70.142 +334825,106.49,73.279 +334826,104.95,72.214 +334827,103.34,71.148 +334828,101.65,70.084 +334829,105.11,73.292 +334830,103.62,72.204 +334831,102.04,71.115 +334832,100.38,70.026 +334833,103.74,73.305 +334834,102.28,72.194 +334835,100.74,71.082 +334836,99.124,69.97 +334837,102.37,73.316 +334838,100.94,72.184 +334839,99.443,71.049 +334840,97.864,69.914 +334841,100.99,73.327 +334842,99.605,72.173 +334843,98.144,71.016 +334844,96.606,69.859 +334845,99.619,73.337 +334846,98.268,72.162 +334847,96.846,70.984 +334848,95.349,69.805 +334849,98.243,73.345 +334850,96.93,72.15 +334851,95.549,70.952 +334852,94.093,69.752 +334853,96.865,73.353 +334854,95.592,72.139 +334855,94.251,70.921 +334856,92.838,69.7 +334857,95.486,73.36 +334858,94.253,72.127 +334859,92.954,70.889 +334860,91.585,69.649 +334861,94.106,73.366 +334862,92.914,72.114 +334863,91.658,70.858 +334864,90.332,69.6 +334865,92.726,73.37 +334866,91.575,72.102 +334867,90.362,70.828 +334868,89.08,69.551 +334869,91.344,73.374 +334870,90.236,72.088 +334871,89.066,70.797 +334872,87.83,69.503 +334873,89.962,73.377 +334874,88.896,72.075 +334875,87.77,70.768 +334876,86.58,69.456 +334877,88.578,73.378 +334878,87.556,72.061 +334879,86.475,70.738 +334880,85.331,69.41 +334881,87.194,73.379 +334882,86.215,72.047 +334883,85.18,70.709 +334884,84.083,69.366 +334885,85.809,73.379 +334886,84.875,72.033 +334887,83.885,70.68 +334888,82.836,69.322 +334889,84.423,73.377 +334890,83.534,72.018 +334891,82.591,70.651 +334892,81.59,69.28 +334893,83.036,73.375 +334894,82.193,72.003 +334895,81.297,70.623 +334896,80.344,69.238 +334897,81.649,73.371 +334898,80.852,71.987 +334899,80.003,70.596 +334900,79.099,69.198 +334901,80.261,73.366 +334902,79.51,71.971 +334903,78.709,70.568 +334904,77.855,69.159 +334905,78.872,73.36 +334906,78.169,71.955 +334907,77.416,70.541 +334908,76.611,69.121 +334909,77.483,73.353 +334910,76.827,71.938 +334911,76.123,70.515 +334912,75.368,69.084 +334913,76.093,73.345 +334914,75.485,71.921 +334915,74.83,70.488 +334916,74.126,69.049 +334917,74.703,73.335 +334918,74.142,71.903 +334919,73.537,70.463 +334920,72.884,69.014 +334921,73.312,73.325 +334922,72.8,71.886 +334923,72.244,70.437 +334924,71.643,68.981 +334925,71.92,73.313 +334926,71.457,71.867 +334927,70.952,70.412 +334928,70.402,68.949 +334929,70.528,73.301 +334930,70.115,71.849 +334931,69.66,70.387 +334932,69.161,68.918 +334933,69.136,73.287 +334934,68.772,71.83 +334935,68.368,70.363 +334936,67.921,68.889 +334937,67.743,73.271 +334938,67.429,71.81 +334939,67.075,70.339 +334940,66.681,68.86 +334941,66.35,73.255 +334942,66.086,71.79 +334943,65.784,70.316 +334944,65.441,68.833 +334945,64.957,73.238 +334946,64.743,71.77 +334947,64.492,70.293 +334948,64.202,68.807 +334949,63.564,73.219 +334950,63.4,71.749 +334951,63.2,70.27 +334952,62.962,68.782 +334953,62.17,73.199 +334954,62.057,71.728 +334955,61.908,70.248 +334956,61.723,68.759 +334957,60.776,73.178 +334958,60.714,71.707 +334959,60.617,70.226 +334960,60.484,68.736 +334961,59.381,73.156 +334962,59.37,71.685 +334963,59.325,70.204 +334964,59.245,68.715 +334965,57.987,73.133 +334966,58.027,71.663 +334967,58.034,70.183 +334968,58.006,68.695 +334969,56.593,73.108 +334970,56.684,71.64 +334971,56.742,70.163 +334972,56.767,68.677 +334973,55.198,73.082 +334974,55.341,71.617 +334975,55.451,70.142 +334976,55.528,68.659 +334977,53.804,73.055 +334978,53.997,71.594 +334979,54.159,70.122 +334980,54.289,68.643 +334981,52.409,73.027 +334982,52.654,71.57 +334983,52.868,70.103 +334984,53.05,68.628 +334985,51.015,72.998 +334986,51.311,71.546 +334987,51.576,70.084 +334988,51.81,68.614 +334989,49.621,72.968 +334990,49.968,71.521 +334991,50.284,70.065 +334992,50.571,68.601 +334993,48.227,72.936 +334994,48.625,71.496 +334995,48.993,70.047 +334996,49.331,68.59 +334997,46.833,72.903 +334998,47.282,71.471 +334999,47.701,70.029 +335000,48.09,68.58 +335001,45.439,72.87 +335002,45.939,71.445 +335003,46.409,70.011 +335004,46.85,68.57 +335005,44.045,72.835 +335006,44.596,71.419 +335007,45.117,69.994 +335008,45.609,68.563 +335009,42.652,72.798 +335010,43.254,71.392 +335011,43.825,69.977 +335012,44.367,68.556 +335013,41.259,72.761 +335014,41.911,71.365 +335015,42.533,69.961 +335016,43.125,68.55 +335017,39.867,72.723 +335018,40.569,71.338 +335019,41.241,69.945 +335020,41.883,68.546 +335021,38.475,72.683 +335022,39.227,71.31 +335023,39.948,69.929 +335024,40.64,68.543 +335025,37.083,72.642 +335026,37.885,71.282 +335027,38.656,69.914 +335028,39.396,68.54 +335029,35.692,72.601 +335030,36.543,71.253 +335031,37.363,69.899 +335032,38.152,68.539 +335033,34.301,72.558 +335034,35.202,71.225 +335035,36.07,69.885 +335036,36.908,68.539 +335037,32.911,72.514 +335038,33.86,71.195 +335039,34.777,69.871 +335040,35.662,68.541 +335041,31.522,72.469 +335042,32.519,71.166 +335043,33.483,69.857 +335044,34.416,68.543 +335045,30.133,72.423 +335046,31.178,71.136 +335047,32.19,69.843 +335048,33.169,68.546 +335049,28.744,72.376 +335050,29.838,71.106 +335051,30.896,69.83 +335052,31.921,68.551 +335053,27.357,72.328 +335054,28.498,71.075 +335055,29.602,69.817 +335056,30.672,68.556 +335057,25.97,72.278 +335058,27.157,71.044 +335059,28.307,69.805 +335060,29.423,68.563 +335061,24.584,72.228 +335062,25.818,71.013 +335063,27.013,69.793 +335064,28.173,68.57 +335065,23.199,72.177 +335066,24.478,70.981 +335067,25.718,69.781 +335068,26.921,68.578 +335069,21.815,72.125 +335070,23.139,70.949 +335071,24.422,69.77 +335072,25.669,68.588 +335073,20.431,72.072 +335074,21.8,70.917 +335075,23.127,69.759 +335076,24.416,68.598 +335077,19.049,72.018 +335078,20.462,70.884 +335079,21.831,69.748 +335080,23.161,68.61 +335081,17.667,71.963 +335082,19.124,70.851 +335083,20.535,69.737 +335084,21.906,68.622 +335085,16.287,71.907 +335086,17.786,70.818 +335087,19.238,69.727 +335088,20.65,68.635 +335089,14.907,71.85 +335090,16.448,70.785 +335091,17.941,69.717 +335092,19.392,68.649 +335093,13.529,71.793 +335094,15.111,70.751 +335095,16.644,69.708 +335096,18.133,68.664 +335097,12.152,71.734 +335098,13.775,70.717 +335099,15.346,69.698 +335100,16.873,68.68 +335101,10.776,71.675 +335102,12.438,70.682 +335103,14.048,69.689 +335104,15.612,68.696 +335105,9.4005,71.615 +335106,11.102,70.648 +335107,12.75,69.68 +335108,14.35,68.714 +335109,8.0267,71.554 +335110,9.767,70.613 +335111,11.451,69.672 +335112,13.086,68.732 +335113,6.6541,71.492 +335114,8.432,70.578 +335115,10.152,69.663 +335116,11.821,68.751 +335117,5.2827,71.43 +335118,7.0975,70.542 +335119,8.8523,69.655 +335120,10.555,68.771 +335121,3.9127,71.367 +335122,5.7634,70.506 +335123,7.5523,69.648 +335124,9.2876,68.791 +335125,2.544,71.303 +335126,4.4297,70.47 +335127,6.2518,69.64 +335128,8.0188,68.812 +335129,1.1766,71.238 +335130,3.0965,70.434 +335131,4.9509,69.633 +335132,6.7485,68.834 +335133,359.81,71.173 +335134,1.7638,70.398 +335135,3.6495,69.625 +335136,5.4768,68.856 +335137,358.45,71.107 +335138,0.43159,70.361 +335139,2.3477,69.618 +335140,4.2037,68.879 +335141,357.08,71.04 +335142,359.1,70.324 +335143,1.0454,69.612 +335144,2.9292,68.903 +335145,355.72,70.973 +335146,357.77,70.287 +335147,359.74,69.605 +335148,1.6532,68.927 +335149,354.36,70.906 +335150,356.44,70.25 +335151,358.44,69.599 +335152,0.37573,68.952 +335153,353,70.837 +335154,355.11,70.213 +335155,357.14,69.593 +335156,359.1,68.977 +335157,351.65,70.768 +335158,353.78,70.175 +335159,355.83,69.586 +335160,357.82,69.003 +335161,350.29,70.699 +335162,352.45,70.138 +335163,354.53,69.581 +335164,356.53,69.029 +335165,348.94,70.629 +335166,351.12,70.1 +335167,353.22,69.575 +335168,355.25,69.055 +335169,347.58,70.559 +335170,349.79,70.062 +335171,351.92,69.569 +335172,353.97,69.082 +335173,346.23,70.488 +335174,348.46,70.023 +335175,350.61,69.564 +335176,352.68,69.11 +335177,344.88,70.417 +335178,347.14,69.985 +335179,349.3,69.558 +335180,351.39,69.138 +335181,343.54,70.346 +335182,345.81,69.947 +335183,348,69.553 +335184,350.1,69.166 +335185,342.19,70.274 +335186,344.49,69.908 +335187,346.69,69.548 +335188,348.81,69.194 +335189,340.85,70.202 +335190,343.16,69.869 +335191,345.38,69.543 +335192,347.52,69.223 +335193,339.5,70.13 +335194,341.84,69.831 +335195,344.07,69.538 +335196,346.22,69.252 +335197,338.16,70.057 +335198,340.51,69.792 +335199,342.76,69.533 +335200,344.92,69.281 +335201,336.83,69.984 +335202,339.19,69.753 +335203,341.45,69.528 +335204,343.63,69.31 +335205,335.49,69.911 +335206,337.87,69.714 +335207,340.14,69.523 +335208,342.33,69.34 +335209,334.15,69.837 +335210,336.54,69.675 +335211,338.83,69.519 +335212,341.03,69.369 +335213,332.82,69.764 +335214,335.22,69.635 +335215,337.52,69.514 +335216,339.72,69.399 +335217,331.49,69.69 +335218,333.9,69.596 +335219,336.2,69.509 +335220,338.42,69.429 +335221,330.16,69.616 +335222,332.58,69.557 +335223,334.89,69.505 +335224,337.11,69.459 +335225,328.83,69.542 +335226,331.26,69.518 +335227,333.58,69.5 +335228,335.8,69.489 +335229,327.5,69.469 +335230,329.94,69.479 +335231,332.26,69.495 +335232,334.49,69.519 +335233,326.18,69.395 +335234,328.62,69.439 +335235,330.95,69.491 +335236,333.18,69.549 +335237,324.86,69.321 +335238,327.3,69.4 +335239,329.64,69.486 +335240,331.87,69.578 +335241,323.54,69.247 +335242,325.99,69.361 +335243,328.32,69.481 +335244,330.55,69.608 +335245,322.22,69.173 +335246,324.67,69.322 +335247,327,69.477 +335248,329.24,69.638 +335249,320.9,69.099 +335250,323.35,69.282 +335251,325.69,69.472 +335252,327.92,69.667 +335253,319.59,69.026 +335254,322.04,69.243 +335255,324.37,69.467 +335256,326.6,69.697 +335257,318.28,68.952 +335258,320.72,69.204 +335259,323.05,69.462 +335260,325.28,69.726 +335261,316.96,68.879 +335262,319.41,69.165 +335263,321.73,69.457 +335264,323.95,69.755 +335265,315.66,68.806 +335266,318.09,69.126 +335267,320.41,69.452 +335268,322.63,69.783 +335269,314.35,68.733 +335270,316.78,69.087 +335271,319.09,69.447 +335272,321.3,69.812 +335273,313.04,68.66 +335274,315.47,69.048 +335275,317.77,69.442 +335276,319.97,69.84 +335277,311.74,68.588 +335278,314.16,69.009 +335279,316.45,69.437 +335280,318.64,69.868 +335281,310.44,68.516 +335282,312.85,68.971 +335283,315.13,69.431 +335284,317.31,69.895 +335285,309.14,68.444 +335286,311.54,68.932 +335287,313.81,69.426 +335288,315.98,69.922 +335289,307.84,68.372 +335290,310.23,68.894 +335291,312.49,69.42 +335292,314.64,69.949 +335293,306.54,68.301 +335294,308.92,68.856 +335295,311.16,69.414 +335296,313.31,69.975 +335297,305.25,68.231 +335298,307.61,68.817 +335299,309.84,69.408 +335300,311.97,70.001 +335301,303.96,68.161 +335302,306.3,68.779 +335303,308.52,69.402 +335304,310.63,70.026 +335305,302.67,68.091 +335306,304.99,68.742 +335307,307.19,69.395 +335308,309.29,70.051 +335309,301.38,68.022 +335310,303.68,68.704 +335311,305.87,69.389 +335312,307.94,70.075 +335313,300.09,67.953 +335314,302.38,68.666 +335315,304.54,69.382 +335316,306.6,70.099 +335317,298.81,67.885 +335318,301.07,68.629 +335319,303.22,69.375 +335320,305.25,70.122 +335321,297.52,67.818 +335322,299.77,68.592 +335323,301.89,69.368 +335324,303.91,70.144 +335325,296.24,67.751 +335326,298.46,68.555 +335327,300.56,69.361 +335328,302.56,70.166 +335329,294.96,67.685 +335330,297.16,68.518 +335331,299.23,69.353 +335332,301.21,70.187 +335333,293.68,67.619 +335334,295.85,68.482 +335335,297.91,69.345 +335336,299.85,70.208 +335337,292.41,67.554 +335338,294.55,68.446 +335339,296.58,69.337 +335340,298.5,70.227 +335341,291.13,67.49 +335342,293.25,68.409 +335343,295.25,69.329 +335344,297.14,70.246 +335345,289.86,67.426 +335346,291.95,68.374 +335347,293.92,69.32 +335348,295.79,70.265 +335349,288.59,67.363 +335350,290.64,68.338 +335351,292.59,69.312 +335352,294.43,70.282 +335353,287.32,67.301 +335354,289.34,68.303 +335355,291.26,69.302 +335356,293.07,70.299 +335357,286.05,67.24 +335358,288.04,68.268 +335359,289.93,69.293 +335360,291.71,70.315 +335361,284.78,67.18 +335362,286.74,68.233 +335363,288.59,69.284 +335364,290.35,70.33 +335365,283.52,67.12 +335366,285.44,68.198 +335367,287.26,69.274 +335368,288.98,70.344 +335369,282.25,67.061 +335370,284.15,68.164 +335371,285.93,69.263 +335372,287.62,70.358 +335373,280.99,67.004 +335374,282.85,68.13 +335375,284.6,69.253 +335376,286.25,70.37 +335377,279.73,66.947 +335378,281.55,68.096 +335379,283.26,69.242 +335380,284.89,70.382 +335381,278.47,66.891 +335382,280.25,68.063 +335383,281.93,69.231 +335384,283.52,70.393 +335385,277.21,66.835 +335386,278.95,68.03 +335387,280.6,69.22 +335388,282.15,70.402 +335389,275.96,66.781 +335390,277.66,67.997 +335391,279.26,69.208 +335392,280.78,70.411 +335393,274.7,66.728 +335394,276.36,67.965 +335395,277.93,69.196 +335396,279.4,70.419 +335397,273.45,66.676 +335398,275.07,67.933 +335399,276.59,69.183 +335400,278.03,70.426 +335401,272.19,66.625 +335402,273.77,67.901 +335403,275.25,69.17 +335404,276.66,70.432 +335405,270.94,66.574 +335406,272.48,67.869 +335407,273.92,69.157 +335408,275.28,70.437 +335409,269.69,66.525 +335410,271.18,67.838 +335411,272.58,69.144 +335412,273.9,70.44 +335413,268.44,66.477 +335414,269.89,67.808 +335415,271.25,69.13 +335416,272.52,70.443 +335417,267.19,66.43 +335418,268.59,67.777 +335419,269.91,69.116 +335420,271.15,70.445 +335421,265.95,66.384 +335422,267.3,67.747 +335423,268.57,69.101 +335424,269.77,70.445 +335425,264.7,66.339 +335426,266.01,67.717 +335427,267.23,69.086 +335428,268.39,70.445 +335429,263.46,66.296 +335430,264.71,67.688 +335431,265.89,69.071 +335432,267,70.443 +335433,262.21,66.253 +335434,263.42,67.659 +335435,264.56,69.055 +335436,265.62,70.441 +335437,260.97,66.211 +335438,262.13,67.63 +335439,263.22,69.039 +335440,264.24,70.437 +335441,259.73,66.171 +335442,260.84,67.602 +335443,261.88,69.023 +335444,262.85,70.432 +335445,258.48,66.132 +335446,259.55,67.574 +335447,260.54,69.006 +335448,261.47,70.426 +335449,257.24,66.094 +335450,258.26,67.547 +335451,259.2,68.989 +335452,260.08,70.419 +335453,256,66.057 +335454,256.97,67.52 +335455,257.86,68.971 +335456,258.69,70.41 +335457,254.76,66.021 +335458,255.67,67.493 +335459,256.52,68.953 +335460,257.31,70.401 +335461,253.53,65.987 +335462,254.38,67.467 +335463,255.18,68.935 +335464,255.92,70.39 +335465,252.29,65.954 +335466,253.09,67.441 +335467,253.84,68.916 +335468,254.53,70.378 +335469,251.05,65.921 +335470,251.8,67.415 +335471,252.5,68.897 +335472,253.14,70.365 +335473,249.81,65.891 +335474,250.51,67.39 +335475,251.16,68.877 +335476,251.75,70.351 +335477,248.58,65.861 +335478,249.22,67.365 +335479,249.82,68.857 +335480,250.36,70.336 +335481,247.34,65.832 +335482,247.94,67.341 +335483,248.48,68.837 +335484,248.97,70.319 +335485,246.11,65.805 +335486,246.65,67.317 +335487,247.14,68.816 +335488,247.58,70.301 +335489,244.87,65.779 +335490,245.36,67.293 +335491,245.79,68.795 +335492,246.19,70.282 +335493,243.64,65.754 +335494,244.07,67.27 +335495,244.45,68.773 +335496,244.79,70.262 +335497,242.4,65.731 +335498,242.78,67.247 +335499,243.11,68.751 +335500,243.4,70.241 +335501,241.17,65.709 +335502,241.49,67.225 +335503,241.77,68.728 +335504,242.01,70.218 +335505,239.93,65.688 +335506,240.2,67.203 +335507,240.43,68.705 +335508,240.62,70.194 +335509,238.7,65.668 +335510,238.91,67.181 +335511,239.09,68.682 +335512,239.22,70.169 +335513,237.47,65.649 +335514,237.62,67.16 +335515,237.75,68.658 +335516,237.83,70.143 +335517,236.23,65.632 +335518,236.34,67.139 +335519,236.4,68.634 +335520,236.43,70.115 +335521,235,65.616 +335522,235.05,67.119 +335523,235.06,68.61 +335524,235.04,70.087 +335525,233.76,65.601 +335526,233.76,67.099 +335527,233.72,68.585 +335528,233.65,70.057 +335529,232.53,65.587 +335530,232.47,67.079 +335531,232.38,68.559 +335532,232.25,70.026 +335533,231.3,65.574 +335534,231.18,67.06 +335535,231.04,68.534 +335536,230.86,69.994 +335537,230.06,65.563 +335538,229.89,67.041 +335539,229.69,68.507 +335540,229.46,69.96 +335541,228.83,65.553 +335542,228.61,67.023 +335543,228.35,68.481 +335544,228.07,69.925 +335545,227.59,65.544 +335546,227.32,67.005 +335547,227.01,68.454 +335548,226.68,69.89 +335549,226.36,65.536 +335550,226.03,66.987 +335551,225.67,68.426 +335552,225.28,69.853 +335553,225.12,65.53 +335554,224.74,66.97 +335555,224.33,68.399 +335556,223.89,69.815 +335557,223.89,65.524 +335558,223.45,66.953 +335559,222.99,68.37 +335560,222.49,69.775 +335561,222.65,65.52 +335562,222.16,66.936 +335563,221.65,68.342 +335564,221.1,69.735 +335565,221.42,65.517 +335566,220.87,66.92 +335567,220.3,68.313 +335568,219.71,69.693 +335569,220.18,65.515 +335570,219.59,66.905 +335571,218.96,68.283 +335572,218.31,69.65 +335573,218.94,65.514 +335574,218.3,66.889 +335575,217.62,68.254 +335576,216.92,69.607 +335577,217.71,65.515 +335578,217.01,66.874 +335579,216.28,68.224 +335580,215.53,69.562 +335581,216.47,65.516 +335582,215.72,66.859 +335583,214.94,68.193 +335584,214.14,69.516 +335585,215.23,65.519 +335586,214.43,66.845 +335587,213.6,68.162 +335588,212.75,69.469 +335589,213.99,65.522 +335590,213.14,66.831 +335591,212.26,68.131 +335592,211.36,69.42 +335593,212.75,65.527 +335594,211.85,66.817 +335595,210.92,68.099 +335596,209.97,69.371 +335597,211.51,65.533 +335598,210.56,66.804 +335599,209.58,68.067 +335600,208.58,69.321 +335601,210.26,65.539 +335602,209.27,66.791 +335603,208.24,68.035 +335604,207.19,69.269 +335605,209.02,65.547 +335606,207.98,66.779 +335607,206.9,68.002 +335608,205.8,69.217 +335609,207.78,65.556 +335610,206.69,66.766 +335611,205.56,67.969 +335612,204.41,69.164 +335613,206.53,65.566 +335614,205.39,66.754 +335615,204.23,67.936 +335616,203.02,69.109 +335617,205.29,65.576 +335618,204.1,66.743 +335619,202.89,67.902 +335620,201.64,69.054 +335621,204.04,65.588 +335622,202.81,66.731 +335623,201.55,67.868 +335624,200.25,68.997 +335625,202.79,65.601 +335626,201.52,66.72 +335627,200.21,67.834 +335628,198.87,68.94 +335629,201.54,65.614 +335630,200.23,66.71 +335631,198.87,67.799 +335632,197.48,68.882 +335633,200.3,65.628 +335634,198.93,66.699 +335635,197.54,67.764 +335636,196.1,68.823 +335637,199.04,65.644 +335638,197.64,66.689 +335639,196.2,67.729 +335640,194.72,68.763 +335641,197.79,65.66 +335642,196.35,66.679 +335643,194.86,67.694 +335644,193.34,68.702 +335645,196.54,65.677 +335646,195.05,66.669 +335647,193.53,67.658 +335648,191.96,68.64 +335649,195.29,65.694 +335650,193.76,66.66 +335651,192.19,67.622 +335652,190.58,68.578 +335653,194.03,65.713 +335654,192.46,66.651 +335655,190.86,67.585 +335656,189.2,68.514 +335657,192.77,65.732 +335658,191.17,66.642 +335659,189.52,67.549 +335660,187.83,68.45 +335661,191.52,65.752 +335662,189.87,66.633 +335663,188.19,67.512 +335664,186.45,68.385 +335665,190.26,65.773 +335666,188.58,66.625 +335667,186.85,67.474 +335668,185.08,68.32 +335669,189,65.794 +335670,187.28,66.617 +335671,185.52,67.437 +335672,183.71,68.253 +335673,187.73,65.816 +335674,185.99,66.609 +335675,184.19,67.399 +335676,182.33,68.186 +335677,186.47,65.839 +335678,184.69,66.601 +335679,182.86,67.361 +335680,180.96,68.119 +335681,185.2,65.862 +335682,183.39,66.594 +335683,181.52,67.323 +335684,179.59,68.05 +335685,183.94,65.886 +335686,182.09,66.586 +335687,180.19,67.285 +335688,178.23,67.981 +335689,182.67,65.911 +335690,180.79,66.579 +335691,178.86,67.246 +335692,176.86,67.911 +335693,181.4,65.936 +335694,179.5,66.572 +335695,177.53,67.208 +335696,175.5,67.841 +335697,180.13,65.961 +335698,178.2,66.565 +335699,176.2,67.169 +335700,174.13,67.77 +335701,178.86,65.987 +335702,176.9,66.558 +335703,174.87,67.13 +335704,172.77,67.699 +335705,177.59,66.013 +335706,175.6,66.552 +335707,173.54,67.09 +335708,171.41,67.627 +335709,176.31,66.04 +335710,174.29,66.546 +335711,172.21,67.051 +335712,170.05,67.555 +335713,175.03,66.068 +335714,172.99,66.539 +335715,170.88,67.011 +335716,168.69,67.482 +335717,173.75,66.095 +335718,171.69,66.533 +335719,169.56,66.971 +335720,167.34,67.409 +335721,172.47,66.123 +335722,170.39,66.527 +335723,168.23,66.931 +335724,165.99,67.335 +335725,171.19,66.152 +335726,169.09,66.521 +335727,166.9,66.891 +335728,164.63,67.261 +335729,169.91,66.18 +335730,167.78,66.515 +335731,165.58,66.851 +335732,163.28,67.187 +335733,168.63,66.209 +335734,166.48,66.51 +335735,164.25,66.811 +335736,161.93,67.112 +335737,167.34,66.238 +335738,165.17,66.504 +335739,162.93,66.771 +335740,160.59,67.037 +335741,166.05,66.267 +335742,163.87,66.498 +335743,161.6,66.73 +335744,159.24,66.962 +335745,164.76,66.297 +335746,162.56,66.493 +335747,160.28,66.69 +335748,157.9,66.887 +335749,163.47,66.327 +335750,161.26,66.487 +335751,158.96,66.649 +335752,156.55,66.811 +335753,162.18,66.356 +335754,159.95,66.482 +335755,157.64,66.608 +335756,155.21,66.735 +335757,160.88,66.386 +335758,158.64,66.476 +335759,156.31,66.567 +335760,153.88,66.659 +335761,159.58,66.416 +335762,157.34,66.471 +335763,154.99,66.527 +335764,152.54,66.583 +335765,158.29,66.446 +335766,156.03,66.466 +335767,153.67,66.486 +335768,151.2,66.506 +335769,156.99,66.476 +335770,154.72,66.46 +335771,152.35,66.445 +335772,149.87,66.43 +335773,155.68,66.506 +335774,153.41,66.455 +335775,151.03,66.404 +335776,148.54,66.354 +335777,154.38,66.536 +335778,152.1,66.449 +335779,149.71,66.363 +335780,147.21,66.277 +335781,153.08,66.566 +335782,150.79,66.444 +335783,148.4,66.322 +335784,145.88,66.201 +335785,151.77,66.596 +335786,149.48,66.438 +335787,147.08,66.281 +335788,144.56,66.124 +335789,150.46,66.625 +335790,148.16,66.433 +335791,145.76,66.241 +335792,143.24,66.048 +335793,149.15,66.655 +335794,146.85,66.427 +335795,144.45,66.2 +335796,141.91,65.972 +335797,147.84,66.684 +335798,145.54,66.422 +335799,143.13,66.159 +335800,140.59,65.896 +335801,146.52,66.713 +335802,144.23,66.416 +335803,141.82,66.118 +335804,139.28,65.82 +335805,145.21,66.742 +335806,142.91,66.41 +335807,140.5,66.077 +335808,137.96,65.744 +335809,143.89,66.77 +335810,141.6,66.404 +335811,139.19,66.037 +335812,136.65,65.669 +335813,142.57,66.798 +335814,140.28,66.398 +335815,137.88,65.996 +335816,135.34,65.593 +335817,141.25,66.826 +335818,138.97,66.392 +335819,136.56,65.956 +335820,134.03,65.518 +335821,139.93,66.854 +335822,137.65,66.386 +335823,135.25,65.915 +335824,132.72,65.444 +335825,138.6,66.881 +335826,136.33,66.379 +335827,133.94,65.875 +335828,131.41,65.369 +335829,137.28,66.908 +335830,135.01,66.373 +335831,132.63,65.835 +335832,130.11,65.295 +335833,135.95,66.934 +335834,133.7,66.366 +335835,131.32,65.795 +335836,128.81,65.222 +335837,134.62,66.96 +335838,132.38,66.359 +335839,130.01,65.755 +335840,127.51,65.148 +335841,133.29,66.985 +335842,131.06,66.352 +335843,128.7,65.715 +335844,126.21,65.075 +335845,131.96,67.01 +335846,129.74,66.345 +335847,127.4,65.676 +335848,124.91,65.003 +335849,130.62,67.034 +335850,128.42,66.338 +335851,126.09,65.636 +335852,123.62,64.931 +335853,129.29,67.058 +335854,127.1,66.33 +335855,124.78,65.597 +335856,122.33,64.86 +335857,127.95,67.081 +335858,125.77,66.322 +335859,123.48,65.558 +335860,121.04,64.789 +335861,126.61,67.104 +335862,124.45,66.314 +335863,122.17,65.519 +335864,119.75,64.719 +335865,125.27,67.126 +335866,123.13,66.306 +335867,120.87,65.48 +335868,118.46,64.649 +335869,123.93,67.147 +335870,121.81,66.298 +335871,119.56,65.442 +335872,117.18,64.58 +335873,122.58,67.168 +335874,120.48,66.289 +335875,118.26,65.404 +335876,115.89,64.512 +335877,121.24,67.187 +335878,119.16,66.28 +335879,116.96,65.365 +335880,114.61,64.444 +335881,119.89,67.206 +335882,117.83,66.271 +335883,115.65,65.328 +335884,113.33,64.377 +335885,118.54,67.225 +335886,116.51,66.261 +335887,114.35,65.29 +335888,112.06,64.311 +335889,117.19,67.242 +335890,115.18,66.252 +335891,113.05,65.253 +335892,110.78,64.246 +335893,115.84,67.259 +335894,113.86,66.242 +335895,111.75,65.215 +335896,109.51,64.181 +335897,114.48,67.275 +335898,112.53,66.231 +335899,110.45,65.179 +335900,108.24,64.117 +335901,113.13,67.29 +335902,111.2,66.221 +335903,109.15,65.142 +335904,106.97,64.054 +335905,111.77,67.304 +335906,109.87,66.21 +335907,107.85,65.106 +335908,105.7,63.991 +335909,110.41,67.318 +335910,108.54,66.199 +335911,106.56,65.069 +335912,104.43,63.93 +335913,109.06,67.33 +335914,107.22,66.187 +335915,105.26,65.034 +335916,103.17,63.869 +335917,107.7,67.342 +335918,105.89,66.176 +335919,103.96,64.998 +335920,101.9,63.81 +335921,106.33,67.352 +335922,104.56,66.164 +335923,102.66,64.963 +335924,100.64,63.751 +335925,104.97,67.362 +335926,103.23,66.151 +335927,101.37,64.928 +335928,99.381,63.693 +335929,103.61,67.37 +335930,101.9,66.138 +335931,100.07,64.894 +335932,98.122,63.637 +335933,102.24,67.378 +335934,100.56,66.125 +335935,98.778,64.859 +335936,96.865,63.581 +335937,100.87,67.385 +335938,99.232,66.112 +335939,97.483,64.825 +335940,95.609,63.526 +335941,99.504,67.39 +335942,97.9,66.098 +335943,96.189,64.792 +335944,94.355,63.472 +335945,98.134,67.395 +335946,96.568,66.084 +335947,94.895,64.758 +335948,93.102,63.419 +335949,96.764,67.398 +335950,95.235,66.069 +335951,93.602,64.726 +335952,91.851,63.368 +335953,95.392,67.401 +335954,93.902,66.054 +335955,92.309,64.693 +335956,90.601,63.317 +335957,94.018,67.402 +335958,92.568,66.039 +335959,91.017,64.661 +335960,89.353,63.268 +335961,92.644,67.402 +335962,91.234,66.024 +335963,89.725,64.629 +335964,88.105,63.219 +335965,91.269,67.402 +335966,89.9,66.007 +335967,88.434,64.597 +335968,86.859,63.172 +335969,89.892,67.4 +335970,88.565,65.991 +335971,87.143,64.566 +335972,85.614,63.126 +335973,88.515,67.396 +335974,87.23,65.974 +335975,85.852,64.535 +335976,84.371,63.081 +335977,87.136,67.392 +335978,85.894,65.957 +335979,84.562,64.505 +335980,83.128,63.037 +335981,85.757,67.387 +335982,84.559,65.939 +335983,83.272,64.475 +335984,81.887,62.994 +335985,84.377,67.38 +335986,83.223,65.921 +335987,81.983,64.445 +335988,80.646,62.952 +335989,82.995,67.372 +335990,81.886,65.903 +335991,80.694,64.416 +335992,79.407,62.912 +335993,81.613,67.363 +335994,80.55,65.884 +335995,79.405,64.387 +335996,78.169,62.873 +335997,80.23,67.353 +335998,79.213,65.865 +335999,78.116,64.359 +336000,76.931,62.835 +336001,78.846,67.342 +336002,77.876,65.845 +336003,76.828,64.33 +336004,75.695,62.798 +336005,77.461,67.329 +336006,76.538,65.825 +336007,75.54,64.303 +336008,74.459,62.763 +336009,76.076,67.315 +336010,75.201,65.805 +336011,74.253,64.275 +336012,73.224,62.728 +336013,74.69,67.3 +336014,73.863,65.784 +336015,72.965,64.249 +336016,71.99,62.695 +336017,73.303,67.284 +336018,72.525,65.762 +336019,71.678,64.222 +336020,70.757,62.664 +336021,71.915,67.266 +336022,71.186,65.741 +336023,70.392,64.196 +336024,69.524,62.633 +336025,70.527,67.248 +336026,69.848,65.718 +336027,69.105,64.17 +336028,68.292,62.604 +336029,69.138,67.228 +336030,68.509,65.696 +336031,67.819,64.145 +336032,67.061,62.576 +336033,67.749,67.206 +336034,67.17,65.673 +336035,66.532,64.12 +336036,65.83,62.549 +336037,66.359,67.184 +336038,65.831,65.649 +336039,65.247,64.096 +336040,64.6,62.524 +336041,64.969,67.16 +336042,64.492,65.625 +336043,63.961,64.071 +336044,63.37,62.499 +336045,63.578,67.135 +336046,63.153,65.601 +336047,62.675,64.048 +336048,62.14,62.476 +336049,62.187,67.109 +336050,61.813,65.576 +336051,61.39,64.025 +336052,60.911,62.455 +336053,60.795,67.081 +336054,60.474,65.551 +336055,60.104,64.002 +336056,59.682,62.434 +336057,59.403,67.052 +336058,59.134,65.525 +336059,58.819,63.979 +336060,58.454,62.415 +336061,58.011,67.022 +336062,57.794,65.499 +336063,57.534,63.957 +336064,57.225,62.397 +336065,56.618,66.991 +336066,56.455,65.473 +336067,56.249,63.936 +336068,55.997,62.38 +336069,55.225,66.959 +336070,55.115,65.446 +336071,54.964,63.914 +336072,54.769,62.365 +336073,53.832,66.925 +336074,53.775,65.419 +336075,53.679,63.894 +336076,53.541,62.351 +336077,52.439,66.89 +336078,52.435,65.391 +336079,52.394,63.873 +336080,52.313,62.338 +336081,51.046,66.854 +336082,51.095,65.363 +336083,51.109,63.853 +336084,51.085,62.326 +336085,49.652,66.816 +336086,49.756,65.334 +336087,49.825,63.833 +336088,49.857,62.316 +336089,48.259,66.778 +336090,48.416,65.305 +336091,48.54,63.814 +336092,48.629,62.307 +336093,46.865,66.738 +336094,47.076,65.275 +336095,47.255,63.795 +336096,47.401,62.299 +336097,45.472,66.697 +336098,45.736,65.245 +336099,45.97,63.777 +336100,46.173,62.292 +336101,44.078,66.654 +336102,44.396,65.215 +336103,44.685,63.759 +336104,44.944,62.286 +336105,42.685,66.611 +336106,43.057,65.184 +336107,43.401,63.741 +336108,43.715,62.282 +336109,41.292,66.566 +336110,41.717,65.153 +336111,42.116,63.724 +336112,42.486,62.279 +336113,39.899,66.52 +336114,40.378,65.122 +336115,40.831,63.707 +336116,41.256,62.277 +336117,38.506,66.473 +336118,39.039,65.09 +336119,39.545,63.69 +336120,40.026,62.276 +336121,37.114,66.425 +336122,37.699,65.058 +336123,38.26,63.674 +336124,38.796,62.276 +336125,35.721,66.376 +336126,36.36,65.025 +336127,36.975,63.658 +336128,37.565,62.278 +336129,34.329,66.325 +336130,35.021,64.992 +336131,35.689,63.643 +336132,36.334,62.28 +336133,32.938,66.274 +336134,33.683,64.958 +336135,34.404,63.628 +336136,35.101,62.284 +336137,31.547,66.221 +336138,32.344,64.925 +336139,33.118,63.613 +336140,33.869,62.289 +336141,30.156,66.168 +336142,31.006,64.89 +336143,31.832,63.599 +336144,32.635,62.294 +336145,28.766,66.113 +336146,29.668,64.856 +336147,30.546,63.585 +336148,31.401,62.301 +336149,27.376,66.057 +336150,28.33,64.821 +336151,29.259,63.571 +336152,30.166,62.309 +336153,25.987,66 +336154,26.992,64.785 +336155,27.973,63.558 +336156,28.931,62.318 +336157,24.598,65.942 +336158,25.654,64.75 +336159,26.686,63.545 +336160,27.694,62.328 +336161,23.21,65.883 +336162,24.317,64.714 +336163,25.399,63.532 +336164,26.457,62.339 +336165,21.823,65.823 +336166,22.98,64.677 +336167,24.112,63.519 +336168,25.219,62.351 +336169,20.437,65.762 +336170,21.644,64.641 +336171,22.824,63.507 +336172,23.98,62.364 +336173,19.051,65.7 +336174,20.307,64.604 +336175,21.536,63.495 +336176,22.74,62.377 +336177,17.666,65.637 +336178,18.971,64.566 +336179,20.248,63.484 +336180,21.499,62.392 +336181,16.282,65.574 +336182,17.635,64.529 +336183,18.959,63.473 +336184,20.257,62.407 +336185,14.899,65.509 +336186,16.3,64.491 +336187,17.671,63.462 +336188,19.013,62.424 +336189,13.516,65.444 +336190,14.965,64.452 +336191,16.382,63.451 +336192,17.769,62.441 +336193,12.135,65.377 +336194,13.63,64.414 +336195,15.092,63.441 +336196,16.524,62.459 +336197,10.754,65.31 +336198,12.296,64.375 +336199,13.802,63.43 +336200,15.277,62.478 +336201,9.375,65.242 +336202,10.962,64.336 +336203,12.512,63.42 +336204,14.029,62.498 +336205,7.9966,65.173 +336206,9.6286,64.296 +336207,11.222,63.411 +336208,12.78,62.518 +336209,6.6193,65.103 +336210,8.2955,64.257 +336211,9.9307,63.401 +336212,11.53,62.539 +336213,5.2432,65.033 +336214,6.9628,64.217 +336215,8.6394,63.392 +336216,10.278,62.561 +336217,3.8682,64.962 +336218,5.6305,64.177 +336219,7.3477,63.383 +336220,9.0251,62.583 +336221,2.4944,64.89 +336222,4.2986,64.136 +336223,6.0555,63.374 +336224,7.7708,62.606 +336225,1.1218,64.818 +336226,2.9673,64.095 +336227,4.763,63.366 +336228,6.5151,62.63 +336229,359.75,64.745 +336230,1.6363,64.055 +336231,3.47,63.357 +336232,5.258,62.654 +336233,358.38,64.671 +336234,0.30586,64.013 +336235,2.1766,63.349 +336236,3.9995,62.679 +336237,357.01,64.596 +336238,358.98,63.972 +336239,0.88274,63.341 +336240,2.7395,62.705 +336241,355.64,64.521 +336242,357.65,63.931 +336243,359.59,63.333 +336244,1.478,62.731 +336245,354.28,64.446 +336246,356.32,63.889 +336247,358.29,63.325 +336248,0.21509,62.757 +336249,352.91,64.37 +336250,354.99,63.847 +336251,357,63.318 +336252,358.95,62.784 +336253,351.55,64.293 +336254,353.66,63.805 +336255,355.7,63.31 +336256,357.68,62.811 +336257,350.19,64.216 +336258,352.33,63.763 +336259,354.41,63.303 +336260,356.42,62.839 +336261,348.83,64.139 +336262,351.01,63.72 +336263,353.11,63.296 +336264,355.15,62.867 +336265,347.47,64.061 +336266,349.68,63.678 +336267,351.81,63.289 +336268,353.88,62.895 +336269,346.11,63.983 +336270,348.35,63.635 +336271,350.51,63.282 +336272,352.6,62.924 +336273,344.76,63.904 +336274,347.03,63.592 +336275,349.22,63.275 +336276,351.33,62.953 +336277,343.41,63.825 +336278,345.7,63.55 +336279,347.92,63.268 +336280,350.06,62.982 +336281,342.05,63.746 +336282,344.38,63.507 +336283,346.62,63.261 +336284,348.78,63.012 +336285,340.7,63.666 +336286,343.06,63.463 +336287,345.32,63.255 +336288,347.5,63.042 +336289,339.35,63.587 +336290,341.73,63.42 +336291,344.02,63.248 +336292,346.22,63.072 +336293,338.01,63.507 +336294,340.41,63.377 +336295,342.72,63.241 +336296,344.94,63.102 +336297,336.66,63.426 +336298,339.09,63.334 +336299,341.42,63.235 +336300,343.65,63.132 +336301,335.32,63.346 +336302,337.77,63.29 +336303,340.11,63.228 +336304,342.37,63.162 +336305,333.98,63.266 +336306,336.45,63.247 +336307,338.81,63.222 +336308,341.08,63.192 +336309,332.64,63.185 +336310,335.13,63.203 +336311,337.51,63.215 +336312,339.79,63.223 +336313,331.3,63.104 +336314,333.81,63.16 +336315,336.2,63.209 +336316,338.5,63.253 +336317,329.96,63.024 +336318,332.49,63.116 +336319,334.9,63.202 +336320,337.21,63.283 +336321,328.63,62.943 +336322,331.17,63.073 +336323,333.59,63.196 +336324,335.91,63.313 +336325,327.3,62.862 +336326,329.86,63.029 +336327,332.29,63.189 +336328,334.62,63.343 +336329,325.97,62.782 +336330,328.54,62.986 +336331,330.98,63.182 +336332,333.32,63.373 +336333,324.64,62.701 +336334,327.22,62.942 +336335,329.68,63.176 +336336,332.02,63.403 +336337,323.31,62.621 +336338,325.91,62.899 +336339,328.37,63.169 +336340,330.72,63.433 +336341,321.99,62.54 +336342,324.59,62.855 +336343,327.06,63.162 +336344,329.41,63.462 +336345,320.67,62.46 +336346,323.28,62.812 +336347,325.75,63.155 +336348,328.11,63.492 +336349,319.35,62.38 +336350,321.97,62.768 +336351,324.44,63.148 +336352,326.8,63.52 +336353,318.03,62.301 +336354,320.65,62.725 +336355,323.13,63.141 +336356,325.49,63.549 +336357,316.71,62.221 +336358,319.34,62.682 +336359,321.82,63.134 +336360,324.18,63.577 +336361,315.4,62.142 +336362,318.03,62.639 +336363,320.51,63.126 +336364,322.87,63.605 +336365,314.09,62.063 +336366,316.72,62.596 +336367,319.2,63.119 +336368,321.56,63.633 +336369,312.77,61.985 +336370,315.41,62.553 +336371,317.89,63.111 +336372,320.24,63.66 +336373,311.47,61.906 +336374,314.1,62.51 +336375,316.58,63.103 +336376,318.92,63.687 +336377,310.16,61.829 +336378,312.79,62.468 +336379,315.26,63.095 +336380,317.6,63.713 +336381,308.86,61.751 +336382,311.48,62.425 +336383,313.95,63.087 +336384,316.28,63.739 +336385,307.55,61.675 +336386,310.18,62.383 +336387,312.64,63.079 +336388,314.96,63.764 +336389,306.25,61.598 +336390,308.87,62.341 +336391,311.32,63.07 +336392,313.64,63.789 +336393,304.96,61.523 +336394,307.56,62.299 +336395,310.01,63.062 +336396,312.31,63.813 +336397,303.66,61.447 +336398,306.26,62.257 +336399,308.69,63.053 +336400,310.98,63.836 +336401,302.37,61.373 +336402,304.95,62.215 +336403,307.37,63.044 +336404,309.65,63.859 +336405,301.07,61.299 +336406,303.65,62.174 +336407,306.06,63.034 +336408,308.32,63.882 +336409,299.78,61.225 +336410,302.34,62.132 +336411,304.74,63.025 +336412,306.99,63.903 +336413,298.5,61.152 +336414,301.04,62.091 +336415,303.42,63.015 +336416,305.65,63.924 +336417,297.21,61.08 +336418,299.74,62.05 +336419,302.1,63.005 +336420,304.32,63.944 +336421,295.93,61.009 +336422,298.44,62.01 +336423,300.78,62.994 +336424,302.98,63.964 +336425,294.64,60.938 +336426,297.14,61.969 +336427,299.46,62.984 +336428,301.64,63.982 +336429,293.36,60.868 +336430,295.84,61.929 +336431,298.14,62.973 +336432,300.3,64 +336433,292.09,60.799 +336434,294.54,61.889 +336435,296.82,62.962 +336436,298.96,64.017 +336437,290.81,60.731 +336438,293.24,61.85 +336439,295.5,62.95 +336440,297.61,64.033 +336441,289.54,60.664 +336442,291.94,61.811 +336443,294.18,62.939 +336444,296.27,64.048 +336445,288.26,60.597 +336446,290.64,61.771 +336447,292.85,62.926 +336448,294.92,64.063 +336449,286.99,60.532 +336450,289.35,61.733 +336451,291.53,62.914 +336452,293.57,64.076 +336453,285.73,60.467 +336454,288.05,61.694 +336455,290.21,62.901 +336456,292.22,64.089 +336457,284.46,60.403 +336458,286.75,61.656 +336459,288.88,62.888 +336460,290.87,64.1 +336461,283.19,60.34 +336462,285.46,61.618 +336463,287.56,62.875 +336464,289.51,64.111 +336465,281.93,60.278 +336466,284.16,61.581 +336467,286.23,62.861 +336468,288.16,64.121 +336469,280.67,60.217 +336470,282.87,61.543 +336471,284.91,62.847 +336472,286.8,64.129 +336473,279.41,60.158 +336474,281.58,61.506 +336475,283.58,62.833 +336476,285.44,64.137 +336477,278.15,60.099 +336478,280.28,61.47 +336479,282.25,62.818 +336480,284.09,64.144 +336481,276.9,60.041 +336482,278.99,61.434 +336483,280.93,62.803 +336484,282.72,64.149 +336485,275.64,59.984 +336486,277.7,61.398 +336487,279.6,62.787 +336488,281.36,64.153 +336489,274.39,59.929 +336490,276.41,61.362 +336491,278.27,62.771 +336492,280,64.157 +336493,273.14,59.874 +336494,275.12,61.327 +336495,276.94,62.755 +336496,278.64,64.159 +336497,271.89,59.821 +336498,273.83,61.292 +336499,275.61,62.738 +336500,277.27,64.16 +336501,270.64,59.769 +336502,272.54,61.258 +336503,274.28,62.721 +336504,275.9,64.16 +336505,269.39,59.718 +336506,271.25,61.223 +336507,272.95,62.704 +336508,274.53,64.159 +336509,268.15,59.668 +336510,269.96,61.19 +336511,271.62,62.686 +336512,273.17,64.157 +336513,266.91,59.619 +336514,268.67,61.156 +336515,270.29,62.668 +336516,271.79,64.153 +336517,265.66,59.572 +336518,267.38,61.123 +336519,268.96,62.649 +336520,270.42,64.148 +336521,264.42,59.526 +336522,266.09,61.091 +336523,267.63,62.63 +336524,269.05,64.142 +336525,263.18,59.481 +336526,264.81,61.059 +336527,266.3,62.61 +336528,267.68,64.135 +336529,261.94,59.437 +336530,263.52,61.027 +336531,264.97,62.59 +336532,266.3,64.127 +336533,260.71,59.394 +336534,262.23,60.996 +336535,263.63,62.57 +336536,264.93,64.117 +336537,259.47,59.353 +336538,260.95,60.965 +336539,262.3,62.549 +336540,263.55,64.106 +336541,258.24,59.313 +336542,259.66,60.934 +336543,260.97,62.528 +336544,262.17,64.094 +336545,257,59.274 +336546,258.38,60.904 +336547,259.64,62.506 +336548,260.79,64.081 +336549,255.77,59.237 +336550,257.09,60.874 +336551,258.3,62.484 +336552,259.41,64.066 +336553,254.54,59.201 +336554,255.81,60.845 +336555,256.97,62.461 +336556,258.03,64.05 +336557,253.31,59.166 +336558,254.52,60.816 +336559,255.63,62.438 +336560,256.65,64.033 +336561,252.08,59.133 +336562,253.24,60.788 +336563,254.3,62.415 +336564,255.27,64.014 +336565,250.85,59.101 +336566,251.96,60.76 +336567,252.97,62.391 +336568,253.89,63.994 +336569,249.62,59.07 +336570,250.67,60.732 +336571,251.63,62.366 +336572,252.5,63.973 +336573,248.4,59.04 +336574,249.39,60.705 +336575,250.3,62.342 +336576,251.12,63.951 +336577,247.17,59.012 +336578,248.11,60.678 +336579,248.96,62.316 +336580,249.73,63.927 +336581,245.94,58.985 +336582,246.83,60.652 +336583,247.62,62.29 +336584,248.35,63.902 +336585,244.72,58.96 +336586,245.55,60.626 +336587,246.29,62.264 +336588,246.96,63.876 +336589,243.49,58.936 +336590,244.26,60.6 +336591,244.95,62.238 +336592,245.57,63.848 +336593,242.27,58.913 +336594,242.98,60.575 +336595,243.62,62.211 +336596,244.19,63.819 +336597,241.05,58.891 +336598,241.7,60.551 +336599,242.28,62.183 +336600,242.8,63.789 +336601,239.82,58.871 +336602,240.42,60.526 +336603,240.95,62.155 +336604,241.41,63.757 +336605,238.6,58.852 +336606,239.14,60.503 +336607,239.61,62.127 +336608,240.02,63.724 +336609,237.38,58.835 +336610,237.86,60.479 +336611,238.27,62.098 +336612,238.63,63.69 +336613,236.16,58.819 +336614,236.58,60.456 +336615,236.94,62.068 +336616,237.24,63.654 +336617,234.94,58.804 +336618,235.3,60.434 +336619,235.6,62.038 +336620,235.85,63.617 +336621,233.71,58.79 +336622,234.02,60.412 +336623,234.26,62.008 +336624,234.46,63.579 +336625,232.49,58.778 +336626,232.74,60.39 +336627,232.93,61.977 +336628,233.07,63.54 +336629,231.27,58.767 +336630,231.46,60.369 +336631,231.59,61.946 +336632,231.68,63.499 +336633,230.05,58.757 +336634,230.17,60.348 +336635,230.25,61.915 +336636,230.29,63.457 +336637,228.83,58.749 +336638,228.89,60.328 +336639,228.92,61.883 +336640,228.9,63.413 +336641,227.61,58.742 +336642,227.61,60.308 +336643,227.58,61.85 +336644,227.51,63.369 +336645,226.39,58.736 +336646,226.33,60.288 +336647,226.24,61.817 +336648,226.11,63.323 +336649,225.17,58.731 +336650,225.05,60.269 +336651,224.91,61.784 +336652,224.72,63.276 +336653,223.95,58.728 +336654,223.77,60.25 +336655,223.57,61.75 +336656,223.33,63.228 +336657,222.72,58.726 +336658,222.49,60.232 +336659,222.23,61.716 +336660,221.94,63.178 +336661,221.5,58.725 +336662,221.21,60.214 +336663,220.9,61.681 +336664,220.55,63.127 +336665,220.28,58.725 +336666,219.93,60.196 +336667,219.56,61.646 +336668,219.16,63.075 +336669,219.06,58.727 +336670,218.65,60.179 +336671,218.22,61.611 +336672,217.77,63.022 +336673,217.83,58.729 +336674,217.37,60.162 +336675,216.89,61.575 +336676,216.38,62.967 +336677,216.61,58.733 +336678,216.09,60.145 +336679,215.55,61.539 +336680,214.98,62.912 +336681,215.39,58.738 +336682,214.81,60.129 +336683,214.21,61.502 +336684,213.59,62.855 +336685,214.16,58.744 +336686,213.53,60.114 +336687,212.88,61.465 +336688,212.2,62.797 +336689,212.94,58.751 +336690,212.25,60.098 +336691,211.54,61.428 +336692,210.81,62.738 +336693,211.71,58.76 +336694,210.97,60.083 +336695,210.21,61.39 +336696,209.43,62.678 +336697,210.49,58.769 +336698,209.69,60.069 +336699,208.87,61.352 +336700,208.04,62.617 +336701,209.26,58.779 +336702,208.41,60.054 +336703,207.54,61.313 +336704,206.65,62.554 +336705,208.03,58.791 +336706,207.13,60.04 +336707,206.2,61.274 +336708,205.26,62.491 +336709,206.8,58.803 +336710,205.84,60.027 +336711,204.87,61.235 +336712,203.87,62.426 +336713,205.57,58.817 +336714,204.56,60.013 +336715,203.53,61.195 +336716,202.49,62.361 +336717,204.34,58.831 +336718,203.28,60 +336719,202.2,61.155 +336720,201.1,62.294 +336721,203.11,58.846 +336722,202,59.987 +336723,200.86,61.115 +336724,199.71,62.227 +336725,201.88,58.863 +336726,200.71,59.975 +336727,199.53,61.074 +336728,198.33,62.158 +336729,200.65,58.88 +336730,199.43,59.963 +336731,198.2,61.033 +336732,196.94,62.089 +336733,199.41,58.898 +336734,198.15,59.951 +336735,196.87,60.992 +336736,195.56,62.018 +336737,198.18,58.917 +336738,196.86,59.939 +336739,195.53,60.95 +336740,194.18,61.947 +336741,196.94,58.936 +336742,195.58,59.928 +336743,194.2,60.908 +336744,192.8,61.875 +336745,195.7,58.957 +336746,194.3,59.917 +336747,192.87,60.866 +336748,191.42,61.802 +336749,194.46,58.978 +336750,193.01,59.906 +336751,191.54,60.823 +336752,190.04,61.728 +336753,193.22,59 +336754,191.73,59.896 +336755,190.21,60.78 +336756,188.66,61.653 +336757,191.98,59.023 +336758,190.44,59.885 +336759,188.88,60.737 +336760,187.28,61.577 +336761,190.74,59.046 +336762,189.16,59.875 +336763,187.55,60.694 +336764,185.9,61.501 +336765,189.49,59.071 +336766,187.87,59.865 +336767,186.22,60.65 +336768,184.53,61.424 +336769,188.25,59.095 +336770,186.58,59.856 +336771,184.89,60.607 +336772,183.15,61.346 +336773,187,59.121 +336774,185.3,59.846 +336775,183.56,60.563 +336776,181.78,61.268 +336777,185.76,59.147 +336778,184.01,59.837 +336779,182.23,60.518 +336780,180.41,61.189 +336781,184.51,59.173 +336782,182.72,59.828 +336783,180.9,60.474 +336784,179.03,61.109 +336785,183.25,59.2 +336786,181.43,59.819 +336787,179.57,60.429 +336788,177.66,61.028 +336789,182,59.228 +336790,180.15,59.81 +336791,178.25,60.384 +336792,176.3,60.947 +336793,180.75,59.256 +336794,178.86,59.802 +336795,176.92,60.339 +336796,174.93,60.866 +336797,179.49,59.285 +336798,177.57,59.793 +336799,175.59,60.294 +336800,173.56,60.784 +336801,178.24,59.314 +336802,176.28,59.785 +336803,174.27,60.248 +336804,172.2,60.701 +336805,176.98,59.343 +336806,174.99,59.777 +336807,172.94,60.202 +336808,170.84,60.618 +336809,175.72,59.373 +336810,173.7,59.769 +336811,171.62,60.157 +336812,169.47,60.534 +336813,174.46,59.403 +336814,172.4,59.761 +336815,170.29,60.111 +336816,168.11,60.45 +336817,173.19,59.433 +336818,171.11,59.753 +336819,168.97,60.065 +336820,166.75,60.366 +336821,171.93,59.463 +336822,169.82,59.745 +336823,167.65,60.018 +336824,165.4,60.281 +336825,170.66,59.494 +336826,168.53,59.737 +336827,166.32,59.972 +336828,164.04,60.196 +336829,169.39,59.525 +336830,167.23,59.73 +336831,165,59.926 +336832,162.69,60.111 +336833,168.12,59.556 +336834,165.94,59.722 +336835,163.68,59.879 +336836,161.34,60.025 +336837,166.85,59.588 +336838,164.65,59.715 +336839,162.36,59.833 +336840,159.99,59.94 +336841,165.58,59.619 +336842,163.35,59.707 +336843,161.04,59.786 +336844,158.64,59.854 +336845,164.3,59.651 +336846,162.06,59.7 +336847,159.72,59.739 +336848,157.29,59.767 +336849,163.03,59.682 +336850,160.76,59.692 +336851,158.4,59.692 +336852,155.94,59.681 +336853,161.75,59.714 +336854,159.46,59.685 +336855,157.09,59.646 +336856,154.6,59.595 +336857,160.47,59.745 +336858,158.17,59.677 +336859,155.77,59.599 +336860,153.26,59.508 +336861,159.19,59.777 +336862,156.87,59.67 +336863,154.45,59.552 +336864,151.92,59.421 +336865,157.9,59.808 +336866,155.57,59.662 +336867,153.13,59.505 +336868,150.58,59.335 +336869,156.62,59.84 +336870,154.27,59.655 +336871,151.82,59.458 +336872,149.25,59.248 +336873,155.33,59.871 +336874,152.97,59.647 +336875,150.5,59.411 +336876,147.91,59.162 +336877,154.04,59.902 +336878,151.67,59.639 +336879,149.19,59.364 +336880,146.58,59.075 +336881,152.75,59.933 +336882,150.37,59.632 +336883,147.88,59.318 +336884,145.25,58.989 +336885,151.46,59.963 +336886,149.07,59.624 +336887,146.56,59.271 +336888,143.92,58.903 +336889,150.16,59.994 +336890,147.77,59.616 +336891,145.25,59.224 +336892,142.59,58.817 +336893,148.87,60.024 +336894,146.47,59.608 +336895,143.94,59.178 +336896,141.27,58.731 +336897,147.57,60.054 +336898,145.16,59.6 +336899,142.63,59.131 +336900,139.95,58.645 +336901,146.27,60.083 +336902,143.86,59.591 +336903,141.32,59.085 +336904,138.63,58.56 +336905,144.97,60.112 +336906,142.55,59.583 +336907,140.01,59.038 +336908,137.31,58.475 +336909,143.66,60.141 +336910,141.25,59.575 +336911,138.7,58.992 +336912,135.99,58.391 +336913,142.36,60.169 +336914,139.94,59.566 +336915,137.39,58.946 +336916,134.68,58.306 +336917,141.05,60.197 +336918,138.64,59.557 +336919,136.09,58.9 +336920,133.37,58.222 +336921,139.74,60.224 +336922,137.33,59.548 +336923,134.78,58.854 +336924,132.06,58.139 +336925,138.43,60.25 +336926,136.02,59.539 +336927,133.47,58.808 +336928,130.75,58.056 +336929,137.12,60.277 +336930,134.72,59.53 +336931,132.17,58.763 +336932,129.44,57.974 +336933,135.8,60.302 +336934,133.41,59.52 +336935,130.86,58.717 +336936,128.14,57.892 +336937,134.49,60.327 +336938,132.1,59.51 +336939,129.56,58.672 +336940,126.84,57.81 +336941,133.17,60.351 +336942,130.79,59.5 +336943,128.26,58.627 +336944,125.54,57.73 +336945,131.85,60.375 +336946,129.48,59.49 +336947,126.95,58.582 +336948,124.24,57.649 +336949,130.53,60.398 +336950,128.17,59.479 +336951,125.65,58.538 +336952,122.95,57.57 +336953,129.2,60.42 +336954,126.86,59.469 +336955,124.35,58.493 +336956,121.65,57.491 +336957,127.88,60.442 +336958,125.55,59.458 +336959,123.05,58.449 +336960,120.36,57.413 +336961,126.55,60.463 +336962,124.23,59.447 +336963,121.75,58.405 +336964,119.07,57.336 +336965,125.22,60.482 +336966,122.92,59.435 +336967,120.45,58.361 +336968,117.79,57.259 +336969,123.89,60.502 +336970,121.61,59.423 +336971,119.15,58.318 +336972,116.5,57.183 +336973,122.56,60.52 +336974,120.29,59.411 +336975,117.86,58.275 +336976,115.22,57.108 +336977,121.23,60.537 +336978,118.98,59.399 +336979,116.56,58.232 +336980,113.94,57.034 +336981,119.9,60.554 +336982,117.66,59.386 +336983,115.26,58.189 +336984,112.66,56.961 +336985,118.56,60.569 +336986,116.35,59.373 +336987,113.97,58.147 +336988,111.39,56.888 +336989,117.22,60.584 +336990,115.03,59.36 +336991,112.67,58.105 +336992,110.11,56.817 +336993,115.88,60.598 +336994,113.71,59.346 +336995,111.38,58.063 +336996,108.84,56.747 +336997,114.54,60.61 +336998,112.4,59.332 +336999,110.09,58.022 +337000,107.57,56.677 +337001,113.2,60.622 +337002,111.08,59.318 +337003,108.79,57.981 +337004,106.3,56.609 +337005,111.85,60.633 +337006,109.76,59.303 +337007,107.5,57.94 +337008,105.04,56.541 +337009,110.51,60.643 +337010,108.44,59.288 +337011,106.21,57.9 +337012,103.77,56.475 +337013,109.16,60.651 +337014,107.12,59.272 +337015,104.92,57.86 +337016,102.51,56.41 +337017,107.81,60.659 +337018,105.8,59.257 +337019,103.63,57.82 +337020,101.25,56.345 +337021,106.46,60.665 +337022,104.48,59.24 +337023,102.34,57.78 +337024,99.992,56.282 +337025,105.11,60.67 +337026,103.16,59.224 +337027,101.05,57.742 +337028,98.736,56.22 +337029,103.75,60.674 +337030,101.84,59.207 +337031,99.76,57.703 +337032,97.482,56.16 +337033,102.4,60.677 +337034,100.52,59.19 +337035,98.472,57.665 +337036,96.229,56.1 +337037,101.04,60.679 +337038,99.195,59.172 +337039,97.184,57.627 +337040,94.979,56.042 +337041,99.687,60.68 +337042,97.873,59.154 +337043,95.897,57.589 +337044,93.73,55.984 +337045,98.328,60.679 +337046,96.549,59.135 +337047,94.611,57.552 +337048,92.483,55.928 +337049,96.968,60.677 +337050,95.226,59.116 +337051,93.326,57.516 +337052,91.238,55.874 +337053,95.607,60.674 +337054,93.901,59.096 +337055,92.041,57.479 +337056,89.994,55.82 +337057,94.244,60.67 +337058,92.577,59.077 +337059,90.756,57.444 +337060,88.752,55.768 +337061,92.881,60.665 +337062,91.252,59.056 +337063,89.472,57.408 +337064,87.512,55.718 +337065,91.516,60.658 +337066,89.927,59.035 +337067,88.188,57.373 +337068,86.273,55.668 +337069,90.15,60.65 +337070,88.601,59.014 +337071,86.906,57.339 +337072,85.036,55.62 +337073,88.782,60.64 +337074,87.275,58.993 +337075,85.623,57.304 +337076,83.8,55.573 +337077,87.414,60.629 +337078,85.948,58.97 +337079,84.341,57.271 +337080,82.566,55.528 +337081,86.045,60.617 +337082,84.622,58.948 +337083,83.059,57.237 +337084,81.333,55.484 +337085,84.674,60.604 +337086,83.294,58.925 +337087,81.778,57.205 +337088,80.101,55.441 +337089,83.303,60.589 +337090,81.967,58.901 +337091,80.498,57.172 +337092,78.871,55.4 +337093,81.93,60.573 +337094,80.639,58.877 +337095,79.218,57.14 +337096,77.642,55.36 +337097,80.557,60.556 +337098,79.311,58.853 +337099,77.938,57.109 +337100,76.415,55.321 +337101,79.183,60.537 +337102,77.982,58.828 +337103,76.658,57.078 +337104,75.189,55.284 +337105,77.807,60.517 +337106,76.654,58.803 +337107,75.379,57.047 +337108,73.963,55.249 +337109,76.431,60.495 +337110,75.325,58.777 +337111,74.101,57.017 +337112,72.739,55.214 +337113,75.054,60.472 +337114,73.995,58.75 +337115,72.823,56.988 +337116,71.516,55.182 +337117,73.676,60.448 +337118,72.666,58.724 +337119,71.545,56.958 +337120,70.294,55.15 +337121,72.298,60.422 +337122,71.336,58.696 +337123,70.267,56.93 +337124,69.073,55.12 +337125,70.918,60.395 +337126,70.006,58.669 +337127,68.99,56.901 +337128,67.853,55.092 +337129,69.538,60.367 +337130,68.676,58.64 +337131,67.713,56.874 +337132,66.634,55.065 +337133,68.158,60.337 +337134,67.345,58.612 +337135,66.437,56.846 +337136,65.416,55.039 +337137,66.776,60.306 +337138,66.015,58.582 +337139,65.16,56.819 +337140,64.198,55.015 +337141,65.394,60.273 +337142,64.684,58.553 +337143,63.884,56.793 +337144,62.981,54.992 +337145,64.012,60.239 +337146,63.353,58.523 +337147,62.609,56.767 +337148,61.765,54.971 +337149,62.628,60.204 +337150,62.022,58.492 +337151,61.333,56.742 +337152,60.549,54.951 +337153,61.245,60.167 +337154,60.691,58.461 +337155,60.058,56.717 +337156,59.334,54.933 +337157,59.861,60.129 +337158,59.359,58.429 +337159,58.783,56.692 +337160,58.12,54.916 +337161,58.476,60.089 +337162,58.028,58.397 +337163,57.508,56.668 +337164,56.906,54.9 +337165,57.091,60.048 +337166,56.696,58.365 +337167,56.233,56.644 +337168,55.692,54.886 +337169,55.705,60.006 +337170,55.365,58.332 +337171,54.959,56.621 +337172,54.479,54.873 +337173,54.32,59.962 +337174,54.033,58.298 +337175,53.684,56.598 +337176,53.266,54.862 +337177,52.934,59.917 +337178,52.701,58.264 +337179,52.41,56.576 +337180,52.053,54.852 +337181,51.547,59.87 +337182,51.369,58.23 +337183,51.136,56.554 +337184,50.841,54.844 +337185,50.161,59.822 +337186,50.037,58.195 +337187,49.862,56.533 +337188,49.628,54.837 +337189,48.774,59.773 +337190,48.706,58.159 +337191,48.588,56.512 +337192,48.416,54.831 +337193,47.387,59.723 +337194,47.374,58.124 +337195,47.314,56.492 +337196,47.204,54.826 +337197,46,59.671 +337198,46.042,58.087 +337199,46.041,56.471 +337200,45.992,54.823 +337201,44.613,59.618 +337202,44.71,58.051 +337203,44.767,56.452 +337204,44.779,54.821 +337205,43.226,59.563 +337206,43.378,58.013 +337207,43.493,56.433 +337208,43.567,54.821 +337209,41.839,59.507 +337210,42.046,57.976 +337211,42.219,56.414 +337212,42.354,54.822 +337213,40.451,59.45 +337214,40.715,57.938 +337215,40.946,56.396 +337216,41.142,54.824 +337217,39.064,59.392 +337218,39.383,57.899 +337219,39.672,56.378 +337220,39.928,54.827 +337221,37.677,59.332 +337222,38.052,57.86 +337223,38.398,56.36 +337224,38.715,54.832 +337225,36.291,59.272 +337226,36.72,57.821 +337227,37.124,56.343 +337228,37.501,54.838 +337229,34.904,59.209 +337230,35.389,57.781 +337231,35.851,56.326 +337232,36.287,54.845 +337233,33.517,59.146 +337234,34.058,57.741 +337235,34.577,56.31 +337236,35.073,54.853 +337237,32.131,59.082 +337238,32.727,57.7 +337239,33.303,56.294 +337240,33.858,54.863 +337241,30.745,59.016 +337242,31.396,57.659 +337243,32.028,56.278 +337244,32.642,54.874 +337245,29.36,58.949 +337246,30.065,57.618 +337247,30.754,56.263 +337248,31.426,54.885 +337249,27.974,58.881 +337250,28.735,57.576 +337251,29.48,56.248 +337252,30.209,54.898 +337253,26.59,58.812 +337254,27.405,57.534 +337255,28.205,56.234 +337256,28.991,54.912 +337257,25.205,58.741 +337258,26.075,57.491 +337259,26.93,56.22 +337260,27.773,54.927 +337261,23.821,58.67 +337262,24.745,57.449 +337263,25.656,56.206 +337264,26.553,54.943 +337265,22.438,58.598 +337266,23.415,57.405 +337267,24.38,56.193 +337268,25.333,54.961 +337269,21.055,58.524 +337270,22.086,57.362 +337271,23.105,56.179 +337272,24.113,54.979 +337273,19.673,58.45 +337274,20.757,57.318 +337275,21.83,56.167 +337276,22.891,54.998 +337277,18.291,58.374 +337278,19.428,57.273 +337279,20.554,56.154 +337280,21.668,55.018 +337281,16.91,58.297 +337282,18.1,57.229 +337283,19.278,56.142 +337284,20.444,55.039 +337285,15.53,58.22 +337286,16.772,57.184 +337287,18.001,56.13 +337288,19.22,55.061 +337289,14.151,58.141 +337290,15.444,57.138 +337291,16.725,56.119 +337292,17.994,55.083 +337293,12.772,58.062 +337294,14.117,57.093 +337295,15.448,56.107 +337296,16.767,55.107 +337297,11.394,57.982 +337298,12.79,57.047 +337299,14.171,56.096 +337300,15.539,55.131 +337301,10.017,57.901 +337302,11.463,57.001 +337303,12.893,56.086 +337304,14.309,55.157 +337305,8.641,57.819 +337306,10.137,56.954 +337307,11.616,56.075 +337308,13.079,55.182 +337309,7.2659,57.736 +337310,8.811,56.908 +337311,10.337,56.065 +337312,11.847,55.209 +337313,5.8918,57.652 +337314,7.4855,56.861 +337315,9.0589,56.055 +337316,10.614,55.237 +337317,4.5187,57.568 +337318,6.1605,56.813 +337319,7.78,56.045 +337320,9.3797,55.265 +337321,3.1466,57.483 +337322,4.8359,56.766 +337323,6.5008,56.035 +337324,8.1439,55.293 +337325,1.7756,57.397 +337326,3.5117,56.718 +337327,5.2211,56.026 +337328,6.9068,55.322 +337329,0.40581,57.31 +337330,2.188,56.67 +337331,3.9411,56.017 +337332,5.6683,55.352 +337333,359.04,57.223 +337334,0.86478,56.622 +337335,2.6607,56.008 +337336,4.4283,55.383 +337337,357.67,57.135 +337338,359.54,56.574 +337339,1.3798,55.999 +337340,3.1869,55.414 +337341,356.3,57.047 +337342,358.22,56.525 +337343,0.098556,55.99 +337344,1.944,55.445 +337345,354.94,56.958 +337346,356.9,56.476 +337347,358.82,55.982 +337348,0.69951,55.477 +337349,353.57,56.868 +337350,355.58,56.427 +337351,357.53,55.974 +337352,359.45,55.509 +337353,352.21,56.778 +337354,354.26,56.378 +337355,356.25,55.965 +337356,358.21,55.542 +337357,350.85,56.688 +337358,352.94,56.329 +337359,354.97,55.957 +337360,356.96,55.575 +337361,349.49,56.597 +337362,351.62,56.28 +337363,353.69,55.949 +337364,355.71,55.608 +337365,348.13,56.506 +337366,350.3,56.23 +337367,352.4,55.941 +337368,354.45,55.642 +337369,346.78,56.414 +337370,348.98,56.18 +337371,351.12,55.934 +337372,353.2,55.676 +337373,345.42,56.322 +337374,347.66,56.131 +337375,349.83,55.926 +337376,351.94,55.71 +337377,344.07,56.23 +337378,346.34,56.081 +337379,348.55,55.918 +337380,350.69,55.744 +337381,342.72,56.137 +337382,345.03,56.031 +337383,347.26,55.911 +337384,349.43,55.779 +337385,341.37,56.044 +337386,343.71,55.981 +337387,345.97,55.903 +337388,348.17,55.813 +337389,340.02,55.951 +337390,342.4,55.931 +337391,344.69,55.896 +337392,346.9,55.848 +337393,338.67,55.858 +337394,341.08,55.881 +337395,343.4,55.888 +337396,345.64,55.883 +337397,337.33,55.765 +337398,339.77,55.831 +337399,342.11,55.881 +337400,344.37,55.917 +337401,335.98,55.671 +337402,338.45,55.78 +337403,340.82,55.873 +337404,343.11,55.952 +337405,334.64,55.578 +337406,337.14,55.73 +337407,339.53,55.866 +337408,341.84,55.987 +337409,333.3,55.484 +337410,335.83,55.68 +337411,338.24,55.858 +337412,340.56,56.022 +337413,331.96,55.391 +337414,334.52,55.63 +337415,336.95,55.851 +337416,339.29,56.056 +337417,330.63,55.297 +337418,333.2,55.58 +337419,335.66,55.843 +337420,338.02,56.091 +337421,329.29,55.204 +337422,331.89,55.53 +337423,334.37,55.836 +337424,336.74,56.125 +337425,327.96,55.11 +337426,330.58,55.479 +337427,333.08,55.828 +337428,335.46,56.159 +337429,326.63,55.017 +337430,329.28,55.429 +337431,331.79,55.82 +337432,334.18,56.193 +337433,325.3,54.924 +337434,327.97,55.379 +337435,330.49,55.812 +337436,332.9,56.226 +337437,323.98,54.831 +337438,326.66,55.329 +337439,329.2,55.804 +337440,331.61,56.259 +337441,322.65,54.739 +337442,325.35,55.28 +337443,327.9,55.796 +337444,330.33,56.292 +337445,321.33,54.646 +337446,324.05,55.23 +337447,326.61,55.788 +337448,329.04,56.325 +337449,320.01,54.554 +337450,322.74,55.18 +337451,325.31,55.78 +337452,327.75,56.357 +337453,318.69,54.463 +337454,321.44,55.131 +337455,324.02,55.772 +337456,326.46,56.389 +337457,317.38,54.371 +337458,320.13,55.081 +337459,322.72,55.763 +337460,325.17,56.42 +337461,316.06,54.281 +337462,318.83,55.032 +337463,321.42,55.754 +337464,323.87,56.451 +337465,314.75,54.19 +337466,317.53,54.983 +337467,320.13,55.745 +337468,322.57,56.481 +337469,313.44,54.1 +337470,316.22,54.934 +337471,318.83,55.736 +337472,321.28,56.511 +337473,312.13,54.011 +337474,314.92,54.885 +337475,317.53,55.727 +337476,319.97,56.54 +337477,310.83,53.922 +337478,313.62,54.837 +337479,316.23,55.717 +337480,318.67,56.568 +337481,309.52,53.834 +337482,312.32,54.788 +337483,314.93,55.708 +337484,317.37,56.596 +337485,308.22,53.746 +337486,311.02,54.74 +337487,313.63,55.698 +337488,316.06,56.623 +337489,306.92,53.66 +337490,309.73,54.692 +337491,312.33,55.688 +337492,314.75,56.65 +337493,305.63,53.573 +337494,308.43,54.645 +337495,311.02,55.677 +337496,313.44,56.676 +337497,304.33,53.488 +337498,307.13,54.597 +337499,309.72,55.667 +337500,312.13,56.701 +337501,303.04,53.403 +337502,305.84,54.55 +337503,308.42,55.656 +337504,310.82,56.725 +337505,301.75,53.319 +337506,304.54,54.503 +337507,307.11,55.644 +337508,309.51,56.748 +337509,300.46,53.236 +337510,303.25,54.456 +337511,305.81,55.633 +337512,308.19,56.771 +337513,299.18,53.154 +337514,301.95,54.41 +337515,304.5,55.621 +337516,306.87,56.793 +337517,297.89,53.073 +337518,300.66,54.364 +337519,303.2,55.609 +337520,305.55,56.813 +337521,296.61,52.992 +337522,299.37,54.318 +337523,301.89,55.597 +337524,304.23,56.833 +337525,295.33,52.913 +337526,298.08,54.273 +337527,300.59,55.584 +337528,302.9,56.852 +337529,294.06,52.834 +337530,296.79,54.227 +337531,299.28,55.571 +337532,301.58,56.87 +337533,292.78,52.757 +337534,295.5,54.183 +337535,297.97,55.558 +337536,300.25,56.887 +337537,291.51,52.68 +337538,294.21,54.138 +337539,296.66,55.544 +337540,298.92,56.903 +337541,290.24,52.605 +337542,292.92,54.094 +337543,295.35,55.53 +337544,297.59,56.918 +337545,288.97,52.531 +337546,291.63,54.05 +337547,294.04,55.515 +337548,296.26,56.932 +337549,287.71,52.458 +337550,290.34,54.007 +337551,292.73,55.5 +337552,294.93,56.945 +337553,286.44,52.386 +337554,289.06,53.964 +337555,291.42,55.485 +337556,293.59,56.957 +337557,285.18,52.315 +337558,287.77,53.921 +337559,290.11,55.47 +337560,292.26,56.967 +337561,283.92,52.245 +337562,286.48,53.879 +337563,288.8,55.454 +337564,290.92,56.977 +337565,282.67,52.177 +337566,285.2,53.837 +337567,287.49,55.437 +337568,289.58,56.985 +337569,281.41,52.11 +337570,283.92,53.795 +337571,286.18,55.421 +337572,288.24,56.992 +337573,280.16,52.044 +337574,282.63,53.754 +337575,284.86,55.403 +337576,286.9,56.998 +337577,278.91,51.98 +337578,281.35,53.714 +337579,283.55,55.386 +337580,285.55,57.003 +337581,277.66,51.917 +337582,280.07,53.674 +337583,282.24,55.368 +337584,284.21,57.006 +337585,276.41,51.855 +337586,278.79,53.634 +337587,280.92,55.349 +337588,282.86,57.008 +337589,275.17,51.794 +337590,277.51,53.594 +337591,279.61,55.33 +337592,281.51,57.009 +337593,273.92,51.735 +337594,276.23,53.556 +337595,278.29,55.311 +337596,280.16,57.009 +337597,272.68,51.677 +337598,274.95,53.517 +337599,276.98,55.291 +337600,278.81,57.007 +337601,271.44,51.621 +337602,273.67,53.479 +337603,275.66,55.271 +337604,277.46,57.004 +337605,270.21,51.566 +337606,272.39,53.442 +337607,274.34,55.25 +337608,276.11,56.999 +337609,268.97,51.513 +337610,271.11,53.405 +337611,273.03,55.229 +337612,274.75,56.994 +337613,267.74,51.461 +337614,269.84,53.368 +337615,271.71,55.208 +337616,273.4,56.987 +337617,266.51,51.411 +337618,268.56,53.332 +337619,270.39,55.185 +337620,272.04,56.978 +337621,265.28,51.362 +337622,267.28,53.296 +337623,269.07,55.163 +337624,270.68,56.968 +337625,264.05,51.315 +337626,266.01,53.261 +337627,267.75,55.14 +337628,269.32,56.957 +337629,262.82,51.269 +337630,264.73,53.227 +337631,266.43,55.116 +337632,267.96,56.944 +337633,261.59,51.224 +337634,263.46,53.193 +337635,265.12,55.092 +337636,266.6,56.93 +337637,260.37,51.182 +337638,262.19,53.159 +337639,263.8,55.068 +337640,265.24,56.915 +337641,259.15,51.14 +337642,260.91,53.126 +337643,262.48,55.043 +337644,263.88,56.898 +337645,257.93,51.101 +337646,259.64,53.093 +337647,261.16,55.017 +337648,262.51,56.879 +337649,256.71,51.063 +337650,258.37,53.061 +337651,259.83,54.991 +337652,261.15,56.859 +337653,255.49,51.026 +337654,257.1,53.03 +337655,258.51,54.965 +337656,259.78,56.838 +337657,254.27,50.991 +337658,255.82,52.998 +337659,257.19,54.938 +337660,258.41,56.815 +337661,253.06,50.958 +337662,254.55,52.968 +337663,255.87,54.91 +337664,257.04,56.791 +337665,251.84,50.926 +337666,253.28,52.938 +337667,254.55,54.882 +337668,255.67,56.765 +337669,250.63,50.896 +337670,252.01,52.908 +337671,253.23,54.853 +337672,254.3,56.738 +337673,249.42,50.868 +337674,250.74,52.879 +337675,251.91,54.824 +337676,252.93,56.709 +337677,248.21,50.841 +337678,249.47,52.851 +337679,250.58,54.795 +337680,251.56,56.679 +337681,247,50.816 +337682,248.2,52.823 +337683,249.26,54.765 +337684,250.19,56.647 +337685,245.79,50.792 +337686,246.94,52.795 +337687,247.94,54.734 +337688,248.82,56.614 +337689,244.58,50.77 +337690,245.67,52.769 +337691,246.61,54.703 +337692,247.44,56.579 +337693,243.37,50.75 +337694,244.4,52.742 +337695,245.29,54.671 +337696,246.07,56.543 +337697,242.17,50.731 +337698,243.13,52.716 +337699,243.97,54.639 +337700,244.69,56.505 +337701,240.96,50.714 +337702,241.86,52.691 +337703,242.64,54.607 +337704,243.32,56.466 +337705,239.75,50.698 +337706,240.6,52.666 +337707,241.32,54.574 +337708,241.94,56.425 +337709,238.55,50.684 +337710,239.33,52.642 +337711,240,54.54 +337712,240.57,56.383 +337713,237.35,50.671 +337714,238.06,52.618 +337715,238.67,54.506 +337716,239.19,56.339 +337717,236.14,50.66 +337718,236.8,52.595 +337719,237.35,54.471 +337720,237.81,56.294 +337721,234.94,50.651 +337722,235.53,52.572 +337723,236.02,54.436 +337724,236.43,56.247 +337725,233.74,50.643 +337726,234.26,52.549 +337727,234.7,54.4 +337728,235.06,56.199 +337729,232.53,50.637 +337730,233,52.528 +337731,233.38,54.364 +337732,233.68,56.15 +337733,231.33,50.632 +337734,231.73,52.506 +337735,232.05,54.328 +337736,232.3,56.099 +337737,230.13,50.629 +337738,230.47,52.486 +337739,230.73,54.29 +337740,230.92,56.046 +337741,228.93,50.627 +337742,229.2,52.465 +337743,229.4,54.253 +337744,229.54,55.992 +337745,227.73,50.627 +337746,227.94,52.446 +337747,228.08,54.215 +337748,228.16,55.937 +337749,226.53,50.628 +337750,226.67,52.426 +337751,226.75,54.176 +337752,226.78,55.88 +337753,225.32,50.631 +337754,225.41,52.407 +337755,225.43,54.137 +337756,225.4,55.822 +337757,224.12,50.635 +337758,224.14,52.389 +337759,224.1,54.098 +337760,224.02,55.762 +337761,222.92,50.64 +337762,222.88,52.371 +337763,222.78,54.058 +337764,222.64,55.702 +337765,221.72,50.647 +337766,221.61,52.354 +337767,221.46,54.017 +337768,221.26,55.639 +337769,220.52,50.655 +337770,220.35,52.337 +337771,220.13,53.976 +337772,219.88,55.576 +337773,219.32,50.665 +337774,219.08,52.32 +337775,218.81,53.935 +337776,218.51,55.511 +337777,218.11,50.676 +337778,217.82,52.304 +337779,217.48,53.893 +337780,217.13,55.444 +337781,216.91,50.688 +337782,216.55,52.288 +337783,216.16,53.851 +337784,215.75,55.377 +337785,215.71,50.702 +337786,215.28,52.273 +337787,214.84,53.808 +337788,214.37,55.308 +337789,214.5,50.717 +337790,214.02,52.259 +337791,213.51,53.765 +337792,212.99,55.237 +337793,213.3,50.733 +337794,212.75,52.244 +337795,212.19,53.722 +337796,211.61,55.166 +337797,212.09,50.75 +337798,211.49,52.23 +337799,210.87,53.678 +337800,210.23,55.093 +337801,210.89,50.769 +337802,210.22,52.217 +337803,209.55,53.634 +337804,208.85,55.019 +337805,209.68,50.788 +337806,208.96,52.204 +337807,208.22,53.589 +337808,207.48,54.944 +337809,208.47,50.809 +337810,207.69,52.191 +337811,206.9,53.544 +337812,206.1,54.868 +337813,207.26,50.831 +337814,206.43,52.178 +337815,205.58,53.498 +337816,204.72,54.79 +337817,206.06,50.854 +337818,205.16,52.167 +337819,204.26,53.452 +337820,203.35,54.712 +337821,204.85,50.878 +337822,203.89,52.155 +337823,202.93,53.406 +337824,201.97,54.632 +337825,203.64,50.903 +337826,202.63,52.144 +337827,201.61,53.36 +337828,200.59,54.551 +337829,202.42,50.93 +337830,201.36,52.133 +337831,200.29,53.313 +337832,199.22,54.469 +337833,201.21,50.957 +337834,200.09,52.122 +337835,198.97,53.266 +337836,197.85,54.386 +337837,200,50.985 +337838,198.83,52.112 +337839,197.65,53.218 +337840,196.47,54.302 +337841,198.78,51.014 +337842,197.56,52.102 +337843,196.33,53.17 +337844,195.1,54.217 +337845,197.57,51.044 +337846,196.29,52.092 +337847,195.01,53.122 +337848,193.73,54.131 +337849,196.35,51.075 +337850,195.02,52.083 +337851,193.69,53.073 +337852,192.36,54.044 +337853,195.13,51.106 +337854,193.75,52.074 +337855,192.37,53.025 +337856,190.99,53.957 +337857,193.91,51.138 +337858,192.49,52.065 +337859,191.05,52.975 +337860,189.62,53.868 +337861,192.69,51.172 +337862,191.22,52.057 +337863,189.74,52.926 +337864,188.25,53.778 +337865,191.47,51.205 +337866,189.95,52.048 +337867,188.42,52.876 +337868,186.88,53.688 +337869,190.25,51.24 +337870,188.68,52.04 +337871,187.1,52.827 +337872,185.52,53.597 +337873,189.02,51.275 +337874,187.41,52.033 +337875,185.78,52.776 +337876,184.15,53.505 +337877,187.8,51.311 +337878,186.14,52.025 +337879,184.47,52.726 +337880,182.79,53.412 +337881,186.57,51.347 +337882,184.87,52.018 +337883,183.15,52.675 +337884,181.42,53.318 +337885,185.34,51.384 +337886,183.6,52.011 +337887,181.84,52.625 +337888,180.06,53.224 +337889,184.11,51.422 +337890,182.32,52.004 +337891,180.52,52.574 +337892,178.7,53.129 +337893,182.88,51.46 +337894,181.05,51.997 +337895,179.21,52.523 +337896,177.34,53.034 +337897,181.64,51.498 +337898,179.78,51.991 +337899,177.89,52.471 +337900,175.98,52.938 +337901,180.41,51.537 +337902,178.51,51.984 +337903,176.58,52.42 +337904,174.63,52.841 +337905,179.17,51.576 +337906,177.23,51.978 +337907,175.27,52.368 +337908,173.27,52.744 +337909,177.93,51.616 +337910,175.96,51.972 +337911,173.96,52.316 +337912,171.91,52.647 +337913,176.69,51.655 +337914,174.69,51.966 +337915,172.64,52.264 +337916,170.56,52.549 +337917,175.45,51.696 +337918,173.41,51.96 +337919,171.33,52.212 +337920,169.21,52.45 +337921,174.21,51.736 +337922,172.14,51.954 +337923,170.02,52.16 +337924,167.86,52.352 +337925,172.96,51.776 +337926,170.86,51.949 +337927,168.71,52.108 +337928,166.51,52.252 +337929,171.71,51.817 +337930,169.58,51.943 +337931,167.4,52.056 +337932,165.16,52.153 +337933,170.46,51.858 +337934,168.31,51.937 +337935,166.09,52.003 +337936,163.82,52.053 +337937,169.21,51.899 +337938,167.03,51.932 +337939,164.79,51.951 +337940,162.47,51.953 +337941,167.96,51.94 +337942,165.75,51.926 +337943,163.48,51.898 +337944,161.13,51.853 +337945,166.71,51.981 +337946,164.47,51.921 +337947,162.17,51.846 +337948,159.79,51.753 +337949,165.45,52.022 +337950,163.2,51.916 +337951,160.87,51.793 +337952,158.45,51.652 +337953,164.19,52.063 +337954,161.92,51.91 +337955,159.56,51.741 +337956,157.11,51.552 +337957,162.93,52.104 +337958,160.64,51.905 +337959,158.26,51.688 +337960,155.78,51.451 +337961,161.67,52.145 +337962,159.36,51.899 +337963,156.95,51.636 +337964,154.45,51.351 +337965,160.41,52.185 +337966,158.08,51.894 +337967,155.65,51.583 +337968,153.11,51.25 +337969,159.14,52.226 +337970,156.79,51.888 +337971,154.35,51.531 +337972,151.78,51.15 +337973,157.88,52.266 +337974,155.51,51.883 +337975,153.04,51.478 +337976,150.46,51.049 +337977,156.61,52.306 +337978,154.23,51.877 +337979,151.74,51.426 +337980,149.13,50.949 +337981,155.34,52.345 +337982,152.95,51.871 +337983,150.44,51.374 +337984,147.81,50.849 +337985,154.07,52.384 +337986,151.66,51.866 +337987,149.14,51.322 +337988,146.48,50.749 +337989,152.79,52.423 +337990,150.38,51.86 +337991,147.84,51.27 +337992,145.16,50.65 +337993,151.51,52.462 +337994,149.09,51.854 +337995,146.54,51.218 +337996,143.84,50.551 +337997,150.24,52.5 +337998,147.81,51.847 +337999,145.25,51.166 +338000,142.53,50.452 +338001,148.96,52.538 +338002,146.52,51.841 +338003,143.95,51.114 +338004,141.21,50.353 +338005,147.67,52.575 +338006,145.23,51.835 +338007,142.65,51.063 +338008,139.9,50.255 +338009,146.39,52.611 +338010,143.95,51.828 +338011,141.36,51.012 +338012,138.59,50.157 +338013,145.11,52.647 +338014,142.66,51.821 +338015,140.06,50.96 +338016,137.28,50.06 +338017,143.82,52.683 +338018,141.37,51.814 +338019,138.77,50.91 +338020,135.98,49.964 +338021,142.53,52.717 +338022,140.08,51.807 +338023,137.47,50.859 +338024,134.67,49.868 +338025,141.24,52.751 +338026,138.79,51.8 +338027,136.18,50.808 +338028,133.37,49.772 +338029,139.95,52.785 +338030,137.5,51.792 +338031,134.89,50.758 +338032,132.07,49.678 +338033,138.65,52.818 +338034,136.21,51.784 +338035,133.6,50.708 +338036,130.78,49.583 +338037,137.35,52.849 +338038,134.92,51.776 +338039,132.31,50.658 +338040,129.48,49.49 +338041,136.06,52.881 +338042,133.63,51.768 +338043,131.02,50.609 +338044,128.19,49.398 +338045,134.76,52.911 +338046,132.34,51.759 +338047,129.73,50.56 +338048,126.9,49.306 +338049,133.45,52.94 +338050,131.04,51.75 +338051,128.44,50.511 +338052,125.61,49.215 +338053,132.15,52.969 +338054,129.75,51.741 +338055,127.16,50.462 +338056,124.33,49.125 +338057,130.85,52.997 +338058,128.46,51.732 +338059,125.87,50.414 +338060,123.04,49.036 +338061,129.54,53.023 +338062,127.16,51.722 +338063,124.58,50.366 +338064,121.76,48.948 +338065,128.23,53.049 +338066,125.87,51.712 +338067,123.3,50.318 +338068,120.48,48.861 +338069,126.92,53.074 +338070,124.57,51.702 +338071,122.02,50.271 +338072,119.21,48.775 +338073,125.61,53.098 +338074,123.27,51.691 +338075,120.73,50.224 +338076,117.93,48.689 +338077,124.29,53.121 +338078,121.98,51.68 +338079,119.45,50.178 +338080,116.66,48.606 +338081,122.98,53.142 +338082,120.68,51.668 +338083,118.17,50.132 +338084,115.39,48.523 +338085,121.66,53.163 +338086,119.38,51.657 +338087,116.89,50.086 +338088,114.13,48.441 +338089,120.34,53.182 +338090,118.08,51.645 +338091,115.61,50.041 +338092,112.86,48.361 +338093,119.02,53.201 +338094,116.78,51.632 +338095,114.33,49.996 +338096,111.6,48.281 +338097,117.7,53.218 +338098,115.48,51.619 +338099,113.05,49.951 +338100,110.34,48.203 +338101,116.38,53.234 +338102,114.18,51.606 +338103,111.77,49.907 +338104,109.08,48.127 +338105,115.05,53.249 +338106,112.88,51.592 +338107,110.49,49.863 +338108,107.82,48.051 +338109,113.72,53.262 +338110,111.58,51.578 +338111,109.22,49.82 +338112,106.57,47.977 +338113,112.4,53.274 +338114,110.28,51.563 +338115,107.94,49.777 +338116,105.32,47.905 +338117,111.07,53.285 +338118,108.98,51.549 +338119,106.67,49.735 +338120,104.07,47.834 +338121,109.73,53.295 +338122,107.67,51.533 +338123,105.39,49.693 +338124,102.82,47.764 +338125,108.4,53.304 +338126,106.37,51.517 +338127,104.12,49.652 +338128,101.58,47.695 +338129,107.07,53.311 +338130,105.07,51.501 +338131,102.84,49.611 +338132,100.34,47.629 +338133,105.73,53.316 +338134,103.76,51.484 +338135,101.57,49.571 +338136,99.097,47.563 +338137,104.4,53.321 +338138,102.46,51.467 +338139,100.3,49.531 +338140,97.859,47.5 +338141,103.06,53.324 +338142,101.15,51.449 +338143,99.029,49.492 +338144,96.623,47.437 +338145,101.72,53.325 +338146,99.849,51.431 +338147,97.759,49.453 +338148,95.389,47.377 +338149,100.38,53.325 +338150,98.543,51.413 +338151,96.489,49.415 +338152,94.157,47.318 +338153,99.035,53.324 +338154,97.236,51.394 +338155,95.22,49.377 +338156,92.927,47.26 +338157,97.692,53.321 +338158,95.93,51.374 +338159,93.952,49.34 +338160,91.699,47.205 +338161,96.348,53.317 +338162,94.623,51.354 +338163,92.684,49.303 +338164,90.473,47.151 +338165,95.002,53.311 +338166,93.315,51.333 +338167,91.417,49.267 +338168,89.249,47.098 +338169,93.655,53.304 +338170,92.007,51.312 +338171,90.15,49.231 +338172,88.027,47.048 +338173,92.307,53.295 +338174,90.699,51.291 +338175,88.884,49.196 +338176,86.806,46.999 +338177,90.958,53.285 +338178,89.39,51.269 +338179,87.619,49.162 +338180,85.587,46.951 +338181,89.608,53.274 +338182,88.081,51.246 +338183,86.354,49.128 +338184,84.37,46.906 +338185,88.257,53.26 +338186,86.772,51.223 +338187,85.09,49.095 +338188,83.155,46.862 +338189,86.904,53.246 +338190,85.463,51.199 +338191,83.826,49.062 +338192,81.942,46.82 +338193,85.551,53.229 +338194,84.153,51.175 +338195,82.563,49.03 +338196,80.73,46.78 +338197,84.197,53.211 +338198,82.842,51.15 +338199,81.3,48.998 +338200,79.519,46.742 +338201,82.842,53.192 +338202,81.532,51.125 +338203,80.038,48.967 +338204,78.31,46.705 +338205,81.486,53.171 +338206,80.221,51.099 +338207,78.776,48.937 +338208,77.103,46.67 +338209,80.129,53.148 +338210,78.91,51.073 +338211,77.515,48.907 +338212,75.897,46.638 +338213,78.771,53.124 +338214,77.599,51.046 +338215,76.254,48.878 +338216,74.692,46.606 +338217,77.413,53.098 +338218,76.287,51.019 +338219,74.994,48.85 +338220,73.489,46.577 +338221,76.053,53.071 +338222,74.975,50.991 +338223,73.734,48.822 +338224,72.287,46.55 +338225,74.693,53.042 +338226,73.663,50.963 +338227,72.474,48.794 +338228,71.086,46.524 +338229,73.333,53.011 +338230,72.351,50.934 +338231,71.215,48.767 +338232,69.886,46.5 +338233,71.971,52.979 +338234,71.038,50.904 +338235,69.957,48.741 +338236,68.687,46.478 +338237,70.609,52.945 +338238,69.726,50.874 +338239,68.698,48.716 +338240,67.489,46.458 +338241,69.246,52.91 +338242,68.413,50.843 +338243,67.44,48.69 +338244,66.293,46.439 +338245,67.883,52.873 +338246,67.1,50.812 +338247,66.183,48.666 +338248,65.097,46.423 +338249,66.519,52.834 +338250,65.787,50.781 +338251,64.926,48.642 +338252,63.902,46.408 +338253,65.155,52.794 +338254,64.474,50.748 +338255,63.669,48.619 +338256,62.708,46.395 +338257,63.79,52.752 +338258,63.16,50.716 +338259,62.412,48.596 +338260,61.515,46.384 +338261,62.425,52.709 +338262,61.847,50.682 +338263,61.155,48.574 +338264,60.322,46.375 +338265,61.059,52.664 +338266,60.533,50.648 +338267,59.899,48.553 +338268,59.13,46.367 +338269,59.693,52.617 +338270,59.22,50.614 +338271,58.643,48.532 +338272,57.938,46.361 +338273,58.326,52.569 +338274,57.906,50.579 +338275,57.388,48.512 +338276,56.747,46.357 +338277,56.96,52.519 +338278,56.593,50.544 +338279,56.132,48.492 +338280,55.556,46.355 +338281,55.593,52.468 +338282,55.279,50.508 +338283,54.877,48.473 +338284,54.366,46.354 +338285,54.225,52.415 +338286,53.965,50.472 +338287,53.622,48.454 +338288,53.176,46.355 +338289,52.858,52.361 +338290,52.651,50.435 +338291,52.367,48.436 +338292,51.986,46.358 +338293,51.49,52.305 +338294,51.338,50.397 +338295,51.112,48.419 +338296,50.797,46.363 +338297,50.122,52.247 +338298,50.024,50.359 +338299,49.857,48.402 +338300,49.607,46.369 +338301,48.754,52.188 +338302,48.71,50.321 +338303,48.603,48.386 +338304,48.418,46.377 +338305,47.386,52.128 +338306,47.397,50.282 +338307,47.348,48.37 +338308,47.228,46.386 +338309,46.019,52.066 +338310,46.083,50.242 +338311,46.094,48.355 +338312,46.039,46.397 +338313,44.651,52.002 +338314,44.77,50.202 +338315,44.839,48.34 +338316,44.849,46.41 +338317,43.283,51.937 +338318,43.456,50.162 +338319,43.585,48.326 +338320,43.66,46.424 +338321,41.915,51.871 +338322,42.143,50.121 +338323,42.331,48.312 +338324,42.47,46.44 +338325,40.547,51.803 +338326,40.83,50.08 +338327,41.076,48.299 +338328,41.279,46.457 +338329,39.179,51.734 +338330,39.517,50.038 +338331,39.822,48.287 +338332,40.089,46.476 +338333,37.812,51.663 +338334,38.204,49.996 +338335,38.568,48.275 +338336,38.898,46.496 +338337,36.445,51.591 +338338,36.891,49.953 +338339,37.313,48.263 +338340,37.706,46.518 +338341,35.078,51.518 +338342,35.579,49.91 +338343,36.059,48.252 +338344,36.514,46.541 +338345,33.711,51.443 +338346,34.266,49.866 +338347,34.804,48.241 +338348,35.321,46.566 +338349,32.345,51.367 +338350,32.954,49.822 +338351,33.55,48.231 +338352,34.128,46.591 +338353,30.979,51.29 +338354,31.643,49.778 +338355,32.295,48.221 +338356,32.934,46.618 +338357,29.614,51.211 +338358,30.331,49.733 +338359,31.04,48.212 +338360,31.739,46.647 +338361,28.248,51.131 +338362,29.02,49.688 +338363,29.785,48.203 +338364,30.544,46.677 +338365,26.884,51.05 +338366,27.709,49.642 +338367,28.53,48.195 +338368,29.348,46.708 +338369,25.52,50.968 +338370,26.398,49.596 +338371,27.275,48.187 +338372,28.15,46.74 +338373,24.156,50.884 +338374,25.087,49.55 +338375,26.019,48.18 +338376,26.952,46.773 +338377,22.793,50.799 +338378,23.777,49.503 +338379,24.763,48.172 +338380,25.753,46.807 +338381,21.431,50.713 +338382,22.467,49.456 +338383,23.508,48.166 +338384,24.553,46.843 +338385,20.069,50.626 +338386,21.158,49.408 +338387,22.251,48.159 +338388,23.352,46.88 +338389,18.709,50.538 +338390,19.848,49.361 +338391,20.995,48.154 +338392,22.149,46.917 +338393,17.348,50.449 +338394,18.54,49.312 +338395,19.738,48.148 +338396,20.946,46.956 +338397,15.989,50.359 +338398,17.231,49.264 +338399,18.481,48.143 +338400,19.741,46.996 +338401,14.63,50.268 +338402,15.923,49.215 +338403,17.224,48.138 +338404,18.535,47.036 +338405,13.273,50.175 +338406,14.615,49.166 +338407,15.967,48.133 +338408,17.328,47.077 +338409,11.916,50.082 +338410,13.308,49.117 +338411,14.709,48.129 +338412,16.119,47.12 +338413,10.56,49.988 +338414,12.001,49.067 +338415,13.451,48.125 +338416,14.909,47.163 +338417,9.2048,49.893 +338418,10.695,49.017 +338419,12.192,48.122 +338420,13.698,47.207 +338421,7.8509,49.797 +338422,9.3893,48.967 +338423,10.934,48.118 +338424,12.485,47.251 +338425,6.4979,49.7 +338426,8.0838,48.917 +338427,9.6743,48.115 +338428,11.271,47.297 +338429,5.1461,49.603 +338430,6.7789,48.866 +338431,8.4148,48.112 +338432,10.055,47.343 +338433,3.7953,49.504 +338434,5.4745,48.815 +338435,7.1548,48.11 +338436,8.8375,47.389 +338437,2.4457,49.405 +338438,4.1706,48.764 +338439,5.8945,48.108 +338440,7.6187,47.436 +338441,1.0973,49.306 +338442,2.8672,48.713 +338443,4.6338,48.106 +338444,6.3983,47.484 +338445,359.75,49.205 +338446,1.5643,48.662 +338447,3.3726,48.104 +338448,5.1763,47.532 +338449,358.4,49.104 +338450,0.26197,48.61 +338451,2.111,48.102 +338452,3.9526,47.581 +338453,357.06,49.003 +338454,358.96,48.559 +338455,0.84896,48.101 +338456,2.7273,47.63 +338457,355.72,48.901 +338458,357.66,48.507 +338459,359.59,48.099 +338460,1.5003,47.68 +338461,354.37,48.798 +338462,356.36,48.455 +338463,358.32,48.098 +338464,0.27161,47.729 +338465,353.03,48.695 +338466,355.06,48.403 +338467,357.06,48.097 +338468,359.04,47.78 +338469,351.69,48.591 +338470,353.76,48.351 +338471,355.8,48.096 +338472,357.81,47.83 +338473,350.36,48.487 +338474,352.46,48.298 +338475,354.53,48.096 +338476,356.58,47.881 +338477,349.02,48.383 +338478,351.16,48.246 +338479,353.27,48.095 +338480,355.34,47.932 +338481,347.69,48.278 +338482,349.86,48.193 +338483,352,48.094 +338484,354.1,47.983 +338485,346.35,48.173 +338486,348.57,48.141 +338487,350.74,48.094 +338488,352.86,48.034 +338489,345.02,48.068 +338490,347.27,48.089 +338491,349.47,48.094 +338492,351.62,48.085 +338493,343.69,47.962 +338494,345.98,48.036 +338495,348.2,48.093 +338496,350.38,48.136 +338497,342.36,47.857 +338498,344.68,47.983 +338499,346.94,48.093 +338500,349.13,48.187 +338501,341.04,47.751 +338502,343.39,47.931 +338503,345.67,48.093 +338504,347.89,48.238 +338505,339.71,47.645 +338506,342.09,47.878 +338507,344.4,48.093 +338508,346.64,48.29 +338509,338.39,47.539 +338510,340.8,47.826 +338511,343.13,48.092 +338512,345.39,48.341 +338513,337.07,47.433 +338514,339.51,47.774 +338515,341.86,48.092 +338516,344.14,48.391 +338517,335.75,47.328 +338518,338.22,47.721 +338519,340.59,48.092 +338520,342.88,48.442 +338521,334.43,47.222 +338522,336.92,47.669 +338523,339.32,48.092 +338524,341.63,48.492 +338525,333.12,47.116 +338526,335.63,47.617 +338527,338.05,48.091 +338528,340.37,48.542 +338529,331.8,47.011 +338530,334.35,47.565 +338531,336.78,48.091 +338532,339.11,48.592 +338533,330.49,46.906 +338534,333.06,47.513 +338535,335.5,48.09 +338536,337.85,48.642 +338537,329.18,46.801 +338538,331.77,47.461 +338539,334.23,48.09 +338540,336.58,48.691 +338541,327.87,46.696 +338542,330.48,47.409 +338543,332.96,48.089 +338544,335.32,48.739 +338545,326.57,46.592 +338546,329.2,47.358 +338547,331.68,48.089 +338548,334.05,48.787 +338549,325.26,46.488 +338550,327.91,47.307 +338551,330.41,48.088 +338552,332.78,48.835 +338553,323.96,46.384 +338554,326.62,47.255 +338555,329.13,48.087 +338556,331.51,48.882 +338557,322.66,46.281 +338558,325.34,47.204 +338559,327.86,48.085 +338560,330.24,48.929 +338561,321.37,46.179 +338562,324.06,47.154 +338563,326.58,48.084 +338564,328.96,48.975 +338565,320.07,46.077 +338566,322.77,47.103 +338567,325.3,48.083 +338568,327.69,49.02 +338569,318.78,45.975 +338570,321.49,47.053 +338571,324.03,48.081 +338572,326.41,49.065 +338573,317.49,45.875 +338574,320.21,47.003 +338575,322.75,48.079 +338576,325.13,49.108 +338577,316.2,45.775 +338578,318.93,46.953 +338579,321.47,48.077 +338580,323.85,49.152 +338581,314.91,45.676 +338582,317.65,46.904 +338583,320.19,48.074 +338584,322.56,49.194 +338585,313.63,45.577 +338586,316.37,46.855 +338587,318.91,48.072 +338588,321.28,49.236 +338589,312.35,45.479 +338590,315.1,46.806 +338591,317.63,48.069 +338592,319.99,49.276 +338593,311.07,45.383 +338594,313.82,46.757 +338595,316.35,48.066 +338596,318.7,49.316 +338597,309.79,45.287 +338598,312.54,46.709 +338599,315.07,48.062 +338600,317.41,49.355 +338601,308.51,45.192 +338602,311.27,46.661 +338603,313.79,48.059 +338604,316.12,49.393 +338605,307.24,45.098 +338606,309.99,46.614 +338607,312.5,48.055 +338608,314.82,49.43 +338609,305.97,45.005 +338610,308.72,46.567 +338611,311.22,48.051 +338612,313.52,49.466 +338613,304.7,44.913 +338614,307.44,46.52 +338615,309.94,48.046 +338616,312.23,49.501 +338617,303.44,44.823 +338618,306.17,46.474 +338619,308.65,48.041 +338620,310.93,49.535 +338621,302.17,44.733 +338622,304.9,46.428 +338623,307.37,48.036 +338624,309.63,49.568 +338625,300.91,44.645 +338626,303.63,46.383 +338627,306.08,48.03 +338628,308.32,49.6 +338629,299.65,44.558 +338630,302.36,46.338 +338631,304.8,48.024 +338632,307.02,49.631 +338633,298.4,44.472 +338634,301.09,46.293 +338635,303.51,48.018 +338636,305.71,49.66 +338637,297.14,44.388 +338638,299.82,46.249 +338639,302.22,48.011 +338640,304.4,49.689 +338641,295.89,44.304 +338642,298.55,46.205 +338643,300.93,48.004 +338644,303.09,49.716 +338645,294.64,44.223 +338646,297.29,46.162 +338647,299.65,47.997 +338648,301.78,49.742 +338649,293.39,44.142 +338650,296.02,46.12 +338651,298.36,47.989 +338652,300.47,49.766 +338653,292.15,44.064 +338654,294.75,46.077 +338655,297.07,47.981 +338656,299.16,49.789 +338657,290.91,43.986 +338658,293.49,46.036 +338659,295.78,47.972 +338660,297.84,49.811 +338661,289.67,43.91 +338662,292.23,45.995 +338663,294.49,47.963 +338664,296.52,49.832 +338665,288.43,43.836 +338666,290.96,45.954 +338667,293.2,47.953 +338668,295.21,49.851 +338669,287.19,43.764 +338670,289.7,45.914 +338671,291.91,47.943 +338672,293.89,49.869 +338673,285.96,43.693 +338674,288.44,45.875 +338675,290.62,47.933 +338676,292.56,49.886 +338677,284.73,43.623 +338678,287.18,45.836 +338679,289.33,47.922 +338680,291.24,49.901 +338681,283.5,43.556 +338682,285.92,45.797 +338683,288.03,47.91 +338684,289.92,49.915 +338685,282.27,43.49 +338686,284.66,45.76 +338687,286.74,47.899 +338688,288.59,49.927 +338689,281.04,43.426 +338690,283.4,45.723 +338691,285.45,47.886 +338692,287.27,49.937 +338693,279.82,43.363 +338694,282.14,45.686 +338695,284.15,47.873 +338696,285.94,49.947 +338697,278.6,43.303 +338698,280.88,45.65 +338699,282.86,47.86 +338700,284.61,49.954 +338701,277.38,43.244 +338702,279.62,45.615 +338703,281.57,47.846 +338704,283.28,49.961 +338705,276.17,43.187 +338706,278.37,45.58 +338707,280.27,47.832 +338708,281.95,49.965 +338709,274.95,43.132 +338710,277.11,45.546 +338711,278.98,47.817 +338712,280.62,49.968 +338713,273.74,43.079 +338714,275.86,45.512 +338715,277.68,47.802 +338716,279.28,49.97 +338717,272.53,43.028 +338718,274.6,45.479 +338719,276.38,47.786 +338720,277.95,49.97 +338721,271.32,42.979 +338722,273.35,45.447 +338723,275.09,47.769 +338724,276.61,49.968 +338725,270.11,42.931 +338726,272.09,45.416 +338727,273.79,47.752 +338728,275.27,49.965 +338729,268.91,42.886 +338730,270.84,45.385 +338731,272.49,47.735 +338732,273.94,49.96 +338733,267.7,42.843 +338734,269.59,45.354 +338735,271.2,47.717 +338736,272.6,49.953 +338737,266.5,42.802 +338738,268.34,45.325 +338739,269.9,47.698 +338740,271.26,49.945 +338741,265.3,42.762 +338742,267.08,45.296 +338743,268.6,47.679 +338744,269.92,49.935 +338745,264.1,42.725 +338746,265.83,45.268 +338747,267.3,47.659 +338748,268.58,49.924 +338749,262.9,42.69 +338750,264.58,45.24 +338751,266.01,47.639 +338752,267.23,49.911 +338753,261.71,42.657 +338754,263.33,45.213 +338755,264.71,47.618 +338756,265.89,49.896 +338757,260.51,42.626 +338758,262.08,45.187 +338759,263.41,47.597 +338760,264.55,49.879 +338761,259.32,42.597 +338762,260.84,45.161 +338763,262.11,47.575 +338764,263.2,49.861 +338765,258.13,42.57 +338766,259.59,45.137 +338767,260.81,47.552 +338768,261.86,49.841 +338769,256.94,42.545 +338770,258.34,45.112 +338771,259.51,47.529 +338772,260.51,49.82 +338773,255.75,42.522 +338774,257.09,45.089 +338775,258.21,47.506 +338776,259.16,49.796 +338777,254.56,42.501 +338778,255.84,45.066 +338779,256.91,47.482 +338780,257.82,49.771 +338781,253.37,42.483 +338782,254.6,45.044 +338783,255.61,47.457 +338784,256.47,49.744 +338785,252.19,42.466 +338786,253.35,45.023 +338787,254.31,47.432 +338788,255.12,49.716 +338789,251,42.452 +338790,252.1,45.002 +338791,253.01,47.406 +338792,253.77,49.686 +338793,249.82,42.439 +338794,250.86,44.982 +338795,251.71,47.379 +338796,252.42,49.654 +338797,248.64,42.429 +338798,249.61,44.962 +338799,250.41,47.352 +338800,251.07,49.621 +338801,247.45,42.421 +338802,248.37,44.944 +338803,249.11,47.325 +338804,249.72,49.585 +338805,246.27,42.414 +338806,247.12,44.926 +338807,247.81,47.297 +338808,248.37,49.548 +338809,245.09,42.41 +338810,245.88,44.908 +338811,246.51,47.268 +338812,247.02,49.51 +338813,243.91,42.408 +338814,244.63,44.892 +338815,245.21,47.239 +338816,245.67,49.469 +338817,242.73,42.408 +338818,243.39,44.876 +338819,243.91,47.209 +338820,244.31,49.427 +338821,241.55,42.41 +338822,242.15,44.861 +338823,242.61,47.179 +338824,242.96,49.384 +338825,240.37,42.414 +338826,240.9,44.846 +338827,241.31,47.148 +338828,241.61,49.338 +338829,239.19,42.42 +338830,239.66,44.832 +338831,240,47.116 +338832,240.26,49.291 +338833,238.01,42.428 +338834,238.41,44.819 +338835,238.7,47.085 +338836,238.91,49.243 +338837,236.84,42.437 +338838,237.17,44.806 +338839,237.4,47.052 +338840,237.55,49.192 +338841,235.66,42.449 +338842,235.93,44.794 +338843,236.1,47.019 +338844,236.2,49.14 +338845,234.48,42.463 +338846,234.68,44.783 +338847,234.8,46.985 +338848,234.85,49.086 +338849,233.3,42.478 +338850,233.44,44.772 +338851,233.5,46.951 +338852,233.49,49.031 +338853,232.12,42.496 +338854,232.2,44.762 +338855,232.2,46.917 +338856,232.14,48.974 +338857,230.94,42.515 +338858,230.96,44.753 +338859,230.9,46.882 +338860,230.79,48.916 +338861,229.77,42.536 +338862,229.71,44.744 +338863,229.6,46.846 +338864,229.44,48.856 +338865,228.59,42.559 +338866,228.47,44.736 +338867,228.3,46.81 +338868,228.08,48.794 +338869,227.41,42.584 +338870,227.23,44.728 +338871,227,46.773 +338872,226.73,48.731 +338873,226.23,42.61 +338874,225.98,44.721 +338875,225.7,46.736 +338876,225.38,48.666 +338877,225.05,42.638 +338878,224.74,44.715 +338879,224.4,46.699 +338880,224.03,48.6 +338881,223.87,42.668 +338882,223.5,44.709 +338883,223.1,46.661 +338884,222.68,48.532 +338885,222.69,42.699 +338886,222.26,44.704 +338887,221.8,46.622 +338888,221.33,48.463 +338889,221.5,42.732 +338890,221.01,44.699 +338891,220.5,46.583 +338892,219.98,48.392 +338893,220.32,42.767 +338894,219.77,44.695 +338895,219.2,46.544 +338896,218.62,48.32 +338897,219.14,42.803 +338898,218.53,44.692 +338899,217.9,46.504 +338900,217.27,48.246 +338901,217.95,42.84 +338902,217.28,44.689 +338903,216.61,46.463 +338904,215.93,48.171 +338905,216.77,42.879 +338906,216.04,44.686 +338907,215.31,46.423 +338908,214.58,48.095 +338909,215.58,42.92 +338910,214.8,44.684 +338911,214.01,46.381 +338912,213.23,48.017 +338913,214.4,42.962 +338914,213.55,44.683 +338915,212.71,46.34 +338916,211.88,47.938 +338917,213.21,43.005 +338918,212.31,44.682 +338919,211.42,46.298 +338920,210.53,47.857 +338921,212.02,43.05 +338922,211.06,44.682 +338923,210.12,46.255 +338924,209.19,47.775 +338925,210.83,43.096 +338926,209.82,44.682 +338927,208.82,46.213 +338928,207.84,47.692 +338929,209.64,43.143 +338930,208.57,44.682 +338931,207.53,46.169 +338932,206.49,47.608 +338933,208.45,43.192 +338934,207.33,44.683 +338935,206.23,46.126 +338936,205.15,47.522 +338937,207.25,43.241 +338938,206.08,44.685 +338939,204.93,46.082 +338940,203.81,47.435 +338941,206.06,43.292 +338942,204.84,44.687 +338943,203.64,46.038 +338944,202.46,47.347 +338945,204.86,43.344 +338946,203.59,44.689 +338947,202.34,45.993 +338948,201.12,47.258 +338949,203.67,43.397 +338950,202.34,44.692 +338951,201.05,45.948 +338952,199.78,47.168 +338953,202.47,43.451 +338954,201.1,44.695 +338955,199.76,45.903 +338956,198.44,47.077 +338957,201.27,43.506 +338958,199.85,44.699 +338959,198.46,45.858 +338960,197.1,46.984 +338961,200.06,43.562 +338962,198.6,44.702 +338963,197.17,45.812 +338964,195.76,46.891 +338965,198.86,43.618 +338966,197.36,44.707 +338967,195.88,45.766 +338968,194.43,46.797 +338969,197.66,43.676 +338970,196.11,44.711 +338971,194.59,45.72 +338972,193.09,46.701 +338973,196.45,43.734 +338974,194.86,44.716 +338975,193.3,45.673 +338976,191.75,46.605 +338977,195.24,43.794 +338978,193.61,44.722 +338979,192,45.626 +338980,190.42,46.508 +338981,194.03,43.853 +338982,192.36,44.727 +338983,190.71,45.579 +338984,189.09,46.41 +338985,192.82,43.914 +338986,191.11,44.733 +338987,189.42,45.532 +338988,187.76,46.311 +338989,191.61,43.975 +338990,189.86,44.739 +338991,188.13,45.485 +338992,186.43,46.212 +338993,190.39,44.037 +338994,188.61,44.746 +338995,186.85,45.437 +338996,185.1,46.111 +338997,189.18,44.099 +338998,187.36,44.752 +338999,185.56,45.39 +339000,183.77,46.01 +339001,187.96,44.162 +339002,186.11,44.759 +339003,184.27,45.342 +339004,182.44,45.908 +339005,186.74,44.225 +339006,184.86,44.766 +339007,182.98,45.294 +339008,181.12,45.806 +339009,185.52,44.289 +339010,183.6,44.774 +339011,181.7,45.245 +339012,179.79,45.703 +339013,184.29,44.353 +339014,182.35,44.781 +339015,180.41,45.197 +339016,178.47,45.599 +339017,183.07,44.417 +339018,181.1,44.789 +339019,179.13,45.149 +339020,177.15,45.495 +339021,181.84,44.482 +339022,179.84,44.797 +339023,177.84,45.1 +339024,175.83,45.391 +339025,180.61,44.547 +339026,178.59,44.805 +339027,176.56,45.052 +339028,174.51,45.286 +339029,179.38,44.612 +339030,177.33,44.813 +339031,175.27,45.003 +339032,173.2,45.18 +339033,178.15,44.677 +339034,176.08,44.822 +339035,173.99,44.955 +339036,171.88,45.075 +339037,176.91,44.743 +339038,174.82,44.83 +339039,172.71,44.906 +339040,170.57,44.969 +339041,175.68,44.808 +339042,173.57,44.839 +339043,171.43,44.857 +339044,169.26,44.862 +339045,174.44,44.873 +339046,172.31,44.847 +339047,170.15,44.808 +339048,167.95,44.756 +339049,173.2,44.939 +339050,171.05,44.856 +339051,168.87,44.76 +339052,166.64,44.649 +339053,171.96,45.004 +339054,169.79,44.865 +339055,167.59,44.711 +339056,165.34,44.542 +339057,170.71,45.069 +339058,168.53,44.874 +339059,166.31,44.663 +339060,164.03,44.435 +339061,169.47,45.134 +339062,167.28,44.882 +339063,165.03,44.614 +339064,162.73,44.328 +339065,168.22,45.199 +339066,166.02,44.891 +339067,163.75,44.566 +339068,161.43,44.221 +339069,166.97,45.264 +339070,164.75,44.9 +339071,162.48,44.517 +339072,160.13,44.114 +339073,165.72,45.328 +339074,163.49,44.909 +339075,161.2,44.469 +339076,158.83,44.007 +339077,164.46,45.392 +339078,162.23,44.918 +339079,159.93,44.421 +339080,157.54,43.9 +339081,163.21,45.456 +339082,160.97,44.926 +339083,158.65,44.373 +339084,156.25,43.794 +339085,161.95,45.519 +339086,159.71,44.935 +339087,157.38,44.325 +339088,154.96,43.687 +339089,160.69,45.582 +339090,158.44,44.944 +339091,156.11,44.278 +339092,153.67,43.581 +339093,159.43,45.645 +339094,157.18,44.952 +339095,154.83,44.23 +339096,152.38,43.475 +339097,158.17,45.706 +339098,155.92,44.961 +339099,153.56,44.183 +339100,151.09,43.37 +339101,156.9,45.768 +339102,154.65,44.969 +339103,152.29,44.136 +339104,149.81,43.265 +339105,155.63,45.828 +339106,153.38,44.977 +339107,151.02,44.089 +339108,148.53,43.16 +339109,154.37,45.888 +339110,152.12,44.985 +339111,149.75,44.042 +339112,147.25,43.056 +339113,153.09,45.948 +339114,150.85,44.993 +339115,148.49,43.996 +339116,145.98,42.953 +339117,151.82,46.007 +339118,149.58,45.001 +339119,147.22,43.95 +339120,144.7,42.85 +339121,150.55,46.065 +339122,148.32,45.008 +339123,145.95,43.904 +339124,143.43,42.748 +339125,149.27,46.122 +339126,147.05,45.015 +339127,144.68,43.859 +339128,142.16,42.646 +339129,147.99,46.178 +339130,145.78,45.022 +339131,143.42,43.814 +339132,140.89,42.546 +339133,146.71,46.234 +339134,144.51,45.029 +339135,142.15,43.769 +339136,139.63,42.446 +339137,145.43,46.288 +339138,143.24,45.036 +339139,140.89,43.725 +339140,138.36,42.347 +339141,144.15,46.342 +339142,141.97,45.042 +339143,139.63,43.68 +339144,137.1,42.248 +339145,142.87,46.395 +339146,140.7,45.048 +339147,138.37,43.637 +339148,135.84,42.151 +339149,141.58,46.446 +339150,139.42,45.054 +339151,137.1,43.593 +339152,134.58,42.055 +339153,140.29,46.497 +339154,138.15,45.06 +339155,135.84,43.551 +339156,133.33,41.96 +339157,139,46.547 +339158,136.88,45.065 +339159,134.58,43.508 +339160,132.08,41.866 +339161,137.71,46.596 +339162,135.6,45.07 +339163,133.32,43.466 +339164,130.83,41.773 +339165,136.42,46.643 +339166,134.33,45.075 +339167,132.07,43.425 +339168,129.58,41.681 +339169,135.12,46.69 +339170,133.06,45.079 +339171,130.81,43.383 +339172,128.33,41.59 +339173,133.83,46.735 +339174,131.78,45.083 +339175,129.55,43.343 +339176,127.09,41.501 +339177,132.53,46.779 +339178,130.51,45.086 +339179,128.3,43.303 +339180,125.85,41.413 +339181,131.23,46.822 +339182,129.23,45.09 +339183,127.04,43.263 +339184,124.61,41.326 +339185,129.93,46.863 +339186,127.95,45.092 +339187,125.78,43.224 +339188,123.37,41.241 +339189,128.62,46.903 +339190,126.68,45.095 +339191,124.53,43.185 +339192,122.14,41.157 +339193,127.32,46.942 +339194,125.4,45.097 +339195,123.28,43.147 +339196,120.9,41.075 +339197,126.02,46.98 +339198,124.12,45.099 +339199,122.02,43.11 +339200,119.67,40.994 +339201,124.71,47.016 +339202,122.84,45.1 +339203,120.77,43.073 +339204,118.45,40.915 +339205,123.4,47.051 +339206,121.56,45.101 +339207,119.52,43.036 +339208,117.22,40.837 +339209,122.09,47.085 +339210,120.28,45.101 +339211,118.27,43.001 +339212,116,40.761 +339213,120.78,47.117 +339214,119,45.101 +339215,117.02,42.965 +339216,114.78,40.687 +339217,119.47,47.147 +339218,117.72,45.101 +339219,115.77,42.931 +339220,113.56,40.614 +339221,118.16,47.177 +339222,116.44,45.1 +339223,114.52,42.897 +339224,112.34,40.544 +339225,116.84,47.204 +339226,115.16,45.098 +339227,113.28,42.863 +339228,111.12,40.475 +339229,115.53,47.23 +339230,113.88,45.096 +339231,112.03,42.831 +339232,109.91,40.407 +339233,114.21,47.255 +339234,112.6,45.094 +339235,110.78,42.799 +339236,108.7,40.342 +339237,112.89,47.278 +339238,111.31,45.091 +339239,109.54,42.767 +339240,107.49,40.279 +339241,111.57,47.3 +339242,110.03,45.088 +339243,108.29,42.736 +339244,106.28,40.218 +339245,110.25,47.32 +339246,108.75,45.084 +339247,107.05,42.706 +339248,105.08,40.158 +339249,108.93,47.338 +339250,107.46,45.079 +339251,105.8,42.677 +339252,103.87,40.101 +339253,107.61,47.355 +339254,106.18,45.074 +339255,104.56,42.648 +339256,102.67,40.045 +339257,106.28,47.37 +339258,104.9,45.069 +339259,103.31,42.62 +339260,101.47,39.992 +339261,104.96,47.383 +339262,103.61,45.063 +339263,102.07,42.593 +339264,100.27,39.941 +339265,103.63,47.395 +339266,102.33,45.056 +339267,100.83,42.566 +339268,99.078,39.892 +339269,102.31,47.405 +339270,101.04,45.049 +339271,99.588,42.541 +339272,97.883,39.845 +339273,100.98,47.413 +339274,99.755,45.042 +339275,98.347,42.515 +339276,96.69,39.8 +339277,99.654,47.42 +339278,98.469,45.034 +339279,97.106,42.491 +339280,95.499,39.757 +339281,98.325,47.425 +339282,97.183,45.025 +339283,95.866,42.467 +339284,94.309,39.717 +339285,96.996,47.428 +339286,95.897,45.016 +339287,94.626,42.444 +339288,93.12,39.679 +339289,95.665,47.43 +339290,94.611,45.006 +339291,93.387,42.422 +339292,91.933,39.643 +339293,94.335,47.429 +339294,93.324,44.996 +339295,92.149,42.401 +339296,90.748,39.609 +339297,93.003,47.428 +339298,92.037,44.985 +339299,90.91,42.38 +339300,89.563,39.578 +339301,91.671,47.424 +339302,90.75,44.973 +339303,89.672,42.36 +339304,88.38,39.548 +339305,90.338,47.418 +339306,89.462,44.961 +339307,88.435,42.341 +339308,87.198,39.521 +339309,89.005,47.411 +339310,88.175,44.948 +339311,87.198,42.323 +339312,86.018,39.497 +339313,87.671,47.402 +339314,86.887,44.935 +339315,85.961,42.305 +339316,84.838,39.475 +339317,86.336,47.391 +339318,85.599,44.921 +339319,84.724,42.288 +339320,83.659,39.455 +339321,85.001,47.379 +339322,84.311,44.907 +339323,83.488,42.272 +339324,82.482,39.437 +339325,83.666,47.364 +339326,83.023,44.892 +339327,82.252,42.257 +339328,81.305,39.422 +339329,82.33,47.348 +339330,81.735,44.876 +339331,81.017,42.242 +339332,80.129,39.409 +339333,80.994,47.33 +339334,80.446,44.86 +339335,79.781,42.228 +339336,78.954,39.398 +339337,79.658,47.31 +339338,79.158,44.844 +339339,78.546,42.215 +339340,77.78,39.39 +339341,78.321,47.289 +339342,77.87,44.826 +339343,77.311,42.203 +339344,76.606,39.384 +339345,76.984,47.266 +339346,76.581,44.809 +339347,76.077,42.192 +339348,75.433,39.38 +339349,75.647,47.24 +339350,75.293,44.79 +339351,74.842,42.181 +339352,74.26,39.378 +339353,74.31,47.214 +339354,74.004,44.771 +339355,73.608,42.171 +339356,73.088,39.379 +339357,72.972,47.185 +339358,72.715,44.751 +339359,72.374,42.162 +339360,71.916,39.382 +339361,71.634,47.154 +339362,71.427,44.731 +339363,71.14,42.154 +339364,70.744,39.388 +339365,70.297,47.122 +339366,70.138,44.711 +339367,69.906,42.146 +339368,69.573,39.396 +339369,68.959,47.088 +339370,68.85,44.689 +339371,68.672,42.139 +339372,68.402,39.406 +339373,67.621,47.053 +339374,67.561,44.667 +339375,67.439,42.133 +339376,67.231,39.418 +339377,66.283,47.015 +339378,66.273,44.645 +339379,66.205,42.128 +339380,66.06,39.432 +339381,64.946,46.976 +339382,64.984,44.622 +339383,64.972,42.123 +339384,64.889,39.449 +339385,63.608,46.935 +339386,63.696,44.598 +339387,63.738,42.119 +339388,63.718,39.468 +339389,62.271,46.892 +339390,62.408,44.574 +339391,62.505,42.116 +339392,62.546,39.489 +339393,60.933,46.848 +339394,61.12,44.55 +339395,61.271,42.113 +339396,61.375,39.512 +339397,59.596,46.802 +339398,59.832,44.525 +339399,60.038,42.112 +339400,60.203,39.537 +339401,58.259,46.754 +339402,58.544,44.499 +339403,58.804,42.111 +339404,59.03,39.564 +339405,56.923,46.704 +339406,57.256,44.473 +339407,57.571,42.111 +339408,57.858,39.594 +339409,55.586,46.653 +339410,55.969,44.446 +339411,56.337,42.111 +339412,56.684,39.625 +339413,54.25,46.6 +339414,54.682,44.419 +339415,55.103,42.112 +339416,55.511,39.659 +339417,52.915,46.546 +339418,53.394,44.391 +339419,53.869,42.114 +339420,54.336,39.694 +339421,51.58,46.49 +339422,52.108,44.362 +339423,52.635,42.117 +339424,53.161,39.732 +339425,50.245,46.432 +339426,50.821,44.334 +339427,51.401,42.12 +339428,51.985,39.771 +339429,48.911,46.373 +339430,49.534,44.304 +339431,50.167,42.124 +339432,50.809,39.812 +339433,47.577,46.312 +339434,48.248,44.275 +339435,48.932,42.128 +339436,49.631,39.855 +339437,46.244,46.249 +339438,46.962,44.244 +339439,47.698,42.133 +339440,48.453,39.9 +339441,44.912,46.186 +339442,45.677,44.214 +339443,46.463,42.139 +339444,47.273,39.947 +339445,43.58,46.12 +339446,44.391,44.182 +339447,45.228,42.146 +339448,46.093,39.995 +339449,42.248,46.053 +339450,43.106,44.151 +339451,43.992,42.153 +339452,44.911,40.045 +339453,40.918,45.985 +339454,41.822,44.119 +339455,42.757,42.16 +339456,43.729,40.097 +339457,39.588,45.915 +339458,40.537,44.086 +339459,41.521,42.169 +339460,42.545,40.15 +339461,38.259,45.843 +339462,39.253,44.053 +339463,40.285,42.177 +339464,41.36,40.205 +339465,36.931,45.771 +339466,37.97,44.02 +339467,39.048,42.187 +339468,40.174,40.262 +339469,35.603,45.697 +339470,36.686,43.986 +339471,37.811,42.197 +339472,38.986,40.32 +339473,34.277,45.621 +339474,35.404,43.952 +339475,36.574,42.207 +339476,37.797,40.379 +339477,32.951,45.544 +339478,34.121,43.917 +339479,35.337,42.219 +339480,36.606,40.44 +339481,31.626,45.466 +339482,32.839,43.882 +339483,34.099,42.23 +339484,35.415,40.502 +339485,30.303,45.387 +339486,31.557,43.847 +339487,32.861,42.242 +339488,34.221,40.566 +339489,28.98,45.306 +339490,30.276,43.811 +339491,31.622,42.255 +339492,33.026,40.631 +339493,27.658,45.224 +339494,28.995,43.775 +339495,30.383,42.268 +339496,31.83,40.697 +339497,26.338,45.141 +339498,27.715,43.739 +339499,29.144,42.282 +339500,30.632,40.764 +339501,25.018,45.057 +339502,26.435,43.702 +339503,27.904,42.296 +339504,29.432,40.833 +339505,23.7,44.972 +339506,25.156,43.665 +339507,26.664,42.31 +339508,28.231,40.902 +339509,22.383,44.885 +339510,23.877,43.628 +339511,25.423,42.325 +339512,27.028,40.973 +339513,21.067,44.798 +339514,22.599,43.591 +339515,24.182,42.341 +339516,25.823,41.045 +339517,19.752,44.709 +339518,21.321,43.553 +339519,22.94,42.356 +339520,24.617,41.117 +339521,18.439,44.62 +339522,20.043,43.515 +339523,21.698,42.373 +339524,23.409,41.191 +339525,17.126,44.529 +339526,18.767,43.477 +339527,20.455,42.389 +339528,22.199,41.265 +339529,15.816,44.438 +339530,17.49,43.438 +339531,19.212,42.406 +339532,20.987,41.34 +339533,14.506,44.345 +339534,16.215,43.399 +339535,17.969,42.423 +339536,19.774,41.416 +339537,13.198,44.252 +339538,14.939,43.36 +339539,16.725,42.441 +339540,18.558,41.493 +339541,11.891,44.158 +339542,13.665,43.321 +339543,15.48,42.459 +339544,17.341,41.57 +339545,10.586,44.063 +339546,12.391,43.282 +339547,14.235,42.477 +339548,16.122,41.648 +339549,9.2825,43.968 +339550,11.117,43.243 +339551,12.989,42.496 +339552,14.901,41.727 +339553,7.9803,43.872 +339554,9.8446,43.203 +339555,11.743,42.514 +339556,13.678,41.806 +339557,6.6796,43.775 +339558,8.5724,43.163 +339559,10.496,42.533 +339560,12.453,41.885 +339561,5.3805,43.677 +339562,7.3008,43.123 +339563,9.2487,42.553 +339564,11.226,41.965 +339565,4.083,43.579 +339566,6.0298,43.083 +339567,8.0007,42.572 +339568,9.9971,42.046 +339569,2.7871,43.48 +339570,4.7595,43.043 +339571,6.7522,42.592 +339572,8.7664,42.126 +339573,1.4929,43.381 +339574,3.4898,43.003 +339575,5.5031,42.612 +339576,7.5338,42.207 +339577,0.20031,43.281 +339578,2.2207,42.963 +339579,4.2534,42.632 +339580,6.2992,42.288 +339581,358.91,43.181 +339582,0.95228,42.923 +339583,3.0032,42.652 +339584,5.0627,42.37 +339585,357.62,43.081 +339586,359.68,42.883 +339587,1.7523,42.673 +339588,3.8242,42.451 +339589,356.33,42.98 +339590,358.42,42.842 +339591,0.50086,42.693 +339592,2.5837,42.533 +339593,355.05,42.879 +339594,357.15,42.802 +339595,359.25,42.714 +339596,1.3414,42.615 +339597,353.76,42.778 +339598,355.89,42.762 +339599,358,42.735 +339600,0.09703,42.696 +339601,352.48,42.676 +339602,354.62,42.722 +339603,356.74,42.756 +339604,358.85,42.778 +339605,351.2,42.575 +339606,353.36,42.682 +339607,355.49,42.777 +339608,357.6,42.86 +339609,349.92,42.473 +339610,352.09,42.642 +339611,354.23,42.798 +339612,356.35,42.941 +339613,348.65,42.371 +339614,350.83,42.602 +339615,352.98,42.819 +339616,355.1,43.022 +339617,347.37,42.269 +339618,349.57,42.562 +339619,351.72,42.84 +339620,353.85,43.104 +339621,346.1,42.167 +339622,348.3,42.522 +339623,350.47,42.861 +339624,352.59,43.184 +339625,344.83,42.066 +339626,347.04,42.482 +339627,349.21,42.882 +339628,351.33,43.265 +339629,343.56,41.964 +339630,345.78,42.443 +339631,347.95,42.903 +339632,350.07,43.345 +339633,342.29,41.863 +339634,344.52,42.404 +339635,346.7,42.924 +339636,348.81,43.425 +339637,341.03,41.762 +339638,343.27,42.365 +339639,345.44,42.945 +339640,347.55,43.504 +339641,339.77,41.661 +339642,342.01,42.326 +339643,344.18,42.966 +339644,346.28,43.583 +339645,338.51,41.56 +339646,340.75,42.287 +339647,342.92,42.987 +339648,345.02,43.661 +339649,337.25,41.46 +339650,339.49,42.249 +339651,341.66,43.008 +339652,343.75,43.739 +339653,335.99,41.36 +339654,338.24,42.21 +339655,340.4,43.028 +339656,342.48,43.816 +339657,334.74,41.261 +339658,336.98,42.172 +339659,339.13,43.049 +339660,341.2,43.892 +339661,333.48,41.162 +339662,335.73,42.135 +339663,337.87,43.069 +339664,339.93,43.968 +339665,332.23,41.064 +339666,334.47,42.097 +339667,336.61,43.089 +339668,338.65,44.043 +339669,330.98,40.967 +339670,333.22,42.06 +339671,335.34,43.109 +339672,337.37,44.118 +339673,329.74,40.87 +339674,331.97,42.023 +339675,334.08,43.129 +339676,336.1,44.191 +339677,328.49,40.774 +339678,330.72,41.987 +339679,332.82,43.149 +339680,334.81,44.264 +339681,327.25,40.678 +339682,329.46,41.951 +339683,331.55,43.168 +339684,333.53,44.336 +339685,326.01,40.584 +339686,328.21,41.915 +339687,330.29,43.188 +339688,332.25,44.407 +339689,324.77,40.49 +339690,326.96,41.88 +339691,329.02,43.207 +339692,330.96,44.477 +339693,323.54,40.397 +339694,325.71,41.845 +339695,327.75,43.225 +339696,329.67,44.546 +339697,322.31,40.306 +339698,324.47,41.81 +339699,326.48,43.244 +339700,328.38,44.614 +339701,321.07,40.215 +339702,323.22,41.776 +339703,325.22,43.262 +339704,327.09,44.681 +339705,319.84,40.125 +339706,321.97,41.743 +339707,323.95,43.28 +339708,325.8,44.747 +339709,318.62,40.037 +339710,320.72,41.71 +339711,322.68,43.298 +339712,324.51,44.811 +339713,317.39,39.95 +339714,319.48,41.677 +339715,321.41,43.315 +339716,323.21,44.875 +339717,316.17,39.864 +339718,318.23,41.645 +339719,320.14,43.332 +339720,321.91,44.938 +339721,314.95,39.779 +339722,316.99,41.613 +339723,318.87,43.349 +339724,320.62,44.999 +339725,313.73,39.695 +339726,315.75,41.582 +339727,317.6,43.365 +339728,319.32,45.059 +339729,312.51,39.613 +339730,314.5,41.551 +339731,316.33,43.381 +339732,318.01,45.118 +339733,311.29,39.533 +339734,313.26,41.521 +339735,315.05,43.397 +339736,316.71,45.175 +339737,310.08,39.454 +339738,312.02,41.492 +339739,313.78,43.412 +339740,315.41,45.231 +339741,308.87,39.376 +339742,310.78,41.463 +339743,312.51,43.427 +339744,314.1,45.286 +339745,307.66,39.3 +339746,309.54,41.434 +339747,311.23,43.441 +339748,312.8,45.34 +339749,306.45,39.225 +339750,308.29,41.406 +339751,309.96,43.455 +339752,311.49,45.392 +339753,305.25,39.152 +339754,307.06,41.379 +339755,308.69,43.469 +339756,310.18,45.442 +339757,304.04,39.081 +339758,305.82,41.353 +339759,307.41,43.482 +339760,308.87,45.492 +339761,302.84,39.012 +339762,304.58,41.327 +339763,306.14,43.495 +339764,307.56,45.539 +339765,301.64,38.944 +339766,303.34,41.301 +339767,304.86,43.507 +339768,306.25,45.586 +339769,300.44,38.879 +339770,302.1,41.277 +339771,303.59,43.519 +339772,304.93,45.63 +339773,299.25,38.815 +339774,300.86,41.253 +339775,302.31,43.53 +339776,303.62,45.674 +339777,298.05,38.753 +339778,299.63,41.229 +339779,301.03,43.541 +339780,302.31,45.715 +339781,296.86,38.692 +339782,298.39,41.207 +339783,299.75,43.551 +339784,300.99,45.755 +339785,295.67,38.634 +339786,297.16,41.185 +339787,298.48,43.561 +339788,299.67,45.794 +339789,294.48,38.578 +339790,295.92,41.164 +339791,297.2,43.571 +339792,298.35,45.831 +339793,293.29,38.524 +339794,294.69,41.143 +339795,295.92,43.58 +339796,297.04,45.866 +339797,292.1,38.472 +339798,293.45,41.123 +339799,294.64,43.588 +339800,295.72,45.9 +339801,290.91,38.422 +339802,292.22,41.104 +339803,293.36,43.596 +339804,294.4,45.932 +339805,289.73,38.375 +339806,290.98,41.086 +339807,292.09,43.603 +339808,293.07,45.962 +339809,288.55,38.329 +339810,289.75,41.068 +339811,290.81,43.61 +339812,291.75,45.99 +339813,287.37,38.286 +339814,288.52,41.052 +339815,289.53,43.616 +339816,290.43,46.017 +339817,286.18,38.245 +339818,287.29,41.035 +339819,288.25,43.622 +339820,289.11,46.042 +339821,285.01,38.206 +339822,286.05,41.02 +339823,286.97,43.627 +339824,287.78,46.066 +339825,283.83,38.169 +339826,284.82,41.006 +339827,285.69,43.632 +339828,286.46,46.088 +339829,282.65,38.135 +339830,283.59,40.992 +339831,284.41,43.636 +339832,285.13,46.107 +339833,281.47,38.103 +339834,282.36,40.979 +339835,283.13,43.639 +339836,283.81,46.126 +339837,280.3,38.073 +339838,281.13,40.967 +339839,281.85,43.642 +339840,282.48,46.142 +339841,279.12,38.046 +339842,279.9,40.955 +339843,280.56,43.645 +339844,281.15,46.157 +339845,277.95,38.021 +339846,278.67,40.945 +339847,279.28,43.647 +339848,279.83,46.169 +339849,276.78,37.999 +339850,277.44,40.935 +339851,278,43.648 +339852,278.5,46.18 +339853,275.61,37.979 +339854,276.21,40.926 +339855,276.72,43.648 +339856,277.17,46.19 +339857,274.43,37.961 +339858,274.98,40.918 +339859,275.44,43.648 +339860,275.84,46.197 +339861,273.26,37.946 +339862,273.75,40.911 +339863,274.16,43.648 +339864,274.51,46.203 +339865,272.09,37.933 +339866,272.52,40.904 +339867,272.88,43.647 +339868,273.18,46.206 +339869,270.92,37.923 +339870,271.29,40.898 +339871,271.59,43.645 +339872,271.86,46.208 +339873,269.75,37.915 +339874,270.06,40.893 +339875,270.31,43.643 +339876,270.53,46.209 +339877,268.58,37.909 +339878,268.83,40.889 +339879,269.03,43.64 +339880,269.2,46.207 +339881,267.42,37.906 +339882,267.6,40.886 +339883,267.75,43.637 +339884,267.87,46.203 +339885,266.25,37.906 +339886,266.37,40.884 +339887,266.47,43.633 +339888,266.54,46.198 +339889,265.08,37.908 +339890,265.14,40.882 +339891,265.18,43.628 +339892,265.21,46.191 +339893,263.91,37.912 +339894,263.91,40.881 +339895,263.9,43.623 +339896,263.88,46.182 +339897,262.74,37.919 +339898,262.69,40.881 +339899,262.62,43.617 +339900,262.55,46.171 +339901,261.57,37.928 +339902,261.46,40.882 +339903,261.34,43.611 +339904,261.22,46.158 +339905,260.4,37.94 +339906,260.23,40.884 +339907,260.06,43.604 +339908,259.89,46.144 +339909,259.23,37.954 +339910,259,40.886 +339911,258.78,43.596 +339912,258.56,46.127 +339913,258.06,37.971 +339914,257.77,40.889 +339915,257.49,43.588 +339916,257.23,46.109 +339917,256.89,37.989 +339918,256.54,40.893 +339919,256.21,43.579 +339920,255.9,46.089 +339921,255.72,38.011 +339922,255.31,40.898 +339923,254.93,43.57 +339924,254.58,46.068 +339925,254.55,38.034 +339926,254.08,40.904 +339927,253.65,43.56 +339928,253.25,46.044 +339929,253.38,38.06 +339930,252.85,40.91 +339931,252.37,43.55 +339932,251.92,46.019 +339933,252.21,38.089 +339934,251.62,40.917 +339935,251.09,43.539 +339936,250.59,45.992 +339937,251.03,38.119 +339938,250.39,40.925 +339939,249.81,43.527 +339940,249.27,45.963 +339941,249.86,38.152 +339942,249.16,40.934 +339943,248.53,43.515 +339944,247.94,45.933 +339945,248.69,38.188 +339946,247.93,40.944 +339947,247.25,43.503 +339948,246.61,45.9 +339949,247.51,38.225 +339950,246.7,40.954 +339951,245.97,43.489 +339952,245.29,45.866 +339953,246.33,38.265 +339954,245.47,40.965 +339955,244.69,43.476 +339956,243.96,45.83 +339957,245.16,38.306 +339958,244.24,40.977 +339959,243.41,43.462 +339960,242.64,45.793 +339961,243.98,38.35 +339962,243.01,40.99 +339963,242.13,43.447 +339964,241.31,45.754 +339965,242.8,38.397 +339966,241.78,41.003 +339967,240.85,43.431 +339968,239.99,45.713 +339969,241.62,38.445 +339970,240.54,41.017 +339971,239.57,43.416 +339972,238.67,45.67 +339973,240.44,38.495 +339974,239.31,41.032 +339975,238.29,43.399 +339976,237.35,45.626 +339977,239.25,38.547 +339978,238.08,41.047 +339979,237.01,43.383 +339980,236.02,45.581 +339981,238.07,38.601 +339982,236.85,41.063 +339983,235.73,43.365 +339984,234.7,45.533 +339985,236.88,38.658 +339986,235.61,41.08 +339987,234.46,43.347 +339988,233.38,45.484 +339989,235.69,38.716 +339990,234.38,41.098 +339991,233.18,43.329 +339992,232.07,45.434 +339993,234.51,38.776 +339994,233.14,41.116 +339995,231.9,43.31 +339996,230.75,45.382 +339997,233.31,38.837 +339998,231.91,41.135 +339999,230.62,43.291 +340000,229.43,45.328 +340001,232.12,38.901 +340002,230.67,41.154 +340003,229.35,43.272 +340004,228.11,45.273 +340005,230.93,38.966 +340006,229.44,41.174 +340007,228.07,43.251 +340008,226.8,45.216 +340009,229.73,39.033 +340010,228.2,41.195 +340011,226.8,43.231 +340012,225.49,45.158 +340013,228.54,39.102 +340014,226.97,41.217 +340015,225.52,43.21 +340016,224.17,45.099 +340017,227.34,39.172 +340018,225.73,41.239 +340019,224.25,43.189 +340020,222.86,45.038 +340021,226.14,39.244 +340022,224.49,41.261 +340023,222.97,43.167 +340024,221.55,44.976 +340025,224.94,39.317 +340026,223.25,41.284 +340027,221.7,43.145 +340028,220.24,44.912 +340029,223.73,39.392 +340030,222.02,41.308 +340031,220.42,43.122 +340032,218.93,44.847 +340033,222.53,39.468 +340034,220.78,41.332 +340035,219.15,43.099 +340036,217.63,44.781 +340037,221.32,39.546 +340038,219.54,41.357 +340039,217.88,43.076 +340040,216.32,44.713 +340041,220.11,39.625 +340042,218.3,41.382 +340043,216.61,43.052 +340044,215.01,44.644 +340045,218.9,39.705 +340046,217.06,41.408 +340047,215.33,43.028 +340048,213.71,44.574 +340049,217.69,39.787 +340050,215.82,41.435 +340051,214.06,43.004 +340052,212.41,44.503 +340053,216.47,39.869 +340054,214.57,41.461 +340055,212.79,42.979 +340056,211.11,44.431 +340057,215.25,39.953 +340058,213.33,41.489 +340059,211.52,42.954 +340060,209.81,44.357 +340061,214.04,40.038 +340062,212.09,41.516 +340063,210.25,42.929 +340064,208.51,44.282 +340065,212.81,40.124 +340066,210.85,41.545 +340067,208.98,42.904 +340068,207.22,44.207 +340069,211.59,40.211 +340070,209.6,41.573 +340071,207.72,42.878 +340072,205.92,44.13 +340073,210.37,40.299 +340074,208.36,41.602 +340075,206.45,42.852 +340076,204.63,44.052 +340077,209.14,40.388 +340078,207.11,41.632 +340079,205.18,42.826 +340080,203.33,43.973 +340081,207.91,40.478 +340082,205.87,41.661 +340083,203.91,42.799 +340084,202.04,43.894 +340085,206.68,40.568 +340086,204.62,41.692 +340087,202.65,42.772 +340088,200.76,43.813 +340089,205.45,40.659 +340090,203.37,41.722 +340091,201.38,42.746 +340092,199.47,43.732 +340093,204.21,40.751 +340094,202.12,41.753 +340095,200.12,42.719 +340096,198.18,43.65 +340097,202.98,40.843 +340098,200.88,41.784 +340099,198.85,42.691 +340100,196.9,43.567 +340101,201.74,40.937 +340102,199.63,41.816 +340103,197.59,42.664 +340104,195.62,43.483 +340105,200.5,41.03 +340106,198.38,41.847 +340107,196.33,42.636 +340108,194.34,43.399 +340109,199.25,41.124 +340110,197.13,41.879 +340111,195.06,42.609 +340112,193.06,43.314 +340113,198.01,41.219 +340114,195.87,41.912 +340115,193.8,42.581 +340116,191.78,43.228 +340117,196.76,41.314 +340118,194.62,41.944 +340119,192.54,42.553 +340120,190.5,43.142 +340121,195.51,41.409 +340122,193.37,41.977 +340123,191.28,42.525 +340124,189.23,43.055 +340125,194.26,41.505 +340126,192.12,42.01 +340127,190.02,42.497 +340128,187.96,42.967 +340129,193.01,41.6 +340130,190.86,42.043 +340131,188.76,42.469 +340132,186.69,42.88 +340133,191.75,41.696 +340134,189.61,42.076 +340135,187.5,42.441 +340136,185.42,42.791 +340137,190.5,41.792 +340138,188.35,42.11 +340139,186.24,42.413 +340140,184.16,42.703 +340141,189.24,41.889 +340142,187.1,42.143 +340143,184.98,42.385 +340144,182.89,42.614 +340145,187.98,41.985 +340146,185.84,42.177 +340147,183.73,42.357 +340148,181.63,42.525 +340149,186.71,42.081 +340150,184.58,42.211 +340151,182.47,42.329 +340152,180.37,42.435 +340153,185.45,42.177 +340154,183.33,42.245 +340155,181.21,42.301 +340156,179.11,42.346 +340157,184.18,42.273 +340158,182.07,42.279 +340159,179.96,42.273 +340160,177.85,42.256 +340161,182.91,42.369 +340162,180.81,42.313 +340163,178.7,42.245 +340164,176.6,42.166 +340165,181.64,42.465 +340166,179.55,42.347 +340167,177.45,42.217 +340168,175.34,42.076 +340169,180.37,42.561 +340170,178.29,42.381 +340171,176.2,42.189 +340172,174.09,41.986 +340173,179.1,42.656 +340174,177.03,42.415 +340175,174.94,42.162 +340176,172.84,41.897 +340177,177.82,42.751 +340178,175.77,42.449 +340179,173.69,42.134 +340180,171.6,41.807 +340181,176.54,42.845 +340182,174.5,42.483 +340183,172.44,42.107 +340184,170.35,41.717 +340185,175.26,42.939 +340186,173.24,42.517 +340187,171.19,42.08 +340188,169.11,41.628 +340189,173.98,43.033 +340190,171.98,42.551 +340191,169.94,42.053 +340192,167.87,41.538 +340193,172.7,43.126 +340194,170.71,42.585 +340195,168.69,42.026 +340196,166.63,41.45 +340197,171.41,43.219 +340198,169.45,42.619 +340199,167.44,42 +340200,165.39,41.361 +340201,170.13,43.311 +340202,168.18,42.653 +340203,166.19,41.974 +340204,164.16,41.273 +340205,168.84,43.402 +340206,166.92,42.687 +340207,164.95,41.948 +340208,162.92,41.185 +340209,167.55,43.493 +340210,165.65,42.72 +340211,163.7,41.922 +340212,161.69,41.098 +340213,166.26,43.583 +340214,164.38,42.754 +340215,162.45,41.897 +340216,160.46,41.011 +340217,164.96,43.672 +340218,163.11,42.787 +340219,161.21,41.871 +340220,159.23,40.925 +340221,163.67,43.761 +340222,161.85,42.82 +340223,159.96,41.847 +340224,158.01,40.839 +340225,162.37,43.849 +340226,160.58,42.853 +340227,158.72,41.822 +340228,156.79,40.754 +340229,161.08,43.935 +340230,159.31,42.886 +340231,157.47,41.798 +340232,155.56,40.67 +340233,159.78,44.021 +340234,158.04,42.918 +340235,156.23,41.774 +340236,154.35,40.587 +340237,158.48,44.106 +340238,156.77,42.95 +340239,154.99,41.751 +340240,153.13,40.504 +340241,157.17,44.19 +340242,155.49,42.982 +340243,153.74,41.728 +340244,151.91,40.422 +340245,155.87,44.273 +340246,154.22,43.014 +340247,152.5,41.705 +340248,150.7,40.342 +340249,154.57,44.355 +340250,152.95,43.046 +340251,151.26,41.683 +340252,149.49,40.262 +340253,153.26,44.436 +340254,151.68,43.077 +340255,150.02,41.661 +340256,148.28,40.183 +340257,151.95,44.516 +340258,150.4,43.108 +340259,148.78,41.64 +340260,147.07,40.105 +340261,150.64,44.595 +340262,149.13,43.139 +340263,147.54,41.619 +340264,145.86,40.029 +340265,149.33,44.673 +340266,147.85,43.169 +340267,146.3,41.598 +340268,144.66,39.953 +340269,148.02,44.749 +340270,146.58,43.199 +340271,145.06,41.578 +340272,143.45,39.879 +340273,146.71,44.824 +340274,145.3,43.229 +340275,143.82,41.559 +340276,142.25,39.806 +340277,145.4,44.898 +340278,144.03,43.258 +340279,142.59,41.54 +340280,141.05,39.735 +340281,144.08,44.97 +340282,142.75,43.287 +340283,141.35,41.522 +340284,139.86,39.665 +340285,142.77,45.042 +340286,141.47,43.315 +340287,140.11,41.504 +340288,138.66,39.596 +340289,141.45,45.112 +340290,140.2,43.344 +340291,138.87,41.487 +340292,137.46,39.528 +340293,140.13,45.18 +340294,138.92,43.371 +340295,137.64,41.47 +340296,136.27,39.463 +340297,138.81,45.247 +340298,137.64,43.399 +340299,136.4,41.454 +340300,135.08,39.398 +340301,137.49,45.313 +340302,136.36,43.426 +340303,135.17,41.438 +340304,133.89,39.335 +340305,136.17,45.377 +340306,135.08,43.452 +340307,133.93,41.423 +340308,132.7,39.274 +340309,134.85,45.44 +340310,133.81,43.478 +340311,132.7,41.409 +340312,131.52,39.215 +340313,133.53,45.502 +340314,132.53,43.504 +340315,131.46,41.396 +340316,130.33,39.157 +340317,132.21,45.562 +340318,131.25,43.529 +340319,130.23,41.383 +340320,129.15,39.101 +340321,130.88,45.62 +340322,129.97,43.554 +340323,129,41.37 +340324,127.96,39.047 +340325,129.56,45.677 +340326,128.69,43.578 +340327,127.76,41.358 +340328,126.78,38.995 +340329,128.23,45.732 +340330,127.4,43.602 +340331,126.53,41.347 +340332,125.6,38.944 +340333,126.91,45.786 +340334,126.12,43.626 +340335,125.3,41.337 +340336,124.42,38.896 +340337,125.58,45.838 +340338,124.84,43.648 +340339,124.07,41.327 +340340,123.24,38.849 +340341,124.25,45.888 +340342,123.56,43.671 +340343,122.83,41.318 +340344,122.06,38.805 +340345,122.93,45.937 +340346,122.28,43.693 +340347,121.6,41.31 +340348,120.89,38.762 +340349,121.6,45.984 +340350,121,43.714 +340351,120.37,41.303 +340352,119.71,38.721 +340353,120.27,46.029 +340354,119.71,43.735 +340355,119.14,41.296 +340356,118.54,38.683 +340357,118.94,46.073 +340358,118.43,43.755 +340359,117.91,41.29 +340360,117.36,38.647 +340361,117.61,46.115 +340362,117.15,43.775 +340363,116.68,41.284 +340364,116.19,38.612 +340365,116.28,46.155 +340366,115.87,43.794 +340367,115.44,41.28 +340368,115.02,38.58 +340369,114.95,46.194 +340370,114.58,43.813 +340371,114.21,41.276 +340372,113.85,38.55 +340373,113.62,46.231 +340374,113.3,43.831 +340375,112.98,41.273 +340376,112.67,38.523 +340377,112.29,46.266 +340378,112.02,43.848 +340379,111.75,41.27 +340380,111.5,38.497 +340381,110.95,46.299 +340382,110.73,43.865 +340383,110.52,41.269 +340384,110.33,38.474 +340385,109.62,46.331 +340386,109.45,43.882 +340387,109.29,41.268 +340388,109.16,38.453 +340389,108.29,46.361 +340390,108.16,43.897 +340391,108.06,41.268 +340392,107.99,38.435 +340393,106.96,46.389 +340394,106.88,43.913 +340395,106.83,41.269 +340396,106.82,38.419 +340397,105.63,46.415 +340398,105.6,43.927 +340399,105.6,41.27 +340400,105.65,38.405 +340401,104.29,46.44 +340402,104.31,43.942 +340403,104.37,41.273 +340404,104.48,38.393 +340405,102.96,46.462 +340406,103.03,43.955 +340407,103.14,41.276 +340408,103.31,38.384 +340409,101.63,46.483 +340410,101.74,43.968 +340411,101.91,41.28 +340412,102.14,38.377 +340413,100.3,46.502 +340414,100.46,43.981 +340415,100.68,41.284 +340416,100.97,38.373 +340417,98.965,46.52 +340418,99.175,43.992 +340419,99.447,41.29 +340420,99.805,38.371 +340421,97.633,46.535 +340422,97.891,44.004 +340423,98.216,41.296 +340424,98.635,38.371 +340425,96.301,46.549 +340426,96.607,44.014 +340427,96.985,41.303 +340428,97.464,38.374 +340429,94.97,46.56 +340430,95.323,44.024 +340431,95.754,41.311 +340432,96.293,38.379 +340433,93.638,46.57 +340434,94.039,44.034 +340435,94.523,41.32 +340436,95.122,38.387 +340437,92.307,46.579 +340438,92.755,44.043 +340439,93.291,41.33 +340440,93.95,38.397 +340441,90.976,46.585 +340442,91.471,44.051 +340443,92.06,41.34 +340444,92.778,38.409 +340445,89.645,46.589 +340446,90.187,44.059 +340447,90.828,41.351 +340448,91.604,38.424 +340449,88.315,46.592 +340450,88.904,44.066 +340451,89.596,41.363 +340452,90.431,38.442 +340453,86.985,46.593 +340454,87.62,44.072 +340455,88.363,41.376 +340456,89.256,38.461 +340457,85.655,46.592 +340458,86.337,44.078 +340459,87.131,41.389 +340460,88.08,38.483 +340461,84.326,46.59 +340462,85.053,44.084 +340463,85.898,41.404 +340464,86.904,38.508 +340465,82.997,46.585 +340466,83.77,44.089 +340467,84.664,41.419 +340468,85.726,38.534 +340469,81.669,46.579 +340470,82.487,44.093 +340471,83.431,41.435 +340472,84.548,38.564 +340473,80.342,46.571 +340474,81.205,44.097 +340475,82.197,41.451 +340476,83.368,38.595 +340477,79.015,46.561 +340478,79.922,44.1 +340479,80.963,41.469 +340480,82.187,38.629 +340481,77.689,46.55 +340482,78.64,44.102 +340483,79.728,41.487 +340484,81.005,38.665 +340485,76.363,46.536 +340486,77.358,44.104 +340487,78.493,41.506 +340488,79.822,38.703 +340489,75.038,46.521 +340490,76.076,44.106 +340491,77.258,41.526 +340492,78.638,38.744 +340493,73.714,46.504 +340494,74.794,44.107 +340495,76.022,41.546 +340496,77.452,38.787 +340497,72.39,46.486 +340498,73.513,44.107 +340499,74.786,41.568 +340500,76.264,38.832 +340501,71.068,46.466 +340502,72.232,44.107 +340503,73.549,41.59 +340504,75.075,38.879 +340505,69.746,46.444 +340506,70.951,44.106 +340507,72.312,41.613 +340508,73.885,38.929 +340509,68.425,46.42 +340510,69.67,44.105 +340511,71.074,41.636 +340512,72.693,38.98 +340513,67.105,46.395 +340514,68.39,44.103 +340515,69.836,41.66 +340516,71.499,39.034 +340517,65.786,46.368 +340518,67.11,44.101 +340519,68.597,41.685 +340520,70.304,39.09 +340521,64.468,46.34 +340522,65.831,44.098 +340523,67.358,41.711 +340524,69.107,39.148 +340525,63.151,46.31 +340526,64.552,44.095 +340527,66.119,41.737 +340528,67.908,39.208 +340529,61.835,46.278 +340530,63.273,44.091 +340531,64.878,41.764 +340532,66.707,39.27 +340533,60.52,46.245 +340534,61.994,44.087 +340535,63.638,41.792 +340536,65.505,39.333 +340537,59.206,46.21 +340538,60.716,44.082 +340539,62.396,41.82 +340540,64.3,39.399 +340541,57.893,46.174 +340542,59.439,44.076 +340543,61.154,41.849 +340544,63.094,39.467 +340545,56.581,46.136 +340546,58.161,44.071 +340547,59.912,41.879 +340548,61.886,39.536 +340549,55.271,46.097 +340550,56.885,44.065 +340551,58.669,41.909 +340552,60.676,39.607 +340553,53.961,46.056 +340554,55.608,44.058 +340555,57.425,41.94 +340556,59.464,39.68 +340557,52.653,46.014 +340558,54.332,44.051 +340559,56.181,41.972 +340560,58.25,39.755 +340561,51.347,45.97 +340562,53.057,44.043 +340563,54.936,42.004 +340564,57.034,39.831 +340565,50.041,45.925 +340566,51.782,44.035 +340567,53.69,42.037 +340568,55.816,39.909 +340569,48.737,45.879 +340570,50.507,44.027 +340571,52.444,42.07 +340572,54.596,39.989 +340573,47.434,45.831 +340574,49.233,44.018 +340575,51.197,42.104 +340576,53.374,40.07 +340577,46.133,45.782 +340578,47.959,44.009 +340579,49.95,42.138 +340580,52.149,40.153 +340581,44.833,45.732 +340582,46.686,44 +340583,48.702,42.173 +340584,50.923,40.237 +340585,43.534,45.68 +340586,45.413,43.99 +340587,47.453,42.209 +340588,49.694,40.322 +340589,42.237,45.627 +340590,44.141,43.98 +340591,46.203,42.245 +340592,48.464,40.409 +340593,40.942,45.573 +340594,42.869,43.969 +340595,44.953,42.281 +340596,47.231,40.497 +340597,39.647,45.518 +340598,41.598,43.958 +340599,43.702,42.318 +340600,45.996,40.587 +340601,38.355,45.462 +340602,40.327,43.947 +340603,42.45,42.356 +340604,44.759,40.677 +340605,37.064,45.404 +340606,39.057,43.935 +340607,41.198,42.394 +340608,43.519,40.769 +340609,35.775,45.345 +340610,37.788,43.924 +340611,39.945,42.432 +340612,42.278,40.862 +340613,34.487,45.286 +340614,36.518,43.911 +340615,38.691,42.471 +340616,41.034,40.956 +340617,33.201,45.225 +340618,35.25,43.899 +340619,37.437,42.51 +340620,39.789,41.051 +340621,31.916,45.163 +340622,33.982,43.886 +340623,36.181,42.55 +340624,38.541,41.147 +340625,30.633,45.101 +340626,32.715,43.873 +340627,34.925,42.59 +340628,37.291,41.244 +340629,29.352,45.037 +340630,31.448,43.86 +340631,33.669,42.63 +340632,36.038,41.342 +340633,28.073,44.973 +340634,30.181,43.847 +340635,32.411,42.671 +340636,34.784,41.44 +340637,26.795,44.908 +340638,28.916,43.833 +340639,31.153,42.712 +340640,33.527,41.54 +340641,25.519,44.841 +340642,27.651,43.819 +340643,29.894,42.754 +340644,32.269,41.64 +340645,24.245,44.775 +340646,26.386,43.805 +340647,28.635,42.795 +340648,31.008,41.741 +340649,22.972,44.707 +340650,25.122,43.791 +340651,27.374,42.837 +340652,29.745,41.842 +340653,21.702,44.639 +340654,23.859,43.777 +340655,26.113,42.88 +340656,28.48,41.944 +340657,20.433,44.57 +340658,22.596,43.762 +340659,24.852,42.922 +340660,27.213,42.047 +340661,19.166,44.5 +340662,21.334,43.748 +340663,23.589,42.965 +340664,25.944,42.15 +340665,17.901,44.43 +340666,20.072,43.733 +340667,22.326,43.008 +340668,24.673,42.253 +340669,16.638,44.359 +340670,18.811,43.718 +340671,21.062,43.052 +340672,23.399,42.357 +340673,15.376,44.288 +340674,17.55,43.703 +340675,19.797,43.095 +340676,22.124,42.461 +340677,14.117,44.216 +340678,16.29,43.689 +340679,18.532,43.139 +340680,20.847,42.565 +340681,12.859,44.144 +340682,15.031,43.674 +340683,17.265,43.183 +340684,19.568,42.67 +340685,11.603,44.072 +340686,13.772,43.658 +340687,15.998,43.227 +340688,18.286,42.775 +340689,10.35,43.999 +340690,12.514,43.643 +340691,14.731,43.271 +340692,17.003,42.88 +340693,9.0977,43.925 +340694,11.257,43.628 +340695,13.462,43.315 +340696,15.718,42.985 +340697,7.8477,43.852 +340698,9.9999,43.613 +340699,12.193,43.359 +340700,14.431,43.09 +340701,6.5997,43.778 +340702,8.7436,43.598 +340703,10.924,43.404 +340704,13.142,43.195 +340705,5.3535,43.705 +340706,7.4878,43.583 +340707,9.6532,43.449 +340708,11.852,43.3 +340709,4.1093,43.631 +340710,6.2326,43.568 +340711,8.3821,43.493 +340712,10.559,43.405 +340713,2.867,43.557 +340714,4.978,43.553 +340715,7.1103,43.538 +340716,9.265,43.51 +340717,1.6266,43.483 +340718,3.724,43.538 +340719,5.8377,43.583 +340720,7.9689,43.615 +340721,0.38821,43.409 +340722,2.4705,43.524 +340723,4.5645,43.627 +340724,6.671,43.719 +340725,359.15,43.335 +340726,1.2177,43.509 +340727,3.2907,43.672 +340728,5.3715,43.823 +340729,357.92,43.261 +340730,359.97,43.494 +340731,2.0161,43.717 +340732,4.0702,43.927 +340733,356.68,43.187 +340734,358.71,43.48 +340735,0.74096,43.761 +340736,2.7673,44.03 +340737,355.45,43.113 +340738,357.46,43.466 +340739,359.47,43.806 +340740,1.4627,44.133 +340741,354.22,43.04 +340742,356.21,43.452 +340743,358.19,43.851 +340744,0.15657,44.236 +340745,353,42.967 +340746,354.96,43.438 +340747,356.91,43.895 +340748,358.85,44.338 +340749,351.77,42.894 +340750,353.71,43.424 +340751,355.63,43.939 +340752,357.54,44.44 +340753,350.55,42.822 +340754,352.46,43.411 +340755,354.36,43.984 +340756,356.23,44.541 +340757,349.33,42.75 +340758,351.21,43.397 +340759,353.08,44.028 +340760,354.92,44.641 +340761,348.11,42.678 +340762,349.97,43.384 +340763,351.8,44.072 +340764,353.6,44.741 +340765,346.89,42.607 +340766,348.72,43.372 +340767,350.52,44.116 +340768,352.29,44.84 +340769,345.68,42.537 +340770,347.47,43.359 +340771,349.24,44.159 +340772,350.97,44.938 +340773,344.46,42.467 +340774,346.23,43.347 +340775,347.95,44.203 +340776,349.65,45.035 +340777,343.25,42.398 +340778,344.98,43.335 +340779,346.67,44.246 +340780,348.33,45.132 +340781,342.04,42.329 +340782,343.73,43.323 +340783,345.39,44.29 +340784,347.01,45.228 +340785,340.83,42.262 +340786,342.49,43.312 +340787,344.11,44.332 +340788,345.69,45.323 +340789,339.62,42.195 +340790,341.24,43.301 +340791,342.82,44.375 +340792,344.37,45.417 +340793,338.42,42.129 +340794,340,43.291 +340795,341.54,44.418 +340796,343.04,45.51 +340797,337.21,42.063 +340798,338.76,43.281 +340799,340.26,44.46 +340800,341.72,45.602 +340801,336.01,41.999 +340802,337.51,43.271 +340803,338.97,44.502 +340804,340.39,45.693 +340805,334.81,41.936 +340806,336.27,43.262 +340807,337.69,44.543 +340808,339.06,45.784 +340809,333.61,41.873 +340810,335.03,43.253 +340811,336.4,44.585 +340812,337.74,45.873 +340813,332.41,41.812 +340814,333.78,43.244 +340815,335.11,44.626 +340816,336.41,45.96 +340817,331.22,41.752 +340818,332.54,43.236 +340819,333.83,44.666 +340820,335.07,46.047 +340821,330.02,41.693 +340822,331.3,43.228 +340823,332.54,44.707 +340824,333.74,46.133 +340825,328.83,41.635 +340826,330.06,43.221 +340827,331.25,44.747 +340828,332.41,46.217 +340829,327.64,41.578 +340830,328.82,43.214 +340831,329.96,44.787 +340832,331.08,46.3 +340833,326.45,41.523 +340834,327.58,43.208 +340835,328.67,44.826 +340836,329.74,46.382 +340837,325.26,41.469 +340838,326.34,43.202 +340839,327.39,44.865 +340840,328.41,46.463 +340841,324.07,41.416 +340842,325.1,43.197 +340843,326.1,44.903 +340844,327.07,46.542 +340845,322.89,41.365 +340846,323.86,43.193 +340847,324.81,44.942 +340848,325.73,46.62 +340849,321.7,41.315 +340850,322.62,43.188 +340851,323.52,44.979 +340852,324.4,46.697 +340853,320.52,41.267 +340854,321.38,43.185 +340855,322.23,45.017 +340856,323.06,46.772 +340857,319.33,41.22 +340858,320.14,43.182 +340859,320.94,45.054 +340860,321.72,46.846 +340861,318.15,41.175 +340862,318.9,43.179 +340863,319.64,45.09 +340864,320.38,46.918 +340865,316.97,41.131 +340866,317.66,43.178 +340867,318.35,45.126 +340868,319.04,46.989 +340869,315.79,41.089 +340870,316.42,43.176 +340871,317.06,45.162 +340872,317.7,47.058 +340873,314.61,41.049 +340874,315.19,43.176 +340875,315.77,45.197 +340876,316.36,47.126 +340877,313.43,41.01 +340878,313.95,43.175 +340879,314.48,45.232 +340880,315.02,47.193 +340881,312.25,40.973 +340882,312.71,43.176 +340883,313.19,45.266 +340884,313.67,47.258 +340885,311.08,40.938 +340886,311.47,43.177 +340887,311.89,45.3 +340888,312.33,47.321 +340889,309.9,40.905 +340890,310.23,43.179 +340891,310.6,45.333 +340892,310.99,47.383 +340893,308.72,40.873 +340894,309,43.181 +340895,309.31,45.366 +340896,309.65,47.443 +340897,307.55,40.844 +340898,307.76,43.184 +340899,308.01,45.398 +340900,308.3,47.502 +340901,306.37,40.816 +340902,306.52,43.188 +340903,306.72,45.43 +340904,306.96,47.559 +340905,305.2,40.79 +340906,305.28,43.193 +340907,305.43,45.461 +340908,305.61,47.614 +340909,304.02,40.766 +340910,304.05,43.198 +340911,304.13,45.491 +340912,304.27,47.668 +340913,302.85,40.744 +340914,302.81,43.204 +340915,302.84,45.522 +340916,302.93,47.72 +340917,301.67,40.725 +340918,301.57,43.21 +340919,301.55,45.551 +340920,301.58,47.77 +340921,300.5,40.707 +340922,300.33,43.217 +340923,300.25,45.58 +340924,300.24,47.819 +340925,299.33,40.691 +340926,299.1,43.225 +340927,298.96,45.609 +340928,298.89,47.866 +340929,298.15,40.677 +340930,297.86,43.233 +340931,297.66,45.637 +340932,297.55,47.911 +340933,296.98,40.665 +340934,296.62,43.243 +340935,296.37,45.664 +340936,296.2,47.955 +340937,295.8,40.656 +340938,295.38,43.253 +340939,295.08,45.691 +340940,294.86,47.997 +340941,294.63,40.648 +340942,294.14,43.263 +340943,293.78,45.718 +340944,293.51,48.037 +340945,293.45,40.643 +340946,292.9,43.275 +340947,292.49,45.743 +340948,292.17,48.076 +340949,292.28,40.64 +340950,291.67,43.287 +340951,291.19,45.769 +340952,290.83,48.112 +340953,291.1,40.639 +340954,290.43,43.3 +340955,289.9,45.793 +340956,289.48,48.147 +340957,289.93,40.64 +340958,289.19,43.313 +340959,288.61,45.817 +340960,288.14,48.181 +340961,288.75,40.644 +340962,287.95,43.328 +340963,287.31,45.841 +340964,286.8,48.212 +340965,287.57,40.649 +340966,286.71,43.343 +340967,286.02,45.864 +340968,285.45,48.242 +340969,286.4,40.657 +340970,285.47,43.358 +340971,284.72,45.886 +340972,284.11,48.27 +340973,285.22,40.667 +340974,284.23,43.375 +340975,283.43,45.908 +340976,282.77,48.296 +340977,284.04,40.679 +340978,282.99,43.392 +340979,282.14,45.929 +340980,281.42,48.321 +340981,282.86,40.693 +340982,281.75,43.41 +340983,280.84,45.95 +340984,280.08,48.343 +340985,281.68,40.71 +340986,280.51,43.429 +340987,279.55,45.97 +340988,278.74,48.364 +340989,280.49,40.729 +340990,279.27,43.448 +340991,278.26,45.989 +340992,277.4,48.384 +340993,279.31,40.75 +340994,278.03,43.468 +340995,276.96,46.008 +340996,276.06,48.401 +340997,278.13,40.773 +340998,276.78,43.489 +340999,275.67,46.027 +341000,274.72,48.417 +341001,276.94,40.799 +341002,275.54,43.511 +341003,274.38,46.045 +341004,273.38,48.431 +341005,275.75,40.826 +341006,274.3,43.533 +341007,273.08,46.062 +341008,272.05,48.443 +341009,274.57,40.856 +341010,273.06,43.556 +341011,271.79,46.078 +341012,270.71,48.454 +341013,273.38,40.888 +341014,271.81,43.58 +341015,270.5,46.094 +341016,269.37,48.462 +341017,272.18,40.922 +341018,270.57,43.605 +341019,269.21,46.11 +341020,268.04,48.469 +341021,270.99,40.959 +341022,269.32,43.63 +341023,267.92,46.125 +341024,266.7,48.475 +341025,269.8,40.997 +341026,268.08,43.656 +341027,266.62,46.139 +341028,265.37,48.478 +341029,268.6,41.038 +341030,266.83,43.682 +341031,265.33,46.153 +341032,264.03,48.48 +341033,267.4,41.081 +341034,265.59,43.71 +341035,264.04,46.166 +341036,262.7,48.481 +341037,266.21,41.126 +341038,264.34,43.738 +341039,262.75,46.179 +341040,261.37,48.479 +341041,265,41.173 +341042,263.09,43.767 +341043,261.46,46.191 +341044,260.04,48.476 +341045,263.8,41.222 +341046,261.85,43.796 +341047,260.17,46.203 +341048,258.71,48.472 +341049,262.6,41.273 +341050,260.6,43.826 +341051,258.88,46.214 +341052,257.38,48.465 +341053,261.39,41.326 +341054,259.35,43.857 +341055,257.59,46.225 +341056,256.05,48.457 +341057,260.18,41.381 +341058,258.1,43.888 +341059,256.3,46.235 +341060,254.72,48.448 +341061,258.97,41.438 +341062,256.85,43.921 +341063,255.01,46.244 +341064,253.4,48.436 +341065,257.76,41.497 +341066,255.6,43.953 +341067,253.73,46.253 +341068,252.07,48.424 +341069,256.55,41.558 +341070,254.35,43.987 +341071,252.44,46.262 +341072,250.75,48.409 +341073,255.33,41.621 +341074,253.09,44.021 +341075,251.15,46.27 +341076,249.43,48.393 +341077,254.11,41.686 +341078,251.84,44.056 +341079,249.86,46.278 +341080,248.11,48.376 +341081,252.89,41.752 +341082,250.59,44.091 +341083,248.58,46.285 +341084,246.79,48.357 +341085,251.67,41.821 +341086,249.33,44.127 +341087,247.29,46.291 +341088,245.47,48.337 +341089,250.45,41.891 +341090,248.08,44.163 +341091,246,46.297 +341092,244.15,48.315 +341093,249.22,41.963 +341094,246.82,44.201 +341095,244.72,46.303 +341096,242.83,48.291 +341097,247.99,42.036 +341098,245.57,44.238 +341099,243.43,46.308 +341100,241.52,48.266 +341101,246.76,42.112 +341102,244.31,44.277 +341103,242.15,46.313 +341104,240.21,48.24 +341105,245.53,42.188 +341106,243.05,44.315 +341107,240.87,46.317 +341108,238.89,48.213 +341109,244.29,42.267 +341110,241.8,44.355 +341111,239.58,46.321 +341112,237.58,48.184 +341113,243.05,42.347 +341114,240.54,44.395 +341115,238.3,46.324 +341116,236.27,48.153 +341117,241.81,42.428 +341118,239.28,44.435 +341119,237.02,46.327 +341120,234.97,48.122 +341121,240.57,42.511 +341122,238.02,44.476 +341123,235.73,46.33 +341124,233.66,48.089 +341125,239.33,42.596 +341126,236.76,44.518 +341127,234.45,46.332 +341128,232.36,48.055 +341129,238.08,42.682 +341130,235.49,44.56 +341131,233.17,46.334 +341132,231.05,48.019 +341133,236.83,42.769 +341134,234.23,44.602 +341135,231.89,46.336 +341136,229.75,47.982 +341137,235.58,42.857 +341138,232.97,44.645 +341139,230.61,46.337 +341140,228.45,47.945 +341141,234.33,42.947 +341142,231.7,44.689 +341143,229.33,46.337 +341144,227.15,47.906 +341145,233.07,43.038 +341146,230.44,44.733 +341147,228.05,46.338 +341148,225.86,47.865 +341149,231.81,43.13 +341150,229.17,44.777 +341151,226.77,46.338 +341152,224.56,47.824 +341153,230.55,43.224 +341154,227.91,44.822 +341155,225.5,46.338 +341156,223.27,47.782 +341157,229.29,43.318 +341158,226.64,44.867 +341159,224.22,46.337 +341160,221.98,47.738 +341161,228.02,43.413 +341162,225.37,44.912 +341163,222.94,46.336 +341164,220.69,47.694 +341165,226.76,43.51 +341166,224.1,44.958 +341167,221.67,46.335 +341168,219.4,47.649 +341169,225.49,43.607 +341170,222.83,45.005 +341171,220.39,46.334 +341172,218.11,47.602 +341173,224.21,43.706 +341174,221.56,45.051 +341175,219.11,46.332 +341176,216.83,47.555 +341177,222.94,43.805 +341178,220.29,45.098 +341179,217.84,46.33 +341180,215.55,47.507 +341181,221.66,43.905 +341182,219.02,45.146 +341183,216.57,46.328 +341184,214.26,47.458 +341185,220.38,44.006 +341186,217.75,45.193 +341187,215.29,46.325 +341188,212.98,47.408 +341189,219.1,44.107 +341190,216.48,45.241 +341191,214.02,46.323 +341192,211.71,47.358 +341193,217.82,44.21 +341194,215.2,45.29 +341195,212.75,46.32 +341196,210.43,47.306 +341197,216.54,44.312 +341198,213.93,45.338 +341199,211.48,46.317 +341200,209.16,47.254 +341201,215.25,44.416 +341202,212.65,45.387 +341203,210.2,46.314 +341204,207.89,47.201 +341205,213.96,44.52 +341206,211.37,45.436 +341207,208.93,46.31 +341208,206.62,47.148 +341209,212.67,44.625 +341210,210.1,45.485 +341211,207.66,46.307 +341212,205.35,47.094 +341213,211.37,44.73 +341214,208.82,45.534 +341215,206.39,46.303 +341216,204.08,47.039 +341217,210.08,44.835 +341218,207.54,45.584 +341219,205.13,46.299 +341220,202.82,46.984 +341221,208.78,44.941 +341222,206.26,45.634 +341223,203.86,46.296 +341224,201.55,46.929 +341225,207.48,45.047 +341226,204.98,45.684 +341227,202.59,46.292 +341228,200.29,46.873 +341229,206.18,45.153 +341230,203.7,45.734 +341231,201.32,46.288 +341232,199.03,46.816 +341233,204.88,45.26 +341234,202.42,45.784 +341235,200.06,46.283 +341236,197.78,46.759 +341237,203.57,45.366 +341238,201.14,45.835 +341239,198.79,46.279 +341240,196.52,46.702 +341241,202.26,45.473 +341242,199.85,45.885 +341243,197.52,46.275 +341244,195.27,46.644 +341245,200.95,45.58 +341246,198.57,45.936 +341247,196.26,46.271 +341248,194.02,46.587 +341249,199.64,45.687 +341250,197.28,45.987 +341251,194.99,46.266 +341252,192.77,46.529 +341253,198.33,45.794 +341254,196,46.037 +341255,193.73,46.262 +341256,191.52,46.47 +341257,197.01,45.901 +341258,194.71,46.088 +341259,192.47,46.258 +341260,190.27,46.412 +341261,195.7,46.008 +341262,193.43,46.139 +341263,191.21,46.254 +341264,189.03,46.354 +341265,194.38,46.115 +341266,192.14,46.19 +341267,189.94,46.249 +341268,187.79,46.295 +341269,193.06,46.222 +341270,190.85,46.241 +341271,188.68,46.245 +341272,186.55,46.237 +341273,191.74,46.328 +341274,189.56,46.292 +341275,187.42,46.241 +341276,185.31,46.178 +341277,190.42,46.434 +341278,188.27,46.342 +341279,186.16,46.237 +341280,184.07,46.12 +341281,189.09,46.54 +341282,186.98,46.393 +341283,184.9,46.233 +341284,182.84,46.061 +341285,187.76,46.646 +341286,185.69,46.444 +341287,183.64,46.229 +341288,181.61,46.003 +341289,186.44,46.751 +341290,184.4,46.495 +341291,182.38,46.226 +341292,180.38,45.945 +341293,185.11,46.855 +341294,183.11,46.545 +341295,181.12,46.222 +341296,179.15,45.887 +341297,183.78,46.96 +341298,181.82,46.596 +341299,179.86,46.219 +341300,177.92,45.83 +341301,182.44,47.063 +341302,180.52,46.646 +341303,178.61,46.216 +341304,176.7,45.772 +341305,181.11,47.167 +341306,179.23,46.697 +341307,177.35,46.213 +341308,175.47,45.716 +341309,179.77,47.269 +341310,177.93,46.747 +341311,176.09,46.21 +341312,174.25,45.659 +341313,178.44,47.371 +341314,176.64,46.797 +341315,174.84,46.207 +341316,173.03,45.603 +341317,177.1,47.473 +341318,175.34,46.847 +341319,173.58,46.205 +341320,171.81,45.547 +341321,175.76,47.573 +341322,174.05,46.896 +341323,172.33,46.202 +341324,170.59,45.492 +341325,174.42,47.673 +341326,172.75,46.946 +341327,171.07,46.2 +341328,169.38,45.438 +341329,173.08,47.772 +341330,171.45,46.995 +341331,169.82,46.199 +341332,168.17,45.384 +341333,171.74,47.871 +341334,170.16,47.044 +341335,168.56,46.197 +341336,166.95,45.331 +341337,170.39,47.968 +341338,168.86,47.093 +341339,167.31,46.196 +341340,165.74,45.278 +341341,169.05,48.065 +341342,167.56,47.142 +341343,166.06,46.195 +341344,164.53,45.226 +341345,167.7,48.161 +341346,166.26,47.19 +341347,164.8,46.195 +341348,163.33,45.175 +341349,166.36,48.256 +341350,164.96,47.238 +341351,163.55,46.195 +341352,162.12,45.125 +341353,165.01,48.35 +341354,163.66,47.286 +341355,162.3,46.195 +341356,160.92,45.076 +341357,163.66,48.443 +341358,162.36,47.334 +341359,161.05,46.195 +341360,159.71,45.027 +341361,162.31,48.534 +341362,161.06,47.381 +341363,159.79,46.196 +341364,158.51,44.98 +341365,160.96,48.625 +341366,159.76,47.428 +341367,158.54,46.197 +341368,157.31,44.933 +341369,159.61,48.715 +341370,158.46,47.474 +341371,157.29,46.199 +341372,156.11,44.887 +341373,158.26,48.804 +341374,157.16,47.521 +341375,156.04,46.201 +341376,154.91,44.843 +341377,156.9,48.891 +341378,155.85,47.567 +341379,154.79,46.203 +341380,153.72,44.799 +341381,155.55,48.978 +341382,154.55,47.612 +341383,153.54,46.206 +341384,152.52,44.757 +341385,154.2,49.063 +341386,153.25,47.658 +341387,152.29,46.209 +341388,151.33,44.716 +341389,152.84,49.147 +341390,151.94,47.702 +341391,151.04,46.213 +341392,150.13,44.676 +341393,151.49,49.23 +341394,150.64,47.747 +341395,149.79,46.217 +341396,148.94,44.637 +341397,150.13,49.311 +341398,149.34,47.791 +341399,148.54,46.222 +341400,147.75,44.599 +341401,148.77,49.391 +341402,148.03,47.835 +341403,147.29,46.227 +341404,146.56,44.563 +341405,147.42,49.47 +341406,146.73,47.878 +341407,146.04,46.232 +341408,145.37,44.528 +341409,146.06,49.548 +341410,145.42,47.921 +341411,144.8,46.238 +341412,144.18,44.495 +341413,144.7,49.624 +341414,144.12,47.963 +341415,143.55,46.245 +341416,142.99,44.463 +341417,143.34,49.698 +341418,142.81,48.006 +341419,142.3,46.252 +341420,141.81,44.432 +341421,141.98,49.772 +341422,141.51,48.047 +341423,141.05,46.259 +341424,140.62,44.403 +341425,140.62,49.844 +341426,140.2,48.088 +341427,139.8,46.267 +341428,139.43,44.375 +341429,139.27,49.914 +341430,138.89,48.129 +341431,138.55,46.276 +341432,138.25,44.349 +341433,137.91,49.983 +341434,137.59,48.169 +341435,137.3,46.285 +341436,137.06,44.324 +341437,136.55,50.051 +341438,136.28,48.209 +341439,136.06,46.295 +341440,135.88,44.301 +341441,135.19,50.117 +341442,134.98,48.248 +341443,134.81,46.305 +341444,134.69,44.28 +341445,133.83,50.182 +341446,133.67,48.287 +341447,133.56,46.316 +341448,133.51,44.26 +341449,132.47,50.245 +341450,132.36,48.325 +341451,132.31,46.327 +341452,132.33,44.242 +341453,131.11,50.307 +341454,131.05,48.363 +341455,131.06,46.339 +341456,131.14,44.225 +341457,129.75,50.367 +341458,129.75,48.4 +341459,129.81,46.352 +341460,129.96,44.211 +341461,128.38,50.425 +341462,128.44,48.437 +341463,128.57,46.365 +341464,128.78,44.198 +341465,127.02,50.482 +341466,127.13,48.473 +341467,127.32,46.379 +341468,127.59,44.187 +341469,125.66,50.537 +341470,125.83,48.509 +341471,126.07,46.393 +341472,126.41,44.177 +341473,124.3,50.591 +341474,124.52,48.544 +341475,124.82,46.408 +341476,125.23,44.169 +341477,122.94,50.643 +341478,123.21,48.579 +341479,123.57,46.424 +341480,124.04,44.164 +341481,121.58,50.694 +341482,121.9,48.613 +341483,122.32,46.44 +341484,122.86,44.16 +341485,120.22,50.743 +341486,120.6,48.647 +341487,121.07,46.457 +341488,121.67,44.157 +341489,118.87,50.79 +341490,119.29,48.68 +341491,119.82,46.474 +341492,120.49,44.157 +341493,117.51,50.835 +341494,117.98,48.713 +341495,118.57,46.492 +341496,119.3,44.159 +341497,116.15,50.879 +341498,116.68,48.745 +341499,117.32,46.511 +341500,118.12,44.162 +341501,114.79,50.922 +341502,115.37,48.776 +341503,116.07,46.53 +341504,116.93,44.168 +341505,113.43,50.962 +341506,114.06,48.807 +341507,114.82,46.55 +341508,115.75,44.175 +341509,112.07,51.002 +341510,112.76,48.838 +341511,113.57,46.571 +341512,114.56,44.184 +341513,110.72,51.039 +341514,111.45,48.867 +341515,112.32,46.592 +341516,113.37,44.195 +341517,109.36,51.075 +341518,110.14,48.897 +341519,111.07,46.614 +341520,112.18,44.209 +341521,108,51.109 +341522,108.84,48.925 +341523,109.82,46.636 +341524,110.99,44.224 +341525,106.65,51.141 +341526,107.53,48.954 +341527,108.56,46.659 +341528,109.8,44.241 +341529,105.29,51.172 +341530,106.22,48.981 +341531,107.31,46.683 +341532,108.61,44.26 +341533,103.94,51.201 +341534,104.92,49.008 +341535,106.06,46.708 +341536,107.41,44.281 +341537,102.59,51.228 +341538,103.61,49.035 +341539,104.81,46.733 +341540,106.22,44.303 +341541,101.23,51.254 +341542,102.31,49.061 +341543,103.55,46.758 +341544,105.03,44.328 +341545,99.88,51.278 +341546,101,49.086 +341547,102.3,46.785 +341548,103.83,44.355 +341549,98.529,51.301 +341550,99.695,49.111 +341551,101.04,46.812 +341552,102.63,44.384 +341553,97.178,51.322 +341554,98.39,49.136 +341555,99.789,46.839 +341556,101.43,44.415 +341557,95.828,51.341 +341558,97.085,49.159 +341559,98.533,46.868 +341560,100.23,44.447 +341561,94.479,51.358 +341562,95.781,49.183 +341563,97.277,46.897 +341564,99.028,44.482 +341565,93.131,51.374 +341566,94.477,49.205 +341567,96.021,46.926 +341568,97.824,44.518 +341569,91.784,51.389 +341570,93.173,49.227 +341571,94.764,46.956 +341572,96.619,44.557 +341573,90.437,51.401 +341574,91.869,49.249 +341575,93.507,46.987 +341576,95.412,44.597 +341577,89.092,51.412 +341578,90.566,49.27 +341579,92.249,47.019 +341580,94.204,44.64 +341581,87.747,51.422 +341582,89.263,49.29 +341583,90.99,47.051 +341584,92.993,44.684 +341585,86.404,51.43 +341586,87.96,49.31 +341587,89.731,47.083 +341588,91.781,44.73 +341589,85.062,51.436 +341590,86.658,49.33 +341591,88.471,47.117 +341592,90.567,44.778 +341593,83.721,51.441 +341594,85.356,49.349 +341595,87.211,47.151 +341596,89.352,44.828 +341597,82.381,51.444 +341598,84.054,49.367 +341599,85.95,47.185 +341600,88.134,44.879 +341601,81.042,51.446 +341602,82.753,49.385 +341603,84.688,47.22 +341604,86.915,44.933 +341605,79.704,51.446 +341606,81.452,49.403 +341607,83.426,47.256 +341608,85.693,44.988 +341609,78.367,51.444 +341610,80.152,49.42 +341611,82.163,47.292 +341612,84.47,45.045 +341613,77.032,51.442 +341614,78.852,49.436 +341615,80.9,47.329 +341616,83.244,45.104 +341617,75.698,51.437 +341618,77.552,49.452 +341619,79.636,47.366 +341620,82.017,45.164 +341621,74.365,51.431 +341622,76.253,49.467 +341623,78.371,47.404 +341624,80.787,45.226 +341625,73.033,51.424 +341626,74.954,49.482 +341627,77.106,47.443 +341628,79.555,45.29 +341629,71.703,51.415 +341630,73.656,49.497 +341631,75.84,47.482 +341632,78.322,45.356 +341633,70.374,51.405 +341634,72.358,49.511 +341635,74.573,47.522 +341636,77.085,45.423 +341637,69.047,51.394 +341638,71.06,49.524 +341639,73.305,47.562 +341640,75.847,45.491 +341641,67.721,51.381 +341642,69.764,49.537 +341643,72.037,47.603 +341644,74.607,45.562 +341645,66.396,51.367 +341646,68.467,49.55 +341647,70.768,47.644 +341648,73.364,45.634 +341649,65.073,51.351 +341650,67.171,49.562 +341651,69.499,47.685 +341652,72.119,45.707 +341653,63.752,51.334 +341654,65.876,49.574 +341655,68.228,47.728 +341656,70.872,45.782 +341657,62.431,51.316 +341658,64.581,49.585 +341659,66.957,47.77 +341660,69.623,45.858 +341661,61.113,51.296 +341662,63.286,49.596 +341663,65.685,47.814 +341664,68.371,45.936 +341665,59.796,51.276 +341666,61.992,49.606 +341667,64.413,47.857 +341668,67.117,46.015 +341669,58.48,51.254 +341670,60.699,49.617 +341671,63.139,47.901 +341672,65.861,46.096 +341673,57.166,51.231 +341674,59.406,49.626 +341675,61.865,47.946 +341676,64.602,46.177 +341677,55.854,51.206 +341678,58.113,49.636 +341679,60.59,47.991 +341680,63.341,46.261 +341681,54.543,51.181 +341682,56.821,49.645 +341683,59.315,48.036 +341684,62.078,46.345 +341685,53.234,51.154 +341686,55.53,49.653 +341687,58.038,48.082 +341688,60.812,46.43 +341689,51.927,51.127 +341690,54.239,49.661 +341691,56.761,48.128 +341692,59.544,46.517 +341693,50.621,51.098 +341694,52.949,49.669 +341695,55.483,48.175 +341696,58.274,46.605 +341697,49.317,51.068 +341698,51.659,49.677 +341699,54.204,48.222 +341700,57.001,46.694 +341701,48.015,51.037 +341702,50.37,49.684 +341703,52.925,48.269 +341704,55.726,46.784 +341705,46.714,51.006 +341706,49.081,49.691 +341707,51.645,48.317 +341708,54.449,46.875 +341709,45.415,50.973 +341710,47.793,49.698 +341711,50.364,48.365 +341712,53.169,46.967 +341713,44.118,50.939 +341714,46.506,49.704 +341715,49.082,48.414 +341716,51.887,47.06 +341717,42.823,50.905 +341718,45.219,49.71 +341719,47.799,48.462 +341720,50.603,47.154 +341721,41.529,50.869 +341722,43.933,49.716 +341723,46.516,48.512 +341724,49.317,47.249 +341725,40.238,50.833 +341726,42.647,49.721 +341727,45.232,48.561 +341728,48.028,47.345 +341729,38.948,50.796 +341730,41.362,49.727 +341731,43.947,48.611 +341732,46.737,47.441 +341733,37.659,50.758 +341734,40.077,49.732 +341735,42.661,48.661 +341736,45.444,47.538 +341737,36.373,50.719 +341738,38.793,49.736 +341739,41.375,48.711 +341740,44.149,47.636 +341741,35.089,50.68 +341742,37.51,49.741 +341743,40.087,48.761 +341744,42.851,47.735 +341745,33.806,50.64 +341746,36.227,49.745 +341747,38.799,48.812 +341748,41.551,47.834 +341749,32.525,50.599 +341750,34.945,49.75 +341751,37.51,48.863 +341752,40.249,47.934 +341753,31.246,50.558 +341754,33.663,49.754 +341755,36.221,48.914 +341756,38.945,48.034 +341757,29.969,50.516 +341758,32.382,49.758 +341759,34.931,48.965 +341760,37.639,48.135 +341761,28.694,50.474 +341762,31.101,49.761 +341763,33.639,49.017 +341764,36.331,48.236 +341765,27.421,50.431 +341766,29.821,49.765 +341767,32.348,49.068 +341768,35.02,48.338 +341769,26.149,50.387 +341770,28.542,49.768 +341771,31.055,49.12 +341772,33.708,48.44 +341773,24.88,50.343 +341774,27.263,49.771 +341775,29.762,49.172 +341776,32.393,48.542 +341777,23.612,50.299 +341778,25.985,49.775 +341779,28.468,49.224 +341780,31.077,48.645 +341781,22.346,50.255 +341782,24.707,49.778 +341783,27.173,49.277 +341784,29.758,48.748 +341785,21.082,50.21 +341786,23.43,49.781 +341787,25.877,49.329 +341788,28.438,48.851 +341789,19.82,50.164 +341790,22.154,49.784 +341791,24.581,49.381 +341792,27.116,48.954 +341793,18.56,50.119 +341794,20.878,49.787 +341795,23.284,49.434 +341796,25.791,49.058 +341797,17.302,50.073 +341798,19.602,49.789 +341799,21.987,49.486 +341800,24.465,49.161 +341801,16.045,50.027 +341802,18.327,49.792 +341803,20.688,49.539 +341804,23.137,49.265 +341805,14.79,49.981 +341806,17.053,49.795 +341807,19.389,49.592 +341808,21.808,49.368 +341809,13.538,49.935 +341810,15.779,49.798 +341811,18.089,49.644 +341812,20.476,49.472 +341813,12.287,49.889 +341814,14.506,49.801 +341815,16.789,49.697 +341816,19.143,49.575 +341817,11.037,49.843 +341818,13.233,49.804 +341819,15.488,49.75 +341820,17.808,49.678 +341821,9.7902,49.796 +341822,11.961,49.806 +341823,14.186,49.802 +341824,16.471,49.782 +341825,8.5446,49.75 +341826,10.69,49.809 +341827,12.884,49.855 +341828,15.133,49.885 +341829,7.3009,49.704 +341830,9.4184,49.812 +341831,11.581,49.907 +341832,13.793,49.987 +341833,6.0589,49.658 +341834,8.1478,49.815 +341835,10.277,49.96 +341836,12.452,50.09 +341837,4.8187,49.612 +341838,6.8776,49.818 +341839,8.9732,50.012 +341840,11.109,50.192 +341841,3.5803,49.566 +341842,5.608,49.822 +341843,7.6683,50.065 +341844,9.7647,50.294 +341845,2.3435,49.521 +341846,4.3388,49.825 +341847,6.3629,50.117 +341848,8.4188,50.395 +341849,1.1085,49.476 +341850,3.0701,49.828 +341851,5.0569,50.169 +341852,7.0715,50.496 +341853,359.88,49.431 +341854,1.8019,49.832 +341855,3.7503,50.221 +341856,5.7228,50.597 +341857,358.64,49.386 +341858,0.53407,49.836 +341859,2.4431,50.273 +341860,4.3727,50.697 +341861,357.41,49.342 +341862,359.27,49.84 +341863,1.1354,50.325 +341864,3.0214,50.796 +341865,356.19,49.298 +341866,358,49.844 +341867,359.83,50.376 +341868,1.6687,50.895 +341869,354.96,49.255 +341870,356.73,49.848 +341871,358.52,50.428 +341872,0.31481,50.993 +341873,353.73,49.212 +341874,355.47,49.852 +341875,357.21,50.479 +341876,358.96,51.091 +341877,352.51,49.169 +341878,354.2,49.857 +341879,355.9,50.53 +341880,357.6,51.188 +341881,351.29,49.128 +341882,352.94,49.862 +341883,354.59,50.581 +341884,356.25,51.284 +341885,350.07,49.086 +341886,351.67,49.867 +341887,353.28,50.632 +341888,354.89,51.38 +341889,348.85,49.046 +341890,350.41,49.872 +341891,351.97,50.682 +341892,353.53,51.475 +341893,347.63,49.006 +341894,349.14,49.878 +341895,350.66,50.732 +341896,352.17,51.569 +341897,346.41,48.967 +341898,347.88,49.883 +341899,349.34,50.782 +341900,350.81,51.662 +341901,345.2,48.929 +341902,346.62,49.89 +341903,348.03,50.832 +341904,349.44,51.754 +341905,343.98,48.891 +341906,345.35,49.896 +341907,346.72,50.881 +341908,348.08,51.846 +341909,342.77,48.854 +341910,344.09,49.903 +341911,345.4,50.93 +341912,346.72,51.936 +341913,341.56,48.818 +341914,342.83,49.91 +341915,344.09,50.979 +341916,345.35,52.026 +341917,340.35,48.783 +341918,341.56,49.917 +341919,342.78,51.028 +341920,343.98,52.114 +341921,339.14,48.749 +341922,340.3,49.925 +341923,341.46,51.076 +341924,342.62,52.202 +341925,337.93,48.716 +341926,339.04,49.933 +341927,340.15,51.124 +341928,341.25,52.288 +341929,336.73,48.683 +341930,337.78,49.941 +341931,338.83,51.171 +341932,339.88,52.374 +341933,335.52,48.652 +341934,336.52,49.95 +341935,337.52,51.218 +341936,338.51,52.458 +341937,334.32,48.622 +341938,335.26,49.959 +341939,336.2,51.265 +341940,337.14,52.541 +341941,333.11,48.593 +341942,334,49.968 +341943,334.88,51.312 +341944,335.77,52.623 +341945,331.91,48.565 +341946,332.74,49.978 +341947,333.57,51.358 +341948,334.4,52.704 +341949,330.71,48.538 +341950,331.48,49.988 +341951,332.25,51.403 +341952,333.03,52.784 +341953,329.51,48.512 +341954,330.22,49.999 +341955,330.93,51.449 +341956,331.66,52.863 +341957,328.31,48.488 +341958,328.95,50.01 +341959,329.62,51.494 +341960,330.29,52.94 +341961,327.11,48.465 +341962,327.69,50.022 +341963,328.3,51.538 +341964,328.92,53.016 +341965,325.91,48.443 +341966,326.43,50.034 +341967,326.98,51.582 +341968,327.54,53.091 +341969,324.71,48.422 +341970,325.18,50.046 +341971,325.66,51.626 +341972,326.17,53.164 +341973,323.51,48.403 +341974,323.92,50.059 +341975,324.34,51.669 +341976,324.8,53.237 +341977,322.32,48.385 +341978,322.66,50.072 +341979,323.03,51.712 +341980,323.42,53.308 +341981,321.12,48.368 +341982,321.4,50.086 +341983,321.71,51.755 +341984,322.05,53.377 +341985,319.92,48.353 +341986,320.14,50.1 +341987,320.39,51.797 +341988,320.68,53.445 +341989,318.73,48.339 +341990,318.88,50.115 +341991,319.07,51.838 +341992,319.3,53.512 +341993,317.53,48.326 +341994,317.62,50.13 +341995,317.75,51.879 +341996,317.93,53.578 +341997,316.34,48.316 +341998,316.36,50.145 +341999,316.43,51.92 +342000,316.56,53.642 +342001,315.14,48.306 +342002,315.1,50.162 +342003,315.11,51.96 +342004,315.18,53.704 +342005,313.95,48.298 +342006,313.84,50.178 +342007,313.8,51.999 +342008,313.81,53.765 +342009,312.75,48.292 +342010,312.58,50.195 +342011,312.48,52.039 +342012,312.43,53.825 +342013,311.56,48.287 +342014,311.32,50.213 +342015,311.16,52.077 +342016,311.06,53.883 +342017,310.36,48.283 +342018,310.06,50.231 +342019,309.84,52.115 +342020,309.69,53.94 +342021,309.16,48.281 +342022,308.8,50.25 +342023,308.52,52.153 +342024,308.31,53.996 +342025,307.97,48.281 +342026,307.54,50.269 +342027,307.2,52.19 +342028,306.94,54.049 +342029,306.77,48.283 +342030,306.28,50.289 +342031,305.88,52.227 +342032,305.57,54.102 +342033,305.58,48.286 +342034,305.02,50.309 +342035,304.56,52.263 +342036,304.19,54.152 +342037,304.38,48.29 +342038,303.76,50.33 +342039,303.24,52.299 +342040,302.82,54.202 +342041,303.18,48.297 +342042,302.5,50.352 +342043,301.92,52.334 +342044,301.45,54.25 +342045,301.99,48.305 +342046,301.23,50.374 +342047,300.6,52.368 +342048,300.08,54.296 +342049,300.79,48.314 +342050,299.97,50.396 +342051,299.29,52.403 +342052,298.7,54.341 +342053,299.59,48.326 +342054,298.71,50.419 +342055,297.97,52.436 +342056,297.33,54.384 +342057,298.39,48.339 +342058,297.45,50.443 +342059,296.65,52.469 +342060,295.96,54.425 +342061,297.19,48.353 +342062,296.19,50.467 +342063,295.33,52.502 +342064,294.59,54.465 +342065,295.99,48.37 +342066,294.92,50.492 +342067,294.01,52.534 +342068,293.22,54.504 +342069,294.79,48.388 +342070,293.66,50.517 +342071,292.69,52.565 +342072,291.85,54.541 +342073,293.59,48.407 +342074,292.4,50.543 +342075,291.37,52.596 +342076,290.49,54.576 +342077,292.38,48.429 +342078,291.13,50.569 +342079,290.06,52.627 +342080,289.12,54.61 +342081,291.18,48.452 +342082,289.87,50.596 +342083,288.74,52.657 +342084,287.75,54.643 +342085,289.97,48.477 +342086,288.61,50.624 +342087,287.42,52.686 +342088,286.38,54.673 +342089,288.77,48.504 +342090,287.34,50.652 +342091,286.1,52.715 +342092,285.02,54.702 +342093,287.56,48.532 +342094,286.08,50.68 +342095,284.79,52.743 +342096,283.65,54.73 +342097,286.35,48.562 +342098,284.81,50.71 +342099,283.47,52.771 +342100,282.29,54.756 +342101,285.14,48.594 +342102,283.55,50.739 +342103,282.15,52.798 +342104,280.93,54.781 +342105,283.93,48.628 +342106,282.28,50.77 +342107,280.84,52.825 +342108,279.57,54.804 +342109,282.72,48.663 +342110,281.01,50.8 +342111,279.52,52.851 +342112,278.2,54.825 +342113,281.5,48.7 +342114,279.75,50.832 +342115,278.21,52.877 +342116,276.84,54.845 +342117,280.29,48.739 +342118,278.48,50.864 +342119,276.89,52.902 +342120,275.48,54.864 +342121,279.07,48.779 +342122,277.21,50.896 +342123,275.58,52.927 +342124,274.13,54.881 +342125,277.85,48.821 +342126,275.94,50.929 +342127,274.26,52.951 +342128,272.77,54.896 +342129,276.63,48.864 +342130,274.67,50.963 +342131,272.95,52.975 +342132,271.41,54.91 +342133,275.41,48.91 +342134,273.4,50.997 +342135,271.63,52.998 +342136,270.06,54.923 +342137,274.19,48.957 +342138,272.13,51.032 +342139,270.32,53.021 +342140,268.7,54.934 +342141,272.96,49.005 +342142,270.86,51.067 +342143,269.01,53.043 +342144,267.35,54.943 +342145,271.73,49.056 +342146,269.59,51.103 +342147,267.69,53.064 +342148,266,54.951 +342149,270.51,49.107 +342150,268.32,51.139 +342151,266.38,53.086 +342152,264.65,54.958 +342153,269.27,49.161 +342154,267.04,51.176 +342155,265.07,53.106 +342156,263.3,54.963 +342157,268.04,49.216 +342158,265.77,51.213 +342159,263.76,53.126 +342160,261.95,54.967 +342161,266.81,49.272 +342162,264.5,51.25 +342163,262.44,53.146 +342164,260.6,54.969 +342165,265.57,49.33 +342166,263.22,51.289 +342167,261.13,53.165 +342168,259.26,54.97 +342169,264.33,49.39 +342170,261.95,51.327 +342171,259.82,53.184 +342172,257.91,54.97 +342173,263.09,49.451 +342174,260.67,51.367 +342175,258.51,53.203 +342176,256.57,54.968 +342177,261.85,49.513 +342178,259.39,51.406 +342179,257.2,53.22 +342180,255.23,54.965 +342181,260.6,49.577 +342182,258.12,51.447 +342183,255.89,53.238 +342184,253.89,54.961 +342185,259.36,49.643 +342186,256.84,51.487 +342187,254.59,53.255 +342188,252.55,54.955 +342189,258.11,49.71 +342190,255.56,51.528 +342191,253.28,53.271 +342192,251.21,54.948 +342193,256.86,49.778 +342194,254.28,51.57 +342195,251.97,53.287 +342196,249.87,54.94 +342197,255.6,49.847 +342198,253,51.612 +342199,250.66,53.303 +342200,248.54,54.93 +342201,254.35,49.918 +342202,251.72,51.654 +342203,249.36,53.318 +342204,247.21,54.919 +342205,253.09,49.99 +342206,250.44,51.697 +342207,248.05,53.333 +342208,245.87,54.908 +342209,251.83,50.064 +342210,249.16,51.74 +342211,246.74,53.348 +342212,244.54,54.894 +342213,250.57,50.138 +342214,247.87,51.784 +342215,245.44,53.362 +342216,243.22,54.88 +342217,249.31,50.214 +342218,246.59,51.828 +342219,244.14,53.375 +342220,241.89,54.865 +342221,248.04,50.291 +342222,245.31,51.873 +342223,242.83,53.389 +342224,240.56,54.848 +342225,246.77,50.37 +342226,244.02,51.917 +342227,241.53,53.402 +342228,239.24,54.83 +342229,245.5,50.449 +342230,242.74,51.963 +342231,240.22,53.414 +342232,237.92,54.812 +342233,244.23,50.53 +342234,241.45,52.008 +342235,238.92,53.427 +342236,236.6,54.792 +342237,242.95,50.611 +342238,240.16,52.054 +342239,237.62,53.438 +342240,235.28,54.771 +342241,241.67,50.694 +342242,238.87,52.1 +342243,236.32,53.45 +342244,233.96,54.749 +342245,240.39,50.777 +342246,237.59,52.147 +342247,235.02,53.461 +342248,232.65,54.727 +342249,239.11,50.862 +342250,236.3,52.194 +342251,233.72,53.472 +342252,231.33,54.703 +342253,237.83,50.947 +342254,235.01,52.241 +342255,232.42,53.483 +342256,230.02,54.678 +342257,236.54,51.034 +342258,233.72,52.289 +342259,231.12,53.493 +342260,228.71,54.653 +342261,235.25,51.121 +342262,232.42,52.337 +342263,229.82,53.503 +342264,227.4,54.626 +342265,233.96,51.209 +342266,231.13,52.385 +342267,228.52,53.513 +342268,226.1,54.599 +342269,232.67,51.298 +342270,229.84,52.433 +342271,227.23,53.522 +342272,224.79,54.571 +342273,231.37,51.388 +342274,228.54,52.482 +342275,225.93,53.531 +342276,223.49,54.542 +342277,230.07,51.478 +342278,227.25,52.531 +342279,224.63,53.54 +342280,222.19,54.512 +342281,228.77,51.569 +342282,225.95,52.58 +342283,223.34,53.549 +342284,220.89,54.482 +342285,227.47,51.661 +342286,224.66,52.629 +342287,222.04,53.558 +342288,219.59,54.451 +342289,226.16,51.753 +342290,223.36,52.679 +342291,220.75,53.566 +342292,218.29,54.419 +342293,224.86,51.846 +342294,222.06,52.728 +342295,219.45,53.574 +342296,217,54.387 +342297,223.55,51.94 +342298,220.77,52.778 +342299,218.16,53.582 +342300,215.71,54.354 +342301,222.24,52.034 +342302,219.47,52.828 +342303,216.87,53.589 +342304,214.42,54.321 +342305,220.92,52.128 +342306,218.17,52.879 +342307,215.58,53.597 +342308,213.13,54.287 +342309,219.61,52.223 +342310,216.87,52.929 +342311,214.29,53.604 +342312,211.84,54.252 +342313,218.29,52.318 +342314,215.56,52.98 +342315,212.99,53.612 +342316,210.56,54.217 +342317,216.97,52.414 +342318,214.26,53.03 +342319,211.7,53.619 +342320,209.28,54.182 +342321,215.65,52.51 +342322,212.96,53.081 +342323,210.41,53.626 +342324,207.99,54.146 +342325,214.32,52.606 +342326,211.66,53.132 +342327,209.13,53.632 +342328,206.72,54.11 +342329,213,52.703 +342330,210.35,53.183 +342331,207.84,53.639 +342332,205.44,54.073 +342333,211.67,52.799 +342334,209.05,53.234 +342335,206.55,53.646 +342336,204.16,54.036 +342337,210.34,52.896 +342338,207.74,53.286 +342339,205.26,53.652 +342340,202.89,53.999 +342341,209.01,52.993 +342342,206.43,53.337 +342343,203.98,53.659 +342344,201.62,53.962 +342345,207.68,53.09 +342346,205.13,53.388 +342347,202.69,53.665 +342348,200.35,53.924 +342349,206.34,53.187 +342350,203.82,53.439 +342351,201.4,53.672 +342352,199.08,53.886 +342353,205,53.285 +342354,202.51,53.491 +342355,200.12,53.678 +342356,197.81,53.849 +342357,203.67,53.382 +342358,201.2,53.542 +342359,198.83,53.684 +342360,196.55,53.811 +342361,202.32,53.479 +342362,199.89,53.594 +342363,197.55,53.691 +342364,195.29,53.772 +342365,200.98,53.576 +342366,198.58,53.645 +342367,196.27,53.697 +342368,194.03,53.734 +342369,199.64,53.673 +342370,197.27,53.696 +342371,194.98,53.703 +342372,192.77,53.696 +342373,198.29,53.77 +342374,195.96,53.747 +342375,193.7,53.71 +342376,191.51,53.658 +342377,196.94,53.866 +342378,194.65,53.799 +342379,192.42,53.716 +342380,190.25,53.62 +342381,195.6,53.962 +342382,193.33,53.85 +342383,191.14,53.722 +342384,189,53.582 +342385,194.24,54.059 +342386,192.02,53.901 +342387,189.86,53.729 +342388,187.75,53.544 +342389,192.89,54.154 +342390,190.71,53.952 +342391,188.58,53.735 +342392,186.5,53.507 +342393,191.54,54.25 +342394,189.39,54.003 +342395,187.3,53.742 +342396,185.25,53.469 +342397,190.18,54.345 +342398,188.08,54.054 +342399,186.02,53.749 +342400,184,53.432 +342401,188.83,54.439 +342402,186.76,54.104 +342403,184.74,53.756 +342404,182.76,53.395 +342405,187.47,54.534 +342406,185.44,54.155 +342407,183.46,53.762 +342408,181.51,53.359 +342409,186.11,54.627 +342410,184.13,54.205 +342411,182.18,53.77 +342412,180.27,53.323 +342413,184.75,54.721 +342414,182.81,54.255 +342415,180.9,53.777 +342416,179.03,53.287 +342417,183.39,54.813 +342418,181.49,54.305 +342419,179.63,53.784 +342420,177.79,53.251 +342421,182.02,54.905 +342422,180.17,54.355 +342423,178.35,53.792 +342424,176.55,53.216 +342425,180.66,54.997 +342426,178.85,54.405 +342427,177.08,53.799 +342428,175.32,53.182 +342429,179.29,55.088 +342430,177.54,54.455 +342431,175.8,53.807 +342432,174.08,53.148 +342433,177.93,55.178 +342434,176.22,54.504 +342435,174.52,53.815 +342436,172.85,53.114 +342437,176.56,55.268 +342438,174.89,54.553 +342439,173.25,53.824 +342440,171.62,53.081 +342441,175.19,55.356 +342442,173.57,54.602 +342443,171.97,53.832 +342444,170.39,53.049 +342445,173.82,55.444 +342446,172.25,54.65 +342447,170.7,53.841 +342448,169.16,53.017 +342449,172.45,55.532 +342450,170.93,54.699 +342451,169.43,53.85 +342452,167.93,52.986 +342453,171.08,55.618 +342454,169.61,54.747 +342455,168.15,53.859 +342456,166.71,52.956 +342457,169.7,55.704 +342458,168.29,54.794 +342459,166.88,53.868 +342460,165.48,52.926 +342461,168.33,55.789 +342462,166.96,54.842 +342463,165.61,53.878 +342464,164.26,52.898 +342465,166.95,55.872 +342466,165.64,54.889 +342467,164.33,53.888 +342468,163.04,52.87 +342469,165.58,55.955 +342470,164.32,54.936 +342471,163.06,53.898 +342472,161.81,52.842 +342473,164.2,56.037 +342474,162.99,54.983 +342475,161.79,53.909 +342476,160.59,52.816 +342477,162.83,56.118 +342478,161.67,55.029 +342479,160.52,53.92 +342480,159.38,52.791 +342481,161.45,56.198 +342482,160.34,55.075 +342483,159.25,53.931 +342484,158.16,52.766 +342485,160.07,56.277 +342486,159.02,55.121 +342487,157.98,53.942 +342488,156.94,52.743 +342489,158.69,56.355 +342490,157.69,55.166 +342491,156.7,53.954 +342492,155.72,52.72 +342493,157.31,56.432 +342494,156.37,55.211 +342495,155.43,53.966 +342496,154.51,52.699 +342497,155.93,56.508 +342498,155.04,55.256 +342499,154.16,53.979 +342500,153.3,52.678 +342501,154.55,56.583 +342502,153.72,55.3 +342503,152.89,53.991 +342504,152.08,52.658 +342505,153.17,56.656 +342506,152.39,55.344 +342507,151.62,54.005 +342508,150.87,52.64 +342509,151.79,56.729 +342510,151.06,55.387 +342511,150.35,54.018 +342512,149.66,52.623 +342513,150.41,56.8 +342514,149.74,55.43 +342515,149.08,54.032 +342516,148.45,52.607 +342517,149.02,56.87 +342518,148.41,55.473 +342519,147.81,54.047 +342520,147.24,52.592 +342521,147.64,56.939 +342522,147.08,55.515 +342523,146.54,54.061 +342524,146.03,52.578 +342525,146.26,57.007 +342526,145.75,55.557 +342527,145.27,54.076 +342528,144.82,52.565 +342529,144.87,57.073 +342530,144.43,55.598 +342531,144,54.092 +342532,143.61,52.554 +342533,143.49,57.138 +342534,143.1,55.639 +342535,142.73,54.108 +342536,142.4,52.543 +342537,142.11,57.202 +342538,141.77,55.68 +342539,141.47,54.124 +342540,141.19,52.534 +342541,140.72,57.265 +342542,140.44,55.72 +342543,140.2,54.141 +342544,139.98,52.527 +342545,139.34,57.326 +342546,139.12,55.76 +342547,138.93,54.158 +342548,138.78,52.52 +342549,137.96,57.386 +342550,137.79,55.799 +342551,137.66,54.176 +342552,137.57,52.515 +342553,136.57,57.445 +342554,136.46,55.838 +342555,136.39,54.194 +342556,136.36,52.512 +342557,135.19,57.502 +342558,135.13,55.876 +342559,135.12,54.212 +342560,135.16,52.509 +342561,133.81,57.558 +342562,133.8,55.914 +342563,133.85,54.231 +342564,133.95,52.508 +342565,132.42,57.613 +342566,132.48,55.952 +342567,132.58,54.251 +342568,132.74,52.509 +342569,131.04,57.666 +342570,131.15,55.989 +342571,131.31,54.271 +342572,131.54,52.511 +342573,129.66,57.718 +342574,129.82,56.025 +342575,130.04,54.291 +342576,130.33,52.514 +342577,128.27,57.768 +342578,128.49,56.061 +342579,128.77,54.312 +342580,129.12,52.519 +342581,126.89,57.817 +342582,127.16,56.097 +342583,127.5,54.333 +342584,127.92,52.525 +342585,125.51,57.865 +342586,125.83,56.132 +342587,126.23,54.355 +342588,126.71,52.532 +342589,124.13,57.911 +342590,124.51,56.166 +342591,124.96,54.377 +342592,125.5,52.541 +342593,122.74,57.956 +342594,123.18,56.2 +342595,123.69,54.4 +342596,124.29,52.552 +342597,121.36,57.999 +342598,121.85,56.234 +342599,122.42,54.423 +342600,123.08,52.564 +342601,119.98,58.041 +342602,120.52,56.267 +342603,121.15,54.447 +342604,121.88,52.578 +342605,118.6,58.081 +342606,119.19,56.3 +342607,119.88,54.471 +342608,120.67,52.593 +342609,117.22,58.12 +342610,117.87,56.332 +342611,118.61,54.496 +342612,119.46,52.609 +342613,115.84,58.158 +342614,116.54,56.364 +342615,117.33,54.521 +342616,118.25,52.627 +342617,114.46,58.194 +342618,115.21,56.395 +342619,116.06,54.547 +342620,117.03,52.647 +342621,113.08,58.229 +342622,113.88,56.425 +342623,114.79,54.573 +342624,115.82,52.668 +342625,111.71,58.262 +342626,112.56,56.456 +342627,113.52,54.6 +342628,114.61,52.69 +342629,110.33,58.294 +342630,111.23,56.485 +342631,112.25,54.627 +342632,113.4,52.714 +342633,108.95,58.324 +342634,109.9,56.514 +342635,110.97,54.654 +342636,112.18,52.74 +342637,107.58,58.353 +342638,108.58,56.543 +342639,109.7,54.682 +342640,110.97,52.767 +342641,106.2,58.38 +342642,107.25,56.571 +342643,108.43,54.711 +342644,109.75,52.796 +342645,104.83,58.406 +342646,105.93,56.599 +342647,107.15,54.74 +342648,108.53,52.826 +342649,103.46,58.431 +342650,104.6,56.626 +342651,105.88,54.77 +342652,107.31,52.858 +342653,102.08,58.454 +342654,103.28,56.653 +342655,104.6,54.8 +342656,106.09,52.891 +342657,100.71,58.476 +342658,101.95,56.679 +342659,103.33,54.83 +342660,104.87,52.926 +342661,99.342,58.496 +342662,100.63,56.705 +342663,102.05,54.861 +342664,103.65,52.962 +342665,97.972,58.515 +342666,99.301,56.73 +342667,100.78,54.893 +342668,102.43,53 +342669,96.603,58.532 +342670,97.977,56.754 +342671,99.5,54.925 +342672,101.2,53.039 +342673,95.236,58.548 +342674,96.653,56.779 +342675,98.223,54.958 +342676,99.977,53.08 +342677,93.869,58.563 +342678,95.329,56.802 +342679,96.946,54.99 +342680,98.75,53.122 +342681,92.503,58.576 +342682,94.006,56.826 +342683,95.668,55.024 +342684,97.521,53.166 +342685,91.139,58.588 +342686,92.684,56.848 +342687,94.389,55.058 +342688,96.29,53.211 +342689,89.776,58.598 +342690,91.361,56.871 +342691,93.111,55.092 +342692,95.058,53.258 +342693,88.413,58.607 +342694,90.039,56.893 +342695,91.831,55.127 +342696,93.825,53.306 +342697,87.052,58.615 +342698,88.717,56.914 +342699,90.551,55.162 +342700,92.589,53.355 +342701,85.693,58.622 +342702,87.396,56.935 +342703,89.271,55.198 +342704,91.353,53.406 +342705,84.334,58.627 +342706,86.075,56.956 +342707,87.99,55.234 +342708,90.114,53.459 +342709,82.977,58.631 +342710,84.755,56.976 +342711,86.708,55.271 +342712,88.874,53.512 +342713,81.621,58.633 +342714,83.435,56.995 +342715,85.426,55.308 +342716,87.631,53.567 +342717,80.266,58.634 +342718,82.115,57.014 +342719,84.143,55.346 +342720,86.387,53.624 +342721,78.912,58.634 +342722,80.796,57.033 +342723,82.86,55.384 +342724,85.142,53.681 +342725,77.56,58.633 +342726,79.477,57.051 +342727,81.576,55.422 +342728,83.894,53.74 +342729,76.21,58.631 +342730,78.159,57.069 +342731,80.291,55.461 +342732,82.644,53.801 +342733,74.86,58.627 +342734,76.842,57.087 +342735,79.006,55.5 +342736,81.393,53.862 +342737,73.513,58.622 +342738,75.524,57.104 +342739,77.72,55.539 +342740,80.139,53.925 +342741,72.166,58.616 +342742,74.208,57.12 +342743,76.434,55.579 +342744,78.884,53.989 +342745,70.821,58.609 +342746,72.891,57.136 +342747,75.146,55.62 +342748,77.626,54.055 +342749,69.478,58.6 +342750,71.575,57.152 +342751,73.859,55.661 +342752,76.367,54.121 +342753,68.136,58.591 +342754,70.26,57.168 +342755,72.57,55.702 +342756,75.105,54.189 +342757,66.795,58.58 +342758,68.945,57.183 +342759,71.281,55.743 +342760,73.842,54.257 +342761,65.457,58.568 +342762,67.631,57.197 +342763,69.991,55.785 +342764,72.576,54.327 +342765,64.119,58.556 +342766,66.318,57.212 +342767,68.701,55.827 +342768,71.308,54.398 +342769,62.783,58.542 +342770,65.004,57.226 +342771,67.41,55.87 +342772,70.038,54.47 +342773,61.449,58.527 +342774,63.692,57.239 +342775,66.118,55.913 +342776,68.766,54.543 +342777,60.117,58.511 +342778,62.38,57.252 +342779,64.825,55.956 +342780,67.492,54.618 +342781,58.786,58.494 +342782,61.068,57.265 +342783,63.532,55.999 +342784,66.216,54.693 +342785,57.457,58.477 +342786,59.757,57.278 +342787,62.238,56.043 +342788,64.937,54.769 +342789,56.129,58.458 +342790,58.447,57.29 +342791,60.944,56.087 +342792,63.657,54.846 +342793,54.803,58.438 +342794,57.137,57.302 +342795,59.648,56.132 +342796,62.374,54.923 +342797,53.479,58.418 +342798,55.828,57.314 +342799,58.352,56.177 +342800,61.089,55.002 +342801,52.157,58.397 +342802,54.519,57.325 +342803,57.056,56.222 +342804,59.802,55.082 +342805,50.836,58.375 +342806,53.211,57.336 +342807,55.758,56.267 +342808,58.512,55.162 +342809,49.517,58.352 +342810,51.903,57.347 +342811,54.46,56.312 +342812,57.221,55.243 +342813,48.2,58.328 +342814,50.596,57.358 +342815,53.161,56.358 +342816,55.927,55.325 +342817,46.884,58.304 +342818,49.29,57.368 +342819,51.861,56.404 +342820,54.631,55.408 +342821,45.571,58.278 +342822,47.984,57.378 +342823,50.561,56.45 +342824,53.333,55.491 +342825,44.259,58.253 +342826,46.679,57.388 +342827,49.26,56.497 +342828,52.033,55.575 +342829,42.949,58.226 +342830,45.375,57.398 +342831,47.958,56.543 +342832,50.73,55.659 +342833,41.64,58.199 +342834,44.071,57.407 +342835,46.656,56.59 +342836,49.426,55.745 +342837,40.334,58.171 +342838,42.767,57.416 +342839,45.353,56.637 +342840,48.119,55.83 +342841,39.029,58.143 +342842,41.464,57.425 +342843,44.049,56.684 +342844,46.81,55.917 +342845,37.726,58.114 +342846,40.162,57.434 +342847,42.744,56.731 +342848,45.499,56.003 +342849,36.425,58.085 +342850,38.86,57.443 +342851,41.439,56.779 +342852,44.186,56.09 +342853,35.126,58.055 +342854,37.559,57.451 +342855,40.133,56.827 +342856,42.87,56.178 +342857,33.828,58.024 +342858,36.259,57.459 +342859,38.826,56.874 +342860,41.553,56.266 +342861,32.532,57.994 +342862,34.959,57.468 +342863,37.518,56.922 +342864,40.233,56.354 +342865,31.239,57.962 +342866,33.66,57.476 +342867,36.21,56.97 +342868,38.912,56.443 +342869,29.947,57.931 +342870,32.361,57.483 +342871,34.901,57.018 +342872,37.588,56.532 +342873,28.656,57.899 +342874,31.063,57.491 +342875,33.592,57.066 +342876,36.263,56.621 +342877,27.368,57.867 +342878,29.766,57.499 +342879,32.282,57.114 +342880,34.935,56.711 +342881,26.081,57.835 +342882,28.469,57.507 +342883,30.971,57.163 +342884,33.606,56.8 +342885,24.797,57.802 +342886,27.173,57.514 +342887,29.659,57.211 +342888,32.274,56.89 +342889,23.514,57.769 +342890,25.877,57.521 +342891,28.347,57.259 +342892,30.941,56.98 +342893,22.233,57.736 +342894,24.582,57.529 +342895,27.034,57.308 +342896,29.605,57.07 +342897,20.953,57.703 +342898,23.287,57.536 +342899,25.72,57.356 +342900,28.268,57.16 +342901,19.676,57.669 +342902,21.993,57.543 +342903,24.406,57.405 +342904,26.929,57.25 +342905,18.4,57.636 +342906,20.7,57.551 +342907,23.091,57.453 +342908,25.588,57.34 +342909,17.126,57.603 +342910,19.407,57.558 +342911,21.775,57.501 +342912,24.245,57.43 +342913,15.854,57.569 +342914,18.114,57.565 +342915,20.459,57.55 +342916,22.9,57.52 +342917,14.584,57.536 +342918,16.823,57.572 +342919,19.142,57.598 +342920,21.554,57.61 +342921,13.315,57.502 +342922,15.531,57.58 +342923,17.825,57.646 +342924,20.206,57.699 +342925,12.048,57.469 +342926,14.241,57.587 +342927,16.506,57.694 +342928,18.856,57.789 +342929,10.783,57.436 +342930,12.95,57.594 +342931,15.188,57.743 +342932,17.504,57.878 +342933,9.5193,57.403 +342934,11.661,57.602 +342935,13.868,57.791 +342936,16.151,57.967 +342937,8.2575,57.37 +342938,10.372,57.609 +342939,12.548,57.839 +342940,14.797,58.056 +342941,6.9974,57.337 +342942,9.083,57.617 +342943,11.228,57.887 +342944,13.44,58.144 +342945,5.7389,57.304 +342946,7.7949,57.624 +342947,9.907,57.934 +342948,12.082,58.232 +342949,4.4821,57.272 +342950,6.5073,57.632 +342951,8.5853,57.982 +342952,10.723,58.32 +342953,3.2268,57.24 +342954,5.2202,57.64 +342955,7.2632,58.029 +342956,9.3623,58.407 +342957,1.9732,57.209 +342958,3.9335,57.648 +342959,5.9405,58.077 +342960,8,58.494 +342961,0.72121,57.178 +342962,2.6474,57.656 +342963,4.6172,58.124 +342964,6.6363,58.581 +342965,359.47,57.147 +342966,1.3617,57.664 +342967,3.2934,58.171 +342968,5.2713,58.666 +342969,358.22,57.116 +342970,0.076418,57.672 +342971,1.9692,58.218 +342972,3.9049,58.752 +342973,356.97,57.086 +342974,358.79,57.68 +342975,0.64439,58.265 +342976,2.5372,58.837 +342977,355.73,57.057 +342978,357.51,57.689 +342979,359.32,58.311 +342980,1.1683,58.921 +342981,354.48,57.028 +342982,356.22,57.698 +342983,357.99,58.357 +342984,359.8,59.004 +342985,353.24,57 +342986,354.94,57.707 +342987,356.67,58.403 +342988,358.43,59.087 +342989,352,56.972 +342990,353.66,57.716 +342991,355.34,58.449 +342992,357.05,59.17 +342993,350.76,56.945 +342994,352.37,57.725 +342995,354.01,58.495 +342996,355.68,59.251 +342997,349.52,56.918 +342998,351.09,57.735 +342999,352.69,58.54 +343000,354.31,59.332 +343001,348.28,56.892 +343002,349.81,57.745 +343003,351.36,58.585 +343004,352.93,59.412 +343005,347.05,56.867 +343006,348.53,57.755 +343007,350.03,58.63 +343008,351.55,59.492 +343009,345.81,56.843 +343010,347.25,57.765 +343011,348.7,58.675 +343012,350.18,59.57 +343013,344.58,56.819 +343014,345.97,57.775 +343015,347.37,58.719 +343016,348.8,59.648 +343017,343.34,56.796 +343018,344.69,57.786 +343019,346.04,58.763 +343020,347.42,59.725 +343021,342.11,56.774 +343022,343.4,57.797 +343023,344.71,58.807 +343024,346.04,59.801 +343025,340.88,56.752 +343026,342.12,57.808 +343027,343.38,58.85 +343028,344.66,59.876 +343029,339.65,56.732 +343030,340.85,57.82 +343031,342.05,58.893 +343032,343.27,59.95 +343033,338.43,56.712 +343034,339.57,57.832 +343035,340.72,58.936 +343036,341.89,60.023 +343037,337.2,56.694 +343038,338.29,57.844 +343039,339.39,58.978 +343040,340.51,60.095 +343041,335.97,56.676 +343042,337.01,57.856 +343043,338.06,59.02 +343044,339.12,60.166 +343045,334.75,56.659 +343046,335.73,57.869 +343047,336.73,59.062 +343048,337.74,60.237 +343049,333.52,56.643 +343050,334.45,57.882 +343051,335.39,59.103 +343052,336.35,60.306 +343053,332.3,56.629 +343054,333.17,57.896 +343055,334.06,59.145 +343056,334.97,60.374 +343057,331.08,56.615 +343058,331.89,57.909 +343059,332.73,59.185 +343060,333.58,60.441 +343061,329.85,56.602 +343062,330.62,57.924 +343063,331.4,59.226 +343064,332.19,60.507 +343065,328.63,56.59 +343066,329.34,57.938 +343067,330.06,59.265 +343068,330.81,60.572 +343069,327.41,56.58 +343070,328.06,57.953 +343071,328.73,59.305 +343072,329.42,60.635 +343073,326.19,56.57 +343074,326.78,57.968 +343075,327.4,59.344 +343076,328.03,60.698 +343077,324.97,56.562 +343078,325.51,57.983 +343079,326.06,59.383 +343080,326.64,60.759 +343081,323.75,56.555 +343082,324.23,57.999 +343083,324.73,59.421 +343084,325.25,60.82 +343085,322.53,56.549 +343086,322.95,58.016 +343087,323.4,59.459 +343088,323.86,60.879 +343089,321.32,56.544 +343090,321.68,58.032 +343091,322.06,59.497 +343092,322.48,60.937 +343093,320.1,56.54 +343094,320.4,58.049 +343095,320.73,59.534 +343096,321.09,60.993 +343097,318.88,56.538 +343098,319.12,58.067 +343099,319.39,59.571 +343100,319.7,61.049 +343101,317.66,56.537 +343102,317.84,58.085 +343103,318.06,59.607 +343104,318.31,61.103 +343105,316.45,56.537 +343106,316.57,58.103 +343107,316.73,59.643 +343108,316.92,61.156 +343109,315.23,56.538 +343110,315.29,58.122 +343111,315.39,59.678 +343112,315.53,61.207 +343113,314.01,56.541 +343114,314.01,58.141 +343115,314.06,59.713 +343116,314.14,61.258 +343117,312.8,56.545 +343118,312.74,58.16 +343119,312.72,59.748 +343120,312.75,61.307 +343121,311.58,56.55 +343122,311.46,58.18 +343123,311.39,59.782 +343124,311.36,61.354 +343125,310.37,56.556 +343126,310.18,58.201 +343127,310.05,59.815 +343128,309.97,61.401 +343129,309.15,56.564 +343130,308.91,58.221 +343131,308.72,59.849 +343132,308.58,61.446 +343133,307.93,56.573 +343134,307.63,58.242 +343135,307.39,59.881 +343136,307.19,61.49 +343137,306.72,56.584 +343138,306.35,58.264 +343139,306.05,59.914 +343140,305.81,61.532 +343141,305.5,56.596 +343142,305.08,58.286 +343143,304.72,59.945 +343144,304.42,61.573 +343145,304.28,56.609 +343146,303.8,58.309 +343147,303.38,59.977 +343148,303.03,61.613 +343149,303.06,56.623 +343150,302.52,58.332 +343151,302.05,60.008 +343152,301.64,61.652 +343153,301.85,56.639 +343154,301.24,58.355 +343155,300.71,60.038 +343156,300.25,61.689 +343157,300.63,56.657 +343158,299.96,58.379 +343159,299.38,60.068 +343160,298.87,61.724 +343161,299.41,56.675 +343162,298.69,58.403 +343163,298.05,60.097 +343164,297.48,61.759 +343165,298.19,56.695 +343166,297.41,58.428 +343167,296.71,60.127 +343168,296.1,61.792 +343169,296.97,56.717 +343170,296.13,58.453 +343171,295.38,60.155 +343172,294.71,61.824 +343173,295.75,56.74 +343174,294.85,58.479 +343175,294.05,60.183 +343176,293.33,61.854 +343177,294.53,56.764 +343178,293.57,58.505 +343179,292.71,60.211 +343180,291.94,61.883 +343181,293.31,56.79 +343182,292.29,58.531 +343183,291.38,60.238 +343184,290.56,61.91 +343185,292.09,56.817 +343186,291.01,58.558 +343187,290.05,60.265 +343188,289.18,61.937 +343189,290.86,56.845 +343190,289.73,58.586 +343191,288.72,60.291 +343192,287.79,61.962 +343193,289.64,56.875 +343194,288.45,58.614 +343195,287.38,60.317 +343196,286.41,61.985 +343197,288.41,56.906 +343198,287.17,58.642 +343199,286.05,60.342 +343200,285.03,62.007 +343201,287.19,56.939 +343202,285.89,58.671 +343203,284.72,60.367 +343204,283.65,62.028 +343205,285.96,56.973 +343206,284.61,58.7 +343207,283.39,60.391 +343208,282.27,62.048 +343209,284.73,57.008 +343210,283.33,58.729 +343211,282.06,60.415 +343212,280.9,62.066 +343213,283.5,57.045 +343214,282.05,58.759 +343215,280.73,60.438 +343216,279.52,62.083 +343217,282.27,57.083 +343218,280.76,58.79 +343219,279.39,60.461 +343220,278.14,62.098 +343221,281.04,57.122 +343222,279.48,58.821 +343223,278.06,60.484 +343224,276.77,62.112 +343225,279.81,57.163 +343226,278.2,58.852 +343227,276.73,60.506 +343228,275.39,62.125 +343229,278.57,57.205 +343230,276.92,58.884 +343231,275.4,60.528 +343232,274.02,62.137 +343233,277.34,57.248 +343234,275.63,58.916 +343235,274.07,60.549 +343236,272.65,62.147 +343237,276.1,57.293 +343238,274.35,58.949 +343239,272.75,60.569 +343240,271.28,62.156 +343241,274.86,57.339 +343242,273.06,58.982 +343243,271.42,60.59 +343244,269.91,62.164 +343245,273.62,57.386 +343246,271.78,59.015 +343247,270.09,60.61 +343248,268.54,62.171 +343249,272.38,57.435 +343250,270.49,59.049 +343251,268.76,60.629 +343252,267.17,62.176 +343253,271.14,57.485 +343254,269.2,59.083 +343255,267.43,60.648 +343256,265.8,62.18 +343257,269.9,57.536 +343258,267.92,59.118 +343259,266.11,60.667 +343260,264.44,62.183 +343261,268.65,57.588 +343262,266.63,59.153 +343263,264.78,60.685 +343264,263.07,62.184 +343265,267.4,57.641 +343266,265.34,59.189 +343267,263.45,60.702 +343268,261.71,62.185 +343269,266.16,57.696 +343270,264.05,59.224 +343271,262.13,60.72 +343272,260.35,62.184 +343273,264.9,57.752 +343274,262.76,59.261 +343275,260.8,60.737 +343276,258.99,62.182 +343277,263.65,57.809 +343278,261.48,59.297 +343279,259.48,60.753 +343280,257.63,62.179 +343281,262.4,57.867 +343282,260.19,59.334 +343283,258.15,60.769 +343284,256.27,62.175 +343285,261.14,57.927 +343286,258.89,59.372 +343287,256.83,60.785 +343288,254.92,62.169 +343289,259.88,57.987 +343290,257.6,59.409 +343291,255.51,60.801 +343292,253.56,62.163 +343293,258.63,58.049 +343294,256.31,59.447 +343295,254.18,60.816 +343296,252.21,62.155 +343297,257.36,58.111 +343298,255.02,59.486 +343299,252.86,60.83 +343300,250.86,62.147 +343301,256.1,58.175 +343302,253.73,59.524 +343303,251.54,60.844 +343304,249.51,62.137 +343305,254.84,58.24 +343306,252.43,59.563 +343307,250.22,60.858 +343308,248.16,62.126 +343309,253.57,58.305 +343310,251.14,59.603 +343311,248.89,60.872 +343312,246.81,62.115 +343313,252.3,58.372 +343314,249.84,59.642 +343315,247.57,60.885 +343316,245.46,62.102 +343317,251.03,58.44 +343318,248.55,59.682 +343319,246.25,60.898 +343320,244.12,62.089 +343321,249.76,58.508 +343322,247.25,59.723 +343323,244.93,60.911 +343324,242.78,62.074 +343325,248.48,58.578 +343326,245.95,59.763 +343327,243.62,60.923 +343328,241.44,62.059 +343329,247.2,58.648 +343330,244.66,59.804 +343331,242.3,60.935 +343332,240.1,62.042 +343333,245.92,58.719 +343334,243.36,59.845 +343335,240.98,60.946 +343336,238.76,62.025 +343337,244.64,58.791 +343338,242.06,59.887 +343339,239.66,60.958 +343340,237.42,62.007 +343341,243.36,58.864 +343342,240.76,59.928 +343343,238.35,60.969 +343344,236.09,61.988 +343345,242.08,58.938 +343346,239.46,59.97 +343347,237.03,60.98 +343348,234.75,61.968 +343349,240.79,59.012 +343350,238.16,60.012 +343351,235.71,60.99 +343352,233.42,61.948 +343353,239.5,59.087 +343354,236.86,60.055 +343355,234.4,61 +343356,232.09,61.926 +343357,238.21,59.163 +343358,235.56,60.097 +343359,233.08,61.01 +343360,230.77,61.904 +343361,236.91,59.239 +343362,234.25,60.14 +343363,231.77,61.02 +343364,229.44,61.882 +343365,235.62,59.317 +343366,232.95,60.183 +343367,230.46,61.03 +343368,228.11,61.858 +343369,234.32,59.394 +343370,231.65,60.226 +343371,229.14,61.039 +343372,226.79,61.834 +343373,233.02,59.473 +343374,230.34,60.269 +343375,227.83,61.048 +343376,225.47,61.81 +343377,231.72,59.551 +343378,229.03,60.313 +343379,226.52,61.057 +343380,224.15,61.784 +343381,230.42,59.631 +343382,227.73,60.357 +343383,225.21,61.065 +343384,222.83,61.758 +343385,229.11,59.711 +343386,226.42,60.401 +343387,223.9,61.074 +343388,221.52,61.732 +343389,227.8,59.791 +343390,225.11,60.445 +343391,222.59,61.082 +343392,220.2,61.705 +343393,226.49,59.872 +343394,223.81,60.489 +343395,221.28,61.09 +343396,218.89,61.678 +343397,225.18,59.953 +343398,222.5,60.533 +343399,219.97,61.098 +343400,217.58,61.65 +343401,223.86,60.034 +343402,221.19,60.578 +343403,218.66,61.106 +343404,216.27,61.622 +343405,222.55,60.116 +343406,219.88,60.622 +343407,217.36,61.114 +343408,214.97,61.593 +343409,221.23,60.198 +343410,218.57,60.667 +343411,216.05,61.121 +343412,213.66,61.564 +343413,219.91,60.281 +343414,217.25,60.711 +343415,214.74,61.129 +343416,212.36,61.534 +343417,218.59,60.364 +343418,215.94,60.756 +343419,213.44,61.136 +343420,211.06,61.505 +343421,217.26,60.446 +343422,214.63,60.801 +343423,212.13,61.143 +343424,209.76,61.475 +343425,215.94,60.53 +343426,213.31,60.846 +343427,210.83,61.15 +343428,208.46,61.444 +343429,214.61,60.613 +343430,212,60.891 +343431,209.52,61.157 +343432,207.16,61.414 +343433,213.28,60.696 +343434,210.68,60.936 +343435,208.22,61.164 +343436,205.87,61.383 +343437,211.94,60.78 +343438,209.37,60.981 +343439,206.92,61.171 +343440,204.58,61.352 +343441,210.61,60.863 +343442,208.05,61.026 +343443,205.62,61.178 +343444,203.29,61.321 +343445,209.27,60.947 +343446,206.74,61.071 +343447,204.32,61.185 +343448,202,61.29 +343449,207.94,61.03 +343450,205.42,61.116 +343451,203.01,61.192 +343452,200.71,61.259 +343453,206.6,61.114 +343454,204.1,61.161 +343455,201.71,61.198 +343456,199.42,61.228 +343457,205.25,61.197 +343458,202.78,61.206 +343459,200.41,61.205 +343460,198.14,61.196 +343461,203.91,61.281 +343462,201.46,61.251 +343463,199.12,61.212 +343464,196.86,61.165 +343465,202.57,61.364 +343466,200.14,61.296 +343467,197.82,61.218 +343468,195.58,61.134 +343469,201.22,61.447 +343470,198.82,61.341 +343471,196.52,61.225 +343472,194.3,61.103 +343473,199.87,61.53 +343474,197.5,61.385 +343475,195.22,61.232 +343476,193.02,61.072 +343477,198.52,61.612 +343478,196.18,61.43 +343479,193.92,61.239 +343480,191.75,61.041 +343481,197.17,61.695 +343482,194.85,61.475 +343483,192.63,61.246 +343484,190.47,61.01 +343485,195.81,61.777 +343486,193.53,61.519 +343487,191.33,61.253 +343488,189.2,60.98 +343489,194.46,61.859 +343490,192.21,61.563 +343491,190.04,61.26 +343492,187.93,60.949 +343493,193.1,61.94 +343494,190.88,61.608 +343495,188.74,61.267 +343496,186.66,60.919 +343497,191.74,62.021 +343498,189.56,61.652 +343499,187.45,61.274 +343500,185.4,60.89 +343501,190.38,62.102 +343502,188.23,61.696 +343503,186.15,61.281 +343504,184.13,60.86 +343505,189.02,62.182 +343506,186.91,61.74 +343507,184.86,61.289 +343508,182.87,60.831 +343509,187.66,62.262 +343510,185.58,61.784 +343511,183.57,61.296 +343512,181.61,60.802 +343513,186.29,62.341 +343514,184.25,61.827 +343515,182.27,61.304 +343516,180.35,60.774 +343517,184.92,62.42 +343518,182.93,61.87 +343519,180.98,61.312 +343520,179.09,60.746 +343521,183.56,62.499 +343522,181.6,61.914 +343523,179.69,61.32 +343524,177.83,60.718 +343525,182.19,62.576 +343526,180.27,61.957 +343527,178.4,61.328 +343528,176.57,60.692 +343529,180.82,62.654 +343530,178.94,61.999 +343531,177.11,61.336 +343532,175.32,60.665 +343533,179.45,62.73 +343534,177.61,62.042 +343535,175.82,61.344 +343536,174.07,60.639 +343537,178.07,62.806 +343538,176.28,62.084 +343539,174.53,61.353 +343540,172.82,60.614 +343541,176.7,62.881 +343542,174.95,62.127 +343543,173.24,61.362 +343544,171.57,60.589 +343545,175.33,62.956 +343546,173.62,62.168 +343547,171.95,61.371 +343548,170.32,60.565 +343549,173.95,63.03 +343550,172.29,62.21 +343551,170.66,61.38 +343552,169.07,60.541 +343553,172.57,63.103 +343554,170.96,62.252 +343555,169.37,61.39 +343556,167.82,60.519 +343557,171.19,63.175 +343558,169.62,62.293 +343559,168.09,61.399 +343560,166.58,60.497 +343561,169.81,63.246 +343562,168.29,62.334 +343563,166.8,61.409 +343564,165.33,60.475 +343565,168.43,63.317 +343566,166.96,62.374 +343567,165.51,61.419 +343568,164.09,60.455 +343569,167.05,63.387 +343570,165.63,62.414 +343571,164.23,61.43 +343572,162.85,60.435 +343573,165.67,63.456 +343574,164.29,62.454 +343575,162.94,61.44 +343576,161.61,60.416 +343577,164.29,63.524 +343578,162.96,62.494 +343579,161.65,61.451 +343580,160.37,60.398 +343581,162.9,63.591 +343582,161.62,62.534 +343583,160.37,61.463 +343584,159.13,60.38 +343585,161.52,63.657 +343586,160.29,62.573 +343587,159.08,61.474 +343588,157.9,60.364 +343589,160.13,63.723 +343590,158.95,62.611 +343591,157.8,61.486 +343592,156.66,60.348 +343593,158.75,63.787 +343594,157.62,62.65 +343595,156.51,61.498 +343596,155.43,60.334 +343597,157.36,63.851 +343598,156.28,62.688 +343599,155.23,61.51 +343600,154.19,60.32 +343601,155.97,63.913 +343602,154.95,62.726 +343603,153.94,61.523 +343604,152.96,60.307 +343605,154.58,63.974 +343606,153.61,62.763 +343607,152.66,61.536 +343608,151.73,60.296 +343609,153.2,64.035 +343610,152.28,62.8 +343611,151.38,61.55 +343612,150.5,60.285 +343613,151.81,64.094 +343614,150.94,62.837 +343615,150.09,61.563 +343616,149.27,60.275 +343617,150.42,64.152 +343618,149.6,62.873 +343619,148.81,61.577 +343620,148.04,60.266 +343621,149.03,64.209 +343622,148.27,62.909 +343623,147.53,61.592 +343624,146.81,60.259 +343625,147.64,64.265 +343626,146.93,62.944 +343627,146.24,61.606 +343628,145.58,60.252 +343629,146.24,64.32 +343630,145.59,62.98 +343631,144.96,61.622 +343632,144.35,60.247 +343633,144.85,64.374 +343634,144.25,63.014 +343635,143.68,61.637 +343636,143.12,60.243 +343637,143.46,64.427 +343638,142.92,63.049 +343639,142.39,61.653 +343640,141.9,60.239 +343641,142.07,64.478 +343642,141.58,63.083 +343643,141.11,61.669 +343644,140.67,60.237 +343645,140.68,64.528 +343646,140.24,63.116 +343647,139.83,61.685 +343648,139.44,60.236 +343649,139.29,64.577 +343650,138.9,63.15 +343651,138.55,61.702 +343652,138.22,60.237 +343653,137.89,64.625 +343654,137.56,63.182 +343655,137.26,61.72 +343656,136.99,60.238 +343657,136.5,64.672 +343658,136.23,63.215 +343659,135.98,61.737 +343660,135.77,60.241 +343661,135.11,64.717 +343662,134.89,63.247 +343663,134.7,61.755 +343664,134.54,60.245 +343665,133.72,64.762 +343666,133.55,63.278 +343667,133.42,61.774 +343668,133.32,60.25 +343669,132.32,64.805 +343670,132.21,63.309 +343671,132.13,61.793 +343672,132.1,60.256 +343673,130.93,64.847 +343674,130.87,63.34 +343675,130.85,61.812 +343676,130.87,60.264 +343677,129.54,64.887 +343678,129.53,63.37 +343679,129.57,61.832 +343680,129.65,60.272 +343681,128.15,64.926 +343682,128.2,63.4 +343683,128.29,61.852 +343684,128.42,60.282 +343685,126.75,64.964 +343686,126.86,63.429 +343687,127.01,61.872 +343688,127.2,60.294 +343689,125.36,65.001 +343690,125.52,63.458 +343691,125.72,61.893 +343692,125.98,60.306 +343693,123.97,65.037 +343694,124.18,63.487 +343695,124.44,61.915 +343696,124.75,60.32 +343697,122.58,65.071 +343698,122.84,63.515 +343699,123.16,61.936 +343700,123.53,60.335 +343701,121.19,65.104 +343702,121.51,63.543 +343703,121.88,61.958 +343704,122.3,60.352 +343705,119.8,65.136 +343706,120.17,63.57 +343707,120.59,61.981 +343708,121.08,60.37 +343709,118.41,65.166 +343710,118.83,63.597 +343711,119.31,62.004 +343712,119.85,60.389 +343713,117.02,65.195 +343714,117.49,63.623 +343715,118.03,62.027 +343716,118.63,60.409 +343717,115.63,65.223 +343718,116.15,63.649 +343719,116.74,62.051 +343720,117.4,60.431 +343721,114.24,65.249 +343722,114.82,63.674 +343723,115.46,62.075 +343724,116.17,60.454 +343725,112.85,65.275 +343726,113.48,63.699 +343727,114.18,62.1 +343728,114.95,60.478 +343729,111.46,65.299 +343730,112.14,63.724 +343731,112.89,62.125 +343732,113.72,60.503 +343733,110.07,65.321 +343734,110.81,63.748 +343735,111.61,62.151 +343736,112.49,60.53 +343737,108.69,65.343 +343738,109.47,63.771 +343739,110.32,62.176 +343740,111.26,60.558 +343741,107.3,65.363 +343742,108.13,63.795 +343743,109.04,62.203 +343744,110.03,60.588 +343745,105.92,65.382 +343746,106.8,63.817 +343747,107.75,62.229 +343748,108.8,60.618 +343749,104.53,65.399 +343750,105.46,63.84 +343751,106.47,62.257 +343752,107.57,60.65 +343753,103.15,65.416 +343754,104.12,63.862 +343755,105.18,62.284 +343756,106.34,60.684 +343757,101.77,65.431 +343758,102.79,63.883 +343759,103.9,62.312 +343760,105.11,60.718 +343761,100.38,65.444 +343762,101.45,63.904 +343763,102.61,62.341 +343764,103.87,60.754 +343765,99.001,65.457 +343766,100.12,63.925 +343767,101.33,62.369 +343768,102.64,60.791 +343769,97.621,65.468 +343770,98.782,63.945 +343771,100.04,62.398 +343772,101.4,60.83 +343773,96.241,65.478 +343774,97.448,63.965 +343775,98.751,62.428 +343776,100.17,60.869 +343777,94.863,65.487 +343778,96.113,63.984 +343779,97.464,62.458 +343780,98.928,60.91 +343781,93.485,65.495 +343782,94.779,64.003 +343783,96.176,62.488 +343784,97.69,60.952 +343785,92.108,65.501 +343786,93.446,64.021 +343787,94.888,62.519 +343788,96.449,60.995 +343789,90.733,65.507 +343790,92.113,64.039 +343791,93.599,62.55 +343792,95.208,61.04 +343793,89.358,65.511 +343794,90.78,64.057 +343795,92.31,62.582 +343796,93.966,61.086 +343797,87.985,65.513 +343798,89.447,64.074 +343799,91.021,62.614 +343800,92.722,61.132 +343801,86.612,65.515 +343802,88.115,64.091 +343803,89.731,62.646 +343804,91.477,61.18 +343805,85.241,65.516 +343806,86.783,64.108 +343807,88.44,62.679 +343808,90.23,61.23 +343809,83.871,65.515 +343810,85.452,64.124 +343811,87.15,62.712 +343812,88.982,61.28 +343813,82.502,65.514 +343814,84.121,64.139 +343815,85.858,62.745 +343816,87.733,61.331 +343817,81.135,65.511 +343818,82.79,64.155 +343819,84.566,62.779 +343820,86.482,61.384 +343821,79.768,65.507 +343822,81.46,64.17 +343823,83.274,62.813 +343824,85.229,61.438 +343825,78.403,65.502 +343826,80.13,64.184 +343827,81.981,62.848 +343828,83.975,61.492 +343829,77.04,65.496 +343830,78.801,64.198 +343831,80.688,62.882 +343832,82.72,61.548 +343833,75.677,65.489 +343834,77.472,64.212 +343835,79.394,62.917 +343836,81.463,61.605 +343837,74.316,65.481 +343838,76.144,64.226 +343839,78.1,62.953 +343840,80.204,61.663 +343841,72.956,65.472 +343842,74.816,64.239 +343843,76.805,62.989 +343844,78.944,61.722 +343845,71.598,65.462 +343846,73.488,64.252 +343847,75.509,63.025 +343848,77.682,61.781 +343849,70.241,65.451 +343850,72.161,64.264 +343851,74.213,63.061 +343852,76.418,61.842 +343853,68.886,65.439 +343854,70.835,64.276 +343855,72.917,63.098 +343856,75.152,61.904 +343857,67.532,65.426 +343858,69.509,64.288 +343859,71.62,63.135 +343860,73.885,61.967 +343861,66.179,65.412 +343862,68.184,64.299 +343863,70.322,63.172 +343864,72.616,62.03 +343865,64.828,65.397 +343866,66.859,64.311 +343867,69.023,63.21 +343868,71.345,62.094 +343869,63.479,65.381 +343870,65.534,64.321 +343871,67.725,63.248 +343872,70.072,62.16 +343873,62.131,65.365 +343874,64.21,64.332 +343875,66.425,63.286 +343876,68.798,62.226 +343877,60.784,65.348 +343878,62.887,64.342 +343879,65.125,63.324 +343880,67.521,62.293 +343881,59.439,65.33 +343882,61.564,64.352 +343883,63.824,63.363 +343884,66.243,62.36 +343885,58.096,65.311 +343886,60.242,64.362 +343887,62.523,63.401 +343888,64.962,62.429 +343889,56.754,65.291 +343890,58.92,64.372 +343891,61.221,63.441 +343892,63.68,62.498 +343893,55.414,65.271 +343894,57.599,64.381 +343895,59.918,63.48 +343896,62.396,62.568 +343897,54.076,65.25 +343898,56.278,64.39 +343899,58.615,63.519 +343900,61.11,62.638 +343901,52.739,65.228 +343902,54.958,64.399 +343903,57.311,63.559 +343904,59.822,62.709 +343905,51.404,65.205 +343906,53.638,64.407 +343907,56.007,63.599 +343908,58.532,62.781 +343909,50.071,65.182 +343910,52.319,64.415 +343911,54.701,63.639 +343912,57.24,62.854 +343913,48.739,65.158 +343914,51.001,64.423 +343915,53.396,63.68 +343916,55.946,62.927 +343917,47.409,65.134 +343918,49.683,64.431 +343919,52.089,63.72 +343920,54.65,63 +343921,46.08,65.109 +343922,48.366,64.439 +343923,50.782,63.761 +343924,53.352,63.074 +343925,44.754,65.084 +343926,47.049,64.446 +343927,49.474,63.801 +343928,52.052,63.149 +343929,43.429,65.058 +343930,45.733,64.454 +343931,48.166,63.842 +343932,50.75,63.224 +343933,42.105,65.031 +343934,44.417,64.461 +343935,46.857,63.884 +343936,49.446,63.299 +343937,40.784,65.005 +343938,43.102,64.468 +343939,45.547,63.925 +343940,48.14,63.375 +343941,39.464,64.977 +343942,41.788,64.475 +343943,44.237,63.966 +343944,46.832,63.451 +343945,38.146,64.95 +343946,40.474,64.481 +343947,42.926,64.008 +343948,45.522,63.527 +343949,36.83,64.921 +343950,39.161,64.488 +343951,41.614,64.049 +343952,44.21,63.604 +343953,35.515,64.893 +343954,37.848,64.494 +343955,40.302,64.091 +343956,42.896,63.681 +343957,34.202,64.864 +343958,36.536,64.501 +343959,38.989,64.133 +343960,41.58,63.759 +343961,32.891,64.835 +343962,35.225,64.507 +343963,37.675,64.174 +343964,40.262,63.837 +343965,31.582,64.806 +343966,33.914,64.513 +343967,36.361,64.216 +343968,38.942,63.914 +343969,30.274,64.776 +343970,32.604,64.519 +343971,35.046,64.258 +343972,37.62,63.992 +343973,28.969,64.747 +343974,31.294,64.525 +343975,33.731,64.3 +343976,36.296,64.071 +343977,27.665,64.717 +343978,29.985,64.531 +343979,32.414,64.342 +343980,34.97,64.149 +343981,26.362,64.687 +343982,28.677,64.537 +343983,31.097,64.384 +343984,33.642,64.227 +343985,25.062,64.656 +343986,27.369,64.543 +343987,29.78,64.426 +343988,32.312,64.306 +343989,23.763,64.626 +343990,26.061,64.548 +343991,28.462,64.468 +343992,30.981,64.384 +343993,22.466,64.596 +343994,24.755,64.554 +343995,27.143,64.51 +343996,29.647,64.462 +343997,21.171,64.565 +343998,23.449,64.56 +343999,25.824,64.552 +344000,28.312,64.541 +344001,19.877,64.535 +344002,22.143,64.566 +344003,24.503,64.594 +344004,26.975,64.619 +344005,18.586,64.504 +344006,20.838,64.571 +344007,23.183,64.636 +344008,25.635,64.697 +344009,17.296,64.474 +344010,19.533,64.577 +344011,21.862,64.678 +344012,24.294,64.775 +344013,16.007,64.444 +344014,18.23,64.583 +344015,20.54,64.72 +344016,22.952,64.853 +344017,14.721,64.414 +344018,16.926,64.589 +344019,19.217,64.762 +344020,21.607,64.931 +344021,13.436,64.384 +344022,15.623,64.595 +344023,17.894,64.803 +344024,20.261,65.009 +344025,12.153,64.354 +344026,14.321,64.6 +344027,16.57,64.845 +344028,18.913,65.086 +344029,10.871,64.324 +344030,13.019,64.606 +344031,15.246,64.887 +344032,17.563,65.163 +344033,9.591,64.295 +344034,11.718,64.612 +344035,13.921,64.928 +344036,16.212,65.24 +344037,8.3128,64.265 +344038,10.418,64.619 +344039,12.596,64.969 +344040,14.859,65.316 +344041,7.0361,64.237 +344042,9.1176,64.625 +344043,11.27,65.011 +344044,13.504,65.393 +344045,5.7611,64.208 +344046,7.818,64.631 +344047,9.9432,65.052 +344048,12.147,65.468 +344049,4.4877,64.18 +344050,6.5189,64.637 +344051,8.6161,65.093 +344052,10.789,65.544 +344053,3.2159,64.152 +344054,5.2204,64.644 +344055,7.2885,65.133 +344056,9.4299,65.618 +344057,1.9457,64.124 +344058,3.9223,64.651 +344059,5.9603,65.174 +344060,8.0688,65.693 +344061,0.67697,64.097 +344062,2.6248,64.657 +344063,4.6316,65.214 +344064,6.7063,65.767 +344065,359.41,64.071 +344066,1.3277,64.664 +344067,3.3024,65.255 +344068,5.3422,65.84 +344069,358.14,64.045 +344070,0.031111,64.671 +344071,1.9726,65.295 +344072,3.9767,65.913 +344073,356.88,64.019 +344074,358.73,64.679 +344075,0.6424,65.335 +344076,2.6099,65.986 +344077,355.62,63.994 +344078,357.44,64.686 +344079,359.31,65.375 +344080,1.2416,66.057 +344081,354.36,63.969 +344082,356.14,64.694 +344083,357.98,65.414 +344084,359.87,66.129 +344085,353.1,63.945 +344086,354.85,64.702 +344087,356.65,65.453 +344088,358.5,66.199 +344089,351.84,63.922 +344090,353.56,64.71 +344091,355.32,65.492 +344092,357.13,66.269 +344093,350.58,63.899 +344094,352.26,64.718 +344095,353.98,65.531 +344096,355.76,66.338 +344097,349.32,63.877 +344098,350.97,64.726 +344099,352.65,65.57 +344100,354.38,66.407 +344101,348.07,63.856 +344102,349.67,64.735 +344103,351.32,65.608 +344104,353,66.474 +344105,346.82,63.835 +344106,348.38,64.744 +344107,349.98,65.646 +344108,351.63,66.541 +344109,345.57,63.816 +344110,347.09,64.753 +344111,348.65,65.684 +344112,350.25,66.607 +344113,344.32,63.796 +344114,345.8,64.762 +344115,347.31,65.722 +344116,348.87,66.673 +344117,343.07,63.778 +344118,344.51,64.772 +344119,345.98,65.759 +344120,347.49,66.737 +344121,341.82,63.76 +344122,343.21,64.782 +344123,344.64,65.796 +344124,346.11,66.801 +344125,340.57,63.744 +344126,341.92,64.792 +344127,343.31,65.832 +344128,344.73,66.864 +344129,339.32,63.728 +344130,340.63,64.802 +344131,341.97,65.869 +344132,343.34,66.926 +344133,338.08,63.713 +344134,339.34,64.813 +344135,340.64,65.905 +344136,341.96,66.987 +344137,336.84,63.699 +344138,338.05,64.824 +344139,339.3,65.941 +344140,340.58,67.047 +344141,335.59,63.685 +344142,336.76,64.835 +344143,337.96,65.976 +344144,339.19,67.107 +344145,334.35,63.673 +344146,335.47,64.847 +344147,336.62,66.011 +344148,337.8,67.165 +344149,333.11,63.662 +344150,334.19,64.859 +344151,335.29,66.046 +344152,336.42,67.222 +344153,331.87,63.651 +344154,332.9,64.871 +344155,333.95,66.08 +344156,335.03,67.279 +344157,330.63,63.642 +344158,331.61,64.883 +344159,332.61,66.115 +344160,333.64,67.334 +344161,329.39,63.634 +344162,330.32,64.896 +344163,331.27,66.148 +344164,332.25,67.388 +344165,328.15,63.626 +344166,329.03,64.909 +344167,329.93,66.182 +344168,330.86,67.441 +344169,326.92,63.62 +344170,327.74,64.923 +344171,328.59,66.215 +344172,329.47,67.494 +344173,325.68,63.615 +344174,326.46,64.937 +344175,327.26,66.247 +344176,328.08,67.545 +344177,324.45,63.611 +344178,325.17,64.951 +344179,325.92,66.28 +344180,326.69,67.595 +344181,323.21,63.608 +344182,323.88,64.966 +344183,324.58,66.312 +344184,325.3,67.644 +344185,321.98,63.606 +344186,322.59,64.981 +344187,323.24,66.343 +344188,323.9,67.692 +344189,320.74,63.605 +344190,321.31,64.996 +344191,321.9,66.374 +344192,322.51,67.739 +344193,319.51,63.605 +344194,320.02,65.012 +344195,320.56,66.405 +344196,321.12,67.784 +344197,318.28,63.606 +344198,318.73,65.028 +344199,319.22,66.435 +344200,319.73,67.829 +344201,317.05,63.609 +344202,317.45,65.044 +344203,317.88,66.465 +344204,318.33,67.872 +344205,315.81,63.613 +344206,316.16,65.061 +344207,316.54,66.495 +344208,316.94,67.914 +344209,314.58,63.617 +344210,314.87,65.078 +344211,315.2,66.524 +344212,315.55,67.955 +344213,313.35,63.624 +344214,313.59,65.095 +344215,313.85,66.553 +344216,314.15,67.995 +344217,312.12,63.631 +344218,312.3,65.113 +344219,312.51,66.581 +344220,312.76,68.034 +344221,310.89,63.639 +344222,311.02,65.132 +344223,311.17,66.609 +344224,311.36,68.071 +344225,309.66,63.649 +344226,309.73,65.15 +344227,309.83,66.637 +344228,309.97,68.107 +344229,308.43,63.66 +344230,308.44,65.17 +344231,308.49,66.664 +344232,308.58,68.142 +344233,307.2,63.672 +344234,307.16,65.189 +344235,307.15,66.691 +344236,307.18,68.176 +344237,305.97,63.685 +344238,305.87,65.209 +344239,305.81,66.717 +344240,305.79,68.209 +344241,304.74,63.7 +344242,304.58,65.229 +344243,304.47,66.743 +344244,304.39,68.24 +344245,303.51,63.716 +344246,303.3,65.25 +344247,303.13,66.769 +344248,303,68.27 +344249,302.28,63.733 +344250,302.01,65.271 +344251,301.79,66.794 +344252,301.61,68.299 +344253,301.05,63.751 +344254,300.72,65.293 +344255,300.45,66.818 +344256,300.22,68.327 +344257,299.82,63.771 +344258,299.44,65.314 +344259,299.11,66.842 +344260,298.82,68.354 +344261,298.59,63.792 +344262,298.15,65.337 +344263,297.77,66.866 +344264,297.43,68.379 +344265,297.35,63.814 +344266,296.86,65.359 +344267,296.43,66.89 +344268,296.04,68.403 +344269,296.12,63.837 +344270,295.58,65.383 +344271,295.09,66.913 +344272,294.65,68.426 +344273,294.89,63.861 +344274,294.29,65.406 +344275,293.75,66.935 +344276,293.26,68.447 +344277,293.66,63.887 +344278,293,65.43 +344279,292.41,66.957 +344280,291.86,68.468 +344281,292.42,63.914 +344282,291.72,65.454 +344283,291.07,66.979 +344284,290.47,68.487 +344285,291.19,63.943 +344286,290.43,65.479 +344287,289.73,67 +344288,289.09,68.505 +344289,289.96,63.972 +344290,289.14,65.504 +344291,288.39,67.021 +344292,287.7,68.521 +344293,288.72,64.003 +344294,287.85,65.53 +344295,287.05,67.041 +344296,286.31,68.537 +344297,287.49,64.035 +344298,286.56,65.556 +344299,285.71,67.062 +344300,284.92,68.551 +344301,286.25,64.068 +344302,285.27,65.582 +344303,284.37,67.081 +344304,283.53,68.564 +344305,285.02,64.103 +344306,283.99,65.609 +344307,283.03,67.1 +344308,282.15,68.576 +344309,283.78,64.138 +344310,282.7,65.636 +344311,281.69,67.119 +344312,280.76,68.587 +344313,282.54,64.175 +344314,281.41,65.663 +344315,280.36,67.137 +344316,279.38,68.596 +344317,281.3,64.213 +344318,280.12,65.691 +344319,279.02,67.155 +344320,277.99,68.604 +344321,280.06,64.252 +344322,278.83,65.72 +344323,277.68,67.173 +344324,276.61,68.612 +344325,278.82,64.293 +344326,277.54,65.748 +344327,276.34,67.19 +344328,275.23,68.617 +344329,277.58,64.334 +344330,276.25,65.777 +344331,275.01,67.207 +344332,273.84,68.622 +344333,276.34,64.377 +344334,274.96,65.807 +344335,273.67,67.223 +344336,272.46,68.626 +344337,275.09,64.421 +344338,273.66,65.836 +344339,272.33,67.239 +344340,271.08,68.628 +344341,273.85,64.466 +344342,272.37,65.867 +344343,271,67.255 +344344,269.71,68.63 +344345,272.6,64.512 +344346,271.08,65.897 +344347,269.66,67.27 +344348,268.33,68.63 +344349,271.35,64.559 +344350,269.79,65.928 +344351,268.32,67.285 +344352,266.95,68.629 +344353,270.1,64.608 +344354,268.49,65.959 +344355,266.99,67.3 +344356,265.58,68.627 +344357,268.85,64.657 +344358,267.2,65.991 +344359,265.65,67.314 +344360,264.2,68.625 +344361,267.6,64.707 +344362,265.91,66.023 +344363,264.32,67.328 +344364,262.83,68.62 +344365,266.35,64.759 +344366,264.61,66.055 +344367,262.99,67.341 +344368,261.46,68.615 +344369,265.1,64.811 +344370,263.32,66.088 +344371,261.65,67.354 +344372,260.09,68.609 +344373,263.84,64.865 +344374,262.02,66.121 +344375,260.32,67.367 +344376,258.72,68.602 +344377,262.59,64.919 +344378,260.73,66.154 +344379,258.99,67.379 +344380,257.35,68.594 +344381,261.33,64.975 +344382,259.43,66.187 +344383,257.65,67.391 +344384,255.98,68.585 +344385,260.07,65.031 +344386,258.14,66.221 +344387,256.32,67.403 +344388,254.62,68.575 +344389,258.81,65.089 +344390,256.84,66.255 +344391,254.99,67.414 +344392,253.25,68.564 +344393,257.55,65.147 +344394,255.54,66.29 +344395,253.66,67.425 +344396,251.89,68.552 +344397,256.28,65.206 +344398,254.24,66.325 +344399,252.33,67.436 +344400,250.53,68.539 +344401,255.02,65.266 +344402,252.94,66.36 +344403,251,67.446 +344404,249.16,68.526 +344405,253.75,65.327 +344406,251.65,66.395 +344407,249.67,67.457 +344408,247.81,68.511 +344409,252.48,65.389 +344410,250.35,66.431 +344411,248.34,67.466 +344412,246.45,68.495 +344413,251.21,65.452 +344414,249.05,66.466 +344415,247.01,67.476 +344416,245.09,68.479 +344417,249.94,65.515 +344418,247.75,66.503 +344419,245.68,67.485 +344420,243.74,68.462 +344421,248.66,65.579 +344422,246.44,66.539 +344423,244.36,67.494 +344424,242.38,68.444 +344425,247.39,65.644 +344426,245.14,66.576 +344427,243.03,67.503 +344428,241.03,68.426 +344429,246.11,65.71 +344430,243.84,66.612 +344431,241.7,67.512 +344432,239.68,68.406 +344433,244.83,65.776 +344434,242.54,66.65 +344435,240.38,67.52 +344436,238.33,68.386 +344437,243.55,65.843 +344438,241.23,66.687 +344439,239.05,67.528 +344440,236.99,68.365 +344441,242.27,65.91 +344442,239.93,66.724 +344443,237.73,67.536 +344444,235.64,68.344 +344445,240.98,65.979 +344446,238.62,66.762 +344447,236.4,67.543 +344448,234.3,68.322 +344449,239.69,66.048 +344450,237.32,66.8 +344451,235.08,67.551 +344452,232.95,68.299 +344453,238.41,66.117 +344454,236.01,66.838 +344455,233.75,67.558 +344456,231.61,68.275 +344457,237.12,66.187 +344458,234.71,66.876 +344459,232.43,67.565 +344460,230.27,68.251 +344461,235.82,66.257 +344462,233.4,66.915 +344463,231.11,67.572 +344464,228.93,68.227 +344465,234.53,66.328 +344466,232.09,66.953 +344467,229.79,67.578 +344468,227.6,68.202 +344469,233.23,66.4 +344470,230.78,66.992 +344471,228.47,67.585 +344472,226.26,68.176 +344473,231.94,66.471 +344474,229.47,67.031 +344475,227.15,67.591 +344476,224.93,68.15 +344477,230.64,66.544 +344478,228.16,67.07 +344479,225.82,67.597 +344480,223.6,68.124 +344481,229.33,66.616 +344482,226.85,67.109 +344483,224.51,67.603 +344484,222.27,68.097 +344485,228.03,66.689 +344486,225.54,67.148 +344487,223.19,67.609 +344488,220.94,68.069 +344489,226.73,66.763 +344490,224.23,67.188 +344491,221.87,67.614 +344492,219.62,68.042 +344493,225.42,66.836 +344494,222.92,67.227 +344495,220.55,67.62 +344496,218.29,68.014 +344497,224.11,66.91 +344498,221.61,67.267 +344499,219.23,67.625 +344500,216.97,67.985 +344501,222.8,66.984 +344502,220.29,67.306 +344503,217.92,67.631 +344504,215.65,67.957 +344505,221.48,67.059 +344506,218.98,67.346 +344507,216.6,67.636 +344508,214.33,67.928 +344509,220.17,67.133 +344510,217.66,67.386 +344511,215.28,67.641 +344512,213.01,67.898 +344513,218.85,67.208 +344514,216.35,67.426 +344515,213.97,67.646 +344516,211.7,67.869 +344517,217.53,67.283 +344518,215.03,67.466 +344519,212.66,67.651 +344520,210.38,67.839 +344521,216.21,67.357 +344522,213.72,67.506 +344523,211.34,67.656 +344524,209.07,67.81 +344525,214.89,67.432 +344526,212.4,67.545 +344527,210.03,67.661 +344528,207.76,67.78 +344529,213.56,67.507 +344530,211.08,67.585 +344531,208.72,67.666 +344532,206.45,67.75 +344533,212.24,67.582 +344534,209.76,67.625 +344535,207.4,67.671 +344536,205.14,67.72 +344537,210.91,67.658 +344538,208.44,67.665 +344539,206.09,67.676 +344540,203.84,67.69 +344541,209.58,67.733 +344542,207.12,67.705 +344543,204.78,67.681 +344544,202.53,67.659 +344545,208.25,67.807 +344546,205.8,67.745 +344547,203.47,67.686 +344548,201.23,67.629 +344549,206.91,67.882 +344550,204.48,67.785 +344551,202.16,67.691 +344552,199.93,67.599 +344553,205.58,67.957 +344554,203.16,67.825 +344555,200.85,67.695 +344556,198.63,67.569 +344557,204.24,68.032 +344558,201.84,67.865 +344559,199.54,67.7 +344560,197.34,67.539 +344561,202.9,68.106 +344562,200.52,67.904 +344563,198.24,67.705 +344564,196.04,67.51 +344565,201.56,68.18 +344566,199.19,67.944 +344567,196.93,67.71 +344568,194.75,67.48 +344569,200.21,68.254 +344570,197.87,67.983 +344571,195.62,67.715 +344572,193.46,67.45 +344573,198.87,68.328 +344574,196.54,68.023 +344575,194.31,67.721 +344576,192.17,67.421 +344577,197.52,68.401 +344578,195.22,68.062 +344579,193.01,67.726 +344580,190.88,67.392 +344581,196.18,68.474 +344582,193.89,68.102 +344583,191.7,67.731 +344584,189.59,67.363 +344585,194.83,68.547 +344586,192.57,68.141 +344587,190.4,67.737 +344588,188.3,67.335 +344589,193.47,68.619 +344590,191.24,68.18 +344591,189.09,67.742 +344592,187.02,67.307 +344593,192.12,68.691 +344594,189.91,68.219 +344595,187.79,67.748 +344596,185.74,67.279 +344597,190.77,68.763 +344598,188.59,68.257 +344599,186.49,67.753 +344600,184.46,67.252 +344601,189.41,68.834 +344602,187.26,68.296 +344603,185.18,67.759 +344604,183.18,67.225 +344605,188.05,68.904 +344606,185.93,68.334 +344607,183.88,67.765 +344608,181.9,67.198 +344609,186.69,68.974 +344610,184.6,68.373 +344611,182.58,67.772 +344612,180.63,67.172 +344613,185.33,69.044 +344614,183.27,68.411 +344615,181.28,67.778 +344616,179.35,67.146 +344617,183.97,69.113 +344618,181.94,68.449 +344619,179.98,67.784 +344620,178.08,67.121 +344621,182.6,69.182 +344622,180.61,68.486 +344623,178.68,67.791 +344624,176.81,67.096 +344625,181.24,69.249 +344626,179.28,68.524 +344627,177.38,67.798 +344628,175.54,67.072 +344629,179.87,69.317 +344630,177.94,68.561 +344631,176.08,67.805 +344632,174.27,67.049 +344633,178.5,69.383 +344634,176.61,68.598 +344635,174.78,67.812 +344636,173,67.026 +344637,177.13,69.449 +344638,175.28,68.635 +344639,173.48,67.82 +344640,171.74,67.004 +344641,175.76,69.514 +344642,173.94,68.672 +344643,172.18,67.827 +344644,170.47,66.982 +344645,174.39,69.579 +344646,172.61,68.708 +344647,170.89,67.835 +344648,169.21,66.961 +344649,173.02,69.643 +344650,171.28,68.744 +344651,169.59,67.843 +344652,167.95,66.941 +344653,171.64,69.706 +344654,169.94,68.78 +344655,168.29,67.852 +344656,166.69,66.922 +344657,170.27,69.768 +344658,168.61,68.816 +344659,167,67.86 +344660,165.43,66.903 +344661,168.89,69.83 +344662,167.27,68.851 +344663,165.7,67.869 +344664,164.17,66.885 +344665,167.51,69.89 +344666,165.93,68.886 +344667,164.4,67.878 +344668,162.91,66.868 +344669,166.13,69.95 +344670,164.6,68.921 +344671,163.11,67.888 +344672,161.66,66.852 +344673,164.75,70.009 +344674,163.26,68.956 +344675,161.81,67.898 +344676,160.4,66.836 +344677,163.37,70.067 +344678,161.92,68.99 +344679,160.52,67.908 +344680,159.15,66.821 +344681,161.99,70.124 +344682,160.59,69.024 +344683,159.23,67.918 +344684,157.9,66.808 +344685,160.61,70.181 +344686,159.25,69.057 +344687,157.93,67.928 +344688,156.65,66.795 +344689,159.22,70.236 +344690,157.91,69.091 +344691,156.64,67.939 +344692,155.4,66.783 +344693,157.84,70.29 +344694,156.57,69.124 +344695,155.34,67.95 +344696,154.15,66.772 +344697,156.45,70.344 +344698,155.23,69.156 +344699,154.05,67.962 +344700,152.9,66.762 +344701,155.06,70.396 +344702,153.89,69.189 +344703,152.76,67.974 +344704,151.65,66.753 +344705,153.68,70.448 +344706,152.56,69.221 +344707,151.47,67.986 +344708,150.41,66.745 +344709,152.29,70.498 +344710,151.22,69.252 +344711,150.17,67.998 +344712,149.16,66.738 +344713,150.9,70.548 +344714,149.88,69.284 +344715,148.88,68.011 +344716,147.92,66.732 +344717,149.51,70.596 +344718,148.54,69.314 +344719,147.59,68.024 +344720,146.68,66.727 +344721,148.12,70.643 +344722,147.2,69.345 +344723,146.3,68.038 +344724,145.43,66.723 +344725,146.73,70.69 +344726,145.85,69.375 +344727,145.01,68.052 +344728,144.19,66.72 +344729,145.34,70.735 +344730,144.51,69.405 +344731,143.72,68.066 +344732,142.95,66.718 +344733,143.95,70.779 +344734,143.17,69.435 +344735,142.43,68.08 +344736,141.71,66.718 +344737,142.56,70.822 +344738,141.83,69.464 +344739,141.14,68.095 +344740,140.47,66.718 +344741,141.16,70.864 +344742,140.49,69.492 +344743,139.85,68.11 +344744,139.23,66.72 +344745,139.77,70.905 +344746,139.15,69.521 +344747,138.56,68.126 +344748,137.99,66.722 +344749,138.38,70.945 +344750,137.81,69.549 +344751,137.27,68.142 +344752,136.75,66.726 +344753,136.98,70.983 +344754,136.47,69.576 +344755,135.98,68.159 +344756,135.51,66.731 +344757,135.59,71.021 +344758,135.12,69.604 +344759,134.69,68.175 +344760,134.28,66.737 +344761,134.2,71.057 +344762,133.78,69.63 +344763,133.4,68.193 +344764,133.04,66.745 +344765,132.8,71.092 +344766,132.44,69.657 +344767,132.11,68.21 +344768,131.8,66.753 +344769,131.41,71.126 +344770,131.1,69.683 +344771,130.82,68.228 +344772,130.57,66.763 +344773,130.01,71.159 +344774,129.75,69.708 +344775,129.53,68.246 +344776,129.33,66.774 +344777,128.62,71.19 +344778,128.41,69.734 +344779,128.24,68.265 +344780,128.09,66.786 +344781,127.23,71.221 +344782,127.07,69.758 +344783,126.95,68.284 +344784,126.86,66.799 +344785,125.83,71.25 +344786,125.73,69.783 +344787,125.66,68.304 +344788,125.62,66.814 +344789,124.44,71.278 +344790,124.39,69.807 +344791,124.37,68.324 +344792,124.39,66.829 +344793,123.04,71.305 +344794,123.04,69.831 +344795,123.08,68.344 +344796,123.15,66.846 +344797,121.65,71.331 +344798,121.7,69.854 +344799,121.79,68.365 +344800,121.91,66.865 +344801,120.25,71.355 +344802,120.36,69.877 +344803,120.5,68.386 +344804,120.68,66.884 +344805,118.86,71.378 +344806,119.02,69.899 +344807,119.21,68.407 +344808,119.44,66.905 +344809,117.47,71.401 +344810,117.67,69.921 +344811,117.92,68.429 +344812,118.21,66.926 +344813,116.07,71.421 +344814,116.33,69.943 +344815,116.63,68.451 +344816,116.97,66.949 +344817,114.68,71.441 +344818,114.99,69.964 +344819,115.34,68.474 +344820,115.73,66.974 +344821,113.29,71.46 +344822,113.65,69.985 +344823,114.05,68.497 +344824,114.5,66.999 +344825,111.9,71.477 +344826,112.31,70.005 +344827,112.76,68.521 +344828,113.26,67.026 +344829,110.5,71.493 +344830,110.96,70.025 +344831,111.47,68.545 +344832,112.02,67.054 +344833,109.11,71.508 +344834,109.62,70.044 +344835,110.18,68.569 +344836,110.78,67.083 +344837,107.72,71.522 +344838,108.28,70.064 +344839,108.89,68.594 +344840,109.55,67.114 +344841,106.33,71.535 +344842,106.94,70.082 +344843,107.6,68.619 +344844,108.31,67.145 +344845,104.94,71.546 +344846,105.6,70.101 +344847,106.31,68.644 +344848,107.07,67.178 +344849,103.55,71.556 +344850,104.26,70.119 +344851,105.01,68.67 +344852,105.83,67.212 +344853,102.16,71.566 +344854,102.92,70.136 +344855,103.72,68.696 +344856,104.59,67.247 +344857,100.78,71.574 +344858,101.58,70.154 +344859,102.43,68.723 +344860,103.35,67.283 +344861,99.388,71.58 +344862,100.23,70.17 +344863,101.14,68.75 +344864,102.11,67.321 +344865,98.002,71.586 +344866,98.895,70.187 +344867,99.847,68.777 +344868,100.86,67.36 +344869,96.616,71.591 +344870,97.555,70.203 +344871,98.555,68.805 +344872,99.621,67.399 +344873,95.231,71.594 +344874,96.215,70.218 +344875,97.262,68.833 +344876,98.377,67.44 +344877,93.847,71.597 +344878,94.876,70.234 +344879,95.969,68.862 +344880,97.133,67.482 +344881,92.463,71.598 +344882,93.536,70.249 +344883,94.676,68.891 +344884,95.887,67.526 +344885,91.081,71.598 +344886,92.198,70.263 +344887,93.382,68.92 +344888,94.641,67.57 +344889,89.699,71.597 +344890,90.859,70.277 +344891,92.088,68.95 +344892,93.393,67.615 +344893,88.319,71.595 +344894,89.521,70.291 +344895,90.794,68.98 +344896,92.145,67.662 +344897,86.939,71.592 +344898,88.183,70.305 +344899,89.499,69.01 +344900,90.895,67.709 +344901,85.56,71.588 +344902,86.845,70.318 +344903,88.204,69.041 +344904,89.645,67.758 +344905,84.183,71.583 +344906,85.508,70.331 +344907,86.909,69.072 +344908,88.393,67.808 +344909,82.806,71.577 +344910,84.171,70.343 +344911,85.613,69.103 +344912,87.14,67.858 +344913,81.431,71.57 +344914,82.834,70.355 +344915,84.317,69.135 +344916,85.886,67.91 +344917,80.056,71.562 +344918,81.498,70.367 +344919,83.02,69.167 +344920,84.631,67.963 +344921,78.683,71.553 +344922,80.162,70.378 +344923,81.723,69.199 +344924,83.375,68.016 +344925,77.311,71.543 +344926,78.827,70.39 +344927,80.426,69.232 +344928,82.117,68.071 +344929,75.94,71.532 +344930,77.491,70.4 +344931,79.128,69.264 +344932,80.858,68.126 +344933,74.57,71.52 +344934,76.157,70.411 +344935,77.829,69.298 +344936,79.598,68.183 +344937,73.202,71.508 +344938,74.823,70.421 +344939,76.531,69.331 +344940,78.336,68.24 +344941,71.834,71.494 +344942,73.489,70.431 +344943,75.231,69.365 +344944,77.073,68.298 +344945,70.469,71.48 +344946,72.155,70.441 +344947,73.932,69.399 +344948,75.808,68.357 +344949,69.104,71.464 +344950,70.822,70.45 +344951,72.632,69.434 +344952,74.542,68.417 +344953,67.741,71.448 +344954,69.49,70.459 +344955,71.331,69.468 +344956,73.275,68.478 +344957,66.379,71.432 +344958,68.158,70.468 +344959,70.03,69.503 +344960,72.006,68.539 +344961,65.018,71.414 +344962,66.826,70.476 +344963,68.728,69.538 +344964,70.735,68.601 +344965,63.659,71.395 +344966,65.495,70.485 +344967,67.426,69.574 +344968,69.463,68.664 +344969,62.301,71.376 +344970,64.164,70.493 +344971,66.123,69.609 +344972,68.19,68.728 +344973,60.945,71.356 +344974,62.834,70.5 +344975,64.82,69.645 +344976,66.914,68.793 +344977,59.59,71.336 +344978,61.504,70.508 +344979,63.516,69.681 +344980,65.638,68.858 +344981,58.236,71.315 +344982,60.175,70.515 +344983,62.212,69.718 +344984,64.359,68.923 +344985,56.884,71.293 +344986,58.846,70.522 +344987,60.907,69.754 +344988,63.079,68.99 +344989,55.534,71.27 +344990,57.518,70.529 +344991,59.601,69.791 +344992,61.797,69.057 +344993,54.185,71.247 +344994,56.19,70.536 +344995,58.295,69.828 +344996,60.513,69.124 +344997,52.837,71.224 +344998,54.863,70.543 +344999,56.989,69.865 +345000,59.228,69.192 +345001,51.492,71.199 +345002,53.536,70.549 +345003,55.682,69.902 +345004,57.941,69.261 +345005,50.147,71.175 +345006,52.21,70.555 +345007,54.374,69.94 +345008,56.652,69.33 +345009,48.804,71.149 +345010,50.885,70.561 +345011,53.066,69.977 +345012,55.362,69.399 +345013,47.463,71.124 +345014,49.559,70.567 +345015,51.757,70.015 +345016,54.069,69.469 +345017,46.124,71.097 +345018,48.235,70.573 +345019,50.447,70.053 +345020,52.775,69.54 +345021,44.786,71.071 +345022,46.911,70.578 +345023,49.137,70.091 +345024,51.479,69.611 +345025,43.449,71.044 +345026,45.587,70.584 +345027,47.827,70.129 +345028,50.181,69.682 +345029,42.114,71.016 +345030,44.264,70.589 +345031,46.515,70.167 +345032,48.882,69.754 +345033,40.781,70.989 +345034,42.942,70.594 +345035,45.204,70.206 +345036,47.58,69.825 +345037,39.45,70.96 +345038,41.62,70.599 +345039,43.891,70.244 +345040,46.277,69.898 +345041,38.12,70.932 +345042,40.299,70.604 +345043,42.578,70.283 +345044,44.972,69.97 +345045,36.792,70.903 +345046,38.978,70.609 +345047,41.264,70.321 +345048,43.665,70.043 +345049,35.465,70.874 +345050,37.658,70.614 +345051,39.95,70.36 +345052,42.356,70.115 +345053,34.14,70.845 +345054,36.339,70.618 +345055,38.635,70.399 +345056,41.045,70.188 +345057,32.817,70.816 +345058,35.019,70.623 +345059,37.32,70.438 +345060,39.733,70.262 +345061,31.495,70.787 +345062,33.701,70.628 +345063,36.004,70.477 +345064,38.419,70.335 +345065,30.175,70.757 +345066,32.383,70.632 +345067,34.687,70.516 +345068,37.102,70.408 +345069,28.857,70.727 +345070,31.066,70.637 +345071,33.37,70.555 +345072,35.784,70.482 +345073,27.541,70.697 +345074,29.749,70.641 +345075,32.052,70.593 +345076,34.464,70.555 +345077,26.226,70.668 +345078,28.433,70.646 +345079,30.733,70.632 +345080,33.142,70.628 +345081,24.913,70.638 +345082,27.117,70.65 +345083,29.414,70.671 +345084,31.819,70.702 +345085,23.601,70.608 +345086,25.802,70.655 +345087,28.094,70.71 +345088,30.493,70.775 +345089,22.291,70.578 +345090,24.487,70.659 +345091,26.774,70.749 +345092,29.166,70.849 +345093,20.983,70.548 +345094,23.173,70.664 +345095,25.453,70.788 +345096,27.837,70.922 +345097,19.677,70.518 +345098,21.86,70.668 +345099,24.132,70.827 +345100,26.506,70.995 +345101,18.372,70.489 +345102,20.547,70.673 +345103,22.809,70.866 +345104,25.173,71.068 +345105,17.068,70.459 +345106,19.235,70.678 +345107,21.487,70.905 +345108,23.838,71.141 +345109,15.767,70.43 +345110,17.923,70.682 +345111,20.163,70.943 +345112,22.502,71.213 +345113,14.467,70.401 +345114,16.612,70.687 +345115,18.839,70.982 +345116,21.164,71.285 +345117,13.169,70.372 +345118,15.301,70.692 +345119,17.515,71.02 +345120,19.824,71.357 +345121,11.872,70.343 +345122,13.991,70.697 +345123,16.19,71.059 +345124,18.483,71.429 +345125,10.577,70.315 +345126,12.681,70.702 +345127,14.864,71.097 +345128,17.139,71.501 +345129,9.2837,70.287 +345130,11.372,70.707 +345131,13.538,71.135 +345132,15.794,71.572 +345133,7.9919,70.259 +345134,10.063,70.712 +345135,12.211,71.173 +345136,14.447,71.642 +345137,6.7017,70.232 +345138,8.7554,70.718 +345139,10.884,71.211 +345140,13.099,71.713 +345141,5.413,70.205 +345142,7.4479,70.723 +345143,9.5559,71.249 +345144,11.749,71.783 +345145,4.1259,70.178 +345146,6.1409,70.729 +345147,8.2275,71.287 +345148,10.397,71.852 +345149,2.8404,70.152 +345150,4.8343,70.735 +345151,6.8984,71.324 +345152,9.0441,71.921 +345153,1.5564,70.126 +345154,3.5283,70.741 +345155,5.5689,71.362 +345156,7.6892,71.989 +345157,0.27388,70.101 +345158,2.2228,70.747 +345159,4.2388,71.399 +345160,6.3328,72.057 +345161,358.99,70.077 +345162,0.9178,70.753 +345163,2.9082,71.436 +345164,4.9748,72.125 +345165,357.71,70.053 +345166,359.61,70.76 +345167,1.5771,71.473 +345168,3.6153,72.191 +345169,356.44,70.029 +345170,358.31,70.766 +345171,0.2455,71.509 +345172,2.2542,72.258 +345173,355.16,70.006 +345174,357.01,70.773 +345175,358.91,71.546 +345176,0.89177,72.323 +345177,353.88,69.984 +345178,355.7,70.78 +345179,357.58,71.582 +345180,359.53,72.388 +345181,352.61,69.962 +345182,354.4,70.788 +345183,356.25,71.618 +345184,358.16,72.453 +345185,351.34,69.941 +345186,353.1,70.795 +345187,354.91,71.654 +345188,356.8,72.516 +345189,350.07,69.921 +345190,351.8,70.803 +345191,353.58,71.689 +345192,355.43,72.579 +345193,348.8,69.901 +345194,350.49,70.811 +345195,352.25,71.724 +345196,354.06,72.641 +345197,347.53,69.882 +345198,349.19,70.819 +345199,350.91,71.759 +345200,352.69,72.703 +345201,346.26,69.864 +345202,347.89,70.828 +345203,349.58,71.794 +345204,351.32,72.763 +345205,345,69.847 +345206,346.59,70.836 +345207,348.24,71.829 +345208,349.94,72.823 +345209,343.73,69.83 +345210,345.29,70.845 +345211,346.9,71.863 +345212,348.57,72.882 +345213,342.47,69.814 +345214,343.99,70.855 +345215,345.57,71.897 +345216,347.19,72.94 +345217,341.21,69.799 +345218,342.69,70.864 +345219,344.23,71.931 +345220,345.82,72.998 +345221,339.94,69.785 +345222,341.4,70.874 +345223,342.89,71.964 +345224,344.44,73.054 +345225,338.69,69.772 +345226,340.1,70.884 +345227,341.55,71.997 +345228,343.06,73.11 +345229,337.43,69.76 +345230,338.8,70.895 +345231,340.22,72.03 +345232,341.68,73.165 +345233,336.17,69.749 +345234,337.5,70.905 +345235,338.88,72.062 +345236,340.3,73.218 +345237,334.91,69.738 +345238,336.21,70.917 +345239,337.54,72.095 +345240,338.92,73.271 +345241,333.66,69.729 +345242,334.91,70.928 +345243,336.2,72.126 +345244,337.53,73.323 +345245,332.4,69.72 +345246,333.61,70.94 +345247,334.86,72.158 +345248,336.15,73.374 +345249,331.15,69.713 +345250,332.32,70.952 +345251,333.52,72.189 +345252,334.76,73.424 +345253,329.9,69.706 +345254,331.02,70.964 +345255,332.18,72.22 +345256,333.38,73.473 +345257,328.64,69.701 +345258,329.72,70.977 +345259,330.84,72.251 +345260,331.99,73.521 +345261,327.39,69.697 +345262,328.43,70.99 +345263,329.5,72.281 +345264,330.61,73.568 +345265,326.14,69.693 +345266,327.13,71.003 +345267,328.16,72.311 +345268,329.22,73.614 +345269,324.89,69.691 +345270,325.84,71.017 +345271,326.82,72.34 +345272,327.83,73.659 +345273,323.65,69.69 +345274,324.54,71.031 +345275,325.47,72.369 +345276,326.44,73.702 +345277,322.4,69.69 +345278,323.25,71.046 +345279,324.13,72.398 +345280,325.05,73.745 +345281,321.15,69.691 +345282,321.95,71.061 +345283,322.79,72.426 +345284,323.66,73.787 +345285,319.9,69.693 +345286,320.66,71.076 +345287,321.45,72.454 +345288,322.27,73.827 +345289,318.66,69.696 +345290,319.37,71.091 +345291,320.11,72.482 +345292,320.88,73.867 +345293,317.41,69.701 +345294,318.07,71.107 +345295,318.76,72.509 +345296,319.49,73.905 +345297,316.17,69.706 +345298,316.78,71.124 +345299,317.42,72.536 +345300,318.09,73.942 +345301,314.92,69.713 +345302,315.49,71.141 +345303,316.08,72.563 +345304,316.7,73.978 +345305,313.68,69.721 +345306,314.19,71.158 +345307,314.73,72.589 +345308,315.31,74.013 +345309,312.44,69.73 +345310,312.9,71.175 +345311,313.39,72.615 +345312,313.91,74.047 +345313,311.19,69.74 +345314,311.61,71.193 +345315,312.05,72.64 +345316,312.52,74.08 +345317,309.95,69.752 +345318,310.31,71.212 +345319,310.7,72.665 +345320,311.13,74.111 +345321,308.71,69.764 +345322,309.02,71.23 +345323,309.36,72.69 +345324,309.73,74.142 +345325,307.47,69.778 +345326,307.73,71.249 +345327,308.02,72.714 +345328,308.34,74.171 +345329,306.23,69.793 +345330,306.43,71.269 +345331,306.67,72.738 +345332,306.94,74.199 +345333,304.99,69.809 +345334,305.14,71.289 +345335,305.33,72.761 +345336,305.55,74.226 +345337,303.74,69.827 +345338,303.85,71.309 +345339,303.99,72.784 +345340,304.16,74.252 +345341,302.5,69.846 +345342,302.56,71.33 +345343,302.64,72.807 +345344,302.76,74.276 +345345,301.26,69.866 +345346,301.26,71.351 +345347,301.3,72.829 +345348,301.37,74.299 +345349,300.02,69.887 +345350,299.97,71.372 +345351,299.95,72.851 +345352,299.97,74.322 +345353,298.78,69.909 +345354,298.68,71.394 +345355,298.61,72.873 +345356,298.58,74.343 +345357,297.54,69.933 +345358,297.38,71.417 +345359,297.27,72.894 +345360,297.18,74.362 +345361,296.3,69.957 +345362,296.09,71.439 +345363,295.92,72.914 +345364,295.79,74.381 +345365,295.06,69.983 +345366,294.8,71.462 +345367,294.58,72.935 +345368,294.4,74.399 +345369,293.81,70.011 +345370,293.51,71.486 +345371,293.24,72.955 +345372,293,74.415 +345373,292.57,70.039 +345374,292.21,71.51 +345375,291.89,72.974 +345376,291.61,74.43 +345377,291.33,70.069 +345378,290.92,71.534 +345379,290.55,72.993 +345380,290.22,74.444 +345381,290.09,70.1 +345382,289.63,71.559 +345383,289.21,73.012 +345384,288.82,74.457 +345385,288.85,70.132 +345386,288.33,71.584 +345387,287.86,73.03 +345388,287.43,74.469 +345389,287.6,70.165 +345390,287.04,71.61 +345391,286.52,73.048 +345392,286.04,74.479 +345393,286.36,70.199 +345394,285.75,71.635 +345395,285.18,73.066 +345396,284.65,74.489 +345397,285.12,70.235 +345398,284.45,71.662 +345399,283.83,73.083 +345400,283.26,74.497 +345401,283.87,70.272 +345402,283.16,71.688 +345403,282.49,73.1 +345404,281.87,74.504 +345405,282.63,70.31 +345406,281.86,71.715 +345407,281.15,73.116 +345408,280.48,74.51 +345409,281.38,70.349 +345410,280.57,71.743 +345411,279.8,73.132 +345412,279.09,74.515 +345413,280.14,70.389 +345414,279.27,71.771 +345415,278.46,73.148 +345416,277.7,74.519 +345417,278.89,70.43 +345418,277.98,71.799 +345419,277.12,73.163 +345420,276.31,74.521 +345421,277.64,70.473 +345422,276.68,71.827 +345423,275.78,73.178 +345424,274.92,74.523 +345425,276.39,70.516 +345426,275.39,71.856 +345427,274.44,73.193 +345428,273.54,74.524 +345429,275.14,70.561 +345430,274.09,71.886 +345431,273.1,73.207 +345432,272.15,74.523 +345433,273.9,70.607 +345434,272.8,71.915 +345435,271.75,73.221 +345436,270.77,74.522 +345437,272.65,70.654 +345438,271.5,71.945 +345439,270.41,73.234 +345440,269.38,74.519 +345441,271.39,70.702 +345442,270.2,71.976 +345443,269.07,73.248 +345444,268,74.515 +345445,270.14,70.751 +345446,268.91,72.006 +345447,267.73,73.26 +345448,266.62,74.511 +345449,268.89,70.801 +345450,267.61,72.038 +345451,266.39,73.273 +345452,265.24,74.505 +345453,267.63,70.852 +345454,266.31,72.069 +345455,265.05,73.285 +345456,263.86,74.498 +345457,266.38,70.904 +345458,265.01,72.101 +345459,263.71,73.297 +345460,262.48,74.491 +345461,265.12,70.957 +345462,263.72,72.133 +345463,262.37,73.308 +345464,261.1,74.482 +345465,263.87,71.011 +345466,262.42,72.165 +345467,261.04,73.32 +345468,259.72,74.473 +345469,262.61,71.066 +345470,261.12,72.198 +345471,259.7,73.331 +345472,258.34,74.462 +345473,261.35,71.122 +345474,259.82,72.231 +345475,258.36,73.341 +345476,256.97,74.451 +345477,260.09,71.178 +345478,258.52,72.264 +345479,257.02,73.352 +345480,255.59,74.439 +345481,258.83,71.236 +345482,257.22,72.298 +345483,255.68,73.362 +345484,254.22,74.426 +345485,257.56,71.294 +345486,255.92,72.331 +345487,254.35,73.371 +345488,252.85,74.412 +345489,256.3,71.354 +345490,254.62,72.366 +345491,253.01,73.381 +345492,251.48,74.397 +345493,255.03,71.414 +345494,253.31,72.4 +345495,251.68,73.39 +345496,250.11,74.381 +345497,253.77,71.475 +345498,252.01,72.435 +345499,250.34,73.399 +345500,248.74,74.365 +345501,252.5,71.537 +345502,250.71,72.47 +345503,249,73.408 +345504,247.37,74.348 +345505,251.23,71.599 +345506,249.41,72.505 +345507,247.67,73.416 +345508,246.01,74.33 +345509,249.96,71.663 +345510,248.1,72.54 +345511,246.33,73.424 +345512,244.64,74.311 +345513,248.68,71.727 +345514,246.8,72.576 +345515,245,73.432 +345516,243.28,74.292 +345517,247.41,71.791 +345518,245.5,72.612 +345519,243.67,73.44 +345520,241.92,74.272 +345521,246.13,71.857 +345522,244.19,72.648 +345523,242.33,73.447 +345524,240.56,74.251 +345525,244.86,71.923 +345526,242.89,72.685 +345527,241,73.455 +345528,239.2,74.23 +345529,243.58,71.989 +345530,241.58,72.721 +345531,239.67,73.462 +345532,237.84,74.208 +345533,242.3,72.056 +345534,240.27,72.758 +345535,238.34,73.468 +345536,236.48,74.185 +345537,241.02,72.124 +345538,238.97,72.795 +345539,237.01,73.475 +345540,235.13,74.162 +345541,239.73,72.193 +345542,237.66,72.832 +345543,235.68,73.482 +345544,233.78,74.138 +345545,238.45,72.261 +345546,236.35,72.87 +345547,234.35,73.488 +345548,232.42,74.114 +345549,237.16,72.331 +345550,235.04,72.907 +345551,233.02,73.494 +345552,231.07,74.089 +345553,235.88,72.4 +345554,233.73,72.945 +345555,231.69,73.5 +345556,229.72,74.064 +345557,234.59,72.471 +345558,232.42,72.983 +345559,230.36,73.506 +345560,228.38,74.038 +345561,233.29,72.541 +345562,231.11,73.021 +345563,229.03,73.512 +345564,227.03,74.012 +345565,232,72.612 +345566,229.8,73.059 +345567,227.7,73.517 +345568,225.69,73.985 +345569,230.71,72.684 +345570,228.49,73.097 +345571,226.37,73.523 +345572,224.34,73.958 +345573,229.41,72.756 +345574,227.18,73.136 +345575,225.05,73.528 +345576,223,73.931 +345577,228.11,72.828 +345578,225.87,73.174 +345579,223.72,73.533 +345580,221.66,73.903 +345581,226.81,72.9 +345582,224.55,73.213 +345583,222.39,73.538 +345584,220.32,73.875 +345585,225.51,72.973 +345586,223.24,73.251 +345587,221.07,73.544 +345588,218.99,73.847 +345589,224.21,73.045 +345590,221.93,73.29 +345591,219.75,73.549 +345592,217.65,73.819 +345593,222.9,73.118 +345594,220.61,73.329 +345595,218.42,73.553 +345596,216.32,73.79 +345597,221.59,73.192 +345598,219.3,73.368 +345599,217.1,73.558 +345600,214.99,73.761 +345601,220.29,73.265 +345602,217.98,73.407 +345603,215.77,73.563 +345604,213.66,73.732 +345605,218.98,73.338 +345606,216.66,73.446 +345607,214.45,73.568 +345608,212.33,73.703 +345609,217.66,73.412 +345610,215.35,73.485 +345611,213.13,73.573 +345612,211,73.673 +345613,216.35,73.485 +345614,214.03,73.524 +345615,211.81,73.577 +345616,209.67,73.644 +345617,215.03,73.559 +345618,212.71,73.563 +345619,210.49,73.582 +345620,208.35,73.614 +345621,213.72,73.632 +345622,211.39,73.602 +345623,209.17,73.587 +345624,207.03,73.585 +345625,212.4,73.706 +345626,210.07,73.641 +345627,207.85,73.591 +345628,205.71,73.555 +345629,211.07,73.78 +345630,208.75,73.68 +345631,206.53,73.596 +345632,204.39,73.526 +345633,209.75,73.853 +345634,207.43,73.719 +345635,205.21,73.601 +345636,203.07,73.496 +345637,208.43,73.926 +345638,206.11,73.758 +345639,203.89,73.605 +345640,201.75,73.467 +345641,207.1,73.999 +345642,204.79,73.797 +345643,202.57,73.61 +345644,200.44,73.437 +345645,205.77,74.072 +345646,203.47,73.836 +345647,201.26,73.615 +345648,199.13,73.408 +345649,204.44,74.145 +345650,202.14,73.875 +345651,199.94,73.62 +345652,197.82,73.379 +345653,203.11,74.218 +345654,200.82,73.914 +345655,198.62,73.625 +345656,196.51,73.35 +345657,201.78,74.29 +345658,199.5,73.952 +345659,197.31,73.63 +345660,195.2,73.321 +345661,200.44,74.362 +345662,198.17,73.991 +345663,195.99,73.635 +345664,193.89,73.293 +345665,199.1,74.434 +345666,196.85,74.03 +345667,194.68,73.64 +345668,192.59,73.265 +345669,197.76,74.505 +345670,195.52,74.068 +345671,193.36,73.646 +345672,191.29,73.237 +345673,196.42,74.577 +345674,194.19,74.106 +345675,192.05,73.651 +345676,189.99,73.209 +345677,195.08,74.647 +345678,192.87,74.145 +345679,190.74,73.657 +345680,188.69,73.182 +345681,193.74,74.718 +345682,191.54,74.183 +345683,189.43,73.662 +345684,187.39,73.155 +345685,192.39,74.787 +345686,190.21,74.221 +345687,188.11,73.668 +345688,186.09,73.129 +345689,191.05,74.857 +345690,188.88,74.258 +345691,186.8,73.674 +345692,184.8,73.103 +345693,189.7,74.926 +345694,187.55,74.296 +345695,185.49,73.68 +345696,183.5,73.077 +345697,188.35,74.994 +345698,186.22,74.334 +345699,184.18,73.687 +345700,182.21,73.052 +345701,186.99,75.062 +345702,184.89,74.371 +345703,182.87,73.693 +345704,180.92,73.028 +345705,185.64,75.129 +345706,183.56,74.408 +345707,181.56,73.7 +345708,179.63,73.004 +345709,184.29,75.196 +345710,182.23,74.445 +345711,180.25,73.707 +345712,178.34,72.98 +345713,182.93,75.262 +345714,180.9,74.482 +345715,178.94,73.714 +345716,177.06,72.957 +345717,181.57,75.328 +345718,179.57,74.518 +345719,177.64,73.721 +345720,175.77,72.935 +345721,180.21,75.393 +345722,178.23,74.555 +345723,176.33,73.728 +345724,174.49,72.913 +345725,178.85,75.457 +345726,176.9,74.591 +345727,175.02,73.736 +345728,173.21,72.892 +345729,177.49,75.52 +345730,175.57,74.627 +345731,173.72,73.744 +345732,171.93,72.872 +345733,176.12,75.583 +345734,174.23,74.662 +345735,172.41,73.752 +345736,170.65,72.852 +345737,174.76,75.645 +345738,172.9,74.698 +345739,171.1,73.761 +345740,169.37,72.833 +345741,173.39,75.707 +345742,171.56,74.733 +345743,169.8,73.769 +345744,168.09,72.815 +345745,172.02,75.767 +345746,170.23,74.768 +345747,168.49,73.778 +345748,166.82,72.797 +345749,170.65,75.827 +345750,168.89,74.803 +345751,167.19,73.787 +345752,165.54,72.781 +345753,169.28,75.886 +345754,167.55,74.837 +345755,165.88,73.797 +345756,164.27,72.765 +345757,167.91,75.944 +345758,166.22,74.871 +345759,164.58,73.807 +345760,163,72.75 +345761,166.54,76.001 +345762,164.88,74.905 +345763,163.28,73.817 +345764,161.73,72.736 +345765,165.16,76.057 +345766,163.54,74.939 +345767,161.97,73.827 +345768,160.46,72.722 +345769,163.79,76.113 +345770,162.2,74.972 +345771,160.67,73.838 +345772,159.19,72.71 +345773,162.41,76.167 +345774,160.86,75.005 +345775,159.37,73.849 +345776,157.93,72.699 +345777,161.03,76.221 +345778,159.52,75.038 +345779,158.07,73.86 +345780,156.66,72.688 +345781,159.66,76.274 +345782,158.18,75.07 +345783,156.77,73.871 +345784,155.4,72.679 +345785,158.28,76.325 +345786,156.84,75.102 +345787,155.47,73.883 +345788,154.13,72.67 +345789,156.89,76.376 +345790,155.5,75.134 +345791,154.16,73.896 +345792,152.87,72.662 +345793,155.51,76.426 +345794,154.16,75.165 +345795,152.86,73.908 +345796,151.61,72.656 +345797,154.13,76.475 +345798,152.82,75.196 +345799,151.56,73.921 +345800,150.35,72.65 +345801,152.75,76.522 +345802,151.48,75.227 +345803,150.26,73.934 +345804,149.09,72.645 +345805,151.36,76.569 +345806,150.14,75.257 +345807,148.96,73.948 +345808,147.83,72.642 +345809,149.98,76.615 +345810,148.8,75.287 +345811,147.67,73.962 +345812,146.57,72.639 +345813,148.59,76.659 +345814,147.46,75.317 +345815,146.37,73.976 +345816,145.31,72.638 +345817,147.2,76.703 +345818,146.11,75.346 +345819,145.07,73.991 +345820,144.06,72.638 +345821,145.82,76.745 +345822,144.77,75.375 +345823,143.77,74.006 +345824,142.8,72.639 +345825,144.43,76.787 +345826,143.43,75.404 +345827,142.47,74.022 +345828,141.55,72.64 +345829,143.04,76.827 +345830,142.09,75.432 +345831,141.17,74.037 +345832,140.3,72.643 +345833,141.65,76.866 +345834,140.74,75.46 +345835,139.87,74.054 +345836,139.04,72.648 +345837,140.26,76.904 +345838,139.4,75.488 +345839,138.58,74.07 +345840,137.79,72.653 +345841,138.87,76.941 +345842,138.05,75.515 +345843,137.28,74.087 +345844,136.54,72.66 +345845,137.48,76.977 +345846,136.71,75.542 +345847,135.98,74.105 +345848,135.29,72.667 +345849,136.08,77.012 +345850,135.37,75.568 +345851,134.68,74.122 +345852,134.04,72.676 +345853,134.69,77.045 +345854,134.02,75.594 +345855,133.39,74.14 +345856,132.79,72.686 +345857,133.3,77.078 +345858,132.68,75.62 +345859,132.09,74.159 +345860,131.54,72.697 +345861,131.91,77.109 +345862,131.33,75.645 +345863,130.79,74.178 +345864,130.29,72.71 +345865,130.51,77.139 +345866,129.99,75.67 +345867,129.5,74.197 +345868,129.04,72.723 +345869,129.12,77.168 +345870,128.64,75.694 +345871,128.2,74.217 +345872,127.79,72.738 +345873,127.72,77.196 +345874,127.3,75.718 +345875,126.9,74.237 +345876,126.54,72.754 +345877,126.33,77.223 +345878,125.95,75.742 +345879,125.61,74.258 +345880,125.29,72.771 +345881,124.94,77.248 +345882,124.61,75.765 +345883,124.31,74.279 +345884,124.05,72.79 +345885,123.54,77.272 +345886,123.26,75.788 +345887,123.01,74.3 +345888,122.8,72.81 +345889,122.15,77.295 +345890,121.92,75.811 +345891,121.72,74.322 +345892,121.55,72.831 +345893,120.75,77.317 +345894,120.57,75.833 +345895,120.42,74.344 +345896,120.3,72.853 +345897,119.36,77.338 +345898,119.23,75.855 +345899,119.13,74.367 +345900,119.06,72.876 +345901,117.96,77.357 +345902,117.88,75.876 +345903,117.83,74.39 +345904,117.81,72.901 +345905,116.57,77.376 +345906,116.53,75.897 +345907,116.53,74.413 +345908,116.56,72.927 +345909,115.17,77.393 +345910,115.19,75.917 +345911,115.24,74.437 +345912,115.32,72.954 +345913,113.78,77.409 +345914,113.84,75.938 +345915,113.94,74.461 +345916,114.07,72.982 +345917,112.38,77.424 +345918,112.5,75.957 +345919,112.64,74.486 +345920,112.82,73.012 +345921,110.99,77.438 +345922,111.15,75.977 +345923,111.35,74.511 +345924,111.58,73.042 +345925,109.6,77.45 +345926,109.81,75.996 +345927,110.05,74.537 +345928,110.33,73.074 +345929,108.2,77.462 +345930,108.46,76.014 +345931,108.75,74.562 +345932,109.08,73.108 +345933,106.81,77.472 +345934,107.12,76.033 +345935,107.46,74.589 +345936,107.83,73.142 +345937,105.42,77.481 +345938,105.77,76.05 +345939,106.16,74.615 +345940,106.59,73.178 +345941,104.02,77.489 +345942,104.43,76.068 +345943,104.86,74.642 +345944,105.34,73.214 +345945,102.63,77.496 +345946,103.08,76.085 +345947,103.57,74.67 +345948,104.09,73.252 +345949,101.24,77.502 +345950,101.74,76.102 +345951,102.27,74.698 +345952,102.84,73.291 +345953,99.848,77.507 +345954,100.39,76.118 +345955,100.97,74.726 +345956,101.59,73.332 +345957,98.458,77.51 +345958,99.046,76.134 +345959,99.673,74.754 +345960,100.34,73.373 +345961,97.067,77.513 +345962,97.702,76.15 +345963,98.375,74.783 +345964,99.09,73.416 +345965,95.678,77.514 +345966,96.358,76.165 +345967,97.077,74.813 +345968,97.839,73.459 +345969,94.288,77.514 +345970,95.013,76.18 +345971,95.779,74.843 +345972,96.587,73.504 +345973,92.9,77.514 +345974,93.67,76.194 +345975,94.481,74.873 +345976,95.335,73.55 +345977,91.512,77.512 +345978,92.326,76.209 +345979,93.182,74.903 +345980,94.082,73.597 +345981,90.125,77.509 +345982,90.982,76.222 +345983,91.883,74.934 +345984,92.829,73.645 +345985,88.738,77.505 +345986,89.639,76.236 +345987,90.584,74.965 +345988,91.574,73.695 +345989,87.353,77.5 +345990,88.296,76.249 +345991,89.284,74.997 +345992,90.319,73.745 +345993,85.968,77.495 +345994,86.953,76.262 +345995,87.984,75.029 +345996,89.064,73.796 +345997,84.584,77.488 +345998,85.611,76.275 +345999,86.684,75.061 +346000,87.807,73.848 +346001,83.201,77.48 +346002,84.268,76.287 +346003,85.384,75.093 +346004,86.55,73.902 +346005,81.818,77.471 +346006,82.926,76.299 +346007,84.083,75.126 +346008,85.291,73.956 +346009,80.437,77.462 +346010,81.585,76.31 +346011,82.782,75.159 +346012,84.032,74.011 +346013,79.056,77.451 +346014,80.243,76.321 +346015,81.481,75.193 +346016,82.772,74.068 +346017,77.677,77.44 +346018,78.902,76.332 +346019,80.179,75.227 +346020,81.511,74.125 +346021,76.298,77.427 +346022,77.561,76.343 +346023,78.877,75.261 +346024,80.248,74.183 +346025,74.921,77.414 +346026,76.221,76.354 +346027,77.574,75.295 +346028,78.985,74.242 +346029,73.544,77.4 +346030,74.881,76.364 +346031,76.272,75.33 +346032,77.721,74.302 +346033,72.169,77.385 +346034,73.541,76.374 +346035,74.968,75.365 +346036,76.455,74.363 +346037,70.795,77.369 +346038,72.201,76.383 +346039,73.665,75.401 +346040,75.189,74.424 +346041,69.421,77.353 +346042,70.862,76.392 +346043,72.361,75.436 +346044,73.921,74.487 +346045,68.049,77.336 +346046,69.524,76.401 +346047,71.056,75.472 +346048,72.652,74.55 +346049,66.678,77.318 +346050,68.185,76.41 +346051,69.752,75.508 +346052,71.382,74.614 +346053,65.309,77.299 +346054,66.847,76.419 +346055,68.446,75.545 +346056,70.11,74.678 +346057,63.94,77.28 +346058,65.51,76.427 +346059,67.141,75.581 +346060,68.837,74.744 +346061,62.573,77.259 +346062,64.173,76.435 +346063,65.834,75.618 +346064,67.563,74.81 +346065,61.207,77.239 +346066,62.836,76.443 +346067,64.528,75.655 +346068,66.288,74.877 +346069,59.842,77.217 +346070,61.499,76.451 +346071,63.221,75.692 +346072,65.011,74.944 +346073,58.479,77.195 +346074,60.164,76.458 +346075,61.913,75.73 +346076,63.733,75.012 +346077,57.117,77.173 +346078,58.828,76.466 +346079,60.605,75.768 +346080,62.454,75.081 +346081,55.756,77.149 +346082,57.493,76.473 +346083,59.297,75.806 +346084,61.173,75.15 +346085,54.396,77.126 +346086,56.158,76.48 +346087,57.988,75.844 +346088,59.89,75.22 +346089,53.038,77.101 +346090,54.824,76.487 +346091,56.678,75.882 +346092,58.606,75.29 +346093,51.682,77.077 +346094,53.49,76.493 +346095,55.368,75.921 +346096,57.321,75.361 +346097,50.326,77.051 +346098,52.157,76.5 +346099,54.057,75.959 +346100,56.034,75.433 +346101,48.972,77.026 +346102,50.824,76.506 +346103,52.746,75.998 +346104,54.746,75.504 +346105,47.62,76.999 +346106,49.492,76.512 +346107,51.435,76.037 +346108,53.456,75.577 +346109,46.269,76.973 +346110,48.16,76.518 +346111,50.123,76.076 +346112,52.164,75.649 +346113,44.919,76.946 +346114,46.829,76.524 +346115,48.81,76.115 +346116,50.871,75.722 +346117,43.571,76.919 +346118,45.498,76.53 +346119,47.497,76.155 +346120,49.576,75.795 +346121,42.225,76.891 +346122,44.167,76.536 +346123,46.183,76.194 +346124,48.28,75.869 +346125,40.879,76.863 +346126,42.838,76.541 +346127,44.869,76.234 +346128,46.982,75.943 +346129,39.536,76.835 +346130,41.508,76.547 +346131,43.554,76.273 +346132,45.683,76.017 +346133,38.194,76.807 +346134,40.179,76.552 +346135,42.239,76.313 +346136,44.382,76.091 +346137,36.853,76.778 +346138,38.851,76.558 +346139,40.923,76.353 +346140,43.079,76.166 +346141,35.514,76.749 +346142,37.523,76.563 +346143,39.607,76.393 +346144,41.774,76.24 +346145,34.176,76.72 +346146,36.195,76.568 +346147,38.29,76.433 +346148,40.468,76.315 +346149,32.84,76.691 +346150,34.868,76.574 +346151,36.972,76.472 +346152,39.16,76.39 +346153,31.506,76.662 +346154,33.542,76.579 +346155,35.654,76.512 +346156,37.851,76.465 +346157,30.173,76.633 +346158,32.216,76.584 +346159,34.335,76.553 +346160,36.54,76.54 +346161,28.841,76.604 +346162,30.891,76.589 +346163,33.016,76.593 +346164,35.227,76.616 +346165,27.511,76.574 +346166,29.566,76.595 +346167,31.696,76.633 +346168,33.912,76.691 +346169,26.183,76.545 +346170,28.241,76.6 +346171,30.376,76.673 +346172,32.596,76.766 +346173,24.856,76.515 +346174,26.918,76.605 +346175,29.055,76.713 +346176,31.278,76.841 +346177,23.531,76.486 +346178,25.594,76.61 +346179,27.733,76.753 +346180,29.958,76.916 +346181,22.208,76.457 +346182,24.271,76.616 +346183,26.411,76.793 +346184,28.636,76.991 +346185,20.886,76.428 +346186,22.949,76.621 +346187,25.088,76.833 +346188,27.313,77.065 +346189,19.565,76.399 +346190,21.627,76.626 +346191,23.765,76.873 +346192,25.988,77.14 +346193,18.246,76.37 +346194,20.306,76.632 +346195,22.441,76.912 +346196,24.662,77.214 +346197,16.929,76.342 +346198,18.985,76.637 +346199,21.117,76.952 +346200,23.333,77.288 +346201,15.613,76.313 +346202,17.665,76.643 +346203,19.792,76.992 +346204,22.003,77.362 +346205,14.299,76.285 +346206,16.345,76.649 +346207,18.466,77.032 +346208,20.672,77.436 +346209,12.986,76.257 +346210,15.026,76.655 +346211,17.14,77.071 +346212,19.338,77.509 +346213,11.675,76.23 +346214,13.707,76.661 +346215,15.813,77.111 +346216,18.003,77.582 +346217,10.365,76.203 +346218,12.389,76.667 +346219,14.486,77.15 +346220,16.667,77.654 +346221,9.0571,76.176 +346222,11.071,76.673 +346223,13.158,77.189 +346224,15.328,77.727 +346225,7.7506,76.149 +346226,9.7543,76.679 +346227,11.83,77.228 +346228,13.988,77.798 +346229,6.4455,76.123 +346230,8.4376,76.686 +346231,10.501,77.267 +346232,12.646,77.87 +346233,5.1419,76.098 +346234,7.1213,76.692 +346235,9.1712,77.306 +346236,11.303,77.94 +346237,3.8399,76.072 +346238,5.8056,76.699 +346239,7.8412,77.345 +346240,9.9581,78.011 +346241,2.5393,76.048 +346242,4.4903,76.706 +346243,6.5106,77.383 +346244,8.6115,78.081 +346245,1.2402,76.024 +346246,3.1756,76.713 +346247,5.1795,77.421 +346248,7.2633,78.15 +346249,359.94,76 +346250,1.8613,76.72 +346251,3.8479,77.459 +346252,5.9136,78.219 +346253,358.65,75.977 +346254,0.54744,76.728 +346255,2.5157,77.497 +346256,4.5623,78.287 +346257,357.35,75.954 +346258,359.23,76.736 +346259,1.183,77.535 +346260,3.2094,78.354 +346261,356.06,75.933 +346262,357.92,76.744 +346263,359.85,77.573 +346264,1.8551,78.421 +346265,354.77,75.911 +346266,356.61,76.752 +346267,358.52,77.61 +346268,0.49917,78.487 +346269,353.48,75.891 +346270,355.3,76.76 +346271,357.18,77.647 +346272,359.14,78.553 +346273,352.19,75.871 +346274,353.99,76.769 +346275,355.85,77.684 +346276,357.78,78.617 +346277,350.9,75.852 +346278,352.67,76.778 +346279,354.51,77.721 +346280,356.42,78.682 +346281,349.61,75.833 +346282,351.36,76.787 +346283,353.18,77.757 +346284,355.06,78.745 +346285,348.33,75.816 +346286,350.05,76.796 +346287,351.84,77.793 +346288,353.7,78.807 +346289,347.04,75.799 +346290,348.74,76.806 +346291,350.5,77.829 +346292,352.33,78.869 +346293,345.76,75.783 +346294,347.43,76.816 +346295,349.17,77.865 +346296,350.97,78.93 +346297,344.48,75.767 +346298,346.12,76.826 +346299,347.83,77.9 +346300,349.6,78.99 +346301,343.2,75.753 +346302,344.82,76.837 +346303,346.49,77.935 +346304,348.23,79.049 +346305,341.92,75.74 +346306,343.51,76.847 +346307,345.15,77.97 +346308,346.86,79.108 +346309,340.64,75.727 +346310,342.2,76.858 +346311,343.81,78.004 +346312,345.49,79.165 +346313,339.37,75.715 +346314,340.89,76.87 +346315,342.47,78.038 +346316,344.12,79.222 +346317,338.09,75.704 +346318,339.59,76.882 +346319,341.13,78.072 +346320,342.74,79.277 +346321,336.82,75.694 +346322,338.28,76.894 +346323,339.79,78.106 +346324,341.37,79.332 +346325,335.54,75.685 +346326,336.97,76.906 +346327,338.45,78.139 +346328,339.99,79.386 +346329,334.27,75.678 +346330,335.67,76.919 +346331,337.11,78.172 +346332,338.62,79.438 +346333,333,75.671 +346334,334.36,76.932 +346335,335.77,78.205 +346336,337.24,79.49 +346337,331.73,75.665 +346338,333.06,76.945 +346339,334.43,78.237 +346340,335.86,79.541 +346341,330.46,75.66 +346342,331.75,76.959 +346343,333.09,78.269 +346344,334.48,79.59 +346345,329.19,75.656 +346346,330.45,76.973 +346347,331.75,78.301 +346348,333.1,79.639 +346349,327.93,75.653 +346350,329.14,76.988 +346351,330.4,78.332 +346352,331.72,79.687 +346353,326.66,75.651 +346354,327.84,77.002 +346355,329.06,78.363 +346356,330.33,79.733 +346357,325.4,75.651 +346358,326.53,77.018 +346359,327.72,78.393 +346360,328.95,79.779 +346361,324.13,75.651 +346362,325.23,77.033 +346363,326.37,78.424 +346364,327.56,79.823 +346365,322.87,75.653 +346366,323.93,77.049 +346367,325.03,78.454 +346368,326.18,79.866 +346369,321.6,75.656 +346370,322.62,77.065 +346371,323.68,78.483 +346372,324.79,79.909 +346373,320.34,75.66 +346374,321.32,77.082 +346375,322.34,78.512 +346376,323.4,79.95 +346377,319.08,75.665 +346378,320.02,77.099 +346379,320.99,78.541 +346380,322.02,79.989 +346381,317.82,75.671 +346382,318.71,77.117 +346383,319.65,78.569 +346384,320.63,80.0283 +346385,316.56,75.678 +346386,317.41,77.135 +346387,318.3,78.597 +346388,319.24,80.0659 +346389,315.3,75.687 +346390,316.11,77.153 +346391,316.96,78.625 +346392,317.85,80.1024 +346393,314.04,75.697 +346394,314.81,77.171 +346395,315.61,78.652 +346396,316.46,80.1377 +346397,312.78,75.708 +346398,313.51,77.191 +346399,314.27,78.679 +346400,315.07,80.1719 +346401,311.53,75.72 +346402,312.21,77.21 +346403,312.92,78.705 +346404,313.68,80.2049 +346405,310.27,75.733 +346406,310.9,77.23 +346407,311.57,78.731 +346408,312.28,80.2367 +346409,309.01,75.748 +346410,309.6,77.25 +346411,310.23,78.757 +346412,310.89,80.2674 +346413,307.76,75.764 +346414,308.3,77.271 +346415,308.88,78.782 +346416,309.5,80.2968 +346417,306.5,75.781 +346418,307,77.292 +346419,307.53,78.807 +346420,308.1,80.3251 +346421,305.25,75.799 +346422,305.7,77.314 +346423,306.19,78.832 +346424,306.71,80.3522 +346425,303.99,75.818 +346426,304.4,77.336 +346427,304.84,78.856 +346428,305.32,80.378 +346429,302.74,75.839 +346430,303.1,77.358 +346431,303.49,78.879 +346432,303.92,80.4027 +346433,301.48,75.861 +346434,301.8,77.381 +346435,302.14,78.903 +346436,302.53,80.4262 +346437,300.23,75.885 +346438,300.5,77.404 +346439,300.8,78.926 +346440,301.13,80.4485 +346441,298.97,75.909 +346442,299.2,77.428 +346443,299.45,78.948 +346444,299.74,80.4696 +346445,297.72,75.935 +346446,297.89,77.452 +346447,298.1,78.97 +346448,298.34,80.4895 +346449,296.47,75.962 +346450,296.59,77.476 +346451,296.75,78.992 +346452,296.95,80.5083 +346453,295.21,75.99 +346454,295.29,77.501 +346455,295.41,79.013 +346456,295.55,80.5258 +346457,293.96,76.02 +346458,293.99,77.526 +346459,294.06,79.034 +346460,294.16,80.5421 +346461,292.71,76.051 +346462,292.69,77.552 +346463,292.71,79.055 +346464,292.76,80.5573 +346465,291.45,76.083 +346466,291.39,77.578 +346467,291.36,79.075 +346468,291.37,80.5713 +346469,290.2,76.116 +346470,290.09,77.605 +346471,290.01,79.094 +346472,289.97,80.5841 +346473,288.95,76.15 +346474,288.79,77.631 +346475,288.67,79.114 +346476,288.58,80.5957 +346477,287.69,76.186 +346478,287.49,77.659 +346479,287.32,79.133 +346480,287.18,80.6062 +346481,286.44,76.223 +346482,286.19,77.687 +346483,285.97,79.151 +346484,285.79,80.6155 +346485,285.18,76.261 +346486,284.89,77.715 +346487,284.62,79.169 +346488,284.39,80.6237 +346489,283.93,76.3 +346490,283.59,77.743 +346491,283.28,79.187 +346492,283,80.6307 +346493,282.67,76.341 +346494,282.28,77.772 +346495,281.93,79.205 +346496,281.6,80.6366 +346497,281.42,76.383 +346498,280.98,77.802 +346499,280.58,79.222 +346500,280.21,80.6413 +346501,280.16,76.426 +346502,279.68,77.831 +346503,279.23,79.238 +346504,278.82,80.645 +346505,278.91,76.47 +346506,278.38,77.861 +346507,277.89,79.255 +346508,277.42,80.6475 +346509,277.65,76.515 +346510,277.08,77.892 +346511,276.54,79.27 +346512,276.03,80.649 +346513,276.4,76.561 +346514,275.78,77.923 +346515,275.19,79.286 +346516,274.64,80.6493 +346517,275.14,76.609 +346518,274.47,77.954 +346519,273.84,79.301 +346520,273.25,80.6486 +346521,273.88,76.657 +346522,273.17,77.986 +346523,272.5,79.316 +346524,271.86,80.6468 +346525,272.62,76.707 +346526,271.87,78.018 +346527,271.15,79.331 +346528,270.47,80.644 +346529,271.36,76.758 +346530,270.57,78.05 +346531,269.81,79.345 +346532,269.08,80.6402 +346533,270.1,76.81 +346534,269.26,78.083 +346535,268.46,79.359 +346536,267.69,80.6353 +346537,268.84,76.863 +346538,267.96,78.116 +346539,267.11,79.372 +346540,266.3,80.6294 +346541,267.58,76.917 +346542,266.66,78.149 +346543,265.77,79.385 +346544,264.91,80.6225 +346545,266.32,76.972 +346546,265.35,78.183 +346547,264.42,79.398 +346548,263.53,80.6146 +346549,265.06,77.028 +346550,264.05,78.217 +346551,263.08,79.41 +346552,262.14,80.6058 +346553,263.8,77.085 +346554,262.74,78.252 +346555,261.73,79.423 +346556,260.76,80.596 +346557,262.53,77.143 +346558,261.44,78.286 +346559,260.39,79.435 +346560,259.37,80.5854 +346561,261.27,77.202 +346562,260.13,78.322 +346563,259.04,79.446 +346564,257.99,80.5737 +346565,260,77.262 +346566,258.83,78.357 +346567,257.7,79.457 +346568,256.6,80.5612 +346569,258.74,77.323 +346570,257.52,78.393 +346571,256.35,79.468 +346572,255.22,80.5479 +346573,257.47,77.385 +346574,256.22,78.429 +346575,255.01,79.479 +346576,253.84,80.5336 +346577,256.2,77.447 +346578,254.91,78.465 +346579,253.67,79.489 +346580,252.46,80.5186 +346581,254.93,77.511 +346582,253.6,78.502 +346583,252.32,79.5 +346584,251.08,80.5027 +346585,253.66,77.575 +346586,252.3,78.539 +346587,250.98,79.509 +346588,249.7,80.486 +346589,252.39,77.64 +346590,250.99,78.576 +346591,249.64,79.519 +346592,248.33,80.4685 +346593,251.12,77.706 +346594,249.68,78.613 +346595,248.29,79.528 +346596,246.95,80.4503 +346597,249.84,77.773 +346598,248.37,78.651 +346599,246.95,79.538 +346600,245.58,80.4313 +346601,248.57,77.841 +346602,247.07,78.689 +346603,245.61,79.546 +346604,244.2,80.4116 +346605,247.29,77.909 +346606,245.76,78.727 +346607,244.27,79.555 +346608,242.83,80.3913 +346609,246.02,77.978 +346610,244.45,78.765 +346611,242.93,79.564 +346612,241.46,80.3702 +346613,244.74,78.047 +346614,243.14,78.804 +346615,241.59,79.572 +346616,240.09,80.3486 +346617,243.46,78.118 +346618,241.83,78.843 +346619,240.25,79.58 +346620,238.72,80.3262 +346621,242.18,78.188 +346622,240.52,78.882 +346623,238.91,79.588 +346624,237.35,80.3033 +346625,240.9,78.26 +346626,239.21,78.921 +346627,237.57,79.595 +346628,235.98,80.2798 +346629,239.61,78.332 +346630,237.89,78.961 +346631,236.23,79.603 +346632,234.62,80.2558 +346633,238.33,78.405 +346634,236.58,79 +346635,234.89,79.61 +346636,233.25,80.2312 +346637,237.04,78.478 +346638,235.27,79.04 +346639,233.55,79.617 +346640,231.89,80.2061 +346641,235.76,78.551 +346642,233.96,79.08 +346643,232.22,79.624 +346644,230.53,80.1806 +346645,234.47,78.625 +346646,232.64,79.12 +346647,230.88,79.631 +346648,229.17,80.1546 +346649,233.18,78.7 +346650,231.33,79.161 +346651,229.54,79.638 +346652,227.81,80.1281 +346653,231.88,78.775 +346654,230.01,79.201 +346655,228.21,79.644 +346656,226.45,80.1013 +346657,230.59,78.85 +346658,228.7,79.242 +346659,226.87,79.651 +346660,225.1,80.074 +346661,229.3,78.926 +346662,227.38,79.282 +346663,225.53,79.657 +346664,223.74,80.0464 +346665,228,79.002 +346666,226.07,79.323 +346667,224.2,79.663 +346668,222.39,80.0185 +346669,226.7,79.078 +346670,224.75,79.364 +346671,222.86,79.669 +346672,221.03,79.99 +346673,225.4,79.154 +346674,223.43,79.405 +346675,221.53,79.675 +346676,219.68,79.962 +346677,224.1,79.231 +346678,222.12,79.446 +346679,220.2,79.681 +346680,218.33,79.933 +346681,222.8,79.308 +346682,220.8,79.487 +346683,218.86,79.687 +346684,216.99,79.904 +346685,221.5,79.385 +346686,219.48,79.529 +346687,217.53,79.693 +346688,215.64,79.875 +346689,220.19,79.463 +346690,218.16,79.57 +346691,216.2,79.699 +346692,214.29,79.846 +346693,218.89,79.54 +346694,216.84,79.611 +346695,214.87,79.704 +346696,212.95,79.816 +346697,217.58,79.618 +346698,215.52,79.653 +346699,213.53,79.71 +346700,211.61,79.787 +346701,216.27,79.695 +346702,214.2,79.694 +346703,212.2,79.716 +346704,210.27,79.757 +346705,214.96,79.773 +346706,212.88,79.736 +346707,210.87,79.721 +346708,208.93,79.727 +346709,213.64,79.85 +346710,211.56,79.777 +346711,209.54,79.727 +346712,207.59,79.698 +346713,212.33,79.928 +346714,210.24,79.819 +346715,208.21,79.733 +346716,206.25,79.668 +346717,211.01,80.0057 +346718,208.91,79.86 +346719,206.88,79.739 +346720,204.92,79.638 +346721,209.69,80.0832 +346722,207.59,79.901 +346723,205.56,79.744 +346724,203.59,79.609 +346725,208.37,80.1605 +346726,206.26,79.943 +346727,204.23,79.75 +346728,202.25,79.579 +346729,207.05,80.2377 +346730,204.94,79.984 +346731,202.9,79.756 +346732,200.92,79.55 +346733,205.73,80.3148 +346734,203.62,80.0255 +346735,201.57,79.762 +346736,199.6,79.52 +346737,204.41,80.3917 +346738,202.29,80.0668 +346739,200.25,79.768 +346740,198.27,79.491 +346741,203.08,80.4683 +346742,200.96,80.108 +346743,198.92,79.774 +346744,196.94,79.462 +346745,201.75,80.5447 +346746,199.64,80.1491 +346747,197.59,79.78 +346748,195.62,79.434 +346749,200.42,80.6207 +346750,198.31,80.1901 +346751,196.27,79.786 +346752,194.3,79.405 +346753,199.09,80.6965 +346754,196.98,80.2311 +346755,194.94,79.792 +346756,192.97,79.377 +346757,197.76,80.7719 +346758,195.65,80.2719 +346759,193.62,79.799 +346760,191.65,79.349 +346761,196.43,80.847 +346762,194.32,80.3126 +346763,192.3,79.805 +346764,190.34,79.322 +346765,195.09,80.9217 +346766,192.99,80.3532 +346767,190.97,79.812 +346768,189.02,79.295 +346769,193.75,80.9959 +346770,191.66,80.3936 +346771,189.65,79.819 +346772,187.7,79.268 +346773,192.41,81.0697 +346774,190.33,80.4339 +346775,188.33,79.825 +346776,186.39,79.241 +346777,191.07,81.143 +346778,189,80.4741 +346779,187.01,79.833 +346780,185.08,79.216 +346781,189.73,81.2158 +346782,187.67,80.5141 +346783,185.69,79.84 +346784,183.77,79.19 +346785,188.39,81.288 +346786,186.34,80.554 +346787,184.36,79.847 +346788,182.46,79.165 +346789,187.04,81.3597 +346790,185.01,80.5936 +346791,183.04,79.855 +346792,181.15,79.141 +346793,185.69,81.4309 +346794,183.67,80.6331 +346795,181.72,79.863 +346796,179.84,79.117 +346797,184.35,81.5014 +346798,182.34,80.6724 +346799,180.41,79.871 +346800,178.54,79.093 +346801,183,81.5712 +346802,181,80.7114 +346803,179.09,79.879 +346804,177.23,79.071 +346805,181.64,81.6405 +346806,179.67,80.7503 +346807,177.77,79.887 +346808,175.93,79.049 +346809,180.29,81.709 +346810,178.33,80.789 +346811,176.45,79.896 +346812,174.63,79.027 +346813,178.94,81.7768 +346814,177,80.8274 +346815,175.13,79.905 +346816,173.33,79.006 +346817,177.58,81.8439 +346818,175.66,80.8656 +346819,173.81,79.914 +346820,172.03,78.986 +346821,176.22,81.9102 +346822,174.32,80.9035 +346823,172.5,79.923 +346824,170.73,78.967 +346825,174.86,81.9758 +346826,172.99,80.9412 +346827,171.18,79.933 +346828,169.44,78.948 +346829,173.5,82.0405 +346830,171.65,80.9786 +346831,169.87,79.943 +346832,168.14,78.93 +346833,172.14,82.1045 +346834,170.31,81.0158 +346835,168.55,79.953 +346836,166.85,78.913 +346837,170.78,82.1676 +346838,168.97,81.0527 +346839,167.23,79.963 +346840,165.56,78.897 +346841,169.41,82.2298 +346842,167.63,81.0893 +346843,165.92,79.974 +346844,164.27,78.882 +346845,168.05,82.2911 +346846,166.29,81.1257 +346847,164.61,79.985 +346848,162.98,78.867 +346849,166.68,82.3516 +346850,164.95,81.1617 +346851,163.29,79.996 +346852,161.69,78.853 +346853,165.31,82.4111 +346854,163.61,81.1974 +346855,161.98,80.008 +346856,160.4,78.841 +346857,163.94,82.4697 +346858,162.27,81.2329 +346859,160.66,80.0199 +346860,159.12,78.829 +346861,162.57,82.5273 +346862,160.93,81.268 +346863,159.35,80.0321 +346864,157.83,78.818 +346865,161.2,82.5839 +346866,159.59,81.3028 +346867,158.04,80.0447 +346868,156.55,78.808 +346869,159.83,82.6395 +346870,158.24,81.3372 +346871,156.73,80.0576 +346872,155.27,78.799 +346873,158.45,82.6941 +346874,156.9,81.3714 +346875,155.42,80.0709 +346876,153.98,78.791 +346877,157.08,82.7477 +346878,155.56,81.4052 +346879,154.1,80.0844 +346880,152.7,78.784 +346881,155.7,82.8003 +346882,154.21,81.4386 +346883,152.79,80.0984 +346884,151.42,78.778 +346885,154.32,82.8517 +346886,152.87,81.4718 +346887,151.48,80.1127 +346888,150.15,78.773 +346889,152.94,82.9021 +346890,151.53,81.5045 +346891,150.17,80.1273 +346892,148.87,78.769 +346893,151.56,82.9514 +346894,150.18,81.5369 +346895,148.86,80.1423 +346896,147.59,78.766 +346897,150.18,82.9997 +346898,148.84,81.569 +346899,147.55,80.1577 +346900,146.32,78.765 +346901,148.8,83.0468 +346902,147.49,81.6006 +346903,146.24,80.1734 +346904,145.04,78.764 +346905,147.41,83.0927 +346906,146.15,81.6319 +346907,144.93,80.1896 +346908,143.77,78.764 +346909,146.03,83.1376 +346910,144.8,81.6629 +346911,143.62,80.2061 +346912,142.5,78.766 +346913,144.65,83.1812 +346914,143.45,81.6934 +346915,142.31,80.223 +346916,141.22,78.769 +346917,143.26,83.2238 +346918,142.11,81.7236 +346919,141.01,80.2403 +346920,139.95,78.773 +346921,141.87,83.2651 +346922,140.76,81.7533 +346923,139.7,80.258 +346924,138.68,78.778 +346925,140.49,83.3053 +346926,139.41,81.7827 +346927,138.39,80.2761 +346928,137.41,78.784 +346929,139.1,83.3442 +346930,138.06,81.8117 +346931,137.08,80.2945 +346932,136.14,78.792 +346933,137.71,83.382 +346934,136.72,81.8403 +346935,135.77,80.3134 +346936,134.87,78.801 +346937,136.32,83.4186 +346938,135.37,81.8685 +346939,134.47,80.3327 +346940,133.61,78.811 +346941,134.93,83.454 +346942,134.02,81.8963 +346943,133.16,80.3524 +346944,132.34,78.822 +346945,133.54,83.4881 +346946,132.67,81.9237 +346947,131.85,80.3726 +346948,131.07,78.834 +346949,132.15,83.5211 +346950,131.32,81.9507 +346951,130.54,80.3931 +346952,129.81,78.848 +346953,130.75,83.5528 +346954,129.97,81.9773 +346955,129.24,80.4141 +346956,128.54,78.863 +346957,129.36,83.5833 +346958,128.62,82.0035 +346959,127.93,80.4354 +346960,127.28,78.879 +346961,127.97,83.6125 +346962,127.28,82.0292 +346963,126.62,80.4572 +346964,126.01,78.896 +346965,126.58,83.6405 +346966,125.93,82.0546 +346967,125.32,80.4794 +346968,124.75,78.915 +346969,125.18,83.6673 +346970,124.58,82.0795 +346971,124.01,80.5021 +346972,123.48,78.935 +346973,123.79,83.6928 +346974,123.23,82.104 +346975,122.7,80.5251 +346976,122.22,78.956 +346977,122.39,83.7171 +346978,121.88,82.1281 +346979,121.4,80.5486 +346980,120.96,78.979 +346981,121,83.7402 +346982,120.53,82.1518 +346983,120.09,80.5725 +346984,119.7,79.003 +346985,119.6,83.762 +346986,119.18,82.1751 +346987,118.79,80.5968 +346988,118.43,79.028 +346989,118.21,83.7825 +346990,117.82,82.198 +346991,117.48,80.6216 +346992,117.17,79.054 +346993,116.81,83.8019 +346994,116.47,82.2204 +346995,116.17,80.6468 +346996,115.91,79.081 +346997,115.41,83.82 +346998,115.12,82.2425 +346999,114.87,80.6724 +347000,114.65,79.11 +347001,114.02,83.8368 +347002,113.77,82.2641 +347003,113.56,80.6984 +347004,113.39,79.14 +347005,112.62,83.8525 +347006,112.42,82.2853 +347007,112.26,80.7248 +347008,112.12,79.172 +347009,111.23,83.8669 +347010,111.07,82.3061 +347011,110.95,80.7517 +347012,110.86,79.204 +347013,109.83,83.8801 +347014,109.72,82.3265 +347015,109.64,80.779 +347016,109.6,79.238 +347017,108.43,83.892 +347018,108.37,82.3465 +347019,108.34,80.8067 +347020,108.34,79.274 +347021,107.04,83.9028 +347022,107.02,82.3661 +347023,107.03,80.8348 +347024,107.08,79.31 +347025,105.64,83.9124 +347026,105.67,82.3853 +347027,105.73,80.8634 +347028,105.82,79.348 +347029,104.24,83.9207 +347030,104.32,82.4041 +347031,104.42,80.8923 +347032,104.56,79.387 +347033,102.85,83.9279 +347034,102.97,82.4224 +347035,103.11,80.9217 +347036,103.29,79.427 +347037,101.45,83.9339 +347038,101.61,82.4404 +347039,101.81,80.9515 +347040,102.03,79.468 +347041,100.06,83.9388 +347042,100.26,82.458 +347043,100.5,80.9816 +347044,100.77,79.511 +347045,98.661,83.9424 +347046,98.913,82.4752 +347047,99.195,81.0122 +347048,99.508,79.555 +347049,97.266,83.945 +347050,97.562,82.492 +347051,97.889,81.0432 +347052,98.245,79.6 +347053,95.872,83.9463 +347054,96.212,82.5084 +347055,96.582,81.0746 +347056,96.982,79.646 +347057,94.477,83.9466 +347058,94.861,82.5245 +347059,95.275,81.1063 +347060,95.719,79.694 +347061,93.083,83.9458 +347062,93.511,82.5402 +347063,93.968,81.1385 +347064,94.455,79.742 +347065,91.689,83.9438 +347066,92.16,82.5555 +347067,92.661,81.171 +347068,93.191,79.792 +347069,90.296,83.9408 +347070,90.81,82.5704 +347071,91.353,81.2039 +347072,91.927,79.843 +347073,88.903,83.9366 +347074,89.46,82.585 +347075,90.046,81.2372 +347076,90.662,79.895 +347077,87.511,83.9314 +347078,88.11,82.5992 +347079,88.738,81.2708 +347080,89.396,79.948 +347081,86.119,83.9252 +347082,86.76,82.613 +347083,87.43,81.3048 +347084,88.13,80.0022 +347085,84.728,83.918 +347086,85.41,82.6266 +347087,86.122,81.3392 +347088,86.864,80.0576 +347089,83.337,83.9097 +347090,84.061,82.6397 +347091,84.814,81.3739 +347092,85.596,80.114 +347093,81.947,83.9004 +347094,82.711,82.6526 +347095,83.505,81.409 +347096,84.329,80.1714 +347097,80.558,83.8901 +347098,81.362,82.6651 +347099,82.196,81.4444 +347100,83.06,80.2299 +347101,79.17,83.8789 +347102,80.013,82.6772 +347103,80.887,81.4801 +347104,81.791,80.2894 +347105,77.782,83.8667 +347106,78.664,82.6891 +347107,79.577,81.5162 +347108,80.521,80.35 +347109,76.394,83.8536 +347110,77.316,82.7006 +347111,78.268,81.5526 +347112,79.251,80.4115 +347113,75.008,83.8396 +347114,75.967,82.7118 +347115,76.958,81.5893 +347116,77.979,80.4739 +347117,73.622,83.8247 +347118,74.619,82.7228 +347119,75.647,81.6264 +347120,76.707,80.5373 +347121,72.238,83.8089 +347122,73.272,82.7334 +347123,74.337,81.6637 +347124,75.434,80.6016 +347125,70.854,83.7923 +347126,71.924,82.7438 +347127,73.026,81.7013 +347128,74.16,80.6669 +347129,69.471,83.7748 +347130,70.577,82.7538 +347131,71.715,81.7392 +347132,72.886,80.733 +347133,68.089,83.7565 +347134,69.23,82.7636 +347135,70.403,81.7774 +347136,71.61,80.7999 +347137,66.707,83.7375 +347138,67.883,82.7731 +347139,69.091,81.8159 +347140,70.333,80.8677 +347141,65.327,83.7176 +347142,66.536,82.7824 +347143,67.779,81.8547 +347144,69.056,80.9363 +347145,63.948,83.697 +347146,65.19,82.7914 +347147,66.466,81.8937 +347148,67.777,81.0057 +347149,62.57,83.6757 +347150,63.844,82.8002 +347151,65.153,81.9329 +347152,66.497,81.0759 +347153,61.193,83.6537 +347154,62.499,82.8087 +347155,63.84,81.9724 +347156,65.217,81.1468 +347157,59.816,83.631 +347158,61.153,82.817 +347159,62.526,82.0121 +347160,63.935,81.2184 +347161,58.441,83.6077 +347162,59.808,82.8251 +347163,61.212,82.0521 +347164,62.652,81.2907 +347165,57.067,83.5837 +347166,58.464,82.833 +347167,59.897,82.0923 +347168,61.368,81.3636 +347169,55.694,83.5592 +347170,57.12,82.8407 +347171,58.582,82.1327 +347172,60.083,81.4372 +347173,54.323,83.534 +347174,55.776,82.8481 +347175,57.267,82.1732 +347176,58.797,81.5114 +347177,52.952,83.5083 +347178,54.432,82.8554 +347179,55.951,82.214 +347180,57.509,81.5862 +347181,51.583,83.482 +347182,53.089,82.8625 +347183,54.635,82.255 +347184,56.221,81.6616 +347185,50.214,83.4553 +347186,51.746,82.8695 +347187,53.318,82.2961 +347188,54.931,81.7374 +347189,48.847,83.4281 +347190,50.404,82.8762 +347191,52.001,82.3374 +347192,53.639,81.8138 +347193,47.481,83.4004 +347194,49.062,82.8828 +347195,50.683,82.3789 +347196,52.347,81.8907 +347197,46.117,83.3723 +347198,47.72,82.8893 +347199,49.365,82.4205 +347200,51.053,81.968 +347201,44.754,83.3438 +347202,46.379,82.8957 +347203,48.047,82.4622 +347204,49.758,82.0457 +347205,43.391,83.3149 +347206,45.038,82.9019 +347207,46.728,82.5041 +347208,48.462,82.1237 +347209,42.031,83.2856 +347210,43.698,82.908 +347211,45.408,82.5461 +347212,47.164,82.2022 +347213,40.671,83.2561 +347214,42.358,82.914 +347215,44.088,82.5882 +347216,45.865,82.281 +347217,39.313,83.2262 +347218,41.018,82.9199 +347219,42.768,82.6304 +347220,44.564,82.3601 +347221,37.956,83.1961 +347222,39.679,82.9257 +347223,41.447,82.6727 +347224,43.263,82.4394 +347225,36.601,83.1658 +347226,38.34,82.9314 +347227,40.125,82.715 +347228,41.959,82.519 +347229,35.247,83.1352 +347230,37.002,82.9371 +347231,38.803,82.7575 +347232,40.654,82.5988 +347233,33.894,83.1045 +347234,35.664,82.9427 +347235,37.481,82.8 +347236,39.348,82.6788 +347237,32.542,83.0736 +347238,34.326,82.9482 +347239,36.158,82.8425 +347240,38.041,82.7589 +347241,31.192,83.0425 +347242,32.989,82.9537 +347243,34.835,82.8851 +347244,36.732,82.8391 +347245,29.844,83.0114 +347246,31.653,82.9592 +347247,33.511,82.9277 +347248,35.421,82.9195 +347249,28.496,82.9802 +347250,30.317,82.9647 +347251,32.186,82.9703 +347252,34.109,82.9998 +347253,27.15,82.949 +347254,28.981,82.9701 +347255,30.861,83.013 +347256,32.796,83.0803 +347257,25.806,82.9177 +347258,27.646,82.9756 +347259,29.536,83.0556 +347260,31.481,83.1607 +347261,24.463,82.8865 +347262,26.311,82.981 +347263,28.21,83.0983 +347264,30.164,83.2411 +347265,23.121,82.8553 +347266,24.976,82.9865 +347267,26.883,83.1409 +347268,28.846,83.3214 +347269,21.781,82.8242 +347270,23.642,82.992 +347271,25.556,83.1835 +347272,27.526,83.4016 +347273,20.442,82.7931 +347274,22.309,82.9975 +347275,24.228,83.226 +347276,26.205,83.4817 +347277,19.105,82.7622 +347278,20.976,83.0031 +347279,22.9,83.2685 +347280,24.883,83.5616 +347281,17.769,82.7315 +347282,19.643,83.0087 +347283,21.571,83.311 +347284,23.558,83.6414 +347285,16.434,82.7009 +347286,18.311,83.0144 +347287,20.242,83.3534 +347288,22.233,83.7209 +347289,15.101,82.6706 +347290,16.98,83.0201 +347291,18.912,83.3956 +347292,20.906,83.8002 +347293,13.769,82.6405 +347294,15.649,83.026 +347295,17.582,83.4378 +347296,19.577,83.8792 +347297,12.439,82.6107 +347298,14.318,83.0319 +347299,16.251,83.48 +347300,18.246,83.9579 +347301,11.11,82.5811 +347302,12.987,83.038 +347303,14.92,83.522 +347304,16.914,84.0363 +347305,9.7828,82.5519 +347306,11.658,83.0441 +347307,13.588,83.5638 +347308,15.581,84.1142 +347309,8.4567,82.5231 +347310,10.328,83.0504 +347311,12.256,83.6056 +347312,14.246,84.1919 +347313,7.1321,82.4946 +347314,8.9994,83.0568 +347315,10.923,83.6472 +347316,12.91,84.269 +347317,5.8089,82.4665 +347318,7.6709,83.0634 +347319,9.5892,83.6887 +347320,11.572,84.3458 +347321,4.4871,82.4389 +347322,6.3429,83.0701 +347323,8.2552,83.73 +347324,10.232,84.422 +347325,3.1667,82.4117 +347326,5.0153,83.0769 +347327,6.9206,83.7711 +347328,8.8908,84.4977 +347329,1.8476,82.3851 +347330,3.6881,83.084 +347331,5.5856,83.8121 +347332,7.5482,84.5729 +347333,0.52995,82.3589 +347334,2.3614,83.0912 +347335,4.25,83.8529 +347336,6.204,84.6475 +347337,359.21,82.3333 +347338,1.0352,83.0985 +347339,2.9139,83.8935 +347340,4.8583,84.7216 +347341,357.9,82.3082 +347342,359.71,83.1061 +347343,1.5772,83.9339 +347344,3.5111,84.795 +347345,356.59,82.2838 +347346,358.38,83.1139 +347347,0.24011,83.974 +347348,2.1625,84.8678 +347349,355.27,82.26 +347350,357.06,83.1219 +347351,358.9,84.014 +347352,0.81232,84.9398 +347353,353.96,82.2368 +347354,355.73,83.1301 +347355,357.56,84.0537 +347356,359.46,85.0112 +347357,352.65,82.2142 +347358,354.41,83.1385 +347359,356.23,84.0932 +347360,358.11,85.0819 +347361,351.34,82.1924 +347362,353.09,83.1472 +347363,354.89,84.1325 +347364,356.75,85.1518 +347365,350.04,82.1713 +347366,351.76,83.1561 +347367,353.55,84.1715 +347368,355.4,85.2209 +347369,348.73,82.151 +347370,350.44,83.1653 +347371,352.21,84.2102 +347372,354.04,85.2893 +347373,347.43,82.1314 +347374,349.12,83.1747 +347375,350.87,84.2487 +347376,352.68,85.3568 +347377,346.12,82.1126 +347378,347.8,83.1844 +347379,349.52,84.2869 +347380,351.32,85.4234 +347381,344.82,82.0946 +347382,346.47,83.1944 +347383,348.18,84.3248 +347384,349.96,85.4892 +347385,343.52,82.0774 +347386,345.15,83.2047 +347387,346.84,84.3624 +347388,348.6,85.5541 +347389,342.22,82.0612 +347390,343.83,83.2152 +347391,345.5,84.3997 +347392,347.23,85.6181 +347393,340.92,82.0458 +347394,342.51,83.2261 +347395,344.16,84.4367 +347396,345.87,85.6811 +347397,339.63,82.0313 +347398,341.19,83.2372 +347399,342.81,84.4734 +347400,344.5,85.7432 +347401,338.33,82.0177 +347402,339.87,83.2487 +347403,341.47,84.5097 +347404,343.13,85.8043 +347405,337.04,82.005 +347406,338.55,83.2604 +347407,340.12,84.5458 +347408,341.76,85.8644 +347409,335.74,81.9934 +347410,337.23,83.2725 +347411,338.78,84.5815 +347412,340.39,85.9235 +347413,334.45,81.9827 +347414,335.91,83.285 +347415,337.43,84.6168 +347416,339.02,85.9816 +347417,333.16,81.973 +347418,334.6,83.2977 +347419,336.09,84.6518 +347420,337.65,86.0385 +347421,331.87,81.9644 +347422,333.28,83.3109 +347423,334.74,84.6865 +347424,336.27,86.0945 +347425,330.58,81.9567 +347426,331.96,83.3243 +347427,333.4,84.7208 +347428,334.9,86.1493 +347429,329.29,81.9502 +347430,330.64,83.3381 +347431,332.05,84.7547 +347432,333.52,86.203 +347433,328,81.9447 +347434,329.33,83.3523 +347435,330.7,84.7883 +347436,332.14,86.2556 +347437,326.71,81.9403 +347438,328.01,83.3669 +347439,329.35,84.8214 +347440,330.76,86.3071 +347441,325.43,81.937 +347442,326.69,83.3818 +347443,328.01,84.8542 +347444,329.38,86.3574 +347445,324.14,81.9348 +347446,325.38,83.3971 +347447,326.66,84.8866 +347448,328,86.4065 +347449,322.86,81.9338 +347450,324.06,83.4127 +347451,325.31,84.9187 +347452,326.62,86.4544 +347453,321.58,81.9339 +347454,322.74,83.4288 +347455,323.96,84.9503 +347456,325.24,86.5012 +347457,320.3,81.9352 +347458,321.43,83.4452 +347459,322.61,84.9815 +347460,323.85,86.5468 +347461,319.01,81.9377 +347462,320.11,83.4621 +347463,321.26,85.0123 +347464,322.47,86.5911 +347465,317.73,81.9414 +347466,318.8,83.4793 +347467,319.91,85.0427 +347468,321.08,86.6342 +347469,316.45,81.9462 +347470,317.48,83.4969 +347471,318.56,85.0727 +347472,319.7,86.6761 +347473,315.17,81.9523 +347474,316.17,83.515 +347475,317.21,85.1023 +347476,318.31,86.7167 +347477,313.9,81.9596 +347478,314.85,83.5334 +347479,315.86,85.1315 +347480,316.92,86.756 +347481,312.62,81.9682 +347482,313.54,83.5523 +347483,314.51,85.1602 +347484,315.53,86.7941 +347485,311.34,81.9779 +347486,312.23,83.5716 +347487,313.16,85.1886 +347488,314.14,86.831 +347489,310.06,81.989 +347490,310.91,83.5912 +347491,311.81,85.2165 +347492,312.75,86.8665 +347493,308.79,82.0013 +347494,309.6,83.6114 +347495,310.45,85.2439 +347496,311.36,86.9008 +347497,307.51,82.0149 +347498,308.29,83.6319 +347499,309.1,85.2709 +347500,309.97,86.9337 +347501,306.24,82.0297 +347502,306.97,83.6528 +347503,307.75,85.2975 +347504,308.57,86.9654 +347505,304.96,82.0458 +347506,305.66,83.6742 +347507,306.4,85.3237 +347508,307.18,86.9958 +347509,303.69,82.0633 +347510,304.35,83.696 +347511,305.04,85.3494 +347512,305.79,87.0248 +347513,302.42,82.082 +347514,303.03,83.7183 +347515,303.69,85.3747 +347516,304.39,87.0526 +347517,301.14,82.102 +347518,301.72,83.7409 +347519,302.34,85.3996 +347520,303,87.079 +347521,299.87,82.1233 +347522,300.41,83.764 +347523,300.98,85.424 +347524,301.6,87.1042 +347525,298.6,82.1459 +347526,299.1,83.7876 +347527,299.63,85.4479 +347528,300.21,87.128 +347529,297.33,82.1698 +347530,297.78,83.8115 +347531,298.28,85.4715 +347532,298.81,87.1505 +347533,296.06,82.1951 +347534,296.47,83.8359 +347535,296.92,85.4945 +347536,297.42,87.1717 +347537,294.79,82.2216 +347538,295.16,83.8607 +347539,295.57,85.5172 +347540,296.02,87.1916 +347541,293.51,82.2495 +347542,293.85,83.886 +347543,294.21,85.5394 +347544,294.62,87.2102 +347545,292.24,82.2786 +347546,292.53,83.9117 +347547,292.86,85.5611 +347548,293.23,87.2275 +347549,290.97,82.3091 +347550,291.22,83.9378 +347551,291.51,85.5825 +347552,291.83,87.2435 +347553,289.7,82.3409 +347554,289.91,83.9643 +347555,290.15,85.6033 +347556,290.43,87.2582 +347557,288.43,82.3739 +347558,288.6,83.9913 +347559,288.8,85.6238 +347560,289.03,87.2716 +347561,287.16,82.4083 +347562,287.28,84.0187 +347563,287.44,85.6438 +347564,287.64,87.2837 +347565,285.89,82.444 +347566,285.97,84.0465 +347567,286.09,85.6634 +347568,286.24,87.2945 +347569,284.62,82.4809 +347570,284.66,84.0747 +347571,284.73,85.6825 +347572,284.84,87.304 +347573,283.35,82.5191 +347574,283.35,84.1034 +347575,283.38,85.7012 +347576,283.44,87.3123 +347577,282.08,82.5587 +347578,282.04,84.1325 +347579,282.02,85.7195 +347580,282.04,87.3194 +347581,280.81,82.5994 +347582,280.72,84.162 +347583,280.67,85.7374 +347584,280.65,87.3251 +347585,279.54,82.6415 +347586,279.41,84.1919 +347587,279.31,85.7548 +347588,279.25,87.3297 +347589,278.27,82.6848 +347590,278.1,84.2222 +347591,277.96,85.7718 +347592,277.85,87.333 +347593,277,82.7293 +347594,276.79,84.253 +347595,276.6,85.7885 +347596,276.45,87.335 +347597,275.72,82.7751 +347598,275.47,84.2841 +347599,275.25,85.8046 +347600,275.06,87.3359 +347601,274.45,82.8221 +347602,274.16,84.3156 +347603,273.89,85.8204 +347604,273.66,87.3356 +347605,273.18,82.8704 +347606,272.85,84.3476 +347607,272.54,85.8358 +347608,272.26,87.3341 +347609,271.91,82.9198 +347610,271.53,84.3799 +347611,271.19,85.8508 +347612,270.87,87.3314 +347613,270.64,82.9704 +347614,270.22,84.4126 +347615,269.83,85.8654 +347616,269.47,87.3275 +347617,269.36,83.0222 +347618,268.91,84.4457 +347619,268.48,85.8795 +347620,268.07,87.3226 +347621,268.09,83.0752 +347622,267.59,84.4792 +347623,267.12,85.8933 +347624,266.68,87.3164 +347625,266.82,83.1293 +347626,266.28,84.513 +347627,265.77,85.9068 +347628,265.28,87.3092 +347629,265.54,83.1846 +347630,264.97,84.5473 +347631,264.41,85.9198 +347632,263.89,87.3008 +347633,264.27,83.2409 +347634,263.65,84.5818 +347635,263.06,85.9325 +347636,262.49,87.2914 +347637,262.99,83.2984 +347638,262.34,84.6168 +347639,261.71,85.9447 +347640,261.1,87.2809 +347641,261.72,83.357 +347642,261.02,84.6521 +347643,260.35,85.9567 +347644,259.71,87.2694 +347645,260.44,83.4166 +347646,259.71,84.6877 +347647,259,85.9683 +347648,258.31,87.2568 +347649,259.16,83.4773 +347650,258.39,84.7237 +347651,257.64,85.9795 +347652,256.92,87.2432 +347653,257.89,83.539 +347654,257.08,84.76 +347655,256.29,85.9904 +347656,255.53,87.2286 +347657,256.61,83.6018 +347658,255.76,84.7966 +347659,254.94,86.0009 +347660,254.14,87.2131 +347661,255.33,83.6655 +347662,254.45,84.8336 +347663,253.59,86.0112 +347664,252.75,87.1965 +347665,254.05,83.7302 +347666,253.13,84.8709 +347667,252.23,86.021 +347668,251.36,87.1791 +347669,252.77,83.7959 +347670,251.81,84.9085 +347671,250.88,86.0306 +347672,249.97,87.1607 +347673,251.49,83.8625 +347674,250.5,84.9463 +347675,249.53,86.0399 +347676,248.59,87.1414 +347677,250.21,83.93 +347678,249.18,84.9845 +347679,248.18,86.0489 +347680,247.2,87.1213 +347681,248.92,83.9983 +347682,247.86,85.023 +347683,246.82,86.0575 +347684,245.81,87.1003 +347685,247.64,84.0676 +347686,246.54,85.0617 +347687,245.47,86.0659 +347688,244.43,87.0785 +347689,246.36,84.1377 +347690,245.23,85.1007 +347691,244.12,86.074 +347692,243.04,87.0559 +347693,245.07,84.2086 +347694,243.91,85.14 +347695,242.77,86.0818 +347696,241.66,87.0325 +347697,243.78,84.2803 +347698,242.59,85.1795 +347699,241.42,86.0894 +347700,240.28,87.0083 +347701,242.5,84.3528 +347702,241.27,85.2193 +347703,240.07,86.0967 +347704,238.89,86.9834 +347705,241.21,84.426 +347706,239.95,85.2593 +347707,238.72,86.1038 +347708,237.51,86.9578 +347709,239.92,84.5 +347710,238.63,85.2995 +347711,237.37,86.1106 +347712,236.13,86.9315 +347713,238.63,84.5746 +347714,237.31,85.3399 +347715,236.02,86.1172 +347716,234.75,86.9046 +347717,237.34,84.6499 +347718,235.99,85.3806 +347719,234.67,86.1235 +347720,233.38,86.877 +347721,236.04,84.7258 +347722,234.67,85.4214 +347723,233.32,86.1297 +347724,232,86.8488 +347725,234.75,84.8024 +347726,233.35,85.4625 +347727,231.97,86.1356 +347728,230.62,86.82 +347729,233.46,84.8795 +347730,232.03,85.5037 +347731,230.62,86.1414 +347732,229.25,86.7906 +347733,232.16,84.9572 +347734,230.71,85.5451 +347735,229.28,86.1469 +347736,227.88,86.7608 +347737,230.86,85.0354 +347738,229.38,85.5867 +347739,227.93,86.1523 +347740,226.5,86.7304 +347741,229.57,85.1141 +347742,228.06,85.6284 +347743,226.58,86.1575 +347744,225.13,86.6995 +347745,228.27,85.1933 +347746,226.74,85.6703 +347747,225.24,86.1625 +347748,223.76,86.6682 +347749,226.97,85.2729 +347750,225.41,85.7123 +347751,223.89,86.1674 +347752,222.39,86.6365 +347753,225.66,85.3529 +347754,224.09,85.7544 +347755,222.54,86.1722 +347756,221.03,86.6044 +347757,224.36,85.4333 +347758,222.76,85.7966 +347759,221.2,86.1768 +347760,219.66,86.5719 +347761,223.06,85.5141 +347762,221.44,85.839 +347763,219.85,86.1813 +347764,218.29,86.5391 +347765,221.75,85.5951 +347766,220.11,85.8814 +347767,218.51,86.1857 +347768,216.93,86.506 +347769,220.45,85.6765 +347770,218.79,85.924 +347771,217.16,86.19 +347772,215.57,86.4726 +347773,219.14,85.7581 +347774,217.46,85.9666 +347775,215.82,86.1942 +347776,214.21,86.4389 +347777,217.83,85.8399 +347778,216.13,86.0092 +347779,214.47,86.1983 +347780,212.85,86.405 +347781,216.52,85.922 +347782,214.81,86.052 +347783,213.13,86.2023 +347784,211.49,86.3709 +347785,215.21,86.0042 +347786,213.48,86.0947 +347787,211.79,86.2063 +347788,210.13,86.3367 +347789,213.89,86.0865 +347790,212.15,86.1375 +347791,210.44,86.2102 +347792,208.77,86.3023 +347793,212.58,86.1689 +347794,210.82,86.1804 +347795,209.1,86.214 +347796,207.42,86.2678 +347797,211.26,86.2514 +347798,209.49,86.2232 +347799,207.76,86.2179 +347800,206.06,86.2332 +347801,209.94,86.334 +347802,208.16,86.2661 +347803,206.42,86.2217 +347804,204.71,86.1986 +347805,208.62,86.4165 +347806,206.83,86.3089 +347807,205.08,86.2255 +347808,203.36,86.1639 +347809,207.3,86.499 +347810,205.5,86.3517 +347811,203.74,86.2292 +347812,202.01,86.1293 +347813,205.98,86.5815 +347814,204.17,86.3945 +347815,202.4,86.233 +347816,200.66,86.0947 +347817,204.66,86.6639 +347818,202.84,86.4373 +347819,201.06,86.2368 +347820,199.31,86.0601 +347821,203.33,86.7461 +347822,201.5,86.48 +347823,199.72,86.2407 +347824,197.97,86.0257 +347825,202.01,86.8282 +347826,200.17,86.5226 +347827,198.38,86.2445 +347828,196.62,85.9914 +347829,200.68,86.9101 +347830,198.84,86.5652 +347831,197.04,86.2484 +347832,195.28,85.9572 +347833,199.35,86.9918 +347834,197.5,86.6077 +347835,195.7,86.2524 +347836,193.94,85.9233 +347837,198.02,87.0732 +347838,196.17,86.6501 +347839,194.36,86.2564 +347840,192.6,85.8895 +347841,196.69,87.1544 +347842,194.84,86.6924 +347843,193.03,86.2605 +347844,191.26,85.856 +347845,195.36,87.2352 +347846,193.5,86.7346 +347847,191.69,86.2647 +347848,189.92,85.8227 +347849,194.02,87.3157 +347850,192.16,86.7766 +347851,190.35,86.269 +347852,188.59,85.7898 +347853,192.69,87.3959 +347854,190.83,86.8186 +347855,189.02,86.2734 +347856,187.25,85.7572 +347857,191.35,87.4756 +347858,189.49,86.8604 +347859,187.68,86.2779 +347860,185.92,85.7249 +347861,190.01,87.5549 +347862,188.15,86.902 +347863,186.35,86.2825 +347864,184.58,85.693 +347865,188.67,87.6337 +347866,186.82,86.9435 +347867,185.01,86.2873 +347868,183.25,85.6616 +347869,187.33,87.712 +347870,185.48,86.9848 +347871,183.68,86.2921 +347872,181.92,85.6306 +347873,185.98,87.7898 +347874,184.14,87.026 +347875,182.34,86.2972 +347876,180.6,85.6 +347877,184.64,87.867 +347878,182.8,87.0669 +347879,181.01,86.3024 +347880,179.27,85.5699 +347881,183.29,87.9437 +347882,181.46,87.1077 +347883,179.68,86.3078 +347884,177.94,85.5404 +347885,181.94,88.0197 +347886,180.12,87.1482 +347887,178.34,86.3133 +347888,176.62,85.5114 +347889,180.6,88.0951 +347890,178.78,87.1885 +347891,177.01,86.3191 +347892,175.29,85.483 +347893,179.24,88.1698 +347894,177.44,87.2286 +347895,175.68,86.325 +347896,173.97,85.4552 +347897,177.89,88.2438 +347898,176.09,87.2684 +347899,174.35,86.3311 +347900,172.65,85.4281 +347901,176.54,88.3171 +347902,174.75,87.308 +347903,173.02,86.3375 +347904,171.33,85.4016 +347905,175.18,88.3896 +347906,173.41,87.3474 +347907,171.69,86.3441 +347908,170.02,85.3757 +347909,173.83,88.4614 +347910,172.06,87.3864 +347911,170.36,86.3509 +347912,168.7,85.3506 +347913,172.47,88.5323 +347914,170.72,87.4252 +347915,169.03,86.358 +347916,167.38,85.3262 +347917,171.11,88.6024 +347918,169.38,87.4638 +347919,167.7,86.3653 +347920,166.07,85.3026 +347921,169.75,88.6716 +347922,168.03,87.502 +347923,166.37,86.3728 +347924,164.76,85.2798 +347925,168.39,88.7399 +347926,166.69,87.5399 +347927,165.04,86.3806 +347928,163.44,85.2577 +347929,167.03,88.8073 +347930,165.34,87.5775 +347931,163.71,86.3887 +347932,162.13,85.2365 +347933,165.66,88.8738 +347934,163.99,87.6148 +347935,162.38,86.3971 +347936,160.82,85.2162 +347937,164.3,88.9393 +347938,162.65,87.6518 +347939,161.06,86.4058 +347940,159.51,85.1967 +347941,162.93,89.00388 +347942,161.3,87.6885 +347943,159.73,86.4147 +347944,158.21,85.1781 +347945,161.56,89.06741 +347946,159.95,87.7248 +347947,158.4,86.424 +347948,156.9,85.1604 +347949,160.19,89.1299 +347950,158.6,87.7607 +347951,157.08,86.4335 +347952,155.6,85.1437 +347953,158.82,89.19134 +347954,157.26,87.7963 +347955,155.75,86.4434 +347956,154.29,85.1279 +347957,157.45,89.25171 +347958,155.91,87.8316 +347959,154.42,86.4536 +347960,152.99,85.1132 +347961,156.08,89.31098 +347962,154.56,87.8665 +347963,153.1,86.4642 +347964,151.69,85.0994 +347965,154.7,89.36914 +347966,153.21,87.901 +347967,151.77,86.475 +347968,150.39,85.0867 +347969,153.33,89.42617 +347970,151.86,87.9351 +347971,150.45,86.4863 +347972,149.09,85.075 +347973,151.95,89.48204 +347974,150.51,87.9688 +347975,149.12,86.4978 +347976,147.79,85.0643 +347977,150.57,89.53674 +347978,149.16,88.0022 +347979,147.8,86.5098 +347980,146.49,85.0547 +347981,149.19,89.59025 +347982,147.81,88.0351 +347983,146.48,86.522 +347984,145.19,85.0463 +347985,147.82,89.64256 +347986,146.45,88.0677 +347987,145.15,86.5347 +347988,143.9,85.0389 +347989,146.43,89.69364 +347990,145.1,88.0998 +347991,143.83,86.5477 +347992,142.6,85.0327 +347993,145.05,89.74349 +347994,143.75,88.1315 +347995,142.5,86.5611 +347996,141.31,85.0276 +347997,143.67,89.79209 +347998,142.4,88.1628 +347999,141.18,86.5749 +348000,140.01,85.0237 +348001,142.29,89.83942 +348002,141.04,88.1937 +348003,139.86,86.589 +348004,138.72,85.0209 +348005,140.9,89.88547 +348006,139.69,88.2241 +348007,138.54,86.6036 +348008,137.43,85.0194 +348009,139.52,89.930226 +348010,138.34,88.2541 +348011,137.21,86.6185 +348012,136.14,85.019 +348013,138.13,89.973679 +348014,136.98,88.2837 +348015,135.89,86.6339 +348016,134.85,85.0199 +348017,136.74,90.015816 +348018,135.63,88.3128 +348019,134.57,86.6496 +348020,133.56,85.022 +348021,135.35,90.056626 +348022,134.27,88.3415 +348023,133.25,86.6658 +348024,132.27,85.0254 +348025,133.96,90.0961 +348026,132.92,88.3697 +348027,131.93,86.6823 +348028,130.98,85.0299 +348029,132.57,90.13423 +348030,131.56,88.3975 +348031,130.61,86.6993 +348032,129.7,85.0358 +348033,131.18,90.171 +348034,130.21,88.4248 +348035,129.29,86.7167 +348036,128.41,85.0429 +348037,129.79,90.20641 +348038,128.85,88.4516 +348039,127.97,86.7345 +348040,127.12,85.0513 +348041,128.4,90.24045 +348042,127.5,88.478 +348043,126.64,86.7528 +348044,125.84,85.061 +348045,127.01,90.27312 +348046,126.14,88.5039 +348047,125.32,86.7714 +348048,124.55,85.072 +348049,125.61,90.3044 +348050,124.78,88.5294 +348051,124,86.7905 +348052,123.27,85.0844 +348053,124.22,90.3343 +348054,123.43,88.5544 +348055,122.68,86.8101 +348056,121.98,85.098 +348057,122.82,90.3628 +348058,122.07,88.5789 +348059,121.36,86.83 +348060,120.7,85.1129 +348061,121.43,90.38992 +348062,120.71,88.6029 +348063,120.04,86.8504 +348064,119.42,85.1292 +348065,120.03,90.41563 +348066,119.36,88.6265 +348067,118.72,86.8712 +348068,118.13,85.1468 +348069,118.64,90.43995 +348070,118,88.6496 +348071,117.4,86.8925 +348072,116.85,85.1657 +348073,117.24,90.46287 +348074,116.64,88.6722 +348075,116.09,86.9142 +348076,115.57,85.1859 +348077,115.84,90.48439 +348078,115.28,88.6943 +348079,114.77,86.9363 +348080,114.29,85.2075 +348081,114.45,90.50451 +348082,113.92,88.716 +348083,113.45,86.9588 +348084,113.01,85.2305 +348085,113.05,90.52323 +348086,112.57,88.7372 +348087,112.13,86.9818 +348088,111.73,85.2548 +348089,111.65,90.54055 +348090,111.21,88.7579 +348091,110.81,87.0053 +348092,110.44,85.2804 +348093,110.25,90.55648 +348094,109.85,88.7781 +348095,109.49,87.0291 +348096,109.16,85.3073 +348097,108.85,90.57102 +348098,108.49,88.7979 +348099,108.17,87.0534 +348100,107.88,85.3357 +348101,107.45,90.58417 +348102,107.13,88.8172 +348103,106.85,87.0782 +348104,106.6,85.3653 +348105,106.05,90.59594 +348106,105.77,88.836 +348107,105.53,87.1033 +348108,105.32,85.3963 +348109,104.65,90.60633 +348110,104.41,88.8543 +348111,104.21,87.1289 +348112,104.04,85.4286 +348113,103.25,90.61535 +348114,103.06,88.8722 +348115,102.89,87.155 +348116,102.76,85.4622 +348117,101.86,90.623 +348118,101.7,88.8896 +348119,101.57,87.1814 +348120,101.48,85.4972 +348121,100.46,90.6293 +348122,100.34,88.9065 +348123,100.25,87.2083 +348124,100.2,85.5335 +348125,99.056,90.63425 +348126,98.978,88.923 +348127,98.934,87.2356 +348128,98.922,85.5711 +348129,97.656,90.63786 +348130,97.619,88.939 +348131,97.615,87.2634 +348132,97.642,85.61 +348133,96.256,90.64014 +348134,96.26,88.9546 +348135,96.296,87.2915 +348136,96.362,85.6503 +348137,94.857,90.6411 +348138,94.9,88.9697 +348139,94.976,87.3201 +348140,95.081,85.6918 +348141,93.457,90.64075 +348142,93.541,88.9843 +348143,93.657,87.3491 +348144,93.801,85.7346 +348145,92.058,90.6391 +348146,92.182,88.9985 +348147,92.337,87.3784 +348148,92.52,85.7786 +348149,90.658,90.63617 +348150,90.823,89.01223 +348151,91.017,87.4082 +348152,91.239,85.824 +348153,89.259,90.63197 +348154,89.464,89.02554 +348155,89.697,87.4384 +348156,89.958,85.8706 +348157,87.861,90.6265 +348158,88.105,89.03841 +348159,88.377,87.469 +348160,88.676,85.9184 +348161,86.462,90.61979 +348162,86.746,89.05084 +348163,87.057,87.5 +348164,87.394,85.9675 +348165,85.064,90.61185 +348166,85.387,89.06285 +348167,85.737,87.5314 +348168,86.112,86.0178 +348169,83.666,90.6027 +348170,84.028,89.07443 +348171,84.416,87.5632 +348172,84.83,86.0693 +348173,82.268,90.59235 +348174,82.669,89.08559 +348175,83.096,87.5953 +348176,83.547,86.122 +348177,80.871,90.58081 +348178,81.31,89.09634 +348179,81.775,87.6278 +348180,82.263,86.1758 +348181,79.474,90.56811 +348182,79.952,89.10668 +348183,80.454,87.6607 +348184,80.98,86.2309 +348185,78.077,90.55426 +348186,78.593,89.11662 +348187,79.133,87.694 +348188,79.695,86.287 +348189,76.681,90.53928 +348190,77.235,89.12616 +348191,77.812,87.7276 +348192,78.411,86.3444 +348193,75.286,90.52319 +348194,75.877,89.13531 +348195,76.49,87.7616 +348196,77.125,86.4028 +348197,73.891,90.50601 +348198,74.519,89.14407 +348199,75.168,87.7959 +348200,75.84,86.4623 +348201,72.497,90.48776 +348202,73.161,89.15246 +348203,73.846,87.8305 +348204,74.553,86.5229 +348205,71.103,90.46845 +348206,71.803,89.16047 +348207,72.524,87.8655 +348208,73.266,86.5845 +348209,69.709,90.44812 +348210,70.445,89.16812 +348211,71.202,87.9008 +348212,71.978,86.6472 +348213,68.317,90.42678 +348214,69.088,89.17541 +348215,69.879,87.9364 +348216,70.69,86.7109 +348217,66.925,90.40444 +348218,67.731,89.18234 +348219,68.556,87.9723 +348220,69.401,86.7756 +348221,65.534,90.38115 +348222,66.373,89.18894 +348223,67.233,88.0086 +348224,68.111,86.8413 +348225,64.143,90.35691 +348226,65.017,89.19519 +348227,65.909,88.0451 +348228,66.821,86.908 +348229,62.754,90.33175 +348230,63.66,89.20112 +348231,64.586,88.082 +348232,65.53,86.9755 +348233,61.365,90.3057 +348234,62.304,89.20673 +348235,63.261,88.1191 +348236,64.238,87.044 +348237,59.976,90.27877 +348238,60.947,89.21202 +348239,61.937,88.1564 +348240,62.945,87.1134 +348241,58.589,90.251 +348242,59.591,89.217 +348243,60.612,88.1941 +348244,61.651,87.1836 +348245,57.202,90.2224 +348246,58.236,89.22169 +348247,59.287,88.232 +348248,60.357,87.2547 +348249,55.817,90.19301 +348250,56.88,89.22609 +348251,57.962,88.2701 +348252,59.061,87.3266 +348253,54.432,90.16285 +348254,55.525,89.23021 +348255,56.636,88.3085 +348256,57.765,87.3992 +348257,53.048,90.13194 +348258,54.17,89.23406 +348259,55.31,88.3472 +348260,56.468,87.4727 +348261,51.665,90.10031 +348262,52.815,89.23764 +348263,53.984,88.386 +348264,55.17,87.5468 +348265,50.283,90.067991 +348266,51.461,89.24097 +348267,52.657,88.4251 +348268,53.87,87.6217 +348269,48.902,90.035005 +348270,50.107,89.24405 +348271,51.33,88.4643 +348272,52.57,87.6973 +348273,47.522,90.0013799 +348274,48.753,89.24689 +348275,50.002,88.5038 +348276,51.269,87.7735 +348277,46.143,89.967144 +348278,47.4,89.24951 +348279,48.674,88.5434 +348280,49.967,87.8503 +348281,44.765,89.932325 +348282,46.046,89.25191 +348283,47.346,88.5832 +348284,48.664,87.9277 +348285,43.388,89.89695 +348286,44.693,89.2541 +348287,46.018,88.6232 +348288,47.36,88.0057 +348289,42.012,89.86105 +348290,43.341,89.25609 +348291,44.688,88.6633 +348292,46.054,88.0843 +348293,40.637,89.82465 +348294,41.989,89.25789 +348295,43.359,88.7036 +348296,44.748,88.1633 +348297,39.264,89.78778 +348298,40.637,89.25951 +348299,42.029,88.744 +348300,43.44,88.2428 +348301,37.891,89.75048 +348302,39.285,89.26097 +348303,40.699,88.7846 +348304,42.131,88.3228 +348305,36.52,89.71276 +348306,37.934,89.26226 +348307,39.368,88.8253 +348308,40.822,88.4032 +348309,35.149,89.67466 +348310,36.583,89.26339 +348311,38.037,88.866 +348312,39.511,88.484 +348313,33.78,89.6362 +348314,35.233,89.26439 +348315,36.706,88.9069 +348316,38.198,88.5651 +348317,32.412,89.59743 +348318,33.882,89.26526 +348319,35.374,88.9478 +348320,36.885,88.6466 +348321,31.045,89.55836 +348322,32.533,89.26601 +348323,34.041,88.9889 +348324,35.57,88.7284 +348325,29.679,89.51903 +348326,31.183,89.26665 +348327,32.708,89.02994 +348328,34.254,88.8104 +348329,28.315,89.47946 +348330,29.834,89.26718 +348331,31.375,89.07108 +348332,32.937,88.8927 +348333,26.952,89.4397 +348334,28.485,89.26763 +348335,30.041,89.11226 +348336,31.619,88.9751 +348337,25.59,89.39976 +348338,27.137,89.26799 +348339,28.707,89.15347 +348340,30.299,89.05773 +348341,24.229,89.35968 +348342,25.789,89.26829 +348343,27.372,89.19471 +348344,28.979,89.14049 +348345,22.869,89.31949 +348346,24.442,89.26853 +348347,26.037,89.23595 +348348,27.656,89.22334 +348349,21.511,89.27921 +348350,23.094,89.26872 +348351,24.702,89.2772 +348352,26.333,89.30627 +348353,20.154,89.23889 +348354,21.748,89.26887 +348355,23.366,89.31843 +348356,25.008,89.38923 +348357,18.798,89.19855 +348358,20.401,89.26899 +348359,22.029,89.35964 +348360,23.682,89.47219 +348361,17.444,89.15821 +348362,19.055,89.26909 +348363,20.692,89.40082 +348364,22.355,89.55513 +348365,16.09,89.11792 +348366,17.71,89.26919 +348367,19.355,89.44195 +348368,21.026,89.638 +348369,14.738,89.0777 +348370,16.364,89.26929 +348371,18.017,89.48303 +348372,19.696,89.72077 +348373,13.388,89.03758 +348374,15.019,89.2694 +348375,16.678,89.52405 +348376,18.365,89.80341 +348377,12.038,88.9976 +348378,13.675,89.26953 +348379,15.339,89.56498 +348380,17.032,89.8859 +348381,10.69,88.9578 +348382,12.331,89.2697 +348383,14,89.60583 +348384,15.698,89.96818 +348385,9.3431,88.9181 +348386,10.987,89.26991 +348387,12.66,89.64658 +348388,14.363,90.050235 +348389,7.9974,88.8787 +348390,9.6441,89.27018 +348391,11.32,89.68723 +348392,13.026,90.13203 +348393,6.6531,88.8396 +348394,8.3013,89.27051 +348395,9.979,89.72775 +348396,11.688,90.21353 +348397,5.3101,88.8007 +348398,6.9589,89.27091 +348399,8.6377,89.76814 +348400,10.348,90.2947 +348401,3.9683,88.7621 +348402,5.6168,89.2714 +348403,7.2959,89.8084 +348404,9.0076,90.37551 +348405,2.6278,88.7239 +348406,4.2752,89.27199 +348407,5.9537,89.8485 +348408,7.6654,90.45592 +348409,1.2886,88.686 +348410,2.9339,89.27268 +348411,4.6109,89.88844 +348412,6.3219,90.53591 +348413,359.95,88.6486 +348414,1.5931,89.27348 +348415,3.2677,89.928202 +348416,4.977,90.61544 +348417,358.61,88.6115 +348418,0.25266,89.27441 +348419,1.924,89.967784 +348420,3.6307,90.69449 +348421,357.28,88.575 +348422,358.91,89.27547 +348423,0.57982,90.0071737 +348424,2.2831,90.773 +348425,355.94,88.5389 +348426,357.57,89.27668 +348427,359.24,90.046359 +348428,0.93418,90.85097 +348429,354.61,88.5033 +348430,356.23,89.27804 +348431,357.89,90.085331 +348432,359.58,90.92835 +348433,353.28,88.4683 +348434,354.89,89.27956 +348435,356.54,90.12408 +348436,358.23,91.0051 +348437,351.95,88.4338 +348438,353.56,89.28126 +348439,355.2,90.16259 +348440,356.88,91.0812 +348441,350.62,88.4 +348442,352.22,89.28314 +348443,353.85,90.20086 +348444,355.52,91.1567 +348445,349.29,88.3668 +348446,350.88,89.2852 +348447,352.5,90.23888 +348448,354.17,91.2314 +348449,347.97,88.3342 +348450,349.54,89.28747 +348451,351.16,90.27663 +348452,352.81,91.3054 +348453,346.64,88.3023 +348454,348.21,89.28995 +348455,349.81,90.31411 +348456,351.45,91.3786 +348457,345.32,88.2711 +348458,346.87,89.29265 +348459,348.46,90.35131 +348460,350.09,91.451 +348461,343.99,88.2406 +348462,345.53,89.29557 +348463,347.11,90.38821 +348464,348.73,91.5226 +348465,342.67,88.2109 +348466,344.2,89.29873 +348467,345.76,90.42482 +348468,347.37,91.5934 +348469,341.35,88.182 +348470,342.86,89.30213 +348471,344.41,90.46111 +348472,346.01,91.6632 +348473,340.03,88.1538 +348474,341.53,89.30579 +348475,343.06,90.49708 +348476,344.64,91.7322 +348477,338.71,88.1265 +348478,340.19,89.30971 +348479,341.71,90.53273 +348480,343.28,91.8002 +348481,337.39,88.1001 +348482,338.86,89.31389 +348483,340.36,90.56804 +348484,341.91,91.8673 +348485,336.08,88.0745 +348486,337.52,89.31836 +348487,339.01,90.60301 +348488,340.54,91.9333 +348489,334.76,88.0499 +348490,336.19,89.32311 +348491,337.66,90.63762 +348492,339.17,91.9984 +348493,333.45,88.0261 +348494,334.86,89.32815 +348495,336.31,90.67187 +348496,337.8,92.0624 +348497,332.13,88.0033 +348498,333.52,89.33349 +348499,334.95,90.70575 +348500,336.43,92.1253 +348501,330.82,87.9815 +348502,332.19,89.33914 +348503,333.6,90.73926 +348504,335.06,92.1872 +348505,329.51,87.9607 +348506,330.86,89.3451 +348507,332.25,90.77238 +348508,333.68,92.2479 +348509,328.2,87.9409 +348510,329.53,89.35138 +348511,330.89,90.80511 +348512,332.31,92.3075 +348513,326.89,87.9221 +348514,328.19,89.358 +348515,329.54,90.83743 +348516,330.93,92.3659 +348517,325.58,87.9043 +348518,326.86,89.36494 +348519,328.18,90.86936 +348520,329.55,92.4232 +348521,324.28,87.8877 +348522,325.53,89.37223 +348523,326.83,90.90086 +348524,328.17,92.4793 +348525,322.97,87.8721 +348526,324.2,89.37987 +348527,325.47,90.93195 +348528,326.79,92.5341 +348529,321.66,87.8576 +348530,322.87,89.38786 +348531,324.12,90.96262 +348532,325.41,92.5877 +348533,320.36,87.8443 +348534,321.54,89.39621 +348535,322.76,90.99284 +348536,324.03,92.6401 +348537,319.06,87.8321 +348538,320.21,89.40493 +348539,321.4,91.0226 +348540,322.65,92.6911 +348541,317.75,87.821 +348542,318.88,89.41402 +348543,320.05,91.052 +348544,321.26,92.7409 +348545,316.45,87.8111 +348546,317.55,89.42348 +348547,318.69,91.0809 +348548,319.88,92.7893 +348549,315.15,87.8025 +348550,316.22,89.43333 +348551,317.33,91.1093 +348552,318.49,92.8365 +348553,313.85,87.795 +348554,314.89,89.44356 +348555,315.97,91.1373 +348556,317.11,92.8823 +348557,312.55,87.7887 +348558,313.56,89.45418 +348559,314.62,91.1648 +348560,315.72,92.9267 +348561,311.25,87.7837 +348562,312.23,89.4652 +348563,313.26,91.1918 +348564,314.33,92.9697 +348565,309.95,87.7799 +348566,310.9,89.47662 +348567,311.9,91.2184 +348568,312.94,93.0114 +348569,308.65,87.7774 +348570,309.58,89.48844 +348571,310.54,91.2445 +348572,311.55,93.0517 +348573,307.36,87.7762 +348574,308.25,89.50068 +348575,309.18,91.2701 +348576,310.16,93.0905 +348577,306.06,87.7762 +348578,306.92,89.51332 +348579,307.82,91.2952 +348580,308.77,93.1279 +348581,304.76,87.7776 +348582,305.59,89.52637 +348583,306.46,91.3198 +348584,307.37,93.1639 +348585,303.47,87.7802 +348586,304.27,89.53985 +348587,305.1,91.344 +348588,305.98,93.1985 +348589,302.17,87.7841 +348590,302.94,89.55375 +348591,303.74,91.3676 +348592,304.59,93.2316 +348593,300.88,87.7894 +348594,301.61,89.56807 +348595,302.38,91.3907 +348596,303.19,93.2632 +348597,299.59,87.796 +348598,300.28,89.58281 +348599,301.02,91.4134 +348600,301.8,93.2934 +348601,298.29,87.8039 +348602,298.96,89.59799 +348603,299.66,91.4355 +348604,300.4,93.3221 +348605,297,87.8132 +348606,297.63,89.61359 +348607,298.3,91.4571 +348608,299.01,93.3493 +348609,295.71,87.8239 +348610,296.3,89.62963 +348611,296.93,91.4782 +348612,297.61,93.3751 +348613,294.42,87.8358 +348614,294.98,89.6461 +348615,295.57,91.4988 +348616,296.21,93.3993 +348617,293.12,87.8492 +348618,293.65,89.66301 +348619,294.21,91.5189 +348620,294.81,93.4221 +348621,291.83,87.8639 +348622,292.32,89.68035 +348623,292.85,91.5385 +348624,293.42,93.4434 +348625,290.54,87.88 +348626,291,89.69813 +348627,291.49,91.5575 +348628,292.02,93.4631 +348629,289.25,87.8974 +348630,289.67,89.71635 +348631,290.12,91.5761 +348632,290.62,93.4814 +348633,287.96,87.9162 +348634,288.34,89.735 +348635,288.76,91.5941 +348636,289.22,93.4982 +348637,286.67,87.9364 +348638,287.02,89.7541 +348639,287.4,91.6116 +348640,287.82,93.5135 +348641,285.38,87.958 +348642,285.69,89.77363 +348643,286.04,91.6286 +348644,286.42,93.5273 +348645,284.09,87.9809 +348646,284.37,89.7936 +348647,284.67,91.6451 +348648,285.02,93.5396 +348649,282.8,88.0052 +348650,283.04,89.81401 +348651,283.31,91.661 +348652,283.62,93.5504 +348653,281.51,88.0309 +348654,281.71,89.83485 +348655,281.95,91.6765 +348656,282.22,93.5597 +348657,280.22,88.0579 +348658,280.39,89.85613 +348659,280.58,91.6914 +348660,280.82,93.5676 +348661,278.93,88.0863 +348662,279.06,89.87784 +348663,279.22,91.7059 +348664,279.42,93.574 +348665,277.64,88.1161 +348666,277.74,89.89998 +348667,277.86,91.7198 +348668,278.01,93.5789 +348669,276.35,88.1472 +348670,276.41,89.92256 +348671,276.49,91.7332 +348672,276.61,93.5824 +348673,275.06,88.1797 +348674,275.08,89.945564 +348675,275.13,91.7461 +348676,275.21,93.5844 +348677,273.77,88.2135 +348678,273.76,89.968994 +348679,273.77,91.7585 +348680,273.81,93.5849 +348681,272.48,88.2487 +348682,272.43,89.9928477 +348683,272.4,91.7704 +348684,272.41,93.5841 +348685,271.19,88.2852 +348686,271.1,90.017123 +348687,271.04,91.7818 +348688,271.01,93.5818 +348689,269.9,88.323 +348690,269.78,90.041815 +348691,269.68,91.7927 +348692,269.61,93.5781 +348693,268.61,88.3621 +348694,268.45,90.066923 +348695,268.31,91.8031 +348696,268.21,93.573 +348697,267.32,88.4026 +348698,267.12,90.092442 +348699,266.95,91.813 +348700,266.8,93.5665 +348701,266.03,88.4443 +348702,265.8,90.11837 +348703,265.59,91.8225 +348704,265.4,93.5586 +348705,264.74,88.4873 +348706,264.47,90.1447 +348707,264.22,91.8315 +348708,264,93.5493 +348709,263.45,88.5316 +348710,263.14,90.17143 +348711,262.86,91.84 +348712,262.6,93.5387 +348713,262.16,88.5772 +348714,261.82,90.19856 +348715,261.5,91.848 +348716,261.2,93.5268 +348717,260.87,88.624 +348718,260.49,90.22607 +348719,260.13,91.8555 +348720,259.8,93.5136 +348721,259.58,88.672 +348722,259.16,90.25397 +348723,258.77,91.8626 +348724,258.4,93.499 +348725,258.28,88.7213 +348726,257.84,90.28226 +348727,257.41,91.8692 +348728,257,93.4832 +348729,256.99,88.7718 +348730,256.51,90.31091 +348731,256.05,91.8754 +348732,255.6,93.4661 +348733,255.7,88.8235 +348734,255.18,90.33994 +348735,254.68,91.8812 +348736,254.21,93.4478 +348737,254.4,88.8763 +348738,253.85,90.36934 +348739,253.32,91.8865 +348740,252.81,93.4282 +348741,253.11,88.9303 +348742,252.52,90.39909 +348743,251.96,91.8913 +348744,251.41,93.4074 +348745,251.81,88.9855 +348746,251.19,90.42919 +348747,250.59,91.8958 +348748,250.01,93.3854 +348749,250.52,89.04173 +348750,249.87,90.45964 +348751,249.23,91.8998 +348752,248.62,93.3623 +348753,249.22,89.09912 +348754,248.54,90.49043 +348755,247.87,91.9034 +348756,247.22,93.338 +348757,247.92,89.15759 +348758,247.21,90.52155 +348759,246.51,91.9066 +348760,245.83,93.3125 +348761,246.63,89.21713 +348762,245.88,90.553 +348763,245.15,91.9094 +348764,244.43,93.286 +348765,245.33,89.27771 +348766,244.55,90.58477 +348767,243.78,91.9118 +348768,243.04,93.2584 +348769,244.03,89.33933 +348770,243.22,90.61685 +348771,242.42,91.9138 +348772,241.64,93.2297 +348773,242.73,89.40195 +348774,241.89,90.64923 +348775,241.06,91.9154 +348776,240.25,93.2 +348777,241.43,89.46555 +348778,240.56,90.68191 +348779,239.7,91.9167 +348780,238.86,93.1693 +348781,240.13,89.53012 +348782,239.23,90.71488 +348783,238.34,91.9176 +348784,237.47,93.1376 +348785,238.83,89.59563 +348786,237.9,90.74813 +348787,236.98,91.9181 +348788,236.08,93.1049 +348789,237.53,89.66205 +348790,236.57,90.78165 +348791,235.62,91.9183 +348792,234.69,93.0713 +348793,236.22,89.72936 +348794,235.23,90.81544 +348795,234.26,91.9182 +348796,233.3,93.0367 +348797,234.92,89.79754 +348798,233.9,90.84948 +348799,232.9,91.9177 +348800,231.91,93.0013 +348801,233.61,89.86655 +348802,232.57,90.88377 +348803,231.54,91.9169 +348804,230.52,92.9651 +348805,232.31,89.936389 +348806,231.24,90.91829 +348807,230.18,91.9158 +348808,229.13,92.928 +348809,231,90.0070126 +348810,229.91,90.95305 +348811,228.82,91.9144 +348812,227.75,92.8901 +348813,229.69,90.0784 +348814,228.57,90.98802 +348815,227.46,91.9127 +348816,226.36,92.8514 +348817,228.39,90.15052 +348818,227.24,91.0232 +348819,226.1,91.9107 +348820,224.98,92.812 +348821,227.08,90.22335 +348822,225.9,91.0586 +348823,224.74,91.9084 +348824,223.6,92.7718 +348825,225.77,90.29687 +348826,224.57,91.0942 +348827,223.39,91.9059 +348828,222.22,92.731 +348829,224.45,90.37103 +348830,223.24,91.1299 +348831,222.03,91.9031 +348832,220.83,92.6895 +348833,223.14,90.44582 +348834,221.9,91.1659 +348835,220.67,91.9001 +348836,219.45,92.6474 +348837,221.83,90.5212 +348838,220.57,91.202 +348839,219.31,91.8968 +348840,218.08,92.6046 +348841,220.51,90.59715 +348842,219.23,91.2382 +348843,217.96,91.8933 +348844,216.7,92.5613 +348845,219.2,90.67364 +348846,217.89,91.2746 +348847,216.6,91.8896 +348848,215.32,92.5175 +348849,217.88,90.75062 +348850,216.56,91.3111 +348851,215.25,91.8856 +348852,213.94,92.4731 +348853,216.56,90.82809 +348854,215.22,91.3478 +348855,213.89,91.8815 +348856,212.57,92.4283 +348857,215.24,90.90599 +348858,213.88,91.3845 +348859,212.53,91.8772 +348860,211.2,92.383 +348861,213.92,90.98431 +348862,212.55,91.4214 +348863,211.18,91.8727 +348864,209.82,92.3373 +348865,212.6,91.063 +348866,211.21,91.4583 +348867,209.82,91.8681 +348868,208.45,92.2912 +348869,211.28,91.1421 +348870,209.87,91.4953 +348871,208.47,91.8632 +348872,207.08,92.2448 +348873,209.96,91.2214 +348874,208.53,91.5324 +348875,207.12,91.8583 +348876,205.71,92.198 +348877,208.63,91.3011 +348878,207.19,91.5696 +348879,205.76,91.8532 +348880,204.34,92.1509 +348881,207.31,91.381 +348882,205.85,91.6068 +348883,204.41,91.848 +348884,202.98,92.1036 +348885,205.98,91.4611 +348886,204.51,91.644 +348887,203.05,91.8426 +348888,201.61,92.056 +348889,204.65,91.5414 +348890,203.17,91.6813 +348891,201.7,91.8372 +348892,200.25,92.0083 +348893,203.32,91.6219 +348894,201.83,91.7185 +348895,200.35,91.8317 +348896,198.88,91.9603 +348897,201.99,91.7025 +348898,200.49,91.7558 +348899,199,91.8261 +348900,197.52,91.9123 +348901,200.66,91.7831 +348902,199.15,91.7931 +348903,197.65,91.8204 +348904,196.16,91.8641 +348905,199.33,91.8639 +348906,197.8,91.8303 +348907,196.29,91.8146 +348908,194.8,91.8159 +348909,197.99,91.9446 +348910,196.46,91.8675 +348911,194.94,91.8088 +348912,193.44,91.7676 +348913,196.66,92.0253 +348914,195.12,91.9047 +348915,193.59,91.803 +348916,192.08,91.7193 +348917,195.32,92.106 +348918,193.77,91.9418 +348919,192.24,91.7972 +348920,190.73,91.671 +348921,193.98,92.1866 +348922,192.43,91.9789 +348923,190.89,91.7913 +348924,189.37,91.6228 +348925,192.64,92.2671 +348926,191.09,92.0158 +348927,189.54,91.7854 +348928,188.02,91.5747 +348929,191.3,92.3474 +348930,189.74,92.0527 +348931,188.2,91.7795 +348932,186.67,91.5267 +348933,189.96,92.4276 +348934,188.4,92.0895 +348935,186.85,91.7737 +348936,185.32,91.4788 +348937,188.62,92.5075 +348938,187.05,92.1262 +348939,185.5,91.7678 +348940,183.97,91.4311 +348941,187.27,92.5872 +348942,185.7,92.1628 +348943,184.15,91.762 +348944,182.62,91.3836 +348945,185.93,92.6666 +348946,184.36,92.1992 +348947,182.8,91.7563 +348948,181.27,91.3364 +348949,184.58,92.7456 +348950,183.01,92.2355 +348951,181.46,91.7506 +348952,179.92,91.2895 +348953,183.23,92.8243 +348954,181.66,92.2716 +348955,180.11,91.7449 +348956,178.58,91.2428 +348957,181.88,92.9027 +348958,180.31,92.3076 +348959,178.76,91.7394 +348960,177.23,91.1965 +348961,180.53,92.9806 +348962,178.96,92.3434 +348963,177.42,91.7339 +348964,175.89,91.1505 +348965,179.18,93.058 +348966,177.62,92.379 +348967,176.07,91.7285 +348968,174.55,91.105 +348969,177.83,93.135 +348970,176.27,92.4144 +348971,174.73,91.7233 +348972,173.21,91.0598 +348973,176.47,93.2114 +348974,174.92,92.4496 +348975,173.38,91.7181 +348976,171.87,91.0152 +348977,175.12,93.2873 +348978,173.57,92.4845 +348979,172.04,91.7131 +348980,170.53,90.97099 +348981,173.76,93.3626 +348982,172.22,92.5193 +348983,170.69,91.7083 +348984,169.19,90.92731 +348985,172.4,93.4373 +348986,170.86,92.5538 +348987,169.35,91.7035 +348988,167.86,90.88418 +348989,171.04,93.5113 +348990,169.51,92.5881 +348991,168.01,91.699 +348992,166.52,90.84162 +348993,169.68,93.5846 +348994,168.16,92.6221 +348995,166.66,91.6946 +348996,165.19,90.79965 +348997,168.32,93.6573 +348998,166.81,92.6558 +348999,165.32,91.6904 +349000,163.86,90.75832 +349001,166.96,93.7291 +349002,165.45,92.6892 +349003,163.98,91.6864 +349004,162.53,90.71764 +349005,165.59,93.8002 +349006,164.1,92.7224 +349007,162.64,91.6825 +349008,161.2,90.67765 +349009,164.23,93.8705 +349010,162.75,92.7552 +349011,161.3,91.6789 +349012,159.87,90.63836 +349013,162.86,93.94 +349014,161.39,92.7878 +349015,159.96,91.6755 +349016,158.54,90.59982 +349017,161.49,94.0086 +349018,160.04,92.82 +349019,158.61,91.6723 +349020,157.21,90.56203 +349021,160.12,94.0762 +349022,158.68,92.8519 +349023,157.27,91.6694 +349024,155.89,90.52503 +349025,158.75,94.143 +349026,157.33,92.8834 +349027,155.93,91.6667 +349028,154.57,90.48885 +349029,157.38,94.2088 +349030,155.97,92.9146 +349031,154.59,91.6642 +349032,153.24,90.45351 +349033,156.01,94.2736 +349034,154.62,92.9455 +349035,153.25,91.662 +349036,151.92,90.41903 +349037,154.63,94.3374 +349038,153.26,92.976 +349039,151.92,91.6601 +349040,150.6,90.38544 +349041,153.26,94.4001 +349042,151.9,93.0061 +349043,150.58,91.6585 +349044,149.28,90.35276 +349045,151.88,94.4618 +349046,150.54,93.0358 +349047,149.24,91.6571 +349048,147.96,90.32102 +349049,150.51,94.5224 +349050,149.19,93.0651 +349051,147.9,91.656 +349052,146.64,90.29024 +349053,149.13,94.5818 +349054,147.83,93.094 +349055,146.56,91.6553 +349056,145.32,90.26043 +349057,147.75,94.6401 +349058,146.47,93.1226 +349059,145.23,91.6548 +349060,144.01,90.23163 +349061,146.37,94.6973 +349062,145.11,93.1507 +349063,143.89,91.6546 +349064,142.69,90.20385 +349065,144.99,94.7533 +349066,143.75,93.1783 +349067,142.55,91.6548 +349068,141.38,90.17712 +349069,143.6,94.808 +349070,142.39,93.2056 +349071,141.21,91.6553 +349072,140.06,90.15145 +349073,142.22,94.8615 +349074,141.03,93.2324 +349075,139.88,91.6561 +349076,138.75,90.12687 +349077,140.84,94.9137 +349078,139.67,93.2588 +349079,138.54,91.6573 +349080,137.44,90.1034 +349081,139.45,94.9647 +349082,138.31,93.2847 +349083,137.21,91.6588 +349084,136.13,90.081041 +349085,138.07,95.0143 +349086,136.95,93.3101 +349087,135.87,91.6607 +349088,134.82,90.059828 +349089,136.68,95.0626 +349090,135.59,93.3351 +349091,134.53,91.663 +349092,133.51,90.039774 +349093,135.29,95.1096 +349094,134.23,93.3596 +349095,133.2,91.6656 +349096,132.2,90.020896 +349097,133.9,95.1552 +349098,132.87,93.3837 +349099,131.86,91.6685 +349100,130.89,90.0032104 +349101,132.51,95.1994 +349102,131.5,93.4072 +349103,130.53,91.6719 +349104,129.58,89.986733 +349105,131.12,95.2423 +349106,130.14,93.4303 +349107,129.2,91.6756 +349108,128.28,89.97148 +349109,129.73,95.2837 +349110,128.78,93.4528 +349111,127.86,91.6797 +349112,126.97,89.957464 +349113,128.34,95.3237 +349114,127.42,93.4749 +349115,126.53,91.6843 +349116,125.67,89.944701 +349117,126.95,95.3622 +349118,126.05,93.4965 +349119,125.19,91.6892 +349120,124.36,89.933204 +349121,125.55,95.3993 +349122,124.69,93.5175 +349123,123.86,91.6945 +349124,123.06,89.922986 +349125,124.16,95.4349 +349126,123.33,93.5381 +349127,122.53,91.7002 +349128,121.75,89.914059 +349129,122.76,95.469 +349130,121.96,93.5581 +349131,121.19,91.7063 +349132,120.45,89.906433 +349133,121.37,95.5016 +349134,120.6,93.5776 +349135,119.86,91.7129 +349136,119.15,89.900122 +349137,119.97,95.5327 +349138,119.23,93.5966 +349139,118.53,91.7198 +349140,117.85,89.89513 +349141,118.58,95.5623 +349142,117.87,93.615 +349143,117.19,91.7272 +349144,116.55,89.89148 +349145,117.18,95.5904 +349146,116.5,93.6329 +349147,115.86,91.735 +349148,115.25,89.88917 +349149,115.78,95.6169 +349150,115.14,93.6503 +349151,114.53,91.7432 +349152,113.95,89.8882 +349153,114.38,95.6419 +349154,113.77,93.6671 +349155,113.2,91.7518 +349156,112.65,89.8886 +349157,112.98,95.6653 +349158,112.41,93.6834 +349159,111.86,91.7609 +349160,111.35,89.89036 +349161,111.59,95.6871 +349162,111.04,93.6992 +349163,110.53,91.7704 +349164,110.05,89.89349 +349165,110.19,95.7074 +349166,109.68,93.7144 +349167,109.2,91.7804 +349168,108.75,89.898 +349169,108.79,95.7262 +349170,108.31,93.7291 +349171,107.87,91.7907 +349172,107.45,89.903887 +349173,107.39,95.7433 +349174,106.95,93.7432 +349175,106.54,91.8015 +349176,106.15,89.911162 +349177,105.99,95.7589 +349178,105.58,93.7568 +349179,105.2,91.8128 +349180,104.85,89.919827 +349181,104.58,95.7729 +349182,104.21,93.7698 +349183,103.87,91.8245 +349184,103.55,89.929884 +349185,103.18,95.7853 +349186,102.85,93.7823 +349187,102.54,91.8366 +349188,102.26,89.941334 +349189,101.78,95.7962 +349190,101.48,93.7942 +349191,101.21,91.8491 +349192,100.96,89.954181 +349193,100.38,95.8055 +349194,100.11,93.8056 +349195,99.876,91.8621 +349196,99.661,89.968423 +349197,98.978,95.8131 +349198,98.748,93.8164 +349199,98.544,91.8756 +349200,98.364,89.984062 +349201,97.576,95.8193 +349202,97.381,93.8267 +349203,97.212,91.8894 +349204,97.067,90.0010963 +349205,96.174,95.8238 +349206,96.014,93.8364 +349207,95.881,91.9037 +349208,95.77,90.019525 +349209,94.771,95.8268 +349210,94.647,93.8456 +349211,94.549,91.9185 +349212,94.472,90.039345 +349213,93.369,95.8282 +349214,93.281,93.8542 +349215,93.217,91.9337 +349216,93.175,90.060555 +349217,91.967,95.8281 +349218,91.914,93.8623 +349219,91.885,91.9493 +349220,91.878,90.083151 +349221,90.564,95.8264 +349222,90.547,93.8699 +349223,90.554,91.9653 +349224,90.581,90.10713 +349225,89.162,95.8232 +349226,89.18,93.8769 +349227,89.222,91.9818 +349228,89.283,90.13248 +349229,87.759,95.8185 +349230,87.813,93.8833 +349231,87.89,91.9987 +349232,87.986,90.15921 +349233,86.357,95.8122 +349234,86.447,93.8893 +349235,86.558,92.016 +349236,86.688,90.1873 +349237,84.955,95.8044 +349238,85.08,93.8947 +349239,85.226,92.0338 +349240,85.391,90.21674 +349241,83.553,95.7951 +349242,83.713,93.8995 +349243,83.894,92.0519 +349244,84.093,90.24754 +349245,82.151,95.7843 +349246,82.346,93.9039 +349247,82.561,92.0705 +349248,82.794,90.27968 +349249,80.749,95.7721 +349250,80.979,93.9077 +349251,81.229,92.0895 +349252,81.496,90.31315 +349253,79.348,95.7583 +349254,79.613,93.911 +349255,79.897,92.1089 +349256,80.197,90.34795 +349257,77.947,95.7432 +349258,78.246,93.9138 +349259,78.564,92.1287 +349260,78.898,90.38405 +349261,76.546,95.7265 +349262,76.88,93.9161 +349263,77.231,92.1489 +349264,77.599,90.42146 +349265,75.145,95.7085 +349266,75.513,93.9178 +349267,75.898,92.1695 +349268,76.299,90.46016 +349269,73.745,95.689 +349270,74.147,93.9191 +349271,74.566,92.1905 +349272,74.999,90.50013 +349273,72.345,95.6682 +349274,72.781,93.9198 +349275,73.232,92.2119 +349276,73.699,90.54137 +349277,70.945,95.646 +349278,71.415,93.9201 +349279,71.899,92.2337 +349280,72.398,90.58386 +349281,69.546,95.6224 +349282,70.049,93.9199 +349283,70.566,92.2559 +349284,71.096,90.62759 +349285,68.148,95.5975 +349286,68.683,93.9192 +349287,69.232,92.2784 +349288,69.795,90.67253 +349289,66.75,95.5712 +349290,67.317,93.918 +349291,67.898,92.3013 +349292,68.492,90.71868 +349293,65.352,95.5437 +349294,65.951,93.9164 +349295,66.564,92.3245 +349296,67.189,90.76602 +349297,63.955,95.5149 +349298,64.586,93.9143 +349299,65.23,92.3481 +349300,65.886,90.81453 +349301,62.558,95.4849 +349302,63.221,93.9117 +349303,63.896,92.3721 +349304,64.582,90.8642 +349305,61.162,95.4536 +349306,61.856,93.9087 +349307,62.561,92.3964 +349308,63.277,90.915 +349309,59.767,95.421 +349310,60.491,93.9053 +349311,61.226,92.421 +349312,61.972,90.96692 +349313,58.372,95.3873 +349314,59.126,93.9014 +349315,59.891,92.446 +349316,60.666,91.0199 +349317,56.978,95.3525 +349318,57.761,93.8971 +349319,58.556,92.4713 +349320,59.359,91.074 +349321,55.584,95.3165 +349322,56.397,93.8923 +349323,57.22,92.4969 +349324,58.052,91.1292 +349325,54.192,95.2794 +349326,55.033,93.8872 +349327,55.884,92.5228 +349328,56.744,91.1854 +349329,52.8,95.2412 +349330,53.669,93.8816 +349331,54.548,92.549 +349332,55.435,91.2426 +349333,51.408,95.2019 +349334,52.306,93.8757 +349335,53.212,92.5755 +349336,54.126,91.3008 +349337,50.018,95.1616 +349338,50.942,93.8693 +349339,51.875,92.6023 +349340,52.816,91.3599 +349341,48.628,95.1202 +349342,49.579,93.8626 +349343,50.538,92.6293 +349344,51.504,91.42 +349345,47.239,95.0779 +349346,48.216,93.8555 +349347,49.201,92.6566 +349348,50.192,91.4811 +349349,45.851,95.0346 +349350,46.853,93.8481 +349351,47.863,92.6842 +349352,48.88,91.543 +349353,44.464,94.9904 +349354,45.491,93.8403 +349355,46.525,92.712 +349356,47.566,91.6058 +349357,43.078,94.9453 +349358,44.129,93.8321 +349359,45.187,92.7401 +349360,46.252,91.6694 +349361,41.692,94.8993 +349362,42.767,93.8236 +349363,43.849,92.7684 +349364,44.936,91.7339 +349365,40.308,94.8525 +349366,41.405,93.8148 +349367,42.51,92.7969 +349368,43.62,91.7992 +349369,38.924,94.8049 +349370,40.044,93.8057 +349371,41.171,92.8257 +349372,42.303,91.8652 +349373,37.542,94.7565 +349374,38.683,93.7962 +349375,39.831,92.8546 +349376,40.984,91.932 +349377,36.16,94.7073 +349378,37.322,93.7865 +349379,38.491,92.8837 +349380,39.665,91.9995 +349381,34.779,94.6574 +349382,35.962,93.7765 +349383,37.151,92.9131 +349384,38.345,92.0676 +349385,33.4,94.6068 +349386,34.602,93.7662 +349387,35.81,92.9426 +349388,37.024,92.1365 +349389,32.021,94.5555 +349390,33.242,93.7556 +349391,34.47,92.9722 +349392,35.702,92.2059 +349393,30.643,94.5036 +349394,31.883,93.7448 +349395,33.128,93.002 +349396,34.379,92.276 +349397,29.267,94.4511 +349398,30.524,93.7337 +349399,31.787,93.032 +349400,33.054,92.3466 +349401,27.891,94.398 +349402,29.165,93.7224 +349403,30.445,93.0621 +349404,31.729,92.4177 +349405,26.516,94.3444 +349406,27.806,93.7108 +349407,29.102,93.0923 +349408,30.403,92.4894 +349409,25.143,94.2903 +349410,26.448,93.6991 +349411,27.76,93.1226 +349412,29.075,92.5615 +349413,23.771,94.2358 +349414,25.091,93.6871 +349415,26.416,93.153 +349416,27.747,92.6341 +349417,22.399,94.1807 +349418,23.733,93.675 +349419,25.073,93.1836 +349420,26.417,92.7071 +349421,21.029,94.1253 +349422,22.376,93.6626 +349423,23.729,93.2142 +349424,25.086,92.7805 +349425,19.66,94.0695 +349426,21.02,93.6501 +349427,22.385,93.2448 +349428,23.754,92.8543 +349429,18.292,94.0134 +349430,19.663,93.6374 +349431,21.04,93.2756 +349432,22.421,92.9283 +349433,16.926,93.9569 +349434,18.307,93.6246 +349435,19.695,93.3063 +349436,21.087,93.0027 +349437,15.56,93.9002 +349438,16.952,93.6117 +349439,18.349,93.3372 +349440,19.752,93.0772 +349441,14.196,93.8432 +349442,15.596,93.5986 +349443,17.003,93.368 +349444,18.415,93.1521 +349445,12.832,93.786 +349446,14.241,93.5853 +349447,15.657,93.3988 +349448,17.078,93.2271 +349449,11.47,93.7287 +349450,12.887,93.572 +349451,14.31,93.4297 +349452,15.739,93.3022 +349453,10.109,93.6712 +349454,11.533,93.5586 +349455,12.963,93.4605 +349456,14.399,93.3775 +349457,8.7494,93.6136 +349458,10.179,93.5451 +349459,11.616,93.4914 +349460,13.058,93.4528 +349461,7.3908,93.5559 +349462,8.8258,93.5315 +349463,10.268,93.5222 +349464,11.715,93.5282 +349465,6.0334,93.4981 +349466,7.4728,93.5179 +349467,8.9193,93.5529 +349468,10.372,93.6037 +349469,4.6771,93.4404 +349470,6.1202,93.5042 +349471,7.5705,93.5836 +349472,9.0267,93.6791 +349473,3.3221,93.3827 +349474,4.7679,93.4905 +349475,6.2213,93.6143 +349476,7.6808,93.7544 +349477,1.9682,93.325 +349478,3.4161,93.4767 +349479,4.8717,93.6448 +349480,6.3336,93.8297 +349481,0.61553,93.2674 +349482,2.0646,93.4629 +349483,3.5216,93.6753 +349484,4.9852,93.9049 +349485,359.26,93.2099 +349486,0.71353,93.4492 +349487,2.1711,93.7057 +349488,3.6355,93.9799 +349489,357.91,93.1526 +349490,359.36,93.4354 +349491,0.82024,93.7359 +349492,2.2847,94.0547 +349493,356.56,93.0955 +349494,358.01,93.4216 +349495,359.47,93.7661 +349496,0.93269,94.1293 +349497,355.22,93.0386 +349498,356.66,93.4079 +349499,358.12,93.7961 +349500,359.58,94.2036 +349501,353.87,92.9819 +349502,355.31,93.3942 +349503,356.77,93.8259 +349504,358.23,94.2777 +349505,352.52,92.9255 +349506,353.96,93.3805 +349507,355.41,93.8556 +349508,356.87,94.3514 +349509,351.18,92.8694 +349510,352.62,93.3669 +349511,354.06,93.8852 +349512,355.51,94.4248 +349513,349.84,92.8137 +349514,351.27,93.3534 +349515,352.71,93.9145 +349516,354.15,94.4977 +349517,348.49,92.7584 +349518,349.92,93.34 +349519,351.35,93.9437 +349520,352.8,94.5703 +349521,347.15,92.7034 +349522,348.57,93.3266 +349523,350,93.9727 +349524,351.43,94.6424 +349525,345.81,92.6489 +349526,347.22,93.3134 +349527,348.64,94.0014 +349528,350.07,94.714 +349529,344.48,92.5948 +349530,345.88,93.3002 +349531,347.29,94.03 +349532,348.71,94.785 +349533,343.14,92.5413 +349534,344.53,93.2872 +349535,345.93,94.0583 +349536,347.35,94.8555 +349537,341.8,92.4883 +349538,343.18,93.2743 +349539,344.58,94.0863 +349540,345.98,94.9254 +349541,340.47,92.4358 +349542,341.84,93.2616 +349543,343.22,94.1141 +349544,344.61,94.9947 +349545,339.13,92.3839 +349546,340.49,93.249 +349547,341.86,94.1416 +349548,343.25,95.0633 +349549,337.8,92.3327 +349550,339.15,93.2366 +349551,340.51,94.1689 +349552,341.88,95.1312 +349553,336.47,92.2821 +349554,337.8,93.2243 +349555,339.15,94.1959 +349556,340.51,95.1984 +349557,335.14,92.2321 +349558,336.46,93.2122 +349559,337.79,94.2226 +349560,339.14,95.2648 +349561,333.81,92.1829 +349562,335.11,93.2004 +349563,336.43,94.2489 +349564,337.77,95.3304 +349565,332.48,92.1343 +349566,333.77,93.1887 +349567,335.08,94.275 +349568,336.39,95.3952 +349569,331.15,92.0866 +349570,332.43,93.1772 +349571,333.72,94.3007 +349572,335.02,95.4592 +349573,329.82,92.0396 +349574,331.08,93.166 +349575,332.36,94.3261 +349576,333.64,95.5223 +349577,328.5,91.9934 +349578,329.74,93.155 +349579,331,94.3511 +349580,332.27,95.5844 +349581,327.17,91.9481 +349582,328.4,93.1442 +349583,329.64,94.3758 +349584,330.89,95.6456 +349585,325.85,91.9036 +349586,327.06,93.1337 +349587,328.28,94.4001 +349588,329.51,95.7059 +349589,324.53,91.86 +349590,325.71,93.1234 +349591,326.92,94.4241 +349592,328.13,95.7651 +349593,323.2,91.8173 +349594,324.37,93.1134 +349595,325.56,94.4476 +349596,326.75,95.8233 +349597,321.88,91.7755 +349598,323.03,93.1036 +349599,324.19,94.4708 +349600,325.37,95.8805 +349601,320.56,91.7347 +349602,321.69,93.0942 +349603,322.83,94.4936 +349604,323.99,95.9365 +349605,319.24,91.6949 +349606,320.35,93.085 +349607,321.47,94.5159 +349608,322.6,95.9915 +349609,317.93,91.656 +349610,319.01,93.0761 +349611,320.11,94.5379 +349612,321.22,96.0453 +349613,316.61,91.6182 +349614,317.67,93.0676 +349615,318.75,94.5594 +349616,319.84,96.0979 +349617,315.29,91.5815 +349618,316.33,93.0593 +349619,317.38,94.5805 +349620,318.45,96.1494 +349621,313.98,91.5458 +349622,314.99,93.0514 +349623,316.02,94.6011 +349624,317.06,96.1996 +349625,312.66,91.5112 +349626,313.65,93.0438 +349627,314.66,94.6213 +349628,315.67,96.2486 +349629,311.35,91.4777 +349630,312.31,93.0365 +349631,313.29,94.641 +349632,314.29,96.2963 +349633,310.03,91.4453 +349634,310.97,93.0296 +349635,311.93,94.6603 +349636,312.9,96.3428 +349637,308.72,91.414 +349638,309.64,93.023 +349639,310.56,94.6791 +349640,311.51,96.3879 +349641,307.41,91.384 +349642,308.3,93.0167 +349643,309.2,94.6974 +349644,310.11,96.4317 +349645,306.1,91.3551 +349646,306.96,93.0108 +349647,307.83,94.7152 +349648,308.72,96.4741 +349649,304.79,91.3274 +349650,305.62,93.0053 +349651,306.47,94.7326 +349652,307.33,96.5152 +349653,303.48,91.3009 +349654,304.28,93.0002 +349655,305.1,94.7494 +349656,305.94,96.5548 +349657,302.17,91.2756 +349658,302.95,92.9954 +349659,303.74,94.7658 +349660,304.54,96.5931 +349661,300.86,91.2516 +349662,301.61,92.991 +349663,302.37,94.7816 +349664,303.15,96.6299 +349665,299.55,91.2289 +349666,300.27,92.987 +349667,301.01,94.7969 +349668,301.75,96.6653 +349669,298.25,91.2074 +349670,298.94,92.9834 +349671,299.64,94.8117 +349672,300.36,96.6992 +349673,296.94,91.1872 +349674,297.6,92.9802 +349675,298.27,94.826 +349676,298.96,96.7316 +349677,295.63,91.1683 +349678,296.26,92.9774 +349679,296.91,94.8397 +349680,297.56,96.7626 +349681,294.33,91.1507 +349682,294.93,92.975 +349683,295.54,94.853 +349684,296.17,96.792 +349685,293.02,91.1344 +349686,293.59,92.973 +349687,294.17,94.8656 +349688,294.77,96.8199 +349689,291.72,91.1195 +349690,292.25,92.9714 +349691,292.8,94.8778 +349692,293.37,96.8463 +349693,290.41,91.1059 +349694,290.92,92.9702 +349695,291.44,94.8894 +349696,291.97,96.8711 +349697,289.11,91.0936 +349698,289.58,92.9694 +349699,290.07,94.9004 +349700,290.57,96.8943 +349701,287.8,91.0827 +349702,288.25,92.9691 +349703,288.7,94.9109 +349704,289.17,96.916 +349705,286.5,91.0732 +349706,286.91,92.9692 +349707,287.33,94.9208 +349708,287.77,96.9361 +349709,285.2,91.065 +349710,285.58,92.9697 +349711,285.97,94.9302 +349712,286.37,96.9546 +349713,283.89,91.0583 +349714,284.24,92.9706 +349715,284.6,94.939 +349716,284.97,96.9715 +349717,282.59,91.0529 +349718,282.91,92.972 +349719,283.23,94.9473 +349720,283.57,96.9869 +349721,281.29,91.0489 +349722,281.57,92.9738 +349723,281.86,94.955 +349724,282.16,97.0006 +349725,279.99,91.0463 +349726,280.24,92.976 +349727,280.49,94.9621 +349728,280.76,97.0127 +349729,278.69,91.0451 +349730,278.9,92.9787 +349731,279.12,94.9686 +349732,279.36,97.0231 +349733,277.38,91.0453 +349734,277.57,92.9818 +349735,277.76,94.9746 +349736,277.96,97.032 +349737,276.08,91.047 +349738,276.23,92.9853 +349739,276.39,94.98 +349740,276.56,97.0392 +349741,274.78,91.05 +349742,274.9,92.9893 +349743,275.02,94.9849 +349744,275.15,97.0448 +349745,273.48,91.0544 +349746,273.56,92.9937 +349747,273.65,94.9892 +349748,273.75,97.0488 +349749,272.18,91.0603 +349750,272.23,92.9986 +349751,272.28,94.9929 +349752,272.35,97.0511 +349753,270.88,91.0675 +349754,270.89,93.0039 +349755,270.91,94.996 +349756,270.94,97.0519 +349757,269.57,91.0762 +349758,269.56,93.0096 +349759,269.54,94.9986 +349760,269.54,97.051 +349761,268.27,91.0862 +349762,268.22,93.0158 +349763,268.18,95.0006 +349764,268.14,97.0485 +349765,266.97,91.0977 +349766,266.89,93.0224 +349767,266.81,95.002 +349768,266.74,97.0443 +349769,265.67,91.1106 +349770,265.55,93.0294 +349771,265.44,95.0029 +349772,265.33,97.0386 +349773,264.37,91.1249 +349774,264.22,93.0369 +349775,264.07,95.0032 +349776,263.93,97.0312 +349777,263.07,91.1405 +349778,262.88,93.0448 +349779,262.7,95.0029 +349780,262.53,97.0223 +349781,261.76,91.1576 +349782,261.54,93.0531 +349783,261.33,95.0021 +349784,261.13,97.0117 +349785,260.46,91.176 +349786,260.21,93.0619 +349787,259.96,95.0007 +349788,259.72,96.9996 +349789,259.16,91.1958 +349790,258.87,93.071 +349791,258.6,94.9988 +349792,258.32,96.9859 +349793,257.86,91.217 +349794,257.54,93.0806 +349795,257.23,94.9963 +349796,256.92,96.9706 +349797,256.55,91.2395 +349798,256.2,93.0907 +349799,255.86,94.9932 +349800,255.52,96.9538 +349801,255.25,91.2634 +349802,254.87,93.1011 +349803,254.49,94.9896 +349804,254.12,96.9354 +349805,253.95,91.2886 +349806,253.53,93.1119 +349807,253.12,94.9855 +349808,252.72,96.9155 +349809,252.64,91.3151 +349810,252.2,93.1232 +349811,251.75,94.9808 +349812,251.32,96.8941 +349813,251.34,91.343 +349814,250.86,93.1349 +349815,250.39,94.9756 +349816,249.92,96.8712 +349817,250.03,91.3721 +349818,249.52,93.1469 +349819,249.02,94.9699 +349820,248.52,96.8467 +349821,248.73,91.4026 +349822,248.19,93.1594 +349823,247.65,94.9636 +349824,247.12,96.8208 +349825,247.42,91.4344 +349826,246.85,93.1722 +349827,246.28,94.9569 +349828,245.72,96.7935 +349829,246.11,91.4674 +349830,245.51,93.1855 +349831,244.92,94.9496 +349832,244.32,96.7647 +349833,244.81,91.5017 +349834,244.18,93.1991 +349835,243.55,94.9418 +349836,242.92,96.7345 +349837,243.5,91.5372 +349838,242.84,93.2131 +349839,242.18,94.9334 +349840,241.53,96.7028 +349841,242.19,91.5739 +349842,241.5,93.2275 +349843,240.82,94.9246 +349844,240.13,96.6698 +349845,240.88,91.6119 +349846,240.17,93.2422 +349847,239.45,94.9153 +349848,238.73,96.6354 +349849,239.57,91.651 +349850,238.83,93.2573 +349851,238.08,94.9055 +349852,237.34,96.5997 +349853,238.26,91.6913 +349854,237.49,93.2727 +349855,236.72,94.8952 +349856,235.94,96.5626 +349857,236.95,91.7328 +349858,236.15,93.2885 +349859,235.35,94.8845 +349860,234.55,96.5243 +349861,235.64,91.7754 +349862,234.81,93.3047 +349863,233.98,94.8733 +349864,233.16,96.4846 +349865,234.33,91.8192 +349866,233.47,93.3211 +349867,232.62,94.8616 +349868,231.76,96.4437 +349869,233.02,91.864 +349870,232.14,93.3379 +349871,231.25,94.8495 +349872,230.37,96.4016 +349873,231.71,91.91 +349874,230.8,93.3551 +349875,229.89,94.8369 +349876,228.98,96.3582 +349877,230.39,91.9569 +349878,229.46,93.3725 +349879,228.52,94.8239 +349880,227.59,96.3137 +349881,229.08,92.005 +349882,228.12,93.3902 +349883,227.16,94.8105 +349884,226.2,96.268 +349885,227.76,92.054 +349886,226.78,93.4083 +349887,225.79,94.7966 +349888,224.81,96.2211 +349889,226.45,92.104 +349890,225.44,93.4266 +349891,224.43,94.7823 +349892,223.42,96.1732 +349893,225.13,92.155 +349894,224.1,93.4452 +349895,223.07,94.7676 +349896,222.04,96.1241 +349897,223.81,92.207 +349898,222.76,93.4641 +349899,221.7,94.7526 +349900,220.65,96.0741 +349901,222.49,92.2599 +349902,221.42,93.4832 +349903,220.34,94.7371 +349904,219.26,96.023 +349905,221.17,92.3137 +349906,220.08,93.5026 +349907,218.98,94.7213 +349908,217.88,95.9709 +349909,219.85,92.3683 +349910,218.73,93.5223 +349911,217.62,94.7051 +349912,216.5,95.9178 +349913,218.53,92.4238 +349914,217.39,93.5422 +349915,216.25,94.6885 +349916,215.11,95.8638 +349917,217.21,92.4801 +349918,216.05,93.5623 +349919,214.89,94.6716 +349920,213.73,95.8088 +349921,215.88,92.5373 +349922,214.71,93.5826 +349923,213.53,94.6543 +349924,212.35,95.753 +349925,214.56,92.5952 +349926,213.36,93.6032 +349927,212.17,94.6367 +349928,210.97,95.6964 +349929,213.23,92.6538 +349930,212.02,93.624 +349931,210.81,94.6188 +349932,209.59,95.6389 +349933,211.91,92.7132 +349934,210.68,93.6449 +349935,209.45,94.6006 +349936,208.21,95.5806 +349937,210.58,92.7732 +349938,209.33,93.666 +349939,208.09,94.582 +349940,206.84,95.5216 +349941,209.25,92.8339 +349942,207.99,93.6873 +349943,206.73,94.5632 +349944,205.46,95.4619 +349945,207.92,92.8952 +349946,206.64,93.7088 +349947,205.37,94.5441 +349948,204.09,95.4014 +349949,206.59,92.9572 +349950,205.3,93.7304 +349951,204.01,94.5248 +349952,202.71,95.3403 +349953,205.26,93.0197 +349954,203.95,93.7522 +349955,202.65,94.5051 +349956,201.34,95.2786 +349957,203.93,93.0827 +349958,202.61,93.7741 +349959,201.29,94.4853 +349960,199.97,95.2163 +349961,202.59,93.1463 +349962,201.26,93.7961 +349963,199.93,94.4651 +349964,198.6,95.1534 +349965,201.26,93.2103 +349966,199.92,93.8182 +349967,198.57,94.4448 +349968,197.23,95.09 +349969,199.92,93.2748 +349970,198.57,93.8405 +349971,197.22,94.4242 +349972,195.86,95.0261 +349973,198.58,93.3397 +349974,197.22,93.8628 +349975,195.86,94.4035 +349976,194.5,94.9617 +349977,197.24,93.405 +349978,195.87,93.8852 +349979,194.5,94.3825 +349980,193.13,94.8969 +349981,195.91,93.4707 +349982,194.53,93.9077 +349983,193.15,94.3614 +349984,191.77,94.8317 +349985,194.56,93.5366 +349986,193.18,93.9302 +349987,191.79,94.3401 +349988,190.4,94.7662 +349989,193.22,93.6029 +349990,191.83,93.9528 +349991,190.44,94.3186 +349992,189.04,94.7003 +349993,191.88,93.6694 +349994,190.48,93.9754 +349995,189.08,94.297 +349996,187.68,94.6341 +349997,190.54,93.7362 +349998,189.13,93.998 +349999,187.73,94.2752 +350000,186.32,94.5677 +350001,189.19,93.8031 +350002,187.78,94.0206 +350003,186.37,94.2533 +350004,184.96,94.501 +350005,187.84,93.8702 +350006,186.43,94.0433 +350007,185.02,94.2313 +350008,183.6,94.4342 +350009,186.5,93.9374 +350010,185.08,94.0659 +350011,183.66,94.2092 +350012,182.25,94.3671 +350013,185.15,94.0048 +350014,183.73,94.0885 +350015,182.31,94.187 +350016,180.89,94.3 +350017,183.8,94.0721 +350018,182.38,94.1111 +350019,180.96,94.1647 +350020,179.54,94.2328 +350021,182.45,94.1395 +350022,181.03,94.1337 +350023,179.61,94.1423 +350024,178.18,94.1655 +350025,181.09,94.2069 +350026,179.67,94.1562 +350027,178.25,94.1199 +350028,176.83,94.0982 +350029,179.74,94.2743 +350030,178.32,94.1786 +350031,176.9,94.0974 +350032,175.48,94.0309 +350033,178.39,94.3416 +350034,176.97,94.2009 +350035,175.55,94.0749 +350036,174.13,93.9637 +350037,177.03,94.4087 +350038,175.62,94.2232 +350039,174.2,94.0524 +350040,172.79,93.8965 +350041,175.67,94.4758 +350042,174.26,94.2453 +350043,172.85,94.0299 +350044,171.44,93.8295 +350045,174.32,94.5426 +350046,172.91,94.2674 +350047,171.5,94.0073 +350048,170.09,93.7626 +350049,172.96,94.6093 +350050,171.55,94.2893 +350051,170.15,93.9848 +350052,168.75,93.6958 +350053,171.6,94.6756 +350054,170.2,94.3111 +350055,168.8,93.9623 +350056,167.4,93.6293 +350057,170.23,94.7418 +350058,168.84,94.3327 +350059,167.45,93.9398 +350060,166.06,93.5631 +350061,168.87,94.8076 +350062,167.49,94.3542 +350063,166.1,93.9173 +350064,164.72,93.4971 +350065,167.51,94.873 +350066,166.13,94.3755 +350067,164.75,93.895 +350068,163.38,93.4314 +350069,166.14,94.9381 +350070,164.77,94.3967 +350071,163.41,93.8726 +350072,162.04,93.3661 +350073,164.78,95.0027 +350074,163.42,94.4176 +350075,162.06,93.8504 +350076,160.7,93.3011 +350077,163.41,95.0669 +350078,162.06,94.4383 +350079,160.71,93.8282 +350080,159.37,93.2366 +350081,162.04,95.1306 +350082,160.7,94.4589 +350083,159.37,93.8061 +350084,158.03,93.1724 +350085,160.67,95.1938 +350086,159.34,94.4792 +350087,158.02,93.7842 +350088,156.7,93.1088 +350089,159.3,95.2565 +350090,157.99,94.4993 +350091,156.67,93.7623 +350092,155.36,93.0457 +350093,157.93,95.3186 +350094,156.63,94.5191 +350095,155.33,93.7406 +350096,154.03,92.983 +350097,156.55,95.38 +350098,155.27,94.5387 +350099,153.98,93.719 +350100,152.7,92.921 +350101,155.18,95.4408 +350102,153.91,94.558 +350103,152.64,93.6976 +350104,151.37,92.8595 +350105,153.8,95.501 +350106,152.55,94.577 +350107,151.29,93.6764 +350108,150.04,92.7987 +350109,152.43,95.5604 +350110,151.19,94.5957 +350111,149.95,93.6553 +350112,148.71,92.7385 +350113,151.05,95.619 +350114,149.83,94.6142 +350115,148.61,93.6343 +350116,147.39,92.6789 +350117,149.67,95.6769 +350118,148.47,94.6323 +350119,147.26,93.6136 +350120,146.06,92.6201 +350121,148.29,95.734 +350122,147.11,94.6501 +350123,145.92,93.5931 +350124,144.74,92.562 +350125,146.91,95.7903 +350126,145.75,94.6676 +350127,144.58,93.5727 +350128,143.41,92.5047 +350129,145.53,95.8457 +350130,144.38,94.6848 +350131,143.24,93.5526 +350132,142.09,92.4482 +350133,144.15,95.9001 +350134,143.02,94.7016 +350135,141.89,93.5328 +350136,140.77,92.3924 +350137,142.77,95.9537 +350138,141.66,94.7181 +350139,140.55,93.5131 +350140,139.45,92.3375 +350141,141.38,96.0063 +350142,140.3,94.7342 +350143,139.21,93.4937 +350144,138.13,92.2835 +350145,140,96.0579 +350146,138.93,94.7499 +350147,137.87,93.4746 +350148,136.81,92.2304 +350149,138.61,96.1085 +350150,137.57,94.7652 +350151,136.53,93.4557 +350152,135.49,92.1782 +350153,137.23,96.158 +350154,136.21,94.7801 +350155,135.19,93.4371 +350156,134.17,92.1269 +350157,135.84,96.2065 +350158,134.84,94.7947 +350159,133.85,93.4187 +350160,132.85,92.0766 +350161,134.45,96.2539 +350162,133.48,94.8088 +350163,132.51,93.4007 +350164,131.54,92.0273 +350165,133.06,96.3002 +350166,132.11,94.8225 +350167,131.17,93.3829 +350168,130.22,91.9789 +350169,131.67,96.3453 +350170,130.75,94.8358 +350171,129.83,93.3655 +350172,128.91,91.9316 +350173,130.28,96.3892 +350174,129.38,94.8487 +350175,128.49,93.3484 +350176,127.59,91.8854 +350177,128.89,96.4319 +350178,128.02,94.8611 +350179,127.15,93.3315 +350180,126.28,91.8402 +350181,127.5,96.4734 +350182,126.65,94.873 +350183,125.81,93.315 +350184,124.97,91.7962 +350185,126.1,96.5137 +350186,125.29,94.8845 +350187,124.47,93.2989 +350188,123.66,91.7532 +350189,124.71,96.5526 +350190,123.92,94.8956 +350191,123.14,93.283 +350192,122.35,91.7114 +350193,123.31,96.5903 +350194,122.56,94.9061 +350195,121.8,93.2676 +350196,121.04,91.6707 +350197,121.92,96.6267 +350198,121.19,94.9162 +350199,120.46,93.2524 +350200,119.73,91.6312 +350201,120.52,96.6617 +350202,119.82,94.9258 +350203,119.12,93.2377 +350204,118.42,91.5929 +350205,119.13,96.6954 +350206,118.46,94.9349 +350207,117.78,93.2233 +350208,117.11,91.5558 +350209,117.73,96.7277 +350210,117.09,94.9436 +350211,116.45,93.2092 +350212,115.8,91.5199 +350213,116.33,96.7585 +350214,115.72,94.9517 +350215,115.11,93.1955 +350216,114.5,91.4852 +350217,114.93,96.788 +350218,114.36,94.9593 +350219,113.77,93.1823 +350220,113.19,91.4518 +350221,113.54,96.816 +350222,112.99,94.9664 +350223,112.44,93.1694 +350224,111.88,91.4196 +350225,112.14,96.8426 +350226,111.62,94.9729 +350227,111.1,93.1569 +350228,110.58,91.3888 +350229,110.74,96.8677 +350230,110.25,94.979 +350231,109.77,93.1447 +350232,109.27,91.3592 +350233,109.34,96.8913 +350234,108.89,94.9845 +350235,108.43,93.133 +350236,107.97,91.3309 +350237,107.94,96.9135 +350238,107.52,94.9895 +350239,107.09,93.1217 +350240,106.66,91.304 +350241,106.54,96.9341 +350242,106.15,94.9939 +350243,105.76,93.1108 +350244,105.36,91.2783 +350245,105.14,96.9531 +350246,104.78,94.9978 +350247,104.42,93.1003 +350248,104.06,91.254 +350249,103.73,96.9707 +350250,103.41,95.0012 +350251,103.09,93.0903 +350252,102.75,91.2311 +350253,102.33,96.9867 +350254,102.04,95.004 +350255,101.75,93.0806 +350256,101.45,91.2095 +350257,100.93,97.0011 +350258,100.68,95.0063 +350259,100.41,93.0714 +350260,100.15,91.1893 +350261,99.529,97.014 +350262,99.308,95.008 +350263,99.08,93.0625 +350264,98.846,91.1704 +350265,98.127,97.0252 +350266,97.939,95.0091 +350267,97.744,93.0542 +350268,97.544,91.1529 +350269,96.725,97.0349 +350270,96.571,95.0097 +350271,96.409,93.0462 +350272,96.242,91.1368 +350273,95.322,97.043 +350274,95.202,95.0098 +350275,95.074,93.0387 +350276,94.94,91.1221 +350277,93.92,97.0495 +350278,93.833,95.0092 +350279,93.739,93.0316 +350280,93.638,91.1088 +350281,92.517,97.0543 +350282,92.465,95.0081 +350283,92.404,93.0249 +350284,92.336,91.0969 +350285,91.114,97.0576 +350286,91.096,95.0064 +350287,91.069,93.0187 +350288,91.035,91.0864 +350289,89.711,97.0592 +350290,89.727,95.0042 +350291,89.734,93.0129 +350292,89.733,91.0773 +350293,88.309,97.0592 +350294,88.359,95.0014 +350295,88.399,93.0075 +350296,88.432,91.0696 +350297,86.906,97.0576 +350298,86.99,94.998 +350299,87.064,93.0026 +350300,87.13,91.0633 +350301,85.503,97.0544 +350302,85.621,94.9941 +350303,85.729,92.9981 +350304,85.829,91.0584 +350305,84.101,97.0495 +350306,84.253,94.9896 +350307,84.394,92.9941 +350308,84.527,91.0549 +350309,82.698,97.043 +350310,82.884,94.9845 +350311,83.059,92.9905 +350312,83.225,91.0529 +350313,81.296,97.0349 +350314,81.516,94.9788 +350315,81.724,92.9873 +350316,81.924,91.0522 +350317,79.894,97.0252 +350318,80.147,94.9726 +350319,80.389,92.9846 +350320,80.622,91.053 +350321,78.492,97.0138 +350322,78.779,94.9658 +350323,79.054,92.9823 +350324,79.32,91.0551 +350325,77.09,97.0008 +350326,77.411,94.9584 +350327,77.719,92.9804 +350328,78.017,91.0587 +350329,75.689,96.9862 +350330,76.043,94.9505 +350331,76.384,92.979 +350332,76.715,91.0636 +350333,74.287,96.97 +350334,74.675,94.942 +350335,75.049,92.978 +350336,75.412,91.07 +350337,72.887,96.9523 +350338,73.307,94.933 +350339,73.713,92.9774 +350340,74.109,91.0777 +350341,71.486,96.9329 +350342,71.939,94.9234 +350343,72.378,92.9773 +350344,72.806,91.0868 +350345,70.086,96.9119 +350346,70.571,94.9132 +350347,71.042,92.9776 +350348,71.502,91.0972 +350349,68.686,96.8894 +350350,69.203,94.9025 +350351,69.707,92.9783 +350352,70.198,91.1091 +350353,67.287,96.8653 +350354,67.836,94.8912 +350355,68.371,92.9794 +350356,68.894,91.1223 +350357,65.888,96.8396 +350358,66.469,94.8794 +350359,67.035,92.981 +350360,67.589,91.1368 +350361,64.49,96.8124 +350362,65.102,94.8671 +350363,65.699,92.9829 +350364,66.284,91.1527 +350365,63.092,96.7837 +350366,63.735,94.8542 +350367,64.363,92.9853 +350368,64.979,91.1699 +350369,61.695,96.7534 +350370,62.368,94.8407 +350371,63.026,92.9881 +350372,63.672,91.1884 +350373,60.298,96.7217 +350374,61.001,94.8268 +350375,61.69,92.9912 +350376,62.366,91.2082 +350377,58.902,96.6885 +350378,59.635,94.8123 +350379,60.353,92.9948 +350380,61.059,91.2293 +350381,57.506,96.6538 +350382,58.269,94.7973 +350383,59.016,92.9988 +350384,59.751,91.2517 +350385,56.111,96.6176 +350386,56.903,94.7818 +350387,57.679,93.0031 +350388,58.443,91.2753 +350389,54.717,96.58 +350390,55.537,94.7657 +350391,56.342,93.0079 +350392,57.134,91.3002 +350393,53.323,96.541 +350394,54.172,94.7492 +350395,55.004,93.013 +350396,55.825,91.3263 +350397,51.93,96.5006 +350398,52.806,94.7321 +350399,53.667,93.0185 +350400,54.514,91.3537 +350401,50.538,96.4588 +350402,51.441,94.7146 +350403,52.329,93.0243 +350404,53.204,91.3822 +350405,49.147,96.4156 +350406,50.077,94.6966 +350407,50.991,93.0305 +350408,51.892,91.412 +350409,47.756,96.3711 +350410,48.712,94.6781 +350411,49.653,93.0371 +350412,50.58,91.4429 +350413,46.366,96.3253 +350414,47.348,94.6591 +350415,48.314,93.044 +350416,49.267,91.4749 +350417,44.977,96.2781 +350418,45.984,94.6397 +350419,46.975,93.0513 +350420,47.953,91.5081 +350421,43.589,96.2298 +350422,44.62,94.6198 +350423,45.636,93.0589 +350424,46.639,91.5424 +350425,42.202,96.1801 +350426,43.257,94.5994 +350427,44.297,93.0668 +350428,45.324,91.5778 +350429,40.815,96.1292 +350430,41.894,94.5786 +350431,42.957,93.0751 +350432,44.008,91.6143 +350433,39.43,96.0772 +350434,40.531,94.5574 +350435,41.617,93.0836 +350436,42.691,91.6518 +350437,38.045,96.0239 +350438,39.169,94.5357 +350439,40.277,93.0925 +350440,41.373,91.6904 +350441,36.661,95.9695 +350442,37.806,94.5136 +350443,38.937,93.1017 +350444,40.055,91.73 +350445,35.279,95.914 +350446,36.445,94.4911 +350447,37.596,93.1112 +350448,38.735,91.7705 +350449,33.897,95.8574 +350450,35.083,94.4682 +350451,36.255,93.1209 +350452,37.415,91.812 +350453,32.516,95.7997 +350454,33.722,94.4449 +350455,34.914,93.1309 +350456,36.093,91.8545 +350457,31.136,95.7409 +350458,32.361,94.4213 +350459,33.572,93.1412 +350460,34.771,91.8979 +350461,29.757,95.6812 +350462,31.001,94.3972 +350463,32.23,93.1518 +350464,33.448,91.9422 +350465,28.38,95.6204 +350466,29.641,94.3728 +350467,30.888,93.1626 +350468,32.124,91.9873 +350469,27.003,95.5587 +350470,28.281,94.348 +350471,29.546,93.1736 +350472,30.798,92.0333 +350473,25.627,95.4961 +350474,26.921,94.3228 +350475,28.203,93.1849 +350476,29.472,92.0801 +350477,24.253,95.4326 +350478,25.562,94.2974 +350479,26.86,93.1964 +350480,28.145,92.1277 +350481,22.879,95.3682 +350482,24.204,94.2715 +350483,25.516,93.2081 +350484,26.817,92.1761 +350485,21.507,95.303 +350486,22.846,94.2454 +350487,24.172,93.2201 +350488,25.487,92.2252 +350489,20.135,95.237 +350490,21.488,94.219 +350491,22.828,93.2322 +350492,24.157,92.275 +350493,18.765,95.1702 +350494,20.13,94.1922 +350495,21.484,93.2445 +350496,22.826,92.3255 +350497,17.396,95.1027 +350498,18.773,94.1652 +350499,20.139,93.257 +350500,21.493,92.3766 +350501,16.028,95.0344 +350502,17.416,94.1379 +350503,18.793,93.2696 +350504,20.16,92.4284 +350505,14.661,94.9655 +350506,16.06,94.1103 +350507,17.448,93.2824 +350508,18.825,92.4808 +350509,13.296,94.896 +350510,14.704,94.0825 +350511,16.102,93.2954 +350512,17.489,92.5337 +350513,11.931,94.8258 +350514,13.348,94.0544 +350515,14.755,93.3085 +350516,16.152,92.5872 +350517,10.568,94.7551 +350518,11.993,94.026 +350519,13.409,93.3217 +350520,14.814,92.6412 +350521,9.2059,94.6838 +350522,10.638,93.9975 +350523,12.062,93.3351 +350524,13.475,92.6957 +350525,7.845,94.612 +350526,9.2841,93.9687 +350527,10.714,93.3485 +350528,12.134,92.7506 +350529,6.4853,94.5398 +350530,7.9302,93.9397 +350531,9.3663,93.362 +350532,10.793,92.806 +350533,5.1267,94.4671 +350534,6.5767,93.9106 +350535,8.0181,93.3757 +350536,9.4503,92.8617 +350537,3.7694,94.394 +350538,5.2236,93.8812 +350539,6.6696,93.3894 +350540,8.1064,92.9178 +350541,2.4133,94.3205 +350542,3.8709,93.8517 +350543,5.3206,93.4031 +350544,6.7614,92.9742 +350545,1.0583,94.2467 +350546,2.5186,93.822 +350547,3.9713,93.4169 +350548,5.4152,93.0309 +350549,359.7,94.1725 +350550,1.1668,93.7922 +350551,2.6216,93.4308 +350552,4.0679,93.0879 +350553,358.35,94.0981 +350554,359.82,93.7622 +350555,1.2715,93.4447 +350556,2.7194,93.1451 +350557,357,94.0235 +350558,358.46,93.7321 +350559,359.92,93.4586 +350560,1.3696,93.2025 +350561,355.65,93.9487 +350562,357.11,93.7019 +350563,358.57,93.4725 +350564,0.018741,93.26 +350565,354.3,93.8737 +350566,355.76,93.6716 +350567,357.22,93.4864 +350568,358.67,93.3177 +350569,352.95,93.7986 +350570,354.41,93.6412 +350571,355.87,93.5003 +350572,357.31,93.3755 +350573,351.61,93.7233 +350574,353.06,93.6107 +350575,354.52,93.5142 +350576,355.96,93.4334 +350577,350.26,93.648 +350578,351.72,93.5801 +350579,353.16,93.528 +350580,354.6,93.4913 +350581,348.92,93.5727 +350582,350.37,93.5495 +350583,351.81,93.5418 +350584,353.25,93.5492 +350585,347.58,93.4974 +350586,349.02,93.5189 +350587,350.46,93.5556 +350588,351.89,93.6071 +350589,346.23,93.4221 +350590,347.67,93.4882 +350591,349.1,93.5692 +350592,350.53,93.6649 +350593,344.89,93.3469 +350594,346.32,93.4574 +350595,347.75,93.5828 +350596,349.17,93.7226 +350597,343.55,93.2718 +350598,344.98,93.4267 +350599,346.4,93.5963 +350600,347.81,93.7802 +350601,342.22,93.1969 +350602,343.63,93.396 +350603,345.04,93.6097 +350604,346.44,93.8376 +350605,340.88,93.1221 +350606,342.28,93.3652 +350607,343.69,93.623 +350608,345.08,93.8948 +350609,339.54,93.0475 +350610,340.94,93.3345 +350611,342.33,93.6361 +350612,343.72,93.9518 +350613,338.21,92.9732 +350614,339.59,93.3039 +350615,340.97,93.6492 +350616,342.35,94.0085 +350617,336.87,92.8992 +350618,338.25,93.2732 +350619,339.62,93.662 +350620,340.98,94.0649 +350621,335.54,92.8254 +350622,336.9,93.2427 +350623,338.26,93.6748 +350624,339.61,94.121 +350625,334.21,92.752 +350626,335.56,93.2122 +350627,336.91,93.6873 +350628,338.24,94.1767 +350629,332.88,92.6789 +350630,334.22,93.1817 +350631,335.55,93.6997 +350632,336.87,94.2321 +350633,331.55,92.6063 +350634,332.87,93.1514 +350635,334.19,93.7118 +350636,335.5,94.287 +350637,330.22,92.5341 +350638,331.53,93.1212 +350639,332.83,93.7238 +350640,334.13,94.3415 +350641,328.9,92.4624 +350642,330.19,93.091 +350643,331.47,93.7356 +350644,332.76,94.3954 +350645,327.57,92.3911 +350646,328.85,93.061 +350647,330.12,93.7471 +350648,331.38,94.4489 +350649,326.25,92.3204 +350650,327.5,93.0311 +350651,328.76,93.7584 +350652,330,94.5017 +350653,324.92,92.2502 +350654,326.16,93.0014 +350655,327.4,93.7695 +350656,328.63,94.554 +350657,323.6,92.1806 +350658,324.82,92.9718 +350659,326.04,93.7803 +350660,327.25,94.6057 +350661,322.28,92.1117 +350662,323.48,92.9424 +350663,324.68,93.7909 +350664,325.87,94.6567 +350665,320.96,92.0434 +350666,322.14,92.9131 +350667,323.32,93.8012 +350668,324.49,94.7071 +350669,319.64,91.9757 +350670,320.8,92.884 +350671,321.96,93.8112 +350672,323.11,94.7567 +350673,318.32,91.9088 +350674,319.46,92.8551 +350675,320.6,93.8209 +350676,321.73,94.8056 +350677,317,91.8426 +350678,318.12,92.8264 +350679,319.24,93.8303 +350680,320.34,94.8537 +350681,315.69,91.7771 +350682,316.78,92.798 +350683,317.87,93.8393 +350684,318.96,94.901 +350685,314.37,91.7125 +350686,315.44,92.7697 +350687,316.51,93.8481 +350688,317.57,94.9475 +350689,313.06,91.6486 +350690,314.11,92.7417 +350691,315.15,93.8565 +350692,316.19,94.9931 +350693,311.74,91.5856 +350694,312.77,92.7139 +350695,313.79,93.8646 +350696,314.8,95.0378 +350697,310.43,91.5235 +350698,311.43,92.6863 +350699,312.43,93.8724 +350700,313.41,95.0817 +350701,309.12,91.4622 +350702,310.09,92.659 +350703,311.06,93.8797 +350704,312.03,95.1245 +350705,307.8,91.4018 +350706,308.76,92.632 +350707,309.7,93.8867 +350708,310.64,95.1664 +350709,306.49,91.3424 +350710,307.42,92.6053 +350711,308.34,93.8934 +350712,309.25,95.2073 +350713,305.18,91.284 +350714,306.08,92.5788 +350715,306.97,93.8996 +350716,307.86,95.2471 +350717,303.88,91.2265 +350718,304.75,92.5526 +350719,305.61,93.9055 +350720,306.46,95.2859 +350721,302.57,91.1701 +350722,303.41,92.5267 +350723,304.25,93.9109 +350724,305.07,95.3236 +350725,301.26,91.1146 +350726,302.08,92.5011 +350727,302.88,93.916 +350728,303.68,95.3602 +350729,299.95,91.0602 +350730,300.74,92.4759 +350731,301.52,93.9206 +350732,302.29,95.3957 +350733,298.65,91.0069 +350734,299.41,92.4509 +350735,300.15,93.9248 +350736,300.89,95.43 +350737,297.34,90.9547 +350738,298.07,92.4263 +350739,298.79,93.9286 +350740,299.5,95.4632 +350741,296.04,90.90358 +350742,296.74,92.402 +350743,297.42,93.9319 +350744,298.1,95.4951 +350745,294.73,90.8536 +350746,295.4,92.378 +350747,296.06,93.9348 +350748,296.7,95.5258 +350749,293.43,90.80477 +350750,294.07,92.3544 +350751,294.69,93.9372 +350752,295.31,95.5553 +350753,292.13,90.7571 +350754,292.73,92.3312 +350755,293.33,93.9392 +350756,293.91,95.5835 +350757,290.82,90.71061 +350758,291.4,92.3083 +350759,291.96,93.9407 +350760,292.51,95.6104 +350761,289.52,90.66532 +350762,290.07,92.2857 +350763,290.6,93.9417 +350764,291.11,95.636 +350765,288.22,90.62125 +350766,288.73,92.2636 +350767,289.23,93.9423 +350768,289.71,95.6602 +350769,286.92,90.57841 +350770,287.4,92.2418 +350771,287.86,93.9424 +350772,288.32,95.6831 +350773,285.62,90.53681 +350774,286.07,92.2204 +350775,286.5,93.9419 +350776,286.92,95.7047 +350777,284.32,90.49648 +350778,284.73,92.1994 +350779,285.13,93.941 +350780,285.52,95.7248 +350781,283.02,90.45741 +350782,283.4,92.1788 +350783,283.77,93.9396 +350784,284.12,95.7436 +350785,281.72,90.41964 +350786,282.07,92.1585 +350787,282.4,93.9377 +350788,282.72,95.7609 +350789,280.42,90.38315 +350790,280.73,92.1387 +350791,281.03,93.9353 +350792,281.31,95.7768 +350793,279.12,90.34798 +350794,279.4,92.1193 +350795,279.67,93.9323 +350796,279.91,95.7913 +350797,277.82,90.31413 +350798,278.07,92.1003 +350799,278.3,93.9288 +350800,278.51,95.8043 +350801,276.52,90.28161 +350802,276.74,92.0817 +350803,276.93,93.9249 +350804,277.11,95.8158 +350805,275.23,90.25043 +350806,275.41,92.0635 +350807,275.57,93.9204 +350808,275.71,95.8259 +350809,273.93,90.22059 +350810,274.07,92.0457 +350811,274.2,93.9153 +350812,274.31,95.8344 +350813,272.63,90.19212 +350814,272.74,92.0284 +350815,272.83,93.9097 +350816,272.9,95.8414 +350817,271.33,90.165 +350818,271.41,92.0115 +350819,271.47,93.9036 +350820,271.5,95.8469 +350821,270.03,90.13925 +350822,270.08,91.995 +350823,270.1,93.897 +350824,270.1,95.8509 +350825,268.74,90.11488 +350826,268.75,91.9789 +350827,268.73,93.8898 +350828,268.7,95.8533 +350829,267.44,90.091892 +350830,267.41,91.9633 +350831,267.37,93.8821 +350832,267.29,95.8542 +350833,266.14,90.070288 +350834,266.08,91.9481 +350835,266,93.8738 +350836,265.89,95.8535 +350837,264.85,90.050072 +350838,264.75,91.9333 +350839,264.63,93.865 +350840,264.49,95.8513 +350841,263.55,90.031248 +350842,263.42,91.919 +350843,263.27,93.8556 +350844,263.09,95.8475 +350845,262.25,90.013819 +350846,262.09,91.9051 +350847,261.9,93.8457 +350848,261.69,95.8422 +350849,260.95,89.9977856 +350850,260.76,91.8917 +350851,260.53,93.8353 +350852,260.28,95.8352 +350853,259.66,89.98315 +350854,259.42,91.8787 +350855,259.17,93.8243 +350856,258.88,95.8267 +350857,258.36,89.969911 +350858,258.09,91.8661 +350859,257.8,93.8127 +350860,257.48,95.8167 +350861,257.06,89.958069 +350862,256.76,91.8539 +350863,256.43,93.8006 +350864,256.08,95.805 +350865,255.76,89.947624 +350866,255.43,91.8422 +350867,255.07,93.7879 +350868,254.68,95.7918 +350869,254.47,89.938572 +350870,254.1,91.831 +350871,253.7,93.7747 +350872,253.28,95.7769 +350873,253.17,89.930912 +350874,252.77,91.8202 +350875,252.34,93.761 +350876,251.88,95.7605 +350877,251.87,89.924641 +350878,251.43,91.8098 +350879,250.97,93.7467 +350880,250.48,95.7426 +350881,250.57,89.919753 +350882,250.1,91.7998 +350883,249.61,93.7318 +350884,249.08,95.723 +350885,249.27,89.916246 +350886,248.77,91.7903 +350887,248.24,93.7164 +350888,247.68,95.7019 +350889,247.97,89.914113 +350890,247.44,91.7812 +350891,246.87,93.7005 +350892,246.28,95.6793 +350893,246.67,89.913349 +350894,246.1,91.7726 +350895,245.51,93.684 +350896,244.88,95.655 +350897,245.37,89.913947 +350898,244.77,91.7644 +350899,244.14,93.667 +350900,243.48,95.6293 +350901,244.07,89.915899 +350902,243.44,91.7566 +350903,242.78,93.6495 +350904,242.09,95.602 +350905,242.77,89.919198 +350906,242.11,91.7492 +350907,241.41,93.6314 +350908,240.69,95.5731 +350909,241.47,89.923835 +350910,240.77,91.7423 +350911,240.05,93.6128 +350912,239.29,95.5427 +350913,240.17,89.9298 +350914,239.44,91.7357 +350915,238.69,93.5936 +350916,237.9,95.5109 +350917,238.86,89.937085 +350918,238.11,91.7296 +350919,237.32,93.574 +350920,236.5,95.4775 +350921,237.56,89.945677 +350922,236.77,91.7239 +350923,235.96,93.5538 +350924,235.11,95.4426 +350925,236.26,89.955566 +350926,235.44,91.7186 +350927,234.6,93.5331 +350928,233.72,95.4062 +350929,234.95,89.96674 +350930,234.11,91.7137 +350931,233.23,93.5119 +350932,232.32,95.3684 +350933,233.65,89.979186 +350934,232.77,91.7092 +350935,231.87,93.4902 +350936,230.93,95.3291 +350937,232.34,89.992891 +350938,231.44,91.7051 +350939,230.51,93.468 +350940,229.54,95.2884 +350941,231.04,90.0078413 +350942,230.1,91.7014 +350943,229.14,93.4453 +350944,228.15,95.2463 +350945,229.73,90.024022 +350946,228.77,91.698 +350947,227.78,93.4221 +350948,226.76,95.2027 +350949,228.42,90.041419 +350950,227.44,91.6951 +350951,226.42,93.3984 +350952,225.37,95.1578 +350953,227.11,90.060016 +350954,226.1,91.6925 +350955,225.06,93.3742 +350956,223.98,95.1115 +350957,225.81,90.079797 +350958,224.77,91.6903 +350959,223.7,93.3496 +350960,222.6,95.0638 +350961,224.5,90.10074 +350962,223.43,91.6885 +350963,222.34,93.3244 +350964,221.21,95.0148 +350965,223.18,90.12284 +350966,222.09,91.687 +350967,220.98,93.2989 +350968,219.82,94.9645 +350969,221.87,90.14607 +350970,220.76,91.6858 +350971,219.62,93.2728 +350972,218.44,94.9129 +350973,220.56,90.17041 +350974,219.42,91.6851 +350975,218.26,93.2464 +350976,217.06,94.8601 +350977,219.25,90.19585 +350978,218.09,91.6846 +350979,216.9,93.2194 +350980,215.67,94.8059 +350981,217.93,90.22236 +350982,216.75,91.6845 +350983,215.54,93.1921 +350984,214.29,94.7506 +350985,216.62,90.24993 +350986,215.41,91.6847 +350987,214.18,93.1643 +350988,212.91,94.6941 +350989,215.3,90.27852 +350990,214.07,91.6852 +350991,212.82,93.1361 +350992,211.53,94.6363 +350993,213.99,90.30814 +350994,212.74,91.686 +350995,211.46,93.1075 +350996,210.15,94.5774 +350997,212.67,90.33874 +350998,211.4,91.6872 +350999,210.1,93.0785 +351000,208.78,94.5174 +351001,211.35,90.37031 +351002,210.06,91.6886 +351003,208.75,93.0491 +351004,207.4,94.4563 +351005,210.03,90.40282 +351006,208.72,91.6903 +351007,207.39,93.0193 +351008,206.02,94.3941 +351009,208.71,90.43626 +351010,207.38,91.6923 +351011,206.03,92.9891 +351012,204.65,94.3309 +351013,207.39,90.4706 +351014,206.04,91.6946 +351015,204.68,92.9586 +351016,203.28,94.2666 +351017,206.06,90.50581 +351018,204.7,91.6971 +351019,203.32,92.9277 +351020,201.91,94.2013 +351021,204.74,90.54188 +351022,203.36,91.6999 +351023,201.96,92.8964 +351024,200.53,94.1351 +351025,203.42,90.57876 +351026,202.02,91.703 +351027,200.61,92.8648 +351028,199.16,94.0679 +351029,202.09,90.61645 +351030,200.68,91.7063 +351031,199.25,92.8329 +351032,197.8,93.9998 +351033,200.76,90.65492 +351034,199.34,91.7098 +351035,197.9,92.8006 +351036,196.43,93.9308 +351037,199.43,90.69413 +351038,198,91.7135 +351039,196.55,92.7681 +351040,195.06,93.861 +351041,198.11,90.73406 +351042,196.66,91.7174 +351043,195.19,92.7352 +351044,193.7,93.7904 +351045,196.78,90.77469 +351046,195.32,91.7216 +351047,193.84,92.702 +351048,192.33,93.7189 +351049,195.44,90.81599 +351050,193.98,91.7259 +351051,192.49,92.6686 +351052,190.97,93.6467 +351053,194.11,90.85792 +351054,192.63,91.7304 +351055,191.13,92.6349 +351056,189.61,93.5738 +351057,192.78,90.90047 +351058,191.29,91.7351 +351059,189.78,92.6009 +351060,188.25,93.5002 +351061,191.44,90.9436 +351062,189.95,91.7399 +351063,188.43,92.5666 +351064,186.89,93.4259 +351065,190.11,90.98729 +351066,188.6,91.7449 +351067,187.08,92.5321 +351068,185.53,93.351 +351069,188.77,91.0315 +351070,187.26,91.7501 +351071,185.73,92.4974 +351072,184.18,93.2754 +351073,187.43,91.0762 +351074,185.92,91.7554 +351075,184.38,92.4625 +351076,182.82,93.1993 +351077,186.09,91.1214 +351078,184.57,91.7608 +351079,183.03,92.4273 +351080,181.47,93.1227 +351081,184.75,91.167 +351082,183.22,91.7663 +351083,181.68,92.3919 +351084,180.12,93.0456 +351085,183.41,91.213 +351086,181.88,91.7719 +351087,180.33,92.3564 +351088,178.77,92.968 +351089,182.06,91.2595 +351090,180.53,91.7777 +351091,178.98,92.3206 +351092,177.42,92.89 +351093,180.72,91.3062 +351094,179.19,91.7835 +351095,177.64,92.2847 +351096,176.07,92.8115 +351097,179.37,91.3533 +351098,177.84,91.7893 +351099,176.29,92.2487 +351100,174.72,92.7327 +351101,178.03,91.4006 +351102,176.49,91.7953 +351103,174.94,92.2125 +351104,173.37,92.6536 +351105,176.68,91.4482 +351106,175.15,91.8012 +351107,173.6,92.1761 +351108,172.03,92.5742 +351109,175.33,91.4961 +351110,173.8,91.8073 +351111,172.25,92.1397 +351112,170.69,92.4945 +351113,173.98,91.5441 +351114,172.45,91.8133 +351115,170.9,92.1031 +351116,169.34,92.4146 +351117,172.63,91.5923 +351118,171.1,91.8194 +351119,169.56,92.0664 +351120,168,92.3344 +351121,171.27,91.6406 +351122,169.75,91.8255 +351123,168.21,92.0296 +351124,166.66,92.2542 +351125,169.92,91.6891 +351126,168.4,91.8316 +351127,166.87,91.9928 +351128,165.32,92.1737 +351129,168.56,91.7376 +351130,167.05,91.8377 +351131,165.53,91.9559 +351132,163.99,92.0932 +351133,167.21,91.7861 +351134,165.7,91.8437 +351135,164.18,91.9189 +351136,162.65,92.0127 +351137,165.85,91.8346 +351138,164.35,91.8497 +351139,162.84,91.8819 +351140,161.32,91.9321 +351141,164.49,91.8831 +351142,163,91.8557 +351143,161.5,91.8448 +351144,159.98,91.8515 +351145,163.13,91.9316 +351146,161.65,91.8616 +351147,160.16,91.8077 +351148,158.65,91.7709 +351149,161.77,91.9799 +351150,160.3,91.8675 +351151,158.81,91.7706 +351152,157.32,91.6904 +351153,160.4,92.0282 +351154,158.95,91.8732 +351155,157.47,91.7335 +351156,155.99,91.6101 +351157,159.04,92.0762 +351158,157.59,91.8789 +351159,156.13,91.6965 +351160,154.66,91.5298 +351161,157.67,92.1241 +351162,156.24,91.8845 +351163,154.79,91.6594 +351164,153.33,91.4498 +351165,156.31,92.1718 +351166,154.89,91.89 +351167,153.45,91.6224 +351168,152.01,91.3699 +351169,154.94,92.2192 +351170,153.53,91.8953 +351171,152.11,91.5854 +351172,150.68,91.2903 +351173,153.57,92.2664 +351174,152.18,91.9006 +351175,150.77,91.5484 +351176,149.36,91.211 +351177,152.2,92.3132 +351178,150.83,91.9056 +351179,149.44,91.5116 +351180,148.04,91.132 +351181,150.83,92.3597 +351182,149.47,91.9106 +351183,148.1,91.4748 +351184,146.71,91.0533 +351185,149.46,92.4058 +351186,148.12,91.9153 +351187,146.76,91.438 +351188,145.39,90.97497 +351189,148.09,92.4515 +351190,146.76,91.9199 +351191,145.42,91.4014 +351192,144.07,90.89705 +351193,146.71,92.4968 +351194,145.4,91.9243 +351195,144.09,91.3649 +351196,142.76,90.81956 +351197,145.34,92.5416 +351198,144.05,91.9286 +351199,142.75,91.3285 +351200,141.44,90.74254 +351201,143.96,92.5859 +351202,142.69,91.9326 +351203,141.41,91.2923 +351204,140.12,90.66601 +351205,142.58,92.6296 +351206,141.34,91.9364 +351207,140.08,91.2562 +351208,138.81,90.59 +351209,141.2,92.6729 +351210,139.98,91.94 +351211,138.74,91.2202 +351212,137.49,90.51455 +351213,139.83,92.7155 +351214,138.62,91.9433 +351215,137.41,91.1844 +351216,136.18,90.43968 +351217,138.44,92.7575 +351218,137.26,91.9464 +351219,136.07,91.1487 +351220,134.87,90.36543 +351221,137.06,92.7988 +351222,135.91,91.9493 +351223,134.74,91.1133 +351224,133.56,90.29181 +351225,135.68,92.8395 +351226,134.55,91.9519 +351227,133.4,91.078 +351228,132.25,90.21887 +351229,134.3,92.8795 +351230,133.19,91.9542 +351231,132.07,91.0429 +351232,130.94,90.14663 +351233,132.91,92.9187 +351234,131.83,91.9562 +351235,130.74,91.008 +351236,129.63,90.075114 +351237,131.53,92.9572 +351238,130.47,91.958 +351239,129.4,90.97337 +351240,128.32,90.0043517 +351241,130.14,92.9948 +351242,129.11,91.9594 +351243,128.07,90.93895 +351244,127.02,89.934369 +351245,128.76,93.0317 +351246,127.75,91.9605 +351247,126.74,90.90475 +351248,125.71,89.86519 +351249,127.37,93.0677 +351250,126.39,91.9614 +351251,125.41,90.8708 +351252,124.41,89.79685 +351253,125.98,93.1028 +351254,125.03,91.9619 +351255,124.08,90.83711 +351256,123.11,89.72936 +351257,124.59,93.137 +351258,123.67,91.962 +351259,122.75,90.80367 +351260,121.8,89.66276 +351261,123.2,93.1704 +351262,122.31,91.9618 +351263,121.41,90.77051 +351264,120.5,89.59706 +351265,121.81,93.2027 +351266,120.95,91.9613 +351267,120.08,90.73762 +351268,119.2,89.5323 +351269,120.42,93.2341 +351270,119.59,91.9604 +351271,118.75,90.70502 +351272,117.9,89.46849 +351273,119.02,93.2644 +351274,118.23,91.9591 +351275,117.42,90.67272 +351276,116.6,89.40565 +351277,117.63,93.2938 +351278,116.87,91.9575 +351279,116.09,90.64071 +351280,115.3,89.34381 +351281,116.24,93.3221 +351282,115.51,91.9555 +351283,114.76,90.60902 +351284,114,89.283 +351285,114.84,93.3493 +351286,114.15,91.953 +351287,113.43,90.57764 +351288,112.7,89.22322 +351289,113.45,93.3754 +351290,112.79,91.9502 +351291,112.1,90.54659 +351292,111.41,89.16451 +351293,112.05,93.4004 +351294,111.42,91.947 +351295,110.78,90.51587 +351296,110.11,89.10687 +351297,110.66,93.4243 +351298,110.06,91.9434 +351299,109.45,90.48548 +351300,108.82,89.05034 +351301,109.26,93.447 +351302,108.7,91.9393 +351303,108.12,90.45544 +351304,107.52,88.9949 +351305,107.86,93.4685 +351306,107.34,91.9349 +351307,106.79,90.42575 +351308,106.23,88.9407 +351309,106.47,93.4888 +351310,105.97,91.93 +351311,105.46,90.39642 +351312,104.93,88.8875 +351313,105.07,93.5079 +351314,104.61,91.9246 +351315,104.13,90.36745 +351316,103.64,88.8356 +351317,103.67,93.5257 +351318,103.25,91.9188 +351319,102.81,90.33885 +351320,102.34,88.7848 +351321,102.27,93.5423 +351322,101.89,91.9126 +351323,101.48,90.31062 +351324,101.05,88.7353 +351325,100.87,93.5576 +351326,100.52,91.9059 +351327,100.15,90.28278 +351328,99.759,88.6869 +351329,99.471,93.5716 +351330,99.16,91.8988 +351331,98.825,90.25531 +351332,98.468,88.6398 +351333,98.071,93.5843 +351334,97.797,91.8912 +351335,97.498,90.22824 +351336,97.176,88.594 +351337,96.671,93.5956 +351338,96.434,91.8831 +351339,96.171,90.20156 +351340,95.885,88.5494 +351341,95.271,93.6056 +351342,95.071,91.8745 +351343,94.844,90.17528 +351344,94.594,88.506 +351345,93.87,93.6143 +351346,93.707,91.8655 +351347,93.518,90.14941 +351348,93.303,88.464 +351349,92.469,93.6216 +351350,92.344,91.856 +351351,92.191,90.12394 +351352,92.013,88.4232 +351353,91.068,93.6275 +351354,90.981,91.846 +351355,90.865,90.098881 +351356,90.722,88.3838 +351357,89.667,93.632 +351358,89.617,91.8355 +351359,89.538,90.074238 +351360,89.432,88.3457 +351361,88.266,93.6351 +351362,88.254,91.8245 +351363,88.212,90.050012 +351364,88.142,88.3089 +351365,86.865,93.6367 +351366,86.891,91.813 +351367,86.886,90.026206 +351368,86.853,88.2734 +351369,85.464,93.637 +351370,85.528,91.801 +351371,85.56,90.0028246 +351372,85.563,88.2392 +351373,84.063,93.6358 +351374,84.164,91.7886 +351375,84.233,89.979869 +351376,84.274,88.2064 +351377,82.662,93.6331 +351378,82.801,91.7756 +351379,82.907,89.957342 +351380,82.984,88.175 +351381,81.26,93.629 +351382,81.438,91.7621 +351383,81.581,89.935246 +351384,81.695,88.1449 +351385,79.86,93.6234 +351386,80.075,91.7481 +351387,80.255,89.913583 +351388,80.405,88.1162 +351389,78.459,93.6164 +351390,78.712,91.7336 +351391,78.929,89.89235 +351392,79.116,88.0888 +351393,77.058,93.6079 +351394,77.349,91.7185 +351395,77.603,89.87156 +351396,77.826,88.0628 +351397,75.658,93.5979 +351398,75.986,91.703 +351399,76.277,89.8512 +351400,76.536,88.0382 +351401,74.257,93.5864 +351402,74.623,91.687 +351403,74.951,89.83128 +351404,75.246,88.0149 +351405,72.857,93.5734 +351406,73.26,91.6704 +351407,73.625,89.8118 +351408,73.957,87.9931 +351409,71.458,93.5589 +351410,71.898,91.6533 +351411,72.299,89.79276 +351412,72.666,87.9726 +351413,70.058,93.5429 +351414,70.535,91.6357 +351415,70.973,89.77416 +351416,71.376,87.9534 +351417,68.659,93.5255 +351418,69.173,91.6176 +351419,69.647,89.756 +351420,70.085,87.9357 +351421,67.26,93.5065 +351422,67.811,91.599 +351423,68.32,89.73827 +351424,68.795,87.9193 +351425,65.862,93.486 +351426,66.449,91.5798 +351427,66.994,89.72099 +351428,67.503,87.9043 +351429,64.464,93.4641 +351430,65.087,91.5602 +351431,65.668,89.70414 +351432,66.212,87.8906 +351433,63.067,93.4406 +351434,63.726,91.54 +351435,64.341,89.68773 +351436,64.92,87.8783 +351437,61.67,93.4157 +351438,62.364,91.5193 +351439,63.015,89.67175 +351440,63.628,87.8674 +351441,60.274,93.3893 +351442,61.003,91.4981 +351443,61.688,89.65621 +351444,62.335,87.8578 +351445,58.878,93.3614 +351446,59.642,91.4764 +351447,60.361,89.6411 +351448,61.042,87.8496 +351449,57.483,93.332 +351450,58.281,91.4542 +351451,59.034,89.62642 +351452,59.749,87.8427 +351453,56.088,93.3011 +351454,56.92,91.4315 +351455,57.707,89.61217 +351456,58.455,87.8372 +351457,54.694,93.2688 +351458,55.56,91.4083 +351459,56.38,89.59834 +351460,57.161,87.8329 +351461,53.301,93.235 +351462,54.2,91.3846 +351463,55.052,89.58494 +351464,55.866,87.83 +351465,51.909,93.1998 +351466,52.84,91.3604 +351467,53.725,89.57195 +351468,54.57,87.8284 +351469,50.517,93.1631 +351470,51.48,91.3357 +351471,52.397,89.55939 +351472,53.274,87.8281 +351473,49.126,93.1251 +351474,50.121,91.3105 +351475,51.069,89.54724 +351476,51.977,87.8291 +351477,47.735,93.0856 +351478,48.762,91.2848 +351479,49.741,89.53549 +351480,50.68,87.8314 +351481,46.346,93.0446 +351482,47.403,91.2587 +351483,48.412,89.52416 +351484,49.382,87.8349 +351485,44.957,93.0023 +351486,46.044,91.2321 +351487,47.084,89.51323 +351488,48.083,87.8397 +351489,43.569,92.9587 +351490,44.686,91.205 +351491,45.755,89.50269 +351492,46.784,87.8458 +351493,42.182,92.9136 +351494,43.328,91.1774 +351495,44.426,89.49255 +351496,45.484,87.853 +351497,40.796,92.8672 +351498,41.971,91.1494 +351499,43.097,89.4828 +351500,44.183,87.8615 +351501,39.411,92.8195 +351502,40.613,91.1209 +351503,41.767,89.47343 +351504,42.881,87.8711 +351505,38.027,92.7704 +351506,39.257,91.0919 +351507,40.438,89.46445 +351508,41.578,87.882 +351509,36.644,92.7201 +351510,37.9,91.0625 +351511,39.108,89.45584 +351512,40.275,87.894 +351513,35.262,92.6684 +351514,36.544,91.0327 +351515,37.778,89.44759 +351516,38.971,87.9072 +351517,33.881,92.6155 +351518,35.188,91.0024 +351519,36.447,89.43971 +351520,37.666,87.9215 +351521,32.5,92.5613 +351522,33.832,90.97174 +351523,35.116,89.43219 +351524,36.36,87.9369 +351525,31.121,92.5059 +351526,32.477,90.94063 +351527,33.785,89.42501 +351528,35.053,87.9534 +351529,29.743,92.4493 +351530,31.122,90.90909 +351531,32.454,89.41819 +351532,33.745,87.971 +351533,28.366,92.3915 +351534,29.768,90.87715 +351535,31.122,89.4117 +351536,32.436,87.9897 +351537,26.991,92.3326 +351538,28.414,90.84481 +351539,29.79,89.40554 +351540,31.127,88.0094 +351541,25.616,92.2725 +351542,27.06,90.81207 +351543,28.458,89.39971 +351544,29.816,88.0301 +351545,24.242,92.2112 +351546,25.707,90.77894 +351547,27.126,89.3942 +351548,28.504,88.0518 +351549,22.87,92.1489 +351550,24.354,90.74543 +351551,25.793,89.38899 +351552,27.192,88.0745 +351553,21.499,92.0855 +351554,23.002,90.71155 +351555,24.46,89.3841 +351556,25.878,88.0982 +351557,20.129,92.0211 +351558,21.65,90.67731 +351559,23.126,89.37949 +351560,24.563,88.1227 +351561,18.76,91.9556 +351562,20.298,90.6427 +351563,21.792,89.37518 +351564,23.247,88.1482 +351565,17.392,91.8891 +351566,18.947,90.60776 +351567,20.458,89.37115 +351568,21.93,88.1746 +351569,16.026,91.8217 +351570,17.597,90.57247 +351571,19.123,89.36739 +351572,20.612,88.2019 +351573,14.661,91.7532 +351574,16.246,90.53685 +351575,17.788,89.3639 +351576,19.293,88.23 +351577,13.297,91.6839 +351578,14.897,90.50091 +351579,16.453,89.36066 +351580,17.972,88.2589 +351581,11.934,91.6137 +351582,13.547,90.46465 +351583,15.118,89.35767 +351584,16.651,88.2886 +351585,10.573,91.5426 +351586,12.198,90.42809 +351587,13.782,89.35492 +351588,15.328,88.3191 +351589,9.2131,91.4707 +351590,10.85,90.39124 +351591,12.445,89.35241 +351592,14.004,88.3503 +351593,7.8544,91.398 +351594,9.5018,90.3541 +351595,11.109,89.35011 +351596,12.679,88.3822 +351597,6.497,91.3245 +351598,8.1543,90.31668 +351599,9.7715,89.34803 +351600,11.353,88.4149 +351601,5.1409,91.2502 +351602,6.8072,90.27899 +351603,8.434,89.34616 +351604,10.026,88.4482 +351605,3.7861,91.1752 +351606,5.4605,90.24105 +351607,7.0962,89.34448 +351608,8.697,88.4821 +351609,2.4327,91.0995 +351610,4.1144,90.20286 +351611,5.7579,89.34298 +351612,7.3671,88.5166 +351613,1.0806,91.0232 +351614,2.7687,90.16443 +351615,4.4193,89.34167 +351616,6.036,88.5517 +351617,359.73,90.94625 +351618,1.4235,90.12578 +351619,3.0803,89.34052 +351620,4.7037,88.5874 +351621,358.38,90.86869 +351622,0.078719,90.086906 +351623,1.7409,89.33953 +351624,3.3701,88.6236 +351625,357.03,90.79056 +351626,358.73,90.047825 +351627,0.40112,89.33869 +351628,2.0353,88.6603 +351629,355.69,90.7119 +351630,357.39,90.0085477 +351631,359.06,89.33798 +351632,0.69923,88.6975 +351633,354.34,90.63274 +351634,356.05,89.969083 +351635,357.72,89.33741 +351636,359.36,88.7351 +351637,353,90.5531 +351638,354.7,89.929442 +351639,356.38,89.33695 +351640,358.02,88.7731 +351641,351.65,90.47303 +351642,353.36,89.88964 +351643,355.04,89.33661 +351644,356.68,88.8115 +351645,350.31,90.39255 +351646,352.02,89.84967 +351647,353.7,89.33636 +351648,355.34,88.8503 +351649,348.97,90.3117 +351650,350.68,89.80957 +351651,352.35,89.3362 +351652,354,88.8894 +351653,347.63,90.23051 +351654,349.34,89.76932 +351655,351.01,89.33613 +351656,352.66,88.9287 +351657,346.3,90.14901 +351658,348,89.72896 +351659,349.67,89.33612 +351660,351.31,88.9684 +351661,344.96,90.067235 +351662,346.66,89.68848 +351663,348.33,89.33617 +351664,349.96,89.00827 +351665,343.63,89.985218 +351666,345.32,89.6479 +351667,346.98,89.33627 +351668,348.62,89.04836 +351669,342.29,89.902992 +351670,343.98,89.60723 +351671,345.64,89.33641 +351672,347.27,89.08862 +351673,340.96,89.82059 +351674,342.64,89.56648 +351675,344.29,89.33657 +351676,345.92,89.12903 +351677,339.63,89.73805 +351678,341.3,89.52566 +351679,342.95,89.33675 +351680,344.57,89.16955 +351681,338.3,89.65539 +351682,339.96,89.48478 +351683,341.6,89.33694 +351684,343.21,89.21015 +351685,336.97,89.57267 +351686,338.63,89.44385 +351687,340.26,89.33713 +351688,341.86,89.25082 +351689,335.65,89.48989 +351690,337.29,89.40289 +351691,338.91,89.33731 +351692,340.51,89.2915 +351693,334.32,89.40711 +351694,335.96,89.3619 +351695,337.56,89.33746 +351696,339.15,89.33218 +351697,333,89.32435 +351698,334.62,89.32089 +351699,336.22,89.33758 +351700,337.79,89.37282 +351701,331.68,89.24165 +351702,333.28,89.27988 +351703,334.87,89.33765 +351704,336.43,89.41339 +351705,330.35,89.15904 +351706,331.95,89.23888 +351707,333.52,89.33767 +351708,335.07,89.45386 +351709,329.03,89.07655 +351710,330.62,89.1979 +351711,332.17,89.33762 +351712,333.71,89.4942 +351713,327.72,88.9942 +351714,329.28,89.15694 +351715,330.83,89.3375 +351716,332.35,89.53439 +351717,326.4,88.9121 +351718,327.95,89.11602 +351719,329.48,89.33729 +351720,330.98,89.57438 +351721,325.08,88.8301 +351722,326.61,89.07515 +351723,328.13,89.33698 +351724,329.62,89.61416 +351725,323.77,88.7484 +351726,325.28,89.03434 +351727,326.78,89.33657 +351728,328.25,89.65368 +351729,322.45,88.667 +351730,323.95,88.9936 +351731,325.43,89.33605 +351732,326.89,89.69293 +351733,321.14,88.586 +351734,322.62,88.9529 +351735,324.08,89.3354 +351736,325.52,89.73186 +351737,319.83,88.5052 +351738,321.29,88.9124 +351739,322.73,89.33461 +351740,324.15,89.77046 +351741,318.52,88.4249 +351742,319.96,88.8719 +351743,321.38,89.33367 +351744,322.78,89.80869 +351745,317.21,88.3449 +351746,318.63,88.8316 +351747,320.02,89.33258 +351748,321.4,89.84651 +351749,315.9,88.2654 +351750,317.3,88.7913 +351751,318.67,89.33132 +351752,320.03,89.88391 +351753,314.59,88.1864 +351754,315.97,88.7512 +351755,317.32,89.32989 +351756,318.66,89.920853 +351757,313.29,88.1078 +351758,314.64,88.7113 +351759,315.97,89.32827 +351760,317.28,89.957308 +351761,311.98,88.0298 +351762,313.31,88.6715 +351763,314.62,89.32646 +351764,315.91,89.9932475 +351765,310.68,87.9523 +351766,311.98,88.6319 +351767,313.26,89.32444 +351768,314.53,90.028644 +351769,309.38,87.8755 +351770,310.65,88.5924 +351771,311.91,89.32221 +351772,313.15,90.063469 +351773,308.08,87.7992 +351774,309.33,88.5531 +351775,310.56,89.31975 +351776,311.77,90.097694 +351777,306.78,87.7236 +351778,308,88.514 +351779,309.2,89.31706 +351780,310.39,90.13129 +351781,305.48,87.6487 +351782,306.67,88.4751 +351783,307.85,89.31413 +351784,309.01,90.16423 +351785,304.18,87.5744 +351786,305.34,88.4364 +351787,306.49,89.31095 +351788,307.63,90.1965 +351789,302.88,87.5009 +351790,304.02,88.398 +351791,305.14,89.3075 +351792,306.24,90.22805 +351793,301.58,87.4281 +351794,302.69,88.3598 +351795,303.78,89.30379 +351796,304.86,90.25887 +351797,300.29,87.3562 +351798,301.37,88.3218 +351799,302.43,89.29981 +351800,303.47,90.28892 +351801,298.99,87.285 +351802,300.04,88.284 +351803,301.07,89.29553 +351804,302.09,90.31819 +351805,297.7,87.2146 +351806,298.72,88.2465 +351807,299.72,89.29096 +351808,300.7,90.34665 +351809,296.41,87.1451 +351810,297.39,88.2093 +351811,298.36,89.28609 +351812,299.31,90.37427 +351813,295.11,87.0765 +351814,296.07,88.1723 +351815,297.01,89.28091 +351816,297.92,90.40102 +351817,293.82,87.0088 +351818,294.74,88.1356 +351819,295.65,89.27542 +351820,296.53,90.42689 +351821,292.53,86.942 +351822,293.42,88.0992 +351823,294.29,89.26959 +351824,295.14,90.45185 +351825,291.24,86.8762 +351826,292.1,88.0631 +351827,292.94,89.26343 +351828,293.75,90.47588 +351829,289.95,86.8113 +351830,290.77,88.0273 +351831,291.58,89.25693 +351832,292.36,90.49895 +351833,288.66,86.7474 +351834,289.45,87.9918 +351835,290.22,89.25008 +351836,290.97,90.52104 +351837,287.38,86.6845 +351838,288.13,87.9567 +351839,288.86,89.24288 +351840,289.58,90.54213 +351841,286.09,86.6227 +351842,286.81,87.9218 +351843,287.51,89.23531 +351844,288.18,90.56219 +351845,284.8,86.5619 +351846,285.49,87.8873 +351847,286.15,89.22737 +351848,286.79,90.58121 +351849,283.52,86.5022 +351850,284.16,87.8531 +351851,284.79,89.21906 +351852,285.4,90.59917 +351853,282.23,86.4436 +351854,282.84,87.8193 +351855,283.43,89.21037 +351856,284,90.61604 +351857,280.94,86.386 +351858,281.52,87.7858 +351859,282.07,89.20128 +351860,282.6,90.63181 +351861,279.66,86.3297 +351862,280.2,87.7527 +351863,280.72,89.1918 +351864,281.21,90.64646 +351865,278.38,86.2744 +351866,278.88,87.7199 +351867,279.36,89.18193 +351868,279.81,90.65996 +351869,277.09,86.2203 +351870,277.56,87.6875 +351871,278,89.17164 +351872,278.41,90.67231 +351873,275.81,86.1674 +351874,276.24,87.6555 +351875,276.64,89.16094 +351876,277.02,90.68347 +351877,274.53,86.1157 +351878,274.92,87.6238 +351879,275.28,89.14983 +351880,275.62,90.69345 +351881,273.24,86.0651 +351882,273.6,87.5926 +351883,273.92,89.13829 +351884,274.22,90.70221 +351885,271.96,86.0158 +351886,272.28,87.5617 +351887,272.56,89.12633 +351888,272.82,90.70975 +351889,270.68,85.9677 +351890,270.96,87.5312 +351891,271.2,89.11393 +351892,271.42,90.71605 +351893,269.4,85.9209 +351894,269.64,87.5011 +351895,269.85,89.1011 +351896,270.03,90.72109 +351897,268.12,85.8753 +351898,268.32,87.4714 +351899,268.49,89.08783 +351900,268.63,90.72487 +351901,266.84,85.831 +351902,267,87.4421 +351903,267.13,89.07412 +351904,267.23,90.72736 +351905,265.56,85.7879 +351906,265.68,87.4133 +351907,265.77,89.05995 +351908,265.83,90.72856 +351909,264.28,85.7462 +351910,264.36,87.3848 +351911,264.41,89.04534 +351912,264.43,90.72845 +351913,263,85.7057 +351914,263.04,87.3568 +351915,263.05,89.03027 +351916,263.03,90.72702 +351917,261.72,85.6665 +351918,261.72,87.3291 +351919,261.69,89.01474 +351920,261.63,90.72427 +351921,260.44,85.6286 +351922,260.4,87.3019 +351923,260.33,88.9988 +351924,260.23,90.72018 +351925,259.16,85.5921 +351926,259.08,87.2752 +351927,258.97,88.9823 +351928,258.83,90.71474 +351929,257.88,85.5568 +351930,257.76,87.2488 +351931,257.61,88.9654 +351932,257.43,90.70795 +351933,256.6,85.5229 +351934,256.44,87.2229 +351935,256.26,88.948 +351936,256.03,90.69979 +351937,255.32,85.4904 +351938,255.12,87.1974 +351939,254.9,88.9301 +351940,254.63,90.69026 +351941,254.03,85.4591 +351942,253.8,87.1724 +351943,253.54,88.9118 +351944,253.23,90.67936 +351945,252.75,85.4292 +351946,252.49,87.1477 +351947,252.18,88.893 +351948,251.83,90.66707 +351949,251.47,85.4007 +351950,251.17,87.1235 +351951,250.82,88.8737 +351952,250.44,90.6534 +351953,250.19,85.3734 +351954,249.85,87.0998 +351955,249.46,88.854 +351956,249.04,90.63834 +351957,248.91,85.3476 +351958,248.53,87.0765 +351959,248.1,88.8338 +351960,247.64,90.62188 +351961,247.63,85.323 +351962,247.21,87.0536 +351963,246.75,88.8131 +351964,246.24,90.60402 +351965,246.35,85.2998 +351966,245.89,87.0311 +351967,245.39,88.7919 +351968,244.84,90.58476 +351969,245.07,85.278 +351970,244.57,87.0091 +351971,244.03,88.7702 +351972,243.45,90.5641 +351973,243.79,85.2575 +351974,243.25,86.9876 +351975,242.67,88.7481 +351976,242.05,90.54204 +351977,242.5,85.2383 +351978,241.93,86.9664 +351979,241.32,88.7255 +351980,240.65,90.51858 +351981,241.22,85.2205 +351982,240.61,86.9457 +351983,239.96,88.7024 +351984,239.26,90.49371 +351985,239.94,85.204 +351986,239.29,86.9255 +351987,238.6,88.6788 +351988,237.86,90.46745 +351989,238.66,85.1888 +351990,237.97,86.9056 +351991,237.24,88.6548 +351992,236.47,90.43979 +351993,237.37,85.175 +351994,236.65,86.8862 +351995,235.89,88.6303 +351996,235.07,90.41073 +351997,236.09,85.1625 +351998,235.33,86.8673 +351999,234.53,88.6053 +352000,233.68,90.38029 +352001,234.8,85.1512 +352002,234.01,86.8487 +352003,233.17,88.5799 +352004,232.29,90.34846 +352005,233.52,85.1413 +352006,232.69,86.8306 +352007,231.82,88.554 +352008,230.9,90.31525 +352009,232.23,85.1327 +352010,231.37,86.813 +352011,230.46,88.5276 +352012,229.5,90.28066 +352013,230.94,85.1254 +352014,230.05,86.7957 +352015,229.11,88.5008 +352016,228.11,90.24471 +352017,229.66,85.1193 +352018,228.73,86.7788 +352019,227.75,88.4735 +352020,226.72,90.2074 +352021,228.37,85.1145 +352022,227.41,86.7624 +352023,226.4,88.4457 +352024,225.33,90.16874 +352025,227.08,85.111 +352026,226.09,86.7464 +352027,225.04,88.4175 +352028,223.95,90.12873 +352029,225.79,85.1087 +352030,224.76,86.7308 +352031,223.69,88.3889 +352032,222.56,90.087389 +352033,224.5,85.1077 +352034,223.44,86.7156 +352035,222.33,88.3598 +352036,221.17,90.044728 +352037,223.21,85.1079 +352038,222.12,86.7008 +352039,220.98,88.3302 +352040,219.79,90.00075447 +352041,221.92,85.1093 +352042,220.8,86.6864 +352043,219.63,88.3003 +352044,218.4,89.955482 +352045,220.63,85.1119 +352046,219.47,86.6724 +352047,218.27,88.2699 +352048,217.02,89.908922 +352049,219.33,85.1156 +352050,218.15,86.6588 +352051,216.92,88.239 +352052,215.63,89.86109 +352053,218.04,85.1206 +352054,216.83,86.6455 +352055,215.57,88.2078 +352056,214.25,89.812 +352057,216.75,85.1267 +352058,215.51,86.6327 +352059,214.22,88.1761 +352060,212.87,89.76166 +352061,215.45,85.1339 +352062,214.18,86.6202 +352063,212.87,88.144 +352064,211.49,89.71009 +352065,214.15,85.1423 +352066,212.86,86.6081 +352067,211.51,88.1115 +352068,210.11,89.65731 +352069,212.86,85.1518 +352070,211.53,86.5963 +352071,210.16,88.0786 +352072,208.73,89.60333 +352073,211.56,85.1623 +352074,210.21,86.5849 +352075,208.81,88.0453 +352076,207.36,89.54817 +352077,210.26,85.1739 +352078,208.89,86.5739 +352079,207.46,88.0116 +352080,205.98,89.49185 +352081,208.96,85.1866 +352082,207.56,86.5632 +352083,206.11,87.9776 +352084,204.61,89.43439 +352085,207.66,85.2003 +352086,206.23,86.5529 +352087,204.76,87.9431 +352088,203.23,89.3758 +352089,206.35,85.2151 +352090,204.91,86.5428 +352091,203.41,87.9083 +352092,201.86,89.31611 +352093,205.05,85.2308 +352094,203.58,86.5332 +352095,202.07,87.8731 +352096,200.49,89.25533 +352097,203.75,85.2475 +352098,202.26,86.5238 +352099,200.72,87.8376 +352100,199.12,89.19349 +352101,202.44,85.2651 +352102,200.93,86.5147 +352103,199.37,87.8017 +352104,197.75,89.13061 +352105,201.13,85.2837 +352106,199.6,86.506 +352107,198.02,87.7655 +352108,196.38,89.06671 +352109,199.83,85.3032 +352110,198.28,86.4975 +352111,196.68,87.7289 +352112,195.02,89.00182 +352113,198.52,85.3235 +352114,196.95,86.4894 +352115,195.33,87.692 +352116,193.65,88.9359 +352117,197.21,85.3448 +352118,195.62,86.4815 +352119,193.98,87.6548 +352120,192.29,88.8691 +352121,195.89,85.3668 +352122,194.29,86.4739 +352123,192.64,87.6173 +352124,190.93,88.8014 +352125,194.58,85.3897 +352126,192.96,86.4665 +352127,191.29,87.5794 +352128,189.57,88.7327 +352129,193.27,85.4134 +352130,191.63,86.4595 +352131,189.95,87.5413 +352132,188.21,88.6632 +352133,191.95,85.4379 +352134,190.3,86.4526 +352135,188.6,87.5029 +352136,186.85,88.5928 +352137,190.64,85.4631 +352138,188.97,86.4461 +352139,187.26,87.4642 +352140,185.49,88.5217 +352141,189.32,85.489 +352142,187.64,86.4397 +352143,185.92,87.4253 +352144,184.14,88.4497 +352145,188,85.5156 +352146,186.31,86.4336 +352147,184.58,87.3861 +352148,182.79,88.3769 +352149,186.68,85.5429 +352150,184.98,86.4277 +352151,183.23,87.3466 +352152,181.43,88.3034 +352153,185.36,85.5708 +352154,183.65,86.422 +352155,181.89,87.3069 +352156,180.08,88.2292 +352157,184.04,85.5994 +352158,182.32,86.4165 +352159,180.55,87.2669 +352160,178.73,88.1543 +352161,182.71,85.6285 +352162,180.98,86.4113 +352163,179.21,87.2268 +352164,177.38,88.0787 +352165,181.39,85.6582 +352166,179.65,86.4061 +352167,177.87,87.1864 +352168,176.04,88.0025 +352169,180.06,85.6884 +352170,178.32,86.4012 +352171,176.53,87.1458 +352172,174.69,87.9258 +352173,178.73,85.7192 +352174,176.99,86.3964 +352175,175.19,87.105 +352176,173.35,87.8484 +352177,177.4,85.7504 +352178,175.65,86.3918 +352179,173.85,87.0641 +352180,172.01,87.7705 +352181,176.07,85.7821 +352182,174.32,86.3874 +352183,172.52,87.0229 +352184,170.66,87.6921 +352185,174.74,85.8142 +352186,172.98,86.383 +352187,171.18,86.9816 +352188,169.33,87.6132 +352189,173.41,85.8467 +352190,171.65,86.3788 +352191,169.84,86.9402 +352192,167.99,87.5339 +352193,172.07,85.8796 +352194,170.31,86.3747 +352195,168.5,86.8986 +352196,166.65,87.4541 +352197,170.74,85.9128 +352198,168.97,86.3708 +352199,167.17,86.8568 +352200,165.32,87.374 +352201,169.4,85.9463 +352202,167.64,86.3669 +352203,165.83,86.815 +352204,163.98,87.2935 +352205,168.06,85.9801 +352206,166.3,86.3631 +352207,164.5,86.773 +352208,162.65,87.2126 +352209,166.72,86.0142 +352210,164.96,86.3594 +352211,163.16,86.7309 +352212,161.32,87.1315 +352213,165.38,86.0485 +352214,163.63,86.3557 +352215,161.83,86.6887 +352216,159.99,87.0501 +352217,164.04,86.083 +352218,162.29,86.3522 +352219,160.5,86.6465 +352220,158.66,86.9685 +352221,162.7,86.1177 +352222,160.95,86.3486 +352223,159.16,86.6041 +352224,157.33,86.8867 +352225,161.35,86.1525 +352226,159.61,86.3451 +352227,157.83,86.5617 +352228,156.01,86.8047 +352229,160,86.1874 +352230,158.27,86.3417 +352231,156.5,86.5193 +352232,154.69,86.7226 +352233,158.66,86.2224 +352234,156.93,86.3382 +352235,155.17,86.4768 +352236,153.36,86.6404 +352237,157.31,86.2574 +352238,155.59,86.3348 +352239,153.84,86.4342 +352240,152.04,86.5581 +352241,155.96,86.2925 +352242,154.25,86.3313 +352243,152.5,86.3917 +352244,150.72,86.4758 +352245,154.6,86.3275 +352246,152.91,86.3279 +352247,151.17,86.3491 +352248,149.41,86.3935 +352249,153.25,86.3625 +352250,151.57,86.3244 +352251,149.85,86.3066 +352252,148.09,86.3111 +352253,151.9,86.3975 +352254,150.22,86.3209 +352255,148.52,86.264 +352256,146.77,86.2289 +352257,150.54,86.4324 +352258,148.88,86.3174 +352259,147.19,86.2215 +352260,145.46,86.1467 +352261,149.18,86.4671 +352262,147.54,86.3138 +352263,145.86,86.179 +352264,144.15,86.0647 +352265,147.82,86.5017 +352266,146.19,86.3102 +352267,144.53,86.1365 +352268,142.84,85.9828 +352269,146.46,86.5361 +352270,144.85,86.3064 +352271,143.21,86.0941 +352272,141.53,85.9011 +352273,145.1,86.5703 +352274,143.51,86.3026 +352275,141.88,86.0518 +352276,140.22,85.8196 +352277,143.74,86.6042 +352278,142.16,86.2987 +352279,140.55,86.0095 +352280,138.91,85.7383 +352281,142.38,86.6379 +352282,140.82,86.2948 +352283,139.23,85.9673 +352284,137.6,85.6574 +352285,141.01,86.6712 +352286,139.47,86.2907 +352287,137.9,85.9252 +352288,136.3,85.5767 +352289,139.65,86.7043 +352290,138.13,86.2864 +352291,136.58,85.8832 +352292,135,85.4964 +352293,138.28,86.737 +352294,136.78,86.2821 +352295,135.25,85.8413 +352296,133.69,85.4164 +352297,136.91,86.7693 +352298,135.43,86.2776 +352299,133.93,85.7995 +352300,132.39,85.3368 +352301,135.54,86.8012 +352302,134.09,86.273 +352303,132.6,85.7579 +352304,131.09,85.2577 +352305,134.17,86.8327 +352306,132.74,86.2682 +352307,131.28,85.7164 +352308,129.8,85.179 +352309,132.8,86.8637 +352310,131.39,86.2632 +352311,129.96,85.675 +352312,128.5,85.1008 +352313,131.43,86.8942 +352314,130.05,86.2581 +352315,128.64,85.6339 +352316,127.2,85.0232 +352317,130.05,86.9242 +352318,128.7,86.2528 +352319,127.32,85.5928 +352320,125.91,84.946 +352321,128.68,86.9536 +352322,127.35,86.2473 +352323,125.99,85.552 +352324,124.61,84.8695 +352325,127.3,86.9825 +352326,126,86.2416 +352327,124.67,85.5114 +352328,123.32,84.7935 +352329,125.92,87.0107 +352330,124.65,86.2357 +352331,123.35,85.4709 +352332,122.03,84.7182 +352333,124.55,87.0384 +352334,123.3,86.2295 +352335,122.03,85.4307 +352336,120.74,84.6435 +352337,123.17,87.0654 +352338,121.95,86.2232 +352339,120.71,85.3906 +352340,119.45,84.5695 +352341,121.79,87.0917 +352342,120.6,86.2166 +352343,119.39,85.3508 +352344,118.16,84.4962 +352345,120.4,87.1173 +352346,119.25,86.2097 +352347,118.07,85.3113 +352348,116.87,84.4237 +352349,119.02,87.1422 +352350,117.9,86.2026 +352351,116.76,85.2719 +352352,115.58,84.3519 +352353,117.64,87.1664 +352354,116.55,86.1953 +352355,115.44,85.2329 +352356,114.3,84.2809 +352357,116.26,87.1897 +352358,115.2,86.1876 +352359,114.12,85.194 +352360,113.01,84.2107 +352361,114.87,87.2123 +352362,113.85,86.1797 +352363,112.8,85.1555 +352364,111.73,84.1413 +352365,113.48,87.2341 +352366,112.5,86.1715 +352367,111.48,85.1172 +352368,110.45,84.0728 +352369,112.1,87.255 +352370,111.14,86.163 +352371,110.17,85.0792 +352372,109.16,84.0052 +352373,110.71,87.275 +352374,109.79,86.1542 +352375,108.85,85.0415 +352376,107.88,83.9385 +352377,109.32,87.2942 +352378,108.44,86.1451 +352379,107.53,85.0041 +352380,106.6,83.8727 +352381,107.93,87.3124 +352382,107.09,86.1357 +352383,106.22,84.967 +352384,105.32,83.8078 +352385,106.54,87.3298 +352386,105.74,86.126 +352387,104.9,84.9302 +352388,104.04,83.7439 +352389,105.15,87.3462 +352390,104.38,86.1159 +352391,103.59,84.8937 +352392,102.76,83.681 +352393,103.76,87.3616 +352394,103.03,86.1055 +352395,102.27,84.8576 +352396,101.49,83.6191 +352397,102.37,87.376 +352398,101.68,86.0948 +352399,100.95,84.8218 +352400,100.21,83.5583 +352401,100.98,87.3894 +352402,100.32,86.0837 +352403,99.64,84.7863 +352404,98.933,83.4985 +352405,99.587,87.4018 +352406,98.969,86.0723 +352407,98.325,84.7511 +352408,97.657,83.4397 +352409,98.193,87.4131 +352410,97.615,86.0605 +352411,97.011,84.7164 +352412,96.381,83.3821 +352413,96.8,87.4234 +352414,96.261,86.0483 +352415,95.697,84.6819 +352416,95.106,83.3255 +352417,95.405,87.4326 +352418,94.907,86.0358 +352419,94.383,84.6479 +352420,93.832,83.27 +352421,94.01,87.4407 +352422,93.553,86.0229 +352423,93.069,84.6142 +352424,92.558,83.2157 +352425,92.615,87.4477 +352426,92.199,86.0096 +352427,91.755,84.5808 +352428,91.285,83.1626 +352429,91.22,87.4536 +352430,90.844,85.9959 +352431,90.442,84.5479 +352432,90.012,83.1105 +352433,89.824,87.4583 +352434,89.49,85.9819 +352435,89.128,84.5153 +352436,88.739,83.0597 +352437,88.428,87.4619 +352438,88.136,85.9674 +352439,87.815,84.4831 +352440,87.467,83.0101 +352441,87.031,87.4642 +352442,86.781,85.9525 +352443,86.502,84.4514 +352444,86.195,82.9616 +352445,85.634,87.4655 +352446,85.426,85.9373 +352447,85.189,84.42 +352448,84.923,82.9144 +352449,84.237,87.4655 +352450,84.072,85.9216 +352451,83.876,84.389 +352452,83.651,82.8684 +352453,82.84,87.4643 +352454,82.717,85.9055 +352455,82.563,84.3584 +352456,82.38,82.8236 +352457,81.442,87.4619 +352458,81.362,85.889 +352459,81.251,84.3282 +352460,81.109,82.78 +352461,80.045,87.4583 +352462,80.008,85.8721 +352463,79.938,84.2984 +352464,79.838,82.7378 +352465,78.647,87.4534 +352466,78.653,85.8547 +352467,78.626,84.2691 +352468,78.567,82.6968 +352469,77.249,87.4473 +352470,77.298,85.837 +352471,77.313,84.2401 +352472,77.297,82.657 +352473,75.852,87.4399 +352474,75.944,85.8188 +352475,76.001,84.2116 +352476,76.026,82.6185 +352477,74.454,87.4312 +352478,74.589,85.8002 +352479,74.689,84.1835 +352480,74.756,82.5813 +352481,73.056,87.4213 +352482,73.234,85.7811 +352483,73.376,84.1558 +352484,73.485,82.5454 +352485,71.659,87.4101 +352486,71.88,85.7616 +352487,72.064,84.1286 +352488,72.215,82.5108 +352489,70.261,87.3976 +352490,70.525,85.7417 +352491,70.752,84.1017 +352492,70.944,82.4775 +352493,68.864,87.3838 +352494,69.171,85.7213 +352495,69.44,84.0753 +352496,69.673,82.4455 +352497,67.466,87.3688 +352498,67.816,85.7005 +352499,68.127,84.0494 +352500,68.403,82.4148 +352501,66.069,87.3524 +352502,66.462,85.6793 +352503,66.815,84.0238 +352504,67.132,82.3854 +352505,64.673,87.3347 +352506,65.108,85.6576 +352507,65.503,83.9987 +352508,65.86,82.3574 +352509,63.276,87.3157 +352510,63.754,85.6355 +352511,64.19,83.974 +352512,64.589,82.3306 +352513,61.88,87.2954 +352514,62.4,85.6129 +352515,62.878,83.9498 +352516,63.317,82.3051 +352517,60.484,87.2738 +352518,61.047,85.5899 +352519,61.566,83.926 +352520,62.046,82.281 +352521,59.089,87.2508 +352522,59.693,85.5665 +352523,60.253,83.9026 +352524,60.773,82.2581 +352525,57.694,87.2266 +352526,58.34,85.5426 +352527,58.94,83.8796 +352528,59.501,82.2366 +352529,56.299,87.201 +352530,56.986,85.5182 +352531,57.628,83.8571 +352532,58.228,82.2164 +352533,54.905,87.1742 +352534,55.633,85.4935 +352535,56.315,83.835 +352536,56.955,82.1974 +352537,53.511,87.146 +352538,54.28,85.4683 +352539,55.002,83.8134 +352540,55.681,82.1798 +352541,52.118,87.1165 +352542,52.928,85.4426 +352543,53.689,83.7922 +352544,54.407,82.1635 +352545,50.726,87.0857 +352546,51.575,85.4165 +352547,52.375,83.7714 +352548,53.132,82.1484 +352549,49.334,87.0536 +352550,50.223,85.39 +352551,51.062,83.751 +352552,51.857,82.1347 +352553,47.943,87.0202 +352554,48.871,85.3631 +352555,49.749,83.731 +352556,50.581,82.1222 +352557,46.552,86.9855 +352558,47.519,85.3357 +352559,48.435,83.7115 +352560,49.305,82.1109 +352561,45.162,86.9495 +352562,46.168,85.3079 +352563,47.121,83.6924 +352564,48.028,82.101 +352565,43.773,86.9123 +352566,44.817,85.2796 +352567,45.807,83.6737 +352568,46.75,82.0922 +352569,42.385,86.8738 +352570,43.466,85.251 +352571,44.493,83.6554 +352572,45.472,82.0848 +352573,40.997,86.834 +352574,42.115,85.2219 +352575,43.178,83.6375 +352576,44.193,82.0785 +352577,39.61,86.793 +352578,40.765,85.1924 +352579,41.863,83.6201 +352580,42.913,82.0735 +352581,38.224,86.7507 +352582,39.415,85.1625 +352583,40.548,83.603 +352584,41.633,82.0697 +352585,36.839,86.7072 +352586,38.065,85.1321 +352587,39.233,83.5863 +352588,40.352,82.0671 +352589,35.455,86.6624 +352590,36.716,85.1014 +352591,37.918,83.5701 +352592,39.07,82.0656 +352593,34.072,86.6165 +352594,35.367,85.0703 +352595,36.602,83.5542 +352596,37.787,82.0654 +352597,32.69,86.5693 +352598,34.018,85.0387 +352599,35.286,83.5387 +352600,36.504,82.0663 +352601,31.309,86.521 +352602,32.67,85.0068 +352603,33.97,83.5236 +352604,35.219,82.0683 +352605,29.929,86.4714 +352606,31.322,84.9745 +352607,32.654,83.5089 +352608,33.934,82.0715 +352609,28.55,86.4207 +352610,29.974,84.9418 +352611,31.337,83.4945 +352612,32.647,82.0758 +352613,27.171,86.3689 +352614,28.627,84.9087 +352615,30.02,83.4805 +352616,31.36,82.0812 +352617,25.795,86.3159 +352618,27.28,84.8752 +352619,28.702,83.4669 +352620,30.072,82.0877 +352621,24.419,86.2619 +352622,25.933,84.8414 +352623,27.385,83.4536 +352624,28.782,82.0953 +352625,23.044,86.2067 +352626,24.587,84.8072 +352627,26.067,83.4407 +352628,27.492,82.1039 +352629,21.671,86.1504 +352630,23.242,84.7727 +352631,24.748,83.4282 +352632,26.201,82.1135 +352633,20.298,86.0931 +352634,21.896,84.7378 +352635,23.43,83.4159 +352636,24.908,82.1241 +352637,18.927,86.0347 +352638,20.551,84.7025 +352639,22.111,83.4041 +352640,23.615,82.1358 +352641,17.558,85.9753 +352642,19.207,84.6669 +352643,20.791,83.3925 +352644,22.32,82.1484 +352645,16.189,85.9148 +352646,17.863,84.631 +352647,19.472,83.3812 +352648,21.025,82.162 +352649,14.822,85.8534 +352650,16.52,84.5948 +352651,18.152,83.3703 +352652,19.728,82.1765 +352653,13.456,85.791 +352654,15.177,84.5582 +352655,16.831,83.3597 +352656,18.43,82.1919 +352657,12.091,85.7277 +352658,13.834,84.5214 +352659,15.511,83.3494 +352660,17.131,82.2082 +352661,10.728,85.6635 +352662,12.492,84.4842 +352663,14.189,83.3394 +352664,15.83,82.2254 +352665,9.3659,85.5983 +352666,11.15,84.4467 +352667,12.868,83.3296 +352668,14.529,82.2434 +352669,8.0053,85.5322 +352670,9.8088,84.409 +352671,11.546,83.3202 +352672,13.226,82.2622 +352673,6.6462,85.4653 +352674,8.468,84.3709 +352675,10.223,83.311 +352676,11.922,82.2819 +352677,5.2884,85.3976 +352678,7.1278,84.3326 +352679,8.9007,83.3021 +352680,10.617,82.3023 +352681,3.932,85.329 +352682,5.788,84.294 +352683,7.5776,83.2934 +352684,9.3101,82.3235 +352685,2.5771,85.2597 +352686,4.4487,84.2552 +352687,6.254,83.285 +352688,8.0023,82.3454 +352689,1.2236,85.1896 +352690,3.1099,84.2161 +352691,4.93,83.2768 +352692,6.6931,82.3681 +352693,359.87,85.1187 +352694,1.7716,84.1768 +352695,3.6056,83.2688 +352696,5.3826,82.3914 +352697,358.52,85.0472 +352698,0.43385,84.1372 +352699,2.2808,83.2611 +352700,4.0708,82.4154 +352701,357.17,84.9749 +352702,359.1,84.0974 +352703,0.95557,83.2536 +352704,2.7577,82.44 +352705,355.82,84.902 +352706,357.76,84.0574 +352707,359.63,83.2463 +352708,1.4432,82.4652 +352709,354.48,84.8285 +352710,356.42,84.0172 +352711,358.3,83.2392 +352712,0.12732,82.491 +352713,353.13,84.7543 +352714,355.09,83.9768 +352715,356.98,83.2323 +352716,358.81,82.5173 +352717,351.79,84.6796 +352718,353.75,83.9362 +352719,355.65,83.2256 +352720,357.49,82.5442 +352721,350.45,84.6043 +352722,352.42,83.8954 +352723,354.32,83.219 +352724,356.17,82.5716 +352725,349.11,84.5285 +352726,351.08,83.8545 +352727,352.99,83.2126 +352728,354.85,82.5994 +352729,347.77,84.4522 +352730,349.75,83.8134 +352731,351.67,83.2064 +352732,353.53,82.6278 +352733,346.43,84.3754 +352734,348.42,83.7721 +352735,350.34,83.2003 +352736,352.2,82.6565 +352737,345.1,84.2982 +352738,347.08,83.7307 +352739,349.01,83.1943 +352740,350.88,82.6856 +352741,343.76,84.2206 +352742,345.75,83.6892 +352743,347.68,83.1884 +352744,349.55,82.7151 +352745,342.43,84.1426 +352746,344.42,83.6476 +352747,346.35,83.1827 +352748,348.22,82.7449 +352749,341.1,84.0643 +352750,343.09,83.6058 +352751,345.02,83.1771 +352752,346.89,82.775 +352753,339.77,83.9856 +352754,341.76,83.5639 +352755,343.69,83.1716 +352756,345.56,82.8055 +352757,338.44,83.9066 +352758,340.43,83.522 +352759,342.36,83.1662 +352760,344.23,82.8361 +352761,337.12,83.8274 +352762,339.1,83.4799 +352763,341.02,83.1608 +352764,342.89,82.867 +352765,335.79,83.748 +352766,337.77,83.4378 +352767,339.69,83.1555 +352768,341.56,82.8981 +352769,334.47,83.6683 +352770,336.44,83.3956 +352771,338.36,83.1503 +352772,340.22,82.9294 +352773,333.15,83.5885 +352774,335.12,83.3534 +352775,337.03,83.1451 +352776,338.88,82.9608 +352777,331.83,83.5086 +352778,333.79,83.3111 +352779,335.69,83.14 +352780,337.54,82.9923 +352781,330.51,83.4285 +352782,332.46,83.2688 +352783,334.36,83.1349 +352784,336.2,83.0239 +352785,329.19,83.3484 +352786,331.13,83.2265 +352787,333.02,83.1298 +352788,334.86,83.0556 +352789,327.88,83.2682 +352790,329.81,83.1841 +352791,331.69,83.1247 +352792,333.52,83.0873 +352793,326.56,83.188 +352794,328.48,83.1418 +352795,330.35,83.1196 +352796,332.17,83.119 +352797,325.25,83.1078 +352798,327.16,83.0994 +352799,329.02,83.1146 +352800,330.82,83.1506 +352801,323.94,83.0276 +352802,325.84,83.0571 +352803,327.68,83.1095 +352804,329.48,83.1822 +352805,322.63,82.9476 +352806,324.51,83.0148 +352807,326.34,83.1044 +352808,328.13,83.2138 +352809,321.32,82.8676 +352810,323.19,82.9725 +352811,325.01,83.0992 +352812,326.78,83.2452 +352813,320.02,82.7878 +352814,321.87,82.9303 +352815,323.67,83.094 +352816,325.42,83.2764 +352817,318.71,82.7081 +352818,320.54,82.8881 +352819,322.33,83.0887 +352820,324.07,83.3075 +352821,317.41,82.6286 +352822,319.22,82.846 +352823,320.99,83.0834 +352824,322.71,83.3384 +352825,316.1,82.5494 +352826,317.9,82.804 +352827,319.65,83.078 +352828,321.36,83.3691 +352829,314.8,82.4704 +352830,316.58,82.762 +352831,318.31,83.0725 +352832,320,83.3995 +352833,313.5,82.3917 +352834,315.26,82.7202 +352835,316.97,83.0669 +352836,318.64,83.4296 +352837,312.2,82.3133 +352838,313.94,82.6785 +352839,315.63,83.0612 +352840,317.28,83.4594 +352841,310.91,82.2353 +352842,312.62,82.6368 +352843,314.29,83.0554 +352844,315.92,83.4889 +352845,309.61,82.1576 +352846,311.3,82.5953 +352847,312.95,83.0495 +352848,314.56,83.5181 +352849,308.32,82.0804 +352850,309.98,82.5539 +352851,311.61,83.0435 +352852,313.19,83.5468 +352853,307.02,82.0036 +352854,308.67,82.5127 +352855,310.27,83.0373 +352856,311.83,83.5751 +352857,305.73,81.9272 +352858,307.35,82.4716 +352859,308.92,83.031 +352860,310.46,83.603 +352861,304.44,81.8513 +352862,306.03,82.4307 +352863,307.58,83.0245 +352864,309.09,83.6304 +352865,303.15,81.776 +352866,304.72,82.39 +352867,306.24,83.0178 +352868,307.72,83.6573 +352869,301.87,81.7012 +352870,303.4,82.3494 +352871,304.9,83.011 +352872,306.35,83.6837 +352873,300.58,81.6269 +352874,302.08,82.3091 +352875,303.55,83.0039 +352876,304.98,83.7095 +352877,299.29,81.5533 +352878,300.77,82.2689 +352879,302.21,82.9967 +352880,303.61,83.7348 +352881,298.01,81.4803 +352882,299.45,82.2289 +352883,300.86,82.9893 +352884,302.24,83.7595 +352885,296.73,81.4079 +352886,298.14,82.1892 +352887,299.52,82.9817 +352888,300.86,83.7836 +352889,295.44,81.3363 +352890,296.83,82.1496 +352891,298.17,82.9739 +352892,299.49,83.807 +352893,294.16,81.2653 +352894,295.51,82.1103 +352895,296.83,82.9658 +352896,298.11,83.8297 +352897,292.88,81.195 +352898,294.2,82.0713 +352899,295.48,82.9575 +352900,296.73,83.8518 +352901,291.6,81.1256 +352902,292.89,82.0324 +352903,294.14,82.949 +352904,295.35,83.8731 +352905,290.32,81.0568 +352906,291.57,81.9939 +352907,292.79,82.9402 +352908,293.97,83.8937 +352909,289.05,80.9889 +352910,290.26,81.9556 +352911,291.44,82.9311 +352912,292.59,83.9136 +352913,287.77,80.9218 +352914,288.95,81.9176 +352915,290.1,82.9218 +352916,291.21,83.9326 +352917,286.5,80.8556 +352918,287.64,81.8798 +352919,288.75,82.9122 +352920,289.83,83.9509 +352921,285.22,80.7902 +352922,286.33,81.8424 +352923,287.4,82.9024 +352924,288.44,83.9684 +352925,283.95,80.7258 +352926,285.02,81.8052 +352927,286.05,82.8922 +352928,287.06,83.985 +352929,282.68,80.6622 +352930,283.71,81.7684 +352931,284.71,82.8818 +352932,285.67,84.0007 +352933,281.4,80.5996 +352934,282.4,81.7318 +352935,283.36,82.8711 +352936,284.29,84.0155 +352937,280.13,80.5379 +352938,281.09,81.6956 +352939,282.01,82.86 +352940,282.9,84.0295 +352941,278.86,80.4772 +352942,279.78,81.6596 +352943,280.66,82.8487 +352944,281.51,84.0425 +352945,277.59,80.4175 +352946,278.47,81.6241 +352947,279.31,82.837 +352948,280.13,84.0546 +352949,276.32,80.3588 +352950,277.16,81.5888 +352951,277.96,82.825 +352952,278.74,84.0657 +352953,275.06,80.3011 +352954,275.85,81.5539 +352955,276.61,82.8127 +352956,277.35,84.0758 +352957,273.79,80.2445 +352958,274.54,81.5193 +352959,275.26,82.8 +352960,275.96,84.085 +352961,272.52,80.189 +352962,273.23,81.4851 +352963,273.91,82.787 +352964,274.57,84.0931 +352965,271.26,80.1345 +352966,271.92,81.4512 +352967,272.56,82.7737 +352968,273.17,84.1002 +352969,269.99,80.0811 +352970,270.62,81.4177 +352971,271.21,82.76 +352972,271.78,84.1063 +352973,268.72,80.0289 +352974,269.31,81.3846 +352975,269.86,82.7459 +352976,270.39,84.1113 +352977,267.46,79.978 +352978,268,81.3518 +352979,268.51,82.7315 +352980,269,84.1152 +352981,266.2,79.928 +352982,266.69,81.3194 +352983,267.16,82.7167 +352984,267.6,84.1181 +352985,264.93,79.879 +352986,265.39,81.2874 +352987,265.81,82.7016 +352988,266.21,84.1198 +352989,263.67,79.831 +352990,264.08,81.2558 +352991,264.46,82.686 +352992,264.82,84.1205 +352993,262.4,79.785 +352994,262.77,81.2246 +352995,263.11,82.6701 +352996,263.42,84.12 +352997,261.14,79.739 +352998,261.47,81.1937 +352999,261.76,82.6538 +353000,262.03,84.1184 +353001,259.88,79.695 +353002,260.16,81.1633 +353003,260.41,82.6372 +353004,260.63,84.1156 +353005,258.62,79.652 +353006,258.85,81.1333 +353007,259.06,82.6201 +353008,259.24,84.1117 +353009,257.35,79.611 +353010,257.55,81.1036 +353011,257.71,82.6026 +353012,257.84,84.1066 +353013,256.09,79.57 +353014,256.24,81.0744 +353015,256.36,82.5848 +353016,256.44,84.1004 +353017,254.83,79.531 +353018,254.93,81.0456 +353019,255.01,82.5665 +353020,255.05,84.0929 +353021,253.57,79.493 +353022,253.63,81.0172 +353023,253.66,82.5479 +353024,253.65,84.0843 +353025,252.31,79.456 +353026,252.32,80.9892 +353027,252.31,82.5288 +353028,252.26,84.0744 +353029,251.05,79.421 +353030,251.02,80.9616 +353031,250.95,82.5093 +353032,250.86,84.0634 +353033,249.78,79.387 +353034,249.71,80.9344 +353035,249.6,82.4895 +353036,249.46,84.0511 +353037,248.52,79.354 +353038,248.4,80.9077 +353039,248.25,82.4692 +353040,248.07,84.0376 +353041,247.26,79.322 +353042,247.1,80.8814 +353043,246.9,82.4485 +353044,246.67,84.0229 +353045,246,79.292 +353046,245.79,80.8555 +353047,245.55,82.4274 +353048,245.28,84.007 +353049,244.74,79.263 +353050,244.49,80.83 +353051,244.2,82.4059 +353052,243.88,83.9898 +353053,243.47,79.235 +353054,243.18,80.8049 +353055,242.85,82.384 +353056,242.48,83.9714 +353057,242.21,79.208 +353058,241.87,80.7803 +353059,241.5,82.3616 +353060,241.09,83.9517 +353061,240.95,79.183 +353062,240.57,80.7561 +353063,240.15,82.3388 +353064,239.69,83.9308 +353065,239.69,79.159 +353066,239.26,80.7323 +353067,238.8,82.3157 +353068,238.3,83.9087 +353069,238.42,79.136 +353070,237.96,80.709 +353071,237.45,82.2921 +353072,236.9,83.8853 +353073,237.16,79.115 +353074,236.65,80.6861 +353075,236.1,82.2681 +353076,235.51,83.8607 +353077,235.9,79.095 +353078,235.34,80.6636 +353079,234.75,82.2436 +353080,234.11,83.8348 +353081,234.63,79.076 +353082,234.04,80.6415 +353083,233.4,82.2188 +353084,232.72,83.8077 +353085,233.37,79.058 +353086,232.73,80.6198 +353087,232.05,82.1936 +353088,231.33,83.7794 +353089,232.1,79.042 +353090,231.42,80.5986 +353091,230.7,82.1679 +353092,229.94,83.7498 +353093,230.84,79.026 +353094,230.12,80.5778 +353095,229.35,82.1418 +353096,228.54,83.719 +353097,229.57,79.013 +353098,228.81,80.5574 +353099,228,82.1154 +353100,227.15,83.6869 +353101,228.31,79 +353102,227.5,80.5374 +353103,226.65,82.0885 +353104,225.76,83.6536 +353105,227.04,78.989 +353106,226.19,80.5178 +353107,225.31,82.0612 +353108,224.37,83.6191 +353109,225.77,78.978 +353110,224.89,80.4987 +353111,223.96,82.0335 +353112,222.98,83.5834 +353113,224.5,78.969 +353114,223.58,80.4799 +353115,222.61,82.0054 +353116,221.59,83.5465 +353117,223.23,78.962 +353118,222.27,80.4616 +353119,221.26,81.9769 +353120,220.2,83.5084 +353121,221.96,78.955 +353122,220.96,80.4436 +353123,219.92,81.948 +353124,218.82,83.4691 +353125,220.69,78.95 +353126,219.65,80.4261 +353127,218.57,81.9187 +353128,217.43,83.4285 +353129,219.42,78.946 +353130,218.35,80.409 +353131,217.22,81.889 +353132,216.04,83.3869 +353133,218.15,78.943 +353134,217.04,80.3922 +353135,215.87,81.859 +353136,214.66,83.344 +353137,216.88,78.941 +353138,215.73,80.3759 +353139,214.53,81.8285 +353140,213.27,83.3 +353141,215.6,78.94 +353142,214.42,80.3599 +353143,213.18,81.7977 +353144,211.89,83.2548 +353145,214.33,78.94 +353146,213.11,80.3443 +353147,211.84,81.7665 +353148,210.51,83.2085 +353149,213.05,78.942 +353150,211.8,80.3291 +353151,210.49,81.735 +353152,209.13,83.1611 +353153,211.78,78.945 +353154,210.49,80.3142 +353155,209.15,81.703 +353156,207.75,83.1126 +353157,210.5,78.948 +353158,209.18,80.2998 +353159,207.8,81.6707 +353160,206.37,83.063 +353161,209.22,78.953 +353162,207.87,80.2857 +353163,206.46,81.6381 +353164,204.99,83.0123 +353165,207.94,78.959 +353166,206.56,80.2719 +353167,205.12,81.6051 +353168,203.61,82.9605 +353169,206.66,78.966 +353170,205.24,80.2585 +353171,203.77,81.5718 +353172,202.24,82.9076 +353173,205.38,78.974 +353174,203.93,80.2454 +353175,202.43,81.5381 +353176,200.86,82.8538 +353177,204.1,78.983 +353178,202.62,80.2327 +353179,201.09,81.5041 +353180,199.49,82.7989 +353181,202.82,78.993 +353182,201.31,80.2203 +353183,199.74,81.4697 +353184,198.12,82.7429 +353185,201.53,79.004 +353186,199.99,80.2083 +353187,198.4,81.435 +353188,196.74,82.686 +353189,200.25,79.015 +353190,198.68,80.1965 +353191,197.06,81.4001 +353192,195.37,82.6282 +353193,198.96,79.028 +353194,197.37,80.1851 +353195,195.72,81.3648 +353196,194.01,82.5693 +353197,197.67,79.042 +353198,196.05,80.174 +353199,194.38,81.3292 +353200,192.64,82.5096 +353201,196.38,79.056 +353202,194.74,80.1632 +353203,193.04,81.2933 +353204,191.27,82.4489 +353205,195.09,79.072 +353206,193.43,80.1527 +353207,191.7,81.2571 +353208,189.91,82.3873 +353209,193.8,79.088 +353210,192.11,80.1425 +353211,190.36,81.2206 +353212,188.54,82.3249 +353213,192.51,79.105 +353214,190.79,80.1325 +353215,189.02,81.1838 +353216,187.18,82.2616 +353217,191.21,79.123 +353218,189.48,80.1229 +353219,187.69,81.1468 +353220,185.82,82.1974 +353221,189.92,79.142 +353222,188.16,80.1135 +353223,186.35,81.1095 +353224,184.46,82.1325 +353225,188.62,79.161 +353226,186.85,80.1043 +353227,185.01,81.072 +353228,183.1,82.0667 +353229,187.32,79.181 +353230,185.53,80.0955 +353231,183.67,81.0342 +353232,181.75,82.0002 +353233,186.02,79.202 +353234,184.21,80.0868 +353235,182.34,80.9962 +353236,180.39,81.9329 +353237,184.72,79.224 +353238,182.89,80.0784 +353239,181,80.9579 +353240,179.04,81.865 +353241,183.42,79.246 +353242,181.57,80.0702 +353243,179.67,80.9195 +353244,177.69,81.7963 +353245,182.11,79.269 +353246,180.26,80.0623 +353247,178.33,80.8808 +353248,176.34,81.7269 +353249,180.81,79.292 +353250,178.94,80.0545 +353251,177,80.8419 +353252,174.99,81.6569 +353253,179.5,79.316 +353254,177.62,80.047 +353255,175.67,80.8028 +353256,173.64,81.5863 +353257,178.2,79.341 +353258,176.3,80.0396 +353259,174.33,80.7635 +353260,172.29,81.5151 +353261,176.89,79.366 +353262,174.98,80.0325 +353263,173,80.724 +353264,170.95,81.4433 +353265,175.58,79.391 +353266,173.65,80.0255 +353267,171.67,80.6844 +353268,169.61,81.3709 +353269,174.26,79.418 +353270,172.33,80.0187 +353271,170.34,80.6446 +353272,168.27,81.2981 +353273,172.95,79.444 +353274,171.01,80.012 +353275,169.01,80.6046 +353276,166.93,81.2247 +353277,171.63,79.471 +353278,169.69,80.0055 +353279,167.68,80.5645 +353280,165.59,81.1509 +353281,170.32,79.498 +353282,168.36,79.999 +353283,166.35,80.5242 +353284,164.25,81.0766 +353285,169,79.526 +353286,167.04,79.993 +353287,165.02,80.4839 +353288,162.92,81.002 +353289,167.68,79.554 +353290,165.72,79.987 +353291,163.69,80.4434 +353292,161.58,80.9269 +353293,166.36,79.583 +353294,164.39,79.981 +353295,162.36,80.4028 +353296,160.25,80.8515 +353297,165.04,79.611 +353298,163.07,79.975 +353299,161.03,80.3621 +353300,158.92,80.7758 +353301,163.71,79.64 +353302,161.74,79.969 +353303,159.7,80.3213 +353304,157.59,80.6997 +353305,162.39,79.67 +353306,160.42,79.963 +353307,158.38,80.2804 +353308,156.27,80.6234 +353309,161.06,79.699 +353310,159.09,79.958 +353311,157.05,80.2394 +353312,154.94,80.5469 +353313,159.73,79.729 +353314,157.76,79.952 +353315,155.73,80.1984 +353316,153.62,80.4701 +353317,158.4,79.758 +353318,156.43,79.947 +353319,154.4,80.1574 +353320,152.3,80.3931 +353321,157.07,79.788 +353322,155.11,79.941 +353323,153.08,80.1163 +353324,150.98,80.316 +353325,155.74,79.818 +353326,153.78,79.936 +353327,151.75,80.0751 +353328,149.66,80.2388 +353329,154.4,79.848 +353330,152.45,79.931 +353331,150.43,80.034 +353332,148.34,80.1615 +353333,153.07,79.879 +353334,151.12,79.925 +353335,149.11,79.993 +353336,147.03,80.0841 +353337,151.73,79.909 +353338,149.79,79.92 +353339,147.79,79.952 +353340,145.71,80.0066 +353341,150.39,79.939 +353342,148.46,79.915 +353343,146.47,79.91 +353344,144.4,79.929 +353345,149.05,79.969 +353346,147.13,79.909 +353347,145.14,79.869 +353348,143.09,79.852 +353349,147.71,79.999 +353350,145.8,79.904 +353351,143.82,79.828 +353352,141.78,79.774 +353353,146.37,80.0287 +353354,144.47,79.898 +353355,142.5,79.787 +353356,140.48,79.697 +353357,145.02,80.0585 +353358,143.13,79.893 +353359,141.18,79.746 +353360,139.17,79.62 +353361,143.68,80.0881 +353362,141.8,79.888 +353363,139.87,79.705 +353364,137.87,79.543 +353365,142.33,80.1175 +353366,140.47,79.882 +353367,138.55,79.664 +353368,136.56,79.466 +353369,140.98,80.1468 +353370,139.13,79.876 +353371,137.23,79.623 +353372,135.26,79.389 +353373,139.63,80.1758 +353374,137.8,79.871 +353375,135.91,79.582 +353376,133.96,79.313 +353377,138.28,80.2045 +353378,136.46,79.865 +353379,134.6,79.542 +353380,132.66,79.237 +353381,136.92,80.233 +353382,135.13,79.859 +353383,133.28,79.501 +353384,131.37,79.161 +353385,135.57,80.2611 +353386,133.79,79.853 +353387,131.96,79.46 +353388,130.07,79.085 +353389,134.21,80.2889 +353390,132.46,79.847 +353391,130.65,79.42 +353392,128.78,79.01 +353393,132.86,80.3163 +353394,131.12,79.841 +353395,129.33,79.38 +353396,127.49,78.935 +353397,131.5,80.3434 +353398,129.79,79.835 +353399,128.02,79.34 +353400,126.2,78.86 +353401,130.14,80.37 +353402,128.45,79.828 +353403,126.71,79.3 +353404,124.91,78.786 +353405,128.78,80.3962 +353406,127.11,79.822 +353407,125.39,79.26 +353408,123.62,78.713 +353409,127.41,80.4219 +353410,125.77,79.815 +353411,124.08,79.22 +353412,122.33,78.64 +353413,126.05,80.4471 +353414,124.43,79.808 +353415,122.77,79.181 +353416,121.05,78.567 +353417,124.68,80.4718 +353418,123.1,79.801 +353419,121.46,79.142 +353420,119.76,78.495 +353421,123.32,80.496 +353422,121.76,79.794 +353423,120.14,79.102 +353424,118.48,78.423 +353425,121.95,80.5196 +353426,120.42,79.787 +353427,118.83,79.064 +353428,117.2,78.352 +353429,120.58,80.5426 +353430,119.08,79.779 +353431,117.52,79.025 +353432,115.92,78.282 +353433,119.21,80.565 +353434,117.74,79.771 +353435,116.21,78.986 +353436,114.64,78.212 +353437,117.84,80.5867 +353438,116.39,79.763 +353439,114.9,78.948 +353440,113.36,78.143 +353441,116.47,80.6078 +353442,115.05,79.755 +353443,113.59,78.91 +353444,112.09,78.075 +353445,115.09,80.6282 +353446,113.71,79.747 +353447,112.29,78.872 +353448,110.81,78.007 +353449,113.72,80.6479 +353450,112.37,79.738 +353451,110.98,78.835 +353452,109.54,77.94 +353453,112.34,80.6669 +353454,111.03,79.729 +353455,109.67,78.797 +353456,108.26,77.874 +353457,110.97,80.6851 +353458,109.69,79.72 +353459,108.36,78.76 +353460,106.99,77.809 +353461,109.59,80.7026 +353462,108.34,79.71 +353463,107.05,78.724 +353464,105.72,77.744 +353465,108.21,80.7192 +353466,107,79.701 +353467,105.75,78.687 +353468,104.45,77.681 +353469,106.83,80.7351 +353470,105.66,79.691 +353471,104.44,78.651 +353472,103.18,77.618 +353473,105.45,80.7501 +353474,104.31,79.681 +353475,103.13,78.615 +353476,101.91,77.556 +353477,104.07,80.7643 +353478,102.97,79.67 +353479,101.83,78.58 +353480,100.65,77.495 +353481,102.69,80.7776 +353482,101.62,79.659 +353483,100.52,78.544 +353484,99.382,77.435 +353485,101.3,80.79 +353486,100.28,79.648 +353487,99.218,78.509 +353488,98.117,77.375 +353489,99.918,80.8015 +353490,98.934,79.637 +353491,97.913,78.475 +353492,96.853,77.317 +353493,98.533,80.8121 +353494,97.589,79.625 +353495,96.608,78.44 +353496,95.589,77.26 +353497,97.147,80.8218 +353498,96.244,79.613 +353499,95.304,78.406 +353500,94.327,77.203 +353501,95.76,80.8305 +353502,94.898,79.601 +353503,94,78.373 +353504,93.065,77.148 +353505,94.373,80.8382 +353506,93.553,79.588 +353507,92.696,78.339 +353508,91.804,77.094 +353509,92.985,80.845 +353510,92.206,79.575 +353511,91.393,78.306 +353512,90.543,77.041 +353513,91.596,80.8507 +353514,90.86,79.562 +353515,90.09,78.274 +353516,89.283,76.988 +353517,90.207,80.8555 +353518,89.514,79.548 +353519,88.787,78.241 +353520,88.024,76.937 +353521,88.817,80.8591 +353522,88.167,79.534 +353523,87.484,78.209 +353524,86.765,76.887 +353525,87.426,80.8618 +353526,86.821,79.52 +353527,86.181,78.178 +353528,85.507,76.838 +353529,86.035,80.8634 +353530,85.474,79.505 +353531,84.879,78.147 +353532,84.25,76.791 +353533,84.644,80.8639 +353534,84.127,79.49 +353535,83.577,78.116 +353536,82.993,76.744 +353537,83.252,80.8634 +353538,82.779,79.474 +353539,82.275,78.086 +353540,81.736,76.698 +353541,81.859,80.8617 +353542,81.432,79.459 +353543,80.973,78.056 +353544,80.48,76.654 +353545,80.466,80.859 +353546,80.085,79.442 +353547,79.671,78.026 +353548,79.225,76.611 +353549,79.073,80.8551 +353550,78.737,79.426 +353551,78.369,77.997 +353552,77.969,76.569 +353553,77.679,80.8501 +353554,77.39,79.409 +353555,77.068,77.968 +353556,76.714,76.528 +353557,76.285,80.844 +353558,76.042,79.392 +353559,75.767,77.939 +353560,75.459,76.488 +353561,74.891,80.8367 +353562,74.694,79.374 +353563,74.465,77.911 +353564,74.205,76.45 +353565,73.497,80.8283 +353566,73.347,79.356 +353567,73.164,77.884 +353568,72.95,76.412 +353569,72.102,80.8188 +353570,71.999,79.338 +353571,71.863,77.856 +353572,71.696,76.376 +353573,70.707,80.808 +353574,70.651,79.319 +353575,70.562,77.829 +353576,70.442,76.342 +353577,69.312,80.7961 +353578,69.303,79.299 +353579,69.262,77.803 +353580,69.188,76.308 +353581,67.917,80.7831 +353582,67.955,79.28 +353583,67.961,77.777 +353584,67.934,76.276 +353585,66.522,80.7688 +353586,66.607,79.26 +353587,66.66,77.751 +353588,66.68,76.245 +353589,65.127,80.7534 +353590,65.259,79.239 +353591,65.359,77.726 +353592,65.427,76.215 +353593,63.732,80.7367 +353594,63.912,79.219 +353595,64.058,77.701 +353596,64.173,76.186 +353597,62.336,80.7189 +353598,62.564,79.197 +353599,62.758,77.677 +353600,62.919,76.159 +353601,60.941,80.6999 +353602,61.216,79.176 +353603,61.457,77.653 +353604,61.665,76.133 +353605,59.546,80.6797 +353606,59.868,79.154 +353607,60.156,77.629 +353608,60.41,76.108 +353609,58.152,80.6583 +353610,58.521,79.131 +353611,58.855,77.606 +353612,59.156,76.084 +353613,56.757,80.6357 +353614,57.173,79.109 +353615,57.554,77.584 +353616,57.901,76.062 +353617,55.363,80.6119 +353618,55.826,79.085 +353619,56.253,77.561 +353620,56.646,76.041 +353621,53.969,80.587 +353622,54.479,79.062 +353623,54.952,77.539 +353624,55.391,76.021 +353625,52.575,80.5608 +353626,53.132,79.038 +353627,53.651,77.518 +353628,54.136,76.002 +353629,51.181,80.5334 +353630,51.785,79.013 +353631,52.35,77.497 +353632,52.88,75.985 +353633,49.788,80.5048 +353634,50.438,78.989 +353635,51.049,77.476 +353636,51.623,75.968 +353637,48.396,80.4751 +353638,49.091,78.963 +353639,49.747,77.456 +353640,50.367,75.954 +353641,47.003,80.4441 +353642,47.745,78.938 +353643,48.446,77.436 +353644,49.109,75.94 +353645,45.612,80.412 +353646,46.398,78.912 +353647,47.144,77.417 +353648,47.852,75.927 +353649,44.22,80.3787 +353650,45.052,78.886 +353651,45.842,77.398 +353652,46.594,75.916 +353653,42.83,80.3442 +353654,43.706,78.859 +353655,44.54,77.379 +353656,45.335,75.906 +353657,41.44,80.3086 +353658,42.361,78.832 +353659,43.238,77.361 +353660,44.075,75.897 +353661,40.05,80.2718 +353662,41.015,78.804 +353663,41.935,77.343 +353664,42.815,75.889 +353665,38.661,80.2338 +353666,39.67,78.776 +353667,40.633,77.326 +353668,41.555,75.883 +353669,37.273,80.1947 +353670,38.325,78.748 +353671,39.33,77.309 +353672,40.293,75.878 +353673,35.886,80.1545 +353674,36.98,78.719 +353675,38.027,77.292 +353676,39.031,75.873 +353677,34.499,80.1132 +353678,35.636,78.69 +353679,36.724,77.276 +353680,37.769,75.87 +353681,33.113,80.0707 +353682,34.292,78.661 +353683,35.42,77.26 +353684,36.505,75.869 +353685,31.728,80.0271 +353686,32.948,78.631 +353687,34.117,77.245 +353688,35.24,75.868 +353689,30.344,79.982 +353690,31.604,78.601 +353691,32.813,77.23 +353692,33.975,75.868 +353693,28.961,79.937 +353694,30.261,78.57 +353695,31.508,77.215 +353696,32.709,75.87 +353697,27.579,79.89 +353698,28.918,78.54 +353699,30.204,77.2 +353700,31.442,75.872 +353701,26.197,79.842 +353702,27.576,78.508 +353703,28.899,77.186 +353704,30.174,75.876 +353705,24.817,79.793 +353706,26.233,78.477 +353707,27.594,77.173 +353708,28.905,75.88 +353709,23.438,79.743 +353710,24.892,78.445 +353711,26.288,77.16 +353712,27.635,75.886 +353713,22.059,79.692 +353714,23.55,78.413 +353715,24.982,77.147 +353716,26.364,75.893 +353717,20.682,79.64 +353718,22.209,78.38 +353719,23.676,77.134 +353720,25.092,75.901 +353721,19.306,79.587 +353722,20.868,78.347 +353723,22.37,77.122 +353724,23.819,75.909 +353725,17.931,79.533 +353726,19.528,78.314 +353727,21.063,77.11 +353728,22.545,75.919 +353729,16.557,79.478 +353730,18.188,78.281 +353731,19.756,77.098 +353732,21.27,75.93 +353733,15.185,79.422 +353734,16.849,78.247 +353735,18.448,77.087 +353736,19.993,75.941 +353737,13.813,79.366 +353738,15.51,78.213 +353739,17.141,77.076 +353740,18.716,75.954 +353741,12.443,79.308 +353742,14.171,78.178 +353743,15.832,77.065 +353744,17.437,75.967 +353745,11.074,79.249 +353746,12.833,78.144 +353747,14.524,77.055 +353748,16.157,75.982 +353749,9.7069,79.19 +353750,11.495,78.109 +353751,13.215,77.045 +353752,14.876,75.997 +353753,8.3407,79.13 +353754,10.158,78.074 +353755,11.905,77.035 +353756,13.593,76.013 +353757,6.9759,79.069 +353758,8.8209,78.038 +353759,10.595,77.025 +353760,12.309,76.029 +353761,5.6124,79.007 +353762,7.4845,78.002 +353763,9.285,77.016 +353764,11.024,76.047 +353765,4.2504,78.944 +353766,6.1486,77.966 +353767,7.9743,77.007 +353768,9.738,76.065 +353769,2.8897,78.881 +353770,4.8132,77.93 +353771,6.6632,76.999 +353772,8.4504,76.085 +353773,1.5305,78.816 +353774,3.4783,77.894 +353775,5.3516,76.99 +353776,7.1613,76.104 +353777,0.17279,78.751 +353778,2.1438,77.857 +353779,4.0396,76.982 +353780,5.871,76.125 +353781,358.82,78.686 +353782,0.80993,77.82 +353783,2.7272,76.974 +353784,4.5792,76.146 +353785,357.46,78.619 +353786,359.48,77.783 +353787,1.4142,76.966 +353788,3.286,76.168 +353789,356.11,78.552 +353790,358.14,77.745 +353791,0.10087,76.958 +353792,1.9914,76.19 +353793,354.76,78.485 +353794,356.81,77.708 +353795,358.79,76.951 +353796,0.69543,76.213 +353797,353.41,78.417 +353798,355.48,77.67 +353799,357.47,76.944 +353800,359.4,76.237 +353801,352.06,78.348 +353802,354.15,77.632 +353803,356.16,76.937 +353804,358.1,76.261 +353805,350.71,78.278 +353806,352.82,77.594 +353807,354.84,76.93 +353808,356.8,76.286 +353809,349.37,78.209 +353810,351.49,77.555 +353811,353.53,76.924 +353812,355.5,76.311 +353813,348.02,78.138 +353814,350.16,77.517 +353815,352.21,76.917 +353816,354.19,76.337 +353817,346.68,78.067 +353818,348.83,77.478 +353819,350.89,76.911 +353820,352.89,76.363 +353821,345.34,77.996 +353822,347.5,77.44 +353823,349.58,76.905 +353824,351.58,76.39 +353825,344,77.924 +353826,346.17,77.401 +353827,348.26,76.899 +353828,350.27,76.417 +353829,342.66,77.852 +353830,344.84,77.362 +353831,346.94,76.893 +353832,348.97,76.444 +353833,341.33,77.779 +353834,343.52,77.322 +353835,345.62,76.887 +353836,347.65,76.472 +353837,339.99,77.707 +353838,342.19,77.283 +353839,344.3,76.882 +353840,346.34,76.5 +353841,338.66,77.633 +353842,340.86,77.244 +353843,342.98,76.876 +353844,345.03,76.528 +353845,337.33,77.56 +353846,339.54,77.204 +353847,341.66,76.871 +353848,343.71,76.557 +353849,336,77.486 +353850,338.21,77.165 +353851,340.34,76.865 +353852,342.4,76.585 +353853,334.68,77.412 +353854,336.89,77.125 +353855,339.02,76.86 +353856,341.08,76.614 +353857,333.35,77.338 +353858,335.57,77.086 +353859,337.7,76.855 +353860,339.76,76.643 +353861,332.03,77.263 +353862,334.24,77.046 +353863,336.38,76.85 +353864,338.43,76.673 +353865,330.7,77.189 +353866,332.92,77.006 +353867,335.05,76.845 +353868,337.11,76.702 +353869,329.38,77.114 +353870,331.6,76.966 +353871,333.73,76.84 +353872,335.79,76.732 +353873,328.07,77.039 +353874,330.28,76.927 +353875,332.41,76.835 +353876,334.46,76.761 +353877,326.75,76.964 +353878,328.96,76.887 +353879,331.08,76.83 +353880,333.13,76.791 +353881,325.43,76.889 +353882,327.64,76.847 +353883,329.76,76.825 +353884,331.8,76.821 +353885,324.12,76.814 +353886,326.32,76.807 +353887,328.43,76.82 +353888,330.47,76.85 +353889,322.81,76.739 +353890,325,76.767 +353891,327.11,76.815 +353892,329.14,76.88 +353893,321.5,76.664 +353894,323.68,76.727 +353895,325.78,76.81 +353896,327.8,76.91 +353897,320.19,76.589 +353898,322.36,76.688 +353899,324.45,76.805 +353900,326.47,76.939 +353901,318.88,76.515 +353902,321.05,76.648 +353903,323.13,76.8 +353904,325.13,76.968 +353905,317.58,76.44 +353906,319.73,76.608 +353907,321.8,76.795 +353908,323.79,76.998 +353909,316.27,76.366 +353910,318.41,76.569 +353911,320.47,76.79 +353912,322.45,77.027 +353913,314.97,76.291 +353914,317.1,76.529 +353915,319.14,76.785 +353916,321.11,77.055 +353917,313.67,76.217 +353918,315.78,76.49 +353919,317.81,76.779 +353920,319.77,77.084 +353921,312.37,76.143 +353922,314.47,76.45 +353923,316.48,76.774 +353924,318.42,77.112 +353925,311.08,76.07 +353926,313.15,76.411 +353927,315.15,76.769 +353928,317.08,77.14 +353929,309.78,75.997 +353930,311.84,76.372 +353931,313.82,76.763 +353932,315.73,77.168 +353933,308.49,75.924 +353934,310.53,76.333 +353935,312.49,76.758 +353936,314.38,77.195 +353937,307.2,75.851 +353938,309.22,76.294 +353939,311.16,76.752 +353940,313.03,77.223 +353941,305.91,75.779 +353942,307.9,76.255 +353943,309.82,76.746 +353944,311.68,77.249 +353945,304.62,75.707 +353946,306.59,76.216 +353947,308.49,76.74 +353948,310.32,77.275 +353949,303.33,75.636 +353950,305.28,76.178 +353951,307.16,76.734 +353952,308.97,77.301 +353953,302.04,75.565 +353954,303.97,76.14 +353955,305.82,76.728 +353956,307.61,77.326 +353957,300.76,75.494 +353958,302.66,76.101 +353959,304.49,76.721 +353960,306.25,77.351 +353961,299.48,75.424 +353962,301.35,76.063 +353963,303.16,76.715 +353964,304.89,77.376 +353965,298.19,75.355 +353966,300.04,76.026 +353967,301.82,76.708 +353968,303.53,77.399 +353969,296.91,75.286 +353970,298.73,75.988 +353971,300.49,76.701 +353972,302.17,77.423 +353973,295.64,75.218 +353974,297.43,75.951 +353975,299.15,76.694 +353976,300.81,77.445 +353977,294.36,75.15 +353978,296.12,75.913 +353979,297.81,76.686 +353980,299.44,77.467 +353981,293.08,75.083 +353982,294.81,75.876 +353983,296.48,76.679 +353984,298.08,77.489 +353985,291.81,75.017 +353986,293.51,75.84 +353987,295.14,76.671 +353988,296.71,77.51 +353989,290.53,74.951 +353990,292.2,75.803 +353991,293.8,76.663 +353992,295.34,77.53 +353993,289.26,74.886 +353994,290.89,75.767 +353995,292.46,76.655 +353996,293.97,77.549 +353997,287.99,74.822 +353998,289.59,75.731 +353999,291.13,76.647 +354000,292.6,77.568 +354001,286.72,74.759 +354002,288.28,75.695 +354003,289.79,76.638 +354004,291.23,77.586 +354005,285.45,74.696 +354006,286.98,75.659 +354007,288.45,76.629 +354008,289.86,77.603 +354009,284.19,74.634 +354010,285.68,75.624 +354011,287.11,76.62 +354012,288.48,77.619 +354013,282.92,74.573 +354014,284.37,75.589 +354015,285.77,76.61 +354016,287.11,77.635 +354017,281.66,74.513 +354018,283.07,75.554 +354019,284.43,76.601 +354020,285.73,77.65 +354021,280.39,74.454 +354022,281.77,75.52 +354023,283.09,76.591 +354024,284.36,77.664 +354025,279.13,74.395 +354026,280.46,75.486 +354027,281.75,76.58 +354028,282.98,77.677 +354029,277.87,74.338 +354030,279.16,75.452 +354031,280.41,76.57 +354032,281.6,77.689 +354033,276.61,74.281 +354034,277.86,75.419 +354035,279.06,76.559 +354036,280.22,77.7 +354037,275.35,74.226 +354038,276.56,75.385 +354039,277.72,76.548 +354040,278.84,77.711 +354041,274.09,74.171 +354042,275.26,75.352 +354043,276.38,76.536 +354044,277.46,77.72 +354045,272.83,74.117 +354046,273.96,75.32 +354047,275.04,76.524 +354048,276.07,77.729 +354049,271.57,74.065 +354050,272.66,75.288 +354051,273.7,76.512 +354052,274.69,77.736 +354053,270.32,74.013 +354054,271.36,75.256 +354055,272.35,76.5 +354056,273.3,77.743 +354057,269.06,73.962 +354058,270.06,75.224 +354059,271.01,76.487 +354060,271.92,77.748 +354061,267.81,73.913 +354062,268.76,75.193 +354063,269.67,76.474 +354064,270.53,77.753 +354065,266.55,73.864 +354066,267.46,75.162 +354067,268.32,76.46 +354068,269.14,77.757 +354069,265.3,73.817 +354070,266.16,75.132 +354071,266.98,76.447 +354072,267.76,77.759 +354073,264.05,73.771 +354074,264.86,75.102 +354075,265.64,76.432 +354076,266.37,77.761 +354077,262.79,73.725 +354078,263.56,75.072 +354079,264.29,76.418 +354080,264.98,77.761 +354081,261.54,73.681 +354082,262.26,75.043 +354083,262.95,76.403 +354084,263.59,77.761 +354085,260.29,73.638 +354086,260.97,75.014 +354087,261.6,76.388 +354088,262.2,77.759 +354089,259.04,73.596 +354090,259.67,74.985 +354091,260.26,76.372 +354092,260.81,77.756 +354093,257.79,73.556 +354094,258.37,74.957 +354095,258.91,76.356 +354096,259.42,77.752 +354097,256.54,73.516 +354098,257.07,74.929 +354099,257.57,76.34 +354100,258.03,77.748 +354101,255.29,73.478 +354102,255.78,74.902 +354103,256.22,76.323 +354104,256.63,77.741 +354105,254.04,73.441 +354106,254.48,74.875 +354107,254.88,76.306 +354108,255.24,77.734 +354109,252.79,73.405 +354110,253.18,74.848 +354111,253.53,76.289 +354112,253.85,77.726 +354113,251.55,73.37 +354114,251.88,74.822 +354115,252.19,76.271 +354116,252.46,77.717 +354117,250.3,73.336 +354118,250.59,74.796 +354119,250.84,76.253 +354120,251.06,77.706 +354121,249.05,73.304 +354122,249.29,74.77 +354123,249.5,76.234 +354124,249.67,77.694 +354125,247.8,73.272 +354126,247.99,74.745 +354127,248.15,76.215 +354128,248.27,77.681 +354129,246.56,73.243 +354130,246.7,74.721 +354131,246.81,76.196 +354132,246.88,77.667 +354133,245.31,73.214 +354134,245.4,74.696 +354135,245.46,76.176 +354136,245.49,77.652 +354137,244.06,73.186 +354138,244.1,74.673 +354139,244.11,76.156 +354140,244.09,77.636 +354141,242.81,73.16 +354142,242.81,74.649 +354143,242.77,76.136 +354144,242.7,77.618 +354145,241.57,73.135 +354146,241.51,74.626 +354147,241.42,76.115 +354148,241.3,77.6 +354149,240.32,73.111 +354150,240.21,74.603 +354151,240.08,76.093 +354152,239.91,77.58 +354153,239.07,73.088 +354154,238.92,74.581 +354155,238.73,76.072 +354156,238.51,77.559 +354157,237.82,73.067 +354158,237.62,74.559 +354159,237.39,76.05 +354160,237.12,77.536 +354161,236.58,73.047 +354162,236.32,74.538 +354163,236.04,76.027 +354164,235.72,77.513 +354165,235.33,73.028 +354166,235.03,74.517 +354167,234.7,76.004 +354168,234.33,77.488 +354169,234.08,73.01 +354170,233.73,74.496 +354171,233.35,75.981 +354172,232.94,77.463 +354173,232.83,72.994 +354174,232.43,74.476 +354175,232,75.957 +354176,231.54,77.436 +354177,231.58,72.978 +354178,231.14,74.456 +354179,230.66,75.933 +354180,230.15,77.408 +354181,230.33,72.964 +354182,229.84,74.437 +354183,229.31,75.909 +354184,228.75,77.378 +354185,229.08,72.951 +354186,228.54,74.418 +354187,227.97,75.884 +354188,227.36,77.348 +354189,227.83,72.94 +354190,227.25,74.4 +354191,226.63,75.859 +354192,225.97,77.316 +354193,226.58,72.929 +354194,225.95,74.381 +354195,225.28,75.833 +354196,224.58,77.284 +354197,225.33,72.92 +354198,224.65,74.364 +354199,223.94,75.807 +354200,223.18,77.25 +354201,224.08,72.912 +354202,223.35,74.346 +354203,222.59,75.781 +354204,221.79,77.215 +354205,222.83,72.905 +354206,222.06,74.329 +354207,221.25,75.754 +354208,220.4,77.179 +354209,221.58,72.899 +354210,220.76,74.313 +354211,219.9,75.727 +354212,219.01,77.141 +354213,220.32,72.895 +354214,219.46,74.296 +354215,218.56,75.7 +354216,217.62,77.103 +354217,219.07,72.891 +354218,218.16,74.281 +354219,217.22,75.672 +354220,216.23,77.063 +354221,217.82,72.889 +354222,216.86,74.265 +354223,215.87,75.643 +354224,214.84,77.023 +354225,216.56,72.888 +354226,215.57,74.25 +354227,214.53,75.615 +354228,213.46,76.981 +354229,215.3,72.887 +354230,214.27,74.235 +354231,213.19,75.586 +354232,212.07,76.938 +354233,214.05,72.889 +354234,212.97,74.221 +354235,211.85,75.557 +354236,210.68,76.895 +354237,212.79,72.891 +354238,211.67,74.207 +354239,210.5,75.527 +354240,209.3,76.85 +354241,211.53,72.894 +354242,210.37,74.193 +354243,209.16,75.497 +354244,207.91,76.804 +354245,210.27,72.898 +354246,209.07,74.18 +354247,207.82,75.467 +354248,206.53,76.757 +354249,209.01,72.903 +354250,207.77,74.167 +354251,206.48,75.436 +354252,205.15,76.709 +354253,207.75,72.91 +354254,206.47,74.155 +354255,205.14,75.405 +354256,203.76,76.66 +354257,206.49,72.917 +354258,205.17,74.142 +354259,203.8,75.373 +354260,202.38,76.61 +354261,205.22,72.925 +354262,203.86,74.13 +354263,202.46,75.342 +354264,201,76.559 +354265,203.96,72.934 +354266,202.56,74.119 +354267,201.12,75.31 +354268,199.62,76.507 +354269,202.69,72.945 +354270,201.26,74.108 +354271,199.78,75.277 +354272,198.25,76.454 +354273,201.43,72.956 +354274,199.96,74.097 +354275,198.44,75.245 +354276,196.87,76.4 +354277,200.16,72.968 +354278,198.66,74.086 +354279,197.1,75.212 +354280,195.49,76.345 +354281,198.89,72.981 +354282,197.35,74.076 +354283,195.77,75.179 +354284,194.12,76.289 +354285,197.62,72.995 +354286,196.05,74.066 +354287,194.43,75.145 +354288,192.74,76.233 +354289,196.35,73.009 +354290,194.75,74.056 +354291,193.09,75.111 +354292,191.37,76.175 +354293,195.07,73.025 +354294,193.44,74.047 +354295,191.75,75.077 +354296,190,76.117 +354297,193.8,73.041 +354298,192.14,74.037 +354299,190.42,75.043 +354300,188.63,76.058 +354301,192.53,73.059 +354302,190.83,74.029 +354303,189.08,75.008 +354304,187.26,75.998 +354305,191.25,73.077 +354306,189.53,74.02 +354307,187.75,74.973 +354308,185.9,75.937 +354309,189.97,73.095 +354310,188.22,74.012 +354311,186.41,74.938 +354312,184.53,75.876 +354313,188.69,73.115 +354314,186.91,74.003 +354315,185.08,74.903 +354316,183.17,75.813 +354317,187.41,73.135 +354318,185.61,73.996 +354319,183.74,74.867 +354320,181.8,75.75 +354321,186.13,73.156 +354322,184.3,73.988 +354323,182.41,74.831 +354324,180.44,75.687 +354325,184.85,73.177 +354326,182.99,73.98 +354327,181.07,74.795 +354328,179.08,75.622 +354329,183.56,73.2 +354330,181.68,73.973 +354331,179.74,74.759 +354332,177.72,75.557 +354333,182.28,73.222 +354334,180.38,73.966 +354335,178.41,74.723 +354336,176.37,75.492 +354337,180.99,73.246 +354338,179.07,73.959 +354339,177.08,74.686 +354340,175.01,75.425 +354341,179.7,73.27 +354342,177.76,73.953 +354343,175.75,74.649 +354344,173.66,75.359 +354345,178.41,73.294 +354346,176.45,73.946 +354347,174.42,74.612 +354348,172.3,75.291 +354349,177.12,73.319 +354350,175.14,73.94 +354351,173.09,74.575 +354352,170.95,75.223 +354353,175.82,73.345 +354354,173.83,73.934 +354355,171.76,74.537 +354356,169.6,75.155 +354357,174.53,73.371 +354358,172.51,73.928 +354359,170.43,74.5 +354360,168.26,75.086 +354361,173.23,73.397 +354362,171.2,73.923 +354363,169.1,74.462 +354364,166.91,75.016 +354365,171.93,73.424 +354366,169.89,73.917 +354367,167.77,74.424 +354368,165.57,74.946 +354369,170.63,73.451 +354370,168.58,73.912 +354371,166.45,74.386 +354372,164.22,74.876 +354373,169.33,73.479 +354374,167.26,73.906 +354375,165.12,74.348 +354376,162.88,74.805 +354377,168.03,73.507 +354378,165.95,73.901 +354379,163.79,74.31 +354380,161.54,74.734 +354381,166.73,73.535 +354382,164.64,73.896 +354383,162.47,74.271 +354384,160.21,74.663 +354385,165.42,73.563 +354386,163.32,73.891 +354387,161.14,74.233 +354388,158.87,74.591 +354389,164.11,73.592 +354390,162,73.886 +354391,159.82,74.194 +354392,157.54,74.519 +354393,162.8,73.621 +354394,160.69,73.881 +354395,158.49,74.156 +354396,156.2,74.446 +354397,161.49,73.65 +354398,159.37,73.876 +354399,157.17,74.117 +354400,154.87,74.374 +354401,160.18,73.679 +354402,158.05,73.872 +354403,155.85,74.078 +354404,153.55,74.301 +354405,158.87,73.709 +354406,156.74,73.867 +354407,154.53,74.04 +354408,152.22,74.228 +354409,157.55,73.738 +354410,155.42,73.862 +354411,153.2,74.001 +354412,150.89,74.155 +354413,156.23,73.768 +354414,154.1,73.858 +354415,151.88,73.962 +354416,149.57,74.082 +354417,154.91,73.798 +354418,152.78,73.853 +354419,150.56,73.923 +354420,148.25,74.008 +354421,153.59,73.827 +354422,151.46,73.849 +354423,149.24,73.884 +354424,146.93,73.935 +354425,152.27,73.857 +354426,150.14,73.844 +354427,147.92,73.845 +354428,145.61,73.862 +354429,150.95,73.887 +354430,148.82,73.84 +354431,146.61,73.806 +354432,144.29,73.788 +354433,149.62,73.917 +354434,147.5,73.835 +354435,145.29,73.767 +354436,142.98,73.715 +354437,148.3,73.946 +354438,146.18,73.831 +354439,143.97,73.728 +354440,141.67,73.641 +354441,146.97,73.976 +354442,144.85,73.826 +354443,142.65,73.69 +354444,140.35,73.568 +354445,145.64,74.005 +354446,143.53,73.822 +354447,141.34,73.651 +354448,139.05,73.495 +354449,144.31,74.034 +354450,142.21,73.817 +354451,140.02,73.612 +354452,137.74,73.422 +354453,142.97,74.063 +354454,140.88,73.812 +354455,138.71,73.573 +354456,136.43,73.349 +354457,141.64,74.092 +354458,139.56,73.807 +354459,137.39,73.535 +354460,135.13,73.276 +354461,140.3,74.121 +354462,138.23,73.803 +354463,136.08,73.496 +354464,133.83,73.203 +354465,138.96,74.149 +354466,136.91,73.798 +354467,134.76,73.458 +354468,132.53,73.131 +354469,137.62,74.177 +354470,135.58,73.793 +354471,133.45,73.419 +354472,131.23,73.059 +354473,136.28,74.205 +354474,134.25,73.787 +354475,132.14,73.381 +354476,129.93,72.987 +354477,134.94,74.232 +354478,132.93,73.782 +354479,130.83,73.343 +354480,128.63,72.916 +354481,133.59,74.259 +354482,131.6,73.777 +354483,129.52,73.305 +354484,127.34,72.844 +354485,132.25,74.285 +354486,130.27,73.771 +354487,128.21,73.267 +354488,126.05,72.774 +354489,130.9,74.312 +354490,128.94,73.766 +354491,126.9,73.229 +354492,124.76,72.703 +354493,129.55,74.337 +354494,127.61,73.76 +354495,125.59,73.191 +354496,123.47,72.633 +354497,128.2,74.363 +354498,126.28,73.754 +354499,124.28,73.154 +354500,122.18,72.564 +354501,126.85,74.387 +354502,124.95,73.748 +354503,122.97,73.116 +354504,120.9,72.495 +354505,125.5,74.411 +354506,123.62,73.742 +354507,121.66,73.079 +354508,119.61,72.426 +354509,124.14,74.435 +354510,122.29,73.735 +354511,120.35,73.042 +354512,118.33,72.358 +354513,122.79,74.458 +354514,120.96,73.729 +354515,119.05,73.005 +354516,117.05,72.291 +354517,121.43,74.481 +354518,119.63,73.722 +354519,117.74,72.969 +354520,115.77,72.224 +354521,120.07,74.503 +354522,118.29,73.715 +354523,116.44,72.933 +354524,114.49,72.158 +354525,118.71,74.524 +354526,116.96,73.708 +354527,115.13,72.896 +354528,113.22,72.092 +354529,117.35,74.544 +354530,115.63,73.7 +354531,113.83,72.86 +354532,111.94,72.027 +354533,115.99,74.564 +354534,114.29,73.692 +354535,112.52,72.825 +354536,110.67,71.963 +354537,114.62,74.584 +354538,112.96,73.685 +354539,111.22,72.789 +354540,109.4,71.9 +354541,113.26,74.602 +354542,111.62,73.676 +354543,109.92,72.754 +354544,108.13,71.837 +354545,111.89,74.62 +354546,110.29,73.668 +354547,108.61,72.719 +354548,106.86,71.775 +354549,110.52,74.637 +354550,108.95,73.659 +354551,107.31,72.684 +354552,105.59,71.713 +354553,109.15,74.653 +354554,107.61,73.65 +354555,106.01,72.65 +354556,104.32,71.653 +354557,107.78,74.668 +354558,106.28,73.641 +354559,104.71,72.616 +354560,103.06,71.593 +354561,106.41,74.683 +354562,104.94,73.632 +354563,103.41,72.582 +354564,101.8,71.534 +354565,105.04,74.697 +354566,103.6,73.622 +354567,102.11,72.548 +354568,100.53,71.476 +354569,103.66,74.709 +354570,102.27,73.612 +354571,100.8,72.515 +354572,99.272,71.419 +354573,102.29,74.721 +354574,100.93,73.602 +354575,99.505,72.482 +354576,98.012,71.363 +354577,100.91,74.732 +354578,99.59,73.591 +354579,98.206,72.449 +354580,96.753,71.308 +354581,99.533,74.743 +354582,98.251,73.58 +354583,96.907,72.417 +354584,95.495,71.253 +354585,98.155,74.752 +354586,96.912,73.569 +354587,95.608,72.384 +354588,94.238,71.2 +354589,96.776,74.76 +354590,95.573,73.558 +354591,94.31,72.353 +354592,92.983,71.147 +354593,95.395,74.767 +354594,94.233,73.546 +354595,93.012,72.321 +354596,91.728,71.096 +354597,94.014,74.774 +354598,92.893,73.533 +354599,91.714,72.29 +354600,90.474,71.045 +354601,92.632,74.779 +354602,91.552,73.521 +354603,90.417,72.259 +354604,89.222,70.996 +354605,91.249,74.783 +354606,90.212,73.508 +354607,89.12,72.229 +354608,87.97,70.948 +354609,89.865,74.787 +354610,88.871,73.495 +354611,87.823,72.199 +354612,86.719,70.9 +354613,88.48,74.789 +354614,87.53,73.481 +354615,86.527,72.169 +354616,85.468,70.854 +354617,87.095,74.79 +354618,86.188,73.467 +354619,85.231,72.14 +354620,84.219,70.809 +354621,85.709,74.79 +354622,84.847,73.453 +354623,83.935,72.111 +354624,82.971,70.765 +354625,84.322,74.789 +354626,83.505,73.438 +354627,82.64,72.082 +354628,81.723,70.722 +354629,82.934,74.787 +354630,82.163,73.423 +354631,81.344,72.054 +354632,80.475,70.68 +354633,81.546,74.784 +354634,80.821,73.408 +354635,80.049,72.026 +354636,79.229,70.639 +354637,80.157,74.78 +354638,79.478,73.392 +354639,78.754,71.998 +354640,77.983,70.599 +354641,78.767,74.775 +354642,78.135,73.376 +354643,77.46,71.971 +354644,76.738,70.561 +354645,77.377,74.769 +354646,76.792,73.36 +354647,76.165,71.944 +354648,75.493,70.523 +354649,75.986,74.761 +354650,75.449,73.343 +354651,74.871,71.918 +354652,74.249,70.487 +354653,74.595,74.752 +354654,74.106,73.326 +354655,73.577,71.892 +354656,73.005,70.452 +354657,73.203,74.743 +354658,72.763,73.308 +354659,72.283,71.866 +354660,71.761,70.418 +354661,71.811,74.732 +354662,71.42,73.29 +354663,70.989,71.841 +354664,70.518,70.386 +354665,70.419,74.72 +354666,70.076,73.272 +354667,69.696,71.816 +354668,69.275,70.354 +354669,69.026,74.706 +354670,68.732,73.253 +354671,68.402,71.792 +354672,68.033,70.324 +354673,67.633,74.692 +354674,67.389,73.234 +354675,67.109,71.768 +354676,66.791,70.295 +354677,66.239,74.677 +354678,66.045,73.214 +354679,65.815,71.744 +354680,65.549,70.267 +354681,64.845,74.66 +354682,64.701,73.194 +354683,64.522,71.721 +354684,64.307,70.241 +354685,63.451,74.642 +354686,63.357,73.174 +354687,63.229,71.698 +354688,63.065,70.215 +354689,62.057,74.623 +354690,62.013,73.153 +354691,61.936,71.676 +354692,61.824,70.191 +354693,60.663,74.603 +354694,60.669,73.132 +354695,60.643,71.653 +354696,60.582,70.168 +354697,59.269,74.581 +354698,59.325,73.111 +354699,59.35,71.632 +354700,59.34,70.147 +354701,57.874,74.559 +354702,57.981,73.089 +354703,58.057,71.611 +354704,58.099,70.126 +354705,56.48,74.535 +354706,56.638,73.066 +354707,56.764,71.59 +354708,56.857,70.107 +354709,55.085,74.51 +354710,55.294,73.044 +354711,55.47,71.569 +354712,55.616,70.089 +354713,53.691,74.484 +354714,53.95,73.02 +354715,54.177,71.549 +354716,54.374,70.072 +354717,52.296,74.457 +354718,52.606,72.997 +354719,52.884,71.53 +354720,53.132,70.056 +354721,50.902,74.428 +354722,51.262,72.973 +354723,51.591,71.51 +354724,51.889,70.042 +354725,49.508,74.399 +354726,49.919,72.949 +354727,50.298,71.492 +354728,50.647,70.029 +354729,48.114,74.368 +354730,48.575,72.924 +354731,49.005,71.473 +354732,49.404,70.017 +354733,46.72,74.336 +354734,47.231,72.899 +354735,47.711,71.455 +354736,48.161,70.006 +354737,45.327,74.303 +354738,45.888,72.874 +354739,46.418,71.437 +354740,46.917,69.996 +354741,43.934,74.269 +354742,44.545,72.848 +354743,45.124,71.42 +354744,45.673,69.988 +354745,42.541,74.233 +354746,43.202,72.821 +354747,43.83,71.403 +354748,44.429,69.98 +354749,41.149,74.197 +354750,41.859,72.795 +354751,42.537,71.387 +354752,43.184,69.974 +354753,39.757,74.159 +354754,40.516,72.768 +354755,41.243,71.371 +354756,41.938,69.969 +354757,38.365,74.121 +354758,39.174,72.741 +354759,39.948,71.355 +354760,40.692,69.965 +354761,36.974,74.081 +354762,37.831,72.713 +354763,38.654,71.34 +354764,39.445,69.963 +354765,35.584,74.04 +354766,36.489,72.685 +354767,37.36,71.325 +354768,38.198,69.961 +354769,34.194,73.998 +354770,35.147,72.656 +354771,36.065,71.31 +354772,36.95,69.961 +354773,32.805,73.955 +354774,33.805,72.627 +354775,34.77,71.296 +354776,35.701,69.961 +354777,31.416,73.911 +354778,32.464,72.598 +354779,33.475,71.282 +354780,34.452,69.963 +354781,30.028,73.866 +354782,31.123,72.569 +354783,32.179,71.268 +354784,33.201,69.966 +354785,28.641,73.819 +354786,29.782,72.539 +354787,30.884,71.255 +354788,31.95,69.97 +354789,27.254,73.772 +354790,28.441,72.508 +354791,29.588,71.242 +354792,30.698,69.974 +354793,25.869,73.724 +354794,27.101,72.478 +354795,28.291,71.23 +354796,29.445,69.98 +354797,24.484,73.675 +354798,25.76,72.447 +354799,26.995,71.218 +354800,28.192,69.987 +354801,23.1,73.624 +354802,24.421,72.416 +354803,25.698,71.206 +354804,26.937,69.995 +354805,21.717,73.573 +354806,23.081,72.384 +354807,24.401,71.194 +354808,25.681,70.004 +354809,20.334,73.521 +354810,21.742,72.352 +354811,23.104,71.183 +354812,24.425,70.014 +354813,18.953,73.468 +354814,20.403,72.32 +354815,21.806,71.172 +354816,23.167,70.025 +354817,17.573,73.414 +354818,19.065,72.287 +354819,20.508,71.162 +354820,21.908,70.037 +354821,16.194,73.359 +354822,17.727,72.255 +354823,19.21,71.151 +354824,20.648,70.05 +354825,14.816,73.303 +354826,16.389,72.221 +354827,17.911,71.141 +354828,19.387,70.063 +354829,13.439,73.246 +354830,15.052,72.188 +354831,16.612,71.132 +354832,18.125,70.078 +354833,12.063,73.188 +354834,13.715,72.154 +354835,15.312,71.122 +354836,16.862,70.093 +354837,10.688,73.13 +354838,12.379,72.12 +354839,14.012,71.113 +354840,15.597,70.109 +354841,9.3148,73.071 +354842,11.043,72.086 +354843,12.712,71.104 +354844,14.331,70.126 +354845,7.9426,73.01 +354846,9.7069,72.052 +354847,11.411,71.096 +354848,13.064,70.144 +354849,6.5716,72.95 +354850,8.3717,72.017 +354851,10.11,71.087 +354852,11.796,70.162 +354853,5.2019,72.888 +354854,7.037,71.982 +354855,8.8088,71.079 +354856,10.526,70.182 +354857,3.8335,72.826 +354858,5.7027,71.946 +354859,7.5069,71.072 +354860,9.2549,70.202 +354861,2.4665,72.762 +354862,4.3688,71.911 +354863,6.2045,71.064 +354864,7.9825,70.222 +354865,1.1009,72.699 +354866,3.0355,71.875 +354867,4.9017,71.057 +354868,6.7087,70.244 +354869,359.74,72.634 +354870,1.7026,71.839 +354871,3.5984,71.049 +354872,5.4336,70.266 +354873,358.37,72.569 +354874,0.37026,71.803 +354875,2.2946,71.042 +354876,4.157,70.288 +354877,357.01,72.503 +354878,359.04,71.766 +354879,0.99045,71.036 +354880,2.8789,70.311 +354881,355.65,72.437 +354882,357.71,71.73 +354883,359.69,71.029 +354884,1.5995,70.335 +354885,354.29,72.37 +354886,356.38,71.693 +354887,358.38,71.023 +354888,0.3185,70.36 +354889,352.94,72.302 +354890,355.05,71.656 +354891,357.07,71.017 +354892,359.04,70.385 +354893,351.58,72.234 +354894,353.72,71.619 +354895,355.77,71.011 +354896,357.75,70.41 +354897,350.23,72.166 +354898,352.39,71.581 +354899,354.46,71.005 +354900,356.47,70.436 +354901,348.88,72.097 +354902,351.06,71.544 +354903,353.16,70.999 +354904,355.18,70.462 +354905,347.53,72.027 +354906,349.73,71.506 +354907,351.85,70.994 +354908,353.89,70.489 +354909,346.18,71.957 +354910,348.4,71.469 +354911,350.54,70.988 +354912,352.6,70.516 +354913,344.83,71.887 +354914,347.08,71.431 +354915,349.23,70.983 +354916,351.31,70.544 +354917,343.48,71.816 +354918,345.75,71.393 +354919,347.92,70.978 +354920,350.02,70.572 +354921,342.14,71.745 +354922,344.42,71.354 +354923,346.61,70.973 +354924,348.72,70.6 +354925,340.8,71.674 +354926,343.1,71.316 +354927,345.3,70.968 +354928,347.42,70.628 +354929,339.46,71.602 +354930,341.77,71.278 +354931,343.99,70.963 +354932,346.13,70.657 +354933,338.12,71.53 +354934,340.45,71.239 +354935,342.68,70.958 +354936,344.83,70.686 +354937,336.78,71.457 +354938,339.12,71.201 +354939,341.37,70.953 +354940,343.53,70.715 +354941,335.45,71.385 +354942,337.8,71.162 +354943,340.05,70.949 +354944,342.22,70.745 +354945,334.11,71.312 +354946,336.48,71.123 +354947,338.74,70.944 +354948,340.92,70.774 +354949,332.78,71.239 +354950,335.16,71.084 +354951,337.43,70.94 +354952,339.61,70.804 +354953,331.45,71.166 +354954,333.84,71.046 +354955,336.11,70.935 +354956,338.3,70.834 +354957,330.13,71.093 +354958,332.52,71.007 +354959,334.8,70.931 +354960,336.99,70.864 +354961,328.8,71.02 +354962,331.2,70.968 +354963,333.48,70.926 +354964,335.68,70.893 +354965,327.48,70.946 +354966,329.88,70.929 +354967,332.17,70.922 +354968,334.37,70.923 +354969,326.15,70.873 +354970,328.56,70.89 +354971,330.85,70.917 +354972,333.05,70.953 +354973,324.83,70.8 +354974,327.24,70.851 +354975,329.54,70.913 +354976,331.74,70.983 +354977,323.51,70.726 +354978,325.92,70.812 +354979,328.22,70.908 +354980,330.42,71.013 +354981,322.2,70.653 +354982,324.6,70.774 +354983,326.9,70.904 +354984,329.1,71.042 +354985,320.88,70.58 +354986,323.29,70.735 +354987,325.58,70.899 +354988,327.78,71.072 +354989,319.57,70.507 +354990,321.97,70.696 +354991,324.26,70.895 +354992,326.46,71.101 +354993,318.26,70.434 +354994,320.66,70.657 +354995,322.94,70.89 +354996,325.13,71.131 +354997,316.95,70.361 +354998,319.34,70.618 +354999,321.62,70.885 +355000,323.8,71.16 +355001,315.64,70.288 +355002,318.03,70.58 +355003,320.3,70.88 +355004,322.48,71.189 +355005,314.34,70.216 +355006,316.71,70.541 +355007,318.98,70.876 +355008,321.15,71.217 +355009,313.03,70.143 +355010,315.4,70.503 +355011,317.66,70.871 +355012,319.82,71.245 +355013,311.73,70.071 +355014,314.09,70.464 +355015,316.34,70.866 +355016,318.48,71.273 +355017,310.43,70 +355018,312.78,70.426 +355019,315.01,70.86 +355020,317.15,71.301 +355021,309.13,69.929 +355022,311.47,70.388 +355023,313.69,70.855 +355024,315.81,71.328 +355025,307.83,69.858 +355026,310.16,70.35 +355027,312.37,70.85 +355028,314.47,71.355 +355029,306.54,69.787 +355030,308.85,70.312 +355031,311.04,70.844 +355032,313.13,71.381 +355033,305.25,69.717 +355034,307.54,70.274 +355035,309.72,70.838 +355036,311.79,71.407 +355037,303.96,69.647 +355038,306.23,70.236 +355039,308.39,70.832 +355040,310.45,71.433 +355041,302.67,69.578 +355042,304.92,70.199 +355043,307.06,70.826 +355044,309.11,71.458 +355045,301.38,69.509 +355046,303.61,70.162 +355047,305.74,70.82 +355048,307.76,71.483 +355049,300.09,69.441 +355050,302.31,70.124 +355051,304.41,70.814 +355052,306.41,71.506 +355053,298.81,69.373 +355054,301,70.088 +355055,303.08,70.807 +355056,305.07,71.53 +355057,297.53,69.306 +355058,299.69,70.051 +355059,301.75,70.8 +355060,303.72,71.553 +355061,296.24,69.239 +355062,298.39,70.014 +355063,300.42,70.793 +355064,302.36,71.575 +355065,294.97,69.173 +355066,297.08,69.978 +355067,299.1,70.786 +355068,301.01,71.597 +355069,293.69,69.108 +355070,295.78,69.942 +355071,297.77,70.779 +355072,299.66,71.617 +355073,292.41,69.043 +355074,294.48,69.906 +355075,296.44,70.771 +355076,298.3,71.638 +355077,291.14,68.979 +355078,293.17,69.87 +355079,295.1,70.763 +355080,296.94,71.657 +355081,289.86,68.915 +355082,291.87,69.834 +355083,293.77,70.755 +355084,295.58,71.676 +355085,288.59,68.853 +355086,290.57,69.799 +355087,292.44,70.747 +355088,294.22,71.694 +355089,287.32,68.791 +355090,289.27,69.764 +355091,291.11,70.738 +355092,292.86,71.711 +355093,286.06,68.73 +355094,287.97,69.729 +355095,289.78,70.729 +355096,291.5,71.728 +355097,284.79,68.67 +355098,286.67,69.695 +355099,288.44,70.72 +355100,290.13,71.744 +355101,283.52,68.61 +355102,285.37,69.661 +355103,287.11,70.711 +355104,288.77,71.758 +355105,282.26,68.552 +355106,284.07,69.627 +355107,285.78,70.701 +355108,287.4,71.773 +355109,281,68.494 +355110,282.77,69.593 +355111,284.44,70.691 +355112,286.03,71.786 +355113,279.74,68.437 +355114,281.47,69.56 +355115,283.11,70.681 +355116,284.66,71.798 +355117,278.48,68.381 +355118,280.17,69.526 +355119,281.77,70.67 +355120,283.29,71.809 +355121,277.22,68.326 +355122,278.87,69.494 +355123,280.44,70.659 +355124,281.92,71.82 +355125,275.96,68.272 +355126,277.57,69.461 +355127,279.1,70.648 +355128,280.55,71.829 +355129,274.71,68.219 +355130,276.28,69.429 +355131,277.76,70.636 +355132,279.17,71.838 +355133,273.45,68.166 +355134,274.98,69.397 +355135,276.43,70.624 +355136,277.8,71.845 +355137,272.2,68.115 +355138,273.69,69.366 +355139,275.09,70.612 +355140,276.42,71.852 +355141,270.95,68.065 +355142,272.39,69.335 +355143,273.75,70.599 +355144,275.04,71.858 +355145,269.69,68.016 +355146,271.09,69.304 +355147,272.42,70.586 +355148,273.66,71.862 +355149,268.44,67.968 +355150,269.8,69.273 +355151,271.08,70.573 +355152,272.29,71.866 +355153,267.2,67.921 +355154,268.5,69.243 +355155,269.74,70.56 +355156,270.9,71.868 +355157,265.95,67.875 +355158,267.21,69.213 +355159,268.4,70.546 +355160,269.52,71.87 +355161,264.7,67.83 +355162,265.92,69.184 +355163,267.06,70.531 +355164,268.14,71.87 +355165,263.45,67.786 +355166,264.62,69.155 +355167,265.72,70.517 +355168,266.76,71.87 +355169,262.21,67.743 +355170,263.33,69.126 +355171,264.38,70.501 +355172,265.37,71.868 +355173,260.96,67.702 +355174,262.04,69.098 +355175,263.04,70.486 +355176,263.99,71.865 +355177,259.72,67.661 +355178,260.74,69.07 +355179,261.7,70.47 +355180,262.6,71.861 +355181,258.48,67.622 +355182,259.45,69.042 +355183,260.36,70.454 +355184,261.22,71.856 +355185,257.23,67.584 +355186,258.16,69.015 +355187,259.02,70.437 +355188,259.83,71.85 +355189,255.99,67.547 +355190,256.87,68.988 +355191,257.68,70.42 +355192,258.44,71.843 +355193,254.75,67.511 +355194,255.57,68.961 +355195,256.34,70.403 +355196,257.05,71.834 +355197,253.51,67.476 +355198,254.28,68.935 +355199,255,70.385 +355200,255.66,71.824 +355201,252.27,67.443 +355202,252.99,68.91 +355203,253.66,70.367 +355204,254.27,71.814 +355205,251.03,67.41 +355206,251.7,68.884 +355207,252.32,70.349 +355208,252.88,71.802 +355209,249.79,67.379 +355210,250.41,68.859 +355211,250.97,70.33 +355212,251.49,71.789 +355213,248.56,67.35 +355214,249.12,68.835 +355215,249.63,70.31 +355216,250.1,71.774 +355217,247.32,67.321 +355218,247.83,68.811 +355219,248.29,70.291 +355220,248.71,71.759 +355221,246.08,67.293 +355222,246.54,68.787 +355223,246.95,70.27 +355224,247.32,71.742 +355225,244.84,67.267 +355226,245.25,68.764 +355227,245.61,70.25 +355228,245.93,71.724 +355229,243.61,67.242 +355230,243.96,68.741 +355231,244.26,70.229 +355232,244.53,71.705 +355233,242.37,67.218 +355234,242.67,68.718 +355235,242.92,70.207 +355236,243.14,71.685 +355237,241.13,67.196 +355238,241.38,68.696 +355239,241.58,70.186 +355240,241.75,71.664 +355241,239.9,67.175 +355242,240.09,68.674 +355243,240.24,70.164 +355244,240.35,71.641 +355245,238.66,67.154 +355246,238.8,68.653 +355247,238.89,70.141 +355248,238.96,71.617 +355249,237.42,67.136 +355250,237.51,68.632 +355251,237.55,70.118 +355252,237.56,71.592 +355253,236.19,67.118 +355254,236.22,68.611 +355255,236.21,70.095 +355256,236.17,71.566 +355257,234.95,67.101 +355258,234.93,68.591 +355259,234.87,70.071 +355260,234.77,71.539 +355261,233.72,67.086 +355262,233.64,68.572 +355263,233.52,70.047 +355264,233.38,71.51 +355265,232.48,67.072 +355266,232.35,68.552 +355267,232.18,70.022 +355268,231.99,71.48 +355269,231.24,67.059 +355270,231.06,68.533 +355271,230.84,69.997 +355272,230.59,71.449 +355273,230.01,67.048 +355274,229.77,68.515 +355275,229.5,69.972 +355276,229.2,71.417 +355277,228.77,67.037 +355278,228.48,68.496 +355279,228.15,69.946 +355280,227.8,71.384 +355281,227.53,67.028 +355282,227.19,68.479 +355283,226.81,69.92 +355284,226.41,71.35 +355285,226.29,67.02 +355286,225.9,68.461 +355287,225.47,69.893 +355288,225.02,71.314 +355289,225.06,67.013 +355290,224.61,68.444 +355291,224.13,69.866 +355292,223.62,71.277 +355293,223.82,67.007 +355294,223.32,68.428 +355295,222.79,69.839 +355296,222.23,71.239 +355297,222.58,67.003 +355298,222.03,68.411 +355299,221.44,69.811 +355300,220.83,71.2 +355301,221.34,66.999 +355302,220.73,68.395 +355303,220.1,69.783 +355304,219.44,71.16 +355305,220.1,66.997 +355306,219.44,68.38 +355307,218.76,69.754 +355308,218.05,71.119 +355309,218.86,66.996 +355310,218.15,68.365 +355311,217.42,69.725 +355312,216.66,71.076 +355313,217.62,66.996 +355314,216.86,68.35 +355315,216.08,69.696 +355316,215.27,71.033 +355317,216.38,66.997 +355318,215.57,68.335 +355319,214.74,69.666 +355320,213.87,70.988 +355321,215.13,66.999 +355322,214.28,68.321 +355323,213.4,69.636 +355324,212.48,70.943 +355325,213.89,67.002 +355326,212.99,68.308 +355327,212.06,69.606 +355328,211.09,70.896 +355329,212.65,67.007 +355330,211.7,68.294 +355331,210.72,69.575 +355332,209.7,70.848 +355333,211.4,67.012 +355334,210.4,68.281 +355335,209.38,69.544 +355336,208.32,70.799 +355337,210.16,67.018 +355338,209.11,68.268 +355339,208.04,69.513 +355340,206.93,70.749 +355341,208.91,67.026 +355342,207.82,68.256 +355343,206.7,69.481 +355344,205.54,70.699 +355345,207.66,67.034 +355346,206.53,68.244 +355347,205.36,69.449 +355348,204.15,70.647 +355349,206.41,67.043 +355350,205.23,68.232 +355351,204.02,69.416 +355352,202.77,70.594 +355353,205.17,67.054 +355354,203.94,68.221 +355355,202.68,69.384 +355356,201.38,70.54 +355357,203.92,67.065 +355358,202.65,68.21 +355359,201.34,69.35 +355360,200,70.485 +355361,202.66,67.077 +355362,201.35,68.199 +355363,200,69.317 +355364,198.61,70.43 +355365,201.41,67.09 +355366,200.06,68.189 +355367,198.67,69.283 +355368,197.23,70.373 +355369,200.16,67.104 +355370,198.76,68.178 +355371,197.33,69.249 +355372,195.85,70.315 +355373,198.9,67.119 +355374,197.47,68.168 +355375,195.99,69.215 +355376,194.47,70.257 +355377,197.65,67.135 +355378,196.17,68.159 +355379,194.65,69.18 +355380,193.09,70.198 +355381,196.39,67.152 +355382,194.88,68.149 +355383,193.32,69.145 +355384,191.71,70.138 +355385,195.13,67.169 +355386,193.58,68.14 +355387,191.98,69.11 +355388,190.34,70.077 +355389,193.88,67.187 +355390,192.28,68.132 +355391,190.65,69.075 +355392,188.96,70.015 +355393,192.62,67.206 +355394,190.99,68.123 +355395,189.31,69.039 +355396,187.58,69.952 +355397,191.35,67.226 +355398,189.69,68.115 +355399,187.98,69.003 +355400,186.21,69.889 +355401,190.09,67.246 +355402,188.39,68.106 +355403,186.64,68.967 +355404,184.84,69.825 +355405,188.83,67.267 +355406,187.09,68.099 +355407,185.31,68.93 +355408,183.47,69.76 +355409,187.56,67.289 +355410,185.79,68.091 +355411,183.98,68.893 +355412,182.1,69.695 +355413,186.29,67.311 +355414,184.5,68.083 +355415,182.64,68.856 +355416,180.73,69.628 +355417,185.02,67.334 +355418,183.2,68.076 +355419,181.31,68.819 +355420,179.36,69.562 +355421,183.76,67.358 +355422,181.9,68.069 +355423,179.98,68.782 +355424,178,69.494 +355425,182.48,67.382 +355426,180.6,68.062 +355427,178.65,68.744 +355428,176.63,69.426 +355429,181.21,67.407 +355430,179.29,68.056 +355431,177.32,68.706 +355432,175.27,69.357 +355433,179.94,67.432 +355434,177.99,68.049 +355435,175.99,68.668 +355436,173.91,69.288 +355437,178.66,67.458 +355438,176.69,68.043 +355439,174.66,68.63 +355440,172.55,69.218 +355441,177.38,67.484 +355442,175.39,68.037 +355443,173.33,68.592 +355444,171.19,69.148 +355445,176.1,67.51 +355446,174.09,68.031 +355447,172,68.553 +355448,169.83,69.077 +355449,174.82,67.537 +355450,172.78,68.025 +355451,170.67,68.514 +355452,168.48,69.006 +355453,173.54,67.565 +355454,171.48,68.019 +355455,169.34,68.476 +355456,167.12,68.935 +355457,172.26,67.593 +355458,170.17,68.013 +355459,168.02,68.437 +355460,165.77,68.862 +355461,170.97,67.621 +355462,168.87,68.008 +355463,166.69,68.398 +355464,164.42,68.79 +355465,169.69,67.649 +355466,167.56,68.002 +355467,165.36,68.358 +355468,163.07,68.717 +355469,168.4,67.678 +355470,166.26,67.997 +355471,164.04,68.319 +355472,161.72,68.644 +355473,167.11,67.707 +355474,164.95,67.991 +355475,162.71,68.28 +355476,160.38,68.571 +355477,165.82,67.736 +355478,163.64,67.986 +355479,161.39,68.24 +355480,159.04,68.497 +355481,164.52,67.766 +355482,162.34,67.981 +355483,160.07,68.2 +355484,157.69,68.423 +355485,163.23,67.795 +355486,161.03,67.976 +355487,158.74,68.161 +355488,156.35,68.349 +355489,161.93,67.825 +355490,159.72,67.971 +355491,157.42,68.121 +355492,155.02,68.274 +355493,160.63,67.855 +355494,158.41,67.966 +355495,156.1,68.081 +355496,153.68,68.2 +355497,159.33,67.884 +355498,157.1,67.961 +355499,154.78,68.041 +355500,152.34,68.125 +355501,158.03,67.914 +355502,155.79,67.956 +355503,153.46,68.001 +355504,151.01,68.05 +355505,156.73,67.944 +355506,154.48,67.951 +355507,152.14,67.961 +355508,149.68,67.975 +355509,155.42,67.974 +355510,153.17,67.946 +355511,150.82,67.921 +355512,148.35,67.9 +355513,154.11,68.004 +355514,151.86,67.941 +355515,149.5,67.881 +355516,147.02,67.825 +355517,152.8,68.034 +355518,150.54,67.936 +355519,148.18,67.841 +355520,145.7,67.75 +355521,151.49,68.064 +355522,149.23,67.931 +355523,146.86,67.802 +355524,144.38,67.675 +355525,150.18,68.093 +355526,147.92,67.926 +355527,145.54,67.762 +355528,143.05,67.6 +355529,148.87,68.123 +355530,146.6,67.921 +355531,144.23,67.722 +355532,141.73,67.526 +355533,147.55,68.152 +355534,145.29,67.916 +355535,142.91,67.682 +355536,140.42,67.451 +355537,146.24,68.181 +355538,143.97,67.91 +355539,141.6,67.642 +355540,139.1,67.376 +355541,144.92,68.21 +355542,142.65,67.905 +355543,140.28,67.602 +355544,137.79,67.302 +355545,143.6,68.239 +355546,141.34,67.9 +355547,138.97,67.562 +355548,136.48,67.228 +355549,142.27,68.267 +355550,140.02,67.894 +355551,137.66,67.523 +355552,135.17,67.154 +355553,140.95,68.295 +355554,138.7,67.889 +355555,136.34,67.483 +355556,133.86,67.08 +355557,139.62,68.323 +355558,137.38,67.883 +355559,135.03,67.444 +355560,132.55,67.007 +355561,138.3,68.351 +355562,136.06,67.877 +355563,133.72,67.404 +355564,131.25,66.933 +355565,136.97,68.378 +355566,134.74,67.871 +355567,132.41,67.365 +355568,129.94,66.861 +355569,135.64,68.404 +355570,133.42,67.865 +355571,131.1,67.326 +355572,128.64,66.788 +355573,134.3,68.43 +355574,132.1,67.859 +355575,129.79,67.287 +355576,127.35,66.716 +355577,132.97,68.456 +355578,130.78,67.852 +355579,128.48,67.248 +355580,126.05,66.645 +355581,131.63,68.481 +355582,129.46,67.846 +355583,127.17,67.209 +355584,124.75,66.573 +355585,130.3,68.506 +355586,128.14,67.839 +355587,125.87,67.171 +355588,123.46,66.503 +355589,128.96,68.53 +355590,126.82,67.832 +355591,124.56,67.132 +355592,122.17,66.432 +355593,127.62,68.553 +355594,125.49,67.825 +355595,123.25,67.094 +355596,120.88,66.363 +355597,126.27,68.576 +355598,124.17,67.817 +355599,121.95,67.056 +355600,119.59,66.294 +355601,124.93,68.599 +355602,122.84,67.81 +355603,120.64,67.018 +355604,118.31,66.225 +355605,123.58,68.62 +355606,121.52,67.802 +355607,119.34,66.981 +355608,117.03,66.157 +355609,122.24,68.641 +355610,120.19,67.794 +355611,118.03,66.943 +355612,115.74,66.09 +355613,120.89,68.662 +355614,118.87,67.786 +355615,116.73,66.906 +355616,114.46,66.023 +355617,119.54,68.681 +355618,117.54,67.777 +355619,115.43,66.869 +355620,113.19,65.957 +355621,118.19,68.7 +355622,116.21,67.768 +355623,114.13,66.832 +355624,111.91,65.892 +355625,116.83,68.718 +355626,114.88,67.759 +355627,112.82,66.795 +355628,110.63,65.827 +355629,115.48,68.736 +355630,113.56,67.75 +355631,111.52,66.759 +355632,109.36,65.764 +355633,114.12,68.752 +355634,112.23,67.741 +355635,110.22,66.723 +355636,108.09,65.701 +355637,112.76,68.768 +355638,110.9,67.731 +355639,108.92,66.687 +355640,106.82,65.638 +355641,111.41,68.783 +355642,109.57,67.721 +355643,107.62,66.652 +355644,105.55,65.577 +355645,110.05,68.797 +355646,108.24,67.71 +355647,106.32,66.616 +355648,104.29,65.516 +355649,108.68,68.81 +355650,106.91,67.7 +355651,105.03,66.581 +355652,103.02,65.457 +355653,107.32,68.822 +355654,105.58,67.689 +355655,103.73,66.547 +355656,101.76,65.398 +355657,105.96,68.834 +355658,104.25,67.677 +355659,102.43,66.512 +355660,100.5,65.34 +355661,104.59,68.844 +355662,102.91,67.666 +355663,101.13,66.478 +355664,99.236,65.283 +355665,103.22,68.854 +355666,101.58,67.654 +355667,99.836,66.444 +355668,97.977,65.227 +355669,101.86,68.862 +355670,100.25,67.641 +355671,98.54,66.411 +355672,96.72,65.172 +355673,100.49,68.87 +355674,98.915,67.629 +355675,97.245,66.378 +355676,95.464,65.117 +355677,99.115,68.876 +355678,97.581,67.616 +355679,95.95,66.345 +355680,94.21,65.064 +355681,97.744,68.882 +355682,96.247,67.602 +355683,94.655,66.312 +355684,92.957,65.012 +355685,96.37,68.886 +355686,94.913,67.589 +355687,93.361,66.28 +355688,91.705,64.961 +355689,94.996,68.89 +355690,93.578,67.575 +355691,92.068,66.248 +355692,90.455,64.911 +355693,93.621,68.892 +355694,92.243,67.56 +355695,90.774,66.217 +355696,89.205,64.862 +355697,92.245,68.893 +355698,90.907,67.546 +355699,89.481,66.186 +355700,87.957,64.814 +355701,90.867,68.893 +355702,89.571,67.53 +355703,88.189,66.155 +355704,86.71,64.767 +355705,89.489,68.892 +355706,88.235,67.515 +355707,86.897,66.124 +355708,85.465,64.722 +355709,88.109,68.89 +355710,86.898,67.499 +355711,85.605,66.094 +355712,84.22,64.677 +355713,86.729,68.887 +355714,85.561,67.483 +355715,84.314,66.064 +355716,82.977,64.634 +355717,85.348,68.883 +355718,84.224,67.466 +355719,83.023,66.035 +355720,81.734,64.591 +355721,83.965,68.877 +355722,82.887,67.449 +355723,81.732,66.006 +355724,80.492,64.55 +355725,82.582,68.871 +355726,81.549,67.431 +355727,80.442,65.978 +355728,79.252,64.51 +355729,81.198,68.863 +355730,80.211,67.414 +355731,79.151,65.949 +355732,78.012,64.471 +355733,79.814,68.854 +355734,78.873,67.395 +355735,77.862,65.922 +355736,76.773,64.434 +355737,78.428,68.844 +355738,77.534,67.377 +355739,76.572,65.894 +355740,75.535,64.397 +355741,77.042,68.833 +355742,76.195,67.358 +355743,75.283,65.867 +355744,74.298,64.362 +355745,75.655,68.82 +355746,74.856,67.338 +355747,73.994,65.84 +355748,73.061,64.328 +355749,74.267,68.806 +355750,73.517,67.318 +355751,72.705,65.814 +355752,71.826,64.295 +355753,72.879,68.792 +355754,72.178,67.298 +355755,71.417,65.788 +355756,70.59,64.264 +355757,71.49,68.775 +355758,70.838,67.277 +355759,70.129,65.763 +355760,69.356,64.233 +355761,70.1,68.758 +355762,69.498,67.256 +355763,68.841,65.738 +355764,68.122,64.204 +355765,68.71,68.74 +355766,68.158,67.234 +355767,67.553,65.713 +355768,66.888,64.176 +355769,67.319,68.72 +355770,66.818,67.212 +355771,66.265,65.689 +355772,65.655,64.15 +355773,65.928,68.699 +355774,65.478,67.19 +355775,64.978,65.665 +355776,64.423,64.124 +355777,64.537,68.677 +355778,64.138,67.167 +355779,63.69,65.641 +355780,63.19,64.1 +355781,63.145,68.653 +355782,62.797,67.144 +355783,62.403,65.618 +355784,61.959,64.077 +355785,61.753,68.628 +355786,61.457,67.12 +355787,61.116,65.596 +355788,60.727,64.056 +355789,60.36,68.602 +355790,60.116,67.096 +355791,59.829,65.573 +355792,59.496,64.035 +355793,58.967,68.575 +355794,58.775,67.072 +355795,58.542,65.551 +355796,58.264,64.016 +355797,57.574,68.547 +355798,57.435,67.047 +355799,57.255,65.53 +355800,57.033,63.998 +355801,56.18,68.517 +355802,56.094,67.021 +355803,55.969,65.509 +355804,55.803,63.982 +355805,54.787,68.487 +355806,54.753,66.995 +355807,54.682,65.488 +355808,54.572,63.966 +355809,53.393,68.454 +355810,53.412,66.969 +355811,53.395,65.468 +355812,53.341,63.952 +355813,51.999,68.421 +355814,52.071,66.943 +355815,52.109,65.448 +355816,52.11,63.939 +355817,50.605,68.387 +355818,50.73,66.916 +355819,50.822,65.429 +355820,50.879,63.927 +355821,49.211,68.351 +355822,49.389,66.888 +355823,49.535,65.41 +355824,49.648,63.917 +355825,47.817,68.314 +355826,48.048,66.86 +355827,48.249,65.391 +355828,48.417,63.907 +355829,46.423,68.276 +355830,46.708,66.832 +355831,46.962,65.373 +355832,47.186,63.899 +355833,45.029,68.237 +355834,45.367,66.803 +355835,45.675,65.355 +355836,45.954,63.892 +355837,43.636,68.197 +355838,44.026,66.774 +355839,44.389,65.337 +355840,44.722,63.887 +355841,42.242,68.155 +355842,42.686,66.745 +355843,43.102,65.32 +355844,43.49,63.882 +355845,40.849,68.112 +355846,41.345,66.715 +355847,41.815,65.303 +355848,42.257,63.879 +355849,39.455,68.068 +355850,40.005,66.685 +355851,40.528,65.287 +355852,41.024,63.876 +355853,38.063,68.023 +355854,38.665,66.654 +355855,39.241,65.271 +355856,39.791,63.875 +355857,36.67,67.977 +355858,37.325,66.623 +355859,37.954,65.255 +355860,38.557,63.875 +355861,35.278,67.93 +355862,35.985,66.592 +355863,36.666,65.24 +355864,37.323,63.876 +355865,33.886,67.881 +355866,34.645,66.56 +355867,35.379,65.225 +355868,36.087,63.879 +355869,32.494,67.832 +355870,33.305,66.528 +355871,34.091,65.21 +355872,34.852,63.882 +355873,31.103,67.781 +355874,31.966,66.495 +355875,32.803,65.196 +355876,33.615,63.886 +355877,29.713,67.73 +355878,30.627,66.462 +355879,31.515,65.182 +355880,32.378,63.892 +355881,28.323,67.677 +355882,29.288,66.429 +355883,30.227,65.169 +355884,31.14,63.898 +355885,26.934,67.623 +355886,27.949,66.395 +355887,28.938,65.156 +355888,29.902,63.906 +355889,25.545,67.568 +355890,26.611,66.361 +355891,27.649,65.143 +355892,28.662,63.914 +355893,24.157,67.512 +355894,25.273,66.327 +355895,26.36,65.13 +355896,27.422,63.924 +355897,22.769,67.456 +355898,23.935,66.292 +355899,25.071,65.118 +355900,26.181,63.935 +355901,21.383,67.398 +355902,22.597,66.257 +355903,23.782,65.106 +355904,24.939,63.946 +355905,19.997,67.339 +355906,21.26,66.222 +355907,22.492,65.094 +355908,23.696,63.959 +355909,18.612,67.279 +355910,19.923,66.186 +355911,21.202,65.083 +355912,22.452,63.972 +355913,17.228,67.219 +355914,18.586,66.15 +355915,19.911,65.072 +355916,21.207,63.986 +355917,15.844,67.157 +355918,17.249,66.114 +355919,18.62,65.061 +355920,19.961,64.001 +355921,14.462,67.095 +355922,15.913,66.077 +355923,17.329,65.051 +355924,18.714,64.017 +355925,13.08,67.031 +355926,14.578,66.04 +355927,16.038,65.04 +355928,17.465,64.034 +355929,11.7,66.967 +355930,13.242,66.003 +355931,14.746,65.03 +355932,16.216,64.052 +355933,10.32,66.902 +355934,11.907,65.965 +355935,13.454,65.021 +355936,14.965,64.07 +355937,8.9419,66.837 +355938,10.573,65.928 +355939,12.162,65.011 +355940,13.713,64.089 +355941,7.5646,66.77 +355942,9.2388,65.89 +355943,10.869,65.002 +355944,12.46,64.109 +355945,6.1884,66.703 +355946,7.905,65.851 +355947,9.5755,64.993 +355948,11.205,64.13 +355949,4.8134,66.635 +355950,6.5717,65.813 +355951,8.2818,64.984 +355952,9.9495,64.151 +355953,3.4396,66.566 +355954,5.2389,65.774 +355955,6.9877,64.976 +355956,8.6924,64.173 +355957,2.0671,66.496 +355958,3.9064,65.735 +355959,5.6932,64.968 +355960,7.4339,64.196 +355961,0.6958,66.426 +355962,2.5745,65.696 +355963,4.3983,64.959 +355964,6.1741,64.219 +355965,359.33,66.355 +355966,1.243,65.656 +355967,3.1029,64.952 +355968,4.9128,64.243 +355969,357.96,66.284 +355970,359.91,65.616 +355971,1.8071,64.944 +355972,3.6501,64.268 +355973,356.59,66.212 +355974,358.58,65.576 +355975,0.51079,64.936 +355976,2.3859,64.293 +355977,355.22,66.139 +355978,357.25,65.536 +355979,359.21,64.929 +355980,1.1203,64.318 +355981,353.86,66.066 +355982,355.92,65.496 +355983,357.92,64.922 +355984,359.85,64.344 +355985,352.5,65.993 +355986,354.59,65.456 +355987,356.62,64.915 +355988,358.58,64.371 +355989,351.14,65.918 +355990,353.26,65.415 +355991,355.32,64.908 +355992,357.31,64.398 +355993,349.78,65.844 +355994,351.94,65.374 +355995,354.02,64.901 +355996,356.04,64.425 +355997,348.42,65.769 +355998,350.61,65.333 +355999,352.72,64.894 +356000,354.77,64.453 +356001,347.06,65.693 +356002,349.28,65.292 +356003,351.42,64.887 +356004,353.49,64.481 +356005,345.7,65.617 +356006,347.96,65.251 +356007,350.12,64.881 +356008,352.22,64.509 +356009,344.35,65.541 +356010,346.63,65.209 +356011,348.82,64.875 +356012,350.94,64.538 +356013,343,65.464 +356014,345.3,65.168 +356015,347.52,64.868 +356016,349.66,64.567 +356017,341.65,65.387 +356018,343.98,65.126 +356019,346.22,64.862 +356020,348.38,64.596 +356021,340.3,65.31 +356022,342.66,65.085 +356023,344.92,64.856 +356024,347.1,64.626 +356025,338.95,65.233 +356026,341.33,65.043 +356027,343.61,64.85 +356028,345.81,64.655 +356029,337.61,65.155 +356030,340.01,65.001 +356031,342.31,64.844 +356032,344.52,64.685 +356033,336.27,65.077 +356034,338.69,64.959 +356035,341.01,64.838 +356036,343.24,64.715 +356037,334.92,64.999 +356038,337.37,64.917 +356039,339.7,64.832 +356040,341.95,64.745 +356041,333.58,64.921 +356042,336.05,64.875 +356043,338.4,64.826 +356044,340.65,64.775 +356045,332.25,64.843 +356046,334.72,64.833 +356047,337.09,64.82 +356048,339.36,64.805 +356049,330.91,64.764 +356050,333.4,64.791 +356051,335.78,64.814 +356052,338.07,64.835 +356053,329.58,64.686 +356054,332.09,64.749 +356055,334.48,64.808 +356056,336.77,64.865 +356057,328.24,64.608 +356058,330.77,64.707 +356059,333.17,64.802 +356060,335.47,64.895 +356061,326.91,64.529 +356062,329.45,64.664 +356063,331.86,64.796 +356064,334.17,64.925 +356065,325.59,64.451 +356066,328.13,64.622 +356067,330.55,64.79 +356068,332.87,64.955 +356069,324.26,64.373 +356070,326.82,64.58 +356071,329.24,64.784 +356072,331.56,64.984 +356073,322.93,64.294 +356074,325.5,64.538 +356075,327.93,64.778 +356076,330.26,65.014 +356077,321.61,64.216 +356078,324.18,64.496 +356079,326.62,64.771 +356080,328.95,65.043 +356081,320.29,64.138 +356082,322.87,64.454 +356083,325.31,64.765 +356084,327.64,65.072 +356085,318.97,64.061 +356086,321.56,64.412 +356087,324,64.759 +356088,326.33,65.101 +356089,317.66,63.983 +356090,320.24,64.37 +356091,322.69,64.752 +356092,325.02,65.13 +356093,316.34,63.906 +356094,318.93,64.328 +356095,321.38,64.746 +356096,323.7,65.158 +356097,315.03,63.829 +356098,317.62,64.287 +356099,320.06,64.739 +356100,322.39,65.186 +356101,313.72,63.752 +356102,316.31,64.245 +356103,318.75,64.732 +356104,321.07,65.214 +356105,312.41,63.676 +356106,315,64.203 +356107,317.44,64.725 +356108,319.75,65.241 +356109,311.1,63.6 +356110,313.69,64.162 +356111,316.12,64.718 +356112,318.43,65.268 +356113,309.8,63.524 +356114,312.38,64.121 +356115,314.8,64.711 +356116,317.11,65.294 +356117,308.5,63.449 +356118,311.07,64.079 +356119,313.49,64.703 +356120,315.78,65.32 +356121,307.19,63.374 +356122,309.76,64.038 +356123,312.17,64.695 +356124,314.46,65.345 +356125,305.9,63.3 +356126,308.45,63.998 +356127,310.85,64.688 +356128,313.13,65.37 +356129,304.6,63.226 +356130,307.14,63.957 +356131,309.54,64.68 +356132,311.8,65.394 +356133,303.3,63.153 +356134,305.84,63.916 +356135,308.22,64.671 +356136,310.47,65.418 +356137,302.01,63.08 +356138,304.53,63.876 +356139,306.9,64.663 +356140,309.13,65.441 +356141,300.72,63.008 +356142,303.23,63.836 +356143,305.58,64.654 +356144,307.8,65.464 +356145,299.43,62.936 +356146,301.92,63.796 +356147,304.26,64.646 +356148,306.46,65.486 +356149,298.15,62.865 +356150,300.62,63.756 +356151,302.94,64.636 +356152,305.12,65.507 +356153,296.86,62.795 +356154,299.32,63.716 +356155,301.62,64.627 +356156,303.78,65.527 +356157,295.58,62.725 +356158,298.01,63.677 +356159,300.3,64.618 +356160,302.44,65.547 +356161,294.3,62.657 +356162,296.71,63.638 +356163,298.97,64.608 +356164,301.1,65.566 +356165,293.02,62.588 +356166,295.41,63.599 +356167,297.65,64.598 +356168,299.75,65.584 +356169,291.74,62.521 +356170,294.11,63.56 +356171,296.33,64.587 +356172,298.41,65.601 +356173,290.47,62.455 +356174,292.81,63.522 +356175,295,64.577 +356176,297.06,65.618 +356177,289.19,62.389 +356178,291.51,63.484 +356179,293.68,64.566 +356180,295.71,65.634 +356181,287.92,62.324 +356182,290.21,63.446 +356183,292.35,64.554 +356184,294.36,65.649 +356185,286.65,62.26 +356186,288.92,63.408 +356187,291.03,64.543 +356188,293.01,65.663 +356189,285.38,62.197 +356190,287.62,63.371 +356191,289.7,64.531 +356192,291.65,65.676 +356193,284.12,62.134 +356194,286.32,63.334 +356195,288.37,64.519 +356196,290.3,65.688 +356197,282.85,62.073 +356198,285.02,63.297 +356199,287.05,64.506 +356200,288.94,65.699 +356201,281.59,62.013 +356202,283.73,63.261 +356203,285.72,64.493 +356204,287.58,65.71 +356205,280.33,61.953 +356206,282.43,63.225 +356207,284.39,64.48 +356208,286.22,65.719 +356209,279.07,61.895 +356210,281.14,63.189 +356211,283.06,64.467 +356212,284.86,65.727 +356213,277.81,61.837 +356214,279.84,63.154 +356215,281.73,64.453 +356216,283.5,65.735 +356217,276.55,61.781 +356218,278.55,63.118 +356219,280.41,64.439 +356220,282.14,65.741 +356221,275.3,61.725 +356222,277.26,63.084 +356223,279.08,64.424 +356224,280.77,65.746 +356225,274.05,61.671 +356226,275.96,63.049 +356227,277.75,64.409 +356228,279.41,65.75 +356229,272.79,61.618 +356230,274.67,63.015 +356231,276.41,64.394 +356232,278.04,65.753 +356233,271.54,61.565 +356234,273.38,62.981 +356235,275.08,64.378 +356236,276.67,65.755 +356237,270.3,61.514 +356238,272.09,62.948 +356239,273.75,64.362 +356240,275.3,65.756 +356241,269.05,61.464 +356242,270.8,62.915 +356243,272.42,64.345 +356244,273.93,65.756 +356245,267.8,61.416 +356246,269.51,62.882 +356247,271.09,64.329 +356248,272.56,65.755 +356249,266.56,61.368 +356250,268.22,62.85 +356251,269.76,64.311 +356252,271.18,65.752 +356253,265.31,61.322 +356254,266.93,62.818 +356255,268.42,64.294 +356256,269.81,65.748 +356257,264.07,61.276 +356258,265.64,62.786 +356259,267.09,64.275 +356260,268.43,65.743 +356261,262.83,61.232 +356262,264.35,62.755 +356263,265.76,64.257 +356264,267.06,65.737 +356265,261.59,61.189 +356266,263.06,62.724 +356267,264.42,64.238 +356268,265.68,65.73 +356269,260.35,61.148 +356270,261.78,62.694 +356271,263.09,64.219 +356272,264.3,65.722 +356273,259.12,61.107 +356274,260.49,62.664 +356275,261.75,64.199 +356276,262.92,65.712 +356277,257.88,61.068 +356278,259.2,62.634 +356279,260.42,64.179 +356280,261.54,65.701 +356281,256.64,61.03 +356282,257.91,62.605 +356283,259.08,64.158 +356284,260.16,65.689 +356285,255.41,60.993 +356286,256.63,62.576 +356287,257.75,64.137 +356288,258.78,65.676 +356289,254.18,60.958 +356290,255.34,62.548 +356291,256.41,64.116 +356292,257.4,65.661 +356293,252.94,60.924 +356294,254.06,62.52 +356295,255.07,64.094 +356296,256.01,65.645 +356297,251.71,60.891 +356298,252.77,62.492 +356299,253.74,64.072 +356300,254.63,65.628 +356301,250.48,60.859 +356302,251.48,62.465 +356303,252.4,64.049 +356304,253.24,65.61 +356305,249.25,60.829 +356306,250.2,62.439 +356307,251.07,64.026 +356308,251.86,65.59 +356309,248.02,60.8 +356310,248.91,62.412 +356311,249.73,64.002 +356312,250.47,65.569 +356313,246.79,60.772 +356314,247.63,62.386 +356315,248.39,63.978 +356316,249.08,65.547 +356317,245.56,60.746 +356318,246.35,62.361 +356319,247.05,63.953 +356320,247.69,65.523 +356321,244.34,60.72 +356322,245.06,62.336 +356323,245.72,63.929 +356324,246.31,65.498 +356325,243.11,60.697 +356326,243.78,62.311 +356327,244.38,63.903 +356328,244.92,65.472 +356329,241.88,60.674 +356330,242.49,62.287 +356331,243.04,63.877 +356332,243.53,65.445 +356333,240.66,60.653 +356334,241.21,62.263 +356335,241.7,63.851 +356336,242.14,65.416 +356337,239.43,60.633 +356338,239.93,62.239 +356339,240.36,63.824 +356340,240.75,65.387 +356341,238.21,60.614 +356342,238.64,62.216 +356343,239.03,63.797 +356344,239.36,65.355 +356345,236.98,60.597 +356346,237.36,62.194 +356347,237.69,63.77 +356348,237.97,65.323 +356349,235.76,60.58 +356350,236.08,62.172 +356351,236.35,63.741 +356352,236.57,65.289 +356353,234.53,60.566 +356354,234.8,62.15 +356355,235.01,63.713 +356356,235.18,65.254 +356357,233.31,60.552 +356358,233.51,62.129 +356359,233.67,63.684 +356360,233.79,65.218 +356361,232.08,60.54 +356362,232.23,62.108 +356363,232.34,63.655 +356364,232.4,65.18 +356365,230.86,60.529 +356366,230.95,62.087 +356367,231,63.625 +356368,231.01,65.141 +356369,229.63,60.519 +356370,229.67,62.067 +356371,229.66,63.595 +356372,229.61,65.101 +356373,228.41,60.51 +356374,228.38,62.047 +356375,228.32,63.564 +356376,228.22,65.06 +356377,227.18,60.503 +356378,227.1,62.028 +356379,226.98,63.533 +356380,226.83,65.018 +356381,225.96,60.497 +356382,225.82,62.009 +356383,225.64,63.501 +356384,225.44,64.974 +356385,224.73,60.492 +356386,224.54,61.99 +356387,224.3,63.47 +356388,224.04,64.929 +356389,223.51,60.489 +356390,223.25,61.972 +356391,222.97,63.437 +356392,222.65,64.883 +356393,222.28,60.486 +356394,221.97,61.954 +356395,221.63,63.404 +356396,221.26,64.835 +356397,221.06,60.485 +356398,220.69,61.937 +356399,220.29,63.371 +356400,219.87,64.787 +356401,219.83,60.485 +356402,219.4,61.92 +356403,218.95,63.338 +356404,218.47,64.737 +356405,218.6,60.486 +356406,218.12,61.903 +356407,217.61,63.304 +356408,217.08,64.686 +356409,217.38,60.488 +356410,216.84,61.887 +356411,216.28,63.269 +356412,215.69,64.634 +356413,216.15,60.492 +356414,215.56,61.871 +356415,214.94,63.235 +356416,214.3,64.58 +356417,214.92,60.496 +356418,214.27,61.856 +356419,213.6,63.199 +356420,212.91,64.526 +356421,213.69,60.502 +356422,212.99,61.84 +356423,212.26,63.164 +356424,211.52,64.47 +356425,212.46,60.508 +356426,211.71,61.826 +356427,210.93,63.128 +356428,210.13,64.414 +356429,211.23,60.516 +356430,210.42,61.811 +356431,209.59,63.092 +356432,208.74,64.356 +356433,210,60.525 +356434,209.14,61.797 +356435,208.25,63.055 +356436,207.35,64.297 +356437,208.77,60.535 +356438,207.85,61.783 +356439,206.92,63.018 +356440,205.96,64.237 +356441,207.54,60.545 +356442,206.57,61.77 +356443,205.58,62.98 +356444,204.57,64.176 +356445,206.31,60.557 +356446,205.28,61.756 +356447,204.24,62.943 +356448,203.18,64.114 +356449,205.07,60.57 +356450,204,61.744 +356451,202.91,62.905 +356452,201.79,64.051 +356453,203.84,60.584 +356454,202.72,61.731 +356455,201.57,62.866 +356456,200.41,63.987 +356457,202.6,60.598 +356458,201.43,61.719 +356459,200.24,62.827 +356460,199.02,63.923 +356461,201.36,60.614 +356462,200.14,61.707 +356463,198.9,62.788 +356464,197.64,63.857 +356465,200.13,60.63 +356466,198.86,61.695 +356467,197.57,62.749 +356468,196.25,63.79 +356469,198.89,60.648 +356470,197.57,61.684 +356471,196.23,62.709 +356472,194.87,63.722 +356473,197.65,60.666 +356474,196.29,61.673 +356475,194.9,62.669 +356476,193.49,63.654 +356477,196.4,60.685 +356478,195,61.662 +356479,193.57,62.629 +356480,192.11,63.584 +356481,195.16,60.705 +356482,193.71,61.651 +356483,192.23,62.588 +356484,190.73,63.514 +356485,193.92,60.725 +356486,192.42,61.641 +356487,190.9,62.547 +356488,189.35,63.443 +356489,192.67,60.746 +356490,191.14,61.631 +356491,189.57,62.506 +356492,187.97,63.371 +356493,191.43,60.768 +356494,189.85,61.621 +356495,188.24,62.465 +356496,186.59,63.298 +356497,190.18,60.791 +356498,188.56,61.611 +356499,186.9,62.423 +356500,185.21,63.224 +356501,188.93,60.814 +356502,187.27,61.602 +356503,185.57,62.381 +356504,183.84,63.15 +356505,187.68,60.838 +356506,185.98,61.593 +356507,184.24,62.339 +356508,182.46,63.075 +356509,186.43,60.863 +356510,184.69,61.583 +356511,182.91,62.296 +356512,181.09,63 +356513,185.18,60.888 +356514,183.4,61.575 +356515,181.58,62.254 +356516,179.72,62.923 +356517,183.92,60.914 +356518,182.11,61.566 +356519,180.25,62.211 +356520,178.35,62.847 +356521,182.67,60.94 +356522,180.82,61.557 +356523,178.92,62.168 +356524,176.98,62.769 +356525,181.41,60.967 +356526,179.53,61.549 +356527,177.6,62.124 +356528,175.61,62.691 +356529,180.15,60.994 +356530,178.24,61.541 +356531,176.27,62.081 +356532,174.24,62.612 +356533,178.89,61.022 +356534,176.94,61.533 +356535,174.94,62.037 +356536,172.88,62.533 +356537,177.63,61.05 +356538,175.65,61.525 +356539,173.61,61.994 +356540,171.52,62.454 +356541,176.37,61.078 +356542,174.36,61.517 +356543,172.29,61.95 +356544,170.15,62.374 +356545,175.1,61.107 +356546,173.06,61.509 +356547,170.96,61.905 +356548,168.79,62.293 +356549,173.83,61.136 +356550,171.77,61.502 +356551,169.64,61.861 +356552,167.43,62.212 +356553,172.57,61.166 +356554,170.47,61.494 +356555,168.31,61.817 +356556,166.08,62.131 +356557,171.3,61.196 +356558,169.18,61.487 +356559,166.99,61.772 +356560,164.72,62.049 +356561,170.02,61.225 +356562,167.88,61.48 +356563,165.66,61.728 +356564,163.36,61.967 +356565,168.75,61.256 +356566,166.58,61.472 +356567,164.34,61.683 +356568,162.01,61.885 +356569,167.48,61.286 +356570,165.29,61.465 +356571,163.02,61.638 +356572,160.66,61.802 +356573,166.2,61.317 +356574,163.99,61.458 +356575,161.7,61.593 +356576,159.31,61.719 +356577,164.92,61.347 +356578,162.69,61.451 +356579,160.38,61.548 +356580,157.96,61.636 +356581,163.64,61.378 +356582,161.39,61.444 +356583,159.06,61.503 +356584,156.62,61.553 +356585,162.36,61.409 +356586,160.09,61.437 +356587,157.74,61.458 +356588,155.27,61.47 +356589,161.08,61.439 +356590,158.79,61.43 +356591,156.42,61.413 +356592,153.93,61.386 +356593,159.79,61.47 +356594,157.49,61.423 +356595,155.1,61.368 +356596,152.59,61.303 +356597,158.5,61.501 +356598,156.19,61.416 +356599,153.78,61.322 +356600,151.25,61.219 +356601,157.22,61.532 +356602,154.89,61.409 +356603,152.46,61.277 +356604,149.92,61.136 +356605,155.92,61.562 +356606,153.59,61.401 +356607,151.15,61.232 +356608,148.58,61.052 +356609,154.63,61.593 +356610,152.29,61.394 +356611,149.83,61.187 +356612,147.25,60.969 +356613,153.34,61.623 +356614,150.98,61.387 +356615,148.51,61.142 +356616,145.92,60.885 +356617,152.04,61.653 +356618,149.68,61.38 +356619,147.2,61.096 +356620,144.59,60.802 +356621,150.75,61.683 +356622,148.37,61.372 +356623,145.89,61.051 +356624,143.26,60.719 +356625,149.45,61.713 +356626,147.07,61.365 +356627,144.57,61.006 +356628,141.94,60.636 +356629,148.14,61.742 +356630,145.76,61.357 +356631,143.26,60.961 +356632,140.61,60.553 +356633,146.84,61.771 +356634,144.46,61.349 +356635,141.95,60.916 +356636,139.29,60.47 +356637,145.54,61.8 +356638,143.15,61.342 +356639,140.64,60.872 +356640,137.97,60.388 +356641,144.23,61.829 +356642,141.84,61.334 +356643,139.33,60.827 +356644,136.65,60.306 +356645,142.92,61.857 +356646,140.53,61.326 +356647,138.02,60.782 +356648,135.34,60.224 +356649,141.61,61.884 +356650,139.23,61.317 +356651,136.71,60.738 +356652,134.03,60.143 +356653,140.3,61.911 +356654,137.92,61.309 +356655,135.4,60.693 +356656,132.72,60.062 +356657,138.99,61.938 +356658,136.61,61.301 +356659,134.09,60.649 +356660,131.41,59.981 +356661,137.67,61.964 +356662,135.3,61.292 +356663,132.78,60.605 +356664,130.1,59.901 +356665,136.35,61.99 +356666,133.99,61.283 +356667,131.47,60.561 +356668,128.8,59.821 +356669,135.03,62.015 +356670,132.67,61.274 +356671,130.17,60.517 +356672,127.49,59.742 +356673,133.71,62.039 +356674,131.36,61.265 +356675,128.86,60.473 +356676,126.19,59.664 +356677,132.39,62.063 +356678,130.05,61.255 +356679,127.56,60.43 +356680,124.89,59.585 +356681,131.07,62.087 +356682,128.74,61.245 +356683,126.26,60.386 +356684,123.6,59.508 +356685,129.74,62.109 +356686,127.42,61.235 +356687,124.95,60.343 +356688,122.3,59.431 +356689,128.41,62.131 +356690,126.11,61.225 +356691,123.65,60.3 +356692,121.01,59.355 +356693,127.08,62.152 +356694,124.79,61.215 +356695,122.35,60.258 +356696,119.72,59.279 +356697,125.75,62.173 +356698,123.48,61.204 +356699,121.05,60.215 +356700,118.43,59.205 +356701,124.42,62.193 +356702,122.16,61.193 +356703,119.75,60.173 +356704,117.15,59.131 +356705,123.09,62.211 +356706,120.84,61.182 +356707,118.45,60.131 +356708,115.86,59.057 +356709,121.75,62.23 +356710,119.53,61.17 +356711,117.15,60.089 +356712,114.58,58.985 +356713,120.41,62.247 +356714,118.21,61.158 +356715,115.85,60.048 +356716,113.3,58.913 +356717,119.07,62.263 +356718,116.89,61.146 +356719,114.55,60.007 +356720,112.02,58.842 +356721,117.73,62.279 +356722,115.57,61.134 +356723,113.25,59.966 +356724,110.75,58.772 +356725,116.39,62.293 +356726,114.25,61.121 +356727,111.96,59.925 +356728,109.47,58.703 +356729,115.05,62.307 +356730,112.93,61.108 +356731,110.66,59.885 +356732,108.2,58.635 +356733,113.7,62.32 +356734,111.61,61.095 +356735,109.37,59.845 +356736,106.93,58.567 +356737,112.35,62.331 +356738,110.29,61.081 +356739,108.07,59.805 +356740,105.67,58.501 +356741,111,62.342 +356742,108.97,61.067 +356743,106.78,59.765 +356744,104.4,58.436 +356745,109.65,62.352 +356746,107.65,61.053 +356747,105.48,59.726 +356748,103.14,58.371 +356749,108.3,62.361 +356750,106.32,61.038 +356751,104.19,59.688 +356752,101.87,58.308 +356753,106.95,62.368 +356754,105,61.023 +356755,102.9,59.649 +356756,100.61,58.246 +356757,105.6,62.375 +356758,103.68,61.007 +356759,101.61,59.611 +356760,99.354,58.185 +356761,104.24,62.38 +356762,102.35,60.991 +356763,100.31,59.573 +356764,98.098,58.125 +356765,102.88,62.385 +356766,101.03,60.975 +356767,99.024,59.536 +356768,96.843,58.066 +356769,101.52,62.388 +356770,99.703,60.958 +356771,97.734,59.499 +356772,95.59,58.008 +356773,100.16,62.39 +356774,98.378,60.941 +356775,96.445,59.462 +356776,94.338,57.951 +356777,98.802,62.391 +356778,97.052,60.924 +356779,95.156,59.426 +356780,93.089,57.896 +356781,97.44,62.391 +356782,95.726,60.906 +356783,93.868,59.39 +356784,91.841,57.841 +356785,96.076,62.39 +356786,94.399,60.888 +356787,92.58,59.354 +356788,90.594,57.788 +356789,94.711,62.387 +356790,93.072,60.869 +356791,91.293,59.319 +356792,89.349,57.736 +356793,93.344,62.383 +356794,91.744,60.85 +356795,90.006,59.285 +356796,88.106,57.686 +356797,91.977,62.378 +356798,90.416,60.83 +356799,88.72,59.25 +356800,86.864,57.636 +356801,90.608,62.372 +356802,89.088,60.811 +356803,87.434,59.216 +356804,85.624,57.588 +356805,89.238,62.365 +356806,87.759,60.79 +356807,86.149,59.183 +356808,84.385,57.541 +356809,87.867,62.356 +356810,86.43,60.769 +356811,84.864,59.15 +356812,83.148,57.496 +356813,86.495,62.346 +356814,85.1,60.748 +356815,83.58,59.117 +356816,81.912,57.452 +356817,85.122,62.335 +356818,83.771,60.726 +356819,82.296,59.085 +356820,80.677,57.409 +356821,83.748,62.322 +356822,82.44,60.704 +356823,81.012,59.053 +356824,79.443,57.367 +356825,82.373,62.308 +356826,81.11,60.682 +356827,79.729,59.022 +356828,78.211,57.327 +356829,80.997,62.293 +356830,79.779,60.659 +356831,78.446,58.991 +356832,76.98,57.288 +356833,79.62,62.276 +356834,78.448,60.635 +356835,77.164,58.96 +356836,75.75,57.25 +356837,78.242,62.258 +356838,77.117,60.611 +356839,75.882,58.93 +356840,74.522,57.214 +356841,76.864,62.239 +356842,75.785,60.587 +356843,74.601,58.9 +356844,73.294,57.179 +356845,75.484,62.219 +356846,74.453,60.562 +356847,73.32,58.871 +356848,72.067,57.145 +356849,74.104,62.197 +356850,73.121,60.536 +356851,72.039,58.842 +356852,70.841,57.113 +356853,72.722,62.174 +356854,71.789,60.511 +356855,70.758,58.814 +356856,69.617,57.082 +356857,71.341,62.149 +356858,70.456,60.484 +356859,69.478,58.786 +356860,68.393,57.053 +356861,69.958,62.123 +356862,69.123,60.458 +356863,68.198,58.758 +356864,67.17,57.025 +356865,68.575,62.096 +356866,67.79,60.43 +356867,66.918,58.731 +356868,65.947,56.998 +356869,67.191,62.068 +356870,66.457,60.403 +356871,65.639,58.705 +356872,64.726,56.973 +356873,65.806,62.038 +356874,65.123,60.375 +356875,64.36,58.679 +356876,63.505,56.949 +356877,64.421,62.006 +356878,63.79,60.346 +356879,63.081,58.653 +356880,62.284,56.927 +356881,63.035,61.974 +356882,62.456,60.317 +356883,61.803,58.628 +356884,61.065,56.905 +356885,61.649,61.94 +356886,61.122,60.287 +356887,60.524,58.603 +356888,59.845,56.886 +356889,60.262,61.904 +356890,59.788,60.257 +356891,59.246,58.578 +356892,58.627,56.867 +356893,58.875,61.868 +356894,58.454,60.227 +356895,57.968,58.555 +356896,57.408,56.85 +356897,57.488,61.83 +356898,57.12,60.196 +356899,56.69,58.531 +356900,56.19,56.835 +356901,56.1,61.79 +356902,55.785,60.164 +356903,55.412,58.508 +356904,54.973,56.821 +356905,54.712,61.749 +356906,54.451,60.133 +356907,54.135,58.485 +356908,53.756,56.808 +356909,53.323,61.707 +356910,53.117,60.1 +356911,52.857,58.463 +356912,52.538,56.796 +356913,51.934,61.664 +356914,51.782,60.067 +356915,51.58,58.441 +356916,51.322,56.786 +356917,50.545,61.619 +356918,50.448,60.034 +356919,50.302,58.42 +356920,50.105,56.777 +356921,49.156,61.573 +356922,49.113,60.001 +356923,49.025,58.399 +356924,48.888,56.769 +356925,47.767,61.526 +356926,47.779,59.966 +356927,47.748,58.379 +356928,47.671,56.763 +356929,46.377,61.477 +356930,46.444,59.932 +356931,46.471,58.359 +356932,46.455,56.758 +356933,44.988,61.427 +356934,45.109,59.897 +356935,45.194,58.339 +356936,45.238,56.755 +356937,43.598,61.376 +356938,43.775,59.861 +356939,43.917,58.32 +356940,44.021,56.752 +356941,42.209,61.324 +356942,42.441,59.825 +356943,42.64,58.301 +356944,42.804,56.751 +356945,40.819,61.27 +356946,41.106,59.789 +356947,41.363,58.283 +356948,41.586,56.751 +356949,39.43,61.215 +356950,39.772,59.752 +356951,40.086,58.265 +356952,40.369,56.753 +356953,38.04,61.159 +356954,38.438,59.715 +356955,38.809,58.247 +356956,39.151,56.755 +356957,36.651,61.101 +356958,37.104,59.678 +356959,37.531,58.23 +356960,37.933,56.759 +356961,35.262,61.043 +356962,35.77,59.64 +356963,36.254,58.213 +356964,36.714,56.764 +356965,33.873,60.983 +356966,34.436,59.601 +356967,34.977,58.197 +356968,35.495,56.77 +356969,32.485,60.922 +356970,33.102,59.562 +356971,33.699,58.181 +356972,34.275,56.777 +356973,31.097,60.86 +356974,31.769,59.523 +356975,32.422,58.165 +356976,33.055,56.786 +356977,29.709,60.796 +356978,30.435,59.483 +356979,31.144,58.149 +356980,31.834,56.795 +356981,28.321,60.732 +356982,29.102,59.443 +356983,29.866,58.134 +356984,30.612,56.806 +356985,26.934,60.666 +356986,27.769,59.403 +356987,28.588,58.12 +356988,29.39,56.818 +356989,25.548,60.6 +356990,26.437,59.362 +356991,27.31,58.106 +356992,28.167,56.831 +356993,24.161,60.532 +356994,25.104,59.321 +356995,26.031,58.092 +356996,26.943,56.844 +356997,22.776,60.463 +356998,23.772,59.28 +356999,24.753,58.078 +357000,25.719,56.859 +357001,21.391,60.393 +357002,22.44,59.238 +357003,23.474,58.065 +357004,24.493,56.875 +357005,20.006,60.322 +357006,21.108,59.196 +357007,22.195,58.052 +357008,23.267,56.892 +357009,18.623,60.25 +357010,19.777,59.153 +357011,20.915,58.039 +357012,22.04,56.91 +357013,17.24,60.178 +357014,18.446,59.11 +357015,19.636,58.027 +357016,20.811,56.928 +357017,15.857,60.104 +357018,17.115,59.067 +357019,18.356,58.015 +357020,19.582,56.948 +357021,14.476,60.029 +357022,15.784,59.024 +357023,17.076,58.003 +357024,18.352,56.968 +357025,13.095,59.953 +357026,14.454,58.98 +357027,15.796,57.991 +357028,17.12,56.989 +357029,11.715,59.877 +357030,13.125,58.936 +357031,14.515,57.98 +357032,15.888,57.011 +357033,10.336,59.799 +357034,11.795,58.891 +357035,13.234,57.969 +357036,14.654,57.034 +357037,8.9578,59.721 +357038,10.466,58.847 +357039,11.952,57.958 +357040,13.419,57.058 +357041,7.5806,59.642 +357042,9.1375,58.802 +357043,10.671,57.948 +357044,12.183,57.082 +357045,6.2044,59.562 +357046,7.8093,58.757 +357047,9.3886,57.938 +357048,10.945,57.107 +357049,4.8293,59.482 +357050,6.4814,58.711 +357051,8.1061,57.927 +357052,9.7063,57.133 +357053,3.4552,59.4 +357054,5.154,58.665 +357055,6.8233,57.918 +357056,8.4662,57.159 +357057,2.0823,59.318 +357058,3.8271,58.619 +357059,5.5401,57.908 +357060,7.2247,57.186 +357061,0.71047,59.236 +357062,2.5006,58.573 +357063,4.2564,57.899 +357064,5.9818,57.214 +357065,359.34,59.152 +357066,1.1745,58.527 +357067,2.9724,57.889 +357068,4.7375,57.242 +357069,357.97,59.068 +357070,359.85,58.48 +357071,1.6879,57.88 +357072,3.4918,57.27 +357073,356.6,58.984 +357074,358.52,58.433 +357075,0.40306,57.871 +357076,2.2445,57.3 +357077,355.24,58.898 +357078,357.2,58.386 +357079,359.12,57.863 +357080,0.99582,57.329 +357081,353.87,58.813 +357082,355.88,58.339 +357083,357.83,57.854 +357084,359.75,57.359 +357085,352.51,58.726 +357086,354.55,58.292 +357087,356.55,57.846 +357088,358.49,57.39 +357089,351.14,58.64 +357090,353.23,58.244 +357091,355.26,57.837 +357092,357.24,57.421 +357093,349.78,58.553 +357094,351.91,58.197 +357095,353.97,57.829 +357096,355.99,57.452 +357097,348.42,58.465 +357098,350.58,58.149 +357099,352.68,57.821 +357100,354.73,57.483 +357101,347.06,58.377 +357102,349.26,58.101 +357103,351.4,57.813 +357104,353.47,57.515 +357105,345.71,58.289 +357106,347.94,58.053 +357107,350.11,57.805 +357108,352.21,57.547 +357109,344.35,58.2 +357110,346.62,58.005 +357111,348.82,57.797 +357112,350.95,57.579 +357113,343,58.111 +357114,345.3,57.956 +357115,347.53,57.789 +357116,349.69,57.612 +357117,341.65,58.022 +357118,343.98,57.908 +357119,346.24,57.782 +357120,348.42,57.644 +357121,340.3,57.933 +357122,342.66,57.86 +357123,344.95,57.774 +357124,347.15,57.677 +357125,338.95,57.843 +357126,341.35,57.811 +357127,343.66,57.766 +357128,345.89,57.71 +357129,337.6,57.753 +357130,340.03,57.763 +357131,342.36,57.758 +357132,344.62,57.743 +357133,336.25,57.663 +357134,338.71,57.714 +357135,341.07,57.751 +357136,343.34,57.776 +357137,334.91,57.573 +357138,337.4,57.665 +357139,339.78,57.743 +357140,342.07,57.809 +357141,333.57,57.483 +357142,336.08,57.617 +357143,338.49,57.736 +357144,340.8,57.842 +357145,332.23,57.393 +357146,334.77,57.568 +357147,337.19,57.728 +357148,339.52,57.874 +357149,330.89,57.303 +357150,333.45,57.52 +357151,335.9,57.72 +357152,338.24,57.907 +357153,329.56,57.213 +357154,332.14,57.471 +357155,334.6,57.712 +357156,336.96,57.94 +357157,328.22,57.123 +357158,330.83,57.422 +357159,333.31,57.705 +357160,335.68,57.972 +357161,326.89,57.033 +357162,329.52,57.374 +357163,332.01,57.697 +357164,334.39,58.004 +357165,325.56,56.943 +357166,328.2,57.325 +357167,330.71,57.689 +357168,333.11,58.036 +357169,324.23,56.853 +357170,326.89,57.277 +357171,329.42,57.681 +357172,331.82,58.068 +357173,322.9,56.764 +357174,325.58,57.228 +357175,328.12,57.673 +357176,330.53,58.1 +357177,321.58,56.675 +357178,324.27,57.18 +357179,326.82,57.664 +357180,329.24,58.131 +357181,320.26,56.586 +357182,322.97,57.132 +357183,325.52,57.656 +357184,327.94,58.161 +357185,318.94,56.497 +357186,321.66,57.084 +357187,324.22,57.647 +357188,326.65,58.192 +357189,317.62,56.409 +357190,320.35,57.036 +357191,322.92,57.639 +357192,325.35,58.222 +357193,316.3,56.321 +357194,319.04,56.988 +357195,321.62,57.63 +357196,324.05,58.251 +357197,314.99,56.234 +357198,317.74,56.94 +357199,320.32,57.621 +357200,322.75,58.281 +357201,313.68,56.147 +357202,316.43,56.892 +357203,319.01,57.612 +357204,321.45,58.309 +357205,312.37,56.06 +357206,315.13,56.845 +357207,317.71,57.603 +357208,320.14,58.337 +357209,311.06,55.974 +357210,313.83,56.798 +357211,316.41,57.593 +357212,318.84,58.365 +357213,309.75,55.889 +357214,312.52,56.75 +357215,315.1,57.584 +357216,317.53,58.392 +357217,308.45,55.804 +357218,311.22,56.703 +357219,313.8,57.574 +357220,316.22,58.418 +357221,307.15,55.72 +357222,309.92,56.657 +357223,312.49,57.564 +357224,314.91,58.444 +357225,305.85,55.636 +357226,308.62,56.61 +357227,311.19,57.553 +357228,313.6,58.468 +357229,304.55,55.553 +357230,307.32,56.564 +357231,309.88,57.543 +357232,312.28,58.493 +357233,303.26,55.471 +357234,306.02,56.518 +357235,308.58,57.532 +357236,310.96,58.516 +357237,301.97,55.389 +357238,304.72,56.472 +357239,307.27,57.521 +357240,309.65,58.539 +357241,300.68,55.308 +357242,303.42,56.426 +357243,305.96,57.509 +357244,308.32,58.561 +357245,299.39,55.228 +357246,302.13,56.381 +357247,304.65,57.498 +357248,307,58.582 +357249,298.1,55.149 +357250,300.83,56.336 +357251,303.34,57.486 +357252,305.68,58.603 +357253,296.82,55.07 +357254,299.53,56.291 +357255,302.03,57.474 +357256,304.35,58.622 +357257,295.54,54.993 +357258,298.24,56.246 +357259,300.72,57.461 +357260,303.03,58.641 +357261,294.26,54.916 +357262,296.94,56.202 +357263,299.41,57.448 +357264,301.7,58.658 +357265,292.98,54.841 +357266,295.65,56.158 +357267,298.1,57.435 +357268,300.37,58.675 +357269,291.71,54.766 +357270,294.36,56.115 +357271,296.79,57.422 +357272,299.04,58.691 +357273,290.43,54.692 +357274,293.06,56.071 +357275,295.47,57.408 +357276,297.7,58.706 +357277,289.16,54.62 +357278,291.77,56.028 +357279,294.16,57.394 +357280,296.37,58.72 +357281,287.89,54.548 +357282,290.48,55.986 +357283,292.85,57.379 +357284,295.03,58.732 +357285,286.63,54.477 +357286,289.19,55.943 +357287,291.53,57.364 +357288,293.69,58.744 +357289,285.36,54.408 +357290,287.9,55.901 +357291,290.22,57.349 +357292,292.35,58.755 +357293,284.1,54.34 +357294,286.61,55.86 +357295,288.9,57.333 +357296,291.01,58.764 +357297,282.84,54.273 +357298,285.33,55.819 +357299,287.59,57.317 +357300,289.67,58.773 +357301,281.58,54.207 +357302,284.04,55.778 +357303,286.27,57.301 +357304,288.32,58.78 +357305,280.33,54.142 +357306,282.75,55.737 +357307,284.95,57.284 +357308,286.98,58.786 +357309,279.07,54.078 +357310,281.47,55.697 +357311,283.64,57.267 +357312,285.63,58.791 +357313,277.82,54.016 +357314,280.18,55.658 +357315,282.32,57.249 +357316,284.28,58.795 +357317,276.57,53.955 +357318,278.89,55.618 +357319,281,57.231 +357320,282.93,58.798 +357321,275.32,53.895 +357322,277.61,55.579 +357323,279.68,57.213 +357324,281.58,58.799 +357325,274.07,53.836 +357326,276.33,55.541 +357327,278.36,57.194 +357328,280.22,58.799 +357329,272.83,53.779 +357330,275.04,55.503 +357331,277.04,57.175 +357332,278.87,58.798 +357333,271.59,53.723 +357334,273.76,55.465 +357335,275.72,57.155 +357336,277.51,58.796 +357337,270.34,53.669 +357338,272.48,55.428 +357339,274.4,57.135 +357340,276.16,58.792 +357341,269.11,53.615 +357342,271.2,55.392 +357343,273.08,57.114 +357344,274.8,58.787 +357345,267.87,53.564 +357346,269.92,55.355 +357347,271.76,57.093 +357348,273.44,58.781 +357349,266.63,53.513 +357350,268.64,55.319 +357351,270.44,57.071 +357352,272.08,58.773 +357353,265.4,53.464 +357354,267.36,55.284 +357355,269.12,57.049 +357356,270.72,58.765 +357357,264.16,53.417 +357358,266.08,55.249 +357359,267.8,57.027 +357360,269.35,58.754 +357361,262.93,53.37 +357362,264.8,55.215 +357363,266.47,57.004 +357364,267.99,58.743 +357365,261.7,53.326 +357366,263.52,55.181 +357367,265.15,56.981 +357368,266.62,58.73 +357369,260.48,53.283 +357370,262.24,55.147 +357371,263.83,56.957 +357372,265.26,58.715 +357373,259.25,53.241 +357374,260.97,55.114 +357375,262.5,56.932 +357376,263.89,58.7 +357377,258.02,53.201 +357378,259.69,55.082 +357379,261.18,56.907 +357380,262.52,58.682 +357381,256.8,53.162 +357382,258.41,55.05 +357383,259.85,56.882 +357384,261.15,58.664 +357385,255.58,53.124 +357386,257.14,55.018 +357387,258.53,56.856 +357388,259.78,58.644 +357389,254.35,53.089 +357390,255.86,54.987 +357391,257.2,56.83 +357392,258.41,58.622 +357393,253.13,53.054 +357394,254.59,54.956 +357395,255.88,56.803 +357396,257.04,58.6 +357397,251.92,53.022 +357398,253.31,54.926 +357399,254.55,56.776 +357400,255.66,58.575 +357401,250.7,52.99 +357402,252.04,54.896 +357403,253.23,56.748 +357404,254.29,58.55 +357405,249.48,52.961 +357406,250.76,54.867 +357407,251.9,56.72 +357408,252.92,58.523 +357409,248.26,52.932 +357410,249.49,54.838 +357411,250.57,56.691 +357412,251.54,58.494 +357413,247.05,52.906 +357414,248.22,54.81 +357415,249.25,56.662 +357416,250.16,58.464 +357417,245.83,52.88 +357418,246.94,54.783 +357419,247.92,56.632 +357420,248.79,58.433 +357421,244.62,52.857 +357422,245.67,54.755 +357423,246.59,56.602 +357424,247.41,58.4 +357425,243.41,52.835 +357426,244.4,54.729 +357427,245.27,56.571 +357428,246.03,58.365 +357429,242.2,52.814 +357430,243.13,54.702 +357431,243.94,56.54 +357432,244.65,58.33 +357433,240.99,52.795 +357434,241.85,54.677 +357435,242.61,56.508 +357436,243.27,58.293 +357437,239.78,52.777 +357438,240.58,54.651 +357439,241.28,56.476 +357440,241.89,58.254 +357441,238.57,52.761 +357442,239.31,54.627 +357443,239.96,56.443 +357444,240.51,58.214 +357445,237.36,52.747 +357446,238.04,54.602 +357447,238.63,56.41 +357448,239.13,58.172 +357449,236.15,52.733 +357450,236.77,54.578 +357451,237.3,56.376 +357452,237.75,58.129 +357453,234.94,52.722 +357454,235.5,54.555 +357455,235.97,56.342 +357456,236.37,58.085 +357457,233.73,52.712 +357458,234.23,54.532 +357459,234.64,56.307 +357460,234.99,58.039 +357461,232.52,52.703 +357462,232.96,54.51 +357463,233.32,56.272 +357464,233.61,57.992 +357465,231.32,52.696 +357466,231.69,54.488 +357467,231.99,56.237 +357468,232.22,57.943 +357469,230.11,52.69 +357470,230.42,54.467 +357471,230.66,56.2 +357472,230.84,57.893 +357473,228.9,52.686 +357474,229.15,54.446 +357475,229.33,56.164 +357476,229.46,57.842 +357477,227.7,52.683 +357478,227.88,54.425 +357479,228,56.127 +357480,228.07,57.789 +357481,226.49,52.681 +357482,226.61,54.405 +357483,226.67,56.089 +357484,226.69,57.735 +357485,225.28,52.681 +357486,225.34,54.386 +357487,225.35,56.051 +357488,225.31,57.679 +357489,224.07,52.682 +357490,224.07,54.367 +357491,224.02,56.013 +357492,223.92,57.622 +357493,222.87,52.685 +357494,222.8,54.348 +357495,222.69,55.974 +357496,222.54,57.564 +357497,221.66,52.689 +357498,221.53,54.33 +357499,221.36,55.935 +357500,221.15,57.504 +357501,220.45,52.694 +357502,220.26,54.312 +357503,220.03,55.895 +357504,219.77,57.443 +357505,219.25,52.701 +357506,218.99,54.294 +357507,218.7,55.855 +357508,218.39,57.381 +357509,218.04,52.708 +357510,217.72,54.277 +357511,217.38,55.814 +357512,217,57.318 +357513,216.83,52.717 +357514,216.45,54.261 +357515,216.05,55.773 +357516,215.62,57.253 +357517,215.62,52.728 +357518,215.18,54.245 +357519,214.72,55.731 +357520,214.24,57.187 +357521,214.41,52.739 +357522,213.91,54.229 +357523,213.39,55.689 +357524,212.85,57.12 +357525,213.2,52.752 +357526,212.64,54.214 +357527,212.07,55.647 +357528,211.47,57.051 +357529,211.99,52.766 +357530,211.37,54.199 +357531,210.74,55.604 +357532,210.09,56.981 +357533,210.78,52.781 +357534,210.1,54.184 +357535,209.41,55.561 +357536,208.71,56.91 +357537,209.57,52.798 +357538,208.83,54.17 +357539,208.09,55.517 +357540,207.32,56.838 +357541,208.35,52.815 +357542,207.56,54.157 +357543,206.76,55.473 +357544,205.94,56.765 +357545,207.14,52.834 +357546,206.29,54.143 +357547,205.43,55.429 +357548,204.56,56.691 +357549,205.93,52.853 +357550,205.02,54.13 +357551,204.11,55.384 +357552,203.18,56.615 +357553,204.71,52.874 +357554,203.75,54.117 +357555,202.78,55.339 +357556,201.8,56.538 +357557,203.5,52.895 +357558,202.48,54.105 +357559,201.46,55.294 +357560,200.42,56.461 +357561,202.28,52.918 +357562,201.21,54.093 +357563,200.13,55.248 +357564,199.04,56.382 +357565,201.06,52.941 +357566,199.94,54.081 +357567,198.81,55.202 +357568,197.67,56.302 +357569,199.84,52.966 +357570,198.67,54.07 +357571,197.48,55.156 +357572,196.29,56.222 +357573,198.62,52.991 +357574,197.39,54.059 +357575,196.16,55.109 +357576,194.91,56.14 +357577,197.4,53.017 +357578,196.12,54.048 +357579,194.83,55.062 +357580,193.54,56.057 +357581,196.18,53.044 +357582,194.85,54.038 +357583,193.51,55.014 +357584,192.16,55.974 +357585,194.96,53.072 +357586,193.58,54.027 +357587,192.19,54.967 +357588,190.79,55.889 +357589,193.73,53.101 +357590,192.3,54.017 +357591,190.86,54.919 +357592,189.41,55.804 +357593,192.51,53.13 +357594,191.03,54.008 +357595,189.54,54.871 +357596,188.04,55.717 +357597,191.28,53.16 +357598,189.75,53.998 +357599,188.22,54.822 +357600,186.67,55.63 +357601,190.05,53.191 +357602,188.48,53.989 +357603,186.9,54.773 +357604,185.3,55.542 +357605,188.82,53.223 +357606,187.21,53.98 +357607,185.58,54.724 +357608,183.93,55.454 +357609,187.59,53.255 +357610,185.93,53.971 +357611,184.26,54.675 +357612,182.56,55.365 +357613,186.36,53.287 +357614,184.66,53.963 +357615,182.93,54.626 +357616,181.19,55.275 +357617,185.12,53.321 +357618,183.38,53.954 +357619,181.62,54.576 +357620,179.83,55.184 +357621,183.89,53.354 +357622,182.1,53.946 +357623,180.3,54.526 +357624,178.46,55.092 +357625,182.65,53.388 +357626,180.83,53.938 +357627,178.98,54.476 +357628,177.1,55 +357629,181.41,53.423 +357630,179.55,53.93 +357631,177.66,54.426 +357632,175.74,54.908 +357633,180.17,53.458 +357634,178.27,53.923 +357635,176.34,54.375 +357636,174.37,54.815 +357637,178.93,53.494 +357638,176.99,53.915 +357639,175.02,54.325 +357640,173.01,54.721 +357641,177.69,53.53 +357642,175.72,53.908 +357643,173.71,54.274 +357644,171.66,54.627 +357645,176.44,53.566 +357646,174.44,53.9 +357647,172.39,54.223 +357648,170.3,54.532 +357649,175.19,53.602 +357650,173.16,53.893 +357651,171.08,54.172 +357652,168.94,54.438 +357653,173.95,53.639 +357654,171.88,53.886 +357655,169.76,54.121 +357656,167.59,54.342 +357657,172.7,53.676 +357658,170.6,53.879 +357659,168.45,54.07 +357660,166.24,54.246 +357661,171.44,53.713 +357662,169.32,53.872 +357663,167.13,54.019 +357664,164.88,54.15 +357665,170.19,53.75 +357666,168.04,53.865 +357667,165.82,53.967 +357668,163.53,54.054 +357669,168.94,53.788 +357670,166.75,53.858 +357671,164.51,53.916 +357672,162.19,53.958 +357673,167.68,53.825 +357674,165.47,53.852 +357675,163.19,53.864 +357676,160.84,53.861 +357677,166.42,53.863 +357678,164.19,53.845 +357679,161.88,53.813 +357680,159.49,53.764 +357681,165.16,53.9 +357682,162.91,53.838 +357683,160.57,53.761 +357684,158.15,53.667 +357685,163.9,53.938 +357686,161.62,53.831 +357687,159.26,53.709 +357688,156.81,53.57 +357689,162.63,53.975 +357690,160.34,53.825 +357691,157.95,53.658 +357692,155.47,53.472 +357693,161.37,54.013 +357694,159.05,53.818 +357695,156.64,53.606 +357696,154.13,53.375 +357697,160.1,54.05 +357698,157.77,53.811 +357699,155.34,53.555 +357700,152.8,53.278 +357701,158.83,54.087 +357702,156.48,53.804 +357703,154.03,53.503 +357704,151.46,53.181 +357705,157.56,54.124 +357706,155.19,53.797 +357707,152.72,53.452 +357708,150.13,53.083 +357709,156.29,54.161 +357710,153.91,53.79 +357711,151.42,53.4 +357712,148.8,52.986 +357713,155.01,54.197 +357714,152.62,53.783 +357715,150.11,53.349 +357716,147.47,52.889 +357717,153.74,54.233 +357718,151.33,53.776 +357719,148.81,53.297 +357720,146.14,52.793 +357721,152.46,54.269 +357722,150.04,53.769 +357723,147.5,53.246 +357724,144.82,52.696 +357725,151.18,54.305 +357726,148.75,53.762 +357727,146.2,53.195 +357728,143.5,52.6 +357729,149.89,54.34 +357730,147.46,53.754 +357731,144.9,53.144 +357732,142.18,52.504 +357733,148.61,54.374 +357734,146.17,53.747 +357735,143.59,53.093 +357736,140.86,52.409 +357737,147.32,54.408 +357738,144.88,53.739 +357739,142.29,53.042 +357740,139.54,52.314 +357741,146.04,54.442 +357742,143.59,53.731 +357743,140.99,52.992 +357744,138.23,52.219 +357745,144.75,54.475 +357746,142.3,53.723 +357747,139.69,52.941 +357748,136.92,52.125 +357749,143.46,54.508 +357750,141,53.715 +357751,138.4,52.891 +357752,135.61,52.031 +357753,142.16,54.54 +357754,139.71,53.707 +357755,137.1,52.841 +357756,134.3,51.937 +357757,140.87,54.571 +357758,138.41,53.698 +357759,135.8,52.791 +357760,132.99,51.845 +357761,139.57,54.602 +357762,137.12,53.689 +357763,134.5,52.741 +357764,131.69,51.753 +357765,138.27,54.632 +357766,135.82,53.68 +357767,133.21,52.692 +357768,130.39,51.661 +357769,136.97,54.662 +357770,134.53,53.671 +357771,131.91,52.642 +357772,129.09,51.57 +357773,135.67,54.69 +357774,133.23,53.661 +357775,130.62,52.593 +357776,127.79,51.48 +357777,134.36,54.718 +357778,131.93,53.652 +357779,129.32,52.544 +357780,126.5,51.391 +357781,133.06,54.745 +357782,130.64,53.642 +357783,128.03,52.496 +357784,125.21,51.302 +357785,131.75,54.772 +357786,129.34,53.631 +357787,126.74,52.448 +357788,123.92,51.215 +357789,130.44,54.797 +357790,128.04,53.621 +357791,125.45,52.4 +357792,122.63,51.128 +357793,129.13,54.822 +357794,126.74,53.61 +357795,124.16,52.352 +357796,121.34,51.042 +357797,127.82,54.845 +357798,125.44,53.599 +357799,122.87,52.305 +357800,120.06,50.957 +357801,126.5,54.868 +357802,124.14,53.587 +357803,121.58,52.258 +357804,118.78,50.872 +357805,125.19,54.89 +357806,122.84,53.576 +357807,120.29,52.211 +357808,117.5,50.789 +357809,123.87,54.91 +357810,121.54,53.563 +357811,119,52.165 +357812,116.22,50.707 +357813,122.55,54.93 +357814,120.23,53.551 +357815,117.72,52.119 +357816,114.95,50.626 +357817,121.23,54.949 +357818,118.93,53.538 +357819,116.43,52.073 +357820,113.68,50.546 +357821,119.9,54.967 +357822,117.63,53.525 +357823,115.15,52.028 +357824,112.41,50.467 +357825,118.58,54.983 +357826,116.32,53.511 +357827,113.86,51.983 +357828,111.14,50.389 +357829,117.25,54.999 +357830,115.02,53.498 +357831,112.58,51.938 +357832,109.88,50.313 +357833,115.92,55.013 +357834,113.71,53.483 +357835,111.29,51.894 +357836,108.61,50.237 +357837,114.59,55.026 +357838,112.41,53.469 +357839,110.01,51.85 +357840,107.35,50.163 +357841,113.26,55.038 +357842,111.1,53.454 +357843,108.73,51.807 +357844,106.09,50.09 +357845,111.93,55.049 +357846,109.8,53.438 +357847,107.45,51.764 +357848,104.84,50.019 +357849,110.6,55.058 +357850,108.49,53.422 +357851,106.17,51.722 +357852,103.58,49.948 +357853,109.26,55.067 +357854,107.18,53.406 +357855,104.89,51.68 +357856,102.33,49.879 +357857,107.92,55.074 +357858,105.87,53.389 +357859,103.61,51.638 +357860,101.08,49.812 +357861,106.59,55.08 +357862,104.56,53.372 +357863,102.33,51.597 +357864,99.834,49.745 +357865,105.25,55.084 +357866,103.26,53.354 +357867,101.05,51.556 +357868,98.588,49.681 +357869,103.9,55.088 +357870,101.95,53.336 +357871,99.777,51.516 +357872,97.345,49.617 +357873,102.56,55.089 +357874,100.64,53.318 +357875,98.501,51.476 +357876,96.103,49.555 +357877,101.22,55.09 +357878,99.326,53.299 +357879,97.225,51.437 +357880,94.864,49.495 +357881,99.873,55.089 +357882,98.015,53.28 +357883,95.95,51.398 +357884,93.626,49.436 +357885,98.526,55.087 +357886,96.704,53.26 +357887,94.676,51.36 +357888,92.391,49.379 +357889,97.178,55.083 +357890,95.392,53.239 +357891,93.402,51.322 +357892,91.158,49.323 +357893,95.829,55.078 +357894,94.08,53.218 +357895,92.129,51.285 +357896,89.926,49.268 +357897,94.479,55.072 +357898,92.768,53.197 +357899,90.857,51.248 +357900,88.696,49.216 +357901,93.127,55.064 +357902,91.455,53.175 +357903,89.585,51.212 +357904,87.468,49.165 +357905,91.774,55.055 +357906,90.141,53.153 +357907,88.314,51.176 +357908,86.242,49.115 +357909,90.42,55.044 +357910,88.828,53.13 +357911,87.043,51.141 +357912,85.018,49.067 +357913,89.065,55.032 +357914,87.514,53.107 +357915,85.773,51.107 +357916,83.795,49.021 +357917,87.709,55.018 +357918,86.199,53.083 +357919,84.503,51.072 +357920,82.574,48.976 +357921,86.352,55.003 +357922,84.885,53.059 +357923,83.234,51.039 +357924,81.355,48.933 +357925,84.994,54.986 +357926,83.57,53.034 +357927,81.966,51.006 +357928,80.137,48.892 +357929,83.634,54.968 +357930,82.254,53.009 +357931,80.697,50.973 +357932,78.92,48.852 +357933,82.274,54.949 +357934,80.939,52.983 +357935,79.43,50.941 +357936,77.706,48.814 +357937,80.913,54.927 +357938,79.623,52.956 +357939,78.163,50.91 +357940,76.492,48.778 +357941,79.551,54.905 +357942,78.306,52.93 +357943,76.896,50.879 +357944,75.28,48.743 +357945,78.188,54.88 +357946,76.99,52.902 +357947,75.63,50.849 +357948,74.07,48.71 +357949,76.825,54.855 +357950,75.673,52.874 +357951,74.364,50.819 +357952,72.86,48.679 +357953,75.46,54.827 +357954,74.356,52.846 +357955,73.099,50.79 +357956,71.652,48.65 +357957,74.095,54.798 +357958,73.039,52.817 +357959,71.834,50.761 +357960,70.445,48.622 +357961,72.728,54.768 +357962,71.721,52.787 +357963,70.57,50.733 +357964,69.239,48.596 +357965,71.362,54.736 +357966,70.404,52.757 +357967,69.306,50.705 +357968,68.035,48.572 +357969,69.994,54.702 +357970,69.086,52.727 +357971,68.042,50.678 +357972,66.831,48.549 +357973,68.626,54.667 +357974,67.768,52.696 +357975,66.778,50.652 +357976,65.628,48.528 +357977,67.257,54.631 +357978,66.449,52.664 +357979,65.515,50.626 +357980,64.426,48.509 +357981,65.888,54.593 +357982,65.131,52.632 +357983,64.253,50.601 +357984,63.225,48.491 +357985,64.518,54.553 +357986,63.813,52.599 +357987,62.99,50.576 +357988,62.025,48.476 +357989,63.147,54.512 +357990,62.494,52.566 +357991,61.728,50.552 +357992,60.825,48.461 +357993,61.776,54.469 +357994,61.175,52.533 +357995,60.466,50.528 +357996,59.627,48.449 +357997,60.405,54.424 +357998,59.856,52.498 +357999,59.205,50.505 +358000,58.428,48.438 +358001,59.033,54.379 +358002,58.537,52.464 +358003,57.943,50.483 +358004,57.231,48.429 +358005,57.661,54.331 +358006,57.218,52.428 +358007,56.682,50.461 +358008,56.034,48.422 +358009,56.288,54.282 +358010,55.899,52.393 +358011,55.421,50.439 +358012,54.837,48.416 +358013,54.916,54.232 +358014,54.58,52.356 +358015,54.16,50.418 +358016,53.64,48.412 +358017,53.542,54.18 +358018,53.261,52.32 +358019,52.9,50.398 +358020,52.444,48.409 +358021,52.169,54.126 +358022,51.941,52.282 +358023,51.639,50.378 +358024,51.249,48.408 +358025,50.795,54.071 +358026,50.622,52.245 +358027,50.379,50.359 +358028,50.053,48.409 +358029,49.421,54.015 +358030,49.303,52.206 +358031,49.119,50.34 +358032,48.858,48.411 +358033,48.048,53.957 +358034,47.984,52.168 +358035,47.859,50.322 +358036,47.662,48.415 +358037,46.673,53.898 +358038,46.664,52.128 +358039,46.599,50.304 +358040,46.467,48.42 +358041,45.299,53.837 +358042,45.345,52.089 +358043,45.339,50.287 +358044,45.272,48.427 +358045,43.925,53.775 +358046,44.026,52.048 +358047,44.079,50.27 +358048,44.076,48.436 +358049,42.551,53.711 +358050,42.707,52.008 +358051,42.82,50.254 +358052,42.881,48.446 +358053,41.177,53.646 +358054,41.388,51.967 +358055,41.56,50.238 +358056,41.685,48.457 +358057,39.803,53.58 +358058,40.07,51.925 +358059,40.3,50.223 +358060,40.489,48.47 +358061,38.429,53.512 +358062,38.751,51.883 +358063,39.041,50.208 +358064,39.293,48.484 +358065,37.055,53.442 +358066,37.432,51.84 +358067,37.781,50.194 +358068,38.096,48.499 +358069,35.682,53.372 +358070,36.114,51.798 +358071,36.521,50.18 +358072,36.899,48.516 +358073,34.308,53.3 +358074,34.796,51.754 +358075,35.261,50.166 +358076,35.701,48.535 +358077,32.935,53.227 +358078,33.478,51.71 +358079,34.001,50.153 +358080,34.503,48.554 +358081,31.562,53.152 +358082,32.16,51.666 +358083,32.741,50.141 +358084,33.304,48.575 +358085,30.19,53.077 +358086,30.842,51.621 +358087,31.481,50.129 +358088,32.105,48.597 +358089,28.818,53 +358090,29.525,51.576 +358091,30.221,50.117 +358092,30.905,48.621 +358093,27.446,52.921 +358094,28.208,51.531 +358095,28.961,50.106 +358096,29.704,48.646 +358097,26.075,52.842 +358098,26.891,51.485 +358099,27.7,50.095 +358100,28.503,48.671 +358101,24.704,52.761 +358102,25.574,51.439 +358103,26.44,50.085 +358104,27.3,48.698 +358105,23.333,52.679 +358106,24.258,51.392 +358107,25.179,50.075 +358108,26.097,48.726 +358109,21.964,52.596 +358110,22.941,51.345 +358111,23.918,50.065 +358112,24.892,48.756 +358113,20.595,52.512 +358114,21.626,51.298 +358115,22.656,50.056 +358116,23.687,48.786 +358117,19.226,52.427 +358118,20.31,51.25 +358119,21.395,50.047 +358120,22.481,48.817 +358121,17.858,52.341 +358122,18.995,51.202 +358123,20.133,50.038 +358124,21.274,48.849 +358125,16.491,52.254 +358126,17.68,51.154 +358127,18.871,50.03 +358128,20.065,48.883 +358129,15.125,52.165 +358130,16.366,51.106 +358131,17.609,50.022 +358132,18.856,48.917 +358133,13.759,52.076 +358134,15.052,51.057 +358135,16.347,50.015 +358136,17.645,48.952 +358137,12.395,51.986 +358138,13.738,51.007 +358139,15.084,50.008 +358140,16.433,48.988 +358141,11.031,51.895 +358142,12.425,50.958 +358143,13.821,50.001 +358144,15.22,49.025 +358145,9.6677,51.803 +358146,11.112,50.908 +358147,12.557,49.994 +358148,14.005,49.062 +358149,8.3056,51.71 +358150,9.7996,50.858 +358151,11.294,49.988 +358152,12.789,49.1 +358153,6.9445,51.616 +358154,8.4877,50.808 +358155,10.03,49.982 +358156,11.572,49.139 +358157,5.5844,51.521 +358158,7.1761,50.757 +358159,8.7652,49.976 +358160,10.353,49.179 +358161,4.2254,51.426 +358162,5.8651,50.706 +358163,7.5005,49.97 +358164,9.1328,49.22 +358165,2.8674,51.33 +358166,4.5545,50.655 +358167,6.2353,49.965 +358168,7.9112,49.261 +358169,1.5106,51.233 +358170,3.2444,50.604 +358171,4.9697,49.96 +358172,6.6881,49.302 +358173,0.15493,51.135 +358174,1.9348,50.553 +358175,3.7038,49.955 +358176,5.4634,49.344 +358177,358.8,51.037 +358178,0.62575,50.501 +358179,2.4374,49.95 +358180,4.2372,49.387 +358181,357.45,50.938 +358182,359.32,50.449 +358183,1.1706,49.946 +358184,3.0094,49.43 +358185,356.1,50.839 +358186,358.01,50.397 +358187,359.9,49.941 +358188,1.78,49.473 +358189,354.74,50.739 +358190,356.7,50.345 +358191,358.64,49.937 +358192,0.54892,49.517 +358193,353.4,50.639 +358194,355.39,50.293 +358195,357.37,49.933 +358196,359.32,49.562 +358197,352.05,50.538 +358198,354.09,50.24 +358199,356.1,49.929 +358200,358.08,49.606 +358201,350.7,50.436 +358202,352.78,50.188 +358203,354.83,49.926 +358204,356.85,49.651 +358205,349.36,50.335 +358206,351.48,50.135 +358207,353.56,49.922 +358208,355.61,49.696 +358209,348.01,50.232 +358210,350.17,50.083 +358211,352.29,49.918 +358212,354.37,49.741 +358213,346.67,50.13 +358214,348.87,50.03 +358215,351.02,49.915 +358216,353.13,49.787 +358217,345.33,50.027 +358218,347.57,49.977 +358219,349.75,49.912 +358220,351.88,49.833 +358221,343.99,49.924 +358222,346.26,49.924 +358223,348.48,49.908 +358224,350.64,49.878 +358225,342.65,49.821 +358226,344.96,49.871 +358227,347.21,49.905 +358228,349.39,49.924 +358229,341.32,49.718 +358230,343.66,49.819 +358231,345.93,49.902 +358232,348.14,49.97 +358233,339.98,49.614 +358234,342.36,49.766 +358235,344.66,49.899 +358236,346.89,50.015 +358237,338.65,49.511 +358238,341.06,49.713 +358239,343.39,49.895 +358240,345.64,50.061 +358241,337.32,49.407 +358242,339.76,49.66 +358243,342.11,49.892 +358244,344.39,50.107 +358245,335.99,49.303 +358246,338.46,49.607 +358247,340.84,49.889 +358248,343.13,50.152 +358249,334.67,49.2 +358250,337.16,49.554 +358251,339.56,49.886 +358252,341.87,50.197 +358253,333.34,49.096 +358254,335.87,49.501 +358255,338.29,49.883 +358256,340.62,50.243 +358257,332.02,48.993 +358258,334.57,49.449 +358259,337.01,49.879 +358260,339.35,50.287 +358261,330.7,48.889 +358262,333.27,49.396 +358263,335.73,49.876 +358264,338.09,50.332 +358265,329.38,48.786 +358266,331.98,49.344 +358267,334.46,49.872 +358268,336.83,50.376 +358269,328.06,48.683 +358270,330.68,49.291 +358271,333.18,49.869 +358272,335.56,50.42 +358273,326.74,48.581 +358274,329.39,49.239 +358275,331.9,49.865 +358276,334.29,50.464 +358277,325.43,48.478 +358278,328.1,49.187 +358279,330.62,49.862 +358280,333.02,50.507 +358281,324.12,48.376 +358282,326.81,49.135 +358283,329.34,49.858 +358284,331.75,50.549 +358285,322.81,48.275 +358286,325.51,49.083 +358287,328.06,49.854 +358288,330.47,50.591 +358289,321.5,48.174 +358290,324.22,49.031 +358291,326.78,49.849 +358292,329.2,50.633 +358293,320.2,48.073 +358294,322.93,48.98 +358295,325.5,49.845 +358296,327.92,50.674 +358297,318.9,47.973 +358298,321.64,48.929 +358299,324.22,49.841 +358300,326.64,50.715 +358301,317.59,47.874 +358302,320.36,48.877 +358303,322.93,49.836 +358304,325.36,50.754 +358305,316.3,47.775 +358306,319.07,48.827 +358307,321.65,49.831 +358308,324.07,50.793 +358309,315,47.676 +358310,317.78,48.776 +358311,320.37,49.826 +358312,322.79,50.832 +358313,313.71,47.579 +358314,316.49,48.726 +358315,319.08,49.821 +358316,321.5,50.87 +358317,312.41,47.482 +358318,315.21,48.676 +358319,317.8,49.815 +358320,320.21,50.907 +358321,311.12,47.386 +358322,313.93,48.626 +358323,316.51,49.809 +358324,318.92,50.943 +358325,309.84,47.291 +358326,312.64,48.577 +358327,315.22,49.803 +358328,317.63,50.978 +358329,308.55,47.196 +358330,311.36,48.527 +358331,313.94,49.797 +358332,316.33,51.013 +358333,307.27,47.103 +358334,310.08,48.479 +358335,312.65,49.791 +358336,315.03,51.046 +358337,305.99,47.01 +358338,308.79,48.43 +358339,311.36,49.784 +358340,313.74,51.079 +358341,304.71,46.918 +358342,307.51,48.382 +358343,310.07,49.777 +358344,312.44,51.111 +358345,303.43,46.828 +358346,306.23,48.334 +358347,308.79,49.769 +358348,311.14,51.142 +358349,302.16,46.738 +358350,304.96,48.287 +358351,307.5,49.761 +358352,309.83,51.171 +358353,300.89,46.65 +358354,303.68,48.24 +358355,306.21,49.753 +358356,308.53,51.2 +358357,299.62,46.562 +358358,302.4,48.193 +358359,304.92,49.745 +358360,307.22,51.228 +358361,298.35,46.476 +358362,301.12,48.147 +358363,303.62,49.736 +358364,305.91,51.254 +358365,297.09,46.391 +358366,299.85,48.101 +358367,302.33,49.727 +358368,304.6,51.28 +358369,295.83,46.307 +358370,298.57,48.055 +358371,301.04,49.717 +358372,303.29,51.304 +358373,294.57,46.225 +358374,297.3,48.01 +358375,299.75,49.707 +358376,301.98,51.327 +358377,293.31,46.143 +358378,296.02,47.966 +358379,298.45,49.697 +358380,300.66,51.349 +358381,292.06,46.064 +358382,294.75,47.922 +358383,297.16,49.686 +358384,299.35,51.37 +358385,290.8,45.985 +358386,293.48,47.878 +358387,295.87,49.675 +358388,298.03,51.39 +358389,289.55,45.908 +358390,292.21,47.835 +358391,294.57,49.664 +358392,296.71,51.408 +358393,288.3,45.832 +358394,290.94,47.792 +358395,293.28,49.652 +358396,295.39,51.425 +358397,287.06,45.758 +358398,289.67,47.75 +358399,291.98,49.64 +358400,294.06,51.441 +358401,285.81,45.686 +358402,288.4,47.708 +358403,290.68,49.627 +358404,292.74,51.455 +358405,284.57,45.614 +358406,287.13,47.667 +358407,289.39,49.614 +358408,291.41,51.468 +358409,283.33,45.545 +358410,285.86,47.627 +358411,288.09,49.6 +358412,290.09,51.48 +358413,282.1,45.477 +358414,284.59,47.586 +358415,286.79,49.586 +358416,288.76,51.49 +358417,280.86,45.41 +358418,283.33,47.547 +358419,285.49,49.571 +358420,287.43,51.499 +358421,279.63,45.346 +358422,282.06,47.508 +358423,284.2,49.556 +358424,286.1,51.507 +358425,278.4,45.283 +358426,280.8,47.469 +358427,282.9,49.541 +358428,284.77,51.513 +358429,277.17,45.221 +358430,279.53,47.431 +358431,281.6,49.524 +358432,283.43,51.518 +358433,275.94,45.162 +358434,278.27,47.394 +358435,280.3,49.508 +358436,282.1,51.521 +358437,274.72,45.104 +358438,277,47.357 +358439,279,49.491 +358440,280.76,51.522 +358441,273.5,45.047 +358442,275.74,47.321 +358443,277.7,49.473 +358444,279.43,51.522 +358445,272.28,44.993 +358446,274.48,47.285 +358447,276.39,49.455 +358448,278.09,51.521 +358449,271.06,44.941 +358450,273.22,47.25 +358451,275.09,49.437 +358452,276.75,51.518 +358453,269.84,44.89 +358454,271.96,47.216 +358455,273.79,49.418 +358456,275.41,51.514 +358457,268.63,44.841 +358458,270.7,47.182 +358459,272.49,49.398 +358460,274.06,51.508 +358461,267.42,44.794 +358462,269.44,47.149 +358463,271.19,49.378 +358464,272.72,51.5 +358465,266.2,44.749 +358466,268.18,47.116 +358467,269.88,49.358 +358468,271.38,51.491 +358469,264.99,44.705 +358470,266.92,47.084 +358471,268.58,49.336 +358472,270.03,51.48 +358473,263.79,44.664 +358474,265.66,47.053 +358475,267.28,49.315 +358476,268.69,51.468 +358477,262.58,44.624 +358478,264.41,47.022 +358479,265.97,49.293 +358480,267.34,51.454 +358481,261.38,44.587 +358482,263.15,46.992 +358483,264.67,49.27 +358484,265.99,51.438 +358485,260.17,44.551 +358486,261.89,46.963 +358487,263.36,49.247 +358488,264.64,51.421 +358489,258.97,44.517 +358490,260.64,46.934 +358491,262.06,49.223 +358492,263.29,51.402 +358493,257.77,44.485 +358494,259.38,46.906 +358495,260.76,49.198 +358496,261.94,51.382 +358497,256.57,44.455 +358498,258.13,46.878 +358499,259.45,49.173 +358500,260.59,51.36 +358501,255.38,44.428 +358502,256.87,46.851 +358503,258.14,49.148 +358504,259.24,51.336 +358505,254.18,44.402 +358506,255.62,46.825 +358507,256.84,49.122 +358508,257.89,51.311 +358509,252.99,44.378 +358510,254.37,46.799 +358511,255.53,49.095 +358512,256.53,51.284 +358513,251.79,44.356 +358514,253.11,46.774 +358515,254.23,49.068 +358516,255.18,51.255 +358517,250.6,44.335 +358518,251.86,46.75 +358519,252.92,49.04 +358520,253.82,51.225 +358521,249.41,44.317 +358522,250.61,46.726 +358523,251.62,49.012 +358524,252.47,51.193 +358525,248.22,44.301 +358526,249.36,46.703 +358527,250.31,48.983 +358528,251.11,51.159 +358529,247.03,44.287 +358530,248.11,46.681 +358531,249,48.954 +358532,249.76,51.124 +358533,245.84,44.275 +358534,246.85,46.659 +358535,247.7,48.924 +358536,248.4,51.087 +358537,244.65,44.264 +358538,245.6,46.638 +358539,246.39,48.894 +358540,247.04,51.048 +358541,243.46,44.256 +358542,244.35,46.617 +358543,245.08,48.863 +358544,245.68,51.008 +358545,242.28,44.249 +358546,243.1,46.597 +358547,243.77,48.831 +358548,244.33,50.966 +358549,241.09,44.245 +358550,241.85,46.578 +358551,242.47,48.799 +358552,242.97,50.922 +358553,239.91,44.242 +358554,240.6,46.559 +358555,241.16,48.766 +358556,241.61,50.877 +358557,238.72,44.241 +358558,239.35,46.541 +358559,239.85,48.733 +358560,240.25,50.83 +358561,237.54,44.242 +358562,238.1,46.524 +358563,238.55,48.699 +358564,238.89,50.782 +358565,236.35,44.245 +358566,236.85,46.507 +358567,237.24,48.665 +358568,237.53,50.732 +358569,235.17,44.25 +358570,235.61,46.491 +358571,235.93,48.63 +358572,236.17,50.68 +358573,233.99,44.256 +358574,234.36,46.476 +358575,234.62,48.595 +358576,234.81,50.627 +358577,232.8,44.264 +358578,233.11,46.461 +358579,233.32,48.559 +358580,233.45,50.572 +358581,231.62,44.275 +358582,231.86,46.446 +358583,232.01,48.523 +358584,232.09,50.515 +358585,230.44,44.286 +358586,230.61,46.433 +358587,230.7,48.486 +358588,230.73,50.457 +358589,229.25,44.3 +358590,229.36,46.42 +358591,229.4,48.449 +358592,229.37,50.398 +358593,228.07,44.315 +358594,228.11,46.407 +358595,228.09,48.411 +358596,228.01,50.336 +358597,226.89,44.332 +358598,226.87,46.395 +358599,226.78,48.373 +358600,226.65,50.274 +358601,225.7,44.351 +358602,225.62,46.384 +358603,225.48,48.334 +358604,225.29,50.21 +358605,224.52,44.372 +358606,224.37,46.373 +358607,224.17,48.294 +358608,223.93,50.144 +358609,223.33,44.393 +358610,223.12,46.363 +358611,222.86,48.255 +358612,222.57,50.077 +358613,222.15,44.417 +358614,221.87,46.353 +358615,221.56,48.214 +358616,221.21,50.008 +358617,220.96,44.442 +358618,220.62,46.344 +358619,220.25,48.174 +358620,219.85,49.938 +358621,219.78,44.469 +358622,219.38,46.335 +358623,218.94,48.132 +358624,218.49,49.866 +358625,218.59,44.497 +358626,218.13,46.327 +358627,217.64,48.091 +358628,217.13,49.793 +358629,217.4,44.527 +358630,216.88,46.32 +358631,216.33,48.049 +358632,215.77,49.719 +358633,216.22,44.558 +358634,215.63,46.313 +358635,215.03,48.006 +358636,214.41,49.643 +358637,215.03,44.59 +358638,214.38,46.306 +358639,213.72,47.963 +358640,213.06,49.566 +358641,213.84,44.624 +358642,213.13,46.3 +358643,212.42,47.92 +358644,211.7,49.487 +358645,212.65,44.659 +358646,211.88,46.294 +358647,211.11,47.876 +358648,210.34,49.407 +358649,211.46,44.696 +358650,210.63,46.289 +358651,209.81,47.832 +358652,208.98,49.326 +358653,210.27,44.734 +358654,209.38,46.285 +358655,208.5,47.787 +358656,207.63,49.244 +358657,209.07,44.773 +358658,208.13,46.281 +358659,207.2,47.742 +358660,206.27,49.16 +358661,207.88,44.813 +358662,206.88,46.277 +358663,205.9,47.697 +358664,204.92,49.076 +358665,206.68,44.855 +358666,205.63,46.273 +358667,204.59,47.651 +358668,203.57,48.989 +358669,205.49,44.897 +358670,204.38,46.271 +358671,203.29,47.605 +358672,202.21,48.902 +358673,204.29,44.941 +358674,203.13,46.268 +358675,201.99,47.559 +358676,200.86,48.814 +358677,203.09,44.986 +358678,201.88,46.266 +358679,200.69,47.512 +358680,199.51,48.724 +358681,201.89,45.032 +358682,200.63,46.264 +358683,199.39,47.465 +358684,198.16,48.634 +358685,200.69,45.078 +358686,199.38,46.263 +358687,198.09,47.418 +358688,196.81,48.542 +358689,199.49,45.126 +358690,198.13,46.262 +358691,196.78,47.37 +358692,195.46,48.449 +358693,198.29,45.175 +358694,196.88,46.262 +358695,195.48,47.322 +358696,194.11,48.356 +358697,197.08,45.224 +358698,195.62,46.261 +358699,194.19,47.274 +358700,192.76,48.261 +358701,195.87,45.274 +358702,194.37,46.261 +358703,192.89,47.225 +358704,191.42,48.166 +358705,194.67,45.326 +358706,193.12,46.262 +358707,191.59,47.176 +358708,190.07,48.069 +358709,193.46,45.377 +358710,191.86,46.262 +358711,190.29,47.127 +358712,188.73,47.972 +358713,192.24,45.43 +358714,190.61,46.263 +358715,188.99,47.078 +358716,187.38,47.874 +358717,191.03,45.483 +358718,189.36,46.265 +358719,187.69,47.029 +358720,186.04,47.775 +358721,189.82,45.537 +358722,188.1,46.266 +358723,186.4,46.979 +358724,184.7,47.675 +358725,188.6,45.591 +358726,186.85,46.268 +358727,185.1,46.929 +358728,183.36,47.574 +358729,187.38,45.646 +358730,185.59,46.27 +358731,183.8,46.879 +358732,182.02,47.473 +358733,186.16,45.702 +358734,184.34,46.272 +358735,182.51,46.829 +358736,180.69,47.371 +358737,184.94,45.758 +358738,183.08,46.275 +358739,181.21,46.779 +358740,179.35,47.269 +358741,183.72,45.814 +358742,181.82,46.277 +358743,179.92,46.728 +358744,178.02,47.165 +358745,182.5,45.87 +358746,180.57,46.28 +358747,178.63,46.678 +358748,176.68,47.062 +358749,181.27,45.927 +358750,179.31,46.283 +358751,177.33,46.627 +358752,175.35,46.958 +358753,180.04,45.985 +358754,178.05,46.286 +358755,176.04,46.576 +358756,174.02,46.853 +358757,178.81,46.042 +358758,176.79,46.29 +358759,174.75,46.525 +358760,172.69,46.748 +358761,177.58,46.1 +358762,175.53,46.293 +358763,173.46,46.474 +358764,171.36,46.642 +358765,176.35,46.158 +358766,174.27,46.297 +358767,172.17,46.423 +358768,170.04,46.537 +358769,175.11,46.216 +358770,173.01,46.3 +358771,170.88,46.372 +358772,168.72,46.431 +358773,173.87,46.274 +358774,171.75,46.304 +358775,169.59,46.321 +358776,167.39,46.324 +358777,172.63,46.332 +358778,170.49,46.308 +358779,168.3,46.27 +358780,166.07,46.217 +358781,171.39,46.39 +358782,169.23,46.312 +358783,167.01,46.219 +358784,164.75,46.111 +358785,170.15,46.448 +358786,167.96,46.316 +358787,165.73,46.168 +358788,163.44,46.004 +358789,168.91,46.506 +358790,166.7,46.32 +358791,164.44,46.117 +358792,162.12,45.897 +358793,167.66,46.564 +358794,165.44,46.324 +358795,163.16,46.066 +358796,160.81,45.789 +358797,166.41,46.622 +358798,164.17,46.328 +358799,161.87,46.015 +358800,159.49,45.682 +358801,165.16,46.679 +358802,162.91,46.332 +358803,160.59,45.964 +358804,158.18,45.575 +358805,163.91,46.737 +358806,161.64,46.336 +358807,159.3,45.913 +358808,156.88,45.468 +358809,162.65,46.794 +358810,160.38,46.339 +358811,158.02,45.863 +358812,155.57,45.361 +358813,161.4,46.85 +358814,159.11,46.343 +358815,156.74,45.812 +358816,154.26,45.254 +358817,160.14,46.906 +358818,157.85,46.347 +358819,155.46,45.762 +358820,152.96,45.148 +358821,158.88,46.962 +358822,156.58,46.351 +358823,154.18,45.712 +358824,151.66,45.042 +358825,157.62,47.018 +358826,155.31,46.354 +358827,152.9,45.661 +358828,150.36,44.936 +358829,156.36,47.073 +358830,154.04,46.358 +358831,151.62,45.612 +358832,149.07,44.83 +358833,155.09,47.127 +358834,152.77,46.361 +358835,150.34,45.562 +358836,147.77,44.725 +358837,153.82,47.181 +358838,151.5,46.365 +358839,149.06,45.512 +358840,146.48,44.62 +358841,152.55,47.234 +358842,150.23,46.368 +358843,147.78,45.463 +358844,145.19,44.515 +358845,151.28,47.287 +358846,148.96,46.371 +358847,146.51,45.414 +358848,143.9,44.412 +358849,150.01,47.339 +358850,147.69,46.374 +358851,145.23,45.365 +358852,142.61,44.308 +358853,148.73,47.39 +358854,146.42,46.376 +358855,143.96,45.317 +358856,141.33,44.206 +358857,147.46,47.441 +358858,145.15,46.379 +358859,142.69,45.268 +358860,140.05,44.104 +358861,146.18,47.49 +358862,143.87,46.381 +358863,141.41,45.22 +358864,138.77,44.003 +358865,144.9,47.539 +358866,142.6,46.383 +358867,140.14,45.173 +358868,137.49,43.902 +358869,143.62,47.588 +358870,141.32,46.385 +358871,138.87,45.125 +358872,136.22,43.802 +358873,142.33,47.635 +358874,140.05,46.386 +358875,137.6,45.078 +358876,134.94,43.704 +358877,141.05,47.681 +358878,138.77,46.387 +358879,136.33,45.032 +358880,133.67,43.606 +358881,139.76,47.727 +358882,137.5,46.388 +358883,135.06,44.985 +358884,132.4,43.509 +358885,138.47,47.771 +358886,136.22,46.389 +358887,133.79,44.939 +358888,131.14,43.413 +358889,137.18,47.814 +358890,134.94,46.389 +358891,132.52,44.894 +358892,129.87,43.318 +358893,135.89,47.857 +358894,133.67,46.389 +358895,131.26,44.849 +358896,128.61,43.224 +358897,134.59,47.898 +358898,132.39,46.389 +358899,129.99,44.804 +358900,127.35,43.131 +358901,133.3,47.939 +358902,131.11,46.389 +358903,128.73,44.76 +358904,126.1,43.039 +358905,132,47.978 +358906,129.83,46.388 +358907,127.46,44.716 +358908,124.84,42.949 +358909,130.7,48.016 +358910,128.55,46.387 +358911,126.2,44.672 +358912,123.59,42.86 +358913,129.4,48.052 +358914,127.27,46.385 +358915,124.93,44.63 +358916,122.34,42.772 +358917,128.1,48.088 +358918,125.99,46.383 +358919,123.67,44.587 +358920,121.09,42.685 +358921,126.79,48.123 +358922,124.71,46.381 +358923,122.41,44.545 +358924,119.85,42.6 +358925,125.49,48.156 +358926,123.43,46.378 +358927,121.15,44.504 +358928,118.6,42.517 +358929,124.18,48.187 +358930,122.14,46.375 +358931,119.89,44.463 +358932,117.36,42.434 +358933,122.87,48.218 +358934,120.86,46.371 +358935,118.63,44.422 +358936,116.12,42.354 +358937,121.56,48.247 +358938,119.58,46.367 +358939,117.37,44.383 +358940,114.89,42.274 +358941,120.25,48.275 +358942,118.29,46.363 +358943,116.12,44.343 +358944,113.65,42.197 +358945,118.94,48.302 +358946,117.01,46.358 +358947,114.86,44.305 +358948,112.42,42.121 +358949,117.63,48.327 +358950,115.72,46.353 +358951,113.6,44.266 +358952,111.19,42.046 +358953,116.31,48.35 +358954,114.44,46.347 +358955,112.35,44.229 +358956,109.96,41.974 +358957,114.99,48.373 +358958,113.15,46.341 +358959,111.09,44.192 +358960,108.74,41.903 +358961,113.68,48.393 +358962,111.87,46.334 +358963,109.84,44.155 +358964,107.51,41.833 +358965,112.36,48.413 +358966,110.58,46.327 +358967,108.58,44.12 +358968,106.29,41.766 +358969,111.04,48.43 +358970,109.29,46.32 +358971,107.33,44.084 +358972,105.07,41.7 +358973,109.71,48.447 +358974,108.01,46.312 +358975,106.08,44.05 +358976,103.86,41.637 +358977,108.39,48.461 +358978,106.72,46.303 +358979,104.83,44.016 +358980,102.64,41.575 +358981,107.07,48.474 +358982,105.43,46.294 +358983,103.58,43.983 +358984,101.43,41.515 +358985,105.74,48.486 +358986,104.14,46.284 +358987,102.33,43.95 +358988,100.22,41.457 +358989,104.42,48.496 +358990,102.85,46.274 +358991,101.08,43.918 +358992,99.01,41.401 +358993,103.09,48.504 +358994,101.56,46.264 +358995,99.827,43.887 +358996,97.803,41.346 +358997,101.76,48.511 +358998,100.28,46.252 +358999,98.579,43.856 +359000,96.598,41.294 +359001,100.43,48.516 +359002,98.985,46.241 +359003,97.331,43.826 +359004,95.394,41.244 +359005,99.101,48.52 +359006,97.695,46.228 +359007,96.083,43.797 +359008,94.193,41.196 +359009,97.769,48.522 +359010,96.405,46.216 +359011,94.836,43.768 +359012,92.993,41.15 +359013,96.437,48.522 +359014,95.114,46.202 +359015,93.59,43.741 +359016,91.795,41.106 +359017,95.104,48.52 +359018,93.823,46.189 +359019,92.344,43.713 +359020,90.599,41.065 +359021,93.77,48.517 +359022,92.532,46.174 +359023,91.099,43.687 +359024,89.404,41.025 +359025,92.435,48.512 +359026,91.24,46.159 +359027,89.854,43.661 +359028,88.211,40.988 +359029,91.099,48.505 +359030,89.948,46.144 +359031,88.61,43.636 +359032,87.019,40.952 +359033,89.763,48.497 +359034,88.656,46.128 +359035,87.366,43.612 +359036,85.829,40.919 +359037,88.425,48.487 +359038,87.364,46.111 +359039,86.123,43.588 +359040,84.64,40.888 +359041,87.088,48.475 +359042,86.071,46.094 +359043,84.88,43.565 +359044,83.452,40.859 +359045,85.749,48.462 +359046,84.778,46.076 +359047,83.637,43.543 +359048,82.266,40.833 +359049,84.41,48.447 +359050,83.485,46.058 +359051,82.395,43.522 +359052,81.081,40.808 +359053,83.07,48.43 +359054,82.192,46.039 +359055,81.154,43.501 +359056,79.897,40.786 +359057,81.73,48.411 +359058,80.899,46.019 +359059,79.912,43.481 +359060,78.714,40.766 +359061,80.389,48.39 +359062,79.606,45.999 +359063,78.671,43.462 +359064,77.533,40.749 +359065,79.048,48.368 +359066,78.312,45.978 +359067,77.431,43.443 +359068,76.352,40.733 +359069,77.706,48.344 +359070,77.018,45.957 +359071,76.19,43.426 +359072,75.172,40.72 +359073,76.364,48.318 +359074,75.725,45.935 +359075,74.95,43.409 +359076,73.993,40.709 +359077,75.021,48.291 +359078,74.431,45.913 +359079,73.71,43.392 +359080,72.815,40.7 +359081,73.678,48.262 +359082,73.137,45.89 +359083,72.471,43.377 +359084,71.637,40.693 +359085,72.335,48.231 +359086,71.843,45.867 +359087,71.232,43.362 +359088,70.461,40.689 +359089,70.991,48.198 +359090,70.549,45.843 +359091,69.993,43.348 +359092,69.285,40.686 +359093,69.647,48.163 +359094,69.254,45.818 +359095,68.754,43.335 +359096,68.109,40.686 +359097,68.303,48.127 +359098,67.96,45.793 +359099,67.515,43.322 +359100,66.934,40.688 +359101,66.959,48.089 +359102,66.666,45.767 +359103,66.277,43.31 +359104,65.759,40.692 +359105,65.615,48.049 +359106,65.372,45.741 +359107,65.039,43.299 +359108,64.584,40.699 +359109,64.27,48.008 +359110,64.078,45.714 +359111,63.801,43.288 +359112,63.41,40.707 +359113,62.926,47.965 +359114,62.784,45.686 +359115,62.563,43.279 +359116,62.236,40.718 +359117,61.581,47.92 +359118,61.49,45.658 +359119,61.325,43.27 +359120,61.062,40.73 +359121,60.237,47.873 +359122,60.196,45.63 +359123,60.087,43.261 +359124,59.888,40.745 +359125,58.892,47.825 +359126,58.902,45.601 +359127,58.85,43.254 +359128,58.715,40.762 +359129,57.547,47.775 +359130,57.608,45.571 +359131,57.612,43.247 +359132,57.541,40.781 +359133,56.203,47.724 +359134,56.314,45.541 +359135,56.374,43.24 +359136,56.367,40.801 +359137,54.859,47.67 +359138,55.021,45.51 +359139,55.137,43.235 +359140,55.192,40.824 +359141,53.515,47.615 +359142,53.727,45.479 +359143,53.899,43.23 +359144,54.018,40.849 +359145,52.171,47.559 +359146,52.434,45.447 +359147,52.662,43.226 +359148,52.843,40.876 +359149,50.827,47.501 +359150,51.141,45.415 +359151,51.424,43.222 +359152,51.667,40.904 +359153,49.484,47.441 +359154,49.848,45.382 +359155,50.187,43.219 +359156,50.492,40.935 +359157,48.141,47.38 +359158,48.555,45.349 +359159,48.949,43.217 +359160,49.315,40.967 +359161,46.798,47.317 +359162,47.262,45.315 +359163,47.711,43.215 +359164,48.138,41.001 +359165,45.456,47.252 +359166,45.97,45.281 +359167,46.473,43.214 +359168,46.961,41.037 +359169,44.114,47.186 +359170,44.678,45.247 +359171,45.235,43.214 +359172,45.783,41.075 +359173,42.772,47.119 +359174,43.386,45.211 +359175,43.997,43.214 +359176,44.604,41.114 +359177,41.431,47.05 +359178,42.094,45.176 +359179,42.759,43.215 +359180,43.424,41.155 +359181,40.091,46.979 +359182,40.803,45.14 +359183,41.52,43.216 +359184,42.243,41.198 +359185,38.751,46.907 +359186,39.512,45.103 +359187,40.282,43.218 +359188,41.061,41.242 +359189,37.412,46.834 +359190,38.221,45.066 +359191,39.043,43.221 +359192,39.879,41.288 +359193,36.073,46.759 +359194,36.931,45.029 +359195,37.804,43.224 +359196,38.695,41.336 +359197,34.735,46.683 +359198,35.64,44.991 +359199,36.565,43.227 +359200,37.51,41.384 +359201,33.398,46.605 +359202,34.351,44.953 +359203,35.325,43.232 +359204,36.325,41.435 +359205,32.062,46.527 +359206,33.061,44.914 +359207,34.085,43.236 +359208,35.137,41.487 +359209,30.726,46.446 +359210,31.772,44.875 +359211,32.845,43.242 +359212,33.949,41.54 +359213,29.391,46.365 +359214,30.483,44.836 +359215,31.605,43.247 +359216,32.76,41.594 +359217,28.057,46.282 +359218,29.195,44.796 +359219,30.364,43.254 +359220,31.569,41.65 +359221,26.724,46.198 +359222,27.907,44.756 +359223,29.123,43.261 +359224,30.376,41.707 +359225,25.391,46.113 +359226,26.62,44.716 +359227,27.882,43.268 +359228,29.183,41.765 +359229,24.06,46.026 +359230,25.333,44.675 +359231,26.64,43.275 +359232,27.988,41.825 +359233,22.73,45.939 +359234,24.046,44.634 +359235,25.398,43.284 +359236,26.791,41.885 +359237,21.4,45.85 +359238,22.76,44.592 +359239,24.156,43.292 +359240,25.593,41.947 +359241,20.072,45.76 +359242,21.474,44.551 +359243,22.913,43.301 +359244,24.393,42.01 +359245,18.745,45.669 +359246,20.189,44.509 +359247,21.67,43.31 +359248,23.192,42.073 +359249,17.419,45.578 +359250,18.904,44.466 +359251,20.426,43.32 +359252,21.989,42.138 +359253,16.094,45.485 +359254,17.62,44.424 +359255,19.182,43.33 +359256,20.785,42.203 +359257,14.77,45.391 +359258,16.336,44.381 +359259,17.938,43.341 +359260,19.579,42.27 +359261,13.447,45.296 +359262,15.053,44.338 +359263,16.693,43.352 +359264,18.371,42.337 +359265,12.126,45.2 +359266,13.77,44.295 +359267,15.448,43.363 +359268,17.161,42.405 +359269,10.806,45.104 +359270,12.488,44.251 +359271,14.202,43.374 +359272,15.95,42.473 +359273,9.4876,45.007 +359274,11.207,44.208 +359275,12.956,43.386 +359276,14.737,42.542 +359277,8.1702,44.909 +359278,9.9255,44.164 +359279,11.709,43.398 +359280,13.522,42.612 +359281,6.8543,44.81 +359282,8.6451,44.12 +359283,10.462,43.411 +359284,12.306,42.683 +359285,5.5398,44.71 +359286,7.3653,44.076 +359287,9.2138,43.424 +359288,11.087,42.754 +359289,4.2267,44.61 +359290,6.086,44.032 +359291,7.9656,43.436 +359292,9.8668,42.825 +359293,2.9151,44.509 +359294,4.8074,43.987 +359295,6.7168,43.45 +359296,8.6446,42.897 +359297,1.605,44.408 +359298,3.5294,43.943 +359299,5.4676,43.463 +359300,7.4205,42.969 +359301,0.29641,44.306 +359302,2.2519,43.898 +359303,4.2178,43.477 +359304,6.1946,43.042 +359305,358.99,44.203 +359306,0.97517,43.853 +359307,2.9674,43.49 +359308,4.9668,43.115 +359309,357.68,44.1 +359310,359.7,43.809 +359311,1.7165,43.504 +359312,3.7371,43.188 +359313,356.38,43.997 +359314,358.42,43.764 +359315,0.46507,43.518 +359316,2.5054,43.262 +359317,355.08,43.893 +359318,357.15,43.719 +359319,359.21,43.533 +359320,1.2719,43.335 +359321,353.78,43.789 +359322,355.87,43.674 +359323,357.96,43.547 +359324,0.036418,43.409 +359325,352.48,43.685 +359326,354.6,43.629 +359327,356.71,43.562 +359328,358.8,43.483 +359329,351.18,43.58 +359330,353.33,43.584 +359331,355.45,43.576 +359332,357.56,43.556 +359333,349.89,43.475 +359334,352.06,43.539 +359335,354.2,43.591 +359336,356.32,43.63 +359337,348.59,43.37 +359338,350.78,43.495 +359339,352.94,43.606 +359340,355.08,43.704 +359341,347.3,43.265 +359342,349.51,43.45 +359343,351.69,43.62 +359344,353.83,43.778 +359345,346.01,43.16 +359346,348.24,43.405 +359347,350.43,43.635 +359348,352.58,43.851 +359349,344.72,43.054 +359350,346.97,43.36 +359351,349.18,43.65 +359352,351.33,43.924 +359353,343.44,42.949 +359354,345.71,43.316 +359355,347.92,43.665 +359356,350.08,43.997 +359357,342.15,42.844 +359358,344.44,43.272 +359359,346.66,43.68 +359360,348.83,44.07 +359361,340.87,42.739 +359362,343.17,43.227 +359363,345.4,43.695 +359364,347.58,44.142 +359365,339.59,42.634 +359366,341.9,43.183 +359367,344.14,43.71 +359368,346.32,44.214 +359369,338.31,42.529 +359370,340.64,43.139 +359371,342.88,43.724 +359372,345.06,44.286 +359373,337.04,42.425 +359374,339.37,43.096 +359375,341.62,43.739 +359376,343.8,44.357 +359377,335.76,42.321 +359378,338.11,43.052 +359379,340.36,43.754 +359380,342.54,44.428 +359381,334.49,42.217 +359382,336.85,43.009 +359383,339.1,43.768 +359384,341.27,44.498 +359385,333.22,42.114 +359386,335.58,42.966 +359387,337.84,43.783 +359388,340.01,44.568 +359389,331.95,42.011 +359390,334.32,42.923 +359391,336.58,43.797 +359392,338.74,44.637 +359393,330.69,41.909 +359394,333.06,42.88 +359395,335.32,43.811 +359396,337.47,44.705 +359397,329.42,41.807 +359398,331.8,42.838 +359399,334.05,43.825 +359400,336.2,44.773 +359401,328.16,41.706 +359402,330.54,42.796 +359403,332.79,43.839 +359404,334.93,44.84 +359405,326.9,41.605 +359406,329.28,42.754 +359407,331.52,43.853 +359408,333.65,44.906 +359409,325.64,41.506 +359410,328.02,42.713 +359411,330.26,43.866 +359412,332.37,44.971 +359413,324.39,41.406 +359414,326.76,42.672 +359415,328.99,43.879 +359416,331.1,45.036 +359417,323.13,41.308 +359418,325.51,42.631 +359419,327.72,43.892 +359420,329.82,45.099 +359421,321.88,41.211 +359422,324.25,42.59 +359423,326.46,43.905 +359424,328.53,45.162 +359425,320.63,41.114 +359426,322.99,42.55 +359427,325.19,43.918 +359428,327.25,45.224 +359429,319.39,41.019 +359430,321.74,42.511 +359431,323.92,43.93 +359432,325.96,45.285 +359433,318.14,40.924 +359434,320.48,42.472 +359435,322.65,43.942 +359436,324.68,45.345 +359437,316.9,40.831 +359438,319.23,42.433 +359439,321.38,43.954 +359440,323.39,45.403 +359441,315.66,40.738 +359442,317.98,42.395 +359443,320.11,43.965 +359444,322.1,45.461 +359445,314.42,40.647 +359446,316.73,42.357 +359447,318.84,43.977 +359448,320.81,45.518 +359449,313.19,40.557 +359450,315.48,42.319 +359451,317.57,43.987 +359452,319.51,45.573 +359453,311.95,40.468 +359454,314.23,42.283 +359455,316.3,43.998 +359456,318.22,45.627 +359457,310.72,40.381 +359458,312.98,42.246 +359459,315.03,44.008 +359460,316.92,45.681 +359461,309.49,40.295 +359462,311.73,42.21 +359463,313.76,44.018 +359464,315.62,45.732 +359465,308.26,40.21 +359466,310.48,42.175 +359467,312.48,44.027 +359468,314.33,45.783 +359469,307.04,40.127 +359470,309.23,42.14 +359471,311.21,44.036 +359472,313.02,45.833 +359473,305.81,40.045 +359474,307.98,42.106 +359475,309.94,44.045 +359476,311.72,45.881 +359477,304.59,39.964 +359478,306.74,42.072 +359479,308.66,44.053 +359480,310.42,45.927 +359481,303.37,39.886 +359482,305.49,42.039 +359483,307.39,44.061 +359484,309.11,45.973 +359485,302.16,39.809 +359486,304.24,42.006 +359487,306.11,44.069 +359488,307.81,46.017 +359489,300.94,39.733 +359490,303,41.975 +359491,304.84,44.076 +359492,306.5,46.059 +359493,299.73,39.659 +359494,301.76,41.943 +359495,303.56,44.083 +359496,305.19,46.1 +359497,298.52,39.587 +359498,300.51,41.912 +359499,302.28,44.089 +359500,303.88,46.14 +359501,297.31,39.517 +359502,299.27,41.882 +359503,301.01,44.094 +359504,302.57,46.178 +359505,296.1,39.449 +359506,298.03,41.853 +359507,299.73,44.1 +359508,301.26,46.215 +359509,294.9,39.382 +359510,296.79,41.824 +359511,298.45,44.104 +359512,299.95,46.25 +359513,293.69,39.317 +359514,295.55,41.796 +359515,297.17,44.109 +359516,298.63,46.284 +359517,292.49,39.254 +359518,294.31,41.769 +359519,295.89,44.113 +359520,297.32,46.316 +359521,291.29,39.194 +359522,293.07,41.742 +359523,294.62,44.116 +359524,296,46.346 +359525,290.09,39.135 +359526,291.83,41.716 +359527,293.34,44.119 +359528,294.68,46.375 +359529,288.9,39.078 +359530,290.59,41.69 +359531,292.06,44.121 +359532,293.36,46.403 +359533,287.7,39.023 +359534,289.35,41.666 +359535,290.78,44.123 +359536,292.04,46.428 +359537,286.51,38.971 +359538,288.11,41.642 +359539,289.5,44.124 +359540,290.72,46.452 +359541,285.32,38.92 +359542,286.87,41.619 +359543,288.22,44.125 +359544,289.4,46.475 +359545,284.13,38.872 +359546,285.64,41.596 +359547,286.93,44.125 +359548,288.08,46.495 +359549,282.94,38.826 +359550,284.4,41.574 +359551,285.65,44.125 +359552,286.76,46.514 +359553,281.76,38.782 +359554,283.16,41.553 +359555,284.37,44.124 +359556,285.43,46.531 +359557,280.57,38.74 +359558,281.93,41.533 +359559,283.09,44.123 +359560,284.11,46.547 +359561,279.39,38.701 +359562,280.69,41.514 +359563,281.81,44.121 +359564,282.78,46.561 +359565,278.2,38.663 +359566,279.46,41.495 +359567,280.53,44.118 +359568,281.46,46.573 +359569,277.02,38.629 +359570,278.22,41.477 +359571,279.24,44.115 +359572,280.13,46.583 +359573,275.84,38.596 +359574,276.99,41.46 +359575,277.96,44.111 +359576,278.8,46.592 +359577,274.66,38.566 +359578,275.76,41.443 +359579,276.68,44.107 +359580,277.48,46.598 +359581,273.49,38.538 +359582,274.52,41.428 +359583,275.4,44.103 +359584,276.15,46.603 +359585,272.31,38.512 +359586,273.29,41.413 +359587,274.11,44.097 +359588,274.82,46.607 +359589,271.13,38.489 +359590,272.06,41.399 +359591,272.83,44.091 +359592,273.49,46.608 +359593,269.96,38.468 +359594,270.83,41.386 +359595,271.55,44.085 +359596,272.16,46.608 +359597,268.78,38.45 +359598,269.59,41.373 +359599,270.26,44.078 +359600,270.83,46.606 +359601,267.61,38.434 +359602,268.36,41.362 +359603,268.98,44.07 +359604,269.5,46.602 +359605,266.44,38.42 +359606,267.13,41.351 +359607,267.69,44.062 +359608,268.17,46.596 +359609,265.27,38.409 +359610,265.9,41.341 +359611,266.41,44.053 +359612,266.84,46.588 +359613,264.09,38.401 +359614,264.67,41.332 +359615,265.13,44.044 +359616,265.51,46.579 +359617,262.92,38.394 +359618,263.44,41.323 +359619,263.84,44.034 +359620,264.17,46.567 +359621,261.75,38.39 +359622,262.2,41.315 +359623,262.56,44.023 +359624,262.84,46.554 +359625,260.58,38.389 +359626,260.97,41.309 +359627,261.27,44.012 +359628,261.51,46.54 +359629,259.41,38.39 +359630,259.74,41.303 +359631,259.99,44 +359632,260.18,46.523 +359633,258.24,38.393 +359634,258.51,41.297 +359635,258.71,43.988 +359636,258.85,46.504 +359637,257.07,38.399 +359638,257.28,41.293 +359639,257.42,43.975 +359640,257.51,46.484 +359641,255.9,38.407 +359642,256.05,41.289 +359643,256.14,43.961 +359644,256.18,46.462 +359645,254.73,38.417 +359646,254.82,41.287 +359647,254.85,43.947 +359648,254.85,46.438 +359649,253.56,38.43 +359650,253.59,41.284 +359651,253.57,43.933 +359652,253.52,46.412 +359653,252.39,38.445 +359654,252.36,41.283 +359655,252.29,43.917 +359656,252.18,46.385 +359657,251.23,38.462 +359658,251.13,41.283 +359659,251,43.902 +359660,250.85,46.356 +359661,250.06,38.482 +359662,249.9,41.283 +359663,249.72,43.885 +359664,249.52,46.325 +359665,248.88,38.504 +359666,248.67,41.284 +359667,248.43,43.868 +359668,248.19,46.292 +359669,247.71,38.528 +359670,247.44,41.286 +359671,247.15,43.851 +359672,246.86,46.257 +359673,246.54,38.555 +359674,246.21,41.289 +359675,245.87,43.833 +359676,245.53,46.221 +359677,245.37,38.584 +359678,244.98,41.292 +359679,244.58,43.814 +359680,244.2,46.183 +359681,244.2,38.615 +359682,243.75,41.296 +359683,243.3,43.795 +359684,242.87,46.143 +359685,243.03,38.648 +359686,242.51,41.301 +359687,242.02,43.775 +359688,241.54,46.102 +359689,241.85,38.683 +359690,241.28,41.307 +359691,240.74,43.755 +359692,240.21,46.058 +359693,240.68,38.721 +359694,240.05,41.313 +359695,239.45,43.734 +359696,238.88,46.013 +359697,239.5,38.76 +359698,238.82,41.32 +359699,238.17,43.713 +359700,237.55,45.967 +359701,238.33,38.802 +359702,237.59,41.328 +359703,236.89,43.691 +359704,236.22,45.919 +359705,237.15,38.845 +359706,236.36,41.337 +359707,235.61,43.669 +359708,234.89,45.869 +359709,235.97,38.891 +359710,235.12,41.346 +359711,234.32,43.646 +359712,233.56,45.817 +359713,234.79,38.939 +359714,233.89,41.356 +359715,233.04,43.623 +359716,232.24,45.764 +359717,233.61,38.988 +359718,232.66,41.366 +359719,231.76,43.599 +359720,230.91,45.709 +359721,232.43,39.04 +359722,231.43,41.378 +359723,230.48,43.575 +359724,229.59,45.653 +359725,231.25,39.093 +359726,230.19,41.389 +359727,229.2,43.55 +359728,228.26,45.595 +359729,230.07,39.148 +359730,228.96,41.402 +359731,227.92,43.525 +359732,226.94,45.536 +359733,228.88,39.205 +359734,227.73,41.415 +359735,226.64,43.499 +359736,225.62,45.475 +359737,227.7,39.263 +359738,226.49,41.429 +359739,225.36,43.473 +359740,224.29,45.412 +359741,226.51,39.323 +359742,225.26,41.444 +359743,224.08,43.447 +359744,222.97,45.348 +359745,225.32,39.385 +359746,224.02,41.459 +359747,222.8,43.42 +359748,221.65,45.283 +359749,224.13,39.449 +359750,222.79,41.474 +359751,221.53,43.392 +359752,220.33,45.216 +359753,222.94,39.514 +359754,221.55,41.491 +359755,220.25,43.365 +359756,219.02,45.148 +359757,221.74,39.58 +359758,220.31,41.508 +359759,218.97,43.336 +359760,217.7,45.079 +359761,220.55,39.649 +359762,219.08,41.525 +359763,217.69,43.308 +359764,216.38,45.008 +359765,219.35,39.718 +359766,217.84,41.543 +359767,216.42,43.279 +359768,215.07,44.936 +359769,218.15,39.789 +359770,216.6,41.562 +359771,215.14,43.25 +359772,213.75,44.862 +359773,216.95,39.861 +359774,215.36,41.581 +359775,213.87,43.22 +359776,212.44,44.787 +359777,215.75,39.935 +359778,214.13,41.6 +359779,212.59,43.19 +359780,211.13,44.711 +359781,214.55,40.009 +359782,212.89,41.62 +359783,211.32,43.159 +359784,209.82,44.634 +359785,213.34,40.085 +359786,211.65,41.641 +359787,210.04,43.129 +359788,208.51,44.556 +359789,212.13,40.162 +359790,210.41,41.662 +359791,208.77,43.098 +359792,207.2,44.476 +359793,210.92,40.24 +359794,209.17,41.683 +359795,207.49,43.067 +359796,205.89,44.396 +359797,209.71,40.32 +359798,207.93,41.705 +359799,206.22,43.035 +359800,204.59,44.314 +359801,208.5,40.4 +359802,206.68,41.727 +359803,204.95,43.003 +359804,203.28,44.231 +359805,207.29,40.481 +359806,205.44,41.75 +359807,203.68,42.971 +359808,201.98,44.147 +359809,206.07,40.563 +359810,204.2,41.773 +359811,202.41,42.939 +359812,200.68,44.063 +359813,204.85,40.646 +359814,202.96,41.797 +359815,201.14,42.906 +359816,199.38,43.977 +359817,203.63,40.729 +359818,201.71,41.82 +359819,199.87,42.873 +359820,198.08,43.89 +359821,202.41,40.814 +359822,200.47,41.845 +359823,198.6,42.84 +359824,196.79,43.803 +359825,201.18,40.899 +359826,199.22,41.869 +359827,197.33,42.807 +359828,195.49,43.714 +359829,199.96,40.985 +359830,197.98,41.894 +359831,196.06,42.774 +359832,194.2,43.625 +359833,198.73,41.071 +359834,196.73,41.919 +359835,194.79,42.74 +359836,192.9,43.535 +359837,197.5,41.158 +359838,195.49,41.945 +359839,193.53,42.707 +359840,191.61,43.445 +359841,196.27,41.245 +359842,194.24,41.97 +359843,192.26,42.673 +359844,190.32,43.354 +359845,195.03,41.333 +359846,192.99,41.996 +359847,190.99,42.639 +359848,189.04,43.262 +359849,193.8,41.422 +359850,191.74,42.023 +359851,189.73,42.605 +359852,187.75,43.169 +359853,192.56,41.51 +359854,190.49,42.049 +359855,188.46,42.571 +359856,186.47,43.076 +359857,191.32,41.599 +359858,189.24,42.076 +359859,187.2,42.537 +359860,185.18,42.982 +359861,190.08,41.688 +359862,187.99,42.103 +359863,185.94,42.503 +359864,183.9,42.888 +359865,188.83,41.778 +359866,186.74,42.13 +359867,184.67,42.468 +359868,182.63,42.794 +359869,187.59,41.867 +359870,185.49,42.157 +359871,183.41,42.434 +359872,181.35,42.699 +359873,186.34,41.957 +359874,184.24,42.184 +359875,182.15,42.4 +359876,180.07,42.604 +359877,185.09,42.047 +359878,182.98,42.212 +359879,180.89,42.366 +359880,178.8,42.508 +359881,183.84,42.136 +359882,181.73,42.239 +359883,179.63,42.331 +359884,177.53,42.412 +359885,182.58,42.226 +359886,180.48,42.267 +359887,178.37,42.297 +359888,176.26,42.316 +359889,181.33,42.316 +359890,179.22,42.295 +359891,177.11,42.263 +359892,174.99,42.22 +359893,180.07,42.405 +359894,177.97,42.323 +359895,175.85,42.229 +359896,173.73,42.124 +359897,178.81,42.494 +359898,176.71,42.351 +359899,174.59,42.195 +359900,172.46,42.027 +359901,177.55,42.584 +359902,175.45,42.378 +359903,173.34,42.161 +359904,171.2,41.931 +359905,176.29,42.672 +359906,174.2,42.406 +359907,172.08,42.127 +359908,169.94,41.835 +359909,175.02,42.761 +359910,172.94,42.434 +359911,170.83,42.094 +359912,168.68,41.738 +359913,173.75,42.849 +359914,171.68,42.462 +359915,169.57,42.06 +359916,167.43,41.642 +359917,172.48,42.937 +359918,170.42,42.49 +359919,168.32,42.027 +359920,166.17,41.546 +359921,171.21,43.024 +359922,169.16,42.518 +359923,167.06,41.994 +359924,164.92,41.45 +359925,169.94,43.111 +359926,167.9,42.546 +359927,165.81,41.961 +359928,163.67,41.355 +359929,168.67,43.197 +359930,166.64,42.574 +359931,164.56,41.928 +359932,162.42,41.26 +359933,167.39,43.283 +359934,165.38,42.601 +359935,163.31,41.895 +359936,161.17,41.165 +359937,166.11,43.368 +359938,164.11,42.629 +359939,162.06,41.863 +359940,159.93,41.07 +359941,164.83,43.453 +359942,162.85,42.656 +359943,160.81,41.831 +359944,158.69,40.976 +359945,163.55,43.537 +359946,161.59,42.683 +359947,159.56,41.799 +359948,157.45,40.883 +359949,162.27,43.62 +359950,160.32,42.711 +359951,158.31,41.768 +359952,156.21,40.79 +359953,160.98,43.702 +359954,159.06,42.738 +359955,157.06,41.737 +359956,154.97,40.698 +359957,159.7,43.784 +359958,157.79,42.764 +359959,155.81,41.706 +359960,153.74,40.606 +359961,158.41,43.864 +359962,156.53,42.791 +359963,154.56,41.676 +359964,152.51,40.515 +359965,157.12,43.944 +359966,155.26,42.817 +359967,153.32,41.646 +359968,151.28,40.425 +359969,155.83,44.023 +359970,153.99,42.844 +359971,152.07,41.616 +359972,150.05,40.336 +359973,154.54,44.101 +359974,152.73,42.869 +359975,150.83,41.586 +359976,148.82,40.247 +359977,153.24,44.178 +359978,151.46,42.895 +359979,149.58,41.558 +359980,147.6,40.16 +359981,151.95,44.254 +359982,150.19,42.921 +359983,148.34,41.529 +359984,146.38,40.073 +359985,150.65,44.329 +359986,148.92,42.946 +359987,147.1,41.501 +359988,145.16,39.988 +359989,149.35,44.403 +359990,147.65,42.971 +359991,145.85,41.473 +359992,143.94,39.903 +359993,148.05,44.476 +359994,146.38,42.995 +359995,144.61,41.446 +359996,142.73,39.82 +359997,146.75,44.547 +359998,145.11,43.02 +359999,143.37,41.419 +360000,141.51,39.738 +360001,145.45,44.618 +360002,143.84,43.044 +360003,142.13,41.393 +360004,140.3,39.657 +360005,144.14,44.687 +360006,142.57,43.067 +360007,140.89,41.368 +360008,139.09,39.577 +360009,142.84,44.755 +360010,141.29,43.09 +360011,139.65,41.342 +360012,137.88,39.499 +360013,141.53,44.821 +360014,140.02,43.113 +360015,138.41,41.318 +360016,136.67,39.422 +360017,140.22,44.887 +360018,138.75,43.136 +360019,137.17,41.294 +360020,135.47,39.346 +360021,138.91,44.951 +360022,137.47,43.158 +360023,135.93,41.27 +360024,134.27,39.272 +360025,137.6,45.013 +360026,136.2,43.18 +360027,134.7,41.247 +360028,133.06,39.2 +360029,136.29,45.075 +360030,134.93,43.201 +360031,133.46,41.225 +360032,131.87,39.129 +360033,134.98,45.135 +360034,133.65,43.222 +360035,132.22,41.203 +360036,130.67,39.059 +360037,133.67,45.193 +360038,132.38,43.243 +360039,130.99,41.182 +360040,129.47,38.991 +360041,132.35,45.25 +360042,131.1,43.263 +360043,129.75,41.161 +360044,128.28,38.925 +360045,131.04,45.306 +360046,129.82,43.283 +360047,128.51,41.141 +360048,127.08,38.861 +360049,129.72,45.36 +360050,128.55,43.302 +360051,127.28,41.122 +360052,125.89,38.798 +360053,128.4,45.412 +360054,127.27,43.321 +360055,126.05,41.104 +360056,124.7,38.737 +360057,127.09,45.463 +360058,125.99,43.339 +360059,124.81,41.086 +360060,123.52,38.678 +360061,125.77,45.513 +360062,124.71,43.357 +360063,123.58,41.068 +360064,122.33,38.621 +360065,124.45,45.561 +360066,123.44,43.374 +360067,122.34,41.052 +360068,121.14,38.566 +360069,123.13,45.607 +360070,122.16,43.391 +360071,121.11,41.036 +360072,119.96,38.513 +360073,121.8,45.652 +360074,120.88,43.407 +360075,119.88,41.021 +360076,118.78,38.462 +360077,120.48,45.695 +360078,119.6,43.423 +360079,118.65,41.006 +360080,117.59,38.413 +360081,119.16,45.736 +360082,118.32,43.439 +360083,117.41,40.992 +360084,116.41,38.366 +360085,117.84,45.776 +360086,117.04,43.453 +360087,116.18,40.979 +360088,115.24,38.321 +360089,116.51,45.814 +360090,115.76,43.468 +360091,114.95,40.967 +360092,114.06,38.278 +360093,115.19,45.85 +360094,114.48,43.482 +360095,113.72,40.956 +360096,112.88,38.237 +360097,113.86,45.884 +360098,113.2,43.495 +360099,112.49,40.945 +360100,111.7,38.199 +360101,112.54,45.917 +360102,111.92,43.507 +360103,111.26,40.935 +360104,110.53,38.162 +360105,111.21,45.948 +360106,110.64,43.52 +360107,110.03,40.926 +360108,109.36,38.128 +360109,109.88,45.978 +360110,109.36,43.531 +360111,108.8,40.917 +360112,108.18,38.097 +360113,108.55,46.005 +360114,108.08,43.542 +360115,107.57,40.909 +360116,107.01,38.067 +360117,107.23,46.031 +360118,106.8,43.553 +360119,106.34,40.902 +360120,105.84,38.04 +360121,105.9,46.055 +360122,105.52,43.563 +360123,105.11,40.896 +360124,104.67,38.015 +360125,104.57,46.078 +360126,104.24,43.572 +360127,103.88,40.891 +360128,103.49,37.993 +360129,103.24,46.098 +360130,102.96,43.581 +360131,102.65,40.886 +360132,102.32,37.973 +360133,101.91,46.117 +360134,101.67,43.589 +360135,101.42,40.883 +360136,101.15,37.955 +360137,100.58,46.134 +360138,100.39,43.597 +360139,100.19,40.88 +360140,99.985,37.94 +360141,99.255,46.149 +360142,99.11,43.604 +360143,98.964,40.878 +360144,98.816,37.927 +360145,97.926,46.162 +360146,97.829,43.61 +360147,97.735,40.876 +360148,97.647,37.917 +360149,96.596,46.173 +360150,96.547,43.616 +360151,96.506,40.876 +360152,96.478,37.909 +360153,95.267,46.183 +360154,95.265,43.621 +360155,95.277,40.876 +360156,95.309,37.903 +360157,93.937,46.191 +360158,93.983,43.626 +360159,94.048,40.877 +360160,94.14,37.9 +360161,92.608,46.197 +360162,92.701,43.63 +360163,92.819,40.879 +360164,92.971,37.9 +360165,91.278,46.201 +360166,91.419,43.634 +360167,91.59,40.882 +360168,91.802,37.901 +360169,89.949,46.203 +360170,90.137,43.636 +360171,90.361,40.886 +360172,90.633,37.906 +360173,88.62,46.204 +360174,88.856,43.639 +360175,89.131,40.89 +360176,89.463,37.913 +360177,87.291,46.202 +360178,87.574,43.641 +360179,87.902,40.895 +360180,88.294,37.922 +360181,85.962,46.199 +360182,86.292,43.642 +360183,86.673,40.902 +360184,87.123,37.933 +360185,84.633,46.194 +360186,85.01,43.642 +360187,85.443,40.908 +360188,85.953,37.947 +360189,83.305,46.187 +360190,83.729,43.642 +360191,84.213,40.916 +360192,84.782,37.964 +360193,81.977,46.179 +360194,82.448,43.642 +360195,82.983,40.925 +360196,83.61,37.983 +360197,80.649,46.168 +360198,81.166,43.641 +360199,81.753,40.934 +360200,82.437,38.004 +360201,79.322,46.156 +360202,79.885,43.639 +360203,80.523,40.944 +360204,81.264,38.028 +360205,77.995,46.142 +360206,78.604,43.637 +360207,79.292,40.955 +360208,80.09,38.054 +360209,76.668,46.126 +360210,77.323,43.634 +360211,78.062,40.967 +360212,78.916,38.083 +360213,75.342,46.108 +360214,76.042,43.63 +360215,76.831,40.979 +360216,77.74,38.114 +360217,74.017,46.089 +360218,74.762,43.626 +360219,75.599,40.992 +360220,76.563,38.147 +360221,72.692,46.068 +360222,73.482,43.622 +360223,74.368,41.006 +360224,75.385,38.182 +360225,71.367,46.045 +360226,72.201,43.617 +360227,73.136,41.021 +360228,74.207,38.22 +360229,70.043,46.02 +360230,70.922,43.611 +360231,71.903,41.037 +360232,73.027,38.26 +360233,68.72,45.994 +360234,69.642,43.605 +360235,70.671,41.053 +360236,71.846,38.303 +360237,67.398,45.966 +360238,68.363,43.598 +360239,69.438,41.07 +360240,70.663,38.347 +360241,66.076,45.936 +360242,67.083,43.591 +360243,68.205,41.088 +360244,69.48,38.394 +360245,64.755,45.905 +360246,65.805,43.583 +360247,66.971,41.107 +360248,68.295,38.443 +360249,63.435,45.872 +360250,64.526,43.575 +360251,65.737,41.126 +360252,67.108,38.494 +360253,62.116,45.837 +360254,63.248,43.566 +360255,64.502,41.146 +360256,65.92,38.547 +360257,60.797,45.8 +360258,61.97,43.556 +360259,63.267,41.167 +360260,64.731,38.602 +360261,59.479,45.762 +360262,60.692,43.547 +360263,62.032,41.189 +360264,63.54,38.659 +360265,58.163,45.723 +360266,59.415,43.536 +360267,60.796,41.211 +360268,62.347,38.718 +360269,56.847,45.682 +360270,58.138,43.525 +360271,59.56,41.234 +360272,61.153,38.779 +360273,55.532,45.639 +360274,56.862,43.514 +360275,58.323,41.257 +360276,59.957,38.843 +360277,54.219,45.595 +360278,55.585,43.502 +360279,57.085,41.281 +360280,58.76,38.907 +360281,52.906,45.549 +360282,54.31,43.49 +360283,55.847,41.306 +360284,57.56,38.974 +360285,51.594,45.501 +360286,53.034,43.477 +360287,54.609,41.332 +360288,56.359,39.043 +360289,50.284,45.453 +360290,51.759,43.464 +360291,53.37,41.358 +360292,55.157,39.113 +360293,48.975,45.402 +360294,50.485,43.45 +360295,52.131,41.385 +360296,53.952,39.185 +360297,47.666,45.351 +360298,49.21,43.436 +360299,50.891,41.412 +360300,52.745,39.259 +360301,46.359,45.298 +360302,47.937,43.422 +360303,49.65,41.44 +360304,51.537,39.334 +360305,45.054,45.243 +360306,46.663,43.407 +360307,48.409,41.469 +360308,50.326,39.411 +360309,43.749,45.187 +360310,45.391,43.392 +360311,47.167,41.498 +360312,49.114,39.489 +360313,42.446,45.13 +360314,44.118,43.376 +360315,45.925,41.528 +360316,47.9,39.569 +360317,41.144,45.072 +360318,42.846,43.36 +360319,44.682,41.558 +360320,46.684,39.651 +360321,39.844,45.012 +360322,41.575,43.344 +360323,43.438,41.589 +360324,45.465,39.733 +360325,38.545,44.951 +360326,40.304,43.327 +360327,42.194,41.62 +360328,44.245,39.818 +360329,37.247,44.889 +360330,39.034,43.31 +360331,40.949,41.652 +360332,43.023,39.903 +360333,35.951,44.825 +360334,37.764,43.293 +360335,39.704,41.684 +360336,41.798,39.99 +360337,34.656,44.761 +360338,36.495,43.275 +360339,38.457,41.717 +360340,40.572,40.078 +360341,33.363,44.695 +360342,35.226,43.257 +360343,37.211,41.75 +360344,39.343,40.167 +360345,32.071,44.629 +360346,33.957,43.239 +360347,35.963,41.784 +360348,38.113,40.257 +360349,30.781,44.561 +360350,32.69,43.22 +360351,34.715,41.818 +360352,36.88,40.348 +360353,29.492,44.492 +360354,31.422,43.201 +360355,33.466,41.853 +360356,35.646,40.44 +360357,28.205,44.422 +360358,30.156,43.182 +360359,32.217,41.888 +360360,34.409,40.533 +360361,26.92,44.351 +360362,28.89,43.163 +360363,30.967,41.923 +360364,33.17,40.627 +360365,25.636,44.28 +360366,27.624,43.144 +360367,29.716,41.959 +360368,31.929,40.722 +360369,24.354,44.207 +360370,26.359,43.124 +360371,28.464,41.995 +360372,30.686,40.818 +360373,23.074,44.134 +360374,25.095,43.104 +360375,27.212,42.032 +360376,29.441,40.914 +360377,21.795,44.059 +360378,23.831,43.084 +360379,25.959,42.069 +360380,28.193,41.011 +360381,20.518,43.984 +360382,22.568,43.063 +360383,24.706,42.106 +360384,26.944,41.109 +360385,19.243,43.909 +360386,21.305,43.043 +360387,23.451,42.143 +360388,25.693,41.207 +360389,17.969,43.832 +360390,20.043,43.022 +360391,22.196,42.181 +360392,24.439,41.306 +360393,16.697,43.755 +360394,18.781,43.001 +360395,20.941,42.219 +360396,23.184,41.406 +360397,15.427,43.678 +360398,17.52,42.98 +360399,19.684,42.257 +360400,21.926,41.506 +360401,14.159,43.599 +360402,16.26,42.959 +360403,18.427,42.296 +360404,20.667,41.606 +360405,12.893,43.52 +360406,15,42.938 +360407,17.169,42.334 +360408,19.405,41.707 +360409,11.628,43.441 +360410,13.741,42.917 +360411,15.911,42.373 +360412,18.141,41.808 +360413,10.366,43.361 +360414,12.483,42.896 +360415,14.651,42.412 +360416,16.876,41.909 +360417,9.1051,43.281 +360418,11.225,42.875 +360419,13.392,42.451 +360420,15.608,42.01 +360421,7.8463,43.201 +360422,9.9678,42.854 +360423,12.131,42.491 +360424,14.338,42.112 +360425,6.5893,43.12 +360426,8.7112,42.832 +360427,10.87,42.53 +360428,13.067,42.213 +360429,5.3343,43.038 +360430,7.4552,42.811 +360431,9.6076,42.57 +360432,11.793,42.315 +360433,4.0812,42.957 +360434,6.1997,42.79 +360435,8.3449,42.61 +360436,10.518,42.417 +360437,2.83,42.875 +360438,4.9449,42.769 +360439,7.0815,42.65 +360440,9.2408,42.518 +360441,1.5807,42.794 +360442,3.6907,42.747 +360443,5.8174,42.69 +360444,7.9616,42.62 +360445,0.33336,42.712 +360446,2.4371,42.726 +360447,4.5526,42.73 +360448,6.6806,42.721 +360449,359.09,42.63 +360450,1.1841,42.705 +360451,3.2872,42.77 +360452,5.3978,42.823 +360453,357.84,42.548 +360454,359.93,42.684 +360455,2.0211,42.81 +360456,4.1131,42.924 +360457,356.6,42.466 +360458,358.68,42.664 +360459,0.7543,42.85 +360460,2.8267,43.024 +360461,355.36,42.384 +360462,357.43,42.643 +360463,359.49,42.89 +360464,1.5385,43.125 +360465,354.13,42.303 +360466,356.18,42.622 +360467,358.22,42.93 +360468,0.24852,43.225 +360469,352.89,42.221 +360470,354.93,42.602 +360471,356.95,42.97 +360472,358.96,43.325 +360473,351.66,42.14 +360474,353.68,42.582 +360475,355.68,43.01 +360476,357.66,43.424 +360477,350.42,42.059 +360478,352.43,42.562 +360479,354.41,43.05 +360480,356.37,43.523 +360481,349.19,41.978 +360482,351.18,42.542 +360483,353.14,43.09 +360484,355.07,43.621 +360485,347.97,41.898 +360486,349.93,42.522 +360487,351.87,43.129 +360488,353.77,43.719 +360489,346.74,41.818 +360490,348.69,42.503 +360491,350.6,43.169 +360492,352.47,43.816 +360493,345.52,41.738 +360494,347.44,42.484 +360495,349.32,43.209 +360496,351.17,43.912 +360497,344.29,41.659 +360498,346.19,42.465 +360499,348.05,43.248 +360500,349.87,44.008 +360501,343.07,41.581 +360502,344.95,42.447 +360503,346.78,43.287 +360504,348.57,44.103 +360505,341.86,41.503 +360506,343.7,42.428 +360507,345.5,43.326 +360508,347.26,44.197 +360509,340.64,41.426 +360510,342.46,42.41 +360511,344.23,43.365 +360512,345.95,44.29 +360513,339.43,41.349 +360514,341.22,42.393 +360515,342.95,43.404 +360516,344.64,44.383 +360517,338.21,41.274 +360518,339.97,42.376 +360519,341.68,43.442 +360520,343.33,44.475 +360521,337,41.199 +360522,338.73,42.359 +360523,340.4,43.48 +360524,342.02,44.565 +360525,335.79,41.124 +360526,337.49,42.342 +360527,339.12,43.518 +360528,340.71,44.655 +360529,334.58,41.051 +360530,336.24,42.326 +360531,337.85,43.556 +360532,339.39,44.744 +360533,333.38,40.979 +360534,335,42.31 +360535,336.57,43.593 +360536,338.08,44.832 +360537,332.18,40.908 +360538,333.76,42.295 +360539,335.29,43.631 +360540,336.76,44.918 +360541,330.97,40.838 +360542,332.52,42.28 +360543,334.01,43.668 +360544,335.45,45.004 +360545,329.77,40.768 +360546,331.28,42.266 +360547,332.73,43.704 +360548,334.13,45.089 +360549,328.57,40.7 +360550,330.04,42.252 +360551,331.45,43.74 +360552,332.81,45.172 +360553,327.38,40.633 +360554,328.8,42.238 +360555,330.17,43.776 +360556,331.49,45.254 +360557,326.18,40.568 +360558,327.56,42.225 +360559,328.89,43.812 +360560,330.16,45.335 +360561,324.99,40.503 +360562,326.33,42.213 +360563,327.61,43.847 +360564,328.84,45.415 +360565,323.79,40.44 +360566,325.09,42.201 +360567,326.32,43.882 +360568,327.52,45.493 +360569,322.6,40.379 +360570,323.85,42.189 +360571,325.04,43.917 +360572,326.19,45.571 +360573,321.41,40.318 +360574,322.61,42.178 +360575,323.76,43.951 +360576,324.86,45.647 +360577,320.22,40.26 +360578,321.38,42.168 +360579,322.48,43.985 +360580,323.54,45.721 +360581,319.04,40.202 +360582,320.14,42.158 +360583,321.19,44.018 +360584,322.21,45.794 +360585,317.85,40.146 +360586,318.9,42.149 +360587,319.91,44.051 +360588,320.88,45.866 +360589,316.67,40.092 +360590,317.67,42.14 +360591,318.63,44.084 +360592,319.55,45.936 +360593,315.48,40.039 +360594,316.43,42.132 +360595,317.34,44.116 +360596,318.22,46.005 +360597,314.3,39.988 +360598,315.19,42.124 +360599,316.06,44.147 +360600,316.89,46.073 +360601,313.12,39.939 +360602,313.96,42.117 +360603,314.77,44.179 +360604,315.56,46.139 +360605,311.94,39.892 +360606,312.72,42.111 +360607,313.49,44.209 +360608,314.23,46.203 +360609,310.76,39.846 +360610,311.49,42.105 +360611,312.2,44.24 +360612,312.89,46.266 +360613,309.58,39.802 +360614,310.25,42.1 +360615,310.91,44.269 +360616,311.56,46.327 +360617,308.41,39.759 +360618,309.02,42.096 +360619,309.63,44.299 +360620,310.23,46.387 +360621,307.23,39.719 +360622,307.79,42.092 +360623,308.34,44.328 +360624,308.89,46.445 +360625,306.05,39.681 +360626,306.55,42.089 +360627,307.05,44.356 +360628,307.56,46.502 +360629,304.88,39.644 +360630,305.32,42.087 +360631,305.77,44.384 +360632,306.22,46.557 +360633,303.71,39.61 +360634,304.08,42.085 +360635,304.48,44.411 +360636,304.89,46.61 +360637,302.53,39.577 +360638,302.85,42.085 +360639,303.19,44.438 +360640,303.55,46.662 +360641,301.36,39.547 +360642,301.62,42.084 +360643,301.9,44.464 +360644,302.21,46.712 +360645,300.19,39.518 +360646,300.38,42.085 +360647,300.62,44.49 +360648,300.88,46.76 +360649,299.01,39.492 +360650,299.15,42.086 +360651,299.33,44.515 +360652,299.54,46.807 +360653,297.84,39.468 +360654,297.92,42.088 +360655,298.04,44.54 +360656,298.2,46.852 +360657,296.67,39.446 +360658,296.68,42.091 +360659,296.75,44.564 +360660,296.87,46.895 +360661,295.5,39.426 +360662,295.45,42.094 +360663,295.46,44.588 +360664,295.53,46.936 +360665,294.33,39.408 +360666,294.22,42.098 +360667,294.18,44.611 +360668,294.19,46.976 +360669,293.16,39.393 +360670,292.98,42.103 +360671,292.89,44.633 +360672,292.85,47.014 +360673,291.99,39.379 +360674,291.75,42.109 +360675,291.6,44.655 +360676,291.52,47.051 +360677,290.81,39.368 +360678,290.51,42.115 +360679,290.31,44.676 +360680,290.18,47.085 +360681,289.64,39.359 +360682,289.28,42.122 +360683,289.02,44.697 +360684,288.84,47.118 +360685,288.47,39.353 +360686,288.05,42.13 +360687,287.73,44.717 +360688,287.5,47.149 +360689,287.3,39.349 +360690,286.81,42.139 +360691,286.44,44.737 +360692,286.16,47.178 +360693,286.13,39.346 +360694,285.58,42.148 +360695,285.16,44.756 +360696,284.83,47.205 +360697,284.95,39.347 +360698,284.34,42.158 +360699,283.87,44.775 +360700,283.49,47.231 +360701,283.78,39.349 +360702,283.11,42.169 +360703,282.58,44.792 +360704,282.15,47.255 +360705,282.61,39.354 +360706,281.87,42.181 +360707,281.29,44.81 +360708,280.82,47.277 +360709,281.43,39.362 +360710,280.64,42.193 +360711,280,44.826 +360712,279.48,47.297 +360713,280.26,39.371 +360714,279.4,42.207 +360715,278.71,44.843 +360716,278.14,47.316 +360717,279.08,39.383 +360718,278.17,42.221 +360719,277.43,44.858 +360720,276.81,47.332 +360721,277.91,39.397 +360722,276.93,42.236 +360723,276.14,44.873 +360724,275.47,47.347 +360725,276.73,39.414 +360726,275.7,42.251 +360727,274.85,44.888 +360728,274.14,47.36 +360729,275.55,39.433 +360730,274.46,42.267 +360731,273.56,44.901 +360732,272.8,47.372 +360733,274.37,39.454 +360734,273.22,42.285 +360735,272.27,44.915 +360736,271.47,47.381 +360737,273.19,39.477 +360738,271.99,42.302 +360739,270.99,44.927 +360740,270.13,47.389 +360741,272.01,39.503 +360742,270.75,42.321 +360743,269.7,44.94 +360744,268.8,47.395 +360745,270.83,39.531 +360746,269.51,42.341 +360747,268.41,44.951 +360748,267.47,47.399 +360749,269.64,39.561 +360750,268.27,42.361 +360751,267.12,44.962 +360752,266.14,47.402 +360753,268.46,39.594 +360754,267.03,42.382 +360755,265.84,44.972 +360756,264.81,47.402 +360757,267.27,39.629 +360758,265.8,42.403 +360759,264.55,44.982 +360760,263.48,47.401 +360761,266.08,39.666 +360762,264.56,42.426 +360763,263.26,44.992 +360764,262.15,47.399 +360765,264.9,39.705 +360766,263.32,42.449 +360767,261.98,45 +360768,260.82,47.394 +360769,263.7,39.747 +360770,262.08,42.473 +360771,260.69,45.008 +360772,259.49,47.388 +360773,262.51,39.791 +360774,260.83,42.498 +360775,259.41,45.016 +360776,258.16,47.38 +360777,261.32,39.837 +360778,259.59,42.523 +360779,258.12,45.023 +360780,256.83,47.37 +360781,260.12,39.885 +360782,258.35,42.549 +360783,256.84,45.03 +360784,255.51,47.359 +360785,258.93,39.935 +360786,257.11,42.576 +360787,255.55,45.036 +360788,254.18,47.346 +360789,257.73,39.987 +360790,255.87,42.603 +360791,254.27,45.041 +360792,252.86,47.332 +360793,256.53,40.042 +360794,254.62,42.632 +360795,252.98,45.046 +360796,251.54,47.315 +360797,255.32,40.098 +360798,253.38,42.661 +360799,251.7,45.05 +360800,250.21,47.297 +360801,254.12,40.157 +360802,252.13,42.69 +360803,250.42,45.054 +360804,248.89,47.278 +360805,252.91,40.217 +360806,250.89,42.72 +360807,249.13,45.058 +360808,247.57,47.257 +360809,251.7,40.279 +360810,249.64,42.751 +360811,247.85,45.06 +360812,246.26,47.234 +360813,250.49,40.344 +360814,248.4,42.783 +360815,246.57,45.063 +360816,244.94,47.21 +360817,249.28,40.41 +360818,247.15,42.815 +360819,245.29,45.065 +360820,243.62,47.184 +360821,248.07,40.478 +360822,245.9,42.848 +360823,244,45.066 +360824,242.31,47.157 +360825,246.85,40.548 +360826,244.65,42.882 +360827,242.72,45.067 +360828,240.99,47.128 +360829,245.63,40.62 +360830,243.4,42.916 +360831,241.44,45.067 +360832,239.68,47.098 +360833,244.41,40.693 +360834,242.15,42.951 +360835,240.16,45.067 +360836,238.37,47.066 +360837,243.19,40.768 +360838,240.9,42.986 +360839,238.88,45.067 +360840,237.06,47.033 +360841,241.96,40.845 +360842,239.65,43.022 +360843,237.6,45.066 +360844,235.75,46.998 +360845,240.74,40.923 +360846,238.4,43.059 +360847,236.32,45.065 +360848,234.44,46.962 +360849,239.51,41.004 +360850,237.15,43.096 +360851,235.05,45.063 +360852,233.14,46.925 +360853,238.28,41.085 +360854,235.9,43.133 +360855,233.77,45.061 +360856,231.83,46.886 +360857,237.04,41.168 +360858,234.64,43.171 +360859,232.49,45.058 +360860,230.53,46.846 +360861,235.81,41.253 +360862,233.39,43.21 +360863,231.21,45.056 +360864,229.23,46.805 +360865,234.57,41.339 +360866,232.13,43.249 +360867,229.94,45.052 +360868,227.93,46.762 +360869,233.33,41.426 +360870,230.88,43.289 +360871,228.66,45.049 +360872,226.63,46.718 +360873,232.09,41.515 +360874,229.62,43.33 +360875,227.38,45.045 +360876,225.33,46.673 +360877,230.84,41.605 +360878,228.36,43.37 +360879,226.11,45.04 +360880,224.04,46.627 +360881,229.59,41.696 +360882,227.1,43.411 +360883,224.84,45.035 +360884,222.74,46.58 +360885,228.34,41.788 +360886,225.85,43.453 +360887,223.56,45.03 +360888,221.45,46.531 +360889,227.09,41.882 +360890,224.59,43.495 +360891,222.29,45.025 +360892,220.16,46.482 +360893,225.84,41.977 +360894,223.33,43.538 +360895,221.02,45.019 +360896,218.87,46.431 +360897,224.58,42.072 +360898,222.06,43.581 +360899,219.74,45.013 +360900,217.58,46.379 +360901,223.33,42.169 +360902,220.8,43.624 +360903,218.47,45.007 +360904,216.3,46.327 +360905,222.07,42.267 +360906,219.54,43.668 +360907,217.2,45.001 +360908,215.01,46.273 +360909,220.8,42.365 +360910,218.28,43.712 +360911,215.93,44.994 +360912,213.73,46.219 +360913,219.54,42.465 +360914,217.01,43.756 +360915,214.66,44.987 +360916,212.45,46.163 +360917,218.27,42.565 +360918,215.75,43.801 +360919,213.39,44.98 +360920,211.17,46.107 +360921,217,42.666 +360922,214.48,43.846 +360923,212.12,44.972 +360924,209.9,46.05 +360925,215.73,42.768 +360926,213.22,43.892 +360927,210.85,44.964 +360928,208.62,45.992 +360929,214.46,42.871 +360930,211.95,43.937 +360931,209.59,44.957 +360932,207.35,45.933 +360933,213.18,42.974 +360934,210.68,43.983 +360935,208.32,44.949 +360936,206.08,45.874 +360937,211.9,43.077 +360938,209.41,44.03 +360939,207.05,44.94 +360940,204.81,45.813 +360941,210.62,43.182 +360942,208.14,44.076 +360943,205.79,44.932 +360944,203.54,45.753 +360945,209.34,43.286 +360946,206.87,44.123 +360947,204.52,44.924 +360948,202.27,45.691 +360949,208.06,43.392 +360950,205.6,44.17 +360951,203.26,44.915 +360952,201.01,45.629 +360953,206.77,43.497 +360954,204.33,44.217 +360955,201.99,44.906 +360956,199.75,45.567 +360957,205.48,43.603 +360958,203.06,44.265 +360959,200.73,44.897 +360960,198.48,45.504 +360961,204.19,43.709 +360962,201.78,44.312 +360963,199.46,44.889 +360964,197.23,45.44 +360965,202.9,43.816 +360966,200.51,44.36 +360967,198.2,44.88 +360968,195.97,45.377 +360969,201.61,43.922 +360970,199.24,44.408 +360971,196.94,44.871 +360972,194.72,45.312 +360973,200.31,44.029 +360974,197.96,44.456 +360975,195.68,44.861 +360976,193.46,45.248 +360977,199.01,44.136 +360978,196.68,44.504 +360979,194.42,44.852 +360980,192.21,45.183 +360981,197.72,44.243 +360982,195.41,44.552 +360983,193.16,44.843 +360984,190.96,45.118 +360985,196.41,44.35 +360986,194.13,44.6 +360987,191.9,44.834 +360988,189.72,45.052 +360989,195.11,44.456 +360990,192.85,44.649 +360991,190.64,44.825 +360992,188.47,44.987 +360993,193.81,44.563 +360994,191.57,44.697 +360995,189.38,44.816 +360996,187.23,44.921 +360997,192.5,44.67 +360998,190.29,44.746 +360999,188.12,44.807 +361000,185.99,44.856 +361001,191.19,44.777 +361002,189.01,44.794 +361003,186.86,44.798 +361004,184.75,44.79 +361005,189.88,44.883 +361006,187.73,44.843 +361007,185.61,44.789 +361008,183.51,44.724 +361009,188.57,44.989 +361010,186.45,44.891 +361011,184.35,44.781 +361012,182.27,44.658 +361013,187.25,45.095 +361014,185.17,44.94 +361015,183.1,44.772 +361016,181.04,44.593 +361017,185.94,45.2 +361018,183.88,44.988 +361019,181.84,44.763 +361020,179.81,44.527 +361021,184.62,45.305 +361022,182.6,45.036 +361023,180.59,44.755 +361024,178.58,44.462 +361025,183.3,45.41 +361026,181.32,45.085 +361027,179.33,44.747 +361028,177.35,44.397 +361029,181.98,45.514 +361030,180.03,45.133 +361031,178.08,44.739 +361032,176.12,44.332 +361033,180.66,45.617 +361034,178.75,45.181 +361035,176.82,44.731 +361036,174.9,44.267 +361037,179.34,45.721 +361038,177.46,45.229 +361039,175.57,44.723 +361040,173.68,44.203 +361041,178.02,45.823 +361042,176.17,45.277 +361043,174.32,44.715 +361044,172.45,44.139 +361045,176.69,45.925 +361046,174.88,45.325 +361047,173.07,44.708 +361048,171.24,44.076 +361049,175.36,46.026 +361050,173.6,45.372 +361051,171.82,44.701 +361052,170.02,44.013 +361053,174.03,46.127 +361054,172.31,45.42 +361055,170.57,44.694 +361056,168.8,43.951 +361057,172.7,46.227 +361058,171.02,45.467 +361059,169.31,44.688 +361060,167.59,43.889 +361061,171.37,46.326 +361062,169.73,45.514 +361063,168.06,44.681 +361064,166.38,43.828 +361065,170.04,46.424 +361066,168.44,45.561 +361067,166.82,44.675 +361068,165.17,43.767 +361069,168.71,46.521 +361070,167.15,45.608 +361071,165.57,44.67 +361072,163.96,43.707 +361073,167.37,46.618 +361074,165.86,45.654 +361075,164.32,44.664 +361076,162.75,43.648 +361077,166.04,46.713 +361078,164.57,45.7 +361079,163.07,44.659 +361080,161.54,43.59 +361081,164.7,46.808 +361082,163.27,45.746 +361083,161.82,44.655 +361084,160.34,43.533 +361085,163.36,46.901 +361086,161.98,45.792 +361087,160.57,44.65 +361088,159.14,43.476 +361089,162.03,46.994 +361090,160.69,45.837 +361091,159.33,44.646 +361092,157.94,43.42 +361093,160.69,47.086 +361094,159.39,45.882 +361095,158.08,44.643 +361096,156.74,43.366 +361097,159.34,47.176 +361098,158.1,45.927 +361099,156.83,44.64 +361100,155.54,43.312 +361101,158,47.266 +361102,156.81,45.972 +361103,155.59,44.637 +361104,154.34,43.259 +361105,156.66,47.354 +361106,155.51,46.016 +361107,154.34,44.634 +361108,153.15,43.208 +361109,155.32,47.441 +361110,154.22,46.06 +361111,153.1,44.632 +361112,151.95,43.157 +361113,153.97,47.527 +361114,152.92,46.103 +361115,151.85,44.631 +361116,150.76,43.108 +361117,152.63,47.612 +361118,151.62,46.146 +361119,150.61,44.63 +361120,149.57,43.06 +361121,151.28,47.695 +361122,150.33,46.189 +361123,149.36,44.629 +361124,148.38,43.013 +361125,149.94,47.777 +361126,149.03,46.231 +361127,148.12,44.629 +361128,147.19,42.967 +361129,148.59,47.858 +361130,147.73,46.273 +361131,146.87,44.63 +361132,146,42.923 +361133,147.24,47.938 +361134,146.44,46.315 +361135,145.63,44.631 +361136,144.81,42.88 +361137,145.89,48.016 +361138,145.14,46.356 +361139,144.38,44.632 +361140,143.63,42.838 +361141,144.55,48.093 +361142,143.84,46.396 +361143,143.14,44.634 +361144,142.44,42.798 +361145,143.2,48.168 +361146,142.54,46.437 +361147,141.9,44.636 +361148,141.26,42.76 +361149,141.85,48.242 +361150,141.25,46.477 +361151,140.65,44.639 +361152,140.07,42.723 +361153,140.5,48.315 +361154,139.95,46.516 +361155,139.41,44.643 +361156,138.89,42.687 +361157,139.15,48.386 +361158,138.65,46.555 +361159,138.17,44.647 +361160,137.71,42.653 +361161,137.79,48.456 +361162,137.35,46.594 +361163,136.92,44.652 +361164,136.53,42.621 +361165,136.44,48.524 +361166,136.05,46.632 +361167,135.68,44.657 +361168,135.35,42.59 +361169,135.09,48.591 +361170,134.75,46.669 +361171,134.44,44.663 +361172,134.17,42.561 +361173,133.74,48.656 +361174,133.45,46.706 +361175,133.19,44.669 +361176,132.99,42.534 +361177,132.39,48.72 +361178,132.15,46.743 +361179,131.95,44.676 +361180,131.81,42.508 +361181,131.04,48.782 +361182,130.85,46.779 +361183,130.71,44.684 +361184,130.63,42.484 +361185,129.68,48.842 +361186,129.55,46.814 +361187,129.47,44.692 +361188,129.45,42.462 +361189,128.33,48.901 +361190,128.25,46.85 +361191,128.22,44.701 +361192,128.27,42.442 +361193,126.98,48.958 +361194,126.95,46.884 +361195,126.98,44.711 +361196,127.09,42.423 +361197,125.63,49.014 +361198,125.65,46.918 +361199,125.74,44.721 +361200,125.91,42.406 +361201,124.27,49.068 +361202,124.35,46.952 +361203,124.49,44.731 +361204,124.73,42.392 +361205,122.92,49.121 +361206,123.05,46.985 +361207,123.25,44.743 +361208,123.56,42.379 +361209,121.57,49.172 +361210,121.75,47.017 +361211,122.01,44.755 +361212,122.38,42.368 +361213,120.22,49.221 +361214,120.44,47.049 +361215,120.76,44.768 +361216,121.2,42.359 +361217,118.86,49.268 +361218,119.14,47.08 +361219,119.52,44.781 +361220,120.02,42.352 +361221,117.51,49.314 +361222,117.84,47.111 +361223,118.28,44.795 +361224,118.84,42.347 +361225,116.16,49.358 +361226,116.54,47.142 +361227,117.03,44.81 +361228,117.66,42.344 +361229,114.81,49.401 +361230,115.24,47.171 +361231,115.79,44.825 +361232,116.48,42.343 +361233,113.46,49.442 +361234,113.94,47.201 +361235,114.54,44.841 +361236,115.3,42.344 +361237,112.1,49.481 +361238,112.64,47.229 +361239,113.3,44.858 +361240,114.12,42.347 +361241,110.75,49.518 +361242,111.34,47.257 +361243,112.05,44.876 +361244,112.94,42.352 +361245,109.4,49.554 +361246,110.04,47.285 +361247,110.81,44.894 +361248,111.76,42.359 +361249,108.05,49.588 +361250,108.74,47.312 +361251,109.56,44.913 +361252,110.57,42.368 +361253,106.7,49.62 +361254,107.44,47.338 +361255,108.32,44.932 +361256,109.39,42.379 +361257,105.35,49.651 +361258,106.14,47.364 +361259,107.07,44.952 +361260,108.21,42.393 +361261,104,49.679 +361262,104.84,47.389 +361263,105.83,44.973 +361264,107.02,42.408 +361265,102.66,49.707 +361266,103.54,47.414 +361267,104.58,44.995 +361268,105.83,42.426 +361269,101.31,49.732 +361270,102.24,47.438 +361271,103.33,45.017 +361272,104.65,42.445 +361273,99.962,49.756 +361274,100.94,47.462 +361275,102.08,45.04 +361276,103.46,42.467 +361277,98.615,49.778 +361278,99.638,47.485 +361279,100.84,45.064 +361280,102.27,42.491 +361281,97.269,49.798 +361282,98.339,47.507 +361283,99.588,45.088 +361284,101.08,42.517 +361285,95.924,49.817 +361286,97.04,47.529 +361287,98.34,45.113 +361288,99.885,42.544 +361289,94.58,49.834 +361290,95.741,47.55 +361291,97.09,45.139 +361292,98.691,42.574 +361293,93.237,49.849 +361294,94.442,47.571 +361295,95.841,45.165 +361296,97.496,42.607 +361297,91.894,49.863 +361298,93.144,47.591 +361299,94.591,45.192 +361300,96.299,42.641 +361301,90.552,49.874 +361302,91.846,47.611 +361303,93.34,45.22 +361304,95.101,42.677 +361305,89.211,49.885 +361306,90.548,47.63 +361307,92.089,45.248 +361308,93.901,42.715 +361309,87.871,49.893 +361310,89.25,47.648 +361311,90.837,45.277 +361312,92.7,42.755 +361313,86.532,49.9 +361314,87.953,47.666 +361315,89.585,45.307 +361316,91.496,42.798 +361317,85.193,49.906 +361318,86.656,47.684 +361319,88.332,45.337 +361320,90.292,42.842 +361321,83.856,49.909 +361322,85.359,47.701 +361323,87.079,45.368 +361324,89.085,42.888 +361325,82.52,49.911 +361326,84.063,47.717 +361327,85.825,45.4 +361328,87.877,42.936 +361329,81.184,49.912 +361330,82.767,47.733 +361331,84.571,45.432 +361332,86.667,42.986 +361333,79.85,49.91 +361334,81.471,47.748 +361335,83.316,45.465 +361336,85.455,43.039 +361337,78.517,49.908 +361338,80.176,47.763 +361339,82.06,45.499 +361340,84.241,43.093 +361341,77.185,49.903 +361342,78.881,47.777 +361343,80.804,45.533 +361344,83.025,43.148 +361345,75.855,49.898 +361346,77.587,47.791 +361347,79.547,45.568 +361348,81.807,43.206 +361349,74.525,49.89 +361350,76.292,47.805 +361351,78.289,45.604 +361352,80.587,43.266 +361353,73.197,49.881 +361354,74.999,47.817 +361355,77.031,45.64 +361356,79.365,43.327 +361357,71.87,49.871 +361358,73.705,47.83 +361359,75.772,45.676 +361360,78.141,43.391 +361361,70.544,49.859 +361362,72.413,47.841 +361363,74.512,45.714 +361364,76.915,43.456 +361365,69.219,49.845 +361366,71.12,47.853 +361367,73.252,45.751 +361368,75.686,43.522 +361369,67.896,49.831 +361370,69.828,47.863 +361371,71.991,45.79 +361372,74.456,43.591 +361373,66.574,49.814 +361374,68.536,47.874 +361375,70.73,45.829 +361376,73.223,43.661 +361377,65.254,49.797 +361378,67.245,47.884 +361379,69.467,45.868 +361380,71.988,43.733 +361381,63.935,49.778 +361382,65.955,47.893 +361383,68.204,45.909 +361384,70.751,43.806 +361385,62.617,49.757 +361386,64.664,47.902 +361387,66.94,45.949 +361388,69.511,43.881 +361389,61.301,49.735 +361390,63.375,47.911 +361391,65.676,45.99 +361392,68.27,43.958 +361393,59.986,49.712 +361394,62.085,47.919 +361395,64.411,46.032 +361396,67.026,44.036 +361397,58.673,49.688 +361398,60.797,47.927 +361399,63.145,46.074 +361400,65.779,44.115 +361401,57.361,49.662 +361402,59.508,47.934 +361403,61.878,46.117 +361404,64.531,44.196 +361405,56.051,49.635 +361406,58.221,47.941 +361407,60.61,46.16 +361408,63.28,44.279 +361409,54.743,49.607 +361410,56.934,47.947 +361411,59.342,46.204 +361412,62.027,44.362 +361413,53.436,49.578 +361414,55.647,47.954 +361415,58.073,46.248 +361416,60.771,44.448 +361417,52.13,49.547 +361418,54.361,47.959 +361419,56.803,46.292 +361420,59.513,44.534 +361421,50.827,49.515 +361422,53.075,47.965 +361423,55.533,46.338 +361424,58.253,44.622 +361425,49.525,49.482 +361426,51.79,47.97 +361427,54.262,46.383 +361428,56.99,44.71 +361429,48.224,49.449 +361430,50.505,47.975 +361431,52.989,46.429 +361432,55.726,44.801 +361433,46.925,49.414 +361434,49.221,47.979 +361435,51.717,46.475 +361436,54.458,44.892 +361437,45.628,49.377 +361438,47.938,47.983 +361439,50.443,46.522 +361440,53.189,44.984 +361441,44.333,49.34 +361442,46.655,47.987 +361443,49.168,46.569 +361444,51.917,45.077 +361445,43.039,49.302 +361446,45.373,47.99 +361447,47.893,46.616 +361448,50.643,45.172 +361449,41.747,49.263 +361450,44.091,47.993 +361451,46.617,46.664 +361452,49.367,45.267 +361453,40.457,49.223 +361454,42.81,47.996 +361455,45.34,46.712 +361456,48.088,45.363 +361457,39.169,49.183 +361458,41.529,47.999 +361459,44.063,46.761 +361460,46.807,45.461 +361461,37.883,49.141 +361462,40.249,48.001 +361463,42.785,46.809 +361464,45.524,45.559 +361465,36.598,49.098 +361466,38.969,48.003 +361467,41.505,46.858 +361468,44.239,45.657 +361469,35.315,49.055 +361470,37.691,48.005 +361471,40.225,46.908 +361472,42.951,45.757 +361473,34.034,49.011 +361474,36.412,48.007 +361475,38.945,46.957 +361476,41.661,45.857 +361477,32.755,48.966 +361478,35.134,48.008 +361479,37.663,47.007 +361480,40.369,45.958 +361481,31.477,48.921 +361482,33.857,48.01 +361483,36.381,47.058 +361484,39.075,46.06 +361485,30.202,48.875 +361486,32.581,48.011 +361487,35.098,47.108 +361488,37.779,46.162 +361489,28.928,48.828 +361490,31.305,48.012 +361491,33.814,47.159 +361492,36.48,46.265 +361493,27.656,48.781 +361494,30.029,48.012 +361495,32.53,47.209 +361496,35.179,46.368 +361497,26.386,48.733 +361498,28.754,48.013 +361499,31.244,47.26 +361500,33.877,46.471 +361501,25.118,48.685 +361502,27.48,48.013 +361503,29.958,47.312 +361504,32.572,46.576 +361505,23.852,48.636 +361506,26.206,48.014 +361507,28.672,47.363 +361508,31.265,46.68 +361509,22.587,48.586 +361510,24.933,48.014 +361511,27.384,47.415 +361512,29.956,46.785 +361513,21.325,48.537 +361514,23.66,48.014 +361515,26.096,47.466 +361516,28.646,46.89 +361517,20.064,48.487 +361518,22.388,48.014 +361519,24.807,47.518 +361520,27.333,46.995 +361521,18.806,48.436 +361522,21.117,48.014 +361523,23.517,47.57 +361524,26.018,47.1 +361525,17.549,48.385 +361526,19.846,48.014 +361527,22.227,47.622 +361528,24.702,47.206 +361529,16.294,48.334 +361530,18.575,48.014 +361531,20.935,47.674 +361532,23.383,47.312 +361533,15.041,48.283 +361534,17.306,48.014 +361535,19.643,47.726 +361536,22.063,47.417 +361537,13.79,48.232 +361538,16.036,48.014 +361539,18.351,47.778 +361540,20.741,47.523 +361541,12.541,48.18 +361542,14.768,48.014 +361543,17.058,47.831 +361544,19.417,47.629 +361545,11.293,48.129 +361546,13.5,48.014 +361547,15.764,47.883 +361548,18.091,47.734 +361549,10.048,48.077 +361550,12.232,48.013 +361551,14.469,47.935 +361552,16.764,47.84 +361553,8.8038,48.025 +361554,10.965,48.013 +361555,13.174,47.987 +361556,15.435,47.945 +361557,7.5619,47.974 +361558,9.6982,48.013 +361559,11.878,48.04 +361560,14.104,48.051 +361561,6.3218,47.922 +361562,8.4321,48.013 +361563,10.581,48.092 +361564,12.772,48.156 +361565,5.0836,47.87 +361566,7.1666,48.014 +361567,9.2837,48.144 +361568,11.438,48.26 +361569,3.8471,47.819 +361570,5.9015,48.014 +361571,7.9858,48.196 +361572,10.103,48.365 +361573,2.6124,47.768 +361574,4.6369,48.014 +361575,6.6872,48.248 +361576,8.7658,48.469 +361577,1.3795,47.717 +361578,3.3729,48.015 +361579,5.3881,48.3 +361580,7.4273,48.572 +361581,0.14832,47.666 +361582,2.1093,48.015 +361583,4.0883,48.352 +361584,6.0874,48.676 +361585,358.92,47.616 +361586,0.84613,48.016 +361587,2.788,48.404 +361588,4.7461,48.778 +361589,357.69,47.565 +361590,359.58,48.017 +361591,1.4871,48.456 +361592,3.4035,48.881 +361593,356.47,47.516 +361594,358.32,48.018 +361595,0.18556,48.507 +361596,2.0595,48.982 +361597,355.24,47.466 +361598,357.06,48.019 +361599,358.88,48.558 +361600,0.71414,49.083 +361601,354.02,47.417 +361602,355.8,48.02 +361603,357.58,48.61 +361604,359.37,49.184 +361605,352.8,47.369 +361606,354.54,48.022 +361607,356.28,48.661 +361608,358.02,49.284 +361609,351.58,47.321 +361610,353.28,48.024 +361611,354.97,48.712 +361612,356.67,49.383 +361613,350.36,47.274 +361614,352.02,48.026 +361615,353.67,48.762 +361616,355.32,49.482 +361617,349.14,47.227 +361618,350.76,48.028 +361619,352.37,48.813 +361620,353.97,49.579 +361621,347.93,47.181 +361622,349.5,48.031 +361623,351.06,48.863 +361624,352.62,49.676 +361625,346.71,47.136 +361626,348.24,48.034 +361627,349.75,48.913 +361628,351.26,49.772 +361629,345.5,47.091 +361630,346.98,48.037 +361631,348.45,48.963 +361632,349.91,49.867 +361633,344.29,47.047 +361634,345.72,48.04 +361635,347.14,49.012 +361636,348.55,49.962 +361637,343.08,47.004 +361638,344.46,48.044 +361639,345.83,49.061 +361640,347.2,50.055 +361641,341.88,46.962 +361642,343.21,48.048 +361643,344.53,49.11 +361644,345.84,50.148 +361645,340.67,46.92 +361646,341.95,48.052 +361647,343.22,49.159 +361648,344.48,50.239 +361649,339.46,46.88 +361650,340.69,48.057 +361651,341.91,49.207 +361652,343.12,50.33 +361653,338.26,46.84 +361654,339.44,48.062 +361655,340.6,49.255 +361656,341.76,50.419 +361657,337.06,46.802 +361658,338.18,48.068 +361659,339.29,49.303 +361660,340.4,50.508 +361661,335.85,46.764 +361662,336.92,48.073 +361663,337.98,49.35 +361664,339.04,50.595 +361665,334.65,46.728 +361666,335.67,48.079 +361667,336.67,49.397 +361668,337.68,50.681 +361669,333.45,46.692 +361670,334.41,48.086 +361671,335.36,49.444 +361672,336.32,50.766 +361673,332.26,46.658 +361674,333.16,48.093 +361675,334.05,49.49 +361676,334.95,50.85 +361677,331.06,46.625 +361678,331.9,48.1 +361679,332.74,49.536 +361680,333.59,50.933 +361681,329.86,46.593 +361682,330.64,48.108 +361683,331.43,49.582 +361684,332.23,51.014 +361685,328.67,46.562 +361686,329.39,48.116 +361687,330.12,49.627 +361688,330.86,51.095 +361689,327.47,46.533 +361690,328.13,48.125 +361691,328.81,49.671 +361692,329.5,51.174 +361693,326.28,46.505 +361694,326.88,48.134 +361695,327.5,49.716 +361696,328.13,51.251 +361697,325.08,46.478 +361698,325.63,48.144 +361699,326.19,49.76 +361700,326.76,51.328 +361701,323.89,46.452 +361702,324.37,48.154 +361703,324.87,49.803 +361704,325.4,51.403 +361705,322.7,46.428 +361706,323.12,48.165 +361707,323.56,49.846 +361708,324.03,51.477 +361709,321.51,46.405 +361710,321.86,48.176 +361711,322.25,49.889 +361712,322.66,51.549 +361713,320.32,46.384 +361714,320.61,48.187 +361715,320.94,49.931 +361716,321.3,51.62 +361717,319.12,46.364 +361718,319.35,48.199 +361719,319.62,49.973 +361720,319.93,51.69 +361721,317.93,46.346 +361722,318.1,48.212 +361723,318.31,50.014 +361724,318.56,51.758 +361725,316.74,46.329 +361726,316.84,48.225 +361727,317,50.055 +361728,317.19,51.825 +361729,315.55,46.314 +361730,315.59,48.238 +361731,315.68,50.095 +361732,315.83,51.89 +361733,314.36,46.3 +361734,314.34,48.252 +361735,314.37,50.135 +361736,314.46,51.954 +361737,313.18,46.288 +361738,313.08,48.267 +361739,313.06,50.174 +361740,313.09,52.016 +361741,311.99,46.277 +361742,311.83,48.282 +361743,311.74,50.213 +361744,311.72,52.077 +361745,310.8,46.268 +361746,310.57,48.298 +361747,310.43,50.252 +361748,310.35,52.136 +361749,309.61,46.261 +361750,309.32,48.314 +361751,309.12,50.29 +361752,308.99,52.194 +361753,308.42,46.255 +361754,308.06,48.331 +361755,307.8,50.327 +361756,307.62,52.25 +361757,307.23,46.251 +361758,306.81,48.349 +361759,306.49,50.364 +361760,306.25,52.305 +361761,306.04,46.249 +361762,305.55,48.367 +361763,305.18,50.4 +361764,304.88,52.358 +361765,304.85,46.249 +361766,304.3,48.385 +361767,303.86,50.436 +361768,303.52,52.41 +361769,303.66,46.25 +361770,303.04,48.404 +361771,302.55,50.471 +361772,302.15,52.46 +361773,302.47,46.253 +361774,301.79,48.424 +361775,301.23,50.506 +361776,300.78,52.509 +361777,301.28,46.257 +361778,300.53,48.444 +361779,299.92,50.54 +361780,299.42,52.556 +361781,300.08,46.264 +361782,299.28,48.465 +361783,298.61,50.574 +361784,298.05,52.601 +361785,298.89,46.272 +361786,298.02,48.486 +361787,297.29,50.607 +361788,296.69,52.645 +361789,297.7,46.282 +361790,296.76,48.509 +361791,295.98,50.64 +361792,295.32,52.687 +361793,296.5,46.294 +361794,295.51,48.531 +361795,294.67,50.672 +361796,293.96,52.728 +361797,295.31,46.308 +361798,294.25,48.554 +361799,293.35,50.704 +361800,292.59,52.767 +361801,294.11,46.323 +361802,292.99,48.578 +361803,292.04,50.735 +361804,291.23,52.804 +361805,292.92,46.34 +361806,291.73,48.603 +361807,290.73,50.765 +361808,289.87,52.84 +361809,291.72,46.359 +361810,290.48,48.628 +361811,289.42,50.795 +361812,288.5,52.874 +361813,290.52,46.38 +361814,289.22,48.653 +361815,288.1,50.825 +361816,287.14,52.907 +361817,289.32,46.403 +361818,287.96,48.68 +361819,286.79,50.854 +361820,285.78,52.938 +361821,288.12,46.428 +361822,286.7,48.706 +361823,285.48,50.882 +361824,284.42,52.967 +361825,286.92,46.454 +361826,285.44,48.734 +361827,284.17,50.91 +361828,283.06,52.995 +361829,285.72,46.482 +361830,284.18,48.762 +361831,282.86,50.937 +361832,281.7,53.021 +361833,284.51,46.512 +361834,282.92,48.79 +361835,281.54,50.964 +361836,280.35,53.045 +361837,283.31,46.544 +361838,281.66,48.82 +361839,280.23,50.99 +361840,278.99,53.068 +361841,282.1,46.578 +361842,280.4,48.849 +361843,278.92,51.016 +361844,277.63,53.09 +361845,280.89,46.613 +361846,279.13,48.88 +361847,277.61,51.041 +361848,276.28,53.11 +361849,279.68,46.651 +361850,277.87,48.911 +361851,276.3,51.065 +361852,274.92,53.128 +361853,278.47,46.69 +361854,276.61,48.942 +361855,274.99,51.089 +361856,273.57,53.144 +361857,277.26,46.731 +361858,275.35,48.975 +361859,273.68,51.113 +361860,272.22,53.16 +361861,276.05,46.773 +361862,274.08,49.007 +361863,272.37,51.136 +361864,270.86,53.173 +361865,274.83,46.818 +361866,272.82,49.041 +361867,271.06,51.158 +361868,269.51,53.185 +361869,273.61,46.864 +361870,271.55,49.075 +361871,269.75,51.18 +361872,268.16,53.196 +361873,272.39,46.912 +361874,270.29,49.109 +361875,268.45,51.202 +361876,266.82,53.205 +361877,271.17,46.962 +361878,269.02,49.144 +361879,267.14,51.223 +361880,265.47,53.212 +361881,269.95,47.013 +361882,267.75,49.18 +361883,265.83,51.243 +361884,264.12,53.218 +361885,268.72,47.066 +361886,266.49,49.216 +361887,264.52,51.263 +361888,262.78,53.222 +361889,267.49,47.121 +361890,265.22,49.252 +361891,263.22,51.283 +361892,261.43,53.225 +361893,266.27,47.177 +361894,263.95,49.29 +361895,261.91,51.302 +361896,260.09,53.227 +361897,265.03,47.236 +361898,262.68,49.327 +361899,260.6,51.32 +361900,258.75,53.227 +361901,263.8,47.295 +361902,261.41,49.366 +361903,259.3,51.338 +361904,257.41,53.226 +361905,262.57,47.357 +361906,260.14,49.404 +361907,257.99,51.356 +361908,256.07,53.223 +361909,261.33,47.419 +361910,258.87,49.444 +361911,256.69,51.373 +361912,254.73,53.219 +361913,260.09,47.484 +361914,257.6,49.484 +361915,255.38,51.389 +361916,253.4,53.213 +361917,258.85,47.55 +361918,256.32,49.524 +361919,254.08,51.405 +361920,252.06,53.206 +361921,257.6,47.617 +361922,255.05,49.565 +361923,252.78,51.421 +361924,250.73,53.198 +361925,256.36,47.686 +361926,253.78,49.606 +361927,251.48,51.436 +361928,249.4,53.188 +361929,255.11,47.757 +361930,252.5,49.648 +361931,250.17,51.451 +361932,248.07,53.178 +361933,253.86,47.828 +361934,251.22,49.69 +361935,248.87,51.465 +361936,246.74,53.165 +361937,252.61,47.902 +361938,249.95,49.733 +361939,247.57,51.479 +361940,245.41,53.152 +361941,251.35,47.976 +361942,248.67,49.776 +361943,246.27,51.493 +361944,244.09,53.137 +361945,250.1,48.052 +361946,247.39,49.82 +361947,244.97,51.506 +361948,242.76,53.121 +361949,248.84,48.13 +361950,246.12,49.864 +361951,243.67,51.518 +361952,241.44,53.104 +361953,247.58,48.208 +361954,244.84,49.908 +361955,242.37,51.531 +361956,240.12,53.086 +361957,246.31,48.288 +361958,243.56,49.953 +361959,241.07,51.543 +361960,238.8,53.066 +361961,245.05,48.369 +361962,242.28,49.998 +361963,239.77,51.554 +361964,237.48,53.046 +361965,243.78,48.451 +361966,240.99,50.044 +361967,238.47,51.565 +361968,236.17,53.024 +361969,242.51,48.534 +361970,239.71,50.09 +361971,237.18,51.576 +361972,234.85,53.001 +361973,241.23,48.619 +361974,238.43,50.137 +361975,235.88,51.587 +361976,233.54,52.978 +361977,239.96,48.704 +361978,237.15,50.183 +361979,234.58,51.597 +361980,232.23,52.953 +361981,238.68,48.791 +361982,235.86,50.231 +361983,233.29,51.607 +361984,230.92,52.927 +361985,237.4,48.878 +361986,234.58,50.278 +361987,231.99,51.616 +361988,229.61,52.9 +361989,236.12,48.967 +361990,233.29,50.326 +361991,230.7,51.625 +361992,228.3,52.872 +361993,234.83,49.057 +361994,232,50.374 +361995,229.41,51.634 +361996,227,52.844 +361997,233.55,49.147 +361998,230.72,50.423 +361999,228.11,51.643 +362000,225.7,52.814 +362001,232.26,49.238 +362002,229.43,50.472 +362003,226.82,51.651 +362004,224.4,52.784 +362005,230.97,49.33 +362006,228.14,50.521 +362007,225.53,51.659 +362008,223.1,52.752 +362009,229.67,49.423 +362010,226.85,50.57 +362011,224.24,51.667 +362012,221.8,52.72 +362013,228.38,49.517 +362014,225.56,50.62 +362015,222.95,51.675 +362016,220.51,52.687 +362017,227.08,49.611 +362018,224.27,50.669 +362019,221.66,51.682 +362020,219.21,52.654 +362021,225.78,49.706 +362022,222.97,50.72 +362023,220.37,51.689 +362024,217.92,52.619 +362025,224.47,49.802 +362026,221.68,50.77 +362027,219.08,51.696 +362028,216.63,52.584 +362029,223.17,49.898 +362030,220.39,50.82 +362031,217.79,51.702 +362032,215.34,52.549 +362033,221.86,49.995 +362034,219.09,50.871 +362035,216.5,51.709 +362036,214.06,52.513 +362037,220.55,50.092 +362038,217.8,50.922 +362039,215.21,51.715 +362040,212.77,52.476 +362041,219.24,50.19 +362042,216.5,50.973 +362043,213.93,51.721 +362044,211.49,52.438 +362045,217.93,50.288 +362046,215.21,51.025 +362047,212.64,51.727 +362048,210.21,52.4 +362049,216.61,50.387 +362050,213.91,51.076 +362051,211.35,51.733 +362052,208.93,52.362 +362053,215.3,50.486 +362054,212.61,51.128 +362055,210.07,51.739 +362056,207.65,52.323 +362057,213.98,50.585 +362058,211.31,51.179 +362059,208.79,51.744 +362060,206.38,52.284 +362061,212.66,50.685 +362062,210.01,51.231 +362063,207.5,51.75 +362064,205.11,52.244 +362065,211.33,50.784 +362066,208.71,51.283 +362067,206.22,51.755 +362068,203.83,52.204 +362069,210.01,50.885 +362070,207.41,51.335 +362071,204.94,51.76 +362072,202.57,52.164 +362073,208.68,50.985 +362074,206.11,51.387 +362075,203.65,51.766 +362076,201.3,52.123 +362077,207.35,51.085 +362078,204.81,51.439 +362079,202.37,51.771 +362080,200.03,52.082 +362081,206.02,51.185 +362082,203.5,51.491 +362083,201.09,51.776 +362084,198.77,52.041 +362085,204.69,51.286 +362086,202.2,51.544 +362087,199.81,51.781 +362088,197.51,52 +362089,203.35,51.386 +362090,200.9,51.596 +362091,198.53,51.786 +362092,196.25,51.959 +362093,202.01,51.487 +362094,199.59,51.648 +362095,197.25,51.791 +362096,194.99,51.917 +362097,200.68,51.587 +362098,198.28,51.701 +362099,195.97,51.796 +362100,193.73,51.876 +362101,199.34,51.687 +362102,196.98,51.753 +362103,194.69,51.801 +362104,192.48,51.834 +362105,197.99,51.788 +362106,195.67,51.805 +362107,193.42,51.806 +362108,191.22,51.793 +362109,196.65,51.888 +362110,194.36,51.857 +362111,192.14,51.811 +362112,189.97,51.751 +362113,195.31,51.987 +362114,193.05,51.909 +362115,190.86,51.816 +362116,188.72,51.71 +362117,193.96,52.087 +362118,191.75,51.962 +362119,189.59,51.821 +362120,187.48,51.668 +362121,192.61,52.186 +362122,190.44,52.014 +362123,188.31,51.827 +362124,186.23,51.627 +362125,191.26,52.285 +362126,189.13,52.065 +362127,187.03,51.832 +362128,184.99,51.586 +362129,189.91,52.383 +362130,187.81,52.117 +362131,185.76,51.837 +362132,183.74,51.545 +362133,188.56,52.481 +362134,186.5,52.169 +362135,184.49,51.843 +362136,182.5,51.505 +362137,187.21,52.579 +362138,185.19,52.221 +362139,183.21,51.849 +362140,181.26,51.465 +362141,185.85,52.676 +362142,183.88,52.272 +362143,181.94,51.854 +362144,180.03,51.425 +362145,184.49,52.773 +362146,182.57,52.323 +362147,180.67,51.86 +362148,178.79,51.385 +362149,183.14,52.869 +362150,181.25,52.375 +362151,179.39,51.866 +362152,177.56,51.346 +362153,181.78,52.964 +362154,179.94,52.426 +362155,178.12,51.873 +362156,176.32,51.307 +362157,180.42,53.059 +362158,178.62,52.476 +362159,176.85,51.879 +362160,175.09,51.269 +362161,179.05,53.154 +362162,177.31,52.527 +362163,175.58,51.886 +362164,173.86,51.231 +362165,177.69,53.247 +362166,175.99,52.577 +362167,174.31,51.892 +362168,172.63,51.194 +362169,176.33,53.34 +362170,174.68,52.628 +362171,173.04,51.899 +362172,171.41,51.157 +362173,174.96,53.432 +362174,173.36,52.677 +362175,171.77,51.907 +362176,170.18,51.121 +362177,173.6,53.524 +362178,172.04,52.727 +362179,170.5,51.914 +362180,168.96,51.086 +362181,172.23,53.614 +362182,170.73,52.777 +362183,169.23,51.922 +362184,167.74,51.051 +362185,170.86,53.704 +362186,169.41,52.826 +362187,167.96,51.93 +362188,166.51,51.017 +362189,169.49,53.793 +362190,168.09,52.875 +362191,166.69,51.938 +362192,165.29,50.984 +362193,168.12,53.881 +362194,166.77,52.923 +362195,165.42,51.947 +362196,164.08,50.952 +362197,166.75,53.968 +362198,165.45,52.972 +362199,164.15,51.955 +362200,162.86,50.92 +362201,165.38,54.055 +362202,164.13,53.02 +362203,162.89,51.964 +362204,161.64,50.889 +362205,164.01,54.14 +362206,162.81,53.068 +362207,161.62,51.974 +362208,160.43,50.859 +362209,162.64,54.224 +362210,161.49,53.115 +362211,160.35,51.984 +362212,159.21,50.83 +362213,161.26,54.307 +362214,160.17,53.162 +362215,159.08,51.994 +362216,158,50.802 +362217,159.89,54.39 +362218,158.85,53.209 +362219,157.82,52.004 +362220,156.79,50.775 +362221,158.51,54.471 +362222,157.53,53.255 +362223,156.55,52.015 +362224,155.58,50.749 +362225,157.14,54.551 +362226,156.21,53.302 +362227,155.29,52.026 +362228,154.37,50.724 +362229,155.76,54.63 +362230,154.89,53.347 +362231,154.02,52.037 +362232,153.16,50.7 +362233,154.39,54.708 +362234,153.57,53.393 +362235,152.75,52.049 +362236,151.95,50.677 +362237,153.01,54.784 +362238,152.24,53.438 +362239,151.49,52.061 +362240,150.74,50.655 +362241,151.63,54.86 +362242,150.92,53.482 +362243,150.22,52.074 +362244,149.54,50.634 +362245,150.25,54.934 +362246,149.6,53.526 +362247,148.96,52.087 +362248,148.33,50.614 +362249,148.88,55.007 +362250,148.27,53.57 +362251,147.69,52.1 +362252,147.13,50.596 +362253,147.5,55.079 +362254,146.95,53.614 +362255,146.43,52.114 +362256,145.92,50.579 +362257,146.12,55.149 +362258,145.63,53.657 +362259,145.16,52.128 +362260,144.72,50.563 +362261,144.74,55.219 +362262,144.31,53.699 +362263,143.9,52.143 +362264,143.51,50.548 +362265,143.36,55.287 +362266,142.98,53.741 +362267,142.63,52.158 +362268,142.31,50.535 +362269,141.98,55.353 +362270,141.66,53.783 +362271,141.37,52.173 +362272,141.11,50.523 +362273,140.6,55.419 +362274,140.33,53.824 +362275,140.1,52.189 +362276,139.91,50.512 +362277,139.22,55.483 +362278,139.01,53.865 +362279,138.84,52.205 +362280,138.7,50.503 +362281,137.84,55.545 +362282,137.69,53.905 +362283,137.57,52.222 +362284,137.5,50.495 +362285,136.46,55.607 +362286,136.36,53.945 +362287,136.31,52.24 +362288,136.3,50.488 +362289,135.08,55.667 +362290,135.04,53.984 +362291,135.04,52.257 +362292,135.1,50.483 +362293,133.7,55.725 +362294,133.71,54.023 +362295,133.78,52.276 +362296,133.9,50.479 +362297,132.33,55.782 +362298,132.39,54.062 +362299,132.51,52.294 +362300,132.7,50.477 +362301,130.95,55.838 +362302,131.07,54.1 +362303,131.25,52.314 +362304,131.5,50.476 +362305,129.57,55.892 +362306,129.74,54.137 +362307,129.98,52.333 +362308,130.3,50.477 +362309,128.19,55.945 +362310,128.42,54.174 +362311,128.72,52.353 +362312,129.09,50.479 +362313,126.81,55.996 +362314,127.09,54.211 +362315,127.45,52.374 +362316,127.89,50.482 +362317,125.43,56.046 +362318,125.77,54.247 +362319,126.18,52.395 +362320,126.69,50.488 +362321,124.05,56.095 +362322,124.44,54.282 +362323,124.92,52.417 +362324,125.49,50.494 +362325,122.68,56.142 +362326,123.12,54.318 +362327,123.65,52.439 +362328,124.28,50.503 +362329,121.3,56.187 +362330,121.8,54.352 +362331,122.39,52.462 +362332,123.08,50.512 +362333,119.92,56.231 +362334,120.47,54.386 +362335,121.12,52.485 +362336,121.88,50.524 +362337,118.54,56.274 +362338,119.15,54.42 +362339,119.85,52.509 +362340,120.67,50.537 +362341,117.17,56.315 +362342,117.83,54.453 +362343,118.59,52.533 +362344,119.47,50.551 +362345,115.79,56.355 +362346,116.5,54.485 +362347,117.32,52.558 +362348,118.26,50.568 +362349,114.42,56.393 +362350,115.18,54.517 +362351,116.05,52.583 +362352,117.06,50.585 +362353,113.04,56.429 +362354,113.86,54.549 +362355,114.78,52.609 +362356,115.85,50.605 +362357,111.67,56.464 +362358,112.53,54.58 +362359,113.51,52.635 +362360,114.64,50.626 +362361,110.3,56.498 +362362,111.21,54.61 +362363,112.25,52.662 +362364,113.43,50.648 +362365,108.92,56.53 +362366,109.89,54.64 +362367,110.98,52.69 +362368,112.23,50.672 +362369,107.55,56.561 +362370,108.56,54.67 +362371,109.71,52.717 +362372,111.01,50.698 +362373,106.18,56.59 +362374,107.24,54.699 +362375,108.44,52.746 +362376,109.8,50.726 +362377,104.81,56.617 +362378,105.92,54.727 +362379,107.17,52.775 +362380,108.59,50.755 +362381,103.44,56.643 +362382,104.6,54.755 +362383,105.9,52.804 +362384,107.38,50.785 +362385,102.07,56.668 +362386,103.28,54.782 +362387,104.63,52.834 +362388,106.16,50.817 +362389,100.71,56.691 +362390,101.96,54.809 +362391,103.36,52.865 +362392,104.95,50.851 +362393,99.339,56.713 +362394,100.63,54.836 +362395,102.09,52.896 +362396,103.73,50.887 +362397,97.973,56.733 +362398,99.313,54.862 +362399,100.81,52.927 +362400,102.51,50.924 +362401,96.609,56.752 +362402,97.993,54.887 +362403,99.541,52.959 +362404,101.29,50.962 +362405,95.245,56.769 +362406,96.673,54.912 +362407,98.268,52.992 +362408,100.07,51.002 +362409,93.882,56.785 +362410,95.353,54.936 +362411,96.995,53.025 +362412,98.845,51.044 +362413,92.52,56.799 +362414,94.034,54.96 +362415,95.721,53.059 +362416,97.62,51.088 +362417,91.159,56.812 +362418,92.715,54.984 +362419,94.446,53.093 +362420,96.394,51.132 +362421,89.8,56.824 +362422,91.396,55.007 +362423,93.171,53.127 +362424,95.166,51.179 +362425,88.441,56.834 +362426,90.078,55.029 +362427,91.896,53.162 +362428,93.936,51.227 +362429,87.084,56.842 +362430,88.76,55.051 +362431,90.62,53.198 +362432,92.705,51.276 +362433,85.728,56.85 +362434,87.443,55.072 +362435,89.343,53.234 +362436,91.472,51.327 +362437,84.373,56.856 +362438,86.126,55.093 +362439,88.066,53.27 +362440,90.238,51.38 +362441,83.019,56.86 +362442,84.809,55.114 +362443,86.788,53.307 +362444,89.001,51.434 +362445,81.667,56.864 +362446,83.493,55.134 +362447,85.51,53.345 +362448,87.763,51.489 +362449,80.316,56.865 +362450,82.177,55.154 +362451,84.231,53.383 +362452,86.523,51.546 +362453,78.966,56.866 +362454,80.862,55.173 +362455,82.951,53.421 +362456,85.281,51.604 +362457,77.618,56.865 +362458,79.547,55.192 +362459,81.671,53.46 +362460,84.037,51.664 +362461,76.271,56.863 +362462,78.232,55.21 +362463,80.39,53.499 +362464,82.791,51.725 +362465,74.925,56.86 +362466,76.918,55.228 +362467,79.109,53.539 +362468,81.543,51.787 +362469,73.581,56.855 +362470,75.605,55.245 +362471,77.826,53.579 +362472,80.293,51.851 +362473,72.238,56.85 +362474,74.292,55.262 +362475,76.544,53.62 +362476,79.04,51.916 +362477,70.897,56.843 +362478,72.979,55.279 +362479,75.26,53.661 +362480,77.786,51.982 +362481,69.557,56.834 +362482,71.667,55.295 +362483,73.976,53.702 +362484,76.53,52.05 +362485,68.219,56.825 +362486,70.355,55.311 +362487,72.691,53.744 +362488,75.272,52.118 +362489,66.882,56.815 +362490,69.044,55.326 +362491,71.406,53.786 +362492,74.011,52.189 +362493,65.547,56.803 +362494,67.734,55.341 +362495,70.12,53.829 +362496,72.749,52.26 +362497,64.213,56.79 +362498,66.424,55.356 +362499,68.833,53.872 +362500,71.484,52.332 +362501,62.881,56.776 +362502,65.114,55.37 +362503,67.545,53.915 +362504,70.217,52.406 +362505,61.55,56.761 +362506,63.805,55.384 +362507,66.257,53.959 +362508,68.948,52.48 +362509,60.221,56.745 +362510,62.497,55.397 +362511,64.968,54.003 +362512,67.677,52.556 +362513,58.894,56.728 +362514,61.189,55.41 +362515,63.678,54.047 +362516,66.403,52.633 +362517,57.569,56.71 +362518,59.882,55.423 +362519,62.388,54.092 +362520,65.127,52.711 +362521,56.245,56.691 +362522,58.575,55.435 +362523,61.096,54.137 +362524,63.85,52.79 +362525,54.922,56.671 +362526,57.269,55.448 +362527,59.805,54.182 +362528,62.569,52.87 +362529,53.602,56.65 +362530,55.964,55.459 +362531,58.512,54.228 +362532,61.287,52.95 +362533,52.283,56.628 +362534,54.659,55.471 +362535,57.219,54.274 +362536,60.002,53.032 +362537,50.966,56.606 +362538,53.354,55.482 +362539,55.925,54.32 +362540,58.716,53.115 +362541,49.651,56.582 +362542,52.05,55.493 +362543,54.63,54.367 +362544,57.426,53.198 +362545,48.337,56.558 +362546,50.747,55.504 +362547,53.334,54.414 +362548,56.135,53.282 +362549,47.025,56.532 +362550,49.444,55.514 +362551,52.038,54.461 +362552,54.842,53.367 +362553,45.715,56.506 +362554,48.142,55.524 +362555,50.741,54.508 +362556,53.546,53.453 +362557,44.407,56.48 +362558,46.841,55.534 +362559,49.443,54.556 +362560,52.248,53.54 +362561,43.1,56.452 +362562,45.54,55.544 +362563,48.145,54.603 +362564,50.948,53.627 +362565,41.795,56.424 +362566,44.239,55.553 +362567,46.845,54.651 +362568,49.645,53.715 +362569,40.493,56.396 +362570,42.939,55.562 +362571,45.545,54.7 +362572,48.341,53.803 +362573,39.191,56.366 +362574,41.64,55.571 +362575,44.245,54.748 +362576,47.034,53.892 +362577,37.892,56.336 +362578,40.342,55.58 +362579,42.943,54.797 +362580,45.725,53.982 +362581,36.595,56.306 +362582,39.044,55.589 +362583,41.641,54.845 +362584,44.414,54.072 +362585,35.299,56.275 +362586,37.746,55.597 +362587,40.338,54.894 +362588,43.101,54.162 +362589,34.005,56.243 +362590,36.45,55.605 +362591,39.035,54.943 +362592,41.785,54.253 +362593,32.713,56.211 +362594,35.153,55.613 +362595,37.73,54.992 +362596,40.468,54.344 +362597,31.423,56.178 +362598,33.858,55.621 +362599,36.425,55.042 +362600,39.149,54.436 +362601,30.135,56.146 +362602,32.563,55.629 +362603,35.119,55.091 +362604,37.827,54.528 +362605,28.849,56.112 +362606,31.268,55.637 +362607,33.813,55.141 +362608,36.503,54.621 +362609,27.564,56.079 +362610,29.974,55.644 +362611,32.506,55.19 +362612,35.178,54.713 +362613,26.281,56.045 +362614,28.681,55.652 +362615,31.198,55.24 +362616,33.85,54.806 +362617,25,56.01 +362618,27.389,55.659 +362619,29.889,55.29 +362620,32.521,54.899 +362621,23.721,55.976 +362622,26.096,55.667 +362623,28.58,55.34 +362624,31.189,54.992 +362625,22.444,55.941 +362626,24.805,55.674 +362627,27.27,55.39 +362628,29.856,55.086 +362629,21.168,55.906 +362630,23.514,55.681 +362631,25.959,55.439 +362632,28.52,55.179 +362633,19.895,55.871 +362634,22.224,55.688 +362635,24.648,55.489 +362636,27.183,55.273 +362637,18.623,55.836 +362638,20.934,55.695 +362639,23.336,55.539 +362640,25.844,55.366 +362641,17.353,55.801 +362642,19.644,55.702 +362643,22.023,55.589 +362644,24.503,55.46 +362645,16.085,55.765 +362646,18.356,55.709 +362647,20.71,55.639 +362648,23.16,55.553 +362649,14.818,55.73 +362650,17.067,55.716 +362651,19.396,55.689 +362652,21.816,55.646 +362653,13.553,55.695 +362654,15.78,55.723 +362655,18.082,55.739 +362656,20.469,55.74 +362657,12.29,55.659 +362658,14.493,55.73 +362659,16.767,55.789 +362660,19.122,55.833 +362661,11.029,55.624 +362662,13.206,55.737 +362663,15.451,55.839 +362664,17.772,55.926 +362665,9.7697,55.589 +362666,11.92,55.745 +362667,14.134,55.888 +362668,16.421,56.018 +362669,8.5119,55.554 +362670,10.635,55.752 +362671,12.817,55.938 +362672,15.068,56.111 +362673,7.2558,55.519 +362674,9.3496,55.759 +362675,11.5,55.988 +362676,13.714,56.203 +362677,6.0014,55.485 +362678,8.0651,55.766 +362679,10.182,56.037 +362680,12.358,56.294 +362681,4.7487,55.45 +362682,6.7811,55.774 +362683,8.8628,56.086 +362684,11,56.386 +362685,3.4976,55.416 +362686,5.4975,55.781 +362687,7.5435,56.135 +362688,9.6413,56.477 +362689,2.2481,55.383 +362690,4.2145,55.789 +362691,6.2236,56.185 +362692,8.281,56.567 +362693,1.0002,55.349 +362694,2.9319,55.797 +362695,4.9032,56.233 +362696,6.9193,56.657 +362697,359.75,55.316 +362698,1.6497,55.805 +362699,3.5823,56.282 +362700,5.5562,56.747 +362701,358.51,55.284 +362702,0.36806,55.813 +362703,2.2609,56.331 +362704,4.1917,56.836 +362705,357.27,55.251 +362706,359.09,55.821 +362707,0.9389,56.379 +362708,2.826,56.925 +362709,356.02,55.22 +362710,357.81,55.829 +362711,359.62,56.427 +362712,1.4591,57.013 +362713,354.78,55.188 +362714,356.53,55.838 +362715,358.29,56.475 +362716,0.090861,57.1 +362717,353.55,55.158 +362718,355.25,55.846 +362719,356.97,56.523 +362720,358.72,57.187 +362721,352.31,55.128 +362722,353.97,55.855 +362723,355.65,56.571 +362724,357.35,57.273 +362725,351.07,55.098 +362726,352.69,55.864 +362727,354.32,56.618 +362728,355.98,57.358 +362729,349.84,55.069 +362730,351.41,55.873 +362731,353,56.665 +362732,354.61,57.443 +362733,348.6,55.041 +362734,350.13,55.883 +362735,351.67,56.712 +362736,353.23,57.527 +362737,347.37,55.013 +362738,348.85,55.893 +362739,350.35,56.759 +362740,351.86,57.61 +362741,346.14,54.987 +362742,347.57,55.903 +362743,349.02,56.805 +362744,350.48,57.692 +362745,344.91,54.961 +362746,346.3,55.913 +362747,347.69,56.851 +362748,349.11,57.773 +362749,343.68,54.935 +362750,345.02,55.923 +362751,346.37,56.897 +362752,347.73,57.854 +362753,342.46,54.911 +362754,343.74,55.934 +362755,345.04,56.942 +362756,346.35,57.934 +362757,341.23,54.887 +362758,342.47,55.945 +362759,343.71,56.987 +362760,344.97,58.012 +362761,340.01,54.864 +362762,341.19,55.957 +362763,342.38,57.032 +362764,343.59,58.09 +362765,338.78,54.842 +362766,339.91,55.968 +362767,341.06,57.077 +362768,342.21,58.167 +362769,337.56,54.821 +362770,338.64,55.98 +362771,339.73,57.121 +362772,340.83,58.243 +362773,336.34,54.801 +362774,337.36,55.992 +362775,338.4,57.165 +362776,339.45,58.318 +362777,335.12,54.782 +362778,336.09,56.005 +362779,337.07,57.208 +362780,338.06,58.392 +362781,333.9,54.764 +362782,334.81,56.018 +362783,335.74,57.252 +362784,336.68,58.464 +362785,332.68,54.747 +362786,333.54,56.031 +362787,334.41,57.294 +362788,335.3,58.536 +362789,331.46,54.731 +362790,332.26,56.045 +362791,333.08,57.337 +362792,333.91,58.607 +362793,330.24,54.716 +362794,330.99,56.058 +362795,331.75,57.379 +362796,332.53,58.676 +362797,329.03,54.702 +362798,329.71,56.073 +362799,330.42,57.421 +362800,331.14,58.745 +362801,327.81,54.689 +362802,328.44,56.087 +362803,329.09,57.462 +362804,329.76,58.812 +362805,326.59,54.677 +362806,327.17,56.102 +362807,327.76,57.503 +362808,328.37,58.878 +362809,325.38,54.667 +362810,325.89,56.118 +362811,326.43,57.543 +362812,326.99,58.943 +362813,324.16,54.657 +362814,324.62,56.134 +362815,325.1,57.583 +362816,325.6,59.007 +362817,322.95,54.649 +362818,323.35,56.15 +362819,323.77,57.623 +362820,324.21,59.069 +362821,321.74,54.642 +362822,322.07,56.166 +362823,322.44,57.662 +362824,322.83,59.13 +362825,320.52,54.636 +362826,320.8,56.183 +362827,321.1,57.701 +362828,321.44,59.19 +362829,319.31,54.632 +362830,319.52,56.201 +362831,319.77,57.74 +362832,320.05,59.249 +362833,318.1,54.629 +362834,318.25,56.218 +362835,318.44,57.778 +362836,318.67,59.307 +362837,316.89,54.627 +362838,316.98,56.237 +362839,317.11,57.815 +362840,317.28,59.363 +362841,315.67,54.626 +362842,315.7,56.255 +362843,315.78,57.852 +362844,315.89,59.418 +362845,314.46,54.627 +362846,314.43,56.274 +362847,314.45,57.889 +362848,314.51,59.471 +362849,313.25,54.629 +362850,313.16,56.294 +362851,313.12,57.925 +362852,313.12,59.524 +362853,312.04,54.632 +362854,311.88,56.314 +362855,311.78,57.961 +362856,311.73,59.574 +362857,310.83,54.637 +362858,310.61,56.334 +362859,310.45,57.996 +362860,310.34,59.624 +362861,309.61,54.643 +362862,309.34,56.355 +362863,309.12,58.031 +362864,308.96,59.672 +362865,308.4,54.65 +362866,308.06,56.376 +362867,307.79,58.065 +362868,307.57,59.719 +362869,307.19,54.659 +362870,306.79,56.398 +362871,306.46,58.099 +362872,306.19,59.765 +362873,305.98,54.669 +362874,305.51,56.42 +362875,305.13,58.133 +362876,304.8,59.809 +362877,304.76,54.681 +362878,304.24,56.443 +362879,303.79,58.166 +362880,303.41,59.852 +362881,303.55,54.694 +362882,302.97,56.466 +362883,302.46,58.198 +362884,302.03,59.893 +362885,302.34,54.709 +362886,301.69,56.489 +362887,301.13,58.23 +362888,300.65,59.933 +362889,301.12,54.724 +362890,300.42,56.513 +362891,299.8,58.262 +362892,299.26,59.971 +362893,299.91,54.742 +362894,299.14,56.538 +362895,298.47,58.293 +362896,297.88,60.009 +362897,298.69,54.761 +362898,297.87,56.563 +362899,297.14,58.323 +362900,296.49,60.045 +362901,297.48,54.781 +362902,296.59,56.588 +362903,295.81,58.353 +362904,295.11,60.079 +362905,296.26,54.802 +362906,295.31,56.614 +362907,294.48,58.383 +362908,293.73,60.112 +362909,295.05,54.826 +362910,294.04,56.64 +362911,293.15,58.412 +362912,292.35,60.144 +362913,293.83,54.85 +362914,292.76,56.667 +362915,291.81,58.441 +362916,290.97,60.174 +362917,292.61,54.876 +362918,291.49,56.694 +362919,290.48,58.469 +362920,289.59,60.203 +362921,291.39,54.904 +362922,290.21,56.722 +362923,289.15,58.497 +362924,288.21,60.23 +362925,290.17,54.932 +362926,288.93,56.75 +362927,287.83,58.524 +362928,286.83,60.256 +362929,288.95,54.963 +362930,287.65,56.779 +362931,286.5,58.551 +362932,285.45,60.281 +362933,287.73,54.995 +362934,286.38,56.808 +362935,285.17,58.577 +362936,284.07,60.304 +362937,286.5,55.028 +362938,285.1,56.837 +362939,283.84,58.603 +362940,282.7,60.326 +362941,285.28,55.062 +362942,283.82,56.867 +362943,282.51,58.628 +362944,281.32,60.346 +362945,284.05,55.099 +362946,282.54,56.898 +362947,281.18,58.653 +362948,279.95,60.365 +362949,282.82,55.136 +362950,281.26,56.929 +362951,279.85,58.677 +362952,278.57,60.383 +362953,281.6,55.175 +362954,279.98,56.96 +362955,278.52,58.701 +362956,277.2,60.399 +362957,280.37,55.215 +362958,278.7,56.992 +362959,277.2,58.724 +362960,275.83,60.414 +362961,279.14,55.257 +362962,277.42,57.024 +362963,275.87,58.747 +362964,274.46,60.428 +362965,277.9,55.3 +362966,276.14,57.057 +362967,274.54,58.77 +362968,273.09,60.44 +362969,276.67,55.345 +362970,274.86,57.09 +362971,273.22,58.792 +362972,271.72,60.451 +362973,275.44,55.391 +362974,273.58,57.124 +362975,271.89,58.813 +362976,270.35,60.461 +362977,274.2,55.438 +362978,272.29,57.158 +362979,270.57,58.834 +362980,268.99,60.469 +362981,272.96,55.487 +362982,271.01,57.193 +362983,269.24,58.855 +362984,267.62,60.476 +362985,271.72,55.536 +362986,269.73,57.227 +362987,267.91,58.875 +362988,266.26,60.482 +362989,270.48,55.588 +362990,268.44,57.263 +362991,266.59,58.895 +362992,264.9,60.487 +362993,269.24,55.64 +362994,267.16,57.299 +362995,265.27,58.914 +362996,263.53,60.49 +362997,267.99,55.694 +362998,265.87,57.335 +362999,263.94,58.933 +363000,262.17,60.492 +363001,266.75,55.749 +363002,264.59,57.371 +363003,262.62,58.952 +363004,260.81,60.493 +363005,265.5,55.806 +363006,263.3,57.408 +363007,261.3,58.97 +363008,259.46,60.492 +363009,264.25,55.863 +363010,262.01,57.446 +363011,259.97,58.987 +363012,258.1,60.491 +363013,263,55.922 +363014,260.73,57.483 +363015,258.65,59.004 +363016,256.75,60.488 +363017,261.74,55.982 +363018,259.44,57.522 +363019,257.33,59.021 +363020,255.39,60.484 +363021,260.49,56.043 +363022,258.15,57.56 +363023,256.01,59.038 +363024,254.04,60.479 +363025,259.23,56.106 +363026,256.86,57.599 +363027,254.69,59.054 +363028,252.69,60.472 +363029,257.97,56.169 +363030,255.57,57.638 +363031,253.37,59.069 +363032,251.34,60.465 +363033,256.71,56.234 +363034,254.28,57.678 +363035,252.05,59.085 +363036,249.99,60.456 +363037,255.45,56.299 +363038,252.99,57.718 +363039,250.73,59.099 +363040,248.65,60.447 +363041,254.18,56.366 +363042,251.7,57.758 +363043,249.41,59.114 +363044,247.3,60.436 +363045,252.92,56.434 +363046,250.4,57.799 +363047,248.1,59.128 +363048,245.96,60.425 +363049,251.65,56.503 +363050,249.11,57.84 +363051,246.78,59.142 +363052,244.62,60.412 +363053,250.38,56.573 +363054,247.82,57.881 +363055,245.46,59.155 +363056,243.28,60.398 +363057,249.1,56.643 +363058,246.52,57.923 +363059,244.14,59.169 +363060,241.94,60.384 +363061,247.83,56.715 +363062,245.23,57.965 +363063,242.83,59.181 +363064,240.6,60.368 +363065,246.55,56.788 +363066,243.93,58.007 +363067,241.51,59.194 +363068,239.27,60.351 +363069,245.27,56.862 +363070,242.63,58.05 +363071,240.2,59.206 +363072,237.93,60.334 +363073,243.99,56.936 +363074,241.34,58.092 +363075,238.88,59.218 +363076,236.6,60.316 +363077,242.71,57.011 +363078,240.04,58.135 +363079,237.57,59.23 +363080,235.27,60.296 +363081,241.42,57.087 +363082,238.74,58.179 +363083,236.26,59.241 +363084,233.94,60.276 +363085,240.13,57.164 +363086,237.44,58.222 +363087,234.95,59.252 +363088,232.61,60.256 +363089,238.84,57.242 +363090,236.14,58.266 +363091,233.63,59.263 +363092,231.29,60.234 +363093,237.55,57.32 +363094,234.84,58.31 +363095,232.32,59.273 +363096,229.97,60.212 +363097,236.26,57.399 +363098,233.54,58.354 +363099,231.01,59.283 +363100,228.64,60.189 +363101,234.96,57.479 +363102,232.24,58.399 +363103,229.7,59.293 +363104,227.32,60.165 +363105,233.66,57.56 +363106,230.93,58.444 +363107,228.39,59.303 +363108,226.01,60.14 +363109,232.36,57.641 +363110,229.63,58.488 +363111,227.08,59.312 +363112,224.69,60.115 +363113,231.06,57.722 +363114,228.33,58.534 +363115,225.78,59.322 +363116,223.37,60.089 +363117,229.75,57.804 +363118,227.02,58.579 +363119,224.47,59.331 +363120,222.06,60.063 +363121,228.45,57.887 +363122,225.72,58.624 +363123,223.16,59.34 +363124,220.75,60.036 +363125,227.14,57.97 +363126,224.41,58.67 +363127,221.85,59.349 +363128,219.44,60.009 +363129,225.82,58.054 +363130,223.1,58.716 +363131,220.55,59.357 +363132,218.13,59.981 +363133,224.51,58.138 +363134,221.8,58.761 +363135,219.24,59.365 +363136,216.83,59.952 +363137,223.2,58.222 +363138,220.49,58.807 +363139,217.94,59.374 +363140,215.52,59.923 +363141,221.88,58.307 +363142,219.18,58.853 +363143,216.63,59.382 +363144,214.22,59.894 +363145,220.56,58.392 +363146,217.87,58.9 +363147,215.33,59.39 +363148,212.92,59.864 +363149,219.24,58.477 +363150,216.56,58.946 +363151,214.03,59.397 +363152,211.62,59.834 +363153,217.91,58.563 +363154,215.25,58.992 +363155,212.73,59.405 +363156,210.33,59.804 +363157,216.59,58.649 +363158,213.94,59.039 +363159,211.42,59.413 +363160,209.03,59.773 +363161,215.26,58.735 +363162,212.62,59.085 +363163,210.12,59.42 +363164,207.74,59.742 +363165,213.93,58.821 +363166,211.31,59.132 +363167,208.82,59.428 +363168,206.45,59.711 +363169,212.6,58.907 +363170,210,59.178 +363171,207.52,59.435 +363172,205.16,59.679 +363173,211.27,58.994 +363174,208.68,59.225 +363175,206.22,59.442 +363176,203.87,59.648 +363177,209.93,59.08 +363178,207.37,59.272 +363179,204.92,59.449 +363180,202.58,59.616 +363181,208.59,59.167 +363182,206.05,59.318 +363183,203.63,59.457 +363184,201.3,59.584 +363185,207.25,59.253 +363186,204.73,59.365 +363187,202.33,59.464 +363188,200.02,59.552 +363189,205.91,59.34 +363190,203.42,59.412 +363191,201.03,59.471 +363192,198.74,59.52 +363193,204.57,59.426 +363194,202.1,59.458 +363195,199.73,59.478 +363196,197.46,59.488 +363197,203.22,59.513 +363198,200.78,59.505 +363199,198.44,59.485 +363200,196.18,59.456 +363201,201.88,59.599 +363202,199.46,59.551 +363203,197.14,59.492 +363204,194.91,59.424 +363205,200.53,59.685 +363206,198.14,59.598 +363207,195.85,59.499 +363208,193.63,59.392 +363209,199.18,59.771 +363210,196.82,59.644 +363211,194.55,59.506 +363212,192.36,59.36 +363213,197.83,59.857 +363214,195.5,59.691 +363215,193.26,59.514 +363216,191.09,59.328 +363217,196.47,59.942 +363218,194.18,59.737 +363219,191.97,59.521 +363220,189.82,59.296 +363221,195.12,60.027 +363222,192.86,59.783 +363223,190.67,59.528 +363224,188.55,59.265 +363225,193.76,60.112 +363226,191.54,59.829 +363227,189.38,59.536 +363228,187.29,59.234 +363229,192.4,60.196 +363230,190.21,59.875 +363231,188.09,59.543 +363232,186.03,59.203 +363233,191.05,60.281 +363234,188.89,59.921 +363235,186.8,59.551 +363236,184.76,59.172 +363237,189.68,60.364 +363238,187.56,59.966 +363239,185.51,59.558 +363240,183.5,59.142 +363241,188.32,60.448 +363242,186.24,60.012 +363243,184.22,59.566 +363244,182.25,59.112 +363245,186.96,60.53 +363246,184.91,60.057 +363247,182.93,59.574 +363248,180.99,59.082 +363249,185.59,60.613 +363250,183.59,60.102 +363251,181.64,59.582 +363252,179.73,59.053 +363253,184.22,60.694 +363254,182.26,60.147 +363255,180.35,59.59 +363256,178.48,59.024 +363257,182.86,60.776 +363258,180.94,60.192 +363259,179.06,59.598 +363260,177.23,58.996 +363261,181.49,60.856 +363262,179.61,60.237 +363263,177.77,59.607 +363264,175.98,58.968 +363265,180.12,60.936 +363266,178.28,60.281 +363267,176.49,59.615 +363268,174.73,58.94 +363269,178.74,61.016 +363270,176.95,60.326 +363271,175.2,59.624 +363272,173.48,58.914 +363273,177.37,61.095 +363274,175.62,60.37 +363275,173.91,59.633 +363276,172.23,58.887 +363277,176,61.173 +363278,174.29,60.413 +363279,172.63,59.642 +363280,170.99,58.862 +363281,174.62,61.25 +363282,172.96,60.457 +363283,171.34,59.652 +363284,169.74,58.837 +363285,173.24,61.327 +363286,171.63,60.5 +363287,170.05,59.661 +363288,168.5,58.813 +363289,171.87,61.402 +363290,170.3,60.543 +363291,168.77,59.671 +363292,167.26,58.789 +363293,170.49,61.477 +363294,168.97,60.586 +363295,167.48,59.681 +363296,166.02,58.766 +363297,169.11,61.552 +363298,167.64,60.628 +363299,166.2,59.692 +363300,164.78,58.744 +363301,167.73,61.625 +363302,166.31,60.67 +363303,164.92,59.702 +363304,163.54,58.722 +363305,166.35,61.698 +363306,164.98,60.712 +363307,163.63,59.713 +363308,162.31,58.702 +363309,164.96,61.769 +363310,163.65,60.754 +363311,162.35,59.724 +363312,161.07,58.682 +363313,163.58,61.84 +363314,162.31,60.795 +363315,161.07,59.736 +363316,159.84,58.663 +363317,162.2,61.91 +363318,160.98,60.836 +363319,159.78,59.747 +363320,158.6,58.645 +363321,160.81,61.979 +363322,159.65,60.877 +363323,158.5,59.759 +363324,157.37,58.628 +363325,159.43,62.047 +363326,158.31,60.917 +363327,157.22,59.771 +363328,156.14,58.612 +363329,158.04,62.114 +363330,156.98,60.957 +363331,155.94,59.784 +363332,154.91,58.596 +363333,156.66,62.18 +363334,155.65,60.997 +363335,154.65,59.797 +363336,153.68,58.582 +363337,155.27,62.245 +363338,154.31,61.036 +363339,153.37,59.81 +363340,152.45,58.569 +363341,153.88,62.308 +363342,152.98,61.075 +363343,152.09,59.824 +363344,151.22,58.556 +363345,152.49,62.371 +363346,151.64,61.113 +363347,150.81,59.837 +363348,150,58.545 +363349,151.1,62.433 +363350,150.31,61.151 +363351,149.53,59.852 +363352,148.77,58.534 +363353,149.71,62.493 +363354,148.97,61.189 +363355,148.25,59.866 +363356,147.54,58.525 +363357,148.33,62.553 +363358,147.64,61.227 +363359,146.97,59.881 +363360,146.32,58.517 +363361,146.94,62.611 +363362,146.3,61.264 +363363,145.69,59.896 +363364,145.1,58.51 +363365,145.55,62.669 +363366,144.96,61.3 +363367,144.41,59.912 +363368,143.87,58.504 +363369,144.15,62.725 +363370,143.63,61.337 +363371,143.13,59.928 +363372,142.65,58.499 +363373,142.76,62.779 +363374,142.29,61.372 +363375,141.85,59.944 +363376,141.43,58.496 +363377,141.37,62.833 +363378,140.96,61.408 +363379,140.57,59.961 +363380,140.2,58.493 +363381,139.98,62.886 +363382,139.62,61.443 +363383,139.29,59.978 +363384,138.98,58.492 +363385,138.59,62.937 +363386,138.28,61.477 +363387,138.01,59.995 +363388,137.76,58.492 +363389,137.2,62.987 +363390,136.95,61.512 +363391,136.73,60.013 +363392,136.54,58.493 +363393,135.81,63.036 +363394,135.61,61.545 +363395,135.45,60.032 +363396,135.32,58.495 +363397,134.42,63.083 +363398,134.27,61.579 +363399,134.17,60.05 +363400,134.1,58.499 +363401,133.03,63.13 +363402,132.94,61.612 +363403,132.89,60.069 +363404,132.88,58.504 +363405,131.63,63.175 +363406,131.6,61.644 +363407,131.61,60.089 +363408,131.66,58.51 +363409,130.24,63.218 +363410,130.26,61.676 +363411,130.33,60.109 +363412,130.44,58.517 +363413,128.85,63.261 +363414,128.93,61.708 +363415,129.05,60.129 +363416,129.22,58.526 +363417,127.46,63.302 +363418,127.59,61.739 +363419,127.77,60.15 +363420,127.99,58.536 +363421,126.07,63.342 +363422,126.25,61.769 +363423,126.49,60.171 +363424,126.77,58.547 +363425,124.68,63.381 +363426,124.92,61.8 +363427,125.21,60.193 +363428,125.55,58.56 +363429,123.29,63.418 +363430,123.58,61.83 +363431,123.93,60.215 +363432,124.33,58.573 +363433,121.9,63.454 +363434,122.25,61.859 +363435,122.65,60.237 +363436,123.11,58.589 +363437,120.51,63.489 +363438,120.91,61.888 +363439,121.37,60.26 +363440,121.89,58.605 +363441,119.12,63.522 +363442,119.57,61.916 +363443,120.09,60.283 +363444,120.67,58.623 +363445,117.73,63.554 +363446,118.24,61.944 +363447,118.8,60.307 +363448,119.45,58.642 +363449,116.35,63.585 +363450,116.9,61.972 +363451,117.52,60.331 +363452,118.22,58.663 +363453,114.96,63.614 +363454,115.56,61.999 +363455,116.24,60.356 +363456,117,58.684 +363457,113.57,63.643 +363458,114.23,62.025 +363459,114.96,60.381 +363460,115.78,58.708 +363461,112.18,63.669 +363462,112.89,62.052 +363463,113.68,60.406 +363464,114.55,58.732 +363465,110.8,63.695 +363466,111.56,62.077 +363467,112.4,60.432 +363468,113.33,58.758 +363469,109.41,63.719 +363470,110.22,62.103 +363471,111.12,60.458 +363472,112.1,58.785 +363473,108.03,63.742 +363474,108.89,62.127 +363475,109.83,60.485 +363476,110.87,58.814 +363477,106.64,63.763 +363478,107.55,62.152 +363479,108.55,60.512 +363480,109.65,58.844 +363481,105.26,63.784 +363482,106.22,62.176 +363483,107.27,60.539 +363484,108.42,58.875 +363485,103.88,63.803 +363486,104.88,62.199 +363487,105.98,60.567 +363488,107.19,58.907 +363489,102.5,63.82 +363490,103.55,62.222 +363491,104.7,60.596 +363492,105.96,58.941 +363493,101.12,63.837 +363494,102.22,62.245 +363495,103.42,60.625 +363496,104.73,58.976 +363497,99.737,63.852 +363498,100.88,62.267 +363499,102.13,60.654 +363500,103.5,59.013 +363501,98.359,63.865 +363502,99.551,62.288 +363503,100.85,60.684 +363504,102.26,59.051 +363505,96.981,63.878 +363506,98.218,62.31 +363507,99.562,60.714 +363508,101.03,59.09 +363509,95.604,63.889 +363510,96.885,62.331 +363511,98.277,60.744 +363512,99.795,59.13 +363513,94.227,63.899 +363514,95.553,62.351 +363515,96.991,60.775 +363516,98.559,59.172 +363517,92.852,63.908 +363518,94.221,62.371 +363519,95.705,60.807 +363520,97.321,59.214 +363521,91.478,63.915 +363522,92.889,62.39 +363523,94.418,60.838 +363524,96.082,59.259 +363525,90.106,63.922 +363526,91.558,62.409 +363527,93.131,60.87 +363528,94.842,59.304 +363529,88.734,63.927 +363530,90.227,62.428 +363531,91.843,60.903 +363532,93.601,59.351 +363533,87.363,63.93 +363534,88.897,62.446 +363535,90.555,60.936 +363536,92.358,59.398 +363537,85.994,63.933 +363538,87.567,62.464 +363539,89.267,60.969 +363540,91.114,59.448 +363541,84.625,63.935 +363542,86.237,62.482 +363543,87.978,61.003 +363544,89.868,59.498 +363545,83.258,63.935 +363546,84.908,62.499 +363547,86.688,61.037 +363548,88.621,59.549 +363549,81.892,63.934 +363550,83.579,62.515 +363551,85.398,61.071 +363552,87.372,59.602 +363553,80.528,63.932 +363554,82.251,62.531 +363555,84.108,61.106 +363556,86.121,59.656 +363557,79.164,63.929 +363558,80.923,62.547 +363559,82.817,61.141 +363560,84.869,59.71 +363561,77.802,63.925 +363562,79.595,62.563 +363563,81.526,61.177 +363564,83.616,59.766 +363565,76.442,63.92 +363566,78.268,62.578 +363567,80.233,61.213 +363568,82.361,59.823 +363569,75.082,63.913 +363570,76.942,62.592 +363571,78.941,61.249 +363572,81.104,59.882 +363573,73.724,63.906 +363574,75.616,62.607 +363575,77.648,61.285 +363576,79.845,59.941 +363577,72.368,63.897 +363578,74.29,62.621 +363579,76.354,61.322 +363580,78.584,60.001 +363581,71.013,63.888 +363582,72.965,62.634 +363583,75.06,61.359 +363584,77.322,60.062 +363585,69.659,63.877 +363586,71.64,62.648 +363587,73.765,61.397 +363588,76.058,60.124 +363589,68.307,63.866 +363590,70.316,62.661 +363591,72.469,61.435 +363592,74.792,60.188 +363593,66.956,63.853 +363594,68.992,62.673 +363595,71.173,61.473 +363596,73.525,60.252 +363597,65.607,63.84 +363598,67.669,62.685 +363599,69.877,61.511 +363600,72.255,60.317 +363601,64.259,63.826 +363602,66.346,62.697 +363603,68.579,61.55 +363604,70.984,60.383 +363605,62.913,63.811 +363606,65.024,62.709 +363607,67.281,61.589 +363608,69.71,60.45 +363609,61.569,63.794 +363610,63.703,62.72 +363611,65.983,61.628 +363612,68.435,60.517 +363613,60.226,63.778 +363614,62.381,62.732 +363615,64.684,61.668 +363616,67.158,60.586 +363617,58.884,63.76 +363618,61.061,62.742 +363619,63.384,61.708 +363620,65.879,60.655 +363621,57.544,63.741 +363622,59.741,62.753 +363623,62.084,61.748 +363624,64.598,60.725 +363625,56.206,63.722 +363626,58.422,62.763 +363627,60.782,61.788 +363628,63.314,60.796 +363629,54.87,63.702 +363630,57.103,62.773 +363631,59.481,61.829 +363632,62.029,60.868 +363633,53.535,63.681 +363634,55.784,62.783 +363635,58.178,61.869 +363636,60.742,60.94 +363637,52.202,63.659 +363638,54.467,62.792 +363639,56.875,61.91 +363640,59.453,61.013 +363641,50.87,63.637 +363642,53.15,62.801 +363643,55.572,61.952 +363644,58.162,61.087 +363645,49.54,63.614 +363646,51.833,62.81 +363647,54.267,61.993 +363648,56.869,61.161 +363649,48.212,63.59 +363650,50.517,62.819 +363651,52.962,62.035 +363652,55.573,61.236 +363653,46.886,63.566 +363654,49.202,62.827 +363655,51.657,62.076 +363656,54.276,61.312 +363657,45.561,63.541 +363658,47.887,62.836 +363659,50.35,62.118 +363660,52.977,61.388 +363661,44.238,63.516 +363662,46.572,62.844 +363663,49.043,62.16 +363664,51.675,61.464 +363665,42.917,63.49 +363666,45.259,62.852 +363667,47.736,62.203 +363668,50.372,61.541 +363669,41.598,63.464 +363670,43.946,62.86 +363671,46.427,62.245 +363672,49.066,61.619 +363673,40.28,63.437 +363674,42.633,62.867 +363675,45.118,62.287 +363676,47.759,61.697 +363677,38.964,63.41 +363678,41.321,62.875 +363679,43.809,62.33 +363680,46.449,61.775 +363681,37.65,63.382 +363682,40.01,62.882 +363683,42.498,62.373 +363684,45.137,61.854 +363685,36.337,63.354 +363686,38.699,62.889 +363687,41.187,62.416 +363688,43.824,61.932 +363689,35.027,63.325 +363690,37.389,62.896 +363691,39.876,62.459 +363692,42.508,62.012 +363693,33.718,63.296 +363694,36.08,62.903 +363695,38.563,62.502 +363696,41.19,62.091 +363697,32.411,63.267 +363698,34.771,62.91 +363699,37.25,62.545 +363700,39.871,62.171 +363701,31.105,63.238 +363702,33.462,62.917 +363703,35.937,62.588 +363704,38.549,62.251 +363705,29.802,63.208 +363706,32.154,62.923 +363707,34.622,62.631 +363708,37.225,62.331 +363709,28.5,63.178 +363710,30.847,62.93 +363711,33.307,62.675 +363712,35.9,62.412 +363713,27.2,63.148 +363714,29.541,62.936 +363715,31.992,62.718 +363716,34.572,62.492 +363717,25.902,63.117 +363718,28.235,62.942 +363719,30.676,62.761 +363720,33.242,62.573 +363721,24.605,63.087 +363722,26.929,62.949 +363723,29.359,62.805 +363724,31.911,62.653 +363725,23.311,63.056 +363726,25.624,62.955 +363727,28.041,62.848 +363728,30.577,62.734 +363729,22.018,63.026 +363730,24.32,62.961 +363731,26.723,62.892 +363732,29.242,62.815 +363733,20.727,62.995 +363734,23.016,62.968 +363735,25.404,62.935 +363736,27.905,62.896 +363737,19.437,62.964 +363738,21.713,62.974 +363739,24.084,62.978 +363740,26.566,62.976 +363741,18.15,62.934 +363742,20.411,62.98 +363743,22.764,63.022 +363744,25.225,63.057 +363745,16.864,62.903 +363746,19.109,62.986 +363747,21.444,63.065 +363748,23.882,63.137 +363749,15.579,62.872 +363750,17.807,62.993 +363751,20.122,63.108 +363752,22.537,63.217 +363753,14.297,62.842 +363754,16.507,62.999 +363755,18.8,63.151 +363756,21.191,63.298 +363757,13.016,62.811 +363758,15.206,63.005 +363759,17.478,63.194 +363760,19.843,63.377 +363761,11.737,62.781 +363762,13.907,63.012 +363763,16.155,63.237 +363764,18.493,63.457 +363765,10.46,62.751 +363766,12.607,63.018 +363767,14.831,63.28 +363768,17.142,63.536 +363769,9.1839,62.721 +363770,11.309,63.025 +363771,13.506,63.323 +363772,15.789,63.616 +363773,7.9098,62.692 +363774,10.01,63.031 +363775,12.182,63.366 +363776,14.434,63.694 +363777,6.6374,62.663 +363778,8.7128,63.038 +363779,10.856,63.408 +363780,13.077,63.773 +363781,5.3665,62.634 +363782,7.4157,63.044 +363783,9.5301,63.451 +363784,11.719,63.851 +363785,4.0973,62.605 +363786,6.1191,63.051 +363787,8.2035,63.493 +363788,10.36,63.929 +363789,2.8297,62.577 +363790,4.823,63.058 +363791,6.8764,63.535 +363792,8.9988,64.006 +363793,1.5636,62.549 +363794,3.5274,63.065 +363795,5.5488,63.577 +363796,7.6362,64.083 +363797,0.29907,62.521 +363798,2.2322,63.073 +363799,4.2206,63.619 +363800,6.2721,64.159 +363801,359.04,62.494 +363802,0.93761,63.08 +363803,2.8919,63.661 +363804,4.9066,64.235 +363805,357.77,62.468 +363806,359.64,63.088 +363807,1.5627,63.702 +363808,3.5397,64.31 +363809,356.51,62.441 +363810,358.35,63.095 +363811,0.23307,63.744 +363812,2.1714,64.385 +363813,355.26,62.416 +363814,357.06,63.103 +363815,358.9,63.785 +363816,0.80179,64.459 +363817,354,62.391 +363818,355.76,63.111 +363819,357.57,63.826 +363820,359.43,64.532 +363821,352.74,62.367 +363822,354.47,63.119 +363823,356.24,63.866 +363824,358.06,64.605 +363825,351.49,62.343 +363826,353.18,63.128 +363827,354.91,63.907 +363828,356.69,64.677 +363829,350.24,62.32 +363830,351.89,63.137 +363831,353.58,63.947 +363832,355.31,64.748 +363833,348.98,62.297 +363834,350.6,63.145 +363835,352.25,63.987 +363836,353.93,64.819 +363837,347.73,62.275 +363838,349.31,63.154 +363839,350.91,64.026 +363840,352.56,64.889 +363841,346.49,62.254 +363842,348.02,63.164 +363843,349.58,64.066 +363844,351.18,64.958 +363845,345.24,62.234 +363846,346.73,63.173 +363847,348.25,64.105 +363848,349.8,65.027 +363849,343.99,62.214 +363850,345.44,63.183 +363851,346.91,64.144 +363852,348.42,65.094 +363853,342.75,62.195 +363854,344.15,63.193 +363855,345.58,64.182 +363856,347.04,65.161 +363857,341.5,62.177 +363858,342.86,63.203 +363859,344.24,64.221 +363860,345.66,65.227 +363861,340.26,62.16 +363862,341.57,63.214 +363863,342.91,64.259 +363864,344.27,65.292 +363865,339.02,62.144 +363866,340.28,63.225 +363867,341.57,64.296 +363868,342.89,65.356 +363869,337.78,62.128 +363870,338.99,63.236 +363871,340.24,64.334 +363872,341.51,65.42 +363873,336.54,62.114 +363874,337.71,63.247 +363875,338.9,64.371 +363876,340.12,65.482 +363877,335.3,62.1 +363878,336.42,63.259 +363879,337.56,64.407 +363880,338.73,65.543 +363881,334.06,62.087 +363882,335.13,63.271 +363883,336.23,64.444 +363884,337.35,65.604 +363885,332.82,62.076 +363886,333.84,63.283 +363887,334.89,64.48 +363888,335.96,65.663 +363889,331.59,62.065 +363890,332.56,63.296 +363891,333.55,64.516 +363892,334.57,65.722 +363893,330.35,62.055 +363894,331.27,63.309 +363895,332.21,64.551 +363896,333.18,65.779 +363897,329.12,62.046 +363898,329.99,63.322 +363899,330.88,64.586 +363900,331.79,65.836 +363901,327.88,62.038 +363902,328.7,63.336 +363903,329.54,64.621 +363904,330.4,65.891 +363905,326.65,62.032 +363906,327.41,63.35 +363907,328.2,64.655 +363908,329.01,65.945 +363909,325.42,62.026 +363910,326.13,63.364 +363911,326.86,64.689 +363912,327.62,65.998 +363913,324.18,62.022 +363914,324.84,63.379 +363915,325.52,64.722 +363916,326.23,66.05 +363917,322.95,62.018 +363918,323.56,63.394 +363919,324.19,64.756 +363920,324.84,66.101 +363921,321.72,62.016 +363922,322.27,63.409 +363923,322.85,64.788 +363924,323.45,66.151 +363925,320.49,62.015 +363926,320.99,63.425 +363927,321.51,64.821 +363928,322.05,66.2 +363929,319.26,62.015 +363930,319.7,63.441 +363931,320.17,64.853 +363932,320.66,66.247 +363933,318.03,62.016 +363934,318.42,63.458 +363935,318.83,64.884 +363936,319.27,66.294 +363937,316.8,62.018 +363938,317.13,63.475 +363939,317.49,64.915 +363940,317.87,66.339 +363941,315.58,62.022 +363942,315.85,63.492 +363943,316.15,64.946 +363944,316.48,66.383 +363945,314.35,62.026 +363946,314.56,63.51 +363947,314.81,64.977 +363948,315.09,66.426 +363949,313.12,62.032 +363950,313.28,63.528 +363951,313.47,65.006 +363952,313.69,66.467 +363953,311.89,62.039 +363954,311.99,63.546 +363955,312.13,65.036 +363956,312.3,66.508 +363957,310.66,62.047 +363958,310.71,63.565 +363959,310.79,65.065 +363960,310.91,66.547 +363961,309.44,62.057 +363962,309.43,63.584 +363963,309.45,65.094 +363964,309.51,66.585 +363965,308.21,62.068 +363966,308.14,63.604 +363967,308.11,65.122 +363968,308.12,66.622 +363969,306.98,62.08 +363970,306.86,63.624 +363971,306.77,65.15 +363972,306.73,66.657 +363973,305.75,62.093 +363974,305.57,63.644 +363975,305.43,65.177 +363976,305.33,66.691 +363977,304.53,62.107 +363978,304.29,63.665 +363979,304.09,65.204 +363980,303.94,66.725 +363981,303.3,62.123 +363982,303,63.686 +363983,302.75,65.231 +363984,302.55,66.756 +363985,302.07,62.14 +363986,301.72,63.708 +363987,301.41,65.257 +363988,301.16,66.787 +363989,300.84,62.158 +363990,300.43,63.73 +363991,300.08,65.283 +363992,299.77,66.816 +363993,299.62,62.178 +363994,299.15,63.752 +363995,298.74,65.308 +363996,298.37,66.844 +363997,298.39,62.199 +363998,297.86,63.775 +363999,297.4,65.333 +364000,296.98,66.871 +364001,297.16,62.221 +364002,296.58,63.798 +364003,296.06,65.357 +364004,295.59,66.897 +364005,295.93,62.244 +364006,295.29,63.822 +364007,294.72,65.381 +364008,294.2,66.921 +364009,294.7,62.269 +364010,294.01,63.846 +364011,293.38,65.405 +364012,292.81,66.944 +364013,293.47,62.294 +364014,292.72,63.871 +364015,292.04,65.428 +364016,291.42,66.966 +364017,292.24,62.322 +364018,291.43,63.896 +364019,290.7,65.451 +364020,290.03,66.986 +364021,291.01,62.35 +364022,290.15,63.921 +364023,289.36,65.473 +364024,288.64,67.005 +364025,289.77,62.38 +364026,288.86,63.947 +364027,288.03,65.495 +364028,287.26,67.023 +364029,288.54,62.411 +364030,287.58,63.973 +364031,286.69,65.516 +364032,285.87,67.04 +364033,287.31,62.443 +364034,286.29,63.999 +364035,285.35,65.537 +364036,284.48,67.056 +364037,286.07,62.476 +364038,285,64.026 +364039,284.01,65.558 +364040,283.1,67.07 +364041,284.84,62.511 +364042,283.71,64.054 +364043,282.67,65.578 +364044,281.71,67.083 +364045,283.6,62.547 +364046,282.43,64.081 +364047,281.34,65.598 +364048,280.33,67.095 +364049,282.37,62.584 +364050,281.14,64.109 +364051,280,65.617 +364052,278.95,67.106 +364053,281.13,62.622 +364054,279.85,64.138 +364055,278.66,65.636 +364056,277.56,67.115 +364057,279.89,62.662 +364058,278.56,64.167 +364059,277.33,65.654 +364060,276.18,67.123 +364061,278.65,62.703 +364062,277.27,64.196 +364063,275.99,65.672 +364064,274.8,67.131 +364065,277.41,62.745 +364066,275.98,64.226 +364067,274.66,65.69 +364068,273.42,67.136 +364069,276.17,62.788 +364070,274.69,64.256 +364071,273.32,65.707 +364072,272.04,67.141 +364073,274.93,62.832 +364074,273.4,64.286 +364075,271.99,65.724 +364076,270.67,67.145 +364077,273.68,62.878 +364078,272.11,64.317 +364079,270.65,65.741 +364080,269.29,67.147 +364081,272.44,62.924 +364082,270.82,64.348 +364083,269.32,65.757 +364084,267.91,67.148 +364085,271.19,62.972 +364086,269.53,64.38 +364087,267.98,65.772 +364088,266.54,67.149 +364089,269.94,63.021 +364090,268.24,64.412 +364091,266.65,65.788 +364092,265.17,67.148 +364093,268.69,63.071 +364094,266.94,64.444 +364095,265.32,65.803 +364096,263.79,67.146 +364097,267.44,63.122 +364098,265.65,64.477 +364099,263.98,65.817 +364100,262.42,67.142 +364101,266.19,63.174 +364102,264.36,64.51 +364103,262.65,65.831 +364104,261.05,67.138 +364105,264.94,63.227 +364106,263.07,64.543 +364107,261.32,65.845 +364108,259.68,67.133 +364109,263.68,63.281 +364110,261.77,64.577 +364111,259.99,65.859 +364112,258.32,67.127 +364113,262.43,63.336 +364114,260.48,64.61 +364115,258.66,65.872 +364116,256.95,67.119 +364117,261.17,63.392 +364118,259.18,64.645 +364119,257.33,65.885 +364120,255.59,67.111 +364121,259.91,63.45 +364122,257.89,64.679 +364123,256,65.897 +364124,254.22,67.102 +364125,258.65,63.508 +364126,256.59,64.714 +364127,254.67,65.909 +364128,252.86,67.091 +364129,257.38,63.567 +364130,255.29,64.749 +364131,253.34,65.921 +364132,251.5,67.08 +364133,256.12,63.627 +364134,254,64.785 +364135,252.01,65.932 +364136,250.14,67.068 +364137,254.85,63.688 +364138,252.7,64.821 +364139,250.68,65.943 +364140,248.78,67.055 +364141,253.59,63.749 +364142,251.4,64.857 +364143,249.35,65.954 +364144,247.43,67.041 +364145,252.32,63.812 +364146,250.1,64.893 +364147,248.02,65.965 +364148,246.07,67.026 +364149,251.05,63.875 +364150,248.8,64.93 +364151,246.7,65.975 +364152,244.72,67.01 +364153,249.77,63.94 +364154,247.5,64.967 +364155,245.37,65.985 +364156,243.37,66.994 +364157,248.5,64.005 +364158,246.2,65.004 +364159,244.05,65.995 +364160,242.02,66.977 +364161,247.22,64.071 +364162,244.9,65.041 +364163,242.72,66.004 +364164,240.67,66.958 +364165,245.94,64.137 +364166,243.6,65.079 +364167,241.4,66.013 +364168,239.32,66.939 +364169,244.66,64.204 +364170,242.29,65.117 +364171,240.07,66.022 +364172,237.97,66.92 +364173,243.38,64.272 +364174,240.99,65.155 +364175,238.75,66.031 +364176,236.63,66.899 +364177,242.1,64.341 +364178,239.69,65.193 +364179,237.42,66.039 +364180,235.29,66.878 +364181,240.81,64.41 +364182,238.38,65.232 +364183,236.1,66.047 +364184,233.94,66.856 +364185,239.52,64.48 +364186,237.08,65.27 +364187,234.78,66.055 +364188,232.61,66.834 +364189,238.23,64.551 +364190,235.77,65.309 +364191,233.46,66.063 +364192,231.27,66.811 +364193,236.94,64.622 +364194,234.47,65.348 +364195,232.14,66.07 +364196,229.93,66.787 +364197,235.65,64.693 +364198,233.16,65.388 +364199,230.82,66.078 +364200,228.6,66.763 +364201,234.35,64.765 +364202,231.85,65.427 +364203,229.5,66.085 +364204,227.26,66.738 +364205,233.06,64.838 +364206,230.55,65.467 +364207,228.18,66.092 +364208,225.93,66.713 +364209,231.76,64.911 +364210,229.24,65.506 +364211,226.86,66.099 +364212,224.6,66.687 +364213,230.46,64.984 +364214,227.93,65.546 +364215,225.54,66.105 +364216,223.27,66.661 +364217,229.15,65.058 +364218,226.62,65.586 +364219,224.22,66.112 +364220,221.95,66.634 +364221,227.85,65.132 +364222,225.31,65.626 +364223,222.91,66.118 +364224,220.62,66.607 +364225,226.54,65.207 +364226,224,65.667 +364227,221.59,66.124 +364228,219.3,66.579 +364229,225.23,65.282 +364230,222.68,65.707 +364231,220.27,66.13 +364232,217.98,66.551 +364233,223.92,65.357 +364234,221.37,65.747 +364235,218.96,66.136 +364236,216.66,66.523 +364237,222.61,65.432 +364238,220.06,65.788 +364239,217.64,66.142 +364240,215.34,66.494 +364241,221.29,65.508 +364242,218.74,65.828 +364243,216.33,66.148 +364244,214.03,66.465 +364245,219.98,65.584 +364246,217.43,65.869 +364247,215.02,66.153 +364248,212.71,66.436 +364249,218.66,65.66 +364250,216.12,65.91 +364251,213.7,66.159 +364252,211.4,66.407 +364253,217.34,65.736 +364254,214.8,65.951 +364255,212.39,66.164 +364256,210.09,66.377 +364257,216.01,65.812 +364258,213.48,65.991 +364259,211.08,66.17 +364260,208.78,66.348 +364261,214.69,65.889 +364262,212.17,66.032 +364263,209.77,66.175 +364264,207.47,66.318 +364265,213.36,65.965 +364266,210.85,66.073 +364267,208.46,66.18 +364268,206.17,66.288 +364269,212.03,66.042 +364270,209.53,66.114 +364271,207.15,66.186 +364272,204.86,66.257 +364273,210.7,66.118 +364274,208.21,66.155 +364275,205.84,66.191 +364276,203.56,66.227 +364277,209.37,66.194 +364278,206.89,66.195 +364279,204.53,66.196 +364280,202.26,66.197 +364281,208.04,66.271 +364282,205.57,66.236 +364283,203.22,66.201 +364284,200.96,66.167 +364285,206.7,66.347 +364286,204.25,66.277 +364287,201.91,66.206 +364288,199.67,66.137 +364289,205.36,66.423 +364290,202.93,66.318 +364291,200.61,66.212 +364292,198.37,66.106 +364293,204.02,66.499 +364294,201.61,66.358 +364295,199.3,66.217 +364296,197.08,66.076 +364297,202.68,66.575 +364298,200.29,66.399 +364299,197.99,66.222 +364300,195.79,66.046 +364301,201.34,66.651 +364302,198.96,66.439 +364303,196.69,66.228 +364304,194.5,66.016 +364305,199.99,66.726 +364306,197.64,66.48 +364307,195.38,66.233 +364308,193.21,65.987 +364309,198.65,66.801 +364310,196.31,66.52 +364311,194.08,66.239 +364312,191.92,65.957 +364313,197.3,66.876 +364314,194.99,66.56 +364315,192.77,66.244 +364316,190.64,65.928 +364317,195.95,66.951 +364318,193.66,66.601 +364319,191.47,66.25 +364320,189.35,65.899 +364321,194.59,67.025 +364322,192.34,66.641 +364323,190.17,66.255 +364324,188.07,65.87 +364325,193.24,67.099 +364326,191.01,66.681 +364327,188.87,66.261 +364328,186.79,65.842 +364329,191.89,67.172 +364330,189.68,66.72 +364331,187.56,66.267 +364332,185.51,65.814 +364333,190.53,67.245 +364334,188.36,66.76 +364335,186.26,66.273 +364336,184.24,65.786 +364337,189.17,67.318 +364338,187.03,66.8 +364339,184.96,66.279 +364340,182.96,65.759 +364341,187.81,67.39 +364342,185.7,66.839 +364343,183.66,66.286 +364344,181.69,65.732 +364345,186.45,67.462 +364346,184.37,66.878 +364347,182.36,66.292 +364348,180.42,65.705 +364349,185.09,67.533 +364350,183.04,66.917 +364351,181.06,66.299 +364352,179.15,65.679 +364353,183.72,67.604 +364354,181.71,66.956 +364355,179.76,66.306 +364356,177.88,65.654 +364357,182.36,67.674 +364358,180.38,66.994 +364359,178.47,66.312 +364360,176.61,65.629 +364361,180.99,67.743 +364362,179.05,67.033 +364363,177.17,66.32 +364364,175.34,65.604 +364365,179.62,67.812 +364366,177.72,67.071 +364367,175.87,66.327 +364368,174.08,65.581 +364369,178.25,67.88 +364370,176.38,67.109 +364371,174.57,66.334 +364372,172.81,65.557 +364373,176.88,67.947 +364374,175.05,67.147 +364375,173.28,66.342 +364376,171.55,65.535 +364377,175.51,68.014 +364378,173.72,67.184 +364379,171.98,66.35 +364380,170.29,65.513 +364381,174.13,68.08 +364382,172.38,67.222 +364383,170.69,66.358 +364384,169.03,65.491 +364385,172.76,68.146 +364386,171.05,67.259 +364387,169.39,66.367 +364388,167.77,65.471 +364389,171.38,68.21 +364390,169.72,67.295 +364391,168.1,66.375 +364392,166.52,65.451 +364393,170.01,68.274 +364394,168.38,67.332 +364395,166.8,66.384 +364396,165.26,65.432 +364397,168.63,68.337 +364398,167.05,67.368 +364399,165.51,66.393 +364400,164.01,65.414 +364401,167.25,68.399 +364402,165.71,67.404 +364403,164.21,66.402 +364404,162.76,65.396 +364405,165.87,68.461 +364406,164.37,67.44 +364407,162.92,66.412 +364408,161.5,65.379 +364409,164.49,68.521 +364410,163.04,67.475 +364411,161.63,66.422 +364412,160.25,65.363 +364413,163.1,68.581 +364414,161.7,67.51 +364415,160.34,66.432 +364416,159,65.348 +364417,161.72,68.639 +364418,160.36,67.545 +364419,159.04,66.443 +364420,157.76,65.334 +364421,160.34,68.697 +364422,159.03,67.579 +364423,157.75,66.453 +364424,156.51,65.321 +364425,158.95,68.754 +364426,157.69,67.614 +364427,156.46,66.464 +364428,155.26,65.308 +364429,157.56,68.81 +364430,156.35,67.647 +364431,155.17,66.476 +364432,154.02,65.297 +364433,156.18,68.865 +364434,155.01,67.681 +364435,153.88,66.487 +364436,152.77,65.287 +364437,154.79,68.919 +364438,153.67,67.714 +364439,152.59,66.499 +364440,151.53,65.277 +364441,153.4,68.972 +364442,152.33,67.747 +364443,151.3,66.512 +364444,150.29,65.269 +364445,152.01,69.024 +364446,151,67.779 +364447,150.01,66.524 +364448,149.04,65.261 +364449,150.62,69.075 +364450,149.66,67.811 +364451,148.72,66.537 +364452,147.8,65.255 +364453,149.23,69.125 +364454,148.32,67.843 +364455,147.43,66.551 +364456,146.56,65.249 +364457,147.84,69.173 +364458,146.98,67.874 +364459,146.14,66.564 +364460,145.32,65.245 +364461,146.45,69.221 +364462,145.64,67.905 +364463,144.85,66.578 +364464,144.08,65.242 +364465,145.06,69.268 +364466,144.3,67.936 +364467,143.56,66.593 +364468,142.85,65.239 +364469,143.67,69.313 +364470,142.96,67.966 +364471,142.27,66.608 +364472,141.61,65.238 +364473,142.28,69.358 +364474,141.61,67.996 +364475,140.98,66.623 +364476,140.37,65.238 +364477,140.88,69.401 +364478,140.27,68.026 +364479,139.69,66.638 +364480,139.14,65.239 +364481,139.49,69.443 +364482,138.93,68.055 +364483,138.4,66.654 +364484,137.9,65.242 +364485,138.1,69.484 +364486,137.59,68.084 +364487,137.11,66.67 +364488,136.66,65.245 +364489,136.7,69.524 +364490,136.25,68.112 +364491,135.83,66.687 +364492,135.43,65.25 +364493,135.31,69.563 +364494,134.91,68.14 +364495,134.54,66.704 +364496,134.19,65.255 +364497,133.92,69.601 +364498,133.57,68.168 +364499,133.25,66.721 +364500,132.96,65.262 +364501,132.52,69.637 +364502,132.23,68.195 +364503,131.96,66.739 +364504,131.73,65.27 +364505,131.13,69.673 +364506,130.88,68.222 +364507,130.67,66.757 +364508,130.49,65.28 +364509,129.73,69.707 +364510,129.54,68.248 +364511,129.38,66.775 +364512,129.26,65.29 +364513,128.34,69.739 +364514,128.2,68.274 +364515,128.1,66.794 +364516,128.03,65.302 +364517,126.94,69.771 +364518,126.86,68.299 +364519,126.81,66.814 +364520,126.79,65.315 +364521,125.55,69.802 +364522,125.52,68.325 +364523,125.52,66.833 +364524,125.56,65.329 +364525,124.16,69.831 +364526,124.18,68.349 +364527,124.23,66.853 +364528,124.33,65.344 +364529,122.76,69.859 +364530,122.84,68.374 +364531,122.94,66.874 +364532,123.09,65.361 +364533,121.37,69.886 +364534,121.49,68.398 +364535,121.66,66.895 +364536,121.86,65.379 +364537,119.98,69.912 +364538,120.15,68.421 +364539,120.37,66.916 +364540,120.63,65.398 +364541,118.58,69.936 +364542,118.81,68.444 +364543,119.08,66.938 +364544,119.39,65.418 +364545,117.19,69.959 +364546,117.47,68.467 +364547,117.79,66.96 +364548,118.16,65.44 +364549,115.8,69.981 +364550,116.13,68.489 +364551,116.5,66.982 +364552,116.93,65.463 +364553,114.4,70.002 +364554,114.79,68.511 +364555,115.21,67.005 +364556,115.69,65.487 +364557,113.01,70.022 +364558,113.45,68.532 +364559,113.93,67.028 +364560,114.46,65.512 +364561,111.62,70.04 +364562,112.1,68.553 +364563,112.64,67.052 +364564,113.22,65.538 +364565,110.23,70.058 +364566,110.76,68.574 +364567,111.35,67.076 +364568,111.99,65.566 +364569,108.84,70.074 +364570,109.42,68.594 +364571,110.06,67.101 +364572,110.75,65.595 +364573,107.45,70.089 +364574,108.08,68.614 +364575,108.77,67.126 +364576,109.51,65.625 +364577,106.06,70.102 +364578,106.74,68.633 +364579,107.48,67.151 +364580,108.28,65.656 +364581,104.67,70.115 +364582,105.4,68.652 +364583,106.19,67.177 +364584,107.04,65.689 +364585,103.28,70.126 +364586,104.06,68.671 +364587,104.9,67.203 +364588,105.8,65.723 +364589,101.9,70.136 +364590,102.72,68.689 +364591,103.61,67.229 +364592,104.56,65.758 +364593,100.51,70.145 +364594,101.38,68.707 +364595,102.32,67.256 +364596,103.32,65.794 +364597,99.122,70.153 +364598,100.04,68.724 +364599,101.03,67.283 +364600,102.08,65.831 +364601,97.737,70.159 +364602,98.704,68.741 +364603,99.737,67.311 +364604,100.84,65.87 +364605,96.353,70.165 +364606,97.365,68.758 +364607,98.446,67.339 +364608,99.602,65.909 +364609,94.969,70.169 +364610,96.026,68.774 +364611,97.154,67.367 +364612,98.359,65.95 +364613,93.586,70.173 +364614,94.688,68.79 +364615,95.862,67.396 +364616,97.116,65.992 +364617,92.204,70.175 +364618,93.35,68.805 +364619,94.57,67.425 +364620,95.871,66.035 +364621,90.823,70.176 +364622,92.012,68.82 +364623,93.277,67.455 +364624,94.626,66.079 +364625,89.443,70.176 +364626,90.675,68.835 +364627,91.984,67.484 +364628,93.379,66.125 +364629,88.064,70.174 +364630,89.338,68.85 +364631,90.691,67.515 +364632,92.132,66.171 +364633,86.686,70.172 +364634,88.001,68.863 +364635,89.397,67.545 +364636,90.883,66.218 +364637,85.309,70.169 +364638,86.665,68.877 +364639,88.103,67.576 +364640,89.634,66.267 +364641,83.934,70.165 +364642,85.329,68.89 +364643,86.809,67.607 +364644,88.383,66.317 +364645,82.559,70.159 +364646,83.993,68.903 +364647,85.514,67.639 +364648,87.13,66.367 +364649,81.185,70.153 +364650,82.658,68.916 +364651,84.218,67.671 +364652,85.877,66.419 +364653,79.813,70.145 +364654,81.323,68.928 +364655,82.923,67.703 +364656,84.622,66.471 +364657,78.441,70.137 +364658,79.988,68.94 +364659,81.626,67.735 +364660,83.366,66.525 +364661,77.071,70.128 +364662,78.654,68.952 +364663,80.33,67.768 +364664,82.109,66.58 +364665,75.702,70.118 +364666,77.32,68.963 +364667,79.033,67.801 +364668,80.85,66.635 +364669,74.334,70.106 +364670,75.987,68.974 +364671,77.735,67.835 +364672,79.59,66.692 +364673,72.968,70.094 +364674,74.654,68.984 +364675,76.437,67.869 +364676,78.328,66.749 +364677,71.603,70.081 +364678,73.322,68.995 +364679,75.138,67.903 +364680,77.065,66.807 +364681,70.239,70.067 +364682,71.99,69.005 +364683,73.839,67.937 +364684,75.801,66.866 +364685,68.877,70.053 +364686,70.658,69.014 +364687,72.54,67.972 +364688,74.535,66.926 +364689,67.516,70.037 +364690,69.327,69.024 +364691,71.24,68.007 +364692,73.267,66.987 +364693,66.156,70.021 +364694,67.997,69.033 +364695,69.939,68.042 +364696,71.998,67.049 +364697,64.798,70.003 +364698,66.666,69.042 +364699,68.638,68.077 +364700,70.727,67.111 +364701,63.441,69.985 +364702,65.337,69.051 +364703,67.337,68.113 +364704,69.454,67.174 +364705,62.085,69.967 +364706,64.008,69.059 +364707,66.035,68.149 +364708,68.18,67.238 +364709,60.732,69.947 +364710,62.679,69.067 +364711,64.732,68.185 +364712,66.905,67.303 +364713,59.379,69.927 +364714,61.351,69.075 +364715,63.429,68.221 +364716,65.627,67.368 +364717,58.028,69.906 +364718,60.023,69.083 +364719,62.125,68.258 +364720,64.348,67.434 +364721,56.679,69.885 +364722,58.696,69.09 +364723,60.82,68.295 +364724,63.067,67.501 +364725,55.331,69.862 +364726,57.369,69.097 +364727,59.515,68.332 +364728,61.784,67.568 +364729,53.984,69.84 +364730,56.043,69.104 +364731,58.21,68.369 +364732,60.5,67.636 +364733,52.64,69.816 +364734,54.718,69.111 +364735,56.904,68.406 +364736,59.214,67.704 +364737,51.296,69.792 +364738,53.393,69.118 +364739,55.597,68.444 +364740,57.926,67.773 +364741,49.955,69.768 +364742,52.068,69.124 +364743,54.29,68.482 +364744,56.636,67.842 +364745,48.615,69.743 +364746,50.744,69.13 +364747,52.982,68.52 +364748,55.344,67.912 +364749,47.276,69.717 +364750,49.421,69.136 +364751,51.674,68.558 +364752,54.051,67.983 +364753,45.939,69.691 +364754,48.098,69.142 +364755,50.364,68.596 +364756,52.755,68.053 +364757,44.604,69.665 +364758,46.776,69.148 +364759,49.055,68.634 +364760,51.458,68.125 +364761,43.271,69.638 +364762,45.454,69.154 +364763,47.744,68.673 +364764,50.159,68.196 +364765,41.939,69.611 +364766,44.133,69.159 +364767,46.434,68.711 +364768,48.858,68.268 +364769,40.608,69.583 +364770,42.812,69.165 +364771,45.122,68.75 +364772,47.555,68.34 +364773,39.28,69.555 +364774,41.492,69.17 +364775,43.81,68.789 +364776,46.25,68.413 +364777,37.953,69.527 +364778,40.172,69.175 +364779,42.497,68.828 +364780,44.944,68.486 +364781,36.628,69.498 +364782,38.853,69.18 +364783,41.184,68.867 +364784,43.635,68.559 +364785,35.304,69.469 +364786,37.535,69.185 +364787,39.87,68.906 +364788,42.325,68.632 +364789,33.982,69.44 +364790,36.217,69.19 +364791,38.555,68.945 +364792,41.013,68.706 +364793,32.662,69.411 +364794,34.9,69.195 +364795,37.24,68.984 +364796,39.698,68.779 +364797,31.344,69.381 +364798,33.583,69.199 +364799,35.924,69.023 +364800,38.382,68.853 +364801,30.027,69.351 +364802,32.267,69.204 +364803,34.608,69.062 +364804,37.064,68.927 +364805,28.712,69.322 +364806,30.952,69.209 +364807,33.291,69.102 +364808,35.745,69.001 +364809,27.399,69.292 +364810,29.637,69.214 +364811,31.973,69.141 +364812,34.423,69.075 +364813,26.087,69.262 +364814,28.322,69.218 +364815,30.655,69.18 +364816,33.099,69.149 +364817,24.777,69.232 +364818,27.008,69.223 +364819,29.336,69.22 +364820,31.774,69.223 +364821,23.469,69.202 +364822,25.695,69.227 +364823,28.016,69.259 +364824,30.447,69.297 +364825,22.162,69.172 +364826,24.382,69.232 +364827,26.696,69.298 +364828,29.117,69.371 +364829,20.857,69.142 +364830,23.07,69.237 +364831,25.375,69.337 +364832,27.786,69.444 +364833,19.554,69.112 +364834,21.759,69.241 +364835,24.054,69.376 +364836,26.454,69.518 +364837,18.252,69.082 +364838,20.448,69.246 +364839,22.732,69.416 +364840,25.119,69.592 +364841,16.953,69.052 +364842,19.137,69.251 +364843,21.409,69.455 +364844,23.783,69.665 +364845,15.654,69.023 +364846,17.827,69.255 +364847,20.086,69.494 +364848,22.444,69.738 +364849,14.358,68.994 +364850,16.518,69.26 +364851,18.762,69.533 +364852,21.104,69.811 +364853,13.063,68.964 +364854,15.209,69.265 +364855,17.438,69.572 +364856,19.763,69.884 +364857,11.77,68.935 +364858,13.901,69.27 +364859,16.113,69.61 +364860,18.419,69.956 +364861,10.478,68.907 +364862,12.593,69.275 +364863,14.787,69.649 +364864,17.074,70.028 +364865,9.1882,68.879 +364866,11.286,69.28 +364867,13.461,69.688 +364868,15.727,70.1 +364869,7.8998,68.85 +364870,9.9793,69.286 +364871,12.135,69.726 +364872,14.378,70.171 +364873,6.613,68.823 +364874,8.6732,69.291 +364875,10.807,69.764 +364876,13.028,70.242 +364877,5.3278,68.795 +364878,7.3676,69.297 +364879,9.4797,69.802 +364880,11.676,70.313 +364881,4.0442,68.769 +364882,6.0625,69.302 +364883,8.1514,69.84 +364884,10.322,70.383 +364885,2.7621,68.742 +364886,4.7579,69.308 +364887,6.8225,69.878 +364888,8.9672,70.453 +364889,1.4816,68.716 +364890,3.4538,69.314 +364891,5.4932,69.916 +364892,7.6105,70.522 +364893,0.20263,68.69 +364894,2.1502,69.32 +364895,4.1632,69.954 +364896,6.2522,70.59 +364897,358.93,68.665 +364898,0.84709,69.326 +364899,2.8328,69.991 +364900,4.8924,70.659 +364901,357.65,68.641 +364902,359.54,69.333 +364903,1.5018,70.028 +364904,3.5311,70.726 +364905,356.37,68.617 +364906,358.24,69.339 +364907,0.17037,70.065 +364908,2.1683,70.793 +364909,355.1,68.594 +364910,356.94,69.346 +364911,358.84,70.102 +364912,0.80402,70.859 +364913,353.83,68.571 +364914,355.64,69.353 +364915,357.51,70.138 +364916,359.44,70.925 +364917,352.56,68.549 +364918,354.34,69.361 +364919,356.17,70.175 +364920,358.07,70.99 +364921,351.29,68.527 +364922,353.04,69.368 +364923,354.84,70.211 +364924,356.7,71.055 +364925,350.02,68.506 +364926,351.74,69.376 +364927,353.51,70.247 +364928,355.33,71.118 +364929,348.76,68.486 +364930,350.44,69.384 +364931,352.17,70.282 +364932,353.96,71.181 +364933,347.49,68.467 +364934,349.14,69.392 +364935,350.84,70.318 +364936,352.59,71.243 +364937,346.23,68.448 +364938,347.84,69.4 +364939,349.5,70.353 +364940,351.22,71.305 +364941,344.97,68.43 +364942,346.54,69.409 +364943,348.17,70.388 +364944,349.84,71.366 +364945,343.71,68.413 +364946,345.25,69.418 +364947,346.83,70.422 +364948,348.47,71.425 +364949,342.45,68.397 +364950,343.95,69.427 +364951,345.49,70.457 +364952,347.09,71.484 +364953,341.19,68.382 +364954,342.65,69.436 +364955,344.16,70.491 +364956,345.71,71.543 +364957,339.93,68.367 +364958,341.35,69.446 +364959,342.82,70.524 +364960,344.33,71.6 +364961,338.67,68.353 +364962,340.06,69.456 +364963,341.48,70.558 +364964,342.95,71.656 +364965,337.42,68.34 +364966,338.76,69.467 +364967,340.14,70.591 +364968,341.57,71.712 +364969,336.16,68.329 +364970,337.47,69.477 +364971,338.81,70.624 +364972,340.19,71.767 +364973,334.91,68.318 +364974,336.17,69.488 +364975,337.47,70.656 +364976,338.8,71.82 +364977,333.66,68.308 +364978,334.88,69.499 +364979,336.13,70.688 +364980,337.42,71.873 +364981,332.41,68.299 +364982,333.58,69.511 +364983,334.79,70.72 +364984,336.03,71.925 +364985,331.16,68.29 +364986,332.29,69.523 +364987,333.45,70.752 +364988,334.65,71.976 +364989,329.91,68.283 +364990,330.99,69.535 +364991,332.11,70.783 +364992,333.26,72.025 +364993,328.66,68.277 +364994,329.7,69.548 +364995,330.77,70.814 +364996,331.88,72.074 +364997,327.41,68.272 +364998,328.4,69.561 +364999,329.43,70.844 +365000,330.49,72.122 +365001,326.17,68.268 +365002,327.11,69.574 +365003,328.09,70.875 +365004,329.1,72.169 +365005,324.92,68.266 +365006,325.82,69.588 +365007,326.75,70.904 +365008,327.71,72.214 +365009,323.67,68.264 +365010,324.53,69.602 +365011,325.41,70.934 +365012,326.32,72.259 +365013,322.43,68.263 +365014,323.23,69.616 +365015,324.06,70.963 +365016,324.93,72.302 +365017,321.19,68.263 +365018,321.94,69.631 +365019,322.72,70.992 +365020,323.54,72.345 +365021,319.94,68.265 +365022,320.65,69.646 +365023,321.38,71.02 +365024,322.15,72.386 +365025,318.7,68.268 +365026,319.36,69.661 +365027,320.04,71.048 +365028,320.75,72.427 +365029,317.46,68.271 +365030,318.06,69.677 +365031,318.7,71.076 +365032,319.36,72.466 +365033,316.22,68.276 +365034,316.77,69.693 +365035,317.35,71.103 +365036,317.97,72.504 +365037,314.98,68.282 +365038,315.48,69.71 +365039,316.01,71.13 +365040,316.58,72.541 +365041,313.74,68.29 +365042,314.19,69.727 +365043,314.67,71.156 +365044,315.18,72.576 +365045,312.5,68.298 +365046,312.9,69.744 +365047,313.33,71.182 +365048,313.79,72.611 +365049,311.26,68.308 +365050,311.6,69.762 +365051,311.98,71.208 +365052,312.39,72.644 +365053,310.02,68.318 +365054,310.31,69.78 +365055,310.64,71.233 +365056,311,72.677 +365057,308.78,68.33 +365058,309.02,69.798 +365059,309.3,71.258 +365060,309.61,72.708 +365061,307.54,68.344 +365062,307.73,69.817 +365063,307.96,71.283 +365064,308.21,72.738 +365065,306.3,68.358 +365066,306.44,69.837 +365067,306.61,71.307 +365068,306.82,72.767 +365069,305.06,68.374 +365070,305.15,69.856 +365071,305.27,71.33 +365072,305.42,72.794 +365073,303.82,68.391 +365074,303.86,69.876 +365075,303.93,71.354 +365076,304.03,72.821 +365077,302.58,68.409 +365078,302.57,69.897 +365079,302.58,71.377 +365080,302.63,72.846 +365081,301.34,68.428 +365082,301.27,69.918 +365083,301.24,71.399 +365084,301.24,72.87 +365085,300.11,68.448 +365086,299.98,69.939 +365087,299.9,71.421 +365088,299.85,72.893 +365089,298.87,68.47 +365090,298.69,69.961 +365091,298.55,71.443 +365092,298.45,72.915 +365093,297.63,68.493 +365094,297.4,69.983 +365095,297.21,71.464 +365096,297.06,72.935 +365097,296.39,68.517 +365098,296.11,70.006 +365099,295.87,71.485 +365100,295.66,72.955 +365101,295.15,68.542 +365102,294.82,70.028 +365103,294.53,71.506 +365104,294.27,72.973 +365105,293.91,68.569 +365106,293.53,70.052 +365107,293.18,71.526 +365108,292.88,72.99 +365109,292.67,68.597 +365110,292.23,70.075 +365111,291.84,71.546 +365112,291.48,73.006 +365113,291.43,68.626 +365114,290.94,70.1 +365115,290.5,71.565 +365116,290.09,73.021 +365117,290.19,68.656 +365118,289.65,70.124 +365119,289.15,71.584 +365120,288.7,73.034 +365121,288.95,68.687 +365122,288.36,70.149 +365123,287.81,71.602 +365124,287.31,73.047 +365125,287.71,68.72 +365126,287.07,70.174 +365127,286.47,71.621 +365128,285.92,73.058 +365129,286.47,68.754 +365130,285.77,70.2 +365131,285.13,71.638 +365132,284.53,73.068 +365133,285.23,68.789 +365134,284.48,70.226 +365135,283.79,71.656 +365136,283.14,73.077 +365137,283.99,68.825 +365138,283.19,70.252 +365139,282.44,71.673 +365140,281.75,73.084 +365141,282.74,68.862 +365142,281.9,70.279 +365143,281.1,71.689 +365144,280.36,73.091 +365145,281.5,68.901 +365146,280.6,70.306 +365147,279.76,71.706 +365148,278.97,73.097 +365149,280.25,68.94 +365150,279.31,70.334 +365151,278.42,71.721 +365152,277.58,73.101 +365153,279.01,68.981 +365154,278.01,70.362 +365155,277.08,71.737 +365156,276.2,73.104 +365157,277.76,69.023 +365158,276.72,70.39 +365159,275.74,71.752 +365160,274.81,73.107 +365161,276.52,69.066 +365162,275.43,70.419 +365163,274.4,71.767 +365164,273.43,73.108 +365165,275.27,69.11 +365166,274.13,70.448 +365167,273.06,71.781 +365168,272.04,73.108 +365169,274.02,69.155 +365170,272.84,70.478 +365171,271.72,71.795 +365172,270.66,73.107 +365173,272.77,69.202 +365174,271.54,70.507 +365175,270.38,71.809 +365176,269.27,73.105 +365177,271.52,69.249 +365178,270.25,70.537 +365179,269.04,71.822 +365180,267.89,73.101 +365181,270.27,69.297 +365182,268.95,70.568 +365183,267.7,71.835 +365184,266.51,73.097 +365185,269.02,69.347 +365186,267.65,70.599 +365187,266.36,71.848 +365188,265.13,73.092 +365189,267.77,69.397 +365190,266.36,70.63 +365191,265.02,71.86 +365192,263.75,73.086 +365193,266.51,69.449 +365194,265.06,70.661 +365195,263.68,71.872 +365196,262.38,73.079 +365197,265.26,69.501 +365198,263.76,70.693 +365199,262.35,71.884 +365200,261,73.071 +365201,264,69.554 +365202,262.47,70.725 +365203,261.01,71.895 +365204,259.62,73.062 +365205,262.74,69.609 +365206,261.17,70.758 +365207,259.67,71.906 +365208,258.25,73.052 +365209,261.49,69.664 +365210,259.87,70.791 +365211,258.33,71.917 +365212,256.87,73.041 +365213,260.23,69.72 +365214,258.57,70.824 +365215,257,71.927 +365216,255.5,73.029 +365217,258.96,69.777 +365218,257.27,70.857 +365219,255.66,71.937 +365220,254.13,73.016 +365221,257.7,69.835 +365222,255.97,70.891 +365223,254.33,71.947 +365224,252.76,73.003 +365225,256.44,69.894 +365226,254.67,70.925 +365227,252.99,71.957 +365228,251.39,72.988 +365229,255.17,69.954 +365230,253.37,70.959 +365231,251.66,71.966 +365232,250.02,72.973 +365233,253.91,70.014 +365234,252.07,70.993 +365235,250.32,71.975 +365236,248.66,72.957 +365237,252.64,70.075 +365238,250.77,71.028 +365239,248.99,71.984 +365240,247.29,72.94 +365241,251.37,70.137 +365242,249.46,71.063 +365243,247.66,71.992 +365244,245.93,72.923 +365245,250.1,70.2 +365246,248.16,71.098 +365247,246.32,72 +365248,244.57,72.904 +365249,248.82,70.264 +365250,246.86,71.134 +365251,244.99,72.008 +365252,243.21,72.885 +365253,247.55,70.328 +365254,245.56,71.17 +365255,243.66,72.016 +365256,241.85,72.865 +365257,246.27,70.393 +365258,244.25,71.206 +365259,242.33,72.024 +365260,240.49,72.845 +365261,245,70.458 +365262,242.95,71.242 +365263,240.99,72.031 +365264,239.13,72.824 +365265,243.72,70.524 +365266,241.64,71.278 +365267,239.66,72.038 +365268,237.78,72.802 +365269,242.44,70.591 +365270,240.34,71.315 +365271,238.33,72.045 +365272,236.42,72.779 +365273,241.16,70.659 +365274,239.03,71.351 +365275,237,72.051 +365276,235.07,72.756 +365277,239.87,70.726 +365278,237.72,71.388 +365279,235.67,72.058 +365280,233.72,72.733 +365281,238.59,70.795 +365282,236.42,71.426 +365283,234.35,72.064 +365284,232.37,72.709 +365285,237.3,70.864 +365286,235.11,71.463 +365287,233.02,72.07 +365288,231.02,72.684 +365289,236.01,70.933 +365290,233.8,71.5 +365291,231.69,72.076 +365292,229.67,72.659 +365293,234.72,71.003 +365294,232.49,71.538 +365295,230.36,72.082 +365296,228.33,72.633 +365297,233.43,71.073 +365298,231.18,71.576 +365299,229.04,72.088 +365300,226.99,72.607 +365301,232.14,71.144 +365302,229.87,71.614 +365303,227.71,72.093 +365304,225.64,72.581 +365305,230.84,71.215 +365306,228.56,71.652 +365307,226.38,72.099 +365308,224.3,72.554 +365309,229.54,71.286 +365310,227.25,71.69 +365311,225.06,72.104 +365312,222.97,72.526 +365313,228.24,71.358 +365314,225.94,71.728 +365315,223.74,72.109 +365316,221.63,72.499 +365317,226.94,71.43 +365318,224.62,71.767 +365319,222.41,72.114 +365320,220.29,72.471 +365321,225.64,71.502 +365322,223.31,71.805 +365323,221.09,72.119 +365324,218.96,72.443 +365325,224.33,71.575 +365326,222,71.844 +365327,219.77,72.124 +365328,217.63,72.414 +365329,223.03,71.647 +365330,220.68,71.882 +365331,218.44,72.129 +365332,216.3,72.385 +365333,221.72,71.72 +365334,219.37,71.921 +365335,217.12,72.134 +365336,214.97,72.356 +365337,220.41,71.793 +365338,218.05,71.96 +365339,215.8,72.138 +365340,213.64,72.327 +365341,219.1,71.866 +365342,216.74,71.999 +365343,214.48,72.143 +365344,212.31,72.298 +365345,217.79,71.939 +365346,215.42,72.037 +365347,213.16,72.148 +365348,210.99,72.268 +365349,216.47,72.013 +365350,214.1,72.076 +365351,211.84,72.152 +365352,209.67,72.239 +365353,215.15,72.086 +365354,212.78,72.115 +365355,210.52,72.157 +365356,208.35,72.209 +365357,213.83,72.159 +365358,211.47,72.154 +365359,209.2,72.161 +365360,207.03,72.179 +365361,212.51,72.233 +365362,210.15,72.193 +365363,207.88,72.166 +365364,205.71,72.15 +365365,211.19,72.306 +365366,208.83,72.232 +365367,206.57,72.17 +365368,204.39,72.12 +365369,209.87,72.379 +365370,207.51,72.271 +365371,205.25,72.175 +365372,203.08,72.09 +365373,208.54,72.452 +365374,206.19,72.309 +365375,203.93,72.179 +365376,201.77,72.06 +365377,207.21,72.525 +365378,204.86,72.348 +365379,202.62,72.184 +365380,200.46,72.031 +365381,205.88,72.598 +365382,203.54,72.387 +365383,201.3,72.189 +365384,199.15,72.001 +365385,204.55,72.671 +365386,202.22,72.426 +365387,199.99,72.193 +365388,197.84,71.972 +365389,203.22,72.743 +365390,200.9,72.464 +365391,198.67,72.198 +365392,196.53,71.943 +365393,201.88,72.815 +365394,199.57,72.503 +365395,197.36,72.203 +365396,195.23,71.914 +365397,200.54,72.887 +365398,198.25,72.541 +365399,196.05,72.208 +365400,193.93,71.885 +365401,199.2,72.959 +365402,196.92,72.58 +365403,194.73,72.213 +365404,192.63,71.857 +365405,197.86,73.03 +365406,195.6,72.618 +365407,193.42,72.218 +365408,191.33,71.829 +365409,196.52,73.101 +365410,194.27,72.656 +365411,192.11,72.223 +365412,190.03,71.801 +365413,195.18,73.172 +365414,192.94,72.694 +365415,190.8,72.228 +365416,188.73,71.773 +365417,193.83,73.242 +365418,191.62,72.732 +365419,189.49,72.234 +365420,187.44,71.746 +365421,192.49,73.312 +365422,190.29,72.77 +365423,188.18,72.239 +365424,186.14,71.719 +365425,191.14,73.381 +365426,188.96,72.808 +365427,186.87,72.245 +365428,184.85,71.693 +365429,189.79,73.45 +365430,187.63,72.845 +365431,185.56,72.251 +365432,183.56,71.667 +365433,188.43,73.518 +365434,186.3,72.883 +365435,184.25,72.257 +365436,182.27,71.641 +365437,187.08,73.586 +365438,184.97,72.92 +365439,182.95,72.263 +365440,180.99,71.616 +365441,185.73,73.654 +365442,183.64,72.957 +365443,181.64,72.27 +365444,179.7,71.592 +365445,184.37,73.72 +365446,182.31,72.994 +365447,180.33,72.276 +365448,178.42,71.568 +365449,183.01,73.786 +365450,180.98,73.03 +365451,179.02,72.283 +365452,177.13,71.545 +365453,181.65,73.852 +365454,179.65,73.067 +365455,177.72,72.29 +365456,175.85,71.522 +365457,180.29,73.917 +365458,178.31,73.103 +365459,176.41,72.297 +365460,174.57,71.5 +365461,178.93,73.981 +365462,176.98,73.139 +365463,175.11,72.304 +365464,173.3,71.478 +365465,177.56,74.045 +365466,175.65,73.175 +365467,173.8,72.312 +365468,172.02,71.457 +365469,176.2,74.107 +365470,174.31,73.21 +365471,172.5,72.32 +365472,170.74,71.437 +365473,174.83,74.17 +365474,172.98,73.245 +365475,171.2,72.328 +365476,169.47,71.417 +365477,173.46,74.231 +365478,171.64,73.281 +365479,169.89,72.336 +365480,168.2,71.399 +365481,172.09,74.292 +365482,170.31,73.315 +365483,168.59,72.345 +365484,166.92,71.381 +365485,170.72,74.351 +365486,168.97,73.35 +365487,167.29,72.354 +365488,165.65,71.364 +365489,169.35,74.41 +365490,167.64,73.384 +365491,165.99,72.363 +365492,164.38,71.347 +365493,167.98,74.469 +365494,166.3,73.418 +365495,164.68,72.372 +365496,163.12,71.332 +365497,166.6,74.526 +365498,164.96,73.452 +365499,163.38,72.382 +365500,161.85,71.317 +365501,165.23,74.582 +365502,163.63,73.485 +365503,162.08,72.392 +365504,160.59,71.303 +365505,163.85,74.638 +365506,162.29,73.519 +365507,160.78,72.402 +365508,159.32,71.29 +365509,162.47,74.693 +365510,160.95,73.551 +365511,159.48,72.413 +365512,158.06,71.278 +365513,161.09,74.747 +365514,159.61,73.584 +365515,158.18,72.424 +365516,156.8,71.267 +365517,159.71,74.799 +365518,158.27,73.616 +365519,156.88,72.435 +365520,155.54,71.256 +365521,158.33,74.851 +365522,156.93,73.648 +365523,155.58,72.446 +365524,154.28,71.247 +365525,156.95,74.902 +365526,155.59,73.68 +365527,154.28,72.458 +365528,153.02,71.239 +365529,155.56,74.952 +365530,154.25,73.711 +365531,152.99,72.47 +365532,151.76,71.231 +365533,154.18,75.001 +365534,152.91,73.742 +365535,151.69,72.483 +365536,150.5,71.225 +365537,152.8,75.049 +365538,151.57,73.773 +365539,150.39,72.496 +365540,149.25,71.22 +365541,151.41,75.096 +365542,150.23,73.803 +365543,149.09,72.509 +365544,147.99,71.216 +365545,150.02,75.142 +365546,148.89,73.833 +365547,147.79,72.523 +365548,146.74,71.212 +365549,148.64,75.187 +365550,147.55,73.862 +365551,146.5,72.537 +365552,145.48,71.21 +365553,147.25,75.231 +365554,146.21,73.892 +365555,145.2,72.551 +365556,144.23,71.209 +365557,145.86,75.273 +365558,144.86,73.92 +365559,143.9,72.565 +365560,142.98,71.209 +365561,144.47,75.315 +365562,143.52,73.949 +365563,142.61,72.58 +365564,141.73,71.211 +365565,143.08,75.356 +365566,142.18,73.977 +365567,141.31,72.596 +365568,140.48,71.213 +365569,141.69,75.395 +365570,140.84,74.005 +365571,140.02,72.612 +365572,139.23,71.216 +365573,140.3,75.433 +365574,139.49,74.032 +365575,138.72,72.628 +365576,137.98,71.221 +365577,138.91,75.471 +365578,138.15,74.059 +365579,137.42,72.644 +365580,136.73,71.227 +365581,137.52,75.507 +365582,136.81,74.086 +365583,136.13,72.661 +365584,135.48,71.233 +365585,136.12,75.542 +365586,135.46,74.112 +365587,134.83,72.678 +365588,134.24,71.241 +365589,134.73,75.576 +365590,134.12,74.138 +365591,133.54,72.696 +365592,132.99,71.251 +365593,133.34,75.608 +365594,132.77,74.164 +365595,132.24,72.714 +365596,131.74,71.261 +365597,131.95,75.64 +365598,131.43,74.189 +365599,130.95,72.733 +365600,130.5,71.273 +365601,130.55,75.67 +365602,130.09,74.214 +365603,129.65,72.752 +365604,129.25,71.285 +365605,129.16,75.7 +365606,128.74,74.238 +365607,128.36,72.771 +365608,128.01,71.299 +365609,127.76,75.728 +365610,127.4,74.262 +365611,127.06,72.791 +365612,126.76,71.315 +365613,126.37,75.755 +365614,126.05,74.286 +365615,125.77,72.811 +365616,125.52,71.331 +365617,124.97,75.781 +365618,124.71,74.309 +365619,124.47,72.831 +365620,124.27,71.349 +365621,123.58,75.805 +365622,123.36,74.332 +365623,123.18,72.852 +365624,123.03,71.368 +365625,122.19,75.829 +365626,122.02,74.354 +365627,121.89,72.873 +365628,121.78,71.388 +365629,120.79,75.851 +365630,120.67,74.376 +365631,120.59,72.895 +365632,120.54,71.409 +365633,119.4,75.872 +365634,119.33,74.398 +365635,119.3,72.917 +365636,119.29,71.432 +365637,118,75.892 +365638,117.99,74.419 +365639,118,72.94 +365640,118.05,71.455 +365641,116.61,75.911 +365642,116.64,74.44 +365643,116.71,72.962 +365644,116.81,71.48 +365645,115.21,75.928 +365646,115.3,74.46 +365647,115.41,72.986 +365648,115.56,71.506 +365649,113.82,75.945 +365650,113.95,74.48 +365651,114.12,73.009 +365652,114.32,71.534 +365653,112.43,75.96 +365654,112.61,74.5 +365655,112.82,73.034 +365656,113.07,71.562 +365657,111.03,75.974 +365658,111.26,74.519 +365659,111.53,73.058 +365660,111.83,71.592 +365661,109.64,75.987 +365662,109.92,74.538 +365663,110.23,73.083 +365664,110.59,71.623 +365665,108.25,75.999 +365666,108.57,74.557 +365667,108.94,73.108 +365668,109.34,71.656 +365669,106.85,76.009 +365670,107.23,74.575 +365671,107.64,73.134 +365672,108.1,71.689 +365673,105.46,76.019 +365674,105.89,74.592 +365675,106.35,73.16 +365676,106.85,71.724 +365677,104.07,76.027 +365678,104.54,74.61 +365679,105.05,73.187 +365680,105.6,71.76 +365681,102.68,76.034 +365682,103.2,74.627 +365683,103.76,73.214 +365684,104.36,71.797 +365685,101.29,76.041 +365686,101.85,74.643 +365687,102.46,73.241 +365688,103.11,71.835 +365689,99.896,76.046 +365690,100.51,74.66 +365691,101.17,73.269 +365692,101.86,71.874 +365693,98.506,76.049 +365694,99.166,74.675 +365695,99.869,73.297 +365696,100.62,71.915 +365697,97.116,76.052 +365698,97.823,74.691 +365699,98.573,73.325 +365700,99.368,71.956 +365701,95.728,76.054 +365702,96.48,74.706 +365703,97.276,73.354 +365704,98.119,71.999 +365705,94.34,76.055 +365706,95.137,74.721 +365707,95.98,73.383 +365708,96.87,72.043 +365709,92.952,76.054 +365710,93.794,74.735 +365711,94.683,73.413 +365712,95.62,72.088 +365713,91.566,76.053 +365714,92.452,74.749 +365715,93.385,73.442 +365716,94.369,72.134 +365717,90.18,76.05 +365718,91.11,74.763 +365719,92.088,73.473 +365720,93.117,72.181 +365721,88.795,76.047 +365722,89.768,74.776 +365723,90.79,73.503 +365724,91.865,72.229 +365725,87.41,76.042 +365726,88.426,74.79 +365727,89.492,73.534 +365728,90.611,72.279 +365729,86.027,76.037 +365730,87.084,74.802 +365731,88.193,73.566 +365732,89.357,72.329 +365733,84.644,76.03 +365734,85.743,74.815 +365735,86.895,73.597 +365736,88.102,72.38 +365737,83.263,76.023 +365738,84.402,74.827 +365739,85.596,73.629 +365740,86.847,72.433 +365741,81.882,76.015 +365742,83.062,74.838 +365743,84.296,73.662 +365744,85.59,72.486 +365745,80.502,76.005 +365746,81.721,74.85 +365747,82.997,73.694 +365748,84.332,72.54 +365749,79.123,75.995 +365750,80.381,74.861 +365751,81.697,73.727 +365752,83.073,72.595 +365753,77.746,75.984 +365754,79.042,74.872 +365755,80.396,73.76 +365756,81.813,72.652 +365757,76.369,75.972 +365758,77.702,74.882 +365759,79.095,73.794 +365760,80.552,72.709 +365761,74.993,75.959 +365762,76.363,74.893 +365763,77.794,73.828 +365764,79.29,72.767 +365765,73.619,75.945 +365766,75.025,74.903 +365767,76.493,73.862 +365768,78.027,72.826 +365769,72.245,75.93 +365770,73.686,74.912 +365771,75.191,73.897 +365772,76.763,72.885 +365773,70.873,75.915 +365774,72.349,74.922 +365775,73.888,73.931 +365776,75.497,72.946 +365777,69.502,75.899 +365778,71.011,74.931 +365779,72.585,73.966 +365780,74.23,73.007 +365781,68.132,75.882 +365782,69.674,74.94 +365783,71.282,74.002 +365784,72.962,73.07 +365785,66.763,75.864 +365786,68.337,74.948 +365787,69.978,74.037 +365788,71.692,73.132 +365789,65.395,75.845 +365790,67.001,74.957 +365791,68.674,74.073 +365792,70.422,73.196 +365793,64.029,75.826 +365794,65.665,74.965 +365795,67.37,74.109 +365796,69.15,73.261 +365797,62.664,75.806 +365798,64.329,74.973 +365799,66.065,74.145 +365800,67.876,73.326 +365801,61.3,75.786 +365802,62.994,74.981 +365803,64.759,74.182 +365804,66.601,73.392 +365805,59.938,75.764 +365806,61.66,74.988 +365807,63.453,74.219 +365808,65.325,73.458 +365809,58.577,75.743 +365810,60.325,74.995 +365811,62.147,74.255 +365812,64.047,73.525 +365813,57.217,75.72 +365814,58.992,75.003 +365815,60.84,74.293 +365816,62.768,73.593 +365817,55.859,75.697 +365818,57.658,75.009 +365819,59.532,74.33 +365820,61.487,73.661 +365821,54.502,75.673 +365822,56.326,75.016 +365823,58.224,74.368 +365824,60.205,73.73 +365825,53.146,75.649 +365826,54.993,75.023 +365827,56.916,74.405 +365828,58.922,73.799 +365829,51.792,75.625 +365830,53.661,75.029 +365831,55.607,74.443 +365832,57.636,73.869 +365833,50.44,75.6 +365834,52.33,75.035 +365835,54.297,74.481 +365836,56.349,73.939 +365837,49.088,75.574 +365838,50.999,75.041 +365839,52.987,74.519 +365840,55.061,74.01 +365841,47.739,75.548 +365842,49.668,75.047 +365843,51.676,74.558 +365844,53.771,74.081 +365845,46.39,75.521 +365846,48.338,75.053 +365847,50.365,74.596 +365848,52.479,74.153 +365849,45.044,75.495 +365850,47.009,75.059 +365851,49.053,74.635 +365852,51.186,74.225 +365853,43.698,75.467 +365854,45.68,75.065 +365855,47.741,74.674 +365856,49.891,74.297 +365857,42.355,75.44 +365858,44.351,75.07 +365859,46.428,74.713 +365860,48.595,74.37 +365861,41.012,75.412 +365862,43.023,75.075 +365863,45.115,74.751 +365864,47.296,74.443 +365865,39.672,75.384 +365866,41.696,75.081 +365867,43.801,74.791 +365868,45.996,74.516 +365869,38.332,75.356 +365870,40.369,75.086 +365871,42.486,74.83 +365872,44.695,74.589 +365873,36.995,75.327 +365874,39.043,75.091 +365875,41.171,74.869 +365876,43.391,74.663 +365877,35.659,75.298 +365878,37.717,75.096 +365879,39.856,74.908 +365880,42.086,74.737 +365881,34.324,75.269 +365882,36.391,75.101 +365883,38.54,74.948 +365884,40.78,74.811 +365885,32.991,75.24 +365886,35.066,75.106 +365887,37.223,74.987 +365888,39.471,74.885 +365889,31.66,75.211 +365890,33.742,75.111 +365891,35.905,75.026 +365892,38.161,74.959 +365893,30.33,75.182 +365894,32.418,75.116 +365895,34.587,75.066 +365896,36.849,75.033 +365897,29.002,75.152 +365898,31.095,75.121 +365899,33.269,75.105 +365900,35.535,75.107 +365901,27.675,75.123 +365902,29.772,75.126 +365903,31.95,75.145 +365904,34.22,75.181 +365905,26.35,75.093 +365906,28.45,75.131 +365907,30.63,75.184 +365908,32.902,75.256 +365909,25.027,75.064 +365910,27.128,75.136 +365911,29.31,75.224 +365912,31.583,75.33 +365913,23.705,75.035 +365914,25.807,75.141 +365915,27.989,75.263 +365916,30.263,75.404 +365917,22.385,75.005 +365918,24.486,75.146 +365919,26.667,75.303 +365920,28.94,75.478 +365921,21.066,74.976 +365922,23.166,75.151 +365923,25.345,75.342 +365924,27.616,75.552 +365925,19.749,74.947 +365926,21.847,75.156 +365927,24.023,75.381 +365928,26.29,75.625 +365929,18.434,74.918 +365930,20.527,75.161 +365931,22.7,75.421 +365932,24.962,75.699 +365933,17.12,74.889 +365934,19.209,75.166 +365935,21.376,75.46 +365936,23.633,75.772 +365937,15.808,74.861 +365938,17.891,75.172 +365939,20.052,75.499 +365940,22.302,75.845 +365941,14.497,74.833 +365942,16.573,75.177 +365943,18.727,75.538 +365944,20.969,75.918 +365945,13.188,74.805 +365946,15.256,75.183 +365947,17.401,75.577 +365948,19.634,75.99 +365949,11.88,74.777 +365950,13.94,75.188 +365951,16.075,75.616 +365952,18.298,76.063 +365953,10.574,74.749 +365954,12.624,75.194 +365955,14.748,75.655 +365956,16.96,76.134 +365957,9.27,74.722 +365958,11.308,75.2 +365959,13.421,75.694 +365960,15.621,76.206 +365961,7.9671,74.696 +365962,9.9934,75.206 +365963,12.094,75.732 +365964,14.279,76.277 +365965,6.6657,74.669 +365966,8.679,75.212 +365967,10.765,75.771 +365968,12.936,76.347 +365969,5.3658,74.643 +365970,7.3651,75.218 +365971,9.4364,75.809 +365972,11.592,76.417 +365973,4.0675,74.618 +365974,6.0516,75.224 +365975,8.107,75.847 +365976,10.245,76.487 +365977,2.7707,74.593 +365978,4.7387,75.231 +365979,6.777,75.885 +365980,8.8974,76.556 +365981,1.4754,74.569 +365982,3.4262,75.238 +365983,5.4466,75.923 +365984,7.548,76.625 +365985,0.1815,74.545 +365986,2.1142,75.245 +365987,4.1155,75.96 +365988,6.1969,76.693 +365989,358.89,74.521 +365990,0.80271,75.252 +365991,2.784,75.998 +365992,4.8442,76.76 +365993,357.6,74.498 +365994,359.49,75.259 +365995,1.4519,76.035 +365996,3.4901,76.827 +365997,356.31,74.476 +365998,358.18,75.267 +365999,0.11936,76.072 +366000,2.1344,76.893 +366001,355.02,74.455 +366002,356.87,75.275 +366003,358.79,76.109 +366004,0.77713,76.959 +366005,353.73,74.434 +366006,355.56,75.283 +366007,357.45,76.146 +366008,359.42,77.024 +366009,352.45,74.414 +366010,354.25,75.291 +366011,356.12,76.182 +366012,358.06,77.088 +366013,351.16,74.394 +366014,352.94,75.299 +366015,354.78,76.218 +366016,356.7,77.151 +366017,349.88,74.375 +366018,351.64,75.308 +366019,353.45,76.254 +366020,355.33,77.214 +366021,348.6,74.357 +366022,350.33,75.317 +366023,352.11,76.29 +366024,353.97,77.276 +366025,347.32,74.34 +366026,349.02,75.326 +366027,350.78,76.325 +366028,352.6,77.337 +366029,346.04,74.323 +366030,347.71,75.336 +366031,349.44,76.36 +366032,351.24,77.398 +366033,344.76,74.308 +366034,346.41,75.345 +366035,348.1,76.395 +366036,349.87,77.457 +366037,343.49,74.293 +366038,345.1,75.356 +366039,346.77,76.43 +366040,348.5,77.516 +366041,342.21,74.279 +366042,343.79,75.366 +366043,345.43,76.464 +366044,347.13,77.574 +366045,340.94,74.266 +366046,342.49,75.377 +366047,344.09,76.498 +366048,345.75,77.631 +366049,339.67,74.253 +366050,341.18,75.387 +366051,342.75,76.532 +366052,344.38,77.687 +366053,338.4,74.242 +366054,339.88,75.399 +366055,341.41,76.565 +366056,343.01,77.742 +366057,337.13,74.232 +366058,338.57,75.41 +366059,340.07,76.599 +366060,341.63,77.797 +366061,335.86,74.222 +366062,337.27,75.422 +366063,338.73,76.632 +366064,340.25,77.85 +366065,334.59,74.214 +366066,335.97,75.434 +366067,337.39,76.664 +366068,338.88,77.902 +366069,333.32,74.206 +366070,334.66,75.447 +366071,336.05,76.696 +366072,337.5,77.954 +366073,332.06,74.2 +366074,333.36,75.46 +366075,334.71,76.728 +366076,336.12,78.004 +366077,330.79,74.194 +366078,332.06,75.473 +366079,333.37,76.76 +366080,334.74,78.054 +366081,329.53,74.19 +366082,330.76,75.487 +366083,332.03,76.791 +366084,333.35,78.102 +366085,328.26,74.186 +366086,329.45,75.501 +366087,330.69,76.822 +366088,331.97,78.149 +366089,327,74.184 +366090,328.15,75.515 +366091,329.34,76.852 +366092,330.59,78.195 +366093,325.74,74.183 +366094,326.85,75.53 +366095,328,76.882 +366096,329.2,78.241 +366097,324.48,74.183 +366098,325.55,75.545 +366099,326.66,76.912 +366100,327.82,78.285 +366101,323.22,74.184 +366102,324.25,75.56 +366103,325.32,76.942 +366104,326.43,78.328 +366105,321.96,74.186 +366106,322.95,75.576 +366107,323.97,76.971 +366108,325.04,78.37 +366109,320.7,74.189 +366110,321.65,75.592 +366111,322.63,77 +366112,323.65,78.411 +366113,319.45,74.193 +366114,320.35,75.609 +366115,321.28,77.028 +366116,322.27,78.451 +366117,318.19,74.199 +366118,319.05,75.626 +366119,319.94,77.056 +366120,320.88,78.489 +366121,316.93,74.206 +366122,317.75,75.643 +366123,318.6,77.084 +366124,319.49,78.527 +366125,315.68,74.213 +366126,316.45,75.661 +366127,317.25,77.111 +366128,318.1,78.563 +366129,314.42,74.222 +366130,315.15,75.679 +366131,315.91,77.138 +366132,316.7,78.598 +366133,313.17,74.233 +366134,313.85,75.697 +366135,314.56,77.164 +366136,315.31,78.632 +366137,311.92,74.244 +366138,312.55,75.716 +366139,313.22,77.19 +366140,313.92,78.665 +366141,310.66,74.257 +366142,311.25,75.736 +366143,311.87,77.216 +366144,312.53,78.697 +366145,309.41,74.271 +366146,309.95,75.755 +366147,310.52,77.241 +366148,311.14,78.728 +366149,308.16,74.286 +366150,308.65,75.776 +366151,309.18,77.266 +366152,309.74,78.757 +366153,306.9,74.302 +366154,307.35,75.796 +366155,307.83,77.291 +366156,308.35,78.785 +366157,305.65,74.319 +366158,306.05,75.817 +366159,306.49,77.315 +366160,306.95,78.812 +366161,304.4,74.338 +366162,304.75,75.838 +366163,305.14,77.339 +366164,305.56,78.838 +366165,303.15,74.358 +366166,303.46,75.86 +366167,303.79,77.362 +366168,304.17,78.863 +366169,301.9,74.379 +366170,302.16,75.882 +366171,302.45,77.385 +366172,302.77,78.887 +366173,300.65,74.402 +366174,300.86,75.905 +366175,301.1,77.408 +366176,301.38,78.909 +366177,299.4,74.426 +366178,299.56,75.928 +366179,299.75,77.43 +366180,299.98,78.93 +366181,298.15,74.45 +366182,298.26,75.951 +366183,298.41,77.452 +366184,298.59,78.95 +366185,296.9,74.477 +366186,296.96,75.975 +366187,297.06,77.473 +366188,297.19,78.969 +366189,295.65,74.504 +366190,295.67,75.999 +366191,295.71,77.494 +366192,295.8,78.987 +366193,294.4,74.533 +366194,294.37,76.024 +366195,294.37,77.515 +366196,294.4,79.003 +366197,293.15,74.563 +366198,293.07,76.049 +366199,293.02,77.535 +366200,293.01,79.018 +366201,291.9,74.594 +366202,291.77,76.075 +366203,291.68,77.555 +366204,291.61,79.033 +366205,290.65,74.626 +366206,290.47,76.101 +366207,290.33,77.574 +366208,290.22,79.046 +366209,289.4,74.66 +366210,289.17,76.127 +366211,288.98,77.593 +366212,288.82,79.057 +366213,288.15,74.694 +366214,287.87,76.154 +366215,287.64,77.612 +366216,287.43,79.068 +366217,286.9,74.73 +366218,286.58,76.181 +366219,286.29,77.63 +366220,286.04,79.078 +366221,285.64,74.767 +366222,285.28,76.208 +366223,284.94,77.648 +366224,284.64,79.086 +366225,284.39,74.806 +366226,283.98,76.236 +366227,283.6,77.666 +366228,283.25,79.093 +366229,283.14,74.845 +366230,282.68,76.264 +366231,282.25,77.683 +366232,281.86,79.099 +366233,281.89,74.886 +366234,281.38,76.293 +366235,280.9,77.7 +366236,280.46,79.104 +366237,280.64,74.928 +366238,280.08,76.322 +366239,279.56,77.716 +366240,279.07,79.108 +366241,279.38,74.971 +366242,278.78,76.352 +366243,278.21,77.732 +366244,277.68,79.111 +366245,278.13,75.015 +366246,277.48,76.381 +366247,276.87,77.748 +366248,276.29,79.113 +366249,276.88,75.061 +366250,276.18,76.412 +366251,275.52,77.763 +366252,274.9,79.113 +366253,275.62,75.107 +366254,274.88,76.442 +366255,274.17,77.778 +366256,273.51,79.113 +366257,274.37,75.155 +366258,273.58,76.473 +366259,272.83,77.793 +366260,272.12,79.111 +366261,273.11,75.203 +366262,272.28,76.505 +366263,271.48,77.807 +366264,270.73,79.109 +366265,271.86,75.253 +366266,270.98,76.536 +366267,270.14,77.821 +366268,269.34,79.105 +366269,270.6,75.304 +366270,269.68,76.568 +366271,268.8,77.835 +366272,267.95,79.101 +366273,269.34,75.356 +366274,268.37,76.601 +366275,267.45,77.848 +366276,266.57,79.095 +366277,268.08,75.409 +366278,267.07,76.633 +366279,266.11,77.861 +366280,265.18,79.088 +366281,266.82,75.463 +366282,265.77,76.667 +366283,264.76,77.873 +366284,263.79,79.081 +366285,265.56,75.518 +366286,264.47,76.7 +366287,263.42,77.886 +366288,262.41,79.072 +366289,264.3,75.573 +366290,263.17,76.734 +366291,262.08,77.898 +366292,261.03,79.063 +366293,263.04,75.63 +366294,261.86,76.768 +366295,260.73,77.909 +366296,259.64,79.053 +366297,261.78,75.688 +366298,260.56,76.802 +366299,259.39,77.921 +366300,258.26,79.041 +366301,260.52,75.747 +366302,259.26,76.837 +366303,258.05,77.932 +366304,256.88,79.029 +366305,259.25,75.807 +366306,257.95,76.872 +366307,256.7,77.942 +366308,255.5,79.016 +366309,257.99,75.867 +366310,256.65,76.907 +366311,255.36,77.953 +366312,254.12,79.002 +366313,256.72,75.929 +366314,255.34,76.943 +366315,254.02,77.963 +366316,252.74,78.987 +366317,255.45,75.991 +366318,254.04,76.979 +366319,252.68,77.973 +366320,251.37,78.972 +366321,254.18,76.054 +366322,252.73,77.015 +366323,251.34,77.983 +366324,249.99,78.956 +366325,252.91,76.118 +366326,251.43,77.051 +366327,250,77.992 +366328,248.62,78.938 +366329,251.64,76.183 +366330,250.12,77.088 +366331,248.66,78.001 +366332,247.24,78.921 +366333,250.37,76.249 +366334,248.82,77.125 +366335,247.32,78.01 +366336,245.87,78.902 +366337,249.1,76.315 +366338,247.51,77.162 +366339,245.98,78.019 +366340,244.5,78.883 +366341,247.82,76.382 +366342,246.2,77.2 +366343,244.64,78.028 +366344,243.13,78.863 +366345,246.55,76.45 +366346,244.89,77.238 +366347,243.3,78.036 +366348,241.76,78.842 +366349,245.27,76.518 +366350,243.59,77.275 +366351,241.96,78.044 +366352,240.39,78.821 +366353,243.99,76.587 +366354,242.28,77.314 +366355,240.62,78.052 +366356,239.02,78.799 +366357,242.71,76.656 +366358,240.97,77.352 +366359,239.28,78.059 +366360,237.66,78.776 +366361,241.43,76.727 +366362,239.66,77.391 +366363,237.95,78.067 +366364,236.29,78.753 +366365,240.15,76.797 +366366,238.35,77.429 +366367,236.61,78.074 +366368,234.93,78.729 +366369,238.87,76.869 +366370,237.04,77.468 +366371,235.27,78.081 +366372,233.57,78.705 +366373,237.58,76.941 +366374,235.73,77.507 +366375,233.94,78.088 +366376,232.21,78.68 +366377,236.29,77.013 +366378,234.41,77.547 +366379,232.6,78.095 +366380,230.85,78.655 +366381,235.01,77.086 +366382,233.1,77.586 +366383,231.27,78.102 +366384,229.49,78.629 +366385,233.72,77.159 +366386,231.79,77.626 +366387,229.93,78.108 +366388,228.14,78.603 +366389,232.43,77.232 +366390,230.48,77.665 +366391,228.6,78.114 +366392,226.78,78.577 +366393,231.13,77.306 +366394,229.16,77.705 +366395,227.26,78.121 +366396,225.43,78.55 +366397,229.84,77.381 +366398,227.85,77.745 +366399,225.93,78.127 +366400,224.08,78.523 +366401,228.54,77.456 +366402,226.54,77.785 +366403,224.6,78.133 +366404,222.73,78.495 +366405,227.25,77.53 +366406,225.22,77.826 +366407,223.27,78.139 +366408,221.38,78.467 +366409,225.95,77.606 +366410,223.9,77.866 +366411,221.93,78.145 +366412,220.03,78.439 +366413,224.65,77.681 +366414,222.59,77.906 +366415,220.6,78.15 +366416,218.68,78.411 +366417,223.35,77.757 +366418,221.27,77.947 +366419,219.27,78.156 +366420,217.34,78.382 +366421,222.04,77.833 +366422,219.95,77.987 +366423,217.94,78.162 +366424,215.99,78.353 +366425,220.74,77.909 +366426,218.64,78.028 +366427,216.61,78.167 +366428,214.65,78.324 +366429,219.43,77.985 +366430,217.32,78.069 +366431,215.28,78.173 +366432,213.31,78.295 +366433,218.12,78.061 +366434,216,78.109 +366435,213.95,78.178 +366436,211.97,78.266 +366437,216.81,78.137 +366438,214.68,78.15 +366439,212.62,78.184 +366440,210.64,78.237 +366441,215.5,78.214 +366442,213.36,78.191 +366443,211.29,78.189 +366444,209.3,78.207 +366445,214.19,78.29 +366446,212.04,78.232 +366447,209.97,78.195 +366448,207.97,78.178 +366449,212.87,78.366 +366450,210.72,78.272 +366451,208.64,78.2 +366452,206.63,78.148 +366453,211.56,78.443 +366454,209.4,78.313 +366455,207.31,78.206 +366456,205.3,78.119 +366457,210.24,78.519 +366458,208.07,78.354 +366459,205.99,78.212 +366460,203.97,78.089 +366461,208.92,78.595 +366462,206.75,78.395 +366463,204.66,78.217 +366464,202.64,78.06 +366465,207.6,78.671 +366466,205.43,78.435 +366467,203.34,78.223 +366468,201.32,78.031 +366469,206.27,78.747 +366470,204.1,78.476 +366471,202.01,78.228 +366472,199.99,78.002 +366473,204.95,78.822 +366474,202.78,78.516 +366475,200.69,78.234 +366476,198.67,77.973 +366477,203.62,78.898 +366478,201.45,78.557 +366479,199.36,78.24 +366480,197.35,77.944 +366481,202.3,78.973 +366482,200.13,78.597 +366483,198.04,78.246 +366484,196.03,77.916 +366485,200.97,79.048 +366486,198.8,78.638 +366487,196.72,78.252 +366488,194.71,77.888 +366489,199.63,79.122 +366490,197.48,78.678 +366491,195.4,78.258 +366492,193.39,77.86 +366493,198.3,79.196 +366494,196.15,78.718 +366495,194.08,78.264 +366496,192.07,77.832 +366497,196.97,79.27 +366498,194.82,78.758 +366499,192.75,78.271 +366500,190.76,77.805 +366501,195.63,79.344 +366502,193.49,78.798 +366503,191.43,78.277 +366504,189.45,77.778 +366505,194.29,79.417 +366506,192.16,78.838 +366507,190.11,78.284 +366508,188.13,77.751 +366509,192.95,79.489 +366510,190.83,78.878 +366511,188.79,78.29 +366512,186.82,77.725 +366513,191.61,79.562 +366514,189.5,78.917 +366515,187.48,78.297 +366516,185.52,77.699 +366517,190.27,79.633 +366518,188.17,78.957 +366519,186.16,78.304 +366520,184.21,77.674 +366521,188.92,79.704 +366522,186.84,78.996 +366523,184.84,78.311 +366524,182.9,77.649 +366525,187.58,79.775 +366526,185.51,79.035 +366527,183.52,78.319 +366528,181.6,77.625 +366529,186.23,79.845 +366530,184.18,79.074 +366531,182.2,78.326 +366532,180.3,77.601 +366533,184.88,79.914 +366534,182.84,79.112 +366535,180.89,78.334 +366536,178.99,77.578 +366537,183.53,79.983 +366538,181.51,79.151 +366539,179.57,78.342 +366540,177.7,77.555 +366541,182.18,80.0512 +366542,180.18,79.189 +366543,178.25,78.35 +366544,176.4,77.533 +366545,180.82,80.1187 +366546,178.84,79.227 +366547,176.94,78.359 +366548,175.1,77.512 +366549,179.47,80.1855 +366550,177.51,79.265 +366551,175.62,78.367 +366552,173.8,77.491 +366553,178.11,80.2516 +366554,176.17,79.303 +366555,174.31,78.376 +366556,172.51,77.471 +366557,176.75,80.3169 +366558,174.84,79.34 +366559,173,78.385 +366560,171.22,77.452 +366561,175.39,80.3815 +366562,173.5,79.377 +366563,171.68,78.395 +366564,169.93,77.433 +366565,174.03,80.4453 +366566,172.16,79.414 +366567,170.37,78.404 +366568,168.63,77.415 +366569,172.67,80.5082 +366570,170.83,79.451 +366571,169.06,78.414 +366572,167.35,77.398 +366573,171.3,80.5704 +366574,169.49,79.487 +366575,167.74,78.425 +366576,166.06,77.382 +366577,169.94,80.6317 +366578,168.15,79.523 +366579,166.43,78.435 +366580,164.77,77.366 +366581,168.57,80.6922 +366582,166.81,79.559 +366583,165.12,78.446 +366584,163.49,77.352 +366585,167.2,80.7517 +366586,165.47,79.594 +366587,163.81,78.457 +366588,162.2,77.338 +366589,165.83,80.8104 +366590,164.13,79.629 +366591,162.5,78.468 +366592,160.92,77.325 +366593,164.46,80.8681 +366594,162.79,79.664 +366595,161.19,78.48 +366596,159.64,77.313 +366597,163.09,80.9249 +366598,161.45,79.699 +366599,159.88,78.492 +366600,158.36,77.302 +366601,161.72,80.9808 +366602,160.11,79.733 +366603,158.57,78.504 +366604,157.08,77.292 +366605,160.35,81.0356 +366606,158.77,79.767 +366607,157.26,78.517 +366608,155.8,77.283 +366609,158.97,81.0895 +366610,157.43,79.801 +366611,155.95,78.53 +366612,154.52,77.275 +366613,157.59,81.1424 +366614,156.09,79.834 +366615,154.64,78.543 +366616,153.25,77.268 +366617,156.22,81.1942 +366618,154.74,79.867 +366619,153.33,78.557 +366620,151.97,77.262 +366621,154.84,81.2451 +366622,153.4,79.9 +366623,152.02,78.571 +366624,150.7,77.257 +366625,153.46,81.2948 +366626,152.06,79.932 +366627,150.72,78.585 +366628,149.43,77.253 +366629,152.08,81.3435 +366630,150.71,79.964 +366631,149.41,78.6 +366632,148.15,77.25 +366633,150.69,81.3911 +366634,149.37,79.996 +366635,148.1,78.615 +366636,146.88,77.248 +366637,149.31,81.4376 +366638,148.03,80.027 +366639,146.8,78.63 +366640,145.61,77.247 +366641,147.93,81.4831 +366642,146.68,80.0578 +366643,145.49,78.646 +366644,144.34,77.248 +366645,146.54,81.5274 +366646,145.34,80.0884 +366647,144.18,78.662 +366648,143.07,77.249 +366649,145.16,81.5706 +366650,143.99,80.1185 +366651,142.88,78.679 +366652,141.81,77.252 +366653,143.77,81.6126 +366654,142.65,80.1483 +366655,141.57,78.696 +366656,140.54,77.256 +366657,142.38,81.6535 +366658,141.3,80.1777 +366659,140.27,78.713 +366660,139.27,77.261 +366661,141,81.6932 +366662,139.95,80.2067 +366663,138.96,78.731 +366664,138.01,77.267 +366665,139.61,81.7318 +366666,138.61,80.2353 +366667,137.65,78.749 +366668,136.74,77.274 +366669,138.22,81.7692 +366670,137.26,80.2635 +366671,136.35,78.768 +366672,135.48,77.283 +366673,136.83,81.8055 +366674,135.91,80.2914 +366675,135.04,78.787 +366676,134.22,77.292 +366677,135.44,81.8405 +366678,134.57,80.3188 +366679,133.74,78.806 +366680,132.95,77.303 +366681,134.05,81.8744 +366682,133.22,80.3459 +366683,132.44,78.826 +366684,131.69,77.315 +366685,132.66,81.9071 +366686,131.87,80.3725 +366687,131.13,78.846 +366688,130.43,77.329 +366689,131.26,81.9385 +366690,130.52,80.3988 +366691,129.83,78.867 +366692,129.17,77.343 +366693,129.87,81.9688 +366694,129.18,80.4247 +366695,128.52,78.888 +366696,127.91,77.359 +366697,128.48,81.9978 +366698,127.83,80.4501 +366699,127.22,78.909 +366700,126.65,77.376 +366701,127.08,82.0257 +366702,126.48,80.4752 +366703,125.92,78.931 +366704,125.39,77.394 +366705,125.69,82.0523 +366706,125.13,80.4999 +366707,124.61,78.954 +366708,124.13,77.414 +366709,124.3,82.0777 +366710,123.78,80.5241 +366711,123.31,78.976 +366712,122.87,77.435 +366713,122.9,82.1019 +366714,122.44,80.548 +366715,122.01,78.999 +366716,121.61,77.457 +366717,121.51,82.1249 +366718,121.09,80.5714 +366719,120.7,79.023 +366720,120.35,77.48 +366721,120.11,82.1467 +366722,119.74,80.5944 +366723,119.4,79.047 +366724,119.09,77.505 +366725,118.72,82.1673 +366726,118.39,80.6171 +366727,118.1,79.071 +366728,117.84,77.531 +366729,117.32,82.1866 +366730,117.04,80.6393 +366731,116.79,79.096 +366732,116.58,77.558 +366733,115.93,82.2047 +366734,115.69,80.6611 +366735,115.49,79.121 +366736,115.32,77.586 +366737,114.53,82.2217 +366738,114.34,80.6825 +366739,114.19,79.147 +366740,114.06,77.616 +366741,113.13,82.2374 +366742,112.99,80.7036 +366743,112.88,79.173 +366744,112.81,77.647 +366745,111.74,82.2519 +366746,111.64,80.7242 +366747,111.58,79.199 +366748,111.55,77.679 +366749,110.34,82.2652 +366750,110.29,80.7444 +366751,110.28,79.226 +366752,110.29,77.712 +366753,108.95,82.2774 +366754,108.94,80.7642 +366755,108.97,79.254 +366756,109.03,77.747 +366757,107.55,82.2883 +366758,107.59,80.7836 +366759,107.67,79.281 +366760,107.78,77.783 +366761,106.16,82.2981 +366762,106.25,80.8026 +366763,106.37,79.309 +366764,106.52,77.82 +366765,104.76,82.3067 +366766,104.9,80.8213 +366767,105.06,79.338 +366768,105.26,77.858 +366769,103.37,82.3141 +366770,103.55,80.8395 +366771,103.76,79.367 +366772,104,77.898 +366773,101.97,82.3204 +366774,102.2,80.8574 +366775,102.46,79.396 +366776,102.74,77.939 +366777,100.58,82.3255 +366778,100.85,80.8749 +366779,101.15,79.426 +366780,101.49,77.981 +366781,99.182,82.3295 +366782,99.499,80.8919 +366783,99.848,79.456 +366784,100.23,78.024 +366785,97.787,82.3324 +366786,98.15,80.9087 +366787,98.543,79.487 +366788,98.968,78.068 +366789,96.394,82.3341 +366790,96.801,80.925 +366791,97.239,79.518 +366792,97.709,78.114 +366793,95,82.3348 +366794,95.452,80.941 +366795,95.935,79.549 +366796,96.449,78.16 +366797,93.608,82.3343 +366798,94.103,80.9566 +366799,94.63,79.581 +366800,95.189,78.208 +366801,92.215,82.3328 +366802,92.755,80.9718 +366803,93.326,79.613 +366804,93.928,78.257 +366805,90.823,82.3302 +366806,91.406,80.9867 +366807,92.021,79.645 +366808,92.667,78.307 +366809,89.432,82.3265 +366810,90.058,81.0012 +366811,90.716,79.678 +366812,91.406,78.359 +366813,88.041,82.3218 +366814,88.71,81.0154 +366815,89.411,79.711 +366816,90.144,78.411 +366817,86.651,82.3161 +366818,87.362,81.0292 +366819,88.105,79.745 +366820,88.881,78.465 +366821,85.261,82.3093 +366822,86.014,81.0427 +366823,86.799,79.779 +366824,87.618,78.519 +366825,83.872,82.3016 +366826,84.666,81.0558 +366827,85.493,79.813 +366828,86.354,78.575 +366829,82.484,82.2928 +366830,83.319,81.0687 +366831,84.187,79.848 +366832,85.089,78.631 +366833,81.096,82.2832 +366834,81.972,81.0812 +366835,82.881,79.882 +366836,83.824,78.689 +366837,79.709,82.2725 +366838,80.625,81.0934 +366839,81.574,79.918 +366840,82.558,78.748 +366841,78.323,82.2609 +366842,79.278,81.1052 +366843,80.267,79.953 +366844,81.291,78.807 +366845,76.938,82.2484 +366846,77.932,81.1168 +366847,78.96,79.989 +366848,80.023,78.868 +366849,75.554,82.2351 +366850,76.585,81.1281 +366851,77.652,80.0255 +366852,78.755,78.929 +366853,74.17,82.2208 +366854,75.239,81.139 +366855,76.344,80.062 +366856,77.485,78.992 +366857,72.787,82.2057 +366858,73.893,81.1497 +366859,75.036,80.0989 +366860,76.215,79.055 +366861,71.405,82.1897 +366862,72.548,81.1601 +366863,73.727,80.136 +366864,74.944,79.119 +366865,70.025,82.173 +366866,71.203,81.1703 +366867,72.418,80.1735 +366868,73.672,79.185 +366869,68.645,82.1554 +366870,69.858,81.1801 +366871,71.109,80.2112 +366872,72.399,79.251 +366873,67.266,82.137 +366874,68.513,81.1897 +366875,69.799,80.2491 +366876,71.125,79.317 +366877,65.888,82.1179 +366878,67.169,81.1991 +366879,68.489,80.2874 +366880,69.85,79.385 +366881,64.511,82.0981 +366882,65.825,81.2082 +366883,67.179,80.3259 +366884,68.573,79.453 +366885,63.135,82.0775 +366886,64.481,81.2171 +366887,65.868,80.3646 +366888,67.296,79.522 +366889,61.76,82.0563 +366890,63.138,81.2257 +366891,64.557,80.4036 +366892,66.018,79.592 +366893,60.386,82.0344 +366894,61.795,81.2341 +366895,63.245,80.4428 +366896,64.738,79.663 +366897,59.014,82.0119 +366898,60.452,81.2423 +366899,61.933,80.4823 +366900,63.458,79.734 +366901,57.642,81.9887 +366902,59.11,81.2503 +366903,60.621,80.522 +366904,62.176,79.806 +366905,56.272,81.9649 +366906,57.768,81.2581 +366907,59.308,80.5618 +366908,60.893,79.878 +366909,54.903,81.9406 +366910,56.427,81.2658 +366911,57.994,80.6019 +366912,59.608,79.951 +366913,53.535,81.9157 +366914,55.086,81.2732 +366915,56.681,80.6422 +366916,58.323,80.0249 +366917,52.169,81.8903 +366918,53.745,81.2804 +366919,55.367,80.6826 +366920,57.036,80.0991 +366921,50.803,81.8644 +366922,52.404,81.2875 +366923,54.052,80.7232 +366924,55.748,80.1738 +366925,49.439,81.838 +366926,51.064,81.2945 +366927,52.737,80.764 +366928,54.459,80.249 +366929,48.076,81.8112 +366930,49.725,81.3013 +366931,51.421,80.805 +366932,53.168,80.3246 +366933,46.714,81.784 +366934,48.386,81.3079 +366935,50.105,80.846 +366936,51.876,80.4007 +366937,45.354,81.7563 +366938,47.047,81.3145 +366939,48.789,80.8873 +366940,50.582,80.4772 +366941,43.995,81.7283 +366942,45.709,81.3209 +366943,47.472,80.9286 +366944,49.287,80.554 +366945,42.637,81.7 +366946,44.371,81.3272 +366947,46.154,80.9701 +366948,47.991,80.6312 +366949,41.281,81.6713 +366950,43.033,81.3334 +366951,44.836,81.0117 +366952,46.693,80.7088 +366953,39.926,81.6424 +366954,41.696,81.3395 +366955,43.518,81.0534 +366956,45.394,80.7866 +366957,38.573,81.6132 +366958,40.36,81.3455 +366959,42.199,81.0951 +366960,44.094,80.8647 +366961,37.22,81.5837 +366962,39.023,81.3514 +366963,40.879,81.137 +366964,42.792,80.943 +366965,35.869,81.5541 +366966,37.688,81.3573 +366967,39.559,81.1789 +366968,41.488,81.0215 +366969,34.52,81.5243 +366970,36.352,81.3631 +366971,38.239,81.2209 +366972,40.183,81.1002 +366973,33.172,81.4943 +366974,35.018,81.3689 +366975,36.918,81.2629 +366976,38.877,81.179 +366977,31.825,81.4642 +366978,33.683,81.3747 +366979,35.596,81.305 +366980,37.569,81.2579 +366981,30.48,81.434 +366982,32.349,81.3804 +366983,34.274,81.3471 +366984,36.259,81.337 +366985,29.136,81.4037 +366986,31.016,81.3861 +366987,32.951,81.3892 +366988,34.948,81.416 +366989,27.794,81.3734 +366990,29.683,81.3918 +366991,31.628,81.4314 +366992,33.635,81.4951 +366993,26.453,81.3431 +366994,28.35,81.3974 +366995,30.304,81.4735 +366996,32.321,81.5742 +366997,25.114,81.3128 +366998,27.018,81.4031 +366999,28.98,81.5157 +367000,31.005,81.6533 +367001,23.776,81.2826 +367002,25.687,81.4089 +367003,27.655,81.5578 +367004,29.688,81.7322 +367005,22.439,81.2524 +367006,24.356,81.4146 +367007,26.33,81.5999 +367008,28.369,81.8111 +367009,21.104,81.2223 +367010,23.025,81.4204 +367011,25.004,81.642 +367012,27.049,81.8899 +367013,19.771,81.1923 +367014,21.695,81.4262 +367015,23.678,81.684 +367016,25.727,81.9685 +367017,18.438,81.1625 +367018,20.365,81.4321 +367019,22.351,81.7259 +367020,24.403,82.0469 +367021,17.108,81.1329 +367022,19.036,81.4381 +367023,21.023,81.7678 +367024,23.078,82.1251 +367025,15.779,81.1035 +367026,17.707,81.4441 +367027,19.695,81.8096 +367028,21.751,82.203 +367029,14.451,81.0744 +367030,16.379,81.4503 +367031,18.367,81.8514 +367032,20.423,82.2807 +367033,13.124,81.0455 +367034,15.051,81.4565 +367035,17.038,81.893 +367036,19.093,82.3581 +367037,11.8,81.0169 +367038,13.723,81.4628 +367039,15.708,81.9345 +367040,17.761,82.4351 +367041,10.476,80.9886 +367042,12.397,81.4693 +367043,14.378,81.976 +367044,16.428,82.5118 +367045,9.1541,80.9607 +367046,11.07,81.4758 +367047,13.047,82.0173 +367048,15.093,82.5881 +367049,7.8336,80.9332 +367050,9.7441,81.4825 +367051,11.716,82.0584 +367052,13.757,82.6639 +367053,6.5145,80.906 +367054,8.4186,81.4894 +367055,10.384,82.0994 +367056,12.419,82.7393 +367057,5.1969,80.8793 +367058,7.0936,81.4964 +367059,9.0515,82.1403 +367060,11.079,82.8143 +367061,3.8806,80.8531 +367062,5.769,81.5035 +367063,7.7186,82.181 +367064,9.7384,82.8887 +367065,2.5658,80.8273 +367066,4.4449,81.5109 +367067,6.3851,82.2216 +367068,8.3958,82.9626 +367069,1.2524,80.8021 +367070,3.1212,81.5184 +367071,5.0512,82.2619 +367072,7.0517,83.036 +367073,359.94,80.7774 +367074,1.798,81.5261 +367075,3.7167,82.3021 +367076,5.706,83.1088 +367077,358.63,80.7533 +367078,0.47519,81.5339 +367079,2.3817,82.3421 +367080,4.3588,83.1809 +367081,357.32,80.7297 +367082,359.15,81.542 +367083,1.0461,82.3819 +367084,3.0101,83.2524 +367085,356.01,80.7068 +367086,357.83,81.5503 +367087,359.71,82.4214 +367088,1.6599,83.3233 +367089,354.71,80.6845 +367090,356.51,81.5588 +367091,358.37,82.4608 +367092,0.30817,83.3935 +367093,353.4,80.6629 +367094,355.19,81.5676 +367095,357.04,82.4999 +367096,358.95,83.4629 +367097,352.1,80.6419 +367098,353.87,81.5766 +367099,355.7,82.5388 +367100,357.6,83.5317 +367101,350.79,80.6217 +367102,352.55,81.5858 +367103,354.36,82.5774 +367104,356.24,83.5996 +367105,349.49,80.6022 +367106,351.23,81.5953 +367107,353.02,82.6158 +367108,354.89,83.6668 +367109,348.19,80.5835 +367110,349.91,81.605 +367111,351.68,82.6539 +367112,353.53,83.7332 +367113,346.89,80.5656 +367114,348.59,81.615 +367115,350.34,82.6917 +367116,352.17,83.7987 +367117,345.6,80.5485 +367118,347.27,81.6253 +367119,349,82.7293 +367120,350.81,83.8634 +367121,344.3,80.5322 +367122,345.95,81.6359 +367123,347.66,82.7666 +367124,349.44,83.9272 +367125,343.01,80.5167 +367126,344.64,81.6468 +367127,346.32,82.8036 +367128,348.08,83.9901 +367129,341.71,80.5022 +367130,343.32,81.6579 +367131,344.98,82.8403 +367132,346.71,84.0521 +367133,340.42,80.4885 +367134,342,81.6694 +367135,343.64,82.8767 +367136,345.34,84.1132 +367137,339.13,80.4757 +367138,340.68,81.6812 +367139,342.3,82.9127 +367140,343.98,84.1733 +367141,337.84,80.4639 +367142,339.37,81.6932 +367143,340.95,82.9485 +367144,342.61,84.2324 +367145,336.55,80.4531 +367146,338.05,81.7057 +367147,339.61,82.9839 +367148,341.24,84.2906 +367149,335.26,80.4432 +367150,336.74,81.7184 +367151,338.27,83.019 +367152,339.86,84.3477 +367153,333.97,80.4343 +367154,335.42,81.7315 +367155,336.92,83.0538 +367156,338.49,84.4038 +367157,332.69,80.4264 +367158,334.11,81.7449 +367159,335.58,83.0882 +367160,337.11,84.4588 +367161,331.4,80.4196 +367162,332.79,81.7587 +367163,334.23,83.1223 +367164,335.74,84.5128 +367165,330.12,80.4138 +367166,331.48,81.7728 +367167,332.89,83.156 +367168,334.36,84.5657 +367169,328.84,80.409 +367170,330.16,81.7873 +367171,331.54,83.1893 +367172,332.98,84.6175 +367173,327.55,80.4054 +367174,328.85,81.8021 +367175,330.2,83.2223 +367176,331.61,84.6682 +367177,326.27,80.4028 +367178,327.54,81.8173 +367179,328.85,83.2549 +367180,330.23,84.7178 +367181,324.99,80.4014 +367182,326.22,81.8329 +367183,327.5,83.2872 +367184,328.84,84.7662 +367185,323.71,80.4011 +367186,324.91,81.8489 +367187,326.16,83.319 +367188,327.46,84.8135 +367189,322.44,80.4019 +367190,323.6,81.8653 +367191,324.81,83.3505 +367192,326.08,84.8596 +367193,321.16,80.4039 +367194,322.29,81.882 +367195,323.46,83.3816 +367196,324.69,84.9045 +367197,319.88,80.407 +367198,320.97,81.8991 +367199,322.11,83.4123 +367200,323.31,84.9483 +367201,318.61,80.4114 +367202,319.66,81.9167 +367203,320.77,83.4426 +367204,321.92,84.9909 +367205,317.33,80.4169 +367206,318.35,81.9346 +367207,319.42,83.4725 +367208,320.54,85.0322 +367209,316.06,80.4236 +367210,317.04,81.9529 +367211,318.07,83.502 +367212,319.15,85.0724 +367213,314.78,80.4315 +367214,315.73,81.9717 +367215,316.72,83.5311 +367216,317.76,85.1113 +367217,313.51,80.4407 +367218,314.42,81.9908 +367219,315.37,83.5598 +367220,316.37,85.149 +367221,312.24,80.4511 +367222,313.11,82.0104 +367223,314.02,83.5881 +367224,314.98,85.1854 +367225,310.97,80.4627 +367226,311.8,82.0303 +367227,312.67,83.6159 +367228,313.59,85.2206 +367229,309.7,80.4756 +367230,310.49,82.0507 +367231,311.32,83.6434 +367232,312.2,85.2545 +367233,308.43,80.4898 +367234,309.18,82.0715 +367235,309.97,83.6704 +367236,310.81,85.2872 +367237,307.16,80.5052 +367238,307.87,82.0928 +367239,308.62,83.697 +367240,309.42,85.3187 +367241,305.89,80.5218 +367242,306.56,82.1144 +367243,307.27,83.7232 +367244,308.02,85.3488 +367245,304.62,80.5398 +367246,305.25,82.1365 +367247,305.92,83.7489 +367248,306.63,85.3777 +367249,303.35,80.559 +367250,303.94,82.159 +367251,304.56,83.7743 +367252,305.24,85.4054 +367253,302.08,80.5795 +367254,302.63,82.1819 +367255,303.21,83.7992 +367256,303.84,85.4317 +367257,300.81,80.6013 +367258,301.32,82.2053 +367259,301.86,83.8237 +367260,302.45,85.4568 +367261,299.54,80.6244 +367262,300.01,82.2291 +367263,300.51,83.8477 +367264,301.05,85.4806 +367265,298.28,80.6488 +367266,298.7,82.2533 +367267,299.16,83.8713 +367268,299.66,85.5032 +367269,297.01,80.6745 +367270,297.39,82.2779 +367271,297.81,83.8945 +367272,298.26,85.5244 +367273,295.74,80.7014 +367274,296.08,82.303 +367275,296.45,83.9173 +367276,296.86,85.5444 +367277,294.48,80.7297 +367278,294.77,82.3285 +367279,295.1,83.9397 +367280,295.47,85.5631 +367281,293.21,80.7592 +367282,293.46,82.3544 +367283,293.75,83.9616 +367284,294.07,85.5806 +367285,291.94,80.79 +367286,292.15,82.3808 +367287,292.4,83.9831 +367288,292.68,85.5968 +367289,290.68,80.8222 +367290,290.84,82.4075 +367291,291.04,84.0042 +367292,291.28,85.6117 +367293,289.41,80.8556 +367294,289.53,82.4347 +367295,289.69,84.0248 +367296,289.88,85.6254 +367297,288.15,80.8903 +367298,288.23,82.4624 +367299,288.34,84.045 +367300,288.48,85.6378 +367301,286.88,80.9262 +367302,286.92,82.4904 +367303,286.98,84.0649 +367304,287.09,85.649 +367305,285.61,80.9635 +367306,285.61,82.5189 +367307,285.63,84.0843 +367308,285.69,85.6589 +367309,284.35,81.002 +367310,284.3,82.5478 +367311,284.28,84.1032 +367312,284.29,85.6676 +367313,283.08,81.0417 +367314,282.99,82.5771 +367315,282.93,84.1218 +367316,282.9,85.6751 +367317,281.82,81.0827 +367318,281.68,82.6068 +367319,281.57,84.1399 +367320,281.5,85.6814 +367321,280.55,81.125 +367322,280.37,82.6369 +367323,280.22,84.1577 +367324,280.1,85.6864 +367325,279.28,81.1685 +367326,279.06,82.6674 +367327,278.87,84.175 +367328,278.71,85.6903 +367329,278.02,81.2132 +367330,277.75,82.6984 +367331,277.52,84.192 +367332,277.31,85.693 +367333,276.75,81.2591 +367334,276.44,82.7297 +367335,276.16,84.2085 +367336,275.91,85.6945 +367337,275.48,81.3063 +367338,275.13,82.7614 +367339,274.81,84.2247 +367340,274.52,85.6948 +367341,274.21,81.3546 +367342,273.82,82.7935 +367343,273.46,84.2404 +367344,273.12,85.694 +367345,272.95,81.4042 +367346,272.51,82.826 +367347,272.1,84.2558 +367348,271.73,85.6921 +367349,271.68,81.4549 +367350,271.2,82.8589 +367351,270.75,84.2708 +367352,270.33,85.689 +367353,270.41,81.5067 +367354,269.89,82.8922 +367355,269.4,84.2854 +367356,268.94,85.6848 +367357,269.14,81.5597 +367358,268.58,82.9259 +367359,268.05,84.2996 +367360,267.54,85.6796 +367361,267.87,81.6138 +367362,267.27,82.9599 +367363,266.7,84.3135 +367364,266.15,85.6732 +367365,266.6,81.6691 +367366,265.96,82.9943 +367367,265.34,84.327 +367368,264.76,85.6658 +367369,265.33,81.7254 +367370,264.65,83.029 +367371,263.99,84.3402 +367372,263.36,85.6573 +367373,264.06,81.7828 +367374,263.34,83.0641 +367375,262.64,84.3529 +367376,261.97,85.6478 +367377,262.79,81.8413 +367378,262.02,83.0996 +367379,261.29,84.3654 +367380,260.58,85.6372 +367381,261.51,81.9009 +367382,260.71,83.1354 +367383,259.94,84.3775 +367384,259.19,85.6257 +367385,260.24,81.9614 +367386,259.4,83.1715 +367387,258.59,84.3893 +367388,257.8,85.6132 +367389,258.97,82.023 +367390,258.09,83.2079 +367391,257.23,84.4007 +367392,256.41,85.5997 +367393,257.69,82.0856 +367394,256.77,83.2447 +367395,255.88,84.4118 +367396,255.02,85.5852 +367397,256.42,82.1492 +367398,255.46,83.2818 +367399,254.53,84.4226 +367400,253.63,85.5699 +367401,255.14,82.2137 +367402,254.15,83.3192 +367403,253.18,84.4331 +367404,252.24,85.5536 +367405,253.87,82.2791 +367406,252.84,83.3569 +367407,251.83,84.4433 +367408,250.86,85.5365 +367409,252.59,82.3454 +367410,251.52,83.3949 +367411,250.48,84.4532 +367412,249.47,85.5184 +367413,251.31,82.4127 +367414,250.21,83.4332 +367415,249.13,84.4628 +367416,248.09,85.4996 +367417,250.03,82.4808 +367418,248.89,83.4718 +367419,247.78,84.4721 +367420,246.7,85.4799 +367421,248.75,82.5497 +367422,247.58,83.5107 +367423,246.43,84.4812 +367424,245.32,85.4594 +367425,247.47,82.6195 +367426,246.26,83.5498 +367427,245.09,84.49 +367428,243.94,85.4381 +367429,246.19,82.69 +367430,244.95,83.5892 +367431,243.74,84.4985 +367432,242.56,85.4161 +367433,244.9,82.7614 +367434,243.63,83.6288 +367435,242.39,84.5067 +367436,241.18,85.3934 +367437,243.62,82.8334 +367438,242.32,83.6687 +367439,241.04,84.5148 +367440,239.8,85.3699 +367441,242.33,82.9062 +367442,241,83.7088 +367443,239.69,84.5226 +367444,238.42,85.3457 +367445,241.05,82.9797 +367446,239.68,83.7491 +367447,238.35,84.5301 +367448,237.04,85.3209 +367449,239.76,83.0539 +367450,238.36,83.7896 +367451,237,84.5375 +367452,235.67,85.2955 +367453,238.47,83.1287 +367454,237.05,83.8304 +367455,235.65,84.5446 +367456,234.29,85.2694 +367457,237.18,83.2041 +367458,235.73,83.8713 +367459,234.31,84.5515 +367460,232.92,85.2428 +367461,235.89,83.2802 +367462,234.41,83.9125 +367463,232.96,84.5583 +367464,231.54,85.2156 +367465,234.6,83.3567 +367466,233.09,83.9538 +367467,231.61,84.5648 +367468,230.17,85.1878 +367469,233.31,83.4338 +367470,231.77,83.9953 +367471,230.27,84.5712 +367472,228.8,85.1595 +367473,232.01,83.5115 +367474,230.45,84.037 +367475,228.92,84.5774 +367476,227.43,85.1308 +367477,230.72,83.5895 +367478,229.13,84.0788 +367479,227.58,84.5835 +367480,226.06,85.1016 +367481,229.42,83.6681 +367482,227.81,84.1207 +367483,226.24,84.5894 +367484,224.7,85.072 +367485,228.12,83.747 +367486,226.49,84.1628 +367487,224.89,84.5951 +367488,223.33,85.042 +367489,226.82,83.8264 +367490,225.17,84.205 +367491,223.55,84.6008 +367492,221.96,85.0116 +367493,225.52,83.9061 +367494,223.85,84.2473 +367495,222.2,84.6063 +367496,220.6,84.9808 +367497,224.22,83.9861 +367498,222.52,84.2898 +367499,220.86,84.6117 +367500,219.24,84.9497 +367501,222.92,84.0665 +367502,221.2,84.3323 +367503,219.52,84.617 +367504,217.88,84.9184 +367505,221.61,84.1471 +367506,219.88,84.3749 +367507,218.18,84.6222 +367508,216.52,84.8867 +367509,220.31,84.2279 +367510,218.55,84.4176 +367511,216.84,84.6273 +367512,215.16,84.8549 +367513,219,84.309 +367514,217.23,84.4603 +367515,215.5,84.6324 +367516,213.8,84.8228 +367517,217.69,84.3902 +367518,215.9,84.5031 +367519,214.15,84.6373 +367520,212.45,84.7905 +367521,216.38,84.4716 +367522,214.58,84.546 +367523,212.81,84.6423 +367524,211.09,84.7581 +367525,215.07,84.5531 +367526,213.25,84.5889 +367527,211.47,84.6472 +367528,209.74,84.7256 +367529,213.76,84.6347 +367530,211.92,84.6318 +367531,210.14,84.652 +367532,208.39,84.6929 +367533,212.44,84.7163 +367534,210.6,84.6747 +367535,208.8,84.6568 +367536,207.04,84.6603 +367537,211.13,84.798 +367538,209.27,84.7176 +367539,207.46,84.6616 +367540,205.69,84.6275 +367541,209.81,84.8797 +367542,207.94,84.7606 +367543,206.12,84.6664 +367544,204.34,84.5948 +367545,208.49,84.9613 +367546,206.61,84.8035 +367547,204.78,84.6713 +367548,202.99,84.5621 +367549,207.17,85.0428 +367550,205.28,84.8463 +367551,203.44,84.6761 +367552,201.65,84.5294 +367553,205.85,85.1243 +367554,203.96,84.8892 +367555,202.11,84.6809 +367556,200.31,84.4968 +367557,204.53,85.2056 +367558,202.63,84.932 +367559,200.77,84.6858 +367560,198.96,84.4643 +367561,203.2,85.2867 +367562,201.29,84.9747 +367563,199.44,84.6907 +367564,197.62,84.432 +367565,201.88,85.3677 +367566,199.96,85.0174 +367567,198.1,84.6957 +367568,196.28,84.3998 +367569,200.55,85.4484 +367570,198.63,85.06 +367571,196.76,84.7008 +367572,194.94,84.3678 +367573,199.22,85.5289 +367574,197.3,85.1025 +367575,195.43,84.7059 +367576,193.61,84.336 +367577,197.89,85.609 +367578,195.97,85.1449 +367579,194.1,84.7111 +367580,192.27,84.3045 +367581,196.56,85.6889 +367582,194.63,85.1872 +367583,192.76,84.7164 +367584,190.94,84.2733 +367585,195.23,85.7684 +367586,193.3,85.2294 +367587,191.43,84.7217 +367588,189.61,84.2423 +367589,193.89,85.8475 +367590,191.97,85.2714 +367591,190.1,84.7272 +367592,188.28,84.2117 +367593,192.55,85.9262 +367594,190.63,85.3133 +367595,188.76,84.7329 +367596,186.95,84.1815 +367597,191.22,86.0045 +367598,189.3,85.3551 +367599,187.43,84.7386 +367600,185.62,84.1517 +367601,189.88,86.0823 +367602,187.96,85.3967 +367603,186.1,84.7445 +367604,184.29,84.1222 +367605,188.54,86.1596 +367606,186.62,85.4382 +367607,184.77,84.7505 +367608,182.96,84.0933 +367609,187.19,86.2364 +367610,185.29,85.4795 +367611,183.44,84.7567 +367612,181.64,84.0648 +367613,185.85,86.3127 +367614,183.95,85.5205 +367615,182.11,84.7631 +367616,180.32,84.0368 +367617,184.51,86.3883 +367618,182.61,85.5614 +367619,180.78,84.7696 +367620,179,84.0093 +367621,183.16,86.4633 +367622,181.27,85.6021 +367623,179.45,84.7764 +367624,177.68,83.9824 +367625,181.81,86.5377 +367626,179.93,85.6426 +367627,178.12,84.7833 +367628,176.36,83.956 +367629,180.46,86.6114 +367630,178.6,85.6829 +367631,176.79,84.7904 +367632,175.04,83.9303 +367633,179.11,86.6844 +367634,177.26,85.7229 +367635,175.46,84.7977 +367636,173.72,83.9052 +367637,177.76,86.7567 +367638,175.92,85.7627 +367639,174.13,84.8053 +367640,172.41,83.8808 +367641,176.4,86.8283 +367642,174.57,85.8022 +367643,172.81,84.8131 +367644,171.09,83.857 +367645,175.05,86.8991 +367646,173.23,85.8415 +367647,171.48,84.8211 +367648,169.78,83.834 +367649,173.69,86.969 +367650,171.89,85.8805 +367651,170.15,84.8294 +367652,168.47,83.8117 +367653,172.33,87.0382 +367654,170.55,85.9192 +367655,168.83,84.8379 +367656,167.16,83.7901 +367657,170.97,87.1065 +367658,169.21,85.9577 +367659,167.5,84.8466 +367660,165.85,83.7693 +367661,169.61,87.1739 +367662,167.86,85.9958 +367663,166.18,84.8557 +367664,164.54,83.7494 +367665,168.25,87.2404 +367666,166.52,86.0337 +367667,164.85,84.865 +367668,163.24,83.7302 +367669,166.89,87.306 +367670,165.17,86.0712 +367671,163.53,84.8746 +367672,161.93,83.712 +367673,165.52,87.3706 +367674,163.83,86.1085 +367675,162.2,84.8845 +367676,160.63,83.6946 +367677,164.15,87.4343 +367678,162.48,86.1454 +367679,160.88,84.8947 +367680,159.33,83.678 +367681,162.79,87.497 +367682,161.14,86.182 +367683,159.56,84.9052 +367684,158.02,83.6624 +367685,161.42,87.5586 +367686,159.79,86.2182 +367687,158.23,84.916 +367688,156.72,83.6478 +367689,160.05,87.6193 +367690,158.45,86.2542 +367691,156.91,84.9271 +367692,155.43,83.6341 +367693,158.68,87.6789 +367694,157.1,86.2897 +367695,155.59,84.9386 +367696,154.13,83.6214 +367697,157.3,87.7374 +367698,155.75,86.3249 +367699,154.26,84.9504 +367700,152.83,83.6097 +367701,155.93,87.7948 +367702,154.41,86.3598 +367703,152.94,84.9625 +367704,151.53,83.599 +367705,154.55,87.8511 +367706,153.06,86.3942 +367707,151.62,84.975 +367708,150.24,83.5893 +367709,153.18,87.9063 +367710,151.71,86.4283 +367711,150.3,84.9878 +367712,148.94,83.5807 +367713,151.8,87.9603 +367714,150.36,86.4621 +367715,148.98,85.001 +367716,147.65,83.5732 +367717,150.42,88.0132 +367718,149.01,86.4954 +367719,147.66,85.0146 +367720,146.36,83.5667 +367721,149.04,88.0649 +367722,147.66,86.5283 +367723,146.34,85.0285 +367724,145.07,83.5614 +367725,147.66,88.1154 +367726,146.31,86.5609 +367727,145.02,85.0428 +367728,143.78,83.5572 +367729,146.28,88.1647 +367730,144.96,86.593 +367731,143.7,85.0574 +367732,142.49,83.5541 +367733,144.9,88.2128 +367734,143.61,86.6247 +367735,142.38,85.0725 +367736,141.2,83.5522 +367737,143.51,88.2596 +367738,142.26,86.6561 +367739,141.06,85.0879 +367740,139.91,83.5515 +367741,142.13,88.3052 +367742,140.91,86.687 +367743,139.74,85.1037 +367744,138.62,83.5519 +367745,140.75,88.3496 +367746,139.56,86.7175 +367747,138.42,85.1199 +367748,137.34,83.5535 +367749,139.36,88.3926 +367750,138.2,86.7475 +367751,137.1,85.1366 +367752,136.05,83.5564 +367753,137.97,88.4344 +367754,136.85,86.7771 +367755,135.79,85.1536 +367756,134.77,83.5604 +367757,136.58,88.4749 +367758,135.5,86.8063 +367759,134.47,85.171 +367760,133.48,83.5657 +367761,135.19,88.5141 +367762,134.15,86.8351 +367763,133.15,85.1889 +367764,132.2,83.5723 +367765,133.81,88.552 +367766,132.79,86.8634 +367767,131.83,85.2071 +367768,130.92,83.58 +367769,132.41,88.5886 +367770,131.44,86.8913 +367771,130.51,85.2258 +367772,129.64,83.5891 +367773,131.02,88.6239 +367774,130.08,86.9187 +367775,129.2,85.2449 +367776,128.36,83.5994 +367777,129.63,88.6578 +367778,128.73,86.9457 +367779,127.88,85.2644 +367780,127.07,83.611 +367781,128.24,88.6904 +367782,127.38,86.9723 +367783,126.56,85.2843 +367784,125.79,83.6239 +367785,126.85,88.7216 +367786,126.02,86.9984 +367787,125.25,85.3047 +367788,124.51,83.6381 +367789,125.45,88.7515 +367790,124.67,87.024 +367791,123.93,85.3255 +367792,123.24,83.6536 +367793,124.06,88.7801 +367794,123.31,87.0492 +367795,122.61,85.3467 +367796,121.96,83.6704 +367797,122.66,88.8073 +367798,121.96,87.0739 +367799,121.3,85.3684 +367800,120.68,83.6884 +367801,121.27,88.8331 +367802,120.6,87.0982 +367803,119.98,85.3905 +367804,119.4,83.7079 +367805,119.87,88.8576 +367806,119.25,87.122 +367807,118.66,85.413 +367808,118.12,83.7286 +367809,118.48,88.8808 +367810,117.89,87.1454 +367811,117.35,85.4359 +367812,116.85,83.7506 +367813,117.08,88.9026 +367814,116.53,87.1683 +367815,116.03,85.4593 +367816,115.57,83.774 +367817,115.68,88.923 +367818,115.18,87.1907 +367819,114.72,85.4831 +367820,114.29,83.7987 +367821,114.29,88.9421 +367822,113.82,87.2127 +367823,113.4,85.5074 +367824,113.02,83.8247 +367825,112.89,88.9598 +367826,112.47,87.2342 +367827,112.08,85.5321 +367828,111.74,83.8521 +367829,111.49,88.9762 +367830,111.11,87.2553 +367831,110.77,85.5572 +367832,110.46,83.8808 +367833,110.09,88.9912 +367834,109.75,87.2759 +367835,109.45,85.5828 +367836,109.19,83.9108 +367837,108.69,89.0049 +367838,108.4,87.296 +367839,108.14,85.6087 +367840,107.91,83.9421 +367841,107.3,89.01725 +367842,107.04,87.3157 +367843,106.82,85.6352 +367844,106.64,83.9747 +367845,105.9,89.02828 +367846,105.68,87.335 +367847,105.51,85.662 +367848,105.36,84.0087 +367849,104.5,89.03799 +367850,104.33,87.3538 +367851,104.19,85.6893 +367852,104.09,84.044 +367853,103.1,89.04638 +367854,102.97,87.3721 +367855,102.87,85.717 +367856,102.81,84.0806 +367857,101.7,89.05346 +367858,101.61,87.39 +367859,101.56,85.7451 +367860,101.54,84.1184 +367861,100.3,89.05923 +367862,100.25,87.4075 +367863,100.24,85.7737 +367864,100.26,84.1576 +367865,98.903,89.06372 +367866,98.898,87.4245 +367867,98.926,85.8026 +367868,98.984,84.1981 +367869,97.504,89.06692 +367870,97.541,87.441 +367871,97.61,85.832 +367872,97.709,84.2398 +367873,96.106,89.06886 +367874,96.184,87.4572 +367875,96.293,85.8618 +367876,96.433,84.2828 +367877,94.707,89.06953 +367878,94.827,87.4729 +367879,94.977,85.892 +367880,95.157,84.3271 +367881,93.309,89.06895 +367882,93.47,87.4881 +367883,93.661,85.9226 +367884,93.881,84.3727 +367885,91.91,89.06713 +367886,92.113,87.503 +367887,92.345,85.9536 +367888,92.604,84.4194 +367889,90.512,89.06409 +367890,90.756,87.5174 +367891,91.028,85.985 +367892,91.328,84.4675 +367893,89.115,89.05983 +367894,89.399,87.5314 +367895,89.711,86.0168 +367896,90.051,84.5167 +367897,87.717,89.05438 +367898,88.042,87.545 +367899,88.395,86.049 +367900,88.773,84.5671 +367901,86.32,89.04775 +367902,86.685,87.5582 +367903,87.078,86.0816 +367904,87.496,84.6188 +367905,84.923,89.03994 +367906,85.329,87.571 +367907,85.76,86.1146 +367908,86.218,84.6716 +367909,83.527,89.03099 +367910,83.972,87.5833 +367911,84.443,86.1479 +367912,84.939,84.7256 +367913,82.131,89.02089 +367914,82.616,87.5953 +367915,83.126,86.1816 +367916,83.66,84.7807 +367917,80.736,89.00968 +367918,81.259,87.6069 +367919,81.808,86.2157 +367920,82.381,84.837 +367921,79.34,88.9974 +367922,79.903,87.6181 +367923,80.49,86.2501 +367924,81.101,84.8944 +367925,77.946,88.984 +367926,78.547,87.629 +367927,79.172,86.2849 +367928,79.821,84.9529 +367929,76.552,88.9695 +367930,77.191,87.6394 +367931,77.854,86.32 +367932,78.54,85.0125 +367933,75.158,88.954 +367934,75.835,87.6495 +367935,76.535,86.3555 +367936,77.258,85.0732 +367937,73.766,88.9375 +367938,74.48,87.6593 +367939,75.217,86.3913 +367940,75.976,85.1349 +367941,72.373,88.9199 +367942,73.124,87.6686 +367943,73.898,86.4274 +367944,74.693,85.1977 +367945,70.982,88.9014 +367946,71.769,87.6777 +367947,72.578,86.4639 +367948,73.41,85.2614 +367949,69.591,88.8819 +367950,70.414,87.6864 +367951,71.259,86.5007 +367952,72.126,85.3262 +367953,68.201,88.8615 +367954,69.059,87.6947 +367955,69.939,86.5378 +367956,70.841,85.3919 +367957,66.811,88.8401 +367958,67.704,87.7028 +367959,68.619,86.5751 +367960,69.555,85.4586 +367961,65.422,88.8178 +367962,66.35,87.7105 +367963,67.299,86.6128 +367964,68.269,85.5262 +367965,64.034,88.7947 +367966,64.995,87.7179 +367967,65.978,86.6508 +367968,66.982,85.5947 +367969,62.647,88.7707 +367970,63.641,87.725 +367971,64.657,86.689 +367972,65.694,85.6641 +367973,61.261,88.7459 +367974,62.288,87.7319 +367975,63.336,86.7275 +367976,64.405,85.7344 +367977,59.875,88.7202 +367978,60.934,87.7384 +367979,62.014,86.7663 +367980,63.115,85.8054 +367981,58.491,88.6938 +367982,59.581,87.7447 +367983,60.692,86.8053 +367984,61.824,85.8773 +367985,57.107,88.6666 +367986,58.228,87.7506 +367987,59.37,86.8446 +367988,60.533,85.95 +367989,55.724,88.6387 +367990,56.875,87.7564 +367991,58.047,86.8841 +367992,59.24,86.0234 +367993,54.343,88.6101 +367994,55.523,87.7618 +367995,56.724,86.9238 +367996,57.947,86.0976 +367997,52.962,88.5808 +367998,54.17,87.7671 +367999,55.401,86.9637 +368000,56.653,86.1725 +368001,51.582,88.5509 +368002,52.819,87.772 +368003,54.077,87.0039 +368004,55.357,86.248 +368005,50.203,88.5203 +368006,51.467,87.7768 +368007,52.753,87.0443 +368008,54.061,86.3243 +368009,48.825,88.4891 +368010,50.116,87.7813 +368011,51.429,87.0848 +368012,52.763,86.4011 +368013,47.448,88.4573 +368014,48.765,87.7857 +368015,50.104,87.1255 +368016,51.465,86.4785 +368017,46.073,88.425 +368018,47.414,87.7898 +368019,48.778,87.1664 +368020,50.165,86.5565 +368021,44.698,88.3922 +368022,46.064,87.7937 +368023,47.453,87.2075 +368024,48.864,86.6351 +368025,43.325,88.3589 +368026,44.714,87.7975 +368027,46.127,87.2487 +368028,47.562,86.7141 +368029,41.952,88.3251 +368030,43.364,87.8011 +368031,44.8,87.2901 +368032,46.259,86.7936 +368033,40.581,88.2909 +368034,42.015,87.8045 +368035,43.473,87.3315 +368036,44.955,86.8736 +368037,39.211,88.2562 +368038,40.666,87.8078 +368039,42.146,87.3732 +368040,43.65,86.954 +368041,37.842,88.2212 +368042,39.318,87.8109 +368043,40.818,87.4149 +368044,42.343,87.0348 +368045,36.474,88.1859 +368046,37.969,87.8139 +368047,39.49,87.4567 +368048,41.035,87.116 +368049,35.107,88.1502 +368050,36.621,87.8168 +368051,38.161,87.4986 +368052,39.726,87.1974 +368053,33.742,88.1142 +368054,35.274,87.8195 +368055,36.832,87.5406 +368056,38.416,87.2792 +368057,32.378,88.0779 +368058,33.927,87.8222 +368059,35.502,87.5827 +368060,37.104,87.3613 +368061,31.015,88.0415 +368062,32.58,87.8247 +368063,34.172,87.6248 +368064,35.792,87.4436 +368065,29.653,88.0048 +368066,31.234,87.8272 +368067,32.842,87.667 +368068,34.477,87.5261 +368069,28.293,87.9679 +368070,29.888,87.8296 +368071,31.511,87.7093 +368072,33.162,87.6087 +368073,26.933,87.9309 +368074,28.542,87.8319 +368075,30.179,87.7515 +368076,31.845,87.6915 +368077,25.575,87.8938 +368078,27.197,87.8342 +368079,28.848,87.7938 +368080,30.527,87.7744 +368081,24.219,87.8566 +368082,25.852,87.8364 +368083,27.515,87.8361 +368084,29.208,87.8574 +368085,22.863,87.8193 +368086,24.508,87.8386 +368087,26.182,87.8784 +368088,27.887,87.9404 +368089,21.509,87.782 +368090,23.164,87.8408 +368091,24.849,87.9206 +368092,26.565,88.0235 +368093,20.156,87.7448 +368094,21.82,87.843 +368095,23.515,87.9629 +368096,25.242,88.1065 +368097,18.805,87.7075 +368098,20.477,87.8451 +368099,22.181,88.0051 +368100,23.917,88.1895 +368101,17.455,87.6703 +368102,19.134,87.8473 +368103,20.846,88.0473 +368104,22.591,88.2724 +368105,16.106,87.6332 +368106,17.792,87.8495 +368107,19.511,88.0894 +368108,21.264,88.3551 +368109,14.758,87.5962 +368110,16.45,87.8517 +368111,18.175,88.1314 +368112,19.935,88.4377 +368113,13.412,87.5594 +368114,15.108,87.854 +368115,16.839,88.1734 +368116,18.605,88.5202 +368117,12.067,87.5228 +368118,13.767,87.8563 +368119,15.502,88.2153 +368120,17.273,88.6024 +368121,10.723,87.4863 +368122,12.427,87.8586 +368123,14.165,88.2571 +368124,15.94,88.6843 +368125,9.3808,87.4502 +368126,11.086,87.861 +368127,12.827,88.2988 +368128,14.606,88.766 +368129,8.0398,87.4142 +368130,9.7463,87.8635 +368131,11.489,88.3404 +368132,13.27,88.8474 +368133,6.7001,87.3786 +368134,8.4068,87.8661 +368135,10.15,88.3818 +368136,11.933,88.9284 +368137,5.3616,87.3433 +368138,7.0677,87.8688 +368139,8.8107,88.4231 +368140,10.594,89.00902 +368141,4.0245,87.3084 +368142,5.729,87.8716 +368143,7.471,88.4642 +368144,9.2539,89.08926 +368145,2.6887,87.2738 +368146,4.3908,87.8745 +368147,6.1308,88.5052 +368148,7.9124,89.16905 +368149,1.3542,87.2397 +368150,3.0529,87.8775 +368151,4.7901,88.546 +368152,6.5695,89.24837 +368153,0.020979,87.206 +368154,1.7155,87.8807 +368155,3.4489,88.5867 +368156,5.2253,89.32718 +368157,358.69,87.1728 +368158,0.3784,87.884 +368159,2.1071,88.6271 +368160,3.8796,89.40546 +368161,357.36,87.1401 +368162,359.04,87.8875 +368163,0.76495,88.6674 +368164,2.5326,89.48318 +368165,356.03,87.1079 +368166,357.71,87.8911 +368167,359.42,88.7074 +368168,1.1841,89.56029 +368169,354.7,87.0763 +368170,356.37,87.8949 +368171,358.08,88.7472 +368172,359.83,89.63679 +368173,353.37,87.0452 +368174,355.03,87.8989 +368175,356.74,88.7868 +368176,358.48,89.71262 +368177,352.05,87.0148 +368178,353.7,87.9031 +368179,355.39,88.8262 +368180,357.13,89.78777 +368181,350.72,86.985 +368182,352.36,87.9075 +368183,354.05,88.8653 +368184,355.78,89.86221 +368185,349.4,86.9558 +368186,351.03,87.9121 +368187,352.7,88.9041 +368188,354.42,89.935896 +368189,348.08,86.9274 +368190,349.7,87.9169 +368191,351.36,88.9427 +368192,353.06,90.0088137 +368193,346.76,86.8996 +368194,348.36,87.9219 +368195,350.01,88.981 +368196,351.71,90.080931 +368197,345.44,86.8726 +368198,347.03,87.9272 +368199,348.66,89.01897 +368200,350.35,90.15222 +368201,344.12,86.8464 +368202,345.7,87.9327 +368203,347.32,89.05668 +368204,348.99,90.22265 +368205,342.8,86.8209 +368206,344.36,87.9385 +368207,345.97,89.09409 +368208,347.62,90.2922 +368209,341.49,86.7963 +368210,343.03,87.9445 +368211,344.62,89.13119 +368212,346.26,90.36085 +368213,340.17,86.7725 +368214,341.7,87.9508 +368215,343.27,89.16796 +368216,344.9,90.42855 +368217,338.86,86.7496 +368218,340.37,87.9574 +368219,341.92,89.20441 +368220,343.53,90.4953 +368221,337.55,86.7275 +368222,339.04,87.9643 +368223,340.57,89.24052 +368224,342.16,90.56106 +368225,336.24,86.7064 +368226,337.71,87.9714 +368227,339.23,89.27629 +368228,340.8,90.62581 +368229,334.93,86.6861 +368230,336.38,87.9789 +368231,337.88,89.3117 +368232,339.43,90.68953 +368233,333.62,86.6669 +368234,335.05,87.9867 +368235,336.52,89.34676 +368236,338.05,90.75219 +368237,332.31,86.6486 +368238,333.72,87.9947 +368239,335.17,89.38144 +368240,336.68,90.81378 +368241,331,86.6313 +368242,332.39,88.0031 +368243,333.82,89.41575 +368244,335.31,90.87426 +368245,329.69,86.615 +368246,331.06,88.0119 +368247,332.47,89.44968 +368248,333.94,90.93361 +368249,328.39,86.5997 +368250,329.73,88.0209 +368251,331.12,89.48322 +368252,332.56,90.99183 +368253,327.09,86.5855 +368254,328.4,88.0303 +368255,329.77,89.51636 +368256,331.18,91.0489 +368257,325.78,86.5724 +368258,327.07,88.0401 +368259,328.41,89.5491 +368260,329.81,91.1047 +368261,324.48,86.5603 +368262,325.75,88.0502 +368263,327.06,89.58143 +368264,328.43,91.1594 +368265,323.18,86.5494 +368266,324.42,88.0607 +368267,325.71,89.61334 +368268,327.05,91.2128 +368269,321.88,86.5396 +368270,323.09,88.0715 +368271,324.35,89.64483 +368272,325.67,91.265 +368273,320.58,86.5309 +368274,321.77,88.0827 +368275,323,89.6759 +368276,324.28,91.316 +368277,319.28,86.5234 +368278,320.44,88.0943 +368279,321.64,89.70654 +368280,322.9,91.3656 +368281,317.98,86.5171 +368282,319.11,88.1062 +368283,320.29,89.73673 +368284,321.52,91.414 +368285,316.69,86.5119 +368286,317.79,88.1186 +368287,318.93,89.76649 +368288,320.13,91.4611 +368289,315.39,86.508 +368290,316.46,88.1313 +368291,317.58,89.79579 +368292,318.75,91.5068 +368293,314.09,86.5053 +368294,315.13,88.1444 +368295,316.22,89.82464 +368296,317.36,91.5513 +368297,312.8,86.5038 +368298,313.81,88.1579 +368299,314.86,89.85304 +368300,315.97,91.5943 +368301,311.5,86.5035 +368302,312.48,88.1719 +368303,313.51,89.88098 +368304,314.58,91.6361 +368305,310.21,86.5045 +368306,311.16,88.1862 +368307,312.15,89.908447 +368308,313.19,91.6764 +368309,308.92,86.5068 +368310,309.83,88.201 +368311,310.79,89.935448 +368312,311.8,91.7154 +368313,307.63,86.5103 +368314,308.51,88.2161 +368315,309.44,89.961977 +368316,310.41,91.753 +368317,306.33,86.5151 +368318,307.18,88.2317 +368319,308.08,89.98803 +368320,309.02,91.7892 +368321,305.04,86.5212 +368322,305.86,88.2477 +368323,306.72,90.013605 +368324,307.63,91.8239 +368325,303.75,86.5287 +368326,304.54,88.2641 +368327,305.36,90.038698 +368328,306.23,91.8573 +368329,302.46,86.5374 +368330,303.21,88.281 +368331,304,90.063307 +368332,304.84,91.8892 +368333,301.17,86.5475 +368334,301.89,88.2982 +368335,302.64,90.087429 +368336,303.45,91.9198 +368337,299.89,86.5589 +368338,300.56,88.3159 +368339,301.28,90.11106 +368340,302.05,91.9488 +368341,298.6,86.5716 +368342,299.24,88.3341 +368343,299.93,90.13421 +368344,300.66,91.9765 +368345,297.31,86.5856 +368346,297.92,88.3526 +368347,298.57,90.15686 +368348,299.26,92.0027 +368349,296.02,86.601 +368350,296.59,88.3716 +368351,297.21,90.17901 +368352,297.86,92.0274 +368353,294.73,86.6178 +368354,295.27,88.3911 +368355,295.85,90.20068 +368356,296.47,92.0507 +368357,293.45,86.6359 +368358,293.95,88.4109 +368359,294.49,90.22184 +368360,295.07,92.0726 +368361,292.16,86.6554 +368362,292.62,88.4312 +368363,293.13,90.24252 +368364,293.67,92.093 +368365,290.87,86.6762 +368366,291.3,88.452 +368367,291.77,90.26269 +368368,292.27,92.112 +368369,289.59,86.6984 +368370,289.98,88.4732 +368371,290.41,90.28237 +368372,290.87,92.1295 +368373,288.3,86.7219 +368374,288.66,88.4948 +368375,289.04,90.30155 +368376,289.47,92.1455 +368377,287.02,86.7468 +368378,287.33,88.5169 +368379,287.68,90.32023 +368380,288.08,92.1602 +368381,285.73,86.773 +368382,286.01,88.5394 +368383,286.32,90.33842 +368384,286.68,92.1733 +368385,284.45,86.8006 +368386,284.69,88.5623 +368387,284.96,90.35612 +368388,285.28,92.1851 +368389,283.16,86.8296 +368390,283.36,88.5856 +368391,283.6,90.37332 +368392,283.88,92.1954 +368393,281.88,86.8599 +368394,282.04,88.6094 +368395,282.24,90.39003 +368396,282.48,92.2043 +368397,280.59,86.8916 +368398,280.72,88.6337 +368399,280.88,90.40624 +368400,281.07,92.2117 +368401,279.31,86.9246 +368402,279.4,88.6583 +368403,279.52,90.42197 +368404,279.67,92.2178 +368405,278.02,86.9589 +368406,278.07,88.6834 +368407,278.16,90.43721 +368408,278.27,92.2224 +368409,276.74,86.9946 +368410,276.75,88.709 +368411,276.79,90.45197 +368412,276.87,92.2256 +368413,275.45,87.0316 +368414,275.43,88.7349 +368415,275.43,90.46624 +368416,275.47,92.2275 +368417,274.17,87.0699 +368418,274.1,88.7613 +368419,274.07,90.48003 +368420,274.07,92.2279 +368421,272.88,87.1096 +368422,272.78,88.788 +368423,272.71,90.49335 +368424,272.67,92.227 +368425,271.59,87.1505 +368426,271.46,88.8152 +368427,271.35,90.50619 +368428,271.27,92.2247 +368429,270.31,87.1927 +368430,270.13,88.8428 +368431,269.99,90.51857 +368432,269.87,92.2211 +368433,269.02,87.2362 +368434,268.81,88.8708 +368435,268.63,90.53048 +368436,268.47,92.2162 +368437,267.74,87.281 +368438,267.49,88.8993 +368439,267.26,90.54192 +368440,267.07,92.2099 +368441,266.45,87.3271 +368442,266.16,88.9281 +368443,265.9,90.55291 +368444,265.67,92.2023 +368445,265.16,87.3744 +368446,264.84,88.9573 +368447,264.54,90.56344 +368448,264.27,92.1934 +368449,263.88,87.423 +368450,263.52,88.9869 +368451,263.18,90.57352 +368452,262.87,92.1833 +368453,262.59,87.4727 +368454,262.19,89.0169 +368455,261.82,90.58316 +368456,261.47,92.1719 +368457,261.3,87.5237 +368458,260.87,89.04728 +368459,260.46,90.59236 +368460,260.07,92.1592 +368461,260.01,87.5759 +368462,259.54,89.07803 +368463,259.1,90.60113 +368464,258.68,92.1453 +368465,258.72,87.6293 +368466,258.22,89.10915 +368467,257.74,90.60946 +368468,257.28,92.1302 +368469,257.43,87.6838 +368470,256.89,89.14064 +368471,256.38,90.61737 +368472,255.88,92.1139 +368473,256.14,87.7395 +368474,255.57,89.17249 +368475,255.02,90.62487 +368476,254.48,92.0964 +368477,254.85,87.7963 +368478,254.24,89.20469 +368479,253.65,90.63195 +368480,253.09,92.0778 +368481,253.56,87.8542 +368482,252.92,89.23724 +368483,252.29,90.63863 +368484,251.69,92.058 +368485,252.27,87.9133 +368486,251.59,89.27013 +368487,250.93,90.64491 +368488,250.29,92.0371 +368489,250.98,87.9734 +368490,250.27,89.30335 +368491,249.57,90.6508 +368492,248.9,92.0151 +368493,249.69,88.0346 +368494,248.94,89.3369 +368495,248.21,90.6563 +368496,247.51,91.9921 +368497,248.39,88.0968 +368498,247.62,89.37078 +368499,246.85,90.66143 +368500,246.11,91.968 +368501,247.1,88.16 +368502,246.29,89.40496 +368503,245.49,90.66618 +368504,244.72,91.9428 +368505,245.81,88.2242 +368506,244.96,89.43946 +368507,244.14,90.67057 +368508,243.33,91.9167 +368509,244.51,88.2894 +368510,243.64,89.47425 +368511,242.78,90.6746 +368512,241.93,91.8895 +368513,243.21,88.3556 +368514,242.31,89.50933 +368515,241.42,90.67829 +368516,240.54,91.8615 +368517,241.92,88.4227 +368518,240.98,89.5447 +368519,240.06,90.68163 +368520,239.15,91.8324 +368521,240.62,88.4907 +368522,239.65,89.58034 +368523,238.7,90.68464 +368524,237.76,91.8025 +368525,239.32,88.5595 +368526,238.32,89.61624 +368527,237.34,90.68733 +368528,236.37,91.7717 +368529,238.02,88.6293 +368530,237,89.65241 +368531,235.98,90.6897 +368532,234.99,91.74 +368533,236.72,88.6999 +368534,235.67,89.68883 +368535,234.63,90.69176 +368536,233.6,91.7075 +368537,235.42,88.7712 +368538,234.34,89.72548 +368539,233.27,90.69352 +368540,232.21,91.6742 +368541,234.12,88.8434 +368542,233.01,89.76237 +368543,231.91,90.69499 +368544,230.83,91.64 +368545,232.82,88.9163 +368546,231.68,89.79948 +368547,230.55,90.69618 +368548,229.44,91.6052 +368549,231.51,88.99 +368550,230.35,89.83681 +368551,229.2,90.6971 +368552,228.06,91.5696 +368553,230.21,89.06434 +368554,229.02,89.87434 +368555,227.84,90.69775 +368556,226.68,91.5333 +368557,228.9,89.13937 +368558,227.69,89.912066 +368559,226.48,90.69815 +368560,225.3,91.4964 +368561,227.6,89.21504 +368562,226.36,89.949977 +368563,225.13,90.69831 +368564,223.92,91.4588 +368565,226.29,89.29134 +368566,225.02,89.988065 +368567,223.77,90.69822 +368568,222.54,91.4205 +368569,224.98,89.36822 +368570,223.69,90.026319 +368571,222.42,90.69792 +368572,221.16,91.3817 +368573,223.67,89.44566 +368574,222.36,90.06473 +368575,221.06,90.69739 +368576,219.78,91.3424 +368577,222.36,89.52364 +368578,221.03,90.10329 +368579,219.71,90.69666 +368580,218.4,91.3025 +368581,221.05,89.60211 +368582,219.69,90.14198 +368583,218.35,90.69574 +368584,217.03,91.2621 +368585,219.73,89.68106 +368586,218.36,90.1808 +368587,217,90.69462 +368588,215.65,91.2213 +368589,218.42,89.76044 +368590,217.03,90.21973 +368591,215.65,90.69333 +368592,214.28,91.18 +368593,217.1,89.84024 +368594,215.69,90.25877 +368595,214.29,90.69188 +368596,212.91,91.1383 +368597,215.79,89.920409 +368598,214.36,90.29791 +368599,212.94,90.69026 +368600,211.54,91.0962 +368601,214.47,90.00092617 +368602,213.02,90.33713 +368603,211.59,90.6885 +368604,210.17,91.0538 +368605,213.15,90.081757 +368606,211.69,90.37642 +368607,210.23,90.68661 +368608,208.8,91.0111 +368609,211.83,90.16287 +368610,210.35,90.41578 +368611,208.88,90.68458 +368612,207.43,90.96806 +368613,210.51,90.24423 +368614,209.01,90.45519 +368615,207.53,90.68245 +368616,206.07,90.92479 +368617,209.19,90.32581 +368618,207.68,90.49464 +368619,206.18,90.68021 +368620,204.7,90.88129 +368621,207.87,90.40758 +368622,206.34,90.53412 +368623,204.83,90.67787 +368624,203.34,90.8376 +368625,206.54,90.48949 +368626,205,90.57362 +368627,203.48,90.67545 +368628,201.97,90.79374 +368629,205.21,90.57153 +368630,203.66,90.61312 +368631,202.13,90.67295 +368632,200.61,90.74976 +368633,203.89,90.65365 +368634,202.32,90.65263 +368635,200.78,90.6704 +368636,199.25,90.70567 +368637,202.56,90.73583 +368638,200.98,90.69212 +368639,199.43,90.66779 +368640,197.89,90.66151 +368641,201.23,90.81802 +368642,199.64,90.73159 +368643,198.08,90.66514 +368644,196.53,90.61732 +368645,199.9,90.9002 +368646,198.3,90.77102 +368647,196.73,90.66245 +368648,195.18,90.57312 +368649,198.56,90.98233 +368650,196.96,90.81041 +368651,195.38,90.65975 +368652,193.82,90.52895 +368653,197.23,91.0644 +368654,195.62,90.84974 +368655,194.03,90.65704 +368656,192.47,90.48483 +368657,195.9,91.1463 +368658,194.28,90.889 +368659,192.69,90.65433 +368660,191.11,90.4408 +368661,194.56,91.2281 +368662,192.94,90.92818 +368663,191.34,90.65162 +368664,189.76,90.39688 +368665,193.22,91.3097 +368666,191.6,90.96727 +368667,189.99,90.64894 +368668,188.41,90.35312 +368669,191.88,91.3911 +368670,190.25,91.0063 +368671,188.65,90.64629 +368672,187.06,90.30953 +368673,190.54,91.4722 +368674,188.91,91.0451 +368675,187.3,90.64369 +368676,185.72,90.26616 +368677,189.2,91.5531 +368678,187.57,91.0839 +368679,185.96,90.64113 +368680,184.37,90.22302 +368681,187.86,91.6336 +368682,186.22,91.1225 +368683,184.61,90.63864 +368684,183.02,90.18015 +368685,186.51,91.7138 +368686,184.88,91.161 +368687,183.27,90.63623 +368688,181.68,90.13759 +368689,185.17,91.7936 +368690,183.53,91.1993 +368691,181.92,90.6339 +368692,180.34,90.095357 +368693,183.82,91.873 +368694,182.19,91.2374 +368695,180.58,90.63166 +368696,178.99,90.053485 +368697,182.47,91.9519 +368698,180.84,91.2754 +368699,179.23,90.62952 +368700,177.65,90.012005 +368701,181.13,92.0304 +368702,179.49,91.3132 +368703,177.89,90.6275 +368704,176.31,89.970944 +368705,179.77,92.1083 +368706,178.15,91.3508 +368707,176.55,90.62561 +368708,174.98,89.930334 +368709,178.42,92.1857 +368710,176.8,91.3881 +368711,175.21,90.62384 +368712,173.64,89.8902 +368713,177.07,92.2625 +368714,175.45,91.4253 +368715,173.86,90.62223 +368716,172.3,89.85058 +368717,175.71,92.3387 +368718,174.1,91.4622 +368719,172.52,90.62076 +368720,170.97,89.81149 +368721,174.36,92.4142 +368722,172.75,91.4989 +368723,171.18,90.61946 +368724,169.64,89.77297 +368725,173,92.4891 +368726,171.41,91.5353 +368727,169.84,90.61833 +368728,168.3,89.73504 +368729,171.64,92.5633 +368730,170.06,91.5715 +368731,168.5,90.61739 +368732,166.97,89.69773 +368733,170.28,92.6367 +368734,168.71,91.6074 +368735,167.16,90.61664 +368736,165.64,89.66106 +368737,168.92,92.7094 +368738,167.35,91.643 +368739,165.82,90.61608 +368740,164.31,89.62508 +368741,167.56,92.7812 +368742,166,91.6783 +368743,164.48,90.61574 +368744,162.99,89.58979 +368745,166.2,92.8523 +368746,164.65,91.7134 +368747,163.14,90.61562 +368748,161.66,89.55523 +368749,164.83,92.9224 +368750,163.3,91.7481 +368751,161.8,90.61572 +368752,160.34,89.52143 +368753,163.47,92.9917 +368754,161.95,91.7825 +368755,160.46,90.61607 +368756,159.01,89.4884 +368757,162.1,93.0601 +368758,160.59,91.8166 +368759,159.13,90.61665 +368760,157.69,89.45618 +368761,160.73,93.1275 +368762,159.24,91.8503 +368763,157.79,90.6175 +368764,156.37,89.42479 +368765,159.36,93.194 +368766,157.89,91.8837 +368767,156.45,90.6186 +368768,155.05,89.39425 +368769,157.99,93.2595 +368770,156.53,91.9167 +368771,155.11,90.61998 +368772,153.73,89.3646 +368773,156.62,93.3239 +368774,155.18,91.9494 +368775,153.78,90.62163 +368776,152.41,89.33584 +368777,155.25,93.3873 +368778,153.82,91.9817 +368779,152.44,90.62357 +368780,151.09,89.30801 +368781,153.87,93.4496 +368782,152.47,92.0136 +368783,151.11,90.6258 +368784,149.78,89.28112 +368785,152.5,93.5108 +368786,151.11,92.0451 +368787,149.77,90.62834 +368788,148.46,89.25521 +368789,151.12,93.5709 +368790,149.76,92.0763 +368791,148.43,90.63118 +368792,147.15,89.23029 +368793,149.74,93.6298 +368794,148.4,92.107 +368795,147.1,90.63434 +368796,145.83,89.20638 +368797,148.36,93.6875 +368798,147.04,92.1373 +368799,145.76,90.63783 +368800,144.52,89.1835 +368801,146.98,93.7441 +368802,145.69,92.1672 +368803,144.43,90.64164 +368804,143.21,89.16168 +368805,145.6,93.7994 +368806,144.33,92.1967 +368807,143.1,90.64579 +368808,141.9,89.14094 +368809,144.22,93.8535 +368810,142.97,92.2257 +368811,141.76,90.65029 +368812,140.59,89.12128 +368813,142.84,93.9064 +368814,141.61,92.2543 +368815,140.43,90.65513 +368816,139.28,89.10274 +368817,141.45,93.9579 +368818,140.25,92.2825 +368819,139.09,90.66033 +368820,137.97,89.08533 +368821,140.07,94.0082 +368822,138.89,92.3102 +368823,137.76,90.66589 +368824,136.66,89.06906 +368825,138.68,94.0571 +368826,137.54,92.3374 +368827,136.43,90.67182 +368828,135.36,89.05396 +368829,137.3,94.1047 +368830,136.18,92.3642 +368831,135.1,90.67812 +368832,134.05,89.04004 +368833,135.91,94.151 +368834,134.82,92.3905 +368835,133.76,90.6848 +368836,132.75,89.02732 +368837,134.52,94.1958 +368838,133.46,92.4163 +368839,132.43,90.69186 +368840,131.44,89.01581 +368841,133.13,94.2393 +368842,132.1,92.4417 +368843,131.1,90.69931 +368844,130.14,89.00553 +368845,131.74,94.2814 +368846,130.73,92.4666 +368847,129.77,90.70716 +368848,128.83,88.9965 +368849,130.35,94.322 +368850,129.37,92.4909 +368851,128.44,90.7154 +368852,127.53,88.9887 +368853,128.96,94.3613 +368854,128.01,92.5148 +368855,127.1,90.72404 +368856,126.23,88.9822 +368857,127.57,94.3991 +368858,126.65,92.5382 +368859,125.77,90.73309 +368860,124.93,88.9769 +368861,126.18,94.4354 +368862,125.29,92.5611 +368863,124.44,90.74255 +368864,123.63,88.973 +368865,124.78,94.4702 +368866,123.93,92.5835 +368867,123.11,90.75241 +368868,122.33,88.9703 +368869,123.39,94.5036 +368870,122.56,92.6053 +368871,121.78,90.7627 +368872,121.03,88.969 +368873,121.99,94.5355 +368874,121.2,92.6267 +368875,120.45,90.77341 +368876,119.73,88.969 +368877,120.6,94.5659 +368878,119.84,92.6475 +368879,119.12,90.78453 +368880,118.43,88.9703 +368881,119.2,94.5948 +368882,118.48,92.6678 +368883,117.79,90.79609 +368884,117.14,88.973 +368885,117.8,94.6222 +368886,117.11,92.6876 +368887,116.46,90.80807 +368888,115.84,88.977 +368889,116.41,94.6481 +368890,115.75,92.7069 +368891,115.13,90.82047 +368892,114.54,88.9823 +368893,115.01,94.6724 +368894,114.39,92.7256 +368895,113.8,90.83332 +368896,113.25,88.989 +368897,113.61,94.6952 +368898,113.02,92.7438 +368899,112.47,90.84659 +368900,111.95,88.9971 +368901,112.21,94.7165 +368902,111.66,92.7615 +368903,111.14,90.8603 +368904,110.66,89.00656 +368905,110.81,94.7362 +368906,110.29,92.7786 +368907,109.81,90.87444 +368908,109.36,89.01739 +368909,109.41,94.7544 +368910,108.93,92.7952 +368911,108.48,90.88902 +368912,108.06,89.0296 +368913,108.01,94.7711 +368914,107.56,92.8113 +368915,107.15,90.90404 +368916,106.77,89.04318 +368917,106.61,94.7862 +368918,106.2,92.8269 +368919,105.82,90.9195 +368920,105.48,89.05816 +368921,105.21,94.7998 +368922,104.84,92.8419 +368923,104.49,90.93539 +368924,104.18,89.07451 +368925,103.81,94.8118 +368926,103.47,92.8564 +368927,103.16,90.95172 +368928,102.89,89.09226 +368929,102.41,94.8223 +368930,102.11,92.8703 +368931,101.83,90.96849 +368932,101.59,89.11138 +368933,101.01,94.8313 +368934,100.74,92.8837 +368935,100.51,90.9857 +368936,100.3,89.1319 +368937,99.606,94.8387 +368938,99.375,92.8966 +368939,99.176,91.0033 +368940,99.005,89.1538 +368941,98.205,94.8446 +368942,98.01,92.9089 +368943,97.847,91.0214 +368944,97.711,89.17708 +368945,96.803,94.849 +368946,96.645,92.9207 +368947,96.518,91.0399 +368948,96.417,89.20174 +368949,95.401,94.8519 +368950,95.28,92.932 +368951,95.188,91.0589 +368952,95.123,89.22777 +368953,93.999,94.8532 +368954,93.914,92.9428 +368955,93.859,91.0783 +368956,93.829,89.25518 +368957,92.597,94.8531 +368958,92.549,92.953 +368959,92.53,91.0981 +368960,92.536,89.28396 +368961,91.195,94.8514 +368962,91.184,92.9627 +368963,91.2,91.1183 +368964,91.242,89.3141 +368965,89.793,94.8483 +368966,89.818,92.9719 +368967,89.871,91.139 +368968,89.948,89.34559 +368969,88.391,94.8437 +368970,88.453,92.9806 +368971,88.541,91.1601 +368972,88.653,89.37843 +368973,86.989,94.8376 +368974,87.088,92.9887 +368975,87.212,91.1816 +368976,87.359,89.41261 +368977,85.588,94.8301 +368978,85.722,92.9964 +368979,85.882,91.2035 +368980,86.064,89.44813 +368981,84.186,94.8212 +368982,84.357,93.0035 +368983,84.552,91.2258 +368984,84.77,89.48497 +368985,82.785,94.8108 +368986,82.992,93.0101 +368987,83.223,91.2486 +368988,83.475,89.52312 +368989,81.384,94.799 +368990,81.627,93.0162 +368991,81.893,91.2717 +368992,82.179,89.56257 +368993,79.983,94.7857 +368994,80.261,93.0219 +368995,80.562,91.2953 +368996,80.884,89.60332 +368997,78.582,94.7711 +368998,78.896,93.027 +368999,79.232,91.3192 +369000,79.588,89.64535 +369001,77.182,94.7552 +369002,77.531,93.0317 +369003,77.902,91.3436 +369004,78.292,89.68865 +369005,75.782,94.7379 +369006,76.166,93.0358 +369007,76.571,91.3683 +369008,76.995,89.73321 +369009,74.382,94.7192 +369010,74.802,93.0395 +369011,75.241,91.3934 +369012,75.698,89.779 +369013,72.983,94.6992 +369014,73.437,93.0428 +369015,73.91,91.4189 +369016,74.4,89.82602 +369017,71.584,94.678 +369018,72.072,93.0455 +369019,72.579,91.4448 +369020,73.103,89.87426 +369021,70.186,94.6554 +369022,70.708,93.0478 +369023,71.248,91.471 +369024,71.804,89.923693 +369025,68.788,94.6316 +369026,69.343,93.0496 +369027,69.916,91.4976 +369028,70.505,89.974306 +369029,67.39,94.6065 +369030,67.979,93.051 +369031,68.585,91.5246 +369032,69.206,90.026083 +369033,65.993,94.5802 +369034,66.615,93.052 +369035,67.253,91.5519 +369036,67.906,90.079006 +369037,64.597,94.5527 +369038,65.251,93.0525 +369039,65.921,91.5795 +369040,66.605,90.13306 +369041,63.201,94.5241 +369042,63.887,93.0526 +369043,64.589,91.6075 +369044,65.304,90.18822 +369045,61.806,94.4942 +369046,62.524,93.0522 +369047,63.256,91.6358 +369048,64.002,90.24447 +369049,60.411,94.4633 +369050,61.16,93.0515 +369051,61.923,91.6644 +369052,62.7,90.30179 +369053,59.017,94.4312 +369054,59.797,93.0503 +369055,60.59,91.6934 +369056,61.396,90.36016 +369057,57.624,94.3981 +369058,58.434,93.0488 +369059,59.257,91.7226 +369060,60.093,90.41956 +369061,56.231,94.3639 +369062,57.071,93.0468 +369063,57.924,91.7522 +369064,58.788,90.47996 +369065,54.84,94.3286 +369066,55.709,93.0445 +369067,56.59,91.782 +369068,57.483,90.54135 +369069,53.449,94.2924 +369070,54.346,93.0418 +369071,55.256,91.8122 +369072,56.177,90.6037 +369073,52.058,94.2551 +369074,52.984,93.0387 +369075,53.922,91.8426 +369076,54.87,90.66699 +369077,50.669,94.2169 +369078,51.622,93.0353 +369079,52.587,91.8732 +369080,53.562,90.73119 +369081,49.28,94.1778 +369082,50.261,93.0315 +369083,51.252,91.9042 +369084,52.253,90.79629 +369085,47.892,94.1378 +369086,48.899,93.0273 +369087,49.917,91.9353 +369088,50.944,90.86224 +369089,46.505,94.0969 +369090,47.538,93.0229 +369091,48.581,91.9668 +369092,49.634,90.92904 +369093,45.119,94.0551 +369094,46.177,93.0181 +369095,47.245,91.9984 +369096,48.323,90.99665 +369097,43.734,94.0125 +369098,44.817,93.013 +369099,45.909,92.0303 +369100,47.011,91.0651 +369101,42.349,93.9692 +369102,43.456,93.0076 +369103,44.573,92.0624 +369104,45.698,91.1342 +369105,40.966,93.925 +369106,42.096,93.0019 +369107,43.236,92.0947 +369108,44.384,91.2041 +369109,39.584,93.8802 +369110,40.736,92.9959 +369111,41.899,92.1272 +369112,43.069,91.2747 +369113,38.202,93.8346 +369114,39.377,92.9897 +369115,40.561,92.1598 +369116,41.753,91.346 +369117,36.822,93.7884 +369118,38.018,92.9831 +369119,39.223,92.1927 +369120,40.436,91.4179 +369121,35.442,93.7415 +369122,36.659,92.9764 +369123,37.885,92.2257 +369124,39.118,91.4905 +369125,34.064,93.694 +369126,35.3,92.9693 +369127,36.546,92.2589 +369128,37.799,91.5636 +369129,32.686,93.646 +369130,33.942,92.9621 +369131,35.207,92.2922 +369132,36.479,91.6373 +369133,31.31,93.5974 +369134,32.584,92.9546 +369135,33.868,92.3257 +369136,35.158,91.7115 +369137,29.934,93.5482 +369138,31.227,92.9469 +369139,32.528,92.3592 +369140,33.836,91.7862 +369141,28.56,93.4986 +369142,29.87,92.9389 +369143,31.188,92.3929 +369144,32.513,91.8614 +369145,27.187,93.4485 +369146,28.513,92.9308 +369147,29.847,92.4267 +369148,31.189,91.9371 +369149,25.815,93.3981 +369150,27.156,92.9225 +369151,28.506,92.4606 +369152,29.863,92.0131 +369153,24.444,93.3472 +369154,25.8,92.9141 +369155,27.165,92.4946 +369156,28.537,92.0895 +369157,23.074,93.2959 +369158,24.444,92.9054 +369159,25.823,92.5286 +369160,27.209,92.1663 +369161,21.705,93.2443 +369162,23.089,92.8967 +369163,24.481,92.5627 +369164,25.881,92.2434 +369165,20.338,93.1925 +369166,21.733,92.8877 +369167,23.138,92.5969 +369168,24.551,92.3207 +369169,18.971,93.1403 +369170,20.379,92.8787 +369171,21.795,92.6311 +369172,23.22,92.3983 +369173,17.606,93.088 +369174,19.024,92.8695 +369175,20.452,92.6653 +369176,21.887,92.4761 +369177,16.242,93.0354 +369178,17.67,92.8602 +369179,19.108,92.6995 +369180,20.554,92.5541 +369181,14.879,92.9827 +369182,16.317,92.8508 +369183,17.764,92.7338 +369184,19.219,92.6322 +369185,13.517,92.9298 +369186,14.963,92.8414 +369187,16.419,92.768 +369188,17.884,92.7105 +369189,12.157,92.8769 +369190,13.61,92.8318 +369191,15.074,92.8022 +369192,16.547,92.7888 +369193,10.797,92.8238 +369194,12.258,92.8222 +369195,13.728,92.8364 +369196,15.208,92.8672 +369197,9.4393,92.7708 +369198,10.906,92.8125 +369199,12.383,92.8705 +369200,13.869,92.9455 +369201,8.0823,92.7177 +369202,9.5537,92.8028 +369203,11.036,92.9046 +369204,12.528,93.0239 +369205,6.7265,92.6647 +369206,8.2023,92.7931 +369207,9.6893,92.9387 +369208,11.186,93.1022 +369209,5.3718,92.6117 +369210,6.8512,92.7833 +369211,8.3421,92.9726 +369212,9.8432,93.1804 +369213,4.0184,92.5588 +369214,5.5006,92.7735 +369215,6.9944,93.0065 +369216,8.4989,93.2585 +369217,2.6662,92.5061 +369218,4.1503,92.7638 +369219,5.6463,93.0403 +369220,7.1533,93.3364 +369221,1.3152,92.4535 +369222,2.8004,92.754 +369223,4.2977,93.0739 +369224,5.8065,93.4141 +369225,359.97,92.4011 +369226,1.4508,92.7442 +369227,2.9488,93.1075 +369228,4.4585,93.4916 +369229,358.62,92.3489 +369230,0.10167,92.7345 +369231,1.5994,93.1409 +369232,3.1092,93.5689 +369233,357.27,92.297 +369234,358.75,92.7249 +369235,0.24952,93.1742 +369236,1.7587,93.6458 +369237,355.92,92.2453 +369238,357.4,92.7153 +369239,358.9,93.2073 +369240,0.40692,93.7224 +369241,354.58,92.194 +369242,356.06,92.7057 +369243,357.55,93.2402 +369244,359.05,93.7987 +369245,353.23,92.143 +369246,354.71,92.6962 +369247,356.2,93.273 +369248,357.7,93.8745 +369249,351.89,92.0924 +369250,353.36,92.6868 +369251,354.85,93.3056 +369252,356.34,93.9499 +369253,350.55,92.0422 +369254,352.01,92.6776 +369255,353.49,93.338 +369256,354.99,94.0249 +369257,349.21,91.9924 +369258,350.67,92.6684 +369259,352.14,93.3702 +369260,353.63,94.0993 +369261,347.87,91.9431 +369262,349.32,92.6593 +369263,350.79,93.4022 +369264,352.27,94.1732 +369265,346.53,91.8943 +369266,347.98,92.6504 +369267,349.44,93.4339 +369268,350.91,94.2465 +369269,345.2,91.8461 +369270,346.63,92.6416 +369271,348.08,93.4654 +369272,349.55,94.3193 +369273,343.86,91.7983 +369274,345.29,92.6329 +369275,346.73,93.4967 +369276,348.19,94.3914 +369277,342.53,91.7512 +369278,343.94,92.6244 +369279,345.37,93.5276 +369280,346.82,94.4628 +369281,341.19,91.7047 +369282,342.6,92.6161 +369283,344.02,93.5584 +369284,345.46,94.5335 +369285,339.86,91.6588 +369286,341.25,92.608 +369287,342.66,93.5888 +369288,344.09,94.6035 +369289,338.53,91.6136 +369290,339.91,92.6 +369291,341.31,93.6189 +369292,342.72,94.6728 +369293,337.2,91.5691 +369294,338.57,92.5922 +369295,339.95,93.6488 +369296,341.35,94.7412 +369297,335.87,91.5254 +369298,337.22,92.5847 +369299,338.59,93.6783 +369300,339.98,94.8089 +369301,334.54,91.4824 +369302,335.88,92.5773 +369303,337.24,93.7075 +369304,338.61,94.8756 +369305,333.21,91.4401 +369306,334.54,92.5702 +369307,335.88,93.7363 +369308,337.24,94.9415 +369309,331.89,91.3987 +369310,333.2,92.5633 +369311,334.52,93.7649 +369312,335.87,95.0065 +369313,330.56,91.3581 +369314,331.85,92.5567 +369315,333.16,93.793 +369316,334.49,95.0705 +369317,329.24,91.3183 +369318,330.51,92.5503 +369319,331.81,93.8208 +369320,333.12,95.1335 +369321,327.92,91.2794 +369322,329.17,92.5442 +369323,330.45,93.8483 +369324,331.74,95.1955 +369325,326.6,91.2415 +369326,327.83,92.5383 +369327,329.09,93.8753 +369328,330.37,95.2565 +369329,325.28,91.2044 +369330,326.49,92.5327 +369331,327.73,93.902 +369332,328.99,95.3165 +369333,323.96,91.1684 +369334,325.15,92.5274 +369335,326.37,93.9283 +369336,327.61,95.3753 +369337,322.64,91.1332 +369338,323.81,92.5224 +369339,325.01,93.9542 +369340,326.23,95.4331 +369341,321.32,91.0991 +369342,322.47,92.5177 +369343,323.65,93.9796 +369344,324.84,95.4897 +369345,320,91.066 +369346,321.13,92.5132 +369347,322.29,94.0047 +369348,323.46,95.5451 +369349,318.68,91.034 +369350,319.79,92.5092 +369351,320.93,94.0293 +369352,322.08,95.5994 +369353,317.37,91.003 +369354,318.46,92.5054 +369355,319.56,94.0534 +369356,320.69,95.6524 +369357,316.05,90.97307 +369358,317.12,92.5019 +369359,318.2,94.0772 +369360,319.31,95.7042 +369361,314.74,90.94425 +369362,315.78,92.4988 +369363,316.84,94.1005 +369364,317.92,95.7547 +369365,313.43,90.91656 +369366,314.44,92.4961 +369367,315.48,94.1233 +369368,316.54,95.8039 +369369,312.12,90.89001 +369370,313.1,92.4936 +369371,314.11,94.1456 +369372,315.15,95.8519 +369373,310.8,90.86461 +369374,311.77,92.4916 +369375,312.75,94.1675 +369376,313.76,95.8985 +369377,309.49,90.84039 +369378,310.43,92.4899 +369379,311.39,94.1889 +369380,312.37,95.9437 +369381,308.18,90.81735 +369382,309.09,92.4885 +369383,310.02,94.2098 +369384,310.98,95.9876 +369385,306.87,90.79553 +369386,307.76,92.4876 +369387,308.66,94.2302 +369388,309.59,96.0301 +369389,305.57,90.77493 +369390,306.42,92.487 +369391,307.3,94.2502 +369392,308.19,96.0712 +369393,304.26,90.75556 +369394,305.08,92.4868 +369395,305.93,94.2696 +369396,306.8,96.1109 +369397,302.95,90.73745 +369398,303.75,92.487 +369399,304.57,94.2885 +369400,305.41,96.1491 +369401,301.64,90.72061 +369402,302.41,92.4875 +369403,303.2,94.3069 +369404,304.01,96.1859 +369405,300.34,90.70504 +369406,301.08,92.4885 +369407,301.84,94.3248 +369408,302.62,96.2212 +369409,299.03,90.69077 +369410,299.74,92.4899 +369411,300.47,94.3422 +369412,301.22,96.255 +369413,297.73,90.6778 +369414,298.41,92.4917 +369415,299.11,94.359 +369416,299.83,96.2873 +369417,296.42,90.66615 +369418,297.07,92.4938 +369419,297.74,94.3753 +369420,298.43,96.3181 +369421,295.12,90.65583 +369422,295.74,92.4964 +369423,296.37,94.3911 +369424,297.03,96.3474 +369425,293.82,90.64684 +369426,294.4,92.4995 +369427,295.01,94.4063 +369428,295.64,96.3751 +369429,292.51,90.63919 +369430,293.07,92.5029 +369431,293.64,94.421 +369432,294.24,96.4013 +369433,291.21,90.6329 +369434,291.73,92.5067 +369435,292.27,94.4351 +369436,292.84,96.4259 +369437,289.91,90.62797 +369438,290.4,92.511 +369439,290.91,94.4487 +369440,291.44,96.4489 +369441,288.61,90.62442 +369442,289.06,92.5157 +369443,289.54,94.4618 +369444,290.04,96.4704 +369445,287.3,90.62223 +369446,287.73,92.5209 +369447,288.17,94.4743 +369448,288.64,96.4903 +369449,286,90.62143 +369450,286.39,92.5264 +369451,286.81,94.4862 +369452,287.24,96.5086 +369453,284.7,90.62202 +369454,285.06,92.5324 +369455,285.44,94.4976 +369456,285.84,96.5254 +369457,283.4,90.624 +369458,283.73,92.5389 +369459,284.07,94.5084 +369460,284.44,96.5405 +369461,282.1,90.62737 +369462,282.39,92.5457 +369463,282.7,94.5187 +369464,283.04,96.554 +369465,280.8,90.63214 +369466,281.06,92.553 +369467,281.34,94.5284 +369468,281.63,96.5659 +369469,279.5,90.63832 +369470,279.72,92.5608 +369471,279.97,94.5375 +369472,280.23,96.5762 +369473,278.2,90.6459 +369474,278.39,92.569 +369475,278.6,94.5461 +369476,278.83,96.5849 +369477,276.9,90.65488 +369478,277.06,92.5776 +369479,277.23,94.5541 +369480,277.43,96.592 +369481,275.6,90.66526 +369482,275.72,92.5866 +369483,275.87,94.5616 +369484,276.03,96.5975 +369485,274.3,90.67705 +369486,274.39,92.5961 +369487,274.5,94.5684 +369488,274.62,96.6014 +369489,273,90.69024 +369490,273.06,92.6061 +369491,273.13,94.5748 +369492,273.22,96.6036 +369493,271.7,90.70484 +369494,271.72,92.6164 +369495,271.76,94.5805 +369496,271.82,96.6043 +369497,270.4,90.72083 +369498,270.39,92.6272 +369499,270.39,94.5857 +369500,270.42,96.6034 +369501,269.1,90.73822 +369502,269.05,92.6385 +369503,269.03,94.5904 +369504,269.01,96.6009 +369505,267.8,90.757 +369506,267.72,92.6501 +369507,267.66,94.5945 +369508,267.61,96.5968 +369509,266.5,90.77717 +369510,266.39,92.6622 +369511,266.29,94.598 +369512,266.21,96.5911 +369513,265.2,90.79872 +369514,265.05,92.6748 +369515,264.92,94.601 +369516,264.8,96.5838 +369517,263.9,90.82165 +369518,263.72,92.6877 +369519,263.55,94.6034 +369520,263.4,96.575 +369521,262.6,90.84594 +369522,262.38,92.7011 +369523,262.19,94.6053 +369524,262,96.5646 +369525,261.3,90.8716 +369526,261.05,92.7149 +369527,260.82,94.6066 +369528,260.6,96.5527 +369529,259.99,90.89861 +369530,259.72,92.7291 +369531,259.45,94.6074 +369532,259.2,96.5393 +369533,258.69,90.92697 +369534,258.38,92.7438 +369535,258.08,94.6077 +369536,257.79,96.5243 +369537,257.39,90.95667 +369538,257.05,92.7588 +369539,256.71,94.6074 +369540,256.39,96.5078 +369541,256.09,90.98769 +369542,255.71,92.7743 +369543,255.35,94.6066 +369544,254.99,96.4899 +369545,254.79,91.02 +369546,254.38,92.7901 +369547,253.98,94.6053 +369548,253.59,96.4704 +369549,253.48,91.0537 +369550,253.04,92.8064 +369551,252.61,94.6034 +369552,252.19,96.4495 +369553,252.18,91.0886 +369554,251.71,92.823 +369555,251.24,94.601 +369556,250.79,96.4271 +369557,250.88,91.1248 +369558,250.37,92.8401 +369559,249.88,94.5981 +369560,249.39,96.4033 +369561,249.57,91.1623 +369562,249.04,92.8575 +369563,248.51,94.5947 +369564,247.99,96.3781 +369565,248.27,91.201 +369566,247.7,92.8753 +369567,247.14,94.5908 +369568,246.59,96.3514 +369569,246.96,91.241 +369570,246.37,92.8935 +369571,245.78,94.5865 +369572,245.2,96.3234 +369573,245.66,91.2822 +369574,245.03,92.9121 +369575,244.41,94.5816 +369576,243.8,96.2941 +369577,244.35,91.3246 +369578,243.69,92.931 +369579,243.04,94.5762 +369580,242.4,96.2633 +369581,243.05,91.3681 +369582,242.36,92.9503 +369583,241.68,94.5703 +369584,241,96.2313 +369585,241.74,91.4129 +369586,241.02,92.9699 +369587,240.31,94.564 +369588,239.61,96.198 +369589,240.43,91.4588 +369590,239.68,92.9899 +369591,238.95,94.5572 +369592,238.21,96.1633 +369593,239.12,91.5058 +369594,238.35,93.0102 +369595,237.58,94.55 +369596,236.82,96.1274 +369597,237.81,91.554 +369598,237.01,93.0309 +369599,236.21,94.5423 +369600,235.42,96.0903 +369601,236.5,91.6033 +369602,235.67,93.0519 +369603,234.85,94.5341 +369604,234.03,96.052 +369605,235.19,91.6536 +369606,234.34,93.0732 +369607,233.48,94.5255 +369608,232.64,96.0125 +369609,233.88,91.705 +369610,233,93.0948 +369611,232.12,94.5165 +369612,231.24,95.9718 +369613,232.57,91.7574 +369614,231.66,93.1167 +369615,230.75,94.5071 +369616,229.85,95.93 +369617,231.26,91.8108 +369618,230.32,93.1389 +369619,229.39,94.4972 +369620,228.46,95.887 +369621,229.94,91.8653 +369622,228.98,93.1614 +369623,228.03,94.487 +369624,227.07,95.843 +369625,228.63,91.9207 +369626,227.64,93.1842 +369627,226.66,94.4763 +369628,225.68,95.798 +369629,227.31,91.977 +369630,226.3,93.2073 +369631,225.3,94.4653 +369632,224.3,95.7519 +369633,226,92.0343 +369634,224.96,93.2306 +369635,223.93,94.4538 +369636,222.91,95.7047 +369637,224.68,92.0924 +369638,223.62,93.2542 +369639,222.57,94.4421 +369640,221.52,95.6567 +369641,223.36,92.1514 +369642,222.28,93.278 +369643,221.21,94.4299 +369644,220.14,95.6076 +369645,222.04,92.2113 +369646,220.94,93.3021 +369647,219.85,94.4174 +369648,218.75,95.5577 +369649,220.72,92.272 +369650,219.6,93.3264 +369651,218.48,94.4045 +369652,217.37,95.5068 +369653,219.4,92.3335 +369654,218.26,93.3509 +369655,217.12,94.3914 +369656,215.99,95.4551 +369657,218.08,92.3957 +369658,216.92,93.3756 +369659,215.76,94.3778 +369660,214.6,95.4026 +369661,216.76,92.4587 +369662,215.58,93.4005 +369663,214.4,94.364 +369664,213.22,95.3493 +369665,215.44,92.5224 +369666,214.24,93.4256 +369667,213.04,94.3499 +369668,211.84,95.2952 +369669,214.11,92.5867 +369670,212.89,93.4509 +369671,211.68,94.3355 +369672,210.46,95.2403 +369673,212.79,92.6518 +369674,211.55,93.4764 +369675,210.32,94.3208 +369676,209.09,95.1848 +369677,211.46,92.7174 +369678,210.21,93.502 +369679,208.96,94.3058 +369680,207.71,95.1286 +369681,210.13,92.7837 +369682,208.86,93.5278 +369683,207.6,94.2906 +369684,206.33,95.0717 +369685,208.8,92.8505 +369686,207.52,93.5537 +369687,206.24,94.2751 +369688,204.96,95.0143 +369689,207.47,92.9178 +369690,206.18,93.5797 +369691,204.88,94.2593 +369692,203.59,94.9562 +369693,206.14,92.9857 +369694,204.83,93.6059 +369695,203.52,94.2433 +369696,202.21,94.8977 +369697,204.81,93.054 +369698,203.49,93.6322 +369699,202.16,94.2272 +369700,200.84,94.8386 +369701,203.48,93.1227 +369702,202.14,93.6585 +369703,200.81,94.2108 +369704,199.47,94.779 +369705,202.14,93.1919 +369706,200.79,93.685 +369707,199.45,94.1941 +369708,198.1,94.719 +369709,200.81,93.2615 +369710,199.45,93.7115 +369711,198.09,94.1774 +369712,196.74,94.6585 +369713,199.47,93.3314 +369714,198.1,93.7382 +369715,196.73,94.1604 +369716,195.37,94.5977 +369717,198.13,93.4016 +369718,196.76,93.7648 +369719,195.38,94.1433 +369720,194,94.5366 +369721,196.8,93.4721 +369722,195.41,93.7915 +369723,194.02,94.126 +369724,192.64,94.4751 +369725,195.46,93.5428 +369726,194.06,93.8183 +369727,192.67,94.1085 +369728,191.27,94.4133 +369729,194.11,93.6138 +369730,192.71,93.845 +369731,191.31,94.091 +369732,189.91,94.3513 +369733,192.77,93.6849 +369734,191.36,93.8718 +369735,189.96,94.0733 +369736,188.55,94.2891 +369737,191.43,93.7562 +369738,190.01,93.8985 +369739,188.6,94.0555 +369740,187.19,94.2267 +369741,190.08,93.8277 +369742,188.67,93.9253 +369743,187.25,94.0376 +369744,185.83,94.1642 +369745,188.74,93.8991 +369746,187.32,93.952 +369747,185.89,94.0196 +369748,184.48,94.1015 +369749,187.39,93.9707 +369750,185.97,93.9787 +369751,184.54,94.0015 +369752,183.12,94.0388 +369753,186.04,94.0423 +369754,184.61,94.0054 +369755,183.19,93.9834 +369756,181.76,93.9761 +369757,184.7,94.1138 +369758,183.26,94.032 +369759,181.83,93.9652 +369760,180.41,93.9133 +369761,183.34,94.1853 +369762,181.91,94.0585 +369763,180.48,93.947 +369764,179.06,93.8505 +369765,181.99,94.2567 +369766,180.56,94.0849 +369767,179.13,93.9287 +369768,177.7,93.7878 +369769,180.64,94.328 +369770,179.21,94.1113 +369771,177.78,93.9104 +369772,176.35,93.7252 +369773,179.29,94.3991 +369774,177.86,94.1375 +369775,176.43,93.8921 +369776,175,93.6627 +369777,177.93,94.47 +369778,176.5,94.1637 +369779,175.08,93.8739 +369780,173.66,93.6004 +369781,176.57,94.5407 +369782,175.15,94.1897 +369783,173.73,93.8556 +369784,172.31,93.5383 +369785,175.22,94.6112 +369786,173.8,94.2155 +369787,172.38,93.8373 +369788,170.96,93.4764 +369789,173.86,94.6813 +369790,172.44,94.2413 +369791,171.03,93.8191 +369792,169.62,93.4147 +369793,172.5,94.7512 +369794,171.09,94.2668 +369795,169.68,93.8009 +369796,168.28,93.3533 +369797,171.14,94.8206 +369798,169.73,94.2922 +369799,168.33,93.7828 +369800,166.93,93.2923 +369801,169.78,94.8897 +369802,168.38,94.3174 +369803,166.98,93.7648 +369804,165.59,93.2315 +369805,168.41,94.9584 +369806,167.02,94.3424 +369807,165.63,93.7468 +369808,164.25,93.1712 +369809,167.05,95.0265 +369810,165.66,94.3672 +369811,164.29,93.7289 +369812,162.91,93.1113 +369813,165.68,95.0942 +369814,164.31,94.3918 +369815,162.94,93.7112 +369816,161.57,93.0518 +369817,164.32,95.1614 +369818,162.95,94.4162 +369819,161.59,93.6935 +369820,160.24,92.9928 +369821,162.95,95.228 +369822,161.59,94.4403 +369823,160.25,93.676 +369824,158.9,92.9343 +369825,161.58,95.294 +369826,160.24,94.4642 +369827,158.9,93.6586 +369828,157.57,92.8764 +369829,160.21,95.3593 +369830,158.88,94.4878 +369831,157.55,93.6413 +369832,156.23,92.819 +369833,158.84,95.424 +369834,157.52,94.5112 +369835,156.21,93.6242 +369836,154.9,92.7622 +369837,157.46,95.488 +369838,156.16,94.5343 +369839,154.86,93.6072 +369840,153.57,92.706 +369841,156.09,95.5513 +369842,154.8,94.557 +369843,153.52,93.5904 +369844,152.24,92.6505 +369845,154.72,95.6138 +369846,153.44,94.5795 +369847,152.17,93.5738 +369848,150.91,92.5956 +369849,153.34,95.6755 +369850,152.08,94.6017 +369851,150.83,93.5574 +369852,149.58,92.5415 +369853,151.96,95.7364 +369854,150.72,94.6235 +369855,149.49,93.5412 +369856,148.26,92.4881 +369857,150.59,95.7965 +369858,149.36,94.645 +369859,148.14,93.5252 +369860,146.93,92.4355 +369861,149.21,95.8556 +369862,148,94.6662 +369863,146.8,93.5094 +369864,145.61,92.3836 +369865,147.83,95.9139 +369866,146.64,94.6871 +369867,145.46,93.4939 +369868,144.28,92.3326 +369869,146.45,95.9712 +369870,145.28,94.7075 +369871,144.11,93.4786 +369872,142.96,92.2824 +369873,145.07,96.0275 +369874,143.92,94.7276 +369875,142.77,93.4635 +369876,141.64,92.2331 +369877,143.68,96.0828 +369878,142.55,94.7473 +369879,141.43,93.4487 +369880,140.31,92.1846 +369881,142.3,96.1371 +369882,141.19,94.7667 +369883,140.09,93.4342 +369884,138.99,92.1371 +369885,140.91,96.1904 +369886,139.83,94.7856 +369887,138.75,93.4199 +369888,137.67,92.0906 +369889,139.53,96.2425 +369890,138.46,94.8041 +369891,137.41,93.4059 +369892,136.36,92.045 +369893,138.14,96.2935 +369894,137.1,94.8222 +369895,136.07,93.3922 +369896,135.04,92.0003 +369897,136.75,96.3434 +369898,135.74,94.8399 +369899,134.73,93.3788 +369900,133.72,91.9567 +369901,135.37,96.3921 +369902,134.37,94.8572 +369903,133.39,93.3657 +369904,132.41,91.9142 +369905,133.98,96.4397 +369906,133.01,94.874 +369907,132.05,93.3529 +369908,131.09,91.8727 +369909,132.59,96.486 +369910,131.64,94.8904 +369911,130.71,93.3405 +369912,129.78,91.8322 +369913,131.2,96.531 +369914,130.28,94.9063 +369915,129.37,93.3283 +369916,128.46,91.7929 +369917,129.81,96.5748 +369918,128.91,94.9218 +369919,128.03,93.3165 +369920,127.15,91.7546 +369921,128.41,96.6173 +369922,127.55,94.9368 +369923,126.69,93.3051 +369924,125.84,91.7175 +369925,127.02,96.6585 +369926,126.18,94.9513 +369927,125.35,93.2939 +369928,124.52,91.6816 +369929,125.63,96.6984 +369930,124.82,94.9654 +369931,124.01,93.2832 +369932,123.21,91.6468 +369933,124.23,96.7369 +369934,123.45,94.9789 +369935,122.67,93.2728 +369936,121.9,91.6132 +369937,122.84,96.774 +369938,122.08,94.992 +369939,121.34,93.2627 +369940,120.59,91.5808 +369941,121.44,96.8097 +369942,120.72,95.0045 +369943,120,93.253 +369944,119.28,91.5497 +369945,120.05,96.8441 +369946,119.35,95.0166 +369947,118.66,93.2437 +369948,117.98,91.5197 +369949,118.65,96.8769 +369950,117.98,95.0281 +369951,117.32,93.2348 +369952,116.67,91.491 +369953,117.25,96.9084 +369954,116.62,95.0392 +369955,115.99,93.2263 +369956,115.36,91.4636 +369957,115.86,96.9384 +369958,115.25,95.0497 +369959,114.65,93.2182 +369960,114.05,91.4375 +369961,114.46,96.9668 +369962,113.88,95.0596 +369963,113.31,93.2104 +369964,112.75,91.4127 +369965,113.06,96.9938 +369966,112.52,95.0691 +369967,111.98,93.2031 +369968,111.44,91.3891 +369969,111.66,97.0193 +369970,111.15,95.078 +369971,110.64,93.1961 +369972,110.14,91.3669 +369973,110.26,97.0432 +369974,109.78,95.0863 +369975,109.3,93.1896 +369976,108.83,91.346 +369977,108.86,97.0656 +369978,108.41,95.0941 +369979,107.97,93.1835 +369980,107.53,91.3264 +369981,107.46,97.0865 +369982,107.04,95.1014 +369983,106.63,93.1778 +369984,106.22,91.3082 +369985,106.06,97.1058 +369986,105.67,95.1081 +369987,105.3,93.1725 +369988,104.92,91.2914 +369989,104.66,97.1235 +369990,104.31,95.1143 +369991,103.96,93.1676 +369992,103.61,91.2759 +369993,103.26,97.1396 +369994,102.94,95.1199 +369995,102.62,93.1632 +369996,102.31,91.2618 +369997,101.85,97.1541 +369998,101.57,95.1249 +369999,101.29,93.1592 +370000,101.01,91.249 +370001,100.45,97.1671 +370002,100.2,95.1294 +370003,99.952,93.1556 +370004,99.705,91.2377 +370005,99.05,97.1784 +370006,98.832,95.1333 +370007,98.616,93.1525 +370008,98.402,91.2277 +370009,97.648,97.1881 +370010,97.463,95.1367 +370011,97.281,93.1497 +370012,97.1,91.2192 +370013,96.245,97.1962 +370014,96.095,95.1395 +370015,95.945,93.1475 +370016,95.797,91.212 +370017,94.842,97.2027 +370018,94.726,95.1417 +370019,94.61,93.1456 +370020,94.495,91.2062 +370021,93.44,97.2075 +370022,93.357,95.1433 +370023,93.275,93.1442 +370024,93.193,91.2019 +370025,92.037,97.2107 +370026,91.988,95.1444 +370027,91.939,93.1432 +370028,91.891,91.1989 +370029,90.634,97.2123 +370030,90.619,95.1449 +370031,90.604,93.1427 +370032,90.589,91.1974 +370033,89.231,97.2123 +370034,89.25,95.1448 +370035,89.268,93.1426 +370036,89.287,91.1973 +370037,87.828,97.2106 +370038,87.881,95.1441 +370039,87.933,93.1429 +370040,87.984,91.1986 +370041,86.426,97.2073 +370042,86.512,95.1429 +370043,86.598,93.1437 +370044,86.682,91.2013 +370045,85.023,97.2023 +370046,85.143,95.1411 +370047,85.262,93.1449 +370048,85.38,91.2054 +370049,83.62,97.1957 +370050,83.774,95.1387 +370051,83.927,93.1465 +370052,84.078,91.2109 +370053,82.218,97.1875 +370054,82.406,95.1358 +370055,82.591,93.1486 +370056,82.775,91.2178 +370057,80.816,97.1777 +370058,81.037,95.1323 +370059,81.256,93.1511 +370060,81.473,91.2261 +370061,79.413,97.1663 +370062,79.668,95.1282 +370063,79.92,93.1541 +370064,80.17,91.2358 +370065,78.011,97.1532 +370066,78.3,95.1236 +370067,78.585,93.1574 +370068,78.867,91.247 +370069,76.61,97.1386 +370070,76.931,95.1184 +370071,77.249,93.1612 +370072,77.564,91.2594 +370073,75.208,97.1224 +370074,75.563,95.1126 +370075,75.913,93.1655 +370076,76.261,91.2733 +370077,73.807,97.1045 +370078,74.194,95.1063 +370079,74.577,93.1701 +370080,74.957,91.2886 +370081,72.407,97.0852 +370082,72.826,95.0994 +370083,73.241,93.1752 +370084,73.653,91.3052 +370085,71.006,97.0642 +370086,71.458,95.092 +370087,71.905,93.1807 +370088,72.349,91.3231 +370089,69.606,97.0417 +370090,70.09,95.084 +370091,70.569,93.1866 +370092,71.044,91.3424 +370093,68.206,97.0176 +370094,68.722,95.0755 +370095,69.232,93.1929 +370096,69.739,91.3631 +370097,66.807,96.992 +370098,67.354,95.0664 +370099,67.896,93.1997 +370100,68.433,91.3851 +370101,65.409,96.965 +370102,65.987,95.0568 +370103,66.559,93.2068 +370104,67.127,91.4084 +370105,64.01,96.9364 +370106,64.619,95.0467 +370107,65.222,93.2143 +370108,65.821,91.433 +370109,62.613,96.9063 +370110,63.252,95.036 +370111,63.885,93.2223 +370112,64.514,91.4588 +370113,61.215,96.8747 +370114,61.885,95.0248 +370115,62.548,93.2306 +370116,63.207,91.486 +370117,59.819,96.8417 +370118,60.518,95.0131 +370119,61.211,93.2393 +370120,61.899,91.5145 +370121,58.423,96.8073 +370122,59.151,95.0009 +370123,59.873,93.2484 +370124,60.59,91.5441 +370125,57.027,96.7714 +370126,57.785,94.9882 +370127,58.536,93.2579 +370128,59.281,91.5751 +370129,55.633,96.7342 +370130,56.419,94.975 +370131,57.198,93.2677 +370132,57.972,91.6072 +370133,54.239,96.6956 +370134,55.053,94.9613 +370135,55.86,93.2779 +370136,56.661,91.6406 +370137,52.845,96.6556 +370138,53.687,94.947 +370139,54.521,93.2885 +370140,55.35,91.6751 +370141,51.452,96.6143 +370142,52.321,94.9324 +370143,53.183,93.2994 +370144,54.039,91.7108 +370145,50.06,96.5717 +370146,50.956,94.9172 +370147,51.844,93.3107 +370148,52.726,91.7477 +370149,48.669,96.5277 +370150,49.591,94.9016 +370151,50.505,93.3223 +370152,51.413,91.7857 +370153,47.279,96.4826 +370154,48.226,94.8855 +370155,49.166,93.3342 +370156,50.1,91.8248 +370157,45.889,96.4361 +370158,46.861,94.8689 +370159,47.826,93.3465 +370160,48.785,91.865 +370161,44.5,96.3885 +370162,45.497,94.8519 +370163,46.487,93.3591 +370164,47.47,91.9063 +370165,43.112,96.3396 +370166,44.133,94.8345 +370167,45.147,93.372 +370168,46.154,91.9486 +370169,41.725,96.2896 +370170,42.769,94.8167 +370171,43.806,93.3852 +370172,44.837,91.992 +370173,40.339,96.2385 +370174,41.406,94.7984 +370175,42.466,93.3987 +370176,43.519,92.0364 +370177,38.953,96.1862 +370178,40.043,94.7797 +370179,41.125,93.4124 +370180,42.2,92.0817 +370181,37.569,96.1328 +370182,38.68,94.7606 +370183,39.784,93.4265 +370184,40.881,92.1281 +370185,36.185,96.0784 +370186,37.318,94.7411 +370187,38.442,93.4409 +370188,39.56,92.1753 +370189,34.803,96.023 +370190,35.955,94.7212 +370191,37.101,93.4555 +370192,38.239,92.2235 +370193,33.421,95.9665 +370194,34.593,94.701 +370195,35.758,93.4703 +370196,36.917,92.2726 +370197,32.041,95.9091 +370198,33.232,94.6803 +370199,34.416,93.4854 +370200,35.594,92.3226 +370201,30.661,95.8507 +370202,31.871,94.6593 +370203,33.073,93.5008 +370204,34.269,92.3734 +370205,29.282,95.7914 +370206,30.51,94.638 +370207,31.73,93.5164 +370208,32.944,92.425 +370209,27.905,95.7312 +370210,29.149,94.6163 +370211,30.387,93.5322 +370212,31.618,92.4774 +370213,26.528,95.6702 +370214,27.789,94.5943 +370215,29.043,93.5482 +370216,30.291,92.5306 +370217,25.153,95.6083 +370218,26.429,94.572 +370219,27.699,93.5644 +370220,28.963,92.5845 +370221,23.778,95.5456 +370222,25.07,94.5493 +370223,26.355,93.5808 +370224,27.634,92.6391 +370225,22.405,95.4822 +370226,23.711,94.5264 +370227,25.01,93.5974 +370228,26.304,92.6944 +370229,21.033,95.4181 +370230,22.352,94.5031 +370231,23.665,93.6142 +370232,24.972,92.7504 +370233,19.661,95.3532 +370234,20.994,94.4796 +370235,22.32,93.6311 +370236,23.64,92.8069 +370237,18.291,95.2877 +370238,19.636,94.4558 +370239,20.974,93.6482 +370240,22.306,92.8641 +370241,16.922,95.2216 +370242,18.278,94.4318 +370243,19.628,93.6654 +370244,20.972,92.9219 +370245,15.555,95.1549 +370246,16.921,94.4075 +370247,18.282,93.6827 +370248,19.636,92.9801 +370249,14.188,95.0876 +370250,15.564,94.383 +370251,16.935,93.7002 +370252,18.3,93.0389 +370253,12.822,95.0197 +370254,14.207,94.3582 +370255,15.587,93.7178 +370256,16.962,93.0982 +370257,11.458,94.9514 +370258,12.851,94.3332 +370259,14.24,93.7355 +370260,15.623,93.1579 +370261,10.095,94.8826 +370262,11.496,94.308 +370263,12.892,93.7533 +370264,14.283,93.218 +370265,8.7328,94.8134 +370266,10.14,94.2827 +370267,11.544,93.7711 +370268,12.941,93.2785 +370269,7.3719,94.7437 +370270,8.7855,94.2571 +370271,10.195,93.7891 +370272,11.599,93.3393 +370273,6.0122,94.6737 +370274,7.431,94.2314 +370275,8.8458,93.807 +370276,10.255,93.4005 +370277,4.6537,94.6034 +370278,6.0769,94.2055 +370279,7.4964,93.8251 +370280,8.9108,93.462 +370281,3.2963,94.5328 +370282,4.7232,94.1795 +370283,6.1465,93.8431 +370284,7.5649,93.5237 +370285,1.9402,94.4619 +370286,3.3699,94.1533 +370287,4.7963,93.8612 +370288,6.2179,93.5856 +370289,0.58521,94.3909 +370290,2.017,94.127 +370291,3.4457,93.8793 +370292,4.8697,93.6477 +370293,359.23,94.3196 +370294,0.66453,94.1006 +370295,2.0947,93.8974 +370296,3.5203,93.71 +370297,357.88,94.2481 +370298,359.31,94.074 +370299,0.74326,93.9155 +370300,2.1697,93.7724 +370301,356.53,94.1766 +370302,357.96,94.0474 +370303,359.39,93.9336 +370304,0.81796,93.8349 +370305,355.18,94.1049 +370306,356.61,94.0207 +370307,358.04,93.9517 +370308,359.47,93.8975 +370309,353.83,94.0332 +370310,355.26,93.994 +370311,356.69,93.9697 +370312,358.11,93.9601 +370313,352.48,93.9615 +370314,353.91,93.9672 +370315,355.33,93.9876 +370316,356.76,94.0226 +370317,351.13,93.8898 +370318,352.56,93.9403 +370319,353.98,94.0055 +370320,355.4,94.0852 +370321,349.79,93.8181 +370322,351.21,93.9134 +370323,352.63,94.0233 +370324,354.04,94.1476 +370325,348.44,93.7465 +370326,349.86,93.8865 +370327,351.27,94.0411 +370328,352.68,94.21 +370329,347.1,93.675 +370330,348.51,93.8595 +370331,349.92,94.0587 +370332,351.32,94.2722 +370333,345.76,93.6037 +370334,347.16,93.8326 +370335,348.56,94.0762 +370336,349.96,94.3342 +370337,344.42,93.5326 +370338,345.81,93.8057 +370339,347.21,94.0936 +370340,348.6,94.396 +370341,343.08,93.4617 +370342,344.47,93.7788 +370343,345.85,94.1109 +370344,347.24,94.4576 +370345,341.74,93.391 +370346,343.12,93.7519 +370347,344.5,94.128 +370348,345.87,94.5189 +370349,340.4,93.3206 +370350,341.77,93.7251 +370351,343.14,94.1449 +370352,344.51,94.5798 +370353,339.07,93.2505 +370354,340.43,93.6983 +370355,341.78,94.1617 +370356,343.14,94.6405 +370357,337.73,93.1808 +370358,339.08,93.6716 +370359,340.43,94.1784 +370360,341.77,94.7007 +370361,336.4,93.1114 +370362,337.73,93.6449 +370363,339.07,94.1948 +370364,340.4,94.7606 +370365,335.06,93.0425 +370366,336.39,93.6184 +370367,337.71,94.211 +370368,339.03,94.82 +370369,333.73,92.974 +370370,335.04,93.592 +370371,336.35,94.2271 +370372,337.66,94.8789 +370373,332.4,92.906 +370374,333.7,93.5656 +370375,334.99,94.2429 +370376,336.29,94.9373 +370377,331.07,92.8384 +370378,332.36,93.5394 +370379,333.64,94.2584 +370380,334.91,94.9952 +370381,329.74,92.7714 +370382,331.01,93.5133 +370383,332.28,94.2738 +370384,333.54,95.0525 +370385,328.42,92.705 +370386,329.67,93.4874 +370387,330.92,94.2888 +370388,332.16,95.1092 +370389,327.09,92.6392 +370390,328.32,93.4616 +370391,329.56,94.3037 +370392,330.79,95.1652 +370393,325.77,92.574 +370394,326.98,93.436 +370395,328.2,94.3182 +370396,329.41,95.2206 +370397,324.44,92.5094 +370398,325.64,93.4105 +370399,326.84,94.3325 +370400,328.03,95.2753 +370401,323.12,92.4455 +370402,324.3,93.3852 +370403,325.48,94.3464 +370404,326.65,95.3292 +370405,321.8,92.3824 +370406,322.96,93.3601 +370407,324.11,94.3601 +370408,325.27,95.3824 +370409,320.47,92.32 +370410,321.61,93.3352 +370411,322.75,94.3734 +370412,323.89,95.4348 +370413,319.15,92.2583 +370414,320.27,93.3106 +370415,321.39,94.3865 +370416,322.51,95.4863 +370417,317.83,92.1974 +370418,318.93,93.2861 +370419,320.03,94.3992 +370420,321.12,95.537 +370421,316.52,92.1374 +370422,317.59,93.2619 +370423,318.67,94.4115 +370424,319.74,95.5868 +370425,315.2,92.0781 +370426,316.25,93.2379 +370427,317.3,94.4235 +370428,318.35,95.6357 +370429,313.88,92.0198 +370430,314.91,93.2141 +370431,315.94,94.4352 +370432,316.97,95.6836 +370433,312.56,91.9624 +370434,313.57,93.1906 +370435,314.58,94.4464 +370436,315.58,95.7306 +370437,311.25,91.9058 +370438,312.23,93.1674 +370439,313.21,94.4573 +370440,314.19,95.7766 +370441,309.94,91.8503 +370442,310.9,93.1445 +370443,311.85,94.4678 +370444,312.8,95.8215 +370445,308.62,91.7956 +370446,309.56,93.1218 +370447,310.49,94.4779 +370448,311.41,95.8654 +370449,307.31,91.742 +370450,308.22,93.0994 +370451,309.12,94.4876 +370452,310.02,95.9082 +370453,306,91.6894 +370454,306.88,93.0773 +370455,307.76,94.4969 +370456,308.63,95.9499 +370457,304.69,91.6378 +370458,305.54,93.0555 +370459,306.39,94.5058 +370460,307.24,95.9904 +370461,303.38,91.5873 +370462,304.2,93.0341 +370463,305.03,94.5142 +370464,305.85,96.0298 +370465,302.07,91.5378 +370466,302.87,93.0129 +370467,303.66,94.5222 +370468,304.45,96.068 +370469,300.76,91.4895 +370470,301.53,92.9921 +370471,302.3,94.5298 +370472,303.06,96.105 +370473,299.45,91.4423 +370474,300.19,92.9716 +370475,300.93,94.5369 +370476,301.66,96.1408 +370477,298.14,91.3962 +370478,298.86,92.9514 +370479,299.57,94.5436 +370480,300.27,96.1753 +370481,296.83,91.3512 +370482,297.52,92.9316 +370483,298.2,94.5498 +370484,298.87,96.2085 +370485,295.53,91.3074 +370486,296.18,92.9122 +370487,296.83,94.5555 +370488,297.47,96.2405 +370489,294.22,91.2648 +370490,294.85,92.8931 +370491,295.47,94.5607 +370492,296.08,96.2711 +370493,292.92,91.2235 +370494,293.51,92.8744 +370495,294.1,94.5655 +370496,294.68,96.3003 +370497,291.61,91.1833 +370498,292.18,92.856 +370499,292.73,94.5697 +370500,293.28,96.3282 +370501,290.31,91.1444 +370502,290.84,92.838 +370503,291.37,94.5735 +370504,291.88,96.3548 +370505,289,91.1067 +370506,289.51,92.8204 +370507,290,94.5767 +370508,290.48,96.3799 +370509,287.7,91.0703 +370510,288.17,92.8032 +370511,288.63,94.5795 +370512,289.08,96.4036 +370513,286.4,91.0352 +370514,286.84,92.7864 +370515,287.27,94.5817 +370516,287.68,96.4259 +370517,285.1,91.0014 +370518,285.5,92.77 +370519,285.9,94.5835 +370520,286.28,96.4467 +370521,283.79,90.96883 +370522,284.17,92.754 +370523,284.53,94.5847 +370524,284.88,96.4661 +370525,282.49,90.93762 +370526,282.83,92.7383 +370527,283.16,94.5854 +370528,283.48,96.4839 +370529,281.19,90.90773 +370530,281.5,92.7231 +370531,281.8,94.5855 +370532,282.08,96.5003 +370533,279.89,90.87918 +370534,280.16,92.7083 +370535,280.43,94.5851 +370536,280.68,96.5152 +370537,278.59,90.85197 +370538,278.83,92.694 +370539,279.06,94.5842 +370540,279.28,96.5285 +370541,277.29,90.82612 +370542,277.5,92.68 +370543,277.69,94.5827 +370544,277.88,96.5404 +370545,275.99,90.80163 +370546,276.16,92.6665 +370547,276.33,94.5807 +370548,276.47,96.5507 +370549,274.69,90.77852 +370550,274.83,92.6533 +370551,274.96,94.5782 +370552,275.07,96.5594 +370553,273.39,90.75677 +370554,273.49,92.6406 +370555,273.59,94.5751 +370556,273.67,96.5666 +370557,272.09,90.73641 +370558,272.16,92.6284 +370559,272.22,94.5714 +370560,272.27,96.5722 +370561,270.79,90.71744 +370562,270.83,92.6166 +370563,270.85,94.5672 +370564,270.86,96.5762 +370565,269.49,90.69986 +370566,269.49,92.6052 +370567,269.49,94.5624 +370568,269.46,96.5786 +370569,268.19,90.68367 +370570,268.16,92.5942 +370571,268.12,94.5571 +370572,268.06,96.5795 +370573,266.89,90.66889 +370574,266.83,92.5837 +370575,266.75,94.5512 +370576,266.66,96.5787 +370577,265.59,90.65551 +370578,265.49,92.5736 +370579,265.38,94.5448 +370580,265.25,96.5764 +370581,264.29,90.64353 +370582,264.16,92.5639 +370583,264.01,94.5378 +370584,263.85,96.5724 +370585,262.99,90.63295 +370586,262.83,92.5547 +370587,262.65,94.5302 +370588,262.45,96.5669 +370589,261.69,90.62378 +370590,261.49,92.546 +370591,261.28,94.5221 +370592,261.05,96.5597 +370593,260.39,90.61601 +370594,260.16,92.5376 +370595,259.91,94.5134 +370596,259.64,96.551 +370597,259.09,90.60965 +370598,258.82,92.5297 +370599,258.54,94.5041 +370600,258.24,96.5406 +370601,257.79,90.60469 +370602,257.49,92.5223 +370603,257.18,94.4943 +370604,256.84,96.5286 +370605,256.49,90.60112 +370606,256.16,92.5152 +370607,255.81,94.4839 +370608,255.44,96.515 +370609,255.19,90.59896 +370610,254.82,92.5086 +370611,254.44,94.473 +370612,254.04,96.4998 +370613,253.88,90.59818 +370614,253.49,92.5025 +370615,253.08,94.4615 +370616,252.64,96.4831 +370617,252.58,90.5988 +370618,252.16,92.4968 +370619,251.71,94.4494 +370620,251.24,96.4647 +370621,251.28,90.60079 +370622,250.82,92.4915 +370623,250.34,94.4368 +370624,249.84,96.4447 +370625,249.98,90.60417 +370626,249.49,92.4866 +370627,248.97,94.4237 +370628,248.44,96.4232 +370629,248.68,90.60891 +370630,248.15,92.4822 +370631,247.61,94.41 +370632,247.04,96.4001 +370633,247.38,90.61501 +370634,246.82,92.4782 +370635,246.24,94.3957 +370636,245.64,96.3754 +370637,246.07,90.62247 +370638,245.48,92.4746 +370639,244.88,94.3809 +370640,244.24,96.3491 +370641,244.77,90.63128 +370642,244.15,92.4715 +370643,243.51,94.3656 +370644,242.85,96.3214 +370645,243.47,90.64142 +370646,242.81,92.4687 +370647,242.14,94.3497 +370648,241.45,96.292 +370649,242.16,90.65289 +370650,241.48,92.4664 +370651,240.78,94.3333 +370652,240.05,96.2612 +370653,240.86,90.66568 +370654,240.14,92.4645 +370655,239.41,94.3164 +370656,238.66,96.2288 +370657,239.55,90.67977 +370658,238.81,92.4629 +370659,238.05,94.2989 +370660,237.26,96.195 +370661,238.24,90.69515 +370662,237.47,92.4618 +370663,236.68,94.2809 +370664,235.87,96.1596 +370665,236.94,90.71181 +370666,236.14,92.4611 +370667,235.32,94.2624 +370668,234.47,96.1228 +370669,235.63,90.72974 +370670,234.8,92.4608 +370671,233.95,94.2434 +370672,233.08,96.0845 +370673,234.32,90.74893 +370674,233.47,92.4608 +370675,232.59,94.2239 +370676,231.69,96.0448 +370677,233.01,90.76935 +370678,232.13,92.4613 +370679,231.22,94.2039 +370680,230.29,96.0037 +370681,231.71,90.791 +370682,230.79,92.4621 +370683,229.86,94.1833 +370684,228.9,95.9611 +370685,230.4,90.81385 +370686,229.46,92.4633 +370687,228.5,94.1623 +370688,227.51,95.9172 +370689,229.09,90.8379 +370690,228.12,92.4649 +370691,227.13,94.1408 +370692,226.12,95.8719 +370693,227.77,90.86312 +370694,226.78,92.4668 +370695,225.77,94.1188 +370696,224.73,95.8252 +370697,226.46,90.8895 +370698,225.45,92.4691 +370699,224.41,94.0964 +370700,223.35,95.7772 +370701,225.15,90.91702 +370702,224.11,92.4717 +370703,223.05,94.0735 +370704,221.96,95.7279 +370705,223.84,90.94566 +370706,222.77,92.4747 +370707,221.68,94.0501 +370708,220.57,95.6774 +370709,222.52,90.97541 +370710,221.43,92.478 +370711,220.32,94.0263 +370712,219.19,95.6255 +370713,221.21,91.0062 +370714,220.09,92.4816 +370715,218.96,94.002 +370716,217.8,95.5725 +370717,219.89,91.0381 +370718,218.75,92.4856 +370719,217.6,93.9773 +370720,216.42,95.5182 +370721,218.57,91.071 +370722,217.42,92.4899 +370723,216.24,93.9522 +370724,215.04,95.4627 +370725,217.26,91.105 +370726,216.08,92.4944 +370727,214.88,93.9266 +370728,213.66,95.4061 +370729,215.94,91.1399 +370730,214.74,92.4993 +370731,213.52,93.9007 +370732,212.28,95.3483 +370733,214.62,91.1759 +370734,213.4,92.5045 +370735,212.16,93.8743 +370736,210.9,95.2894 +370737,213.3,91.2127 +370738,212.06,92.51 +370739,210.8,93.8476 +370740,209.52,95.2294 +370741,211.97,91.2505 +370742,210.72,92.5157 +370743,209.44,93.8204 +370744,208.14,95.1683 +370745,210.65,91.2892 +370746,209.38,92.5217 +370747,208.08,93.7929 +370748,206.77,95.1062 +370749,209.33,91.3288 +370750,208.04,92.528 +370751,206.72,93.765 +370752,205.39,95.0432 +370753,208,91.3693 +370754,206.69,92.5345 +370755,205.37,93.7367 +370756,204.02,94.9791 +370757,206.68,91.4105 +370758,205.35,92.5413 +370759,204.01,93.7081 +370760,202.64,94.9141 +370761,205.35,91.4526 +370762,204.01,92.5483 +370763,202.65,93.6792 +370764,201.27,94.8482 +370765,204.02,91.4955 +370766,202.67,92.5555 +370767,201.29,93.6499 +370768,199.9,94.7814 +370769,202.69,91.5391 +370770,201.32,92.5629 +370771,199.94,93.6203 +370772,198.53,94.7137 +370773,201.36,91.5835 +370774,199.98,92.5706 +370775,198.58,93.5904 +370776,197.16,94.6452 +370777,200.03,91.6285 +370778,198.64,92.5784 +370779,197.23,93.5601 +370780,195.8,94.5759 +370781,198.7,91.6742 +370782,197.29,92.5864 +370783,195.87,93.5296 +370784,194.43,94.5059 +370785,197.37,91.7206 +370786,195.95,92.5946 +370787,194.52,93.4988 +370788,193.06,94.4351 +370789,196.03,91.7675 +370790,194.61,92.603 +370791,193.16,93.4678 +370792,191.7,94.3636 +370793,194.7,91.8151 +370794,193.26,92.6116 +370795,191.81,93.4364 +370796,190.34,94.2914 +370797,193.36,91.8632 +370798,191.92,92.6202 +370799,190.45,93.4049 +370800,188.98,94.2187 +370801,192.02,91.9119 +370802,190.57,92.6291 +370803,189.1,93.373 +370804,187.62,94.1453 +370805,190.68,91.961 +370806,189.22,92.638 +370807,187.75,93.341 +370808,186.26,94.0713 +370809,189.34,92.0106 +370810,187.88,92.6471 +370811,186.4,93.3087 +370812,184.9,93.9968 +370813,188,92.0607 +370814,186.53,92.6563 +370815,185.05,93.2762 +370816,183.54,93.9218 +370817,186.66,92.1112 +370818,185.18,92.6655 +370819,183.69,93.2436 +370820,182.19,93.8464 +370821,185.32,92.162 +370822,183.84,92.6749 +370823,182.34,93.2107 +370824,180.84,93.7705 +370825,183.97,92.2132 +370826,182.49,92.6844 +370827,180.99,93.1777 +370828,179.48,93.6942 +370829,182.63,92.2647 +370830,181.14,92.6939 +370831,179.64,93.1445 +370832,178.13,93.6175 +370833,181.28,92.3165 +370834,179.79,92.7034 +370835,178.29,93.1111 +370836,176.78,93.5406 +370837,179.93,92.3686 +370838,178.44,92.713 +370839,176.94,93.0776 +370840,175.43,93.4633 +370841,178.58,92.4208 +370842,177.09,92.7227 +370843,175.59,93.044 +370844,174.08,93.3857 +370845,177.23,92.4733 +370846,175.74,92.7323 +370847,174.25,93.0103 +370848,172.74,93.3079 +370849,175.88,92.5259 +370850,174.39,92.742 +370851,172.9,92.9764 +370852,171.39,93.23 +370853,174.52,92.5787 +370854,173.04,92.7517 +370855,171.55,92.9425 +370856,170.05,93.1518 +370857,173.17,92.6315 +370858,171.69,92.7614 +370859,170.2,92.9085 +370860,168.71,93.0736 +370861,171.81,92.6845 +370862,170.34,92.771 +370863,168.86,92.8744 +370864,167.36,92.9952 +370865,170.46,92.7374 +370866,168.99,92.7806 +370867,167.51,92.8402 +370868,166.02,92.9168 +370869,169.1,92.7903 +370870,167.64,92.7902 +370871,166.17,92.806 +370872,164.68,92.8384 +370873,167.74,92.8432 +370874,166.29,92.7997 +370875,164.82,92.7717 +370876,163.35,92.76 +370877,166.38,92.8961 +370878,164.93,92.8092 +370879,163.48,92.7374 +370880,162.01,92.6816 +370881,165.02,92.9488 +370882,163.58,92.8186 +370883,162.13,92.7031 +370884,160.67,92.6033 +370885,163.66,93.0014 +370886,162.23,92.8279 +370887,160.79,92.6688 +370888,159.34,92.5251 +370889,162.29,93.0539 +370890,160.87,92.8371 +370891,159.44,92.6345 +370892,158.01,92.447 +370893,160.93,93.1061 +370894,159.52,92.8461 +370895,158.1,92.6002 +370896,156.67,92.3692 +370897,159.56,93.1582 +370898,158.16,92.8551 +370899,156.76,92.566 +370900,155.34,92.2915 +370901,158.19,93.2099 +370902,156.81,92.864 +370903,155.42,92.5318 +370904,154.01,92.2141 +370905,156.82,93.2614 +370906,155.45,92.8727 +370907,154.07,92.4976 +370908,152.69,92.137 +370909,155.45,93.3125 +370910,154.1,92.8812 +370911,152.73,92.4635 +370912,151.36,92.0602 +370913,154.08,93.3633 +370914,152.74,92.8896 +370915,151.39,92.4294 +370916,150.03,91.9837 +370917,152.71,93.4137 +370918,151.39,92.8978 +370919,150.05,92.3955 +370920,148.71,91.9076 +370921,151.34,93.4637 +370922,150.03,92.9059 +370923,148.71,92.3616 +370924,147.38,91.8319 +370925,149.96,93.5132 +370926,148.67,92.9137 +370927,147.37,92.3279 +370928,146.06,91.7567 +370929,148.59,93.5623 +370930,147.31,92.9213 +370931,146.03,92.2942 +370932,144.74,91.6819 +370933,147.21,93.6108 +370934,145.96,92.9287 +370935,144.69,92.2607 +370936,143.42,91.6076 +370937,145.84,93.6588 +370938,144.6,92.9359 +370939,143.35,92.2273 +370940,142.1,91.5338 +370941,144.46,93.7062 +370942,143.24,92.9429 +370943,142.01,92.1941 +370944,140.78,91.4606 +370945,143.08,93.7529 +370946,141.88,92.9496 +370947,140.68,92.161 +370948,139.46,91.388 +370949,141.7,93.7991 +370950,140.52,92.9561 +370951,139.34,92.1281 +370952,138.15,91.3161 +370953,140.32,93.8446 +370954,139.16,92.9623 +370955,138,92.0954 +370956,136.83,91.2447 +370957,138.93,93.8893 +370958,137.8,92.9682 +370959,136.66,92.0628 +370960,135.52,91.1741 +370961,137.55,93.9334 +370962,136.44,92.9738 +370963,135.33,92.0305 +370964,134.2,91.1041 +370965,136.17,93.9767 +370966,135.08,92.9792 +370967,133.99,91.9983 +370968,132.89,91.0349 +370969,134.78,94.0192 +370970,133.72,92.9842 +370971,132.66,91.9664 +370972,131.58,90.96644 +370973,133.4,94.0609 +370974,132.36,92.9889 +370975,131.32,91.9347 +370976,130.27,90.89877 +370977,132.01,94.1017 +370978,131,92.9933 +370979,129.98,91.9032 +370980,128.96,90.83191 +370981,130.62,94.1417 +370982,129.64,92.9974 +370983,128.65,91.872 +370984,127.65,90.76589 +370985,129.23,94.1807 +370986,128.28,93.0011 +370987,127.31,91.841 +370988,126.34,90.70074 +370989,127.84,94.2189 +370990,126.92,93.0045 +370991,125.98,91.8103 +370992,125.03,90.63648 +370993,126.45,94.2561 +370994,125.56,93.0075 +370995,124.65,91.7798 +370996,123.73,90.57313 +370997,125.06,94.2923 +370998,124.19,93.0102 +370999,123.31,91.7496 +371000,122.42,90.51073 +371001,123.67,94.3274 +371002,122.83,93.0125 +371003,121.98,91.7197 +371004,121.11,90.44928 +371005,122.28,94.3616 +371006,121.47,93.0144 +371007,120.65,91.6901 +371008,119.81,90.38882 +371009,120.89,94.3947 +371010,120.11,93.0159 +371011,119.31,91.6608 +371012,118.51,90.32936 +371013,119.49,94.4267 +371014,118.74,93.017 +371015,117.98,91.6318 +371016,117.2,90.27093 +371017,118.1,94.4576 +371018,117.38,93.0177 +371019,116.65,91.6032 +371020,115.9,90.21355 +371021,116.7,94.4874 +371022,116.02,93.018 +371023,115.32,91.5748 +371024,114.6,90.15725 +371025,115.31,94.516 +371026,114.65,93.0179 +371027,113.98,91.5468 +371028,113.3,90.10203 +371029,113.91,94.5435 +371030,113.29,93.0173 +371031,112.65,91.5191 +371032,112,90.047921 +371033,112.51,94.5697 +371034,111.93,93.0163 +371035,111.32,91.4918 +371036,110.7,89.9949408 +371037,111.12,94.5948 +371038,110.56,93.0149 +371039,109.99,91.4648 +371040,109.4,89.943107 +371041,109.72,94.6186 +371042,109.2,93.013 +371043,108.66,91.4381 +371044,108.1,89.89244 +371045,108.32,94.6411 +371046,107.83,93.0107 +371047,107.33,91.4118 +371048,106.8,89.84295 +371049,106.92,94.6624 +371050,106.47,93.0079 +371051,106,91.3859 +371052,105.51,89.79466 +371053,105.52,94.6823 +371054,105.1,93.0047 +371055,104.67,91.3604 +371056,104.21,89.74758 +371057,104.12,94.7009 +371058,103.74,93.0009 +371059,103.33,91.3352 +371060,102.91,89.70173 +371061,102.72,94.7182 +371062,102.37,92.9967 +371063,102,91.3105 +371064,101.62,89.65712 +371065,101.32,94.7342 +371066,101.01,92.9921 +371067,100.67,91.2861 +371068,100.32,89.61376 +371069,99.922,94.7488 +371070,99.645,92.9869 +371071,99.345,91.2621 +371072,99.024,89.57168 +371073,98.522,94.762 +371074,98.28,92.9812 +371075,98.015,91.2385 +371076,97.729,89.53088 +371077,97.121,94.7738 +371078,96.915,92.9751 +371079,96.685,91.2153 +371080,96.434,89.49137 +371081,95.719,94.7842 +371082,95.55,92.9684 +371083,95.356,91.1925 +371084,95.139,89.45316 +371085,94.318,94.7931 +371086,94.185,92.9613 +371087,94.026,91.1701 +371088,93.845,89.41627 +371089,92.917,94.8006 +371090,92.82,92.9536 +371091,92.697,91.1482 +371092,92.551,89.3807 +371093,91.515,94.8067 +371094,91.454,92.9455 +371095,91.367,91.1266 +371096,91.256,89.34647 +371097,90.113,94.8113 +371098,90.089,92.9368 +371099,90.038,91.1055 +371100,89.963,89.31358 +371101,88.711,94.8144 +371102,88.724,92.9276 +371103,88.709,91.0848 +371104,88.669,89.28203 +371105,87.31,94.8161 +371106,87.359,92.9178 +371107,87.38,91.0645 +371108,87.375,89.25185 +371109,85.908,94.8162 +371110,85.994,92.9076 +371111,86.051,91.0447 +371112,86.082,89.22302 +371113,84.506,94.8149 +371114,84.629,92.8968 +371115,84.722,91.0253 +371116,84.788,89.19556 +371117,83.104,94.812 +371118,83.264,92.8855 +371119,83.393,91.0063 +371120,83.495,89.16948 +371121,81.703,94.8077 +371122,81.899,92.8737 +371123,82.064,90.98777 +371124,82.201,89.14477 +371125,80.301,94.8018 +371126,80.534,92.8614 +371127,80.735,90.96965 +371128,80.908,89.12144 +371129,78.9,94.7944 +371130,79.169,92.8485 +371131,79.406,90.95198 +371132,79.614,89.09949 +371133,77.499,94.7854 +371134,77.804,92.8351 +371135,78.077,90.93475 +371136,78.32,89.07893 +371137,76.098,94.7749 +371138,76.44,92.8211 +371139,76.748,90.91795 +371140,77.027,89.05976 +371141,74.697,94.7629 +371142,75.075,92.8067 +371143,75.419,90.90159 +371144,75.733,89.04197 +371145,73.297,94.7494 +371146,73.711,92.7916 +371147,74.09,90.88567 +371148,74.439,89.02557 +371149,71.897,94.7343 +371150,72.347,92.7761 +371151,72.761,90.87019 +371152,73.144,89.01055 +371153,70.497,94.7176 +371154,70.982,92.76 +371155,71.431,90.85515 +371156,71.85,88.9969 +371157,69.098,94.6995 +371158,69.618,92.7434 +371159,70.102,90.84055 +371160,70.555,88.9847 +371161,67.699,94.6798 +371162,68.254,92.7263 +371163,68.773,90.82638 +371164,69.26,88.9738 +371165,66.3,94.6585 +371166,66.891,92.7086 +371167,67.444,90.81265 +371168,67.964,88.9643 +371169,64.902,94.6358 +371170,65.527,92.6904 +371171,66.114,90.79936 +371172,66.669,88.9562 +371173,63.504,94.6115 +371174,64.164,92.6717 +371175,64.784,90.7865 +371176,65.373,88.9494 +371177,62.107,94.5856 +371178,62.8,92.6524 +371179,63.455,90.77408 +371180,64.076,88.944 +371181,60.711,94.5583 +371182,61.437,92.6326 +371183,62.125,90.76208 +371184,62.779,88.94 +371185,59.315,94.5295 +371186,60.075,92.6123 +371187,60.795,90.75051 +371188,61.482,88.9373 +371189,57.919,94.4991 +371190,58.712,92.5915 +371191,59.465,90.73937 +371192,60.184,88.9359 +371193,56.524,94.4673 +371194,57.35,92.5702 +371195,58.135,90.72865 +371196,58.886,88.9359 +371197,55.13,94.4339 +371198,55.988,92.5483 +371199,56.804,90.71835 +371200,57.587,88.9372 +371201,53.737,94.3991 +371202,54.626,92.526 +371203,55.474,90.70847 +371204,56.287,88.9398 +371205,52.344,94.3628 +371206,53.264,92.5031 +371207,54.143,90.699 +371208,54.988,88.9437 +371209,50.952,94.3251 +371210,51.903,92.4797 +371211,52.812,90.68994 +371212,53.687,88.949 +371213,49.561,94.2859 +371214,50.542,92.4559 +371215,51.481,90.68129 +371216,52.386,88.9554 +371217,48.17,94.2453 +371218,49.181,92.4315 +371219,50.15,90.67304 +371220,51.084,88.9632 +371221,46.78,94.2033 +371222,47.82,92.4067 +371223,48.818,90.66519 +371224,49.781,88.9722 +371225,45.392,94.1599 +371226,46.46,92.3814 +371227,47.487,90.65774 +371228,48.478,88.9825 +371229,44.003,94.1151 +371230,45.1,92.3555 +371231,46.155,90.65067 +371232,47.174,88.9939 +371233,42.616,94.0689 +371234,43.74,92.3293 +371235,44.822,90.64399 +371236,45.87,89.00664 +371237,41.23,94.0214 +371238,42.381,92.3025 +371239,43.49,90.63768 +371240,44.564,89.02053 +371241,39.845,93.9725 +371242,41.022,92.2753 +371243,42.157,90.63175 +371244,43.258,89.03561 +371245,38.46,93.9223 +371246,39.663,92.2476 +371247,40.825,90.62619 +371248,41.951,89.05185 +371249,37.077,93.8708 +371250,38.305,92.2195 +371251,39.491,90.62099 +371252,40.643,89.06923 +371253,35.694,93.818 +371254,36.947,92.1909 +371255,38.158,90.61615 +371256,39.335,89.08775 +371257,34.313,93.764 +371258,35.589,92.1619 +371259,36.824,90.61165 +371260,38.025,89.10738 +371261,32.932,93.7087 +371262,34.232,92.1325 +371263,35.49,90.60751 +371264,36.715,89.12811 +371265,31.553,93.6523 +371266,32.875,92.1026 +371267,34.156,90.6037 +371268,35.403,89.14991 +371269,30.175,93.5946 +371270,31.518,92.0723 +371271,32.822,90.60022 +371272,34.091,89.17276 +371273,28.797,93.5357 +371274,30.162,92.0416 +371275,31.487,90.59706 +371276,32.778,89.19665 +371277,27.421,93.4757 +371278,28.806,92.0105 +371279,30.152,90.59423 +371280,31.463,89.22156 +371281,26.046,93.4146 +371282,27.451,91.979 +371283,28.816,90.5917 +371284,30.148,89.24745 +371285,24.672,93.3523 +371286,26.096,91.9472 +371287,27.481,90.58948 +371288,28.832,89.27432 +371289,23.299,93.289 +371290,24.741,91.9149 +371291,26.145,90.58755 +371292,27.515,89.30214 +371293,21.928,93.2247 +371294,23.387,91.8823 +371295,24.808,90.58591 +371296,26.196,89.33088 +371297,20.557,93.1593 +371298,22.033,91.8493 +371299,23.471,90.58455 +371300,24.877,89.36053 +371301,19.188,93.0929 +371302,20.68,91.816 +371303,22.134,90.58346 +371304,23.557,89.39105 +371305,17.82,93.0256 +371306,19.327,91.7823 +371307,20.797,90.58263 +371308,22.235,89.42243 +371309,16.453,92.9573 +371310,17.974,91.7482 +371311,19.459,90.58206 +371312,20.913,89.45464 +371313,15.087,92.8881 +371314,16.622,91.7139 +371315,18.121,90.58173 +371316,19.589,89.48766 +371317,13.723,92.818 +371318,15.27,91.6792 +371319,16.783,90.58165 +371320,18.264,89.52146 +371321,12.36,92.747 +371322,13.919,91.6442 +371323,15.444,90.58179 +371324,16.938,89.55601 +371325,10.998,92.6752 +371326,12.568,91.609 +371327,14.105,90.58215 +371328,15.611,89.59129 +371329,9.6371,92.6026 +371330,11.218,91.5734 +371331,12.765,90.58273 +371332,14.283,89.62728 +371333,8.2777,92.5293 +371334,9.8677,91.5376 +371335,11.425,90.5835 +371336,12.954,89.66394 +371337,6.9196,92.4552 +371338,8.5182,91.5014 +371339,10.085,90.58447 +371340,11.623,89.70125 +371341,5.5627,92.3804 +371342,7.1692,91.4651 +371343,8.7445,90.58563 +371344,10.291,89.73918 +371345,4.2071,92.305 +371346,5.8206,91.4284 +371347,7.4035,90.58695 +371348,8.9584,89.7777 +371349,2.8528,92.2288 +371350,4.4724,91.3916 +371351,6.0621,90.58845 +371352,7.6243,89.81679 +371353,1.4999,92.1521 +371354,3.1247,91.3545 +371355,4.7204,90.59009 +371356,6.2889,89.85642 +371357,0.14817,92.0748 +371358,1.7775,91.3172 +371359,3.3782,90.59189 +371360,4.9523,89.89656 +371361,358.8,91.997 +371362,0.43071,91.2796 +371363,2.0357,90.59381 +371364,3.6145,89.937172 +371365,357.45,91.9186 +371366,359.08,91.2419 +371367,0.6928,90.59587 +371368,2.2754,89.97824 +371369,356.1,91.8398 +371370,357.74,91.204 +371371,359.35,90.59804 +371372,0.93517,90.01973 +371373,354.75,91.7605 +371374,356.39,91.1659 +371375,358.01,90.60031 +371376,359.59,90.061612 +371377,353.41,91.6808 +371378,355.05,91.1277 +371379,356.66,90.60268 +371380,358.25,90.10386 +371381,352.07,91.6007 +371382,353.7,91.0892 +371383,355.32,90.60513 +371384,356.91,90.14643 +371385,350.72,91.5202 +371386,352.36,91.0507 +371387,353.97,90.60766 +371388,355.56,90.18931 +371389,349.38,91.4394 +371390,351.02,91.012 +371391,352.63,90.61026 +371392,354.22,90.23246 +371393,348.04,91.3584 +371394,349.67,90.9732 +371395,351.28,90.6129 +371396,352.87,90.27586 +371397,346.7,91.2771 +371398,348.33,90.93428 +371399,349.94,90.6156 +371400,351.52,90.31946 +371401,345.37,91.1956 +371402,346.99,90.89525 +371403,348.59,90.61832 +371404,350.17,90.36325 +371405,344.03,91.1139 +371406,345.65,90.85614 +371407,347.24,90.62107 +371408,348.82,90.40719 +371409,342.7,91.0321 +371410,344.31,90.81695 +371411,345.9,90.62383 +371412,347.46,90.45124 +371413,341.36,90.9501 +371414,342.96,90.77769 +371415,344.55,90.62659 +371416,346.11,90.49538 +371417,340.03,90.86806 +371418,341.62,90.73838 +371419,343.2,90.62934 +371420,344.75,90.53958 +371421,338.7,90.78597 +371422,340.28,90.69901 +371423,341.85,90.63207 +371424,343.4,90.58381 +371425,337.37,90.70387 +371426,338.95,90.65962 +371427,340.5,90.63478 +371428,342.04,90.62803 +371429,336.04,90.62179 +371430,337.61,90.6202 +371431,339.15,90.63744 +371432,340.68,90.67221 +371433,334.71,90.53976 +371434,336.27,90.58077 +371435,337.8,90.64005 +371436,339.32,90.71633 +371437,333.39,90.45782 +371438,334.93,90.54134 +371439,336.45,90.6426 +371440,337.96,90.76035 +371441,332.06,90.376 +371442,333.59,90.50191 +371443,335.1,90.64508 +371444,336.6,90.80424 +371445,330.74,90.29433 +371446,332.26,90.46251 +371447,333.75,90.64747 +371448,335.23,90.84797 +371449,329.42,90.21284 +371450,330.92,90.42314 +371451,332.4,90.64977 +371452,333.87,90.89151 +371453,328.1,90.13157 +371454,329.58,90.38381 +371455,331.05,90.65197 +371456,332.5,90.93482 +371457,326.78,90.050553 +371458,328.25,90.34453 +371459,329.7,90.65405 +371460,331.14,90.97788 +371461,325.46,89.969817 +371462,326.91,90.30532 +371463,328.35,90.65601 +371464,329.77,91.0207 +371465,324.14,89.8894 +371466,325.58,90.26618 +371467,326.99,90.65784 +371468,328.4,91.0631 +371469,322.83,89.80932 +371470,324.24,90.22713 +371471,325.64,90.65952 +371472,327.03,91.1052 +371473,321.51,89.72962 +371474,322.91,90.18817 +371475,324.29,90.66104 +371476,325.65,91.147 +371477,320.2,89.65033 +371478,321.57,90.14932 +371479,322.94,90.6624 +371480,324.28,91.1883 +371481,318.89,89.57149 +371482,320.24,90.11059 +371483,321.58,90.66358 +371484,322.91,91.2292 +371485,317.57,89.49311 +371486,318.91,90.07198 +371487,320.23,90.66458 +371488,321.53,91.2696 +371489,316.26,89.41523 +371490,317.58,90.033509 +371491,318.87,90.66538 +371492,320.16,91.3096 +371493,314.95,89.33788 +371494,316.24,89.9951866 +371495,317.52,90.66598 +371496,318.78,91.349 +371497,313.65,89.2611 +371498,314.91,89.957021 +371499,316.16,90.66636 +371500,317.4,91.3879 +371501,312.34,89.1849 +371502,313.58,89.919022 +371503,314.81,90.66652 +371504,316.02,91.4261 +371505,311.03,89.10932 +371506,312.25,89.8812 +371507,313.45,90.66644 +371508,314.64,91.4638 +371509,309.73,89.03439 +371510,310.92,89.84357 +371511,312.1,90.66612 +371512,313.26,91.5008 +371513,308.42,88.9601 +371514,309.59,89.80613 +371515,310.74,90.66555 +371516,311.88,91.5372 +371517,307.12,88.8866 +371518,308.26,89.76889 +371519,309.38,90.66471 +371520,310.49,91.5728 +371521,305.82,88.8138 +371522,306.93,89.73188 +371523,308.03,90.66361 +371524,309.11,91.6077 +371525,304.51,88.7417 +371526,305.6,89.69508 +371527,306.67,90.66222 +371528,307.72,91.6419 +371529,303.21,88.6704 +371530,304.27,89.65852 +371531,305.31,90.66054 +371532,306.34,91.6753 +371533,301.91,88.6 +371534,302.94,89.6222 +371535,303.96,90.65857 +371536,304.95,91.7079 +371537,300.62,88.5303 +371538,301.61,89.58613 +371539,302.6,90.65629 +371540,303.56,91.7397 +371541,299.32,88.4615 +371542,300.29,89.55032 +371543,301.24,90.65369 +371544,302.18,91.7706 +371545,298.02,88.3936 +371546,298.96,89.51478 +371547,299.88,90.65077 +371548,300.79,91.8006 +371549,296.72,88.3267 +371550,297.63,89.47951 +371551,298.52,90.64752 +371552,299.4,91.8297 +371553,295.43,88.2606 +371554,296.3,89.44453 +371555,297.16,90.64393 +371556,298.01,91.8578 +371557,294.13,88.1955 +371558,294.98,89.40984 +371559,295.8,90.63999 +371560,296.61,91.8851 +371561,292.84,88.1314 +371562,293.65,89.37545 +371563,294.45,90.6357 +371564,295.22,91.9113 +371565,291.55,88.0683 +371566,292.32,89.34137 +371567,293.09,90.63104 +371568,293.83,91.9365 +371569,290.25,88.0062 +371570,291,89.3076 +371571,291.73,90.62602 +371572,292.44,91.9607 +371573,288.96,87.9451 +371574,289.67,89.27415 +371575,290.37,90.62062 +371576,291.04,91.9839 +371577,287.67,87.8851 +371578,288.35,89.24103 +371579,289.01,90.61483 +371580,289.65,92.006 +371581,286.38,87.8262 +371582,287.02,89.20825 +371583,287.65,90.60865 +371584,288.25,92.0269 +371585,285.09,87.7683 +371586,285.7,89.17581 +371587,286.29,90.60208 +371588,286.86,92.0468 +371589,283.8,87.7116 +371590,284.37,89.14371 +371591,284.93,90.5951 +371592,285.46,92.0655 +371593,282.51,87.656 +371594,283.05,89.11198 +371595,283.57,90.58771 +371596,284.06,92.0831 +371597,281.22,87.6016 +371598,281.72,89.0806 +371599,282.21,90.57991 +371600,282.67,92.0995 +371601,279.93,87.5484 +371602,280.4,89.04959 +371603,280.85,90.57168 +371604,281.27,92.1147 +371605,278.64,87.4963 +371606,279.08,89.01895 +371607,279.48,90.56303 +371608,279.87,92.1288 +371609,277.36,87.4454 +371610,277.75,88.9887 +371611,278.12,90.55394 +371612,278.47,92.1415 +371613,276.07,87.3958 +371614,276.43,88.9588 +371615,276.76,90.54441 +371616,277.07,92.1531 +371617,274.78,87.3473 +371618,275.1,88.9293 +371619,275.4,90.53444 +371620,275.67,92.1633 +371621,273.5,87.3001 +371622,273.78,88.9002 +371623,274.04,90.52403 +371624,274.27,92.1723 +371625,272.21,87.2542 +371626,272.46,88.8715 +371627,272.68,90.51316 +371628,272.87,92.18 +371629,270.92,87.2095 +371630,271.13,88.8432 +371631,271.32,90.50183 +371632,271.47,92.1864 +371633,269.64,87.1661 +371634,269.81,88.8153 +371635,269.96,90.49004 +371636,270.07,92.1915 +371637,268.35,87.124 +371638,268.49,88.7878 +371639,268.6,90.47779 +371640,268.67,92.1952 +371641,267.07,87.0832 +371642,267.17,88.7608 +371643,267.24,90.46507 +371644,267.27,92.1976 +371645,265.78,87.0436 +371646,265.84,88.7341 +371647,265.87,90.45188 +371648,265.87,92.1986 +371649,264.5,87.0054 +371650,264.52,88.7079 +371651,264.51,90.43821 +371652,264.47,92.1983 +371653,263.21,86.9686 +371654,263.2,88.682 +371655,263.15,90.42406 +371656,263.07,92.1966 +371657,261.93,86.933 +371658,261.87,88.6566 +371659,261.79,90.40943 +371660,261.67,92.1935 +371661,260.64,86.8988 +371662,260.55,88.6317 +371663,260.43,90.39432 +371664,260.27,92.189 +371665,259.36,86.8659 +371666,259.23,88.6071 +371667,259.07,90.37872 +371668,258.87,92.1831 +371669,258.07,86.8344 +371670,257.91,88.583 +371671,257.71,90.36263 +371672,257.47,92.1758 +371673,256.79,86.8042 +371674,256.58,88.5594 +371675,256.35,90.34606 +371676,256.07,92.167 +371677,255.5,86.7753 +371678,255.26,88.5361 +371679,254.99,90.32899 +371680,254.67,92.1569 +371681,254.22,86.7479 +371682,253.94,88.5133 +371683,253.63,90.31143 +371684,253.27,92.1453 +371685,252.93,86.7217 +371686,252.62,88.491 +371687,252.26,90.29338 +371688,251.87,92.1322 +371689,251.65,86.697 +371690,251.29,88.469 +371691,250.9,90.27483 +371692,250.47,92.1177 +371693,250.36,86.6736 +371694,249.97,88.4475 +371695,249.54,90.25579 +371696,249.08,92.1018 +371697,249.08,86.6515 +371698,248.65,88.4265 +371699,248.18,90.23625 +371700,247.68,92.0845 +371701,247.79,86.6308 +371702,247.33,88.4059 +371703,246.82,90.21622 +371704,246.28,92.0656 +371705,246.5,86.6115 +371706,246,88.3857 +371707,245.46,90.19569 +371708,244.88,92.0454 +371709,245.22,86.5935 +371710,244.68,88.366 +371711,244.1,90.17466 +371712,243.48,92.0237 +371713,243.93,86.5769 +371714,243.36,88.3467 +371715,242.74,90.15314 +371716,242.09,92.0005 +371717,242.64,86.5616 +371718,242.03,88.3278 +371719,241.39,90.13113 +371720,240.69,91.9759 +371721,241.36,86.5477 +371722,240.71,88.3094 +371723,240.03,90.10863 +371724,239.29,91.9499 +371725,240.07,86.5351 +371726,239.39,88.2914 +371727,238.67,90.085631 +371728,237.9,91.9224 +371729,238.78,86.5238 +371730,238.06,88.2738 +371731,237.31,90.062146 +371732,236.5,91.8935 +371733,237.49,86.5139 +371734,236.74,88.2567 +371735,235.95,90.038174 +371736,235.11,91.8631 +371737,236.2,86.5053 +371738,235.42,88.24 +371739,234.59,90.013716 +371740,233.72,91.8314 +371741,234.91,86.498 +371742,234.09,88.2237 +371743,233.23,89.988776 +371744,232.32,91.7982 +371745,233.62,86.492 +371746,232.77,88.2079 +371747,231.88,89.963354 +371748,230.93,91.7635 +371749,232.33,86.4874 +371750,231.44,88.1924 +371751,230.52,89.937456 +371752,229.54,91.7275 +371753,231.04,86.484 +371754,230.12,88.1774 +371755,229.16,89.911082 +371756,228.15,91.6901 +371757,229.74,86.4818 +371758,228.8,88.1628 +371759,227.8,89.88424 +371760,226.76,91.6513 +371761,228.45,86.481 +371762,227.47,88.1486 +371763,226.45,89.85692 +371764,225.37,91.6111 +371765,227.16,86.4814 +371766,226.15,88.1348 +371767,225.09,89.82915 +371768,223.98,91.5696 +371769,225.86,86.483 +371770,224.82,88.1215 +371771,223.73,89.80091 +371772,222.59,91.5267 +371773,224.57,86.4859 +371774,223.5,88.1085 +371775,222.38,89.77222 +371776,221.21,91.4824 +371777,223.27,86.49 +371778,222.17,88.0959 +371779,221.02,89.74308 +371780,219.82,91.4368 +371781,221.98,86.4953 +371782,220.84,88.0837 +371783,219.67,89.71349 +371784,218.44,91.3899 +371785,220.68,86.5018 +371786,219.52,88.0719 +371787,218.31,89.68345 +371788,217.05,91.3417 +371789,219.38,86.5094 +371790,218.19,88.0605 +371791,216.96,89.65298 +371792,215.67,91.2923 +371793,218.08,86.5182 +371794,216.86,88.0495 +371795,215.6,89.62208 +371796,214.29,91.2415 +371797,216.78,86.5282 +371798,215.54,88.0388 +371799,214.25,89.59076 +371800,212.91,91.1895 +371801,215.48,86.5393 +371802,214.21,88.0285 +371803,212.9,89.55901 +371804,211.53,91.1362 +371805,214.18,86.5515 +371806,212.88,88.0185 +371807,211.54,89.52685 +371808,210.15,91.0817 +371809,212.87,86.5648 +371810,211.56,88.0089 +371811,210.19,89.49428 +371812,208.77,91.0261 +371813,211.57,86.5791 +371814,210.23,87.9997 +371815,208.84,89.46131 +371816,207.4,90.9692 +371817,210.27,86.5945 +371818,208.9,87.9908 +371819,207.49,89.42795 +371820,206.02,90.91117 +371821,208.96,86.611 +371822,207.57,87.9822 +371823,206.14,89.39419 +371824,204.65,90.852 +371825,207.65,86.6284 +371826,206.24,87.974 +371827,204.78,89.36006 +371828,203.27,90.79171 +371829,206.34,86.6469 +371830,204.91,87.9661 +371831,203.43,89.32555 +371832,201.9,90.73032 +371833,205.04,86.6663 +371834,203.58,87.9585 +371835,202.08,89.29067 +371836,200.53,90.66785 +371837,203.73,86.6867 +371838,202.25,87.9512 +371839,200.73,89.25544 +371840,199.16,90.60432 +371841,202.41,86.708 +371842,200.92,87.9442 +371843,199.38,89.21985 +371844,197.8,90.53976 +371845,201.1,86.7302 +371846,199.59,87.9375 +371847,198.04,89.18392 +371848,196.43,90.47419 +371849,199.79,86.7533 +371850,198.26,87.9311 +371851,196.69,89.14765 +371852,195.06,90.40763 +371853,198.47,86.7773 +371854,196.93,87.925 +371855,195.34,89.11105 +371856,193.7,90.34012 +371857,197.16,86.8021 +371858,195.6,87.9191 +371859,193.99,89.07414 +371860,192.34,90.27168 +371861,195.84,86.8277 +371862,194.27,87.9135 +371863,192.64,89.03691 +371864,190.97,90.20232 +371865,194.52,86.8541 +371866,192.93,87.9081 +371867,191.3,88.9994 +371868,189.61,90.13208 +371869,193.2,86.8813 +371870,191.6,87.903 +371871,189.95,88.9616 +371872,188.25,90.060992 +371873,191.88,86.9092 +371874,190.27,87.8982 +371875,188.61,88.9235 +371876,186.9,89.989073 +371877,190.56,86.9378 +371878,188.93,87.8935 +371879,187.26,88.8851 +371880,185.54,89.916354 +371881,189.24,86.9671 +371882,187.6,87.8891 +371883,185.92,88.8464 +371884,184.19,89.84286 +371885,187.92,86.9971 +371886,186.26,87.8849 +371887,184.57,88.8075 +371888,182.83,89.76863 +371889,186.59,87.0277 +371890,184.93,87.8809 +371891,183.23,88.7684 +371892,181.48,89.69368 +371893,185.26,87.0589 +371894,183.59,87.8771 +371895,181.88,88.729 +371896,180.13,89.61805 +371897,183.94,87.0907 +371898,182.26,87.8735 +371899,180.54,88.6893 +371900,178.78,89.54176 +371901,182.61,87.1231 +371902,180.92,87.87 +371903,179.2,88.6495 +371904,177.43,89.46484 +371905,181.28,87.156 +371906,179.59,87.8668 +371907,177.86,88.6094 +371908,176.08,89.38733 +371909,179.95,87.1894 +371910,178.25,87.8636 +371911,176.52,88.5692 +371912,174.74,89.30926 +371913,178.61,87.2232 +371914,176.91,87.8606 +371915,175.17,88.5287 +371916,173.39,89.23065 +371917,177.28,87.2576 +371918,175.58,87.8578 +371919,173.83,88.4881 +371920,172.05,89.15154 +371921,175.94,87.2923 +371922,174.24,87.8551 +371923,172.49,88.4473 +371924,170.71,89.07195 +371925,174.61,87.3274 +371926,172.9,87.8525 +371927,171.16,88.4064 +371928,169.37,88.9919 +371929,173.27,87.3629 +371930,171.56,87.85 +371931,169.82,88.3653 +371932,168.03,88.9115 +371933,171.93,87.3987 +371934,170.22,87.8476 +371935,168.48,88.324 +371936,166.7,88.8307 +371937,170.59,87.4348 +371938,168.88,87.8453 +371939,167.14,88.2827 +371940,165.36,88.7495 +371941,169.24,87.4711 +371942,167.54,87.8431 +371943,165.8,88.2412 +371944,164.03,88.6681 +371945,167.9,87.5078 +371946,166.2,87.8409 +371947,164.47,88.1996 +371948,162.69,88.5863 +371949,166.56,87.5446 +371950,164.86,87.8388 +371951,163.13,88.1579 +371952,161.36,88.5043 +371953,165.21,87.5816 +371954,163.52,87.8367 +371955,161.79,88.1162 +371956,160.03,88.4221 +371957,163.86,87.6188 +371958,162.18,87.8347 +371959,160.46,88.0743 +371960,158.7,88.3397 +371961,162.51,87.6561 +371962,160.83,87.8327 +371963,159.12,88.0324 +371964,157.38,88.2572 +371965,161.16,87.6934 +371966,159.49,87.8308 +371967,157.79,87.9904 +371968,156.05,88.1745 +371969,159.81,87.7309 +371970,158.15,87.8288 +371971,156.45,87.9484 +371972,154.73,88.0917 +371973,158.46,87.7684 +371974,156.81,87.8269 +371975,155.12,87.9064 +371976,153.4,88.0089 +371977,157.11,87.8059 +371978,155.46,87.8249 +371979,153.79,87.8643 +371980,152.08,87.9261 +371981,155.75,87.8433 +371982,154.12,87.8229 +371983,152.45,87.8222 +371984,150.76,87.8433 +371985,154.4,87.8807 +371986,152.77,87.8208 +371987,151.12,87.7802 +371988,149.44,87.7605 +371989,153.04,87.918 +371990,151.43,87.8188 +371991,149.79,87.7381 +371992,148.12,87.6778 +371993,151.68,87.9552 +371994,150.08,87.8166 +371995,148.46,87.696 +371996,146.81,87.5952 +371997,150.32,87.9923 +371998,148.74,87.8145 +371999,147.13,87.654 +372000,145.49,87.5128 +372001,148.96,88.0292 +372002,147.39,87.8122 +372003,145.8,87.6121 +372004,144.18,87.4305 +372005,147.59,88.0659 +372006,146.04,87.8098 +372007,144.47,87.5701 +372008,142.87,87.3485 +372009,146.23,88.1023 +372010,144.7,87.8074 +372011,143.14,87.5283 +372012,141.56,87.2666 +372013,144.87,88.1385 +372014,143.35,87.8049 +372015,141.81,87.4865 +372016,140.25,87.1851 +372017,143.5,88.1744 +372018,142,87.8022 +372019,140.48,87.4448 +372020,138.94,87.1038 +372021,142.13,88.21 +372022,140.66,87.7994 +372023,139.15,87.4032 +372024,137.63,87.0229 +372025,140.76,88.2452 +372026,139.31,87.7965 +372027,137.83,87.3617 +372028,136.32,86.9423 +372029,139.39,88.28 +372030,137.96,87.7935 +372031,136.5,87.3203 +372032,135.02,86.8621 +372033,138.02,88.3145 +372034,136.61,87.7902 +372035,135.17,87.279 +372036,133.71,86.7824 +372037,136.65,88.3485 +372038,135.26,87.7869 +372039,133.85,87.2379 +372040,132.41,86.7031 +372041,135.28,88.382 +372042,133.91,87.7833 +372043,132.52,87.1969 +372044,131.11,86.6243 +372045,133.9,88.415 +372046,132.56,87.7796 +372047,131.2,87.156 +372048,129.81,86.5459 +372049,132.53,88.4476 +372050,131.21,87.7757 +372051,129.87,87.1154 +372052,128.51,86.4682 +372053,131.15,88.4795 +372054,129.86,87.7716 +372055,128.55,87.0749 +372056,127.21,86.391 +372057,129.77,88.5109 +372058,128.51,87.7673 +372059,127.22,87.0345 +372060,125.91,86.3144 +372061,128.39,88.5417 +372062,127.16,87.7627 +372063,125.9,86.9944 +372064,124.62,86.2384 +372065,127.01,88.5719 +372066,125.81,87.758 +372067,124.57,86.9545 +372068,123.32,86.1631 +372069,125.63,88.6014 +372070,124.45,87.753 +372071,123.25,86.9148 +372072,122.03,86.0884 +372073,124.25,88.6303 +372074,123.1,87.7477 +372075,121.93,86.8753 +372076,120.74,86.0145 +372077,122.87,88.6584 +372078,121.75,87.7422 +372079,120.61,86.836 +372080,119.44,85.9413 +372081,121.49,88.6858 +372082,120.4,87.7365 +372083,119.28,86.797 +372084,118.15,85.8688 +372085,120.1,88.7124 +372086,119.04,87.7305 +372087,117.96,86.7582 +372088,116.86,85.7972 +372089,118.72,88.7383 +372090,117.69,87.7242 +372091,116.64,86.7197 +372092,115.57,85.7263 +372093,117.33,88.7633 +372094,116.34,87.7176 +372095,115.32,86.6814 +372096,114.28,85.6563 +372097,115.94,88.7876 +372098,114.98,87.7107 +372099,114,86.6434 +372100,113,85.5872 +372101,114.56,88.8109 +372102,113.63,87.7035 +372103,112.68,86.6056 +372104,111.71,85.5189 +372105,113.17,88.8334 +372106,112.27,87.696 +372107,111.36,86.5682 +372108,110.42,85.4515 +372109,111.78,88.855 +372110,110.92,87.6882 +372111,110.04,86.5311 +372112,109.14,85.3851 +372113,110.39,88.8757 +372114,109.57,87.6801 +372115,108.72,86.4942 +372116,107.85,85.3196 +372117,109,88.8954 +372118,108.21,87.6716 +372119,107.4,86.4577 +372120,106.57,85.2551 +372121,107.61,88.9142 +372122,106.86,87.6628 +372123,106.08,86.4215 +372124,105.29,85.1916 +372125,106.21,88.932 +372126,105.5,87.6536 +372127,104.76,86.3856 +372128,104,85.129 +372129,104.82,88.9487 +372130,104.14,87.6441 +372131,103.44,86.35 +372132,102.72,85.0676 +372133,103.43,88.9645 +372134,102.79,87.6343 +372135,102.13,86.3148 +372136,101.44,85.0071 +372137,102.03,88.9792 +372138,101.43,87.6241 +372139,100.81,86.2799 +372140,100.16,84.9478 +372141,100.64,88.9928 +372142,100.08,87.6135 +372143,99.491,86.2453 +372144,98.88,84.8895 +372145,99.245,89.00538 +372146,98.721,87.6025 +372147,98.173,86.2111 +372148,97.6,84.8324 +372149,97.85,89.01684 +372150,97.365,87.5911 +372151,96.856,86.1773 +372152,96.321,84.7763 +372153,96.454,89.02717 +372154,96.009,87.5794 +372155,95.538,86.1438 +372156,95.043,84.7214 +372157,95.058,89.03637 +372158,94.653,87.5673 +372159,94.221,86.1108 +372160,93.765,84.6677 +372161,93.661,89.04441 +372162,93.296,87.5547 +372163,92.905,86.078 +372164,92.487,84.6151 +372165,92.264,89.05129 +372166,91.94,87.5418 +372167,91.588,86.0457 +372168,91.21,84.5637 +372169,90.867,89.05699 +372170,90.583,87.5285 +372171,90.271,86.0138 +372172,89.932,84.5135 +372173,89.47,89.06149 +372174,89.227,87.5147 +372175,88.955,85.9822 +372176,88.656,84.4645 +372177,88.072,89.06478 +372178,87.87,87.5005 +372179,87.639,85.951 +372180,87.379,84.4168 +372181,86.674,89.06685 +372182,86.513,87.4859 +372183,86.323,85.9203 +372184,86.103,84.3702 +372185,85.276,89.06768 +372186,85.157,87.4709 +372187,85.007,85.8899 +372188,84.827,84.325 +372189,83.878,89.06726 +372190,83.8,87.4555 +372191,83.691,85.86 +372192,83.552,84.2809 +372193,82.479,89.06558 +372194,82.443,87.4396 +372195,82.375,85.8304 +372196,82.276,84.2382 +372197,81.081,89.06262 +372198,81.086,87.4233 +372199,81.059,85.8013 +372200,81.001,84.1967 +372201,79.682,89.05839 +372202,79.73,87.4065 +372203,79.743,85.7726 +372204,79.725,84.1565 +372205,78.283,89.05286 +372206,78.373,87.3893 +372207,78.428,85.7443 +372208,78.45,84.1175 +372209,76.885,89.04604 +372210,77.016,87.3717 +372211,77.112,85.7164 +372212,77.175,84.0799 +372213,75.486,89.03791 +372214,75.659,87.3536 +372215,75.796,85.689 +372216,75.9,84.0436 +372217,74.088,89.02846 +372218,74.303,87.335 +372219,74.481,85.662 +372220,74.625,84.0086 +372221,72.689,89.01768 +372222,72.946,87.3161 +372223,73.165,85.6354 +372224,73.35,83.9749 +372225,71.291,89.00558 +372226,71.59,87.2966 +372227,71.85,85.6092 +372228,72.074,83.9425 +372229,69.893,88.9921 +372230,70.233,87.2767 +372231,70.534,85.5835 +372232,70.799,83.9114 +372233,68.495,88.9774 +372234,68.877,87.2564 +372235,69.219,85.5582 +372236,69.524,83.8817 +372237,67.098,88.9612 +372238,67.521,87.2356 +372239,67.903,85.5333 +372240,68.248,83.8533 +372241,65.7,88.9438 +372242,66.165,87.2143 +372243,66.587,85.5089 +372244,66.972,83.8262 +372245,64.303,88.925 +372246,64.809,87.1926 +372247,65.272,85.4849 +372248,65.696,83.8004 +372249,62.907,88.9048 +372250,63.453,87.1704 +372251,63.956,85.4614 +372252,64.42,83.776 +372253,61.51,88.8833 +372254,62.098,87.1478 +372255,62.64,85.4382 +372256,63.143,83.7529 +372257,60.114,88.8604 +372258,60.742,87.1247 +372259,61.324,85.4156 +372260,61.866,83.7311 +372261,58.719,88.8362 +372262,59.387,87.1011 +372263,60.008,85.3933 +372264,60.589,83.7107 +372265,57.324,88.8106 +372266,58.032,87.0771 +372267,58.692,85.3715 +372268,59.311,83.6915 +372269,55.929,88.7836 +372270,56.677,87.0527 +372271,57.376,85.3501 +372272,58.033,83.6737 +372273,54.535,88.7553 +372274,55.322,87.0277 +372275,56.06,85.3291 +372276,56.755,83.6572 +372277,53.142,88.7257 +372278,53.968,87.0024 +372279,54.743,85.3086 +372280,55.476,83.642 +372281,51.749,88.6947 +372282,52.613,86.9765 +372283,53.427,85.2885 +372284,54.196,83.6281 +372285,50.357,88.6624 +372286,51.259,86.9503 +372287,52.11,85.2689 +372288,52.916,83.6154 +372289,48.966,88.6287 +372290,49.905,86.9235 +372291,50.793,85.2496 +372292,51.636,83.6041 +372293,47.575,88.5938 +372294,48.552,86.8964 +372295,49.476,85.2308 +372296,50.355,83.5941 +372297,46.185,88.5574 +372298,47.199,86.8688 +372299,48.159,85.2124 +372300,49.073,83.5853 +372301,44.795,88.5198 +372302,45.846,86.8407 +372303,46.841,85.1944 +372304,47.79,83.5778 +372305,43.407,88.4809 +372306,44.493,86.8122 +372307,45.524,85.1768 +372308,46.507,83.5715 +372309,42.019,88.4407 +372310,43.14,86.7833 +372311,44.206,85.1597 +372312,45.224,83.5665 +372313,40.632,88.3991 +372314,41.788,86.7539 +372315,42.888,85.1429 +372316,43.939,83.5627 +372317,39.246,88.3563 +372318,40.436,86.7241 +372319,41.57,85.1266 +372320,42.654,83.5602 +372321,37.861,88.3123 +372322,39.085,86.6939 +372323,40.251,85.1107 +372324,41.368,83.5588 +372325,36.477,88.2669 +372326,37.734,86.6633 +372327,38.932,85.0951 +372328,40.082,83.5587 +372329,35.094,88.2204 +372330,36.383,86.6323 +372331,37.613,85.0799 +372332,38.794,83.5597 +372333,33.711,88.1725 +372334,35.032,86.6008 +372335,36.294,85.0652 +372336,37.506,83.5619 +372337,32.33,88.1235 +372338,33.682,86.5689 +372339,34.975,85.0508 +372340,36.216,83.5653 +372341,30.95,88.0733 +372342,32.333,86.5367 +372343,33.655,85.0368 +372344,34.926,83.5697 +372345,29.571,88.0218 +372346,30.983,86.504 +372347,32.335,85.0232 +372348,33.635,83.5754 +372349,28.193,87.9692 +372350,29.634,86.471 +372351,31.014,85.0099 +372352,32.343,83.5821 +372353,26.816,87.9155 +372354,28.285,86.4375 +372355,29.694,84.997 +372356,31.05,83.5899 +372357,25.44,87.8606 +372358,26.937,86.4037 +372359,28.373,84.9845 +372360,29.756,83.5988 +372361,24.065,87.8045 +372362,25.589,86.3695 +372363,27.052,84.9723 +372364,28.461,83.6088 +372365,22.692,87.7474 +372366,24.242,86.3349 +372367,25.73,84.9604 +372368,27.165,83.6197 +372369,21.319,87.6891 +372370,22.895,86.3 +372371,24.408,84.9489 +372372,25.868,83.6317 +372373,19.948,87.6298 +372374,21.548,86.2647 +372375,23.086,84.9377 +372376,24.57,83.6448 +372377,18.578,87.5695 +372378,20.202,86.2291 +372379,21.763,84.9269 +372380,23.271,83.6587 +372381,17.21,87.5081 +372382,18.856,86.1931 +372383,20.44,84.9164 +372384,21.971,83.6737 +372385,15.842,87.4457 +372386,17.511,86.1568 +372387,19.117,84.9062 +372388,20.669,83.6896 +372389,14.476,87.3823 +372390,16.166,86.1202 +372391,17.793,84.8963 +372392,19.367,83.7064 +372393,13.111,87.3179 +372394,14.822,86.0832 +372395,16.469,84.8867 +372396,18.063,83.7241 +372397,11.748,87.2526 +372398,13.478,86.0459 +372399,15.145,84.8773 +372400,16.758,83.7427 +372401,10.386,87.1864 +372402,12.134,86.0084 +372403,13.82,84.8683 +372404,15.452,83.7621 +372405,9.0251,87.1192 +372406,10.791,85.9705 +372407,12.495,84.8596 +372408,14.145,83.7824 +372409,7.6658,87.0512 +372410,9.4486,85.9323 +372411,11.169,84.8511 +372412,12.836,83.8034 +372413,6.3077,86.9823 +372414,8.1066,85.8939 +372415,9.8433,84.8429 +372416,11.527,83.8253 +372417,4.9511,86.9127 +372418,6.765,85.8552 +372419,8.517,84.8349 +372420,10.216,83.8479 +372421,3.5959,86.8422 +372422,5.4239,85.8162 +372423,7.1903,84.8272 +372424,8.9035,83.8713 +372425,2.2422,86.7709 +372426,4.0833,85.7769 +372427,5.8631,84.8197 +372428,7.59,83.8953 +372429,0.88981,86.6989 +372430,2.7431,85.7374 +372431,4.5356,84.8124 +372432,6.2751,83.9201 +372433,359.54,86.6261 +372434,1.4035,85.6977 +372435,3.2076,84.8054 +372436,4.959,83.9455 +372437,358.19,86.5527 +372438,0.064388,85.6577 +372439,1.8792,84.7986 +372440,3.6416,83.9715 +372441,356.84,86.4786 +372442,358.73,85.6175 +372443,0.55042,84.792 +372444,2.3229,83.9981 +372445,355.49,86.4038 +372446,357.39,85.5771 +372447,359.22,84.7855 +372448,1.0028,84.0254 +372449,354.15,86.3285 +372450,356.05,85.5365 +372451,357.89,84.7793 +372452,359.68,84.0531 +372453,352.81,86.2525 +372454,354.71,85.4957 +372455,356.56,84.7732 +372456,358.36,84.0815 +372457,351.46,86.176 +372458,353.38,85.4548 +372459,355.23,84.7673 +372460,357.03,84.1103 +372461,350.12,86.099 +372462,352.04,85.4136 +372463,353.9,84.7616 +372464,355.71,84.1396 +372465,348.78,86.0215 +372466,350.7,85.3723 +372467,352.57,84.756 +372468,354.38,84.1693 +372469,347.45,85.9435 +372470,349.37,85.3308 +372471,351.24,84.7506 +372472,353.05,84.1994 +372473,346.11,85.865 +372474,348.04,85.2892 +372475,349.9,84.7452 +372476,351.72,84.23 +372477,344.78,85.7862 +372478,346.7,85.2474 +372479,348.57,84.74 +372480,350.39,84.2609 +372481,343.44,85.707 +372482,345.37,85.2055 +372483,347.24,84.735 +372484,349.06,84.2921 +372485,342.11,85.6274 +372486,344.03,85.1635 +372487,345.91,84.73 +372488,347.73,84.3237 +372489,340.78,85.5475 +372490,342.7,85.1214 +372491,344.57,84.7251 +372492,346.39,84.3555 +372493,339.45,85.4673 +372494,341.37,85.0792 +372495,343.24,84.7203 +372496,345.06,84.3876 +372497,338.13,85.3869 +372498,340.04,85.0369 +372499,341.9,84.7155 +372500,343.72,84.4199 +372501,336.8,85.3062 +372502,338.71,84.9945 +372503,340.57,84.7109 +372504,342.38,84.4524 +372505,335.48,85.2253 +372506,337.38,84.9521 +372507,339.23,84.7063 +372508,341.04,84.4851 +372509,334.15,85.1443 +372510,336.05,84.9096 +372511,337.89,84.7017 +372512,339.7,84.5179 +372513,332.83,85.0632 +372514,334.72,84.867 +372515,336.56,84.6972 +372516,338.35,84.5508 +372517,331.51,84.9819 +372518,333.39,84.8245 +372519,335.22,84.6926 +372520,337.01,84.5838 +372521,330.19,84.9006 +372522,332.06,84.7819 +372523,333.88,84.6881 +372524,335.66,84.6168 +372525,328.88,84.8192 +372526,330.73,84.7392 +372527,332.55,84.6836 +372528,334.31,84.6499 +372529,327.56,84.7378 +372530,329.41,84.6966 +372531,331.21,84.6791 +372532,332.97,84.683 +372533,326.25,84.6565 +372534,328.08,84.654 +372535,329.87,84.6746 +372536,331.62,84.716 +372537,324.93,84.5752 +372538,326.75,84.6114 +372539,328.53,84.6701 +372540,330.26,84.7489 +372541,323.62,84.494 +372542,325.43,84.5688 +372543,327.19,84.6655 +372544,328.91,84.7818 +372545,322.31,84.4129 +372546,324.1,84.5263 +372547,325.85,84.6609 +372548,327.56,84.8145 +372549,321.01,84.3319 +372550,322.78,84.4838 +372551,324.51,84.6562 +372552,326.2,84.8471 +372553,319.7,84.2512 +372554,321.45,84.4413 +372555,323.17,84.6515 +372556,324.84,84.8795 +372557,318.39,84.1706 +372558,320.13,84.3989 +372559,321.83,84.6467 +372560,323.49,84.9117 +372561,317.09,84.0903 +372562,318.81,84.3566 +372563,320.49,84.6418 +372564,322.13,84.9437 +372565,315.79,84.0102 +372566,317.48,84.3144 +372567,319.14,84.6368 +372568,320.77,84.9754 +372569,314.48,83.9305 +372570,316.16,84.2723 +372571,317.8,84.6317 +372572,319.4,85.0068 +372573,313.18,83.8511 +372574,314.84,84.2303 +372575,316.46,84.6266 +372576,318.04,85.0379 +372577,311.89,83.772 +372578,313.52,84.1884 +372579,315.11,84.6212 +372580,316.68,85.0686 +372581,310.59,83.6934 +372582,312.2,84.1466 +372583,313.77,84.6158 +372584,315.31,85.099 +372585,309.29,83.6151 +372586,310.88,84.1049 +372587,312.43,84.6102 +372588,313.94,85.1289 +372589,308,83.5373 +372590,309.56,84.0634 +372591,311.08,84.6045 +372592,312.57,85.1585 +372593,306.7,83.46 +372594,308.24,84.0221 +372595,309.74,84.5986 +372596,311.2,85.1875 +372597,305.41,83.3832 +372598,306.92,83.9809 +372599,308.39,84.5925 +372600,309.83,85.2161 +372601,304.12,83.3069 +372602,305.6,83.9399 +372603,307.05,84.5863 +372604,308.46,85.2442 +372605,302.83,83.2312 +372606,304.28,83.899 +372607,305.7,84.5799 +372608,307.09,85.2718 +372609,301.54,83.1561 +372610,302.96,83.8584 +372611,304.35,84.5733 +372612,305.72,85.2987 +372613,300.25,83.0815 +372614,301.64,83.818 +372615,303.01,84.5665 +372616,304.34,85.3251 +372617,298.96,83.0077 +372618,300.33,83.7777 +372619,301.66,84.5594 +372620,302.96,85.3509 +372621,297.68,82.9345 +372622,299.01,83.7377 +372623,300.31,84.5522 +372624,301.59,85.3761 +372625,296.39,82.862 +372626,297.69,83.6979 +372627,298.97,84.5447 +372628,300.21,85.4006 +372629,295.11,82.7902 +372630,296.38,83.6584 +372631,297.62,84.537 +372632,298.83,85.4244 +372633,293.83,82.7192 +372634,295.06,83.619 +372635,296.27,84.5291 +372636,297.45,85.4475 +372637,292.54,82.6489 +372638,293.75,83.58 +372639,294.92,84.5209 +372640,296.07,85.4698 +372641,291.26,82.5795 +372642,292.43,83.5412 +372643,293.57,84.5124 +372644,294.69,85.4914 +372645,289.98,82.5108 +372646,291.12,83.5026 +372647,292.22,84.5037 +372648,293.3,85.5123 +372649,288.7,82.443 +372650,289.8,83.4644 +372651,290.88,84.4947 +372652,291.92,85.5323 +372653,287.43,82.3761 +372654,288.49,83.4264 +372655,289.53,84.4855 +372656,290.54,85.5515 +372657,286.15,82.3101 +372658,287.18,83.3887 +372659,288.18,84.4759 +372660,289.15,85.5699 +372661,284.87,82.2449 +372662,285.86,83.3513 +372663,286.83,84.466 +372664,287.76,85.5874 +372665,283.6,82.1807 +372666,284.55,83.3142 +372667,285.48,84.4559 +372668,286.38,85.604 +372669,282.32,82.1175 +372670,283.24,83.2774 +372671,284.13,84.4454 +372672,284.99,85.6197 +372673,281.05,82.0552 +372674,281.92,83.241 +372675,282.78,84.4346 +372676,283.6,85.6345 +372677,279.77,81.9939 +372678,280.61,83.2048 +372679,281.42,84.4235 +372680,282.21,85.6483 +372681,278.5,81.9337 +372682,279.3,83.169 +372683,280.07,84.412 +372684,280.82,85.6611 +372685,277.23,81.8745 +372686,277.99,83.1335 +372687,278.72,84.4003 +372688,279.43,85.673 +372689,275.96,81.8163 +372690,276.68,83.0984 +372691,277.37,84.3881 +372692,278.04,85.6839 +372693,274.68,81.7592 +372694,275.37,83.0636 +372695,276.02,84.3757 +372696,276.65,85.6938 +372697,273.41,81.7031 +372698,274.05,83.0292 +372699,274.67,84.3629 +372700,275.25,85.7026 +372701,272.14,81.6482 +372702,272.74,82.9951 +372703,273.32,84.3497 +372704,273.86,85.7104 +372705,270.87,81.5944 +372706,271.43,82.9614 +372707,271.96,84.3361 +372708,272.47,85.7171 +372709,269.61,81.5417 +372710,270.12,82.9281 +372711,270.61,84.3222 +372712,271.07,85.7227 +372713,268.34,81.4902 +372714,268.81,82.8952 +372715,269.26,84.308 +372716,269.68,85.7272 +372717,267.07,81.4398 +372718,267.5,82.8626 +372719,267.91,84.2933 +372720,268.28,85.7306 +372721,265.8,81.3906 +372722,266.19,82.8304 +372723,266.56,84.2783 +372724,266.89,85.7329 +372725,264.53,81.3426 +372726,264.88,82.7986 +372727,265.2,84.2628 +372728,265.49,85.7341 +372729,263.27,81.2957 +372730,263.57,82.7672 +372731,263.85,84.247 +372732,264.1,85.7341 +372733,262,81.2501 +372734,262.26,82.7362 +372735,262.5,84.2308 +372736,262.7,85.7329 +372737,260.73,81.2057 +372738,260.95,82.7056 +372739,261.15,84.2142 +372740,261.31,85.7306 +372741,259.47,81.1625 +372742,259.65,82.6754 +372743,259.79,84.1972 +372744,259.91,85.727 +372745,258.2,81.1206 +372746,258.34,82.6456 +372747,258.44,84.1798 +372748,258.51,85.7223 +372749,256.93,81.0799 +372750,257.03,82.6162 +372751,257.09,84.162 +372752,257.12,85.7164 +372753,255.67,81.0405 +372754,255.72,82.5872 +372755,255.74,84.1437 +372756,255.72,85.7093 +372757,254.4,81.0023 +372758,254.41,82.5587 +372759,254.38,84.1251 +372760,254.32,85.7009 +372761,253.14,80.9654 +372762,253.1,82.5305 +372763,253.03,84.106 +372764,252.93,85.6913 +372765,251.87,80.9297 +372766,251.79,82.5028 +372767,251.68,84.0866 +372768,251.53,85.6805 +372769,250.61,80.8954 +372770,250.48,82.4755 +372771,250.32,84.0667 +372772,250.13,85.6684 +372773,249.34,80.8623 +372774,249.17,82.4486 +372775,248.97,84.0463 +372776,248.74,85.6551 +372777,248.07,80.8305 +372778,247.86,82.4222 +372779,247.62,84.0256 +372780,247.34,85.6405 +372781,246.81,80.8 +372782,246.56,82.3962 +372783,246.27,84.0044 +372784,245.94,85.6246 +372785,245.54,80.7708 +372786,245.25,82.3706 +372787,244.92,83.9828 +372788,244.55,85.6075 +372789,244.28,80.7429 +372790,243.94,82.3454 +372791,243.56,83.9608 +372792,243.15,85.5891 +372793,243.01,80.7162 +372794,242.63,82.3207 +372795,242.21,83.9384 +372796,241.75,85.5695 +372797,241.74,80.6909 +372798,241.32,82.2964 +372799,240.86,83.9155 +372800,240.36,85.5486 +372801,240.47,80.6669 +372802,240.01,82.2725 +372803,239.51,83.8922 +372804,238.96,85.5264 +372805,239.21,80.6441 +372806,238.7,82.249 +372807,238.16,83.8685 +372808,237.57,85.5029 +372809,237.94,80.6226 +372810,237.39,82.226 +372811,236.8,83.8444 +372812,236.17,85.4782 +372813,236.67,80.6025 +372814,236.08,82.2034 +372815,235.45,83.8198 +372816,234.78,85.4521 +372817,235.4,80.5836 +372818,234.77,82.1812 +372819,234.1,83.7948 +372820,233.39,85.4248 +372821,234.13,80.566 +372822,233.46,82.1595 +372823,232.75,83.7694 +372824,231.99,85.3963 +372825,232.86,80.5496 +372826,232.15,82.1382 +372827,231.4,83.7435 +372828,230.6,85.3665 +372829,231.59,80.5345 +372830,230.84,82.1173 +372831,230.05,83.7172 +372832,229.21,85.3354 +372833,230.32,80.5207 +372834,229.53,82.0968 +372835,228.7,83.6906 +372836,227.82,85.303 +372837,229.05,80.5082 +372838,228.22,82.0768 +372839,227.35,83.6634 +372840,226.43,85.2694 +372841,227.78,80.4969 +372842,226.91,82.0571 +372843,226,83.6359 +372844,225.04,85.2345 +372845,226.51,80.4868 +372846,225.6,82.0379 +372847,224.65,83.608 +372848,223.65,85.1984 +372849,225.24,80.478 +372850,224.29,82.0191 +372851,223.3,83.5796 +372852,222.26,85.1611 +372853,223.96,80.4704 +372854,222.98,82.0007 +372855,221.95,83.5509 +372856,220.87,85.1225 +372857,222.69,80.464 +372858,221.67,81.9827 +372859,220.6,83.5217 +372860,219.48,85.0827 +372861,221.41,80.4589 +372862,220.36,81.9651 +372863,219.25,83.4921 +372864,218.09,85.0416 +372865,220.14,80.4549 +372866,219.05,81.9479 +372867,217.91,83.4622 +372868,216.71,84.9994 +372869,218.86,80.4521 +372870,217.73,81.9311 +372871,216.56,83.4318 +372872,215.32,84.956 +372873,217.58,80.4504 +372874,216.42,81.9147 +372875,215.21,83.4011 +372876,213.94,84.9114 +372877,216.31,80.4499 +372878,215.11,81.8987 +372879,213.86,83.3699 +372880,212.56,84.8656 +372881,215.03,80.4506 +372882,213.8,81.8831 +372883,212.52,83.3384 +372884,211.18,84.8186 +372885,213.75,80.4524 +372886,212.48,81.8678 +372887,211.17,83.3065 +372888,209.8,84.7705 +372889,212.47,80.4553 +372890,211.17,81.853 +372891,209.82,83.2742 +372892,208.42,84.7213 +372893,211.18,80.4593 +372894,209.86,81.8384 +372895,208.48,83.2415 +372896,207.04,84.6709 +372897,209.9,80.4644 +372898,208.54,81.8243 +372899,207.13,83.2085 +372900,205.66,84.6194 +372901,208.62,80.4705 +372902,207.23,81.8105 +372903,205.79,83.1751 +372904,204.28,84.5669 +372905,207.33,80.4777 +372906,205.91,81.7971 +372907,204.44,83.1414 +372908,202.91,84.5132 +372909,206.05,80.486 +372910,204.6,81.784 +372911,203.1,83.1073 +372912,201.53,84.4585 +372913,204.76,80.4952 +372914,203.29,81.7713 +372915,201.75,83.0729 +372916,200.16,84.4027 +372917,203.47,80.5054 +372918,201.97,81.7589 +372919,200.41,83.0381 +372920,198.79,84.3459 +372921,202.18,80.5167 +372922,200.65,81.7468 +372923,199.07,83.003 +372924,197.42,84.2881 +372925,200.89,80.5288 +372926,199.34,81.7351 +372927,197.73,82.9676 +372928,196.05,84.2293 +372929,199.6,80.5419 +372930,198.02,81.7236 +372931,196.38,82.9319 +372932,194.68,84.1695 +372933,198.31,80.556 +372934,196.7,81.7125 +372935,195.04,82.8958 +372936,193.31,84.1087 +372937,197.02,80.5709 +372938,195.39,81.7017 +372939,193.7,82.8594 +372940,191.95,84.0471 +372941,195.72,80.5867 +372942,194.07,81.6912 +372943,192.36,82.8228 +372944,190.58,83.9845 +372945,194.42,80.6033 +372946,192.75,81.681 +372947,191.02,82.7858 +372948,189.22,83.921 +372949,193.13,80.6208 +372950,191.43,81.671 +372951,189.68,82.7486 +372952,187.86,83.8566 +372953,191.83,80.6391 +372954,190.11,81.6614 +372955,188.34,82.7111 +372956,186.5,83.7914 +372957,190.53,80.6582 +372958,188.79,81.652 +372959,187,82.6733 +372960,185.14,83.7253 +372961,189.23,80.678 +372962,187.48,81.6428 +372963,185.66,82.6353 +372964,183.78,83.6584 +372965,187.93,80.6986 +372966,186.16,81.634 +372967,184.33,82.597 +372968,182.42,83.5908 +372969,186.62,80.7199 +372970,184.83,81.6253 +372971,182.99,82.5584 +372972,181.07,83.5224 +372973,185.32,80.7419 +372974,183.51,81.6169 +372975,181.65,82.5196 +372976,179.72,83.4532 +372977,184.01,80.7645 +372978,182.19,81.6087 +372979,180.31,82.4806 +372980,178.37,83.3834 +372981,182.7,80.7878 +372982,180.87,81.6008 +372983,178.98,82.4414 +372984,177.02,83.3128 +372985,181.39,80.8117 +372986,179.55,81.5931 +372987,177.64,82.4019 +372988,175.67,83.2416 +372989,180.08,80.8363 +372990,178.23,81.5855 +372991,176.31,82.3623 +372992,174.32,83.1698 +372993,178.77,80.8613 +372994,176.9,81.5782 +372995,174.97,82.3224 +372996,172.98,83.0973 +372997,177.46,80.8869 +372998,175.58,81.571 +372999,173.64,82.2824 +373000,171.63,83.0243 +373001,176.14,80.913 +373002,174.26,81.5641 +373003,172.31,82.2422 +373004,170.29,82.9507 +373005,174.83,80.9397 +373006,172.93,81.5573 +373007,170.97,82.2018 +373008,168.95,82.8765 +373009,173.51,80.9667 +373010,171.61,81.5506 +373011,169.64,82.1613 +373012,167.61,82.8019 +373013,172.19,80.9942 +373014,170.28,81.5441 +373015,168.31,82.1206 +373016,166.27,82.7268 +373017,170.87,81.0221 +373018,168.95,81.5378 +373019,166.98,82.0798 +373020,164.94,82.6512 +373021,169.55,81.0504 +373022,167.63,81.5316 +373023,165.65,82.0388 +373024,163.6,82.5752 +373025,168.22,81.0791 +373026,166.3,81.5255 +373027,164.32,81.9977 +373028,162.27,82.4989 +373029,166.9,81.108 +373030,164.97,81.5195 +373031,162.99,81.9565 +373032,160.94,82.4221 +373033,165.57,81.1373 +373034,163.65,81.5136 +373035,161.66,81.9152 +373036,159.61,82.3451 +373037,164.24,81.1668 +373038,162.32,81.5078 +373039,160.33,81.8738 +373040,158.28,82.2677 +373041,162.92,81.1966 +373042,160.99,81.5022 +373043,159,81.8323 +373044,156.95,82.19 +373045,161.58,81.2266 +373046,159.66,81.4965 +373047,157.68,81.7907 +373048,155.63,82.1121 +373049,160.25,81.2568 +373050,158.33,81.491 +373051,156.35,81.7491 +373052,154.3,82.034 +373053,158.92,81.2871 +373054,157,81.4855 +373055,155.02,81.7074 +373056,152.98,81.9557 +373057,157.58,81.3175 +373058,155.67,81.4801 +373059,153.7,81.6657 +373060,151.66,81.8773 +373061,156.25,81.3481 +373062,154.34,81.4747 +373063,152.37,81.6239 +373064,150.34,81.7987 +373065,154.91,81.3787 +373066,153.01,81.4693 +373067,151.05,81.5821 +373068,149.03,81.72 +373069,153.57,81.4094 +373070,151.68,81.464 +373071,149.72,81.5403 +373072,147.71,81.6413 +373073,152.23,81.4401 +373074,150.34,81.4586 +373075,148.4,81.4985 +373076,146.4,81.5625 +373077,150.89,81.4708 +373078,149.01,81.4533 +373079,147.08,81.4567 +373080,145.08,81.4837 +373081,149.54,81.5014 +373082,147.68,81.448 +373083,145.76,81.4149 +373084,143.77,81.4049 +373085,148.2,81.532 +373086,146.34,81.4426 +373087,144.43,81.3731 +373088,142.46,81.3262 +373089,146.85,81.5625 +373090,145.01,81.4372 +373091,143.11,81.3314 +373092,141.16,81.2476 +373093,145.5,81.5929 +373094,143.67,81.4318 +373095,141.79,81.2896 +373096,139.85,81.169 +373097,144.15,81.6231 +373098,142.34,81.4263 +373099,140.47,81.248 +373100,138.54,81.0906 +373101,142.8,81.6531 +373102,141,81.4208 +373103,139.15,81.2064 +373104,137.24,81.0124 +373105,141.45,81.6829 +373106,139.67,81.4152 +373107,137.83,81.1649 +373108,135.94,80.9344 +373109,140.1,81.7125 +373110,138.33,81.4095 +373111,136.51,81.1234 +373112,134.64,80.8566 +373113,138.74,81.7418 +373114,136.99,81.4038 +373115,135.19,81.0821 +373116,133.34,80.7791 +373117,137.39,81.7709 +373118,135.66,81.398 +373119,133.88,81.0408 +373120,132.04,80.7019 +373121,136.03,81.7996 +373122,134.32,81.392 +373123,132.56,80.9997 +373124,130.75,80.625 +373125,134.67,81.828 +373126,132.98,81.386 +373127,131.24,80.9586 +373128,129.45,80.5484 +373129,133.31,81.856 +373130,131.64,81.3798 +373131,129.93,80.9178 +373132,128.16,80.4722 +373133,131.95,81.8836 +373134,130.3,81.3735 +373135,128.61,80.877 +373136,126.87,80.3964 +373137,130.59,81.9108 +373138,128.96,81.3671 +373139,127.29,80.8364 +373140,125.58,80.3211 +373141,129.22,81.9376 +373142,127.62,81.3605 +373143,125.98,80.7959 +373144,124.29,80.2462 +373145,127.86,81.9639 +373146,126.28,81.3537 +373147,124.66,80.7556 +373148,123,80.1718 +373149,126.49,81.9897 +373150,124.94,81.3468 +373151,123.35,80.7155 +373152,121.71,80.0979 +373153,125.12,82.0149 +373154,123.6,81.3398 +373155,122.04,80.6756 +373156,120.43,80.0246 +373157,123.75,82.0397 +373158,122.26,81.3325 +373159,120.72,80.6358 +373160,119.14,79.952 +373161,122.38,82.0638 +373162,120.92,81.3251 +373163,119.41,80.5963 +373164,117.86,79.88 +373165,121.01,82.0874 +373166,119.58,81.3174 +373167,118.1,80.5569 +373168,116.58,79.808 +373169,119.64,82.1103 +373170,118.23,81.3096 +373171,116.79,80.5178 +373172,115.3,79.737 +373173,118.26,82.1326 +373174,116.89,81.3015 +373175,115.48,80.4789 +373176,114.02,79.667 +373177,116.89,82.1542 +373178,115.55,81.2932 +373179,114.16,80.4403 +373180,112.74,79.597 +373181,115.51,82.1752 +373182,114.2,81.2847 +373183,112.85,80.4018 +373184,111.46,79.529 +373185,114.14,82.1954 +373186,112.86,81.2759 +373187,111.54,80.3637 +373188,110.19,79.461 +373189,112.76,82.2149 +373190,111.52,81.267 +373191,110.23,80.3257 +373192,108.91,79.393 +373193,111.38,82.2336 +373194,110.17,81.2577 +373195,108.92,80.2881 +373196,107.64,79.327 +373197,110,82.2516 +373198,108.83,81.2482 +373199,107.61,80.2507 +373200,106.37,79.261 +373201,108.62,82.2688 +373202,107.48,81.2384 +373203,106.31,80.2136 +373204,105.09,79.196 +373205,107.24,82.2851 +373206,106.14,81.2284 +373207,105,80.1768 +373208,103.82,79.132 +373209,105.86,82.3006 +373210,104.79,81.218 +373211,103.69,80.1403 +373212,102.55,79.069 +373213,104.47,82.3153 +373214,103.44,81.2074 +373215,102.38,80.1041 +373216,101.28,79.007 +373217,103.09,82.329 +373218,102.1,81.1965 +373219,101.07,80.0682 +373220,100.01,78.946 +373221,101.7,82.3419 +373222,100.75,81.1853 +373223,99.766,80.0326 +373224,98.747,78.886 +373225,100.32,82.3539 +373226,99.405,81.1738 +373227,98.46,79.997 +373228,97.48,78.826 +373229,98.93,82.3649 +373230,98.058,81.162 +373231,97.153,79.962 +373232,96.214,78.768 +373233,97.542,82.375 +373234,96.711,81.1498 +373235,95.846,79.928 +373236,94.949,78.711 +373237,96.154,82.3841 +373238,95.363,81.1373 +373239,94.54,79.893 +373240,93.684,78.654 +373241,94.765,82.3922 +373242,94.016,81.1245 +373243,93.234,79.86 +373244,92.42,78.599 +373245,93.376,82.3994 +373246,92.668,81.1114 +373247,91.929,79.826 +373248,91.157,78.545 +373249,91.985,82.4055 +373250,91.32,81.0979 +373251,90.623,79.793 +373252,89.894,78.492 +373253,90.595,82.4106 +373254,89.972,81.0841 +373255,89.318,79.76 +373256,88.632,78.44 +373257,89.203,82.4146 +373258,88.624,81.0699 +373259,88.013,79.727 +373260,87.371,78.389 +373261,87.812,82.4176 +373262,87.276,81.0554 +373263,86.708,79.695 +373264,86.11,78.339 +373265,86.419,82.4195 +373266,85.927,81.0405 +373267,85.404,79.663 +373268,84.849,78.29 +373269,85.027,82.4204 +373270,84.579,81.0253 +373271,84.099,79.632 +373272,83.589,78.242 +373273,83.633,82.4201 +373274,83.23,81.0097 +373275,82.795,79.601 +373276,82.329,78.196 +373277,82.24,82.4188 +373278,81.881,80.9937 +373279,81.491,79.571 +373280,81.07,78.151 +373281,80.846,82.4163 +373282,80.532,80.9773 +373283,80.187,79.54 +373284,79.811,78.107 +373285,79.452,82.4127 +373286,79.183,80.9606 +373287,78.883,79.51 +373288,78.552,78.064 +373289,78.057,82.4079 +373290,77.834,80.9435 +373291,77.58,79.481 +373292,77.294,78.022 +373293,76.662,82.402 +373294,76.485,80.926 +373295,76.276,79.452 +373296,76.036,77.982 +373297,75.267,82.395 +373298,75.136,80.9081 +373299,74.972,79.423 +373300,74.778,77.942 +373301,73.872,82.3868 +373302,73.786,80.8898 +373303,73.669,79.395 +373304,73.52,77.904 +373305,72.477,82.3774 +373306,72.437,80.8711 +373307,72.366,79.367 +373308,72.262,77.867 +373309,71.081,82.3668 +373310,71.088,80.852 +373311,71.062,79.34 +373312,71.005,77.832 +373313,69.686,82.355 +373314,69.739,80.8326 +373315,69.759,79.313 +373316,69.747,77.798 +373317,68.29,82.3421 +373318,68.39,80.8127 +373319,68.456,79.286 +373320,68.49,77.764 +373321,66.894,82.328 +373322,67.04,80.7924 +373323,67.153,79.26 +373324,67.233,77.733 +373325,65.499,82.3126 +373326,65.691,80.7718 +373327,65.85,79.235 +373328,65.975,77.702 +373329,64.103,82.2961 +373330,64.342,80.7507 +373331,64.546,79.209 +373332,64.717,77.673 +373333,62.708,82.2783 +373334,62.993,80.7292 +373335,63.243,79.184 +373336,63.46,77.645 +373337,61.313,82.2593 +373338,61.644,80.7073 +373339,61.94,79.16 +373340,62.202,77.618 +373341,59.918,82.2391 +373342,60.295,80.6851 +373343,60.637,79.136 +373344,60.944,77.592 +373345,58.523,82.2177 +373346,58.946,80.6624 +373347,59.333,79.112 +373348,59.686,77.568 +373349,57.128,82.1951 +373350,57.598,80.6393 +373351,58.03,79.089 +373352,58.427,77.545 +373353,55.734,82.1713 +373354,56.249,80.6158 +373355,56.727,79.066 +373356,57.168,77.523 +373357,54.339,82.1462 +373358,54.901,80.5919 +373359,55.423,79.044 +373360,55.909,77.503 +373361,52.946,82.12 +373362,53.553,80.5675 +373363,54.12,79.022 +373364,54.65,77.483 +373365,51.552,82.0925 +373366,52.204,80.5428 +373367,52.816,79 +373368,53.39,77.465 +373369,50.159,82.0638 +373370,50.856,80.5177 +373371,51.512,78.979 +373372,52.13,77.449 +373373,48.767,82.0339 +373374,49.509,80.4922 +373375,50.208,78.959 +373376,50.869,77.433 +373377,47.375,82.0028 +373378,48.161,80.4663 +373379,48.904,78.938 +373380,49.608,77.419 +373381,45.983,81.9705 +373382,46.814,80.4399 +373383,47.6,78.918 +373384,48.346,77.406 +373385,44.593,81.937 +373386,45.466,80.4132 +373387,46.296,78.899 +373388,47.084,77.394 +373389,43.202,81.9023 +373390,44.12,80.3861 +373391,44.991,78.88 +373392,45.821,77.384 +373393,41.813,81.8664 +373394,42.773,80.3586 +373395,43.686,78.861 +373396,44.558,77.374 +373397,40.424,81.8293 +373398,41.426,80.3307 +373399,42.381,78.843 +373400,43.294,77.366 +373401,39.035,81.7911 +373402,40.08,80.3024 +373403,41.076,78.825 +373404,42.029,77.359 +373405,37.648,81.7517 +373406,38.734,80.2737 +373407,39.771,78.808 +373408,40.764,77.353 +373409,36.261,81.7111 +373410,37.388,80.2447 +373411,38.465,78.791 +373412,39.498,77.349 +373413,34.875,81.6695 +373414,36.043,80.2153 +373415,37.16,78.774 +373416,38.231,77.345 +373417,33.49,81.6266 +373418,34.698,80.1854 +373419,35.854,78.758 +373420,36.963,77.343 +373421,32.105,81.5827 +373422,33.353,80.1553 +373423,34.547,78.742 +373424,35.695,77.342 +373425,30.722,81.5376 +373426,32.009,80.1247 +373427,33.241,78.726 +373428,34.425,77.342 +373429,29.339,81.4914 +373430,30.665,80.0938 +373431,31.934,78.711 +373432,33.155,77.343 +373433,27.958,81.4441 +373434,29.321,80.0625 +373435,30.627,78.696 +373436,31.884,77.345 +373437,26.577,81.3958 +373438,27.977,80.0309 +373439,29.319,78.682 +373440,30.612,77.348 +373441,25.198,81.3463 +373442,26.634,79.999 +373443,28.012,78.668 +373444,29.339,77.353 +373445,23.819,81.2959 +373446,25.291,79.967 +373447,26.704,78.654 +373448,28.065,77.358 +373449,22.442,81.2443 +373450,23.949,79.934 +373451,25.395,78.641 +373452,26.789,77.364 +373453,21.066,81.1918 +373454,22.607,79.901 +373455,24.087,78.628 +373456,25.513,77.372 +373457,19.69,81.1383 +373458,21.265,79.868 +373459,22.778,78.615 +373460,24.236,77.38 +373461,18.316,81.0837 +373462,19.924,79.834 +373463,21.468,78.603 +373464,22.958,77.39 +373465,16.944,81.0282 +373466,18.584,79.8 +373467,20.159,78.591 +373468,21.678,77.4 +373469,15.572,80.9717 +373470,17.243,79.766 +373471,18.849,78.579 +373472,20.398,77.411 +373473,14.202,80.9143 +373474,15.903,79.731 +373475,17.538,78.568 +373476,19.116,77.423 +373477,12.833,80.856 +373478,14.564,79.696 +373479,16.227,78.557 +373480,17.833,77.437 +373481,11.465,80.7967 +373482,13.225,79.661 +373483,14.916,78.546 +373484,16.549,77.451 +373485,10.098,80.7366 +373486,11.886,79.626 +373487,13.605,78.536 +373488,15.264,77.466 +373489,8.7332,80.6756 +373490,10.548,79.59 +373491,12.293,78.526 +373492,13.978,77.481 +373493,7.3694,80.6137 +373494,9.2104,79.554 +373495,10.98,78.516 +373496,12.69,77.498 +373497,6.0071,80.5511 +373498,7.8732,79.518 +373499,9.6676,78.506 +373500,11.401,77.515 +373501,4.6461,80.4876 +373502,6.5365,79.481 +373503,8.3544,78.497 +373504,10.11,77.533 +373505,3.2865,80.4233 +373506,5.2003,79.444 +373507,7.0408,78.488 +373508,8.8186,77.552 +373509,1.9284,80.3583 +373510,3.8645,79.407 +373511,5.7267,78.479 +373512,7.5256,77.572 +373513,0.57181,80.2925 +373514,2.5293,79.37 +373515,4.4122,78.471 +373516,6.2312,77.592 +373517,359.22,80.226 +373518,1.1946,79.332 +373519,3.0972,78.462 +373520,4.9355,77.613 +373521,357.86,80.1589 +373522,359.86,79.295 +373523,1.7818,78.454 +373524,3.6384,77.635 +373525,356.51,80.091 +373526,358.53,79.257 +373527,0.466,78.446 +373528,2.3399,77.658 +373529,355.16,80.0225 +373530,357.19,79.219 +373531,359.15,78.439 +373532,1.04,77.68 +373533,353.81,79.953 +373534,355.86,79.18 +373535,357.83,78.431 +373536,359.74,77.704 +373537,352.46,79.884 +373538,354.53,79.142 +373539,356.52,78.424 +373540,358.44,77.728 +373541,351.12,79.813 +373542,353.2,79.103 +373543,355.2,78.417 +373544,357.13,77.753 +373545,349.77,79.743 +373546,351.87,79.064 +373547,353.88,78.41 +373548,355.83,77.778 +373549,348.43,79.671 +373550,350.54,79.025 +373551,352.56,78.403 +373552,354.52,77.804 +373553,347.09,79.599 +373554,349.21,78.986 +373555,351.24,78.397 +373556,353.21,77.83 +373557,345.75,79.527 +373558,347.88,78.946 +373559,349.92,78.39 +373560,351.9,77.856 +373561,344.41,79.454 +373562,346.55,78.907 +373563,348.6,78.384 +373564,350.59,77.883 +373565,343.08,79.381 +373566,345.22,78.867 +373567,347.28,78.378 +373568,349.28,77.911 +373569,341.74,79.308 +373570,343.89,78.827 +373571,345.96,78.372 +373572,347.96,77.938 +373573,340.41,79.234 +373574,342.56,78.788 +373575,344.64,78.366 +373576,346.64,77.966 +373577,339.08,79.159 +373578,341.24,78.748 +373579,343.32,78.36 +373580,345.33,77.995 +373581,337.75,79.085 +373582,339.91,78.708 +373583,341.99,78.355 +373584,344.01,78.023 +373585,336.42,79.01 +373586,338.59,78.667 +373587,340.67,78.349 +373588,342.69,78.052 +373589,335.09,78.935 +373590,337.26,78.627 +373591,339.35,78.344 +373592,341.37,78.081 +373593,333.77,78.86 +373594,335.94,78.587 +373595,338.02,78.338 +373596,340.04,78.11 +373597,332.45,78.784 +373598,334.61,78.547 +373599,336.7,78.333 +373600,338.72,78.14 +373601,331.12,78.708 +373602,333.29,78.506 +373603,335.37,78.327 +373604,337.39,78.169 +373605,329.8,78.633 +373606,331.97,78.466 +373607,334.05,78.322 +373608,336.06,78.199 +373609,328.49,78.557 +373610,330.64,78.425 +373611,332.72,78.317 +373612,334.73,78.228 +373613,327.17,78.481 +373614,329.32,78.385 +373615,331.4,78.312 +373616,333.4,78.258 +373617,325.86,78.405 +373618,328,78.345 +373619,330.07,78.307 +373620,332.07,78.288 +373621,324.54,78.328 +373622,326.68,78.304 +373623,328.74,78.301 +373624,330.73,78.318 +373625,323.23,78.252 +373626,325.36,78.264 +373627,327.41,78.296 +373628,329.4,78.348 +373629,321.92,78.176 +373630,324.04,78.223 +373631,326.08,78.291 +373632,328.06,78.377 +373633,320.61,78.1 +373634,322.72,78.183 +373635,324.76,78.286 +373636,326.72,78.407 +373637,319.31,78.024 +373638,321.4,78.142 +373639,323.43,78.281 +373640,325.38,78.436 +373641,318,77.949 +373642,320.09,78.102 +373643,322.1,78.275 +373644,324.04,78.466 +373645,316.7,77.873 +373646,318.77,78.062 +373647,320.77,78.27 +373648,322.69,78.495 +373649,315.4,77.798 +373650,317.45,78.022 +373651,319.43,78.265 +373652,321.35,78.524 +373653,314.1,77.722 +373654,316.14,77.982 +373655,318.1,78.259 +373656,320,78.553 +373657,312.8,77.647 +373658,314.82,77.942 +373659,316.77,78.254 +373660,318.66,78.581 +373661,311.5,77.573 +373662,313.51,77.902 +373663,315.44,78.248 +373664,317.31,78.609 +373665,310.21,77.498 +373666,312.19,77.862 +373667,314.11,78.242 +373668,315.96,78.637 +373669,308.91,77.424 +373670,310.88,77.822 +373671,312.77,78.236 +373672,314.6,78.665 +373673,307.62,77.35 +373674,309.56,77.782 +373675,311.44,78.231 +373676,313.25,78.692 +373677,306.33,77.277 +373678,308.25,77.743 +373679,310.1,78.225 +373680,311.9,78.719 +373681,305.04,77.204 +373682,306.94,77.704 +373683,308.77,78.218 +373684,310.54,78.746 +373685,303.75,77.132 +373686,305.63,77.665 +373687,307.43,78.212 +373688,309.18,78.772 +373689,302.47,77.06 +373690,304.31,77.626 +373691,306.1,78.206 +373692,307.82,78.797 +373693,301.18,76.988 +373694,303,77.587 +373695,304.76,78.199 +373696,306.46,78.822 +373697,299.9,76.917 +373698,301.69,77.548 +373699,303.43,78.192 +373700,305.1,78.847 +373701,298.62,76.846 +373702,300.38,77.51 +373703,302.09,78.185 +373704,303.74,78.871 +373705,297.33,76.776 +373706,299.07,77.471 +373707,300.75,78.178 +373708,302.37,78.894 +373709,296.06,76.707 +373710,297.76,77.433 +373711,299.41,78.171 +373712,301.01,78.917 +373713,294.78,76.638 +373714,296.46,77.395 +373715,298.08,78.163 +373716,299.64,78.94 +373717,293.5,76.57 +373718,295.15,77.358 +373719,296.74,78.156 +373720,298.27,78.961 +373721,292.22,76.503 +373722,293.84,77.32 +373723,295.4,78.148 +373724,296.9,78.982 +373725,290.95,76.436 +373726,292.53,77.283 +373727,294.06,78.139 +373728,295.53,79.003 +373729,289.68,76.37 +373730,291.23,77.246 +373731,292.72,78.131 +373732,294.16,79.022 +373733,288.41,76.305 +373734,289.92,77.209 +373735,291.38,78.122 +373736,292.79,79.041 +373737,287.13,76.24 +373738,288.61,77.173 +373739,290.04,78.114 +373740,291.41,79.06 +373741,285.86,76.176 +373742,287.31,77.137 +373743,288.7,78.104 +373744,290.04,79.077 +373745,284.6,76.113 +373746,286,77.101 +373747,287.36,78.095 +373748,288.66,79.094 +373749,283.33,76.051 +373750,284.7,77.065 +373751,286.02,78.085 +373752,287.29,79.11 +373753,282.06,75.99 +373754,283.39,77.03 +373755,284.67,78.076 +373756,285.91,79.125 +373757,280.8,75.93 +373758,282.09,76.995 +373759,283.33,78.065 +373760,284.53,79.139 +373761,279.53,75.87 +373762,280.78,76.96 +373763,281.99,78.055 +373764,283.15,79.152 +373765,278.27,75.812 +373766,279.48,76.926 +373767,280.65,78.044 +373768,281.77,79.165 +373769,277.01,75.754 +373770,278.18,76.892 +373771,279.3,78.033 +373772,280.39,79.177 +373773,275.75,75.697 +373774,276.88,76.858 +373775,277.96,78.022 +373776,279,79.187 +373777,274.48,75.642 +373778,275.57,76.824 +373779,276.62,78.01 +373780,277.62,79.197 +373781,273.22,75.587 +373782,274.27,76.791 +373783,275.27,77.998 +373784,276.24,79.206 +373785,271.97,75.533 +373786,272.97,76.758 +373787,273.93,77.986 +373788,274.85,79.214 +373789,270.71,75.481 +373790,271.67,76.726 +373791,272.59,77.973 +373792,273.46,79.221 +373793,269.45,75.429 +373794,270.37,76.694 +373795,271.24,77.96 +373796,272.08,79.227 +373797,268.19,75.378 +373798,269.06,76.662 +373799,269.9,77.947 +373800,270.69,79.232 +373801,266.94,75.329 +373802,267.76,76.631 +373803,268.55,77.933 +373804,269.3,79.236 +373805,265.68,75.28 +373806,266.46,76.599 +373807,267.21,77.919 +373808,267.91,79.239 +373809,264.43,75.233 +373810,265.16,76.569 +373811,265.86,77.905 +373812,266.52,79.24 +373813,263.17,75.187 +373814,263.86,76.538 +373815,264.52,77.891 +373816,265.13,79.241 +373817,261.92,75.142 +373818,262.56,76.508 +373819,263.17,77.875 +373820,263.74,79.241 +373821,260.66,75.098 +373822,261.26,76.479 +373823,261.82,77.86 +373824,262.35,79.24 +373825,259.41,75.055 +373826,259.96,76.45 +373827,260.48,77.844 +373828,260.96,79.237 +373829,258.16,75.013 +373830,258.66,76.421 +373831,259.13,77.828 +373832,259.57,79.234 +373833,256.91,74.973 +373834,257.36,76.392 +373835,257.79,77.812 +373836,258.17,79.229 +373837,255.66,74.933 +373838,256.06,76.364 +373839,256.44,77.795 +373840,256.78,79.223 +373841,254.4,74.895 +373842,254.77,76.337 +373843,255.09,77.778 +373844,255.39,79.216 +373845,253.15,74.858 +373846,253.47,76.31 +373847,253.75,77.76 +373848,254,79.208 +373849,251.9,74.823 +373850,252.17,76.283 +373851,252.4,77.742 +373852,252.6,79.199 +373853,250.65,74.788 +373854,250.87,76.256 +373855,251.05,77.724 +373856,251.21,79.189 +373857,249.4,74.755 +373858,249.57,76.23 +373859,249.71,77.705 +373860,249.81,79.178 +373861,248.15,74.723 +373862,248.27,76.205 +373863,248.36,77.686 +373864,248.42,79.165 +373865,246.9,74.692 +373866,246.97,76.179 +373867,247.01,77.666 +373868,247.02,79.151 +373869,245.65,74.662 +373870,245.67,76.155 +373871,245.67,77.646 +373872,245.63,79.136 +373873,244.4,74.634 +373874,244.38,76.13 +373875,244.32,77.626 +373876,244.23,79.12 +373877,243.15,74.606 +373878,243.08,76.106 +373879,242.97,77.605 +373880,242.84,79.103 +373881,241.9,74.581 +373882,241.78,76.083 +373883,241.63,77.584 +373884,241.44,79.084 +373885,240.65,74.556 +373886,240.48,76.059 +373887,240.28,77.563 +373888,240.05,79.065 +373889,239.4,74.532 +373890,239.18,76.037 +373891,238.94,77.541 +373892,238.65,79.044 +373893,238.15,74.51 +373894,237.88,76.014 +373895,237.59,77.519 +373896,237.26,79.022 +373897,236.9,74.489 +373898,236.59,75.992 +373899,236.24,77.496 +373900,235.87,78.999 +373901,235.64,74.469 +373902,235.29,75.971 +373903,234.9,77.473 +373904,234.47,78.974 +373905,234.39,74.451 +373906,233.99,75.95 +373907,233.55,77.449 +373908,233.08,78.949 +373909,233.14,74.434 +373910,232.69,75.929 +373911,232.2,77.426 +373912,231.68,78.922 +373913,231.89,74.417 +373914,231.39,75.909 +373915,230.86,77.401 +373916,230.29,78.894 +373917,230.64,74.403 +373918,230.09,75.889 +373919,229.51,77.377 +373920,228.9,78.865 +373921,229.38,74.389 +373922,228.79,75.869 +373923,228.17,77.352 +373924,227.5,78.835 +373925,228.13,74.377 +373926,227.49,75.85 +373927,226.82,77.326 +373928,226.11,78.803 +373929,226.88,74.365 +373930,226.19,75.832 +373931,225.48,77.3 +373932,224.72,78.771 +373933,225.62,74.355 +373934,224.89,75.813 +373935,224.13,77.274 +373936,223.33,78.737 +373937,224.37,74.347 +373938,223.59,75.795 +373939,222.79,77.248 +373940,221.94,78.702 +373941,223.11,74.339 +373942,222.29,75.778 +373943,221.44,77.221 +373944,220.55,78.666 +373945,221.85,74.332 +373946,220.99,75.761 +373947,220.1,77.193 +373948,219.16,78.629 +373949,220.6,74.327 +373950,219.69,75.744 +373951,218.75,77.166 +373952,217.77,78.59 +373953,219.34,74.323 +373954,218.39,75.728 +373955,217.41,77.137 +373956,216.38,78.551 +373957,218.08,74.32 +373958,217.09,75.712 +373959,216.07,77.109 +373960,214.99,78.51 +373961,216.82,74.318 +373962,215.79,75.696 +373963,214.72,77.08 +373964,213.61,78.469 +373965,215.56,74.317 +373966,214.49,75.681 +373967,213.38,77.051 +373968,212.22,78.426 +373969,214.3,74.318 +373970,213.19,75.666 +373971,212.04,77.021 +373972,210.83,78.382 +373973,213.04,74.319 +373974,211.89,75.652 +373975,210.69,76.992 +373976,209.45,78.337 +373977,211.78,74.322 +373978,210.59,75.638 +373979,209.35,76.961 +373980,208.06,78.291 +373981,210.51,74.325 +373982,209.28,75.624 +373983,208.01,76.931 +373984,206.68,78.244 +373985,209.25,74.33 +373986,207.98,75.611 +373987,206.67,76.9 +373988,205.3,78.196 +373989,207.99,74.336 +373990,206.68,75.598 +373991,205.33,76.868 +373992,203.92,78.147 +373993,206.72,74.342 +373994,205.38,75.585 +373995,203.98,76.837 +373996,202.54,78.097 +373997,205.45,74.35 +373998,204.07,75.573 +373999,202.64,76.805 +374000,201.16,78.046 +374001,204.18,74.359 +374002,202.77,75.561 +374003,201.3,76.773 +374004,199.78,77.994 +374005,202.91,74.368 +374006,201.46,75.549 +374007,199.96,76.74 +374008,198.41,77.941 +374009,201.64,74.379 +374010,200.16,75.538 +374011,198.62,76.707 +374012,197.03,77.887 +374013,200.37,74.391 +374014,198.86,75.527 +374015,197.29,76.674 +374016,195.66,77.832 +374017,199.1,74.403 +374018,197.55,75.516 +374019,195.95,76.64 +374020,194.28,77.776 +374021,197.83,74.417 +374022,196.24,75.506 +374023,194.61,76.607 +374024,192.91,77.719 +374025,196.55,74.431 +374026,194.94,75.496 +374027,193.27,76.573 +374028,191.54,77.662 +374029,195.27,74.446 +374030,193.63,75.486 +374031,191.93,76.538 +374032,190.17,77.603 +374033,194,74.462 +374034,192.33,75.476 +374035,190.6,76.504 +374036,188.8,77.544 +374037,192.72,74.479 +374038,191.02,75.467 +374039,189.26,76.469 +374040,187.43,77.484 +374041,191.44,74.496 +374042,189.71,75.458 +374043,187.92,76.434 +374044,186.07,77.423 +374045,190.16,74.514 +374046,188.4,75.449 +374047,186.59,76.398 +374048,184.7,77.361 +374049,188.87,74.533 +374050,187.09,75.441 +374051,185.25,76.362 +374052,183.34,77.299 +374053,187.59,74.553 +374054,185.79,75.433 +374055,183.92,76.327 +374056,181.98,77.235 +374057,186.3,74.574 +374058,184.48,75.425 +374059,182.59,76.29 +374060,180.62,77.172 +374061,185.02,74.595 +374062,183.17,75.417 +374063,181.25,76.254 +374064,179.26,77.107 +374065,183.73,74.617 +374066,181.86,75.409 +374067,179.92,76.217 +374068,177.91,77.042 +374069,182.44,74.639 +374070,180.55,75.402 +374071,178.59,76.181 +374072,176.55,76.976 +374073,181.15,74.662 +374074,179.23,75.395 +374075,177.25,76.144 +374076,175.2,76.909 +374077,179.85,74.686 +374078,177.92,75.388 +374079,175.92,76.106 +374080,173.84,76.842 +374081,178.56,74.71 +374082,176.61,75.381 +374083,174.59,76.069 +374084,172.49,76.774 +374085,177.26,74.735 +374086,175.3,75.375 +374087,173.26,76.032 +374088,171.14,76.706 +374089,175.97,74.76 +374090,173.99,75.369 +374091,171.93,75.994 +374092,169.8,76.637 +374093,174.67,74.785 +374094,172.67,75.362 +374095,170.6,75.956 +374096,168.45,76.567 +374097,173.37,74.811 +374098,171.36,75.356 +374099,169.27,75.918 +374100,167.11,76.498 +374101,172.07,74.838 +374102,170.04,75.351 +374103,167.95,75.88 +374104,165.76,76.427 +374105,170.76,74.865 +374106,168.73,75.345 +374107,166.62,75.841 +374108,164.42,76.356 +374109,169.46,74.892 +374110,167.41,75.339 +374111,165.29,75.803 +374112,163.08,76.285 +374113,168.15,74.92 +374114,166.1,75.334 +374115,163.96,75.764 +374116,161.74,76.214 +374117,166.85,74.948 +374118,164.78,75.328 +374119,162.64,75.726 +374120,160.41,76.142 +374121,165.54,74.976 +374122,163.46,75.323 +374123,161.31,75.687 +374124,159.07,76.07 +374125,164.22,75.005 +374126,162.14,75.318 +374127,159.99,75.648 +374128,157.74,75.997 +374129,162.91,75.034 +374130,160.83,75.313 +374131,158.66,75.609 +374132,156.41,75.924 +374133,161.6,75.063 +374134,159.51,75.308 +374135,157.34,75.57 +374136,155.08,75.851 +374137,160.28,75.092 +374138,158.19,75.303 +374139,156.02,75.531 +374140,153.75,75.778 +374141,158.97,75.121 +374142,156.87,75.298 +374143,154.69,75.492 +374144,152.43,75.704 +374145,157.65,75.15 +374146,155.55,75.293 +374147,153.37,75.453 +374148,151.1,75.631 +374149,156.33,75.18 +374150,154.23,75.289 +374151,152.05,75.414 +374152,149.78,75.557 +374153,155,75.21 +374154,152.91,75.284 +374155,150.73,75.374 +374156,148.46,75.483 +374157,153.68,75.239 +374158,151.58,75.279 +374159,149.41,75.335 +374160,147.14,75.409 +374161,152.36,75.269 +374162,150.26,75.274 +374163,148.09,75.296 +374164,145.82,75.335 +374165,151.03,75.299 +374166,148.94,75.27 +374167,146.77,75.256 +374168,144.51,75.261 +374169,149.7,75.328 +374170,147.62,75.265 +374171,145.45,75.217 +374172,143.2,75.187 +374173,148.37,75.358 +374174,146.29,75.26 +374175,144.13,75.178 +374176,141.88,75.113 +374177,147.04,75.387 +374178,144.97,75.256 +374179,142.82,75.139 +374180,140.57,75.039 +374181,145.71,75.417 +374182,143.64,75.251 +374183,141.5,75.1 +374184,139.27,74.965 +374185,144.37,75.446 +374186,142.32,75.246 +374187,140.18,75.06 +374188,137.96,74.892 +374189,143.03,75.475 +374190,140.99,75.241 +374191,138.87,75.021 +374192,136.65,74.818 +374193,141.7,75.504 +374194,139.66,75.236 +374195,137.55,74.982 +374196,135.35,74.745 +374197,140.36,75.532 +374198,138.34,75.231 +374199,136.24,74.943 +374200,134.05,74.671 +374201,139.02,75.561 +374202,137.01,75.226 +374203,134.92,74.905 +374204,132.75,74.598 +374205,137.67,75.589 +374206,135.68,75.221 +374207,133.61,74.866 +374208,131.45,74.526 +374209,136.33,75.617 +374210,134.35,75.216 +374211,132.3,74.827 +374212,130.16,74.453 +374213,134.98,75.644 +374214,133.02,75.21 +374215,130.99,74.789 +374216,128.86,74.381 +374217,133.64,75.671 +374218,131.69,75.205 +374219,129.67,74.75 +374220,127.57,74.309 +374221,132.29,75.698 +374222,130.36,75.199 +374223,128.36,74.712 +374224,126.28,74.238 +374225,130.94,75.724 +374226,129.03,75.194 +374227,127.05,74.674 +374228,124.99,74.167 +374229,129.59,75.75 +374230,127.7,75.188 +374231,125.74,74.636 +374232,123.7,74.096 +374233,128.23,75.775 +374234,126.37,75.182 +374235,124.43,74.598 +374236,122.41,74.026 +374237,126.88,75.8 +374238,125.04,75.176 +374239,123.12,74.56 +374240,121.13,73.956 +374241,125.52,75.825 +374242,123.71,75.169 +374243,121.82,74.523 +374244,119.84,73.887 +374245,124.17,75.849 +374246,122.37,75.163 +374247,120.51,74.485 +374248,118.56,73.818 +374249,122.81,75.872 +374250,121.04,75.156 +374251,119.2,74.448 +374252,117.28,73.75 +374253,121.45,75.895 +374254,119.71,75.149 +374255,117.89,74.411 +374256,116,73.683 +374257,120.09,75.917 +374258,118.37,75.142 +374259,116.59,74.374 +374260,114.72,73.616 +374261,118.73,75.938 +374262,117.04,75.135 +374263,115.28,74.338 +374264,113.45,73.549 +374265,117.36,75.959 +374266,115.7,75.127 +374267,113.97,74.301 +374268,112.17,73.484 +374269,116,75.979 +374270,114.37,75.12 +374271,112.67,74.265 +374272,110.9,73.419 +374273,114.63,75.999 +374274,113.03,75.112 +374275,111.36,74.23 +374276,109.63,73.355 +374277,113.26,76.018 +374278,111.69,75.104 +374279,110.06,74.194 +374280,108.36,73.291 +374281,111.89,76.036 +374282,110.36,75.095 +374283,108.76,74.159 +374284,107.09,73.228 +374285,110.52,76.053 +374286,109.02,75.086 +374287,107.45,74.123 +374288,105.82,73.166 +374289,109.15,76.069 +374290,107.68,75.078 +374291,106.15,74.089 +374292,104.55,73.105 +374293,107.78,76.085 +374294,106.34,75.068 +374295,104.85,74.054 +374296,103.29,73.044 +374297,106.41,76.1 +374298,105.01,75.059 +374299,103.55,74.02 +374300,102.02,72.985 +374301,105.03,76.114 +374302,103.67,75.049 +374303,102.24,73.986 +374304,100.76,72.926 +374305,103.66,76.127 +374306,102.33,75.039 +374307,100.94,73.952 +374308,99.495,72.868 +374309,102.28,76.14 +374310,100.99,75.029 +374311,99.643,73.919 +374312,98.234,72.811 +374313,100.9,76.151 +374314,99.65,75.018 +374315,98.342,73.886 +374316,96.974,72.755 +374317,99.522,76.162 +374318,98.309,75.007 +374319,97.042,73.853 +374320,95.715,72.7 +374321,98.142,76.171 +374322,96.969,74.996 +374323,95.742,73.82 +374324,94.458,72.646 +374325,96.761,76.18 +374326,95.628,74.985 +374327,94.443,73.788 +374328,93.201,72.593 +374329,95.379,76.188 +374330,94.287,74.973 +374331,93.144,73.756 +374332,91.945,72.54 +374333,93.996,76.194 +374334,92.946,74.961 +374335,91.845,73.725 +374336,90.69,72.489 +374337,92.613,76.2 +374338,91.605,74.948 +374339,90.547,73.694 +374340,89.436,72.439 +374341,91.229,76.205 +374342,90.263,74.935 +374343,89.248,73.663 +374344,88.182,72.39 +374345,89.843,76.209 +374346,88.921,74.922 +374347,87.95,73.632 +374348,86.93,72.342 +374349,88.457,76.212 +374350,87.578,74.909 +374351,86.653,73.602 +374352,85.678,72.295 +374353,87.071,76.213 +374354,86.236,74.895 +374355,85.356,73.573 +374356,84.427,72.249 +374357,85.683,76.214 +374358,84.893,74.881 +374359,84.058,73.543 +374360,83.177,72.204 +374361,84.295,76.214 +374362,83.55,74.866 +374363,82.762,73.514 +374364,81.927,72.16 +374365,82.906,76.212 +374366,82.207,74.851 +374367,81.465,73.486 +374368,80.678,72.117 +374369,81.517,76.21 +374370,80.864,74.836 +374371,80.169,73.457 +374372,79.43,72.076 +374373,80.127,76.206 +374374,79.52,74.82 +374375,78.872,73.429 +374376,78.182,72.035 +374377,78.737,76.201 +374378,78.176,74.804 +374379,77.576,73.402 +374380,76.934,71.996 +374381,77.346,76.195 +374382,76.833,74.788 +374383,76.28,73.375 +374384,75.688,71.958 +374385,75.954,76.188 +374386,75.489,74.771 +374387,74.985,73.348 +374388,74.441,71.921 +374389,74.562,76.18 +374390,74.145,74.754 +374391,73.689,73.322 +374392,73.195,71.885 +374393,73.17,76.171 +374394,72.8,74.736 +374395,72.394,73.296 +374396,71.949,71.851 +374397,71.777,76.161 +374398,71.456,74.718 +374399,71.099,73.27 +374400,70.704,71.818 +374401,70.384,76.149 +374402,70.112,74.7 +374403,69.804,73.245 +374404,69.459,71.785 +374405,68.991,76.136 +374406,68.767,74.681 +374407,68.509,73.22 +374408,68.214,71.754 +374409,67.597,76.123 +374410,67.422,74.662 +374411,67.214,73.196 +374412,66.969,71.725 +374413,66.203,76.108 +374414,66.078,74.643 +374415,65.919,73.172 +374416,65.725,71.696 +374417,64.809,76.091 +374418,64.733,74.623 +374419,64.624,73.148 +374420,64.481,71.669 +374421,63.415,76.074 +374422,63.389,74.603 +374423,63.329,73.125 +374424,63.236,71.643 +374425,62.02,76.056 +374426,62.044,74.582 +374427,62.035,73.102 +374428,61.992,71.618 +374429,60.626,76.036 +374430,60.699,74.561 +374431,60.74,73.08 +374432,60.748,71.594 +374433,59.231,76.015 +374434,59.354,74.54 +374435,59.445,73.058 +374436,59.504,71.572 +374437,57.837,75.993 +374438,58.01,74.518 +374439,58.151,73.036 +374440,58.259,71.55 +374441,56.442,75.97 +374442,56.665,74.496 +374443,56.856,73.015 +374444,57.015,71.53 +374445,55.048,75.946 +374446,55.321,74.473 +374447,55.561,72.995 +374448,55.77,71.512 +374449,53.653,75.92 +374450,53.976,74.45 +374451,54.267,72.974 +374452,54.526,71.494 +374453,52.259,75.894 +374454,52.632,74.427 +374455,52.972,72.954 +374456,53.281,71.478 +374457,50.865,75.866 +374458,51.287,74.403 +374459,51.677,72.935 +374460,52.035,71.463 +374461,49.471,75.837 +374462,49.943,74.379 +374463,50.382,72.916 +374464,50.79,71.449 +374465,48.078,75.807 +374466,48.599,74.354 +374467,49.087,72.897 +374468,49.544,71.436 +374469,46.684,75.775 +374470,47.255,74.329 +374471,47.792,72.879 +374472,48.298,71.424 +374473,45.291,75.743 +374474,45.911,74.304 +374475,46.497,72.861 +374476,47.051,71.414 +374477,43.899,75.709 +374478,44.567,74.278 +374479,45.201,72.843 +374480,45.804,71.405 +374481,42.506,75.674 +374482,43.223,74.252 +374483,43.906,72.826 +374484,44.556,71.397 +374485,41.115,75.639 +374486,41.88,74.226 +374487,42.61,72.809 +374488,43.308,71.39 +374489,39.723,75.602 +374490,40.537,74.199 +374491,41.314,72.793 +374492,42.059,71.385 +374493,38.332,75.563 +374494,39.194,74.172 +374495,40.018,72.777 +374496,40.81,71.38 +374497,36.942,75.524 +374498,37.851,74.144 +374499,38.722,72.761 +374500,39.56,71.377 +374501,35.552,75.484 +374502,36.508,74.116 +374503,37.426,72.746 +374504,38.309,71.375 +374505,34.163,75.442 +374506,35.166,74.088 +374507,36.129,72.731 +374508,37.058,71.373 +374509,32.775,75.4 +374510,33.823,74.059 +374511,34.833,72.716 +374512,35.806,71.373 +374513,31.387,75.356 +374514,32.482,74.03 +374515,33.536,72.702 +374516,34.553,71.375 +374517,30,75.312 +374518,31.14,74 +374519,32.238,72.688 +374520,33.3,71.377 +374521,28.614,75.266 +374522,29.799,73.971 +374523,30.941,72.675 +374524,32.045,71.38 +374525,27.228,75.219 +374526,28.458,73.941 +374527,29.643,72.662 +374528,30.79,71.384 +374529,25.844,75.172 +374530,27.117,73.91 +374531,28.345,72.649 +374532,29.533,71.39 +374533,24.46,75.123 +374534,25.776,73.879 +374535,27.047,72.637 +374536,28.276,71.396 +374537,23.077,75.073 +374538,24.436,73.848 +374539,25.748,72.625 +374540,27.018,71.403 +374541,21.695,75.023 +374542,23.096,73.817 +374543,24.449,72.613 +374544,25.759,71.412 +374545,20.314,74.971 +374546,21.757,73.785 +374547,23.15,72.602 +374548,24.499,71.421 +374549,18.935,74.918 +374550,20.418,73.753 +374551,21.85,72.591 +374552,23.238,71.432 +374553,17.556,74.865 +374554,19.079,73.721 +374555,20.55,72.58 +374556,21.975,71.443 +374557,16.178,74.81 +374558,17.741,73.688 +374559,19.25,72.569 +374560,20.712,71.455 +374561,14.801,74.755 +374562,16.403,73.655 +374563,17.949,72.559 +374564,19.447,71.468 +374565,13.426,74.699 +374566,15.065,73.622 +374567,16.648,72.549 +374568,18.182,71.482 +374569,12.051,74.641 +374570,13.728,73.588 +374571,15.347,72.54 +374572,16.915,71.497 +374573,10.678,74.583 +374574,12.391,73.554 +374575,14.045,72.53 +374576,15.647,71.512 +374577,9.3061,74.525 +374578,11.055,73.52 +374579,12.743,72.521 +374580,14.377,71.529 +374581,7.9354,74.465 +374582,9.7193,73.486 +374583,11.44,72.513 +374584,13.107,71.546 +374585,6.566,74.405 +374586,8.3839,73.451 +374587,10.137,72.504 +374588,11.835,71.564 +374589,5.198,74.343 +374590,7.0489,73.416 +374591,8.8337,72.496 +374592,10.562,71.583 +374593,3.8312,74.281 +374594,5.7144,73.381 +374595,7.5299,72.488 +374596,9.287,71.603 +374597,2.4659,74.219 +374598,4.3804,73.346 +374599,6.2256,72.48 +374600,8.0111,71.623 +374601,1.1019,74.155 +374602,3.0468,73.31 +374603,4.9208,72.473 +374604,6.7338,71.644 +374605,359.74,74.091 +374606,1.7137,73.274 +374607,3.6156,72.466 +374608,5.4552,71.666 +374609,358.38,74.027 +374610,0.38115,73.238 +374611,2.3099,72.459 +374612,4.1751,71.688 +374613,357.02,73.961 +374614,359.05,73.202 +374615,1.0038,72.452 +374616,2.8936,71.711 +374617,355.66,73.895 +374618,357.72,73.165 +374619,359.7,72.445 +374620,1.6106,71.734 +374621,354.3,73.829 +374622,356.39,73.129 +374623,358.39,72.439 +374624,0.32615,71.758 +374625,352.95,73.762 +374626,355.06,73.092 +374627,357.08,72.432 +374628,359.04,71.783 +374629,351.6,73.694 +374630,353.73,73.055 +374631,355.77,72.426 +374632,357.75,71.808 +374633,350.24,73.626 +374634,352.4,73.018 +374635,354.47,72.42 +374636,356.46,71.833 +374637,348.89,73.557 +374638,351.07,72.98 +374639,353.16,72.414 +374640,355.17,71.859 +374641,347.54,73.488 +374642,349.74,72.943 +374643,351.85,72.409 +374644,353.88,71.886 +374645,346.2,73.418 +374646,348.41,72.905 +374647,350.54,72.403 +374648,352.59,71.913 +374649,344.85,73.348 +374650,347.08,72.867 +374651,349.23,72.398 +374652,351.29,71.94 +374653,343.51,73.278 +374654,345.76,72.829 +374655,347.92,72.393 +374656,350,71.968 +374657,342.17,73.207 +374658,344.43,72.791 +374659,346.6,72.388 +374660,348.7,71.996 +374661,340.83,73.136 +374662,343.11,72.753 +374663,345.29,72.383 +374664,347.4,72.024 +374665,339.49,73.064 +374666,341.78,72.715 +374667,343.98,72.378 +374668,346.1,72.053 +374669,338.15,72.992 +374670,340.46,72.676 +374671,342.67,72.373 +374672,344.79,72.081 +374673,336.82,72.92 +374674,339.13,72.638 +374675,341.35,72.368 +374676,343.49,72.11 +374677,335.48,72.848 +374678,337.81,72.599 +374679,340.04,72.364 +374680,342.18,72.14 +374681,334.15,72.776 +374682,336.49,72.561 +374683,338.72,72.359 +374684,340.87,72.169 +374685,332.82,72.703 +374686,335.16,72.522 +374687,337.41,72.355 +374688,339.56,72.199 +374689,331.49,72.63 +374690,333.84,72.484 +374691,336.09,72.35 +374692,338.25,72.228 +374693,330.17,72.557 +374694,332.52,72.445 +374695,334.78,72.346 +374696,336.94,72.258 +374697,328.84,72.484 +374698,331.2,72.406 +374699,333.46,72.341 +374700,335.63,72.288 +374701,327.52,72.411 +374702,329.88,72.367 +374703,332.14,72.337 +374704,334.31,72.318 +374705,326.2,72.338 +374706,328.56,72.329 +374707,330.82,72.332 +374708,332.99,72.347 +374709,324.88,72.264 +374710,327.24,72.29 +374711,329.5,72.328 +374712,331.67,72.377 +374713,323.56,72.191 +374714,325.93,72.251 +374715,328.18,72.323 +374716,330.35,72.407 +374717,322.25,72.118 +374718,324.61,72.212 +374719,326.86,72.319 +374720,329.03,72.437 +374721,320.94,72.045 +374722,323.29,72.174 +374723,325.54,72.315 +374724,327.7,72.466 +374725,319.62,71.972 +374726,321.98,72.135 +374727,324.22,72.31 +374728,326.38,72.496 +374729,318.31,71.899 +374730,320.66,72.096 +374731,322.9,72.305 +374732,325.05,72.525 +374733,317.01,71.826 +374734,319.35,72.058 +374735,321.58,72.301 +374736,323.72,72.554 +374737,315.7,71.754 +374738,318.03,72.019 +374739,320.26,72.296 +374740,322.39,72.583 +374741,314.4,71.681 +374742,316.72,71.981 +374743,318.93,72.291 +374744,321.06,72.612 +374745,313.09,71.609 +374746,315.4,71.942 +374747,317.61,72.286 +374748,319.72,72.64 +374749,311.79,71.537 +374750,314.09,71.904 +374751,316.29,72.282 +374752,318.39,72.668 +374753,310.49,71.466 +374754,312.78,71.866 +374755,314.96,72.276 +374756,317.05,72.696 +374757,309.2,71.394 +374758,311.47,71.828 +374759,313.64,72.271 +374760,315.71,72.723 +374761,307.9,71.323 +374762,310.16,71.79 +374763,312.31,72.266 +374764,314.37,72.75 +374765,306.61,71.253 +374766,308.85,71.752 +374767,310.98,72.261 +374768,313.03,72.777 +374769,305.31,71.183 +374770,307.54,71.714 +374771,309.66,72.255 +374772,311.69,72.803 +374773,304.02,71.113 +374774,306.23,71.677 +374775,308.33,72.249 +374776,310.34,72.829 +374777,302.74,71.043 +374778,304.92,71.639 +374779,307,72.243 +374780,308.99,72.854 +374781,301.45,70.975 +374782,303.61,71.602 +374783,305.67,72.237 +374784,307.64,72.879 +374785,300.16,70.906 +374786,302.31,71.565 +374787,304.35,72.231 +374788,306.3,72.903 +374789,298.88,70.838 +374790,301,71.528 +374791,303.02,72.225 +374792,304.94,72.927 +374793,297.6,70.771 +374794,299.69,71.491 +374795,301.69,72.218 +374796,303.59,72.95 +374797,296.32,70.704 +374798,298.39,71.455 +374799,300.36,72.211 +374800,302.24,72.973 +374801,295.04,70.638 +374802,297.08,71.418 +374803,299.03,72.204 +374804,300.88,72.994 +374805,293.76,70.573 +374806,295.78,71.382 +374807,297.69,72.197 +374808,299.52,73.016 +374809,292.49,70.508 +374810,294.47,71.346 +374811,296.36,72.19 +374812,298.17,73.036 +374813,291.21,70.444 +374814,293.17,71.311 +374815,295.03,72.182 +374816,296.81,73.056 +374817,289.94,70.38 +374818,291.87,71.275 +374819,293.7,72.174 +374820,295.44,73.076 +374821,288.67,70.318 +374822,290.56,71.24 +374823,292.36,72.166 +374824,294.08,73.094 +374825,287.4,70.256 +374826,289.26,71.205 +374827,291.03,72.158 +374828,292.72,73.112 +374829,286.13,70.194 +374830,287.96,71.17 +374831,289.7,72.149 +374832,291.35,73.129 +374833,284.86,70.134 +374834,286.66,71.136 +374835,288.36,72.14 +374836,289.99,73.145 +374837,283.6,70.074 +374838,285.36,71.102 +374839,287.03,72.131 +374840,288.62,73.16 +374841,282.34,70.015 +374842,284.06,71.068 +374843,285.69,72.122 +374844,287.25,73.175 +374845,281.07,69.958 +374846,282.76,71.034 +374847,284.36,72.112 +374848,285.88,73.189 +374849,279.81,69.9 +374850,281.46,71.001 +374851,283.02,72.102 +374852,284.51,73.201 +374853,278.55,69.844 +374854,280.16,70.968 +374855,281.68,72.092 +374856,283.14,73.213 +374857,277.29,69.789 +374858,278.86,70.935 +374859,280.35,72.081 +374860,281.76,73.224 +374861,276.03,69.735 +374862,277.56,70.903 +374863,279.01,72.07 +374864,280.39,73.235 +374865,274.78,69.681 +374866,276.26,70.871 +374867,277.67,72.059 +374868,279.01,73.244 +374869,273.52,69.629 +374870,274.97,70.839 +374871,276.33,72.047 +374872,277.63,73.252 +374873,272.27,69.577 +374874,273.67,70.808 +374875,275,72.035 +374876,276.26,73.259 +374877,271.02,69.527 +374878,272.37,70.776 +374879,273.66,72.023 +374880,274.88,73.266 +374881,269.76,69.477 +374882,271.08,70.746 +374883,272.32,72.011 +374884,273.5,73.271 +374885,268.51,69.429 +374886,269.78,70.715 +374887,270.98,71.998 +374888,272.12,73.275 +374889,267.26,69.382 +374890,268.48,70.685 +374891,269.64,71.985 +374892,270.73,73.278 +374893,266.01,69.335 +374894,267.19,70.655 +374895,268.3,71.971 +374896,269.35,73.281 +374897,264.76,69.29 +374898,265.89,70.626 +374899,266.96,71.957 +374900,267.97,73.282 +374901,263.52,69.246 +374902,264.6,70.597 +374903,265.62,71.943 +374904,266.58,73.282 +374905,262.27,69.203 +374906,263.3,70.568 +374907,264.28,71.928 +374908,265.2,73.281 +374909,261.02,69.161 +374910,262.01,70.54 +374911,262.94,71.913 +374912,263.81,73.279 +374913,259.78,69.12 +374914,260.72,70.512 +374915,261.6,71.898 +374916,262.42,73.276 +374917,258.53,69.081 +374918,259.42,70.484 +374919,260.26,71.882 +374920,261.04,73.271 +374921,257.29,69.042 +374922,258.13,70.457 +374923,258.91,71.866 +374924,259.65,73.266 +374925,256.05,69.005 +374926,256.84,70.43 +374927,257.57,71.849 +374928,258.26,73.26 +374929,254.81,68.969 +374930,255.54,70.404 +374931,256.23,71.832 +374932,256.87,73.252 +374933,253.56,68.934 +374934,254.25,70.378 +374935,254.89,71.815 +374936,255.48,73.243 +374937,252.32,68.9 +374938,252.96,70.352 +374939,253.55,71.797 +374940,254.09,73.233 +374941,251.08,68.867 +374942,251.66,70.327 +374943,252.2,71.779 +374944,252.7,73.222 +374945,249.84,68.836 +374946,250.37,70.302 +374947,250.86,71.761 +374948,251.31,73.21 +374949,248.6,68.805 +374950,249.08,70.278 +374951,249.52,71.742 +374952,249.91,73.197 +374953,247.36,68.776 +374954,247.79,70.254 +374955,248.18,71.723 +374956,248.52,73.182 +374957,246.12,68.748 +374958,246.5,70.23 +374959,246.83,71.703 +374960,247.13,73.166 +374961,244.88,68.722 +374962,245.2,70.207 +374963,245.49,71.683 +374964,245.74,73.149 +374965,243.64,68.696 +374966,243.91,70.184 +374967,244.15,71.663 +374968,244.34,73.131 +374969,242.4,68.672 +374970,242.62,70.161 +374971,242.8,71.642 +374972,242.95,73.112 +374973,241.16,68.649 +374974,241.33,70.139 +374975,241.46,71.62 +374976,241.56,73.092 +374977,239.92,68.627 +374978,240.04,70.117 +374979,240.12,71.599 +374980,240.16,73.07 +374981,238.69,68.607 +374982,238.75,70.096 +374983,238.77,71.577 +374984,238.77,73.047 +374985,237.45,68.587 +374986,237.46,70.075 +374987,237.43,71.554 +374988,237.37,73.023 +374989,236.21,68.569 +374990,236.16,70.055 +374991,236.09,71.531 +374992,235.98,72.998 +374993,234.97,68.552 +374994,234.87,70.035 +374995,234.74,71.508 +374996,234.58,72.972 +374997,233.73,68.537 +374998,233.58,70.015 +374999,233.4,71.485 +375000,233.19,72.944 +375001,232.49,68.522 +375002,232.29,69.996 +375003,232.06,71.46 +375004,231.79,72.916 +375005,231.25,68.509 +375006,231,69.977 +375007,230.71,71.436 +375008,230.4,72.886 +375009,230.01,68.497 +375010,229.71,69.958 +375011,229.37,71.411 +375012,229.01,72.855 +375013,228.77,68.486 +375014,228.42,69.94 +375015,228.03,71.386 +375016,227.61,72.823 +375017,227.53,68.476 +375018,227.12,69.922 +375019,226.69,71.36 +375020,226.22,72.789 +375021,226.29,68.468 +375022,225.83,69.905 +375023,225.34,71.334 +375024,224.82,72.755 +375025,225.05,68.461 +375026,224.54,69.888 +375027,224,71.308 +375028,223.43,72.719 +375029,223.81,68.454 +375030,223.25,69.871 +375031,222.66,71.281 +375032,222.04,72.683 +375033,222.57,68.449 +375034,221.96,69.855 +375035,221.32,71.254 +375036,220.65,72.645 +375037,221.32,68.445 +375038,220.66,69.839 +375039,219.97,71.226 +375040,219.25,72.606 +375041,220.08,68.443 +375042,219.37,69.824 +375043,218.63,71.199 +375044,217.86,72.566 +375045,218.84,68.441 +375046,218.08,69.809 +375047,217.29,71.17 +375048,216.47,72.524 +375049,217.59,68.441 +375050,216.79,69.794 +375051,215.95,71.142 +375052,215.08,72.482 +375053,216.35,68.441 +375054,215.49,69.78 +375055,214.61,71.113 +375056,213.69,72.439 +375057,215.1,68.443 +375058,214.2,69.766 +375059,213.27,71.083 +375060,212.3,72.394 +375061,213.86,68.446 +375062,212.91,69.752 +375063,211.92,71.053 +375064,210.91,72.349 +375065,212.61,68.45 +375066,211.61,69.739 +375067,210.58,71.023 +375068,209.52,72.302 +375069,211.36,68.454 +375070,210.32,69.726 +375071,209.24,70.993 +375072,208.13,72.254 +375073,210.11,68.46 +375074,209.02,69.713 +375075,207.9,70.962 +375076,206.75,72.206 +375077,208.86,68.467 +375078,207.73,69.701 +375079,206.56,70.931 +375080,205.36,72.156 +375081,207.61,68.475 +375082,206.44,69.689 +375083,205.22,70.899 +375084,203.97,72.105 +375085,206.36,68.484 +375086,205.14,69.677 +375087,203.88,70.868 +375088,202.59,72.054 +375089,205.11,68.494 +375090,203.85,69.666 +375091,202.55,70.835 +375092,201.2,72.001 +375093,203.86,68.505 +375094,202.55,69.655 +375095,201.21,70.803 +375096,199.82,71.948 +375097,202.6,68.517 +375098,201.25,69.644 +375099,199.87,70.77 +375100,198.44,71.893 +375101,201.35,68.53 +375102,199.96,69.634 +375103,198.53,70.737 +375104,197.06,71.838 +375105,200.09,68.543 +375106,198.66,69.624 +375107,197.19,70.704 +375108,195.68,71.781 +375109,198.83,68.558 +375110,197.36,69.614 +375111,195.86,70.67 +375112,194.3,71.724 +375113,197.57,68.573 +375114,196.07,69.605 +375115,194.52,70.636 +375116,192.92,71.666 +375117,196.31,68.589 +375118,194.77,69.595 +375119,193.18,70.602 +375120,191.54,71.607 +375121,195.05,68.606 +375122,193.47,69.586 +375123,191.85,70.567 +375124,190.17,71.547 +375125,193.79,68.624 +375126,192.17,69.578 +375127,190.51,70.532 +375128,188.79,71.487 +375129,192.52,68.642 +375130,190.87,69.569 +375131,189.18,70.497 +375132,187.42,71.426 +375133,191.26,68.662 +375134,189.57,69.561 +375135,187.84,70.462 +375136,186.05,71.363 +375137,189.99,68.682 +375138,188.28,69.553 +375139,186.51,70.426 +375140,184.68,71.301 +375141,188.72,68.702 +375142,186.98,69.545 +375143,185.17,70.39 +375144,183.31,71.237 +375145,187.45,68.724 +375146,185.67,69.538 +375147,183.84,70.354 +375148,181.94,71.173 +375149,186.18,68.746 +375150,184.37,69.531 +375151,182.51,70.318 +375152,180.57,71.108 +375153,184.91,68.769 +375154,183.07,69.523 +375155,181.17,70.282 +375156,179.21,71.042 +375157,183.64,68.792 +375158,181.77,69.517 +375159,179.84,70.245 +375160,177.84,70.976 +375161,182.36,68.816 +375162,180.47,69.51 +375163,178.51,70.208 +375164,176.48,70.909 +375165,181.09,68.84 +375166,179.16,69.503 +375167,177.18,70.171 +375168,175.12,70.842 +375169,179.81,68.865 +375170,177.86,69.497 +375171,175.85,70.133 +375172,173.76,70.773 +375173,178.53,68.891 +375174,176.56,69.491 +375175,174.52,70.096 +375176,172.4,70.705 +375177,177.25,68.916 +375178,175.25,69.485 +375179,173.19,70.058 +375180,171.04,70.636 +375181,175.97,68.943 +375182,173.95,69.479 +375183,171.86,70.02 +375184,169.69,70.566 +375185,174.68,68.97 +375186,172.64,69.473 +375187,170.53,69.982 +375188,168.34,70.496 +375189,173.4,68.997 +375190,171.34,69.468 +375191,169.2,69.944 +375192,166.98,70.426 +375193,172.11,69.024 +375194,170.03,69.462 +375195,167.88,69.906 +375196,165.63,70.355 +375197,170.82,69.052 +375198,168.72,69.457 +375199,166.55,69.867 +375200,164.29,70.283 +375201,169.53,69.081 +375202,167.42,69.452 +375203,165.22,69.829 +375204,162.94,70.212 +375205,168.24,69.109 +375206,166.11,69.447 +375207,163.9,69.79 +375208,161.59,70.14 +375209,166.94,69.138 +375210,164.8,69.442 +375211,162.57,69.751 +375212,160.25,70.067 +375213,165.65,69.167 +375214,163.49,69.437 +375215,161.25,69.713 +375216,158.91,69.995 +375217,164.35,69.196 +375218,162.18,69.432 +375219,159.93,69.674 +375220,157.57,69.922 +375221,163.05,69.226 +375222,160.87,69.427 +375223,158.6,69.635 +375224,156.23,69.849 +375225,161.75,69.255 +375226,159.56,69.422 +375227,157.28,69.596 +375228,154.9,69.775 +375229,160.45,69.285 +375230,158.25,69.418 +375231,155.96,69.556 +375232,153.56,69.702 +375233,159.15,69.315 +375234,156.94,69.413 +375235,154.64,69.517 +375236,152.23,69.628 +375237,157.84,69.345 +375238,155.63,69.408 +375239,153.32,69.478 +375240,150.9,69.554 +375241,156.54,69.375 +375242,154.31,69.404 +375243,151.99,69.439 +375244,149.57,69.481 +375245,155.23,69.405 +375246,153,69.399 +375247,150.68,69.399 +375248,148.24,69.407 +375249,153.92,69.435 +375250,151.68,69.394 +375251,149.36,69.36 +375252,146.92,69.333 +375253,152.6,69.464 +375254,150.37,69.39 +375255,148.04,69.321 +375256,145.59,69.259 +375257,151.29,69.494 +375258,149.06,69.385 +375259,146.72,69.281 +375260,144.27,69.185 +375261,149.98,69.524 +375262,147.74,69.38 +375263,145.4,69.242 +375264,142.95,69.111 +375265,148.66,69.554 +375266,146.42,69.375 +375267,144.09,69.203 +375268,141.63,69.037 +375269,147.34,69.583 +375270,145.11,69.371 +375271,142.77,69.164 +375272,140.32,68.963 +375273,146.02,69.612 +375274,143.79,69.366 +375275,141.46,69.125 +375276,139,68.889 +375277,144.7,69.641 +375278,142.47,69.361 +375279,140.14,69.085 +375280,137.69,68.816 +375281,143.37,69.67 +375282,141.15,69.356 +375283,138.83,69.046 +375284,136.38,68.743 +375285,142.05,69.699 +375286,139.83,69.351 +375287,137.51,69.007 +375288,135.07,68.67 +375289,140.72,69.727 +375290,138.51,69.345 +375291,136.2,68.968 +375292,133.77,68.597 +375293,139.39,69.755 +375294,137.19,69.34 +375295,134.89,68.93 +375296,132.46,68.524 +375297,138.06,69.782 +375298,135.87,69.335 +375299,133.58,68.891 +375300,131.16,68.452 +375301,136.73,69.81 +375302,134.55,69.329 +375303,132.27,68.852 +375304,129.86,68.38 +375305,135.39,69.836 +375306,133.23,69.324 +375307,130.96,68.814 +375308,128.56,68.308 +375309,134.06,69.863 +375310,131.91,69.318 +375311,129.65,68.775 +375312,127.26,68.237 +375313,132.72,69.889 +375314,130.58,69.312 +375315,128.34,68.737 +375316,125.97,68.166 +375317,131.38,69.914 +375318,129.26,69.306 +375319,127.03,68.699 +375320,124.67,68.096 +375321,130.04,69.939 +375322,127.94,69.299 +375323,125.72,68.661 +375324,123.38,68.026 +375325,128.7,69.964 +375326,126.61,69.293 +375327,124.41,68.623 +375328,122.09,67.956 +375329,127.36,69.988 +375330,125.29,69.286 +375331,123.11,68.586 +375332,120.8,67.888 +375333,126.01,70.011 +375334,123.96,69.279 +375335,121.8,68.548 +375336,119.52,67.819 +375337,124.67,70.034 +375338,122.63,69.272 +375339,120.49,68.511 +375340,118.23,67.751 +375341,123.32,70.056 +375342,121.31,69.265 +375343,119.19,68.474 +375344,116.95,67.684 +375345,121.97,70.077 +375346,119.98,69.257 +375347,117.88,68.437 +375348,115.67,67.617 +375349,120.62,70.098 +375350,118.65,69.25 +375351,116.58,68.4 +375352,114.39,67.551 +375353,119.26,70.118 +375354,117.32,69.242 +375355,115.28,68.364 +375356,113.11,67.486 +375357,117.91,70.138 +375358,115.99,69.234 +375359,113.97,68.328 +375360,111.84,67.421 +375361,116.55,70.157 +375362,114.66,69.225 +375363,112.67,68.292 +375364,110.56,67.357 +375365,115.2,70.174 +375366,113.33,69.217 +375367,111.37,68.256 +375368,109.29,67.294 +375369,113.84,70.192 +375370,112,69.208 +375371,110.07,68.22 +375372,108.02,67.232 +375373,112.48,70.208 +375374,110.67,69.198 +375375,108.77,68.185 +375376,106.75,67.17 +375377,111.12,70.224 +375378,109.34,69.189 +375379,107.47,68.15 +375380,105.48,67.109 +375381,109.75,70.238 +375382,108.01,69.179 +375383,106.17,68.115 +375384,104.22,67.049 +375385,108.39,70.252 +375386,106.68,69.169 +375387,104.87,68.081 +375388,102.95,66.99 +375389,107.02,70.265 +375390,105.35,69.159 +375391,103.57,68.047 +375392,101.69,66.931 +375393,105.66,70.277 +375394,104.01,69.148 +375395,102.27,68.013 +375396,100.43,66.874 +375397,104.29,70.288 +375398,102.68,69.137 +375399,100.98,67.979 +375400,99.168,66.817 +375401,102.92,70.299 +375402,101.35,69.126 +375403,99.678,67.946 +375404,97.909,66.762 +375405,101.55,70.308 +375406,100.01,69.114 +375407,98.382,67.913 +375408,96.652,66.707 +375409,100.18,70.316 +375410,98.676,69.102 +375411,97.085,67.881 +375412,95.395,66.653 +375413,98.806,70.324 +375414,97.341,69.09 +375415,95.789,67.848 +375416,94.141,66.6 +375417,97.432,70.33 +375418,96.006,69.077 +375419,94.494,67.816 +375420,92.887,66.549 +375421,96.057,70.335 +375422,94.67,69.064 +375423,93.199,67.785 +375424,91.635,66.498 +375425,94.681,70.34 +375426,93.334,69.051 +375427,91.904,67.753 +375428,90.384,66.448 +375429,93.304,70.343 +375430,91.997,69.037 +375431,90.61,67.722 +375432,89.134,66.399 +375433,91.926,70.345 +375434,90.66,69.023 +375435,89.316,67.692 +375436,87.885,66.352 +375437,90.547,70.346 +375438,89.323,69.009 +375439,88.023,67.661 +375440,86.637,66.305 +375441,89.167,70.346 +375442,87.985,68.994 +375443,86.729,67.631 +375444,85.391,66.26 +375445,87.785,70.345 +375446,86.648,68.979 +375447,85.437,67.602 +375448,84.145,66.215 +375449,86.403,70.343 +375450,85.309,68.963 +375451,84.144,67.573 +375452,82.901,66.172 +375453,85.02,70.34 +375454,83.971,68.947 +375455,82.852,67.544 +375456,81.657,66.13 +375457,83.637,70.335 +375458,82.632,68.931 +375459,81.56,67.515 +375460,80.414,66.089 +375461,82.252,70.33 +375462,81.293,68.915 +375463,80.269,67.487 +375464,79.172,66.049 +375465,80.866,70.323 +375466,79.954,68.897 +375467,78.978,67.459 +375468,77.931,66.01 +375469,79.48,70.316 +375470,78.615,68.88 +375471,77.687,67.432 +375472,76.691,65.973 +375473,78.093,70.307 +375474,77.275,68.862 +375475,76.396,67.405 +375476,75.451,65.937 +375477,76.706,70.297 +375478,75.935,68.844 +375479,75.106,67.378 +375480,74.212,65.901 +375481,75.317,70.285 +375482,74.595,68.825 +375483,73.815,67.352 +375484,72.974,65.867 +375485,73.928,70.273 +375486,73.254,68.806 +375487,72.525,67.326 +375488,71.737,65.835 +375489,72.539,70.259 +375490,71.914,68.787 +375491,71.236,67.301 +375492,70.5,65.803 +375493,71.149,70.244 +375494,70.573,68.767 +375495,69.946,67.276 +375496,69.263,65.773 +375497,69.758,70.228 +375498,69.232,68.747 +375499,68.657,67.251 +375500,68.027,65.744 +375501,68.367,70.211 +375502,67.891,68.726 +375503,67.367,67.227 +375504,66.792,65.716 +375505,66.976,70.193 +375506,66.55,68.705 +375507,66.078,67.203 +375508,65.556,65.689 +375509,65.584,70.173 +375510,65.209,68.683 +375511,64.789,67.18 +375512,64.322,65.664 +375513,64.191,70.152 +375514,63.868,68.661 +375515,63.501,67.157 +375516,63.087,65.64 +375517,62.798,70.13 +375518,62.526,68.639 +375519,62.212,67.134 +375520,61.853,65.617 +375521,61.405,70.107 +375522,61.185,68.616 +375523,60.923,67.112 +375524,60.619,65.595 +375525,60.012,70.082 +375526,59.843,68.593 +375527,59.635,67.09 +375528,59.385,65.574 +375529,58.618,70.057 +375530,58.501,68.57 +375531,58.346,67.069 +375532,58.152,65.555 +375533,57.225,70.03 +375534,57.16,68.546 +375535,57.058,67.048 +375536,56.918,65.537 +375537,55.831,70.002 +375538,55.818,68.521 +375539,55.77,67.027 +375540,55.684,65.52 +375541,54.437,69.972 +375542,54.476,68.497 +375543,54.482,67.007 +375544,54.451,65.505 +375545,53.042,69.942 +375546,53.135,68.471 +375547,53.193,66.987 +375548,53.217,65.49 +375549,51.648,69.91 +375550,51.793,68.446 +375551,51.905,66.968 +375552,51.984,65.477 +375553,50.254,69.877 +375554,50.451,68.42 +375555,50.617,66.948 +375556,50.75,65.465 +375557,48.86,69.843 +375558,49.109,68.393 +375559,49.329,66.93 +375560,49.516,65.454 +375561,47.465,69.808 +375562,47.768,68.366 +375563,48.04,66.912 +375564,48.282,65.445 +375565,46.071,69.771 +375566,46.426,68.339 +375567,46.752,66.894 +375568,47.048,65.436 +375569,44.677,69.734 +375570,45.085,68.311 +375571,45.463,66.876 +375572,45.813,65.429 +375573,43.284,69.695 +375574,43.743,68.283 +375575,44.175,66.859 +375576,44.578,65.423 +375577,41.89,69.655 +375578,42.402,68.255 +375579,42.886,66.842 +375580,43.343,65.418 +375581,40.497,69.614 +375582,41.061,68.226 +375583,41.598,66.826 +375584,42.107,65.415 +375585,39.104,69.572 +375586,39.72,68.197 +375587,40.309,66.81 +375588,40.871,65.412 +375589,37.711,69.529 +375590,38.379,68.167 +375591,39.02,66.794 +375592,39.634,65.411 +375593,36.318,69.484 +375594,37.038,68.137 +375595,37.731,66.779 +375596,38.397,65.411 +375597,34.926,69.439 +375598,35.698,68.107 +375599,36.441,66.764 +375600,37.159,65.411 +375601,33.535,69.392 +375602,34.357,68.076 +375603,35.152,66.75 +375604,35.92,65.413 +375605,32.144,69.344 +375606,33.017,68.045 +375607,33.862,66.735 +375608,34.681,65.416 +375609,30.753,69.295 +375610,31.677,68.014 +375611,32.573,66.722 +375612,33.441,65.42 +375613,29.363,69.245 +375614,30.337,67.982 +375615,31.283,66.708 +375616,32.201,65.426 +375617,27.974,69.195 +375618,28.998,67.95 +375619,29.992,66.695 +375620,30.96,65.432 +375621,26.585,69.143 +375622,27.659,67.917 +375623,28.702,66.682 +375624,29.717,65.439 +375625,25.197,69.09 +375626,26.32,67.884 +375627,27.411,66.67 +375628,28.474,65.447 +375629,23.81,69.036 +375630,24.981,67.851 +375631,26.12,66.657 +375632,27.231,65.457 +375633,22.423,68.981 +375634,23.642,67.817 +375635,24.829,66.646 +375636,25.986,65.467 +375637,21.037,68.925 +375638,22.304,67.784 +375639,23.537,66.634 +375640,24.74,65.478 +375641,19.652,68.868 +375642,20.966,67.749 +375643,22.245,66.623 +375644,23.493,65.49 +375645,18.268,68.81 +375646,19.629,67.715 +375647,20.953,66.612 +375648,22.245,65.503 +375649,16.885,68.751 +375650,18.292,67.68 +375651,19.661,66.601 +375652,20.997,65.517 +375653,15.503,68.692 +375654,16.955,67.645 +375655,18.368,66.591 +375656,19.747,65.532 +375657,14.121,68.631 +375658,15.618,67.609 +375659,17.075,66.581 +375660,18.496,65.547 +375661,12.741,68.57 +375662,14.282,67.574 +375663,15.781,66.571 +375664,17.244,65.564 +375665,11.362,68.508 +375666,12.946,67.538 +375667,14.488,66.561 +375668,15.99,65.581 +375669,9.9834,68.445 +375670,11.611,67.501 +375671,13.193,66.552 +375672,14.736,65.599 +375673,8.6063,68.381 +375674,10.276,67.465 +375675,11.899,66.543 +375676,13.48,65.618 +375677,7.2303,68.316 +375678,8.9415,67.428 +375679,10.604,66.534 +375680,12.223,65.638 +375681,5.8555,68.251 +375682,7.6074,67.391 +375683,9.3083,66.526 +375684,10.965,65.658 +375685,4.4819,68.185 +375686,6.2737,67.353 +375687,8.0125,66.517 +375688,9.7049,65.679 +375689,3.1096,68.118 +375690,4.9404,67.316 +375691,6.7162,66.509 +375692,8.4439,65.701 +375693,1.7385,68.051 +375694,3.6076,67.278 +375695,5.4195,66.501 +375696,7.1815,65.723 +375697,0.36875,67.982 +375698,2.2753,67.24 +375699,4.1224,66.494 +375700,5.9177,65.746 +375701,359,67.914 +375702,0.94346,67.201 +375703,2.8249,66.486 +375704,4.6525,65.77 +375705,357.63,67.844 +375706,359.61,67.163 +375707,1.5268,66.479 +375708,3.3859,65.794 +375709,356.27,67.774 +375710,358.28,67.124 +375711,0.22836,66.472 +375712,2.1178,65.819 +375713,354.9,67.703 +375714,356.95,67.085 +375715,358.93,66.465 +375716,0.84829,65.844 +375717,353.54,67.632 +375718,355.62,67.046 +375719,357.63,66.458 +375720,359.58,65.869 +375721,352.18,67.561 +375722,354.29,67.007 +375723,356.33,66.451 +375724,358.3,65.896 +375725,350.82,67.488 +375726,352.96,66.967 +375727,355.03,66.445 +375728,357.03,65.922 +375729,349.46,67.416 +375730,351.63,66.928 +375731,353.73,66.439 +375732,355.75,65.949 +375733,348.1,67.343 +375734,350.31,66.888 +375735,352.43,66.432 +375736,354.48,65.977 +375737,346.75,67.269 +375738,348.98,66.848 +375739,351.13,66.426 +375740,353.2,66.005 +375741,345.4,67.195 +375742,347.65,66.808 +375743,349.82,66.42 +375744,351.92,66.033 +375745,344.04,67.121 +375746,346.33,66.768 +375747,348.52,66.414 +375748,350.64,66.061 +375749,342.69,67.046 +375750,345,66.728 +375751,347.22,66.409 +375752,349.35,66.09 +375753,341.35,66.971 +375754,343.68,66.687 +375755,345.91,66.403 +375756,348.07,66.119 +375757,340,66.896 +375758,342.35,66.647 +375759,344.61,66.397 +375760,346.78,66.148 +375761,338.66,66.821 +375762,341.03,66.606 +375763,343.3,66.391 +375764,345.49,66.178 +375765,337.31,66.745 +375766,339.71,66.565 +375767,342,66.386 +375768,344.2,66.207 +375769,335.97,66.669 +375770,338.38,66.525 +375771,340.69,66.38 +375772,342.91,66.237 +375773,334.63,66.593 +375774,337.06,66.484 +375775,339.38,66.375 +375776,341.62,66.267 +375777,333.29,66.517 +375778,335.74,66.443 +375779,338.08,66.37 +375780,340.32,66.297 +375781,331.96,66.44 +375782,334.42,66.402 +375783,336.77,66.364 +375784,339.02,66.327 +375785,330.62,66.364 +375786,333.1,66.361 +375787,335.46,66.359 +375788,337.72,66.357 +375789,329.29,66.287 +375790,331.78,66.32 +375791,334.15,66.353 +375792,336.42,66.387 +375793,327.96,66.211 +375794,330.46,66.279 +375795,332.84,66.348 +375796,335.12,66.417 +375797,326.63,66.134 +375798,329.14,66.238 +375799,331.53,66.342 +375800,333.82,66.446 +375801,325.31,66.058 +375802,327.82,66.197 +375803,330.22,66.337 +375804,332.51,66.476 +375805,323.98,65.981 +375806,326.51,66.156 +375807,328.91,66.331 +375808,331.2,66.506 +375809,322.66,65.905 +375810,325.19,66.116 +375811,327.6,66.326 +375812,329.89,66.535 +375813,321.34,65.829 +375814,323.87,66.075 +375815,326.28,66.32 +375816,328.58,66.565 +375817,320.02,65.753 +375818,322.56,66.034 +375819,324.97,66.314 +375820,327.27,66.594 +375821,318.7,65.677 +375822,321.25,65.993 +375823,323.66,66.308 +375824,325.96,66.623 +375825,317.39,65.601 +375826,319.93,65.952 +375827,322.34,66.302 +375828,324.64,66.652 +375829,316.07,65.525 +375830,318.62,65.912 +375831,321.03,66.296 +375832,323.32,66.68 +375833,314.76,65.45 +375834,317.31,65.871 +375835,319.71,66.29 +375836,322,66.708 +375837,313.45,65.375 +375838,315.99,65.831 +375839,318.4,66.284 +375840,320.68,66.736 +375841,312.15,65.3 +375842,314.68,65.79 +375843,317.08,66.278 +375844,319.36,66.763 +375845,310.84,65.226 +375846,313.37,65.75 +375847,315.76,66.271 +375848,318.03,66.79 +375849,309.54,65.152 +375850,312.06,65.71 +375851,314.44,66.265 +375852,316.71,66.817 +375853,308.24,65.079 +375854,310.75,65.67 +375855,313.13,66.258 +375856,315.38,66.843 +375857,306.94,65.005 +375858,309.44,65.63 +375859,311.81,66.251 +375860,314.05,66.868 +375861,305.64,64.933 +375862,308.14,65.59 +375863,310.49,66.244 +375864,312.72,66.893 +375865,304.35,64.86 +375866,306.83,65.55 +375867,309.17,66.236 +375868,311.38,66.918 +375869,303.05,64.789 +375870,305.52,65.511 +375871,307.85,66.229 +375872,310.05,66.942 +375873,301.76,64.718 +375874,304.22,65.472 +375875,306.53,66.221 +375876,308.71,66.965 +375877,300.47,64.647 +375878,302.91,65.433 +375879,305.2,66.213 +375880,307.37,66.988 +375881,299.18,64.577 +375882,301.61,65.394 +375883,303.88,66.205 +375884,306.03,67.011 +375885,297.9,64.507 +375886,300.3,65.355 +375887,302.56,66.197 +375888,304.69,67.032 +375889,296.62,64.439 +375890,299,65.317 +375891,301.24,66.188 +375892,303.35,67.053 +375893,295.33,64.371 +375894,297.69,65.278 +375895,299.91,66.179 +375896,302,67.073 +375897,294.05,64.303 +375898,296.39,65.24 +375899,298.59,66.17 +375900,300.66,67.093 +375901,292.78,64.236 +375902,295.09,65.202 +375903,297.26,66.161 +375904,299.31,67.111 +375905,291.5,64.17 +375906,293.79,65.165 +375907,295.94,66.151 +375908,297.96,67.129 +375909,290.22,64.105 +375910,292.49,65.127 +375911,294.61,66.141 +375912,296.61,67.146 +375913,288.95,64.041 +375914,291.19,65.09 +375915,293.28,66.131 +375916,295.26,67.163 +375917,287.68,63.977 +375918,289.89,65.053 +375919,291.96,66.121 +375920,293.9,67.178 +375921,286.41,63.914 +375922,288.59,65.017 +375923,290.63,66.11 +375924,292.55,67.193 +375925,285.14,63.852 +375926,287.29,64.981 +375927,289.3,66.099 +375928,291.19,67.207 +375929,283.88,63.791 +375930,285.99,64.945 +375931,287.97,66.088 +375932,289.83,67.22 +375933,282.61,63.731 +375934,284.7,64.909 +375935,286.64,66.076 +375936,288.47,67.232 +375937,281.35,63.672 +375938,283.4,64.873 +375939,285.31,66.064 +375940,287.11,67.243 +375941,280.09,63.613 +375942,282.1,64.838 +375943,283.98,66.052 +375944,285.75,67.253 +375945,278.83,63.556 +375946,280.81,64.804 +375947,282.65,66.039 +375948,284.39,67.262 +375949,277.57,63.499 +375950,279.51,64.769 +375951,281.32,66.026 +375952,283.02,67.27 +375953,276.31,63.444 +375954,278.22,64.735 +375955,279.99,66.013 +375956,281.66,67.277 +375957,275.06,63.39 +375958,276.92,64.701 +375959,278.66,65.999 +375960,280.29,67.283 +375961,273.81,63.336 +375962,275.63,64.668 +375963,277.33,65.985 +375964,278.92,67.288 +375965,272.55,63.284 +375966,274.34,64.634 +375967,276,65.971 +375968,277.55,67.292 +375969,271.3,63.233 +375970,273.04,64.601 +375971,274.66,65.956 +375972,276.18,67.295 +375973,270.05,63.182 +375974,271.75,64.569 +375975,273.33,65.941 +375976,274.81,67.297 +375977,268.81,63.133 +375978,270.46,64.537 +375979,272,65.925 +375980,273.43,67.298 +375981,267.56,63.085 +375982,269.17,64.505 +375983,270.66,65.909 +375984,272.06,67.298 +375985,266.31,63.038 +375986,267.88,64.474 +375987,269.33,65.893 +375988,270.68,67.296 +375989,265.07,62.993 +375990,266.58,64.443 +375991,267.99,65.877 +375992,269.31,67.294 +375993,263.83,62.948 +375994,265.29,64.412 +375995,266.66,65.859 +375996,267.93,67.29 +375997,262.59,62.905 +375998,264,64.382 +375999,265.32,65.842 +376000,266.55,67.285 +376001,261.34,62.863 +376002,262.71,64.352 +376003,263.99,65.824 +376004,265.17,67.279 +376005,260.1,62.821 +376006,261.43,64.322 +376007,262.65,65.806 +376008,263.79,67.272 +376009,258.87,62.782 +376010,260.14,64.293 +376011,261.31,65.787 +376012,262.41,67.263 +376013,257.63,62.743 +376014,258.85,64.264 +376015,259.98,65.768 +376016,261.03,67.254 +376017,256.39,62.706 +376018,257.56,64.236 +376019,258.64,65.749 +376020,259.64,67.243 +376021,255.16,62.669 +376022,256.27,64.208 +376023,257.3,65.729 +376024,258.26,67.231 +376025,253.92,62.634 +376026,254.98,64.18 +376027,255.97,65.708 +376028,256.87,67.217 +376029,252.69,62.601 +376030,253.7,64.153 +376031,254.63,65.688 +376032,255.49,67.203 +376033,251.45,62.568 +376034,252.41,64.126 +376035,253.29,65.666 +376036,254.1,67.187 +376037,250.22,62.537 +376038,251.12,64.1 +376039,251.95,65.645 +376040,252.71,67.17 +376041,248.99,62.507 +376042,249.84,64.074 +376043,250.61,65.623 +376044,251.33,67.152 +376045,247.76,62.478 +376046,248.55,64.048 +376047,249.28,65.6 +376048,249.94,67.133 +376049,246.52,62.451 +376050,247.26,64.023 +376051,247.94,65.577 +376052,248.55,67.112 +376053,245.29,62.424 +376054,245.98,63.999 +376055,246.6,65.554 +376056,247.16,67.09 +376057,244.06,62.4 +376058,244.69,63.974 +376059,245.26,65.53 +376060,245.77,67.067 +376061,242.83,62.376 +376062,243.41,63.95 +376063,243.92,65.506 +376064,244.38,67.043 +376065,241.6,62.353 +376066,242.12,63.927 +376067,242.58,65.481 +376068,242.99,67.017 +376069,240.38,62.332 +376070,240.84,63.904 +376071,241.24,65.456 +376072,241.6,66.99 +376073,239.15,62.312 +376074,239.55,63.881 +376075,239.9,65.431 +376076,240.2,66.962 +376077,237.92,62.294 +376078,238.27,63.859 +376079,238.56,65.405 +376080,238.81,66.932 +376081,236.69,62.276 +376082,236.98,63.837 +376083,237.22,65.379 +376084,237.42,66.902 +376085,235.46,62.26 +376086,235.7,63.815 +376087,235.88,65.352 +376088,236.03,66.87 +376089,234.24,62.246 +376090,234.41,63.794 +376091,234.54,65.325 +376092,234.63,66.836 +376093,233.01,62.232 +376094,233.13,63.773 +376095,233.2,65.297 +376096,233.24,66.802 +376097,231.78,62.22 +376098,231.84,63.753 +376099,231.86,65.269 +376100,231.85,66.766 +376101,230.55,62.209 +376102,230.56,63.733 +376103,230.52,65.241 +376104,230.46,66.729 +376105,229.32,62.199 +376106,229.27,63.714 +376107,229.18,65.212 +376108,229.06,66.691 +376109,228.1,62.19 +376110,227.99,63.695 +376111,227.84,65.182 +376112,227.67,66.652 +376113,226.87,62.183 +376114,226.7,63.676 +376115,226.5,65.153 +376116,226.27,66.611 +376117,225.64,62.176 +376118,225.42,63.658 +376119,225.16,65.122 +376120,224.88,66.57 +376121,224.41,62.171 +376122,224.13,63.64 +376123,223.83,65.092 +376124,223.49,66.527 +376125,223.18,62.168 +376126,222.85,63.622 +376127,222.49,65.061 +376128,222.09,66.483 +376129,221.95,62.165 +376130,221.56,63.605 +376131,221.15,65.029 +376132,220.7,66.437 +376133,220.72,62.163 +376134,220.28,63.588 +376135,219.81,64.998 +376136,219.31,66.391 +376137,219.49,62.163 +376138,218.99,63.572 +376139,218.47,64.966 +376140,217.92,66.343 +376141,218.26,62.164 +376142,217.71,63.556 +376143,217.13,64.933 +376144,216.52,66.294 +376145,217.03,62.166 +376146,216.42,63.54 +376147,215.79,64.9 +376148,215.13,66.244 +376149,215.8,62.169 +376150,215.14,63.525 +376151,214.45,64.867 +376152,213.74,66.193 +376153,214.57,62.173 +376154,213.85,63.51 +376155,213.11,64.833 +376156,212.35,66.141 +376157,213.34,62.178 +376158,212.57,63.495 +376159,211.77,64.799 +376160,210.96,66.088 +376161,212.1,62.185 +376162,211.28,63.481 +376163,210.44,64.764 +376164,209.57,66.033 +376165,210.87,62.192 +376166,209.99,63.467 +376167,209.1,64.729 +376168,208.18,65.978 +376169,209.63,62.2 +376170,208.71,63.453 +376171,207.76,64.694 +376172,206.79,65.922 +376173,208.4,62.21 +376174,207.42,63.44 +376175,206.42,64.659 +376176,205.4,65.864 +376177,207.16,62.22 +376178,206.13,63.427 +376179,205.08,64.623 +376180,204.01,65.805 +376181,205.92,62.231 +376182,204.85,63.414 +376183,203.75,64.586 +376184,202.62,65.746 +376185,204.69,62.244 +376186,203.56,63.402 +376187,202.41,64.55 +376188,201.24,65.685 +376189,203.45,62.257 +376190,202.27,63.39 +376191,201.07,64.513 +376192,199.85,65.624 +376193,202.21,62.271 +376194,200.99,63.378 +376195,199.74,64.476 +376196,198.46,65.561 +376197,200.97,62.286 +376198,199.7,63.367 +376199,198.4,64.438 +376200,197.08,65.498 +376201,199.72,62.302 +376202,198.41,63.356 +376203,197.07,64.4 +376204,195.7,65.434 +376205,198.48,62.319 +376206,197.12,63.345 +376207,195.73,64.362 +376208,194.31,65.368 +376209,197.24,62.337 +376210,195.83,63.334 +376211,194.4,64.323 +376212,192.93,65.302 +376213,195.99,62.355 +376214,194.54,63.324 +376215,193.06,64.285 +376216,191.55,65.235 +376217,194.74,62.374 +376218,193.25,63.314 +376219,191.73,64.245 +376220,190.17,65.168 +376221,193.49,62.394 +376222,191.96,63.304 +376223,190.39,64.206 +376224,188.79,65.099 +376225,192.25,62.415 +376226,190.67,63.294 +376227,189.06,64.166 +376228,187.41,65.03 +376229,190.99,62.436 +376230,189.38,63.285 +376231,187.73,64.127 +376232,186.04,64.96 +376233,189.74,62.459 +376234,188.09,63.276 +376235,186.4,64.086 +376236,184.66,64.889 +376237,188.49,62.481 +376238,186.8,63.267 +376239,185.06,64.046 +376240,183.29,64.817 +376241,187.23,62.505 +376242,185.5,63.258 +376243,183.73,64.005 +376244,181.91,64.745 +376245,185.98,62.529 +376246,184.21,63.25 +376247,182.4,63.965 +376248,180.54,64.672 +376249,184.72,62.553 +376250,182.92,63.241 +376251,181.07,63.923 +376252,179.17,64.598 +376253,183.46,62.578 +376254,181.63,63.233 +376255,179.74,63.882 +376256,177.8,64.524 +376257,182.2,62.604 +376258,180.33,63.225 +376259,178.41,63.841 +376260,176.43,64.449 +376261,180.94,62.63 +376262,179.04,63.217 +376263,177.08,63.799 +376264,175.07,64.374 +376265,179.68,62.657 +376266,177.74,63.209 +376267,175.75,63.757 +376268,173.7,64.298 +376269,178.41,62.684 +376270,176.45,63.202 +376271,174.42,63.715 +376272,172.34,64.222 +376273,177.15,62.712 +376274,175.15,63.194 +376275,173.1,63.673 +376276,170.97,64.145 +376277,175.88,62.739 +376278,173.86,63.187 +376279,171.77,63.63 +376280,169.61,64.067 +376281,174.61,62.768 +376282,172.56,63.18 +376283,170.44,63.588 +376284,168.25,63.989 +376285,173.34,62.796 +376286,171.26,63.173 +376287,169.12,63.545 +376288,166.9,63.911 +376289,172.06,62.825 +376290,169.96,63.166 +376291,167.79,63.502 +376292,165.54,63.833 +376293,170.79,62.854 +376294,168.67,63.159 +376295,166.47,63.459 +376296,164.18,63.754 +376297,169.51,62.884 +376298,167.37,63.152 +376299,165.14,63.416 +376300,162.83,63.674 +376301,168.24,62.914 +376302,166.07,63.145 +376303,163.82,63.373 +376304,161.48,63.595 +376305,166.96,62.943 +376306,164.77,63.139 +376307,162.5,63.33 +376308,160.13,63.515 +376309,165.68,62.973 +376310,163.47,63.132 +376311,161.17,63.287 +376312,158.78,63.435 +376313,164.39,63.003 +376314,162.17,63.126 +376315,159.85,63.243 +376316,157.44,63.355 +376317,163.11,63.034 +376318,160.86,63.119 +376319,158.53,63.2 +376320,156.09,63.274 +376321,161.82,63.064 +376322,159.56,63.112 +376323,157.21,63.156 +376324,154.75,63.194 +376325,160.53,63.094 +376326,158.26,63.106 +376327,155.89,63.113 +376328,153.41,63.113 +376329,159.24,63.125 +376330,156.96,63.099 +376331,154.57,63.069 +376332,152.07,63.032 +376333,157.95,63.155 +376334,155.65,63.093 +376335,153.25,63.025 +376336,150.73,62.951 +376337,156.66,63.185 +376338,154.35,63.086 +376339,151.93,62.982 +376340,149.4,62.87 +376341,155.36,63.215 +376342,153.04,63.08 +376343,150.61,62.938 +376344,148.06,62.789 +376345,154.07,63.245 +376346,151.74,63.073 +376347,149.3,62.894 +376348,146.73,62.709 +376349,152.77,63.275 +376350,150.43,63.066 +376351,147.98,62.851 +376352,145.4,62.628 +376353,151.47,63.305 +376354,149.12,63.059 +376355,146.67,62.807 +376356,144.08,62.547 +376357,150.17,63.335 +376358,147.82,63.053 +376359,145.35,62.764 +376360,142.75,62.467 +376361,148.86,63.364 +376362,146.51,63.046 +376363,144.04,62.72 +376364,141.43,62.386 +376365,147.56,63.393 +376366,145.2,63.039 +376367,142.72,62.677 +376368,140.1,62.306 +376369,146.25,63.422 +376370,143.89,63.031 +376371,141.41,62.633 +376372,138.79,62.226 +376373,144.94,63.45 +376374,142.58,63.024 +376375,140.1,62.59 +376376,137.47,62.146 +376377,143.63,63.479 +376378,141.27,63.017 +376379,138.79,62.547 +376380,136.15,62.067 +376381,142.32,63.506 +376382,139.96,63.009 +376383,137.47,62.503 +376384,134.84,61.988 +376385,141,63.534 +376386,138.65,63.002 +376387,136.16,62.46 +376388,133.53,61.909 +376389,139.69,63.561 +376390,137.34,62.994 +376391,134.85,62.418 +376392,132.22,61.83 +376393,138.37,63.587 +376394,136.02,62.986 +376395,133.55,62.375 +376396,130.91,61.752 +376397,137.05,63.613 +376398,134.71,62.978 +376399,132.24,62.332 +376400,129.6,61.674 +376401,135.73,63.639 +376402,133.4,62.97 +376403,130.93,62.29 +376404,128.3,61.597 +376405,134.41,63.664 +376406,132.08,62.961 +376407,129.62,62.247 +376408,127,61.52 +376409,133.08,63.688 +376410,130.77,62.953 +376411,128.32,62.205 +376412,125.7,61.444 +376413,131.75,63.712 +376414,129.45,62.944 +376415,127.01,62.163 +376416,124.4,61.368 +376417,130.43,63.735 +376418,128.14,62.935 +376419,125.71,62.121 +376420,123.11,61.293 +376421,129.1,63.758 +376422,126.82,62.925 +376423,124.4,62.079 +376424,121.82,61.219 +376425,127.76,63.78 +376426,125.5,62.916 +376427,123.1,62.038 +376428,120.52,61.145 +376429,126.43,63.801 +376430,124.18,62.906 +376431,121.79,61.997 +376432,119.24,61.072 +376433,125.09,63.822 +376434,122.87,62.896 +376435,120.49,61.956 +376436,117.95,60.999 +376437,123.76,63.841 +376438,121.55,62.886 +376439,119.19,61.915 +376440,116.66,60.927 +376441,122.42,63.861 +376442,120.23,62.875 +376443,117.89,61.874 +376444,115.38,60.856 +376445,121.08,63.879 +376446,118.91,62.865 +376447,116.59,61.834 +376448,114.1,60.786 +376449,119.74,63.896 +376450,117.59,62.854 +376451,115.29,61.794 +376452,112.82,60.716 +376453,118.4,63.913 +376454,116.26,62.842 +376455,113.99,61.754 +376456,111.54,60.647 +376457,117.05,63.929 +376458,114.94,62.83 +376459,112.69,61.714 +376460,110.27,60.579 +376461,115.7,63.943 +376462,113.62,62.819 +376463,111.39,61.675 +376464,108.99,60.512 +376465,114.36,63.957 +376466,112.3,62.806 +376467,110.1,61.636 +376468,107.72,60.446 +376469,113.01,63.97 +376470,110.97,62.794 +376471,108.8,61.597 +376472,106.45,60.38 +376473,111.66,63.982 +376474,109.65,62.781 +376475,107.5,61.559 +376476,105.19,60.316 +376477,110.3,63.994 +376478,108.33,62.767 +376479,106.21,61.521 +376480,103.92,60.252 +376481,108.95,64.004 +376482,107,62.754 +376483,104.91,61.483 +376484,102.66,60.19 +376485,107.59,64.013 +376486,105.68,62.74 +376487,103.62,61.445 +376488,101.39,60.128 +376489,106.24,64.021 +376490,104.35,62.726 +376491,102.32,61.408 +376492,100.13,60.068 +376493,104.88,64.028 +376494,103.02,62.711 +376495,101.03,61.371 +376496,98.875,60.008 +376497,103.52,64.034 +376498,101.7,62.696 +376499,99.738,61.335 +376500,97.618,59.95 +376501,102.16,64.039 +376502,100.37,62.681 +376503,98.446,61.298 +376504,96.362,59.892 +376505,100.8,64.043 +376506,99.043,62.665 +376507,97.154,61.263 +376508,95.109,59.836 +376509,99.434,64.046 +376510,97.715,62.649 +376511,95.863,61.227 +376512,93.857,59.781 +376513,98.069,64.048 +376514,96.387,62.632 +376515,94.573,61.192 +376516,92.606,59.727 +376517,96.703,64.048 +376518,95.058,62.615 +376519,93.283,61.157 +376520,91.358,59.674 +376521,95.336,64.047 +376522,93.728,62.598 +376523,91.993,61.123 +376524,90.11,59.622 +376525,93.967,64.046 +376526,92.399,62.58 +376527,90.704,61.089 +376528,88.864,59.572 +376529,92.598,64.043 +376530,91.068,62.562 +376531,89.416,61.055 +376532,87.62,59.522 +376533,91.227,64.039 +376534,89.738,62.543 +376535,88.128,61.022 +376536,86.377,59.474 +376537,89.855,64.033 +376538,88.407,62.524 +376539,86.84,60.989 +376540,85.136,59.427 +376541,88.482,64.027 +376542,87.076,62.505 +376543,85.553,60.957 +376544,83.895,59.381 +376545,87.108,64.019 +376546,85.744,62.485 +376547,84.266,60.925 +376548,82.657,59.337 +376549,85.733,64.01 +376550,84.412,62.465 +376551,82.98,60.893 +376552,81.419,59.294 +376553,84.356,64 +376554,83.08,62.444 +376555,81.694,60.862 +376556,80.182,59.252 +376557,82.979,63.988 +376558,81.747,62.423 +376559,80.408,60.831 +376560,78.947,59.211 +376561,81.601,63.975 +376562,80.414,62.402 +376563,79.123,60.801 +376564,77.713,59.172 +376565,80.222,63.961 +376566,79.081,62.38 +376567,77.839,60.771 +376568,76.48,59.133 +376569,78.842,63.946 +376570,77.747,62.357 +376571,76.554,60.741 +376572,75.248,59.097 +376573,77.462,63.929 +376574,76.414,62.334 +376575,75.27,60.712 +376576,74.017,59.061 +376577,76.08,63.911 +376578,75.08,62.311 +376579,73.986,60.683 +376580,72.787,59.027 +376581,74.698,63.892 +376582,73.745,62.287 +376583,72.703,60.655 +376584,71.558,58.994 +376585,73.314,63.872 +376586,72.411,62.263 +376587,71.42,60.627 +376588,70.33,58.962 +376589,71.93,63.85 +376590,71.076,62.238 +376591,70.137,60.599 +376592,69.103,58.932 +376593,70.546,63.827 +376594,69.741,62.213 +376595,68.855,60.572 +376596,67.876,58.903 +376597,69.161,63.802 +376598,68.406,62.188 +376599,67.572,60.546 +376600,66.65,58.876 +376601,67.775,63.776 +376602,67.07,62.162 +376603,66.29,60.519 +376604,65.425,58.849 +376605,66.388,63.749 +376606,65.735,62.135 +376607,65.009,60.494 +376608,64.201,58.824 +376609,65.001,63.721 +376610,64.399,62.108 +376611,63.727,60.468 +376612,62.977,58.801 +376613,63.613,63.691 +376614,63.063,62.081 +376615,62.446,60.443 +376616,61.753,58.779 +376617,62.225,63.66 +376618,61.727,62.053 +376619,61.165,60.419 +376620,60.53,58.758 +376621,60.837,63.628 +376622,60.391,62.025 +376623,59.884,60.395 +376624,59.308,58.738 +376625,59.448,63.594 +376626,59.055,61.996 +376627,58.603,60.371 +376628,58.086,58.72 +376629,58.058,63.559 +376630,57.718,61.967 +376631,57.322,60.348 +376632,56.864,58.703 +376633,56.669,63.523 +376634,56.382,61.937 +376635,56.042,60.325 +376636,55.643,58.687 +376637,55.278,63.485 +376638,55.045,61.907 +376639,54.762,60.303 +376640,54.421,58.673 +376641,53.888,63.446 +376642,53.709,61.876 +376643,53.481,60.281 +376644,53.2,58.66 +376645,52.497,63.406 +376646,52.372,61.845 +376647,52.201,60.259 +376648,51.98,58.648 +376649,51.107,63.365 +376650,51.036,61.814 +376651,50.921,60.238 +376652,50.759,58.638 +376653,49.716,63.322 +376654,49.699,61.782 +376655,49.641,60.218 +376656,49.538,58.629 +376657,48.324,63.278 +376658,48.362,61.75 +376659,48.361,60.197 +376660,48.317,58.621 +376661,46.933,63.233 +376662,47.026,61.717 +376663,47.081,60.177 +376664,47.097,58.615 +376665,45.542,63.186 +376666,45.689,61.684 +376667,45.801,60.158 +376668,45.876,58.609 +376669,44.151,63.138 +376670,44.352,61.65 +376671,44.521,60.139 +376672,44.655,58.605 +376673,42.759,63.089 +376674,43.016,61.616 +376675,43.241,60.12 +376676,43.434,58.602 +376677,41.368,63.039 +376678,41.679,61.582 +376679,41.961,60.102 +376680,42.212,58.601 +376681,39.977,62.987 +376682,40.343,61.547 +376683,40.681,60.084 +376684,40.99,58.6 +376685,38.586,62.935 +376686,39.007,61.511 +376687,39.401,60.067 +376688,39.768,58.601 +376689,37.195,62.881 +376690,37.67,61.476 +376691,38.121,60.05 +376692,38.546,58.603 +376693,35.804,62.826 +376694,36.334,61.44 +376695,36.841,60.033 +376696,37.323,58.607 +376697,34.414,62.769 +376698,34.998,61.403 +376699,35.561,60.016 +376700,36.1,58.611 +376701,33.024,62.712 +376702,33.663,61.366 +376703,34.28,60.001 +376704,34.876,58.616 +376705,31.634,62.653 +376706,32.327,61.329 +376707,33,59.985 +376708,33.651,58.623 +376709,30.244,62.594 +376710,30.991,61.291 +376711,31.719,59.97 +376712,32.426,58.631 +376713,28.855,62.533 +376714,29.656,61.253 +376715,30.438,59.955 +376716,31.201,58.639 +376717,27.467,62.471 +376718,28.321,61.214 +376719,29.157,59.94 +376720,29.974,58.649 +376721,26.078,62.408 +376722,26.986,61.176 +376723,27.876,59.926 +376724,28.747,58.66 +376725,24.691,62.344 +376726,25.652,61.136 +376727,26.594,59.912 +376728,27.519,58.672 +376729,23.304,62.278 +376730,24.317,61.097 +376731,25.313,59.898 +376732,26.291,58.685 +376733,21.917,62.212 +376734,22.983,61.057 +376735,24.031,59.885 +376736,25.061,58.699 +376737,20.531,62.145 +376738,21.649,61.017 +376739,22.749,59.872 +376740,23.831,58.714 +376741,19.146,62.077 +376742,20.316,60.976 +376743,21.466,59.86 +376744,22.599,58.73 +376745,17.761,62.008 +376746,18.982,60.935 +376747,20.184,59.847 +376748,21.367,58.746 +376749,16.378,61.938 +376750,17.65,60.894 +376751,18.901,59.835 +376752,20.133,58.764 +376753,14.995,61.867 +376754,16.317,60.852 +376755,17.618,59.824 +376756,18.899,58.782 +376757,13.613,61.795 +376758,14.985,60.81 +376759,16.334,59.812 +376760,17.663,58.802 +376761,12.231,61.722 +376762,13.653,60.768 +376763,15.05,59.801 +376764,16.427,58.822 +376765,10.851,61.648 +376766,12.321,60.726 +376767,13.766,59.79 +376768,15.189,58.843 +376769,9.4714,61.574 +376770,10.99,60.683 +376771,12.482,59.779 +376772,13.95,58.865 +376773,8.0929,61.499 +376774,9.659,60.64 +376775,11.197,59.769 +376776,12.709,58.887 +376777,6.7154,61.422 +376778,8.3286,60.596 +376779,9.9117,59.758 +376780,11.468,58.91 +376781,5.339,61.346 +376782,6.9986,60.553 +376783,8.6262,59.748 +376784,10.225,58.934 +376785,3.9636,61.268 +376786,5.669,60.509 +376787,7.3402,59.739 +376788,8.981,58.959 +376789,2.5894,61.19 +376790,4.3399,60.465 +376791,6.0539,59.729 +376792,7.7356,58.984 +376793,1.2163,61.111 +376794,3.0111,60.421 +376795,4.7671,59.72 +376796,6.4887,59.009 +376797,359.84,61.031 +376798,1.6829,60.376 +376799,3.48,59.71 +376800,5.2405,59.036 +376801,358.47,60.951 +376802,0.3551,60.331 +376803,2.1924,59.701 +376804,3.9908,59.063 +376805,357.1,60.87 +376806,359.03,60.286 +376807,0.90438,59.693 +376808,2.7396,59.09 +376809,355.74,60.788 +376810,357.7,60.241 +376811,359.62,59.684 +376812,1.487,59.118 +376813,354.37,60.706 +376814,356.37,60.196 +376815,358.33,59.675 +376816,0.2329,59.146 +376817,353,60.624 +376818,355.05,60.15 +376819,357.04,59.667 +376820,358.98,59.175 +376821,351.64,60.541 +376822,353.72,60.105 +376823,355.75,59.659 +376824,357.72,59.204 +376825,350.28,60.457 +376826,352.4,60.059 +376827,354.46,59.65 +376828,356.46,59.234 +376829,348.92,60.373 +376830,351.07,60.013 +376831,353.17,59.642 +376832,355.2,59.264 +376833,347.56,60.289 +376834,349.75,59.967 +376835,351.88,59.634 +376836,353.94,59.294 +376837,346.2,60.204 +376838,348.43,59.921 +376839,350.58,59.627 +376840,352.68,59.324 +376841,344.84,60.119 +376842,347.11,59.874 +376843,349.29,59.619 +376844,351.41,59.355 +376845,343.49,60.034 +376846,345.78,59.828 +376847,348,59.611 +376848,350.14,59.386 +376849,342.13,59.948 +376850,344.46,59.781 +376851,346.7,59.604 +376852,348.87,59.417 +376853,340.78,59.862 +376854,343.14,59.735 +376855,345.41,59.596 +376856,347.6,59.449 +376857,339.43,59.776 +376858,341.82,59.688 +376859,344.12,59.588 +376860,346.33,59.48 +376861,338.09,59.69 +376862,340.5,59.641 +376863,342.82,59.581 +376864,345.06,59.512 +376865,336.74,59.603 +376866,339.18,59.594 +376867,341.53,59.573 +376868,343.78,59.543 +376869,335.39,59.517 +376870,337.86,59.547 +376871,340.23,59.566 +376872,342.51,59.575 +376873,334.05,59.43 +376874,336.55,59.5 +376875,338.93,59.558 +376876,341.23,59.606 +376877,332.71,59.343 +376878,335.23,59.453 +376879,337.64,59.551 +376880,339.95,59.638 +376881,331.37,59.256 +376882,333.91,59.406 +376883,336.34,59.543 +376884,338.66,59.67 +376885,330.03,59.169 +376886,332.6,59.359 +376887,335.04,59.536 +376888,337.38,59.701 +376889,328.7,59.083 +376890,331.28,59.312 +376891,333.74,59.528 +376892,336.09,59.732 +376893,327.37,58.996 +376894,329.97,59.265 +376895,332.44,59.521 +376896,334.81,59.764 +376897,326.03,58.909 +376898,328.65,59.218 +376899,331.14,59.513 +376900,333.52,59.795 +376901,324.7,58.823 +376902,327.34,59.172 +376903,329.84,59.505 +376904,332.22,59.826 +376905,323.38,58.736 +376906,326.03,59.125 +376907,328.54,59.497 +376908,330.93,59.856 +376909,322.05,58.65 +376910,324.72,59.078 +376911,327.24,59.489 +376912,329.64,59.886 +376913,320.73,58.564 +376914,323.41,59.031 +376915,325.94,59.481 +376916,328.34,59.916 +376917,319.41,58.479 +376918,322.1,58.985 +376919,324.63,59.473 +376920,327.04,59.946 +376921,318.09,58.393 +376922,320.79,58.938 +376923,323.33,59.465 +376924,325.74,59.975 +376925,316.77,58.308 +376926,319.48,58.892 +376927,322.02,59.456 +376928,324.44,60.004 +376929,315.45,58.224 +376930,318.17,58.845 +376931,320.72,59.448 +376932,323.13,60.033 +376933,314.14,58.139 +376934,316.86,58.799 +376935,319.41,59.439 +376936,321.83,60.061 +376937,312.83,58.056 +376938,315.55,58.753 +376939,318.11,59.43 +376940,320.52,60.088 +376941,311.52,57.972 +376942,314.25,58.707 +376943,316.8,59.421 +376944,319.21,60.115 +376945,310.21,57.889 +376946,312.94,58.661 +376947,315.49,59.411 +376948,317.9,60.142 +376949,308.91,57.807 +376950,311.64,58.616 +376951,314.19,59.402 +376952,316.59,60.168 +376953,307.61,57.725 +376954,310.33,58.57 +376955,312.88,59.392 +376956,315.27,60.193 +376957,306.31,57.644 +376958,309.03,58.525 +376959,311.57,59.382 +376960,313.96,60.218 +376961,305.01,57.563 +376962,307.73,58.48 +376963,310.26,59.372 +376964,312.64,60.242 +376965,303.71,57.483 +376966,306.42,58.435 +376967,308.95,59.362 +376968,311.32,60.265 +376969,302.42,57.403 +376970,305.12,58.391 +376971,307.64,59.351 +376972,309.99,60.288 +376973,301.12,57.325 +376974,303.82,58.346 +376975,306.33,59.34 +376976,308.67,60.31 +376977,299.83,57.247 +376978,302.52,58.302 +376979,305.02,59.329 +376980,307.35,60.331 +376981,298.55,57.17 +376982,301.22,58.258 +376983,303.7,59.318 +376984,306.02,60.351 +376985,297.26,57.093 +376986,299.93,58.215 +376987,302.39,59.306 +376988,304.69,60.371 +376989,295.98,57.017 +376990,298.63,58.171 +376991,301.08,59.294 +376992,303.36,60.39 +376993,294.7,56.943 +376994,297.33,58.128 +376995,299.76,59.282 +376996,302.03,60.408 +376997,293.42,56.869 +376998,296.03,58.085 +376999,298.45,59.269 +377000,300.69,60.425 +377001,292.14,56.796 +377002,294.74,58.043 +377003,297.13,59.257 +377004,299.36,60.441 +377005,290.86,56.724 +377006,293.44,58 +377007,295.82,59.243 +377008,298.02,60.456 +377009,289.59,56.653 +377010,292.15,57.958 +377011,294.5,59.23 +377012,296.68,60.47 +377013,288.32,56.582 +377014,290.85,57.917 +377015,293.18,59.216 +377016,295.34,60.484 +377017,287.05,56.513 +377018,289.56,57.875 +377019,291.87,59.202 +377020,294,60.496 +377021,285.78,56.445 +377022,288.27,57.834 +377023,290.55,59.187 +377024,292.66,60.507 +377025,284.52,56.378 +377026,286.98,57.794 +377027,289.23,59.172 +377028,291.31,60.517 +377029,283.26,56.312 +377030,285.69,57.753 +377031,287.91,59.157 +377032,289.97,60.527 +377033,282,56.247 +377034,284.4,57.713 +377035,286.59,59.142 +377036,288.62,60.535 +377037,280.74,56.183 +377038,283.11,57.674 +377039,285.27,59.125 +377040,287.27,60.542 +377041,279.48,56.12 +377042,281.82,57.634 +377043,283.95,59.109 +377044,285.92,60.548 +377045,278.22,56.059 +377046,280.53,57.595 +377047,282.63,59.092 +377048,284.57,60.552 +377049,276.97,55.998 +377050,279.24,57.557 +377051,281.31,59.075 +377052,283.21,60.556 +377053,275.72,55.939 +377054,277.95,57.519 +377055,279.99,59.057 +377056,281.86,60.559 +377057,274.47,55.881 +377058,276.67,57.481 +377059,278.67,59.039 +377060,280.5,60.56 +377061,273.22,55.825 +377062,275.38,57.444 +377063,277.34,59.021 +377064,279.15,60.56 +377065,271.98,55.769 +377066,274.09,57.407 +377067,276.02,59.002 +377068,277.79,60.559 +377069,270.73,55.715 +377070,272.81,57.37 +377071,274.7,58.983 +377072,276.43,60.556 +377073,269.49,55.662 +377074,271.52,57.334 +377075,273.37,58.963 +377076,275.06,60.553 +377077,268.25,55.61 +377078,270.24,57.298 +377079,272.05,58.943 +377080,273.7,60.548 +377081,267.01,55.56 +377082,268.96,57.263 +377083,270.72,58.923 +377084,272.34,60.542 +377085,265.77,55.511 +377086,267.67,57.228 +377087,269.4,58.902 +377088,270.97,60.534 +377089,264.53,55.463 +377090,266.39,57.194 +377091,268.07,58.88 +377092,269.61,60.525 +377093,263.3,55.417 +377094,265.11,57.16 +377095,266.75,58.858 +377096,268.24,60.515 +377097,262.06,55.372 +377098,263.83,57.126 +377099,265.42,58.836 +377100,266.87,60.504 +377101,260.83,55.329 +377102,262.54,57.093 +377103,264.09,58.813 +377104,265.5,60.491 +377105,259.6,55.287 +377106,261.26,57.06 +377107,262.76,58.79 +377108,264.13,60.477 +377109,258.37,55.246 +377110,259.98,57.028 +377111,261.44,58.766 +377112,262.76,60.462 +377113,257.14,55.206 +377114,258.7,56.996 +377115,260.11,58.742 +377116,261.39,60.445 +377117,255.92,55.169 +377118,257.42,56.965 +377119,258.78,58.717 +377120,260.01,60.427 +377121,254.69,55.132 +377122,256.15,56.934 +377123,257.45,58.692 +377124,258.64,60.408 +377125,253.47,55.097 +377126,254.87,56.904 +377127,256.12,58.666 +377128,257.26,60.387 +377129,252.24,55.063 +377130,253.59,56.874 +377131,254.8,58.64 +377132,255.89,60.365 +377133,251.02,55.031 +377134,252.31,56.844 +377135,253.47,58.613 +377136,254.51,60.341 +377137,249.8,55 +377138,251.03,56.815 +377139,252.14,58.586 +377140,253.13,60.316 +377141,248.58,54.971 +377142,249.76,56.787 +377143,250.81,58.559 +377144,251.75,60.29 +377145,247.36,54.943 +377146,248.48,56.758 +377147,249.48,58.531 +377148,250.37,60.262 +377149,246.14,54.917 +377150,247.2,56.731 +377151,248.15,58.502 +377152,248.99,60.233 +377153,244.92,54.892 +377154,245.93,56.704 +377155,246.82,58.473 +377156,247.61,60.202 +377157,243.71,54.868 +377158,244.65,56.677 +377159,245.49,58.444 +377160,246.23,60.17 +377161,242.49,54.846 +377162,243.38,56.651 +377163,244.16,58.414 +377164,244.85,60.137 +377165,241.28,54.826 +377166,242.1,56.625 +377167,242.83,58.383 +377168,243.47,60.102 +377169,240.06,54.806 +377170,240.82,56.6 +377171,241.49,58.352 +377172,242.08,60.066 +377173,238.85,54.789 +377174,239.55,56.575 +377175,240.16,58.321 +377176,240.7,60.029 +377177,237.63,54.772 +377178,238.27,56.55 +377179,238.83,58.289 +377180,239.31,59.99 +377181,236.42,54.757 +377182,237,56.527 +377183,237.5,58.257 +377184,237.93,59.949 +377185,235.21,54.744 +377186,235.73,56.503 +377187,236.17,58.224 +377188,236.55,59.908 +377189,233.99,54.732 +377190,234.45,56.48 +377191,234.84,58.191 +377192,235.16,59.865 +377193,232.78,54.721 +377194,233.18,56.457 +377195,233.51,58.157 +377196,233.77,59.82 +377197,231.57,54.712 +377198,231.9,56.435 +377199,232.17,58.122 +377200,232.39,59.774 +377201,230.36,54.704 +377202,230.63,56.414 +377203,230.84,58.088 +377204,231,59.727 +377205,229.14,54.698 +377206,229.36,56.393 +377207,229.51,58.053 +377208,229.62,59.678 +377209,227.93,54.693 +377210,228.08,56.372 +377211,228.18,58.017 +377212,228.23,59.629 +377213,226.72,54.689 +377214,226.81,56.351 +377215,226.85,57.981 +377216,226.84,59.577 +377217,225.51,54.686 +377218,225.54,56.332 +377219,225.52,57.944 +377220,225.46,59.525 +377221,224.3,54.685 +377222,224.26,56.312 +377223,224.18,57.907 +377224,224.07,59.471 +377225,223.08,54.685 +377226,222.99,56.293 +377227,222.85,57.87 +377228,222.68,59.416 +377229,221.87,54.687 +377230,221.71,56.275 +377231,221.52,57.832 +377232,221.29,59.359 +377233,220.66,54.69 +377234,220.44,56.256 +377235,220.19,57.794 +377236,219.91,59.301 +377237,219.45,54.694 +377238,219.17,56.239 +377239,218.86,57.755 +377240,218.52,59.242 +377241,218.23,54.699 +377242,217.89,56.221 +377243,217.53,57.716 +377244,217.13,59.182 +377245,217.02,54.706 +377246,216.62,56.204 +377247,216.2,57.676 +377248,215.75,59.12 +377249,215.81,54.713 +377250,215.35,56.188 +377251,214.87,57.636 +377252,214.36,59.058 +377253,214.59,54.722 +377254,214.07,56.172 +377255,213.53,57.595 +377256,212.97,58.993 +377257,213.38,54.732 +377258,212.8,56.156 +377259,212.2,57.555 +377260,211.59,58.928 +377261,212.16,54.744 +377262,211.53,56.14 +377263,210.87,57.513 +377264,210.2,58.862 +377265,210.94,54.756 +377266,210.25,56.125 +377267,209.54,57.472 +377268,208.82,58.794 +377269,209.73,54.769 +377270,208.98,56.111 +377271,208.21,57.43 +377272,207.43,58.726 +377273,208.51,54.784 +377274,207.7,56.096 +377275,206.88,57.387 +377276,206.05,58.656 +377277,207.29,54.8 +377278,206.43,56.082 +377279,205.55,57.344 +377280,204.66,58.585 +377281,206.07,54.816 +377282,205.15,56.069 +377283,204.22,57.301 +377284,203.28,58.513 +377285,204.85,54.834 +377286,203.88,56.055 +377287,202.89,57.258 +377288,201.9,58.44 +377289,203.63,54.853 +377290,202.6,56.043 +377291,201.57,57.214 +377292,200.52,58.365 +377293,202.41,54.872 +377294,201.33,56.03 +377295,200.24,57.17 +377296,199.13,58.29 +377297,201.19,54.893 +377298,200.05,56.018 +377299,198.91,57.125 +377300,197.75,58.214 +377301,199.96,54.914 +377302,198.78,56.006 +377303,197.58,57.08 +377304,196.37,58.137 +377305,198.74,54.937 +377306,197.5,55.994 +377307,196.25,57.035 +377308,194.99,58.059 +377309,197.51,54.96 +377310,196.22,55.982 +377311,194.93,56.989 +377312,193.61,57.98 +377313,196.28,54.984 +377314,194.95,55.971 +377315,193.6,56.944 +377316,192.24,57.9 +377317,195.06,55.009 +377318,193.67,55.96 +377319,192.27,56.897 +377320,190.86,57.819 +377321,193.83,55.035 +377322,192.39,55.95 +377323,190.95,56.851 +377324,189.48,57.737 +377325,192.6,55.061 +377326,191.12,55.939 +377327,189.62,56.804 +377328,188.11,57.654 +377329,191.36,55.088 +377330,189.84,55.929 +377331,188.29,56.757 +377332,186.73,57.571 +377333,190.13,55.116 +377334,188.56,55.919 +377335,186.97,56.71 +377336,185.36,57.487 +377337,188.9,55.144 +377338,187.28,55.91 +377339,185.64,56.663 +377340,183.98,57.402 +377341,187.66,55.174 +377342,186,55.9 +377343,184.32,56.615 +377344,182.61,57.316 +377345,186.42,55.203 +377346,184.72,55.891 +377347,183,56.567 +377348,181.24,57.23 +377349,185.18,55.233 +377350,183.44,55.882 +377351,181.67,56.519 +377352,179.87,57.143 +377353,183.94,55.264 +377354,182.16,55.873 +377355,180.35,56.471 +377356,178.51,57.055 +377357,182.7,55.296 +377358,180.88,55.864 +377359,179.03,56.422 +377360,177.14,56.967 +377361,181.46,55.327 +377362,179.6,55.856 +377363,177.71,56.373 +377364,175.77,56.878 +377365,180.21,55.359 +377366,178.32,55.847 +377367,176.38,56.324 +377368,174.41,56.789 +377369,178.97,55.392 +377370,177.04,55.839 +377371,175.06,56.275 +377372,173.05,56.699 +377373,177.72,55.425 +377374,175.75,55.831 +377375,173.74,56.226 +377376,171.68,56.608 +377377,176.47,55.458 +377378,174.47,55.823 +377379,172.42,56.177 +377380,170.32,56.517 +377381,175.22,55.492 +377382,173.19,55.815 +377383,171.1,56.127 +377384,168.97,56.426 +377385,173.97,55.526 +377386,171.9,55.807 +377387,169.79,56.077 +377388,167.61,56.334 +377389,172.71,55.56 +377390,170.62,55.799 +377391,168.47,56.028 +377392,166.25,56.242 +377393,171.46,55.594 +377394,169.33,55.792 +377395,167.15,55.978 +377396,164.9,56.15 +377397,170.2,55.629 +377398,168.05,55.784 +377399,165.83,55.928 +377400,163.55,56.057 +377401,168.94,55.664 +377402,166.76,55.777 +377403,164.52,55.878 +377404,162.19,55.964 +377405,167.68,55.698 +377406,165.48,55.769 +377407,163.2,55.827 +377408,160.85,55.871 +377409,166.42,55.733 +377410,164.19,55.762 +377411,161.89,55.777 +377412,159.5,55.778 +377413,165.15,55.768 +377414,162.9,55.754 +377415,160.57,55.727 +377416,158.15,55.684 +377417,163.88,55.803 +377418,161.61,55.747 +377419,159.26,55.677 +377420,156.81,55.591 +377421,162.62,55.838 +377422,160.32,55.739 +377423,157.94,55.627 +377424,155.46,55.497 +377425,161.35,55.873 +377426,159.04,55.732 +377427,156.63,55.576 +377428,154.12,55.403 +377429,160.07,55.908 +377430,157.75,55.724 +377431,155.32,55.526 +377432,152.79,55.309 +377433,158.8,55.942 +377434,156.46,55.717 +377435,154.01,55.476 +377436,151.45,55.215 +377437,157.53,55.977 +377438,155.16,55.709 +377439,152.7,55.425 +377440,150.11,55.122 +377441,156.25,56.011 +377442,153.87,55.702 +377443,151.39,55.375 +377444,148.78,55.028 +377445,154.97,56.045 +377446,152.58,55.694 +377447,150.08,55.325 +377448,147.45,54.935 +377449,153.69,56.079 +377450,151.29,55.686 +377451,148.77,55.275 +377452,146.12,54.841 +377453,152.41,56.113 +377454,150,55.679 +377455,147.46,55.225 +377456,144.79,54.748 +377457,151.12,56.146 +377458,148.7,55.671 +377459,146.16,55.175 +377460,143.47,54.655 +377461,149.83,56.179 +377462,147.41,55.663 +377463,144.85,55.125 +377464,142.14,54.562 +377465,148.55,56.211 +377466,146.11,55.654 +377467,143.54,55.075 +377468,140.82,54.47 +377469,147.26,56.243 +377470,144.82,55.646 +377471,142.24,55.025 +377472,139.5,54.378 +377473,145.96,56.275 +377474,143.52,55.638 +377475,140.94,54.976 +377476,138.18,54.286 +377477,144.67,56.306 +377478,142.22,55.629 +377479,139.63,54.926 +377480,136.87,54.195 +377481,143.38,56.337 +377482,140.93,55.62 +377483,138.33,54.877 +377484,135.56,54.104 +377485,142.08,56.367 +377486,139.63,55.611 +377487,137.03,54.828 +377488,134.25,54.014 +377489,140.78,56.396 +377490,138.33,55.602 +377491,135.73,54.779 +377492,132.94,53.924 +377493,139.48,56.425 +377494,137.03,55.593 +377495,134.43,54.73 +377496,131.63,53.834 +377497,138.17,56.454 +377498,135.73,55.583 +377499,133.13,54.682 +377500,130.33,53.746 +377501,136.87,56.482 +377502,134.43,55.573 +377503,131.83,54.633 +377504,129.02,53.657 +377505,135.56,56.509 +377506,133.13,55.563 +377507,130.53,54.585 +377508,127.72,53.57 +377509,134.26,56.535 +377510,131.83,55.553 +377511,129.23,54.537 +377512,126.43,53.483 +377513,132.95,56.56 +377514,130.53,55.543 +377515,127.93,54.49 +377516,125.13,53.397 +377517,131.63,56.585 +377518,129.22,55.532 +377519,126.64,54.442 +377520,123.84,53.312 +377521,130.32,56.609 +377522,127.92,55.521 +377523,125.34,54.395 +377524,122.55,53.227 +377525,129.01,56.632 +377526,126.62,55.51 +377527,124.05,54.348 +377528,121.26,53.143 +377529,127.69,56.655 +377530,125.31,55.498 +377531,122.75,54.302 +377532,119.97,53.061 +377533,126.37,56.676 +377534,124.01,55.486 +377535,121.46,54.255 +377536,118.69,52.978 +377537,125.05,56.697 +377538,122.7,55.474 +377539,120.17,54.209 +377540,117.4,52.897 +377541,123.73,56.716 +377542,121.4,55.461 +377543,118.88,54.163 +377544,116.12,52.817 +377545,122.4,56.735 +377546,120.09,55.449 +377547,117.59,54.118 +377548,114.85,52.738 +377549,121.08,56.753 +377550,118.78,55.435 +377551,116.29,54.073 +377552,113.57,52.66 +377553,119.75,56.769 +377554,117.48,55.422 +377555,115.01,54.028 +377556,112.3,52.583 +377557,118.42,56.785 +377558,116.17,55.408 +377559,113.72,53.984 +377560,111.03,52.506 +377561,117.09,56.8 +377562,114.86,55.394 +377563,112.43,53.94 +377564,109.76,52.431 +377565,115.76,56.813 +377566,113.55,55.379 +377567,111.14,53.896 +377568,108.49,52.357 +377569,114.43,56.826 +377570,112.24,55.364 +377571,109.85,53.853 +377572,107.23,52.285 +377573,113.09,56.837 +377574,110.93,55.349 +377575,108.57,53.81 +377576,105.96,52.213 +377577,111.75,56.847 +377578,109.62,55.333 +377579,107.28,53.767 +377580,104.7,52.143 +377581,110.42,56.856 +377582,108.31,55.317 +377583,106,53.725 +377584,103.44,52.074 +377585,109.08,56.864 +377586,106.99,55.301 +377587,104.71,53.683 +377588,102.19,52.006 +377589,107.73,56.871 +377590,105.68,55.284 +377591,103.43,53.642 +377592,100.93,51.939 +377593,106.39,56.876 +377594,104.37,55.266 +377595,102.15,53.601 +377596,99.683,51.874 +377597,105.05,56.88 +377598,103.06,55.248 +377599,100.87,53.561 +377600,98.433,51.809 +377601,103.7,56.883 +377602,101.74,55.23 +377603,99.585,53.52 +377604,97.185,51.747 +377605,102.36,56.885 +377606,100.43,55.212 +377607,98.304,53.481 +377608,95.94,51.685 +377609,101.01,56.885 +377610,99.113,55.193 +377611,97.024,53.442 +377612,94.696,51.625 +377613,99.658,56.884 +377614,97.797,55.173 +377615,95.744,53.403 +377616,93.454,51.567 +377617,98.307,56.882 +377618,96.482,55.153 +377619,94.466,53.365 +377620,92.214,51.51 +377621,96.954,56.878 +377622,95.166,55.133 +377623,93.187,53.327 +377624,90.976,51.454 +377625,95.601,56.873 +377626,93.849,55.112 +377627,91.91,53.29 +377628,89.739,51.4 +377629,94.246,56.867 +377630,92.532,55.09 +377631,90.633,53.253 +377632,88.505,51.347 +377633,92.89,56.859 +377634,91.215,55.069 +377635,89.356,53.216 +377636,87.272,51.295 +377637,91.533,56.85 +377638,89.897,55.046 +377639,88.08,53.18 +377640,86.041,51.246 +377641,90.175,56.84 +377642,88.579,55.023 +377643,86.805,53.145 +377644,84.812,51.197 +377645,88.815,56.828 +377646,87.261,55 +377647,85.53,53.11 +377648,83.584,51.151 +377649,87.455,56.815 +377650,85.942,54.976 +377651,84.256,53.076 +377652,82.358,51.105 +377653,86.093,56.8 +377654,84.622,54.952 +377655,82.982,53.042 +377656,81.133,51.062 +377657,84.731,56.784 +377658,83.303,54.927 +377659,81.709,53.008 +377660,79.91,51.02 +377661,83.367,56.766 +377662,81.983,54.902 +377663,80.436,52.975 +377664,78.689,50.979 +377665,82.002,56.747 +377666,80.663,54.876 +377667,79.164,52.943 +377668,77.469,50.94 +377669,80.637,56.727 +377670,79.342,54.85 +377671,77.892,52.911 +377672,76.25,50.903 +377673,79.27,56.705 +377674,78.022,54.823 +377675,76.621,52.88 +377676,75.033,50.867 +377677,77.903,56.681 +377678,76.701,54.796 +377679,75.35,52.849 +377680,73.817,50.833 +377681,76.534,56.656 +377682,75.379,54.768 +377683,74.079,52.818 +377684,72.602,50.8 +377685,75.165,56.63 +377686,74.058,54.74 +377687,72.809,52.789 +377688,71.389,50.769 +377689,73.795,56.602 +377690,72.736,54.711 +377691,71.539,52.759 +377692,70.176,50.74 +377693,72.424,56.572 +377694,71.414,54.682 +377695,70.27,52.731 +377696,68.965,50.712 +377697,71.053,56.541 +377698,70.091,54.652 +377699,69.001,52.702 +377700,67.755,50.686 +377701,69.68,56.509 +377702,68.769,54.622 +377703,67.733,52.675 +377704,66.545,50.661 +377705,68.308,56.475 +377706,67.446,54.591 +377707,66.464,52.647 +377708,65.337,50.638 +377709,66.934,56.44 +377710,66.123,54.56 +377711,65.196,52.621 +377712,64.129,50.617 +377713,65.56,56.403 +377714,64.8,54.528 +377715,63.929,52.595 +377716,62.923,50.597 +377717,64.185,56.364 +377718,63.477,54.496 +377719,62.661,52.569 +377720,61.717,50.579 +377721,62.81,56.324 +377722,62.154,54.463 +377723,61.394,52.544 +377724,60.512,50.563 +377725,61.434,56.283 +377726,60.83,54.429 +377727,60.128,52.519 +377728,59.307,50.548 +377729,60.058,56.24 +377730,59.507,54.395 +377731,58.861,52.495 +377732,58.103,50.535 +377733,58.681,56.196 +377734,58.183,54.361 +377735,57.595,52.472 +377736,56.9,50.523 +377737,57.304,56.15 +377738,56.859,54.326 +377739,56.329,52.448 +377740,55.697,50.513 +377741,55.926,56.103 +377742,55.535,54.291 +377743,55.063,52.426 +377744,54.494,50.504 +377745,54.548,56.054 +377746,54.211,54.255 +377747,53.797,52.404 +377748,53.292,50.497 +377749,53.17,56.004 +377750,52.887,54.219 +377751,52.532,52.382 +377752,52.09,50.491 +377753,51.792,55.952 +377754,51.563,54.182 +377755,51.266,52.361 +377756,50.889,50.487 +377757,50.413,55.899 +377758,50.239,54.144 +377759,50.001,52.341 +377760,49.687,50.485 +377761,49.034,55.844 +377762,48.915,54.107 +377763,48.736,52.321 +377764,48.486,50.484 +377765,47.655,55.788 +377766,47.591,54.068 +377767,47.471,52.301 +377768,47.285,50.484 +377769,46.276,55.731 +377770,46.267,54.029 +377771,46.206,52.282 +377772,46.084,50.486 +377773,44.897,55.672 +377774,44.943,53.99 +377775,44.941,52.264 +377776,44.883,50.49 +377777,43.517,55.612 +377778,43.619,53.95 +377779,43.676,52.245 +377780,43.682,50.495 +377781,42.138,55.55 +377782,42.295,53.91 +377783,42.412,52.228 +377784,42.48,50.501 +377785,40.759,55.487 +377786,40.972,53.87 +377787,41.147,52.211 +377788,41.279,50.508 +377789,39.379,55.423 +377790,39.648,53.828 +377791,39.882,52.194 +377792,40.077,50.517 +377793,38,55.357 +377794,38.324,53.787 +377795,38.617,52.178 +377796,38.875,50.528 +377797,36.621,55.29 +377798,37.001,53.745 +377799,37.353,52.162 +377800,37.673,50.54 +377801,35.242,55.222 +377802,35.678,53.702 +377803,36.088,52.146 +377804,36.47,50.553 +377805,33.864,55.152 +377806,34.354,53.66 +377807,34.823,52.131 +377808,35.267,50.567 +377809,32.485,55.081 +377810,33.031,53.616 +377811,33.558,52.117 +377812,34.063,50.582 +377813,31.107,55.009 +377814,31.709,53.573 +377815,32.293,52.103 +377816,32.858,50.599 +377817,29.729,54.936 +377818,30.386,53.528 +377819,31.028,52.089 +377820,31.654,50.617 +377821,28.352,54.861 +377822,29.064,53.484 +377823,29.763,52.076 +377824,30.448,50.637 +377825,26.975,54.785 +377826,27.741,53.439 +377827,28.497,52.063 +377828,29.242,50.657 +377829,25.598,54.708 +377830,26.419,53.394 +377831,27.232,52.05 +377832,28.034,50.679 +377833,24.222,54.63 +377834,25.098,53.348 +377835,25.966,52.038 +377836,26.827,50.701 +377837,22.846,54.551 +377838,23.776,53.302 +377839,24.7,52.027 +377840,25.618,50.725 +377841,21.471,54.471 +377842,22.455,53.256 +377843,23.434,52.015 +377844,24.408,50.75 +377845,20.096,54.389 +377846,21.134,53.209 +377847,22.168,52.004 +377848,23.198,50.776 +377849,18.722,54.307 +377850,19.814,53.162 +377851,20.901,51.993 +377852,21.986,50.802 +377853,17.349,54.223 +377854,18.493,53.114 +377855,19.635,51.983 +377856,20.773,50.83 +377857,15.976,54.138 +377858,17.173,53.067 +377859,18.368,51.973 +377860,19.56,50.859 +377861,14.604,54.053 +377862,15.854,53.018 +377863,17.1,51.963 +377864,18.345,50.888 +377865,13.233,53.966 +377866,14.535,52.97 +377867,15.833,51.954 +377868,17.129,50.919 +377869,11.863,53.879 +377870,13.216,52.921 +377871,14.565,51.945 +377872,15.912,50.95 +377873,10.493,53.79 +377874,11.897,52.872 +377875,13.297,51.936 +377876,14.694,50.982 +377877,9.1249,53.701 +377878,10.579,52.823 +377879,12.029,51.927 +377880,13.474,51.015 +377881,7.7572,53.611 +377882,9.2616,52.774 +377883,10.76,51.919 +377884,12.253,51.049 +377885,6.3905,53.52 +377886,7.9444,52.724 +377887,9.4907,51.911 +377888,11.031,51.083 +377889,5.0248,53.428 +377890,6.6277,52.674 +377891,8.2213,51.903 +377892,9.8071,51.119 +377893,3.6601,53.336 +377894,5.3113,52.624 +377895,6.9514,51.896 +377896,8.5821,51.154 +377897,2.2966,53.243 +377898,3.9955,52.573 +377899,5.6813,51.888 +377900,7.3556,51.191 +377901,0.93408,53.149 +377902,2.6801,52.522 +377903,4.4107,51.881 +377904,6.1277,51.227 +377905,359.57,53.054 +377906,1.3652,52.471 +377907,3.1397,51.874 +377908,4.8983,51.265 +377909,358.21,52.959 +377910,0.05085,52.42 +377911,1.8683,51.868 +377912,3.6673,51.303 +377913,356.85,52.863 +377914,358.74,52.369 +377915,0.59651,51.861 +377916,2.4348,51.341 +377917,355.5,52.766 +377918,357.42,52.317 +377919,359.32,51.855 +377920,1.2008,51.38 +377921,354.14,52.669 +377922,356.11,52.266 +377923,358.05,51.849 +377924,359.97,51.419 +377925,352.78,52.572 +377926,354.8,52.214 +377927,356.78,51.843 +377928,358.73,51.459 +377929,351.43,52.474 +377930,353.49,52.162 +377931,355.5,51.837 +377932,357.49,51.499 +377933,350.08,52.376 +377934,352.18,52.11 +377935,354.23,51.831 +377936,356.25,51.539 +377937,348.73,52.277 +377938,350.87,52.058 +377939,352.96,51.825 +377940,355.01,51.58 +377941,347.38,52.178 +377942,349.56,52.006 +377943,351.68,51.819 +377944,353.76,51.62 +377945,346.03,52.078 +377946,348.25,51.953 +377947,350.41,51.814 +377948,352.52,51.661 +377949,344.68,51.978 +377950,346.94,51.901 +377951,349.13,51.808 +377952,351.27,51.702 +377953,343.34,51.878 +377954,345.63,51.849 +377955,347.85,51.803 +377956,350.02,51.744 +377957,342,51.778 +377958,344.32,51.796 +377959,346.58,51.798 +377960,348.77,51.785 +377961,340.66,51.678 +377962,343.01,51.744 +377963,345.3,51.792 +377964,347.52,51.826 +377965,339.32,51.577 +377966,341.71,51.691 +377967,344.02,51.787 +377968,346.26,51.867 +377969,337.98,51.476 +377970,340.4,51.638 +377971,342.74,51.782 +377972,345.01,51.909 +377973,336.64,51.376 +377974,339.1,51.586 +377975,341.46,51.776 +377976,343.75,51.95 +377977,335.31,51.275 +377978,337.79,51.533 +377979,340.18,51.771 +377980,342.49,51.991 +377981,333.97,51.174 +377982,336.49,51.481 +377983,338.9,51.766 +377984,341.23,52.032 +377985,332.64,51.073 +377986,335.19,51.428 +377987,337.62,51.76 +377988,339.96,52.073 +377989,331.31,50.973 +377990,333.89,51.376 +377991,336.34,51.755 +377992,338.7,52.113 +377993,329.99,50.872 +377994,332.58,51.323 +377995,335.06,51.749 +377996,337.43,52.153 +377997,328.66,50.772 +377998,331.28,51.271 +377999,333.78,51.744 +378000,336.16,52.194 +378001,327.34,50.672 +378002,329.98,51.219 +378003,332.49,51.738 +378004,334.89,52.233 +378005,326.02,50.572 +378006,328.68,51.167 +378007,331.21,51.732 +378008,333.62,52.273 +378009,324.7,50.472 +378010,327.39,51.115 +378011,329.93,51.727 +378012,332.34,52.312 +378013,323.38,50.373 +378014,326.09,51.063 +378015,328.64,51.721 +378016,331.06,52.35 +378017,322.07,50.274 +378018,324.79,51.011 +378019,327.36,51.715 +378020,329.79,52.388 +378021,320.75,50.175 +378022,323.49,50.959 +378023,326.07,51.708 +378024,328.51,52.426 +378025,319.44,50.077 +378026,322.2,50.908 +378027,324.78,51.702 +378028,327.22,52.463 +378029,318.13,49.98 +378030,320.9,50.857 +378031,323.5,51.695 +378032,325.94,52.5 +378033,316.83,49.882 +378034,319.61,50.806 +378035,322.21,51.689 +378036,324.65,52.536 +378037,315.52,49.786 +378038,318.32,50.755 +378039,320.92,51.682 +378040,323.37,52.571 +378041,314.22,49.69 +378042,317.02,50.704 +378043,319.63,51.674 +378044,322.08,52.606 +378045,312.92,49.595 +378046,315.73,50.654 +378047,318.34,51.667 +378048,320.79,52.64 +378049,311.62,49.5 +378050,314.44,50.604 +378051,317.05,51.66 +378052,319.49,52.673 +378053,310.33,49.406 +378054,313.15,50.554 +378055,315.76,51.652 +378056,318.2,52.706 +378057,309.03,49.313 +378058,311.86,50.504 +378059,314.47,51.644 +378060,316.9,52.738 +378061,307.74,49.22 +378062,310.57,50.455 +378063,313.18,51.635 +378064,315.6,52.769 +378065,306.45,49.129 +378066,309.28,50.406 +378067,311.89,51.627 +378068,314.3,52.799 +378069,305.17,49.038 +378070,308,50.357 +378071,310.59,51.618 +378072,313,52.828 +378073,303.88,48.948 +378074,306.71,50.308 +378075,309.3,51.609 +378076,311.7,52.857 +378077,302.6,48.859 +378078,305.42,50.26 +378079,308.01,51.599 +378080,310.39,52.884 +378081,301.32,48.772 +378082,304.14,50.212 +378083,306.71,51.59 +378084,309.08,52.911 +378085,300.04,48.685 +378086,302.86,50.165 +378087,305.42,51.579 +378088,307.77,52.936 +378089,298.77,48.599 +378090,301.57,50.118 +378091,304.12,51.569 +378092,306.46,52.961 +378093,297.5,48.514 +378094,300.29,50.071 +378095,302.82,51.558 +378096,305.15,52.985 +378097,296.23,48.43 +378098,299.01,50.025 +378099,301.53,51.547 +378100,303.84,53.007 +378101,294.96,48.348 +378102,297.73,49.979 +378103,300.23,51.536 +378104,302.52,53.029 +378105,293.69,48.267 +378106,296.45,49.933 +378107,298.93,51.524 +378108,301.2,53.049 +378109,292.43,48.187 +378110,295.17,49.888 +378111,297.63,51.512 +378112,299.88,53.068 +378113,291.17,48.108 +378114,293.89,49.843 +378115,296.33,51.499 +378116,298.56,53.086 +378117,289.91,48.03 +378118,292.61,49.799 +378119,295.03,51.486 +378120,297.24,53.103 +378121,288.65,47.954 +378122,291.33,49.755 +378123,293.73,51.473 +378124,295.92,53.119 +378125,287.4,47.879 +378126,290.06,49.712 +378127,292.43,51.459 +378128,294.59,53.133 +378129,286.14,47.805 +378130,288.78,49.669 +378131,291.13,51.445 +378132,293.26,53.146 +378133,284.89,47.733 +378134,287.5,49.626 +378135,289.83,51.43 +378136,291.93,53.158 +378137,283.65,47.663 +378138,286.23,49.584 +378139,288.53,51.415 +378140,290.6,53.169 +378141,282.4,47.593 +378142,284.96,49.542 +378143,287.23,51.4 +378144,289.27,53.178 +378145,281.16,47.526 +378146,283.68,49.501 +378147,285.92,51.384 +378148,287.94,53.186 +378149,279.92,47.459 +378150,282.41,49.461 +378151,284.62,51.368 +378152,286.61,53.193 +378153,278.68,47.395 +378154,281.14,49.421 +378155,283.32,51.351 +378156,285.27,53.198 +378157,277.44,47.331 +378158,279.87,49.381 +378159,282.01,51.334 +378160,283.93,53.202 +378161,276.21,47.27 +378162,278.6,49.342 +378163,280.71,51.316 +378164,282.6,53.205 +378165,274.97,47.21 +378166,277.33,49.303 +378167,279.4,51.298 +378168,281.26,53.206 +378169,273.74,47.151 +378170,276.06,49.265 +378171,278.1,51.279 +378172,279.91,53.206 +378173,272.51,47.095 +378174,274.79,49.228 +378175,276.79,51.26 +378176,278.57,53.204 +378177,271.29,47.04 +378178,273.52,49.191 +378179,275.48,51.24 +378180,277.23,53.201 +378181,270.06,46.986 +378182,272.26,49.155 +378183,274.18,51.22 +378184,275.88,53.196 +378185,268.84,46.935 +378186,270.99,49.119 +378187,272.87,51.199 +378188,274.54,53.19 +378189,267.62,46.885 +378190,269.72,49.083 +378191,271.56,51.178 +378192,273.19,53.182 +378193,266.4,46.836 +378194,268.46,49.049 +378195,270.25,51.156 +378196,271.84,53.173 +378197,265.18,46.79 +378198,267.19,49.015 +378199,268.95,51.134 +378200,270.49,53.162 +378201,263.96,46.745 +378202,265.93,48.981 +378203,267.64,51.111 +378204,269.14,53.15 +378205,262.75,46.702 +378206,264.66,48.948 +378207,266.33,51.088 +378208,267.79,53.136 +378209,261.54,46.661 +378210,263.4,48.916 +378211,265.02,51.064 +378212,266.44,53.121 +378213,260.33,46.622 +378214,262.14,48.884 +378215,263.71,51.04 +378216,265.09,53.104 +378217,259.12,46.584 +378218,260.88,48.853 +378219,262.4,51.015 +378220,263.73,53.085 +378221,257.91,46.548 +378222,259.62,48.822 +378223,261.09,50.99 +378224,262.38,53.065 +378225,256.7,46.514 +378226,258.35,48.792 +378227,259.78,50.964 +378228,261.02,53.044 +378229,255.5,46.482 +378230,257.09,48.762 +378231,258.47,50.937 +378232,259.67,53.021 +378233,254.29,46.452 +378234,255.83,48.734 +378235,257.16,50.91 +378236,258.31,52.996 +378237,253.09,46.423 +378238,254.57,48.705 +378239,255.84,50.883 +378240,256.95,52.969 +378241,251.89,46.397 +378242,253.31,48.678 +378243,254.53,50.855 +378244,255.59,52.941 +378245,250.69,46.372 +378246,252.06,48.651 +378247,253.22,50.826 +378248,254.23,52.912 +378249,249.49,46.349 +378250,250.8,48.624 +378251,251.91,50.797 +378252,252.87,52.881 +378253,248.29,46.328 +378254,249.54,48.598 +378255,250.6,50.768 +378256,251.51,52.848 +378257,247.1,46.309 +378258,248.28,48.573 +378259,249.28,50.737 +378260,250.15,52.813 +378261,245.9,46.291 +378262,247.02,48.548 +378263,247.97,50.707 +378264,248.78,52.777 +378265,244.71,46.275 +378266,245.77,48.524 +378267,246.66,50.675 +378268,247.42,52.74 +378269,243.51,46.262 +378270,244.51,48.501 +378271,245.35,50.644 +378272,246.06,52.701 +378273,242.32,46.25 +378274,243.25,48.478 +378275,244.03,50.611 +378276,244.69,52.66 +378277,241.12,46.239 +378278,242,48.456 +378279,242.72,50.578 +378280,243.33,52.617 +378281,239.93,46.231 +378282,240.74,48.434 +378283,241.41,50.545 +378284,241.96,52.573 +378285,238.74,46.224 +378286,239.48,48.413 +378287,240.1,50.511 +378288,240.6,52.528 +378289,237.55,46.219 +378290,238.23,48.392 +378291,238.78,50.476 +378292,239.23,52.481 +378293,236.36,46.216 +378294,236.97,48.373 +378295,237.47,50.441 +378296,237.87,52.432 +378297,235.17,46.215 +378298,235.72,48.353 +378299,236.16,50.406 +378300,236.5,52.382 +378301,233.98,46.215 +378302,234.46,48.334 +378303,234.84,50.37 +378304,235.13,52.33 +378305,232.79,46.217 +378306,233.21,48.316 +378307,233.53,50.333 +378308,233.77,52.276 +378309,231.6,46.221 +378310,231.96,48.299 +378311,232.22,50.296 +378312,232.4,52.221 +378313,230.41,46.226 +378314,230.7,48.282 +378315,230.9,50.259 +378316,231.03,52.165 +378317,229.22,46.233 +378318,229.45,48.265 +378319,229.59,50.22 +378320,229.66,52.107 +378321,228.03,46.242 +378322,228.19,48.249 +378323,228.28,50.182 +378324,228.3,52.047 +378325,226.85,46.253 +378326,226.94,48.234 +378327,226.96,50.143 +378328,226.93,51.986 +378329,225.66,46.265 +378330,225.68,48.219 +378331,225.65,50.103 +378332,225.56,51.923 +378333,224.47,46.278 +378334,224.43,48.205 +378335,224.34,50.063 +378336,224.19,51.859 +378337,223.28,46.293 +378338,223.18,48.191 +378339,223.02,50.023 +378340,222.83,51.794 +378341,222.09,46.31 +378342,221.92,48.178 +378343,221.71,49.982 +378344,221.46,51.727 +378345,220.9,46.328 +378346,220.67,48.165 +378347,220.4,49.94 +378348,220.09,51.658 +378349,219.71,46.348 +378350,219.41,48.153 +378351,219.09,49.898 +378352,218.73,51.589 +378353,218.52,46.369 +378354,218.16,48.141 +378355,217.77,49.856 +378356,217.36,51.517 +378357,217.33,46.392 +378358,216.91,48.13 +378359,216.46,49.813 +378360,215.99,51.445 +378361,216.13,46.416 +378362,215.65,48.119 +378363,215.15,49.77 +378364,214.63,51.371 +378365,214.94,46.441 +378366,214.4,48.109 +378367,213.84,49.726 +378368,213.26,51.295 +378369,213.75,46.468 +378370,213.14,48.099 +378371,212.53,49.682 +378372,211.89,51.219 +378373,212.55,46.496 +378374,211.89,48.09 +378375,211.21,49.637 +378376,210.53,51.141 +378377,211.36,46.525 +378378,210.63,48.081 +378379,209.9,49.592 +378380,209.16,51.062 +378381,210.16,46.555 +378382,209.38,48.072 +378383,208.59,49.547 +378384,207.8,50.981 +378385,208.97,46.587 +378386,208.13,48.064 +378387,207.28,49.501 +378388,206.44,50.899 +378389,207.77,46.62 +378390,206.87,48.057 +378391,205.97,49.455 +378392,205.07,50.817 +378393,206.57,46.654 +378394,205.62,48.05 +378395,204.66,49.409 +378396,203.71,50.732 +378397,205.37,46.69 +378398,204.36,48.043 +378399,203.35,49.362 +378400,202.35,50.647 +378401,204.17,46.726 +378402,203.1,48.037 +378403,202.04,49.315 +378404,200.99,50.561 +378405,202.97,46.763 +378406,201.85,48.031 +378407,200.73,49.267 +378408,199.62,50.473 +378409,201.77,46.802 +378410,200.59,48.025 +378411,199.42,49.219 +378412,198.26,50.384 +378413,200.56,46.841 +378414,199.34,48.02 +378415,198.12,49.171 +378416,196.91,50.295 +378417,199.36,46.882 +378418,198.08,48.015 +378419,196.81,49.122 +378420,195.55,50.204 +378421,198.15,46.923 +378422,196.82,48.01 +378423,195.5,49.074 +378424,194.19,50.112 +378425,196.95,46.965 +378426,195.57,48.006 +378427,194.19,49.024 +378428,192.83,50.019 +378429,195.74,47.008 +378430,194.31,48.002 +378431,192.89,48.975 +378432,191.48,49.926 +378433,194.53,47.052 +378434,193.05,47.999 +378435,191.58,48.925 +378436,190.12,49.831 +378437,193.32,47.096 +378438,191.79,47.995 +378439,190.28,48.876 +378440,188.77,49.736 +378441,192.1,47.142 +378442,190.53,47.992 +378443,188.97,48.825 +378444,187.41,49.639 +378445,190.89,47.188 +378446,189.27,47.99 +378447,187.67,48.775 +378448,186.06,49.542 +378449,189.67,47.234 +378450,188.01,47.987 +378451,186.36,48.724 +378452,184.71,49.444 +378453,188.45,47.282 +378454,186.75,47.985 +378455,185.06,48.673 +378456,183.36,49.346 +378457,187.23,47.329 +378458,185.49,47.983 +378459,183.75,48.622 +378460,182.01,49.246 +378461,186.01,47.378 +378462,184.23,47.981 +378463,182.45,48.571 +378464,180.67,49.146 +378465,184.79,47.426 +378466,182.97,47.98 +378467,181.15,48.52 +378468,179.32,49.045 +378469,183.57,47.476 +378470,181.71,47.978 +378471,179.85,48.468 +378472,177.97,48.944 +378473,182.34,47.525 +378474,180.45,47.977 +378475,178.55,48.417 +378476,176.63,48.842 +378477,181.11,47.576 +378478,179.19,47.976 +378479,177.25,48.365 +378480,175.29,48.74 +378481,179.89,47.626 +378482,177.92,47.975 +378483,175.95,48.313 +378484,173.95,48.637 +378485,178.65,47.677 +378486,176.66,47.975 +378487,174.65,48.261 +378488,172.61,48.533 +378489,177.42,47.728 +378490,175.4,47.974 +378491,173.35,48.209 +378492,171.27,48.429 +378493,176.19,47.779 +378494,174.13,47.974 +378495,172.05,48.156 +378496,169.93,48.325 +378497,174.95,47.83 +378498,172.87,47.973 +378499,170.75,48.104 +378500,168.6,48.22 +378501,173.71,47.882 +378502,171.6,47.973 +378503,169.46,48.052 +378504,167.27,48.115 +378505,172.47,47.933 +378506,170.34,47.973 +378507,168.16,47.999 +378508,165.93,48.01 +378509,171.23,47.985 +378510,169.07,47.973 +378511,166.86,47.947 +378512,164.6,47.905 +378513,169.99,48.036 +378514,167.81,47.973 +378515,165.57,47.894 +378516,163.27,47.799 +378517,168.74,48.088 +378518,166.54,47.973 +378519,164.27,47.842 +378520,161.95,47.693 +378521,167.5,48.14 +378522,165.27,47.973 +378523,162.98,47.789 +378524,160.62,47.587 +378525,166.25,48.191 +378526,164,47.973 +378527,161.69,47.737 +378528,159.3,47.481 +378529,165,48.242 +378530,162.73,47.973 +378531,160.4,47.685 +378532,157.98,47.375 +378533,163.74,48.293 +378534,161.46,47.973 +378535,159.1,47.632 +378536,156.66,47.27 +378537,162.49,48.344 +378538,160.19,47.973 +378539,157.81,47.58 +378540,155.34,47.164 +378541,161.23,48.395 +378542,158.92,47.973 +378543,156.52,47.528 +378544,154.02,47.058 +378545,159.97,48.445 +378546,157.65,47.973 +378547,155.23,47.476 +378548,152.71,46.952 +378549,158.71,48.495 +378550,156.38,47.972 +378551,153.95,47.424 +378552,151.4,46.847 +378553,157.45,48.545 +378554,155.11,47.972 +378555,152.66,47.372 +378556,150.09,46.741 +378557,156.19,48.594 +378558,153.84,47.972 +378559,151.37,47.32 +378560,148.78,46.636 +378561,154.92,48.643 +378562,152.56,47.971 +378563,150.08,47.269 +378564,147.47,46.532 +378565,153.65,48.692 +378566,151.29,47.971 +378567,148.8,47.217 +378568,146.17,46.428 +378569,152.39,48.739 +378570,150.01,47.97 +378571,147.51,47.166 +378572,144.87,46.324 +378573,151.11,48.787 +378574,148.74,47.969 +378575,146.23,47.115 +378576,143.57,46.22 +378577,149.84,48.833 +378578,147.46,47.968 +378579,144.95,47.064 +378580,142.27,46.117 +378581,148.56,48.88 +378582,146.19,47.967 +378583,143.66,47.014 +378584,140.97,46.015 +378585,147.29,48.925 +378586,144.91,47.966 +378587,142.38,46.964 +378588,139.68,45.913 +378589,146.01,48.97 +378590,143.63,47.964 +378591,141.1,46.914 +378592,138.39,45.812 +378593,144.73,49.014 +378594,142.35,47.962 +378595,139.82,46.864 +378596,137.1,45.711 +378597,143.45,49.057 +378598,141.08,47.96 +378599,138.54,46.814 +378600,135.81,45.612 +378601,142.16,49.099 +378602,139.8,47.958 +378603,137.26,46.765 +378604,134.52,45.513 +378605,140.88,49.141 +378606,138.52,47.956 +378607,135.98,46.716 +378608,133.24,45.414 +378609,139.59,49.182 +378610,137.24,47.953 +378611,134.71,46.667 +378612,131.96,45.317 +378613,138.3,49.222 +378614,135.96,47.95 +378615,133.43,46.619 +378616,130.68,45.221 +378617,137.01,49.261 +378618,134.67,47.947 +378619,132.16,46.571 +378620,129.41,45.125 +378621,135.71,49.299 +378622,133.39,47.943 +378623,130.88,46.524 +378624,128.13,45.03 +378625,134.42,49.336 +378626,132.11,47.94 +378627,129.61,46.476 +378628,126.86,44.937 +378629,133.12,49.372 +378630,130.83,47.935 +378631,128.33,46.43 +378632,125.59,44.844 +378633,131.82,49.407 +378634,129.54,47.931 +378635,127.06,46.383 +378636,124.33,44.753 +378637,130.52,49.441 +378638,128.26,47.926 +378639,125.79,46.337 +378640,123.06,44.663 +378641,129.22,49.473 +378642,126.97,47.921 +378643,124.52,46.292 +378644,121.8,44.573 +378645,127.92,49.505 +378646,125.69,47.916 +378647,123.25,46.247 +378648,120.54,44.486 +378649,126.61,49.536 +378650,124.4,47.91 +378651,121.98,46.202 +378652,119.28,44.399 +378653,125.31,49.565 +378654,123.12,47.903 +378655,120.71,46.158 +378656,118.03,44.314 +378657,124,49.593 +378658,121.83,47.897 +378659,119.44,46.114 +378660,116.78,44.23 +378661,122.69,49.62 +378662,120.54,47.89 +378663,118.18,46.07 +378664,115.53,44.147 +378665,121.38,49.646 +378666,119.25,47.882 +378667,116.91,46.028 +378668,114.28,44.066 +378669,120.06,49.67 +378670,117.97,47.875 +378671,115.64,45.985 +378672,113.03,43.986 +378673,118.75,49.693 +378674,116.68,47.866 +378675,114.38,45.944 +378676,111.79,43.908 +378677,117.43,49.715 +378678,115.39,47.858 +378679,113.11,45.902 +378680,110.55,43.831 +378681,116.12,49.735 +378682,114.1,47.849 +378683,111.85,45.861 +378684,109.31,43.756 +378685,114.8,49.754 +378686,112.81,47.839 +378687,110.59,45.821 +378688,108.07,43.682 +378689,113.48,49.772 +378690,111.52,47.829 +378691,109.33,45.782 +378692,106.84,43.61 +378693,112.16,49.788 +378694,110.23,47.819 +378695,108.07,45.742 +378696,105.6,43.54 +378697,110.83,49.803 +378698,108.93,47.808 +378699,106.81,45.704 +378700,104.37,43.471 +378701,109.51,49.817 +378702,107.64,47.797 +378703,105.55,45.666 +378704,103.15,43.405 +378705,108.18,49.828 +378706,106.35,47.785 +378707,104.29,45.629 +378708,101.92,43.339 +378709,106.86,49.839 +378710,105.06,47.772 +378711,103.03,45.592 +378712,100.7,43.276 +378713,105.53,49.848 +378714,103.76,47.76 +378715,101.77,45.556 +378716,99.475,43.214 +378717,104.2,49.855 +378718,102.47,47.746 +378719,100.51,45.52 +378720,98.255,43.155 +378721,102.87,49.861 +378722,101.18,47.732 +378723,99.256,45.485 +378724,97.038,43.097 +378725,101.54,49.865 +378726,99.881,47.718 +378727,98,45.451 +378728,95.823,43.041 +378729,100.2,49.868 +378730,98.586,47.703 +378731,96.745,45.417 +378732,94.609,42.986 +378733,98.871,49.869 +378734,97.291,47.688 +378735,95.49,45.384 +378736,93.397,42.934 +378737,97.536,49.869 +378738,95.996,47.672 +378739,94.236,45.352 +378740,92.188,42.884 +378741,96.2,49.867 +378742,94.7,47.656 +378743,92.983,45.32 +378744,90.98,42.836 +378745,94.863,49.863 +378746,93.403,47.639 +378747,91.73,45.289 +378748,89.774,42.789 +378749,93.525,49.858 +378750,92.107,47.621 +378751,90.478,45.258 +378752,88.57,42.745 +378753,92.187,49.851 +378754,90.81,47.603 +378755,89.226,45.228 +378756,87.367,42.702 +378757,90.847,49.842 +378758,89.513,47.584 +378759,87.975,45.199 +378760,86.166,42.662 +378761,89.506,49.832 +378762,88.215,47.565 +378763,86.724,45.171 +378764,84.967,42.624 +378765,88.165,49.82 +378766,86.918,47.546 +378767,85.474,45.143 +378768,83.769,42.587 +378769,86.822,49.806 +378770,85.62,47.525 +378771,84.224,45.116 +378772,82.573,42.553 +378773,85.479,49.791 +378774,84.321,47.505 +378775,82.975,45.089 +378776,81.378,42.521 +378777,84.135,49.774 +378778,83.023,47.483 +378779,81.726,45.064 +378780,80.185,42.491 +378781,82.791,49.755 +378782,81.724,47.461 +378783,80.478,45.039 +378784,78.993,42.463 +378785,81.445,49.735 +378786,80.425,47.439 +378787,79.23,45.014 +378788,77.802,42.437 +378789,80.099,49.713 +378790,79.126,47.416 +378791,77.983,44.991 +378792,76.613,42.413 +378793,78.753,49.689 +378794,77.827,47.392 +378795,76.736,44.968 +378796,75.424,42.391 +378797,77.405,49.664 +378798,76.528,47.368 +378799,75.489,44.945 +378800,74.237,42.372 +378801,76.058,49.637 +378802,75.228,47.343 +378803,74.243,44.924 +378804,73.051,42.354 +378805,74.709,49.608 +378806,73.928,47.318 +378807,72.997,44.903 +378808,71.866,42.339 +378809,73.361,49.577 +378810,72.628,47.292 +378811,71.751,44.882 +378812,70.682,42.325 +378813,72.011,49.545 +378814,71.328,47.266 +378815,70.506,44.863 +378816,69.498,42.314 +378817,70.661,49.511 +378818,70.028,47.239 +378819,69.261,44.844 +378820,68.316,42.305 +378821,69.311,49.475 +378822,68.728,47.211 +378823,68.016,44.826 +378824,67.134,42.298 +378825,67.961,49.438 +378826,67.428,47.183 +378827,66.772,44.808 +378828,65.953,42.293 +378829,66.61,49.398 +378830,66.128,47.154 +378831,65.527,44.792 +378832,64.773,42.289 +378833,65.259,49.358 +378834,64.827,47.125 +378835,64.283,44.775 +378836,63.593,42.288 +378837,63.908,49.315 +378838,63.527,47.095 +378839,63.04,44.76 +378840,62.413,42.289 +378841,62.556,49.271 +378842,62.226,47.065 +378843,61.796,44.745 +378844,61.234,42.292 +378845,61.204,49.225 +378846,60.926,47.034 +378847,60.553,44.731 +378848,60.056,42.298 +378849,59.852,49.178 +378850,59.626,47.003 +378851,59.31,44.718 +378852,58.877,42.305 +378853,58.5,49.128 +378854,58.325,46.971 +378855,58.067,44.705 +378856,57.699,42.313 +378857,57.148,49.077 +378858,57.025,46.938 +378859,56.824,44.693 +378860,56.521,42.324 +378861,55.796,49.025 +378862,55.725,46.905 +378863,55.581,44.681 +378864,55.343,42.337 +378865,54.444,48.971 +378866,54.425,46.872 +378867,54.338,44.671 +378868,54.166,42.352 +378869,53.091,48.915 +378870,53.124,46.838 +378871,53.096,44.66 +378872,52.988,42.369 +378873,51.739,48.858 +378874,51.824,46.803 +378875,51.853,44.651 +378876,51.81,42.387 +378877,50.387,48.799 +378878,50.524,46.768 +378879,50.611,44.642 +378880,50.631,42.408 +378881,49.035,48.738 +378882,49.225,46.732 +378883,49.368,44.634 +378884,49.453,42.43 +378885,47.684,48.676 +378886,47.925,46.696 +378887,48.126,44.626 +378888,48.274,42.454 +378889,46.332,48.612 +378890,46.626,46.66 +378891,46.883,44.619 +378892,47.095,42.479 +378893,44.981,48.547 +378894,45.326,46.622 +378895,45.641,44.613 +378896,45.916,42.507 +378897,43.63,48.48 +378898,44.027,46.585 +378899,44.398,44.607 +378900,44.736,42.536 +378901,42.279,48.412 +378902,42.728,46.547 +378903,43.155,44.602 +378904,43.555,42.567 +378905,40.928,48.342 +378906,41.429,46.508 +378907,41.913,44.597 +378908,42.374,42.599 +378909,39.578,48.271 +378910,40.131,46.469 +378911,40.67,44.593 +378912,41.192,42.633 +378913,38.229,48.198 +378914,38.832,46.43 +378915,39.427,44.589 +378916,40.01,42.669 +378917,36.88,48.124 +378918,37.534,46.39 +378919,38.184,44.586 +378920,38.826,42.706 +378921,35.531,48.049 +378922,36.237,46.35 +378923,36.941,44.584 +378924,37.642,42.745 +378925,34.183,47.972 +378926,34.939,46.309 +378927,35.697,44.582 +378928,36.457,42.785 +378929,32.835,47.894 +378930,33.642,46.268 +378931,34.454,44.581 +378932,35.271,42.826 +378933,31.488,47.814 +378934,32.345,46.226 +378935,33.21,44.58 +378936,34.084,42.869 +378937,30.142,47.733 +378938,31.049,46.184 +378939,31.966,44.579 +378940,32.896,42.914 +378941,28.796,47.651 +378942,29.752,46.142 +378943,30.722,44.579 +378944,31.707,42.959 +378945,27.451,47.567 +378946,28.456,46.099 +378947,29.478,44.58 +378948,30.517,43.006 +378949,26.107,47.483 +378950,27.161,46.056 +378951,28.233,44.581 +378952,29.326,43.055 +378953,24.763,47.397 +378954,25.866,46.013 +378955,26.988,44.583 +378956,28.133,43.104 +378957,23.42,47.31 +378958,24.571,45.969 +378959,25.743,44.585 +378960,26.939,43.155 +378961,22.079,47.221 +378962,23.277,45.925 +378963,24.498,44.587 +378964,25.744,43.206 +378965,20.738,47.132 +378966,21.983,45.88 +378967,23.252,44.59 +378968,24.548,43.259 +378969,19.397,47.041 +378970,20.689,45.835 +378971,22.006,44.593 +378972,23.35,43.313 +378973,18.058,46.95 +378974,19.396,45.79 +378975,20.759,44.597 +378976,22.15,43.368 +378977,16.72,46.857 +378978,18.103,45.745 +378979,19.512,44.601 +378980,20.95,43.424 +378981,15.383,46.763 +378982,16.811,45.699 +378983,18.265,44.605 +378984,19.747,43.48 +378985,14.047,46.669 +378986,15.52,45.653 +378987,17.018,44.61 +378988,18.544,43.538 +378989,12.712,46.573 +378990,14.228,45.607 +378991,15.77,44.615 +378992,17.338,43.596 +378993,11.378,46.476 +378994,12.938,45.561 +378995,14.521,44.62 +378996,16.131,43.656 +378997,10.045,46.379 +378998,11.648,45.514 +378999,13.273,44.626 +379000,14.923,43.716 +379001,8.7139,46.281 +379002,10.358,45.467 +379003,12.024,44.632 +379004,13.713,43.776 +379005,7.3836,46.182 +379006,9.0688,45.42 +379007,10.774,44.639 +379008,12.501,43.838 +379009,6.0545,46.082 +379010,7.7803,45.373 +379011,9.524,44.645 +379012,11.287,43.9 +379013,4.7268,45.981 +379014,6.4923,45.325 +379015,8.2735,44.652 +379016,10.072,43.962 +379017,3.4004,45.88 +379018,5.2048,45.278 +379019,7.0226,44.659 +379020,8.8547,44.025 +379021,2.0753,45.778 +379022,3.918,45.23 +379023,5.7711,44.667 +379024,7.6358,44.089 +379025,0.75164,45.676 +379026,2.6317,45.182 +379027,4.5192,44.674 +379028,6.4152,44.153 +379029,359.43,45.572 +379030,1.346,45.134 +379031,3.2669,44.682 +379032,5.1928,44.217 +379033,358.11,45.469 +379034,0.060964,45.086 +379035,2.014,44.69 +379036,3.9686,44.282 +379037,356.79,45.364 +379038,358.78,45.038 +379039,0.76062,44.698 +379040,2.7425,44.347 +379041,355.47,45.26 +379042,357.49,44.99 +379043,359.51,44.707 +379044,1.5146,44.412 +379045,354.16,45.155 +379046,356.21,44.941 +379047,358.25,44.715 +379048,0.2848,44.477 +379049,352.84,45.049 +379050,354.93,44.893 +379051,357,44.724 +379052,359.05,44.543 +379053,351.53,44.943 +379054,353.65,44.844 +379055,355.74,44.732 +379056,357.82,44.609 +379057,350.22,44.837 +379058,352.36,44.796 +379059,354.49,44.741 +379060,356.58,44.675 +379061,348.91,44.731 +379062,351.08,44.747 +379063,353.23,44.75 +379064,355.35,44.741 +379065,347.6,44.624 +379066,349.8,44.699 +379067,351.97,44.759 +379068,354.11,44.807 +379069,346.29,44.518 +379070,348.52,44.65 +379071,350.71,44.768 +379072,352.87,44.873 +379073,344.99,44.411 +379074,347.25,44.602 +379075,349.46,44.778 +379076,351.62,44.938 +379077,343.69,44.304 +379078,345.97,44.554 +379079,348.2,44.787 +379080,350.38,45.004 +379081,342.38,44.197 +379082,344.69,44.505 +379083,346.94,44.796 +379084,349.13,45.07 +379085,341.09,44.09 +379086,343.41,44.457 +379087,345.68,44.805 +379088,347.88,45.135 +379089,339.79,43.983 +379090,342.14,44.409 +379091,344.42,44.814 +379092,346.63,45.2 +379093,338.49,43.876 +379094,340.86,44.361 +379095,343.16,44.823 +379096,345.38,45.265 +379097,337.2,43.769 +379098,339.59,44.313 +379099,341.9,44.833 +379100,344.13,45.329 +379101,335.91,43.663 +379102,338.32,44.266 +379103,340.63,44.842 +379104,342.87,45.393 +379105,334.62,43.557 +379106,337.04,44.218 +379107,339.37,44.851 +379108,341.61,45.457 +379109,333.33,43.451 +379110,335.77,44.171 +379111,338.11,44.86 +379112,340.35,45.52 +379113,332.05,43.345 +379114,334.5,44.124 +379115,336.84,44.868 +379116,339.09,45.583 +379117,330.76,43.24 +379118,333.23,44.077 +379119,335.58,44.877 +379120,337.82,45.645 +379121,329.48,43.135 +379122,331.96,44.03 +379123,334.31,44.886 +379124,336.56,45.706 +379125,328.2,43.031 +379126,330.69,43.983 +379127,333.05,44.894 +379128,335.29,45.767 +379129,326.93,42.927 +379130,329.42,43.937 +379131,331.78,44.902 +379132,334.02,45.828 +379133,325.65,42.824 +379134,328.16,43.891 +379135,330.51,44.911 +379136,332.75,45.887 +379137,324.38,42.722 +379138,326.89,43.845 +379139,329.25,44.919 +379140,331.48,45.946 +379141,323.11,42.62 +379142,325.62,43.8 +379143,327.98,44.926 +379144,330.2,46.004 +379145,321.84,42.519 +379146,324.36,43.755 +379147,326.71,44.934 +379148,328.93,46.062 +379149,320.57,42.418 +379150,323.09,43.71 +379151,325.44,44.941 +379152,327.65,46.118 +379153,319.31,42.319 +379154,321.83,43.666 +379155,324.17,44.948 +379156,326.37,46.174 +379157,318.05,42.22 +379158,320.57,43.622 +379159,322.9,44.955 +379160,325.08,46.229 +379161,316.79,42.122 +379162,319.3,43.578 +379163,321.63,44.962 +379164,323.8,46.282 +379165,315.53,42.026 +379166,318.04,43.535 +379167,320.36,44.968 +379168,322.52,46.335 +379169,314.27,41.93 +379170,316.78,43.492 +379171,319.09,44.974 +379172,321.23,46.387 +379173,313.02,41.835 +379174,315.52,43.449 +379175,317.82,44.98 +379176,319.94,46.438 +379177,311.77,41.741 +379178,314.26,43.407 +379179,316.54,44.986 +379180,318.65,46.488 +379181,310.52,41.649 +379182,313,43.366 +379183,315.27,44.991 +379184,317.36,46.536 +379185,309.28,41.558 +379186,311.75,43.325 +379187,313.99,44.996 +379188,316.06,46.584 +379189,308.03,41.468 +379190,310.49,43.284 +379191,312.72,45 +379192,314.77,46.63 +379193,306.79,41.379 +379194,309.23,43.244 +379195,311.44,45.005 +379196,313.47,46.676 +379197,305.55,41.292 +379198,307.98,43.204 +379199,310.17,45.008 +379200,312.17,46.72 +379201,304.31,41.206 +379202,306.72,43.165 +379203,308.89,45.012 +379204,310.87,46.762 +379205,303.08,41.121 +379206,305.47,43.126 +379207,307.62,45.015 +379208,309.57,46.804 +379209,301.84,41.038 +379210,304.22,43.088 +379211,306.34,45.018 +379212,308.27,46.844 +379213,300.61,40.956 +379214,302.96,43.05 +379215,305.06,45.02 +379216,306.96,46.883 +379217,299.39,40.876 +379218,301.71,43.013 +379219,303.78,45.022 +379220,305.66,46.921 +379221,298.16,40.798 +379222,300.46,42.977 +379223,302.51,45.023 +379224,304.35,46.957 +379225,296.93,40.721 +379226,299.21,42.941 +379227,301.23,45.024 +379228,303.04,46.992 +379229,295.71,40.646 +379230,297.96,42.906 +379231,299.95,45.025 +379232,301.73,47.025 +379233,294.49,40.572 +379234,296.71,42.871 +379235,298.67,45.025 +379236,300.42,47.057 +379237,293.27,40.501 +379238,295.46,42.837 +379239,297.39,45.025 +379240,299.11,47.087 +379241,292.06,40.431 +379242,294.21,42.804 +379243,296.11,45.024 +379244,297.8,47.116 +379245,290.84,40.363 +379246,292.97,42.771 +379247,294.82,45.022 +379248,296.48,47.144 +379249,289.63,40.297 +379250,291.72,42.739 +379251,293.54,45.021 +379252,295.16,47.17 +379253,288.42,40.232 +379254,290.47,42.707 +379255,292.26,45.019 +379256,293.85,47.194 +379257,287.22,40.17 +379258,289.23,42.676 +379259,290.98,45.016 +379260,292.53,47.217 +379261,286.01,40.109 +379262,287.98,42.646 +379263,289.7,45.013 +379264,291.21,47.238 +379265,284.81,40.051 +379266,286.74,42.617 +379267,288.41,45.009 +379268,289.89,47.258 +379269,283.6,39.995 +379270,285.5,42.588 +379271,287.13,45.005 +379272,288.57,47.276 +379273,282.4,39.94 +379274,284.25,42.56 +379275,285.85,45 +379276,287.25,47.293 +379277,281.2,39.888 +379278,283.01,42.532 +379279,284.56,44.995 +379280,285.92,47.308 +379281,280.01,39.838 +379282,281.77,42.505 +379283,283.28,44.989 +379284,284.6,47.321 +379285,278.81,39.79 +379286,280.53,42.479 +379287,281.99,44.982 +379288,283.27,47.332 +379289,277.62,39.744 +379290,279.29,42.454 +379291,280.71,44.975 +379292,281.95,47.342 +379293,276.43,39.7 +379294,278.05,42.43 +379295,279.42,44.968 +379296,280.62,47.35 +379297,275.24,39.659 +379298,276.81,42.406 +379299,278.14,44.96 +379300,279.29,47.357 +379301,274.05,39.619 +379302,275.57,42.383 +379303,276.85,44.952 +379304,277.96,47.361 +379305,272.86,39.582 +379306,274.33,42.36 +379307,275.56,44.942 +379308,276.63,47.364 +379309,271.67,39.547 +379310,273.09,42.339 +379311,274.28,44.933 +379312,275.3,47.365 +379313,270.49,39.515 +379314,271.85,42.318 +379315,272.99,44.923 +379316,273.97,47.365 +379317,269.31,39.484 +379318,270.61,42.298 +379319,271.7,44.912 +379320,272.64,47.363 +379321,268.12,39.456 +379322,269.38,42.279 +379323,270.42,44.9 +379324,271.31,47.359 +379325,266.94,39.431 +379326,268.14,42.26 +379327,269.13,44.888 +379328,269.97,47.353 +379329,265.76,39.407 +379330,266.9,42.242 +379331,267.84,44.876 +379332,268.64,47.345 +379333,264.59,39.386 +379334,265.67,42.225 +379335,266.56,44.863 +379336,267.31,47.336 +379337,263.41,39.368 +379338,264.43,42.209 +379339,265.27,44.849 +379340,265.97,47.325 +379341,262.23,39.351 +379342,263.19,42.194 +379343,263.98,44.835 +379344,264.64,47.312 +379345,261.05,39.337 +379346,261.96,42.179 +379347,262.69,44.82 +379348,263.3,47.297 +379349,259.88,39.325 +379350,260.72,42.165 +379351,261.4,44.805 +379352,261.97,47.28 +379353,258.7,39.316 +379354,259.49,42.152 +379355,260.12,44.789 +379356,260.63,47.262 +379357,257.53,39.309 +379358,258.25,42.14 +379359,258.83,44.772 +379360,259.3,47.242 +379361,256.36,39.304 +379362,257.02,42.128 +379363,257.54,44.755 +379364,257.96,47.22 +379365,255.19,39.301 +379366,255.79,42.117 +379367,256.25,44.737 +379368,256.62,47.197 +379369,254.01,39.301 +379370,254.55,42.107 +379371,254.96,44.719 +379372,255.29,47.171 +379373,252.84,39.303 +379374,253.32,42.098 +379375,253.68,44.7 +379376,253.95,47.144 +379377,251.67,39.308 +379378,252.08,42.089 +379379,252.39,44.68 +379380,252.61,47.115 +379381,250.5,39.314 +379382,250.85,42.082 +379383,251.1,44.66 +379384,251.27,47.084 +379385,249.33,39.323 +379386,249.62,42.075 +379387,249.81,44.64 +379388,249.94,47.052 +379389,248.16,39.335 +379390,248.38,42.069 +379391,248.52,44.619 +379392,248.6,47.017 +379393,246.99,39.348 +379394,247.15,42.063 +379395,247.23,44.597 +379396,247.26,46.981 +379397,245.81,39.364 +379398,245.92,42.058 +379399,245.95,44.575 +379400,245.92,46.943 +379401,244.64,39.382 +379402,244.68,42.054 +379403,244.66,44.552 +379404,244.59,46.904 +379405,243.47,39.402 +379406,243.45,42.051 +379407,243.37,44.528 +379408,243.25,46.862 +379409,242.3,39.424 +379410,242.22,42.049 +379411,242.08,44.504 +379412,241.91,46.819 +379413,241.13,39.449 +379414,240.98,42.047 +379415,240.8,44.48 +379416,240.58,46.775 +379417,239.96,39.475 +379418,239.75,42.046 +379419,239.51,44.455 +379420,239.24,46.728 +379421,238.78,39.504 +379422,238.52,42.046 +379423,238.22,44.429 +379424,237.9,46.68 +379425,237.61,39.534 +379426,237.28,42.046 +379427,236.93,44.403 +379428,236.57,46.63 +379429,236.44,39.567 +379430,236.05,42.047 +379431,235.65,44.377 +379432,235.23,46.579 +379433,235.26,39.602 +379434,234.82,42.049 +379435,234.36,44.349 +379436,233.9,46.525 +379437,234.09,39.638 +379438,233.58,42.051 +379439,233.07,44.322 +379440,232.56,46.471 +379441,232.91,39.677 +379442,232.35,42.055 +379443,231.79,44.294 +379444,231.23,46.414 +379445,231.74,39.717 +379446,231.11,42.059 +379447,230.5,44.265 +379448,229.89,46.356 +379449,230.56,39.76 +379450,229.88,42.063 +379451,229.21,44.236 +379452,228.56,46.297 +379453,229.38,39.804 +379454,228.65,42.068 +379455,227.93,44.206 +379456,227.23,46.235 +379457,228.2,39.85 +379458,227.41,42.074 +379459,226.64,44.176 +379460,225.89,46.173 +379461,227.02,39.898 +379462,226.18,42.081 +379463,225.36,44.145 +379464,224.56,46.109 +379465,225.84,39.948 +379466,224.94,42.088 +379467,224.07,44.114 +379468,223.23,46.043 +379469,224.66,39.999 +379470,223.71,42.095 +379471,222.79,44.083 +379472,221.9,45.976 +379473,223.48,40.052 +379474,222.47,42.104 +379475,221.5,44.051 +379476,220.57,45.907 +379477,222.29,40.106 +379478,221.23,42.113 +379479,220.22,44.019 +379480,219.24,45.837 +379481,221.11,40.162 +379482,220,42.122 +379483,218.94,43.986 +379484,217.92,45.765 +379485,219.92,40.22 +379486,218.76,42.132 +379487,217.65,43.953 +379488,216.59,45.692 +379489,218.73,40.279 +379490,217.53,42.143 +379491,216.37,43.919 +379492,215.26,45.618 +379493,217.54,40.34 +379494,216.29,42.154 +379495,215.09,43.885 +379496,213.94,45.542 +379497,216.35,40.402 +379498,215.05,42.166 +379499,213.81,43.851 +379500,212.61,45.465 +379501,215.16,40.465 +379502,213.81,42.178 +379503,212.53,43.816 +379504,211.29,45.387 +379505,213.96,40.529 +379506,212.57,42.191 +379507,211.24,43.781 +379508,209.97,45.307 +379509,212.77,40.595 +379510,211.34,42.204 +379511,209.96,43.746 +379512,208.64,45.226 +379513,211.57,40.662 +379514,210.1,42.218 +379515,208.68,43.71 +379516,207.32,45.144 +379517,210.37,40.731 +379518,208.86,42.232 +379519,207.4,43.674 +379520,206,45.061 +379521,209.17,40.8 +379522,207.62,42.246 +379523,206.12,43.637 +379524,204.69,44.977 +379525,207.97,40.871 +379526,206.38,42.262 +379527,204.85,43.601 +379528,203.37,44.891 +379529,206.77,40.942 +379530,205.14,42.277 +379531,203.57,43.564 +379532,202.05,44.805 +379533,205.56,41.015 +379534,203.9,42.293 +379535,202.29,43.526 +379536,200.74,44.717 +379537,204.35,41.088 +379538,202.65,42.309 +379539,201.01,43.489 +379540,199.42,44.628 +379541,203.14,41.163 +379542,201.41,42.326 +379543,199.74,43.451 +379544,198.11,44.539 +379545,201.93,41.238 +379546,200.17,42.343 +379547,198.46,43.413 +379548,196.8,44.448 +379549,200.72,41.314 +379550,198.93,42.361 +379551,197.18,43.375 +379552,195.49,44.357 +379553,199.5,41.391 +379554,197.68,42.379 +379555,195.91,43.336 +379556,194.18,44.264 +379557,198.29,41.468 +379558,196.44,42.397 +379559,194.63,43.298 +379560,192.88,44.171 +379561,197.07,41.546 +379562,195.19,42.415 +379563,193.36,43.259 +379564,191.57,44.077 +379565,195.85,41.625 +379566,193.95,42.434 +379567,192.09,43.22 +379568,190.27,43.982 +379569,194.63,41.704 +379570,192.7,42.453 +379571,190.81,43.18 +379572,188.96,43.887 +379573,193.4,41.784 +379574,191.45,42.472 +379575,189.54,43.141 +379576,187.66,43.79 +379577,192.18,41.864 +379578,190.21,42.492 +379579,188.27,43.102 +379580,186.36,43.694 +379581,190.95,41.945 +379582,188.96,42.512 +379583,187,43.062 +379584,185.07,43.596 +379585,189.72,42.026 +379586,187.71,42.532 +379587,185.73,43.023 +379588,183.77,43.498 +379589,188.49,42.107 +379590,186.46,42.552 +379591,184.46,42.983 +379592,182.48,43.399 +379593,187.25,42.189 +379594,185.21,42.573 +379595,183.19,42.943 +379596,181.18,43.3 +379597,186.02,42.271 +379598,183.96,42.593 +379599,181.92,42.903 +379600,179.89,43.201 +379601,184.78,42.353 +379602,182.71,42.614 +379603,180.66,42.863 +379604,178.6,43.101 +379605,183.54,42.435 +379606,181.46,42.635 +379607,179.39,42.824 +379608,177.32,43.001 +379609,182.3,42.517 +379610,180.21,42.656 +379611,178.12,42.784 +379612,176.03,42.9 +379613,181.05,42.599 +379614,178.96,42.677 +379615,176.86,42.744 +379616,174.75,42.799 +379617,179.81,42.682 +379618,177.71,42.698 +379619,175.59,42.704 +379620,173.46,42.698 +379621,178.56,42.764 +379622,176.45,42.72 +379623,174.33,42.664 +379624,172.18,42.597 +379625,177.31,42.846 +379626,175.2,42.741 +379627,173.06,42.624 +379628,170.91,42.495 +379629,176.06,42.928 +379630,173.94,42.763 +379631,171.8,42.585 +379632,169.63,42.394 +379633,174.81,43.01 +379634,172.69,42.784 +379635,170.54,42.545 +379636,168.35,42.292 +379637,173.55,43.091 +379638,171.43,42.806 +379639,169.28,42.506 +379640,167.08,42.191 +379641,172.3,43.172 +379642,170.18,42.827 +379643,168.01,42.466 +379644,165.81,42.089 +379645,171.04,43.253 +379646,168.92,42.849 +379647,166.75,42.427 +379648,164.54,41.988 +379649,169.78,43.334 +379650,167.66,42.87 +379651,165.49,42.388 +379652,163.27,41.887 +379653,168.51,43.414 +379654,166.4,42.892 +379655,164.24,42.349 +379656,162.01,41.786 +379657,167.25,43.493 +379658,165.14,42.913 +379659,162.98,42.311 +379660,160.75,41.685 +379661,165.98,43.573 +379662,163.88,42.934 +379663,161.72,42.272 +379664,159.49,41.585 +379665,164.71,43.651 +379666,162.62,42.956 +379667,160.46,42.234 +379668,158.23,41.485 +379669,163.44,43.729 +379670,161.36,42.977 +379671,159.21,42.196 +379672,156.97,41.385 +379673,162.17,43.807 +379674,160.1,42.998 +379675,157.95,42.158 +379676,155.71,41.286 +379677,160.9,43.883 +379678,158.84,43.019 +379679,156.7,42.121 +379680,154.46,41.187 +379681,159.62,43.959 +379682,157.58,43.04 +379683,155.44,42.083 +379684,153.21,41.089 +379685,158.35,44.035 +379686,156.31,43.06 +379687,154.19,42.047 +379688,151.96,40.991 +379689,157.07,44.109 +379690,155.05,43.081 +379691,152.94,42.01 +379692,150.72,40.894 +379693,155.79,44.183 +379694,153.79,43.101 +379695,151.69,41.974 +379696,149.47,40.798 +379697,154.5,44.256 +379698,152.52,43.121 +379699,150.43,41.938 +379700,148.23,40.702 +379701,153.22,44.328 +379702,151.26,43.141 +379703,149.18,41.902 +379704,146.99,40.607 +379705,151.93,44.399 +379706,149.99,43.16 +379707,147.93,41.867 +379708,145.75,40.514 +379709,150.65,44.469 +379710,148.72,43.18 +379711,146.69,41.832 +379712,144.51,40.421 +379713,149.36,44.538 +379714,147.46,43.199 +379715,145.44,41.798 +379716,143.28,40.329 +379717,148.07,44.606 +379718,146.19,43.218 +379719,144.19,41.764 +379720,142.05,40.238 +379721,146.78,44.673 +379722,144.92,43.236 +379723,142.94,41.73 +379724,140.82,40.148 +379725,145.48,44.739 +379726,143.65,43.254 +379727,141.7,41.697 +379728,139.59,40.059 +379729,144.19,44.804 +379730,142.38,43.272 +379731,140.45,41.665 +379732,138.36,39.971 +379733,142.89,44.868 +379734,141.11,43.29 +379735,139.2,41.633 +379736,137.14,39.885 +379737,141.59,44.93 +379738,139.84,43.307 +379739,137.96,41.601 +379740,135.92,39.799 +379741,140.29,44.992 +379742,138.57,43.324 +379743,136.72,41.57 +379744,134.7,39.716 +379745,138.99,45.052 +379746,137.3,43.341 +379747,135.47,41.539 +379748,133.48,39.633 +379749,137.69,45.11 +379750,136.03,43.357 +379751,134.23,41.509 +379752,132.27,39.552 +379753,136.39,45.168 +379754,134.76,43.373 +379755,132.99,41.48 +379756,131.05,39.472 +379757,135.08,45.224 +379758,133.48,43.389 +379759,131.75,41.451 +379760,129.84,39.394 +379761,133.78,45.279 +379762,132.21,43.404 +379763,130.51,41.422 +379764,128.63,39.317 +379765,132.47,45.332 +379766,130.94,43.418 +379767,129.27,41.395 +379768,127.42,39.242 +379769,131.16,45.384 +379770,129.66,43.433 +379771,128.03,41.368 +379772,126.22,39.168 +379773,129.85,45.435 +379774,128.39,43.447 +379775,126.79,41.341 +379776,125.01,39.097 +379777,128.54,45.484 +379778,127.11,43.46 +379779,125.55,41.315 +379780,123.81,39.026 +379781,127.23,45.532 +379782,125.84,43.473 +379783,124.31,41.29 +379784,122.61,38.958 +379785,125.92,45.578 +379786,124.56,43.486 +379787,123.07,41.265 +379788,121.41,38.891 +379789,124.61,45.622 +379790,123.28,43.498 +379791,121.83,41.241 +379792,120.21,38.827 +379793,123.29,45.665 +379794,122.01,43.509 +379795,120.6,41.218 +379796,119.02,38.764 +379797,121.97,45.707 +379798,120.73,43.52 +379799,119.36,41.195 +379800,117.82,38.703 +379801,120.66,45.747 +379802,119.45,43.531 +379803,118.13,41.173 +379804,116.63,38.644 +379805,119.34,45.785 +379806,118.18,43.541 +379807,116.89,41.152 +379808,115.44,38.587 +379809,118.02,45.822 +379810,116.9,43.551 +379811,115.66,41.131 +379812,114.25,38.532 +379813,116.7,45.857 +379814,115.62,43.56 +379815,114.42,41.111 +379816,113.06,38.479 +379817,115.38,45.89 +379818,114.34,43.569 +379819,113.19,41.092 +379820,111.88,38.428 +379821,114.06,45.922 +379822,113.06,43.577 +379823,111.95,41.074 +379824,110.69,38.38 +379825,112.74,45.952 +379826,111.78,43.584 +379827,110.72,41.056 +379828,109.51,38.333 +379829,111.42,45.981 +379830,110.51,43.591 +379831,109.49,41.039 +379832,108.33,38.289 +379833,110.09,46.007 +379834,109.23,43.598 +379835,108.26,41.023 +379836,107.15,38.247 +379837,108.77,46.032 +379838,107.95,43.604 +379839,107.02,41.008 +379840,105.97,38.207 +379841,107.45,46.055 +379842,106.67,43.609 +379843,105.79,40.993 +379844,104.79,38.169 +379845,106.12,46.077 +379846,105.39,43.614 +379847,104.56,40.98 +379848,103.61,38.134 +379849,104.79,46.097 +379850,104.11,43.618 +379851,103.33,40.967 +379852,102.44,38.101 +379853,103.47,46.114 +379854,102.82,43.622 +379855,102.1,40.954 +379856,101.26,38.07 +379857,102.14,46.131 +379858,101.54,43.625 +379859,100.87,40.943 +379860,100.09,38.042 +379861,100.82,46.145 +379862,100.26,43.628 +379863,99.638,40.932 +379864,98.913,38.016 +379865,99.488,46.158 +379866,98.982,43.63 +379867,98.408,40.922 +379868,97.74,37.992 +379869,98.16,46.168 +379870,97.7,43.631 +379871,97.178,40.913 +379872,96.567,37.971 +379873,96.832,46.177 +379874,96.419,43.632 +379875,95.948,40.905 +379876,95.396,37.952 +379877,95.504,46.184 +379878,95.138,43.632 +379879,94.718,40.898 +379880,94.225,37.936 +379881,94.175,46.19 +379882,93.856,43.632 +379883,93.489,40.891 +379884,93.054,37.922 +379885,92.847,46.193 +379886,92.574,43.631 +379887,92.259,40.885 +379888,91.884,37.91 +379889,91.518,46.195 +379890,91.293,43.63 +379891,91.03,40.88 +379892,90.715,37.901 +379893,90.188,46.195 +379894,90.011,43.627 +379895,89.801,40.876 +379896,89.545,37.895 +379897,88.859,46.193 +379898,88.729,43.625 +379899,88.572,40.873 +379900,88.376,37.891 +379901,87.53,46.189 +379902,87.447,43.622 +379903,87.343,40.87 +379904,87.207,37.889 +379905,86.2,46.183 +379906,86.165,43.618 +379907,86.114,40.868 +379908,86.038,37.89 +379909,84.871,46.176 +379910,84.884,43.613 +379911,84.885,40.867 +379912,84.87,37.893 +379913,83.542,46.167 +379914,83.602,43.608 +379915,83.656,40.867 +379916,83.701,37.899 +379917,82.212,46.155 +379918,82.32,43.603 +379919,82.427,40.868 +379920,82.532,37.907 +379921,80.883,46.143 +379922,81.038,43.597 +379923,81.198,40.87 +379924,81.363,37.918 +379925,79.554,46.128 +379926,79.757,43.59 +379927,79.969,40.872 +379928,80.194,37.931 +379929,78.225,46.111 +379930,78.475,43.583 +379931,78.74,40.875 +379932,79.024,37.946 +379933,76.896,46.093 +379934,77.194,43.575 +379935,77.511,40.879 +379936,77.854,37.964 +379937,75.568,46.073 +379938,75.912,43.566 +379939,76.281,40.884 +379940,76.684,37.984 +379941,74.24,46.051 +379942,74.631,43.557 +379943,75.052,40.89 +379944,75.513,38.007 +379945,72.912,46.027 +379946,73.35,43.547 +379947,73.822,40.896 +379948,74.341,38.032 +379949,71.584,46.001 +379950,72.069,43.537 +379951,72.593,40.903 +379952,73.169,38.059 +379953,70.257,45.974 +379954,70.788,43.526 +379955,71.363,40.911 +379956,71.996,38.089 +379957,68.931,45.945 +379958,69.508,43.515 +379959,70.133,40.92 +379960,70.823,38.121 +379961,67.604,45.914 +379962,68.227,43.503 +379963,68.902,40.929 +379964,69.648,38.155 +379965,66.279,45.882 +379966,66.947,43.491 +379967,67.672,40.94 +379968,68.473,38.192 +379969,64.953,45.847 +379970,65.667,43.478 +379971,66.441,40.951 +379972,67.297,38.23 +379973,63.629,45.811 +379974,64.387,43.464 +379975,65.21,40.962 +379976,66.12,38.271 +379977,62.305,45.774 +379978,63.107,43.45 +379979,63.979,40.975 +379980,64.942,38.314 +379981,60.981,45.734 +379982,61.828,43.436 +379983,62.747,40.988 +379984,63.762,38.36 +379985,59.659,45.693 +379986,60.549,43.421 +379987,61.515,41.002 +379988,62.582,38.407 +379989,58.337,45.651 +379990,59.27,43.405 +379991,60.283,41.017 +379992,61.4,38.456 +379993,57.015,45.606 +379994,57.992,43.389 +379995,59.05,41.032 +379996,60.217,38.508 +379997,55.695,45.56 +379998,56.714,43.373 +379999,57.818,41.049 +380000,59.033,38.561 +380001,54.375,45.513 +380002,55.436,43.356 +380003,56.584,41.065 +380004,57.847,38.616 +380005,53.056,45.464 +380006,54.158,43.338 +380007,55.351,41.083 +380008,56.66,38.674 +380009,51.738,45.413 +380010,52.881,43.32 +380011,54.116,41.101 +380012,55.472,38.733 +380013,50.421,45.361 +380014,51.604,43.301 +380015,52.882,41.12 +380016,54.282,38.794 +380017,49.105,45.307 +380018,50.328,43.283 +380019,51.647,41.14 +380020,53.09,38.857 +380021,47.79,45.252 +380022,49.052,43.263 +380023,50.412,41.16 +380024,51.897,38.922 +380025,46.476,45.195 +380026,47.776,43.243 +380027,49.176,41.181 +380028,50.702,38.988 +380029,45.163,45.137 +380030,46.501,43.223 +380031,47.939,41.202 +380032,49.506,39.056 +380033,43.85,45.077 +380034,45.226,43.202 +380035,46.703,41.224 +380036,48.308,39.126 +380037,42.54,45.016 +380038,43.951,43.181 +380039,45.465,41.247 +380040,47.108,39.197 +380041,41.23,44.954 +380042,42.677,43.16 +380043,44.228,41.27 +380044,45.906,39.27 +380045,39.921,44.89 +380046,41.404,43.138 +380047,42.989,41.294 +380048,44.703,39.344 +380049,38.614,44.825 +380050,40.131,43.116 +380051,41.75,41.318 +380052,43.498,39.42 +380053,37.307,44.759 +380054,38.858,43.093 +380055,40.511,41.343 +380056,42.291,39.497 +380057,36.002,44.691 +380058,37.586,43.07 +380059,39.271,41.368 +380060,41.082,39.576 +380061,34.699,44.622 +380062,36.314,43.047 +380063,38.031,41.394 +380064,39.871,39.656 +380065,33.396,44.552 +380066,35.043,43.023 +380067,36.79,41.421 +380068,38.659,39.737 +380069,32.095,44.481 +380070,33.772,42.999 +380071,35.548,41.448 +380072,37.444,39.819 +380073,30.796,44.409 +380074,32.502,42.975 +380075,34.306,41.475 +380076,36.228,39.903 +380077,29.498,44.335 +380078,31.232,42.95 +380079,33.063,41.503 +380080,35.009,39.988 +380081,28.201,44.26 +380082,29.963,42.925 +380083,31.82,41.531 +380084,33.789,40.073 +380085,26.905,44.185 +380086,28.694,42.9 +380087,30.576,41.56 +380088,32.566,40.16 +380089,25.612,44.108 +380090,27.426,42.874 +380091,29.331,41.589 +380092,31.342,40.248 +380093,24.319,44.03 +380094,26.159,42.849 +380095,28.086,41.619 +380096,30.116,40.337 +380097,23.029,43.952 +380098,24.892,42.823 +380099,26.84,41.649 +380100,28.887,40.426 +380101,21.739,43.872 +380102,23.625,42.797 +380103,25.594,41.679 +380104,27.657,40.516 +380105,20.452,43.792 +380106,22.359,42.77 +380107,24.347,41.71 +380108,26.424,40.608 +380109,19.166,43.711 +380110,21.094,42.744 +380111,23.099,41.741 +380112,25.19,40.699 +380113,17.881,43.629 +380114,19.829,42.717 +380115,21.85,41.772 +380116,23.953,40.792 +380117,16.599,43.546 +380118,18.565,42.69 +380119,20.601,41.804 +380120,22.715,40.885 +380121,15.318,43.462 +380122,17.302,42.663 +380123,19.352,41.836 +380124,21.474,40.979 +380125,14.038,43.378 +380126,16.039,42.636 +380127,18.101,41.868 +380128,20.232,41.073 +380129,12.761,43.293 +380130,14.777,42.609 +380131,16.85,41.901 +380132,18.987,41.168 +380133,11.485,43.208 +380134,13.515,42.582 +380135,15.599,41.934 +380136,17.74,41.263 +380137,10.211,43.122 +380138,12.254,42.554 +380139,14.346,41.967 +380140,16.492,41.358 +380141,8.9385,43.035 +380142,10.993,42.527 +380143,13.093,42 +380144,15.241,41.454 +380145,7.6681,42.948 +380146,9.7336,42.499 +380147,11.839,42.033 +380148,13.988,41.55 +380149,6.3994,42.861 +380150,8.4744,42.472 +380151,10.585,42.067 +380152,12.734,41.646 +380153,5.1326,42.773 +380154,7.2158,42.444 +380155,9.33,42.101 +380156,11.477,41.743 +380157,3.8677,42.685 +380158,5.9578,42.416 +380159,8.0743,42.135 +380160,10.218,41.839 +380161,2.6046,42.596 +380162,4.7005,42.389 +380163,6.8179,42.169 +380164,8.9579,41.936 +380165,1.3435,42.507 +380166,3.4438,42.361 +380167,5.5609,42.203 +380168,7.6954,42.033 +380169,0.084207,42.418 +380170,2.1878,42.333 +380171,4.3032,42.237 +380172,6.4309,42.129 +380173,358.83,42.329 +380174,0.93235,42.306 +380175,3.0448,42.271 +380176,5.1646,42.226 +380177,357.57,42.24 +380178,359.68,42.278 +380179,1.7858,42.306 +380180,3.8963,42.322 +380181,356.32,42.15 +380182,358.42,42.251 +380183,0.52605,42.34 +380184,2.6262,42.419 +380185,355.07,42.061 +380186,357.17,42.224 +380187,359.27,42.375 +380188,1.3542,42.515 +380189,353.82,41.972 +380190,355.92,42.196 +380191,358,42.409 +380192,0.08031,42.61 +380193,352.57,41.882 +380194,354.66,42.169 +380195,356.74,42.444 +380196,358.8,42.706 +380197,351.32,41.793 +380198,353.41,42.142 +380199,355.48,42.478 +380200,357.53,42.801 +380201,350.08,41.704 +380202,352.16,42.116 +380203,354.22,42.513 +380204,356.25,42.896 +380205,348.84,41.615 +380206,350.91,42.089 +380207,352.95,42.547 +380208,354.97,42.99 +380209,347.6,41.526 +380210,349.66,42.063 +380211,351.69,42.582 +380212,353.68,43.084 +380213,346.36,41.438 +380214,348.41,42.036 +380215,350.42,42.616 +380216,352.4,43.177 +380217,345.12,41.35 +380218,347.16,42.01 +380219,349.16,42.65 +380220,351.11,43.27 +380221,343.89,41.263 +380222,345.92,41.985 +380223,347.89,42.685 +380224,349.83,43.362 +380225,342.66,41.176 +380226,344.67,41.959 +380227,346.63,42.719 +380228,348.54,43.454 +380229,341.43,41.089 +380230,343.42,41.934 +380231,345.36,42.752 +380232,347.24,43.545 +380233,340.2,41.003 +380234,342.18,41.909 +380235,344.09,42.786 +380236,345.95,43.635 +380237,338.98,40.917 +380238,340.93,41.885 +380239,342.82,42.82 +380240,344.66,43.724 +380241,337.75,40.833 +380242,339.69,41.86 +380243,341.55,42.853 +380244,343.36,43.813 +380245,336.53,40.748 +380246,338.44,41.836 +380247,340.28,42.886 +380248,342.06,43.901 +380249,335.31,40.665 +380250,337.2,41.813 +380251,339.01,42.919 +380252,340.77,43.988 +380253,334.09,40.582 +380254,335.95,41.79 +380255,337.74,42.952 +380256,339.47,44.074 +380257,332.88,40.501 +380258,334.71,41.767 +380259,336.47,42.985 +380260,338.16,44.159 +380261,331.66,40.42 +380262,333.47,41.744 +380263,335.2,43.017 +380264,336.86,44.243 +380265,330.45,40.34 +380266,332.23,41.722 +380267,333.93,43.049 +380268,335.56,44.326 +380269,329.24,40.261 +380270,330.99,41.701 +380271,332.65,43.081 +380272,334.25,44.408 +380273,328.03,40.183 +380274,329.75,41.679 +380275,331.38,43.113 +380276,332.94,44.489 +380277,326.82,40.106 +380278,328.51,41.659 +380279,330.11,43.144 +380280,331.63,44.568 +380281,325.62,40.031 +380282,327.27,41.638 +380283,328.83,43.175 +380284,330.32,44.647 +380285,324.41,39.956 +380286,326.03,41.619 +380287,327.56,43.205 +380288,329.01,44.724 +380289,323.21,39.883 +380290,324.79,41.599 +380291,326.28,43.236 +380292,327.7,44.801 +380293,322.01,39.811 +380294,323.55,41.581 +380295,325.01,43.266 +380296,326.39,44.876 +380297,320.81,39.741 +380298,322.31,41.562 +380299,323.73,43.295 +380300,325.07,44.95 +380301,319.62,39.672 +380302,321.08,41.545 +380303,322.45,43.324 +380304,323.76,45.022 +380305,318.42,39.604 +380306,319.84,41.527 +380307,321.18,43.353 +380308,322.44,45.093 +380309,317.23,39.537 +380310,318.6,41.511 +380311,319.9,43.382 +380312,321.12,45.163 +380313,316.04,39.473 +380314,317.37,41.495 +380315,318.62,43.41 +380316,319.8,45.231 +380317,314.85,39.409 +380318,316.13,41.479 +380319,317.34,43.437 +380320,318.48,45.298 +380321,313.66,39.348 +380322,314.9,41.465 +380323,316.06,43.465 +380324,317.16,45.364 +380325,312.47,39.288 +380326,313.66,41.45 +380327,314.78,43.491 +380328,315.84,45.428 +380329,311.28,39.23 +380330,312.43,41.437 +380331,313.5,43.518 +380332,314.52,45.491 +380333,310.1,39.173 +380334,311.19,41.424 +380335,312.22,43.544 +380336,313.2,45.552 +380337,308.91,39.118 +380338,309.96,41.411 +380339,310.94,43.569 +380340,311.87,45.612 +380341,307.73,39.065 +380342,308.73,41.4 +380343,309.66,43.594 +380344,310.55,45.67 +380345,306.55,39.014 +380346,307.49,41.389 +380347,308.38,43.619 +380348,309.22,45.726 +380349,305.37,38.965 +380350,306.26,41.378 +380351,307.1,43.643 +380352,307.9,45.781 +380353,304.19,38.917 +380354,305.03,41.369 +380355,305.82,43.666 +380356,306.57,45.835 +380357,303.01,38.872 +380358,303.8,41.36 +380359,304.54,43.689 +380360,305.24,45.886 +380361,301.84,38.829 +380362,302.56,41.351 +380363,303.25,43.712 +380364,303.91,45.937 +380365,300.66,38.787 +380366,301.33,41.344 +380367,301.97,43.734 +380368,302.59,45.985 +380369,299.49,38.748 +380370,300.1,41.337 +380371,300.69,43.755 +380372,301.26,46.032 +380373,298.31,38.711 +380374,298.87,41.331 +380375,299.41,43.776 +380376,299.93,46.077 +380377,297.14,38.676 +380378,297.64,41.325 +380379,298.12,43.797 +380380,298.6,46.121 +380381,295.97,38.643 +380382,296.41,41.321 +380383,296.84,43.817 +380384,297.27,46.162 +380385,294.79,38.612 +380386,295.18,41.317 +380387,295.56,43.836 +380388,295.94,46.202 +380389,293.62,38.583 +380390,293.95,41.314 +380391,294.27,43.855 +380392,294.61,46.241 +380393,292.45,38.557 +380394,292.71,41.311 +380395,292.99,43.873 +380396,293.27,46.277 +380397,291.28,38.533 +380398,291.48,41.31 +380399,291.71,43.891 +380400,291.94,46.312 +380401,290.11,38.511 +380402,290.25,41.309 +380403,290.42,43.908 +380404,290.61,46.345 +380405,288.94,38.492 +380406,289.02,41.309 +380407,289.14,43.925 +380408,289.28,46.377 +380409,287.77,38.474 +380410,287.79,41.309 +380411,287.85,43.941 +380412,287.95,46.406 +380413,286.6,38.459 +380414,286.56,41.311 +380415,286.57,43.956 +380416,286.61,46.434 +380417,285.43,38.447 +380418,285.33,41.313 +380419,285.29,43.971 +380420,285.28,46.46 +380421,284.26,38.437 +380422,284.1,41.316 +380423,284,43.985 +380424,283.95,46.484 +380425,283.09,38.429 +380426,282.87,41.32 +380427,282.72,43.999 +380428,282.62,46.506 +380429,281.92,38.423 +380430,281.64,41.325 +380431,281.43,44.012 +380432,281.28,46.527 +380433,280.75,38.42 +380434,280.41,41.33 +380435,280.15,44.025 +380436,279.95,46.546 +380437,279.58,38.42 +380438,279.18,41.336 +380439,278.86,44.037 +380440,278.62,46.563 +380441,278.41,38.421 +380442,277.95,41.343 +380443,277.58,44.048 +380444,277.29,46.578 +380445,277.24,38.425 +380446,276.71,41.351 +380447,276.3,44.059 +380448,275.95,46.591 +380449,276.07,38.432 +380450,275.48,41.36 +380451,275.01,44.069 +380452,274.62,46.603 +380453,274.9,38.441 +380454,274.25,41.369 +380455,273.73,44.079 +380456,273.29,46.612 +380457,273.73,38.452 +380458,273.02,41.379 +380459,272.44,44.088 +380460,271.96,46.62 +380461,272.55,38.466 +380462,271.79,41.391 +380463,271.16,44.097 +380464,270.63,46.626 +380465,271.38,38.482 +380466,270.55,41.402 +380467,269.87,44.104 +380468,269.3,46.63 +380469,270.2,38.501 +380470,269.32,41.415 +380471,268.59,44.112 +380472,267.97,46.633 +380473,269.03,38.522 +380474,268.09,41.428 +380475,267.31,44.119 +380476,266.64,46.633 +380477,267.85,38.545 +380478,266.86,41.443 +380479,266.02,44.125 +380480,265.31,46.632 +380481,266.68,38.571 +380482,265.62,41.458 +380483,264.74,44.13 +380484,263.98,46.629 +380485,265.5,38.599 +380486,264.39,41.473 +380487,263.46,44.135 +380488,262.65,46.625 +380489,264.32,38.629 +380490,263.16,41.49 +380491,262.17,44.14 +380492,261.32,46.618 +380493,263.14,38.662 +380494,261.92,41.507 +380495,260.89,44.144 +380496,259.99,46.61 +380497,261.96,38.697 +380498,260.69,41.526 +380499,259.61,44.147 +380500,258.67,46.6 +380501,260.77,38.734 +380502,259.45,41.544 +380503,258.33,44.15 +380504,257.34,46.588 +380505,259.59,38.774 +380506,258.22,41.564 +380507,257.04,44.152 +380508,256.02,46.574 +380509,258.4,38.815 +380510,256.98,41.585 +380511,255.76,44.153 +380512,254.69,46.559 +380513,257.22,38.859 +380514,255.74,41.606 +380515,254.48,44.155 +380516,253.37,46.542 +380517,256.03,38.906 +380518,254.51,41.628 +380519,253.2,44.155 +380520,252.04,46.524 +380521,254.84,38.954 +380522,253.27,41.65 +380523,251.92,44.155 +380524,250.72,46.503 +380525,253.64,39.005 +380526,252.03,41.674 +380527,250.64,44.155 +380528,249.4,46.481 +380529,252.45,39.057 +380530,250.79,41.698 +380531,249.36,44.153 +380532,248.08,46.457 +380533,251.26,39.112 +380534,249.56,41.723 +380535,248.08,44.152 +380536,246.76,46.432 +380537,250.06,39.169 +380538,248.32,41.748 +380539,246.8,44.15 +380540,245.44,46.405 +380541,248.86,39.228 +380542,247.08,41.774 +380543,245.52,44.147 +380544,244.12,46.376 +380545,247.66,39.289 +380546,245.84,41.801 +380547,244.24,44.144 +380548,242.81,46.346 +380549,246.46,39.352 +380550,244.6,41.829 +380551,242.96,44.14 +380552,241.49,46.314 +380553,245.26,39.417 +380554,243.35,41.857 +380555,241.68,44.136 +380556,240.18,46.281 +380557,244.05,39.483 +380558,242.11,41.886 +380559,240.4,44.132 +380560,238.86,46.246 +380561,242.84,39.552 +380562,240.87,41.916 +380563,239.12,44.127 +380564,237.55,46.21 +380565,241.63,39.622 +380566,239.63,41.946 +380567,237.85,44.121 +380568,236.24,46.172 +380569,240.42,39.694 +380570,238.38,41.977 +380571,236.57,44.115 +380572,234.93,46.132 +380573,239.21,39.768 +380574,237.14,42.009 +380575,235.29,44.109 +380576,233.62,46.091 +380577,237.99,39.844 +380578,235.89,42.041 +380579,234.02,44.102 +380580,232.31,46.049 +380581,236.77,39.921 +380582,234.65,42.073 +380583,232.74,44.095 +380584,231.01,46.005 +380585,235.55,40 +380586,233.4,42.107 +380587,231.47,44.087 +380588,229.7,45.96 +380589,234.33,40.08 +380590,232.15,42.141 +380591,230.19,44.079 +380592,228.4,45.914 +380593,233.11,40.162 +380594,230.91,42.175 +380595,228.92,44.071 +380596,227.1,45.866 +380597,231.88,40.246 +380598,229.66,42.21 +380599,227.64,44.062 +380600,225.8,45.817 +380601,230.65,40.33 +380602,228.41,42.245 +380603,226.37,44.053 +380604,224.5,45.767 +380605,229.42,40.417 +380606,227.16,42.282 +380607,225.1,44.043 +380608,223.2,45.715 +380609,228.19,40.504 +380610,225.91,42.318 +380611,223.83,44.033 +380612,221.9,45.662 +380613,226.96,40.593 +380614,224.66,42.355 +380615,222.56,44.023 +380616,220.61,45.608 +380617,225.72,40.683 +380618,223.41,42.393 +380619,221.28,44.012 +380620,219.31,45.553 +380621,224.48,40.774 +380622,222.16,42.431 +380623,220.01,44.001 +380624,218.02,45.496 +380625,223.24,40.867 +380626,220.9,42.469 +380627,218.74,43.99 +380628,216.73,45.439 +380629,222,40.96 +380630,219.65,42.508 +380631,217.47,43.978 +380632,215.44,45.381 +380633,220.75,41.055 +380634,218.39,42.547 +380635,216.2,43.966 +380636,214.16,45.321 +380637,219.51,41.151 +380638,217.14,42.587 +380639,214.94,43.954 +380640,212.87,45.26 +380641,218.26,41.247 +380642,215.88,42.627 +380643,213.67,43.942 +380644,211.59,45.199 +380645,217,41.345 +380646,214.63,42.668 +380647,212.4,43.929 +380648,210.31,45.136 +380649,215.75,41.443 +380650,213.37,42.708 +380651,211.13,43.917 +380652,209.03,45.073 +380653,214.49,41.542 +380654,212.11,42.75 +380655,209.87,43.903 +380656,207.75,45.009 +380657,213.24,41.642 +380658,210.85,42.791 +380659,208.6,43.89 +380660,206.47,44.944 +380661,211.98,41.743 +380662,209.59,42.833 +380663,207.34,43.877 +380664,205.2,44.878 +380665,210.71,41.844 +380666,208.33,42.875 +380667,206.07,43.863 +380668,203.92,44.811 +380669,209.45,41.946 +380670,207.07,42.918 +380671,204.81,43.849 +380672,202.65,44.744 +380673,208.18,42.048 +380674,205.81,42.96 +380675,203.55,43.835 +380676,201.38,44.676 +380677,206.91,42.151 +380678,204.55,43.003 +380679,202.28,43.821 +380680,200.11,44.607 +380681,205.64,42.254 +380682,203.28,43.047 +380683,201.02,43.807 +380684,198.85,44.538 +380685,204.37,42.358 +380686,202.02,43.09 +380687,199.76,43.793 +380688,197.58,44.468 +380689,203.09,42.462 +380690,200.75,43.134 +380691,198.5,43.778 +380692,196.32,44.397 +380693,201.82,42.567 +380694,199.49,43.178 +380695,197.24,43.764 +380696,195.06,44.326 +380697,200.54,42.671 +380698,198.22,43.222 +380699,195.98,43.749 +380700,193.8,44.255 +380701,199.26,42.776 +380702,196.95,43.266 +380703,194.72,43.735 +380704,192.54,44.183 +380705,197.97,42.881 +380706,195.69,43.31 +380707,193.46,43.72 +380708,191.29,44.111 +380709,196.69,42.987 +380710,194.42,43.355 +380711,192.2,43.705 +380712,190.04,44.039 +380713,195.4,43.092 +380714,193.15,43.399 +380715,190.95,43.691 +380716,188.79,43.966 +380717,194.11,43.197 +380718,191.88,43.444 +380719,189.69,43.676 +380720,187.54,43.893 +380721,192.82,43.302 +380722,190.61,43.489 +380723,188.43,43.661 +380724,186.29,43.82 +380725,191.53,43.408 +380726,189.34,43.534 +380727,187.18,43.647 +380728,185.04,43.747 +380729,190.24,43.513 +380730,188.07,43.579 +380731,185.92,43.632 +380732,183.8,43.673 +380733,188.94,43.618 +380734,186.79,43.624 +380735,184.67,43.617 +380736,182.56,43.6 +380737,187.64,43.722 +380738,185.52,43.669 +380739,183.41,43.603 +380740,181.32,43.526 +380741,186.34,43.827 +380742,184.25,43.714 +380743,182.16,43.589 +380744,180.08,43.453 +380745,185.04,43.931 +380746,182.97,43.759 +380747,180.91,43.575 +380748,178.85,43.379 +380749,183.74,44.035 +380750,181.7,43.804 +380751,179.65,43.56 +380752,177.61,43.306 +380753,182.44,44.138 +380754,180.42,43.849 +380755,178.4,43.547 +380756,176.38,43.233 +380757,181.13,44.241 +380758,179.14,43.894 +380759,177.15,43.533 +380760,175.15,43.16 +380761,179.82,44.344 +380762,177.87,43.938 +380763,175.9,43.519 +380764,173.92,43.087 +380765,178.51,44.446 +380766,176.59,43.983 +380767,174.65,43.506 +380768,172.7,43.015 +380769,177.2,44.547 +380770,175.31,44.028 +380771,173.4,43.493 +380772,171.47,42.943 +380773,175.89,44.648 +380774,174.03,44.072 +380775,172.15,43.48 +380776,170.25,42.871 +380777,174.58,44.749 +380778,172.75,44.117 +380779,170.9,43.467 +380780,169.03,42.8 +380781,173.26,44.848 +380782,171.47,44.161 +380783,169.66,43.454 +380784,167.81,42.729 +380785,171.94,44.947 +380786,170.19,44.205 +380787,168.41,43.442 +380788,166.6,42.659 +380789,170.63,45.045 +380790,168.91,44.249 +380791,167.16,43.43 +380792,165.38,42.589 +380793,169.31,45.143 +380794,167.63,44.293 +380795,165.91,43.418 +380796,164.17,42.52 +380797,167.99,45.239 +380798,166.34,44.336 +380799,164.67,43.407 +380800,162.96,42.452 +380801,166.66,45.335 +380802,165.06,44.379 +380803,163.42,43.396 +380804,161.75,42.384 +380805,165.34,45.43 +380806,163.78,44.423 +380807,162.18,43.385 +380808,160.54,42.317 +380809,164.02,45.524 +380810,162.49,44.465 +380811,160.93,43.375 +380812,159.33,42.251 +380813,162.69,45.617 +380814,161.21,44.508 +380815,159.69,43.365 +380816,158.13,42.186 +380817,161.36,45.708 +380818,159.92,44.55 +380819,158.44,43.355 +380820,156.93,42.121 +380821,160.04,45.799 +380822,158.64,44.593 +380823,157.2,43.346 +380824,155.72,42.058 +380825,158.71,45.889 +380826,157.35,44.634 +380827,155.96,43.337 +380828,154.52,41.996 +380829,157.38,45.978 +380830,156.06,44.676 +380831,154.72,43.329 +380832,153.33,41.934 +380833,156.05,46.066 +380834,154.78,44.717 +380835,153.47,43.321 +380836,152.13,41.874 +380837,154.72,46.152 +380838,153.49,44.758 +380839,152.23,43.313 +380840,150.93,41.815 +380841,153.38,46.237 +380842,152.2,44.798 +380843,150.99,43.306 +380844,149.74,41.757 +380845,152.05,46.321 +380846,150.91,44.839 +380847,149.75,43.3 +380848,148.55,41.7 +380849,150.71,46.404 +380850,149.62,44.878 +380851,148.51,43.293 +380852,147.36,41.644 +380853,149.38,46.486 +380854,148.34,44.918 +380855,147.27,43.288 +380856,146.17,41.59 +380857,148.04,46.566 +380858,147.05,44.957 +380859,146.03,43.283 +380860,144.98,41.537 +380861,146.71,46.645 +380862,145.76,44.996 +380863,144.79,43.278 +380864,143.79,41.485 +380865,145.37,46.723 +380866,144.47,45.034 +380867,143.55,43.274 +380868,142.6,41.435 +380869,144.03,46.799 +380870,143.18,45.072 +380871,142.31,43.27 +380872,141.42,41.386 +380873,142.69,46.874 +380874,141.88,45.109 +380875,141.07,43.267 +380876,140.24,41.339 +380877,141.35,46.947 +380878,140.59,45.146 +380879,139.83,43.265 +380880,139.05,41.293 +380881,140.01,47.019 +380882,139.3,45.183 +380883,138.59,43.263 +380884,137.87,41.249 +380885,138.67,47.09 +380886,138.01,45.219 +380887,137.35,43.262 +380888,136.69,41.207 +380889,137.33,47.159 +380890,136.72,45.255 +380891,136.11,43.261 +380892,135.51,41.166 +380893,135.99,47.227 +380894,135.43,45.29 +380895,134.87,43.261 +380896,134.33,41.127 +380897,134.64,47.293 +380898,134.13,45.325 +380899,133.63,43.262 +380900,133.15,41.089 +380901,133.3,47.357 +380902,132.84,45.359 +380903,132.4,43.263 +380904,131.97,41.053 +380905,131.96,47.42 +380906,131.55,45.393 +380907,131.16,43.264 +380908,130.8,41.019 +380909,130.61,47.482 +380910,130.25,45.426 +380911,129.92,43.267 +380912,129.62,40.987 +380913,129.27,47.541 +380914,128.96,45.459 +380915,128.68,43.27 +380916,128.44,40.957 +380917,127.93,47.6 +380918,127.67,45.491 +380919,127.44,43.274 +380920,127.27,40.928 +380921,126.58,47.656 +380922,126.37,45.523 +380923,126.21,43.278 +380924,126.09,40.902 +380925,125.24,47.711 +380926,125.08,45.554 +380927,124.97,43.283 +380928,124.92,40.877 +380929,123.89,47.765 +380930,123.78,45.585 +380931,123.73,43.289 +380932,123.74,40.854 +380933,122.55,47.816 +380934,122.49,45.615 +380935,122.49,43.295 +380936,122.57,40.834 +380937,121.2,47.866 +380938,121.2,45.645 +380939,121.25,43.302 +380940,121.4,40.815 +380941,119.86,47.914 +380942,119.9,45.674 +380943,120.02,43.31 +380944,120.22,40.798 +380945,118.51,47.961 +380946,118.61,45.703 +380947,118.78,43.318 +380948,119.05,40.784 +380949,117.17,48.006 +380950,117.31,45.731 +380951,117.54,43.327 +380952,117.87,40.771 +380953,115.82,48.049 +380954,116.02,45.758 +380955,116.3,43.337 +380956,116.7,40.761 +380957,114.48,48.091 +380958,114.72,45.785 +380959,115.06,43.348 +380960,115.52,40.752 +380961,113.13,48.131 +380962,113.43,45.812 +380963,113.82,43.359 +380964,114.35,40.746 +380965,111.79,48.169 +380966,112.14,45.838 +380967,112.59,43.371 +380968,113.17,40.742 +380969,110.44,48.205 +380970,110.84,45.863 +380971,111.35,43.384 +380972,112,40.74 +380973,109.1,48.24 +380974,109.55,45.888 +380975,110.11,43.397 +380976,110.82,40.74 +380977,107.75,48.272 +380978,108.25,45.912 +380979,108.87,43.411 +380980,109.65,40.743 +380981,106.41,48.303 +380982,106.96,45.935 +380983,107.63,43.426 +380984,108.47,40.747 +380985,105.07,48.333 +380986,105.66,45.958 +380987,106.39,43.442 +380988,107.29,40.754 +380989,103.72,48.36 +380990,104.37,45.981 +380991,105.15,43.458 +380992,106.11,40.763 +380993,102.38,48.386 +380994,103.07,46.003 +380995,103.91,43.475 +380996,104.93,40.774 +380997,101.04,48.41 +380998,101.78,46.024 +380999,102.67,43.493 +381000,103.75,40.787 +381001,99.698,48.433 +381002,100.49,46.045 +381003,101.43,43.511 +381004,102.57,40.803 +381005,98.356,48.453 +381006,99.192,46.065 +381007,100.18,43.531 +381008,101.39,40.82 +381009,97.016,48.472 +381010,97.899,46.084 +381011,98.943,43.551 +381012,100.21,40.84 +381013,95.675,48.489 +381014,96.605,46.103 +381015,97.701,43.571 +381016,99.022,40.863 +381017,94.336,48.504 +381018,95.312,46.122 +381019,96.458,43.593 +381020,97.836,40.887 +381021,92.997,48.518 +381022,94.019,46.14 +381023,95.215,43.615 +381024,96.65,40.914 +381025,91.659,48.53 +381026,92.726,46.157 +381027,93.972,43.638 +381028,95.462,40.942 +381029,90.321,48.54 +381030,91.433,46.174 +381031,92.728,43.661 +381032,94.272,40.973 +381033,88.984,48.548 +381034,90.14,46.19 +381035,91.484,43.686 +381036,93.082,41.006 +381037,87.648,48.555 +381038,88.848,46.205 +381039,90.239,43.711 +381040,91.889,41.042 +381041,86.313,48.56 +381042,87.556,46.22 +381043,88.994,43.737 +381044,90.696,41.079 +381045,84.979,48.563 +381046,86.264,46.235 +381047,87.748,43.763 +381048,89.5,41.119 +381049,83.645,48.565 +381050,84.973,46.249 +381051,86.502,43.79 +381052,88.303,41.16 +381053,82.312,48.565 +381054,83.682,46.262 +381055,85.255,43.818 +381056,87.105,41.204 +381057,80.981,48.563 +381058,82.391,46.275 +381059,84.008,43.847 +381060,85.905,41.25 +381061,79.65,48.56 +381062,81.1,46.287 +381063,82.76,43.876 +381064,84.703,41.298 +381065,78.32,48.555 +381066,79.81,46.299 +381067,81.512,43.906 +381068,83.499,41.348 +381069,76.991,48.548 +381070,78.52,46.31 +381071,80.263,43.937 +381072,82.293,41.4 +381073,75.663,48.54 +381074,77.23,46.321 +381075,79.013,43.968 +381076,81.086,41.454 +381077,74.337,48.53 +381078,75.941,46.331 +381079,77.763,44 +381080,79.876,41.51 +381081,73.011,48.518 +381082,74.652,46.341 +381083,76.512,44.032 +381084,78.665,41.568 +381085,71.687,48.505 +381086,73.364,46.35 +381087,75.261,44.066 +381088,77.451,41.628 +381089,70.363,48.491 +381090,72.076,46.358 +381091,74.009,44.1 +381092,76.236,41.69 +381093,69.041,48.475 +381094,70.788,46.366 +381095,72.756,44.134 +381096,75.018,41.754 +381097,67.721,48.457 +381098,69.501,46.374 +381099,71.503,44.169 +381100,73.799,41.819 +381101,66.401,48.438 +381102,68.214,46.381 +381103,70.249,44.205 +381104,72.577,41.886 +381105,65.083,48.417 +381106,66.927,46.388 +381107,68.994,44.241 +381108,71.353,41.956 +381109,63.766,48.395 +381110,65.641,46.394 +381111,67.739,44.278 +381112,70.127,42.026 +381113,62.45,48.371 +381114,64.356,46.4 +381115,66.483,44.316 +381116,68.899,42.099 +381117,61.136,48.346 +381118,63.071,46.405 +381119,65.226,44.354 +381120,67.669,42.173 +381121,59.823,48.32 +381122,61.786,46.41 +381123,63.969,44.393 +381124,66.436,42.249 +381125,58.511,48.292 +381126,60.502,46.414 +381127,62.71,44.432 +381128,65.202,42.327 +381129,57.201,48.263 +381130,59.218,46.418 +381131,61.452,44.472 +381132,63.965,42.406 +381133,55.892,48.233 +381134,57.935,46.422 +381135,60.192,44.512 +381136,62.725,42.487 +381137,54.585,48.201 +381138,56.652,46.425 +381139,58.932,44.553 +381140,61.484,42.569 +381141,53.28,48.168 +381142,55.37,46.428 +381143,57.67,44.595 +381144,60.24,42.652 +381145,51.976,48.134 +381146,54.088,46.43 +381147,56.409,44.637 +381148,58.994,42.737 +381149,50.673,48.098 +381150,52.807,46.432 +381151,55.146,44.679 +381152,57.745,42.824 +381153,49.372,48.061 +381154,51.526,46.434 +381155,53.883,44.722 +381156,56.495,42.911 +381157,48.073,48.023 +381158,50.246,46.435 +381159,52.619,44.765 +381160,55.242,43 +381161,46.775,47.984 +381162,48.966,46.436 +381163,51.354,44.809 +381164,53.986,43.091 +381165,45.479,47.944 +381166,47.687,46.437 +381167,50.088,44.853 +381168,52.729,43.182 +381169,44.184,47.903 +381170,46.408,46.437 +381171,48.822,44.898 +381172,51.469,43.275 +381173,42.892,47.86 +381174,45.13,46.437 +381175,47.554,44.943 +381176,50.207,43.369 +381177,41.601,47.817 +381178,43.853,46.436 +381179,46.286,44.988 +381180,48.942,43.463 +381181,40.311,47.773 +381182,42.576,46.436 +381183,45.018,45.034 +381184,47.676,43.559 +381185,39.024,47.727 +381186,41.3,46.435 +381187,43.748,45.081 +381188,46.407,43.656 +381189,37.738,47.681 +381190,40.024,46.434 +381191,42.478,45.127 +381192,45.135,43.754 +381193,36.454,47.634 +381194,38.748,46.432 +381195,41.207,45.174 +381196,43.862,43.853 +381197,35.171,47.586 +381198,37.474,46.43 +381199,39.935,45.221 +381200,42.586,43.952 +381201,33.891,47.537 +381202,36.2,46.428 +381203,38.662,45.269 +381204,41.308,44.052 +381205,32.612,47.487 +381206,34.926,46.426 +381207,37.389,45.317 +381208,40.028,44.154 +381209,31.335,47.437 +381210,33.653,46.424 +381211,36.115,45.365 +381212,38.746,44.255 +381213,30.06,47.386 +381214,32.381,46.421 +381215,34.84,45.414 +381216,37.461,44.358 +381217,28.786,47.334 +381218,31.109,46.418 +381219,33.564,45.462 +381220,36.175,44.461 +381221,27.515,47.281 +381222,29.838,46.415 +381223,32.287,45.511 +381224,34.886,44.565 +381225,26.246,47.228 +381226,28.567,46.412 +381227,31.01,45.561 +381228,33.595,44.669 +381229,24.978,47.174 +381230,27.297,46.409 +381231,29.732,45.61 +381232,32.302,44.773 +381233,23.712,47.12 +381234,26.027,46.406 +381235,28.453,45.66 +381236,31.007,44.879 +381237,22.448,47.065 +381238,24.758,46.402 +381239,27.174,45.71 +381240,29.71,44.984 +381241,21.186,47.01 +381242,23.49,46.399 +381243,25.894,45.76 +381244,28.411,45.09 +381245,19.926,46.954 +381246,22.222,46.395 +381247,24.613,45.81 +381248,27.109,45.196 +381249,18.667,46.898 +381250,20.955,46.391 +381251,23.331,45.86 +381252,25.806,45.303 +381253,17.411,46.841 +381254,19.688,46.387 +381255,22.048,45.911 +381256,24.501,45.409 +381257,16.157,46.784 +381258,18.422,46.383 +381259,20.765,45.961 +381260,23.194,45.516 +381261,14.904,46.727 +381262,17.157,46.379 +381263,19.481,46.012 +381264,21.885,45.623 +381265,13.653,46.67 +381266,15.892,46.375 +381267,18.196,46.063 +381268,20.575,45.73 +381269,12.405,46.612 +381270,14.627,46.371 +381271,16.911,46.114 +381272,19.262,45.837 +381273,11.158,46.554 +381274,13.363,46.367 +381275,15.625,46.164 +381276,17.948,45.944 +381277,9.9126,46.496 +381278,12.1,46.363 +381279,14.338,46.215 +381280,16.632,46.051 +381281,8.6694,46.438 +381282,10.837,46.359 +381283,13.051,46.266 +381284,15.314,46.157 +381285,7.4282,46.38 +381286,9.575,46.356 +381287,11.763,46.317 +381288,13.994,46.264 +381289,6.1888,46.322 +381290,8.3133,46.352 +381291,10.474,46.368 +381292,12.673,46.371 +381293,4.9512,46.264 +381294,7.0521,46.348 +381295,9.1842,46.419 +381296,11.35,46.477 +381297,3.7155,46.206 +381298,5.7915,46.344 +381299,7.894,46.47 +381300,10.025,46.583 +381301,2.4817,46.148 +381302,4.5313,46.341 +381303,6.6032,46.521 +381304,8.6994,46.689 +381305,1.2496,46.091 +381306,3.2717,46.337 +381307,5.3118,46.572 +381308,7.3717,46.794 +381309,0.019424,46.033 +381310,2.0125,46.334 +381311,4.0197,46.623 +381312,6.0425,46.899 +381313,358.79,45.976 +381314,0.75386,46.331 +381315,2.727,46.674 +381316,4.7118,47.003 +381317,357.56,45.919 +381318,359.5,46.328 +381319,1.4337,46.724 +381320,3.3797,47.107 +381321,356.34,45.862 +381322,358.24,46.325 +381323,0.13986,46.775 +381324,2.0462,47.211 +381325,355.12,45.806 +381326,356.98,46.322 +381327,358.85,46.825 +381328,0.71125,47.314 +381329,353.89,45.75 +381330,355.72,46.32 +381331,357.55,46.875 +381332,359.37,47.416 +381333,352.68,45.695 +381334,354.47,46.317 +381335,356.25,46.925 +381336,358.04,47.518 +381337,351.46,45.64 +381338,353.21,46.315 +381339,354.96,46.975 +381340,356.7,47.619 +381341,350.24,45.586 +381342,351.96,46.314 +381343,353.66,47.025 +381344,355.36,47.719 +381345,349.03,45.532 +381346,350.7,46.312 +381347,352.36,47.075 +381348,354.02,47.819 +381349,347.81,45.479 +381350,349.45,46.311 +381351,351.07,47.124 +381352,352.67,47.918 +381353,346.6,45.426 +381354,348.19,46.31 +381355,349.77,47.173 +381356,351.33,48.016 +381357,345.39,45.374 +381358,346.94,46.309 +381359,348.47,47.222 +381360,349.99,48.113 +381361,344.18,45.323 +381362,345.69,46.308 +381363,347.17,47.271 +381364,348.64,48.209 +381365,342.98,45.273 +381366,344.43,46.308 +381367,345.87,47.319 +381368,347.29,48.305 +381369,341.77,45.223 +381370,343.18,46.308 +381371,344.57,47.367 +381372,345.95,48.399 +381373,340.57,45.175 +381374,341.93,46.309 +381375,343.27,47.415 +381376,344.6,48.493 +381377,339.36,45.127 +381378,340.67,46.31 +381379,341.97,47.462 +381380,343.25,48.585 +381381,338.16,45.08 +381382,339.42,46.311 +381383,340.67,47.51 +381384,341.9,48.677 +381385,336.96,45.035 +381386,338.17,46.313 +381387,339.37,47.557 +381388,340.55,48.767 +381389,335.76,44.99 +381390,336.92,46.315 +381391,338.06,47.603 +381392,339.19,48.857 +381393,334.57,44.946 +381394,335.67,46.317 +381395,336.76,47.65 +381396,337.84,48.945 +381397,333.37,44.904 +381398,334.42,46.32 +381399,335.46,47.696 +381400,336.49,49.032 +381401,332.17,44.862 +381402,333.17,46.323 +381403,334.15,47.741 +381404,335.13,49.118 +381405,330.98,44.822 +381406,331.92,46.327 +381407,332.85,47.786 +381408,333.78,49.202 +381409,329.79,44.783 +381410,330.67,46.331 +381411,331.55,47.831 +381412,332.42,49.286 +381413,328.59,44.745 +381414,329.42,46.335 +381415,330.24,47.876 +381416,331.07,49.368 +381417,327.4,44.708 +381418,328.17,46.34 +381419,328.94,47.92 +381420,329.71,49.449 +381421,326.21,44.673 +381422,326.92,46.346 +381423,327.63,47.963 +381424,328.35,49.529 +381425,325.02,44.639 +381426,325.67,46.352 +381427,326.33,48.007 +381428,326.99,49.607 +381429,323.83,44.606 +381430,324.42,46.358 +381431,325.02,48.05 +381432,325.63,49.684 +381433,322.65,44.575 +381434,323.17,46.365 +381435,323.72,48.092 +381436,324.28,49.76 +381437,321.46,44.546 +381438,321.92,46.373 +381439,322.41,48.134 +381440,322.92,49.834 +381441,320.27,44.517 +381442,320.67,46.381 +381443,321.1,48.175 +381444,321.56,49.907 +381445,319.09,44.491 +381446,319.42,46.389 +381447,319.8,48.217 +381448,320.2,49.978 +381449,317.9,44.465 +381450,318.18,46.398 +381451,318.49,48.257 +381452,318.84,50.048 +381453,316.71,44.442 +381454,316.93,46.408 +381455,317.18,48.297 +381456,317.48,50.117 +381457,315.53,44.42 +381458,315.68,46.418 +381459,315.88,48.337 +381460,316.12,50.184 +381461,314.35,44.399 +381462,314.43,46.429 +381463,314.57,48.376 +381464,314.76,50.25 +381465,313.16,44.381 +381466,313.18,46.44 +381467,313.26,48.415 +381468,313.4,50.314 +381469,311.98,44.363 +381470,311.93,46.452 +381471,311.96,48.453 +381472,312.04,50.376 +381473,310.79,44.348 +381474,310.68,46.464 +381475,310.65,48.491 +381476,310.67,50.437 +381477,309.61,44.334 +381478,309.43,46.477 +381479,309.34,48.528 +381480,309.31,50.497 +381481,308.43,44.322 +381482,308.19,46.491 +381483,308.03,48.565 +381484,307.95,50.555 +381485,307.24,44.312 +381486,306.94,46.505 +381487,306.73,48.601 +381488,306.59,50.611 +381489,306.06,44.304 +381490,305.69,46.52 +381491,305.42,48.637 +381492,305.23,50.666 +381493,304.87,44.297 +381494,304.44,46.535 +381495,304.11,48.672 +381496,303.87,50.719 +381497,303.69,44.292 +381498,303.19,46.551 +381499,302.8,48.706 +381500,302.51,50.77 +381501,302.51,44.289 +381502,301.94,46.568 +381503,301.5,48.741 +381504,301.15,50.82 +381505,301.32,44.288 +381506,300.69,46.585 +381507,300.19,48.774 +381508,299.79,50.869 +381509,300.14,44.289 +381510,299.44,46.603 +381511,298.88,48.807 +381512,298.43,50.915 +381513,298.95,44.291 +381514,298.19,46.621 +381515,297.57,48.84 +381516,297.07,50.961 +381517,297.76,44.296 +381518,296.94,46.641 +381519,296.27,48.872 +381520,295.71,51.004 +381521,296.58,44.302 +381522,295.69,46.66 +381523,294.96,48.903 +381524,294.35,51.046 +381525,295.39,44.311 +381526,294.44,46.681 +381527,293.65,48.934 +381528,293,51.086 +381529,294.2,44.321 +381530,293.19,46.702 +381531,292.34,48.964 +381532,291.64,51.124 +381533,293.01,44.333 +381534,291.93,46.723 +381535,291.04,48.994 +381536,290.28,51.161 +381537,291.82,44.347 +381538,290.68,46.746 +381539,289.73,49.023 +381540,288.92,51.196 +381541,290.63,44.363 +381542,289.43,46.769 +381543,288.42,49.052 +381544,287.57,51.23 +381545,289.44,44.381 +381546,288.18,46.792 +381547,287.12,49.08 +381548,286.21,51.262 +381549,288.25,44.401 +381550,286.92,46.816 +381551,285.81,49.108 +381552,284.86,51.292 +381553,287.05,44.423 +381554,285.67,46.841 +381555,284.5,49.135 +381556,283.5,51.321 +381557,285.86,44.447 +381558,284.42,46.867 +381559,283.2,49.161 +381560,282.15,51.348 +381561,284.66,44.473 +381562,283.16,46.893 +381563,281.89,49.187 +381564,280.79,51.373 +381565,283.46,44.5 +381566,281.91,46.92 +381567,280.58,49.212 +381568,279.44,51.396 +381569,282.26,44.53 +381570,280.65,46.947 +381571,279.28,49.237 +381572,278.09,51.418 +381573,281.06,44.562 +381574,279.4,46.975 +381575,277.97,49.261 +381576,276.74,51.439 +381577,279.86,44.595 +381578,278.14,47.004 +381579,276.67,49.285 +381580,275.39,51.457 +381581,278.66,44.631 +381582,276.88,47.033 +381583,275.36,49.308 +381584,274.04,51.474 +381585,277.45,44.668 +381586,275.63,47.063 +381587,274.06,49.331 +381588,272.69,51.49 +381589,276.25,44.708 +381590,274.37,47.094 +381591,272.76,49.353 +381592,271.35,51.504 +381593,275.04,44.749 +381594,273.11,47.125 +381595,271.45,49.374 +381596,270,51.516 +381597,273.83,44.792 +381598,271.85,47.157 +381599,270.15,49.395 +381600,268.65,51.526 +381601,272.62,44.837 +381602,270.59,47.189 +381603,268.84,49.416 +381604,267.31,51.535 +381605,271.41,44.884 +381606,269.33,47.222 +381607,267.54,49.436 +381608,265.97,51.543 +381609,270.19,44.932 +381610,268.07,47.256 +381611,266.24,49.455 +381612,264.62,51.549 +381613,268.97,44.983 +381614,266.81,47.29 +381615,264.94,49.474 +381616,263.28,51.553 +381617,267.76,45.035 +381618,265.55,47.325 +381619,263.64,49.492 +381620,261.94,51.556 +381621,266.53,45.09 +381622,264.29,47.36 +381623,262.33,49.51 +381624,260.6,51.557 +381625,265.31,45.146 +381626,263.03,47.396 +381627,261.03,49.528 +381628,259.27,51.557 +381629,264.09,45.203 +381630,261.76,47.433 +381631,259.73,49.544 +381632,257.93,51.555 +381633,262.86,45.263 +381634,260.5,47.47 +381635,258.43,49.561 +381636,256.59,51.552 +381637,261.63,45.324 +381638,259.23,47.508 +381639,257.13,49.577 +381640,255.26,51.547 +381641,260.4,45.387 +381642,257.97,47.546 +381643,255.83,49.592 +381644,253.93,51.541 +381645,259.17,45.451 +381646,256.7,47.585 +381647,254.53,49.607 +381648,252.6,51.533 +381649,257.93,45.517 +381650,255.44,47.624 +381651,253.24,49.621 +381652,251.27,51.524 +381653,256.7,45.585 +381654,254.17,47.664 +381655,251.94,49.635 +381656,249.94,51.514 +381657,255.46,45.654 +381658,252.9,47.705 +381659,250.64,49.649 +381660,248.61,51.502 +381661,254.21,45.725 +381662,251.63,47.746 +381663,249.34,49.662 +381664,247.28,51.489 +381665,252.97,45.798 +381666,250.36,47.787 +381667,248.05,49.674 +381668,245.96,51.474 +381669,251.72,45.872 +381670,249.09,47.829 +381671,246.75,49.687 +381672,244.64,51.458 +381673,250.47,45.947 +381674,247.82,47.872 +381675,245.45,49.698 +381676,243.32,51.441 +381677,249.22,46.024 +381678,246.55,47.915 +381679,244.16,49.71 +381680,242,51.423 +381681,247.97,46.102 +381682,245.28,47.958 +381683,242.86,49.721 +381684,240.68,51.403 +381685,246.72,46.182 +381686,244,48.002 +381687,241.57,49.731 +381688,239.36,51.382 +381689,245.46,46.263 +381690,242.73,48.046 +381691,240.28,49.741 +381692,238.05,51.36 +381693,244.2,46.345 +381694,241.45,48.091 +381695,238.98,49.751 +381696,236.73,51.336 +381697,242.94,46.428 +381698,240.18,48.136 +381699,237.69,49.76 +381700,235.42,51.312 +381701,241.67,46.513 +381702,238.9,48.182 +381703,236.4,49.769 +381704,234.11,51.286 +381705,240.4,46.599 +381706,237.62,48.228 +381707,235.11,49.778 +381708,232.8,51.259 +381709,239.13,46.686 +381710,236.35,48.274 +381711,233.82,49.786 +381712,231.49,51.232 +381713,237.86,46.774 +381714,235.07,48.321 +381715,232.53,49.794 +381716,230.19,51.203 +381717,236.59,46.864 +381718,233.79,48.368 +381719,231.24,49.802 +381720,228.89,51.173 +381721,235.31,46.954 +381722,232.51,48.416 +381723,229.95,49.809 +381724,227.58,51.142 +381725,234.03,47.045 +381726,231.23,48.464 +381727,228.66,49.816 +381728,226.28,51.11 +381729,232.75,47.138 +381730,229.94,48.512 +381731,227.37,49.823 +381732,224.98,51.077 +381733,231.47,47.231 +381734,228.66,48.561 +381735,226.08,49.829 +381736,223.69,51.043 +381737,230.18,47.325 +381738,227.38,48.61 +381739,224.79,49.835 +381740,222.39,51.009 +381741,228.9,47.42 +381742,226.09,48.659 +381743,223.51,49.841 +381744,221.1,50.973 +381745,227.61,47.516 +381746,224.81,48.708 +381747,222.22,49.847 +381748,219.81,50.937 +381749,226.31,47.613 +381750,223.52,48.758 +381751,220.94,49.852 +381752,218.52,50.9 +381753,225.02,47.71 +381754,222.24,48.808 +381755,219.65,49.857 +381756,217.23,50.862 +381757,223.72,47.808 +381758,220.95,48.859 +381759,218.37,49.862 +381760,215.95,50.823 +381761,222.42,47.907 +381762,219.66,48.909 +381763,217.08,49.867 +381764,214.66,50.784 +381765,221.12,48.006 +381766,218.37,48.96 +381767,215.8,49.871 +381768,213.38,50.744 +381769,219.82,48.106 +381770,217.08,49.011 +381771,214.52,49.875 +381772,212.1,50.703 +381773,218.51,48.206 +381774,215.79,49.062 +381775,213.24,49.879 +381776,210.82,50.662 +381777,217.21,48.307 +381778,214.5,49.114 +381779,211.96,49.883 +381780,209.54,50.62 +381781,215.9,48.408 +381782,213.21,49.165 +381783,210.68,49.887 +381784,208.27,50.578 +381785,214.59,48.51 +381786,211.92,49.217 +381787,209.4,49.891 +381788,207,50.535 +381789,213.27,48.612 +381790,210.63,49.269 +381791,208.12,49.894 +381792,205.73,50.492 +381793,211.96,48.714 +381794,209.33,49.321 +381795,206.84,49.898 +381796,204.46,50.448 +381797,210.64,48.817 +381798,208.04,49.373 +381799,205.56,49.901 +381800,203.19,50.404 +381801,209.32,48.919 +381802,206.74,49.425 +381803,204.28,49.904 +381804,201.92,50.36 +381805,208,49.022 +381806,205.45,49.478 +381807,203,49.908 +381808,200.66,50.315 +381809,206.67,49.126 +381810,204.15,49.53 +381811,201.73,49.911 +381812,199.4,50.27 +381813,205.35,49.229 +381814,202.85,49.583 +381815,200.45,49.914 +381816,198.14,50.225 +381817,204.02,49.332 +381818,201.55,49.635 +381819,199.18,49.917 +381820,196.88,50.179 +381821,202.69,49.436 +381822,200.25,49.688 +381823,197.9,49.92 +381824,195.62,50.134 +381825,201.36,49.539 +381826,198.95,49.74 +381827,196.63,49.923 +381828,194.37,50.088 +381829,200.03,49.642 +381830,197.65,49.793 +381831,195.35,49.926 +381832,193.12,50.042 +381833,198.69,49.745 +381834,196.35,49.846 +381835,194.08,49.929 +381836,191.87,49.996 +381837,197.36,49.849 +381838,195.05,49.898 +381839,192.81,49.932 +381840,190.62,49.95 +381841,196.02,49.951 +381842,193.75,49.951 +381843,191.53,49.935 +381844,189.37,49.904 +381845,194.68,50.054 +381846,192.45,50.004 +381847,190.26,49.938 +381848,188.13,49.858 +381849,193.34,50.157 +381850,191.14,50.056 +381851,188.99,49.941 +381852,186.88,49.813 +381853,192,50.259 +381854,189.84,50.109 +381855,187.72,49.944 +381856,185.64,49.767 +381857,190.65,50.361 +381858,188.53,50.161 +381859,186.45,49.947 +381860,184.4,49.721 +381861,189.31,50.462 +381862,187.23,50.213 +381863,185.18,49.951 +381864,183.16,49.676 +381865,187.96,50.563 +381866,185.92,50.266 +381867,183.91,49.954 +381868,181.93,49.631 +381869,186.61,50.664 +381870,184.61,50.318 +381871,182.64,49.958 +381872,180.69,49.586 +381873,185.26,50.764 +381874,183.31,50.37 +381875,181.37,49.962 +381876,179.46,49.542 +381877,183.91,50.864 +381878,182,50.422 +381879,180.1,49.966 +381880,178.23,49.498 +381881,182.56,50.963 +381882,180.69,50.473 +381883,178.84,49.97 +381884,177,49.454 +381885,181.21,51.061 +381886,179.38,50.525 +381887,177.57,49.974 +381888,175.77,49.411 +381889,179.85,51.159 +381890,178.07,50.576 +381891,176.3,49.979 +381892,174.54,49.368 +381893,178.5,51.256 +381894,176.76,50.627 +381895,175.04,49.983 +381896,173.32,49.326 +381897,177.14,51.353 +381898,175.45,50.678 +381899,173.77,49.988 +381900,172.1,49.284 +381901,175.78,51.449 +381902,174.14,50.729 +381903,172.51,49.993 +381904,170.87,49.243 +381905,174.42,51.544 +381906,172.83,50.78 +381907,171.24,49.999 +381908,169.65,49.202 +381909,173.06,51.638 +381910,171.52,50.83 +381911,169.98,50.004 +381912,168.43,49.162 +381913,171.7,51.732 +381914,170.21,50.88 +381915,168.71,50.01 +381916,167.22,49.123 +381917,170.34,51.824 +381918,168.89,50.93 +381919,167.45,50.016 +381920,166,49.084 +381921,168.97,51.916 +381922,167.58,50.979 +381923,166.18,50.022 +381924,164.79,49.047 +381925,167.61,52.007 +381926,166.27,51.029 +381927,164.92,50.029 +381928,163.57,49.01 +381929,166.24,52.097 +381930,164.95,51.078 +381931,163.66,50.036 +381932,162.36,48.973 +381933,164.88,52.186 +381934,163.64,51.126 +381935,162.39,50.043 +381936,161.15,48.938 +381937,163.51,52.274 +381938,162.32,51.175 +381939,161.13,50.051 +381940,159.94,48.904 +381941,162.14,52.361 +381942,161.01,51.223 +381943,159.87,50.059 +381944,158.73,48.87 +381945,160.78,52.447 +381946,159.69,51.27 +381947,158.61,50.067 +381948,157.52,48.838 +381949,159.41,52.532 +381950,158.38,51.318 +381951,157.35,50.076 +381952,156.32,48.806 +381953,158.04,52.616 +381954,157.06,51.365 +381955,156.08,50.085 +381956,155.11,48.776 +381957,156.67,52.698 +381958,155.74,51.411 +381959,154.82,50.094 +381960,153.91,48.746 +381961,155.3,52.78 +381962,154.43,51.458 +381963,153.56,50.104 +381964,152.7,48.718 +381965,153.93,52.86 +381966,153.11,51.504 +381967,152.3,50.114 +381968,151.5,48.691 +381969,152.56,52.939 +381970,151.79,51.549 +381971,151.04,50.125 +381972,150.3,48.665 +381973,151.18,53.017 +381974,150.48,51.594 +381975,149.78,50.136 +381976,149.1,48.64 +381977,149.81,53.094 +381978,149.16,51.639 +381979,148.52,50.147 +381980,147.9,48.616 +381981,148.44,53.169 +381982,147.84,51.684 +381983,147.26,50.159 +381984,146.7,48.594 +381985,147.06,53.244 +381986,146.52,51.728 +381987,146,50.171 +381988,145.5,48.572 +381989,145.69,53.317 +381990,145.2,51.771 +381991,144.74,50.184 +381992,144.3,48.553 +381993,144.32,53.388 +381994,143.89,51.814 +381995,143.48,50.197 +381996,143.1,48.534 +381997,142.94,53.458 +381998,142.57,51.857 +381999,142.22,50.21 +382000,141.9,48.517 +382001,141.57,53.527 +382002,141.25,51.899 +382003,140.96,50.224 +382004,140.71,48.501 +382005,140.2,53.595 +382006,139.93,51.941 +382007,139.7,50.239 +382008,139.51,48.486 +382009,138.82,53.661 +382010,138.61,51.982 +382011,138.44,50.254 +382012,138.31,48.473 +382013,137.45,53.726 +382014,137.29,52.023 +382015,137.18,50.269 +382016,137.12,48.462 +382017,136.07,53.789 +382018,135.97,52.063 +382019,135.92,50.285 +382020,135.92,48.452 +382021,134.7,53.851 +382022,134.65,52.103 +382023,134.66,50.302 +382024,134.73,48.443 +382025,133.32,53.912 +382026,133.33,52.143 +382027,133.4,50.319 +382028,133.53,48.436 +382029,131.95,53.971 +382030,132.01,52.182 +382031,132.14,50.336 +382032,132.34,48.43 +382033,130.57,54.028 +382034,130.69,52.22 +382035,130.88,50.354 +382036,131.14,48.426 +382037,129.2,54.084 +382038,129.37,52.258 +382039,129.62,50.373 +382040,129.94,48.424 +382041,127.83,54.139 +382042,128.05,52.296 +382043,128.36,50.392 +382044,128.75,48.423 +382045,126.45,54.192 +382046,126.74,52.332 +382047,127.1,50.411 +382048,127.55,48.423 +382049,125.08,54.244 +382050,125.42,52.369 +382051,125.84,50.431 +382052,126.36,48.425 +382053,123.71,54.294 +382054,124.1,52.405 +382055,124.57,50.452 +382056,125.16,48.429 +382057,122.33,54.343 +382058,122.78,52.44 +382059,123.31,50.473 +382060,123.96,48.435 +382061,120.96,54.39 +382062,121.46,52.475 +382063,122.05,50.495 +382064,122.76,48.442 +382065,119.59,54.435 +382066,120.14,52.51 +382067,120.79,50.517 +382068,121.57,48.451 +382069,118.22,54.479 +382070,118.82,52.544 +382071,119.53,50.54 +382072,120.37,48.461 +382073,116.85,54.522 +382074,117.5,52.577 +382075,118.27,50.563 +382076,119.17,48.473 +382077,115.48,54.563 +382078,116.18,52.61 +382079,117,50.587 +382080,117.97,48.487 +382081,114.11,54.602 +382082,114.86,52.642 +382083,115.74,50.612 +382084,116.77,48.503 +382085,112.74,54.64 +382086,113.54,52.674 +382087,114.48,50.637 +382088,115.57,48.52 +382089,111.37,54.677 +382090,112.23,52.705 +382091,113.21,50.662 +382092,114.37,48.539 +382093,110,54.711 +382094,110.91,52.736 +382095,111.95,50.688 +382096,113.16,48.559 +382097,108.63,54.745 +382098,109.59,52.766 +382099,110.69,50.715 +382100,111.96,48.582 +382101,107.26,54.776 +382102,108.27,52.796 +382103,109.42,50.742 +382104,110.75,48.606 +382105,105.9,54.806 +382106,106.95,52.825 +382107,108.16,50.77 +382108,109.55,48.631 +382109,104.53,54.835 +382110,105.64,52.854 +382111,106.89,50.798 +382112,108.34,48.659 +382113,103.17,54.862 +382114,104.32,52.882 +382115,105.63,50.827 +382116,107.13,48.688 +382117,101.8,54.888 +382118,103,52.91 +382119,104.36,50.857 +382120,105.92,48.719 +382121,100.44,54.911 +382122,101.68,52.937 +382123,103.1,50.887 +382124,104.71,48.751 +382125,99.077,54.934 +382126,100.37,52.963 +382127,101.83,50.917 +382128,103.5,48.786 +382129,97.716,54.955 +382130,99.052,52.99 +382131,100.56,50.948 +382132,102.29,48.822 +382133,96.355,54.974 +382134,97.736,53.015 +382135,99.293,50.98 +382136,101.07,48.859 +382137,94.996,54.992 +382138,96.42,53.04 +382139,98.025,51.012 +382140,99.854,48.899 +382141,93.637,55.008 +382142,95.105,53.065 +382143,96.756,51.045 +382144,98.636,48.94 +382145,92.28,55.023 +382146,93.79,53.089 +382147,95.487,51.078 +382148,97.416,48.982 +382149,90.924,55.037 +382150,92.476,53.112 +382151,94.217,51.112 +382152,96.195,49.027 +382153,89.568,55.049 +382154,91.161,53.135 +382155,92.946,51.146 +382156,94.972,49.073 +382157,88.214,55.059 +382158,89.847,53.158 +382159,91.676,51.181 +382160,93.748,49.12 +382161,86.861,55.068 +382162,88.534,53.18 +382163,90.404,51.217 +382164,92.521,49.17 +382165,85.509,55.076 +382166,87.221,53.201 +382167,89.132,51.253 +382168,91.293,49.22 +382169,84.159,55.082 +382170,85.908,53.222 +382171,87.859,51.289 +382172,90.063,49.273 +382173,82.809,55.086 +382174,84.596,53.243 +382175,86.586,51.326 +382176,88.831,49.327 +382177,81.461,55.09 +382178,83.284,53.263 +382179,85.312,51.363 +382180,87.597,49.382 +382181,80.114,55.092 +382182,81.972,53.282 +382183,84.037,51.401 +382184,86.362,49.439 +382185,78.769,55.092 +382186,80.661,53.301 +382187,82.762,51.44 +382188,85.124,49.498 +382189,77.424,55.091 +382190,79.351,53.32 +382191,81.487,51.479 +382192,83.884,49.558 +382193,76.081,55.089 +382194,78.041,53.338 +382195,80.21,51.518 +382196,82.643,49.62 +382197,74.74,55.085 +382198,76.731,53.356 +382199,78.933,51.558 +382200,81.399,49.683 +382201,73.4,55.081 +382202,75.422,53.373 +382203,77.655,51.598 +382204,80.153,49.747 +382205,72.061,55.074 +382206,74.113,53.39 +382207,76.377,51.639 +382208,78.905,49.813 +382209,70.724,55.067 +382210,72.805,53.406 +382211,75.098,51.68 +382212,77.655,49.88 +382213,69.388,55.058 +382214,71.497,53.422 +382215,73.818,51.722 +382216,76.403,49.949 +382217,68.054,55.048 +382218,70.19,53.438 +382219,72.537,51.764 +382220,75.149,50.019 +382221,66.721,55.037 +382222,68.883,53.453 +382223,71.256,51.807 +382224,73.893,50.09 +382225,65.39,55.025 +382226,67.576,53.468 +382227,69.974,51.85 +382228,72.634,50.163 +382229,64.06,55.012 +382230,66.271,53.482 +382231,68.692,51.893 +382232,71.373,50.237 +382233,62.732,54.997 +382234,64.966,53.496 +382235,67.408,51.937 +382236,70.11,50.312 +382237,61.405,54.981 +382238,63.661,53.51 +382239,66.124,51.981 +382240,68.845,50.388 +382241,60.08,54.964 +382242,62.357,53.523 +382243,64.839,52.026 +382244,67.577,50.465 +382245,58.757,54.946 +382246,61.053,53.536 +382247,63.554,52.071 +382248,66.307,50.544 +382249,57.436,54.927 +382250,59.75,53.548 +382251,62.268,52.116 +382252,65.035,50.624 +382253,56.116,54.907 +382254,58.447,53.56 +382255,60.981,52.162 +382256,63.761,50.704 +382257,54.797,54.886 +382258,57.146,53.572 +382259,59.693,52.208 +382260,62.484,50.786 +382261,53.481,54.864 +382262,55.844,53.584 +382263,58.404,52.254 +382264,61.205,50.869 +382265,52.166,54.841 +382266,54.543,53.595 +382267,57.115,52.301 +382268,59.924,50.953 +382269,50.853,54.817 +382270,53.243,53.606 +382271,55.825,52.348 +382272,58.64,51.038 +382273,49.541,54.792 +382274,51.943,53.616 +382275,54.534,52.395 +382276,57.355,51.123 +382277,48.231,54.766 +382278,50.644,53.626 +382279,53.243,52.443 +382280,56.067,51.21 +382281,46.924,54.74 +382282,49.346,53.636 +382283,51.951,52.491 +382284,54.777,51.297 +382285,45.617,54.712 +382286,48.048,53.646 +382287,50.658,52.539 +382288,53.484,51.386 +382289,44.313,54.684 +382290,46.75,53.655 +382291,49.364,52.587 +382292,52.189,51.475 +382293,43.01,54.655 +382294,45.454,53.665 +382295,48.069,52.636 +382296,50.892,51.564 +382297,41.71,54.625 +382298,44.157,53.673 +382299,46.774,52.685 +382300,49.593,51.655 +382301,40.411,54.595 +382302,42.862,53.682 +382303,45.478,52.734 +382304,48.292,51.746 +382305,39.114,54.564 +382306,41.567,53.691 +382307,44.181,52.784 +382308,46.988,51.838 +382309,37.818,54.532 +382310,40.272,53.699 +382311,42.884,52.833 +382312,45.682,51.93 +382313,36.525,54.5 +382314,38.979,53.707 +382315,41.586,52.883 +382316,44.374,52.023 +382317,35.233,54.467 +382318,37.685,53.715 +382319,40.287,52.933 +382320,43.064,52.117 +382321,33.943,54.433 +382322,36.393,53.723 +382323,38.987,52.983 +382324,41.752,52.211 +382325,32.655,54.399 +382326,35.101,53.73 +382327,37.686,53.033 +382328,40.437,52.305 +382329,31.369,54.365 +382330,33.809,53.737 +382331,36.385,53.084 +382332,39.121,52.4 +382333,30.085,54.33 +382334,32.518,53.745 +382335,35.083,53.134 +382336,37.802,52.495 +382337,28.803,54.294 +382338,31.228,53.752 +382339,33.78,53.185 +382340,36.481,52.591 +382341,27.522,54.258 +382342,29.938,53.759 +382343,32.477,53.236 +382344,35.159,52.686 +382345,26.243,54.222 +382346,28.649,53.766 +382347,31.173,53.287 +382348,33.834,52.783 +382349,24.966,54.186 +382350,27.361,53.772 +382351,29.868,53.338 +382352,32.507,52.879 +382353,23.691,54.149 +382354,26.073,53.779 +382355,28.563,53.389 +382356,31.179,52.975 +382357,22.418,54.112 +382358,24.785,53.786 +382359,27.257,53.44 +382360,29.848,53.072 +382361,21.147,54.075 +382362,23.498,53.792 +382363,25.95,53.491 +382364,28.516,53.169 +382365,19.877,54.037 +382366,22.212,53.799 +382367,24.642,53.542 +382368,27.181,53.266 +382369,18.61,54 +382370,20.926,53.805 +382371,23.334,53.594 +382372,25.845,53.363 +382373,17.344,53.962 +382374,19.641,53.811 +382375,22.025,53.645 +382376,24.507,53.46 +382377,16.08,53.924 +382378,18.357,53.818 +382379,20.715,53.696 +382380,23.167,53.557 +382381,14.817,53.886 +382382,17.072,53.824 +382383,19.405,53.747 +382384,21.825,53.654 +382385,13.557,53.848 +382386,15.789,53.831 +382387,18.094,53.799 +382388,20.482,53.75 +382389,12.298,53.81 +382390,14.506,53.837 +382391,16.783,53.85 +382392,19.137,53.847 +382393,11.041,53.772 +382394,13.223,53.843 +382395,15.47,53.901 +382396,17.79,53.943 +382397,9.7859,53.735 +382398,11.942,53.85 +382399,14.158,53.952 +382400,16.442,54.04 +382401,8.5325,53.697 +382402,10.66,53.856 +382403,12.844,54.003 +382404,15.092,54.136 +382405,7.2807,53.659 +382406,9.3791,53.863 +382407,11.53,54.054 +382408,13.74,54.231 +382409,6.0307,53.622 +382410,8.0987,53.87 +382411,10.216,54.105 +382412,12.387,54.327 +382413,4.7823,53.585 +382414,6.8188,53.876 +382415,8.9005,54.156 +382416,11.033,54.422 +382417,3.5356,53.548 +382418,5.5393,53.883 +382419,7.5848,54.206 +382420,9.6769,54.516 +382421,2.2906,53.512 +382422,4.2603,53.89 +382423,6.2684,54.257 +382424,8.3194,54.611 +382425,1.0471,53.475 +382426,2.9818,53.897 +382427,4.9516,54.307 +382428,6.9606,54.704 +382429,359.81,53.439 +382430,1.7038,53.904 +382431,3.6342,54.358 +382432,5.6004,54.798 +382433,358.57,53.404 +382434,0.42617,53.912 +382435,2.3163,54.408 +382436,4.2388,54.89 +382437,357.33,53.369 +382438,359.15,53.919 +382439,0.99783,54.458 +382440,2.876,54.983 +382441,356.09,53.334 +382442,357.87,53.927 +382443,359.68,54.507 +382444,1.512,55.074 +382445,354.85,53.3 +382446,356.6,53.935 +382447,358.36,54.557 +382448,0.14672,55.165 +382449,353.62,53.267 +382450,355.32,53.943 +382451,357.04,54.606 +382452,358.78,55.256 +382453,352.39,53.233 +382454,354.04,53.951 +382455,355.72,54.655 +382456,357.41,55.345 +382457,351.16,53.201 +382458,352.77,53.959 +382459,354.4,54.704 +382460,356.04,55.434 +382461,349.93,53.169 +382462,351.49,53.968 +382463,353.08,54.753 +382464,354.67,55.523 +382465,348.7,53.138 +382466,350.22,53.977 +382467,351.76,54.801 +382468,353.3,55.61 +382469,347.47,53.108 +382470,348.95,53.986 +382471,350.43,54.849 +382472,351.93,55.697 +382473,346.24,53.078 +382474,347.67,53.995 +382475,349.11,54.897 +382476,350.56,55.783 +382477,345.02,53.049 +382478,346.4,54.005 +382479,347.79,54.945 +382480,349.19,55.868 +382481,343.8,53.02 +382482,345.13,54.014 +382483,346.46,54.992 +382484,347.81,55.952 +382485,342.57,52.993 +382486,343.85,54.025 +382487,345.14,55.039 +382488,346.44,56.035 +382489,341.35,52.966 +382490,342.58,54.035 +382491,343.82,55.086 +382492,345.06,56.118 +382493,340.13,52.941 +382494,341.31,54.046 +382495,342.49,55.132 +382496,343.68,56.199 +382497,338.91,52.916 +382498,340.04,54.057 +382499,341.17,55.178 +382500,342.31,56.28 +382501,337.7,52.892 +382502,338.77,54.068 +382503,339.84,55.224 +382504,340.93,56.359 +382505,336.48,52.869 +382506,337.49,54.08 +382507,338.52,55.27 +382508,339.55,56.437 +382509,335.26,52.847 +382510,336.22,54.092 +382511,337.19,55.315 +382512,338.17,56.515 +382513,334.05,52.826 +382514,334.95,54.104 +382515,335.87,55.359 +382516,336.79,56.591 +382517,332.83,52.806 +382518,333.68,54.117 +382519,334.54,55.404 +382520,335.41,56.666 +382521,331.62,52.787 +382522,332.41,54.13 +382523,333.21,55.448 +382524,334.03,56.74 +382525,330.41,52.769 +382526,331.14,54.143 +382527,331.89,55.491 +382528,332.65,56.813 +382529,329.2,52.753 +382530,329.87,54.157 +382531,330.56,55.535 +382532,331.26,56.885 +382533,327.98,52.737 +382534,328.6,54.171 +382535,329.23,55.577 +382536,329.88,56.956 +382537,326.77,52.723 +382538,327.33,54.186 +382539,327.9,55.62 +382540,328.5,57.025 +382541,325.56,52.71 +382542,326.06,54.201 +382543,326.58,55.662 +382544,327.12,57.093 +382545,324.35,52.698 +382546,324.79,54.216 +382547,325.25,55.703 +382548,325.73,57.16 +382549,323.15,52.687 +382550,323.52,54.232 +382551,323.92,55.745 +382552,324.35,57.226 +382553,321.94,52.677 +382554,322.25,54.248 +382555,322.59,55.785 +382556,322.97,57.29 +382557,320.73,52.669 +382558,320.98,54.264 +382559,321.27,55.826 +382560,321.58,57.354 +382561,319.52,52.662 +382562,319.71,54.281 +382563,319.94,55.866 +382564,320.2,57.415 +382565,318.31,52.656 +382566,318.44,54.299 +382567,318.61,55.905 +382568,318.81,57.476 +382569,317.11,52.652 +382570,317.17,54.317 +382571,317.28,55.944 +382572,317.43,57.535 +382573,315.9,52.649 +382574,315.9,54.335 +382575,315.95,55.983 +382576,316.05,57.593 +382577,314.69,52.647 +382578,314.63,54.354 +382579,314.62,56.021 +382580,314.66,57.65 +382581,313.48,52.647 +382582,313.36,54.373 +382583,313.3,56.058 +382584,313.28,57.705 +382585,312.28,52.648 +382586,312.09,54.392 +382587,311.97,56.096 +382588,311.89,57.759 +382589,311.07,52.651 +382590,310.82,54.413 +382591,310.64,56.132 +382592,310.51,57.811 +382593,309.86,52.655 +382594,309.55,54.433 +382595,309.31,56.168 +382596,309.13,57.862 +382597,308.66,52.66 +382598,308.28,54.454 +382599,307.98,56.204 +382600,307.75,57.912 +382601,307.45,52.667 +382602,307.01,54.476 +382603,306.65,56.24 +382604,306.36,57.96 +382605,306.24,52.675 +382606,305.74,54.498 +382607,305.33,56.274 +382608,304.98,58.007 +382609,305.03,52.685 +382610,304.47,54.52 +382611,304,56.309 +382612,303.6,58.053 +382613,303.82,52.696 +382614,303.2,54.543 +382615,302.67,56.342 +382616,302.22,58.097 +382617,302.62,52.709 +382618,301.93,54.566 +382619,301.34,56.376 +382620,300.83,58.139 +382621,301.41,52.723 +382622,300.66,54.59 +382623,300.01,56.409 +382624,299.45,58.181 +382625,300.2,52.739 +382626,299.39,54.615 +382627,298.68,56.441 +382628,298.07,58.22 +382629,298.99,52.756 +382630,298.12,54.64 +382631,297.36,56.473 +382632,296.69,58.259 +382633,297.77,52.775 +382634,296.84,54.665 +382635,296.03,56.504 +382636,295.31,58.296 +382637,296.56,52.795 +382638,295.57,54.691 +382639,294.7,56.535 +382640,293.93,58.331 +382641,295.35,52.817 +382642,294.3,54.717 +382643,293.37,56.566 +382644,292.56,58.365 +382645,294.14,52.84 +382646,293.03,54.744 +382647,292.05,56.595 +382648,291.18,58.397 +382649,292.92,52.865 +382650,291.75,54.771 +382651,290.72,56.625 +382652,289.8,58.429 +382653,291.71,52.891 +382654,290.48,54.799 +382655,289.39,56.654 +382656,288.42,58.458 +382657,290.49,52.919 +382658,289.21,54.828 +382659,288.07,56.682 +382660,287.05,58.486 +382661,289.27,52.948 +382662,287.93,54.856 +382663,286.74,56.71 +382664,285.67,58.513 +382665,288.06,52.979 +382666,286.66,54.886 +382667,285.41,56.737 +382668,284.3,58.538 +382669,286.84,53.012 +382670,285.38,54.915 +382671,284.09,56.764 +382672,282.93,58.562 +382673,285.62,53.046 +382674,284.11,54.946 +382675,282.76,56.791 +382676,281.56,58.585 +382677,284.4,53.081 +382678,282.83,54.976 +382679,281.44,56.817 +382680,280.18,58.606 +382681,283.17,53.118 +382682,281.56,55.008 +382683,280.11,56.842 +382684,278.81,58.625 +382685,281.95,53.156 +382686,280.28,55.039 +382687,278.79,56.867 +382688,277.44,58.644 +382689,280.72,53.196 +382690,279,55.072 +382691,277.46,56.892 +382692,276.08,58.66 +382693,279.5,53.237 +382694,277.73,55.104 +382695,276.14,56.916 +382696,274.71,58.676 +382697,278.27,53.28 +382698,276.45,55.137 +382699,274.82,56.939 +382700,273.34,58.69 +382701,277.04,53.325 +382702,275.17,55.171 +382703,273.49,56.962 +382704,271.98,58.702 +382705,275.81,53.37 +382706,273.89,55.205 +382707,272.17,56.985 +382708,270.61,58.714 +382709,274.57,53.418 +382710,272.61,55.24 +382711,270.85,57.007 +382712,269.25,58.724 +382713,273.34,53.466 +382714,271.33,55.275 +382715,269.53,57.028 +382716,267.89,58.732 +382717,272.1,53.516 +382718,270.05,55.31 +382719,268.2,57.05 +382720,266.53,58.739 +382721,270.86,53.568 +382722,268.77,55.346 +382723,266.88,57.07 +382724,265.17,58.745 +382725,269.63,53.62 +382726,267.49,55.382 +382727,265.56,57.091 +382728,263.81,58.75 +382729,268.38,53.675 +382730,266.21,55.419 +382731,264.24,57.11 +382732,262.45,58.753 +382733,267.14,53.73 +382734,264.92,55.456 +382735,262.92,57.13 +382736,261.09,58.755 +382737,265.9,53.787 +382738,263.64,55.494 +382739,261.6,57.149 +382740,259.74,58.756 +382741,264.65,53.845 +382742,262.36,55.532 +382743,260.28,57.167 +382744,258.39,58.755 +382745,263.4,53.905 +382746,261.07,55.57 +382747,258.96,57.185 +382748,257.04,58.753 +382749,262.15,53.965 +382750,259.79,55.609 +382751,257.65,57.203 +382752,255.69,58.75 +382753,260.9,54.027 +382754,258.5,55.649 +382755,256.33,57.22 +382756,254.34,58.746 +382757,259.64,54.091 +382758,257.22,55.688 +382759,255.01,57.237 +382760,252.99,58.741 +382761,258.39,54.155 +382762,255.93,55.728 +382763,253.69,57.253 +382764,251.64,58.734 +382765,257.13,54.221 +382766,254.64,55.769 +382767,252.38,57.269 +382768,250.3,58.726 +382769,255.87,54.288 +382770,253.35,55.81 +382771,251.06,57.285 +382772,248.95,58.718 +382773,254.61,54.356 +382774,252.06,55.851 +382775,249.75,57.3 +382776,247.61,58.708 +382777,253.34,54.425 +382778,250.77,55.893 +382779,248.43,57.315 +382780,246.27,58.697 +382781,252.07,54.495 +382782,249.48,55.934 +382783,247.12,57.33 +382784,244.93,58.684 +382785,250.81,54.566 +382786,248.19,55.977 +382787,245.8,57.344 +382788,243.6,58.671 +382789,249.53,54.639 +382790,246.9,56.019 +382791,244.49,57.357 +382792,242.26,58.657 +382793,248.26,54.712 +382794,245.61,56.062 +382795,243.18,57.371 +382796,240.93,58.642 +382797,246.99,54.786 +382798,244.32,56.106 +382799,241.87,57.384 +382800,239.6,58.626 +382801,245.71,54.862 +382802,243.02,56.149 +382803,240.55,57.397 +382804,238.27,58.608 +382805,244.43,54.938 +382806,241.73,56.193 +382807,239.24,57.409 +382808,236.94,58.59 +382809,243.15,55.015 +382810,240.43,56.237 +382811,237.93,57.421 +382812,235.61,58.571 +382813,241.86,55.093 +382814,239.14,56.282 +382815,236.62,57.433 +382816,234.28,58.551 +382817,240.58,55.172 +382818,237.84,56.326 +382819,235.31,57.445 +382820,232.96,58.531 +382821,239.29,55.252 +382822,236.54,56.371 +382823,234,57.456 +382824,231.64,58.509 +382825,238,55.332 +382826,235.25,56.417 +382827,232.7,57.467 +382828,230.32,58.487 +382829,236.71,55.413 +382830,233.95,56.462 +382831,231.39,57.478 +382832,229,58.464 +382833,235.41,55.495 +382834,232.65,56.508 +382835,230.08,57.488 +382836,227.68,58.44 +382837,234.12,55.578 +382838,231.35,56.554 +382839,228.78,57.498 +382840,226.37,58.415 +382841,232.82,55.661 +382842,230.05,56.6 +382843,227.47,57.508 +382844,225.05,58.39 +382845,231.52,55.745 +382846,228.75,56.646 +382847,226.16,57.518 +382848,223.74,58.363 +382849,230.21,55.83 +382850,227.44,56.693 +382851,224.86,57.528 +382852,222.43,58.337 +382853,228.91,55.915 +382854,226.14,56.74 +382855,223.56,57.537 +382856,221.13,58.309 +382857,227.6,56.001 +382858,224.84,56.787 +382859,222.25,57.546 +382860,219.82,58.282 +382861,226.29,56.087 +382862,223.53,56.834 +382863,220.95,57.555 +382864,218.52,58.253 +382865,224.98,56.174 +382866,222.23,56.881 +382867,219.65,57.564 +382868,217.21,58.224 +382869,223.66,56.261 +382870,220.92,56.929 +382871,218.35,57.572 +382872,215.91,58.194 +382873,222.35,56.349 +382874,219.61,56.976 +382875,217.04,57.58 +382876,214.61,58.165 +382877,221.03,56.437 +382878,218.31,57.024 +382879,215.74,57.589 +382880,213.32,58.134 +382881,219.71,56.525 +382882,217,57.072 +382883,214.44,57.597 +382884,212.02,58.103 +382885,218.39,56.613 +382886,215.69,57.119 +382887,213.15,57.605 +382888,210.73,58.072 +382889,217.06,56.702 +382890,214.38,57.167 +382891,211.85,57.613 +382892,209.44,58.04 +382893,215.73,56.791 +382894,213.07,57.216 +382895,210.55,57.62 +382896,208.15,58.009 +382897,214.41,56.881 +382898,211.76,57.264 +382899,209.25,57.628 +382900,206.86,57.976 +382901,213.08,56.97 +382902,210.45,57.312 +382903,207.95,57.636 +382904,205.57,57.944 +382905,211.74,57.06 +382906,209.14,57.36 +382907,206.66,57.643 +382908,204.29,57.911 +382909,210.41,57.149 +382910,207.82,57.408 +382911,205.36,57.65 +382912,203.01,57.878 +382913,209.07,57.239 +382914,206.51,57.457 +382915,204.07,57.658 +382916,201.72,57.845 +382917,207.73,57.329 +382918,205.2,57.505 +382919,202.77,57.665 +382920,200.45,57.812 +382921,206.39,57.419 +382922,203.88,57.553 +382923,201.48,57.672 +382924,199.17,57.779 +382925,205.05,57.509 +382926,202.57,57.601 +382927,200.18,57.68 +382928,197.89,57.746 +382929,203.71,57.598 +382930,201.25,57.65 +382931,198.89,57.687 +382932,196.62,57.712 +382933,202.36,57.688 +382934,199.93,57.698 +382935,197.6,57.694 +382936,195.35,57.679 +382937,201.02,57.777 +382938,198.62,57.746 +382939,196.31,57.701 +382940,194.08,57.646 +382941,199.67,57.867 +382942,197.3,57.794 +382943,195.02,57.709 +382944,192.81,57.612 +382945,198.32,57.956 +382946,195.98,57.842 +382947,193.73,57.716 +382948,191.54,57.579 +382949,196.96,58.045 +382950,194.66,57.89 +382951,192.44,57.723 +382952,190.28,57.546 +382953,195.61,58.133 +382954,193.34,57.938 +382955,191.15,57.731 +382956,189.02,57.513 +382957,194.26,58.222 +382958,192.02,57.986 +382959,189.86,57.738 +382960,187.75,57.48 +382961,192.9,58.31 +382962,190.7,58.034 +382963,188.57,57.746 +382964,186.49,57.448 +382965,191.54,58.398 +382966,189.38,58.081 +382967,187.28,57.753 +382968,185.24,57.416 +382969,190.18,58.485 +382970,188.06,58.129 +382971,185.99,57.761 +382972,183.98,57.384 +382973,188.82,58.572 +382974,186.73,58.176 +382975,184.71,57.769 +382976,182.72,57.352 +382977,187.46,58.658 +382978,185.41,58.223 +382979,183.42,57.777 +382980,181.47,57.321 +382981,186.09,58.744 +382982,184.09,58.27 +382983,182.13,57.785 +382984,180.22,57.29 +382985,184.73,58.83 +382986,182.76,58.317 +382987,180.85,57.793 +382988,178.97,57.259 +382989,183.36,58.914 +382990,181.44,58.364 +382991,179.56,57.801 +382992,177.72,57.229 +382993,181.99,58.999 +382994,180.11,58.41 +382995,178.28,57.81 +382996,176.47,57.2 +382997,180.62,59.082 +382998,178.79,58.457 +382999,176.99,57.819 +383000,175.23,57.17 +383001,179.25,59.166 +383002,177.46,58.503 +383003,175.71,57.827 +383004,173.98,57.142 +383005,177.88,59.248 +383006,176.14,58.548 +383007,174.42,57.836 +383008,172.74,57.114 +383009,176.51,59.33 +383010,174.81,58.594 +383011,173.14,57.846 +383012,171.5,57.086 +383013,175.13,59.411 +383014,173.48,58.639 +383015,171.86,57.855 +383016,170.26,57.06 +383017,173.76,59.491 +383018,172.15,58.685 +383019,170.58,57.865 +383020,169.02,57.033 +383021,172.38,59.571 +383022,170.82,58.729 +383023,169.29,57.875 +383024,167.78,57.008 +383025,171,59.649 +383026,169.5,58.774 +383027,168.01,57.885 +383028,166.55,56.983 +383029,169.62,59.727 +383030,168.17,58.818 +383031,166.73,57.895 +383032,165.31,56.959 +383033,168.24,59.805 +383034,166.84,58.862 +383035,165.45,57.906 +383036,164.08,56.936 +383037,166.86,59.881 +383038,165.51,58.906 +383039,164.17,57.917 +383040,162.85,56.913 +383041,165.48,59.956 +383042,164.18,58.95 +383043,162.89,57.928 +383044,161.62,56.892 +383045,164.1,60.031 +383046,162.85,58.993 +383047,161.61,57.939 +383048,160.39,56.871 +383049,162.72,60.104 +383050,161.52,59.036 +383051,160.33,57.951 +383052,159.16,56.851 +383053,161.34,60.177 +383054,160.19,59.078 +383055,159.05,57.963 +383056,157.93,56.832 +383057,159.95,60.248 +383058,158.85,59.12 +383059,157.77,57.975 +383060,156.7,56.814 +383061,158.57,60.319 +383062,157.52,59.162 +383063,156.49,57.988 +383064,155.47,56.796 +383065,157.18,60.388 +383066,156.19,59.204 +383067,155.21,58 +383068,154.25,56.78 +383069,155.8,60.457 +383070,154.86,59.245 +383071,153.93,58.014 +383072,153.02,56.765 +383073,154.41,60.524 +383074,153.53,59.286 +383075,152.66,58.027 +383076,151.8,56.75 +383077,153.02,60.591 +383078,152.19,59.326 +383079,151.38,58.041 +383080,150.58,56.737 +383081,151.64,60.656 +383082,150.86,59.366 +383083,150.1,58.055 +383084,149.36,56.725 +383085,150.25,60.72 +383086,149.53,59.406 +383087,148.82,58.07 +383088,148.13,56.714 +383089,148.86,60.783 +383090,148.19,59.445 +383091,147.54,58.085 +383092,146.91,56.704 +383093,147.47,60.845 +383094,146.86,59.484 +383095,146.27,58.1 +383096,145.69,56.695 +383097,146.08,60.906 +383098,145.53,59.522 +383099,144.99,58.116 +383100,144.47,56.687 +383101,144.7,60.965 +383102,144.19,59.56 +383103,143.71,58.132 +383104,143.25,56.681 +383105,143.31,61.024 +383106,142.86,59.598 +383107,142.43,58.148 +383108,142.04,56.675 +383109,141.92,61.081 +383110,141.52,59.635 +383111,141.16,58.165 +383112,140.82,56.671 +383113,140.53,61.137 +383114,140.19,59.672 +383115,139.88,58.182 +383116,139.6,56.668 +383117,139.14,61.192 +383118,138.86,59.709 +383119,138.6,58.2 +383120,138.38,56.666 +383121,137.75,61.245 +383122,137.52,59.745 +383123,137.33,58.218 +383124,137.17,56.665 +383125,136.36,61.297 +383126,136.19,59.78 +383127,136.05,58.236 +383128,135.95,56.666 +383129,134.97,61.348 +383130,134.85,59.815 +383131,134.77,58.255 +383132,134.73,56.668 +383133,133.58,61.398 +383134,133.52,59.85 +383135,133.49,58.274 +383136,133.52,56.671 +383137,132.19,61.446 +383138,132.18,59.884 +383139,132.22,58.294 +383140,132.3,56.676 +383141,130.8,61.493 +383142,130.85,59.918 +383143,130.94,58.314 +383144,131.08,56.682 +383145,129.41,61.539 +383146,129.51,59.951 +383147,129.66,58.335 +383148,129.87,56.689 +383149,128.02,61.583 +383150,128.18,59.984 +383151,128.39,58.356 +383152,128.65,56.697 +383153,126.63,61.626 +383154,126.84,60.017 +383155,127.11,58.377 +383156,127.43,56.707 +383157,125.25,61.668 +383158,125.51,60.049 +383159,125.83,58.399 +383160,126.21,56.718 +383161,123.86,61.708 +383162,124.18,60.08 +383163,124.55,58.421 +383164,125,56.73 +383165,122.47,61.748 +383166,122.84,60.111 +383167,123.28,58.444 +383168,123.78,56.744 +383169,121.08,61.785 +383170,121.51,60.142 +383171,122,58.467 +383172,122.56,56.759 +383173,119.7,61.822 +383174,120.17,60.172 +383175,120.72,58.49 +383176,121.34,56.776 +383177,118.31,61.857 +383178,118.84,60.202 +383179,119.44,58.514 +383180,120.13,56.794 +383181,116.92,61.89 +383182,117.51,60.231 +383183,118.16,58.539 +383184,118.91,56.813 +383185,115.54,61.923 +383186,116.17,60.26 +383187,116.88,58.564 +383188,117.69,56.834 +383189,114.15,61.954 +383190,114.84,60.288 +383191,115.61,58.589 +383192,116.47,56.856 +383193,112.77,61.983 +383194,113.5,60.316 +383195,114.33,58.615 +383196,115.25,56.88 +383197,111.38,62.012 +383198,112.17,60.343 +383199,113.05,58.641 +383200,114.02,56.904 +383201,110,62.039 +383202,110.84,60.37 +383203,111.77,58.668 +383204,112.8,56.931 +383205,108.62,62.064 +383206,109.51,60.396 +383207,110.49,58.695 +383208,111.58,56.958 +383209,107.24,62.088 +383210,108.17,60.422 +383211,109.21,58.722 +383212,110.35,56.987 +383213,105.85,62.111 +383214,106.84,60.448 +383215,107.93,58.75 +383216,109.13,57.018 +383217,104.47,62.133 +383218,105.51,60.473 +383219,106.65,58.779 +383220,107.9,57.049 +383221,103.09,62.153 +383222,104.18,60.497 +383223,105.37,58.808 +383224,106.68,57.083 +383225,101.72,62.172 +383226,102.84,60.521 +383227,104.08,58.837 +383228,105.45,57.117 +383229,100.34,62.189 +383230,101.51,60.545 +383231,102.8,58.867 +383232,104.22,57.153 +383233,98.961,62.205 +383234,100.18,60.568 +383235,101.52,58.897 +383236,102.99,57.19 +383237,97.585,62.22 +383238,98.852,60.591 +383239,100.24,58.927 +383240,101.76,57.229 +383241,96.21,62.234 +383242,97.521,60.613 +383243,98.954,58.958 +383244,100.53,57.269 +383245,94.836,62.246 +383246,96.191,60.635 +383247,97.671,58.99 +383248,99.295,57.31 +383249,93.463,62.257 +383250,94.861,60.656 +383251,96.387,59.022 +383252,98.06,57.353 +383253,92.091,62.267 +383254,93.532,60.677 +383255,95.102,59.054 +383256,96.824,57.396 +383257,90.72,62.275 +383258,92.203,60.698 +383259,93.818,59.087 +383260,95.587,57.442 +383261,89.35,62.282 +383262,90.874,60.718 +383263,92.532,59.12 +383264,94.348,57.488 +383265,87.982,62.288 +383266,89.546,60.737 +383267,91.247,59.154 +383268,93.108,57.536 +383269,86.614,62.293 +383270,88.218,60.756 +383271,89.96,59.188 +383272,91.866,57.585 +383273,85.248,62.296 +383274,86.891,60.775 +383275,88.674,59.222 +383276,90.623,57.635 +383277,83.883,62.298 +383278,85.563,60.793 +383279,87.387,59.257 +383280,89.378,57.687 +383281,82.519,62.299 +383282,84.237,60.811 +383283,86.099,59.292 +383284,88.131,57.739 +383285,81.157,62.299 +383286,82.91,60.829 +383287,84.811,59.327 +383288,86.883,57.793 +383289,79.796,62.298 +383290,81.585,60.846 +383291,83.522,59.363 +383292,85.634,57.849 +383293,78.436,62.295 +383294,80.259,60.863 +383295,82.232,59.4 +383296,84.382,57.905 +383297,77.077,62.292 +383298,78.934,60.879 +383299,80.942,59.436 +383300,83.129,57.962 +383301,75.72,62.287 +383302,77.61,60.895 +383303,79.652,59.473 +383304,81.874,58.021 +383305,74.364,62.281 +383306,76.286,60.91 +383307,78.361,59.511 +383308,80.618,58.081 +383309,73.01,62.274 +383310,74.962,60.926 +383311,77.069,59.549 +383312,79.359,58.142 +383313,71.657,62.266 +383314,73.639,60.94 +383315,75.777,59.587 +383316,78.099,58.203 +383317,70.305,62.257 +383318,72.317,60.955 +383319,74.484,59.625 +383320,76.836,58.266 +383321,68.955,62.247 +383322,70.995,60.969 +383323,73.191,59.664 +383324,75.572,58.33 +383325,67.607,62.236 +383326,69.673,60.983 +383327,71.897,59.703 +383328,74.306,58.395 +383329,66.26,62.224 +383330,68.352,60.996 +383331,70.602,59.742 +383332,73.039,58.461 +383333,64.914,62.211 +383334,67.032,61.009 +383335,69.307,59.782 +383336,71.769,58.528 +383337,63.57,62.197 +383338,65.712,61.022 +383339,68.011,59.822 +383340,70.497,58.596 +383341,62.228,62.182 +383342,64.392,61.034 +383343,66.714,59.862 +383344,69.223,58.665 +383345,60.887,62.166 +383346,63.073,61.046 +383347,65.417,59.903 +383348,67.947,58.735 +383349,59.548,62.149 +383350,61.755,61.058 +383351,64.119,59.944 +383352,66.669,58.805 +383353,58.211,62.131 +383354,60.437,61.069 +383355,62.82,59.985 +383356,65.389,58.877 +383357,56.875,62.113 +383358,59.12,61.08 +383359,61.521,60.026 +383360,64.108,58.949 +383361,55.541,62.094 +383362,57.803,61.091 +383363,60.221,60.068 +383364,62.824,59.022 +383365,54.208,62.074 +383366,56.487,61.102 +383367,58.921,60.11 +383368,61.538,59.096 +383369,52.877,62.053 +383370,55.172,61.112 +383371,57.62,60.152 +383372,60.249,59.17 +383373,51.548,62.031 +383374,53.857,61.122 +383375,56.318,60.194 +383376,58.959,59.246 +383377,50.221,62.009 +383378,52.542,61.132 +383379,55.015,60.237 +383380,57.667,59.322 +383381,48.895,61.986 +383382,51.228,61.142 +383383,53.712,60.28 +383384,56.373,59.398 +383385,47.571,61.962 +383386,49.915,61.151 +383387,52.408,60.323 +383388,55.076,59.475 +383389,46.248,61.938 +383390,48.603,61.16 +383391,51.103,60.366 +383392,53.778,59.553 +383393,44.928,61.913 +383394,47.29,61.169 +383395,49.798,60.409 +383396,52.477,59.632 +383397,43.609,61.887 +383398,45.979,61.178 +383399,48.492,60.453 +383400,51.174,59.71 +383401,42.292,61.861 +383402,44.668,61.186 +383403,47.186,60.497 +383404,49.87,59.79 +383405,40.977,61.835 +383406,43.358,61.195 +383407,45.878,60.54 +383408,48.563,59.87 +383409,39.663,61.808 +383410,42.048,61.203 +383411,44.57,60.584 +383412,47.254,59.95 +383413,38.352,61.78 +383414,40.739,61.211 +383415,43.261,60.629 +383416,45.943,60.031 +383417,37.042,61.752 +383418,39.43,61.219 +383419,41.952,60.673 +383420,44.63,60.112 +383421,35.733,61.724 +383422,38.123,61.227 +383423,40.642,60.717 +383424,43.315,60.193 +383425,34.427,61.695 +383426,36.815,61.234 +383427,39.331,60.762 +383428,41.997,60.275 +383429,33.123,61.666 +383430,35.508,61.242 +383431,38.02,60.806 +383432,40.678,60.357 +383433,31.82,61.636 +383434,34.202,61.249 +383435,36.708,60.851 +383436,39.357,60.44 +383437,30.519,61.606 +383438,32.897,61.256 +383439,35.395,60.895 +383440,38.034,60.522 +383441,29.22,61.576 +383442,31.592,61.263 +383443,34.082,60.94 +383444,36.708,60.605 +383445,27.922,61.546 +383446,30.287,61.27 +383447,32.767,60.985 +383448,35.381,60.688 +383449,26.627,61.515 +383450,28.984,61.277 +383451,31.453,61.03 +383452,34.052,60.771 +383453,25.333,61.484 +383454,27.681,61.284 +383455,30.137,61.075 +383456,32.721,60.854 +383457,24.041,61.454 +383458,26.378,61.291 +383459,28.821,61.12 +383460,31.388,60.938 +383461,22.75,61.423 +383462,25.076,61.298 +383463,27.504,61.165 +383464,30.053,61.021 +383465,21.462,61.391 +383466,23.774,61.304 +383467,26.187,61.209 +383468,28.716,61.104 +383469,20.175,61.36 +383470,22.474,61.311 +383471,24.869,61.254 +383472,27.377,61.188 +383473,18.89,61.329 +383474,21.173,61.318 +383475,23.55,61.299 +383476,26.036,61.271 +383477,17.607,61.298 +383478,19.874,61.325 +383479,22.231,61.344 +383480,24.694,61.354 +383481,16.325,61.267 +383482,18.574,61.331 +383483,20.911,61.389 +383484,23.349,61.437 +383485,15.046,61.235 +383486,17.276,61.338 +383487,19.591,61.434 +383488,22.003,61.52 +383489,13.768,61.204 +383490,15.978,61.345 +383491,18.269,61.478 +383492,20.655,61.603 +383493,12.491,61.174 +383494,14.68,61.352 +383495,16.948,61.523 +383496,19.306,61.686 +383497,11.217,61.143 +383498,13.383,61.358 +383499,15.625,61.568 +383500,17.955,61.768 +383501,9.9439,61.112 +383502,12.087,61.365 +383503,14.302,61.612 +383504,16.602,61.85 +383505,8.6727,61.082 +383506,10.791,61.372 +383507,12.979,61.656 +383508,15.247,61.932 +383509,7.4031,61.052 +383510,9.4955,61.379 +383511,11.655,61.701 +383512,13.891,62.013 +383513,6.1352,61.022 +383514,8.2006,61.386 +383515,10.33,61.745 +383516,12.533,62.095 +383517,4.8688,60.992 +383518,6.9062,61.394 +383519,9.0049,61.789 +383520,11.174,62.175 +383521,3.6041,60.963 +383522,5.6124,61.401 +383523,7.6792,61.833 +383524,9.8129,62.256 +383525,2.341,60.934 +383526,4.319,61.408 +383527,6.3529,61.876 +383528,8.4505,62.336 +383529,1.0794,60.905 +383530,3.0261,61.416 +383531,5.0261,61.92 +383532,7.0867,62.415 +383533,359.82,60.877 +383534,1.7338,61.424 +383535,3.6987,61.963 +383536,5.7214,62.494 +383537,358.56,60.85 +383538,0.44182,61.431 +383539,2.3709,62.006 +383540,4.3547,62.572 +383541,357.3,60.822 +383542,359.15,61.439 +383543,1.0425,62.049 +383544,2.9867,62.65 +383545,356.05,60.796 +383546,357.86,61.448 +383547,359.71,62.092 +383548,1.6173,62.727 +383549,354.79,60.77 +383550,356.57,61.456 +383551,358.38,62.135 +383552,0.24659,62.804 +383553,353.54,60.744 +383554,355.28,61.464 +383555,357.05,62.177 +383556,358.87,62.88 +383557,352.29,60.719 +383558,353.99,61.473 +383559,355.72,62.219 +383560,357.5,62.956 +383561,351.04,60.695 +383562,352.7,61.482 +383563,354.39,62.261 +383564,356.13,63.03 +383565,349.79,60.671 +383566,351.41,61.491 +383567,353.06,62.303 +383568,354.75,63.104 +383569,348.55,60.648 +383570,350.12,61.5 +383571,351.73,62.344 +383572,353.37,63.178 +383573,347.3,60.625 +383574,348.83,61.51 +383575,350.4,62.385 +383576,352,63.25 +383577,346.05,60.604 +383578,347.55,61.52 +383579,349.07,62.426 +383580,350.62,63.322 +383581,344.81,60.583 +383582,346.26,61.53 +383583,347.73,62.467 +383584,349.24,63.393 +383585,343.57,60.562 +383586,344.97,61.54 +383587,346.4,62.507 +383588,347.86,63.463 +383589,342.33,60.543 +383590,343.69,61.55 +383591,345.07,62.547 +383592,346.48,63.532 +383593,341.09,60.524 +383594,342.4,61.561 +383595,343.73,62.587 +383596,345.09,63.601 +383597,339.85,60.507 +383598,341.11,61.572 +383599,342.4,62.627 +383600,343.71,63.668 +383601,338.61,60.49 +383602,339.83,61.584 +383603,341.06,62.666 +383604,342.33,63.735 +383605,337.38,60.474 +383606,338.54,61.595 +383607,339.73,62.705 +383608,340.94,63.801 +383609,336.14,60.459 +383610,337.26,61.607 +383611,338.39,62.743 +383612,339.56,63.865 +383613,334.9,60.444 +383614,335.97,61.619 +383615,337.06,62.781 +383616,338.17,63.929 +383617,333.67,60.431 +383618,334.69,61.632 +383619,335.72,62.819 +383620,336.78,63.992 +383621,332.44,60.419 +383622,333.4,61.645 +383623,334.39,62.857 +383624,335.39,64.054 +383625,331.21,60.408 +383626,332.12,61.658 +383627,333.05,62.894 +383628,334.01,64.114 +383629,329.97,60.397 +383630,330.83,61.671 +383631,331.71,62.931 +383632,332.62,64.174 +383633,328.74,60.388 +383634,329.55,61.685 +383635,330.38,62.967 +383636,331.23,64.233 +383637,327.51,60.38 +383638,328.27,61.699 +383639,329.04,63.003 +383640,329.84,64.29 +383641,326.29,60.373 +383642,326.98,61.714 +383643,327.7,63.039 +383644,328.45,64.347 +383645,325.06,60.367 +383646,325.7,61.728 +383647,326.37,63.074 +383648,327.06,64.402 +383649,323.83,60.362 +383650,324.42,61.744 +383651,325.03,63.109 +383652,325.66,64.456 +383653,322.6,60.358 +383654,323.13,61.759 +383655,323.69,63.143 +383656,324.27,64.509 +383657,321.37,60.356 +383658,321.85,61.775 +383659,322.35,63.177 +383660,322.88,64.561 +383661,320.15,60.354 +383662,320.57,61.791 +383663,321.02,63.211 +383664,321.49,64.612 +383665,318.92,60.354 +383666,319.29,61.808 +383667,319.68,63.244 +383668,320.1,64.662 +383669,317.7,60.355 +383670,318,61.825 +383671,318.34,63.277 +383672,318.7,64.71 +383673,316.47,60.357 +383674,316.72,61.843 +383675,317,63.31 +383676,317.31,64.757 +383677,315.25,60.36 +383678,315.44,61.86 +383679,315.66,63.342 +383680,315.92,64.803 +383681,314.02,60.364 +383682,314.16,61.879 +383683,314.33,63.374 +383684,314.53,64.848 +383685,312.8,60.37 +383686,312.87,61.897 +383687,312.99,63.405 +383688,313.13,64.892 +383689,311.57,60.377 +383690,311.59,61.916 +383691,311.65,63.436 +383692,311.74,64.934 +383693,310.35,60.385 +383694,310.31,61.936 +383695,310.31,63.466 +383696,310.35,64.975 +383697,309.12,60.394 +383698,309.03,61.956 +383699,308.97,63.496 +383700,308.96,65.015 +383701,307.9,60.405 +383702,307.74,61.976 +383703,307.63,63.526 +383704,307.56,65.054 +383705,306.68,60.417 +383706,306.46,61.996 +383707,306.3,63.555 +383708,306.17,65.091 +383709,305.45,60.43 +383710,305.18,62.017 +383711,304.96,63.583 +383712,304.78,65.127 +383713,304.23,60.444 +383714,303.9,62.039 +383715,303.62,63.612 +383716,303.39,65.162 +383717,303,60.46 +383718,302.61,62.061 +383719,302.28,63.639 +383720,302,65.195 +383721,301.78,60.477 +383722,301.33,62.083 +383723,300.94,63.667 +383724,300.61,65.228 +383725,300.55,60.495 +383726,300.05,62.106 +383727,299.6,63.694 +383728,299.22,65.259 +383729,299.33,60.515 +383730,298.76,62.129 +383731,298.27,63.72 +383732,297.83,65.288 +383733,298.1,60.536 +383734,297.48,62.152 +383735,296.93,63.746 +383736,296.44,65.317 +383737,296.87,60.558 +383738,296.2,62.176 +383739,295.59,63.772 +383740,295.05,65.344 +383741,295.65,60.582 +383742,294.91,62.201 +383743,294.25,63.797 +383744,293.66,65.37 +383745,294.42,60.606 +383746,293.63,62.225 +383747,292.92,63.821 +383748,292.27,65.394 +383749,293.19,60.633 +383750,292.35,62.251 +383751,291.58,63.846 +383752,290.88,65.418 +383753,291.96,60.66 +383754,291.06,62.276 +383755,290.24,63.87 +383756,289.49,65.44 +383757,290.73,60.689 +383758,289.78,62.302 +383759,288.9,63.893 +383760,288.11,65.46 +383761,289.5,60.719 +383762,288.49,62.329 +383763,287.57,63.916 +383764,286.72,65.48 +383765,288.27,60.75 +383766,287.21,62.356 +383767,286.23,63.938 +383768,285.34,65.498 +383769,287.04,60.782 +383770,285.92,62.383 +383771,284.9,63.96 +383772,283.95,65.515 +383773,285.81,60.816 +383774,284.64,62.411 +383775,283.56,63.982 +383776,282.57,65.531 +383777,284.58,60.851 +383778,283.35,62.439 +383779,282.22,64.003 +383780,281.19,65.545 +383781,283.34,60.888 +383782,282.06,62.467 +383783,280.89,64.024 +383784,279.8,65.558 +383785,282.11,60.925 +383786,280.78,62.496 +383787,279.55,64.044 +383788,278.42,65.57 +383789,280.87,60.964 +383790,279.49,62.525 +383791,278.22,64.064 +383792,277.04,65.581 +383793,279.63,61.004 +383794,278.2,62.555 +383795,276.88,64.084 +383796,275.66,65.59 +383797,278.39,61.046 +383798,276.92,62.585 +383799,275.55,64.103 +383800,274.28,65.598 +383801,277.16,61.088 +383802,275.63,62.616 +383803,274.22,64.121 +383804,272.91,65.605 +383805,275.91,61.132 +383806,274.34,62.646 +383807,272.88,64.14 +383808,271.53,65.611 +383809,274.67,61.177 +383810,273.05,62.678 +383811,271.55,64.157 +383812,270.16,65.616 +383813,273.43,61.223 +383814,271.76,62.709 +383815,270.22,64.175 +383816,268.78,65.619 +383817,272.18,61.271 +383818,270.47,62.741 +383819,268.88,64.192 +383820,267.41,65.622 +383821,270.94,61.319 +383822,269.18,62.774 +383823,267.55,64.208 +383824,266.04,65.623 +383825,269.69,61.369 +383826,267.89,62.807 +383827,266.22,64.225 +383828,264.67,65.623 +383829,268.44,61.419 +383830,266.6,62.84 +383831,264.89,64.241 +383832,263.3,65.622 +383833,267.19,61.471 +383834,265.31,62.873 +383835,263.56,64.256 +383836,261.93,65.619 +383837,265.94,61.524 +383838,264.01,62.907 +383839,262.23,64.271 +383840,260.56,65.616 +383841,264.69,61.578 +383842,262.72,62.941 +383843,260.9,64.286 +383844,259.19,65.612 +383845,263.43,61.633 +383846,261.43,62.976 +383847,259.57,64.3 +383848,257.83,65.606 +383849,262.18,61.69 +383850,260.14,63.011 +383851,258.24,64.314 +383852,256.47,65.6 +383853,260.92,61.747 +383854,258.84,63.046 +383855,256.91,64.328 +383856,255.1,65.592 +383857,259.66,61.805 +383858,257.55,63.081 +383859,255.58,64.341 +383860,253.74,65.583 +383861,258.4,61.864 +383862,256.25,63.117 +383863,254.25,64.354 +383864,252.38,65.574 +383865,257.14,61.924 +383866,254.96,63.153 +383867,252.93,64.366 +383868,251.03,65.563 +383869,255.87,61.985 +383870,253.66,63.19 +383871,251.6,64.379 +383872,249.67,65.552 +383873,254.61,62.047 +383874,252.36,63.227 +383875,250.27,64.391 +383876,248.31,65.539 +383877,253.34,62.11 +383878,251.06,63.264 +383879,248.95,64.402 +383880,246.96,65.526 +383881,252.07,62.174 +383882,249.77,63.301 +383883,247.62,64.413 +383884,245.61,65.512 +383885,250.8,62.239 +383886,248.47,63.339 +383887,246.3,64.424 +383888,244.26,65.496 +383889,249.52,62.304 +383890,247.17,63.376 +383891,244.97,64.435 +383892,242.91,65.48 +383893,248.25,62.371 +383894,245.87,63.415 +383895,243.65,64.446 +383896,241.56,65.464 +383897,246.97,62.438 +383898,244.57,63.453 +383899,242.32,64.456 +383900,240.22,65.446 +383901,245.69,62.506 +383902,243.27,63.492 +383903,241,64.466 +383904,238.87,65.427 +383905,244.41,62.574 +383906,241.97,63.531 +383907,239.68,64.475 +383908,237.53,65.408 +383909,243.13,62.644 +383910,240.66,63.57 +383911,238.36,64.484 +383912,236.19,65.388 +383913,241.84,62.714 +383914,239.36,63.609 +383915,237.04,64.493 +383916,234.85,65.367 +383917,240.55,62.785 +383918,238.06,63.649 +383919,235.72,64.502 +383920,233.51,65.346 +383921,239.27,62.856 +383922,236.75,63.688 +383923,234.4,64.511 +383924,232.17,65.324 +383925,237.97,62.928 +383926,235.45,63.728 +383927,233.08,64.519 +383928,230.84,65.301 +383929,236.68,63 +383930,234.14,63.768 +383931,231.76,64.527 +383932,229.51,65.278 +383933,235.39,63.073 +383934,232.84,63.809 +383935,230.44,64.535 +383936,228.17,65.254 +383937,234.09,63.147 +383938,231.53,63.849 +383939,229.12,64.543 +383940,226.85,65.229 +383941,232.79,63.221 +383942,230.22,63.89 +383943,227.8,64.551 +383944,225.52,65.204 +383945,231.49,63.296 +383946,228.91,63.931 +383947,226.49,64.558 +383948,224.19,65.178 +383949,230.19,63.371 +383950,227.61,63.972 +383951,225.17,64.565 +383952,222.87,65.152 +383953,228.88,63.446 +383954,226.3,64.013 +383955,223.86,64.572 +383956,221.54,65.125 +383957,227.58,63.522 +383958,224.99,64.054 +383959,222.54,64.579 +383960,220.22,65.098 +383961,226.27,63.598 +383962,223.67,64.095 +383963,221.23,64.586 +383964,218.9,65.071 +383965,224.96,63.675 +383966,222.36,64.137 +383967,219.91,64.592 +383968,217.59,65.043 +383969,223.64,63.752 +383970,221.05,64.178 +383971,218.6,64.599 +383972,216.27,65.015 +383973,222.33,63.829 +383974,219.74,64.22 +383975,217.29,64.605 +383976,214.96,64.986 +383977,221.01,63.906 +383978,218.43,64.261 +383979,215.98,64.611 +383980,213.64,64.957 +383981,219.69,63.984 +383982,217.11,64.303 +383983,214.66,64.618 +383984,212.33,64.928 +383985,218.37,64.062 +383986,215.8,64.345 +383987,213.35,64.624 +383988,211.02,64.899 +383989,217.05,64.14 +383990,214.48,64.387 +383991,212.04,64.63 +383992,209.72,64.869 +383993,215.73,64.218 +383994,213.17,64.429 +383995,210.73,64.636 +383996,208.41,64.839 +383997,214.4,64.296 +383998,211.85,64.471 +383999,209.43,64.641 +384000,207.11,64.809 +384001,213.07,64.374 +384002,210.53,64.513 +384003,208.12,64.647 +384004,205.81,64.779 +384005,211.74,64.452 +384006,209.21,64.554 +384007,206.81,64.653 +384008,204.51,64.749 +384009,210.41,64.531 +384010,207.9,64.596 +384011,205.5,64.659 +384012,203.21,64.718 +384013,209.07,64.609 +384014,206.58,64.638 +384015,204.2,64.664 +384016,201.91,64.688 +384017,207.74,64.687 +384018,205.26,64.68 +384019,202.89,64.67 +384020,200.62,64.658 +384021,206.4,64.765 +384022,203.94,64.722 +384023,201.58,64.676 +384024,199.32,64.627 +384025,205.06,64.843 +384026,202.62,64.764 +384027,200.28,64.682 +384028,198.03,64.597 +384029,203.72,64.921 +384030,201.29,64.806 +384031,198.97,64.687 +384032,196.74,64.567 +384033,202.37,64.999 +384034,199.97,64.848 +384035,197.67,64.693 +384036,195.46,64.536 +384037,201.03,65.076 +384038,198.65,64.889 +384039,196.37,64.699 +384040,194.17,64.506 +384041,199.68,65.154 +384042,197.33,64.931 +384043,195.06,64.705 +384044,192.89,64.476 +384045,198.33,65.231 +384046,196,64.972 +384047,193.76,64.71 +384048,191.6,64.447 +384049,196.98,65.308 +384050,194.68,65.014 +384051,192.46,64.716 +384052,190.32,64.417 +384053,195.63,65.384 +384054,193.35,65.055 +384055,191.16,64.722 +384056,189.04,64.388 +384057,194.28,65.46 +384058,192.03,65.096 +384059,189.86,64.729 +384060,187.76,64.359 +384061,192.92,65.536 +384062,190.7,65.137 +384063,188.56,64.735 +384064,186.49,64.33 +384065,191.56,65.612 +384066,189.37,65.178 +384067,187.26,64.741 +384068,185.21,64.302 +384069,190.21,65.687 +384070,188.05,65.219 +384071,185.96,64.748 +384072,183.94,64.274 +384073,188.85,65.761 +384074,186.72,65.26 +384075,184.66,64.754 +384076,182.67,64.246 +384077,187.48,65.835 +384078,185.39,65.3 +384079,183.36,64.761 +384080,181.4,64.219 +384081,186.12,65.909 +384082,184.06,65.34 +384083,182.07,64.768 +384084,180.13,64.192 +384085,184.76,65.982 +384086,182.73,65.381 +384087,180.77,64.775 +384088,178.86,64.165 +384089,183.39,66.054 +384090,181.4,65.421 +384091,179.47,64.782 +384092,177.6,64.14 +384093,182.02,66.126 +384094,180.07,65.46 +384095,178.18,64.789 +384096,176.34,64.114 +384097,180.65,66.198 +384098,178.74,65.5 +384099,176.88,64.797 +384100,175.07,64.089 +384101,179.28,66.268 +384102,177.41,65.539 +384103,175.59,64.804 +384104,173.81,64.065 +384105,177.91,66.338 +384106,176.08,65.578 +384107,174.29,64.812 +384108,172.55,64.042 +384109,176.54,66.408 +384110,174.74,65.617 +384111,173,64.82 +384112,171.29,64.019 +384113,175.17,66.477 +384114,173.41,65.656 +384115,171.7,64.828 +384116,170.04,63.996 +384117,173.79,66.545 +384118,172.08,65.694 +384119,170.41,64.837 +384120,168.78,63.974 +384121,172.41,66.612 +384122,170.74,65.732 +384123,169.12,64.846 +384124,167.53,63.953 +384125,171.04,66.678 +384126,169.41,65.77 +384127,167.82,64.855 +384128,166.28,63.933 +384129,169.66,66.744 +384130,168.08,65.808 +384131,166.53,64.864 +384132,165.02,63.914 +384133,168.28,66.809 +384134,166.74,65.845 +384135,165.24,64.873 +384136,163.77,63.895 +384137,166.9,66.873 +384138,165.41,65.882 +384139,163.95,64.883 +384140,162.52,63.877 +384141,165.52,66.936 +384142,164.07,65.919 +384143,162.66,64.893 +384144,161.28,63.86 +384145,164.13,66.999 +384146,162.73,65.955 +384147,161.37,64.903 +384148,160.03,63.843 +384149,162.75,67.06 +384150,161.4,65.992 +384151,160.08,64.914 +384152,158.78,63.828 +384153,161.37,67.121 +384154,160.06,66.027 +384155,158.79,64.924 +384156,157.54,63.813 +384157,159.98,67.18 +384158,158.72,66.063 +384159,157.5,64.936 +384160,156.3,63.8 +384161,158.6,67.239 +384162,157.39,66.098 +384163,156.21,64.947 +384164,155.05,63.787 +384165,157.21,67.297 +384166,156.05,66.133 +384167,154.92,64.959 +384168,153.81,63.775 +384169,155.82,67.353 +384170,154.71,66.168 +384171,153.63,64.971 +384172,152.57,63.764 +384173,154.43,67.409 +384174,153.37,66.202 +384175,152.34,64.983 +384176,151.33,63.754 +384177,153.04,67.464 +384178,152.03,66.236 +384179,151.05,64.996 +384180,150.09,63.745 +384181,151.66,67.518 +384182,150.7,66.269 +384183,149.76,65.009 +384184,148.85,63.737 +384185,150.27,67.57 +384186,149.36,66.302 +384187,148.47,65.022 +384188,147.62,63.731 +384189,148.87,67.622 +384190,148.02,66.335 +384191,147.19,65.036 +384192,146.38,63.725 +384193,147.48,67.672 +384194,146.68,66.367 +384195,145.9,65.05 +384196,145.14,63.72 +384197,146.09,67.722 +384198,145.34,66.4 +384199,144.61,65.064 +384200,143.91,63.716 +384201,144.7,67.77 +384202,144,66.431 +384203,143.32,65.079 +384204,142.67,63.714 +384205,143.31,67.817 +384206,142.66,66.462 +384207,142.04,65.094 +384208,141.44,63.712 +384209,141.92,67.864 +384210,141.32,66.493 +384211,140.75,65.109 +384212,140.21,63.712 +384213,140.52,67.909 +384214,139.98,66.524 +384215,139.46,65.125 +384216,138.97,63.713 +384217,139.13,67.952 +384218,138.64,66.554 +384219,138.18,65.141 +384220,137.74,63.715 +384221,137.74,67.995 +384222,137.3,66.584 +384223,136.89,65.158 +384224,136.51,63.718 +384225,136.34,68.037 +384226,135.96,66.613 +384227,135.6,65.175 +384228,135.28,63.722 +384229,134.95,68.077 +384230,134.62,66.642 +384231,134.32,65.192 +384232,134.04,63.727 +384233,133.55,68.116 +384234,133.28,66.671 +384235,133.03,65.21 +384236,132.81,63.734 +384237,132.16,68.154 +384238,131.94,66.699 +384239,131.74,65.228 +384240,131.58,63.742 +384241,130.77,68.191 +384242,130.6,66.726 +384243,130.46,65.246 +384244,130.35,63.751 +384245,129.37,68.227 +384246,129.25,66.754 +384247,129.17,65.265 +384248,129.12,63.761 +384249,127.98,68.261 +384250,127.91,66.781 +384251,127.88,65.284 +384252,127.89,63.773 +384253,126.59,68.294 +384254,126.57,66.807 +384255,126.6,65.304 +384256,126.66,63.785 +384257,125.19,68.326 +384258,125.23,66.833 +384259,125.31,65.324 +384260,125.43,63.799 +384261,123.8,68.357 +384262,123.89,66.859 +384263,124.02,65.344 +384264,124.2,63.814 +384265,122.4,68.386 +384266,122.55,66.884 +384267,122.74,65.365 +384268,122.97,63.831 +384269,121.01,68.415 +384270,121.21,66.909 +384271,121.45,65.386 +384272,121.74,63.848 +384273,119.62,68.442 +384274,119.87,66.933 +384275,120.16,65.408 +384276,120.51,63.867 +384277,118.23,68.468 +384278,118.53,66.957 +384279,118.88,65.43 +384280,119.28,63.887 +384281,116.83,68.492 +384282,117.19,66.981 +384283,117.59,65.453 +384284,118.04,63.909 +384285,115.44,68.516 +384286,115.85,67.004 +384287,116.3,65.475 +384288,116.81,63.931 +384289,114.05,68.538 +384290,114.51,67.027 +384291,115.02,65.499 +384292,115.58,63.955 +384293,112.66,68.559 +384294,113.17,67.049 +384295,113.73,65.522 +384296,114.35,63.98 +384297,111.27,68.578 +384298,111.83,67.071 +384299,112.44,65.546 +384300,113.12,64.007 +384301,109.88,68.597 +384302,110.49,67.092 +384303,111.15,65.571 +384304,111.88,64.034 +384305,108.49,68.614 +384306,109.15,67.113 +384307,109.87,65.596 +384308,110.65,64.063 +384309,107.1,68.63 +384310,107.81,67.134 +384311,108.58,65.621 +384312,109.41,64.093 +384313,105.71,68.645 +384314,106.47,67.154 +384315,107.29,65.647 +384316,108.18,64.125 +384317,104.32,68.659 +384318,105.13,67.174 +384319,106,65.673 +384320,106.94,64.157 +384321,102.94,68.671 +384322,103.79,67.193 +384323,104.71,65.699 +384324,105.71,64.191 +384325,101.55,68.682 +384326,102.45,67.212 +384327,103.42,65.726 +384328,104.47,64.226 +384329,100.17,68.692 +384330,101.11,67.231 +384331,102.13,65.753 +384332,103.23,64.262 +384333,98.782,68.701 +384334,99.777,67.249 +384335,100.84,65.781 +384336,101.99,64.299 +384337,97.398,68.709 +384338,98.439,67.267 +384339,99.555,65.809 +384340,100.75,64.338 +384341,96.015,68.715 +384342,97.101,67.284 +384343,98.264,65.838 +384344,99.514,64.378 +384345,94.633,68.721 +384346,95.764,67.301 +384347,96.974,65.866 +384348,98.272,64.419 +384349,93.252,68.725 +384350,94.427,67.317 +384351,95.683,65.896 +384352,97.03,64.461 +384353,91.872,68.728 +384354,93.09,67.334 +384355,94.392,65.925 +384356,95.786,64.504 +384357,90.492,68.73 +384358,91.754,67.349 +384359,93.1,65.955 +384360,94.542,64.548 +384361,89.114,68.731 +384362,90.418,67.365 +384363,91.808,65.985 +384364,93.296,64.594 +384365,87.737,68.731 +384366,89.082,67.38 +384367,90.516,66.016 +384368,92.05,64.64 +384369,86.361,68.729 +384370,87.746,67.394 +384371,89.223,66.047 +384372,90.802,64.688 +384373,84.986,68.727 +384374,86.411,67.409 +384375,87.93,66.078 +384376,89.553,64.737 +384377,83.612,68.723 +384378,85.077,67.423 +384379,86.636,66.11 +384380,88.302,64.787 +384381,82.239,68.719 +384382,83.742,67.436 +384383,85.342,66.142 +384384,87.051,64.838 +384385,80.867,68.713 +384386,82.409,67.449 +384387,84.048,66.174 +384388,85.798,64.89 +384389,79.497,68.707 +384390,81.075,67.462 +384391,82.753,66.207 +384392,84.543,64.942 +384393,78.127,68.699 +384394,79.742,67.475 +384395,81.458,66.24 +384396,83.287,64.996 +384397,76.759,68.69 +384398,78.409,67.487 +384399,80.162,66.273 +384400,82.03,65.051 +384401,75.393,68.681 +384402,77.077,67.499 +384403,78.865,66.307 +384404,80.772,65.107 +384405,74.027,68.67 +384406,75.745,67.51 +384407,77.569,66.341 +384408,79.512,65.164 +384409,72.663,68.659 +384410,74.414,67.521 +384411,76.271,66.375 +384412,78.25,65.222 +384413,71.3,68.647 +384414,73.083,67.532 +384415,74.974,66.41 +384416,76.987,65.281 +384417,69.939,68.633 +384418,71.753,67.543 +384419,73.675,66.445 +384420,75.722,65.34 +384421,68.579,68.619 +384422,70.423,67.553 +384423,72.376,66.48 +384424,74.456,65.401 +384425,67.22,68.604 +384426,69.093,67.563 +384427,71.077,66.515 +384428,73.188,65.462 +384429,65.863,68.588 +384430,67.764,67.573 +384431,69.777,66.551 +384432,71.918,65.524 +384433,64.507,68.572 +384434,66.435,67.582 +384435,68.477,66.587 +384436,70.647,65.587 +384437,63.153,68.554 +384438,65.107,67.591 +384439,67.176,66.623 +384440,69.374,65.65 +384441,61.8,68.536 +384442,63.78,67.6 +384443,65.874,66.659 +384444,68.099,65.715 +384445,60.448,68.517 +384446,62.453,67.609 +384447,64.572,66.696 +384448,66.822,65.78 +384449,59.099,68.497 +384450,61.126,67.617 +384451,63.269,66.733 +384452,65.544,65.846 +384453,57.75,68.477 +384454,59.8,67.625 +384455,61.966,66.77 +384456,64.264,65.912 +384457,56.404,68.455 +384458,58.475,67.633 +384459,60.662,66.808 +384460,62.982,65.98 +384461,55.058,68.434 +384462,57.15,67.641 +384463,59.358,66.845 +384464,61.699,66.047 +384465,53.715,68.411 +384466,55.826,67.648 +384467,58.053,66.883 +384468,60.413,66.116 +384469,52.373,68.388 +384470,54.502,67.656 +384471,56.747,66.921 +384472,59.126,66.185 +384473,51.032,68.364 +384474,53.178,67.663 +384475,55.441,66.959 +384476,57.837,66.254 +384477,49.693,68.34 +384478,51.856,67.669 +384479,54.134,66.997 +384480,56.546,66.324 +384481,48.356,68.315 +384482,50.533,67.676 +384483,52.826,67.036 +384484,55.253,66.395 +384485,47.021,68.29 +384486,49.212,67.683 +384487,51.518,67.074 +384488,53.958,66.466 +384489,45.687,68.264 +384490,47.891,67.689 +384491,50.21,67.113 +384492,52.661,66.538 +384493,44.355,68.238 +384494,46.57,67.695 +384495,48.9,67.152 +384496,51.363,66.61 +384497,43.024,68.211 +384498,45.25,67.701 +384499,47.59,67.191 +384500,50.062,66.682 +384501,41.695,68.184 +384502,43.931,67.707 +384503,46.28,67.23 +384504,48.76,66.755 +384505,40.368,68.157 +384506,42.612,67.713 +384507,44.968,67.269 +384508,47.456,66.828 +384509,39.042,68.129 +384510,41.294,67.718 +384511,43.657,67.309 +384512,46.149,66.901 +384513,37.719,68.1 +384514,39.976,67.724 +384515,42.344,67.348 +384516,44.841,66.975 +384517,36.397,68.072 +384518,38.659,67.729 +384519,41.031,67.388 +384520,43.531,67.049 +384521,35.076,68.043 +384522,37.342,67.734 +384523,39.717,67.427 +384524,42.219,67.123 +384525,33.757,68.014 +384526,36.026,67.74 +384527,38.403,67.467 +384528,40.905,67.197 +384529,32.441,67.985 +384530,34.711,67.745 +384531,37.088,67.507 +384532,39.589,67.272 +384533,31.125,67.955 +384534,33.396,67.75 +384535,35.772,67.547 +384536,38.271,67.346 +384537,29.812,67.926 +384538,32.082,67.755 +384539,34.456,67.586 +384540,36.951,67.421 +384541,28.5,67.896 +384542,30.768,67.76 +384543,33.139,67.626 +384544,35.63,67.496 +384545,27.19,67.866 +384546,29.455,67.765 +384547,31.822,67.666 +384548,34.306,67.571 +384549,25.881,67.836 +384550,28.143,67.769 +384551,30.504,67.706 +384552,32.981,67.646 +384553,24.575,67.806 +384554,26.831,67.774 +384555,29.185,67.746 +384556,31.653,67.721 +384557,23.27,67.776 +384558,25.519,67.779 +384559,27.866,67.786 +384560,30.324,67.796 +384561,21.967,67.745 +384562,24.209,67.784 +384563,26.546,67.826 +384564,28.993,67.871 +384565,20.665,67.715 +384566,22.898,67.789 +384567,25.225,67.866 +384568,27.66,67.945 +384569,19.365,67.685 +384570,21.589,67.794 +384571,23.904,67.905 +384572,26.325,68.02 +384573,18.067,67.655 +384574,20.28,67.799 +384575,22.582,67.945 +384576,24.989,68.095 +384577,16.771,67.625 +384578,18.971,67.803 +384579,21.26,67.985 +384580,23.65,68.169 +384581,15.476,67.596 +384582,17.663,67.808 +384583,19.936,68.024 +384584,22.31,68.243 +384585,14.183,67.566 +384586,16.356,67.813 +384587,18.613,68.064 +384588,20.968,68.317 +384589,12.892,67.537 +384590,15.049,67.819 +384591,17.289,68.103 +384592,19.625,68.391 +384593,11.602,67.508 +384594,13.742,67.824 +384595,15.964,68.143 +384596,18.279,68.464 +384597,10.314,67.479 +384598,12.437,67.829 +384599,14.639,68.182 +384600,16.932,68.538 +384601,9.0272,67.45 +384602,11.131,67.834 +384603,13.313,68.221 +384604,15.583,68.61 +384605,7.7423,67.422 +384606,9.8267,67.84 +384607,11.986,68.26 +384608,14.232,68.683 +384609,6.4591,67.394 +384610,8.5225,67.845 +384611,10.659,68.299 +384612,12.88,68.755 +384613,5.1774,67.366 +384614,7.2189,67.851 +384615,9.3314,68.338 +384616,11.526,68.827 +384617,3.8973,67.339 +384618,5.9157,67.857 +384619,8.0032,68.377 +384620,10.171,68.898 +384621,2.6188,67.312 +384622,4.6131,67.863 +384623,6.6745,68.415 +384624,8.8138,68.969 +384625,1.3419,67.286 +384626,3.3109,67.869 +384627,5.3453,68.453 +384628,7.4552,69.039 +384629,0.066428,67.26 +384630,2.0093,67.875 +384631,4.0155,68.492 +384632,6.095,69.109 +384633,358.79,67.235 +384634,0.70811,67.881 +384635,2.6852,68.53 +384636,4.7334,69.178 +384637,357.52,67.21 +384638,359.41,67.888 +384639,1.3544,68.567 +384640,3.3702,69.247 +384641,356.25,67.185 +384642,358.11,67.895 +384643,0.023107,68.605 +384644,2.0056,69.315 +384645,354.98,67.162 +384646,356.81,67.902 +384647,358.69,68.642 +384648,0.63964,69.382 +384649,353.71,67.138 +384650,355.51,67.909 +384651,357.36,68.679 +384652,359.27,69.449 +384653,352.44,67.116 +384654,354.21,67.916 +384655,356.03,68.716 +384656,357.9,69.515 +384657,351.18,67.094 +384658,352.91,67.924 +384659,354.69,68.753 +384660,356.53,69.581 +384661,349.92,67.073 +384662,351.61,67.931 +384663,353.36,68.79 +384664,355.16,69.646 +384665,348.65,67.052 +384666,350.32,67.939 +384667,352.03,68.826 +384668,353.79,69.71 +384669,347.39,67.032 +384670,349.02,67.948 +384671,350.69,68.862 +384672,352.42,69.773 +384673,346.13,67.013 +384674,347.72,67.956 +384675,349.36,68.898 +384676,351.04,69.836 +384677,344.87,66.995 +384678,346.43,67.965 +384679,348.02,68.933 +384680,349.66,69.898 +384681,343.62,66.977 +384682,345.13,67.974 +384683,346.68,68.968 +384684,348.29,69.959 +384685,342.36,66.961 +384686,343.83,67.983 +384687,345.35,69.003 +384688,346.91,70.019 +384689,341.1,66.945 +384690,342.54,67.993 +384691,344.01,69.038 +384692,345.53,70.078 +384693,339.85,66.93 +384694,341.24,68.003 +384695,342.67,69.072 +384696,344.15,70.137 +384697,338.6,66.915 +384698,339.95,68.013 +384699,341.34,69.106 +384700,342.77,70.194 +384701,337.35,66.902 +384702,338.66,68.023 +384703,340,69.14 +384704,341.38,70.251 +384705,336.1,66.89 +384706,337.36,68.034 +384707,338.66,69.173 +384708,340,70.307 +384709,334.85,66.878 +384710,336.07,68.045 +384711,337.32,69.206 +384712,338.62,70.362 +384713,333.6,66.868 +384714,334.77,68.056 +384715,335.98,69.239 +384716,337.23,70.415 +384717,332.35,66.858 +384718,333.48,68.068 +384719,334.65,69.271 +384720,335.84,70.468 +384721,331.1,66.85 +384722,332.19,68.08 +384723,333.31,69.304 +384724,334.46,70.52 +384725,329.86,66.842 +384726,330.9,68.092 +384727,331.97,69.335 +384728,333.07,70.571 +384729,328.61,66.835 +384730,329.6,68.104 +384731,330.63,69.367 +384732,331.68,70.621 +384733,327.37,66.83 +384734,328.31,68.117 +384735,329.29,69.398 +384736,330.29,70.67 +384737,326.12,66.825 +384738,327.02,68.131 +384739,327.95,69.429 +384740,328.9,70.718 +384741,324.88,66.822 +384742,325.73,68.144 +384743,326.61,69.459 +384744,327.51,70.765 +384745,323.64,66.82 +384746,324.44,68.158 +384747,325.27,69.489 +384748,326.12,70.81 +384749,322.4,66.818 +384750,323.15,68.173 +384751,323.92,69.519 +384752,324.73,70.855 +384753,321.16,66.818 +384754,321.86,68.187 +384755,322.58,69.548 +384756,323.34,70.899 +384757,319.92,66.819 +384758,320.57,68.202 +384759,321.24,69.577 +384760,321.95,70.941 +384761,318.68,66.821 +384762,319.28,68.218 +384763,319.9,69.605 +384764,320.56,70.983 +384765,317.44,66.825 +384766,317.99,68.234 +384767,318.56,69.633 +384768,319.16,71.023 +384769,316.2,66.829 +384770,316.69,68.25 +384771,317.22,69.661 +384772,317.77,71.062 +384773,314.96,66.835 +384774,315.4,68.266 +384775,315.88,69.689 +384776,316.38,71.1 +384777,313.72,66.841 +384778,314.11,68.283 +384779,314.53,69.716 +384780,314.98,71.137 +384781,312.49,66.849 +384782,312.82,68.301 +384783,313.19,69.742 +384784,313.59,71.172 +384785,311.25,66.858 +384786,311.53,68.318 +384787,311.85,69.768 +384788,312.19,71.207 +384789,310.01,66.869 +384790,310.25,68.336 +384791,310.51,69.794 +384792,310.8,71.24 +384793,308.78,66.88 +384794,308.96,68.355 +384795,309.16,69.82 +384796,309.41,71.272 +384797,307.54,66.893 +384798,307.67,68.374 +384799,307.82,69.845 +384800,308.01,71.303 +384801,306.3,66.907 +384802,306.38,68.393 +384803,306.48,69.869 +384804,306.62,71.333 +384805,305.07,66.922 +384806,305.09,68.413 +384807,305.14,69.893 +384808,305.22,71.362 +384809,303.83,66.938 +384810,303.8,68.433 +384811,303.8,69.917 +384812,303.83,71.389 +384813,302.6,66.956 +384814,302.51,68.453 +384815,302.45,69.941 +384816,302.43,71.416 +384817,301.36,66.974 +384818,301.22,68.474 +384819,301.11,69.964 +384820,301.04,71.441 +384821,300.13,66.994 +384822,299.93,68.496 +384823,299.77,69.986 +384824,299.65,71.465 +384825,298.89,67.015 +384826,298.64,68.517 +384827,298.43,70.008 +384828,298.25,71.487 +384829,297.65,67.038 +384830,297.35,68.539 +384831,297.08,70.03 +384832,296.86,71.509 +384833,296.42,67.062 +384834,296.06,68.562 +384835,295.74,70.051 +384836,295.47,71.529 +384837,295.18,67.086 +384838,294.77,68.585 +384839,294.4,70.072 +384840,294.07,71.548 +384841,293.94,67.112 +384842,293.48,68.608 +384843,293.06,70.093 +384844,292.68,71.566 +384845,292.71,67.14 +384846,292.19,68.632 +384847,291.72,70.113 +384848,291.29,71.583 +384849,291.47,67.168 +384850,290.9,68.656 +384851,290.37,70.133 +384852,289.9,71.598 +384853,290.23,67.198 +384854,289.61,68.68 +384855,289.03,70.152 +384856,288.5,71.613 +384857,288.99,67.229 +384858,288.31,68.705 +384859,287.69,70.171 +384860,287.11,71.626 +384861,287.75,67.261 +384862,287.02,68.73 +384863,286.35,70.19 +384864,285.72,71.638 +384865,286.51,67.294 +384866,285.73,68.756 +384867,285.01,70.208 +384868,284.33,71.649 +384869,285.27,67.329 +384870,284.44,68.782 +384871,283.67,70.226 +384872,282.95,71.659 +384873,284.03,67.365 +384874,283.15,68.808 +384875,282.33,70.243 +384876,281.56,71.667 +384877,282.79,67.402 +384878,281.86,68.835 +384879,280.99,70.26 +384880,280.17,71.675 +384881,281.55,67.44 +384882,280.57,68.862 +384883,279.64,70.277 +384884,278.78,71.681 +384885,280.31,67.479 +384886,279.27,68.89 +384887,278.3,70.293 +384888,277.4,71.686 +384889,279.06,67.519 +384890,277.98,68.918 +384891,276.96,70.309 +384892,276.01,71.69 +384893,277.82,67.561 +384894,276.69,68.946 +384895,275.62,70.324 +384896,274.63,71.693 +384897,276.57,67.603 +384898,275.39,68.975 +384899,274.29,70.339 +384900,273.24,71.695 +384901,275.33,67.647 +384902,274.1,69.004 +384903,272.95,70.354 +384904,271.86,71.696 +384905,274.08,67.692 +384906,272.81,69.033 +384907,271.61,70.368 +384908,270.48,71.695 +384909,272.83,67.738 +384910,271.51,69.063 +384911,270.27,70.382 +384912,269.1,71.694 +384913,271.58,67.785 +384914,270.22,69.093 +384915,268.93,70.396 +384916,267.71,71.691 +384917,270.33,67.833 +384918,268.92,69.124 +384919,267.59,70.409 +384920,266.34,71.688 +384921,269.08,67.882 +384922,267.63,69.155 +384923,266.26,70.422 +384924,264.96,71.683 +384925,267.83,67.932 +384926,266.33,69.186 +384927,264.92,70.435 +384928,263.58,71.678 +384929,266.58,67.983 +384930,265.04,69.217 +384931,263.58,70.447 +384932,262.2,71.671 +384933,265.32,68.035 +384934,263.74,69.249 +384935,262.24,70.459 +384936,260.83,71.664 +384937,264.07,68.088 +384938,262.44,69.281 +384939,260.91,70.471 +384940,259.45,71.655 +384941,262.81,68.142 +384942,261.15,69.314 +384943,259.57,70.482 +384944,258.08,71.646 +384945,261.55,68.197 +384946,259.85,69.346 +384947,258.24,70.493 +384948,256.71,71.635 +384949,260.29,68.253 +384950,258.55,69.379 +384951,256.9,70.504 +384952,255.34,71.624 +384953,259.03,68.31 +384954,257.25,69.413 +384955,255.57,70.514 +384956,253.97,71.612 +384957,257.77,68.368 +384958,255.95,69.446 +384959,254.23,70.524 +384960,252.6,71.599 +384961,256.5,68.426 +384962,254.65,69.48 +384963,252.9,70.534 +384964,251.24,71.585 +384965,255.24,68.486 +384966,253.35,69.515 +384967,251.57,70.543 +384968,249.87,71.57 +384969,253.97,68.546 +384970,252.05,69.549 +384971,250.23,70.552 +384972,248.51,71.554 +384973,252.7,68.607 +384974,250.75,69.584 +384975,248.9,70.561 +384976,247.14,71.538 +384977,251.43,68.669 +384978,249.45,69.619 +384979,247.57,70.57 +384980,245.78,71.521 +384981,250.16,68.731 +384982,248.15,69.654 +384983,246.24,70.578 +384984,244.42,71.503 +384985,248.89,68.795 +384986,246.85,69.69 +384987,244.91,70.587 +384988,243.06,71.484 +384989,247.62,68.859 +384990,245.54,69.725 +384991,243.58,70.594 +384992,241.71,71.464 +384993,246.34,68.923 +384994,244.24,69.761 +384995,242.25,70.602 +384996,240.35,71.444 +384997,245.06,68.989 +384998,242.93,69.798 +384999,240.92,70.61 +385000,238.99,71.423 +385001,243.78,69.055 +385002,241.63,69.834 +385003,239.59,70.617 +385004,237.64,71.402 +385005,242.5,69.121 +385006,240.33,69.871 +385007,238.26,70.624 +385008,236.29,71.379 +385009,241.22,69.189 +385010,239.02,69.907 +385011,236.93,70.631 +385012,234.94,71.357 +385013,239.94,69.256 +385014,237.71,69.944 +385015,235.6,70.637 +385016,233.59,71.333 +385017,238.65,69.325 +385018,236.41,69.982 +385019,234.28,70.644 +385020,232.24,71.309 +385021,237.36,69.394 +385022,235.1,70.019 +385023,232.95,70.65 +385024,230.9,71.285 +385025,236.07,69.463 +385026,233.79,70.056 +385027,231.62,70.656 +385028,229.56,71.26 +385029,234.78,69.533 +385030,232.48,70.094 +385031,230.3,70.662 +385032,228.21,71.234 +385033,233.49,69.603 +385034,231.17,70.132 +385035,228.97,70.668 +385036,226.87,71.208 +385037,232.19,69.673 +385038,229.86,70.17 +385039,227.65,70.673 +385040,225.53,71.182 +385041,230.9,69.744 +385042,228.55,70.208 +385043,226.32,70.679 +385044,224.2,71.155 +385045,229.6,69.816 +385046,227.24,70.246 +385047,225,70.684 +385048,222.86,71.128 +385049,228.3,69.887 +385050,225.93,70.284 +385051,223.68,70.689 +385052,221.53,71.1 +385053,227,69.959 +385054,224.62,70.323 +385055,222.36,70.694 +385056,220.19,71.072 +385057,225.69,70.032 +385058,223.31,70.361 +385059,221.03,70.699 +385060,218.86,71.044 +385061,224.39,70.104 +385062,221.99,70.4 +385063,219.71,70.704 +385064,217.53,71.016 +385065,223.08,70.177 +385066,220.68,70.439 +385067,218.39,70.709 +385068,216.21,70.987 +385069,221.77,70.25 +385070,219.36,70.477 +385071,217.07,70.714 +385072,214.88,70.958 +385073,220.46,70.323 +385074,218.05,70.516 +385075,215.75,70.719 +385076,213.56,70.929 +385077,219.14,70.396 +385078,216.73,70.555 +385079,214.43,70.723 +385080,212.23,70.899 +385081,217.83,70.469 +385082,215.42,70.594 +385083,213.12,70.728 +385084,210.91,70.87 +385085,216.51,70.543 +385086,214.1,70.633 +385087,211.8,70.732 +385088,209.59,70.84 +385089,215.19,70.616 +385090,212.78,70.672 +385091,210.48,70.737 +385092,208.27,70.81 +385093,213.87,70.69 +385094,211.46,70.711 +385095,209.16,70.741 +385096,206.96,70.781 +385097,212.55,70.763 +385098,210.14,70.75 +385099,207.85,70.746 +385100,205.64,70.751 +385101,211.23,70.836 +385102,208.83,70.789 +385103,206.53,70.75 +385104,204.33,70.721 +385105,209.9,70.91 +385106,207.51,70.827 +385107,205.22,70.755 +385108,203.02,70.691 +385109,208.57,70.983 +385110,206.18,70.866 +385111,203.9,70.759 +385112,201.71,70.661 +385113,207.24,71.056 +385114,204.86,70.905 +385115,202.59,70.764 +385116,200.4,70.631 +385117,205.91,71.129 +385118,203.54,70.944 +385119,201.28,70.768 +385120,199.1,70.602 +385121,204.58,71.202 +385122,202.22,70.983 +385123,199.96,70.773 +385124,197.79,70.572 +385125,203.24,71.275 +385126,200.9,71.021 +385127,198.65,70.778 +385128,196.49,70.543 +385129,201.9,71.347 +385130,199.57,71.06 +385131,197.34,70.782 +385132,195.19,70.514 +385133,200.57,71.419 +385134,198.25,71.099 +385135,196.03,70.787 +385136,193.89,70.485 +385137,199.22,71.491 +385138,196.92,71.137 +385139,194.72,70.792 +385140,192.59,70.456 +385141,197.88,71.563 +385142,195.6,71.175 +385143,193.41,70.797 +385144,191.3,70.427 +385145,196.54,71.634 +385146,194.27,71.214 +385147,192.1,70.802 +385148,190,70.399 +385149,195.19,71.705 +385150,192.95,71.252 +385151,190.79,70.807 +385152,188.71,70.371 +385153,193.85,71.775 +385154,191.62,71.29 +385155,189.48,70.813 +385156,187.42,70.344 +385157,192.5,71.845 +385158,190.29,71.328 +385159,188.17,70.818 +385160,186.13,70.316 +385161,191.15,71.915 +385162,188.96,71.366 +385163,186.86,70.824 +385164,184.84,70.29 +385165,189.79,71.984 +385166,187.63,71.403 +385167,185.56,70.83 +385168,183.55,70.263 +385169,188.44,72.053 +385170,186.31,71.441 +385171,184.25,70.835 +385172,182.27,70.237 +385173,187.08,72.121 +385174,184.98,71.478 +385175,182.95,70.841 +385176,180.98,70.212 +385177,185.73,72.189 +385178,183.64,71.515 +385179,181.64,70.848 +385180,179.7,70.187 +385181,184.37,72.256 +385182,182.31,71.552 +385183,180.34,70.854 +385184,178.42,70.163 +385185,183.01,72.322 +385186,180.98,71.588 +385187,179.03,70.861 +385188,177.14,70.139 +385189,181.65,72.388 +385190,179.65,71.625 +385191,177.73,70.867 +385192,175.86,70.116 +385193,180.28,72.453 +385194,178.32,71.661 +385195,176.42,70.874 +385196,174.59,70.093 +385197,178.92,72.518 +385198,176.99,71.697 +385199,175.12,70.882 +385200,173.31,70.071 +385201,177.55,72.582 +385202,175.65,71.733 +385203,173.82,70.889 +385204,172.04,70.05 +385205,176.19,72.645 +385206,174.32,71.769 +385207,172.52,70.897 +385208,170.77,70.029 +385209,174.82,72.708 +385210,172.98,71.804 +385211,171.21,70.904 +385212,169.5,70.009 +385213,173.45,72.769 +385214,171.65,71.839 +385215,169.91,70.913 +385216,168.23,69.99 +385217,172.08,72.83 +385218,170.31,71.874 +385219,168.61,70.921 +385220,166.96,69.971 +385221,170.7,72.891 +385222,168.98,71.909 +385223,167.31,70.93 +385224,165.69,69.953 +385225,169.33,72.95 +385226,167.64,71.943 +385227,166.01,70.938 +385228,164.43,69.936 +385229,167.96,73.009 +385230,166.31,71.977 +385231,164.71,70.948 +385232,163.16,69.92 +385233,166.58,73.067 +385234,164.97,72.011 +385235,163.41,70.957 +385236,161.9,69.905 +385237,165.2,73.123 +385238,163.63,72.045 +385239,162.11,70.967 +385240,160.64,69.89 +385241,163.82,73.18 +385242,162.29,72.078 +385243,160.81,70.977 +385244,159.38,69.877 +385245,162.45,73.235 +385246,160.96,72.111 +385247,159.52,70.987 +385248,158.12,69.864 +385249,161.06,73.289 +385250,159.62,72.144 +385251,158.22,70.998 +385252,156.86,69.852 +385253,159.68,73.342 +385254,158.28,72.176 +385255,156.92,71.009 +385256,155.6,69.841 +385257,158.3,73.395 +385258,156.94,72.208 +385259,155.62,71.02 +385260,154.35,69.832 +385261,156.92,73.446 +385262,155.6,72.24 +385263,154.33,71.031 +385264,153.09,69.823 +385265,155.53,73.497 +385266,154.26,72.271 +385267,153.03,71.043 +385268,151.84,69.815 +385269,154.15,73.546 +385270,152.92,72.302 +385271,151.73,71.056 +385272,150.58,69.808 +385273,152.76,73.595 +385274,151.58,72.333 +385275,150.44,71.068 +385276,149.33,69.802 +385277,151.38,73.642 +385278,150.24,72.363 +385279,149.14,71.081 +385280,148.08,69.797 +385281,149.99,73.688 +385282,148.9,72.393 +385283,147.85,71.094 +385284,146.83,69.793 +385285,148.6,73.734 +385286,147.56,72.423 +385287,146.55,71.108 +385288,145.58,69.79 +385289,147.21,73.778 +385290,146.22,72.452 +385291,145.26,71.122 +385292,144.33,69.788 +385293,145.82,73.821 +385294,144.87,72.481 +385295,143.96,71.136 +385296,143.08,69.788 +385297,144.43,73.864 +385298,143.53,72.51 +385299,142.67,71.151 +385300,141.83,69.788 +385301,143.04,73.905 +385302,142.19,72.538 +385303,141.37,71.166 +385304,140.59,69.79 +385305,141.65,73.945 +385306,140.85,72.566 +385307,140.08,71.181 +385308,139.34,69.792 +385309,140.26,73.984 +385310,139.51,72.593 +385311,138.78,71.197 +385312,138.09,69.796 +385313,138.87,74.021 +385314,138.16,72.62 +385315,137.49,71.213 +385316,136.85,69.801 +385317,137.47,74.058 +385318,136.82,72.647 +385319,136.2,71.23 +385320,135.61,69.807 +385321,136.08,74.094 +385322,135.48,72.674 +385323,134.9,71.247 +385324,134.36,69.815 +385325,134.69,74.128 +385326,134.13,72.7 +385327,133.61,71.264 +385328,133.12,69.823 +385329,133.3,74.161 +385330,132.79,72.725 +385331,132.32,71.282 +385332,131.87,69.833 +385333,131.9,74.193 +385334,131.45,72.75 +385335,131.02,71.3 +385336,130.63,69.844 +385337,130.51,74.224 +385338,130.1,72.775 +385339,129.73,71.318 +385340,129.39,69.856 +385341,129.11,74.254 +385342,128.76,72.8 +385343,128.44,71.337 +385344,128.15,69.869 +385345,127.72,74.283 +385346,127.42,72.824 +385347,127.14,71.357 +385348,126.9,69.883 +385349,126.32,74.31 +385350,126.07,72.847 +385351,125.85,71.376 +385352,125.66,69.899 +385353,124.93,74.336 +385354,124.73,72.871 +385355,124.56,71.397 +385356,124.42,69.916 +385357,123.54,74.362 +385358,123.39,72.893 +385359,123.27,71.417 +385360,123.18,69.934 +385361,122.14,74.386 +385362,122.04,72.916 +385363,121.97,71.438 +385364,121.94,69.953 +385365,120.75,74.408 +385366,120.7,72.938 +385367,120.68,71.459 +385368,120.7,69.974 +385369,119.35,74.43 +385370,119.35,72.96 +385371,119.39,71.481 +385372,119.46,69.995 +385373,117.96,74.45 +385374,118.01,72.981 +385375,118.09,71.503 +385376,118.21,70.018 +385377,116.56,74.47 +385378,116.67,73.002 +385379,116.8,71.526 +385380,116.97,70.043 +385381,115.17,74.488 +385382,115.32,73.022 +385383,115.51,71.548 +385384,115.73,70.068 +385385,113.78,74.505 +385386,113.98,73.042 +385387,114.22,71.572 +385388,114.49,70.095 +385389,112.38,74.52 +385390,112.63,73.062 +385391,112.92,71.596 +385392,113.25,70.122 +385393,110.99,74.535 +385394,111.29,73.081 +385395,111.63,71.62 +385396,112.01,70.151 +385397,109.6,74.549 +385398,109.95,73.1 +385399,110.34,71.644 +385400,110.76,70.182 +385401,108.2,74.561 +385402,108.6,73.119 +385403,109.04,71.669 +385404,109.52,70.213 +385405,106.81,74.572 +385406,107.26,73.137 +385407,107.75,71.694 +385408,108.28,70.246 +385409,105.42,74.582 +385410,105.92,73.155 +385411,106.45,71.72 +385412,107.04,70.28 +385413,104.03,74.591 +385414,104.57,73.172 +385415,105.16,71.746 +385416,105.79,70.315 +385417,102.64,74.599 +385418,103.23,73.189 +385419,103.87,71.773 +385420,104.55,70.351 +385421,101.25,74.605 +385422,101.89,73.206 +385423,102.57,71.8 +385424,103.3,70.388 +385425,99.859,74.611 +385426,100.55,73.222 +385427,101.28,71.827 +385428,102.06,70.427 +385429,98.47,74.615 +385430,99.203,73.238 +385431,99.983,71.854 +385432,100.81,70.466 +385433,97.082,74.618 +385434,97.861,73.253 +385435,98.688,71.882 +385436,99.566,70.507 +385437,95.695,74.62 +385438,96.519,73.269 +385439,97.393,71.911 +385440,98.319,70.549 +385441,94.308,74.622 +385442,95.177,73.283 +385443,96.097,71.94 +385444,97.071,70.592 +385445,92.922,74.622 +385446,93.836,73.298 +385447,94.802,71.969 +385448,95.823,70.636 +385449,91.536,74.621 +385450,92.495,73.312 +385451,93.506,71.998 +385452,94.574,70.682 +385453,90.152,74.619 +385454,91.153,73.326 +385455,92.21,72.028 +385456,93.324,70.728 +385457,88.768,74.615 +385458,89.813,73.339 +385459,90.913,72.058 +385460,92.073,70.775 +385461,87.385,74.611 +385462,88.472,73.352 +385463,89.616,72.089 +385464,90.821,70.824 +385465,86.003,74.606 +385466,87.132,73.365 +385467,88.319,72.12 +385468,89.568,70.873 +385469,84.622,74.6 +385470,85.792,73.377 +385471,87.021,72.151 +385472,88.315,70.924 +385473,83.242,74.593 +385474,84.452,73.389 +385475,85.724,72.182 +385476,87.06,70.975 +385477,81.862,74.585 +385478,83.113,73.401 +385479,84.425,72.214 +385480,85.805,71.028 +385481,80.484,74.576 +385482,81.774,73.412 +385483,83.127,72.247 +385484,84.548,71.081 +385485,79.107,74.566 +385486,80.435,73.423 +385487,81.828,72.279 +385488,83.29,71.136 +385489,77.731,74.555 +385490,79.097,73.434 +385491,80.529,72.312 +385492,82.031,71.191 +385493,76.356,74.543 +385494,77.759,73.444 +385495,79.229,72.345 +385496,80.771,71.247 +385497,74.982,74.531 +385498,76.422,73.455 +385499,77.929,72.379 +385500,79.51,71.305 +385501,73.61,74.517 +385502,75.084,73.465 +385503,76.628,72.412 +385504,78.248,71.363 +385505,72.238,74.503 +385506,73.747,73.474 +385507,75.327,72.446 +385508,76.984,71.422 +385509,70.868,74.488 +385510,72.411,73.483 +385511,74.026,72.481 +385512,75.719,71.481 +385513,69.499,74.472 +385514,71.075,73.493 +385515,72.724,72.515 +385516,74.453,71.542 +385517,68.131,74.455 +385518,69.739,73.501 +385519,71.422,72.55 +385520,73.185,71.603 +385521,66.764,74.438 +385522,68.404,73.51 +385523,70.119,72.585 +385524,71.916,71.666 +385525,65.399,74.419 +385526,67.069,73.518 +385527,68.816,72.621 +385528,70.646,71.728 +385529,64.034,74.4 +385530,65.735,73.526 +385531,67.512,72.656 +385532,69.374,71.792 +385533,62.672,74.381 +385534,64.401,73.534 +385535,66.208,72.692 +385536,68.101,71.856 +385537,61.31,74.36 +385538,63.067,73.542 +385539,64.903,72.728 +385540,66.826,71.921 +385541,59.95,74.339 +385542,61.734,73.549 +385543,63.598,72.764 +385544,65.55,71.987 +385545,58.591,74.318 +385546,60.402,73.556 +385547,62.293,72.801 +385548,64.273,72.053 +385549,57.234,74.295 +385550,59.07,73.563 +385551,60.987,72.838 +385552,62.993,72.12 +385553,55.878,74.272 +385554,57.738,73.57 +385555,59.68,72.875 +385556,61.713,72.188 +385557,54.524,74.249 +385558,56.407,73.577 +385559,58.373,72.912 +385560,60.43,72.256 +385561,53.171,74.225 +385562,55.076,73.583 +385563,57.065,72.949 +385564,59.146,72.325 +385565,51.819,74.2 +385566,53.746,73.589 +385567,55.757,72.986 +385568,57.861,72.394 +385569,50.469,74.175 +385570,52.416,73.595 +385571,54.448,73.024 +385572,56.574,72.463 +385573,49.121,74.15 +385574,51.087,73.601 +385575,53.139,73.062 +385576,55.285,72.533 +385577,47.774,74.124 +385578,49.758,73.607 +385579,51.829,73.1 +385580,53.995,72.604 +385581,46.428,74.097 +385582,48.43,73.613 +385583,50.518,73.138 +385584,52.703,72.675 +385585,45.084,74.071 +385586,47.102,73.618 +385587,49.207,73.176 +385588,51.409,72.746 +385589,43.741,74.044 +385590,45.775,73.624 +385591,47.896,73.214 +385592,50.113,72.818 +385593,42.4,74.016 +385594,44.449,73.629 +385595,46.583,73.253 +385596,48.816,72.889 +385597,41.061,73.988 +385598,43.122,73.634 +385599,45.271,73.291 +385600,47.517,72.962 +385601,39.723,73.96 +385602,41.797,73.639 +385603,43.957,73.33 +385604,46.216,73.034 +385605,38.387,73.932 +385606,40.472,73.644 +385607,42.644,73.369 +385608,44.914,73.107 +385609,37.052,73.903 +385610,39.147,73.649 +385611,41.329,73.408 +385612,43.61,73.18 +385613,35.719,73.874 +385614,37.823,73.654 +385615,40.014,73.446 +385616,42.304,73.253 +385617,34.388,73.845 +385618,36.5,73.659 +385619,38.698,73.485 +385620,40.996,73.326 +385621,33.058,73.816 +385622,35.177,73.664 +385623,37.382,73.524 +385624,39.687,73.4 +385625,31.73,73.787 +385626,33.854,73.669 +385627,36.065,73.563 +385628,38.375,73.473 +385629,30.403,73.757 +385630,32.532,73.673 +385631,34.748,73.602 +385632,37.062,73.547 +385633,29.078,73.728 +385634,31.211,73.678 +385635,33.43,73.642 +385636,35.748,73.62 +385637,27.755,73.698 +385638,29.89,73.683 +385639,32.111,73.681 +385640,34.431,73.694 +385641,26.433,73.669 +385642,28.57,73.687 +385643,30.792,73.72 +385644,33.113,73.767 +385645,25.113,73.639 +385646,27.25,73.692 +385647,29.473,73.759 +385648,31.792,73.841 +385649,23.794,73.61 +385650,25.931,73.697 +385651,28.152,73.798 +385652,30.47,73.915 +385653,22.477,73.58 +385654,24.612,73.702 +385655,26.831,73.837 +385656,29.147,73.988 +385657,21.162,73.551 +385658,23.294,73.706 +385659,25.51,73.876 +385660,27.821,74.061 +385661,19.848,73.522 +385662,21.977,73.711 +385663,24.188,73.915 +385664,26.494,74.134 +385665,18.536,73.492 +385666,20.66,73.716 +385667,22.865,73.954 +385668,25.165,74.207 +385669,17.226,73.464 +385670,19.343,73.721 +385671,21.542,73.993 +385672,23.834,74.28 +385673,15.917,73.435 +385674,18.027,73.726 +385675,20.218,74.031 +385676,22.502,74.353 +385677,14.61,73.406 +385678,16.712,73.731 +385679,18.893,74.07 +385680,21.167,74.425 +385681,13.304,73.378 +385682,15.397,73.736 +385683,17.568,74.109 +385684,19.831,74.497 +385685,12,73.35 +385686,14.082,73.742 +385687,16.243,74.147 +385688,18.494,74.568 +385689,10.697,73.322 +385690,12.769,73.747 +385691,14.917,74.186 +385692,17.154,74.64 +385693,9.3966,73.295 +385694,11.455,73.753 +385695,13.59,74.224 +385696,15.813,74.711 +385697,8.0972,73.268 +385698,10.142,73.758 +385699,12.263,74.262 +385700,14.47,74.781 +385701,6.7995,73.241 +385702,8.8301,73.764 +385703,10.935,74.3 +385704,13.126,74.851 +385705,5.5032,73.215 +385706,7.5182,73.77 +385707,9.6064,74.338 +385708,11.78,74.921 +385709,4.2085,73.189 +385710,6.2069,73.776 +385711,8.2774,74.376 +385712,10.432,74.99 +385713,2.9153,73.164 +385714,4.8961,73.782 +385715,6.9479,74.414 +385716,9.0824,75.059 +385717,1.6236,73.139 +385718,3.5858,73.789 +385719,5.6179,74.451 +385720,7.7314,75.127 +385721,0.33342,73.115 +385722,2.276,73.795 +385723,4.2874,74.488 +385724,6.3788,75.195 +385725,359.04,73.091 +385726,0.96667,73.802 +385727,2.9563,74.525 +385728,5.0247,75.262 +385729,357.76,73.068 +385730,359.66,73.809 +385731,1.6247,74.562 +385732,3.669,75.328 +385733,356.47,73.045 +385734,358.35,73.816 +385735,0.29252,74.599 +385736,2.3118,75.394 +385737,355.19,73.023 +385738,357.04,73.823 +385739,358.96,74.635 +385740,0.95304,75.459 +385741,353.9,73.002 +385742,355.73,73.831 +385743,357.63,74.672 +385744,359.59,75.524 +385745,352.62,72.981 +385746,354.43,73.839 +385747,356.29,74.708 +385748,358.23,75.588 +385749,351.34,72.961 +385750,353.12,73.847 +385751,354.96,74.744 +385752,356.87,75.651 +385753,350.06,72.942 +385754,351.81,73.855 +385755,353.62,74.779 +385756,355.5,75.714 +385757,348.79,72.923 +385758,350.51,73.864 +385759,352.29,74.815 +385760,354.14,75.775 +385761,347.51,72.905 +385762,349.2,73.873 +385763,350.95,74.85 +385764,352.77,75.836 +385765,346.24,72.888 +385766,347.9,73.882 +385767,349.62,74.885 +385768,351.4,75.896 +385769,344.96,72.872 +385770,346.59,73.891 +385771,348.28,74.919 +385772,350.03,75.956 +385773,343.69,72.856 +385774,345.29,73.901 +385775,346.94,74.953 +385776,348.66,76.014 +385777,342.42,72.842 +385778,343.99,73.911 +385779,345.61,74.987 +385780,347.29,76.072 +385781,341.15,72.828 +385782,342.68,73.921 +385783,344.27,75.021 +385784,345.91,76.129 +385785,339.88,72.815 +385786,341.38,73.931 +385787,342.93,75.055 +385788,344.54,76.185 +385789,338.61,72.803 +385790,340.08,73.942 +385791,341.59,75.088 +385792,343.16,76.24 +385793,337.35,72.792 +385794,338.78,73.953 +385795,340.25,75.121 +385796,341.79,76.294 +385797,336.08,72.782 +385798,337.47,73.965 +385799,338.91,75.153 +385800,340.41,76.347 +385801,334.82,72.773 +385802,336.17,73.976 +385803,337.57,75.185 +385804,339.03,76.399 +385805,333.55,72.765 +385806,334.87,73.989 +385807,336.23,75.217 +385808,337.65,76.451 +385809,332.29,72.758 +385810,333.57,74.001 +385811,334.89,75.249 +385812,336.27,76.501 +385813,331.03,72.752 +385814,332.27,74.014 +385815,333.55,75.28 +385816,334.89,76.55 +385817,329.77,72.747 +385818,330.97,74.027 +385819,332.21,75.311 +385820,333.5,76.599 +385821,328.51,72.743 +385822,329.67,74.04 +385823,330.87,75.342 +385824,332.12,76.646 +385825,327.25,72.74 +385826,328.37,74.054 +385827,329.53,75.372 +385828,330.73,76.692 +385829,325.99,72.738 +385830,327.07,74.068 +385831,328.19,75.402 +385832,329.35,76.737 +385833,324.74,72.737 +385834,325.77,74.083 +385835,326.85,75.431 +385836,327.96,76.782 +385837,323.48,72.737 +385838,324.47,74.098 +385839,325.5,75.461 +385840,326.57,76.825 +385841,322.23,72.738 +385842,323.17,74.113 +385843,324.16,75.489 +385844,325.19,76.867 +385845,320.97,72.741 +385846,321.88,74.129 +385847,322.82,75.518 +385848,323.8,76.908 +385849,319.72,72.744 +385850,320.58,74.145 +385851,321.47,75.546 +385852,322.41,76.947 +385853,318.46,72.749 +385854,319.28,74.161 +385855,320.13,75.574 +385856,321.02,76.986 +385857,317.21,72.755 +385858,317.98,74.178 +385859,318.79,75.601 +385860,319.63,77.024 +385861,315.96,72.762 +385862,316.68,74.195 +385863,317.44,75.628 +385864,318.24,77.06 +385865,314.71,72.77 +385866,315.39,74.213 +385867,316.1,75.655 +385868,316.85,77.095 +385869,313.46,72.78 +385870,314.09,74.231 +385871,314.75,75.681 +385872,315.45,77.129 +385873,312.21,72.79 +385874,312.79,74.249 +385875,313.41,75.707 +385876,314.06,77.163 +385877,310.96,72.802 +385878,311.5,74.268 +385879,312.06,75.732 +385880,312.67,77.194 +385881,309.71,72.815 +385882,310.2,74.287 +385883,310.72,75.757 +385884,311.27,77.225 +385885,308.46,72.83 +385886,308.9,74.307 +385887,309.37,75.782 +385888,309.88,77.255 +385889,307.21,72.845 +385890,307.6,74.327 +385891,308.03,75.806 +385892,308.49,77.283 +385893,305.96,72.862 +385894,306.31,74.347 +385895,306.68,75.83 +385896,307.09,77.31 +385897,304.72,72.88 +385898,305.01,74.368 +385899,305.34,75.854 +385900,305.7,77.336 +385901,303.47,72.899 +385902,303.71,74.389 +385903,303.99,75.877 +385904,304.3,77.361 +385905,302.22,72.919 +385906,302.42,74.411 +385907,302.65,75.9 +385908,302.91,77.385 +385909,300.97,72.941 +385910,301.12,74.433 +385911,301.3,75.922 +385912,301.52,77.408 +385913,299.73,72.963 +385914,299.83,74.455 +385915,299.96,75.944 +385916,300.12,77.429 +385917,298.48,72.987 +385918,298.53,74.478 +385919,298.61,75.966 +385920,298.73,77.449 +385921,297.23,73.013 +385922,297.23,74.501 +385923,297.27,75.987 +385924,297.33,77.468 +385925,295.98,73.039 +385926,295.94,74.525 +385927,295.92,76.008 +385928,295.94,77.486 +385929,294.74,73.067 +385930,294.64,74.549 +385931,294.57,76.028 +385932,294.54,77.503 +385933,293.49,73.096 +385934,293.34,74.573 +385935,293.23,76.048 +385936,293.15,77.518 +385937,292.24,73.126 +385938,292.05,74.598 +385939,291.88,76.068 +385940,291.75,77.533 +385941,291,73.157 +385942,290.75,74.623 +385943,290.54,76.087 +385944,290.36,77.546 +385945,289.75,73.19 +385946,289.45,74.649 +385947,289.19,76.106 +385948,288.97,77.558 +385949,288.5,73.224 +385950,288.16,74.675 +385951,287.85,76.124 +385952,287.57,77.569 +385953,287.25,73.259 +385954,286.86,74.702 +385955,286.5,76.142 +385956,286.18,77.578 +385957,286,73.295 +385958,285.56,74.728 +385959,285.16,76.16 +385960,284.79,77.587 +385961,284.76,73.332 +385962,284.27,74.756 +385963,283.81,76.177 +385964,283.39,77.595 +385965,283.51,73.371 +385966,282.97,74.783 +385967,282.47,76.194 +385968,282,77.601 +385969,282.26,73.41 +385970,281.67,74.811 +385971,281.12,76.211 +385972,280.61,77.606 +385973,281.01,73.451 +385974,280.37,74.84 +385975,279.78,76.227 +385976,279.22,77.61 +385977,279.76,73.493 +385978,279.07,74.869 +385979,278.43,76.243 +385980,277.83,77.613 +385981,278.51,73.536 +385982,277.78,74.898 +385983,277.09,76.258 +385984,276.44,77.615 +385985,277.26,73.581 +385986,276.48,74.927 +385987,275.74,76.273 +385988,275.05,77.616 +385989,276,73.626 +385990,275.18,74.957 +385991,274.4,76.288 +385992,273.66,77.616 +385993,274.75,73.673 +385994,273.88,74.988 +385995,273.06,76.302 +385996,272.27,77.615 +385997,273.5,73.72 +385998,272.58,75.018 +385999,271.71,76.316 +386000,270.88,77.613 +386001,272.24,73.769 +386002,271.28,75.049 +386003,270.37,76.33 +386004,269.5,77.609 +386005,270.99,73.819 +386006,269.98,75.081 +386007,269.02,76.344 +386008,268.11,77.605 +386009,269.73,73.869 +386010,268.68,75.113 +386011,267.68,76.357 +386012,266.72,77.6 +386013,268.48,73.921 +386014,267.38,75.145 +386015,266.34,76.369 +386016,265.34,77.593 +386017,267.22,73.974 +386018,266.08,75.177 +386019,265,76.382 +386020,263.96,77.586 +386021,265.96,74.028 +386022,264.78,75.21 +386023,263.65,76.394 +386024,262.57,77.578 +386025,264.7,74.083 +386026,263.48,75.243 +386027,262.31,76.406 +386028,261.19,77.569 +386029,263.44,74.139 +386030,262.18,75.276 +386031,260.97,76.417 +386032,259.81,77.559 +386033,262.18,74.195 +386034,260.88,75.31 +386035,259.63,76.428 +386036,258.43,77.548 +386037,260.92,74.253 +386038,259.58,75.344 +386039,258.29,76.439 +386040,257.05,77.536 +386041,259.66,74.312 +386042,258.27,75.378 +386043,256.95,76.45 +386044,255.67,77.523 +386045,258.39,74.371 +386046,256.97,75.413 +386047,255.61,76.46 +386048,254.3,77.51 +386049,257.13,74.431 +386050,255.67,75.448 +386051,254.27,76.47 +386052,252.92,77.495 +386053,255.86,74.493 +386054,254.37,75.483 +386055,252.93,76.48 +386056,251.54,77.48 +386057,254.6,74.555 +386058,253.06,75.519 +386059,251.59,76.489 +386060,250.17,77.464 +386061,253.33,74.618 +386062,251.76,75.555 +386063,250.25,76.498 +386064,248.8,77.447 +386065,252.06,74.681 +386066,250.45,75.591 +386067,248.91,76.507 +386068,247.43,77.429 +386069,250.79,74.745 +386070,249.15,75.627 +386071,247.57,76.516 +386072,246.06,77.411 +386073,249.51,74.811 +386074,247.84,75.663 +386075,246.23,76.525 +386076,244.69,77.392 +386077,248.24,74.876 +386078,246.54,75.7 +386079,244.9,76.533 +386080,243.32,77.372 +386081,246.97,74.943 +386082,245.23,75.737 +386083,243.56,76.541 +386084,241.95,77.352 +386085,245.69,75.01 +386086,243.92,75.774 +386087,242.22,76.549 +386088,240.59,77.331 +386089,244.41,75.078 +386090,242.62,75.812 +386091,240.89,76.556 +386092,239.22,77.309 +386093,243.13,75.146 +386094,241.31,75.85 +386095,239.55,76.564 +386096,237.86,77.287 +386097,241.85,75.215 +386098,240,75.887 +386099,238.21,76.571 +386100,236.5,77.264 +386101,240.57,75.285 +386102,238.69,75.925 +386103,236.88,76.578 +386104,235.14,77.24 +386105,239.29,75.355 +386106,237.38,75.964 +386107,235.55,76.585 +386108,233.78,77.216 +386109,238,75.426 +386110,236.07,76.002 +386111,234.21,76.592 +386112,232.42,77.192 +386113,236.72,75.497 +386114,234.76,76.041 +386115,232.88,76.598 +386116,231.06,77.167 +386117,235.43,75.568 +386118,233.45,76.08 +386119,231.54,76.605 +386120,229.71,77.141 +386121,234.14,75.641 +386122,232.14,76.118 +386123,230.21,76.611 +386124,228.35,77.115 +386125,232.85,75.713 +386126,230.83,76.157 +386127,228.88,76.617 +386128,227,77.089 +386129,231.56,75.786 +386130,229.51,76.197 +386131,227.55,76.623 +386132,225.65,77.062 +386133,230.27,75.859 +386134,228.2,76.236 +386135,226.22,76.629 +386136,224.3,77.035 +386137,228.97,75.932 +386138,226.89,76.275 +386139,224.89,76.635 +386140,222.96,77.008 +386141,227.67,76.006 +386142,225.57,76.315 +386143,223.55,76.64 +386144,221.61,76.98 +386145,226.37,76.08 +386146,224.26,76.355 +386147,222.23,76.646 +386148,220.26,76.952 +386149,225.07,76.155 +386150,222.94,76.394 +386151,220.9,76.652 +386152,218.92,76.924 +386153,223.77,76.229 +386154,221.63,76.434 +386155,219.57,76.657 +386156,217.58,76.895 +386157,222.47,76.304 +386158,220.31,76.474 +386159,218.24,76.662 +386160,216.24,76.867 +386161,221.16,76.379 +386162,219,76.514 +386163,216.91,76.668 +386164,214.9,76.838 +386165,219.86,76.454 +386166,217.68,76.554 +386167,215.58,76.673 +386168,213.56,76.809 +386169,218.55,76.529 +386170,216.36,76.594 +386171,214.26,76.678 +386172,212.23,76.78 +386173,217.24,76.604 +386174,215.04,76.634 +386175,212.93,76.684 +386176,210.89,76.75 +386177,215.93,76.679 +386178,213.72,76.674 +386179,211.6,76.689 +386180,209.56,76.721 +386181,214.61,76.754 +386182,212.4,76.714 +386183,210.28,76.694 +386184,208.23,76.692 +386185,213.3,76.829 +386186,211.08,76.754 +386187,208.95,76.699 +386188,206.9,76.662 +386189,211.98,76.905 +386190,209.76,76.794 +386191,207.63,76.705 +386192,205.57,76.633 +386193,210.66,76.98 +386194,208.44,76.834 +386195,206.31,76.71 +386196,204.25,76.604 +386197,209.34,77.055 +386198,207.12,76.874 +386199,204.98,76.715 +386200,202.92,76.574 +386201,208.02,77.129 +386202,205.8,76.914 +386203,203.66,76.72 +386204,201.6,76.545 +386205,206.69,77.204 +386206,204.47,76.954 +386207,202.34,76.726 +386208,200.28,76.516 +386209,205.37,77.279 +386210,203.15,76.994 +386211,201.02,76.731 +386212,198.96,76.487 +386213,204.04,77.353 +386214,201.83,77.034 +386215,199.7,76.737 +386216,197.64,76.459 +386217,202.71,77.427 +386218,200.5,77.074 +386219,198.37,76.742 +386220,196.32,76.43 +386221,201.38,77.501 +386222,199.18,77.114 +386223,197.05,76.748 +386224,195.01,76.402 +386225,200.05,77.574 +386226,197.85,77.153 +386227,195.73,76.754 +386228,193.69,76.374 +386229,198.72,77.647 +386230,196.52,77.193 +386231,194.42,76.76 +386232,192.38,76.346 +386233,197.38,77.72 +386234,195.2,77.232 +386235,193.1,76.766 +386236,191.07,76.319 +386237,196.04,77.793 +386238,193.87,77.272 +386239,191.78,76.772 +386240,189.76,76.292 +386241,194.7,77.865 +386242,192.54,77.311 +386243,190.46,76.778 +386244,188.45,76.265 +386245,193.36,77.936 +386246,191.21,77.35 +386247,189.14,76.785 +386248,187.15,76.239 +386249,192.02,78.008 +386250,189.88,77.389 +386251,187.83,76.791 +386252,185.84,76.213 +386253,190.68,78.078 +386254,188.55,77.428 +386255,186.51,76.798 +386256,184.54,76.188 +386257,189.33,78.148 +386258,187.22,77.466 +386259,185.2,76.805 +386260,183.24,76.163 +386261,187.98,78.218 +386262,185.89,77.505 +386263,183.88,76.812 +386264,181.94,76.138 +386265,186.63,78.287 +386266,184.56,77.543 +386267,182.57,76.819 +386268,180.64,76.114 +386269,185.28,78.356 +386270,183.23,77.581 +386271,181.25,76.827 +386272,179.34,76.091 +386273,183.93,78.423 +386274,181.9,77.619 +386275,179.94,76.834 +386276,178.05,76.068 +386277,182.58,78.491 +386278,180.56,77.656 +386279,178.62,76.842 +386280,176.75,76.046 +386281,181.22,78.557 +386282,179.23,77.694 +386283,177.31,76.85 +386284,175.46,76.024 +386285,179.87,78.623 +386286,177.9,77.731 +386287,176,76.858 +386288,174.17,76.004 +386289,178.51,78.688 +386290,176.56,77.768 +386291,174.69,76.867 +386292,172.88,75.983 +386293,177.15,78.753 +386294,175.23,77.805 +386295,173.38,76.876 +386296,171.59,75.964 +386297,175.79,78.817 +386298,173.89,77.842 +386299,172.06,76.885 +386300,170.3,75.945 +386301,174.43,78.88 +386302,172.55,77.878 +386303,170.75,76.894 +386304,169.01,75.927 +386305,173.06,78.942 +386306,171.22,77.914 +386307,169.44,76.904 +386308,167.73,75.91 +386309,171.7,79.003 +386310,169.88,77.95 +386311,168.13,76.913 +386312,166.45,75.893 +386313,170.33,79.064 +386314,168.54,77.985 +386315,166.82,76.924 +386316,165.16,75.877 +386317,168.96,79.124 +386318,167.21,78.021 +386319,165.52,76.934 +386320,163.88,75.863 +386321,167.6,79.183 +386322,165.87,78.056 +386323,164.21,76.945 +386324,162.6,75.849 +386325,166.22,79.241 +386326,164.53,78.09 +386327,162.9,76.956 +386328,161.32,75.835 +386329,164.85,79.298 +386330,163.19,78.125 +386331,161.59,76.967 +386332,160.05,75.823 +386333,163.48,79.354 +386334,161.85,78.159 +386335,160.28,76.978 +386336,158.77,75.812 +386337,162.11,79.409 +386338,160.51,78.193 +386339,158.98,76.99 +386340,157.49,75.802 +386341,160.73,79.463 +386342,159.17,78.226 +386343,157.67,77.003 +386344,156.22,75.792 +386345,159.35,79.517 +386346,157.83,78.259 +386347,156.36,77.015 +386348,154.95,75.784 +386349,157.98,79.569 +386350,156.49,78.292 +386351,155.06,77.028 +386352,153.68,75.776 +386353,156.6,79.62 +386354,155.15,78.325 +386355,153.75,77.041 +386356,152.41,75.77 +386357,155.22,79.67 +386358,153.8,78.357 +386359,152.45,77.055 +386360,151.14,75.764 +386361,153.84,79.72 +386362,152.46,78.389 +386363,151.14,77.069 +386364,149.87,75.76 +386365,152.46,79.768 +386366,151.12,78.42 +386367,149.84,77.083 +386368,148.6,75.757 +386369,151.07,79.815 +386370,149.78,78.451 +386371,148.53,77.098 +386372,147.33,75.754 +386373,149.69,79.861 +386374,148.43,78.482 +386375,147.23,77.113 +386376,146.07,75.753 +386377,148.31,79.906 +386378,147.09,78.512 +386379,145.92,77.128 +386380,144.8,75.753 +386381,146.92,79.95 +386382,145.75,78.543 +386383,144.62,77.144 +386384,143.54,75.754 +386385,145.54,79.993 +386386,144.4,78.572 +386387,143.32,77.16 +386388,142.27,75.756 +386389,144.15,80.0345 +386390,143.06,78.602 +386391,142.01,77.177 +386392,141.01,75.76 +386393,142.76,80.0751 +386394,141.71,78.631 +386395,140.71,77.193 +386396,139.75,75.764 +386397,141.37,80.1145 +386398,140.37,78.659 +386399,139.41,77.211 +386400,138.49,75.77 +386401,139.98,80.1528 +386402,139.02,78.687 +386403,138.1,77.228 +386404,137.23,75.776 +386405,138.59,80.19 +386406,137.68,78.715 +386407,136.8,77.247 +386408,135.97,75.784 +386409,137.2,80.226 +386410,136.33,78.743 +386411,135.5,77.265 +386412,134.71,75.794 +386413,135.81,80.2608 +386414,134.98,78.77 +386415,134.2,77.284 +386416,133.45,75.804 +386417,134.42,80.2944 +386418,133.64,78.796 +386419,132.9,77.303 +386420,132.19,75.815 +386421,133.03,80.3269 +386422,132.29,78.823 +386423,131.59,77.323 +386424,130.93,75.828 +386425,131.64,80.3582 +386426,130.95,78.849 +386427,130.29,77.343 +386428,129.68,75.842 +386429,130.24,80.3883 +386430,129.6,78.874 +386431,128.99,77.364 +386432,128.42,75.857 +386433,128.85,80.4173 +386434,128.25,78.899 +386435,127.69,77.385 +386436,127.16,75.874 +386437,127.46,80.445 +386438,126.9,78.924 +386439,126.39,77.406 +386440,125.91,75.892 +386441,126.06,80.4715 +386442,125.56,78.948 +386443,125.09,77.428 +386444,124.65,75.91 +386445,124.67,80.4969 +386446,124.21,78.972 +386447,123.79,77.45 +386448,123.4,75.931 +386449,123.28,80.521 +386450,122.86,78.996 +386451,122.49,77.472 +386452,122.14,75.952 +386453,121.88,80.544 +386454,121.52,79.019 +386455,121.18,77.495 +386456,120.89,75.975 +386457,120.49,80.5658 +386458,120.17,79.042 +386459,119.88,77.519 +386460,119.63,75.999 +386461,119.09,80.5863 +386462,118.82,79.064 +386463,118.58,77.543 +386464,118.38,76.024 +386465,117.7,80.6057 +386466,117.47,79.086 +386467,117.28,77.567 +386468,117.13,76.05 +386469,116.3,80.6239 +386470,116.12,79.107 +386471,115.98,77.592 +386472,115.87,76.078 +386473,114.9,80.6409 +386474,114.78,79.129 +386475,114.68,77.617 +386476,114.62,76.107 +386477,113.51,80.6567 +386478,113.43,79.149 +386479,113.38,77.642 +386480,113.36,76.137 +386481,112.11,80.6713 +386482,112.08,79.17 +386483,112.08,77.668 +386484,112.11,76.168 +386485,110.72,80.6847 +386486,110.73,79.19 +386487,110.78,77.695 +386488,110.86,76.201 +386489,109.32,80.697 +386490,109.38,79.209 +386491,109.48,77.721 +386492,109.6,76.235 +386493,107.93,80.7081 +386494,108.04,79.228 +386495,108.18,77.748 +386496,108.35,76.27 +386497,106.53,80.7181 +386498,106.69,79.247 +386499,106.88,77.776 +386500,107.09,76.306 +386501,105.14,80.7268 +386502,105.34,79.266 +386503,105.57,77.804 +386504,105.84,76.344 +386505,103.75,80.7345 +386506,103.99,79.284 +386507,104.27,77.832 +386508,104.59,76.382 +386509,102.35,80.741 +386510,102.65,79.301 +386511,102.97,77.861 +386512,103.33,76.422 +386513,100.96,80.7463 +386514,101.3,79.318 +386515,101.67,77.89 +386516,102.08,76.463 +386517,99.564,80.7506 +386518,99.95,79.335 +386519,100.37,77.92 +386520,100.82,76.506 +386521,98.171,80.7537 +386522,98.603,79.352 +386523,99.067,77.95 +386524,99.564,76.549 +386525,96.779,80.7558 +386526,97.255,79.368 +386527,97.765,77.98 +386528,98.308,76.594 +386529,95.386,80.7567 +386530,95.908,79.384 +386531,96.463,78.011 +386532,97.052,76.64 +386533,93.995,80.7565 +386534,94.561,79.399 +386535,95.161,78.042 +386536,95.795,76.687 +386537,92.604,80.7553 +386538,93.214,79.414 +386539,93.858,78.073 +386540,94.537,76.735 +386541,91.213,80.7531 +386542,91.867,79.429 +386543,92.556,78.105 +386544,93.279,76.784 +386545,89.823,80.7498 +386546,90.521,79.443 +386547,91.253,78.138 +386548,92.02,76.834 +386549,88.433,80.7454 +386550,89.174,79.457 +386551,89.95,78.17 +386552,90.761,76.886 +386553,87.045,80.74 +386554,87.828,79.471 +386555,88.647,78.203 +386556,89.501,76.938 +386557,85.657,80.7337 +386558,86.482,79.484 +386559,87.343,78.236 +386560,88.241,76.992 +386561,84.269,80.7263 +386562,85.136,79.497 +386563,86.039,78.27 +386564,86.98,77.046 +386565,82.883,80.718 +386566,83.79,79.51 +386567,84.735,78.304 +386568,85.718,77.102 +386569,81.497,80.7088 +386570,82.445,79.522 +386571,83.431,78.338 +386572,84.455,77.158 +386573,80.112,80.6985 +386574,81.1,79.534 +386575,82.126,78.373 +386576,83.192,77.216 +386577,78.727,80.6874 +386578,79.755,79.546 +386579,80.821,78.408 +386580,81.928,77.275 +386581,77.344,80.6754 +386582,78.41,79.558 +386583,79.516,78.443 +386584,80.662,77.334 +386585,75.961,80.6624 +386586,77.066,79.569 +386587,78.21,78.479 +386588,79.396,77.394 +386589,74.58,80.6487 +386590,75.722,79.58 +386591,76.904,78.515 +386592,78.129,77.456 +386593,73.199,80.634 +386594,74.378,79.59 +386595,75.598,78.551 +386596,76.862,77.518 +386597,71.819,80.6185 +386598,73.034,79.6 +386599,74.292,78.587 +386600,75.593,77.581 +386601,70.44,80.6023 +386602,71.691,79.611 +386603,72.985,78.624 +386604,74.323,77.645 +386605,69.063,80.5852 +386606,70.348,79.62 +386607,71.677,78.661 +386608,73.052,77.71 +386609,67.686,80.5674 +386610,69.006,79.63 +386611,70.37,78.699 +386612,71.78,77.776 +386613,66.31,80.5488 +386614,67.663,79.639 +386615,69.062,78.736 +386616,70.507,77.842 +386617,64.935,80.5295 +386618,66.321,79.648 +386619,67.753,78.774 +386620,69.233,77.909 +386621,63.562,80.5094 +386622,64.98,79.657 +386623,66.444,78.812 +386624,67.957,77.977 +386625,62.19,80.4887 +386626,63.639,79.665 +386627,65.135,78.85 +386628,66.681,78.046 +386629,60.818,80.4674 +386630,62.298,79.674 +386631,63.825,78.889 +386632,65.403,78.115 +386633,59.448,80.4454 +386634,60.957,79.682 +386635,62.515,78.928 +386636,64.124,78.185 +386637,58.079,80.4228 +386638,59.617,79.69 +386639,61.205,78.967 +386640,62.844,78.256 +386641,56.712,80.3996 +386642,58.278,79.698 +386643,59.894,79.006 +386644,61.563,78.327 +386645,55.345,80.3758 +386646,56.938,79.705 +386647,58.582,79.045 +386648,60.28,78.399 +386649,53.98,80.3515 +386650,55.599,79.713 +386651,57.27,79.085 +386652,58.996,78.471 +386653,52.616,80.3266 +386654,54.261,79.72 +386655,55.958,79.125 +386656,57.711,78.544 +386657,51.254,80.3013 +386658,52.923,79.727 +386659,54.645,79.165 +386660,56.424,78.617 +386661,49.892,80.2755 +386662,51.585,79.734 +386663,53.332,79.205 +386664,55.136,78.691 +386665,48.532,80.2493 +386666,50.248,79.741 +386667,52.018,79.245 +386668,53.846,78.766 +386669,47.174,80.2226 +386670,48.911,79.747 +386671,50.703,79.286 +386672,52.555,78.84 +386673,45.816,80.1955 +386674,47.574,79.754 +386675,49.389,79.326 +386676,51.263,78.916 +386677,44.46,80.1681 +386678,46.239,79.76 +386679,48.073,79.367 +386680,49.969,78.991 +386681,43.106,80.1404 +386682,44.903,79.766 +386683,46.758,79.408 +386684,48.674,79.067 +386685,41.752,80.1123 +386686,43.568,79.772 +386687,45.441,79.449 +386688,47.377,79.143 +386689,40.401,80.0839 +386690,42.233,79.779 +386691,44.124,79.49 +386692,46.079,79.22 +386693,39.05,80.0553 +386694,40.899,79.785 +386695,42.807,79.531 +386696,44.779,79.296 +386697,37.701,80.0264 +386698,39.565,79.79 +386699,41.489,79.572 +386700,43.478,79.373 +386701,36.354,79.997 +386702,38.232,79.796 +386703,40.171,79.613 +386704,42.175,79.451 +386705,35.008,79.968 +386706,36.899,79.802 +386707,38.852,79.655 +386708,40.871,79.528 +386709,33.663,79.939 +386710,35.567,79.808 +386711,37.532,79.696 +386712,39.565,79.605 +386713,32.32,79.909 +386714,34.235,79.814 +386715,36.212,79.737 +386716,38.258,79.683 +386717,30.978,79.88 +386718,32.904,79.819 +386719,34.892,79.779 +386720,36.949,79.761 +386721,29.638,79.85 +386722,31.573,79.825 +386723,33.571,79.82 +386724,35.638,79.838 +386725,28.299,79.82 +386726,30.243,79.831 +386727,32.249,79.862 +386728,34.326,79.916 +386729,26.962,79.79 +386730,28.913,79.836 +386731,30.927,79.903 +386732,33.012,79.994 +386733,25.626,79.761 +386734,27.583,79.842 +386735,29.604,79.945 +386736,31.696,80.0714 +386737,24.291,79.731 +386738,26.254,79.848 +386739,28.281,79.986 +386740,30.379,80.149 +386741,22.958,79.701 +386742,24.926,79.854 +386743,26.957,80.0277 +386744,29.061,80.2266 +386745,21.627,79.672 +386746,23.598,79.859 +386747,25.633,80.0692 +386748,27.74,80.304 +386749,20.297,79.643 +386750,22.27,79.865 +386751,24.308,80.1105 +386752,26.418,80.3812 +386753,18.969,79.613 +386754,20.943,79.871 +386755,22.982,80.1519 +386756,25.095,80.4583 +386757,17.642,79.584 +386758,19.617,79.877 +386759,21.656,80.1931 +386760,23.77,80.5351 +386761,16.317,79.555 +386762,18.291,79.883 +386763,20.33,80.2343 +386764,22.443,80.6117 +386765,14.993,79.527 +386766,16.965,79.889 +386767,19.003,80.2755 +386768,21.114,80.6881 +386769,13.67,79.498 +386770,15.64,79.896 +386771,17.675,80.3165 +386772,19.784,80.7641 +386773,12.349,79.47 +386774,14.315,79.902 +386775,16.347,80.3574 +386776,18.453,80.8398 +386777,11.03,79.443 +386778,12.991,79.908 +386779,15.018,80.3982 +386780,17.119,80.9152 +386781,9.7119,79.415 +386782,11.668,79.915 +386783,13.689,80.4389 +386784,15.784,80.9901 +386785,8.3954,79.388 +386786,10.344,79.922 +386787,12.359,80.4795 +386788,14.448,81.0647 +386789,7.0804,79.362 +386790,9.0217,79.928 +386791,11.028,80.52 +386792,13.11,81.1388 +386793,5.7668,79.335 +386794,7.6995,79.936 +386795,9.6972,80.5602 +386796,11.77,81.2125 +386797,4.4547,79.31 +386798,6.3777,79.943 +386799,8.3657,80.6004 +386800,10.429,81.2856 +386801,3.144,79.284 +386802,5.0565,79.95 +386803,7.0336,80.6404 +386804,9.0857,81.3583 +386805,1.8348,79.26 +386806,3.7356,79.958 +386807,5.701,80.6802 +386808,7.7412,81.4304 +386809,0.52695,79.235 +386810,2.4153,79.965 +386811,4.3679,80.7198 +386812,6.3951,81.5019 +386813,359.22,79.212 +386814,1.0954,79.973 +386815,3.0343,80.7592 +386816,5.0475,81.5728 +386817,357.92,79.189 +386818,359.78,79.981 +386819,1.7001,80.7984 +386820,3.6984,81.6432 +386821,356.61,79.166 +386822,358.46,79.99 +386823,0.36538,80.8375 +386824,2.3477,81.7128 +386825,355.31,79.144 +386826,357.14,79.998 +386827,359.03,80.8763 +386828,0.99548,81.7818 +386829,354.01,79.123 +386830,355.82,80.0068 +386831,357.69,80.9149 +386832,359.64,81.8501 +386833,352.71,79.103 +386834,354.5,80.0158 +386835,356.36,80.9532 +386836,358.29,81.9177 +386837,351.41,79.083 +386838,353.19,80.025 +386839,355.02,80.9913 +386840,356.93,81.9845 +386841,350.11,79.064 +386842,351.87,80.0345 +386843,353.68,81.0292 +386844,355.57,82.0506 +386845,348.82,79.046 +386846,350.55,80.0442 +386847,352.35,81.0668 +386848,354.21,82.1158 +386849,347.52,79.028 +386850,349.24,80.0542 +386851,351.01,81.1042 +386852,352.85,82.1803 +386853,346.23,79.011 +386854,347.92,80.0645 +386855,349.67,81.1413 +386856,351.49,82.2439 +386857,344.94,78.995 +386858,346.61,80.0751 +386859,348.33,81.1781 +386860,350.13,82.3067 +386861,343.65,78.98 +386862,345.29,80.086 +386863,346.99,81.2146 +386864,348.76,82.3686 +386865,342.36,78.966 +386866,343.98,80.0971 +386867,345.65,81.2508 +386868,347.39,82.4296 +386869,341.07,78.953 +386870,342.66,80.1086 +386871,344.31,81.2868 +386872,346.03,82.4897 +386873,339.79,78.94 +386874,341.35,80.1203 +386875,342.97,81.3224 +386876,344.66,82.5488 +386877,338.5,78.929 +386878,340.04,80.1324 +386879,341.63,81.3577 +386880,343.29,82.607 +386881,337.21,78.918 +386882,338.72,80.1448 +386883,340.29,81.3927 +386884,341.92,82.6643 +386885,335.93,78.909 +386886,337.41,80.1575 +386887,338.94,81.4274 +386888,340.54,82.7205 +386889,334.65,78.9 +386890,336.1,80.1706 +386891,337.6,81.4618 +386892,339.17,82.7757 +386893,333.37,78.893 +386894,334.79,80.184 +386895,336.26,81.4958 +386896,337.79,82.8299 +386897,332.09,78.886 +386898,333.47,80.1978 +386899,334.91,81.5295 +386900,336.42,82.8831 +386901,330.81,78.881 +386902,332.16,80.2119 +386903,333.57,81.5628 +386904,335.04,82.9352 +386905,329.53,78.876 +386906,330.85,80.2263 +386907,332.23,81.5958 +386908,333.66,82.9863 +386909,328.25,78.873 +386910,329.54,80.2411 +386911,330.88,81.6284 +386912,332.28,83.0362 +386913,326.98,78.871 +386914,328.23,80.2563 +386915,329.54,81.6607 +386916,330.9,83.0851 +386917,325.7,78.869 +386918,326.92,80.2719 +386919,328.19,81.6926 +386920,329.52,83.1329 +386921,324.43,78.869 +386922,325.61,80.2878 +386923,326.85,81.7241 +386924,328.14,83.1795 +386925,323.15,78.87 +386926,324.3,80.3041 +386927,325.5,81.7553 +386928,326.75,83.225 +386929,321.88,78.873 +386930,322.99,80.3208 +386931,324.15,81.7861 +386932,325.37,83.2694 +386933,320.61,78.876 +386934,321.68,80.3379 +386935,322.81,81.8165 +386936,323.98,83.3125 +386937,319.34,78.88 +386938,320.38,80.3554 +386939,321.46,81.8465 +386940,322.6,83.3546 +386941,318.07,78.886 +386942,319.07,80.3733 +386943,320.11,81.8761 +386944,321.21,83.3954 +386945,316.8,78.893 +386946,317.76,80.3916 +386947,318.77,81.9053 +386948,319.82,83.4351 +386949,315.53,78.901 +386950,316.45,80.4102 +386951,317.42,81.9342 +386952,318.43,83.4736 +386953,314.26,78.91 +386954,315.14,80.4293 +386955,316.07,81.9626 +386956,317.05,83.5108 +386957,312.99,78.921 +386958,313.83,80.4488 +386959,314.72,81.9907 +386960,315.66,83.5469 +386961,311.72,78.933 +386962,312.53,80.4687 +386963,313.37,82.0183 +386964,314.27,83.5818 +386965,310.46,78.946 +386966,311.22,80.4891 +386967,312.02,82.0455 +386968,312.87,83.6154 +386969,309.19,78.96 +386970,309.91,80.5098 +386971,310.67,82.0724 +386972,311.48,83.6478 +386973,307.93,78.975 +386974,308.61,80.5309 +386975,309.33,82.0988 +386976,310.09,83.679 +386977,306.66,78.992 +386978,307.3,80.5525 +386979,307.98,82.1248 +386980,308.7,83.7089 +386981,305.4,79.01 +386982,305.99,80.5745 +386983,306.63,82.1504 +386984,307.3,83.7376 +386985,304.13,79.029 +386986,304.69,80.5969 +386987,305.28,82.1756 +386988,305.91,83.7651 +386989,302.87,79.05 +386990,303.38,80.6198 +386991,303.93,82.2003 +386992,304.52,83.7913 +386993,301.61,79.072 +386994,302.07,80.643 +386995,302.58,82.2247 +386996,303.12,83.8163 +386997,300.34,79.095 +386998,300.77,80.6667 +386999,301.23,82.2486 +387000,301.73,83.84 +387001,299.08,79.119 +387002,299.46,80.6908 +387003,299.88,82.2721 +387004,300.33,83.8625 +387005,297.82,79.145 +387006,298.15,80.7154 +387007,298.53,82.2953 +387008,298.94,83.8838 +387009,296.55,79.171 +387010,296.85,80.7403 +387011,297.18,82.3179 +387012,297.54,83.9038 +387013,295.29,79.2 +387014,295.54,80.7657 +387015,295.82,82.3402 +387016,296.14,83.9226 +387017,294.03,79.229 +387018,294.24,80.7915 +387019,294.47,82.3621 +387020,294.75,83.9401 +387021,292.77,79.26 +387022,292.93,80.8178 +387023,293.12,82.3835 +387024,293.35,83.9564 +387025,291.51,79.292 +387026,291.62,80.8444 +387027,291.77,82.4046 +387028,291.96,83.9715 +387029,290.25,79.325 +387030,290.32,80.8715 +387031,290.42,82.4252 +387032,290.56,83.9853 +387033,288.98,79.36 +387034,289.01,80.899 +387035,289.07,82.4454 +387036,289.16,83.998 +387037,287.72,79.395 +387038,287.7,80.9269 +387039,287.72,82.4652 +387040,287.77,84.0094 +387041,286.46,79.432 +387042,286.4,80.9553 +387043,286.37,82.4846 +387044,286.37,84.0196 +387045,285.2,79.471 +387046,285.09,80.984 +387047,285.02,82.5037 +387048,284.97,84.0286 +387049,283.94,79.51 +387050,283.79,81.0132 +387051,283.67,82.5223 +387052,283.58,84.0364 +387053,282.67,79.551 +387054,282.48,81.0427 +387055,282.31,82.5405 +387056,282.18,84.0431 +387057,281.41,79.593 +387058,281.17,81.0727 +387059,280.96,82.5583 +387060,280.79,84.0485 +387061,280.15,79.636 +387062,279.87,81.1031 +387063,279.61,82.5757 +387064,279.39,84.0528 +387065,278.89,79.681 +387066,278.56,81.1338 +387067,278.26,82.5927 +387068,277.99,84.0559 +387069,277.62,79.726 +387070,277.25,81.165 +387071,276.91,82.6093 +387072,276.6,84.0579 +387073,276.36,79.773 +387074,275.95,81.1966 +387075,275.56,82.6256 +387076,275.2,84.0588 +387077,275.1,79.821 +387078,274.64,81.2285 +387079,274.21,82.6415 +387080,273.81,84.0585 +387081,273.83,79.87 +387082,273.33,81.2609 +387083,272.86,82.657 +387084,272.42,84.0571 +387085,272.57,79.921 +387086,272.02,81.2936 +387087,271.51,82.6721 +387088,271.02,84.0547 +387089,271.3,79.972 +387090,270.72,81.3267 +387091,270.16,82.6869 +387092,269.63,84.0511 +387093,270.04,80.0246 +387094,269.41,81.3602 +387095,268.81,82.7013 +387096,268.24,84.0464 +387097,268.77,80.0783 +387098,268.1,81.394 +387099,267.46,82.7153 +387100,266.84,84.0408 +387101,267.51,80.1331 +387102,266.79,81.4282 +387103,266.11,82.729 +387104,265.45,84.034 +387105,266.24,80.189 +387106,265.48,81.4627 +387107,264.76,82.7424 +387108,264.06,84.0263 +387109,264.97,80.2459 +387110,264.17,81.4976 +387111,263.41,82.7554 +387112,262.67,84.0175 +387113,263.7,80.3039 +387114,262.87,81.5329 +387115,262.06,82.7681 +387116,261.28,84.0077 +387117,262.43,80.3629 +387118,261.56,81.5685 +387119,260.71,82.7804 +387120,259.89,83.997 +387121,261.16,80.4229 +387122,260.25,81.6044 +387123,259.36,82.7924 +387124,258.5,83.9853 +387125,259.89,80.4839 +387126,258.94,81.6406 +387127,258.01,82.8041 +387128,257.12,83.9726 +387129,258.62,80.5459 +387130,257.63,81.6772 +387131,256.66,82.8155 +387132,255.73,83.959 +387133,257.35,80.6088 +387134,256.32,81.7141 +387135,255.31,82.8266 +387136,254.34,83.9446 +387137,256.08,80.6727 +387138,255.01,81.7513 +387139,253.97,82.8374 +387140,252.96,83.9292 +387141,254.8,80.7375 +387142,253.7,81.7888 +387143,252.62,82.8479 +387144,251.57,83.913 +387145,253.53,80.8032 +387146,252.38,81.8266 +387147,251.27,82.8581 +387148,250.19,83.8959 +387149,252.25,80.8697 +387150,251.07,81.8646 +387151,249.92,82.868 +387152,248.81,83.878 +387153,250.98,80.9371 +387154,249.76,81.903 +387155,248.58,82.8777 +387156,247.43,83.8593 +387157,249.7,81.0053 +387158,248.45,81.9416 +387159,247.23,82.8871 +387160,246.04,83.8399 +387161,248.42,81.0744 +387162,247.14,81.9805 +387163,245.88,82.8962 +387164,244.66,83.8196 +387165,247.14,81.1442 +387166,245.82,82.0196 +387167,244.54,82.9051 +387168,243.29,83.7987 +387169,245.86,81.2147 +387170,244.51,82.059 +387171,243.19,82.9138 +387172,241.91,83.777 +387173,244.58,81.286 +387174,243.2,82.0986 +387175,241.85,82.9222 +387176,240.53,83.7546 +387177,243.3,81.358 +387178,241.88,82.1385 +387179,240.5,82.9304 +387180,239.15,83.7316 +387181,242.02,81.4306 +387182,240.57,82.1786 +387183,239.16,82.9383 +387184,237.78,83.7079 +387185,240.73,81.504 +387186,239.25,82.2189 +387187,237.81,82.9461 +387188,236.41,83.6836 +387189,239.45,81.5779 +387190,237.94,82.2594 +387191,236.47,82.9537 +387192,235.03,83.6587 +387193,238.16,81.6524 +387194,236.62,82.3001 +387195,235.12,82.961 +387196,233.66,83.6332 +387197,236.87,81.7276 +387198,235.31,82.341 +387199,233.78,82.9682 +387200,232.29,83.6072 +387201,235.58,81.8032 +387202,233.99,82.382 +387203,232.44,82.9752 +387204,230.92,83.5806 +387205,234.29,81.8794 +387206,232.67,82.4233 +387207,231.09,82.9821 +387208,229.56,83.5536 +387209,233,81.9561 +387210,231.35,82.4647 +387211,229.75,82.9887 +387212,228.19,83.5261 +387213,231.7,82.0332 +387214,230.04,82.5062 +387215,228.41,82.9953 +387216,226.82,83.4981 +387217,230.41,82.1107 +387218,228.72,82.5479 +387219,227.07,83.0017 +387220,225.46,83.4698 +387221,229.11,82.1887 +387222,227.4,82.5898 +387223,225.73,83.0079 +387224,224.1,83.441 +387225,227.82,82.267 +387226,226.08,82.6317 +387227,224.39,83.0141 +387228,222.73,83.4119 +387229,226.52,82.3457 +387230,224.76,82.6738 +387231,223.04,83.0201 +387232,221.37,83.3824 +387233,225.22,82.4247 +387234,223.44,82.7159 +387235,221.7,83.026 +387236,220.01,83.3527 +387237,223.92,82.504 +387238,222.12,82.7582 +387239,220.37,83.0319 +387240,218.66,83.3226 +387241,222.62,82.5835 +387242,220.8,82.8006 +387243,219.03,83.0376 +387244,217.3,83.2923 +387245,221.31,82.6633 +387246,219.48,82.843 +387247,217.69,83.0433 +387248,215.95,83.2618 +387249,220.01,82.7433 +387250,218.15,82.8855 +387251,216.35,83.0489 +387252,214.59,83.2311 +387253,218.7,82.8234 +387254,216.83,82.928 +387255,215.01,83.0544 +387256,213.24,83.2002 +387257,217.39,82.9037 +387258,215.51,82.9706 +387259,213.67,83.06 +387260,211.89,83.1691 +387261,216.08,82.984 +387262,214.18,83.0133 +387263,212.34,83.0654 +387264,210.54,83.138 +387265,214.77,83.0645 +387266,212.86,83.0559 +387267,211,83.0709 +387268,209.19,83.1067 +387269,213.46,83.145 +387270,211.53,83.0986 +387271,209.66,83.0763 +387272,207.84,83.0754 +387273,212.14,83.2255 +387274,210.21,83.1413 +387275,208.33,83.0817 +387276,206.5,83.0441 +387277,210.83,83.306 +387278,208.88,83.1839 +387279,206.99,83.0871 +387280,205.15,83.0128 +387281,209.51,83.3864 +387282,207.56,83.2266 +387283,205.66,83.0925 +387284,203.81,82.9815 +387285,208.19,83.4668 +387286,206.23,83.2692 +387287,204.32,83.098 +387288,202.47,82.9502 +387289,206.87,83.547 +387290,204.9,83.3118 +387291,202.99,83.1034 +387292,201.13,82.919 +387293,205.55,83.6271 +387294,203.57,83.3544 +387295,201.66,83.109 +387296,199.79,82.888 +387297,204.23,83.7071 +387298,202.25,83.3969 +387299,200.32,83.1145 +387300,198.45,82.8571 +387301,202.9,83.7868 +387302,200.92,83.4393 +387303,198.99,83.1202 +387304,197.12,82.8263 +387305,201.57,83.8663 +387306,199.59,83.4817 +387307,197.66,83.1258 +387308,195.78,82.7958 +387309,200.25,83.9456 +387310,198.26,83.524 +387311,196.33,83.1316 +387312,194.45,82.7655 +387313,198.92,84.0246 +387314,196.93,83.5661 +387315,195,83.1375 +387316,193.12,82.7354 +387317,197.59,84.1032 +387318,195.59,83.6082 +387319,193.67,83.1434 +387320,191.79,82.7056 +387321,196.25,84.1815 +387322,194.26,83.6502 +387323,192.33,83.1495 +387324,190.46,82.6762 +387325,194.92,84.2594 +387326,192.93,83.692 +387327,191,83.1557 +387328,189.13,82.647 +387329,193.58,84.3369 +387330,191.6,83.7338 +387331,189.68,83.162 +387332,187.81,82.6183 +387333,192.25,84.414 +387334,190.26,83.7753 +387335,188.35,83.1684 +387336,186.48,82.5899 +387337,190.91,84.4906 +387338,188.93,83.8168 +387339,187.02,83.175 +387340,185.16,82.5619 +387341,189.57,84.5667 +387342,187.6,83.858 +387343,185.69,83.1817 +387344,183.84,82.5344 +387345,188.22,84.6423 +387346,186.26,83.8991 +387347,184.36,83.1886 +387348,182.52,82.5074 +387349,186.88,84.7173 +387350,184.93,83.94 +387351,183.04,83.1957 +387352,181.2,82.4809 +387353,185.54,84.7917 +387354,183.59,83.9807 +387355,181.71,83.2029 +387356,179.88,82.4549 +387357,184.19,84.8656 +387358,182.25,84.0213 +387359,180.38,83.2104 +387360,178.57,82.4294 +387361,182.84,84.9388 +387362,180.92,84.0616 +387363,179.06,83.218 +387364,177.25,82.4045 +387365,181.49,85.0113 +387366,179.58,84.1017 +387367,177.73,83.2258 +387368,175.94,82.3803 +387369,180.14,85.0832 +387370,178.24,84.1416 +387371,176.41,83.2339 +387372,174.63,82.3567 +387373,178.79,85.1544 +387374,176.9,84.1812 +387375,175.08,83.2422 +387376,173.32,82.3337 +387377,177.44,85.2248 +387378,175.56,84.2206 +387379,173.76,83.2507 +387380,172.01,82.3114 +387381,176.08,85.2944 +387382,174.22,84.2598 +387383,172.43,83.2594 +387384,170.7,82.2898 +387385,174.72,85.3633 +387386,172.88,84.2987 +387387,171.11,83.2684 +387388,169.39,82.269 +387389,173.37,85.4313 +387390,171.54,84.3373 +387391,169.79,83.2777 +387392,168.09,82.2489 +387393,172.01,85.4985 +387394,170.2,84.3757 +387395,168.46,83.2872 +387396,166.78,82.2295 +387397,170.65,85.5649 +387398,168.86,84.4137 +387399,167.14,83.297 +387400,165.48,82.211 +387401,169.28,85.6303 +387402,167.52,84.4515 +387403,165.82,83.3071 +387404,164.18,82.1933 +387405,167.92,85.6949 +387406,166.18,84.489 +387407,164.5,83.3174 +387408,162.88,82.1765 +387409,166.56,85.7585 +387410,164.83,84.5262 +387411,163.18,83.328 +387412,161.58,82.1605 +387413,165.19,85.8212 +387414,163.49,84.5631 +387415,161.86,83.339 +387416,160.28,82.1455 +387417,163.82,85.8829 +387418,162.15,84.5996 +387419,160.54,83.3502 +387420,158.98,82.1313 +387421,162.45,85.9437 +387422,160.8,84.6358 +387423,159.22,83.3618 +387424,157.69,82.1181 +387425,161.08,86.0034 +387426,159.46,84.6717 +387427,157.9,83.3737 +387428,156.39,82.1058 +387429,159.71,86.0621 +387430,158.11,84.7073 +387431,156.58,83.3859 +387432,155.1,82.0945 +387433,158.34,86.1197 +387434,156.77,84.7425 +387435,155.26,83.3985 +387436,153.81,82.0842 +387437,156.96,86.1763 +387438,155.42,84.7774 +387439,153.94,83.4113 +387440,152.52,82.0749 +387441,155.59,86.2317 +387442,154.08,84.8119 +387443,152.62,83.4246 +387444,151.23,82.0666 +387445,154.21,86.2861 +387446,152.73,84.846 +387447,151.31,83.4382 +387448,149.94,82.0594 +387449,152.84,86.3394 +387450,151.38,84.8798 +387451,149.99,83.4521 +387452,148.65,82.0532 +387453,151.46,86.3915 +387454,150.03,84.9132 +387455,148.67,83.4664 +387456,147.36,82.0481 +387457,150.08,86.4425 +387458,148.69,84.9462 +387459,147.35,83.4811 +387460,146.07,82.0442 +387461,148.7,86.4924 +387462,147.34,84.9788 +387463,146.04,83.4961 +387464,144.79,82.0413 +387465,147.32,86.541 +387466,145.99,85.0111 +387467,144.72,83.5116 +387468,143.5,82.0396 +387469,145.93,86.5885 +387470,144.64,85.0429 +387471,143.41,83.5274 +387472,142.22,82.039 +387473,144.55,86.6347 +387474,143.29,85.0743 +387475,142.09,83.5435 +387476,140.94,82.0396 +387477,143.17,86.6798 +387478,141.94,85.1054 +387479,140.77,83.5601 +387480,139.66,82.0413 +387481,141.78,86.7236 +387482,140.59,85.136 +387483,139.46,83.5771 +387484,138.37,82.0443 +387485,140.4,86.7662 +387486,139.24,85.1663 +387487,138.14,83.5945 +387488,137.09,82.0484 +387489,139.01,86.8075 +387490,137.89,85.1961 +387491,136.83,83.6123 +387492,135.81,82.0537 +387493,137.62,86.8476 +387494,136.54,85.2255 +387495,135.51,83.6305 +387496,134.53,82.0603 +387497,136.23,86.8864 +387498,135.19,85.2544 +387499,134.2,83.6491 +387500,133.26,82.0681 +387501,134.84,86.924 +387502,133.84,85.283 +387503,132.88,83.6681 +387504,131.98,82.0771 +387505,133.45,86.9603 +387506,132.49,85.3111 +387507,131.57,83.6875 +387508,130.7,82.0874 +387509,132.06,86.9953 +387510,131.13,85.3388 +387511,130.26,83.7073 +387512,129.42,82.099 +387513,130.67,87.029 +387514,129.78,85.3661 +387515,128.94,83.7276 +387516,128.15,82.1118 +387517,129.28,87.0614 +387518,128.43,85.3929 +387519,127.63,83.7483 +387520,126.87,82.1259 +387521,127.89,87.0925 +387522,127.08,85.4193 +387523,126.32,83.7694 +387524,125.6,82.1412 +387525,126.49,87.1222 +387526,125.72,85.4452 +387527,125,83.7909 +387528,124.32,82.1579 +387529,125.1,87.1507 +387530,124.37,85.4707 +387531,123.69,83.8129 +387532,123.05,82.1758 +387533,123.7,87.1779 +387534,123.02,85.4958 +387535,122.38,83.8353 +387536,121.78,82.1951 +387537,122.31,87.2038 +387538,121.66,85.5205 +387539,121.06,83.8581 +387540,120.5,82.2156 +387541,120.91,87.2283 +387542,120.31,85.5447 +387543,119.75,83.8814 +387544,119.23,82.2375 +387545,119.52,87.2516 +387546,118.96,85.5684 +387547,118.44,83.9051 +387548,117.96,82.2606 +387549,118.12,87.2735 +387550,117.6,85.5917 +387551,117.13,83.9292 +387552,116.69,82.2851 +387553,116.73,87.2941 +387554,116.25,85.6146 +387555,115.81,83.9537 +387556,115.41,82.3108 +387557,115.33,87.3134 +387558,114.89,85.637 +387559,114.5,83.9787 +387560,114.14,82.3379 +387561,113.93,87.3314 +387562,113.54,85.659 +387563,113.19,84.0041 +387564,112.87,82.3663 +387565,112.53,87.3481 +387566,112.19,85.6805 +387567,111.88,84.03 +387568,111.6,82.396 +387569,111.14,87.3635 +387570,110.83,85.7016 +387571,110.56,84.0562 +387572,110.33,82.427 +387573,109.74,87.3775 +387574,109.48,85.7223 +387575,109.25,84.083 +387576,109.06,82.4593 +387577,108.34,87.3903 +387578,108.12,85.7425 +387579,107.94,84.1101 +387580,107.79,82.4929 +387581,106.94,87.4018 +387582,106.77,85.7623 +387583,106.63,84.1376 +387584,106.52,82.5278 +387585,105.55,87.4121 +387586,105.41,85.7817 +387587,105.31,84.1656 +387588,105.25,82.564 +387589,104.15,87.421 +387590,104.06,85.8006 +387591,104,84.194 +387592,103.98,82.6015 +387593,102.75,87.4287 +387594,102.7,85.8191 +387595,102.69,84.2228 +387596,102.71,82.6403 +387597,101.35,87.4351 +387598,101.35,85.8372 +387599,101.38,84.2521 +387600,101.43,82.6803 +387601,99.954,87.4403 +387602,99.992,85.8548 +387603,100.06,84.2817 +387604,100.16,82.7216 +387605,98.556,87.4442 +387606,98.637,85.872 +387607,98.75,84.3118 +387608,98.892,82.7642 +387609,97.159,87.447 +387610,97.282,85.8888 +387611,97.437,84.3423 +387612,97.621,82.8081 +387613,95.761,87.4484 +387614,95.927,85.9052 +387615,96.124,84.3732 +387616,96.35,82.8531 +387617,94.364,87.4487 +387618,94.572,85.9212 +387619,94.811,84.4045 +387620,95.078,82.8994 +387621,92.967,87.4478 +387622,93.218,85.9367 +387623,93.498,84.4362 +387624,93.806,82.947 +387625,91.57,87.4457 +387626,91.863,85.9519 +387627,92.184,84.4682 +387628,92.534,82.9957 +387629,90.174,87.4424 +387630,90.508,85.9666 +387631,90.871,84.5007 +387632,91.261,83.0456 +387633,88.777,87.438 +387634,89.153,85.981 +387635,89.557,84.5336 +387636,89.988,83.0968 +387637,87.382,87.4324 +387638,87.799,85.995 +387639,88.244,84.5668 +387640,88.715,83.1491 +387641,85.986,87.4257 +387642,86.444,86.0086 +387643,86.93,84.6004 +387644,87.441,83.2025 +387645,84.591,87.4179 +387646,85.09,86.0218 +387647,85.616,84.6344 +387648,86.167,83.2571 +387649,83.197,87.409 +387650,83.736,86.0346 +387651,84.301,84.6688 +387652,84.892,83.3129 +387653,81.803,87.3991 +387654,82.382,86.047 +387655,82.987,84.7035 +387656,83.617,83.3697 +387657,80.409,87.388 +387658,81.028,86.0591 +387659,81.672,84.7386 +387660,82.342,83.4277 +387661,79.016,87.3759 +387662,79.674,86.0709 +387663,80.357,84.774 +387664,81.065,83.4867 +387665,77.624,87.3628 +387666,78.32,86.0822 +387667,79.042,84.8097 +387668,79.789,83.5468 +387669,76.232,87.3487 +387670,76.967,86.0932 +387671,77.727,84.8458 +387672,78.511,83.608 +387673,74.841,87.3336 +387674,75.614,86.1039 +387675,76.411,84.8823 +387676,77.233,83.6701 +387677,73.45,87.3175 +387678,74.26,86.1143 +387679,75.095,84.919 +387680,75.954,83.7333 +387681,72.06,87.3005 +387682,72.907,86.1243 +387683,73.779,84.9561 +387684,74.675,83.7975 +387685,70.671,87.2825 +387686,71.555,86.134 +387687,72.463,84.9935 +387688,73.395,83.8626 +387689,69.283,87.2636 +387690,70.202,86.1434 +387691,71.146,85.0312 +387692,72.114,83.9287 +387693,67.895,87.2439 +387694,68.85,86.1525 +387695,69.829,85.0692 +387696,70.832,83.9957 +387697,66.509,87.2232 +387698,67.498,86.1612 +387699,68.512,85.1075 +387700,69.549,84.0636 +387701,65.123,87.2018 +387702,66.146,86.1697 +387703,67.194,85.146 +387704,68.266,84.1324 +387705,63.738,87.1795 +387706,64.794,86.1779 +387707,65.876,85.1849 +387708,66.982,84.202 +387709,62.353,87.1564 +387710,63.443,86.1858 +387711,64.558,85.224 +387712,65.697,84.2725 +387713,60.97,87.1325 +387714,62.092,86.1935 +387715,63.239,85.2633 +387716,64.41,84.3438 +387717,59.588,87.1079 +387718,60.741,86.2009 +387719,61.92,85.3029 +387720,63.123,84.4159 +387721,58.206,87.0826 +387722,59.391,86.208 +387723,60.601,85.3428 +387724,61.835,84.4887 +387725,56.826,87.0566 +387726,58.041,86.2149 +387727,59.281,85.3828 +387728,60.547,84.5622 +387729,55.446,87.0299 +387730,56.691,86.2215 +387731,57.961,85.4231 +387732,59.257,84.6365 +387733,54.068,87.0025 +387734,55.341,86.2279 +387735,56.64,85.4637 +387736,57.966,84.7115 +387737,52.69,86.9745 +387738,53.992,86.2341 +387739,55.32,85.5044 +387740,56.674,84.7871 +387741,51.314,86.9459 +387742,52.643,86.2401 +387743,53.998,85.5453 +387744,55.38,84.8633 +387745,49.938,86.9168 +387746,51.294,86.2459 +387747,52.677,85.5864 +387748,54.086,84.9401 +387749,48.564,86.8871 +387750,49.946,86.2515 +387751,51.355,85.6277 +387752,52.791,85.0175 +387753,47.191,86.8568 +387754,48.598,86.2569 +387755,50.032,85.6692 +387756,51.494,85.0955 +387757,45.819,86.8261 +387758,47.25,86.2621 +387759,48.709,85.7108 +387760,50.197,85.1739 +387761,44.448,86.7949 +387762,45.903,86.2672 +387763,47.386,85.7525 +387764,48.898,85.2529 +387765,43.078,86.7633 +387766,44.556,86.2721 +387767,46.062,85.7945 +387768,47.598,85.3323 +387769,41.71,86.7313 +387770,43.209,86.2768 +387771,44.738,85.8365 +387772,46.297,85.4121 +387773,40.342,86.6988 +387774,41.863,86.2814 +387775,43.414,85.8787 +387776,44.994,85.4923 +387777,38.976,86.6661 +387778,40.517,86.2859 +387779,42.089,85.9209 +387780,43.691,85.5729 +387781,37.611,86.633 +387782,39.172,86.2903 +387783,40.763,85.9633 +387784,42.386,85.6538 +387785,36.248,86.5996 +387786,37.827,86.2946 +387787,39.437,86.0058 +387788,41.08,85.7351 +387789,34.885,86.5659 +387790,36.482,86.2987 +387791,38.111,86.0483 +387792,39.772,85.8166 +387793,33.524,86.532 +387794,35.138,86.3028 +387795,36.784,86.0909 +387796,38.463,85.8984 +387797,32.164,86.4978 +387798,33.794,86.3068 +387799,35.457,86.1336 +387800,37.153,85.9803 +387801,30.805,86.4635 +387802,32.45,86.3107 +387803,34.129,86.1763 +387804,35.842,86.0625 +387805,29.448,86.4291 +387806,31.107,86.3145 +387807,32.8,86.2191 +387808,34.529,86.1448 +387809,28.092,86.3945 +387810,29.765,86.3183 +387811,31.472,86.2619 +387812,33.215,86.2272 +387813,26.737,86.3598 +387814,28.422,86.3221 +387815,30.142,86.3047 +387816,31.899,86.3097 +387817,25.384,86.325 +387818,27.08,86.3258 +387819,28.813,86.3475 +387820,30.582,86.3923 +387821,24.032,86.2903 +387822,25.739,86.3296 +387823,27.482,86.3903 +387824,29.264,86.4749 +387825,22.681,86.2555 +387826,24.398,86.3333 +387827,26.152,86.4332 +387828,27.944,86.5575 +387829,21.331,86.2207 +387830,23.057,86.337 +387831,24.82,86.4759 +387832,26.623,86.64 +387833,19.983,86.1859 +387834,21.717,86.3407 +387835,23.489,86.5187 +387836,25.301,86.7225 +387837,18.636,86.1513 +387838,20.377,86.3444 +387839,22.156,86.5614 +387840,23.977,86.8048 +387841,17.291,86.1168 +387842,19.038,86.3481 +387843,20.824,86.6041 +387844,22.651,86.8871 +387845,15.947,86.0824 +387846,17.699,86.3519 +387847,19.49,86.6467 +387848,21.325,86.9691 +387849,14.604,86.0481 +387850,16.36,86.3558 +387851,18.157,86.6892 +387852,19.996,87.051 +387853,13.262,86.0141 +387854,15.022,86.3597 +387855,16.822,86.7316 +387856,18.667,87.1326 +387857,11.922,85.9803 +387858,13.684,86.3636 +387859,15.487,86.774 +387860,17.336,87.214 +387861,10.583,85.9467 +387862,12.347,86.3677 +387863,14.152,86.8162 +387864,16.003,87.2951 +387865,9.2461,85.9134 +387866,11.01,86.3718 +387867,12.816,86.8583 +387868,14.669,87.3758 +387869,7.91,85.8805 +387870,9.6737,86.376 +387871,11.48,86.9003 +387872,13.334,87.4562 +387873,6.5753,85.8478 +387874,8.3376,86.3804 +387875,10.143,86.9422 +387876,11.997,87.5363 +387877,5.2419,85.8156 +387878,7.002,86.3848 +387879,8.8059,86.9839 +387880,10.658,87.6158 +387881,3.9099,85.7837 +387882,5.6669,86.3894 +387883,7.4681,87.0254 +387884,9.3185,87.695 +387885,2.5792,85.7523 +387886,4.3321,86.3941 +387887,6.1297,87.0668 +387888,7.9772,87.7736 +387889,1.2498,85.7213 +387890,2.9978,86.399 +387891,4.7909,87.108 +387892,6.6345,87.8518 +387893,359.92,85.6908 +387894,1.6639,86.404 +387895,3.4515,87.149 +387896,5.2904,87.9294 +387897,358.59,85.6608 +387898,0.33038,86.4092 +387899,2.1117,87.1899 +387900,3.9448,88.0064 +387901,357.27,85.6314 +387902,359,86.4146 +387903,0.77133,87.2305 +387904,2.5978,88.0829 +387905,355.95,85.6025 +387906,357.66,86.4201 +387907,359.43,87.2709 +387908,1.2493,88.1587 +387909,354.62,85.5742 +387910,356.33,86.4258 +387911,358.09,87.3111 +387912,359.9,88.2338 +387913,353.3,85.5465 +387914,355,86.4317 +387915,356.75,87.351 +387916,358.55,88.3083 +387917,351.98,85.5195 +387918,353.67,86.4379 +387919,355.4,87.3907 +387920,357.2,88.382 +387921,350.66,85.4931 +387922,352.34,86.4442 +387923,354.06,87.4302 +387924,355.84,88.455 +387925,349.34,85.4674 +387926,351.01,86.4508 +387927,352.72,87.4694 +387928,354.49,88.5272 +387929,348.03,85.4425 +387930,349.68,86.4576 +387931,351.38,87.5083 +387932,353.13,88.5987 +387933,346.71,85.4182 +387934,348.35,86.4647 +387935,350.03,87.547 +387936,351.77,88.6693 +387937,345.4,85.3948 +387938,347.02,86.472 +387939,348.69,87.5853 +387940,350.41,88.7391 +387941,344.09,85.3721 +387942,345.69,86.4796 +387943,347.34,87.6234 +387944,349.05,88.8079 +387945,342.77,85.3503 +387946,344.36,86.4874 +387947,346,87.6611 +387948,347.69,88.8759 +387949,341.46,85.3293 +387950,343.03,86.4955 +387951,344.65,87.6986 +387952,346.32,88.943 +387953,340.15,85.3092 +387954,341.7,86.5039 +387955,343.3,87.7357 +387956,344.96,89.00909 +387957,338.85,85.2899 +387958,340.38,86.5126 +387959,341.96,87.7725 +387960,343.59,89.07422 +387961,337.54,85.2716 +387962,339.05,86.5216 +387963,340.61,87.809 +387964,342.23,89.13836 +387965,336.23,85.2542 +387966,337.72,86.5309 +387967,339.26,87.8451 +387968,340.86,89.20147 +387969,334.93,85.2377 +387970,336.39,86.5405 +387971,337.91,87.8809 +387972,339.49,89.26355 +387973,333.62,85.2222 +387974,335.07,86.5504 +387975,336.56,87.9163 +387976,338.12,89.32456 +387977,332.32,85.2077 +387978,333.74,86.5607 +387979,335.21,87.9513 +387980,336.74,89.38448 +387981,331.02,85.1943 +387982,332.42,86.5713 +387983,333.86,87.986 +387984,335.37,89.44331 +387985,329.72,85.1818 +387986,331.09,86.5822 +387987,332.51,88.0203 +387988,334,89.501 +387989,328.42,85.1704 +387990,329.77,86.5934 +387991,331.16,88.0542 +387992,332.62,89.55755 +387993,327.12,85.1601 +387994,328.44,86.6051 +387995,329.81,88.0878 +387996,331.24,89.61294 +387997,325.82,85.1508 +387998,327.12,86.617 +387999,328.46,88.1209 +388000,329.86,89.66715 +388001,324.53,85.1427 +388002,325.79,86.6294 +388003,327.11,88.1536 +388004,328.48,89.72016 +388005,323.23,85.1357 +388006,324.47,86.6421 +388007,325.76,88.1859 +388008,327.1,89.77196 +388009,321.93,85.1298 +388010,323.15,86.6551 +388011,324.41,88.2178 +388012,325.72,89.82253 +388013,320.64,85.1251 +388014,321.82,86.6686 +388015,323.05,88.2493 +388016,324.34,89.87185 +388017,319.35,85.1215 +388018,320.5,86.6824 +388019,321.7,88.2804 +388020,322.96,89.919907 +388021,318.05,85.1191 +388022,319.18,86.6967 +388023,320.35,88.311 +388024,321.57,89.966692 +388025,316.76,85.118 +388026,317.85,86.7113 +388027,318.99,88.3412 +388028,320.19,90.012189 +388029,315.47,85.118 +388030,316.53,86.7263 +388031,317.64,88.3709 +388032,318.8,90.056386 +388033,314.18,85.1193 +388034,315.21,86.7417 +388035,316.28,88.4003 +388036,317.41,90.09927 +388037,312.89,85.1217 +388038,313.89,86.7576 +388039,314.93,88.4291 +388040,316.03,90.14083 +388041,311.6,85.1255 +388042,312.57,86.7738 +388043,313.58,88.4576 +388044,314.64,90.18106 +388045,310.32,85.1305 +388046,311.25,86.7904 +388047,312.22,88.4855 +388048,313.25,90.21994 +388049,309.03,85.1367 +388050,309.92,86.8075 +388051,310.86,88.513 +388052,311.86,90.25747 +388053,307.74,85.1443 +388054,308.6,86.825 +388055,309.51,88.5401 +388056,310.47,90.29364 +388057,306.46,85.1531 +388058,307.28,86.8429 +388059,308.15,88.5667 +388060,309.08,90.32845 +388061,305.17,85.1632 +388062,305.96,86.8612 +388063,306.8,88.5928 +388064,307.68,90.36187 +388065,303.88,85.1747 +388066,304.64,86.8799 +388067,305.44,88.6184 +388068,306.29,90.39392 +388069,302.6,85.1874 +388070,303.32,86.8991 +388071,304.08,88.6436 +388072,304.9,90.42458 +388073,301.32,85.2015 +388074,302,86.9187 +388075,302.73,88.6683 +388076,303.5,90.45384 +388077,300.03,85.2168 +388078,300.68,86.9387 +388079,301.37,88.6926 +388080,302.11,90.48172 +388081,298.75,85.2335 +388082,299.36,86.9592 +388083,300.01,88.7164 +388084,300.71,90.50819 +388085,297.47,85.2516 +388086,298.04,86.9801 +388087,298.65,88.7396 +388088,299.31,90.53326 +388089,296.18,85.2709 +388090,296.72,87.0015 +388091,297.3,88.7625 +388092,297.92,90.55694 +388093,294.9,85.2917 +388094,295.4,87.0232 +388095,295.94,88.7848 +388096,296.52,90.57921 +388097,293.62,85.3137 +388098,294.08,87.0454 +388099,294.58,88.8067 +388100,295.12,90.60007 +388101,292.34,85.3371 +388102,292.76,87.0681 +388103,293.22,88.828 +388104,293.73,90.61953 +388105,291.06,85.3618 +388106,291.44,87.0912 +388107,291.86,88.8489 +388108,292.33,90.6376 +388109,289.78,85.3879 +388110,290.12,87.1147 +388111,290.5,88.8694 +388112,290.93,90.65426 +388113,288.49,85.4153 +388114,288.8,87.1386 +388115,289.15,88.8893 +388116,289.53,90.66953 +388117,287.21,85.4441 +388118,287.48,87.163 +388119,287.79,88.9088 +388120,288.13,90.6834 +388121,285.93,85.4742 +388122,286.16,87.1878 +388123,286.43,88.9278 +388124,286.73,90.69588 +388125,284.65,85.5056 +388126,284.84,87.2131 +388127,285.07,88.9463 +388128,285.33,90.70699 +388129,283.37,85.5384 +388130,283.52,87.2388 +388131,283.71,88.9644 +388132,283.93,90.71671 +388133,282.09,85.5725 +388134,282.2,87.2649 +388135,282.35,88.982 +388136,282.53,90.72506 +388137,280.81,85.6079 +388138,280.89,87.2915 +388139,280.99,88.9991 +388140,281.13,90.73205 +388141,279.53,85.6447 +388142,279.57,87.3184 +388143,279.63,89.01571 +388144,279.73,90.73768 +388145,278.25,85.6827 +388146,278.25,87.3458 +388147,278.27,89.03189 +388148,278.33,90.74196 +388149,276.97,85.7221 +388150,276.93,87.3736 +388151,276.91,89.04761 +388152,276.94,90.74491 +388153,275.69,85.7628 +388154,275.61,87.4019 +388155,275.56,89.06287 +388156,275.54,90.74652 +388157,274.41,85.8047 +388158,274.29,87.4305 +388159,274.2,89.07767 +388160,274.14,90.74682 +388161,273.13,85.848 +388162,272.97,87.4596 +388163,272.84,89.09202 +388164,272.74,90.7458 +388165,271.85,85.8925 +388166,271.65,87.489 +388167,271.48,89.10592 +388168,271.34,90.7435 +388169,270.56,85.9383 +388170,270.33,87.5189 +388171,270.12,89.11938 +388172,269.94,90.73991 +388173,269.28,85.9853 +388174,269.01,87.5492 +388175,268.76,89.1324 +388176,268.54,90.73504 +388177,268,86.0336 +388178,267.69,87.5799 +388179,267.4,89.14497 +388180,267.14,90.72893 +388181,266.72,86.0831 +388182,266.37,87.6109 +388183,266.04,89.15712 +388184,265.74,90.72157 +388185,265.44,86.1338 +388186,265.05,87.6424 +388187,264.68,89.16884 +388188,264.34,90.71298 +388189,264.15,86.1857 +388190,263.73,87.6742 +388191,263.32,89.18013 +388192,262.94,90.70319 +388193,262.87,86.2388 +388194,262.4,87.7064 +388195,261.96,89.19101 +388196,261.55,90.69219 +388197,261.59,86.2931 +388198,261.08,87.739 +388199,260.6,89.20147 +388200,260.15,90.68002 +388201,260.3,86.3485 +388202,259.76,87.7719 +388203,259.25,89.21153 +388204,258.75,90.66669 +388205,259.02,86.4051 +388206,258.44,87.8052 +388207,257.89,89.22118 +388208,257.36,90.65222 +388209,257.73,86.4628 +388210,257.12,87.8389 +388211,256.53,89.23044 +388212,255.96,90.63662 +388213,256.45,86.5216 +388214,255.8,87.8729 +388215,255.17,89.23931 +388216,254.57,90.61991 +388217,255.16,86.5815 +388218,254.47,87.9073 +388219,253.81,89.2478 +388220,253.17,90.60212 +388221,253.87,86.6425 +388222,253.15,87.942 +388223,252.45,89.2559 +388224,251.78,90.58326 +388225,252.58,86.7045 +388226,251.83,87.977 +388227,251.1,89.26364 +388228,250.38,90.56336 +388229,251.3,86.7675 +388230,250.51,88.0124 +388231,249.74,89.27102 +388232,248.99,90.54243 +388233,250.01,86.8316 +388234,249.18,88.048 +388235,248.38,89.27803 +388236,247.6,90.5205 +388237,248.72,86.8966 +388238,247.86,88.084 +388239,247.02,89.2847 +388240,246.21,90.49759 +388241,247.43,86.9627 +388242,246.54,88.1203 +388243,245.67,89.29102 +388244,244.82,90.47373 +388245,246.14,87.0296 +388246,245.21,88.1568 +388247,244.31,89.29701 +388248,243.42,90.44892 +388249,244.84,87.0975 +388250,243.89,88.1937 +388251,242.95,89.30268 +388252,242.04,90.42321 +388253,243.55,87.1663 +388254,242.56,88.2308 +388255,241.6,89.30802 +388256,240.65,90.3966 +388257,242.26,87.236 +388258,241.24,88.2682 +388259,240.24,89.31305 +388260,239.26,90.36914 +388261,240.96,87.3065 +388262,239.92,88.3059 +388263,238.88,89.31778 +388264,237.87,90.34083 +388265,239.67,87.3779 +388266,238.59,88.3438 +388267,237.53,89.32221 +388268,236.49,90.31171 +388269,238.37,87.45 +388270,237.26,88.382 +388271,236.17,89.32635 +388272,235.1,90.2818 +388273,237.08,87.5229 +388274,235.94,88.4204 +388275,234.82,89.33022 +388276,233.72,90.25113 +388277,235.78,87.5966 +388278,234.61,88.459 +388279,233.46,89.33382 +388280,232.33,90.21972 +388281,234.48,87.671 +388282,233.28,88.4978 +388283,232.11,89.33716 +388284,230.95,90.18761 +388285,233.18,87.7462 +388286,231.96,88.5369 +388287,230.75,89.34024 +388288,229.57,90.15481 +388289,231.88,87.8219 +388290,230.63,88.5761 +388291,229.4,89.34308 +388292,228.19,90.12135 +388293,230.58,87.8984 +388294,229.3,88.6156 +388295,228.05,89.34569 +388296,226.81,90.087261 +388297,229.27,87.9754 +388298,227.97,88.6552 +388299,226.69,89.34807 +388300,225.43,90.052574 +388301,227.97,88.053 +388302,226.65,88.695 +388303,225.34,89.35024 +388304,224.05,90.017313 +388305,226.66,88.1312 +388306,225.32,88.735 +388307,223.99,89.3522 +388308,222.67,89.981508 +388309,225.36,88.2099 +388310,223.99,88.7751 +388311,222.63,89.35396 +388312,221.3,89.945186 +388313,224.05,88.2891 +388314,222.66,88.8153 +388315,221.28,89.35554 +388316,219.92,89.908376 +388317,222.74,88.3688 +388318,221.33,88.8557 +388319,219.93,89.35694 +388320,218.55,89.87111 +388321,221.43,88.4489 +388322,220,88.8962 +388323,218.58,89.35818 +388324,217.18,89.83341 +388325,220.12,88.5294 +388326,218.66,88.9368 +388327,217.23,89.35925 +388328,215.81,89.79531 +388329,218.81,88.6103 +388330,217.33,88.9775 +388331,215.88,89.36018 +388332,214.44,89.75684 +388333,217.5,88.6916 +388334,216,89.01834 +388335,214.52,89.36097 +388336,213.07,89.71803 +388337,216.18,88.7731 +388338,214.67,89.05923 +388339,213.17,89.36164 +388340,211.7,89.67891 +388341,214.87,88.855 +388342,213.34,89.10019 +388343,211.82,89.36218 +388344,210.33,89.63951 +388345,213.55,88.9371 +388346,212,89.14121 +388347,210.48,89.36262 +388348,208.97,89.59985 +388349,212.23,89.01939 +388350,210.67,89.18227 +388351,209.13,89.36296 +388352,207.6,89.55998 +388353,210.91,89.10189 +388354,209.34,89.22338 +388355,207.78,89.36322 +388356,206.24,89.51991 +388357,209.59,89.18454 +388358,208,89.26451 +388359,206.43,89.3634 +388360,204.88,89.47968 +388361,208.27,89.26731 +388362,206.67,89.30566 +388363,205.08,89.36351 +388364,203.52,89.43932 +388365,206.95,89.35017 +388366,205.33,89.34681 +388367,203.73,89.36357 +388368,202.16,89.39886 +388369,205.63,89.43309 +388370,203.99,89.38796 +388371,202.39,89.36358 +388372,200.8,89.35834 +388373,204.3,89.51603 +388374,202.66,89.42909 +388375,201.04,89.36356 +388376,199.45,89.31777 +388377,202.97,89.59895 +388378,201.32,89.4702 +388379,199.69,89.36351 +388380,198.09,89.2772 +388381,201.65,89.68184 +388382,199.98,89.51127 +388383,198.35,89.36344 +388384,196.74,89.23664 +388385,200.32,89.76465 +388386,198.65,89.55228 +388387,197,89.36338 +388388,195.38,89.19615 +388389,198.98,89.84735 +388390,197.31,89.59324 +388391,195.66,89.36332 +388392,194.03,89.15573 +388393,197.65,89.929903 +388394,195.97,89.63413 +388395,194.31,89.36327 +388396,192.68,89.11543 +388397,196.32,90.012283 +388398,194.63,89.67494 +388399,192.97,89.36325 +388400,191.33,89.07527 +388401,194.98,90.094454 +388402,193.29,89.71566 +388403,191.62,89.36327 +388404,189.98,89.03528 +388405,193.65,90.17638 +388406,191.95,89.75627 +388407,190.28,89.36334 +388408,188.64,88.9955 +388409,192.31,90.25803 +388410,190.61,89.79677 +388411,188.94,89.36347 +388412,187.29,88.956 +388413,190.97,90.33938 +388414,189.27,89.83715 +388415,187.59,89.36366 +388416,185.95,88.9167 +388417,189.63,90.42038 +388418,187.93,89.87739 +388419,186.25,89.36393 +388420,184.61,88.8777 +388421,188.29,90.50101 +388422,186.58,89.91748 +388423,184.91,89.36429 +388424,183.26,88.839 +388425,186.95,90.58123 +388426,185.24,89.957417 +388427,183.57,89.36475 +388428,181.92,88.8007 +388429,185.6,90.66102 +388430,183.9,89.9971881 +388431,182.23,89.36531 +388432,180.59,88.7628 +388433,184.26,90.74033 +388434,182.55,90.036781 +388435,180.88,89.366 +388436,179.25,88.7253 +388437,182.91,90.81914 +388438,181.21,90.076187 +388439,179.54,89.36681 +388440,177.91,88.6882 +388441,181.56,90.89741 +388442,179.87,90.11539 +388443,178.2,89.36776 +388444,176.58,88.6516 +388445,180.21,90.97512 +388446,178.52,90.15439 +388447,176.86,89.36886 +388448,175.24,88.6155 +388449,178.86,91.0522 +388450,177.17,90.19317 +388451,175.53,89.37011 +388452,173.91,88.5799 +388453,177.51,91.1287 +388454,175.83,90.23172 +388455,174.19,89.37153 +388456,172.58,88.5448 +388457,176.15,91.2045 +388458,174.48,90.27004 +388459,172.85,89.37313 +388460,171.25,88.5104 +388461,174.8,91.2796 +388462,173.14,90.3081 +388463,171.51,89.37491 +388464,169.92,88.4765 +388465,173.44,91.3541 +388466,171.79,90.34591 +388467,170.17,89.37689 +388468,168.59,88.4433 +388469,172.09,91.4277 +388470,170.44,90.38344 +388471,168.83,89.37907 +388472,167.27,88.4108 +388473,170.73,91.5006 +388474,169.09,90.4207 +388475,167.5,89.38146 +388476,165.94,88.3789 +388477,169.37,91.5726 +388478,167.74,90.45768 +388479,166.16,89.38407 +388480,164.62,88.3478 +388481,168,91.6439 +388482,166.39,90.49435 +388483,164.82,89.38692 +388484,163.29,88.3174 +388485,166.64,91.7142 +388486,165.04,90.53072 +388487,163.49,89.39 +388488,161.97,88.2878 +388489,165.28,91.7837 +388490,163.69,90.56678 +388491,162.15,89.39333 +388492,160.65,88.2589 +388493,163.91,91.8522 +388494,162.34,90.60251 +388495,160.82,89.39692 +388496,159.33,88.2309 +388497,162.55,91.9198 +388498,160.99,90.63792 +388499,159.48,89.40077 +388500,158.01,88.2037 +388501,161.18,91.9864 +388502,159.64,90.67298 +388503,158.15,89.40489 +388504,156.7,88.1774 +388505,159.81,92.0521 +388506,158.29,90.70769 +388507,156.81,89.40929 +388508,155.38,88.152 +388509,158.44,92.1166 +388510,156.94,90.74204 +388511,155.48,89.41398 +388512,154.06,88.1275 +388513,157.07,92.1802 +388514,155.58,90.77603 +388515,154.15,89.41897 +388516,152.75,88.1039 +388517,155.69,92.2426 +388518,154.23,90.80964 +388519,152.81,89.42426 +388520,151.44,88.0813 +388521,154.32,92.304 +388522,152.88,90.84288 +388523,151.48,89.42986 +388524,150.12,88.0596 +388525,152.95,92.3642 +388526,151.52,90.87572 +388527,150.15,89.43577 +388528,148.81,88.039 +388529,151.57,92.4233 +388530,150.17,90.90817 +388531,148.82,89.44201 +388532,147.5,88.0193 +388533,150.19,92.4812 +388534,148.81,90.94022 +388535,147.48,89.44858 +388536,146.19,88.0007 +388537,148.81,92.538 +388538,147.46,90.97185 +388539,146.15,89.45549 +388540,144.89,87.9832 +388541,147.43,92.5935 +388542,146.1,91.0031 +388543,144.82,89.46274 +388544,143.58,87.9667 +388545,146.05,92.6478 +388546,144.75,91.0339 +388547,143.49,89.47035 +388548,142.27,87.9514 +388549,144.67,92.7008 +388550,143.39,91.0642 +388551,142.16,89.4783 +388552,140.97,87.9371 +388553,143.29,92.7526 +388554,142.04,91.0942 +388555,140.83,89.48663 +388556,139.66,87.924 +388557,141.91,92.8031 +388558,140.68,91.1236 +388559,139.5,89.49531 +388560,138.36,87.9121 +388561,140.52,92.8523 +388562,139.32,91.1527 +388563,138.17,89.50438 +388564,137.06,87.9013 +388565,139.14,92.9001 +388566,137.96,91.1813 +388567,136.84,89.51382 +388568,135.76,87.8917 +388569,137.75,92.9466 +388570,136.61,91.2094 +388571,135.51,89.52364 +388572,134.45,87.8833 +388573,136.36,92.9918 +388574,135.25,91.2371 +388575,134.18,89.53385 +388576,133.15,87.8761 +388577,134.98,93.0356 +388578,133.89,91.2642 +388579,132.85,89.54446 +388580,131.85,87.8701 +388581,133.59,93.078 +388582,132.53,91.291 +388583,131.52,89.55546 +388584,130.55,87.8654 +388585,132.2,93.119 +388586,131.17,91.3172 +388587,130.19,89.56686 +388588,129.26,87.8619 +388589,130.81,93.1586 +388590,129.81,91.343 +388591,128.87,89.57867 +388592,127.96,87.8597 +388593,129.41,93.1968 +388594,128.45,91.3682 +388595,127.54,89.59089 +388596,126.66,87.8587 +388597,128.02,93.2336 +388598,127.09,91.393 +388599,126.21,89.60352 +388600,125.37,87.8591 +388601,126.63,93.2689 +388602,125.73,91.4173 +388603,124.88,89.61657 +388604,124.07,87.8607 +388605,125.24,93.3028 +388606,124.37,91.4411 +388607,123.55,89.63004 +388608,122.77,87.8637 +388609,123.84,93.3352 +388610,123.01,91.4644 +388611,122.23,89.64392 +388612,121.48,87.8679 +388613,122.45,93.3662 +388614,121.65,91.4872 +388615,120.9,89.65824 +388616,120.18,87.8735 +388617,121.05,93.3957 +388618,120.29,91.5095 +388619,119.57,89.67298 +388620,118.89,87.8805 +388621,119.66,93.4237 +388622,118.93,91.5312 +388623,118.24,89.68815 +388624,117.6,87.8887 +388625,118.26,93.4502 +388626,117.57,91.5525 +388627,116.92,89.70375 +388628,116.31,87.8984 +388629,116.86,93.4752 +388630,116.2,91.5733 +388631,115.59,89.71978 +388632,115.01,87.9093 +388633,115.46,93.4988 +388634,114.84,91.5935 +388635,114.26,89.73625 +388636,113.72,87.9217 +388637,114.07,93.5208 +388638,113.48,91.6132 +388639,112.94,89.75316 +388640,112.43,87.9354 +388641,112.67,93.5414 +388642,112.12,91.6324 +388643,111.61,89.7705 +388644,111.14,87.9504 +388645,111.27,93.5604 +388646,110.76,91.6511 +388647,110.28,89.78828 +388648,109.85,87.9668 +388649,109.87,93.578 +388650,109.39,91.6693 +388651,108.96,89.80649 +388652,108.56,87.9846 +388653,108.47,93.594 +388654,108.03,91.687 +388655,107.63,89.82515 +388656,107.26,88.0038 +388657,107.07,93.6086 +388658,106.67,91.7041 +388659,106.3,89.84424 +388660,105.97,88.0243 +388661,105.67,93.6217 +388662,105.31,91.7208 +388663,104.98,89.86377 +388664,104.68,88.0463 +388665,104.27,93.6332 +388666,103.94,91.7369 +388667,103.65,89.88374 +388668,103.39,88.0695 +388669,102.87,93.6433 +388670,102.58,91.7525 +388671,102.33,89.904143 +388672,102.1,88.0942 +388673,101.47,93.6519 +388674,101.22,91.7676 +388675,101,89.924984 +388676,100.81,88.1202 +388677,100.07,93.659 +388678,99.852,91.7821 +388679,99.673,89.946259 +388680,99.524,88.1476 +388681,98.666,93.6647 +388682,98.489,91.7962 +388683,98.347,89.967969 +388684,98.234,88.1764 +388685,97.264,93.6689 +388686,97.126,91.8097 +388687,97.02,89.9901093 +388688,96.944,88.2065 +388689,95.863,93.6716 +388690,95.762,91.8228 +388691,95.694,90.01268 +388692,95.654,88.238 +388693,94.461,93.6728 +388694,94.399,91.8353 +388695,94.367,90.035678 +388696,94.365,88.2708 +388697,93.06,93.6727 +388698,93.035,91.8473 +388699,93.041,90.059102 +388700,93.075,88.305 +388701,91.659,93.6711 +388702,91.672,91.8589 +388703,91.714,90.082948 +388704,91.785,88.3405 +388705,90.257,93.668 +388706,90.308,91.8699 +388707,90.388,90.10721 +388708,90.494,88.3774 +388709,88.856,93.6636 +388710,88.944,91.8804 +388711,89.061,90.1319 +388712,89.204,88.4155 +388713,87.455,93.6577 +388714,87.581,91.8905 +388715,87.734,90.15699 +388716,87.913,88.455 +388717,86.054,93.6505 +388718,86.217,91.9001 +388719,86.408,90.1825 +388720,86.623,88.4958 +388721,84.653,93.6419 +388722,84.854,91.9091 +388723,85.081,90.20841 +388724,85.332,88.5379 +388725,83.253,93.6319 +388726,83.49,91.9177 +388727,83.754,90.23473 +388728,84.04,88.5812 +388729,81.852,93.6206 +388730,82.127,91.9258 +388731,82.426,90.26144 +388732,82.749,88.6258 +388733,80.452,93.608 +388734,80.764,91.9335 +388735,81.099,90.28855 +388736,81.457,88.6717 +388737,79.052,93.594 +388738,79.4,91.9407 +388739,79.772,90.31604 +388740,80.165,88.7189 +388741,77.653,93.5787 +388742,78.037,91.9474 +388743,78.444,90.34392 +388744,78.872,88.7672 +388745,76.254,93.5622 +388746,76.674,91.9537 +388747,77.116,90.37218 +388748,77.579,88.8168 +388749,74.855,93.5444 +388750,75.311,91.9595 +388751,75.788,90.40081 +388752,76.285,88.8676 +388753,73.457,93.5254 +388754,73.948,91.9649 +388755,74.46,90.42981 +388756,74.991,88.9196 +388757,72.059,93.5051 +388758,72.585,91.9698 +388759,73.132,90.45917 +388760,73.697,88.9727 +388761,70.662,93.4836 +388762,71.223,91.9743 +388763,71.803,90.48889 +388764,72.402,89.027 +388765,69.265,93.4609 +388766,69.86,91.9784 +388767,70.474,90.51896 +388768,71.106,89.08244 +388769,67.869,93.4371 +388770,68.498,91.982 +388771,69.145,90.54937 +388772,69.81,89.13899 +388773,66.473,93.4121 +388774,67.136,91.9853 +388775,67.816,90.58012 +388776,68.514,89.19665 +388777,65.078,93.386 +388778,65.774,91.9881 +388779,66.487,90.6112 +388780,67.216,89.25538 +388781,63.683,93.3588 +388782,64.412,91.9906 +388783,65.157,90.6426 +388784,65.918,89.31518 +388785,62.289,93.3305 +388786,63.05,91.9926 +388787,63.827,90.67432 +388788,64.62,89.37602 +388789,60.896,93.3012 +388790,61.689,91.9943 +388791,62.497,90.70634 +388792,63.32,89.43788 +388793,59.503,93.2709 +388794,60.327,91.9955 +388795,61.167,90.73867 +388796,62.02,89.50073 +388797,58.111,93.2395 +388798,58.966,91.9965 +388799,59.836,90.77129 +388800,60.72,89.56457 +388801,56.72,93.2072 +388802,57.605,91.997 +388803,58.505,90.8042 +388804,59.418,89.62935 +388805,55.33,93.1739 +388806,56.245,91.9972 +388807,57.174,90.83738 +388808,58.116,89.69507 +388809,53.94,93.1396 +388810,54.884,91.9971 +388811,55.842,90.87084 +388812,56.813,89.76169 +388813,52.551,93.1045 +388814,53.524,91.9966 +388815,54.51,90.90455 +388816,55.509,89.8292 +388817,51.163,93.0685 +388818,52.164,91.9958 +388819,53.178,90.93852 +388820,54.204,89.89756 +388821,49.776,93.0316 +388822,50.804,91.9947 +388823,51.846,90.97273 +388824,52.899,89.966755 +388825,48.39,92.994 +388826,49.445,91.9932 +388827,50.513,91.0072 +388828,51.592,90.036756 +388829,47.004,92.9555 +388830,48.086,91.9915 +388831,49.18,91.0418 +388832,50.285,90.10754 +388833,45.62,92.9162 +388834,46.727,91.9894 +388835,47.846,91.0767 +388836,48.976,90.17907 +388837,44.236,92.8763 +388838,45.368,91.9871 +388839,46.512,91.1118 +388840,47.667,90.25133 +388841,42.854,92.8356 +388842,44.01,91.9845 +388843,45.178,91.1471 +388844,46.357,90.32429 +388845,41.472,92.7942 +388846,42.652,91.9817 +388847,43.843,91.1826 +388848,45.046,90.39792 +388849,40.092,92.7522 +388850,41.294,91.9786 +388851,42.508,91.2182 +388852,43.733,90.47219 +388853,38.712,92.7095 +388854,39.937,91.9752 +388855,41.173,91.2541 +388856,42.42,90.54708 +388857,37.333,92.6663 +388858,38.58,91.9717 +388859,39.838,91.29 +388860,41.106,90.62255 +388861,35.956,92.6225 +388862,37.223,91.9678 +388863,38.501,91.3262 +388864,39.791,90.69857 +388865,34.579,92.5782 +388866,35.866,91.9638 +388867,37.165,91.3624 +388868,38.474,90.77512 +388869,33.204,92.5334 +388870,34.51,91.9596 +388871,35.828,91.3988 +388872,37.157,90.85216 +388873,31.829,92.4881 +388874,33.154,91.9552 +388875,34.491,91.4354 +388876,35.838,90.92966 +388877,30.456,92.4423 +388878,31.799,91.9506 +388879,33.153,91.472 +388880,34.519,91.0076 +388881,29.084,92.3962 +388882,30.444,91.9458 +388883,31.815,91.5087 +388884,33.198,91.0859 +388885,27.713,92.3497 +388886,29.089,91.9408 +388887,30.477,91.5455 +388888,31.876,91.1646 +388889,26.343,92.3028 +388890,27.734,91.9357 +388891,29.138,91.5824 +388892,30.553,91.2437 +388893,24.974,92.2556 +388894,26.38,91.9305 +388895,27.799,91.6193 +388896,29.229,91.323 +388897,23.606,92.2082 +388898,25.026,91.9251 +388899,26.459,91.6563 +388900,27.903,91.4027 +388901,22.24,92.1604 +388902,23.673,91.9196 +388903,25.119,91.6933 +388904,26.577,91.4825 +388905,20.874,92.1125 +388906,22.32,91.914 +388907,23.779,91.7304 +388908,25.249,91.5626 +388909,19.51,92.0644 +388910,20.967,91.9083 +388911,22.438,91.7675 +388912,23.92,91.6428 +388913,18.147,92.0161 +388914,19.615,91.9025 +388915,21.096,91.8046 +388916,22.59,91.7232 +388917,16.785,91.9677 +388918,18.263,91.8967 +388919,19.755,91.8417 +388920,21.259,91.8037 +388921,15.425,91.9192 +388922,16.911,91.8907 +388923,18.412,91.8788 +388924,19.926,91.8843 +388925,14.065,91.8706 +388926,15.56,91.8847 +388927,17.07,91.9158 +388928,18.592,91.9649 +388929,12.707,91.822 +388930,14.209,91.8787 +388931,15.726,91.9528 +388932,17.257,92.0455 +388933,11.35,91.7734 +388934,12.859,91.8726 +388935,14.383,91.9898 +388936,15.921,92.1261 +388937,9.9942,91.7249 +388938,11.509,91.8665 +388939,13.039,92.0267 +388940,14.583,92.2066 +388941,8.6397,91.6764 +388942,10.159,91.8604 +388943,11.694,92.0636 +388944,13.245,92.2871 +388945,7.2863,91.628 +388946,8.8099,91.8543 +388947,10.35,92.1003 +388948,11.905,92.3674 +388949,5.9342,91.5798 +388950,7.461,91.8481 +388951,9.0042,92.137 +388952,10.563,92.4475 +388953,4.5833,91.5317 +388954,6.1124,91.8421 +388955,7.6584,92.1736 +388956,9.2206,92.5274 +388957,3.2336,91.4838 +388958,4.7643,91.836 +388959,6.3121,92.21 +388960,7.8767,92.6071 +388961,1.8851,91.4361 +388962,3.4165,91.83 +388963,4.9654,92.2464 +388964,6.5316,92.6866 +388965,0.53791,91.3887 +388966,2.0691,91.824 +388967,3.6183,92.2826 +388968,5.1852,92.7657 +388969,359.19,91.3415 +388970,0.72214,91.8181 +388971,2.2707,92.3186 +388972,3.8375,92.8445 +388973,357.85,91.2947 +388974,359.38,91.8122 +388975,0.92262,92.3545 +388976,2.4886,92.923 +388977,356.5,91.2482 +388978,358.03,91.8065 +388979,359.57,92.3902 +388980,1.1384,93.001 +388981,355.16,91.2021 +388982,356.68,91.8008 +388983,358.23,92.4257 +388984,359.79,93.0786 +388985,353.82,91.1564 +388986,355.34,91.7952 +388987,356.88,92.4611 +388988,358.43,93.1558 +388989,352.48,91.1112 +388990,353.99,91.7898 +388991,355.53,92.4962 +388992,357.08,93.2324 +388993,351.14,91.0664 +388994,352.65,91.7844 +388995,354.18,92.5312 +388996,355.72,93.3085 +388997,349.8,91.0221 +388998,351.3,91.7792 +388999,352.83,92.5659 +389000,354.37,93.3841 +389001,348.47,90.9783 +389002,349.96,91.7742 +389003,351.47,92.6004 +389004,353.01,93.459 +389005,347.13,90.93508 +389006,348.62,91.7693 +389007,350.12,92.6346 +389008,351.65,93.5333 +389009,345.8,90.89245 +389010,347.27,91.7646 +389011,348.77,92.6686 +389012,350.29,93.6069 +389013,344.46,90.85043 +389014,345.93,91.76 +389015,347.42,92.7023 +389016,348.93,93.6799 +389017,343.13,90.80905 +389018,344.59,91.7556 +389019,346.06,92.7357 +389020,347.57,93.7521 +389021,341.8,90.76833 +389022,343.25,91.7514 +389023,344.71,92.7688 +389024,346.2,93.8236 +389025,340.47,90.72831 +389026,341.9,91.7474 +389027,343.36,92.8017 +389028,344.84,93.8942 +389029,339.14,90.689 +389030,340.56,91.7436 +389031,342,92.8342 +389032,343.47,93.9641 +389033,337.82,90.65045 +389034,339.22,91.7401 +389035,340.65,92.8665 +389036,342.1,94.033 +389037,336.49,90.61267 +389038,337.88,91.7367 +389039,339.29,92.8984 +389040,340.74,94.1012 +389041,335.17,90.57568 +389042,336.54,91.7336 +389043,337.94,92.9299 +389044,339.37,94.1683 +389045,333.84,90.53953 +389046,335.2,91.7308 +389047,336.58,92.9612 +389048,337.99,94.2346 +389049,332.52,90.50422 +389050,333.86,91.7282 +389051,335.23,92.992 +389052,336.62,94.2999 +389053,331.2,90.46978 +389054,332.52,91.7258 +389055,333.87,93.0226 +389056,335.25,94.3642 +389057,329.88,90.43625 +389058,331.18,91.7238 +389059,332.51,93.0527 +389060,333.87,94.4274 +389061,328.56,90.40363 +389062,329.84,91.722 +389063,331.16,93.0825 +389064,332.5,94.4896 +389065,327.24,90.37196 +389066,328.5,91.7205 +389067,329.8,93.1118 +389068,331.12,94.5508 +389069,325.92,90.34126 +389070,327.17,91.7193 +389071,328.44,93.1408 +389072,329.74,94.6108 +389073,324.6,90.31154 +389074,325.83,91.7184 +389075,327.08,93.1694 +389076,328.37,94.6697 +389077,323.29,90.28284 +389078,324.49,91.7178 +389079,325.72,93.1976 +389080,326.99,94.7274 +389081,321.97,90.25517 +389082,323.15,91.7175 +389083,324.36,93.2253 +389084,325.61,94.784 +389085,320.66,90.22856 +389086,321.82,91.7175 +389087,323,93.2526 +389088,324.22,94.8393 +389089,319.34,90.20301 +389090,320.48,91.7179 +389091,321.64,93.2795 +389092,322.84,94.8935 +389093,318.03,90.17856 +389094,319.14,91.7186 +389095,320.28,93.3059 +389096,321.46,94.9463 +389097,316.72,90.15523 +389098,317.81,91.7197 +389099,318.92,93.3319 +389100,320.07,94.9979 +389101,315.41,90.13302 +389102,316.47,91.7211 +389103,317.56,93.3575 +389104,318.69,95.0483 +389105,314.1,90.11196 +389106,315.14,91.7229 +389107,316.2,93.3825 +389108,317.3,95.0972 +389109,312.79,90.09207 +389110,313.8,91.725 +389111,314.84,93.4071 +389112,315.91,95.1449 +389113,311.48,90.073362 +389114,312.47,91.7275 +389115,313.48,93.4313 +389116,314.52,95.1912 +389117,310.17,90.055852 +389118,311.13,91.7304 +389119,312.12,93.4549 +389120,313.13,95.2361 +389121,308.87,90.039558 +389122,309.8,91.7336 +389123,310.75,93.4781 +389124,311.74,95.2797 +389125,307.56,90.024493 +389126,308.46,91.7372 +389127,309.39,93.5007 +389128,310.35,95.3218 +389129,306.25,90.010673 +389130,307.13,91.7413 +389131,308.03,93.5229 +389132,308.96,95.3625 +389133,304.95,89.998111 +389134,305.79,91.7457 +389135,306.66,93.5446 +389136,307.57,95.4018 +389137,303.64,89.986821 +389138,304.46,91.7505 +389139,305.3,93.5657 +389140,306.18,95.4396 +389141,302.34,89.976814 +389142,303.12,91.7557 +389143,303.94,93.5864 +389144,304.78,95.476 +389145,301.04,89.968104 +389146,301.79,91.7613 +389147,302.57,93.6065 +389148,303.39,95.5109 +389149,299.73,89.960701 +389150,300.46,91.7674 +389151,301.21,93.6261 +389152,301.99,95.5443 +389153,298.43,89.954616 +389154,299.12,91.7738 +389155,299.85,93.6452 +389156,300.6,95.5761 +389157,297.13,89.949858 +389158,297.79,91.7807 +389159,298.48,93.6638 +389160,299.2,95.6065 +389161,295.83,89.946439 +389162,296.46,91.788 +389163,297.12,93.6818 +389164,297.81,95.6353 +389165,294.53,89.944365 +389166,295.13,91.7957 +389167,295.75,93.6993 +389168,296.41,95.6626 +389169,293.23,89.943645 +389170,293.79,91.8038 +389171,294.39,93.7162 +389172,295.01,95.6884 +389173,291.93,89.944286 +389174,292.46,91.8123 +389175,293.02,93.7327 +389176,293.61,95.7126 +389177,290.63,89.946296 +389178,291.13,91.8213 +389179,291.65,93.7485 +389180,292.21,95.7352 +389181,289.33,89.949679 +389182,289.8,91.8308 +389183,290.29,93.7639 +389184,290.81,95.7563 +389185,288.03,89.954442 +389186,288.46,91.8406 +389187,288.92,93.7786 +389188,289.41,95.7759 +389189,286.73,89.960588 +389190,287.13,91.8509 +389191,287.56,93.7929 +389192,288.01,95.7938 +389193,285.43,89.968122 +389194,285.8,91.8616 +389195,286.19,93.8066 +389196,286.61,95.8102 +389197,284.13,89.977048 +389198,284.47,91.8728 +389199,284.83,93.8197 +389200,285.21,95.825 +389201,282.84,89.987367 +389202,283.14,91.8844 +389203,283.46,93.8323 +389204,283.81,95.8382 +389205,281.54,89.99908081 +389206,281.8,91.8964 +389207,282.09,93.8444 +389208,282.41,95.8498 +389209,280.24,90.012192 +389210,280.47,91.9089 +389211,280.73,93.8558 +389212,281.01,95.8599 +389213,278.94,90.026699 +389214,279.14,91.9218 +389215,279.36,93.8668 +389216,279.61,95.8683 +389217,277.64,90.042604 +389218,277.81,91.9351 +389219,277.99,93.8772 +389220,278.2,95.8752 +389221,276.35,90.059904 +389222,276.48,91.9489 +389223,276.63,93.887 +389224,276.8,95.8806 +389225,275.05,90.078598 +389226,275.14,91.9631 +389227,275.26,93.8963 +389228,275.4,95.8843 +389229,273.75,90.098684 +389230,273.81,91.9778 +389231,273.89,93.905 +389232,274,95.8865 +389233,272.46,90.12016 +389234,272.48,91.9929 +389235,272.53,93.9132 +389236,272.59,95.8871 +389237,271.16,90.14302 +389238,271.15,92.0084 +389239,271.16,93.9209 +389240,271.19,95.8862 +389241,269.86,90.16726 +389242,269.82,92.0244 +389243,269.79,93.928 +389244,269.79,95.8837 +389245,268.56,90.19287 +389246,268.48,92.0408 +389247,268.42,93.9346 +389248,268.39,95.8797 +389249,267.26,90.21986 +389250,267.15,92.0576 +389251,267.06,93.9406 +389252,266.99,95.8741 +389253,265.97,90.2482 +389254,265.82,92.0748 +389255,265.69,93.9461 +389256,265.58,95.8671 +389257,264.67,90.2779 +389258,264.49,92.0925 +389259,264.32,93.951 +389260,264.18,95.8585 +389261,263.37,90.30895 +389262,263.15,92.1105 +389263,262.96,93.9555 +389264,262.78,95.8484 +389265,262.07,90.34134 +389266,261.82,92.129 +389267,261.59,93.9594 +389268,261.38,95.8368 +389269,260.77,90.37506 +389270,260.49,92.1479 +389271,260.22,93.9627 +389272,259.98,95.8238 +389273,259.47,90.4101 +389274,259.16,92.1672 +389275,258.86,93.9656 +389276,258.57,95.8092 +389277,258.18,90.44645 +389278,257.82,92.187 +389279,257.49,93.9679 +389280,257.17,95.7933 +389281,256.88,90.48409 +389282,256.49,92.2071 +389283,256.12,93.9698 +389284,255.77,95.7759 +389285,255.58,90.52302 +389286,255.16,92.2276 +389287,254.76,93.9711 +389288,254.37,95.757 +389289,254.27,90.56322 +389290,253.83,92.2485 +389291,253.39,93.9719 +389292,252.97,95.7368 +389293,252.97,90.60468 +389294,252.49,92.2698 +389295,252.02,93.9723 +389296,251.57,95.7152 +389297,251.67,90.64739 +389298,251.16,92.2914 +389299,250.66,93.9721 +389300,250.17,95.6922 +389301,250.37,90.69133 +389302,249.82,92.3135 +389303,249.29,93.9714 +389304,248.77,95.6679 +389305,249.07,90.73648 +389306,248.49,92.3359 +389307,247.93,93.9703 +389308,247.38,95.6422 +389309,247.77,90.78283 +389310,247.16,92.3587 +389311,246.56,93.9687 +389312,245.98,95.6152 +389313,246.46,90.83037 +389314,245.82,92.3818 +389315,245.19,93.9667 +389316,244.58,95.5869 +389317,245.16,90.87907 +389318,244.49,92.4053 +389319,243.83,93.9641 +389320,243.18,95.5574 +389321,243.85,90.92892 +389322,243.15,92.4292 +389323,242.46,93.9611 +389324,241.79,95.5266 +389325,242.55,90.97989 +389326,241.82,92.4533 +389327,241.1,93.9577 +389328,240.39,95.4946 +389329,241.24,91.032 +389330,240.48,92.4778 +389331,239.73,93.9538 +389332,239,95.4614 +389333,239.94,91.0852 +389334,239.15,92.5027 +389335,238.37,93.9495 +389336,237.6,95.4269 +389337,238.63,91.1394 +389338,237.81,92.5278 +389339,237,93.9448 +389340,236.21,95.3914 +389341,237.32,91.1947 +389342,236.48,92.5533 +389343,235.64,93.9396 +389344,234.81,95.3547 +389345,236.01,91.251 +389346,235.14,92.5791 +389347,234.28,93.9341 +389348,233.42,95.3168 +389349,234.7,91.3084 +389350,233.8,92.6051 +389351,232.91,93.9281 +389352,232.03,95.278 +389353,233.39,91.3667 +389354,232.47,92.6315 +389355,231.55,93.9218 +389356,230.64,95.238 +389357,232.08,91.426 +389358,231.13,92.6581 +389359,230.19,93.915 +389360,229.25,95.197 +389361,230.77,91.4862 +389362,229.79,92.685 +389363,228.82,93.9079 +389364,227.86,95.155 +389365,229.46,91.5473 +389366,228.46,92.7122 +389367,227.46,93.9004 +389368,226.47,95.112 +389369,228.15,91.6093 +389370,227.12,92.7396 +389371,226.1,93.8925 +389372,225.08,95.0681 +389373,226.83,91.6722 +389374,225.78,92.7673 +389375,224.73,93.8843 +389376,223.7,95.0233 +389377,225.52,91.7359 +389378,224.44,92.7952 +389379,223.37,93.8758 +389380,222.31,94.9775 +389381,224.2,91.8005 +389382,223.1,92.8233 +389383,222.01,93.8669 +389384,220.93,94.9309 +389385,222.88,91.8658 +389386,221.76,92.8517 +389387,220.65,93.8577 +389388,219.54,94.8835 +389389,221.57,91.9319 +389390,220.42,92.8803 +389391,219.29,93.8482 +389392,218.16,94.8353 +389393,220.25,91.9987 +389394,219.08,92.909 +389395,217.93,93.8384 +389396,216.78,94.7863 +389397,218.93,92.0662 +389398,217.74,92.938 +389399,216.57,93.8282 +389400,215.4,94.7365 +389401,217.61,92.1343 +389402,216.4,92.9671 +389403,215.21,93.8178 +389404,214.01,94.686 +389405,216.28,92.2032 +389406,215.06,92.9964 +389407,213.85,93.8072 +389408,212.64,94.6349 +389409,214.96,92.2726 +389410,213.72,93.0259 +389411,212.49,93.7962 +389412,211.26,94.5831 +389413,213.64,92.3427 +389414,212.38,93.0555 +389415,211.13,93.785 +389416,209.88,94.5306 +389417,212.31,92.4132 +389418,211.04,93.0853 +389419,209.77,93.7736 +389420,208.5,94.4776 +389421,210.99,92.4844 +389422,209.7,93.1152 +389423,208.41,93.7619 +389424,207.13,94.424 +389425,209.66,92.556 +389426,208.35,93.1452 +389427,207.05,93.75 +389428,205.75,94.3699 +389429,208.33,92.6281 +389430,207.01,93.1753 +389431,205.69,93.7379 +389432,204.38,94.3153 +389433,207,92.7006 +389434,205.67,93.2055 +389435,204.34,93.7256 +389436,203.01,94.2602 +389437,205.67,92.7735 +389438,204.32,93.2358 +389439,202.98,93.7131 +389440,201.64,94.2048 +389441,204.34,92.8468 +389442,202.98,93.2662 +389443,201.62,93.7004 +389444,200.27,94.1489 +389445,203.01,92.9204 +389446,201.63,93.2966 +389447,200.26,93.6876 +389448,198.9,94.0926 +389449,201.67,92.9943 +389450,200.29,93.3271 +389451,198.91,93.6745 +389452,197.53,94.036 +389453,200.34,93.0685 +389454,198.94,93.3577 +389455,197.55,93.6614 +389456,196.17,93.9791 +389457,199,93.143 +389458,197.6,93.3882 +389459,196.2,93.6481 +389460,194.8,93.922 +389461,197.67,93.2176 +389462,196.25,93.4188 +389463,194.84,93.6347 +389464,193.44,93.8646 +389465,196.33,93.2925 +389466,194.9,93.4494 +389467,193.49,93.6211 +389468,192.08,93.8071 +389469,194.99,93.3674 +389470,193.56,93.48 +389471,192.13,93.6075 +389472,190.71,93.7493 +389473,193.65,93.4425 +389474,192.21,93.5106 +389475,190.78,93.5938 +389476,189.35,93.6914 +389477,192.3,93.5177 +389478,190.86,93.5412 +389479,189.43,93.5799 +389480,187.99,93.6335 +389481,190.96,93.5929 +389482,189.51,93.5717 +389483,188.07,93.5661 +389484,186.64,93.5754 +389485,189.62,93.6681 +389486,188.17,93.6022 +389487,186.72,93.5521 +389488,185.28,93.5174 +389489,188.27,93.7432 +389490,186.82,93.6326 +389491,185.37,93.5381 +389492,183.92,93.4593 +389493,186.92,93.8183 +389494,185.47,93.663 +389495,184.01,93.5241 +389496,182.57,93.4012 +389497,185.58,93.8933 +389498,184.12,93.6933 +389499,182.66,93.5101 +389500,181.22,93.3433 +389501,184.23,93.9682 +389502,182.77,93.7235 +389503,181.31,93.496 +389504,179.86,93.2854 +389505,182.88,94.0429 +389506,181.42,93.7535 +389507,179.96,93.4819 +389508,178.51,93.2277 +389509,181.53,94.1174 +389510,180.06,93.7835 +389511,178.61,93.4679 +389512,177.16,93.1701 +389513,180.17,94.1917 +389514,178.71,93.8133 +389515,177.26,93.4538 +389516,175.81,93.1127 +389517,178.82,94.2657 +389518,177.36,93.843 +389519,175.91,93.4398 +389520,174.47,93.0555 +389521,177.46,94.3394 +389522,176.01,93.8726 +389523,174.56,93.4258 +389524,173.12,92.9987 +389525,176.11,94.4128 +389526,174.66,93.902 +389527,173.21,93.4119 +389528,171.78,92.9421 +389529,174.75,94.4858 +389530,173.3,93.9312 +389531,171.86,93.3981 +389532,170.43,92.8858 +389533,173.39,94.5584 +389534,171.95,93.9602 +389535,170.51,93.3843 +389536,169.09,92.8299 +389537,172.03,94.6305 +389538,170.59,93.9891 +389539,169.17,93.3706 +389540,167.75,92.7743 +389541,170.67,94.7022 +389542,169.24,94.0177 +389543,167.82,93.357 +389544,166.41,92.7192 +389545,169.31,94.7734 +389546,167.89,94.0461 +389547,166.47,93.3435 +389548,165.07,92.6645 +389549,167.94,94.844 +389550,166.53,94.0743 +389551,165.12,93.3301 +389552,163.73,92.6103 +389553,166.58,94.9141 +389554,165.17,94.1023 +389555,163.78,93.3168 +389556,162.39,92.5567 +389557,165.21,94.9835 +389558,163.82,94.13 +389559,162.43,93.3037 +389560,161.06,92.5035 +389561,163.85,95.0523 +389562,162.46,94.1574 +389563,161.09,93.2907 +389564,159.72,92.4509 +389565,162.48,95.1204 +389566,161.1,94.1846 +389567,159.74,93.2779 +389568,158.39,92.3989 +389569,161.11,95.1879 +389570,159.75,94.2115 +389571,158.4,93.2653 +389572,157.06,92.3476 +389573,159.74,95.2545 +389574,158.39,94.2381 +389575,157.05,93.2528 +389576,155.72,92.2969 +389577,158.37,95.3205 +389578,157.03,94.2644 +389579,155.71,93.2405 +389580,154.39,92.2469 +389581,157,95.3856 +389582,155.67,94.2904 +389583,154.36,93.2284 +389584,153.06,92.1976 +389585,155.62,95.4498 +389586,154.31,94.3161 +389587,153.02,93.2165 +389588,151.74,92.149 +389589,154.25,95.5133 +389590,152.96,94.3415 +389591,151.68,93.2048 +389592,150.41,92.1012 +389593,152.87,95.5758 +389594,151.6,94.3665 +389595,150.33,93.1934 +389596,149.08,92.0542 +389597,151.49,95.6374 +389598,150.24,94.3911 +389599,148.99,93.1822 +389600,147.76,92.008 +389601,150.12,95.698 +389602,148.88,94.4154 +389603,147.65,93.1712 +389604,146.43,91.9626 +389605,148.74,95.7577 +389606,147.51,94.4393 +389607,146.31,93.1604 +389608,145.11,91.9181 +389609,147.36,95.8163 +389610,146.15,94.4629 +389611,144.96,93.15 +389612,143.79,91.8745 +389613,145.98,95.8739 +389614,144.79,94.486 +389615,143.62,93.1398 +389616,142.47,91.8319 +389617,144.59,95.9304 +389618,143.43,94.5088 +389619,142.28,93.1299 +389620,141.15,91.7901 +389621,143.21,95.9859 +389622,142.07,94.5312 +389623,140.94,93.1202 +389624,139.83,91.7494 +389625,141.83,96.0402 +389626,140.71,94.5531 +389627,139.6,93.1109 +389628,138.51,91.7096 +389629,140.44,96.0933 +389630,139.34,94.5746 +389631,138.26,93.1018 +389632,137.19,91.6708 +389633,139.06,96.1453 +389634,137.98,94.5957 +389635,136.92,93.0931 +389636,135.87,91.633 +389637,137.67,96.1961 +389638,136.62,94.6164 +389639,135.58,93.0846 +389640,134.56,91.5964 +389641,136.28,96.2456 +389642,135.25,94.6366 +389643,134.24,93.0765 +389644,133.24,91.5607 +389645,134.89,96.2939 +389646,133.89,94.6564 +389647,132.9,93.0687 +389648,131.93,91.5262 +389649,133.5,96.341 +389650,132.53,94.6757 +389651,131.56,93.0613 +389652,130.61,91.4928 +389653,132.11,96.3867 +389654,131.16,94.6945 +389655,130.22,93.0542 +389656,129.3,91.4605 +389657,130.72,96.4311 +389658,129.8,94.7128 +389659,128.89,93.0474 +389660,127.99,91.4294 +389661,129.33,96.4742 +389662,128.43,94.7307 +389663,127.55,93.041 +389664,126.68,91.3994 +389665,127.94,96.5159 +389666,127.07,94.7481 +389667,126.21,93.035 +389668,125.37,91.3707 +389669,126.55,96.5562 +389670,125.7,94.765 +389671,124.87,93.0293 +389672,124.06,91.3431 +389673,125.15,96.5951 +389674,124.34,94.7814 +389675,123.53,93.024 +389676,122.75,91.3167 +389677,123.76,96.6326 +389678,122.97,94.7973 +389679,122.2,93.0191 +389680,121.44,91.2916 +389681,122.36,96.6687 +389682,121.6,94.8127 +389683,120.86,93.0146 +389684,120.13,91.2677 +389685,120.97,96.7033 +389686,120.24,94.8276 +389687,119.52,93.0104 +389688,118.82,91.2451 +389689,119.57,96.7365 +389690,118.87,94.8419 +389691,118.19,93.0066 +389692,117.51,91.2238 +389693,118.18,96.7681 +389694,117.51,94.8557 +389695,116.85,93.0033 +389696,116.21,91.2038 +389697,116.78,96.7983 +389698,116.14,94.869 +389699,115.51,93.0003 +389700,114.9,91.185 +389701,115.38,96.8269 +389702,114.77,94.8817 +389703,114.18,92.9978 +389704,113.59,91.1676 +389705,113.98,96.854 +389706,113.4,94.894 +389707,112.84,92.9956 +389708,112.29,91.1515 +389709,112.58,96.8796 +389710,112.04,94.9056 +389711,111.51,92.9939 +389712,110.98,91.1368 +389713,111.18,96.9036 +389714,110.67,94.9167 +389715,110.17,92.9926 +389716,109.68,91.1233 +389717,109.78,96.9261 +389718,109.3,94.9273 +389719,108.83,92.9917 +389720,108.38,91.1113 +389721,108.38,96.9469 +389722,107.93,94.9373 +389723,107.5,92.9912 +389724,107.07,91.1006 +389725,106.98,96.9662 +389726,106.57,94.9468 +389727,106.16,92.9911 +389728,105.77,91.0913 +389729,105.58,96.9839 +389730,105.2,94.9557 +389731,104.83,92.9915 +389732,104.47,91.0833 +389733,104.18,97 +389734,103.83,94.964 +389735,103.49,92.9923 +389736,103.16,91.0767 +389737,102.78,97.0145 +389738,102.46,94.9718 +389739,102.16,92.9935 +389740,101.86,91.0716 +389741,101.38,97.0274 +389742,101.09,94.979 +389743,100.82,92.9952 +389744,100.56,91.0678 +389745,99.975,97.0387 +389746,99.725,94.9857 +389747,99.486,92.9973 +389748,99.256,91.0654 +389749,98.573,97.0483 +389750,98.356,94.9917 +389751,98.151,92.9999 +389752,97.954,91.0644 +389753,97.17,97.0563 +389754,96.988,94.9973 +389755,96.816,93.0028 +389756,96.652,91.0648 +389757,95.768,97.0627 +389758,95.619,95.0022 +389759,95.481,93.0062 +389760,95.351,91.0667 +389761,94.365,97.0675 +389762,94.25,95.0066 +389763,94.146,93.0101 +389764,94.049,91.0699 +389765,92.962,97.0706 +389766,92.882,95.0104 +389767,92.81,93.0144 +389768,92.747,91.0745 +389769,91.559,97.0721 +389770,91.513,95.0136 +389771,91.475,93.0191 +389772,91.446,91.0806 +389773,90.157,97.072 +389774,90.144,95.0162 +389775,90.14,93.0243 +389776,90.144,91.0881 +389777,88.754,97.0703 +389778,88.775,95.0183 +389779,88.805,93.0298 +389780,88.843,91.0969 +389781,87.351,97.0669 +389782,87.407,95.0198 +389783,87.47,93.0359 +389784,87.541,91.1072 +389785,85.948,97.062 +389786,86.038,95.0208 +389787,86.135,93.0423 +389788,86.239,91.1189 +389789,84.546,97.0554 +389790,84.669,95.0212 +389791,84.8,93.0492 +389792,84.937,91.132 +389793,83.143,97.0472 +389794,83.301,95.021 +389795,83.465,93.0566 +389796,83.635,91.1464 +389797,81.741,97.0374 +389798,81.932,95.0203 +389799,82.13,93.0643 +389800,82.333,91.1623 +389801,80.339,97.0261 +389802,80.563,95.019 +389803,80.794,93.0725 +389804,81.031,91.1795 +389805,78.936,97.0131 +389806,79.195,95.0171 +389807,79.459,93.0812 +389808,79.728,91.1982 +389809,77.535,96.9986 +389810,77.827,95.0147 +389811,78.124,93.0902 +389812,78.425,91.2182 +389813,76.133,96.9825 +389814,76.458,95.0117 +389815,76.788,93.0997 +389816,77.122,91.2395 +389817,74.732,96.9648 +389818,75.09,95.0082 +389819,75.452,93.1095 +389820,75.819,91.2622 +389821,73.331,96.9456 +389822,73.722,95.0041 +389823,74.117,93.1198 +389824,74.515,91.2863 +389825,71.93,96.9249 +389826,72.354,94.9995 +389827,72.781,93.1305 +389828,73.211,91.3117 +389829,70.53,96.9027 +389830,70.986,94.9944 +389831,71.445,93.1416 +389832,71.907,91.3384 +389833,69.13,96.8789 +389834,69.618,94.9887 +389835,70.108,93.1532 +389836,70.602,91.3665 +389837,67.731,96.8537 +389838,68.25,94.9825 +389839,68.772,93.1651 +389840,69.297,91.3958 +389841,66.332,96.827 +389842,66.883,94.9758 +389843,67.436,93.1774 +389844,67.991,91.4265 +389845,64.933,96.7989 +389846,65.515,94.9685 +389847,66.099,93.1901 +389848,66.685,91.4584 +389849,63.536,96.7693 +389850,64.148,94.9607 +389851,64.762,93.2032 +389852,65.379,91.4916 +389853,62.138,96.7383 +389854,62.781,94.9525 +389855,63.425,93.2166 +389856,64.071,91.526 +389857,60.741,96.7059 +389858,61.414,94.9437 +389859,62.088,93.2305 +389860,62.764,91.5616 +389861,59.345,96.6721 +389862,60.047,94.9344 +389863,60.751,93.2447 +389864,61.455,91.5985 +389865,57.949,96.6369 +389866,58.681,94.9247 +389867,59.413,93.2593 +389868,60.147,91.6366 +389869,56.554,96.6005 +389870,57.314,94.9144 +389871,58.075,93.2742 +389872,58.837,91.6759 +389873,55.16,96.5626 +389874,55.948,94.9037 +389875,56.737,93.2895 +389876,57.527,91.7163 +389877,53.766,96.5235 +389878,54.582,94.8925 +389879,55.399,93.3051 +389880,56.216,91.7579 +389881,52.373,96.4832 +389882,53.217,94.8808 +389883,54.061,93.3211 +389884,54.905,91.8007 +389885,50.98,96.4415 +389886,51.851,94.8687 +389887,52.722,93.3374 +389888,53.593,91.8445 +389889,49.589,96.3987 +389890,50.486,94.8561 +389891,51.383,93.354 +389892,52.28,91.8894 +389893,48.198,96.3546 +389894,49.121,94.8431 +389895,50.044,93.3709 +389896,50.966,91.9355 +389897,46.808,96.3094 +389898,47.757,94.8296 +389899,48.705,93.3882 +389900,49.652,91.9825 +389901,45.419,96.263 +389902,46.392,94.8158 +389903,47.365,93.4058 +389904,48.337,92.0306 +389905,44.03,96.2154 +389906,45.028,94.8015 +389907,46.025,93.4236 +389908,47.021,92.0797 +389909,42.642,96.1668 +389910,43.664,94.7868 +389911,44.685,93.4417 +389912,45.704,92.1298 +389913,41.256,96.1171 +389914,42.301,94.7716 +389915,43.344,93.4602 +389916,44.386,92.1809 +389917,39.87,96.0664 +389918,40.937,94.7561 +389919,42.003,93.4788 +389920,43.068,92.2329 +389921,38.485,96.0146 +389922,39.574,94.7403 +389923,40.662,93.4978 +389924,41.748,92.2858 +389925,37.101,95.9619 +389926,38.211,94.724 +389927,39.32,93.517 +389928,40.428,92.3396 +389929,35.718,95.9082 +389930,36.849,94.7074 +389931,37.979,93.5364 +389932,39.107,92.3942 +389933,34.336,95.8535 +389934,35.487,94.6904 +389935,36.637,93.5561 +389936,37.784,92.4497 +389937,32.955,95.798 +389938,34.125,94.6731 +389939,35.294,93.576 +389940,36.461,92.506 +389941,31.574,95.7416 +389942,32.764,94.6554 +389943,33.951,93.5962 +389944,35.137,92.5632 +389945,30.195,95.6843 +389946,31.403,94.6374 +389947,32.608,93.6165 +389948,33.812,92.621 +389949,28.817,95.6263 +389950,30.042,94.6191 +389951,31.265,93.637 +389952,32.486,92.6796 +389953,27.44,95.5675 +389954,28.681,94.6005 +389955,29.921,93.6578 +389956,31.159,92.7389 +389957,26.064,95.5079 +389958,27.321,94.5815 +389959,28.577,93.6787 +389960,29.831,92.7989 +389961,24.689,95.4476 +389962,25.961,94.5623 +389963,27.233,93.6998 +389964,28.502,92.8595 +389965,23.315,95.3866 +389966,24.602,94.5428 +389967,25.888,93.721 +389968,27.172,92.9208 +389969,21.942,95.325 +389970,23.243,94.5231 +389971,24.543,93.7424 +389972,25.84,92.9826 +389973,20.57,95.2628 +389974,21.884,94.5031 +389975,23.197,93.7639 +389976,24.508,93.045 +389977,19.199,95.1999 +389978,20.526,94.4828 +389979,21.851,93.7855 +389980,23.175,93.108 +389981,17.83,95.1366 +389982,19.168,94.4624 +389983,20.505,93.8073 +389984,21.84,93.1714 +389985,16.461,95.0727 +389986,17.81,94.4416 +389987,19.159,93.8292 +389988,20.504,93.2353 +389989,15.094,95.0083 +389990,16.453,94.4207 +389991,17.812,93.8512 +389992,19.168,93.2997 +389993,13.728,94.9435 +389994,15.096,94.3996 +389995,16.464,93.8732 +389996,17.83,93.3644 +389997,12.363,94.8782 +389998,13.74,94.3783 +389999,15.116,93.8954 +390000,16.491,93.4295 +390001,10.999,94.8126 +390002,12.384,94.3568 +390003,13.768,93.9176 +390004,15.151,93.495 +390005,9.636,94.7466 +390006,11.028,94.3351 +390007,12.42,93.9398 +390008,13.81,93.5608 +390009,8.2744,94.6803 +390010,9.6728,94.3133 +390011,11.071,93.9621 +390012,12.467,93.6268 +390013,6.914,94.6138 +390014,8.3179,94.2913 +390015,9.7216,93.9844 +390016,11.124,93.6931 +390017,5.5547,94.5469 +390018,6.9634,94.2692 +390019,8.3719,94.0068 +390020,9.7789,93.7597 +390021,4.1967,94.4799 +390022,5.6092,94.247 +390023,7.0219,94.0291 +390024,8.433,93.8264 +390025,2.8397,94.4127 +390026,4.2555,94.2247 +390027,5.6714,94.0515 +390028,7.0859,93.8932 +390029,1.484,94.3453 +390030,2.9021,94.2022 +390031,4.3206,94.0738 +390032,5.7377,93.9602 +390033,0.12943,94.2779 +390034,1.5492,94.1797 +390035,2.9693,94.0961 +390036,4.3883,94.0272 +390037,358.78,94.2103 +390038,0.19659,94.1571 +390039,1.6177,94.1184 +390040,3.0377,94.0943 +390041,357.42,94.1427 +390042,358.84,94.1344 +390043,0.26567,94.1407 +390044,1.6859,94.1614 +390045,356.07,94.0751 +390046,357.49,94.1117 +390047,358.91,94.1628 +390048,0.333,94.2285 +390049,354.72,94.0075 +390050,356.14,94.0889 +390051,357.56,94.1849 +390052,358.98,94.2955 +390053,353.37,93.94 +390054,354.79,94.0661 +390055,356.21,94.207 +390056,357.62,94.3625 +390057,352.03,93.8726 +390058,353.44,94.0433 +390059,354.85,94.2289 +390060,356.27,94.4293 +390061,350.68,93.8053 +390062,352.09,94.0205 +390063,353.5,94.2507 +390064,354.91,94.496 +390065,349.34,93.7382 +390066,350.74,93.9976 +390067,352.15,94.2724 +390068,353.55,94.5624 +390069,347.99,93.6712 +390070,349.39,93.9748 +390071,350.79,94.294 +390072,352.19,94.6287 +390073,346.65,93.6045 +390074,348.04,93.952 +390075,349.44,94.3154 +390076,350.83,94.6947 +390077,345.31,93.538 +390078,346.69,93.9292 +390079,348.08,94.3367 +390080,349.47,94.7604 +390081,343.97,93.4718 +390082,345.34,93.9065 +390083,346.72,94.3579 +390084,348.1,94.8258 +390085,342.63,93.406 +390086,344,93.8839 +390087,345.37,94.3788 +390088,346.74,94.8908 +390089,341.29,93.3405 +390090,342.65,93.8613 +390091,344.01,94.3996 +390092,345.37,94.9554 +390093,339.95,93.2754 +390094,341.3,93.8388 +390095,342.65,94.4202 +390096,344.01,95.0196 +390097,338.62,93.2107 +390098,339.96,93.8163 +390099,341.3,94.4406 +390100,342.64,95.0833 +390101,337.28,93.1464 +390102,338.61,93.794 +390103,339.94,94.4607 +390104,341.27,95.1466 +390105,335.95,93.0826 +390106,337.26,93.7718 +390107,338.58,94.4807 +390108,339.9,95.2093 +390109,334.61,93.0194 +390110,335.92,93.7497 +390111,337.22,94.5004 +390112,338.53,95.2714 +390113,333.28,92.9567 +390114,334.57,93.7278 +390115,335.86,94.5198 +390116,337.16,95.333 +390117,331.95,92.8945 +390118,333.23,93.706 +390119,334.5,94.539 +390120,335.78,95.3939 +390121,330.62,92.833 +390122,331.88,93.6843 +390123,333.14,94.5579 +390124,334.41,95.4542 +390125,329.29,92.772 +390126,330.54,93.6628 +390127,331.78,94.5766 +390128,333.03,95.5138 +390129,327.97,92.7118 +390130,329.19,93.6415 +390131,330.42,94.5949 +390132,331.65,95.5726 +390133,326.64,92.6522 +390134,327.85,93.6203 +390135,329.06,94.613 +390136,330.28,95.6307 +390137,325.31,92.5934 +390138,326.51,93.5994 +390139,327.7,94.6307 +390140,328.9,95.688 +390141,323.99,92.5352 +390142,325.17,93.5786 +390143,326.34,94.6481 +390144,327.52,95.7445 +390145,322.67,92.4779 +390146,323.82,93.5581 +390147,324.98,94.6652 +390148,326.14,95.8002 +390149,321.34,92.4213 +390150,322.48,93.5378 +390151,323.62,94.682 +390152,324.76,95.855 +390153,320.02,92.3656 +390154,321.14,93.5177 +390155,322.26,94.6984 +390156,323.37,95.9088 +390157,318.7,92.3107 +390158,319.8,93.4978 +390159,320.89,94.7144 +390160,321.99,95.9617 +390161,317.38,92.2567 +390162,318.46,93.4782 +390163,319.53,94.7301 +390164,320.6,96.0137 +390165,316.06,92.2036 +390166,317.11,93.4589 +390167,318.17,94.7454 +390168,319.22,96.0647 +390169,314.75,92.1515 +390170,315.77,93.4398 +390171,316.8,94.7603 +390172,317.83,96.1146 +390173,313.43,92.1002 +390174,314.43,93.421 +390175,315.44,94.7748 +390176,316.45,96.1635 +390177,312.11,92.05 +390178,313.09,93.4025 +390179,314.08,94.7889 +390180,315.06,96.2113 +390181,310.8,92.0007 +390182,311.75,93.3843 +390183,312.71,94.8026 +390184,313.67,96.258 +390185,309.48,91.9525 +390186,310.41,93.3663 +390187,311.35,94.8159 +390188,312.28,96.3035 +390189,308.17,91.9052 +390190,309.08,93.3487 +390191,309.98,94.8287 +390192,310.89,96.3479 +390193,306.86,91.8591 +390194,307.74,93.3314 +390195,308.62,94.8411 +390196,309.5,96.3912 +390197,305.54,91.814 +390198,306.4,93.3144 +390199,307.25,94.8531 +390200,308.11,96.4332 +390201,304.23,91.7701 +390202,305.06,93.2977 +390203,305.89,94.8646 +390204,306.71,96.4739 +390205,302.92,91.7272 +390206,303.72,93.2814 +390207,304.52,94.8756 +390208,305.32,96.5135 +390209,301.61,91.6855 +390210,302.38,93.2654 +390211,303.15,94.8862 +390212,303.92,96.5517 +390213,300.3,91.6449 +390214,301.05,93.2498 +390215,301.79,94.8963 +390216,302.53,96.5886 +390217,298.99,91.6056 +390218,299.71,93.2345 +390219,300.42,94.906 +390220,301.13,96.6242 +390221,297.68,91.5674 +390222,298.37,93.2195 +390223,299.06,94.9151 +390224,299.74,96.6585 +390225,296.38,91.5304 +390226,297.03,93.205 +390227,297.69,94.9238 +390228,298.34,96.6914 +390229,295.07,91.4947 +390230,295.7,93.1908 +390231,296.32,94.9319 +390232,296.94,96.7229 +390233,293.76,91.4602 +390234,294.36,93.177 +390235,294.95,94.9396 +390236,295.55,96.753 +390237,292.46,91.4269 +390238,293.02,93.1635 +390239,293.59,94.9467 +390240,294.15,96.7817 +390241,291.15,91.3949 +390242,291.69,93.1505 +390243,292.22,94.9533 +390244,292.75,96.8089 +390245,289.84,91.3642 +390246,290.35,93.1378 +390247,290.85,94.9594 +390248,291.35,96.8347 +390249,288.54,91.3348 +390250,289.01,93.1256 +390251,289.48,94.965 +390252,289.95,96.859 +390253,287.24,91.3067 +390254,287.68,93.1137 +390255,288.12,94.9701 +390256,288.55,96.8818 +390257,285.93,91.28 +390258,286.34,93.1023 +390259,286.75,94.9746 +390260,287.15,96.9032 +390261,284.63,91.2545 +390262,285.01,93.0912 +390263,285.38,94.9786 +390264,285.75,96.9229 +390265,283.32,91.2304 +390266,283.67,93.0806 +390267,284.01,94.982 +390268,284.35,96.9412 +390269,282.02,91.2076 +390270,282.34,93.0704 +390271,282.64,94.9849 +390272,282.95,96.9579 +390273,280.72,91.1862 +390274,281,93.0606 +390275,281.28,94.9872 +390276,281.55,96.9731 +390277,279.42,91.1662 +390278,279.66,93.0512 +390279,279.91,94.989 +390280,280.14,96.9867 +390281,278.11,91.1476 +390282,278.33,93.0422 +390283,278.54,94.9902 +390284,278.74,96.9987 +390285,276.81,91.1303 +390286,276.99,93.0337 +390287,277.17,94.9909 +390288,277.34,97.0092 +390289,275.51,91.1144 +390290,275.66,93.0256 +390291,275.8,94.991 +390292,275.94,97.018 +390293,274.21,91.0999 +390294,274.32,93.018 +390295,274.43,94.9906 +390296,274.53,97.0253 +390297,272.91,91.0868 +390298,272.99,93.0107 +390299,273.07,94.9895 +390300,273.13,97.0309 +390301,271.6,91.0751 +390302,271.65,93.0039 +390303,271.7,94.988 +390304,271.73,97.0349 +390305,270.3,91.0648 +390306,270.32,92.9976 +390307,270.33,94.9858 +390308,270.33,97.0374 +390309,269,91.0559 +390310,268.98,92.9917 +390311,268.96,94.9831 +390312,268.92,97.0382 +390313,267.7,91.0484 +390314,267.65,92.9862 +390315,267.59,94.9798 +390316,267.52,97.0373 +390317,266.4,91.0423 +390318,266.32,92.9811 +390319,266.22,94.9759 +390320,266.12,97.0349 +390321,265.1,91.0377 +390322,264.98,92.9765 +390323,264.85,94.9715 +390324,264.72,97.0308 +390325,263.8,91.0344 +390326,263.65,92.9723 +390327,263.48,94.9665 +390328,263.31,97.0251 +390329,262.49,91.0326 +390330,262.31,92.9686 +390331,262.12,94.961 +390332,261.91,97.0178 +390333,261.19,91.0321 +390334,260.98,92.9653 +390335,260.75,94.9548 +390336,260.51,97.0088 +390337,259.89,91.0331 +390338,259.64,92.9624 +390339,259.38,94.9481 +390340,259.11,96.9983 +390341,258.59,91.0354 +390342,258.31,92.96 +390343,258.01,94.9409 +390344,257.7,96.9861 +390345,257.29,91.0392 +390346,256.97,92.958 +390347,256.64,94.933 +390348,256.3,96.9723 +390349,255.98,91.0443 +390350,255.64,92.9565 +390351,255.28,94.9246 +390352,254.9,96.9569 +390353,254.68,91.0509 +390354,254.3,92.9553 +390355,253.91,94.9157 +390356,253.5,96.9399 +390357,253.38,91.0588 +390358,252.96,92.9546 +390359,252.54,94.9061 +390360,252.1,96.9213 +390361,252.07,91.0681 +390362,251.63,92.9544 +390363,251.17,94.8961 +390364,250.7,96.9011 +390365,250.77,91.0788 +390366,250.29,92.9545 +390367,249.8,94.8854 +390368,249.3,96.8793 +390369,249.47,91.0908 +390370,248.96,92.9551 +390371,248.44,94.8743 +390372,247.9,96.856 +390373,248.16,91.1042 +390374,247.62,92.9561 +390375,247.07,94.8625 +390376,246.5,96.8311 +390377,246.86,91.1189 +390378,246.29,92.9575 +390379,245.7,94.8502 +390380,245.1,96.8046 +390381,245.55,91.1349 +390382,244.95,92.9593 +390383,244.33,94.8374 +390384,243.7,96.7766 +390385,244.25,91.1523 +390386,243.61,92.9615 +390387,242.97,94.8241 +390388,242.31,96.7471 +390389,242.94,91.171 +390390,242.28,92.9642 +390391,241.6,94.8102 +390392,240.91,96.7161 +390393,241.63,91.1909 +390394,240.94,92.9672 +390395,240.24,94.7958 +390396,239.51,96.6836 +390397,240.33,91.2122 +390398,239.6,92.9706 +390399,238.87,94.7808 +390400,238.12,96.6496 +390401,239.02,91.2347 +390402,238.27,92.9744 +390403,237.5,94.7654 +390404,236.72,96.6141 +390405,237.71,91.2585 +390406,236.93,92.9786 +390407,236.14,94.7494 +390408,235.33,96.5772 +390409,236.4,91.2836 +390410,235.59,92.9832 +390411,234.77,94.7329 +390412,233.93,96.5388 +390413,235.09,91.3098 +390414,234.26,92.9882 +390415,233.41,94.7159 +390416,232.54,96.4991 +390417,233.78,91.3373 +390418,232.92,92.9935 +390419,232.04,94.6984 +390420,231.15,96.4579 +390421,232.47,91.366 +390422,231.58,92.9992 +390423,230.68,94.6805 +390424,229.76,96.4154 +390425,231.16,91.3958 +390426,230.24,93.0053 +390427,229.31,94.662 +390428,228.37,96.3715 +390429,229.85,91.4269 +390430,228.9,93.0117 +390431,227.95,94.6431 +390432,226.98,96.3263 +390433,228.53,91.459 +390434,227.56,93.0184 +390435,226.58,94.6237 +390436,225.59,96.2798 +390437,227.22,91.4923 +390438,226.23,93.0255 +390439,225.22,94.6038 +390440,224.2,96.232 +390441,225.9,91.5267 +390442,224.89,93.033 +390443,223.86,94.5835 +390444,222.81,96.1829 +390445,224.59,91.5622 +390446,223.55,93.0407 +390447,222.49,94.5627 +390448,221.42,96.1326 +390449,223.27,91.5987 +390450,222.21,93.0488 +390451,221.13,94.5415 +390452,220.04,96.081 +390453,221.95,91.6363 +390454,220.87,93.0572 +390455,219.77,94.5198 +390456,218.65,96.0283 +390457,220.64,91.6749 +390458,219.53,93.0659 +390459,218.41,94.4978 +390460,217.27,95.9744 +390461,219.32,91.7146 +390462,218.19,93.0749 +390463,217.04,94.4753 +390464,215.88,95.9194 +390465,218,91.7552 +390466,216.85,93.0842 +390467,215.68,94.4524 +390468,214.5,95.8632 +390469,216.68,91.7967 +390470,215.51,93.0937 +390471,214.32,94.4291 +390472,213.12,95.806 +390473,215.36,91.8392 +390474,214.16,93.1036 +390475,212.96,94.4054 +390476,211.74,95.7477 +390477,214.03,91.8826 +390478,212.82,93.1137 +390479,211.6,94.3813 +390480,210.36,95.6883 +390481,212.71,91.9269 +390482,211.48,93.124 +390483,210.24,94.3568 +390484,208.98,95.628 +390485,211.38,91.972 +390486,210.14,93.1346 +390487,208.88,94.332 +390488,207.61,95.5667 +390489,210.06,92.018 +390490,208.8,93.1455 +390491,207.52,94.3068 +390492,206.23,95.5044 +390493,208.73,92.0648 +390494,207.45,93.1566 +390495,206.16,94.2813 +390496,204.86,95.4412 +390497,207.4,92.1123 +390498,206.11,93.1678 +390499,204.8,94.2555 +390500,203.48,95.3772 +390501,206.08,92.1606 +390502,204.77,93.1794 +390503,203.44,94.2293 +390504,202.11,95.3123 +390505,204.75,92.2097 +390506,203.42,93.1911 +390507,202.09,94.2028 +390508,200.74,95.2465 +390509,203.42,92.2594 +390510,202.08,93.203 +390511,200.73,94.176 +390512,199.37,95.18 +390513,202.08,92.3098 +390514,200.73,93.2151 +390515,199.37,94.1489 +390516,198,95.1127 +390517,200.75,92.3609 +390518,199.39,93.2273 +390519,198.01,94.1215 +390520,196.63,95.0447 +390521,199.42,92.4126 +390522,198.04,93.2397 +390523,196.66,94.0938 +390524,195.26,94.976 +390525,198.08,92.4649 +390526,196.7,93.2523 +390527,195.3,94.0659 +390528,193.89,94.9066 +390529,196.74,92.5177 +390530,195.35,93.265 +390531,193.95,94.0377 +390532,192.53,94.8366 +390533,195.41,92.571 +390534,194,93.2779 +390535,192.59,94.0092 +390536,191.17,94.766 +390537,194.07,92.6249 +390538,192.66,93.2909 +390539,191.24,93.9806 +390540,189.8,94.6949 +390541,192.73,92.6792 +390542,191.31,93.304 +390543,189.88,93.9517 +390544,188.44,94.6232 +390545,191.39,92.734 +390546,189.96,93.3172 +390547,188.53,93.9226 +390548,187.08,94.551 +390549,190.05,92.7891 +390550,188.61,93.3305 +390551,187.17,93.8933 +390552,185.72,94.4784 +390553,188.7,92.8447 +390554,187.27,93.3438 +390555,185.82,93.8638 +390556,184.37,94.4053 +390557,187.36,92.9006 +390558,185.92,93.3573 +390559,184.47,93.8341 +390560,183.01,94.3318 +390561,186.01,92.9568 +390562,184.57,93.3708 +390563,183.11,93.8043 +390564,181.65,94.258 +390565,184.67,93.0133 +390566,183.22,93.3843 +390567,181.76,93.7743 +390568,180.3,94.1838 +390569,183.32,93.07 +390570,181.87,93.3979 +390571,180.41,93.7442 +390572,178.95,94.1094 +390573,181.97,93.1269 +390574,180.52,93.4115 +390575,179.06,93.7139 +390576,177.59,94.0347 +390577,180.62,93.1841 +390578,179.17,93.4251 +390579,177.71,93.6835 +390580,176.24,93.9597 +390581,179.27,93.2414 +390582,177.82,93.4388 +390583,176.36,93.653 +390584,174.89,93.8846 +390585,177.92,93.2988 +390586,176.47,93.4524 +390587,175.01,93.6224 +390588,173.55,93.8093 +390589,176.56,93.3563 +390590,175.11,93.466 +390591,173.66,93.5917 +390592,172.2,93.734 +390593,175.21,93.4138 +390594,173.76,93.4796 +390595,172.31,93.561 +390596,170.85,93.6585 +390597,173.85,93.4714 +390598,172.41,93.4931 +390599,170.96,93.5301 +390600,169.51,93.5829 +390601,172.49,93.529 +390602,171.06,93.5066 +390603,169.61,93.4993 +390604,168.17,93.5074 +390605,171.13,93.5865 +390606,169.7,93.5201 +390607,168.27,93.4683 +390608,166.82,93.4319 +390609,169.77,93.644 +390610,168.35,93.5334 +390611,166.92,93.4374 +390612,165.48,93.3564 +390613,168.41,93.7013 +390614,167,93.5467 +390615,165.57,93.4064 +390616,164.14,93.281 +390617,167.05,93.7585 +390618,165.64,93.5599 +390619,164.23,93.3754 +390620,162.8,93.2057 +390621,165.69,93.8155 +390622,164.29,93.5729 +390623,162.88,93.3445 +390624,161.47,93.1306 +390625,164.32,93.8723 +390626,162.93,93.5859 +390627,161.53,93.3135 +390628,160.13,93.0557 +390629,162.96,93.9289 +390630,161.58,93.5987 +390631,160.19,93.2826 +390632,158.8,92.981 +390633,161.59,93.9852 +390634,160.22,93.6114 +390635,158.84,93.2517 +390636,157.46,92.9065 +390637,160.22,94.0412 +390638,158.86,93.624 +390639,157.5,93.2208 +390640,156.13,92.8323 +390641,158.86,94.0968 +390642,157.51,93.6363 +390643,156.15,93.19 +390644,154.8,92.7585 +390645,157.49,94.1521 +390646,156.15,93.6485 +390647,154.81,93.1593 +390648,153.47,92.685 +390649,156.11,94.207 +390650,154.79,93.6606 +390651,153.47,93.1286 +390652,152.14,92.6118 +390653,154.74,94.2614 +390654,153.44,93.6724 +390655,152.12,93.0981 +390656,150.81,92.5391 +390657,153.37,94.3154 +390658,152.08,93.684 +390659,150.78,93.0676 +390660,149.48,92.4669 +390661,151.99,94.3688 +390662,150.72,93.6954 +390663,149.44,93.0373 +390664,148.16,92.3951 +390665,150.62,94.4218 +390666,149.36,93.7066 +390667,148.1,93.0071 +390668,146.83,92.3238 +390669,149.24,94.4741 +390670,148,93.7176 +390671,146.76,92.977 +390672,145.51,92.253 +390673,147.86,94.5259 +390674,146.64,93.7283 +390675,145.42,92.9471 +390676,144.18,92.1829 +390677,146.49,94.577 +390678,145.28,93.7387 +390679,144.08,92.9173 +390680,142.86,92.1133 +390681,145.11,94.6275 +390682,143.92,93.7489 +390683,142.73,92.8877 +390684,141.54,92.0443 +390685,143.73,94.6773 +390686,142.56,93.7588 +390687,141.39,92.8582 +390688,140.22,91.976 +390689,142.34,94.7263 +390690,141.2,93.7684 +390691,140.06,92.829 +390692,138.9,91.9084 +390693,140.96,94.7746 +390694,139.84,93.7778 +390695,138.72,92.7999 +390696,137.58,91.8415 +390697,139.58,94.8221 +390698,138.48,93.7868 +390699,137.38,92.7711 +390700,136.27,91.7754 +390701,138.19,94.8689 +390702,137.12,93.7955 +390703,136.04,92.7424 +390704,134.95,91.71 +390705,136.81,94.9147 +390706,135.76,93.8038 +390707,134.7,92.714 +390708,133.64,91.6454 +390709,135.42,94.9597 +390710,134.4,93.8119 +390711,133.36,92.6858 +390712,132.32,91.5816 +390713,134.03,95.0038 +390714,133.03,93.8196 +390715,132.02,92.6579 +390716,131.01,91.5187 +390717,132.65,95.047 +390718,131.67,93.8269 +390719,130.69,92.6302 +390720,129.7,91.4566 +390721,131.26,95.0892 +390722,130.31,93.8339 +390723,129.35,92.6027 +390724,128.38,91.3955 +390725,129.87,95.1304 +390726,128.95,93.8405 +390727,128.01,92.5756 +390728,127.07,91.3352 +390729,128.48,95.1706 +390730,127.58,93.8467 +390731,126.68,92.5487 +390732,125.76,91.2759 +390733,127.09,95.2098 +390734,126.22,93.8526 +390735,125.34,92.5221 +390736,124.45,91.2176 +390737,125.7,95.2479 +390738,124.85,93.858 +390739,124,92.4957 +390740,123.15,91.1603 +390741,124.3,95.2849 +390742,123.49,93.8631 +390743,122.67,92.4697 +390744,121.84,91.104 +390745,122.91,95.3208 +390746,122.13,93.8677 +390747,121.33,92.444 +390748,120.53,91.0487 +390749,121.52,95.3556 +390750,120.76,93.8719 +390751,120,92.4186 +390752,119.22,90.99445 +390753,120.12,95.3892 +390754,119.4,93.8757 +390755,118.66,92.3935 +390756,117.92,90.9413 +390757,118.73,95.4216 +390758,118.03,93.8791 +390759,117.33,92.3688 +390760,116.61,90.88925 +390761,117.33,95.4528 +390762,116.67,93.882 +390763,115.99,92.3444 +390764,115.31,90.83832 +390765,115.93,95.4828 +390766,115.3,93.8844 +390767,114.66,92.3203 +390768,114.01,90.78853 +390769,114.54,95.5115 +390770,113.94,93.8864 +390771,113.33,92.2966 +390772,112.7,90.73988 +390773,113.14,95.539 +390774,112.57,93.888 +390775,111.99,92.2732 +390776,111.4,90.69241 +390777,111.74,95.5651 +390778,111.21,93.8891 +390779,110.66,92.2502 +390780,110.1,90.64613 +390781,110.34,95.59 +390782,109.84,93.8897 +390783,109.33,92.2276 +390784,108.8,90.60106 +390785,108.94,95.6135 +390786,108.48,93.8898 +390787,107.99,92.2053 +390788,107.49,90.5572 +390789,107.54,95.6356 +390790,107.11,93.8894 +390791,106.66,92.1834 +390792,106.19,90.51458 +390793,106.14,95.6564 +390794,105.74,93.8886 +390795,105.33,92.1619 +390796,104.89,90.47322 +390797,104.74,95.6758 +390798,104.38,93.8872 +390799,103.99,92.1408 +390800,103.59,90.43311 +390801,103.34,95.6938 +390802,103.01,93.8854 +390803,102.66,92.1201 +390804,102.29,90.39429 +390805,101.94,95.7103 +390806,101.64,93.883 +390807,101.33,92.0998 +390808,101,90.35675 +390809,100.54,95.7255 +390810,100.28,93.8802 +390811,99.996,92.0799 +390812,99.697,90.32051 +390813,99.14,95.7391 +390814,98.912,93.8768 +390815,98.664,92.0604 +390816,98.398,90.28559 +390817,97.738,95.7513 +390818,97.545,93.8729 +390819,97.332,92.0413 +390820,97.1,90.25199 +390821,96.337,95.7621 +390822,96.179,93.8685 +390823,96,92.0226 +390824,95.802,90.21972 +390825,94.935,95.7713 +390826,94.812,93.8635 +390827,94.668,92.0043 +390828,94.505,90.1888 +390829,93.533,95.7791 +390830,93.445,93.8581 +390831,93.336,91.9865 +390832,93.207,90.15922 +390833,92.131,95.7853 +390834,92.079,93.852 +390835,92.004,91.969 +390836,91.91,90.13101 +390837,90.728,95.79 +390838,90.712,93.8455 +390839,90.672,91.952 +390840,90.612,90.10415 +390841,89.326,95.7932 +390842,89.345,93.8384 +390843,89.341,91.9355 +390844,89.315,90.078674 +390845,87.924,95.7948 +390846,87.979,93.8308 +390847,88.009,91.9193 +390848,88.018,90.05457 +390849,86.522,95.7949 +390850,86.612,93.8226 +390851,86.678,91.9036 +390852,86.721,90.031849 +390853,85.119,95.7934 +390854,85.246,93.8139 +390855,85.346,91.8883 +390856,85.424,90.010514 +390857,83.717,95.7904 +390858,83.879,93.8047 +390859,84.015,91.8735 +390860,84.128,89.9905683 +390861,82.315,95.7858 +390862,82.513,93.7949 +390863,82.683,91.8591 +390864,82.831,89.972015 +390865,80.913,95.7797 +390866,81.146,93.7845 +390867,81.352,91.8451 +390868,81.534,89.954857 +390869,79.512,95.7719 +390870,79.78,93.7737 +390871,80.02,91.8316 +390872,80.237,89.939094 +390873,78.11,95.7626 +390874,78.413,93.7622 +390875,78.689,91.8185 +390876,78.939,89.924729 +390877,76.709,95.7518 +390878,77.047,93.7502 +390879,77.357,91.8058 +390880,77.642,89.91176 +390881,75.308,95.7393 +390882,75.681,93.7377 +390883,76.025,91.7936 +390884,76.345,89.900187 +390885,73.907,95.7253 +390886,74.315,93.7246 +390887,74.694,91.7819 +390888,75.047,89.89001 +390889,72.507,95.7097 +390890,72.949,93.711 +390891,73.362,91.7705 +390892,73.749,89.88122 +390893,71.106,95.6925 +390894,71.584,93.6968 +390895,72.03,91.7596 +390896,72.451,89.87383 +390897,69.707,95.6738 +390898,70.218,93.6821 +390899,70.698,91.7492 +390900,71.152,89.86782 +390901,68.307,95.6535 +390902,68.853,93.6668 +390903,69.366,91.7391 +390904,69.854,89.86319 +390905,66.908,95.6316 +390906,67.487,93.651 +390907,68.034,91.7295 +390908,68.555,89.85994 +390909,65.51,95.6081 +390910,66.122,93.6346 +390911,66.702,91.7204 +390912,67.255,89.85806 +390913,64.112,95.5832 +390914,64.757,93.6177 +390915,65.37,91.7116 +390916,65.956,89.85755 +390917,62.715,95.5566 +390918,63.392,93.6003 +390919,64.038,91.7033 +390920,64.655,89.85839 +390921,61.318,95.5286 +390922,62.028,93.5823 +390923,62.705,91.6955 +390924,63.355,89.86059 +390925,59.921,95.499 +390926,60.663,93.5638 +390927,61.372,91.688 +390928,62.054,89.86413 +390929,58.526,95.4679 +390930,59.299,93.5448 +390931,60.04,91.681 +390932,60.752,89.869 +390933,57.13,95.4352 +390934,57.935,93.5253 +390935,58.707,91.6743 +390936,59.45,89.8752 +390937,55.736,95.4011 +390938,56.572,93.5052 +390939,57.374,91.6681 +390940,58.148,89.88271 +390941,54.342,95.3655 +390942,55.208,93.4846 +390943,56.04,91.6623 +390944,56.844,89.89153 +390945,52.949,95.3284 +390946,53.845,93.4635 +390947,54.707,91.6569 +390948,55.541,89.901634 +390949,51.556,95.2899 +390950,52.482,93.4419 +390951,53.373,91.652 +390952,54.236,89.913019 +390953,50.165,95.2499 +390954,51.119,93.4198 +390955,52.04,91.6474 +390956,52.931,89.925672 +390957,48.774,95.2085 +390958,49.757,93.3972 +390959,50.706,91.6432 +390960,51.626,89.939577 +390961,47.384,95.1657 +390962,48.395,93.3741 +390963,49.371,91.6393 +390964,50.32,89.954722 +390965,45.994,95.1215 +390966,47.033,93.3505 +390967,48.037,91.6359 +390968,49.013,89.971091 +390969,44.606,95.0759 +390970,45.671,93.3264 +390971,46.702,91.6329 +390972,47.705,89.98867 +390973,43.218,95.0289 +390974,44.31,93.3019 +390975,45.367,91.6302 +390976,46.396,90.0074415 +390977,41.832,94.9806 +390978,42.949,93.2769 +390979,44.032,91.6279 +390980,45.087,90.02739 +390981,40.446,94.9309 +390982,41.588,93.2514 +390983,42.697,91.6259 +390984,43.777,90.048499 +390985,39.061,94.88 +390986,40.228,93.2254 +390987,41.361,91.6243 +390988,42.466,90.070749 +390989,37.677,94.8278 +390990,38.868,93.199 +390991,40.025,91.6231 +390992,41.155,90.094124 +390993,36.294,94.7743 +390994,37.508,93.1722 +390995,38.689,91.6222 +390996,39.842,90.1186 +390997,34.912,94.7196 +390998,36.149,93.1449 +390999,37.353,91.6216 +391000,38.529,90.14417 +391001,33.531,94.6636 +391002,34.79,93.1172 +391003,36.016,91.6214 +391004,37.214,90.1708 +391005,32.151,94.6065 +391006,33.431,93.0891 +391007,34.679,91.6215 +391008,35.899,90.19848 +391009,30.772,94.5482 +391010,32.073,93.0605 +391011,33.342,91.6219 +391012,34.583,90.22718 +391013,29.394,94.4887 +391014,30.715,93.0316 +391015,32.004,91.6226 +391016,33.266,90.25689 +391017,28.017,94.4282 +391018,29.357,93.0022 +391019,30.666,91.6236 +391020,31.948,90.28758 +391021,26.641,94.3665 +391022,28,92.9725 +391023,29.328,91.6249 +391024,30.629,90.31923 +391025,25.267,94.3038 +391026,26.643,92.9423 +391027,27.989,91.6265 +391028,29.309,90.35181 +391029,23.893,94.24 +391030,25.287,92.9118 +391031,26.651,91.6283 +391032,27.988,90.38531 +391033,22.521,94.1752 +391034,23.931,92.881 +391035,25.311,91.6305 +391036,26.666,90.41969 +391037,21.15,94.1094 +391038,22.575,92.8497 +391039,23.972,91.6328 +391040,25.343,90.45495 +391041,19.78,94.0427 +391042,21.22,92.8182 +391043,22.632,91.6355 +391044,24.019,90.49104 +391045,18.411,93.9751 +391046,19.865,92.7862 +391047,21.292,91.6384 +391048,22.693,90.52795 +391049,17.043,93.9065 +391050,18.511,92.754 +391051,19.951,91.6415 +391052,21.367,90.56564 +391053,15.676,93.8371 +391054,17.157,92.7214 +391055,18.61,91.6449 +391056,20.04,90.60411 +391057,14.311,93.7668 +391058,15.803,92.6886 +391059,17.269,91.6484 +391060,18.711,90.64331 +391061,12.947,93.6957 +391062,14.45,92.6554 +391063,15.928,91.6522 +391064,17.382,90.68322 +391065,11.584,93.6239 +391066,13.097,92.6219 +391067,14.586,91.6562 +391068,16.051,90.72381 +391069,10.222,93.5513 +391070,11.745,92.5882 +391071,13.243,91.6603 +391072,14.719,90.76507 +391073,8.8616,93.4779 +391074,10.393,92.5542 +391075,11.901,91.6647 +391076,13.386,90.80695 +391077,7.5023,93.4039 +391078,9.0419,92.5199 +391079,10.558,91.6692 +391080,12.052,90.84943 +391081,6.1443,93.3293 +391082,7.691,92.4854 +391083,9.2145,91.6739 +391084,10.716,90.89249 +391085,4.7876,93.254 +391086,6.3404,92.4506 +391087,7.8707,91.6787 +391088,9.3795,90.93609 +391089,3.4321,93.1781 +391090,4.9903,92.4156 +391091,6.5266,91.6837 +391092,8.0418,90.9802 +391093,2.0779,93.1017 +391094,3.6407,92.3804 +391095,5.1821,91.6887 +391096,6.7028,91.0248 +391097,0.72491,93.0248 +391098,2.2915,92.345 +391099,3.8372,91.694 +391100,5.3626,91.0699 +391101,359.37,92.9473 +391102,0.94274,92.3094 +391103,2.4919,91.6993 +391104,4.0212,91.1153 +391105,358.02,92.8695 +391106,359.59,92.2736 +391107,1.1463,91.7047 +391108,2.6787,91.1612 +391109,356.67,92.7912 +391110,358.25,92.2376 +391111,359.8,91.7102 +391112,1.3349,91.2075 +391113,355.33,92.7125 +391114,356.9,92.2015 +391115,358.45,91.7158 +391116,359.99,91.2541 +391117,353.98,92.6334 +391118,355.55,92.1652 +391119,357.11,91.7215 +391120,358.64,91.3009 +391121,352.63,92.554 +391122,354.21,92.1287 +391123,355.76,91.7272 +391124,357.3,91.3481 +391125,351.29,92.4744 +391126,352.86,92.0922 +391127,354.41,91.733 +391128,355.95,91.3955 +391129,349.95,92.3945 +391130,351.51,92.0555 +391131,353.06,91.7388 +391132,354.6,91.4431 +391133,348.61,92.3144 +391134,350.17,92.0187 +391135,351.72,91.7446 +391136,353.25,91.491 +391137,347.27,92.234 +391138,348.82,91.9818 +391139,350.37,91.7505 +391140,351.89,91.5389 +391141,345.93,92.1536 +391142,347.48,91.9448 +391143,349.02,91.7563 +391144,350.54,91.587 +391145,344.59,92.073 +391146,346.14,91.9078 +391147,347.67,91.7622 +391148,349.19,91.6351 +391149,343.25,91.9924 +391150,344.79,91.8707 +391151,346.32,91.768 +391152,347.83,91.6834 +391153,341.92,91.9116 +391154,343.45,91.8335 +391155,344.97,91.7738 +391156,346.47,91.7316 +391157,340.58,91.8309 +391158,342.11,91.7963 +391159,343.62,91.7796 +391160,345.11,91.7798 +391161,339.25,91.7502 +391162,340.77,91.759 +391163,342.27,91.7853 +391164,343.75,91.828 +391165,337.92,91.6696 +391166,339.42,91.7218 +391167,340.92,91.791 +391168,342.39,91.8762 +391169,336.59,91.589 +391170,338.08,91.6845 +391171,339.56,91.7966 +391172,341.03,91.9242 +391173,335.26,91.5086 +391174,336.74,91.6473 +391175,338.21,91.8021 +391176,339.67,91.9721 +391177,333.93,91.4283 +391178,335.4,91.61 +391179,336.86,91.8075 +391180,338.3,92.0198 +391181,332.6,91.3482 +391182,334.06,91.5728 +391183,335.51,91.8128 +391184,336.94,92.0673 +391185,331.28,91.2683 +391186,332.72,91.5356 +391187,334.15,91.818 +391188,335.57,92.1146 +391189,329.96,91.1887 +391190,331.38,91.4984 +391191,332.8,91.8231 +391192,334.2,92.1617 +391193,328.63,91.1093 +391194,330.04,91.4614 +391195,331.45,91.8281 +391196,332.83,92.2084 +391197,327.31,91.0303 +391198,328.71,91.4243 +391199,330.09,91.8329 +391200,331.46,92.2548 +391201,325.99,90.95161 +391202,327.37,91.3874 +391203,328.74,91.8375 +391204,330.09,92.3009 +391205,324.67,90.87332 +391206,326.03,91.3506 +391207,327.38,91.842 +391208,328.72,92.3465 +391209,323.35,90.79543 +391210,324.69,91.3138 +391211,326.03,91.8463 +391212,327.35,92.3918 +391213,322.03,90.71799 +391214,323.36,91.2772 +391215,324.67,91.8504 +391216,325.97,92.4366 +391217,320.72,90.64103 +391218,322.02,91.2407 +391219,323.32,91.8544 +391220,324.6,92.4809 +391221,319.4,90.56456 +391222,320.69,91.2043 +391223,321.96,91.8581 +391224,323.22,92.5248 +391225,318.09,90.48864 +391226,319.35,91.1681 +391227,320.6,91.8616 +391228,321.84,92.568 +391229,316.77,90.41328 +391230,318.02,91.132 +391231,319.25,91.8649 +391232,320.46,92.6108 +391233,315.46,90.33851 +391234,316.68,91.0961 +391235,317.89,91.8679 +391236,319.08,92.6529 +391237,314.15,90.26437 +391238,315.35,91.0603 +391239,316.53,91.8707 +391240,317.7,92.6944 +391241,312.84,90.19088 +391242,314.01,91.0248 +391243,315.17,91.8732 +391244,316.32,92.7352 +391245,311.53,90.11807 +391246,312.68,90.98941 +391247,313.82,91.8755 +391248,314.94,92.7753 +391249,310.22,90.045973 +391250,311.35,90.95424 +391251,312.46,91.8775 +391252,313.55,92.8147 +391253,308.92,89.97461 +391254,310.01,90.91929 +391255,311.1,91.8792 +391256,312.17,92.8534 +391257,307.61,89.90401 +391258,308.68,90.88455 +391259,309.74,91.8806 +391260,310.78,92.8913 +391261,306.3,89.8342 +391262,307.35,90.85005 +391263,308.38,91.8818 +391264,309.4,92.9284 +391265,305,89.76521 +391266,306.02,90.81578 +391267,307.02,91.8826 +391268,308.01,92.9647 +391269,303.7,89.69705 +391270,304.68,90.78176 +391271,305.66,91.883 +391272,306.62,93.0001 +391273,302.39,89.62977 +391274,303.35,90.748 +391275,304.3,91.8832 +391276,305.23,93.0346 +391277,301.09,89.56337 +391278,302.02,90.7145 +391279,302.94,91.883 +391280,303.84,93.0682 +391281,299.79,89.49789 +391282,300.69,90.68128 +391283,301.58,91.8825 +391284,302.45,93.1009 +391285,298.49,89.43335 +391286,299.36,90.64834 +391287,300.22,91.8816 +391288,301.06,93.1326 +391289,297.19,89.36977 +391290,298.03,90.61568 +391291,298.86,91.8804 +391292,299.67,93.1634 +391293,295.89,89.30718 +391294,296.7,90.58333 +391295,297.5,91.8788 +391296,298.28,93.1931 +391297,294.59,89.24559 +391298,295.37,90.55128 +391299,296.14,91.8768 +391300,296.88,93.2218 +391301,293.29,89.18503 +391302,294.04,90.51954 +391303,294.78,91.8744 +391304,295.49,93.2494 +391305,292,89.12552 +391306,292.71,90.48812 +391307,293.41,91.8717 +391308,294.1,93.276 +391309,290.7,89.06708 +391310,291.39,90.45703 +391311,292.05,91.8685 +391312,292.7,93.3015 +391313,289.41,89.00972 +391314,290.06,90.42627 +391315,290.69,91.8649 +391316,291.31,93.3258 +391317,288.11,88.9535 +391318,288.73,90.39585 +391319,289.33,91.8609 +391320,289.91,93.349 +391321,286.82,88.8984 +391322,287.4,90.36578 +391323,287.97,91.8565 +391324,288.51,93.371 +391325,285.52,88.8444 +391326,286.07,90.33606 +391327,286.6,91.8517 +391328,287.11,93.3918 +391329,284.23,88.7916 +391330,284.74,90.3067 +391331,285.24,91.8464 +391332,285.72,93.4114 +391333,282.93,88.7399 +391334,283.42,90.27771 +391335,283.88,91.8407 +391336,284.32,93.4298 +391337,281.64,88.6895 +391338,282.09,90.24909 +391339,282.52,91.8346 +391340,282.92,93.4469 +391341,280.35,88.6402 +391342,280.76,90.22084 +391343,281.15,91.828 +391344,281.52,93.4628 +391345,279.06,88.5922 +391346,279.44,90.19298 +391347,279.79,91.821 +391348,280.12,93.4774 +391349,277.77,88.5454 +391350,278.11,90.1655 +391351,278.43,91.8135 +391352,278.72,93.4907 +391353,276.47,88.4999 +391354,276.78,90.13842 +391355,277.06,91.8055 +391356,277.32,93.5026 +391357,275.18,88.4557 +391358,275.45,90.11173 +391359,275.7,91.797 +391360,275.92,93.5133 +391361,273.89,88.4127 +391362,274.13,90.085439 +391363,274.34,91.7881 +391364,274.52,93.5226 +391365,272.6,88.371 +391366,272.8,90.059555 +391367,272.98,91.7787 +391368,273.12,93.5305 +391369,271.31,88.3306 +391370,271.48,90.034079 +391371,271.61,91.7688 +391372,271.72,93.5371 +391373,270.02,88.2915 +391374,270.15,90.0090158 +391375,270.25,91.7585 +391376,270.32,93.5422 +391377,268.73,88.2537 +391378,268.82,89.984368 +391379,268.89,91.7476 +391380,268.92,93.546 +391381,267.44,88.2172 +391382,267.5,89.960139 +391383,267.52,91.7363 +391384,267.52,93.5484 +391385,266.15,88.1821 +391386,266.17,89.936332 +391387,266.16,91.7244 +391388,266.12,93.5493 +391389,264.87,88.1483 +391390,264.85,89.91295 +391391,264.8,91.7121 +391392,264.72,93.5488 +391393,263.58,88.1159 +391394,263.52,89.88999 +391395,263.43,91.6992 +391396,263.31,93.5469 +391397,262.29,88.0848 +391398,262.19,89.86747 +391399,262.07,91.6859 +391400,261.91,93.5435 +391401,261,88.0551 +391402,260.87,89.84537 +391403,260.71,91.672 +391404,260.51,93.5386 +391405,259.71,88.0267 +391406,259.54,89.82371 +391407,259.34,91.6577 +391408,259.11,93.5323 +391409,258.42,87.9997 +391410,258.22,89.80249 +391411,257.98,91.6428 +391412,257.71,93.5245 +391413,257.13,87.9741 +391414,256.89,89.7817 +391415,256.62,91.6274 +391416,256.31,93.5153 +391417,255.84,87.9498 +391418,255.56,89.76134 +391419,255.26,91.6115 +391420,254.91,93.5045 +391421,254.55,87.9269 +391422,254.24,89.74143 +391423,253.89,91.5951 +391424,253.51,93.4923 +391425,253.26,87.9054 +391426,252.91,89.72195 +391427,252.53,91.5782 +391428,252.11,93.4786 +391429,251.97,87.8853 +391430,251.59,89.70292 +391431,251.17,91.5607 +391432,250.71,93.4634 +391433,250.68,87.8665 +391434,250.26,89.68432 +391435,249.81,91.5428 +391436,249.31,93.4467 +391437,249.39,87.8491 +391438,248.94,89.66616 +391439,248.44,91.5243 +391440,247.91,93.4285 +391441,248.1,87.8331 +391442,247.61,89.64844 +391443,247.08,91.5053 +391444,246.51,93.4088 +391445,246.81,87.8184 +391446,246.28,89.63116 +391447,245.72,91.4858 +391448,245.12,93.3877 +391449,245.52,87.8051 +391450,244.96,89.61431 +391451,244.36,91.4658 +391452,243.72,93.365 +391453,244.23,87.7932 +391454,243.63,89.5979 +391455,243,91.4453 +391456,242.32,93.3408 +391457,242.93,87.7826 +391458,242.3,89.58193 +391459,241.64,91.4243 +391460,240.92,93.3152 +391461,241.64,87.7734 +391462,240.98,89.56639 +391463,240.28,91.4028 +391464,239.53,93.2881 +391465,240.35,87.7655 +391466,239.65,89.55128 +391467,238.91,91.3807 +391468,238.13,93.2595 +391469,239.06,87.7589 +391470,238.32,89.5366 +391471,237.55,91.3582 +391472,236.74,93.2294 +391473,237.76,87.7537 +391474,237,89.52235 +391475,236.19,91.3351 +391476,235.34,93.1979 +391477,236.47,87.7498 +391478,235.67,89.50852 +391479,234.83,91.3116 +391480,233.95,93.1649 +391481,235.17,87.7472 +391482,234.34,89.49511 +391483,233.47,91.2875 +391484,232.56,93.1304 +391485,233.88,87.746 +391486,233.01,89.48213 +391487,232.11,91.263 +391488,231.17,93.0945 +391489,232.58,87.746 +391490,231.69,89.46956 +391491,230.75,91.238 +391492,229.77,93.0572 +391493,231.28,87.7473 +391494,230.36,89.4574 +391495,229.4,91.2125 +391496,228.38,93.0185 +391497,229.99,87.7498 +391498,229.03,89.44565 +391499,228.04,91.1865 +391500,226.99,92.9783 +391501,228.69,87.7537 +391502,227.7,89.4343 +391503,226.68,91.16 +391504,225.6,92.9368 +391505,227.39,87.7588 +391506,226.37,89.42336 +391507,225.32,91.133 +391508,224.22,92.8939 +391509,226.09,87.7651 +391510,225.05,89.41281 +391511,223.96,91.1056 +391512,222.83,92.8496 +391513,224.79,87.7726 +391514,223.72,89.40266 +391515,222.6,91.0777 +391516,221.44,92.8039 +391517,223.49,87.7814 +391518,222.39,89.39289 +391519,221.25,91.0494 +391520,220.06,92.7569 +391521,222.19,87.7913 +391522,221.06,89.3835 +391523,219.89,91.0206 +391524,218.67,92.7086 +391525,220.88,87.8024 +391526,219.73,89.3745 +391527,218.53,90.99136 +391528,217.29,92.6589 +391529,219.58,87.8147 +391530,218.4,89.36586 +391531,217.18,90.96167 +391532,215.91,92.608 +391533,218.28,87.8281 +391534,217.07,89.35759 +391535,215.82,90.93154 +391536,214.52,92.5558 +391537,216.97,87.8426 +391538,215.74,89.34969 +391539,214.47,90.90098 +391540,213.14,92.5023 +391541,215.67,87.8583 +391542,214.41,89.34213 +391543,213.11,90.87 +391544,211.76,92.4476 +391545,214.36,87.875 +391546,213.08,89.33493 +391547,211.76,90.8386 +391548,210.39,92.3916 +391549,213.05,87.8928 +391550,211.75,89.32807 +391551,210.4,90.80678 +391552,209.01,92.3345 +391553,211.74,87.9117 +391554,210.41,89.32154 +391555,209.05,90.77456 +391556,207.63,92.2762 +391557,210.43,87.9316 +391558,209.08,89.31535 +391559,207.69,90.74194 +391560,206.26,92.2167 +391561,209.12,87.9525 +391562,207.75,89.30948 +391563,206.34,90.70893 +391564,204.88,92.1561 +391565,207.81,87.9744 +391566,206.42,89.30392 +391567,204.99,90.67554 +391568,203.51,92.0944 +391569,206.5,87.9972 +391570,205.09,89.29867 +391571,203.63,90.64177 +391572,202.14,92.0316 +391573,205.18,88.0211 +391574,203.75,89.29372 +391575,202.28,90.60763 +391576,200.77,91.9677 +391577,203.87,88.0458 +391578,202.42,89.28907 +391579,200.93,90.57314 +391580,199.4,91.9028 +391581,202.55,88.0714 +391582,201.08,89.2847 +391583,199.58,90.53829 +391584,198.03,91.8369 +391585,201.23,88.098 +391586,199.75,89.28061 +391587,198.23,90.50309 +391588,196.66,91.77 +391589,199.91,88.1253 +391590,198.42,89.27679 +391591,196.88,90.46756 +391592,195.3,91.7021 +391593,198.6,88.1535 +391594,197.08,89.27323 +391595,195.53,90.43171 +391596,193.93,91.6333 +391597,197.27,88.1826 +391598,195.75,89.26993 +391599,194.18,90.39553 +391600,192.57,91.5636 +391601,195.95,88.2123 +391602,194.41,89.26687 +391603,192.83,90.35905 +391604,191.21,91.493 +391605,194.63,88.2429 +391606,193.07,89.26405 +391607,191.48,90.32227 +391608,189.85,91.4216 +391609,193.31,88.2742 +391610,191.74,89.26145 +391611,190.13,90.28519 +391612,188.49,91.3493 +391613,191.98,88.3062 +391614,190.4,89.25908 +391615,188.79,90.24784 +391616,187.13,91.2762 +391617,190.65,88.3388 +391618,189.06,89.25692 +391619,187.44,90.21021 +391620,185.77,91.2024 +391621,189.33,88.3722 +391622,187.73,89.25495 +391623,186.09,90.17232 +391624,184.42,91.1278 +391625,188,88.4061 +391626,186.39,89.25318 +391627,184.75,90.13418 +391628,183.06,91.0525 +391629,186.67,88.4407 +391630,185.05,89.2516 +391631,183.4,90.095791 +391632,181.71,90.97652 +391633,185.34,88.4758 +391634,183.71,89.25018 +391635,182.05,90.057172 +391636,180.36,90.8999 +391637,184,88.5114 +391638,182.37,89.24894 +391639,180.71,90.018331 +391640,179.01,90.82267 +391641,182.67,88.5476 +391642,181.03,89.24784 +391643,179.37,89.979276 +391644,177.66,90.74486 +391645,181.33,88.5843 +391646,179.69,89.24689 +391647,178.02,89.940018 +391648,176.31,90.66649 +391649,180,88.6214 +391650,178.35,89.24608 +391651,176.68,89.900568 +391652,174.97,90.5876 +391653,178.66,88.659 +391654,177.01,89.24539 +391655,175.34,89.86094 +391656,173.62,90.50823 +391657,177.32,88.6969 +391658,175.67,89.24482 +391659,173.99,89.82113 +391660,172.28,90.42839 +391661,175.98,88.7352 +391662,174.33,89.24435 +391663,172.65,89.78117 +391664,170.94,90.34813 +391665,174.64,88.7739 +391666,172.99,89.24398 +391667,171.31,89.74105 +391668,169.6,90.26747 +391669,173.3,88.8129 +391670,171.65,89.24369 +391671,169.97,89.7008 +391672,168.26,90.18646 +391673,171.95,88.8522 +391674,170.3,89.24348 +391675,168.63,89.66041 +391676,166.92,90.10512 +391677,170.61,88.8917 +391678,168.96,89.24334 +391679,167.29,89.61991 +391680,165.58,90.023481 +391681,169.26,88.9314 +391682,167.62,89.24325 +391683,165.95,89.5793 +391684,164.25,89.941583 +391685,167.91,88.9714 +391686,166.27,89.24321 +391687,164.61,89.53859 +391688,162.92,89.85946 +391689,166.56,89.01145 +391690,164.93,89.2432 +391691,163.27,89.49779 +391692,161.58,89.77713 +391693,165.21,89.05168 +391694,163.59,89.24321 +391695,161.93,89.45692 +391696,160.25,89.69465 +391697,163.86,89.09202 +391698,162.24,89.24324 +391699,160.59,89.41599 +391700,158.92,89.61204 +391701,162.51,89.13242 +391702,160.9,89.24328 +391703,159.26,89.375 +391704,157.59,89.52933 +391705,161.15,89.17287 +391706,159.55,89.2433 +391707,157.92,89.33396 +391708,156.27,89.44655 +391709,159.8,89.21333 +391710,158.2,89.24331 +391711,156.58,89.2929 +391712,154.94,89.36375 +391713,158.44,89.25377 +391714,156.86,89.2433 +391715,155.25,89.25182 +391716,153.62,89.28095 +391717,157.08,89.29416 +391718,155.51,89.24324 +391719,153.91,89.21072 +391720,152.29,89.19819 +391721,155.72,89.33448 +391722,154.16,89.24314 +391723,152.58,89.16962 +391724,150.97,89.11549 +391725,154.36,89.37468 +391726,152.82,89.24298 +391727,151.24,89.12854 +391728,149.65,89.0329 +391729,153,89.41474 +391730,151.47,89.24275 +391731,149.91,89.08748 +391732,148.33,88.9504 +391733,151.64,89.45463 +391734,150.12,89.24244 +391735,148.58,89.04645 +391736,147.01,88.8682 +391737,150.27,89.49432 +391738,148.77,89.24205 +391739,147.24,89.00546 +391740,145.7,88.7861 +391741,148.91,89.53378 +391742,147.42,89.24155 +391743,145.91,88.9645 +391744,144.38,88.7042 +391745,147.54,89.57297 +391746,146.07,89.24094 +391747,144.58,88.9237 +391748,143.07,88.6226 +391749,146.17,89.61188 +391750,144.72,89.24022 +391751,143.25,88.8829 +391752,141.75,88.5413 +391753,144.81,89.65046 +391754,143.37,89.23937 +391755,141.92,88.8422 +391756,140.44,88.4603 +391757,143.44,89.68869 +391758,142.02,89.23837 +391759,140.59,88.8016 +391760,139.13,88.3797 +391761,142.06,89.72655 +391762,140.67,89.23723 +391763,139.26,88.7611 +391764,137.82,88.2995 +391765,140.69,89.76399 +391766,139.32,89.23592 +391767,137.93,88.7207 +391768,136.51,88.2197 +391769,139.32,89.80099 +391770,137.97,89.23445 +391771,136.6,88.6804 +391772,135.21,88.1403 +391773,137.94,89.83753 +391774,136.61,89.2328 +391775,135.27,88.6403 +391776,133.9,88.0614 +391777,136.57,89.87357 +391778,135.26,89.23096 +391779,133.94,88.6003 +391780,132.6,87.9831 +391781,135.19,89.909083 +391782,133.91,89.22892 +391783,132.61,88.5605 +391784,131.29,87.9052 +391785,133.81,89.944044 +391786,132.56,89.22668 +391787,131.28,88.5208 +391788,129.99,87.828 +391789,132.44,89.978423 +391790,131.2,89.22421 +391791,129.95,88.4814 +391792,128.69,87.7513 +391793,131.06,90.012192 +391794,129.85,89.22153 +391795,128.63,88.4421 +391796,127.39,87.6753 +391797,129.67,90.045324 +391798,128.5,89.2186 +391799,127.3,88.403 +391800,126.09,87.5999 +391801,128.29,90.077793 +391802,127.14,89.21543 +391803,125.97,88.3641 +391804,124.79,87.5252 +391805,126.91,90.10957 +391806,125.79,89.21201 +391807,124.65,88.3254 +391808,123.49,87.4512 +391809,125.53,90.14063 +391810,124.43,89.20832 +391811,123.32,88.287 +391812,122.19,87.378 +391813,124.14,90.17094 +391814,123.08,89.20437 +391815,122,88.2487 +391816,120.9,87.3055 +391817,122.76,90.20049 +391818,121.72,89.20013 +391819,120.67,88.2108 +391820,119.6,87.2338 +391821,121.37,90.22924 +391822,120.37,89.19561 +391823,119.35,88.173 +391824,118.31,87.1629 +391825,119.98,90.25717 +391826,119.01,89.19078 +391827,118.02,88.1356 +391828,117.01,87.0928 +391829,118.6,90.28425 +391830,117.66,89.18566 +391831,116.7,88.0983 +391832,115.72,87.0236 +391833,117.21,90.31046 +391834,116.3,89.18022 +391835,115.37,88.0614 +391836,114.43,86.9553 +391837,115.82,90.33578 +391838,114.94,89.17446 +391839,114.05,88.0248 +391840,113.14,86.8879 +391841,114.43,90.36018 +391842,113.59,89.16838 +391843,112.73,87.9884 +391844,111.85,86.8215 +391845,113.04,90.38364 +391846,112.23,89.16195 +391847,111.4,87.9523 +391848,110.56,86.756 +391849,111.64,90.40614 +391850,110.87,89.15519 +391851,110.08,87.9166 +391852,109.27,86.6914 +391853,110.25,90.42765 +391854,109.52,89.14807 +391855,108.76,87.8811 +391856,107.98,86.6279 +391857,108.86,90.44815 +391858,108.16,89.1406 +391859,107.44,87.846 +391860,106.7,86.5654 +391861,107.47,90.46762 +391862,106.8,89.13276 +391863,106.12,87.8112 +391864,105.41,86.5039 +391865,106.07,90.48605 +391866,105.44,89.12455 +391867,104.79,87.7767 +391868,104.12,86.4435 +391869,104.68,90.5034 +391870,104.09,89.11596 +391871,103.47,87.7426 +391872,102.84,86.3842 +391873,103.28,90.51966 +391874,102.73,89.10699 +391875,102.15,87.7088 +391876,101.55,86.326 +391877,101.89,90.53482 +391878,101.37,89.09763 +391879,100.83,87.6754 +391880,100.27,86.2688 +391881,100.49,90.54884 +391882,100.01,89.08788 +391883,99.509,87.6423 +391884,98.983,86.2129 +391885,99.093,90.56172 +391886,98.653,89.07772 +391887,98.188,87.6096 +391888,97.7,86.158 +391889,97.696,90.57343 +391890,97.294,89.06715 +391891,96.868,87.5773 +391892,96.417,86.1043 +391893,96.298,90.58397 +391894,95.936,89.05617 +391895,95.548,87.5454 +391896,95.134,86.0518 +391897,94.9,90.5933 +391898,94.577,89.04478 +391899,94.227,87.5138 +391900,93.852,86.0005 +391901,93.502,90.60143 +391902,93.219,89.03296 +391903,92.907,87.4826 +391904,92.57,85.9504 +391905,92.104,90.60832 +391906,91.86,89.02071 +391907,91.588,87.4518 +391908,91.289,85.9015 +391909,90.705,90.61397 +391910,90.501,89.00803 +391911,90.268,87.4214 +391912,90.008,85.8539 +391913,89.307,90.61836 +391914,89.142,88.9949 +391915,88.948,87.3914 +391916,88.727,85.8075 +391917,87.908,90.62148 +391918,87.783,88.9814 +391919,87.629,87.3618 +391920,87.446,85.7623 +391921,86.508,90.62332 +391922,86.424,88.9674 +391923,86.309,87.3326 +391924,86.166,85.7185 +391925,85.109,90.62386 +391926,85.066,88.9529 +391927,84.99,87.3038 +391928,84.885,85.6759 +391929,83.71,90.62309 +391930,83.707,88.938 +391931,83.671,87.2754 +391932,83.605,85.6345 +391933,82.31,90.62101 +391934,82.348,88.9227 +391935,82.352,87.2474 +391936,82.325,85.5945 +391937,80.911,90.61759 +391938,80.989,88.9068 +391939,81.033,87.2199 +391940,81.045,85.5558 +391941,79.511,90.61284 +391942,79.63,88.8906 +391943,79.714,87.1928 +391944,79.765,85.5184 +391945,78.112,90.60674 +391946,78.271,88.8738 +391947,78.395,87.1661 +391948,78.485,85.4823 +391949,76.712,90.59928 +391950,76.913,88.8566 +391951,77.076,87.1398 +391952,77.206,85.4475 +391953,75.313,90.59046 +391954,75.554,88.839 +391955,75.757,87.114 +391956,75.926,85.4141 +391957,73.914,90.58027 +391958,74.195,88.8208 +391959,74.438,87.0886 +391960,74.646,85.382 +391961,72.515,90.5687 +391962,72.837,88.8022 +391963,73.119,87.0636 +391964,73.366,85.3512 +391965,71.116,90.55576 +391966,71.478,88.7831 +391967,71.8,87.0391 +391968,72.086,85.3217 +391969,69.718,90.54142 +391970,70.12,88.7636 +391971,70.481,87.015 +391972,70.806,85.2936 +391973,68.319,90.5257 +391974,68.762,88.7435 +391975,69.162,86.9914 +391976,69.525,85.2669 +391977,66.921,90.50859 +391978,67.404,88.723 +391979,67.843,86.9681 +391980,68.245,85.2415 +391981,65.524,90.49007 +391982,66.046,88.7021 +391983,66.524,86.9453 +391984,66.964,85.2174 +391985,64.127,90.47016 +391986,64.688,88.6806 +391987,65.205,86.923 +391988,65.683,85.1947 +391989,62.73,90.44886 +391990,63.33,88.6587 +391991,63.886,86.9011 +391992,64.401,85.1733 +391993,61.333,90.42615 +391994,61.973,88.6363 +391995,62.566,86.8796 +391996,63.12,85.1532 +391997,59.937,90.40204 +391998,60.616,88.6134 +391999,61.247,86.8586 +392000,61.838,85.1345 +392001,58.542,90.37654 +392002,59.258,88.59 +392003,59.927,86.838 +392004,60.555,85.1171 +392005,57.147,90.34964 +392006,57.902,88.5662 +392007,58.608,86.8178 +392008,59.272,85.1011 +392009,55.752,90.32135 +392010,56.545,88.5419 +392011,57.288,86.798 +392012,57.989,85.0863 +392013,54.359,90.29167 +392014,55.188,88.5171 +392015,55.968,86.7787 +392016,56.705,85.0729 +392017,52.965,90.26061 +392018,53.832,88.4919 +392019,54.648,86.7599 +392020,55.421,85.0608 +392021,51.573,90.22816 +392022,52.476,88.4662 +392023,53.328,86.7414 +392024,54.136,85.0501 +392025,50.181,90.19434 +392026,51.12,88.44 +392027,52.008,86.7234 +392028,52.851,85.0406 +392029,48.79,90.15915 +392030,49.765,88.4134 +392031,50.687,86.7058 +392032,51.565,85.0324 +392033,47.399,90.1226 +392034,48.41,88.3863 +392035,49.367,86.6886 +392036,50.278,85.0255 +392037,46.009,90.084694 +392038,47.055,88.3587 +392039,48.046,86.6718 +392040,48.991,85.0198 +392041,44.621,90.045445 +392042,45.7,88.3307 +392043,46.725,86.6555 +392044,47.704,85.0155 +392045,43.232,90.0048592 +392046,44.346,88.3023 +392047,45.404,86.6396 +392048,46.415,85.0123 +392049,41.845,89.962948 +392050,42.991,88.2734 +392051,44.082,86.624 +392052,45.126,85.0105 +392053,40.459,89.919721 +392054,41.638,88.2441 +392055,42.761,86.6089 +392056,43.836,85.0098 +392057,39.073,89.87519 +392058,40.284,88.2143 +392059,41.439,86.5942 +392060,42.545,85.0104 +392061,37.689,89.82937 +392062,38.931,88.1841 +392063,40.116,86.5798 +392064,41.254,85.0122 +392065,36.305,89.78227 +392066,37.578,88.1534 +392067,38.794,86.5659 +392068,39.962,85.0151 +392069,34.923,89.7339 +392070,36.226,88.1224 +392071,37.471,86.5524 +392072,38.669,85.0193 +392073,33.541,89.68428 +392074,34.874,88.0909 +392075,36.149,86.5392 +392076,37.375,85.0246 +392077,32.161,89.63343 +392078,33.522,88.059 +392079,34.825,86.5264 +392080,36.08,85.031 +392081,30.781,89.58135 +392082,32.171,88.0267 +392083,33.502,86.514 +392084,34.784,85.0386 +392085,29.403,89.52807 +392086,30.82,87.994 +392087,32.178,86.5019 +392088,33.487,85.0473 +392089,28.025,89.47361 +392090,29.469,87.9608 +392091,30.854,86.4902 +392092,32.19,85.0571 +392093,26.649,89.41797 +392094,28.119,87.9273 +392095,29.53,86.4789 +392096,30.891,85.068 +392097,25.274,89.36118 +392098,26.769,87.8934 +392099,28.205,86.4679 +392100,29.592,85.0799 +392101,23.9,89.30326 +392102,25.42,87.8592 +392103,26.88,86.4573 +392104,28.291,85.0929 +392105,22.527,89.24422 +392106,24.07,87.8245 +392107,25.555,86.447 +392108,26.989,85.1069 +392109,21.156,89.18409 +392110,22.722,87.7895 +392111,24.229,86.437 +392112,25.687,85.1219 +392113,19.785,89.12289 +392114,21.374,87.7541 +392115,22.903,86.4274 +392116,24.383,85.1379 +392117,18.416,89.06063 +392118,20.026,87.7184 +392119,21.577,86.418 +392120,23.078,85.1549 +392121,17.048,88.9973 +392122,18.679,87.6823 +392123,20.251,86.409 +392124,21.772,85.1728 +392125,15.682,88.9331 +392126,17.332,87.6459 +392127,18.924,86.4003 +392128,20.465,85.1916 +392129,14.317,88.8678 +392130,15.985,87.6092 +392131,17.596,86.3919 +392132,19.157,85.2113 +392133,12.953,88.8015 +392134,14.639,87.5721 +392135,16.268,86.3837 +392136,17.848,85.2319 +392137,11.59,88.7344 +392138,13.294,87.5347 +392139,14.94,86.3759 +392140,16.537,85.2533 +392141,10.229,88.6663 +392142,11.949,87.4971 +392143,13.612,86.3683 +392144,15.226,85.2756 +392145,8.8685,88.5973 +392146,10.604,87.4591 +392147,12.283,86.361 +392148,13.913,85.2987 +392149,7.5099,88.5274 +392150,9.2602,87.4208 +392151,10.954,86.3539 +392152,12.599,85.3226 +392153,6.1526,88.4568 +392154,7.9166,87.3822 +392155,9.6244,86.3471 +392156,11.283,85.3472 +392157,4.7967,88.3853 +392158,6.5735,87.3434 +392159,8.2944,86.3405 +392160,9.9669,85.3726 +392161,3.4422,88.313 +392162,5.2308,87.3043 +392163,6.9641,86.3342 +392164,8.6491,85.3987 +392165,2.0891,88.24 +392166,3.8886,87.265 +392167,5.6333,86.3281 +392168,7.3301,85.4254 +392169,0.7374,88.1662 +392170,2.5469,87.2254 +392171,4.3021,86.3222 +392172,6.0098,85.4528 +392173,359.39,88.0917 +392174,1.2057,87.1855 +392175,2.9706,86.3165 +392176,4.6881,85.4809 +392177,358.04,88.0166 +392178,359.87,87.1455 +392179,1.6386,86.311 +392180,3.3652,85.5095 +392181,356.69,87.9408 +392182,358.52,87.1052 +392183,0.30618,86.3057 +392184,2.041,85.5388 +392185,355.34,87.8644 +392186,357.19,87.0647 +392187,358.97,86.3006 +392188,0.71554,85.5685 +392189,354,87.7874 +392190,355.85,87.024 +392191,357.64,86.2956 +392192,359.39,85.5988 +392193,352.66,87.7099 +392194,354.51,86.9831 +392195,356.31,86.2908 +392196,358.06,85.6296 +392197,351.32,87.6318 +392198,353.17,86.9421 +392199,354.97,86.2862 +392200,356.73,85.6609 +392201,349.98,87.5532 +392202,351.83,86.9008 +392203,353.64,86.2817 +392204,355.4,85.6926 +392205,348.64,87.4742 +392206,350.49,86.8594 +392207,352.3,86.2773 +392208,354.07,85.7248 +392209,347.3,87.3947 +392210,349.16,86.8179 +392211,350.97,86.2731 +392212,352.73,85.7573 +392213,345.96,87.3149 +392214,347.82,86.7762 +392215,349.63,86.269 +392216,351.4,85.7902 +392217,344.63,87.2346 +392218,346.49,86.7344 +392219,348.3,86.2649 +392220,350.06,85.8234 +392221,343.3,87.154 +392222,345.15,86.6925 +392223,346.96,86.261 +392224,348.73,85.8569 +392225,341.96,87.0731 +392226,343.82,86.6504 +392227,345.62,86.2572 +392228,347.39,85.8907 +392229,340.63,86.9919 +392230,342.48,86.6083 +392231,344.28,86.2534 +392232,346.05,85.9247 +392233,339.31,86.9105 +392234,341.15,86.566 +392235,342.95,86.2497 +392236,344.71,85.9589 +392237,337.98,86.8289 +392238,339.81,86.5237 +392239,341.61,86.2461 +392240,343.36,85.9933 +392241,336.65,86.747 +392242,338.48,86.4813 +392243,340.27,86.2425 +392244,342.02,86.0279 +392245,335.33,86.665 +392246,337.15,86.4389 +392247,338.93,86.2389 +392248,340.67,86.0626 +392249,334.01,86.5829 +392250,335.82,86.3964 +392251,337.59,86.2354 +392252,339.33,86.0974 +392253,332.68,86.5007 +392254,334.49,86.3539 +392255,336.25,86.2318 +392256,337.98,86.1323 +392257,331.36,86.4185 +392258,333.16,86.3113 +392259,334.91,86.2283 +392260,336.63,86.1672 +392261,330.05,86.3362 +392262,331.83,86.2687 +392263,333.57,86.2248 +392264,335.28,86.2021 +392265,328.73,86.2539 +392266,330.5,86.2261 +392267,332.23,86.2212 +392268,333.92,86.237 +392269,327.41,86.1717 +392270,329.17,86.1836 +392271,330.89,86.2177 +392272,332.57,86.2719 +392273,326.1,86.0895 +392274,327.84,86.141 +392275,329.55,86.2141 +392276,331.22,86.3066 +392277,324.78,86.0074 +392278,326.51,86.0985 +392279,328.2,86.2104 +392280,329.86,86.3413 +392281,323.47,85.9255 +392282,325.18,86.056 +392283,326.86,86.2068 +392284,328.5,86.3758 +392285,322.16,85.8437 +392286,323.86,86.0135 +392287,325.52,86.203 +392288,327.14,86.4102 +392289,320.85,85.7621 +392290,322.53,85.9711 +392291,324.17,86.1992 +392292,325.78,86.4443 +392293,319.55,85.6808 +392294,321.2,85.9288 +392295,322.83,86.1952 +392296,324.42,86.4783 +392297,318.24,85.5997 +392298,319.88,85.8865 +392299,321.48,86.1912 +392300,323.06,86.512 +392301,316.93,85.5189 +392302,318.55,85.8443 +392303,320.14,86.1871 +392304,321.7,86.5454 +392305,315.63,85.4384 +392306,317.23,85.8023 +392307,318.79,86.1829 +392308,320.33,86.5785 +392309,314.33,85.3583 +392310,315.9,85.7603 +392311,317.45,86.1786 +392312,318.96,86.6112 +392313,313.03,85.2785 +392314,314.58,85.7184 +392315,316.1,86.1741 +392316,317.6,86.6436 +392317,311.73,85.1992 +392318,313.26,85.6767 +392319,314.76,86.1695 +392320,316.23,86.6756 +392321,310.43,85.1203 +392322,311.93,85.6351 +392323,313.41,86.1647 +392324,314.86,86.7072 +392325,309.13,85.0419 +392326,310.61,85.5937 +392327,312.06,86.1598 +392328,313.49,86.7384 +392329,307.83,84.9639 +392330,309.29,85.5524 +392331,310.72,86.1547 +392332,312.11,86.769 +392333,306.54,84.8865 +392334,307.97,85.5112 +392335,309.37,86.1494 +392336,310.74,86.7992 +392337,305.24,84.8096 +392338,306.64,85.4703 +392339,308.02,86.1439 +392340,309.37,86.8288 +392341,303.95,84.7334 +392342,305.32,85.4295 +392343,306.67,86.1383 +392344,307.99,86.8579 +392345,302.66,84.6577 +392346,304,85.3889 +392347,305.32,86.1324 +392348,306.62,86.8864 +392349,301.37,84.5827 +392350,302.68,85.3486 +392351,303.97,86.1263 +392352,305.24,86.9142 +392353,300.08,84.5083 +392354,301.36,85.3084 +392355,302.62,86.12 +392356,303.86,86.9415 +392357,298.79,84.4347 +392358,300.04,85.2684 +392359,301.27,86.1135 +392360,302.48,86.9681 +392361,297.5,84.3617 +392362,298.72,85.2287 +392363,299.92,86.1067 +392364,301.1,86.994 +392365,296.21,84.2895 +392366,297.41,85.1892 +392367,298.57,86.0997 +392368,299.72,87.0191 +392369,294.93,84.2181 +392370,296.09,85.15 +392371,297.22,86.0924 +392372,298.34,87.0436 +392373,293.64,84.1475 +392374,294.77,85.111 +392375,295.87,86.0849 +392376,296.95,87.0673 +392377,292.36,84.0776 +392378,293.45,85.0723 +392379,294.52,86.0771 +392380,295.57,87.0902 +392381,291.07,84.0087 +392382,292.13,85.0338 +392383,293.17,86.069 +392384,294.18,87.1123 +392385,289.79,83.9406 +392386,290.82,84.9957 +392387,291.82,86.0606 +392388,292.8,87.1336 +392389,288.51,83.8733 +392390,289.5,84.9578 +392391,290.47,86.0519 +392392,291.41,87.154 +392393,287.23,83.807 +392394,288.18,84.9202 +392395,289.12,86.0429 +392396,290.02,87.1736 +392397,285.95,83.7416 +392398,286.87,84.8829 +392399,287.76,86.0336 +392400,288.63,87.1923 +392401,284.67,83.6772 +392402,285.55,84.8459 +392403,286.41,86.024 +392404,287.24,87.21 +392405,283.39,83.6138 +392406,284.24,84.8092 +392407,285.06,86.0141 +392408,285.85,87.2268 +392409,282.11,83.5513 +392410,282.92,84.7729 +392411,283.71,86.0038 +392412,284.46,87.2427 +392413,280.83,83.4899 +392414,281.61,84.7369 +392415,282.35,85.9932 +392416,283.07,87.2576 +392417,279.56,83.4295 +392418,280.29,84.7012 +392419,281,85.9823 +392420,281.68,87.2715 +392421,278.28,83.3701 +392422,278.98,84.6658 +392423,279.65,85.971 +392424,280.29,87.2843 +392425,277.01,83.3119 +392426,277.66,84.6308 +392427,278.29,85.9594 +392428,278.9,87.2962 +392429,275.73,83.2547 +392430,276.35,84.5962 +392431,276.94,85.9474 +392432,277.5,87.307 +392433,274.46,83.1986 +392434,275.03,84.5619 +392435,275.58,85.935 +392436,276.11,87.3167 +392437,273.18,83.1436 +392438,273.72,84.5279 +392439,274.23,85.9223 +392440,274.71,87.3253 +392441,271.91,83.0898 +392442,272.41,84.4944 +392443,272.88,85.9091 +392444,273.32,87.3329 +392445,270.64,83.0371 +392446,271.09,84.4612 +392447,271.52,85.8956 +392448,271.92,87.3393 +392449,269.36,82.9856 +392450,269.78,84.4284 +392451,270.17,85.8818 +392452,270.53,87.3446 +392453,268.09,82.9353 +392454,268.47,84.396 +392455,268.81,85.8675 +392456,269.13,87.3488 +392457,266.82,82.8861 +392458,267.15,84.364 +392459,267.46,85.8528 +392460,267.74,87.3518 +392461,265.55,82.8382 +392462,265.84,84.3323 +392463,266.11,85.8377 +392464,266.34,87.3536 +392465,264.28,82.7915 +392466,264.53,84.3011 +392467,264.75,85.8222 +392468,264.94,87.3542 +392469,263.01,82.746 +392470,263.22,84.2702 +392471,263.4,85.8063 +392472,263.55,87.3536 +392473,261.74,82.7018 +392474,261.9,84.2398 +392475,262.04,85.79 +392476,262.15,87.3519 +392477,260.46,82.6588 +392478,260.59,84.2098 +392479,260.69,85.7733 +392480,260.75,87.3489 +392481,259.19,82.617 +392482,259.28,84.1802 +392483,259.33,85.7562 +392484,259.35,87.3446 +392485,257.92,82.5765 +392486,257.97,84.151 +392487,257.98,85.7386 +392488,257.96,87.3392 +392489,256.65,82.5373 +392490,256.65,84.1222 +392491,256.62,85.7206 +392492,256.56,87.3324 +392493,255.38,82.4994 +392494,255.34,84.0938 +392495,255.27,85.7022 +392496,255.16,87.3245 +392497,254.11,82.4627 +392498,254.03,84.0659 +392499,253.91,85.6834 +392500,253.76,87.3152 +392501,252.84,82.4274 +392502,252.72,84.0383 +392503,252.56,85.6641 +392504,252.37,87.3047 +392505,251.57,82.3933 +392506,251.41,84.0113 +392507,251.21,85.6444 +392508,250.97,87.2929 +392509,250.3,82.3605 +392510,250.09,83.9846 +392511,249.85,85.6243 +392512,249.57,87.2798 +392513,249.03,82.3291 +392514,248.78,83.9583 +392515,248.5,85.6037 +392516,248.17,87.2654 +392517,247.76,82.2989 +392518,247.47,83.9325 +392519,247.14,85.5827 +392520,246.78,87.2497 +392521,246.49,82.2701 +392522,246.16,83.9072 +392523,245.79,85.5612 +392524,245.38,87.2328 +392525,245.22,82.2425 +392526,244.85,83.8822 +392527,244.43,85.5393 +392528,243.98,87.2145 +392529,243.95,82.2163 +392530,243.53,83.8577 +392531,243.08,85.517 +392532,242.59,87.1949 +392533,242.68,82.1914 +392534,242.22,83.8336 +392535,241.73,85.4942 +392536,241.19,87.174 +392537,241.41,82.1678 +392538,240.91,83.81 +392539,240.37,85.471 +392540,239.79,87.1518 +392541,240.13,82.1455 +392542,239.6,83.7868 +392543,239.02,85.4473 +392544,238.4,87.1283 +392545,238.86,82.1245 +392546,238.28,83.764 +392547,237.67,85.4232 +392548,237,87.1034 +392549,237.59,82.1048 +392550,236.97,83.7416 +392551,236.31,85.3987 +392552,235.61,87.0773 +392553,236.32,82.0864 +392554,235.66,83.7197 +392555,234.96,85.3737 +392556,234.22,87.0498 +392557,235.04,82.0693 +392558,234.35,83.6982 +392559,233.61,85.3483 +392560,232.82,87.0211 +392561,233.77,82.0534 +392562,233.03,83.6771 +392563,232.26,85.3224 +392564,231.43,86.991 +392565,232.49,82.0389 +392566,231.72,83.6565 +392567,230.9,85.2962 +392568,230.04,86.9597 +392569,231.22,82.0257 +392570,230.41,83.6363 +392571,229.55,85.2694 +392572,228.65,86.927 +392573,229.94,82.0137 +392574,229.09,83.6165 +392575,228.2,85.2423 +392576,227.26,86.893 +392577,228.67,82.0029 +392578,227.78,83.5971 +392579,226.85,85.2147 +392580,225.87,86.8578 +392581,227.39,81.9935 +392582,226.47,83.5781 +392583,225.5,85.1867 +392584,224.48,86.8213 +392585,226.11,81.9853 +392586,225.15,83.5596 +392587,224.15,85.1583 +392588,223.09,86.7835 +392589,224.83,81.9783 +392590,223.84,83.5415 +392591,222.8,85.1294 +392592,221.7,86.7445 +392593,223.55,81.9725 +392594,222.52,83.5237 +392595,221.45,85.1001 +392596,220.31,86.7041 +392597,222.27,81.968 +392598,221.21,83.5064 +392599,220.1,85.0704 +392600,218.93,86.6626 +392601,220.99,81.9646 +392602,219.89,83.4895 +392603,218.75,85.0403 +392604,217.54,86.6198 +392605,219.71,81.9625 +392606,218.58,83.473 +392607,217.4,85.0098 +392608,216.16,86.5758 +392609,218.43,81.9615 +392610,217.26,83.4569 +392611,216.05,84.9789 +392612,214.77,86.5305 +392613,217.15,81.9617 +392614,215.95,83.4411 +392615,214.7,84.9476 +392616,213.39,86.4841 +392617,215.86,81.9631 +392618,214.63,83.4258 +392619,213.35,84.9159 +392620,212.01,86.4364 +392621,214.58,81.9656 +392622,213.32,83.4108 +392623,212,84.8838 +392624,210.63,86.3876 +392625,213.29,81.9692 +392626,212,83.3962 +392627,210.65,84.8513 +392628,209.25,86.3376 +392629,212.01,81.9739 +392630,210.68,83.382 +392631,209.31,84.8185 +392632,207.87,86.2864 +392633,210.72,81.9797 +392634,209.37,83.3681 +392635,207.96,84.7852 +392636,206.49,86.2341 +392637,209.43,81.9866 +392638,208.05,83.3546 +392639,206.61,84.7516 +392640,205.11,86.1807 +392641,208.14,81.9946 +392642,206.73,83.3415 +392643,205.27,84.7176 +392644,203.74,86.1262 +392645,206.85,82.0036 +392646,205.41,83.3287 +392647,203.92,84.6833 +392648,202.36,86.0706 +392649,205.56,82.0136 +392650,204.1,83.3163 +392651,202.58,84.6486 +392652,200.99,86.0139 +392653,204.27,82.0246 +392654,202.78,83.3042 +392655,201.23,84.6135 +392656,199.62,85.9562 +392657,202.97,82.0366 +392658,201.46,83.2924 +392659,199.89,84.5782 +392660,198.25,85.8974 +392661,201.68,82.0496 +392662,200.14,83.2809 +392663,198.54,84.5424 +392664,196.88,85.8376 +392665,200.38,82.0635 +392666,198.82,83.2698 +392667,197.2,84.5064 +392668,195.51,85.7768 +392669,199.09,82.0783 +392670,197.5,83.259 +392671,195.86,84.47 +392672,194.15,85.715 +392673,197.79,82.0941 +392674,196.18,83.2485 +392675,194.51,84.4333 +392676,192.78,85.6523 +392677,196.49,82.1107 +392678,194.86,83.2382 +392679,193.17,84.3964 +392680,191.42,85.5886 +392681,195.19,82.1282 +392682,193.54,83.2283 +392683,191.83,84.3591 +392684,190.05,85.524 +392685,193.89,82.1465 +392686,192.22,83.2187 +392687,190.49,84.3215 +392688,188.69,85.4585 +392689,192.58,82.1656 +392690,190.89,83.2093 +392691,189.15,84.2836 +392692,187.33,85.3922 +392693,191.28,82.1856 +392694,189.57,83.2002 +392695,187.81,84.2455 +392696,185.97,85.325 +392697,189.97,82.2063 +392698,188.25,83.1914 +392699,186.47,84.207 +392700,184.62,85.2569 +392701,188.67,82.2277 +392702,186.93,83.1828 +392703,185.13,84.1684 +392704,183.26,85.1881 +392705,187.36,82.2499 +392706,185.6,83.1744 +392707,183.79,84.1294 +392708,181.91,85.1185 +392709,186.05,82.2727 +392710,184.28,83.1663 +392711,182.45,84.0903 +392712,180.55,85.0481 +392713,184.74,82.2963 +392714,182.95,83.1584 +392715,181.11,84.0508 +392716,179.2,84.977 +392717,183.43,82.3205 +392718,181.63,83.1508 +392719,179.77,84.0112 +392720,177.85,84.9052 +392721,182.11,82.3453 +392722,180.3,83.1433 +392723,178.44,83.9713 +392724,176.5,84.8328 +392725,180.8,82.3707 +392726,178.98,83.1361 +392727,177.1,83.9313 +392728,175.16,84.7597 +392729,179.48,82.3966 +392730,177.65,83.129 +392731,175.76,83.891 +392732,173.81,84.6859 +392733,178.16,82.4231 +392734,176.33,83.1222 +392735,174.43,83.8505 +392736,172.47,84.6116 +392737,176.85,82.4502 +392738,175,83.1155 +392739,173.09,83.8099 +392740,171.13,84.5367 +392741,175.53,82.4777 +392742,173.67,83.109 +392743,171.76,83.769 +392744,169.78,84.4613 +392745,174.2,82.5057 +392746,172.34,83.1026 +392747,170.43,83.7281 +392748,168.45,84.3853 +392749,172.88,82.5341 +392750,171.01,83.0964 +392751,169.09,83.6869 +392752,167.11,84.3089 +392753,171.56,82.5629 +392754,169.69,83.0903 +392755,167.76,83.6456 +392756,165.77,84.232 +392757,170.23,82.5921 +392758,168.36,83.0844 +392759,166.43,83.6042 +392760,164.44,84.1547 +392761,168.9,82.6217 +392762,167.03,83.0786 +392763,165.1,83.5626 +392764,163.1,84.077 +392765,167.57,82.6516 +392766,165.7,83.0729 +392767,163.76,83.5209 +392768,161.77,83.999 +392769,166.24,82.6818 +392770,164.37,83.0673 +392771,162.43,83.4792 +392772,160.44,83.9206 +392773,164.91,82.7122 +392774,163.04,83.0618 +392775,161.1,83.4373 +392776,159.11,83.8419 +392777,163.58,82.7429 +392778,161.7,83.0563 +392779,159.77,83.3953 +392780,157.79,83.7629 +392781,162.25,82.7738 +392782,160.37,83.051 +392783,158.45,83.3533 +392784,156.46,83.6836 +392785,160.91,82.8049 +392786,159.04,83.0457 +392787,157.12,83.3111 +392788,155.14,83.6042 +392789,159.57,82.8362 +392790,157.71,83.0405 +392791,155.79,83.269 +392792,153.81,83.5246 +392793,158.23,82.8676 +392794,156.37,83.0353 +392795,154.46,83.2267 +392796,152.49,83.4448 +392797,156.89,82.899 +392798,155.04,83.0301 +392799,153.13,83.1845 +392800,151.17,83.3648 +392801,155.55,82.9306 +392802,153.71,83.025 +392803,151.81,83.1422 +392804,149.86,83.2848 +392805,154.21,82.9622 +392806,152.37,83.0199 +392807,150.48,83.0998 +392808,148.54,83.2047 +392809,152.86,82.9938 +392810,151.04,83.0148 +392811,149.16,83.0575 +392812,147.23,83.1246 +392813,151.52,83.0254 +392814,149.7,83.0097 +392815,147.83,83.0152 +392816,145.91,83.0445 +392817,150.17,83.057 +392818,148.36,83.0046 +392819,146.51,82.9729 +392820,144.6,82.9644 +392821,148.82,83.0885 +392822,147.03,82.9995 +392823,145.18,82.9306 +392824,143.29,82.8844 +392825,147.47,83.1199 +392826,145.69,82.9943 +392827,143.86,82.8883 +392828,141.98,82.8045 +392829,146.12,83.1511 +392830,144.35,82.9891 +392831,142.54,82.8461 +392832,140.67,82.7246 +392833,144.77,83.1822 +392834,143.02,82.9838 +392835,141.22,82.8039 +392836,139.37,82.645 +392837,143.41,83.2132 +392838,141.68,82.9785 +392839,139.89,82.7618 +392840,138.06,82.5655 +392841,142.06,83.2439 +392842,140.34,82.9731 +392843,138.57,82.7198 +392844,136.76,82.4862 +392845,140.7,83.2744 +392846,139,82.9677 +392847,137.25,82.6778 +392848,135.46,82.4071 +392849,139.34,83.3046 +392850,137.66,82.9621 +392851,135.93,82.6359 +392852,134.16,82.3284 +392853,137.99,83.3345 +392854,136.32,82.9565 +392855,134.61,82.5942 +392856,132.86,82.2499 +392857,136.62,83.3641 +392858,134.98,82.9507 +392859,133.29,82.5525 +392860,131.56,82.1717 +392861,135.26,83.3934 +392862,133.64,82.9449 +392863,131.97,82.511 +392864,130.27,82.0939 +392865,133.9,83.4223 +392866,132.3,82.9389 +392867,130.66,82.4695 +392868,128.97,82.0165 +392869,132.54,83.4507 +392870,130.96,82.9327 +392871,129.34,82.4283 +392872,127.68,81.9396 +392873,131.17,83.4788 +392874,129.61,82.9264 +392875,128.02,82.3871 +392876,126.38,81.863 +392877,129.8,83.5064 +392878,128.27,82.92 +392879,126.7,82.3462 +392880,125.09,81.7869 +392881,128.43,83.5335 +392882,126.93,82.9134 +392883,125.39,82.3054 +392884,123.8,81.7114 +392885,127.06,83.5601 +392886,125.59,82.9067 +392887,124.07,82.2647 +392888,122.52,81.6363 +392889,125.69,83.5862 +392890,124.24,82.8997 +392891,122.76,82.2243 +392892,121.23,81.5619 +392893,124.32,83.6117 +392894,122.9,82.8926 +392895,121.44,82.184 +392896,119.94,81.488 +392897,122.95,83.6367 +392898,121.56,82.8853 +392899,120.13,82.1439 +392900,118.66,81.4147 +392901,121.58,83.661 +392902,120.21,82.8778 +392903,118.81,82.1041 +392904,117.37,81.342 +392905,120.2,83.6847 +392906,118.87,82.87 +392907,117.5,82.0645 +392908,116.09,81.27 +392909,118.83,83.7078 +392910,117.52,82.8621 +392911,116.18,82.0251 +392912,114.81,81.1987 +392913,117.45,83.7302 +392914,116.18,82.8539 +392915,114.87,81.9859 +392916,113.53,81.1281 +392917,116.07,83.7519 +392918,114.83,82.8455 +392919,113.56,81.947 +392920,112.25,81.0583 +392921,114.69,83.7728 +392922,113.48,82.8368 +392923,112.24,81.9083 +392924,110.97,80.9892 +392925,113.31,83.793 +392926,112.14,82.8279 +392927,110.93,81.8699 +392928,109.69,80.9209 +392929,111.93,83.8125 +392930,110.79,82.8187 +392931,109.62,81.8317 +392932,108.42,80.8534 +392933,110.55,83.8311 +392934,109.44,82.8093 +392935,108.31,81.7939 +392936,107.14,80.7868 +392937,109.16,83.849 +392938,108.1,82.7996 +392939,107,81.7563 +392940,105.87,80.721 +392941,107.78,83.866 +392942,106.75,82.7896 +392943,105.69,81.719 +392944,104.59,80.6561 +392945,106.4,83.8821 +392946,105.4,82.7793 +392947,104.38,81.682 +392948,103.32,80.5921 +392949,105.01,83.8974 +392950,104.05,82.7687 +392951,103.07,81.6453 +392952,102.05,80.529 +392953,103.62,83.9118 +392954,102.71,82.7578 +392955,101.76,81.6089 +392956,100.78,80.4668 +392957,102.24,83.9253 +392958,101.36,82.7466 +392959,100.45,81.5728 +392960,99.506,80.4056 +392961,100.85,83.9378 +392962,100.01,82.7351 +392963,99.138,81.5371 +392964,98.237,80.3454 +392965,99.461,83.9494 +392966,98.66,82.7233 +392967,97.829,81.5017 +392968,96.968,80.2862 +392969,98.072,83.9601 +392970,97.311,82.7112 +392971,96.52,81.4666 +392972,95.699,80.2281 +392973,96.682,83.9697 +392974,95.962,82.6987 +392975,95.212,81.4318 +392976,94.432,80.1709 +392977,95.292,83.9784 +392978,94.612,82.6859 +392979,93.903,81.3975 +392980,93.165,80.1148 +392981,93.901,83.986 +392982,93.263,82.6727 +392983,92.595,81.3634 +392984,91.898,80.0598 +392985,92.509,83.9926 +392986,91.913,82.6592 +392987,91.287,81.3297 +392988,90.632,80.0059 +392989,91.117,83.9982 +392990,90.563,82.6453 +392991,89.98,81.2964 +392992,89.367,79.953 +392993,89.725,84.0027 +392994,89.213,82.6311 +392995,88.672,81.2635 +392996,88.102,79.901 +392997,88.331,84.0061 +392998,87.863,82.6165 +392999,87.365,81.2309 +393000,86.838,79.851 +393001,86.938,84.0084 +393002,86.513,82.6016 +393003,86.058,81.1987 +393004,85.574,79.801 +393005,85.544,84.0097 +393006,85.162,82.5863 +393007,84.751,81.1669 +393008,84.31,79.753 +393009,84.15,84.0098 +393010,83.812,82.5706 +393011,83.444,81.1355 +393012,83.047,79.706 +393013,82.755,84.0088 +393014,82.462,82.5545 +393015,82.138,81.1044 +393016,81.784,79.66 +393017,81.36,84.0066 +393018,81.111,82.538 +393019,80.831,81.0738 +393020,80.522,79.615 +393021,79.965,84.0033 +393022,79.76,82.5212 +393023,79.525,81.0436 +393024,79.259,79.572 +393025,78.569,83.9988 +393026,78.41,82.5039 +393027,78.219,81.0137 +393028,77.997,79.529 +393029,77.174,83.9932 +393030,77.059,82.4863 +393031,76.913,80.9843 +393032,76.736,79.488 +393033,75.778,83.9864 +393034,75.708,82.4683 +393035,75.606,80.9553 +393036,75.474,79.448 +393037,74.382,83.9784 +393038,74.357,82.4499 +393039,74.3,80.9267 +393040,74.212,79.41 +393041,72.986,83.9692 +393042,73.006,82.431 +393043,72.994,80.8984 +393044,72.951,79.372 +393045,71.59,83.9588 +393046,71.656,82.4118 +393047,71.689,80.8707 +393048,71.689,79.336 +393049,70.193,83.9472 +393050,70.305,82.3922 +393051,70.383,80.8433 +393052,70.428,79.301 +393053,68.797,83.9344 +393054,68.954,82.3721 +393055,69.077,80.8163 +393056,69.167,79.268 +393057,67.401,83.9203 +393058,67.604,82.3517 +393059,67.771,80.7898 +393060,67.905,79.236 +393061,66.005,83.9051 +393062,66.253,82.3308 +393063,66.465,80.7637 +393064,66.644,79.204 +393065,64.609,83.8886 +393066,64.902,82.3095 +393067,65.159,80.738 +393068,65.382,79.175 +393069,63.213,83.8708 +393070,63.552,82.2878 +393071,63.854,80.7127 +393072,64.121,79.146 +393073,61.818,83.8519 +393074,62.201,82.2657 +393075,62.548,80.6879 +393076,62.859,79.119 +393077,60.422,83.8317 +393078,60.851,82.2432 +393079,61.242,80.6635 +393080,61.597,79.093 +393081,59.027,83.8102 +393082,59.501,82.2203 +393083,59.936,80.6395 +393084,60.334,79.068 +393085,57.632,83.7875 +393086,58.151,82.1969 +393087,58.63,80.6159 +393088,59.072,79.045 +393089,56.238,83.7636 +393090,56.801,82.1732 +393091,57.324,80.5928 +393092,57.809,79.023 +393093,54.844,83.7384 +393094,55.451,82.149 +393095,56.017,80.57 +393096,56.546,79.002 +393097,53.45,83.712 +393098,54.102,82.1244 +393099,54.711,80.5478 +393100,55.282,78.982 +393101,52.056,83.6844 +393102,52.752,82.0994 +393103,53.405,80.5259 +393104,54.018,78.964 +393105,50.664,83.6555 +393106,51.403,82.074 +393107,52.098,80.5044 +393108,52.754,78.947 +393109,49.271,83.6254 +393110,50.054,82.0481 +393111,50.792,80.4834 +393112,51.489,78.931 +393113,47.879,83.594 +393114,48.705,82.0219 +393115,49.485,80.4628 +393116,50.224,78.916 +393117,46.488,83.5614 +393118,47.356,81.9953 +393119,48.178,80.4426 +393120,48.958,78.903 +393121,45.097,83.5276 +393122,46.008,81.9682 +393123,46.871,80.4228 +393124,47.691,78.891 +393125,43.707,83.4926 +393126,44.66,81.9408 +393127,45.563,80.4034 +393128,46.424,78.88 +393129,42.318,83.4564 +393130,43.312,81.9129 +393131,44.256,80.3845 +393132,45.157,78.87 +393133,40.929,83.4189 +393134,41.964,81.8846 +393135,42.948,80.3659 +393136,43.888,78.862 +393137,39.541,83.3803 +393138,40.617,81.856 +393139,41.64,80.3478 +393140,42.619,78.855 +393141,38.154,83.3405 +393142,39.269,81.827 +393143,40.332,80.33 +393144,41.349,78.849 +393145,36.768,83.2995 +393146,37.923,81.7975 +393147,39.024,80.3127 +393148,40.079,78.844 +393149,35.382,83.2573 +393150,36.576,81.7677 +393151,37.716,80.2957 +393152,38.808,78.84 +393153,33.998,83.214 +393154,35.23,81.7375 +393155,36.407,80.2792 +393156,37.536,78.838 +393157,32.614,83.1695 +393158,33.884,81.7069 +393159,35.098,80.263 +393160,36.263,78.837 +393161,31.231,83.1239 +393162,32.538,81.6759 +393163,33.788,80.2472 +393164,34.989,78.836 +393165,29.849,83.0771 +393166,31.193,81.6446 +393167,32.479,80.2318 +393168,33.715,78.837 +393169,28.468,83.0292 +393170,29.848,81.6129 +393171,31.169,80.2168 +393172,32.439,78.839 +393173,27.088,82.9802 +393174,28.503,81.5809 +393175,29.859,80.2021 +393176,31.163,78.842 +393177,25.709,82.9302 +393178,27.159,81.5484 +393179,28.548,80.1878 +393180,29.885,78.847 +393181,24.332,82.879 +393182,25.815,81.5157 +393183,27.238,80.1739 +393184,28.607,78.852 +393185,22.955,82.8268 +393186,24.472,81.4825 +393187,25.926,80.1603 +393188,27.327,78.858 +393189,21.579,82.7736 +393190,23.129,81.4491 +393191,24.615,80.147 +393192,26.047,78.866 +393193,20.205,82.7193 +393194,21.786,81.4153 +393195,23.303,80.1341 +393196,24.766,78.874 +393197,18.832,82.664 +393198,20.444,81.3811 +393199,21.991,80.1216 +393200,23.483,78.883 +393201,17.46,82.6077 +393202,19.102,81.3467 +393203,20.679,80.1094 +393204,22.199,78.894 +393205,16.089,82.5504 +393206,17.761,81.3119 +393207,19.366,80.0975 +393208,20.914,78.905 +393209,14.719,82.4922 +393210,16.42,81.2768 +393211,18.053,80.0859 +393212,19.629,78.917 +393213,13.351,82.433 +393214,15.079,81.2414 +393215,16.739,80.0746 +393216,18.341,78.93 +393217,11.984,82.3729 +393218,13.739,81.2057 +393219,15.425,80.0636 +393220,17.053,78.944 +393221,10.618,82.3119 +393222,12.399,81.1697 +393223,14.111,80.053 +393224,15.764,78.959 +393225,9.2542,82.25 +393226,11.06,81.1334 +393227,12.796,80.0426 +393228,14.473,78.975 +393229,7.8913,82.1872 +393230,9.7216,81.0969 +393231,11.481,80.0325 +393232,13.181,78.992 +393233,6.5297,82.1236 +393234,8.3833,81.06 +393235,10.166,80.0227 +393236,11.888,79.009 +393237,5.1696,82.0591 +393238,7.0456,81.0229 +393239,8.8499,80.0132 +393240,10.593,79.027 +393241,3.8109,81.9939 +393242,5.7083,80.9856 +393243,7.5336,80.0039 +393244,9.2971,79.046 +393245,2.4537,81.9279 +393246,4.3715,80.948 +393247,6.2168,79.995 +393248,8,79.066 +393249,1.0979,81.8611 +393250,3.0353,80.9101 +393251,4.8996,79.986 +393252,6.7015,79.087 +393253,359.74,81.7936 +393254,1.6995,80.872 +393255,3.582,79.978 +393256,5.4016,79.108 +393257,358.39,81.7254 +393258,0.36421,80.8337 +393259,2.2639,79.969 +393260,4.1004,79.13 +393261,357.04,81.6565 +393262,359.03,80.7952 +393263,0.94543,79.961 +393264,2.7978,79.152 +393265,355.69,81.5869 +393266,357.7,80.7564 +393267,359.63,79.953 +393268,1.4938,79.175 +393269,354.34,81.5167 +393270,356.36,80.7175 +393271,358.31,79.946 +393272,0.18847,79.199 +393273,352.99,81.4459 +393274,355.03,80.6783 +393275,356.99,79.938 +393276,358.88,79.223 +393277,351.65,81.3745 +393278,353.7,80.639 +393279,355.67,79.931 +393280,357.57,79.248 +393281,350.31,81.3025 +393282,352.36,80.5995 +393283,354.35,79.924 +393284,356.26,79.273 +393285,348.96,81.23 +393286,351.03,80.5598 +393287,353.02,79.917 +393288,354.95,79.299 +393289,347.62,81.157 +393290,349.7,80.52 +393291,351.7,79.91 +393292,353.64,79.325 +393293,346.28,81.0835 +393294,348.37,80.48 +393295,350.38,79.904 +393296,352.33,79.352 +393297,344.95,81.0096 +393298,347.04,80.4398 +393299,349.06,79.897 +393300,351.01,79.379 +393301,343.61,80.9352 +393302,345.71,80.3996 +393303,347.74,79.891 +393304,349.69,79.407 +393305,342.28,80.8605 +393306,344.38,80.3592 +393307,346.41,79.885 +393308,348.38,79.435 +393309,340.95,80.7853 +393310,343.05,80.3187 +393311,345.09,79.879 +393312,347.06,79.463 +393313,339.61,80.7099 +393314,341.73,80.2781 +393315,343.76,79.873 +393316,345.73,79.491 +393317,338.29,80.6341 +393318,340.4,80.2374 +393319,342.44,79.867 +393320,344.41,79.52 +393321,336.96,80.558 +393322,339.07,80.1966 +393323,341.11,79.861 +393324,343.09,79.549 +393325,335.63,80.4817 +393326,337.75,80.1557 +393327,339.79,79.856 +393328,341.76,79.578 +393329,334.31,80.4051 +393330,336.42,80.1148 +393331,338.46,79.85 +393332,340.43,79.608 +393333,332.99,80.3283 +393334,335.1,80.0738 +393335,337.13,79.845 +393336,339.11,79.638 +393337,331.66,80.2514 +393338,333.77,80.0328 +393339,335.81,79.839 +393340,337.77,79.667 +393341,330.34,80.1743 +393342,332.45,79.992 +393343,334.48,79.834 +393344,336.44,79.697 +393345,329.03,80.0971 +393346,331.12,79.951 +393347,333.15,79.828 +393348,335.11,79.727 +393349,327.71,80.0199 +393350,329.8,79.909 +393351,331.82,79.823 +393352,333.77,79.757 +393353,326.4,79.943 +393354,328.48,79.868 +393355,330.49,79.818 +393356,332.44,79.787 +393357,325.08,79.865 +393358,327.16,79.827 +393359,329.16,79.812 +393360,331.1,79.818 +393361,323.77,79.788 +393362,325.84,79.786 +393363,327.83,79.807 +393364,329.76,79.848 +393365,322.46,79.711 +393366,324.51,79.745 +393367,326.5,79.802 +393368,328.42,79.878 +393369,321.15,79.633 +393370,323.19,79.704 +393371,325.17,79.796 +393372,327.08,79.908 +393373,319.85,79.556 +393374,321.88,79.663 +393375,323.84,79.791 +393376,325.73,79.937 +393377,318.54,79.479 +393378,320.56,79.622 +393379,322.5,79.785 +393380,324.39,79.967 +393381,317.24,79.402 +393382,319.24,79.581 +393383,321.17,79.78 +393384,323.04,79.997 +393385,315.94,79.325 +393386,317.92,79.54 +393387,319.84,79.774 +393388,321.7,80.0259 +393389,314.64,79.249 +393390,316.6,79.499 +393391,318.5,79.769 +393392,320.35,80.055 +393393,313.34,79.173 +393394,315.29,79.459 +393395,317.17,79.763 +393396,319,80.0838 +393397,312.04,79.097 +393398,313.97,79.418 +393399,315.83,79.757 +393400,317.64,80.1124 +393401,310.75,79.021 +393402,312.65,79.377 +393403,314.5,79.751 +393404,316.29,80.1407 +393405,309.45,78.946 +393406,311.34,79.337 +393407,313.16,79.745 +393408,314.93,80.1687 +393409,308.16,78.871 +393410,310.02,79.297 +393411,311.83,79.739 +393412,313.58,80.1963 +393413,306.87,78.796 +393414,308.71,79.257 +393415,310.49,79.733 +393416,312.22,80.2235 +393417,305.58,78.722 +393418,307.39,79.217 +393419,309.15,79.727 +393420,310.86,80.2503 +393421,304.29,78.648 +393422,306.08,79.177 +393423,307.82,79.72 +393424,309.5,80.2767 +393425,303,78.575 +393426,304.77,79.137 +393427,306.48,79.714 +393428,308.14,80.3027 +393429,301.71,78.502 +393430,303.46,79.098 +393431,305.14,79.707 +393432,306.78,80.3281 +393433,300.43,78.43 +393434,302.14,79.058 +393435,303.8,79.7 +393436,305.41,80.3531 +393437,299.15,78.358 +393438,300.83,79.019 +393439,302.46,79.693 +393440,304.05,80.3775 +393441,297.86,78.287 +393442,299.52,78.98 +393443,301.13,79.686 +393444,302.68,80.4014 +393445,296.58,78.216 +393446,298.21,78.941 +393447,299.79,79.678 +393448,301.31,80.4247 +393449,295.3,78.146 +393450,296.9,78.903 +393451,298.45,79.671 +393452,299.94,80.4474 +393453,294.03,78.077 +393454,295.59,78.864 +393455,297.1,79.663 +393456,298.57,80.4695 +393457,292.75,78.008 +393458,294.28,78.826 +393459,295.76,79.655 +393460,297.2,80.4909 +393461,291.47,77.94 +393462,292.97,78.788 +393463,294.42,79.646 +393464,295.83,80.5116 +393465,290.2,77.873 +393466,291.66,78.751 +393467,293.08,79.638 +393468,294.45,80.5317 +393469,288.93,77.806 +393470,290.36,78.713 +393471,291.74,79.629 +393472,293.08,80.5511 +393473,287.65,77.741 +393474,289.05,78.676 +393475,290.4,79.62 +393476,291.7,80.5697 +393477,286.38,77.676 +393478,287.74,78.639 +393479,289.05,79.611 +393480,290.33,80.5875 +393481,285.11,77.612 +393482,286.43,78.603 +393483,287.71,79.601 +393484,288.95,80.6046 +393485,283.84,77.549 +393486,285.13,78.567 +393487,286.37,79.591 +393488,287.57,80.6209 +393489,282.57,77.486 +393490,283.82,78.531 +393491,285.03,79.581 +393492,286.19,80.6363 +393493,281.31,77.425 +393494,282.52,78.495 +393495,283.68,79.571 +393496,284.81,80.6509 +393497,280.04,77.364 +393498,281.21,78.459 +393499,282.34,79.56 +393500,283.43,80.6647 +393501,278.78,77.304 +393502,279.9,78.424 +393503,280.99,79.549 +393504,282.04,80.6776 +393505,277.51,77.246 +393506,278.6,78.389 +393507,279.65,79.538 +393508,280.66,80.6896 +393509,276.25,77.188 +393510,277.3,78.355 +393511,278.3,79.527 +393512,279.27,80.7007 +393513,274.98,77.131 +393514,275.99,78.321 +393515,276.96,79.515 +393516,277.89,80.7108 +393517,273.72,77.075 +393518,274.69,78.287 +393519,275.61,79.503 +393520,276.5,80.72 +393521,272.46,77.02 +393522,273.38,78.254 +393523,274.27,79.49 +393524,275.12,80.7283 +393525,271.2,76.967 +393526,272.08,78.22 +393527,272.92,79.477 +393528,273.73,80.7355 +393529,269.94,76.914 +393530,270.78,78.188 +393531,271.58,79.464 +393532,272.34,80.7418 +393533,268.68,76.862 +393534,269.47,78.155 +393535,270.23,79.451 +393536,270.95,80.7471 +393537,267.42,76.812 +393538,268.17,78.123 +393539,268.88,79.437 +393540,269.56,80.7513 +393541,266.16,76.762 +393542,266.87,78.091 +393543,267.54,79.423 +393544,268.17,80.7545 +393545,264.91,76.714 +393546,265.57,78.06 +393547,266.19,79.408 +393548,266.78,80.7567 +393549,263.65,76.667 +393550,264.26,78.029 +393551,264.84,79.393 +393552,265.39,80.7578 +393553,262.39,76.621 +393554,262.96,77.999 +393555,263.5,79.378 +393556,264,80.7578 +393557,261.14,76.576 +393558,261.66,77.968 +393559,262.15,79.363 +393560,262.61,80.7567 +393561,259.88,76.532 +393562,260.36,77.939 +393563,260.8,79.347 +393564,261.21,80.7546 +393565,258.63,76.489 +393566,259.06,77.909 +393567,259.45,79.33 +393568,259.82,80.7513 +393569,257.37,76.448 +393570,257.76,77.88 +393571,258.11,79.314 +393572,258.43,80.7469 +393573,256.12,76.408 +393574,256.45,77.851 +393575,256.76,79.297 +393576,257.03,80.7414 +393577,254.86,76.369 +393578,255.15,77.823 +393579,255.41,79.279 +393580,255.64,80.7348 +393581,253.61,76.331 +393582,253.85,77.795 +393583,254.06,79.261 +393584,254.24,80.727 +393585,252.35,76.294 +393586,252.55,77.768 +393587,252.72,79.243 +393588,252.85,80.718 +393589,251.1,76.259 +393590,251.25,77.741 +393591,251.37,79.224 +393592,251.46,80.7079 +393593,249.85,76.224 +393594,249.95,77.714 +393595,250.02,79.205 +393596,250.06,80.6967 +393597,248.59,76.191 +393598,248.65,77.688 +393599,248.67,79.186 +393600,248.67,80.6843 +393601,247.34,76.16 +393602,247.35,77.662 +393603,247.33,79.166 +393604,247.27,80.6706 +393605,246.08,76.129 +393606,246.05,77.637 +393607,245.98,79.146 +393608,245.88,80.6559 +393609,244.83,76.1 +393610,244.75,77.612 +393611,244.63,79.126 +393612,244.48,80.6399 +393613,243.58,76.072 +393614,243.45,77.587 +393615,243.28,79.105 +393616,243.08,80.6227 +393617,242.32,76.045 +393618,242.15,77.563 +393619,241.93,79.083 +393620,241.69,80.6044 +393621,241.07,76.02 +393622,240.84,77.539 +393623,240.59,79.061 +393624,240.29,80.5848 +393625,239.82,75.995 +393626,239.54,77.516 +393627,239.24,79.039 +393628,238.9,80.5641 +393629,238.56,75.972 +393630,238.24,77.493 +393631,237.89,79.017 +393632,237.51,80.5421 +393633,237.31,75.951 +393634,236.94,77.471 +393635,236.54,78.994 +393636,236.11,80.519 +393637,236.05,75.93 +393638,235.64,77.449 +393639,235.2,78.97 +393640,234.72,80.4947 +393641,234.8,75.911 +393642,234.34,77.427 +393643,233.85,78.947 +393644,233.32,80.4692 +393645,233.54,75.893 +393646,233.04,77.406 +393647,232.5,78.923 +393648,231.93,80.4424 +393649,232.29,75.876 +393650,231.74,77.385 +393651,231.16,78.898 +393652,230.54,80.4145 +393653,231.03,75.86 +393654,230.44,77.364 +393655,229.81,78.873 +393656,229.14,80.3854 +393657,229.77,75.846 +393658,229.14,77.344 +393659,228.46,78.848 +393660,227.75,80.3551 +393661,228.52,75.833 +393662,227.83,77.325 +393663,227.12,78.822 +393664,226.36,80.3237 +393665,227.26,75.821 +393666,226.53,77.306 +393667,225.77,78.796 +393668,224.97,80.291 +393669,226,75.81 +393670,225.23,77.287 +393671,224.42,78.769 +393672,223.58,80.2572 +393673,224.74,75.801 +393674,223.93,77.268 +393675,223.08,78.742 +393676,222.19,80.2222 +393677,223.48,75.792 +393678,222.63,77.25 +393679,221.73,78.715 +393680,220.8,80.1861 +393681,222.22,75.785 +393682,221.32,77.233 +393683,220.39,78.687 +393684,219.41,80.1488 +393685,220.96,75.779 +393686,220.02,77.216 +393687,219.04,78.659 +393688,218.02,80.1103 +393689,219.7,75.775 +393690,218.72,77.199 +393691,217.7,78.631 +393692,216.63,80.0708 +393693,218.44,75.771 +393694,217.42,77.182 +393695,216.35,78.602 +393696,215.24,80.03 +393697,217.17,75.769 +393698,216.11,77.166 +393699,215.01,78.573 +393700,213.86,79.988 +393701,215.91,75.767 +393702,214.81,77.151 +393703,213.67,78.543 +393704,212.47,79.945 +393705,214.65,75.767 +393706,213.51,77.136 +393707,212.32,78.514 +393708,211.09,79.901 +393709,213.38,75.768 +393710,212.2,77.121 +393711,210.98,78.483 +393712,209.7,79.856 +393713,212.11,75.77 +393714,210.9,77.106 +393715,209.64,78.453 +393716,208.32,79.81 +393717,210.85,75.773 +393718,209.59,77.092 +393719,208.29,78.422 +393720,206.94,79.763 +393721,209.58,75.777 +393722,208.29,77.078 +393723,206.95,78.39 +393724,205.56,79.714 +393725,208.31,75.782 +393726,206.98,77.065 +393727,205.61,78.359 +393728,204.18,79.665 +393729,207.04,75.788 +393730,205.68,77.052 +393731,204.27,78.327 +393732,202.8,79.615 +393733,205.77,75.796 +393734,204.37,77.039 +393735,202.93,78.294 +393736,201.42,79.563 +393737,204.5,75.804 +393738,203.07,77.026 +393739,201.58,78.262 +393740,200.04,79.511 +393741,203.22,75.813 +393742,201.76,77.014 +393743,200.24,78.229 +393744,198.67,79.457 +393745,201.95,75.823 +393746,200.45,77.003 +393747,198.9,78.196 +393748,197.29,79.403 +393749,200.67,75.834 +393750,199.15,76.991 +393751,197.56,78.162 +393752,195.92,79.348 +393753,199.4,75.846 +393754,197.84,76.98 +393755,196.23,78.128 +393756,194.55,79.291 +393757,198.12,75.859 +393758,196.53,76.969 +393759,194.89,78.094 +393760,193.18,79.234 +393761,196.84,75.873 +393762,195.22,76.959 +393763,193.55,78.059 +393764,191.81,79.176 +393765,195.56,75.888 +393766,193.91,76.948 +393767,192.21,78.025 +393768,190.44,79.117 +393769,194.28,75.903 +393770,192.6,76.939 +393771,190.87,77.99 +393772,189.07,79.058 +393773,193,75.92 +393774,191.3,76.929 +393775,189.54,77.954 +393776,187.71,78.997 +393777,191.71,75.937 +393778,189.99,76.92 +393779,188.2,77.919 +393780,186.34,78.936 +393781,190.43,75.955 +393782,188.68,76.91 +393783,186.86,77.883 +393784,184.98,78.873 +393785,189.14,75.974 +393786,187.36,76.902 +393787,185.53,77.847 +393788,183.62,78.81 +393789,187.85,75.993 +393790,186.05,76.893 +393791,184.19,77.81 +393792,182.26,78.747 +393793,186.56,76.013 +393794,184.74,76.885 +393795,182.86,77.774 +393796,180.9,78.682 +393797,185.27,76.034 +393798,183.43,76.877 +393799,181.52,77.737 +393800,179.54,78.617 +393801,183.98,76.056 +393802,182.12,76.869 +393803,180.19,77.7 +393804,178.19,78.551 +393805,182.69,76.078 +393806,180.8,76.861 +393807,178.86,77.663 +393808,176.83,78.484 +393809,181.39,76.1 +393810,179.49,76.854 +393811,177.52,77.625 +393812,175.48,78.417 +393813,180.09,76.124 +393814,178.18,76.846 +393815,176.19,77.588 +393816,174.13,78.349 +393817,178.8,76.148 +393818,176.86,76.839 +393819,174.86,77.55 +393820,172.78,78.281 +393821,177.5,76.172 +393822,175.55,76.832 +393823,173.53,77.512 +393824,171.43,78.212 +393825,176.2,76.197 +393826,174.23,76.826 +393827,172.2,77.474 +393828,170.08,78.142 +393829,174.89,76.223 +393830,172.92,76.819 +393831,170.87,77.435 +393832,168.74,78.072 +393833,173.59,76.249 +393834,171.6,76.813 +393835,169.54,77.397 +393836,167.4,78.002 +393837,172.28,76.275 +393838,170.28,76.807 +393839,168.21,77.358 +393840,166.05,77.931 +393841,170.98,76.302 +393842,168.97,76.801 +393843,166.88,77.319 +393844,164.71,77.859 +393845,169.67,76.329 +393846,167.65,76.795 +393847,165.55,77.28 +393848,163.38,77.787 +393849,168.36,76.356 +393850,166.33,76.789 +393851,164.23,77.241 +393852,162.04,77.715 +393853,167.05,76.384 +393854,165.01,76.783 +393855,162.9,77.202 +393856,160.71,77.642 +393857,165.74,76.412 +393858,163.69,76.778 +393859,161.57,77.163 +393860,159.37,77.569 +393861,164.42,76.441 +393862,162.37,76.772 +393863,160.25,77.123 +393864,158.04,77.496 +393865,163.11,76.469 +393866,161.05,76.767 +393867,158.92,77.084 +393868,156.71,77.422 +393869,161.79,76.498 +393870,159.73,76.762 +393871,157.6,77.045 +393872,155.38,77.349 +393873,160.47,76.527 +393874,158.41,76.757 +393875,156.28,77.005 +393876,154.06,77.275 +393877,159.15,76.557 +393878,157.09,76.752 +393879,154.95,76.965 +393880,152.73,77.2 +393881,157.83,76.586 +393882,155.77,76.746 +393883,153.63,76.926 +393884,151.41,77.126 +393885,156.5,76.615 +393886,154.44,76.741 +393887,152.31,76.886 +393888,150.09,77.051 +393889,155.18,76.645 +393890,153.12,76.736 +393891,150.99,76.846 +393892,148.77,76.977 +393893,153.85,76.675 +393894,151.8,76.731 +393895,149.67,76.806 +393896,147.45,76.902 +393897,152.52,76.704 +393898,150.47,76.727 +393899,148.35,76.767 +393900,146.13,76.827 +393901,151.19,76.734 +393902,149.15,76.722 +393903,147.03,76.727 +393904,144.82,76.752 +393905,149.86,76.764 +393906,147.82,76.717 +393907,145.71,76.687 +393908,143.51,76.677 +393909,148.53,76.793 +393910,146.49,76.712 +393911,144.39,76.647 +393912,142.2,76.602 +393913,147.19,76.823 +393914,145.17,76.707 +393915,143.07,76.607 +393916,140.89,76.527 +393917,145.86,76.852 +393918,143.84,76.702 +393919,141.75,76.568 +393920,139.58,76.453 +393921,144.52,76.881 +393922,142.51,76.697 +393923,140.43,76.528 +393924,138.27,76.378 +393925,143.18,76.911 +393926,141.19,76.692 +393927,139.12,76.489 +393928,136.97,76.303 +393929,141.84,76.939 +393930,139.86,76.687 +393931,137.8,76.449 +393932,135.67,76.229 +393933,140.5,76.968 +393934,138.53,76.681 +393935,136.49,76.41 +393936,134.36,76.155 +393937,139.15,76.997 +393938,137.2,76.676 +393939,135.17,76.37 +393940,133.07,76.081 +393941,137.81,77.025 +393942,135.87,76.671 +393943,133.86,76.331 +393944,131.77,76.007 +393945,136.46,77.053 +393946,134.54,76.665 +393947,132.54,76.292 +393948,130.47,75.934 +393949,135.11,77.08 +393950,133.21,76.66 +393951,131.23,76.253 +393952,129.18,75.861 +393953,133.76,77.107 +393954,131.88,76.654 +393955,129.92,76.214 +393956,127.88,75.788 +393957,132.41,77.134 +393958,130.54,76.648 +393959,128.61,76.175 +393960,126.59,75.716 +393961,131.06,77.161 +393962,129.21,76.643 +393963,127.3,76.136 +393964,125.3,75.644 +393965,129.7,77.187 +393966,127.88,76.636 +393967,125.98,76.098 +393968,124.01,75.572 +393969,128.35,77.212 +393970,126.55,76.63 +393971,124.67,76.059 +393972,122.73,75.501 +393973,126.99,77.237 +393974,125.21,76.624 +393975,123.36,76.021 +393976,121.44,75.431 +393977,125.63,77.262 +393978,123.88,76.617 +393979,122.05,75.983 +393980,120.16,75.361 +393981,124.27,77.286 +393982,122.54,76.611 +393983,120.75,75.945 +393984,118.88,75.291 +393985,122.91,77.31 +393986,121.21,76.604 +393987,119.44,75.907 +393988,117.6,75.222 +393989,121.55,77.333 +393990,119.87,76.597 +393991,118.13,75.87 +393992,116.32,75.153 +393993,120.19,77.355 +393994,118.54,76.59 +393995,116.82,75.832 +393996,115.04,75.085 +393997,118.82,77.377 +393998,117.2,76.582 +393999,115.51,75.795 +394000,113.76,75.018 +394001,117.46,77.398 +394002,115.86,76.575 +394003,114.21,75.759 +394004,112.49,74.952 +394005,116.09,77.418 +394006,114.53,76.567 +394007,112.9,75.722 +394008,111.21,74.886 +394009,114.72,77.438 +394010,113.19,76.559 +394011,111.6,75.685 +394012,109.94,74.82 +394013,113.35,77.457 +394014,111.85,76.551 +394015,110.29,75.649 +394016,108.67,74.756 +394017,111.98,77.475 +394018,110.51,76.542 +394019,108.99,75.613 +394020,107.4,74.692 +394021,110.61,77.493 +394022,109.17,76.533 +394023,107.68,75.578 +394024,106.13,74.629 +394025,109.23,77.51 +394026,107.83,76.524 +394027,106.38,75.542 +394028,104.86,74.567 +394029,107.86,77.526 +394030,106.49,76.515 +394031,105.07,75.507 +394032,103.59,74.506 +394033,106.48,77.541 +394034,105.15,76.505 +394035,103.77,75.473 +394036,102.33,74.445 +394037,105.11,77.555 +394038,103.81,76.495 +394039,102.47,75.438 +394040,101.06,74.385 +394041,103.73,77.569 +394042,102.47,76.485 +394043,101.16,75.404 +394044,99.801,74.326 +394045,102.35,77.582 +394046,101.13,76.475 +394047,99.863,75.37 +394048,98.539,74.268 +394049,100.97,77.593 +394050,99.791,76.464 +394051,98.561,75.336 +394052,97.278,74.211 +394053,99.591,77.604 +394054,98.45,76.453 +394055,97.26,75.303 +394056,96.017,74.155 +394057,98.21,77.614 +394058,97.108,76.442 +394059,95.959,75.27 +394060,94.758,74.1 +394061,96.827,77.623 +394062,95.766,76.43 +394063,94.658,75.237 +394064,93.5,74.046 +394065,95.444,77.631 +394066,94.424,76.418 +394067,93.357,75.205 +394068,92.242,73.993 +394069,94.06,77.639 +394070,93.081,76.406 +394071,92.057,75.173 +394072,90.985,73.941 +394073,92.675,77.645 +394074,91.738,76.393 +394075,90.757,75.141 +394076,89.73,73.89 +394077,91.289,77.65 +394078,90.395,76.381 +394079,89.458,75.11 +394080,88.475,73.84 +394081,89.903,77.654 +394082,89.052,76.367 +394083,88.159,75.079 +394084,87.22,73.791 +394085,88.516,77.657 +394086,87.708,76.354 +394087,86.859,75.048 +394088,85.967,73.743 +394089,87.128,77.659 +394090,86.365,76.34 +394091,85.561,75.018 +394092,84.714,73.696 +394093,85.739,77.66 +394094,85.021,76.326 +394095,84.262,74.988 +394096,83.462,73.65 +394097,84.35,77.66 +394098,83.677,76.311 +394099,82.964,74.959 +394100,82.21,73.605 +394101,82.96,77.659 +394102,82.332,76.296 +394103,81.666,74.929 +394104,80.959,73.562 +394105,81.57,77.657 +394106,80.988,76.281 +394107,80.368,74.901 +394108,79.708,73.519 +394109,80.179,77.654 +394110,79.643,76.265 +394111,79.07,74.872 +394112,78.458,73.478 +394113,78.788,77.649 +394114,78.298,76.249 +394115,77.773,74.844 +394116,77.209,73.438 +394117,77.396,77.644 +394118,76.954,76.232 +394119,76.475,74.817 +394120,75.959,73.399 +394121,76.004,77.637 +394122,75.609,76.215 +394123,75.178,74.789 +394124,74.711,73.361 +394125,74.611,77.63 +394126,74.263,76.198 +394127,73.881,74.763 +394128,73.462,73.325 +394129,73.218,77.621 +394130,72.918,76.181 +394131,72.584,74.736 +394132,72.214,73.289 +394133,71.825,77.611 +394134,71.573,76.163 +394135,71.287,74.71 +394136,70.966,73.255 +394137,70.431,77.6 +394138,70.227,76.144 +394139,69.99,74.684 +394140,69.718,73.222 +394141,69.037,77.588 +394142,68.882,76.126 +394143,68.694,74.659 +394144,68.471,73.19 +394145,67.643,77.574 +394146,67.537,76.106 +394147,67.397,74.634 +394148,67.224,73.16 +394149,66.249,77.56 +394150,66.191,76.087 +394151,66.1,74.61 +394152,65.977,73.13 +394153,64.854,77.544 +394154,64.845,76.067 +394155,64.804,74.586 +394156,64.729,73.102 +394157,63.46,77.527 +394158,63.5,76.047 +394159,63.507,74.562 +394160,63.482,73.075 +394161,62.065,77.509 +394162,62.154,76.026 +394163,62.211,74.539 +394164,62.235,73.049 +394165,60.671,77.49 +394166,60.809,76.005 +394167,60.915,74.516 +394168,60.988,73.025 +394169,59.276,77.469 +394170,59.463,75.983 +394171,59.618,74.494 +394172,59.741,73.002 +394173,57.881,77.448 +394174,58.118,75.962 +394175,58.322,74.472 +394176,58.494,72.98 +394177,56.487,77.425 +394178,56.772,75.939 +394179,57.025,74.45 +394180,57.246,72.959 +394181,55.092,77.401 +394182,55.427,75.917 +394183,55.729,74.429 +394184,55.999,72.939 +394185,53.698,77.376 +394186,54.082,75.894 +394187,54.432,74.408 +394188,54.751,72.921 +394189,52.304,77.349 +394190,52.737,75.87 +394191,53.136,74.388 +394192,53.503,72.904 +394193,50.91,77.322 +394194,51.391,75.846 +394195,51.839,74.368 +394196,52.255,72.888 +394197,49.517,77.293 +394198,50.047,75.822 +394199,50.542,74.348 +394200,51.006,72.873 +394201,48.123,77.264 +394202,48.702,75.798 +394203,49.246,74.329 +394204,49.757,72.86 +394205,46.73,77.233 +394206,47.357,75.773 +394207,47.949,74.31 +394208,48.507,72.847 +394209,45.338,77.2 +394210,46.012,75.747 +394211,46.652,74.292 +394212,47.257,72.836 +394213,43.946,77.167 +394214,44.668,75.721 +394215,45.354,74.274 +394216,46.007,72.826 +394217,42.554,77.133 +394218,43.324,75.695 +394219,44.057,74.257 +394220,44.756,72.818 +394221,41.163,77.097 +394222,41.98,75.669 +394223,42.759,74.239 +394224,43.504,72.81 +394225,39.772,77.061 +394226,40.636,75.642 +394227,41.462,74.223 +394228,42.252,72.804 +394229,38.382,77.023 +394230,39.292,75.615 +394231,40.164,74.206 +394232,41,72.799 +394233,36.992,76.984 +394234,37.949,75.587 +394235,38.866,74.19 +394236,39.746,72.795 +394237,35.603,76.944 +394238,36.606,75.559 +394239,37.568,74.175 +394240,38.492,72.792 +394241,34.215,76.903 +394242,35.263,75.53 +394243,36.269,74.159 +394244,37.238,72.79 +394245,32.827,76.861 +394246,33.92,75.502 +394247,34.97,74.144 +394248,35.982,72.789 +394249,31.44,76.817 +394250,32.578,75.473 +394251,33.671,74.13 +394252,34.726,72.79 +394253,30.054,76.773 +394254,31.236,75.443 +394255,32.372,74.116 +394256,33.469,72.791 +394257,28.669,76.728 +394258,29.894,75.413 +394259,31.073,74.102 +394260,32.211,72.794 +394261,27.285,76.681 +394262,28.552,75.383 +394263,29.773,74.088 +394264,30.952,72.798 +394265,25.901,76.634 +394266,27.211,75.353 +394267,28.473,74.075 +394268,29.692,72.802 +394269,24.518,76.585 +394270,25.87,75.322 +394271,27.172,74.063 +394272,28.431,72.808 +394273,23.137,76.536 +394274,24.53,75.291 +394275,25.872,74.05 +394276,27.17,72.815 +394277,21.756,76.485 +394278,23.189,75.259 +394279,24.571,74.038 +394280,25.907,72.823 +394281,20.376,76.434 +394282,21.85,75.227 +394283,23.27,74.026 +394284,24.643,72.832 +394285,18.998,76.381 +394286,20.51,75.195 +394287,21.968,74.015 +394288,23.378,72.841 +394289,17.62,76.328 +394290,19.171,75.163 +394291,20.666,74.004 +394292,22.112,72.852 +394293,16.244,76.274 +394294,17.832,75.13 +394295,19.364,73.993 +394296,20.845,72.864 +394297,14.868,76.218 +394298,16.494,75.097 +394299,18.061,73.983 +394300,19.577,72.876 +394301,13.494,76.162 +394302,15.156,75.064 +394303,16.758,73.973 +394304,18.308,72.89 +394305,12.121,76.105 +394306,13.819,75.03 +394307,15.455,73.963 +394308,17.038,72.904 +394309,10.75,76.048 +394310,12.482,74.996 +394311,14.151,73.953 +394312,15.766,72.919 +394313,9.3791,75.989 +394314,11.145,74.962 +394315,12.847,73.944 +394316,14.493,72.935 +394317,8.0099,75.929 +394318,9.8087,74.927 +394319,11.542,73.935 +394320,13.219,72.952 +394321,6.642,75.869 +394322,8.473,74.893 +394323,10.237,73.926 +394324,11.943,72.969 +394325,5.2755,75.808 +394326,7.1377,74.858 +394327,8.9315,73.918 +394328,10.666,72.988 +394329,3.9104,75.746 +394330,5.8029,74.822 +394331,7.6256,73.909 +394332,9.3882,73.007 +394333,2.5466,75.684 +394334,4.4686,74.787 +394335,6.3193,73.901 +394336,8.1088,73.027 +394337,1.1843,75.62 +394338,3.1347,74.751 +394339,5.0125,73.894 +394340,6.8279,73.047 +394341,359.82,75.556 +394342,1.8013,74.715 +394343,3.7053,73.886 +394344,5.5457,73.068 +394345,358.46,75.492 +394346,0.46847,74.679 +394347,2.3976,73.879 +394348,4.262,73.09 +394349,357.11,75.426 +394350,359.14,74.643 +394351,1.0895,73.872 +394352,2.977,73.113 +394353,355.75,75.361 +394354,357.8,74.606 +394355,359.78,73.865 +394356,1.6905,73.136 +394357,354.39,75.294 +394358,356.47,74.569 +394359,358.47,73.858 +394360,0.40249,73.159 +394361,353.04,75.227 +394362,355.14,74.533 +394363,357.16,73.852 +394364,359.11,73.184 +394365,351.69,75.159 +394366,353.81,74.495 +394367,355.85,73.845 +394368,357.82,73.208 +394369,350.34,75.091 +394370,352.48,74.458 +394371,354.54,73.839 +394372,356.53,73.234 +394373,348.99,75.022 +394374,351.15,74.421 +394375,353.23,73.833 +394376,355.24,73.259 +394377,347.64,74.953 +394378,349.82,74.383 +394379,351.92,73.827 +394380,353.94,73.286 +394381,346.3,74.883 +394382,348.5,74.345 +394383,350.61,73.822 +394384,352.64,73.312 +394385,344.95,74.813 +394386,347.17,74.307 +394387,349.29,73.816 +394388,351.34,73.339 +394389,343.61,74.743 +394390,345.84,74.269 +394391,347.98,73.811 +394392,350.04,73.367 +394393,342.27,74.672 +394394,344.52,74.231 +394395,346.67,73.806 +394396,348.74,73.394 +394397,340.93,74.601 +394398,343.19,74.193 +394399,345.35,73.801 +394400,347.44,73.422 +394401,339.6,74.529 +394402,341.86,74.154 +394403,344.04,73.795 +394404,346.13,73.451 +394405,338.26,74.457 +394406,340.54,74.116 +394407,342.72,73.791 +394408,344.83,73.479 +394409,336.93,74.385 +394410,339.22,74.077 +394411,341.41,73.786 +394412,343.52,73.508 +394413,335.6,74.313 +394414,337.89,74.039 +394415,340.09,73.781 +394416,342.21,73.537 +394417,334.27,74.24 +394418,336.57,74 +394419,338.78,73.776 +394420,340.9,73.566 +394421,332.94,74.167 +394422,335.25,73.961 +394423,337.46,73.771 +394424,339.59,73.596 +394425,331.61,74.094 +394426,333.92,73.923 +394427,336.14,73.767 +394428,338.27,73.625 +394429,330.29,74.021 +394430,332.6,73.884 +394431,334.82,73.762 +394432,336.96,73.655 +394433,328.97,73.948 +394434,331.28,73.845 +394435,333.5,73.758 +394436,335.64,73.685 +394437,327.64,73.874 +394438,329.96,73.806 +394439,332.18,73.753 +394440,334.32,73.714 +394441,326.32,73.801 +394442,328.64,73.767 +394443,330.86,73.749 +394444,333,73.744 +394445,325.01,73.728 +394446,327.32,73.728 +394447,329.54,73.744 +394448,331.68,73.774 +394449,323.69,73.654 +394450,326.01,73.689 +394451,328.22,73.74 +394452,330.35,73.804 +394453,322.38,73.581 +394454,324.69,73.65 +394455,326.9,73.735 +394456,329.03,73.833 +394457,321.07,73.507 +394458,323.37,73.612 +394459,325.58,73.731 +394460,327.7,73.863 +394461,319.76,73.434 +394462,322.05,73.573 +394463,324.26,73.726 +394464,326.37,73.892 +394465,318.45,73.361 +394466,320.74,73.534 +394467,322.93,73.721 +394468,325.04,73.921 +394469,317.14,73.288 +394470,319.42,73.495 +394471,321.61,73.717 +394472,323.71,73.951 +394473,315.83,73.215 +394474,318.11,73.457 +394475,320.28,73.712 +394476,322.37,73.98 +394477,314.53,73.142 +394478,316.79,73.418 +394479,318.96,73.707 +394480,321.04,74.008 +394481,313.23,73.07 +394482,315.48,73.379 +394483,317.63,73.702 +394484,319.7,74.037 +394485,311.93,72.998 +394486,314.17,73.341 +394487,316.31,73.697 +394488,318.36,74.065 +394489,310.63,72.926 +394490,312.86,73.303 +394491,314.98,73.692 +394492,317.02,74.093 +394493,309.34,72.854 +394494,311.54,73.264 +394495,313.65,73.687 +394496,315.68,74.12 +394497,308.04,72.783 +394498,310.23,73.226 +394499,312.33,73.682 +394500,314.34,74.147 +394501,306.75,72.712 +394502,308.92,73.188 +394503,311,73.676 +394504,312.99,74.174 +394505,305.46,72.641 +394506,307.61,73.15 +394507,309.67,73.671 +394508,311.65,74.2 +394509,304.17,72.571 +394510,306.3,73.113 +394511,308.34,73.665 +394512,310.3,74.226 +394513,302.88,72.502 +394514,304.99,73.075 +394515,307.01,73.659 +394516,308.95,74.252 +394517,301.59,72.432 +394518,303.68,73.038 +394519,305.68,73.653 +394520,307.6,74.277 +394521,300.31,72.364 +394522,302.38,73.001 +394523,304.35,73.647 +394524,306.24,74.301 +394525,299.02,72.295 +394526,301.07,72.964 +394527,303.02,73.641 +394528,304.89,74.325 +394529,297.74,72.228 +394530,299.76,72.927 +394531,301.69,73.634 +394532,303.54,74.349 +394533,296.46,72.161 +394534,298.46,72.89 +394535,300.36,73.628 +394536,302.18,74.372 +394537,295.18,72.094 +394538,297.15,72.853 +394539,299.03,73.621 +394540,300.82,74.394 +394541,293.91,72.028 +394542,295.84,72.817 +394543,297.69,73.614 +394544,299.46,74.415 +394545,292.63,71.963 +394546,294.54,72.781 +394547,296.36,73.606 +394548,298.1,74.436 +394549,291.36,71.898 +394550,293.23,72.745 +394551,295.03,73.599 +394552,296.74,74.457 +394553,290.09,71.834 +394554,291.93,72.71 +394555,293.69,73.591 +394556,295.38,74.476 +394557,288.82,71.771 +394558,290.63,72.674 +394559,292.36,73.583 +394560,294.01,74.495 +394561,287.55,71.709 +394562,289.32,72.639 +394563,291.02,73.575 +394564,292.65,74.513 +394565,286.28,71.647 +394566,288.02,72.604 +394567,289.69,73.566 +394568,291.28,74.53 +394569,285.01,71.586 +394570,286.72,72.57 +394571,288.35,73.558 +394572,289.91,74.547 +394573,283.74,71.526 +394574,285.42,72.535 +394575,287.01,73.548 +394576,288.54,74.563 +394577,282.48,71.467 +394578,284.12,72.501 +394579,285.68,73.539 +394580,287.17,74.578 +394581,281.22,71.408 +394582,282.82,72.468 +394583,284.34,73.53 +394584,285.8,74.592 +394585,279.96,71.351 +394586,281.52,72.434 +394587,283,73.52 +394588,284.42,74.605 +394589,278.69,71.294 +394590,280.22,72.401 +394591,281.67,73.51 +394592,283.05,74.618 +394593,277.43,71.238 +394594,278.92,72.368 +394595,280.33,73.499 +394596,281.67,74.629 +394597,276.18,71.183 +394598,277.62,72.336 +394599,278.99,73.488 +394600,280.3,74.64 +394601,274.92,71.129 +394602,276.32,72.303 +394603,277.65,73.477 +394604,278.92,74.65 +394605,273.66,71.077 +394606,275.02,72.271 +394607,276.31,73.466 +394608,277.54,74.658 +394609,272.41,71.025 +394610,273.72,72.24 +394611,274.97,73.454 +394612,276.16,74.666 +394613,271.15,70.974 +394614,272.42,72.208 +394615,273.63,73.442 +394616,274.78,74.673 +394617,269.9,70.924 +394618,271.13,72.178 +394619,272.29,73.43 +394620,273.4,74.679 +394621,268.65,70.875 +394622,269.83,72.147 +394623,270.95,73.417 +394624,272.02,74.684 +394625,267.4,70.827 +394626,268.53,72.117 +394627,269.61,73.404 +394628,270.63,74.687 +394629,266.15,70.78 +394630,267.24,72.087 +394631,268.27,73.391 +394632,269.25,74.69 +394633,264.9,70.734 +394634,265.94,72.057 +394635,266.93,73.377 +394636,267.86,74.692 +394637,263.65,70.689 +394638,264.64,72.028 +394639,265.59,73.363 +394640,266.48,74.693 +394641,262.4,70.646 +394642,263.35,71.999 +394643,264.24,73.349 +394644,265.09,74.692 +394645,261.15,70.603 +394646,262.05,71.971 +394647,262.9,73.334 +394648,263.7,74.691 +394649,259.91,70.562 +394650,260.76,71.943 +394651,261.56,73.319 +394652,262.32,74.689 +394653,258.66,70.522 +394654,259.46,71.915 +394655,260.22,73.303 +394656,260.93,74.685 +394657,257.41,70.483 +394658,258.17,71.887 +394659,258.88,73.287 +394660,259.54,74.68 +394661,256.17,70.445 +394662,256.87,71.86 +394663,257.53,73.271 +394664,258.15,74.674 +394665,254.92,70.408 +394666,255.58,71.834 +394667,256.19,73.254 +394668,256.76,74.668 +394669,253.68,70.373 +394670,254.29,71.808 +394671,254.85,73.237 +394672,255.37,74.659 +394673,252.44,70.338 +394674,252.99,71.782 +394675,253.5,73.22 +394676,253.98,74.65 +394677,251.19,70.305 +394678,251.7,71.756 +394679,252.16,73.202 +394680,252.58,74.64 +394681,249.95,70.273 +394682,250.4,71.731 +394683,250.82,73.184 +394684,251.19,74.628 +394685,248.71,70.242 +394686,249.11,71.707 +394687,249.47,73.165 +394688,249.8,74.616 +394689,247.47,70.212 +394690,247.82,71.683 +394691,248.13,73.146 +394692,248.41,74.602 +394693,246.22,70.184 +394694,246.52,71.659 +394695,246.79,73.127 +394696,247.01,74.587 +394697,244.98,70.157 +394698,245.23,71.635 +394699,245.44,73.107 +394700,245.62,74.571 +394701,243.74,70.131 +394702,243.94,71.612 +394703,244.1,73.087 +394704,244.23,74.554 +394705,242.5,70.106 +394706,242.64,71.59 +394707,242.76,73.066 +394708,242.83,74.535 +394709,241.26,70.082 +394710,241.35,71.567 +394711,241.41,73.046 +394712,241.44,74.516 +394713,240.02,70.06 +394714,240.06,71.545 +394715,240.07,73.024 +394716,240.04,74.495 +394717,238.78,70.039 +394718,238.77,71.524 +394719,238.72,73.003 +394720,238.65,74.473 +394721,237.53,70.019 +394722,237.47,71.503 +394723,237.38,72.98 +394724,237.25,74.45 +394725,236.29,70 +394726,236.18,71.482 +394727,236.04,72.958 +394728,235.86,74.425 +394729,235.05,69.983 +394730,234.89,71.462 +394731,234.69,72.935 +394732,234.47,74.4 +394733,233.81,69.967 +394734,233.59,71.442 +394735,233.35,72.912 +394736,233.07,74.373 +394737,232.57,69.951 +394738,232.3,71.423 +394739,232,72.888 +394740,231.68,74.345 +394741,231.32,69.938 +394742,231.01,71.404 +394743,230.66,72.864 +394744,230.28,74.316 +394745,230.08,69.925 +394746,229.72,71.385 +394747,229.32,72.839 +394748,228.89,74.286 +394749,228.84,69.914 +394750,228.42,71.367 +394751,227.97,72.814 +394752,227.49,74.255 +394753,227.6,69.903 +394754,227.13,71.349 +394755,226.63,72.789 +394756,226.1,74.222 +394757,226.35,69.894 +394758,225.84,71.332 +394759,225.29,72.764 +394760,224.71,74.189 +394761,225.11,69.886 +394762,224.54,71.314 +394763,223.94,72.738 +394764,223.31,74.154 +394765,223.86,69.88 +394766,223.25,71.298 +394767,222.6,72.711 +394768,221.92,74.118 +394769,222.62,69.874 +394770,221.95,71.281 +394771,221.26,72.684 +394772,220.53,74.081 +394773,221.37,69.87 +394774,220.66,71.266 +394775,219.92,72.657 +394776,219.14,74.043 +394777,220.13,69.866 +394778,219.37,71.25 +394779,218.57,72.63 +394780,217.75,74.004 +394781,218.88,69.864 +394782,218.07,71.235 +394783,217.23,72.602 +394784,216.36,73.963 +394785,217.63,69.863 +394786,216.78,71.22 +394787,215.89,72.573 +394788,214.97,73.922 +394789,216.39,69.863 +394790,215.48,71.206 +394791,214.55,72.545 +394792,213.58,73.879 +394793,215.14,69.864 +394794,214.19,71.191 +394795,213.21,72.516 +394796,212.19,73.836 +394797,213.89,69.867 +394798,212.89,71.178 +394799,211.86,72.486 +394800,210.8,73.791 +394801,212.64,69.87 +394802,211.6,71.164 +394803,210.52,72.457 +394804,209.41,73.746 +394805,211.39,69.874 +394806,210.3,71.151 +394807,209.18,72.427 +394808,208.02,73.699 +394809,210.13,69.88 +394810,209.01,71.139 +394811,207.84,72.396 +394812,206.64,73.651 +394813,208.88,69.886 +394814,207.71,71.126 +394815,206.5,72.365 +394816,205.25,73.602 +394817,207.63,69.894 +394818,206.41,71.114 +394819,205.16,72.334 +394820,203.87,73.552 +394821,206.37,69.902 +394822,205.12,71.103 +394823,203.82,72.303 +394824,202.48,73.502 +394825,205.12,69.911 +394826,203.82,71.091 +394827,202.48,72.271 +394828,201.1,73.45 +394829,203.86,69.922 +394830,202.52,71.08 +394831,201.14,72.239 +394832,199.72,73.397 +394833,202.6,69.933 +394834,201.22,71.069 +394835,199.81,72.207 +394836,198.34,73.344 +394837,201.34,69.945 +394838,199.93,71.059 +394839,198.47,72.174 +394840,196.96,73.289 +394841,200.08,69.958 +394842,198.63,71.049 +394843,197.13,72.141 +394844,195.58,73.234 +394845,198.82,69.972 +394846,197.33,71.039 +394847,195.79,72.108 +394848,194.2,73.177 +394849,197.56,69.987 +394850,196.03,71.03 +394851,194.45,72.074 +394852,192.83,73.12 +394853,196.29,70.003 +394854,194.73,71.02 +394855,193.12,72.04 +394856,191.45,73.062 +394857,195.03,70.02 +394858,193.43,71.011 +394859,191.78,72.006 +394860,190.08,73.003 +394861,193.76,70.037 +394862,192.13,71.003 +394863,190.45,71.972 +394864,188.7,72.943 +394865,192.5,70.055 +394866,190.83,70.994 +394867,189.11,71.937 +394868,187.33,72.883 +394869,191.23,70.074 +394870,189.53,70.986 +394871,187.78,71.902 +394872,185.96,72.822 +394873,189.96,70.094 +394874,188.23,70.978 +394875,186.44,71.867 +394876,184.59,72.76 +394877,188.68,70.114 +394878,186.92,70.97 +394879,185.11,71.831 +394880,183.22,72.697 +394881,187.41,70.135 +394882,185.62,70.963 +394883,183.77,71.796 +394884,181.86,72.634 +394885,186.14,70.157 +394886,184.32,70.956 +394887,182.44,71.76 +394888,180.49,72.569 +394889,184.86,70.179 +394890,183.02,70.948 +394891,181.11,71.724 +394892,179.13,72.505 +394893,183.59,70.202 +394894,181.71,70.942 +394895,179.78,71.687 +394896,177.77,72.439 +394897,182.31,70.225 +394898,180.41,70.935 +394899,178.44,71.651 +394900,176.41,72.373 +394901,181.03,70.25 +394902,179.1,70.929 +394903,177.11,71.614 +394904,175.05,72.306 +394905,179.75,70.274 +394906,177.8,70.922 +394907,175.78,71.577 +394908,173.69,72.239 +394909,178.46,70.299 +394910,176.49,70.916 +394911,174.45,71.54 +394912,172.33,72.171 +394913,177.18,70.325 +394914,175.19,70.91 +394915,173.12,71.503 +394916,170.98,72.103 +394917,175.89,70.351 +394918,173.88,70.904 +394919,171.79,71.466 +394920,169.62,72.034 +394921,174.61,70.378 +394922,172.57,70.899 +394923,170.46,71.428 +394924,168.27,71.965 +394925,173.32,70.405 +394926,171.26,70.893 +394927,169.14,71.39 +394928,166.92,71.895 +394929,172.03,70.432 +394930,169.96,70.888 +394931,167.81,71.352 +394932,165.57,71.825 +394933,170.73,70.46 +394934,168.65,70.883 +394935,166.48,71.314 +394936,164.23,71.754 +394937,169.44,70.488 +394938,167.34,70.878 +394939,165.16,71.276 +394940,162.88,71.683 +394941,168.14,70.516 +394942,166.03,70.873 +394943,163.83,71.238 +394944,161.54,71.612 +394945,166.85,70.545 +394946,164.72,70.868 +394947,162.51,71.2 +394948,160.2,71.54 +394949,165.55,70.574 +394950,163.41,70.863 +394951,161.18,71.161 +394952,158.86,71.468 +394953,164.25,70.603 +394954,162.09,70.858 +394955,159.86,71.123 +394956,157.52,71.396 +394957,162.95,70.632 +394958,160.78,70.854 +394959,158.53,71.084 +394960,156.18,71.324 +394961,161.64,70.662 +394962,159.47,70.849 +394963,157.21,71.045 +394964,154.85,71.251 +394965,160.34,70.691 +394966,158.16,70.844 +394967,155.89,71.006 +394968,153.52,71.178 +394969,159.03,70.721 +394970,156.84,70.84 +394971,154.57,70.968 +394972,152.19,71.105 +394973,157.72,70.751 +394974,155.53,70.835 +394975,153.25,70.929 +394976,150.86,71.032 +394977,156.41,70.781 +394978,154.21,70.831 +394979,151.93,70.89 +394980,149.53,70.959 +394981,155.1,70.81 +394982,152.9,70.826 +394983,150.61,70.851 +394984,148.21,70.886 +394985,153.79,70.84 +394986,151.58,70.822 +394987,149.29,70.812 +394988,146.88,70.812 +394989,152.47,70.87 +394990,150.27,70.817 +394991,147.97,70.773 +394992,145.56,70.739 +394993,151.15,70.9 +394994,148.95,70.813 +394995,146.65,70.734 +394996,144.24,70.665 +394997,149.84,70.93 +394998,147.63,70.808 +394999,145.33,70.695 +395000,142.92,70.592 +395001,148.52,70.959 +395002,146.31,70.804 +395003,144.02,70.657 +395004,141.61,70.519 +395005,147.19,70.989 +395006,145,70.799 +395007,142.7,70.618 +395008,140.29,70.445 +395009,145.87,71.018 +395010,143.68,70.795 +395011,141.38,70.579 +395012,138.98,70.372 +395013,144.54,71.047 +395014,142.36,70.79 +395015,140.07,70.54 +395016,137.67,70.299 +395017,143.22,71.076 +395018,141.04,70.785 +395019,138.76,70.501 +395020,136.36,70.227 +395021,141.89,71.105 +395022,139.71,70.78 +395023,137.44,70.463 +395024,135.05,70.154 +395025,140.56,71.133 +395026,138.39,70.775 +395027,136.13,70.424 +395028,133.75,70.082 +395029,139.23,71.161 +395030,137.07,70.77 +395031,134.82,70.386 +395032,132.45,70.01 +395033,137.89,71.189 +395034,135.75,70.765 +395035,133.5,70.348 +395036,131.14,69.938 +395037,136.56,71.217 +395038,134.43,70.76 +395039,132.19,70.309 +395040,129.85,69.866 +395041,135.22,71.244 +395042,133.1,70.755 +395043,130.88,70.271 +395044,128.55,69.795 +395045,133.88,71.27 +395046,131.78,70.749 +395047,129.57,70.233 +395048,127.25,69.724 +395049,132.54,71.297 +395050,130.45,70.743 +395051,128.26,70.195 +395052,125.96,69.654 +395053,131.2,71.322 +395054,129.13,70.738 +395055,126.95,70.157 +395056,124.67,69.584 +395057,129.86,71.348 +395058,127.8,70.732 +395059,125.65,70.12 +395060,123.38,69.514 +395061,128.51,71.372 +395062,126.48,70.725 +395063,124.34,70.082 +395064,122.09,69.445 +395065,127.17,71.397 +395066,125.15,70.719 +395067,123.03,70.045 +395068,120.8,69.376 +395069,125.82,71.42 +395070,123.82,70.713 +395071,121.72,70.008 +395072,119.51,69.308 +395073,124.47,71.444 +395074,122.49,70.706 +395075,120.42,69.971 +395076,118.23,69.241 +395077,123.12,71.466 +395078,121.16,70.699 +395079,119.11,69.934 +395080,116.95,69.174 +395081,121.77,71.488 +395082,119.84,70.692 +395083,117.81,69.898 +395084,115.67,69.108 +395085,120.41,71.509 +395086,118.51,70.685 +395087,116.5,69.862 +395088,114.39,69.042 +395089,119.06,71.53 +395090,117.18,70.677 +395091,115.2,69.825 +395092,113.11,68.977 +395093,117.7,71.55 +395094,115.85,70.669 +395095,113.9,69.79 +395096,111.84,68.912 +395097,116.34,71.569 +395098,114.52,70.661 +395099,112.59,69.754 +395100,110.56,68.849 +395101,114.98,71.587 +395102,113.18,70.653 +395103,111.29,69.719 +395104,109.29,68.786 +395105,113.62,71.605 +395106,111.85,70.645 +395107,109.99,69.683 +395108,108.02,68.723 +395109,112.26,71.622 +395110,110.52,70.636 +395111,108.69,69.648 +395112,106.75,68.662 +395113,110.9,71.638 +395114,109.19,70.627 +395115,107.39,69.614 +395116,105.49,68.601 +395117,109.53,71.653 +395118,107.85,70.617 +395119,106.09,69.579 +395120,104.22,68.541 +395121,108.17,71.668 +395122,106.52,70.608 +395123,104.79,69.545 +395124,102.95,68.482 +395125,106.8,71.681 +395126,105.19,70.598 +395127,103.49,69.511 +395128,101.69,68.424 +395129,105.43,71.694 +395130,103.85,70.588 +395131,102.19,69.478 +395132,100.43,68.366 +395133,104.06,71.706 +395134,102.52,70.577 +395135,100.89,69.445 +395136,99.169,68.31 +395137,102.69,71.717 +395138,101.18,70.566 +395139,99.592,69.412 +395140,97.91,68.254 +395141,101.32,71.727 +395142,99.846,70.555 +395143,98.294,69.379 +395144,96.653,68.2 +395145,99.944,71.736 +395146,98.51,70.544 +395147,96.997,69.347 +395148,95.396,68.146 +395149,98.57,71.744 +395150,97.174,70.532 +395151,95.7,69.315 +395152,94.141,68.093 +395153,97.194,71.751 +395154,95.837,70.52 +395155,94.404,69.283 +395156,92.887,68.042 +395157,95.817,71.757 +395158,94.5,70.508 +395159,93.108,69.252 +395160,91.634,67.991 +395161,94.439,71.762 +395162,93.163,70.495 +395163,91.813,69.221 +395164,90.382,67.941 +395165,93.061,71.767 +395166,91.825,70.482 +395167,90.517,69.19 +395168,89.131,67.892 +395169,91.681,71.77 +395170,90.487,70.468 +395171,89.223,69.159 +395172,87.882,67.845 +395173,90.3,71.772 +395174,89.148,70.454 +395175,87.928,69.129 +395176,86.633,67.798 +395177,88.918,71.773 +395178,87.81,70.44 +395179,86.634,69.1 +395180,85.386,67.753 +395181,87.536,71.772 +395182,86.47,70.426 +395183,85.34,69.071 +395184,84.139,67.708 +395185,86.152,71.771 +395186,85.131,70.411 +395187,84.047,69.042 +395188,82.893,67.665 +395189,84.768,71.769 +395190,83.792,70.396 +395191,82.754,69.013 +395192,81.648,67.623 +395193,83.383,71.766 +395194,82.452,70.38 +395195,81.461,68.985 +395196,80.404,67.582 +395197,81.997,71.761 +395198,81.112,70.364 +395199,80.168,68.957 +395200,79.161,67.542 +395201,80.61,71.755 +395202,79.771,70.347 +395203,78.876,68.93 +395204,77.918,67.503 +395205,79.222,71.749 +395206,78.431,70.331 +395207,77.584,68.902 +395208,76.677,67.465 +395209,77.834,71.741 +395210,77.09,70.313 +395211,76.292,68.876 +395212,75.436,67.429 +395213,76.446,71.732 +395214,75.749,70.296 +395215,75,68.849 +395216,74.195,67.394 +395217,75.056,71.721 +395218,74.408,70.278 +395219,73.709,68.823 +395220,72.955,67.36 +395221,73.666,71.71 +395222,73.067,70.26 +395223,72.418,68.798 +395224,71.716,67.327 +395225,72.276,71.697 +395226,71.725,70.241 +395227,71.127,68.773 +395228,70.477,67.295 +395229,70.885,71.684 +395230,70.383,70.222 +395231,69.836,68.748 +395232,69.239,67.264 +395233,69.493,71.669 +395234,69.042,70.202 +395235,68.545,68.724 +395236,68.001,67.235 +395237,68.101,71.653 +395238,67.7,70.182 +395239,67.254,68.7 +395240,66.763,67.207 +395241,66.709,71.635 +395242,66.358,70.162 +395243,65.964,68.676 +395244,65.526,67.18 +395245,65.316,71.617 +395246,65.016,70.141 +395247,64.674,68.653 +395248,64.289,67.154 +395249,63.923,71.597 +395250,63.673,70.12 +395251,63.384,68.63 +395252,63.052,67.13 +395253,62.53,71.577 +395254,62.331,70.098 +395255,62.094,68.608 +395256,61.816,67.107 +395257,61.136,71.554 +395258,60.989,70.076 +395259,60.804,68.586 +395260,60.579,67.085 +395261,59.743,71.531 +395262,59.646,70.054 +395263,59.514,68.564 +395264,59.343,67.064 +395265,58.349,71.507 +395266,58.304,70.031 +395267,58.224,68.543 +395268,58.107,67.045 +395269,56.954,71.481 +395270,56.961,70.008 +395271,56.934,68.522 +395272,56.871,67.026 +395273,55.56,71.454 +395274,55.619,69.984 +395275,55.644,68.502 +395276,55.635,67.009 +395277,54.166,71.426 +395278,54.276,69.96 +395279,54.354,68.482 +395280,54.399,66.993 +395281,52.771,71.397 +395282,52.934,69.936 +395283,53.065,68.462 +395284,53.162,66.979 +395285,51.377,71.367 +395286,51.591,69.911 +395287,51.775,68.443 +395288,51.926,66.965 +395289,49.983,71.335 +395290,50.249,69.886 +395291,50.485,68.424 +395292,50.69,66.953 +395293,48.588,71.303 +395294,48.907,69.86 +395295,49.195,68.406 +395296,49.453,66.942 +395297,47.194,71.269 +395298,47.564,69.834 +395299,47.905,68.388 +395300,48.216,66.932 +395301,45.8,71.234 +395302,46.222,69.808 +395303,46.615,68.37 +395304,46.979,66.923 +395305,44.406,71.198 +395306,44.88,69.781 +395307,45.325,68.353 +395308,45.741,66.916 +395309,43.013,71.16 +395310,43.538,69.754 +395311,44.035,68.336 +395312,44.503,66.909 +395313,41.619,71.122 +395314,42.196,69.726 +395315,42.745,68.32 +395316,43.265,66.904 +395317,40.226,71.082 +395318,40.855,69.698 +395319,41.454,68.304 +395320,42.026,66.9 +395321,38.833,71.041 +395322,39.513,69.67 +395323,40.164,68.288 +395324,40.786,66.897 +395325,37.441,70.999 +395326,38.172,69.641 +395327,38.873,68.272 +395328,39.546,66.896 +395329,36.049,70.956 +395330,36.83,69.612 +395331,37.582,68.257 +395332,38.306,66.895 +395333,34.658,70.912 +395334,35.489,69.582 +395335,36.291,68.243 +395336,37.065,66.895 +395337,33.267,70.867 +395338,34.148,69.552 +395339,35,68.228 +395340,35.823,66.897 +395341,31.876,70.821 +395342,32.808,69.522 +395343,33.708,68.215 +395344,34.581,66.9 +395345,30.487,70.774 +395346,31.467,69.492 +395347,32.417,68.201 +395348,33.338,66.903 +395349,29.097,70.725 +395350,30.127,69.461 +395351,31.125,68.188 +395352,32.094,66.908 +395353,27.709,70.676 +395354,28.787,69.429 +395355,29.833,68.175 +395356,30.849,66.914 +395357,26.321,70.626 +395358,27.447,69.398 +395359,28.541,68.162 +395360,29.603,66.921 +395361,24.934,70.574 +395362,26.108,69.366 +395363,27.248,68.15 +395364,28.357,66.929 +395365,23.547,70.522 +395366,24.769,69.333 +395367,25.955,68.138 +395368,27.109,66.938 +395369,22.161,70.468 +395370,23.43,69.301 +395371,24.662,68.126 +395372,25.861,66.947 +395373,20.777,70.414 +395374,22.091,69.268 +395375,23.369,68.115 +395376,24.612,66.958 +395377,19.393,70.359 +395378,20.753,69.234 +395379,22.075,68.104 +395380,23.362,66.97 +395381,18.01,70.303 +395382,19.415,69.201 +395383,20.781,68.094 +395384,22.11,66.983 +395385,16.628,70.245 +395386,18.078,69.167 +395387,19.486,68.083 +395388,20.858,66.996 +395389,15.246,70.187 +395390,16.741,69.133 +395391,18.192,68.073 +395392,19.604,67.011 +395393,13.866,70.128 +395394,15.404,69.098 +395395,16.896,68.063 +395396,18.35,67.026 +395397,12.487,70.069 +395398,14.067,69.063 +395399,15.601,68.054 +395400,17.094,67.042 +395401,11.109,70.008 +395402,12.731,69.028 +395403,14.305,68.045 +395404,15.837,67.059 +395405,9.7325,69.947 +395406,11.396,68.993 +395407,13.009,68.036 +395408,14.579,67.077 +395409,8.3568,69.884 +395410,10.06,68.957 +395411,11.712,68.027 +395412,13.319,67.095 +395413,6.9823,69.821 +395414,8.7256,68.921 +395415,10.415,68.018 +395416,12.059,67.114 +395417,5.609,69.758 +395418,7.3912,68.885 +395419,9.118,68.01 +395420,10.797,67.134 +395421,4.237,69.693 +395422,6.0572,68.848 +395423,7.8202,68.002 +395424,9.5333,67.155 +395425,2.8662,69.628 +395426,4.7237,68.812 +395427,6.522,67.994 +395428,8.2686,67.177 +395429,1.4968,69.562 +395430,3.3907,68.775 +395431,5.2233,67.987 +395432,7.0025,67.199 +395433,0.12867,69.496 +395434,2.0581,68.738 +395435,3.9241,67.979 +395436,5.7351,67.221 +395437,358.76,69.428 +395438,0.72604,68.7 +395439,2.6245,67.972 +395440,4.4662,67.245 +395441,357.4,69.36 +395442,359.39,68.663 +395443,1.3245,67.965 +395444,3.1959,67.268 +395445,356.03,69.292 +395446,358.06,68.625 +395447,0.023978,67.958 +395448,1.9241,67.293 +395449,354.67,69.223 +395450,356.73,68.587 +395451,358.72,67.952 +395452,0.6508,67.318 +395453,353.31,69.153 +395454,355.4,68.549 +395455,357.42,67.945 +395456,359.38,67.343 +395457,351.95,69.083 +395458,354.07,68.511 +395459,356.12,67.939 +395460,358.1,67.369 +395461,350.59,69.013 +395462,352.74,68.472 +395463,354.82,67.933 +395464,356.82,67.396 +395465,349.24,68.942 +395466,351.42,68.433 +395467,353.51,67.927 +395468,355.54,67.422 +395469,347.88,68.87 +395470,350.09,68.395 +395471,352.21,67.921 +395472,354.26,67.45 +395473,346.53,68.798 +395474,348.76,68.356 +395475,350.91,67.915 +395476,352.98,67.477 +395477,345.18,68.726 +395478,347.43,68.317 +395479,349.6,67.909 +395480,351.69,67.505 +395481,343.83,68.653 +395482,346.11,68.277 +395483,348.3,67.904 +395484,350.41,67.534 +395485,342.48,68.58 +395486,344.78,68.238 +395487,346.99,67.899 +395488,349.12,67.562 +395489,341.13,68.507 +395490,343.46,68.199 +395491,345.69,67.893 +395492,347.83,67.591 +395493,339.79,68.433 +395494,342.13,68.159 +395495,344.38,67.888 +395496,346.54,67.62 +395497,338.44,68.359 +395498,340.81,68.119 +395499,343.07,67.883 +395500,345.25,67.649 +395501,337.1,68.285 +395502,339.48,68.08 +395503,341.76,67.878 +395504,343.96,67.679 +395505,335.76,68.211 +395506,338.16,68.04 +395507,340.46,67.872 +395508,342.66,67.708 +395509,334.43,68.136 +395510,336.84,68 +395511,339.15,67.867 +395512,341.36,67.738 +395513,333.09,68.061 +395514,335.52,67.96 +395515,337.84,67.862 +395516,340.06,67.768 +395517,331.76,67.986 +395518,334.2,67.92 +395519,336.53,67.857 +395520,338.76,67.798 +395521,330.43,67.911 +395522,332.88,67.88 +395523,335.22,67.852 +395524,337.46,67.828 +395525,329.09,67.836 +395526,331.56,67.84 +395527,333.91,67.847 +395528,336.16,67.858 +395529,327.77,67.761 +395530,330.24,67.8 +395531,332.59,67.842 +395532,334.85,67.888 +395533,326.44,67.686 +395534,328.92,67.76 +395535,331.28,67.837 +395536,333.54,67.918 +395537,325.12,67.611 +395538,327.6,67.72 +395539,329.97,67.832 +395540,332.23,67.947 +395541,323.79,67.536 +395542,326.28,67.68 +395543,328.66,67.827 +395544,330.92,67.977 +395545,322.47,67.461 +395546,324.97,67.64 +395547,327.34,67.822 +395548,329.61,68.007 +395549,321.15,67.386 +395550,323.65,67.6 +395551,326.03,67.817 +395552,328.3,68.036 +395553,319.84,67.312 +395554,322.34,67.56 +395555,324.71,67.812 +395556,326.98,68.065 +395557,318.52,67.237 +395558,321.02,67.52 +395559,323.4,67.806 +395560,325.66,68.095 +395561,317.21,67.163 +395562,319.71,67.481 +395563,322.08,67.801 +395564,324.34,68.123 +395565,315.9,67.088 +395566,318.39,67.441 +395567,320.76,67.796 +395568,323.02,68.152 +395569,314.59,67.015 +395570,317.08,67.401 +395571,319.44,67.79 +395572,321.7,68.18 +395573,313.28,66.941 +395574,315.77,67.362 +395575,318.13,67.784 +395576,320.37,68.208 +395577,311.98,66.867 +395578,314.46,67.322 +395579,316.81,67.778 +395580,319.05,68.236 +395581,310.67,66.794 +395582,313.15,67.283 +395583,315.49,67.772 +395584,317.72,68.263 +395585,309.37,66.722 +395586,311.84,67.244 +395587,314.17,67.766 +395588,316.39,68.29 +395589,308.07,66.649 +395590,310.53,67.204 +395591,312.85,67.76 +395592,315.06,68.316 +395593,306.77,66.577 +395594,309.22,67.165 +395595,311.53,67.754 +395596,313.72,68.342 +395597,305.48,66.506 +395598,307.91,67.127 +395599,310.21,67.747 +395600,312.39,68.367 +395601,304.18,66.435 +395602,306.6,67.088 +395603,308.88,67.741 +395604,311.05,68.392 +395605,302.89,66.364 +395606,305.29,67.049 +395607,307.56,67.734 +395608,309.72,68.417 +395609,301.6,66.294 +395610,303.99,67.011 +395611,306.24,67.727 +395612,308.38,68.44 +395613,300.31,66.225 +395614,302.68,66.973 +395615,304.92,67.719 +395616,307.03,68.464 +395617,299.03,66.156 +395618,301.38,66.935 +395619,303.59,67.712 +395620,305.69,68.486 +395621,297.74,66.088 +395622,300.07,66.897 +395623,302.27,67.704 +395624,304.35,68.508 +395625,296.46,66.02 +395626,298.77,66.859 +395627,300.94,67.696 +395628,303,68.53 +395629,295.18,65.953 +395630,297.46,66.822 +395631,299.62,67.688 +395632,301.65,68.55 +395633,293.9,65.886 +395634,296.16,66.785 +395635,298.29,67.68 +395636,300.3,68.57 +395637,292.62,65.821 +395638,294.86,66.748 +395639,296.96,67.671 +395640,298.95,68.59 +395641,291.35,65.756 +395642,293.55,66.711 +395643,295.63,67.662 +395644,297.6,68.608 +395645,290.07,65.691 +395646,292.25,66.674 +395647,294.31,67.653 +395648,296.25,68.626 +395649,288.8,65.628 +395650,290.95,66.638 +395651,292.98,67.643 +395652,294.89,68.643 +395653,287.53,65.565 +395654,289.65,66.602 +395655,291.65,67.634 +395656,293.54,68.659 +395657,286.26,65.503 +395658,288.35,66.566 +395659,290.32,67.624 +395660,292.18,68.674 +395661,284.99,65.442 +395662,287.05,66.531 +395663,288.99,67.613 +395664,290.82,68.689 +395665,283.73,65.382 +395666,285.75,66.496 +395667,287.66,67.603 +395668,289.46,68.702 +395669,282.46,65.322 +395670,284.46,66.461 +395671,286.33,67.592 +395672,288.1,68.715 +395673,281.2,65.264 +395674,283.16,66.426 +395675,285,67.581 +395676,286.73,68.727 +395677,279.94,65.206 +395678,281.86,66.392 +395679,283.67,67.569 +395680,285.37,68.738 +395681,278.68,65.15 +395682,280.57,66.358 +395683,282.33,67.557 +395684,284,68.748 +395685,277.42,65.094 +395686,279.27,66.324 +395687,281,67.545 +395688,282.63,68.757 +395689,276.16,65.039 +395690,277.97,66.291 +395691,279.67,67.533 +395692,281.27,68.765 +395693,274.91,64.986 +395694,276.68,66.257 +395695,278.34,67.52 +395696,279.9,68.772 +395697,273.66,64.933 +395698,275.38,66.225 +395699,277,67.507 +395700,278.52,68.778 +395701,272.4,64.881 +395702,274.09,66.192 +395703,275.67,67.493 +395704,277.15,68.783 +395705,271.15,64.831 +395706,272.8,66.16 +395707,274.33,67.479 +395708,275.78,68.787 +395709,269.9,64.781 +395710,271.5,66.128 +395711,273,67.465 +395712,274.4,68.789 +395713,268.65,64.732 +395714,270.21,66.097 +395715,271.66,67.45 +395716,273.03,68.791 +395717,267.41,64.685 +395718,268.92,66.066 +395719,270.33,67.435 +395720,271.65,68.792 +395721,266.16,64.639 +395722,267.62,66.035 +395723,268.99,67.42 +395724,270.27,68.791 +395725,264.91,64.593 +395726,266.33,66.005 +395727,267.66,67.404 +395728,268.9,68.79 +395729,263.67,64.549 +395730,265.04,65.975 +395731,266.32,67.388 +395732,267.52,68.787 +395733,262.43,64.506 +395734,263.75,65.945 +395735,264.98,67.372 +395736,266.14,68.784 +395737,261.19,64.465 +395738,262.46,65.916 +395739,263.65,67.355 +395740,264.75,68.779 +395741,259.94,64.424 +395742,261.17,65.887 +395743,262.31,67.337 +395744,263.37,68.773 +395745,258.7,64.385 +395746,259.88,65.859 +395747,260.97,67.32 +395748,261.99,68.765 +395749,257.47,64.346 +395750,258.59,65.831 +395751,259.63,67.302 +395752,260.6,68.757 +395753,256.23,64.309 +395754,257.3,65.803 +395755,258.29,67.283 +395756,259.22,68.748 +395757,254.99,64.273 +395758,256.01,65.776 +395759,256.95,67.264 +395760,257.83,68.737 +395761,253.75,64.239 +395762,254.72,65.749 +395763,255.62,67.245 +395764,256.45,68.725 +395765,252.52,64.205 +395766,253.43,65.722 +395767,254.28,67.225 +395768,255.06,68.712 +395769,251.28,64.173 +395770,252.14,65.696 +395771,252.94,67.205 +395772,253.67,68.697 +395773,250.05,64.142 +395774,250.85,65.671 +395775,251.6,67.184 +395776,252.28,68.682 +395777,248.81,64.112 +395778,249.57,65.645 +395779,250.26,67.163 +395780,250.89,68.665 +395781,247.58,64.083 +395782,248.28,65.62 +395783,248.92,67.142 +395784,249.5,68.647 +395785,246.34,64.056 +395786,246.99,65.596 +395787,247.58,67.12 +395788,248.11,68.628 +395789,245.11,64.03 +395790,245.7,65.572 +395791,246.24,67.098 +395792,246.72,68.607 +395793,243.88,64.005 +395794,244.42,65.548 +395795,244.9,67.075 +395796,245.33,68.586 +395797,242.65,63.982 +395798,243.13,65.525 +395799,243.56,67.052 +395800,243.94,68.563 +395801,241.42,63.959 +395802,241.84,65.502 +395803,242.22,67.029 +395804,242.55,68.539 +395805,240.19,63.938 +395806,240.56,65.479 +395807,240.88,67.005 +395808,241.16,68.513 +395809,238.95,63.918 +395810,239.27,65.457 +395811,239.54,66.98 +395812,239.76,68.487 +395813,237.72,63.9 +395814,237.98,65.435 +395815,238.2,66.955 +395816,238.37,68.459 +395817,236.49,63.882 +395818,236.69,65.414 +395819,236.86,66.93 +395820,236.98,68.43 +395821,235.26,63.866 +395822,235.41,65.393 +395823,235.51,66.905 +395824,235.58,68.4 +395825,234.03,63.851 +395826,234.12,65.373 +395827,234.17,66.879 +395828,234.19,68.368 +395829,232.8,63.838 +395830,232.84,65.352 +395831,232.83,66.852 +395832,232.8,68.336 +395833,231.57,63.825 +395834,231.55,65.333 +395835,231.49,66.825 +395836,231.4,68.302 +395837,230.34,63.814 +395838,230.26,65.313 +395839,230.15,66.798 +395840,230.01,68.267 +395841,229.11,63.804 +395842,228.98,65.294 +395843,228.81,66.77 +395844,228.61,68.23 +395845,227.88,63.795 +395846,227.69,65.276 +395847,227.47,66.742 +395848,227.22,68.193 +395849,226.65,63.788 +395850,226.4,65.258 +395851,226.13,66.714 +395852,225.83,68.154 +395853,225.41,63.781 +395854,225.12,65.24 +395855,224.79,66.685 +395856,224.43,68.114 +395857,224.18,63.776 +395858,223.83,65.223 +395859,223.45,66.655 +395860,223.04,68.073 +395861,222.95,63.772 +395862,222.54,65.206 +395863,222.11,66.626 +395864,221.64,68.031 +395865,221.72,63.769 +395866,221.26,65.189 +395867,220.77,66.595 +395868,220.25,67.987 +395869,220.49,63.768 +395870,219.97,65.173 +395871,219.43,66.565 +395872,218.86,67.943 +395873,219.25,63.767 +395874,218.68,65.157 +395875,218.09,66.534 +395876,217.47,67.897 +395877,218.02,63.767 +395878,217.39,65.141 +395879,216.75,66.503 +395880,216.07,67.85 +395881,216.78,63.769 +395882,216.11,65.126 +395883,215.41,66.471 +395884,214.68,67.802 +395885,215.55,63.772 +395886,214.82,65.111 +395887,214.07,66.439 +395888,213.29,67.753 +395889,214.31,63.776 +395890,213.53,65.097 +395891,212.73,66.406 +395892,211.9,67.703 +395893,213.08,63.781 +395894,212.24,65.083 +395895,211.39,66.374 +395896,210.51,67.652 +395897,211.84,63.787 +395898,210.96,65.069 +395899,210.05,66.34 +395900,209.12,67.6 +395901,210.6,63.794 +395902,209.67,65.055 +395903,208.71,66.307 +395904,207.73,67.546 +395905,209.36,63.802 +395906,208.38,65.042 +395907,207.37,66.273 +395908,206.34,67.492 +395909,208.12,63.811 +395910,207.09,65.03 +395911,206.03,66.239 +395912,204.95,67.437 +395913,206.88,63.821 +395914,205.8,65.017 +395915,204.7,66.204 +395916,203.56,67.38 +395917,205.64,63.832 +395918,204.51,65.005 +395919,203.36,66.169 +395920,202.17,67.323 +395921,204.4,63.844 +395922,203.22,64.993 +395923,202.02,66.134 +395924,200.79,67.265 +395925,203.16,63.857 +395926,201.93,64.982 +395927,200.68,66.098 +395928,199.4,67.205 +395929,201.91,63.87 +395930,200.64,64.97 +395931,199.35,66.062 +395932,198.02,67.145 +395933,200.67,63.885 +395934,199.35,64.959 +395935,198.01,66.026 +395936,196.63,67.084 +395937,199.42,63.901 +395938,198.06,64.949 +395939,196.67,65.99 +395940,195.25,67.022 +395941,198.17,63.917 +395942,196.77,64.938 +395943,195.34,65.953 +395944,193.87,66.959 +395945,196.92,63.934 +395946,195.48,64.928 +395947,194,65.916 +395948,192.49,66.895 +395949,195.67,63.952 +395950,194.19,64.918 +395951,192.67,65.878 +395952,191.11,66.83 +395953,194.42,63.971 +395954,192.9,64.909 +395955,191.33,65.841 +395956,189.73,66.765 +395957,193.17,63.991 +395958,191.6,64.899 +395959,190,65.803 +395960,188.35,66.699 +395961,191.92,64.011 +395962,190.31,64.89 +395963,188.66,65.764 +395964,186.97,66.631 +395965,190.66,64.032 +395966,189.02,64.881 +395967,187.33,65.726 +395968,185.6,66.564 +395969,189.41,64.054 +395970,187.72,64.873 +395971,186,65.687 +395972,184.22,66.495 +395973,188.15,64.076 +395974,186.43,64.864 +395975,184.67,65.648 +395976,182.85,66.426 +395977,186.89,64.099 +395978,185.13,64.856 +395979,183.33,65.609 +395980,181.48,66.356 +395981,185.63,64.123 +395982,183.84,64.848 +395983,182,65.569 +395984,180.11,66.285 +395985,184.37,64.147 +395986,182.54,64.84 +395987,180.67,65.53 +395988,178.74,66.214 +395989,183.1,64.172 +395990,181.25,64.832 +395991,179.34,65.49 +395992,177.37,66.142 +395993,181.84,64.197 +395994,179.95,64.825 +395995,178.01,65.45 +395996,176,66.07 +395997,180.57,64.223 +395998,178.66,64.818 +395999,176.68,65.409 +396000,174.64,65.997 +396001,179.31,64.249 +396002,177.36,64.81 +396003,175.35,65.369 +396004,173.27,65.923 +396005,178.04,64.276 +396006,176.06,64.803 +396007,174.02,65.328 +396008,171.91,65.849 +396009,176.77,64.303 +396010,174.76,64.796 +396011,172.69,65.288 +396012,170.55,65.775 +396013,175.49,64.33 +396014,173.46,64.79 +396015,171.37,65.247 +396016,169.19,65.7 +396017,174.22,64.358 +396018,172.16,64.783 +396019,170.04,65.205 +396020,167.83,65.624 +396021,172.95,64.386 +396022,170.86,64.776 +396023,168.71,65.164 +396024,166.48,65.548 +396025,171.67,64.415 +396026,169.56,64.77 +396027,167.39,65.123 +396028,165.12,65.472 +396029,170.39,64.444 +396030,168.26,64.763 +396031,166.06,65.081 +396032,163.77,65.396 +396033,169.11,64.473 +396034,166.96,64.757 +396035,164.74,65.04 +396036,162.42,65.319 +396037,167.83,64.502 +396038,165.66,64.751 +396039,163.41,64.998 +396040,161.07,65.242 +396041,166.54,64.532 +396042,164.36,64.745 +396043,162.09,64.956 +396044,159.72,65.164 +396045,165.26,64.561 +396046,163.05,64.739 +396047,160.76,64.914 +396048,158.37,65.086 +396049,163.97,64.591 +396050,161.75,64.733 +396051,159.44,64.872 +396052,157.03,65.008 +396053,162.68,64.621 +396054,160.45,64.727 +396055,158.12,64.83 +396056,155.69,64.93 +396057,161.39,64.651 +396058,159.14,64.721 +396059,156.8,64.788 +396060,154.35,64.852 +396061,160.1,64.681 +396062,157.84,64.715 +396063,155.48,64.746 +396064,153.01,64.774 +396065,158.81,64.711 +396066,156.53,64.709 +396067,154.16,64.704 +396068,151.67,64.695 +396069,157.51,64.741 +396070,155.22,64.703 +396071,152.84,64.661 +396072,150.34,64.617 +396073,156.21,64.771 +396074,153.92,64.697 +396075,151.52,64.619 +396076,149,64.538 +396077,154.92,64.801 +396078,152.61,64.691 +396079,150.2,64.577 +396080,147.67,64.46 +396081,153.61,64.831 +396082,151.3,64.684 +396083,148.88,64.535 +396084,146.34,64.381 +396085,152.31,64.861 +396086,149.99,64.678 +396087,147.57,64.492 +396088,145.01,64.303 +396089,151.01,64.891 +396090,148.68,64.672 +396091,146.25,64.45 +396092,143.69,64.224 +396093,149.7,64.92 +396094,147.37,64.666 +396095,144.93,64.408 +396096,142.36,64.146 +396097,148.39,64.949 +396098,146.06,64.66 +396099,143.62,64.366 +396100,141.04,64.068 +396101,147.08,64.978 +396102,144.75,64.653 +396103,142.31,64.324 +396104,139.72,63.99 +396105,145.77,65.007 +396106,143.44,64.647 +396107,140.99,64.282 +396108,138.4,63.912 +396109,144.46,65.036 +396110,142.13,64.64 +396111,139.68,64.24 +396112,137.09,63.834 +396113,143.14,65.064 +396114,140.82,64.633 +396115,138.37,64.198 +396116,135.77,63.757 +396117,141.83,65.092 +396118,139.5,64.627 +396119,137.05,64.156 +396120,134.46,63.68 +396121,140.51,65.119 +396122,138.19,64.62 +396123,135.74,64.115 +396124,133.15,63.603 +396125,139.19,65.146 +396126,136.87,64.613 +396127,134.43,64.073 +396128,131.85,63.527 +396129,137.87,65.172 +396130,135.56,64.605 +396131,133.12,64.032 +396132,130.54,63.451 +396133,136.54,65.199 +396134,134.24,64.598 +396135,131.81,63.99 +396136,129.24,63.375 +396137,135.22,65.224 +396138,132.93,64.59 +396139,130.51,63.949 +396140,127.93,63.3 +396141,133.89,65.249 +396142,131.61,64.583 +396143,129.2,63.908 +396144,126.63,63.226 +396145,132.56,65.274 +396146,130.29,64.575 +396147,127.89,63.867 +396148,125.34,63.151 +396149,131.23,65.298 +396150,128.97,64.566 +396151,126.58,63.826 +396152,124.04,63.078 +396153,129.9,65.321 +396154,127.66,64.558 +396155,125.28,63.786 +396156,122.75,63.005 +396157,128.57,65.344 +396158,126.34,64.55 +396159,123.97,63.745 +396160,121.45,62.932 +396161,127.23,65.366 +396162,125.02,64.541 +396163,122.67,63.705 +396164,120.16,62.86 +396165,125.89,65.388 +396166,123.7,64.532 +396167,121.36,63.665 +396168,118.88,62.789 +396169,124.56,65.409 +396170,122.38,64.522 +396171,120.06,63.626 +396172,117.59,62.718 +396173,123.22,65.429 +396174,121.05,64.513 +396175,118.76,63.586 +396176,116.31,62.648 +396177,121.87,65.448 +396178,119.73,64.503 +396179,117.46,63.547 +396180,115.02,62.578 +396181,120.53,65.467 +396182,118.41,64.493 +396183,116.16,63.508 +396184,113.74,62.51 +396185,119.19,65.485 +396186,117.09,64.483 +396187,114.85,63.469 +396188,112.47,62.442 +396189,117.84,65.502 +396190,115.76,64.472 +396191,113.55,63.43 +396192,111.19,62.375 +396193,116.49,65.518 +396194,114.44,64.462 +396195,112.25,63.392 +396196,109.91,62.308 +396197,115.14,65.533 +396198,113.11,64.45 +396199,110.96,63.354 +396200,108.64,62.243 +396201,113.79,65.548 +396202,111.79,64.439 +396203,109.66,63.316 +396204,107.37,62.178 +396205,112.44,65.561 +396206,110.46,64.427 +396207,108.36,63.278 +396208,106.1,62.115 +396209,111.08,65.574 +396210,109.14,64.415 +396211,107.06,63.241 +396212,104.83,62.052 +396213,109.73,65.586 +396214,107.81,64.403 +396215,105.77,63.204 +396216,103.57,61.99 +396217,108.37,65.596 +396218,106.48,64.39 +396219,104.47,63.167 +396220,102.3,61.929 +396221,107.01,65.606 +396222,105.16,64.377 +396223,103.17,63.131 +396224,101.04,61.869 +396225,105.65,65.615 +396226,103.83,64.364 +396227,101.88,63.095 +396228,99.782,61.809 +396229,104.29,65.623 +396230,102.5,64.35 +396231,100.58,63.059 +396232,98.524,61.751 +396233,102.93,65.63 +396234,101.17,64.336 +396235,99.291,63.024 +396236,97.266,61.694 +396237,101.56,65.635 +396238,99.842,64.321 +396239,97.997,62.989 +396240,96.011,61.638 +396241,100.2,65.64 +396242,98.512,64.306 +396243,96.704,62.954 +396244,94.757,61.583 +396245,98.831,65.644 +396246,97.182,64.291 +396247,95.412,62.92 +396248,93.505,61.529 +396249,97.464,65.646 +396250,95.851,64.276 +396251,94.12,62.886 +396252,92.254,61.476 +396253,96.095,65.648 +396254,94.52,64.26 +396255,92.829,62.852 +396256,91.004,61.425 +396257,94.725,65.648 +396258,93.188,64.243 +396259,91.538,62.819 +396260,89.756,61.374 +396261,93.353,65.647 +396262,91.856,64.227 +396263,90.247,62.786 +396264,88.509,61.325 +396265,91.981,65.645 +396266,90.524,64.21 +396267,88.957,62.753 +396268,87.264,61.276 +396269,90.607,65.642 +396270,89.191,64.192 +396271,87.668,62.721 +396272,86.02,61.229 +396273,89.232,65.638 +396274,87.858,64.174 +396275,86.378,62.689 +396276,84.778,61.183 +396277,87.857,65.632 +396278,86.525,64.156 +396279,85.09,62.658 +396280,83.536,61.138 +396281,86.48,65.626 +396282,85.191,64.137 +396283,83.801,62.627 +396284,82.296,61.095 +396285,85.102,65.618 +396286,83.857,64.118 +396287,82.513,62.596 +396288,81.057,61.052 +396289,83.723,65.609 +396290,82.523,64.098 +396291,81.226,62.566 +396292,79.819,61.011 +396293,82.344,65.598 +396294,81.188,64.078 +396295,79.939,62.536 +396296,78.582,60.971 +396297,80.963,65.587 +396298,79.853,64.058 +396299,78.652,62.506 +396300,77.347,60.932 +396301,79.581,65.574 +396302,78.518,64.037 +396303,77.365,62.477 +396304,76.112,60.895 +396305,78.199,65.56 +396306,77.182,64.016 +396307,76.079,62.449 +396308,74.878,60.859 +396309,76.816,65.545 +396310,75.847,63.994 +396311,74.793,62.42 +396312,73.645,60.824 +396313,75.432,65.528 +396314,74.511,63.972 +396315,73.508,62.392 +396316,72.413,60.79 +396317,74.047,65.51 +396318,73.174,63.949 +396319,72.222,62.365 +396320,71.182,60.758 +396321,72.662,65.491 +396322,71.838,63.926 +396323,70.937,62.338 +396324,69.952,60.727 +396325,71.276,65.471 +396326,70.501,63.903 +396327,69.653,62.311 +396328,68.722,60.697 +396329,69.889,65.449 +396330,69.164,63.879 +396331,68.368,62.285 +396332,67.493,60.669 +396333,68.501,65.426 +396334,67.827,63.854 +396335,67.084,62.259 +396336,66.265,60.641 +396337,67.113,65.402 +396338,66.49,63.83 +396339,65.8,62.234 +396340,65.037,60.615 +396341,65.725,65.377 +396342,65.152,63.804 +396343,64.516,62.209 +396344,63.81,60.591 +396345,64.336,65.35 +396346,63.815,63.779 +396347,63.233,62.184 +396348,62.583,60.567 +396349,62.946,65.322 +396350,62.477,63.753 +396351,61.949,62.16 +396352,61.357,60.545 +396353,61.556,65.293 +396354,61.139,63.726 +396355,60.666,62.137 +396356,60.131,60.525 +396357,60.166,65.262 +396358,59.801,63.699 +396359,59.383,62.113 +396360,58.906,60.505 +396361,58.775,65.23 +396362,58.463,63.672 +396363,58.1,62.09 +396364,57.68,60.487 +396365,57.384,65.197 +396366,57.125,63.644 +396367,56.817,62.068 +396368,56.455,60.47 +396369,55.992,65.163 +396370,55.787,63.615 +396371,55.534,62.046 +396372,55.231,60.455 +396373,54.601,65.127 +396374,54.448,63.587 +396375,54.252,62.024 +396376,54.006,60.441 +396377,53.209,65.09 +396378,53.11,63.557 +396379,52.969,62.003 +396380,52.782,60.428 +396381,51.817,65.052 +396382,51.772,63.528 +396383,51.687,61.982 +396384,51.558,60.416 +396385,50.424,65.012 +396386,50.433,63.498 +396387,50.404,61.962 +396388,50.333,60.405 +396389,49.032,64.971 +396390,49.095,63.467 +396391,49.122,61.942 +396392,49.109,60.396 +396393,47.639,64.929 +396394,47.757,63.436 +396395,47.839,61.922 +396396,47.885,60.388 +396397,46.247,64.886 +396398,46.418,63.405 +396399,46.557,61.903 +396400,46.66,60.381 +396401,44.854,64.842 +396402,45.08,63.373 +396403,45.275,61.884 +396404,45.436,60.376 +396405,43.462,64.796 +396406,43.742,63.341 +396407,43.992,61.866 +396408,44.211,60.372 +396409,42.069,64.749 +396410,42.404,63.308 +396411,42.71,61.848 +396412,42.986,60.369 +396413,40.677,64.701 +396414,41.066,63.275 +396415,41.427,61.83 +396416,41.76,60.367 +396417,39.285,64.652 +396418,39.728,63.242 +396419,40.145,61.813 +396420,40.535,60.366 +396421,37.893,64.601 +396422,38.39,63.208 +396423,38.862,61.796 +396424,39.308,60.367 +396425,36.501,64.549 +396426,37.052,63.174 +396427,37.579,61.779 +396428,38.082,60.368 +396429,35.109,64.497 +396430,35.714,63.139 +396431,36.296,61.763 +396432,36.855,60.371 +396433,33.718,64.443 +396434,34.377,63.104 +396435,35.013,61.747 +396436,35.627,60.375 +396437,32.327,64.388 +396438,33.04,63.068 +396439,33.73,61.732 +396440,34.399,60.38 +396441,30.936,64.331 +396442,31.702,63.033 +396443,32.447,61.717 +396444,33.17,60.386 +396445,29.546,64.274 +396446,30.365,62.996 +396447,31.164,61.702 +396448,31.941,60.393 +396449,28.157,64.216 +396450,29.029,62.96 +396451,29.88,61.688 +396452,30.711,60.401 +396453,26.767,64.156 +396454,27.692,62.923 +396455,28.596,61.674 +396456,29.48,60.411 +396457,25.379,64.096 +396458,26.356,62.886 +396459,27.312,61.66 +396460,28.248,60.421 +396461,23.991,64.034 +396462,25.02,62.848 +396463,26.028,61.647 +396464,27.016,60.432 +396465,22.603,63.972 +396466,23.684,62.81 +396467,24.743,61.634 +396468,25.782,60.445 +396469,21.216,63.908 +396470,22.349,62.772 +396471,23.459,61.621 +396472,24.548,60.458 +396473,19.83,63.843 +396474,21.013,62.733 +396475,22.174,61.608 +396476,23.313,60.472 +396477,18.445,63.778 +396478,19.678,62.694 +396479,20.888,61.596 +396480,22.077,60.487 +396481,17.06,63.711 +396482,18.344,62.654 +396483,19.603,61.584 +396484,20.84,60.503 +396485,15.676,63.644 +396486,17.009,62.615 +396487,18.317,61.573 +396488,19.602,60.52 +396489,14.293,63.576 +396490,15.675,62.575 +396491,17.031,61.562 +396492,18.363,60.538 +396493,12.911,63.507 +396494,14.342,62.535 +396495,15.744,61.551 +396496,17.122,60.556 +396497,11.53,63.437 +396498,13.008,62.494 +396499,14.458,61.54 +396500,15.881,60.576 +396501,10.15,63.366 +396502,11.676,62.453 +396503,13.171,61.529 +396504,14.638,60.596 +396505,8.7705,63.294 +396506,10.343,62.412 +396507,11.883,61.519 +396508,13.394,60.617 +396509,7.3922,63.221 +396510,9.0109,62.371 +396511,10.595,61.509 +396512,12.149,60.638 +396513,6.015,63.148 +396514,7.6791,62.329 +396515,9.307,61.499 +396516,10.903,60.661 +396517,4.6389,63.074 +396518,6.3478,62.287 +396519,8.0184,61.489 +396520,9.655,60.684 +396521,3.264,63 +396522,5.0169,62.245 +396523,6.7294,61.48 +396524,8.4059,60.707 +396525,1.8902,62.924 +396526,3.6865,62.202 +396527,5.4399,61.471 +396528,7.1555,60.732 +396529,0.51765,62.848 +396530,2.3565,62.16 +396531,4.1501,61.462 +396532,5.9037,60.757 +396533,359.15,62.771 +396534,1.027,62.117 +396535,2.8598,61.453 +396536,4.6505,60.782 +396537,357.78,62.694 +396538,359.7,62.074 +396539,1.5691,61.445 +396540,3.3959,60.808 +396541,356.41,62.616 +396542,358.37,62.03 +396543,0.27798,61.436 +396544,2.1398,60.835 +396545,355.04,62.537 +396546,357.04,61.987 +396547,358.99,61.428 +396548,0.88218,60.862 +396549,353.67,62.458 +396550,355.71,61.943 +396551,357.69,61.42 +396552,359.62,60.889 +396553,352.31,62.379 +396554,354.39,61.9 +396555,356.4,61.412 +396556,358.36,60.917 +396557,350.95,62.299 +396558,353.06,61.856 +396559,355.11,61.404 +396560,357.1,60.945 +396561,349.58,62.218 +396562,351.73,61.811 +396563,353.82,61.396 +396564,355.84,60.974 +396565,348.22,62.137 +396566,350.41,61.767 +396567,352.52,61.388 +396568,354.57,61.003 +396569,346.87,62.056 +396570,349.08,61.723 +396571,351.23,61.381 +396572,353.3,61.032 +396573,345.51,61.974 +396574,347.76,61.678 +396575,349.93,61.373 +396576,352.04,61.062 +396577,344.15,61.892 +396578,346.44,61.633 +396579,348.64,61.366 +396580,350.77,61.092 +396581,342.8,61.81 +396582,345.11,61.589 +396583,347.34,61.359 +396584,349.49,61.122 +396585,341.45,61.727 +396586,343.79,61.544 +396587,346.04,61.351 +396588,348.22,61.152 +396589,340.1,61.645 +396590,342.47,61.499 +396591,344.75,61.344 +396592,346.94,61.183 +396593,338.75,61.561 +396594,341.15,61.454 +396595,343.45,61.337 +396596,345.67,61.213 +396597,337.4,61.478 +396598,339.83,61.408 +396599,342.15,61.33 +396600,344.39,61.244 +396601,336.06,61.395 +396602,338.51,61.363 +396603,340.85,61.323 +396604,343.11,61.275 +396605,334.71,61.311 +396606,337.19,61.318 +396607,339.55,61.316 +396608,341.83,61.306 +396609,333.37,61.227 +396610,335.87,61.273 +396611,338.25,61.308 +396612,340.54,61.336 +396613,332.03,61.144 +396614,334.55,61.227 +396615,336.95,61.301 +396616,339.26,61.367 +396617,330.69,61.06 +396618,333.23,61.182 +396619,335.65,61.294 +396620,337.97,61.398 +396621,329.36,60.976 +396622,331.91,61.137 +396623,334.35,61.287 +396624,336.68,61.429 +396625,328.02,60.892 +396626,330.6,61.092 +396627,333.05,61.28 +396628,335.39,61.459 +396629,326.69,60.809 +396630,329.28,61.046 +396631,331.74,61.273 +396632,334.1,61.49 +396633,325.36,60.725 +396634,327.97,61.001 +396635,330.44,61.265 +396636,332.8,61.52 +396637,324.03,60.642 +396638,326.65,60.956 +396639,329.14,61.258 +396640,331.51,61.55 +396641,322.71,60.558 +396642,325.34,60.91 +396643,327.83,61.25 +396644,330.21,61.58 +396645,321.38,60.475 +396646,324.03,60.865 +396647,326.53,61.243 +396648,328.91,61.61 +396649,320.06,60.392 +396650,322.71,60.82 +396651,325.22,61.235 +396652,327.61,61.639 +396653,318.74,60.31 +396654,321.4,60.775 +396655,323.92,61.227 +396656,326.3,61.668 +396657,317.42,60.227 +396658,320.09,60.73 +396659,322.61,61.22 +396660,325,61.697 +396661,316.1,60.145 +396662,318.78,60.685 +396663,321.3,61.212 +396664,323.69,61.725 +396665,314.79,60.063 +396666,317.47,60.641 +396667,319.99,61.203 +396668,322.38,61.753 +396669,313.48,59.982 +396670,316.16,60.596 +396671,318.68,61.195 +396672,321.07,61.78 +396673,312.17,59.901 +396674,314.85,60.552 +396675,317.37,61.187 +396676,319.76,61.807 +396677,310.86,59.82 +396678,313.55,60.507 +396679,316.06,61.178 +396680,318.44,61.834 +396681,309.55,59.74 +396682,312.24,60.463 +396683,314.75,61.169 +396684,317.13,61.86 +396685,308.25,59.661 +396686,310.93,60.419 +396687,313.44,61.16 +396688,315.81,61.885 +396689,306.95,59.581 +396690,309.63,60.375 +396691,312.13,61.151 +396692,314.49,61.91 +396693,305.65,59.503 +396694,308.32,60.332 +396695,310.82,61.141 +396696,313.17,61.934 +396697,304.35,59.425 +396698,307.02,60.288 +396699,309.51,61.132 +396700,311.85,61.958 +396701,303.06,59.348 +396702,305.71,60.245 +396703,308.19,61.122 +396704,310.52,61.981 +396705,301.76,59.271 +396706,304.41,60.202 +396707,306.88,61.112 +396708,309.2,62.003 +396709,300.47,59.195 +396710,303.11,60.159 +396711,305.56,61.101 +396712,307.87,62.025 +396713,299.18,59.119 +396714,301.81,60.116 +396715,304.25,61.091 +396716,306.54,62.046 +396717,297.9,59.045 +396718,300.51,60.074 +396719,302.93,61.08 +396720,305.21,62.066 +396721,296.61,58.971 +396722,299.21,60.031 +396723,301.62,61.069 +396724,303.87,62.085 +396725,295.33,58.898 +396726,297.91,59.989 +396727,300.3,61.057 +396728,302.54,62.104 +396729,294.05,58.825 +396730,296.61,59.948 +396731,298.98,61.046 +396732,301.2,62.121 +396733,292.77,58.754 +396734,295.31,59.906 +396735,297.67,61.034 +396736,299.86,62.138 +396737,291.49,58.683 +396738,294.01,59.865 +396739,296.35,61.021 +396740,298.52,62.154 +396741,290.22,58.613 +396742,292.72,59.824 +396743,295.03,61.009 +396744,297.18,62.169 +396745,288.94,58.544 +396746,291.42,59.783 +396747,293.71,60.996 +396748,295.84,62.184 +396749,287.67,58.477 +396750,290.12,59.743 +396751,292.39,60.983 +396752,294.5,62.197 +396753,286.4,58.41 +396754,288.83,59.703 +396755,291.07,60.969 +396756,293.15,62.209 +396757,285.14,58.344 +396758,287.53,59.663 +396759,289.75,60.955 +396760,291.8,62.22 +396761,283.87,58.279 +396762,286.24,59.624 +396763,288.43,60.941 +396764,290.45,62.231 +396765,282.61,58.215 +396766,284.95,59.585 +396767,287.1,60.926 +396768,289.1,62.24 +396769,281.35,58.152 +396770,283.66,59.546 +396771,285.78,60.911 +396772,287.75,62.248 +396773,280.09,58.09 +396774,282.36,59.508 +396775,284.46,60.896 +396776,286.4,62.255 +396777,278.83,58.029 +396778,281.07,59.47 +396779,283.13,60.88 +396780,285.04,62.261 +396781,277.57,57.969 +396782,279.78,59.432 +396783,281.81,60.864 +396784,283.69,62.266 +396785,276.32,57.911 +396786,278.49,59.395 +396787,280.49,60.848 +396788,282.33,62.27 +396789,275.07,57.853 +396790,277.2,59.358 +396791,279.16,60.831 +396792,280.97,62.273 +396793,273.82,57.797 +396794,275.91,59.321 +396795,277.83,60.813 +396796,279.61,62.274 +396797,272.57,57.742 +396798,274.62,59.285 +396799,276.51,60.796 +396800,278.25,62.275 +396801,271.32,57.688 +396802,273.34,59.249 +396803,275.18,60.778 +396804,276.88,62.274 +396805,270.07,57.635 +396806,272.05,59.214 +396807,273.86,60.759 +396808,275.52,62.272 +396809,268.83,57.584 +396810,270.76,59.179 +396811,272.53,60.74 +396812,274.15,62.269 +396813,267.59,57.534 +396814,269.48,59.144 +396815,271.2,60.721 +396816,272.79,62.265 +396817,266.35,57.485 +396818,268.19,59.11 +396819,269.87,60.701 +396820,271.42,62.259 +396821,265.11,57.437 +396822,266.9,59.076 +396823,268.54,60.681 +396824,270.05,62.252 +396825,263.87,57.391 +396826,265.62,59.043 +396827,267.22,60.66 +396828,268.68,62.244 +396829,262.63,57.346 +396830,264.34,59.01 +396831,265.89,60.639 +396832,267.31,62.235 +396833,261.4,57.302 +396834,263.05,58.977 +396835,264.56,60.618 +396836,265.94,62.224 +396837,260.16,57.26 +396838,261.77,58.945 +396839,263.23,60.596 +396840,264.56,62.212 +396841,258.93,57.218 +396842,260.48,58.914 +396843,261.9,60.573 +396844,263.19,62.199 +396845,257.7,57.179 +396846,259.2,58.882 +396847,260.57,60.55 +396848,261.82,62.184 +396849,256.47,57.14 +396850,257.92,58.851 +396851,259.24,60.527 +396852,260.44,62.169 +396853,255.24,57.103 +396854,256.64,58.821 +396855,257.91,60.503 +396856,259.06,62.151 +396857,254.01,57.067 +396858,255.36,58.791 +396859,256.57,60.479 +396860,257.68,62.133 +396861,252.78,57.033 +396862,254.07,58.761 +396863,255.24,60.454 +396864,256.3,62.113 +396865,251.56,57 +396866,252.79,58.732 +396867,253.91,60.429 +396868,254.93,62.092 +396869,250.33,56.968 +396870,251.51,58.704 +396871,252.58,60.404 +396872,253.54,62.069 +396873,249.11,56.938 +396874,250.23,58.675 +396875,251.25,60.377 +396876,252.16,62.045 +396877,247.89,56.909 +396878,248.95,58.648 +396879,249.91,60.351 +396880,250.78,62.02 +396881,246.66,56.882 +396882,247.67,58.62 +396883,248.58,60.324 +396884,249.4,61.994 +396885,245.44,56.856 +396886,246.39,58.593 +396887,247.25,60.296 +396888,248.02,61.966 +396889,244.22,56.831 +396890,245.12,58.567 +396891,245.91,60.268 +396892,246.63,61.936 +396893,243,56.808 +396894,243.84,58.541 +396895,244.58,60.24 +396896,245.25,61.906 +396897,241.78,56.786 +396898,242.56,58.515 +396899,243.25,60.211 +396900,243.86,61.874 +396901,240.56,56.766 +396902,241.28,58.49 +396903,241.91,60.182 +396904,242.48,61.84 +396905,239.34,56.746 +396906,240,58.466 +396907,240.58,60.152 +396908,241.09,61.806 +396909,238.12,56.729 +396910,238.72,58.441 +396911,239.25,60.122 +396912,239.7,61.77 +396913,236.91,56.712 +396914,237.45,58.418 +396915,237.91,60.091 +396916,238.32,61.732 +396917,235.69,56.697 +396918,236.17,58.394 +396919,236.58,60.059 +396920,236.93,61.693 +396921,234.47,56.684 +396922,234.89,58.371 +396923,235.24,60.028 +396924,235.54,61.653 +396925,233.25,56.671 +396926,233.61,58.349 +396927,233.91,59.996 +396928,234.15,61.612 +396929,232.04,56.66 +396930,232.34,58.327 +396931,232.58,59.963 +396932,232.76,61.569 +396933,230.82,56.651 +396934,231.06,58.305 +396935,231.24,59.93 +396936,231.37,61.525 +396937,229.6,56.643 +396938,229.78,58.284 +396939,229.91,59.896 +396940,229.99,61.48 +396941,228.39,56.636 +396942,228.5,58.263 +396943,228.57,59.862 +396944,228.6,61.433 +396945,227.17,56.63 +396946,227.23,58.243 +396947,227.24,59.828 +396948,227.21,61.385 +396949,225.96,56.626 +396950,225.95,58.223 +396951,225.9,59.793 +396952,225.82,61.335 +396953,224.74,56.623 +396954,224.67,58.204 +396955,224.57,59.758 +396956,224.43,61.285 +396957,223.52,56.621 +396958,223.4,58.185 +396959,223.24,59.722 +396960,223.04,61.233 +396961,222.3,56.62 +396962,222.12,58.166 +396963,221.9,59.686 +396964,221.65,61.18 +396965,221.09,56.621 +396966,220.84,58.148 +396967,220.57,59.649 +396968,220.26,61.125 +396969,219.87,56.623 +396970,219.57,58.13 +396971,219.23,59.612 +396972,218.87,61.07 +396973,218.65,56.626 +396974,218.29,58.112 +396975,217.9,59.575 +396976,217.48,61.013 +396977,217.43,56.631 +396978,217.01,58.095 +396979,216.57,59.537 +396980,216.09,60.954 +396981,216.22,56.636 +396982,215.74,58.079 +396983,215.23,59.499 +396984,214.7,60.895 +396985,215,56.643 +396986,214.46,58.062 +396987,213.9,59.46 +396988,213.32,60.835 +396989,213.78,56.651 +396990,213.18,58.046 +396991,212.56,59.421 +396992,211.93,60.773 +396993,212.56,56.66 +396994,211.9,58.031 +396995,211.23,59.381 +396996,210.54,60.71 +396997,211.34,56.67 +396998,210.63,58.016 +396999,209.9,59.341 +397000,209.15,60.646 +397001,210.11,56.681 +397002,209.35,58.001 +397003,208.57,59.301 +397004,207.76,60.581 +397005,208.89,56.693 +397006,208.07,57.986 +397007,207.23,59.26 +397008,206.38,60.515 +397009,207.67,56.707 +397010,206.79,57.972 +397011,205.9,59.219 +397012,204.99,60.447 +397013,206.45,56.721 +397014,205.51,57.958 +397015,204.57,59.178 +397016,203.61,60.379 +397017,205.22,56.736 +397018,204.24,57.945 +397019,203.24,59.136 +397020,202.22,60.309 +397021,204,56.753 +397022,202.96,57.932 +397023,201.9,59.094 +397024,200.84,60.239 +397025,202.77,56.77 +397026,201.68,57.919 +397027,200.57,59.052 +397028,199.45,60.167 +397029,201.54,56.788 +397030,200.4,57.906 +397031,199.24,59.009 +397032,198.07,60.095 +397033,200.31,56.807 +397034,199.12,57.894 +397035,197.91,58.966 +397036,196.69,60.021 +397037,199.08,56.827 +397038,197.84,57.882 +397039,196.58,58.922 +397040,195.3,59.947 +397041,197.85,56.848 +397042,196.56,57.87 +397043,195.25,58.879 +397044,193.92,59.872 +397045,196.62,56.87 +397046,195.28,57.859 +397047,193.92,58.835 +397048,192.54,59.795 +397049,195.39,56.892 +397050,194,57.848 +397051,192.59,58.79 +397052,191.16,59.718 +397053,194.16,56.916 +397054,192.72,57.837 +397055,191.26,58.746 +397056,189.78,59.64 +397057,192.92,56.94 +397058,191.44,57.826 +397059,189.93,58.701 +397060,188.41,59.561 +397061,191.68,56.964 +397062,190.15,57.816 +397063,188.6,58.656 +397064,187.03,59.482 +397065,190.45,56.99 +397066,188.87,57.806 +397067,187.28,58.61 +397068,185.65,59.401 +397069,189.21,57.016 +397070,187.59,57.796 +397071,185.95,58.564 +397072,184.28,59.32 +397073,187.97,57.043 +397074,186.31,57.786 +397075,184.62,58.519 +397076,182.91,59.238 +397077,186.73,57.07 +397078,185.02,57.776 +397079,183.3,58.472 +397080,181.53,59.156 +397081,185.48,57.098 +397082,183.74,57.767 +397083,181.97,58.426 +397084,180.16,59.073 +397085,184.24,57.126 +397086,182.46,57.758 +397087,180.64,58.379 +397088,178.79,58.989 +397089,182.99,57.155 +397090,181.17,57.749 +397091,179.32,58.333 +397092,177.42,58.904 +397093,181.74,57.185 +397094,179.89,57.74 +397095,177.99,58.286 +397096,176.06,58.819 +397097,180.49,57.215 +397098,178.6,57.731 +397099,176.67,58.238 +397100,174.69,58.734 +397101,179.24,57.245 +397102,177.32,57.723 +397103,175.35,58.191 +397104,173.32,58.647 +397105,177.99,57.276 +397106,176.03,57.714 +397107,174.02,58.143 +397108,171.96,58.561 +397109,176.74,57.307 +397110,174.74,57.706 +397111,172.7,58.096 +397112,170.6,58.474 +397113,175.48,57.338 +397114,173.46,57.698 +397115,171.38,58.048 +397116,169.24,58.386 +397117,174.23,57.37 +397118,172.17,57.69 +397119,170.06,58 +397120,167.88,58.298 +397121,172.97,57.402 +397122,170.88,57.682 +397123,168.74,57.952 +397124,166.52,58.21 +397125,171.71,57.434 +397126,169.59,57.674 +397127,167.41,57.904 +397128,165.17,58.121 +397129,170.45,57.467 +397130,168.3,57.666 +397131,166.1,57.855 +397132,163.81,58.032 +397133,169.18,57.5 +397134,167.01,57.658 +397135,164.78,57.807 +397136,162.46,57.943 +397137,167.92,57.532 +397138,165.72,57.651 +397139,163.46,57.758 +397140,161.11,57.853 +397141,166.65,57.565 +397142,164.43,57.643 +397143,162.14,57.71 +397144,159.76,57.763 +397145,165.38,57.598 +397146,163.14,57.635 +397147,160.82,57.661 +397148,158.41,57.673 +397149,164.11,57.631 +397150,161.85,57.628 +397151,159.5,57.613 +397152,157.06,57.583 +397153,162.84,57.664 +397154,160.56,57.62 +397155,158.19,57.564 +397156,155.72,57.493 +397157,161.56,57.697 +397158,159.26,57.612 +397159,156.87,57.515 +397160,154.38,57.403 +397161,160.29,57.73 +397162,157.97,57.605 +397163,155.56,57.466 +397164,153.03,57.312 +397165,159.01,57.763 +397166,156.68,57.597 +397167,154.24,57.418 +397168,151.7,57.222 +397169,157.73,57.796 +397170,155.38,57.589 +397171,152.93,57.369 +397172,150.36,57.132 +397173,156.45,57.828 +397174,154.09,57.582 +397175,151.62,57.32 +397176,149.02,57.041 +397177,155.17,57.861 +397178,152.79,57.574 +397179,150.31,57.271 +397180,147.69,56.951 +397181,153.88,57.893 +397182,151.5,57.566 +397183,148.99,57.223 +397184,146.36,56.861 +397185,152.6,57.925 +397186,150.2,57.558 +397187,147.68,57.174 +397188,145.03,56.771 +397189,151.31,57.957 +397190,148.9,57.55 +397191,146.37,57.126 +397192,143.7,56.681 +397193,150.02,57.988 +397194,147.6,57.542 +397195,145.06,57.077 +397196,142.38,56.592 +397197,148.73,58.019 +397198,146.3,57.533 +397199,143.75,57.029 +397200,141.05,56.503 +397201,147.43,58.05 +397202,145.01,57.525 +397203,142.45,56.98 +397204,139.73,56.414 +397205,146.14,58.08 +397206,143.71,57.516 +397207,141.14,56.932 +397208,138.41,56.325 +397209,144.84,58.11 +397210,142.4,57.508 +397211,139.83,56.884 +397212,137.1,56.237 +397213,143.54,58.14 +397214,141.1,57.499 +397215,138.53,56.836 +397216,135.78,56.149 +397217,142.24,58.169 +397218,139.8,57.49 +397219,137.22,56.788 +397220,134.47,56.061 +397221,140.93,58.197 +397222,138.5,57.481 +397223,135.92,56.741 +397224,133.16,55.974 +397225,139.63,58.225 +397226,137.2,57.471 +397227,134.61,56.693 +397228,131.85,55.888 +397229,138.32,58.252 +397230,135.89,57.462 +397231,133.31,56.646 +397232,130.54,55.802 +397233,137.02,58.279 +397234,134.59,57.452 +397235,132.01,56.599 +397236,129.24,55.716 +397237,135.71,58.305 +397238,133.29,57.442 +397239,130.71,56.552 +397240,127.93,55.631 +397241,134.39,58.331 +397242,131.98,57.432 +397243,129.4,56.505 +397244,126.63,55.547 +397245,133.08,58.355 +397246,130.67,57.421 +397247,128.1,56.458 +397248,125.34,55.464 +397249,131.76,58.379 +397250,129.37,57.41 +397251,126.8,56.412 +397252,124.04,55.381 +397253,130.45,58.403 +397254,128.06,57.399 +397255,125.51,56.366 +397256,122.75,55.298 +397257,129.13,58.425 +397258,126.75,57.388 +397259,124.21,56.32 +397260,121.46,55.217 +397261,127.81,58.447 +397262,125.45,57.377 +397263,122.91,56.274 +397264,120.17,55.136 +397265,126.48,58.468 +397266,124.14,57.365 +397267,121.61,56.229 +397268,118.88,55.056 +397269,125.16,58.488 +397270,122.83,57.353 +397271,120.32,56.184 +397272,117.59,54.977 +397273,123.83,58.507 +397274,121.52,57.341 +397275,119.02,56.139 +397276,116.31,54.899 +397277,122.51,58.525 +397278,120.21,57.328 +397279,117.73,56.095 +397280,115.03,54.822 +397281,121.18,58.543 +397282,118.9,57.315 +397283,116.43,56.051 +397284,113.75,54.745 +397285,119.85,58.559 +397286,117.59,57.302 +397287,115.14,56.007 +397288,112.48,54.67 +397289,118.51,58.574 +397290,116.27,57.288 +397291,113.85,55.963 +397292,111.2,54.596 +397293,117.18,58.589 +397294,114.96,57.274 +397295,112.56,55.92 +397296,109.93,54.522 +397297,115.84,58.602 +397298,113.65,57.26 +397299,111.27,55.877 +397300,108.66,54.45 +397301,114.51,58.615 +397302,112.33,57.245 +397303,109.98,55.834 +397304,107.39,54.379 +397305,113.17,58.626 +397306,111.02,57.23 +397307,108.69,55.792 +397308,106.13,54.308 +397309,111.83,58.636 +397310,109.71,57.214 +397311,107.4,55.75 +397312,104.86,54.239 +397313,110.49,58.645 +397314,108.39,57.199 +397315,106.11,55.709 +397316,103.6,54.171 +397317,109.14,58.653 +397318,107.07,57.182 +397319,104.82,55.668 +397320,102.34,54.104 +397321,107.8,58.66 +397322,105.76,57.166 +397323,103.53,55.627 +397324,101.09,54.039 +397325,106.45,58.666 +397326,104.44,57.149 +397327,102.25,55.587 +397328,99.83,53.974 +397329,105.1,58.67 +397330,103.12,57.131 +397331,100.96,55.547 +397332,98.577,53.911 +397333,103.75,58.674 +397334,101.81,57.114 +397335,99.677,55.507 +397336,97.326,53.849 +397337,102.4,58.676 +397338,100.49,57.095 +397339,98.392,55.468 +397340,96.076,53.788 +397341,101.05,58.677 +397342,99.17,57.077 +397343,97.108,55.429 +397344,94.829,53.729 +397345,99.699,58.676 +397346,97.851,57.058 +397347,95.825,55.391 +397348,93.583,53.671 +397349,98.344,58.675 +397350,96.531,57.038 +397351,94.542,55.353 +397352,92.339,53.614 +397353,96.988,58.672 +397354,95.211,57.018 +397355,93.26,55.315 +397356,91.097,53.559 +397357,95.631,58.668 +397358,93.891,56.998 +397359,91.979,55.278 +397360,89.857,53.505 +397361,94.272,58.662 +397362,92.57,56.977 +397363,90.698,55.242 +397364,88.618,53.452 +397365,92.913,58.655 +397366,91.249,56.956 +397367,89.417,55.206 +397368,87.381,53.401 +397369,91.552,58.647 +397370,89.927,56.934 +397371,88.137,55.17 +397372,86.146,53.351 +397373,90.189,58.637 +397374,88.606,56.912 +397375,86.858,55.135 +397376,84.913,53.302 +397377,88.826,58.627 +397378,87.283,56.889 +397379,85.579,55.1 +397380,83.681,53.255 +397381,87.462,58.614 +397382,85.96,56.866 +397383,84.301,55.066 +397384,82.45,53.21 +397385,86.096,58.601 +397386,84.637,56.842 +397387,83.023,55.032 +397388,81.221,53.166 +397389,84.73,58.586 +397390,83.314,56.818 +397391,81.746,54.999 +397392,79.994,53.123 +397393,83.362,58.569 +397394,81.99,56.793 +397395,80.469,54.966 +397396,78.768,53.082 +397397,81.994,58.552 +397398,80.666,56.768 +397399,79.193,54.933 +397400,77.543,53.042 +397401,80.624,58.532 +397402,79.342,56.743 +397403,77.917,54.901 +397404,76.32,53.004 +397405,79.254,58.512 +397406,78.017,56.717 +397407,76.641,54.87 +397408,75.098,52.968 +397409,77.882,58.49 +397410,76.692,56.69 +397411,75.366,54.839 +397412,73.877,52.932 +397413,76.51,58.466 +397414,75.367,56.663 +397415,74.091,54.809 +397416,72.658,52.899 +397417,75.137,58.441 +397418,74.041,56.636 +397419,72.817,54.779 +397420,71.439,52.867 +397421,73.763,58.415 +397422,72.716,56.607 +397423,71.543,54.749 +397424,70.222,52.836 +397425,72.388,58.387 +397426,71.39,56.579 +397427,70.27,54.72 +397428,69.006,52.807 +397429,71.013,58.358 +397430,70.063,56.55 +397431,68.997,54.692 +397432,67.79,52.779 +397433,69.636,58.327 +397434,68.737,56.52 +397435,67.724,54.664 +397436,66.576,52.753 +397437,68.26,58.295 +397438,67.41,56.49 +397439,66.451,54.636 +397440,65.363,52.729 +397441,66.882,58.262 +397442,66.083,56.46 +397443,65.179,54.609 +397444,64.15,52.706 +397445,65.504,58.227 +397446,64.756,56.429 +397447,63.907,54.583 +397448,62.938,52.684 +397449,64.125,58.19 +397450,63.429,56.397 +397451,62.636,54.556 +397452,61.727,52.664 +397453,62.746,58.152 +397454,62.102,56.365 +397455,61.364,54.531 +397456,60.517,52.646 +397457,61.366,58.113 +397458,60.774,56.333 +397459,60.093,54.506 +397460,59.307,52.629 +397461,59.985,58.072 +397462,59.447,56.3 +397463,58.822,54.481 +397464,58.097,52.614 +397465,58.605,58.03 +397466,58.119,56.266 +397467,57.552,54.457 +397468,56.889,52.6 +397469,57.223,57.986 +397470,56.791,56.232 +397471,56.281,54.434 +397472,55.681,52.587 +397473,55.842,57.941 +397474,55.463,56.198 +397475,55.011,54.411 +397476,54.473,52.576 +397477,54.46,57.895 +397478,54.135,56.163 +397479,53.741,54.388 +397480,53.265,52.567 +397481,53.078,57.847 +397482,52.807,56.128 +397483,52.471,54.366 +397484,52.058,52.559 +397485,51.695,57.797 +397486,51.479,56.092 +397487,51.201,54.344 +397488,50.851,52.552 +397489,50.312,57.746 +397490,50.151,56.055 +397491,49.931,54.323 +397492,49.644,52.547 +397493,48.929,57.694 +397494,48.823,56.018 +397495,48.662,54.302 +397496,48.438,52.544 +397497,47.546,57.641 +397498,47.495,55.981 +397499,47.392,54.282 +397500,47.231,52.541 +397501,46.163,57.586 +397502,46.167,55.943 +397503,46.123,54.262 +397504,46.024,52.541 +397505,44.779,57.53 +397506,44.839,55.905 +397507,44.854,54.243 +397508,44.818,52.541 +397509,43.396,57.472 +397510,43.511,55.866 +397511,43.584,54.224 +397512,43.611,52.543 +397513,42.012,57.413 +397514,42.183,55.827 +397515,42.315,54.205 +397516,42.404,52.546 +397517,40.629,57.353 +397518,40.855,55.788 +397519,41.046,54.187 +397520,41.197,52.551 +397521,39.245,57.291 +397522,39.527,55.748 +397523,39.777,54.17 +397524,39.99,52.557 +397525,37.862,57.228 +397526,38.199,55.707 +397527,38.507,54.152 +397528,38.783,52.564 +397529,36.478,57.164 +397530,36.872,55.666 +397531,37.238,54.136 +397532,37.575,52.573 +397533,35.095,57.098 +397534,35.544,55.625 +397535,35.969,54.119 +397536,36.366,52.582 +397537,33.712,57.032 +397538,34.217,55.583 +397539,34.699,54.104 +397540,35.158,52.593 +397541,32.33,56.964 +397542,32.89,55.541 +397543,33.43,54.088 +397544,33.949,52.606 +397545,30.947,56.895 +397546,31.563,55.498 +397547,32.16,54.073 +397548,32.739,52.619 +397549,29.565,56.824 +397550,30.236,55.455 +397551,30.891,54.058 +397552,31.528,52.634 +397553,28.184,56.752 +397554,28.909,55.412 +397555,29.621,54.044 +397556,30.317,52.65 +397557,26.802,56.68 +397558,27.583,55.368 +397559,28.351,54.03 +397560,29.106,52.666 +397561,25.421,56.606 +397562,26.257,55.324 +397563,27.081,54.016 +397564,27.893,52.685 +397565,24.041,56.531 +397566,24.931,55.279 +397567,25.811,54.003 +397568,26.68,52.704 +397569,22.661,56.455 +397570,23.605,55.234 +397571,24.54,53.99 +397572,25.466,52.724 +397573,21.281,56.377 +397574,22.28,55.189 +397575,23.269,53.978 +397576,24.251,52.745 +397577,19.903,56.299 +397578,20.955,55.143 +397579,21.999,53.966 +397580,23.035,52.767 +397581,18.524,56.22 +397582,19.63,55.097 +397583,20.727,53.954 +397584,21.818,52.79 +397585,17.147,56.139 +397586,18.305,55.051 +397587,19.456,53.942 +397588,20.6,52.814 +397589,15.77,56.058 +397590,16.981,55.004 +397591,18.185,53.931 +397592,19.381,52.839 +397593,14.394,55.976 +397594,15.657,54.957 +397595,16.913,53.92 +397596,18.161,52.865 +397597,13.018,55.892 +397598,14.334,54.91 +397599,15.641,53.909 +397600,16.94,52.892 +397601,11.644,55.808 +397602,13.01,54.862 +397603,14.368,53.899 +397604,15.718,52.92 +397605,10.27,55.723 +397606,11.688,54.815 +397607,13.095,53.889 +397608,14.495,52.948 +397609,8.8974,55.637 +397610,10.365,54.766 +397611,11.822,53.879 +397612,13.27,52.977 +397613,7.5255,55.55 +397614,9.0433,54.718 +397615,10.549,53.87 +397616,12.044,53.007 +397617,6.1545,55.463 +397618,7.7217,54.669 +397619,9.2752,53.86 +397620,10.817,53.038 +397621,4.7846,55.374 +397622,6.4006,54.62 +397623,8.0011,53.851 +397624,9.5881,53.069 +397625,3.4157,55.285 +397626,5.0799,54.571 +397627,6.7266,53.843 +397628,8.3581,53.101 +397629,2.0479,55.195 +397630,3.7596,54.522 +397631,5.4518,53.834 +397632,7.1267,53.133 +397633,0.68117,55.105 +397634,2.4398,54.472 +397635,4.1766,53.825 +397636,5.8939,53.167 +397637,359.32,55.014 +397638,1.1205,54.422 +397639,2.901,53.817 +397640,4.6596,53.2 +397641,357.95,54.922 +397642,359.8,54.372 +397643,1.6249,53.809 +397644,3.4238,53.234 +397645,356.59,54.829 +397646,358.48,54.322 +397647,0.34848,53.801 +397648,2.1866,53.269 +397649,355.23,54.736 +397650,357.17,54.272 +397651,359.07,53.794 +397652,0.94774,53.304 +397653,353.87,54.643 +397654,355.85,54.221 +397655,357.79,53.786 +397656,359.71,53.34 +397657,352.51,54.549 +397658,354.53,54.17 +397659,356.52,53.779 +397660,358.47,53.375 +397661,351.15,54.454 +397662,353.22,54.119 +397663,355.24,53.771 +397664,357.22,53.412 +397665,349.79,54.359 +397666,351.9,54.068 +397667,353.96,53.764 +397668,355.98,53.448 +397669,348.44,54.264 +397670,350.58,54.017 +397671,352.68,53.757 +397672,354.73,53.485 +397673,347.08,54.168 +397674,349.27,53.966 +397675,351.4,53.75 +397676,353.48,53.522 +397677,345.73,54.072 +397678,347.96,53.915 +397679,350.12,53.743 +397680,352.23,53.559 +397681,344.38,53.976 +397682,346.64,53.863 +397683,348.84,53.736 +397684,350.98,53.597 +397685,343.03,53.879 +397686,345.33,53.812 +397687,347.56,53.73 +397688,349.73,53.634 +397689,341.68,53.782 +397690,344.02,53.76 +397691,346.28,53.723 +397692,348.47,53.672 +397693,340.34,53.685 +397694,342.71,53.709 +397695,344.99,53.716 +397696,347.21,53.71 +397697,339,53.588 +397698,341.4,53.657 +397699,343.71,53.709 +397700,345.95,53.747 +397701,337.65,53.49 +397702,340.09,53.605 +397703,342.43,53.703 +397704,344.69,53.785 +397705,336.31,53.393 +397706,338.78,53.554 +397707,341.15,53.696 +397708,343.43,53.823 +397709,334.97,53.295 +397710,337.47,53.502 +397711,339.86,53.689 +397712,342.17,53.861 +397713,333.64,53.198 +397714,336.16,53.45 +397715,338.58,53.683 +397716,340.9,53.898 +397717,332.3,53.1 +397718,334.85,53.399 +397719,337.29,53.676 +397720,339.63,53.935 +397721,330.97,53.003 +397722,333.54,53.347 +397723,336,53.669 +397724,338.36,53.973 +397725,329.64,52.906 +397726,332.24,53.295 +397727,334.72,53.662 +397728,337.09,54.01 +397729,328.31,52.808 +397730,330.93,53.244 +397731,333.43,53.656 +397732,335.82,54.047 +397733,326.98,52.711 +397734,329.63,53.192 +397735,332.14,53.649 +397736,334.54,54.083 +397737,325.65,52.615 +397738,328.32,53.141 +397739,330.85,53.642 +397740,333.26,54.119 +397741,324.33,52.518 +397742,327.02,53.09 +397743,329.57,53.634 +397744,331.99,54.155 +397745,323.01,52.422 +397746,325.72,53.039 +397747,328.28,53.627 +397748,330.7,54.191 +397749,321.69,52.326 +397750,324.42,52.988 +397751,326.99,53.62 +397752,329.42,54.226 +397753,320.37,52.23 +397754,323.12,52.937 +397755,325.7,53.612 +397756,328.14,54.26 +397757,319.06,52.135 +397758,321.81,52.886 +397759,324.4,53.604 +397760,326.85,54.294 +397761,317.74,52.04 +397762,320.52,52.835 +397763,323.11,53.597 +397764,325.56,54.328 +397765,316.43,51.946 +397766,319.22,52.785 +397767,321.82,53.588 +397768,324.27,54.361 +397769,315.12,51.852 +397770,317.92,52.734 +397771,320.53,53.58 +397772,322.98,54.394 +397773,313.82,51.759 +397774,316.62,52.684 +397775,319.23,53.572 +397776,321.69,54.426 +397777,312.51,51.666 +397778,315.32,52.634 +397779,317.94,53.563 +397780,320.39,54.457 +397781,311.21,51.574 +397782,314.03,52.585 +397783,316.64,53.554 +397784,319.09,54.488 +397785,309.91,51.483 +397786,312.73,52.535 +397787,315.35,53.545 +397788,317.8,54.518 +397789,308.61,51.392 +397790,311.44,52.486 +397791,314.05,53.536 +397792,316.49,54.547 +397793,307.32,51.302 +397794,310.14,52.437 +397795,312.76,53.527 +397796,315.19,54.576 +397797,306.02,51.213 +397798,308.85,52.388 +397799,311.46,53.517 +397800,313.89,54.603 +397801,304.73,51.124 +397802,307.56,52.34 +397803,310.16,53.507 +397804,312.58,54.63 +397805,303.44,51.037 +397806,306.27,52.292 +397807,308.86,53.496 +397808,311.27,54.656 +397809,302.16,50.95 +397810,304.98,52.244 +397811,307.57,53.486 +397812,309.96,54.682 +397813,300.87,50.864 +397814,303.69,52.196 +397815,306.27,53.475 +397816,308.65,54.706 +397817,299.59,50.779 +397818,302.4,52.149 +397819,304.97,53.464 +397820,307.34,54.729 +397821,298.31,50.695 +397822,301.11,52.102 +397823,303.67,53.452 +397824,306.02,54.752 +397825,297.03,50.612 +397826,299.82,52.056 +397827,302.36,53.44 +397828,304.71,54.773 +397829,295.76,50.53 +397830,298.54,52.009 +397831,301.06,53.428 +397832,303.39,54.794 +397833,294.49,50.45 +397834,297.25,51.963 +397835,299.76,53.415 +397836,302.07,54.813 +397837,293.21,50.37 +397838,295.96,51.918 +397839,298.46,53.403 +397840,300.75,54.832 +397841,291.95,50.291 +397842,294.68,51.873 +397843,297.15,53.389 +397844,299.42,54.849 +397845,290.68,50.214 +397846,293.39,51.828 +397847,295.85,53.376 +397848,298.1,54.865 +397849,289.42,50.138 +397850,292.11,51.784 +397851,294.55,53.362 +397852,296.77,54.88 +397853,288.15,50.063 +397854,290.83,51.74 +397855,293.24,53.347 +397856,295.44,54.894 +397857,286.9,49.989 +397858,289.55,51.696 +397859,291.94,53.333 +397860,294.11,54.907 +397861,285.64,49.916 +397862,288.27,51.653 +397863,290.63,53.317 +397864,292.78,54.919 +397865,284.38,49.845 +397866,286.99,51.61 +397867,289.32,53.302 +397868,291.45,54.929 +397869,283.13,49.775 +397870,285.71,51.568 +397871,288.02,53.286 +397872,290.11,54.938 +397873,281.88,49.707 +397874,284.43,51.526 +397875,286.71,53.269 +397876,288.78,54.946 +397877,280.63,49.64 +397878,283.15,51.484 +397879,285.4,53.252 +397880,287.44,54.953 +397881,279.38,49.574 +397882,281.87,51.444 +397883,284.09,53.235 +397884,286.1,54.958 +397885,278.14,49.51 +397886,280.59,51.403 +397887,282.78,53.217 +397888,284.76,54.962 +397889,276.9,49.447 +397890,279.32,51.363 +397891,281.47,53.199 +397892,283.42,54.965 +397893,275.66,49.385 +397894,278.04,51.323 +397895,280.16,53.181 +397896,282.08,54.967 +397897,274.42,49.325 +397898,276.77,51.284 +397899,278.85,53.162 +397900,280.73,54.967 +397901,273.18,49.267 +397902,275.49,51.246 +397903,277.54,53.142 +397904,279.39,54.965 +397905,271.95,49.21 +397906,274.22,51.208 +397907,276.23,53.122 +397908,278.04,54.963 +397909,270.72,49.155 +397910,272.95,51.17 +397911,274.92,53.101 +397912,276.69,54.959 +397913,269.48,49.101 +397914,271.67,51.133 +397915,273.61,53.08 +397916,275.34,54.953 +397917,268.26,49.049 +397918,270.4,51.097 +397919,272.3,53.059 +397920,273.99,54.946 +397921,267.03,48.999 +397922,269.13,51.061 +397923,270.98,53.037 +397924,272.64,54.938 +397925,265.8,48.95 +397926,267.86,51.025 +397927,269.67,53.015 +397928,271.29,54.928 +397929,264.58,48.902 +397930,266.59,50.99 +397931,268.36,52.992 +397932,269.93,54.917 +397933,263.36,48.857 +397934,265.32,50.956 +397935,267.04,52.968 +397936,268.58,54.904 +397937,262.14,48.813 +397938,264.05,50.922 +397939,265.73,52.944 +397940,267.22,54.89 +397941,260.92,48.77 +397942,262.78,50.889 +397943,264.42,52.92 +397944,265.87,54.874 +397945,259.7,48.73 +397946,261.51,50.856 +397947,263.1,52.895 +397948,264.51,54.857 +397949,258.49,48.691 +397950,260.25,50.823 +397951,261.79,52.869 +397952,263.15,54.838 +397953,257.27,48.654 +397954,258.98,50.792 +397955,260.47,52.843 +397956,261.79,54.818 +397957,256.06,48.618 +397958,257.71,50.761 +397959,259.15,52.817 +397960,260.43,54.796 +397961,254.85,48.584 +397962,256.45,50.73 +397963,257.84,52.79 +397964,259.06,54.773 +397965,253.64,48.552 +397966,255.18,50.7 +397967,256.52,52.762 +397968,257.7,54.748 +397969,252.43,48.522 +397970,253.92,50.67 +397971,255.21,52.734 +397972,256.34,54.721 +397973,251.23,48.493 +397974,252.65,50.642 +397975,253.89,52.705 +397976,254.97,54.693 +397977,250.02,48.466 +397978,251.39,50.613 +397979,252.57,52.676 +397980,253.61,54.664 +397981,248.81,48.441 +397982,250.12,50.585 +397983,251.25,52.646 +397984,252.24,54.633 +397985,247.61,48.417 +397986,248.86,50.558 +397987,249.94,52.616 +397988,250.88,54.6 +397989,246.41,48.395 +397990,247.6,50.531 +397991,248.62,52.585 +397992,249.51,54.566 +397993,245.21,48.375 +397994,246.33,50.505 +397995,247.3,52.554 +397996,248.14,54.53 +397997,244,48.357 +397998,245.07,50.48 +397999,245.98,52.522 +398000,246.77,54.493 +398001,242.8,48.34 +398002,243.81,50.455 +398003,244.67,52.49 +398004,245.4,54.454 +398005,241.6,48.325 +398006,242.55,50.43 +398007,243.35,52.457 +398008,244.03,54.414 +398009,240.41,48.312 +398010,241.28,50.406 +398011,242.03,52.424 +398012,242.66,54.372 +398013,239.21,48.3 +398014,240.02,50.383 +398015,240.71,52.39 +398016,241.29,54.328 +398017,238.01,48.29 +398018,238.76,50.36 +398019,239.39,52.356 +398020,239.92,54.283 +398021,236.81,48.282 +398022,237.5,50.338 +398023,238.07,52.321 +398024,238.55,54.237 +398025,235.62,48.276 +398026,236.24,50.316 +398027,236.75,52.285 +398028,237.18,54.189 +398029,234.42,48.271 +398030,234.98,50.295 +398031,235.44,52.249 +398032,235.8,54.139 +398033,233.22,48.267 +398034,233.72,50.275 +398035,234.12,52.213 +398036,234.43,54.088 +398037,232.03,48.266 +398038,232.46,50.254 +398039,232.8,52.176 +398040,233.06,54.036 +398041,230.83,48.266 +398042,231.2,50.235 +398043,231.48,52.138 +398044,231.69,53.981 +398045,229.64,48.267 +398046,229.94,50.216 +398047,230.16,52.1 +398048,230.31,53.926 +398049,228.44,48.27 +398050,228.68,50.197 +398051,228.84,52.062 +398052,228.94,53.869 +398053,227.25,48.275 +398054,227.42,50.179 +398055,227.52,52.023 +398056,227.56,53.81 +398057,226.05,48.281 +398058,226.16,50.162 +398059,226.2,51.984 +398060,226.19,53.75 +398061,224.86,48.289 +398062,224.9,50.145 +398063,224.88,51.944 +398064,224.82,53.689 +398065,223.66,48.298 +398066,223.64,50.129 +398067,223.57,51.903 +398068,223.44,53.626 +398069,222.47,48.309 +398070,222.38,50.113 +398071,222.25,51.863 +398072,222.07,53.562 +398073,221.27,48.321 +398074,221.12,50.097 +398075,220.93,51.821 +398076,220.7,53.496 +398077,220.08,48.335 +398078,219.86,50.082 +398079,219.61,51.779 +398080,219.32,53.429 +398081,218.88,48.35 +398082,218.6,50.068 +398083,218.29,51.737 +398084,217.95,53.36 +398085,217.68,48.366 +398086,217.35,50.054 +398087,216.97,51.695 +398088,216.58,53.29 +398089,216.49,48.384 +398090,216.09,50.04 +398091,215.66,51.651 +398092,215.2,53.219 +398093,215.29,48.403 +398094,214.83,50.027 +398095,214.34,51.608 +398096,213.83,53.147 +398097,214.09,48.423 +398098,213.57,50.015 +398099,213.02,51.564 +398100,212.46,53.073 +398101,212.89,48.445 +398102,212.31,50.002 +398103,211.7,51.52 +398104,211.08,52.998 +398105,211.69,48.468 +398106,211.05,49.991 +398107,210.39,51.475 +398108,209.71,52.921 +398109,210.49,48.492 +398110,209.79,49.979 +398111,209.07,51.429 +398112,208.34,52.844 +398113,209.29,48.518 +398114,208.53,49.968 +398115,207.75,51.384 +398116,206.97,52.765 +398117,208.09,48.544 +398118,207.27,49.958 +398119,206.44,51.338 +398120,205.6,52.685 +398121,206.89,48.572 +398122,206.01,49.948 +398123,205.12,51.292 +398124,204.23,52.604 +398125,205.69,48.601 +398126,204.75,49.938 +398127,203.8,51.245 +398128,202.86,52.521 +398129,204.48,48.631 +398130,203.49,49.929 +398131,202.49,51.198 +398132,201.49,52.438 +398133,203.28,48.662 +398134,202.22,49.92 +398135,201.17,51.15 +398136,200.12,52.353 +398137,202.07,48.694 +398138,200.96,49.911 +398139,199.86,51.102 +398140,198.75,52.267 +398141,200.86,48.727 +398142,199.7,49.903 +398143,198.54,51.054 +398144,197.39,52.18 +398145,199.65,48.761 +398146,198.44,49.895 +398147,197.23,51.006 +398148,196.02,52.093 +398149,198.45,48.795 +398150,197.18,49.887 +398151,195.92,50.957 +398152,194.66,52.004 +398153,197.23,48.831 +398154,195.92,49.88 +398155,194.6,50.908 +398156,193.29,51.914 +398157,196.02,48.868 +398158,194.65,49.873 +398159,193.29,50.859 +398160,191.93,51.823 +398161,194.81,48.905 +398162,193.39,49.867 +398163,191.98,50.809 +398164,190.56,51.732 +398165,193.59,48.943 +398166,192.13,49.86 +398167,190.66,50.759 +398168,189.2,51.639 +398169,192.38,48.982 +398170,190.86,49.854 +398171,189.35,50.709 +398172,187.84,51.546 +398173,191.16,49.022 +398174,189.6,49.848 +398175,188.04,50.658 +398176,186.48,51.451 +398177,189.94,49.062 +398178,188.34,49.843 +398179,186.73,50.608 +398180,185.12,51.356 +398181,188.72,49.103 +398182,187.07,49.837 +398183,185.42,50.557 +398184,183.76,51.26 +398185,187.5,49.145 +398186,185.81,49.832 +398187,184.11,50.506 +398188,182.4,51.164 +398189,186.28,49.187 +398190,184.54,49.828 +398191,182.8,50.454 +398192,181.05,51.066 +398193,185.05,49.23 +398194,183.28,49.823 +398195,181.49,50.403 +398196,179.69,50.968 +398197,183.82,49.273 +398198,182.01,49.818 +398199,180.18,50.351 +398200,178.34,50.87 +398201,182.6,49.316 +398202,180.74,49.814 +398203,178.87,50.299 +398204,176.99,50.771 +398205,181.37,49.36 +398206,179.48,49.81 +398207,177.57,50.247 +398208,175.64,50.671 +398209,180.14,49.405 +398210,178.21,49.806 +398211,176.26,50.195 +398212,174.29,50.571 +398213,178.9,49.45 +398214,176.94,49.802 +398215,174.95,50.143 +398216,172.94,50.47 +398217,177.67,49.495 +398218,175.67,49.799 +398219,173.65,50.09 +398220,171.59,50.369 +398221,176.43,49.54 +398222,174.4,49.795 +398223,172.34,50.038 +398224,170.25,50.267 +398225,175.19,49.585 +398226,173.13,49.792 +398227,171.04,49.985 +398228,168.9,50.165 +398229,173.95,49.631 +398230,171.86,49.788 +398231,169.73,49.933 +398232,167.56,50.062 +398233,172.71,49.677 +398234,170.59,49.785 +398235,168.43,49.88 +398236,166.22,49.96 +398237,171.47,49.723 +398238,169.32,49.782 +398239,167.13,49.827 +398240,164.88,49.857 +398241,170.22,49.769 +398242,168.05,49.779 +398243,165.83,49.774 +398244,163.54,49.753 +398245,168.98,49.815 +398246,166.78,49.776 +398247,164.53,49.721 +398248,162.21,49.65 +398249,167.73,49.861 +398250,165.51,49.773 +398251,163.22,49.668 +398252,160.87,49.546 +398253,166.48,49.907 +398254,164.23,49.77 +398255,161.92,49.615 +398256,159.54,49.443 +398257,165.22,49.953 +398258,162.96,49.767 +398259,160.63,49.563 +398260,158.21,49.339 +398261,163.97,49.999 +398262,161.69,49.764 +398263,159.33,49.51 +398264,156.88,49.235 +398265,162.71,50.045 +398266,160.41,49.761 +398267,158.03,49.457 +398268,155.55,49.131 +398269,161.45,50.091 +398270,159.14,49.758 +398271,156.73,49.404 +398272,154.22,49.027 +398273,160.19,50.136 +398274,157.86,49.754 +398275,155.43,49.351 +398276,152.9,48.924 +398277,158.93,50.181 +398278,156.59,49.751 +398279,154.14,49.299 +398280,151.58,48.82 +398281,157.67,50.226 +398282,155.31,49.748 +398283,152.84,49.246 +398284,150.26,48.717 +398285,156.4,50.27 +398286,154.03,49.745 +398287,151.55,49.194 +398288,148.94,48.613 +398289,155.14,50.314 +398290,152.75,49.741 +398291,150.26,49.141 +398292,147.62,48.51 +398293,153.87,50.358 +398294,151.47,49.738 +398295,148.96,49.089 +398296,146.31,48.408 +398297,152.6,50.401 +398298,150.2,49.734 +398299,147.67,49.037 +398300,145,48.305 +398301,151.32,50.444 +398302,148.92,49.731 +398303,146.38,48.985 +398304,143.69,48.203 +398305,150.05,50.486 +398306,147.64,49.727 +398307,145.09,48.933 +398308,142.38,48.102 +398309,148.77,50.528 +398310,146.36,49.723 +398311,143.8,48.882 +398312,141.07,48.001 +398313,147.49,50.569 +398314,145.07,49.718 +398315,142.51,48.83 +398316,139.77,47.9 +398317,146.21,50.609 +398318,143.79,49.714 +398319,141.22,48.779 +398320,138.47,47.8 +398321,144.93,50.649 +398322,142.51,49.709 +398323,139.93,48.728 +398324,137.17,47.701 +398325,143.65,50.689 +398326,141.23,49.705 +398327,138.65,48.678 +398328,135.87,47.602 +398329,142.36,50.727 +398330,139.94,49.7 +398331,137.36,48.627 +398332,134.58,47.504 +398333,141.07,50.765 +398334,138.66,49.694 +398335,136.07,48.577 +398336,133.28,47.406 +398337,139.78,50.802 +398338,137.37,49.689 +398339,134.79,48.527 +398340,131.99,47.31 +398341,138.49,50.838 +398342,136.09,49.683 +398343,133.51,48.478 +398344,130.71,47.214 +398345,137.2,50.873 +398346,134.8,49.677 +398347,132.22,48.428 +398348,129.42,47.119 +398349,135.9,50.908 +398350,133.52,49.671 +398351,130.94,48.379 +398352,128.14,47.024 +398353,134.61,50.941 +398354,132.23,49.665 +398355,129.66,48.331 +398356,126.85,46.931 +398357,133.31,50.974 +398358,130.94,49.658 +398359,128.38,48.282 +398360,125.58,46.839 +398361,132.01,51.005 +398362,129.65,49.651 +398363,127.1,48.234 +398364,124.3,46.747 +398365,130.71,51.036 +398366,128.36,49.643 +398367,125.82,48.187 +398368,123.02,46.657 +398369,129.4,51.066 +398370,127.07,49.636 +398371,124.54,48.139 +398372,121.75,46.568 +398373,128.1,51.094 +398374,125.78,49.627 +398375,123.26,48.093 +398376,120.48,46.48 +398377,126.79,51.122 +398378,124.49,49.619 +398379,121.99,48.046 +398380,119.21,46.393 +398381,125.48,51.148 +398382,123.2,49.61 +398383,120.71,48 +398384,117.95,46.307 +398385,124.17,51.174 +398386,121.91,49.601 +398387,119.44,47.954 +398388,116.69,46.222 +398389,122.86,51.198 +398390,120.62,49.592 +398391,118.16,47.909 +398392,115.43,46.139 +398393,121.54,51.221 +398394,119.33,49.582 +398395,116.89,47.865 +398396,114.17,46.057 +398397,120.23,51.243 +398398,118.03,49.572 +398399,115.61,47.82 +398400,112.91,45.976 +398401,118.91,51.263 +398402,116.74,49.561 +398403,114.34,47.776 +398404,111.66,45.896 +398405,117.59,51.282 +398406,115.45,49.55 +398407,113.07,47.733 +398408,110.41,45.818 +398409,116.27,51.301 +398410,114.15,49.538 +398411,111.8,47.69 +398412,109.16,45.742 +398413,114.95,51.317 +398414,112.86,49.526 +398415,110.53,47.648 +398416,107.91,45.667 +398417,113.63,51.333 +398418,111.56,49.514 +398419,109.26,47.606 +398420,106.67,45.593 +398421,112.31,51.347 +398422,110.26,49.501 +398423,107.99,47.564 +398424,105.42,45.521 +398425,110.98,51.36 +398426,108.97,49.488 +398427,106.72,47.523 +398428,104.18,45.45 +398429,109.65,51.371 +398430,107.67,49.474 +398431,105.46,47.483 +398432,102.95,45.381 +398433,108.32,51.381 +398434,106.37,49.46 +398435,104.19,47.443 +398436,101.71,45.314 +398437,106.99,51.39 +398438,105.08,49.446 +398439,102.92,47.404 +398440,100.48,45.248 +398441,105.66,51.397 +398442,103.78,49.43 +398443,101.66,47.365 +398444,99.245,45.184 +398445,104.33,51.402 +398446,102.48,49.415 +398447,100.4,47.327 +398448,98.016,45.122 +398449,103,51.407 +398450,101.18,49.399 +398451,99.132,47.29 +398452,96.789,45.061 +398453,101.66,51.409 +398454,99.879,49.382 +398455,97.869,47.252 +398456,95.564,45.002 +398457,100.33,51.411 +398458,98.579,49.365 +398459,96.606,47.216 +398460,94.34,44.945 +398461,98.989,51.41 +398462,97.279,49.348 +398463,95.345,47.18 +398464,93.119,44.89 +398465,97.65,51.409 +398466,95.978,49.33 +398467,94.083,47.145 +398468,91.9,44.836 +398469,96.31,51.405 +398470,94.677,49.311 +398471,92.823,47.11 +398472,90.683,44.784 +398473,94.97,51.4 +398474,93.375,49.292 +398475,91.563,47.076 +398476,89.468,44.734 +398477,93.628,51.394 +398478,92.073,49.272 +398479,90.304,47.043 +398480,88.254,44.686 +398481,92.285,51.386 +398482,90.771,49.252 +398483,89.045,47.01 +398484,87.043,44.64 +398485,90.941,51.376 +398486,89.468,49.232 +398487,87.787,46.978 +398488,85.833,44.595 +398489,89.596,51.365 +398490,88.165,49.21 +398491,86.529,46.946 +398492,84.625,44.553 +398493,88.25,51.352 +398494,86.862,49.189 +398495,85.272,46.915 +398496,83.418,44.512 +398497,86.903,51.338 +398498,85.559,49.166 +398499,84.015,46.885 +398500,82.213,44.474 +398501,85.555,51.322 +398502,84.255,49.144 +398503,82.759,46.855 +398504,81.01,44.437 +398505,84.206,51.304 +398506,82.951,49.12 +398507,81.504,46.826 +398508,79.808,44.402 +398509,82.857,51.285 +398510,81.646,49.096 +398511,80.249,46.797 +398512,78.608,44.369 +398513,81.506,51.264 +398514,80.342,49.072 +398515,78.994,46.77 +398516,77.409,44.338 +398517,80.155,51.241 +398518,79.037,49.047 +398519,77.74,46.742 +398520,76.211,44.309 +398521,78.803,51.217 +398522,77.732,49.021 +398523,76.486,46.716 +398524,75.015,44.282 +398525,77.451,51.191 +398526,76.427,48.995 +398527,75.233,46.69 +398528,73.82,44.257 +398529,76.097,51.163 +398530,75.121,48.968 +398531,73.98,46.665 +398532,72.626,44.234 +398533,74.743,51.134 +398534,73.816,48.941 +398535,72.728,46.64 +398536,71.433,44.213 +398537,73.389,51.103 +398538,72.51,48.913 +398539,71.476,46.616 +398540,70.242,44.194 +398541,72.034,51.071 +398542,71.204,48.885 +398543,70.224,46.593 +398544,69.051,44.177 +398545,70.678,51.037 +398546,69.898,48.856 +398547,68.973,46.57 +398548,67.862,44.162 +398549,69.322,51.001 +398550,68.591,48.827 +398551,67.722,46.548 +398552,66.673,44.148 +398553,67.965,50.963 +398554,67.285,48.797 +398555,66.471,46.527 +398556,65.485,44.137 +398557,66.608,50.924 +398558,65.979,48.766 +398559,65.221,46.506 +398560,64.298,44.128 +398561,65.25,50.883 +398562,64.672,48.735 +398563,63.97,46.486 +398564,63.111,44.12 +398565,63.892,50.841 +398566,63.365,48.704 +398567,62.721,46.467 +398568,61.925,44.115 +398569,62.534,50.797 +398570,62.059,48.671 +398571,61.471,46.448 +398572,60.74,44.111 +398573,61.176,50.751 +398574,60.752,48.639 +398575,60.222,46.43 +398576,59.555,44.109 +398577,59.817,50.703 +398578,59.445,48.605 +398579,58.972,46.412 +398580,58.371,44.11 +398581,58.458,50.654 +398582,58.138,48.572 +398583,57.723,46.395 +398584,57.187,44.112 +398585,57.098,50.604 +398586,56.832,48.537 +398587,56.475,46.379 +398588,56.004,44.115 +398589,55.739,50.551 +398590,55.525,48.502 +398591,55.226,46.363 +398592,54.82,44.121 +398593,54.379,50.498 +398594,54.218,48.467 +398595,53.978,46.348 +398596,53.637,44.129 +398597,53.019,50.442 +398598,52.911,48.431 +398599,52.729,46.334 +398600,52.454,44.138 +398601,51.659,50.385 +398602,51.605,48.395 +398603,51.481,46.32 +398604,51.271,44.149 +398605,50.299,50.327 +398606,50.298,48.358 +398607,50.233,46.307 +398608,50.088,44.162 +398609,48.94,50.266 +398610,48.991,48.32 +398611,48.985,46.294 +398612,48.905,44.177 +398613,47.58,50.205 +398614,47.685,48.283 +398615,47.737,46.282 +398616,47.722,44.193 +398617,46.22,50.141 +398618,46.379,48.244 +398619,46.489,46.27 +398620,46.539,44.211 +398621,44.86,50.077 +398622,45.072,48.205 +398623,45.241,46.259 +398624,45.355,44.231 +398625,43.501,50.01 +398626,43.766,48.166 +398627,43.993,46.249 +398628,44.172,44.252 +398629,42.141,49.943 +398630,42.46,48.126 +398631,42.745,46.239 +398632,42.987,44.275 +398633,40.782,49.873 +398634,41.155,48.086 +398635,41.497,46.23 +398636,41.803,44.3 +398637,39.423,49.803 +398638,39.849,48.045 +398639,40.249,46.221 +398640,40.618,44.326 +398641,38.065,49.731 +398642,38.544,48.004 +398643,39.001,46.213 +398644,39.432,44.354 +398645,36.707,49.657 +398646,37.238,47.962 +398647,37.753,46.206 +398648,38.246,44.383 +398649,35.349,49.582 +398650,35.933,47.92 +398651,36.505,46.198 +398652,37.059,44.414 +398653,33.991,49.506 +398654,34.629,47.877 +398655,35.256,46.192 +398656,35.871,44.446 +398657,32.634,49.428 +398658,33.324,47.834 +398659,34.008,46.186 +398660,34.683,44.479 +398661,31.277,49.349 +398662,32.02,47.791 +398663,32.759,46.18 +398664,33.494,44.514 +398665,29.921,49.269 +398666,30.716,47.747 +398667,31.51,46.175 +398668,32.303,44.55 +398669,28.566,49.187 +398670,29.412,47.703 +398671,30.261,46.17 +398672,31.113,44.588 +398673,27.211,49.104 +398674,28.109,47.658 +398675,29.012,46.166 +398676,29.921,44.626 +398677,25.856,49.02 +398678,26.806,47.613 +398679,27.763,46.162 +398680,28.728,44.666 +398681,24.503,48.935 +398682,25.503,47.568 +398683,26.513,46.159 +398684,27.533,44.708 +398685,23.149,48.849 +398686,24.201,47.522 +398687,25.264,46.156 +398688,26.338,44.75 +398689,21.797,48.761 +398690,22.899,47.476 +398691,24.014,46.154 +398692,25.142,44.793 +398693,20.446,48.672 +398694,21.597,47.429 +398695,22.763,46.152 +398696,23.944,44.838 +398697,19.095,48.582 +398698,20.296,47.383 +398699,21.513,46.15 +398700,22.746,44.884 +398701,17.745,48.491 +398702,18.995,47.336 +398703,20.262,46.149 +398704,21.546,44.93 +398705,16.396,48.399 +398706,17.695,47.288 +398707,19.011,46.148 +398708,20.344,44.978 +398709,15.048,48.306 +398710,16.395,47.241 +398711,17.759,46.147 +398712,19.142,45.026 +398713,13.7,48.212 +398714,15.095,47.193 +398715,16.507,46.147 +398716,17.937,45.076 +398717,12.354,48.117 +398718,13.796,47.144 +398719,15.255,46.147 +398720,16.732,45.126 +398721,11.009,48.021 +398722,12.498,47.096 +398723,14.003,46.148 +398724,15.525,45.177 +398725,9.6646,47.924 +398726,11.2,47.047 +398727,12.75,46.149 +398728,14.316,45.229 +398729,8.3215,47.826 +398730,9.902,46.998 +398731,11.496,46.15 +398732,13.106,45.282 +398733,6.9795,47.728 +398734,8.6049,46.949 +398735,10.243,46.151 +398736,11.895,45.335 +398737,5.6387,47.628 +398738,7.3083,46.9 +398739,8.9888,46.153 +398740,10.681,45.389 +398741,4.299,47.528 +398742,6.0122,46.85 +398743,7.7343,46.155 +398744,9.4665,45.443 +398745,2.9606,47.428 +398746,4.7166,46.8 +398747,6.4794,46.157 +398748,8.2499,45.498 +398749,1.6234,47.326 +398750,3.4216,46.75 +398751,5.2241,46.159 +398752,7.0318,45.554 +398753,0.28754,47.224 +398754,2.1272,46.7 +398755,3.9683,46.162 +398756,5.8119,45.61 +398757,358.95,47.121 +398758,0.83331,46.65 +398759,2.7121,46.165 +398760,4.5903,45.667 +398761,357.62,47.018 +398762,359.54,46.6 +398763,1.4554,46.168 +398764,3.367,45.724 +398765,356.29,46.914 +398766,358.25,46.549 +398767,0.19822,46.171 +398768,2.1419,45.781 +398769,354.96,46.809 +398770,356.96,46.499 +398771,358.94,46.174 +398772,0.91504,45.838 +398773,353.63,46.705 +398774,355.66,46.448 +398775,357.68,46.178 +398776,359.69,45.896 +398777,352.3,46.599 +398778,354.37,46.397 +398779,356.42,46.182 +398780,358.46,45.954 +398781,350.98,46.494 +398782,353.08,46.346 +398783,355.16,46.185 +398784,357.22,46.013 +398785,349.65,46.388 +398786,351.79,46.295 +398787,353.91,46.189 +398788,355.99,46.071 +398789,348.33,46.281 +398790,350.5,46.244 +398791,352.64,46.193 +398792,354.75,46.13 +398793,347.01,46.175 +398794,349.22,46.193 +398795,351.38,46.197 +398796,353.52,46.188 +398797,345.69,46.068 +398798,347.93,46.142 +398799,350.12,46.202 +398800,352.28,46.247 +398801,344.37,45.961 +398802,346.64,46.091 +398803,348.86,46.206 +398804,351.03,46.305 +398805,343.05,45.854 +398806,345.36,46.041 +398807,347.6,46.21 +398808,349.79,46.364 +398809,341.74,45.747 +398810,344.07,45.99 +398811,346.34,46.214 +398812,348.55,46.422 +398813,340.43,45.64 +398814,342.78,45.939 +398815,345.07,46.218 +398816,347.3,46.481 +398817,339.12,45.533 +398818,341.5,45.888 +398819,343.81,46.223 +398820,346.05,46.539 +398821,337.81,45.425 +398822,340.22,45.837 +398823,342.54,46.227 +398824,344.8,46.597 +398825,336.5,45.318 +398826,338.93,45.787 +398827,341.28,46.231 +398828,343.55,46.654 +398829,335.2,45.212 +398830,337.65,45.736 +398831,340.01,46.235 +398832,342.29,46.711 +398833,333.89,45.105 +398834,336.37,45.686 +398835,338.75,46.24 +398836,341.03,46.768 +398837,332.59,44.998 +398838,335.09,45.636 +398839,337.48,46.244 +398840,339.78,46.825 +398841,331.29,44.892 +398842,333.81,45.586 +398843,336.21,46.248 +398844,338.51,46.881 +398845,330,44.786 +398846,332.53,45.536 +398847,334.95,46.252 +398848,337.25,46.937 +398849,328.7,44.681 +398850,331.25,45.486 +398851,333.68,46.255 +398852,335.99,46.992 +398853,327.41,44.576 +398854,329.98,45.437 +398855,332.41,46.259 +398856,334.72,47.047 +398857,326.12,44.471 +398858,328.7,45.387 +398859,331.14,46.263 +398860,333.45,47.101 +398861,324.83,44.367 +398862,327.42,45.338 +398863,329.87,46.266 +398864,332.18,47.154 +398865,323.54,44.263 +398866,326.15,45.289 +398867,328.6,46.269 +398868,330.91,47.207 +398869,322.26,44.16 +398870,324.87,45.241 +398871,327.33,46.272 +398872,329.64,47.259 +398873,320.98,44.058 +398874,323.6,45.193 +398875,326.05,46.275 +398876,328.36,47.311 +398877,319.7,43.956 +398878,322.33,45.145 +398879,324.78,46.278 +398880,327.09,47.361 +398881,318.42,43.855 +398882,321.06,45.097 +398883,323.51,46.28 +398884,325.81,47.411 +398885,317.14,43.755 +398886,319.78,45.049 +398887,322.23,46.282 +398888,324.53,47.46 +398889,315.87,43.655 +398890,318.51,45.002 +398891,320.96,46.284 +398892,323.24,47.509 +398893,314.6,43.557 +398894,317.24,44.956 +398895,319.69,46.286 +398896,321.96,47.556 +398897,313.33,43.459 +398898,315.97,44.909 +398899,318.41,46.287 +398900,320.67,47.602 +398901,312.06,43.363 +398902,314.71,44.863 +398903,317.13,46.289 +398904,319.39,47.648 +398905,310.8,43.267 +398906,313.44,44.818 +398907,315.86,46.29 +398908,318.1,47.692 +398909,309.53,43.173 +398910,312.17,44.773 +398911,314.58,46.29 +398912,316.8,47.736 +398913,308.27,43.079 +398914,310.91,44.728 +398915,313.3,46.29 +398916,315.51,47.778 +398917,307.02,42.987 +398918,309.64,44.683 +398919,312.03,46.29 +398920,314.22,47.82 +398921,305.76,42.896 +398922,308.38,44.639 +398923,310.75,46.29 +398924,312.92,47.86 +398925,304.51,42.806 +398926,307.11,44.596 +398927,309.47,46.289 +398928,311.62,47.899 +398929,303.26,42.717 +398930,305.85,44.553 +398931,308.19,46.288 +398932,310.32,47.937 +398933,302.01,42.63 +398934,304.59,44.51 +398935,306.91,46.287 +398936,309.02,47.974 +398937,300.76,42.544 +398938,303.33,44.468 +398939,305.63,46.285 +398940,307.72,48.009 +398941,299.52,42.459 +398942,302.07,44.427 +398943,304.35,46.283 +398944,306.42,48.043 +398945,298.28,42.376 +398946,300.81,44.386 +398947,303.06,46.28 +398948,305.11,48.077 +398949,297.04,42.295 +398950,299.55,44.345 +398951,301.78,46.277 +398952,303.8,48.108 +398953,295.8,42.215 +398954,298.29,44.305 +398955,300.5,46.274 +398956,302.49,48.139 +398957,294.56,42.136 +398958,297.03,44.266 +398959,299.22,46.27 +398960,301.18,48.168 +398961,293.33,42.059 +398962,295.77,44.227 +398963,297.93,46.266 +398964,299.87,48.195 +398965,292.1,41.984 +398966,294.52,44.189 +398967,296.65,46.261 +398968,298.56,48.222 +398969,290.87,41.91 +398970,293.26,44.151 +398971,295.36,46.256 +398972,297.24,48.247 +398973,289.65,41.838 +398974,292.01,44.114 +398975,294.08,46.25 +398976,295.93,48.27 +398977,288.42,41.768 +398978,290.75,44.077 +398979,292.79,46.244 +398980,294.61,48.292 +398981,287.2,41.699 +398982,289.5,44.041 +398983,291.51,46.238 +398984,293.29,48.313 +398985,285.98,41.633 +398986,288.25,44.006 +398987,290.22,46.231 +398988,291.97,48.332 +398989,284.76,41.568 +398990,287,43.971 +398991,288.93,46.223 +398992,290.65,48.349 +398993,283.55,41.505 +398994,285.74,43.937 +398995,287.65,46.215 +398996,289.33,48.365 +398997,282.34,41.444 +398998,284.49,43.904 +398999,286.36,46.207 +399000,288.01,48.38 +399001,281.12,41.385 +399002,283.24,43.871 +399003,285.07,46.198 +399004,286.68,48.393 +399005,279.91,41.328 +399006,281.99,43.839 +399007,283.78,46.188 +399008,285.36,48.404 +399009,278.71,41.273 +399010,280.74,43.807 +399011,282.49,46.178 +399012,284.03,48.414 +399013,277.5,41.219 +399014,279.5,43.777 +399015,281.21,46.168 +399016,282.7,48.422 +399017,276.3,41.168 +399018,278.25,43.746 +399019,279.92,46.157 +399020,281.38,48.428 +399021,275.09,41.119 +399022,277,43.717 +399023,278.63,46.145 +399024,280.05,48.433 +399025,273.89,41.072 +399026,275.75,43.688 +399027,277.34,46.133 +399028,278.72,48.436 +399029,272.7,41.027 +399030,274.51,43.66 +399031,276.05,46.12 +399032,277.38,48.438 +399033,271.5,40.984 +399034,273.26,43.633 +399035,274.76,46.107 +399036,276.05,48.437 +399037,270.3,40.944 +399038,272.02,43.606 +399039,273.47,46.093 +399040,274.72,48.436 +399041,269.11,40.905 +399042,270.77,43.58 +399043,272.17,46.079 +399044,273.38,48.432 +399045,267.92,40.869 +399046,269.53,43.555 +399047,270.88,46.064 +399048,272.05,48.427 +399049,266.73,40.834 +399050,268.28,43.531 +399051,269.59,46.049 +399052,270.71,48.42 +399053,265.54,40.802 +399054,267.04,43.507 +399055,268.3,46.033 +399056,269.38,48.411 +399057,264.35,40.772 +399058,265.8,43.484 +399059,267.01,46.016 +399060,268.04,48.401 +399061,263.16,40.745 +399062,264.56,43.461 +399063,265.72,45.999 +399064,266.7,48.388 +399065,261.98,40.719 +399066,263.31,43.44 +399067,264.42,45.981 +399068,265.36,48.375 +399069,260.79,40.696 +399070,262.07,43.419 +399071,263.13,45.963 +399072,264.03,48.359 +399073,259.61,40.675 +399074,260.83,43.399 +399075,261.84,45.944 +399076,262.69,48.341 +399077,258.43,40.656 +399078,259.59,43.38 +399079,260.54,45.925 +399080,261.35,48.322 +399081,257.25,40.64 +399082,258.35,43.361 +399083,259.25,45.905 +399084,260,48.301 +399085,256.07,40.625 +399086,257.11,43.343 +399087,257.96,45.884 +399088,258.66,48.279 +399089,254.89,40.613 +399090,255.87,43.326 +399091,256.66,45.863 +399092,257.32,48.254 +399093,253.71,40.603 +399094,254.63,43.309 +399095,255.37,45.841 +399096,255.98,48.228 +399097,252.53,40.595 +399098,253.39,43.294 +399099,254.08,45.819 +399100,254.64,48.2 +399101,251.36,40.59 +399102,252.15,43.279 +399103,252.78,45.796 +399104,253.3,48.171 +399105,250.18,40.587 +399106,250.91,43.265 +399107,251.49,45.773 +399108,251.95,48.139 +399109,249.01,40.585 +399110,249.67,43.251 +399111,250.2,45.749 +399112,250.61,48.106 +399113,247.83,40.586 +399114,248.44,43.238 +399115,248.9,45.724 +399116,249.27,48.071 +399117,246.66,40.59 +399118,247.2,43.226 +399119,247.61,45.699 +399120,247.92,48.034 +399121,245.48,40.595 +399122,245.96,43.215 +399123,246.32,45.673 +399124,246.58,47.996 +399125,244.31,40.603 +399126,244.72,43.204 +399127,245.02,45.647 +399128,245.23,47.956 +399129,243.13,40.612 +399130,243.48,43.194 +399131,243.73,45.62 +399132,243.89,47.914 +399133,241.96,40.624 +399134,242.25,43.185 +399135,242.43,45.593 +399136,242.55,47.871 +399137,240.79,40.638 +399138,241.01,43.177 +399139,241.14,45.565 +399140,241.2,47.825 +399141,239.61,40.654 +399142,239.77,43.169 +399143,239.85,45.536 +399144,239.86,47.778 +399145,238.44,40.672 +399146,238.54,43.162 +399147,238.55,45.507 +399148,238.51,47.73 +399149,237.26,40.692 +399150,237.3,43.156 +399151,237.26,45.478 +399152,237.17,47.679 +399153,236.09,40.714 +399154,236.06,43.15 +399155,235.97,45.448 +399156,235.83,47.627 +399157,234.92,40.738 +399158,234.82,43.145 +399159,234.67,45.417 +399160,234.48,47.574 +399161,233.74,40.764 +399162,233.59,43.141 +399163,233.38,45.386 +399164,233.14,47.518 +399165,232.57,40.792 +399166,232.35,43.137 +399167,232.09,45.354 +399168,231.8,47.461 +399169,231.39,40.821 +399170,231.11,43.134 +399171,230.8,45.322 +399172,230.45,47.403 +399173,230.22,40.853 +399174,229.87,43.132 +399175,229.5,45.29 +399176,229.11,47.343 +399177,229.04,40.886 +399178,228.64,43.13 +399179,228.21,45.256 +399180,227.77,47.281 +399181,227.86,40.922 +399182,227.4,43.129 +399183,226.92,45.223 +399184,226.43,47.218 +399185,226.68,40.959 +399186,226.16,43.129 +399187,225.63,45.189 +399188,225.08,47.153 +399189,225.51,40.998 +399190,224.92,43.129 +399191,224.34,45.154 +399192,223.74,47.087 +399193,224.33,41.038 +399194,223.69,43.13 +399195,223.04,45.119 +399196,222.4,47.019 +399197,223.15,41.08 +399198,222.45,43.131 +399199,221.75,45.083 +399200,221.06,46.949 +399201,221.97,41.124 +399202,221.21,43.133 +399203,220.46,45.047 +399204,219.72,46.878 +399205,220.78,41.17 +399206,219.97,43.136 +399207,219.17,45.011 +399208,218.38,46.806 +399209,219.6,41.217 +399210,218.73,43.139 +399211,217.88,44.974 +399212,217.05,46.732 +399213,218.42,41.265 +399214,217.49,43.142 +399215,216.59,44.937 +399216,215.71,46.657 +399217,217.23,41.315 +399218,216.25,43.147 +399219,215.3,44.899 +399220,214.37,46.581 +399221,216.05,41.367 +399222,215.02,43.151 +399223,214.01,44.861 +399224,213.03,46.503 +399225,214.86,41.419 +399226,213.78,43.157 +399227,212.72,44.823 +399228,211.7,46.424 +399229,213.67,41.474 +399230,212.54,43.163 +399231,211.44,44.784 +399232,210.36,46.343 +399233,212.48,41.529 +399234,211.3,43.169 +399235,210.15,44.745 +399236,209.03,46.261 +399237,211.29,41.586 +399238,210.05,43.176 +399239,208.86,44.705 +399240,207.7,46.178 +399241,210.09,41.644 +399242,208.81,43.183 +399243,207.57,44.665 +399244,206.37,46.094 +399245,208.9,41.703 +399246,207.57,43.191 +399247,206.29,44.625 +399248,205.03,46.008 +399249,207.7,41.764 +399250,206.33,43.199 +399251,205,44.584 +399252,203.7,45.922 +399253,206.51,41.825 +399254,205.09,43.208 +399255,203.71,44.543 +399256,202.37,45.834 +399257,205.31,41.888 +399258,203.85,43.217 +399259,202.43,44.502 +399260,201.05,45.745 +399261,204.11,41.951 +399262,202.6,43.226 +399263,201.14,44.46 +399264,199.72,45.655 +399265,202.91,42.016 +399266,201.36,43.236 +399267,199.86,44.419 +399268,198.39,45.564 +399269,201.7,42.081 +399270,200.12,43.247 +399271,198.57,44.377 +399272,197.07,45.472 +399273,200.5,42.148 +399274,198.87,43.257 +399275,197.29,44.334 +399276,195.74,45.379 +399277,199.29,42.215 +399278,197.63,43.268 +399279,196.01,44.292 +399280,194.42,45.285 +399281,198.08,42.283 +399282,196.38,43.28 +399283,194.73,44.249 +399284,193.1,45.19 +399285,196.87,42.351 +399286,195.14,43.292 +399287,193.44,44.206 +399288,191.78,45.094 +399289,195.66,42.421 +399290,193.89,43.304 +399291,192.16,44.162 +399292,190.46,44.998 +399293,194.45,42.491 +399294,192.65,43.316 +399295,190.88,44.119 +399296,189.15,44.9 +399297,193.23,42.562 +399298,191.4,43.329 +399299,189.6,44.075 +399300,187.83,44.802 +399301,192.01,42.633 +399302,190.15,43.342 +399303,188.32,44.032 +399304,186.51,44.703 +399305,190.79,42.705 +399306,188.9,43.355 +399307,187.04,43.988 +399308,185.2,44.603 +399309,189.57,42.777 +399310,187.66,43.368 +399311,185.76,43.944 +399312,183.89,44.503 +399313,188.35,42.849 +399314,186.41,43.382 +399315,184.49,43.9 +399316,182.58,44.402 +399317,187.12,42.922 +399318,185.16,43.396 +399319,183.21,43.855 +399320,181.27,44.301 +399321,185.9,42.996 +399322,183.91,43.41 +399323,181.93,43.811 +399324,179.96,44.199 +399325,184.67,43.069 +399326,182.66,43.424 +399327,180.66,43.766 +399328,178.66,44.096 +399329,183.44,43.143 +399330,181.41,43.438 +399331,179.38,43.722 +399332,177.35,43.993 +399333,182.2,43.217 +399334,180.16,43.453 +399335,178.11,43.677 +399336,176.05,43.89 +399337,180.97,43.291 +399338,178.9,43.468 +399339,176.83,43.633 +399340,174.75,43.786 +399341,179.73,43.366 +399342,177.65,43.483 +399343,175.56,43.588 +399344,173.45,43.682 +399345,178.49,43.44 +399346,176.4,43.497 +399347,174.29,43.544 +399348,172.16,43.578 +399349,177.25,43.514 +399350,175.14,43.513 +399351,173.01,43.499 +399352,170.86,43.473 +399353,176.01,43.589 +399354,173.89,43.528 +399355,171.74,43.454 +399356,169.57,43.368 +399357,174.77,43.663 +399358,172.63,43.543 +399359,170.47,43.41 +399360,168.27,43.263 +399361,173.52,43.737 +399362,171.38,43.558 +399363,169.2,43.366 +399364,166.98,43.158 +399365,172.27,43.811 +399366,170.12,43.573 +399367,167.93,43.321 +399368,165.7,43.053 +399369,171.02,43.884 +399370,168.87,43.589 +399371,166.66,43.277 +399372,164.41,42.948 +399373,169.77,43.958 +399374,167.61,43.604 +399375,165.4,43.233 +399376,163.13,42.843 +399377,168.52,44.031 +399378,166.35,43.619 +399379,164.13,43.189 +399380,161.84,42.738 +399381,167.26,44.104 +399382,165.09,43.634 +399383,162.86,43.145 +399384,160.56,42.634 +399385,166.01,44.176 +399386,163.83,43.65 +399387,161.6,43.101 +399388,159.28,42.529 +399389,164.75,44.248 +399390,162.57,43.665 +399391,160.33,43.058 +399392,158.01,42.425 +399393,163.48,44.32 +399394,161.31,43.68 +399395,159.07,43.014 +399396,156.73,42.321 +399397,162.22,44.391 +399398,160.05,43.695 +399399,157.8,42.971 +399400,155.46,42.217 +399401,160.96,44.461 +399402,158.79,43.71 +399403,156.54,42.928 +399404,154.19,42.113 +399405,159.69,44.531 +399406,157.53,43.725 +399407,155.28,42.885 +399408,152.92,42.01 +399409,158.42,44.6 +399410,156.27,43.739 +399411,154.02,42.843 +399412,151.66,41.908 +399413,157.15,44.669 +399414,155,43.754 +399415,152.76,42.801 +399416,150.39,41.806 +399417,155.88,44.737 +399418,153.74,43.768 +399419,151.5,42.759 +399420,149.13,41.705 +399421,154.6,44.804 +399422,152.48,43.782 +399423,150.24,42.717 +399424,147.87,41.604 +399425,153.33,44.87 +399426,151.21,43.796 +399427,148.98,42.676 +399428,146.61,41.504 +399429,152.05,44.936 +399430,149.95,43.81 +399431,147.72,42.635 +399432,145.35,41.405 +399433,150.77,45.001 +399434,148.68,43.824 +399435,146.46,42.594 +399436,144.1,41.306 +399437,149.49,45.065 +399438,147.41,43.837 +399439,145.21,42.554 +399440,142.85,41.208 +399441,148.21,45.127 +399442,146.15,43.85 +399443,143.95,42.514 +399444,141.6,41.111 +399445,146.92,45.189 +399446,144.88,43.863 +399447,142.7,42.475 +399448,140.35,41.016 +399449,145.64,45.25 +399450,143.61,43.876 +399451,141.44,42.435 +399452,139.11,40.921 +399453,144.35,45.31 +399454,142.34,43.888 +399455,140.19,42.397 +399456,137.86,40.827 +399457,143.06,45.369 +399458,141.07,43.9 +399459,138.94,42.359 +399460,136.62,40.734 +399461,141.77,45.427 +399462,139.8,43.912 +399463,137.69,42.321 +399464,135.39,40.642 +399465,140.48,45.484 +399466,138.53,43.924 +399467,136.43,42.283 +399468,134.15,40.552 +399469,139.18,45.539 +399470,137.26,43.935 +399471,135.18,42.247 +399472,132.91,40.462 +399473,137.89,45.594 +399474,135.99,43.946 +399475,133.93,42.21 +399476,131.68,40.374 +399477,136.59,45.647 +399478,134.72,43.956 +399479,132.68,42.174 +399480,130.45,40.287 +399481,135.29,45.699 +399482,133.44,43.966 +399483,131.44,42.139 +399484,129.22,40.202 +399485,133.99,45.749 +399486,132.17,43.976 +399487,130.19,42.104 +399488,128,40.118 +399489,132.69,45.799 +399490,130.9,43.985 +399491,128.94,42.07 +399492,126.77,40.035 +399493,131.39,45.847 +399494,129.62,43.994 +399495,127.69,42.036 +399496,125.55,39.954 +399497,130.08,45.893 +399498,128.35,44.003 +399499,126.45,42.003 +399500,124.33,39.875 +399501,128.78,45.939 +399502,127.07,44.011 +399503,125.2,41.97 +399504,123.12,39.797 +399505,127.47,45.982 +399506,125.8,44.019 +399507,123.96,41.938 +399508,121.9,39.721 +399509,126.16,46.025 +399510,124.52,44.026 +399511,122.72,41.907 +399512,120.69,39.646 +399513,124.85,46.066 +399514,123.25,44.033 +399515,121.47,41.876 +399516,119.48,39.573 +399517,123.54,46.106 +399518,121.97,44.039 +399519,120.23,41.846 +399520,118.27,39.502 +399521,122.23,46.144 +399522,120.69,44.045 +399523,118.99,41.817 +399524,117.06,39.433 +399525,120.92,46.18 +399526,119.42,44.051 +399527,117.75,41.788 +399528,115.85,39.365 +399529,119.6,46.215 +399530,118.14,44.056 +399531,116.5,41.76 +399532,114.65,39.3 +399533,118.29,46.249 +399534,116.86,44.06 +399535,115.26,41.732 +399536,113.45,39.236 +399537,116.97,46.281 +399538,115.58,44.064 +399539,114.02,41.705 +399540,112.25,39.174 +399541,115.66,46.311 +399542,114.3,44.068 +399543,112.79,41.679 +399544,111.05,39.115 +399545,114.34,46.34 +399546,113.02,44.071 +399547,111.55,41.654 +399548,109.85,39.057 +399549,113.02,46.367 +399550,111.74,44.073 +399551,110.31,41.629 +399552,108.66,39.001 +399553,111.7,46.392 +399554,110.46,44.075 +399555,109.07,41.605 +399556,107.46,38.948 +399557,110.38,46.416 +399558,109.18,44.077 +399559,107.83,41.582 +399560,106.27,38.896 +399561,109.06,46.438 +399562,107.9,44.078 +399563,106.6,41.559 +399564,105.08,38.847 +399565,107.73,46.459 +399566,106.62,44.078 +399567,105.36,41.537 +399568,103.89,38.799 +399569,106.41,46.477 +399570,105.34,44.078 +399571,104.12,41.516 +399572,102.71,38.754 +399573,105.09,46.494 +399574,104.06,44.077 +399575,102.89,41.496 +399576,101.52,38.712 +399577,103.76,46.51 +399578,102.78,44.076 +399579,101.65,41.476 +399580,100.34,38.671 +399581,102.44,46.523 +399582,101.5,44.074 +399583,100.42,41.457 +399584,99.155,38.633 +399585,101.11,46.535 +399586,100.21,44.072 +399587,99.184,41.439 +399588,97.973,38.597 +399589,99.785,46.545 +399590,98.931,44.069 +399591,97.95,41.422 +399592,96.793,38.563 +399593,98.457,46.553 +399594,97.649,44.066 +399595,96.717,41.406 +399596,95.614,38.532 +399597,97.129,46.56 +399598,96.366,44.062 +399599,95.483,41.39 +399600,94.436,38.503 +399601,95.801,46.565 +399602,95.083,44.057 +399603,94.25,41.375 +399604,93.258,38.476 +399605,94.472,46.568 +399606,93.8,44.052 +399607,93.018,41.361 +399608,92.082,38.452 +399609,93.143,46.569 +399610,92.517,44.046 +399611,91.785,41.348 +399612,90.907,38.43 +399613,91.813,46.568 +399614,91.233,44.04 +399615,90.553,41.335 +399616,89.733,38.411 +399617,90.483,46.566 +399618,89.95,44.033 +399619,89.321,41.323 +399620,88.559,38.394 +399621,89.152,46.561 +399622,88.666,44.026 +399623,88.09,41.312 +399624,87.386,38.379 +399625,87.822,46.555 +399626,87.383,44.018 +399627,86.858,41.302 +399628,86.214,38.367 +399629,86.49,46.547 +399630,86.099,44.009 +399631,85.627,41.293 +399632,85.042,38.357 +399633,85.159,46.538 +399634,84.815,44 +399635,84.396,41.284 +399636,83.871,38.349 +399637,83.828,46.526 +399638,83.531,43.99 +399639,83.165,41.277 +399640,82.701,38.344 +399641,82.496,46.513 +399642,82.248,43.979 +399643,81.934,41.27 +399644,81.53,38.342 +399645,81.164,46.498 +399646,80.964,43.968 +399647,80.704,41.264 +399648,80.36,38.341 +399649,79.832,46.481 +399650,79.68,43.957 +399651,79.473,41.258 +399652,79.191,38.343 +399653,78.5,46.462 +399654,78.396,43.945 +399655,78.243,41.254 +399656,78.021,38.348 +399657,77.168,46.441 +399658,77.112,43.932 +399659,77.012,41.25 +399660,76.852,38.355 +399661,75.836,46.419 +399662,75.828,43.919 +399663,75.782,41.247 +399664,75.683,38.364 +399665,74.504,46.395 +399666,74.544,43.905 +399667,74.552,41.245 +399668,74.513,38.376 +399669,73.172,46.369 +399670,73.26,43.89 +399671,73.322,41.244 +399672,73.344,38.39 +399673,71.841,46.341 +399674,71.977,43.875 +399675,72.091,41.243 +399676,72.174,38.407 +399677,70.509,46.311 +399678,70.693,43.86 +399679,70.861,41.243 +399680,71.004,38.425 +399681,69.178,46.28 +399682,69.41,43.843 +399683,69.631,41.244 +399684,69.834,38.446 +399685,67.846,46.247 +399686,68.126,43.827 +399687,68.4,41.246 +399688,68.664,38.47 +399689,66.515,46.212 +399690,66.843,43.809 +399691,67.17,41.249 +399692,67.493,38.495 +399693,65.185,46.175 +399694,65.56,43.792 +399695,65.939,41.252 +399696,66.321,38.523 +399697,63.855,46.137 +399698,64.277,43.773 +399699,64.708,41.256 +399700,65.15,38.553 +399701,62.525,46.097 +399702,62.994,43.754 +399703,63.477,41.261 +399704,63.977,38.586 +399705,61.195,46.055 +399706,61.712,43.735 +399707,62.246,41.267 +399708,62.804,38.62 +399709,59.866,46.012 +399710,60.429,43.715 +399711,61.015,41.273 +399712,61.63,38.657 +399713,58.537,45.966 +399714,59.147,43.694 +399715,59.784,41.28 +399716,60.455,38.695 +399717,57.209,45.92 +399718,57.865,43.673 +399719,58.552,41.288 +399720,59.279,38.736 +399721,55.882,45.871 +399722,56.584,43.652 +399723,57.321,41.296 +399724,58.103,38.779 +399725,54.555,45.821 +399726,55.302,43.629 +399727,56.089,41.306 +399728,56.925,38.824 +399729,53.228,45.769 +399730,54.021,43.607 +399731,54.856,41.315 +399732,55.747,38.871 +399733,51.903,45.716 +399734,52.74,43.584 +399735,53.624,41.326 +399736,54.567,38.92 +399737,50.578,45.661 +399738,51.459,43.56 +399739,52.391,41.337 +399740,53.386,38.97 +399741,49.253,45.604 +399742,50.179,43.536 +399743,51.158,41.349 +399744,52.204,39.023 +399745,47.93,45.546 +399746,48.899,43.512 +399747,49.925,41.362 +399748,51.021,39.077 +399749,46.607,45.487 +399750,47.62,43.487 +399751,48.691,41.375 +399752,49.837,39.133 +399753,45.285,45.426 +399754,46.34,43.461 +399755,47.457,41.389 +399756,48.651,39.191 +399757,43.964,45.363 +399758,45.061,43.435 +399759,46.222,41.404 +399760,47.464,39.251 +399761,42.644,45.299 +399762,43.783,43.409 +399763,44.988,41.419 +399764,46.275,39.312 +399765,41.325,45.233 +399766,42.505,43.382 +399767,43.753,41.435 +399768,45.085,39.375 +399769,40.007,45.166 +399770,41.227,43.355 +399771,42.517,41.451 +399772,43.893,39.44 +399773,38.689,45.098 +399774,39.949,43.328 +399775,41.281,41.468 +399776,42.7,39.506 +399777,37.373,45.028 +399778,38.672,43.3 +399779,40.045,41.485 +399780,41.505,39.574 +399781,36.058,44.957 +399782,37.396,43.271 +399783,38.808,41.503 +399784,40.309,39.643 +399785,34.744,44.885 +399786,36.12,43.243 +399787,37.57,41.522 +399788,39.111,39.713 +399789,33.431,44.812 +399790,34.844,43.214 +399791,36.333,41.541 +399792,37.911,39.785 +399793,32.119,44.737 +399794,33.569,43.184 +399795,35.094,41.561 +399796,36.71,39.858 +399797,30.808,44.661 +399798,32.294,43.154 +399799,33.856,41.581 +399800,35.507,39.933 +399801,29.499,44.583 +399802,31.02,43.124 +399803,32.616,41.602 +399804,34.302,40.009 +399805,28.191,44.505 +399806,29.746,43.094 +399807,31.377,41.623 +399808,33.095,40.085 +399809,26.884,44.425 +399810,28.473,43.063 +399811,30.136,41.644 +399812,31.887,40.163 +399813,25.578,44.345 +399814,27.2,43.032 +399815,28.896,41.667 +399816,30.677,40.242 +399817,24.274,44.263 +399818,25.928,43.001 +399819,27.654,41.689 +399820,29.464,40.323 +399821,22.971,44.18 +399822,24.656,42.97 +399823,26.413,41.712 +399824,28.25,40.404 +399825,21.669,44.096 +399826,23.385,42.938 +399827,25.17,41.735 +399828,27.034,40.486 +399829,20.369,44.012 +399830,22.115,42.906 +399831,23.927,41.759 +399832,25.816,40.568 +399833,19.071,43.926 +399834,20.845,42.874 +399835,22.684,41.783 +399836,24.597,40.652 +399837,17.774,43.839 +399838,19.575,42.841 +399839,21.44,41.807 +399840,23.375,40.737 +399841,16.478,43.752 +399842,18.306,42.808 +399843,20.195,41.832 +399844,22.151,40.822 +399845,15.184,43.664 +399846,17.038,42.776 +399847,18.95,41.857 +399848,20.925,40.908 +399849,13.891,43.575 +399850,15.77,42.743 +399851,17.704,41.883 +399852,19.698,40.994 +399853,12.601,43.485 +399854,14.503,42.709 +399855,16.457,41.908 +399856,18.468,41.081 +399857,11.311,43.394 +399858,13.236,42.676 +399859,15.21,41.934 +399860,17.237,41.169 +399861,10.024,43.303 +399862,11.971,42.643 +399863,13.962,41.961 +399864,16.003,41.257 +399865,8.7377,43.211 +399866,10.705,42.609 +399867,12.714,41.987 +399868,14.768,41.345 +399869,7.4534,43.119 +399870,9.4406,42.576 +399871,11.465,42.014 +399872,13.53,41.434 +399873,6.1708,43.026 +399874,8.1765,42.542 +399875,10.216,42.041 +399876,12.291,41.524 +399877,4.89,42.933 +399878,6.9131,42.508 +399879,8.9655,42.068 +399880,11.049,41.613 +399881,3.6109,42.839 +399882,5.6503,42.474 +399883,7.7147,42.096 +399884,9.8055,41.703 +399885,2.3337,42.745 +399886,4.3881,42.44 +399887,6.4633,42.123 +399888,8.5601,41.793 +399889,1.0582,42.65 +399890,3.1266,42.407 +399891,5.2112,42.151 +399892,7.3126,41.883 +399893,359.78,42.555 +399894,1.8658,42.373 +399895,3.9585,42.179 +399896,6.0632,41.973 +399897,358.51,42.46 +399898,0.60554,42.339 +399899,2.7051,42.207 +399900,4.8119,42.063 +399901,357.24,42.364 +399902,359.35,42.305 +399903,1.4512,42.235 +399904,3.5586,42.153 +399905,355.97,42.269 +399906,358.09,42.271 +399907,0.19653,42.263 +399908,2.3033,42.244 +399909,354.71,42.173 +399910,356.83,42.238 +399911,358.94,42.291 +399912,1.0461,42.334 +399913,353.44,42.077 +399914,355.57,42.204 +399915,357.69,42.319 +399916,359.79,42.424 +399917,352.18,41.981 +399918,354.31,42.17 +399919,356.43,42.348 +399920,358.53,42.513 +399921,350.92,41.885 +399922,353.06,42.137 +399923,355.17,42.376 +399924,357.26,42.603 +399925,349.66,41.789 +399926,351.8,42.104 +399927,353.91,42.405 +399928,356,42.692 +399929,348.41,41.693 +399930,350.55,42.07 +399931,352.66,42.433 +399932,354.73,42.781 +399933,347.15,41.597 +399934,349.29,42.037 +399935,351.4,42.461 +399936,353.46,42.869 +399937,345.9,41.502 +399938,348.04,42.005 +399939,350.14,42.49 +399940,352.19,42.957 +399941,344.65,41.407 +399942,346.79,41.972 +399943,348.88,42.518 +399944,350.92,43.045 +399945,343.4,41.312 +399946,345.53,41.939 +399947,347.62,42.546 +399948,349.65,43.132 +399949,342.15,41.217 +399950,344.28,41.907 +399951,346.35,42.574 +399952,348.37,43.219 +399953,340.91,41.123 +399954,343.03,41.875 +399955,345.09,42.602 +399956,347.09,43.305 +399957,339.67,41.029 +399958,341.78,41.843 +399959,343.83,42.63 +399960,345.81,43.39 +399961,338.43,40.935 +399962,340.53,41.812 +399963,342.57,42.658 +399964,344.53,43.475 +399965,337.19,40.843 +399966,339.28,41.781 +399967,341.3,42.686 +399968,343.25,43.559 +399969,335.95,40.75 +399970,338.03,41.75 +399971,340.04,42.713 +399972,341.97,43.642 +399973,334.72,40.659 +399974,336.79,41.719 +399975,338.77,42.74 +399976,340.68,43.725 +399977,333.48,40.568 +399978,335.54,41.689 +399979,337.51,42.768 +399980,339.39,43.806 +399981,332.25,40.478 +399982,334.29,41.659 +399983,336.24,42.795 +399984,338.1,43.887 +399985,331.03,40.388 +399986,333.05,41.63 +399987,334.97,42.821 +399988,336.81,43.967 +399989,329.8,40.3 +399990,331.8,41.601 +399991,333.71,42.848 +399992,335.52,44.046 +399993,328.58,40.212 +399994,330.56,41.572 +399995,332.44,42.874 +399996,334.23,44.124 +399997,327.35,40.125 +399998,329.31,41.543 +399999,331.17,42.9 +400000,332.93,44.201 +400001,326.13,40.04 +400002,328.07,41.516 +400003,329.9,42.926 +400004,331.64,44.277 +400005,324.91,39.955 +400006,326.83,41.488 +400007,328.63,42.952 +400008,330.34,44.352 +400009,323.7,39.871 +400010,325.59,41.461 +400011,327.36,42.977 +400012,329.04,44.426 +400013,322.48,39.789 +400014,324.34,41.434 +400015,326.09,43.002 +400016,327.74,44.499 +400017,321.27,39.708 +400018,323.1,41.408 +400019,324.82,43.026 +400020,326.43,44.57 +400021,320.06,39.628 +400022,321.86,41.383 +400023,323.55,43.05 +400024,325.13,44.641 +400025,318.85,39.549 +400026,320.62,41.358 +400027,322.27,43.074 +400028,323.83,44.71 +400029,317.64,39.472 +400030,319.38,41.333 +400031,321,43.098 +400032,322.52,44.778 +400033,316.44,39.396 +400034,318.14,41.309 +400035,319.73,43.121 +400036,321.21,44.845 +400037,315.23,39.321 +400038,316.91,41.286 +400039,318.45,43.144 +400040,319.9,44.91 +400041,314.03,39.248 +400042,315.67,41.263 +400043,317.18,43.167 +400044,318.59,44.974 +400045,312.83,39.176 +400046,314.43,41.241 +400047,315.91,43.189 +400048,317.28,45.036 +400049,311.64,39.106 +400050,313.19,41.219 +400051,314.63,43.21 +400052,315.97,45.098 +400053,310.44,39.038 +400054,311.96,41.198 +400055,313.36,43.232 +400056,314.66,45.157 +400057,309.24,38.971 +400058,310.72,41.177 +400059,312.08,43.252 +400060,313.34,45.216 +400061,308.05,38.906 +400062,309.49,41.157 +400063,310.8,43.273 +400064,312.03,45.273 +400065,306.86,38.843 +400066,308.25,41.138 +400067,309.53,43.293 +400068,310.71,45.328 +400069,305.67,38.781 +400070,307.02,41.119 +400071,308.25,43.312 +400072,309.39,45.382 +400073,304.48,38.722 +400074,305.78,41.102 +400075,306.97,43.331 +400076,308.08,45.434 +400077,303.29,38.664 +400078,304.55,41.084 +400079,305.7,43.35 +400080,306.76,45.485 +400081,302.11,38.608 +400082,303.32,41.068 +400083,304.42,43.368 +400084,305.44,45.535 +400085,300.92,38.554 +400086,302.08,41.052 +400087,303.14,43.385 +400088,304.12,45.582 +400089,299.74,38.502 +400090,300.85,41.037 +400091,301.86,43.403 +400092,302.8,45.628 +400093,298.56,38.452 +400094,299.62,41.022 +400095,300.58,43.419 +400096,301.47,45.673 +400097,297.38,38.404 +400098,298.39,41.008 +400099,299.3,43.435 +400100,300.15,45.715 +400101,296.2,38.358 +400102,297.15,40.995 +400103,298.02,43.451 +400104,298.83,45.757 +400105,295.02,38.314 +400106,295.92,40.983 +400107,296.74,43.466 +400108,297.5,45.796 +400109,293.84,38.273 +400110,294.69,40.971 +400111,295.46,43.48 +400112,296.18,45.834 +400113,292.67,38.233 +400114,293.46,40.961 +400115,294.18,43.494 +400116,294.85,45.87 +400117,291.49,38.196 +400118,292.23,40.95 +400119,292.9,43.508 +400120,293.53,45.904 +400121,290.32,38.161 +400122,291,40.941 +400123,291.62,43.521 +400124,292.2,45.937 +400125,289.14,38.128 +400126,289.77,40.933 +400127,290.34,43.533 +400128,290.87,45.968 +400129,287.97,38.098 +400130,288.54,40.925 +400131,289.06,43.545 +400132,289.55,45.997 +400133,286.8,38.07 +400134,287.31,40.918 +400135,287.78,43.556 +400136,288.22,46.024 +400137,285.63,38.044 +400138,286.08,40.912 +400139,286.5,43.567 +400140,286.89,46.05 +400141,284.46,38.021 +400142,284.85,40.906 +400143,285.22,43.577 +400144,285.56,46.074 +400145,283.29,38 +400146,283.62,40.902 +400147,283.94,43.587 +400148,284.23,46.096 +400149,282.12,37.981 +400150,282.39,40.898 +400151,282.65,43.595 +400152,282.91,46.116 +400153,280.95,37.965 +400154,281.16,40.895 +400155,281.37,43.604 +400156,281.58,46.134 +400157,279.78,37.951 +400158,279.93,40.893 +400159,280.09,43.612 +400160,280.25,46.151 +400161,278.61,37.939 +400162,278.7,40.891 +400163,278.81,43.619 +400164,278.92,46.166 +400165,277.44,37.93 +400166,277.48,40.891 +400167,277.53,43.626 +400168,277.59,46.179 +400169,276.27,37.923 +400170,276.25,40.891 +400171,276.25,43.632 +400172,276.26,46.19 +400173,275.1,37.919 +400174,275.02,40.892 +400175,274.96,43.637 +400176,274.93,46.199 +400177,273.93,37.918 +400178,273.79,40.894 +400179,273.68,43.642 +400180,273.6,46.207 +400181,272.76,37.918 +400182,272.56,40.897 +400183,272.4,43.646 +400184,272.27,46.212 +400185,271.59,37.921 +400186,271.33,40.9 +400187,271.12,43.65 +400188,270.94,46.216 +400189,270.42,37.927 +400190,270.1,40.905 +400191,269.84,43.653 +400192,269.61,46.218 +400193,269.25,37.935 +400194,268.87,40.91 +400195,268.55,43.656 +400196,268.28,46.218 +400197,268.08,37.946 +400198,267.64,40.916 +400199,267.27,43.658 +400200,266.95,46.217 +400201,266.91,37.959 +400202,266.41,40.922 +400203,265.99,43.659 +400204,265.62,46.213 +400205,265.74,37.974 +400206,265.18,40.93 +400207,264.71,43.66 +400208,264.29,46.208 +400209,264.57,37.992 +400210,263.95,40.938 +400211,263.43,43.66 +400212,262.97,46.201 +400213,263.4,38.012 +400214,262.72,40.948 +400215,262.15,43.66 +400216,261.64,46.192 +400217,262.23,38.035 +400218,261.49,40.958 +400219,260.86,43.659 +400220,260.31,46.181 +400221,261.05,38.06 +400222,260.26,40.969 +400223,259.58,43.657 +400224,258.98,46.169 +400225,259.88,38.087 +400226,259.03,40.98 +400227,258.3,43.655 +400228,257.66,46.154 +400229,258.7,38.117 +400230,257.8,40.993 +400231,257.02,43.653 +400232,256.33,46.138 +400233,257.53,38.149 +400234,256.57,41.006 +400235,255.74,43.649 +400236,255.01,46.12 +400237,256.35,38.184 +400238,255.34,41.02 +400239,254.46,43.646 +400240,253.68,46.101 +400241,255.17,38.221 +400242,254.11,41.035 +400243,253.18,43.641 +400244,252.36,46.079 +400245,253.99,38.26 +400246,252.87,41.05 +400247,251.9,43.636 +400248,251.03,46.056 +400249,252.81,38.301 +400250,251.64,41.066 +400251,250.62,43.631 +400252,249.71,46.031 +400253,251.63,38.344 +400254,250.41,41.083 +400255,249.34,43.625 +400256,248.38,46.005 +400257,250.44,38.39 +400258,249.17,41.101 +400259,248.06,43.618 +400260,247.06,45.977 +400261,249.26,38.438 +400262,247.94,41.12 +400263,246.78,43.611 +400264,245.74,45.947 +400265,248.07,38.488 +400266,246.71,41.139 +400267,245.5,43.604 +400268,244.42,45.915 +400269,246.88,38.54 +400270,245.47,41.159 +400271,244.22,43.596 +400272,243.1,45.882 +400273,245.7,38.595 +400274,244.24,41.18 +400275,242.95,43.587 +400276,241.78,45.847 +400277,244.51,38.651 +400278,243,41.201 +400279,241.67,43.578 +400280,240.46,45.81 +400281,243.31,38.709 +400282,241.77,41.224 +400283,240.39,43.568 +400284,239.15,45.772 +400285,242.12,38.769 +400286,240.53,41.246 +400287,239.11,43.558 +400288,237.83,45.732 +400289,240.92,38.832 +400290,239.29,41.27 +400291,237.84,43.547 +400292,236.52,45.691 +400293,239.73,38.896 +400294,238.05,41.294 +400295,236.56,43.536 +400296,235.2,45.648 +400297,238.53,38.962 +400298,236.82,41.319 +400299,235.28,43.525 +400300,233.89,45.604 +400301,237.33,39.03 +400302,235.58,41.345 +400303,234.01,43.513 +400304,232.58,45.558 +400305,236.12,39.099 +400306,234.34,41.371 +400307,232.73,43.5 +400308,231.27,45.51 +400309,234.92,39.17 +400310,233.1,41.398 +400311,231.46,43.488 +400312,229.96,45.461 +400313,233.71,39.243 +400314,231.86,41.425 +400315,230.18,43.474 +400316,228.65,45.411 +400317,232.51,39.318 +400318,230.62,41.453 +400319,228.91,43.46 +400320,227.34,45.359 +400321,231.3,39.394 +400322,229.38,41.482 +400323,227.64,43.446 +400324,226.03,45.306 +400325,230.08,39.472 +400326,228.14,41.511 +400327,226.36,43.432 +400328,224.73,45.251 +400329,228.87,39.551 +400330,226.89,41.541 +400331,225.09,43.417 +400332,223.42,45.196 +400333,227.65,39.632 +400334,225.65,41.571 +400335,223.82,43.401 +400336,222.12,45.138 +400337,226.44,39.715 +400338,224.41,41.602 +400339,222.55,43.386 +400340,220.82,45.08 +400341,225.22,39.798 +400342,223.16,41.633 +400343,221.28,43.37 +400344,219.52,45.02 +400345,223.99,39.883 +400346,221.92,41.665 +400347,220.01,43.353 +400348,218.22,44.959 +400349,222.77,39.969 +400350,220.67,41.698 +400351,218.74,43.337 +400352,216.93,44.897 +400353,221.54,40.057 +400354,219.43,41.73 +400355,217.47,43.319 +400356,215.63,44.834 +400357,220.32,40.145 +400358,218.18,41.764 +400359,216.2,43.302 +400360,214.34,44.769 +400361,219.09,40.235 +400362,216.93,41.798 +400363,214.93,43.284 +400364,213.05,44.704 +400365,217.85,40.326 +400366,215.68,41.832 +400367,213.66,43.266 +400368,211.75,44.637 +400369,216.62,40.418 +400370,214.44,41.867 +400371,212.39,43.248 +400372,210.47,44.569 +400373,215.38,40.511 +400374,213.19,41.902 +400375,211.13,43.23 +400376,209.18,44.501 +400377,214.15,40.604 +400378,211.94,41.937 +400379,209.86,43.211 +400380,207.89,44.431 +400381,212.9,40.699 +400382,210.69,41.973 +400383,208.59,43.192 +400384,206.61,44.36 +400385,211.66,40.795 +400386,209.43,42.01 +400387,207.33,43.173 +400388,205.32,44.289 +400389,210.42,40.891 +400390,208.18,42.046 +400391,206.06,43.153 +400392,204.04,44.217 +400393,209.17,40.988 +400394,206.93,42.083 +400395,204.8,43.134 +400396,202.76,44.143 +400397,207.92,41.086 +400398,205.68,42.12 +400399,203.53,43.114 +400400,201.49,44.069 +400401,206.67,41.184 +400402,204.42,42.158 +400403,202.27,43.094 +400404,200.21,43.994 +400405,205.42,41.283 +400406,203.17,42.196 +400407,201.01,43.074 +400408,198.94,43.919 +400409,204.16,41.382 +400410,201.91,42.234 +400411,199.75,43.054 +400412,197.66,43.843 +400413,202.9,41.482 +400414,200.65,42.273 +400415,198.49,43.033 +400416,196.39,43.766 +400417,201.65,41.583 +400418,199.4,42.311 +400419,197.23,43.013 +400420,195.12,43.689 +400421,200.38,41.683 +400422,198.14,42.35 +400423,195.97,42.992 +400424,193.86,43.611 +400425,199.12,41.784 +400426,196.88,42.389 +400427,194.71,42.972 +400428,192.59,43.532 +400429,197.86,41.886 +400430,195.62,42.429 +400431,193.45,42.951 +400432,191.33,43.453 +400433,196.59,41.987 +400434,194.36,42.468 +400435,192.19,42.93 +400436,190.07,43.374 +400437,195.32,42.089 +400438,193.1,42.508 +400439,190.93,42.909 +400440,188.81,43.294 +400441,194.05,42.191 +400442,191.84,42.548 +400443,189.67,42.888 +400444,187.55,43.214 +400445,192.77,42.293 +400446,190.58,42.588 +400447,188.42,42.868 +400448,186.29,43.133 +400449,191.5,42.395 +400450,189.31,42.628 +400451,187.16,42.847 +400452,185.04,43.052 +400453,190.22,42.497 +400454,188.05,42.668 +400455,185.91,42.826 +400456,183.79,42.972 +400457,188.94,42.599 +400458,186.79,42.708 +400459,184.65,42.805 +400460,182.54,42.89 +400461,187.66,42.701 +400462,185.52,42.748 +400463,183.4,42.784 +400464,181.29,42.809 +400465,186.38,42.802 +400466,184.26,42.789 +400467,182.15,42.764 +400468,180.04,42.728 +400469,185.1,42.904 +400470,182.99,42.829 +400471,180.89,42.743 +400472,178.8,42.646 +400473,183.81,43.005 +400474,181.72,42.87 +400475,179.64,42.723 +400476,177.56,42.565 +400477,182.52,43.106 +400478,180.46,42.91 +400479,178.39,42.702 +400480,176.32,42.484 +400481,181.23,43.206 +400482,179.19,42.95 +400483,177.14,42.682 +400484,175.08,42.402 +400485,179.94,43.307 +400486,177.92,42.991 +400487,175.89,42.662 +400488,173.84,42.321 +400489,178.65,43.406 +400490,176.65,43.031 +400491,174.64,42.642 +400492,172.61,42.24 +400493,177.35,43.506 +400494,175.38,43.071 +400495,173.39,42.623 +400496,171.38,42.16 +400497,176.06,43.605 +400498,174.11,43.112 +400499,172.14,42.603 +400500,170.15,42.079 +400501,174.76,43.703 +400502,172.84,43.152 +400503,170.89,42.584 +400504,168.92,41.999 +400505,173.46,43.801 +400506,171.57,43.192 +400507,169.64,42.565 +400508,167.69,41.92 +400509,172.16,43.898 +400510,170.29,43.232 +400511,168.4,42.546 +400512,166.46,41.84 +400513,170.85,43.994 +400514,169.02,43.272 +400515,167.15,42.527 +400516,165.24,41.762 +400517,169.55,44.09 +400518,167.75,43.311 +400519,165.9,42.509 +400520,164.02,41.683 +400521,168.24,44.185 +400522,166.47,43.351 +400523,164.66,42.491 +400524,162.8,41.606 +400525,166.94,44.279 +400526,165.2,43.39 +400527,163.41,42.473 +400528,161.58,41.529 +400529,165.63,44.372 +400530,163.92,43.429 +400531,162.17,42.456 +400532,160.37,41.452 +400533,164.32,44.465 +400534,162.65,43.468 +400535,160.93,42.439 +400536,159.16,41.377 +400537,163.01,44.556 +400538,161.37,43.507 +400539,159.68,42.422 +400540,157.94,41.302 +400541,161.69,44.647 +400542,160.09,43.545 +400543,158.44,42.406 +400544,156.73,41.228 +400545,160.38,44.737 +400546,158.81,43.583 +400547,157.2,42.39 +400548,155.53,41.154 +400549,159.06,44.826 +400550,157.54,43.621 +400551,155.96,42.375 +400552,154.32,41.082 +400553,157.75,44.913 +400554,156.26,43.659 +400555,154.72,42.359 +400556,153.12,41.011 +400557,156.43,45 +400558,154.98,43.697 +400559,153.47,42.345 +400560,151.91,40.94 +400561,155.11,45.085 +400562,153.7,43.734 +400563,152.23,42.33 +400564,150.71,40.871 +400565,153.79,45.17 +400566,152.42,43.771 +400567,150.99,42.317 +400568,149.51,40.803 +400569,152.47,45.253 +400570,151.14,43.807 +400571,149.75,42.303 +400572,148.31,40.736 +400573,151.15,45.335 +400574,149.86,43.843 +400575,148.51,42.29 +400576,147.12,40.67 +400577,149.82,45.416 +400578,148.57,43.879 +400579,147.28,42.278 +400580,145.92,40.605 +400581,148.5,45.495 +400582,147.29,43.915 +400583,146.04,42.266 +400584,144.73,40.542 +400585,147.17,45.574 +400586,146.01,43.95 +400587,144.8,42.254 +400588,143.54,40.48 +400589,145.85,45.651 +400590,144.73,43.984 +400591,143.56,42.244 +400592,142.35,40.419 +400593,144.52,45.726 +400594,143.44,44.019 +400595,142.32,42.233 +400596,141.16,40.36 +400597,143.19,45.801 +400598,142.16,44.053 +400599,141.09,42.223 +400600,139.97,40.302 +400601,141.86,45.874 +400602,140.88,44.086 +400603,139.85,42.214 +400604,138.78,40.246 +400605,140.54,45.945 +400606,139.59,44.119 +400607,138.61,42.206 +400608,137.6,40.191 +400609,139.2,46.015 +400610,138.31,44.152 +400611,137.38,42.197 +400612,136.41,40.138 +400613,137.87,46.084 +400614,137.02,44.184 +400615,136.14,42.19 +400616,135.23,40.087 +400617,136.54,46.151 +400618,135.74,44.216 +400619,134.91,42.183 +400620,134.05,40.037 +400621,135.21,46.216 +400622,134.45,44.248 +400623,133.67,42.177 +400624,132.87,39.989 +400625,133.88,46.281 +400626,133.16,44.279 +400627,132.44,42.171 +400628,131.69,39.942 +400629,132.54,46.343 +400630,131.88,44.309 +400631,131.2,42.166 +400632,130.51,39.898 +400633,131.21,46.404 +400634,130.59,44.339 +400635,129.97,42.162 +400636,129.33,39.855 +400637,129.87,46.464 +400638,129.3,44.368 +400639,128.73,42.158 +400640,128.16,39.814 +400641,128.54,46.522 +400642,128.02,44.397 +400643,127.5,42.155 +400644,126.98,39.775 +400645,127.2,46.578 +400646,126.73,44.426 +400647,126.26,42.153 +400648,125.81,39.738 +400649,125.87,46.633 +400650,125.44,44.454 +400651,125.03,42.151 +400652,124.63,39.702 +400653,124.53,46.686 +400654,124.16,44.481 +400655,123.8,42.15 +400656,123.46,39.669 +400657,123.19,46.737 +400658,122.87,44.508 +400659,122.56,42.15 +400660,122.28,39.638 +400661,121.86,46.787 +400662,121.58,44.535 +400663,121.33,42.15 +400664,121.11,39.609 +400665,120.52,46.835 +400666,120.29,44.561 +400667,120.09,42.152 +400668,119.94,39.581 +400669,119.18,46.881 +400670,119,44.586 +400671,118.86,42.153 +400672,118.77,39.556 +400673,117.84,46.925 +400674,117.71,44.611 +400675,117.63,42.156 +400676,117.59,39.533 +400677,116.51,46.968 +400678,116.43,44.635 +400679,116.39,42.159 +400680,116.42,39.513 +400681,115.17,47.009 +400682,115.14,44.659 +400683,115.16,42.163 +400684,115.25,39.494 +400685,113.83,47.049 +400686,113.85,44.682 +400687,113.92,42.168 +400688,114.08,39.477 +400689,112.49,47.087 +400690,112.56,44.704 +400691,112.69,42.174 +400692,112.91,39.463 +400693,111.15,47.122 +400694,111.27,44.726 +400695,111.46,42.18 +400696,111.74,39.451 +400697,109.82,47.157 +400698,109.98,44.748 +400699,110.22,42.187 +400700,110.57,39.441 +400701,108.48,47.189 +400702,108.69,44.769 +400703,108.99,42.195 +400704,109.39,39.434 +400705,107.14,47.22 +400706,107.4,44.789 +400707,107.75,42.203 +400708,108.22,39.428 +400709,105.8,47.248 +400710,106.11,44.809 +400711,106.52,42.213 +400712,107.05,39.425 +400713,104.46,47.275 +400714,104.83,44.828 +400715,105.28,42.223 +400716,105.88,39.425 +400717,103.13,47.301 +400718,103.54,44.847 +400719,104.05,42.233 +400720,104.7,39.426 +400721,101.79,47.324 +400722,102.25,44.865 +400723,102.82,42.245 +400724,103.53,39.43 +400725,100.45,47.346 +400726,100.96,44.882 +400727,101.58,42.257 +400728,102.36,39.436 +400729,99.115,47.366 +400730,99.671,44.899 +400731,100.34,42.271 +400732,101.18,39.445 +400733,97.779,47.384 +400734,98.382,44.915 +400735,99.109,42.285 +400736,100.01,39.455 +400737,96.443,47.4 +400738,97.093,44.931 +400739,97.873,42.299 +400740,98.83,39.468 +400741,95.107,47.415 +400742,95.805,44.946 +400743,96.637,42.315 +400744,97.653,39.484 +400745,93.772,47.428 +400746,94.516,44.961 +400747,95.4,42.331 +400748,96.475,39.502 +400749,92.437,47.439 +400750,93.228,44.975 +400751,94.163,42.348 +400752,95.296,39.522 +400753,91.103,47.448 +400754,91.94,44.988 +400755,92.926,42.366 +400756,94.116,39.544 +400757,89.769,47.455 +400758,90.652,45.001 +400759,91.688,42.384 +400760,92.935,39.569 +400761,88.436,47.461 +400762,89.365,45.013 +400763,90.45,42.403 +400764,91.753,39.596 +400765,87.104,47.465 +400766,88.077,45.025 +400767,89.212,42.423 +400768,90.569,39.625 +400769,85.772,47.467 +400770,86.79,45.036 +400771,87.973,42.444 +400772,89.385,39.656 +400773,84.44,47.467 +400774,85.503,45.046 +400775,86.734,42.466 +400776,88.198,39.69 +400777,83.11,47.466 +400778,84.216,45.056 +400779,85.495,42.488 +400780,87.011,39.726 +400781,81.78,47.463 +400782,82.929,45.066 +400783,84.255,42.511 +400784,85.822,39.765 +400785,80.451,47.458 +400786,81.643,45.075 +400787,83.014,42.535 +400788,84.632,39.805 +400789,79.123,47.452 +400790,80.357,45.083 +400791,81.773,42.559 +400792,83.44,39.848 +400793,77.796,47.444 +400794,79.071,45.091 +400795,80.532,42.585 +400796,82.246,39.893 +400797,76.469,47.434 +400798,77.785,45.098 +400799,79.29,42.611 +400800,81.051,39.94 +400801,75.144,47.422 +400802,76.5,45.104 +400803,78.047,42.637 +400804,79.854,39.989 +400805,73.819,47.409 +400806,75.215,45.111 +400807,76.804,42.665 +400808,78.655,40.04 +400809,72.496,47.394 +400810,73.93,45.116 +400811,75.561,42.693 +400812,77.455,40.093 +400813,71.173,47.377 +400814,72.646,45.121 +400815,74.317,42.722 +400816,76.253,40.149 +400817,69.851,47.359 +400818,71.362,45.126 +400819,73.072,42.751 +400820,75.049,40.206 +400821,68.531,47.34 +400822,70.079,45.13 +400823,71.827,42.781 +400824,73.843,40.265 +400825,67.212,47.318 +400826,68.795,45.133 +400827,70.581,42.812 +400828,72.635,40.327 +400829,65.893,47.295 +400830,67.513,45.136 +400831,69.334,42.844 +400832,71.425,40.39 +400833,64.576,47.271 +400834,66.23,45.139 +400835,68.087,42.876 +400836,70.214,40.455 +400837,63.26,47.245 +400838,64.948,45.141 +400839,66.839,42.909 +400840,69,40.522 +400841,61.945,47.218 +400842,63.667,45.142 +400843,65.591,42.942 +400844,67.784,40.591 +400845,60.632,47.189 +400846,62.385,45.144 +400847,64.342,42.976 +400848,66.566,40.662 +400849,59.32,47.158 +400850,61.105,45.144 +400851,63.092,43.011 +400852,65.346,40.735 +400853,58.009,47.126 +400854,59.824,45.144 +400855,61.842,43.046 +400856,64.124,40.809 +400857,56.699,47.093 +400858,58.544,45.144 +400859,60.591,43.082 +400860,62.899,40.885 +400861,55.391,47.058 +400862,57.265,45.143 +400863,59.339,43.118 +400864,61.673,40.962 +400865,54.084,47.022 +400866,55.986,45.142 +400867,58.087,43.155 +400868,60.444,41.042 +400869,52.779,46.985 +400870,54.707,45.141 +400871,56.834,43.193 +400872,59.214,41.122 +400873,51.475,46.946 +400874,53.429,45.139 +400875,55.58,43.231 +400876,57.981,41.205 +400877,50.172,46.906 +400878,52.152,45.137 +400879,54.325,43.27 +400880,56.745,41.288 +400881,48.871,46.864 +400882,50.875,45.134 +400883,53.07,43.309 +400884,55.508,41.374 +400885,47.571,46.822 +400886,49.598,45.131 +400887,51.814,43.349 +400888,54.268,41.46 +400889,46.273,46.778 +400890,48.322,45.127 +400891,50.557,43.389 +400892,53.026,41.548 +400893,44.977,46.733 +400894,47.047,45.124 +400895,49.3,43.429 +400896,51.782,41.638 +400897,43.682,46.687 +400898,45.772,45.119 +400899,48.042,43.471 +400900,50.536,41.728 +400901,42.388,46.639 +400902,44.497,45.115 +400903,46.783,43.512 +400904,49.287,41.82 +400905,41.097,46.591 +400906,43.224,45.11 +400907,45.523,43.554 +400908,48.036,41.913 +400909,39.807,46.541 +400910,41.95,45.105 +400911,44.263,43.597 +400912,46.783,42.007 +400913,38.518,46.491 +400914,40.677,45.1 +400915,43.002,43.64 +400916,45.528,42.102 +400917,37.232,46.439 +400918,39.405,45.094 +400919,41.74,43.683 +400920,44.27,42.198 +400921,35.947,46.387 +400922,38.133,45.088 +400923,40.477,43.727 +400924,43.01,42.296 +400925,34.663,46.333 +400926,36.862,45.082 +400927,39.213,43.771 +400928,41.748,42.394 +400929,33.382,46.279 +400930,35.591,45.075 +400931,37.949,43.815 +400932,40.484,42.493 +400933,32.102,46.223 +400934,34.321,45.068 +400935,36.684,43.86 +400936,39.218,42.593 +400937,30.824,46.167 +400938,33.052,45.061 +400939,35.418,43.905 +400940,37.949,42.693 +400941,29.548,46.11 +400942,31.783,45.054 +400943,34.152,43.951 +400944,36.678,42.795 +400945,28.273,46.052 +400946,30.515,45.047 +400947,32.885,43.997 +400948,35.405,42.897 +400949,27.001,45.994 +400950,29.247,45.039 +400951,31.617,44.043 +400952,34.13,43 +400953,25.73,45.935 +400954,27.98,45.032 +400955,30.348,44.089 +400956,32.853,43.103 +400957,24.461,45.875 +400958,26.713,45.024 +400959,29.078,44.136 +400960,31.574,43.207 +400961,23.194,45.814 +400962,25.447,45.016 +400963,27.808,44.183 +400964,30.292,43.312 +400965,21.928,45.753 +400966,24.182,45.007 +400967,26.537,44.23 +400968,29.009,43.417 +400969,20.665,45.692 +400970,22.917,44.999 +400971,25.265,44.277 +400972,27.723,43.522 +400973,19.404,45.629 +400974,21.653,44.991 +400975,23.993,44.324 +400976,26.435,43.628 +400977,18.144,45.567 +400978,20.389,44.982 +400979,22.719,44.372 +400980,25.146,43.734 +400981,16.886,45.504 +400982,19.126,44.974 +400983,21.445,44.42 +400984,23.854,43.84 +400985,15.63,45.44 +400986,17.863,44.965 +400987,20.17,44.468 +400988,22.561,43.947 +400989,14.376,45.376 +400990,16.601,44.956 +400991,18.895,44.516 +400992,21.265,44.053 +400993,13.124,45.312 +400994,15.34,44.948 +400995,17.619,44.564 +400996,19.968,44.16 +400997,11.874,45.248 +400998,14.079,44.939 +400999,16.342,44.613 +401000,18.668,44.267 +401001,10.626,45.183 +401002,12.819,44.93 +401003,15.064,44.661 +401004,17.367,44.374 +401005,9.3798,45.118 +401006,11.559,44.921 +401007,13.786,44.71 +401008,16.064,44.481 +401009,8.1354,45.053 +401010,10.3,44.913 +401011,12.507,44.758 +401012,14.759,44.588 +401013,6.8929,44.988 +401014,9.0411,44.904 +401015,11.227,44.807 +401016,13.453,44.695 +401017,5.6523,44.923 +401018,7.7831,44.895 +401019,9.9463,44.856 +401020,12.145,44.802 +401021,4.4136,44.857 +401022,6.5256,44.887 +401023,8.6652,44.904 +401024,10.834,44.908 +401025,3.1769,44.792 +401026,5.2686,44.878 +401027,7.3834,44.953 +401028,9.5227,45.014 +401029,1.942,44.727 +401030,4.0122,44.87 +401031,6.1009,45.002 +401032,8.2093,45.12 +401033,0.70895,44.662 +401034,2.7564,44.862 +401035,4.8177,45.05 +401036,6.8942,45.226 +401037,359.48,44.597 +401038,1.501,44.854 +401039,3.5339,45.099 +401040,5.5776,45.331 +401041,358.25,44.532 +401042,0.24618,44.846 +401043,2.2495,45.147 +401044,4.2594,45.436 +401045,357.02,44.468 +401046,358.99,44.838 +401047,0.96442,45.196 +401048,2.9396,45.541 +401049,355.8,44.404 +401050,357.74,44.83 +401051,359.68,45.244 +401052,1.6183,45.645 +401053,354.57,44.34 +401054,356.48,44.823 +401055,358.39,45.293 +401056,0.2956,45.748 +401057,353.35,44.276 +401058,355.23,44.815 +401059,357.11,45.341 +401060,358.97,45.851 +401061,352.13,44.213 +401062,353.98,44.808 +401063,355.82,45.389 +401064,357.65,45.954 +401065,350.91,44.15 +401066,352.73,44.801 +401067,354.53,45.437 +401068,356.32,46.055 +401069,349.69,44.088 +401070,351.48,44.795 +401071,353.24,45.484 +401072,354.99,46.156 +401073,348.48,44.027 +401074,350.23,44.788 +401075,351.95,45.532 +401076,353.66,46.257 +401077,347.27,43.965 +401078,348.97,44.782 +401079,350.66,45.579 +401080,352.33,46.356 +401081,346.05,43.905 +401082,347.72,44.776 +401083,349.37,45.627 +401084,351,46.455 +401085,344.84,43.845 +401086,346.48,44.771 +401087,348.08,45.674 +401088,349.66,46.553 +401089,343.64,43.786 +401090,345.23,44.766 +401091,346.79,45.72 +401092,348.33,46.65 +401093,342.43,43.728 +401094,343.98,44.761 +401095,345.5,45.767 +401096,346.99,46.746 +401097,341.22,43.671 +401098,342.73,44.756 +401099,344.21,45.813 +401100,345.66,46.841 +401101,340.02,43.614 +401102,341.48,44.752 +401103,342.91,45.859 +401104,344.32,46.936 +401105,338.82,43.558 +401106,340.23,44.748 +401107,341.62,45.905 +401108,342.98,47.029 +401109,337.62,43.503 +401110,338.99,44.745 +401111,340.33,45.95 +401112,341.64,47.121 +401113,336.42,43.45 +401114,337.74,44.742 +401115,339.03,45.995 +401116,340.3,47.213 +401117,335.22,43.397 +401118,336.49,44.739 +401119,337.74,46.04 +401120,338.96,47.303 +401121,334.03,43.345 +401122,335.25,44.737 +401123,336.44,46.085 +401124,337.62,47.392 +401125,332.83,43.294 +401126,334,44.735 +401127,335.15,46.129 +401128,336.27,47.48 +401129,331.64,43.245 +401130,332.75,44.733 +401131,333.85,46.173 +401132,334.93,47.566 +401133,330.44,43.196 +401134,331.51,44.732 +401135,332.55,46.216 +401136,333.58,47.652 +401137,329.25,43.149 +401138,330.26,44.732 +401139,331.26,46.259 +401140,332.24,47.736 +401141,328.06,43.103 +401142,329.02,44.732 +401143,329.96,46.302 +401144,330.89,47.819 +401145,326.87,43.059 +401146,327.77,44.732 +401147,328.66,46.345 +401148,329.54,47.901 +401149,325.69,43.015 +401150,326.53,44.733 +401151,327.37,46.387 +401152,328.2,47.982 +401153,324.5,42.974 +401154,325.28,44.734 +401155,326.07,46.428 +401156,326.85,48.061 +401157,323.31,42.933 +401158,324.04,44.736 +401159,324.77,46.469 +401160,325.5,48.139 +401161,322.13,42.894 +401162,322.8,44.739 +401163,323.47,46.51 +401164,324.15,48.215 +401165,320.94,42.856 +401166,321.55,44.742 +401167,322.17,46.55 +401168,322.8,48.29 +401169,319.76,42.82 +401170,320.31,44.745 +401171,320.87,46.59 +401172,321.45,48.364 +401173,318.58,42.786 +401174,319.06,44.749 +401175,319.57,46.63 +401176,320.1,48.436 +401177,317.39,42.753 +401178,317.82,44.754 +401179,318.27,46.669 +401180,318.75,48.506 +401181,316.21,42.722 +401182,316.58,44.759 +401183,316.97,46.707 +401184,317.39,48.576 +401185,315.03,42.692 +401186,315.33,44.765 +401187,315.67,46.745 +401188,316.04,48.643 +401189,313.85,42.664 +401190,314.09,44.771 +401191,314.37,46.783 +401192,314.69,48.71 +401193,312.67,42.638 +401194,312.85,44.778 +401195,313.07,46.82 +401196,313.34,48.774 +401197,311.49,42.613 +401198,311.6,44.786 +401199,311.77,46.857 +401200,311.99,48.838 +401201,310.31,42.59 +401202,310.36,44.794 +401203,310.47,46.893 +401204,310.63,48.899 +401205,309.13,42.569 +401206,309.12,44.803 +401207,309.17,46.928 +401208,309.28,48.959 +401209,307.95,42.55 +401210,307.87,44.812 +401211,307.87,46.963 +401212,307.93,49.018 +401213,306.78,42.533 +401214,306.63,44.822 +401215,306.57,46.998 +401216,306.57,49.075 +401217,305.6,42.517 +401218,305.39,44.833 +401219,305.27,47.032 +401220,305.22,49.13 +401221,304.42,42.503 +401222,304.14,44.844 +401223,303.97,47.065 +401224,303.87,49.183 +401225,303.24,42.492 +401226,302.9,44.856 +401227,302.67,47.098 +401228,302.51,49.235 +401229,302.06,42.482 +401230,301.66,44.869 +401231,301.37,47.131 +401232,301.16,49.286 +401233,300.88,42.474 +401234,300.41,44.882 +401235,300.06,47.163 +401236,299.81,49.334 +401237,299.7,42.468 +401238,299.17,44.896 +401239,298.76,47.194 +401240,298.45,49.381 +401241,298.52,42.464 +401242,297.92,44.91 +401243,297.46,47.225 +401244,297.1,49.427 +401245,297.34,42.462 +401246,296.68,44.926 +401247,296.16,47.255 +401248,295.75,49.47 +401249,296.16,42.462 +401250,295.44,44.941 +401251,294.86,47.285 +401252,294.4,49.512 +401253,294.98,42.464 +401254,294.19,44.958 +401255,293.56,47.314 +401256,293.05,49.553 +401257,293.8,42.468 +401258,292.95,44.975 +401259,292.26,47.343 +401260,291.69,49.591 +401261,292.62,42.475 +401262,291.7,44.993 +401263,290.96,47.371 +401264,290.34,49.628 +401265,291.44,42.483 +401266,290.45,45.012 +401267,289.65,47.398 +401268,288.99,49.663 +401269,290.25,42.493 +401270,289.21,45.031 +401271,288.35,47.425 +401272,287.64,49.697 +401273,289.07,42.505 +401274,287.96,45.051 +401275,287.05,47.452 +401276,286.29,49.729 +401277,287.88,42.52 +401278,286.72,45.072 +401279,285.75,47.477 +401280,284.94,49.759 +401281,286.7,42.536 +401282,285.47,45.093 +401283,284.45,47.503 +401284,283.59,49.787 +401285,285.51,42.555 +401286,284.22,45.115 +401287,283.15,47.527 +401288,282.24,49.814 +401289,284.32,42.575 +401290,282.97,45.138 +401291,281.85,47.551 +401292,280.9,49.839 +401293,283.13,42.598 +401294,281.73,45.162 +401295,280.55,47.575 +401296,279.55,49.862 +401297,281.94,42.623 +401298,280.48,45.186 +401299,279.25,47.598 +401300,278.2,49.884 +401301,280.75,42.65 +401302,279.23,45.21 +401303,277.95,47.62 +401304,276.86,49.904 +401305,279.55,42.679 +401306,277.98,45.236 +401307,276.65,47.642 +401308,275.51,49.922 +401309,278.36,42.71 +401310,276.73,45.262 +401311,275.35,47.664 +401312,274.17,49.938 +401313,277.16,42.743 +401314,275.48,45.289 +401315,274.05,47.684 +401316,272.82,49.953 +401317,275.97,42.778 +401318,274.23,45.316 +401319,272.76,47.705 +401320,271.48,49.966 +401321,274.77,42.815 +401322,272.98,45.345 +401323,271.46,47.724 +401324,270.14,49.978 +401325,273.57,42.854 +401326,271.73,45.373 +401327,270.16,47.743 +401328,268.8,49.987 +401329,272.36,42.895 +401330,270.47,45.403 +401331,268.86,47.762 +401332,267.46,49.996 +401333,271.16,42.938 +401334,269.22,45.433 +401335,267.56,47.78 +401336,266.12,50.002 +401337,269.95,42.984 +401338,267.97,45.464 +401339,266.27,47.797 +401340,264.78,50.007 +401341,268.74,43.031 +401342,266.71,45.495 +401343,264.97,47.814 +401344,263.44,50.01 +401345,267.54,43.08 +401346,265.46,45.528 +401347,263.67,47.831 +401348,262.11,50.012 +401349,266.32,43.131 +401350,264.2,45.56 +401351,262.38,47.846 +401352,260.77,50.012 +401353,265.11,43.184 +401354,262.95,45.594 +401355,261.08,47.862 +401356,259.44,50.01 +401357,263.9,43.239 +401358,261.69,45.628 +401359,259.78,47.877 +401360,258.1,50.007 +401361,262.68,43.295 +401362,260.43,45.662 +401363,258.49,47.891 +401364,256.77,50.003 +401365,261.46,43.354 +401366,259.18,45.698 +401367,257.2,47.905 +401368,255.44,49.996 +401369,260.24,43.414 +401370,257.92,45.733 +401371,255.9,47.918 +401372,254.11,49.989 +401373,259.01,43.477 +401374,256.66,45.77 +401375,254.61,47.931 +401376,252.78,49.979 +401377,257.79,43.54 +401378,255.4,45.807 +401379,253.31,47.943 +401380,251.46,49.969 +401381,256.56,43.606 +401382,254.14,45.845 +401383,252.02,47.955 +401384,250.13,49.956 +401385,255.33,43.674 +401386,252.88,45.883 +401387,250.73,47.966 +401388,248.81,49.943 +401389,254.1,43.743 +401390,251.62,45.922 +401391,249.44,47.977 +401392,247.48,49.928 +401393,252.87,43.814 +401394,250.35,45.961 +401395,248.14,47.987 +401396,246.16,49.911 +401397,251.63,43.886 +401398,249.09,46.001 +401399,246.85,47.997 +401400,244.84,49.893 +401401,250.39,43.96 +401402,247.83,46.041 +401403,245.56,48.007 +401404,243.52,49.874 +401405,249.15,44.036 +401406,246.56,46.082 +401407,244.27,48.016 +401408,242.21,49.853 +401409,247.91,44.113 +401410,245.3,46.124 +401411,242.98,48.025 +401412,240.89,49.831 +401413,246.66,44.191 +401414,244.03,46.166 +401415,241.69,48.033 +401416,239.58,49.808 +401417,245.41,44.272 +401418,242.77,46.208 +401419,240.4,48.041 +401420,238.26,49.783 +401421,244.16,44.353 +401422,241.5,46.251 +401423,239.11,48.048 +401424,236.95,49.757 +401425,242.91,44.436 +401426,240.23,46.295 +401427,237.83,48.055 +401428,235.64,49.73 +401429,241.66,44.52 +401430,238.96,46.339 +401431,236.54,48.062 +401432,234.33,49.702 +401433,240.4,44.606 +401434,237.69,46.383 +401435,235.25,48.068 +401436,233.03,49.672 +401437,239.14,44.693 +401438,236.42,46.428 +401439,233.97,48.074 +401440,231.72,49.642 +401441,237.88,44.781 +401442,235.15,46.473 +401443,232.68,48.079 +401444,230.42,49.61 +401445,236.61,44.87 +401446,233.88,46.519 +401447,231.39,48.084 +401448,229.12,49.577 +401449,235.35,44.96 +401450,232.6,46.565 +401451,230.11,48.089 +401452,227.82,49.543 +401453,234.08,45.052 +401454,231.33,46.612 +401455,228.83,48.094 +401456,226.52,49.508 +401457,232.81,45.145 +401458,230.06,46.659 +401459,227.54,48.098 +401460,225.22,49.472 +401461,231.53,45.238 +401462,228.78,46.706 +401463,226.26,48.102 +401464,223.93,49.435 +401465,230.26,45.333 +401466,227.5,46.754 +401467,224.98,48.105 +401468,222.63,49.396 +401469,228.98,45.429 +401470,226.23,46.802 +401471,223.69,48.109 +401472,221.34,49.357 +401473,227.7,45.525 +401474,224.95,46.85 +401475,222.41,48.112 +401476,220.05,49.318 +401477,226.42,45.623 +401478,223.67,46.899 +401479,221.13,48.114 +401480,218.77,49.277 +401481,225.13,45.721 +401482,222.39,46.948 +401483,219.85,48.117 +401484,217.48,49.235 +401485,223.85,45.82 +401486,221.11,46.997 +401487,218.57,48.119 +401488,216.2,49.193 +401489,222.56,45.92 +401490,219.83,47.046 +401491,217.29,48.121 +401492,214.91,49.149 +401493,221.27,46.02 +401494,218.55,47.096 +401495,216.02,48.123 +401496,213.63,49.105 +401497,219.97,46.121 +401498,217.27,47.146 +401499,214.74,48.125 +401500,212.35,49.061 +401501,218.68,46.223 +401502,215.99,47.197 +401503,213.46,48.126 +401504,211.08,49.015 +401505,217.38,46.325 +401506,214.7,47.247 +401507,212.18,48.127 +401508,209.8,48.969 +401509,216.08,46.428 +401510,213.42,47.298 +401511,210.91,48.128 +401512,208.53,48.923 +401513,214.78,46.531 +401514,212.13,47.349 +401515,209.63,48.129 +401516,207.26,48.876 +401517,213.47,46.635 +401518,210.85,47.4 +401519,208.36,48.13 +401520,205.99,48.828 +401521,212.17,46.739 +401522,209.56,47.452 +401523,207.08,48.131 +401524,204.72,48.78 +401525,210.86,46.843 +401526,208.27,47.503 +401527,205.81,48.131 +401528,203.45,48.731 +401529,209.55,46.948 +401530,206.98,47.555 +401531,204.53,48.132 +401532,202.19,48.682 +401533,208.24,47.053 +401534,205.69,47.606 +401535,203.26,48.132 +401536,200.93,48.633 +401537,206.92,47.158 +401538,204.4,47.658 +401539,201.99,48.132 +401540,199.67,48.583 +401541,205.61,47.264 +401542,203.11,47.71 +401543,200.72,48.132 +401544,198.41,48.533 +401545,204.29,47.369 +401546,201.82,47.762 +401547,199.45,48.133 +401548,197.15,48.482 +401549,202.97,47.475 +401550,200.53,47.815 +401551,198.18,48.133 +401552,195.9,48.432 +401553,201.65,47.58 +401554,199.24,47.867 +401555,196.91,48.133 +401556,194.65,48.381 +401557,200.33,47.686 +401558,197.94,47.919 +401559,195.64,48.133 +401560,193.4,48.33 +401561,199,47.792 +401562,196.65,47.971 +401563,194.37,48.133 +401564,192.15,48.278 +401565,197.67,47.897 +401566,195.36,48.024 +401567,193.1,48.133 +401568,190.9,48.227 +401569,196.34,48.002 +401570,194.06,48.076 +401571,191.83,48.133 +401572,189.66,48.176 +401573,195.01,48.108 +401574,192.76,48.128 +401575,190.57,48.133 +401576,188.41,48.125 +401577,193.68,48.213 +401578,191.47,48.181 +401579,189.3,48.134 +401580,187.17,48.073 +401581,192.35,48.317 +401582,190.17,48.233 +401583,188.03,48.134 +401584,185.93,48.022 +401585,191.01,48.422 +401586,188.87,48.285 +401587,186.77,48.134 +401588,184.69,47.971 +401589,189.68,48.526 +401590,187.57,48.337 +401591,185.5,48.135 +401592,183.46,47.92 +401593,188.34,48.63 +401594,186.27,48.389 +401595,184.24,48.135 +401596,182.22,47.869 +401597,187,48.733 +401598,184.97,48.441 +401599,182.97,48.136 +401600,180.99,47.819 +401601,185.66,48.836 +401602,183.67,48.493 +401603,181.71,48.137 +401604,179.76,47.769 +401605,184.32,48.939 +401606,182.37,48.545 +401607,180.45,48.138 +401608,178.53,47.719 +401609,182.97,49.04 +401610,181.07,48.597 +401611,179.18,48.139 +401612,177.3,47.669 +401613,181.63,49.142 +401614,179.77,48.648 +401615,177.92,48.141 +401616,176.08,47.62 +401617,180.28,49.243 +401618,178.47,48.7 +401619,176.66,48.142 +401620,174.85,47.571 +401621,178.93,49.343 +401622,177.16,48.751 +401623,175.4,48.144 +401624,173.63,47.523 +401625,177.58,49.442 +401626,175.86,48.802 +401627,174.14,48.146 +401628,172.41,47.475 +401629,176.23,49.541 +401630,174.56,48.853 +401631,172.87,48.148 +401632,171.19,47.428 +401633,174.88,49.639 +401634,173.25,48.903 +401635,171.61,48.15 +401636,169.97,47.381 +401637,173.53,49.736 +401638,171.95,48.954 +401639,170.35,48.153 +401640,168.76,47.335 +401641,172.18,49.833 +401642,170.64,49.004 +401643,169.1,48.156 +401644,167.54,47.29 +401645,170.82,49.929 +401646,169.33,49.054 +401647,167.84,48.159 +401648,166.33,47.245 +401649,169.47,50.023 +401650,168.03,49.103 +401651,166.58,48.162 +401652,165.12,47.201 +401653,168.11,50.117 +401654,166.72,49.153 +401655,165.32,48.166 +401656,163.91,47.158 +401657,166.75,50.21 +401658,165.41,49.202 +401659,164.06,48.17 +401660,162.7,47.115 +401661,165.4,50.302 +401662,164.1,49.251 +401663,162.8,48.175 +401664,161.49,47.074 +401665,164.04,50.393 +401666,162.8,49.299 +401667,161.54,48.179 +401668,160.29,47.033 +401669,162.68,50.483 +401670,161.49,49.348 +401671,160.29,48.184 +401672,159.08,46.993 +401673,161.32,50.572 +401674,160.18,49.396 +401675,159.03,48.19 +401676,157.88,46.955 +401677,159.96,50.66 +401678,158.87,49.443 +401679,157.77,48.195 +401680,156.67,46.917 +401681,158.59,50.747 +401682,157.56,49.49 +401683,156.52,48.202 +401684,155.47,46.88 +401685,157.23,50.833 +401686,156.25,49.537 +401687,155.26,48.208 +401688,154.27,46.844 +401689,155.87,50.917 +401690,154.94,49.584 +401691,154.01,48.215 +401692,153.07,46.81 +401693,154.5,51.001 +401694,153.63,49.63 +401695,152.75,48.222 +401696,151.87,46.776 +401697,153.14,51.083 +401698,152.31,49.676 +401699,151.49,48.23 +401700,150.68,46.744 +401701,151.77,51.164 +401702,151,49.721 +401703,150.24,48.238 +401704,149.48,46.713 +401705,150.41,51.243 +401706,149.69,49.766 +401707,148.98,48.247 +401708,148.28,46.683 +401709,149.04,51.322 +401710,148.38,49.811 +401711,147.73,48.256 +401712,147.09,46.655 +401713,147.68,51.399 +401714,147.07,49.855 +401715,146.47,48.265 +401716,145.89,46.627 +401717,146.31,51.475 +401718,145.76,49.899 +401719,145.22,48.275 +401720,144.7,46.601 +401721,144.94,51.549 +401722,144.44,49.942 +401723,143.96,48.286 +401724,143.51,46.577 +401725,143.58,51.622 +401726,143.13,49.985 +401727,142.71,48.297 +401728,142.32,46.553 +401729,142.21,51.694 +401730,141.82,50.028 +401731,141.45,48.308 +401732,141.12,46.532 +401733,140.84,51.765 +401734,140.5,50.07 +401735,140.2,48.32 +401736,139.93,46.511 +401737,139.47,51.834 +401738,139.19,50.111 +401739,138.94,48.332 +401740,138.74,46.492 +401741,138.1,51.901 +401742,137.88,50.153 +401743,137.69,48.345 +401744,137.55,46.475 +401745,136.74,51.967 +401746,136.56,50.193 +401747,136.43,48.359 +401748,136.36,46.459 +401749,135.37,52.032 +401750,135.25,50.233 +401751,135.18,48.373 +401752,135.17,46.444 +401753,134,52.095 +401754,133.94,50.273 +401755,133.93,48.387 +401756,133.98,46.432 +401757,132.63,52.157 +401758,132.62,50.312 +401759,132.67,48.402 +401760,132.79,46.42 +401761,131.26,52.217 +401762,131.31,50.351 +401763,131.42,48.418 +401764,131.6,46.411 +401765,129.89,52.276 +401766,129.99,50.389 +401767,130.16,48.434 +401768,130.41,46.403 +401769,128.53,52.333 +401770,128.68,50.427 +401771,128.91,48.451 +401772,129.22,46.396 +401773,127.16,52.389 +401774,127.37,50.464 +401775,127.65,48.468 +401776,128.03,46.392 +401777,125.79,52.443 +401778,126.05,50.501 +401779,126.4,48.485 +401780,126.84,46.388 +401781,124.42,52.496 +401782,124.74,50.537 +401783,125.14,48.504 +401784,125.65,46.387 +401785,123.06,52.547 +401786,123.42,50.573 +401787,123.88,48.523 +401788,124.46,46.388 +401789,121.69,52.596 +401790,122.11,50.608 +401791,122.63,48.542 +401792,123.27,46.39 +401793,120.32,52.644 +401794,120.8,50.643 +401795,121.37,48.562 +401796,122.08,46.393 +401797,118.96,52.69 +401798,119.48,50.677 +401799,120.12,48.583 +401800,120.89,46.399 +401801,117.59,52.735 +401802,118.17,50.71 +401803,118.86,48.604 +401804,119.69,46.406 +401805,116.22,52.778 +401806,116.85,50.743 +401807,117.6,48.626 +401808,118.5,46.416 +401809,114.86,52.82 +401810,115.54,50.776 +401811,116.35,48.648 +401812,117.31,46.426 +401813,113.49,52.86 +401814,114.23,50.808 +401815,115.09,48.671 +401816,116.11,46.439 +401817,112.13,52.898 +401818,112.91,50.839 +401819,113.83,48.695 +401820,114.92,46.454 +401821,110.77,52.935 +401822,111.6,50.87 +401823,112.57,48.719 +401824,113.72,46.47 +401825,109.4,52.97 +401826,110.29,50.901 +401827,111.31,48.744 +401828,112.52,46.488 +401829,108.04,53.004 +401830,108.97,50.931 +401831,110.06,48.769 +401832,111.33,46.508 +401833,106.68,53.036 +401834,107.66,50.96 +401835,108.8,48.795 +401836,110.13,46.53 +401837,105.32,53.066 +401838,106.35,50.989 +401839,107.54,48.822 +401840,108.93,46.554 +401841,103.96,53.095 +401842,105.04,51.017 +401843,106.28,48.849 +401844,107.73,46.579 +401845,102.6,53.122 +401846,103.72,51.044 +401847,105.02,48.877 +401848,106.52,46.606 +401849,101.24,53.148 +401850,102.41,51.072 +401851,103.76,48.905 +401852,105.32,46.635 +401853,99.88,53.172 +401854,101.1,51.098 +401855,102.5,48.934 +401856,104.11,46.666 +401857,98.523,53.194 +401858,99.789,51.124 +401859,101.23,48.964 +401860,102.91,46.699 +401861,97.167,53.215 +401862,98.478,51.15 +401863,99.972,48.994 +401864,101.7,46.733 +401865,95.811,53.234 +401866,97.167,51.175 +401867,98.709,49.024 +401868,100.49,46.77 +401869,94.457,53.252 +401870,95.856,51.199 +401871,97.446,49.056 +401872,99.28,46.808 +401873,93.103,53.268 +401874,94.546,51.223 +401875,96.183,49.088 +401876,98.067,46.848 +401877,91.751,53.283 +401878,93.236,51.247 +401879,94.919,49.12 +401880,96.853,46.889 +401881,90.399,53.296 +401882,91.926,51.269 +401883,93.654,49.153 +401884,95.638,46.933 +401885,89.049,53.307 +401886,90.617,51.292 +401887,92.389,49.187 +401888,94.421,46.978 +401889,87.699,53.317 +401890,89.308,51.314 +401891,91.123,49.221 +401892,93.202,47.025 +401893,86.351,53.326 +401894,88,51.335 +401895,89.857,49.256 +401896,91.981,47.074 +401897,85.004,53.333 +401898,86.691,51.356 +401899,88.59,49.291 +401900,90.758,47.124 +401901,83.658,53.338 +401902,85.384,51.376 +401903,87.323,49.327 +401904,89.534,47.176 +401905,82.313,53.342 +401906,84.076,51.396 +401907,86.055,49.363 +401908,88.307,47.23 +401909,80.97,53.344 +401910,82.769,51.415 +401911,84.786,49.4 +401912,87.079,47.285 +401913,79.627,53.346 +401914,81.463,51.434 +401915,83.516,49.437 +401916,85.849,47.342 +401917,78.286,53.345 +401918,80.156,51.453 +401919,82.246,49.475 +401920,84.616,47.401 +401921,76.947,53.343 +401922,78.851,51.47 +401923,80.976,49.514 +401924,83.382,47.461 +401925,75.608,53.34 +401926,77.545,51.488 +401927,79.705,49.553 +401928,82.146,47.523 +401929,74.271,53.336 +401930,76.24,51.505 +401931,78.433,49.593 +401932,80.907,47.587 +401933,72.935,53.33 +401934,74.936,51.521 +401935,77.16,49.633 +401936,79.667,47.652 +401937,71.601,53.322 +401938,73.632,51.537 +401939,75.887,49.673 +401940,78.424,47.718 +401941,70.268,53.314 +401942,72.329,51.553 +401943,74.613,49.714 +401944,77.179,47.786 +401945,68.937,53.304 +401946,71.026,51.568 +401947,73.338,49.756 +401948,75.932,47.856 +401949,67.607,53.292 +401950,69.723,51.583 +401951,72.062,49.798 +401952,74.683,47.927 +401953,66.278,53.28 +401954,68.421,51.597 +401955,70.786,49.84 +401956,73.431,47.999 +401957,64.951,53.266 +401958,67.12,51.611 +401959,69.509,49.883 +401960,72.178,48.073 +401961,63.626,53.251 +401962,65.819,51.624 +401963,68.232,49.927 +401964,70.922,48.148 +401965,62.302,53.235 +401966,64.518,51.637 +401967,66.953,49.97 +401968,69.663,48.224 +401969,60.98,53.217 +401970,63.218,51.65 +401971,65.674,50.015 +401972,68.403,48.302 +401973,59.659,53.199 +401974,61.919,51.662 +401975,64.395,50.059 +401976,67.14,48.381 +401977,58.34,53.179 +401978,60.62,51.674 +401979,63.114,50.104 +401980,65.875,48.461 +401981,57.022,53.158 +401982,59.321,51.686 +401983,61.833,50.15 +401984,64.607,48.542 +401985,55.707,53.136 +401986,58.024,51.697 +401987,60.551,50.196 +401988,63.338,48.625 +401989,54.392,53.113 +401990,56.726,51.707 +401991,59.268,50.242 +401992,62.066,48.708 +401993,53.08,53.089 +401994,55.43,51.718 +401995,57.984,50.289 +401996,60.791,48.793 +401997,51.769,53.064 +401998,54.134,51.728 +401999,56.7,50.336 +402000,59.515,48.879 +402001,50.46,53.038 +402002,52.838,51.738 +402003,55.415,50.383 +402004,58.236,48.966 +402005,49.153,53.011 +402006,51.543,51.747 +402007,54.129,50.431 +402008,56.955,49.053 +402009,47.847,52.983 +402010,50.249,51.756 +402011,52.842,50.479 +402012,55.671,49.142 +402013,46.543,52.954 +402014,48.955,51.765 +402015,51.555,50.527 +402016,54.385,49.232 +402017,45.241,52.925 +402018,47.661,51.774 +402019,50.267,50.575 +402020,53.097,49.322 +402021,43.941,52.894 +402022,46.369,51.782 +402023,48.978,50.624 +402024,51.807,49.414 +402025,42.643,52.863 +402026,45.076,51.79 +402027,47.688,50.673 +402028,50.514,49.506 +402029,41.346,52.831 +402030,43.785,51.798 +402031,46.398,50.723 +402032,49.219,49.599 +402033,40.051,52.798 +402034,42.494,51.806 +402035,45.106,50.773 +402036,47.922,49.693 +402037,38.758,52.764 +402038,41.204,51.813 +402039,43.814,50.823 +402040,46.623,49.787 +402041,37.467,52.73 +402042,39.914,51.82 +402043,42.522,50.873 +402044,45.321,49.882 +402045,36.177,52.695 +402046,38.625,51.827 +402047,41.228,50.923 +402048,44.018,49.978 +402049,34.89,52.659 +402050,37.336,51.834 +402051,39.934,50.974 +402052,42.712,50.074 +402053,33.604,52.623 +402054,36.048,51.84 +402055,38.639,51.025 +402056,41.404,50.171 +402057,32.32,52.586 +402058,34.76,51.847 +402059,37.343,51.076 +402060,40.093,50.268 +402061,31.038,52.548 +402062,33.473,51.853 +402063,36.046,51.127 +402064,38.781,50.366 +402065,29.758,52.511 +402066,32.187,51.859 +402067,34.749,51.178 +402068,37.467,50.464 +402069,28.48,52.472 +402070,30.901,51.865 +402071,33.451,51.229 +402072,36.15,50.563 +402073,27.203,52.433 +402074,29.616,51.87 +402075,32.152,51.281 +402076,34.832,50.662 +402077,25.929,52.394 +402078,28.332,51.876 +402079,30.853,51.333 +402080,33.511,50.761 +402081,24.656,52.355 +402082,27.048,51.882 +402083,29.553,51.385 +402084,32.188,50.861 +402085,23.385,52.315 +402086,25.764,51.887 +402087,28.252,51.436 +402088,30.864,50.96 +402089,22.116,52.275 +402090,24.482,51.892 +402091,26.95,51.488 +402092,29.537,51.06 +402093,20.849,52.234 +402094,23.199,51.898 +402095,25.648,51.541 +402096,28.209,51.16 +402097,19.584,52.194 +402098,21.918,51.903 +402099,24.345,51.593 +402100,26.879,51.26 +402101,18.32,52.153 +402102,20.636,51.908 +402103,23.041,51.645 +402104,25.547,51.361 +402105,17.059,52.112 +402106,19.356,51.913 +402107,21.737,51.697 +402108,24.213,51.461 +402109,15.799,52.071 +402110,18.076,51.918 +402111,20.432,51.749 +402112,22.877,51.561 +402113,14.541,52.029 +402114,16.796,51.923 +402115,19.126,51.802 +402116,21.539,51.661 +402117,13.285,51.988 +402118,15.517,51.929 +402119,17.819,51.854 +402120,20.2,51.761 +402121,12.031,51.947 +402122,14.239,51.934 +402123,16.512,51.906 +402124,18.859,51.861 +402125,10.778,51.905 +402126,12.961,51.939 +402127,15.205,51.958 +402128,17.516,51.961 +402129,9.5272,51.864 +402130,11.684,51.944 +402131,13.896,52.01 +402132,16.172,52.061 +402133,8.2782,51.823 +402134,10.407,51.949 +402135,12.587,52.062 +402136,14.826,52.16 +402137,7.0309,51.782 +402138,9.1303,51.955 +402139,11.278,52.114 +402140,13.479,52.259 +402141,5.7854,51.741 +402142,7.8544,51.96 +402143,9.9675,52.166 +402144,12.13,52.358 +402145,4.5415,51.701 +402146,6.579,51.965 +402147,8.6568,52.218 +402148,10.779,52.457 +402149,3.2994,51.66 +402150,5.3041,51.971 +402151,7.3454,52.27 +402152,9.4274,52.555 +402153,2.0589,51.62 +402154,4.0297,51.977 +402155,6.0335,52.321 +402156,8.074,52.653 +402157,0.82007,51.58 +402158,2.7557,51.982 +402159,4.721,52.373 +402160,6.7192,52.75 +402161,359.58,51.541 +402162,1.4822,51.988 +402163,3.4079,52.424 +402164,5.3631,52.847 +402165,358.35,51.502 +402166,0.20911,51.995 +402167,2.0943,52.476 +402168,4.0057,52.943 +402169,357.11,51.463 +402170,358.94,52.001 +402171,0.7802,52.527 +402172,2.6469,53.038 +402173,355.88,51.425 +402174,357.66,52.007 +402175,359.47,52.577 +402176,1.287,53.134 +402177,354.65,51.387 +402178,356.39,52.014 +402179,358.15,52.628 +402180,359.93,53.228 +402181,353.42,51.349 +402182,355.12,52.021 +402183,356.83,52.679 +402184,358.56,53.322 +402185,352.19,51.313 +402186,353.85,52.028 +402187,355.52,52.729 +402188,357.2,53.415 +402189,350.97,51.277 +402190,352.58,52.035 +402191,354.2,52.779 +402192,355.84,53.507 +402193,349.74,51.241 +402194,351.31,52.042 +402195,352.89,52.829 +402196,354.47,53.599 +402197,348.52,51.206 +402198,350.04,52.05 +402199,351.57,52.878 +402200,353.1,53.69 +402201,347.3,51.172 +402202,348.77,52.058 +402203,350.25,52.928 +402204,351.74,53.78 +402205,346.07,51.139 +402206,347.5,52.066 +402207,348.93,52.977 +402208,350.37,53.869 +402209,344.85,51.106 +402210,346.23,52.074 +402211,347.61,53.025 +402212,349,53.958 +402213,343.64,51.074 +402214,344.96,52.083 +402215,346.29,53.074 +402216,347.63,54.045 +402217,342.42,51.043 +402218,343.7,52.092 +402219,344.97,53.122 +402220,346.26,54.132 +402221,341.2,51.013 +402222,342.43,52.101 +402223,343.65,53.17 +402224,344.88,54.218 +402225,339.99,50.984 +402226,341.16,52.111 +402227,342.33,53.218 +402228,343.51,54.302 +402229,338.77,50.955 +402230,339.89,52.121 +402231,341.01,53.265 +402232,342.14,54.386 +402233,337.56,50.928 +402234,338.62,52.131 +402235,339.69,53.312 +402236,340.76,54.469 +402237,336.35,50.901 +402238,337.36,52.142 +402239,338.37,53.358 +402240,339.39,54.55 +402241,335.14,50.876 +402242,336.09,52.153 +402243,337.05,53.405 +402244,338.01,54.631 +402245,333.93,50.851 +402246,334.82,52.164 +402247,335.73,53.45 +402248,336.64,54.71 +402249,332.72,50.828 +402250,333.56,52.176 +402251,334.41,53.496 +402252,335.26,54.788 +402253,331.51,50.805 +402254,332.29,52.188 +402255,333.08,53.541 +402256,333.88,54.866 +402257,330.3,50.784 +402258,331.03,52.2 +402259,331.76,53.586 +402260,332.51,54.942 +402261,329.1,50.764 +402262,329.76,52.213 +402263,330.44,53.63 +402264,331.13,55.016 +402265,327.89,50.745 +402266,328.49,52.226 +402267,329.11,53.674 +402268,329.75,55.09 +402269,326.69,50.728 +402270,327.23,52.24 +402271,327.79,53.718 +402272,328.37,55.162 +402273,325.48,50.711 +402274,325.96,52.254 +402275,326.47,53.761 +402276,326.99,55.234 +402277,324.28,50.696 +402278,324.7,52.268 +402279,325.14,53.804 +402280,325.61,55.303 +402281,323.07,50.682 +402282,323.43,52.283 +402283,323.82,53.846 +402284,324.23,55.372 +402285,321.87,50.669 +402286,322.17,52.298 +402287,322.5,53.888 +402288,322.86,55.439 +402289,320.67,50.658 +402290,320.9,52.314 +402291,321.17,53.929 +402292,321.48,55.505 +402293,319.47,50.648 +402294,319.64,52.33 +402295,319.85,53.97 +402296,320.1,55.57 +402297,318.26,50.64 +402298,318.37,52.347 +402299,318.52,54.011 +402300,318.72,55.633 +402301,317.06,50.632 +402302,317.11,52.364 +402303,317.2,54.051 +402304,317.34,55.695 +402305,315.86,50.626 +402306,315.84,52.381 +402307,315.88,54.091 +402308,315.96,55.756 +402309,314.66,50.622 +402310,314.58,52.399 +402311,314.55,54.13 +402312,314.58,55.815 +402313,313.46,50.619 +402314,313.31,52.418 +402315,313.23,54.168 +402316,313.2,55.873 +402317,312.25,50.617 +402318,312.04,52.437 +402319,311.9,54.207 +402320,311.82,55.929 +402321,311.05,50.617 +402322,310.78,52.456 +402323,310.58,54.244 +402324,310.44,55.984 +402325,309.85,50.619 +402326,309.51,52.476 +402327,309.25,54.282 +402328,309.06,56.038 +402329,308.65,50.622 +402330,308.25,52.497 +402331,307.93,54.319 +402332,307.68,56.09 +402333,307.45,50.626 +402334,306.98,52.518 +402335,306.6,54.355 +402336,306.3,56.141 +402337,306.24,50.632 +402338,305.72,52.539 +402339,305.28,54.391 +402340,304.92,56.19 +402341,305.04,50.64 +402342,304.45,52.561 +402343,303.96,54.426 +402344,303.54,56.238 +402345,303.84,50.649 +402346,303.18,52.584 +402347,302.63,54.461 +402348,302.17,56.284 +402349,302.63,50.659 +402350,301.92,52.607 +402351,301.31,54.495 +402352,300.79,56.329 +402353,301.43,50.671 +402354,300.65,52.63 +402355,299.98,54.529 +402356,299.41,56.372 +402357,300.23,50.685 +402358,299.38,52.654 +402359,298.66,54.562 +402360,298.03,56.414 +402361,299.02,50.7 +402362,298.12,52.678 +402363,297.33,54.595 +402364,296.66,56.455 +402365,297.81,50.717 +402366,296.85,52.703 +402367,296.01,54.627 +402368,295.28,56.493 +402369,296.61,50.736 +402370,295.58,52.729 +402371,294.69,54.659 +402372,293.91,56.531 +402373,295.4,50.756 +402374,294.31,52.755 +402375,293.36,54.69 +402376,292.53,56.567 +402377,294.19,50.777 +402378,293.04,52.782 +402379,292.04,54.721 +402380,291.16,56.601 +402381,292.98,50.801 +402382,291.77,52.809 +402383,290.72,54.751 +402384,289.79,56.634 +402385,291.77,50.826 +402386,290.5,52.836 +402387,289.39,54.781 +402388,288.41,56.665 +402389,290.56,50.852 +402390,289.24,52.864 +402391,288.07,54.81 +402392,287.04,56.695 +402393,289.35,50.88 +402394,287.97,52.893 +402395,286.75,54.839 +402396,285.67,56.724 +402397,288.14,50.91 +402398,286.7,52.922 +402399,285.43,54.867 +402400,284.3,56.751 +402401,286.92,50.941 +402402,285.42,52.952 +402403,284.11,54.895 +402404,282.93,56.776 +402405,285.71,50.974 +402406,284.15,52.982 +402407,282.78,54.922 +402408,281.56,56.8 +402409,284.49,51.009 +402410,282.88,53.013 +402411,281.46,54.949 +402412,280.2,56.823 +402413,283.27,51.045 +402414,281.61,53.044 +402415,280.14,54.975 +402416,278.83,56.844 +402417,282.05,51.083 +402418,280.34,53.076 +402419,278.82,55.001 +402420,277.46,56.863 +402421,280.83,51.122 +402422,279.06,53.108 +402423,277.5,55.026 +402424,276.1,56.881 +402425,279.61,51.163 +402426,277.79,53.141 +402427,276.18,55.05 +402428,274.73,56.898 +402429,278.38,51.205 +402430,276.52,53.174 +402431,274.86,55.075 +402432,273.37,56.913 +402433,277.16,51.249 +402434,275.24,53.208 +402435,273.54,55.098 +402436,272.01,56.927 +402437,275.93,51.294 +402438,273.97,53.242 +402439,272.22,55.122 +402440,270.65,56.939 +402441,274.7,51.341 +402442,272.69,53.277 +402443,270.9,55.144 +402444,269.29,56.95 +402445,273.47,51.39 +402446,271.42,53.312 +402447,269.58,55.166 +402448,267.93,56.96 +402449,272.24,51.44 +402450,270.14,53.348 +402451,268.27,55.188 +402452,266.58,56.968 +402453,271,51.492 +402454,268.86,53.384 +402455,266.95,55.21 +402456,265.22,56.975 +402457,269.77,51.545 +402458,267.58,53.421 +402459,265.63,55.23 +402460,263.86,56.98 +402461,268.53,51.599 +402462,266.31,53.458 +402463,264.31,55.251 +402464,262.51,56.984 +402465,267.29,51.655 +402466,265.03,53.496 +402467,263,55.271 +402468,261.16,56.987 +402469,266.05,51.712 +402470,263.75,53.534 +402471,261.68,55.29 +402472,259.81,56.988 +402473,264.81,51.771 +402474,262.47,53.572 +402475,260.37,55.309 +402476,258.46,56.988 +402477,263.56,51.831 +402478,261.19,53.611 +402479,259.05,55.328 +402480,257.11,56.987 +402481,262.32,51.893 +402482,259.91,53.65 +402483,257.74,55.346 +402484,255.76,56.985 +402485,261.07,51.955 +402486,258.62,53.69 +402487,256.42,55.363 +402488,254.42,56.981 +402489,259.82,52.02 +402490,257.34,53.731 +402491,255.11,55.381 +402492,253.07,56.976 +402493,258.56,52.085 +402494,256.06,53.771 +402495,253.8,55.397 +402496,251.73,56.97 +402497,257.31,52.152 +402498,254.77,53.812 +402499,252.48,55.414 +402500,250.39,56.962 +402501,256.05,52.22 +402502,253.49,53.854 +402503,251.17,55.43 +402504,249.05,56.953 +402505,254.79,52.289 +402506,252.2,53.896 +402507,249.86,55.445 +402508,247.71,56.944 +402509,253.53,52.359 +402510,250.92,53.938 +402511,248.55,55.461 +402512,246.38,56.933 +402513,252.27,52.431 +402514,249.63,53.981 +402515,247.24,55.475 +402516,245.04,56.921 +402517,251,52.504 +402518,248.34,54.024 +402519,245.93,55.49 +402520,243.71,56.907 +402521,249.73,52.578 +402522,247.06,54.067 +402523,244.62,55.504 +402524,242.38,56.893 +402525,248.46,52.653 +402526,245.77,54.111 +402527,243.31,55.518 +402528,241.05,56.878 +402529,247.19,52.729 +402530,244.48,54.155 +402531,242,55.531 +402532,239.72,56.861 +402533,245.92,52.806 +402534,243.19,54.2 +402535,240.69,55.544 +402536,238.39,56.844 +402537,244.64,52.884 +402538,241.9,54.245 +402539,239.39,55.557 +402540,237.07,56.826 +402541,243.36,52.963 +402542,240.6,54.29 +402543,238.08,55.569 +402544,235.74,56.806 +402545,242.08,53.043 +402546,239.31,54.335 +402547,236.77,55.581 +402548,234.42,56.786 +402549,240.79,53.124 +402550,238.02,54.381 +402551,235.47,55.593 +402552,233.1,56.765 +402553,239.51,53.206 +402554,236.72,54.427 +402555,234.16,55.604 +402556,231.78,56.743 +402557,238.22,53.289 +402558,235.43,54.473 +402559,232.86,55.615 +402560,230.47,56.72 +402561,236.93,53.372 +402562,234.13,54.52 +402563,231.55,55.626 +402564,229.15,56.696 +402565,235.64,53.457 +402566,232.84,54.567 +402567,230.25,55.637 +402568,227.84,56.671 +402569,234.34,53.542 +402570,231.54,54.614 +402571,228.95,55.647 +402572,226.53,56.646 +402573,233.05,53.628 +402574,230.24,54.661 +402575,227.64,55.657 +402576,225.22,56.62 +402577,231.75,53.714 +402578,228.95,54.709 +402579,226.34,55.667 +402580,223.91,56.593 +402581,230.45,53.801 +402582,227.65,54.756 +402583,225.04,55.676 +402584,222.6,56.565 +402585,229.14,53.889 +402586,226.35,54.804 +402587,223.74,55.686 +402588,221.3,56.537 +402589,227.84,53.978 +402590,225.05,54.853 +402591,222.44,55.695 +402592,220,56.508 +402593,226.53,54.067 +402594,223.75,54.901 +402595,221.14,55.704 +402596,218.69,56.479 +402597,225.22,54.156 +402598,222.44,54.95 +402599,219.84,55.712 +402600,217.4,56.448 +402601,223.91,54.246 +402602,221.14,54.998 +402603,218.55,55.721 +402604,216.1,56.418 +402605,222.59,54.337 +402606,219.84,55.047 +402607,217.25,55.729 +402608,214.8,56.387 +402609,221.28,54.428 +402610,218.53,55.096 +402611,215.95,55.738 +402612,213.51,56.355 +402613,219.96,54.519 +402614,217.23,55.145 +402615,214.66,55.746 +402616,212.22,56.323 +402617,218.64,54.611 +402618,215.92,55.195 +402619,213.36,55.753 +402620,210.93,56.29 +402621,217.32,54.703 +402622,214.62,55.244 +402623,212.07,55.761 +402624,209.64,56.257 +402625,215.99,54.795 +402626,213.31,55.294 +402627,210.77,55.769 +402628,208.35,56.224 +402629,214.67,54.887 +402630,212,55.343 +402631,209.48,55.776 +402632,207.07,56.19 +402633,213.34,54.98 +402634,210.69,55.393 +402635,208.18,55.784 +402636,205.79,56.156 +402637,212.01,55.073 +402638,209.38,55.442 +402639,206.89,55.791 +402640,204.51,56.122 +402641,210.67,55.166 +402642,208.07,55.492 +402643,205.6,55.799 +402644,203.23,56.088 +402645,209.34,55.259 +402646,206.76,55.542 +402647,204.31,55.806 +402648,201.95,56.053 +402649,208,55.352 +402650,205.45,55.592 +402651,203.02,55.813 +402652,200.68,56.018 +402653,206.67,55.446 +402654,204.14,55.642 +402655,201.73,55.82 +402656,199.4,55.983 +402657,205.33,55.539 +402658,202.83,55.692 +402659,200.44,55.827 +402660,198.13,55.948 +402661,203.98,55.632 +402662,201.52,55.741 +402663,199.15,55.834 +402664,196.86,55.913 +402665,202.64,55.725 +402666,200.2,55.791 +402667,197.86,55.841 +402668,195.6,55.878 +402669,201.29,55.818 +402670,198.89,55.841 +402671,196.57,55.848 +402672,194.33,55.843 +402673,199.95,55.911 +402674,197.57,55.891 +402675,195.28,55.855 +402676,193.06,55.808 +402677,198.6,56.004 +402678,196.26,55.941 +402679,193.99,55.863 +402680,191.8,55.772 +402681,197.25,56.097 +402682,194.94,55.99 +402683,192.71,55.87 +402684,190.54,55.737 +402685,195.9,56.189 +402686,193.62,56.04 +402687,191.42,55.877 +402688,189.28,55.703 +402689,194.54,56.281 +402690,192.31,56.089 +402691,190.14,55.884 +402692,188.02,55.668 +402693,193.19,56.373 +402694,190.99,56.139 +402695,188.85,55.891 +402696,186.77,55.633 +402697,191.83,56.464 +402698,189.67,56.188 +402699,187.57,55.899 +402700,185.51,55.599 +402701,190.47,56.555 +402702,188.35,56.237 +402703,186.28,55.906 +402704,184.26,55.565 +402705,189.11,56.645 +402706,187.03,56.286 +402707,185,55.914 +402708,183.01,55.531 +402709,187.75,56.736 +402710,185.71,56.335 +402711,183.72,55.922 +402712,181.76,55.498 +402713,186.39,56.825 +402714,184.39,56.384 +402715,182.43,55.929 +402716,180.51,55.465 +402717,185.03,56.914 +402718,183.07,56.432 +402719,181.15,55.937 +402720,179.27,55.432 +402721,183.66,57.003 +402722,181.75,56.481 +402723,179.87,55.945 +402724,178.02,55.4 +402725,182.29,57.091 +402726,180.42,56.529 +402727,178.59,55.954 +402728,176.78,55.368 +402729,180.93,57.179 +402730,179.1,56.577 +402731,177.31,55.962 +402732,175.54,55.336 +402733,179.56,57.265 +402734,177.78,56.625 +402735,176.03,55.971 +402736,174.3,55.305 +402737,178.19,57.352 +402738,176.45,56.672 +402739,174.75,55.98 +402740,173.06,55.275 +402741,176.82,57.437 +402742,175.13,56.72 +402743,173.47,55.989 +402744,171.82,55.245 +402745,175.45,57.522 +402746,173.81,56.767 +402747,172.19,55.998 +402748,170.59,55.216 +402749,174.07,57.606 +402750,172.48,56.814 +402751,170.91,56.007 +402752,169.35,55.188 +402753,172.7,57.689 +402754,171.15,56.86 +402755,169.63,56.017 +402756,168.12,55.16 +402757,171.32,57.772 +402758,169.83,56.907 +402759,168.35,56.027 +402760,166.89,55.133 +402761,169.95,57.854 +402762,168.5,56.953 +402763,167.07,56.037 +402764,165.66,55.107 +402765,168.57,57.934 +402766,167.18,56.999 +402767,165.8,56.047 +402768,164.43,55.081 +402769,167.19,58.014 +402770,165.85,57.044 +402771,164.52,56.058 +402772,163.2,55.056 +402773,165.81,58.094 +402774,164.52,57.089 +402775,163.24,56.069 +402776,161.97,55.032 +402777,164.43,58.172 +402778,163.19,57.134 +402779,161.97,56.08 +402780,160.75,55.009 +402781,163.05,58.249 +402782,161.86,57.179 +402783,160.69,56.091 +402784,159.52,54.987 +402785,161.67,58.325 +402786,160.54,57.223 +402787,159.41,56.103 +402788,158.3,54.965 +402789,160.29,58.4 +402790,159.21,57.267 +402791,158.14,56.115 +402792,157.08,54.945 +402793,158.91,58.475 +402794,157.88,57.311 +402795,156.86,56.127 +402796,155.86,54.925 +402797,157.52,58.548 +402798,156.55,57.354 +402799,155.59,56.14 +402800,154.64,54.907 +402801,156.14,58.62 +402802,155.22,57.397 +402803,154.31,56.153 +402804,153.42,54.889 +402805,154.76,58.691 +402806,153.89,57.44 +402807,153.04,56.167 +402808,152.2,54.872 +402809,153.37,58.761 +402810,152.56,57.482 +402811,151.76,56.18 +402812,150.98,54.857 +402813,151.99,58.83 +402814,151.23,57.524 +402815,150.49,56.194 +402816,149.76,54.843 +402817,150.6,58.898 +402818,149.9,57.565 +402819,149.21,56.209 +402820,148.54,54.829 +402821,149.22,58.964 +402822,148.57,57.606 +402823,147.94,56.224 +402824,147.33,54.817 +402825,147.83,59.03 +402826,147.24,57.647 +402827,146.66,56.239 +402828,146.11,54.806 +402829,146.44,59.094 +402830,145.91,57.687 +402831,145.39,56.254 +402832,144.9,54.796 +402833,145.06,59.157 +402834,144.57,57.727 +402835,144.12,56.27 +402836,143.68,54.787 +402837,143.67,59.219 +402838,143.24,57.766 +402839,142.84,56.287 +402840,142.47,54.78 +402841,142.28,59.279 +402842,141.91,57.805 +402843,141.57,56.303 +402844,141.25,54.773 +402845,140.9,59.338 +402846,140.58,57.844 +402847,140.29,56.32 +402848,140.04,54.768 +402849,139.51,59.396 +402850,139.25,57.882 +402851,139.02,56.338 +402852,138.83,54.764 +402853,138.12,59.453 +402854,137.92,57.92 +402855,137.75,56.356 +402856,137.61,54.762 +402857,136.73,59.509 +402858,136.59,57.957 +402859,136.47,56.374 +402860,136.4,54.76 +402861,135.35,59.563 +402862,135.25,57.994 +402863,135.2,56.393 +402864,135.19,54.76 +402865,133.96,59.616 +402866,133.92,58.03 +402867,133.93,56.412 +402868,133.98,54.762 +402869,132.57,59.667 +402870,132.59,58.066 +402871,132.65,56.432 +402872,132.77,54.764 +402873,131.19,59.717 +402874,131.26,58.102 +402875,131.38,56.452 +402876,131.55,54.768 +402877,129.8,59.766 +402878,129.93,58.137 +402879,130.1,56.473 +402880,130.34,54.774 +402881,128.41,59.814 +402882,128.59,58.171 +402883,128.83,56.494 +402884,129.13,54.78 +402885,127.03,59.86 +402886,127.26,58.205 +402887,127.56,56.515 +402888,127.92,54.789 +402889,125.64,59.905 +402890,125.93,58.239 +402891,126.28,56.537 +402892,126.7,54.798 +402893,124.25,59.948 +402894,124.6,58.272 +402895,125.01,56.559 +402896,125.49,54.809 +402897,122.87,59.99 +402898,123.27,58.305 +402899,123.73,56.582 +402900,124.28,54.821 +402901,121.48,60.031 +402902,121.93,58.337 +402903,122.46,56.605 +402904,123.06,54.835 +402905,120.1,60.07 +402906,120.6,58.369 +402907,121.18,56.629 +402908,121.85,54.85 +402909,118.72,60.108 +402910,119.27,58.4 +402911,119.91,56.653 +402912,120.64,54.867 +402913,117.33,60.144 +402914,117.94,58.431 +402915,118.63,56.678 +402916,119.42,54.885 +402917,115.95,60.18 +402918,116.61,58.461 +402919,117.36,56.703 +402920,118.2,54.904 +402921,114.57,60.213 +402922,115.28,58.491 +402923,116.08,56.728 +402924,116.99,54.925 +402925,113.18,60.246 +402926,113.95,58.52 +402927,114.81,56.754 +402928,115.77,54.947 +402929,111.8,60.276 +402930,112.62,58.549 +402931,113.53,56.781 +402932,114.55,54.971 +402933,110.42,60.306 +402934,111.29,58.577 +402935,112.25,56.808 +402936,113.34,54.996 +402937,109.04,60.334 +402938,109.96,58.605 +402939,110.98,56.835 +402940,112.12,55.023 +402941,107.66,60.361 +402942,108.63,58.632 +402943,109.7,56.863 +402944,110.9,55.051 +402945,106.28,60.386 +402946,107.3,58.659 +402947,108.42,56.891 +402948,109.68,55.08 +402949,104.91,60.41 +402950,105.97,58.686 +402951,107.14,56.92 +402952,108.45,55.111 +402953,103.53,60.433 +402954,104.64,58.712 +402955,105.86,56.949 +402956,107.23,55.144 +402957,102.15,60.454 +402958,103.31,58.737 +402959,104.59,56.979 +402960,106.01,55.177 +402961,100.78,60.474 +402962,101.98,58.762 +402963,103.31,57.009 +402964,104.78,55.213 +402965,99.402,60.492 +402966,100.65,58.787 +402967,102.03,57.04 +402968,103.55,55.249 +402969,98.029,60.509 +402970,99.323,58.811 +402971,100.75,57.071 +402972,102.33,55.287 +402973,96.656,60.525 +402974,97.995,58.834 +402975,99.468,57.103 +402976,101.1,55.327 +402977,95.285,60.539 +402978,96.668,58.858 +402979,98.187,57.135 +402980,99.868,55.368 +402981,93.915,60.552 +402982,95.34,58.88 +402983,96.906,57.167 +402984,98.637,55.41 +402985,92.545,60.564 +402986,94.014,58.902 +402987,95.624,57.2 +402988,97.404,55.454 +402989,91.177,60.574 +402990,92.687,58.924 +402991,94.342,57.233 +402992,96.169,55.499 +402993,89.81,60.583 +402994,91.361,58.945 +402995,93.06,57.267 +402996,94.934,55.545 +402997,88.444,60.591 +402998,90.035,58.966 +402999,91.777,57.301 +403000,93.696,55.593 +403001,87.079,60.597 +403002,88.71,58.987 +403003,90.493,57.336 +403004,92.458,55.642 +403005,85.715,60.603 +403006,87.385,59.007 +403007,89.209,57.371 +403008,91.217,55.693 +403009,84.353,60.607 +403010,86.06,59.026 +403011,87.925,57.406 +403012,89.975,55.744 +403013,82.991,60.609 +403014,84.736,59.045 +403015,86.639,57.442 +403016,88.731,55.797 +403017,81.632,60.611 +403018,83.413,59.064 +403019,85.354,57.479 +403020,87.486,55.852 +403021,80.273,60.611 +403022,82.089,59.082 +403023,84.068,57.515 +403024,86.239,55.907 +403025,78.916,60.61 +403026,80.767,59.1 +403027,82.781,57.552 +403028,84.99,55.964 +403029,77.56,60.608 +403030,79.444,59.117 +403031,81.493,57.59 +403032,83.739,56.022 +403033,76.205,60.604 +403034,78.122,59.134 +403035,80.205,57.628 +403036,82.487,56.081 +403037,74.852,60.6 +403038,76.801,59.151 +403039,78.917,57.666 +403040,81.233,56.142 +403041,73.5,60.594 +403042,75.48,59.167 +403043,77.628,57.705 +403044,79.976,56.203 +403045,72.15,60.587 +403046,74.16,59.183 +403047,76.338,57.743 +403048,78.718,56.266 +403049,70.801,60.58 +403050,72.84,59.198 +403051,75.048,57.783 +403052,77.458,56.33 +403053,69.454,60.571 +403054,71.52,59.214 +403055,73.757,57.823 +403056,76.196,56.395 +403057,68.108,60.56 +403058,70.201,59.228 +403059,72.465,57.863 +403060,74.932,56.461 +403061,66.763,60.549 +403062,68.883,59.243 +403063,71.173,57.903 +403064,73.666,56.528 +403065,65.421,60.537 +403066,67.565,59.257 +403067,69.88,57.944 +403068,72.399,56.596 +403069,64.079,60.524 +403070,66.248,59.27 +403071,68.586,57.985 +403072,71.129,56.665 +403073,62.74,60.51 +403074,64.931,59.283 +403075,67.292,58.026 +403076,69.857,56.735 +403077,61.402,60.495 +403078,63.614,59.296 +403079,65.997,58.068 +403080,68.582,56.806 +403081,60.065,60.479 +403082,62.299,59.309 +403083,64.701,58.11 +403084,67.306,56.878 +403085,58.73,60.462 +403086,60.983,59.321 +403087,63.405,58.152 +403088,66.028,56.951 +403089,57.397,60.444 +403090,59.669,59.333 +403091,62.108,58.195 +403092,64.748,57.025 +403093,56.066,60.426 +403094,58.355,59.345 +403095,60.811,58.237 +403096,63.465,57.1 +403097,54.736,60.406 +403098,57.041,59.356 +403099,59.512,58.28 +403100,62.181,57.175 +403101,53.408,60.386 +403102,55.728,59.368 +403103,58.213,58.324 +403104,60.894,57.252 +403105,52.081,60.365 +403106,54.416,59.378 +403107,56.914,58.367 +403108,59.605,57.329 +403109,50.756,60.343 +403110,53.104,59.389 +403111,55.613,58.411 +403112,58.314,57.406 +403113,49.433,60.32 +403114,51.793,59.399 +403115,54.312,58.455 +403116,57.021,57.485 +403117,48.112,60.297 +403118,50.482,59.409 +403119,53.01,58.499 +403120,55.726,57.564 +403121,46.792,60.273 +403122,49.172,59.419 +403123,51.708,58.544 +403124,54.429,57.644 +403125,45.475,60.248 +403126,47.863,59.429 +403127,50.405,58.589 +403128,53.129,57.724 +403129,44.159,60.222 +403130,46.554,59.438 +403131,49.101,58.634 +403132,51.828,57.805 +403133,42.844,60.196 +403134,45.246,59.448 +403135,47.796,58.679 +403136,50.524,57.887 +403137,41.532,60.17 +403138,43.938,59.457 +403139,46.491,58.724 +403140,49.218,57.969 +403141,40.221,60.143 +403142,42.631,59.465 +403143,45.185,58.769 +403144,47.91,58.052 +403145,38.912,60.115 +403146,41.324,59.474 +403147,43.878,58.815 +403148,46.6,58.135 +403149,37.605,60.087 +403150,40.018,59.482 +403151,42.571,58.86 +403152,45.288,58.219 +403153,36.3,60.058 +403154,38.713,59.491 +403155,41.263,58.906 +403156,43.974,58.303 +403157,34.996,60.029 +403158,37.408,59.499 +403159,39.954,58.952 +403160,42.657,58.387 +403161,33.695,60 +403162,36.104,59.507 +403163,38.645,58.998 +403164,41.339,58.472 +403165,32.395,59.97 +403166,34.801,59.515 +403167,37.335,59.044 +403168,40.018,58.557 +403169,31.097,59.94 +403170,33.498,59.522 +403171,36.024,59.09 +403172,38.696,58.642 +403173,29.801,59.909 +403174,32.196,59.53 +403175,34.712,59.137 +403176,37.371,58.727 +403177,28.506,59.879 +403178,30.894,59.537 +403179,33.4,59.183 +403180,36.045,58.813 +403181,27.213,59.848 +403182,29.593,59.545 +403183,32.087,59.23 +403184,34.716,58.899 +403185,25.923,59.816 +403186,28.292,59.552 +403187,30.774,59.276 +403188,33.386,58.985 +403189,24.634,59.785 +403190,26.992,59.56 +403191,29.459,59.322 +403192,32.053,59.071 +403193,23.346,59.753 +403194,25.693,59.567 +403195,28.145,59.369 +403196,30.719,59.158 +403197,22.061,59.721 +403198,24.394,59.574 +403199,26.829,59.416 +403200,29.383,59.244 +403201,20.777,59.689 +403202,23.096,59.581 +403203,25.513,59.462 +403204,28.044,59.33 +403205,19.495,59.657 +403206,21.798,59.588 +403207,24.196,59.509 +403208,26.704,59.417 +403209,18.215,59.625 +403210,20.501,59.595 +403211,22.879,59.555 +403212,25.363,59.503 +403213,16.937,59.593 +403214,19.204,59.602 +403215,21.56,59.602 +403216,24.019,59.589 +403217,15.66,59.561 +403218,17.908,59.609 +403219,20.242,59.648 +403220,22.673,59.675 +403221,14.385,59.529 +403222,16.613,59.616 +403223,18.922,59.694 +403224,21.326,59.761 +403225,13.112,59.498 +403226,15.318,59.624 +403227,17.602,59.741 +403228,19.977,59.847 +403229,11.841,59.466 +403230,14.024,59.631 +403231,16.282,59.787 +403232,18.626,59.933 +403233,10.571,59.434 +403234,12.73,59.638 +403235,14.961,59.833 +403236,17.274,60.018 +403237,9.303,59.403 +403238,11.437,59.645 +403239,13.639,59.879 +403240,15.92,60.103 +403241,8.0366,59.371 +403242,10.144,59.653 +403243,12.317,59.925 +403244,14.564,60.188 +403245,6.7719,59.34 +403246,8.8515,59.66 +403247,10.994,59.971 +403248,13.207,60.272 +403249,5.5088,59.31 +403250,7.5598,59.667 +403251,9.6702,60.017 +403252,11.848,60.356 +403253,4.2474,59.279 +403254,6.2685,59.675 +403255,8.3462,60.063 +403256,10.488,60.44 +403257,2.9876,59.249 +403258,4.9778,59.683 +403259,7.0216,60.108 +403260,9.1264,60.523 +403261,1.7293,59.219 +403262,3.6875,59.69 +403263,5.6965,60.153 +403264,7.7631,60.606 +403265,0.47267,59.19 +403266,2.3977,59.698 +403267,4.3708,60.199 +403268,6.3984,60.688 +403269,359.22,59.161 +403270,1.1084,59.706 +403271,3.0447,60.244 +403272,5.0324,60.77 +403273,357.96,59.132 +403274,359.82,59.715 +403275,1.718,60.288 +403276,3.6649,60.852 +403277,356.71,59.104 +403278,358.53,59.723 +403279,0.39088,60.333 +403280,2.2962,60.932 +403281,355.46,59.077 +403282,357.24,59.731 +403283,359.06,60.377 +403284,0.92616,61.013 +403285,354.21,59.05 +403286,355.96,59.74 +403287,357.74,60.422 +403288,359.55,61.092 +403289,352.96,59.023 +403290,354.67,59.749 +403291,356.41,60.466 +403292,358.18,61.171 +403293,351.72,58.997 +403294,353.38,59.758 +403295,355.08,60.509 +403296,356.81,61.249 +403297,350.47,58.972 +403298,352.1,59.767 +403299,353.75,60.553 +403300,355.43,61.327 +403301,349.23,58.947 +403302,350.81,59.777 +403303,352.42,60.596 +403304,354.06,61.404 +403305,347.99,58.924 +403306,349.52,59.787 +403307,351.09,60.639 +403308,352.68,61.48 +403309,346.75,58.9 +403310,348.24,59.797 +403311,349.76,60.682 +403312,351.3,61.555 +403313,345.51,58.878 +403314,346.95,59.807 +403315,348.43,60.725 +403316,349.92,61.63 +403317,344.27,58.856 +403318,345.67,59.817 +403319,347.09,60.767 +403320,348.54,61.703 +403321,343.03,58.835 +403322,344.39,59.828 +403323,345.76,60.809 +403324,347.16,61.776 +403325,341.79,58.815 +403326,343.1,59.839 +403327,344.43,60.85 +403328,345.78,61.848 +403329,340.56,58.796 +403330,341.82,59.85 +403331,343.1,60.892 +403332,344.4,61.919 +403333,339.32,58.777 +403334,340.54,59.861 +403335,341.77,60.933 +403336,343.02,61.989 +403337,338.09,58.759 +403338,339.25,59.873 +403339,340.43,60.973 +403340,341.63,62.059 +403341,336.86,58.743 +403342,337.97,59.885 +403343,339.1,61.014 +403344,340.25,62.127 +403345,335.63,58.727 +403346,336.69,59.898 +403347,337.76,61.054 +403348,338.86,62.194 +403349,334.4,58.712 +403350,335.41,59.91 +403351,336.43,61.093 +403352,337.47,62.26 +403353,333.17,58.698 +403354,334.12,59.923 +403355,335.1,61.133 +403356,336.09,62.326 +403357,331.94,58.685 +403358,332.84,59.936 +403359,333.76,61.172 +403360,334.7,62.39 +403361,330.71,58.673 +403362,331.56,59.95 +403363,332.43,61.21 +403364,333.31,62.453 +403365,329.49,58.663 +403366,330.28,59.964 +403367,331.09,61.249 +403368,331.92,62.515 +403369,328.26,58.653 +403370,329,59.978 +403371,329.76,61.287 +403372,330.53,62.576 +403373,327.03,58.644 +403374,327.72,59.993 +403375,328.42,61.324 +403376,329.14,62.636 +403377,325.81,58.636 +403378,326.44,60.008 +403379,327.09,61.361 +403380,327.75,62.695 +403381,324.58,58.63 +403382,325.16,60.023 +403383,325.75,61.398 +403384,326.36,62.753 +403385,323.36,58.625 +403386,323.88,60.039 +403387,324.41,61.434 +403388,324.97,62.809 +403389,322.14,58.62 +403390,322.59,60.055 +403391,323.08,61.47 +403392,323.58,62.865 +403393,320.91,58.617 +403394,321.31,60.072 +403395,321.74,61.506 +403396,322.19,62.919 +403397,319.69,58.615 +403398,320.03,60.089 +403399,320.4,61.541 +403400,320.8,62.972 +403401,318.47,58.615 +403402,318.75,60.106 +403403,319.07,61.576 +403404,319.41,63.024 +403405,317.25,58.615 +403406,317.47,60.123 +403407,317.73,61.61 +403408,318.02,63.074 +403409,316.03,58.617 +403410,316.19,60.141 +403411,316.4,61.644 +403412,316.63,63.124 +403413,314.81,58.62 +403414,314.91,60.16 +403415,315.06,61.677 +403416,315.24,63.172 +403417,313.59,58.624 +403418,313.63,60.179 +403419,313.72,61.71 +403420,313.85,63.219 +403421,312.36,58.629 +403422,312.35,60.198 +403423,312.39,61.743 +403424,312.45,63.264 +403425,311.14,58.636 +403426,311.07,60.218 +403427,311.05,61.775 +403428,311.06,63.308 +403429,309.92,58.644 +403430,309.79,60.238 +403431,309.71,61.807 +403432,309.67,63.352 +403433,308.7,58.653 +403434,308.51,60.258 +403435,308.37,61.838 +403436,308.28,63.393 +403437,307.48,58.664 +403438,307.23,60.279 +403439,307.04,61.869 +403440,306.89,63.434 +403441,306.26,58.676 +403442,305.95,60.3 +403443,305.7,61.9 +403444,305.5,63.473 +403445,305.04,58.689 +403446,304.67,60.322 +403447,304.36,61.929 +403448,304.11,63.511 +403449,303.82,58.703 +403450,303.39,60.344 +403451,303.03,61.959 +403452,302.72,63.548 +403453,302.6,58.719 +403454,302.11,60.367 +403455,301.69,61.988 +403456,301.33,63.583 +403457,301.37,58.736 +403458,300.83,60.39 +403459,300.36,62.017 +403460,299.94,63.617 +403461,300.15,58.754 +403462,299.55,60.413 +403463,299.02,62.045 +403464,298.55,63.65 +403465,298.93,58.774 +403466,298.27,60.437 +403467,297.68,62.073 +403468,297.16,63.681 +403469,297.71,58.795 +403470,296.99,60.461 +403471,296.35,62.1 +403472,295.77,63.711 +403473,296.48,58.818 +403474,295.71,60.486 +403475,295.01,62.127 +403476,294.39,63.74 +403477,295.26,58.841 +403478,294.42,60.511 +403479,293.68,62.153 +403480,293,63.767 +403481,294.03,58.867 +403482,293.14,60.537 +403483,292.34,62.179 +403484,291.61,63.793 +403485,292.81,58.893 +403486,291.86,60.563 +403487,291,62.204 +403488,290.23,63.818 +403489,291.58,58.921 +403490,290.58,60.589 +403491,289.67,62.229 +403492,288.84,63.842 +403493,290.35,58.95 +403494,289.3,60.616 +403495,288.33,62.254 +403496,287.46,63.864 +403497,289.13,58.98 +403498,288.01,60.643 +403499,287,62.278 +403500,286.07,63.885 +403501,287.9,59.012 +403502,286.73,60.671 +403503,285.66,62.301 +403504,284.69,63.904 +403505,286.67,59.045 +403506,285.45,60.699 +403507,284.33,62.325 +403508,283.31,63.922 +403509,285.44,59.08 +403510,284.16,60.727 +403511,283,62.347 +403512,281.93,63.939 +403513,284.21,59.115 +403514,282.88,60.756 +403515,281.66,62.37 +403516,280.55,63.955 +403517,282.97,59.152 +403518,281.59,60.786 +403519,280.33,62.391 +403520,279.17,63.969 +403521,281.74,59.191 +403522,280.31,60.816 +403523,279,62.413 +403524,277.79,63.983 +403525,280.51,59.23 +403526,279.02,60.846 +403527,277.66,62.434 +403528,276.41,63.994 +403529,279.27,59.271 +403530,277.74,60.876 +403531,276.33,62.454 +403532,275.03,64.005 +403533,278.03,59.313 +403534,276.45,60.907 +403535,275,62.474 +403536,273.66,64.014 +403537,276.8,59.356 +403538,275.16,60.939 +403539,273.67,62.494 +403540,272.28,64.022 +403541,275.56,59.401 +403542,273.88,60.971 +403543,272.33,62.513 +403544,270.91,64.029 +403545,274.31,59.447 +403546,272.59,61.003 +403547,271,62.532 +403548,269.54,64.035 +403549,273.07,59.494 +403550,271.3,61.036 +403551,269.67,62.551 +403552,268.17,64.039 +403553,271.83,59.542 +403554,270.01,61.069 +403555,268.34,62.569 +403556,266.8,64.043 +403557,270.58,59.592 +403558,268.72,61.102 +403559,267.01,62.586 +403560,265.43,64.045 +403561,269.34,59.643 +403562,267.44,61.136 +403563,265.68,62.603 +403564,264.06,64.046 +403565,268.09,59.694 +403566,266.15,61.17 +403567,264.35,62.62 +403568,262.69,64.045 +403569,266.84,59.747 +403570,264.86,61.204 +403571,263.02,62.636 +403572,261.33,64.044 +403573,265.59,59.802 +403574,263.56,61.239 +403575,261.7,62.652 +403576,259.96,64.041 +403577,264.34,59.857 +403578,262.27,61.275 +403579,260.37,62.668 +403580,258.6,64.038 +403581,263.08,59.913 +403582,260.98,61.31 +403583,259.04,62.683 +403584,257.24,64.033 +403585,261.83,59.971 +403586,259.69,61.346 +403587,257.71,62.698 +403588,255.88,64.027 +403589,260.57,60.029 +403590,258.4,61.382 +403591,256.39,62.713 +403592,254.52,64.02 +403593,259.31,60.089 +403594,257.1,61.419 +403595,255.06,62.727 +403596,253.16,64.012 +403597,258.05,60.149 +403598,255.81,61.456 +403599,253.74,62.74 +403600,251.8,64.004 +403601,256.78,60.211 +403602,254.51,61.493 +403603,252.41,62.754 +403604,250.45,63.994 +403605,255.52,60.273 +403606,253.22,61.531 +403607,251.09,62.767 +403608,249.1,63.983 +403609,254.25,60.337 +403610,251.92,61.569 +403611,249.76,62.78 +403612,247.74,63.971 +403613,252.98,60.401 +403614,250.63,61.607 +403615,248.44,62.792 +403616,246.39,63.958 +403617,251.71,60.467 +403618,249.33,61.645 +403619,247.12,62.804 +403620,245.05,63.944 +403621,250.44,60.533 +403622,248.03,61.684 +403623,245.79,62.816 +403624,243.7,63.929 +403625,249.17,60.6 +403626,246.73,61.723 +403627,244.47,62.827 +403628,242.35,63.914 +403629,247.89,60.668 +403630,245.43,61.762 +403631,243.15,62.839 +403632,241.01,63.897 +403633,246.61,60.737 +403634,244.14,61.802 +403635,241.83,62.849 +403636,239.67,63.88 +403637,245.33,60.807 +403638,242.84,61.842 +403639,240.51,62.86 +403640,238.33,63.862 +403641,244.05,60.877 +403642,241.53,61.882 +403643,239.19,62.87 +403644,236.99,63.843 +403645,242.77,60.948 +403646,240.23,61.922 +403647,237.87,62.88 +403648,235.65,63.823 +403649,241.48,61.02 +403650,238.93,61.963 +403651,236.55,62.89 +403652,234.31,63.802 +403653,240.19,61.092 +403654,237.63,62.004 +403655,235.23,62.9 +403656,232.98,63.781 +403657,238.9,61.166 +403658,236.32,62.045 +403659,233.91,62.909 +403660,231.65,63.759 +403661,237.61,61.239 +403662,235.02,62.086 +403663,232.6,62.918 +403664,230.31,63.737 +403665,236.32,61.314 +403666,233.72,62.127 +403667,231.28,62.927 +403668,228.98,63.714 +403669,235.02,61.389 +403670,232.41,62.169 +403671,229.96,62.935 +403672,227.66,63.69 +403673,233.72,61.464 +403674,231.1,62.21 +403675,228.65,62.944 +403676,226.33,63.665 +403677,232.42,61.54 +403678,229.8,62.252 +403679,227.33,62.952 +403680,225.01,63.64 +403681,231.12,61.617 +403682,228.49,62.294 +403683,226.02,62.96 +403684,223.68,63.615 +403685,229.82,61.694 +403686,227.18,62.337 +403687,224.71,62.968 +403688,222.36,63.588 +403689,228.51,61.772 +403690,225.87,62.379 +403691,223.39,62.975 +403692,221.04,63.562 +403693,227.2,61.849 +403694,224.56,62.422 +403695,222.08,62.983 +403696,219.73,63.535 +403697,225.89,61.928 +403698,223.25,62.464 +403699,220.77,62.99 +403700,218.41,63.507 +403701,224.58,62.006 +403702,221.94,62.507 +403703,219.46,62.997 +403704,217.1,63.479 +403705,223.26,62.085 +403706,220.63,62.55 +403707,218.15,63.005 +403708,215.79,63.451 +403709,221.95,62.165 +403710,219.32,62.593 +403711,216.84,63.011 +403712,214.48,63.422 +403713,220.63,62.244 +403714,218.01,62.636 +403715,215.53,63.018 +403716,213.17,63.393 +403717,219.31,62.324 +403718,216.69,62.679 +403719,214.22,63.025 +403720,211.86,63.364 +403721,217.99,62.404 +403722,215.38,62.722 +403723,212.91,63.032 +403724,210.56,63.334 +403725,216.66,62.484 +403726,214.07,62.765 +403727,211.6,63.038 +403728,209.25,63.305 +403729,215.34,62.564 +403730,212.75,62.808 +403731,210.3,63.045 +403732,207.95,63.275 +403733,214.01,62.645 +403734,211.43,62.851 +403735,208.99,63.051 +403736,206.65,63.244 +403737,212.68,62.725 +403738,210.12,62.895 +403739,207.68,63.057 +403740,205.36,63.214 +403741,211.34,62.806 +403742,208.8,62.938 +403743,206.38,63.064 +403744,204.06,63.183 +403745,210.01,62.886 +403746,207.48,62.981 +403747,205.07,63.07 +403748,202.77,63.153 +403749,208.67,62.967 +403750,206.16,63.025 +403751,203.77,63.076 +403752,201.47,63.122 +403753,207.34,63.047 +403754,204.84,63.068 +403755,202.47,63.082 +403756,200.18,63.092 +403757,206,63.127 +403758,203.53,63.111 +403759,201.16,63.088 +403760,198.89,63.061 +403761,204.66,63.208 +403762,202.2,63.154 +403763,199.86,63.095 +403764,197.61,63.03 +403765,203.31,63.288 +403766,200.88,63.197 +403767,198.56,63.101 +403768,196.32,63 +403769,201.97,63.368 +403770,199.56,63.241 +403771,197.26,63.107 +403772,195.04,62.969 +403773,200.62,63.448 +403774,198.24,63.284 +403775,195.96,63.113 +403776,193.75,62.939 +403777,199.27,63.527 +403778,196.92,63.327 +403779,194.66,63.12 +403780,192.47,62.908 +403781,197.92,63.607 +403782,195.59,63.369 +403783,193.36,63.126 +403784,191.2,62.878 +403785,196.57,63.686 +403786,194.27,63.412 +403787,192.06,63.132 +403788,189.92,62.848 +403789,195.21,63.765 +403790,192.94,63.455 +403791,190.76,63.139 +403792,188.64,62.819 +403793,193.86,63.843 +403794,191.62,63.497 +403795,189.46,63.146 +403796,187.37,62.789 +403797,192.5,63.921 +403798,190.29,63.54 +403799,188.16,63.152 +403800,186.1,62.76 +403801,191.14,63.999 +403802,188.97,63.582 +403803,186.87,63.159 +403804,184.83,62.731 +403805,189.78,64.076 +403806,187.64,63.624 +403807,185.57,63.166 +403808,183.56,62.703 +403809,188.42,64.153 +403810,186.31,63.666 +403811,184.27,63.173 +403812,182.29,62.675 +403813,187.06,64.23 +403814,184.99,63.708 +403815,182.98,63.18 +403816,181.03,62.647 +403817,185.69,64.305 +403818,183.66,63.75 +403819,181.68,63.187 +403820,179.76,62.62 +403821,184.33,64.381 +403822,182.33,63.791 +403823,180.39,63.195 +403824,178.5,62.593 +403825,182.96,64.456 +403826,181,63.833 +403827,179.09,63.202 +403828,177.24,62.567 +403829,181.59,64.53 +403830,179.67,63.874 +403831,177.8,63.21 +403832,175.98,62.541 +403833,180.22,64.604 +403834,178.34,63.914 +403835,176.51,63.218 +403836,174.72,62.516 +403837,178.85,64.677 +403838,177.01,63.955 +403839,175.21,63.226 +403840,173.46,62.491 +403841,177.48,64.749 +403842,175.68,63.996 +403843,173.92,63.234 +403844,172.21,62.467 +403845,176.1,64.821 +403846,174.34,64.036 +403847,172.63,63.243 +403848,170.95,62.443 +403849,174.73,64.891 +403850,173.01,64.076 +403851,171.34,63.251 +403852,169.7,62.42 +403853,173.35,64.962 +403854,171.68,64.115 +403855,170.05,63.26 +403856,168.45,62.398 +403857,171.97,65.031 +403858,170.35,64.155 +403859,168.76,63.27 +403860,167.2,62.377 +403861,170.6,65.1 +403862,169.01,64.194 +403863,167.47,63.279 +403864,165.95,62.356 +403865,169.22,65.168 +403866,167.68,64.233 +403867,166.18,63.289 +403868,164.7,62.336 +403869,167.84,65.235 +403870,166.34,64.272 +403871,164.89,63.298 +403872,163.46,62.317 +403873,166.45,65.301 +403874,165.01,64.31 +403875,163.6,63.309 +403876,162.21,62.298 +403877,165.07,65.367 +403878,163.67,64.348 +403879,162.31,63.319 +403880,160.97,62.281 +403881,163.69,65.431 +403882,162.34,64.386 +403883,161.02,63.33 +403884,159.73,62.264 +403885,162.3,65.495 +403886,161,64.423 +403887,159.73,63.341 +403888,158.48,62.248 +403889,160.92,65.557 +403890,159.67,64.46 +403891,158.44,63.352 +403892,157.24,62.233 +403893,159.53,65.619 +403894,158.33,64.497 +403895,157.16,63.363 +403896,156,62.219 +403897,158.15,65.68 +403898,156.99,64.534 +403899,155.87,63.375 +403900,154.76,62.206 +403901,156.76,65.74 +403902,155.66,64.57 +403903,154.58,63.387 +403904,153.53,62.193 +403905,155.37,65.799 +403906,154.32,64.606 +403907,153.29,63.4 +403908,152.29,62.182 +403909,153.98,65.856 +403910,152.98,64.641 +403911,152.01,63.412 +403912,151.05,62.172 +403913,152.59,65.913 +403914,151.65,64.676 +403915,150.72,63.426 +403916,149.82,62.163 +403917,151.2,65.969 +403918,150.31,64.711 +403919,149.43,63.439 +403920,148.58,62.154 +403921,149.81,66.024 +403922,148.97,64.745 +403923,148.15,63.453 +403924,147.35,62.147 +403925,148.42,66.077 +403926,147.63,64.779 +403927,146.86,63.467 +403928,146.12,62.141 +403929,147.03,66.13 +403930,146.29,64.813 +403931,145.58,63.481 +403932,144.88,62.136 +403933,145.64,66.181 +403934,144.95,64.846 +403935,144.29,63.496 +403936,143.65,62.132 +403937,144.25,66.232 +403938,143.62,64.879 +403939,143.01,63.511 +403940,142.42,62.129 +403941,142.86,66.281 +403942,142.28,64.912 +403943,141.72,63.527 +403944,141.19,62.127 +403945,141.46,66.329 +403946,140.94,64.944 +403947,140.44,63.543 +403948,139.96,62.126 +403949,140.07,66.376 +403950,139.6,64.976 +403951,139.15,63.559 +403952,138.73,62.127 +403953,138.68,66.421 +403954,138.26,65.007 +403955,137.87,63.576 +403956,137.5,62.129 +403957,137.28,66.466 +403958,136.92,65.038 +403959,136.58,63.593 +403960,136.27,62.131 +403961,135.89,66.509 +403962,135.58,65.068 +403963,135.3,63.61 +403964,135.04,62.135 +403965,134.5,66.551 +403966,134.24,65.098 +403967,134.01,63.628 +403968,133.82,62.141 +403969,133.1,66.592 +403970,132.9,65.128 +403971,132.73,63.646 +403972,132.59,62.147 +403973,131.71,66.632 +403974,131.56,65.157 +403975,131.44,63.664 +403976,131.36,62.155 +403977,130.32,66.671 +403978,130.22,65.186 +403979,130.16,63.683 +403980,130.13,62.163 +403981,128.92,66.708 +403982,128.88,65.215 +403983,128.87,63.703 +403984,128.91,62.173 +403985,127.53,66.744 +403986,127.54,65.243 +403987,127.59,63.723 +403988,127.68,62.185 +403989,126.14,66.779 +403990,126.2,65.27 +403991,126.3,63.743 +403992,126.45,62.197 +403993,124.74,66.812 +403994,124.86,65.297 +403995,125.02,63.763 +403996,125.22,62.211 +403997,123.35,66.845 +403998,123.52,65.324 +403999,123.74,63.784 +404000,123.99,62.226 +404001,121.96,66.876 +404002,122.18,65.35 +404003,122.45,63.806 +404004,122.77,62.242 +404005,120.57,66.906 +404006,120.84,65.376 +404007,121.17,63.827 +404008,121.54,62.26 +404009,119.18,66.934 +404010,119.5,65.402 +404011,119.88,63.85 +404012,120.31,62.279 +404013,117.78,66.962 +404014,118.16,65.427 +404015,118.59,63.872 +404016,119.08,62.299 +404017,116.39,66.988 +404018,116.82,65.451 +404019,117.31,63.895 +404020,117.85,62.32 +404021,115,67.013 +404022,115.49,65.475 +404023,116.02,63.918 +404024,116.62,62.343 +404025,113.61,67.036 +404026,114.15,65.499 +404027,114.74,63.942 +404028,115.39,62.367 +404029,112.22,67.059 +404030,112.81,65.522 +404031,113.45,63.967 +404032,114.16,62.392 +404033,110.83,67.08 +404034,111.47,65.545 +404035,112.17,63.991 +404036,112.93,62.418 +404037,109.44,67.1 +404038,110.13,65.568 +404039,110.88,64.016 +404040,111.7,62.446 +404041,108.06,67.118 +404042,108.79,65.59 +404043,109.59,64.042 +404044,110.47,62.475 +404045,106.67,67.136 +404046,107.45,65.611 +404047,108.31,64.068 +404048,109.24,62.505 +404049,105.28,67.152 +404050,106.12,65.632 +404051,107.02,64.094 +404052,108,62.537 +404053,103.9,67.167 +404054,104.78,65.653 +404055,105.73,64.12 +404056,106.77,62.57 +404057,102.51,67.181 +404058,103.44,65.673 +404059,104.45,64.148 +404060,105.54,62.604 +404061,101.13,67.193 +404062,102.1,65.693 +404063,103.16,64.175 +404064,104.3,62.639 +404065,99.742,67.204 +404066,100.77,65.713 +404067,101.87,64.203 +404068,103.06,62.675 +404069,98.359,67.214 +404070,99.429,65.732 +404071,100.58,64.231 +404072,101.83,62.713 +404073,96.977,67.223 +404074,98.093,65.75 +404075,99.293,64.26 +404076,100.59,62.752 +404077,95.596,67.231 +404078,96.756,65.769 +404079,98.004,64.289 +404080,99.35,62.792 +404081,94.215,67.237 +404082,95.421,65.787 +404083,96.715,64.318 +404084,98.109,62.833 +404085,92.836,67.243 +404086,94.085,65.804 +404087,95.425,64.348 +404088,96.868,62.875 +404089,91.458,67.247 +404090,92.75,65.821 +404091,94.135,64.378 +404092,95.626,62.919 +404093,90.081,67.25 +404094,91.415,65.838 +404095,92.845,64.409 +404096,94.382,62.964 +404097,88.704,67.251 +404098,90.08,65.854 +404099,91.554,64.44 +404100,93.137,63.01 +404101,87.329,67.252 +404102,88.746,65.87 +404103,90.262,64.471 +404104,91.892,63.057 +404105,85.955,67.252 +404106,87.412,65.885 +404107,88.971,64.503 +404108,90.644,63.105 +404109,84.582,67.25 +404110,86.079,65.9 +404111,87.678,64.535 +404112,89.396,63.154 +404113,83.21,67.248 +404114,84.745,65.915 +404115,86.386,64.567 +404116,88.146,63.205 +404117,81.84,67.244 +404118,83.413,65.929 +404119,85.093,64.6 +404120,86.895,63.256 +404121,80.47,67.239 +404122,82.08,65.943 +404123,83.799,64.633 +404124,85.642,63.309 +404125,79.102,67.233 +404126,80.749,65.957 +404127,82.505,64.666 +404128,84.388,63.362 +404129,77.735,67.227 +404130,79.417,65.97 +404131,81.211,64.7 +404132,83.132,63.417 +404133,76.37,67.219 +404134,78.086,65.983 +404135,79.916,64.734 +404136,81.875,63.472 +404137,75.005,67.21 +404138,76.755,65.996 +404139,78.62,64.768 +404140,80.617,63.529 +404141,73.642,67.2 +404142,75.425,66.008 +404143,77.325,64.803 +404144,79.357,63.586 +404145,72.281,67.189 +404146,74.096,66.02 +404147,76.028,64.838 +404148,78.095,63.645 +404149,70.92,67.178 +404150,72.766,66.031 +404151,74.731,64.873 +404152,76.832,63.704 +404153,69.561,67.165 +404154,71.438,66.043 +404155,73.433,64.909 +404156,75.567,63.765 +404157,68.204,67.152 +404158,70.109,66.053 +404159,72.135,64.945 +404160,74.3,63.826 +404161,66.848,67.137 +404162,68.782,66.064 +404163,70.837,64.981 +404164,73.031,63.888 +404165,65.493,67.122 +404166,67.454,66.074 +404167,69.537,65.017 +404168,71.761,63.951 +404169,64.14,67.106 +404170,66.128,66.085 +404171,68.238,65.054 +404172,70.489,64.015 +404173,62.789,67.089 +404174,64.801,66.094 +404175,66.937,65.091 +404176,69.216,64.079 +404177,61.439,67.071 +404178,63.476,66.104 +404179,65.636,65.128 +404180,67.94,64.145 +404181,60.09,67.052 +404182,62.15,66.113 +404183,64.335,65.166 +404184,66.663,64.211 +404185,58.743,67.033 +404186,60.826,66.122 +404187,63.033,65.203 +404188,65.384,64.277 +404189,57.398,67.013 +404190,59.501,66.131 +404191,61.73,65.241 +404192,64.103,64.345 +404193,56.054,66.992 +404194,58.178,66.139 +404195,60.427,65.279 +404196,62.82,64.413 +404197,54.711,66.971 +404198,56.855,66.147 +404199,59.123,65.318 +404200,61.536,64.482 +404201,53.371,66.949 +404202,55.532,66.155 +404203,57.818,65.356 +404204,60.249,64.551 +404205,52.032,66.926 +404206,54.21,66.163 +404207,56.513,65.395 +404208,58.961,64.621 +404209,50.694,66.903 +404210,52.889,66.171 +404211,55.207,65.434 +404212,57.67,64.692 +404213,49.358,66.879 +404214,51.568,66.178 +404215,53.901,65.473 +404216,56.378,64.763 +404217,48.024,66.854 +404218,50.247,66.185 +404219,52.594,65.512 +404220,55.084,64.835 +404221,46.692,66.829 +404222,48.928,66.192 +404223,51.286,65.552 +404224,53.788,64.907 +404225,45.361,66.804 +404226,47.608,66.199 +404227,49.978,65.591 +404228,52.489,64.98 +404229,44.032,66.778 +404230,46.29,66.206 +404231,48.669,65.631 +404232,51.189,65.053 +404233,42.705,66.751 +404234,44.972,66.212 +404235,47.359,65.671 +404236,49.887,65.126 +404237,41.379,66.724 +404238,43.654,66.219 +404239,46.049,65.711 +404240,48.583,65.2 +404241,40.055,66.697 +404242,42.337,66.225 +404243,44.738,65.751 +404244,47.277,65.275 +404245,38.733,66.669 +404246,41.021,66.231 +404247,43.427,65.791 +404248,45.969,65.349 +404249,37.412,66.641 +404250,39.705,66.237 +404251,42.115,65.831 +404252,44.66,65.424 +404253,36.094,66.612 +404254,38.39,66.243 +404255,40.802,65.872 +404256,43.348,65.499 +404257,34.776,66.584 +404258,37.076,66.249 +404259,39.489,65.912 +404260,42.034,65.575 +404261,33.461,66.555 +404262,35.762,66.254 +404263,38.175,65.953 +404264,40.718,65.65 +404265,32.148,66.525 +404266,34.448,66.26 +404267,36.86,65.993 +404268,39.4,65.726 +404269,30.836,66.496 +404270,33.136,66.265 +404271,35.545,66.034 +404272,38.081,65.802 +404273,29.526,66.466 +404274,31.823,66.271 +404275,34.229,66.075 +404276,36.759,65.878 +404277,28.217,66.436 +404278,30.512,66.276 +404279,32.912,66.115 +404280,35.436,65.955 +404281,26.911,66.406 +404282,29.201,66.281 +404283,31.595,66.156 +404284,34.11,66.031 +404285,25.606,66.376 +404286,27.89,66.286 +404287,30.277,66.197 +404288,32.783,66.107 +404289,24.303,66.346 +404290,26.58,66.292 +404291,28.958,66.238 +404292,31.453,66.183 +404293,23.001,66.316 +404294,25.271,66.297 +404295,27.639,66.278 +404296,30.122,66.26 +404297,21.701,66.286 +404298,23.962,66.302 +404299,26.319,66.319 +404300,28.789,66.336 +404301,20.403,66.255 +404302,22.654,66.307 +404303,24.999,66.36 +404304,27.454,66.412 +404305,19.107,66.225 +404306,21.346,66.313 +404307,23.678,66.4 +404308,26.118,66.488 +404309,17.813,66.195 +404310,20.039,66.318 +404311,22.357,66.441 +404312,24.779,66.564 +404313,16.52,66.165 +404314,18.733,66.323 +404315,21.034,66.482 +404316,23.439,66.64 +404317,15.229,66.135 +404318,17.427,66.328 +404319,19.711,66.522 +404320,22.097,66.716 +404321,13.939,66.105 +404322,16.121,66.334 +404323,18.388,66.563 +404324,20.753,66.791 +404325,12.651,66.076 +404326,14.817,66.339 +404327,17.064,66.603 +404328,19.407,66.867 +404329,11.365,66.047 +404330,13.512,66.345 +404331,15.739,66.643 +404332,18.059,66.941 +404333,10.081,66.017 +404334,12.209,66.35 +404335,14.414,66.683 +404336,16.71,67.016 +404337,8.7978,65.989 +404338,10.905,66.356 +404339,13.089,66.723 +404340,15.359,67.09 +404341,7.5166,65.96 +404342,9.6027,66.362 +404343,11.762,66.763 +404344,14.007,67.164 +404345,6.237,65.932 +404346,8.3006,66.367 +404347,10.435,66.803 +404348,12.653,67.238 +404349,4.9591,65.904 +404350,6.9989,66.373 +404351,9.108,66.843 +404352,11.297,67.311 +404353,3.6826,65.876 +404354,5.6978,66.379 +404355,7.78,66.882 +404356,9.9397,67.384 +404357,2.4078,65.849 +404358,4.3972,66.386 +404359,6.4515,66.922 +404360,8.5808,67.456 +404361,1.1345,65.822 +404362,3.0971,66.392 +404363,5.1225,66.961 +404364,7.2203,67.528 +404365,359.86,65.796 +404366,1.7975,66.398 +404367,3.7929,67 +404368,5.8584,67.599 +404369,358.59,65.77 +404370,0.49834,66.405 +404371,2.4628,67.039 +404372,4.4949,67.67 +404373,357.32,65.745 +404374,359.2,66.412 +404375,1.1323,67.077 +404376,3.13,67.74 +404377,356.06,65.72 +404378,357.9,66.419 +404379,359.8,67.116 +404380,1.7637,67.81 +404381,354.79,65.696 +404382,356.6,66.426 +404383,358.47,67.154 +404384,0.39602,67.879 +404385,353.53,65.673 +404386,355.31,66.433 +404387,357.14,67.192 +404388,359.03,67.947 +404389,352.26,65.65 +404390,354.01,66.441 +404391,355.81,67.23 +404392,357.66,68.015 +404393,351,65.628 +404394,352.71,66.449 +404395,354.47,67.267 +404396,356.28,68.082 +404397,349.74,65.606 +404398,351.42,66.457 +404399,353.14,67.305 +404400,354.91,68.148 +404401,348.48,65.585 +404402,350.12,66.465 +404403,351.8,67.342 +404404,353.54,68.214 +404405,347.22,65.565 +404406,348.83,66.473 +404407,350.47,67.379 +404408,352.16,68.279 +404409,345.97,65.545 +404410,347.53,66.482 +404411,349.14,67.415 +404412,350.79,68.343 +404413,344.71,65.526 +404414,346.24,66.491 +404415,347.8,67.452 +404416,349.41,68.406 +404417,343.46,65.508 +404418,344.94,66.5 +404419,346.47,67.488 +404420,348.03,68.469 +404421,342.21,65.491 +404422,343.65,66.51 +404423,345.13,67.523 +404424,346.65,68.531 +404425,340.96,65.475 +404426,342.36,66.519 +404427,343.79,67.559 +404428,345.27,68.592 +404429,339.71,65.459 +404430,341.06,66.529 +404431,342.46,67.594 +404432,343.89,68.652 +404433,338.46,65.445 +404434,339.77,66.54 +404435,341.12,67.629 +404436,342.5,68.711 +404437,337.21,65.431 +404438,338.48,66.55 +404439,339.78,67.663 +404440,341.12,68.769 +404441,335.96,65.418 +404442,337.19,66.561 +404443,338.44,67.698 +404444,339.74,68.826 +404445,334.71,65.406 +404446,335.9,66.572 +404447,337.11,67.732 +404448,338.35,68.882 +404449,333.47,65.395 +404450,334.6,66.584 +404451,335.77,67.765 +404452,336.96,68.938 +404453,332.23,65.385 +404454,333.31,66.596 +404455,334.43,67.799 +404456,335.58,68.992 +404457,330.98,65.376 +404458,332.02,66.608 +404459,333.09,67.831 +404460,334.19,69.046 +404461,329.74,65.368 +404462,330.73,66.62 +404463,331.75,67.864 +404464,332.8,69.098 +404465,328.5,65.361 +404466,329.44,66.633 +404467,330.41,67.896 +404468,331.41,69.149 +404469,327.26,65.355 +404470,328.15,66.646 +404471,329.07,67.928 +404472,330.02,69.2 +404473,326.02,65.35 +404474,326.86,66.66 +404475,327.73,67.96 +404476,328.63,69.249 +404477,324.78,65.347 +404478,325.57,66.673 +404479,326.39,67.991 +404480,327.24,69.297 +404481,323.54,65.344 +404482,324.28,66.688 +404483,325.05,68.022 +404484,325.85,69.344 +404485,322.3,65.342 +404486,322.99,66.702 +404487,323.71,68.052 +404488,324.46,69.39 +404489,321.06,65.341 +404490,321.7,66.717 +404491,322.37,68.082 +404492,323.07,69.435 +404493,319.83,65.342 +404494,320.42,66.732 +404495,321.03,68.112 +404496,321.67,69.479 +404497,318.59,65.344 +404498,319.13,66.748 +404499,319.69,68.141 +404500,320.28,69.522 +404501,317.35,65.347 +404502,317.84,66.764 +404503,318.35,68.17 +404504,318.89,69.564 +404505,316.12,65.35 +404506,316.55,66.78 +404507,317.01,68.198 +404508,317.49,69.604 +404509,314.88,65.356 +404510,315.26,66.797 +404511,315.67,68.227 +404512,316.1,69.643 +404513,313.65,65.362 +404514,313.97,66.814 +404515,314.33,68.254 +404516,314.71,69.681 +404517,312.41,65.369 +404518,312.68,66.832 +404519,312.98,68.282 +404520,313.31,69.718 +404521,311.18,65.378 +404522,311.4,66.849 +404523,311.64,68.309 +404524,311.92,69.754 +404525,309.95,65.388 +404526,310.11,66.868 +404527,310.3,68.335 +404528,310.52,69.789 +404529,308.71,65.399 +404530,308.82,66.886 +404531,308.96,68.361 +404532,309.13,69.822 +404533,307.48,65.411 +404534,307.53,66.905 +404535,307.62,68.387 +404536,307.74,69.855 +404537,306.25,65.425 +404538,306.24,66.925 +404539,306.28,68.412 +404540,306.34,69.886 +404541,305.01,65.44 +404542,304.96,66.945 +404543,304.93,68.437 +404544,304.95,69.916 +404545,303.78,65.455 +404546,303.67,66.965 +404547,303.59,68.462 +404548,303.55,69.944 +404549,302.55,65.473 +404550,302.38,66.986 +404551,302.25,68.486 +404552,302.16,69.972 +404553,301.31,65.491 +404554,301.09,67.007 +404555,300.91,68.509 +404556,300.77,69.998 +404557,300.08,65.511 +404558,299.8,67.028 +404559,299.57,68.533 +404560,299.37,70.023 +404561,298.85,65.532 +404562,298.51,67.05 +404563,298.23,68.556 +404564,297.98,70.047 +404565,297.61,65.554 +404566,297.23,67.072 +404567,296.88,68.578 +404568,296.59,70.07 +404569,296.38,65.577 +404570,295.94,67.095 +404571,295.54,68.6 +404572,295.19,70.091 +404573,295.14,65.602 +404574,294.65,67.118 +404575,294.2,68.622 +404576,293.8,70.111 +404577,293.91,65.627 +404578,293.36,67.141 +404579,292.86,68.643 +404580,292.41,70.13 +404581,292.67,65.654 +404582,292.07,67.165 +404583,291.52,68.664 +404584,291.02,70.148 +404585,291.44,65.683 +404586,290.78,67.189 +404587,290.18,68.684 +404588,289.63,70.165 +404589,290.2,65.712 +404590,289.49,67.214 +404591,288.84,68.704 +404592,288.24,70.18 +404593,288.96,65.743 +404594,288.2,67.239 +404595,287.5,68.723 +404596,286.85,70.194 +404597,287.73,65.775 +404598,286.91,67.265 +404599,286.16,68.743 +404600,285.46,70.207 +404601,286.49,65.808 +404602,285.62,67.29 +404603,284.82,68.761 +404604,284.07,70.219 +404605,285.25,65.842 +404606,284.33,67.317 +404607,283.48,68.78 +404608,282.68,70.23 +404609,284.01,65.878 +404610,283.04,67.343 +404611,282.14,68.798 +404612,281.29,70.239 +404613,282.77,65.914 +404614,281.75,67.37 +404615,280.8,68.815 +404616,279.91,70.248 +404617,281.53,65.952 +404618,280.46,67.398 +404619,279.46,68.832 +404620,278.52,70.255 +404621,280.29,65.991 +404622,279.17,67.425 +404623,278.12,68.849 +404624,277.14,70.261 +404625,279.05,66.031 +404626,277.88,67.454 +404627,276.78,68.866 +404628,275.75,70.266 +404629,277.81,66.073 +404630,276.58,67.482 +404631,275.44,68.882 +404632,274.37,70.27 +404633,276.56,66.115 +404634,275.29,67.511 +404635,274.1,68.897 +404636,272.99,70.272 +404637,275.32,66.159 +404638,274,67.54 +404639,272.77,68.912 +404640,271.61,70.274 +404641,274.07,66.203 +404642,272.71,67.57 +404643,271.43,68.927 +404644,270.22,70.274 +404645,272.82,66.249 +404646,271.41,67.6 +404647,270.09,68.942 +404648,268.85,70.274 +404649,271.58,66.296 +404650,270.12,67.63 +404651,268.75,68.956 +404652,267.47,70.272 +404653,270.33,66.344 +404654,268.83,67.661 +404655,267.42,68.97 +404656,266.09,70.269 +404657,269.08,66.393 +404658,267.53,67.692 +404659,266.08,68.983 +404660,264.71,70.266 +404661,267.82,66.443 +404662,266.24,67.723 +404663,264.74,68.996 +404664,263.34,70.261 +404665,266.57,66.494 +404666,264.94,67.755 +404667,263.41,69.009 +404668,261.96,70.255 +404669,265.32,66.546 +404670,263.65,67.787 +404671,262.07,69.021 +404672,260.59,70.248 +404673,264.06,66.599 +404674,262.35,67.819 +404675,260.74,69.033 +404676,259.22,70.24 +404677,262.81,66.653 +404678,261.05,67.852 +404679,259.4,69.045 +404680,257.85,70.231 +404681,261.55,66.708 +404682,259.76,67.885 +404683,258.07,69.056 +404684,256.48,70.221 +404685,260.29,66.764 +404686,258.46,67.918 +404687,256.74,69.068 +404688,255.11,70.211 +404689,259.03,66.821 +404690,257.16,67.952 +404691,255.4,69.078 +404692,253.74,70.199 +404693,257.77,66.879 +404694,255.86,67.986 +404695,254.07,69.089 +404696,252.37,70.187 +404697,256.5,66.938 +404698,254.56,68.02 +404699,252.74,69.099 +404700,251.01,70.173 +404701,255.24,66.997 +404702,253.27,68.054 +404703,251.41,69.109 +404704,249.65,70.159 +404705,253.97,67.057 +404706,251.97,68.089 +404707,250.08,69.118 +404708,248.28,70.144 +404709,252.7,67.119 +404710,250.67,68.124 +404711,248.74,69.128 +404712,246.92,70.128 +404713,251.43,67.18 +404714,249.36,68.159 +404715,247.41,69.137 +404716,245.56,70.111 +404717,250.16,67.243 +404718,248.06,68.195 +404719,246.08,69.145 +404720,244.21,70.093 +404721,248.89,67.307 +404722,246.76,68.231 +404723,244.75,69.154 +404724,242.85,70.075 +404725,247.61,67.371 +404726,245.46,68.267 +404727,243.42,69.162 +404728,241.5,70.056 +404729,246.34,67.436 +404730,244.16,68.303 +404731,242.1,69.17 +404732,240.14,70.036 +404733,245.06,67.501 +404734,242.85,68.339 +404735,240.77,69.178 +404736,238.79,70.015 +404737,243.78,67.567 +404738,241.55,68.376 +404739,239.44,69.185 +404740,237.44,69.994 +404741,242.5,67.634 +404742,240.24,68.413 +404743,238.11,69.193 +404744,236.09,69.972 +404745,241.21,67.702 +404746,238.94,68.45 +404747,236.79,69.2 +404748,234.74,69.95 +404749,239.93,67.77 +404750,237.63,68.487 +404751,235.46,69.207 +404752,233.4,69.927 +404753,238.64,67.838 +404754,236.33,68.525 +404755,234.14,69.213 +404756,232.05,69.903 +404757,237.35,67.907 +404758,235.02,68.562 +404759,232.81,69.22 +404760,230.71,69.879 +404761,236.06,67.977 +404762,233.71,68.6 +404763,231.49,69.226 +404764,229.37,69.854 +404765,234.77,68.047 +404766,232.4,68.638 +404767,230.16,69.232 +404768,228.03,69.829 +404769,233.47,68.118 +404770,231.09,68.676 +404771,228.84,69.238 +404772,226.69,69.803 +404773,232.18,68.188 +404774,229.79,68.714 +404775,227.52,69.244 +404776,225.36,69.777 +404777,230.88,68.26 +404778,228.48,68.753 +404779,226.19,69.25 +404780,224.02,69.75 +404781,229.58,68.332 +404782,227.16,68.791 +404783,224.87,69.255 +404784,222.69,69.723 +404785,228.28,68.404 +404786,225.85,68.83 +404787,223.55,69.261 +404788,221.36,69.696 +404789,226.97,68.476 +404790,224.54,68.868 +404791,222.23,69.266 +404792,220.03,69.668 +404793,225.67,68.549 +404794,223.23,68.907 +404795,220.91,69.271 +404796,218.7,69.64 +404797,224.36,68.621 +404798,221.92,68.946 +404799,219.59,69.276 +404800,217.37,69.611 +404801,223.05,68.695 +404802,220.6,68.985 +404803,218.27,69.281 +404804,216.05,69.582 +404805,221.74,68.768 +404806,219.29,69.024 +404807,216.95,69.286 +404808,214.72,69.553 +404809,220.43,68.841 +404810,217.97,69.063 +404811,215.64,69.291 +404812,213.4,69.524 +404813,219.11,68.915 +404814,216.66,69.102 +404815,214.32,69.296 +404816,212.08,69.495 +404817,217.8,68.989 +404818,215.34,69.142 +404819,213,69.301 +404820,210.77,69.465 +404821,216.48,69.063 +404822,214.03,69.181 +404823,211.69,69.305 +404824,209.45,69.435 +404825,215.16,69.137 +404826,212.71,69.22 +404827,210.37,69.31 +404828,208.14,69.406 +404829,213.84,69.211 +404830,211.39,69.259 +404831,209.06,69.315 +404832,206.82,69.376 +404833,212.51,69.284 +404834,210.07,69.299 +404835,207.74,69.319 +404836,205.51,69.346 +404837,211.18,69.358 +404838,208.75,69.338 +404839,206.43,69.324 +404840,204.2,69.316 +404841,209.86,69.432 +404842,207.43,69.377 +404843,205.12,69.328 +404844,202.89,69.286 +404845,208.53,69.506 +404846,206.11,69.416 +404847,203.8,69.333 +404848,201.59,69.256 +404849,207.2,69.58 +404850,204.79,69.455 +404851,202.49,69.338 +404852,200.28,69.226 +404853,205.86,69.653 +404854,203.47,69.495 +404855,201.18,69.342 +404856,198.98,69.196 +404857,204.53,69.727 +404858,202.15,69.534 +404859,199.87,69.347 +404860,197.68,69.166 +404861,203.19,69.8 +404862,200.82,69.573 +404863,198.56,69.352 +404864,196.38,69.137 +404865,201.85,69.873 +404866,199.5,69.612 +404867,197.25,69.356 +404868,195.08,69.107 +404869,200.51,69.946 +404870,198.18,69.651 +404871,195.94,69.361 +404872,193.79,69.078 +404873,199.17,70.018 +404874,196.85,69.689 +404875,194.63,69.366 +404876,192.49,69.049 +404877,197.82,70.09 +404878,195.53,69.728 +404879,193.32,69.371 +404880,191.2,69.02 +404881,196.48,70.162 +404882,194.2,69.767 +404883,192.02,69.376 +404884,189.91,68.992 +404885,195.13,70.234 +404886,192.87,69.805 +404887,190.71,69.382 +404888,188.62,68.964 +404889,193.78,70.305 +404890,191.55,69.843 +404891,189.4,69.387 +404892,187.33,68.936 +404893,192.43,70.376 +404894,190.22,69.882 +404895,188.1,69.392 +404896,186.04,68.908 +404897,191.08,70.446 +404898,188.89,69.92 +404899,186.79,69.398 +404900,184.76,68.881 +404901,189.72,70.516 +404902,187.56,69.958 +404903,185.49,69.404 +404904,183.48,68.854 +404905,188.37,70.585 +404906,186.23,69.995 +404907,184.18,69.409 +404908,182.2,68.828 +404909,187.01,70.654 +404910,184.9,70.033 +404911,182.88,69.415 +404912,180.92,68.802 +404913,185.65,70.723 +404914,183.57,70.07 +404915,181.57,69.422 +404916,179.64,68.777 +404917,184.29,70.79 +404918,182.24,70.108 +404919,180.27,69.428 +404920,178.36,68.752 +404921,182.93,70.858 +404922,180.91,70.145 +404923,178.97,69.435 +404924,177.08,68.728 +404925,181.57,70.924 +404926,179.58,70.181 +404927,177.67,69.441 +404928,175.81,68.704 +404929,180.2,70.99 +404930,178.25,70.218 +404931,176.36,69.448 +404932,174.54,68.681 +404933,178.83,71.056 +404934,176.92,70.255 +404935,175.06,69.455 +404936,173.27,68.659 +404937,177.47,71.12 +404938,175.58,70.291 +404939,173.76,69.463 +404940,172,68.637 +404941,176.1,71.184 +404942,174.25,70.327 +404943,172.46,69.47 +404944,170.73,68.616 +404945,174.73,71.248 +404946,172.92,70.362 +404947,171.16,69.478 +404948,169.46,68.595 +404949,173.36,71.31 +404950,171.58,70.398 +404951,169.86,69.486 +404952,168.19,68.575 +404953,171.98,71.372 +404954,170.25,70.433 +404955,168.56,69.494 +404956,166.93,68.556 +404957,170.61,71.433 +404958,168.91,70.468 +404959,167.27,69.503 +404960,165.67,68.538 +404961,169.23,71.493 +404962,167.57,70.503 +404963,165.97,69.512 +404964,164.41,68.521 +404965,167.86,71.553 +404966,166.24,70.537 +404967,164.67,69.521 +404968,163.14,68.504 +404969,166.48,71.611 +404970,164.9,70.571 +404971,163.37,69.53 +404972,161.88,68.488 +404973,165.1,71.669 +404974,163.56,70.605 +404975,162.07,69.54 +404976,160.63,68.473 +404977,163.72,71.726 +404978,162.23,70.639 +404979,160.78,69.549 +404980,159.37,68.459 +404981,162.34,71.782 +404982,160.89,70.672 +404983,159.48,69.56 +404984,158.11,68.446 +404985,160.96,71.837 +404986,159.55,70.705 +404987,158.19,69.57 +404988,156.86,68.433 +404989,159.58,71.891 +404990,158.21,70.738 +404991,156.89,69.581 +404992,155.6,68.422 +404993,158.19,71.944 +404994,156.87,70.77 +404995,155.59,69.592 +404996,154.35,68.411 +404997,156.81,71.996 +404998,155.53,70.802 +404999,154.3,69.603 +405000,153.1,68.402 +405001,155.42,72.048 +405002,154.2,70.834 +405003,153,69.615 +405004,151.85,68.393 +405005,154.04,72.098 +405006,152.86,70.865 +405007,151.71,69.627 +405008,150.6,68.386 +405009,152.65,72.147 +405010,151.52,70.896 +405011,150.42,69.64 +405012,149.35,68.379 +405013,151.26,72.195 +405014,150.18,70.927 +405015,149.12,69.652 +405016,148.1,68.374 +405017,149.88,72.243 +405018,148.83,70.957 +405019,147.83,69.666 +405020,146.85,68.369 +405021,148.49,72.289 +405022,147.49,70.987 +405023,146.54,69.679 +405024,145.61,68.366 +405025,147.1,72.334 +405026,146.15,71.017 +405027,145.24,69.693 +405028,144.36,68.363 +405029,145.71,72.378 +405030,144.81,71.046 +405031,143.95,69.707 +405032,143.12,68.362 +405033,144.32,72.421 +405034,143.47,71.075 +405035,142.66,69.721 +405036,141.87,68.362 +405037,142.92,72.463 +405038,142.13,71.103 +405039,141.36,69.736 +405040,140.63,68.363 +405041,141.53,72.504 +405042,140.79,71.132 +405043,140.07,69.752 +405044,139.39,68.365 +405045,140.14,72.543 +405046,139.44,71.159 +405047,138.78,69.767 +405048,138.14,68.368 +405049,138.75,72.582 +405050,138.1,71.187 +405051,137.49,69.783 +405052,136.9,68.372 +405053,137.36,72.62 +405054,136.76,71.214 +405055,136.2,69.8 +405056,135.66,68.378 +405057,135.96,72.656 +405058,135.42,71.24 +405059,134.9,69.816 +405060,134.42,68.385 +405061,134.57,72.691 +405062,134.07,71.267 +405063,133.61,69.833 +405064,133.18,68.392 +405065,133.17,72.725 +405066,132.73,71.293 +405067,132.32,69.851 +405068,131.94,68.401 +405069,131.78,72.758 +405070,131.39,71.318 +405071,131.03,69.869 +405072,130.7,68.412 +405073,130.39,72.79 +405074,130.05,71.343 +405075,129.74,69.887 +405076,129.46,68.423 +405077,128.99,72.82 +405078,128.7,71.368 +405079,128.45,69.906 +405080,128.22,68.436 +405081,127.6,72.85 +405082,127.36,71.392 +405083,127.15,69.925 +405084,126.98,68.449 +405085,126.2,72.878 +405086,126.02,71.416 +405087,125.86,69.944 +405088,125.74,68.464 +405089,124.81,72.905 +405090,124.67,71.44 +405091,124.57,69.964 +405092,124.5,68.48 +405093,123.41,72.931 +405094,123.33,71.463 +405095,123.28,69.985 +405096,123.26,68.498 +405097,122.02,72.956 +405098,121.99,71.485 +405099,121.99,70.005 +405100,122.02,68.517 +405101,120.63,72.979 +405102,120.64,71.508 +405103,120.7,70.026 +405104,120.79,68.536 +405105,119.23,73.001 +405106,119.3,71.53 +405107,119.41,70.048 +405108,119.55,68.557 +405109,117.84,73.023 +405110,117.96,71.551 +405111,118.11,70.07 +405112,118.31,68.58 +405113,116.44,73.043 +405114,116.62,71.572 +405115,116.82,70.092 +405116,117.07,68.603 +405117,115.05,73.061 +405118,115.27,71.593 +405119,115.53,70.115 +405120,115.83,68.628 +405121,113.66,73.079 +405122,113.93,71.613 +405123,114.24,70.138 +405124,114.59,68.654 +405125,112.26,73.095 +405126,112.59,71.633 +405127,112.95,70.161 +405128,113.35,68.681 +405129,110.87,73.111 +405130,111.24,71.653 +405131,111.66,70.185 +405132,112.11,68.709 +405133,109.48,73.125 +405134,109.9,71.672 +405135,110.36,70.21 +405136,110.87,68.739 +405137,108.09,73.138 +405138,108.56,71.691 +405139,109.07,70.234 +405140,109.63,68.77 +405141,106.7,73.15 +405142,107.22,71.709 +405143,107.78,70.259 +405144,108.39,68.802 +405145,105.31,73.16 +405146,105.87,71.727 +405147,106.49,70.285 +405148,107.15,68.835 +405149,103.91,73.17 +405150,104.53,71.745 +405151,105.19,70.311 +405152,105.91,68.869 +405153,102.52,73.178 +405154,103.19,71.762 +405155,103.9,70.337 +405156,104.67,68.905 +405157,101.14,73.185 +405158,101.85,71.779 +405159,102.61,70.364 +405160,103.42,68.942 +405161,99.747,73.191 +405162,100.51,71.795 +405163,101.32,70.391 +405164,102.18,68.979 +405165,98.359,73.196 +405166,99.165,71.811 +405167,100.02,70.418 +405168,100.94,69.018 +405169,96.972,73.2 +405170,97.823,71.827 +405171,98.728,70.446 +405172,99.691,69.059 +405173,95.586,73.203 +405174,96.483,71.842 +405175,97.434,70.474 +405176,98.445,69.1 +405177,94.2,73.205 +405178,95.142,71.857 +405179,96.14,70.502 +405180,97.199,69.142 +405181,92.815,73.205 +405182,93.801,71.872 +405183,94.846,70.531 +405184,95.952,69.186 +405185,91.431,73.205 +405186,92.461,71.886 +405187,93.551,70.56 +405188,94.704,69.23 +405189,90.047,73.203 +405190,91.121,71.9 +405191,92.256,70.59 +405192,93.456,69.276 +405193,88.665,73.201 +405194,89.782,71.913 +405195,90.96,70.62 +405196,92.206,69.323 +405197,87.284,73.197 +405198,88.442,71.926 +405199,89.664,70.65 +405200,90.956,69.371 +405201,85.903,73.192 +405202,87.103,71.939 +405203,88.368,70.681 +405204,89.704,69.42 +405205,84.524,73.187 +405206,85.764,71.952 +405207,87.072,70.712 +405208,88.452,69.47 +405209,83.145,73.18 +405210,84.426,71.964 +405211,85.775,70.743 +405212,87.198,69.521 +405213,81.767,73.172 +405214,83.088,71.976 +405215,84.478,70.775 +405216,85.943,69.572 +405217,80.391,73.164 +405218,81.75,71.987 +405219,83.18,70.807 +405220,84.688,69.625 +405221,79.016,73.154 +405222,80.413,71.998 +405223,81.882,70.839 +405224,83.431,69.679 +405225,77.641,73.144 +405226,79.076,72.009 +405227,80.584,70.872 +405228,82.173,69.734 +405229,76.268,73.133 +405230,77.739,72.02 +405231,79.285,70.905 +405232,80.913,69.79 +405233,74.896,73.12 +405234,76.403,72.03 +405235,77.986,70.938 +405236,79.653,69.846 +405237,73.525,73.107 +405238,75.067,72.04 +405239,76.686,70.971 +405240,78.391,69.904 +405241,72.156,73.093 +405242,73.732,72.05 +405243,75.386,71.005 +405244,77.128,69.962 +405245,70.787,73.078 +405246,72.397,72.059 +405247,74.086,71.039 +405248,75.863,70.021 +405249,69.42,73.063 +405250,71.062,72.068 +405251,72.785,71.074 +405252,74.597,70.082 +405253,68.054,73.046 +405254,69.728,72.077 +405255,71.483,71.108 +405256,73.33,70.142 +405257,66.69,73.029 +405258,68.394,72.086 +405259,70.182,71.143 +405260,72.061,70.204 +405261,65.326,73.011 +405262,67.061,72.094 +405263,68.879,71.178 +405264,70.791,70.266 +405265,63.964,72.992 +405266,65.728,72.102 +405267,67.576,71.214 +405268,69.519,70.33 +405269,62.604,72.973 +405270,64.395,72.11 +405271,66.273,71.249 +405272,68.246,70.393 +405273,61.245,72.953 +405274,63.063,72.117 +405275,64.969,71.285 +405276,66.971,70.458 +405277,59.887,72.932 +405278,61.732,72.125 +405279,63.665,71.321 +405280,65.695,70.523 +405281,58.531,72.911 +405282,60.401,72.132 +405283,62.36,71.357 +405284,64.417,70.589 +405285,57.176,72.889 +405286,59.07,72.139 +405287,61.054,71.394 +405288,63.138,70.655 +405289,55.822,72.866 +405290,57.74,72.146 +405291,59.748,71.431 +405292,61.857,70.722 +405293,54.47,72.843 +405294,56.411,72.152 +405295,58.442,71.467 +405296,60.574,70.79 +405297,53.12,72.819 +405298,55.082,72.159 +405299,57.134,71.505 +405300,59.29,70.858 +405301,51.771,72.794 +405302,53.753,72.165 +405303,55.827,71.542 +405304,58.004,70.927 +405305,50.423,72.769 +405306,52.425,72.171 +405307,54.519,71.579 +405308,56.716,70.996 +405309,49.077,72.744 +405310,51.097,72.177 +405311,53.21,71.617 +405312,55.427,71.066 +405313,47.733,72.718 +405314,49.77,72.183 +405315,51.901,71.654 +405316,54.135,71.136 +405317,46.39,72.692 +405318,48.444,72.188 +405319,50.591,71.692 +405320,52.843,71.206 +405321,45.049,72.665 +405322,47.118,72.194 +405323,49.28,71.73 +405324,51.548,71.277 +405325,43.709,72.638 +405326,45.792,72.199 +405327,47.969,71.768 +405328,50.252,71.348 +405329,42.371,72.611 +405330,44.467,72.204 +405331,46.658,71.807 +405332,48.954,71.42 +405333,41.034,72.583 +405334,43.143,72.209 +405335,45.345,71.845 +405336,47.654,71.491 +405337,39.699,72.555 +405338,41.819,72.214 +405339,44.032,71.883 +405340,46.352,71.564 +405341,38.366,72.526 +405342,40.496,72.219 +405343,42.719,71.922 +405344,45.049,71.636 +405345,37.034,72.498 +405346,39.173,72.224 +405347,41.405,71.961 +405348,43.743,71.708 +405349,35.704,72.469 +405350,37.851,72.229 +405351,40.091,71.999 +405352,42.436,71.781 +405353,34.376,72.44 +405354,36.529,72.234 +405355,38.775,72.038 +405356,41.127,71.854 +405357,33.049,72.41 +405358,35.208,72.238 +405359,37.46,72.077 +405360,39.817,71.927 +405361,31.724,72.381 +405362,33.888,72.243 +405363,36.143,72.116 +405364,38.504,72 +405365,30.4,72.352 +405366,32.568,72.248 +405367,34.826,72.154 +405368,37.19,72.074 +405369,29.078,72.322 +405370,31.248,72.252 +405371,33.509,72.193 +405372,35.874,72.147 +405373,27.758,72.292 +405374,29.929,72.257 +405375,32.19,72.232 +405376,34.556,72.22 +405377,26.439,72.263 +405378,28.611,72.261 +405379,30.872,72.271 +405380,33.236,72.294 +405381,25.122,72.233 +405382,27.293,72.266 +405383,29.552,72.31 +405384,31.914,72.367 +405385,23.807,72.203 +405386,25.976,72.27 +405387,28.232,72.349 +405388,30.591,72.44 +405389,22.493,72.173 +405390,24.659,72.275 +405391,26.912,72.388 +405392,29.266,72.513 +405393,21.181,72.144 +405394,23.343,72.279 +405395,25.591,72.426 +405396,27.939,72.586 +405397,19.871,72.114 +405398,22.027,72.284 +405399,24.269,72.465 +405400,26.61,72.659 +405401,18.562,72.085 +405402,20.712,72.289 +405403,22.947,72.504 +405404,25.279,72.732 +405405,17.255,72.056 +405406,19.397,72.293 +405407,21.624,72.543 +405408,23.947,72.805 +405409,15.949,72.027 +405410,18.083,72.298 +405411,20.3,72.581 +405412,22.613,72.877 +405413,14.646,71.998 +405414,16.77,72.303 +405415,18.976,72.62 +405416,21.277,72.949 +405417,13.343,71.969 +405418,15.457,72.308 +405419,17.651,72.658 +405420,19.939,73.021 +405421,12.043,71.941 +405422,14.145,72.313 +405423,16.326,72.697 +405424,18.6,73.092 +405425,10.744,71.913 +405426,12.833,72.318 +405427,15,72.735 +405428,17.259,73.163 +405429,9.4462,71.885 +405430,11.521,72.324 +405431,13.674,72.773 +405432,15.916,73.234 +405433,8.1503,71.858 +405434,10.211,72.329 +405435,12.347,72.811 +405436,14.571,73.305 +405437,6.856,71.831 +405438,8.9003,72.334 +405439,11.019,72.849 +405440,13.225,73.375 +405441,5.5633,71.804 +405442,7.5905,72.34 +405443,9.6912,72.887 +405444,11.877,73.444 +405445,4.2721,71.778 +405446,6.2812,72.346 +405447,8.3625,72.924 +405448,10.528,73.513 +405449,2.9824,71.752 +405450,4.9724,72.352 +405451,7.0334,72.962 +405452,9.1769,73.582 +405453,1.6943,71.727 +405454,3.6641,72.358 +405455,5.7036,72.999 +405456,7.8242,73.65 +405457,0.40764,71.702 +405458,2.3563,72.364 +405459,4.3734,73.036 +405460,6.47,73.718 +405461,359.12,71.678 +405462,1.049,72.371 +405463,3.0426,73.073 +405464,5.1142,73.785 +405465,357.84,71.654 +405466,359.74,72.377 +405467,1.7113,73.11 +405468,3.7568,73.851 +405469,356.56,71.631 +405470,358.44,72.384 +405471,0.37949,73.146 +405472,2.3979,73.917 +405473,355.28,71.609 +405474,357.13,72.391 +405475,359.05,73.183 +405476,1.0376,73.982 +405477,354,71.587 +405478,355.82,72.399 +405479,357.71,73.219 +405480,359.68,74.047 +405481,352.72,71.566 +405482,354.52,72.406 +405483,356.38,73.255 +405484,358.31,74.111 +405485,351.44,71.545 +405486,353.22,72.414 +405487,355.05,73.29 +405488,356.95,74.174 +405489,350.17,71.525 +405490,351.91,72.422 +405491,353.71,73.326 +405492,355.58,74.237 +405493,348.89,71.506 +405494,350.61,72.43 +405495,352.38,73.361 +405496,354.21,74.298 +405497,347.62,71.488 +405498,349.3,72.439 +405499,351.04,73.396 +405500,352.85,74.359 +405501,346.35,71.47 +405502,348,72.447 +405503,349.71,73.431 +405504,351.48,74.42 +405505,345.08,71.454 +405506,346.7,72.456 +405507,348.37,73.465 +405508,350.1,74.479 +405509,343.81,71.437 +405510,345.4,72.466 +405511,347.03,73.499 +405512,348.73,74.538 +405513,342.54,71.422 +405514,344.1,72.475 +405515,345.7,73.533 +405516,347.36,74.596 +405517,341.28,71.408 +405518,342.79,72.485 +405519,344.36,73.567 +405520,345.98,74.652 +405521,340.01,71.395 +405522,341.49,72.495 +405523,343.02,73.6 +405524,344.61,74.709 +405525,338.75,71.382 +405526,340.19,72.506 +405527,341.68,73.633 +405528,343.23,74.764 +405529,337.49,71.37 +405530,338.89,72.516 +405531,340.35,73.666 +405532,341.85,74.818 +405533,336.22,71.36 +405534,337.59,72.527 +405535,339.01,73.698 +405536,340.47,74.871 +405537,334.96,71.35 +405538,336.29,72.539 +405539,337.67,73.73 +405540,339.09,74.924 +405541,333.7,71.341 +405542,334.99,72.55 +405543,336.33,73.762 +405544,337.71,74.975 +405545,332.44,71.333 +405546,333.7,72.562 +405547,334.99,73.794 +405548,336.33,75.026 +405549,331.19,71.326 +405550,332.4,72.575 +405551,333.65,73.825 +405552,334.94,75.075 +405553,329.93,71.321 +405554,331.1,72.587 +405555,332.31,73.855 +405556,333.56,75.124 +405557,328.67,71.316 +405558,329.8,72.6 +405559,330.97,73.886 +405560,332.17,75.171 +405561,327.42,71.312 +405562,328.5,72.614 +405563,329.63,73.916 +405564,330.79,75.218 +405565,326.17,71.309 +405566,327.21,72.628 +405567,328.28,73.946 +405568,329.4,75.263 +405569,324.91,71.308 +405570,325.91,72.642 +405571,326.94,73.975 +405572,328.01,75.307 +405573,323.66,71.307 +405574,324.61,72.656 +405575,325.6,74.004 +405576,326.63,75.351 +405577,322.41,71.308 +405578,323.32,72.671 +405579,324.26,74.033 +405580,325.24,75.393 +405581,321.16,71.31 +405582,322.02,72.686 +405583,322.92,74.061 +405584,323.85,75.434 +405585,319.91,71.313 +405586,320.72,72.702 +405587,321.57,74.089 +405588,322.46,75.474 +405589,318.66,71.317 +405590,319.43,72.718 +405591,320.23,74.117 +405592,321.07,75.513 +405593,317.41,71.322 +405594,318.13,72.734 +405595,318.89,74.144 +405596,319.68,75.551 +405597,316.16,71.328 +405598,316.84,72.751 +405599,317.54,74.171 +405600,318.28,75.588 +405601,314.91,71.335 +405602,315.54,72.768 +405603,316.2,74.198 +405604,316.89,75.623 +405605,313.67,71.344 +405606,314.24,72.785 +405607,314.86,74.224 +405608,315.5,75.658 +405609,312.42,71.354 +405610,312.95,72.803 +405611,313.51,74.249 +405612,314.11,75.691 +405613,311.17,71.365 +405614,311.65,72.822 +405615,312.17,74.275 +405616,312.71,75.723 +405617,309.93,71.377 +405618,310.36,72.84 +405619,310.82,74.3 +405620,311.32,75.754 +405621,308.68,71.39 +405622,309.06,72.859 +405623,309.48,74.324 +405624,309.93,75.784 +405625,307.44,71.405 +405626,307.77,72.879 +405627,308.14,74.349 +405628,308.53,75.813 +405629,306.19,71.421 +405630,306.47,72.899 +405631,306.79,74.372 +405632,307.14,75.84 +405633,304.95,71.438 +405634,305.18,72.919 +405635,305.45,74.396 +405636,305.74,75.867 +405637,303.7,71.456 +405638,303.89,72.94 +405639,304.1,74.419 +405640,304.35,75.892 +405641,302.46,71.476 +405642,302.59,72.961 +405643,302.76,74.441 +405644,302.96,75.916 +405645,301.21,71.496 +405646,301.3,72.982 +405647,301.41,74.464 +405648,301.56,75.939 +405649,299.97,71.518 +405650,300,73.004 +405651,300.07,74.486 +405652,300.17,75.961 +405653,298.72,71.541 +405654,298.71,73.027 +405655,298.72,74.507 +405656,298.77,75.981 +405657,297.48,71.566 +405658,297.41,73.049 +405659,297.38,74.528 +405660,297.38,76.001 +405661,296.24,71.591 +405662,296.12,73.072 +405663,296.03,74.549 +405664,295.98,76.019 +405665,294.99,71.618 +405666,294.82,73.096 +405667,294.69,74.569 +405668,294.59,76.036 +405669,293.75,71.646 +405670,293.53,73.12 +405671,293.34,74.589 +405672,293.19,76.052 +405673,292.5,71.675 +405674,292.23,73.144 +405675,292,74.608 +405676,291.8,76.066 +405677,291.26,71.706 +405678,290.94,73.169 +405679,290.65,74.627 +405680,290.41,76.08 +405681,290.01,71.737 +405682,289.64,73.194 +405683,289.31,74.646 +405684,289.01,76.092 +405685,288.77,71.77 +405686,288.35,73.22 +405687,287.97,74.664 +405688,287.62,76.103 +405689,287.52,71.804 +405690,287.05,73.245 +405691,286.62,74.682 +405692,286.23,76.114 +405693,286.28,71.84 +405694,285.76,73.272 +405695,285.28,74.7 +405696,284.84,76.123 +405697,285.03,71.876 +405698,284.46,73.298 +405699,283.93,74.717 +405700,283.44,76.13 +405701,283.78,71.914 +405702,283.17,73.326 +405703,282.59,74.734 +405704,282.05,76.137 +405705,282.54,71.952 +405706,281.87,73.353 +405707,281.25,74.75 +405708,280.66,76.143 +405709,281.29,71.992 +405710,280.57,73.381 +405711,279.9,74.767 +405712,279.27,76.147 +405713,280.04,72.033 +405714,279.28,73.409 +405715,278.56,74.782 +405716,277.88,76.151 +405717,278.79,72.075 +405718,277.98,73.438 +405719,277.22,74.798 +405720,276.49,76.153 +405721,277.54,72.119 +405722,276.68,73.467 +405723,275.87,74.813 +405724,275.1,76.154 +405725,276.29,72.163 +405726,275.39,73.496 +405727,274.53,74.827 +405728,273.72,76.154 +405729,275.04,72.209 +405730,274.09,73.526 +405731,273.19,74.841 +405732,272.33,76.153 +405733,273.79,72.255 +405734,272.79,73.556 +405735,271.84,74.855 +405736,270.94,76.152 +405737,272.54,72.303 +405738,271.49,73.587 +405739,270.5,74.869 +405740,269.56,76.149 +405741,271.29,72.352 +405742,270.2,73.617 +405743,269.16,74.882 +405744,268.17,76.145 +405745,270.03,72.402 +405746,268.9,73.649 +405747,267.82,74.895 +405748,266.79,76.14 +405749,268.78,72.453 +405750,267.6,73.68 +405751,266.48,74.908 +405752,265.41,76.134 +405753,267.52,72.504 +405754,266.3,73.712 +405755,265.14,74.92 +405756,264.02,76.127 +405757,266.27,72.557 +405758,265,73.744 +405759,263.79,74.932 +405760,262.64,76.119 +405761,265.01,72.611 +405762,263.7,73.777 +405763,262.45,74.943 +405764,261.26,76.11 +405765,263.75,72.666 +405766,262.4,73.809 +405767,261.11,74.955 +405768,259.88,76.1 +405769,262.49,72.722 +405770,261.1,73.842 +405771,259.77,74.966 +405772,258.5,76.089 +405773,261.23,72.778 +405774,259.8,73.876 +405775,258.43,74.977 +405776,257.13,76.078 +405777,259.97,72.836 +405778,258.5,73.91 +405779,257.1,74.987 +405780,255.75,76.065 +405781,258.71,72.894 +405782,257.2,73.944 +405783,255.76,74.997 +405784,254.37,76.052 +405785,257.44,72.954 +405786,255.9,73.978 +405787,254.42,75.007 +405788,253,76.038 +405789,256.18,73.014 +405790,254.59,74.013 +405791,253.08,75.016 +405792,251.63,76.023 +405793,254.91,73.075 +405794,253.29,74.048 +405795,251.74,75.026 +405796,250.26,76.007 +405797,253.64,73.137 +405798,251.99,74.083 +405799,250.4,75.035 +405800,248.88,75.99 +405801,252.37,73.199 +405802,250.69,74.118 +405803,249.07,75.044 +405804,247.51,75.973 +405805,251.1,73.263 +405806,249.38,74.154 +405807,247.73,75.052 +405808,246.15,75.955 +405809,249.83,73.327 +405810,248.08,74.19 +405811,246.39,75.06 +405812,244.78,75.936 +405813,248.56,73.391 +405814,246.77,74.226 +405815,245.06,75.069 +405816,243.41,75.917 +405817,247.29,73.457 +405818,245.47,74.262 +405819,243.72,75.076 +405820,242.05,75.896 +405821,246.01,73.523 +405822,244.16,74.299 +405823,242.39,75.084 +405824,240.69,75.875 +405825,244.73,73.59 +405826,242.85,74.336 +405827,241.05,75.091 +405828,239.32,75.854 +405829,243.46,73.657 +405830,241.55,74.373 +405831,239.72,75.099 +405832,237.96,75.832 +405833,242.18,73.725 +405834,240.24,74.41 +405835,238.39,75.106 +405836,236.6,75.809 +405837,240.89,73.794 +405838,238.93,74.448 +405839,237.05,75.113 +405840,235.25,75.786 +405841,239.61,73.863 +405842,237.62,74.485 +405843,235.72,75.119 +405844,233.89,75.762 +405845,238.33,73.933 +405846,236.32,74.523 +405847,234.39,75.126 +405848,232.53,75.737 +405849,237.04,74.003 +405850,235.01,74.561 +405851,233.06,75.132 +405852,231.18,75.713 +405853,235.75,74.073 +405854,233.7,74.599 +405855,231.72,75.138 +405856,229.83,75.687 +405857,234.46,74.144 +405858,232.39,74.638 +405859,230.39,75.144 +405860,228.48,75.661 +405861,233.17,74.216 +405862,231.07,74.676 +405863,229.06,75.15 +405864,227.13,75.635 +405865,231.88,74.288 +405866,229.76,74.715 +405867,227.73,75.156 +405868,225.78,75.609 +405869,230.59,74.36 +405870,228.45,74.754 +405871,226.4,75.162 +405872,224.43,75.582 +405873,229.29,74.432 +405874,227.14,74.792 +405875,225.07,75.167 +405876,223.09,75.554 +405877,227.99,74.505 +405878,225.83,74.831 +405879,223.75,75.173 +405880,221.75,75.527 +405881,226.7,74.578 +405882,224.51,74.87 +405883,222.42,75.178 +405884,220.4,75.499 +405885,225.39,74.652 +405886,223.2,74.91 +405887,221.09,75.183 +405888,219.06,75.47 +405889,224.09,74.725 +405890,221.88,74.949 +405891,219.76,75.188 +405892,217.73,75.442 +405893,222.79,74.799 +405894,220.57,74.988 +405895,218.44,75.194 +405896,216.39,75.413 +405897,221.48,74.873 +405898,219.25,75.027 +405899,217.11,75.199 +405900,215.05,75.384 +405901,220.17,74.947 +405902,217.94,75.067 +405903,215.79,75.204 +405904,213.72,75.355 +405905,218.87,75.021 +405906,216.62,75.106 +405907,214.46,75.209 +405908,212.39,75.326 +405909,217.55,75.095 +405910,215.3,75.146 +405911,213.14,75.214 +405912,211.06,75.297 +405913,216.24,75.17 +405914,213.98,75.185 +405915,211.81,75.219 +405916,209.73,75.268 +405917,214.93,75.244 +405918,212.66,75.225 +405919,210.49,75.224 +405920,208.4,75.238 +405921,213.61,75.318 +405922,211.34,75.264 +405923,209.17,75.229 +405924,207.07,75.209 +405925,212.29,75.392 +405926,210.02,75.304 +405927,207.85,75.234 +405928,205.75,75.179 +405929,210.97,75.467 +405930,208.7,75.343 +405931,206.52,75.239 +405932,204.43,75.15 +405933,209.65,75.541 +405934,207.38,75.383 +405935,205.2,75.244 +405936,203.1,75.121 +405937,208.33,75.615 +405938,206.06,75.422 +405939,203.88,75.249 +405940,201.78,75.091 +405941,207,75.688 +405942,204.74,75.462 +405943,202.56,75.254 +405944,200.47,75.062 +405945,205.68,75.762 +405946,203.42,75.501 +405947,201.24,75.259 +405948,199.15,75.033 +405949,204.35,75.835 +405950,202.09,75.54 +405951,199.92,75.264 +405952,197.83,75.004 +405953,203.02,75.909 +405954,200.77,75.58 +405955,198.61,75.269 +405956,196.52,74.976 +405957,201.69,75.982 +405958,199.44,75.619 +405959,197.29,75.275 +405960,195.21,74.947 +405961,200.35,76.054 +405962,198.12,75.658 +405963,195.97,75.28 +405964,193.9,74.919 +405965,199.02,76.127 +405966,196.79,75.697 +405967,194.65,75.286 +405968,192.59,74.891 +405969,197.68,76.199 +405970,195.47,75.736 +405971,193.34,75.291 +405972,191.28,74.864 +405973,196.34,76.27 +405974,194.14,75.775 +405975,192.02,75.297 +405976,189.98,74.837 +405977,195,76.342 +405978,192.81,75.813 +405979,190.71,75.303 +405980,188.67,74.81 +405981,193.66,76.412 +405982,191.48,75.852 +405983,189.39,75.309 +405984,187.37,74.783 +405985,192.32,76.483 +405986,190.15,75.89 +405987,188.08,75.315 +405988,186.07,74.757 +405989,190.97,76.553 +405990,188.83,75.928 +405991,186.76,75.322 +405992,184.77,74.731 +405993,189.62,76.622 +405994,187.5,75.966 +405995,185.45,75.328 +405996,183.47,74.706 +405997,188.28,76.691 +405998,186.17,76.004 +405999,184.14,75.335 +406000,182.18,74.681 +406001,186.93,76.76 +406002,184.83,76.042 +406003,182.82,75.342 +406004,180.88,74.657 +406005,185.57,76.827 +406006,183.5,76.08 +406007,181.51,75.349 +406008,179.59,74.634 +406009,184.22,76.895 +406010,182.17,76.117 +406011,180.2,75.356 +406012,178.3,74.61 +406013,182.87,76.961 +406014,180.84,76.154 +406015,178.89,75.364 +406016,177.01,74.588 +406017,181.51,77.027 +406018,179.51,76.191 +406019,177.58,75.371 +406020,175.72,74.566 +406021,180.15,77.093 +406022,178.17,76.228 +406023,176.27,75.379 +406024,174.43,74.545 +406025,178.79,77.157 +406026,176.84,76.265 +406027,174.96,75.387 +406028,173.14,74.524 +406029,177.43,77.221 +406030,175.5,76.301 +406031,173.65,75.396 +406032,171.86,74.504 +406033,176.07,77.284 +406034,174.17,76.337 +406035,172.34,75.404 +406036,170.57,74.485 +406037,174.71,77.347 +406038,172.83,76.373 +406039,171.03,75.413 +406040,169.29,74.467 +406041,173.34,77.408 +406042,171.5,76.408 +406043,169.73,75.422 +406044,168.01,74.449 +406045,171.98,77.469 +406046,170.16,76.444 +406047,168.42,75.432 +406048,166.73,74.432 +406049,170.61,77.529 +406050,168.83,76.479 +406051,167.11,75.441 +406052,165.45,74.416 +406053,169.24,77.589 +406054,167.49,76.514 +406055,165.8,75.451 +406056,164.18,74.401 +406057,167.87,77.647 +406058,166.15,76.548 +406059,164.5,75.461 +406060,162.9,74.386 +406061,166.5,77.704 +406062,164.81,76.582 +406063,163.19,75.472 +406064,161.63,74.373 +406065,165.12,77.761 +406066,163.47,76.616 +406067,161.89,75.483 +406068,160.35,74.36 +406069,163.75,77.817 +406070,162.14,76.65 +406071,160.58,75.494 +406072,159.08,74.348 +406073,162.38,77.872 +406074,160.8,76.683 +406075,159.28,75.505 +406076,157.81,74.337 +406077,161,77.925 +406078,159.46,76.716 +406079,157.97,75.517 +406080,156.54,74.327 +406081,159.62,77.978 +406082,158.12,76.749 +406083,156.67,75.529 +406084,155.27,74.318 +406085,158.24,78.03 +406086,156.78,76.782 +406087,155.36,75.542 +406088,154,74.31 +406089,156.86,78.081 +406090,155.44,76.814 +406091,154.06,75.554 +406092,152.73,74.303 +406093,155.48,78.131 +406094,154.09,76.845 +406095,152.76,75.567 +406096,151.47,74.297 +406097,154.1,78.18 +406098,152.75,76.877 +406099,151.46,75.581 +406100,150.2,74.292 +406101,152.72,78.228 +406102,151.41,76.908 +406103,150.15,75.595 +406104,148.94,74.288 +406105,151.34,78.275 +406106,150.07,76.939 +406107,148.85,75.609 +406108,147.68,74.286 +406109,149.95,78.321 +406110,148.73,76.969 +406111,147.55,75.623 +406112,146.42,74.284 +406113,148.57,78.366 +406114,147.38,76.999 +406115,146.25,75.638 +406116,145.15,74.283 +406117,147.18,78.409 +406118,146.04,77.029 +406119,144.95,75.653 +406120,143.89,74.283 +406121,145.79,78.452 +406122,144.7,77.058 +406123,143.65,75.669 +406124,142.63,74.285 +406125,144.41,78.493 +406126,143.35,77.087 +406127,142.34,75.685 +406128,141.38,74.288 +406129,143.02,78.534 +406130,142.01,77.116 +406131,141.04,75.701 +406132,140.12,74.291 +406133,141.63,78.573 +406134,140.67,77.144 +406135,139.74,75.718 +406136,138.86,74.296 +406137,140.24,78.611 +406138,139.32,77.172 +406139,138.44,75.735 +406140,137.6,74.302 +406141,138.85,78.648 +406142,137.98,77.199 +406143,137.14,75.753 +406144,136.35,74.31 +406145,137.46,78.684 +406146,136.63,77.226 +406147,135.84,75.771 +406148,135.09,74.318 +406149,136.07,78.719 +406150,135.29,77.253 +406151,134.54,75.789 +406152,133.84,74.328 +406153,134.68,78.752 +406154,133.94,77.279 +406155,133.24,75.808 +406156,132.58,74.339 +406157,133.28,78.785 +406158,132.6,77.305 +406159,131.94,75.827 +406160,131.33,74.351 +406161,131.89,78.816 +406162,131.25,77.331 +406163,130.65,75.847 +406164,130.08,74.364 +406165,130.5,78.846 +406166,129.9,77.356 +406167,129.35,75.867 +406168,128.82,74.378 +406169,129.1,78.875 +406170,128.56,77.381 +406171,128.05,75.887 +406172,127.57,74.394 +406173,127.71,78.903 +406174,127.21,77.405 +406175,126.75,75.908 +406176,126.32,74.411 +406177,126.32,78.929 +406178,125.87,77.429 +406179,125.45,75.929 +406180,125.07,74.429 +406181,124.92,78.955 +406182,124.52,77.453 +406183,124.15,75.95 +406184,123.82,74.448 +406185,123.53,78.979 +406186,123.17,77.476 +406187,122.85,75.972 +406188,122.56,74.469 +406189,122.13,79.002 +406190,121.83,77.499 +406191,121.55,75.995 +406192,121.31,74.491 +406193,120.74,79.024 +406194,120.48,77.521 +406195,120.26,76.018 +406196,120.06,74.514 +406197,119.34,79.044 +406198,119.13,77.543 +406199,118.96,76.041 +406200,118.81,74.538 +406201,117.95,79.064 +406202,117.79,77.565 +406203,117.66,76.065 +406204,117.56,74.564 +406205,116.55,79.082 +406206,116.44,77.586 +406207,116.36,76.089 +406208,116.31,74.591 +406209,115.16,79.099 +406210,115.09,77.607 +406211,115.06,76.113 +406212,115.06,74.619 +406213,113.76,79.115 +406214,113.75,77.628 +406215,113.76,76.138 +406216,113.81,74.648 +406217,112.37,79.13 +406218,112.4,77.648 +406219,112.46,76.163 +406220,112.56,74.678 +406221,110.97,79.143 +406222,111.05,77.667 +406223,111.17,76.189 +406224,111.31,74.71 +406225,109.58,79.156 +406226,109.71,77.687 +406227,109.87,76.215 +406228,110.06,74.743 +406229,108.19,79.167 +406230,108.36,77.706 +406231,108.57,76.242 +406232,108.81,74.777 +406233,106.79,79.177 +406234,107.01,77.724 +406235,107.27,76.269 +406236,107.56,74.812 +406237,105.4,79.186 +406238,105.67,77.742 +406239,105.97,76.296 +406240,106.31,74.849 +406241,104,79.194 +406242,104.32,77.76 +406243,104.67,76.324 +406244,105.05,74.887 +406245,102.61,79.201 +406246,102.97,77.777 +406247,103.37,76.352 +406248,103.8,74.926 +406249,101.22,79.206 +406250,101.63,77.794 +406251,102.07,76.38 +406252,102.55,74.966 +406253,99.825,79.211 +406254,100.28,77.811 +406255,100.77,76.409 +406256,101.3,75.007 +406257,98.433,79.214 +406258,98.935,77.827 +406259,99.473,76.439 +406260,100.05,75.05 +406261,97.042,79.216 +406262,97.59,77.843 +406263,98.173,76.468 +406264,98.792,75.093 +406265,95.65,79.218 +406266,96.244,77.859 +406267,96.873,76.498 +406268,97.539,75.138 +406269,94.26,79.218 +406270,94.898,77.874 +406271,95.573,76.529 +406272,96.284,75.184 +406273,92.87,79.217 +406274,93.553,77.889 +406275,94.272,76.56 +406276,95.03,75.231 +406277,91.481,79.215 +406278,92.207,77.903 +406279,92.971,76.591 +406280,93.774,75.279 +406281,90.092,79.212 +406282,90.862,77.917 +406283,91.671,76.622 +406284,92.518,75.328 +406285,88.704,79.208 +406286,89.517,77.931 +406287,90.369,76.654 +406288,91.262,75.379 +406289,87.317,79.203 +406290,88.173,77.945 +406291,89.068,76.686 +406292,90.004,75.43 +406293,85.93,79.197 +406294,86.828,77.958 +406295,87.766,76.719 +406296,88.746,75.483 +406297,84.544,79.19 +406298,85.484,77.97 +406299,86.465,76.752 +406300,87.488,75.536 +406301,83.159,79.182 +406302,84.14,77.983 +406303,85.162,76.785 +406304,86.228,75.591 +406305,81.775,79.173 +406306,82.796,77.995 +406307,83.86,76.819 +406308,84.968,75.646 +406309,80.391,79.163 +406310,81.453,78.007 +406311,82.557,76.853 +406312,83.706,75.702 +406313,79.009,79.152 +406314,80.109,78.019 +406315,81.254,76.887 +406316,82.444,75.76 +406317,77.627,79.14 +406318,78.767,78.03 +406319,79.95,76.922 +406320,81.181,75.818 +406321,76.247,79.128 +406322,77.424,78.041 +406323,78.647,76.957 +406324,79.917,75.878 +406325,74.867,79.114 +406326,76.082,78.051 +406327,77.343,76.992 +406328,78.652,75.938 +406329,73.488,79.1 +406330,74.74,78.062 +406331,76.038,77.027 +406332,77.386,75.999 +406333,72.11,79.085 +406334,73.398,78.072 +406335,74.733,77.063 +406336,76.119,76.061 +406337,70.734,79.069 +406338,72.056,78.082 +406339,73.428,77.099 +406340,74.851,76.124 +406341,69.358,79.052 +406342,70.715,78.091 +406343,72.122,77.136 +406344,73.582,76.187 +406345,67.983,79.035 +406346,69.375,78.101 +406347,70.816,77.172 +406348,72.312,76.252 +406349,66.61,79.017 +406350,68.034,78.11 +406351,69.51,77.209 +406352,71.04,76.317 +406353,65.238,78.998 +406354,66.694,78.119 +406355,68.203,77.246 +406356,69.768,76.383 +406357,63.866,78.978 +406358,65.355,78.127 +406359,66.896,77.284 +406360,68.494,76.449 +406361,62.496,78.958 +406362,64.015,78.136 +406363,65.588,77.321 +406364,67.219,76.517 +406365,61.128,78.937 +406366,62.676,78.144 +406367,64.28,77.359 +406368,65.943,76.585 +406369,59.76,78.915 +406370,61.338,78.152 +406371,62.972,77.397 +406372,64.665,76.654 +406373,58.394,78.893 +406374,60,78.159 +406375,61.663,77.435 +406376,63.386,76.723 +406377,57.028,78.87 +406378,58.662,78.167 +406379,60.353,77.474 +406380,62.106,76.793 +406381,55.665,78.847 +406382,57.325,78.174 +406383,59.043,77.513 +406384,60.824,76.863 +406385,54.302,78.823 +406386,55.988,78.182 +406387,57.733,77.552 +406388,59.541,76.935 +406389,52.941,78.798 +406390,54.652,78.189 +406391,56.422,77.591 +406392,58.257,77.006 +406393,51.581,78.773 +406394,53.316,78.196 +406395,55.111,77.63 +406396,56.971,77.078 +406397,50.222,78.748 +406398,51.98,78.202 +406399,53.799,77.669 +406400,55.684,77.151 +406401,48.865,78.722 +406402,50.645,78.209 +406403,52.487,77.709 +406404,54.395,77.224 +406405,47.509,78.695 +406406,49.31,78.215 +406407,51.174,77.749 +406408,53.105,77.297 +406409,46.155,78.669 +406410,47.976,78.222 +406411,49.86,77.788 +406412,51.813,77.371 +406413,44.802,78.642 +406414,46.642,78.228 +406415,48.547,77.828 +406416,50.52,77.446 +406417,43.45,78.614 +406418,45.309,78.234 +406419,47.232,77.868 +406420,49.226,77.52 +406421,42.1,78.587 +406422,43.976,78.24 +406423,45.917,77.909 +406424,47.929,77.595 +406425,40.752,78.559 +406426,42.644,78.246 +406427,44.602,77.949 +406428,46.632,77.67 +406429,39.404,78.53 +406430,41.312,78.252 +406431,43.286,77.989 +406432,45.332,77.746 +406433,38.058,78.502 +406434,39.981,78.258 +406435,41.969,78.03 +406436,44.031,77.821 +406437,36.714,78.473 +406438,38.65,78.263 +406439,40.652,78.07 +406440,42.729,77.897 +406441,35.371,78.444 +406442,37.319,78.269 +406443,39.335,78.111 +406444,41.425,77.973 +406445,34.03,78.415 +406446,35.989,78.274 +406447,38.016,78.152 +406448,40.119,78.049 +406449,32.69,78.386 +406450,34.66,78.28 +406451,36.698,78.192 +406452,38.812,78.126 +406453,31.352,78.356 +406454,33.331,78.286 +406455,35.379,78.233 +406456,37.503,78.202 +406457,30.015,78.327 +406458,32.002,78.291 +406459,34.059,78.274 +406460,36.192,78.278 +406461,28.679,78.298 +406462,30.674,78.297 +406463,32.738,78.315 +406464,34.88,78.355 +406465,27.345,78.268 +406466,29.347,78.302 +406467,31.417,78.356 +406468,33.566,78.431 +406469,26.013,78.239 +406470,28.02,78.308 +406471,30.096,78.396 +406472,32.25,78.508 +406473,24.682,78.209 +406474,26.693,78.313 +406475,28.774,78.437 +406476,30.933,78.584 +406477,23.353,78.18 +406478,25.367,78.319 +406479,27.451,78.478 +406480,29.614,78.66 +406481,22.025,78.151 +406482,24.042,78.324 +406483,26.128,78.519 +406484,28.294,78.736 +406485,20.699,78.122 +406486,22.717,78.33 +406487,24.804,78.559 +406488,26.972,78.812 +406489,19.374,78.093 +406490,21.392,78.336 +406491,23.48,78.6 +406492,25.648,78.888 +406493,18.051,78.064 +406494,20.068,78.342 +406495,22.155,78.641 +406496,24.322,78.964 +406497,16.73,78.035 +406498,18.745,78.347 +406499,20.83,78.681 +406500,22.995,79.039 +406501,15.409,78.007 +406502,17.422,78.353 +406503,19.504,78.722 +406504,21.666,79.114 +406505,14.091,77.979 +406506,16.099,78.36 +406507,18.177,78.762 +406508,20.335,79.189 +406509,12.774,77.951 +406510,14.777,78.366 +406511,16.85,78.802 +406512,19.003,79.263 +406513,11.458,77.923 +406514,13.456,78.372 +406515,15.523,78.842 +406516,17.669,79.337 +406517,10.144,77.896 +406518,12.135,78.378 +406519,14.194,78.882 +406520,16.334,79.411 +406521,8.8315,77.869 +406522,10.814,78.385 +406523,12.866,78.922 +406524,14.997,79.485 +406525,7.5204,77.843 +406526,9.4941,78.392 +406527,11.536,78.962 +406528,13.658,79.558 +406529,6.2109,77.817 +406530,8.1745,78.398 +406531,10.207,79.002 +406532,12.318,79.63 +406533,4.9027,77.791 +406534,6.8555,78.405 +406535,8.8761,79.041 +406536,10.976,79.702 +406537,3.5961,77.766 +406538,5.5369,78.412 +406539,7.5452,79.081 +406540,9.6319,79.773 +406541,2.2909,77.742 +406542,4.2187,78.42 +406543,6.2137,79.12 +406544,8.2867,79.844 +406545,0.98718,77.718 +406546,2.9011,78.427 +406547,4.8817,79.159 +406548,6.9399,79.915 +406549,359.68,77.694 +406550,1.5839,78.435 +406551,3.5491,79.198 +406552,5.5915,79.985 +406553,358.38,77.671 +406554,0.26713,78.443 +406555,2.216,79.236 +406556,4.2416,80.0538 +406557,357.08,77.649 +406558,358.95,78.451 +406559,0.88243,79.275 +406560,2.8901,80.1224 +406561,355.79,77.627 +406562,357.64,78.459 +406563,359.55,79.313 +406564,1.5371,80.1903 +406565,354.49,77.606 +406566,356.32,78.468 +406567,358.21,79.351 +406568,0.18264,80.2576 +406569,353.19,77.586 +406570,355,78.477 +406571,356.88,79.389 +406572,358.83,80.3241 +406573,351.9,77.566 +406574,353.69,78.486 +406575,355.54,79.426 +406576,357.47,80.3899 +406577,350.61,77.547 +406578,352.38,78.495 +406579,354.21,79.464 +406580,356.11,80.455 +406581,349.32,77.529 +406582,351.06,78.504 +406583,352.87,79.501 +406584,354.75,80.5192 +406585,348.03,77.511 +406586,349.75,78.514 +406587,351.53,79.537 +406588,353.39,80.5827 +406589,346.74,77.494 +406590,348.44,78.524 +406591,350.2,79.574 +406592,352.02,80.6454 +406593,345.45,77.479 +406594,347.12,78.535 +406595,348.86,79.61 +406596,350.66,80.7073 +406597,344.16,77.464 +406598,345.81,78.545 +406599,347.52,79.646 +406600,349.29,80.7683 +406601,342.88,77.449 +406602,344.5,78.556 +406603,346.18,79.682 +406604,347.93,80.8284 +406605,341.6,77.436 +406606,343.19,78.567 +406607,344.84,79.717 +406608,346.56,80.8876 +406609,340.31,77.424 +406610,341.88,78.579 +406611,343.5,79.752 +406612,345.19,80.9459 +406613,339.03,77.412 +406614,340.57,78.591 +406615,342.16,79.787 +406616,343.82,81.0033 +406617,337.75,77.402 +406618,339.26,78.603 +406619,340.82,79.822 +406620,342.45,81.0597 +406621,336.47,77.392 +406622,337.95,78.615 +406623,339.48,79.856 +406624,341.07,81.1151 +406625,335.19,77.383 +406626,336.64,78.628 +406627,338.14,79.89 +406628,339.7,81.1696 +406629,333.92,77.376 +406630,335.33,78.641 +406631,336.8,79.923 +406632,338.32,81.2231 +406633,332.64,77.369 +406634,334.02,78.655 +406635,335.45,79.957 +406636,336.94,81.2755 +406637,331.37,77.363 +406638,332.71,78.669 +406639,334.11,79.989 +406640,335.57,81.327 +406641,330.09,77.359 +406642,331.4,78.683 +406643,332.77,80.0219 +406644,334.19,81.3774 +406645,328.82,77.355 +406646,330.1,78.697 +406647,331.42,80.0541 +406648,332.81,81.4267 +406649,327.55,77.353 +406650,328.79,78.712 +406651,330.08,80.086 +406652,331.43,81.4749 +406653,326.28,77.352 +406654,327.48,78.728 +406655,328.74,80.1174 +406656,330.04,81.5221 +406657,325.01,77.351 +406658,326.18,78.743 +406659,327.39,80.1485 +406660,328.66,81.5682 +406661,323.74,77.352 +406662,324.87,78.759 +406663,326.05,80.1793 +406664,327.28,81.6131 +406665,322.47,77.354 +406666,323.56,78.776 +406667,324.7,80.2097 +406668,325.89,81.6569 +406669,321.2,77.357 +406670,322.26,78.792 +406671,323.36,80.2397 +406672,324.51,81.6997 +406673,319.94,77.362 +406674,320.95,78.81 +406675,322.01,80.2693 +406676,323.12,81.7412 +406677,318.67,77.367 +406678,319.64,78.827 +406679,320.66,80.2985 +406680,321.73,81.7816 +406681,317.4,77.374 +406682,318.34,78.845 +406683,319.32,80.3274 +406684,320.34,81.8209 +406685,316.14,77.382 +406686,317.03,78.864 +406687,317.97,80.3559 +406688,318.96,81.859 +406689,314.88,77.391 +406690,315.73,78.882 +406691,316.62,80.384 +406692,317.57,81.8959 +406693,313.61,77.401 +406694,314.42,78.901 +406695,315.28,80.4117 +406696,316.18,81.9316 +406697,312.35,77.413 +406698,313.12,78.921 +406699,313.93,80.439 +406700,314.78,81.9661 +406701,311.09,77.425 +406702,311.82,78.941 +406703,312.58,80.4659 +406704,313.39,81.9995 +406705,309.83,77.439 +406706,310.51,78.961 +406707,311.23,80.4924 +406708,312,82.0316 +406709,308.56,77.454 +406710,309.21,78.982 +406711,309.89,80.5185 +406712,310.61,82.0626 +406713,307.3,77.471 +406714,307.9,79.004 +406715,308.54,80.5442 +406716,309.22,82.0923 +406717,306.04,77.488 +406718,306.6,79.025 +406719,307.19,80.5695 +406720,307.82,82.1208 +406721,304.78,77.507 +406722,305.29,79.047 +406723,305.84,80.5944 +406724,306.43,82.1481 +406725,303.52,77.527 +406726,303.99,79.07 +406727,304.49,80.6189 +406728,305.04,82.1742 +406729,302.26,77.549 +406730,302.69,79.093 +406731,303.15,80.643 +406732,303.64,82.1991 +406733,301.01,77.572 +406734,301.38,79.116 +406735,301.8,80.6667 +406736,302.25,82.2228 +406737,299.75,77.596 +406738,300.08,79.14 +406739,300.45,80.69 +406740,300.85,82.2452 +406741,298.49,77.621 +406742,298.78,79.164 +406743,299.1,80.7128 +406744,299.46,82.2664 +406745,297.23,77.647 +406746,297.47,79.189 +406747,297.75,80.7353 +406748,298.06,82.2865 +406749,295.97,77.675 +406750,296.17,79.214 +406751,296.4,80.7574 +406752,296.67,82.3053 +406753,294.71,77.704 +406754,294.87,79.239 +406755,295.05,80.779 +406756,295.27,82.3228 +406757,293.46,77.734 +406758,293.56,79.265 +406759,293.7,80.8003 +406760,293.87,82.3392 +406761,292.2,77.766 +406762,292.26,79.291 +406763,292.35,80.8211 +406764,292.48,82.3544 +406765,290.94,77.798 +406766,290.96,79.318 +406767,291,80.8416 +406768,291.08,82.3684 +406769,289.68,77.832 +406770,289.65,79.345 +406771,289.65,80.8616 +406772,289.69,82.3812 +406773,288.43,77.868 +406774,288.35,79.373 +406775,288.3,80.8813 +406776,288.29,82.3928 +406777,287.17,77.904 +406778,287.05,79.4 +406779,286.95,80.9006 +406780,286.9,82.4032 +406781,285.91,77.942 +406782,285.74,79.429 +406783,285.6,80.9194 +406784,285.5,82.4124 +406785,284.65,77.981 +406786,284.44,79.458 +406787,284.26,80.9379 +406788,284.1,82.4204 +406789,283.39,78.021 +406790,283.13,79.487 +406791,282.91,80.956 +406792,282.71,82.4273 +406793,282.14,78.062 +406794,281.83,79.516 +406795,281.56,80.9737 +406796,281.31,82.4331 +406797,280.88,78.105 +406798,280.53,79.546 +406799,280.21,80.991 +406800,279.92,82.4377 +406801,279.62,78.149 +406802,279.22,79.577 +406803,278.86,81.0079 +406804,278.53,82.4412 +406805,278.36,78.194 +406806,277.92,79.607 +406807,277.51,81.0245 +406808,277.13,82.4435 +406809,277.1,78.24 +406810,276.61,79.639 +406811,276.16,81.0407 +406812,275.74,82.4447 +406813,275.84,78.287 +406814,275.31,79.67 +406815,274.81,81.0565 +406816,274.34,82.4449 +406817,274.58,78.336 +406818,274,79.702 +406819,273.46,81.0719 +406820,272.95,82.4439 +406821,273.32,78.385 +406822,272.7,79.734 +406823,272.11,81.087 +406824,271.56,82.4418 +406825,272.05,78.436 +406826,271.39,79.767 +406827,270.77,81.1017 +406828,270.17,82.4387 +406829,270.79,78.488 +406830,270.09,79.8 +406831,269.42,81.1161 +406832,268.78,82.4346 +406833,269.53,78.541 +406834,268.78,79.833 +406835,268.07,81.1301 +406836,267.39,82.4294 +406837,268.27,78.595 +406838,267.48,79.867 +406839,266.72,81.1438 +406840,266,82.4232 +406841,267,78.65 +406842,266.17,79.901 +406843,265.37,81.1572 +406844,264.61,82.4159 +406845,265.74,78.706 +406846,264.87,79.936 +406847,264.03,81.1702 +406848,263.22,82.4077 +406849,264.47,78.763 +406850,263.56,79.97 +406851,262.68,81.1829 +406852,261.83,82.3985 +406853,263.21,78.821 +406854,262.25,80.0055 +406855,261.33,81.1952 +406856,260.44,82.3884 +406857,261.94,78.88 +406858,260.95,80.041 +406859,259.98,81.2073 +406860,259.06,82.3773 +406861,260.67,78.94 +406862,259.64,80.0768 +406863,258.64,81.219 +406864,257.67,82.3652 +406865,259.41,79.002 +406866,258.33,80.1129 +406867,257.29,81.2304 +406868,256.28,82.3523 +406869,258.14,79.064 +406870,257.02,80.1493 +406871,255.94,81.2416 +406872,254.9,82.3385 +406873,256.87,79.127 +406874,255.71,80.186 +406875,254.6,81.2524 +406876,253.52,82.3238 +406877,255.6,79.19 +406878,254.41,80.223 +406879,253.25,81.263 +406880,252.13,82.3083 +406881,254.32,79.255 +406882,253.1,80.2603 +406883,251.91,81.2733 +406884,250.75,82.2919 +406885,253.05,79.321 +406886,251.79,80.2979 +406887,250.56,81.2833 +406888,249.37,82.2747 +406889,251.78,79.387 +406890,250.48,80.3358 +406891,249.22,81.293 +406892,247.99,82.2568 +406893,250.5,79.454 +406894,249.17,80.3739 +406895,247.87,81.3025 +406896,246.61,82.238 +406897,249.23,79.522 +406898,247.86,80.4123 +406899,246.53,81.3118 +406900,245.24,82.2186 +406901,247.95,79.591 +406902,246.55,80.451 +406903,245.18,81.3208 +406904,243.86,82.1983 +406905,246.67,79.661 +406906,245.24,80.4899 +406907,243.84,81.3295 +406908,242.48,82.1774 +406909,245.39,79.731 +406910,243.92,80.529 +406911,242.5,81.3381 +406912,241.11,82.1559 +406913,244.11,79.802 +406914,242.61,80.5684 +406915,241.15,81.3464 +406916,239.74,82.1336 +406917,242.83,79.873 +406918,241.3,80.608 +406919,239.81,81.3545 +406920,238.36,82.1107 +406921,241.55,79.945 +406922,239.99,80.6478 +406923,238.47,81.3624 +406924,236.99,82.0873 +406925,240.27,80.0183 +406926,238.67,80.6878 +406927,237.13,81.3701 +406928,235.62,82.0632 +406929,238.98,80.0917 +406930,237.36,80.728 +406931,235.79,81.3777 +406932,234.25,82.0386 +406933,237.69,80.1657 +406934,236.05,80.7684 +406935,234.44,81.385 +406936,232.89,82.0134 +406937,236.41,80.2402 +406938,234.73,80.8089 +406939,233.1,81.3922 +406940,231.52,81.9877 +406941,235.12,80.3152 +406942,233.42,80.8497 +406943,231.76,81.3992 +406944,230.16,81.9616 +406945,233.83,80.3907 +406946,232.1,80.8906 +406947,230.42,81.4061 +406948,228.79,81.9349 +406949,232.54,80.4666 +406950,230.79,80.9316 +406951,229.08,81.4128 +406952,227.43,81.9079 +406953,231.24,80.543 +406954,229.47,80.9728 +406955,227.74,81.4194 +406956,226.07,81.8804 +406957,229.95,80.6197 +406958,228.15,81.0141 +406959,226.41,81.4259 +406960,224.71,81.8525 +406961,228.65,80.6968 +406962,226.83,81.0556 +406963,225.07,81.4322 +406964,223.35,81.8243 +406965,227.36,80.7743 +406966,225.52,81.0971 +406967,223.73,81.4385 +406968,221.99,81.7958 +406969,226.06,80.852 +406970,224.2,81.1388 +406971,222.39,81.4446 +406972,220.64,81.767 +406973,224.76,80.9301 +406974,222.88,81.1806 +406975,221.05,81.4507 +406976,219.28,81.7378 +406977,223.46,81.0083 +406978,221.56,81.2224 +406979,219.72,81.4566 +406980,217.93,81.7085 +406981,222.15,81.0868 +406982,220.24,81.2644 +406983,218.38,81.4626 +406984,216.58,81.6789 +406985,220.85,81.1655 +406986,218.92,81.3063 +406987,217.05,81.4684 +406988,215.23,81.6491 +406989,219.54,81.2444 +406990,217.6,81.3484 +406991,215.71,81.4742 +406992,213.88,81.6192 +406993,218.24,81.3233 +406994,216.28,81.3905 +406995,214.38,81.48 +406996,212.53,81.5891 +406997,216.93,81.4024 +406998,214.96,81.4326 +406999,213.04,81.4857 +407000,211.18,81.5589 +407001,215.62,81.4815 +407002,213.63,81.4748 +407003,211.71,81.4914 +407004,209.84,81.5286 +407005,214.31,81.5607 +407006,212.31,81.517 +407007,210.37,81.4971 +407008,208.49,81.4982 +407009,212.99,81.6399 +407010,210.99,81.5591 +407011,209.04,81.5027 +407012,207.15,81.4679 +407013,211.68,81.7191 +407014,209.66,81.6013 +407015,207.71,81.5084 +407016,205.81,81.4375 +407017,210.36,81.7982 +407018,208.34,81.6435 +407019,206.38,81.5141 +407020,204.47,81.4072 +407021,209.04,81.8772 +407022,207.01,81.6857 +407023,205.05,81.5198 +407024,203.14,81.3769 +407025,207.72,81.9562 +407026,205.69,81.7278 +407027,203.71,81.5256 +407028,201.8,81.3467 +407029,206.4,82.0349 +407030,204.36,81.7699 +407031,202.38,81.5314 +407032,200.47,81.3166 +407033,205.08,82.1136 +407034,203.03,81.8119 +407035,201.05,81.5373 +407036,199.13,81.2867 +407037,203.76,82.192 +407038,201.71,81.8539 +407039,199.72,81.5432 +407040,197.8,81.2569 +407041,202.43,82.2701 +407042,200.38,81.8958 +407043,198.39,81.5492 +407044,196.47,81.2274 +407045,201.1,82.3481 +407046,199.05,81.9376 +407047,197.07,81.5552 +407048,195.14,81.198 +407049,199.77,82.4257 +407050,197.72,81.9793 +407051,195.74,81.5614 +407052,193.81,81.1689 +407053,198.44,82.503 +407054,196.39,82.0209 +407055,194.41,81.5677 +407056,192.49,81.1401 +407057,197.11,82.58 +407058,195.06,82.0625 +407059,193.08,81.574 +407060,191.16,81.1116 +407061,195.78,82.6566 +407062,193.73,82.1039 +407063,191.76,81.5805 +407064,189.84,81.0834 +407065,194.44,82.7328 +407066,192.4,82.1451 +407067,190.43,81.5871 +407068,188.52,81.0556 +407069,193.1,82.8085 +407070,191.07,82.1863 +407071,189.1,81.5939 +407072,187.2,81.0282 +407073,191.77,82.8838 +407074,189.74,82.2273 +407075,187.78,81.6008 +407076,185.88,81.0012 +407077,190.43,82.9586 +407078,188.4,82.2681 +407079,186.45,81.6078 +407080,184.56,80.9747 +407081,189.08,83.0329 +407082,187.07,82.3088 +407083,185.13,81.6151 +407084,183.25,80.9486 +407085,187.74,83.1067 +407086,185.74,82.3493 +407087,183.8,81.6225 +407088,181.93,80.923 +407089,186.4,83.1799 +407090,184.4,82.3896 +407091,182.48,81.63 +407092,180.62,80.898 +407093,185.05,83.2525 +407094,183.07,82.4297 +407095,181.16,81.6378 +407096,179.31,80.8735 +407097,183.7,83.3244 +407098,181.73,82.4696 +407099,179.83,81.6458 +407100,178,80.8496 +407101,182.35,83.3957 +407102,180.4,82.5094 +407103,178.51,81.6539 +407104,176.69,80.8262 +407105,181,83.4664 +407106,179.06,82.5489 +407107,177.19,81.6623 +407108,175.38,80.8036 +407109,179.65,83.5363 +407110,177.72,82.5881 +407111,175.87,81.6709 +407112,174.07,80.7815 +407113,178.29,83.6055 +407114,176.39,82.6272 +407115,174.55,81.6798 +407116,172.77,80.7601 +407117,176.94,83.674 +407118,175.05,82.666 +407119,173.23,81.6889 +407120,171.47,80.7395 +407121,175.58,83.7417 +407122,173.71,82.7045 +407123,171.91,81.6982 +407124,170.16,80.7195 +407125,174.22,83.8086 +407126,172.37,82.7428 +407127,170.59,81.7078 +407128,168.86,80.7004 +407129,172.86,83.8747 +407130,171.03,82.7808 +407131,169.27,81.7176 +407132,167.56,80.682 +407133,171.5,83.9399 +407134,169.69,82.8186 +407135,167.95,81.7277 +407136,166.26,80.6643 +407137,170.14,84.0043 +407138,168.35,82.856 +407139,166.63,81.7381 +407140,164.97,80.6475 +407141,168.78,84.0678 +407142,167.01,82.8932 +407143,165.31,81.7488 +407144,163.67,80.6316 +407145,167.41,84.1303 +407146,165.67,82.9301 +407147,163.99,81.7598 +407148,162.38,80.6165 +407149,166.05,84.192 +407150,164.33,82.9667 +407151,162.68,81.7711 +407152,161.08,80.6023 +407153,164.68,84.2527 +407154,162.99,83.003 +407155,161.36,81.7827 +407156,159.79,80.589 +407157,163.31,84.3124 +407158,161.64,83.0389 +407159,160.04,81.7946 +407160,158.5,80.5766 +407161,161.94,84.3712 +407162,160.3,83.0746 +407163,158.73,81.8068 +407164,157.21,80.5652 +407165,160.57,84.4289 +407166,158.96,83.1099 +407167,157.41,81.8194 +407168,155.92,80.5547 +407169,159.19,84.4857 +407170,157.61,83.1448 +407171,156.09,81.8323 +407172,154.63,80.5452 +407173,157.82,84.5413 +407174,156.27,83.1795 +407175,154.78,81.8455 +407176,153.35,80.5367 +407177,156.45,84.596 +407178,154.92,83.2138 +407179,153.46,81.859 +407180,152.06,80.5293 +407181,155.07,84.6495 +407182,153.58,83.2477 +407183,152.15,81.873 +407184,150.78,80.5229 +407185,153.69,84.702 +407186,152.23,83.2813 +407187,150.84,81.8872 +407188,149.49,80.5175 +407189,152.31,84.7534 +407190,150.89,83.3145 +407191,149.52,81.9019 +407192,148.21,80.5132 +407193,150.93,84.8036 +407194,149.54,83.3473 +407195,148.21,81.9169 +407196,146.93,80.51 +407197,149.55,84.8527 +407198,148.19,83.3798 +407199,146.89,81.9323 +407200,145.65,80.5079 +407201,148.17,84.9007 +407202,146.85,83.4119 +407203,145.58,81.948 +407204,144.37,80.507 +407205,146.79,84.9475 +407206,145.5,83.4436 +407207,144.27,81.9641 +407208,143.09,80.5071 +407209,145.41,84.9931 +407210,144.15,83.4749 +407211,142.96,81.9807 +407212,141.81,80.5084 +407213,144.02,85.0376 +407214,142.8,83.5058 +407215,141.64,81.9976 +407216,140.53,80.5109 +407217,142.64,85.0808 +407218,141.46,83.5364 +407219,140.33,82.0149 +407220,139.26,80.5146 +407221,141.25,85.1229 +407222,140.11,83.5665 +407223,139.02,82.0326 +407224,137.98,80.5194 +407225,139.86,85.1637 +407226,138.76,83.5962 +407227,137.71,82.0507 +407228,136.7,80.5254 +407229,138.47,85.2034 +407230,137.41,83.6256 +407231,136.4,82.0692 +407232,135.43,80.5327 +407233,137.09,85.2418 +407234,136.06,83.6545 +407235,135.09,82.0881 +407236,134.16,80.5411 +407237,135.7,85.2789 +407238,134.71,83.683 +407239,133.77,82.1074 +407240,132.88,80.5508 +407241,134.31,85.3148 +407242,133.36,83.7111 +407243,132.46,82.1271 +407244,131.61,80.5617 +407245,132.92,85.3495 +407246,132.01,83.7388 +407247,131.15,82.1473 +407248,130.34,80.5739 +407249,131.52,85.3829 +407250,130.66,83.766 +407251,129.84,82.1679 +407252,129.07,80.5873 +407253,130.13,85.415 +407254,129.31,83.7929 +407255,128.53,82.1889 +407256,127.8,80.602 +407257,128.74,85.4459 +407258,127.96,83.8193 +407259,127.22,82.2103 +407260,126.53,80.618 +407261,127.35,85.4755 +407262,126.61,83.8453 +407263,125.91,82.2321 +407264,125.26,80.6352 +407265,125.95,85.5039 +407266,125.25,83.8709 +407267,124.6,82.2544 +407268,123.99,80.6537 +407269,124.56,85.5309 +407270,123.9,83.896 +407271,123.29,82.2771 +407272,122.72,80.6735 +407273,123.16,85.5567 +407274,122.55,83.9207 +407275,121.98,82.3002 +407276,121.45,80.6946 +407277,121.77,85.5813 +407278,121.2,83.945 +407279,120.67,82.3237 +407280,120.18,80.7169 +407281,120.37,85.6045 +407282,119.85,83.9689 +407283,119.36,82.3477 +407284,118.92,80.7406 +407285,118.98,85.6265 +407286,118.5,83.9923 +407287,118.05,82.3721 +407288,117.65,80.7655 +407289,117.58,85.6471 +407290,117.14,84.0154 +407291,116.74,82.3969 +407292,116.38,80.7917 +407293,116.19,85.6666 +407294,115.79,84.0379 +407295,115.43,82.4222 +407296,115.11,80.8193 +407297,114.79,85.6847 +407298,114.44,84.0601 +407299,114.13,82.4478 +407300,113.85,80.8481 +407301,113.39,85.7016 +407302,113.09,84.0818 +407303,112.82,82.474 +407304,112.58,80.8782 +407305,112,85.7172 +407306,111.73,84.1031 +407307,111.51,82.5005 +407308,111.31,80.9096 +407309,110.6,85.7315 +407310,110.38,84.124 +407311,110.2,82.5275 +407312,110.05,80.9423 +407313,109.2,85.7446 +407314,109.03,84.1445 +407315,108.89,82.5548 +407316,108.78,80.9763 +407317,107.81,85.7565 +407318,107.67,84.1645 +407319,107.58,82.5827 +407320,107.52,81.0115 +407321,106.41,85.7671 +407322,106.32,84.1841 +407323,106.27,82.6109 +407324,106.25,81.0481 +407325,105.01,85.7764 +407326,104.97,84.2033 +407327,104.96,82.6395 +407328,104.98,81.0859 +407329,103.61,85.7846 +407330,103.62,84.2221 +407331,103.65,82.6686 +407332,103.72,81.1249 +407333,102.22,85.7915 +407334,102.26,84.2405 +407335,102.34,82.6981 +407336,102.45,81.1653 +407337,100.82,85.7972 +407338,100.91,84.2584 +407339,101.03,82.728 +407340,101.18,81.2068 +407341,99.423,85.8017 +407342,99.557,84.276 +407343,99.722,82.7583 +407344,99.917,81.2496 +407345,98.026,85.805 +407346,98.204,84.2931 +407347,98.412,82.789 +407348,98.65,81.2937 +407349,96.63,85.8071 +407350,96.851,84.3099 +407351,97.102,82.8201 +407352,97.383,81.339 +407353,95.234,85.8081 +407354,95.498,84.3262 +407355,95.792,82.8516 +407356,96.116,81.3855 +407357,93.838,85.8078 +407358,94.146,84.3422 +407359,94.482,82.8835 +407360,94.848,81.4331 +407361,92.442,85.8065 +407362,92.793,84.3577 +407363,93.172,82.9158 +407364,93.58,81.482 +407365,91.047,85.804 +407366,91.44,84.3729 +407367,91.862,82.9485 +407368,92.311,81.5321 +407369,89.652,85.8004 +407370,90.088,84.3877 +407371,90.551,82.9816 +407372,91.043,81.5833 +407373,88.258,85.7956 +407374,88.735,84.4021 +407375,89.241,83.015 +407376,89.774,81.6357 +407377,86.864,85.7898 +407378,87.383,84.4162 +407379,87.93,83.0488 +407380,88.504,81.6892 +407381,85.47,85.7829 +407382,86.031,84.4299 +407383,86.619,83.083 +407384,87.234,81.7439 +407385,84.077,85.775 +407386,84.679,84.4432 +407387,85.307,83.1176 +407388,85.963,81.7996 +407389,82.685,85.766 +407390,83.327,84.4561 +407391,83.996,83.1525 +407392,84.692,81.8565 +407393,81.293,85.7559 +407394,81.975,84.4688 +407395,82.684,83.1877 +407396,83.42,81.9144 +407397,79.902,85.7449 +407398,80.623,84.481 +407399,81.372,83.2233 +407400,82.148,81.9734 +407401,78.511,85.7328 +407402,79.272,84.493 +407403,80.06,83.2593 +407404,80.875,82.0334 +407405,77.121,85.7198 +407406,77.921,84.5046 +407407,78.747,83.2956 +407408,79.601,82.0945 +407409,75.732,85.7058 +407410,76.57,84.5158 +407411,77.435,83.3322 +407412,78.327,82.1565 +407413,74.343,85.6909 +407414,75.219,84.5268 +407415,76.122,83.3691 +407416,77.052,82.2196 +407417,72.955,85.6751 +407418,73.868,84.5374 +407419,74.808,83.4063 +407420,75.776,82.2836 +407421,71.568,85.6583 +407422,72.518,84.5477 +407423,73.495,83.4439 +407424,74.5,82.3485 +407425,70.182,85.6407 +407426,71.168,84.5577 +407427,72.181,83.4817 +407428,73.222,82.4144 +407429,68.796,85.6222 +407430,69.818,84.5675 +407431,70.867,83.5199 +407432,71.944,82.4812 +407433,67.411,85.6029 +407434,68.468,84.5769 +407435,69.552,83.5583 +407436,70.665,82.5488 +407437,66.028,85.5828 +407438,67.119,84.5861 +407439,68.238,83.597 +407440,69.385,82.6173 +407441,64.645,85.5618 +407442,65.769,84.595 +407443,66.922,83.636 +407444,68.104,82.6867 +407445,63.263,85.5402 +407446,64.421,84.6036 +407447,65.607,83.6752 +407448,66.822,82.7569 +407449,61.882,85.5177 +407450,63.072,84.612 +407451,64.291,83.7147 +407452,65.539,82.8278 +407453,60.501,85.4946 +407454,61.724,84.6201 +407455,62.975,83.7545 +407456,64.256,82.8995 +407457,59.122,85.4707 +407458,60.376,84.628 +407459,61.658,83.7944 +407460,62.971,82.972 +407461,57.744,85.4461 +407462,59.028,84.6356 +407463,60.341,83.8347 +407464,61.685,83.0451 +407465,56.367,85.421 +407466,57.681,84.643 +407467,59.024,83.8751 +407468,60.398,83.119 +407469,54.991,85.3951 +407470,56.333,84.6502 +407471,57.706,83.9157 +407472,59.11,83.1935 +407473,53.616,85.3687 +407474,54.987,84.6572 +407475,56.388,83.9566 +407476,57.821,83.2686 +407477,52.243,85.3417 +407478,53.64,84.664 +407479,55.07,83.9976 +407480,56.531,83.3443 +407481,50.87,85.3142 +407482,52.294,84.6707 +407483,53.751,84.0388 +407484,55.24,83.4207 +407485,49.498,85.2861 +407486,50.949,84.6771 +407487,52.431,84.0803 +407488,53.947,83.4975 +407489,48.128,85.2575 +407490,49.603,84.6833 +407491,51.112,84.1218 +407492,52.654,83.5749 +407493,46.759,85.2285 +407494,48.258,84.6894 +407495,49.791,84.1636 +407496,51.359,83.6528 +407497,45.391,85.199 +407498,46.914,84.6954 +407499,48.471,84.2054 +407500,50.063,83.7312 +407501,44.024,85.1691 +407502,45.569,84.7012 +407503,47.149,84.2475 +407504,48.765,83.81 +407505,42.658,85.1387 +407506,44.225,84.7068 +407507,45.828,84.2896 +407508,47.467,83.8891 +407509,41.294,85.1081 +407510,42.882,84.7124 +407511,44.506,84.3319 +407512,46.167,83.9687 +407513,39.931,85.0771 +407514,41.539,84.7178 +407515,43.183,84.3743 +407516,44.866,84.0486 +407517,38.569,85.0458 +407518,40.196,84.7231 +407519,41.86,84.4167 +407520,43.563,84.1289 +407521,37.208,85.0142 +407522,38.854,84.7283 +407523,40.537,84.4593 +407524,42.259,84.2094 +407525,35.849,84.9823 +407526,37.512,84.7334 +407527,39.213,84.502 +407528,40.954,84.2902 +407529,34.491,84.9502 +407530,36.17,84.7384 +407531,37.889,84.5447 +407532,39.647,84.3712 +407533,33.134,84.918 +407534,34.829,84.7434 +407535,36.564,84.5875 +407536,38.339,84.4524 +407537,31.779,84.8855 +407538,33.489,84.7483 +407539,35.238,84.6303 +407540,37.03,84.5338 +407541,30.425,84.8529 +407542,32.148,84.7532 +407543,33.913,84.6732 +407544,35.719,84.6153 +407545,29.072,84.8203 +407546,30.809,84.758 +407547,32.586,84.7161 +407548,34.407,84.6969 +407549,27.72,84.7875 +407550,29.469,84.7628 +407551,31.259,84.759 +407552,33.094,84.7786 +407553,26.37,84.7546 +407554,28.13,84.7675 +407555,29.932,84.8019 +407556,31.779,84.8603 +407557,25.022,84.7218 +407558,26.792,84.7723 +407559,28.604,84.8448 +407560,30.462,84.942 +407561,23.674,84.6889 +407562,25.453,84.777 +407563,27.276,84.8878 +407564,29.145,85.0238 +407565,22.328,84.6561 +407566,24.116,84.7818 +407567,25.947,84.9307 +407568,27.825,85.1054 +407569,20.984,84.6234 +407570,22.778,84.7866 +407571,24.617,84.9735 +407572,26.504,85.187 +407573,19.641,84.5907 +407574,21.442,84.7914 +407575,23.287,85.0164 +407576,25.182,85.2685 +407577,18.299,84.5582 +407578,20.105,84.7962 +407579,21.957,85.0591 +407580,23.859,85.3498 +407581,16.958,84.5258 +407582,18.769,84.8011 +407583,20.626,85.1019 +407584,22.533,85.4309 +407585,15.619,84.4936 +407586,17.434,84.806 +407587,19.295,85.1445 +407588,21.207,85.5118 +407589,14.282,84.4615 +407590,16.099,84.811 +407591,17.963,85.1871 +407592,19.878,85.5925 +407593,12.945,84.4298 +407594,14.764,84.8161 +407595,16.63,85.2295 +407596,18.549,85.6729 +407597,11.61,84.3982 +407598,13.43,84.8213 +407599,15.297,85.2719 +407600,17.218,85.753 +407601,10.277,84.367 +407602,12.096,84.8266 +407603,13.963,85.3141 +407604,15.885,85.8328 +407605,8.9446,84.3361 +407606,10.763,84.832 +407607,12.629,85.3563 +407608,14.551,85.9123 +407609,7.6138,84.3056 +407610,9.4296,84.8374 +407611,11.295,85.3983 +407612,13.215,85.9913 +407613,6.2844,84.2754 +407614,8.0972,84.8431 +407615,9.9597,85.4401 +407616,11.878,86.0699 +407617,4.9564,84.2456 +407618,6.7651,84.8488 +407619,8.624,85.4818 +407620,10.539,86.148 +407621,3.6297,84.2162 +407622,5.4335,84.8547 +407623,7.2879,85.5234 +407624,9.1992,86.2257 +407625,2.3044,84.1874 +407626,4.1024,84.8607 +407627,5.9512,85.5648 +407628,7.8576,86.3029 +407629,0.98042,84.1589 +407630,2.7716,84.867 +407631,4.614,85.6059 +407632,6.5145,86.3795 +407633,359.66,84.1311 +407634,1.4413,84.8733 +407635,3.2763,85.6469 +407636,5.1699,86.4555 +407637,358.34,84.1037 +407638,0.11144,84.8799 +407639,1.9381,85.6878 +407640,3.8239,86.531 +407641,357.02,84.0769 +407642,358.78,84.8866 +407643,0.59939,85.7283 +407644,2.4763,86.6058 +407645,355.7,84.0507 +407646,357.45,84.8936 +407647,359.26,85.7687 +407648,1.1274,86.6799 +407649,354.38,84.0252 +407650,356.12,84.9007 +407651,357.92,85.8089 +407652,359.78,86.7534 +407653,353.06,84.0002 +407654,354.8,84.9081 +407655,356.58,85.8488 +407656,358.43,86.8262 +407657,351.75,83.976 +407658,353.47,84.9157 +407659,355.24,85.8885 +407660,357.07,86.8982 +407661,350.44,83.9524 +407662,352.14,84.9235 +407663,353.9,85.9279 +407664,355.72,86.9695 +407665,349.12,83.9296 +407666,350.81,84.9315 +407667,352.56,85.967 +407668,354.36,87.04 +407669,347.81,83.9075 +407670,349.49,84.9399 +407671,351.21,86.0059 +407672,353,87.1097 +407673,346.5,83.8862 +407674,348.16,84.9484 +407675,349.87,86.0445 +407676,351.64,87.1785 +407677,345.2,83.8656 +407678,346.84,84.9572 +407679,348.53,86.0828 +407680,350.28,87.2465 +407681,343.89,83.8459 +407682,345.51,84.9663 +407683,347.18,86.1209 +407684,348.92,87.3135 +407685,342.58,83.827 +407686,344.18,84.9757 +407687,345.84,86.1586 +407688,347.56,87.3797 +407689,341.28,83.809 +407690,342.86,84.9854 +407691,344.5,86.196 +407692,346.2,87.4449 +407693,339.97,83.7919 +407694,341.54,84.9953 +407695,343.15,86.2331 +407696,344.83,87.5092 +407697,338.67,83.7757 +407698,340.21,85.0056 +407699,341.81,86.2698 +407700,343.46,87.5725 +407701,337.37,83.7604 +407702,338.89,85.0162 +407703,340.46,86.3063 +407704,342.09,87.6348 +407705,336.07,83.746 +407706,337.56,85.0271 +407707,339.11,86.3424 +407708,340.72,87.6961 +407709,334.77,83.7326 +407710,336.24,85.0383 +407711,337.77,86.3781 +407712,339.35,87.7563 +407713,333.47,83.7202 +407714,334.92,85.0498 +407715,336.42,86.4135 +407716,337.98,87.8155 +407717,332.17,83.7089 +407718,333.6,85.0617 +407719,335.07,86.4485 +407720,336.61,87.8736 +407721,330.88,83.6985 +407722,332.28,85.0739 +407723,333.72,86.4832 +407724,335.23,87.9305 +407725,329.58,83.6892 +407726,330.95,85.0865 +407727,332.38,86.5175 +407728,333.86,87.9864 +407729,328.29,83.681 +407730,329.63,85.0994 +407731,331.03,86.5514 +407732,332.48,88.0411 +407733,327,83.6738 +407734,328.31,85.1126 +407735,329.68,86.5849 +407736,331.1,88.0947 +407737,325.7,83.6677 +407738,326.99,85.1263 +407739,328.33,86.6181 +407740,329.73,88.1471 +407741,324.41,83.6628 +407742,325.67,85.1403 +407743,326.98,86.6508 +407744,328.35,88.1983 +407745,323.12,83.659 +407746,324.35,85.1547 +407747,325.63,86.6832 +407748,326.96,88.2483 +407749,321.83,83.6563 +407750,323.03,85.1694 +407751,324.28,86.7151 +407752,325.58,88.2971 +407753,320.55,83.6548 +407754,321.71,85.1846 +407755,322.93,86.7466 +407756,324.2,88.3447 +407757,319.26,83.6545 +407758,320.39,85.2001 +407759,321.57,86.7778 +407760,322.82,88.391 +407761,317.97,83.6553 +407762,319.07,85.2161 +407763,320.22,86.8084 +407764,321.43,88.4361 +407765,316.68,83.6574 +407766,317.75,85.2324 +407767,318.87,86.8387 +407768,320.05,88.4799 +407769,315.4,83.6606 +407770,316.43,85.2491 +407771,317.52,86.8686 +407772,318.66,88.5224 +407773,314.11,83.6651 +407774,315.12,85.2663 +407775,316.17,86.898 +407776,317.27,88.5636 +407777,312.83,83.6709 +407778,313.8,85.2838 +407779,314.81,86.927 +407780,315.88,88.6036 +407781,311.55,83.6779 +407782,312.48,85.3018 +407783,313.46,86.9555 +407784,314.49,88.6422 +407785,310.26,83.6861 +407786,311.16,85.3201 +407787,312.11,86.9836 +407788,313.1,88.6795 +407789,308.98,83.6956 +407790,309.84,85.3389 +407791,310.75,87.0112 +407792,311.71,88.7155 +407793,307.7,83.7064 +407794,308.53,85.3581 +407795,309.4,87.0385 +407796,310.32,88.7502 +407797,306.42,83.7185 +407798,307.21,85.3778 +407799,308.04,87.0652 +407800,308.93,88.7836 +407801,305.14,83.7318 +407802,305.89,85.3978 +407803,306.69,87.0915 +407804,307.54,88.8155 +407805,303.86,83.7465 +407806,304.58,85.4183 +407807,305.33,87.1174 +407808,306.14,88.8462 +407809,302.58,83.7624 +407810,303.26,85.4392 +407811,303.98,87.1428 +407812,304.75,88.8755 +407813,301.3,83.7797 +407814,301.94,85.4606 +407815,302.62,87.1677 +407816,303.35,88.9035 +407817,300.02,83.7983 +407818,300.63,85.4824 +407819,301.27,87.1922 +407820,301.96,88.93 +407821,298.75,83.8182 +407822,299.31,85.5046 +407823,299.91,87.2162 +407824,300.56,88.9553 +407825,297.47,83.8394 +407826,297.99,85.5272 +407827,298.56,87.2398 +407828,299.17,88.9792 +407829,296.19,83.862 +407830,296.68,85.5503 +407831,297.2,87.2629 +407832,297.77,89.00168 +407833,294.91,83.8858 +407834,295.36,85.5738 +407835,295.85,87.2856 +407836,296.38,89.02285 +407837,293.64,83.911 +407838,294.04,85.5977 +407839,294.49,87.3078 +407840,294.98,89.04265 +407841,292.36,83.9376 +407842,292.73,85.6221 +407843,293.13,87.3295 +407844,293.58,89.0611 +407845,291.08,83.9654 +407846,291.41,85.6469 +407847,291.78,87.3508 +407848,292.18,89.0782 +407849,289.81,83.9946 +407850,290.1,85.6722 +407851,290.42,87.3716 +407852,290.78,89.09395 +407853,288.53,84.0251 +407854,288.78,85.6979 +407855,289.06,87.3919 +407856,289.39,89.10835 +407857,287.26,84.0569 +407858,287.46,85.724 +407859,287.71,87.4118 +407860,287.99,89.12141 +407861,285.98,84.0901 +407862,286.15,85.7505 +407863,286.35,87.4313 +407864,286.59,89.13314 +407865,284.7,84.1245 +407866,284.83,85.7775 +407867,284.99,87.4503 +407868,285.19,89.14353 +407869,283.43,84.1603 +407870,283.52,85.8049 +407871,283.64,87.4688 +407872,283.79,89.1526 +407873,282.15,84.1974 +407874,282.2,85.8327 +407875,282.28,87.4869 +407876,282.39,89.16036 +407877,280.88,84.2357 +407878,280.88,85.861 +407879,280.92,87.5045 +407880,280.99,89.1668 +407881,279.6,84.2754 +407882,279.57,85.8896 +407883,279.56,87.5217 +407884,279.6,89.17195 +407885,278.32,84.3164 +407886,278.25,85.9187 +407887,278.21,87.5385 +407888,278.2,89.1758 +407889,277.05,84.3586 +407890,276.93,85.9482 +407891,276.85,87.5548 +407892,276.8,89.17838 +407893,275.77,84.4021 +407894,275.62,85.9781 +407895,275.49,87.5707 +407896,275.4,89.17968 +407897,274.5,84.4469 +407898,274.3,86.0084 +407899,274.14,87.5861 +407900,274,89.17972 +407901,273.22,84.4929 +407902,272.99,86.0392 +407903,272.78,87.6011 +407904,272.6,89.17852 +407905,271.94,84.5402 +407906,271.67,86.0703 +407907,271.42,87.6157 +407908,271.2,89.17608 +407909,270.67,84.5886 +407910,270.35,86.1018 +407911,270.06,87.6299 +407912,269.81,89.17242 +407913,269.39,84.6383 +407914,269.03,86.1337 +407915,268.71,87.6437 +407916,268.41,89.16755 +407917,268.11,84.6893 +407918,267.72,86.166 +407919,267.35,87.657 +407920,267.01,89.16148 +407921,266.83,84.7414 +407922,266.4,86.1987 +407923,265.99,87.6699 +407924,265.61,89.15424 +407925,265.55,84.7946 +407926,265.08,86.2318 +407927,264.64,87.6825 +407928,264.22,89.14583 +407929,264.28,84.8491 +407930,263.77,86.2652 +407931,263.28,87.6946 +407932,262.82,89.13627 +407933,263,84.9047 +407934,262.45,86.299 +407935,261.92,87.7063 +407936,261.42,89.12558 +407937,261.72,84.9614 +407938,261.13,86.3332 +407939,260.57,87.7177 +407940,260.03,89.11378 +407941,260.44,85.0193 +407942,259.81,86.3677 +407943,259.21,87.7286 +407944,258.63,89.10088 +407945,259.15,85.0782 +407946,258.49,86.4026 +407947,257.85,87.7392 +407948,257.24,89.0869 +407949,257.87,85.1382 +407950,257.17,86.4378 +407951,256.5,87.7494 +407952,255.85,89.07186 +407953,256.59,85.1993 +407954,255.86,86.4734 +407955,255.14,87.7593 +407956,254.45,89.05578 +407957,255.31,85.2614 +407958,254.54,86.5093 +407959,253.79,87.7688 +407960,253.06,89.03868 +407961,254.02,85.3246 +407962,253.22,86.5455 +407963,252.43,87.778 +407964,251.67,89.02058 +407965,252.74,85.3888 +407966,251.9,86.5821 +407967,251.08,87.7868 +407968,250.28,89.0015 +407969,251.46,85.4539 +407970,250.58,86.6189 +407971,249.72,87.7952 +407972,248.89,88.9815 +407973,250.17,85.52 +407974,249.26,86.6561 +407975,248.37,87.8034 +407976,247.5,88.9605 +407977,248.88,85.5871 +407978,247.94,86.6935 +407979,247.01,87.8112 +407980,246.11,88.9386 +407981,247.6,85.655 +407982,246.62,86.7313 +407983,245.66,87.8187 +407984,244.72,88.9158 +407985,246.31,85.7239 +407986,245.3,86.7693 +407987,244.3,87.8259 +407988,243.33,88.8921 +407989,245.02,85.7936 +407990,243.97,86.8076 +407991,242.95,87.8328 +407992,241.94,88.8676 +407993,243.73,85.8642 +407994,242.65,86.8461 +407995,241.59,87.8394 +407996,240.56,88.8423 +407997,242.44,85.9356 +407998,241.33,86.885 +407999,240.24,87.8457 +408000,239.17,88.8162 +408001,241.15,86.0078 +408002,240.01,86.924 +408003,238.89,87.8517 +408004,237.79,88.7893 +408005,239.86,86.0808 +408006,238.69,86.9633 +408007,237.53,87.8575 +408008,236.4,88.7616 +408009,238.56,86.1546 +408010,237.36,87.0029 +408011,236.18,87.863 +408012,235.02,88.7333 +408013,237.27,86.229 +408014,236.04,87.0427 +408015,234.83,87.8682 +408016,233.64,88.7042 +408017,235.97,86.3042 +408018,234.72,87.0826 +408019,233.48,87.8733 +408020,232.26,88.6745 +408021,234.68,86.38 +408022,233.39,87.1228 +408023,232.12,87.878 +408024,230.88,88.6441 +408025,233.38,86.4565 +408026,232.07,87.1632 +408027,230.77,87.8826 +408028,229.5,88.6131 +408029,232.08,86.5336 +408030,230.74,87.2038 +408031,229.42,87.8869 +408032,228.12,88.5815 +408033,230.78,86.6112 +408034,229.42,87.2445 +408035,228.07,87.8911 +408036,226.75,88.5493 +408037,229.48,86.6895 +408038,228.09,87.2854 +408039,226.72,87.895 +408040,225.37,88.5166 +408041,228.18,86.7682 +408042,226.76,87.3265 +408043,225.37,87.8988 +408044,224,88.4834 +408045,226.88,86.8475 +408046,225.44,87.3677 +408047,224.02,87.9023 +408048,222.62,88.4497 +408049,225.58,86.9272 +408050,224.11,87.4091 +408051,222.67,87.9057 +408052,221.25,88.4155 +408053,224.27,87.0074 +408054,222.78,87.4506 +408055,221.32,87.909 +408056,219.88,88.3809 +408057,222.96,87.0879 +408058,221.46,87.4922 +408059,219.97,87.9121 +408060,218.51,88.346 +408061,221.66,87.1689 +408062,220.13,87.5339 +408063,218.62,87.915 +408064,217.14,88.3106 +408065,220.35,87.2502 +408066,218.8,87.5757 +408067,217.28,87.9179 +408068,215.78,88.2749 +408069,219.04,87.3318 +408070,217.47,87.6176 +408071,215.93,87.9206 +408072,214.41,88.2389 +408073,217.73,87.4137 +408074,216.14,87.6596 +408075,214.58,87.9232 +408076,213.04,88.2026 +408077,216.42,87.4959 +408078,214.81,87.7017 +408079,213.23,87.9256 +408080,211.68,88.1661 +408081,215.1,87.5783 +408082,213.48,87.7438 +408083,211.89,87.928 +408084,210.32,88.1294 +408085,213.79,87.6608 +408086,212.15,87.7859 +408087,210.54,87.9304 +408088,208.96,88.0924 +408089,212.47,87.7436 +408090,210.82,87.8281 +408091,209.19,87.9326 +408092,207.6,88.0553 +408093,211.15,87.8264 +408094,209.49,87.8703 +408095,207.85,87.9348 +408096,206.24,88.018 +408097,209.83,87.9094 +408098,208.15,87.9126 +408099,206.5,87.9369 +408100,204.88,87.9807 +408101,208.51,87.9924 +408102,206.82,87.9548 +408103,205.16,87.939 +408104,203.52,87.9433 +408105,207.19,88.0755 +408106,205.49,87.997 +408107,203.81,87.9411 +408108,202.17,87.9058 +408109,205.87,88.1585 +408110,204.15,88.0392 +408111,202.47,87.9432 +408112,200.82,87.8683 +408113,204.55,88.2415 +408114,202.82,88.0814 +408115,201.13,87.9452 +408116,199.46,87.8308 +408117,203.22,88.3245 +408118,201.49,88.1235 +408119,199.78,87.9472 +408120,198.11,87.7934 +408121,201.89,88.4073 +408122,200.15,88.1656 +408123,198.44,87.9493 +408124,196.76,87.7561 +408125,200.57,88.49 +408126,198.81,88.2077 +408127,197.1,87.9513 +408128,195.41,87.7188 +408129,199.24,88.5726 +408130,197.48,88.2496 +408131,195.76,87.9534 +408132,194.07,87.6817 +408133,197.91,88.6549 +408134,196.14,88.2915 +408135,194.41,87.9556 +408136,192.72,87.6448 +408137,196.57,88.7371 +408138,194.8,88.3333 +408139,193.07,87.9578 +408140,191.38,87.608 +408141,195.24,88.8189 +408142,193.47,88.375 +408143,191.73,87.96 +408144,190.03,87.5715 +408145,193.9,88.9005 +408146,192.13,88.4166 +408147,190.39,87.9623 +408148,188.69,87.5352 +408149,192.57,88.9817 +408150,190.79,88.458 +408151,189.05,87.9647 +408152,187.35,87.4992 +408153,191.23,89.06262 +408154,189.45,88.4994 +408155,187.71,87.9672 +408156,186.01,87.4635 +408157,189.89,89.14311 +408158,188.11,88.5405 +408159,186.37,87.9698 +408160,184.67,87.4282 +408161,188.55,89.22318 +408162,186.77,88.5816 +408163,185.03,87.9725 +408164,183.33,87.3932 +408165,187.21,89.3028 +408166,185.43,88.6224 +408167,183.7,87.9754 +408168,182,87.3587 +408169,185.86,89.38192 +408170,184.09,88.6631 +408171,182.36,87.9783 +408172,180.67,87.3245 +408173,184.52,89.46053 +408174,182.75,88.7036 +408175,181.02,87.9814 +408176,179.33,87.2908 +408177,183.17,89.5386 +408178,181.41,88.7439 +408179,179.68,87.9847 +408180,178,87.2576 +408181,181.82,89.61608 +408182,180.06,88.784 +408183,178.35,87.9881 +408184,176.67,87.2249 +408185,180.47,89.69295 +408186,178.72,88.8239 +408187,177.01,87.9916 +408188,175.34,87.1928 +408189,179.12,89.76919 +408190,177.38,88.8635 +408191,175.67,87.9954 +408192,174.01,87.1612 +408193,177.77,89.84475 +408194,176.03,88.9029 +408195,174.34,87.9993 +408196,172.69,87.1302 +408197,176.42,89.91962 +408198,174.69,88.9421 +408199,173,88.0035 +408200,171.36,87.0998 +408201,175.06,89.9937591 +408202,173.34,88.981 +408203,171.67,88.0078 +408204,170.04,87.0701 +408205,173.71,90.067141 +408206,172,89.0197 +408207,170.34,88.0123 +408208,168.71,87.041 +408209,172.35,90.13974 +408210,170.65,89.05809 +408211,169,88.0171 +408212,167.39,87.0127 +408213,170.99,90.21152 +408214,169.31,89.0962 +408215,167.67,88.0221 +408216,166.07,86.985 +408217,169.63,90.28247 +408218,167.96,89.13401 +408219,166.33,88.0273 +408220,164.75,86.9581 +408221,168.27,90.35254 +408222,166.61,89.17153 +408223,165,88.0328 +408224,163.44,86.932 +408225,166.91,90.42172 +408226,165.26,89.20874 +408227,163.67,88.0386 +408228,162.12,86.9067 +408229,165.54,90.48998 +408230,163.92,89.24563 +408231,162.34,88.0446 +408232,160.8,86.8823 +408233,164.18,90.55729 +408234,162.57,89.2822 +408235,161.01,88.0509 +408236,159.49,86.8586 +408237,162.81,90.62363 +408238,161.22,89.31844 +408239,159.67,88.0574 +408240,158.18,86.8359 +408241,161.44,90.68898 +408242,159.87,89.35433 +408243,158.34,88.0643 +408244,156.86,86.814 +408245,160.08,90.7533 +408246,158.52,89.38987 +408247,157.01,88.0714 +408248,155.55,86.793 +408249,158.71,90.81658 +408250,157.17,89.42506 +408251,155.68,88.0789 +408252,154.24,86.773 +408253,157.33,90.87879 +408254,155.82,89.45988 +408255,154.35,88.0866 +408256,152.93,86.754 +408257,155.96,90.93991 +408258,154.47,89.49434 +408259,153.02,88.0947 +408260,151.62,86.7359 +408261,154.59,90.99992 +408262,153.11,89.52841 +408263,151.69,88.1031 +408264,150.32,86.7188 +408265,153.21,91.0588 +408266,151.76,89.56209 +408267,150.36,88.1118 +408268,149.01,86.7028 +408269,151.84,91.1165 +408270,150.41,89.59538 +408271,149.04,88.1209 +408272,147.71,86.6878 +408273,150.46,91.1731 +408274,149.06,89.62828 +408275,147.71,88.1303 +408276,146.4,86.6738 +408277,149.08,91.2284 +408278,147.7,89.66076 +408279,146.38,88.1401 +408280,145.1,86.6609 +408281,147.7,91.2825 +408282,146.35,89.69284 +408283,145.05,88.1502 +408284,143.8,86.6492 +408285,146.32,91.3354 +408286,145,89.72449 +408287,143.72,88.1607 +408288,142.5,86.6385 +408289,144.94,91.3871 +408290,143.64,89.75572 +408291,142.4,88.1715 +408292,141.2,86.629 +408293,143.56,91.4375 +408294,142.29,89.78652 +408295,141.07,88.1827 +408296,139.9,86.6206 +408297,142.17,91.4866 +408298,140.93,89.81688 +408299,139.74,88.1943 +408300,138.6,86.6134 +408301,140.79,91.5344 +408302,139.58,89.84681 +408303,138.42,88.2063 +408304,137.3,86.6074 +408305,139.4,91.5809 +408306,138.22,89.87628 +408307,137.09,88.2187 +408308,136,86.6026 +408309,138.02,91.6261 +408310,136.86,89.905309 +408311,135.76,88.2314 +408312,134.71,86.5989 +408313,136.63,91.6699 +408314,135.51,89.93388 +408315,134.44,88.2446 +408316,133.41,86.5965 +408317,135.24,91.7124 +408318,134.15,89.961991 +408319,133.11,88.2581 +408320,132.12,86.5954 +408321,133.85,91.7535 +408322,132.79,89.989638 +408323,131.79,88.2721 +408324,130.82,86.5955 +408325,132.46,91.7932 +408326,131.44,90.016817 +408327,130.46,88.2864 +408328,129.53,86.5968 +408329,131.07,91.8316 +408330,130.08,90.043524 +408331,129.14,88.3012 +408332,128.24,86.5994 +408333,129.68,91.8685 +408334,128.72,90.069756 +408335,127.81,88.3164 +408336,126.94,86.6033 +408337,128.29,91.9041 +408338,127.36,90.095511 +408339,126.49,88.332 +408340,125.65,86.6085 +408341,126.9,91.9382 +408342,126,90.12078 +408343,125.16,88.348 +408344,124.36,86.615 +408345,125.5,91.9709 +408346,124.65,90.14557 +408347,123.84,88.3645 +408348,123.07,86.6228 +408349,124.11,92.0022 +408350,123.29,90.16988 +408351,122.51,88.3814 +408352,121.78,86.6319 +408353,122.71,92.032 +408354,121.93,90.19369 +408355,121.19,88.3987 +408356,120.49,86.6424 +408357,121.32,92.0605 +408358,120.57,90.21701 +408359,119.87,88.4164 +408360,119.2,86.6541 +408361,119.92,92.0874 +408362,119.21,90.23984 +408363,118.54,88.4346 +408364,117.91,86.6672 +408365,118.53,92.113 +408366,117.85,90.26218 +408367,117.22,88.4532 +408368,116.63,86.6817 +408369,117.13,92.137 +408370,116.49,90.28402 +408371,115.89,88.4723 +408372,115.34,86.6975 +408373,115.73,92.1597 +408374,115.13,90.30537 +408375,114.57,88.4917 +408376,114.05,86.7146 +408377,114.33,92.1808 +408378,113.77,90.32622 +408379,113.25,88.5116 +408380,112.76,86.7332 +408381,112.94,92.2006 +408382,112.41,90.34657 +408383,111.92,88.532 +408384,111.48,86.753 +408385,111.54,92.2188 +408386,111.05,90.36642 +408387,110.6,88.5528 +408388,110.19,86.7742 +408389,110.14,92.2356 +408390,109.69,90.38577 +408391,109.28,88.574 +408392,108.9,86.7968 +408393,108.74,92.251 +408394,108.33,90.40463 +408395,107.96,88.5957 +408396,107.62,86.8207 +408397,107.34,92.2649 +408398,106.97,90.42299 +408399,106.63,88.6178 +408400,106.33,86.846 +408401,105.94,92.2774 +408402,105.61,90.44085 +408403,105.31,88.6403 +408404,105.05,86.8727 +408405,104.54,92.2884 +408406,104.24,90.45822 +408407,103.99,88.6633 +408408,103.76,86.9007 +408409,103.14,92.298 +408410,102.88,90.47509 +408411,102.66,88.6867 +408412,102.48,86.9301 +408413,101.74,92.3062 +408414,101.52,90.49147 +408415,101.34,88.7105 +408416,101.19,86.9608 +408417,100.34,92.313 +408418,100.16,90.50736 +408419,100.02,88.7348 +408420,99.905,86.9929 +408421,98.938,92.3183 +408422,98.799,90.52275 +408423,98.694,88.7595 +408424,98.62,87.0263 +408425,97.538,92.3222 +408426,97.437,90.53766 +408427,97.37,88.7846 +408428,97.334,87.061 +408429,96.137,92.3248 +408430,96.076,90.55209 +408431,96.047,88.8102 +408432,96.049,87.0971 +408433,94.736,92.3259 +408434,94.714,90.56603 +408435,94.724,88.8362 +408436,94.763,87.1345 +408437,93.336,92.3256 +408438,93.352,90.57949 +408439,93.401,88.8626 +408440,93.478,87.1732 +408441,91.935,92.324 +408442,91.991,90.59248 +408443,92.077,88.8894 +408444,92.192,87.2132 +408445,90.535,92.3211 +408446,90.629,90.60499 +408447,90.754,88.9166 +408448,90.906,87.2546 +408449,89.134,92.3168 +408450,89.268,90.61703 +408451,89.43,88.9443 +408452,89.62,87.2972 +408453,87.734,92.3111 +408454,87.906,90.62861 +408455,88.107,88.9723 +408456,88.333,87.3411 +408457,86.334,92.3041 +408458,86.545,90.63972 +408459,86.783,89.00074 +408460,87.047,87.3863 +408461,84.934,92.2959 +408462,85.183,90.65038 +408463,85.459,89.02959 +408464,85.76,87.4327 +408465,83.535,92.2863 +408466,83.822,90.66058 +408467,84.135,89.05883 +408468,84.473,87.4804 +408469,82.135,92.2755 +408470,82.46,90.67034 +408471,82.811,89.08846 +408472,83.185,87.5293 +408473,80.737,92.2633 +408474,81.099,90.67965 +408475,81.486,89.11847 +408476,81.897,87.5795 +408477,79.338,92.25 +408478,79.738,90.68852 +408479,80.162,89.14887 +408480,80.609,87.6308 +408481,77.94,92.2354 +408482,78.377,90.69696 +408483,78.837,89.17964 +408484,79.32,87.6834 +408485,76.542,92.2197 +408486,77.016,90.70497 +408487,77.512,89.21078 +408488,78.031,87.7371 +408489,75.145,92.2027 +408490,75.655,90.71255 +408491,76.187,89.24228 +408492,76.741,87.792 +408493,73.748,92.1845 +408494,74.294,90.71973 +408495,74.862,89.27413 +408496,75.451,87.848 +408497,72.351,92.1653 +408498,72.934,90.72649 +408499,73.537,89.30634 +408500,74.16,87.9052 +408501,70.955,92.1448 +408502,71.573,90.73284 +408503,72.211,89.3389 +408504,72.869,87.9634 +408505,69.56,92.1233 +408506,70.213,90.73881 +408507,70.885,89.37179 +408508,71.577,88.0228 +408509,68.165,92.1007 +408510,68.853,90.74437 +408511,69.559,89.40502 +408512,70.284,88.0832 +408513,66.771,92.077 +408514,67.493,90.74956 +408515,68.233,89.43857 +408516,68.991,88.1447 +408517,65.377,92.0522 +408518,66.133,90.75437 +408519,66.906,89.47244 +408520,67.697,88.2072 +408521,63.985,92.0265 +408522,64.773,90.75881 +408523,65.579,89.50662 +408524,66.403,88.2707 +408525,62.592,91.9997 +408526,63.414,90.76289 +408527,64.252,89.5411 +408528,65.108,88.3352 +408529,61.201,91.972 +408530,62.054,90.76661 +408531,62.925,89.57588 +408532,63.812,88.4007 +408533,59.81,91.9433 +408534,60.695,90.76999 +408535,61.597,89.61094 +408536,62.515,88.4672 +408537,58.42,91.9137 +408538,59.336,90.77303 +408539,60.269,89.64629 +408540,61.218,88.5345 +408541,57.031,91.8832 +408542,57.978,90.77573 +408543,58.941,89.6819 +408544,59.92,88.6028 +408545,55.642,91.8518 +408546,56.619,90.77812 +408547,57.613,89.71778 +408548,58.621,88.6719 +408549,54.255,91.8195 +408550,55.261,90.78019 +408551,56.284,89.75392 +408552,57.321,88.7419 +408553,52.868,91.7864 +408554,53.903,90.78195 +408555,54.954,89.7903 +408556,56.02,88.8127 +408557,51.482,91.7526 +408558,52.546,90.78342 +408559,53.625,89.82692 +408560,54.718,88.8843 +408561,50.097,91.7179 +408562,51.188,90.7846 +408563,52.295,89.86377 +408564,53.416,88.9566 +408565,48.713,91.6825 +408566,49.831,90.7855 +408567,50.965,89.900832 +408568,52.112,89.02976 +408569,47.33,91.6464 +408570,48.475,90.78613 +408571,49.634,89.938109 +408572,50.808,89.1036 +408573,45.947,91.6096 +408574,47.118,90.7865 +408575,48.303,89.975587 +408576,49.503,89.17813 +408577,44.566,91.5722 +408578,45.762,90.78662 +408579,46.972,90.013257 +408580,48.196,89.25333 +408581,43.186,91.5341 +408582,44.406,90.7865 +408583,45.64,90.051108 +408584,46.889,89.32917 +408585,41.807,91.4954 +408586,43.05,90.78614 +408587,44.308,90.089131 +408588,45.58,89.40561 +408589,40.428,91.4561 +408590,41.695,90.78556 +408591,42.976,90.12732 +408592,44.271,89.48263 +408593,39.051,91.4163 +408594,40.34,90.78477 +408595,41.643,90.16565 +408596,42.96,89.5602 +408597,37.675,91.376 +408598,38.985,90.78377 +408599,40.31,90.20413 +408600,41.649,89.63829 +408601,36.3,91.3351 +408602,37.631,90.78258 +408603,38.976,90.24275 +408604,40.336,89.71687 +408605,34.926,91.2939 +408606,36.277,90.78121 +408607,37.642,90.28148 +408608,39.022,89.79591 +408609,33.553,91.2521 +408610,34.923,90.77966 +408611,36.308,90.32033 +408612,37.707,89.87537 +408613,32.182,91.21 +408614,33.57,90.77795 +408615,34.973,90.35927 +408616,36.391,89.955238 +408617,30.811,91.1676 +408618,32.217,90.77608 +408619,33.638,90.39831 +408620,35.074,90.035467 +408621,29.441,91.1248 +408622,30.864,90.77407 +408623,32.302,90.43743 +408624,33.756,90.11603 +408625,28.073,91.0816 +408626,29.512,90.77193 +408627,30.966,90.47661 +408628,32.436,90.19689 +408629,26.706,91.0383 +408630,28.16,90.76967 +408631,29.63,90.51586 +408632,31.115,90.27803 +408633,25.34,90.99463 +408634,26.808,90.7673 +408635,28.293,90.55515 +408636,29.794,90.3594 +408637,23.975,90.95079 +408638,25.457,90.76482 +408639,26.956,90.59448 +408640,28.47,90.44098 +408641,22.612,90.90676 +408642,24.106,90.76225 +408643,25.618,90.63383 +408644,27.146,90.52273 +408645,21.249,90.86259 +408646,22.755,90.7596 +408647,24.279,90.6732 +408648,25.82,90.60462 +408649,19.888,90.81829 +408650,21.405,90.75688 +408651,22.941,90.71257 +408652,24.494,90.68661 +408653,18.528,90.77391 +408654,20.056,90.75411 +408655,21.602,90.75194 +408656,23.165,90.76868 +408657,17.169,90.72947 +408658,18.706,90.75128 +408659,20.262,90.79129 +408660,21.836,90.85079 +408661,15.812,90.685 +408662,17.357,90.74841 +408663,18.922,90.83061 +408664,20.505,90.9329 +408665,14.455,90.64054 +408666,16.009,90.74552 +408667,17.582,90.86989 +408668,19.174,91.015 +408669,13.1,90.59611 +408670,14.66,90.74261 +408671,16.241,90.90912 +408672,17.84,91.097 +408673,11.746,90.55176 +408674,13.313,90.73969 +408675,14.899,90.94828 +408676,16.506,91.1789 +408677,10.394,90.5075 +408678,11.965,90.73678 +408679,13.557,90.98738 +408680,15.17,91.2608 +408681,9.0425,90.46337 +408682,10.618,90.73388 +408683,12.215,91.0264 +408684,13.833,91.3424 +408685,7.6924,90.4194 +408686,9.2714,90.73101 +408687,10.872,91.0653 +408688,12.495,91.4238 +408689,6.3435,90.37562 +408690,7.9251,90.72817 +408691,9.5288,91.1041 +408692,11.155,91.5051 +408693,4.9959,90.33206 +408694,6.5792,90.72538 +408695,8.1851,91.1428 +408696,9.8141,91.586 +408697,3.6495,90.28876 +408698,5.2337,90.72265 +408699,6.8409,91.1814 +408700,8.4718,91.6667 +408701,2.3044,90.24574 +408702,3.8886,90.71998 +408703,5.4962,91.2198 +408704,7.1282,91.747 +408705,0.96057,90.20303 +408706,2.5438,90.71739 +408707,4.1511,91.258 +408708,5.7833,91.827 +408709,359.62,90.16066 +408710,1.1995,90.71488 +408711,2.8055,91.2962 +408712,4.4371,91.9065 +408713,358.28,90.11867 +408714,359.86,90.71248 +408715,1.4595,91.3341 +408716,3.0896,91.9857 +408717,356.94,90.077083 +408718,358.51,90.71018 +408719,0.11295,91.3718 +408720,1.7408,92.0643 +408721,355.6,90.035925 +408722,357.17,90.70799 +408723,358.77,91.4094 +408724,0.39064,92.1425 +408725,354.26,89.9952287 +408726,355.83,90.70594 +408727,357.42,91.4468 +408728,359.04,92.2202 +408729,352.92,89.955023 +408730,354.48,90.70403 +408731,356.07,91.4839 +408732,357.69,92.2972 +408733,351.59,89.915336 +408734,353.14,90.70226 +408735,354.72,91.5208 +408736,356.33,92.3737 +408737,350.25,89.8762 +408738,351.8,90.70065 +408739,353.37,91.5575 +408740,354.98,92.4496 +408741,348.92,89.83763 +408742,350.46,90.6992 +408743,352.02,91.5939 +408744,353.62,92.5248 +408745,347.59,89.79967 +408746,349.12,90.69793 +408747,350.67,91.6301 +408748,352.26,92.5993 +408749,346.26,89.76234 +408750,347.78,90.69685 +408751,349.32,91.666 +408752,350.9,92.6731 +408753,344.93,89.72567 +408754,346.44,90.69596 +408755,347.97,91.7017 +408756,349.54,92.7462 +408757,343.6,89.68969 +408758,345.1,90.69528 +408759,346.62,91.737 +408760,348.18,92.8185 +408761,342.27,89.65442 +408762,343.76,90.69481 +408763,345.27,91.7721 +408764,346.82,92.8899 +408765,340.95,89.61989 +408766,342.42,90.69457 +408767,343.92,91.8069 +408768,345.45,92.9606 +408769,339.62,89.58612 +408770,341.08,90.69455 +408771,342.57,91.8413 +408772,344.09,93.0303 +408773,338.3,89.55314 +408774,339.74,90.69478 +408775,341.21,91.8754 +408776,342.72,93.0992 +408777,336.98,89.52097 +408778,338.4,90.69525 +408779,339.86,91.9092 +408780,341.35,93.1671 +408781,335.66,89.48965 +408782,337.07,90.69598 +408783,338.51,91.9426 +408784,339.99,93.2341 +408785,334.34,89.45919 +408786,335.73,90.69697 +408787,337.15,91.9757 +408788,338.61,93.3 +408789,333.02,89.42962 +408790,334.39,90.69824 +408791,335.8,92.0085 +408792,337.24,93.365 +408793,331.7,89.40096 +408794,333.05,90.69979 +408795,334.44,92.0408 +408796,335.87,93.429 +408797,330.38,89.37323 +408798,331.72,90.70163 +408799,333.09,92.0728 +408800,334.5,93.4918 +408801,329.06,89.34646 +408802,330.38,90.70377 +408803,331.73,92.1044 +408804,333.12,93.5536 +408805,327.75,89.32067 +408806,329.05,90.70621 +408807,330.38,92.1357 +408808,331.75,93.6143 +408809,326.44,89.29588 +408810,327.71,90.70896 +408811,329.02,92.1665 +408812,330.37,93.6738 +408813,325.12,89.27212 +408814,326.38,90.71203 +408815,327.66,92.1969 +408816,328.99,93.7322 +408817,323.81,89.24939 +408818,325.04,90.71543 +408819,326.31,92.2269 +408820,327.61,93.7894 +408821,322.5,89.22773 +408822,323.71,90.71916 +408823,324.95,92.2565 +408824,326.23,93.8454 +408825,321.19,89.20715 +408826,322.37,90.72323 +408827,323.59,92.2856 +408828,324.85,93.9002 +408829,319.88,89.18767 +408830,321.04,90.72764 +408831,322.23,92.3143 +408832,323.47,93.9537 +408833,318.57,89.16931 +408834,319.7,90.73241 +408835,320.87,92.3426 +408836,322.09,94.0059 +408837,317.26,89.15209 +408838,318.37,90.73754 +408839,319.52,92.3704 +408840,320.7,94.0568 +408841,315.95,89.13602 +408842,317.04,90.74302 +408843,318.16,92.3977 +408844,319.32,94.1065 +408845,314.65,89.12113 +408846,315.7,90.74888 +408847,316.8,92.4246 +408848,317.93,94.1548 +408849,313.34,89.10742 +408850,314.37,90.75511 +408851,315.44,92.4511 +408852,316.54,94.2017 +408853,312.04,89.09492 +408854,313.04,90.76173 +408855,314.08,92.477 +408856,315.15,94.2473 +408857,310.73,89.08363 +408858,311.71,90.76872 +408859,312.72,92.5025 +408860,313.77,94.2916 +408861,309.43,89.07358 +408862,310.38,90.77611 +408863,311.36,92.5275 +408864,312.38,94.3344 +408865,308.13,89.06478 +408866,309.04,90.78389 +408867,309.99,92.552 +408868,310.99,94.3758 +408869,306.82,89.05723 +408870,307.71,90.79207 +408871,308.63,92.576 +408872,309.59,94.4158 +408873,305.52,89.05096 +408874,306.38,90.80065 +408875,307.27,92.5995 +408876,308.2,94.4543 +408877,304.22,89.04597 +408878,305.05,90.80965 +408879,305.91,92.6225 +408880,306.81,94.4914 +408881,302.92,89.04228 +408882,303.72,90.81905 +408883,304.55,92.645 +408884,305.42,94.527 +408885,301.62,89.0399 +408886,302.39,90.82886 +408887,303.18,92.667 +408888,304.02,94.5612 +408889,300.32,89.03883 +408890,301.06,90.83909 +408891,301.82,92.6885 +408892,302.63,94.5939 +408893,299.03,89.03909 +408894,299.73,90.84975 +408895,300.46,92.7095 +408896,301.23,94.625 +408897,297.73,89.04068 +408898,298.4,90.86082 +408899,299.1,92.7299 +408900,299.84,94.6547 +408901,296.43,89.04362 +408902,297.06,90.87232 +408903,297.73,92.7498 +408904,298.44,94.6829 +408905,295.13,89.04791 +408906,295.73,90.88425 +408907,296.37,92.7692 +408908,297.04,94.7095 +408909,293.84,89.05355 +408910,294.4,90.89661 +408911,295.01,92.7881 +408912,295.65,94.7347 +408913,292.54,89.06056 +408914,293.07,90.90941 +408915,293.64,92.8065 +408916,294.25,94.7582 +408917,291.24,89.06893 +408918,291.74,90.92263 +408919,292.28,92.8243 +408920,292.85,94.7803 +408921,289.95,89.07868 +408922,290.41,90.93629 +408923,290.91,92.8415 +408924,291.45,94.8008 +408925,288.65,89.08981 +408926,289.09,90.95039 +408927,289.55,92.8583 +408928,290.05,94.8198 +408929,287.36,89.10232 +408930,287.76,90.96492 +408931,288.19,92.8745 +408932,288.65,94.8373 +408933,286.06,89.11621 +408934,286.43,90.9799 +408935,286.82,92.8902 +408936,287.25,94.8532 +408937,284.77,89.13148 +408938,285.1,90.99531 +408939,285.46,92.9053 +408940,285.85,94.8675 +408941,283.47,89.14815 +408942,283.77,91.0112 +408943,284.09,92.9199 +408944,284.45,94.8803 +408945,282.18,89.1662 +408946,282.44,91.0274 +408947,282.73,92.934 +408948,283.05,94.8916 +408949,280.88,89.18563 +408950,281.11,91.0442 +408951,281.36,92.9476 +408952,281.65,94.9013 +408953,279.59,89.20645 +408954,279.78,91.0613 +408955,280,92.9606 +408956,280.24,94.9095 +408957,278.29,89.22866 +408958,278.45,91.0789 +408959,278.63,92.973 +408960,278.84,94.9162 +408961,277,89.25225 +408962,277.12,91.097 +408963,277.27,92.985 +408964,277.44,94.9213 +408965,275.71,89.27721 +408966,275.79,91.1154 +408967,275.9,92.9964 +408968,276.04,94.9249 +408969,274.41,89.30356 +408970,274.46,91.1343 +408971,274.53,93.0072 +408972,274.64,94.927 +408973,273.12,89.33127 +408974,273.13,91.1537 +408975,273.17,93.0176 +408976,273.24,94.9276 +408977,271.82,89.36035 +408978,271.8,91.1734 +408979,271.8,93.0274 +408980,271.83,94.9267 +408981,270.53,89.39079 +408982,270.47,91.1936 +408983,270.44,93.0367 +408984,270.43,94.9243 +408985,269.24,89.42258 +408986,269.14,91.2142 +408987,269.07,93.0455 +408988,269.03,94.9204 +408989,267.94,89.45572 +408990,267.81,91.2353 +408991,267.71,93.0537 +408992,267.63,94.915 +408993,266.65,89.4902 +408994,266.48,91.2567 +408995,266.34,93.0615 +408996,266.23,94.9081 +408997,265.35,89.52601 +408998,265.15,91.2786 +408999,264.98,93.0687 +409000,264.82,94.8999 +409001,264.06,89.56313 +409002,263.82,91.3009 +409003,263.61,93.0754 +409004,263.42,94.8901 +409005,262.76,89.60157 +409006,262.49,91.3235 +409007,262.25,93.0817 +409008,262.02,94.879 +409009,261.47,89.64131 +409010,261.16,91.3466 +409011,260.88,93.0874 +409012,260.62,94.8664 +409013,260.17,89.68234 +409014,259.83,91.3701 +409015,259.51,93.0926 +409016,259.22,94.8524 +409017,258.87,89.72465 +409018,258.5,91.394 +409019,258.15,93.0973 +409020,257.82,94.8371 +409021,257.58,89.76822 +409022,257.17,91.4183 +409023,256.78,93.1016 +409024,256.42,94.8204 +409025,256.28,89.81304 +409026,255.84,91.443 +409027,255.42,93.1053 +409028,255.02,94.8023 +409029,254.98,89.8591 +409030,254.51,91.468 +409031,254.05,93.1086 +409032,253.62,94.7829 +409033,253.68,89.906377 +409034,253.18,91.4934 +409035,252.69,93.1114 +409036,252.22,94.7622 +409037,252.39,89.954865 +409038,251.85,91.5192 +409039,251.33,93.1138 +409040,250.82,94.7402 +409041,251.09,90.0045441 +409042,250.52,91.5454 +409043,249.96,93.1157 +409044,249.42,94.7169 +409045,249.79,90.055398 +409046,249.18,91.5719 +409047,248.6,93.1171 +409048,248.03,94.6923 +409049,248.49,90.10741 +409050,247.85,91.5988 +409051,247.23,93.1181 +409052,246.63,94.6665 +409053,247.19,90.16056 +409054,246.52,91.626 +409055,245.87,93.1187 +409056,245.23,94.6395 +409057,245.89,90.21484 +409058,245.19,91.6536 +409059,244.5,93.1188 +409060,243.84,94.6113 +409061,244.58,90.27021 +409062,243.86,91.6814 +409063,243.14,93.1185 +409064,242.44,94.582 +409065,243.28,90.32667 +409066,242.52,91.7097 +409067,241.78,93.1178 +409068,241.04,94.5514 +409069,241.98,90.38419 +409070,241.19,91.7382 +409071,240.41,93.1166 +409072,239.65,94.5198 +409073,240.67,90.44276 +409074,239.86,91.767 +409075,239.05,93.1151 +409076,238.26,94.487 +409077,239.37,90.50234 +409078,238.52,91.7962 +409079,237.69,93.1131 +409080,236.86,94.4532 +409081,238.07,90.56292 +409082,237.19,91.8256 +409083,236.32,93.1108 +409084,235.47,94.4183 +409085,236.76,90.62448 +409086,235.85,91.8554 +409087,234.96,93.1081 +409088,234.08,94.3824 +409089,235.45,90.687 +409090,234.52,91.8854 +409091,233.6,93.105 +409092,232.69,94.3455 +409093,234.14,90.75044 +409094,233.19,91.9157 +409095,232.24,93.1015 +409096,231.3,94.3076 +409097,232.84,90.81479 +409098,231.85,91.9463 +409099,230.88,93.0977 +409100,229.91,94.2688 +409101,231.53,90.88002 +409102,230.52,91.9771 +409103,229.51,93.0936 +409104,228.52,94.2291 +409105,230.22,90.9461 +409106,229.18,92.0081 +409107,228.15,93.0891 +409108,227.13,94.1884 +409109,228.91,91.013 +409110,227.84,92.0394 +409111,226.79,93.0842 +409112,225.75,94.1469 +409113,227.59,91.0807 +409114,226.51,92.0709 +409115,225.43,93.0791 +409116,224.36,94.1045 +409117,226.28,91.1492 +409118,225.17,92.1027 +409119,224.07,93.0736 +409120,222.98,94.0614 +409121,224.97,91.2185 +409122,223.83,92.1346 +409123,222.71,93.0679 +409124,221.59,94.0174 +409125,223.65,91.2885 +409126,222.5,92.1668 +409127,221.35,93.0618 +409128,220.21,93.9727 +409129,222.34,91.3591 +409130,221.16,92.1992 +409131,219.99,93.0555 +409132,218.83,93.9273 +409133,221.02,91.4305 +409134,219.82,92.2317 +409135,218.63,93.0489 +409136,217.45,93.8812 +409137,219.7,91.5024 +409138,218.48,92.2644 +409139,217.27,93.042 +409140,216.07,93.8344 +409141,218.39,91.575 +409142,217.15,92.2972 +409143,215.91,93.0348 +409144,214.69,93.787 +409145,217.07,91.6482 +409146,215.81,92.3303 +409147,214.55,93.0275 +409148,213.31,93.739 +409149,215.75,91.7219 +409150,214.47,92.3634 +409151,213.2,93.0199 +409152,211.93,93.6904 +409153,214.42,91.7961 +409154,213.13,92.3967 +409155,211.84,93.012 +409156,210.56,93.6413 +409157,213.1,91.8708 +409158,211.79,92.4301 +409159,210.48,93.004 +409160,209.18,93.5917 +409161,211.78,91.946 +409162,210.45,92.4636 +409163,209.12,92.9957 +409164,207.81,93.5416 +409165,210.45,92.0216 +409166,209.11,92.4972 +409167,207.77,92.9873 +409168,206.44,93.491 +409169,209.13,92.0976 +409170,207.76,92.5309 +409171,206.41,92.9787 +409172,205.06,93.4401 +409173,207.8,92.174 +409174,206.42,92.5647 +409175,205.05,92.9699 +409176,203.69,93.3887 +409177,206.47,92.2507 +409178,205.08,92.5986 +409179,203.7,92.961 +409180,202.32,93.337 +409181,205.14,92.3277 +409182,203.74,92.6325 +409183,202.34,92.9519 +409184,200.96,93.285 +409185,203.81,92.405 +409186,202.39,92.6664 +409187,200.99,92.9426 +409188,199.59,93.2328 +409189,202.48,92.4825 +409190,201.05,92.7004 +409191,199.63,92.9333 +409192,198.22,93.1802 +409193,201.15,92.5601 +409194,199.71,92.7344 +409195,198.28,92.9238 +409196,196.86,93.1275 +409197,199.81,92.638 +409198,198.36,92.7684 +409199,196.92,92.9142 +409200,195.49,93.0745 +409201,198.48,92.716 +409202,197.02,92.8025 +409203,195.57,92.9045 +409204,194.13,93.0214 +409205,197.14,92.7941 +409206,195.67,92.8365 +409207,194.22,92.8947 +409208,192.77,92.9682 +409209,195.8,92.8723 +409210,194.33,92.8705 +409211,192.86,92.8849 +409212,191.41,92.9149 +409213,194.46,92.9505 +409214,192.98,92.9044 +409215,191.51,92.875 +409216,190.05,92.8615 +409217,193.12,93.0287 +409218,191.64,92.9383 +409219,190.16,92.8651 +409220,188.69,92.8082 +409221,191.78,93.1068 +409222,190.29,92.9722 +409223,188.81,92.8551 +409224,187.34,92.7548 +409225,190.44,93.1849 +409226,188.94,93.006 +409227,187.46,92.8451 +409228,185.98,92.7014 +409229,189.09,93.2629 +409230,187.59,93.0397 +409231,186.11,92.835 +409232,184.63,92.6482 +409233,187.75,93.3407 +409234,186.25,93.0733 +409235,184.76,92.825 +409236,183.27,92.595 +409237,186.4,93.4184 +409238,184.9,93.1068 +409239,183.4,92.8149 +409240,181.92,92.542 +409241,185.06,93.4959 +409242,183.55,93.1402 +409243,182.05,92.8049 +409244,180.57,92.4892 +409245,183.71,93.5731 +409246,182.2,93.1735 +409247,180.71,92.7949 +409248,179.22,92.4365 +409249,182.36,93.65 +409250,180.85,93.2066 +409251,179.36,92.7849 +409252,177.87,92.3841 +409253,181.01,93.7267 +409254,179.5,93.2396 +409255,178.01,92.775 +409256,176.53,92.3319 +409257,179.65,93.803 +409258,178.15,93.2725 +409259,176.66,92.7652 +409260,175.18,92.2801 +409261,178.3,93.8789 +409262,176.8,93.3051 +409263,175.31,92.7554 +409264,173.84,92.2286 +409265,176.94,93.9544 +409266,175.45,93.3376 +409267,173.96,92.7457 +409268,172.49,92.1774 +409269,175.59,94.0295 +409270,174.1,93.3699 +409271,172.62,92.736 +409272,171.15,92.1266 +409273,174.23,94.104 +409274,172.74,93.402 +409275,171.27,92.7265 +409276,169.81,92.0763 +409277,172.87,94.1781 +409278,171.39,93.4339 +409279,169.92,92.7171 +409280,168.47,92.0263 +409281,171.51,94.2516 +409282,170.04,93.4656 +409283,168.58,92.7078 +409284,167.13,91.9769 +409285,170.15,94.3246 +409286,168.68,93.497 +409287,167.23,92.6987 +409288,165.8,91.928 +409289,168.79,94.3969 +409290,167.33,93.5282 +409291,165.89,92.6897 +409292,164.46,91.8796 +409293,167.43,94.4686 +409294,165.98,93.5591 +409295,164.54,92.6808 +409296,163.12,91.8318 +409297,166.06,94.5396 +409298,164.62,93.5898 +409299,163.2,92.6721 +409300,161.79,91.7846 +409301,164.69,94.6098 +409302,163.27,93.6201 +409303,161.85,92.6636 +409304,160.46,91.738 +409305,163.33,94.6794 +409306,161.91,93.6502 +409307,160.51,92.6552 +409308,159.12,91.6921 +409309,161.96,94.7481 +409310,160.55,93.68 +409311,159.17,92.647 +409312,157.79,91.6468 +409313,160.59,94.8161 +409314,159.2,93.7095 +409315,157.82,92.6391 +409316,156.46,91.6023 +409317,159.22,94.8832 +409318,157.84,93.7387 +409319,156.48,92.6313 +409320,155.14,91.5584 +409321,157.85,94.9495 +409322,156.48,93.7675 +409323,155.14,92.6238 +409324,153.81,91.5154 +409325,156.48,95.0149 +409326,155.13,93.796 +409327,153.79,92.6165 +409328,152.48,91.4731 +409329,155.1,95.0793 +409330,153.77,93.8242 +409331,152.45,92.6094 +409332,151.16,91.4317 +409333,153.73,95.1428 +409334,152.41,93.852 +409335,151.11,92.6026 +409336,149.83,91.3911 +409337,152.35,95.2052 +409338,151.05,93.8795 +409339,149.77,92.596 +409340,148.51,91.3513 +409341,150.97,95.2667 +409342,149.69,93.9065 +409343,148.43,92.5897 +409344,147.19,91.3125 +409345,149.6,95.3271 +409346,148.33,93.9332 +409347,147.09,92.5837 +409348,145.86,91.2746 +409349,148.22,95.3865 +409350,146.97,93.9595 +409351,145.75,92.5779 +409352,144.54,91.2376 +409353,146.84,95.4448 +409354,145.61,93.9854 +409355,144.41,92.5724 +409356,143.22,91.2015 +409357,145.46,95.5019 +409358,144.25,94.0109 +409359,143.07,92.5672 +409360,141.91,91.1665 +409361,144.07,95.5579 +409362,142.89,94.036 +409363,141.73,92.5624 +409364,140.59,91.1324 +409365,142.69,95.6127 +409366,141.53,94.0606 +409367,140.39,92.5578 +409368,139.27,91.0994 +409369,141.31,95.6663 +409370,140.17,94.0848 +409371,139.05,92.5535 +409372,137.95,91.0674 +409373,139.92,95.7187 +409374,138.81,94.1086 +409375,137.71,92.5496 +409376,136.64,91.0365 +409377,138.54,95.7698 +409378,137.44,94.1319 +409379,136.37,92.546 +409380,135.33,91.0067 +409381,137.15,95.8197 +409382,136.08,94.1548 +409383,135.04,92.5428 +409384,134.01,90.97801 +409385,135.76,95.8682 +409386,134.72,94.1772 +409387,133.7,92.5399 +409388,132.7,90.95043 +409389,134.37,95.9155 +409390,133.35,94.1991 +409391,132.36,92.5373 +409392,131.39,90.924 +409393,132.98,95.9614 +409394,131.99,94.2206 +409395,131.02,92.5351 +409396,130.08,90.89873 +409397,131.59,96.0059 +409398,130.63,94.2416 +409399,129.69,92.5332 +409400,128.77,90.87464 +409401,130.2,96.0491 +409402,129.26,94.2621 +409403,128.35,92.5318 +409404,127.46,90.85176 +409405,128.81,96.0909 +409406,127.9,94.2821 +409407,127.01,92.5307 +409408,126.15,90.83008 +409409,127.42,96.1313 +409410,126.54,94.3016 +409411,125.68,92.5299 +409412,124.84,90.80963 +409413,126.02,96.1702 +409414,125.17,94.3206 +409415,124.34,92.5296 +409416,123.53,90.79043 +409417,124.63,96.2077 +409418,123.81,94.339 +409419,123,92.5297 +409420,122.22,90.77249 +409421,123.24,96.2437 +409422,122.44,94.357 +409423,121.67,92.5301 +409424,120.92,90.75582 +409425,121.84,96.2783 +409426,121.08,94.3745 +409427,120.33,92.5309 +409428,119.61,90.74043 +409429,120.44,96.3113 +409430,119.71,94.3914 +409431,119,92.5322 +409432,118.31,90.72635 +409433,119.05,96.3429 +409434,118.34,94.4078 +409435,117.66,92.5338 +409436,117,90.71357 +409437,117.65,96.3729 +409438,116.98,94.4236 +409439,116.33,92.5359 +409440,115.7,90.70211 +409441,116.25,96.4014 +409442,115.61,94.439 +409443,114.99,92.5384 +409444,114.39,90.69198 +409445,114.86,96.4284 +409446,114.25,94.4538 +409447,113.66,92.5413 +409448,113.09,90.68319 +409449,113.46,96.4538 +409450,112.88,94.468 +409451,112.32,92.5446 +409452,111.79,90.67575 +409453,112.06,96.4776 +409454,111.51,94.4817 +409455,110.99,92.5483 +409456,110.48,90.66967 +409457,110.66,96.4999 +409458,110.14,94.4948 +409459,109.65,92.5525 +409460,109.18,90.66496 +409461,109.26,96.5205 +409462,108.78,94.5074 +409463,108.32,92.5571 +409464,107.88,90.66161 +409465,107.86,96.5396 +409466,107.41,94.5195 +409467,106.98,92.5621 +409468,106.58,90.65965 +409469,106.46,96.5571 +409470,106.04,94.5309 +409471,105.65,92.5675 +409472,105.28,90.65907 +409473,105.06,96.5731 +409474,104.68,94.5419 +409475,104.32,92.5734 +409476,103.97,90.65988 +409477,103.66,96.5874 +409478,103.31,94.5522 +409479,102.98,92.5797 +409480,102.67,90.66208 +409481,102.25,96.6001 +409482,101.94,94.562 +409483,101.65,92.5865 +409484,101.37,90.66568 +409485,100.85,96.6112 +409486,100.57,94.5713 +409487,100.31,92.5937 +409488,100.07,90.67068 +409489,99.45,96.6207 +409490,99.205,94.5799 +409491,98.98,92.6013 +409492,98.772,90.67708 +409493,98.048,96.6285 +409494,97.837,94.588 +409495,97.646,92.6094 +409496,97.471,90.68489 +409497,96.645,96.6348 +409498,96.47,94.5956 +409499,96.312,92.6179 +409500,96.171,90.6941 +409501,95.243,96.6395 +409502,95.102,94.6026 +409503,94.979,92.6268 +409504,94.871,90.70472 +409505,93.84,96.6425 +409506,93.734,94.609 +409507,93.645,92.6362 +409508,93.571,90.71674 +409509,92.438,96.644 +409510,92.366,94.6149 +409511,92.311,92.646 +409512,92.271,90.73016 +409513,91.035,96.6438 +409514,90.997,94.6202 +409515,90.977,92.6563 +409516,90.971,90.74499 +409517,89.632,96.6421 +409518,89.629,94.6249 +409519,89.643,92.667 +409520,89.671,90.76121 +409521,88.23,96.6387 +409522,88.261,94.6291 +409523,88.309,92.6781 +409524,88.371,90.77883 +409525,86.827,96.6338 +409526,86.893,94.6327 +409527,86.975,92.6896 +409528,87.07,90.79784 +409529,85.424,96.6273 +409530,85.525,94.6358 +409531,85.641,92.7016 +409532,85.77,90.81823 +409533,84.022,96.6192 +409534,84.157,94.6383 +409535,84.307,92.714 +409536,84.469,90.84001 +409537,82.62,96.6096 +409538,82.789,94.6403 +409539,82.973,92.7269 +409540,83.169,90.86315 +409541,81.217,96.5984 +409542,81.421,94.6417 +409543,81.638,92.7401 +409544,81.868,90.88767 +409545,79.815,96.5857 +409546,80.053,94.6425 +409547,80.304,92.7538 +409548,80.567,90.91355 +409549,78.414,96.5714 +409550,78.685,94.6429 +409551,78.97,92.7679 +409552,79.265,90.94077 +409553,77.012,96.5556 +409554,77.318,94.6427 +409555,77.635,92.7824 +409556,77.964,90.96934 +409557,75.611,96.5383 +409558,75.95,94.6419 +409559,76.3,92.7973 +409560,76.662,90.99924 +409561,74.21,96.5196 +409562,74.582,94.6407 +409563,74.966,92.8127 +409564,75.359,91.0305 +409565,72.809,96.4993 +409566,73.215,94.6389 +409567,73.631,92.8284 +409568,74.057,91.063 +409569,71.409,96.4776 +409570,71.847,94.6365 +409571,72.296,92.8445 +409572,72.753,91.0968 +409573,70.009,96.4544 +409574,70.48,94.6337 +409575,70.96,92.8611 +409576,71.45,91.132 +409577,68.61,96.4298 +409578,69.113,94.6304 +409579,69.625,92.878 +409580,70.146,91.1684 +409581,67.211,96.4038 +409582,67.746,94.6265 +409583,68.29,92.8953 +409584,68.842,91.206 +409585,65.812,96.3764 +409586,66.379,94.6221 +409587,66.954,92.9129 +409588,67.537,91.2449 +409589,64.414,96.3476 +409590,65.012,94.6173 +409591,65.618,92.931 +409592,66.231,91.2851 +409593,63.017,96.3175 +409594,63.646,94.612 +409595,64.282,92.9494 +409596,64.926,91.3264 +409597,61.62,96.286 +409598,62.279,94.6061 +409599,62.946,92.9682 +409600,63.619,91.369 +409601,60.224,96.2532 +409602,60.913,94.5998 +409603,61.609,92.9873 +409604,62.312,91.4127 +409605,58.828,96.2191 +409606,59.547,94.5931 +409607,60.272,93.0068 +409608,61.004,91.4576 +409609,57.433,96.1837 +409610,58.181,94.5858 +409611,58.936,93.0267 +409612,59.696,91.5037 +409613,56.038,96.1471 +409614,56.815,94.5781 +409615,57.598,93.0468 +409616,58.387,91.5508 +409617,54.644,96.1093 +409618,55.45,94.57 +409619,56.261,93.0673 +409620,57.077,91.5991 +409621,53.251,96.0702 +409622,54.085,94.5614 +409623,54.923,93.0882 +409624,55.767,91.6485 +409625,51.859,96.03 +409626,52.72,94.5524 +409627,53.586,93.1093 +409628,54.456,91.6989 +409629,50.467,95.9886 +409630,51.355,94.5429 +409631,52.247,93.1308 +409632,53.144,91.7504 +409633,49.076,95.9461 +409634,49.99,94.533 +409635,50.909,93.1525 +409636,51.832,91.803 +409637,47.686,95.9025 +409638,48.626,94.5228 +409639,49.57,93.1746 +409640,50.518,91.8565 +409641,46.297,95.8578 +409642,47.262,94.5121 +409643,48.231,93.1969 +409644,49.204,91.911 +409645,44.908,95.812 +409646,45.898,94.501 +409647,46.892,93.2195 +409648,47.889,91.9665 +409649,43.52,95.7653 +409650,44.535,94.4895 +409651,45.553,93.2424 +409652,46.574,92.0229 +409653,42.134,95.7175 +409654,43.172,94.4777 +409655,44.213,93.2655 +409656,45.257,92.0802 +409657,40.748,95.6688 +409658,41.809,94.4655 +409659,42.873,93.2889 +409660,43.939,92.1384 +409661,39.363,95.6191 +409662,40.446,94.4529 +409663,41.532,93.3126 +409664,42.621,92.1974 +409665,37.979,95.5685 +409666,39.084,94.44 +409667,40.192,93.3364 +409668,41.302,92.2573 +409669,36.595,95.517 +409670,37.722,94.4268 +409671,38.85,93.3605 +409672,39.981,92.318 +409673,35.213,95.4647 +409674,36.36,94.4132 +409675,37.509,93.3848 +409676,38.66,92.3795 +409677,33.832,95.4116 +409678,34.998,94.3993 +409679,36.167,93.4093 +409680,37.338,92.4418 +409681,32.452,95.3577 +409682,33.637,94.385 +409683,34.825,93.4341 +409684,36.015,92.5047 +409685,31.072,95.303 +409686,32.276,94.3705 +409687,33.483,93.459 +409688,34.691,92.5684 +409689,29.694,95.2476 +409690,30.916,94.3557 +409691,32.14,93.484 +409692,33.366,92.6327 +409693,28.317,95.1915 +409694,29.556,94.3406 +409695,30.797,93.5093 +409696,32.039,92.6977 +409697,26.941,95.1348 +409698,28.196,94.3252 +409699,29.453,93.5347 +409700,30.712,92.7633 +409701,25.566,95.0774 +409702,26.836,94.3096 +409703,28.11,93.5602 +409704,29.384,92.8295 +409705,24.192,95.0194 +409706,25.477,94.2937 +409707,26.765,93.5859 +409708,28.055,92.8962 +409709,22.819,94.9608 +409710,24.119,94.2776 +409711,25.421,93.6118 +409712,26.724,92.9635 +409713,21.447,94.9017 +409714,22.76,94.2613 +409715,24.076,93.6377 +409716,25.393,93.0312 +409717,20.076,94.8422 +409718,21.402,94.2447 +409719,22.731,93.6637 +409720,24.06,93.0994 +409721,18.706,94.7821 +409722,20.044,94.228 +409723,21.385,93.6898 +409724,22.727,93.1681 +409725,17.338,94.7216 +409726,18.687,94.211 +409727,20.039,93.7161 +409728,21.392,93.2371 +409729,15.97,94.6607 +409730,17.33,94.1939 +409731,18.692,93.7423 +409732,20.056,93.3065 +409733,14.604,94.5995 +409734,15.973,94.1765 +409735,17.346,93.7687 +409736,18.719,93.3763 +409737,13.239,94.5379 +409738,14.617,94.1591 +409739,15.998,93.7951 +409740,17.381,93.4463 +409741,11.875,94.476 +409742,13.261,94.1414 +409743,14.651,93.8215 +409744,16.041,93.5167 +409745,10.512,94.4138 +409746,11.906,94.1236 +409747,13.303,93.848 +409748,14.701,93.5872 +409749,9.15,94.3514 +409750,10.551,94.1057 +409751,11.954,93.8745 +409752,13.359,93.658 +409753,7.7895,94.2888 +409754,9.1959,94.0877 +409755,10.605,93.901 +409756,12.016,93.7289 +409757,6.4301,94.226 +409758,7.8416,94.0696 +409759,9.2562,93.9275 +409760,10.672,93.8 +409761,5.0719,94.1631 +409762,6.4876,94.0514 +409763,7.9066,93.9539 +409764,9.3273,93.8711 +409765,3.7149,94.1001 +409766,5.134,94.033 +409767,6.5566,93.9804 +409768,7.9809,93.9424 +409769,2.359,94.0371 +409770,3.7808,94.0147 +409771,5.2062,94.0068 +409772,6.6334,94.0137 +409773,1.0044,93.974 +409774,2.428,93.9962 +409775,3.8553,94.0331 +409776,5.2847,94.085 +409777,359.65,93.9109 +409778,1.0756,93.9777 +409779,2.5041,94.0594 +409780,3.9348,94.1562 +409781,358.3,93.8478 +409782,359.72,93.9592 +409783,1.1525,94.0857 +409784,2.5838,94.2274 +409785,356.95,93.7849 +409786,358.37,93.9406 +409787,359.8,94.1118 +409788,1.2315,94.2985 +409789,355.6,93.722 +409790,357.02,93.922 +409791,358.45,94.1378 +409792,359.88,94.3695 +409793,354.25,93.6592 +409794,355.67,93.9035 +409795,357.1,94.1638 +409796,358.52,94.4402 +409797,352.9,93.5966 +409798,354.32,93.8849 +409799,355.74,94.1896 +409800,357.17,94.5108 +409801,351.55,93.5343 +409802,352.97,93.8663 +409803,354.39,94.2152 +409804,355.81,94.5812 +409805,350.21,93.4721 +409806,351.62,93.8478 +409807,353.03,94.2408 +409808,354.45,94.6513 +409809,348.87,93.4102 +409810,350.27,93.8293 +409811,351.68,94.2662 +409812,353.09,94.721 +409813,347.52,93.3486 +409814,348.92,93.8108 +409815,350.32,94.2914 +409816,351.73,94.7905 +409817,346.18,93.2874 +409818,347.57,93.7925 +409819,348.97,94.3164 +409820,350.37,94.8595 +409821,344.84,93.2265 +409822,346.22,93.7742 +409823,347.61,94.3413 +409824,349.01,94.9282 +409825,343.5,93.166 +409826,344.88,93.7559 +409827,346.26,94.366 +409828,347.64,94.9964 +409829,342.16,93.1059 +409830,343.53,93.7378 +409831,344.9,94.3904 +409832,346.28,95.0641 +409833,340.82,93.0463 +409834,342.18,93.7198 +409835,343.54,94.4147 +409836,344.91,95.1314 +409837,339.49,92.9871 +409838,340.84,93.7018 +409839,342.19,94.4387 +409840,343.54,95.198 +409841,338.15,92.9285 +409842,339.49,93.684 +409843,340.83,94.4624 +409844,342.18,95.2642 +409845,336.82,92.8704 +409846,338.14,93.6664 +409847,339.47,94.4859 +409848,340.81,95.3297 +409849,335.49,92.8129 +409850,336.8,93.6489 +409851,338.11,94.5092 +409852,339.44,95.3945 +409853,334.15,92.756 +409854,335.45,93.6315 +409855,336.76,94.5321 +409856,338.06,95.4587 +409857,332.82,92.6998 +409858,334.11,93.6143 +409859,335.4,94.5548 +409860,336.69,95.5222 +409861,331.49,92.6442 +409862,332.76,93.5973 +409863,334.04,94.5772 +409864,335.32,95.5849 +409865,330.17,92.5893 +409866,331.42,93.5805 +409867,332.68,94.5993 +409868,333.94,95.6469 +409869,328.84,92.5351 +409870,330.07,93.5639 +409871,331.32,94.6211 +409872,332.57,95.708 +409873,327.51,92.4816 +409874,328.73,93.5474 +409875,329.96,94.6425 +409876,331.19,95.7684 +409877,326.19,92.4289 +409878,327.39,93.5312 +409879,328.6,94.6637 +409880,329.81,95.8278 +409881,324.86,92.3771 +409882,326.04,93.5152 +409883,327.23,94.6844 +409884,328.43,95.8864 +409885,323.54,92.326 +409886,324.7,93.4995 +409887,325.87,94.7048 +409888,327.05,95.944 +409889,322.21,92.2758 +409890,323.36,93.4839 +409891,324.51,94.7249 +409892,325.67,96.0007 +409893,320.89,92.2265 +409894,322.02,93.4687 +409895,323.15,94.7446 +409896,324.29,96.0564 +409897,319.57,92.1781 +409898,320.68,93.4537 +409899,321.79,94.7639 +409900,322.9,96.1111 +409901,318.25,92.1306 +409902,319.34,93.4389 +409903,320.42,94.7828 +409904,321.52,96.1648 +409905,316.93,92.0841 +409906,317.99,93.4245 +409907,319.06,94.8013 +409908,320.13,96.2174 +409909,315.62,92.0385 +409910,316.65,93.4103 +409911,317.7,94.8194 +409912,318.75,96.2688 +409913,314.3,91.994 +409914,315.31,93.3964 +409915,316.33,94.8371 +409916,317.36,96.3192 +409917,312.98,91.9504 +409918,313.97,93.3828 +409919,314.97,94.8544 +409920,315.97,96.3684 +409921,311.67,91.9079 +409922,312.63,93.3695 +409923,313.61,94.8712 +409924,314.58,96.4164 +409925,310.35,91.8665 +409926,311.29,93.3565 +409927,312.24,94.8876 +409928,313.2,96.4633 +409929,309.04,91.8261 +409930,309.95,93.3439 +409931,310.88,94.9035 +409932,311.81,96.5089 +409933,307.72,91.7868 +409934,308.61,93.3316 +409935,309.51,94.919 +409936,310.41,96.5532 +409937,306.41,91.7487 +409938,307.28,93.3196 +409939,308.15,94.934 +409940,309.02,96.5963 +409941,305.1,91.7117 +409942,305.94,93.308 +409943,306.78,94.9486 +409944,307.63,96.6381 +409945,303.79,91.6759 +409946,304.6,93.2967 +409947,305.41,94.9626 +409948,306.24,96.6785 +409949,302.48,91.6412 +409950,303.26,93.2857 +409951,304.05,94.9762 +409952,304.84,96.7176 +409953,301.17,91.6077 +409954,301.92,93.2752 +409955,302.68,94.9893 +409956,303.45,96.7554 +409957,299.86,91.5755 +409958,300.58,93.265 +409959,301.32,95.0019 +409960,302.05,96.7917 +409961,298.55,91.5445 +409962,299.25,93.2551 +409963,299.95,95.014 +409964,300.66,96.8267 +409965,297.24,91.5147 +409966,297.91,93.2457 +409967,298.58,95.0256 +409968,299.26,96.8603 +409969,295.93,91.4861 +409970,296.57,93.2366 +409971,297.22,95.0367 +409972,297.86,96.8924 +409973,294.63,91.4589 +409974,295.23,93.2279 +409975,295.85,95.0472 +409976,296.47,96.923 +409977,293.32,91.4329 +409978,293.9,93.2196 +409979,294.48,95.0573 +409980,295.07,96.9522 +409981,292.01,91.4082 +409982,292.56,93.2117 +409983,293.11,95.0668 +409984,293.67,96.9799 +409985,290.71,91.3848 +409986,291.22,93.2042 +409987,291.75,95.0757 +409988,292.27,97.0061 +409989,289.4,91.3628 +409990,289.89,93.1971 +409991,290.38,95.0842 +409992,290.87,97.0307 +409993,288.1,91.3421 +409994,288.55,93.1905 +409995,289.01,95.092 +409996,289.47,97.0539 +409997,286.79,91.3227 +409998,287.22,93.1842 +409999,287.64,95.0994 +410000,288.07,97.0755 +410001,285.49,91.3047 +410002,285.88,93.1784 +410003,286.27,95.1062 +410004,286.67,97.0955 +410005,284.18,91.288 +410006,284.54,93.1729 +410007,284.91,95.1124 +410008,285.27,97.114 +410009,282.88,91.2727 +410010,283.21,93.1679 +410011,283.54,95.1181 +410012,283.87,97.1309 +410013,281.58,91.2588 +410014,281.87,93.1633 +410015,282.17,95.1232 +410016,282.47,97.1462 +410017,280.27,91.2462 +410018,280.54,93.1592 +410019,280.8,95.1278 +410020,281.06,97.1599 +410021,278.97,91.2351 +410022,279.2,93.1555 +410023,279.43,95.1318 +410024,279.66,97.172 +410025,277.67,91.2253 +410026,277.87,93.1522 +410027,278.06,95.1352 +410028,278.26,97.1825 +410029,276.37,91.217 +410030,276.53,93.1493 +410031,276.69,95.1381 +410032,276.86,97.1913 +410033,275.06,91.21 +410034,275.19,93.1469 +410035,275.32,95.1404 +410036,275.46,97.1986 +410037,273.76,91.2044 +410038,273.86,93.1449 +410039,273.96,95.1421 +410040,274.05,97.2042 +410041,272.46,91.2003 +410042,272.52,93.1433 +410043,272.59,95.1432 +410044,272.65,97.2082 +410045,271.16,91.1975 +410046,271.19,93.1422 +410047,271.22,95.1438 +410048,271.25,97.2106 +410049,269.86,91.1962 +410050,269.85,93.1415 +410051,269.85,95.1438 +410052,269.84,97.2113 +410053,268.55,91.1963 +410054,268.52,93.1413 +410055,268.48,95.1432 +410056,268.44,97.2104 +410057,267.25,91.1978 +410058,267.18,93.1415 +410059,267.11,95.1421 +410060,267.04,97.2079 +410061,265.95,91.2007 +410062,265.85,93.1421 +410063,265.74,95.1404 +410064,265.64,97.2038 +410065,264.65,91.205 +410066,264.51,93.1432 +410067,264.37,95.1381 +410068,264.23,97.198 +410069,263.34,91.2107 +410070,263.18,93.1447 +410071,263,95.1353 +410072,262.83,97.1906 +410073,262.04,91.2178 +410074,261.84,93.1466 +410075,261.64,95.1318 +410076,261.43,97.1815 +410077,260.74,91.2264 +410078,260.5,93.149 +410079,260.27,95.1278 +410080,260.03,97.1709 +410081,259.44,91.2363 +410082,259.17,93.1518 +410083,258.9,95.1233 +410084,258.62,97.1586 +410085,258.13,91.2476 +410086,257.83,93.1551 +410087,257.53,95.1182 +410088,257.22,97.1447 +410089,256.83,91.2602 +410090,256.5,93.1587 +410091,256.16,95.1125 +410092,255.82,97.1293 +410093,255.53,91.2743 +410094,255.16,93.1628 +410095,254.79,95.1062 +410096,254.42,97.1122 +410097,254.22,91.2897 +410098,253.83,93.1673 +410099,253.42,95.0994 +410100,253.02,97.0936 +410101,252.92,91.3065 +410102,252.49,93.1723 +410103,252.06,95.0921 +410104,251.62,97.0734 +410105,251.61,91.3247 +410106,251.15,93.1776 +410107,250.69,95.0842 +410108,250.22,97.0516 +410109,250.31,91.3442 +410110,249.82,93.1834 +410111,249.32,95.0757 +410112,248.82,97.0283 +410113,249,91.365 +410114,248.48,93.1896 +410115,247.95,95.0667 +410116,247.42,97.0034 +410117,247.7,91.3871 +410118,247.14,93.1961 +410119,246.58,95.0572 +410120,246.02,96.977 +410121,246.39,91.4106 +410122,245.81,93.2031 +410123,245.22,95.0471 +410124,244.62,96.9491 +410125,245.09,91.4354 +410126,244.47,93.2105 +410127,243.85,95.0365 +410128,243.22,96.9197 +410129,243.78,91.4614 +410130,243.13,93.2183 +410131,242.48,95.0254 +410132,241.83,96.8889 +410133,242.47,91.4887 +410134,241.8,93.2264 +410135,241.12,95.0137 +410136,240.43,96.8566 +410137,241.16,91.5173 +410138,240.46,93.235 +410139,239.75,95.0016 +410140,239.03,96.8228 +410141,239.85,91.5471 +410142,239.12,93.2439 +410143,238.38,94.9889 +410144,237.64,96.7876 +410145,238.54,91.5782 +410146,237.78,93.2532 +410147,237.02,94.9757 +410148,236.24,96.751 +410149,237.23,91.6105 +410150,236.45,93.2629 +410151,235.65,94.962 +410152,234.85,96.713 +410153,235.92,91.6439 +410154,235.11,93.273 +410155,234.28,94.9479 +410156,233.45,96.6736 +410157,234.61,91.6786 +410158,233.77,93.2834 +410159,232.92,94.9332 +410160,232.06,96.6329 +410161,233.3,91.7144 +410162,232.43,93.2941 +410163,231.55,94.9181 +410164,230.67,96.5908 +410165,231.99,91.7514 +410166,231.09,93.3052 +410167,230.19,94.9024 +410168,229.28,96.5475 +410169,230.67,91.7895 +410170,229.75,93.3166 +410171,228.82,94.8864 +410172,227.89,96.5029 +410173,229.36,91.8286 +410174,228.41,93.3284 +410175,227.46,94.8698 +410176,226.5,96.457 +410177,228.05,91.8689 +410178,227.07,93.3405 +410179,226.09,94.8529 +410180,225.11,96.4098 +410181,226.73,91.9103 +410182,225.73,93.3529 +410183,224.73,94.8354 +410184,223.72,96.3615 +410185,225.41,91.9527 +410186,224.39,93.3656 +410187,223.37,94.8176 +410188,222.33,96.312 +410189,224.1,91.9961 +410190,223.05,93.3786 +410191,222,94.7993 +410192,220.94,96.2613 +410193,222.78,92.0405 +410194,221.71,93.3919 +410195,220.64,94.7806 +410196,219.56,96.2095 +410197,221.46,92.0859 +410198,220.37,93.4055 +410199,219.28,94.7615 +410200,218.17,96.1565 +410201,220.14,92.1323 +410202,219.03,93.4194 +410203,217.91,94.7419 +410204,216.79,96.1025 +410205,218.82,92.1796 +410206,217.69,93.4335 +410207,216.55,94.722 +410208,215.41,96.0475 +410209,217.5,92.2278 +410210,216.35,93.4479 +410211,215.19,94.7017 +410212,214.02,95.9914 +410213,216.17,92.2769 +410214,215,93.4626 +410215,213.83,94.6811 +410216,212.64,95.9343 +410217,214.85,92.3268 +410218,213.66,93.4775 +410219,212.47,94.66 +410220,211.26,95.8763 +410221,213.53,92.3776 +410222,212.32,93.4926 +410223,211.11,94.6386 +410224,209.88,95.8173 +410225,212.2,92.4292 +410226,210.98,93.508 +410227,209.74,94.6169 +410228,208.51,95.7574 +410229,210.87,92.4816 +410230,209.63,93.5236 +410231,208.38,94.5948 +410232,207.13,95.6967 +410233,209.55,92.5347 +410234,208.29,93.5394 +410235,207.02,94.5724 +410236,205.75,95.6351 +410237,208.22,92.5886 +410238,206.94,93.5554 +410239,205.66,94.5497 +410240,204.38,95.5726 +410241,206.89,92.6431 +410242,205.6,93.5715 +410243,204.31,94.5266 +410244,203,95.5094 +410245,205.56,92.6983 +410246,204.26,93.5879 +410247,202.95,94.5033 +410248,201.63,95.4455 +410249,204.22,92.7542 +410250,202.91,93.6044 +410251,201.59,94.4797 +410252,200.26,95.3808 +410253,202.89,92.8107 +410254,201.56,93.6211 +410255,200.23,94.4558 +410256,198.89,95.3155 +410257,201.56,92.8678 +410258,200.22,93.638 +410259,198.87,94.4316 +410260,197.52,95.2495 +410261,200.22,92.9254 +410262,198.87,93.6549 +410263,197.52,94.4072 +410264,196.15,95.1829 +410265,198.89,92.9835 +410266,197.53,93.672 +410267,196.16,94.3826 +410268,194.79,95.1156 +410269,197.55,93.0422 +410270,196.18,93.6893 +410271,194.8,94.3577 +410272,193.42,95.0479 +410273,196.21,93.1013 +410274,194.83,93.7066 +410275,193.45,94.3326 +410276,192.05,94.9796 +410277,194.87,93.1608 +410278,193.48,93.724 +410279,192.09,94.3072 +410280,190.69,94.9108 +410281,193.53,93.2207 +410282,192.14,93.7415 +410283,190.73,94.2817 +410284,189.33,94.8416 +410285,192.19,93.281 +410286,190.79,93.7591 +410287,189.38,94.256 +410288,187.97,94.772 +410289,190.85,93.3417 +410290,189.44,93.7768 +410291,188.02,94.2301 +410292,186.61,94.7019 +410293,189.5,93.4027 +410294,188.09,93.7945 +410295,186.67,94.204 +410296,185.25,94.6316 +410297,188.16,93.4639 +410298,186.74,93.8122 +410299,185.32,94.1778 +410300,183.89,94.5609 +410301,186.81,93.5254 +410302,185.39,93.83 +410303,183.96,94.1515 +410304,182.53,94.4899 +410305,185.46,93.587 +410306,184.04,93.8478 +410307,182.61,94.125 +410308,181.18,94.4187 +410309,184.11,93.6489 +410310,182.69,93.8656 +410311,181.26,94.0983 +410312,179.82,94.3472 +410313,182.76,93.7109 +410314,181.34,93.8834 +410315,179.9,94.0716 +410316,178.47,94.2756 +410317,181.41,93.773 +410318,179.99,93.9012 +410319,178.55,94.0448 +410320,177.12,94.2039 +410321,180.06,93.8352 +410322,178.63,93.919 +410323,177.2,94.0179 +410324,175.77,94.132 +410325,178.71,93.8975 +410326,177.28,93.9368 +410327,175.85,93.9909 +410328,174.42,94.0601 +410329,177.35,93.9598 +410330,175.93,93.9545 +410331,174.5,93.9638 +410332,173.07,93.9881 +410333,176,94.022 +410334,174.58,93.9721 +410335,173.15,93.9367 +410336,171.72,93.9161 +410337,174.64,94.0842 +410338,173.22,93.9897 +410339,171.8,93.9096 +410340,170.38,93.8441 +410341,173.28,94.1463 +410342,171.87,94.0072 +410343,170.45,93.8824 +410344,169.03,93.7722 +410345,171.92,94.2083 +410346,170.51,94.0246 +410347,169.1,93.8552 +410348,167.69,93.7004 +410349,170.56,94.2701 +410350,169.16,94.0419 +410351,167.75,93.828 +410352,166.35,93.6287 +410353,169.2,94.3317 +410354,167.8,94.059 +410355,166.41,93.8007 +410356,165,93.5572 +410357,167.84,94.3931 +410358,166.45,94.0761 +410359,165.06,93.7736 +410360,163.66,93.4859 +410361,166.47,94.4543 +410362,165.09,94.093 +410363,163.71,93.7464 +410364,162.33,93.4148 +410365,165.11,94.5151 +410366,163.74,94.1098 +410367,162.36,93.7193 +410368,160.99,93.3439 +410369,163.74,94.5757 +410370,162.38,94.1264 +410371,161.02,93.6922 +410372,159.65,93.2734 +410373,162.37,94.6359 +410374,161.02,94.1429 +410375,159.67,93.6652 +410376,158.32,93.2031 +410377,161.01,94.6957 +410378,159.67,94.1591 +410379,158.32,93.6382 +410380,156.98,93.1333 +410381,159.64,94.755 +410382,158.31,94.1752 +410383,156.98,93.6113 +410384,155.65,93.0638 +410385,158.26,94.814 +410386,156.95,94.1911 +410387,155.63,93.5845 +410388,154.32,92.9948 +410389,156.89,94.8724 +410390,155.59,94.2067 +410391,154.29,93.5579 +410392,152.98,92.9262 +410393,155.52,94.9303 +410394,154.23,94.2222 +410395,152.95,93.5313 +410396,151.65,92.858 +410397,154.15,94.9877 +410398,152.87,94.2374 +410399,151.6,93.5049 +410400,150.33,92.7904 +410401,152.77,95.0444 +410402,151.52,94.2523 +410403,150.26,93.4786 +410404,149,92.7234 +410405,151.39,95.1006 +410406,150.16,94.267 +410407,148.91,93.4524 +410408,147.67,92.6569 +410409,150.02,95.1561 +410410,148.8,94.2815 +410411,147.57,93.4264 +410412,146.35,92.591 +410413,148.64,95.2109 +410414,147.44,94.2956 +410415,146.23,93.4005 +410416,145.02,92.5258 +410417,147.26,95.265 +410418,146.08,94.3095 +410419,144.89,93.3749 +410420,143.7,92.4612 +410421,145.88,95.3184 +410422,144.71,94.3231 +410423,143.55,93.3494 +410424,142.37,92.3973 +410425,144.5,95.3709 +410426,143.35,94.3363 +410427,142.2,93.3241 +410428,141.05,92.3341 +410429,143.12,95.4227 +410430,141.99,94.3493 +410431,140.86,93.299 +410432,139.73,92.2717 +410433,141.73,95.4737 +410434,140.63,94.3619 +410435,139.52,93.2741 +410436,138.41,92.2101 +410437,140.35,95.5237 +410438,139.27,94.3742 +410439,138.18,93.2495 +410440,137.09,92.1492 +410441,138.96,95.5729 +410442,137.9,94.3861 +410443,136.84,93.2251 +410444,135.77,92.0892 +410445,137.58,95.6212 +410446,136.54,94.3977 +410447,135.5,93.2009 +410448,134.46,92.03 +410449,136.19,95.6684 +410450,135.18,94.409 +410451,134.16,93.177 +410452,133.14,91.9718 +410453,134.8,95.7148 +410454,133.82,94.4198 +410455,132.82,93.1533 +410456,131.83,91.9144 +410457,133.42,95.7601 +410458,132.45,94.4303 +410459,131.48,93.1299 +410460,130.51,91.8579 +410461,132.03,95.8043 +410462,131.09,94.4404 +410463,130.15,93.1068 +410464,129.2,91.8024 +410465,130.64,95.8475 +410466,129.72,94.4501 +410467,128.81,93.084 +410468,127.89,91.7479 +410469,129.24,95.8896 +410470,128.36,94.4593 +410471,127.47,93.0614 +410472,126.57,91.6944 +410473,127.85,95.9306 +410474,127,94.4682 +410475,126.13,93.0392 +410476,125.26,91.6419 +410477,126.46,95.9705 +410478,125.63,94.4766 +410479,124.79,93.0172 +410480,123.95,91.5904 +410481,125.07,96.0091 +410482,124.27,94.4846 +410483,123.46,92.9956 +410484,122.64,91.54 +410485,123.67,96.0466 +410486,122.9,94.4922 +410487,122.12,92.9743 +410488,121.33,91.4907 +410489,122.28,96.0829 +410490,121.53,94.4993 +410491,120.78,92.9533 +410492,120.02,91.4424 +410493,120.88,96.1179 +410494,120.17,94.506 +410495,119.45,92.9327 +410496,118.72,91.3954 +410497,119.49,96.1517 +410498,118.8,94.5122 +410499,118.11,92.9124 +410500,117.41,91.3494 +410501,118.09,96.1842 +410502,117.44,94.5179 +410503,116.77,92.8924 +410504,116.1,91.3046 +410505,116.7,96.2153 +410506,116.07,94.5232 +410507,115.44,92.8728 +410508,114.8,91.261 +410509,115.3,96.2452 +410510,114.7,94.528 +410511,114.1,92.8536 +410512,113.49,91.2186 +410513,113.9,96.2737 +410514,113.34,94.5323 +410515,112.77,92.8347 +410516,112.19,91.1774 +410517,112.5,96.3008 +410518,111.97,94.5361 +410519,111.43,92.8163 +410520,110.88,91.1374 +410521,111.1,96.3266 +410522,110.6,94.5394 +410523,110.1,92.7981 +410524,109.58,91.0987 +410525,109.7,96.3509 +410526,109.24,94.5422 +410527,108.76,92.7804 +410528,108.27,91.0612 +410529,108.3,96.3738 +410530,107.87,94.5445 +410531,107.43,92.7631 +410532,106.97,91.025 +410533,106.9,96.3953 +410534,106.5,94.5463 +410535,106.09,92.7461 +410536,105.67,90.99005 +410537,105.5,96.4153 +410538,105.14,94.5476 +410539,104.76,92.7296 +410540,104.37,90.95642 +410541,104.1,96.4339 +410542,103.77,94.5483 +410543,103.42,92.7134 +410544,103.06,90.9241 +410545,102.7,96.451 +410546,102.4,94.5486 +410547,102.09,92.6977 +410548,101.76,90.8931 +410549,101.3,96.4666 +410550,101.03,94.5483 +410551,100.75,92.6824 +410552,100.46,90.86342 +410553,99.898,96.4806 +410554,99.666,94.5474 +410555,99.419,92.6675 +410556,99.16,90.83509 +410557,98.496,96.4932 +410558,98.298,94.546 +410559,98.086,92.653 +410560,97.86,90.80811 +410561,97.094,96.5042 +410562,96.93,94.5441 +410563,96.752,92.6389 +410564,96.559,90.78248 +410565,95.692,96.5136 +410566,95.563,94.5416 +410567,95.418,92.6252 +410568,95.259,90.75822 +410569,94.289,96.5216 +410570,94.195,94.5386 +410571,94.084,92.612 +410572,93.959,90.73533 +410573,92.887,96.5279 +410574,92.827,94.535 +410575,92.75,92.5992 +410576,92.659,90.71382 +410577,91.485,96.5327 +410578,91.459,94.5309 +410579,91.417,92.5868 +410580,91.359,90.69369 +410581,90.082,96.5359 +410582,90.091,94.5262 +410583,90.083,92.5749 +410584,90.059,90.67495 +410585,88.679,96.5375 +410586,88.724,94.521 +410587,88.75,92.5634 +410588,88.76,90.6576 +410589,87.277,96.5375 +410590,87.356,94.5152 +410591,87.416,92.5523 +410592,87.46,90.64165 +410593,85.874,96.536 +410594,85.988,94.5089 +410595,86.083,92.5417 +410596,86.161,90.62711 +410597,84.472,96.5328 +410598,84.62,94.502 +410599,84.749,92.5315 +410600,84.861,90.61396 +410601,83.07,96.528 +410602,83.253,94.4945 +410603,83.416,92.5217 +410604,83.561,90.60222 +410605,81.667,96.5217 +410606,81.885,94.4865 +410607,82.082,92.5124 +410608,82.262,90.59188 +410609,80.265,96.5137 +410610,80.517,94.4779 +410611,80.749,92.5035 +410612,80.962,90.58294 +410613,78.863,96.5041 +410614,79.15,94.4687 +410615,79.415,92.4951 +410616,79.662,90.57541 +410617,77.462,96.4929 +410618,77.782,94.459 +410619,78.081,92.4871 +410620,78.362,90.56928 +410621,76.06,96.4801 +410622,76.415,94.4488 +410623,76.748,92.4795 +410624,77.062,90.56455 +410625,74.659,96.4658 +410626,75.048,94.4379 +410627,75.414,92.4724 +410628,75.761,90.56122 +410629,73.259,96.4498 +410630,73.681,94.4265 +410631,74.08,92.4657 +410632,74.461,90.55928 +410633,71.858,96.4322 +410634,72.314,94.4146 +410635,72.746,92.4594 +410636,73.16,90.55874 +410637,70.458,96.413 +410638,70.947,94.4021 +410639,71.412,92.4536 +410640,71.858,90.55958 +410641,69.058,96.3923 +410642,69.58,94.389 +410643,70.078,92.4482 +410644,70.557,90.5618 +410645,67.659,96.3699 +410646,68.214,94.3754 +410647,68.744,92.4432 +410648,69.255,90.56539 +410649,66.26,96.346 +410650,66.847,94.3613 +410651,67.41,92.4387 +410652,67.953,90.57035 +410653,64.862,96.3206 +410654,65.481,94.3466 +410655,66.076,92.4345 +410656,66.65,90.57666 +410657,63.464,96.2935 +410658,64.115,94.3314 +410659,64.741,92.4308 +410660,65.347,90.58433 +410661,62.067,96.265 +410662,62.749,94.3156 +410663,63.407,92.4276 +410664,64.044,90.59335 +410665,60.67,96.2349 +410666,61.383,94.2993 +410667,62.072,92.4247 +410668,62.74,90.60369 +410669,59.274,96.2033 +410670,60.018,94.2824 +410671,60.737,92.4222 +410672,61.435,90.61536 +410673,57.878,96.1702 +410674,58.653,94.265 +410675,59.402,92.4202 +410676,60.13,90.62833 +410677,56.483,96.1356 +410678,57.288,94.2471 +410679,58.067,92.4186 +410680,58.825,90.64261 +410681,55.089,96.0995 +410682,55.923,94.2287 +410683,56.731,92.4173 +410684,57.519,90.65818 +410685,53.695,96.0619 +410686,54.558,94.2098 +410687,55.396,92.4165 +410688,56.212,90.67502 +410689,52.302,96.0229 +410690,53.194,94.1903 +410691,54.06,92.416 +410692,54.905,90.69312 +410693,50.91,95.9825 +410694,51.83,94.1704 +410695,52.724,92.416 +410696,53.597,90.71247 +410697,49.519,95.9406 +410698,50.466,94.1499 +410699,51.388,92.4163 +410700,52.288,90.73305 +410701,48.128,95.8974 +410702,49.102,94.129 +410703,50.051,92.417 +410704,50.979,90.75485 +410705,46.738,95.8527 +410706,47.739,94.1076 +410707,48.715,92.418 +410708,49.669,90.77785 +410709,45.349,95.8067 +410710,46.376,94.0857 +410711,47.378,92.4195 +410712,48.358,90.80204 +410713,43.961,95.7594 +410714,45.013,94.0633 +410715,46.041,92.4213 +410716,47.047,90.8274 +410717,42.573,95.7107 +410718,43.651,94.0404 +410719,44.703,92.4234 +410720,45.735,90.8539 +410721,41.187,95.6608 +410722,42.289,94.0171 +410723,43.366,92.4259 +410724,44.422,90.88154 +410725,39.801,95.6096 +410726,40.927,93.9933 +410727,42.028,92.4287 +410728,43.108,90.91029 +410729,38.417,95.5571 +410730,39.565,93.9691 +410731,40.69,92.4319 +410732,41.793,90.94013 +410733,37.033,95.5034 +410734,38.204,93.9445 +410735,39.351,92.4354 +410736,40.478,90.97105 +410737,35.65,95.4485 +410738,36.843,93.9194 +410739,38.013,92.4392 +410740,39.161,91.003 +410741,34.268,95.3924 +410742,35.483,93.8939 +410743,36.674,92.4433 +410744,37.844,91.036 +410745,32.888,95.3351 +410746,34.123,93.8679 +410747,35.335,92.4477 +410748,36.526,91.07 +410749,31.508,95.2767 +410750,32.763,93.8416 +410751,33.995,92.4524 +410752,35.207,91.1051 +410753,30.129,95.2172 +410754,31.404,93.8148 +410755,32.655,92.4575 +410756,33.887,91.141 +410757,28.751,95.1567 +410758,30.044,93.7877 +410759,31.315,92.4628 +410760,32.566,91.1779 +410761,27.375,95.0951 +410762,28.686,93.7602 +410763,29.975,92.4683 +410764,31.244,91.2158 +410765,25.999,95.0324 +410766,27.327,93.7323 +410767,28.634,92.4742 +410768,29.921,91.2545 +410769,24.625,94.9688 +410770,25.969,93.704 +410771,27.293,92.4803 +410772,28.597,91.2941 +410773,23.251,94.9042 +410774,24.612,93.6754 +410775,25.951,92.4866 +410776,27.272,91.3346 +410777,21.879,94.8387 +410778,23.255,93.6465 +410779,24.609,92.4932 +410780,25.946,91.3758 +410781,20.508,94.7723 +410782,21.898,93.6172 +410783,23.267,92.5 +410784,24.618,91.4179 +410785,19.138,94.7049 +410786,20.541,93.5875 +410787,21.925,92.507 +410788,23.29,91.4607 +410789,17.769,94.6368 +410790,19.185,93.5576 +410791,20.582,92.5143 +410792,21.961,91.5043 +410793,16.401,94.5678 +410794,17.83,93.5273 +410795,19.239,92.5217 +410796,20.631,91.5486 +410797,15.035,94.4981 +410798,16.475,93.4968 +410799,17.896,92.5294 +410800,19.299,91.5936 +410801,13.669,94.4276 +410802,15.12,93.466 +410803,16.552,92.5372 +410804,17.967,91.6392 +410805,12.305,94.3564 +410806,13.765,93.4348 +410807,15.208,92.5452 +410808,16.633,91.6855 +410809,10.942,94.2844 +410810,12.411,93.4035 +410811,13.863,92.5534 +410812,15.298,91.7324 +410813,9.5806,94.2119 +410814,11.058,93.3718 +410815,12.518,92.5617 +410816,13.962,91.7799 +410817,8.22,94.1387 +410818,9.7047,93.3399 +410819,11.173,92.5702 +410820,12.625,91.8279 +410821,6.8607,94.0649 +410822,8.352,93.3078 +410823,9.8273,92.5788 +410824,11.287,91.8764 +410825,5.5026,93.9906 +410826,6.9997,93.2755 +410827,8.4813,92.5875 +410828,9.9475,91.9254 +410829,4.1457,93.9157 +410830,5.6478,93.2429 +410831,7.1349,92.5964 +410832,8.6069,91.9749 +410833,2.79,93.8404 +410834,4.2964,93.2101 +410835,5.7881,92.6053 +410836,7.2651,92.0248 +410837,1.4356,93.7646 +410838,2.9454,93.1772 +410839,4.441,92.6144 +410840,5.9222,92.0751 +410841,0.082404,93.6884 +410842,1.5948,93.144 +410843,3.0935,92.6235 +410844,4.578,92.1257 +410845,358.73,93.6118 +410846,0.24469,93.1107 +410847,1.7456,92.6327 +410848,3.2327,92.1767 +410849,357.38,93.5348 +410850,358.89,93.0772 +410851,0.39734,92.642 +410852,1.8862,92.2281 +410853,356.03,93.4576 +410854,357.55,93.0436 +410855,359.05,92.6513 +410856,0.53846,92.2796 +410857,354.68,93.38 +410858,356.2,93.0099 +410859,357.7,92.6607 +410860,359.19,92.3315 +410861,353.33,93.3022 +410862,354.85,92.976 +410863,356.35,92.67 +410864,357.84,92.3835 +410865,351.99,93.2242 +410866,353.5,92.942 +410867,355,92.6795 +410868,356.49,92.4357 +410869,350.64,93.1459 +410870,352.15,92.9079 +410871,353.65,92.6889 +410872,355.14,92.4881 +410873,349.3,93.0676 +410874,350.81,92.8737 +410875,352.3,92.6983 +410876,353.78,92.5406 +410877,347.96,92.9891 +410878,349.46,92.8394 +410879,350.95,92.7077 +410880,352.43,92.5931 +410881,346.62,92.9106 +410882,348.11,92.8051 +410883,349.6,92.7171 +410884,351.07,92.6457 +410885,345.28,92.832 +410886,346.77,92.7707 +410887,348.25,92.7264 +410888,349.71,92.6984 +410889,343.94,92.7534 +410890,345.42,92.7363 +410891,346.89,92.7357 +410892,348.35,92.751 +410893,342.6,92.6748 +410894,344.08,92.7018 +410895,345.54,92.7449 +410896,347,92.8036 +410897,341.27,92.5963 +410898,342.73,92.6673 +410899,344.19,92.7541 +410900,345.63,92.8561 +410901,339.93,92.5178 +410902,341.39,92.6328 +410903,342.84,92.7632 +410904,344.27,92.9084 +410905,338.6,92.4395 +410906,340.04,92.5982 +410907,341.48,92.7722 +410908,342.91,92.9607 +410909,337.27,92.3614 +410910,338.7,92.5637 +410911,340.13,92.7811 +410912,341.54,93.0128 +410913,335.94,92.2834 +410914,337.36,92.5292 +410915,338.77,92.7899 +410916,340.18,93.0646 +410917,334.61,92.2057 +410918,336.02,92.4948 +410919,337.42,92.7986 +410920,338.81,93.1162 +410921,333.28,92.1282 +410922,334.67,92.4604 +410923,336.06,92.8071 +410924,337.44,93.1676 +410925,331.95,92.051 +410926,333.33,92.426 +410927,334.71,92.8155 +410928,336.08,93.2186 +410929,330.62,91.9741 +410930,331.99,92.3917 +410931,333.35,92.8238 +410932,334.71,93.2693 +410933,329.3,91.8976 +410934,330.65,92.3575 +410935,332,92.8318 +410936,333.33,93.3197 +410937,327.97,91.8215 +410938,329.31,92.3234 +410939,330.64,92.8397 +410940,331.96,93.3696 +410941,326.65,91.7458 +410942,327.97,92.2894 +410943,329.28,92.8474 +410944,330.59,93.4191 +410945,325.33,91.6705 +410946,326.63,92.2554 +410947,327.93,92.855 +410948,329.21,93.4682 +410949,324.01,91.5957 +410950,325.29,92.2216 +410951,326.57,92.8623 +410952,327.84,93.5167 +410953,322.69,91.5215 +410954,323.95,92.188 +410955,325.21,92.8693 +410956,326.46,93.5647 +410957,321.37,91.4477 +410958,322.61,92.1544 +410959,323.85,92.8762 +410960,325.08,93.6122 +410961,320.05,91.3746 +410962,321.28,92.1211 +410963,322.5,92.8828 +410964,323.7,93.6591 +410965,318.73,91.302 +410966,319.94,92.0878 +410967,321.14,92.8892 +410968,322.33,93.7053 +410969,317.42,91.2301 +410970,318.6,92.0548 +410971,319.78,92.8953 +410972,320.94,93.7509 +410973,316.1,91.1588 +410974,317.26,92.0219 +410975,318.42,92.9012 +410976,319.56,93.7958 +410977,314.79,91.0883 +410978,315.93,91.9892 +410979,317.06,92.9067 +410980,318.18,93.8401 +410981,313.47,91.0184 +410982,314.59,91.9567 +410983,315.7,92.912 +410984,316.8,93.8835 +410985,312.16,90.94929 +410986,313.26,91.9245 +410987,314.34,92.917 +410988,315.41,93.9262 +410989,310.85,90.88095 +410990,311.92,91.8924 +410991,312.98,92.9217 +410992,314.03,93.9682 +410993,309.54,90.8134 +410994,310.58,91.8606 +410995,311.62,92.926 +410996,312.64,94.0092 +410997,308.23,90.74667 +410998,309.25,91.829 +410999,310.26,92.9301 +411000,311.25,94.0495 +411001,306.92,90.6808 +411002,307.91,91.7976 +411003,308.9,92.9338 +411004,309.86,94.0888 +411005,305.62,90.61579 +411006,306.58,91.7665 +411007,307.53,92.9372 +411008,308.48,94.1273 +411009,304.31,90.55169 +411010,305.25,91.7357 +411011,306.17,92.9402 +411012,307.09,94.1648 +411013,303,90.48851 +411014,303.91,91.7052 +411015,304.81,92.9428 +411016,305.7,94.2013 +411017,301.7,90.42627 +411018,302.58,91.6749 +411019,303.45,92.9451 +411020,304.3,94.2368 +411021,300.39,90.36501 +411022,301.25,91.6449 +411023,302.09,92.947 +411024,302.91,94.2714 +411025,299.09,90.30474 +411026,299.91,91.6152 +411027,300.72,92.9485 +411028,301.52,94.3049 +411029,297.79,90.24548 +411030,298.58,91.5858 +411031,299.36,92.9497 +411032,300.13,94.3373 +411033,296.49,90.18726 +411034,297.25,91.5567 +411035,298,92.9504 +411036,298.73,94.3686 +411037,295.18,90.13009 +411038,295.92,91.528 +411039,296.63,92.9507 +411040,297.34,94.3989 +411041,293.88,90.074003 +411042,294.58,91.4995 +411043,295.27,92.9506 +411044,295.94,94.428 +411045,292.58,90.019012 +411046,293.25,91.4714 +411047,293.91,92.9501 +411048,294.55,94.4559 +411049,291.28,89.965137 +411050,291.92,91.4436 +411051,292.54,92.9492 +411052,293.15,94.4826 +411053,289.98,89.912397 +411054,290.59,91.4162 +411055,291.18,92.9478 +411056,291.75,94.5082 +411057,288.68,89.86081 +411058,289.26,91.3892 +411059,289.82,92.946 +411060,290.36,94.5325 +411061,287.39,89.81039 +411062,287.93,91.3625 +411063,288.45,92.9437 +411064,288.96,94.5556 +411065,286.09,89.76116 +411066,286.6,91.3361 +411067,287.09,92.941 +411068,287.56,94.5774 +411069,284.79,89.71313 +411070,285.27,91.3101 +411071,285.72,92.9378 +411072,286.16,94.5979 +411073,283.49,89.66632 +411074,283.94,91.2845 +411075,284.36,92.9342 +411076,284.76,94.6171 +411077,282.2,89.62074 +411078,282.61,91.2593 +411079,282.99,92.93 +411080,283.36,94.635 +411081,280.9,89.57641 +411082,281.28,91.2345 +411083,281.63,92.9254 +411084,281.96,94.6515 +411085,279.61,89.53334 +411086,279.95,91.21 +411087,280.27,92.9204 +411088,280.56,94.6667 +411089,278.31,89.49154 +411090,278.62,91.186 +411091,278.9,92.9148 +411092,279.16,94.6806 +411093,277.02,89.45103 +411094,277.29,91.1624 +411095,277.54,92.9087 +411096,277.76,94.693 +411097,275.72,89.41181 +411098,275.96,91.1391 +411099,276.17,92.9022 +411100,276.36,94.7041 +411101,274.43,89.37391 +411102,274.63,91.1163 +411103,274.81,92.8951 +411104,274.96,94.7137 +411105,273.13,89.33731 +411106,273.3,91.0939 +411107,273.44,92.8876 +411108,273.56,94.7219 +411109,271.84,89.30205 +411110,271.97,91.0719 +411111,272.08,92.8795 +411112,272.16,94.7286 +411113,270.55,89.26812 +411114,270.64,91.0503 +411115,270.71,92.8709 +411116,270.75,94.7339 +411117,269.25,89.23554 +411118,269.31,91.0291 +411119,269.35,92.8619 +411120,269.35,94.7378 +411121,267.96,89.2043 +411122,267.98,91.0084 +411123,267.98,92.8523 +411124,267.95,94.7401 +411125,266.67,89.17443 +411126,266.65,90.98804 +411127,266.62,92.8421 +411128,266.55,94.741 +411129,265.37,89.14591 +411130,265.32,90.96816 +411131,265.25,92.8315 +411132,265.15,94.7404 +411133,264.08,89.11877 +411134,264,90.9487 +411135,263.89,92.8203 +411136,263.74,94.7383 +411137,262.79,89.093 +411138,262.67,90.92968 +411139,262.52,92.8086 +411140,262.34,94.7347 +411141,261.49,89.06861 +411142,261.34,90.9111 +411143,261.16,92.7964 +411144,260.94,94.7295 +411145,260.2,89.04559 +411146,260.01,90.89295 +411147,259.79,92.7837 +411148,259.54,94.7229 +411149,258.91,89.02396 +411150,258.68,90.87524 +411151,258.43,92.7704 +411152,258.14,94.7147 +411153,257.61,89.00372 +411154,257.35,90.85796 +411155,257.06,92.7566 +411156,256.74,94.705 +411157,256.32,88.9849 +411158,256.02,90.84113 +411159,255.7,92.7422 +411160,255.34,94.6937 +411161,255.03,88.9674 +411162,254.69,90.82473 +411163,254.33,92.7273 +411164,253.94,94.681 +411165,253.73,88.9513 +411166,253.37,90.80877 +411167,252.97,92.7119 +411168,252.54,94.6667 +411169,252.44,88.9366 +411170,252.04,90.79326 +411171,251.6,92.696 +411172,251.14,94.6508 +411173,251.14,88.9233 +411174,250.71,90.77818 +411175,250.24,92.6795 +411176,249.74,94.6334 +411177,249.85,88.9113 +411178,249.38,90.76354 +411179,248.88,92.6625 +411180,248.34,94.6145 +411181,248.55,88.9008 +411182,248.05,90.74933 +411183,247.51,92.645 +411184,246.94,94.5941 +411185,247.26,88.8916 +411186,246.72,90.73556 +411187,246.15,92.6269 +411188,245.54,94.5721 +411189,245.96,88.8838 +411190,245.39,90.72223 +411191,244.79,92.6084 +411192,244.14,94.5486 +411193,244.67,88.8773 +411194,244.06,90.70933 +411195,243.42,92.5892 +411196,242.75,94.5235 +411197,243.37,88.8722 +411198,242.73,90.69687 +411199,242.06,92.5696 +411200,241.35,94.497 +411201,242.07,88.8685 +411202,241.4,90.68483 +411203,240.7,92.5494 +411204,239.95,94.4689 +411205,240.78,88.866 +411206,240.07,90.67322 +411207,239.33,92.5288 +411208,238.56,94.4394 +411209,239.48,88.865 +411210,238.74,90.66203 +411211,237.97,92.5076 +411212,237.16,94.4083 +411213,238.18,88.8652 +411214,237.41,90.65127 +411215,236.61,92.4859 +411216,235.77,94.3757 +411217,236.88,88.8668 +411218,236.08,90.64092 +411219,235.25,92.4636 +411220,234.37,94.3417 +411221,235.58,88.8697 +411222,234.75,90.63099 +411223,233.89,92.4409 +411224,232.98,94.3062 +411225,234.28,88.8739 +411226,233.42,90.62148 +411227,232.53,92.4177 +411228,231.59,94.2692 +411229,232.98,88.8794 +411230,232.09,90.61237 +411231,231.16,92.394 +411232,230.2,94.2308 +411233,231.68,88.8861 +411234,230.76,90.60367 +411235,229.8,92.3697 +411236,228.81,94.191 +411237,230.38,88.8941 +411238,229.43,90.59537 +411239,228.44,92.345 +411240,227.42,94.1497 +411241,229.08,88.9034 +411242,228.1,90.58746 +411243,227.08,92.3198 +411244,226.03,94.107 +411245,227.77,88.9139 +411246,226.77,90.57995 +411247,225.72,92.2941 +411248,224.64,94.063 +411249,226.47,88.9256 +411250,225.43,90.57282 +411251,224.36,92.268 +411252,223.25,94.0175 +411253,225.16,88.9385 +411254,224.1,90.56608 +411255,223,92.2414 +411256,221.86,93.9707 +411257,223.86,88.9526 +411258,222.77,90.55972 +411259,221.64,92.2143 +411260,220.48,93.9225 +411261,222.55,88.9679 +411262,221.44,90.55372 +411263,220.29,92.1867 +411264,219.09,93.873 +411265,221.24,88.9843 +411266,220.1,90.54809 +411267,218.93,92.1587 +411268,217.71,93.8222 +411269,219.94,89.00191 +411270,218.77,90.54283 +411271,217.57,92.1302 +411272,216.33,93.7702 +411273,218.63,89.02062 +411274,217.44,90.53791 +411275,216.21,92.1013 +411276,214.94,93.7168 +411277,217.32,89.04043 +411278,216.1,90.53335 +411279,214.85,92.072 +411280,213.56,93.6622 +411281,216.01,89.06133 +411282,214.77,90.52913 +411283,213.5,92.0422 +411284,212.18,93.6063 +411285,214.7,89.08329 +411286,213.44,90.52524 +411287,212.14,92.0121 +411288,210.8,93.5493 +411289,213.38,89.1063 +411290,212.1,90.52168 +411291,210.78,91.9815 +411292,209.43,93.4911 +411293,212.07,89.13034 +411294,210.77,90.51845 +411295,209.43,91.9505 +411296,208.05,93.4317 +411297,210.76,89.15538 +411298,209.43,90.51553 +411299,208.07,91.9191 +411300,206.67,93.3711 +411301,209.44,89.18141 +411302,208.1,90.51291 +411303,206.72,91.8873 +411304,205.3,93.3095 +411305,208.12,89.2084 +411306,206.76,90.5106 +411307,205.36,91.8551 +411308,203.93,93.2467 +411309,206.81,89.23632 +411310,205.42,90.50858 +411311,204.01,91.8225 +411312,202.55,93.1829 +411313,205.49,89.26517 +411314,204.09,90.50684 +411315,202.65,91.7896 +411316,201.18,93.1181 +411317,204.17,89.2949 +411318,202.75,90.50538 +411319,201.3,91.7563 +411320,199.81,93.0522 +411321,202.85,89.32551 +411322,201.41,90.50419 +411323,199.95,91.7227 +411324,198.45,92.9854 +411325,201.53,89.35696 +411326,200.08,90.50326 +411327,198.6,91.6887 +411328,197.08,92.9176 +411329,200.2,89.38923 +411330,198.74,90.50258 +411331,197.24,91.6544 +411332,195.71,92.8489 +411333,198.88,89.4223 +411334,197.4,90.50214 +411335,195.89,91.6198 +411336,194.35,92.7792 +411337,197.55,89.45614 +411338,196.06,90.50194 +411339,194.54,91.5849 +411340,192.98,92.7087 +411341,196.23,89.49072 +411342,194.72,90.50197 +411343,193.19,91.5496 +411344,191.62,92.6374 +411345,194.9,89.52602 +411346,193.38,90.50221 +411347,191.84,91.5141 +411348,190.26,92.5652 +411349,193.57,89.56202 +411350,192.05,90.50266 +411351,190.49,91.4783 +411352,188.9,92.4922 +411353,192.24,89.59867 +411354,190.71,90.50331 +411355,189.14,91.4422 +411356,187.54,92.4185 +411357,190.91,89.63597 +411358,189.36,90.50415 +411359,187.79,91.4058 +411360,186.18,92.3441 +411361,189.58,89.67387 +411362,188.02,90.50517 +411363,186.44,91.3692 +411364,184.83,92.269 +411365,188.25,89.71236 +411366,186.68,90.50636 +411367,185.09,91.3324 +411368,183.47,92.1932 +411369,186.91,89.75141 +411370,185.34,90.50772 +411371,183.75,91.2953 +411372,182.12,92.1168 +411373,185.58,89.79098 +411374,184,90.50922 +411375,182.4,91.258 +411376,180.77,92.0397 +411377,184.24,89.83104 +411378,182.66,90.51087 +411379,181.05,91.2204 +411380,179.42,91.9621 +411381,182.9,89.87158 +411382,181.32,90.51264 +411383,179.7,91.1827 +411384,178.07,91.884 +411385,181.56,89.912552 +411386,179.97,90.51454 +411387,178.36,91.1447 +411388,176.72,91.8054 +411389,180.22,89.953937 +411390,178.63,90.51655 +411391,177.01,91.1066 +411392,175.37,91.7263 +411393,178.88,89.9957019 +411394,177.29,90.51867 +411395,175.67,91.0683 +411396,174.02,91.6468 +411397,177.53,90.037818 +411398,175.94,90.52087 +411399,174.32,91.0299 +411400,172.68,91.5668 +411401,176.19,90.080255 +411402,174.6,90.52316 +411403,172.98,90.99129 +411404,171.34,91.4865 +411405,174.84,90.12298 +411406,173.25,90.52552 +411407,171.64,90.95255 +411408,170,91.4059 +411409,173.5,90.16597 +411410,171.91,90.52794 +411411,170.29,90.91368 +411412,168.66,91.3249 +411413,172.15,90.20919 +411414,170.56,90.5304 +411415,168.95,90.87469 +411416,167.32,91.2437 +411417,170.8,90.25261 +411418,169.22,90.53291 +411419,167.61,90.8356 +411420,165.98,91.1623 +411421,169.45,90.29619 +411422,167.87,90.53545 +411423,166.27,90.79641 +411424,164.64,91.0806 +411425,168.1,90.33992 +411426,166.52,90.53801 +411427,164.93,90.75714 +411428,163.31,90.99879 +411429,166.74,90.38375 +411430,165.18,90.54058 +411431,163.58,90.71779 +411432,161.97,90.91683 +411433,165.39,90.42766 +411434,163.83,90.54314 +411435,162.24,90.67838 +411436,160.64,90.83477 +411437,164.03,90.47161 +411438,162.48,90.54569 +411439,160.9,90.63891 +411440,159.31,90.75264 +411441,162.68,90.51558 +411442,161.13,90.54822 +411443,159.56,90.59941 +411444,157.98,90.67048 +411445,161.32,90.55953 +411446,159.78,90.55072 +411447,158.23,90.55987 +411448,156.65,90.58831 +411449,159.96,90.60343 +411450,158.43,90.55317 +411451,156.89,90.52032 +411452,155.32,90.50618 +411453,158.6,90.64725 +411454,157.08,90.55557 +411455,155.55,90.48076 +411456,154,90.42411 +411457,157.24,90.69097 +411458,155.73,90.5579 +411459,154.21,90.4412 +411460,152.67,90.34214 +411461,155.88,90.73454 +411462,154.38,90.56016 +411463,152.87,90.40166 +411464,151.35,90.2603 +411465,154.51,90.77794 +411466,153.03,90.56233 +411467,151.54,90.36214 +411468,150.03,90.17863 +411469,153.15,90.82114 +411470,151.68,90.5644 +411471,150.2,90.32266 +411472,148.7,90.097152 +411473,151.78,90.8641 +411474,150.33,90.56637 +411475,148.87,90.28322 +411476,147.38,90.015906 +411477,150.41,90.9068 +411478,148.98,90.56822 +411479,147.53,90.24384 +411480,146.07,89.934923 +411481,149.04,90.9492 +411482,147.63,90.56994 +411483,146.2,90.20453 +411484,144.75,89.85423 +411485,147.67,90.99128 +411486,146.27,90.57152 +411487,144.86,90.1653 +411488,143.43,89.77387 +411489,146.3,91.033 +411490,144.92,90.57296 +411491,143.53,90.12616 +411492,142.12,89.69387 +411493,144.93,91.0743 +411494,143.57,90.57424 +411495,142.19,90.087121 +411496,140.8,89.61425 +411497,143.56,91.1153 +411498,142.22,90.57534 +411499,140.86,90.04819 +411500,139.49,89.53506 +411501,142.18,91.1557 +411502,140.86,90.57627 +411503,139.53,90.0093807 +411504,138.18,89.45631 +411505,140.81,91.1957 +411506,139.51,90.57702 +411507,138.19,89.970702 +411508,136.87,89.37805 +411509,139.43,91.2352 +411510,138.15,90.57756 +411511,136.86,89.932165 +411512,135.56,89.3003 +411513,138.05,91.2742 +411514,136.8,90.57789 +411515,135.53,89.89378 +411516,134.25,89.2231 +411517,136.67,91.3125 +411518,135.44,90.57801 +411519,134.2,89.85556 +411520,132.94,89.14646 +411521,135.29,91.3503 +411522,134.09,90.5779 +411523,132.87,89.8175 +411524,131.63,89.07043 +411525,133.91,91.3875 +411526,132.73,90.57755 +411527,131.54,89.77963 +411528,130.33,88.995 +411529,132.53,91.424 +411530,131.38,90.57696 +411531,130.21,89.74195 +411532,129.02,88.9203 +411533,131.15,91.4599 +411534,130.02,90.57611 +411535,128.88,89.70447 +411536,127.72,88.8462 +411537,129.76,91.495 +411538,128.66,90.57499 +411539,127.55,89.66719 +411540,126.42,88.7729 +411541,128.38,91.5294 +411542,127.31,90.5736 +411543,126.22,89.63014 +411544,125.11,88.7003 +411545,127,91.563 +411546,125.95,90.57193 +411547,124.89,89.59332 +411548,123.81,88.6284 +411549,125.61,91.5959 +411550,124.59,90.56997 +411551,123.56,89.55673 +411552,122.51,88.5574 +411553,124.22,91.6279 +411554,123.24,90.5677 +411555,122.23,89.52038 +411556,121.21,88.4871 +411557,122.83,91.6591 +411558,121.88,90.56513 +411559,120.9,89.48429 +411560,119.92,88.4177 +411561,121.45,91.6895 +411562,120.52,90.56224 +411563,119.58,89.44847 +411564,118.62,88.3492 +411565,120.06,91.7189 +411566,119.16,90.55903 +411567,118.25,89.41291 +411568,117.32,88.2816 +411569,118.67,91.7474 +411570,117.8,90.55548 +411571,116.92,89.37763 +411572,116.03,88.2149 +411573,117.27,91.775 +411574,116.44,90.55159 +411575,115.6,89.34264 +411576,114.73,88.1491 +411577,115.88,91.8016 +411578,115.09,90.54735 +411579,114.27,89.30795 +411580,113.44,88.0843 +411581,114.49,91.8272 +411582,113.73,90.54275 +411583,112.94,89.27356 +411584,112.14,88.0205 +411585,113.1,91.8519 +411586,112.37,90.53779 +411587,111.62,89.23948 +411588,110.85,87.9577 +411589,111.7,91.8754 +411590,111.01,90.53246 +411591,110.29,89.20571 +411592,109.56,87.8959 +411593,110.31,91.898 +411594,109.65,90.52674 +411595,108.97,89.17227 +411596,108.27,87.8351 +411597,108.91,91.9194 +411598,108.29,90.52065 +411599,107.64,89.13916 +411600,106.98,87.7755 +411601,107.52,91.9397 +411602,106.93,90.51416 +411603,106.32,89.10639 +411604,105.69,87.7169 +411605,106.12,91.959 +411606,105.57,90.50727 +411607,104.99,89.07396 +411608,104.4,87.6594 +411609,104.73,91.9771 +411610,104.21,90.49998 +411611,103.67,89.04189 +411612,103.11,87.603 +411613,103.33,91.994 +411614,102.85,90.49227 +411615,102.34,89.01017 +411616,101.82,87.5478 +411617,101.93,92.0097 +411618,101.49,90.48415 +411619,101.02,88.9788 +411620,100.53,87.4937 +411621,100.53,92.0243 +411622,100.13,90.47561 +411623,99.696,88.9478 +411624,99.241,87.4408 +411625,99.136,92.0376 +411626,98.766,90.46663 +411627,98.372,88.9172 +411628,97.954,87.3891 +411629,97.737,92.0497 +411630,97.406,90.45723 +411631,97.048,88.887 +411632,96.667,87.3386 +411633,96.338,92.0606 +411634,96.045,90.44738 +411635,95.725,88.8571 +411636,95.38,87.2894 +411637,94.939,92.0702 +411638,94.684,90.43709 +411639,94.401,88.8277 +411640,94.094,87.2413 +411641,93.54,92.0785 +411642,93.323,90.42635 +411643,93.078,88.7986 +411644,92.808,87.1945 +411645,92.14,92.0855 +411646,91.962,90.41516 +411647,91.755,88.7699 +411648,91.522,87.1489 +411649,90.741,92.0912 +411650,90.601,90.40351 +411651,90.432,88.7417 +411652,90.237,87.1047 +411653,89.341,92.0956 +411654,89.24,90.3914 +411655,89.11,88.7138 +411656,88.951,87.0617 +411657,87.94,92.0986 +411658,87.879,90.37882 +411659,87.787,88.6864 +411660,87.666,87.0199 +411661,86.54,92.1003 +411662,86.518,90.36578 +411663,86.464,88.6593 +411664,86.382,86.9795 +411665,85.14,92.1006 +411666,85.157,90.35226 +411667,85.142,88.6327 +411668,85.097,86.9404 +411669,83.74,92.0996 +411670,83.796,90.33827 +411671,83.819,88.6065 +411672,83.812,86.9026 +411673,82.339,92.0972 +411674,82.435,90.3238 +411675,82.497,88.5808 +411676,82.528,86.8661 +411677,80.939,92.0934 +411678,81.074,90.30884 +411679,81.174,88.5554 +411680,81.243,86.831 +411681,79.539,92.0882 +411682,79.713,90.29341 +411683,79.852,88.5305 +411684,79.959,86.7972 +411685,78.139,92.0816 +411686,78.352,90.27749 +411687,78.53,88.506 +411688,78.674,86.7647 +411689,76.739,92.0736 +411690,76.992,90.26108 +411691,77.207,88.4819 +411692,77.39,86.7336 +411693,75.339,92.0641 +411694,75.631,90.24418 +411695,75.885,88.4583 +411696,76.105,86.7038 +411697,73.939,92.0533 +411698,74.27,90.2268 +411699,74.563,88.4351 +411700,74.821,86.6754 +411701,72.539,92.041 +411702,72.91,90.20892 +411703,73.24,88.4124 +411704,73.536,86.6483 +411705,71.14,92.0273 +411706,71.549,90.19055 +411707,71.918,88.3901 +411708,72.251,86.6226 +411709,69.741,92.0121 +411710,70.189,90.17168 +411711,70.596,88.3682 +411712,70.966,86.5983 +411713,68.343,91.9955 +411714,68.829,90.15232 +411715,69.273,88.3468 +411716,69.681,86.5753 +411717,66.944,91.9774 +411718,67.469,90.13247 +411719,67.951,88.3258 +411720,68.395,86.5536 +411721,65.546,91.9579 +411722,66.109,90.11212 +411723,66.628,88.3052 +411724,67.109,86.5334 +411725,64.149,91.937 +411726,64.75,90.091279 +411727,65.306,88.2851 +411728,65.823,86.5144 +411729,62.752,91.9146 +411730,63.39,90.069944 +411731,63.983,88.2654 +411732,64.537,86.4969 +411733,61.355,91.8908 +411734,62.031,90.048116 +411735,62.66,88.2461 +411736,63.25,86.4807 +411737,59.959,91.8655 +411738,60.671,90.025796 +411739,61.337,88.2273 +411740,61.963,86.4658 +411741,58.564,91.8388 +411742,59.313,90.002986 +411743,60.014,88.2089 +411744,60.675,86.4523 +411745,57.169,91.8107 +411746,57.954,89.979687 +411747,58.691,88.191 +411748,59.387,86.4401 +411749,55.774,91.7811 +411750,56.595,89.9559 +411751,57.368,88.1735 +411752,58.099,86.4292 +411753,54.38,91.7501 +411754,55.237,89.931628 +411755,56.044,88.1564 +411756,56.81,86.4197 +411757,52.987,91.7177 +411758,53.879,89.906873 +411759,54.721,88.1397 +411760,55.521,86.4114 +411761,51.595,91.6838 +411762,52.521,89.88164 +411763,53.397,88.1235 +411764,54.231,86.4045 +411765,50.203,91.6486 +411766,51.163,89.85592 +411767,52.073,88.1077 +411768,52.94,86.3989 +411769,48.812,91.6119 +411770,49.806,89.82973 +411771,50.749,88.0923 +411772,51.649,86.3946 +411773,47.422,91.5739 +411774,48.449,89.80307 +411775,49.425,88.0773 +411776,50.357,86.3916 +411777,46.032,91.5345 +411778,47.092,89.77594 +411779,48.101,88.0628 +411780,49.065,86.3898 +411781,44.644,91.4937 +411782,45.736,89.74835 +411783,46.776,88.0486 +411784,47.772,86.3893 +411785,43.256,91.4515 +411786,44.38,89.72029 +411787,45.451,88.0349 +411788,46.478,86.3901 +411789,41.869,91.408 +411790,43.024,89.69178 +411791,44.126,88.0215 +411792,45.183,86.3921 +411793,40.483,91.3632 +411794,41.668,89.66281 +411795,42.801,88.0086 +411796,43.888,86.3953 +411797,39.098,91.3171 +411798,40.313,89.6334 +411799,41.475,87.9961 +411800,42.592,86.3997 +411801,37.713,91.2696 +411802,38.958,89.60354 +411803,40.15,87.9839 +411804,41.295,86.4053 +411805,36.33,91.2208 +411806,37.604,89.57324 +411807,38.824,87.9721 +411808,39.998,86.4121 +411809,34.948,91.1708 +411810,36.25,89.54251 +411811,37.497,87.9607 +411812,38.699,86.4201 +411813,33.567,91.1195 +411814,34.896,89.51135 +411815,36.171,87.9497 +411816,37.4,86.4292 +411817,32.187,91.0669 +411818,33.542,89.47977 +411819,34.844,87.9391 +411820,36.1,86.4395 +411821,30.807,91.0132 +411822,32.189,89.44777 +411823,33.517,87.9288 +411824,34.798,86.4508 +411825,29.429,90.95816 +411826,30.837,89.41536 +411827,32.189,87.9188 +411828,33.496,86.4633 +411829,28.052,90.90198 +411830,29.484,89.38255 +411831,30.862,87.9093 +411832,32.193,86.4769 +411833,26.677,90.84462 +411834,28.132,89.34934 +411835,29.534,87.9 +411836,30.889,86.4915 +411837,25.302,90.78611 +411838,26.781,89.31574 +411839,28.206,87.8911 +411840,29.584,86.5071 +411841,23.928,90.72647 +411842,25.43,89.28175 +411843,26.877,87.8826 +411844,28.278,86.5238 +411845,22.556,90.66571 +411846,24.079,89.24739 +411847,25.548,87.8743 +411848,26.971,86.5415 +411849,21.185,90.60387 +411850,22.729,89.21265 +411851,24.219,87.8664 +411852,25.663,86.5602 +411853,19.815,90.54096 +411854,21.379,89.17756 +411855,22.889,87.8588 +411856,24.354,86.5799 +411857,18.446,90.477 +411858,20.029,89.1421 +411859,21.559,87.8515 +411860,23.044,86.6004 +411861,17.079,90.41202 +411862,18.68,89.1063 +411863,20.229,87.8445 +411864,21.733,86.6219 +411865,15.713,90.34604 +411866,17.332,89.07016 +411867,18.898,87.8378 +411868,20.42,86.6443 +411869,14.348,90.2791 +411870,15.984,89.03369 +411871,17.567,87.8314 +411872,19.107,86.6676 +411873,12.984,90.2112 +411874,14.636,88.9969 +411875,16.236,87.8253 +411876,17.792,86.6918 +411877,11.622,90.14238 +411878,13.289,88.9598 +411879,14.904,87.8194 +411880,16.476,86.7167 +411881,10.261,90.072667 +411882,11.942,88.9224 +411883,13.572,87.8137 +411884,15.159,86.7425 +411885,8.901,90.0020834 +411886,10.596,88.8846 +411887,12.24,87.8084 +411888,13.841,86.769 +411889,7.5426,89.930657 +411890,9.2497,88.8466 +411891,10.907,87.8032 +411892,12.521,86.7963 +411893,6.1856,89.85842 +411894,7.9043,88.8084 +411895,9.574,87.7983 +411896,11.201,86.8243 +411897,4.8299,89.78539 +411898,6.5594,88.7698 +411899,8.2404,87.7937 +411900,9.8788,86.8531 +411901,3.4756,89.7116 +411902,5.215,88.731 +411903,6.9065,87.7892 +411904,8.5557,86.8825 +411905,2.1226,89.63708 +411906,3.871,88.6919 +411907,5.5721,87.785 +411908,7.2313,86.9125 +411909,0.77104,89.56186 +411910,2.5276,88.6526 +411911,4.2374,87.7809 +411912,5.9057,86.9432 +411913,359.42,89.48597 +411914,1.1846,88.613 +411915,2.9022,87.7771 +411916,4.5788,86.9745 +411917,358.07,89.40943 +411918,359.84,88.5733 +411919,1.5667,87.7734 +411920,3.2507,87.0064 +411921,356.72,89.33229 +411922,358.5,88.5333 +411923,0.23076,87.7699 +411924,1.9213,87.0388 +411925,355.38,89.25456 +411926,357.16,88.4931 +411927,358.89,87.7665 +411928,0.5906,87.0717 +411929,354.03,89.17628 +411930,355.82,88.4527 +411931,357.56,87.7633 +411932,359.26,87.1051 +411933,352.69,89.09747 +411934,354.48,88.4121 +411935,356.22,87.7603 +411936,357.93,87.139 +411937,351.35,89.01818 +411938,353.14,88.3714 +411939,354.88,87.7574 +411940,356.59,87.1732 +411941,350.01,88.9384 +411942,351.8,88.3305 +411943,353.54,87.7546 +411944,355.25,87.208 +411945,348.67,88.8583 +411946,350.46,88.2894 +411947,352.21,87.7519 +411948,353.92,87.243 +411949,347.33,88.7777 +411950,349.12,88.2482 +411951,350.87,87.7493 +411952,352.58,87.2785 +411953,346,88.6967 +411954,347.78,88.2068 +411955,349.53,87.7469 +411956,351.24,87.3142 +411957,344.66,88.6155 +411958,346.44,88.1654 +411959,348.19,87.7445 +411960,349.9,87.3502 +411961,343.33,88.5339 +411962,345.11,88.1238 +411963,346.85,87.7421 +411964,348.56,87.3865 +411965,342,88.4521 +411966,343.77,88.0821 +411967,345.51,87.7399 +411968,347.21,87.423 +411969,340.67,88.37 +411970,342.43,88.0403 +411971,344.17,87.7377 +411972,345.87,87.4598 +411973,339.34,88.2877 +411974,341.1,87.9985 +411975,342.83,87.7355 +411976,344.52,87.4967 +411977,338.01,88.2053 +411978,339.76,87.9565 +411979,341.48,87.7334 +411980,343.17,87.5337 +411981,336.68,88.1227 +411982,338.43,87.9146 +411983,340.14,87.7313 +411984,341.82,87.5708 +411985,335.36,88.04 +411986,337.1,87.8725 +411987,338.8,87.7292 +411988,340.47,87.6081 +411989,334.03,87.9573 +411990,335.76,87.8304 +411991,337.46,87.7272 +411992,339.12,87.6453 +411993,332.71,87.8745 +411994,334.43,87.7883 +411995,336.11,87.7251 +411996,337.77,87.6826 +411997,331.39,87.7917 +411998,333.1,87.7462 +411999,334.77,87.723 +412000,336.41,87.7199 +412001,330.07,87.7089 +412002,331.76,87.7041 +412003,333.43,87.7208 +412004,335.06,87.7572 +412005,328.75,87.6261 +412006,330.43,87.662 +412007,332.08,87.7187 +412008,333.7,87.7944 +412009,327.44,87.5435 +412010,329.1,87.6199 +412011,330.74,87.7165 +412012,332.34,87.8315 +412013,326.12,87.461 +412014,327.77,87.5778 +412015,329.39,87.7142 +412016,330.98,87.8684 +412017,324.81,87.3786 +412018,326.44,87.5357 +412019,328.05,87.7119 +412020,329.62,87.9053 +412021,323.49,87.2965 +412022,325.11,87.4937 +412023,326.7,87.7095 +412024,328.26,87.9419 +412025,322.18,87.2145 +412026,323.78,87.4518 +412027,325.35,87.707 +412028,326.9,87.9783 +412029,320.87,87.1328 +412030,322.45,87.4099 +412031,324.01,87.7044 +412032,325.54,88.0144 +412033,319.56,87.0514 +412034,321.12,87.3681 +412035,322.66,87.7017 +412036,324.17,88.0503 +412037,318.25,86.9703 +412038,319.79,87.3264 +412039,321.31,87.6989 +412040,322.8,88.0859 +412041,316.95,86.8895 +412042,318.47,87.2848 +412043,319.96,87.6959 +412044,321.43,88.1212 +412045,315.64,86.8091 +412046,317.14,87.2433 +412047,318.62,87.6928 +412048,320.07,88.1561 +412049,314.34,86.7291 +412050,315.81,87.2019 +412051,317.27,87.6896 +412052,318.7,88.1906 +412053,313.03,86.6495 +412054,314.49,87.1606 +412055,315.92,87.6862 +412056,317.32,88.2246 +412057,311.73,86.5704 +412058,313.16,87.1195 +412059,314.57,87.6827 +412060,315.95,88.2583 +412061,310.43,86.4918 +412062,311.84,87.0785 +412063,313.22,87.679 +412064,314.58,88.2914 +412065,309.13,86.4137 +412066,310.51,87.0377 +412067,311.87,87.6751 +412068,313.2,88.3241 +412069,307.83,86.3362 +412070,309.19,86.9971 +412071,310.52,87.671 +412072,311.83,88.3562 +412073,306.53,86.2593 +412074,307.86,86.9566 +412075,309.17,87.6667 +412076,310.45,88.3878 +412077,305.24,86.1829 +412078,306.54,86.9163 +412079,307.82,87.6622 +412080,309.07,88.4188 +412081,303.94,86.1072 +412082,305.21,86.8762 +412083,306.47,87.6574 +412084,307.69,88.4492 +412085,302.65,86.0322 +412086,303.89,86.8363 +412087,305.11,87.6525 +412088,306.31,88.4789 +412089,301.35,85.9578 +412090,302.57,86.7967 +412091,303.76,87.6473 +412092,304.93,88.508 +412093,300.06,85.8842 +412094,301.25,86.7572 +412095,302.41,87.6418 +412096,303.55,88.5364 +412097,298.77,85.8113 +412098,299.92,86.718 +412099,301.06,87.6361 +412100,302.17,88.564 +412101,297.48,85.7392 +412102,298.6,86.679 +412103,299.7,87.6302 +412104,300.78,88.591 +412105,296.19,85.6678 +412106,297.28,86.6403 +412107,298.35,87.6239 +412108,299.4,88.6171 +412109,294.9,85.5973 +412110,295.96,86.6018 +412111,297,87.6174 +412112,298.01,88.6425 +412113,293.61,85.5277 +412114,294.64,86.5636 +412115,295.65,87.6106 +412116,296.63,88.6671 +412117,292.33,85.4589 +412118,293.32,86.5257 +412119,294.29,87.6035 +412120,295.24,88.6908 +412121,291.04,85.391 +412122,292,86.488 +412123,292.94,87.5961 +412124,293.85,88.7136 +412125,289.76,85.324 +412126,290.68,86.4507 +412127,291.58,87.5884 +412128,292.46,88.7356 +412129,288.47,85.2579 +412130,289.36,86.4136 +412131,290.23,87.5803 +412132,291.08,88.7567 +412133,287.19,85.1928 +412134,288.04,86.3768 +412135,288.87,87.572 +412136,289.69,88.7768 +412137,285.9,85.1287 +412138,286.72,86.3404 +412139,287.52,87.5633 +412140,288.29,88.796 +412141,284.62,85.0656 +412142,285.4,86.3043 +412143,286.16,87.5543 +412144,286.9,88.8142 +412145,283.34,85.0035 +412146,284.09,86.2685 +412147,284.81,87.5449 +412148,285.51,88.8315 +412149,282.06,84.9424 +412150,282.77,86.233 +412151,283.45,87.5351 +412152,284.12,88.8477 +412153,280.78,84.8824 +412154,281.45,86.1978 +412155,282.1,87.525 +412156,282.72,88.8629 +412157,279.5,84.8235 +412158,280.13,86.163 +412159,280.74,87.5146 +412160,281.33,88.877 +412161,278.22,84.7657 +412162,278.81,86.1286 +412163,279.39,87.5038 +412164,279.94,88.89 +412165,276.94,84.709 +412166,277.5,86.0945 +412167,278.03,87.4925 +412168,278.54,88.902 +412169,275.66,84.6534 +412170,276.18,86.0608 +412171,276.68,87.481 +412172,277.15,88.9129 +412173,274.38,84.5989 +412174,274.86,86.0274 +412175,275.32,87.469 +412176,275.75,88.9226 +412177,273.1,84.5457 +412178,273.55,85.9945 +412179,273.96,87.4566 +412180,274.35,88.9312 +412181,271.83,84.4935 +412182,272.23,85.9619 +412183,272.61,87.4438 +412184,272.96,88.9387 +412185,270.55,84.4426 +412186,270.91,85.9296 +412187,271.25,87.4306 +412188,271.56,88.9449 +412189,269.27,84.3929 +412190,269.6,85.8978 +412191,269.89,87.417 +412192,270.16,88.95 +412193,268,84.3444 +412194,268.28,85.8664 +412195,268.54,87.403 +412196,268.77,88.9539 +412197,266.72,84.2971 +412198,266.96,85.8353 +412199,267.18,87.3886 +412200,267.37,88.9566 +412201,265.44,84.2511 +412202,265.65,85.8047 +412203,265.82,87.3738 +412204,265.97,88.958 +412205,264.17,84.2063 +412206,264.33,85.7745 +412207,264.47,87.3585 +412208,264.57,88.9583 +412209,262.89,84.1627 +412210,263.02,85.7446 +412211,263.11,87.3428 +412212,263.17,88.9572 +412213,261.62,84.1205 +412214,261.7,85.7152 +412215,261.75,87.3267 +412216,261.77,88.9549 +412217,260.34,84.0795 +412218,260.39,85.6862 +412219,260.4,87.3101 +412220,260.38,88.9513 +412221,259.07,84.0398 +412222,259.07,85.6576 +412223,259.04,87.2931 +412224,258.98,88.9465 +412225,257.79,84.0014 +412226,257.76,85.6295 +412227,257.68,87.2757 +412228,257.58,88.9403 +412229,256.52,83.9642 +412230,256.44,85.6017 +412231,256.33,87.2578 +412232,256.18,88.9329 +412233,255.24,83.9284 +412234,255.12,85.5744 +412235,254.97,87.2394 +412236,254.78,88.9241 +412237,253.97,83.8939 +412238,253.81,85.5475 +412239,253.62,87.2207 +412240,253.38,88.914 +412241,252.69,83.8607 +412242,252.49,85.5211 +412243,252.26,87.2014 +412244,251.99,88.9026 +412245,251.42,83.8289 +412246,251.18,85.495 +412247,250.9,87.1817 +412248,250.59,88.8899 +412249,250.14,83.7983 +412250,249.86,85.4694 +412251,249.55,87.1616 +412252,249.19,88.8758 +412253,248.87,83.7691 +412254,248.55,85.4443 +412255,248.19,87.141 +412256,247.79,88.8604 +412257,247.59,83.7412 +412258,247.23,85.4195 +412259,246.83,87.12 +412260,246.39,88.8437 +412261,246.32,83.7146 +412262,245.92,85.3953 +412263,245.48,87.0985 +412264,245,88.8256 +412265,245.04,83.6893 +412266,244.6,85.3714 +412267,244.12,87.0765 +412268,243.6,88.8062 +412269,243.77,83.6654 +412270,243.29,85.348 +412271,242.77,87.0541 +412272,242.2,88.7854 +412273,242.49,83.6428 +412274,241.97,85.325 +412275,241.41,87.0312 +412276,240.81,88.7632 +412277,241.21,83.6215 +412278,240.66,85.3024 +412279,240.06,87.0079 +412280,239.41,88.7397 +412281,239.94,83.6015 +412282,239.34,85.2803 +412283,238.7,86.9841 +412284,238.02,88.7149 +412285,238.66,83.5829 +412286,238.02,85.2586 +412287,237.35,86.9598 +412288,236.62,88.6887 +412289,237.38,83.5655 +412290,236.71,85.2374 +412291,235.99,86.9351 +412292,235.23,88.6612 +412293,236.1,83.5495 +412294,235.39,85.2165 +412295,234.64,86.91 +412296,233.83,88.6323 +412297,234.82,83.5348 +412298,234.08,85.1961 +412299,233.28,86.8844 +412300,232.44,88.602 +412301,233.54,83.5214 +412302,232.76,85.1762 +412303,231.93,86.8583 +412304,231.05,88.5705 +412305,232.26,83.5092 +412306,231.44,85.1566 +412307,230.58,86.8318 +412308,229.66,88.5376 +412309,230.98,83.4984 +412310,230.13,85.1375 +412311,229.22,86.8049 +412312,228.27,88.5033 +412313,229.7,83.4888 +412314,228.81,85.1188 +412315,227.87,86.7775 +412316,226.87,88.4678 +412317,228.42,83.4805 +412318,227.49,85.1005 +412319,226.52,86.7496 +412320,225.49,88.4309 +412321,227.14,83.4734 +412322,226.17,85.0827 +412323,225.16,86.7214 +412324,224.1,88.3927 +412325,225.86,83.4676 +412326,224.86,85.0652 +412327,223.81,86.6927 +412328,222.71,88.3532 +412329,224.57,83.4631 +412330,223.54,85.0482 +412331,222.46,86.6635 +412332,221.32,88.3124 +412333,223.29,83.4597 +412334,222.22,85.0315 +412335,221.11,86.634 +412336,219.93,88.2704 +412337,222,83.4576 +412338,220.9,85.0153 +412339,219.75,86.604 +412340,218.55,88.227 +412341,220.72,83.4567 +412342,219.58,84.9995 +412343,218.4,86.5735 +412344,217.16,88.1824 +412345,219.43,83.457 +412346,218.27,84.9841 +412347,217.05,86.5427 +412348,215.78,88.1366 +412349,218.14,83.4584 +412350,216.95,84.969 +412351,215.7,86.5115 +412352,214.4,88.0895 +412353,216.85,83.461 +412354,215.63,84.9543 +412355,214.35,86.4798 +412356,213.02,88.0412 +412357,215.56,83.4648 +412358,214.31,84.9401 +412359,213,86.4478 +412360,211.63,87.9916 +412361,214.27,83.4697 +412362,212.99,84.9262 +412363,211.65,86.4153 +412364,210.26,87.9409 +412365,212.98,83.4757 +412366,211.67,84.9126 +412367,210.3,86.3824 +412368,208.88,87.889 +412369,211.69,83.4828 +412370,210.35,84.8995 +412371,208.95,86.3492 +412372,207.5,87.8359 +412373,210.4,83.491 +412374,209.03,84.8867 +412375,207.61,86.3156 +412376,206.12,87.7817 +412377,209.1,83.5002 +412378,207.71,84.8742 +412379,206.26,86.2816 +412380,204.75,87.7263 +412381,207.81,83.5105 +412382,206.39,84.8621 +412383,204.91,86.2472 +412384,203.37,87.6699 +412385,206.51,83.5219 +412386,205.06,84.8504 +412387,203.56,86.2125 +412388,202,87.6123 +412389,205.22,83.5342 +412390,203.74,84.8389 +412391,202.22,86.1774 +412392,200.63,87.5536 +412393,203.92,83.5475 +412394,202.42,84.8279 +412395,200.87,86.1419 +412396,199.26,87.4939 +412397,202.62,83.5618 +412398,201.1,84.8171 +412399,199.52,86.1062 +412400,197.89,87.4331 +412401,201.32,83.5771 +412402,199.78,84.8066 +412403,198.18,86.07 +412404,196.52,87.3713 +412405,200.02,83.5933 +412406,198.45,84.7965 +412407,196.83,86.0336 +412408,195.15,87.3086 +412409,198.71,83.6104 +412410,197.13,84.7867 +412411,195.49,85.9968 +412412,193.79,87.2448 +412413,197.41,83.6284 +412414,195.8,84.7771 +412415,194.15,85.9597 +412416,192.42,87.1801 +412417,196.1,83.6472 +412418,194.48,84.7679 +412419,192.8,85.9223 +412420,191.06,87.1144 +412421,194.8,83.6669 +412422,193.16,84.7589 +412423,191.46,85.8846 +412424,189.7,87.0478 +412425,193.49,83.6874 +412426,191.83,84.7502 +412427,190.12,85.8465 +412428,188.34,86.9804 +412429,192.18,83.7087 +412430,190.5,84.7418 +412431,188.77,85.8083 +412432,186.98,86.9121 +412433,190.87,83.7308 +412434,189.18,84.7336 +412435,187.43,85.7697 +412436,185.62,86.8429 +412437,189.56,83.7536 +412438,187.85,84.7257 +412439,186.09,85.7308 +412440,184.27,86.7729 +412441,188.25,83.7772 +412442,186.53,84.718 +412443,184.75,85.6917 +412444,182.91,86.7022 +412445,186.93,83.8014 +412446,185.2,84.7106 +412447,183.41,85.6524 +412448,181.56,86.6306 +412449,185.62,83.8264 +412450,183.87,84.7034 +412451,182.07,85.6128 +412452,180.21,86.5584 +412453,184.3,83.8519 +412454,182.54,84.6964 +412455,180.73,85.5729 +412456,178.86,86.4854 +412457,182.98,83.8781 +412458,181.21,84.6896 +412459,179.39,85.5329 +412460,177.51,86.4117 +412461,181.67,83.9049 +412462,179.89,84.683 +412463,178.05,85.4926 +412464,176.16,86.3374 +412465,180.35,83.9323 +412466,178.56,84.6766 +412467,176.72,85.4521 +412468,174.82,86.2624 +412469,179.02,83.9602 +412470,177.23,84.6704 +412471,175.38,85.4114 +412472,173.47,86.1869 +412473,177.7,83.9886 +412474,175.9,84.6643 +412475,174.04,85.3706 +412476,172.13,86.1108 +412477,176.38,84.0175 +412478,174.57,84.6585 +412479,172.71,85.3295 +412480,170.79,86.0341 +412481,175.05,84.0469 +412482,173.24,84.6527 +412483,171.37,85.2883 +412484,169.45,85.9569 +412485,173.72,84.0767 +412486,171.9,84.6471 +412487,170.04,85.2469 +412488,168.11,85.8793 +412489,172.39,84.1069 +412490,170.57,84.6417 +412491,168.7,85.2054 +412492,166.77,85.8012 +412493,171.06,84.1375 +412494,169.24,84.6364 +412495,167.37,85.1637 +412496,165.44,85.7226 +412497,169.73,84.1685 +412498,167.91,84.6312 +412499,166.03,85.1219 +412500,164.1,85.6437 +412501,168.4,84.1998 +412502,166.57,84.6261 +412503,164.7,85.0799 +412504,162.77,85.5644 +412505,167.07,84.2313 +412506,165.24,84.6211 +412507,163.37,85.0379 +412508,161.44,85.4847 +412509,165.73,84.2632 +412510,163.91,84.6162 +412511,162.03,84.9957 +412512,160.11,85.4048 +412513,164.39,84.2952 +412514,162.57,84.6114 +412515,160.7,84.9535 +412516,158.78,85.3245 +412517,163.06,84.3275 +412518,161.24,84.6066 +412519,159.37,84.9112 +412520,157.46,85.2441 +412521,161.72,84.36 +412522,159.9,84.6019 +412523,158.04,84.8688 +412524,156.13,85.1634 +412525,160.38,84.3926 +412526,158.57,84.5972 +412527,156.71,84.8263 +412528,154.81,85.0825 +412529,159.03,84.4254 +412530,157.23,84.5926 +412531,155.38,84.7838 +412532,153.49,85.0015 +412533,157.69,84.4582 +412534,155.89,84.5881 +412535,154.05,84.7412 +412536,152.17,84.9204 +412537,156.34,84.4911 +412538,154.56,84.5835 +412539,152.73,84.6987 +412540,150.85,84.8392 +412541,155,84.5241 +412542,153.22,84.579 +412543,151.4,84.6561 +412544,149.53,84.7579 +412545,153.65,84.557 +412546,151.88,84.5744 +412547,150.07,84.6134 +412548,148.21,84.6766 +412549,152.3,84.5899 +412550,150.54,84.5699 +412551,148.74,84.5708 +412552,146.9,84.5953 +412553,150.95,84.6228 +412554,149.2,84.5653 +412555,147.42,84.5282 +412556,145.58,84.514 +412557,149.6,84.6556 +412558,147.86,84.5607 +412559,146.09,84.4856 +412560,144.27,84.4329 +412561,148.24,84.6883 +412562,146.53,84.556 +412563,144.77,84.4431 +412564,142.96,84.3518 +412565,146.89,84.7209 +412566,145.19,84.5513 +412567,143.44,84.4006 +412568,141.65,84.2708 +412569,145.53,84.7533 +412570,143.84,84.5466 +412571,142.12,84.3581 +412572,140.35,84.19 +412573,144.18,84.7855 +412574,142.5,84.5418 +412575,140.79,84.3157 +412576,139.04,84.1094 +412577,142.82,84.8175 +412578,141.16,84.5369 +412579,139.47,84.2733 +412580,137.74,84.029 +412581,141.46,84.8493 +412582,139.82,84.5319 +412583,138.15,84.2311 +412584,136.43,83.9489 +412585,140.1,84.8807 +412586,138.48,84.5269 +412587,136.82,84.1889 +412588,135.13,83.869 +412589,138.73,84.9119 +412590,137.14,84.5217 +412591,135.5,84.1468 +412592,133.83,83.7895 +412593,137.37,84.9427 +412594,135.79,84.5164 +412595,134.18,84.1049 +412596,132.53,83.7103 +412597,136.01,84.9732 +412598,134.45,84.511 +412599,132.86,84.063 +412600,131.23,83.6315 +412601,134.64,85.0033 +412602,133.11,84.5054 +412603,131.54,84.0213 +412604,129.93,83.553 +412605,133.27,85.033 +412606,131.76,84.4997 +412607,130.22,83.9798 +412608,128.64,83.475 +412609,131.9,85.0622 +412610,130.42,84.4939 +412611,128.9,83.9383 +412612,127.34,83.3975 +412613,130.53,85.091 +412614,129.07,84.4879 +412615,127.58,83.8971 +412616,126.05,83.3205 +412617,129.16,85.1192 +412618,127.73,84.4817 +412619,126.26,83.856 +412620,124.76,83.2439 +412621,127.79,85.147 +412622,126.38,84.4754 +412623,124.94,83.815 +412624,123.47,83.168 +412625,126.42,85.1742 +412626,125.04,84.4688 +412627,123.62,83.7743 +412628,122.18,83.0926 +412629,125.04,85.2008 +412630,123.69,84.4621 +412631,122.31,83.7338 +412632,120.89,83.0178 +412633,123.67,85.2269 +412634,122.34,84.4551 +412635,120.99,83.6934 +412636,119.6,82.9436 +412637,122.29,85.2523 +412638,121,84.448 +412639,119.67,83.6533 +412640,118.32,82.8701 +412641,120.91,85.2771 +412642,119.65,84.4406 +412643,118.36,83.6134 +412644,117.03,82.7972 +412645,119.54,85.3012 +412646,118.3,84.433 +412647,117.04,83.5737 +412648,115.75,82.7251 +412649,118.16,85.3246 +412650,116.96,84.4252 +412651,115.72,83.5343 +412652,114.46,82.6537 +412653,116.78,85.3473 +412654,115.61,84.4171 +412655,114.41,83.4951 +412656,113.18,82.5831 +412657,115.39,85.3692 +412658,114.26,84.4087 +412659,113.09,83.4561 +412660,111.9,82.5132 +412661,114.01,85.3904 +412662,112.91,84.4001 +412663,111.78,83.4174 +412664,110.62,82.4441 +412665,112.63,85.4108 +412666,111.56,84.3913 +412667,110.46,83.379 +412668,109.34,82.3759 +412669,111.25,85.4304 +412670,110.21,84.3821 +412671,109.15,83.3409 +412672,108.06,82.3085 +412673,109.86,85.4491 +412674,108.86,84.3727 +412675,107.84,83.3031 +412676,106.78,82.242 +412677,108.47,85.467 +412678,107.51,84.3629 +412679,106.52,83.2655 +412680,105.51,82.1764 +412681,107.09,85.4841 +412682,106.16,84.3529 +412683,105.21,83.2282 +412684,104.23,82.1118 +412685,105.7,85.5002 +412686,104.81,84.3426 +412687,103.9,83.1913 +412688,102.96,82.048 +412689,104.31,85.5154 +412690,103.46,84.332 +412691,102.59,83.1547 +412692,101.68,81.9852 +412693,102.92,85.5297 +412694,102.11,84.321 +412695,101.27,83.1183 +412696,100.41,81.9234 +412697,101.53,85.5431 +412698,100.76,84.3097 +412699,99.962,83.0824 +412700,99.134,81.8627 +412701,100.14,85.5554 +412702,99.411,84.2981 +412703,98.65,83.0467 +412704,97.862,81.8029 +412705,98.753,85.5668 +412706,98.059,84.2861 +412707,97.339,83.0114 +412708,96.59,81.7441 +412709,97.362,85.5772 +412710,96.708,84.2738 +412711,96.027,82.9764 +412712,95.319,81.6865 +412713,95.969,85.5865 +412714,95.357,84.2612 +412715,94.716,82.9418 +412716,94.049,81.6298 +412717,94.577,85.5948 +412718,94.005,84.2482 +412719,93.406,82.9075 +412720,92.779,81.5743 +412721,93.184,85.6021 +412722,92.653,84.2349 +412723,92.095,82.8736 +412724,91.509,81.5199 +412725,91.79,85.6082 +412726,91.302,84.2211 +412727,90.785,82.8401 +412728,90.24,81.4666 +412729,90.396,85.6133 +412730,89.95,84.207 +412731,89.475,82.807 +412732,88.972,81.4145 +412733,89.002,85.6173 +412734,88.598,84.1926 +412735,88.165,82.7742 +412736,87.704,81.3635 +412737,87.607,85.6202 +412738,87.245,84.1777 +412739,86.855,82.7418 +412740,86.436,81.3136 +412741,86.212,85.6219 +412742,85.893,84.1625 +412743,85.545,82.7098 +412744,85.169,81.265 +412745,84.816,85.6225 +412746,84.541,84.1469 +412747,84.236,82.6781 +412748,83.902,81.2175 +412749,83.421,85.622 +412750,83.189,84.1309 +412751,82.926,82.6469 +412752,82.635,81.1712 +412753,82.025,85.6202 +412754,81.836,84.1145 +412755,81.617,82.6161 +412756,81.368,81.1261 +412757,80.628,85.6173 +412758,80.484,84.0977 +412759,80.308,82.5857 +412760,80.102,81.0823 +412761,79.232,85.6132 +412762,79.131,84.0805 +412763,78.999,82.5556 +412764,78.836,81.0397 +412765,77.835,85.6079 +412766,77.779,84.0629 +412767,77.69,82.526 +412768,77.57,80.9983 +412769,76.439,85.6015 +412770,76.426,84.0449 +412771,76.381,82.4968 +412772,76.305,80.9582 +412773,75.042,85.5937 +412774,75.074,84.0264 +412775,75.072,82.4681 +412776,75.039,80.9193 +412777,73.645,85.5848 +412778,73.721,84.0076 +412779,73.763,82.4397 +412780,73.773,80.8817 +412781,72.248,85.5746 +412782,72.369,83.9884 +412783,72.455,82.4117 +412784,72.508,80.8454 +412785,70.851,85.5632 +412786,71.016,83.9687 +412787,71.146,82.3842 +412788,71.242,80.8103 +412789,69.455,85.5506 +412790,69.664,83.9486 +412791,69.837,82.3571 +412792,69.977,80.7765 +412793,68.058,85.5367 +412794,68.311,83.9281 +412795,68.528,82.3304 +412796,68.711,80.744 +412797,66.661,85.5215 +412798,66.959,83.9072 +412799,67.22,82.3042 +412800,67.446,80.7128 +412801,65.265,85.5051 +412802,65.607,83.8858 +412803,65.911,82.2783 +412804,66.18,80.6828 +412805,63.869,85.4874 +412806,64.255,83.864 +412807,64.602,82.2529 +412808,64.914,80.6542 +412809,62.473,85.4685 +412810,62.903,83.8418 +412811,63.293,82.2279 +412812,63.648,80.6268 +412813,61.077,85.4482 +412814,61.551,83.8192 +412815,61.985,82.2034 +412816,62.381,80.6008 +412817,59.681,85.4267 +412818,60.199,83.7961 +412819,60.676,82.1793 +412820,61.115,80.576 +412821,58.286,85.404 +412822,58.848,83.7726 +412823,59.367,82.1556 +412824,59.848,80.5525 +412825,56.892,85.3799 +412826,57.496,83.7487 +412827,58.058,82.1323 +412828,58.581,80.5303 +412829,55.497,85.3546 +412830,56.145,83.7244 +412831,56.749,82.1095 +412832,57.313,80.5094 +412833,54.103,85.3281 +412834,54.794,83.6996 +412835,55.439,82.0871 +412836,56.045,80.4898 +412837,52.71,85.3002 +412838,53.443,83.6745 +412839,54.13,82.0651 +412840,54.777,80.4715 +412841,51.317,85.2711 +412842,52.092,83.6489 +412843,52.821,82.0435 +412844,53.508,80.4544 +412845,49.925,85.2407 +412846,50.741,83.6228 +412847,51.511,82.0224 +412848,52.238,80.4387 +412849,48.533,85.2091 +412850,49.391,83.5964 +412851,50.201,82.0017 +412852,50.968,80.4241 +412853,47.142,85.1762 +412854,48.041,83.5695 +412855,48.891,81.9814 +412856,49.698,80.4109 +412857,45.751,85.142 +412858,46.691,83.5422 +412859,47.581,81.9615 +412860,48.427,80.3989 +412861,44.361,85.1066 +412862,45.341,83.5145 +412863,46.271,81.9421 +412864,47.156,80.3881 +412865,42.972,85.07 +412866,43.992,83.4864 +412867,44.96,81.923 +412868,45.883,80.3786 +412869,41.583,85.0321 +412870,42.643,83.4579 +412871,43.65,81.9044 +412872,44.611,80.3703 +412873,40.196,84.993 +412874,41.294,83.429 +412875,42.339,81.8862 +412876,43.337,80.3632 +412877,38.809,84.9527 +412878,39.946,83.3996 +412879,41.028,81.8684 +412880,42.063,80.3573 +412881,37.423,84.9112 +412882,38.597,83.3699 +412883,39.717,81.851 +412884,40.788,80.3527 +412885,36.037,84.8684 +412886,37.249,83.3398 +412887,38.405,81.8339 +412888,39.512,80.3492 +412889,34.653,84.8245 +412890,35.902,83.3093 +412891,37.093,81.8173 +412892,38.236,80.3469 +412893,33.27,84.7794 +412894,34.554,83.2783 +412895,35.781,81.8011 +412896,36.958,80.3457 +412897,31.887,84.7332 +412898,33.208,83.247 +412899,34.469,81.7852 +412900,35.68,80.3457 +412901,30.506,84.6857 +412902,31.861,83.2154 +412903,33.156,81.7698 +412904,34.401,80.3469 +412905,29.125,84.6372 +412906,30.515,83.1833 +412907,31.844,81.7547 +412908,33.121,80.3491 +412909,27.746,84.5875 +412910,29.169,83.1509 +412911,30.531,81.74 +412912,31.84,80.3525 +412913,26.367,84.5367 +412914,27.823,83.1181 +412915,29.217,81.7256 +412916,30.558,80.357 +412917,24.99,84.4847 +412918,26.478,83.0849 +412919,27.903,81.7116 +412920,29.275,80.3625 +412921,23.614,84.4317 +412922,25.133,83.0514 +412923,26.589,81.698 +412924,27.991,80.3691 +412925,22.239,84.3777 +412926,23.789,83.0175 +412927,25.275,81.6847 +412928,26.706,80.3767 +412929,20.865,84.3225 +412930,22.445,82.9833 +412931,23.96,81.6718 +412932,25.42,80.3853 +412933,19.492,84.2664 +412934,21.101,82.9488 +412935,22.645,81.6592 +412936,24.133,80.395 +412937,18.121,84.2092 +412938,19.758,82.9139 +412939,21.33,81.6469 +412940,22.845,80.4056 +412941,16.751,84.151 +412942,18.416,82.8787 +412943,20.014,81.635 +412944,21.556,80.4173 +412945,15.382,84.0918 +412946,17.073,82.8431 +412947,18.698,81.6234 +412948,20.266,80.4298 +412949,14.014,84.0316 +412950,15.732,82.8073 +412951,17.382,81.6121 +412952,18.974,80.4433 +412953,12.648,83.9705 +412954,14.39,82.7711 +412955,16.065,81.6011 +412956,17.681,80.4577 +412957,11.283,83.9085 +412958,13.049,82.7346 +412959,14.747,81.5904 +412960,16.387,80.473 +412961,9.9188,83.8456 +412962,11.709,82.6979 +412963,13.43,81.58 +412964,15.092,80.4891 +412965,8.5565,83.7818 +412966,10.369,82.6608 +412967,12.112,81.5699 +412968,13.796,80.5061 +412969,7.1955,83.7171 +412970,9.0292,82.6235 +412971,10.793,81.5601 +412972,12.498,80.5239 +412973,5.836,83.6516 +412974,7.6902,82.5859 +412975,9.4746,81.5506 +412976,11.199,80.5425 +412977,4.4778,83.5852 +412978,6.3517,82.548 +412979,8.1554,81.5413 +412980,9.8992,80.5619 +412981,3.1211,83.5181 +412982,5.0136,82.5099 +412983,6.8358,81.5322 +412984,8.5978,80.582 +412985,1.7658,83.4502 +412986,3.676,82.4715 +412987,5.5157,81.5235 +412988,7.295,80.6029 +412989,0.41206,83.3815 +412990,2.339,82.4329 +412991,4.1952,81.5149 +412992,5.9909,80.6244 +412993,359.06,83.3121 +412994,1.0024,82.394 +412995,2.8743,81.5066 +412996,4.6855,80.6467 +412997,357.71,83.242 +412998,359.67,82.355 +412999,1.553,81.4985 +413000,3.3787,80.6696 +413001,356.36,83.1713 +413002,358.33,82.3157 +413003,0.23121,81.4907 +413004,2.0705,80.6931 +413005,355.01,83.0998 +413006,357,82.2762 +413007,358.91,81.483 +413008,0.76101,80.7173 +413009,353.67,83.0278 +413010,355.66,82.2365 +413011,357.59,81.4756 +413012,359.45,80.742 +413013,352.32,82.9552 +413014,354.33,82.1966 +413015,356.26,81.4683 +413016,358.14,80.7672 +413017,350.98,82.882 +413018,352.99,82.1565 +413019,354.94,81.4612 +413020,356.82,80.793 +413021,349.64,82.8082 +413022,351.66,82.1162 +413023,353.62,81.4543 +413024,355.51,80.8193 +413025,348.3,82.7339 +413026,350.33,82.0758 +413027,352.29,81.4476 +413028,354.19,80.8461 +413029,346.96,82.6592 +413030,349,82.0352 +413031,350.97,81.441 +413032,352.87,80.8733 +413033,345.62,82.5839 +413034,347.67,81.9945 +413035,349.64,81.4346 +413036,351.56,80.901 +413037,344.28,82.5083 +413038,346.33,81.9537 +413039,348.31,81.4283 +413040,350.23,80.929 +413041,342.95,82.4322 +413042,345,81.9127 +413043,346.99,81.4221 +413044,348.91,80.9574 +413045,341.62,82.3558 +413046,343.67,81.8716 +413047,345.66,81.4161 +413048,347.59,80.9861 +413049,340.29,82.279 +413050,342.35,81.8304 +413051,344.33,81.4101 +413052,346.26,81.0152 +413053,338.96,82.2019 +413054,341.02,81.789 +413055,343.01,81.4043 +413056,344.94,81.0445 +413057,337.63,82.1245 +413058,339.69,81.7476 +413059,341.68,81.3985 +413060,343.61,81.0741 +413061,336.31,82.0468 +413062,338.36,81.7062 +413063,340.35,81.3929 +413064,342.28,81.1039 +413065,334.98,81.9689 +413066,337.03,81.6646 +413067,339.02,81.3873 +413068,340.95,81.134 +413069,333.66,81.8908 +413070,335.71,81.623 +413071,337.69,81.3818 +413072,339.61,81.1642 +413073,332.34,81.8125 +413074,334.38,81.5813 +413075,336.36,81.3763 +413076,338.28,81.1945 +413077,331.02,81.7341 +413078,333.06,81.5396 +413079,335.03,81.3709 +413080,336.95,81.225 +413081,329.7,81.6555 +413082,331.73,81.4979 +413083,333.7,81.3655 +413084,335.61,81.2555 +413085,328.38,81.5769 +413086,330.41,81.4561 +413087,332.37,81.3601 +413088,334.27,81.2861 +413089,327.07,81.4982 +413090,329.08,81.4143 +413091,331.04,81.3548 +413092,332.93,81.3168 +413093,325.76,81.4195 +413094,327.76,81.3726 +413095,329.7,81.3494 +413096,331.59,81.3474 +413097,324.44,81.3409 +413098,326.44,81.3308 +413099,328.37,81.3441 +413100,330.25,81.378 +413101,323.13,81.2622 +413102,325.12,81.289 +413103,327.04,81.3387 +413104,328.9,81.4086 +413105,321.83,81.1836 +413106,323.79,81.2473 +413107,325.7,81.3334 +413108,327.56,81.4391 +413109,320.52,81.1051 +413110,322.47,81.2056 +413111,324.37,81.3279 +413112,326.21,81.4694 +413113,319.21,81.0267 +413114,321.15,81.164 +413115,323.03,81.3225 +413116,324.86,81.4997 +413117,317.91,80.9485 +413118,319.83,81.1224 +413119,321.7,81.317 +413120,323.51,81.5298 +413121,316.61,80.8705 +413122,318.51,81.0809 +413123,320.36,81.3114 +413124,322.16,81.5597 +413125,315.31,80.7926 +413126,317.19,81.0394 +413127,319.03,81.3058 +413128,320.81,81.5893 +413129,314.01,80.7151 +413130,315.88,80.9981 +413131,317.69,81.3001 +413132,319.45,81.6188 +413133,312.71,80.6378 +413134,314.56,80.9568 +413135,316.35,81.2943 +413136,318.1,81.6479 +413137,311.41,80.5608 +413138,313.24,80.9156 +413139,315.02,81.2884 +413140,316.74,81.6768 +413141,310.12,80.4841 +413142,311.92,80.8746 +413143,313.68,81.2824 +413144,315.38,81.7053 +413145,308.82,80.4078 +413146,310.61,80.8336 +413147,312.34,81.2763 +413148,314.02,81.7335 +413149,307.53,80.3319 +413150,309.29,80.7928 +413151,311,81.2701 +413152,312.66,81.7613 +413153,306.24,80.2564 +413154,307.97,80.7522 +413155,309.66,81.2637 +413156,311.3,81.7887 +413157,304.95,80.1813 +413158,306.66,80.7117 +413159,308.32,81.2572 +413160,309.94,81.8156 +413161,303.66,80.1067 +413162,305.35,80.6713 +413163,306.98,81.2506 +413164,308.57,81.8421 +413165,302.37,80.0326 +413166,304.03,80.6312 +413167,305.64,81.2438 +413168,307.21,81.8682 +413169,301.09,79.959 +413170,302.72,80.5912 +413171,304.3,81.2368 +413172,305.84,81.8937 +413173,299.8,79.886 +413174,301.4,80.5514 +413175,302.96,81.2296 +413176,304.47,81.9187 +413177,298.52,79.814 +413178,300.09,80.5117 +413179,301.62,81.2223 +413180,303.1,81.9431 +413181,297.24,79.742 +413182,298.78,80.4723 +413183,300.28,81.2148 +413184,301.73,81.9669 +413185,295.95,79.671 +413186,297.47,80.4331 +413187,298.94,81.207 +413188,300.36,81.9902 +413189,294.67,79.6 +413190,296.16,80.3941 +413191,297.59,81.1991 +413192,298.99,82.0128 +413193,293.4,79.53 +413194,294.84,80.3554 +413195,296.25,81.1909 +413196,297.62,82.0347 +413197,292.12,79.461 +413198,293.53,80.3169 +413199,294.91,81.1825 +413200,296.24,82.056 +413201,290.84,79.393 +413202,292.22,80.2786 +413203,293.56,81.1739 +413204,294.86,82.0766 +413205,289.57,79.325 +413206,290.91,80.2406 +413207,292.22,81.165 +413208,293.49,82.0964 +413209,288.29,79.258 +413210,289.6,80.2028 +413211,290.88,81.1559 +413212,292.11,82.1155 +413213,287.02,79.192 +413214,288.29,80.1653 +413215,289.53,81.1466 +413216,290.73,82.1339 +413217,285.75,79.127 +413218,286.99,80.1281 +413219,288.19,81.1369 +413220,289.35,82.1515 +413221,284.47,79.063 +413222,285.68,80.0912 +413223,286.84,81.1271 +413224,287.97,82.1682 +413225,283.2,78.999 +413226,284.37,80.0546 +413227,285.5,81.1169 +413228,286.59,82.1842 +413229,281.93,78.937 +413230,283.06,80.0182 +413231,284.15,81.1064 +413232,285.2,82.1992 +413233,280.67,78.875 +413234,281.75,79.982 +413235,282.8,81.0957 +413236,283.82,82.2135 +413237,279.4,78.814 +413238,280.45,79.946 +413239,281.46,81.0846 +413240,282.44,82.2268 +413241,278.13,78.754 +413242,279.14,79.911 +413243,280.11,81.0733 +413244,281.05,82.2392 +413245,276.87,78.695 +413246,277.83,79.876 +413247,278.76,81.0617 +413248,279.66,82.2508 +413249,275.6,78.638 +413250,276.53,79.841 +413251,277.42,81.0497 +413252,278.28,82.2613 +413253,274.33,78.581 +413254,275.22,79.807 +413255,276.07,81.0374 +413256,276.89,82.271 +413257,273.07,78.525 +413258,273.91,79.773 +413259,274.72,81.0248 +413260,275.5,82.2796 +413261,271.81,78.47 +413262,272.61,79.739 +413263,273.38,81.0118 +413264,274.11,82.2873 +413265,270.54,78.417 +413266,271.3,79.706 +413267,272.03,80.9986 +413268,272.72,82.2939 +413269,269.28,78.364 +413270,270,79.673 +413271,270.68,80.9849 +413272,271.33,82.2995 +413273,268.02,78.313 +413274,268.69,79.64 +413275,269.33,80.971 +413276,269.94,82.3041 +413277,266.76,78.262 +413278,267.39,79.608 +413279,267.98,80.9567 +413280,268.55,82.3077 +413281,265.5,78.213 +413282,266.08,79.576 +413283,266.64,80.942 +413284,267.16,82.3102 +413285,264.24,78.165 +413286,264.78,79.544 +413287,265.29,80.9269 +413288,265.76,82.3116 +413289,262.98,78.118 +413290,263.47,79.513 +413291,263.94,80.9115 +413292,264.37,82.3119 +413293,261.72,78.072 +413294,262.17,79.482 +413295,262.59,80.8958 +413296,262.98,82.3111 +413297,260.46,78.027 +413298,260.87,79.452 +413299,261.24,80.8796 +413300,261.58,82.3093 +413301,259.2,77.984 +413302,259.56,79.422 +413303,259.89,80.8631 +413304,260.19,82.3063 +413305,257.94,77.941 +413306,258.26,79.392 +413307,258.54,80.8462 +413308,258.8,82.3021 +413309,256.69,77.9 +413310,256.96,79.363 +413311,257.19,80.8289 +413312,257.4,82.2968 +413313,255.43,77.86 +413314,255.65,79.334 +413315,255.85,80.8113 +413316,256.01,82.2904 +413317,254.17,77.822 +413318,254.35,79.306 +413319,254.5,80.7932 +413320,254.61,82.2828 +413321,252.91,77.784 +413322,253.05,79.278 +413323,253.15,80.7748 +413324,253.22,82.2741 +413325,251.66,77.748 +413326,251.74,79.25 +413327,251.8,80.7559 +413328,251.82,82.2641 +413329,250.4,77.713 +413330,250.44,79.223 +413331,250.45,80.7367 +413332,250.43,82.253 +413333,249.14,77.679 +413334,249.14,79.196 +413335,249.1,80.7171 +413336,249.03,82.2407 +413337,247.88,77.647 +413338,247.83,79.17 +413339,247.75,80.697 +413340,247.63,82.2272 +413341,246.63,77.616 +413342,246.53,79.144 +413343,246.4,80.6766 +413344,246.24,82.2126 +413345,245.37,77.586 +413346,245.23,79.118 +413347,245.05,80.6558 +413348,244.84,82.1967 +413349,244.11,77.557 +413350,243.92,79.093 +413351,243.7,80.6345 +413352,243.45,82.1796 +413353,242.86,77.529 +413354,242.62,79.069 +413355,242.35,80.6129 +413356,242.05,82.1613 +413357,241.6,77.503 +413358,241.32,79.044 +413359,241.01,80.5909 +413360,240.66,82.1417 +413361,240.34,77.478 +413362,240.02,79.021 +413363,239.66,80.5684 +413364,239.26,82.121 +413365,239.08,77.455 +413366,238.71,78.997 +413367,238.31,80.5455 +413368,237.87,82.0991 +413369,237.82,77.432 +413370,237.41,78.974 +413371,236.96,80.5223 +413372,236.47,82.0759 +413373,236.56,77.411 +413374,236.11,78.952 +413375,235.61,80.4986 +413376,235.08,82.0515 +413377,235.31,77.391 +413378,234.8,78.929 +413379,234.26,80.4746 +413380,233.68,82.0259 +413381,234.05,77.372 +413382,233.5,78.908 +413383,232.92,80.4501 +413384,232.29,81.9991 +413385,232.79,77.355 +413386,232.2,78.886 +413387,231.57,80.4252 +413388,230.9,81.9711 +413389,231.53,77.339 +413390,230.89,78.865 +413391,230.22,80.3999 +413392,229.51,81.9419 +413393,230.27,77.324 +413394,229.59,78.845 +413395,228.87,80.3743 +413396,228.11,81.9115 +413397,229,77.31 +413398,228.28,78.825 +413399,227.52,80.3482 +413400,226.72,81.8798 +413401,227.74,77.298 +413402,226.98,78.805 +413403,226.18,80.3217 +413404,225.33,81.847 +413405,226.48,77.287 +413406,225.68,78.786 +413407,224.83,80.2948 +413408,223.94,81.813 +413409,225.22,77.277 +413410,224.37,78.767 +413411,223.48,80.2676 +413412,222.55,81.7778 +413413,223.95,77.268 +413414,223.07,78.749 +413415,222.14,80.2399 +413416,221.16,81.7414 +413417,222.69,77.26 +413418,221.76,78.731 +413419,220.79,80.2119 +413420,219.77,81.7038 +413421,221.43,77.254 +413422,220.46,78.713 +413423,219.44,80.1834 +413424,218.38,81.6651 +413425,220.16,77.249 +413426,219.15,78.696 +413427,218.1,80.1546 +413428,217,81.6252 +413429,218.89,77.245 +413430,217.85,78.679 +413431,216.75,80.1254 +413432,215.61,81.5842 +413433,217.63,77.242 +413434,216.54,78.663 +413435,215.41,80.0958 +413436,214.22,81.542 +413437,216.36,77.24 +413438,215.23,78.646 +413439,214.06,80.0659 +413440,212.84,81.4987 +413441,215.09,77.239 +413442,213.93,78.631 +413443,212.72,80.0356 +413444,211.45,81.4543 +413445,213.82,77.24 +413446,212.62,78.615 +413447,211.37,80.0049 +413448,210.07,81.4087 +413449,212.55,77.241 +413450,211.32,78.601 +413451,210.03,79.974 +413452,208.69,81.3621 +413453,211.28,77.244 +413454,210.01,78.586 +413455,208.69,79.942 +413456,207.31,81.3143 +413457,210.01,77.248 +413458,208.7,78.572 +413459,207.34,79.911 +413460,205.93,81.2656 +413461,208.73,77.253 +413462,207.39,78.558 +413463,206,79.879 +413464,204.55,81.2157 +413465,207.46,77.258 +413466,206.09,78.544 +413467,204.66,79.846 +413468,203.17,81.1648 +413469,206.18,77.265 +413470,204.78,78.531 +413471,203.32,79.813 +413472,201.79,81.1129 +413473,204.91,77.273 +413474,203.47,78.518 +413475,201.97,79.78 +413476,200.42,81.0599 +413477,203.63,77.282 +413478,202.16,78.506 +413479,200.63,79.747 +413480,199.04,81.006 +413481,202.35,77.292 +413482,200.85,78.494 +413483,199.29,79.713 +413484,197.67,80.951 +413485,201.07,77.303 +413486,199.54,78.482 +413487,197.95,79.679 +413488,196.3,80.8951 +413489,199.79,77.314 +413490,198.23,78.47 +413491,196.61,79.645 +413492,194.93,80.8383 +413493,198.51,77.327 +413494,196.92,78.459 +413495,195.27,79.61 +413496,193.56,80.7805 +413497,197.23,77.341 +413498,195.61,78.448 +413499,193.93,79.575 +413500,192.19,80.7218 +413501,195.94,77.355 +413502,194.3,78.438 +413503,192.59,79.54 +413504,190.82,80.6622 +413505,194.66,77.37 +413506,192.99,78.428 +413507,191.26,79.504 +413508,189.46,80.6017 +413509,193.37,77.387 +413510,191.67,78.418 +413511,189.92,79.468 +413512,188.09,80.5404 +413513,192.08,77.404 +413514,190.36,78.408 +413515,188.58,79.432 +413516,186.73,80.4782 +413517,190.79,77.421 +413518,189.05,78.398 +413519,187.24,79.396 +413520,185.37,80.4153 +413521,189.5,77.44 +413522,187.74,78.389 +413523,185.91,79.359 +413524,184.01,80.3515 +413525,188.21,77.459 +413526,186.42,78.38 +413527,184.57,79.322 +413528,182.65,80.2869 +413529,186.92,77.479 +413530,185.11,78.372 +413531,183.24,79.285 +413532,181.29,80.2217 +413533,185.62,77.5 +413534,183.79,78.363 +413535,181.9,79.248 +413536,179.93,80.1556 +413537,184.33,77.521 +413538,182.48,78.355 +413539,180.57,79.21 +413540,178.58,80.0889 +413541,183.03,77.543 +413542,181.16,78.347 +413543,179.23,79.172 +413544,177.23,80.0215 +413545,181.73,77.566 +413546,179.85,78.339 +413547,177.9,79.134 +413548,175.87,79.953 +413549,180.43,77.589 +413550,178.53,78.332 +413551,176.57,79.096 +413552,174.52,79.885 +413553,179.13,77.613 +413554,177.21,78.324 +413555,175.23,79.058 +413556,173.18,79.815 +413557,177.82,77.637 +413558,175.9,78.317 +413559,173.9,79.019 +413560,171.83,79.745 +413561,176.52,77.662 +413562,174.58,78.31 +413563,172.57,78.981 +413564,170.48,79.675 +413565,175.21,77.687 +413566,173.26,78.303 +413567,171.24,78.942 +413568,169.14,79.604 +413569,173.91,77.713 +413570,171.94,78.297 +413571,169.91,78.902 +413572,167.8,79.533 +413573,172.6,77.739 +413574,170.62,78.29 +413575,168.58,78.863 +413576,166.46,79.461 +413577,171.29,77.766 +413578,169.3,78.284 +413579,167.25,78.824 +413580,165.12,79.388 +413581,169.98,77.793 +413582,167.98,78.278 +413583,165.92,78.784 +413584,163.78,79.315 +413585,168.66,77.821 +413586,166.66,78.272 +413587,164.59,78.745 +413588,162.45,79.242 +413589,167.35,77.849 +413590,165.34,78.266 +413591,163.27,78.705 +413592,161.11,79.168 +413593,166.03,77.877 +413594,164.02,78.26 +413595,161.94,78.665 +413596,159.78,79.094 +413597,164.71,77.905 +413598,162.7,78.254 +413599,160.61,78.625 +413600,158.45,79.02 +413601,163.39,77.934 +413602,161.38,78.249 +413603,159.29,78.585 +413604,157.12,78.945 +413605,162.07,77.963 +413606,160.05,78.243 +413607,157.96,78.545 +413608,155.79,78.87 +413609,160.75,77.992 +413610,158.73,78.238 +413611,156.64,78.505 +413612,154.47,78.795 +413613,159.42,78.021 +413614,157.4,78.232 +413615,155.31,78.465 +413616,153.14,78.72 +413617,158.1,78.051 +413618,156.08,78.227 +413619,153.99,78.424 +413620,151.82,78.644 +413621,156.77,78.08 +413622,154.75,78.222 +413623,152.67,78.384 +413624,150.5,78.569 +413625,155.44,78.11 +413626,153.43,78.217 +413627,151.34,78.343 +413628,149.18,78.493 +413629,154.11,78.14 +413630,152.1,78.211 +413631,150.02,78.303 +413632,147.86,78.417 +413633,152.78,78.169 +413634,150.78,78.206 +413635,148.7,78.263 +413636,146.55,78.341 +413637,151.45,78.199 +413638,149.45,78.201 +413639,147.38,78.222 +413640,145.23,78.265 +413641,150.11,78.229 +413642,148.12,78.196 +413643,146.06,78.182 +413644,143.92,78.189 +413645,148.78,78.259 +413646,146.79,78.191 +413647,144.74,78.141 +413648,142.61,78.113 +413649,147.44,78.288 +413650,145.46,78.186 +413651,143.42,78.101 +413652,141.3,78.037 +413653,146.1,78.318 +413654,144.14,78.18 +413655,142.1,78.061 +413656,140,77.961 +413657,144.76,78.347 +413658,142.81,78.175 +413659,140.79,78.02 +413660,138.69,77.886 +413661,143.42,78.377 +413662,141.48,78.17 +413663,139.47,77.98 +413664,137.39,77.81 +413665,142.07,78.406 +413666,140.15,78.165 +413667,138.15,77.94 +413668,136.08,77.735 +413669,140.73,78.434 +413670,138.81,78.159 +413671,136.83,77.9 +413672,134.78,77.659 +413673,139.38,78.463 +413674,137.48,78.154 +413675,135.52,77.86 +413676,133.48,77.584 +413677,138.03,78.491 +413678,136.15,78.148 +413679,134.2,77.82 +413680,132.18,77.51 +413681,136.68,78.52 +413682,134.82,78.142 +413683,132.89,77.78 +413684,130.89,77.435 +413685,135.33,78.547 +413686,133.48,78.137 +413687,131.57,77.74 +413688,129.59,77.361 +413689,133.98,78.575 +413690,132.15,78.131 +413691,130.26,77.701 +413692,128.3,77.287 +413693,132.62,78.602 +413694,130.82,78.125 +413695,128.95,77.661 +413696,127.01,77.213 +413697,131.27,78.629 +413698,129.48,78.119 +413699,127.64,77.622 +413700,125.72,77.14 +413701,129.91,78.655 +413702,128.15,78.113 +413703,126.32,77.583 +413704,124.43,77.068 +413705,128.55,78.681 +413706,126.81,78.106 +413707,125.01,77.544 +413708,123.14,76.995 +413709,127.19,78.706 +413710,125.48,78.1 +413711,123.7,77.505 +413712,121.86,76.924 +413713,125.83,78.731 +413714,124.14,78.093 +413715,122.39,77.466 +413716,120.57,76.852 +413717,124.47,78.755 +413718,122.8,78.086 +413719,121.08,77.428 +413720,119.29,76.782 +413721,123.11,78.779 +413722,121.47,78.079 +413723,119.77,77.389 +413724,118.01,76.711 +413725,121.74,78.802 +413726,120.13,78.072 +413727,118.46,77.351 +413728,116.73,76.642 +413729,120.38,78.825 +413730,118.79,78.065 +413731,117.15,77.313 +413732,115.45,76.573 +413733,119.01,78.847 +413734,117.45,78.057 +413735,115.84,77.275 +413736,114.17,76.504 +413737,117.64,78.868 +413738,116.12,78.049 +413739,114.54,77.238 +413740,112.9,76.437 +413741,116.27,78.889 +413742,114.78,78.041 +413743,113.23,77.201 +413744,111.62,76.37 +413745,114.9,78.909 +413746,113.44,78.033 +413747,111.92,77.164 +413748,110.35,76.303 +413749,113.53,78.928 +413750,112.1,78.024 +413751,110.61,77.127 +413752,109.08,76.238 +413753,112.16,78.947 +413754,110.76,78.016 +413755,109.31,77.09 +413756,107.8,76.173 +413757,110.78,78.965 +413758,109.42,78.007 +413759,108,77.054 +413760,106.53,76.109 +413761,109.41,78.982 +413762,108.08,77.998 +413763,106.7,77.018 +413764,105.26,76.045 +413765,108.03,78.998 +413766,106.74,77.988 +413767,105.39,76.982 +413768,104,75.983 +413769,106.65,79.014 +413770,105.39,77.978 +413771,104.09,76.947 +413772,102.73,75.921 +413773,105.28,79.028 +413774,104.05,77.968 +413775,102.78,76.912 +413776,101.46,75.861 +413777,103.9,79.042 +413778,102.71,77.958 +413779,101.48,76.877 +413780,100.2,75.801 +413781,102.52,79.055 +413782,101.37,77.947 +413783,100.18,76.842 +413784,98.935,75.742 +413785,101.13,79.067 +413786,100.03,77.937 +413787,98.872,76.808 +413788,97.672,75.684 +413789,99.752,79.079 +413790,98.682,77.925 +413791,97.569,76.774 +413792,96.41,75.626 +413793,98.369,79.089 +413794,97.339,77.914 +413795,96.266,76.74 +413796,95.149,75.57 +413797,96.985,79.098 +413798,95.995,77.902 +413799,94.964,76.707 +413800,93.889,75.515 +413801,95.6,79.107 +413802,94.652,77.89 +413803,93.662,76.674 +413804,92.63,75.461 +413805,94.215,79.114 +413806,93.308,77.878 +413807,92.361,76.642 +413808,91.371,75.408 +413809,92.828,79.121 +413810,91.963,77.865 +413811,91.059,76.609 +413812,90.113,75.356 +413813,91.441,79.126 +413814,90.619,77.852 +413815,89.758,76.577 +413816,88.856,75.304 +413817,90.053,79.131 +413818,89.274,77.838 +413819,88.457,76.546 +413820,87.6,75.254 +413821,88.665,79.134 +413822,87.929,77.825 +413823,87.156,76.515 +413824,86.344,75.205 +413825,87.276,79.136 +413826,86.584,77.811 +413827,85.856,76.484 +413828,85.089,75.158 +413829,85.886,79.138 +413830,85.239,77.796 +413831,84.556,76.453 +413832,83.834,75.111 +413833,84.496,79.138 +413834,83.894,77.781 +413835,83.256,76.423 +413836,82.58,75.065 +413837,83.105,79.137 +413838,82.548,77.766 +413839,81.956,76.393 +413840,81.327,75.021 +413841,81.714,79.135 +413842,81.203,77.751 +413843,80.656,76.364 +413844,80.074,74.977 +413845,80.322,79.133 +413846,79.857,77.735 +413847,79.357,76.335 +413848,78.821,74.935 +413849,78.93,79.128 +413850,78.511,77.719 +413851,78.057,76.306 +413852,77.569,74.894 +413853,77.537,79.123 +413854,77.165,77.702 +413855,76.758,76.278 +413856,76.318,74.854 +413857,76.144,79.117 +413858,75.818,77.685 +413859,75.459,76.25 +413860,75.066,74.815 +413861,74.751,79.11 +413862,74.472,77.667 +413863,74.16,76.223 +413864,73.815,74.778 +413865,73.357,79.101 +413866,73.126,77.65 +413867,72.862,76.196 +413868,72.564,74.741 +413869,71.963,79.091 +413870,71.779,77.632 +413871,71.563,76.169 +413872,71.313,74.706 +413873,70.569,79.081 +413874,70.433,77.613 +413875,70.264,76.143 +413876,70.063,74.672 +413877,69.175,79.069 +413878,69.086,77.594 +413879,68.966,76.117 +413880,68.813,74.64 +413881,67.78,79.055 +413882,67.74,77.575 +413883,67.667,76.092 +413884,67.562,74.608 +413885,66.385,79.041 +413886,66.393,77.555 +413887,66.369,76.067 +413888,66.312,74.578 +413889,64.991,79.026 +413890,65.047,77.535 +413891,65.071,76.042 +413892,65.062,74.549 +413893,63.596,79.009 +413894,63.7,77.515 +413895,63.772,76.018 +413896,63.812,74.521 +413897,62.201,78.991 +413898,62.354,77.494 +413899,62.474,75.994 +413900,62.562,74.494 +413901,60.806,78.972 +413902,61.007,77.472 +413903,61.176,75.971 +413904,61.312,74.469 +413905,59.411,78.952 +413906,59.661,77.451 +413907,59.877,75.948 +413908,60.061,74.445 +413909,58.017,78.931 +413910,58.315,77.429 +413911,58.579,75.925 +413912,58.811,74.422 +413913,56.622,78.908 +413914,56.968,77.406 +413915,57.281,75.903 +413916,57.56,74.4 +413917,55.228,78.884 +413918,55.622,77.383 +413919,55.982,75.882 +413920,56.31,74.38 +413921,53.834,78.859 +413922,54.276,77.36 +413923,54.684,75.86 +413924,55.058,74.361 +413925,52.44,78.833 +413926,52.93,77.337 +413927,53.385,75.839 +413928,53.807,74.343 +413929,51.046,78.806 +413930,51.584,77.313 +413931,52.086,75.819 +413932,52.555,74.326 +413933,49.653,78.778 +413934,50.238,77.288 +413935,50.788,75.799 +413936,51.303,74.311 +413937,48.26,78.748 +413938,48.892,77.263 +413939,49.489,75.779 +413940,50.051,74.297 +413941,46.867,78.717 +413942,47.547,77.238 +413943,48.19,75.76 +413944,48.798,74.284 +413945,45.475,78.685 +413946,46.202,77.213 +413947,46.891,75.741 +413948,47.544,74.272 +413949,44.083,78.652 +413950,44.857,77.187 +413951,45.591,75.723 +413952,46.29,74.261 +413953,42.692,78.618 +413954,43.512,77.16 +413955,44.292,75.705 +413956,45.036,74.252 +413957,41.301,78.582 +413958,42.167,77.134 +413959,42.992,75.687 +413960,43.781,74.243 +413961,39.911,78.546 +413962,40.822,77.106 +413963,41.693,75.67 +413964,42.525,74.236 +413965,38.521,78.508 +413966,39.478,77.079 +413967,40.393,75.653 +413968,41.269,74.23 +413969,37.133,78.469 +413970,38.134,77.051 +413971,39.092,75.636 +413972,40.012,74.226 +413973,35.744,78.429 +413974,36.79,77.023 +413975,37.792,75.62 +413976,38.755,74.222 +413977,34.357,78.388 +413978,35.447,76.994 +413979,36.491,75.604 +413980,37.496,74.22 +413981,32.97,78.346 +413982,34.103,76.965 +413983,35.191,75.589 +413984,36.237,74.218 +413985,31.584,78.303 +413986,32.76,76.936 +413987,33.89,75.574 +413988,34.977,74.218 +413989,30.199,78.259 +413990,31.418,76.906 +413991,32.588,75.56 +413992,33.716,74.219 +413993,28.815,78.213 +413994,30.075,76.876 +413995,31.287,75.545 +413996,32.455,74.221 +413997,27.431,78.167 +413998,28.733,76.846 +413999,29.985,75.531 +414000,31.192,74.224 +414001,26.049,78.119 +414002,27.391,76.815 +414003,28.683,75.518 +414004,29.929,74.228 +414005,24.667,78.071 +414006,26.05,76.784 +414007,27.38,75.505 +414008,28.664,74.233 +414009,23.286,78.021 +414010,24.709,76.753 +414011,26.077,75.492 +414012,27.399,74.24 +414013,21.907,77.971 +414014,23.368,76.721 +414015,24.774,75.48 +414016,26.132,74.247 +414017,20.528,77.919 +414018,22.028,76.689 +414019,23.471,75.467 +414020,24.865,74.255 +414021,19.151,77.867 +414022,20.688,76.656 +414023,22.167,75.456 +414024,23.596,74.264 +414025,17.775,77.813 +414026,19.348,76.624 +414027,20.863,75.444 +414028,22.327,74.274 +414029,16.399,77.759 +414030,18.009,76.591 +414031,19.559,75.433 +414032,21.056,74.285 +414033,15.025,77.704 +414034,16.67,76.557 +414035,18.254,75.422 +414036,19.784,74.297 +414037,13.652,77.647 +414038,15.332,76.524 +414039,16.949,75.412 +414040,18.511,74.31 +414041,12.281,77.59 +414042,13.994,76.49 +414043,15.643,75.401 +414044,17.237,74.324 +414045,10.911,77.532 +414046,12.656,76.456 +414047,14.337,75.391 +414048,15.962,74.339 +414049,9.5414,77.473 +414050,11.319,76.421 +414051,13.031,75.382 +414052,14.685,74.354 +414053,8.1737,77.414 +414054,9.9826,76.386 +414055,11.724,75.372 +414056,13.407,74.371 +414057,6.8072,77.353 +414058,8.6464,76.351 +414059,10.417,75.363 +414060,12.128,74.388 +414061,5.4422,77.292 +414062,7.3107,76.316 +414063,9.1091,75.354 +414064,10.847,74.406 +414065,4.0785,77.23 +414066,5.9755,76.281 +414067,7.8011,75.346 +414068,9.5654,74.424 +414069,2.7162,77.167 +414070,4.6407,76.245 +414071,6.4926,75.337 +414072,8.2823,74.444 +414073,1.3553,77.104 +414074,3.3064,76.209 +414075,5.1837,75.329 +414076,6.9977,74.464 +414077,360,77.039 +414078,1.9726,76.173 +414079,3.8744,75.321 +414080,5.7118,74.485 +414081,358.64,76.975 +414082,0.63935,76.136 +414083,2.5646,75.314 +414084,4.4245,74.506 +414085,357.28,76.909 +414086,359.31,76.1 +414087,1.2543,75.306 +414088,3.1358,74.528 +414089,355.93,76.843 +414090,357.97,76.063 +414091,359.94,75.299 +414092,1.8457,74.551 +414093,354.57,76.776 +414094,356.64,76.026 +414095,358.63,75.292 +414096,0.55408,74.574 +414097,353.22,76.708 +414098,355.31,75.989 +414099,357.32,75.286 +414100,359.26,74.598 +414101,351.87,76.64 +414102,353.98,75.951 +414103,356.01,75.279 +414104,357.97,74.623 +414105,350.52,76.572 +414106,352.65,75.914 +414107,354.7,75.272 +414108,356.67,74.648 +414109,349.18,76.503 +414110,351.32,75.876 +414111,353.38,75.266 +414112,355.37,74.673 +414113,347.83,76.433 +414114,349.99,75.838 +414115,352.07,75.26 +414116,354.07,74.699 +414117,346.49,76.363 +414118,348.66,75.8 +414119,350.75,75.254 +414120,352.77,74.725 +414121,345.14,76.293 +414122,347.34,75.762 +414123,349.44,75.248 +414124,351.47,74.752 +414125,343.8,76.222 +414126,346.01,75.723 +414127,348.13,75.243 +414128,350.17,74.779 +414129,342.47,76.151 +414130,344.68,75.685 +414131,346.81,75.237 +414132,348.86,74.807 +414133,341.13,76.079 +414134,343.35,75.646 +414135,345.49,75.232 +414136,347.56,74.834 +414137,339.79,76.007 +414138,342.03,75.607 +414139,344.18,75.227 +414140,346.25,74.862 +414141,338.46,75.935 +414142,340.7,75.569 +414143,342.86,75.221 +414144,344.94,74.891 +414145,337.13,75.862 +414146,339.38,75.53 +414147,341.54,75.216 +414148,343.63,74.92 +414149,335.8,75.789 +414150,338.06,75.491 +414151,340.22,75.211 +414152,342.31,74.948 +414153,334.47,75.716 +414154,336.73,75.452 +414155,338.9,75.206 +414156,341,74.978 +414157,333.14,75.643 +414158,335.41,75.413 +414159,337.59,75.201 +414160,339.68,75.007 +414161,331.82,75.569 +414162,334.09,75.374 +414163,336.27,75.197 +414164,338.37,75.036 +414165,330.49,75.495 +414166,332.76,75.334 +414167,334.95,75.192 +414168,337.05,75.066 +414169,329.17,75.422 +414170,331.44,75.295 +414171,333.62,75.187 +414172,335.72,75.095 +414173,327.85,75.348 +414174,330.12,75.256 +414175,332.3,75.182 +414176,334.4,75.125 +414177,326.53,75.274 +414178,328.8,75.217 +414179,330.98,75.178 +414180,333.08,75.155 +414181,325.22,75.2 +414182,327.48,75.178 +414183,329.66,75.173 +414184,331.75,75.184 +414185,323.9,75.126 +414186,326.17,75.138 +414187,328.34,75.168 +414188,330.43,75.214 +414189,322.59,75.052 +414190,324.85,75.099 +414191,327.01,75.164 +414192,329.1,75.244 +414193,321.28,74.978 +414194,323.53,75.06 +414195,325.69,75.159 +414196,327.77,75.273 +414197,319.97,74.904 +414198,322.21,75.021 +414199,324.36,75.154 +414200,326.43,75.303 +414201,318.66,74.83 +414202,320.9,74.982 +414203,323.04,75.149 +414204,325.1,75.332 +414205,317.36,74.757 +414206,319.58,74.942 +414207,321.71,75.145 +414208,323.76,75.361 +414209,316.05,74.683 +414210,318.26,74.903 +414211,320.39,75.14 +414212,322.43,75.39 +414213,314.75,74.61 +414214,316.95,74.865 +414215,319.06,75.135 +414216,321.09,75.419 +414217,313.45,74.537 +414218,315.64,74.826 +414219,317.73,75.13 +414220,319.75,75.447 +414221,312.15,74.464 +414222,314.32,74.787 +414223,316.41,75.125 +414224,318.41,75.475 +414225,310.85,74.392 +414226,313.01,74.748 +414227,315.08,75.12 +414228,317.07,75.503 +414229,309.56,74.319 +414230,311.7,74.71 +414231,313.75,75.114 +414232,315.72,75.531 +414233,308.26,74.247 +414234,310.38,74.671 +414235,312.42,75.109 +414236,314.38,75.558 +414237,306.97,74.176 +414238,309.07,74.633 +414239,311.09,75.103 +414240,313.03,75.585 +414241,305.68,74.105 +414242,307.76,74.595 +414243,309.76,75.098 +414244,311.68,75.612 +414245,304.39,74.034 +414246,306.45,74.557 +414247,308.43,75.092 +414248,310.33,75.638 +414249,303.1,73.963 +414250,305.14,74.519 +414251,307.1,75.086 +414252,308.98,75.663 +414253,301.82,73.894 +414254,303.83,74.481 +414255,305.77,75.08 +414256,307.62,75.689 +414257,300.53,73.824 +414258,302.52,74.443 +414259,304.43,75.074 +414260,306.27,75.713 +414261,299.25,73.755 +414262,301.22,74.406 +414263,303.1,75.067 +414264,304.91,75.737 +414265,297.97,73.687 +414266,299.91,74.369 +414267,301.77,75.061 +414268,303.55,75.761 +414269,296.69,73.619 +414270,298.6,74.332 +414271,300.43,75.054 +414272,302.2,75.784 +414273,295.41,73.552 +414274,297.29,74.295 +414275,299.1,75.047 +414276,300.84,75.806 +414277,294.13,73.485 +414278,295.99,74.258 +414279,297.77,75.04 +414280,299.47,75.828 +414281,292.86,73.419 +414282,294.68,74.222 +414283,296.43,75.033 +414284,298.11,75.849 +414285,291.58,73.354 +414286,293.38,74.185 +414287,295.1,75.025 +414288,296.75,75.87 +414289,290.31,73.289 +414290,292.07,74.15 +414291,293.76,75.017 +414292,295.38,75.89 +414293,289.04,73.225 +414294,290.77,74.114 +414295,292.42,75.009 +414296,294.01,75.909 +414297,287.77,73.162 +414298,289.46,74.078 +414299,291.09,75.001 +414300,292.65,75.927 +414301,286.5,73.1 +414302,288.16,74.043 +414303,289.75,74.992 +414304,291.28,75.945 +414305,285.23,73.038 +414306,286.86,74.008 +414307,288.41,74.984 +414308,289.91,75.962 +414309,283.97,72.977 +414310,285.55,73.973 +414311,287.08,74.975 +414312,288.53,75.978 +414313,282.7,72.917 +414314,284.25,73.939 +414315,285.74,74.965 +414316,287.16,75.994 +414317,281.44,72.858 +414318,282.95,73.905 +414319,284.4,74.956 +414320,285.79,76.008 +414321,280.17,72.8 +414322,281.65,73.871 +414323,283.06,74.946 +414324,284.41,76.022 +414325,278.91,72.742 +414326,280.35,73.838 +414327,281.72,74.936 +414328,283.04,76.034 +414329,277.65,72.686 +414330,279.05,73.804 +414331,280.38,74.925 +414332,281.66,76.046 +414333,276.39,72.63 +414334,277.75,73.771 +414335,279.04,74.914 +414336,280.28,76.057 +414337,275.13,72.576 +414338,276.45,73.739 +414339,277.7,74.903 +414340,278.9,76.068 +414341,273.88,72.522 +414342,275.15,73.706 +414343,276.36,74.892 +414344,277.52,76.077 +414345,272.62,72.469 +414346,273.85,73.674 +414347,275.02,74.88 +414348,276.14,76.085 +414349,271.36,72.418 +414350,272.55,73.643 +414351,273.68,74.868 +414352,274.76,76.092 +414353,270.11,72.367 +414354,271.25,73.612 +414355,272.34,74.856 +414356,273.38,76.099 +414357,268.86,72.317 +414358,269.95,73.581 +414359,271,74.843 +414360,271.99,76.104 +414361,267.6,72.268 +414362,268.66,73.55 +414363,269.66,74.83 +414364,270.61,76.108 +414365,266.35,72.221 +414366,267.36,73.52 +414367,268.31,74.817 +414368,269.22,76.111 +414369,265.1,72.174 +414370,266.06,73.49 +414371,266.97,74.804 +414372,267.83,76.114 +414373,263.85,72.129 +414374,264.76,73.46 +414375,265.63,74.789 +414376,266.45,76.115 +414377,262.6,72.085 +414378,263.47,73.431 +414379,264.29,74.775 +414380,265.06,76.115 +414381,261.35,72.041 +414382,262.17,73.402 +414383,262.94,74.76 +414384,263.67,76.114 +414385,260.1,71.999 +414386,260.87,73.374 +414387,261.6,74.745 +414388,262.28,76.112 +414389,258.85,71.958 +414390,259.58,73.346 +414391,260.26,74.73 +414392,260.89,76.109 +414393,257.61,71.919 +414394,258.28,73.318 +414395,258.91,74.714 +414396,259.5,76.105 +414397,256.36,71.88 +414398,256.98,73.291 +414399,257.57,74.698 +414400,258.11,76.1 +414401,255.11,71.842 +414402,255.69,73.264 +414403,256.22,74.681 +414404,256.72,76.093 +414405,253.87,71.806 +414406,254.39,73.237 +414407,254.88,74.664 +414408,255.33,76.086 +414409,252.62,71.771 +414410,253.1,73.211 +414411,253.54,74.647 +414412,253.94,76.077 +414413,251.38,71.737 +414414,251.8,73.185 +414415,252.19,74.629 +414416,252.55,76.067 +414417,250.13,71.704 +414418,250.51,73.16 +414419,250.85,74.611 +414420,251.15,76.056 +414421,248.89,71.673 +414422,249.21,73.135 +414423,249.5,74.593 +414424,249.76,76.044 +414425,247.64,71.642 +414426,247.92,73.11 +414427,248.16,74.574 +414428,248.37,76.031 +414429,246.4,71.613 +414430,246.62,73.086 +414431,246.81,74.555 +414432,246.97,76.017 +414433,245.15,71.585 +414434,245.33,73.063 +414435,245.47,74.535 +414436,245.58,76.001 +414437,243.91,71.558 +414438,244.03,73.039 +414439,244.13,74.515 +414440,244.18,75.985 +414441,242.66,71.533 +414442,242.74,73.016 +414443,242.78,74.495 +414444,242.79,75.967 +414445,241.42,71.509 +414446,241.45,72.994 +414447,241.44,74.474 +414448,241.4,75.948 +414449,240.18,71.486 +414450,240.15,72.971 +414451,240.09,74.453 +414452,240,75.927 +414453,238.93,71.464 +414454,238.86,72.95 +414455,238.75,74.431 +414456,238.61,75.906 +414457,237.69,71.443 +414458,237.56,72.928 +414459,237.4,74.409 +414460,237.21,75.884 +414461,236.44,71.424 +414462,236.27,72.907 +414463,236.06,74.387 +414464,235.82,75.86 +414465,235.2,71.406 +414466,234.97,72.887 +414467,234.71,74.364 +414468,234.42,75.835 +414469,233.95,71.389 +414470,233.68,72.867 +414471,233.37,74.341 +414472,233.03,75.809 +414473,232.71,71.373 +414474,232.38,72.847 +414475,232.02,74.317 +414476,231.63,75.782 +414477,231.46,71.358 +414478,231.09,72.828 +414479,230.68,74.293 +414480,230.24,75.753 +414481,230.22,71.345 +414482,229.79,72.809 +414483,229.34,74.269 +414484,228.85,75.724 +414485,228.97,71.333 +414486,228.5,72.79 +414487,227.99,74.244 +414488,227.45,75.693 +414489,227.73,71.322 +414490,227.2,72.772 +414491,226.65,74.219 +414492,226.06,75.661 +414493,226.48,71.312 +414494,225.91,72.754 +414495,225.3,74.193 +414496,224.67,75.628 +414497,225.23,71.304 +414498,224.61,72.737 +414499,223.96,74.168 +414500,223.27,75.594 +414501,223.99,71.296 +414502,223.32,72.72 +414503,222.62,74.141 +414504,221.88,75.559 +414505,222.74,71.29 +414506,222.02,72.703 +414507,221.27,74.115 +414508,220.49,75.522 +414509,221.49,71.285 +414510,220.73,72.687 +414511,219.93,74.088 +414512,219.1,75.485 +414513,220.24,71.281 +414514,219.43,72.671 +414515,218.59,74.06 +414516,217.71,75.446 +414517,218.99,71.278 +414518,218.13,72.656 +414519,217.24,74.032 +414520,216.32,75.406 +414521,217.74,71.276 +414522,216.84,72.641 +414523,215.9,74.004 +414524,214.93,75.365 +414525,216.49,71.276 +414526,215.54,72.626 +414527,214.56,73.976 +414528,213.54,75.324 +414529,215.24,71.276 +414530,214.24,72.612 +414531,213.22,73.947 +414532,212.15,75.281 +414533,213.98,71.278 +414534,212.95,72.598 +414535,211.88,73.918 +414536,210.76,75.236 +414537,212.73,71.281 +414538,211.65,72.584 +414539,210.53,73.888 +414540,209.38,75.191 +414541,211.47,71.285 +414542,210.35,72.571 +414543,209.19,73.858 +414544,207.99,75.145 +414545,210.22,71.289 +414546,209.06,72.558 +414547,207.85,73.828 +414548,206.61,75.098 +414549,208.96,71.295 +414550,207.76,72.546 +414551,206.51,73.797 +414552,205.22,75.05 +414553,207.7,71.302 +414554,206.46,72.533 +414555,205.17,73.767 +414556,203.84,75.001 +414557,206.45,71.31 +414558,205.16,72.522 +414559,203.83,73.735 +414560,202.46,74.95 +414561,205.19,71.319 +414562,203.86,72.51 +414563,202.49,73.704 +414564,201.08,74.899 +414565,203.93,71.329 +414566,202.56,72.499 +414567,201.15,73.672 +414568,199.69,74.847 +414569,202.66,71.34 +414570,201.26,72.488 +414571,199.81,73.64 +414572,198.31,74.794 +414573,201.4,71.351 +414574,199.96,72.477 +414575,198.48,73.607 +414576,196.94,74.74 +414577,200.14,71.364 +414578,198.66,72.467 +414579,197.14,73.574 +414580,195.56,74.685 +414581,198.87,71.377 +414582,197.36,72.457 +414583,195.8,73.541 +414584,194.18,74.629 +414585,197.61,71.392 +414586,196.06,72.447 +414587,194.46,73.508 +414588,192.81,74.573 +414589,196.34,71.407 +414590,194.76,72.438 +414591,193.13,73.474 +414592,191.43,74.515 +414593,195.07,71.423 +414594,193.46,72.429 +414595,191.79,73.44 +414596,190.06,74.457 +414597,193.8,71.44 +414598,192.15,72.42 +414599,190.45,73.406 +414600,188.69,74.397 +414601,192.53,71.458 +414602,190.85,72.411 +414603,189.12,73.371 +414604,187.32,74.337 +414605,191.26,71.476 +414606,189.55,72.403 +414607,187.78,73.336 +414608,185.95,74.277 +414609,189.99,71.495 +414610,188.25,72.395 +414611,186.45,73.301 +414612,184.58,74.215 +414613,188.71,71.515 +414614,186.94,72.387 +414615,185.11,73.266 +414616,183.22,74.153 +414617,187.43,71.536 +414618,185.64,72.379 +414619,183.78,73.231 +414620,181.85,74.09 +414621,186.16,71.557 +414622,184.33,72.372 +414623,182.45,73.195 +414624,180.49,74.026 +414625,184.88,71.579 +414626,183.03,72.365 +414627,181.11,73.159 +414628,179.13,73.962 +414629,183.6,71.601 +414630,181.72,72.358 +414631,179.78,73.123 +414632,177.77,73.897 +414633,182.32,71.625 +414634,180.42,72.351 +414635,178.45,73.086 +414636,176.41,73.831 +414637,181.03,71.648 +414638,179.11,72.344 +414639,177.12,73.05 +414640,175.05,73.765 +414641,179.75,71.673 +414642,177.8,72.338 +414643,175.79,73.013 +414644,173.69,73.698 +414645,178.46,71.698 +414646,176.49,72.332 +414647,174.46,72.976 +414648,172.34,73.631 +414649,177.17,71.723 +414650,175.19,72.326 +414651,173.13,72.939 +414652,170.99,73.563 +414653,175.88,71.749 +414654,173.88,72.32 +414655,171.8,72.902 +414656,169.63,73.494 +414657,174.59,71.775 +414658,172.57,72.314 +414659,170.47,72.864 +414660,168.28,73.425 +414661,173.3,71.802 +414662,171.26,72.309 +414663,169.14,72.827 +414664,166.94,73.356 +414665,172.01,71.829 +414666,169.95,72.303 +414667,167.81,72.789 +414668,165.59,73.286 +414669,170.71,71.856 +414670,168.64,72.298 +414671,166.49,72.751 +414672,164.25,73.216 +414673,169.41,71.884 +414674,167.33,72.293 +414675,165.16,72.713 +414676,162.9,73.145 +414677,168.11,71.912 +414678,166.01,72.288 +414679,163.83,72.675 +414680,161.56,73.074 +414681,166.81,71.941 +414682,164.7,72.283 +414683,162.51,72.637 +414684,160.22,73.003 +414685,165.51,71.969 +414686,163.39,72.278 +414687,161.18,72.599 +414688,158.88,72.931 +414689,164.21,71.998 +414690,162.08,72.273 +414691,159.86,72.56 +414692,157.55,72.859 +414693,162.9,72.027 +414694,160.76,72.269 +414695,158.54,72.522 +414696,156.21,72.787 +414697,161.6,72.057 +414698,159.45,72.264 +414699,157.21,72.483 +414700,154.88,72.715 +414701,160.29,72.086 +414702,158.13,72.26 +414703,155.89,72.445 +414704,153.55,72.642 +414705,158.98,72.116 +414706,156.82,72.255 +414707,154.57,72.406 +414708,152.22,72.569 +414709,157.67,72.145 +414710,155.5,72.251 +414711,153.25,72.367 +414712,150.89,72.497 +414713,156.35,72.175 +414714,154.18,72.246 +414715,151.93,72.328 +414716,149.57,72.424 +414717,155.04,72.205 +414718,152.87,72.242 +414719,150.61,72.29 +414720,148.25,72.35 +414721,153.72,72.235 +414722,151.55,72.237 +414723,149.29,72.251 +414724,146.92,72.277 +414725,152.4,72.265 +414726,150.23,72.233 +414727,147.97,72.212 +414728,145.6,72.204 +414729,151.08,72.294 +414730,148.91,72.228 +414731,146.65,72.173 +414732,144.29,72.131 +414733,149.76,72.324 +414734,147.59,72.224 +414735,145.33,72.135 +414736,142.97,72.058 +414737,148.44,72.354 +414738,146.27,72.22 +414739,144.02,72.096 +414740,141.65,71.984 +414741,147.11,72.383 +414742,144.95,72.215 +414743,142.7,72.057 +414744,140.34,71.911 +414745,145.79,72.413 +414746,143.63,72.21 +414747,141.38,72.018 +414748,139.03,71.838 +414749,144.46,72.442 +414750,142.31,72.206 +414751,140.07,71.98 +414752,137.72,71.766 +414753,143.13,72.471 +414754,140.99,72.201 +414755,138.75,71.941 +414756,136.41,71.693 +414757,141.8,72.5 +414758,139.67,72.196 +414759,137.44,71.903 +414760,135.11,71.62 +414761,140.46,72.528 +414762,138.34,72.192 +414763,136.13,71.864 +414764,133.8,71.548 +414765,139.13,72.556 +414766,137.02,72.187 +414767,134.81,71.826 +414768,132.5,71.476 +414769,137.79,72.584 +414770,135.69,72.182 +414771,133.5,71.788 +414772,131.2,71.404 +414773,136.46,72.612 +414774,134.37,72.177 +414775,132.19,71.75 +414776,129.9,71.333 +414777,135.12,72.639 +414778,133.04,72.171 +414779,130.88,71.712 +414780,128.61,71.262 +414781,133.77,72.666 +414782,131.72,72.166 +414783,129.57,71.674 +414784,127.31,71.191 +414785,132.43,72.692 +414786,130.39,72.161 +414787,128.26,71.636 +414788,126.02,71.121 +414789,131.09,72.718 +414790,129.06,72.155 +414791,126.95,71.598 +414792,124.73,71.051 +414793,129.74,72.744 +414794,127.74,72.149 +414795,125.64,71.561 +414796,123.44,70.981 +414797,128.39,72.769 +414798,126.41,72.143 +414799,124.33,71.523 +414800,122.15,70.912 +414801,127.05,72.794 +414802,125.08,72.137 +414803,123.02,71.486 +414804,120.87,70.843 +414805,125.7,72.818 +414806,123.75,72.131 +414807,121.72,71.449 +414808,119.58,70.775 +414809,124.34,72.841 +414810,122.42,72.124 +414811,120.41,71.412 +414812,118.3,70.708 +414813,122.99,72.864 +414814,121.09,72.118 +414815,119.1,71.376 +414816,117.02,70.641 +414817,121.64,72.886 +414818,119.76,72.111 +414819,117.8,71.339 +414820,115.74,70.574 +414821,120.28,72.908 +414822,118.43,72.104 +414823,116.49,71.303 +414824,114.46,70.508 +414825,118.92,72.929 +414826,117.1,72.096 +414827,115.19,71.267 +414828,113.18,70.443 +414829,117.56,72.949 +414830,115.77,72.089 +414831,113.89,71.231 +414832,111.91,70.379 +414833,116.2,72.969 +414834,114.44,72.081 +414835,112.58,71.196 +414836,110.63,70.315 +414837,114.84,72.987 +414838,113.1,72.073 +414839,111.28,71.16 +414840,109.36,70.252 +414841,113.48,73.006 +414842,111.77,72.065 +414843,109.98,71.125 +414844,108.09,70.189 +414845,112.11,73.023 +414846,110.44,72.056 +414847,108.67,71.091 +414848,106.82,70.128 +414849,110.75,73.04 +414850,109.1,72.048 +414851,107.37,71.056 +414852,105.56,70.067 +414853,109.38,73.055 +414854,107.77,72.039 +414855,106.07,71.022 +414856,104.29,70.007 +414857,108.01,73.07 +414858,106.43,72.029 +414859,104.77,70.988 +414860,103.03,69.947 +414861,106.64,73.085 +414862,105.1,72.02 +414863,103.47,70.954 +414864,101.76,69.889 +414865,105.27,73.098 +414866,103.76,72.01 +414867,102.17,70.92 +414868,100.5,69.831 +414869,103.9,73.11 +414870,102.42,72 +414871,100.87,70.887 +414872,99.239,69.775 +414873,102.53,73.122 +414874,101.09,71.989 +414875,99.574,70.854 +414876,97.979,69.719 +414877,101.15,73.132 +414878,99.751,71.978 +414879,98.276,70.822 +414880,96.721,69.664 +414881,99.779,73.142 +414882,98.414,71.967 +414883,96.978,70.789 +414884,95.464,69.61 +414885,98.403,73.151 +414886,97.076,71.956 +414887,95.68,70.758 +414888,94.208,69.557 +414889,97.025,73.158 +414890,95.738,71.944 +414891,94.383,70.726 +414892,92.953,69.505 +414893,95.647,73.165 +414894,94.4,71.932 +414895,93.086,70.695 +414896,91.7,69.454 +414897,94.267,73.171 +414898,93.061,71.92 +414899,91.79,70.664 +414900,90.447,69.404 +414901,92.887,73.176 +414902,91.722,71.907 +414903,90.494,70.633 +414904,89.196,69.355 +414905,91.506,73.18 +414906,90.383,71.894 +414907,89.198,70.603 +414908,87.945,69.308 +414909,90.123,73.182 +414910,89.043,71.881 +414911,87.902,70.573 +414912,86.695,69.261 +414913,88.74,73.184 +414914,87.704,71.867 +414915,86.607,70.543 +414916,85.447,69.215 +414917,87.356,73.185 +414918,86.363,71.853 +414919,85.312,70.514 +414920,84.199,69.17 +414921,85.972,73.184 +414922,85.023,71.838 +414923,84.018,70.485 +414924,82.952,69.127 +414925,84.586,73.183 +414926,83.682,71.823 +414927,82.724,70.457 +414928,81.705,69.084 +414929,83.2,73.18 +414930,82.341,71.808 +414931,81.43,70.428 +414932,80.46,69.043 +414933,81.812,73.177 +414934,81,71.793 +414935,80.136,70.401 +414936,79.215,69.002 +414937,80.425,73.172 +414938,79.659,71.777 +414939,78.842,70.373 +414940,77.971,68.963 +414941,79.036,73.166 +414942,78.317,71.76 +414943,77.549,70.346 +414944,76.728,68.925 +414945,77.647,73.159 +414946,76.976,71.744 +414947,76.256,70.32 +414948,75.485,68.889 +414949,76.257,73.151 +414950,75.634,71.726 +414951,74.963,70.293 +414952,74.243,68.853 +414953,74.867,73.141 +414954,74.292,71.709 +414955,73.671,70.267 +414956,73.001,68.818 +414957,73.476,73.131 +414958,72.949,71.691 +414959,72.378,70.242 +414960,71.76,68.785 +414961,72.085,73.119 +414962,71.607,71.673 +414963,71.086,70.217 +414964,70.519,68.753 +414965,70.693,73.106 +414966,70.265,71.654 +414967,69.794,70.192 +414968,69.279,68.722 +414969,69.301,73.092 +414970,68.922,71.635 +414971,68.502,70.168 +414972,68.039,68.693 +414973,67.909,73.077 +414974,67.579,71.616 +414975,67.21,70.144 +414976,66.799,68.664 +414977,66.516,73.061 +414978,66.236,71.596 +414979,65.918,70.12 +414980,65.56,68.637 +414981,65.122,73.043 +414982,64.893,71.575 +414983,64.627,70.097 +414984,64.32,68.611 +414985,63.729,73.025 +414986,63.55,71.555 +414987,63.335,70.075 +414988,63.081,68.586 +414989,62.335,73.005 +414990,62.207,71.534 +414991,62.044,70.052 +414992,61.843,68.562 +414993,60.941,72.984 +414994,60.864,71.512 +414995,60.752,70.03 +414996,60.604,68.54 +414997,59.547,72.962 +414998,59.521,71.49 +414999,59.461,70.009 +415000,59.365,68.519 +415001,58.153,72.938 +415002,58.178,71.468 +415003,58.169,69.988 +415004,58.127,68.499 +415005,56.758,72.914 +415006,56.835,71.445 +415007,56.878,69.967 +415008,56.888,68.48 +415009,55.364,72.888 +415010,55.491,71.422 +415011,55.587,69.947 +415012,55.649,68.462 +415013,53.969,72.861 +415014,54.148,71.399 +415015,54.296,69.927 +415016,54.411,68.446 +415017,52.575,72.833 +415018,52.805,71.375 +415019,53.004,69.907 +415020,53.172,68.431 +415021,51.181,72.804 +415022,51.462,71.351 +415023,51.713,69.888 +415024,51.933,68.417 +415025,49.786,72.773 +415026,50.119,71.326 +415027,50.422,69.869 +415028,50.693,68.404 +415029,48.392,72.742 +415030,48.776,71.301 +415031,49.13,69.851 +415032,49.454,68.393 +415033,46.998,72.709 +415034,47.433,71.276 +415035,47.839,69.833 +415036,48.214,68.383 +415037,45.604,72.675 +415038,46.091,71.25 +415039,46.547,69.815 +415040,46.974,68.373 +415041,44.211,72.64 +415042,44.748,71.224 +415043,45.255,69.798 +415044,45.733,68.365 +415045,42.817,72.604 +415046,43.405,71.197 +415047,43.963,69.782 +415048,44.492,68.359 +415049,41.424,72.567 +415050,42.063,71.17 +415051,42.672,69.765 +415052,43.251,68.353 +415053,40.032,72.528 +415054,40.721,71.143 +415055,41.379,69.749 +415056,42.009,68.349 +415057,38.64,72.489 +415058,39.379,71.115 +415059,40.087,69.733 +415060,40.766,68.345 +415061,37.248,72.448 +415062,38.037,71.087 +415063,38.795,69.718 +415064,39.523,68.343 +415065,35.856,72.406 +415066,36.695,71.058 +415067,37.502,69.703 +415068,38.28,68.342 +415069,34.466,72.363 +415070,35.354,71.029 +415071,36.21,69.689 +415072,37.035,68.342 +415073,33.075,72.319 +415074,34.012,71 +415075,34.917,69.674 +415076,35.79,68.343 +415077,31.686,72.274 +415078,32.671,70.971 +415079,33.623,69.661 +415080,34.545,68.345 +415081,30.297,72.228 +415082,31.33,70.941 +415083,32.33,69.647 +415084,33.298,68.349 +415085,28.908,72.181 +415086,29.99,70.91 +415087,31.036,69.634 +415088,32.051,68.353 +415089,27.521,72.133 +415090,28.65,70.88 +415091,29.743,69.621 +415092,30.803,68.358 +415093,26.134,72.084 +415094,27.309,70.849 +415095,28.449,69.609 +415096,29.554,68.365 +415097,24.747,72.033 +415098,25.97,70.817 +415099,27.154,69.597 +415100,28.304,68.372 +415101,23.362,71.982 +415102,24.63,70.786 +415103,25.859,69.585 +415104,27.054,68.381 +415105,21.977,71.93 +415106,23.291,70.754 +415107,24.564,69.573 +415108,25.802,68.39 +415109,20.594,71.877 +415110,21.952,70.721 +415111,23.269,69.562 +415112,24.549,68.4 +415113,19.211,71.823 +415114,20.614,70.689 +415115,21.974,69.551 +415116,23.295,68.412 +415117,17.829,71.768 +415118,19.276,70.656 +415119,20.678,69.541 +415120,22.041,68.424 +415121,16.448,71.712 +415122,17.938,70.623 +415123,19.381,69.53 +415124,20.785,68.437 +415125,15.069,71.655 +415126,16.6,70.589 +415127,18.085,69.521 +415128,19.528,68.451 +415129,13.69,71.598 +415130,15.263,70.555 +415131,16.788,69.511 +415132,18.27,68.466 +415133,12.312,71.539 +415134,13.927,70.521 +415135,15.491,69.501 +415136,17.01,68.482 +415137,10.936,71.48 +415138,12.59,70.487 +415139,14.193,69.492 +415140,15.75,68.498 +415141,9.5604,71.42 +415142,11.254,70.452 +415143,12.895,69.484 +415144,14.488,68.516 +415145,8.1863,71.359 +415146,9.919,70.417 +415147,11.596,69.475 +415148,13.225,68.534 +415149,6.8133,71.297 +415150,8.584,70.382 +415151,10.297,69.467 +415152,11.961,68.553 +415153,5.4416,71.234 +415154,7.2494,70.346 +415155,8.998,69.458 +415156,10.695,68.572 +415157,4.0712,71.171 +415158,5.9153,70.31 +415159,7.6983,69.451 +415160,9.4283,68.593 +415161,2.7021,71.107 +415162,4.5816,70.274 +415163,6.3981,69.443 +415164,8.16,68.614 +415165,1.3344,71.042 +415166,3.2484,70.238 +415167,5.0975,69.436 +415168,6.8904,68.636 +415169,359.97,70.977 +415170,1.9157,70.202 +415171,3.7964,69.428 +415172,5.6193,68.658 +415173,358.6,70.911 +415174,0.58341,70.165 +415175,2.4949,69.421 +415176,4.3469,68.681 +415177,357.24,70.844 +415178,359.25,70.128 +415179,1.1929,69.415 +415180,3.073,68.704 +415181,355.88,70.777 +415182,357.92,70.091 +415183,359.89,69.408 +415184,1.7976,68.729 +415185,354.52,70.709 +415186,356.59,70.054 +415187,358.59,69.402 +415188,0.52081,68.753 +415189,353.16,70.641 +415190,355.26,70.016 +415191,357.28,69.395 +415192,359.24,68.779 +415193,351.8,70.572 +415194,353.93,69.979 +415195,355.98,69.389 +415196,357.96,68.804 +415197,350.44,70.503 +415198,352.6,69.941 +415199,354.68,69.383 +415200,356.68,68.83 +415201,349.09,70.433 +415202,351.27,69.903 +415203,353.37,69.378 +415204,355.4,68.857 +415205,347.74,70.363 +415206,349.94,69.865 +415207,352.07,69.372 +415208,354.11,68.884 +415209,346.39,70.292 +415210,348.62,69.827 +415211,350.76,69.366 +415212,352.83,68.911 +415213,345.04,70.221 +415214,347.29,69.788 +415215,349.45,69.361 +415216,351.54,68.939 +415217,343.69,70.149 +415218,345.96,69.75 +415219,348.15,69.356 +415220,350.25,68.967 +415221,342.34,70.077 +415222,344.64,69.711 +415223,346.84,69.35 +415224,348.96,68.996 +415225,341,70.005 +415226,343.31,69.672 +415227,345.53,69.345 +415228,347.67,69.024 +415229,339.66,69.932 +415230,341.99,69.633 +415231,344.22,69.34 +415232,346.37,69.053 +415233,338.31,69.86 +415234,340.66,69.595 +415235,342.91,69.335 +415236,345.08,69.082 +415237,336.98,69.787 +415238,339.34,69.556 +415239,341.6,69.331 +415240,343.78,69.112 +415241,335.64,69.713 +415242,338.02,69.516 +415243,340.29,69.326 +415244,342.48,69.141 +415245,334.3,69.64 +415246,336.69,69.477 +415247,338.98,69.321 +415248,341.18,69.171 +415249,332.97,69.566 +415250,335.37,69.438 +415251,337.67,69.316 +415252,339.88,69.201 +415253,331.64,69.492 +415254,334.05,69.399 +415255,336.36,69.312 +415256,338.57,69.231 +415257,330.31,69.419 +415258,332.73,69.359 +415259,335.05,69.307 +415260,337.27,69.26 +415261,328.98,69.345 +415262,331.41,69.32 +415263,333.73,69.302 +415264,335.96,69.29 +415265,327.65,69.271 +415266,330.09,69.281 +415267,332.42,69.298 +415268,334.65,69.32 +415269,326.33,69.197 +415270,328.77,69.241 +415271,331.11,69.293 +415272,333.34,69.35 +415273,325,69.122 +415274,327.45,69.202 +415275,329.79,69.288 +415276,332.03,69.38 +415277,323.68,69.048 +415278,326.14,69.163 +415279,328.48,69.284 +415280,330.71,69.41 +415281,322.36,68.974 +415282,324.82,69.124 +415283,327.16,69.279 +415284,329.4,69.44 +415285,321.05,68.901 +415286,323.5,69.084 +415287,325.84,69.274 +415288,328.08,69.469 +415289,319.73,68.827 +415290,322.19,69.045 +415291,324.53,69.269 +415292,326.76,69.498 +415293,318.42,68.753 +415294,320.87,69.006 +415295,323.21,69.264 +415296,325.44,69.528 +415297,317.11,68.68 +415298,319.56,68.967 +415299,321.89,69.259 +415300,324.12,69.556 +415301,315.8,68.607 +415302,318.25,68.928 +415303,320.57,69.254 +415304,322.79,69.585 +415305,314.49,68.534 +415306,316.93,68.889 +415307,319.25,69.249 +415308,321.47,69.614 +415309,313.19,68.461 +415310,315.62,68.85 +415311,317.93,69.244 +415312,320.14,69.642 +415313,311.88,68.388 +415314,314.31,68.811 +415315,316.61,69.238 +415316,318.81,69.669 +415317,310.58,68.316 +415318,313,68.772 +415319,315.29,69.233 +415320,317.48,69.697 +415321,309.28,68.244 +415322,311.69,68.733 +415323,313.97,69.227 +415324,316.14,69.724 +415325,307.98,68.173 +415326,310.38,68.695 +415327,312.65,69.221 +415328,314.81,69.751 +415329,306.68,68.102 +415330,309.07,68.657 +415331,311.32,69.215 +415332,313.47,69.777 +415333,305.39,68.031 +415334,307.76,68.618 +415335,310,69.209 +415336,312.14,69.802 +415337,304.1,67.961 +415338,306.45,68.58 +415339,308.68,69.203 +415340,310.8,69.828 +415341,302.81,67.891 +415342,305.14,68.542 +415343,307.35,69.197 +415344,309.46,69.852 +415345,301.52,67.822 +415346,303.83,68.505 +415347,306.03,69.19 +415348,308.11,69.877 +415349,300.23,67.753 +415350,302.53,68.467 +415351,304.7,69.183 +415352,306.77,69.9 +415353,298.95,67.685 +415354,301.22,68.43 +415355,303.38,69.176 +415356,305.42,69.923 +415357,297.66,67.617 +415358,299.92,68.392 +415359,302.05,69.169 +415360,304.08,69.946 +415361,296.38,67.55 +415362,298.61,68.355 +415363,300.72,69.162 +415364,302.73,69.968 +415365,295.1,67.484 +415366,297.31,68.319 +415367,299.4,69.154 +415368,301.38,69.989 +415369,293.82,67.418 +415370,296,68.282 +415371,298.07,69.146 +415372,300.03,70.009 +415373,292.54,67.353 +415374,294.7,68.246 +415375,296.74,69.138 +415376,298.67,70.029 +415377,291.27,67.288 +415378,293.4,68.209 +415379,295.41,69.13 +415380,297.32,70.048 +415381,290,67.225 +415382,292.1,68.174 +415383,294.08,69.121 +415384,295.96,70.066 +415385,288.72,67.162 +415386,290.8,68.138 +415387,292.75,69.113 +415388,294.6,70.084 +415389,287.45,67.1 +415390,289.49,68.102 +415391,291.42,69.103 +415392,293.25,70.101 +415393,286.19,67.038 +415394,288.19,68.067 +415395,290.09,69.094 +415396,291.89,70.117 +415397,284.92,66.978 +415398,286.89,68.032 +415399,288.76,69.084 +415400,290.52,70.132 +415401,283.65,66.918 +415402,285.59,67.998 +415403,287.43,69.074 +415404,289.16,70.146 +415405,282.39,66.859 +415406,284.3,67.963 +415407,286.09,69.064 +415408,287.8,70.16 +415409,281.13,66.801 +415410,283,67.929 +415411,284.76,69.054 +415412,286.43,70.172 +415413,279.87,66.744 +415414,281.7,67.896 +415415,283.43,69.043 +415416,285.06,70.184 +415417,278.61,66.688 +415418,280.4,67.862 +415419,282.1,69.032 +415420,283.69,70.194 +415421,277.35,66.633 +415422,279.11,67.829 +415423,280.76,69.02 +415424,282.33,70.204 +415425,276.09,66.578 +415426,277.81,67.796 +415427,279.43,69.008 +415428,280.95,70.213 +415429,274.84,66.525 +415430,276.51,67.764 +415431,278.09,68.996 +415432,279.58,70.221 +415433,273.58,66.473 +415434,275.22,67.731 +415435,276.76,68.984 +415436,278.21,70.228 +415437,272.33,66.421 +415438,273.92,67.7 +415439,275.42,68.971 +415440,276.84,70.234 +415441,271.08,66.371 +415442,272.63,67.668 +415443,274.09,68.958 +415444,275.46,70.238 +415445,269.83,66.322 +415446,271.33,67.637 +415447,272.75,68.944 +415448,274.08,70.242 +415449,268.58,66.273 +415450,270.04,67.606 +415451,271.41,68.93 +415452,272.71,70.245 +415453,267.33,66.226 +415454,268.75,67.575 +415455,270.08,68.916 +415456,271.33,70.247 +415457,266.08,66.18 +415458,267.45,67.545 +415459,268.74,68.901 +415460,269.95,70.247 +415461,264.84,66.135 +415462,266.16,67.515 +415463,267.4,68.886 +415464,268.57,70.247 +415465,263.59,66.091 +415466,264.87,67.486 +415467,266.06,68.871 +415468,267.19,70.245 +415469,262.35,66.049 +415470,263.57,67.457 +415471,264.72,68.855 +415472,265.8,70.242 +415473,261.1,66.007 +415474,262.28,67.428 +415475,263.39,68.839 +415476,264.42,70.239 +415477,259.86,65.966 +415478,260.99,67.4 +415479,262.05,68.823 +415480,263.04,70.234 +415481,258.62,65.927 +415482,259.7,67.372 +415483,260.71,68.806 +415484,261.65,70.228 +415485,257.38,65.889 +415486,258.41,67.344 +415487,259.37,68.789 +415488,260.27,70.22 +415489,256.14,65.852 +415490,257.12,67.317 +415491,258.03,68.771 +415492,258.88,70.212 +415493,254.9,65.816 +415494,255.83,67.29 +415495,256.69,68.753 +415496,257.49,70.202 +415497,253.66,65.782 +415498,254.54,67.264 +415499,255.35,68.734 +415500,256.1,70.192 +415501,252.42,65.748 +415502,253.25,67.238 +415503,254.01,68.715 +415504,254.72,70.18 +415505,251.19,65.716 +415506,251.96,67.212 +415507,252.67,68.696 +415508,253.33,70.167 +415509,249.95,65.685 +415510,250.67,67.187 +415511,251.33,68.676 +415512,251.94,70.152 +415513,248.71,65.655 +415514,249.38,67.162 +415515,249.99,68.656 +415516,250.55,70.137 +415517,247.48,65.627 +415518,248.09,67.138 +415519,248.65,68.636 +415520,249.16,70.12 +415521,246.24,65.599 +415522,246.8,67.113 +415523,247.31,68.615 +415524,247.76,70.102 +415525,245.01,65.573 +415526,245.51,67.09 +415527,245.97,68.594 +415528,246.37,70.083 +415529,243.77,65.548 +415530,244.22,67.067 +415531,244.62,68.572 +415532,244.98,70.063 +415533,242.54,65.525 +415534,242.93,67.044 +415535,243.28,68.55 +415536,243.59,70.042 +415537,241.3,65.502 +415538,241.65,67.021 +415539,241.94,68.527 +415540,242.2,70.019 +415541,240.07,65.481 +415542,240.36,66.999 +415543,240.6,68.504 +415544,240.8,69.995 +415545,238.84,65.461 +415546,239.07,66.977 +415547,239.26,68.481 +415548,239.41,69.97 +415549,237.6,65.442 +415550,237.78,66.956 +415551,237.92,68.457 +415552,238.02,69.944 +415553,236.37,65.425 +415554,236.49,66.935 +415555,236.57,68.433 +415556,236.62,69.916 +415557,235.14,65.409 +415558,235.2,66.915 +415559,235.23,68.408 +415560,235.23,69.887 +415561,233.9,65.394 +415562,233.92,66.895 +415563,233.89,68.383 +415564,233.83,69.857 +415565,232.67,65.38 +415566,232.63,66.875 +415567,232.55,68.358 +415568,232.44,69.826 +415569,231.44,65.367 +415570,231.34,66.856 +415571,231.21,68.332 +415572,231.04,69.794 +415573,230.2,65.356 +415574,230.05,66.837 +415575,229.87,68.305 +415576,229.65,69.76 +415577,228.97,65.346 +415578,228.76,66.818 +415579,228.52,68.279 +415580,228.26,69.726 +415581,227.74,65.337 +415582,227.47,66.8 +415583,227.18,68.252 +415584,226.86,69.69 +415585,226.5,65.329 +415586,226.19,66.782 +415587,225.84,68.224 +415588,225.47,69.653 +415589,225.27,65.322 +415590,224.9,66.765 +415591,224.5,68.196 +415592,224.07,69.615 +415593,224.03,65.317 +415594,223.61,66.748 +415595,223.16,68.168 +415596,222.68,69.575 +415597,222.8,65.312 +415598,222.32,66.732 +415599,221.82,68.139 +415600,221.29,69.535 +415601,221.56,65.309 +415602,221.03,66.715 +415603,220.48,68.11 +415604,219.89,69.493 +415605,220.32,65.307 +415606,219.74,66.699 +415607,219.14,68.081 +415608,218.5,69.45 +415609,219.09,65.306 +415610,218.45,66.684 +415611,217.8,68.051 +415612,217.11,69.406 +415613,217.85,65.307 +415614,217.17,66.669 +415615,216.45,68.021 +415616,215.72,69.361 +415617,216.61,65.308 +415618,215.88,66.654 +415619,215.11,67.99 +415620,214.32,69.315 +415621,215.37,65.311 +415622,214.59,66.64 +415623,213.77,67.959 +415624,212.93,69.268 +415625,214.14,65.314 +415626,213.3,66.626 +415627,212.43,67.928 +415628,211.54,69.219 +415629,212.9,65.319 +415630,212.01,66.612 +415631,211.09,67.896 +415632,210.15,69.17 +415633,211.65,65.324 +415634,210.72,66.599 +415635,209.75,67.864 +415636,208.76,69.119 +415637,210.41,65.331 +415638,209.43,66.586 +415639,208.41,67.832 +415640,207.37,69.068 +415641,209.17,65.339 +415642,208.14,66.573 +415643,207.08,67.799 +415644,205.98,69.015 +415645,207.93,65.347 +415646,206.85,66.56 +415647,205.74,67.766 +415648,204.6,68.962 +415649,206.68,65.357 +415650,205.56,66.548 +415651,204.4,67.732 +415652,203.21,68.907 +415653,205.44,65.368 +415654,204.26,66.537 +415655,203.06,67.699 +415656,201.82,68.852 +415657,204.19,65.379 +415658,202.97,66.525 +415659,201.72,67.664 +415660,200.44,68.795 +415661,202.95,65.392 +415662,201.68,66.514 +415663,200.38,67.63 +415664,199.05,68.738 +415665,201.7,65.405 +415666,200.39,66.503 +415667,199.05,67.595 +415668,197.67,68.68 +415669,200.45,65.42 +415670,199.1,66.493 +415671,197.71,67.56 +415672,196.29,68.62 +415673,199.2,65.435 +415674,197.8,66.482 +415675,196.37,67.525 +415676,194.9,68.56 +415677,197.95,65.451 +415678,196.51,66.472 +415679,195.04,67.489 +415680,193.52,68.499 +415681,196.69,65.468 +415682,195.22,66.463 +415683,193.7,67.453 +415684,192.14,68.437 +415685,195.44,65.485 +415686,193.92,66.453 +415687,192.37,67.417 +415688,190.76,68.375 +415689,194.19,65.504 +415690,192.63,66.444 +415691,191.03,67.38 +415692,189.39,68.311 +415693,192.93,65.523 +415694,191.33,66.435 +415695,189.7,67.344 +415696,188.01,68.247 +415697,191.67,65.543 +415698,190.04,66.426 +415699,188.36,67.307 +415700,186.63,68.182 +415701,190.41,65.564 +415702,188.74,66.418 +415703,187.03,67.269 +415704,185.26,68.116 +415705,189.15,65.585 +415706,187.45,66.41 +415707,185.69,67.232 +415708,183.89,68.05 +415709,187.89,65.607 +415710,186.15,66.402 +415711,184.36,67.194 +415712,182.51,67.982 +415713,186.63,65.63 +415714,184.85,66.394 +415715,183.03,67.156 +415716,181.14,67.914 +415717,185.37,65.653 +415718,183.56,66.386 +415719,181.7,67.118 +415720,179.77,67.846 +415721,184.1,65.677 +415722,182.26,66.379 +415723,180.36,67.079 +415724,178.41,67.777 +415725,182.83,65.701 +415726,180.96,66.372 +415727,179.03,67.04 +415728,177.04,67.707 +415729,181.57,65.726 +415730,179.66,66.364 +415731,177.7,67.002 +415732,175.68,67.636 +415733,180.3,65.752 +415734,178.36,66.358 +415735,176.37,66.962 +415736,174.31,67.565 +415737,179.02,65.778 +415738,177.06,66.351 +415739,175.04,66.923 +415740,172.95,67.494 +415741,177.75,65.804 +415742,175.76,66.344 +415743,173.71,66.884 +415744,171.59,67.422 +415745,176.48,65.831 +415746,174.46,66.338 +415747,172.39,66.844 +415748,170.23,67.349 +415749,175.2,65.858 +415750,173.16,66.331 +415751,171.06,66.804 +415752,168.87,67.276 +415753,173.92,65.886 +415754,171.86,66.325 +415755,169.73,66.765 +415756,167.52,67.203 +415757,172.64,65.914 +415758,170.56,66.319 +415759,168.4,66.724 +415760,166.16,67.129 +415761,171.36,65.942 +415762,169.26,66.313 +415763,167.08,66.684 +415764,164.81,67.055 +415765,170.08,65.971 +415766,167.95,66.307 +415767,165.75,66.644 +415768,163.46,66.98 +415769,168.8,66 +415770,166.65,66.301 +415771,164.43,66.604 +415772,162.11,66.905 +415773,167.51,66.029 +415774,165.35,66.296 +415775,163.1,66.563 +415776,160.76,66.83 +415777,166.22,66.058 +415778,164.04,66.29 +415779,161.78,66.522 +415780,159.41,66.755 +415781,164.93,66.088 +415782,162.74,66.284 +415783,160.45,66.482 +415784,158.07,66.679 +415785,163.64,66.117 +415786,161.43,66.279 +415787,159.13,66.441 +415788,156.73,66.603 +415789,162.35,66.147 +415790,160.12,66.273 +415791,157.81,66.4 +415792,155.39,66.527 +415793,161.06,66.177 +415794,158.82,66.268 +415795,156.49,66.359 +415796,154.05,66.451 +415797,159.76,66.207 +415798,157.51,66.262 +415799,155.17,66.318 +415800,152.71,66.374 +415801,158.46,66.237 +415802,156.2,66.257 +415803,153.84,66.277 +415804,151.38,66.298 +415805,157.16,66.267 +415806,154.89,66.251 +415807,152.53,66.236 +415808,150.04,66.221 +415809,155.86,66.297 +415810,153.58,66.246 +415811,151.21,66.195 +415812,148.71,66.144 +415813,154.56,66.327 +415814,152.27,66.24 +415815,149.89,66.154 +415816,147.38,66.068 +415817,153.25,66.357 +415818,150.96,66.235 +415819,148.57,66.113 +415820,146.05,65.991 +415821,151.95,66.386 +415822,149.65,66.229 +415823,147.25,66.072 +415824,144.73,65.914 +415825,150.64,66.416 +415826,148.34,66.224 +415827,145.94,66.031 +415828,143.4,65.838 +415829,149.33,66.445 +415830,147.03,66.218 +415831,144.62,65.99 +415832,142.08,65.762 +415833,148.02,66.475 +415834,145.72,66.212 +415835,143.3,65.949 +415836,140.76,65.685 +415837,146.7,66.504 +415838,144.4,66.207 +415839,141.99,65.908 +415840,139.44,65.609 +415841,145.39,66.533 +415842,143.09,66.201 +415843,140.67,65.867 +415844,138.13,65.533 +415845,144.07,66.561 +415846,141.77,66.195 +415847,139.36,65.827 +415848,136.81,65.457 +415849,142.75,66.589 +415850,140.46,66.189 +415851,138.05,65.786 +415852,135.5,65.382 +415853,141.43,66.617 +415854,139.14,66.182 +415855,136.74,65.745 +415856,134.19,65.307 +415857,140.11,66.645 +415858,137.83,66.176 +415859,135.42,65.705 +415860,132.88,65.232 +415861,138.79,66.672 +415862,136.51,66.17 +415863,134.11,65.664 +415864,131.58,65.157 +415865,137.46,66.699 +415866,135.19,66.163 +415867,132.8,65.624 +415868,130.27,65.083 +415869,136.14,66.725 +415870,133.88,66.156 +415871,131.49,65.584 +415872,128.97,65.009 +415873,134.81,66.751 +415874,132.56,66.149 +415875,130.19,65.544 +415876,127.67,64.935 +415877,133.48,66.776 +415878,131.24,66.142 +415879,128.88,65.504 +415880,126.37,64.862 +415881,132.14,66.801 +415882,129.92,66.135 +415883,127.57,65.464 +415884,125.08,64.79 +415885,130.81,66.825 +415886,128.6,66.127 +415887,126.26,65.425 +415888,123.78,64.718 +415889,129.48,66.849 +415890,127.28,66.12 +415891,124.96,65.385 +415892,122.49,64.646 +415893,128.14,66.872 +415894,125.96,66.112 +415895,123.65,65.346 +415896,121.2,64.575 +415897,126.8,66.895 +415898,124.63,66.104 +415899,122.34,65.307 +415900,119.91,64.504 +415901,125.46,66.917 +415902,123.31,66.096 +415903,121.04,65.268 +415904,118.62,64.435 +415905,124.12,66.938 +415906,121.99,66.087 +415907,119.74,65.229 +415908,117.34,64.365 +415909,122.77,66.959 +415910,120.67,66.078 +415911,118.43,65.191 +415912,116.05,64.297 +415913,121.43,66.978 +415914,119.34,66.069 +415915,117.13,65.153 +415916,114.77,64.229 +415917,120.08,66.997 +415918,118.02,66.06 +415919,115.83,65.115 +415920,113.49,64.162 +415921,118.73,67.016 +415922,116.69,66.051 +415923,114.53,65.077 +415924,112.22,64.095 +415925,117.38,67.033 +415926,115.37,66.041 +415927,113.22,65.039 +415928,110.94,64.029 +415929,116.03,67.05 +415930,114.04,66.031 +415931,111.92,65.002 +415932,109.67,63.964 +415933,114.68,67.066 +415934,112.71,66.02 +415935,110.62,64.965 +415936,108.39,63.9 +415937,113.33,67.081 +415938,111.39,66.01 +415939,109.33,64.928 +415940,107.12,63.837 +415941,111.97,67.095 +415942,110.06,65.999 +415943,108.03,64.892 +415944,105.86,63.774 +415945,110.61,67.109 +415946,108.73,65.988 +415947,106.73,64.855 +415948,104.59,63.713 +415949,109.25,67.121 +415950,107.4,65.976 +415951,105.43,64.819 +415952,103.32,63.652 +415953,107.89,67.133 +415954,106.07,65.964 +415955,104.13,64.784 +415956,102.06,63.592 +415957,106.53,67.143 +415958,104.74,65.952 +415959,102.84,64.748 +415960,100.8,63.533 +415961,105.17,67.153 +415962,103.41,65.94 +415963,101.54,64.713 +415964,99.537,63.475 +415965,103.81,67.161 +415966,102.08,65.927 +415967,100.25,64.679 +415968,98.279,63.418 +415969,102.44,67.169 +415970,100.75,65.914 +415971,98.951,64.644 +415972,97.021,63.362 +415973,101.07,67.176 +415974,99.421,65.9 +415975,97.656,64.61 +415976,95.766,63.307 +415977,99.706,67.181 +415978,98.089,65.886 +415979,96.362,64.576 +415980,94.511,63.253 +415981,98.337,67.186 +415982,96.757,65.872 +415983,95.069,64.543 +415984,93.259,63.2 +415985,96.966,67.189 +415986,95.424,65.857 +415987,93.776,64.51 +415988,92.007,63.148 +415989,95.595,67.192 +415990,94.091,65.842 +415991,92.483,64.477 +415992,90.757,63.097 +415993,94.222,67.193 +415994,92.758,65.827 +415995,91.191,64.445 +415996,89.509,63.048 +415997,92.848,67.193 +415998,91.424,65.811 +415999,89.899,64.413 +416000,88.261,62.999 +416001,91.473,67.192 +416002,90.09,65.795 +416003,88.608,64.381 +416004,87.015,62.951 +416005,90.097,67.19 +416006,88.755,65.779 +416007,87.317,64.35 +416008,85.77,62.905 +416009,88.72,67.187 +416010,87.421,65.762 +416011,86.027,64.319 +416012,84.527,62.86 +416013,87.342,67.183 +416014,86.085,65.744 +416015,84.737,64.288 +416016,83.284,62.816 +416017,85.963,67.177 +416018,84.75,65.727 +416019,83.447,64.258 +416020,82.043,62.773 +416021,84.583,67.171 +416022,83.414,65.708 +416023,82.158,64.228 +416024,80.803,62.731 +416025,83.202,67.163 +416026,82.078,65.69 +416027,80.869,64.199 +416028,79.563,62.69 +416029,81.82,67.154 +416030,80.742,65.671 +416031,79.58,64.17 +416032,78.325,62.651 +416033,80.438,67.143 +416034,79.405,65.652 +416035,78.292,64.141 +416036,77.088,62.613 +416037,79.054,67.132 +416038,78.068,65.632 +416039,77.004,64.113 +416040,75.851,62.576 +416041,77.67,67.119 +416042,76.731,65.612 +416043,75.716,64.085 +416044,74.616,62.54 +416045,76.285,67.105 +416046,75.393,65.591 +416047,74.429,64.058 +416048,73.381,62.506 +416049,74.899,67.09 +416050,74.056,65.57 +416051,73.141,64.031 +416052,72.147,62.473 +416053,73.512,67.074 +416054,72.718,65.549 +416055,71.854,64.004 +416056,70.914,62.441 +416057,72.125,67.056 +416058,71.38,65.527 +416059,70.568,63.978 +416060,69.682,62.41 +416061,70.737,67.038 +416062,70.042,65.504 +416063,69.281,63.952 +416064,68.45,62.381 +416065,69.348,67.017 +416066,68.703,65.482 +416067,67.995,63.926 +416068,67.219,62.352 +416069,67.959,66.996 +416070,67.364,65.459 +416071,66.709,63.901 +416072,65.988,62.325 +416073,66.57,66.973 +416074,66.026,65.435 +416075,65.424,63.877 +416076,64.758,62.3 +416077,65.179,66.95 +416078,64.687,65.411 +416079,64.138,63.853 +416080,63.528,62.275 +416081,63.789,66.925 +416082,63.348,65.386 +416083,62.853,63.829 +416084,62.299,62.252 +416085,62.398,66.898 +416086,62.008,65.362 +416087,61.567,63.805 +416088,61.07,62.23 +416089,61.006,66.871 +416090,60.669,65.336 +416091,60.282,63.782 +416092,59.842,62.21 +416093,59.615,66.842 +416094,59.33,65.31 +416095,58.997,63.76 +416096,58.614,62.191 +416097,58.222,66.812 +416098,57.99,65.284 +416099,57.712,63.738 +416100,57.386,62.173 +416101,56.83,66.78 +416102,56.651,65.258 +416103,56.428,63.716 +416104,56.158,62.156 +416105,55.437,66.748 +416106,55.311,65.231 +416107,55.143,63.695 +416108,54.93,62.14 +416109,54.044,66.714 +416110,53.971,65.203 +416111,53.858,63.674 +416112,53.703,62.126 +416113,52.651,66.679 +416114,52.632,65.175 +416115,52.574,63.653 +416116,52.475,62.113 +416117,51.258,66.642 +416118,51.292,65.147 +416119,51.289,63.633 +416120,51.248,62.101 +416121,49.865,66.605 +416122,49.952,65.118 +416123,50.005,63.613 +416124,50.02,62.091 +416125,48.472,66.566 +416126,48.613,65.089 +416127,48.72,63.594 +416128,48.792,62.081 +416129,47.078,66.526 +416130,47.273,65.059 +416131,47.436,63.575 +416132,47.565,62.073 +416133,45.685,66.485 +416134,45.933,65.029 +416135,46.151,63.556 +416136,46.337,62.066 +416137,44.291,66.442 +416138,44.594,64.999 +416139,44.867,63.538 +416140,45.109,62.061 +416141,42.898,66.399 +416142,43.254,64.968 +416143,43.582,63.52 +416144,43.88,62.056 +416145,41.505,66.354 +416146,41.915,64.937 +416147,42.297,63.503 +416148,42.652,62.053 +416149,40.112,66.308 +416150,40.575,64.905 +416151,41.012,63.486 +416152,41.422,62.051 +416153,38.719,66.261 +416154,39.236,64.873 +416155,39.728,63.469 +416156,40.193,62.05 +416157,37.327,66.212 +416158,37.897,64.841 +416159,38.443,63.453 +416160,38.963,62.05 +416161,35.934,66.163 +416162,36.558,64.808 +416163,37.158,63.437 +416164,37.733,62.051 +416165,34.543,66.112 +416166,35.219,64.775 +416167,35.872,63.421 +416168,36.502,62.054 +416169,33.151,66.06 +416170,33.881,64.741 +416171,34.587,63.406 +416172,35.27,62.057 +416173,31.76,66.008 +416174,32.542,64.707 +416175,33.302,63.391 +416176,34.038,62.062 +416177,30.369,65.954 +416178,31.204,64.673 +416179,32.016,63.377 +416180,32.805,62.068 +416181,28.979,65.899 +416182,29.866,64.638 +416183,30.73,63.363 +416184,31.572,62.075 +416185,27.589,65.843 +416186,28.528,64.603 +416187,29.444,63.349 +416188,30.338,62.082 +416189,26.2,65.786 +416190,27.191,64.567 +416191,28.158,63.335 +416192,29.103,62.091 +416193,24.811,65.727 +416194,25.853,64.531 +416195,26.871,63.322 +416196,27.867,62.101 +416197,23.423,65.668 +416198,24.516,64.495 +416199,25.585,63.309 +416200,26.63,62.112 +416201,22.036,65.608 +416202,23.179,64.459 +416203,24.298,63.297 +416204,25.393,62.124 +416205,20.649,65.547 +416206,21.843,64.422 +416207,23.01,63.285 +416208,24.154,62.137 +416209,19.263,65.485 +416210,20.506,64.385 +416211,21.723,63.273 +416212,22.915,62.15 +416213,17.878,65.422 +416214,19.17,64.347 +416215,20.435,63.261 +416216,21.675,62.165 +416217,16.494,65.358 +416218,17.835,64.309 +416219,19.147,63.25 +416220,20.433,62.18 +416221,15.11,65.293 +416222,16.5,64.271 +416223,17.859,63.239 +416224,19.191,62.197 +416225,13.728,65.227 +416226,15.165,64.233 +416227,16.57,63.228 +416228,17.947,62.214 +416229,12.346,65.16 +416230,13.83,64.194 +416231,15.281,63.217 +416232,16.702,62.232 +416233,10.966,65.093 +416234,12.496,64.155 +416235,13.991,63.207 +416236,15.456,62.251 +416237,9.5859,65.025 +416238,11.162,64.116 +416239,12.702,63.197 +416240,14.209,62.27 +416241,8.2073,64.956 +416242,9.8284,64.076 +416243,11.411,63.187 +416244,12.961,62.291 +416245,6.8297,64.886 +416246,8.4953,64.036 +416247,10.121,63.178 +416248,11.711,62.312 +416249,5.4533,64.815 +416250,7.1627,63.996 +416251,8.83,63.168 +416252,10.46,62.334 +416253,4.0781,64.744 +416254,5.8304,63.956 +416255,7.5387,63.159 +416256,9.208,62.356 +416257,2.704,64.672 +416258,4.4987,63.915 +416259,6.247,63.15 +416260,7.9544,62.379 +416261,1.3311,64.599 +416262,3.1673,63.874 +416263,4.9548,63.142 +416264,6.6995,62.403 +416265,359.96,64.525 +416266,1.8364,63.833 +416267,3.6622,63.133 +416268,5.4431,62.427 +416269,358.59,64.451 +416270,0.50603,63.792 +416271,2.3692,63.125 +416272,4.1853,62.452 +416273,357.22,64.377 +416274,359.18,63.75 +416275,1.0757,63.117 +416276,2.9261,62.477 +416277,355.85,64.302 +416278,357.85,63.709 +416279,359.78,63.109 +416280,1.6654,62.503 +416281,354.49,64.226 +416282,356.52,63.667 +416283,358.49,63.101 +416284,0.40325,62.53 +416285,353.12,64.149 +416286,355.19,63.625 +416287,357.19,63.093 +416288,359.14,62.557 +416289,351.76,64.073 +416290,353.86,63.582 +416291,355.9,63.086 +416292,357.87,62.584 +416293,350.4,63.995 +416294,352.53,63.54 +416295,354.6,63.078 +416296,356.61,62.612 +416297,349.04,63.918 +416298,351.21,63.497 +416299,353.31,63.071 +416300,355.34,62.64 +416301,347.68,63.839 +416302,349.88,63.455 +416303,352.01,63.064 +416304,354.07,62.668 +416305,346.32,63.761 +416306,348.56,63.412 +416307,350.71,63.057 +416308,352.8,62.697 +416309,344.96,63.682 +416310,347.23,63.369 +416311,349.41,63.05 +416312,351.52,62.726 +416313,343.61,63.603 +416314,345.91,63.326 +416315,348.11,63.043 +416316,350.25,62.756 +416317,342.26,63.523 +416318,344.58,63.283 +416319,346.82,63.036 +416320,348.97,62.785 +416321,340.91,63.443 +416322,343.26,63.239 +416323,345.52,63.029 +416324,347.69,62.815 +416325,339.56,63.363 +416326,341.93,63.196 +416327,344.22,63.023 +416328,346.42,62.845 +416329,338.21,63.283 +416330,340.61,63.152 +416331,342.92,63.016 +416332,345.13,62.875 +416333,336.87,63.202 +416334,339.29,63.109 +416335,341.61,63.009 +416336,343.85,62.905 +416337,335.52,63.121 +416338,337.97,63.065 +416339,340.31,63.003 +416340,342.57,62.935 +416341,334.18,63.041 +416342,336.65,63.022 +416343,339.01,62.996 +416344,341.28,62.966 +416345,332.84,62.96 +416346,335.33,62.978 +416347,337.71,62.989 +416348,339.99,62.996 +416349,331.5,62.879 +416350,334.01,62.934 +416351,336.4,62.983 +416352,338.7,63.026 +416353,330.17,62.798 +416354,332.69,62.89 +416355,335.1,62.976 +416356,337.41,63.057 +416357,328.83,62.717 +416358,331.37,62.847 +416359,333.8,62.97 +416360,336.11,63.087 +416361,327.5,62.636 +416362,330.06,62.803 +416363,332.49,62.963 +416364,334.82,63.117 +416365,326.17,62.555 +416366,328.74,62.759 +416367,331.19,62.956 +416368,333.52,63.147 +416369,324.84,62.474 +416370,327.42,62.715 +416371,329.88,62.949 +416372,332.22,63.177 +416373,323.51,62.393 +416374,326.11,62.672 +416375,328.57,62.943 +416376,330.92,63.207 +416377,322.19,62.312 +416378,324.79,62.628 +416379,327.26,62.936 +416380,329.62,63.236 +416381,320.86,62.232 +416382,323.48,62.585 +416383,325.96,62.929 +416384,328.32,63.265 +416385,319.54,62.151 +416386,322.17,62.541 +416387,324.65,62.922 +416388,327.01,63.294 +416389,318.22,62.071 +416390,320.85,62.498 +416391,323.34,62.914 +416392,325.7,63.323 +416393,316.91,61.991 +416394,319.54,62.454 +416395,322.03,62.907 +416396,324.39,63.351 +416397,315.59,61.912 +416398,318.23,62.411 +416399,320.72,62.9 +416400,323.08,63.379 +416401,314.28,61.833 +416402,316.92,62.368 +416403,319.41,62.892 +416404,321.77,63.407 +416405,312.97,61.754 +416406,315.61,62.325 +416407,318.1,62.884 +416408,320.45,63.434 +416409,311.66,61.675 +416410,314.3,62.282 +416411,316.78,62.876 +416412,319.14,63.461 +416413,310.35,61.597 +416414,312.99,62.239 +416415,315.47,62.868 +416416,317.82,63.487 +416417,309.05,61.52 +416418,311.68,62.196 +416419,314.16,62.86 +416420,316.5,63.513 +416421,307.75,61.443 +416422,310.38,62.153 +416423,312.84,62.852 +416424,315.17,63.538 +416425,306.45,61.366 +416426,309.07,62.111 +416427,311.53,62.843 +416428,313.85,63.563 +416429,305.15,61.29 +416430,307.76,62.069 +416431,310.21,62.834 +416432,312.53,63.587 +416433,303.85,61.214 +416434,306.46,62.027 +416435,308.9,62.825 +416436,311.2,63.611 +416437,302.56,61.139 +416438,305.15,61.985 +416439,307.58,62.816 +416440,309.87,63.634 +416441,301.27,61.065 +416442,303.85,61.943 +416443,306.27,62.807 +416444,308.54,63.656 +416445,299.98,60.991 +416446,302.55,61.902 +416447,304.95,62.797 +416448,307.21,63.678 +416449,298.69,60.918 +416450,301.24,61.86 +416451,303.63,62.787 +416452,305.87,63.699 +416453,297.4,60.845 +416454,299.94,61.819 +416455,302.31,62.777 +416456,304.54,63.719 +416457,296.12,60.774 +416458,298.64,61.779 +416459,300.99,62.767 +416460,303.2,63.738 +416461,294.83,60.703 +416462,297.34,61.738 +416463,299.67,62.756 +416464,301.86,63.757 +416465,293.55,60.632 +416466,296.04,61.698 +416467,298.35,62.745 +416468,300.52,63.775 +416469,292.28,60.563 +416470,294.74,61.658 +416471,297.03,62.734 +416472,299.18,63.792 +416473,291,60.494 +416474,293.44,61.618 +416475,295.71,62.722 +416476,297.84,63.808 +416477,289.73,60.427 +416478,292.14,61.578 +416479,294.39,62.71 +416480,296.49,63.823 +416481,288.45,60.36 +416482,290.85,61.539 +416483,293.07,62.698 +416484,295.14,63.838 +416485,287.18,60.294 +416486,289.55,61.5 +416487,291.74,62.686 +416488,293.8,63.851 +416489,285.91,60.229 +416490,288.25,61.461 +416491,290.42,62.673 +416492,292.45,63.864 +416493,284.65,60.165 +416494,286.96,61.423 +416495,289.1,62.66 +416496,291.09,63.876 +416497,283.38,60.101 +416498,285.66,61.385 +416499,287.77,62.646 +416500,289.74,63.886 +416501,282.12,60.039 +416502,284.37,61.347 +416503,286.45,62.632 +416504,288.39,63.896 +416505,280.86,59.978 +416506,283.07,61.31 +416507,285.12,62.618 +416508,287.03,63.905 +416509,279.6,59.918 +416510,281.78,61.272 +416511,283.8,62.604 +416512,285.67,63.912 +416513,278.34,59.859 +416514,280.49,61.236 +416515,282.47,62.589 +416516,284.32,63.919 +416517,277.08,59.801 +416518,279.19,61.199 +416519,281.14,62.574 +416520,282.96,63.924 +416521,275.83,59.744 +416522,277.9,61.163 +416523,279.82,62.558 +416524,281.59,63.929 +416525,274.58,59.688 +416526,276.61,61.127 +416527,278.49,62.542 +416528,280.23,63.932 +416529,273.32,59.633 +416530,275.32,61.092 +416531,277.16,62.526 +416532,278.87,63.934 +416533,272.08,59.579 +416534,274.03,61.057 +416535,275.83,62.509 +416536,277.5,63.936 +416537,270.83,59.527 +416538,272.74,61.022 +416539,274.5,62.492 +416540,276.14,63.935 +416541,269.58,59.476 +416542,271.45,60.988 +416543,273.17,62.474 +416544,274.77,63.934 +416545,268.34,59.425 +416546,270.16,60.954 +416547,271.84,62.456 +416548,273.4,63.932 +416549,267.09,59.377 +416550,268.87,60.921 +416551,270.51,62.438 +416552,272.03,63.928 +416553,265.85,59.329 +416554,267.59,60.887 +416555,269.18,62.419 +416556,270.66,63.924 +416557,264.61,59.282 +416558,266.3,60.855 +416559,267.85,62.4 +416560,269.29,63.918 +416561,263.37,59.237 +416562,265.01,60.822 +416563,266.52,62.38 +416564,267.91,63.91 +416565,262.13,59.193 +416566,263.73,60.79 +416567,265.19,62.36 +416568,266.54,63.902 +416569,260.89,59.15 +416570,262.44,60.759 +416571,263.86,62.339 +416572,265.16,63.892 +416573,259.66,59.109 +416574,261.15,60.728 +416575,262.53,62.318 +416576,263.79,63.881 +416577,258.42,59.069 +416578,259.87,60.697 +416579,261.19,62.297 +416580,262.41,63.869 +416581,257.19,59.03 +416582,258.58,60.667 +416583,259.86,62.275 +416584,261.03,63.856 +416585,255.96,58.992 +416586,257.3,60.637 +416587,258.53,62.253 +416588,259.65,63.841 +416589,254.73,58.956 +416590,256.02,60.607 +416591,257.19,62.23 +416592,258.27,63.825 +416593,253.5,58.921 +416594,254.73,60.578 +416595,255.86,62.207 +416596,256.89,63.808 +416597,252.27,58.887 +416598,253.45,60.55 +416599,254.53,62.184 +416600,255.51,63.789 +416601,251.04,58.855 +416602,252.17,60.521 +416603,253.19,62.16 +416604,254.13,63.769 +416605,249.81,58.824 +416606,250.88,60.494 +416607,251.86,62.135 +416608,252.74,63.748 +416609,248.58,58.794 +416610,249.6,60.466 +416611,250.52,62.11 +416612,251.36,63.726 +416613,247.36,58.766 +416614,248.32,60.439 +416615,249.19,62.085 +416616,249.98,63.702 +416617,246.13,58.739 +416618,247.04,60.413 +416619,247.85,62.059 +416620,248.59,63.677 +416621,244.91,58.713 +416622,245.75,60.387 +416623,246.52,62.032 +416624,247.2,63.65 +416625,243.68,58.689 +416626,244.47,60.361 +416627,245.18,62.006 +416628,245.82,63.622 +416629,242.46,58.666 +416630,243.19,60.336 +416631,243.85,61.978 +416632,244.43,63.593 +416633,241.24,58.644 +416634,241.91,60.311 +416635,242.51,61.951 +416636,243.04,63.563 +416637,240.01,58.624 +416638,240.63,60.287 +416639,241.17,61.923 +416640,241.65,63.531 +416641,238.79,58.605 +416642,239.35,60.263 +416643,239.84,61.894 +416644,240.27,63.498 +416645,237.57,58.587 +416646,238.07,60.239 +416647,238.5,61.865 +416648,238.88,63.464 +416649,236.35,58.571 +416650,236.79,60.216 +416651,237.17,61.836 +416652,237.49,63.428 +416653,235.13,58.556 +416654,235.51,60.194 +416655,235.83,61.806 +416656,236.1,63.391 +416657,233.91,58.542 +416658,234.23,60.171 +416659,234.49,61.775 +416660,234.71,63.353 +416661,232.69,58.53 +416662,232.95,60.15 +416663,233.16,61.744 +416664,233.32,63.313 +416665,231.47,58.518 +416666,231.67,60.128 +416667,231.82,61.713 +416668,231.93,63.272 +416669,230.25,58.509 +416670,230.39,60.107 +416671,230.48,61.681 +416672,230.54,63.23 +416673,229.03,58.5 +416674,229.11,60.087 +416675,229.15,61.649 +416676,229.14,63.187 +416677,227.8,58.493 +416678,227.83,60.067 +416679,227.81,61.616 +416680,227.75,63.142 +416681,226.58,58.487 +416682,226.55,60.047 +416683,226.47,61.583 +416684,226.36,63.096 +416685,225.36,58.482 +416686,225.27,60.028 +416687,225.14,61.55 +416688,224.97,63.049 +416689,224.14,58.479 +416690,223.99,60.009 +416691,223.8,61.516 +416692,223.58,63 +416693,222.92,58.477 +416694,222.71,59.99 +416695,222.46,61.482 +416696,222.19,62.95 +416697,221.7,58.476 +416698,221.43,59.972 +416699,221.13,61.447 +416700,220.8,62.899 +416701,220.48,58.476 +416702,220.15,59.954 +416703,219.79,61.412 +416704,219.41,62.847 +416705,219.26,58.477 +416706,218.87,59.937 +416707,218.46,61.376 +416708,218.02,62.794 +416709,218.03,58.48 +416710,217.59,59.92 +416711,217.12,61.34 +416712,216.62,62.739 +416713,216.81,58.484 +416714,216.31,59.903 +416715,215.78,61.304 +416716,215.23,62.683 +416717,215.59,58.489 +416718,215.03,59.887 +416719,214.45,61.267 +416720,213.84,62.626 +416721,214.36,58.495 +416722,213.75,59.871 +416723,213.11,61.23 +416724,212.45,62.568 +416725,213.14,58.502 +416726,212.47,59.856 +416727,211.78,61.192 +416728,211.06,62.509 +416729,211.92,58.51 +416730,211.19,59.841 +416731,210.44,61.154 +416732,209.68,62.448 +416733,210.69,58.519 +416734,209.91,59.826 +416735,209.11,61.116 +416736,208.29,62.387 +416737,209.46,58.53 +416738,208.63,59.811 +416739,207.77,61.077 +416740,206.9,62.324 +416741,208.24,58.541 +416742,207.35,59.797 +416743,206.44,61.038 +416744,205.51,62.261 +416745,207.01,58.553 +416746,206.06,59.784 +416747,205.1,60.998 +416748,204.12,62.196 +416749,205.78,58.567 +416750,204.78,59.77 +416751,203.77,60.958 +416752,202.74,62.13 +416753,204.55,58.581 +416754,203.5,59.757 +416755,202.43,60.918 +416756,201.35,62.063 +416757,203.32,58.597 +416758,202.22,59.744 +416759,201.1,60.878 +416760,199.96,61.995 +416761,202.09,58.613 +416762,200.94,59.732 +416763,199.77,60.837 +416764,198.58,61.927 +416765,200.86,58.63 +416766,199.65,59.719 +416767,198.43,60.796 +416768,197.2,61.857 +416769,199.62,58.648 +416770,198.37,59.707 +416771,197.1,60.754 +416772,195.81,61.786 +416773,198.39,58.667 +416774,197.09,59.696 +416775,195.77,60.712 +416776,194.43,61.715 +416777,197.15,58.687 +416778,195.8,59.684 +416779,194.44,60.67 +416780,193.05,61.642 +416781,195.91,58.707 +416782,194.52,59.673 +416783,193.11,60.628 +416784,191.67,61.569 +416785,194.68,58.729 +416786,193.24,59.662 +416787,191.77,60.585 +416788,190.29,61.494 +416789,193.44,58.751 +416790,191.95,59.652 +416791,190.44,60.542 +416792,188.91,61.419 +416793,192.2,58.774 +416794,190.67,59.641 +416795,189.11,60.499 +416796,187.53,61.344 +416797,190.96,58.797 +416798,189.38,59.631 +416799,187.78,60.455 +416800,186.15,61.267 +416801,189.71,58.821 +416802,188.1,59.621 +416803,186.45,60.411 +416804,184.78,61.189 +416805,188.47,58.846 +416806,186.81,59.612 +416807,185.12,60.367 +416808,183.4,61.111 +416809,187.22,58.872 +416810,185.52,59.602 +416811,183.79,60.323 +416812,182.03,61.033 +416813,185.98,58.898 +416814,184.24,59.593 +416815,182.47,60.278 +416816,180.66,60.953 +416817,184.73,58.924 +416818,182.95,59.584 +416819,181.14,60.234 +416820,179.28,60.873 +416821,183.48,58.952 +416822,181.66,59.575 +416823,179.81,60.189 +416824,177.91,60.792 +416825,182.23,58.979 +416826,180.38,59.566 +416827,178.48,60.144 +416828,176.54,60.711 +416829,180.97,59.008 +416830,179.09,59.557 +416831,177.16,60.098 +416832,175.18,60.629 +416833,179.72,59.036 +416834,177.8,59.549 +416835,175.83,60.053 +416836,173.81,60.546 +416837,178.46,59.065 +416838,176.51,59.54 +416839,174.51,60.007 +416840,172.45,60.463 +416841,177.2,59.095 +416842,175.22,59.532 +416843,173.18,59.961 +416844,171.08,60.38 +416845,175.95,59.124 +416846,173.93,59.524 +416847,171.86,59.915 +416848,169.72,60.296 +416849,174.68,59.155 +416850,172.64,59.516 +416851,170.53,59.869 +416852,168.36,60.212 +416853,173.42,59.185 +416854,171.35,59.508 +416855,169.21,59.823 +416856,167,60.127 +416857,172.16,59.216 +416858,170.05,59.5 +416859,167.89,59.776 +416860,165.64,60.042 +416861,170.89,59.247 +416862,168.76,59.492 +416863,166.56,59.73 +416864,164.29,59.956 +416865,169.63,59.278 +416866,167.47,59.485 +416867,165.24,59.683 +416868,162.93,59.871 +416869,168.36,59.309 +416870,166.18,59.477 +416871,163.92,59.636 +416872,161.58,59.785 +416873,167.09,59.34 +416874,164.88,59.469 +416875,162.6,59.589 +416876,160.23,59.698 +416877,165.81,59.372 +416878,163.59,59.462 +416879,161.28,59.543 +416880,158.88,59.612 +416881,164.54,59.404 +416882,162.29,59.454 +416883,159.96,59.496 +416884,157.53,59.525 +416885,163.26,59.435 +416886,161,59.447 +416887,158.64,59.449 +416888,156.19,59.438 +416889,161.99,59.467 +416890,159.7,59.439 +416891,157.33,59.402 +416892,154.85,59.352 +416893,160.71,59.499 +416894,158.4,59.432 +416895,156.01,59.355 +416896,153.5,59.265 +416897,159.42,59.53 +416898,157.11,59.424 +416899,154.69,59.307 +416900,152.16,59.178 +416901,158.14,59.562 +416902,155.81,59.417 +416903,153.38,59.26 +416904,150.82,59.09 +416905,156.86,59.594 +416906,154.51,59.409 +416907,152.06,59.213 +416908,149.49,59.003 +416909,155.57,59.625 +416910,153.21,59.402 +416911,150.75,59.166 +416912,148.15,58.916 +416913,154.28,59.656 +416914,151.91,59.394 +416915,149.43,59.119 +416916,146.82,58.83 +416917,152.99,59.687 +416918,150.61,59.386 +416919,148.12,59.072 +416920,145.49,58.743 +416921,151.7,59.718 +416922,149.31,59.378 +416923,146.81,59.025 +416924,144.16,58.656 +416925,150.41,59.748 +416926,148.01,59.37 +416927,145.49,58.978 +416928,142.83,58.57 +416929,149.11,59.779 +416930,146.71,59.362 +416931,144.18,58.931 +416932,141.51,58.483 +416933,147.81,59.809 +416934,145.41,59.354 +416935,142.87,58.885 +416936,140.19,58.397 +416937,146.51,59.838 +416938,144.1,59.346 +416939,141.56,58.838 +416940,138.87,58.312 +416941,145.21,59.867 +416942,142.8,59.337 +416943,140.25,58.791 +416944,137.55,58.226 +416945,143.91,59.896 +416946,141.5,59.329 +416947,138.94,58.745 +416948,136.23,58.141 +416949,142.61,59.924 +416950,140.19,59.32 +416951,137.64,58.698 +416952,134.92,58.056 +416953,141.3,59.952 +416954,138.89,59.311 +416955,136.33,58.652 +416956,133.6,57.972 +416957,139.99,59.98 +416958,137.58,59.302 +416959,135.02,58.606 +416960,132.29,57.888 +416961,138.68,60.006 +416962,136.27,59.293 +416963,133.72,58.56 +416964,130.99,57.805 +416965,137.37,60.033 +416966,134.97,59.284 +416967,132.41,58.514 +416968,129.68,57.722 +416969,136.06,60.058 +416970,133.66,59.274 +416971,131.11,58.469 +416972,128.38,57.64 +416973,134.74,60.084 +416974,132.35,59.264 +416975,129.8,58.423 +416976,127.07,57.558 +416977,133.42,60.108 +416978,131.04,59.254 +416979,128.5,58.378 +416980,125.77,57.476 +416981,132.11,60.132 +416982,129.73,59.244 +416983,127.2,58.333 +416984,124.48,57.396 +416985,130.79,60.155 +416986,128.42,59.233 +416987,125.9,58.288 +416988,123.18,57.316 +416989,129.46,60.177 +416990,127.11,59.223 +416991,124.6,58.243 +416992,121.89,57.237 +416993,128.14,60.199 +416994,125.8,59.212 +416995,123.3,58.199 +416996,120.6,57.158 +416997,126.81,60.22 +416998,124.49,59.2 +416999,122,58.155 +417000,119.31,57.08 +417001,125.49,60.24 +417002,123.17,59.189 +417003,120.7,58.111 +417004,118.02,57.003 +417005,124.16,60.259 +417006,121.86,59.177 +417007,119.4,58.067 +417008,116.74,56.927 +417009,122.83,60.278 +417010,120.55,59.165 +417011,118.1,58.024 +417012,115.45,56.852 +417013,121.49,60.295 +417014,119.23,59.153 +417015,116.81,57.981 +417016,114.17,56.777 +417017,120.16,60.312 +417018,117.92,59.14 +417019,115.51,57.938 +417020,112.9,56.703 +417021,118.82,60.328 +417022,116.6,59.127 +417023,114.21,57.895 +417024,111.62,56.63 +417025,117.49,60.342 +417026,115.29,59.113 +417027,112.92,57.853 +417028,110.35,56.559 +417029,116.15,60.356 +417030,113.97,59.1 +417031,111.63,57.811 +417032,109.07,56.488 +417033,114.81,60.369 +417034,112.66,59.086 +417035,110.33,57.77 +417036,107.8,56.418 +417037,113.46,60.381 +417038,111.34,59.071 +417039,109.04,57.728 +417040,106.53,56.349 +417041,112.12,60.392 +417042,110.02,59.057 +417043,107.75,57.687 +417044,105.27,56.281 +417045,110.78,60.402 +417046,108.7,59.041 +417047,106.46,57.647 +417048,104,56.214 +417049,109.43,60.41 +417050,107.38,59.026 +417051,105.17,57.606 +417052,102.74,56.149 +417053,108.08,60.418 +417054,106.06,59.01 +417055,103.87,57.566 +417056,101.48,56.084 +417057,106.73,60.424 +417058,104.74,58.994 +417059,102.59,57.527 +417060,100.22,56.02 +417061,105.38,60.43 +417062,103.42,58.977 +417063,101.3,57.488 +417064,98.968,55.958 +417065,104.03,60.434 +417066,102.1,58.96 +417067,100.01,57.449 +417068,97.714,55.897 +417069,102.67,60.437 +417070,100.78,58.943 +417071,98.721,57.41 +417072,96.462,55.837 +417073,101.32,60.439 +417074,99.459,58.925 +417075,97.433,57.372 +417076,95.211,55.778 +417077,99.962,60.44 +417078,98.136,58.907 +417079,96.147,57.335 +417080,93.962,55.721 +417081,98.604,60.439 +417082,96.814,58.888 +417083,94.861,57.298 +417084,92.715,55.664 +417085,97.245,60.438 +417086,95.49,58.869 +417087,93.576,57.261 +417088,91.47,55.609 +417089,95.885,60.435 +417090,94.167,58.85 +417091,92.291,57.224 +417092,90.226,55.556 +417093,94.523,60.43 +417094,92.843,58.83 +417095,91.007,57.188 +417096,88.984,55.503 +417097,93.16,60.425 +417098,91.518,58.809 +417099,89.723,57.153 +417100,87.744,55.452 +417101,91.796,60.418 +417102,90.193,58.788 +417103,88.44,57.117 +417104,86.505,55.402 +417105,90.43,60.41 +417106,88.868,58.767 +417107,87.157,57.083 +417108,85.268,55.354 +417109,89.064,60.401 +417110,87.543,58.745 +417111,85.875,57.048 +417112,84.032,55.307 +417113,87.696,60.39 +417114,86.217,58.723 +417115,84.593,57.014 +417116,82.798,55.261 +417117,86.327,60.378 +417118,84.89,58.701 +417119,83.312,56.981 +417120,81.565,55.217 +417121,84.958,60.365 +417122,83.564,58.678 +417123,82.031,56.948 +417124,80.334,55.174 +417125,83.587,60.35 +417126,82.237,58.654 +417127,80.751,56.916 +417128,79.104,55.132 +417129,82.215,60.334 +417130,80.909,58.63 +417131,79.471,56.883 +417132,77.876,55.092 +417133,80.842,60.317 +417134,79.582,58.605 +417135,78.191,56.852 +417136,76.648,55.053 +417137,79.469,60.298 +417138,78.254,58.581 +417139,76.912,56.821 +417140,75.422,55.016 +417141,78.094,60.278 +417142,76.925,58.555 +417143,75.634,56.79 +417144,74.197,54.98 +417145,76.718,60.257 +417146,75.597,58.529 +417147,74.356,56.76 +417148,72.973,54.945 +417149,75.342,60.234 +417150,74.268,58.503 +417151,73.078,56.73 +417152,71.751,54.912 +417153,73.965,60.209 +417154,72.939,58.476 +417155,71.8,56.7 +417156,70.529,54.881 +417157,72.587,60.184 +417158,71.61,58.449 +417159,70.523,56.672 +417160,69.308,54.851 +417161,71.208,60.157 +417162,70.28,58.421 +417163,69.246,56.643 +417164,68.089,54.822 +417165,69.828,60.128 +417166,68.95,58.392 +417167,67.97,56.615 +417168,66.87,54.795 +417169,68.448,60.098 +417170,67.62,58.364 +417171,66.694,56.588 +417172,65.652,54.769 +417173,67.067,60.067 +417174,66.29,58.334 +417175,65.418,56.561 +417176,64.435,54.745 +417177,65.686,60.034 +417178,64.96,58.305 +417179,64.142,56.534 +417180,63.218,54.722 +417181,64.304,60 +417182,63.629,58.274 +417183,62.867,56.508 +417184,62.002,54.7 +417185,62.921,59.965 +417186,62.299,58.244 +417187,61.592,56.483 +417188,60.787,54.68 +417189,61.538,59.928 +417190,60.968,58.212 +417191,60.317,56.457 +417192,59.573,54.662 +417193,60.154,59.89 +417194,59.637,58.181 +417195,59.042,56.433 +417196,58.359,54.645 +417197,58.77,59.85 +417198,58.306,58.149 +417199,57.768,56.409 +417200,57.145,54.629 +417201,57.386,59.809 +417202,56.975,58.116 +417203,56.494,56.385 +417204,55.932,54.615 +417205,56.001,59.767 +417206,55.644,58.083 +417207,55.22,56.362 +417208,54.719,54.602 +417209,54.616,59.723 +417210,54.312,58.049 +417211,53.946,56.339 +417212,53.507,54.59 +417213,53.23,59.678 +417214,52.981,58.015 +417215,52.672,56.316 +417216,52.295,54.58 +417217,51.844,59.631 +417218,51.649,57.981 +417219,51.398,56.294 +417220,51.083,54.572 +417221,50.458,59.583 +417222,50.318,57.946 +417223,50.125,56.273 +417224,49.871,54.565 +417225,49.072,59.534 +417226,48.987,57.91 +417227,48.851,56.252 +417228,48.66,54.559 +417229,47.685,59.483 +417230,47.655,57.874 +417231,47.578,56.231 +417232,47.448,54.554 +417233,46.299,59.431 +417234,46.324,57.838 +417235,46.305,56.211 +417236,46.236,54.551 +417237,44.912,59.378 +417238,44.992,57.801 +417239,45.031,56.192 +417240,45.025,54.549 +417241,43.525,59.323 +417242,43.661,57.764 +417243,43.758,56.172 +417244,43.813,54.549 +417245,42.138,59.267 +417246,42.329,57.726 +417247,42.485,56.153 +417248,42.601,54.55 +417249,40.751,59.21 +417250,40.998,57.688 +417251,41.212,56.135 +417252,41.389,54.552 +417253,39.365,59.152 +417254,39.667,57.649 +417255,39.939,56.117 +417256,40.177,54.555 +417257,37.978,59.092 +417258,38.336,57.61 +417259,38.665,56.099 +417260,38.964,54.56 +417261,36.592,59.031 +417262,37.005,57.571 +417263,37.392,56.082 +417264,37.751,54.566 +417265,35.205,58.969 +417266,35.674,57.531 +417267,36.119,56.065 +417268,36.538,54.573 +417269,33.819,58.905 +417270,34.343,57.49 +417271,34.845,56.049 +417272,35.324,54.581 +417273,32.433,58.84 +417274,33.013,57.45 +417275,33.572,56.033 +417276,34.11,54.591 +417277,31.048,58.774 +417278,31.682,57.408 +417279,32.298,56.017 +417280,32.895,54.602 +417281,29.662,58.707 +417282,30.352,57.367 +417283,31.024,56.002 +417284,31.679,54.614 +417285,28.277,58.639 +417286,29.022,57.325 +417287,29.751,55.987 +417288,30.463,54.627 +417289,26.893,58.57 +417290,27.692,57.283 +417291,28.477,55.973 +417292,29.246,54.641 +417293,25.509,58.499 +417294,26.362,57.24 +417295,27.202,55.959 +417296,28.029,54.656 +417297,24.125,58.428 +417298,25.033,57.197 +417299,25.928,55.945 +417300,26.811,54.672 +417301,22.742,58.355 +417302,23.704,57.154 +417303,24.654,55.931 +417304,25.592,54.689 +417305,21.359,58.281 +417306,22.375,57.11 +417307,23.379,55.918 +417308,24.372,54.707 +417309,19.977,58.206 +417310,21.046,57.066 +417311,22.104,55.905 +417312,23.151,54.727 +417313,18.596,58.131 +417314,19.718,57.021 +417315,20.829,55.893 +417316,21.929,54.747 +417317,17.215,58.054 +417318,18.39,56.976 +417319,19.553,55.881 +417320,20.706,54.768 +417321,15.835,57.976 +417322,17.062,56.931 +417323,18.277,55.869 +417324,19.482,54.79 +417325,14.456,57.897 +417326,15.735,56.886 +417327,17.001,55.857 +417328,18.257,54.813 +417329,13.077,57.817 +417330,14.408,56.84 +417331,15.725,55.846 +417332,17.031,54.837 +417333,11.7,57.737 +417334,13.081,56.794 +417335,14.449,55.835 +417336,15.804,54.861 +417337,10.323,57.655 +417338,11.755,56.748 +417339,13.172,55.824 +417340,14.576,54.887 +417341,8.9468,57.573 +417342,10.429,56.701 +417343,11.895,55.814 +417344,13.346,54.913 +417345,7.5718,57.49 +417346,9.1032,56.654 +417347,10.617,55.803 +417348,12.115,54.94 +417349,6.1977,57.406 +417350,7.7781,56.607 +417351,9.3392,55.793 +417352,10.883,54.967 +417353,4.8247,57.321 +417354,6.4534,56.56 +417355,8.0609,55.784 +417356,9.6497,54.995 +417357,3.4527,57.236 +417358,5.1291,56.512 +417359,6.7823,55.774 +417360,8.415,55.024 +417361,2.0818,57.15 +417362,3.8052,56.464 +417363,5.5033,55.765 +417364,7.1788,55.054 +417365,0.71208,57.063 +417366,2.4819,56.416 +417367,4.2239,55.756 +417368,5.9413,55.084 +417369,359.34,56.975 +417370,1.159,56.367 +417371,2.9441,55.747 +417372,4.7023,55.115 +417373,357.98,56.887 +417374,359.84,56.319 +417375,1.6639,55.738 +417376,3.4618,55.146 +417377,356.61,56.798 +417378,358.51,56.27 +417379,0.38327,55.729 +417380,2.2199,55.177 +417381,355.24,56.709 +417382,357.19,56.221 +417383,359.1,55.721 +417384,0.97641,55.209 +417385,353.88,56.619 +417386,355.87,56.172 +417387,357.82,55.712 +417388,359.73,55.242 +417389,352.52,56.529 +417390,354.55,56.123 +417391,356.54,55.704 +417392,358.48,55.275 +417393,351.16,56.438 +417394,353.23,56.073 +417395,355.26,55.696 +417396,357.24,55.308 +417397,349.8,56.346 +417398,351.91,56.024 +417399,353.97,55.688 +417400,355.99,55.342 +417401,348.44,56.255 +417402,350.59,55.974 +417403,352.69,55.68 +417404,354.74,55.376 +417405,347.08,56.163 +417406,349.28,55.924 +417407,351.41,55.673 +417408,353.48,55.41 +417409,345.73,56.07 +417410,347.96,55.874 +417411,350.12,55.665 +417412,352.23,55.444 +417413,344.38,55.977 +417414,346.64,55.824 +417415,348.84,55.657 +417416,350.97,55.479 +417417,343.02,55.884 +417418,345.32,55.774 +417419,347.55,55.65 +417420,349.71,55.514 +417421,341.67,55.791 +417422,344.01,55.724 +417423,346.27,55.642 +417424,348.45,55.548 +417425,340.33,55.698 +417426,342.69,55.674 +417427,344.98,55.635 +417428,347.19,55.583 +417429,338.98,55.604 +417430,341.38,55.623 +417431,343.69,55.628 +417432,345.93,55.619 +417433,337.63,55.51 +417434,340.07,55.573 +417435,342.4,55.62 +417436,344.66,55.654 +417437,336.29,55.416 +417438,338.75,55.523 +417439,341.12,55.613 +417440,343.4,55.689 +417441,334.95,55.322 +417442,337.44,55.472 +417443,339.83,55.605 +417444,342.13,55.724 +417445,333.61,55.228 +417446,336.13,55.422 +417447,338.54,55.598 +417448,340.86,55.759 +417449,332.27,55.134 +417450,334.82,55.372 +417451,337.25,55.59 +417452,339.59,55.794 +417453,330.93,55.04 +417454,333.51,55.321 +417455,335.96,55.583 +417456,338.31,55.828 +417457,329.6,54.946 +417458,332.2,55.271 +417459,334.67,55.575 +417460,337.04,55.863 +417461,328.27,54.852 +417462,330.89,55.22 +417463,333.38,55.568 +417464,335.76,55.897 +417465,326.94,54.759 +417466,329.58,55.17 +417467,332.08,55.56 +417468,334.48,55.931 +417469,325.61,54.665 +417470,328.27,55.12 +417471,330.79,55.552 +417472,333.2,55.965 +417473,324.28,54.572 +417474,326.96,55.07 +417475,329.5,55.545 +417476,331.91,55.999 +417477,322.96,54.479 +417478,325.66,55.02 +417479,328.21,55.537 +417480,330.63,56.032 +417481,321.63,54.386 +417482,324.35,54.97 +417483,326.91,55.529 +417484,329.34,56.065 +417485,320.31,54.293 +417486,323.04,54.92 +417487,325.62,55.52 +417488,328.05,56.097 +417489,319,54.201 +417490,321.74,54.87 +417491,324.32,55.512 +417492,326.76,56.129 +417493,317.68,54.109 +417494,320.44,54.821 +417495,323.02,55.503 +417496,325.47,56.161 +417497,316.37,54.018 +417498,319.13,54.771 +417499,321.73,55.495 +417500,324.18,56.192 +417501,315.05,53.927 +417502,317.83,54.722 +417503,320.43,55.486 +417504,322.88,56.223 +417505,313.74,53.837 +417506,316.53,54.673 +417507,319.13,55.477 +417508,321.58,56.253 +417509,312.44,53.747 +417510,315.23,54.624 +417511,317.83,55.468 +417512,320.28,56.282 +417513,311.13,53.658 +417514,313.93,54.575 +417515,316.54,55.458 +417516,318.98,56.311 +417517,309.83,53.569 +417518,312.63,54.527 +417519,315.24,55.449 +417520,317.68,56.339 +417521,308.53,53.481 +417522,311.33,54.478 +417523,313.94,55.439 +417524,316.37,56.367 +417525,307.23,53.393 +417526,310.03,54.43 +417527,312.64,55.429 +417528,315.07,56.394 +417529,305.93,53.307 +417530,308.74,54.382 +417531,311.33,55.418 +417532,313.76,56.42 +417533,304.64,53.221 +417534,307.44,54.335 +417535,310.03,55.408 +417536,312.45,56.445 +417537,303.34,53.135 +417538,306.14,54.287 +417539,308.73,55.397 +417540,311.14,56.47 +417541,302.05,53.051 +417542,304.85,54.24 +417543,307.43,55.386 +417544,309.82,56.493 +417545,300.77,52.967 +417546,303.56,54.193 +417547,306.12,55.375 +417548,308.51,56.516 +417549,299.48,52.885 +417550,302.26,54.147 +417551,304.82,55.363 +417552,307.19,56.538 +417553,298.2,52.803 +417554,300.97,54.1 +417555,303.51,55.351 +417556,305.87,56.56 +417557,296.91,52.722 +417558,299.68,54.054 +417559,302.21,55.339 +417560,304.55,56.58 +417561,295.64,52.642 +417562,298.39,54.009 +417563,300.9,55.326 +417564,303.23,56.599 +417565,294.36,52.563 +417566,297.1,53.963 +417567,299.6,55.313 +417568,301.9,56.617 +417569,293.08,52.485 +417570,295.81,53.918 +417571,298.29,55.3 +417572,300.58,56.635 +417573,291.81,52.408 +417574,294.52,53.874 +417575,296.98,55.286 +417576,299.25,56.651 +417577,290.54,52.332 +417578,293.23,53.829 +417579,295.67,55.272 +417580,297.92,56.666 +417581,289.27,52.258 +417582,291.94,53.785 +417583,294.36,55.258 +417584,296.59,56.681 +417585,288.01,52.184 +417586,290.65,53.742 +417587,293.05,55.243 +417588,295.26,56.694 +417589,286.75,52.112 +417590,289.37,53.699 +417591,291.74,55.228 +417592,293.92,56.706 +417593,285.48,52.04 +417594,288.08,53.656 +417595,290.43,55.212 +417596,292.59,56.717 +417597,284.22,51.97 +417598,286.8,53.613 +417599,289.12,55.197 +417600,291.25,56.727 +417601,282.97,51.902 +417602,285.51,53.571 +417603,287.81,55.18 +417604,289.91,56.735 +417605,281.71,51.834 +417606,284.23,53.53 +417607,286.5,55.164 +417608,288.57,56.743 +417609,280.46,51.768 +417610,282.95,53.488 +417611,285.19,55.146 +417612,287.23,56.749 +417613,279.21,51.703 +417614,281.66,53.448 +417615,283.88,55.129 +417616,285.89,56.754 +417617,277.96,51.639 +417618,280.38,53.407 +417619,282.56,55.111 +417620,284.54,56.757 +417621,276.71,51.577 +417622,279.1,53.367 +417623,281.25,55.093 +417624,283.2,56.76 +417625,275.47,51.516 +417626,277.82,53.328 +417627,279.93,55.074 +417628,281.85,56.761 +417629,274.23,51.457 +417630,276.54,53.289 +417631,278.62,55.055 +417632,280.5,56.761 +417633,272.98,51.398 +417634,275.26,53.25 +417635,277.3,55.035 +417636,279.15,56.759 +417637,271.75,51.342 +417638,273.99,53.212 +417639,275.99,55.015 +417640,277.8,56.757 +417641,270.51,51.287 +417642,272.71,53.175 +417643,274.67,54.994 +417644,276.45,56.752 +417645,269.27,51.233 +417646,271.43,53.137 +417647,273.36,54.973 +417648,275.09,56.747 +417649,268.04,51.181 +417650,270.15,53.101 +417651,272.04,54.951 +417652,273.74,56.74 +417653,266.81,51.13 +417654,268.88,53.064 +417655,270.72,54.929 +417656,272.38,56.732 +417657,265.58,51.081 +417658,267.6,53.029 +417659,269.4,54.907 +417660,271.03,56.722 +417661,264.35,51.033 +417662,266.33,52.994 +417663,268.09,54.884 +417664,269.67,56.711 +417665,263.12,50.987 +417666,265.05,52.959 +417667,266.77,54.86 +417668,268.31,56.699 +417669,261.9,50.942 +417670,263.78,52.925 +417671,265.45,54.836 +417672,266.95,56.685 +417673,260.67,50.899 +417674,262.51,52.891 +417675,264.13,54.812 +417676,265.59,56.67 +417677,259.45,50.858 +417678,261.23,52.858 +417679,262.81,54.787 +417680,264.22,56.653 +417681,258.23,50.818 +417682,259.96,52.825 +417683,261.49,54.762 +417684,262.86,56.635 +417685,257.01,50.779 +417686,258.69,52.793 +417687,260.17,54.736 +417688,261.49,56.615 +417689,255.79,50.743 +417690,257.42,52.761 +417691,258.85,54.709 +417692,260.13,56.594 +417693,254.58,50.708 +417694,256.15,52.73 +417695,257.53,54.682 +417696,258.76,56.571 +417697,253.36,50.674 +417698,254.88,52.699 +417699,256.21,54.655 +417700,257.39,56.547 +417701,252.15,50.642 +417702,253.61,52.669 +417703,254.89,54.627 +417704,256.03,56.521 +417705,250.94,50.612 +417706,252.34,52.64 +417707,253.57,54.598 +417708,254.66,56.494 +417709,249.72,50.583 +417710,251.07,52.61 +417711,252.25,54.569 +417712,253.29,56.466 +417713,248.51,50.556 +417714,249.8,52.582 +417715,250.92,54.54 +417716,251.92,56.436 +417717,247.3,50.531 +417718,248.53,52.554 +417719,249.6,54.51 +417720,250.54,56.404 +417721,246.1,50.507 +417722,247.26,52.526 +417723,248.28,54.479 +417724,249.17,56.371 +417725,244.89,50.485 +417726,245.99,52.499 +417727,246.96,54.448 +417728,247.8,56.336 +417729,243.68,50.464 +417730,244.73,52.473 +417731,245.63,54.416 +417732,246.43,56.3 +417733,242.48,50.445 +417734,243.46,52.447 +417735,244.31,54.384 +417736,245.05,56.263 +417737,241.27,50.428 +417738,242.19,52.422 +417739,242.99,54.352 +417740,243.68,56.224 +417741,240.07,50.412 +417742,240.93,52.397 +417743,241.67,54.319 +417744,242.3,56.183 +417745,238.86,50.398 +417746,239.66,52.372 +417747,240.34,54.285 +417748,240.93,56.141 +417749,237.66,50.385 +417750,238.39,52.349 +417751,239.02,54.251 +417752,239.55,56.097 +417753,236.46,50.375 +417754,237.13,52.325 +417755,237.7,54.216 +417756,238.17,56.052 +417757,235.25,50.365 +417758,235.86,52.302 +417759,236.37,54.181 +417760,236.8,56.006 +417761,234.05,50.357 +417762,234.6,52.28 +417763,235.05,54.146 +417764,235.42,55.958 +417765,232.85,50.351 +417766,233.33,52.258 +417767,233.72,54.11 +417768,234.04,55.908 +417769,231.65,50.346 +417770,232.07,52.237 +417771,232.4,54.073 +417772,232.66,55.857 +417773,230.45,50.343 +417774,230.8,52.216 +417775,231.08,54.036 +417776,231.29,55.805 +417777,229.25,50.341 +417778,229.54,52.196 +417779,229.75,53.998 +417780,229.91,55.751 +417781,228.05,50.341 +417782,228.27,52.176 +417783,228.43,53.96 +417784,228.53,55.696 +417785,226.84,50.342 +417786,227.01,52.157 +417787,227.11,53.922 +417788,227.15,55.639 +417789,225.64,50.345 +417790,225.74,52.138 +417791,225.78,53.883 +417792,225.77,55.581 +417793,224.44,50.349 +417794,224.48,52.12 +417795,224.46,53.843 +417796,224.39,55.521 +417797,223.24,50.355 +417798,223.21,52.102 +417799,223.14,53.803 +417800,223.01,55.46 +417801,222.04,50.362 +417802,221.95,52.085 +417803,221.81,53.763 +417804,221.63,55.398 +417805,220.84,50.37 +417806,220.69,52.068 +417807,220.49,53.722 +417808,220.25,55.334 +417809,219.64,50.38 +417810,219.42,52.051 +417811,219.16,53.68 +417812,218.88,55.269 +417813,218.44,50.391 +417814,218.16,52.035 +417815,217.84,53.639 +417816,217.5,55.203 +417817,217.23,50.404 +417818,216.89,52.02 +417819,216.52,53.596 +417820,216.12,55.135 +417821,216.03,50.417 +417822,215.63,52.004 +417823,215.2,53.554 +417824,214.74,55.066 +417825,214.83,50.432 +417826,214.36,51.99 +417827,213.87,53.511 +417828,213.36,54.996 +417829,213.63,50.449 +417830,213.1,51.975 +417831,212.55,53.467 +417832,211.98,54.925 +417833,212.42,50.466 +417834,211.83,51.962 +417835,211.23,53.423 +417836,210.61,54.852 +417837,211.22,50.485 +417838,210.57,51.948 +417839,209.91,53.379 +417840,209.23,54.778 +417841,210.01,50.505 +417842,209.3,51.935 +417843,208.58,53.334 +417844,207.85,54.703 +417845,208.8,50.526 +417846,208.04,51.922 +417847,207.26,53.289 +417848,206.47,54.626 +417849,207.6,50.548 +417850,206.77,51.91 +417851,205.94,53.244 +417852,205.1,54.549 +417853,206.39,50.572 +417854,205.51,51.898 +417855,204.62,53.198 +417856,203.72,54.47 +417857,205.18,50.596 +417858,204.24,51.887 +417859,203.3,53.152 +417860,202.35,54.39 +417861,203.97,50.621 +417862,202.98,51.876 +417863,201.98,53.105 +417864,200.97,54.309 +417865,202.76,50.648 +417866,201.71,51.865 +417867,200.66,53.058 +417868,199.6,54.227 +417869,201.55,50.675 +417870,200.44,51.854 +417871,199.34,53.011 +417872,198.23,54.144 +417873,200.34,50.704 +417874,199.18,51.844 +417875,198.02,52.963 +417876,196.85,54.06 +417877,199.12,50.733 +417878,197.91,51.834 +417879,196.7,52.915 +417880,195.48,53.974 +417881,197.91,50.763 +417882,196.64,51.825 +417883,195.38,52.867 +417884,194.11,53.888 +417885,196.69,50.795 +417886,195.38,51.816 +417887,194.06,52.818 +417888,192.74,53.801 +417889,195.47,50.827 +417890,194.11,51.807 +417891,192.74,52.769 +417892,191.37,53.713 +417893,194.26,50.859 +417894,192.84,51.798 +417895,191.42,52.72 +417896,190,53.624 +417897,193.04,50.893 +417898,191.57,51.79 +417899,190.11,52.671 +417900,188.63,53.534 +417901,191.82,50.927 +417902,190.3,51.782 +417903,188.79,52.621 +417904,187.27,53.444 +417905,190.59,50.962 +417906,189.04,51.774 +417907,187.47,52.571 +417908,185.9,53.352 +417909,189.37,50.998 +417910,187.77,51.766 +417911,186.16,52.521 +417912,184.54,53.26 +417913,188.14,51.034 +417914,186.5,51.759 +417915,184.84,52.471 +417916,183.17,53.167 +417917,186.92,51.071 +417918,185.23,51.752 +417919,183.52,52.42 +417920,181.81,53.073 +417921,185.69,51.108 +417922,183.96,51.745 +417923,182.21,52.369 +417924,180.45,52.979 +417925,184.46,51.146 +417926,182.69,51.738 +417927,180.9,52.318 +417928,179.09,52.884 +417929,183.23,51.184 +417930,181.41,51.732 +417931,179.58,52.267 +417932,177.73,52.788 +417933,182,51.223 +417934,180.14,51.725 +417935,178.27,52.215 +417936,176.37,52.692 +417937,180.76,51.263 +417938,178.87,51.719 +417939,176.96,52.164 +417940,175.01,52.595 +417941,179.53,51.302 +417942,177.6,51.713 +417943,175.64,52.112 +417944,173.66,52.497 +417945,178.29,51.342 +417946,176.33,51.707 +417947,174.33,52.06 +417948,172.3,52.4 +417949,177.05,51.383 +417950,175.05,51.701 +417951,173.02,52.008 +417952,170.95,52.301 +417953,175.81,51.423 +417954,173.78,51.696 +417955,171.71,51.956 +417956,169.6,52.202 +417957,174.57,51.464 +417958,172.5,51.69 +417959,170.4,51.904 +417960,168.25,52.103 +417961,173.32,51.505 +417962,171.23,51.685 +417963,169.09,51.852 +417964,166.9,52.004 +417965,172.07,51.546 +417966,169.95,51.679 +417967,167.78,51.799 +417968,165.55,51.904 +417969,170.83,51.588 +417970,168.68,51.674 +417971,166.47,51.747 +417972,164.21,51.804 +417973,169.58,51.629 +417974,167.4,51.669 +417975,165.17,51.694 +417976,162.86,51.703 +417977,168.33,51.671 +417978,166.12,51.664 +417979,163.86,51.642 +417980,161.52,51.603 +417981,167.07,51.712 +417982,164.85,51.658 +417983,162.55,51.589 +417984,160.18,51.502 +417985,165.82,51.754 +417986,163.57,51.653 +417987,161.25,51.536 +417988,158.84,51.401 +417989,164.56,51.795 +417990,162.29,51.648 +417991,159.94,51.484 +417992,157.51,51.3 +417993,163.3,51.837 +417994,161.01,51.643 +417995,158.64,51.431 +417996,156.17,51.199 +417997,162.04,51.878 +417998,159.73,51.638 +417999,157.33,51.379 +418000,154.84,51.098 +418001,160.78,51.919 +418002,158.45,51.632 +418003,156.03,51.326 +418004,153.51,50.997 +418005,159.52,51.96 +418006,157.17,51.627 +418007,154.73,51.273 +418008,152.18,50.897 +418009,158.25,52.001 +418010,155.89,51.622 +418011,153.43,51.221 +418012,150.85,50.796 +418013,156.98,52.042 +418014,154.61,51.616 +418015,152.13,51.169 +418016,149.52,50.695 +418017,155.71,52.082 +418018,153.33,51.611 +418019,150.83,51.116 +418020,148.2,50.595 +418021,154.44,52.122 +418022,152.04,51.605 +418023,149.53,51.064 +418024,146.88,50.494 +418025,153.17,52.161 +418026,150.76,51.6 +418027,148.23,51.012 +418028,145.56,50.394 +418029,151.89,52.2 +418030,149.48,51.594 +418031,146.93,50.96 +418032,144.24,50.295 +418033,150.62,52.239 +418034,148.19,51.588 +418035,145.63,50.908 +418036,142.92,50.195 +418037,149.34,52.277 +418038,146.91,51.582 +418039,144.34,50.856 +418040,141.61,50.096 +418041,148.06,52.315 +418042,145.62,51.576 +418043,143.04,50.805 +418044,140.3,49.998 +418045,146.77,52.352 +418046,144.33,51.569 +418047,141.75,50.753 +418048,138.99,49.899 +418049,145.49,52.389 +418050,143.05,51.563 +418051,140.45,50.702 +418052,137.68,49.802 +418053,144.2,52.425 +418054,141.76,51.556 +418055,139.16,50.651 +418056,136.37,49.705 +418057,142.92,52.46 +418058,140.47,51.549 +418059,137.87,50.6 +418060,135.07,49.608 +418061,141.63,52.495 +418062,139.18,51.542 +418063,136.57,50.55 +418064,133.77,49.512 +418065,140.33,52.529 +418066,137.89,51.535 +418067,135.28,50.5 +418068,132.47,49.417 +418069,139.04,52.562 +418070,136.6,51.527 +418071,133.99,50.45 +418072,131.17,49.323 +418073,137.74,52.594 +418074,135.31,51.52 +418075,132.7,50.4 +418076,129.88,49.229 +418077,136.45,52.626 +418078,134.02,51.511 +418079,131.41,50.35 +418080,128.59,49.136 +418081,135.15,52.657 +418082,132.73,51.503 +418083,130.13,50.301 +418084,127.3,49.043 +418085,133.85,52.687 +418086,131.44,51.495 +418087,128.84,50.252 +418088,126.01,48.952 +418089,132.54,52.716 +418090,130.14,51.486 +418091,127.55,50.203 +418092,124.72,48.862 +418093,131.24,52.745 +418094,128.85,51.477 +418095,126.27,50.155 +418096,123.44,48.772 +418097,129.93,52.772 +418098,127.56,51.467 +418099,124.98,50.107 +418100,122.16,48.683 +418101,128.63,52.798 +418102,126.26,51.457 +418103,123.7,50.059 +418104,120.88,48.596 +418105,127.32,52.824 +418106,124.97,51.447 +418107,122.41,50.012 +418108,119.6,48.509 +418109,126.01,52.848 +418110,123.67,51.437 +418111,121.13,49.965 +418112,118.33,48.424 +418113,124.69,52.872 +418114,122.38,51.426 +418115,119.85,49.918 +418116,117.06,48.339 +418117,123.38,52.894 +418118,121.08,51.415 +418119,118.57,49.872 +418120,115.79,48.256 +418121,122.06,52.915 +418122,119.78,51.403 +418123,117.29,49.826 +418124,114.52,48.174 +418125,120.74,52.935 +418126,118.48,51.392 +418127,116.01,49.781 +418128,113.26,48.093 +418129,119.43,52.954 +418130,117.19,51.379 +418131,114.73,49.736 +418132,112,48.013 +418133,118.1,52.972 +418134,115.89,51.367 +418135,113.45,49.691 +418136,110.74,47.935 +418137,116.78,52.988 +418138,114.59,51.354 +418139,112.17,49.647 +418140,109.48,47.857 +418141,115.46,53.004 +418142,113.29,51.34 +418143,110.9,49.603 +418144,108.22,47.782 +418145,114.13,53.018 +418146,111.99,51.327 +418147,109.62,49.56 +418148,106.97,47.707 +418149,112.8,53.031 +418150,110.69,51.312 +418151,108.34,49.517 +418152,105.72,47.634 +418153,111.48,53.042 +418154,109.39,51.298 +418155,107.07,49.475 +418156,104.47,47.562 +418157,110.15,53.053 +418158,108.08,51.283 +418159,105.8,49.433 +418160,103.22,47.492 +418161,108.81,53.062 +418162,106.78,51.267 +418163,104.52,49.392 +418164,101.98,47.423 +418165,107.48,53.069 +418166,105.48,51.251 +418167,103.25,49.351 +418168,100.74,47.356 +418169,106.15,53.076 +418170,104.17,51.235 +418171,101.98,49.311 +418172,99.498,47.291 +418173,104.81,53.08 +418174,102.87,51.218 +418175,100.71,49.271 +418176,98.26,47.226 +418177,103.47,53.084 +418178,101.57,51.2 +418179,99.437,49.231 +418180,97.024,47.164 +418181,102.13,53.086 +418182,100.26,51.183 +418183,98.168,49.193 +418184,95.79,47.103 +418185,100.8,53.087 +418186,98.957,51.164 +418187,96.898,49.154 +418188,94.559,47.043 +418189,99.454,53.086 +418190,97.652,51.145 +418191,95.63,49.117 +418192,93.329,46.986 +418193,98.112,53.084 +418194,96.346,51.126 +418195,94.362,49.079 +418196,92.101,46.93 +418197,96.768,53.08 +418198,95.039,51.106 +418199,93.095,49.043 +418200,90.876,46.875 +418201,95.423,53.075 +418202,93.733,51.086 +418203,91.829,49.007 +418204,89.652,46.823 +418205,94.078,53.068 +418206,92.426,51.065 +418207,90.563,48.971 +418208,88.43,46.772 +418209,92.731,53.06 +418210,91.118,51.044 +418211,89.297,48.936 +418212,87.21,46.722 +418213,91.382,53.05 +418214,89.81,51.022 +418215,88.033,48.902 +418216,85.992,46.675 +418217,90.033,53.039 +418218,88.502,51 +418219,86.768,48.868 +418220,84.775,46.629 +418221,88.683,53.027 +418222,87.194,50.977 +418223,85.505,48.835 +418224,83.56,46.585 +418225,87.332,53.012 +418226,85.885,50.954 +418227,84.242,48.802 +418228,82.347,46.543 +418229,85.979,52.996 +418230,84.576,50.93 +418231,82.979,48.77 +418232,81.136,46.502 +418233,84.626,52.979 +418234,83.266,50.905 +418235,81.717,48.738 +418236,79.926,46.464 +418237,83.272,52.96 +418238,81.957,50.88 +418239,80.456,48.707 +418240,78.717,46.427 +418241,81.917,52.939 +418242,80.647,50.855 +418243,79.195,48.677 +418244,77.51,46.392 +418245,80.561,52.917 +418246,79.336,50.829 +418247,77.934,48.647 +418248,76.305,46.359 +418249,79.204,52.893 +418250,78.026,50.802 +418251,76.674,48.618 +418252,75.101,46.328 +418253,77.847,52.868 +418254,76.715,50.775 +418255,75.414,48.59 +418256,73.898,46.298 +418257,76.488,52.841 +418258,75.404,50.747 +418259,74.155,48.562 +418260,72.696,46.271 +418261,75.129,52.813 +418262,74.093,50.719 +418263,72.896,48.534 +418264,71.496,46.245 +418265,73.769,52.782 +418266,72.781,50.691 +418267,71.638,48.508 +418268,70.297,46.221 +418269,72.409,52.751 +418270,71.47,50.661 +418271,70.38,48.482 +418272,69.099,46.199 +418273,71.048,52.717 +418274,70.158,50.632 +418275,69.122,48.456 +418276,67.902,46.179 +418277,69.686,52.682 +418278,68.846,50.601 +418279,67.865,48.431 +418280,66.706,46.16 +418281,68.323,52.646 +418282,67.534,50.57 +418283,66.608,48.407 +418284,65.51,46.144 +418285,66.961,52.607 +418286,66.222,50.539 +418287,65.351,48.383 +418288,64.316,46.129 +418289,65.597,52.568 +418290,64.909,50.507 +418291,64.095,48.36 +418292,63.123,46.116 +418293,64.233,52.526 +418294,63.597,50.474 +418295,62.839,48.338 +418296,61.93,46.105 +418297,62.869,52.483 +418298,62.284,50.441 +418299,61.583,48.316 +418300,60.738,46.095 +418301,61.504,52.438 +418302,60.971,50.408 +418303,60.328,48.294 +418304,59.546,46.088 +418305,60.139,52.392 +418306,59.659,50.374 +418307,59.073,48.274 +418308,58.356,46.082 +418309,58.773,52.344 +418310,58.346,50.339 +418311,57.818,48.254 +418312,57.165,46.078 +418313,57.408,52.295 +418314,57.033,50.304 +418315,56.563,48.234 +418316,55.975,46.076 +418317,56.041,52.244 +418318,55.72,50.268 +418319,55.308,48.215 +418320,54.786,46.075 +418321,54.675,52.192 +418322,54.407,50.232 +418323,54.054,48.197 +418324,53.597,46.077 +418325,53.309,52.138 +418326,53.094,50.195 +418327,52.8,48.179 +418328,52.408,46.08 +418329,51.942,52.082 +418330,51.781,50.158 +418331,51.546,48.162 +418332,51.219,46.084 +418333,50.575,52.025 +418334,50.468,50.12 +418335,50.292,48.145 +418336,50.03,46.091 +418337,49.208,51.966 +418338,49.155,50.082 +418339,49.038,48.129 +418340,48.842,46.099 +418341,47.841,51.906 +418342,47.843,50.044 +418343,47.784,48.113 +418344,47.653,46.109 +418345,46.474,51.844 +418346,46.53,50.004 +418347,46.531,48.098 +418348,46.464,46.12 +418349,45.107,51.781 +418350,45.217,49.965 +418351,45.277,48.084 +418352,45.276,46.133 +418353,43.74,51.716 +418354,43.905,49.924 +418355,44.023,48.07 +418356,44.087,46.147 +418357,42.373,51.65 +418358,42.592,49.884 +418359,42.77,48.056 +418360,42.898,46.163 +418361,41.006,51.583 +418362,41.28,49.843 +418363,41.516,48.044 +418364,41.708,46.181 +418365,39.64,51.514 +418366,39.968,49.801 +418367,40.263,48.031 +418368,40.518,46.2 +418369,38.273,51.443 +418370,38.656,49.759 +418371,39.009,48.019 +418372,39.328,46.221 +418373,36.907,51.372 +418374,37.344,49.716 +418375,37.756,48.008 +418376,38.137,46.243 +418377,35.541,51.298 +418378,36.032,49.673 +418379,36.502,47.997 +418380,36.946,46.266 +418381,34.175,51.224 +418382,34.721,49.63 +418383,35.248,47.987 +418384,35.754,46.291 +418385,32.81,51.148 +418386,33.409,49.586 +418387,33.994,47.977 +418388,34.562,46.317 +418389,31.445,51.071 +418390,32.098,49.542 +418391,32.74,47.968 +418392,33.369,46.345 +418393,30.08,50.992 +418394,30.787,49.497 +418395,31.486,47.959 +418396,32.175,46.374 +418397,28.716,50.912 +418398,29.477,49.452 +418399,30.232,47.95 +418400,30.981,46.404 +418401,27.352,50.831 +418402,28.167,49.407 +418403,28.978,47.942 +418404,29.785,46.435 +418405,25.989,50.749 +418406,26.857,49.361 +418407,27.723,47.934 +418408,28.589,46.468 +418409,24.626,50.666 +418410,25.547,49.315 +418411,26.469,47.927 +418412,27.392,46.502 +418413,23.264,50.581 +418414,24.237,49.268 +418415,25.214,47.92 +418416,26.193,46.537 +418417,21.903,50.495 +418418,22.928,49.221 +418419,23.959,47.914 +418420,24.994,46.573 +418421,20.542,50.408 +418422,21.62,49.174 +418423,22.703,47.908 +418424,23.794,46.61 +418425,19.182,50.32 +418426,20.311,49.126 +418427,21.448,47.902 +418428,22.592,46.648 +418429,17.823,50.231 +418430,19.003,49.078 +418431,20.192,47.897 +418432,21.389,46.687 +418433,16.464,50.141 +418434,17.696,49.03 +418435,18.936,47.892 +418436,20.186,46.728 +418437,15.107,50.05 +418438,16.388,48.982 +418439,17.679,47.888 +418440,18.981,46.769 +418441,13.75,49.957 +418442,15.081,48.933 +418443,16.423,47.884 +418444,17.774,46.811 +418445,12.394,49.864 +418446,13.775,48.883 +418447,15.166,47.88 +418448,16.566,46.854 +418449,11.039,49.77 +418450,12.469,48.834 +418451,13.908,47.876 +418452,15.357,46.897 +418453,9.6846,49.675 +418454,11.164,48.784 +418455,12.651,47.873 +418456,14.147,46.942 +418457,8.3315,49.579 +418458,9.8584,48.734 +418459,11.393,47.87 +418460,12.935,46.987 +418461,6.9794,49.482 +418462,8.5538,48.684 +418463,10.134,47.867 +418464,11.722,47.033 +418465,5.6284,49.385 +418466,7.2497,48.634 +418467,8.8754,47.865 +418468,10.507,47.08 +418469,4.2785,49.286 +418470,5.9461,48.583 +418471,7.6163,47.863 +418472,9.2904,47.127 +418473,2.9298,49.187 +418474,4.6429,48.532 +418475,6.3568,47.861 +418476,8.0725,47.175 +418477,1.5822,49.088 +418478,3.3403,48.481 +418479,5.0969,47.859 +418480,6.853,47.223 +418481,0.23582,48.987 +418482,2.0382,48.43 +418483,3.8365,47.858 +418484,5.6319,47.272 +418485,358.89,48.886 +418486,0.73669,48.378 +418487,2.5757,47.857 +418488,4.4091,47.322 +418489,357.55,48.784 +418490,359.44,48.327 +418491,1.3145,47.856 +418492,3.1847,47.372 +418493,356.2,48.682 +418494,358.14,48.275 +418495,0.052847,47.855 +418496,1.9586,47.422 +418497,354.86,48.579 +418498,356.84,48.223 +418499,358.79,47.854 +418500,0.7308,47.473 +418501,353.52,48.476 +418502,355.54,48.171 +418503,357.53,47.853 +418504,359.5,47.523 +418505,352.19,48.372 +418506,354.24,48.119 +418507,356.27,47.853 +418508,358.27,47.575 +418509,350.85,48.268 +418510,352.94,48.067 +418511,355,47.853 +418512,357.04,47.626 +418513,349.51,48.164 +418514,351.64,48.015 +418515,353.74,47.853 +418516,355.8,47.678 +418517,348.18,48.059 +418518,350.35,47.963 +418519,352.47,47.853 +418520,354.57,47.73 +418521,346.85,47.953 +418522,349.05,47.91 +418523,351.21,47.853 +418524,353.33,47.782 +418525,345.52,47.848 +418526,347.75,47.858 +418527,349.94,47.853 +418528,352.09,47.834 +418529,344.19,47.742 +418530,346.46,47.806 +418531,348.68,47.853 +418532,350.84,47.886 +418533,342.86,47.637 +418534,345.16,47.753 +418535,347.41,47.853 +418536,349.6,47.938 +418537,341.53,47.531 +418538,343.87,47.701 +418539,346.14,47.853 +418540,348.36,47.99 +418541,340.21,47.425 +418542,342.58,47.649 +418543,344.87,47.854 +418544,347.11,48.042 +418545,338.89,47.319 +418546,341.29,47.596 +418547,343.61,47.854 +418548,345.86,48.093 +418549,337.57,47.212 +418550,339.99,47.544 +418551,342.34,47.854 +418552,344.61,48.145 +418553,336.25,47.106 +418554,338.7,47.492 +418555,341.07,47.854 +418556,343.35,48.197 +418557,334.93,47 +418558,337.41,47.44 +418559,339.8,47.855 +418560,342.1,48.248 +418561,333.62,46.894 +418562,336.12,47.387 +418563,338.53,47.855 +418564,340.84,48.299 +418565,332.3,46.789 +418566,334.84,47.336 +418567,337.26,47.855 +418568,339.58,48.349 +418569,330.99,46.683 +418570,333.55,47.284 +418571,335.99,47.855 +418572,338.32,48.4 +418573,329.69,46.578 +418574,332.26,47.232 +418575,334.71,47.855 +418576,337.06,48.45 +418577,328.38,46.473 +418578,330.97,47.18 +418579,333.44,47.855 +418580,335.79,48.499 +418581,327.07,46.368 +418582,329.69,47.129 +418583,332.17,47.854 +418584,334.53,48.548 +418585,325.77,46.264 +418586,328.4,47.078 +418587,330.89,47.854 +418588,333.26,48.597 +418589,324.47,46.16 +418590,327.12,47.027 +418591,329.62,47.853 +418592,331.99,48.645 +418593,323.17,46.057 +418594,325.84,46.976 +418595,328.34,47.853 +418596,330.72,48.692 +418597,321.87,45.954 +418598,324.55,46.925 +418599,327.07,47.852 +418600,329.44,48.739 +418601,320.58,45.852 +418602,323.27,46.875 +418603,325.79,47.851 +418604,328.17,48.785 +418605,319.29,45.75 +418606,321.99,46.825 +418607,324.52,47.85 +418608,326.89,48.831 +418609,318,45.649 +418610,320.71,46.775 +418611,323.24,47.848 +418612,325.61,48.876 +418613,316.71,45.549 +418614,319.43,46.725 +418615,321.96,47.847 +418616,324.33,48.92 +418617,315.42,45.449 +418618,318.15,46.676 +418619,320.68,47.845 +418620,323.05,48.963 +418621,314.14,45.351 +418622,316.87,46.627 +418623,319.4,47.843 +418624,321.76,49.006 +418625,312.86,45.253 +418626,315.6,46.578 +418627,318.12,47.841 +418628,320.48,49.047 +418629,311.58,45.155 +418630,314.32,46.53 +418631,316.84,47.838 +418632,319.19,49.088 +418633,310.3,45.059 +418634,313.05,46.482 +418635,315.56,47.835 +418636,317.9,49.128 +418637,309.03,44.964 +418638,311.77,46.434 +418639,314.28,47.832 +418640,316.6,49.167 +418641,307.76,44.87 +418642,310.5,46.387 +418643,313,47.829 +418644,315.31,49.205 +418645,306.49,44.777 +418646,309.22,46.34 +418647,311.72,47.825 +418648,314.02,49.242 +418649,305.22,44.684 +418650,307.95,46.293 +418651,310.44,47.821 +418652,312.72,49.278 +418653,303.95,44.593 +418654,306.68,46.247 +418655,309.15,47.817 +418656,311.42,49.313 +418657,302.69,44.503 +418658,305.41,46.202 +418659,307.87,47.812 +418660,310.12,49.347 +418661,301.43,44.415 +418662,304.14,46.156 +418663,306.58,47.807 +418664,308.82,49.379 +418665,300.17,44.327 +418666,302.87,46.111 +418667,305.3,47.802 +418668,307.51,49.411 +418669,298.92,44.241 +418670,301.6,46.067 +418671,304.01,47.796 +418672,306.21,49.441 +418673,297.66,44.156 +418674,300.33,46.023 +418675,302.73,47.79 +418676,304.9,49.47 +418677,296.41,44.073 +418678,299.07,45.98 +418679,301.44,47.783 +418680,303.59,49.498 +418681,295.16,43.991 +418682,297.8,45.937 +418683,300.15,47.776 +418684,302.28,49.525 +418685,293.92,43.91 +418686,296.53,45.894 +418687,298.86,47.769 +418688,300.97,49.551 +418689,292.67,43.831 +418690,295.27,45.852 +418691,297.58,47.761 +418692,299.66,49.575 +418693,291.43,43.753 +418694,294.01,45.811 +418695,296.29,47.753 +418696,298.34,49.598 +418697,290.19,43.677 +418698,292.74,45.77 +418699,295,47.745 +418700,297.03,49.619 +418701,288.95,43.603 +418702,291.48,45.729 +418703,293.71,47.736 +418704,295.71,49.64 +418705,287.72,43.53 +418706,290.22,45.689 +418707,292.42,47.726 +418708,294.39,49.658 +418709,286.48,43.458 +418710,288.96,45.65 +418711,291.13,47.716 +418712,293.07,49.676 +418713,285.25,43.389 +418714,287.7,45.611 +418715,289.84,47.706 +418716,291.75,49.692 +418717,284.02,43.321 +418718,286.44,45.573 +418719,288.55,47.695 +418720,290.42,49.706 +418721,282.8,43.255 +418722,285.18,45.536 +418723,287.25,47.684 +418724,289.1,49.719 +418725,281.57,43.19 +418726,283.92,45.499 +418727,285.96,47.672 +418728,287.77,49.731 +418729,280.35,43.128 +418730,282.66,45.462 +418731,284.67,47.66 +418732,286.45,49.741 +418733,279.13,43.067 +418734,281.4,45.427 +418735,283.38,47.647 +418736,285.12,49.75 +418737,277.91,43.008 +418738,280.15,45.391 +418739,282.08,47.633 +418740,283.79,49.757 +418741,276.7,42.951 +418742,278.89,45.357 +418743,280.79,47.62 +418744,282.46,49.762 +418745,275.48,42.895 +418746,277.64,45.323 +418747,279.49,47.605 +418748,281.13,49.766 +418749,274.27,42.842 +418750,276.38,45.29 +418751,278.2,47.591 +418752,279.8,49.769 +418753,273.06,42.791 +418754,275.13,45.257 +418755,276.9,47.575 +418756,278.46,49.769 +418757,271.85,42.741 +418758,273.87,45.225 +418759,275.61,47.559 +418760,277.13,49.768 +418761,270.65,42.694 +418762,272.62,45.194 +418763,274.31,47.543 +418764,275.79,49.766 +418765,269.44,42.648 +418766,271.37,45.163 +418767,273.02,47.526 +418768,274.45,49.762 +418769,268.24,42.605 +418770,270.12,45.133 +418771,271.72,47.508 +418772,273.12,49.756 +418773,267.04,42.563 +418774,268.87,45.104 +418775,270.42,47.49 +418776,271.78,49.749 +418777,265.84,42.524 +418778,267.62,45.075 +418779,269.13,47.472 +418780,270.44,49.74 +418781,264.64,42.487 +418782,266.37,45.047 +418783,267.83,47.453 +418784,269.1,49.729 +418785,263.44,42.451 +418786,265.12,45.02 +418787,266.53,47.433 +418788,267.76,49.717 +418789,262.25,42.418 +418790,263.87,44.993 +418791,265.24,47.413 +418792,266.41,49.703 +418793,261.05,42.387 +418794,262.62,44.967 +418795,263.94,47.392 +418796,265.07,49.687 +418797,259.86,42.358 +418798,261.37,44.942 +418799,262.64,47.371 +418800,263.73,49.67 +418801,258.67,42.331 +418802,260.12,44.917 +418803,261.34,47.349 +418804,262.38,49.651 +418805,257.48,42.306 +418806,258.88,44.893 +418807,260.04,47.326 +418808,261.04,49.63 +418809,256.29,42.283 +418810,257.63,44.87 +418811,258.74,47.303 +418812,259.69,49.607 +418813,255.1,42.262 +418814,256.38,44.847 +418815,257.44,47.28 +418816,258.34,49.583 +418817,253.92,42.244 +418818,255.14,44.826 +418819,256.15,47.255 +418820,257,49.557 +418821,252.73,42.227 +418822,253.89,44.805 +418823,254.85,47.231 +418824,255.65,49.53 +418825,251.55,42.213 +418826,252.65,44.784 +418827,253.55,47.205 +418828,254.3,49.5 +418829,250.36,42.201 +418830,251.4,44.764 +418831,252.25,47.18 +418832,252.95,49.469 +418833,249.18,42.19 +418834,250.16,44.745 +418835,250.95,47.153 +418836,251.6,49.436 +418837,248,42.182 +418838,248.91,44.727 +418839,249.65,47.126 +418840,250.25,49.402 +418841,246.82,42.176 +418842,247.67,44.709 +418843,248.35,47.099 +418844,248.9,49.366 +418845,245.64,42.172 +418846,246.42,44.692 +418847,247.05,47.07 +418848,247.55,49.328 +418849,244.46,42.17 +418850,245.18,44.676 +418851,245.75,47.042 +418852,246.2,49.288 +418853,243.28,42.17 +418854,243.94,44.661 +418855,244.45,47.013 +418856,244.85,49.247 +418857,242.1,42.172 +418858,242.69,44.646 +418859,243.15,46.983 +418860,243.5,49.204 +418861,240.92,42.177 +418862,241.45,44.631 +418863,241.85,46.952 +418864,242.15,49.159 +418865,239.74,42.183 +418866,240.21,44.618 +418867,240.55,46.922 +418868,240.8,49.113 +418869,238.57,42.191 +418870,238.96,44.605 +418871,239.25,46.89 +418872,239.45,49.065 +418873,237.39,42.201 +418874,237.72,44.593 +418875,237.95,46.858 +418876,238.1,49.015 +418877,236.21,42.213 +418878,236.48,44.581 +418879,236.65,46.826 +418880,236.75,48.964 +418881,235.03,42.227 +418882,235.24,44.57 +418883,235.35,46.793 +418884,235.39,48.911 +418885,233.85,42.243 +418886,233.99,44.56 +418887,234.05,46.759 +418888,234.04,48.856 +418889,232.68,42.261 +418890,232.75,44.55 +418891,232.75,46.725 +418892,232.69,48.8 +418893,231.5,42.28 +418894,231.51,44.541 +418895,231.45,46.69 +418896,231.34,48.742 +418897,230.32,42.302 +418898,230.27,44.533 +418899,230.15,46.655 +418900,229.99,48.683 +418901,229.14,42.325 +418902,229.03,44.525 +418903,228.85,46.62 +418904,228.64,48.621 +418905,227.96,42.35 +418906,227.78,44.518 +418907,227.55,46.584 +418908,227.28,48.559 +418909,226.79,42.377 +418910,226.54,44.512 +418911,226.25,46.547 +418912,225.93,48.495 +418913,225.61,42.405 +418914,225.3,44.506 +418915,224.96,46.51 +418916,224.58,48.429 +418917,224.43,42.436 +418918,224.06,44.5 +418919,223.66,46.472 +418920,223.23,48.362 +418921,223.25,42.467 +418922,222.81,44.496 +418923,222.36,46.434 +418924,221.88,48.293 +418925,222.06,42.501 +418926,221.57,44.492 +418927,221.06,46.396 +418928,220.53,48.223 +418929,220.88,42.536 +418930,220.33,44.488 +418931,219.76,46.357 +418932,219.18,48.151 +418933,219.7,42.573 +418934,219.09,44.485 +418935,218.46,46.317 +418936,217.84,48.078 +418937,218.52,42.611 +418938,217.84,44.482 +418939,217.17,46.278 +418940,216.49,48.004 +418941,217.33,42.651 +418942,216.6,44.481 +418943,215.87,46.237 +418944,215.14,47.928 +418945,216.15,42.692 +418946,215.36,44.479 +418947,214.57,46.197 +418948,213.79,47.85 +418949,214.96,42.735 +418950,214.11,44.478 +418951,213.28,46.156 +418952,212.44,47.772 +418953,213.77,42.779 +418954,212.87,44.478 +418955,211.98,46.114 +418956,211.1,47.692 +418957,212.59,42.824 +418958,211.63,44.478 +418959,210.68,46.072 +418960,209.75,47.61 +418961,211.4,42.871 +418962,210.38,44.479 +418963,209.39,46.03 +418964,208.41,47.528 +418965,210.21,42.919 +418966,209.14,44.48 +418967,208.09,45.987 +418968,207.06,47.444 +418969,209.01,42.968 +418970,207.9,44.481 +418971,206.8,45.944 +418972,205.72,47.359 +418973,207.82,43.018 +418974,206.65,44.483 +418975,205.5,45.901 +418976,204.38,47.272 +418977,206.63,43.07 +418978,205.41,44.486 +418979,204.21,45.857 +418980,203.04,47.185 +418981,205.43,43.122 +418982,204.16,44.489 +418983,202.92,45.813 +418984,201.7,47.096 +418985,204.23,43.176 +418986,202.91,44.492 +418987,201.62,45.768 +418988,200.36,47.006 +418989,203.04,43.231 +418990,201.67,44.496 +418991,200.33,45.724 +418992,199.02,46.915 +418993,201.84,43.286 +418994,200.42,44.5 +418995,199.04,45.679 +418996,197.68,46.824 +418997,200.63,43.343 +418998,199.18,44.505 +418999,197.75,45.633 +419000,196.34,46.731 +419001,199.43,43.401 +419002,197.93,44.509 +419003,196.45,45.588 +419004,195.01,46.637 +419005,198.23,43.459 +419006,196.68,44.515 +419007,195.16,45.542 +419008,193.67,46.542 +419009,197.02,43.519 +419010,195.43,44.52 +419011,193.87,45.496 +419012,192.34,46.446 +419013,195.81,43.579 +419014,194.19,44.526 +419015,192.58,45.45 +419016,191,46.349 +419017,194.61,43.639 +419018,192.94,44.532 +419019,191.29,45.403 +419020,189.67,46.251 +419021,193.39,43.701 +419022,191.69,44.539 +419023,190,45.356 +419024,188.34,46.153 +419025,192.18,43.763 +419026,190.44,44.546 +419027,188.72,45.309 +419028,187.01,46.054 +419029,190.97,43.826 +419030,189.19,44.553 +419031,187.43,45.262 +419032,185.69,45.953 +419033,189.75,43.889 +419034,187.94,44.56 +419035,186.14,45.215 +419036,184.36,45.853 +419037,188.53,43.953 +419038,186.69,44.568 +419039,184.85,45.168 +419040,183.03,45.751 +419041,187.31,44.017 +419042,185.44,44.576 +419043,183.57,45.12 +419044,181.71,45.649 +419045,186.09,44.082 +419046,184.18,44.584 +419047,182.28,45.072 +419048,180.39,45.546 +419049,184.87,44.147 +419050,182.93,44.592 +419051,181,45.024 +419052,179.07,45.443 +419053,183.64,44.212 +419054,181.68,44.6 +419055,179.71,44.976 +419056,177.75,45.339 +419057,182.42,44.278 +419058,180.43,44.609 +419059,178.43,44.928 +419060,176.43,45.235 +419061,181.19,44.343 +419062,179.17,44.618 +419063,177.15,44.88 +419064,175.11,45.13 +419065,179.96,44.41 +419066,177.92,44.627 +419067,175.86,44.832 +419068,173.8,45.025 +419069,178.73,44.476 +419070,176.66,44.636 +419071,174.58,44.784 +419072,172.49,44.919 +419073,177.49,44.542 +419074,175.41,44.645 +419075,173.3,44.736 +419076,171.17,44.814 +419077,176.26,44.609 +419078,174.15,44.654 +419079,172.02,44.687 +419080,169.86,44.707 +419081,175.02,44.675 +419082,172.89,44.663 +419083,170.74,44.639 +419084,168.56,44.601 +419085,173.78,44.742 +419086,171.64,44.673 +419087,169.46,44.591 +419088,167.25,44.495 +419089,172.54,44.808 +419090,170.38,44.682 +419091,168.18,44.543 +419092,165.95,44.388 +419093,171.29,44.874 +419094,169.12,44.692 +419095,166.91,44.494 +419096,164.64,44.281 +419097,170.05,44.94 +419098,167.86,44.701 +419099,165.63,44.446 +419100,163.34,44.174 +419101,168.8,45.006 +419102,166.6,44.711 +419103,164.35,44.398 +419104,162.04,44.067 +419105,167.55,45.072 +419106,165.34,44.72 +419107,163.08,44.35 +419108,160.74,43.96 +419109,166.3,45.138 +419110,164.08,44.73 +419111,161.8,44.303 +419112,159.45,43.853 +419113,165.04,45.203 +419114,162.82,44.74 +419115,160.53,44.255 +419116,158.16,43.747 +419117,163.79,45.268 +419118,161.56,44.749 +419119,159.25,44.207 +419120,156.86,43.64 +419121,162.53,45.332 +419122,160.3,44.758 +419123,157.98,44.16 +419124,155.57,43.534 +419125,161.27,45.396 +419126,159.04,44.768 +419127,156.71,44.113 +419128,154.29,43.428 +419129,160.01,45.459 +419130,157.77,44.777 +419131,155.44,44.066 +419132,153,43.322 +419133,158.75,45.522 +419134,156.51,44.786 +419135,154.17,44.019 +419136,151.72,43.217 +419137,157.48,45.585 +419138,155.24,44.795 +419139,152.9,43.972 +419140,150.43,43.112 +419141,156.22,45.647 +419142,153.98,44.804 +419143,151.63,43.926 +419144,149.16,43.007 +419145,154.95,45.708 +419146,152.71,44.813 +419147,150.36,43.879 +419148,147.88,42.903 +419149,153.68,45.768 +419150,151.45,44.822 +419151,149.09,43.834 +419152,146.6,42.8 +419153,152.41,45.828 +419154,150.18,44.83 +419155,147.83,43.788 +419156,145.33,42.697 +419157,151.13,45.887 +419158,148.91,44.838 +419159,146.56,43.743 +419160,144.06,42.595 +419161,149.86,45.946 +419162,147.64,44.846 +419163,145.3,43.698 +419164,142.79,42.493 +419165,148.58,46.003 +419166,146.38,44.854 +419167,144.03,43.653 +419168,141.52,42.393 +419169,147.3,46.06 +419170,145.11,44.862 +419171,142.77,43.608 +419172,140.26,42.293 +419173,146.02,46.116 +419174,143.84,44.869 +419175,141.51,43.564 +419176,139,42.194 +419177,144.74,46.171 +419178,142.57,44.876 +419179,140.24,43.521 +419180,137.74,42.095 +419181,143.45,46.224 +419182,141.3,44.883 +419183,138.98,43.477 +419184,136.48,41.998 +419185,142.17,46.277 +419186,140.03,44.89 +419187,137.72,43.435 +419188,135.22,41.902 +419189,140.88,46.329 +419190,138.75,44.896 +419191,136.46,43.392 +419192,133.97,41.807 +419193,139.59,46.38 +419194,137.48,44.902 +419195,135.2,43.35 +419196,132.72,41.712 +419197,138.3,46.43 +419198,136.21,44.908 +419199,133.94,43.308 +419200,131.47,41.619 +419201,137.01,46.479 +419202,134.93,44.914 +419203,132.69,43.267 +419204,130.22,41.527 +419205,135.71,46.526 +419206,133.66,44.919 +419207,131.43,43.227 +419208,128.98,41.437 +419209,134.42,46.573 +419210,132.39,44.923 +419211,130.17,43.186 +419212,127.73,41.347 +419213,133.12,46.618 +419214,131.11,44.928 +419215,128.92,43.147 +419216,126.49,41.259 +419217,131.82,46.662 +419218,129.83,44.932 +419219,127.66,43.107 +419220,125.26,41.172 +419221,130.52,46.705 +419222,128.56,44.936 +419223,126.41,43.069 +419224,124.02,41.087 +419225,129.22,46.746 +419226,127.28,44.939 +419227,125.16,43.03 +419228,122.79,41.003 +419229,127.91,46.786 +419230,126.01,44.942 +419231,123.9,42.993 +419232,121.55,40.921 +419233,126.61,46.825 +419234,124.73,44.944 +419235,122.65,42.956 +419236,120.33,40.84 +419237,125.3,46.863 +419238,123.45,44.946 +419239,121.4,42.919 +419240,119.1,40.761 +419241,123.99,46.899 +419242,122.17,44.948 +419243,120.15,42.883 +419244,117.87,40.683 +419245,122.69,46.933 +419246,120.89,44.949 +419247,118.9,42.848 +419248,116.65,40.607 +419249,121.38,46.967 +419250,119.61,44.95 +419251,117.65,42.813 +419252,115.43,40.533 +419253,120.06,46.998 +419254,118.33,44.95 +419255,116.4,42.779 +419256,114.21,40.46 +419257,118.75,47.029 +419258,117.05,44.95 +419259,115.16,42.745 +419260,113,40.389 +419261,117.44,47.058 +419262,115.77,44.95 +419263,113.91,42.712 +419264,111.78,40.32 +419265,116.12,47.085 +419266,114.49,44.948 +419267,112.66,42.68 +419268,110.57,40.253 +419269,114.81,47.111 +419270,113.21,44.947 +419271,111.42,42.648 +419272,109.36,40.188 +419273,113.49,47.135 +419274,111.93,44.945 +419275,110.17,42.617 +419276,108.15,40.124 +419277,112.17,47.158 +419278,110.65,44.942 +419279,108.93,42.587 +419280,106.94,40.063 +419281,110.85,47.179 +419282,109.36,44.939 +419283,107.68,42.558 +419284,105.74,40.003 +419285,109.53,47.198 +419286,108.08,44.936 +419287,106.44,42.529 +419288,104.54,39.946 +419289,108.21,47.216 +419290,106.8,44.932 +419291,105.2,42.5 +419292,103.34,39.891 +419293,106.88,47.232 +419294,105.51,44.927 +419295,103.95,42.473 +419296,102.14,39.837 +419297,105.56,47.247 +419298,104.23,44.922 +419299,102.71,42.446 +419300,100.94,39.786 +419301,104.24,47.26 +419302,102.94,44.916 +419303,101.47,42.42 +419304,99.744,39.737 +419305,102.91,47.271 +419306,101.66,44.91 +419307,100.23,42.394 +419308,98.55,39.69 +419309,101.58,47.281 +419310,100.38,44.903 +419311,98.988,42.37 +419312,97.358,39.645 +419313,100.26,47.288 +419314,99.09,44.896 +419315,97.748,42.346 +419316,96.167,39.602 +419317,98.928,47.295 +419318,97.805,44.888 +419319,96.509,42.323 +419320,94.978,39.562 +419321,97.6,47.299 +419322,96.519,44.88 +419323,95.27,42.3 +419324,93.79,39.524 +419325,96.27,47.302 +419326,95.233,44.871 +419327,94.032,42.278 +419328,92.604,39.488 +419329,94.94,47.303 +419330,93.947,44.861 +419331,92.794,42.257 +419332,91.419,39.454 +419333,93.609,47.302 +419334,92.661,44.851 +419335,91.556,42.237 +419336,90.236,39.423 +419337,92.277,47.299 +419338,91.374,44.84 +419339,90.319,42.218 +419340,89.053,39.394 +419341,90.945,47.295 +419342,90.087,44.829 +419343,89.082,42.199 +419344,87.872,39.367 +419345,89.612,47.289 +419346,88.8,44.817 +419347,87.845,42.181 +419348,86.692,39.342 +419349,88.279,47.281 +419350,87.513,44.805 +419351,86.609,42.164 +419352,85.513,39.32 +419353,86.945,47.271 +419354,86.226,44.792 +419355,85.373,42.148 +419356,84.335,39.3 +419357,85.611,47.26 +419358,84.939,44.779 +419359,84.138,42.132 +419360,83.158,39.283 +419361,84.277,47.246 +419362,83.651,44.764 +419363,82.902,42.117 +419364,81.982,39.268 +419365,82.942,47.231 +419366,82.364,44.75 +419367,81.667,42.103 +419368,80.806,39.255 +419369,81.606,47.214 +419370,81.076,44.734 +419371,80.433,42.09 +419372,79.632,39.244 +419373,80.271,47.196 +419374,79.788,44.719 +419375,79.198,42.078 +419376,78.458,39.236 +419377,78.935,47.175 +419378,78.501,44.702 +419379,77.964,42.066 +419380,77.284,39.23 +419381,77.598,47.153 +419382,77.213,44.685 +419383,76.73,42.055 +419384,76.112,39.227 +419385,76.262,47.129 +419386,75.925,44.667 +419387,75.496,42.045 +419388,74.939,39.225 +419389,74.925,47.103 +419390,74.637,44.649 +419391,74.262,42.035 +419392,73.768,39.226 +419393,73.589,47.076 +419394,73.349,44.631 +419395,73.028,42.027 +419396,72.596,39.23 +419397,72.252,47.046 +419398,72.061,44.611 +419399,71.795,42.019 +419400,71.425,39.236 +419401,70.915,47.015 +419402,70.773,44.591 +419403,70.562,42.012 +419404,70.254,39.244 +419405,69.578,46.982 +419406,69.485,44.571 +419407,69.329,42.006 +419408,69.083,39.254 +419409,68.241,46.948 +419410,68.198,44.55 +419411,68.095,42 +419412,67.912,39.266 +419413,66.904,46.911 +419414,66.91,44.528 +419415,66.862,41.995 +419416,66.742,39.281 +419417,65.567,46.873 +419418,65.622,44.506 +419419,65.629,41.991 +419420,65.571,39.298 +419421,64.23,46.833 +419422,64.334,44.483 +419423,64.396,41.988 +419424,64.4,39.317 +419425,62.894,46.791 +419426,63.047,44.46 +419427,63.163,41.985 +419428,63.229,39.339 +419429,61.557,46.748 +419430,61.76,44.436 +419431,61.93,41.984 +419432,62.057,39.362 +419433,60.221,46.703 +419434,60.472,44.412 +419435,60.697,41.983 +419436,60.885,39.388 +419437,58.885,46.656 +419438,59.185,44.387 +419439,59.464,41.982 +419440,59.713,39.416 +419441,57.55,46.608 +419442,57.898,44.361 +419443,58.231,41.983 +419444,58.541,39.445 +419445,56.214,46.557 +419446,56.611,44.336 +419447,56.998,41.984 +419448,57.368,39.477 +419449,54.879,46.506 +419450,55.325,44.309 +419451,55.764,41.985 +419452,56.194,39.511 +419453,53.545,46.452 +419454,54.039,44.282 +419455,54.531,41.988 +419456,55.02,39.547 +419457,52.21,46.397 +419458,52.752,44.255 +419459,53.297,41.991 +419460,53.845,39.585 +419461,50.877,46.34 +419462,51.466,44.227 +419463,52.064,41.995 +419464,52.669,39.625 +419465,49.544,46.282 +419466,50.181,44.198 +419467,50.83,41.999 +419468,51.492,39.667 +419469,48.211,46.222 +419470,48.895,44.169 +419471,49.596,42.005 +419472,50.315,39.71 +419473,46.879,46.161 +419474,47.61,44.14 +419475,48.361,42.01 +419476,49.136,39.756 +419477,45.547,46.098 +419478,46.325,44.11 +419479,47.127,42.017 +419480,47.957,39.803 +419481,44.216,46.033 +419482,45.041,44.079 +419483,45.892,42.024 +419484,46.776,39.852 +419485,42.886,45.967 +419486,43.756,44.048 +419487,44.657,42.032 +419488,45.595,39.903 +419489,41.557,45.9 +419490,42.472,44.017 +419491,43.422,42.04 +419492,44.412,39.955 +419493,40.228,45.831 +419494,41.189,43.985 +419495,42.186,42.049 +419496,43.228,40.009 +419497,38.9,45.76 +419498,39.905,43.953 +419499,40.95,42.059 +419500,42.043,40.065 +419501,37.573,45.688 +419502,38.623,43.921 +419503,39.714,42.069 +419504,40.856,40.122 +419505,36.247,45.615 +419506,37.34,43.888 +419507,38.478,42.079 +419508,39.669,40.18 +419509,34.921,45.541 +419510,36.058,43.854 +419511,37.241,42.091 +419512,38.479,40.241 +419513,33.597,45.465 +419514,34.776,43.82 +419515,36.004,42.103 +419516,37.289,40.302 +419517,32.273,45.387 +419518,33.495,43.786 +419519,34.766,42.115 +419520,36.097,40.365 +419521,30.951,45.309 +419522,32.214,43.752 +419523,33.528,42.128 +419524,34.903,40.43 +419525,29.629,45.229 +419526,30.933,43.717 +419527,32.29,42.141 +419528,33.708,40.495 +419529,28.309,45.148 +419530,29.653,43.682 +419531,31.051,42.155 +419532,32.511,40.562 +419533,26.989,45.066 +419534,28.374,43.646 +419535,29.812,42.169 +419536,31.313,40.63 +419537,25.671,44.983 +419538,27.095,43.61 +419539,28.573,42.184 +419540,30.113,40.7 +419541,24.354,44.898 +419542,25.816,43.574 +419543,27.333,42.199 +419544,28.912,40.77 +419545,23.038,44.813 +419546,24.538,43.538 +419547,26.092,42.215 +419548,27.708,40.841 +419549,21.723,44.726 +419550,23.26,43.501 +419551,24.851,42.231 +419552,26.503,40.914 +419553,20.41,44.638 +419554,21.983,43.464 +419555,23.61,42.248 +419556,25.297,40.987 +419557,19.097,44.549 +419558,20.706,43.426 +419559,22.368,42.265 +419560,24.088,41.062 +419561,17.786,44.46 +419562,19.43,43.389 +419563,21.125,42.282 +419564,22.878,41.137 +419565,16.477,44.369 +419566,18.155,43.351 +419567,19.883,42.3 +419568,21.666,41.213 +419569,15.169,44.278 +419570,16.88,43.313 +419571,18.639,42.318 +419572,20.452,41.29 +419573,13.862,44.185 +419574,15.605,43.275 +419575,17.395,42.336 +419576,19.236,41.368 +419577,12.557,44.092 +419578,14.332,43.237 +419579,16.151,42.355 +419580,18.018,41.446 +419581,11.253,43.998 +419582,13.058,43.198 +419583,14.906,42.374 +419584,16.799,41.525 +419585,9.9502,43.903 +419586,11.786,43.159 +419587,13.66,42.393 +419588,15.577,41.604 +419589,8.6493,43.808 +419590,10.514,43.121 +419591,12.414,42.413 +419592,14.354,41.684 +419593,7.35,43.711 +419594,9.2422,43.082 +419595,11.168,42.433 +419596,13.128,41.765 +419597,6.0522,43.615 +419598,7.9713,43.042 +419599,9.9203,42.453 +419600,11.901,41.846 +419601,4.756,43.517 +419602,6.7011,43.003 +419603,8.6725,42.473 +419604,10.672,41.927 +419605,3.4614,43.419 +419606,5.4315,42.964 +419607,7.4242,42.494 +419608,9.4409,42.009 +419609,2.1686,43.321 +419610,4.1625,42.925 +419611,6.1752,42.514 +419612,8.2078,42.091 +419613,0.87734,43.222 +419614,2.8942,42.885 +419615,4.9257,42.535 +419616,6.9728,42.173 +419617,359.59,43.122 +419618,1.6265,42.846 +419619,3.6756,42.557 +419620,5.7358,42.255 +419621,358.3,43.023 +419622,0.35943,42.806 +419623,2.4249,42.578 +419624,4.4969,42.338 +419625,357.01,42.922 +419626,359.09,42.767 +419627,1.1735,42.599 +419628,3.256,42.421 +419629,355.73,42.822 +419630,357.83,42.727 +419631,359.92,42.621 +419632,2.0131,42.504 +419633,354.45,42.721 +419634,356.56,42.688 +419635,358.67,42.642 +419636,0.76832,42.586 +419637,353.17,42.621 +419638,355.3,42.648 +419639,357.42,42.664 +419640,359.52,42.669 +419641,351.89,42.519 +419642,354.03,42.609 +419643,356.16,42.686 +419644,358.27,42.752 +419645,350.61,42.418 +419646,352.77,42.569 +419647,354.91,42.708 +419648,357.02,42.834 +419649,349.34,42.317 +419650,351.51,42.53 +419651,353.65,42.73 +419652,355.77,42.917 +419653,348.06,42.216 +419654,350.25,42.491 +419655,352.4,42.752 +419656,354.52,42.999 +419657,346.79,42.115 +419658,348.99,42.452 +419659,351.14,42.774 +419660,353.26,43.081 +419661,345.52,42.014 +419662,347.73,42.413 +419663,349.88,42.796 +419664,352,43.162 +419665,344.26,41.913 +419666,346.47,42.374 +419667,348.63,42.818 +419668,350.74,43.244 +419669,342.99,41.812 +419670,345.21,42.336 +419671,347.37,42.84 +419672,349.48,43.325 +419673,341.73,41.711 +419674,343.95,42.297 +419675,346.11,42.861 +419676,348.21,43.405 +419677,340.47,41.611 +419678,342.69,42.259 +419679,344.85,42.883 +419680,346.95,43.485 +419681,339.21,41.511 +419682,341.44,42.221 +419683,343.59,42.905 +419684,345.68,43.564 +419685,337.95,41.411 +419686,340.18,42.183 +419687,342.33,42.927 +419688,344.41,43.643 +419689,336.69,41.312 +419690,338.92,42.146 +419691,341.07,42.948 +419692,343.14,43.722 +419693,335.44,41.213 +419694,337.67,42.108 +419695,339.81,42.97 +419696,341.87,43.799 +419697,334.19,41.115 +419698,336.41,42.071 +419699,338.55,42.991 +419700,340.59,43.876 +419701,332.94,41.017 +419702,335.16,42.035 +419703,337.28,43.012 +419704,339.32,43.953 +419705,331.69,40.92 +419706,333.91,41.998 +419707,336.02,43.033 +419708,338.04,44.028 +419709,330.45,40.824 +419710,332.66,41.962 +419711,334.76,43.054 +419712,336.76,44.103 +419713,329.21,40.728 +419714,331.41,41.926 +419715,333.49,43.074 +419716,335.48,44.177 +419717,327.96,40.633 +419718,330.16,41.891 +419719,332.23,43.095 +419720,334.19,44.25 +419721,326.73,40.539 +419722,328.91,41.856 +419723,330.96,43.115 +419724,332.91,44.322 +419725,325.49,40.446 +419726,327.66,41.821 +419727,329.69,43.135 +419728,331.62,44.393 +419729,324.25,40.354 +419730,326.41,41.787 +419731,328.43,43.155 +419732,330.33,44.463 +419733,323.02,40.262 +419734,325.16,41.753 +419735,327.16,43.174 +419736,329.04,44.533 +419737,321.79,40.172 +419738,323.91,41.72 +419739,325.89,43.193 +419740,327.75,44.601 +419741,320.56,40.083 +419742,322.67,41.687 +419743,324.62,43.212 +419744,326.46,44.668 +419745,319.34,39.995 +419746,321.42,41.654 +419747,323.35,43.231 +419748,325.17,44.734 +419749,318.11,39.908 +419750,320.18,41.622 +419751,322.08,43.249 +419752,323.87,44.799 +419753,316.89,39.822 +419754,318.93,41.591 +419755,320.81,43.267 +419756,322.57,44.863 +419757,315.67,39.738 +419758,317.69,41.56 +419759,319.54,43.285 +419760,321.27,44.925 +419761,314.45,39.655 +419762,316.44,41.529 +419763,318.27,43.302 +419764,319.97,44.986 +419765,313.24,39.573 +419766,315.2,41.499 +419767,317,43.319 +419768,318.67,45.046 +419769,312.02,39.493 +419770,313.96,41.47 +419771,315.73,43.335 +419772,317.37,45.105 +419773,310.81,39.414 +419774,312.72,41.441 +419775,314.46,43.352 +419776,316.07,45.163 +419777,309.6,39.337 +419778,311.48,41.413 +419779,313.18,43.367 +419780,314.76,45.219 +419781,308.39,39.261 +419782,310.24,41.385 +419783,311.91,43.383 +419784,313.45,45.273 +419785,307.19,39.187 +419786,309,41.358 +419787,310.64,43.398 +419788,312.15,45.327 +419789,305.98,39.114 +419790,307.76,41.331 +419791,309.36,43.412 +419792,310.84,45.379 +419793,304.78,39.043 +419794,306.52,41.305 +419795,308.09,43.427 +419796,309.53,45.429 +419797,303.58,38.974 +419798,305.28,41.28 +419799,306.81,43.44 +419800,308.22,45.478 +419801,302.38,38.907 +419802,304.04,41.255 +419803,305.54,43.453 +419804,306.9,45.526 +419805,301.18,38.841 +419806,302.81,41.231 +419807,304.26,43.466 +419808,305.59,45.572 +419809,299.98,38.778 +419810,301.57,41.208 +419811,302.99,43.479 +419812,304.28,45.616 +419813,298.79,38.716 +419814,300.33,41.185 +419815,301.71,43.49 +419816,302.96,45.659 +419817,297.6,38.656 +419818,299.1,41.163 +419819,300.43,43.502 +419820,301.64,45.701 +419821,296.41,38.598 +419822,297.86,41.142 +419823,299.15,43.513 +419824,300.33,45.74 +419825,295.22,38.542 +419826,296.63,41.121 +419827,297.88,43.523 +419828,299.01,45.778 +419829,294.03,38.488 +419830,295.39,41.101 +419831,296.6,43.533 +419832,297.69,45.815 +419833,292.84,38.437 +419834,294.16,41.082 +419835,295.32,43.542 +419836,296.37,45.85 +419837,291.66,38.387 +419838,292.92,41.064 +419839,294.04,43.551 +419840,295.05,45.883 +419841,290.48,38.34 +419842,291.69,41.046 +419843,292.76,43.559 +419844,293.73,45.915 +419845,289.29,38.294 +419846,290.46,41.029 +419847,291.48,43.567 +419848,292.4,45.945 +419849,288.11,38.251 +419850,289.23,41.013 +419851,290.2,43.575 +419852,291.08,45.973 +419853,286.93,38.21 +419854,287.99,40.998 +419855,288.92,43.581 +419856,289.76,45.999 +419857,285.75,38.172 +419858,286.76,40.983 +419859,287.64,43.587 +419860,288.43,46.024 +419861,284.58,38.135 +419862,285.53,40.969 +419863,286.36,43.593 +419864,287.11,46.047 +419865,283.4,38.101 +419866,284.3,40.956 +419867,285.08,43.598 +419868,285.78,46.068 +419869,282.22,38.069 +419870,283.07,40.944 +419871,283.8,43.603 +419872,284.46,46.087 +419873,281.05,38.04 +419874,281.84,40.932 +419875,282.52,43.607 +419876,283.13,46.105 +419877,279.87,38.013 +419878,280.61,40.921 +419879,281.24,43.61 +419880,281.81,46.121 +419881,278.7,37.988 +419882,279.38,40.911 +419883,279.96,43.613 +419884,280.48,46.135 +419885,277.53,37.966 +419886,278.15,40.902 +419887,278.68,43.615 +419888,279.15,46.147 +419889,276.36,37.946 +419890,276.92,40.894 +419891,277.4,43.617 +419892,277.82,46.158 +419893,275.19,37.929 +419894,275.69,40.886 +419895,276.12,43.618 +419896,276.49,46.167 +419897,274.02,37.914 +419898,274.46,40.88 +419899,274.84,43.618 +419900,275.17,46.174 +419901,272.85,37.901 +419902,273.23,40.874 +419903,273.55,43.618 +419904,273.84,46.179 +419905,271.68,37.891 +419906,272,40.869 +419907,272.27,43.617 +419908,272.51,46.182 +419909,270.51,37.883 +419910,270.77,40.864 +419911,270.99,43.616 +419912,271.18,46.183 +419913,269.34,37.878 +419914,269.54,40.861 +419915,269.71,43.614 +419916,269.85,46.183 +419917,268.17,37.875 +419918,268.31,40.858 +419919,268.43,43.612 +419920,268.52,46.181 +419921,267,37.875 +419922,267.08,40.857 +419923,267.15,43.609 +419924,267.19,46.176 +419925,265.83,37.877 +419926,265.86,40.856 +419927,265.86,43.605 +419928,265.86,46.171 +419929,264.66,37.882 +419930,264.63,40.855 +419931,264.58,43.601 +419932,264.53,46.163 +419933,263.49,37.889 +419934,263.4,40.856 +419935,263.3,43.596 +419936,263.2,46.153 +419937,262.32,37.898 +419938,262.17,40.858 +419939,262.02,43.591 +419940,261.88,46.142 +419941,261.15,37.91 +419942,260.94,40.86 +419943,260.74,43.585 +419944,260.55,46.129 +419945,259.99,37.925 +419946,259.71,40.863 +419947,259.46,43.578 +419948,259.22,46.114 +419949,258.82,37.942 +419950,258.48,40.867 +419951,258.17,43.571 +419952,257.89,46.097 +419953,257.65,37.961 +419954,257.25,40.872 +419955,256.89,43.563 +419956,256.56,46.078 +419957,256.47,37.982 +419958,256.02,40.877 +419959,255.61,43.555 +419960,255.23,46.058 +419961,255.3,38.006 +419962,254.79,40.883 +419963,254.33,43.546 +419964,253.9,46.035 +419965,254.13,38.033 +419966,253.56,40.891 +419967,253.05,43.537 +419968,252.58,46.011 +419969,252.96,38.061 +419970,252.33,40.898 +419971,251.77,43.527 +419972,251.25,45.986 +419973,251.79,38.092 +419974,251.1,40.907 +419975,250.49,43.516 +419976,249.92,45.958 +419977,250.61,38.125 +419978,249.87,40.917 +419979,249.21,43.505 +419980,248.6,45.929 +419981,249.44,38.161 +419982,248.64,40.927 +419983,247.93,43.494 +419984,247.27,45.898 +419985,248.26,38.199 +419986,247.41,40.938 +419987,246.65,43.481 +419988,245.95,45.865 +419989,247.08,38.239 +419990,246.18,40.95 +419991,245.37,43.469 +419992,244.62,45.83 +419993,245.91,38.281 +419994,244.95,40.962 +419995,244.09,43.455 +419996,243.3,45.794 +419997,244.73,38.325 +419998,243.72,40.975 +419999,242.81,43.442 +420000,241.97,45.756 +420001,243.55,38.371 +420002,242.49,40.989 +420003,241.53,43.427 +420004,240.65,45.717 +420005,242.36,38.42 +420006,241.25,41.004 +420007,240.25,43.412 +420008,239.33,45.676 +420009,241.18,38.471 +420010,240.02,41.019 +420011,238.97,43.397 +420012,238.01,45.633 +420013,240,38.523 +420014,238.79,41.036 +420015,237.69,43.381 +420016,236.69,45.588 +420017,238.81,38.578 +420018,237.56,41.052 +420019,236.42,43.365 +420020,235.37,45.542 +420021,237.63,38.634 +420022,236.32,41.07 +420023,235.14,43.348 +420024,234.05,45.494 +420025,236.44,38.693 +420026,235.09,41.088 +420027,233.86,43.331 +420028,232.73,45.445 +420029,235.25,38.753 +420030,233.85,41.107 +420031,232.58,43.313 +420032,231.41,45.394 +420033,234.06,38.815 +420034,232.62,41.127 +420035,231.31,43.295 +420036,230.09,45.342 +420037,232.86,38.879 +420038,231.38,41.147 +420039,230.03,43.276 +420040,228.78,45.288 +420041,231.67,38.945 +420042,230.15,41.168 +420043,228.76,43.257 +420044,227.47,45.232 +420045,230.47,39.012 +420046,228.91,41.189 +420047,227.48,43.237 +420048,226.15,45.176 +420049,229.28,39.082 +420050,227.68,41.211 +420051,226.21,43.217 +420052,224.84,45.117 +420053,228.08,39.152 +420054,226.44,41.234 +420055,224.93,43.197 +420056,223.53,45.058 +420057,226.88,39.225 +420058,225.2,41.257 +420059,223.66,43.176 +420060,222.22,44.997 +420061,225.67,39.298 +420062,223.96,41.281 +420063,222.38,43.155 +420064,220.91,44.934 +420065,224.47,39.374 +420066,222.72,41.306 +420067,221.11,43.133 +420068,219.6,44.87 +420069,223.26,39.451 +420070,221.48,41.331 +420071,219.84,43.111 +420072,218.29,44.805 +420073,222.05,39.529 +420074,220.24,41.356 +420075,218.56,43.089 +420076,216.99,44.739 +420077,220.84,39.608 +420078,219,41.382 +420079,217.29,43.066 +420080,215.69,44.671 +420081,219.63,39.689 +420082,217.76,41.409 +420083,216.02,43.043 +420084,214.38,44.602 +420085,218.42,39.771 +420086,216.52,41.436 +420087,214.75,43.02 +420088,213.08,44.532 +420089,217.2,39.854 +420090,215.28,41.463 +420091,213.48,42.996 +420092,211.78,44.461 +420093,215.98,39.939 +420094,214.04,41.491 +420095,212.21,42.972 +420096,210.48,44.389 +420097,214.76,40.024 +420098,212.79,41.52 +420099,210.94,42.948 +420100,209.19,44.315 +420101,213.54,40.111 +420102,211.55,41.549 +420103,209.67,42.923 +420104,207.89,44.24 +420105,212.32,40.199 +420106,210.31,41.578 +420107,208.4,42.898 +420108,206.6,44.165 +420109,211.09,40.287 +420110,209.06,41.608 +420111,207.14,42.873 +420112,205.3,44.088 +420113,209.86,40.376 +420114,207.81,41.638 +420115,205.87,42.848 +420116,204.01,44.011 +420117,208.63,40.467 +420118,206.57,41.669 +420119,204.6,42.822 +420120,202.72,43.932 +420121,207.4,40.558 +420122,205.32,41.699 +420123,203.34,42.797 +420124,201.43,43.853 +420125,206.17,40.65 +420126,204.07,41.731 +420127,202.07,42.771 +420128,200.15,43.773 +420129,204.93,40.742 +420130,202.83,41.762 +420131,200.81,42.745 +420132,198.86,43.691 +420133,203.69,40.835 +420134,201.58,41.794 +420135,199.54,42.718 +420136,197.58,43.61 +420137,202.45,40.929 +420138,200.33,41.826 +420139,198.28,42.692 +420140,196.3,43.527 +420141,201.21,41.023 +420142,199.08,41.859 +420143,197.02,42.665 +420144,195.02,43.444 +420145,199.97,41.118 +420146,197.83,41.892 +420147,195.75,42.638 +420148,193.74,43.36 +420149,198.72,41.214 +420150,196.57,41.925 +420151,194.49,42.612 +420152,192.46,43.275 +420153,197.47,41.309 +420154,195.32,41.958 +420155,193.23,42.585 +420156,191.19,43.19 +420157,196.22,41.405 +420158,194.07,41.991 +420159,191.97,42.558 +420160,189.92,43.104 +420161,194.97,41.501 +420162,192.82,42.025 +420163,190.71,42.53 +420164,188.65,43.018 +420165,193.71,41.598 +420166,191.56,42.059 +420167,189.45,42.503 +420168,187.38,42.931 +420169,192.46,41.695 +420170,190.31,42.093 +420171,188.19,42.476 +420172,186.11,42.844 +420173,191.2,41.792 +420174,189.05,42.127 +420175,186.93,42.449 +420176,184.84,42.756 +420177,189.94,41.889 +420178,187.79,42.162 +420179,185.67,42.422 +420180,183.58,42.669 +420181,188.68,41.986 +420182,186.54,42.196 +420183,184.42,42.394 +420184,182.32,42.58 +420185,187.41,42.083 +420186,185.28,42.231 +420187,183.16,42.367 +420188,181.06,42.492 +420189,186.15,42.18 +420190,184.02,42.266 +420191,181.91,42.34 +420192,179.8,42.403 +420193,184.88,42.277 +420194,182.76,42.3 +420195,180.65,42.313 +420196,178.55,42.315 +420197,183.61,42.373 +420198,181.5,42.335 +420199,179.4,42.286 +420200,177.29,42.226 +420201,182.34,42.47 +420202,180.24,42.37 +420203,178.14,42.259 +420204,176.04,42.137 +420205,181.06,42.566 +420206,178.98,42.405 +420207,176.89,42.232 +420208,174.79,42.048 +420209,179.79,42.662 +420210,177.72,42.44 +420211,175.64,42.206 +420212,173.54,41.959 +420213,178.51,42.758 +420214,176.46,42.475 +420215,174.39,42.179 +420216,172.29,41.87 +420217,177.23,42.854 +420218,175.19,42.51 +420219,173.13,42.153 +420220,171.05,41.782 +420221,175.95,42.949 +420222,173.93,42.545 +420223,171.88,42.126 +420224,169.81,41.693 +420225,174.67,43.043 +420226,172.67,42.58 +420227,170.63,42.1 +420228,168.57,41.605 +420229,173.39,43.137 +420230,171.4,42.614 +420231,169.38,42.074 +420232,167.33,41.517 +420233,172.1,43.231 +420234,170.14,42.649 +420235,168.14,42.049 +420236,166.09,41.429 +420237,170.81,43.324 +420238,168.87,42.684 +420239,166.89,42.023 +420240,164.86,41.342 +420241,169.52,43.416 +420242,167.6,42.718 +420243,165.64,41.998 +420244,163.63,41.255 +420245,168.23,43.508 +420246,166.34,42.753 +420247,164.39,41.973 +420248,162.4,41.169 +420249,166.94,43.599 +420250,165.07,42.787 +420251,163.15,41.949 +420252,161.17,41.083 +420253,165.65,43.689 +420254,163.8,42.821 +420255,161.9,41.924 +420256,159.94,40.997 +420257,164.35,43.778 +420258,162.53,42.855 +420259,160.66,41.9 +420260,158.72,40.913 +420261,163.05,43.867 +420262,161.26,42.889 +420263,159.41,41.876 +420264,157.49,40.829 +420265,161.75,43.955 +420266,159.99,42.922 +420267,158.17,41.853 +420268,156.27,40.745 +420269,160.45,44.042 +420270,158.72,42.956 +420271,156.92,41.83 +420272,155.05,40.663 +420273,159.15,44.128 +420274,157.45,42.989 +420275,155.68,41.807 +420276,153.84,40.581 +420277,157.85,44.213 +420278,156.18,43.022 +420279,154.44,41.785 +420280,152.62,40.5 +420281,156.54,44.297 +420282,154.9,43.054 +420283,153.2,41.763 +420284,151.41,40.42 +420285,155.24,44.38 +420286,153.63,43.087 +420287,151.96,41.742 +420288,150.2,40.341 +420289,153.93,44.462 +420290,152.36,43.119 +420291,150.71,41.721 +420292,148.99,40.263 +420293,152.62,44.543 +420294,151.08,43.151 +420295,149.47,41.7 +420296,147.78,40.186 +420297,151.31,44.622 +420298,149.81,43.182 +420299,148.23,41.68 +420300,146.58,40.11 +420301,150,44.701 +420302,148.53,43.213 +420303,147,41.66 +420304,145.37,40.036 +420305,148.69,44.778 +420306,147.26,43.244 +420307,145.76,41.641 +420308,144.17,39.962 +420309,147.38,44.855 +420310,145.98,43.275 +420311,144.52,41.623 +420312,142.97,39.89 +420313,146.06,44.929 +420314,144.71,43.305 +420315,143.28,41.605 +420316,141.77,39.819 +420317,144.75,45.003 +420318,143.43,43.335 +420319,142.04,41.587 +420320,140.57,39.749 +420321,143.43,45.075 +420322,142.15,43.364 +420323,140.81,41.57 +420324,139.38,39.681 +420325,142.11,45.146 +420326,140.87,43.393 +420327,139.57,41.553 +420328,138.18,39.615 +420329,140.79,45.216 +420330,139.6,43.422 +420331,138.33,41.537 +420332,136.99,39.549 +420333,139.47,45.284 +420334,138.32,43.45 +420335,137.1,41.522 +420336,135.8,39.486 +420337,138.15,45.351 +420338,137.04,43.478 +420339,135.86,41.507 +420340,134.61,39.423 +420341,136.83,45.417 +420342,135.76,43.506 +420343,134.63,41.493 +420344,133.42,39.363 +420345,135.51,45.48 +420346,134.48,43.533 +420347,133.39,41.479 +420348,132.24,39.304 +420349,134.19,45.543 +420350,133.2,43.559 +420351,132.16,41.466 +420352,131.05,39.247 +420353,132.86,45.604 +420354,131.92,43.585 +420355,130.92,41.454 +420356,129.87,39.192 +420357,131.54,45.663 +420358,130.64,43.611 +420359,129.69,41.443 +420360,128.68,39.138 +420361,130.21,45.721 +420362,129.36,43.636 +420363,128.46,41.431 +420364,127.5,39.086 +420365,128.89,45.778 +420366,128.08,43.661 +420367,127.22,41.421 +420368,126.32,39.036 +420369,127.56,45.832 +420370,126.79,43.685 +420371,125.99,41.411 +420372,125.14,38.988 +420373,126.23,45.885 +420374,125.51,43.709 +420375,124.76,41.402 +420376,123.96,38.942 +420377,124.9,45.937 +420378,124.23,43.732 +420379,123.53,41.394 +420380,122.79,38.898 +420381,123.58,45.987 +420382,122.95,43.755 +420383,122.3,41.387 +420384,121.61,38.856 +420385,122.25,46.035 +420386,121.67,43.777 +420387,121.06,41.38 +420388,120.44,38.816 +420389,120.92,46.082 +420390,120.38,43.799 +420391,119.83,41.374 +420392,119.26,38.777 +420393,119.59,46.127 +420394,119.1,43.82 +420395,118.6,41.368 +420396,118.09,38.742 +420397,118.26,46.17 +420398,117.82,43.841 +420399,117.37,41.363 +420400,116.91,38.708 +420401,116.92,46.211 +420402,116.53,43.861 +420403,116.14,41.359 +420404,115.74,38.676 +420405,115.59,46.251 +420406,115.25,43.88 +420407,114.91,41.356 +420408,114.57,38.647 +420409,114.26,46.289 +420410,113.96,43.899 +420411,113.68,41.354 +420412,113.4,38.619 +420413,112.93,46.325 +420414,112.68,43.918 +420415,112.44,41.352 +420416,112.23,38.594 +420417,111.6,46.36 +420418,111.4,43.936 +420419,111.21,41.351 +420420,111.06,38.571 +420421,110.27,46.393 +420422,110.11,43.953 +420423,109.98,41.351 +420424,109.89,38.551 +420425,108.93,46.424 +420426,108.83,43.97 +420427,108.75,41.352 +420428,108.72,38.533 +420429,107.6,46.453 +420430,107.54,43.986 +420431,107.52,41.353 +420432,107.55,38.517 +420433,106.27,46.48 +420434,106.26,44.002 +420435,106.29,41.355 +420436,106.38,38.503 +420437,104.93,46.506 +420438,104.97,44.017 +420439,105.06,41.358 +420440,105.21,38.492 +420441,103.6,46.53 +420442,103.69,44.031 +420443,103.83,41.362 +420444,104.04,38.483 +420445,102.27,46.552 +420446,102.41,44.045 +420447,102.6,41.366 +420448,102.87,38.476 +420449,100.94,46.572 +420450,101.12,44.058 +420451,101.37,41.372 +420452,101.7,38.472 +420453,99.604,46.591 +420454,99.836,44.071 +420455,100.14,41.378 +420456,100.53,38.47 +420457,98.271,46.607 +420458,98.552,44.083 +420459,98.904,41.385 +420460,99.358,38.471 +420461,96.939,46.622 +420462,97.267,44.095 +420463,97.673,41.393 +420464,98.187,38.474 +420465,95.606,46.635 +420466,95.982,44.106 +420467,96.441,41.401 +420468,97.016,38.479 +420469,94.274,46.646 +420470,94.698,44.116 +420471,95.21,41.411 +420472,95.844,38.487 +420473,92.943,46.656 +420474,93.414,44.126 +420475,93.978,41.421 +420476,94.672,38.498 +420477,91.611,46.663 +420478,92.129,44.135 +420479,92.746,41.432 +420480,93.499,38.51 +420481,90.28,46.669 +420482,90.845,44.144 +420483,91.513,41.443 +420484,92.325,38.525 +420485,88.949,46.673 +420486,89.561,44.152 +420487,90.281,41.456 +420488,91.151,38.543 +420489,87.619,46.675 +420490,88.277,44.16 +420491,89.048,41.469 +420492,89.976,38.562 +420493,86.289,46.675 +420494,86.993,44.166 +420495,87.815,41.483 +420496,88.8,38.585 +420497,84.959,46.674 +420498,85.709,44.173 +420499,86.581,41.498 +420500,87.623,38.609 +420501,83.63,46.671 +420502,84.426,44.179 +420503,85.347,41.514 +420504,86.445,38.636 +420505,82.302,46.666 +420506,83.142,44.184 +420507,84.113,41.53 +420508,85.265,38.665 +420509,80.974,46.659 +420510,81.859,44.188 +420511,82.879,41.548 +420512,84.085,38.697 +420513,79.647,46.65 +420514,80.576,44.192 +420515,81.644,41.566 +420516,82.904,38.731 +420517,78.32,46.64 +420518,79.293,44.196 +420519,80.409,41.584 +420520,81.721,38.767 +420521,76.994,46.628 +420522,78.011,44.199 +420523,79.174,41.604 +420524,80.537,38.806 +420525,75.669,46.614 +420526,76.729,44.201 +420527,77.938,41.624 +420528,79.352,38.846 +420529,74.344,46.599 +420530,75.446,44.203 +420531,76.701,41.645 +420532,78.165,38.889 +420533,73.021,46.582 +420534,74.165,44.204 +420535,75.464,41.667 +420536,76.977,38.934 +420537,71.698,46.563 +420538,72.883,44.205 +420539,74.227,41.69 +420540,75.787,38.982 +420541,70.376,46.542 +420542,71.602,44.205 +420543,72.989,41.713 +420544,74.596,39.031 +420545,69.054,46.52 +420546,70.321,44.205 +420547,71.751,41.737 +420548,73.403,39.083 +420549,67.734,46.496 +420550,69.04,44.204 +420551,70.512,41.762 +420552,72.208,39.137 +420553,66.415,46.47 +420554,67.76,44.203 +420555,69.273,41.787 +420556,71.012,39.193 +420557,65.096,46.443 +420558,66.48,44.201 +420559,68.033,41.814 +420560,69.814,39.251 +420561,63.779,46.414 +420562,65.201,44.198 +420563,66.793,41.84 +420564,68.614,39.311 +420565,62.463,46.384 +420566,63.922,44.195 +420567,65.552,41.868 +420568,67.413,39.373 +420569,61.148,46.352 +420570,62.643,44.192 +420571,64.311,41.896 +420572,66.209,39.437 +420573,59.833,46.318 +420574,61.364,44.188 +420575,63.069,41.925 +420576,65.004,39.502 +420577,58.52,46.283 +420578,60.086,44.184 +420579,61.826,41.955 +420580,63.797,39.57 +420581,57.209,46.247 +420582,58.808,44.179 +420583,60.583,41.985 +420584,62.588,39.639 +420585,55.898,46.209 +420586,57.531,44.174 +420587,59.339,42.016 +420588,61.377,39.711 +420589,54.588,46.169 +420590,56.254,44.168 +420591,58.095,42.047 +420592,60.163,39.784 +420593,53.28,46.128 +420594,54.978,44.162 +420595,56.85,42.079 +420596,58.948,39.859 +420597,51.973,46.086 +420598,53.702,44.155 +420599,55.604,42.112 +420600,57.731,39.935 +420601,50.668,46.042 +420602,52.427,44.148 +420603,54.358,42.145 +420604,56.512,40.013 +420605,49.363,45.997 +420606,51.152,44.141 +420607,53.111,42.179 +420608,55.291,40.093 +420609,48.061,45.95 +420610,49.877,44.133 +420611,51.864,42.213 +420612,54.067,40.174 +420613,46.759,45.903 +420614,48.603,44.125 +420615,50.615,42.248 +420616,52.842,40.257 +420617,45.459,45.853 +420618,47.329,44.116 +420619,49.366,42.284 +420620,51.614,40.341 +420621,44.16,45.803 +420622,46.056,44.107 +420623,48.117,42.32 +420624,50.384,40.426 +420625,42.863,45.751 +420626,44.784,44.098 +420627,46.866,42.356 +420628,49.153,40.513 +420629,41.567,45.699 +420630,43.511,44.088 +420631,45.615,42.394 +420632,47.919,40.602 +420633,40.273,45.645 +420634,42.24,44.078 +420635,44.364,42.431 +420636,46.682,40.691 +420637,38.981,45.589 +420638,40.969,44.068 +420639,43.111,42.469 +420640,45.444,40.782 +420641,37.69,45.533 +420642,39.698,44.057 +420643,41.858,42.508 +420644,44.203,40.874 +420645,36.4,45.476 +420646,38.428,44.046 +420647,40.604,42.546 +420648,42.961,40.967 +420649,35.112,45.417 +420650,37.159,44.035 +420651,39.35,42.586 +420652,41.716,41.061 +420653,33.826,45.358 +420654,35.89,44.023 +420655,38.094,42.626 +420656,40.469,41.156 +420657,32.542,45.297 +420658,34.621,44.012 +420659,36.838,42.666 +420660,39.219,41.253 +420661,31.259,45.236 +420662,33.354,44 +420663,35.582,42.706 +420664,37.968,41.35 +420665,29.978,45.174 +420666,32.086,43.987 +420667,34.324,42.747 +420668,36.714,41.448 +420669,28.698,45.11 +420670,30.82,43.975 +420671,33.066,42.789 +420672,35.459,41.546 +420673,27.42,45.046 +420674,29.554,43.962 +420675,31.807,42.83 +420676,34.201,41.646 +420677,26.144,44.981 +420678,28.288,43.949 +420679,30.547,42.872 +420680,32.941,41.746 +420681,24.87,44.916 +420682,27.023,43.936 +420683,29.287,42.915 +420684,31.679,41.847 +420685,23.598,44.849 +420686,25.759,43.923 +420687,28.026,42.957 +420688,30.415,41.949 +420689,22.327,44.782 +420690,24.495,43.909 +420691,26.764,43 +420692,29.148,42.051 +420693,21.058,44.714 +420694,23.232,43.896 +420695,25.501,43.043 +420696,27.88,42.154 +420697,19.791,44.646 +420698,21.969,43.882 +420699,24.238,43.086 +420700,26.609,42.257 +420701,18.526,44.577 +420702,20.707,43.868 +420703,22.974,43.13 +420704,25.337,42.361 +420705,17.263,44.507 +420706,19.446,43.854 +420707,21.709,43.174 +420708,24.062,42.465 +420709,16.002,44.437 +420710,18.185,43.84 +420711,20.443,43.218 +420712,22.785,42.57 +420713,14.742,44.367 +420714,16.924,43.826 +420715,19.177,43.262 +420716,21.507,42.674 +420717,13.485,44.296 +420718,15.665,43.812 +420719,17.91,43.307 +420720,20.226,42.779 +420721,12.229,44.224 +420722,14.406,43.797 +420723,16.642,43.351 +420724,18.944,42.884 +420725,10.975,44.153 +420726,13.147,43.783 +420727,15.374,43.396 +420728,17.659,42.99 +420729,9.7231,44.081 +420730,11.889,43.769 +420731,14.104,43.441 +420732,16.373,43.095 +420733,8.4731,44.008 +420734,10.632,43.755 +420735,12.834,43.486 +420736,15.084,43.201 +420737,7.225,43.936 +420738,9.375,43.74 +420739,11.564,43.531 +420740,13.794,43.306 +420741,5.9789,43.863 +420742,8.1189,43.726 +420743,10.292,43.576 +420744,12.502,43.411 +420745,4.7347,43.79 +420746,6.8633,43.712 +420747,9.0204,43.621 +420748,11.208,43.517 +420749,3.4924,43.717 +420750,5.6082,43.698 +420751,7.7477,43.666 +420752,9.9124,43.622 +420753,2.252,43.644 +420754,4.3538,43.684 +420755,6.4743,43.712 +420756,8.6149,43.727 +420757,1.0135,43.571 +420758,3.0999,43.67 +420759,5.2003,43.757 +420760,7.3157,43.832 +420761,359.78,43.499 +420762,1.8465,43.656 +420763,3.9255,43.802 +420764,6.0147,43.936 +420765,358.54,43.426 +420766,0.59377,43.642 +420767,2.6501,43.847 +420768,4.7121,44.04 +420769,357.31,43.353 +420770,359.34,43.629 +420771,1.374,43.893 +420772,3.4078,44.144 +420773,356.08,43.28 +420774,358.09,43.615 +420775,0.097317,43.938 +420776,2.1019,44.248 +420777,354.85,43.208 +420778,356.84,43.602 +420779,358.82,43.983 +420780,0.79434,44.351 +420781,353.62,43.136 +420782,355.59,43.589 +420783,357.54,44.028 +420784,359.49,44.453 +420785,352.4,43.064 +420786,354.34,43.576 +420787,356.26,44.073 +420788,358.17,44.555 +420789,351.17,42.993 +420790,353.09,43.563 +420791,354.98,44.118 +420792,356.86,44.657 +420793,349.95,42.922 +420794,351.84,43.55 +420795,353.7,44.162 +420796,355.55,44.758 +420797,348.73,42.852 +420798,350.59,43.538 +420799,352.42,44.207 +420800,354.23,44.858 +420801,347.52,42.782 +420802,349.34,43.526 +420803,351.14,44.252 +420804,352.92,44.957 +420805,346.3,42.712 +420806,348.1,43.514 +420807,349.86,44.296 +420808,351.6,45.056 +420809,345.09,42.643 +420810,346.85,43.503 +420811,348.58,44.34 +420812,350.28,45.154 +420813,343.87,42.575 +420814,345.6,43.492 +420815,347.3,44.384 +420816,348.96,45.251 +420817,342.66,42.507 +420818,344.36,43.481 +420819,346.01,44.428 +420820,347.64,45.348 +420821,341.45,42.441 +420822,343.11,43.47 +420823,344.73,44.471 +420824,346.31,45.443 +420825,340.25,42.375 +420826,341.86,43.46 +420827,343.44,44.514 +420828,344.99,45.538 +420829,339.04,42.309 +420830,340.62,43.45 +420831,342.16,44.557 +420832,343.66,45.632 +420833,337.84,42.245 +420834,339.38,43.441 +420835,340.87,44.6 +420836,342.34,45.724 +420837,336.64,42.182 +420838,338.13,43.432 +420839,339.59,44.643 +420840,341.01,45.816 +420841,335.43,42.119 +420842,336.89,43.423 +420843,338.3,44.685 +420844,339.68,45.907 +420845,334.24,42.058 +420846,335.65,43.415 +420847,337.02,44.727 +420848,338.35,45.996 +420849,333.04,41.997 +420850,334.4,43.407 +420851,335.73,44.769 +420852,337.02,46.085 +420853,331.84,41.938 +420854,333.16,43.4 +420855,334.44,44.81 +420856,335.69,46.172 +420857,330.65,41.879 +420858,331.92,43.393 +420859,333.15,44.851 +420860,334.35,46.258 +420861,329.45,41.822 +420862,330.68,43.386 +420863,331.86,44.892 +420864,333.02,46.343 +420865,328.26,41.767 +420866,329.43,43.38 +420867,330.57,44.932 +420868,331.69,46.427 +420869,327.07,41.712 +420870,328.19,43.374 +420871,329.29,44.972 +420872,330.35,46.51 +420873,325.88,41.659 +420874,326.95,43.369 +420875,328,45.011 +420876,329.01,46.591 +420877,324.69,41.607 +420878,325.71,43.365 +420879,326.71,45.051 +420880,327.68,46.671 +420881,323.51,41.556 +420882,324.47,43.361 +420883,325.41,45.089 +420884,326.34,46.75 +420885,322.32,41.507 +420886,323.23,43.357 +420887,324.12,45.128 +420888,325,46.827 +420889,321.14,41.459 +420890,321.99,43.354 +420891,322.83,45.166 +420892,323.66,46.903 +420893,319.95,41.413 +420894,320.75,43.352 +420895,321.54,45.203 +420896,322.32,46.977 +420897,318.77,41.369 +420898,319.51,43.35 +420899,320.25,45.241 +420900,320.98,47.05 +420901,317.59,41.326 +420902,318.27,43.349 +420903,318.96,45.277 +420904,319.64,47.122 +420905,316.41,41.284 +420906,317.04,43.348 +420907,317.66,45.313 +420908,318.3,47.192 +420909,315.23,41.244 +420910,315.8,43.348 +420911,316.37,45.349 +420912,316.95,47.261 +420913,314.05,41.206 +420914,314.56,43.348 +420915,315.08,45.385 +420916,315.61,47.328 +420917,312.87,41.17 +420918,313.32,43.349 +420919,313.79,45.419 +420920,314.27,47.394 +420921,311.69,41.135 +420922,312.08,43.351 +420923,312.49,45.454 +420924,312.92,47.458 +420925,310.52,41.102 +420926,310.84,43.353 +420927,311.2,45.488 +420928,311.58,47.521 +420929,309.34,41.071 +420930,309.6,43.356 +420931,309.91,45.521 +420932,310.24,47.582 +420933,308.16,41.042 +420934,308.37,43.36 +420935,308.61,45.554 +420936,308.89,47.641 +420937,306.99,41.015 +420938,307.13,43.364 +420939,307.32,45.586 +420940,307.55,47.699 +420941,305.81,40.99 +420942,305.89,43.369 +420943,306.02,45.618 +420944,306.2,47.755 +420945,304.64,40.966 +420946,304.65,43.375 +420947,304.73,45.65 +420948,304.86,47.81 +420949,303.46,40.945 +420950,303.41,43.381 +420951,303.43,45.68 +420952,303.51,47.862 +420953,302.29,40.925 +420954,302.17,43.388 +420955,302.14,45.711 +420956,302.17,47.914 +420957,301.11,40.908 +420958,300.94,43.396 +420959,300.84,45.74 +420960,300.82,47.963 +420961,299.94,40.892 +420962,299.7,43.404 +420963,299.55,45.77 +420964,299.47,48.011 +420965,298.77,40.879 +420966,298.46,43.413 +420967,298.25,45.798 +420968,298.13,48.057 +420969,297.59,40.867 +420970,297.22,43.423 +420971,296.96,45.826 +420972,296.78,48.102 +420973,296.42,40.858 +420974,295.98,43.433 +420975,295.67,45.854 +420976,295.44,48.145 +420977,295.24,40.851 +420978,294.74,43.444 +420979,294.37,45.881 +420980,294.09,48.186 +420981,294.07,40.846 +420982,293.5,43.456 +420983,293.08,45.907 +420984,292.75,48.225 +420985,292.89,40.843 +420986,292.26,43.469 +420987,291.78,45.933 +420988,291.4,48.263 +420989,291.71,40.842 +420990,291.02,43.482 +420991,290.49,45.959 +420992,290.06,48.299 +420993,290.54,40.843 +420994,289.79,43.496 +420995,289.19,45.983 +420996,288.71,48.333 +420997,289.36,40.847 +420998,288.55,43.511 +420999,287.9,46.008 +421000,287.37,48.365 +421001,288.18,40.853 +421002,287.31,43.526 +421003,286.6,46.031 +421004,286.02,48.396 +421005,287,40.861 +421006,286.06,43.542 +421007,285.31,46.054 +421008,284.68,48.425 +421009,285.83,40.871 +421010,284.82,43.559 +421011,284.01,46.077 +421012,283.34,48.452 +421013,284.65,40.883 +421014,283.58,43.577 +421015,282.72,46.099 +421016,281.99,48.477 +421017,283.46,40.897 +421018,282.34,43.595 +421019,281.42,46.12 +421020,280.65,48.501 +421021,282.28,40.914 +421022,281.1,43.614 +421023,280.13,46.141 +421024,279.31,48.523 +421025,281.1,40.933 +421026,279.86,43.634 +421027,278.83,46.161 +421028,277.97,48.543 +421029,279.92,40.954 +421030,278.62,43.655 +421031,277.54,46.181 +421032,276.63,48.561 +421033,278.73,40.977 +421034,277.37,43.676 +421035,276.25,46.2 +421036,275.29,48.578 +421037,277.54,41.003 +421038,276.13,43.698 +421039,274.95,46.218 +421040,273.95,48.593 +421041,276.36,41.03 +421042,274.89,43.721 +421043,273.66,46.236 +421044,272.61,48.606 +421045,275.17,41.06 +421046,273.64,43.744 +421047,272.37,46.253 +421048,271.27,48.618 +421049,273.98,41.092 +421050,272.4,43.768 +421051,271.07,46.27 +421052,269.93,48.628 +421053,272.78,41.126 +421054,271.15,43.793 +421055,269.78,46.286 +421056,268.6,48.636 +421057,271.59,41.163 +421058,269.91,43.819 +421059,268.49,46.302 +421060,267.26,48.642 +421061,270.4,41.201 +421062,268.66,43.845 +421063,267.19,46.317 +421064,265.92,48.647 +421065,269.2,41.242 +421066,267.42,43.872 +421067,265.9,46.331 +421068,264.59,48.649 +421069,268,41.285 +421070,266.17,43.9 +421071,264.61,46.345 +421072,263.26,48.651 +421073,266.8,41.329 +421074,264.92,43.928 +421075,263.32,46.359 +421076,261.92,48.65 +421077,265.6,41.376 +421078,263.67,43.957 +421079,262.03,46.372 +421080,260.59,48.648 +421081,264.4,41.425 +421082,262.43,43.987 +421083,260.74,46.384 +421084,259.26,48.644 +421085,263.19,41.476 +421086,261.18,44.017 +421087,259.45,46.396 +421088,257.93,48.639 +421089,261.99,41.529 +421090,259.93,44.049 +421091,258.16,46.407 +421092,256.6,48.632 +421093,260.78,41.584 +421094,258.68,44.08 +421095,256.87,46.418 +421096,255.28,48.624 +421097,259.57,41.641 +421098,257.43,44.113 +421099,255.58,46.428 +421100,253.95,48.613 +421101,258.35,41.7 +421102,256.17,44.146 +421103,254.29,46.438 +421104,252.62,48.602 +421105,257.14,41.761 +421106,254.92,44.18 +421107,253,46.447 +421108,251.3,48.588 +421109,255.92,41.823 +421110,253.67,44.214 +421111,251.71,46.456 +421112,249.98,48.573 +421113,254.7,41.888 +421114,252.42,44.249 +421115,250.42,46.464 +421116,248.65,48.557 +421117,253.48,41.954 +421118,251.16,44.285 +421119,249.14,46.472 +421120,247.33,48.539 +421121,252.26,42.022 +421122,249.91,44.321 +421123,247.85,46.479 +421124,246.01,48.52 +421125,251.03,42.092 +421126,248.65,44.358 +421127,246.56,46.486 +421128,244.7,48.499 +421129,249.81,42.164 +421130,247.4,44.395 +421131,245.28,46.492 +421132,243.38,48.476 +421133,248.58,42.237 +421134,246.14,44.433 +421135,243.99,46.498 +421136,242.06,48.453 +421137,247.34,42.312 +421138,244.88,44.472 +421139,242.71,46.504 +421140,240.75,48.427 +421141,246.11,42.389 +421142,243.62,44.511 +421143,241.42,46.509 +421144,239.44,48.401 +421145,244.87,42.467 +421146,242.36,44.55 +421147,240.14,46.513 +421148,238.13,48.373 +421149,243.64,42.547 +421150,241.1,44.591 +421151,238.85,46.517 +421152,236.82,48.344 +421153,242.39,42.628 +421154,239.84,44.631 +421155,237.57,46.521 +421156,235.51,48.313 +421157,241.15,42.711 +421158,238.58,44.673 +421159,236.29,46.524 +421160,234.2,48.281 +421161,239.91,42.795 +421162,237.32,44.714 +421163,235,46.527 +421164,232.9,48.248 +421165,238.66,42.88 +421166,236.06,44.757 +421167,233.72,46.53 +421168,231.59,48.214 +421169,237.41,42.967 +421170,234.79,44.8 +421171,232.44,46.532 +421172,230.29,48.178 +421173,236.16,43.056 +421174,233.53,44.843 +421175,231.16,46.534 +421176,228.99,48.141 +421177,234.9,43.145 +421178,232.27,44.886 +421179,229.88,46.535 +421180,227.69,48.103 +421181,233.64,43.236 +421182,231,44.931 +421183,228.6,46.536 +421184,226.39,48.064 +421185,232.39,43.328 +421186,229.73,44.975 +421187,227.32,46.537 +421188,225.1,48.024 +421189,231.12,43.421 +421190,228.47,45.02 +421191,226.04,46.537 +421192,223.8,47.983 +421193,229.86,43.515 +421194,227.2,45.066 +421195,224.76,46.537 +421196,222.51,47.94 +421197,228.59,43.61 +421198,225.93,45.111 +421199,223.49,46.537 +421200,221.22,47.897 +421201,227.33,43.706 +421202,224.66,45.157 +421203,222.21,46.537 +421204,219.93,47.853 +421205,226.06,43.804 +421206,223.39,45.204 +421207,220.93,46.536 +421208,218.65,47.807 +421209,224.78,43.902 +421210,222.12,45.251 +421211,219.66,46.535 +421212,217.36,47.761 +421213,223.51,44.001 +421214,220.85,45.298 +421215,218.38,46.534 +421216,216.08,47.714 +421217,222.23,44.101 +421218,219.57,45.346 +421219,217.11,46.532 +421220,214.8,47.666 +421221,220.95,44.201 +421222,218.3,45.394 +421223,215.83,46.53 +421224,213.52,47.617 +421225,219.67,44.303 +421226,217.03,45.442 +421227,214.56,46.528 +421228,212.24,47.568 +421229,218.38,44.405 +421230,215.75,45.49 +421231,213.29,46.526 +421232,210.96,47.517 +421233,217.1,44.507 +421234,214.48,45.539 +421235,212.01,46.524 +421236,209.69,47.466 +421237,215.81,44.611 +421238,213.2,45.588 +421239,210.74,46.521 +421240,208.41,47.415 +421241,214.52,44.714 +421242,211.92,45.637 +421243,209.47,46.518 +421244,207.14,47.362 +421245,213.23,44.819 +421246,210.64,45.687 +421247,208.2,46.516 +421248,205.87,47.309 +421249,211.93,44.924 +421250,209.36,45.736 +421251,206.93,46.513 +421252,204.61,47.256 +421253,210.64,45.029 +421254,208.09,45.786 +421255,205.66,46.509 +421256,203.34,47.201 +421257,209.34,45.134 +421258,206.8,45.836 +421259,204.39,46.506 +421260,202.08,47.147 +421261,208.04,45.24 +421262,205.52,45.887 +421263,203.12,46.503 +421264,200.82,47.092 +421265,206.73,45.347 +421266,204.24,45.937 +421267,201.85,46.499 +421268,199.56,47.036 +421269,205.43,45.453 +421270,202.96,45.987 +421271,200.59,46.496 +421272,198.3,46.98 +421273,204.12,45.56 +421274,201.68,46.038 +421275,199.32,46.492 +421276,197.04,46.924 +421277,202.82,45.666 +421278,200.39,46.089 +421279,198.05,46.489 +421280,195.79,46.868 +421281,201.51,45.773 +421282,199.11,46.14 +421283,196.79,46.485 +421284,194.54,46.811 +421285,200.19,45.88 +421286,197.82,46.191 +421287,195.52,46.481 +421288,193.29,46.754 +421289,198.88,45.987 +421290,196.54,46.242 +421291,194.26,46.478 +421292,192.04,46.697 +421293,197.56,46.094 +421294,195.25,46.293 +421295,192.99,46.474 +421296,190.79,46.639 +421297,196.25,46.201 +421298,193.96,46.344 +421299,191.73,46.47 +421300,189.55,46.582 +421301,194.93,46.308 +421302,192.67,46.395 +421303,190.47,46.467 +421304,188.31,46.524 +421305,193.61,46.414 +421306,191.38,46.446 +421307,189.21,46.463 +421308,187.07,46.466 +421309,192.28,46.521 +421310,190.09,46.497 +421311,187.94,46.459 +421312,185.83,46.409 +421313,190.96,46.627 +421314,188.8,46.548 +421315,186.68,46.456 +421316,184.59,46.351 +421317,189.63,46.732 +421318,187.51,46.599 +421319,185.42,46.453 +421320,183.35,46.294 +421321,188.31,46.838 +421322,186.22,46.65 +421323,184.16,46.449 +421324,182.12,46.237 +421325,186.98,46.943 +421326,184.93,46.701 +421327,182.9,46.446 +421328,180.89,46.179 +421329,185.65,47.048 +421330,183.64,46.752 +421331,181.64,46.443 +421332,179.66,46.123 +421333,184.31,47.152 +421334,182.34,46.803 +421335,180.38,46.44 +421336,178.43,46.066 +421337,182.98,47.256 +421338,181.05,46.854 +421339,179.12,46.438 +421340,177.21,46.01 +421341,181.65,47.359 +421342,179.75,46.904 +421343,177.87,46.435 +421344,175.98,45.954 +421345,180.31,47.462 +421346,178.46,46.955 +421347,176.61,46.433 +421348,174.76,45.898 +421349,178.97,47.564 +421350,177.16,47.005 +421351,175.35,46.431 +421352,173.54,45.843 +421353,177.63,47.665 +421354,175.87,47.055 +421355,174.1,46.429 +421356,172.32,45.788 +421357,176.29,47.766 +421358,174.57,47.105 +421359,172.84,46.427 +421360,171.1,45.734 +421361,174.95,47.866 +421362,173.27,47.155 +421363,171.58,46.426 +421364,169.89,45.68 +421365,173.61,47.965 +421366,171.97,47.204 +421367,170.33,46.425 +421368,168.67,45.627 +421369,172.27,48.064 +421370,170.68,47.254 +421371,169.07,46.424 +421372,167.46,45.575 +421373,170.92,48.162 +421374,169.38,47.303 +421375,167.82,46.423 +421376,166.25,45.523 +421377,169.58,48.258 +421378,168.08,47.352 +421379,166.57,46.423 +421380,165.04,45.472 +421381,168.23,48.354 +421382,166.78,47.4 +421383,165.31,46.423 +421384,163.83,45.421 +421385,166.88,48.449 +421386,165.48,47.449 +421387,164.06,46.423 +421388,162.62,45.372 +421389,165.53,48.544 +421390,164.18,47.497 +421391,162.81,46.423 +421392,161.42,45.323 +421393,164.18,48.637 +421394,162.88,47.545 +421395,161.55,46.424 +421396,160.21,45.275 +421397,162.83,48.729 +421398,161.57,47.592 +421399,160.3,46.426 +421400,159.01,45.229 +421401,161.48,48.82 +421402,160.27,47.64 +421403,159.05,46.427 +421404,157.81,45.183 +421405,160.13,48.91 +421406,158.97,47.686 +421407,157.8,46.429 +421408,156.61,45.138 +421409,158.78,48.999 +421410,157.67,47.733 +421411,156.55,46.432 +421412,155.41,45.094 +421413,157.42,49.086 +421414,156.36,47.779 +421415,155.29,46.435 +421416,154.21,45.051 +421417,156.07,49.173 +421418,155.06,47.825 +421419,154.04,46.438 +421420,153.02,45.009 +421421,154.71,49.259 +421422,153.76,47.871 +421423,152.79,46.441 +421424,151.82,44.969 +421425,153.36,49.343 +421426,152.45,47.916 +421427,151.54,46.445 +421428,150.63,44.929 +421429,152,49.426 +421430,151.15,47.961 +421431,150.29,46.45 +421432,149.44,44.891 +421433,150.64,49.507 +421434,149.84,48.005 +421435,149.04,46.455 +421436,148.24,44.854 +421437,149.28,49.588 +421438,148.54,48.049 +421439,147.79,46.46 +421440,147.05,44.818 +421441,147.93,49.667 +421442,147.23,48.093 +421443,146.54,46.466 +421444,145.86,44.784 +421445,146.57,49.745 +421446,145.92,48.136 +421447,145.29,46.473 +421448,144.67,44.751 +421449,145.21,49.821 +421450,144.62,48.179 +421451,144.04,46.48 +421452,143.48,44.719 +421453,143.85,49.897 +421454,143.31,48.221 +421455,142.79,46.487 +421456,142.3,44.689 +421457,142.49,49.97 +421458,142.01,48.263 +421459,141.54,46.495 +421460,141.11,44.66 +421461,141.13,50.043 +421462,140.7,48.305 +421463,140.29,46.503 +421464,139.92,44.633 +421465,139.77,50.114 +421466,139.39,48.346 +421467,139.05,46.512 +421468,138.74,44.607 +421469,138.41,50.183 +421470,138.09,48.386 +421471,137.8,46.522 +421472,137.55,44.583 +421473,137.05,50.251 +421474,136.78,48.426 +421475,136.55,46.532 +421476,136.36,44.561 +421477,135.69,50.317 +421478,135.47,48.466 +421479,135.3,46.542 +421480,135.18,44.539 +421481,134.33,50.383 +421482,134.16,48.505 +421483,134.05,46.554 +421484,133.99,44.52 +421485,132.96,50.446 +421486,132.86,48.544 +421487,132.8,46.565 +421488,132.81,44.502 +421489,131.6,50.508 +421490,131.55,48.582 +421491,131.55,46.577 +421492,131.63,44.486 +421493,130.24,50.569 +421494,130.24,48.619 +421495,130.3,46.59 +421496,130.44,44.472 +421497,128.88,50.627 +421498,128.93,48.657 +421499,129.05,46.604 +421500,129.26,44.459 +421501,127.52,50.685 +421502,127.62,48.693 +421503,127.8,46.618 +421504,128.07,44.448 +421505,126.16,50.741 +421506,126.32,48.729 +421507,126.55,46.632 +421508,126.89,44.439 +421509,124.8,50.795 +421510,125.01,48.765 +421511,125.3,46.648 +421512,125.7,44.431 +421513,123.44,50.847 +421514,123.7,48.8 +421515,124.05,46.663 +421516,124.52,44.426 +421517,122.07,50.898 +421518,122.39,48.835 +421519,122.8,46.68 +421520,123.34,44.422 +421521,120.71,50.948 +421522,121.08,48.869 +421523,121.55,46.697 +421524,122.15,44.42 +421525,119.35,50.995 +421526,119.78,48.902 +421527,120.3,46.715 +421528,120.97,44.42 +421529,117.99,51.042 +421530,118.47,48.935 +421531,119.05,46.733 +421532,119.78,44.422 +421533,116.63,51.086 +421534,117.16,48.967 +421535,117.8,46.752 +421536,118.59,44.425 +421537,115.27,51.129 +421538,115.85,48.999 +421539,116.55,46.771 +421540,117.41,44.431 +421541,113.92,51.17 +421542,114.54,49.031 +421543,115.3,46.792 +421544,116.22,44.438 +421545,112.56,51.21 +421546,113.24,49.061 +421547,114.05,46.812 +421548,115.03,44.447 +421549,111.2,51.248 +421550,111.93,49.092 +421551,112.8,46.834 +421552,113.84,44.459 +421553,109.84,51.284 +421554,110.62,49.121 +421555,111.54,46.856 +421556,112.65,44.472 +421557,108.48,51.319 +421558,109.31,49.15 +421559,110.29,46.879 +421560,111.46,44.487 +421561,107.13,51.352 +421562,108.01,49.179 +421563,109.04,46.902 +421564,110.27,44.504 +421565,105.77,51.383 +421566,106.7,49.207 +421567,107.79,46.926 +421568,109.08,44.523 +421569,104.42,51.413 +421570,105.39,49.234 +421571,106.53,46.95 +421572,107.88,44.544 +421573,103.06,51.441 +421574,104.09,49.261 +421575,105.28,46.976 +421576,106.69,44.567 +421577,101.71,51.467 +421578,102.78,49.288 +421579,104.02,47.002 +421580,105.49,44.591 +421581,100.35,51.492 +421582,101.47,49.314 +421583,102.77,47.028 +421584,104.29,44.618 +421585,99.002,51.515 +421586,100.17,49.339 +421587,101.51,47.055 +421588,103.1,44.647 +421589,97.651,51.536 +421590,98.862,49.363 +421591,100.26,47.083 +421592,101.9,44.677 +421593,96.3,51.556 +421594,97.556,49.388 +421595,99.002,47.112 +421596,100.69,44.71 +421597,94.95,51.574 +421598,96.251,49.411 +421599,97.745,47.141 +421600,99.492,44.744 +421601,93.6,51.591 +421602,94.946,49.434 +421603,96.488,47.17 +421604,98.288,44.781 +421605,92.252,51.606 +421606,93.641,49.457 +421607,95.231,47.201 +421608,97.082,44.819 +421609,90.905,51.619 +421610,92.336,49.479 +421611,93.972,47.232 +421612,95.874,44.859 +421613,89.559,51.631 +421614,91.032,49.5 +421615,92.714,47.263 +421616,94.665,44.901 +421617,88.213,51.641 +421618,89.728,49.521 +421619,91.454,47.295 +421620,93.454,44.945 +421621,86.869,51.649 +421622,88.425,49.542 +421623,90.195,47.328 +421624,92.242,44.991 +421625,85.526,51.656 +421626,87.122,49.561 +421627,88.934,47.362 +421628,91.027,45.039 +421629,84.183,51.662 +421630,85.819,49.581 +421631,87.673,47.396 +421632,89.811,45.088 +421633,82.842,51.666 +421634,84.517,49.6 +421635,86.412,47.43 +421636,88.593,45.139 +421637,81.502,51.668 +421638,83.214,49.618 +421639,85.149,47.465 +421640,87.373,45.193 +421641,80.164,51.669 +421642,81.913,49.636 +421643,83.886,47.501 +421644,86.151,45.247 +421645,78.826,51.668 +421646,80.611,49.653 +421647,82.623,47.537 +421648,84.927,45.304 +421649,77.49,51.666 +421650,79.311,49.67 +421651,81.359,47.574 +421652,83.701,45.363 +421653,76.155,51.662 +421654,78.01,49.686 +421655,80.094,47.612 +421656,82.473,45.423 +421657,74.821,51.657 +421658,76.71,49.702 +421659,78.829,47.65 +421660,81.243,45.484 +421661,73.489,51.651 +421662,75.41,49.717 +421663,77.563,47.688 +421664,80.011,45.548 +421665,72.157,51.643 +421666,74.111,49.732 +421667,76.296,47.728 +421668,78.777,45.613 +421669,70.828,51.633 +421670,72.813,49.747 +421671,75.028,47.767 +421672,77.54,45.68 +421673,69.499,51.622 +421674,71.514,49.761 +421675,73.76,47.807 +421676,76.302,45.748 +421677,68.172,51.61 +421678,70.216,49.774 +421679,72.491,47.848 +421680,75.061,45.818 +421681,66.847,51.597 +421682,68.919,49.787 +421683,71.222,47.889 +421684,73.818,45.89 +421685,65.523,51.582 +421686,67.622,49.8 +421687,69.951,47.931 +421688,72.572,45.963 +421689,64.2,51.566 +421690,66.326,49.812 +421691,68.68,47.973 +421692,71.325,46.037 +421693,62.879,51.548 +421694,65.03,49.824 +421695,67.408,48.016 +421696,70.075,46.113 +421697,61.559,51.53 +421698,63.735,49.835 +421699,66.136,48.059 +421700,68.823,46.19 +421701,60.241,51.51 +421702,62.44,49.846 +421703,64.863,48.103 +421704,67.568,46.269 +421705,58.925,51.488 +421706,61.146,49.856 +421707,63.589,48.147 +421708,66.312,46.349 +421709,57.61,51.466 +421710,59.852,49.866 +421711,62.314,48.192 +421712,65.053,46.43 +421713,56.297,51.442 +421714,58.558,49.876 +421715,61.038,48.237 +421716,63.791,46.513 +421717,54.985,51.418 +421718,57.266,49.885 +421719,59.762,48.282 +421720,62.528,46.597 +421721,53.675,51.392 +421722,55.974,49.894 +421723,58.485,48.328 +421724,61.262,46.682 +421725,52.367,51.365 +421726,54.682,49.903 +421727,57.207,48.374 +421728,59.993,46.768 +421729,51.06,51.337 +421730,53.391,49.911 +421731,55.928,48.421 +421732,58.723,46.856 +421733,49.755,51.308 +421734,52.1,49.919 +421735,54.649,48.468 +421736,57.45,46.944 +421737,48.452,51.278 +421738,50.81,49.927 +421739,53.369,48.515 +421740,56.174,47.034 +421741,47.15,51.247 +421742,49.521,49.934 +421743,52.088,48.563 +421744,54.897,47.125 +421745,45.85,51.215 +421746,48.232,49.941 +421747,50.806,48.611 +421748,53.617,47.216 +421749,44.552,51.182 +421750,46.944,49.948 +421751,49.524,48.66 +421752,52.334,47.309 +421753,43.256,51.148 +421754,45.656,49.955 +421755,48.24,48.708 +421756,51.05,47.402 +421757,41.962,51.113 +421758,44.369,49.961 +421759,46.956,48.757 +421760,49.763,47.497 +421761,40.669,51.078 +421762,43.082,49.967 +421763,45.672,48.807 +421764,48.474,47.592 +421765,39.378,51.041 +421766,41.796,49.972 +421767,44.386,48.857 +421768,47.183,47.688 +421769,38.089,51.004 +421770,40.511,49.978 +421771,43.1,48.906 +421772,45.889,47.784 +421773,36.802,50.966 +421774,39.226,49.983 +421775,41.812,48.957 +421776,44.593,47.882 +421777,35.516,50.928 +421778,37.942,49.988 +421779,40.525,49.007 +421780,43.295,47.98 +421781,34.233,50.888 +421782,36.658,49.993 +421783,39.236,49.058 +421784,41.995,48.079 +421785,32.951,50.848 +421786,35.375,49.997 +421787,37.946,49.109 +421788,40.693,48.178 +421789,31.671,50.808 +421790,34.092,50.002 +421791,36.656,49.16 +421792,39.388,48.278 +421793,30.393,50.767 +421794,32.81,50.006 +421795,35.365,49.211 +421796,38.082,48.378 +421797,29.117,50.725 +421798,31.529,50.01 +421799,34.073,49.263 +421800,36.773,48.479 +421801,27.843,50.683 +421802,30.248,50.014 +421803,32.781,49.314 +421804,35.462,48.58 +421805,26.57,50.64 +421806,28.968,50.018 +421807,31.488,49.366 +421808,34.149,48.682 +421809,25.3,50.597 +421810,27.688,50.021 +421811,30.194,49.418 +421812,32.834,48.784 +421813,24.031,50.554 +421814,26.409,50.025 +421815,28.899,49.47 +421816,31.517,48.886 +421817,22.764,50.51 +421818,25.131,50.028 +421819,27.604,49.522 +421820,30.198,48.989 +421821,21.499,50.466 +421822,23.853,50.032 +421823,26.307,49.575 +421824,28.878,49.091 +421825,20.236,50.421 +421826,22.575,50.035 +421827,25.011,49.627 +421828,27.555,49.194 +421829,18.975,50.376 +421830,21.299,50.038 +421831,23.713,49.679 +421832,26.23,49.297 +421833,17.716,50.331 +421834,20.022,50.041 +421835,22.415,49.732 +421836,24.904,49.4 +421837,16.458,50.286 +421838,18.747,50.045 +421839,21.116,49.785 +421840,23.575,49.504 +421841,15.202,50.241 +421842,17.472,50.048 +421843,19.816,49.837 +421844,22.245,49.607 +421845,13.949,50.195 +421846,16.197,50.051 +421847,18.516,49.89 +421848,20.913,49.71 +421849,12.697,50.15 +421850,14.923,50.054 +421851,17.215,49.943 +421852,19.579,49.813 +421853,11.446,50.104 +421854,13.649,50.057 +421855,15.913,49.995 +421856,18.244,49.916 +421857,10.198,50.058 +421858,12.376,50.06 +421859,14.611,50.048 +421860,16.907,50.019 +421861,8.9516,50.013 +421862,11.104,50.064 +421863,13.308,50.1 +421864,15.568,50.122 +421865,7.7069,49.967 +421866,9.832,50.067 +421867,12.004,50.153 +421868,14.228,50.224 +421869,6.4639,49.922 +421870,8.5605,50.07 +421871,10.7,50.206 +421872,12.886,50.326 +421873,5.2227,49.877 +421874,7.2895,50.074 +421875,9.3948,50.258 +421876,11.542,50.428 +421877,3.9833,49.831 +421878,6.0191,50.077 +421879,8.0893,50.31 +421880,10.198,50.529 +421881,2.7456,49.787 +421882,4.7491,50.081 +421883,6.7832,50.363 +421884,8.8511,50.631 +421885,1.5095,49.742 +421886,3.4796,50.084 +421887,5.4765,50.415 +421888,7.5033,50.731 +421889,0.27521,49.698 +421890,2.2105,50.088 +421891,4.1693,50.467 +421892,6.154,50.832 +421893,359.04,49.654 +421894,0.94191,50.092 +421895,2.8614,50.519 +421896,4.8034,50.931 +421897,357.81,49.61 +421898,359.67,50.096 +421899,1.5531,50.571 +421900,3.4515,51.031 +421901,356.58,49.567 +421902,358.41,50.101 +421903,0.24413,50.622 +421904,2.0982,51.129 +421905,355.35,49.524 +421906,357.14,50.105 +421907,358.93,50.674 +421908,0.74375,51.227 +421909,354.13,49.482 +421910,355.87,50.11 +421911,357.62,50.725 +421912,359.39,51.325 +421913,352.9,49.44 +421914,354.61,50.115 +421915,356.31,50.776 +421916,358.03,51.422 +421917,351.68,49.399 +421918,353.34,50.12 +421919,355,50.827 +421920,356.67,51.518 +421921,350.46,49.358 +421922,352.07,50.125 +421923,353.69,50.877 +421924,355.31,51.613 +421925,349.24,49.318 +421926,350.81,50.131 +421927,352.38,50.928 +421928,353.95,51.708 +421929,348.02,49.279 +421930,349.54,50.137 +421931,351.07,50.978 +421932,352.59,51.802 +421933,346.8,49.24 +421934,348.28,50.143 +421935,349.75,51.028 +421936,351.23,51.895 +421937,345.59,49.202 +421938,347.01,50.149 +421939,348.44,51.078 +421940,349.87,51.987 +421941,344.37,49.165 +421942,345.75,50.156 +421943,347.13,51.127 +421944,348.5,52.078 +421945,343.16,49.129 +421946,344.49,50.163 +421947,345.81,51.176 +421948,347.14,52.168 +421949,341.95,49.093 +421950,343.22,50.17 +421951,344.5,51.225 +421952,345.77,52.258 +421953,340.73,49.059 +421954,341.96,50.178 +421955,343.18,51.274 +421956,344.41,52.346 +421957,339.53,49.025 +421958,340.7,50.185 +421959,341.87,51.322 +421960,343.04,52.434 +421961,338.32,48.992 +421962,339.44,50.194 +421963,340.55,51.37 +421964,341.67,52.52 +421965,337.11,48.96 +421966,338.17,50.202 +421967,339.24,51.417 +421968,340.3,52.606 +421969,335.9,48.93 +421970,336.91,50.211 +421971,337.92,51.465 +421972,338.93,52.69 +421973,334.7,48.9 +421974,335.65,50.22 +421975,336.6,51.511 +421976,337.56,52.773 +421977,333.49,48.871 +421978,334.39,50.23 +421979,335.29,51.558 +421980,336.19,52.855 +421981,332.29,48.844 +421982,333.13,50.24 +421983,333.97,51.604 +421984,334.82,52.936 +421985,331.09,48.817 +421986,331.87,50.25 +421987,332.65,51.65 +421988,333.45,53.016 +421989,329.88,48.792 +421990,330.6,50.261 +421991,331.34,51.695 +421992,332.08,53.094 +421993,328.68,48.768 +421994,329.34,50.272 +421995,330.02,51.74 +421996,330.7,53.172 +421997,327.48,48.745 +421998,328.08,50.284 +421999,328.7,51.785 +422000,329.33,53.248 +422001,326.28,48.723 +422002,326.82,50.296 +422003,327.38,51.829 +422004,327.96,53.323 +422005,325.08,48.703 +422006,325.56,50.309 +422007,326.06,51.873 +422008,326.58,53.396 +422009,323.88,48.684 +422010,324.3,50.322 +422011,324.74,51.916 +422012,325.21,53.469 +422013,322.69,48.666 +422014,323.04,50.335 +422015,323.42,51.959 +422016,323.84,53.54 +422017,321.49,48.649 +422018,321.78,50.349 +422019,322.11,52.002 +422020,322.46,53.609 +422021,320.29,48.634 +422022,320.52,50.363 +422023,320.79,52.044 +422024,321.09,53.677 +422025,319.09,48.621 +422026,319.26,50.378 +422027,319.47,52.085 +422028,319.71,53.744 +422029,317.9,48.608 +422030,318,50.393 +422031,318.15,52.126 +422032,318.34,53.81 +422033,316.7,48.598 +422034,316.74,50.409 +422035,316.83,52.167 +422036,316.96,53.874 +422037,315.51,48.588 +422038,315.48,50.425 +422039,315.51,52.207 +422040,315.59,53.937 +422041,314.31,48.581 +422042,314.22,50.442 +422043,314.19,52.247 +422044,314.21,53.998 +422045,313.11,48.574 +422046,312.96,50.46 +422047,312.87,52.286 +422048,312.84,54.058 +422049,311.92,48.569 +422050,311.7,50.477 +422051,311.55,52.325 +422052,311.46,54.116 +422053,310.72,48.566 +422054,310.44,50.496 +422055,310.23,52.363 +422056,310.09,54.173 +422057,309.53,48.564 +422058,309.18,50.514 +422059,308.91,52.401 +422060,308.71,54.229 +422061,308.33,48.564 +422062,307.91,50.534 +422063,307.59,52.438 +422064,307.34,54.283 +422065,307.13,48.566 +422066,306.65,50.554 +422067,306.27,52.475 +422068,305.97,54.335 +422069,305.94,48.569 +422070,305.39,50.574 +422071,304.95,52.511 +422072,304.59,54.386 +422073,304.74,48.574 +422074,304.13,50.595 +422075,303.63,52.547 +422076,303.22,54.436 +422077,303.54,48.58 +422078,302.87,50.616 +422079,302.31,52.582 +422080,301.85,54.484 +422081,302.34,48.588 +422082,301.61,50.638 +422083,300.99,52.617 +422084,300.47,54.53 +422085,301.14,48.597 +422086,300.34,50.661 +422087,299.67,52.651 +422088,299.1,54.575 +422089,299.95,48.609 +422090,299.08,50.684 +422091,298.35,52.685 +422092,297.73,54.618 +422093,298.75,48.622 +422094,297.82,50.708 +422095,297.03,52.718 +422096,296.36,54.66 +422097,297.55,48.636 +422098,296.56,50.732 +422099,295.71,52.751 +422100,294.99,54.7 +422101,296.34,48.653 +422102,295.29,50.757 +422103,294.39,52.783 +422104,293.62,54.739 +422105,295.14,48.671 +422106,294.03,50.782 +422107,293.07,52.815 +422108,292.25,54.776 +422109,293.94,48.69 +422110,292.77,50.808 +422111,291.76,52.846 +422112,290.88,54.812 +422113,292.74,48.712 +422114,291.5,50.834 +422115,290.44,52.876 +422116,289.51,54.846 +422117,291.53,48.735 +422118,290.24,50.861 +422119,289.12,52.906 +422120,288.14,54.879 +422121,290.33,48.76 +422122,288.97,50.889 +422123,287.8,52.936 +422124,286.77,54.91 +422125,289.12,48.786 +422126,287.71,50.917 +422127,286.48,52.965 +422128,285.41,54.939 +422129,287.91,48.814 +422130,286.44,50.945 +422131,285.17,52.993 +422132,284.04,54.967 +422133,286.7,48.844 +422134,285.18,50.974 +422135,283.85,53.021 +422136,282.68,54.994 +422137,285.49,48.876 +422138,283.91,51.004 +422139,282.53,53.049 +422140,281.31,55.019 +422141,284.28,48.909 +422142,282.64,51.034 +422143,281.21,53.076 +422144,279.95,55.042 +422145,283.07,48.944 +422146,281.38,51.065 +422147,279.9,53.102 +422148,278.59,55.064 +422149,281.85,48.981 +422150,280.11,51.097 +422151,278.58,53.128 +422152,277.23,55.084 +422153,280.64,49.019 +422154,278.84,51.128 +422155,277.26,53.153 +422156,275.87,55.103 +422157,279.42,49.059 +422158,277.57,51.161 +422159,275.95,53.178 +422160,274.51,55.12 +422161,278.2,49.101 +422162,276.3,51.194 +422163,274.63,53.202 +422164,273.15,55.136 +422165,276.98,49.144 +422166,275.03,51.227 +422167,273.32,53.226 +422168,271.79,55.15 +422169,275.76,49.189 +422170,273.76,51.261 +422171,272,53.249 +422172,270.43,55.163 +422173,274.53,49.236 +422174,272.49,51.296 +422175,270.69,53.272 +422176,269.08,55.175 +422177,273.31,49.284 +422178,271.22,51.331 +422179,269.37,53.295 +422180,267.73,55.184 +422181,272.08,49.334 +422182,269.95,51.367 +422183,268.06,53.316 +422184,266.37,55.193 +422185,270.85,49.386 +422186,268.67,51.403 +422187,266.75,53.338 +422188,265.02,55.2 +422189,269.62,49.439 +422190,267.4,51.44 +422191,265.43,53.359 +422192,263.67,55.205 +422193,268.39,49.493 +422194,266.13,51.477 +422195,264.12,53.379 +422196,262.32,55.21 +422197,267.15,49.549 +422198,264.85,51.514 +422199,262.81,53.399 +422200,260.97,55.212 +422201,265.91,49.607 +422202,263.58,51.552 +422203,261.5,53.418 +422204,259.63,55.214 +422205,264.68,49.666 +422206,262.3,51.591 +422207,260.19,53.437 +422208,258.28,55.214 +422209,263.43,49.727 +422210,261.02,51.63 +422211,258.88,53.456 +422212,256.94,55.212 +422213,262.19,49.789 +422214,259.75,51.67 +422215,257.57,53.474 +422216,255.59,55.21 +422217,260.95,49.852 +422218,258.47,51.71 +422219,256.26,53.491 +422220,254.25,55.206 +422221,259.7,49.917 +422222,257.19,51.75 +422223,254.95,53.508 +422224,252.91,55.201 +422225,258.45,49.984 +422226,255.91,51.791 +422227,253.64,53.525 +422228,251.57,55.194 +422229,257.2,50.051 +422230,254.63,51.833 +422231,252.33,53.541 +422232,250.24,55.186 +422233,255.95,50.12 +422234,253.35,51.875 +422235,251.02,53.557 +422236,248.9,55.177 +422237,254.69,50.191 +422238,252.07,51.917 +422239,249.71,53.573 +422240,247.57,55.167 +422241,253.43,50.263 +422242,250.79,51.96 +422243,248.41,53.588 +422244,246.24,55.155 +422245,252.17,50.336 +422246,249.51,52.003 +422247,247.1,53.602 +422248,244.9,55.142 +422249,250.91,50.41 +422250,248.22,52.046 +422251,245.8,53.617 +422252,243.58,55.129 +422253,249.65,50.485 +422254,246.94,52.09 +422255,244.49,53.631 +422256,242.25,55.114 +422257,248.38,50.562 +422258,245.66,52.135 +422259,243.19,53.644 +422260,240.92,55.097 +422261,247.11,50.64 +422262,244.37,52.179 +422263,241.88,53.657 +422264,239.6,55.08 +422265,245.84,50.718 +422266,243.08,52.224 +422267,240.58,53.67 +422268,238.27,55.062 +422269,244.57,50.798 +422270,241.8,52.27 +422271,239.27,53.682 +422272,236.95,55.043 +422273,243.29,50.879 +422274,240.51,52.316 +422275,237.97,53.694 +422276,235.63,55.022 +422277,242.02,50.962 +422278,239.22,52.362 +422279,236.67,53.706 +422280,234.31,55.001 +422281,240.74,51.045 +422282,237.93,52.408 +422283,235.37,53.717 +422284,233,54.979 +422285,239.45,51.129 +422286,236.64,52.455 +422287,234.07,53.728 +422288,231.68,54.955 +422289,238.17,51.214 +422290,235.35,52.502 +422291,232.77,53.739 +422292,230.37,54.931 +422293,236.88,51.299 +422294,234.06,52.549 +422295,231.47,53.75 +422296,229.06,54.906 +422297,235.59,51.386 +422298,232.77,52.597 +422299,230.17,53.76 +422300,227.75,54.88 +422301,234.3,51.474 +422302,231.48,52.645 +422303,228.87,53.77 +422304,226.44,54.853 +422305,233.01,51.562 +422306,230.18,52.693 +422307,227.57,53.779 +422308,225.14,54.826 +422309,231.71,51.651 +422310,228.89,52.742 +422311,226.27,53.789 +422312,223.83,54.797 +422313,230.41,51.741 +422314,227.59,52.791 +422315,224.98,53.798 +422316,222.53,54.768 +422317,229.11,51.832 +422318,226.3,52.84 +422319,223.68,53.807 +422320,221.23,54.738 +422321,227.81,51.923 +422322,225,52.889 +422323,222.38,53.815 +422324,219.93,54.708 +422325,226.51,52.015 +422326,223.7,52.938 +422327,221.09,53.824 +422328,218.64,54.676 +422329,225.2,52.107 +422330,222.4,52.988 +422331,219.8,53.832 +422332,217.34,54.645 +422333,223.89,52.2 +422334,221.11,53.037 +422335,218.5,53.84 +422336,216.05,54.612 +422337,222.58,52.294 +422338,219.81,53.087 +422339,217.21,53.848 +422340,214.76,54.579 +422341,221.27,52.387 +422342,218.51,53.138 +422343,215.92,53.856 +422344,213.47,54.546 +422345,219.95,52.482 +422346,217.2,53.188 +422347,214.62,53.863 +422348,212.18,54.511 +422349,218.63,52.577 +422350,215.9,53.238 +422351,213.33,53.871 +422352,210.89,54.477 +422353,217.31,52.672 +422354,214.6,53.289 +422355,212.04,53.878 +422356,209.61,54.442 +422357,215.99,52.767 +422358,213.3,53.34 +422359,210.75,53.885 +422360,208.33,54.407 +422361,214.67,52.863 +422362,211.99,53.39 +422363,209.46,53.892 +422364,207.05,54.371 +422365,213.34,52.959 +422366,210.69,53.441 +422367,208.17,53.899 +422368,205.77,54.335 +422369,212.01,53.055 +422370,209.38,53.492 +422371,206.88,53.905 +422372,204.49,54.298 +422373,210.68,53.152 +422374,208.08,53.543 +422375,205.59,53.912 +422376,203.22,54.262 +422377,209.35,53.248 +422378,206.77,53.594 +422379,204.31,53.919 +422380,201.95,54.225 +422381,208.02,53.345 +422382,205.46,53.645 +422383,203.02,53.925 +422384,200.67,54.187 +422385,206.68,53.441 +422386,204.16,53.697 +422387,201.73,53.932 +422388,199.41,54.15 +422389,205.35,53.538 +422390,202.85,53.748 +422391,200.45,53.938 +422392,198.14,54.113 +422393,204.01,53.635 +422394,201.54,53.799 +422395,199.16,53.945 +422396,196.87,54.075 +422397,202.67,53.731 +422398,200.23,53.85 +422399,197.88,53.951 +422400,195.61,54.037 +422401,201.32,53.828 +422402,198.92,53.901 +422403,196.59,53.958 +422404,194.35,54 +422405,199.98,53.924 +422406,197.6,53.952 +422407,195.31,53.964 +422408,193.09,53.962 +422409,198.63,54.021 +422410,196.29,54.004 +422411,194.03,53.971 +422412,191.83,53.924 +422413,197.29,54.117 +422414,194.98,54.055 +422415,192.74,53.977 +422416,190.57,53.887 +422417,195.94,54.213 +422418,193.67,54.106 +422419,191.46,53.984 +422420,189.32,53.849 +422421,194.59,54.308 +422422,192.35,54.157 +422423,190.18,53.99 +422424,188.06,53.812 +422425,193.23,54.404 +422426,191.04,54.207 +422427,188.9,53.997 +422428,186.81,53.774 +422429,191.88,54.499 +422430,189.72,54.258 +422431,187.62,54.004 +422432,185.56,53.737 +422433,190.53,54.593 +422434,188.41,54.309 +422435,186.34,54.01 +422436,184.32,53.701 +422437,189.17,54.688 +422438,187.09,54.359 +422439,185.06,54.017 +422440,183.07,53.664 +422441,187.81,54.781 +422442,185.77,54.41 +422443,183.78,54.024 +422444,181.82,53.628 +422445,186.45,54.875 +422446,184.46,54.46 +422447,182.5,54.032 +422448,180.58,53.592 +422449,185.09,54.968 +422450,183.14,54.51 +422451,181.22,54.039 +422452,179.34,53.556 +422453,183.73,55.06 +422454,181.82,54.56 +422455,179.95,54.046 +422456,178.1,53.521 +422457,182.36,55.152 +422458,180.5,54.61 +422459,178.67,54.054 +422460,176.86,53.487 +422461,181,55.243 +422462,179.18,54.659 +422463,177.39,54.062 +422464,175.62,53.452 +422465,179.63,55.334 +422466,177.86,54.709 +422467,176.12,54.07 +422468,174.39,53.419 +422469,178.27,55.423 +422470,176.54,54.758 +422471,174.84,54.078 +422472,173.15,53.386 +422473,176.9,55.513 +422474,175.22,54.807 +422475,173.56,54.086 +422476,171.92,53.353 +422477,175.53,55.601 +422478,173.9,54.855 +422479,172.29,54.095 +422480,170.69,53.321 +422481,174.16,55.689 +422482,172.58,54.904 +422483,171.01,54.104 +422484,169.46,53.29 +422485,172.79,55.776 +422486,171.26,54.952 +422487,169.74,54.113 +422488,168.23,53.259 +422489,171.41,55.862 +422490,169.93,55 +422491,168.46,54.122 +422492,167.01,53.229 +422493,170.04,55.947 +422494,168.61,55.048 +422495,167.19,54.131 +422496,165.78,53.2 +422497,168.67,56.032 +422498,167.29,55.095 +422499,165.92,54.141 +422500,164.56,53.171 +422501,167.29,56.115 +422502,165.96,55.142 +422503,164.64,54.151 +422504,163.33,53.143 +422505,165.92,56.198 +422506,164.64,55.189 +422507,163.37,54.161 +422508,162.11,53.116 +422509,164.54,56.28 +422510,163.31,55.235 +422511,162.1,54.172 +422512,160.89,53.09 +422513,163.16,56.361 +422514,161.99,55.282 +422515,160.83,54.183 +422516,159.67,53.065 +422517,161.78,56.44 +422518,160.66,55.328 +422519,159.55,54.194 +422520,158.45,53.041 +422521,160.41,56.519 +422522,159.34,55.373 +422523,158.28,54.205 +422524,157.23,53.018 +422525,159.03,56.597 +422526,158.01,55.418 +422527,157.01,54.217 +422528,156.02,52.995 +422529,157.65,56.674 +422530,156.69,55.463 +422531,155.74,54.229 +422532,154.8,52.974 +422533,156.27,56.749 +422534,155.36,55.508 +422535,154.47,54.242 +422536,153.58,52.953 +422537,154.88,56.824 +422538,154.03,55.552 +422539,153.2,54.255 +422540,152.37,52.934 +422541,153.5,56.897 +422542,152.71,55.595 +422543,151.93,54.268 +422544,151.16,52.916 +422545,152.12,56.97 +422546,151.38,55.639 +422547,150.66,54.282 +422548,149.94,52.899 +422549,150.74,57.041 +422550,150.05,55.682 +422551,149.38,54.296 +422552,148.73,52.883 +422553,149.36,57.111 +422554,148.73,55.724 +422555,148.11,54.31 +422556,147.52,52.868 +422557,147.97,57.179 +422558,147.4,55.767 +422559,146.84,54.325 +422560,146.31,52.854 +422561,146.59,57.247 +422562,146.07,55.808 +422563,145.57,54.34 +422564,145.1,52.841 +422565,145.21,57.313 +422566,144.74,55.85 +422567,144.3,54.355 +422568,143.89,52.83 +422569,143.82,57.378 +422570,143.41,55.891 +422571,143.03,54.371 +422572,142.68,52.82 +422573,142.44,57.442 +422574,142.09,55.931 +422575,141.76,54.388 +422576,141.47,52.811 +422577,141.05,57.504 +422578,140.76,55.971 +422579,140.49,54.404 +422580,140.26,52.804 +422581,139.67,57.566 +422582,139.43,56.011 +422583,139.22,54.422 +422584,139.06,52.797 +422585,138.29,57.626 +422586,138.1,56.05 +422587,137.95,54.439 +422588,137.85,52.792 +422589,136.9,57.684 +422590,136.77,56.089 +422591,136.68,54.457 +422592,136.64,52.789 +422593,135.52,57.741 +422594,135.44,56.127 +422595,135.41,54.476 +422596,135.43,52.786 +422597,134.13,57.797 +422598,134.12,56.165 +422599,134.14,54.495 +422600,134.23,52.785 +422601,132.75,57.852 +422602,132.79,56.202 +422603,132.87,54.514 +422604,133.02,52.786 +422605,131.37,57.905 +422606,131.46,56.239 +422607,131.6,54.534 +422608,131.81,52.788 +422609,129.98,57.957 +422610,130.13,56.276 +422611,130.33,54.554 +422612,130.6,52.791 +422613,128.6,58.007 +422614,128.8,56.312 +422615,129.06,54.575 +422616,129.4,52.796 +422617,127.22,58.056 +422618,127.47,56.347 +422619,127.79,54.596 +422620,128.19,52.802 +422621,125.83,58.104 +422622,126.14,56.382 +422623,126.52,54.618 +422624,126.98,52.809 +422625,124.45,58.15 +422626,124.81,56.417 +422627,125.25,54.64 +422628,125.77,52.818 +422629,123.07,58.194 +422630,123.49,56.451 +422631,123.98,54.663 +422632,124.56,52.829 +422633,121.69,58.238 +422634,122.16,56.484 +422635,122.71,54.686 +422636,123.35,52.841 +422637,120.3,58.28 +422638,120.83,56.517 +422639,121.44,54.71 +422640,122.15,52.854 +422641,118.92,58.32 +422642,119.5,56.55 +422643,120.17,54.734 +422644,120.94,52.869 +422645,117.54,58.359 +422646,118.17,56.582 +422647,118.9,54.758 +422648,119.73,52.885 +422649,116.16,58.397 +422650,116.85,56.614 +422651,117.62,54.783 +422652,118.51,52.903 +422653,114.78,58.433 +422654,115.52,56.645 +422655,116.35,54.809 +422656,117.3,52.923 +422657,113.4,58.468 +422658,114.19,56.675 +422659,115.08,54.835 +422660,116.09,52.944 +422661,112.03,58.501 +422662,112.86,56.705 +422663,113.81,54.862 +422664,114.88,52.966 +422665,110.65,58.533 +422666,111.53,56.735 +422667,112.53,54.889 +422668,113.66,52.99 +422669,109.27,58.563 +422670,110.21,56.764 +422671,111.26,54.916 +422672,112.45,53.015 +422673,107.89,58.592 +422674,108.88,56.793 +422675,109.99,54.944 +422676,111.23,53.042 +422677,106.52,58.62 +422678,107.55,56.821 +422679,108.71,54.973 +422680,110.02,53.071 +422681,105.14,58.646 +422682,106.23,56.849 +422683,107.44,55.002 +422684,108.8,53.101 +422685,103.77,58.67 +422686,104.9,56.876 +422687,106.16,55.031 +422688,107.58,53.132 +422689,102.4,58.694 +422690,103.58,56.902 +422691,104.89,55.061 +422692,106.36,53.165 +422693,101.03,58.715 +422694,102.25,56.929 +422695,103.61,55.091 +422696,105.14,53.2 +422697,99.654,58.736 +422698,100.92,56.954 +422699,102.34,55.122 +422700,103.92,53.236 +422701,98.284,58.755 +422702,99.6,56.979 +422703,101.06,55.154 +422704,102.69,53.273 +422705,96.914,58.772 +422706,98.275,57.004 +422707,99.783,55.186 +422708,101.47,53.312 +422709,95.546,58.788 +422710,96.951,57.028 +422711,98.505,55.218 +422712,100.24,53.353 +422713,94.179,58.803 +422714,95.627,57.052 +422715,97.227,55.251 +422716,99.013,53.395 +422717,92.813,58.817 +422718,94.303,57.075 +422719,95.949,55.284 +422720,97.783,53.438 +422721,91.447,58.829 +422722,92.979,57.098 +422723,94.67,55.318 +422724,96.553,53.483 +422725,90.083,58.839 +422726,91.656,57.121 +422727,93.391,55.352 +422728,95.321,53.529 +422729,88.72,58.848 +422730,90.334,57.142 +422731,92.111,55.387 +422732,94.087,53.577 +422733,87.359,58.856 +422734,89.012,57.164 +422735,90.831,55.422 +422736,92.851,53.626 +422737,85.998,58.863 +422738,87.69,57.185 +422739,89.55,55.458 +422740,91.614,53.677 +422741,84.639,58.868 +422742,86.368,57.205 +422743,88.269,55.494 +422744,90.376,53.729 +422745,83.28,58.872 +422746,85.047,57.225 +422747,86.987,55.53 +422748,89.135,53.782 +422749,81.924,58.875 +422750,83.727,57.245 +422751,85.704,55.567 +422752,87.893,53.837 +422753,80.568,58.876 +422754,82.407,57.264 +422755,84.421,55.604 +422756,86.649,53.893 +422757,79.214,58.877 +422758,81.087,57.283 +422759,83.137,55.642 +422760,85.403,53.95 +422761,77.861,58.876 +422762,79.768,57.301 +422763,81.853,55.68 +422764,84.155,54.009 +422765,76.51,58.873 +422766,78.449,57.319 +422767,80.568,55.719 +422768,82.906,54.069 +422769,75.159,58.87 +422770,77.131,57.336 +422771,79.283,55.758 +422772,81.654,54.13 +422773,73.811,58.865 +422774,75.813,57.353 +422775,77.997,55.797 +422776,80.401,54.192 +422777,72.464,58.859 +422778,74.495,57.37 +422779,76.71,55.837 +422780,79.146,54.256 +422781,71.118,58.852 +422782,73.179,57.386 +422783,75.422,55.877 +422784,77.888,54.321 +422785,69.774,58.844 +422786,71.862,57.402 +422787,74.134,55.918 +422788,76.629,54.387 +422789,68.431,58.835 +422790,70.546,57.417 +422791,72.846,55.959 +422792,75.367,54.454 +422793,67.089,58.824 +422794,69.231,57.432 +422795,71.556,56 +422796,74.104,54.522 +422797,65.75,58.813 +422798,67.916,57.447 +422799,70.266,56.042 +422800,72.838,54.592 +422801,64.412,58.8 +422802,66.602,57.462 +422803,68.975,56.084 +422804,71.571,54.662 +422805,63.075,58.786 +422806,65.288,57.475 +422807,67.684,56.126 +422808,70.301,54.734 +422809,61.74,58.772 +422810,63.975,57.489 +422811,66.392,56.169 +422812,69.029,54.806 +422813,60.407,58.756 +422814,62.662,57.502 +422815,65.099,56.212 +422816,67.755,54.88 +422817,59.075,58.74 +422818,61.35,57.515 +422819,63.806,56.255 +422820,66.479,54.955 +422821,57.745,58.722 +422822,60.039,57.528 +422823,62.511,56.299 +422824,65.201,55.03 +422825,56.417,58.704 +422826,58.728,57.54 +422827,61.217,56.343 +422828,63.92,55.107 +422829,55.09,58.684 +422830,57.417,57.552 +422831,59.921,56.387 +422832,62.638,55.184 +422833,53.765,58.664 +422834,56.107,57.564 +422835,58.625,56.431 +422836,61.353,55.262 +422837,52.441,58.643 +422838,54.798,57.575 +422839,57.328,56.476 +422840,60.066,55.341 +422841,51.12,58.621 +422842,53.489,57.586 +422843,56.03,56.521 +422844,58.777,55.421 +422845,49.8,58.599 +422846,52.181,57.597 +422847,54.732,56.566 +422848,57.485,55.502 +422849,48.482,58.575 +422850,50.874,57.608 +422851,53.433,56.612 +422852,56.192,55.583 +422853,47.166,58.551 +422854,49.567,57.618 +422855,52.133,56.658 +422856,54.896,55.665 +422857,45.851,58.526 +422858,48.26,57.628 +422859,50.832,56.704 +422860,53.598,55.748 +422861,44.538,58.5 +422862,46.954,57.638 +422863,49.531,56.75 +422864,52.298,55.832 +422865,43.227,58.474 +422866,45.649,57.648 +422867,48.229,56.796 +422868,50.996,55.916 +422869,41.918,58.447 +422870,44.345,57.657 +422871,46.926,56.843 +422872,49.692,56 +422873,40.61,58.42 +422874,43.041,57.666 +422875,45.623,56.889 +422876,48.385,56.086 +422877,39.305,58.392 +422878,41.737,57.675 +422879,44.319,56.936 +422880,47.077,56.171 +422881,38.001,58.363 +422882,40.434,57.684 +422883,43.014,56.983 +422884,45.766,56.257 +422885,36.699,58.334 +422886,39.132,57.693 +422887,41.708,57.031 +422888,44.453,56.344 +422889,35.398,58.304 +422890,37.83,57.701 +422891,40.402,57.078 +422892,43.138,56.431 +422893,34.1,58.274 +422894,36.529,57.71 +422895,39.095,57.126 +422896,41.821,56.519 +422897,32.803,58.244 +422898,35.229,57.718 +422899,37.787,57.173 +422900,40.502,56.607 +422901,31.509,58.213 +422902,33.929,57.726 +422903,36.479,57.221 +422904,39.18,56.695 +422905,30.216,58.181 +422906,32.63,57.734 +422907,35.17,57.269 +422908,37.857,56.783 +422909,28.925,58.15 +422910,31.331,57.742 +422911,33.86,57.317 +422912,36.532,56.872 +422913,27.635,58.118 +422914,30.033,57.749 +422915,32.55,57.365 +422916,35.204,56.961 +422917,26.348,58.086 +422918,28.736,57.757 +422919,31.238,57.413 +422920,33.875,57.05 +422921,25.062,58.053 +422922,27.439,57.764 +422923,29.927,57.461 +422924,32.544,57.139 +422925,23.778,58.02 +422926,26.142,57.772 +422927,28.614,57.509 +422928,31.21,57.229 +422929,22.496,57.988 +422930,24.847,57.779 +422931,27.301,57.557 +422932,29.875,57.318 +422933,21.216,57.955 +422934,23.551,57.787 +422935,25.987,57.605 +422936,28.538,57.408 +422937,19.938,57.921 +422938,22.257,57.794 +422939,24.672,57.653 +422940,27.199,57.498 +422941,18.661,57.888 +422942,20.963,57.801 +422943,23.357,57.701 +422944,25.859,57.587 +422945,17.386,57.855 +422946,19.669,57.808 +422947,22.041,57.75 +422948,24.516,57.677 +422949,16.113,57.822 +422950,18.376,57.816 +422951,20.725,57.798 +422952,23.172,57.766 +422953,14.842,57.789 +422954,17.084,57.823 +422955,19.408,57.846 +422956,21.825,57.855 +422957,13.572,57.755 +422958,15.792,57.83 +422959,18.09,57.894 +422960,20.478,57.945 +422961,12.304,57.722 +422962,14.501,57.837 +422963,16.772,57.942 +422964,19.128,58.034 +422965,11.038,57.689 +422966,13.21,57.845 +422967,15.453,57.99 +422968,17.777,58.122 +422969,9.7735,57.656 +422970,11.92,57.852 +422971,14.133,58.038 +422972,16.424,58.211 +422973,8.5108,57.624 +422974,10.63,57.859 +422975,12.813,58.085 +422976,15.069,58.299 +422977,7.2497,57.591 +422978,9.341,57.867 +422979,11.493,58.133 +422980,13.713,58.387 +422981,5.9903,57.559 +422982,8.0523,57.875 +422983,10.171,58.181 +422984,12.355,58.475 +422985,4.7325,57.527 +422986,6.7641,57.882 +422987,8.8496,58.228 +422988,10.996,58.562 +422989,3.4764,57.495 +422990,5.4764,57.89 +422991,7.5272,58.275 +422992,9.6356,58.649 +422993,2.2218,57.464 +422994,4.1892,57.898 +422995,6.2043,58.323 +422996,8.2734,58.736 +422997,0.9689,57.433 +422998,2.9024,57.906 +422999,4.8808,58.37 +423000,6.9099,58.822 +423001,359.72,57.402 +423002,1.6162,57.914 +423003,3.5568,58.416 +423004,5.5449,58.907 +423005,358.47,57.372 +423006,0.33034,57.922 +423007,2.2323,58.463 +423008,4.1787,58.992 +423009,357.22,57.342 +423010,359.04,57.931 +423011,0.90734,58.509 +423012,2.8111,59.077 +423013,355.97,57.313 +423014,357.76,57.939 +423015,359.58,58.556 +423016,1.4422,59.16 +423017,354.73,57.284 +423018,356.48,57.948 +423019,358.26,58.602 +423020,0.072108,59.244 +423021,353.48,57.256 +423022,355.19,57.957 +423023,356.93,58.648 +423024,358.7,59.326 +423025,352.24,57.228 +423026,353.91,57.966 +423027,355.6,58.693 +423028,357.33,59.408 +423029,351,57.201 +423030,352.62,57.975 +423031,354.28,58.739 +423032,355.95,59.489 +423033,349.76,57.174 +423034,351.34,57.985 +423035,352.95,58.784 +423036,354.58,59.57 +423037,348.52,57.149 +423038,350.06,57.994 +423039,351.62,58.829 +423040,353.2,59.65 +423041,347.28,57.124 +423042,348.78,58.004 +423043,350.29,58.873 +423044,351.83,59.729 +423045,346.05,57.099 +423046,347.5,58.015 +423047,348.96,58.918 +423048,350.45,59.807 +423049,344.81,57.076 +423050,346.21,58.025 +423051,347.63,58.962 +423052,349.07,59.884 +423053,343.58,57.053 +423054,344.93,58.036 +423055,346.3,59.006 +423056,347.69,59.961 +423057,342.35,57.031 +423058,343.65,58.047 +423059,344.97,59.049 +423060,346.31,60.036 +423061,341.12,57.01 +423062,342.37,58.058 +423063,343.64,59.092 +423064,344.93,60.111 +423065,339.89,56.989 +423066,341.09,58.069 +423067,342.31,59.135 +423068,343.55,60.185 +423069,338.66,56.97 +423070,339.81,58.081 +423071,340.98,59.178 +423072,342.16,60.258 +423073,337.43,56.951 +423074,338.53,58.093 +423075,339.65,59.22 +423076,340.78,60.33 +423077,336.2,56.933 +423078,337.25,58.106 +423079,338.32,59.262 +423080,339.4,60.401 +423081,334.98,56.917 +423082,335.97,58.118 +423083,336.98,59.304 +423084,338.01,60.471 +423085,333.75,56.901 +423086,334.69,58.131 +423087,335.65,59.345 +423088,336.63,60.54 +423089,332.53,56.886 +423090,333.42,58.145 +423091,334.32,59.386 +423092,335.24,60.608 +423093,331.3,56.872 +423094,332.14,58.159 +423095,332.99,59.426 +423096,333.85,60.674 +423097,330.08,56.86 +423098,330.86,58.173 +423099,331.65,59.466 +423100,332.47,60.74 +423101,328.86,56.848 +423102,329.58,58.187 +423103,330.32,59.506 +423104,331.08,60.805 +423105,327.64,56.837 +423106,328.3,58.202 +423107,328.99,59.546 +423108,329.69,60.868 +423109,326.42,56.828 +423110,327.02,58.217 +423111,327.65,59.585 +423112,328.3,60.931 +423113,325.19,56.82 +423114,325.75,58.232 +423115,326.32,59.623 +423116,326.92,60.992 +423117,323.98,56.812 +423118,324.47,58.248 +423119,324.99,59.661 +423120,325.53,61.052 +423121,322.76,56.806 +423122,323.19,58.264 +423123,323.65,59.699 +423124,324.14,61.111 +423125,321.54,56.801 +423126,321.91,58.281 +423127,322.32,59.737 +423128,322.75,61.168 +423129,320.32,56.798 +423130,320.64,58.298 +423131,320.98,59.774 +423132,321.36,61.225 +423133,319.1,56.795 +423134,319.36,58.315 +423135,319.65,59.81 +423136,319.97,61.28 +423137,317.88,56.794 +423138,318.08,58.333 +423139,318.32,59.846 +423140,318.58,61.334 +423141,316.67,56.794 +423142,316.81,58.351 +423143,316.98,59.882 +423144,317.19,61.387 +423145,315.45,56.795 +423146,315.53,58.37 +423147,315.65,59.917 +423148,315.8,61.438 +423149,314.23,56.798 +423150,314.25,58.388 +423151,314.31,59.952 +423152,314.41,61.488 +423153,313.01,56.802 +423154,312.97,58.408 +423155,312.98,59.986 +423156,313.02,61.537 +423157,311.8,56.807 +423158,311.7,58.428 +423159,311.64,60.02 +423160,311.63,61.585 +423161,310.58,56.813 +423162,310.42,58.448 +423163,310.31,60.054 +423164,310.24,61.631 +423165,309.36,56.821 +423166,309.14,58.469 +423167,308.97,60.087 +423168,308.85,61.676 +423169,308.15,56.83 +423170,307.86,58.49 +423171,307.64,60.12 +423172,307.46,61.72 +423173,306.93,56.84 +423174,306.59,58.511 +423175,306.3,60.152 +423176,306.07,61.762 +423177,305.71,56.852 +423178,305.31,58.533 +423179,304.97,60.183 +423180,304.69,61.803 +423181,304.49,56.865 +423182,304.03,58.555 +423183,303.63,60.215 +423184,303.3,61.843 +423185,303.28,56.88 +423186,302.75,58.578 +423187,302.3,60.245 +423188,301.91,61.881 +423189,302.06,56.896 +423190,301.47,58.602 +423191,300.97,60.276 +423192,300.52,61.918 +423193,300.84,56.913 +423194,300.2,58.625 +423195,299.63,60.306 +423196,299.13,61.954 +423197,299.62,56.931 +423198,298.92,58.649 +423199,298.3,60.335 +423200,297.75,61.988 +423201,298.4,56.951 +423202,297.64,58.674 +423203,296.96,60.364 +423204,296.36,62.021 +423205,297.18,56.972 +423206,296.36,58.699 +423207,295.63,60.392 +423208,294.98,62.053 +423209,295.96,56.995 +423210,295.08,58.724 +423211,294.3,60.42 +423212,293.59,62.083 +423213,294.74,57.019 +423214,293.8,58.75 +423215,292.96,60.448 +423216,292.21,62.112 +423217,293.52,57.045 +423218,292.52,58.777 +423219,291.63,60.475 +423220,290.82,62.14 +423221,292.29,57.071 +423222,291.24,58.804 +423223,290.3,60.501 +423224,289.44,62.166 +423225,291.07,57.1 +423226,289.96,58.831 +423227,288.96,60.528 +423228,288.06,62.191 +423229,289.85,57.129 +423230,288.68,58.859 +423231,287.63,60.553 +423232,286.68,62.214 +423233,288.62,57.16 +423234,287.4,58.887 +423235,286.3,60.578 +423236,285.29,62.236 +423237,287.39,57.193 +423238,286.12,58.915 +423239,284.97,60.603 +423240,283.91,62.257 +423241,286.17,57.226 +423242,284.84,58.944 +423243,283.63,60.627 +423244,282.53,62.277 +423245,284.94,57.261 +423246,283.56,58.974 +423247,282.3,60.651 +423248,281.16,62.295 +423249,283.71,57.298 +423250,282.27,59.004 +423251,280.97,60.675 +423252,279.78,62.312 +423253,282.48,57.336 +423254,280.99,59.034 +423255,279.64,60.697 +423256,278.4,62.327 +423257,281.25,57.375 +423258,279.71,59.065 +423259,278.31,60.72 +423260,277.03,62.342 +423261,280.02,57.415 +423262,278.43,59.096 +423263,276.98,60.742 +423264,275.65,62.354 +423265,278.78,57.457 +423266,277.14,59.127 +423267,275.65,60.763 +423268,274.28,62.366 +423269,277.55,57.5 +423270,275.86,59.159 +423271,274.32,60.784 +423272,272.9,62.376 +423273,276.31,57.544 +423274,274.57,59.192 +423275,272.99,60.805 +423276,271.53,62.385 +423277,275.07,57.59 +423278,273.29,59.225 +423279,271.66,60.825 +423280,270.16,62.393 +423281,273.83,57.637 +423282,272,59.258 +423283,270.33,60.845 +423284,268.79,62.4 +423285,272.59,57.685 +423286,270.72,59.292 +423287,269,60.864 +423288,267.42,62.405 +423289,271.35,57.735 +423290,269.43,59.326 +423291,267.67,60.883 +423292,266.06,62.409 +423293,270.1,57.786 +423294,268.14,59.36 +423295,266.35,60.902 +423296,264.69,62.412 +423297,268.86,57.838 +423298,266.85,59.395 +423299,265.02,60.92 +423300,263.33,62.414 +423301,267.61,57.891 +423302,265.57,59.43 +423303,263.69,60.938 +423304,261.96,62.414 +423305,266.36,57.945 +423306,264.28,59.466 +423307,262.37,60.955 +423308,260.6,62.413 +423309,265.11,58.001 +423310,262.99,59.502 +423311,261.04,60.972 +423312,259.24,62.411 +423313,263.86,58.058 +423314,261.7,59.538 +423315,259.72,60.988 +423316,257.88,62.408 +423317,262.6,58.115 +423318,260.41,59.575 +423319,258.39,61.004 +423320,256.52,62.404 +423321,261.35,58.174 +423322,259.12,59.612 +423323,257.07,61.02 +423324,255.17,62.399 +423325,260.09,58.235 +423326,257.83,59.65 +423327,255.74,61.035 +423328,253.81,62.393 +423329,258.83,58.296 +423330,256.53,59.688 +423331,254.42,61.05 +423332,252.46,62.385 +423333,257.57,58.358 +423334,255.24,59.726 +423335,253.1,61.065 +423336,251.1,62.377 +423337,256.31,58.421 +423338,253.95,59.764 +423339,251.77,61.079 +423340,249.75,62.367 +423341,255.04,58.486 +423342,252.65,59.803 +423343,250.45,61.093 +423344,248.4,62.356 +423345,253.78,58.551 +423346,251.36,59.842 +423347,249.13,61.106 +423348,247.06,62.345 +423349,252.51,58.617 +423350,250.07,59.882 +423351,247.81,61.119 +423352,245.71,62.332 +423353,251.24,58.684 +423354,248.77,59.921 +423355,246.49,61.132 +423356,244.36,62.319 +423357,249.96,58.753 +423358,247.47,59.961 +423359,245.17,61.145 +423360,243.02,62.304 +423361,248.69,58.822 +423362,246.18,60.002 +423363,243.85,61.157 +423364,241.68,62.289 +423365,247.41,58.892 +423366,244.88,60.042 +423367,242.53,61.169 +423368,240.34,62.273 +423369,246.13,58.962 +423370,243.58,60.083 +423371,241.21,61.18 +423372,239,62.255 +423373,244.85,59.034 +423374,242.28,60.124 +423375,239.89,61.192 +423376,237.66,62.237 +423377,243.57,59.107 +423378,240.98,60.166 +423379,238.58,61.203 +423380,236.33,62.219 +423381,242.29,59.18 +423382,239.68,60.208 +423383,237.26,61.213 +423384,234.99,62.199 +423385,241,59.254 +423386,238.38,60.249 +423387,235.94,61.224 +423388,233.66,62.179 +423389,239.71,59.328 +423390,237.08,60.292 +423391,234.63,61.234 +423392,232.33,62.157 +423393,238.42,59.404 +423394,235.78,60.334 +423395,233.31,61.244 +423396,231,62.135 +423397,237.13,59.48 +423398,234.47,60.377 +423399,232,61.254 +423400,229.67,62.113 +423401,235.83,59.557 +423402,233.17,60.419 +423403,230.69,61.263 +423404,228.35,62.09 +423405,234.53,59.634 +423406,231.87,60.462 +423407,229.37,61.272 +423408,227.03,62.066 +423409,233.23,59.712 +423410,230.56,60.505 +423411,228.06,61.281 +423412,225.7,62.041 +423413,231.93,59.79 +423414,229.26,60.549 +423415,226.75,61.29 +423416,224.38,62.016 +423417,230.63,59.869 +423418,227.95,60.592 +423419,225.44,61.299 +423420,223.07,61.99 +423421,229.32,59.949 +423422,226.64,60.636 +423423,224.13,61.307 +423424,221.75,61.964 +423425,228.02,60.029 +423426,225.33,60.68 +423427,222.82,61.315 +423428,220.43,61.937 +423429,226.71,60.109 +423430,224.03,60.724 +423431,221.51,61.323 +423432,219.12,61.91 +423433,225.39,60.19 +423434,222.72,60.768 +423435,220.2,61.331 +423436,217.81,61.882 +423437,224.08,60.271 +423438,221.41,60.812 +423439,218.89,61.339 +423440,216.5,61.854 +423441,222.76,60.352 +423442,220.1,60.856 +423443,217.58,61.347 +423444,215.19,61.825 +423445,221.45,60.434 +423446,218.79,60.901 +423447,216.27,61.354 +423448,213.89,61.796 +423449,220.13,60.516 +423450,217.47,60.945 +423451,214.97,61.362 +423452,212.58,61.767 +423453,218.8,60.598 +423454,216.16,60.99 +423455,213.66,61.369 +423456,211.28,61.737 +423457,217.48,60.681 +423458,214.85,61.034 +423459,212.35,61.376 +423460,209.98,61.707 +423461,216.15,60.763 +423462,213.53,61.079 +423463,211.05,61.383 +423464,208.68,61.677 +423465,214.83,60.846 +423466,212.22,61.124 +423467,209.75,61.39 +423468,207.38,61.647 +423469,213.5,60.929 +423470,210.9,61.168 +423471,208.44,61.397 +423472,206.09,61.616 +423473,212.16,61.012 +423474,209.59,61.213 +423475,207.14,61.404 +423476,204.8,61.585 +423477,210.83,61.095 +423478,208.27,61.258 +423479,205.84,61.41 +423480,203.5,61.554 +423481,209.49,61.179 +423482,206.96,61.303 +423483,204.53,61.417 +423484,202.21,61.523 +423485,208.16,61.262 +423486,205.64,61.348 +423487,203.23,61.424 +423488,200.93,61.492 +423489,206.82,61.345 +423490,204.32,61.392 +423491,201.93,61.431 +423492,199.64,61.461 +423493,205.48,61.428 +423494,203,61.437 +423495,200.63,61.437 +423496,198.36,61.43 +423497,204.13,61.511 +423498,201.68,61.482 +423499,199.33,61.444 +423500,197.07,61.399 +423501,202.79,61.594 +423502,200.36,61.527 +423503,198.03,61.451 +423504,195.79,61.368 +423505,201.44,61.676 +423506,199.04,61.571 +423507,196.73,61.457 +423508,194.51,61.337 +423509,200.09,61.759 +423510,197.72,61.616 +423511,195.44,61.464 +423512,193.24,61.306 +423513,198.74,61.841 +423514,196.4,61.66 +423515,194.14,61.471 +423516,191.96,61.275 +423517,197.39,61.923 +423518,195.07,61.705 +423519,192.84,61.478 +423520,190.69,61.244 +423521,196.04,62.005 +423522,193.75,61.749 +423523,191.55,61.485 +423524,189.41,61.214 +423525,194.68,62.086 +423526,192.43,61.793 +423527,190.25,61.492 +423528,188.14,61.184 +423529,193.32,62.168 +423530,191.1,61.837 +423531,188.95,61.499 +423532,186.87,61.154 +423533,191.97,62.248 +423534,189.78,61.881 +423535,187.66,61.506 +423536,185.61,61.124 +423537,190.61,62.329 +423538,188.45,61.925 +423539,186.37,61.513 +423540,184.34,61.094 +423541,189.24,62.409 +423542,187.12,61.969 +423543,185.07,61.52 +423544,183.08,61.065 +423545,187.88,62.488 +423546,185.8,62.012 +423547,183.78,61.528 +423548,181.81,61.037 +423549,186.52,62.567 +423550,184.47,62.056 +423551,182.49,61.535 +423552,180.55,61.008 +423553,185.15,62.646 +423554,183.14,62.099 +423555,181.19,61.543 +423556,179.29,60.981 +423557,183.78,62.724 +423558,181.82,62.142 +423559,179.9,61.551 +423560,178.03,60.953 +423561,182.42,62.801 +423562,180.49,62.184 +423563,178.61,61.559 +423564,176.78,60.926 +423565,181.05,62.878 +423566,179.16,62.227 +423567,177.32,61.567 +423568,175.52,60.9 +423569,179.67,62.954 +423570,177.83,62.269 +423571,176.03,61.575 +423572,174.27,60.874 +423573,178.3,63.03 +423574,176.5,62.312 +423575,174.74,61.584 +423576,173.02,60.849 +423577,176.93,63.105 +423578,175.17,62.354 +423579,173.45,61.593 +423580,171.76,60.824 +423581,175.55,63.179 +423582,173.84,62.395 +423583,172.16,61.602 +423584,170.52,60.8 +423585,174.18,63.252 +423586,172.51,62.437 +423587,170.87,61.611 +423588,169.27,60.776 +423589,172.8,63.325 +423590,171.17,62.478 +423591,169.58,61.62 +423592,168.02,60.754 +423593,171.42,63.397 +423594,169.84,62.519 +423595,168.29,61.63 +423596,166.77,60.732 +423597,170.04,63.468 +423598,168.51,62.56 +423599,167.01,61.64 +423600,165.53,60.71 +423601,168.66,63.539 +423602,167.18,62.6 +423603,165.72,61.65 +423604,164.29,60.69 +423605,167.28,63.608 +423606,165.84,62.64 +423607,164.43,61.66 +423608,163.05,60.67 +423609,165.9,63.677 +423610,164.51,62.68 +423611,163.14,61.671 +423612,161.8,60.651 +423613,164.52,63.745 +423614,163.17,62.719 +423615,161.86,61.681 +423616,160.56,60.633 +423617,163.13,63.812 +423618,161.84,62.759 +423619,160.57,61.693 +423620,159.33,60.615 +423621,161.75,63.878 +423622,160.51,62.798 +423623,159.29,61.704 +423624,158.09,60.599 +423625,160.36,63.943 +423626,159.17,62.836 +423627,158,61.716 +423628,156.85,60.583 +423629,158.98,64.007 +423630,157.83,62.874 +423631,156.72,61.728 +423632,155.62,60.569 +423633,157.59,64.07 +423634,156.5,62.912 +423635,155.43,61.74 +423636,154.38,60.555 +423637,156.2,64.132 +423638,155.16,62.95 +423639,154.15,61.753 +423640,153.15,60.542 +423641,154.81,64.194 +423642,153.83,62.987 +423643,152.86,61.766 +423644,151.92,60.53 +423645,153.43,64.254 +423646,152.49,63.024 +423647,151.58,61.779 +423648,150.68,60.52 +423649,152.04,64.313 +423650,151.15,63.061 +423651,150.29,61.792 +423652,149.45,60.51 +423653,150.65,64.371 +423654,149.82,63.097 +423655,149.01,61.806 +423656,148.22,60.501 +423657,149.26,64.428 +423658,148.48,63.132 +423659,147.73,61.821 +423660,146.99,60.494 +423661,147.87,64.483 +423662,147.14,63.168 +423663,146.44,61.835 +423664,145.76,60.487 +423665,146.47,64.538 +423666,145.81,63.203 +423667,145.16,61.85 +423668,144.53,60.482 +423669,145.08,64.592 +423670,144.47,63.237 +423671,143.88,61.866 +423672,143.31,60.477 +423673,143.69,64.644 +423674,143.13,63.272 +423675,142.59,61.881 +423676,142.08,60.474 +423677,142.3,64.695 +423678,141.79,63.306 +423679,141.31,61.897 +423680,140.85,60.472 +423681,140.91,64.746 +423682,140.45,63.339 +423683,140.03,61.914 +423684,139.63,60.471 +423685,139.52,64.794 +423686,139.12,63.372 +423687,138.74,61.931 +423688,138.4,60.471 +423689,138.12,64.842 +423690,137.78,63.405 +423691,137.46,61.948 +423692,137.17,60.472 +423693,136.73,64.889 +423694,136.44,63.437 +423695,136.18,61.965 +423696,135.95,60.475 +423697,135.34,64.934 +423698,135.1,63.469 +423699,134.9,61.983 +423700,134.72,60.479 +423701,133.95,64.978 +423702,133.76,63.5 +423703,133.61,62.002 +423704,133.5,60.484 +423705,132.55,65.021 +423706,132.42,63.531 +423707,132.33,62.02 +423708,132.27,60.49 +423709,131.16,65.063 +423710,131.09,63.562 +423711,131.05,62.039 +423712,131.05,60.497 +423713,129.77,65.103 +423714,129.75,63.592 +423715,129.77,62.059 +423716,129.82,60.506 +423717,128.37,65.142 +423718,128.41,63.621 +423719,128.48,62.079 +423720,128.6,60.516 +423721,126.98,65.18 +423722,127.07,63.651 +423723,127.2,62.099 +423724,127.38,60.527 +423725,125.59,65.217 +423726,125.73,63.679 +423727,125.92,62.12 +423728,126.15,60.54 +423729,124.2,65.252 +423730,124.39,63.708 +423731,124.63,62.141 +423732,124.93,60.553 +423733,122.81,65.286 +423734,123.06,63.736 +423735,123.35,62.163 +423736,123.7,60.568 +423737,121.42,65.319 +423738,121.72,63.763 +423739,122.07,62.185 +423740,122.48,60.585 +423741,120.02,65.351 +423742,120.38,63.79 +423743,120.79,62.207 +423744,121.25,60.602 +423745,118.63,65.381 +423746,119.04,63.817 +423747,119.5,62.23 +423748,120.03,60.621 +423749,117.24,65.41 +423750,117.7,63.843 +423751,118.22,62.253 +423752,118.8,60.641 +423753,115.85,65.438 +423754,116.36,63.869 +423755,116.94,62.277 +423756,117.57,60.663 +423757,114.46,65.464 +423758,115.03,63.894 +423759,115.65,62.301 +423760,116.35,60.686 +423761,113.08,65.489 +423762,113.69,63.919 +423763,114.37,62.326 +423764,115.12,60.71 +423765,111.69,65.513 +423766,112.35,63.943 +423767,113.08,62.351 +423768,113.89,60.735 +423769,110.3,65.536 +423770,111.01,63.967 +423771,111.8,62.376 +423772,112.66,60.762 +423773,108.91,65.557 +423774,109.68,63.991 +423775,110.51,62.402 +423776,111.43,60.79 +423777,107.53,65.577 +423778,108.34,64.014 +423779,109.23,62.428 +423780,110.2,60.819 +423781,106.14,65.596 +423782,107,64.037 +423783,107.95,62.454 +423784,108.97,60.849 +423785,104.76,65.614 +423786,105.67,64.059 +423787,106.66,62.481 +423788,107.74,60.881 +423789,103.37,65.63 +423790,104.33,64.081 +423791,105.37,62.509 +423792,106.51,60.914 +423793,101.99,65.645 +423794,103,64.102 +423795,104.09,62.537 +423796,105.28,60.949 +423797,100.61,65.659 +423798,101.66,64.123 +423799,102.8,62.565 +423800,104.04,60.984 +423801,99.224,65.671 +423802,100.32,64.143 +423803,101.52,62.593 +423804,102.81,61.021 +423805,97.843,65.682 +423806,98.989,64.164 +423807,100.23,62.622 +423808,101.57,61.059 +423809,96.463,65.692 +423810,97.654,64.183 +423811,98.941,62.652 +423812,100.34,61.099 +423813,95.084,65.701 +423814,96.32,64.202 +423815,97.654,62.682 +423816,99.099,61.139 +423817,93.706,65.709 +423818,94.985,64.221 +423819,96.365,62.712 +423820,97.86,61.181 +423821,92.329,65.715 +423822,93.652,64.24 +423823,95.077,62.742 +423824,96.62,61.224 +423825,90.953,65.72 +423826,92.318,64.258 +423827,93.788,62.773 +423828,95.378,61.269 +423829,89.578,65.725 +423830,90.985,64.275 +423831,92.499,62.805 +423832,94.136,61.314 +423833,88.204,65.727 +423834,89.652,64.292 +423835,91.209,62.837 +423836,92.892,61.361 +423837,86.831,65.729 +423838,88.319,64.309 +423839,89.919,62.869 +423840,91.647,61.408 +423841,85.459,65.73 +423842,86.987,64.325 +423843,88.629,62.901 +423844,90.4,61.457 +423845,84.089,65.729 +423846,85.656,64.341 +423847,87.338,62.934 +423848,89.152,61.507 +423849,82.719,65.727 +423850,84.324,64.357 +423851,86.046,62.967 +423852,87.903,61.559 +423853,81.351,65.725 +423854,82.993,64.372 +423855,84.754,63.001 +423856,86.652,61.611 +423857,79.985,65.721 +423858,81.663,64.387 +423859,83.462,63.035 +423860,85.4,61.664 +423861,78.619,65.716 +423862,80.333,64.402 +423863,82.169,63.069 +423864,84.146,61.719 +423865,77.255,65.71 +423866,79.003,64.416 +423867,80.876,63.104 +423868,82.891,61.774 +423869,75.892,65.703 +423870,77.674,64.429 +423871,79.582,63.139 +423872,81.634,61.831 +423873,74.53,65.695 +423874,76.345,64.443 +423875,78.287,63.174 +423876,80.375,61.888 +423877,73.17,65.686 +423878,75.017,64.456 +423879,76.992,63.21 +423880,79.115,61.947 +423881,71.811,65.676 +423882,73.689,64.469 +423883,75.697,63.245 +423884,77.853,62.007 +423885,70.453,65.664 +423886,72.362,64.481 +423887,74.401,63.282 +423888,76.59,62.067 +423889,69.097,65.652 +423890,71.035,64.493 +423891,73.104,63.318 +423892,75.324,62.128 +423893,67.743,65.64 +423894,69.709,64.505 +423895,71.807,63.355 +423896,74.057,62.191 +423897,66.39,65.626 +423898,68.383,64.516 +423899,70.509,63.392 +423900,72.788,62.254 +423901,65.038,65.611 +423902,67.058,64.527 +423903,69.21,63.43 +423904,71.518,62.318 +423905,63.688,65.595 +423906,65.733,64.538 +423907,67.912,63.467 +423908,70.245,62.383 +423909,62.339,65.579 +423910,64.409,64.548 +423911,66.612,63.505 +423912,68.971,62.449 +423913,60.992,65.562 +423914,63.085,64.559 +423915,65.312,63.543 +423916,67.695,62.516 +423917,59.647,65.544 +423918,61.762,64.569 +423919,64.011,63.582 +423920,66.417,62.583 +423921,58.303,65.525 +423922,60.439,64.578 +423923,62.71,63.62 +423924,65.137,62.651 +423925,56.961,65.505 +423926,59.117,64.588 +423927,61.408,63.659 +423928,63.855,62.72 +423929,55.62,65.485 +423930,57.795,64.597 +423931,60.105,63.698 +423932,62.571,62.789 +423933,54.281,65.464 +423934,56.474,64.606 +423935,58.802,63.738 +423936,61.285,62.86 +423937,52.944,65.442 +423938,55.154,64.614 +423939,57.498,63.777 +423940,59.997,62.931 +423941,51.608,65.419 +423942,53.834,64.623 +423943,56.193,63.817 +423944,58.708,63.002 +423945,50.274,65.396 +423946,52.515,64.631 +423947,54.888,63.857 +423948,57.416,63.074 +423949,48.941,65.373 +423950,51.196,64.639 +423951,53.582,63.897 +423952,56.123,63.147 +423953,47.61,65.348 +423954,49.878,64.647 +423955,52.276,63.938 +423956,54.827,63.22 +423957,46.281,65.324 +423958,48.56,64.655 +423959,50.969,63.978 +423960,53.529,63.294 +423961,44.954,65.298 +423962,47.243,64.662 +423963,49.661,64.019 +423964,52.23,63.368 +423965,43.628,65.272 +423966,45.926,64.669 +423967,48.352,64.059 +423968,50.928,63.443 +423969,42.304,65.246 +423970,44.61,64.676 +423971,47.043,64.1 +423972,49.625,63.518 +423973,40.982,65.219 +423974,43.295,64.683 +423975,45.734,64.141 +423976,48.319,63.593 +423977,39.662,65.192 +423978,41.98,64.69 +423979,44.423,64.183 +423980,47.011,63.669 +423981,38.343,65.164 +423982,40.666,64.697 +423983,43.112,64.224 +423984,45.702,63.745 +423985,37.026,65.136 +423986,39.353,64.703 +423987,41.801,64.265 +423988,44.39,63.822 +423989,35.711,65.108 +423990,38.04,64.71 +423991,40.488,64.307 +423992,43.077,63.899 +423993,34.397,65.079 +423994,36.727,64.716 +423995,39.175,64.348 +423996,41.761,63.976 +423997,33.085,65.05 +423998,35.415,64.722 +423999,37.862,64.39 +424000,40.444,64.053 +424001,31.775,65.021 +424002,34.104,64.728 +424003,36.547,64.432 +424004,39.124,64.131 +424005,30.467,64.991 +424006,32.794,64.734 +424007,35.232,64.473 +424008,37.803,64.209 +424009,29.161,64.961 +424010,31.484,64.74 +424011,33.917,64.515 +424012,36.479,64.286 +424013,27.856,64.931 +424014,30.174,64.746 +424015,32.601,64.557 +424016,35.154,64.364 +424017,26.553,64.901 +424018,28.865,64.752 +424019,31.284,64.599 +424020,33.826,64.442 +424021,25.252,64.871 +424022,27.557,64.757 +424023,29.966,64.641 +424024,32.497,64.521 +424025,23.952,64.841 +424026,26.249,64.763 +424027,28.648,64.683 +424028,31.166,64.599 +424029,22.655,64.811 +424030,24.942,64.769 +424031,27.329,64.724 +424032,29.833,64.677 +424033,21.359,64.78 +424034,23.636,64.774 +424035,26.01,64.766 +424036,28.498,64.755 +424037,20.065,64.75 +424038,22.33,64.78 +424039,24.69,64.808 +424040,27.161,64.833 +424041,18.772,64.719 +424042,21.024,64.786 +424043,23.369,64.85 +424044,25.822,64.911 +424045,17.481,64.689 +424046,19.719,64.791 +424047,22.048,64.892 +424048,24.482,64.989 +424049,16.192,64.659 +424050,18.415,64.797 +424051,20.726,64.933 +424052,23.139,65.066 +424053,14.905,64.629 +424054,17.111,64.803 +424055,19.404,64.975 +424056,21.795,65.144 +424057,13.619,64.599 +424058,15.808,64.809 +424059,18.08,65.016 +424060,20.45,65.221 +424061,12.335,64.569 +424062,14.506,64.814 +424063,16.757,65.058 +424064,19.102,65.298 +424065,11.053,64.539 +424066,13.203,64.82 +424067,15.433,65.099 +424068,17.753,65.375 +424069,9.7723,64.51 +424070,11.902,64.826 +424071,14.108,65.141 +424072,16.402,65.452 +424073,8.4934,64.481 +424074,10.601,64.832 +424075,12.782,65.182 +424076,15.049,65.528 +424077,7.216,64.452 +424078,9.3004,64.838 +424079,11.456,65.223 +424080,13.694,65.604 +424081,5.9403,64.423 +424082,8.0005,64.845 +424083,10.13,65.264 +424084,12.339,65.679 +424085,4.6662,64.395 +424086,6.7011,64.851 +424087,8.8026,65.305 +424088,10.981,65.754 +424089,3.3936,64.367 +424090,5.4021,64.857 +424091,7.4749,65.345 +424092,9.6218,65.829 +424093,2.1227,64.34 +424094,4.1037,64.864 +424095,6.1468,65.386 +424096,8.2612,65.903 +424097,0.85327,64.313 +424098,2.8058,64.871 +424099,4.818,65.426 +424100,6.899,65.977 +424101,359.59,64.286 +424102,1.5084,64.878 +424103,3.4888,65.466 +424104,5.5353,66.05 +424105,358.32,64.26 +424106,0.21139,64.885 +424107,2.1591,65.506 +424108,4.1702,66.123 +424109,357.05,64.234 +424110,358.91,64.892 +424111,0.82882,65.546 +424112,2.8037,66.195 +424113,355.79,64.209 +424114,357.62,64.899 +424115,359.5,65.585 +424116,1.4358,66.266 +424117,354.53,64.185 +424118,356.32,64.907 +424119,358.17,65.625 +424120,0.066478,66.337 +424121,353.27,64.161 +424122,355.03,64.914 +424123,356.84,65.664 +424124,358.7,66.408 +424125,352.01,64.137 +424126,353.73,64.922 +424127,355.5,65.703 +424128,357.32,66.477 +424129,350.75,64.115 +424130,352.44,64.93 +424131,354.17,65.741 +424132,355.95,66.546 +424133,349.49,64.093 +424134,351.15,64.939 +424135,352.84,65.78 +424136,354.58,66.615 +424137,348.24,64.071 +424138,349.85,64.947 +424139,351.5,65.818 +424140,353.2,66.682 +424141,346.99,64.051 +424142,348.56,64.956 +424143,350.17,65.856 +424144,351.82,66.749 +424145,345.73,64.031 +424146,347.27,64.965 +424147,348.84,65.894 +424148,350.45,66.815 +424149,344.48,64.012 +424150,345.97,64.974 +424151,347.5,65.931 +424152,349.07,66.88 +424153,343.23,63.993 +424154,344.68,64.984 +424155,346.17,65.968 +424156,347.69,66.944 +424157,341.98,63.976 +424158,343.39,64.994 +424159,344.83,66.005 +424160,346.31,67.008 +424161,340.74,63.959 +424162,342.1,65.004 +424163,343.49,66.042 +424164,344.92,67.071 +424165,339.49,63.943 +424166,340.81,65.014 +424167,342.16,66.078 +424168,343.54,67.132 +424169,338.24,63.928 +424170,339.52,65.025 +424171,340.82,66.114 +424172,342.16,67.193 +424173,337,63.914 +424174,338.23,65.036 +424175,339.49,66.149 +424176,340.77,67.253 +424177,335.76,63.9 +424178,336.94,65.047 +424179,338.15,66.185 +424180,339.39,67.312 +424181,334.51,63.888 +424182,335.65,65.058 +424183,336.81,66.22 +424184,338,67.371 +424185,333.27,63.877 +424186,334.36,65.07 +424187,335.47,66.254 +424188,336.61,67.428 +424189,332.03,63.866 +424190,333.07,65.082 +424191,334.13,66.289 +424192,335.23,67.484 +424193,330.79,63.857 +424194,331.78,65.095 +424195,332.8,66.323 +424196,333.84,67.539 +424197,329.55,63.848 +424198,330.49,65.108 +424199,331.46,66.356 +424200,332.45,67.593 +424201,328.31,63.841 +424202,329.2,65.121 +424203,330.12,66.39 +424204,331.06,67.646 +424205,327.08,63.835 +424206,327.92,65.134 +424207,328.78,66.422 +424208,329.67,67.698 +424209,325.84,63.829 +424210,326.63,65.148 +424211,327.44,66.455 +424212,328.28,67.749 +424213,324.6,63.825 +424214,325.34,65.162 +424215,326.1,66.487 +424216,326.89,67.799 +424217,323.37,63.822 +424218,324.05,65.176 +424219,324.76,66.519 +424220,325.5,67.848 +424221,322.13,63.82 +424222,322.77,65.191 +424223,323.42,66.55 +424224,324.1,67.896 +424225,320.9,63.819 +424226,321.48,65.207 +424227,322.08,66.581 +424228,322.71,67.943 +424229,319.67,63.819 +424230,320.19,65.222 +424231,320.74,66.612 +424232,321.32,67.988 +424233,318.43,63.821 +424234,318.9,65.238 +424235,319.4,66.642 +424236,319.93,68.032 +424237,317.2,63.823 +424238,317.62,65.254 +424239,318.06,66.672 +424240,318.53,68.076 +424241,315.97,63.827 +424242,316.33,65.271 +424243,316.72,66.702 +424244,317.14,68.118 +424245,314.74,63.831 +424246,315.04,65.288 +424247,315.38,66.731 +424248,315.75,68.159 +424249,313.51,63.837 +424250,313.76,65.305 +424251,314.04,66.76 +424252,314.35,68.198 +424253,312.27,63.845 +424254,312.47,65.323 +424255,312.7,66.788 +424256,312.96,68.237 +424257,311.04,63.853 +424258,311.18,65.342 +424259,311.36,66.816 +424260,311.56,68.274 +424261,309.81,63.863 +424262,309.9,65.36 +424263,310.02,66.843 +424264,310.17,68.31 +424265,308.58,63.873 +424266,308.61,65.379 +424267,308.68,66.87 +424268,308.78,68.345 +424269,307.35,63.885 +424270,307.32,65.399 +424271,307.34,66.897 +424272,307.38,68.379 +424273,306.12,63.899 +424274,306.04,65.418 +424275,305.99,66.923 +424276,305.99,68.412 +424277,304.89,63.913 +424278,304.75,65.439 +424279,304.65,66.949 +424280,304.59,68.443 +424281,303.66,63.929 +424282,303.46,65.459 +424283,303.31,66.974 +424284,303.2,68.473 +424285,302.43,63.946 +424286,302.18,65.48 +424287,301.97,66.999 +424288,301.81,68.502 +424289,301.2,63.964 +424290,300.89,65.502 +424291,300.63,67.024 +424292,300.41,68.53 +424293,299.97,63.983 +424294,299.6,65.523 +424295,299.29,67.048 +424296,299.02,68.556 +424297,298.73,64.004 +424298,298.32,65.546 +424299,297.95,67.072 +424300,297.63,68.581 +424301,297.5,64.026 +424302,297.03,65.568 +424303,296.61,67.095 +424304,296.24,68.605 +424305,296.27,64.049 +424306,295.74,65.591 +424307,295.27,67.118 +424308,294.85,68.628 +424309,295.04,64.074 +424310,294.46,65.615 +424311,293.93,67.14 +424312,293.45,68.649 +424313,293.81,64.099 +424314,293.17,65.638 +424315,292.59,67.162 +424316,292.06,68.67 +424317,292.57,64.126 +424318,291.88,65.663 +424319,291.25,67.184 +424320,290.67,68.689 +424321,291.34,64.154 +424322,290.59,65.687 +424323,289.91,67.205 +424324,289.28,68.707 +424325,290.1,64.184 +424326,289.3,65.712 +424327,288.57,67.226 +424328,287.89,68.723 +424329,288.87,64.214 +424330,288.02,65.738 +424331,287.23,67.246 +424332,286.5,68.739 +424333,287.63,64.246 +424334,286.73,65.764 +424335,285.89,67.266 +424336,285.12,68.753 +424337,286.4,64.279 +424338,285.44,65.79 +424339,284.55,67.286 +424340,283.73,68.766 +424341,285.16,64.314 +424342,284.15,65.816 +424343,283.21,67.305 +424344,282.34,68.778 +424345,283.92,64.349 +424346,282.86,65.843 +424347,281.87,67.323 +424348,280.96,68.788 +424349,282.69,64.386 +424350,281.57,65.871 +424351,280.54,67.342 +424352,279.57,68.798 +424353,281.45,64.424 +424354,280.28,65.899 +424355,279.2,67.36 +424356,278.19,68.806 +424357,280.21,64.463 +424358,278.99,65.927 +424359,277.86,67.377 +424360,276.8,68.813 +424361,278.97,64.503 +424362,277.7,65.955 +424363,276.52,67.394 +424364,275.42,68.819 +424365,277.72,64.545 +424366,276.41,65.984 +424367,275.18,67.411 +424368,274.04,68.824 +424369,276.48,64.587 +424370,275.12,66.014 +424371,273.85,67.427 +424372,272.66,68.827 +424373,275.24,64.631 +424374,273.83,66.043 +424375,272.51,67.443 +424376,271.28,68.83 +424377,273.99,64.676 +424378,272.54,66.073 +424379,271.17,67.459 +424380,269.9,68.831 +424381,272.75,64.722 +424382,271.24,66.104 +424383,269.84,67.474 +424384,268.52,68.832 +424385,271.5,64.769 +424386,269.95,66.134 +424387,268.5,67.489 +424388,267.14,68.831 +424389,270.25,64.817 +424390,268.66,66.166 +424391,267.17,67.503 +424392,265.77,68.829 +424393,269,64.866 +424394,267.36,66.197 +424395,265.83,67.517 +424396,264.39,68.826 +424397,267.75,64.916 +424398,266.07,66.229 +424399,264.5,67.531 +424400,263.02,68.822 +424401,266.5,64.968 +424402,264.78,66.261 +424403,263.16,67.544 +424404,261.65,68.817 +424405,265.24,65.02 +424406,263.48,66.293 +424407,261.83,67.557 +424408,260.28,68.811 +424409,263.99,65.073 +424410,262.19,66.326 +424411,260.5,67.57 +424412,258.91,68.804 +424413,262.73,65.128 +424414,260.89,66.359 +424415,259.16,67.582 +424416,257.54,68.795 +424417,261.47,65.183 +424418,259.59,66.393 +424419,257.83,67.594 +424420,256.17,68.786 +424421,260.21,65.239 +424422,258.3,66.427 +424423,256.5,67.606 +424424,254.8,68.776 +424425,258.95,65.297 +424426,257,66.461 +424427,255.17,67.617 +424428,253.44,68.765 +424429,257.69,65.355 +424430,255.7,66.495 +424431,253.84,67.628 +424432,252.08,68.753 +424433,256.43,65.414 +424434,254.41,66.53 +424435,252.51,67.639 +424436,250.71,68.741 +424437,255.16,65.474 +424438,253.11,66.565 +424439,251.17,67.649 +424440,249.35,68.727 +424441,253.9,65.535 +424442,251.81,66.6 +424443,249.85,67.659 +424444,247.99,68.712 +424445,252.63,65.596 +424446,250.51,66.635 +424447,248.52,67.669 +424448,246.63,68.697 +424449,251.36,65.659 +424450,249.21,66.671 +424451,247.19,67.679 +424452,245.28,68.681 +424453,250.08,65.722 +424454,247.91,66.707 +424455,245.86,67.688 +424456,243.92,68.663 +424457,248.81,65.786 +424458,246.61,66.743 +424459,244.53,67.697 +424460,242.57,68.646 +424461,247.53,65.85 +424462,245.3,66.78 +424463,243.2,67.706 +424464,241.22,68.627 +424465,246.26,65.916 +424466,244,66.817 +424467,241.88,67.714 +424468,239.86,68.608 +424469,244.98,65.982 +424470,242.7,66.853 +424471,240.55,67.722 +424472,238.52,68.587 +424473,243.7,66.049 +424474,241.39,66.891 +424475,239.22,67.73 +424476,237.17,68.567 +424477,242.42,66.116 +424478,240.09,66.928 +424479,237.9,67.738 +424480,235.82,68.545 +424481,241.13,66.184 +424482,238.79,66.966 +424483,236.57,67.746 +424484,234.48,68.523 +424485,239.84,66.253 +424486,237.48,67.003 +424487,235.25,67.753 +424488,233.13,68.5 +424489,238.56,66.322 +424490,236.17,67.041 +424491,233.93,67.76 +424492,231.79,68.477 +424493,237.27,66.392 +424494,234.87,67.08 +424495,232.6,67.767 +424496,230.45,68.453 +424497,235.98,66.462 +424498,233.56,67.118 +424499,231.28,67.774 +424500,229.11,68.428 +424501,234.68,66.533 +424502,232.25,67.156 +424503,229.96,67.78 +424504,227.78,68.403 +424505,233.39,66.604 +424506,230.94,67.195 +424507,228.64,67.787 +424508,226.44,68.378 +424509,232.09,66.676 +424510,229.64,67.234 +424511,227.32,67.793 +424512,225.11,68.352 +424513,230.79,66.748 +424514,228.33,67.273 +424515,225.99,67.799 +424516,223.78,68.325 +424517,229.49,66.82 +424518,227.02,67.312 +424519,224.67,67.805 +424520,222.45,68.298 +424521,228.18,66.893 +424522,225.7,67.351 +424523,223.36,67.811 +424524,221.12,68.271 +424525,226.88,66.966 +424526,224.39,67.39 +424527,222.04,67.816 +424528,219.79,68.243 +424529,225.57,67.039 +424530,223.08,67.43 +424531,220.72,67.822 +424532,218.47,68.215 +424533,224.26,67.113 +424534,221.77,67.469 +424535,219.4,67.827 +424536,217.14,68.187 +424537,222.95,67.187 +424538,220.46,67.509 +424539,218.08,67.832 +424540,215.82,68.158 +424541,221.64,67.261 +424542,219.14,67.548 +424543,216.77,67.838 +424544,214.5,68.129 +424545,220.33,67.336 +424546,217.83,67.588 +424547,215.45,67.843 +424548,213.18,68.1 +424549,219.01,67.41 +424550,216.51,67.628 +424551,214.14,67.848 +424552,211.87,68.071 +424553,217.69,67.485 +424554,215.2,67.667 +424555,212.82,67.853 +424556,210.55,68.041 +424557,216.37,67.56 +424558,213.88,67.707 +424559,211.51,67.858 +424560,209.24,68.011 +424561,215.05,67.634 +424562,212.56,67.747 +424563,210.19,67.863 +424564,207.93,67.982 +424565,213.72,67.709 +424566,211.24,67.787 +424567,208.88,67.868 +424568,206.62,67.952 +424569,212.4,67.784 +424570,209.93,67.827 +424571,207.57,67.872 +424572,205.31,67.922 +424573,211.07,67.859 +424574,208.61,67.866 +424575,206.26,67.877 +424576,204.01,67.891 +424577,209.74,67.934 +424578,207.29,67.906 +424579,204.95,67.882 +424580,202.7,67.861 +424581,208.41,68.009 +424582,205.97,67.946 +424583,203.64,67.887 +424584,201.4,67.831 +424585,207.07,68.083 +424586,204.65,67.986 +424587,202.33,67.892 +424588,200.1,67.801 +424589,205.74,68.158 +424590,203.32,68.026 +424591,201.02,67.897 +424592,198.8,67.771 +424593,204.4,68.232 +424594,202,68.065 +424595,199.71,67.901 +424596,197.5,67.741 +424597,203.06,68.306 +424598,200.68,68.105 +424599,198.4,67.906 +424600,196.2,67.711 +424601,201.72,68.38 +424602,199.36,68.144 +424603,197.09,67.911 +424604,194.91,67.682 +424605,200.38,68.454 +424606,198.03,68.184 +424607,195.78,67.916 +424608,193.62,67.652 +424609,199.03,68.528 +424610,196.71,68.223 +424611,194.48,67.922 +424612,192.33,67.623 +424613,197.69,68.601 +424614,195.38,68.263 +424615,193.17,67.927 +424616,191.04,67.594 +424617,196.34,68.674 +424618,194.06,68.302 +424619,191.86,67.932 +424620,189.75,67.565 +424621,194.99,68.746 +424622,192.73,68.341 +424623,190.56,67.937 +424624,188.46,67.537 +424625,193.64,68.819 +424626,191.4,68.38 +424627,189.25,67.943 +424628,187.18,67.509 +424629,192.29,68.891 +424630,190.08,68.419 +424631,187.95,67.948 +424632,185.9,67.481 +424633,190.93,68.962 +424634,188.75,68.457 +424635,186.65,67.954 +424636,184.62,67.454 +424637,189.58,69.033 +424638,187.42,68.496 +424639,185.34,67.96 +424640,183.34,67.427 +424641,188.22,69.103 +424642,186.09,68.534 +424643,184.04,67.966 +424644,182.06,67.4 +424645,186.86,69.173 +424646,184.76,68.572 +424647,182.74,67.972 +424648,180.78,67.374 +424649,185.5,69.243 +424650,183.43,68.61 +424651,181.44,67.978 +424652,179.51,67.348 +424653,184.14,69.312 +424654,182.1,68.648 +424655,180.14,67.985 +424656,178.23,67.323 +424657,182.77,69.38 +424658,180.77,68.686 +424659,178.84,67.991 +424660,176.96,67.298 +424661,181.41,69.448 +424662,179.44,68.723 +424663,177.54,67.998 +424664,175.69,67.274 +424665,180.04,69.515 +424666,178.11,68.76 +424667,176.24,68.005 +424668,174.42,67.251 +424669,178.67,69.581 +424670,176.77,68.797 +424671,174.94,68.013 +424672,173.15,67.228 +424673,177.3,69.647 +424674,175.44,68.834 +424675,173.64,68.02 +424676,171.89,67.206 +424677,175.93,69.712 +424678,174.11,68.871 +424679,172.34,68.028 +424680,170.62,67.184 +424681,174.56,69.777 +424682,172.77,68.907 +424683,171.04,68.035 +424684,169.36,67.163 +424685,173.19,69.84 +424686,171.44,68.943 +424687,169.74,68.044 +424688,168.1,67.143 +424689,171.81,69.903 +424690,170.1,68.979 +424691,168.45,68.052 +424692,166.84,67.123 +424693,170.44,69.966 +424694,168.77,69.015 +424695,167.15,68.06 +424696,165.58,67.105 +424697,169.06,70.027 +424698,167.43,69.05 +424699,165.85,68.069 +424700,164.32,67.087 +424701,167.68,70.087 +424702,166.1,69.085 +424703,164.56,68.078 +424704,163.06,67.07 +424705,166.3,70.147 +424706,164.76,69.12 +424707,163.26,68.088 +424708,161.8,67.053 +424709,164.92,70.206 +424710,163.42,69.154 +424711,161.97,68.097 +424712,160.55,67.038 +424713,163.54,70.264 +424714,162.09,69.188 +424715,160.67,68.107 +424716,159.3,67.023 +424717,162.16,70.321 +424718,160.75,69.222 +424719,159.38,68.118 +424720,158.04,67.009 +424721,160.78,70.377 +424722,159.41,69.256 +424723,158.08,68.128 +424724,156.79,66.997 +424725,159.4,70.433 +424726,158.07,69.289 +424727,156.79,68.139 +424728,155.54,66.985 +424729,158.01,70.487 +424730,156.74,69.322 +424731,155.5,68.15 +424732,154.29,66.974 +424733,156.63,70.54 +424734,155.4,69.354 +424735,154.2,68.161 +424736,153.04,66.963 +424737,155.24,70.593 +424738,154.06,69.386 +424739,152.91,68.173 +424740,151.8,66.954 +424741,153.85,70.644 +424742,152.72,69.418 +424743,151.62,68.185 +424744,150.55,66.946 +424745,152.46,70.694 +424746,151.38,69.45 +424747,150.33,68.198 +424748,149.3,66.939 +424749,151.08,70.744 +424750,150.04,69.481 +424751,149.03,68.21 +424752,148.06,66.933 +424753,149.69,70.792 +424754,148.7,69.512 +424755,147.74,68.224 +424756,146.81,66.928 +424757,148.3,70.84 +424758,147.36,69.543 +424759,146.45,68.237 +424760,145.57,66.924 +424761,146.91,70.886 +424762,146.02,69.573 +424763,145.16,68.251 +424764,144.33,66.921 +424765,145.52,70.931 +424766,144.68,69.603 +424767,143.87,68.265 +424768,143.09,66.92 +424769,144.12,70.975 +424770,143.34,69.632 +424771,142.58,68.279 +424772,141.85,66.919 +424773,142.73,71.018 +424774,141.99,69.661 +424775,141.29,68.294 +424776,140.61,66.919 +424777,141.34,71.06 +424778,140.65,69.69 +424779,140,68.31 +424780,139.37,66.921 +424781,139.95,71.101 +424782,139.31,69.718 +424783,138.7,68.325 +424784,138.13,66.923 +424785,138.55,71.14 +424786,137.97,69.746 +424787,137.41,68.341 +424788,136.89,66.927 +424789,137.16,71.179 +424790,136.63,69.773 +424791,136.12,68.357 +424792,135.65,66.932 +424793,135.77,71.216 +424794,135.29,69.801 +424795,134.83,68.374 +424796,134.41,66.938 +424797,134.37,71.252 +424798,133.94,69.827 +424799,133.54,68.391 +424800,133.17,66.945 +424801,132.98,71.288 +424802,132.6,69.854 +424803,132.25,68.409 +424804,131.94,66.954 +424805,131.59,71.321 +424806,131.26,69.88 +424807,130.96,68.427 +424808,130.7,66.964 +424809,130.19,71.354 +424810,129.92,69.905 +424811,129.67,68.445 +424812,129.46,66.974 +424813,128.8,71.386 +424814,128.57,69.931 +424815,128.38,68.464 +424816,128.22,66.986 +424817,127.4,71.416 +424818,127.23,69.955 +424819,127.09,68.483 +424820,126.99,67 +424821,126.01,71.445 +424822,125.89,69.98 +424823,125.8,68.502 +424824,125.75,67.014 +424825,124.61,71.473 +424826,124.55,70.004 +424827,124.51,68.522 +424828,124.52,67.03 +424829,123.22,71.5 +424830,123.2,70.027 +424831,123.22,68.542 +424832,123.28,67.047 +424833,121.82,71.526 +424834,121.86,70.05 +424835,121.93,68.563 +424836,122.04,67.065 +424837,120.43,71.55 +424838,120.52,70.073 +424839,120.64,68.584 +424840,120.81,67.084 +424841,119.04,71.574 +424842,119.18,70.096 +424843,119.36,68.605 +424844,119.57,67.105 +424845,117.64,71.596 +424846,117.84,70.118 +424847,118.07,68.627 +424848,118.34,67.126 +424849,116.25,71.617 +424850,116.49,70.139 +424851,116.77,68.65 +424852,117.1,67.149 +424853,114.86,71.636 +424854,115.15,70.16 +424855,115.48,68.672 +424856,115.86,67.174 +424857,113.46,71.655 +424858,113.81,70.181 +424859,114.19,68.695 +424860,114.63,67.199 +424861,112.07,71.672 +424862,112.47,70.201 +424863,112.9,68.719 +424864,113.39,67.226 +424865,110.68,71.688 +424866,111.12,70.221 +424867,111.61,68.743 +424868,112.15,67.254 +424869,109.29,71.703 +424870,109.78,70.241 +424871,110.32,68.767 +424872,110.91,67.283 +424873,107.9,71.717 +424874,108.44,70.26 +424875,109.03,68.791 +424876,109.67,67.313 +424877,106.51,71.73 +424878,107.1,70.279 +424879,107.74,68.816 +424880,108.44,67.345 +424881,105.12,71.741 +424882,105.76,70.297 +424883,106.45,68.842 +424884,107.2,67.377 +424885,103.73,71.751 +424886,104.42,70.315 +424887,105.16,68.868 +424888,105.96,67.411 +424889,102.34,71.761 +424890,103.08,70.333 +424891,103.87,68.894 +424892,104.72,67.446 +424893,100.95,71.769 +424894,101.74,70.35 +424895,102.58,68.921 +424896,103.47,67.483 +424897,99.563,71.775 +424898,100.39,70.367 +424899,101.28,68.948 +424900,102.23,67.52 +424901,98.176,71.781 +424902,99.054,70.383 +424903,99.991,68.975 +424904,100.99,67.559 +424905,96.79,71.786 +424906,97.714,70.399 +424907,98.698,69.003 +424908,99.747,67.598 +424909,95.405,71.789 +424910,96.374,70.415 +424911,97.405,69.031 +424912,98.503,67.639 +424913,94.02,71.792 +424914,95.035,70.43 +424915,96.112,69.059 +424916,97.259,67.681 +424917,92.636,71.793 +424918,93.695,70.445 +424919,94.819,69.088 +424920,96.013,67.724 +424921,91.254,71.793 +424922,92.356,70.459 +424923,93.525,69.117 +424924,94.766,67.769 +424925,89.872,71.792 +424926,91.017,70.473 +424927,92.231,69.147 +424928,93.519,67.814 +424929,88.491,71.79 +424930,89.679,70.487 +424931,90.936,69.177 +424932,92.27,67.86 +424933,87.111,71.787 +424934,88.341,70.501 +424935,89.642,69.207 +424936,91.021,67.908 +424937,85.732,71.783 +424938,87.003,70.514 +424939,88.347,69.238 +424940,89.77,67.956 +424941,84.354,71.778 +424942,85.665,70.527 +424943,87.051,69.269 +424944,88.519,68.006 +424945,82.977,71.772 +424946,84.328,70.539 +424947,85.755,69.3 +424948,87.266,68.056 +424949,81.601,71.765 +424950,82.991,70.551 +424951,84.459,69.331 +424952,86.012,68.108 +424953,80.226,71.757 +424954,81.655,70.563 +424955,83.162,69.363 +424956,84.757,68.161 +424957,78.853,71.748 +424958,80.319,70.574 +424959,81.865,69.396 +424960,83.5,68.214 +424961,77.48,71.738 +424962,78.983,70.585 +424963,80.568,69.428 +424964,82.243,68.269 +424965,76.109,71.727 +424966,77.648,70.596 +424967,79.27,69.461 +424968,80.984,68.324 +424969,74.739,71.716 +424970,76.313,70.607 +424971,77.971,69.494 +424972,79.724,68.38 +424973,73.37,71.703 +424974,74.978,70.617 +424975,76.672,69.528 +424976,78.462,68.438 +424977,72.002,71.689 +424978,73.644,70.627 +424979,75.373,69.562 +424980,77.199,68.496 +424981,70.636,71.675 +424982,72.311,70.636 +424983,74.073,69.596 +424984,75.935,68.555 +424985,69.271,71.66 +424986,70.977,70.646 +424987,72.773,69.63 +424988,74.669,68.614 +424989,67.907,71.644 +424990,69.645,70.655 +424991,71.472,69.665 +424992,73.402,68.675 +424993,66.545,71.627 +424994,68.312,70.664 +424995,70.171,69.699 +424996,72.133,68.736 +424997,65.184,71.609 +424998,66.98,70.672 +424999,68.87,69.735 +425000,70.863,68.799 +425001,63.824,71.591 +425002,65.649,70.68 +425003,67.567,69.77 +425004,69.591,68.861 +425005,62.466,71.572 +425006,64.318,70.688 +425007,66.265,69.806 +425008,68.317,68.925 +425009,61.109,71.552 +425010,62.987,70.696 +425011,64.961,69.841 +425012,67.042,68.989 +425013,59.754,71.531 +425014,61.657,70.704 +425015,63.657,69.877 +425016,65.766,69.054 +425017,58.4,71.51 +425018,60.328,70.711 +425019,62.353,69.914 +425020,64.487,69.12 +425021,57.047,71.488 +425022,58.999,70.718 +425023,61.048,69.95 +425024,63.207,69.186 +425025,55.696,71.466 +425026,57.67,70.725 +425027,59.743,69.987 +425028,61.926,69.253 +425029,54.347,71.443 +425030,56.342,70.732 +425031,58.437,70.024 +425032,60.643,69.321 +425033,52.999,71.419 +425034,55.015,70.738 +425035,57.13,70.061 +425036,59.357,69.389 +425037,51.652,71.395 +425038,53.688,70.745 +425039,55.823,70.098 +425040,58.071,69.457 +425041,50.307,71.37 +425042,52.362,70.751 +425043,54.515,70.135 +425044,56.782,69.526 +425045,48.964,71.345 +425046,51.036,70.757 +425047,53.207,70.173 +425048,55.492,69.596 +425049,47.622,71.319 +425050,49.71,70.763 +425051,51.898,70.211 +425052,54.2,69.666 +425053,46.282,71.293 +425054,48.385,70.768 +425055,50.589,70.249 +425056,52.906,69.736 +425057,44.944,71.267 +425058,47.061,70.774 +425059,49.279,70.287 +425060,51.61,69.807 +425061,43.607,71.24 +425062,45.737,70.779 +425063,47.968,70.325 +425064,50.313,69.878 +425065,42.271,71.212 +425066,44.414,70.784 +425067,46.657,70.363 +425068,49.014,69.95 +425069,40.938,71.184 +425070,43.091,70.79 +425071,45.345,70.401 +425072,47.713,70.021 +425073,39.606,71.156 +425074,41.769,70.795 +425075,44.033,70.44 +425076,46.41,70.093 +425077,38.275,71.128 +425078,40.448,70.8 +425079,42.72,70.478 +425080,45.105,70.166 +425081,36.946,71.099 +425082,39.127,70.804 +425083,41.406,70.517 +425084,43.799,70.238 +425085,35.619,71.07 +425086,37.806,70.809 +425087,40.092,70.556 +425088,42.49,70.311 +425089,34.294,71.041 +425090,36.486,70.814 +425091,38.777,70.594 +425092,41.18,70.384 +425093,32.97,71.012 +425094,35.167,70.819 +425095,37.461,70.633 +425096,39.868,70.457 +425097,31.648,70.983 +425098,33.848,70.823 +425099,36.145,70.672 +425100,38.554,70.53 +425101,30.327,70.953 +425102,32.53,70.828 +425103,34.829,70.711 +425104,37.238,70.604 +425105,29.008,70.923 +425106,31.212,70.832 +425107,33.511,70.75 +425108,35.92,70.677 +425109,27.691,70.894 +425110,29.895,70.837 +425111,32.194,70.789 +425112,34.601,70.751 +425113,26.376,70.864 +425114,28.579,70.841 +425115,30.875,70.828 +425116,33.279,70.824 +425117,25.062,70.834 +425118,27.263,70.846 +425119,29.556,70.867 +425120,31.956,70.897 +425121,23.75,70.804 +425122,25.947,70.85 +425123,28.236,70.906 +425124,30.631,70.971 +425125,22.439,70.774 +425126,24.632,70.855 +425127,26.916,70.944 +425128,29.304,71.044 +425129,21.131,70.744 +425130,23.318,70.859 +425131,25.595,70.983 +425132,27.975,71.117 +425133,19.823,70.715 +425134,22.004,70.864 +425135,24.273,71.022 +425136,26.645,71.19 +425137,18.518,70.685 +425138,20.691,70.868 +425139,22.951,71.061 +425140,25.312,71.263 +425141,17.214,70.656 +425142,19.378,70.873 +425143,21.629,71.1 +425144,23.978,71.336 +425145,15.912,70.626 +425146,18.066,70.878 +425147,20.305,71.138 +425148,22.642,71.408 +425149,14.611,70.597 +425150,16.755,70.883 +425151,18.981,71.177 +425152,21.305,71.481 +425153,13.312,70.568 +425154,15.444,70.887 +425155,17.657,71.215 +425156,19.965,71.553 +425157,12.015,70.54 +425158,14.133,70.892 +425159,16.332,71.254 +425160,18.624,71.624 +425161,10.72,70.511 +425162,12.823,70.897 +425163,15.006,71.292 +425164,17.281,71.696 +425165,9.4255,70.483 +425166,11.514,70.903 +425167,13.68,71.33 +425168,15.937,71.767 +425169,8.1331,70.456 +425170,10.205,70.908 +425171,12.353,71.368 +425172,14.59,71.837 +425173,6.8422,70.428 +425174,8.8967,70.913 +425175,11.026,71.406 +425176,13.242,71.908 +425177,5.5529,70.401 +425178,7.5889,70.919 +425179,9.6982,71.444 +425180,11.893,71.978 +425181,4.2652,70.375 +425182,6.2815,70.924 +425183,8.3697,71.482 +425184,10.542,72.047 +425185,2.979,70.349 +425186,4.9747,70.93 +425187,7.0408,71.519 +425188,9.1887,72.116 +425189,1.6944,70.323 +425190,3.6684,70.936 +425191,5.7112,71.557 +425192,7.8342,72.184 +425193,0.41124,70.298 +425194,2.3625,70.942 +425195,4.3812,71.594 +425196,6.4782,72.252 +425197,359.13,70.273 +425198,1.0572,70.949 +425199,3.0506,71.631 +425200,5.1206,72.32 +425201,357.85,70.249 +425202,359.75,70.955 +425203,1.7196,71.668 +425204,3.7615,72.386 +425205,356.57,70.225 +425206,358.45,70.962 +425207,0.38796,71.704 +425208,2.4009,72.453 +425209,355.29,70.202 +425210,357.14,70.969 +425211,359.06,71.741 +425212,1.0388,72.518 +425213,354.02,70.18 +425214,355.84,70.976 +425215,357.72,71.777 +425216,359.68,72.583 +425217,352.74,70.158 +425218,354.54,70.983 +425219,356.39,71.813 +425220,358.31,72.647 +425221,351.47,70.137 +425222,353.24,70.99 +425223,355.06,71.849 +425224,356.94,72.711 +425225,350.2,70.117 +425226,351.93,70.998 +425227,353.72,71.884 +425228,355.58,72.774 +425229,348.93,70.097 +425230,350.63,71.006 +425231,352.39,71.919 +425232,354.21,72.836 +425233,347.66,70.078 +425234,349.33,71.014 +425235,351.05,71.954 +425236,352.84,72.897 +425237,346.39,70.06 +425238,348.03,71.023 +425239,349.72,71.989 +425240,351.47,72.958 +425241,345.13,70.043 +425242,346.73,71.032 +425243,348.38,72.024 +425244,350.09,73.018 +425245,343.86,70.026 +425246,345.43,71.041 +425247,347.05,72.058 +425248,348.72,73.077 +425249,342.6,70.011 +425250,344.13,71.05 +425251,345.71,72.092 +425252,347.34,73.135 +425253,341.33,69.996 +425254,342.83,71.06 +425255,344.37,72.126 +425256,345.97,73.193 +425257,340.07,69.982 +425258,341.53,71.069 +425259,343.03,72.159 +425260,344.59,73.249 +425261,338.81,69.968 +425262,340.23,71.08 +425263,341.7,72.192 +425264,343.21,73.305 +425265,337.55,69.956 +425266,338.93,71.09 +425267,340.36,72.225 +425268,341.83,73.359 +425269,336.29,69.945 +425270,337.64,71.101 +425271,339.02,72.257 +425272,340.45,73.413 +425273,335.04,69.934 +425274,336.34,71.112 +425275,337.68,72.289 +425276,339.07,73.466 +425277,333.78,69.925 +425278,335.04,71.123 +425279,336.34,72.321 +425280,337.69,73.518 +425281,332.53,69.917 +425282,333.75,71.135 +425283,335,72.353 +425284,336.3,73.569 +425285,331.27,69.909 +425286,332.45,71.147 +425287,333.66,72.384 +425288,334.92,73.619 +425289,330.02,69.903 +425290,331.15,71.159 +425291,332.32,72.415 +425292,333.53,73.668 +425293,328.77,69.897 +425294,329.86,71.172 +425295,330.98,72.445 +425296,332.15,73.716 +425297,327.52,69.893 +425298,328.56,71.185 +425299,329.64,72.476 +425300,330.76,73.763 +425301,326.26,69.889 +425302,327.26,71.199 +425303,328.3,72.506 +425304,329.37,73.809 +425305,325.01,69.887 +425306,325.97,71.212 +425307,326.96,72.535 +425308,327.98,73.854 +425309,323.77,69.886 +425310,324.67,71.227 +425311,325.62,72.564 +425312,326.59,73.897 +425313,322.52,69.886 +425314,323.38,71.241 +425315,324.27,72.593 +425316,325.2,73.94 +425317,321.27,69.887 +425318,322.09,71.256 +425319,322.93,72.621 +425320,323.81,73.982 +425321,320.02,69.889 +425322,320.79,71.271 +425323,321.59,72.649 +425324,322.42,74.022 +425325,318.78,69.892 +425326,319.5,71.287 +425327,320.25,72.677 +425328,321.03,74.062 +425329,317.53,69.897 +425330,318.2,71.303 +425331,318.91,72.704 +425332,319.64,74.1 +425333,316.29,69.902 +425334,316.91,71.319 +425335,317.56,72.731 +425336,318.25,74.137 +425337,315.04,69.909 +425338,315.62,71.336 +425339,316.22,72.758 +425340,316.86,74.174 +425341,313.8,69.917 +425342,314.32,71.353 +425343,314.88,72.784 +425344,315.46,74.209 +425345,312.55,69.926 +425346,313.03,71.371 +425347,313.53,72.81 +425348,314.07,74.242 +425349,311.31,69.936 +425350,311.73,71.389 +425351,312.19,72.835 +425352,312.68,74.275 +425353,310.07,69.947 +425354,310.44,71.407 +425355,310.85,72.86 +425356,311.28,74.307 +425357,308.82,69.96 +425358,309.15,71.426 +425359,309.5,72.885 +425360,309.89,74.337 +425361,307.58,69.974 +425362,307.86,71.445 +425363,308.16,72.909 +425364,308.49,74.366 +425365,306.34,69.989 +425366,306.56,71.464 +425367,306.82,72.933 +425368,307.1,74.394 +425369,305.1,70.005 +425370,305.27,71.484 +425371,305.47,72.957 +425372,305.71,74.421 +425373,303.86,70.023 +425374,303.98,71.504 +425375,304.13,72.98 +425376,304.31,74.447 +425377,302.61,70.041 +425378,302.68,71.525 +425379,302.78,73.002 +425380,302.92,74.471 +425381,301.37,70.061 +425382,301.39,71.546 +425383,301.44,73.025 +425384,301.52,74.495 +425385,300.13,70.082 +425386,300.1,71.568 +425387,300.1,73.046 +425388,300.13,74.517 +425389,298.89,70.105 +425390,298.8,71.59 +425391,298.75,73.068 +425392,298.73,74.538 +425393,297.65,70.128 +425394,297.51,71.612 +425395,297.41,73.089 +425396,297.34,74.558 +425397,296.41,70.153 +425398,296.22,71.635 +425399,296.06,73.11 +425400,295.94,74.577 +425401,295.17,70.179 +425402,294.92,71.658 +425403,294.72,73.13 +425404,294.55,74.594 +425405,293.92,70.206 +425406,293.63,71.681 +425407,293.38,73.15 +425408,293.16,74.611 +425409,292.68,70.235 +425410,292.34,71.705 +425411,292.03,73.17 +425412,291.76,74.626 +425413,291.44,70.264 +425414,291.04,71.73 +425415,290.69,73.189 +425416,290.37,74.64 +425417,290.2,70.295 +425418,289.75,71.754 +425419,289.35,73.207 +425420,288.98,74.653 +425421,288.95,70.327 +425422,288.46,71.779 +425423,288,73.226 +425424,287.59,74.664 +425425,287.71,70.36 +425426,287.16,71.805 +425427,286.66,73.244 +425428,286.19,74.675 +425429,286.47,70.395 +425430,285.87,71.831 +425431,285.32,73.261 +425432,284.8,74.685 +425433,285.22,70.43 +425434,284.58,71.857 +425435,283.97,73.278 +425436,283.41,74.693 +425437,283.98,70.467 +425438,283.28,71.884 +425439,282.63,73.295 +425440,282.02,74.7 +425441,282.73,70.505 +425442,281.99,71.911 +425443,281.29,73.312 +425444,280.63,74.706 +425445,281.49,70.544 +425446,280.69,71.938 +425447,279.94,73.328 +425448,279.24,74.711 +425449,280.24,70.584 +425450,279.4,71.966 +425451,278.6,73.344 +425452,277.85,74.715 +425453,279,70.626 +425454,278.1,71.994 +425455,277.26,73.359 +425456,276.46,74.718 +425457,277.75,70.668 +425458,276.81,72.023 +425459,275.92,73.374 +425460,275.08,74.719 +425461,276.5,70.712 +425462,275.51,72.052 +425463,274.58,73.388 +425464,273.69,74.72 +425465,275.25,70.756 +425466,274.22,72.081 +425467,273.23,73.403 +425468,272.3,74.719 +425469,274,70.802 +425470,272.92,72.111 +425471,271.89,73.417 +425472,270.92,74.718 +425473,272.75,70.849 +425474,271.62,72.141 +425475,270.55,73.43 +425476,269.54,74.715 +425477,271.5,70.897 +425478,270.33,72.171 +425479,269.21,73.443 +425480,268.15,74.712 +425481,270.25,70.946 +425482,269.03,72.202 +425483,267.87,73.456 +425484,266.77,74.707 +425485,268.99,70.996 +425486,267.73,72.233 +425487,266.53,73.469 +425488,265.39,74.702 +425489,267.74,71.047 +425490,266.43,72.264 +425491,265.19,73.481 +425492,264.01,74.695 +425493,266.49,71.099 +425494,265.14,72.296 +425495,263.85,73.493 +425496,262.63,74.687 +425497,265.23,71.152 +425498,263.84,72.328 +425499,262.51,73.504 +425500,261.25,74.679 +425501,263.97,71.206 +425502,262.54,72.361 +425503,261.17,73.516 +425504,259.87,74.67 +425505,262.71,71.261 +425506,261.24,72.393 +425507,259.83,73.527 +425508,258.49,74.659 +425509,261.45,71.317 +425510,259.94,72.426 +425511,258.5,73.537 +425512,257.12,74.648 +425513,260.19,71.374 +425514,258.64,72.46 +425515,257.16,73.548 +425516,255.74,74.636 +425517,258.93,71.431 +425518,257.34,72.493 +425519,255.82,73.558 +425520,254.37,74.623 +425521,257.67,71.49 +425522,256.04,72.527 +425523,254.48,73.567 +425524,253,74.609 +425525,256.4,71.549 +425526,254.74,72.561 +425527,253.15,73.577 +425528,251.63,74.594 +425529,255.14,71.609 +425530,253.44,72.596 +425531,251.81,73.586 +425532,250.26,74.578 +425533,253.87,71.67 +425534,252.13,72.63 +425535,250.47,73.595 +425536,248.89,74.562 +425537,252.6,71.732 +425538,250.83,72.665 +425539,249.14,73.604 +425540,247.52,74.545 +425541,251.33,71.795 +425542,249.53,72.701 +425543,247.8,73.612 +425544,246.15,74.527 +425545,250.06,71.858 +425546,248.22,72.736 +425547,246.47,73.621 +425548,244.79,74.509 +425549,248.79,71.922 +425550,246.92,72.772 +425551,245.13,73.628 +425552,243.43,74.489 +425553,247.52,71.987 +425554,245.62,72.808 +425555,243.8,73.636 +425556,242.06,74.469 +425557,246.24,72.052 +425558,244.31,72.844 +425559,242.47,73.644 +425560,240.7,74.448 +425561,244.96,72.118 +425562,243.01,72.881 +425563,241.13,73.651 +425564,239.34,74.427 +425565,243.69,72.185 +425566,241.7,72.917 +425567,239.8,73.658 +425568,237.98,74.405 +425569,242.41,72.252 +425570,240.39,72.954 +425571,238.47,73.665 +425572,236.63,74.383 +425573,241.13,72.32 +425574,239.09,72.991 +425575,237.14,73.672 +425576,235.27,74.359 +425577,239.84,72.388 +425578,237.78,73.028 +425579,235.81,73.678 +425580,233.92,74.336 +425581,238.56,72.457 +425582,236.47,73.066 +425583,234.48,73.685 +425584,232.57,74.311 +425585,237.27,72.526 +425586,235.16,73.103 +425587,233.15,73.691 +425588,231.21,74.287 +425589,235.98,72.596 +425590,233.85,73.141 +425591,231.82,73.697 +425592,229.86,74.261 +425593,234.69,72.666 +425594,232.54,73.179 +425595,230.49,73.703 +425596,228.52,74.236 +425597,233.4,72.737 +425598,231.23,73.217 +425599,229.16,73.708 +425600,227.17,74.21 +425601,232.11,72.808 +425602,229.92,73.255 +425603,227.83,73.714 +425604,225.83,74.183 +425605,230.82,72.88 +425606,228.61,73.293 +425607,226.5,73.72 +425608,224.48,74.156 +425609,229.52,72.951 +425610,227.3,73.332 +425611,225.18,73.725 +425612,223.14,74.129 +425613,228.22,73.023 +425614,225.99,73.37 +425615,223.85,73.73 +425616,221.8,74.101 +425617,226.92,73.096 +425618,224.67,73.409 +425619,222.52,73.735 +425620,220.46,74.073 +425621,225.62,73.168 +425622,223.36,73.448 +425623,221.2,73.74 +425624,219.12,74.045 +425625,224.32,73.241 +425626,222.05,73.486 +425627,219.87,73.745 +425628,217.79,74.016 +425629,223.01,73.314 +425630,220.73,73.525 +425631,218.55,73.75 +425632,216.45,73.988 +425633,221.71,73.388 +425634,219.42,73.564 +425635,217.22,73.755 +425636,215.12,73.959 +425637,220.4,73.461 +425638,218.1,73.603 +425639,215.9,73.76 +425640,213.79,73.93 +425641,219.09,73.534 +425642,216.78,73.642 +425643,214.58,73.765 +425644,212.46,73.901 +425645,217.78,73.608 +425646,215.47,73.681 +425647,213.26,73.77 +425648,211.13,73.871 +425649,216.46,73.682 +425650,214.15,73.72 +425651,211.93,73.774 +425652,209.81,73.842 +425653,215.15,73.755 +425654,212.83,73.759 +425655,210.61,73.779 +425656,208.48,73.812 +425657,213.83,73.829 +425658,211.51,73.799 +425659,209.29,73.784 +425660,207.16,73.783 +425661,212.51,73.903 +425662,210.19,73.838 +425663,207.97,73.788 +425664,205.84,73.753 +425665,211.19,73.976 +425666,208.87,73.877 +425667,206.65,73.793 +425668,204.52,73.724 +425669,209.87,74.05 +425670,207.55,73.916 +425671,205.33,73.798 +425672,203.2,73.694 +425673,208.54,74.123 +425674,206.23,73.955 +425675,204.02,73.803 +425676,201.88,73.665 +425677,207.22,74.196 +425678,204.91,73.994 +425679,202.7,73.808 +425680,200.57,73.635 +425681,205.89,74.269 +425682,203.59,74.033 +425683,201.38,73.812 +425684,199.26,73.606 +425685,204.56,74.342 +425686,202.26,74.072 +425687,200.06,73.817 +425688,197.94,73.577 +425689,203.23,74.415 +425690,200.94,74.111 +425691,198.75,73.822 +425692,196.63,73.548 +425693,201.89,74.487 +425694,199.62,74.149 +425695,197.43,73.827 +425696,195.33,73.52 +425697,200.56,74.559 +425698,198.29,74.188 +425699,196.12,73.832 +425700,194.02,73.491 +425701,199.22,74.631 +425702,196.97,74.227 +425703,194.8,73.838 +425704,192.71,73.463 +425705,197.88,74.703 +425706,195.64,74.265 +425707,193.49,73.843 +425708,191.41,73.435 +425709,196.54,74.774 +425710,194.31,74.304 +425711,192.17,73.849 +425712,190.11,73.408 +425713,195.2,74.845 +425714,192.99,74.342 +425715,190.86,73.854 +425716,188.81,73.38 +425717,193.86,74.915 +425718,191.66,74.38 +425719,189.55,73.86 +425720,187.51,73.354 +425721,192.51,74.985 +425722,190.33,74.418 +425723,188.23,73.866 +425724,186.21,73.327 +425725,191.17,75.055 +425726,189,74.456 +425727,186.92,73.872 +425728,184.92,73.301 +425729,189.82,75.124 +425730,187.67,74.494 +425731,185.61,73.878 +425732,183.62,73.276 +425733,188.47,75.192 +425734,186.34,74.531 +425735,184.3,73.884 +425736,182.33,73.25 +425737,187.12,75.26 +425738,185.01,74.569 +425739,182.99,73.891 +425740,181.04,73.226 +425741,185.76,75.327 +425742,183.68,74.606 +425743,181.68,73.897 +425744,179.75,73.202 +425745,184.41,75.394 +425746,182.35,74.643 +425747,180.37,73.904 +425748,178.46,73.178 +425749,183.05,75.461 +425750,181.02,74.68 +425751,179.06,73.911 +425752,177.17,73.155 +425753,181.69,75.526 +425754,179.69,74.716 +425755,177.75,73.919 +425756,175.89,73.133 +425757,180.33,75.591 +425758,178.35,74.753 +425759,176.45,73.926 +425760,174.6,73.111 +425761,178.97,75.655 +425762,177.02,74.789 +425763,175.14,73.934 +425764,173.32,73.09 +425765,177.61,75.719 +425766,175.69,74.825 +425767,173.83,73.942 +425768,172.04,73.07 +425769,176.25,75.782 +425770,174.35,74.861 +425771,172.53,73.95 +425772,170.76,73.05 +425773,174.88,75.844 +425774,173.02,74.896 +425775,171.22,73.959 +425776,169.48,73.031 +425777,173.52,75.905 +425778,171.68,74.931 +425779,169.91,73.967 +425780,168.2,73.013 +425781,172.15,75.966 +425782,170.35,74.966 +425783,168.61,73.976 +425784,166.93,72.996 +425785,170.78,76.026 +425786,169.01,75.001 +425787,167.3,73.985 +425788,165.65,72.979 +425789,169.41,76.085 +425790,167.67,75.035 +425791,166,73.995 +425792,164.38,72.963 +425793,168.04,76.143 +425794,166.34,75.07 +425795,164.7,74.005 +425796,163.11,72.948 +425797,166.66,76.2 +425798,165,75.104 +425799,163.39,74.015 +425800,161.84,72.934 +425801,165.29,76.257 +425802,163.66,75.137 +425803,162.09,74.025 +425804,160.57,72.921 +425805,163.92,76.312 +425806,162.32,75.171 +425807,160.79,74.036 +425808,159.3,72.908 +425809,162.54,76.367 +425810,160.98,75.204 +425811,159.48,74.047 +425812,158.03,72.897 +425813,161.16,76.421 +425814,159.64,75.236 +425815,158.18,74.058 +425816,156.77,72.886 +425817,159.78,76.473 +425818,158.3,75.269 +425819,156.88,74.07 +425820,155.5,72.877 +425821,158.4,76.525 +425822,156.96,75.301 +425823,155.58,74.082 +425824,154.24,72.868 +425825,157.02,76.576 +425826,155.62,75.333 +425827,154.28,74.094 +425828,152.97,72.86 +425829,155.64,76.626 +425830,154.28,75.364 +425831,152.98,74.107 +425832,151.71,72.854 +425833,154.26,76.675 +425834,152.94,75.395 +425835,151.68,74.12 +425836,150.45,72.848 +425837,152.88,76.723 +425838,151.6,75.426 +425839,150.37,74.133 +425840,149.19,72.844 +425841,151.49,76.77 +425842,150.26,75.457 +425843,149.08,74.146 +425844,147.93,72.84 +425845,150.11,76.815 +425846,148.92,75.487 +425847,147.78,74.16 +425848,146.67,72.838 +425849,148.72,76.86 +425850,147.58,75.516 +425851,146.48,74.175 +425852,145.42,72.836 +425853,147.33,76.904 +425854,146.23,75.546 +425855,145.18,74.19 +425856,144.16,72.836 +425857,145.95,76.946 +425858,144.89,75.575 +425859,143.88,74.205 +425860,142.9,72.837 +425861,144.56,76.988 +425862,143.55,75.604 +425863,142.58,74.22 +425864,141.65,72.839 +425865,143.17,77.028 +425866,142.2,75.632 +425867,141.28,74.236 +425868,140.39,72.842 +425869,141.78,77.067 +425870,140.86,75.66 +425871,139.98,74.252 +425872,139.14,72.846 +425873,140.39,77.106 +425874,139.52,75.687 +425875,138.68,74.269 +425876,137.89,72.851 +425877,139,77.143 +425878,138.17,75.715 +425879,137.39,74.286 +425880,136.63,72.858 +425881,137.61,77.179 +425882,136.83,75.741 +425883,136.09,74.303 +425884,135.38,72.865 +425885,136.21,77.213 +425886,135.48,75.768 +425887,134.79,74.321 +425888,134.13,72.874 +425889,134.82,77.247 +425890,134.14,75.794 +425891,133.49,74.339 +425892,132.88,72.884 +425893,133.43,77.28 +425894,132.8,75.82 +425895,132.2,74.358 +425896,131.63,72.895 +425897,132.04,77.311 +425898,131.45,75.845 +425899,130.9,74.377 +425900,130.38,72.908 +425901,130.64,77.341 +425902,130.11,75.87 +425903,129.6,74.396 +425904,129.13,72.921 +425905,129.25,77.37 +425906,128.76,75.894 +425907,128.31,74.416 +425908,127.88,72.936 +425909,127.86,77.398 +425910,127.42,75.919 +425911,127.01,74.436 +425912,126.63,72.952 +425913,126.46,77.425 +425914,126.07,75.942 +425915,125.71,74.457 +425916,125.39,72.969 +425917,125.07,77.45 +425918,124.73,75.966 +425919,124.42,74.478 +425920,124.14,72.988 +425921,123.67,77.474 +425922,123.38,75.989 +425923,123.12,74.499 +425924,122.89,73.008 +425925,122.28,77.498 +425926,122.03,76.011 +425927,121.82,74.521 +425928,121.64,73.029 +425929,120.88,77.52 +425930,120.69,76.033 +425931,120.53,74.543 +425932,120.39,73.051 +425933,119.49,77.54 +425934,119.34,76.055 +425935,119.23,74.566 +425936,119.15,73.074 +425937,118.09,77.56 +425938,118,76.077 +425939,117.93,74.589 +425940,117.9,73.099 +425941,116.7,77.579 +425942,116.65,76.098 +425943,116.64,74.613 +425944,116.65,73.125 +425945,115.31,77.596 +425946,115.31,76.118 +425947,115.34,74.636 +425948,115.41,73.152 +425949,113.91,77.612 +425950,113.96,76.138 +425951,114.04,74.661 +425952,114.16,73.18 +425953,112.52,77.627 +425954,112.61,76.158 +425955,112.75,74.685 +425956,112.91,73.21 +425957,111.12,77.641 +425958,111.27,76.178 +425959,111.45,74.71 +425960,111.66,73.24 +425961,109.73,77.654 +425962,109.92,76.197 +425963,110.15,74.736 +425964,110.42,73.272 +425965,108.33,77.665 +425966,108.58,76.216 +425967,108.86,74.762 +425968,109.17,73.306 +425969,106.94,77.675 +425970,107.23,76.234 +425971,107.56,74.788 +425972,107.92,73.34 +425973,105.55,77.685 +425974,105.89,76.252 +425975,106.26,74.815 +425976,106.67,73.376 +425977,104.15,77.693 +425978,104.54,76.269 +425979,104.96,74.842 +425980,105.42,73.412 +425981,102.76,77.7 +425982,103.2,76.286 +425983,103.67,74.869 +425984,104.17,73.45 +425985,101.37,77.706 +425986,101.85,76.303 +425987,102.37,74.897 +425988,102.92,73.489 +425989,99.979,77.71 +425990,100.51,76.32 +425991,101.07,74.926 +425992,101.67,73.53 +425993,98.588,77.714 +425994,99.162,76.336 +425995,99.774,74.954 +425996,100.42,73.571 +425997,97.197,77.716 +425998,97.817,76.351 +425999,98.475,74.983 +426000,99.174,73.614 +426001,95.807,77.718 +426002,96.473,76.367 +426003,97.177,75.013 +426004,97.923,73.658 +426005,94.418,77.718 +426006,95.128,76.382 +426007,95.879,75.042 +426008,96.671,73.702 +426009,93.029,77.718 +426010,93.784,76.396 +426011,94.58,75.073 +426012,95.418,73.748 +426013,91.641,77.716 +426014,92.44,76.411 +426015,93.281,75.103 +426016,94.165,73.795 +426017,90.254,77.713 +426018,91.097,76.424 +426019,91.982,75.134 +426020,92.912,73.844 +426021,88.867,77.709 +426022,89.753,76.438 +426023,90.682,75.165 +426024,91.657,73.893 +426025,87.481,77.705 +426026,88.41,76.451 +426027,89.383,75.197 +426028,90.402,73.943 +426029,86.096,77.699 +426030,87.067,76.464 +426031,88.083,75.229 +426032,89.146,73.994 +426033,84.712,77.692 +426034,85.724,76.477 +426035,86.783,75.261 +426036,87.889,74.047 +426037,83.328,77.685 +426038,84.382,76.489 +426039,85.482,75.294 +426040,86.632,74.1 +426041,81.945,77.676 +426042,83.039,76.501 +426043,84.181,75.327 +426044,85.373,74.155 +426045,80.564,77.666 +426046,81.697,76.513 +426047,82.88,75.36 +426048,84.114,74.21 +426049,79.183,77.656 +426050,80.356,76.524 +426051,81.578,75.393 +426052,82.854,74.266 +426053,77.803,77.644 +426054,79.014,76.535 +426055,80.276,75.427 +426056,81.592,74.323 +426057,76.424,77.632 +426058,77.673,76.546 +426059,78.974,75.462 +426060,80.33,74.382 +426061,75.046,77.619 +426062,76.333,76.556 +426063,77.672,75.496 +426064,79.067,74.441 +426065,73.669,77.605 +426066,74.992,76.566 +426067,76.369,75.531 +426068,77.802,74.501 +426069,72.294,77.59 +426070,73.652,76.576 +426071,75.065,75.566 +426072,76.537,74.561 +426073,70.919,77.574 +426074,72.312,76.586 +426075,73.762,75.601 +426076,75.27,74.623 +426077,69.545,77.558 +426078,70.973,76.595 +426079,72.457,75.637 +426080,74.002,74.686 +426081,68.173,77.541 +426082,69.634,76.604 +426083,71.153,75.673 +426084,72.733,74.749 +426085,66.802,77.523 +426086,68.296,76.613 +426087,69.848,75.709 +426088,71.463,74.813 +426089,65.431,77.504 +426090,66.957,76.622 +426091,68.542,75.746 +426092,70.191,74.878 +426093,64.062,77.485 +426094,65.619,76.63 +426095,67.237,75.782 +426096,68.919,74.943 +426097,62.695,77.465 +426098,64.282,76.639 +426099,65.93,75.819 +426100,67.645,75.009 +426101,61.328,77.444 +426102,62.945,76.646 +426103,64.624,75.856 +426104,66.369,75.076 +426105,59.963,77.423 +426106,61.608,76.654 +426107,63.316,75.894 +426108,65.093,75.144 +426109,58.599,77.4 +426110,60.272,76.662 +426111,62.009,75.931 +426112,63.815,75.212 +426113,57.237,77.378 +426114,58.936,76.669 +426115,60.701,75.969 +426116,62.535,75.281 +426117,55.875,77.355 +426118,57.601,76.676 +426119,59.392,76.007 +426120,61.254,75.35 +426121,54.515,77.331 +426122,56.266,76.683 +426123,58.083,76.045 +426124,59.972,75.42 +426125,53.157,77.307 +426126,54.932,76.69 +426127,56.773,76.084 +426128,58.688,75.49 +426129,51.8,77.282 +426130,53.597,76.697 +426131,55.463,76.122 +426132,57.403,75.561 +426133,50.444,77.257 +426134,52.264,76.703 +426135,54.153,76.161 +426136,56.116,75.633 +426137,49.089,77.231 +426138,50.931,76.71 +426139,52.841,76.2 +426140,54.828,75.705 +426141,47.736,77.205 +426142,49.598,76.716 +426143,51.53,76.239 +426144,53.538,75.777 +426145,46.385,77.178 +426146,48.266,76.722 +426147,50.218,76.278 +426148,52.247,75.85 +426149,45.035,77.152 +426150,46.934,76.728 +426151,48.905,76.317 +426152,50.954,75.923 +426153,43.686,77.124 +426154,45.603,76.734 +426155,47.592,76.357 +426156,49.659,75.996 +426157,42.339,77.097 +426158,44.272,76.74 +426159,46.278,76.396 +426160,48.363,76.07 +426161,40.993,77.069 +426162,42.942,76.745 +426163,44.964,76.436 +426164,47.065,76.144 +426165,39.649,77.041 +426166,41.612,76.751 +426167,43.649,76.476 +426168,45.766,76.218 +426169,38.306,77.012 +426170,40.283,76.756 +426171,42.333,76.515 +426172,44.465,76.292 +426173,36.965,76.984 +426174,38.954,76.762 +426175,41.017,76.555 +426176,43.162,76.367 +426177,35.625,76.955 +426178,37.626,76.767 +426179,39.701,76.595 +426180,41.858,76.442 +426181,34.287,76.926 +426182,36.298,76.773 +426183,38.384,76.635 +426184,40.552,76.517 +426185,32.95,76.897 +426186,34.971,76.778 +426187,37.066,76.675 +426188,39.245,76.592 +426189,31.615,76.868 +426190,33.644,76.783 +426191,35.748,76.715 +426192,37.935,76.667 +426193,30.282,76.839 +426194,32.318,76.788 +426195,34.429,76.756 +426196,36.624,76.743 +426197,28.95,76.809 +426198,30.992,76.794 +426199,33.11,76.796 +426200,35.312,76.818 +426201,27.619,76.78 +426202,29.667,76.799 +426203,31.79,76.836 +426204,33.997,76.893 +426205,26.29,76.751 +426206,28.342,76.804 +426207,30.469,76.876 +426208,32.681,76.968 +426209,24.963,76.721 +426210,27.018,76.809 +426211,29.148,76.916 +426212,31.364,77.044 +426213,23.637,76.692 +426214,25.694,76.815 +426215,27.827,76.956 +426216,30.044,77.119 +426217,22.313,76.663 +426218,24.371,76.82 +426219,26.504,76.996 +426220,28.723,77.194 +426221,20.99,76.634 +426222,23.048,76.826 +426223,25.182,77.036 +426224,27.4,77.268 +426225,19.669,76.605 +426226,21.726,76.831 +426227,23.858,77.076 +426228,26.075,77.343 +426229,18.349,76.576 +426230,20.405,76.836 +426231,22.534,77.116 +426232,24.749,77.418 +426233,17.031,76.547 +426234,19.084,76.842 +426235,21.21,77.156 +426236,23.421,77.492 +426237,15.715,76.519 +426238,17.763,76.848 +426239,19.885,77.196 +426240,22.092,77.566 +426241,14.4,76.491 +426242,16.443,76.853 +426243,18.559,77.236 +426244,20.76,77.64 +426245,13.087,76.463 +426246,15.123,76.859 +426247,17.233,77.275 +426248,19.427,77.713 +426249,11.775,76.435 +426250,13.804,76.865 +426251,15.906,77.315 +426252,18.092,77.786 +426253,10.464,76.408 +426254,12.486,76.871 +426255,14.579,77.354 +426256,16.756,77.859 +426257,9.1557,76.381 +426258,11.167,76.878 +426259,13.251,77.394 +426260,15.418,77.931 +426261,7.8485,76.355 +426262,9.8499,76.884 +426263,11.923,77.433 +426264,14.078,78.003 +426265,6.5427,76.329 +426266,8.5328,76.89 +426267,10.594,77.472 +426268,12.737,78.075 +426269,5.2385,76.303 +426270,7.2161,76.897 +426271,9.2641,77.511 +426272,11.394,78.146 +426273,3.9357,76.278 +426274,5.9,76.904 +426275,7.934,77.549 +426276,10.049,78.216 +426277,2.6345,76.253 +426278,4.5844,76.911 +426279,6.6034,77.588 +426280,8.7028,78.286 +426281,1.3347,76.229 +426282,3.2692,76.918 +426283,5.2723,77.626 +426284,7.355,78.355 +426285,0.036335,76.205 +426286,1.9546,76.925 +426287,3.9406,77.665 +426288,6.0056,78.424 +426289,358.74,76.182 +426290,0.64036,76.933 +426291,2.6084,77.703 +426292,4.6546,78.493 +426293,357.44,76.16 +426294,359.33,76.941 +426295,1.2756,77.74 +426296,3.3021,78.56 +426297,356.15,76.138 +426298,358.01,76.949 +426299,359.94,77.778 +426300,1.948,78.627 +426301,354.86,76.117 +426302,356.7,76.957 +426303,358.61,77.815 +426304,0.59244,78.694 +426305,353.57,76.096 +426306,355.39,76.965 +426307,357.27,77.853 +426308,359.24,78.759 +426309,352.28,76.076 +426310,354.08,76.974 +426311,355.94,77.89 +426312,357.88,78.824 +426313,350.99,76.057 +426314,352.76,76.983 +426315,354.6,77.926 +426316,356.52,78.888 +426317,349.7,76.039 +426318,351.45,76.992 +426319,353.27,77.963 +426320,355.16,78.952 +426321,348.41,76.021 +426322,350.14,77.002 +426323,351.93,77.999 +426324,353.79,79.015 +426325,347.13,76.004 +426326,348.83,77.011 +426327,350.6,78.035 +426328,352.43,79.077 +426329,345.85,75.988 +426330,347.52,77.021 +426331,349.26,78.071 +426332,351.06,79.138 +426333,344.56,75.973 +426334,346.21,77.031 +426335,347.92,78.106 +426336,349.7,79.198 +426337,343.28,75.958 +426338,344.9,77.042 +426339,346.58,78.141 +426340,348.33,79.257 +426341,342,75.944 +426342,343.6,77.053 +426343,345.24,78.176 +426344,346.96,79.316 +426345,340.73,75.932 +426346,342.29,77.064 +426347,343.91,78.211 +426348,345.59,79.373 +426349,339.45,75.92 +426350,340.98,77.075 +426351,342.57,78.245 +426352,344.22,79.43 +426353,338.17,75.909 +426354,339.67,77.087 +426355,341.23,78.279 +426356,342.84,79.486 +426357,336.9,75.899 +426358,338.37,77.099 +426359,339.89,78.313 +426360,341.47,79.541 +426361,335.62,75.89 +426362,337.06,77.112 +426363,338.55,78.346 +426364,340.09,79.595 +426365,334.35,75.882 +426366,335.75,77.124 +426367,337.2,78.379 +426368,338.71,79.647 +426369,333.08,75.875 +426370,334.45,77.137 +426371,335.86,78.412 +426372,337.34,79.699 +426373,331.81,75.869 +426374,333.14,77.151 +426375,334.52,78.444 +426376,335.96,79.75 +426377,330.54,75.864 +426378,331.83,77.165 +426379,333.18,78.476 +426380,334.58,79.8 +426381,329.27,75.861 +426382,330.53,77.179 +426383,331.84,78.508 +426384,333.2,79.849 +426385,328,75.858 +426386,329.22,77.193 +426387,330.49,78.54 +426388,331.82,79.897 +426389,326.74,75.856 +426390,327.92,77.208 +426391,329.15,78.571 +426392,330.43,79.943 +426393,325.47,75.855 +426394,326.62,77.223 +426395,327.81,78.601 +426396,329.05,79.989 +426397,324.21,75.856 +426398,325.31,77.239 +426399,326.46,78.632 +426400,327.66,80.0336 +426401,322.94,75.857 +426402,324.01,77.255 +426403,325.12,78.662 +426404,326.28,80.077 +426405,321.68,75.86 +426406,322.7,77.271 +426407,323.77,78.691 +426408,324.89,80.1193 +426409,320.42,75.864 +426410,321.4,77.288 +426411,322.43,78.72 +426412,323.51,80.1605 +426413,319.15,75.869 +426414,320.1,77.305 +426415,321.08,78.749 +426416,322.12,80.2006 +426417,317.89,75.875 +426418,318.8,77.323 +426419,319.74,78.778 +426420,320.73,80.2396 +426421,316.63,75.882 +426422,317.49,77.341 +426423,318.39,78.806 +426424,319.34,80.2773 +426425,315.37,75.891 +426426,316.19,77.359 +426427,317.05,78.833 +426428,317.95,80.314 +426429,314.11,75.901 +426430,314.89,77.378 +426431,315.7,78.861 +426432,316.56,80.3495 +426433,312.85,75.912 +426434,313.59,77.397 +426435,314.36,78.888 +426436,315.17,80.3838 +426437,311.6,75.924 +426438,312.28,77.416 +426439,313.01,78.914 +426440,313.78,80.4169 +426441,310.34,75.937 +426442,310.98,77.436 +426443,311.66,78.94 +426444,312.38,80.4489 +426445,309.08,75.952 +426446,309.68,77.456 +426447,310.32,78.966 +426448,310.99,80.4796 +426449,307.82,75.967 +426450,308.38,77.477 +426451,308.97,78.991 +426452,309.6,80.5092 +426453,306.57,75.985 +426454,307.08,77.498 +426455,307.62,79.016 +426456,308.21,80.5376 +426457,305.31,76.003 +426458,305.78,77.52 +426459,306.28,79.041 +426460,306.81,80.5648 +426461,304.06,76.022 +426462,304.48,77.542 +426463,304.93,79.065 +426464,305.42,80.5909 +426465,302.8,76.043 +426466,303.17,77.564 +426467,303.58,79.089 +426468,304.02,80.6157 +426469,301.55,76.065 +426470,301.87,77.587 +426471,302.23,79.112 +426472,302.63,80.6393 +426473,300.29,76.088 +426474,300.57,77.61 +426475,300.89,79.135 +426476,301.23,80.6617 +426477,299.04,76.113 +426478,299.27,77.634 +426479,299.54,79.158 +426480,299.84,80.6829 +426481,297.78,76.139 +426482,297.97,77.658 +426483,298.19,79.18 +426484,298.44,80.703 +426485,296.53,76.166 +426486,296.67,77.683 +426487,296.84,79.202 +426488,297.05,80.7218 +426489,295.27,76.194 +426490,295.37,77.708 +426491,295.49,79.223 +426492,295.65,80.7394 +426493,294.02,76.224 +426494,294.07,77.733 +426495,294.15,79.244 +426496,294.26,80.7559 +426497,292.77,76.254 +426498,292.77,77.759 +426499,292.8,79.265 +426500,292.86,80.7712 +426501,291.51,76.286 +426502,291.47,77.785 +426503,291.45,79.285 +426504,291.47,80.7852 +426505,290.26,76.32 +426506,290.16,77.811 +426507,290.1,79.305 +426508,290.07,80.7982 +426509,289,76.354 +426510,288.86,77.838 +426511,288.75,79.324 +426512,288.68,80.8099 +426513,287.75,76.39 +426514,287.56,77.866 +426515,287.41,79.343 +426516,287.28,80.8205 +426517,286.5,76.427 +426518,286.26,77.893 +426519,286.06,79.362 +426520,285.89,80.8299 +426521,285.24,76.465 +426522,284.96,77.922 +426523,284.71,79.38 +426524,284.49,80.8381 +426525,283.99,76.504 +426526,283.66,77.95 +426527,283.36,79.398 +426528,283.1,80.8452 +426529,282.73,76.545 +426530,282.36,77.979 +426531,282.01,79.415 +426532,281.7,80.8512 +426533,281.48,76.586 +426534,281.05,78.009 +426535,280.67,79.432 +426536,280.31,80.8561 +426537,280.22,76.629 +426538,279.75,78.038 +426539,279.32,79.449 +426540,278.92,80.8598 +426541,278.96,76.673 +426542,278.45,78.069 +426543,277.97,79.465 +426544,277.52,80.8624 +426545,277.71,76.719 +426546,277.15,78.099 +426547,276.62,79.481 +426548,276.13,80.8639 +426549,276.45,76.765 +426550,275.85,78.13 +426551,275.28,79.497 +426552,274.74,80.8644 +426553,275.19,76.812 +426554,274.54,78.161 +426555,273.93,79.512 +426556,273.35,80.8637 +426557,273.94,76.861 +426558,273.24,78.193 +426559,272.58,79.527 +426560,271.96,80.862 +426561,272.68,76.911 +426562,271.94,78.225 +426563,271.24,79.542 +426564,270.57,80.8592 +426565,271.42,76.962 +426566,270.64,78.258 +426567,269.89,79.556 +426568,269.18,80.8554 +426569,270.16,77.014 +426570,269.33,78.29 +426571,268.54,79.57 +426572,267.79,80.8506 +426573,268.9,77.067 +426574,268.03,78.323 +426575,267.2,79.583 +426576,266.4,80.8448 +426577,267.64,77.121 +426578,266.73,78.357 +426579,265.85,79.597 +426580,265.01,80.838 +426581,266.37,77.176 +426582,265.42,78.391 +426583,264.5,79.61 +426584,263.62,80.8302 +426585,265.11,77.232 +426586,264.12,78.425 +426587,263.16,79.622 +426588,262.24,80.8214 +426589,263.85,77.289 +426590,262.81,78.46 +426591,261.81,79.634 +426592,260.85,80.8117 +426593,262.59,77.347 +426594,261.51,78.494 +426595,260.47,79.646 +426596,259.47,80.801 +426597,261.32,77.406 +426598,260.2,78.53 +426599,259.12,79.658 +426600,258.08,80.7894 +426601,260.05,77.466 +426602,258.9,78.565 +426603,257.78,79.669 +426604,256.7,80.777 +426605,258.79,77.527 +426606,257.59,78.601 +426607,256.43,79.68 +426608,255.32,80.7636 +426609,257.52,77.589 +426610,256.28,78.637 +426611,255.09,79.691 +426612,253.94,80.7494 +426613,256.25,77.652 +426614,254.98,78.673 +426615,253.75,79.701 +426616,252.56,80.7344 +426617,254.98,77.715 +426618,253.67,78.71 +426619,252.4,79.712 +426620,251.18,80.7185 +426621,253.71,77.78 +426622,252.36,78.747 +426623,251.06,79.722 +426624,249.8,80.7019 +426625,252.44,77.845 +426626,251.06,78.784 +426627,249.72,79.731 +426628,248.42,80.6844 +426629,251.17,77.911 +426630,249.75,78.822 +426631,248.37,79.741 +426632,247.04,80.6662 +426633,249.89,77.978 +426634,248.44,78.859 +426635,247.03,79.75 +426636,245.67,80.6473 +426637,248.62,78.046 +426638,247.13,78.897 +426639,245.69,79.759 +426640,244.29,80.6276 +426641,247.34,78.114 +426642,245.82,78.936 +426643,244.35,79.767 +426644,242.92,80.6072 +426645,246.07,78.183 +426646,244.51,78.974 +426647,243.01,79.776 +426648,241.55,80.5862 +426649,244.79,78.253 +426650,243.2,79.013 +426651,241.67,79.784 +426652,240.18,80.5645 +426653,243.51,78.323 +426654,241.89,79.052 +426655,240.33,79.792 +426656,238.81,80.5422 +426657,242.23,78.394 +426658,240.58,79.091 +426659,238.99,79.8 +426660,237.44,80.5193 +426661,240.95,78.466 +426662,239.27,79.13 +426663,237.65,79.808 +426664,236.07,80.4958 +426665,239.66,78.538 +426666,237.96,79.17 +426667,236.31,79.815 +426668,234.71,80.4718 +426669,238.38,78.61 +426670,236.65,79.21 +426671,234.97,79.823 +426672,233.34,80.4472 +426673,237.09,78.684 +426674,235.33,79.249 +426675,233.63,79.83 +426676,231.98,80.4221 +426677,235.8,78.757 +426678,234.02,79.29 +426679,232.29,79.837 +426680,230.62,80.3965 +426681,234.52,78.832 +426682,232.71,79.33 +426683,230.95,79.844 +426684,229.26,80.3705 +426685,233.23,78.906 +426686,231.39,79.37 +426687,229.62,79.85 +426688,227.9,80.344 +426689,231.93,78.981 +426690,230.08,79.411 +426691,228.28,79.857 +426692,226.54,80.3171 +426693,230.64,79.057 +426694,228.76,79.451 +426695,226.94,79.863 +426696,225.18,80.2899 +426697,229.35,79.132 +426698,227.45,79.492 +426699,225.61,79.87 +426700,223.82,80.2623 +426701,228.05,79.209 +426702,226.13,79.533 +426703,224.27,79.876 +426704,222.47,80.2343 +426705,226.75,79.285 +426706,224.81,79.574 +426707,222.94,79.882 +426708,221.12,80.2061 +426709,225.45,79.362 +426710,223.5,79.615 +426711,221.6,79.888 +426712,219.77,80.1776 +426713,224.15,79.439 +426714,222.18,79.656 +426715,220.27,79.894 +426716,218.42,80.1488 +426717,222.85,79.516 +426718,220.86,79.698 +426719,218.93,79.9 +426720,217.07,80.1198 +426721,221.55,79.593 +426722,219.54,79.739 +426723,217.6,79.906 +426724,215.72,80.0907 +426725,220.24,79.671 +426726,218.22,79.78 +426727,216.27,79.912 +426728,214.38,80.0613 +426729,218.94,79.748 +426730,216.9,79.822 +426731,214.94,79.917 +426732,213.03,80.0318 +426733,217.63,79.826 +426734,215.58,79.863 +426735,213.6,79.923 +426736,211.69,80.0022 +426737,216.32,79.904 +426738,214.26,79.905 +426739,212.27,79.929 +426740,210.35,79.973 +426741,215.01,79.982 +426742,212.94,79.946 +426743,210.94,79.934 +426744,209.01,79.943 +426745,213.69,80.0593 +426746,211.62,79.988 +426747,209.61,79.94 +426748,207.67,79.913 +426749,212.38,80.1371 +426750,210.3,80.0296 +426751,208.28,79.946 +426752,206.33,79.883 +426753,211.06,80.2149 +426754,208.97,80.0711 +426755,206.95,79.952 +426756,205,79.854 +426757,209.75,80.2926 +426758,207.65,80.1126 +426759,205.62,79.957 +426760,203.66,79.824 +426761,208.43,80.3701 +426762,206.32,80.1541 +426763,204.3,79.963 +426764,202.33,79.794 +426765,207.1,80.4475 +426766,205,80.1956 +426767,202.97,79.969 +426768,201,79.765 +426769,205.78,80.5248 +426770,203.67,80.237 +426771,201.64,79.975 +426772,199.67,79.735 +426773,204.46,80.6019 +426774,202.35,80.2783 +426775,200.31,79.981 +426776,198.34,79.706 +426777,203.13,80.6787 +426778,201.02,80.3196 +426779,198.99,79.987 +426780,197.01,79.677 +426781,201.8,80.7553 +426782,199.7,80.3608 +426783,197.66,79.993 +426784,195.69,79.648 +426785,200.48,80.8316 +426786,198.37,80.402 +426787,196.33,79.999 +426788,194.37,79.62 +426789,199.14,80.9076 +426790,197.04,80.443 +426791,195.01,80.0053 +426792,193.04,79.592 +426793,197.81,80.9832 +426794,195.71,80.4839 +426795,193.69,80.0117 +426796,191.72,79.564 +426797,196.48,81.0585 +426798,194.38,80.5247 +426799,192.36,80.0182 +426800,190.4,79.536 +426801,195.14,81.1334 +426802,193.05,80.5654 +426803,191.04,80.0249 +426804,189.09,79.509 +426805,193.81,81.2078 +426806,191.72,80.606 +426807,189.71,80.0317 +426808,187.77,79.482 +426809,192.47,81.2818 +426810,190.39,80.6464 +426811,188.39,80.0386 +426812,186.46,79.456 +426813,191.13,81.3553 +426814,189.06,80.6867 +426815,187.07,80.0457 +426816,185.14,79.43 +426817,189.78,81.4284 +426818,187.73,80.7268 +426819,185.75,80.0529 +426820,183.83,79.404 +426821,188.44,81.5009 +426822,186.4,80.7667 +426823,184.43,80.0603 +426824,182.52,79.379 +426825,187.1,81.5728 +426826,185.06,80.8065 +426827,183.11,80.0679 +426828,181.21,79.354 +426829,185.75,81.6441 +426830,183.73,80.846 +426831,181.79,80.0757 +426832,179.9,79.33 +426833,184.4,81.7149 +426834,182.4,80.8854 +426835,180.47,80.0837 +426836,178.6,79.307 +426837,183.05,81.785 +426838,181.06,80.9246 +426839,179.15,80.0919 +426840,177.29,79.284 +426841,181.7,81.8544 +426842,179.73,80.9636 +426843,177.83,80.1003 +426844,175.99,79.262 +426845,180.35,81.9232 +426846,178.39,81.0023 +426847,176.51,80.109 +426848,174.69,79.24 +426849,178.99,81.9912 +426850,177.05,81.0408 +426851,175.19,80.1178 +426852,173.39,79.219 +426853,177.64,82.0585 +426854,175.72,81.0791 +426855,173.87,80.1269 +426856,172.09,79.199 +426857,176.28,82.1251 +426858,174.38,81.1172 +426859,172.56,80.1363 +426860,170.79,79.18 +426861,174.92,82.1909 +426862,173.04,81.155 +426863,171.24,80.1459 +426864,169.49,79.161 +426865,173.56,82.2559 +426866,171.71,81.1925 +426867,169.92,80.1558 +426868,168.2,79.143 +426869,172.2,82.32 +426870,170.37,81.2298 +426871,168.61,80.1659 +426872,166.91,79.126 +426873,170.84,82.3833 +426874,169.03,81.2668 +426875,167.29,80.1763 +426876,165.61,79.11 +426877,169.47,82.4458 +426878,167.69,81.3035 +426879,165.98,80.187 +426880,164.32,79.094 +426881,168.11,82.5074 +426882,166.35,81.3399 +426883,164.66,80.198 +426884,163.03,79.079 +426885,166.74,82.568 +426886,165.01,81.3761 +426887,163.35,80.2093 +426888,161.74,79.066 +426889,165.37,82.6278 +426890,163.67,81.4119 +426891,162.03,80.2209 +426892,160.45,79.053 +426893,164,82.6865 +426894,162.33,81.4474 +426895,160.72,80.2328 +426896,159.17,79.041 +426897,162.63,82.7444 +426898,160.98,81.4826 +426899,159.41,80.2451 +426900,157.88,79.03 +426901,161.26,82.8012 +426902,159.64,81.5175 +426903,158.09,80.2576 +426904,156.6,79.019 +426905,159.88,82.8571 +426906,158.3,81.5521 +426907,156.78,80.2705 +426908,155.31,79.01 +426909,158.51,82.9119 +426910,156.96,81.5864 +426911,155.47,80.2837 +426912,154.03,79.002 +426913,157.13,82.9657 +426914,155.61,81.6202 +426915,154.16,80.2973 +426916,152.75,78.995 +426917,155.76,83.0185 +426918,154.27,81.6538 +426919,152.84,80.3112 +426920,151.47,78.989 +426921,154.38,83.0701 +426922,152.93,81.687 +426923,151.53,80.3255 +426924,150.19,78.984 +426925,153,83.1208 +426926,151.58,81.7199 +426927,150.22,80.3401 +426928,148.91,78.98 +426929,151.62,83.1703 +426930,150.24,81.7524 +426931,148.91,80.3551 +426932,147.64,78.977 +426933,150.24,83.2187 +426934,148.89,81.7845 +426935,147.6,80.3705 +426936,146.36,78.975 +426937,148.86,83.266 +426938,147.55,81.8163 +426939,146.29,80.3862 +426940,145.08,78.975 +426941,147.48,83.3122 +426942,146.2,81.8477 +426943,144.98,80.4023 +426944,143.81,78.975 +426945,146.09,83.3572 +426946,144.85,81.8787 +426947,143.67,80.4188 +426948,142.54,78.976 +426949,144.71,83.4011 +426950,143.51,81.9093 +426951,142.36,80.4357 +426952,141.26,78.979 +426953,143.32,83.4438 +426954,142.16,81.9396 +426955,141.05,80.453 +426956,139.99,78.983 +426957,141.93,83.4853 +426958,140.81,81.9694 +426959,139.74,80.4707 +426960,138.72,78.988 +426961,140.55,83.5257 +426962,139.47,81.9989 +426963,138.44,80.4888 +426964,137.45,78.994 +426965,139.16,83.5648 +426966,138.12,82.028 +426967,137.13,80.5072 +426968,136.18,79.002 +426969,137.77,83.6028 +426970,136.77,82.0567 +426971,135.82,80.5261 +426972,134.91,79.01 +426973,136.38,83.6396 +426974,135.42,82.085 +426975,134.51,80.5454 +426976,133.64,79.02 +426977,134.99,83.6751 +426978,134.07,82.1128 +426979,133.2,80.5651 +426980,132.38,79.031 +426981,133.6,83.7094 +426982,132.72,82.1403 +426983,131.9,80.5852 +426984,131.11,79.044 +426985,132.21,83.7425 +426986,131.38,82.1674 +426987,130.59,80.6057 +426988,129.84,79.057 +426989,130.82,83.7744 +426990,130.03,82.194 +426991,129.28,80.6266 +426992,128.58,79.072 +426993,129.42,83.805 +426994,128.68,82.2203 +426995,127.97,80.648 +426996,127.31,79.088 +426997,128.03,83.8344 +426998,127.33,82.2461 +426999,126.67,80.6698 +427000,126.05,79.105 +427001,126.64,83.8626 +427002,125.98,82.2716 +427003,125.36,80.692 +427004,124.78,79.124 +427005,125.24,83.8895 +427006,124.63,82.2966 +427007,124.05,80.7146 +427008,123.52,79.144 +427009,123.85,83.9152 +427010,123.28,82.3212 +427011,122.75,80.7376 +427012,122.25,79.165 +427013,122.45,83.9396 +427014,121.93,82.3453 +427015,121.44,80.7611 +427016,120.99,79.187 +427017,121.06,83.9628 +427018,120.58,82.3691 +427019,120.13,80.785 +427020,119.73,79.211 +427021,119.66,83.9848 +427022,119.23,82.3925 +427023,118.83,80.8093 +427024,118.46,79.236 +427025,118.27,84.0055 +427026,117.88,82.4154 +427027,117.52,80.8341 +427028,117.2,79.262 +427029,116.87,84.0249 +427030,116.52,82.4379 +427031,116.21,80.8592 +427032,115.94,79.289 +427033,115.48,84.0431 +427034,115.17,82.46 +427035,114.91,80.8848 +427036,114.68,79.318 +427037,114.08,84.0601 +427038,113.82,82.4817 +427039,113.6,80.9109 +427040,113.41,79.348 +427041,112.68,84.0759 +427042,112.47,82.503 +427043,112.29,80.9373 +427044,112.15,79.38 +427045,111.29,84.0904 +427046,111.12,82.5238 +427047,110.99,80.9642 +427048,110.89,79.412 +427049,109.89,84.1037 +427050,109.77,82.5443 +427051,109.68,80.9914 +427052,109.63,79.446 +427053,108.49,84.1158 +427054,108.42,82.5643 +427055,108.38,81.0192 +427056,108.36,79.481 +427057,107.1,84.1266 +427058,107.07,82.584 +427059,107.07,81.0473 +427060,107.1,79.518 +427061,105.7,84.1363 +427062,105.72,82.6032 +427063,105.76,81.0758 +427064,105.84,79.555 +427065,104.31,84.1447 +427066,104.37,82.622 +427067,104.46,81.1048 +427068,104.58,79.594 +427069,102.91,84.152 +427070,103.01,82.6405 +427071,103.15,81.1341 +427072,103.32,79.634 +427073,101.51,84.1581 +427074,101.66,82.6585 +427075,101.84,81.1639 +427076,102.05,79.675 +427077,100.12,84.163 +427078,100.31,82.6761 +427079,100.54,81.1941 +427080,100.79,79.718 +427081,98.722,84.1667 +427082,98.961,82.6934 +427083,99.23,81.2246 +427084,99.528,79.762 +427085,97.327,84.1693 +427086,97.61,82.7102 +427087,97.923,81.2556 +427088,98.265,79.807 +427089,95.932,84.1708 +427090,96.259,82.7267 +427091,96.615,81.287 +427092,97.002,79.853 +427093,94.537,84.1711 +427094,94.908,82.7428 +427095,95.308,81.3187 +427096,95.738,79.9 +427097,93.143,84.1703 +427098,93.557,82.7585 +427099,94.001,81.3509 +427100,94.474,79.949 +427101,91.749,84.1684 +427102,92.206,82.7738 +427103,92.693,81.3834 +427104,93.209,79.999 +427105,90.356,84.1654 +427106,90.856,82.7888 +427107,91.386,81.4163 +427108,91.944,80.0495 +427109,88.963,84.1613 +427110,89.506,82.8034 +427111,90.078,81.4496 +427112,90.679,80.1015 +427113,87.57,84.1561 +427114,88.155,82.8176 +427115,88.77,81.4833 +427116,89.413,80.1547 +427117,86.178,84.1499 +427118,86.805,82.8315 +427119,87.461,81.5173 +427120,88.147,80.2089 +427121,84.787,84.1427 +427122,85.455,82.845 +427123,86.153,81.5517 +427124,86.88,80.2642 +427125,83.396,84.1344 +427126,84.105,82.8582 +427127,84.844,81.5864 +427128,85.612,80.3206 +427129,82.006,84.1251 +427130,82.756,82.8711 +427131,83.535,81.6215 +427132,84.344,80.378 +427133,80.616,84.1149 +427134,81.406,82.8836 +427135,82.226,81.6569 +427136,83.075,80.4365 +427137,79.227,84.1037 +427138,80.057,82.8958 +427139,80.916,81.6927 +427140,81.806,80.496 +427141,77.839,84.0915 +427142,78.708,82.9077 +427143,79.606,81.7288 +427144,80.536,80.5566 +427145,76.451,84.0784 +427146,77.359,82.9192 +427147,78.296,81.7652 +427148,79.265,80.6181 +427149,75.065,84.0643 +427150,76.01,82.9304 +427151,76.986,81.8019 +427152,77.993,80.6805 +427153,73.679,84.0494 +427154,74.662,82.9414 +427155,75.676,81.839 +427156,76.72,80.7439 +427157,72.293,84.0336 +427158,73.314,82.952 +427159,74.365,81.8763 +427160,75.447,80.8083 +427161,70.909,84.017 +427162,71.966,82.9624 +427163,73.053,81.914 +427164,74.173,80.8735 +427165,69.526,83.9995 +427166,70.618,82.9725 +427167,71.742,81.9519 +427168,72.898,80.9397 +427169,68.143,83.9811 +427170,69.271,82.9822 +427171,70.43,81.9901 +427172,71.622,81.0067 +427173,66.762,83.962 +427174,67.923,82.9918 +427175,69.118,82.0286 +427176,70.345,81.0745 +427177,65.381,83.9422 +427178,66.577,83.001 +427179,67.805,82.0674 +427180,69.067,81.1431 +427181,64.001,83.9215 +427182,65.23,83.01 +427183,66.492,82.1064 +427184,67.788,81.2126 +427185,62.623,83.9002 +427186,63.884,83.0188 +427187,65.179,82.1457 +427188,66.508,81.2828 +427189,61.245,83.8781 +427190,62.538,83.0273 +427191,63.865,82.1852 +427192,65.227,81.3537 +427193,59.868,83.8554 +427194,61.192,83.0356 +427195,62.551,82.225 +427196,63.945,81.4254 +427197,58.493,83.832 +427198,59.847,83.0437 +427199,61.237,82.2649 +427200,62.662,81.4977 +427201,57.118,83.8079 +427202,58.502,83.0515 +427203,59.922,82.3052 +427204,61.378,81.5708 +427205,55.745,83.7833 +427206,57.158,83.0592 +427207,58.607,82.3456 +427208,60.093,81.6444 +427209,54.373,83.758 +427210,55.813,83.0667 +427211,57.291,82.3862 +427212,58.806,81.7187 +427213,53.002,83.7323 +427214,54.469,83.0739 +427215,55.975,82.427 +427216,57.519,81.7936 +427217,51.632,83.7059 +427218,53.126,83.081 +427219,54.658,82.468 +427220,56.23,81.869 +427221,50.263,83.6791 +427222,51.783,83.0879 +427223,53.341,82.5092 +427224,54.94,81.945 +427225,48.895,83.6518 +427226,50.44,83.0947 +427227,52.024,82.5505 +427228,53.648,82.0215 +427229,47.529,83.624 +427230,49.098,83.1013 +427231,50.706,82.592 +427232,52.356,82.0984 +427233,46.164,83.5958 +427234,47.755,83.1077 +427235,49.388,82.6337 +427236,51.062,82.1758 +427237,44.8,83.5671 +427238,46.414,83.114 +427239,48.069,82.6754 +427240,49.767,82.2536 +427241,43.437,83.5381 +427242,45.073,83.1202 +427243,46.75,82.7173 +427244,48.47,82.3318 +427245,42.076,83.5088 +427246,43.732,83.1263 +427247,45.43,82.7594 +427248,47.172,82.4104 +427249,40.716,83.4791 +427250,42.391,83.1322 +427251,44.11,82.8015 +427252,45.873,82.4893 +427253,39.357,83.4492 +427254,41.051,83.1381 +427255,42.789,82.8438 +427256,44.572,82.5685 +427257,38,83.4189 +427258,39.712,83.1438 +427259,41.468,82.8861 +427260,43.27,82.648 +427261,36.644,83.3884 +427262,38.373,83.1495 +427263,40.146,82.9285 +427264,41.967,82.7277 +427265,35.289,83.3577 +427266,37.034,83.1551 +427267,38.824,82.971 +427268,40.662,82.8077 +427269,33.936,83.3268 +427270,35.695,83.1607 +427271,37.501,83.0135 +427272,39.356,82.8878 +427273,32.584,83.2958 +427274,34.358,83.1662 +427275,36.178,83.0561 +427276,38.048,82.9681 +427277,31.233,83.2646 +427278,33.02,83.1717 +427279,34.854,83.0988 +427280,36.739,83.0485 +427281,29.884,83.2333 +427282,31.683,83.1771 +427283,33.53,83.1414 +427284,35.429,83.129 +427285,28.536,83.202 +427286,30.346,83.1825 +427287,32.206,83.1841 +427288,34.117,83.2095 +427289,27.189,83.1706 +427290,29.01,83.1879 +427291,30.88,83.2268 +427292,32.803,83.2901 +427293,25.844,83.1392 +427294,27.675,83.1932 +427295,29.555,83.2695 +427296,31.488,83.3707 +427297,24.5,83.1078 +427298,26.339,83.1986 +427299,28.228,83.3122 +427300,30.172,83.4513 +427301,23.158,83.0764 +427302,25.005,83.204 +427303,26.902,83.3549 +427304,28.854,83.5318 +427305,21.817,83.0451 +427306,23.67,83.2095 +427307,25.574,83.3975 +427308,27.534,83.6122 +427309,20.478,83.0139 +427310,22.336,83.2149 +427311,24.246,83.4401 +427312,26.213,83.6925 +427313,19.14,82.9828 +427314,21.003,83.2204 +427315,22.918,83.4827 +427316,24.89,83.7726 +427317,17.803,82.9519 +427318,19.67,83.226 +427319,21.589,83.5252 +427320,23.566,83.8525 +427321,16.468,82.9212 +427322,18.337,83.2316 +427323,20.26,83.5676 +427324,22.241,83.9323 +427325,15.134,82.8906 +427326,17.005,83.2373 +427327,18.93,83.61 +427328,20.914,84.0118 +427329,13.801,82.8604 +427330,15.673,83.2431 +427331,17.599,83.6522 +427332,19.585,84.091 +427333,12.47,82.8303 +427334,14.342,83.2489 +427335,16.268,83.6944 +427336,18.255,84.1699 +427337,11.141,82.8006 +427338,13.012,83.2549 +427339,14.937,83.7365 +427340,16.923,84.2485 +427341,9.8127,82.7712 +427342,11.681,83.261 +427343,13.605,83.7784 +427344,15.589,84.3267 +427345,8.486,82.7421 +427346,10.351,83.2672 +427347,12.272,83.8202 +427348,14.254,84.4045 +427349,7.1607,82.7134 +427350,9.022,83.2735 +427351,10.939,83.8619 +427352,12.918,84.4819 +427353,5.8367,82.6852 +427354,7.6931,83.28 +427355,9.605,83.9034 +427356,11.58,84.5588 +427357,4.5142,82.6573 +427358,6.3646,83.2866 +427359,8.2708,83.9448 +427360,10.241,84.6353 +427361,3.193,82.63 +427362,5.0366,83.2934 +427363,6.9361,83.986 +427364,8.8996,84.7113 +427365,1.8733,82.6031 +427366,3.7089,83.3003 +427367,5.6008,84.027 +427368,7.5571,84.7867 +427369,0.55488,82.5767 +427370,2.3818,83.3074 +427371,4.2651,84.0679 +427372,6.213,84.8616 +427373,359.24,82.5508 +427374,1.055,83.3147 +427375,2.9288,84.1085 +427376,4.8675,84.9358 +427377,357.92,82.5256 +427378,359.73,83.3222 +427379,1.592,84.149 +427380,3.5204,85.0095 +427381,356.61,82.5009 +427382,358.4,83.3299 +427383,0.25462,84.1892 +427384,2.1719,85.0825 +427385,355.29,82.4768 +427386,357.08,83.3378 +427387,358.92,84.2293 +427388,0.82187,85.1548 +427389,353.98,82.4534 +427390,355.75,83.3459 +427391,357.58,84.269 +427392,359.47,85.2264 +427393,352.67,82.4306 +427394,354.43,83.3542 +427395,356.24,84.3086 +427396,358.12,85.2973 +427397,351.36,82.4086 +427398,353.1,83.3628 +427399,354.9,84.3479 +427400,356.76,85.3675 +427401,350.06,82.3872 +427402,351.78,83.3716 +427403,353.56,84.387 +427404,355.41,85.4369 +427405,348.75,82.3666 +427406,350.46,83.3807 +427407,352.22,84.4258 +427408,354.05,85.5054 +427409,347.44,82.3468 +427410,349.13,83.39 +427411,350.88,84.4643 +427412,352.69,85.5732 +427413,346.14,82.3278 +427414,347.81,83.3996 +427415,349.54,84.5025 +427416,351.33,85.6401 +427417,344.84,82.3095 +427418,346.49,83.4095 +427419,348.2,84.5405 +427420,349.97,85.7061 +427421,343.54,82.2922 +427422,345.17,83.4197 +427423,346.85,84.5782 +427424,348.61,85.7713 +427425,342.24,82.2756 +427426,343.85,83.4301 +427427,345.51,84.6155 +427428,347.24,85.8355 +427429,340.94,82.26 +427430,342.52,83.4409 +427431,344.17,84.6526 +427432,345.88,85.8988 +427433,339.64,82.2452 +427434,341.2,83.4519 +427435,342.82,84.6893 +427436,344.51,85.9611 +427437,338.34,82.2314 +427438,339.88,83.4633 +427439,341.48,84.7257 +427440,343.14,86.0224 +427441,337.05,82.2185 +427442,338.56,83.4749 +427443,340.14,84.7618 +427444,341.77,86.0828 +427445,335.75,82.2066 +427446,337.24,83.4869 +427447,338.79,84.7976 +427448,340.4,86.1421 +427449,334.46,82.1956 +427450,335.92,83.4992 +427451,337.45,84.833 +427452,339.03,86.2004 +427453,333.17,82.1857 +427454,334.61,83.5119 +427455,336.1,84.8681 +427456,337.66,86.2576 +427457,331.88,82.1768 +427458,333.29,83.5249 +427459,334.75,84.9028 +427460,336.28,86.3137 +427461,330.58,82.1689 +427462,331.97,83.5383 +427463,333.41,84.9371 +427464,334.91,86.3688 +427465,329.3,82.1621 +427466,330.65,83.552 +427467,332.06,84.9711 +427468,333.53,86.4227 +427469,328.01,82.1563 +427470,329.33,83.566 +427471,330.71,85.0047 +427472,332.15,86.4755 +427473,326.72,82.1517 +427474,328.02,83.5805 +427475,329.36,85.0379 +427476,330.77,86.5272 +427477,325.43,82.1481 +427478,326.7,83.5953 +427479,328.02,85.0708 +427480,329.39,86.5777 +427481,324.15,82.1457 +427482,325.38,83.6104 +427483,326.67,85.1032 +427484,328.01,86.6271 +427485,322.86,82.1444 +427486,324.07,83.626 +427487,325.32,85.1353 +427488,326.63,86.6753 +427489,321.58,82.1443 +427490,322.75,83.6419 +427491,323.97,85.167 +427492,325.25,86.7222 +427493,320.3,82.1453 +427494,321.43,83.6583 +427495,322.62,85.1982 +427496,323.87,86.768 +427497,319.01,82.1475 +427498,320.12,83.675 +427499,321.27,85.2291 +427500,322.48,86.8125 +427501,317.73,82.1509 +427502,318.8,83.6921 +427503,319.92,85.2595 +427504,321.1,86.8558 +427505,316.45,82.1555 +427506,317.49,83.7096 +427507,318.57,85.2896 +427508,319.71,86.8979 +427509,315.17,82.1614 +427510,316.17,83.7276 +427511,317.22,85.3192 +427512,318.32,86.9387 +427513,313.89,82.1684 +427514,314.86,83.7459 +427515,315.87,85.3484 +427516,316.93,86.9783 +427517,312.62,82.1767 +427518,313.54,83.7646 +427519,314.52,85.3772 +427520,315.54,87.0165 +427521,311.34,82.1862 +427522,312.23,83.7838 +427523,313.17,85.4055 +427524,314.15,87.0535 +427525,310.06,82.197 +427526,310.91,83.8034 +427527,311.81,85.4335 +427528,312.76,87.0893 +427529,308.78,82.209 +427530,309.6,83.8234 +427531,310.46,85.461 +427532,311.37,87.1237 +427533,307.51,82.2224 +427534,308.29,83.8438 +427535,309.11,85.488 +427536,309.98,87.1568 +427537,306.23,82.237 +427538,306.97,83.8646 +427539,307.76,85.5146 +427540,308.59,87.1887 +427541,304.96,82.2528 +427542,305.66,83.8859 +427543,306.4,85.5408 +427544,307.2,87.2192 +427545,303.68,82.27 +427546,304.35,83.9076 +427547,305.05,85.5666 +427548,305.8,87.2484 +427549,302.41,82.2885 +427550,303.03,83.9297 +427551,303.7,85.5919 +427552,304.41,87.2763 +427553,301.14,82.3082 +427554,301.72,83.9523 +427555,302.34,85.6167 +427556,303.01,87.3029 +427557,299.86,82.3293 +427558,300.41,83.9753 +427559,300.99,85.6412 +427560,301.62,87.3282 +427561,298.59,82.3517 +427562,299.09,83.9987 +427563,299.64,85.6651 +427564,300.22,87.3521 +427565,297.32,82.3754 +427566,297.78,84.0225 +427567,298.28,85.6887 +427568,298.83,87.3748 +427569,296.04,82.4004 +427570,296.47,84.0468 +427571,296.93,85.7118 +427572,297.43,87.3961 +427573,294.77,82.4267 +427574,295.15,84.0715 +427575,295.57,85.7344 +427576,296.03,87.4161 +427577,293.5,82.4543 +427578,293.84,84.0966 +427579,294.22,85.7566 +427580,294.64,87.4348 +427581,292.23,82.4832 +427582,292.53,84.1222 +427583,292.86,85.7784 +427584,293.24,87.4522 +427585,290.96,82.5134 +427586,291.22,84.1482 +427587,291.51,85.7997 +427588,291.84,87.4683 +427589,289.69,82.545 +427590,289.9,84.1746 +427591,290.15,85.8206 +427592,290.44,87.4831 +427593,288.42,82.5778 +427594,288.59,84.2015 +427595,288.8,85.841 +427596,289.05,87.4966 +427597,287.14,82.612 +427598,287.28,84.2288 +427599,287.45,85.861 +427600,287.65,87.5088 +427601,285.87,82.6474 +427602,285.97,84.2565 +427603,286.09,85.8806 +427604,286.25,87.5197 +427605,284.6,82.6841 +427606,284.65,84.2846 +427607,284.74,85.8997 +427608,284.85,87.5293 +427609,283.33,82.7222 +427610,283.34,84.3132 +427611,283.38,85.9184 +427612,283.45,87.5376 +427613,282.06,82.7615 +427614,282.03,84.3422 +427615,282.03,85.9367 +427616,282.06,87.5447 +427617,280.79,82.802 +427618,280.71,84.3716 +427619,280.67,85.9545 +427620,280.66,87.5505 +427621,279.52,82.8439 +427622,279.4,84.4014 +427623,279.31,85.972 +427624,279.26,87.5551 +427625,278.25,82.887 +427626,278.09,84.4316 +427627,277.96,85.989 +427628,277.86,87.5584 +427629,276.97,82.9313 +427630,276.77,84.4622 +427631,276.6,86.0055 +427632,276.47,87.5606 +427633,275.7,82.9769 +427634,275.46,84.4933 +427635,275.25,86.0217 +427636,275.07,87.5614 +427637,274.43,83.0238 +427638,274.15,84.5247 +427639,273.89,86.0374 +427640,273.67,87.5611 +427641,273.16,83.0718 +427642,272.83,84.5565 +427643,272.54,86.0528 +427644,272.27,87.5596 +427645,271.89,83.1211 +427646,271.52,84.5888 +427647,271.18,86.0677 +427648,270.88,87.5569 +427649,270.61,83.1715 +427650,270.21,84.6214 +427651,269.83,86.0823 +427652,269.48,87.5531 +427653,269.34,83.2231 +427654,268.89,84.6544 +427655,268.48,86.0964 +427656,268.08,87.5481 +427657,268.06,83.2759 +427658,267.58,84.6878 +427659,267.12,86.1102 +427660,266.69,87.542 +427661,266.79,83.3299 +427662,266.27,84.7215 +427663,265.77,86.1235 +427664,265.29,87.5347 +427665,265.52,83.385 +427666,264.95,84.7556 +427667,264.41,86.1365 +427668,263.9,87.5263 +427669,264.24,83.4412 +427670,263.64,84.7901 +427671,263.06,86.1491 +427672,262.5,87.5168 +427673,262.97,83.4985 +427674,262.32,84.825 +427675,261.7,86.1614 +427676,261.11,87.5063 +427677,261.69,83.557 +427678,261.01,84.8602 +427679,260.35,86.1732 +427680,259.72,87.4947 +427681,260.41,83.6165 +427682,259.69,84.8957 +427683,259,86.1848 +427684,258.32,87.4821 +427685,259.14,83.677 +427686,258.38,84.9316 +427687,257.64,86.1959 +427688,256.93,87.4684 +427689,257.86,83.7386 +427690,257.06,84.9679 +427691,256.29,86.2067 +427692,255.54,87.4538 +427693,256.58,83.8012 +427694,255.74,85.0044 +427695,254.93,86.2172 +427696,254.15,87.4381 +427697,255.3,83.8648 +427698,254.43,85.0413 +427699,253.58,86.2274 +427700,252.76,87.4215 +427701,254.02,83.9294 +427702,253.11,85.0785 +427703,252.23,86.2372 +427704,251.37,87.404 +427705,252.74,83.995 +427706,251.79,85.116 +427707,250.88,86.2467 +427708,249.98,87.3855 +427709,251.46,84.0615 +427710,250.48,85.1538 +427711,249.52,86.2559 +427712,248.59,87.3661 +427713,250.17,84.1289 +427714,249.16,85.1919 +427715,248.17,86.2647 +427716,247.2,87.3459 +427717,248.89,84.1972 +427718,247.84,85.2302 +427719,246.82,86.2733 +427720,245.82,87.3248 +427721,247.61,84.2664 +427722,246.52,85.2689 +427723,245.47,86.2816 +427724,244.43,87.3028 +427725,246.32,84.3364 +427726,245.21,85.3078 +427727,244.11,86.2896 +427728,243.05,87.2801 +427729,245.04,84.4072 +427730,243.89,85.347 +427731,242.76,86.2974 +427732,241.66,87.2565 +427733,243.75,84.4789 +427734,242.57,85.3865 +427735,241.41,86.3048 +427736,240.28,87.2322 +427737,242.46,84.5513 +427738,241.25,85.4261 +427739,240.06,86.312 +427740,238.9,87.2072 +427741,241.17,84.6244 +427742,239.93,85.4661 +427743,238.71,86.319 +427744,237.52,87.1814 +427745,239.88,84.6983 +427746,238.61,85.5062 +427747,237.36,86.3257 +427748,236.14,87.155 +427749,238.59,84.7729 +427750,237.29,85.5466 +427751,236.01,86.3322 +427752,234.76,87.1278 +427753,237.3,84.8482 +427754,235.97,85.5872 +427755,234.66,86.3384 +427756,233.38,87.1001 +427757,236.01,84.9241 +427758,234.65,85.628 +427759,233.31,86.3444 +427760,232,87.0717 +427761,234.71,85.0006 +427762,233.33,85.669 +427763,231.96,86.3503 +427764,230.63,87.0427 +427765,233.42,85.0777 +427766,232,85.7101 +427767,230.61,86.3559 +427768,229.25,87.0132 +427769,232.12,85.1554 +427770,230.68,85.7515 +427771,229.27,86.3613 +427772,227.88,86.9831 +427773,230.83,85.2336 +427774,229.36,85.793 +427775,227.92,86.3666 +427776,226.5,86.9525 +427777,229.53,85.3123 +427778,228.04,85.8346 +427779,226.57,86.3716 +427780,225.13,86.9215 +427781,228.23,85.3915 +427782,226.71,85.8765 +427783,225.22,86.3765 +427784,223.76,86.8899 +427785,226.93,85.4711 +427786,225.39,85.9184 +427787,223.88,86.3813 +427788,222.39,86.858 +427789,225.63,85.5511 +427790,224.06,85.9605 +427791,222.53,86.3859 +427792,221.02,86.8256 +427793,224.32,85.6316 +427794,222.74,86.0027 +427795,221.18,86.3904 +427796,219.66,86.7929 +427797,223.02,85.7123 +427798,221.41,86.045 +427799,219.84,86.3948 +427800,218.29,86.7599 +427801,221.71,85.7934 +427802,220.09,86.0873 +427803,218.49,86.399 +427804,216.93,86.7265 +427805,220.41,85.8748 +427806,218.76,86.1298 +427807,217.15,86.4031 +427808,215.56,86.6928 +427809,219.1,85.9565 +427810,217.43,86.1724 +427811,215.8,86.4072 +427812,214.2,86.6589 +427813,217.79,86.0384 +427814,216.11,86.215 +427815,214.46,86.4111 +427816,212.84,86.6247 +427817,216.48,86.1205 +427818,214.78,86.2577 +427819,213.11,86.415 +427820,211.48,86.5904 +427821,215.16,86.2028 +427822,213.45,86.3004 +427823,211.77,86.4188 +427824,210.12,86.5558 +427825,213.85,86.2852 +427826,212.12,86.3432 +427827,210.43,86.4225 +427828,208.77,86.5212 +427829,212.54,86.3677 +427830,210.79,86.3859 +427831,209.08,86.4262 +427832,207.41,86.4864 +427833,211.22,86.4502 +427834,209.46,86.4287 +427835,207.74,86.4299 +427836,206.06,86.4515 +427837,209.9,86.5329 +427838,208.13,86.4715 +427839,206.4,86.4335 +427840,204.7,86.4166 +427841,208.58,86.6155 +427842,206.8,86.5143 +427843,205.06,86.4371 +427844,203.35,86.3816 +427845,207.26,86.6981 +427846,205.47,86.5571 +427847,203.72,86.4407 +427848,202,86.3467 +427849,205.94,86.7807 +427850,204.14,86.5999 +427851,202.38,86.4443 +427852,200.65,86.3118 +427853,204.62,86.8632 +427854,202.81,86.6426 +427855,201.04,86.448 +427856,199.3,86.2769 +427857,203.29,86.9455 +427858,201.47,86.6852 +427859,199.7,86.4516 +427860,197.96,86.2421 +427861,201.97,87.0277 +427862,200.14,86.7279 +427863,198.36,86.4553 +427864,196.61,86.2075 +427865,200.64,87.1098 +427866,198.81,86.7704 +427867,197.02,86.459 +427868,195.27,86.173 +427869,199.31,87.1916 +427870,197.47,86.8129 +427871,195.68,86.4628 +427872,193.93,86.1387 +427873,197.98,87.2732 +427874,196.14,86.8552 +427875,194.34,86.4666 +427876,192.58,86.1046 +427877,196.65,87.3545 +427878,194.8,86.8975 +427879,193,86.4705 +427880,191.24,86.0707 +427881,195.31,87.4355 +427882,193.47,86.9397 +427883,191.67,86.4745 +427884,189.91,86.0371 +427885,193.98,87.5161 +427886,192.13,86.9817 +427887,190.33,86.4786 +427888,188.57,86.0038 +427889,192.64,87.5964 +427890,190.79,87.0236 +427891,188.99,86.4828 +427892,187.23,85.9709 +427893,191.31,87.6763 +427894,189.46,87.0654 +427895,187.66,86.4871 +427896,185.9,85.9382 +427897,189.97,87.7557 +427898,188.12,87.107 +427899,186.32,86.4915 +427900,184.57,85.906 +427901,188.63,87.8347 +427902,186.78,87.1484 +427903,184.99,86.496 +427904,183.23,85.8741 +427905,187.28,87.9132 +427906,185.44,87.1897 +427907,183.65,86.5007 +427908,181.9,85.8427 +427909,185.94,87.9912 +427910,184.1,87.2308 +427911,182.32,86.5055 +427912,180.58,85.8118 +427913,184.6,88.0686 +427914,182.76,87.2717 +427915,180.98,86.5105 +427916,179.25,85.7814 +427917,183.25,88.1454 +427918,181.42,87.3124 +427919,179.65,86.5157 +427920,177.92,85.7515 +427921,181.9,88.2216 +427922,180.08,87.3529 +427923,178.32,86.521 +427924,176.6,85.7221 +427925,180.55,88.2972 +427926,178.74,87.3932 +427927,176.98,86.5265 +427928,175.27,85.6933 +427929,179.2,88.3721 +427930,177.4,87.4333 +427931,175.65,86.5322 +427932,173.95,85.6651 +427933,177.85,88.4463 +427934,176.06,87.4731 +427935,174.32,86.5382 +427936,172.63,85.6375 +427937,176.5,88.5198 +427938,174.72,87.5127 +427939,172.99,86.5443 +427940,171.31,85.6106 +427941,175.14,88.5925 +427942,173.37,87.552 +427943,171.66,86.5506 +427944,169.99,85.5844 +427945,173.79,88.6644 +427946,172.03,87.591 +427947,170.33,86.5572 +427948,168.67,85.5588 +427949,172.43,88.7355 +427950,170.68,87.6298 +427951,169,86.564 +427952,167.36,85.534 +427953,171.07,88.8058 +427954,169.34,87.6683 +427955,167.67,86.5711 +427956,166.04,85.51 +427957,169.71,88.8752 +427958,167.99,87.7065 +427959,166.34,86.5784 +427960,164.73,85.4867 +427961,168.35,88.9438 +427962,166.65,87.7444 +427963,165.01,86.586 +427964,163.41,85.4643 +427965,166.98,89.01141 +427966,165.3,87.782 +427967,163.68,86.5939 +427968,162.1,85.4426 +427969,165.62,89.0781 +427970,163.96,87.8192 +427971,162.35,86.602 +427972,160.79,85.4219 +427973,164.25,89.14383 +427974,162.61,87.8562 +427975,161.02,86.6104 +427976,159.48,85.4019 +427977,162.89,89.20857 +427978,161.26,87.8928 +427979,159.69,86.6191 +427980,158.18,85.3829 +427981,161.52,89.2723 +427982,159.91,87.9291 +427983,158.37,86.6281 +427984,156.87,85.3648 +427985,160.15,89.335 +427986,158.57,87.965 +427987,157.04,86.6375 +427988,155.56,85.3477 +427989,158.78,89.39665 +427990,157.22,88.0006 +427991,155.71,86.6471 +427992,154.26,85.3315 +427993,157.41,89.45722 +427994,155.87,88.0358 +427995,154.39,86.6571 +427996,152.95,85.3163 +427997,156.04,89.5167 +427998,154.52,88.0706 +427999,153.06,86.6674 +428000,151.65,85.302 +428001,154.66,89.57507 +428002,153.17,88.1051 +428003,151.73,86.678 +428004,150.35,85.2889 +428005,153.29,89.63229 +428006,151.82,88.1392 +428007,150.41,86.6889 +428008,149.05,85.2767 +428009,151.91,89.68837 +428010,150.47,88.1729 +428011,149.08,86.7003 +428012,147.75,85.2656 +428013,150.53,89.74327 +428014,149.12,88.2062 +428015,147.76,86.7119 +428016,146.45,85.2556 +428017,149.15,89.79698 +428018,147.77,88.2391 +428019,146.44,86.7239 +428020,145.15,85.2467 +428021,147.77,89.84949 +428022,146.41,88.2716 +428023,145.11,86.7363 +428024,143.86,85.2389 +428025,146.39,89.900766 +428026,145.06,88.3037 +428027,143.79,86.7491 +428028,142.56,85.2322 +428029,145.01,89.950807 +428030,143.71,88.3354 +428031,142.46,86.7622 +428032,141.27,85.2267 +428033,143.63,89.99959278 +428034,142.36,88.3666 +428035,141.14,86.7757 +428036,139.97,85.2223 +428037,142.24,90.04711 +428038,141,88.3974 +428039,139.82,86.7896 +428040,138.68,85.2191 +428041,140.86,90.093344 +428042,139.65,88.4278 +428043,138.49,86.8039 +428044,137.39,85.2171 +428045,139.47,90.13828 +428046,138.29,88.4578 +428047,137.17,86.8186 +428048,136.09,85.2163 +428049,138.09,90.18191 +428050,136.94,88.4873 +428051,135.85,86.8337 +428052,134.8,85.2167 +428053,136.7,90.22422 +428054,135.59,88.5164 +428055,134.53,86.8492 +428056,133.51,85.2183 +428057,135.31,90.2652 +428058,134.23,88.545 +428059,133.2,86.8651 +428060,132.22,85.2212 +428061,133.92,90.30484 +428062,132.88,88.5731 +428063,131.88,86.8814 +428064,130.94,85.2254 +428065,132.53,90.34313 +428066,131.52,88.6008 +428067,130.56,86.8981 +428068,129.65,85.2308 +428069,131.14,90.38006 +428070,130.16,88.6281 +428071,129.24,86.9153 +428072,128.36,85.2374 +428073,129.75,90.41563 +428074,128.81,88.6549 +428075,127.92,86.9328 +428076,127.07,85.2454 +428077,128.36,90.44981 +428078,127.45,88.6812 +428079,126.6,86.9508 +428080,125.79,85.2546 +428081,126.96,90.48262 +428082,126.1,88.7071 +428083,125.28,86.9692 +428084,124.5,85.2652 +428085,125.57,90.51404 +428086,124.74,88.7324 +428087,123.96,86.988 +428088,123.22,85.277 +428089,124.18,90.54407 +428090,123.38,88.7574 +428091,122.64,87.0073 +428092,121.93,85.2902 +428093,122.78,90.57271 +428094,122.02,88.7818 +428095,121.31,87.027 +428096,120.65,85.3047 +428097,121.39,90.59994 +428098,120.67,88.8058 +428099,119.99,87.0471 +428100,119.36,85.3205 +428101,119.99,90.62577 +428102,119.31,88.8292 +428103,118.67,87.0676 +428104,118.08,85.3377 +428105,118.6,90.6502 +428106,117.95,88.8523 +428107,117.35,87.0886 +428108,116.8,85.3561 +428109,117.2,90.67322 +428110,116.59,88.8748 +428111,116.03,87.11 +428112,115.51,85.3759 +428113,115.8,90.69484 +428114,115.24,88.8969 +428115,114.71,87.1319 +428116,114.23,85.3971 +428117,114.4,90.71505 +428118,113.88,88.9184 +428119,113.39,87.1542 +428120,112.95,85.4196 +428121,113.01,90.73385 +428122,112.52,88.9395 +428123,112.07,87.1769 +428124,111.67,85.4434 +428125,111.61,90.75125 +428126,111.16,88.9601 +428127,110.75,87.2001 +428128,110.39,85.4686 +428129,110.21,90.76725 +428130,109.8,88.9803 +428131,109.43,87.2237 +428132,109.1,85.4952 +428133,108.81,90.78185 +428134,108.44,88.9999 +428135,108.11,87.2477 +428136,107.82,85.523 +428137,107.41,90.79506 +428138,107.08,89.01913 +428139,106.8,87.2722 +428140,106.54,85.5522 +428141,106.01,90.80687 +428142,105.72,89.03784 +428143,105.48,87.2971 +428144,105.26,85.5828 +428145,104.61,90.81731 +428146,104.36,89.05607 +428147,104.16,87.3224 +428148,103.98,85.6147 +428149,103.21,90.82636 +428150,103.01,89.07383 +428151,102.84,87.3482 +428152,102.7,85.6479 +428153,101.81,90.83404 +428154,101.65,89.09112 +428155,101.52,87.3744 +428156,101.42,85.6825 +428157,100.41,90.84036 +428158,100.29,89.10794 +428159,100.2,87.401 +428160,100.14,85.7183 +428161,99.013,90.84532 +428162,98.928,89.12429 +428163,98.877,87.4281 +428164,98.857,85.7555 +428165,97.613,90.84893 +428166,97.568,89.14018 +428167,97.557,87.4556 +428168,97.576,85.7941 +428169,96.213,90.85121 +428170,96.209,89.1556 +428171,96.237,87.4834 +428172,96.296,85.8339 +428173,94.814,90.85216 +428174,94.849,89.17057 +428175,94.917,87.5118 +428176,95.014,85.875 +428177,93.414,90.85179 +428178,93.49,89.18508 +428179,93.597,87.5405 +428180,93.733,85.9174 +428181,92.014,90.85011 +428182,92.13,89.19914 +428183,92.277,87.5696 +428184,92.452,85.9611 +428185,90.615,90.84714 +428186,90.771,89.21275 +428187,90.957,87.5992 +428188,91.17,86.006 +428189,89.216,90.84289 +428190,89.412,89.22591 +428191,89.636,87.6291 +428192,89.888,86.0522 +428193,87.817,90.83737 +428194,88.052,89.23864 +428195,88.316,87.6594 +428196,88.606,86.0997 +428197,86.418,90.8306 +428198,86.693,89.25093 +428199,86.995,87.6902 +428200,87.324,86.1484 +428201,85.019,90.82259 +428202,85.334,89.26278 +428203,85.675,87.7213 +428204,86.041,86.1983 +428205,83.621,90.81336 +428206,83.974,89.27421 +428207,84.354,87.7528 +428208,84.758,86.2494 +428209,82.223,90.80292 +428210,82.615,89.28522 +428211,83.033,87.7847 +428212,83.474,86.3018 +428213,80.826,90.79128 +428214,81.256,89.2958 +428215,81.712,87.817 +428216,82.191,86.3553 +428217,79.429,90.77848 +428218,79.897,89.30598 +428219,80.39,87.8496 +428220,80.906,86.41 +428221,78.032,90.76451 +428222,78.539,89.31575 +428223,79.069,87.8826 +428224,79.621,86.4658 +428225,76.636,90.74941 +428226,77.18,89.32512 +428227,77.747,87.916 +428228,78.336,86.5228 +428229,75.24,90.73319 +428230,75.821,89.33409 +428231,76.425,87.9497 +428232,77.05,86.5808 +428233,73.845,90.71587 +428234,74.463,89.34268 +428235,75.103,87.9838 +428236,75.764,86.64 +428237,72.45,90.69747 +428238,73.105,89.35089 +428239,73.78,88.0182 +428240,74.477,86.7003 +428241,71.056,90.67801 +428242,71.746,89.35871 +428243,72.458,88.0529 +428244,73.189,86.7616 +428245,69.663,90.65751 +428246,70.388,89.36617 +428247,71.135,88.088 +428248,71.901,86.824 +428249,68.27,90.63599 +428250,69.031,89.37327 +428251,69.812,88.1234 +428252,70.612,86.8874 +428253,66.878,90.61347 +428254,67.673,89.38001 +428255,68.488,88.1591 +428256,69.323,86.9518 +428257,65.486,90.58999 +428258,66.316,89.38641 +428259,67.165,88.1951 +428260,68.033,87.0172 +428261,64.095,90.56555 +428262,64.958,89.39246 +428263,65.841,88.2314 +428264,66.742,87.0836 +428265,62.705,90.54018 +428266,63.601,89.39818 +428267,64.517,88.268 +428268,65.45,87.1508 +428269,61.316,90.51391 +428270,62.245,89.40358 +428271,63.192,88.3049 +428272,64.158,87.2191 +428273,59.927,90.48676 +428274,60.888,89.40866 +428275,61.867,88.342 +428276,62.864,87.2881 +428277,58.54,90.45875 +428278,59.532,89.41342 +428279,60.542,88.3794 +428280,61.57,87.3581 +428281,57.153,90.42991 +428282,58.176,89.41789 +428283,59.217,88.4171 +428284,60.275,87.4289 +428285,55.767,90.40027 +428286,56.82,89.42207 +428287,57.891,88.455 +428288,58.979,87.5006 +428289,54.382,90.36984 +428290,55.464,89.42596 +428291,56.565,88.4932 +428292,57.683,87.573 +428293,52.997,90.33866 +428294,54.109,89.42957 +428295,55.238,88.5316 +428296,56.385,87.6462 +428297,51.614,90.30676 +428298,52.754,89.43292 +428299,53.912,88.5702 +428300,55.086,87.7201 +428301,50.232,90.27415 +428302,51.399,89.43601 +428303,52.584,88.6091 +428304,53.787,87.7948 +428305,48.85,90.24087 +428306,50.045,89.43884 +428307,51.257,88.6481 +428308,52.486,87.8701 +428309,47.47,90.20694 +428310,48.691,89.44144 +428311,49.929,88.6874 +428312,51.185,87.9461 +428313,46.091,90.1724 +428314,47.337,89.44381 +428315,48.601,88.7268 +428316,49.882,88.0227 +428317,44.712,90.13726 +428318,45.983,89.44596 +428319,47.272,88.7664 +428320,48.578,88.1 +428321,43.335,90.10156 +428322,44.63,89.44789 +428323,45.943,88.8062 +428324,47.274,88.1778 +428325,41.958,90.065321 +428326,43.277,89.44962 +428327,44.614,88.8461 +428328,45.968,88.2561 +428329,40.583,90.028579 +428330,41.924,89.45116 +428331,43.284,88.8862 +428332,44.661,88.335 +428333,39.209,89.9913601 +428334,40.572,89.45251 +428335,41.954,88.9264 +428336,43.353,88.4144 +428337,37.836,89.953693 +428338,39.22,89.45369 +428339,40.623,88.9667 +428340,42.044,88.4942 +428341,36.464,89.915606 +428342,37.868,89.4547 +428343,39.292,89.00717 +428344,40.734,88.5744 +428345,35.093,89.87713 +428346,36.517,89.45557 +428347,37.96,89.04774 +428348,39.423,88.6551 +428349,33.724,89.83829 +428350,35.166,89.45628 +428351,36.629,89.0884 +428352,38.11,88.7361 +428353,32.355,89.79913 +428354,33.816,89.45686 +428355,35.296,89.12915 +428356,36.796,88.8174 +428357,30.988,89.75966 +428358,32.465,89.45732 +428359,33.963,89.16998 +428360,35.481,88.8991 +428361,29.622,89.71993 +428362,31.116,89.45767 +428363,32.63,89.21087 +428364,34.165,88.981 +428365,28.257,89.67995 +428366,29.766,89.45791 +428367,31.297,89.25181 +428368,32.848,89.06314 +428369,26.893,89.63976 +428370,28.417,89.45805 +428371,29.963,89.2928 +428372,31.529,89.14549 +428373,25.531,89.5994 +428374,27.068,89.45812 +428375,28.628,89.33383 +428376,30.209,89.22802 +428377,24.169,89.55888 +428378,25.72,89.45811 +428379,27.293,89.37487 +428380,28.888,89.3107 +428381,22.809,89.51825 +428382,24.372,89.45803 +428383,25.958,89.41593 +428384,27.566,89.39348 +428385,21.45,89.47753 +428386,23.024,89.45791 +428387,24.622,89.45699 +428388,26.242,89.47633 +428389,20.093,89.43675 +428390,21.677,89.45774 +428391,23.285,89.49804 +428392,24.917,89.55923 +428393,18.737,89.39594 +428394,20.33,89.45754 +428395,21.948,89.53906 +428396,23.591,89.64214 +428397,17.381,89.35514 +428398,18.984,89.45732 +428399,20.611,89.58006 +428400,22.263,89.72502 +428401,16.028,89.31437 +428402,17.638,89.45709 +428403,19.273,89.62101 +428404,20.934,89.80785 +428405,14.675,89.27367 +428406,16.292,89.45686 +428407,17.935,89.66191 +428408,19.604,89.89059 +428409,13.324,89.23306 +428410,14.947,89.45664 +428411,16.596,89.70275 +428412,18.272,89.973209 +428413,11.974,89.19257 +428414,13.602,89.45644 +428415,15.257,89.74351 +428416,16.939,90.05567 +428417,10.625,89.15225 +428418,12.258,89.45627 +428419,13.917,89.78418 +428420,15.605,90.13794 +428421,9.2777,89.1121 +428422,10.914,89.45614 +428423,12.577,89.82476 +428424,14.269,90.21999 +428425,7.9316,89.07218 +428426,9.57,89.45606 +428427,11.237,89.86523 +428428,12.932,90.30178 +428429,6.5867,89.0325 +428430,8.2267,89.45604 +428431,9.8954,89.905579 +428432,11.594,90.38329 +428433,5.2431,88.9931 +428434,6.8839,89.4561 +428435,8.5538,89.9458 +428436,10.255,90.46447 +428437,3.9007,88.954 +428438,5.5414,89.45623 +428439,7.2117,89.985882 +428440,8.9135,90.5453 +428441,2.5597,88.9152 +428442,4.1993,89.45646 +428443,5.8692,90.025813 +428444,7.5712,90.62574 +428445,1.2199,88.8768 +428446,2.8577,89.45679 +428447,4.5261,90.065583 +428448,6.2274,90.70576 +428449,359.88,88.8388 +428450,1.5164,89.45723 +428451,3.1826,90.10518 +428452,4.8824,90.78533 +428453,358.54,88.8013 +428454,0.17553,89.45779 +428455,1.8386,90.1446 +428456,3.536,90.86441 +428457,357.21,88.7641 +428458,358.84,89.45849 +428459,0.49413,90.18382 +428460,2.1882,90.94298 +428461,355.87,88.7275 +428462,357.49,89.45932 +428463,359.15,90.22284 +428464,0.83909,91.021 +428465,354.54,88.6913 +428466,356.16,89.46031 +428467,357.8,90.26165 +428468,359.49,91.0984 +428469,353.21,88.6557 +428470,354.82,89.46145 +428471,356.46,90.30023 +428472,358.14,91.1753 +428473,351.88,88.6207 +428474,353.48,89.46277 +428475,355.11,90.33858 +428476,356.78,91.2514 +428477,350.55,88.5863 +428478,352.14,89.46427 +428479,353.76,90.37669 +428480,355.43,91.327 +428481,349.22,88.5524 +428482,350.8,89.46595 +428483,352.42,90.41454 +428484,354.07,91.4018 +428485,347.89,88.5193 +428486,349.46,89.46783 +428487,351.07,90.45213 +428488,352.72,91.4758 +428489,346.56,88.4868 +428490,348.13,89.46992 +428491,349.72,90.48945 +428492,351.36,91.5491 +428493,345.24,88.455 +428494,346.79,89.47223 +428495,348.37,90.52649 +428496,350,91.6217 +428497,343.92,88.4239 +428498,345.45,89.47476 +428499,347.02,90.56323 +428500,348.64,91.6934 +428501,342.59,88.3936 +428502,344.12,89.47752 +428503,345.67,90.59968 +428504,347.27,91.7642 +428505,341.27,88.364 +428506,342.78,89.48053 +428507,344.32,90.63581 +428508,345.91,91.8342 +428509,339.95,88.3353 +428510,341.44,89.48379 +428511,342.97,90.67162 +428512,344.55,91.9032 +428513,338.63,88.3073 +428514,340.11,89.4873 +428515,341.62,90.70711 +428516,343.18,91.9713 +428517,337.31,88.2803 +428518,338.77,89.49108 +428519,340.27,90.74226 +428520,341.81,92.0385 +428521,336,88.2541 +428522,337.44,89.49514 +428523,338.92,90.77707 +428524,340.44,92.1047 +428525,334.68,88.2288 +428526,336.1,89.49948 +428527,337.57,90.81152 +428528,339.07,92.1698 +428529,333.37,88.2044 +428530,334.77,89.50411 +428531,336.21,90.84561 +428532,337.7,92.234 +428533,332.05,88.181 +428534,333.44,89.50904 +428535,334.86,90.87933 +428536,336.33,92.297 +428537,330.74,88.1585 +428538,332.1,89.51427 +428539,333.51,90.91267 +428540,334.96,92.359 +428541,329.43,88.137 +428542,330.77,89.51982 +428543,332.15,90.94563 +428544,333.58,92.4199 +428545,328.12,88.1166 +428546,329.44,89.52569 +428547,330.8,90.9782 +428548,332.21,92.4796 +428549,326.81,88.0971 +428550,328.11,89.53188 +428551,329.45,91.0104 +428552,330.83,92.5382 +428553,325.5,88.0787 +428554,326.77,89.53841 +428555,328.09,91.0421 +428556,329.45,92.5955 +428557,324.19,88.0614 +428558,325.44,89.54527 +428559,326.74,91.0735 +428560,328.08,92.6517 +428561,322.88,88.0452 +428562,324.11,89.55249 +428563,325.38,91.1044 +428564,326.7,92.7067 +428565,321.58,88.03 +428566,322.78,89.56005 +428567,324.02,91.1349 +428568,325.31,92.7604 +428569,320.27,88.016 +428570,321.45,89.56798 +428571,322.67,91.165 +428572,323.93,92.8129 +428573,318.97,88.0032 +428574,320.12,89.57627 +428575,321.31,91.1946 +428576,322.55,92.8641 +428577,317.66,87.9915 +428578,318.79,89.58492 +428579,319.95,91.2238 +428580,321.17,92.914 +428581,316.36,87.9809 +428582,317.46,89.59396 +428583,318.6,91.2525 +428584,319.78,92.9626 +428585,315.06,87.9716 +428586,316.13,89.60337 +428587,317.24,91.2807 +428588,318.39,93.0098 +428589,313.76,87.9634 +428590,314.8,89.61317 +428591,315.88,91.3086 +428592,317.01,93.0557 +428593,312.46,87.9565 +428594,313.47,89.62336 +428595,314.52,91.3359 +428596,315.62,93.1003 +428597,311.16,87.9508 +428598,312.14,89.63394 +428599,313.16,91.3628 +428600,314.23,93.1434 +428601,309.86,87.9464 +428602,310.81,89.64493 +428603,311.8,91.3892 +428604,312.84,93.1852 +428605,308.56,87.9432 +428606,309.48,89.65631 +428607,310.44,91.4151 +428608,311.45,93.2256 +428609,307.26,87.9412 +428610,308.15,89.66811 +428611,309.08,91.4405 +428612,310.06,93.2646 +428613,305.97,87.9406 +428614,306.83,89.68031 +428615,307.72,91.4654 +428616,308.67,93.3021 +428617,304.67,87.9413 +428618,305.5,89.69293 +428619,306.36,91.4899 +428620,307.28,93.3382 +428621,303.37,87.9432 +428622,304.17,89.70596 +428623,305,91.5138 +428624,305.88,93.3728 +428625,302.08,87.9465 +428626,302.84,89.71942 +428627,303.64,91.5373 +428628,304.49,93.406 +428629,300.78,87.9511 +428630,301.51,89.7333 +428631,302.28,91.5602 +428632,303.1,93.4378 +428633,299.49,87.957 +428634,300.19,89.7476 +428635,300.92,91.5827 +428636,301.7,93.468 +428637,298.2,87.9643 +428638,298.86,89.76233 +428639,299.56,91.6046 +428640,300.3,93.4968 +428641,296.9,87.9729 +428642,297.53,89.7775 +428643,298.2,91.626 +428644,298.91,93.5241 +428645,295.61,87.9828 +428646,296.2,89.79309 +428647,296.84,91.6469 +428648,297.51,93.5499 +428649,294.32,87.9941 +428650,294.88,89.80912 +428651,295.47,91.6673 +428652,296.11,93.5743 +428653,293.02,88.0068 +428654,293.55,89.82558 +428655,294.11,91.6872 +428656,294.72,93.5971 +428657,291.73,88.0208 +428658,292.22,89.84248 +428659,292.75,91.7066 +428660,293.32,93.6184 +428661,290.44,88.0363 +428662,290.9,89.85982 +428663,291.39,91.7254 +428664,291.92,93.6383 +428665,289.15,88.053 +428666,289.57,89.87759 +428667,290.02,91.7438 +428668,290.52,93.6566 +428669,287.86,88.0712 +428670,288.24,89.8958 +428671,288.66,91.7616 +428672,289.12,93.6734 +428673,286.57,88.0907 +428674,286.92,89.914453 +428675,287.3,91.7789 +428676,287.72,93.6887 +428677,285.28,88.1116 +428678,285.59,89.933541 +428679,285.94,91.7957 +428680,286.32,93.7026 +428681,283.99,88.1339 +428682,284.26,89.953067 +428683,284.57,91.8119 +428684,284.92,93.7149 +428685,282.7,88.1575 +428686,282.94,89.97303 +428687,283.21,91.8277 +428688,283.52,93.7257 +428689,281.41,88.1825 +428690,281.61,89.9934304 +428691,281.85,91.8429 +428692,282.12,93.7351 +428693,280.12,88.2089 +428694,280.28,90.014266 +428695,280.48,91.8576 +428696,280.72,93.7429 +428697,278.83,88.2366 +428698,278.96,90.035536 +428699,279.12,91.8718 +428700,279.32,93.7493 +428701,277.53,88.2658 +428702,277.63,90.057238 +428703,277.76,91.8855 +428704,277.91,93.7542 +428705,276.24,88.2962 +428706,276.3,90.079372 +428707,276.39,91.8987 +428708,276.51,93.7576 +428709,274.95,88.3281 +428710,274.98,90.10193 +428711,275.03,91.9114 +428712,275.11,93.7596 +428713,273.66,88.3613 +428714,273.65,90.12492 +428715,273.67,91.9235 +428716,273.71,93.7601 +428717,272.37,88.3958 +428718,272.32,90.14834 +428719,272.3,91.9352 +428720,272.31,93.7592 +428721,271.08,88.4316 +428722,271,90.17217 +428723,270.94,91.9463 +428724,270.91,93.7569 +428725,269.79,88.4688 +428726,269.67,90.19643 +428727,269.57,91.957 +428728,269.51,93.7531 +428729,268.5,88.5073 +428730,268.34,90.2211 +428731,268.21,91.9672 +428732,268.11,93.7479 +428733,267.21,88.5471 +428734,267.02,90.24618 +428735,266.85,91.9768 +428736,266.7,93.7413 +428737,265.92,88.5883 +428738,265.69,90.27167 +428739,265.48,91.986 +428740,265.3,93.7334 +428741,264.63,88.6307 +428742,264.36,90.29757 +428743,264.12,91.9947 +428744,263.9,93.724 +428745,263.34,88.6743 +428746,263.04,90.32386 +428747,262.76,92.0029 +428748,262.5,93.7133 +428749,262.05,88.7193 +428750,261.71,90.35055 +428751,261.39,92.0107 +428752,261.1,93.7013 +428753,260.75,88.7655 +428754,260.38,90.37764 +428755,260.03,92.018 +428756,259.7,93.6879 +428757,259.46,88.813 +428758,259.05,90.40511 +428759,258.67,92.0248 +428760,258.3,93.6732 +428761,258.17,88.8616 +428762,257.72,90.43296 +428763,257.3,92.0311 +428764,256.9,93.6573 +428765,256.87,88.9115 +428766,256.4,90.46119 +428767,255.94,92.037 +428768,255.5,93.64 +428769,255.58,88.9626 +428770,255.07,90.48979 +428771,254.58,92.0425 +428772,254.1,93.6215 +428773,254.28,89.01487 +428774,253.74,90.51876 +428775,253.21,92.0475 +428776,252.71,93.6017 +428777,252.99,89.06831 +428778,252.41,90.54809 +428779,251.85,92.0521 +428780,251.31,93.5808 +428781,251.69,89.12289 +428782,251.08,90.57777 +428783,250.49,92.0562 +428784,249.91,93.5586 +428785,250.4,89.1786 +428786,249.75,90.60779 +428787,249.12,92.0599 +428788,248.52,93.5352 +428789,249.1,89.23543 +428790,248.42,90.63816 +428791,247.76,92.0632 +428792,247.12,93.5107 +428793,247.8,89.29335 +428794,247.09,90.66887 +428795,246.4,92.0661 +428796,245.72,93.4851 +428797,246.51,89.35235 +428798,245.76,90.6999 +428799,245.04,92.0686 +428800,244.33,93.4583 +428801,245.21,89.4124 +428802,244.43,90.73125 +428803,243.68,92.0707 +428804,242.93,93.4304 +428805,243.91,89.47348 +428806,243.1,90.76291 +428807,242.31,92.0724 +428808,241.54,93.4015 +428809,242.61,89.53557 +428810,241.77,90.79488 +428811,240.95,92.0737 +428812,240.15,93.3715 +428813,241.31,89.59866 +428814,240.44,90.82715 +428815,239.59,92.0746 +428816,238.76,93.3405 +428817,240.01,89.66272 +428818,239.11,90.85971 +428819,238.23,92.0752 +428820,237.36,93.3085 +428821,238.71,89.72771 +428822,237.78,90.89255 +428823,236.87,92.0754 +428824,235.97,93.2756 +428825,237.4,89.79364 +428826,236.45,90.92566 +428827,235.51,92.0752 +428828,234.58,93.2416 +428829,236.1,89.86046 +428830,235.12,90.95904 +428831,234.15,92.0747 +428832,233.19,93.2068 +428833,234.79,89.928148 +428834,233.78,90.99268 +428835,232.79,92.0739 +428836,231.8,93.1711 +428837,233.49,89.9966893 +428838,232.45,91.0266 +428839,231.43,92.0728 +428840,230.42,93.1345 +428841,232.18,90.066053 +428842,231.12,91.0607 +428843,230.07,92.0713 +428844,229.03,93.097 +428845,230.88,90.13621 +428846,229.79,91.0951 +428847,228.71,92.0695 +428848,227.64,93.0588 +428849,229.57,90.20715 +428850,228.45,91.1296 +428851,227.35,92.0675 +428852,226.26,93.0197 +428853,228.26,90.27882 +428854,227.12,91.1644 +428855,225.99,92.0651 +428856,224.87,92.9799 +428857,226.95,90.35121 +428858,225.78,91.1994 +428859,224.63,92.0625 +428860,223.49,92.9394 +428861,225.64,90.42429 +428862,224.45,91.2346 +428863,223.27,92.0596 +428864,222.11,92.8982 +428865,224.33,90.49803 +428866,223.12,91.27 +428867,221.92,92.0564 +428868,220.73,92.8563 +428869,223.01,90.5724 +428870,221.78,91.3055 +428871,220.56,92.053 +428872,219.35,92.8137 +428873,221.7,90.64738 +428874,220.44,91.3412 +428875,219.2,92.0493 +428876,217.97,92.7706 +428877,220.38,90.72292 +428878,219.11,91.3771 +428879,217.84,92.0454 +428880,216.59,92.7268 +428881,219.07,90.79901 +428882,217.77,91.4131 +428883,216.49,92.0413 +428884,215.21,92.6825 +428885,217.75,90.87562 +428886,216.44,91.4493 +428887,215.13,92.037 +428888,213.84,92.6377 +428889,216.43,90.9527 +428890,215.1,91.4855 +428891,213.77,92.0324 +428892,212.46,92.5924 +428893,215.11,91.0302 +428894,213.76,91.5219 +428895,212.42,92.0277 +428896,211.09,92.5467 +428897,213.79,91.1082 +428898,212.42,91.5584 +428899,211.06,92.0228 +428900,209.72,92.5005 +428901,212.47,91.1865 +428902,211.08,91.5949 +428903,209.71,92.0177 +428904,208.34,92.4539 +428905,211.15,91.2653 +428906,209.75,91.6316 +428907,208.35,92.0125 +428908,206.97,92.407 +428909,209.82,91.3443 +428910,208.41,91.6683 +428911,207,92.0071 +428912,205.6,92.3597 +428913,208.5,91.4236 +428914,207.07,91.7051 +428915,205.64,92.0016 +428916,204.23,92.3121 +428917,207.17,91.5032 +428918,205.73,91.7419 +428919,204.29,91.9959 +428920,202.87,92.2642 +428921,205.85,91.583 +428922,204.39,91.7788 +428923,202.94,91.9902 +428924,201.5,92.2161 +428925,204.52,91.663 +428926,203.05,91.8157 +428927,201.58,91.9843 +428928,200.14,92.1678 +428929,203.19,91.7432 +428930,201.7,91.8526 +428931,200.23,91.9783 +428932,198.77,92.1193 +428933,201.86,91.8235 +428934,200.36,91.8895 +428935,198.88,91.9723 +428936,197.41,92.0707 +428937,200.52,91.9039 +428938,199.02,91.9265 +428939,197.53,91.9661 +428940,196.05,92.022 +428941,199.19,91.9843 +428942,197.68,91.9633 +428943,196.18,91.9599 +428944,194.69,91.9731 +428945,197.86,92.0648 +428946,196.33,92.0002 +428947,194.82,91.9537 +428948,193.33,91.9243 +428949,196.52,92.1453 +428950,194.99,92.037 +428951,193.47,91.9474 +428952,191.97,91.8754 +428953,195.18,92.2257 +428954,193.65,92.0738 +428955,192.12,91.9411 +428956,190.62,91.8265 +428957,193.85,92.3061 +428958,192.3,92.1105 +428959,190.77,91.9347 +428960,189.26,91.7777 +428961,192.51,92.3864 +428962,190.96,92.1471 +428963,189.42,91.9284 +428964,187.91,91.7289 +428965,191.17,92.4665 +428966,189.61,92.1837 +428967,188.07,91.922 +428968,186.55,91.6803 +428969,189.82,92.5464 +428970,188.27,92.2202 +428971,186.73,91.9157 +428972,185.2,91.6318 +428973,188.48,92.6261 +428974,186.92,92.2565 +428975,185.38,91.9093 +428976,183.85,91.5834 +428977,187.13,92.7056 +428978,185.57,92.2927 +428979,184.03,91.903 +428980,182.5,91.5353 +428981,185.79,92.7848 +428982,184.23,92.3288 +428983,182.68,91.8968 +428984,181.15,91.4874 +428985,184.44,92.8637 +428986,182.88,92.3648 +428987,181.33,91.8906 +428988,179.81,91.4398 +428989,183.09,92.9423 +428990,181.53,92.4006 +428991,179.99,91.8845 +428992,178.46,91.3925 +428993,181.74,93.0204 +428994,180.18,92.4362 +428995,178.64,91.8784 +428996,177.12,91.3455 +428997,180.39,93.0982 +428998,178.83,92.4717 +428999,177.29,91.8724 +429000,175.77,91.2988 +429001,179.04,93.1755 +429002,177.48,92.507 +429003,175.95,91.8666 +429004,174.43,91.2526 +429005,177.69,93.2523 +429006,176.13,92.542 +429007,174.6,91.8608 +429008,173.09,91.2068 +429009,176.33,93.3286 +429010,174.78,92.5769 +429011,173.26,91.8551 +429012,171.75,91.1614 +429013,174.98,93.4044 +429014,173.43,92.6116 +429015,171.91,91.8496 +429016,170.41,91.1165 +429017,173.62,93.4796 +429018,172.08,92.646 +429019,170.57,91.8442 +429020,169.08,91.0721 +429021,172.26,93.5541 +429022,170.73,92.6802 +429023,169.22,91.839 +429024,167.74,91.0282 +429025,170.9,93.6281 +429026,169.38,92.7142 +429027,167.88,91.8339 +429028,166.4,90.98492 +429029,169.54,93.7013 +429030,168.03,92.7478 +429031,166.54,91.829 +429032,165.07,90.94222 +429033,168.18,93.7738 +429034,166.67,92.7813 +429035,165.2,91.8242 +429036,163.74,90.90014 +429037,166.81,93.8456 +429038,165.32,92.8144 +429039,163.85,91.8197 +429040,162.41,90.8587 +429041,165.45,93.9167 +429042,163.97,92.8472 +429043,162.51,91.8153 +429044,161.08,90.81795 +429045,164.08,93.9869 +429046,162.61,92.8798 +429047,161.17,91.8111 +429048,159.75,90.7779 +429049,162.72,94.0563 +429050,161.26,92.912 +429051,159.83,91.8072 +429052,158.42,90.73859 +429053,161.35,94.1248 +429054,159.9,92.9439 +429055,158.49,91.8035 +429056,157.09,90.70003 +429057,159.98,94.1924 +429058,158.55,92.9755 +429059,157.15,91.8 +429060,155.77,90.66225 +429061,158.61,94.2591 +429062,157.19,93.0068 +429063,155.81,91.7967 +429064,154.44,90.62528 +429065,157.24,94.3249 +429066,155.84,93.0377 +429067,154.47,91.7937 +429068,153.12,90.58915 +429069,155.86,94.3897 +429070,154.48,93.0682 +429071,153.13,91.791 +429072,151.8,90.55388 +429073,154.49,94.4534 +429074,153.12,93.0984 +429075,151.79,91.7885 +429076,150.47,90.51949 +429077,153.11,94.5161 +429078,151.77,93.1282 +429079,150.45,91.7863 +429080,149.15,90.486 +429081,151.74,94.5778 +429082,150.41,93.1576 +429083,149.11,91.7843 +429084,147.83,90.45345 +429085,150.36,94.6384 +429086,149.05,93.1866 +429087,147.77,91.7827 +429088,146.51,90.42186 +429089,148.98,94.6978 +429090,147.69,93.2153 +429091,146.43,91.7814 +429092,145.2,90.39124 +429093,147.6,94.7562 +429094,146.33,93.2435 +429095,145.09,91.7803 +429096,143.88,90.36161 +429097,146.22,94.8133 +429098,144.97,93.2713 +429099,143.76,91.7796 +429100,142.56,90.33301 +429101,144.84,94.8693 +429102,143.61,93.2987 +429103,142.42,91.7792 +429104,141.25,90.30545 +429105,143.46,94.924 +429106,142.26,93.3256 +429107,141.08,91.7791 +429108,139.94,90.27895 +429109,142.08,94.9775 +429110,140.89,93.3521 +429111,139.75,91.7794 +429112,138.62,90.25353 +429113,140.69,95.0298 +429114,139.53,93.3782 +429115,138.41,91.78 +429116,137.31,90.22922 +429117,139.31,95.0807 +429118,138.17,93.4038 +429119,137.07,91.7809 +429120,136,90.20602 +429121,137.92,95.1304 +429122,136.81,93.4289 +429123,135.74,91.7822 +429124,134.69,90.18396 +429125,136.53,95.1787 +429126,135.45,93.4536 +429127,134.4,91.7839 +429128,133.38,90.16306 +429129,135.15,95.2257 +429130,134.09,93.4778 +429131,133.07,91.7859 +429132,132.07,90.14333 +429133,133.76,95.2714 +429134,132.73,93.5016 +429135,131.73,91.7883 +429136,130.76,90.12479 +429137,132.37,95.3156 +429138,131.36,93.5248 +429139,130.4,91.791 +429140,129.45,90.10746 +429141,130.98,95.3585 +429142,130,93.5476 +429143,129.06,91.7942 +429144,128.15,90.091349 +429145,129.59,95.3999 +429146,128.64,93.5699 +429147,127.73,91.7977 +429148,126.84,90.076473 +429149,128.19,95.4399 +429150,127.28,93.5916 +429151,126.39,91.8016 +429152,125.53,90.062848 +429153,126.8,95.4785 +429154,125.91,93.6129 +429155,125.06,91.8059 +429156,124.23,90.050487 +429157,125.41,95.5156 +429158,124.55,93.6336 +429159,123.72,91.8106 +429160,122.92,90.039403 +429161,124.01,95.5512 +429162,123.19,93.6539 +429163,122.39,91.8158 +429164,121.62,90.029609 +429165,122.62,95.5854 +429166,121.82,93.6736 +429167,121.06,91.8213 +429168,120.32,90.021115 +429169,121.22,95.618 +429170,120.46,93.6928 +429171,119.72,91.8272 +429172,119.01,90.013933 +429173,119.83,95.6492 +429174,119.09,93.7115 +429175,118.39,91.8336 +429176,117.71,90.0080743 +429177,118.43,95.6788 +429178,117.73,93.7296 +429179,117.06,91.8403 +429180,116.41,90.0035474 +429181,117.03,95.7068 +429182,116.36,93.7472 +429183,115.72,91.8475 +429184,115.11,90.00036187 +429185,115.64,95.7334 +429186,115,93.7643 +429187,114.39,91.8551 +429188,113.81,89.9985261 +429189,114.24,95.7584 +429190,113.63,93.7808 +429191,113.06,91.8632 +429192,112.51,89.9980478 +429193,112.84,95.7818 +429194,112.27,93.7968 +429195,111.72,91.8717 +429196,111.21,89.9989341 +429197,111.44,95.8037 +429198,110.9,93.8123 +429199,110.39,91.8806 +429200,109.91,90.0011914 +429201,110.04,95.824 +429202,109.53,93.8272 +429203,109.06,91.8899 +429204,108.61,90.0048254 +429205,108.64,95.8427 +429206,108.17,93.8415 +429207,107.73,91.8996 +429208,107.31,90.0098411 +429209,107.24,95.8599 +429210,106.8,93.8553 +429211,106.39,91.9099 +429212,106.01,90.016243 +429213,105.84,95.8755 +429214,105.44,93.8686 +429215,105.06,91.9205 +429216,104.71,90.024034 +429217,104.44,95.8895 +429218,104.07,93.8813 +429219,103.73,91.9316 +429220,103.41,90.033219 +429221,103.04,95.9019 +429222,102.7,93.8934 +429223,102.4,91.9431 +429224,102.12,90.043798 +429225,101.63,95.9127 +429226,101.34,93.905 +429227,101.07,91.955 +429228,100.82,90.055773 +429229,100.23,95.922 +429230,99.97,93.9161 +429231,99.734,91.9674 +429232,99.52,90.069146 +429233,98.831,95.9297 +429234,98.603,93.9266 +429235,98.402,91.9802 +429236,98.223,90.083917 +429237,97.429,95.9358 +429238,97.237,93.9365 +429239,97.07,91.9935 +429240,96.925,90.10008 +429241,96.027,95.9403 +429242,95.87,93.9459 +429243,95.738,92.0072 +429244,95.627,90.11765 +429245,94.624,95.9432 +429246,94.503,93.9548 +429247,94.406,92.0213 +429248,94.33,90.1366 +429249,93.222,95.9446 +429250,93.136,93.9631 +429251,93.074,92.0359 +429252,93.032,90.15695 +429253,91.82,95.9444 +429254,91.769,93.9708 +429255,91.742,92.0509 +429256,91.735,90.17869 +429257,90.417,95.9427 +429258,90.402,93.978 +429259,90.409,92.0663 +429260,90.437,90.20181 +429261,89.015,95.9394 +429262,89.035,93.9847 +429263,89.077,92.0822 +429264,89.139,90.22631 +429265,87.612,95.9346 +429266,87.668,93.9908 +429267,87.745,92.0985 +429268,87.841,90.25218 +429269,86.21,95.9282 +429270,86.301,93.9964 +429271,86.413,92.1152 +429272,86.543,90.27942 +429273,84.808,95.9204 +429274,84.934,94.0015 +429275,85.08,92.1324 +429276,85.245,90.30802 +429277,83.406,95.911 +429278,83.567,94.006 +429279,83.748,92.1499 +429280,83.947,90.33797 +429281,82.004,95.9001 +429282,82.2,94.01 +429283,82.415,92.1679 +429284,82.648,90.36927 +429285,80.602,95.8877 +429286,80.833,94.0134 +429287,81.083,92.1863 +429288,81.349,90.40191 +429289,79.201,95.8739 +429290,79.466,94.0164 +429291,79.75,92.2051 +429292,80.05,90.43587 +429293,77.799,95.8586 +429294,78.099,94.0188 +429295,78.417,92.2243 +429296,78.751,90.47114 +429297,76.398,95.8418 +429298,76.733,94.0207 +429299,77.084,92.2439 +429300,77.451,90.50773 +429301,74.998,95.8236 +429302,75.366,94.0221 +429303,75.751,92.264 +429304,76.151,90.5456 +429305,73.597,95.804 +429306,74,94.023 +429307,74.418,92.2844 +429308,74.851,90.58476 +429309,72.197,95.783 +429310,72.633,94.0234 +429311,73.084,92.3052 +429312,73.55,90.62518 +429313,70.798,95.7606 +429314,71.267,94.0232 +429315,71.751,92.3263 +429316,72.248,90.66686 +429317,69.399,95.7369 +429318,69.901,94.0227 +429319,70.417,92.3479 +429320,70.947,90.70978 +429321,68,95.7118 +429322,68.535,94.0216 +429323,69.083,92.3698 +429324,69.644,90.75393 +429325,66.602,95.6854 +429326,67.169,94.02 +429327,67.749,92.3921 +429328,68.342,90.79928 +429329,65.204,95.6576 +429330,65.803,94.018 +429331,66.415,92.4148 +429332,67.038,90.84583 +429333,63.807,95.6286 +429334,64.437,94.0155 +429335,65.08,92.4378 +429336,65.735,90.89356 +429337,62.41,95.5983 +429338,63.072,94.0125 +429339,63.746,92.4612 +429340,64.43,90.94244 +429341,61.014,95.5668 +429342,61.707,94.0091 +429343,62.411,92.4849 +429344,63.125,90.99247 +429345,59.619,95.534 +429346,60.342,94.0053 +429347,61.076,92.509 +429348,61.82,91.0436 +429349,58.224,95.5001 +429350,58.977,94.001 +429351,59.74,92.5334 +429352,60.513,91.0959 +429353,56.83,95.465 +429354,57.612,93.9962 +429355,58.405,92.5581 +429356,59.206,91.1492 +429357,55.436,95.4287 +429358,56.248,93.9911 +429359,57.069,92.5831 +429360,57.899,91.2036 +429361,54.043,95.3913 +429362,54.883,93.9855 +429363,55.733,92.6084 +429364,56.59,91.259 +429365,52.651,95.3528 +429366,53.519,93.9795 +429367,54.396,92.634 +429368,55.281,91.3155 +429369,51.26,95.3132 +429370,52.156,93.9732 +429371,53.06,92.66 +429372,53.971,91.373 +429373,49.869,95.2726 +429374,50.792,93.9664 +429375,51.723,92.6862 +429376,52.661,91.4314 +429377,48.48,95.2309 +429378,49.429,93.9592 +429379,50.385,92.7127 +429380,51.349,91.4908 +429381,47.091,95.1883 +429382,48.066,93.9517 +429383,49.048,92.7394 +429384,50.037,91.5511 +429385,45.703,95.1446 +429386,46.703,93.9438 +429387,47.71,92.7664 +429388,48.724,91.6123 +429389,44.315,95.1001 +429390,45.34,93.9356 +429391,46.372,92.7937 +429392,47.41,91.6744 +429393,42.929,95.0546 +429394,43.978,93.927 +429395,45.034,92.8212 +429396,46.095,91.7374 +429397,41.543,95.0082 +429398,42.616,93.918 +429399,43.695,92.849 +429400,44.779,91.8012 +429401,40.159,94.961 +429402,41.254,93.9087 +429403,42.356,92.8769 +429404,43.463,91.8658 +429405,38.775,94.913 +429406,39.893,93.8992 +429407,41.016,92.9051 +429408,42.145,91.9311 +429409,37.392,94.8641 +429410,38.531,93.8893 +429411,39.677,92.9335 +429412,40.827,91.9972 +429413,36.011,94.8145 +429414,37.171,93.879 +429415,38.336,92.9621 +429416,39.507,92.0641 +429417,34.63,94.7642 +429418,35.81,93.8685 +429419,36.996,92.9909 +429420,38.187,92.1316 +429421,33.25,94.7132 +429422,34.45,93.8578 +429423,35.655,93.0198 +429424,36.865,92.1998 +429425,31.871,94.6614 +429426,33.09,93.8467 +429427,34.314,93.0489 +429428,35.543,92.2686 +429429,30.494,94.6091 +429430,31.73,93.8354 +429431,32.973,93.0782 +429432,34.219,92.338 +429433,29.117,94.5561 +429434,30.371,93.8238 +429435,31.631,93.1076 +429436,32.895,92.408 +429437,27.741,94.5026 +429438,29.012,93.812 +429439,30.289,93.1372 +429440,31.569,92.4786 +429441,26.367,94.4485 +429442,27.654,93.8 +429443,28.946,93.1669 +429444,30.242,92.5497 +429445,24.993,94.3939 +429446,26.295,93.7877 +429447,27.603,93.1967 +429448,28.915,92.6212 +429449,23.621,94.3388 +429450,24.937,93.7753 +429451,26.26,93.2266 +429452,27.586,92.6932 +429453,22.249,94.2832 +429454,23.58,93.7626 +429455,24.916,93.2566 +429456,26.256,92.7657 +429457,20.879,94.2273 +429458,22.223,93.7498 +429459,23.572,93.2866 +429460,24.925,92.8385 +429461,19.51,94.1709 +429462,20.866,93.7367 +429463,22.227,93.3168 +429464,23.593,92.9117 +429465,18.142,94.1142 +429466,19.509,93.7235 +429467,20.882,93.347 +429468,22.259,92.9852 +429469,16.775,94.0572 +429470,18.153,93.7102 +429471,19.537,93.3773 +429472,20.925,93.059 +429473,15.409,93.9999 +429474,16.797,93.6967 +429475,18.191,93.4076 +429476,19.589,93.133 +429477,14.045,93.9423 +429478,15.442,93.6831 +429479,16.845,93.4379 +429480,18.252,93.2073 +429481,12.681,93.8846 +429482,14.087,93.6693 +429483,15.499,93.4682 +429484,16.915,93.2818 +429485,11.319,93.8266 +429486,12.732,93.6555 +429487,14.152,93.4986 +429488,15.575,93.3565 +429489,9.9582,93.7685 +429490,11.378,93.6415 +429491,12.804,93.5289 +429492,14.235,93.4313 +429493,8.5983,93.7103 +429494,10.024,93.6275 +429495,11.457,93.5593 +429496,12.894,93.5061 +429497,7.2396,93.6519 +429498,8.6707,93.6133 +429499,10.108,93.5896 +429500,11.551,93.5811 +429501,5.882,93.5935 +429502,7.3176,93.5992 +429503,8.7598,93.6198 +429504,10.207,93.656 +429505,4.5257,93.5351 +429506,5.9648,93.5849 +429507,7.4108,93.6501 +429508,8.8622,93.731 +429509,3.1705,93.4768 +429510,4.6125,93.5706 +429511,6.0614,93.6802 +429512,7.5159,93.8059 +429513,1.8165,93.4184 +429514,3.2605,93.5563 +429515,4.7116,93.7103 +429516,6.1685,93.8808 +429517,0.46369,93.3601 +429518,1.9088,93.542 +429519,3.3613,93.7403 +429520,4.8198,93.9555 +429521,359.11,93.302 +429522,0.5576,93.5276 +429523,2.0107,93.7702 +429524,3.47,94.0301 +429525,357.76,93.244 +429526,359.21,93.5132 +429527,0.6596,93.7999 +429528,2.1189,94.1045 +429529,356.41,93.1861 +429530,357.86,93.4989 +429531,359.31,93.8296 +429532,0.76666,94.1787 +429533,355.06,93.1285 +429534,356.51,93.4846 +429535,357.96,93.8591 +429536,359.41,94.2527 +429537,353.72,93.0711 +429538,355.16,93.4703 +429539,356.6,93.8885 +429540,358.06,94.3263 +429541,352.37,93.014 +429542,353.81,93.4561 +429543,355.25,93.9178 +429544,356.7,94.3997 +429545,351.03,92.9572 +429546,352.46,93.4419 +429547,353.9,93.9468 +429548,355.35,94.4727 +429549,349.68,92.9007 +429550,351.11,93.4278 +429551,352.54,93.9757 +429552,353.99,94.5453 +429553,348.34,92.8446 +429554,349.76,93.4137 +429555,351.19,94.0045 +429556,352.63,94.6175 +429557,347,92.7889 +429558,348.41,93.3998 +429559,349.84,94.033 +429560,351.27,94.6893 +429561,345.66,92.7336 +429562,347.07,93.3859 +429563,348.48,94.0613 +429564,349.91,94.7605 +429565,344.32,92.6788 +429566,345.72,93.3722 +429567,347.13,94.0894 +429568,348.54,94.8313 +429569,342.98,92.6244 +429570,344.37,93.3585 +429571,345.77,94.1172 +429572,347.18,94.9015 +429573,341.65,92.5706 +429574,343.03,93.345 +429575,344.41,94.1448 +429576,345.81,94.9711 +429577,340.31,92.5174 +429578,341.68,93.3317 +429579,343.06,94.1722 +429580,344.45,95.0401 +429581,338.98,92.4647 +429582,340.33,93.3185 +429583,341.7,94.1993 +429584,343.08,95.1084 +429585,337.64,92.4126 +429586,338.99,93.3054 +429587,340.34,94.2261 +429588,341.71,95.176 +429589,336.31,92.3612 +429590,337.64,93.2925 +429591,338.99,94.2526 +429592,340.34,95.243 +429593,334.98,92.3104 +429594,336.3,93.2798 +429595,337.63,94.2789 +429596,338.97,95.3091 +429597,333.65,92.2603 +429598,334.96,93.2673 +429599,336.27,94.3048 +429600,337.6,95.3745 +429601,332.32,92.2109 +429602,333.61,93.255 +429603,334.91,94.3304 +429604,336.22,95.4391 +429605,330.99,92.1623 +429606,332.27,93.2429 +429607,333.55,94.3557 +429608,334.85,95.5028 +429609,329.67,92.1145 +429610,330.92,93.231 +429611,332.19,94.3807 +429612,333.47,95.5657 +429613,328.34,92.0674 +429614,329.58,93.2193 +429615,330.83,94.4053 +429616,332.1,95.6277 +429617,327.02,92.0212 +429618,328.24,93.2079 +429619,329.47,94.4296 +429620,330.72,95.6887 +429621,325.69,91.9759 +429622,326.9,93.1967 +429623,328.11,94.4535 +429624,329.34,95.7487 +429625,324.37,91.9314 +429626,325.56,93.1858 +429627,326.75,94.477 +429628,327.96,95.8078 +429629,323.05,91.8878 +429630,324.21,93.1751 +429631,325.39,94.5001 +429632,326.58,95.8658 +429633,321.73,91.8451 +429634,322.87,93.1648 +429635,324.03,94.5229 +429636,325.2,95.9228 +429637,320.41,91.8034 +429638,321.53,93.1546 +429639,322.67,94.5452 +429640,323.82,95.9787 +429641,319.09,91.7627 +429642,320.19,93.1448 +429643,321.31,94.5672 +429644,322.43,96.0335 +429645,317.77,91.723 +429646,318.85,93.1353 +429647,319.94,94.5887 +429648,321.05,96.0872 +429649,316.45,91.6842 +429650,317.51,93.126 +429651,318.58,94.6098 +429652,319.66,96.1397 +429653,315.14,91.6466 +429654,316.17,93.1171 +429655,317.22,94.6305 +429656,318.28,96.191 +429657,313.82,91.6099 +429658,314.83,93.1085 +429659,315.85,94.6507 +429660,316.89,96.2411 +429661,312.51,91.5744 +429662,313.49,93.1002 +429663,314.49,94.6705 +429664,315.5,96.29 +429665,311.19,91.54 +429666,312.15,93.0923 +429667,313.13,94.6898 +429668,314.11,96.3376 +429669,309.88,91.5066 +429670,310.81,93.0847 +429671,311.76,94.7087 +429672,312.72,96.3839 +429673,308.56,91.4745 +429674,309.47,93.0774 +429675,310.4,94.7271 +429676,311.33,96.4289 +429677,307.25,91.4435 +429678,308.14,93.0705 +429679,309.03,94.745 +429680,309.94,96.4726 +429681,305.94,91.4136 +429682,306.8,93.0639 +429683,307.67,94.7625 +429684,308.55,96.515 +429685,304.63,91.385 +429686,305.46,93.0577 +429687,306.3,94.7794 +429688,307.16,96.5559 +429689,303.32,91.3575 +429690,304.12,93.0519 +429691,304.94,94.7959 +429692,305.76,96.5955 +429693,302.01,91.3313 +429694,302.79,93.0464 +429695,303.57,94.8118 +429696,304.37,96.6337 +429697,300.7,91.3063 +429698,301.45,93.0414 +429699,302.2,94.8272 +429700,302.98,96.6705 +429701,299.4,91.2826 +429702,300.11,93.0367 +429703,300.84,94.8422 +429704,301.58,96.7058 +429705,298.09,91.2602 +429706,298.77,93.0324 +429707,299.47,94.8566 +429708,300.18,96.7396 +429709,296.78,91.239 +429710,297.44,93.0285 +429711,298.11,94.8705 +429712,298.79,96.772 +429713,295.47,91.2191 +429714,296.1,93.0249 +429715,296.74,94.8838 +429716,297.39,96.8029 +429717,294.17,91.2005 +429718,294.76,93.0218 +429719,295.37,94.8966 +429720,295.99,96.8322 +429721,292.86,91.1833 +429722,293.43,93.0191 +429723,294,94.9089 +429724,294.59,96.8601 +429725,291.56,91.1674 +429726,292.09,93.0168 +429727,292.64,94.9207 +429728,293.2,96.8864 +429729,290.25,91.1528 +429730,290.76,93.015 +429731,291.27,94.9319 +429732,291.8,96.9112 +429733,288.95,91.1396 +429734,289.42,93.0135 +429735,289.9,94.9425 +429736,290.4,96.9344 +429737,287.64,91.1277 +429738,288.08,93.0125 +429739,288.53,94.9526 +429740,289,96.956 +429741,286.34,91.1172 +429742,286.75,93.0119 +429743,287.17,94.9622 +429744,287.6,96.9761 +429745,285.04,91.108 +429746,285.41,93.0117 +429747,285.8,94.9712 +429748,286.19,96.9945 +429749,283.73,91.1003 +429750,284.08,93.0119 +429751,284.43,94.9796 +429752,284.79,97.0114 +429753,282.43,91.0939 +429754,282.74,93.0126 +429755,283.06,94.9875 +429756,283.39,97.0267 +429757,281.13,91.0889 +429758,281.41,93.0137 +429759,281.69,94.9948 +429760,281.99,97.0404 +429761,279.83,91.0854 +429762,280.07,93.0152 +429763,280.32,95.0015 +429764,280.59,97.0524 +429765,278.52,91.0832 +429766,278.74,93.0172 +429767,278.96,95.0077 +429768,279.19,97.0628 +429769,277.22,91.0824 +429770,277.4,93.0196 +429771,277.59,95.0133 +429772,277.78,97.0717 +429773,275.92,91.083 +429774,276.07,93.0224 +429775,276.22,95.0183 +429776,276.38,97.0788 +429777,274.62,91.0851 +429778,274.73,93.0257 +429779,274.85,95.0227 +429780,274.98,97.0844 +429781,273.32,91.0885 +429782,273.4,93.0294 +429783,273.48,95.0266 +429784,273.58,97.0883 +429785,272.02,91.0934 +429786,272.06,93.0336 +429787,272.11,95.0299 +429788,272.17,97.0907 +429789,270.71,91.0996 +429790,270.73,93.0381 +429791,270.74,95.0327 +429792,270.77,97.0913 +429793,269.41,91.1073 +429794,269.39,93.0432 +429795,269.38,95.0349 +429796,269.37,97.0904 +429797,268.11,91.1164 +429798,268.06,93.0486 +429799,268.01,95.0365 +429800,267.97,97.0878 +429801,266.81,91.1269 +429802,266.72,93.0545 +429803,266.64,95.0375 +429804,266.56,97.0836 +429805,265.51,91.1388 +429806,265.39,93.0609 +429807,265.27,95.038 +429808,265.16,97.0778 +429809,264.21,91.1521 +429810,264.05,93.0676 +429811,263.9,95.0379 +429812,263.76,97.0704 +429813,262.9,91.1667 +429814,262.71,93.0748 +429815,262.53,95.0372 +429816,262.35,97.0614 +429817,261.6,91.1828 +429818,261.38,93.0825 +429819,261.16,95.036 +429820,260.95,97.0508 +429821,260.3,91.2003 +429822,260.04,93.0905 +429823,259.79,95.0342 +429824,259.55,97.0386 +429825,259,91.2191 +429826,258.71,93.099 +429827,258.43,95.0319 +429828,258.15,97.0248 +429829,257.69,91.2393 +429830,257.37,93.1079 +429831,257.06,95.029 +429832,256.75,97.0094 +429833,256.39,91.2608 +429834,256.04,93.1172 +429835,255.69,95.0255 +429836,255.35,96.9925 +429837,255.09,91.2837 +429838,254.7,93.127 +429839,254.32,95.0215 +429840,253.94,96.974 +429841,253.78,91.308 +429842,253.37,93.1371 +429843,252.95,95.017 +429844,252.54,96.954 +429845,252.48,91.3336 +429846,252.03,93.1477 +429847,251.58,95.0119 +429848,251.14,96.9325 +429849,251.17,91.3605 +429850,250.69,93.1586 +429851,250.22,95.0063 +429852,249.74,96.9095 +429853,249.87,91.3887 +429854,249.36,93.17 +429855,248.85,95.0001 +429856,248.34,96.8849 +429857,248.56,91.4182 +429858,248.02,93.1818 +429859,247.48,94.9935 +429860,246.94,96.8589 +429861,247.26,91.449 +429862,246.68,93.1939 +429863,246.11,94.9863 +429864,245.55,96.8314 +429865,245.95,91.4811 +429866,245.35,93.2065 +429867,244.75,94.9785 +429868,244.15,96.8025 +429869,244.64,91.5144 +429870,244.01,93.2194 +429871,243.38,94.9703 +429872,242.75,96.7721 +429873,243.34,91.549 +429874,242.67,93.2327 +429875,242.01,94.9616 +429876,241.35,96.7403 +429877,242.03,91.5848 +429878,241.34,93.2464 +429879,240.65,94.9523 +429880,239.96,96.7072 +429881,240.72,91.6218 +429882,240,93.2605 +429883,239.28,94.9426 +429884,238.56,96.6726 +429885,239.41,91.66 +429886,238.66,93.2749 +429887,237.91,94.9324 +429888,237.16,96.6367 +429889,238.1,91.6994 +429890,237.32,93.2896 +429891,236.55,94.9217 +429892,235.77,96.5995 +429893,236.79,91.74 +429894,235.98,93.3048 +429895,235.18,94.9105 +429896,234.38,96.5609 +429897,235.48,91.7817 +429898,234.65,93.3202 +429899,233.81,94.8988 +429900,232.98,96.5211 +429901,234.17,91.8245 +429902,233.31,93.336 +429903,232.45,94.8867 +429904,231.59,96.4799 +429905,232.85,91.8685 +429906,231.97,93.3521 +429907,231.08,94.8741 +429908,230.2,96.4376 +429909,231.54,91.9135 +429910,230.63,93.3686 +429911,229.72,94.8611 +429912,228.81,96.394 +429913,230.23,91.9596 +429914,229.29,93.3853 +429915,228.35,94.8477 +429916,227.42,96.3492 +429917,228.91,92.0067 +429918,227.95,93.4024 +429919,226.99,94.8338 +429920,226.03,96.3033 +429921,227.6,92.0549 +429922,226.61,93.4198 +429923,225.63,94.8195 +429924,224.64,96.2562 +429925,226.28,92.1041 +429926,225.27,93.4375 +429927,224.26,94.8047 +429928,223.25,96.208 +429929,224.96,92.1542 +429930,223.93,93.4554 +429931,222.9,94.7896 +429932,221.86,96.1587 +429933,223.64,92.2053 +429934,222.59,93.4736 +429935,221.53,94.774 +429936,220.48,96.1084 +429937,222.32,92.2573 +429938,221.25,93.4921 +429939,220.17,94.7581 +429940,219.09,96.057 +429941,221,92.3103 +429942,219.91,93.5109 +429943,218.81,94.7418 +429944,217.71,96.0046 +429945,219.68,92.3641 +429946,218.57,93.5299 +429947,217.45,94.7251 +429948,216.32,95.9512 +429949,218.36,92.4187 +429950,217.22,93.5491 +429951,216.08,94.7081 +429952,214.94,95.8968 +429953,217.04,92.4742 +429954,215.88,93.5686 +429955,214.72,94.6907 +429956,213.56,95.8416 +429957,215.72,92.5305 +429958,214.54,93.5883 +429959,213.36,94.673 +429960,212.18,95.7855 +429961,214.39,92.5876 +429962,213.2,93.6082 +429963,212,94.6549 +429964,210.8,95.7284 +429965,213.07,92.6455 +429966,211.85,93.6283 +429967,210.64,94.6365 +429968,209.42,95.6706 +429969,211.74,92.704 +429970,210.51,93.6486 +429971,209.28,94.6178 +429972,208.04,95.612 +429973,210.41,92.7633 +429974,209.17,93.6691 +429975,207.92,94.5987 +429976,206.67,95.5526 +429977,209.08,92.8232 +429978,207.82,93.6898 +429979,206.56,94.5794 +429980,205.29,95.4925 +429981,207.75,92.8837 +429982,206.48,93.7106 +429983,205.2,94.5598 +429984,203.92,95.4316 +429985,206.42,92.9449 +429986,205.13,93.7316 +429987,203.84,94.54 +429988,202.54,95.3701 +429989,205.09,93.0067 +429990,203.79,93.7528 +429991,202.48,94.5198 +429992,201.17,95.308 +429993,203.76,93.0689 +429994,202.44,93.7741 +429995,201.12,94.4995 +429996,199.8,95.2452 +429997,202.42,93.1318 +429998,201.09,93.7955 +429999,199.76,94.4788 +430000,198.43,95.1819 +430001,201.09,93.1951 +430002,199.75,93.817 +430003,198.4,94.458 +430004,197.06,95.1181 +430005,199.75,93.2588 +430006,198.4,93.8386 +430007,197.05,94.4369 +430008,195.69,95.0537 +430009,198.41,93.323 +430010,197.05,93.8603 +430011,195.69,94.4156 +430012,194.33,94.9889 +430013,197.08,93.3876 +430014,195.71,93.8821 +430015,194.33,94.3941 +430016,192.96,94.9236 +430017,195.74,93.4525 +430018,194.36,93.904 +430019,192.98,94.3725 +430020,191.6,94.8579 +430021,194.4,93.5178 +430022,193.01,93.9259 +430023,191.62,94.3506 +430024,190.23,94.7919 +430025,193.05,93.5834 +430026,191.66,93.9479 +430027,190.27,94.3286 +430028,188.87,94.7255 +430029,191.71,93.6493 +430030,190.31,93.9699 +430031,188.91,94.3064 +430032,187.51,94.6588 +430033,190.37,93.7153 +430034,188.96,93.9919 +430035,187.56,94.2841 +430036,186.15,94.5918 +430037,189.02,93.7816 +430038,187.61,94.014 +430039,186.2,94.2617 +430040,184.79,94.5246 +430041,187.68,93.8481 +430042,186.26,94.0361 +430043,184.85,94.2391 +430044,183.43,94.4572 +430045,186.33,93.9147 +430046,184.91,94.0581 +430047,183.49,94.2165 +430048,182.08,94.3896 +430049,184.98,93.9814 +430050,183.56,94.0802 +430051,182.14,94.1937 +430052,180.72,94.3219 +430053,183.63,94.0481 +430054,182.21,94.1022 +430055,180.79,94.1709 +430056,179.37,94.2541 +430057,182.28,94.1149 +430058,180.86,94.1242 +430059,179.44,94.1479 +430060,178.01,94.1863 +430061,180.92,94.1817 +430062,179.51,94.1461 +430063,178.08,94.125 +430064,176.66,94.1184 +430065,179.57,94.2485 +430066,178.15,94.1679 +430067,176.73,94.1019 +430068,175.31,94.0505 +430069,178.22,94.3152 +430070,176.8,94.1897 +430071,175.38,94.0788 +430072,173.96,93.9826 +430073,176.86,94.3818 +430074,175.45,94.2114 +430075,174.03,94.0557 +430076,172.62,93.9148 +430077,175.5,94.4483 +430078,174.09,94.233 +430079,172.68,94.0326 +430080,171.27,93.8471 +430081,174.15,94.5145 +430082,172.74,94.2545 +430083,171.33,94.0095 +430084,169.92,93.7796 +430085,172.79,94.5806 +430086,171.38,94.2759 +430087,169.98,93.9864 +430088,168.58,93.7122 +430089,171.43,94.6465 +430090,170.03,94.2971 +430091,168.63,93.9633 +430092,167.24,93.6451 +430093,170.06,94.7121 +430094,168.67,94.3182 +430095,167.28,93.9402 +430096,165.89,93.5781 +430097,168.7,94.7774 +430098,167.32,94.3392 +430099,165.93,93.9172 +430100,164.55,93.5115 +430101,167.34,94.8423 +430102,165.96,94.36 +430103,164.59,93.8942 +430104,163.21,93.4451 +430105,165.97,94.9069 +430106,164.6,94.3806 +430107,163.24,93.8713 +430108,161.87,93.3791 +430109,164.6,94.9711 +430110,163.25,94.401 +430111,161.89,93.8484 +430112,160.54,93.3134 +430113,163.24,95.0348 +430114,161.89,94.4212 +430115,160.54,93.8256 +430116,159.2,93.2481 +430117,161.87,95.0981 +430118,160.53,94.4412 +430119,159.2,93.803 +430120,157.86,93.1833 +430121,160.5,95.1608 +430122,159.18,94.461 +430123,157.85,93.7804 +430124,156.53,93.1189 +430125,159.13,95.223 +430126,157.82,94.4806 +430127,156.51,93.7579 +430128,155.2,93.055 +430129,157.76,95.2847 +430130,156.46,94.4999 +430131,155.16,93.7356 +430132,153.86,92.9916 +430133,156.38,95.3457 +430134,155.1,94.519 +430135,153.82,93.7134 +430136,152.53,92.9288 +430137,155.01,95.4061 +430138,153.74,94.5378 +430139,152.47,93.6914 +430140,151.2,92.8666 +430141,153.63,95.4659 +430142,152.38,94.5563 +430143,151.13,93.6695 +430144,149.87,92.805 +430145,152.26,95.5249 +430146,151.02,94.5746 +430147,149.78,93.6477 +430148,148.55,92.744 +430149,150.88,95.5832 +430150,149.66,94.5925 +430151,148.44,93.6262 +430152,147.22,92.6837 +430153,149.5,95.6407 +430154,148.3,94.6102 +430155,147.1,93.6048 +430156,145.89,92.6241 +430157,148.12,95.6974 +430158,146.94,94.6275 +430159,145.75,93.5836 +430160,144.57,92.5652 +430161,146.74,95.7533 +430162,145.58,94.6445 +430163,144.41,93.5627 +430164,143.25,92.507 +430165,145.36,95.8084 +430166,144.21,94.6612 +430167,143.07,93.5419 +430168,141.92,92.4497 +430169,143.98,95.8625 +430170,142.85,94.6775 +430171,141.73,93.5214 +430172,140.6,92.3931 +430173,142.6,95.9158 +430174,141.49,94.6935 +430175,140.38,93.5011 +430176,139.28,92.3374 +430177,141.21,95.9681 +430178,140.13,94.7092 +430179,139.04,93.4811 +430180,137.96,92.2826 +430181,139.83,96.0194 +430182,138.76,94.7244 +430183,137.7,93.4613 +430184,136.64,92.2286 +430185,138.44,96.0697 +430186,137.4,94.7393 +430187,136.36,93.4417 +430188,135.32,92.1755 +430189,137.05,96.119 +430190,136.04,94.7537 +430191,135.02,93.4225 +430192,134,92.1234 +430193,135.67,96.1672 +430194,134.67,94.7678 +430195,133.68,93.4035 +430196,132.69,92.0722 +430197,134.28,96.2143 +430198,133.31,94.7815 +430199,132.34,93.3848 +430200,131.37,92.022 +430201,132.89,96.2603 +430202,131.94,94.7948 +430203,131,93.3664 +430204,130.06,91.9728 +430205,131.5,96.3052 +430206,130.58,94.8076 +430207,129.66,93.3482 +430208,128.74,91.9246 +430209,130.11,96.3489 +430210,129.22,94.82 +430211,128.32,93.3304 +430212,127.43,91.8775 +430213,128.72,96.3914 +430214,127.85,94.832 +430215,126.98,93.313 +430216,126.12,91.8314 +430217,127.32,96.4327 +430218,126.48,94.8435 +430219,125.65,93.2958 +430220,124.8,91.7865 +430221,125.93,96.4727 +430222,125.12,94.8545 +430223,124.31,93.279 +430224,123.49,91.7426 +430225,124.54,96.5115 +430226,123.75,94.8651 +430227,122.97,93.2625 +430228,122.18,91.6999 +430229,123.14,96.549 +430230,122.39,94.8753 +430231,121.63,93.2463 +430232,120.87,91.6583 +430233,121.75,96.5852 +430234,121.02,94.8849 +430235,120.29,93.2305 +430236,119.56,91.6179 +430237,120.35,96.62 +430238,119.65,94.8941 +430239,118.96,93.215 +430240,118.26,91.5786 +430241,118.95,96.6535 +430242,118.29,94.9028 +430243,117.62,93.1999 +430244,116.95,91.5406 +430245,117.56,96.6856 +430246,116.92,94.911 +430247,116.28,93.1852 +430248,115.64,91.5038 +430249,116.16,96.7164 +430250,115.55,94.9187 +430251,114.95,93.1709 +430252,114.33,91.4682 +430253,114.76,96.7457 +430254,114.19,94.9259 +430255,113.61,93.1569 +430256,113.03,91.4338 +430257,113.36,96.7736 +430258,112.82,94.9325 +430259,112.27,93.1433 +430260,111.72,91.4007 +430261,111.96,96.8 +430262,111.45,94.9387 +430263,110.94,93.1301 +430264,110.42,91.3689 +430265,110.56,96.825 +430266,110.08,94.9443 +430267,109.6,93.1173 +430268,109.11,91.3384 +430269,109.16,96.8485 +430270,108.72,94.9494 +430271,108.26,93.1049 +430272,107.81,91.3092 +430273,107.76,96.8706 +430274,107.35,94.954 +430275,106.93,93.0929 +430276,106.5,91.2812 +430277,106.36,96.8911 +430278,105.98,94.9581 +430279,105.59,93.0813 +430280,105.2,91.2547 +430281,104.96,96.91 +430282,104.61,94.9616 +430283,104.26,93.0702 +430284,103.89,91.2294 +430285,103.56,96.9275 +430286,103.24,94.9645 +430287,102.92,93.0594 +430288,102.59,91.2055 +430289,102.16,96.9434 +430290,101.88,94.9669 +430291,101.59,93.049 +430292,101.29,91.1829 +430293,100.76,96.9577 +430294,100.51,94.9688 +430295,100.25,93.0391 +430296,99.986,91.1617 +430297,99.357,96.9705 +430298,99.14,94.9701 +430299,98.915,93.0296 +430300,98.684,91.1419 +430301,97.954,96.9817 +430302,97.771,94.9709 +430303,97.58,93.0205 +430304,97.382,91.1234 +430305,96.552,96.9913 +430306,96.403,94.971 +430307,96.245,93.0119 +430308,96.08,91.1064 +430309,95.15,96.9993 +430310,95.034,94.9707 +430311,94.91,93.0036 +430312,94.778,91.0907 +430313,93.747,97.0058 +430314,93.666,94.9698 +430315,93.575,92.9958 +430316,93.477,91.0764 +430317,92.344,97.0106 +430318,92.297,94.9683 +430319,92.24,92.9885 +430320,92.175,91.0635 +430321,90.942,97.0138 +430322,90.928,94.9662 +430323,90.905,92.9815 +430324,90.874,91.052 +430325,89.539,97.0154 +430326,89.56,94.9636 +430327,89.571,92.9751 +430328,89.572,91.0419 +430329,88.136,97.0153 +430330,88.191,94.9604 +430331,88.236,92.969 +430332,88.271,91.0333 +430333,86.733,97.0137 +430334,86.823,94.9566 +430335,86.901,92.9634 +430336,86.97,91.026 +430337,85.331,97.0104 +430338,85.454,94.9523 +430339,85.566,92.9582 +430340,85.668,91.0201 +430341,83.928,97.0055 +430342,84.086,94.9474 +430343,84.231,92.9535 +430344,84.367,91.0157 +430345,82.526,96.9989 +430346,82.717,94.9419 +430347,82.896,92.9492 +430348,83.065,91.0126 +430349,81.123,96.9908 +430350,81.349,94.9358 +430351,81.562,92.9453 +430352,81.764,91.011 +430353,79.721,96.981 +430354,79.98,94.9292 +430355,80.227,92.9419 +430356,80.462,91.0108 +430357,78.319,96.9696 +430358,78.612,94.9221 +430359,78.892,92.9389 +430360,79.16,91.0119 +430361,76.918,96.9566 +430362,77.244,94.9143 +430363,77.557,92.9363 +430364,77.858,91.0145 +430365,75.516,96.942 +430366,75.876,94.906 +430367,76.222,92.9342 +430368,76.556,91.0185 +430369,74.115,96.9258 +430370,74.508,94.8971 +430371,74.886,92.9325 +430372,75.253,91.0238 +430373,72.714,96.9079 +430374,73.14,94.8877 +430375,73.551,92.9312 +430376,73.95,91.0306 +430377,71.314,96.8885 +430378,71.772,94.8777 +430379,72.216,92.9304 +430380,72.647,91.0387 +430381,69.914,96.8675 +430382,70.405,94.8672 +430383,70.88,92.93 +430384,71.344,91.0482 +430385,68.514,96.8449 +430386,69.037,94.8561 +430387,69.545,92.93 +430388,70.04,91.059 +430389,67.115,96.8208 +430390,67.67,94.8444 +430391,68.209,92.9305 +430392,68.736,91.0712 +430393,65.716,96.7951 +430394,66.303,94.8322 +430395,66.873,92.9313 +430396,67.431,91.0848 +430397,64.318,96.7678 +430398,64.936,94.8195 +430399,65.537,92.9326 +430400,66.126,91.0997 +430401,62.92,96.7391 +430402,63.569,94.8062 +430403,64.201,92.9343 +430404,64.821,91.1159 +430405,61.523,96.7088 +430406,62.202,94.7924 +430407,62.865,92.9363 +430408,63.515,91.1335 +430409,60.126,96.677 +430410,60.836,94.7781 +430411,61.529,92.9388 +430412,62.209,91.1523 +430413,58.73,96.6437 +430414,59.469,94.7632 +430415,60.192,92.9417 +430416,60.902,91.1724 +430417,57.335,96.6089 +430418,58.103,94.7478 +430419,58.856,92.945 +430420,59.594,91.1939 +430421,55.94,96.5727 +430422,56.738,94.7319 +430423,57.519,92.9487 +430424,58.286,91.2165 +430425,54.546,96.535 +430426,55.372,94.7155 +430427,56.182,92.9527 +430428,56.977,91.2405 +430429,53.152,96.496 +430430,54.007,94.6985 +430431,54.844,92.9572 +430432,55.668,91.2657 +430433,51.759,96.4555 +430434,52.641,94.6811 +430435,53.507,92.962 +430436,54.358,91.2921 +430437,50.367,96.4136 +430438,51.277,94.6632 +430439,52.169,92.9672 +430440,53.048,91.3197 +430441,48.976,96.3703 +430442,49.912,94.6448 +430443,50.831,92.9727 +430444,51.736,91.3485 +430445,47.586,96.3257 +430446,48.548,94.6259 +430447,49.493,92.9786 +430448,50.424,91.3784 +430449,46.196,96.2798 +430450,47.183,94.6065 +430451,48.155,92.9848 +430452,49.112,91.4096 +430453,44.807,96.2326 +430454,45.82,94.5867 +430455,46.816,92.9914 +430456,47.798,91.4418 +430457,43.419,96.1841 +430458,44.456,94.5664 +430459,45.477,92.9984 +430460,46.484,91.4752 +430461,42.032,96.1343 +430462,43.093,94.5456 +430463,44.138,93.0056 +430464,45.169,91.5097 +430465,40.645,96.0834 +430466,41.73,94.5244 +430467,42.798,93.0132 +430468,43.853,91.5453 +430469,39.26,96.0312 +430470,40.367,94.5028 +430471,41.459,93.0211 +430472,42.536,91.5819 +430473,37.875,95.9778 +430474,39.005,94.4807 +430475,40.119,93.0293 +430476,41.219,91.6195 +430477,36.492,95.9232 +430478,37.643,94.4583 +430479,38.779,93.0379 +430480,39.9,91.6582 +430481,35.109,95.8676 +430482,36.281,94.4354 +430483,37.438,93.0467 +430484,38.581,91.6979 +430485,33.727,95.8108 +430486,34.92,94.412 +430487,36.097,93.0558 +430488,37.261,91.7385 +430489,32.347,95.7529 +430490,33.559,94.3883 +430491,34.756,93.0651 +430492,35.94,91.7801 +430493,30.967,95.694 +430494,32.198,94.3642 +430495,33.415,93.0748 +430496,34.617,91.8226 +430497,29.589,95.6341 +430498,30.838,94.3398 +430499,32.073,93.0847 +430500,33.294,91.866 +430501,28.211,95.5732 +430502,29.478,94.3149 +430503,30.731,93.0949 +430504,31.97,91.9103 +430505,26.834,95.5113 +430506,28.118,94.2897 +430507,29.388,93.1053 +430508,30.645,91.9554 +430509,25.459,95.4485 +430510,26.759,94.2642 +430511,28.046,93.1159 +430512,29.319,92.0013 +430513,24.084,95.3848 +430514,25.4,94.2383 +430515,26.703,93.1268 +430516,27.992,92.0481 +430517,22.711,95.3202 +430518,24.042,94.212 +430519,25.359,93.1379 +430520,26.664,92.0956 +430521,21.339,95.2547 +430522,22.684,94.1855 +430523,24.016,93.1492 +430524,25.335,92.1439 +430525,19.968,95.1885 +430526,21.326,94.1586 +430527,22.672,93.1607 +430528,24.005,92.1929 +430529,18.598,95.1215 +430530,19.969,94.1314 +430531,21.327,93.1723 +430532,22.674,92.2425 +430533,17.229,95.0537 +430534,18.612,94.104 +430535,19.982,93.1842 +430536,21.341,92.2929 +430537,15.861,94.9852 +430538,17.255,94.0762 +430539,18.637,93.1962 +430540,20.008,92.3438 +430541,14.495,94.916 +430542,15.899,94.0482 +430543,17.292,93.2084 +430544,18.673,92.3954 +430545,13.129,94.8462 +430546,14.543,94.0199 +430547,15.946,93.2208 +430548,17.338,92.4476 +430549,11.765,94.7758 +430550,13.188,93.9914 +430551,14.6,93.2333 +430552,16.001,92.5003 +430553,10.402,94.7047 +430554,11.833,93.9626 +430555,13.253,93.2459 +430556,14.663,92.5535 +430557,9.04,94.6332 +430558,10.478,93.9336 +430559,11.906,93.2586 +430560,13.324,92.6072 +430561,7.6793,94.5611 +430562,9.1241,93.9044 +430563,10.559,93.2715 +430564,11.984,92.6614 +430565,6.3198,94.4885 +430566,7.7703,93.875 +430567,9.2114,93.2844 +430568,10.642,92.7159 +430569,4.9615,94.4154 +430570,6.417,93.8454 +430571,7.8634,93.2975 +430572,9.2998,92.7709 +430573,3.6044,94.342 +430574,5.0641,93.8156 +430575,6.515,93.3106 +430576,7.9561,92.8263 +430577,2.2484,94.2682 +430578,3.7116,93.7856 +430579,5.1662,93.3237 +430580,6.6112,92.882 +430581,0.89375,94.194 +430582,2.3595,93.7555 +430583,3.817,93.337 +430584,5.2652,92.9379 +430585,359.54,94.1195 +430586,1.0079,93.7252 +430587,2.4675,93.3503 +430588,3.918,92.9942 +430589,358.19,94.0447 +430590,359.66,93.6947 +430591,1.1175,93.3636 +430592,2.5696,93.0507 +430593,356.84,93.9697 +430594,358.31,93.6642 +430595,359.77,93.3769 +430596,1.22,93.1074 +430597,355.49,93.8945 +430598,356.96,93.6335 +430599,358.42,93.3903 +430600,359.87,93.1643 +430601,354.14,93.8191 +430602,355.61,93.6027 +430603,357.07,93.4036 +430604,358.52,93.2213 +430605,352.79,93.7436 +430606,354.26,93.5718 +430607,355.71,93.417 +430608,357.16,93.2784 +430609,351.44,93.6679 +430610,352.91,93.5409 +430611,354.36,93.4303 +430612,355.81,93.3356 +430613,350.1,93.5922 +430614,351.56,93.5098 +430615,353.01,93.4436 +430616,354.45,93.3929 +430617,348.76,93.5164 +430618,350.21,93.4788 +430619,351.66,93.4568 +430620,353.1,93.4501 +430621,347.41,93.4407 +430622,348.86,93.4476 +430623,350.3,93.47 +430624,351.74,93.5073 +430625,346.07,93.3649 +430626,347.51,93.4164 +430627,348.95,93.4831 +430628,350.38,93.5645 +430629,344.73,93.2893 +430630,346.17,93.3852 +430631,347.6,93.4962 +430632,349.02,93.6216 +430633,343.39,93.2137 +430634,344.82,93.354 +430635,346.24,93.5091 +430636,347.66,93.6786 +430637,342.05,93.1382 +430638,343.47,93.3228 +430639,344.89,93.522 +430640,346.3,93.7354 +430641,340.72,93.063 +430642,342.13,93.2916 +430643,343.53,93.5348 +430644,344.93,93.792 +430645,339.38,92.9879 +430646,340.78,93.2604 +430647,342.18,93.5474 +430648,343.57,93.8484 +430649,338.05,92.913 +430650,339.44,93.2292 +430651,340.82,93.5599 +430652,342.2,93.9046 +430653,336.72,92.8385 +430654,338.09,93.1981 +430655,339.47,93.5723 +430656,340.83,93.9605 +430657,335.38,92.7642 +430658,336.75,93.167 +430659,338.11,93.5845 +430660,339.47,94.016 +430661,334.05,92.6902 +430662,335.41,93.136 +430663,336.75,93.5965 +430664,338.1,94.0712 +430665,332.72,92.6166 +430666,334.06,93.105 +430667,335.4,93.6084 +430668,336.73,94.126 +430669,331.39,92.5434 +430670,332.72,93.0742 +430671,334.04,93.6201 +430672,335.35,94.1804 +430673,330.07,92.4707 +430674,331.38,93.0434 +430675,332.68,93.6315 +430676,333.98,94.2344 +430677,328.74,92.3983 +430678,330.03,93.0128 +430679,331.32,93.6428 +430680,332.61,94.2878 +430681,327.41,92.3265 +430682,328.69,92.9822 +430683,329.97,93.6539 +430684,331.23,94.3408 +430685,326.09,92.2552 +430686,327.35,92.9518 +430687,328.61,93.6647 +430688,329.86,94.3932 +430689,324.77,92.1844 +430690,326.01,92.9216 +430691,327.25,93.6753 +430692,328.48,94.445 +430693,323.44,92.1142 +430694,324.67,92.8914 +430695,325.89,93.6856 +430696,327.1,94.4963 +430697,322.12,92.0447 +430698,323.33,92.8615 +430699,324.53,93.6957 +430700,325.72,94.5468 +430701,320.8,91.9757 +430702,321.99,92.8317 +430703,323.17,93.7055 +430704,324.34,94.5968 +430705,319.48,91.9074 +430706,320.65,92.8021 +430707,321.81,93.7151 +430708,322.96,94.646 +430709,318.17,91.8399 +430710,319.31,92.7726 +430711,320.45,93.7243 +430712,321.58,94.6944 +430713,316.85,91.773 +430714,317.97,92.7434 +430715,319.09,93.7332 +430716,320.2,94.7421 +430717,315.53,91.7069 +430718,316.63,92.7144 +430719,317.73,93.7419 +430720,318.81,94.7891 +430721,314.22,91.6416 +430722,315.29,92.6856 +430723,316.36,93.7502 +430724,317.43,94.8352 +430725,312.9,91.5771 +430726,313.96,92.657 +430727,315,93.7582 +430728,316.04,94.8804 +430729,311.59,91.5134 +430730,312.62,92.6287 +430731,313.64,93.7658 +430732,314.66,94.9248 +430733,310.28,91.4505 +430734,311.28,92.6006 +430735,312.28,93.7731 +430736,313.27,94.9682 +430737,308.96,91.3886 +430738,309.94,92.5727 +430739,310.92,93.7801 +430740,311.88,95.0108 +430741,307.65,91.3275 +430742,308.61,92.5451 +430743,309.55,93.7867 +430744,310.49,95.0523 +430745,306.34,91.2674 +430746,307.27,92.5178 +430747,308.19,93.7929 +430748,309.1,95.0929 +430749,305.03,91.2082 +430750,305.93,92.4908 +430751,306.83,93.7987 +430752,307.71,95.1324 +430753,303.72,91.15 +430754,304.6,92.4641 +430755,305.46,93.8041 +430756,306.32,95.1709 +430757,302.42,91.0929 +430758,303.26,92.4376 +430759,304.1,93.8092 +430760,304.93,95.2083 +430761,301.11,91.0367 +430762,301.93,92.4115 +430763,302.74,93.8138 +430764,303.53,95.2447 +430765,299.8,90.98157 +430766,300.59,92.3856 +430767,301.37,93.818 +430768,302.14,95.2799 +430769,298.5,90.92751 +430770,299.26,92.3601 +430771,300.01,93.8218 +430772,300.75,95.3139 +430773,297.19,90.87454 +430774,297.92,92.3349 +430775,298.64,93.8252 +430776,299.35,95.3468 +430777,295.89,90.82267 +430778,296.59,92.31 +430779,297.28,93.8281 +430780,297.96,95.3785 +430781,294.58,90.77192 +430782,295.25,92.2855 +430783,295.91,93.8306 +430784,296.56,95.409 +430785,293.28,90.72232 +430786,293.92,92.2613 +430787,294.55,93.8327 +430788,295.16,95.4383 +430789,291.98,90.67388 +430790,292.59,92.2375 +430791,293.18,93.8343 +430792,293.77,95.4662 +430793,290.67,90.62662 +430794,291.25,92.214 +430795,291.82,93.8354 +430796,292.37,95.493 +430797,289.37,90.58055 +430798,289.92,92.1909 +430799,290.45,93.836 +430800,290.97,95.5184 +430801,288.07,90.53569 +430802,288.59,92.1682 +430803,289.09,93.8362 +430804,289.57,95.5424 +430805,286.77,90.49205 +430806,287.25,92.1458 +430807,287.72,93.8359 +430808,288.17,95.5652 +430809,285.47,90.44966 +430810,285.92,92.1238 +430811,286.35,93.8351 +430812,286.77,95.5866 +430813,284.17,90.40853 +430814,284.59,92.1023 +430815,284.99,93.8339 +430816,285.37,95.6066 +430817,282.87,90.36866 +430818,283.26,92.081 +430819,283.62,93.8321 +430820,283.97,95.6252 +430821,281.57,90.33007 +430822,281.92,92.0602 +430823,282.26,93.8298 +430824,282.57,95.6424 +430825,280.27,90.29278 +430826,280.59,92.0398 +430827,280.89,93.827 +430828,281.17,95.6582 +430829,278.98,90.25679 +430830,279.26,92.0198 +430831,279.52,93.8237 +430832,279.77,95.6725 +430833,277.68,90.22212 +430834,277.93,92.0002 +430835,278.16,93.8199 +430836,278.37,95.6854 +430837,276.38,90.18878 +430838,276.59,91.981 +430839,276.79,93.8156 +430840,276.97,95.6968 +430841,275.08,90.15677 +430842,275.26,91.9623 +430843,275.42,93.8107 +430844,275.56,95.7068 +430845,273.78,90.12611 +430846,273.93,91.9439 +430847,274.06,93.8053 +430848,274.16,95.7152 +430849,272.49,90.096795 +430850,272.6,91.926 +430851,272.69,93.7994 +430852,272.76,95.7222 +430853,271.19,90.068844 +430854,271.27,91.9085 +430855,271.32,93.793 +430856,271.36,95.7276 +430857,269.89,90.04226 +430858,269.94,91.8914 +430859,269.96,93.786 +430860,269.96,95.7315 +430861,268.6,90.017049 +430862,268.6,91.8747 +430863,268.59,93.7785 +430864,268.55,95.7339 +430865,267.3,89.9932161 +430866,267.27,91.8585 +430867,267.22,93.7704 +430868,267.15,95.7347 +430869,266,89.970767 +430870,265.94,91.8427 +430871,265.86,93.7618 +430872,265.75,95.734 +430873,264.71,89.949704 +430874,264.61,91.8274 +430875,264.49,93.7527 +430876,264.35,95.7318 +430877,263.41,89.930032 +430878,263.28,91.8124 +430879,263.13,93.743 +430880,262.94,95.728 +430881,262.11,89.911752 +430882,261.95,91.798 +430883,261.76,93.7328 +430884,261.54,95.7226 +430885,260.82,89.89487 +430886,260.62,91.7839 +430887,260.39,93.722 +430888,260.14,95.7156 +430889,259.52,89.87938 +430890,259.29,91.7703 +430891,259.03,93.7107 +430892,258.74,95.7071 +430893,258.22,89.86528 +430894,257.95,91.7571 +430895,257.66,93.6988 +430896,257.34,95.697 +430897,256.93,89.85259 +430898,256.62,91.7444 +430899,256.29,93.6864 +430900,255.94,95.6854 +430901,255.63,89.84129 +430902,255.29,91.7321 +430903,254.93,93.6734 +430904,254.54,95.6721 +430905,254.33,89.83138 +430906,253.96,91.7203 +430907,253.56,93.6599 +430908,253.14,95.6573 +430909,253.03,89.82286 +430910,252.63,91.7089 +430911,252.2,93.6459 +430912,251.74,95.6409 +430913,251.73,89.81573 +430914,251.3,91.6979 +430915,250.83,93.6313 +430916,250.34,95.623 +430917,250.44,89.80998 +430918,249.96,91.6873 +430919,249.47,93.6161 +430920,248.94,95.6035 +430921,249.14,89.80562 +430922,248.63,91.6772 +430923,248.1,93.6004 +430924,247.54,95.5824 +430925,247.84,89.80263 +430926,247.3,91.6676 +430927,246.74,93.5842 +430928,246.14,95.5597 +430929,246.54,89.801 +430930,245.97,91.6583 +430931,245.37,93.5674 +430932,244.74,95.5355 +430933,245.24,89.80074 +430934,244.64,91.6495 +430935,244.01,93.5501 +430936,243.34,95.5098 +430937,243.94,89.80184 +430938,243.3,91.6411 +430939,242.64,93.5323 +430940,241.95,95.4825 +430941,242.64,89.80428 +430942,241.97,91.6332 +430943,241.28,93.5139 +430944,240.55,95.4537 +430945,241.34,89.80806 +430946,240.64,91.6256 +430947,239.91,93.495 +430948,239.15,95.4234 +430949,240.04,89.81317 +430950,239.31,91.6185 +430951,238.55,93.4755 +430952,237.76,95.3915 +430953,238.73,89.8196 +430954,237.97,91.6118 +430955,237.19,93.4556 +430956,236.36,95.3582 +430957,237.43,89.82734 +430958,236.64,91.6055 +430959,235.82,93.4351 +430960,234.97,95.3233 +430961,236.13,89.83638 +430962,235.31,91.5996 +430963,234.46,93.4141 +430964,233.57,95.287 +430965,234.82,89.8467 +430966,233.97,91.5941 +430967,233.1,93.3926 +430968,232.18,95.2492 +430969,233.52,89.8583 +430970,232.64,91.5891 +430971,231.73,93.3706 +430972,230.79,95.21 +430973,232.21,89.87116 +430974,231.31,91.5844 +430975,230.37,93.3481 +430976,229.4,95.1693 +430977,230.91,89.88527 +430978,229.97,91.5801 +430979,229.01,93.3251 +430980,228.01,95.1272 +430981,229.6,89.900605 +430982,228.64,91.5762 +430983,227.65,93.3016 +430984,226.62,95.0837 +430985,228.3,89.917162 +430986,227.3,91.5727 +430987,226.28,93.2777 +430988,225.23,95.0388 +430989,226.99,89.934921 +430990,225.97,91.5695 +430991,224.92,93.2532 +430992,223.84,94.9925 +430993,225.68,89.953868 +430994,224.63,91.5667 +430995,223.56,93.2283 +430996,222.45,94.9449 +430997,224.37,89.973984 +430998,223.3,91.5643 +430999,222.2,93.2029 +431000,221.07,94.8959 +431001,223.06,89.9952521 +431002,221.96,91.5622 +431003,220.84,93.177 +431004,219.68,94.8457 +431005,221.75,90.017655 +431006,220.63,91.5605 +431007,219.48,93.1507 +431008,218.3,94.7941 +431009,220.44,90.041175 +431010,219.29,91.5592 +431011,218.12,93.124 +431012,216.92,94.7412 +431013,219.12,90.065792 +431014,217.96,91.5582 +431015,216.76,93.0967 +431016,215.53,94.6872 +431017,217.81,90.091487 +431018,216.62,91.5575 +431019,215.4,93.0691 +431020,214.15,94.6318 +431021,216.5,90.11824 +431022,215.28,91.5571 +431023,214.04,93.041 +431024,212.77,94.5753 +431025,215.18,90.14603 +431026,213.95,91.5571 +431027,212.69,93.0126 +431028,211.39,94.5176 +431029,213.86,90.17484 +431030,212.61,91.5574 +431031,211.33,92.9837 +431032,210.01,94.4587 +431033,212.55,90.20464 +431034,211.27,91.558 +431035,209.97,92.9544 +431036,208.64,94.3987 +431037,211.23,90.23541 +431038,209.93,91.5588 +431039,208.61,92.9247 +431040,207.26,94.3376 +431041,209.91,90.26713 +431042,208.6,91.56 +431043,207.26,92.8946 +431044,205.88,94.2754 +431045,208.59,90.29979 +431046,207.26,91.5615 +431047,205.9,92.8641 +431048,204.51,94.2121 +431049,207.27,90.33334 +431050,205.92,91.5632 +431051,204.54,92.8333 +431052,203.14,94.1478 +431053,205.94,90.36777 +431054,204.58,91.5652 +431055,203.19,92.8021 +431056,201.77,94.0825 +431057,204.62,90.40306 +431058,203.24,91.5674 +431059,201.83,92.7706 +431060,200.4,94.0163 +431061,203.3,90.43918 +431062,201.9,91.5699 +431063,200.48,92.7387 +431064,199.03,93.9491 +431065,201.97,90.47611 +431066,200.56,91.5727 +431067,199.12,92.7065 +431068,197.66,93.8809 +431069,200.64,90.51381 +431070,199.22,91.5757 +431071,197.77,92.6739 +431072,196.29,93.8119 +431073,199.32,90.55227 +431074,197.88,91.5789 +431075,196.42,92.641 +431076,194.92,93.742 +431077,197.99,90.59146 +431078,196.54,91.5823 +431079,195.06,92.6079 +431080,193.56,93.6713 +431081,196.66,90.63135 +431082,195.2,91.5859 +431083,193.71,92.5744 +431084,192.2,93.5998 +431085,195.33,90.67191 +431086,193.85,91.5897 +431087,192.36,92.5407 +431088,190.83,93.5276 +431089,193.99,90.71311 +431090,192.51,91.5937 +431091,191,92.5066 +431092,189.47,93.4546 +431093,192.66,90.75494 +431094,191.17,91.5979 +431095,189.65,92.4723 +431096,188.11,93.3809 +431097,191.33,90.79735 +431098,189.83,91.6022 +431099,188.3,92.4378 +431100,186.75,93.3065 +431101,189.99,90.84033 +431102,188.48,91.6067 +431103,186.95,92.403 +431104,185.4,93.2315 +431105,188.65,90.88384 +431106,187.14,91.6113 +431107,185.6,92.368 +431108,184.04,93.1558 +431109,187.32,90.92785 +431110,185.79,91.6161 +431111,184.25,92.3327 +431112,182.69,93.0796 +431113,185.98,90.97234 +431114,184.45,91.621 +431115,182.9,92.2972 +431116,181.33,93.0029 +431117,184.64,91.0173 +431118,183.1,91.626 +431119,181.55,92.2616 +431120,179.98,92.9257 +431121,183.29,91.0626 +431122,181.76,91.6312 +431123,180.21,92.2257 +431124,178.63,92.8479 +431125,181.95,91.1084 +431126,180.41,91.6364 +431127,178.86,92.1897 +431128,177.28,92.7698 +431129,180.61,91.1544 +431130,179.07,91.6417 +431131,177.51,92.1535 +431132,175.93,92.6912 +431133,179.26,91.2009 +431134,177.72,91.6471 +431135,176.16,92.1171 +431136,174.59,92.6122 +431137,177.91,91.2476 +431138,176.37,91.6526 +431139,174.82,92.0806 +431140,173.24,92.5329 +431141,176.57,91.2945 +431142,175.03,91.6581 +431143,173.47,92.0439 +431144,171.89,92.4533 +431145,175.22,91.3417 +431146,173.68,91.6636 +431147,172.12,92.0071 +431148,170.55,92.3735 +431149,173.87,91.3891 +431150,172.33,91.6692 +431151,170.78,91.9702 +431152,169.21,92.2934 +431153,172.52,91.4367 +431154,170.98,91.6748 +431155,169.43,91.9332 +431156,167.87,92.213 +431157,171.16,91.4844 +431158,169.63,91.6805 +431159,168.09,91.8961 +431160,166.53,92.1326 +431161,169.81,91.5322 +431162,168.29,91.6861 +431163,166.75,91.8589 +431164,165.19,92.0519 +431165,168.45,91.5801 +431166,166.94,91.6917 +431167,165.4,91.8217 +431168,163.85,91.9712 +431169,167.1,91.6281 +431170,165.59,91.6973 +431171,164.06,91.7844 +431172,162.52,91.8904 +431173,165.74,91.676 +431174,164.24,91.7029 +431175,162.72,91.747 +431176,161.18,91.8096 +431177,164.38,91.724 +431178,162.89,91.7084 +431179,161.38,91.7096 +431180,159.85,91.7287 +431181,163.02,91.7719 +431182,161.53,91.7139 +431183,160.03,91.6722 +431184,158.52,91.6479 +431185,161.66,91.8197 +431186,160.18,91.7193 +431187,158.69,91.6348 +431188,157.19,91.5672 +431189,160.3,91.8673 +431190,158.83,91.7246 +431191,157.35,91.5973 +431192,155.86,91.4865 +431193,158.93,91.9149 +431194,157.48,91.7299 +431195,156.01,91.5599 +431196,154.53,91.406 +431197,157.57,91.9622 +431198,156.13,91.735 +431199,154.67,91.5225 +431200,153.2,91.3257 +431201,156.2,92.0094 +431202,154.77,91.7401 +431203,153.33,91.4851 +431204,151.88,91.2455 +431205,154.84,92.0563 +431206,153.42,91.745 +431207,151.99,91.4478 +431208,150.55,91.1656 +431209,153.47,92.103 +431210,152.07,91.7498 +431211,150.65,91.4105 +431212,149.23,91.086 +431213,152.1,92.1493 +431214,150.71,91.7545 +431215,149.32,91.3733 +431216,147.91,91.0066 +431217,150.73,92.1953 +431218,149.36,91.759 +431219,147.98,91.3361 +431220,146.59,90.92763 +431221,149.36,92.2409 +431222,148,91.7634 +431223,146.64,91.2991 +431224,145.27,90.84897 +431225,147.98,92.2862 +431226,146.65,91.7676 +431227,145.3,91.2621 +431228,143.95,90.7707 +431229,146.61,92.331 +431230,145.29,91.7716 +431231,143.97,91.2252 +431232,142.63,90.69286 +431233,145.23,92.3753 +431234,143.94,91.7754 +431235,142.63,91.1885 +431236,141.31,90.61547 +431237,143.86,92.4192 +431238,142.58,91.7791 +431239,141.3,91.1518 +431240,140,90.53857 +431241,142.48,92.4625 +431242,141.23,91.7825 +431243,139.96,91.1154 +431244,138.68,90.46219 +431245,141.1,92.5053 +431246,139.87,91.7857 +431247,138.62,91.079 +431248,137.37,90.38635 +431249,139.72,92.5475 +431250,138.51,91.7887 +431251,137.29,91.0428 +431252,136.06,90.31109 +431253,138.34,92.5891 +431254,137.16,91.7914 +431255,135.96,91.0068 +431256,134.74,90.23643 +431257,136.96,92.6301 +431258,135.8,91.7939 +431259,134.62,90.97098 +431260,133.43,90.16241 +431261,135.58,92.6704 +431262,134.44,91.7961 +431263,133.29,90.93533 +431264,132.12,90.089051 +431265,134.2,92.71 +431266,133.08,91.7981 +431267,131.96,90.89987 +431268,130.82,90.016383 +431269,132.81,92.7489 +431270,131.72,91.7998 +431271,130.62,90.86462 +431272,129.51,89.944434 +431273,131.43,92.787 +431274,130.37,91.8012 +431275,129.29,90.82958 +431276,128.2,89.87323 +431277,130.04,92.8243 +431278,129.01,91.8023 +431279,127.96,90.79477 +431280,126.9,89.8028 +431281,128.66,92.8608 +431282,127.65,91.8031 +431283,126.63,90.7602 +431284,125.59,89.73317 +431285,127.27,92.8965 +431286,126.29,91.8035 +431287,125.29,90.72586 +431288,124.29,89.66437 +431289,125.88,92.9313 +431290,124.93,91.8037 +431291,123.96,90.69178 +431292,122.98,89.59641 +431293,124.49,92.9653 +431294,123.57,91.8035 +431295,122.63,90.65795 +431296,121.68,89.52933 +431297,123.1,92.9983 +431298,122.21,91.803 +431299,121.3,90.6244 +431300,120.38,89.46315 +431301,121.71,93.0303 +431302,120.85,91.8021 +431303,119.97,90.59112 +431304,119.08,89.3979 +431305,120.32,93.0614 +431306,119.49,91.8009 +431307,118.64,90.55812 +431308,117.78,89.33359 +431309,118.93,93.0915 +431310,118.13,91.7994 +431311,117.31,90.52542 +431312,116.48,89.27025 +431313,117.53,93.1206 +431314,116.77,91.7974 +431315,115.98,90.49302 +431316,115.18,89.2079 +431317,116.14,93.1487 +431318,115.4,91.7951 +431319,114.65,90.46093 +431320,113.88,89.14657 +431321,114.75,93.1757 +431322,114.04,91.7924 +431323,113.32,90.42915 +431324,112.59,89.08627 +431325,113.35,93.2016 +431326,112.68,91.7892 +431327,111.99,90.39769 +431328,111.29,89.02703 +431329,111.96,93.2264 +431330,111.32,91.7857 +431331,110.67,90.36657 +431332,110,88.9689 +431333,110.56,93.25 +431334,109.96,91.7818 +431335,109.34,90.33578 +431336,108.7,88.9118 +431337,109.16,93.2725 +431338,108.6,91.7775 +431339,108.01,90.30533 +431340,107.41,88.8558 +431341,107.77,93.2938 +431342,107.23,91.7727 +431343,106.68,90.27523 +431344,106.11,88.801 +431345,106.37,93.314 +431346,105.87,91.7675 +431347,105.35,90.24549 +431348,104.82,88.7473 +431349,104.97,93.3329 +431350,104.51,91.7619 +431351,104.03,90.21611 +431352,103.52,88.6948 +431353,103.57,93.3506 +431354,103.15,91.7559 +431355,102.7,90.1871 +431356,102.23,88.6435 +431357,102.17,93.367 +431358,101.78,91.7494 +431359,101.37,90.15846 +431360,100.94,88.5934 +431361,100.77,93.3822 +431362,100.42,91.7424 +431363,100.05,90.1302 +431364,99.648,88.5445 +431365,99.375,93.3961 +431366,99.059,91.735 +431367,98.719,90.10232 +431368,98.356,88.4968 +431369,97.975,93.4086 +431370,97.696,91.7271 +431371,97.392,90.074832 +431372,97.065,88.4503 +431373,96.575,93.4199 +431374,96.333,91.7188 +431375,96.066,90.047736 +431376,95.775,88.4051 +431377,95.175,93.4298 +431378,94.97,91.71 +431379,94.739,90.021039 +431380,94.484,88.3612 +431381,93.774,93.4384 +431382,93.607,91.7007 +431383,93.413,89.9947439 +431384,93.194,88.3186 +431385,92.374,93.4456 +431386,92.244,91.691 +431387,92.087,89.968855 +431388,91.904,88.2772 +431389,90.973,93.4514 +431390,90.881,91.6807 +431391,90.761,89.943376 +431392,90.615,88.2372 +431393,89.572,93.4559 +431394,89.518,91.67 +431395,89.435,89.91831 +431396,89.325,88.1984 +431397,88.171,93.4589 +431398,88.155,91.6588 +431399,88.109,89.89366 +431400,88.036,88.161 +431401,86.77,93.4605 +431402,86.792,91.6471 +431403,86.783,89.86943 +431404,86.747,88.1249 +431405,85.369,93.4607 +431406,85.429,91.6349 +431407,85.458,89.84563 +431408,85.458,88.0901 +431409,83.968,93.4595 +431410,84.066,91.6221 +431411,84.132,89.82225 +431412,84.169,88.0567 +431413,82.567,93.4568 +431414,82.703,91.6089 +431415,82.806,89.7993 +431416,82.88,88.0246 +431417,81.166,93.4527 +431418,81.34,91.5952 +431419,81.481,89.77678 +431420,81.591,87.9939 +431421,79.765,93.4471 +431422,79.978,91.581 +431423,80.155,89.75469 +431424,80.302,87.9646 +431425,78.364,93.4401 +431426,78.615,91.5663 +431427,78.83,89.73303 +431428,79.013,87.9366 +431429,76.963,93.4316 +431430,77.252,91.5511 +431431,77.504,89.71181 +431432,77.724,87.9099 +431433,75.563,93.4216 +431434,75.889,91.5353 +431435,76.178,89.69103 +431436,76.435,87.8847 +431437,74.163,93.4101 +431438,74.527,91.5191 +431439,74.853,89.67068 +431440,75.146,87.8608 +431441,72.763,93.3972 +431442,73.164,91.5023 +431443,73.527,89.65077 +431444,73.856,87.8382 +431445,71.363,93.3827 +431446,71.802,91.485 +431447,72.202,89.63131 +431448,72.567,87.8171 +431449,69.964,93.3668 +431450,70.44,91.4672 +431451,70.876,89.61228 +431452,71.277,87.7973 +431453,68.565,93.3494 +431454,69.078,91.4489 +431455,69.55,89.59368 +431456,69.987,87.7789 +431457,67.166,93.3305 +431458,67.716,91.4301 +431459,68.224,89.57553 +431460,68.697,87.7619 +431461,65.768,93.3101 +431462,66.354,91.4108 +431463,66.898,89.55782 +431464,67.406,87.7462 +431465,64.37,93.2882 +431466,64.993,91.3909 +431467,65.572,89.54054 +431468,66.116,87.7319 +431469,62.973,93.2648 +431470,63.631,91.3706 +431471,64.246,89.52371 +431472,64.824,87.719 +431473,61.576,93.24 +431474,62.27,91.3497 +431475,62.92,89.5073 +431476,63.533,87.7074 +431477,60.18,93.2136 +431478,60.909,91.3283 +431479,61.594,89.49133 +431480,62.241,87.6971 +431481,58.784,93.1858 +431482,59.548,91.3064 +431483,60.268,89.4758 +431484,60.949,87.6883 +431485,57.389,93.1565 +431486,58.188,91.2841 +431487,58.941,89.46069 +431488,59.656,87.6807 +431489,55.995,93.1258 +431490,56.827,91.2612 +431491,57.614,89.44601 +431492,58.362,87.6745 +431493,54.601,93.0935 +431494,55.467,91.2378 +431495,56.288,89.43176 +431496,57.069,87.6696 +431497,53.208,93.0599 +431498,54.107,91.2139 +431499,54.961,89.41794 +431500,55.774,87.6661 +431501,51.815,93.0248 +431502,52.748,91.1895 +431503,53.633,89.40453 +431504,54.479,87.6638 +431505,50.423,92.9882 +431506,51.388,91.1647 +431507,52.306,89.39154 +431508,53.184,87.6629 +431509,49.032,92.9503 +431510,50.029,91.1393 +431511,50.979,89.37897 +431512,51.888,87.6632 +431513,47.642,92.9109 +431514,48.67,91.1135 +431515,49.651,89.36681 +431516,50.591,87.6648 +431517,46.252,92.8701 +431518,47.312,91.0872 +431519,48.323,89.35505 +431520,49.294,87.6677 +431521,44.864,92.8279 +431522,45.954,91.0604 +431523,46.995,89.3437 +431524,47.995,87.6718 +431525,43.476,92.7844 +431526,44.596,91.0331 +431527,45.667,89.33275 +431528,46.697,87.6772 +431529,42.089,92.7395 +431530,43.238,91.0054 +431531,44.338,89.32219 +431532,45.397,87.6838 +431533,40.703,92.6932 +431534,41.881,90.97722 +431535,43.009,89.31202 +431536,44.097,87.6916 +431537,39.318,92.6456 +431538,40.524,90.94857 +431539,41.68,89.30224 +431540,42.796,87.7006 +431541,37.934,92.5967 +431542,39.167,90.91947 +431543,40.351,89.29284 +431544,41.494,87.7108 +431545,36.551,92.5464 +431546,37.811,90.88993 +431547,39.022,89.28381 +431548,40.191,87.7222 +431549,35.169,92.4949 +431550,36.455,90.85995 +431551,37.692,89.27516 +431552,38.888,87.7347 +431553,33.788,92.4422 +431554,35.099,90.82953 +431555,36.362,89.26687 +431556,37.583,87.7484 +431557,32.407,92.3881 +431558,33.744,90.79868 +431559,35.031,89.25893 +431560,36.278,87.7632 +431561,31.028,92.3329 +431562,32.389,90.76741 +431563,33.701,89.25135 +431564,34.972,87.779 +431565,29.65,92.2764 +431566,31.034,90.73573 +431567,32.37,89.24412 +431568,33.664,87.796 +431569,28.274,92.2188 +431570,29.68,90.70364 +431571,31.039,89.23723 +431572,32.356,87.814 +431573,26.898,92.1599 +431574,28.327,90.67115 +431575,29.707,89.23067 +431576,31.047,87.8331 +431577,25.523,92.1 +431578,26.973,90.63826 +431579,28.376,89.22444 +431580,29.737,87.8532 +431581,24.15,92.0389 +431582,25.62,90.60498 +431583,27.043,89.21852 +431584,28.426,87.8743 +431585,22.777,91.9767 +431586,24.268,90.57133 +431587,25.711,89.21293 +431588,27.114,87.8963 +431589,21.406,91.9134 +431590,22.916,90.5373 +431591,24.378,89.20763 +431592,25.801,87.9194 +431593,20.036,91.8491 +431594,21.564,90.50291 +431595,23.045,89.20264 +431596,24.487,87.9433 +431597,18.668,91.7837 +431598,20.213,90.46816 +431599,21.712,89.19793 +431600,23.171,87.9682 +431601,17.3,91.7174 +431602,18.862,90.43307 +431603,20.378,89.19351 +431604,21.855,87.994 +431605,15.934,91.65 +431606,17.511,90.39763 +431607,19.044,89.18936 +431608,20.537,88.0207 +431609,14.569,91.5817 +431610,16.161,90.36187 +431611,17.71,89.18548 +431612,19.219,88.0482 +431613,13.205,91.5125 +431614,14.812,90.32578 +431615,16.375,89.18186 +431616,17.899,88.0765 +431617,11.842,91.4424 +431618,13.463,90.28938 +431619,15.04,89.1785 +431620,16.578,88.1056 +431621,10.481,91.3715 +431622,12.114,90.25267 +431623,13.704,89.17537 +431624,15.256,88.1355 +431625,9.1214,91.2996 +431626,10.766,90.21567 +431627,12.368,89.17247 +431628,13.933,88.1661 +431629,7.7628,91.227 +431630,9.4182,90.17838 +431631,11.032,89.16981 +431632,12.609,88.1974 +431633,6.4055,91.1536 +431634,8.071,90.14082 +431635,9.6952,89.16735 +431636,11.283,88.2295 +431637,5.0496,91.0794 +431638,6.7242,90.10298 +431639,8.3582,89.16511 +431640,9.9561,88.2622 +431641,3.6949,91.0045 +431642,5.3778,90.064893 +431643,7.0208,89.16306 +431644,8.628,88.2956 +431645,2.3416,90.92895 +431646,4.0319,90.026554 +431647,5.683,89.1612 +431648,7.2988,88.3295 +431649,0.9897,90.8527 +431650,2.6865,89.987977 +431651,4.3448,89.15952 +431652,5.9683,88.3641 +431653,359.64,90.77581 +431654,1.3416,89.949172 +431655,3.0063,89.15801 +431656,4.6366,88.3992 +431657,358.29,90.69832 +431658,360,89.910148 +431659,1.6673,89.15667 +431660,3.3036,88.4349 +431661,356.94,90.62026 +431662,358.65,89.87092 +431663,0.32797,89.15547 +431664,1.9693,88.471 +431665,355.6,90.54166 +431666,357.31,89.83149 +431667,358.99,89.15441 +431668,0.63384,88.5076 +431669,354.25,90.46255 +431670,355.97,89.79187 +431671,357.65,89.15349 +431672,359.3,88.5447 +431673,352.91,90.38296 +431674,354.62,89.75207 +431675,356.31,89.15269 +431676,357.96,88.5822 +431677,351.56,90.30293 +431678,353.28,89.71211 +431679,354.97,89.152 +431680,356.62,88.6201 +431681,350.22,90.22249 +431682,351.94,89.67199 +431683,353.63,89.15141 +431684,355.28,88.6583 +431685,348.88,90.14167 +431686,350.6,89.63173 +431687,352.28,89.15092 +431688,353.94,88.6969 +431689,347.54,90.060497 +431690,349.26,89.59133 +431691,350.94,89.15051 +431692,352.59,88.7358 +431693,346.21,89.979014 +431694,347.92,89.55081 +431695,349.6,89.15017 +431696,351.25,88.7749 +431697,344.87,89.89725 +431698,346.58,89.51017 +431699,348.26,89.14989 +431700,349.9,88.8143 +431701,343.54,89.81524 +431702,345.24,89.46943 +431703,346.91,89.14966 +431704,348.56,88.8539 +431705,342.2,89.73301 +431706,343.9,89.42859 +431707,345.57,89.14948 +431708,347.21,88.8937 +431709,340.87,89.6506 +431710,342.56,89.38768 +431711,344.22,89.14932 +431712,345.86,88.9336 +431713,339.54,89.56804 +431714,341.23,89.34669 +431715,342.88,89.14919 +431716,344.51,88.9737 +431717,338.21,89.48536 +431718,339.89,89.30565 +431719,341.54,89.14907 +431720,343.16,89.01382 +431721,336.89,89.4026 +431722,338.55,89.26456 +431723,340.19,89.14895 +431724,341.8,89.05403 +431725,335.56,89.31979 +431726,337.21,89.22342 +431727,338.84,89.14881 +431728,340.45,89.09426 +431729,334.24,89.23697 +431730,335.88,89.18226 +431731,337.5,89.14866 +431732,339.09,89.13449 +431733,332.91,89.15416 +431734,334.54,89.14109 +431735,336.15,89.14848 +431736,337.73,89.1747 +431737,331.59,89.0714 +431738,333.21,89.09991 +431739,334.8,89.14825 +431740,336.38,89.21484 +431741,330.27,88.9887 +431742,331.87,89.05873 +431743,333.46,89.14798 +431744,335.02,89.25489 +431745,328.95,88.9062 +431746,330.54,89.01757 +431747,332.11,89.14764 +431748,333.66,89.29482 +431749,327.63,88.8237 +431750,329.21,88.9764 +431751,330.76,89.14723 +431752,332.29,89.33459 +431753,326.31,88.7415 +431754,327.87,88.9353 +431755,329.41,89.14674 +431756,330.93,89.37418 +431757,325,88.6595 +431758,326.54,88.8943 +431759,328.06,89.14615 +431760,329.57,89.41357 +431761,323.68,88.5777 +431762,325.21,88.8533 +431763,326.72,89.14547 +431764,328.2,89.4527 +431765,322.37,88.4962 +431766,323.88,88.8124 +431767,325.37,89.14467 +431768,326.83,89.49157 +431769,321.06,88.415 +431770,322.55,88.7715 +431771,324.02,89.14374 +431772,325.46,89.53013 +431773,319.75,88.3341 +431774,321.22,88.7308 +431775,322.67,89.14269 +431776,324.1,89.56836 +431777,318.44,88.2536 +431778,319.88,88.6901 +431779,321.32,89.14149 +431780,322.73,89.60623 +431781,317.13,88.1735 +431782,318.55,88.6496 +431783,319.96,89.14014 +431784,321.35,89.64371 +431785,315.82,88.0939 +431786,317.23,88.6092 +431787,318.61,89.13863 +431788,319.98,89.68077 +431789,314.51,88.0147 +431790,315.9,88.5689 +431791,317.26,89.13694 +431792,318.61,89.71738 +431793,313.21,87.936 +431794,314.57,88.5287 +431795,315.91,89.13507 +431796,317.23,89.7535 +431797,311.9,87.8578 +431798,313.24,88.4888 +431799,314.56,89.13301 +431800,315.86,89.78913 +431801,310.6,87.7802 +431802,311.91,88.4489 +431803,313.2,89.13075 +431804,314.48,89.82421 +431805,309.3,87.7031 +431806,310.58,88.4093 +431807,311.85,89.12828 +431808,313.1,89.85874 +431809,308,87.6267 +431810,309.26,88.3698 +431811,310.5,89.12559 +431812,311.72,89.89267 +431813,306.7,87.5509 +431814,307.93,88.3305 +431815,309.14,89.12267 +431816,310.34,89.925981 +431817,305.4,87.4757 +431818,306.6,88.2914 +431819,307.79,89.11951 +431820,308.96,89.958646 +431821,304.1,87.4013 +431822,305.28,88.2525 +431823,306.44,89.11611 +431824,307.58,89.9906385 +431825,302.8,87.3275 +431826,303.95,88.2138 +431827,305.08,89.11244 +431828,306.2,90.02193 +431829,301.51,87.2546 +431830,302.63,88.1754 +431831,303.73,89.10852 +431832,304.81,90.052495 +431833,300.21,87.1823 +431834,301.3,88.1372 +431835,302.37,89.10432 +431836,303.43,90.082307 +431837,298.92,87.1109 +431838,299.98,88.0992 +431839,301.02,89.09983 +431840,302.04,90.11134 +431841,297.62,87.0403 +431842,298.65,88.0615 +431843,299.66,89.09506 +431844,300.65,90.13957 +431845,296.33,86.9706 +431846,297.33,88.0241 +431847,298.31,89.08999 +431848,299.27,90.16697 +431849,295.04,86.9017 +431850,296,87.9869 +431851,296.95,89.08461 +431852,297.88,90.19352 +431853,293.75,86.8337 +431854,294.68,87.95 +431855,295.6,89.07891 +431856,296.49,90.21918 +431857,292.46,86.7667 +431858,293.36,87.9134 +431859,294.24,89.0729 +431860,295.1,90.24395 +431861,291.17,86.7006 +431862,292.03,87.8771 +431863,292.88,89.06655 +431864,293.71,90.26779 +431865,289.88,86.6354 +431866,290.71,87.841 +431867,291.53,89.05987 +431868,292.32,90.29069 +431869,288.59,86.5712 +431870,289.39,87.8053 +431871,290.17,89.05284 +431872,290.93,90.31261 +431873,287.3,86.5081 +431874,288.07,87.7699 +431875,288.81,89.04546 +431876,289.53,90.33354 +431877,286.02,86.4459 +431878,286.75,87.7349 +431879,287.45,89.03771 +431880,288.14,90.35345 +431881,284.73,86.3848 +431882,285.42,87.7001 +431883,286.1,89.02961 +431884,286.75,90.37233 +431885,283.44,86.3248 +431886,284.1,87.6657 +431887,284.74,89.02113 +431888,285.35,90.39016 +431889,282.16,86.2659 +431890,282.78,87.6316 +431891,283.38,89.01227 +431892,283.96,90.40691 +431893,280.87,86.208 +431894,281.46,87.5979 +431895,282.02,89.00303 +431896,282.56,90.42256 +431897,279.59,86.1513 +431898,280.14,87.5646 +431899,280.67,88.9934 +431900,281.17,90.4371 +431901,278.31,86.0957 +431902,278.82,87.5316 +431903,279.31,88.9834 +431904,279.77,90.4505 +431905,277.02,86.0413 +431906,277.5,87.4989 +431907,277.95,88.9729 +431908,278.37,90.46276 +431909,275.74,85.988 +431910,276.18,87.4667 +431911,276.59,88.9621 +431912,276.98,90.47384 +431913,274.46,85.9359 +431914,274.86,87.4348 +431915,275.23,88.9508 +431916,275.58,90.48374 +431917,273.18,85.8851 +431918,273.54,87.4033 +431919,273.87,88.9391 +431920,274.18,90.49244 +431921,271.9,85.8354 +431922,272.22,87.3722 +431923,272.52,88.927 +431924,272.78,90.49992 +431925,270.62,85.7869 +431926,270.9,87.3414 +431927,271.16,88.9145 +431928,271.39,90.50617 +431929,269.34,85.7397 +431930,269.58,87.3111 +431931,269.8,88.9016 +431932,269.99,90.51118 +431933,268.05,85.6938 +431934,268.26,87.2812 +431935,268.44,88.8882 +431936,268.59,90.51492 +431937,266.77,85.6491 +431938,266.94,87.2517 +431939,267.08,88.8743 +431940,267.19,90.51739 +431941,265.49,85.6057 +431942,265.62,87.2226 +431943,265.72,88.86 +431944,265.79,90.51857 +431945,264.21,85.5635 +431946,264.3,87.1939 +431947,264.36,88.8453 +431948,264.39,90.51846 +431949,262.93,85.5226 +431950,262.98,87.1656 +431951,263,88.8301 +431952,262.99,90.51703 +431953,261.65,85.4831 +431954,261.67,87.1377 +431955,261.65,88.8145 +431956,261.59,90.51429 +431957,260.38,85.4448 +431958,260.35,87.1103 +431959,260.29,88.7984 +431960,260.19,90.51021 +431961,259.1,85.4079 +431962,259.03,87.0832 +431963,258.93,88.7818 +431964,258.79,90.5048 +431965,257.82,85.3722 +431966,257.71,87.0566 +431967,257.57,88.7648 +431968,257.39,90.49803 +431969,256.54,85.3379 +431970,256.39,87.0305 +431971,256.21,88.7473 +431972,255.99,90.48992 +431973,255.26,85.3049 +431974,255.07,87.0047 +431975,254.85,88.7294 +431976,254.6,90.48044 +431977,253.98,85.2733 +431978,253.75,86.9794 +431979,253.49,88.711 +431980,253.2,90.46959 +431981,252.7,85.243 +431982,252.43,86.9546 +431983,252.14,88.6921 +431984,251.8,90.45736 +431985,251.42,85.214 +431986,251.12,86.9301 +431987,250.78,88.6727 +431988,250.4,90.44376 +431989,250.14,85.1864 +431990,249.8,86.9061 +431991,249.42,88.6529 +431992,249,90.42877 +431993,248.86,85.1601 +431994,248.48,86.8825 +431995,248.06,88.6326 +431996,247.6,90.41239 +431997,247.58,85.1351 +431998,247.16,86.8594 +431999,246.7,88.6118 +432000,246.2,90.39462 +432001,246.3,85.1115 +432002,245.84,86.8367 +432003,245.35,88.5905 +432004,244.81,90.37546 +432005,245.02,85.0892 +432006,244.52,86.8145 +432007,243.99,88.5688 +432008,243.41,90.3549 +432009,243.73,85.0683 +432010,243.2,86.7926 +432011,242.63,88.5466 +432012,242.01,90.33295 +432013,242.45,85.0487 +432014,241.88,86.7713 +432015,241.27,88.5239 +432016,240.62,90.3096 +432017,241.17,85.0304 +432018,240.56,86.7503 +432019,239.92,88.5008 +432020,239.22,90.28485 +432021,239.89,85.0135 +432022,239.25,86.7298 +432023,238.56,88.4771 +432024,237.83,90.25872 +432025,238.61,84.9979 +432026,237.93,86.7097 +432027,237.2,88.453 +432028,236.43,90.23119 +432029,237.32,84.9836 +432030,236.61,86.6901 +432031,235.85,88.4285 +432032,235.04,90.20227 +432033,236.04,84.9707 +432034,235.29,86.6709 +432035,234.49,88.4034 +432036,233.64,90.17197 +432037,234.76,84.959 +432038,233.97,86.6521 +432039,233.13,88.3779 +432040,232.25,90.14029 +432041,233.47,84.9487 +432042,232.65,86.6337 +432043,231.78,88.352 +432044,230.86,90.10723 +432045,232.19,84.9396 +432046,231.33,86.6158 +432047,230.42,88.3256 +432048,229.47,90.072803 +432049,230.9,84.9318 +432050,230.01,86.5983 +432051,229.07,88.2987 +432052,228.08,90.037013 +432053,229.61,84.9253 +432054,228.69,86.5812 +432055,227.71,88.2713 +432056,226.69,89.99986841 +432057,228.33,84.9201 +432058,227.37,86.5645 +432059,226.36,88.2435 +432060,225.3,89.961376 +432061,227.04,84.9162 +432062,226.04,86.5482 +432063,225,88.2153 +432064,223.91,89.921545 +432065,225.75,84.9134 +432066,224.72,86.5324 +432067,223.65,88.1866 +432068,222.52,89.88039 +432069,224.46,84.912 +432070,223.4,86.5169 +432071,222.3,88.1574 +432072,221.13,89.83791 +432073,223.17,84.9117 +432074,222.08,86.5019 +432075,220.94,88.1279 +432076,219.75,89.79412 +432077,221.88,84.9127 +432078,220.76,86.4872 +432079,219.59,88.0979 +432080,218.36,89.74904 +432081,220.59,84.9148 +432082,219.44,86.473 +432083,218.24,88.0674 +432084,216.98,89.70267 +432085,219.3,84.9182 +432086,218.11,86.4591 +432087,216.88,88.0365 +432088,215.6,89.65503 +432089,218,84.9227 +432090,216.79,86.4456 +432091,215.53,88.0052 +432092,214.21,89.60614 +432093,216.71,84.9283 +432094,215.47,86.4325 +432095,214.18,87.9735 +432096,212.83,89.556 +432097,215.41,84.9351 +432098,214.15,86.4198 +432099,212.83,87.9414 +432100,211.45,89.50464 +432101,214.12,84.9431 +432102,212.82,86.4074 +432103,211.48,87.9089 +432104,210.07,89.45206 +432105,212.82,84.9521 +432106,211.5,86.3955 +432107,210.13,87.876 +432108,208.7,89.39829 +432109,211.52,84.9622 +432110,210.18,86.3838 +432111,208.78,87.8426 +432112,207.32,89.34334 +432113,210.23,84.9734 +432114,208.85,86.3725 +432115,207.43,87.8089 +432116,205.94,89.28723 +432117,208.93,84.9857 +432118,207.53,86.3616 +432119,206.08,87.7748 +432120,204.57,89.22998 +432121,207.62,84.999 +432122,206.2,86.351 +432123,204.73,87.7404 +432124,203.19,89.1716 +432125,206.32,85.0133 +432126,204.88,86.3408 +432127,203.38,87.7055 +432128,201.82,89.11212 +432129,205.02,85.0285 +432130,203.55,86.3308 +432131,202.03,87.6703 +432132,200.45,89.05156 +432133,203.72,85.0448 +432134,202.22,86.3212 +432135,200.68,87.6347 +432136,199.08,88.9899 +432137,202.41,85.062 +432138,200.9,86.312 +432139,199.34,87.5988 +432140,197.71,88.9273 +432141,201.11,85.0802 +432142,199.57,86.303 +432143,197.99,87.5626 +432144,196.35,88.8636 +432145,199.8,85.0993 +432146,198.25,86.2943 +432147,196.64,87.526 +432148,194.98,88.7989 +432149,198.49,85.1192 +432150,196.92,86.2859 +432151,195.3,87.4891 +432152,193.62,88.7332 +432153,197.18,85.14 +432154,195.59,86.2778 +432155,193.95,87.4519 +432156,192.25,88.6666 +432157,195.87,85.1617 +432158,194.26,86.27 +432159,192.61,87.4143 +432160,190.89,88.5991 +432161,194.56,85.1842 +432162,192.93,86.2624 +432163,191.26,87.3765 +432164,189.53,88.5307 +432165,193.24,85.2075 +432166,191.61,86.2551 +432167,189.92,87.3383 +432168,188.17,88.4614 +432169,191.93,85.2315 +432170,190.28,86.2481 +432171,188.57,87.2999 +432172,186.81,88.3912 +432173,190.61,85.2563 +432174,188.95,86.2413 +432175,187.23,87.2612 +432176,185.46,88.3202 +432177,189.3,85.2819 +432178,187.62,86.2347 +432179,185.89,87.2222 +432180,184.1,88.2484 +432181,187.98,85.3081 +432182,186.29,86.2284 +432183,184.54,87.183 +432184,182.75,88.1759 +432185,186.66,85.335 +432186,184.96,86.2223 +432187,183.2,87.1435 +432188,181.39,88.1026 +432189,185.34,85.3625 +432190,183.62,86.2164 +432191,181.86,87.1038 +432192,180.04,88.0286 +432193,184.02,85.3907 +432194,182.29,86.2107 +432195,180.52,87.0638 +432196,178.69,87.9539 +432197,182.69,85.4194 +432198,180.96,86.2052 +432199,179.18,87.0236 +432200,177.35,87.8785 +432201,181.37,85.4488 +432202,179.63,86.1999 +432203,177.84,86.9832 +432204,176,87.8025 +432205,180.04,85.4786 +432206,178.3,86.1947 +432207,176.5,86.9426 +432208,174.65,87.7259 +432209,178.72,85.509 +432210,176.96,86.1898 +432211,175.16,86.9019 +432212,173.31,87.6487 +432213,177.39,85.5399 +432214,175.63,86.1849 +432215,173.82,86.8609 +432216,171.97,87.571 +432217,176.06,85.5712 +432218,174.29,86.1803 +432219,172.49,86.8197 +432220,170.63,87.4928 +432221,174.73,85.6029 +432222,172.96,86.1758 +432223,171.15,86.7784 +432224,169.29,87.414 +432225,173.4,85.6351 +432226,171.63,86.1714 +432227,169.81,86.7369 +432228,167.95,87.3349 +432229,172.06,85.6676 +432230,170.29,86.1671 +432231,168.48,86.6953 +432232,166.61,87.2553 +432233,170.73,85.7005 +432234,168.95,86.1629 +432235,167.14,86.6535 +432236,165.28,87.1753 +432237,169.39,85.7337 +432238,167.62,86.1588 +432239,165.8,86.6116 +432240,163.94,87.095 +432241,168.05,85.7672 +432242,166.28,86.1549 +432243,164.47,86.5696 +432244,162.61,87.0143 +432245,166.71,85.8009 +432246,164.94,86.151 +432247,163.14,86.5275 +432248,161.28,86.9333 +432249,165.37,85.8349 +432250,163.61,86.1471 +432251,161.8,86.4853 +432252,159.95,86.8521 +432253,164.03,85.869 +432254,162.27,86.1434 +432255,160.47,86.443 +432256,158.62,86.7706 +432257,162.69,85.9034 +432258,160.93,86.1397 +432259,159.14,86.4007 +432260,157.3,86.6889 +432261,161.34,85.9379 +432262,159.59,86.136 +432263,157.8,86.3582 +432264,155.97,86.6071 +432265,160,85.9725 +432266,158.25,86.1324 +432267,156.47,86.3157 +432268,154.65,86.5251 +432269,158.65,86.0072 +432270,156.91,86.1288 +432271,155.14,86.2732 +432272,153.33,86.443 +432273,157.3,86.0419 +432274,155.57,86.1252 +432275,153.81,86.2307 +432276,152.01,86.3608 +432277,155.95,86.0767 +432278,154.23,86.1216 +432279,152.48,86.1881 +432280,150.69,86.2786 +432281,154.6,86.1114 +432282,152.89,86.1179 +432283,151.15,86.1455 +432284,149.37,86.1963 +432285,153.25,86.1462 +432286,151.55,86.1143 +432287,149.82,86.1029 +432288,148.05,86.1141 +432289,151.89,86.1809 +432290,150.21,86.1107 +432291,148.49,86.0603 +432292,146.74,86.032 +432293,150.54,86.2154 +432294,148.87,86.107 +432295,147.16,86.0177 +432296,145.42,85.9499 +432297,149.18,86.2499 +432298,147.53,86.1032 +432299,145.84,85.9752 +432300,144.11,85.8679 +432301,147.82,86.2842 +432302,146.18,86.0994 +432303,144.51,85.9327 +432304,142.8,85.7861 +432305,146.46,86.3184 +432306,144.84,86.0956 +432307,143.18,85.8903 +432308,141.49,85.7045 +432309,145.1,86.3523 +432310,143.5,86.0916 +432311,141.86,85.8479 +432312,140.18,85.623 +432313,143.74,86.386 +432314,142.15,86.0876 +432315,140.53,85.8055 +432316,138.88,85.5418 +432317,142.38,86.4194 +432318,140.81,86.0835 +432319,139.2,85.7633 +432320,137.57,85.4609 +432321,141.01,86.4526 +432322,139.46,86.0792 +432323,137.88,85.7212 +432324,136.26,85.3803 +432325,139.65,86.4854 +432326,138.12,86.0749 +432327,136.55,85.6791 +432328,134.96,85.3 +432329,138.28,86.5179 +432330,136.77,86.0704 +432331,135.23,85.6372 +432332,133.66,85.22 +432333,136.91,86.55 +432334,135.43,86.0658 +432335,133.91,85.5954 +432336,132.36,85.1405 +432337,135.55,86.5817 +432338,134.08,86.061 +432339,132.58,85.5537 +432340,131.06,85.0614 +432341,134.18,86.6129 +432342,132.73,86.0561 +432343,131.26,85.5121 +432344,129.76,84.9827 +432345,132.8,86.6437 +432346,131.39,86.0511 +432347,129.94,85.4707 +432348,128.46,84.9045 +432349,131.43,86.674 +432350,130.04,86.0458 +432351,128.62,85.4295 +432352,127.17,84.8269 +432353,130.06,86.7038 +432354,128.69,86.0404 +432355,127.3,85.3884 +432356,125.87,84.7497 +432357,128.68,86.7331 +432358,127.34,86.0348 +432359,125.97,85.3475 +432360,124.58,84.6732 +432361,127.31,86.7618 +432362,125.99,86.029 +432363,124.65,85.3068 +432364,123.29,84.5972 +432365,125.93,86.7899 +432366,124.65,86.0229 +432367,123.33,85.2663 +432368,122,84.5218 +432369,124.55,86.8174 +432370,123.3,86.0167 +432371,122.01,85.226 +432372,120.71,84.4471 +432373,123.17,86.8442 +432374,121.95,86.0102 +432375,120.69,85.1859 +432376,119.42,84.3731 +432377,121.79,86.8704 +432378,120.6,86.0035 +432379,119.38,85.1461 +432380,118.13,84.2998 +432381,120.41,86.8958 +432382,119.25,85.9966 +432383,118.06,85.1064 +432384,116.84,84.2272 +432385,119.03,86.9206 +432386,117.9,85.9894 +432387,116.74,85.0671 +432388,115.55,84.1553 +432389,117.65,86.9446 +432390,116.55,85.9819 +432391,115.42,85.0279 +432392,114.27,84.0842 +432393,116.26,86.9679 +432394,115.2,85.9742 +432395,114.1,84.989 +432396,112.98,84.014 +432397,114.88,86.9903 +432398,113.85,85.9662 +432399,112.79,84.9504 +432400,111.7,83.9445 +432401,113.5,87.012 +432402,112.49,85.958 +432403,111.47,84.9121 +432404,110.42,83.876 +432405,112.11,87.0328 +432406,111.14,85.9494 +432407,110.15,84.874 +432408,109.14,83.8082 +432409,110.72,87.0527 +432410,109.79,85.9405 +432411,108.84,84.8362 +432412,107.85,83.7414 +432413,109.33,87.0718 +432414,108.44,85.9314 +432415,107.52,84.7987 +432416,106.57,83.6755 +432417,107.95,87.09 +432418,107.09,85.9219 +432419,106.2,84.7616 +432420,105.3,83.6106 +432421,106.56,87.1072 +432422,105.73,85.9121 +432423,104.89,84.7247 +432424,104.02,83.5466 +432425,105.17,87.1235 +432426,104.38,85.902 +432427,103.57,84.6881 +432428,102.74,83.4836 +432429,103.78,87.1389 +432430,103.03,85.8915 +432431,102.26,84.6519 +432432,101.46,83.4216 +432433,102.38,87.1532 +432434,101.68,85.8807 +432435,100.94,84.616 +432436,100.18,83.3606 +432437,100.99,87.1666 +432438,100.32,85.8696 +432439,99.628,84.5805 +432440,98.908,83.3007 +432441,99.6,87.1789 +432442,98.97,85.8581 +432443,98.314,84.5452 +432444,97.633,83.2418 +432445,98.207,87.1902 +432446,97.616,85.8462 +432447,97,84.5104 +432448,96.358,83.184 +432449,96.813,87.2005 +432450,96.263,85.834 +432451,95.686,84.4759 +432452,95.083,83.1273 +432453,95.419,87.2096 +432454,94.909,85.8215 +432455,94.372,84.4417 +432456,93.809,83.0717 +432457,94.025,87.2177 +432458,93.555,85.8085 +432459,93.059,84.4079 +432460,92.536,83.0172 +432461,92.63,87.2247 +432462,92.201,85.7952 +432463,91.746,84.3745 +432464,91.263,82.9639 +432465,91.235,87.2306 +432466,90.847,85.7815 +432467,90.432,84.3415 +432468,89.991,82.9117 +432469,89.839,87.2353 +432470,89.493,85.7674 +432471,89.12,84.3088 +432472,88.718,82.8607 +432473,88.443,87.2389 +432474,88.139,85.7529 +432475,87.807,84.2766 +432476,87.447,82.8109 +432477,87.046,87.2413 +432478,86.785,85.738 +432479,86.494,84.2447 +432480,86.175,82.7623 +432481,85.65,87.2425 +432482,85.431,85.7227 +432483,85.182,84.2132 +432484,84.904,82.7149 +432485,84.253,87.2426 +432486,84.076,85.707 +432487,83.869,84.1821 +432488,83.633,82.6687 +432489,82.856,87.2414 +432490,82.722,85.6909 +432491,82.557,84.1514 +432492,82.362,82.6237 +432493,81.459,87.2391 +432494,81.367,85.6744 +432495,81.245,84.1211 +432496,81.092,82.58 +432497,80.061,87.2355 +432498,80.013,85.6574 +432499,79.933,84.0913 +432500,79.822,82.5375 +432501,78.664,87.2306 +432502,78.658,85.6401 +432503,78.621,84.0618 +432504,78.552,82.4963 +432505,77.266,87.2246 +432506,77.304,85.6223 +432507,77.309,84.0328 +432508,77.282,82.4564 +432509,75.868,87.2173 +432510,75.95,85.6041 +432511,75.997,84.0042 +432512,76.012,82.4177 +432513,74.471,87.2087 +432514,74.595,85.5855 +432515,74.685,83.976 +432516,74.742,82.3803 +432517,73.073,87.1988 +432518,73.241,85.5664 +432519,73.373,83.9482 +432520,73.472,82.3442 +432521,71.676,87.1877 +432522,71.887,85.5469 +432523,72.061,83.9208 +432524,72.202,82.3094 +432525,70.278,87.1753 +432526,70.532,85.527 +432527,70.749,83.8939 +432528,70.932,82.2759 +432529,68.881,87.1616 +432530,69.178,85.5066 +432531,69.438,83.8674 +432532,69.662,82.2436 +432533,67.484,87.1467 +432534,67.824,85.4859 +432535,68.126,83.8413 +432536,68.392,82.2127 +432537,66.087,87.1304 +432538,66.47,85.4646 +432539,66.814,83.8157 +432540,67.121,82.1831 +432541,64.69,87.1128 +432542,65.116,85.443 +432543,65.502,83.7905 +432544,65.851,82.1548 +432545,63.294,87.0939 +432546,63.762,85.4208 +432547,64.19,83.7657 +432548,64.58,82.1278 +432549,61.897,87.0738 +432550,62.409,85.3983 +432551,62.878,83.7413 +432552,63.309,82.1021 +432553,60.502,87.0523 +432554,61.055,85.3753 +432555,61.566,83.7174 +432556,62.038,82.0777 +432557,59.106,87.0295 +432558,59.702,85.3519 +432559,60.254,83.6939 +432560,60.766,82.0547 +432561,57.711,87.0054 +432562,58.349,85.328 +432563,58.942,83.6709 +432564,59.495,82.0329 +432565,56.316,86.9799 +432566,56.996,85.3037 +432567,57.629,83.6483 +432568,58.222,82.0124 +432569,54.922,86.9532 +432570,55.643,85.279 +432571,56.317,83.6261 +432572,56.95,81.9933 +432573,53.529,86.9252 +432574,54.29,85.2538 +432575,55.005,83.6043 +432576,55.677,81.9754 +432577,52.136,86.8959 +432578,52.938,85.2282 +432579,53.692,83.583 +432580,54.403,81.9588 +432581,50.743,86.8652 +432582,51.586,85.2021 +432583,52.379,83.5621 +432584,53.129,81.9435 +432585,49.351,86.8333 +432586,50.234,85.1756 +432587,51.066,83.5416 +432588,51.855,81.9295 +432589,47.96,86.8001 +432590,48.882,85.1487 +432591,49.753,83.5215 +432592,50.58,81.9168 +432593,46.569,86.7656 +432594,47.53,85.1213 +432595,48.44,83.5019 +432596,49.304,81.9053 +432597,45.179,86.7298 +432598,46.179,85.0936 +432599,47.127,83.4827 +432600,48.028,81.8951 +432601,43.79,86.6928 +432602,44.828,85.0654 +432603,45.813,83.4639 +432604,46.751,81.8861 +432605,42.402,86.6544 +432606,43.478,85.0367 +432607,44.499,83.4455 +432608,45.474,81.8784 +432609,41.014,86.6148 +432610,42.127,85.0077 +432611,43.185,83.4275 +432612,44.195,81.8719 +432613,39.627,86.574 +432614,40.777,84.9782 +432615,41.871,83.4099 +432616,42.916,81.8666 +432617,38.241,86.5319 +432618,39.427,84.9484 +432619,40.556,83.3927 +432620,41.637,81.8626 +432621,36.856,86.4886 +432622,38.078,84.9181 +432623,39.242,83.376 +432624,40.356,81.8597 +432625,35.472,86.4441 +432626,36.728,84.8874 +432627,37.927,83.3596 +432628,39.075,81.858 +432629,34.089,86.3983 +432630,35.38,84.8563 +432631,36.612,83.3436 +432632,37.793,81.8575 +432633,32.706,86.3514 +432634,34.031,84.8248 +432635,35.296,83.328 +432636,36.51,81.8582 +432637,31.325,86.3033 +432638,32.683,84.793 +432639,33.98,83.3128 +432640,35.226,81.86 +432641,29.945,86.254 +432642,31.335,84.7607 +432643,32.664,83.298 +432644,33.942,81.8629 +432645,28.566,86.2035 +432646,29.988,84.728 +432647,31.348,83.2835 +432648,32.656,81.8669 +432649,27.187,86.1519 +432650,28.641,84.695 +432651,30.032,83.2694 +432652,31.37,81.8721 +432653,25.81,86.0992 +432654,27.294,84.6616 +432655,28.715,83.2557 +432656,30.082,81.8783 +432657,24.434,86.0453 +432658,25.948,84.6278 +432659,27.397,83.2424 +432660,28.794,81.8856 +432661,23.06,85.9903 +432662,24.602,84.5937 +432663,26.08,83.2293 +432664,27.504,81.894 +432665,21.686,85.9343 +432666,23.256,84.5592 +432667,24.762,83.2167 +432668,26.214,81.9034 +432669,20.314,85.8772 +432670,21.911,84.5244 +432671,23.444,83.2044 +432672,24.922,81.9138 +432673,18.942,85.8191 +432674,20.566,84.4892 +432675,22.125,83.1924 +432676,23.629,81.9252 +432677,17.572,85.7599 +432678,19.222,84.4537 +432679,20.807,83.1807 +432680,22.335,81.9375 +432681,16.204,85.6997 +432682,17.878,84.4178 +432683,19.487,83.1694 +432684,21.04,81.9508 +432685,14.836,85.6386 +432686,16.535,84.3817 +432687,18.168,83.1583 +432688,19.744,81.9651 +432689,13.47,85.5764 +432690,15.192,84.3452 +432691,16.848,83.1476 +432692,18.447,81.9803 +432693,12.105,85.5133 +432694,13.85,84.3084 +432695,15.528,83.1372 +432696,17.149,81.9964 +432697,10.742,85.4493 +432698,12.508,84.2712 +432699,14.207,83.1271 +432700,15.849,82.0133 +432701,9.38,85.3844 +432702,11.166,84.2338 +432703,12.886,83.1173 +432704,14.548,82.0311 +432705,8.0192,85.3186 +432706,9.8252,84.1961 +432707,11.564,83.1077 +432708,13.246,82.0497 +432709,6.6599,85.2519 +432710,8.4846,84.1582 +432711,10.242,83.0984 +432712,11.943,82.0691 +432713,5.302,85.1844 +432714,7.1445,84.1199 +432715,8.9202,83.0894 +432716,10.638,82.0893 +432717,3.9455,85.1161 +432718,5.8049,84.0814 +432719,7.5975,83.0807 +432720,9.3325,82.1103 +432721,2.5904,85.047 +432722,4.4658,84.0426 +432723,6.2744,83.0721 +432724,8.0254,82.132 +432725,1.2368,84.9771 +432726,3.1272,84.0036 +432727,4.9509,83.0639 +432728,6.717,82.1544 +432729,359.88,84.9065 +432730,1.7891,83.9644 +432731,3.627,83.0558 +432732,5.4072,82.1775 +432733,358.53,84.8352 +432734,0.45153,83.9249 +432735,2.3026,83.048 +432736,4.0961,82.2012 +432737,357.18,84.7632 +432738,359.11,83.8851 +432739,0.97782,83.0404 +432740,2.7837,82.2256 +432741,355.84,84.6905 +432742,357.78,83.8452 +432743,359.65,83.0331 +432744,1.47,82.2506 +432745,354.49,84.6172 +432746,356.44,83.8051 +432747,358.33,83.0259 +432748,0.15485,82.2762 +432749,353.15,84.5433 +432750,355.11,83.7647 +432751,357,83.0189 +432752,358.84,82.3023 +432753,351.8,84.4688 +432754,353.77,83.7242 +432755,355.67,83.0121 +432756,357.52,82.329 +432757,350.46,84.3938 +432758,352.44,83.6835 +432759,354.35,83.0054 +432760,356.2,82.3562 +432761,349.12,84.3182 +432762,351.1,83.6426 +432763,353.02,82.9989 +432764,354.88,82.3838 +432765,347.78,84.2421 +432766,349.77,83.6016 +432767,351.69,82.9926 +432768,353.56,82.4119 +432769,346.45,84.1656 +432770,348.44,83.5604 +432771,350.36,82.9864 +432772,352.24,82.4405 +432773,345.11,84.0886 +432774,347.1,83.5191 +432775,349.04,82.9804 +432776,350.91,82.4694 +432777,343.78,84.0112 +432778,345.77,83.4776 +432779,347.71,82.9745 +432780,349.58,82.4987 +432781,342.44,83.9334 +432782,344.44,83.436 +432783,346.38,82.9687 +432784,348.26,82.5283 +432785,341.11,83.8553 +432786,343.11,83.3943 +432787,345.05,82.963 +432788,346.93,82.5582 +432789,339.78,83.7768 +432790,341.78,83.3525 +432791,343.72,82.9574 +432792,345.6,82.5885 +432793,338.46,83.6981 +432794,340.45,83.3106 +432795,342.38,82.9519 +432796,344.26,82.619 +432797,337.13,83.6191 +432798,339.12,83.2686 +432799,341.05,82.9465 +432800,342.93,82.6497 +432801,335.8,83.5398 +432802,337.79,83.2266 +432803,339.72,82.9411 +432804,341.6,82.6806 +432805,334.48,83.4604 +432806,336.46,83.1844 +432807,338.39,82.9359 +432808,340.26,82.7117 +432809,333.16,83.3808 +432810,335.14,83.1423 +432811,337.06,82.9306 +432812,338.92,82.7429 +432813,331.84,83.301 +432814,333.81,83.1001 +432815,335.72,82.9254 +432816,337.58,82.7743 +432817,330.52,83.2211 +432818,332.48,83.0578 +432819,334.39,82.9203 +432820,336.24,82.8057 +432821,329.2,83.1412 +432822,331.16,83.0155 +432823,333.05,82.9151 +432824,334.9,82.8373 +432825,327.89,83.0612 +432826,329.83,82.9732 +432827,331.72,82.91 +432828,333.56,82.8688 +432829,326.57,82.9811 +432830,328.51,82.9309 +432831,330.38,82.9049 +432832,332.21,82.9003 +432833,325.26,82.9011 +432834,327.18,82.8886 +432835,329.05,82.8998 +432836,330.87,82.9318 +432837,323.95,82.8211 +432838,325.86,82.8464 +432839,327.71,82.8946 +432840,329.52,82.9633 +432841,322.64,82.7412 +432842,324.53,82.8041 +432843,326.38,82.8894 +432844,328.17,82.9947 +432845,321.33,82.6614 +432846,323.21,82.7619 +432847,325.04,82.8842 +432848,326.82,83.0259 +432849,320.03,82.5817 +432850,321.89,82.7197 +432851,323.7,82.879 +432852,325.47,83.0571 +432853,318.72,82.5022 +432854,320.57,82.6776 +432855,322.36,82.8737 +432856,324.12,83.088 +432857,317.42,82.4229 +432858,319.25,82.6356 +432859,321.03,82.8683 +432860,322.76,83.1188 +432861,316.11,82.3438 +432862,317.93,82.5936 +432863,319.69,82.8629 +432864,321.4,83.1493 +432865,314.81,82.265 +432866,316.6,82.5517 +432867,318.35,82.8574 +432868,320.05,83.1796 +432869,313.51,82.1864 +432870,315.28,82.5099 +432871,317.01,82.8517 +432872,318.69,83.2096 +432873,312.22,82.1082 +432874,313.97,82.4682 +432875,315.67,82.846 +432876,317.33,83.2394 +432877,310.92,82.0302 +432878,312.65,82.4266 +432879,314.33,82.8402 +432880,315.97,83.2687 +432881,309.62,81.9527 +432882,311.33,82.3852 +432883,312.99,82.8342 +432884,314.61,83.2978 +432885,308.33,81.8756 +432886,310.01,82.3438 +432887,311.65,82.8282 +432888,313.24,83.3264 +432889,307.04,81.7988 +432890,308.69,82.3026 +432891,310.31,82.822 +432892,311.88,83.3546 +432893,305.75,81.7226 +432894,307.38,82.2616 +432895,308.96,82.8156 +432896,310.51,83.3824 +432897,304.45,81.6468 +432898,306.06,82.2207 +432899,307.62,82.8091 +432900,309.14,83.4097 +432901,303.17,81.5716 +432902,304.74,82.18 +432903,306.28,82.8024 +432904,307.78,83.4365 +432905,301.88,81.4968 +432906,303.43,82.1395 +432907,304.94,82.7956 +432908,306.41,83.4629 +432909,300.59,81.4227 +432910,302.11,82.0992 +432911,303.59,82.7885 +432912,305.04,83.4886 +432913,299.31,81.3491 +432914,300.8,82.059 +432915,302.25,82.7813 +432916,303.66,83.5138 +432917,298.02,81.2762 +432918,299.48,82.0191 +432919,300.9,82.7739 +432920,302.29,83.5385 +432921,296.74,81.2039 +432922,298.17,81.9794 +432923,299.56,82.7662 +432924,300.92,83.5625 +432925,295.46,81.1323 +432926,296.85,81.9399 +432927,298.22,82.7584 +432928,299.54,83.5858 +432929,294.18,81.0614 +432930,295.54,81.9006 +432931,296.87,82.7503 +432932,298.16,83.6085 +432933,292.9,80.9912 +432934,294.23,81.8616 +432935,295.52,82.742 +432936,296.79,83.6305 +432937,291.62,80.9217 +432938,292.92,81.8228 +432939,294.18,82.7335 +432940,295.41,83.6518 +432941,290.34,80.8531 +432942,291.6,81.7843 +432943,292.83,82.7247 +432944,294.03,83.6724 +432945,289.06,80.7852 +432946,290.29,81.746 +432947,291.49,82.7156 +432948,292.65,83.6922 +432949,287.79,80.7182 +432950,288.98,81.708 +432951,290.14,82.7063 +432952,291.27,83.7112 +432953,286.51,80.6519 +432954,287.67,81.6703 +432955,288.79,82.6968 +432956,289.89,83.7295 +432957,285.24,80.5866 +432958,286.36,81.6329 +432959,287.45,82.6869 +432960,288.5,83.7469 +432961,283.96,80.5222 +432962,285.05,81.5957 +432963,286.1,82.6768 +432964,287.12,83.7635 +432965,282.69,80.4586 +432966,283.74,81.5589 +432967,284.75,82.6664 +432968,285.73,83.7792 +432969,281.42,80.396 +432970,282.43,81.5223 +432971,283.4,82.6556 +432972,284.35,83.794 +432973,280.15,80.3343 +432974,281.12,81.4861 +432975,282.06,82.6446 +432976,282.96,83.808 +432977,278.88,80.2736 +432978,279.81,81.4502 +432979,280.71,82.6333 +432980,281.57,83.821 +432981,277.61,80.2139 +432982,278.5,81.4146 +432983,279.36,82.6216 +432984,280.19,83.8331 +432985,276.34,80.1552 +432986,277.19,81.3794 +432987,278.01,82.6096 +432988,278.8,83.8442 +432989,275.07,80.0976 +432990,275.88,81.3445 +432991,276.66,82.5973 +432992,277.41,83.8544 +432993,273.81,80.0409 +432994,274.57,81.3099 +432995,275.31,82.5847 +432996,276.02,83.8635 +432997,272.54,79.985 +432998,273.27,81.2757 +432999,273.96,82.5717 +433000,274.63,83.8717 +433001,271.28,79.931 +433002,271.96,81.2419 +433003,272.61,82.5584 +433004,273.24,83.8788 +433005,270.01,79.877 +433006,270.65,81.2084 +433007,271.26,82.5448 +433008,271.84,83.8849 +433009,268.75,79.825 +433010,269.34,81.1753 +433011,269.91,82.5307 +433012,270.45,83.89 +433013,267.48,79.774 +433014,268.04,81.1425 +433015,268.56,82.5163 +433016,269.06,83.894 +433017,266.22,79.724 +433018,266.73,81.1101 +433019,267.21,82.5016 +433020,267.67,83.8969 +433021,264.95,79.675 +433022,265.42,81.0781 +433023,265.86,82.4865 +433024,266.27,83.8987 +433025,263.69,79.627 +433026,264.12,81.0465 +433027,264.51,82.471 +433028,264.88,83.8994 +433029,262.43,79.581 +433030,262.81,81.0153 +433031,263.16,82.4551 +433032,263.48,83.8989 +433033,261.16,79.536 +433034,261.5,80.9845 +433035,261.81,82.4389 +433036,262.09,83.8974 +433037,259.9,79.491 +433038,260.2,80.954 +433039,260.46,82.4222 +433040,260.69,83.8947 +433041,258.64,79.448 +433042,258.89,80.924 +433043,259.11,82.4052 +433044,259.3,83.8909 +433045,257.38,79.407 +433046,257.58,80.8943 +433047,257.76,82.3878 +433048,257.9,83.8858 +433049,256.12,79.366 +433050,256.28,80.8651 +433051,256.41,82.37 +433052,256.51,83.8797 +433053,254.86,79.327 +433054,254.97,80.8363 +433055,255.06,82.3518 +433056,255.11,83.8723 +433057,253.6,79.289 +433058,253.67,80.8079 +433059,253.71,82.3332 +433060,253.72,83.8638 +433061,252.33,79.252 +433062,252.36,80.7799 +433063,252.36,82.3142 +433064,252.32,83.854 +433065,251.07,79.217 +433066,251.06,80.7523 +433067,251.01,82.2948 +433068,250.92,83.8431 +433069,249.81,79.182 +433070,249.75,80.7251 +433071,249.66,82.275 +433072,249.53,83.8309 +433073,248.55,79.149 +433074,248.44,80.6984 +433075,248.31,82.2548 +433076,248.13,83.8175 +433077,247.29,79.117 +433078,247.14,80.6721 +433079,246.95,82.2341 +433080,246.74,83.8029 +433081,246.03,79.087 +433082,245.83,80.6462 +433083,245.6,82.2131 +433084,245.34,83.7871 +433085,244.77,79.058 +433086,244.53,80.6207 +433087,244.25,82.1916 +433088,243.94,83.77 +433089,243.51,79.03 +433090,243.22,80.5956 +433091,242.9,82.1698 +433092,242.55,83.7517 +433093,242.24,79.003 +433094,241.92,80.571 +433095,241.55,82.1475 +433096,241.15,83.7322 +433097,240.98,78.978 +433098,240.61,80.5468 +433099,240.2,82.1248 +433100,239.76,83.7115 +433101,239.72,78.954 +433102,239.3,80.523 +433103,238.85,82.1017 +433104,238.36,83.6895 +433105,238.46,78.931 +433106,238,80.4996 +433107,237.5,82.0782 +433108,236.97,83.6662 +433109,237.19,78.909 +433110,236.69,80.4767 +433111,236.15,82.0543 +433112,235.57,83.6418 +433113,235.93,78.889 +433114,235.39,80.4542 +433115,234.8,82.0299 +433116,234.18,83.616 +433117,234.67,78.87 +433118,234.08,80.4321 +433119,233.45,82.0051 +433120,232.79,83.5891 +433121,233.4,78.852 +433122,232.77,80.4104 +433123,232.11,81.98 +433124,231.39,83.5609 +433125,232.14,78.836 +433126,231.47,80.3892 +433127,230.76,81.9544 +433128,230,83.5315 +433129,230.88,78.821 +433130,230.16,80.3684 +433131,229.41,81.9284 +433132,228.61,83.5008 +433133,229.61,78.807 +433134,228.85,80.348 +433135,228.06,81.902 +433136,227.22,83.4689 +433137,228.34,78.794 +433138,227.55,80.328 +433139,226.71,81.8752 +433140,225.83,83.4358 +433141,227.08,78.782 +433142,226.24,80.3084 +433143,225.36,81.848 +433144,224.43,83.4015 +433145,225.81,78.772 +433146,224.93,80.2892 +433147,224.01,81.8204 +433148,223.04,83.3659 +433149,224.54,78.763 +433150,223.63,80.2705 +433151,222.67,81.7924 +433152,221.66,83.3292 +433153,223.27,78.755 +433154,222.32,80.2521 +433155,221.32,81.764 +433156,220.27,83.2913 +433157,222.01,78.748 +433158,221.01,80.2342 +433159,219.97,81.7351 +433160,218.88,83.2521 +433161,220.74,78.743 +433162,219.7,80.2166 +433163,218.62,81.706 +433164,217.49,83.2118 +433165,219.47,78.739 +433166,218.39,80.1995 +433167,217.28,81.6764 +433168,216.11,83.1703 +433169,218.19,78.735 +433170,217.09,80.1827 +433171,215.93,81.6464 +433172,214.72,83.1277 +433173,216.92,78.734 +433174,215.78,80.1663 +433175,214.59,81.6161 +433176,213.34,83.0838 +433177,215.65,78.733 +433178,214.47,80.1503 +433179,213.24,81.5853 +433180,211.95,83.0389 +433181,214.38,78.733 +433182,213.16,80.1347 +433183,211.89,81.5542 +433184,210.57,82.9928 +433185,213.1,78.734 +433186,211.85,80.1195 +433187,210.55,81.5228 +433188,209.19,82.9456 +433189,211.82,78.737 +433190,210.54,80.1046 +433191,209.2,81.4909 +433192,207.81,82.8972 +433193,210.55,78.741 +433194,209.23,80.0902 +433195,207.86,81.4587 +433196,206.43,82.8478 +433197,209.27,78.745 +433198,207.92,80.076 +433199,206.52,81.4262 +433200,205.05,82.7973 +433201,207.99,78.751 +433202,206.61,80.0623 +433203,205.17,81.3933 +433204,203.67,82.7458 +433205,206.71,78.758 +433206,205.3,80.0488 +433207,203.83,81.36 +433208,202.3,82.6931 +433209,205.43,78.766 +433210,203.99,80.0358 +433211,202.49,81.3264 +433212,200.92,82.6395 +433213,204.15,78.774 +433214,202.67,80.023 +433215,201.14,81.2925 +433216,199.55,82.5848 +433217,202.87,78.784 +433218,201.36,80.0106 +433219,199.8,81.2583 +433220,198.18,82.5291 +433221,201.58,78.795 +433222,200.05,79.999 +433223,198.46,81.2237 +433224,196.8,82.4724 +433225,200.3,78.807 +433226,198.74,79.987 +433227,197.12,81.1888 +433228,195.43,82.4148 +433229,199.01,78.819 +433230,197.42,79.975 +433231,195.78,81.1536 +433232,194.07,82.3562 +433233,197.73,78.833 +433234,196.11,79.964 +433235,194.44,81.1181 +433236,192.7,82.2966 +433237,196.44,78.847 +433238,194.8,79.953 +433239,193.1,81.0823 +433240,191.33,82.2362 +433241,195.15,78.863 +433242,193.48,79.943 +433243,191.76,81.0462 +433244,189.97,82.1748 +433245,193.86,78.879 +433246,192.17,79.933 +433247,190.42,81.0099 +433248,188.6,82.1126 +433249,192.56,78.896 +433250,190.85,79.923 +433251,189.08,80.9732 +433252,187.24,82.0495 +433253,191.27,78.913 +433254,189.54,79.913 +433255,187.74,80.9363 +433256,185.88,81.9856 +433257,189.98,78.932 +433258,188.22,79.904 +433259,186.41,80.8991 +433260,184.52,81.9208 +433261,188.68,78.951 +433262,186.91,79.895 +433263,185.07,80.8617 +433264,183.16,81.8553 +433265,187.38,78.971 +433266,185.59,79.886 +433267,183.73,80.824 +433268,181.81,81.789 +433269,186.08,78.992 +433270,184.27,79.877 +433271,182.4,80.7861 +433272,180.45,81.722 +433273,184.78,79.014 +433274,182.95,79.869 +433275,181.06,80.7479 +433276,179.1,81.6543 +433277,183.48,79.036 +433278,181.64,79.86 +433279,179.73,80.7095 +433280,177.74,81.5858 +433281,182.18,79.058 +433282,180.32,79.852 +433283,178.39,80.671 +433284,176.39,81.5167 +433285,180.87,79.082 +433286,179,79.845 +433287,177.06,80.6322 +433288,175.04,81.4469 +433289,179.57,79.106 +433290,177.68,79.837 +433291,175.73,80.5932 +433292,173.7,81.3765 +433293,178.26,79.13 +433294,176.36,79.83 +433295,174.39,80.554 +433296,172.35,81.3055 +433297,176.95,79.155 +433298,175.04,79.823 +433299,173.06,80.5146 +433300,171.01,81.2339 +433301,175.64,79.181 +433302,173.72,79.816 +433303,171.73,80.4751 +433304,169.66,81.1618 +433305,174.33,79.207 +433306,172.4,79.809 +433307,170.4,80.4353 +433308,168.32,81.0892 +433309,173.02,79.233 +433310,171.07,79.802 +433311,169.07,80.3955 +433312,166.98,81.016 +433313,171.7,79.26 +433314,169.75,79.796 +433315,167.74,80.3555 +433316,165.64,80.9424 +433317,170.39,79.287 +433318,168.43,79.789 +433319,166.41,80.3153 +433320,164.31,80.8684 +433321,169.07,79.315 +433322,167.11,79.783 +433323,165.08,80.2751 +433324,162.97,80.7939 +433325,167.75,79.343 +433326,165.78,79.777 +433327,163.75,80.2347 +433328,161.64,80.7191 +433329,166.43,79.371 +433330,164.46,79.771 +433331,162.42,80.1942 +433332,160.31,80.6439 +433333,165.11,79.4 +433334,163.13,79.765 +433335,161.09,80.1535 +433336,158.98,80.5683 +433337,163.79,79.429 +433338,161.81,79.759 +433339,159.77,80.1129 +433340,157.65,80.4925 +433341,162.46,79.458 +433342,160.48,79.754 +433343,158.44,80.0721 +433344,156.32,80.4164 +433345,161.14,79.487 +433346,159.16,79.748 +433347,157.11,80.0312 +433348,155,80.3401 +433349,159.81,79.517 +433350,157.83,79.742 +433351,155.79,79.99 +433352,153.67,80.2635 +433353,158.48,79.547 +433354,156.5,79.737 +433355,154.46,79.949 +433356,152.35,80.1867 +433357,157.15,79.576 +433358,155.18,79.731 +433359,153.14,79.908 +433360,151.03,80.1098 +433361,155.82,79.606 +433362,153.85,79.726 +433363,151.82,79.867 +433364,149.71,80.0328 +433365,154.48,79.636 +433366,152.52,79.721 +433367,150.49,79.826 +433368,148.4,79.956 +433369,153.15,79.666 +433370,151.19,79.715 +433371,149.17,79.785 +433372,147.08,79.878 +433373,151.81,79.697 +433374,149.86,79.71 +433375,147.85,79.744 +433376,145.77,79.801 +433377,150.47,79.727 +433378,148.53,79.705 +433379,146.53,79.703 +433380,144.45,79.724 +433381,149.13,79.757 +433382,147.2,79.699 +433383,145.21,79.662 +433384,143.14,79.647 +433385,147.79,79.787 +433386,145.87,79.694 +433387,143.89,79.621 +433388,141.83,79.569 +433389,146.45,79.816 +433390,144.54,79.689 +433391,142.57,79.58 +433392,140.53,79.492 +433393,145.1,79.846 +433394,143.21,79.683 +433395,141.25,79.539 +433396,139.22,79.415 +433397,143.76,79.876 +433398,141.87,79.678 +433399,139.93,79.498 +433400,137.92,79.338 +433401,142.41,79.905 +433402,140.54,79.672 +433403,138.61,79.457 +433404,136.61,79.262 +433405,141.06,79.934 +433406,139.21,79.667 +433407,137.29,79.416 +433408,135.31,79.185 +433409,139.71,79.963 +433410,137.87,79.661 +433411,135.98,79.376 +433412,134.01,79.109 +433413,138.36,79.992 +433414,136.54,79.655 +433415,134.66,79.335 +433416,132.72,79.033 +433417,137.01,80.0204 +433418,135.21,79.65 +433419,133.34,79.294 +433420,131.42,78.957 +433421,135.66,80.0485 +433422,133.87,79.644 +433423,132.03,79.254 +433424,130.12,78.882 +433425,134.3,80.0763 +433426,132.53,79.638 +433427,130.71,79.214 +433428,128.83,78.807 +433429,132.94,80.1037 +433430,131.2,79.632 +433431,129.4,79.174 +433432,127.54,78.732 +433433,131.58,80.1307 +433434,129.86,79.625 +433435,128.08,79.133 +433436,126.25,78.657 +433437,130.23,80.1573 +433438,128.53,79.619 +433439,126.77,79.094 +433440,124.96,78.583 +433441,128.86,80.1835 +433442,127.19,79.612 +433443,125.46,79.054 +433444,123.67,78.51 +433445,127.5,80.2092 +433446,125.85,79.606 +433447,124.15,79.014 +433448,122.38,78.437 +433449,126.14,80.2344 +433450,124.51,79.599 +433451,122.83,78.975 +433452,121.1,78.364 +433453,124.77,80.2591 +433454,123.17,79.592 +433455,121.52,78.936 +433456,119.81,78.292 +433457,123.41,80.2832 +433458,121.83,79.585 +433459,120.21,78.897 +433460,118.53,78.221 +433461,122.04,80.3068 +433462,120.5,79.577 +433463,118.9,78.858 +433464,117.25,78.15 +433465,120.67,80.3298 +433466,119.16,79.57 +433467,117.59,78.819 +433468,115.97,78.08 +433469,119.3,80.3522 +433470,117.82,79.562 +433471,116.28,78.781 +433472,114.69,78.01 +433473,117.93,80.374 +433474,116.47,79.554 +433475,114.97,78.743 +433476,113.41,77.941 +433477,116.56,80.3951 +433478,115.13,79.546 +433479,113.66,78.705 +433480,112.14,77.873 +433481,115.19,80.4155 +433482,113.79,79.538 +433483,112.35,78.667 +433484,110.86,77.806 +433485,113.81,80.4352 +433486,112.45,79.529 +433487,111.04,78.629 +433488,109.59,77.739 +433489,112.44,80.4542 +433490,111.11,79.52 +433491,109.74,78.592 +433492,108.32,77.673 +433493,111.06,80.4724 +433494,109.77,79.511 +433495,108.43,78.555 +433496,107.04,77.608 +433497,109.68,80.4899 +433498,108.42,79.502 +433499,107.12,78.519 +433500,105.77,77.543 +433501,108.31,80.5066 +433502,107.08,79.492 +433503,105.81,78.482 +433504,104.5,77.479 +433505,106.93,80.5225 +433506,105.74,79.482 +433507,104.51,78.446 +433508,103.24,77.417 +433509,105.55,80.5375 +433510,104.4,79.472 +433511,103.2,78.41 +433512,101.97,77.355 +433513,104.17,80.5517 +433514,103.05,79.461 +433515,101.9,78.375 +433516,100.7,77.294 +433517,102.78,80.5651 +433518,101.71,79.451 +433519,100.59,78.339 +433520,99.435,77.234 +433521,101.4,80.5776 +433522,100.36,79.44 +433523,99.287,78.305 +433524,98.17,77.174 +433525,100.02,80.5891 +433526,99.018,79.428 +433527,97.982,78.27 +433528,96.906,77.116 +433529,98.631,80.5998 +433530,97.673,79.417 +433531,96.678,78.236 +433532,95.643,77.059 +433533,97.246,80.6095 +433534,96.328,79.405 +433535,95.374,78.202 +433536,94.381,77.003 +433537,95.859,80.6182 +433538,94.983,79.392 +433539,94.07,78.168 +433540,93.119,76.947 +433541,94.472,80.626 +433542,93.637,79.38 +433543,92.766,78.135 +433544,91.858,76.893 +433545,93.084,80.6328 +433546,92.292,79.367 +433547,91.463,78.102 +433548,90.598,76.84 +433549,91.696,80.6386 +433550,90.946,79.354 +433551,90.16,78.069 +433552,89.338,76.788 +433553,90.307,80.6434 +433554,89.6,79.34 +433555,88.857,78.037 +433556,88.08,76.737 +433557,88.917,80.6471 +433558,88.253,79.326 +433559,87.555,78.005 +433560,86.821,76.687 +433561,87.527,80.6499 +433562,86.907,79.312 +433563,86.253,77.974 +433564,85.564,76.638 +433565,86.136,80.6515 +433566,85.56,79.297 +433567,84.95,77.943 +433568,84.306,76.59 +433569,84.745,80.6521 +433570,84.213,79.282 +433571,83.648,77.912 +433572,83.05,76.543 +433573,83.353,80.6516 +433574,82.866,79.267 +433575,82.347,77.881 +433576,81.794,76.498 +433577,81.96,80.6501 +433578,81.519,79.251 +433579,81.045,77.851 +433580,80.538,76.453 +433581,80.568,80.6474 +433582,80.172,79.235 +433583,79.744,77.822 +433584,79.282,76.41 +433585,79.175,80.6436 +433586,78.825,79.218 +433587,78.442,77.793 +433588,78.027,76.368 +433589,77.781,80.6387 +433590,77.477,79.201 +433591,77.141,77.764 +433592,76.773,76.327 +433593,76.387,80.6327 +433594,76.13,79.184 +433595,75.84,77.735 +433596,75.518,76.288 +433597,74.993,80.6255 +433598,74.782,79.167 +433599,74.539,77.707 +433600,74.264,76.249 +433601,73.599,80.6172 +433602,73.435,79.149 +433603,73.239,77.68 +433604,73.01,76.212 +433605,72.204,80.6077 +433606,72.087,79.13 +433607,71.938,77.653 +433608,71.757,76.176 +433609,70.809,80.5971 +433610,70.739,79.112 +433611,70.637,77.626 +433612,70.503,76.141 +433613,69.414,80.5853 +433614,69.392,79.092 +433615,69.337,77.599 +433616,69.249,76.107 +433617,68.019,80.5723 +433618,68.044,79.073 +433619,68.036,77.573 +433620,67.996,76.075 +433621,66.624,80.5582 +433622,66.696,79.053 +433623,66.736,77.548 +433624,66.743,76.044 +433625,65.229,80.5428 +433626,65.349,79.033 +433627,65.435,77.523 +433628,65.489,76.014 +433629,63.834,80.5263 +433630,64.001,79.012 +433631,64.135,77.498 +433632,64.236,75.985 +433633,62.439,80.5086 +433634,62.653,78.991 +433635,62.834,77.473 +433636,62.982,75.958 +433637,61.044,80.4897 +433638,61.306,78.969 +433639,61.534,77.45 +433640,61.729,75.932 +433641,59.649,80.4696 +433642,59.958,78.947 +433643,60.233,77.426 +433644,60.475,75.907 +433645,58.254,80.4484 +433646,58.611,78.925 +433647,58.933,77.403 +433648,59.221,75.883 +433649,56.86,80.4259 +433650,57.264,78.902 +433651,57.632,77.38 +433652,57.967,75.861 +433653,55.465,80.4022 +433654,55.916,78.879 +433655,56.331,77.358 +433656,56.713,75.84 +433657,54.071,80.3774 +433658,54.569,78.856 +433659,55.031,77.336 +433660,55.458,75.82 +433661,52.677,80.3513 +433662,53.222,78.832 +433663,53.73,77.315 +433664,54.203,75.801 +433665,51.284,80.3241 +433666,51.875,78.807 +433667,52.429,77.294 +433668,52.948,75.784 +433669,49.891,80.2956 +433670,50.529,78.783 +433671,51.128,77.273 +433672,51.692,75.768 +433673,48.498,80.266 +433674,49.182,78.758 +433675,49.827,77.253 +433676,50.436,75.753 +433677,47.106,80.2352 +433678,47.836,78.732 +433679,48.526,77.233 +433680,49.179,75.739 +433681,45.714,80.2032 +433682,46.489,78.706 +433683,47.224,77.214 +433684,47.922,75.726 +433685,44.323,80.17 +433686,45.143,78.68 +433687,45.923,77.195 +433688,46.664,75.715 +433689,42.932,80.1357 +433690,43.798,78.653 +433691,44.621,77.176 +433692,45.406,75.705 +433693,41.542,80.1002 +433694,42.452,78.626 +433695,43.319,77.158 +433696,44.148,75.696 +433697,40.152,80.0635 +433698,41.107,78.599 +433699,42.017,77.14 +433700,42.888,75.688 +433701,38.763,80.0257 +433702,39.762,78.571 +433703,40.715,77.123 +433704,41.628,75.682 +433705,37.375,79.987 +433706,38.417,78.543 +433707,39.413,77.106 +433708,40.367,75.676 +433709,35.987,79.947 +433710,37.072,78.514 +433711,38.11,77.089 +433712,39.106,75.672 +433713,34.6,79.906 +433714,35.728,78.485 +433715,36.807,77.073 +433716,37.844,75.669 +433717,33.214,79.863 +433718,34.384,78.456 +433719,35.504,77.057 +433720,36.581,75.667 +433721,31.829,79.82 +433722,33.04,78.426 +433723,34.201,77.042 +433724,35.317,75.666 +433725,30.445,79.775 +433726,31.697,78.396 +433727,32.897,77.027 +433728,34.052,75.667 +433729,29.061,79.73 +433730,30.353,78.366 +433731,31.593,77.012 +433732,32.787,75.668 +433733,27.679,79.683 +433734,29.011,78.335 +433735,30.289,76.998 +433736,31.52,75.671 +433737,26.297,79.635 +433738,27.668,78.304 +433739,28.984,76.984 +433740,30.253,75.674 +433741,24.917,79.587 +433742,26.326,78.273 +433743,27.68,76.97 +433744,28.985,75.679 +433745,23.537,79.537 +433746,24.984,78.241 +433747,26.374,76.957 +433748,27.715,75.684 +433749,22.159,79.486 +433750,23.643,78.209 +433751,25.069,76.944 +433752,26.445,75.691 +433753,20.781,79.434 +433754,22.302,78.176 +433755,23.763,76.931 +433756,25.174,75.699 +433757,19.405,79.381 +433758,20.961,78.143 +433759,22.457,76.919 +433760,23.901,75.708 +433761,18.03,79.327 +433762,19.621,78.11 +433763,21.151,76.907 +433764,22.628,75.717 +433765,16.655,79.273 +433766,18.281,78.077 +433767,19.844,76.896 +433768,21.353,75.728 +433769,15.283,79.217 +433770,16.942,78.043 +433771,18.537,76.884 +433772,20.077,75.739 +433773,13.911,79.16 +433774,15.603,78.009 +433775,17.229,76.873 +433776,18.801,75.752 +433777,12.541,79.103 +433778,14.264,77.975 +433779,15.922,76.863 +433780,17.522,75.765 +433781,11.171,79.045 +433782,12.926,77.94 +433783,14.613,76.852 +433784,16.243,75.779 +433785,9.8036,78.985 +433786,11.588,77.906 +433787,13.305,76.842 +433788,14.963,75.795 +433789,8.4371,78.925 +433790,10.251,77.87 +433791,11.996,76.833 +433792,13.681,75.81 +433793,7.072,78.864 +433794,8.9142,77.835 +433795,10.686,76.823 +433796,12.398,75.827 +433797,5.7082,78.802 +433798,7.5778,77.799 +433799,9.3761,76.814 +433800,11.113,75.845 +433801,4.3459,78.74 +433802,6.242,77.763 +433803,8.0658,76.805 +433804,9.8277,75.863 +433805,2.9849,78.677 +433806,4.9066,77.727 +433807,6.755,76.796 +433808,8.5407,75.882 +433809,1.6254,78.613 +433810,3.5718,77.691 +433811,5.4439,76.788 +433812,7.2524,75.902 +433813,0.26733,78.548 +433814,2.2374,77.654 +433815,4.1322,76.779 +433816,5.9627,75.922 +433817,358.91,78.482 +433818,0.9035,77.617 +433819,2.8201,76.771 +433820,4.6716,75.944 +433821,357.56,78.416 +433822,359.57,77.58 +433823,1.5076,76.764 +433824,3.3791,75.965 +433825,356.2,78.349 +433826,358.24,77.543 +433827,0.19459,76.756 +433828,2.0852,75.988 +433829,354.85,78.282 +433830,356.9,77.505 +433831,358.88,76.749 +433832,0.78985,76.011 +433833,353.5,78.214 +433834,355.57,77.468 +433835,357.57,76.742 +433836,359.49,76.034 +433837,352.15,78.145 +433838,354.24,77.43 +433839,356.25,76.735 +433840,358.19,76.059 +433841,350.8,78.076 +433842,352.91,77.392 +433843,354.94,76.728 +433844,356.9,76.083 +433845,349.46,78.006 +433846,351.58,77.353 +433847,353.62,76.722 +433848,355.59,76.109 +433849,348.11,77.936 +433850,350.25,77.315 +433851,352.31,76.715 +433852,354.29,76.134 +433853,346.77,77.865 +433854,348.92,77.277 +433855,350.99,76.709 +433856,352.99,76.16 +433857,345.43,77.794 +433858,347.59,77.238 +433859,349.67,76.703 +433860,351.68,76.187 +433861,344.09,77.723 +433862,346.27,77.199 +433863,348.36,76.697 +433864,350.37,76.214 +433865,342.75,77.651 +433866,344.94,77.16 +433867,347.04,76.691 +433868,349.07,76.241 +433869,341.42,77.578 +433870,343.61,77.121 +433871,345.72,76.685 +433872,347.76,76.269 +433873,340.08,77.505 +433874,342.28,77.082 +433875,344.4,76.68 +433876,346.44,76.297 +433877,338.75,77.432 +433878,340.96,77.043 +433879,343.08,76.674 +433880,345.13,76.325 +433881,337.42,77.359 +433882,339.63,77.003 +433883,341.76,76.669 +433884,343.82,76.354 +433885,336.09,77.285 +433886,338.31,76.964 +433887,340.44,76.664 +433888,342.5,76.382 +433889,334.76,77.211 +433890,336.99,76.924 +433891,339.12,76.658 +433892,341.18,76.411 +433893,333.44,77.137 +433894,335.66,76.885 +433895,337.8,76.653 +433896,339.86,76.441 +433897,332.11,77.063 +433898,334.34,76.845 +433899,336.48,76.648 +433900,338.54,76.47 +433901,330.79,76.989 +433902,333.02,76.805 +433903,335.15,76.643 +433904,337.22,76.499 +433905,329.47,76.914 +433906,331.69,76.766 +433907,333.83,76.638 +433908,335.89,76.529 +433909,328.15,76.839 +433910,330.37,76.726 +433911,332.51,76.633 +433912,334.57,76.558 +433913,326.84,76.765 +433914,329.05,76.686 +433915,331.18,76.628 +433916,333.24,76.588 +433917,325.52,76.69 +433918,327.73,76.647 +433919,329.86,76.623 +433920,331.91,76.618 +433921,324.21,76.615 +433922,326.41,76.607 +433923,328.53,76.618 +433924,330.58,76.647 +433925,322.89,76.54 +433926,325.09,76.567 +433927,327.21,76.614 +433928,329.25,76.677 +433929,321.58,76.465 +433930,323.78,76.527 +433931,325.88,76.609 +433932,327.92,76.707 +433933,320.28,76.391 +433934,322.46,76.488 +433935,324.56,76.604 +433936,326.58,76.736 +433937,318.97,76.316 +433938,321.14,76.448 +433939,323.23,76.599 +433940,325.24,76.765 +433941,317.66,76.241 +433942,319.82,76.408 +433943,321.9,76.594 +433944,323.91,76.795 +433945,316.36,76.167 +433946,318.51,76.369 +433947,320.57,76.589 +433948,322.57,76.824 +433949,315.06,76.093 +433950,317.19,76.329 +433951,319.25,76.583 +433952,321.22,76.852 +433953,313.76,76.019 +433954,315.88,76.29 +433955,317.92,76.578 +433956,319.88,76.881 +433957,312.46,75.945 +433958,314.56,76.251 +433959,316.59,76.573 +433960,318.54,76.909 +433961,311.16,75.872 +433962,313.25,76.212 +433963,315.26,76.568 +433964,317.19,76.937 +433965,309.87,75.799 +433966,311.94,76.172 +433967,313.93,76.562 +433968,315.84,76.965 +433969,308.57,75.726 +433970,310.62,76.133 +433971,312.59,76.557 +433972,314.5,76.993 +433973,307.28,75.653 +433974,309.31,76.095 +433975,311.26,76.551 +433976,313.14,77.02 +433977,305.99,75.581 +433978,308,76.056 +433979,309.93,76.545 +433980,311.79,77.046 +433981,304.7,75.509 +433982,306.69,76.017 +433983,308.6,76.539 +433984,310.44,77.072 +433985,303.41,75.438 +433986,305.38,75.979 +433987,307.27,76.533 +433988,309.09,77.098 +433989,302.13,75.367 +433990,304.07,75.94 +433991,305.93,76.527 +433992,307.73,77.124 +433993,300.84,75.297 +433994,302.76,75.902 +433995,304.6,76.52 +433996,306.37,77.149 +433997,299.56,75.227 +433998,301.45,75.864 +433999,303.26,76.514 +434000,305.01,77.173 +434001,298.28,75.158 +434002,300.14,75.827 +434003,301.93,76.507 +434004,303.65,77.197 +434005,297,75.089 +434006,298.83,75.789 +434007,300.59,76.5 +434008,302.29,77.22 +434009,295.72,75.021 +434010,297.52,75.752 +434011,299.26,76.493 +434012,300.93,77.243 +434013,294.44,74.953 +434014,296.22,75.715 +434015,297.92,76.486 +434016,299.57,77.265 +434017,293.16,74.886 +434018,294.91,75.678 +434019,296.59,76.478 +434020,298.2,77.286 +434021,291.89,74.82 +434022,293.6,75.641 +434023,295.25,76.471 +434024,296.83,77.307 +434025,290.62,74.755 +434026,292.3,75.604 +434027,293.91,76.463 +434028,295.47,77.327 +434029,289.34,74.69 +434030,290.99,75.568 +434031,292.57,76.455 +434032,294.1,77.346 +434033,288.07,74.626 +434034,289.69,75.532 +434035,291.24,76.446 +434036,292.73,77.365 +434037,286.8,74.562 +434038,288.38,75.496 +434039,289.9,76.437 +434040,291.36,77.383 +434041,285.54,74.5 +434042,287.08,75.461 +434043,288.56,76.429 +434044,289.98,77.4 +434045,284.27,74.438 +434046,285.77,75.426 +434047,287.22,76.419 +434048,288.61,77.417 +434049,283,74.377 +434050,284.47,75.391 +434051,285.88,76.41 +434052,287.23,77.432 +434053,281.74,74.317 +434054,283.17,75.356 +434055,284.54,76.4 +434056,285.86,77.447 +434057,280.47,74.258 +434058,281.87,75.322 +434059,283.2,76.39 +434060,284.48,77.461 +434061,279.21,74.199 +434062,280.56,75.288 +434063,281.86,76.38 +434064,283.1,77.474 +434065,277.95,74.142 +434066,279.26,75.254 +434067,280.52,76.37 +434068,281.73,77.487 +434069,276.69,74.085 +434070,277.96,75.221 +434071,279.18,76.359 +434072,280.35,77.498 +434073,275.43,74.03 +434074,276.66,75.187 +434075,277.84,76.348 +434076,278.96,77.508 +434077,274.17,73.975 +434078,275.36,75.155 +434079,276.49,76.336 +434080,277.58,77.518 +434081,272.91,73.922 +434082,274.06,75.122 +434083,275.15,76.324 +434084,276.2,77.527 +434085,271.66,73.869 +434086,272.76,75.09 +434087,273.81,76.312 +434088,274.82,77.534 +434089,270.4,73.817 +434090,271.46,75.058 +434091,272.47,76.3 +434092,273.43,77.541 +434093,269.14,73.767 +434094,270.16,75.027 +434095,271.12,76.287 +434096,272.05,77.547 +434097,267.89,73.717 +434098,268.86,74.996 +434099,269.78,76.274 +434100,270.66,77.551 +434101,266.64,73.669 +434102,267.56,74.965 +434103,268.44,76.261 +434104,269.27,77.555 +434105,265.38,73.621 +434106,266.26,74.934 +434107,267.09,76.247 +434108,267.89,77.558 +434109,264.13,73.575 +434110,264.96,74.904 +434111,265.75,76.233 +434112,266.5,77.559 +434113,262.88,73.53 +434114,263.66,74.875 +434115,264.41,76.219 +434116,265.11,77.56 +434117,261.63,73.486 +434118,262.37,74.845 +434119,263.06,76.204 +434120,263.72,77.559 +434121,260.38,73.443 +434122,261.07,74.816 +434123,261.72,76.189 +434124,262.33,77.558 +434125,259.13,73.401 +434126,259.77,74.788 +434127,260.37,76.173 +434128,260.94,77.555 +434129,257.88,73.36 +434130,258.47,74.76 +434131,259.03,76.157 +434132,259.55,77.551 +434133,256.63,73.321 +434134,257.17,74.732 +434135,257.68,76.141 +434136,258.16,77.546 +434137,255.38,73.282 +434138,255.88,74.704 +434139,256.34,76.124 +434140,256.77,77.54 +434141,254.13,73.245 +434142,254.58,74.677 +434143,254.99,76.107 +434144,255.37,77.533 +434145,252.88,73.209 +434146,253.28,74.651 +434147,253.65,76.09 +434148,253.98,77.525 +434149,251.63,73.174 +434150,251.99,74.625 +434151,252.3,76.072 +434152,252.59,77.516 +434153,250.39,73.141 +434154,250.69,74.599 +434155,250.96,76.054 +434156,251.19,77.505 +434157,249.14,73.108 +434158,249.39,74.573 +434159,249.61,76.036 +434160,249.8,77.494 +434161,247.89,73.077 +434162,248.1,74.548 +434163,248.27,76.017 +434164,248.41,77.481 +434165,246.64,73.047 +434166,246.8,74.524 +434167,246.92,75.997 +434168,247.01,77.467 +434169,245.4,73.018 +434170,245.5,74.499 +434171,245.58,75.978 +434172,245.62,77.452 +434173,244.15,72.991 +434174,244.21,74.476 +434175,244.23,75.958 +434176,244.22,77.435 +434177,242.9,72.964 +434178,242.91,74.452 +434179,242.89,75.937 +434180,242.83,77.418 +434181,241.66,72.939 +434182,241.62,74.429 +434183,241.54,75.916 +434184,241.43,77.399 +434185,240.41,72.915 +434186,240.32,74.407 +434187,240.2,75.895 +434188,240.04,77.379 +434189,239.16,72.893 +434190,239.02,74.384 +434191,238.85,75.873 +434192,238.64,77.358 +434193,237.92,72.871 +434194,237.73,74.363 +434195,237.5,75.851 +434196,237.25,77.336 +434197,236.67,72.851 +434198,236.43,74.341 +434199,236.16,75.829 +434200,235.86,77.313 +434201,235.42,72.832 +434202,235.13,74.32 +434203,234.81,75.806 +434204,234.46,77.289 +434205,234.17,72.814 +434206,233.84,74.3 +434207,233.47,75.783 +434208,233.07,77.263 +434209,232.93,72.798 +434210,232.54,74.28 +434211,232.12,75.759 +434212,231.67,77.236 +434213,231.68,72.783 +434214,231.24,74.26 +434215,230.78,75.735 +434216,230.28,77.208 +434217,230.43,72.768 +434218,229.95,74.24 +434219,229.43,75.711 +434220,228.89,77.179 +434221,229.18,72.756 +434222,228.65,74.221 +434223,228.09,75.686 +434224,227.49,77.148 +434225,227.93,72.744 +434226,227.35,74.203 +434227,226.74,75.661 +434228,226.1,77.117 +434229,226.68,72.733 +434230,226.06,74.185 +434231,225.4,75.636 +434232,224.71,77.084 +434233,225.43,72.724 +434234,224.76,74.167 +434235,224.06,75.61 +434236,223.32,77.051 +434237,224.18,72.716 +434238,223.46,74.15 +434239,222.71,75.583 +434240,221.92,77.016 +434241,222.93,72.709 +434242,222.16,74.133 +434243,221.37,75.557 +434244,220.53,76.98 +434245,221.68,72.703 +434246,220.87,74.116 +434247,220.02,75.53 +434248,219.14,76.942 +434249,220.42,72.699 +434250,219.57,74.1 +434251,218.68,75.502 +434252,217.75,76.904 +434253,219.17,72.695 +434254,218.27,74.084 +434255,217.34,75.474 +434256,216.36,76.865 +434257,217.92,72.693 +434258,216.97,74.069 +434259,215.99,75.446 +434260,214.97,76.824 +434261,216.66,72.692 +434262,215.67,74.054 +434263,214.65,75.418 +434264,213.59,76.783 +434265,215.4,72.691 +434266,214.38,74.039 +434267,213.31,75.389 +434268,212.2,76.74 +434269,214.15,72.692 +434270,213.08,74.025 +434271,211.97,75.359 +434272,210.81,76.696 +434273,212.89,72.695 +434274,211.78,74.011 +434275,210.62,75.33 +434276,209.43,76.651 +434277,211.63,72.698 +434278,210.48,73.997 +434279,209.28,75.3 +434280,208.04,76.605 +434281,210.37,72.702 +434282,209.18,73.984 +434283,207.94,75.27 +434284,206.66,76.558 +434285,209.11,72.707 +434286,207.88,73.971 +434287,206.6,75.239 +434288,205.27,76.511 +434289,207.85,72.713 +434290,206.58,73.958 +434291,205.26,75.208 +434292,203.89,76.462 +434293,206.59,72.721 +434294,205.28,73.946 +434295,203.92,75.177 +434296,202.51,76.412 +434297,205.33,72.729 +434298,203.98,73.934 +434299,202.58,75.145 +434300,201.13,76.361 +434301,204.06,72.738 +434302,202.68,73.923 +434303,201.24,75.113 +434304,199.75,76.309 +434305,202.8,72.748 +434306,201.37,73.911 +434307,199.9,75.081 +434308,198.37,76.256 +434309,201.53,72.76 +434310,200.07,73.901 +434311,198.56,75.048 +434312,197,76.202 +434313,200.27,72.772 +434314,198.77,73.89 +434315,197.22,75.015 +434316,195.62,76.147 +434317,199,72.785 +434318,197.47,73.88 +434319,195.89,74.982 +434320,194.24,76.092 +434321,197.73,72.798 +434322,196.16,73.87 +434323,194.55,74.949 +434324,192.87,76.035 +434325,196.46,72.813 +434326,194.86,73.86 +434327,193.21,74.915 +434328,191.5,75.978 +434329,195.18,72.829 +434330,193.56,73.85 +434331,191.87,74.881 +434332,190.13,75.92 +434333,193.91,72.845 +434334,192.25,73.841 +434335,190.54,74.847 +434336,188.76,75.861 +434337,192.64,72.862 +434338,190.95,73.832 +434339,189.2,74.812 +434340,187.39,75.801 +434341,191.36,72.88 +434342,189.64,73.824 +434343,187.87,74.777 +434344,186.02,75.74 +434345,190.08,72.899 +434346,188.34,73.815 +434347,186.53,74.742 +434348,184.66,75.679 +434349,188.81,72.918 +434350,187.03,73.807 +434351,185.2,74.707 +434352,183.29,75.617 +434353,187.53,72.939 +434354,185.72,73.8 +434355,183.86,74.671 +434356,181.93,75.554 +434357,186.24,72.959 +434358,184.42,73.792 +434359,182.53,74.635 +434360,180.57,75.49 +434361,184.96,72.981 +434362,183.11,73.784 +434363,181.2,74.599 +434364,179.21,75.426 +434365,183.68,73.003 +434366,181.8,73.777 +434367,179.86,74.563 +434368,177.85,75.361 +434369,182.39,73.026 +434370,180.49,73.77 +434371,178.53,74.527 +434372,176.49,75.296 +434373,181.11,73.049 +434374,179.19,73.764 +434375,177.2,74.49 +434376,175.13,75.229 +434377,179.82,73.073 +434378,177.88,73.757 +434379,175.87,74.453 +434380,173.78,75.163 +434381,178.53,73.098 +434382,176.57,73.751 +434383,174.54,74.416 +434384,172.43,75.095 +434385,177.24,73.123 +434386,175.26,73.744 +434387,173.21,74.379 +434388,171.07,75.027 +434389,175.94,73.148 +434390,173.95,73.738 +434391,171.88,74.342 +434392,169.73,74.959 +434393,174.65,73.174 +434394,172.64,73.732 +434395,170.55,74.304 +434396,168.38,74.89 +434397,173.35,73.201 +434398,171.32,73.727 +434399,169.22,74.266 +434400,167.03,74.82 +434401,172.06,73.227 +434402,170.01,73.721 +434403,167.89,74.229 +434404,165.69,74.751 +434405,170.76,73.255 +434406,168.7,73.716 +434407,166.57,74.191 +434408,164.34,74.68 +434409,169.46,73.282 +434410,167.39,73.71 +434411,165.24,74.153 +434412,163,74.61 +434413,168.15,73.31 +434414,166.07,73.705 +434415,163.91,74.114 +434416,161.66,74.539 +434417,166.85,73.338 +434418,164.76,73.7 +434419,162.59,74.076 +434420,160.32,74.467 +434421,165.54,73.367 +434422,163.44,73.695 +434423,161.26,74.038 +434424,158.99,74.396 +434425,164.24,73.395 +434426,162.13,73.69 +434427,159.94,73.999 +434428,157.65,74.324 +434429,162.93,73.424 +434430,160.81,73.685 +434431,158.61,73.961 +434432,156.32,74.251 +434433,161.62,73.454 +434434,159.5,73.681 +434435,157.29,73.922 +434436,154.99,74.179 +434437,160.31,73.483 +434438,158.18,73.676 +434439,155.97,73.883 +434440,153.66,74.106 +434441,158.99,73.512 +434442,156.86,73.671 +434443,154.65,73.844 +434444,152.33,74.033 +434445,157.68,73.542 +434446,155.54,73.667 +434447,153.32,73.806 +434448,151.01,73.96 +434449,156.36,73.572 +434450,154.22,73.662 +434451,152,73.767 +434452,149.68,73.887 +434453,155.04,73.601 +434454,152.91,73.658 +434455,150.68,73.728 +434456,148.36,73.814 +434457,153.72,73.631 +434458,151.59,73.653 +434459,149.36,73.689 +434460,147.04,73.74 +434461,152.4,73.661 +434462,150.27,73.649 +434463,148.04,73.65 +434464,145.72,73.667 +434465,151.08,73.691 +434466,148.95,73.644 +434467,146.73,73.611 +434468,144.41,73.594 +434469,149.76,73.72 +434470,147.62,73.64 +434471,145.41,73.572 +434472,143.09,73.52 +434473,148.43,73.75 +434474,146.3,73.635 +434475,144.09,73.534 +434476,141.78,73.447 +434477,147.1,73.779 +434478,144.98,73.631 +434479,142.77,73.495 +434480,140.47,73.374 +434481,145.77,73.809 +434482,143.66,73.626 +434483,141.46,73.456 +434484,139.16,73.3 +434485,144.44,73.838 +434486,142.33,73.621 +434487,140.14,73.417 +434488,137.85,73.227 +434489,143.11,73.867 +434490,141.01,73.617 +434491,138.83,73.379 +434492,136.54,73.154 +434493,141.77,73.896 +434494,139.69,73.612 +434495,137.51,73.34 +434496,135.24,73.082 +434497,140.44,73.924 +434498,138.36,73.607 +434499,136.2,73.301 +434500,133.94,73.009 +434501,139.1,73.953 +434502,137.04,73.602 +434503,134.88,73.263 +434504,132.64,72.937 +434505,137.76,73.981 +434506,135.71,73.597 +434507,133.57,73.225 +434508,131.34,72.865 +434509,136.42,74.008 +434510,134.38,73.592 +434511,132.26,73.186 +434512,130.04,72.793 +434513,135.08,74.036 +434514,133.06,73.587 +434515,130.95,73.148 +434516,128.74,72.721 +434517,133.73,74.063 +434518,131.73,73.582 +434519,129.64,73.11 +434520,127.45,72.65 +434521,132.39,74.089 +434522,130.4,73.576 +434523,128.33,73.072 +434524,126.16,72.58 +434525,131.04,74.115 +434526,129.07,73.571 +434527,127.02,73.034 +434528,124.87,72.509 +434529,129.69,74.141 +434530,127.74,73.565 +434531,125.71,72.997 +434532,123.58,72.439 +434533,128.34,74.166 +434534,126.41,73.559 +434535,124.4,72.959 +434536,122.29,72.37 +434537,126.99,74.191 +434538,125.08,73.553 +434539,123.09,72.922 +434540,121,72.301 +434541,125.64,74.215 +434542,123.75,73.547 +434543,121.78,72.885 +434544,119.72,72.232 +434545,124.29,74.239 +434546,122.42,73.54 +434547,120.48,72.848 +434548,118.44,72.165 +434549,122.93,74.262 +434550,121.09,73.534 +434551,119.17,72.811 +434552,117.16,72.097 +434553,121.57,74.285 +434554,119.76,73.527 +434555,117.86,72.775 +434556,115.88,72.03 +434557,120.21,74.307 +434558,118.43,73.52 +434559,116.56,72.738 +434560,114.6,71.964 +434561,118.85,74.328 +434562,117.09,73.513 +434563,115.25,72.702 +434564,113.32,71.899 +434565,117.49,74.349 +434566,115.76,73.505 +434567,113.95,72.666 +434568,112.05,71.834 +434569,116.13,74.369 +434570,114.43,73.497 +434571,112.64,72.63 +434572,110.78,71.769 +434573,114.77,74.388 +434574,113.09,73.49 +434575,111.34,72.595 +434576,109.5,71.706 +434577,113.4,74.406 +434578,111.76,73.481 +434579,110.04,72.56 +434580,108.23,71.643 +434581,112.04,74.424 +434582,110.42,73.473 +434583,108.73,72.525 +434584,106.96,71.581 +434585,110.67,74.441 +434586,109.09,73.464 +434587,107.43,72.49 +434588,105.7,71.52 +434589,109.3,74.457 +434590,107.75,73.456 +434591,106.13,72.456 +434592,104.43,71.459 +434593,107.93,74.473 +434594,106.41,73.446 +434595,104.83,72.421 +434596,103.17,71.399 +434597,106.56,74.487 +434598,105.08,73.437 +434599,103.53,72.387 +434600,101.9,71.341 +434601,105.18,74.501 +434602,103.74,73.427 +434603,102.23,72.354 +434604,100.64,71.282 +434605,103.81,74.514 +434606,102.4,73.417 +434607,100.93,72.32 +434608,99.378,71.225 +434609,102.44,74.526 +434610,101.06,73.407 +434611,99.627,72.287 +434612,98.118,71.169 +434613,101.06,74.537 +434614,99.726,73.396 +434615,98.327,72.255 +434616,96.859,71.114 +434617,99.683,74.547 +434618,98.388,73.386 +434619,97.028,72.222 +434620,95.601,71.059 +434621,98.305,74.556 +434622,97.049,73.374 +434623,95.73,72.19 +434624,94.344,71.006 +434625,96.926,74.565 +434626,95.709,73.363 +434627,94.432,72.158 +434628,93.088,70.953 +434629,95.546,74.572 +434630,94.37,73.351 +434631,93.134,72.127 +434632,91.834,70.902 +434633,94.166,74.578 +434634,93.03,73.339 +434635,91.836,72.096 +434636,90.58,70.852 +434637,92.784,74.584 +434638,91.69,73.326 +434639,90.539,72.065 +434640,89.327,70.802 +434641,91.401,74.588 +434642,90.35,73.313 +434643,89.242,72.035 +434644,88.076,70.754 +434645,90.017,74.591 +434646,89.009,73.3 +434647,87.946,72.005 +434648,86.825,70.706 +434649,88.633,74.594 +434650,87.668,73.287 +434651,86.65,71.975 +434652,85.575,70.66 +434653,87.248,74.595 +434654,86.327,73.273 +434655,85.354,71.945 +434656,84.325,70.615 +434657,85.862,74.595 +434658,84.985,73.259 +434659,84.058,71.916 +434660,83.077,70.571 +434661,84.475,74.594 +434662,83.643,73.244 +434663,82.763,71.888 +434664,81.829,70.528 +434665,83.087,74.592 +434666,82.301,73.229 +434667,81.467,71.859 +434668,80.582,70.486 +434669,81.699,74.589 +434670,80.959,73.214 +434671,80.173,71.832 +434672,79.336,70.445 +434673,80.31,74.585 +434674,79.617,73.198 +434675,78.878,71.804 +434676,78.09,70.405 +434677,78.921,74.58 +434678,78.275,73.182 +434679,77.583,71.777 +434680,76.845,70.367 +434681,77.531,74.574 +434682,76.932,73.165 +434683,76.289,71.75 +434684,75.6,70.329 +434685,76.14,74.566 +434686,75.589,73.149 +434687,74.995,71.724 +434688,74.356,70.293 +434689,74.749,74.558 +434690,74.246,73.131 +434691,73.701,71.698 +434692,73.113,70.258 +434693,73.358,74.548 +434694,72.903,73.114 +434695,72.407,71.672 +434696,71.869,70.224 +434697,71.966,74.537 +434698,71.56,73.096 +434699,71.114,71.647 +434700,70.627,70.192 +434701,70.573,74.525 +434702,70.216,73.077 +434703,69.82,71.622 +434704,69.384,70.16 +434705,69.181,74.512 +434706,68.873,73.059 +434707,68.527,71.597 +434708,68.142,70.13 +434709,67.788,74.497 +434710,67.529,73.039 +434711,67.234,71.573 +434712,66.9,70.101 +434713,66.394,74.482 +434714,66.185,73.02 +434715,65.941,71.55 +434716,65.658,70.073 +434717,65.001,74.465 +434718,64.842,73 +434719,64.647,71.527 +434720,64.417,70.046 +434721,63.607,74.447 +434722,63.498,72.98 +434723,63.354,71.504 +434724,63.175,70.021 +434725,62.213,74.428 +434726,62.154,72.959 +434727,62.062,71.481 +434728,61.934,69.997 +434729,60.818,74.408 +434730,60.81,72.938 +434731,60.769,71.459 +434732,60.693,69.974 +434733,59.424,74.387 +434734,59.466,72.916 +434735,59.476,71.438 +434736,59.452,69.952 +434737,58.03,74.364 +434738,58.123,72.894 +434739,58.183,71.416 +434740,58.211,69.931 +434741,56.635,74.34 +434742,56.779,72.872 +434743,56.89,71.395 +434744,56.969,69.912 +434745,55.241,74.316 +434746,55.435,72.849 +434747,55.597,71.375 +434748,55.728,69.894 +434749,53.846,74.289 +434750,54.091,72.826 +434751,54.305,71.355 +434752,54.487,69.877 +434753,52.452,74.262 +434754,52.747,72.803 +434755,53.012,71.335 +434756,53.245,69.861 +434757,51.057,74.234 +434758,51.404,72.779 +434759,51.719,71.316 +434760,52.003,69.847 +434761,49.663,74.204 +434762,50.06,72.755 +434763,50.426,71.297 +434764,50.761,69.834 +434765,48.269,74.174 +434766,48.717,72.73 +434767,49.133,71.279 +434768,49.518,69.822 +434769,46.876,74.142 +434770,47.373,72.705 +434771,47.84,71.261 +434772,48.276,69.811 +434773,45.482,74.109 +434774,46.03,72.679 +434775,46.546,71.243 +434776,47.032,69.801 +434777,44.089,74.074 +434778,44.687,72.653 +434779,45.253,71.226 +434780,45.789,69.793 +434781,42.696,74.039 +434782,43.344,72.627 +434783,43.96,71.209 +434784,44.545,69.785 +434785,41.304,74.003 +434786,42.001,72.601 +434787,42.666,71.192 +434788,43.3,69.779 +434789,39.911,73.965 +434790,40.658,72.574 +434791,41.372,71.176 +434792,42.055,69.774 +434793,38.52,73.926 +434794,39.316,72.546 +434795,40.078,71.16 +434796,40.81,69.77 +434797,37.129,73.887 +434798,37.973,72.519 +434799,38.784,71.145 +434800,39.564,69.767 +434801,35.738,73.846 +434802,36.631,72.49 +434803,37.49,71.13 +434804,38.317,69.766 +434805,34.348,73.804 +434806,35.289,72.462 +434807,36.195,71.115 +434808,37.069,69.765 +434809,32.959,73.761 +434810,33.947,72.433 +434811,34.901,71.101 +434812,35.821,69.766 +434813,31.57,73.717 +434814,32.606,72.404 +434815,33.606,71.087 +434816,34.572,69.768 +434817,30.182,73.671 +434818,31.265,72.374 +434819,32.311,71.074 +434820,33.322,69.77 +434821,28.794,73.625 +434822,29.924,72.345 +434823,31.015,71.06 +434824,32.072,69.774 +434825,27.407,73.578 +434826,28.583,72.314 +434827,29.72,71.048 +434828,30.82,69.779 +434829,26.021,73.53 +434830,27.243,72.284 +434831,28.424,71.035 +434832,29.568,69.785 +434833,24.636,73.48 +434834,25.903,72.253 +434835,27.127,71.023 +434836,28.315,69.792 +434837,23.252,73.43 +434838,24.563,72.221 +434839,25.831,71.011 +434840,27.061,69.8 +434841,21.869,73.379 +434842,23.224,72.19 +434843,24.534,71 +434844,25.806,69.809 +434845,20.486,73.327 +434846,21.884,72.158 +434847,23.237,70.988 +434848,24.55,69.819 +434849,19.105,73.273 +434850,20.546,72.126 +434851,21.94,70.977 +434852,23.292,69.829 +434853,17.724,73.219 +434854,19.207,72.093 +434855,20.642,70.967 +434856,22.034,69.841 +434857,16.345,73.164 +434858,17.869,72.06 +434859,19.344,70.957 +434860,20.775,69.854 +434861,14.966,73.109 +434862,16.531,72.027 +434863,18.045,70.947 +434864,19.514,69.867 +434865,13.589,73.052 +434866,15.194,71.994 +434867,16.747,70.937 +434868,18.253,69.882 +434869,12.213,72.994 +434870,13.857,71.96 +434871,15.447,70.927 +434872,16.99,69.897 +434873,10.838,72.936 +434874,12.521,71.926 +434875,14.148,70.918 +434876,15.726,69.913 +434877,9.4642,72.876 +434878,11.185,71.892 +434879,12.848,70.91 +434880,14.461,69.93 +434881,8.0916,72.816 +434882,9.8491,71.857 +434883,11.547,70.901 +434884,13.194,69.948 +434885,6.7202,72.755 +434886,8.5139,71.822 +434887,10.247,70.893 +434888,11.927,69.967 +434889,5.3502,72.694 +434890,7.1791,71.787 +434891,8.9454,70.884 +434892,10.658,69.986 +434893,3.9814,72.631 +434894,5.8448,71.752 +434895,7.6438,70.877 +434896,9.3871,70.006 +434897,2.614,72.568 +434898,4.511,71.716 +434899,6.3417,70.869 +434900,8.1153,70.026 +434901,1.248,72.504 +434902,3.1776,71.681 +434903,5.0392,70.862 +434904,6.8422,70.048 +434905,359.88,72.44 +434906,1.8447,71.645 +434907,3.7362,70.854 +434908,5.5676,70.07 +434909,358.52,72.375 +434910,0.51228,71.608 +434911,2.4328,70.848 +434912,4.2917,70.092 +434913,357.16,72.309 +434914,359.18,71.572 +434915,1.1289,70.841 +434916,3.0143,70.116 +434917,355.8,72.243 +434918,357.85,71.535 +434919,359.82,70.834 +434920,1.7354,70.139 +434921,354.44,72.176 +434922,356.52,71.499 +434923,358.52,70.828 +434924,0.45512,70.164 +434925,353.08,72.108 +434926,355.19,71.462 +434927,357.21,70.822 +434928,359.17,70.189 +434929,351.73,72.04 +434930,353.86,71.424 +434931,355.91,70.816 +434932,357.89,70.214 +434933,350.37,71.971 +434934,352.53,71.387 +434935,354.6,70.81 +434936,356.61,70.24 +434937,349.02,71.902 +434938,351.2,71.349 +434939,353.3,70.804 +434940,355.32,70.266 +434941,347.67,71.833 +434942,349.87,71.312 +434943,351.99,70.799 +434944,354.03,70.293 +434945,346.32,71.763 +434946,348.54,71.274 +434947,350.68,70.793 +434948,352.74,70.32 +434949,344.97,71.692 +434950,347.22,71.236 +434951,349.37,70.788 +434952,351.45,70.348 +434953,343.63,71.622 +434954,345.89,71.198 +434955,348.06,70.783 +434956,350.16,70.376 +434957,342.28,71.55 +434958,344.56,71.16 +434959,346.75,70.778 +434960,348.86,70.404 +434961,340.94,71.479 +434962,343.24,71.121 +434963,345.44,70.773 +434964,347.57,70.432 +434965,339.6,71.407 +434966,341.91,71.083 +434967,344.13,70.768 +434968,346.27,70.461 +434969,338.26,71.335 +434970,340.59,71.044 +434971,342.82,70.763 +434972,344.97,70.49 +434973,336.92,71.263 +434974,339.27,71.006 +434975,341.51,70.758 +434976,343.67,70.519 +434977,335.59,71.19 +434978,337.94,70.967 +434979,340.2,70.754 +434980,342.37,70.549 +434981,334.25,71.117 +434982,336.62,70.928 +434983,338.89,70.749 +434984,341.06,70.578 +434985,332.92,71.044 +434986,335.3,70.89 +434987,337.57,70.744 +434988,339.76,70.608 +434989,331.59,70.971 +434990,333.98,70.851 +434991,336.26,70.74 +434992,338.45,70.638 +434993,330.26,70.898 +434994,332.66,70.812 +434995,334.94,70.735 +434996,337.14,70.668 +434997,328.94,70.825 +434998,331.34,70.773 +434999,333.63,70.731 +435000,335.83,70.697 +435001,327.61,70.751 +435002,330.02,70.734 +435003,332.31,70.726 +435004,334.52,70.727 +435005,326.29,70.678 +435006,328.7,70.695 +435007,331,70.722 +435008,333.2,70.757 +435009,324.97,70.604 +435010,327.38,70.656 +435011,329.68,70.717 +435012,331.89,70.787 +435013,323.65,70.531 +435014,326.06,70.617 +435015,328.36,70.713 +435016,330.57,70.817 +435017,322.33,70.458 +435018,324.75,70.578 +435019,327.05,70.708 +435020,329.25,70.847 +435021,321.02,70.384 +435022,323.43,70.54 +435023,325.73,70.704 +435024,327.93,70.876 +435025,319.7,70.311 +435026,322.11,70.501 +435027,324.41,70.699 +435028,326.61,70.906 +435029,318.39,70.238 +435030,320.8,70.462 +435031,323.09,70.695 +435032,325.28,70.935 +435033,317.08,70.165 +435034,319.48,70.423 +435035,321.77,70.69 +435036,323.96,70.964 +435037,315.77,70.092 +435038,318.17,70.384 +435039,320.45,70.685 +435040,322.63,70.993 +435041,314.47,70.02 +435042,316.86,70.346 +435043,319.13,70.68 +435044,321.3,71.021 +435045,313.16,69.948 +435046,315.54,70.307 +435047,317.81,70.675 +435048,319.97,71.05 +435049,311.86,69.876 +435050,314.23,70.269 +435051,316.48,70.67 +435052,318.64,71.077 +435053,310.56,69.804 +435054,312.92,70.231 +435055,315.16,70.665 +435056,317.3,71.105 +435057,309.26,69.733 +435058,311.61,70.192 +435059,313.84,70.659 +435060,315.97,71.132 +435061,307.97,69.661 +435062,310.3,70.154 +435063,312.52,70.654 +435064,314.63,71.159 +435065,306.67,69.591 +435066,308.99,70.116 +435067,311.19,70.648 +435068,313.29,71.186 +435069,305.38,69.521 +435070,307.68,70.078 +435071,309.87,70.643 +435072,311.95,71.212 +435073,304.09,69.451 +435074,306.37,70.041 +435075,308.54,70.637 +435076,310.61,71.237 +435077,302.8,69.381 +435078,305.06,70.003 +435079,307.21,70.631 +435080,309.27,71.262 +435081,301.51,69.312 +435082,303.75,69.966 +435083,305.89,70.625 +435084,307.92,71.287 +435085,300.22,69.244 +435086,302.45,69.929 +435087,304.56,70.618 +435088,306.58,71.311 +435089,298.94,69.176 +435090,301.14,69.892 +435091,303.23,70.611 +435092,305.23,71.334 +435093,297.65,69.109 +435094,299.84,69.855 +435095,301.91,70.605 +435096,303.88,71.357 +435097,296.37,69.042 +435098,298.53,69.818 +435099,300.58,70.598 +435100,302.53,71.379 +435101,295.09,68.976 +435102,297.23,69.782 +435103,299.25,70.59 +435104,301.17,71.401 +435105,293.82,68.911 +435106,295.92,69.745 +435107,297.92,70.583 +435108,299.82,71.422 +435109,292.54,68.846 +435110,294.62,69.709 +435111,296.59,70.575 +435112,298.46,71.442 +435113,291.26,68.782 +435114,293.31,69.674 +435115,295.26,70.567 +435116,297.11,71.462 +435117,289.99,68.718 +435118,292.01,69.638 +435119,293.93,70.559 +435120,295.75,71.48 +435121,288.72,68.656 +435122,290.71,69.603 +435123,292.6,70.551 +435124,294.39,71.499 +435125,287.45,68.594 +435126,289.41,69.568 +435127,291.26,70.542 +435128,293.03,71.516 +435129,286.18,68.533 +435130,288.11,69.533 +435131,289.93,70.533 +435132,291.66,71.532 +435133,284.92,68.472 +435134,286.81,69.498 +435135,288.6,70.524 +435136,290.3,71.548 +435137,283.65,68.413 +435138,285.51,69.464 +435139,287.27,70.515 +435140,288.93,71.563 +435141,282.39,68.354 +435142,284.21,69.43 +435143,285.93,70.505 +435144,287.57,71.577 +435145,281.12,68.296 +435146,282.91,69.396 +435147,284.6,70.495 +435148,286.2,71.59 +435149,279.86,68.239 +435150,281.61,69.363 +435151,283.26,70.484 +435152,284.83,71.602 +435153,278.6,68.183 +435154,280.31,69.33 +435155,281.93,70.474 +435156,283.46,71.614 +435157,277.34,68.128 +435158,279.01,69.297 +435159,280.59,70.463 +435160,282.09,71.624 +435161,276.09,68.074 +435162,277.72,69.264 +435163,279.26,70.452 +435164,280.72,71.634 +435165,274.83,68.02 +435166,276.42,69.232 +435167,277.92,70.44 +435168,279.34,71.642 +435169,273.58,67.968 +435170,275.12,69.2 +435171,276.58,70.428 +435172,277.97,71.65 +435173,272.32,67.917 +435174,273.83,69.169 +435175,275.25,70.416 +435176,276.59,71.657 +435177,271.07,67.867 +435178,272.53,69.137 +435179,273.91,70.403 +435180,275.21,71.662 +435181,269.82,67.817 +435182,271.24,69.106 +435183,272.57,70.39 +435184,273.84,71.667 +435185,268.57,67.769 +435186,269.94,69.076 +435187,271.23,70.377 +435188,272.46,71.67 +435189,267.32,67.722 +435190,268.65,69.046 +435191,269.9,70.363 +435192,271.08,71.673 +435193,266.07,67.676 +435194,267.35,69.016 +435195,268.56,70.349 +435196,269.7,71.674 +435197,264.82,67.631 +435198,266.06,68.986 +435199,267.22,70.335 +435200,268.31,71.675 +435201,263.58,67.587 +435202,264.76,68.957 +435203,265.88,70.32 +435204,266.93,71.674 +435205,262.33,67.544 +435206,263.47,68.928 +435207,264.54,70.305 +435208,265.55,71.672 +435209,261.09,67.502 +435210,262.18,68.9 +435211,263.2,70.29 +435212,264.16,71.67 +435213,259.85,67.462 +435214,260.89,68.872 +435215,261.86,70.274 +435216,262.78,71.666 +435217,258.6,67.423 +435218,259.59,68.844 +435219,260.52,70.257 +435220,261.39,71.661 +435221,257.36,67.384 +435222,258.3,68.817 +435223,259.18,70.241 +435224,260,71.654 +435225,256.12,67.347 +435226,257.01,68.79 +435227,257.84,70.224 +435228,258.62,71.647 +435229,254.88,67.311 +435230,255.72,68.763 +435231,256.5,70.206 +435232,257.23,71.639 +435233,253.64,67.277 +435234,254.43,68.737 +435235,255.16,70.189 +435236,255.84,71.629 +435237,252.4,67.243 +435238,253.14,68.712 +435239,253.82,70.17 +435240,254.45,71.618 +435241,251.16,67.211 +435242,251.84,68.686 +435243,252.48,70.152 +435244,253.06,71.606 +435245,249.92,67.179 +435246,250.55,68.661 +435247,251.13,70.133 +435248,251.67,71.593 +435249,248.68,67.15 +435250,249.26,68.637 +435251,249.79,70.113 +435252,250.28,71.579 +435253,247.45,67.121 +435254,247.97,68.612 +435255,248.45,70.094 +435256,248.89,71.563 +435257,246.21,67.093 +435258,246.68,68.589 +435259,247.11,70.073 +435260,247.49,71.546 +435261,244.97,67.067 +435262,245.39,68.565 +435263,245.77,70.053 +435264,246.1,71.529 +435265,243.73,67.042 +435266,244.1,68.542 +435267,244.42,70.032 +435268,244.71,71.509 +435269,242.5,67.018 +435270,242.81,68.52 +435271,243.08,70.01 +435272,243.31,71.489 +435273,241.26,66.995 +435274,241.52,68.497 +435275,241.74,69.989 +435276,241.92,71.468 +435277,240.03,66.974 +435278,240.23,68.476 +435279,240.4,69.966 +435280,240.53,71.445 +435281,238.79,66.954 +435282,238.94,68.454 +435283,239.06,69.944 +435284,239.13,71.421 +435285,237.55,66.935 +435286,237.65,68.433 +435287,237.71,69.921 +435288,237.74,71.396 +435289,236.32,66.917 +435290,236.36,68.413 +435291,236.37,69.897 +435292,236.35,71.37 +435293,235.08,66.9 +435294,235.07,68.392 +435295,235.03,69.873 +435296,234.95,71.343 +435297,233.85,66.885 +435298,233.78,68.372 +435299,233.69,69.849 +435300,233.56,71.314 +435301,232.61,66.871 +435302,232.49,68.353 +435303,232.34,69.825 +435304,232.16,71.284 +435305,231.37,66.858 +435306,231.2,68.334 +435307,231,69.8 +435308,230.77,71.253 +435309,230.14,66.846 +435310,229.91,68.315 +435311,229.66,69.774 +435312,229.37,71.221 +435313,228.9,66.836 +435314,228.62,68.297 +435315,228.32,69.748 +435316,227.98,71.188 +435317,227.66,66.827 +435318,227.33,68.279 +435319,226.97,69.722 +435320,226.59,71.153 +435321,226.43,66.818 +435322,226.04,68.262 +435323,225.63,69.695 +435324,225.19,71.118 +435325,225.19,66.812 +435326,224.75,68.245 +435327,224.29,69.668 +435328,223.8,71.081 +435329,223.95,66.806 +435330,223.46,68.228 +435331,222.95,69.641 +435332,222.4,71.043 +435333,222.71,66.801 +435334,222.17,68.212 +435335,221.61,69.613 +435336,221.01,71.004 +435337,221.47,66.798 +435338,220.88,68.196 +435339,220.27,69.585 +435340,219.62,70.964 +435341,220.23,66.795 +435342,219.59,68.18 +435343,218.92,69.556 +435344,218.23,70.922 +435345,218.99,66.794 +435346,218.3,68.165 +435347,217.58,69.527 +435348,216.83,70.88 +435349,217.75,66.794 +435350,217.01,68.15 +435351,216.24,69.498 +435352,215.44,70.836 +435353,216.51,66.795 +435354,215.72,68.136 +435355,214.9,69.468 +435356,214.05,70.791 +435357,215.27,66.797 +435358,214.43,68.121 +435359,213.56,69.438 +435360,212.66,70.746 +435361,214.03,66.8 +435362,213.14,68.108 +435363,212.22,69.408 +435364,211.27,70.699 +435365,212.79,66.805 +435366,211.85,68.094 +435367,210.88,69.377 +435368,209.88,70.651 +435369,211.54,66.81 +435370,210.55,68.081 +435371,209.54,69.346 +435372,208.49,70.602 +435373,210.3,66.816 +435374,209.26,68.068 +435375,208.2,69.314 +435376,207.1,70.552 +435377,209.05,66.823 +435378,207.97,68.056 +435379,206.86,69.282 +435380,205.71,70.501 +435381,207.8,66.832 +435382,206.68,68.044 +435383,205.52,69.25 +435384,204.33,70.449 +435385,206.56,66.841 +435386,205.38,68.032 +435387,204.18,69.218 +435388,202.94,70.396 +435389,205.31,66.851 +435390,204.09,68.021 +435391,202.84,69.185 +435392,201.56,70.342 +435393,204.06,66.863 +435394,202.8,68.009 +435395,201.5,69.151 +435396,200.17,70.288 +435397,202.81,66.875 +435398,201.5,67.999 +435399,200.17,69.118 +435400,198.79,70.232 +435401,201.56,66.888 +435402,200.21,67.988 +435403,198.83,69.084 +435404,197.41,70.175 +435405,200.3,66.902 +435406,198.92,67.978 +435407,197.49,69.05 +435408,196.02,70.117 +435409,199.05,66.917 +435410,197.62,67.968 +435411,196.15,69.016 +435412,194.64,70.059 +435413,197.8,66.932 +435414,196.33,67.958 +435415,194.82,68.981 +435416,193.26,69.999 +435417,196.54,66.949 +435418,195.03,67.949 +435419,193.48,68.946 +435420,191.88,69.939 +435421,195.28,66.966 +435422,193.73,67.939 +435423,192.14,68.911 +435424,190.51,69.878 +435425,194.02,66.984 +435426,192.44,67.931 +435427,190.81,68.875 +435428,189.13,69.816 +435429,192.76,67.003 +435430,191.14,67.922 +435431,189.47,68.839 +435432,187.76,69.754 +435433,191.5,67.023 +435434,189.84,67.914 +435435,188.14,68.803 +435436,186.38,69.69 +435437,190.24,67.043 +435438,188.55,67.905 +435439,186.81,68.767 +435440,185.01,69.626 +435441,188.98,67.064 +435442,187.25,67.897 +435443,185.47,68.73 +435444,183.64,69.561 +435445,187.71,67.086 +435446,185.95,67.89 +435447,184.14,68.693 +435448,182.27,69.495 +435449,186.44,67.108 +435450,184.65,67.882 +435451,182.81,68.656 +435452,180.9,69.429 +435453,185.18,67.131 +435454,183.35,67.875 +435455,181.47,68.619 +435456,179.53,69.362 +435457,183.91,67.155 +435458,182.05,67.868 +435459,180.14,68.581 +435460,178.16,69.295 +435461,182.64,67.179 +435462,180.75,67.861 +435463,178.81,68.544 +435464,176.8,69.226 +435465,181.36,67.204 +435466,179.45,67.854 +435467,177.48,68.506 +435468,175.44,69.158 +435469,180.09,67.229 +435470,178.15,67.848 +435471,176.15,68.468 +435472,174.07,69.088 +435473,178.82,67.255 +435474,176.85,67.841 +435475,174.82,68.429 +435476,172.71,69.018 +435477,177.54,67.281 +435478,175.55,67.835 +435479,173.49,68.391 +435480,171.35,68.948 +435481,176.26,67.307 +435482,174.25,67.829 +435483,172.16,68.352 +435484,170,68.877 +435485,174.98,67.334 +435486,172.94,67.823 +435487,170.83,68.313 +435488,168.64,68.806 +435489,173.7,67.362 +435490,171.64,67.817 +435491,169.51,68.275 +435492,167.29,68.734 +435493,172.42,67.39 +435494,170.33,67.811 +435495,168.18,68.235 +435496,165.93,68.662 +435497,171.13,67.418 +435498,169.03,67.806 +435499,166.85,68.196 +435500,164.58,68.589 +435501,169.85,67.446 +435502,167.72,67.8 +435503,165.53,68.157 +435504,163.23,68.516 +435505,168.56,67.475 +435506,166.42,67.795 +435507,164.2,68.118 +435508,161.89,68.443 +435509,167.27,67.504 +435510,165.11,67.789 +435511,162.88,68.078 +435512,160.54,68.369 +435513,165.98,67.533 +435514,163.81,67.784 +435515,161.55,68.038 +435516,159.2,68.295 +435517,164.68,67.562 +435518,162.5,67.779 +435519,160.23,67.999 +435520,157.86,68.221 +435521,163.39,67.592 +435522,161.19,67.774 +435523,158.9,67.959 +435524,156.51,68.147 +435525,162.09,67.622 +435526,159.88,67.769 +435527,157.58,67.919 +435528,155.18,68.072 +435529,160.8,67.651 +435530,158.57,67.764 +435531,156.26,67.879 +435532,153.84,67.997 +435533,159.5,67.681 +435534,157.26,67.759 +435535,154.94,67.839 +435536,152.5,67.923 +435537,158.2,67.711 +435538,155.95,67.754 +435539,153.62,67.799 +435540,151.17,67.848 +435541,156.89,67.741 +435542,154.64,67.749 +435543,152.3,67.759 +435544,149.84,67.773 +435545,155.59,67.771 +435546,153.33,67.743 +435547,150.98,67.719 +435548,148.51,67.697 +435549,154.28,67.801 +435550,152.02,67.738 +435551,149.66,67.679 +435552,147.18,67.622 +435553,152.97,67.831 +435554,150.71,67.733 +435555,148.34,67.639 +435556,145.86,67.547 +435557,151.66,67.861 +435558,149.39,67.728 +435559,147.02,67.599 +435560,144.53,67.472 +435561,150.35,67.89 +435562,148.08,67.723 +435563,145.71,67.559 +435564,143.21,67.397 +435565,149.04,67.92 +435566,146.77,67.718 +435567,144.39,67.519 +435568,141.89,67.322 +435569,147.72,67.949 +435570,145.45,67.713 +435571,143.07,67.479 +435572,140.57,67.247 +435573,146.41,67.978 +435574,144.14,67.707 +435575,141.76,67.439 +435576,139.26,67.172 +435577,145.09,68.007 +435578,142.82,67.702 +435579,140.44,67.399 +435580,137.94,67.098 +435581,143.77,68.036 +435582,141.5,67.697 +435583,139.13,67.359 +435584,136.63,67.023 +435585,142.45,68.064 +435586,140.19,67.691 +435587,137.82,67.319 +435588,135.32,66.949 +435589,141.12,68.092 +435590,138.87,67.685 +435591,136.51,67.279 +435592,134.01,66.875 +435593,139.8,68.12 +435594,137.55,67.68 +435595,135.19,67.24 +435596,132.7,66.802 +435597,138.47,68.148 +435598,136.23,67.674 +435599,133.88,67.2 +435600,131.4,66.728 +435601,137.14,68.175 +435602,134.91,67.668 +435603,132.57,67.161 +435604,130.1,66.655 +435605,135.81,68.201 +435606,133.59,67.662 +435607,131.26,67.122 +435608,128.8,66.583 +435609,134.48,68.227 +435610,132.27,67.655 +435611,129.95,67.083 +435612,127.5,66.51 +435613,133.15,68.253 +435614,130.95,67.649 +435615,128.64,67.044 +435616,126.2,66.439 +435617,131.81,68.278 +435618,129.63,67.642 +435619,127.34,67.005 +435620,124.91,66.367 +435621,130.47,68.303 +435622,128.31,67.635 +435623,126.03,66.966 +435624,123.61,66.296 +435625,129.14,68.327 +435626,126.99,67.628 +435627,124.72,66.928 +435628,122.32,66.226 +435629,127.8,68.35 +435630,125.66,67.621 +435631,123.41,66.889 +435632,121.03,66.156 +435633,126.45,68.373 +435634,124.34,67.614 +435635,122.11,66.851 +435636,119.74,66.087 +435637,125.11,68.396 +435638,123.01,67.606 +435639,120.8,66.813 +435640,118.46,66.018 +435641,123.77,68.417 +435642,121.69,67.598 +435643,119.5,66.775 +435644,117.17,65.95 +435645,122.42,68.438 +435646,120.36,67.59 +435647,118.19,66.738 +435648,115.89,65.882 +435649,121.07,68.459 +435650,119.04,67.582 +435651,116.89,66.7 +435652,114.61,65.816 +435653,119.72,68.478 +435654,117.71,67.573 +435655,115.59,66.663 +435656,113.33,65.749 +435657,118.37,68.497 +435658,116.39,67.564 +435659,114.29,66.626 +435660,112.06,65.684 +435661,117.02,68.515 +435662,115.06,67.555 +435663,112.98,66.589 +435664,110.78,65.619 +435665,115.66,68.533 +435666,113.73,67.546 +435667,111.68,66.553 +435668,109.51,65.555 +435669,114.31,68.549 +435670,112.4,67.536 +435671,110.38,66.517 +435672,108.24,65.492 +435673,112.95,68.565 +435674,111.07,67.526 +435675,109.08,66.481 +435676,106.97,65.43 +435677,111.59,68.58 +435678,109.74,67.516 +435679,107.78,66.445 +435680,105.7,65.368 +435681,110.23,68.594 +435682,108.41,67.506 +435683,106.49,66.41 +435684,104.43,65.307 +435685,108.87,68.607 +435686,107.08,67.495 +435687,105.19,66.375 +435688,103.17,65.247 +435689,107.51,68.62 +435690,105.75,67.484 +435691,103.89,66.34 +435692,101.9,65.188 +435693,106.14,68.631 +435694,104.42,67.473 +435695,102.59,66.305 +435696,100.64,65.13 +435697,104.78,68.641 +435698,103.09,67.461 +435699,101.29,66.271 +435700,99.382,65.073 +435701,103.41,68.651 +435702,101.76,67.449 +435703,99.998,66.237 +435704,98.123,65.017 +435705,102.05,68.659 +435706,100.42,67.436 +435707,98.702,66.203 +435708,96.865,64.961 +435709,100.68,68.667 +435710,99.092,67.424 +435711,97.407,66.17 +435712,95.609,64.907 +435713,99.306,68.673 +435714,97.758,67.411 +435715,96.112,66.137 +435716,94.355,64.854 +435717,97.934,68.679 +435718,96.424,67.397 +435719,94.818,66.105 +435720,93.102,64.801 +435721,96.562,68.683 +435722,95.09,67.384 +435723,93.523,66.072 +435724,91.85,64.75 +435725,95.188,68.686 +435726,93.756,67.369 +435727,92.23,66.04 +435728,90.599,64.7 +435729,93.813,68.689 +435730,92.421,67.355 +435731,90.937,66.009 +435732,89.35,64.651 +435733,92.437,68.69 +435734,91.085,67.34 +435735,89.644,65.977 +435736,88.102,64.603 +435737,91.06,68.69 +435738,89.75,67.325 +435739,88.351,65.946 +435740,86.855,64.556 +435741,89.682,68.689 +435742,88.414,67.309 +435743,87.059,65.916 +435744,85.609,64.51 +435745,88.303,68.687 +435746,87.077,67.293 +435747,85.768,65.886 +435748,84.365,64.465 +435749,86.923,68.684 +435750,85.741,67.277 +435751,84.477,65.856 +435752,83.121,64.422 +435753,85.542,68.68 +435754,84.404,67.26 +435755,83.186,65.826 +435756,81.879,64.379 +435757,84.16,68.674 +435758,83.066,67.243 +435759,81.895,65.797 +435760,80.637,64.338 +435761,82.777,68.667 +435762,81.729,67.225 +435763,80.605,65.768 +435764,79.397,64.298 +435765,81.394,68.66 +435766,80.391,67.207 +435767,79.315,65.74 +435768,78.157,64.259 +435769,80.009,68.651 +435770,79.053,67.189 +435771,78.025,65.712 +435772,76.918,64.221 +435773,78.624,68.64 +435774,77.715,67.17 +435775,76.736,65.685 +435776,75.681,64.184 +435777,77.238,68.629 +435778,76.376,67.151 +435779,75.447,65.657 +435780,74.443,64.149 +435781,75.851,68.617 +435782,75.037,67.132 +435783,74.158,65.631 +435784,73.207,64.115 +435785,74.464,68.603 +435786,73.698,67.112 +435787,72.87,65.604 +435788,71.971,64.082 +435789,73.075,68.588 +435790,72.359,67.091 +435791,71.581,65.578 +435792,70.736,64.05 +435793,71.687,68.572 +435794,71.02,67.07 +435795,70.293,65.553 +435796,69.502,64.02 +435797,70.297,68.554 +435798,69.68,67.049 +435799,69.005,65.527 +435800,68.268,63.99 +435801,68.908,68.536 +435802,68.34,67.027 +435803,67.718,65.503 +435804,67.035,63.962 +435805,67.517,68.516 +435806,67,67.005 +435807,66.43,65.478 +435808,65.802,63.936 +435809,66.126,68.495 +435810,65.66,66.983 +435811,65.143,65.454 +435812,64.57,63.91 +435813,64.735,68.472 +435814,64.32,66.96 +435815,63.856,65.431 +435816,63.338,63.886 +435817,63.343,68.449 +435818,62.98,66.937 +435819,62.569,65.408 +435820,62.106,63.863 +435821,61.951,68.424 +435822,61.639,66.913 +435823,61.282,65.385 +435824,60.875,63.841 +435825,60.559,68.398 +435826,60.299,66.889 +435827,59.995,65.362 +435828,59.644,63.821 +435829,59.166,68.371 +435830,58.958,66.864 +435831,58.708,65.34 +435832,58.413,63.801 +435833,57.773,68.342 +435834,57.618,66.839 +435835,57.422,65.319 +435836,57.182,63.783 +435837,56.379,68.313 +435838,56.277,66.813 +435839,56.135,65.298 +435840,55.952,63.766 +435841,54.986,68.282 +435842,54.936,66.788 +435843,54.849,65.277 +435844,54.721,63.751 +435845,53.592,68.25 +435846,53.595,66.761 +435847,53.562,65.257 +435848,53.491,63.737 +435849,52.198,68.216 +435850,52.255,66.735 +435851,52.276,65.237 +435852,52.261,63.723 +435853,50.805,68.182 +435854,50.914,66.707 +435855,50.99,65.217 +435856,51.03,63.712 +435857,49.411,68.146 +435858,49.573,66.68 +435859,49.703,65.198 +435860,49.8,63.701 +435861,48.017,68.109 +435862,48.232,66.652 +435863,48.417,65.179 +435864,48.569,63.691 +435865,46.623,68.071 +435866,46.892,66.623 +435867,47.13,65.161 +435868,47.338,63.683 +435869,45.229,68.031 +435870,45.551,66.595 +435871,45.844,65.143 +435872,46.107,63.676 +435873,43.835,67.991 +435874,44.211,66.566 +435875,44.558,65.125 +435876,44.875,63.67 +435877,42.442,67.949 +435878,42.87,66.536 +435879,43.271,65.108 +435880,43.644,63.666 +435881,41.048,67.906 +435882,41.53,66.506 +435883,41.984,65.091 +435884,42.412,63.662 +435885,39.655,67.862 +435886,40.19,66.476 +435887,40.698,65.074 +435888,41.179,63.66 +435889,38.262,67.817 +435890,38.849,66.445 +435891,39.411,65.058 +435892,39.946,63.659 +435893,36.869,67.771 +435894,37.509,66.414 +435895,38.124,65.042 +435896,38.713,63.659 +435897,35.477,67.723 +435898,36.17,66.382 +435899,36.837,65.027 +435900,37.479,63.66 +435901,34.085,67.675 +435902,34.83,66.35 +435903,35.549,65.012 +435904,36.244,63.662 +435905,32.694,67.625 +435906,33.49,66.318 +435907,34.262,64.997 +435908,35.009,63.665 +435909,31.303,67.574 +435910,32.151,66.285 +435911,32.974,64.983 +435912,33.773,63.67 +435913,29.912,67.522 +435914,30.812,66.252 +435915,31.687,64.969 +435916,32.537,63.675 +435917,28.522,67.47 +435918,29.473,66.219 +435919,30.399,64.955 +435920,31.299,63.681 +435921,27.132,67.416 +435922,28.135,66.185 +435923,29.11,64.942 +435924,30.061,63.689 +435925,25.744,67.361 +435926,26.796,66.151 +435927,27.822,64.929 +435928,28.823,63.697 +435929,24.355,67.305 +435930,25.458,66.116 +435931,26.533,64.916 +435932,27.583,63.707 +435933,22.968,67.248 +435934,24.12,66.081 +435935,25.244,64.904 +435936,26.342,63.717 +435937,21.581,67.19 +435938,22.782,66.046 +435939,23.955,64.892 +435940,25.101,63.729 +435941,20.195,67.131 +435942,21.445,66.011 +435943,22.666,64.88 +435944,23.859,63.741 +435945,18.81,67.071 +435946,20.108,65.975 +435947,21.376,64.869 +435948,22.615,63.755 +435949,17.425,67.01 +435950,18.772,65.939 +435951,20.086,64.858 +435952,21.371,63.769 +435953,16.042,66.948 +435954,17.435,65.902 +435955,18.795,64.847 +435956,20.125,63.784 +435957,14.659,66.886 +435958,16.099,65.865 +435959,17.505,64.836 +435960,18.879,63.8 +435961,13.277,66.822 +435962,14.764,65.828 +435963,16.213,64.826 +435964,17.631,63.817 +435965,11.896,66.758 +435966,13.428,65.791 +435967,14.922,64.816 +435968,16.382,63.834 +435969,10.517,66.693 +435970,12.093,65.753 +435971,13.63,64.806 +435972,15.132,63.853 +435973,9.1381,66.627 +435974,10.759,65.715 +435975,12.338,64.797 +435976,13.881,63.872 +435977,7.7605,66.56 +435978,9.4247,65.677 +435979,11.046,64.787 +435980,12.628,63.892 +435981,6.384,66.492 +435982,8.091,65.639 +435983,9.7527,64.778 +435984,11.375,63.912 +435985,5.0087,66.424 +435986,6.7577,65.6 +435987,8.4594,64.769 +435988,10.119,63.934 +435989,3.6346,66.355 +435990,5.4249,65.561 +435991,7.1657,64.761 +435992,8.863,63.956 +435993,2.2618,66.285 +435994,4.0925,65.522 +435995,5.8715,64.752 +435996,7.6053,63.978 +435997,0.89017,66.215 +435998,2.7605,65.482 +435999,4.577,64.744 +436000,6.3461,64.002 +436001,359.52,66.144 +436002,1.4291,65.443 +436003,3.2819,64.736 +436004,5.0855,64.026 +436005,358.15,66.072 +436006,0.09806,65.403 +436007,1.9865,64.728 +436008,3.8235,64.05 +436009,356.78,66 +436010,358.77,65.363 +436011,0.69054,64.721 +436012,2.5601,64.075 +436013,355.42,65.927 +436014,357.44,65.323 +436015,359.39,64.713 +436016,1.2952,64.101 +436017,354.05,65.854 +436018,356.11,65.282 +436019,358.1,64.706 +436020,0.028746,64.127 +436021,352.69,65.78 +436022,354.78,65.242 +436023,356.8,64.699 +436024,358.76,64.153 +436025,351.33,65.705 +436026,353.45,65.201 +436027,355.5,64.692 +436028,357.49,64.18 +436029,349.97,65.63 +436030,352.12,65.16 +436031,354.2,64.685 +436032,356.22,64.207 +436033,348.61,65.555 +436034,350.8,65.119 +436035,352.9,64.678 +436036,354.95,64.235 +436037,347.25,65.479 +436038,349.47,65.077 +436039,351.61,64.671 +436040,353.67,64.263 +436041,345.9,65.403 +436042,348.14,65.036 +436043,350.31,64.665 +436044,352.4,64.292 +436045,344.54,65.327 +436046,346.82,64.994 +436047,349.01,64.658 +436048,351.12,64.32 +436049,343.19,65.25 +436050,345.49,64.953 +436051,347.7,64.652 +436052,349.84,64.349 +436053,341.84,65.173 +436054,344.17,64.911 +436055,346.4,64.646 +436056,348.56,64.378 +436057,340.49,65.095 +436058,342.84,64.869 +436059,345.1,64.64 +436060,347.28,64.408 +436061,339.14,65.017 +436062,341.52,64.827 +436063,343.8,64.633 +436064,345.99,64.437 +436065,337.8,64.939 +436066,340.2,64.785 +436067,342.5,64.627 +436068,344.71,64.467 +436069,336.45,64.861 +436070,338.87,64.743 +436071,341.19,64.621 +436072,343.42,64.497 +436073,335.11,64.783 +436074,337.55,64.701 +436075,339.89,64.615 +436076,342.13,64.527 +436077,333.77,64.705 +436078,336.23,64.659 +436079,338.58,64.609 +436080,340.84,64.557 +436081,332.43,64.626 +436082,334.91,64.616 +436083,337.28,64.603 +436084,339.55,64.587 +436085,331.1,64.547 +436086,333.59,64.574 +436087,335.97,64.597 +436088,338.25,64.617 +436089,329.76,64.469 +436090,332.27,64.532 +436091,334.67,64.591 +436092,336.96,64.647 +436093,328.43,64.39 +436094,330.95,64.489 +436095,333.36,64.585 +436096,335.66,64.678 +436097,327.1,64.311 +436098,329.64,64.447 +436099,332.05,64.579 +436100,334.36,64.707 +436101,325.77,64.233 +436102,328.32,64.405 +436103,330.74,64.573 +436104,333.06,64.737 +436105,324.44,64.154 +436106,327,64.362 +436107,329.43,64.566 +436108,331.76,64.767 +436109,323.12,64.076 +436110,325.69,64.32 +436111,328.12,64.56 +436112,330.45,64.797 +436113,321.79,63.997 +436114,324.37,64.278 +436115,326.81,64.554 +436116,329.14,64.826 +436117,320.47,63.919 +436118,323.06,64.236 +436119,325.5,64.547 +436120,327.84,64.855 +436121,319.15,63.841 +436122,321.74,64.194 +436123,324.19,64.541 +436124,326.53,64.884 +436125,317.84,63.763 +436126,320.43,64.151 +436127,322.88,64.534 +436128,325.21,64.913 +436129,316.52,63.685 +436130,319.12,64.109 +436131,321.57,64.528 +436132,323.9,64.941 +436133,315.21,63.608 +436134,317.8,64.068 +436135,320.26,64.521 +436136,322.59,64.969 +436137,313.9,63.531 +436138,316.49,64.026 +436139,318.94,64.514 +436140,321.27,64.997 +436141,312.59,63.454 +436142,315.18,63.984 +436143,317.63,64.507 +436144,319.95,65.024 +436145,311.28,63.378 +436146,313.87,63.942 +436147,316.31,64.5 +436148,318.63,65.051 +436149,309.98,63.302 +436150,312.56,63.901 +436151,315,64.492 +436152,317.31,65.077 +436153,308.67,63.227 +436154,311.25,63.86 +436155,313.68,64.485 +436156,315.98,65.103 +436157,307.37,63.152 +436158,309.95,63.818 +436159,312.37,64.477 +436160,314.66,65.128 +436161,306.07,63.077 +436162,308.64,63.777 +436163,311.05,64.469 +436164,313.33,65.153 +436165,304.78,63.003 +436166,307.33,63.736 +436167,309.73,64.461 +436168,312,65.177 +436169,303.48,62.929 +436170,306.02,63.696 +436171,308.41,64.453 +436172,310.67,65.201 +436173,302.19,62.856 +436174,304.72,63.655 +436175,307.09,64.444 +436176,309.34,65.224 +436177,300.9,62.784 +436178,303.41,63.615 +436179,305.78,64.436 +436180,308,65.247 +436181,299.61,62.712 +436182,302.11,63.574 +436183,304.46,64.427 +436184,306.67,65.269 +436185,298.32,62.641 +436186,300.81,63.535 +436187,303.14,64.418 +436188,305.33,65.29 +436189,297.04,62.57 +436190,299.5,63.495 +436191,301.81,64.408 +436192,303.99,65.31 +436193,295.75,62.5 +436194,298.2,63.455 +436195,300.49,64.398 +436196,302.65,65.33 +436197,294.47,62.431 +436198,296.9,63.416 +436199,299.17,64.389 +436200,301.31,65.349 +436201,293.19,62.363 +436202,295.6,63.377 +436203,297.85,64.378 +436204,299.96,65.367 +436205,291.91,62.295 +436206,294.3,63.338 +436207,296.52,64.368 +436208,298.62,65.385 +436209,290.64,62.228 +436210,293,63.299 +436211,295.2,64.357 +436212,297.27,65.401 +436213,289.36,62.162 +436214,291.7,63.261 +436215,293.88,64.346 +436216,295.92,65.417 +436217,288.09,62.097 +436218,290.4,63.223 +436219,292.55,64.335 +436220,294.57,65.432 +436221,286.82,62.033 +436222,289.1,63.185 +436223,291.23,64.323 +436224,293.22,65.446 +436225,285.55,61.969 +436226,287.8,63.148 +436227,289.9,64.311 +436228,291.87,65.459 +436229,284.29,61.906 +436230,286.51,63.111 +436231,288.58,64.299 +436232,290.51,65.471 +436233,283.02,61.845 +436234,285.21,63.074 +436235,287.25,64.286 +436236,289.15,65.483 +436237,281.76,61.784 +436238,283.92,63.037 +436239,285.92,64.273 +436240,287.8,65.493 +436241,280.5,61.724 +436242,282.62,63.001 +436243,284.59,64.26 +436244,286.44,65.502 +436245,279.24,61.666 +436246,281.33,62.965 +436247,283.27,64.247 +436248,285.08,65.511 +436249,277.98,61.608 +436250,280.03,62.929 +436251,281.94,64.233 +436252,283.72,65.518 +436253,276.72,61.551 +436254,278.74,62.894 +436255,280.61,64.218 +436256,282.35,65.524 +436257,275.47,61.496 +436258,277.44,62.859 +436259,279.28,64.204 +436260,280.99,65.529 +436261,274.22,61.441 +436262,276.15,62.824 +436263,277.95,64.188 +436264,279.62,65.533 +436265,272.96,61.387 +436266,274.86,62.79 +436267,276.62,64.173 +436268,278.26,65.537 +436269,271.71,61.335 +436270,273.57,62.756 +436271,275.29,64.157 +436272,276.89,65.539 +436273,270.47,61.284 +436274,272.28,62.722 +436275,273.96,64.141 +436276,275.52,65.539 +436277,269.22,61.233 +436278,270.99,62.689 +436279,272.62,64.124 +436280,274.15,65.539 +436281,267.97,61.184 +436282,269.7,62.656 +436283,271.29,64.108 +436284,272.78,65.538 +436285,266.73,61.137 +436286,268.41,62.624 +436287,269.96,64.09 +436288,271.4,65.535 +436289,265.48,61.09 +436290,267.12,62.592 +436291,268.63,64.072 +436292,270.03,65.531 +436293,264.24,61.044 +436294,265.83,62.56 +436295,267.29,64.054 +436296,268.66,65.527 +436297,263,61 +436298,264.54,62.529 +436299,265.96,64.036 +436300,267.28,65.52 +436301,261.76,60.957 +436302,263.25,62.498 +436303,264.63,64.017 +436304,265.9,65.513 +436305,260.52,60.915 +436306,261.96,62.467 +436307,263.29,63.997 +436308,264.52,65.505 +436309,259.29,60.874 +436310,260.68,62.437 +436311,261.96,63.977 +436312,263.14,65.495 +436313,258.05,60.835 +436314,259.39,62.407 +436315,260.62,63.957 +436316,261.76,65.484 +436317,256.81,60.797 +436318,258.1,62.378 +436319,259.29,63.936 +436320,260.38,65.472 +436321,255.58,60.76 +436322,256.82,62.349 +436323,257.95,63.915 +436324,259,65.458 +436325,254.35,60.724 +436326,255.53,62.32 +436327,256.62,63.894 +436328,257.62,65.444 +436329,253.11,60.69 +436330,254.25,62.292 +436331,255.28,63.872 +436332,256.24,65.428 +436333,251.88,60.657 +436334,252.96,62.264 +436335,253.95,63.849 +436336,254.85,65.411 +436337,250.65,60.625 +436338,251.68,62.237 +436339,252.61,63.826 +436340,253.47,65.392 +436341,249.42,60.594 +436342,250.39,62.21 +436343,251.27,63.803 +436344,252.08,65.372 +436345,248.19,60.565 +436346,249.11,62.184 +436347,249.94,63.779 +436348,250.7,65.351 +436349,246.97,60.537 +436350,247.82,62.158 +436351,248.6,63.755 +436352,249.31,65.329 +436353,245.74,60.51 +436354,246.54,62.132 +436355,247.26,63.73 +436356,247.92,65.305 +436357,244.51,60.485 +436358,245.25,62.107 +436359,245.93,63.705 +436360,246.53,65.281 +436361,243.28,60.461 +436362,243.97,62.082 +436363,244.59,63.68 +436364,245.14,65.254 +436365,242.06,60.438 +436366,242.69,62.057 +436367,243.25,63.654 +436368,243.75,65.227 +436369,240.83,60.417 +436370,241.4,62.034 +436371,241.91,63.627 +436372,242.37,65.198 +436373,239.61,60.397 +436374,240.12,62.01 +436375,240.58,63.601 +436376,240.98,65.168 +436377,238.38,60.378 +436378,238.84,61.987 +436379,239.24,63.573 +436380,239.58,65.137 +436381,237.16,60.36 +436382,237.56,61.964 +436383,237.9,63.546 +436384,238.19,65.104 +436385,235.93,60.344 +436386,236.27,61.942 +436387,236.56,63.517 +436388,236.8,65.07 +436389,234.71,60.329 +436390,234.99,61.92 +436391,235.22,63.489 +436392,235.41,65.035 +436393,233.48,60.315 +436394,233.71,61.898 +436395,233.89,63.46 +436396,234.02,64.999 +436397,232.26,60.303 +436398,232.43,61.877 +436399,232.55,63.43 +436400,232.63,64.961 +436401,231.03,60.292 +436402,231.14,61.857 +436403,231.21,63.4 +436404,231.24,64.922 +436405,229.81,60.282 +436406,229.86,61.836 +436407,229.87,63.37 +436408,229.84,64.882 +436409,228.59,60.273 +436410,228.58,61.816 +436411,228.53,63.339 +436412,228.45,64.841 +436413,227.36,60.266 +436414,227.3,61.797 +436415,227.19,63.308 +436416,227.06,64.798 +436417,226.14,60.26 +436418,226.01,61.778 +436419,225.86,63.276 +436420,225.67,64.754 +436421,224.91,60.255 +436422,224.73,61.759 +436423,224.52,63.244 +436424,224.27,64.709 +436425,223.69,60.251 +436426,223.45,61.741 +436427,223.18,63.212 +436428,222.88,64.662 +436429,222.46,60.249 +436430,222.17,61.723 +436431,221.84,63.179 +436432,221.49,64.615 +436433,221.24,60.247 +436434,220.89,61.705 +436435,220.5,63.145 +436436,220.1,64.566 +436437,220.01,60.247 +436438,219.6,61.688 +436439,219.17,63.112 +436440,218.7,64.516 +436441,218.79,60.248 +436442,218.32,61.672 +436443,217.83,63.078 +436444,217.31,64.465 +436445,217.56,60.25 +436446,217.04,61.655 +436447,216.49,63.043 +436448,215.92,64.413 +436449,216.33,60.254 +436450,215.75,61.639 +436451,215.15,63.008 +436452,214.53,64.359 +436453,215.11,60.258 +436454,214.47,61.623 +436455,213.82,62.973 +436456,213.14,64.304 +436457,213.88,60.263 +436458,213.19,61.608 +436459,212.48,62.937 +436460,211.75,64.249 +436461,212.65,60.27 +436462,211.91,61.593 +436463,211.14,62.901 +436464,210.36,64.192 +436465,211.42,60.278 +436466,210.62,61.579 +436467,209.81,62.864 +436468,208.97,64.134 +436469,210.19,60.287 +436470,209.34,61.564 +436471,208.47,62.828 +436472,207.58,64.075 +436473,208.96,60.296 +436474,208.06,61.55 +436475,207.13,62.79 +436476,206.19,64.015 +436477,207.73,60.307 +436478,206.77,61.537 +436479,205.8,62.753 +436480,204.8,63.954 +436481,206.49,60.319 +436482,205.49,61.524 +436483,204.46,62.715 +436484,203.41,63.891 +436485,205.26,60.332 +436486,204.2,61.511 +436487,203.12,62.677 +436488,202.03,63.828 +436489,204.03,60.345 +436490,202.92,61.498 +436491,201.79,62.638 +436492,200.64,63.764 +436493,202.79,60.36 +436494,201.63,61.486 +436495,200.45,62.599 +436496,199.25,63.699 +436497,201.55,60.376 +436498,200.35,61.474 +436499,199.12,62.56 +436500,197.87,63.633 +436501,200.32,60.392 +436502,199.06,61.462 +436503,197.79,62.52 +436504,196.48,63.566 +436505,199.08,60.409 +436506,197.78,61.45 +436507,196.45,62.48 +436508,195.1,63.498 +436509,197.84,60.427 +436510,196.49,61.439 +436511,195.12,62.44 +436512,193.72,63.429 +436513,196.6,60.446 +436514,195.2,61.428 +436515,193.78,62.4 +436516,192.34,63.359 +436517,195.36,60.466 +436518,193.92,61.417 +436519,192.45,62.359 +436520,190.95,63.288 +436521,194.11,60.487 +436522,192.63,61.407 +436523,191.12,62.318 +436524,189.57,63.217 +436525,192.87,60.508 +436526,191.34,61.397 +436527,189.79,62.276 +436528,188.2,63.145 +436529,191.63,60.53 +436530,190.06,61.387 +436531,188.45,62.235 +436532,186.82,63.072 +436533,190.38,60.553 +436534,188.77,61.377 +436535,187.12,62.193 +436536,185.44,62.998 +436537,189.13,60.576 +436538,187.48,61.367 +436539,185.79,62.151 +436540,184.07,62.923 +436541,187.88,60.6 +436542,186.19,61.358 +436543,184.46,62.108 +436544,182.69,62.848 +436545,186.63,60.625 +436546,184.9,61.349 +436547,183.13,62.066 +436548,181.32,62.772 +436549,185.38,60.65 +436550,183.61,61.34 +436551,181.8,62.023 +436552,179.95,62.696 +436553,184.12,60.676 +436554,182.32,61.331 +436555,180.47,61.98 +436556,178.58,62.618 +436557,182.87,60.702 +436558,181.03,61.323 +436559,179.14,61.936 +436560,177.21,62.541 +436561,181.61,60.729 +436562,179.74,61.314 +436563,177.81,61.893 +436564,175.84,62.462 +436565,180.36,60.756 +436566,178.45,61.306 +436567,176.49,61.849 +436568,174.47,62.383 +436569,179.1,60.784 +436570,177.15,61.298 +436571,175.16,61.805 +436572,173.11,62.304 +436573,177.84,60.812 +436574,175.86,61.29 +436575,173.83,61.761 +436576,171.74,62.224 +436577,176.57,60.84 +436578,174.57,61.282 +436579,172.51,61.717 +436580,170.38,62.143 +436581,175.31,60.869 +436582,173.28,61.274 +436583,171.18,61.673 +436584,169.02,62.062 +436585,174.04,60.899 +436586,171.98,61.267 +436587,169.86,61.628 +436588,167.66,61.981 +436589,172.78,60.928 +436590,170.69,61.259 +436591,168.53,61.584 +436592,166.3,61.899 +436593,171.51,60.958 +436594,169.39,61.252 +436595,167.21,61.539 +436596,164.94,61.817 +436597,170.24,60.988 +436598,168.1,61.244 +436599,165.88,61.494 +436600,163.59,61.735 +436601,168.96,61.018 +436602,166.8,61.237 +436603,164.56,61.449 +436604,162.24,61.652 +436605,167.69,61.049 +436606,165.5,61.23 +436607,163.24,61.404 +436608,160.88,61.569 +436609,166.41,61.079 +436610,164.21,61.223 +436611,161.92,61.359 +436612,159.53,61.486 +436613,165.14,61.11 +436614,162.91,61.215 +436615,160.6,61.314 +436616,158.19,61.403 +436617,163.86,61.141 +436618,161.61,61.208 +436619,159.28,61.268 +436620,156.84,61.319 +436621,162.58,61.172 +436622,160.31,61.201 +436623,157.96,61.223 +436624,155.5,61.236 +436625,161.29,61.202 +436626,159.01,61.194 +436627,156.64,61.178 +436628,154.15,61.152 +436629,160.01,61.233 +436630,157.71,61.187 +436631,155.32,61.132 +436632,152.81,61.068 +436633,158.72,61.264 +436634,156.41,61.18 +436635,154,61.087 +436636,151.47,60.984 +436637,157.44,61.295 +436638,155.11,61.172 +436639,152.68,61.041 +436640,150.14,60.9 +436641,156.15,61.326 +436642,153.81,61.165 +436643,151.37,60.996 +436644,148.8,60.816 +436645,154.85,61.356 +436646,152.51,61.158 +436647,150.05,60.951 +436648,147.47,60.732 +436649,153.56,61.387 +436650,151.2,61.151 +436651,148.73,60.905 +436652,146.14,60.648 +436653,152.27,61.417 +436654,149.9,61.143 +436655,147.42,60.86 +436656,144.81,60.565 +436657,150.97,61.447 +436658,148.6,61.136 +436659,146.11,60.814 +436660,143.48,60.481 +436661,149.67,61.477 +436662,147.29,61.128 +436663,144.79,60.769 +436664,142.15,60.397 +436665,148.37,61.506 +436666,145.99,61.121 +436667,143.48,60.724 +436668,140.83,60.314 +436669,147.07,61.535 +436670,144.68,61.113 +436671,142.17,60.679 +436672,139.51,60.231 +436673,145.76,61.564 +436674,143.37,61.105 +436675,140.86,60.634 +436676,138.19,60.148 +436677,144.46,61.593 +436678,142.07,61.097 +436679,139.55,60.589 +436680,136.87,60.066 +436681,143.15,61.621 +436682,140.76,61.089 +436683,138.24,60.544 +436684,135.56,59.984 +436685,141.84,61.649 +436686,139.45,61.081 +436687,136.93,60.499 +436688,134.24,59.902 +436689,140.53,61.676 +436690,138.14,61.072 +436691,135.62,60.454 +436692,132.93,59.821 +436693,139.22,61.703 +436694,136.83,61.064 +436695,134.31,60.41 +436696,131.62,59.74 +436697,137.9,61.729 +436698,135.52,61.055 +436699,133,60.365 +436700,130.31,59.659 +436701,136.59,61.755 +436702,134.21,61.046 +436703,131.7,60.321 +436704,129.01,59.579 +436705,135.27,61.78 +436706,132.9,61.037 +436707,130.39,60.277 +436708,127.71,59.499 +436709,133.95,61.805 +436710,131.59,61.027 +436711,129.09,60.233 +436712,126.41,59.42 +436713,132.63,61.829 +436714,130.28,61.018 +436715,127.78,60.19 +436716,125.11,59.342 +436717,131.3,61.852 +436718,128.97,61.008 +436719,126.48,60.146 +436720,123.81,59.264 +436721,129.98,61.875 +436722,127.65,60.998 +436723,125.17,60.103 +436724,122.52,59.187 +436725,128.65,61.897 +436726,126.34,60.988 +436727,123.87,60.06 +436728,121.22,59.11 +436729,127.32,61.918 +436730,125.02,60.977 +436731,122.57,60.017 +436732,119.93,59.034 +436733,125.99,61.938 +436734,123.71,60.967 +436735,121.27,59.974 +436736,118.64,58.959 +436737,124.66,61.958 +436738,122.39,60.956 +436739,119.97,59.932 +436740,117.36,58.884 +436741,123.33,61.977 +436742,121.08,60.944 +436743,118.67,59.889 +436744,116.07,58.811 +436745,121.99,61.995 +436746,119.76,60.933 +436747,117.37,59.847 +436748,114.79,58.738 +436749,120.65,62.013 +436750,118.44,60.921 +436751,116.07,59.806 +436752,113.51,58.666 +436753,119.32,62.029 +436754,117.12,60.909 +436755,114.77,59.764 +436756,112.23,58.594 +436757,117.98,62.045 +436758,115.81,60.896 +436759,113.48,59.723 +436760,110.96,58.524 +436761,116.63,62.059 +436762,114.49,60.883 +436763,112.18,59.682 +436764,109.68,58.454 +436765,115.29,62.073 +436766,113.17,60.87 +436767,110.88,59.642 +436768,108.41,58.386 +436769,113.95,62.086 +436770,111.85,60.857 +436771,109.59,59.601 +436772,107.14,58.318 +436773,112.6,62.098 +436774,110.53,60.843 +436775,108.29,59.561 +436776,105.87,58.251 +436777,111.25,62.109 +436778,109.2,60.829 +436779,107,59.522 +436780,104.61,58.186 +436781,109.9,62.119 +436782,107.88,60.814 +436783,105.71,59.482 +436784,103.34,58.121 +436785,108.55,62.127 +436786,106.56,60.8 +436787,104.41,59.443 +436788,102.08,58.057 +436789,107.2,62.135 +436790,105.24,60.784 +436791,103.12,59.405 +436792,100.82,57.995 +436793,105.85,62.142 +436794,103.92,60.769 +436795,101.83,59.367 +436796,99.562,57.933 +436797,104.49,62.147 +436798,102.59,60.753 +436799,100.54,59.329 +436800,98.306,57.873 +436801,103.13,62.152 +436802,101.27,60.736 +436803,99.249,59.291 +436804,97.051,57.813 +436805,101.78,62.155 +436806,99.943,60.72 +436807,97.959,59.254 +436808,95.797,57.755 +436809,100.42,62.157 +436810,98.618,60.703 +436811,96.67,59.217 +436812,94.546,57.698 +436813,99.055,62.158 +436814,97.292,60.685 +436815,95.382,59.18 +436816,93.296,57.642 +436817,97.693,62.158 +436818,95.967,60.667 +436819,94.094,59.144 +436820,92.048,57.588 +436821,96.33,62.157 +436822,94.64,60.649 +436823,92.806,59.109 +436824,90.802,57.534 +436825,94.966,62.154 +436826,93.313,60.63 +436827,91.519,59.073 +436828,89.557,57.482 +436829,93.6,62.151 +436830,91.986,60.611 +436831,90.232,59.038 +436832,88.313,57.431 +436833,92.233,62.146 +436834,90.659,60.591 +436835,88.946,59.004 +436836,87.072,57.381 +436837,90.865,62.139 +436838,89.331,60.571 +436839,87.661,58.97 +436840,85.831,57.333 +436841,89.496,62.132 +436842,88.003,60.551 +436843,86.376,58.936 +436844,84.593,57.286 +436845,88.126,62.123 +436846,86.674,60.53 +436847,85.091,58.903 +436848,83.355,57.24 +436849,86.754,62.113 +436850,85.345,60.509 +436851,83.807,58.87 +436852,82.119,57.195 +436853,85.382,62.102 +436854,84.015,60.487 +436855,82.524,58.837 +436856,80.885,57.152 +436857,84.008,62.089 +436858,82.686,60.465 +436859,81.24,58.805 +436860,79.651,57.11 +436861,82.634,62.075 +436862,81.356,60.442 +436863,79.957,58.774 +436864,78.419,57.07 +436865,81.258,62.06 +436866,80.025,60.419 +436867,78.675,58.743 +436868,77.188,57.03 +436869,79.882,62.044 +436870,78.695,60.395 +436871,77.393,58.712 +436872,75.959,56.993 +436873,78.504,62.026 +436874,77.364,60.371 +436875,76.111,58.682 +436876,74.73,56.956 +436877,77.126,62.007 +436878,76.032,60.347 +436879,74.83,58.652 +436880,73.503,56.921 +436881,75.747,61.986 +436882,74.701,60.322 +436883,73.549,58.622 +436884,72.276,56.887 +436885,74.367,61.964 +436886,73.369,60.296 +436887,72.269,58.593 +436888,71.051,56.855 +436889,72.987,61.941 +436890,72.037,60.27 +436891,70.989,58.565 +436892,69.826,56.824 +436893,71.605,61.916 +436894,70.705,60.244 +436895,69.709,58.537 +436896,68.603,56.794 +436897,70.223,61.891 +436898,69.372,60.217 +436899,68.429,58.509 +436900,67.38,56.766 +436901,68.84,61.863 +436902,68.04,60.19 +436903,67.15,58.482 +436904,66.158,56.739 +436905,67.457,61.835 +436906,66.707,60.162 +436907,65.871,58.455 +436908,64.936,56.714 +436909,66.073,61.805 +436910,65.374,60.134 +436911,64.592,58.429 +436912,63.716,56.689 +436913,64.688,61.773 +436914,64.04,60.105 +436915,63.314,58.403 +436916,62.496,56.667 +436917,63.303,61.741 +436918,62.707,60.076 +436919,62.035,58.378 +436920,61.277,56.646 +436921,61.917,61.706 +436922,61.374,60.046 +436923,60.757,58.353 +436924,60.058,56.626 +436925,60.531,61.671 +436926,60.04,60.016 +436927,59.479,58.328 +436928,58.84,56.607 +436929,59.144,61.634 +436930,58.706,59.985 +436931,58.202,58.304 +436932,57.622,56.59 +436933,57.757,61.596 +436934,57.372,59.954 +436935,56.924,58.28 +436936,56.404,56.574 +436937,56.369,61.557 +436938,56.038,59.923 +436939,55.647,58.257 +436940,55.187,56.56 +436941,54.982,61.516 +436942,54.704,59.891 +436943,54.37,58.234 +436944,53.97,56.547 +436945,53.593,61.474 +436946,53.37,59.858 +436947,53.092,58.212 +436948,52.754,56.535 +436949,52.205,61.43 +436950,52.036,59.825 +436951,51.815,58.19 +436952,51.537,56.525 +436953,50.816,61.385 +436954,50.702,59.792 +436955,50.539,58.169 +436956,50.321,56.516 +436957,49.428,61.339 +436958,49.368,59.758 +436959,49.262,58.148 +436960,49.105,56.508 +436961,48.039,61.292 +436962,48.033,59.724 +436963,47.985,58.127 +436964,47.889,56.502 +436965,46.649,61.243 +436966,46.699,59.689 +436967,46.708,58.107 +436968,46.673,56.497 +436969,45.26,61.193 +436970,45.365,59.654 +436971,45.432,58.087 +436972,45.457,56.493 +436973,43.871,61.141 +436974,44.031,59.618 +436975,44.155,58.068 +436976,44.24,56.491 +436977,42.482,61.089 +436978,42.697,59.582 +436979,42.878,58.049 +436980,43.024,56.489 +436981,41.092,61.035 +436982,41.363,59.546 +436983,41.602,58.031 +436984,41.807,56.49 +436985,39.703,60.98 +436986,40.029,59.509 +436987,40.325,58.013 +436988,40.59,56.491 +436989,38.314,60.923 +436990,38.695,59.472 +436991,39.048,57.995 +436992,39.373,56.493 +436993,36.925,60.866 +436994,37.361,59.434 +436995,37.772,57.977 +436996,38.155,56.497 +436997,35.536,60.807 +436998,36.027,59.396 +436999,36.495,57.961 +437000,36.937,56.502 +437001,34.148,60.747 +437002,34.694,59.357 +437003,35.218,57.944 +437004,35.719,56.508 +437005,32.759,60.686 +437006,33.361,59.318 +437007,33.941,57.928 +437008,34.5,56.516 +437009,31.371,60.623 +437010,32.027,59.279 +437011,32.664,57.912 +437012,33.28,56.524 +437013,29.984,60.56 +437014,30.694,59.239 +437015,31.387,57.897 +437016,32.06,56.534 +437017,28.596,60.495 +437018,29.361,59.199 +437019,30.109,57.882 +437020,30.839,56.544 +437021,27.209,60.429 +437022,28.029,59.158 +437023,28.832,57.867 +437024,29.618,56.556 +437025,25.823,60.362 +437026,26.696,59.117 +437027,27.554,57.853 +437028,28.396,56.569 +437029,24.437,60.294 +437030,25.364,59.076 +437031,26.276,57.839 +437032,27.173,56.583 +437033,23.052,60.225 +437034,24.032,59.034 +437035,24.998,57.825 +437036,25.949,56.598 +437037,21.667,60.155 +437038,22.701,58.992 +437039,23.72,57.811 +437040,24.725,56.614 +437041,20.282,60.084 +437042,21.369,58.95 +437043,22.441,57.798 +437044,23.499,56.63 +437045,18.899,60.012 +437046,20.038,58.907 +437047,21.162,57.786 +437048,22.273,56.648 +437049,17.516,59.939 +437050,18.707,58.864 +437051,19.883,57.773 +437052,21.045,56.667 +437053,16.133,59.865 +437054,17.377,58.821 +437055,18.604,57.761 +437056,19.817,56.687 +437057,14.752,59.79 +437058,16.046,58.777 +437059,17.324,57.749 +437060,18.587,56.707 +437061,13.371,59.714 +437062,14.717,58.733 +437063,16.044,57.738 +437064,17.357,56.728 +437065,11.991,59.637 +437066,13.387,58.689 +437067,14.764,57.726 +437068,16.125,56.75 +437069,10.612,59.559 +437070,12.058,58.644 +437071,13.484,57.715 +437072,14.892,56.773 +437073,9.2341,59.481 +437074,10.729,58.6 +437075,12.203,57.705 +437076,13.658,56.797 +437077,7.8569,59.401 +437078,9.4007,58.554 +437079,10.922,57.694 +437080,12.423,56.822 +437081,6.4808,59.321 +437082,8.0727,58.509 +437083,9.6402,57.684 +437084,11.186,56.847 +437085,5.1056,59.24 +437086,6.7451,58.463 +437087,8.3583,57.674 +437088,9.948,56.873 +437089,3.7315,59.158 +437090,5.4179,58.417 +437091,7.076,57.664 +437092,8.7088,56.899 +437093,2.3585,59.076 +437094,4.0912,58.371 +437095,5.7933,57.654 +437096,7.4682,56.926 +437097,0.98665,58.993 +437098,2.765,58.325 +437099,4.5103,57.645 +437100,6.2263,56.954 +437101,359.62,58.909 +437102,1.4392,58.278 +437103,3.2268,57.635 +437104,4.9829,56.982 +437105,358.25,58.825 +437106,0.11383,58.232 +437107,1.9429,57.626 +437108,3.7381,57.011 +437109,356.88,58.74 +437110,358.79,58.185 +437111,0.65861,57.617 +437112,2.4918,57.04 +437113,355.51,58.654 +437114,357.46,58.137 +437115,359.37,57.609 +437116,1.244,57.07 +437117,354.15,58.568 +437118,356.14,58.09 +437119,358.09,57.6 +437120,359.99,57.1 +437121,352.78,58.481 +437122,354.82,58.042 +437123,356.8,57.591 +437124,358.74,57.131 +437125,351.42,58.394 +437126,353.49,57.995 +437127,355.52,57.583 +437128,357.49,57.162 +437129,350.06,58.307 +437130,352.17,57.947 +437131,354.23,57.575 +437132,356.24,57.193 +437133,348.7,58.219 +437134,350.85,57.899 +437135,352.94,57.567 +437136,354.98,57.225 +437137,347.34,58.13 +437138,349.53,57.851 +437139,351.66,57.559 +437140,353.72,57.257 +437141,345.98,58.042 +437142,348.21,57.802 +437143,350.37,57.551 +437144,352.47,57.289 +437145,344.63,57.953 +437146,346.89,57.754 +437147,349.08,57.543 +437148,351.21,57.322 +437149,343.27,57.863 +437150,345.57,57.705 +437151,347.79,57.535 +437152,349.94,57.354 +437153,341.92,57.774 +437154,344.25,57.657 +437155,346.5,57.527 +437156,348.68,57.387 +437157,340.57,57.684 +437158,342.93,57.608 +437159,345.21,57.52 +437160,347.41,57.42 +437161,339.22,57.594 +437162,341.61,57.56 +437163,343.92,57.512 +437164,346.15,57.453 +437165,337.87,57.503 +437166,340.3,57.511 +437167,342.63,57.504 +437168,344.88,57.486 +437169,336.53,57.413 +437170,338.98,57.462 +437171,341.34,57.497 +437172,343.61,57.519 +437173,335.18,57.322 +437174,337.67,57.413 +437175,340.04,57.489 +437176,342.33,57.552 +437177,333.84,57.232 +437178,336.35,57.364 +437179,338.75,57.481 +437180,341.06,57.586 +437181,332.5,57.141 +437182,335.04,57.315 +437183,337.46,57.474 +437184,339.78,57.619 +437185,331.16,57.051 +437186,333.72,57.267 +437187,336.16,57.466 +437188,338.5,57.652 +437189,329.83,56.96 +437190,332.41,57.218 +437191,334.87,57.458 +437192,337.22,57.684 +437193,328.49,56.87 +437194,331.1,57.169 +437195,333.57,57.45 +437196,335.94,57.717 +437197,327.16,56.779 +437198,329.78,57.12 +437199,332.28,57.443 +437200,334.66,57.749 +437201,325.83,56.689 +437202,328.47,57.071 +437203,330.98,57.435 +437204,333.37,57.782 +437205,324.5,56.599 +437206,327.16,57.023 +437207,329.69,57.427 +437208,332.09,57.814 +437209,323.18,56.509 +437210,325.85,56.974 +437211,328.39,57.418 +437212,330.8,57.845 +437213,321.85,56.419 +437214,324.54,56.925 +437215,327.09,57.41 +437216,329.51,57.877 +437217,320.53,56.33 +437218,323.24,56.877 +437219,325.79,57.402 +437220,328.22,57.908 +437221,319.21,56.241 +437222,321.93,56.829 +437223,324.49,57.393 +437224,326.92,57.938 +437225,317.89,56.152 +437226,320.62,56.78 +437227,323.19,57.385 +437228,325.63,57.969 +437229,316.57,56.064 +437230,319.32,56.732 +437231,321.89,57.376 +437232,324.33,57.998 +437233,315.26,55.976 +437234,318.01,56.684 +437235,320.59,57.367 +437236,323.03,58.028 +437237,313.95,55.888 +437238,316.71,56.636 +437239,319.29,57.358 +437240,321.73,58.057 +437241,312.64,55.801 +437242,315.4,56.589 +437243,317.99,57.349 +437244,320.42,58.085 +437245,311.33,55.715 +437246,314.1,56.541 +437247,316.68,57.339 +437248,319.12,58.113 +437249,310.02,55.629 +437250,312.8,56.494 +437251,315.38,57.33 +437252,317.81,58.14 +437253,308.72,55.543 +437254,311.49,56.447 +437255,314.08,57.32 +437256,316.5,58.166 +437257,307.42,55.459 +437258,310.19,56.4 +437259,312.77,57.31 +437260,315.19,58.192 +437261,306.12,55.374 +437262,308.89,56.353 +437263,311.47,57.299 +437264,313.88,58.217 +437265,304.82,55.291 +437266,307.59,56.306 +437267,310.16,57.289 +437268,312.56,58.242 +437269,303.53,55.208 +437270,306.29,56.26 +437271,308.86,57.278 +437272,311.25,58.266 +437273,302.23,55.126 +437274,304.99,56.214 +437275,307.55,57.267 +437276,309.93,58.289 +437277,300.94,55.045 +437278,303.7,56.168 +437279,306.24,57.256 +437280,308.61,58.311 +437281,299.66,54.964 +437282,302.4,56.122 +437283,304.93,57.244 +437284,307.29,58.332 +437285,298.37,54.884 +437286,301.1,56.077 +437287,303.62,57.232 +437288,305.97,58.353 +437289,297.09,54.806 +437290,299.81,56.032 +437291,302.32,57.22 +437292,304.64,58.373 +437293,295.8,54.728 +437294,298.51,55.987 +437295,301.01,57.207 +437296,303.32,58.391 +437297,294.52,54.65 +437298,297.22,55.943 +437299,299.69,57.194 +437300,301.99,58.409 +437301,293.25,54.574 +437302,295.93,55.899 +437303,298.38,57.181 +437304,300.66,58.426 +437305,291.97,54.499 +437306,294.63,55.855 +437307,297.07,57.168 +437308,299.33,58.442 +437309,290.7,54.425 +437310,293.34,55.811 +437311,295.76,57.154 +437312,298,58.457 +437313,289.43,54.352 +437314,292.05,55.768 +437315,294.45,57.14 +437316,296.66,58.471 +437317,288.16,54.28 +437318,290.76,55.725 +437319,293.14,57.125 +437320,295.32,58.485 +437321,286.89,54.209 +437322,289.47,55.683 +437323,291.82,57.111 +437324,293.99,58.496 +437325,285.63,54.139 +437326,288.18,55.641 +437327,290.51,57.095 +437328,292.65,58.507 +437329,284.37,54.07 +437330,286.89,55.599 +437331,289.19,57.08 +437332,291.31,58.517 +437333,283.11,54.003 +437334,285.6,55.558 +437335,287.88,57.064 +437336,289.96,58.526 +437337,281.85,53.936 +437338,284.32,55.516 +437339,286.56,57.047 +437340,288.62,58.533 +437341,280.59,53.871 +437342,283.03,55.476 +437343,285.25,57.031 +437344,287.28,58.54 +437345,279.34,53.807 +437346,281.74,55.436 +437347,283.93,57.013 +437348,285.93,58.545 +437349,278.08,53.744 +437350,280.46,55.396 +437351,282.61,56.996 +437352,284.58,58.549 +437353,276.83,53.682 +437354,279.17,55.356 +437355,281.29,56.978 +437356,283.23,58.552 +437357,275.58,53.622 +437358,277.89,55.317 +437359,279.98,56.959 +437360,281.88,58.553 +437361,274.34,53.563 +437362,276.61,55.279 +437363,278.66,56.94 +437364,280.53,58.554 +437365,273.09,53.506 +437366,275.32,55.24 +437367,277.34,56.921 +437368,279.17,58.553 +437369,271.85,53.449 +437370,274.04,55.203 +437371,276.02,56.901 +437372,277.82,58.551 +437373,270.61,53.394 +437374,272.76,55.165 +437375,274.7,56.881 +437376,276.46,58.547 +437377,269.37,53.341 +437378,271.48,55.128 +437379,273.38,56.861 +437380,275.11,58.542 +437381,268.13,53.289 +437382,270.2,55.092 +437383,272.06,56.84 +437384,273.75,58.536 +437385,266.9,53.238 +437386,268.92,55.056 +437387,270.74,56.818 +437388,272.39,58.529 +437389,265.66,53.189 +437390,267.64,55.021 +437391,269.42,56.796 +437392,271.03,58.52 +437393,264.43,53.141 +437394,266.36,54.985 +437395,268.09,56.774 +437396,269.66,58.51 +437397,263.2,53.094 +437398,265.08,54.951 +437399,266.77,56.751 +437400,268.3,58.499 +437401,261.97,53.049 +437402,263.8,54.917 +437403,265.45,56.727 +437404,266.94,58.486 +437405,260.74,53.006 +437406,262.53,54.883 +437407,264.13,56.703 +437408,265.57,58.472 +437409,259.51,52.964 +437410,261.25,54.85 +437411,262.8,56.679 +437412,264.2,58.456 +437413,258.29,52.923 +437414,259.97,54.817 +437415,261.48,56.654 +437416,262.84,58.439 +437417,257.07,52.884 +437418,258.7,54.785 +437419,260.16,56.629 +437420,261.47,58.42 +437421,255.84,52.847 +437422,257.42,54.753 +437423,258.83,56.603 +437424,260.1,58.401 +437425,254.62,52.811 +437426,256.15,54.722 +437427,257.51,56.577 +437428,258.73,58.379 +437429,253.4,52.776 +437430,254.87,54.691 +437431,256.18,56.55 +437432,257.36,58.357 +437433,252.18,52.743 +437434,253.6,54.661 +437435,254.86,56.523 +437436,255.98,58.332 +437437,250.97,52.712 +437438,252.32,54.631 +437439,253.53,56.495 +437440,254.61,58.307 +437441,249.75,52.682 +437442,251.05,54.602 +437443,252.21,56.467 +437444,253.24,58.28 +437445,248.53,52.653 +437446,249.78,54.573 +437447,250.88,56.438 +437448,251.86,58.251 +437449,247.32,52.626 +437450,248.51,54.545 +437451,249.55,56.408 +437452,250.49,58.221 +437453,246.1,52.601 +437454,247.23,54.517 +437455,248.23,56.379 +437456,249.11,58.19 +437457,244.89,52.577 +437458,245.96,54.49 +437459,246.9,56.348 +437460,247.73,58.157 +437461,243.68,52.555 +437462,244.69,54.463 +437463,245.57,56.318 +437464,246.35,58.123 +437465,242.47,52.534 +437466,243.42,54.436 +437467,244.25,56.286 +437468,244.98,58.087 +437469,241.26,52.515 +437470,242.15,54.411 +437471,242.92,56.255 +437472,243.6,58.05 +437473,240.05,52.497 +437474,240.88,54.385 +437475,241.59,56.222 +437476,242.22,58.012 +437477,238.84,52.481 +437478,239.6,54.36 +437479,240.27,56.19 +437480,240.84,57.971 +437481,237.63,52.466 +437482,238.33,54.336 +437483,238.94,56.156 +437484,239.46,57.93 +437485,236.42,52.453 +437486,237.06,54.312 +437487,237.61,56.123 +437488,238.08,57.887 +437489,235.21,52.441 +437490,235.79,54.289 +437491,236.28,56.088 +437492,236.7,57.843 +437493,234.01,52.431 +437494,234.52,54.266 +437495,234.96,56.054 +437496,235.32,57.797 +437497,232.8,52.422 +437498,233.25,54.243 +437499,233.63,56.018 +437500,233.93,57.75 +437501,231.59,52.415 +437502,231.98,54.221 +437503,232.3,55.983 +437504,232.55,57.701 +437505,230.39,52.409 +437506,230.72,54.2 +437507,230.97,55.947 +437508,231.17,57.651 +437509,229.18,52.405 +437510,229.45,54.179 +437511,229.64,55.91 +437512,229.79,57.599 +437513,227.97,52.402 +437514,228.18,54.158 +437515,228.32,55.873 +437516,228.4,57.547 +437517,226.77,52.4 +437518,226.91,54.138 +437519,226.99,55.835 +437520,227.02,57.492 +437521,225.56,52.4 +437522,225.64,54.119 +437523,225.66,55.797 +437524,225.64,57.437 +437525,224.36,52.401 +437526,224.37,54.1 +437527,224.33,55.759 +437528,224.25,57.38 +437529,223.15,52.404 +437530,223.1,54.081 +437531,223.01,55.72 +437532,222.87,57.321 +437533,221.94,52.408 +437534,221.83,54.063 +437535,221.68,55.68 +437536,221.49,57.262 +437537,220.74,52.413 +437538,220.56,54.045 +437539,220.35,55.64 +437540,220.1,57.201 +437541,219.53,52.42 +437542,219.29,54.027 +437543,219.02,55.6 +437544,218.72,57.138 +437545,218.32,52.428 +437546,218.02,54.01 +437547,217.7,55.559 +437548,217.34,57.075 +437549,217.11,52.437 +437550,216.76,53.994 +437551,216.37,55.518 +437552,215.96,57.01 +437553,215.91,52.447 +437554,215.49,53.978 +437555,215.04,55.476 +437556,214.57,56.944 +437557,214.7,52.459 +437558,214.22,53.962 +437559,213.71,55.434 +437560,213.19,56.876 +437561,213.49,52.472 +437562,212.95,53.947 +437563,212.39,55.392 +437564,211.81,56.808 +437565,212.28,52.486 +437566,211.68,53.932 +437567,211.06,55.349 +437568,210.43,56.738 +437569,211.07,52.502 +437570,210.41,53.917 +437571,209.73,55.306 +437572,209.04,56.667 +437573,209.86,52.518 +437574,209.14,53.903 +437575,208.41,55.262 +437576,207.66,56.594 +437577,208.65,52.536 +437578,207.87,53.89 +437579,207.08,55.218 +437580,206.28,56.521 +437581,207.43,52.554 +437582,206.6,53.876 +437583,205.76,55.174 +437584,204.9,56.446 +437585,206.22,52.574 +437586,205.33,53.863 +437587,204.43,55.129 +437588,203.52,56.371 +437589,205.01,52.595 +437590,204.06,53.85 +437591,203.11,55.084 +437592,202.14,56.294 +437593,203.79,52.616 +437594,202.79,53.838 +437595,201.78,55.038 +437596,200.76,56.216 +437597,202.58,52.639 +437598,201.52,53.826 +437599,200.46,54.992 +437600,199.38,56.137 +437601,201.36,52.663 +437602,200.25,53.815 +437603,199.13,54.946 +437604,198.01,56.057 +437605,200.14,52.688 +437606,198.98,53.803 +437607,197.81,54.9 +437608,196.63,55.976 +437609,198.92,52.713 +437610,197.71,53.792 +437611,196.48,54.853 +437612,195.25,55.894 +437613,197.7,52.74 +437614,196.43,53.781 +437615,195.16,54.806 +437616,193.88,55.811 +437617,196.48,52.767 +437618,195.16,53.771 +437619,193.84,54.758 +437620,192.5,55.727 +437621,195.26,52.795 +437622,193.89,53.761 +437623,192.51,54.71 +437624,191.13,55.642 +437625,194.03,52.824 +437626,192.62,53.751 +437627,191.19,54.662 +437628,189.76,55.557 +437629,192.81,52.854 +437630,191.34,53.741 +437631,189.87,54.614 +437632,188.38,55.47 +437633,191.58,52.884 +437634,190.07,53.732 +437635,188.55,54.565 +437636,187.01,55.383 +437637,190.36,52.915 +437638,188.8,53.723 +437639,187.23,54.516 +437640,185.64,55.295 +437641,189.13,52.947 +437642,187.52,53.714 +437643,185.91,54.467 +437644,184.27,55.206 +437645,187.9,52.979 +437646,186.25,53.705 +437647,184.59,54.418 +437648,182.9,55.116 +437649,186.67,53.012 +437650,184.97,53.697 +437651,183.27,54.368 +437652,181.54,55.026 +437653,185.43,53.046 +437654,183.7,53.688 +437655,181.95,54.319 +437656,180.17,54.935 +437657,184.2,53.08 +437658,182.42,53.68 +437659,180.63,54.269 +437660,178.81,54.843 +437661,182.96,53.115 +437662,181.15,53.672 +437663,179.31,54.218 +437664,177.44,54.751 +437665,181.72,53.15 +437666,179.87,53.665 +437667,177.99,54.168 +437668,176.08,54.658 +437669,180.49,53.185 +437670,178.6,53.657 +437671,176.67,54.117 +437672,174.72,54.564 +437673,179.24,53.221 +437674,177.32,53.65 +437675,175.36,54.067 +437676,173.36,54.47 +437677,178,53.257 +437678,176.04,53.642 +437679,174.04,54.016 +437680,172,54.376 +437681,176.76,53.294 +437682,174.76,53.635 +437683,172.73,53.965 +437684,170.64,54.281 +437685,175.51,53.331 +437686,173.48,53.628 +437687,171.41,53.914 +437688,169.29,54.186 +437689,174.27,53.368 +437690,172.2,53.621 +437691,170.1,53.862 +437692,167.93,54.09 +437693,173.02,53.405 +437694,170.92,53.614 +437695,168.78,53.811 +437696,166.58,53.994 +437697,171.77,53.443 +437698,169.64,53.607 +437699,167.47,53.76 +437700,165.23,53.897 +437701,170.51,53.48 +437702,168.36,53.601 +437703,166.16,53.708 +437704,163.88,53.801 +437705,169.26,53.518 +437706,167.08,53.594 +437707,164.84,53.657 +437708,162.53,53.704 +437709,168,53.556 +437710,165.8,53.587 +437711,163.53,53.605 +437712,161.19,53.606 +437713,166.75,53.594 +437714,164.52,53.581 +437715,162.22,53.553 +437716,159.84,53.509 +437717,165.49,53.632 +437718,163.24,53.574 +437719,160.91,53.501 +437720,158.5,53.411 +437721,164.23,53.67 +437722,161.95,53.568 +437723,159.6,53.45 +437724,157.16,53.314 +437725,162.96,53.708 +437726,160.67,53.561 +437727,158.29,53.398 +437728,155.82,53.216 +437729,161.7,53.746 +437730,159.39,53.554 +437731,156.98,53.346 +437732,154.48,53.118 +437733,160.43,53.783 +437734,158.1,53.548 +437735,155.68,53.294 +437736,153.14,53.021 +437737,159.16,53.821 +437738,156.82,53.541 +437739,154.37,53.243 +437740,151.81,52.923 +437741,157.89,53.858 +437742,155.53,53.534 +437743,153.06,53.191 +437744,150.48,52.825 +437745,156.62,53.895 +437746,154.24,53.528 +437747,151.76,53.139 +437748,149.15,52.728 +437749,155.35,53.932 +437750,152.96,53.521 +437751,150.45,53.088 +437752,147.82,52.63 +437753,154.07,53.969 +437754,151.67,53.514 +437755,149.15,53.036 +437756,146.49,52.533 +437757,152.79,54.005 +437758,150.38,53.507 +437759,147.84,52.985 +437760,145.17,52.436 +437761,151.52,54.041 +437762,149.09,53.5 +437763,146.54,52.934 +437764,143.84,52.34 +437765,150.23,54.077 +437766,147.8,53.492 +437767,145.24,52.882 +437768,142.52,52.243 +437769,148.95,54.112 +437770,146.51,53.485 +437771,143.94,52.831 +437772,141.21,52.147 +437773,147.67,54.146 +437774,145.22,53.477 +437775,142.64,52.78 +437776,139.89,52.051 +437777,146.38,54.181 +437778,143.93,53.47 +437779,141.34,52.73 +437780,138.58,51.956 +437781,145.09,54.214 +437782,142.64,53.462 +437783,140.04,52.679 +437784,137.26,51.861 +437785,143.8,54.247 +437786,141.35,53.454 +437787,138.74,52.628 +437788,135.95,51.767 +437789,142.51,54.28 +437790,140.05,53.446 +437791,137.44,52.578 +437792,134.65,51.673 +437793,141.21,54.312 +437794,138.76,53.437 +437795,136.15,52.528 +437796,133.34,51.58 +437797,139.92,54.343 +437798,137.47,53.428 +437799,134.85,52.478 +437800,132.04,51.487 +437801,138.62,54.373 +437802,136.17,53.42 +437803,133.55,52.429 +437804,130.74,51.395 +437805,137.32,54.403 +437806,134.88,53.411 +437807,132.26,52.379 +437808,129.44,51.304 +437809,136.02,54.432 +437810,133.58,53.401 +437811,130.97,52.33 +437812,128.14,51.213 +437813,134.72,54.461 +437814,132.28,53.392 +437815,129.67,52.281 +437816,126.84,51.124 +437817,133.41,54.488 +437818,130.99,53.382 +437819,128.38,52.232 +437820,125.55,51.034 +437821,132.1,54.515 +437822,129.69,53.372 +437823,127.09,52.184 +437824,124.26,50.946 +437825,130.8,54.541 +437826,128.39,53.361 +437827,125.8,52.136 +437828,122.97,50.859 +437829,129.49,54.566 +437830,127.09,53.351 +437831,124.51,52.088 +437832,121.69,50.772 +437833,128.17,54.59 +437834,125.79,53.34 +437835,123.22,52.041 +437836,120.41,50.687 +437837,126.86,54.613 +437838,124.49,53.328 +437839,121.93,51.994 +437840,119.13,50.602 +437841,125.54,54.636 +437842,123.19,53.317 +437843,120.64,51.947 +437844,117.85,50.518 +437845,124.23,54.657 +437846,121.89,53.305 +437847,119.36,51.9 +437848,116.57,50.436 +437849,122.91,54.677 +437850,120.59,53.293 +437851,118.07,51.854 +437852,115.3,50.354 +437853,121.59,54.696 +437854,119.29,53.28 +437855,116.78,51.808 +437856,114.02,50.273 +437857,120.27,54.714 +437858,117.99,53.267 +437859,115.5,51.763 +437860,112.75,50.194 +437861,118.94,54.731 +437862,116.68,53.254 +437863,114.21,51.718 +437864,111.49,50.116 +437865,117.62,54.747 +437866,115.38,53.24 +437867,112.93,51.673 +437868,110.22,50.039 +437869,116.29,54.762 +437870,114.07,53.226 +437871,111.65,51.629 +437872,108.96,49.963 +437873,114.96,54.776 +437874,112.77,53.211 +437875,110.37,51.585 +437876,107.7,49.888 +437877,113.63,54.788 +437878,111.46,53.196 +437879,109.09,51.542 +437880,106.44,49.815 +437881,112.3,54.799 +437882,110.16,53.181 +437883,107.8,51.499 +437884,105.18,49.743 +437885,110.97,54.809 +437886,108.85,53.165 +437887,106.53,51.456 +437888,103.93,49.672 +437889,109.63,54.818 +437890,107.55,53.149 +437891,105.25,51.414 +437892,102.68,49.602 +437893,108.3,54.826 +437894,106.24,53.133 +437895,103.97,51.372 +437896,101.43,49.534 +437897,106.96,54.832 +437898,104.93,53.116 +437899,102.69,51.331 +437900,100.18,49.468 +437901,105.62,54.837 +437902,103.62,53.098 +437903,101.41,51.29 +437904,98.936,49.402 +437905,104.28,54.841 +437906,102.31,53.081 +437907,100.14,51.25 +437908,97.693,49.339 +437909,102.94,54.843 +437910,101,53.062 +437911,98.861,51.21 +437912,96.452,49.276 +437913,101.59,54.844 +437914,99.695,53.043 +437915,97.586,51.171 +437916,95.213,49.216 +437917,100.25,54.843 +437918,98.385,53.024 +437919,96.311,51.132 +437920,93.975,49.156 +437921,98.903,54.842 +437922,97.074,53.005 +437923,95.038,51.094 +437924,92.74,49.098 +437925,97.556,54.839 +437926,95.763,52.984 +437927,93.764,51.056 +437928,91.507,49.042 +437929,96.208,54.834 +437930,94.452,52.964 +437931,92.492,51.018 +437932,90.276,48.987 +437933,94.859,54.828 +437934,93.14,52.943 +437935,91.22,50.981 +437936,89.046,48.934 +437937,93.508,54.82 +437938,91.828,52.921 +437939,89.949,50.945 +437940,87.818,48.883 +437941,92.156,54.812 +437942,90.516,52.899 +437943,88.678,50.909 +437944,86.593,48.833 +437945,90.803,54.801 +437946,89.203,52.876 +437947,87.408,50.874 +437948,85.369,48.785 +437949,89.449,54.789 +437950,87.89,52.853 +437951,86.138,50.839 +437952,84.146,48.738 +437953,88.094,54.776 +437954,86.576,52.829 +437955,84.869,50.805 +437956,82.925,48.693 +437957,86.738,54.761 +437958,85.262,52.805 +437959,83.601,50.772 +437960,81.706,48.65 +437961,85.38,54.745 +437962,83.948,52.781 +437963,82.333,50.739 +437964,80.489,48.608 +437965,84.022,54.727 +437966,82.633,52.755 +437967,81.065,50.706 +437968,79.273,48.568 +437969,82.663,54.708 +437970,81.318,52.73 +437971,79.798,50.674 +437972,78.059,48.53 +437973,81.302,54.687 +437974,80.003,52.704 +437975,78.532,50.643 +437976,76.846,48.494 +437977,79.941,54.664 +437978,78.687,52.677 +437979,77.266,50.612 +437980,75.634,48.459 +437981,78.579,54.641 +437982,77.372,52.65 +437983,76,50.581 +437984,74.424,48.426 +437985,77.216,54.615 +437986,76.056,52.622 +437987,74.735,50.552 +437988,73.215,48.394 +437989,75.853,54.588 +437990,74.739,52.594 +437991,73.47,50.522 +437992,72.008,48.365 +437993,74.488,54.559 +437994,73.423,52.565 +437995,72.206,50.494 +437996,70.801,48.337 +437997,73.123,54.529 +437998,72.106,52.535 +437999,70.942,50.466 +438000,69.596,48.311 +438001,71.757,54.498 +438002,70.789,52.506 +438003,69.679,50.438 +438004,68.392,48.286 +438005,70.39,54.464 +438006,69.472,52.475 +438007,68.416,50.411 +438008,67.188,48.263 +438009,69.023,54.43 +438010,68.155,52.444 +438011,67.153,50.385 +438012,65.986,48.242 +438013,67.655,54.393 +438014,66.837,52.413 +438015,65.89,50.359 +438016,64.785,48.223 +438017,66.287,54.355 +438018,65.519,52.381 +438019,64.628,50.334 +438020,63.585,48.206 +438021,64.918,54.316 +438022,64.202,52.348 +438023,63.367,50.309 +438024,62.385,48.19 +438025,63.548,54.275 +438026,62.884,52.315 +438027,62.105,50.285 +438028,61.186,48.176 +438029,62.178,54.232 +438030,61.566,52.282 +438031,60.844,50.261 +438032,59.988,48.163 +438033,60.807,54.188 +438034,60.247,52.248 +438035,59.583,50.238 +438036,58.79,48.152 +438037,59.436,54.143 +438038,58.929,52.213 +438039,58.322,50.216 +438040,57.593,48.143 +438041,58.065,54.095 +438042,57.611,52.178 +438043,57.062,50.194 +438044,56.397,48.136 +438045,56.693,54.047 +438046,56.292,52.142 +438047,55.801,50.172 +438048,55.201,48.13 +438049,55.321,53.996 +438050,54.974,52.106 +438051,54.541,50.151 +438052,54.005,48.126 +438053,53.949,53.945 +438054,53.655,52.07 +438055,53.282,50.131 +438056,52.81,48.124 +438057,52.576,53.891 +438058,52.337,52.032 +438059,52.022,50.111 +438060,51.615,48.123 +438061,51.203,53.837 +438062,51.018,51.995 +438063,50.762,50.092 +438064,50.42,48.123 +438065,49.83,53.78 +438066,49.7,51.957 +438067,49.503,50.073 +438068,49.226,48.126 +438069,48.457,53.723 +438070,48.381,51.918 +438071,48.243,50.055 +438072,48.031,48.13 +438073,47.084,53.663 +438074,47.063,51.879 +438075,46.984,50.038 +438076,46.837,48.135 +438077,45.711,53.603 +438078,45.745,51.839 +438079,45.725,50.02 +438080,45.642,48.142 +438081,44.337,53.541 +438082,44.426,51.799 +438083,44.466,50.004 +438084,44.448,48.151 +438085,42.964,53.477 +438086,43.108,51.759 +438087,43.207,49.988 +438088,43.253,48.161 +438089,41.591,53.412 +438090,41.79,51.718 +438091,41.948,49.972 +438092,42.058,48.173 +438093,40.217,53.346 +438094,40.472,51.676 +438095,40.689,49.957 +438096,40.863,48.186 +438097,38.844,53.278 +438098,39.154,51.634 +438099,39.43,49.942 +438100,39.668,48.2 +438101,37.471,53.209 +438102,37.836,51.592 +438103,38.171,49.928 +438104,38.472,48.216 +438105,36.098,53.138 +438106,36.518,51.549 +438107,36.912,49.914 +438108,37.275,48.233 +438109,34.726,53.067 +438110,35.201,51.506 +438111,35.653,49.901 +438112,36.079,48.252 +438113,33.353,52.993 +438114,33.883,51.462 +438115,34.394,49.888 +438116,34.881,48.272 +438117,31.981,52.919 +438118,32.566,51.418 +438119,33.134,49.876 +438120,33.684,48.293 +438121,30.609,52.843 +438122,31.249,51.373 +438123,31.875,49.864 +438124,32.485,48.315 +438125,29.238,52.766 +438126,29.932,51.328 +438127,30.616,49.853 +438128,31.286,48.339 +438129,27.867,52.688 +438130,28.616,51.283 +438131,29.356,49.842 +438132,30.086,48.364 +438133,26.497,52.609 +438134,27.3,51.237 +438135,28.096,49.831 +438136,28.886,48.39 +438137,25.126,52.528 +438138,25.984,51.191 +438139,26.836,49.821 +438140,27.684,48.418 +438141,23.757,52.446 +438142,24.668,51.144 +438143,25.576,49.811 +438144,26.482,48.446 +438145,22.388,52.363 +438146,23.353,51.097 +438147,24.316,49.802 +438148,25.278,48.476 +438149,21.019,52.279 +438150,22.038,51.05 +438151,23.056,49.793 +438152,24.074,48.506 +438153,19.652,52.194 +438154,20.723,51.003 +438155,21.795,49.784 +438156,22.869,48.538 +438157,18.285,52.107 +438158,19.408,50.955 +438159,20.534,49.776 +438160,21.662,48.571 +438161,16.918,52.02 +438162,18.094,50.906 +438163,19.273,49.768 +438164,20.455,48.605 +438165,15.553,51.932 +438166,16.781,50.858 +438167,18.012,49.76 +438168,19.246,48.639 +438169,14.188,51.842 +438170,15.467,50.809 +438171,16.75,49.753 +438172,18.037,48.675 +438173,12.824,51.752 +438174,14.154,50.76 +438175,15.488,49.746 +438176,16.825,48.711 +438177,11.46,51.661 +438178,12.842,50.71 +438179,14.226,49.739 +438180,15.613,48.748 +438181,10.098,51.569 +438182,11.529,50.661 +438183,12.963,49.733 +438184,14.4,48.787 +438185,8.7366,51.475 +438186,10.218,50.611 +438187,11.7,49.727 +438188,13.185,48.825 +438189,7.3761,51.382 +438190,8.9064,50.56 +438191,10.437,49.721 +438192,11.968,48.865 +438193,6.0167,51.287 +438194,7.5955,50.51 +438195,9.1731,49.715 +438196,10.751,48.905 +438197,4.6583,51.191 +438198,6.2852,50.459 +438199,7.9092,49.71 +438200,9.5315,48.946 +438201,3.301,51.095 +438202,4.9753,50.408 +438203,6.6448,49.705 +438204,8.3108,48.988 +438205,1.9448,50.998 +438206,3.6659,50.357 +438207,5.38,49.7 +438208,7.0887,49.03 +438209,0.58971,50.9 +438210,2.357,50.305 +438211,4.1149,49.696 +438212,5.8651,49.073 +438213,359.24,50.802 +438214,1.0486,50.254 +438215,2.8493,49.691 +438216,4.6398,49.116 +438217,357.88,50.703 +438218,359.74,50.202 +438219,1.5834,49.687 +438220,3.413,49.159 +438221,356.53,50.603 +438222,358.43,50.15 +438223,0.31697,49.683 +438224,2.1846,49.204 +438225,355.18,50.503 +438226,357.13,50.098 +438227,359.05,49.679 +438228,0.95458,49.248 +438229,353.83,50.402 +438230,355.82,50.046 +438231,357.78,49.675 +438232,359.72,49.293 +438233,352.49,50.301 +438234,354.51,49.993 +438235,356.52,49.672 +438236,358.49,49.338 +438237,351.14,50.2 +438238,353.21,49.941 +438239,355.25,49.668 +438240,357.25,49.384 +438241,349.8,50.098 +438242,351.91,49.888 +438243,353.98,49.665 +438244,356.02,49.429 +438245,348.45,49.995 +438246,350.6,49.836 +438247,352.71,49.662 +438248,354.78,49.475 +438249,347.11,49.892 +438250,349.3,49.783 +438251,351.44,49.659 +438252,353.54,49.522 +438253,345.77,49.789 +438254,348,49.73 +438255,350.17,49.656 +438256,352.3,49.568 +438257,344.43,49.686 +438258,346.69,49.677 +438259,348.9,49.653 +438260,351.05,49.614 +438261,343.1,49.583 +438262,345.39,49.624 +438263,347.63,49.65 +438264,349.81,49.661 +438265,341.76,49.479 +438266,344.09,49.572 +438267,346.36,49.647 +438268,348.56,49.707 +438269,340.43,49.375 +438270,342.79,49.519 +438271,345.08,49.644 +438272,347.31,49.754 +438273,339.1,49.271 +438274,341.49,49.466 +438275,343.81,49.641 +438276,346.06,49.8 +438277,337.77,49.167 +438278,340.19,49.413 +438279,342.54,49.638 +438280,344.81,49.846 +438281,336.44,49.063 +438282,338.9,49.36 +438283,341.26,49.636 +438284,343.55,49.892 +438285,335.11,48.959 +438286,337.6,49.307 +438287,339.99,49.633 +438288,342.3,49.938 +438289,333.79,48.855 +438290,336.3,49.254 +438291,338.71,49.63 +438292,341.04,49.984 +438293,332.46,48.751 +438294,335.01,49.202 +438295,337.44,49.627 +438296,339.78,50.03 +438297,331.14,48.648 +438298,333.71,49.149 +438299,336.16,49.624 +438300,338.51,50.075 +438301,329.82,48.544 +438302,332.42,49.097 +438303,334.89,49.621 +438304,337.25,50.12 +438305,328.51,48.441 +438306,331.12,49.044 +438307,333.61,49.618 +438308,335.98,50.165 +438309,327.19,48.338 +438310,329.83,48.992 +438311,332.33,49.614 +438312,334.72,50.209 +438313,325.88,48.235 +438314,328.54,48.94 +438315,331.05,49.611 +438316,333.45,50.253 +438317,324.57,48.133 +438318,327.25,48.888 +438319,329.77,49.608 +438320,332.17,50.296 +438321,323.26,48.031 +438322,325.95,48.836 +438323,328.49,49.604 +438324,330.9,50.339 +438325,321.95,47.929 +438326,324.66,48.784 +438327,327.21,49.6 +438328,329.63,50.381 +438329,320.65,47.828 +438330,323.38,48.733 +438331,325.93,49.596 +438332,328.35,50.423 +438333,319.35,47.728 +438334,322.09,48.682 +438335,324.65,49.592 +438336,327.07,50.464 +438337,318.05,47.628 +438338,320.8,48.631 +438339,323.37,49.588 +438340,325.79,50.505 +438341,316.75,47.528 +438342,319.51,48.58 +438343,322.09,49.583 +438344,324.51,50.545 +438345,315.45,47.43 +438346,318.23,48.529 +438347,320.81,49.579 +438348,323.22,50.584 +438349,314.16,47.332 +438350,316.94,48.479 +438351,319.52,49.574 +438352,321.94,50.623 +438353,312.87,47.234 +438354,315.66,48.429 +438355,318.24,49.569 +438356,320.65,50.66 +438357,311.58,47.138 +438358,314.37,48.379 +438359,316.95,49.563 +438360,319.36,50.697 +438361,310.29,47.042 +438362,313.09,48.33 +438363,315.67,49.558 +438364,318.06,50.733 +438365,309.01,46.947 +438366,311.81,48.281 +438367,314.38,49.552 +438368,316.77,50.769 +438369,307.72,46.853 +438370,310.53,48.232 +438371,313.1,49.546 +438372,315.48,50.803 +438373,306.44,46.76 +438374,309.24,48.183 +438375,311.81,49.539 +438376,314.18,50.836 +438377,305.16,46.668 +438378,307.96,48.135 +438379,310.52,49.533 +438380,312.88,50.869 +438381,303.89,46.577 +438382,306.69,48.087 +438383,309.23,49.526 +438384,311.58,50.901 +438385,302.62,46.487 +438386,305.41,48.04 +438387,307.94,49.518 +438388,310.28,50.931 +438389,301.35,46.398 +438390,304.13,47.993 +438391,306.65,49.51 +438392,308.97,50.961 +438393,300.08,46.31 +438394,302.85,47.946 +438395,305.37,49.502 +438396,307.67,50.989 +438397,298.81,46.224 +438398,301.58,47.9 +438399,304.07,49.494 +438400,306.36,51.016 +438401,297.55,46.138 +438402,300.3,47.854 +438403,302.78,49.485 +438404,305.05,51.043 +438405,296.29,46.054 +438406,299.03,47.809 +438407,301.49,49.476 +438408,303.74,51.068 +438409,295.03,45.971 +438410,297.75,47.764 +438411,300.2,49.467 +438412,302.43,51.092 +438413,293.77,45.889 +438414,296.48,47.719 +438415,298.91,49.457 +438416,301.11,51.115 +438417,292.51,45.809 +438418,295.21,47.675 +438419,297.62,49.447 +438420,299.8,51.136 +438421,291.26,45.73 +438422,293.94,47.632 +438423,296.32,49.436 +438424,298.48,51.157 +438425,290.01,45.653 +438426,292.67,47.589 +438427,295.03,49.425 +438428,297.16,51.176 +438429,288.76,45.577 +438430,291.4,47.546 +438431,293.73,49.413 +438432,295.84,51.193 +438433,287.52,45.502 +438434,290.13,47.504 +438435,292.44,49.402 +438436,294.52,51.21 +438437,286.28,45.429 +438438,288.86,47.462 +438439,291.14,49.389 +438440,293.2,51.225 +438441,285.04,45.357 +438442,287.59,47.421 +438443,289.85,49.376 +438444,291.87,51.239 +438445,283.8,45.287 +438446,286.32,47.38 +438447,288.55,49.363 +438448,290.55,51.251 +438449,282.56,45.219 +438450,285.06,47.34 +438451,287.25,49.349 +438452,289.22,51.262 +438453,281.33,45.152 +438454,283.79,47.301 +438455,285.96,49.335 +438456,287.89,51.272 +438457,280.09,45.087 +438458,282.53,47.262 +438459,284.66,49.321 +438460,286.56,51.28 +438461,278.86,45.024 +438462,281.26,47.224 +438463,283.36,49.306 +438464,285.23,51.287 +438465,277.64,44.962 +438466,280,47.186 +438467,282.06,49.29 +438468,283.9,51.292 +438469,276.41,44.902 +438470,278.73,47.148 +438471,280.76,49.274 +438472,282.56,51.296 +438473,275.19,44.844 +438474,277.47,47.112 +438475,279.46,49.257 +438476,281.23,51.299 +438477,273.96,44.787 +438478,276.21,47.076 +438479,278.16,49.24 +438480,279.89,51.299 +438481,272.74,44.733 +438482,274.95,47.04 +438483,276.86,49.223 +438484,278.55,51.299 +438485,271.53,44.68 +438486,273.69,47.005 +438487,275.56,49.204 +438488,277.22,51.296 +438489,270.31,44.629 +438490,272.43,46.971 +438491,274.26,49.186 +438492,275.88,51.293 +438493,269.1,44.579 +438494,271.17,46.937 +438495,272.96,49.167 +438496,274.53,51.287 +438497,267.88,44.532 +438498,269.91,46.904 +438499,271.66,49.147 +438500,273.19,51.281 +438501,266.67,44.487 +438502,268.65,46.872 +438503,270.36,49.127 +438504,271.85,51.272 +438505,265.46,44.443 +438506,267.4,46.84 +438507,269.05,49.106 +438508,270.51,51.262 +438509,264.26,44.402 +438510,266.14,46.808 +438511,267.75,49.085 +438512,269.16,51.25 +438513,263.05,44.362 +438514,264.88,46.778 +438515,266.45,49.063 +438516,267.81,51.237 +438517,261.85,44.324 +438518,263.63,46.748 +438519,265.15,49.041 +438520,266.47,51.222 +438521,260.65,44.288 +438522,262.37,46.719 +438523,263.84,49.018 +438524,265.12,51.206 +438525,259.45,44.254 +438526,261.12,46.69 +438527,262.54,48.994 +438528,263.77,51.187 +438529,258.25,44.222 +438530,259.86,46.662 +438531,261.23,48.97 +438532,262.42,51.168 +438533,257.05,44.192 +438534,258.61,46.634 +438535,259.93,48.946 +438536,261.07,51.146 +438537,255.85,44.164 +438538,257.35,46.608 +438539,258.63,48.921 +438540,259.72,51.123 +438541,254.66,44.138 +438542,256.1,46.581 +438543,257.32,48.895 +438544,258.37,51.098 +438545,253.46,44.114 +438546,254.85,46.556 +438547,256.02,48.869 +438548,257.02,51.072 +438549,252.27,44.092 +438550,253.6,46.531 +438551,254.71,48.842 +438552,255.66,51.044 +438553,251.08,44.072 +438554,252.34,46.507 +438555,253.41,48.815 +438556,254.31,51.014 +438557,249.89,44.054 +438558,251.09,46.484 +438559,252.1,48.787 +438560,252.96,50.983 +438561,248.7,44.038 +438562,249.84,46.461 +438563,250.79,48.759 +438564,251.6,50.95 +438565,247.51,44.023 +438566,248.59,46.438 +438567,249.49,48.73 +438568,250.24,50.915 +438569,246.32,44.011 +438570,247.34,46.417 +438571,248.18,48.7 +438572,248.89,50.878 +438573,245.13,44.001 +438574,246.09,46.396 +438575,246.88,48.67 +438576,247.53,50.84 +438577,243.95,43.992 +438578,244.84,46.376 +438579,245.57,48.64 +438580,246.18,50.801 +438581,242.76,43.986 +438582,243.59,46.356 +438583,244.26,48.609 +438584,244.82,50.759 +438585,241.58,43.982 +438586,242.34,46.337 +438587,242.96,48.577 +438588,243.46,50.716 +438589,240.39,43.979 +438590,241.09,46.319 +438591,241.65,48.545 +438592,242.1,50.672 +438593,239.21,43.978 +438594,239.84,46.301 +438595,240.35,48.512 +438596,240.74,50.625 +438597,238.02,43.979 +438598,238.59,46.284 +438599,239.04,48.478 +438600,239.39,50.577 +438601,236.84,43.982 +438602,237.35,46.267 +438603,237.73,48.445 +438604,238.03,50.528 +438605,235.66,43.987 +438606,236.1,46.251 +438607,236.43,48.41 +438608,236.67,50.476 +438609,234.47,43.994 +438610,234.85,46.236 +438611,235.12,48.375 +438612,235.31,50.424 +438613,233.29,44.003 +438614,233.6,46.222 +438615,233.81,48.34 +438616,233.95,50.369 +438617,232.11,44.013 +438618,232.35,46.208 +438619,232.51,48.304 +438620,232.59,50.313 +438621,230.93,44.025 +438622,231.11,46.194 +438623,231.2,48.267 +438624,231.23,50.256 +438625,229.74,44.039 +438626,229.86,46.181 +438627,229.9,48.23 +438628,229.87,50.196 +438629,228.56,44.055 +438630,228.61,46.169 +438631,228.59,48.193 +438632,228.51,50.136 +438633,227.38,44.072 +438634,227.36,46.158 +438635,227.28,48.155 +438636,227.15,50.074 +438637,226.19,44.091 +438638,226.11,46.147 +438639,225.98,48.116 +438640,225.79,50.01 +438641,225.01,44.112 +438642,224.87,46.136 +438643,224.67,48.078 +438644,224.44,49.944 +438645,223.83,44.135 +438646,223.62,46.126 +438647,223.37,48.038 +438648,223.08,49.878 +438649,222.64,44.159 +438650,222.37,46.117 +438651,222.06,47.998 +438652,221.72,49.809 +438653,221.46,44.184 +438654,221.12,46.108 +438655,220.76,47.958 +438656,220.36,49.74 +438657,220.27,44.211 +438658,219.88,46.1 +438659,219.45,47.917 +438660,219,49.668 +438661,219.09,44.24 +438662,218.63,46.092 +438663,218.15,47.876 +438664,217.64,49.596 +438665,217.9,44.27 +438666,217.38,46.085 +438667,216.84,47.834 +438668,216.29,49.522 +438669,216.72,44.302 +438670,216.13,46.078 +438671,215.54,47.792 +438672,214.93,49.446 +438673,215.53,44.335 +438674,214.89,46.072 +438675,214.23,47.749 +438676,213.57,49.37 +438677,214.34,44.369 +438678,213.64,46.067 +438679,212.93,47.706 +438680,212.21,49.291 +438681,213.15,44.405 +438682,212.39,46.061 +438683,211.62,47.663 +438684,210.86,49.212 +438685,211.96,44.442 +438686,211.14,46.057 +438687,210.32,47.619 +438688,209.5,49.131 +438689,210.77,44.481 +438690,209.89,46.053 +438691,209.02,47.574 +438692,208.15,49.049 +438693,209.58,44.52 +438694,208.64,46.049 +438695,207.72,47.53 +438696,206.79,48.966 +438697,208.38,44.561 +438698,207.39,46.045 +438699,206.41,47.485 +438700,205.44,48.881 +438701,207.19,44.603 +438702,206.14,46.043 +438703,205.11,47.439 +438704,204.09,48.795 +438705,205.99,44.646 +438706,204.89,46.04 +438707,203.81,47.394 +438708,202.74,48.708 +438709,204.8,44.691 +438710,203.65,46.038 +438711,202.51,47.348 +438712,201.38,48.62 +438713,203.6,44.736 +438714,202.4,46.037 +438715,201.21,47.301 +438716,200.03,48.531 +438717,202.4,44.783 +438718,201.14,46.035 +438719,199.91,47.254 +438720,198.68,48.441 +438721,201.2,44.83 +438722,199.89,46.035 +438723,198.61,47.207 +438724,197.34,48.349 +438725,200,44.879 +438726,198.64,46.034 +438727,197.31,47.16 +438728,195.99,48.257 +438729,198.8,44.928 +438730,197.39,46.034 +438731,196.01,47.112 +438732,194.64,48.163 +438733,197.59,44.978 +438734,196.14,46.034 +438735,194.71,47.064 +438736,193.29,48.069 +438737,196.39,45.029 +438738,194.89,46.035 +438739,193.41,47.016 +438740,191.95,47.973 +438741,195.18,45.081 +438742,193.64,46.036 +438743,192.11,46.968 +438744,190.6,47.877 +438745,193.97,45.134 +438746,192.38,46.037 +438747,190.81,46.919 +438748,189.26,47.78 +438749,192.76,45.187 +438750,191.13,46.038 +438751,189.52,46.87 +438752,187.92,47.682 +438753,191.55,45.241 +438754,189.88,46.04 +438755,188.22,46.821 +438756,186.58,47.583 +438757,190.33,45.296 +438758,188.62,46.042 +438759,186.93,46.772 +438760,185.24,47.483 +438761,189.12,45.351 +438762,187.37,46.045 +438763,185.63,46.722 +438764,183.9,47.383 +438765,187.9,45.407 +438766,186.11,46.047 +438767,184.34,46.672 +438768,182.56,47.282 +438769,186.68,45.463 +438770,184.86,46.05 +438771,183.04,46.623 +438772,181.23,47.18 +438773,185.46,45.52 +438774,183.6,46.053 +438775,181.75,46.572 +438776,179.89,47.078 +438777,184.24,45.577 +438778,182.35,46.056 +438779,180.45,46.522 +438780,178.56,46.975 +438781,183.02,45.635 +438782,181.09,46.059 +438783,179.16,46.472 +438784,177.23,46.871 +438785,181.79,45.692 +438786,179.83,46.063 +438787,177.87,46.422 +438788,175.9,46.767 +438789,180.56,45.751 +438790,178.58,46.067 +438791,176.58,46.371 +438792,174.57,46.662 +438793,179.33,45.809 +438794,177.32,46.071 +438795,175.29,46.32 +438796,173.24,46.557 +438797,178.1,45.868 +438798,176.06,46.075 +438799,174,46.27 +438800,171.91,46.452 +438801,176.87,45.927 +438802,174.8,46.079 +438803,172.71,46.219 +438804,170.59,46.346 +438805,175.63,45.986 +438806,173.54,46.083 +438807,171.42,46.168 +438808,169.27,46.24 +438809,174.4,46.045 +438810,172.28,46.087 +438811,170.13,46.117 +438812,167.95,46.133 +438813,173.16,46.104 +438814,171.02,46.092 +438815,168.84,46.067 +438816,166.63,46.027 +438817,171.92,46.163 +438818,169.76,46.096 +438819,167.56,46.016 +438820,165.31,45.92 +438821,170.68,46.222 +438822,168.5,46.101 +438823,166.27,45.965 +438824,163.99,45.813 +438825,169.43,46.281 +438826,167.24,46.105 +438827,164.99,45.914 +438828,162.68,45.706 +438829,168.19,46.34 +438830,165.97,46.11 +438831,163.7,45.863 +438832,161.36,45.599 +438833,166.94,46.398 +438834,164.71,46.115 +438835,162.42,45.813 +438836,160.05,45.491 +438837,165.69,46.457 +438838,163.45,46.119 +438839,161.13,45.762 +438840,158.74,45.384 +438841,164.44,46.515 +438842,162.18,46.124 +438843,159.85,45.712 +438844,157.44,45.277 +438845,163.18,46.573 +438846,160.92,46.128 +438847,158.57,45.661 +438848,156.13,45.17 +438849,161.93,46.631 +438850,159.65,46.133 +438851,157.29,45.611 +438852,154.83,45.063 +438853,160.67,46.688 +438854,158.38,46.137 +438855,156.01,45.561 +438856,153.53,44.956 +438857,159.41,46.745 +438858,157.12,46.142 +438859,154.73,45.511 +438860,152.23,44.85 +438861,158.15,46.801 +438862,155.85,46.146 +438863,153.45,45.461 +438864,150.93,44.744 +438865,156.89,46.857 +438866,154.58,46.15 +438867,152.17,45.411 +438868,149.63,44.638 +438869,155.62,46.913 +438870,153.31,46.154 +438871,150.89,45.362 +438872,148.34,44.533 +438873,154.36,46.968 +438874,152.05,46.158 +438875,149.62,45.313 +438876,147.05,44.428 +438877,153.09,47.022 +438878,150.78,46.162 +438879,148.34,45.264 +438880,145.76,44.323 +438881,151.82,47.076 +438882,149.51,46.165 +438883,147.06,45.215 +438884,144.47,44.219 +438885,150.54,47.129 +438886,148.24,46.169 +438887,145.79,45.166 +438888,143.19,44.116 +438889,149.27,47.181 +438890,146.96,46.172 +438891,144.52,45.118 +438892,141.9,44.013 +438893,147.99,47.233 +438894,145.69,46.175 +438895,143.24,45.07 +438896,140.62,43.911 +438897,146.72,47.283 +438898,144.42,46.178 +438899,141.97,45.022 +438900,139.34,43.809 +438901,145.44,47.333 +438902,143.15,46.181 +438903,140.7,44.975 +438904,138.07,43.709 +438905,144.16,47.383 +438906,141.87,46.183 +438907,139.43,44.928 +438908,136.79,43.609 +438909,142.87,47.431 +438910,140.6,46.185 +438911,138.16,44.881 +438912,135.52,43.51 +438913,141.59,47.478 +438914,139.32,46.187 +438915,136.89,44.834 +438916,134.25,43.412 +438917,140.3,47.525 +438918,138.05,46.189 +438919,135.62,44.788 +438920,132.98,43.314 +438921,139.01,47.57 +438922,136.77,46.19 +438923,134.36,44.743 +438924,131.72,43.218 +438925,137.72,47.615 +438926,135.5,46.191 +438927,133.09,44.698 +438928,130.46,43.123 +438929,136.43,47.658 +438930,134.22,46.192 +438931,131.82,44.653 +438932,129.2,43.029 +438933,135.14,47.701 +438934,132.94,46.193 +438935,130.56,44.608 +438936,127.94,42.936 +438937,133.84,47.742 +438938,131.66,46.193 +438939,129.29,44.564 +438940,126.68,42.844 +438941,132.54,47.782 +438942,130.39,46.193 +438943,128.03,44.521 +438944,125.43,42.753 +438945,131.25,47.821 +438946,129.11,46.192 +438947,126.77,44.478 +438948,124.18,42.664 +438949,129.95,47.859 +438950,127.83,46.191 +438951,125.51,44.435 +438952,122.93,42.576 +438953,128.64,47.896 +438954,126.55,46.19 +438955,124.24,44.393 +438956,121.68,42.489 +438957,127.34,47.931 +438958,125.27,46.188 +438959,122.98,44.351 +438960,120.43,42.404 +438961,126.04,47.966 +438962,123.99,46.186 +438963,121.72,44.31 +438964,119.19,42.32 +438965,124.73,47.999 +438966,122.7,46.184 +438967,120.46,44.269 +438968,117.95,42.237 +438969,123.42,48.03 +438970,121.42,46.181 +438971,119.21,44.229 +438972,116.71,42.156 +438973,122.11,48.06 +438974,120.14,46.178 +438975,117.95,44.19 +438976,115.48,42.077 +438977,120.8,48.089 +438978,118.86,46.174 +438979,116.69,44.151 +438980,114.25,41.999 +438981,119.49,48.117 +438982,117.57,46.17 +438983,115.44,44.112 +438984,113.01,41.923 +438985,118.18,48.143 +438986,116.29,46.165 +438987,114.18,44.074 +438988,111.79,41.848 +438989,116.86,48.168 +438990,115,46.16 +438991,112.93,44.037 +438992,110.56,41.775 +438993,115.55,48.191 +438994,113.72,46.155 +438995,111.67,44 +438996,109.33,41.704 +438997,114.23,48.213 +438998,112.43,46.149 +438999,110.42,43.964 +439000,108.11,41.635 +439001,112.91,48.233 +439002,111.15,46.143 +439003,109.17,43.929 +439004,106.89,41.567 +439005,111.59,48.252 +439006,109.86,46.136 +439007,107.91,43.894 +439008,105.67,41.501 +439009,110.27,48.269 +439010,108.58,46.128 +439011,106.66,43.86 +439012,104.46,41.437 +439013,108.95,48.285 +439014,107.29,46.121 +439015,105.41,43.826 +439016,103.24,41.375 +439017,107.63,48.299 +439018,106,46.112 +439019,104.16,43.793 +439020,102.03,41.315 +439021,106.3,48.312 +439022,104.71,46.103 +439023,102.91,43.761 +439024,100.82,41.257 +439025,104.98,48.323 +439026,103.43,46.094 +439027,101.66,43.729 +439028,99.612,41.201 +439029,103.65,48.332 +439030,102.14,46.084 +439031,100.41,43.698 +439032,98.406,41.146 +439033,102.32,48.34 +439034,100.85,46.074 +439035,99.166,43.668 +439036,97.202,41.094 +439037,100.99,48.346 +439038,99.559,46.063 +439039,97.919,43.638 +439040,95.999,41.044 +439041,99.663,48.351 +439042,98.27,46.051 +439043,96.672,43.609 +439044,94.798,40.996 +439045,98.332,48.354 +439046,96.98,46.039 +439047,95.426,43.581 +439048,93.599,40.95 +439049,97.001,48.355 +439050,95.69,46.026 +439051,94.181,43.554 +439052,92.402,40.906 +439053,95.669,48.354 +439054,94.4,46.013 +439055,92.936,43.527 +439056,91.206,40.864 +439057,94.335,48.352 +439058,93.109,46 +439059,91.691,43.501 +439060,90.012,40.824 +439061,93.001,48.348 +439062,91.819,45.985 +439063,90.447,43.475 +439064,88.82,40.787 +439065,91.666,48.342 +439066,90.528,45.97 +439067,89.204,43.451 +439068,87.629,40.751 +439069,90.331,48.335 +439070,89.236,45.955 +439071,87.961,43.427 +439072,86.439,40.718 +439073,88.994,48.326 +439074,87.945,45.939 +439075,86.718,43.404 +439076,85.251,40.687 +439077,87.657,48.315 +439078,86.653,45.923 +439079,85.476,43.381 +439080,84.064,40.659 +439081,86.32,48.303 +439082,85.361,45.906 +439083,84.234,43.359 +439084,82.878,40.632 +439085,84.981,48.288 +439086,84.069,45.888 +439087,82.993,43.338 +439088,81.694,40.608 +439089,83.643,48.272 +439090,82.777,45.87 +439091,81.752,43.318 +439092,80.511,40.585 +439093,82.303,48.255 +439094,81.484,45.851 +439095,80.511,43.298 +439096,79.329,40.566 +439097,80.963,48.235 +439098,80.191,45.832 +439099,79.271,43.28 +439100,78.148,40.548 +439101,79.623,48.214 +439102,78.899,45.812 +439103,78.031,43.262 +439104,76.967,40.532 +439105,78.282,48.191 +439106,77.606,45.791 +439107,76.791,43.244 +439108,75.788,40.519 +439109,76.94,48.166 +439110,76.313,45.77 +439111,75.552,43.228 +439112,74.61,40.508 +439113,75.599,48.139 +439114,75.02,45.748 +439115,74.313,43.212 +439116,73.432,40.5 +439117,74.257,48.111 +439118,73.727,45.726 +439119,73.074,43.197 +439120,72.255,40.493 +439121,72.914,48.081 +439122,72.433,45.703 +439123,71.835,43.182 +439124,71.079,40.489 +439125,71.572,48.049 +439126,71.14,45.68 +439127,70.597,43.169 +439128,69.904,40.487 +439129,70.229,48.016 +439130,69.847,45.656 +439131,69.359,43.156 +439132,68.729,40.487 +439133,68.886,47.98 +439134,68.554,45.632 +439135,68.121,43.144 +439136,67.554,40.489 +439137,67.543,47.943 +439138,67.26,45.606 +439139,66.883,43.132 +439140,66.38,40.493 +439141,66.199,47.904 +439142,65.967,45.581 +439143,65.646,43.121 +439144,65.206,40.5 +439145,64.856,47.864 +439146,64.674,45.555 +439147,64.408,43.111 +439148,64.032,40.509 +439149,63.512,47.822 +439150,63.38,45.528 +439151,63.171,43.102 +439152,62.858,40.519 +439153,62.168,47.778 +439154,62.087,45.501 +439155,61.934,43.094 +439156,61.685,40.532 +439157,60.825,47.732 +439158,60.794,45.473 +439159,60.697,43.086 +439160,60.512,40.548 +439161,59.481,47.685 +439162,59.501,45.444 +439163,59.46,43.079 +439164,59.338,40.565 +439165,58.138,47.635 +439166,58.208,45.415 +439167,58.223,43.072 +439168,58.165,40.584 +439169,56.794,47.585 +439170,56.915,45.386 +439171,56.986,43.066 +439172,56.991,40.605 +439173,55.451,47.532 +439174,55.622,45.356 +439175,55.749,43.061 +439176,55.817,40.628 +439177,54.108,47.478 +439178,54.33,45.325 +439179,54.512,43.057 +439180,54.643,40.653 +439181,52.765,47.423 +439182,53.037,45.294 +439183,53.275,43.053 +439184,53.468,40.681 +439185,51.423,47.365 +439186,51.745,45.263 +439187,52.038,43.05 +439188,52.293,40.71 +439189,50.081,47.306 +439190,50.453,45.231 +439191,50.801,43.048 +439192,51.118,40.741 +439193,48.739,47.246 +439194,49.161,45.198 +439195,49.564,43.046 +439196,49.942,40.773 +439197,47.397,47.184 +439198,47.869,45.165 +439199,48.327,43.045 +439200,48.766,40.808 +439201,46.056,47.12 +439202,46.577,45.132 +439203,47.09,43.045 +439204,47.588,40.845 +439205,44.715,47.055 +439206,45.286,45.098 +439207,45.852,43.045 +439208,46.41,40.883 +439209,43.375,46.988 +439210,43.995,45.063 +439211,44.615,43.046 +439212,45.232,40.923 +439213,42.035,46.92 +439214,42.704,45.028 +439215,43.377,43.047 +439216,44.052,40.964 +439217,40.696,46.85 +439218,41.414,44.993 +439219,42.139,43.049 +439220,42.872,41.008 +439221,39.357,46.779 +439222,40.123,44.957 +439223,40.901,43.052 +439224,41.69,41.053 +439225,38.019,46.706 +439226,38.834,44.921 +439227,39.663,43.055 +439228,40.508,41.099 +439229,36.681,46.632 +439230,37.544,44.884 +439231,38.424,43.059 +439232,39.325,41.147 +439233,35.345,46.557 +439234,36.255,44.847 +439235,37.185,43.063 +439236,38.14,41.197 +439237,34.008,46.48 +439238,34.966,44.809 +439239,35.946,43.068 +439240,36.954,41.248 +439241,32.673,46.402 +439242,33.677,44.771 +439243,34.707,43.073 +439244,35.768,41.3 +439245,31.339,46.322 +439246,32.389,44.733 +439247,33.468,43.079 +439248,34.579,41.354 +439249,30.005,46.241 +439250,31.101,44.694 +439251,32.228,43.085 +439252,33.39,41.409 +439253,28.672,46.159 +439254,29.814,44.655 +439255,30.988,43.092 +439256,32.199,41.466 +439257,27.34,46.076 +439258,28.527,44.616 +439259,29.747,43.1 +439260,31.007,41.524 +439261,26.009,45.991 +439262,27.24,44.576 +439263,28.506,43.108 +439264,29.814,41.583 +439265,24.679,45.906 +439266,25.954,44.536 +439267,27.265,43.116 +439268,28.619,41.643 +439269,23.35,45.819 +439270,24.668,44.495 +439271,26.024,43.125 +439272,27.422,41.705 +439273,22.022,45.731 +439274,23.383,44.454 +439275,24.782,43.134 +439276,26.224,41.767 +439277,20.695,45.641 +439278,22.098,44.413 +439279,23.54,43.144 +439280,25.025,41.83 +439281,19.369,45.551 +439282,20.813,44.372 +439283,22.297,43.154 +439284,23.824,41.895 +439285,18.044,45.46 +439286,19.53,44.33 +439287,21.054,43.164 +439288,22.621,41.96 +439289,16.72,45.368 +439290,18.246,44.288 +439291,19.81,43.175 +439292,21.417,42.027 +439293,15.398,45.275 +439294,16.963,44.246 +439295,18.566,43.186 +439296,20.211,42.094 +439297,14.077,45.18 +439298,15.681,44.204 +439299,17.322,43.198 +439300,19.003,42.162 +439301,12.757,45.085 +439302,14.399,44.161 +439303,16.077,43.21 +439304,17.793,42.231 +439305,11.438,44.989 +439306,13.118,44.118 +439307,14.832,43.222 +439308,16.582,42.3 +439309,10.121,44.893 +439310,11.837,44.075 +439311,13.586,43.235 +439312,15.369,42.371 +439313,8.8048,44.795 +439314,10.557,44.032 +439315,12.34,43.248 +439316,14.154,42.442 +439317,7.4902,44.697 +439318,9.2777,43.989 +439319,11.093,43.261 +439320,12.938,42.513 +439321,6.1771,44.598 +439322,7.9987,43.945 +439323,9.8455,43.274 +439324,11.719,42.585 +439325,4.8653,44.498 +439326,6.7203,43.901 +439327,8.5977,43.288 +439328,10.499,42.657 +439329,3.5551,44.398 +439330,5.4426,43.858 +439331,7.3493,43.302 +439332,9.2767,42.73 +439333,2.2463,44.297 +439334,4.1654,43.814 +439335,6.1005,43.316 +439336,8.0526,42.804 +439337,0.93914,44.195 +439338,2.8889,43.77 +439339,4.8511,43.33 +439340,6.8267,42.877 +439341,359.63,44.093 +439342,1.613,43.726 +439343,3.6012,43.345 +439344,5.5989,42.951 +439345,358.33,43.991 +439346,0.3377,43.681 +439347,2.3507,43.36 +439348,4.3691,43.026 +439349,357.03,43.888 +439350,359.06,43.637 +439351,1.0997,43.374 +439352,3.1375,43.1 +439353,355.73,43.784 +439354,357.79,43.593 +439355,359.85,43.389 +439356,1.9039,43.175 +439357,354.43,43.681 +439358,356.52,43.549 +439359,358.6,43.405 +439360,0.66838,43.25 +439361,353.13,43.577 +439362,355.24,43.504 +439363,357.34,43.42 +439364,359.43,43.324 +439365,351.83,43.473 +439366,353.97,43.46 +439367,356.09,43.435 +439368,358.19,43.399 +439369,350.54,43.368 +439370,352.7,43.416 +439371,354.84,43.451 +439372,356.95,43.474 +439373,349.25,43.263 +439374,351.43,43.372 +439375,353.58,43.466 +439376,355.71,43.549 +439377,347.96,43.159 +439378,350.16,43.327 +439379,352.33,43.482 +439380,354.46,43.624 +439381,346.67,43.054 +439382,348.89,43.283 +439383,351.07,43.498 +439384,353.21,43.698 +439385,345.38,42.949 +439386,347.62,43.239 +439387,349.81,43.513 +439388,351.97,43.773 +439389,344.1,42.844 +439390,346.35,43.195 +439391,348.56,43.529 +439392,350.71,43.847 +439393,342.82,42.739 +439394,345.09,43.151 +439395,347.3,43.545 +439396,349.46,43.921 +439397,341.54,42.635 +439398,343.82,43.108 +439399,346.04,43.561 +439400,348.21,43.994 +439401,340.26,42.53 +439402,342.55,43.064 +439403,344.78,43.576 +439404,346.95,44.067 +439405,338.98,42.426 +439406,341.29,43.021 +439407,343.52,43.592 +439408,345.69,44.14 +439409,337.7,42.322 +439410,340.03,42.978 +439411,342.27,43.607 +439412,344.43,44.212 +439413,336.43,42.218 +439414,338.76,42.935 +439415,341,43.623 +439416,343.17,44.284 +439417,335.16,42.115 +439418,337.5,42.892 +439419,339.74,43.638 +439420,341.91,44.356 +439421,333.89,42.012 +439422,336.24,42.849 +439423,338.48,43.653 +439424,340.64,44.426 +439425,332.63,41.909 +439426,334.98,42.807 +439427,337.22,43.669 +439428,339.37,44.497 +439429,331.36,41.807 +439430,333.72,42.765 +439431,335.96,43.684 +439432,338.1,44.566 +439433,330.1,41.705 +439434,332.46,42.723 +439435,334.69,43.699 +439436,336.83,44.635 +439437,328.84,41.604 +439438,331.2,42.682 +439439,333.43,43.713 +439440,335.56,44.703 +439441,327.58,41.504 +439442,329.94,42.641 +439443,332.17,43.728 +439444,334.28,44.771 +439445,326.32,41.405 +439446,328.68,42.6 +439447,330.9,43.742 +439448,333,44.837 +439449,325.07,41.306 +439450,327.42,42.559 +439451,329.64,43.756 +439452,331.73,44.903 +439453,323.82,41.208 +439454,326.17,42.519 +439455,328.37,43.77 +439456,330.45,44.968 +439457,322.57,41.111 +439458,324.91,42.479 +439459,327.1,43.784 +439460,329.16,45.032 +439461,321.32,41.014 +439462,323.66,42.44 +439463,325.84,43.797 +439464,327.88,45.095 +439465,320.07,40.919 +439466,322.4,42.401 +439467,324.57,43.811 +439468,326.6,45.157 +439469,318.83,40.825 +439470,321.15,42.362 +439471,323.3,43.824 +439472,325.31,45.218 +439473,317.59,40.731 +439474,319.9,42.324 +439475,322.03,43.836 +439476,324.02,45.278 +439477,316.35,40.639 +439478,318.64,42.286 +439479,320.76,43.849 +439480,322.73,45.337 +439481,315.11,40.548 +439482,317.39,42.249 +439483,319.49,43.861 +439484,321.44,45.395 +439485,313.88,40.458 +439486,316.14,42.212 +439487,318.22,43.873 +439488,320.14,45.451 +439489,312.65,40.37 +439490,314.89,42.176 +439491,316.95,43.884 +439492,318.85,45.507 +439493,311.42,40.282 +439494,313.64,42.14 +439495,315.68,43.895 +439496,317.55,45.561 +439497,310.19,40.196 +439498,312.4,42.105 +439499,314.41,43.906 +439500,316.26,45.615 +439501,308.96,40.112 +439502,311.15,42.07 +439503,313.13,43.916 +439504,314.96,45.666 +439505,307.74,40.028 +439506,309.9,42.035 +439507,311.86,43.926 +439508,313.66,45.717 +439509,306.51,39.947 +439510,308.65,42.002 +439511,310.59,43.936 +439512,312.35,45.766 +439513,305.29,39.866 +439514,307.41,41.969 +439515,309.31,43.945 +439516,311.05,45.814 +439517,304.08,39.788 +439518,306.16,41.936 +439519,308.04,43.954 +439520,309.75,45.861 +439521,302.86,39.711 +439522,304.92,41.904 +439523,306.76,43.962 +439524,308.44,45.906 +439525,301.65,39.635 +439526,303.68,41.873 +439527,305.49,43.97 +439528,307.13,45.95 +439529,300.43,39.562 +439530,302.43,41.842 +439531,304.21,43.978 +439532,305.82,45.992 +439533,299.22,39.49 +439534,301.19,41.812 +439535,302.94,43.985 +439536,304.51,46.033 +439537,298.02,39.42 +439538,299.95,41.782 +439539,301.66,43.991 +439540,303.2,46.073 +439541,296.81,39.351 +439542,298.71,41.753 +439543,300.38,43.998 +439544,301.89,46.111 +439545,295.61,39.285 +439546,297.46,41.725 +439547,299.1,44.003 +439548,300.58,46.147 +439549,294.4,39.22 +439550,296.22,41.697 +439551,297.83,44.009 +439552,299.26,46.182 +439553,293.2,39.157 +439554,294.98,41.67 +439555,296.55,44.013 +439556,297.95,46.215 +439557,292.01,39.097 +439558,293.75,41.644 +439559,295.27,44.018 +439560,296.63,46.247 +439561,290.81,39.038 +439562,292.51,41.619 +439563,293.99,44.021 +439564,295.31,46.277 +439565,289.61,38.981 +439566,291.27,41.594 +439567,292.71,44.025 +439568,294,46.306 +439569,288.42,38.927 +439570,290.03,41.57 +439571,291.43,44.027 +439572,292.68,46.333 +439573,287.23,38.874 +439574,288.79,41.546 +439575,290.15,44.03 +439576,291.36,46.358 +439577,286.04,38.824 +439578,287.56,41.524 +439579,288.87,44.031 +439580,290.04,46.382 +439581,284.85,38.776 +439582,286.32,41.502 +439583,287.59,44.033 +439584,288.71,46.404 +439585,283.66,38.73 +439586,285.08,41.481 +439587,286.31,44.033 +439588,287.39,46.424 +439589,282.47,38.686 +439590,283.85,41.46 +439591,285.03,44.033 +439592,286.07,46.442 +439593,281.29,38.644 +439594,282.61,41.441 +439595,283.75,44.033 +439596,284.74,46.459 +439597,280.11,38.605 +439598,281.38,41.422 +439599,282.47,44.032 +439600,283.42,46.474 +439601,278.93,38.568 +439602,280.14,41.404 +439603,281.18,44.03 +439604,282.09,46.487 +439605,277.74,38.533 +439606,278.91,41.386 +439607,279.9,44.028 +439608,280.77,46.499 +439609,276.57,38.501 +439610,277.68,41.37 +439611,278.62,44.025 +439612,279.44,46.509 +439613,275.39,38.47 +439614,276.44,41.354 +439615,277.34,44.022 +439616,278.11,46.517 +439617,274.21,38.443 +439618,275.21,41.339 +439619,276.05,44.018 +439620,276.78,46.523 +439621,273.03,38.417 +439622,273.98,41.325 +439623,274.77,44.014 +439624,275.46,46.527 +439625,271.86,38.394 +439626,272.75,41.311 +439627,273.49,44.009 +439628,274.13,46.53 +439629,270.68,38.374 +439630,271.51,41.298 +439631,272.21,44.003 +439632,272.8,46.531 +439633,269.51,38.356 +439634,270.28,41.287 +439635,270.92,43.997 +439636,271.47,46.53 +439637,268.34,38.34 +439638,269.05,41.276 +439639,269.64,43.99 +439640,270.14,46.527 +439641,267.16,38.326 +439642,267.82,41.265 +439643,268.36,43.983 +439644,268.81,46.523 +439645,265.99,38.315 +439646,266.59,41.256 +439647,267.07,43.975 +439648,267.48,46.516 +439649,264.82,38.307 +439650,265.36,41.247 +439651,265.79,43.967 +439652,266.15,46.508 +439653,263.65,38.301 +439654,264.13,41.239 +439655,264.51,43.958 +439656,264.81,46.498 +439657,262.48,38.297 +439658,262.9,41.232 +439659,263.22,43.948 +439660,263.48,46.486 +439661,261.31,38.296 +439662,261.67,41.226 +439663,261.94,43.938 +439664,262.15,46.473 +439665,260.14,38.297 +439666,260.44,41.221 +439667,260.65,43.927 +439668,260.82,46.457 +439669,258.97,38.3 +439670,259.21,41.216 +439671,259.37,43.916 +439672,259.49,46.44 +439673,257.8,38.306 +439674,257.97,41.212 +439675,258.09,43.904 +439676,258.16,46.421 +439677,256.63,38.314 +439678,256.74,41.209 +439679,256.8,43.891 +439680,256.82,46.4 +439681,255.46,38.325 +439682,255.51,41.207 +439683,255.52,43.878 +439684,255.49,46.377 +439685,254.29,38.338 +439686,254.28,41.206 +439687,254.24,43.864 +439688,254.16,46.353 +439689,253.12,38.354 +439690,253.05,41.205 +439691,252.95,43.85 +439692,252.83,46.326 +439693,251.95,38.371 +439694,251.82,41.205 +439695,251.67,43.835 +439696,251.5,46.298 +439697,250.78,38.391 +439698,250.59,41.206 +439699,250.39,43.82 +439700,250.17,46.269 +439701,249.61,38.414 +439702,249.36,41.208 +439703,249.1,43.804 +439704,248.84,46.237 +439705,248.44,38.438 +439706,248.13,41.211 +439707,247.82,43.787 +439708,247.5,46.204 +439709,247.27,38.465 +439710,246.9,41.214 +439711,246.54,43.77 +439712,246.17,46.168 +439713,246.1,38.494 +439714,245.67,41.218 +439715,245.25,43.752 +439716,244.84,46.131 +439717,244.93,38.526 +439718,244.44,41.223 +439719,243.97,43.734 +439720,243.51,46.093 +439721,243.76,38.559 +439722,243.21,41.228 +439723,242.69,43.715 +439724,242.19,46.052 +439725,242.58,38.595 +439726,241.98,41.235 +439727,241.41,43.696 +439728,240.86,46.01 +439729,241.41,38.633 +439730,240.75,41.242 +439731,240.12,43.676 +439732,239.53,45.967 +439733,240.23,38.673 +439734,239.52,41.249 +439735,238.84,43.656 +439736,238.2,45.921 +439737,239.06,38.715 +439738,238.29,41.258 +439739,237.56,43.635 +439740,236.87,45.874 +439741,237.88,38.759 +439742,237.05,41.267 +439743,236.28,43.614 +439744,235.55,45.825 +439745,236.7,38.805 +439746,235.82,41.277 +439747,235,43.592 +439748,234.22,45.775 +439749,235.52,38.853 +439750,234.59,41.288 +439751,233.72,43.569 +439752,232.89,45.723 +439753,234.34,38.903 +439754,233.36,41.299 +439755,232.44,43.547 +439756,231.57,45.669 +439757,233.16,38.955 +439758,232.12,41.311 +439759,231.16,43.523 +439760,230.24,45.614 +439761,231.98,39.009 +439762,230.89,41.323 +439763,229.88,43.499 +439764,228.92,45.557 +439765,230.79,39.064 +439766,229.66,41.337 +439767,228.6,43.475 +439768,227.6,45.499 +439769,229.61,39.122 +439770,228.42,41.351 +439771,227.32,43.45 +439772,226.28,45.439 +439773,228.42,39.181 +439774,227.19,41.365 +439775,226.04,43.425 +439776,224.95,45.378 +439777,227.23,39.242 +439778,225.95,41.381 +439779,224.76,43.4 +439780,223.63,45.315 +439781,226.04,39.304 +439782,224.72,41.396 +439783,223.48,43.374 +439784,222.32,45.251 +439785,224.85,39.368 +439786,223.48,41.413 +439787,222.21,43.347 +439788,221,45.185 +439789,223.66,39.434 +439790,222.25,41.43 +439791,220.93,43.32 +439792,219.68,45.118 +439793,222.46,39.501 +439794,221.01,41.447 +439795,219.65,43.293 +439796,218.36,45.05 +439797,221.27,39.57 +439798,219.78,41.466 +439799,218.37,43.265 +439800,217.05,44.98 +439801,220.07,39.64 +439802,218.54,41.484 +439803,217.1,43.237 +439804,215.73,44.909 +439805,218.87,39.711 +439806,217.3,41.504 +439807,215.82,43.209 +439808,214.42,44.837 +439809,217.67,39.784 +439810,216.06,41.523 +439811,214.55,43.18 +439812,213.11,44.763 +439813,216.47,39.858 +439814,214.82,41.544 +439815,213.27,43.151 +439816,211.8,44.688 +439817,215.26,39.934 +439818,213.59,41.564 +439819,212,43.121 +439820,210.49,44.612 +439821,214.06,40.01 +439822,212.35,41.586 +439823,210.72,43.091 +439824,209.18,44.534 +439825,212.85,40.088 +439826,211.11,41.607 +439827,209.45,43.061 +439828,207.87,44.456 +439829,211.64,40.167 +439830,209.87,41.63 +439831,208.18,43.031 +439832,206.57,44.376 +439833,210.43,40.247 +439834,208.62,41.652 +439835,206.91,43 +439836,205.26,44.296 +439837,209.21,40.328 +439838,207.38,41.675 +439839,205.63,42.969 +439840,203.96,44.214 +439841,208,40.41 +439842,206.14,41.699 +439843,204.36,42.938 +439844,202.66,44.131 +439845,206.78,40.493 +439846,204.9,41.723 +439847,203.09,42.907 +439848,201.36,44.047 +439849,205.56,40.576 +439850,203.65,41.747 +439851,201.82,42.875 +439852,200.06,43.963 +439853,204.34,40.661 +439854,202.41,41.772 +439855,200.55,42.843 +439856,198.76,43.877 +439857,203.12,40.746 +439858,201.17,41.797 +439859,199.28,42.811 +439860,197.47,43.791 +439861,201.89,40.832 +439862,199.92,41.822 +439863,198.02,42.779 +439864,196.17,43.703 +439865,200.67,40.919 +439866,198.68,41.848 +439867,196.75,42.746 +439868,194.88,43.615 +439869,199.44,41.006 +439870,197.43,41.874 +439871,195.48,42.713 +439872,193.59,43.526 +439873,198.21,41.094 +439874,196.18,41.9 +439875,194.21,42.681 +439876,192.3,43.436 +439877,196.97,41.182 +439878,194.93,41.927 +439879,192.95,42.648 +439880,191.01,43.346 +439881,195.74,41.271 +439882,193.69,41.953 +439883,191.68,42.615 +439884,189.72,43.255 +439885,194.5,41.36 +439886,192.44,41.98 +439887,190.42,42.582 +439888,188.44,43.164 +439889,193.26,41.449 +439890,191.19,42.008 +439891,189.15,42.548 +439892,187.16,43.071 +439893,192.02,41.539 +439894,189.94,42.035 +439895,187.89,42.515 +439896,185.88,42.979 +439897,190.78,41.629 +439898,188.69,42.063 +439899,186.63,42.482 +439900,184.6,42.885 +439901,189.53,41.72 +439902,187.44,42.091 +439903,185.37,42.448 +439904,183.32,42.792 +439905,188.29,41.81 +439906,186.19,42.119 +439907,184.1,42.415 +439908,182.04,42.698 +439909,187.04,41.901 +439910,184.93,42.147 +439911,182.84,42.381 +439912,180.77,42.603 +439913,185.79,41.991 +439914,183.68,42.175 +439915,181.58,42.348 +439916,179.5,42.509 +439917,184.53,42.082 +439918,182.43,42.204 +439919,180.32,42.314 +439920,178.23,42.414 +439921,183.28,42.173 +439922,181.17,42.232 +439923,179.06,42.281 +439924,176.96,42.319 +439925,182.02,42.263 +439926,179.92,42.261 +439927,177.81,42.248 +439928,175.69,42.223 +439929,180.76,42.354 +439930,178.66,42.29 +439931,176.55,42.214 +439932,174.43,42.128 +439933,179.5,42.444 +439934,177.4,42.318 +439935,175.29,42.181 +439936,173.16,42.032 +439937,178.24,42.534 +439938,176.15,42.347 +439939,174.03,42.148 +439940,171.9,41.937 +439941,176.98,42.624 +439942,174.89,42.376 +439943,172.78,42.115 +439944,170.64,41.841 +439945,175.71,42.714 +439946,173.63,42.405 +439947,171.52,42.082 +439948,169.39,41.746 +439949,174.44,42.803 +439950,172.37,42.434 +439951,170.27,42.05 +439952,168.13,41.65 +439953,173.17,42.892 +439954,171.11,42.463 +439955,169.02,42.017 +439956,166.88,41.555 +439957,171.9,42.98 +439958,169.85,42.491 +439959,167.76,41.985 +439960,165.63,41.46 +439961,170.63,43.068 +439962,168.59,42.52 +439963,166.51,41.953 +439964,164.38,41.365 +439965,169.35,43.156 +439966,167.33,42.549 +439967,165.26,41.921 +439968,163.13,41.271 +439969,168.08,43.242 +439970,166.07,42.577 +439971,164.01,41.889 +439972,161.89,41.177 +439973,166.8,43.329 +439974,164.81,42.606 +439975,162.76,41.857 +439976,160.64,41.083 +439977,165.52,43.414 +439978,163.54,42.634 +439979,161.51,41.826 +439980,159.4,40.99 +439981,164.23,43.499 +439982,162.28,42.662 +439983,160.26,41.795 +439984,158.16,40.897 +439985,162.95,43.583 +439986,161.01,42.69 +439987,159.01,41.765 +439988,156.93,40.805 +439989,161.66,43.667 +439990,159.75,42.718 +439991,157.76,41.734 +439992,155.69,40.713 +439993,160.38,43.749 +439994,158.48,42.746 +439995,156.52,41.704 +439996,154.46,40.622 +439997,159.09,43.831 +439998,157.22,42.773 +439999,155.27,41.675 +440000,153.23,40.532 +440001,157.8,43.912 +440002,155.95,42.801 +440003,154.02,41.645 +440004,152,40.443 +440005,156.51,43.992 +440006,154.68,42.828 +440007,152.78,41.616 +440008,150.77,40.354 +440009,155.21,44.071 +440010,153.42,42.854 +440011,151.53,41.588 +440012,149.55,40.266 +440013,153.92,44.149 +440014,152.15,42.881 +440015,150.29,41.559 +440016,148.33,40.18 +440017,152.62,44.227 +440018,150.88,42.907 +440019,149.04,41.532 +440020,147.11,40.094 +440021,151.32,44.303 +440022,149.61,42.934 +440023,147.8,41.504 +440024,145.89,40.009 +440025,150.02,44.378 +440026,148.34,42.959 +440027,146.56,41.478 +440028,144.67,39.925 +440029,148.72,44.452 +440030,147.07,42.985 +440031,145.32,41.451 +440032,143.45,39.842 +440033,147.42,44.524 +440034,145.8,43.01 +440035,144.08,41.425 +440036,142.24,39.761 +440037,146.12,44.596 +440038,144.53,43.035 +440039,142.84,41.4 +440040,141.03,39.68 +440041,144.81,44.666 +440042,143.25,43.06 +440043,141.6,41.375 +440044,139.82,39.601 +440045,143.51,44.735 +440046,141.98,43.084 +440047,140.36,41.35 +440048,138.61,39.523 +440049,142.2,44.803 +440050,140.71,43.108 +440051,139.12,41.326 +440052,137.41,39.447 +440053,140.89,44.87 +440054,139.43,43.131 +440055,137.88,41.303 +440056,136.2,39.372 +440057,139.58,44.935 +440058,138.16,43.154 +440059,136.64,41.28 +440060,135,39.298 +440061,138.27,44.999 +440062,136.89,43.177 +440063,135.4,41.258 +440064,133.8,39.226 +440065,136.96,45.061 +440066,135.61,43.199 +440067,134.17,41.236 +440068,132.6,39.156 +440069,135.65,45.122 +440070,134.34,43.221 +440071,132.93,41.215 +440072,131.41,39.087 +440073,134.33,45.182 +440074,133.06,43.243 +440075,131.69,41.195 +440076,130.21,39.019 +440077,133.02,45.24 +440078,131.78,43.264 +440079,130.46,41.175 +440080,129.02,38.954 +440081,131.7,45.297 +440082,130.51,43.285 +440083,129.22,41.156 +440084,127.83,38.89 +440085,130.38,45.352 +440086,129.23,43.305 +440087,127.99,41.137 +440088,126.63,38.827 +440089,129.07,45.406 +440090,127.95,43.325 +440091,126.76,41.119 +440092,125.45,38.767 +440093,127.75,45.458 +440094,126.68,43.344 +440095,125.52,41.102 +440096,124.26,38.709 +440097,126.43,45.509 +440098,125.4,43.363 +440099,124.29,41.085 +440100,123.07,38.652 +440101,125.11,45.558 +440102,124.12,43.381 +440103,123.05,41.069 +440104,121.89,38.597 +440105,123.79,45.606 +440106,122.84,43.399 +440107,121.82,41.054 +440108,120.7,38.544 +440109,122.46,45.651 +440110,121.56,43.416 +440111,120.59,41.04 +440112,119.52,38.494 +440113,121.14,45.696 +440114,120.28,43.433 +440115,119.36,41.026 +440116,118.34,38.445 +440117,119.82,45.738 +440118,119,43.449 +440119,118.13,41.013 +440120,117.16,38.398 +440121,118.49,45.779 +440122,117.72,43.465 +440123,116.89,41.001 +440124,115.98,38.353 +440125,117.17,45.818 +440126,116.44,43.48 +440127,115.66,40.989 +440128,114.81,38.311 +440129,115.84,45.856 +440130,115.16,43.495 +440131,114.43,40.978 +440132,113.63,38.271 +440133,114.52,45.892 +440134,113.88,43.509 +440135,113.2,40.968 +440136,112.45,38.232 +440137,113.19,45.926 +440138,112.6,43.523 +440139,111.97,40.959 +440140,111.28,38.197 +440141,111.87,45.958 +440142,111.32,43.536 +440143,110.74,40.95 +440144,110.1,38.163 +440145,110.54,45.989 +440146,110.04,43.549 +440147,109.51,40.942 +440148,108.93,38.131 +440149,109.21,46.018 +440150,108.76,43.561 +440151,108.28,40.935 +440152,107.76,38.102 +440153,107.88,46.045 +440154,107.48,43.572 +440155,107.05,40.929 +440156,106.59,38.075 +440157,106.55,46.07 +440158,106.2,43.583 +440159,105.82,40.924 +440160,105.42,38.051 +440161,105.23,46.094 +440162,104.92,43.593 +440163,104.59,40.919 +440164,104.25,38.029 +440165,103.9,46.115 +440166,103.64,43.603 +440167,103.36,40.915 +440168,103.08,38.009 +440169,102.57,46.135 +440170,102.35,43.612 +440171,102.13,40.912 +440172,101.91,37.992 +440173,101.24,46.153 +440174,101.07,43.621 +440175,100.9,40.91 +440176,100.74,37.977 +440177,99.909,46.17 +440178,99.79,43.629 +440179,99.675,40.908 +440180,99.567,37.964 +440181,98.579,46.184 +440182,98.508,43.636 +440183,98.445,40.908 +440184,98.398,37.954 +440185,97.25,46.197 +440186,97.226,43.643 +440187,97.216,40.908 +440188,97.229,37.946 +440189,95.92,46.208 +440190,95.943,43.649 +440191,95.987,40.909 +440192,96.06,37.941 +440193,94.59,46.217 +440194,94.661,43.655 +440195,94.758,40.91 +440196,94.891,37.938 +440197,93.26,46.224 +440198,93.379,43.66 +440199,93.529,40.913 +440200,93.722,37.938 +440201,91.931,46.23 +440202,92.097,43.665 +440203,92.3,40.917 +440204,92.553,37.94 +440205,90.601,46.233 +440206,90.815,43.669 +440207,91.07,40.921 +440208,91.384,37.944 +440209,89.272,46.235 +440210,89.533,43.672 +440211,89.841,40.926 +440212,90.214,37.951 +440213,87.943,46.235 +440214,88.251,43.675 +440215,88.611,40.932 +440216,89.044,37.961 +440217,86.614,46.233 +440218,86.969,43.677 +440219,87.382,40.938 +440220,87.873,37.973 +440221,85.285,46.229 +440222,85.688,43.679 +440223,86.152,40.946 +440224,86.702,37.987 +440225,83.956,46.224 +440226,84.406,43.68 +440227,84.922,40.954 +440228,85.531,38.004 +440229,82.628,46.216 +440230,83.124,43.68 +440231,83.692,40.963 +440232,84.359,38.023 +440233,81.3,46.207 +440234,81.843,43.68 +440235,82.461,40.973 +440236,83.186,38.044 +440237,79.973,46.196 +440238,80.561,43.679 +440239,81.231,40.984 +440240,82.012,38.068 +440241,78.646,46.183 +440242,79.28,43.678 +440243,80,40.996 +440244,80.838,38.095 +440245,77.319,46.169 +440246,77.999,43.676 +440247,78.769,41.008 +440248,79.663,38.123 +440249,75.993,46.152 +440250,76.718,43.673 +440251,77.537,41.021 +440252,78.486,38.154 +440253,74.668,46.134 +440254,75.438,43.67 +440255,76.306,41.035 +440256,77.309,38.188 +440257,73.343,46.114 +440258,74.157,43.667 +440259,75.074,41.05 +440260,76.131,38.224 +440261,72.018,46.093 +440262,72.877,43.663 +440263,73.842,41.065 +440264,74.952,38.262 +440265,70.694,46.069 +440266,71.597,43.658 +440267,72.609,41.081 +440268,73.771,38.302 +440269,69.371,46.044 +440270,70.317,43.653 +440271,71.376,41.098 +440272,72.589,38.344 +440273,68.049,46.018 +440274,69.038,43.647 +440275,70.143,41.116 +440276,71.406,38.389 +440277,66.727,45.989 +440278,67.758,43.641 +440279,68.909,41.135 +440280,70.222,38.436 +440281,65.406,45.959 +440282,66.479,43.634 +440283,67.675,41.154 +440284,69.036,38.485 +440285,64.086,45.927 +440286,65.201,43.626 +440287,66.44,41.174 +440288,67.849,38.536 +440289,62.767,45.894 +440290,63.922,43.619 +440291,65.205,41.195 +440292,66.66,38.59 +440293,61.449,45.859 +440294,62.644,43.61 +440295,63.97,41.216 +440296,65.47,38.645 +440297,60.131,45.822 +440298,61.367,43.601 +440299,62.734,41.238 +440300,64.278,38.703 +440301,58.815,45.783 +440302,60.089,43.592 +440303,61.498,41.261 +440304,63.084,38.762 +440305,57.499,45.744 +440306,58.812,43.582 +440307,60.261,41.284 +440308,61.889,38.823 +440309,56.184,45.702 +440310,57.535,43.572 +440311,59.024,41.309 +440312,60.693,38.887 +440313,54.871,45.659 +440314,56.259,43.561 +440315,57.786,41.334 +440316,59.494,38.952 +440317,53.558,45.614 +440318,54.983,43.55 +440319,56.547,41.359 +440320,58.294,39.019 +440321,52.247,45.568 +440322,53.708,43.538 +440323,55.309,41.385 +440324,57.092,39.088 +440325,50.937,45.521 +440326,52.433,43.526 +440327,54.069,41.412 +440328,55.888,39.158 +440329,49.627,45.472 +440330,51.158,43.513 +440331,52.829,41.439 +440332,54.682,39.23 +440333,48.32,45.421 +440334,49.884,43.5 +440335,51.589,41.467 +440336,53.474,39.304 +440337,47.013,45.37 +440338,48.61,43.487 +440339,50.347,41.496 +440340,52.265,39.38 +440341,45.707,45.316 +440342,47.336,43.473 +440343,49.106,41.525 +440344,51.053,39.457 +440345,44.403,45.262 +440346,46.063,43.458 +440347,47.863,41.555 +440348,49.84,39.536 +440349,43.1,45.206 +440350,44.791,43.444 +440351,46.62,41.586 +440352,48.624,39.616 +440353,41.799,45.149 +440354,43.519,43.429 +440355,45.377,41.616 +440356,47.407,39.698 +440357,40.499,45.09 +440358,42.248,43.413 +440359,44.133,41.648 +440360,46.188,39.781 +440361,39.2,45.03 +440362,40.977,43.397 +440363,42.888,41.68 +440364,44.966,39.865 +440365,37.902,44.97 +440366,39.706,43.381 +440367,41.642,41.712 +440368,43.743,39.951 +440369,36.607,44.907 +440370,38.436,43.365 +440371,40.396,41.745 +440372,42.517,40.038 +440373,35.312,44.844 +440374,37.167,43.348 +440375,39.15,41.779 +440376,41.289,40.126 +440377,34.019,44.78 +440378,35.898,43.331 +440379,37.902,41.813 +440380,40.06,40.216 +440381,32.728,44.714 +440382,34.629,43.314 +440383,36.654,41.847 +440384,38.828,40.306 +440385,31.438,44.648 +440386,33.361,43.296 +440387,35.405,41.882 +440388,37.594,40.398 +440389,30.15,44.58 +440390,32.094,43.278 +440391,34.156,41.917 +440392,36.358,40.49 +440393,28.863,44.511 +440394,30.827,43.26 +440395,32.906,41.953 +440396,35.12,40.584 +440397,27.578,44.442 +440398,29.561,43.242 +440399,31.655,41.989 +440400,33.88,40.678 +440401,26.294,44.371 +440402,28.295,43.223 +440403,30.404,42.025 +440404,32.637,40.774 +440405,25.013,44.3 +440406,27.03,43.204 +440407,29.151,42.062 +440408,31.393,40.87 +440409,23.733,44.228 +440410,25.766,43.185 +440411,27.898,42.099 +440412,30.146,40.967 +440413,22.454,44.155 +440414,24.502,43.166 +440415,26.645,42.137 +440416,28.898,41.064 +440417,21.178,44.081 +440418,23.238,43.146 +440419,25.391,42.175 +440420,27.647,41.162 +440421,19.903,44.007 +440422,21.976,43.127 +440423,24.136,42.213 +440424,26.394,41.261 +440425,18.63,43.931 +440426,20.713,43.107 +440427,22.88,42.251 +440428,25.14,41.361 +440429,17.358,43.855 +440430,19.452,43.087 +440431,21.623,42.29 +440432,23.883,41.461 +440433,16.089,43.779 +440434,18.191,43.067 +440435,20.366,42.329 +440436,22.624,41.561 +440437,14.821,43.702 +440438,16.93,43.047 +440439,19.109,42.368 +440440,21.363,41.662 +440441,13.555,43.624 +440442,15.671,43.027 +440443,17.85,42.407 +440444,20.1,41.763 +440445,12.291,43.546 +440446,14.411,43.007 +440447,16.591,42.447 +440448,18.835,41.864 +440449,11.029,43.467 +440450,13.153,42.986 +440451,15.331,42.486 +440452,17.568,41.966 +440453,9.7685,43.388 +440454,11.895,42.966 +440455,14.07,42.526 +440456,16.299,42.068 +440457,8.5101,43.309 +440458,10.637,42.946 +440459,12.809,42.566 +440460,15.028,42.17 +440461,7.2535,43.229 +440462,9.3806,42.925 +440463,11.547,42.607 +440464,13.755,42.272 +440465,5.9989,43.149 +440466,8.1244,42.905 +440467,10.284,42.647 +440468,12.48,42.374 +440469,4.7462,43.069 +440470,6.8688,42.884 +440471,9.0206,42.687 +440472,11.203,42.477 +440473,3.4954,42.988 +440474,5.6138,42.864 +440475,7.7564,42.728 +440476,9.9245,42.579 +440477,2.2465,42.907 +440478,4.3595,42.844 +440479,6.4916,42.769 +440480,8.6439,42.681 +440481,0.99962,42.827 +440482,3.1057,42.824 +440483,5.2261,42.809 +440484,7.3615,42.783 +440485,359.75,42.746 +440486,1.8526,42.803 +440487,3.9599,42.85 +440488,6.0773,42.885 +440489,358.51,42.665 +440490,0.59999,42.783 +440491,2.6931,42.891 +440492,4.7913,42.987 +440493,357.27,42.584 +440494,359.35,42.763 +440495,1.4255,42.932 +440496,3.5035,43.088 +440497,356.03,42.503 +440498,358.1,42.744 +440499,0.15732,42.972 +440500,2.2139,43.189 +440501,354.79,42.423 +440502,356.85,42.724 +440503,358.89,43.013 +440504,0.92257,43.29 +440505,353.56,42.342 +440506,355.6,42.704 +440507,357.62,43.054 +440508,359.63,43.39 +440509,352.33,42.262 +440510,354.35,42.685 +440511,356.35,43.094 +440512,358.33,43.49 +440513,351.09,42.182 +440514,353.1,42.666 +440515,355.08,43.135 +440516,357.04,43.59 +440517,349.86,42.102 +440518,351.85,42.647 +440519,353.81,43.176 +440520,355.74,43.689 +440521,348.64,42.023 +440522,350.6,42.628 +440523,352.53,43.216 +440524,354.44,43.787 +440525,347.41,41.944 +440526,349.35,42.609 +440527,351.26,43.256 +440528,353.14,43.885 +440529,346.19,41.865 +440530,348.11,42.591 +440531,349.99,43.297 +440532,351.84,43.982 +440533,344.97,41.787 +440534,346.86,42.573 +440535,348.71,43.337 +440536,350.53,44.078 +440537,343.75,41.71 +440538,345.61,42.555 +440539,347.44,43.377 +440540,349.23,44.174 +440541,342.53,41.633 +440542,344.37,42.538 +440543,346.17,43.416 +440544,347.92,44.269 +440545,341.31,41.557 +440546,343.12,42.521 +440547,344.89,43.456 +440548,346.61,44.363 +440549,340.1,41.481 +440550,341.88,42.504 +440551,343.61,43.495 +440552,345.3,44.456 +440553,338.89,41.406 +440554,340.64,42.487 +440555,342.34,43.535 +440556,343.99,44.549 +440557,337.67,41.332 +440558,339.39,42.471 +440559,341.06,43.573 +440560,342.68,44.64 +440561,336.47,41.259 +440562,338.15,42.456 +440563,339.78,43.612 +440564,341.36,44.731 +440565,335.26,41.187 +440566,336.91,42.44 +440567,338.5,43.651 +440568,340.05,44.82 +440569,334.05,41.115 +440570,335.67,42.425 +440571,337.22,43.689 +440572,338.73,44.909 +440573,332.85,41.045 +440574,334.43,42.411 +440575,335.94,43.727 +440576,337.41,44.997 +440577,331.65,40.976 +440578,333.18,42.397 +440579,334.66,43.764 +440580,336.09,45.083 +440581,330.45,40.907 +440582,331.94,42.383 +440583,333.38,43.802 +440584,334.77,45.168 +440585,329.25,40.84 +440586,330.7,42.37 +440587,332.1,43.839 +440588,333.45,45.253 +440589,328.05,40.774 +440590,329.47,42.357 +440591,330.82,43.876 +440592,332.13,45.336 +440593,326.86,40.709 +440594,328.23,42.344 +440595,329.54,43.912 +440596,330.81,45.417 +440597,325.66,40.645 +440598,326.99,42.333 +440599,328.26,43.948 +440600,329.48,45.498 +440601,324.47,40.583 +440602,325.75,42.321 +440603,326.98,43.984 +440604,328.16,45.577 +440605,323.28,40.522 +440606,324.51,42.311 +440607,325.69,44.019 +440608,326.83,45.656 +440609,322.09,40.463 +440610,323.27,42.3 +440611,324.41,44.054 +440612,325.5,45.732 +440613,320.9,40.404 +440614,322.04,42.291 +440615,323.13,44.088 +440616,324.18,45.808 +440617,319.71,40.348 +440618,320.8,42.281 +440619,321.84,44.123 +440620,322.85,45.882 +440621,318.53,40.293 +440622,319.56,42.273 +440623,320.56,44.156 +440624,321.52,45.954 +440625,317.34,40.239 +440626,318.33,42.265 +440627,319.27,44.19 +440628,320.19,46.026 +440629,316.16,40.187 +440630,317.09,42.257 +440631,317.99,44.222 +440632,318.86,46.095 +440633,314.98,40.137 +440634,315.85,42.25 +440635,316.7,44.255 +440636,317.52,46.164 +440637,313.8,40.088 +440638,314.62,42.244 +440639,315.41,44.287 +440640,316.19,46.231 +440641,312.62,40.041 +440642,313.38,42.239 +440643,314.13,44.318 +440644,314.86,46.296 +440645,311.44,39.996 +440646,312.15,42.234 +440647,312.84,44.349 +440648,313.52,46.36 +440649,310.26,39.952 +440650,310.91,42.229 +440651,311.55,44.38 +440652,312.19,46.422 +440653,309.08,39.91 +440654,309.68,42.226 +440655,310.27,44.41 +440656,310.85,46.483 +440657,307.91,39.871 +440658,308.44,42.223 +440659,308.98,44.44 +440660,309.52,46.542 +440661,306.73,39.833 +440662,307.21,42.22 +440663,307.69,44.469 +440664,308.18,46.6 +440665,305.56,39.797 +440666,305.97,42.218 +440667,306.41,44.498 +440668,306.85,46.655 +440669,304.38,39.763 +440670,304.74,42.217 +440671,305.12,44.526 +440672,305.51,46.71 +440673,303.21,39.731 +440674,303.5,42.217 +440675,303.83,44.553 +440676,304.17,46.762 +440677,302.03,39.701 +440678,302.27,42.218 +440679,302.54,44.58 +440680,302.84,46.813 +440681,300.86,39.673 +440682,301.04,42.219 +440683,301.25,44.607 +440684,301.5,46.863 +440685,299.69,39.647 +440686,299.8,42.22 +440687,299.96,44.633 +440688,300.16,46.91 +440689,298.52,39.623 +440690,298.57,42.223 +440691,298.68,44.658 +440692,298.82,46.956 +440693,297.34,39.601 +440694,297.33,42.226 +440695,297.39,44.683 +440696,297.48,47.001 +440697,296.17,39.582 +440698,296.1,42.23 +440699,296.1,44.708 +440700,296.15,47.043 +440701,295,39.564 +440702,294.87,42.235 +440703,294.81,44.732 +440704,294.81,47.084 +440705,293.83,39.549 +440706,293.63,42.24 +440707,293.52,44.755 +440708,293.47,47.123 +440709,292.66,39.536 +440710,292.4,42.246 +440711,292.23,44.778 +440712,292.13,47.16 +440713,291.49,39.525 +440714,291.16,42.253 +440715,290.94,44.8 +440716,290.79,47.196 +440717,290.32,39.517 +440718,289.93,42.261 +440719,289.65,44.821 +440720,289.45,47.23 +440721,289.14,39.51 +440722,288.69,42.269 +440723,288.36,44.842 +440724,288.11,47.262 +440725,287.97,39.506 +440726,287.46,42.279 +440727,287.07,44.863 +440728,286.78,47.292 +440729,286.8,39.505 +440730,286.23,42.289 +440731,285.78,44.883 +440732,285.44,47.32 +440733,285.63,39.505 +440734,284.99,42.299 +440735,284.49,44.902 +440736,284.1,47.347 +440737,284.45,39.508 +440738,283.75,42.311 +440739,283.2,44.921 +440740,282.76,47.372 +440741,283.28,39.513 +440742,282.52,42.323 +440743,281.92,44.939 +440744,281.42,47.395 +440745,282.1,39.52 +440746,281.28,42.336 +440747,280.63,44.956 +440748,280.09,47.416 +440749,280.93,39.53 +440750,280.05,42.35 +440751,279.34,44.973 +440752,278.75,47.436 +440753,279.75,39.542 +440754,278.81,42.364 +440755,278.05,44.99 +440756,277.41,47.454 +440757,278.58,39.556 +440758,277.58,42.38 +440759,276.76,45.005 +440760,276.08,47.47 +440761,277.4,39.573 +440762,276.34,42.396 +440763,275.47,45.021 +440764,274.74,47.484 +440765,276.22,39.592 +440766,275.1,42.413 +440767,274.18,45.035 +440768,273.41,47.496 +440769,275.04,39.613 +440770,273.86,42.43 +440771,272.89,45.049 +440772,272.07,47.507 +440773,273.86,39.637 +440774,272.63,42.449 +440775,271.61,45.063 +440776,270.74,47.516 +440777,272.68,39.663 +440778,271.39,42.468 +440779,270.32,45.076 +440780,269.4,47.523 +440781,271.49,39.691 +440782,270.15,42.488 +440783,269.03,45.088 +440784,268.07,47.528 +440785,270.31,39.721 +440786,268.91,42.508 +440787,267.74,45.1 +440788,266.74,47.532 +440789,269.12,39.754 +440790,267.67,42.53 +440791,266.45,45.111 +440792,265.41,47.534 +440793,267.94,39.789 +440794,266.43,42.552 +440795,265.17,45.122 +440796,264.07,47.534 +440797,266.75,39.826 +440798,265.19,42.575 +440799,263.88,45.132 +440800,262.74,47.532 +440801,265.56,39.865 +440802,263.95,42.598 +440803,262.59,45.141 +440804,261.41,47.529 +440805,264.37,39.907 +440806,262.71,42.623 +440807,261.31,45.15 +440808,260.09,47.524 +440809,263.17,39.95 +440810,261.47,42.648 +440811,260.02,45.159 +440812,258.76,47.517 +440813,261.98,39.996 +440814,260.23,42.674 +440815,258.73,45.167 +440816,257.43,47.508 +440817,260.78,40.044 +440818,258.98,42.7 +440819,257.45,45.174 +440820,256.1,47.498 +440821,259.58,40.095 +440822,257.74,42.728 +440823,256.16,45.181 +440824,254.78,47.486 +440825,258.38,40.147 +440826,256.5,42.755 +440827,254.88,45.187 +440828,253.45,47.473 +440829,257.18,40.201 +440830,255.25,42.784 +440831,253.59,45.193 +440832,252.13,47.458 +440833,255.98,40.258 +440834,254.01,42.813 +440835,252.31,45.198 +440836,250.81,47.441 +440837,254.77,40.316 +440838,252.76,42.844 +440839,251.02,45.203 +440840,249.49,47.423 +440841,253.56,40.376 +440842,251.52,42.874 +440843,249.74,45.207 +440844,248.17,47.403 +440845,252.36,40.439 +440846,250.27,42.906 +440847,248.46,45.211 +440848,246.85,47.381 +440849,251.14,40.503 +440850,249.02,42.938 +440851,247.17,45.214 +440852,245.53,47.358 +440853,249.93,40.569 +440854,247.78,42.97 +440855,245.89,45.217 +440856,244.21,47.334 +440857,248.72,40.637 +440858,246.53,43.004 +440859,244.61,45.219 +440860,242.9,47.307 +440861,247.5,40.707 +440862,245.28,43.038 +440863,243.33,45.22 +440864,241.58,47.28 +440865,246.28,40.778 +440866,244.03,43.072 +440867,242.05,45.222 +440868,240.27,47.251 +440869,245.06,40.852 +440870,242.78,43.107 +440871,240.77,45.223 +440872,238.96,47.22 +440873,243.83,40.927 +440874,241.53,43.143 +440875,239.49,45.223 +440876,237.65,47.188 +440877,242.61,41.003 +440878,240.27,43.179 +440879,238.21,45.223 +440880,236.34,47.155 +440881,241.38,41.082 +440882,239.02,43.216 +440883,236.93,45.222 +440884,235.03,47.12 +440885,240.15,41.162 +440886,237.77,43.254 +440887,235.65,45.222 +440888,233.72,47.084 +440889,238.92,41.243 +440890,236.52,43.292 +440891,234.37,45.22 +440892,232.42,47.046 +440893,237.68,41.326 +440894,235.26,43.33 +440895,233.09,45.218 +440896,231.12,47.007 +440897,236.45,41.411 +440898,234.01,43.37 +440899,231.81,45.216 +440900,229.81,46.967 +440901,235.21,41.497 +440902,232.75,43.409 +440903,230.54,45.214 +440904,228.51,46.926 +440905,233.97,41.584 +440906,231.49,43.449 +440907,229.26,45.211 +440908,227.21,46.883 +440909,232.72,41.672 +440910,230.24,43.49 +440911,227.98,45.208 +440912,225.92,46.839 +440913,231.48,41.762 +440914,228.98,43.531 +440915,226.71,45.204 +440916,224.62,46.794 +440917,230.23,41.853 +440918,227.72,43.573 +440919,225.43,45.2 +440920,223.33,46.748 +440921,228.98,41.946 +440922,226.46,43.615 +440923,224.16,45.196 +440924,222.03,46.7 +440925,227.72,42.039 +440926,225.2,43.657 +440927,222.88,45.191 +440928,220.74,46.652 +440929,226.47,42.134 +440930,223.94,43.7 +440931,221.61,45.186 +440932,219.45,46.603 +440933,225.21,42.23 +440934,222.67,43.744 +440935,220.34,45.181 +440936,218.16,46.552 +440937,223.95,42.326 +440938,221.41,43.787 +440939,219.06,45.176 +440940,216.88,46.501 +440941,222.69,42.424 +440942,220.15,43.831 +440943,217.79,45.17 +440944,215.59,46.448 +440945,221.43,42.523 +440946,218.88,43.876 +440947,216.52,45.164 +440948,214.31,46.395 +440949,220.16,42.622 +440950,217.62,43.921 +440951,215.25,45.158 +440952,213.03,46.34 +440953,218.89,42.722 +440954,216.35,43.966 +440955,213.98,45.151 +440956,211.75,46.285 +440957,217.62,42.823 +440958,215.09,44.011 +440959,212.71,45.145 +440960,210.47,46.229 +440961,216.35,42.925 +440962,213.82,44.057 +440963,211.44,45.138 +440964,209.2,46.172 +440965,215.08,43.028 +440966,212.55,44.103 +440967,210.17,45.131 +440968,207.92,46.115 +440969,213.8,43.131 +440970,211.28,44.15 +440971,208.91,45.123 +440972,206.65,46.056 +440973,212.52,43.234 +440974,210.01,44.196 +440975,207.64,45.116 +440976,205.38,45.997 +440977,211.24,43.339 +440978,208.74,44.243 +440979,206.37,45.108 +440980,204.11,45.938 +440981,209.96,43.443 +440982,207.47,44.29 +440983,205.11,45.101 +440984,202.85,45.878 +440985,208.67,43.548 +440986,206.2,44.338 +440987,203.84,45.093 +440988,201.58,45.817 +440989,207.39,43.654 +440990,204.93,44.385 +440991,202.58,45.085 +440992,200.32,45.755 +440993,206.1,43.76 +440994,203.65,44.433 +440995,201.31,45.077 +440996,199.06,45.693 +440997,204.8,43.866 +440998,202.38,44.481 +440999,200.05,45.069 +441000,197.8,45.631 +441001,203.51,43.973 +441002,201.1,44.529 +441003,198.79,45.06 +441004,196.54,45.568 +441005,202.22,44.079 +441006,199.83,44.577 +441007,197.52,45.052 +441008,195.29,45.505 +441009,200.92,44.186 +441010,198.55,44.626 +441011,196.26,45.044 +441012,194.04,45.442 +441013,199.62,44.293 +441014,197.28,44.674 +441015,195,45.035 +441016,192.78,45.378 +441017,198.32,44.4 +441018,196,44.723 +441019,193.74,45.027 +441020,191.54,45.314 +441021,197.02,44.507 +441022,194.72,44.772 +441023,192.48,45.019 +441024,190.29,45.25 +441025,195.71,44.614 +441026,193.44,44.82 +441027,191.22,45.01 +441028,189.04,45.185 +441029,194.41,44.721 +441030,192.16,44.869 +441031,189.96,45.002 +441032,187.8,45.121 +441033,193.1,44.828 +441034,190.88,44.918 +441035,188.7,44.994 +441036,186.56,45.056 +441037,191.79,44.935 +441038,189.6,44.967 +441039,187.44,44.985 +441040,185.32,44.991 +441041,190.48,45.041 +441042,188.32,45.016 +441043,186.18,44.977 +441044,184.08,44.926 +441045,189.16,45.147 +441046,187.03,45.065 +441047,184.93,44.969 +441048,182.84,44.862 +441049,187.85,45.253 +441050,185.75,45.113 +441051,183.67,44.961 +441052,181.61,44.797 +441053,186.53,45.359 +441054,184.47,45.162 +441055,182.42,44.953 +441056,180.38,44.733 +441057,185.21,45.464 +441058,183.18,45.211 +441059,181.16,44.946 +441060,179.15,44.668 +441061,183.89,45.569 +441062,181.9,45.26 +441063,179.9,44.938 +441064,177.92,44.604 +441065,182.57,45.673 +441066,180.61,45.308 +441067,178.65,44.93 +441068,176.69,44.54 +441069,181.25,45.777 +441070,179.32,45.357 +441071,177.4,44.923 +441072,175.47,44.477 +441073,179.93,45.88 +441074,178.04,45.405 +441075,176.14,44.916 +441076,174.24,44.414 +441077,178.6,45.983 +441078,176.75,45.454 +441079,174.89,44.909 +441080,173.02,44.351 +441081,177.27,46.085 +441082,175.46,45.502 +441083,173.64,44.903 +441084,171.8,44.288 +441085,175.95,46.187 +441086,174.17,45.55 +441087,172.39,44.896 +441088,170.58,44.226 +441089,174.62,46.288 +441090,172.88,45.598 +441091,171.13,44.89 +441092,169.37,44.165 +441093,173.29,46.388 +441094,171.59,45.645 +441095,169.88,44.884 +441096,168.15,44.104 +441097,171.95,46.487 +441098,170.3,45.693 +441099,168.63,44.878 +441100,166.94,44.044 +441101,170.62,46.585 +441102,169.01,45.74 +441103,167.38,44.873 +441104,165.73,43.984 +441105,169.29,46.683 +441106,167.72,45.787 +441107,166.13,44.868 +441108,164.52,43.925 +441109,167.95,46.78 +441110,166.43,45.834 +441111,164.88,44.863 +441112,163.31,43.867 +441113,166.61,46.876 +441114,165.14,45.881 +441115,163.63,44.859 +441116,162.11,43.809 +441117,165.27,46.971 +441118,163.84,45.927 +441119,162.39,44.855 +441120,160.9,43.753 +441121,163.94,47.065 +441122,162.55,45.973 +441123,161.14,44.851 +441124,159.7,43.697 +441125,162.6,47.158 +441126,161.25,46.019 +441127,159.89,44.847 +441128,158.5,43.642 +441129,161.26,47.25 +441130,159.96,46.065 +441131,158.64,44.844 +441132,157.3,43.588 +441133,159.91,47.341 +441134,158.67,46.11 +441135,157.4,44.842 +441136,156.1,43.535 +441137,158.57,47.43 +441138,157.37,46.155 +441139,156.15,44.84 +441140,154.9,43.483 +441141,157.23,47.519 +441142,156.07,46.199 +441143,154.9,44.838 +441144,153.71,43.432 +441145,155.88,47.607 +441146,154.78,46.244 +441147,153.66,44.836 +441148,152.51,43.383 +441149,154.54,47.693 +441150,153.48,46.287 +441151,152.41,44.835 +441152,151.32,43.334 +441153,153.19,47.778 +441154,152.18,46.331 +441155,151.16,44.835 +441156,150.13,43.287 +441157,151.84,47.862 +441158,150.89,46.374 +441159,149.92,44.835 +441160,148.93,43.24 +441161,150.5,47.945 +441162,149.59,46.417 +441163,148.67,44.835 +441164,147.75,43.196 +441165,149.15,48.026 +441166,148.29,46.459 +441167,147.43,44.836 +441168,146.56,43.152 +441169,147.8,48.106 +441170,146.99,46.501 +441171,146.18,44.838 +441172,145.37,43.11 +441173,146.45,48.185 +441174,145.7,46.543 +441175,144.94,44.839 +441176,144.18,43.069 +441177,145.1,48.262 +441178,144.4,46.584 +441179,143.69,44.842 +441180,143,43.029 +441181,143.75,48.338 +441182,143.1,46.625 +441183,142.45,44.845 +441184,141.81,42.991 +441185,142.4,48.413 +441186,141.8,46.665 +441187,141.21,44.848 +441188,140.63,42.955 +441189,141.05,48.486 +441190,140.5,46.705 +441191,139.96,44.852 +441192,139.44,42.92 +441193,139.7,48.558 +441194,139.2,46.745 +441195,138.72,44.857 +441196,138.26,42.886 +441197,138.34,48.628 +441198,137.9,46.784 +441199,137.47,44.862 +441200,137.08,42.854 +441201,136.99,48.697 +441202,136.6,46.822 +441203,136.23,44.868 +441204,135.9,42.824 +441205,135.64,48.764 +441206,135.3,46.86 +441207,134.99,44.874 +441208,134.72,42.796 +441209,134.29,48.83 +441210,134,46.898 +441211,133.74,44.881 +441212,133.53,42.769 +441213,132.93,48.894 +441214,132.7,46.935 +441215,132.5,44.888 +441216,132.35,42.743 +441217,131.58,48.957 +441218,131.39,46.971 +441219,131.26,44.896 +441220,131.18,42.72 +441221,130.23,49.018 +441222,130.09,47.007 +441223,130.01,44.905 +441224,130,42.698 +441225,128.87,49.077 +441226,128.79,47.043 +441227,128.77,44.914 +441228,128.82,42.678 +441229,127.52,49.135 +441230,127.49,47.078 +441231,127.52,44.924 +441232,127.64,42.66 +441233,126.17,49.192 +441234,126.19,47.113 +441235,126.28,44.935 +441236,126.46,42.644 +441237,124.81,49.246 +441238,124.89,47.147 +441239,125.04,44.946 +441240,125.28,42.629 +441241,123.46,49.299 +441242,123.59,47.18 +441243,123.79,44.958 +441244,124.1,42.617 +441245,122.1,49.351 +441246,122.28,47.213 +441247,122.55,44.97 +441248,122.92,42.606 +441249,120.75,49.401 +441250,120.98,47.246 +441251,121.3,44.983 +441252,121.74,42.597 +441253,119.4,49.449 +441254,119.68,47.277 +441255,120.06,44.997 +441256,120.56,42.591 +441257,118.04,49.495 +441258,118.38,47.309 +441259,118.82,45.012 +441260,119.38,42.586 +441261,116.69,49.54 +441262,117.08,47.34 +441263,117.57,45.027 +441264,118.2,42.583 +441265,115.34,49.583 +441266,115.78,47.37 +441267,116.33,45.042 +441268,117.02,42.582 +441269,113.99,49.625 +441270,114.47,47.4 +441271,115.08,45.059 +441272,115.84,42.583 +441273,112.63,49.665 +441274,113.17,47.429 +441275,113.84,45.076 +441276,114.66,42.587 +441277,111.28,49.703 +441278,111.87,47.457 +441279,112.59,45.094 +441280,113.48,42.592 +441281,109.93,49.739 +441282,110.57,47.485 +441283,111.34,45.112 +441284,112.3,42.599 +441285,108.58,49.774 +441286,109.27,47.513 +441287,110.1,45.131 +441288,111.11,42.608 +441289,107.23,49.807 +441290,107.97,47.54 +441291,108.85,45.151 +441292,109.93,42.62 +441293,105.88,49.838 +441294,106.67,47.566 +441295,107.6,45.172 +441296,108.74,42.633 +441297,104.53,49.868 +441298,105.37,47.592 +441299,106.36,45.193 +441300,107.56,42.648 +441301,103.18,49.896 +441302,104.06,47.617 +441303,105.11,45.215 +441304,106.37,42.666 +441305,101.83,49.922 +441306,102.76,47.642 +441307,103.86,45.237 +441308,105.18,42.685 +441309,100.48,49.946 +441310,101.46,47.666 +441311,102.61,45.26 +441312,103.99,42.707 +441313,99.135,49.969 +441314,100.16,47.689 +441315,101.37,45.284 +441316,102.8,42.731 +441317,97.788,49.99 +441318,98.862,47.712 +441319,100.12,45.309 +441320,101.61,42.757 +441321,96.442,50.01 +441322,97.562,47.735 +441323,98.867,45.334 +441324,100.42,42.785 +441325,95.097,50.027 +441326,96.263,47.757 +441327,97.617,45.36 +441328,99.221,42.814 +441329,93.753,50.044 +441330,94.963,47.778 +441331,96.367,45.387 +441332,98.025,42.846 +441333,92.409,50.058 +441334,93.664,47.799 +441335,95.116,45.414 +441336,96.828,42.88 +441337,91.066,50.071 +441338,92.365,47.819 +441339,93.864,45.442 +441340,95.629,42.916 +441341,89.724,50.082 +441342,91.066,47.838 +441343,92.612,45.471 +441344,94.429,42.954 +441345,88.383,50.091 +441346,89.768,47.857 +441347,91.36,45.5 +441348,93.227,42.995 +441349,87.043,50.099 +441350,88.47,47.876 +441351,90.107,45.53 +441352,92.023,43.037 +441353,85.704,50.105 +441354,87.172,47.894 +441355,88.853,45.56 +441356,90.818,43.081 +441357,84.365,50.109 +441358,85.874,47.911 +441359,87.599,45.592 +441360,89.611,43.127 +441361,83.028,50.112 +441362,84.577,47.928 +441363,86.345,45.624 +441364,88.402,43.175 +441365,81.692,50.113 +441366,83.28,47.945 +441367,85.09,45.656 +441368,87.191,43.225 +441369,80.357,50.113 +441370,81.984,47.961 +441371,83.834,45.689 +441372,85.978,43.277 +441373,79.023,50.111 +441374,80.688,47.976 +441375,82.577,45.723 +441376,84.764,43.33 +441377,77.69,50.108 +441378,79.392,47.991 +441379,81.32,45.757 +441380,83.547,43.386 +441381,76.359,50.103 +441382,78.096,48.005 +441383,80.062,45.793 +441384,82.329,43.444 +441385,75.028,50.096 +441386,76.801,48.019 +441387,78.804,45.828 +441388,81.108,43.503 +441389,73.699,50.088 +441390,75.507,48.032 +441391,77.545,45.864 +441392,79.885,43.564 +441393,72.371,50.078 +441394,74.213,48.045 +441395,76.285,45.901 +441396,78.661,43.627 +441397,71.044,50.067 +441398,72.919,48.057 +441399,75.025,45.939 +441400,77.434,43.692 +441401,69.719,50.055 +441402,71.626,48.069 +441403,73.764,45.977 +441404,76.205,43.758 +441405,68.395,50.041 +441406,70.333,48.081 +441407,72.502,46.015 +441408,74.974,43.826 +441409,67.072,50.026 +441410,69.04,48.092 +441411,71.24,46.054 +441412,73.74,43.896 +441413,65.751,50.009 +441414,67.748,48.102 +441415,69.977,46.094 +441416,72.505,43.967 +441417,64.431,49.991 +441418,66.457,48.112 +441419,68.713,46.134 +441420,71.267,44.041 +441421,63.112,49.971 +441422,65.166,48.122 +441423,67.449,46.175 +441424,70.027,44.115 +441425,61.795,49.95 +441426,63.875,48.131 +441427,66.183,46.216 +441428,68.784,44.191 +441429,60.48,49.928 +441430,62.585,48.139 +441431,64.917,46.258 +441432,67.54,44.269 +441433,59.166,49.904 +441434,61.295,48.148 +441435,63.65,46.301 +441436,66.293,44.348 +441437,57.853,49.879 +441438,60.006,48.155 +441439,62.383,46.343 +441440,65.044,44.429 +441441,56.542,49.853 +441442,58.718,48.163 +441443,61.115,46.387 +441444,63.792,44.511 +441445,55.233,49.826 +441446,57.43,48.17 +441447,59.846,46.431 +441448,62.538,44.594 +441449,53.925,49.798 +441450,56.142,48.177 +441451,58.576,46.475 +441452,61.282,44.679 +441453,52.619,49.768 +441454,54.855,48.183 +441455,57.305,46.519 +441456,60.024,44.765 +441457,51.314,49.737 +441458,53.569,48.189 +441459,56.034,46.565 +441460,58.763,44.852 +441461,50.011,49.705 +441462,52.283,48.195 +441463,54.762,46.61 +441464,57.5,44.941 +441465,48.71,49.672 +441466,50.997,48.2 +441467,53.489,46.656 +441468,56.235,45.031 +441469,47.41,49.638 +441470,49.713,48.205 +441471,52.215,46.703 +441472,54.967,45.121 +441473,46.112,49.603 +441474,48.428,48.209 +441475,50.941,46.749 +441476,53.697,45.213 +441477,44.816,49.567 +441478,47.145,48.214 +441479,49.666,46.797 +441480,52.424,45.306 +441481,43.522,49.529 +441482,45.861,48.218 +441483,48.39,46.844 +441484,51.15,45.4 +441485,42.229,49.491 +441486,44.579,48.221 +441487,47.113,46.892 +441488,49.873,45.495 +441489,40.938,49.452 +441490,43.297,48.225 +441491,45.836,46.94 +441492,48.593,45.591 +441493,39.649,49.412 +441494,42.015,48.228 +441495,44.557,46.989 +441496,47.312,45.688 +441497,38.361,49.372 +441498,40.734,48.231 +441499,43.278,47.038 +441500,46.028,45.786 +441501,37.076,49.33 +441502,39.454,48.233 +441503,41.998,47.087 +441504,44.742,45.884 +441505,35.792,49.288 +441506,38.174,48.236 +441507,40.718,47.136 +441508,43.454,45.983 +441509,34.51,49.245 +441510,36.895,48.238 +441511,39.436,47.186 +441512,42.163,46.083 +441513,33.23,49.201 +441514,35.616,48.24 +441515,38.154,47.236 +441516,40.87,46.184 +441517,31.952,49.156 +441518,34.338,48.242 +441519,36.871,47.286 +441520,39.575,46.285 +441521,30.675,49.111 +441522,33.061,48.243 +441523,35.587,47.337 +441524,38.278,46.387 +441525,29.401,49.065 +441526,31.784,48.245 +441527,34.303,47.387 +441528,36.979,46.489 +441529,28.128,49.019 +441530,30.508,48.246 +441531,33.017,47.438 +441532,35.678,46.592 +441533,26.857,48.972 +441534,29.232,48.247 +441535,31.731,47.489 +441536,34.375,46.695 +441537,25.588,48.924 +441538,27.957,48.248 +441539,30.444,47.541 +441540,33.069,46.799 +441541,24.321,48.876 +441542,26.682,48.249 +441543,29.157,47.592 +441544,31.762,46.903 +441545,23.056,48.828 +441546,25.408,48.249 +441547,27.868,47.644 +441548,30.452,47.008 +441549,21.793,48.779 +441550,24.135,48.25 +441551,26.579,47.696 +441552,29.141,47.112 +441553,20.531,48.729 +441554,22.862,48.251 +441555,25.29,47.748 +441556,27.827,47.217 +441557,19.272,48.68 +441558,21.59,48.251 +441559,23.999,47.799 +441560,26.512,47.322 +441561,18.014,48.63 +441562,20.318,48.252 +441563,22.708,47.852 +441564,25.195,47.428 +441565,16.758,48.58 +441566,19.047,48.252 +441567,21.416,47.904 +441568,23.876,47.533 +441569,15.504,48.53 +441570,17.776,48.252 +441571,20.123,47.956 +441572,22.555,47.639 +441573,14.252,48.479 +441574,16.506,48.253 +441575,18.83,48.008 +441576,21.232,47.744 +441577,13.002,48.428 +441578,15.236,48.253 +441579,17.536,48.061 +441580,19.907,47.85 +441581,11.754,48.377 +441582,13.967,48.253 +441583,16.241,48.113 +441584,18.581,47.955 +441585,10.507,48.327 +441586,12.699,48.254 +441587,14.946,48.165 +441588,17.253,48.06 +441589,9.2626,48.276 +441590,11.431,48.254 +441591,13.649,48.218 +441592,15.923,48.166 +441593,8.0198,48.225 +441594,10.164,48.254 +441595,12.353,48.27 +441596,14.591,48.271 +441597,6.7789,48.174 +441598,8.8968,48.255 +441599,11.055,48.323 +441600,13.258,48.375 +441601,5.5397,48.123 +441602,7.6304,48.255 +441603,9.7573,48.375 +441604,11.924,48.48 +441605,4.3024,48.073 +441606,6.3645,48.256 +441607,8.4586,48.427 +441608,10.588,48.584 +441609,3.0668,48.022 +441610,5.0992,48.257 +441611,7.1593,48.479 +441612,9.2498,48.688 +441613,1.833,47.972 +441614,3.8343,48.258 +441615,5.8593,48.531 +441616,7.9106,48.791 +441617,0.60091,47.922 +441618,2.5699,48.259 +441619,4.5588,48.583 +441620,6.5699,48.894 +441621,359.37,47.872 +441622,1.3059,48.26 +441623,3.2577,48.635 +441624,5.2278,48.997 +441625,358.14,47.823 +441626,0.042426,48.261 +441627,1.956,48.687 +441628,3.8843,49.099 +441629,356.92,47.774 +441630,358.78,48.262 +441631,0.65373,48.739 +441632,2.5395,49.201 +441633,355.69,47.725 +441634,357.52,48.264 +441635,359.35,48.79 +441636,1.1934,49.302 +441637,354.47,47.677 +441638,356.25,48.266 +441639,358.05,48.841 +441640,359.85,49.402 +441641,353.24,47.629 +441642,354.99,48.268 +441643,356.74,48.893 +441644,358.5,49.502 +441645,352.02,47.582 +441646,353.73,48.27 +441647,355.44,48.944 +441648,357.15,49.601 +441649,350.8,47.535 +441650,352.47,48.273 +441651,354.13,48.994 +441652,355.8,49.699 +441653,349.59,47.489 +441654,351.21,48.275 +441655,352.83,49.045 +441656,354.44,49.797 +441657,348.37,47.444 +441658,349.95,48.278 +441659,351.52,49.095 +441660,353.09,49.894 +441661,347.16,47.399 +441662,348.69,48.281 +441663,350.22,49.145 +441664,351.74,49.99 +441665,345.94,47.355 +441666,347.43,48.285 +441667,348.91,49.195 +441668,350.38,50.085 +441669,344.73,47.312 +441670,346.17,48.289 +441671,347.6,49.245 +441672,349.03,50.18 +441673,343.52,47.269 +441674,344.91,48.293 +441675,346.29,49.294 +441676,347.67,50.273 +441677,342.31,47.228 +441678,343.65,48.297 +441679,344.99,49.343 +441680,346.31,50.366 +441681,341.11,47.187 +441682,342.4,48.302 +441683,343.68,49.392 +441684,344.95,50.457 +441685,339.9,47.147 +441686,341.14,48.307 +441687,342.37,49.441 +441688,343.59,50.548 +441689,338.7,47.108 +441690,339.88,48.312 +441691,341.06,49.489 +441692,342.23,50.637 +441693,337.49,47.07 +441694,338.62,48.318 +441695,339.75,49.537 +441696,340.87,50.726 +441697,336.29,47.033 +441698,337.37,48.324 +441699,338.44,49.584 +441700,339.51,50.813 +441701,335.09,46.997 +441702,336.11,48.331 +441703,337.13,49.631 +441704,338.14,50.899 +441705,333.89,46.962 +441706,334.85,48.337 +441707,335.82,49.678 +441708,336.78,50.984 +441709,332.69,46.928 +441710,333.6,48.345 +441711,334.51,49.724 +441712,335.42,51.068 +441713,331.49,46.896 +441714,332.34,48.352 +441715,333.2,49.771 +441716,334.05,51.151 +441717,330.29,46.864 +441718,331.09,48.36 +441719,331.88,49.816 +441720,332.69,51.233 +441721,329.1,46.834 +441722,329.83,48.369 +441723,330.57,49.862 +441724,331.32,51.313 +441725,327.9,46.805 +441726,328.57,48.378 +441727,329.26,49.906 +441728,329.96,51.392 +441729,326.7,46.777 +441730,327.32,48.387 +441731,327.95,49.951 +441732,328.59,51.47 +441733,325.51,46.751 +441734,326.06,48.397 +441735,326.63,49.995 +441736,327.22,51.547 +441737,324.32,46.726 +441738,324.81,48.408 +441739,325.32,50.039 +441740,325.85,51.622 +441741,323.12,46.702 +441742,323.55,48.418 +441743,324.01,50.082 +441744,324.49,51.696 +441745,321.93,46.68 +441746,322.3,48.43 +441747,322.7,50.125 +441748,323.12,51.769 +441749,320.74,46.659 +441750,321.04,48.441 +441751,321.38,50.167 +441752,321.75,51.84 +441753,319.55,46.639 +441754,319.79,48.454 +441755,320.07,50.209 +441756,320.38,51.91 +441757,318.36,46.621 +441758,318.53,48.466 +441759,318.75,50.251 +441760,319.01,51.978 +441761,317.16,46.604 +441762,317.28,48.48 +441763,317.44,50.292 +441764,317.65,52.045 +441765,315.97,46.589 +441766,316.02,48.493 +441767,316.13,50.332 +441768,316.28,52.11 +441769,314.78,46.576 +441770,314.77,48.508 +441771,314.81,50.372 +441772,314.91,52.174 +441773,313.59,46.564 +441774,313.51,48.523 +441775,313.5,50.412 +441776,313.54,52.237 +441777,312.4,46.554 +441778,312.26,48.538 +441779,312.18,50.451 +441780,312.17,52.298 +441781,311.21,46.545 +441782,311,48.554 +441783,310.87,50.489 +441784,310.8,52.358 +441785,310.02,46.538 +441786,309.75,48.57 +441787,309.55,50.527 +441788,309.43,52.416 +441789,308.83,46.532 +441790,308.49,48.587 +441791,308.24,50.565 +441792,308.06,52.473 +441793,307.64,46.529 +441794,307.23,48.605 +441795,306.93,50.602 +441796,306.7,52.528 +441797,306.45,46.526 +441798,305.98,48.623 +441799,305.61,50.639 +441800,305.33,52.581 +441801,305.26,46.526 +441802,304.72,48.642 +441803,304.3,50.675 +441804,303.96,52.633 +441805,304.07,46.527 +441806,303.47,48.661 +441807,302.98,50.71 +441808,302.59,52.684 +441809,302.88,46.53 +441810,302.21,48.681 +441811,301.67,50.745 +441812,301.22,52.732 +441813,301.69,46.535 +441814,300.95,48.701 +441815,300.35,50.78 +441816,299.86,52.78 +441817,300.49,46.542 +441818,299.7,48.722 +441819,299.04,50.814 +441820,298.49,52.825 +441821,299.3,46.55 +441822,298.44,48.744 +441823,297.72,50.847 +441824,297.12,52.87 +441825,298.11,46.56 +441826,297.18,48.766 +441827,296.41,50.88 +441828,295.76,52.912 +441829,296.91,46.572 +441830,295.93,48.789 +441831,295.1,50.912 +441832,294.39,52.953 +441833,295.72,46.585 +441834,294.67,48.812 +441835,293.78,50.944 +441836,293.03,52.992 +441837,294.52,46.601 +441838,293.41,48.836 +441839,292.47,50.976 +441840,291.66,53.03 +441841,293.32,46.618 +441842,292.15,48.861 +441843,291.16,51.006 +441844,290.3,53.066 +441845,292.13,46.637 +441846,290.89,48.886 +441847,289.84,51.037 +441848,288.94,53.101 +441849,290.93,46.658 +441850,289.63,48.911 +441851,288.53,51.066 +441852,287.57,53.134 +441853,289.73,46.68 +441854,288.37,48.938 +441855,287.22,51.095 +441856,286.21,53.165 +441857,288.53,46.705 +441858,287.11,48.965 +441859,285.9,51.124 +441860,284.85,53.195 +441861,287.32,46.731 +441862,285.85,48.992 +441863,284.59,51.152 +441864,283.49,53.223 +441865,286.12,46.759 +441866,284.59,49.02 +441867,283.28,51.18 +441868,282.13,53.25 +441869,284.92,46.789 +441870,283.33,49.049 +441871,281.97,51.207 +441872,280.77,53.275 +441873,283.71,46.821 +441874,282.07,49.078 +441875,280.65,51.233 +441876,279.41,53.298 +441877,282.5,46.854 +441878,280.81,49.108 +441879,279.34,51.259 +441880,278.06,53.32 +441881,281.29,46.89 +441882,279.55,49.138 +441883,278.03,51.284 +441884,276.7,53.34 +441885,280.08,46.927 +441886,278.28,49.169 +441887,276.72,51.309 +441888,275.34,53.359 +441889,278.87,46.966 +441890,277.02,49.201 +441891,275.41,51.333 +441892,273.99,53.376 +441893,277.66,47.006 +441894,275.75,49.233 +441895,274.1,51.357 +441896,272.64,53.392 +441897,276.44,47.049 +441898,274.49,49.266 +441899,272.79,51.381 +441900,271.28,53.406 +441901,275.23,47.093 +441902,273.22,49.299 +441903,271.48,51.403 +441904,269.93,53.418 +441905,274.01,47.139 +441906,271.96,49.333 +441907,270.17,51.426 +441908,268.58,53.429 +441909,272.79,47.186 +441910,270.69,49.368 +441911,268.86,51.447 +441912,267.23,53.439 +441913,271.57,47.236 +441914,269.43,49.403 +441915,267.55,51.468 +441916,265.88,53.447 +441917,270.34,47.287 +441918,268.16,49.438 +441919,266.24,51.489 +441920,264.54,53.453 +441921,269.12,47.34 +441922,266.89,49.474 +441923,264.93,51.509 +441924,263.19,53.458 +441925,267.89,47.394 +441926,265.62,49.511 +441927,263.63,51.529 +441928,261.85,53.462 +441929,266.66,47.45 +441930,264.35,49.548 +441931,262.32,51.548 +441932,260.5,53.464 +441933,265.43,47.508 +441934,263.08,49.586 +441935,261.01,51.567 +441936,259.16,53.464 +441937,264.2,47.567 +441938,261.81,49.624 +441939,259.71,51.585 +441940,257.82,53.463 +441941,262.96,47.628 +441942,260.54,49.663 +441943,258.4,51.603 +441944,256.48,53.461 +441945,261.72,47.691 +441946,259.27,49.702 +441947,257.09,51.62 +441948,255.14,53.458 +441949,260.48,47.755 +441950,258,49.742 +441951,255.79,51.637 +441952,253.81,53.453 +441953,259.24,47.82 +441954,256.72,49.782 +441955,254.49,51.654 +441956,252.47,53.446 +441957,258,47.887 +441958,255.45,49.823 +441959,253.18,51.67 +441960,251.14,53.439 +441961,256.75,47.956 +441962,254.17,49.864 +441963,251.88,51.685 +441964,249.8,53.43 +441965,255.5,48.026 +441966,252.9,49.906 +441967,250.57,51.7 +441968,248.47,53.419 +441969,254.25,48.097 +441970,251.62,49.948 +441971,249.27,51.715 +441972,247.14,53.408 +441973,253,48.17 +441974,250.35,49.991 +441975,247.97,51.729 +441976,245.81,53.395 +441977,251.74,48.244 +441978,249.07,50.034 +441979,246.67,51.743 +441980,244.49,53.381 +441981,250.49,48.319 +441982,247.79,50.078 +441983,245.37,51.756 +441984,243.16,53.365 +441985,249.23,48.396 +441986,246.51,50.122 +441987,244.07,51.769 +441988,241.84,53.349 +441989,247.97,48.474 +441990,245.23,50.166 +441991,242.77,51.782 +441992,240.52,53.331 +441993,246.7,48.554 +441994,243.95,50.211 +441995,241.47,51.794 +441996,239.2,53.312 +441997,245.44,48.634 +441998,242.67,50.256 +441999,240.17,51.806 +442000,237.88,53.292 +442001,244.17,48.716 +442002,241.39,50.302 +442003,238.87,51.817 +442004,236.56,53.271 +442005,242.9,48.799 +442006,240.1,50.348 +442007,237.57,51.828 +442008,235.25,53.249 +442009,241.62,48.882 +442010,238.82,50.394 +442011,236.27,51.839 +442012,233.93,53.226 +442013,240.35,48.968 +442014,237.54,50.441 +442015,234.98,51.849 +442016,232.62,53.201 +442017,239.07,49.054 +442018,236.25,50.488 +442019,233.68,51.859 +442020,231.31,53.176 +442021,237.79,49.141 +442022,234.97,50.535 +442023,232.38,51.869 +442024,230,53.15 +442025,236.51,49.229 +442026,233.68,50.583 +442027,231.09,51.879 +442028,228.69,53.123 +442029,235.22,49.318 +442030,232.39,50.631 +442031,229.8,51.888 +442032,227.39,53.094 +442033,233.94,49.408 +442034,231.1,50.68 +442035,228.5,51.897 +442036,226.09,53.065 +442037,232.65,49.498 +442038,229.82,50.728 +442039,227.21,51.905 +442040,224.78,53.036 +442041,231.35,49.59 +442042,228.53,50.777 +442043,225.91,51.914 +442044,223.48,53.005 +442045,230.06,49.682 +442046,227.24,50.827 +442047,224.62,51.922 +442048,222.19,52.973 +442049,228.76,49.775 +442050,225.94,50.876 +442051,223.33,51.929 +442052,220.89,52.941 +442053,227.47,49.869 +442054,224.65,50.926 +442055,222.04,51.937 +442056,219.59,52.908 +442057,226.17,49.964 +442058,223.36,50.976 +442059,220.75,51.944 +442060,218.3,52.874 +442061,224.86,50.059 +442062,222.07,51.026 +442063,219.46,51.952 +442064,217.01,52.84 +442065,223.56,50.155 +442066,220.77,51.077 +442067,218.17,51.958 +442068,215.72,52.805 +442069,222.25,50.251 +442070,219.48,51.127 +442071,216.88,51.965 +442072,214.44,52.769 +442073,220.94,50.348 +442074,218.18,51.178 +442075,215.59,51.972 +442076,213.15,52.733 +442077,219.63,50.445 +442078,216.89,51.229 +442079,214.31,51.978 +442080,211.87,52.696 +442081,218.32,50.543 +442082,215.59,51.28 +442083,213.02,51.984 +442084,210.58,52.659 +442085,217,50.641 +442086,214.29,51.332 +442087,211.73,51.99 +442088,209.31,52.621 +442089,215.68,50.739 +442090,212.99,51.383 +442091,210.45,51.996 +442092,208.03,52.583 +442093,214.36,50.838 +442094,211.69,51.435 +442095,209.16,52.002 +442096,206.75,52.544 +442097,213.04,50.937 +442098,210.39,51.486 +442099,207.88,52.008 +442100,205.48,52.505 +442101,211.72,51.037 +442102,209.09,51.538 +442103,206.59,52.013 +442104,204.2,52.466 +442105,210.39,51.136 +442106,207.79,51.59 +442107,205.31,52.019 +442108,202.93,52.426 +442109,209.07,51.236 +442110,206.49,51.642 +442111,204.03,52.024 +442112,201.67,52.386 +442113,207.74,51.336 +442114,205.18,51.694 +442115,202.74,52.03 +442116,200.4,52.345 +442117,206.4,51.436 +442118,203.88,51.746 +442119,201.46,52.035 +442120,199.13,52.305 +442121,205.07,51.536 +442122,202.58,51.798 +442123,200.18,52.04 +442124,197.87,52.264 +442125,203.74,51.636 +442126,201.27,51.851 +442127,198.9,52.046 +442128,196.61,52.223 +442129,202.4,51.736 +442130,199.97,51.903 +442131,197.62,52.051 +442132,195.35,52.183 +442133,201.06,51.836 +442134,198.66,51.955 +442135,196.34,52.056 +442136,194.09,52.142 +442137,199.72,51.936 +442138,197.35,52.007 +442139,195.06,52.061 +442140,192.84,52.1 +442141,198.38,52.035 +442142,196.04,52.059 +442143,193.78,52.067 +442144,191.58,52.059 +442145,197.04,52.135 +442146,194.74,52.111 +442147,192.5,52.072 +442148,190.33,52.018 +442149,195.69,52.234 +442150,193.43,52.163 +442151,191.23,52.077 +442152,189.08,51.978 +442153,194.34,52.333 +442154,192.12,52.215 +442155,189.95,52.082 +442156,187.83,51.937 +442157,193,52.432 +442158,190.81,52.267 +442159,188.67,52.088 +442160,186.59,51.896 +442161,191.65,52.531 +442162,189.5,52.319 +442163,187.4,52.093 +442164,185.34,51.855 +442165,190.29,52.629 +442166,188.19,52.371 +442167,186.12,52.099 +442168,184.1,51.815 +442169,188.94,52.726 +442170,186.87,52.423 +442171,184.85,52.105 +442172,182.85,51.775 +442173,187.59,52.824 +442174,185.56,52.474 +442175,183.57,52.111 +442176,181.61,51.735 +442177,186.23,52.921 +442178,184.25,52.525 +442179,182.3,52.117 +442180,180.38,51.696 +442181,184.87,53.017 +442182,182.93,52.577 +442183,181.02,52.123 +442184,179.14,51.657 +442185,183.52,53.113 +442186,181.62,52.628 +442187,179.75,52.129 +442188,177.9,51.618 +442189,182.16,53.208 +442190,180.31,52.679 +442191,178.48,52.135 +442192,176.67,51.58 +442193,180.8,53.303 +442194,178.99,52.729 +442195,177.21,52.142 +442196,175.44,51.542 +442197,179.43,53.397 +442198,177.68,52.78 +442199,175.93,52.149 +442200,174.21,51.505 +442201,178.07,53.49 +442202,176.36,52.83 +442203,174.66,52.156 +442204,172.98,51.468 +442205,176.71,53.583 +442206,175.04,52.88 +442207,173.39,52.163 +442208,171.75,51.432 +442209,175.34,53.675 +442210,173.73,52.93 +442211,172.12,52.17 +442212,170.52,51.396 +442213,173.98,53.766 +442214,172.41,52.98 +442215,170.85,52.178 +442216,169.3,51.361 +442217,172.61,53.856 +442218,171.09,53.029 +442219,169.58,52.186 +442220,168.08,51.327 +442221,171.24,53.946 +442222,169.77,53.078 +442223,168.31,52.194 +442224,166.85,51.293 +442225,169.87,54.034 +442226,168.45,53.127 +442227,167.04,52.202 +442228,165.63,51.26 +442229,168.5,54.122 +442230,167.13,53.176 +442231,165.77,52.211 +442232,164.41,51.228 +442233,167.13,54.209 +442234,165.81,53.224 +442235,164.5,52.22 +442236,163.19,51.197 +442237,165.76,54.295 +442238,164.49,53.272 +442239,163.23,52.229 +442240,161.98,51.167 +442241,164.38,54.38 +442242,163.17,53.32 +442243,161.97,52.238 +442244,160.76,51.137 +442245,163.01,54.464 +442246,161.85,53.367 +442247,160.7,52.248 +442248,159.55,51.108 +442249,161.64,54.547 +442250,160.53,53.414 +442251,159.43,52.258 +442252,158.33,51.08 +442253,160.26,54.629 +442254,159.21,53.461 +442255,158.16,52.269 +442256,157.12,51.054 +442257,158.89,54.71 +442258,157.89,53.508 +442259,156.9,52.28 +442260,155.91,51.028 +442261,157.51,54.79 +442262,156.57,53.554 +442263,155.63,52.291 +442264,154.7,51.003 +442265,156.13,54.869 +442266,155.24,53.599 +442267,154.36,52.302 +442268,153.49,50.979 +442269,154.76,54.947 +442270,153.92,53.645 +442271,153.1,52.314 +442272,152.28,50.956 +442273,153.38,55.023 +442274,152.6,53.69 +442275,151.83,52.327 +442276,151.07,50.935 +442277,152,55.099 +442278,151.28,53.734 +442279,150.56,52.339 +442280,149.86,50.914 +442281,150.62,55.173 +442282,149.95,53.778 +442283,149.3,52.352 +442284,148.66,50.895 +442285,149.25,55.246 +442286,148.63,53.822 +442287,148.03,52.366 +442288,147.45,50.877 +442289,147.87,55.318 +442290,147.31,53.865 +442291,146.77,52.38 +442292,146.25,50.86 +442293,146.49,55.388 +442294,145.98,53.908 +442295,145.5,52.394 +442296,145.04,50.844 +442297,145.11,55.457 +442298,144.66,53.951 +442299,144.23,52.408 +442300,143.84,50.829 +442301,143.73,55.525 +442302,143.33,53.993 +442303,142.97,52.424 +442304,142.63,50.816 +442305,142.35,55.592 +442306,142.01,54.035 +442307,141.7,52.439 +442308,141.43,50.804 +442309,140.97,55.657 +442310,140.69,54.076 +442311,140.44,52.455 +442312,140.23,50.794 +442313,139.59,55.721 +442314,139.36,54.117 +442315,139.17,52.471 +442316,139.02,50.785 +442317,138.21,55.784 +442318,138.04,54.157 +442319,137.91,52.488 +442320,137.82,50.777 +442321,136.83,55.845 +442322,136.71,54.197 +442323,136.64,52.506 +442324,136.62,50.77 +442325,135.45,55.905 +442326,135.39,54.236 +442327,135.37,52.523 +442328,135.42,50.765 +442329,134.07,55.964 +442330,134.06,54.275 +442331,134.11,52.542 +442332,134.21,50.761 +442333,132.69,56.021 +442334,132.74,54.314 +442335,132.84,52.56 +442336,133.01,50.759 +442337,131.31,56.076 +442338,131.41,54.352 +442339,131.58,52.58 +442340,131.81,50.758 +442341,129.93,56.131 +442342,130.09,54.389 +442343,130.31,52.599 +442344,130.61,50.759 +442345,128.55,56.184 +442346,128.76,54.426 +442347,129.05,52.62 +442348,129.41,50.761 +442349,127.17,56.235 +442350,127.44,54.463 +442351,127.78,52.64 +442352,128.2,50.765 +442353,125.79,56.285 +442354,126.11,54.499 +442355,126.51,52.661 +442356,127,50.77 +442357,124.41,56.334 +442358,124.79,54.534 +442359,125.25,52.683 +442360,125.8,50.777 +442361,123.03,56.381 +442362,123.46,54.569 +442363,123.98,52.705 +442364,124.59,50.785 +442365,121.65,56.426 +442366,122.14,54.604 +442367,122.71,52.728 +442368,123.39,50.795 +442369,120.28,56.47 +442370,120.82,54.638 +442371,121.45,52.751 +442372,122.19,50.806 +442373,118.9,56.513 +442374,119.49,54.671 +442375,120.18,52.775 +442376,120.98,50.819 +442377,117.52,56.554 +442378,118.17,54.705 +442379,118.91,52.799 +442380,119.78,50.833 +442381,116.15,56.594 +442382,116.84,54.737 +442383,117.64,52.824 +442384,118.57,50.85 +442385,114.77,56.632 +442386,115.52,54.769 +442387,116.38,52.849 +442388,117.36,50.867 +442389,113.4,56.669 +442390,114.19,54.801 +442391,115.11,52.875 +442392,116.16,50.886 +442393,112.02,56.704 +442394,112.87,54.832 +442395,113.84,52.901 +442396,114.95,50.907 +442397,110.65,56.738 +442398,111.55,54.862 +442399,112.57,52.928 +442400,113.74,50.93 +442401,109.27,56.77 +442402,110.22,54.892 +442403,111.3,52.955 +442404,112.53,50.954 +442405,107.9,56.801 +442406,108.9,54.922 +442407,110.03,52.983 +442408,111.32,50.979 +442409,106.53,56.83 +442410,107.58,54.951 +442411,108.76,53.011 +442412,110.11,51.006 +442413,105.16,56.858 +442414,106.26,54.979 +442415,107.49,53.04 +442416,108.89,51.035 +442417,103.79,56.884 +442418,104.93,55.007 +442419,106.22,53.07 +442420,107.68,51.066 +442421,102.42,56.909 +442422,103.61,55.035 +442423,104.95,53.1 +442424,106.46,51.098 +442425,101.05,56.932 +442426,102.29,55.062 +442427,103.68,53.13 +442428,105.25,51.131 +442429,99.684,56.954 +442430,100.97,55.088 +442431,102.4,53.161 +442432,104.03,51.166 +442433,98.318,56.974 +442434,99.646,55.114 +442435,101.13,53.192 +442436,102.81,51.203 +442437,96.952,56.993 +442438,98.325,55.139 +442439,99.859,53.224 +442440,101.59,51.242 +442441,95.587,57.011 +442442,97.004,55.164 +442443,98.586,53.257 +442444,100.37,51.281 +442445,94.224,57.027 +442446,95.684,55.189 +442447,97.312,53.29 +442448,99.144,51.323 +442449,92.861,57.042 +442450,94.364,55.213 +442451,96.037,53.323 +442452,97.919,51.366 +442453,91.5,57.055 +442454,93.044,55.236 +442455,94.762,53.357 +442456,96.693,51.41 +442457,90.139,57.066 +442458,91.725,55.259 +442459,93.487,53.392 +442460,95.464,51.457 +442461,88.78,57.077 +442462,90.406,55.282 +442463,92.211,53.427 +442464,94.235,51.504 +442465,87.422,57.086 +442466,89.088,55.304 +442467,90.934,53.462 +442468,93.003,51.553 +442469,86.065,57.093 +442470,87.77,55.325 +442471,89.657,53.498 +442472,91.77,51.604 +442473,84.709,57.1 +442474,86.452,55.346 +442475,88.38,53.534 +442476,90.535,51.656 +442477,83.355,57.104 +442478,85.134,55.367 +442479,87.102,53.571 +442480,89.299,51.71 +442481,82.001,57.108 +442482,83.818,55.387 +442483,85.823,53.608 +442484,88.06,51.765 +442485,80.649,57.11 +442486,82.501,55.407 +442487,84.543,53.646 +442488,86.82,51.821 +442489,79.299,57.111 +442490,81.185,55.426 +442491,83.263,53.684 +442492,85.578,51.879 +442493,77.95,57.11 +442494,79.869,55.445 +442495,81.983,53.723 +442496,84.334,51.938 +442497,76.602,57.109 +442498,78.554,55.463 +442499,80.701,53.762 +442500,83.088,51.999 +442501,75.255,57.106 +442502,77.24,55.481 +442503,79.42,53.802 +442504,81.84,52.061 +442505,73.91,57.101 +442506,75.925,55.499 +442507,78.137,53.842 +442508,80.59,52.124 +442509,72.566,57.096 +442510,74.612,55.516 +442511,76.854,53.882 +442512,79.338,52.188 +442513,71.224,57.089 +442514,73.299,55.532 +442515,75.57,53.923 +442516,78.083,52.254 +442517,69.884,57.081 +442518,71.986,55.549 +442519,74.285,53.964 +442520,76.827,52.321 +442521,68.544,57.072 +442522,70.674,55.565 +442523,73,54.006 +442524,75.569,52.39 +442525,67.207,57.062 +442526,69.362,55.58 +442527,71.714,54.048 +442528,74.308,52.459 +442529,65.87,57.051 +442530,68.051,55.595 +442531,70.428,54.09 +442532,73.046,52.53 +442533,64.536,57.038 +442534,66.74,55.61 +442535,69.141,54.133 +442536,71.781,52.602 +442537,63.203,57.025 +442538,65.43,55.624 +442539,67.853,54.176 +442540,70.514,52.675 +442541,61.871,57.01 +442542,64.12,55.638 +442543,66.564,54.22 +442544,69.245,52.749 +442545,60.542,56.994 +442546,62.811,55.651 +442547,65.275,54.264 +442548,67.974,52.825 +442549,59.213,56.977 +442550,61.503,55.665 +442551,63.984,54.308 +442552,66.701,52.901 +442553,57.887,56.96 +442554,60.195,55.678 +442555,62.694,54.352 +442556,65.425,52.978 +442557,56.562,56.941 +442558,58.887,55.69 +442559,61.402,54.397 +442560,64.147,53.057 +442561,55.239,56.921 +442562,57.581,55.702 +442563,60.11,54.442 +442564,62.867,53.136 +442565,53.917,56.901 +442566,56.274,55.714 +442567,58.817,54.488 +442568,61.585,53.216 +442569,52.598,56.879 +442570,54.969,55.726 +442571,57.523,54.534 +442572,60.301,53.298 +442573,51.28,56.857 +442574,53.663,55.737 +442575,56.229,54.58 +442576,59.014,53.38 +442577,49.963,56.834 +442578,52.359,55.748 +442579,54.934,54.626 +442580,57.725,53.463 +442581,48.649,56.81 +442582,51.055,55.759 +442583,53.638,54.673 +442584,56.434,53.546 +442585,47.336,56.785 +442586,49.752,55.769 +442587,52.341,54.72 +442588,55.14,53.631 +442589,46.025,56.759 +442590,48.449,55.78 +442591,51.044,54.767 +442592,53.845,53.716 +442593,44.716,56.733 +442594,47.147,55.79 +442595,49.746,54.814 +442596,52.547,53.802 +442597,43.408,56.706 +442598,45.845,55.799 +442599,48.447,54.862 +442600,51.247,53.889 +442601,42.102,56.678 +442602,44.544,55.809 +442603,47.148,54.909 +442604,49.945,53.976 +442605,40.799,56.649 +442606,43.243,55.818 +442607,45.847,54.957 +442608,48.64,54.064 +442609,39.497,56.62 +442610,41.944,55.827 +442611,44.546,55.006 +442612,47.334,54.152 +442613,38.196,56.591 +442614,40.644,55.836 +442615,43.244,55.054 +442616,46.025,54.241 +442617,36.898,56.561 +442618,39.346,55.845 +442619,41.942,55.103 +442620,44.714,54.331 +442621,35.601,56.53 +442622,38.048,55.853 +442623,40.639,55.151 +442624,43.401,54.421 +442625,34.307,56.499 +442626,36.75,55.861 +442627,39.335,55.2 +442628,42.086,54.511 +442629,33.014,56.467 +442630,35.453,55.87 +442631,38.03,55.249 +442632,40.769,54.602 +442633,31.723,56.435 +442634,34.157,55.878 +442635,36.725,55.298 +442636,39.449,54.693 +442637,30.433,56.402 +442638,32.861,55.885 +442639,35.419,55.347 +442640,38.128,54.785 +442641,29.146,56.369 +442642,31.566,55.893 +442643,34.112,55.397 +442644,36.805,54.877 +442645,27.86,56.336 +442646,30.272,55.901 +442647,32.805,55.446 +442648,35.479,54.969 +442649,26.576,56.302 +442650,28.978,55.908 +442651,31.496,55.496 +442652,34.152,55.061 +442653,25.295,56.268 +442654,27.684,55.916 +442655,30.187,55.545 +442656,32.822,55.154 +442657,24.014,56.234 +442658,26.392,55.923 +442659,28.878,55.595 +442660,31.491,55.247 +442661,22.736,56.2 +442662,25.099,55.93 +442663,27.568,55.645 +442664,30.157,55.339 +442665,21.46,56.165 +442666,23.808,55.938 +442667,26.257,55.694 +442668,28.822,55.432 +442669,20.185,56.13 +442670,22.517,55.945 +442671,24.945,55.744 +442672,27.485,55.525 +442673,18.912,56.095 +442674,21.226,55.952 +442675,23.633,55.794 +442676,26.146,55.618 +442677,17.641,56.06 +442678,19.936,55.959 +442679,22.32,55.844 +442680,24.805,55.711 +442681,16.372,56.025 +442682,18.647,55.966 +442683,21.006,55.893 +442684,23.463,55.804 +442685,15.105,55.99 +442686,17.358,55.973 +442687,19.692,55.943 +442688,22.118,55.897 +442689,13.839,55.955 +442690,16.07,55.98 +442691,18.377,55.993 +442692,20.772,55.99 +442693,12.575,55.92 +442694,14.782,55.987 +442695,17.062,56.042 +442696,19.424,56.083 +442697,11.313,55.885 +442698,13.495,55.995 +442699,15.746,56.092 +442700,18.075,56.175 +442701,10.052,55.851 +442702,12.208,56.002 +442703,14.429,56.141 +442704,16.724,56.267 +442705,8.7934,55.816 +442706,10.922,56.009 +442707,13.112,56.191 +442708,15.371,56.359 +442709,7.5363,55.781 +442710,9.6363,56.016 +442711,11.794,56.24 +442712,14.017,56.451 +442713,6.2809,55.747 +442714,8.3511,56.024 +442715,10.475,56.289 +442716,12.661,56.542 +442717,5.0272,55.713 +442718,7.0664,56.031 +442719,9.1564,56.338 +442720,11.303,56.633 +442721,3.7751,55.679 +442722,5.7823,56.039 +442723,7.8368,56.387 +442724,9.9446,56.724 +442725,2.5247,55.646 +442726,4.4986,56.046 +442727,6.5166,56.436 +442728,8.5843,56.814 +442729,1.2758,55.613 +442730,3.2153,56.054 +442731,5.1959,56.485 +442732,7.2226,56.903 +442733,0.028559,55.58 +442734,1.9326,56.062 +442735,3.8747,56.534 +442736,5.8595,56.993 +442737,358.78,55.547 +442738,0.65027,56.07 +442739,2.5529,56.582 +442740,4.4951,57.081 +442741,357.54,55.515 +442742,359.37,56.078 +442743,1.2306,56.63 +442744,3.1294,57.17 +442745,356.3,55.484 +442746,358.09,56.087 +442747,359.91,56.678 +442748,1.7624,57.257 +442749,355.05,55.453 +442750,356.81,56.095 +442751,358.58,56.726 +442752,0.39413,57.344 +442753,353.82,55.422 +442754,355.53,56.104 +442755,357.26,56.774 +442756,359.02,57.43 +442757,352.58,55.393 +442758,354.25,56.113 +442759,355.94,56.821 +442760,357.65,57.516 +442761,351.34,55.363 +442762,352.97,56.122 +442763,354.61,56.868 +442764,356.28,57.601 +442765,350.1,55.335 +442766,351.69,56.131 +442767,353.29,56.915 +442768,354.91,57.685 +442769,348.87,55.307 +442770,350.41,56.141 +442771,351.96,56.962 +442772,353.54,57.769 +442773,347.64,55.279 +442774,349.13,56.15 +442775,350.64,57.008 +442776,352.16,57.852 +442777,346.41,55.252 +442778,347.85,56.16 +442779,349.31,57.055 +442780,350.79,57.934 +442781,345.18,55.227 +442782,346.57,56.17 +442783,347.98,57.1 +442784,349.41,58.015 +442785,343.95,55.201 +442786,345.29,56.181 +442787,346.66,57.146 +442788,348.03,58.095 +442789,342.72,55.177 +442790,344.02,56.192 +442791,345.33,57.191 +442792,346.65,58.174 +442793,341.49,55.154 +442794,342.74,56.203 +442795,344,57.236 +442796,345.27,58.253 +442797,340.27,55.131 +442798,341.46,56.214 +442799,342.67,57.281 +442800,343.89,58.33 +442801,339.04,55.109 +442802,340.19,56.226 +442803,341.34,57.325 +442804,342.51,58.407 +442805,337.82,55.088 +442806,338.91,56.238 +442807,340.01,57.369 +442808,341.13,58.483 +442809,336.59,55.068 +442810,337.63,56.25 +442811,338.69,57.413 +442812,339.75,58.557 +442813,335.37,55.049 +442814,336.36,56.262 +442815,337.36,57.457 +442816,338.37,58.631 +442817,334.15,55.031 +442818,335.08,56.275 +442819,336.03,57.5 +442820,336.98,58.703 +442821,332.93,55.014 +442822,333.81,56.288 +442823,334.7,57.542 +442824,335.6,58.775 +442825,331.71,54.998 +442826,332.53,56.302 +442827,333.37,57.585 +442828,334.21,58.845 +442829,330.49,54.983 +442830,331.26,56.316 +442831,332.04,57.626 +442832,332.83,58.915 +442833,329.28,54.969 +442834,329.98,56.33 +442835,330.71,57.668 +442836,331.44,58.983 +442837,328.06,54.957 +442838,328.71,56.345 +442839,329.37,57.709 +442840,330.06,59.05 +442841,326.84,54.945 +442842,327.43,56.359 +442843,328.04,57.75 +442844,328.67,59.116 +442845,325.63,54.934 +442846,326.16,56.375 +442847,326.71,57.79 +442848,327.29,59.181 +442849,324.41,54.925 +442850,324.89,56.391 +442851,325.38,57.83 +442852,325.9,59.244 +442853,323.2,54.917 +442854,323.61,56.407 +442855,324.05,57.87 +442856,324.51,59.306 +442857,321.98,54.91 +442858,322.34,56.423 +442859,322.72,57.909 +442860,323.13,59.367 +442861,320.77,54.904 +442862,321.06,56.44 +442863,321.39,57.948 +442864,321.74,59.427 +442865,319.56,54.9 +442866,319.79,56.457 +442867,320.05,57.986 +442868,320.35,59.486 +442869,318.34,54.897 +442870,318.51,56.475 +442871,318.72,58.024 +442872,318.96,59.543 +442873,317.13,54.895 +442874,317.24,56.493 +442875,317.39,58.061 +442876,317.58,59.599 +442877,315.92,54.894 +442878,315.97,56.512 +442879,316.06,58.098 +442880,316.19,59.654 +442881,314.7,54.895 +442882,314.69,56.531 +442883,314.73,58.135 +442884,314.8,59.707 +442885,313.49,54.897 +442886,313.42,56.55 +442887,313.39,58.171 +442888,313.41,59.76 +442889,312.28,54.9 +442890,312.14,56.57 +442891,312.06,58.207 +442892,312.03,59.81 +442893,311.07,54.905 +442894,310.87,56.59 +442895,310.73,58.242 +442896,310.64,59.86 +442897,309.85,54.911 +442898,309.6,56.611 +442899,309.4,58.276 +442900,309.25,59.908 +442901,308.64,54.918 +442902,308.32,56.632 +442903,308.07,58.311 +442904,307.87,59.955 +442905,307.43,54.927 +442906,307.05,56.654 +442907,306.73,58.345 +442908,306.48,60 +442909,306.22,54.937 +442910,305.77,56.676 +442911,305.4,58.378 +442912,305.09,60.044 +442913,305,54.948 +442914,304.5,56.698 +442915,304.07,58.411 +442916,303.71,60.087 +442917,303.79,54.961 +442918,303.22,56.721 +442919,302.74,58.443 +442920,302.32,60.128 +442921,302.57,54.976 +442922,301.95,56.745 +442923,301.41,58.475 +442924,300.94,60.168 +442925,301.36,54.991 +442926,300.67,56.768 +442927,300.07,58.506 +442928,299.55,60.207 +442929,300.15,55.009 +442930,299.4,56.793 +442931,298.74,58.537 +442932,298.17,60.244 +442933,298.93,55.027 +442934,298.12,56.818 +442935,297.41,58.568 +442936,296.78,60.28 +442937,297.71,55.047 +442938,296.85,56.843 +442939,296.08,58.598 +442940,295.4,60.314 +442941,296.5,55.069 +442942,295.57,56.869 +442943,294.75,58.627 +442944,294.02,60.347 +442945,295.28,55.092 +442946,294.29,56.895 +442947,293.42,58.656 +442948,292.64,60.379 +442949,294.06,55.116 +442950,293.02,56.921 +442951,292.09,58.685 +442952,291.26,60.409 +442953,292.84,55.142 +442954,291.74,56.948 +442955,290.76,58.713 +442956,289.87,60.438 +442957,291.62,55.169 +442958,290.46,56.976 +442959,289.43,58.741 +442960,288.49,60.465 +442961,290.4,55.198 +442962,289.19,57.004 +442963,288.1,58.768 +442964,287.12,60.491 +442965,289.18,55.228 +442966,287.91,57.033 +442967,286.77,58.794 +442968,285.74,60.516 +442969,287.96,55.259 +442970,286.63,57.061 +442971,285.44,58.821 +442972,284.36,60.539 +442973,286.73,55.292 +442974,285.35,57.091 +442975,284.11,58.846 +442976,282.98,60.561 +442977,285.51,55.327 +442978,284.07,57.121 +442979,282.78,58.872 +442980,281.61,60.581 +442981,284.28,55.363 +442982,282.79,57.151 +442983,281.45,58.896 +442984,280.23,60.601 +442985,283.06,55.4 +442986,281.51,57.182 +442987,280.12,58.921 +442988,278.86,60.618 +442989,281.83,55.439 +442990,280.23,57.213 +442991,278.79,58.944 +442992,277.48,60.635 +442993,280.6,55.479 +442994,278.95,57.245 +442995,277.46,58.968 +442996,276.11,60.65 +442997,279.37,55.52 +442998,277.67,57.277 +442999,276.14,58.991 +443000,274.74,60.663 +443001,278.14,55.563 +443002,276.39,57.31 +443003,274.81,59.013 +443004,273.37,60.676 +443005,276.9,55.607 +443006,275.11,57.343 +443007,273.48,59.035 +443008,272,60.687 +443009,275.67,55.653 +443010,273.83,57.376 +443011,272.16,59.056 +443012,270.63,60.697 +443013,274.43,55.7 +443014,272.54,57.41 +443015,270.83,59.077 +443016,269.27,60.705 +443017,273.19,55.748 +443018,271.26,57.444 +443019,269.5,59.098 +443020,267.9,60.712 +443021,271.95,55.798 +443022,269.98,57.479 +443023,268.18,59.118 +443024,266.53,60.718 +443025,270.71,55.848 +443026,268.69,57.514 +443027,266.85,59.138 +443028,265.17,60.723 +443029,269.47,55.901 +443030,267.41,57.55 +443031,265.53,59.157 +443032,263.81,60.726 +443033,268.22,55.954 +443034,266.12,57.586 +443035,264.21,59.176 +443036,262.45,60.728 +443037,266.98,56.009 +443038,264.83,57.622 +443039,262.88,59.194 +443040,261.09,60.729 +443041,265.73,56.065 +443042,263.55,57.659 +443043,261.56,59.212 +443044,259.73,60.729 +443045,264.48,56.122 +443046,262.26,57.696 +443047,260.24,59.23 +443048,258.37,60.727 +443049,263.23,56.181 +443050,260.97,57.734 +443051,258.91,59.247 +443052,257.02,60.724 +443053,261.97,56.24 +443054,259.68,57.772 +443055,257.59,59.264 +443056,255.66,60.72 +443057,260.72,56.301 +443058,258.4,57.81 +443059,256.27,59.28 +443060,254.31,60.715 +443061,259.46,56.363 +443062,257.11,57.849 +443063,254.95,59.296 +443064,252.96,60.709 +443065,258.2,56.426 +443066,255.82,57.888 +443067,253.63,59.312 +443068,251.61,60.702 +443069,256.94,56.49 +443070,254.52,57.927 +443071,252.31,59.327 +443072,250.26,60.694 +443073,255.68,56.556 +443074,253.23,57.967 +443075,250.99,59.342 +443076,248.91,60.684 +443077,254.41,56.622 +443078,251.94,58.007 +443079,249.67,59.357 +443080,247.57,60.674 +443081,253.15,56.689 +443082,250.65,58.047 +443083,248.35,59.371 +443084,246.22,60.662 +443085,251.88,56.758 +443086,249.36,58.088 +443087,247.03,59.385 +443088,244.88,60.65 +443089,250.61,56.827 +443090,248.06,58.129 +443091,245.72,59.398 +443092,243.54,60.636 +443093,249.34,56.898 +443094,246.77,58.171 +443095,244.4,59.411 +443096,242.2,60.622 +443097,248.06,56.969 +443098,245.47,58.212 +443099,243.08,59.424 +443100,240.86,60.606 +443101,246.78,57.041 +443102,244.18,58.254 +443103,241.77,59.436 +443104,239.53,60.59 +443105,245.5,57.114 +443106,242.88,58.297 +443107,240.45,59.448 +443108,238.19,60.572 +443109,244.22,57.188 +443110,241.58,58.339 +443111,239.14,59.46 +443112,236.86,60.554 +443113,242.94,57.263 +443114,240.28,58.382 +443115,237.82,59.472 +443116,235.53,60.535 +443117,241.65,57.339 +443118,238.98,58.425 +443119,236.51,59.483 +443120,234.2,60.515 +443121,240.37,57.415 +443122,237.68,58.468 +443123,235.2,59.494 +443124,232.87,60.495 +443125,239.08,57.493 +443126,236.38,58.512 +443127,233.88,59.505 +443128,231.55,60.473 +443129,237.78,57.57 +443130,235.08,58.556 +443131,232.57,59.515 +443132,230.22,60.451 +443133,236.49,57.649 +443134,233.78,58.6 +443135,231.26,59.525 +443136,228.9,60.428 +443137,235.19,57.728 +443138,232.48,58.644 +443139,229.95,59.535 +443140,227.58,60.404 +443141,233.9,57.808 +443142,231.18,58.689 +443143,228.64,59.545 +443144,226.26,60.38 +443145,232.6,57.889 +443146,229.87,58.733 +443147,227.33,59.555 +443148,224.94,60.355 +443149,231.29,57.97 +443150,228.57,58.778 +443151,226.02,59.564 +443152,223.63,60.329 +443153,229.99,58.052 +443154,227.26,58.823 +443155,224.71,59.573 +443156,222.31,60.303 +443157,228.68,58.134 +443158,225.96,58.868 +443159,223.41,59.582 +443160,221,60.276 +443161,227.37,58.217 +443162,224.65,58.914 +443163,222.1,59.59 +443164,219.69,60.249 +443165,226.06,58.3 +443166,223.35,58.959 +443167,220.79,59.599 +443168,218.38,60.221 +443169,224.75,58.383 +443170,222.04,59.005 +443171,219.49,59.607 +443172,217.08,60.193 +443173,223.43,58.467 +443174,220.73,59.051 +443175,218.18,59.616 +443176,215.77,60.164 +443177,222.12,58.551 +443178,219.42,59.096 +443179,216.88,59.624 +443180,214.47,60.135 +443181,220.8,58.636 +443182,218.11,59.142 +443183,215.57,59.631 +443184,213.17,60.106 +443185,219.48,58.721 +443186,216.8,59.188 +443187,214.27,59.639 +443188,211.87,60.076 +443189,218.15,58.806 +443190,215.49,59.235 +443191,212.97,59.647 +443192,210.57,60.045 +443193,216.83,58.892 +443194,214.18,59.281 +443195,211.67,59.654 +443196,209.27,60.015 +443197,215.5,58.977 +443198,212.86,59.327 +443199,210.36,59.662 +443200,207.98,59.984 +443201,214.17,59.063 +443202,211.55,59.373 +443203,209.06,59.669 +443204,206.69,59.953 +443205,212.84,59.149 +443206,210.24,59.42 +443207,207.76,59.677 +443208,205.4,59.921 +443209,211.51,59.235 +443210,208.92,59.466 +443211,206.46,59.684 +443212,204.11,59.89 +443213,210.17,59.321 +443214,207.61,59.513 +443215,205.16,59.691 +443216,202.82,59.858 +443217,208.83,59.407 +443218,206.29,59.559 +443219,203.86,59.698 +443220,201.54,59.827 +443221,207.5,59.493 +443222,204.97,59.605 +443223,202.57,59.705 +443224,200.25,59.795 +443225,206.15,59.579 +443226,203.66,59.652 +443227,201.27,59.712 +443228,198.97,59.763 +443229,204.81,59.665 +443230,202.34,59.698 +443231,199.97,59.719 +443232,197.69,59.731 +443233,203.47,59.751 +443234,201.02,59.745 +443235,198.67,59.726 +443236,196.41,59.699 +443237,202.12,59.837 +443238,199.7,59.791 +443239,197.38,59.733 +443240,195.14,59.667 +443241,200.77,59.923 +443242,198.38,59.837 +443243,196.08,59.741 +443244,193.86,59.635 +443245,199.42,60.008 +443246,197.06,59.883 +443247,194.79,59.748 +443248,192.59,59.603 +443249,198.07,60.094 +443250,195.74,59.929 +443251,193.49,59.755 +443252,191.32,59.572 +443253,196.72,60.179 +443254,194.42,59.975 +443255,192.2,59.762 +443256,190.05,59.54 +443257,195.36,60.263 +443258,193.1,60.021 +443259,190.91,59.769 +443260,188.78,59.509 +443261,194.01,60.348 +443262,191.77,60.067 +443263,189.61,59.777 +443264,187.52,59.478 +443265,192.65,60.432 +443266,190.45,60.113 +443267,188.32,59.784 +443268,186.25,59.447 +443269,191.29,60.515 +443270,189.13,60.159 +443271,187.03,59.791 +443272,184.99,59.416 +443273,189.93,60.599 +443274,187.8,60.204 +443275,185.74,59.799 +443276,183.73,59.386 +443277,188.57,60.682 +443278,186.48,60.249 +443279,184.45,59.807 +443280,182.47,59.356 +443281,187.2,60.764 +443282,185.15,60.294 +443283,183.16,59.815 +443284,181.21,59.327 +443285,185.84,60.846 +443286,183.83,60.339 +443287,181.87,59.823 +443288,179.96,59.298 +443289,184.47,60.927 +443290,182.5,60.384 +443291,180.58,59.831 +443292,178.7,59.269 +443293,183.1,61.008 +443294,181.17,60.429 +443295,179.29,59.839 +443296,177.45,59.241 +443297,181.73,61.089 +443298,179.85,60.473 +443299,178,59.847 +443300,176.2,59.213 +443301,180.36,61.168 +443302,178.52,60.517 +443303,176.71,59.856 +443304,174.95,59.186 +443305,178.99,61.247 +443306,177.19,60.561 +443307,175.43,59.865 +443308,173.7,59.159 +443309,177.62,61.326 +443310,175.86,60.605 +443311,174.14,59.874 +443312,172.45,59.133 +443313,176.25,61.404 +443314,174.53,60.649 +443315,172.85,59.883 +443316,171.2,59.107 +443317,174.87,61.481 +443318,173.2,60.692 +443319,171.57,59.892 +443320,169.96,59.082 +443321,173.49,61.557 +443322,171.87,60.735 +443323,170.28,59.902 +443324,168.72,59.058 +443325,172.12,61.632 +443326,170.54,60.778 +443327,168.99,59.911 +443328,167.47,59.034 +443329,170.74,61.707 +443330,169.21,60.821 +443331,167.71,59.921 +443332,166.23,59.012 +443333,169.36,61.781 +443334,167.88,60.863 +443335,166.42,59.932 +443336,164.99,58.989 +443337,167.98,61.854 +443338,166.55,60.905 +443339,165.14,59.942 +443340,163.75,58.968 +443341,166.6,61.927 +443342,165.21,60.946 +443343,163.85,59.953 +443344,162.52,58.948 +443345,165.21,61.998 +443346,163.88,60.988 +443347,162.57,59.964 +443348,161.28,58.928 +443349,163.83,62.068 +443350,162.55,61.029 +443351,161.29,59.975 +443352,160.05,58.909 +443353,162.45,62.138 +443354,161.22,61.07 +443355,160,59.987 +443356,158.81,58.891 +443357,161.06,62.207 +443358,159.88,61.11 +443359,158.72,59.999 +443360,157.58,58.874 +443361,159.68,62.274 +443362,158.55,61.15 +443363,157.44,60.011 +443364,156.35,58.857 +443365,158.29,62.341 +443366,157.21,61.19 +443367,156.16,60.023 +443368,155.12,58.842 +443369,156.9,62.407 +443370,155.88,61.229 +443371,154.87,60.036 +443372,153.89,58.828 +443373,155.52,62.471 +443374,154.55,61.269 +443375,153.59,60.049 +443376,152.66,58.814 +443377,154.13,62.535 +443378,153.21,61.307 +443379,152.31,60.063 +443380,151.43,58.802 +443381,152.74,62.597 +443382,151.88,61.346 +443383,151.03,60.076 +443384,150.2,58.791 +443385,151.35,62.659 +443386,150.54,61.384 +443387,149.75,60.09 +443388,148.97,58.78 +443389,149.96,62.719 +443390,149.21,61.421 +443391,148.47,60.105 +443392,147.75,58.771 +443393,148.57,62.778 +443394,147.87,61.459 +443395,147.19,60.12 +443396,146.52,58.763 +443397,147.18,62.837 +443398,146.53,61.495 +443399,145.9,60.135 +443400,145.3,58.756 +443401,145.79,62.894 +443402,145.2,61.532 +443403,144.62,60.15 +443404,144.07,58.75 +443405,144.4,62.949 +443406,143.86,61.568 +443407,143.34,60.166 +443408,142.85,58.745 +443409,143.01,63.004 +443410,142.53,61.604 +443411,142.06,60.182 +443412,141.63,58.741 +443413,141.62,63.058 +443414,141.19,61.639 +443415,140.78,60.199 +443416,140.4,58.739 +443417,140.23,63.11 +443418,139.85,61.674 +443419,139.5,60.216 +443420,139.18,58.737 +443421,138.84,63.161 +443422,138.52,61.708 +443423,138.22,60.233 +443424,137.96,58.737 +443425,137.45,63.211 +443426,137.18,61.742 +443427,136.94,60.251 +443428,136.74,58.738 +443429,136.06,63.26 +443430,135.84,61.776 +443431,135.66,60.269 +443432,135.51,58.741 +443433,134.66,63.307 +443434,134.51,61.809 +443435,134.38,60.288 +443436,134.29,58.744 +443437,133.27,63.353 +443438,133.17,61.842 +443439,133.1,60.307 +443440,133.07,58.749 +443441,131.88,63.398 +443442,131.83,61.874 +443443,131.82,60.326 +443444,131.85,58.755 +443445,130.49,63.442 +443446,130.49,61.906 +443447,130.54,60.346 +443448,130.63,58.762 +443449,129.1,63.484 +443450,129.16,61.937 +443451,129.26,60.366 +443452,129.41,58.771 +443453,127.71,63.525 +443454,127.82,61.968 +443455,127.98,60.387 +443456,128.19,58.78 +443457,126.32,63.565 +443458,126.48,61.999 +443459,126.7,60.408 +443460,126.97,58.792 +443461,124.93,63.603 +443462,125.15,62.029 +443463,125.42,60.429 +443464,125.75,58.804 +443465,123.54,63.641 +443466,123.81,62.059 +443467,124.14,60.451 +443468,124.52,58.818 +443469,122.15,63.677 +443470,122.47,62.088 +443471,122.86,60.473 +443472,123.3,58.833 +443473,120.76,63.711 +443474,121.14,62.117 +443475,121.58,60.496 +443476,122.08,58.849 +443477,119.37,63.744 +443478,119.8,62.145 +443479,120.3,60.519 +443480,120.86,58.867 +443481,117.98,63.776 +443482,118.46,62.173 +443483,119.01,60.543 +443484,119.64,58.886 +443485,116.59,63.807 +443486,117.13,62.2 +443487,117.73,60.567 +443488,118.41,58.906 +443489,115.2,63.836 +443490,115.79,62.227 +443491,116.45,60.591 +443492,117.19,58.928 +443493,113.81,63.864 +443494,114.46,62.254 +443495,115.17,60.616 +443496,115.96,58.951 +443497,112.43,63.891 +443498,113.12,62.28 +443499,113.89,60.641 +443500,114.74,58.975 +443501,111.04,63.917 +443502,111.78,62.305 +443503,112.61,60.667 +443504,113.51,59.001 +443505,109.66,63.941 +443506,110.45,62.331 +443507,111.32,60.693 +443508,112.29,59.028 +443509,108.27,63.964 +443510,109.11,62.355 +443511,110.04,60.72 +443512,111.06,59.056 +443513,106.89,63.985 +443514,107.78,62.38 +443515,108.76,60.747 +443516,109.83,59.086 +443517,105.5,64.005 +443518,106.44,62.403 +443519,107.47,60.774 +443520,108.61,59.117 +443521,104.12,64.024 +443522,105.11,62.427 +443523,106.19,60.802 +443524,107.38,59.149 +443525,102.74,64.042 +443526,103.78,62.45 +443527,104.91,60.83 +443528,106.15,59.183 +443529,101.36,64.058 +443530,102.44,62.472 +443531,103.62,60.859 +443532,104.92,59.218 +443533,99.977,64.073 +443534,101.11,62.494 +443535,102.34,60.888 +443536,103.68,59.254 +443537,98.597,64.087 +443538,99.774,62.516 +443539,101.05,60.917 +443540,102.45,59.291 +443541,97.219,64.099 +443542,98.441,62.537 +443543,99.768,60.947 +443544,101.22,59.33 +443545,95.841,64.11 +443546,97.108,62.557 +443547,98.482,60.978 +443548,99.981,59.37 +443549,94.465,64.12 +443550,95.775,62.578 +443551,97.196,61.008 +443552,98.745,59.412 +443553,93.089,64.129 +443554,94.443,62.598 +443555,95.91,61.039 +443556,97.507,59.454 +443557,91.715,64.137 +443558,93.111,62.617 +443559,94.623,61.071 +443560,96.268,59.498 +443561,90.341,64.143 +443562,91.78,62.636 +443563,93.336,61.103 +443564,95.028,59.543 +443565,88.969,64.148 +443566,90.449,62.654 +443567,92.048,61.135 +443568,93.787,59.59 +443569,87.598,64.152 +443570,89.118,62.673 +443571,90.76,61.168 +443572,92.544,59.637 +443573,86.228,64.154 +443574,87.787,62.69 +443575,89.471,61.201 +443576,91.299,59.686 +443577,84.859,64.156 +443578,86.457,62.708 +443579,88.182,61.235 +443580,90.054,59.736 +443581,83.491,64.156 +443582,85.128,62.725 +443583,86.893,61.268 +443584,88.807,59.787 +443585,82.125,64.155 +443586,83.798,62.741 +443587,85.602,61.303 +443588,87.558,59.84 +443589,80.759,64.153 +443590,82.47,62.757 +443591,84.312,61.337 +443592,86.308,59.893 +443593,79.396,64.15 +443594,81.141,62.773 +443595,83.021,61.372 +443596,85.056,59.947 +443597,78.033,64.146 +443598,79.813,62.788 +443599,81.729,61.408 +443600,83.802,60.003 +443601,76.672,64.141 +443602,78.486,62.803 +443603,80.437,61.443 +443604,82.547,60.06 +443605,75.312,64.135 +443606,77.159,62.818 +443607,79.144,61.479 +443608,81.29,60.118 +443609,73.953,64.127 +443610,75.833,62.832 +443611,77.851,61.516 +443612,80.032,60.177 +443613,72.596,64.119 +443614,74.506,62.846 +443615,76.557,61.552 +443616,78.771,60.237 +443617,71.24,64.109 +443618,73.181,62.86 +443619,75.263,61.589 +443620,77.509,60.297 +443621,69.886,64.099 +443622,71.856,62.873 +443623,73.968,61.627 +443624,76.246,60.359 +443625,68.533,64.087 +443626,70.531,62.886 +443627,72.672,61.664 +443628,74.98,60.422 +443629,67.182,64.075 +443630,69.207,62.898 +443631,71.376,61.702 +443632,73.713,60.486 +443633,65.832,64.062 +443634,67.884,62.911 +443635,70.079,61.74 +443636,72.443,60.551 +443637,64.484,64.047 +443638,66.561,62.922 +443639,68.782,61.779 +443640,71.172,60.616 +443641,63.137,64.032 +443642,65.238,62.934 +443643,67.484,61.818 +443644,69.899,60.683 +443645,61.792,64.016 +443646,63.916,62.945 +443647,66.185,61.857 +443648,68.624,60.75 +443649,60.448,63.999 +443650,62.595,62.956 +443651,64.886,61.896 +443652,67.347,60.819 +443653,59.106,63.982 +443654,61.274,62.967 +443655,63.586,61.936 +443656,66.068,60.888 +443657,57.766,63.963 +443658,59.953,62.977 +443659,62.285,61.976 +443660,64.787,60.957 +443661,56.427,63.944 +443662,58.633,62.987 +443663,60.984,62.016 +443664,63.505,61.028 +443665,55.09,63.924 +443666,57.314,62.997 +443667,59.683,62.056 +443668,62.22,61.099 +443669,53.754,63.903 +443670,55.996,63.007 +443671,58.38,62.097 +443672,60.933,61.171 +443673,52.42,63.881 +443674,54.677,63.016 +443675,57.077,62.137 +443676,59.644,61.244 +443677,51.088,63.859 +443678,53.36,63.025 +443679,55.773,62.178 +443680,58.353,61.317 +443681,49.757,63.836 +443682,52.043,63.034 +443683,54.469,62.22 +443684,57.06,61.391 +443685,48.429,63.813 +443686,50.726,63.043 +443687,53.164,62.261 +443688,55.766,61.466 +443689,47.101,63.788 +443690,49.411,63.051 +443691,51.858,62.303 +443692,54.469,61.541 +443693,45.776,63.764 +443694,48.095,63.06 +443695,50.552,62.344 +443696,53.17,61.617 +443697,44.452,63.738 +443698,46.781,63.068 +443699,49.245,62.386 +443700,51.869,61.693 +443701,43.131,63.713 +443702,45.467,63.076 +443703,47.937,62.428 +443704,50.566,61.769 +443705,41.81,63.686 +443706,44.153,63.083 +443707,46.629,62.47 +443708,49.261,61.846 +443709,40.492,63.659 +443710,42.84,63.091 +443711,45.32,62.513 +443712,47.953,61.924 +443713,39.175,63.632 +443714,41.528,63.098 +443715,44.01,62.555 +443716,46.644,62.002 +443717,37.86,63.604 +443718,40.216,63.106 +443719,42.7,62.598 +443720,45.333,62.08 +443721,36.547,63.576 +443722,38.905,63.113 +443723,41.389,62.64 +443724,44.02,62.159 +443725,35.236,63.548 +443726,37.594,63.12 +443727,40.077,62.683 +443728,42.705,62.238 +443729,33.926,63.519 +443730,36.284,63.126 +443731,38.764,62.726 +443732,41.387,62.317 +443733,32.618,63.49 +443734,34.975,63.133 +443735,37.451,62.769 +443736,40.068,62.396 +443737,31.312,63.461 +443738,33.666,63.14 +443739,36.138,62.812 +443740,38.747,62.476 +443741,30.008,63.431 +443742,32.358,63.146 +443743,34.823,62.855 +443744,37.423,62.556 +443745,28.705,63.401 +443746,31.05,63.153 +443747,33.508,62.898 +443748,36.098,62.636 +443749,27.405,63.371 +443750,29.743,63.159 +443751,32.193,62.941 +443752,34.771,62.716 +443753,26.106,63.341 +443754,28.437,63.165 +443755,30.876,62.984 +443756,33.442,62.796 +443757,24.808,63.31 +443758,27.131,63.172 +443759,29.559,63.028 +443760,32.111,62.877 +443761,23.513,63.28 +443762,25.826,63.178 +443763,28.242,63.071 +443764,30.778,62.957 +443765,22.219,63.249 +443766,24.521,63.184 +443767,26.924,63.114 +443768,29.443,63.037 +443769,20.927,63.219 +443770,23.217,63.19 +443771,25.605,63.157 +443772,28.106,63.118 +443773,19.637,63.188 +443774,21.914,63.196 +443775,24.285,63.2 +443776,26.767,63.198 +443777,18.349,63.157 +443778,20.611,63.203 +443779,22.965,63.244 +443780,25.427,63.278 +443781,17.062,63.127 +443782,19.308,63.209 +443783,21.644,63.287 +443784,24.085,63.358 +443785,15.777,63.096 +443786,18.006,63.215 +443787,20.323,63.33 +443788,22.74,63.438 +443789,14.494,63.066 +443790,16.705,63.221 +443791,19.001,63.373 +443792,21.395,63.518 +443793,13.212,63.035 +443794,15.404,63.227 +443795,17.678,63.416 +443796,20.047,63.598 +443797,11.932,63.005 +443798,14.104,63.234 +443799,16.355,63.458 +443800,18.698,63.677 +443801,10.654,62.975 +443802,12.805,63.24 +443803,15.031,63.501 +443804,17.346,63.756 +443805,9.3778,62.945 +443806,11.505,63.247 +443807,13.707,63.544 +443808,15.994,63.835 +443809,8.1029,62.916 +443810,10.207,63.253 +443811,12.382,63.586 +443812,14.639,63.913 +443813,6.8297,62.886 +443814,8.9089,63.26 +443815,11.057,63.629 +443816,13.283,63.992 +443817,5.5581,62.858 +443818,7.6113,63.266 +443819,9.7305,63.671 +443820,11.926,64.069 +443821,4.2881,62.829 +443822,6.3143,63.273 +443823,8.4039,63.713 +443824,10.566,64.147 +443825,3.0197,62.801 +443826,5.0178,63.28 +443827,7.0768,63.755 +443828,9.2057,64.224 +443829,1.7529,62.773 +443830,3.7218,63.287 +443831,5.7491,63.797 +443832,7.8434,64.3 +443833,0.48764,62.745 +443834,2.4263,63.294 +443835,4.4209,63.838 +443836,6.4797,64.376 +443837,359.22,62.718 +443838,1.1312,63.302 +443839,3.0922,63.88 +443840,5.1145,64.452 +443841,357.96,62.692 +443842,359.84,63.309 +443843,1.763,63.921 +443844,3.7479,64.527 +443845,356.7,62.666 +443846,358.54,63.317 +443847,0.43325,63.962 +443848,2.3799,64.601 +443849,355.44,62.64 +443850,357.25,63.324 +443851,359.1,64.003 +443852,1.0106,64.675 +443853,354.18,62.615 +443854,355.96,63.332 +443855,357.77,64.044 +443856,359.64,64.748 +443857,352.93,62.591 +443858,354.66,63.34 +443859,356.44,64.084 +443860,358.27,64.82 +443861,351.67,62.567 +443862,353.37,63.349 +443863,355.11,64.125 +443864,356.89,64.892 +443865,350.42,62.544 +443866,352.08,63.357 +443867,353.78,64.165 +443868,355.52,64.964 +443869,349.17,62.521 +443870,350.79,63.366 +443871,352.45,64.204 +443872,354.14,65.034 +443873,347.92,62.499 +443874,349.5,63.375 +443875,351.11,64.244 +443876,352.77,65.104 +443877,346.67,62.478 +443878,348.21,63.384 +443879,349.78,64.283 +443880,351.39,65.173 +443881,345.42,62.458 +443882,346.92,63.394 +443883,348.45,64.322 +443884,350.01,65.241 +443885,344.17,62.438 +443886,345.63,63.404 +443887,347.11,64.361 +443888,348.63,65.308 +443889,342.92,62.419 +443890,344.34,63.413 +443891,345.78,64.399 +443892,347.25,65.375 +443893,341.68,62.401 +443894,343.05,63.424 +443895,344.44,64.437 +443896,345.87,65.441 +443897,340.44,62.384 +443898,341.76,63.434 +443899,343.11,64.475 +443900,344.49,65.505 +443901,339.19,62.368 +443902,340.47,63.445 +443903,341.77,64.513 +443904,343.1,65.569 +443905,337.95,62.352 +443906,339.18,63.456 +443907,340.44,64.55 +443908,341.72,65.632 +443909,336.71,62.338 +443910,337.89,63.467 +443911,339.1,64.587 +443912,340.33,65.695 +443913,335.47,62.324 +443914,336.6,63.479 +443915,337.76,64.623 +443916,338.95,65.756 +443917,334.23,62.311 +443918,335.32,63.491 +443919,336.43,64.66 +443920,337.56,65.816 +443921,332.99,62.299 +443922,334.03,63.503 +443923,335.09,64.696 +443924,336.17,65.875 +443925,331.76,62.289 +443926,332.74,63.516 +443927,333.75,64.731 +443928,334.78,65.933 +443929,330.52,62.279 +443930,331.46,63.529 +443931,332.41,64.766 +443932,333.39,65.991 +443933,329.29,62.27 +443934,330.17,63.542 +443935,331.08,64.801 +443936,332.01,66.047 +443937,328.05,62.262 +443938,328.88,63.555 +443939,329.74,64.836 +443940,330.62,66.102 +443941,326.82,62.256 +443942,327.6,63.569 +443943,328.4,64.87 +443944,329.22,66.156 +443945,325.59,62.25 +443946,326.31,63.583 +443947,327.06,64.904 +443948,327.83,66.209 +443949,324.35,62.245 +443950,325.03,63.598 +443951,325.72,64.937 +443952,326.44,66.261 +443953,323.12,62.242 +443954,323.74,63.613 +443955,324.38,64.97 +443956,325.05,66.312 +443957,321.89,62.239 +443958,322.46,63.628 +443959,323.04,65.003 +443960,323.66,66.361 +443961,320.66,62.238 +443962,321.17,63.644 +443963,321.71,65.035 +443964,322.27,66.41 +443965,319.43,62.238 +443966,319.88,63.66 +443967,320.37,65.067 +443968,320.87,66.457 +443969,318.2,62.239 +443970,318.6,63.676 +443971,319.03,65.098 +443972,319.48,66.503 +443973,316.97,62.241 +443974,317.31,63.693 +443975,317.69,65.129 +443976,318.09,66.548 +443977,315.74,62.245 +443978,316.03,63.71 +443979,316.35,65.16 +443980,316.69,66.592 +443981,314.51,62.249 +443982,314.74,63.728 +443983,315.01,65.19 +443984,315.3,66.635 +443985,313.28,62.255 +443986,313.46,63.746 +443987,313.67,65.22 +443988,313.91,66.676 +443989,312.06,62.262 +443990,312.18,63.764 +443991,312.33,65.249 +443992,312.51,66.717 +443993,310.83,62.27 +443994,310.89,63.783 +443995,310.99,65.278 +443996,311.12,66.756 +443997,309.6,62.279 +443998,309.61,63.802 +443999,309.65,65.307 +444000,309.73,66.794 +444001,308.37,62.29 +444002,308.32,63.821 +444003,308.31,65.335 +444004,308.33,66.83 +444005,307.14,62.302 +444006,307.04,63.841 +444007,306.97,65.363 +444008,306.94,66.866 +444009,305.92,62.315 +444010,305.75,63.861 +444011,305.63,65.39 +444012,305.55,66.9 +444013,304.69,62.329 +444014,304.47,63.882 +444015,304.29,65.417 +444016,304.15,66.933 +444017,303.46,62.345 +444018,303.18,63.903 +444019,302.95,65.443 +444020,302.76,66.965 +444021,302.23,62.362 +444022,301.9,63.925 +444023,301.61,65.469 +444024,301.37,66.995 +444025,301,62.38 +444026,300.61,63.947 +444027,300.27,65.495 +444028,299.98,67.024 +444029,299.78,62.399 +444030,299.33,63.969 +444031,298.93,65.52 +444032,298.59,67.052 +444033,298.55,62.42 +444034,298.04,63.992 +444035,297.59,65.545 +444036,297.19,67.079 +444037,297.32,62.442 +444038,296.76,64.015 +444039,296.25,65.569 +444040,295.8,67.104 +444041,296.09,62.465 +444042,295.47,64.038 +444043,294.91,65.593 +444044,294.41,67.129 +444045,294.86,62.49 +444046,294.18,64.062 +444047,293.57,65.617 +444048,293.02,67.152 +444049,293.63,62.515 +444050,292.9,64.087 +444051,292.24,65.64 +444052,291.63,67.173 +444053,292.4,62.542 +444054,291.61,64.111 +444055,290.9,65.662 +444056,290.24,67.194 +444057,291.16,62.571 +444058,290.33,64.137 +444059,289.56,65.684 +444060,288.85,67.213 +444061,289.93,62.6 +444062,289.04,64.162 +444063,288.22,65.706 +444064,287.47,67.231 +444065,288.7,62.631 +444066,287.75,64.188 +444067,286.88,65.727 +444068,286.08,67.248 +444069,287.47,62.663 +444070,286.46,64.215 +444071,285.54,65.748 +444072,284.69,67.263 +444073,286.23,62.696 +444074,285.18,64.241 +444075,284.21,65.769 +444076,283.31,67.277 +444077,285,62.731 +444078,283.89,64.269 +444079,282.87,65.789 +444080,281.92,67.29 +444081,283.76,62.766 +444082,282.6,64.296 +444083,281.53,65.808 +444084,280.54,67.302 +444085,282.52,62.803 +444086,281.31,64.324 +444087,280.19,65.828 +444088,279.15,67.313 +444089,281.29,62.842 +444090,280.03,64.353 +444091,278.86,65.846 +444092,277.77,67.322 +444093,280.05,62.881 +444094,278.74,64.381 +444095,277.52,65.865 +444096,276.39,67.33 +444097,278.81,62.921 +444098,277.45,64.41 +444099,276.18,65.883 +444100,275.01,67.338 +444101,277.57,62.963 +444102,276.16,64.44 +444103,274.85,65.9 +444104,273.63,67.343 +444105,276.33,63.006 +444106,274.87,64.47 +444107,273.51,65.918 +444108,272.25,67.348 +444109,275.08,63.05 +444110,273.58,64.5 +444111,272.18,65.934 +444112,270.87,67.352 +444113,273.84,63.096 +444114,272.29,64.531 +444115,270.84,65.951 +444116,269.49,67.354 +444117,272.59,63.142 +444118,271,64.562 +444119,269.51,65.967 +444120,268.12,67.355 +444121,271.35,63.189 +444122,269.7,64.593 +444123,268.17,65.982 +444124,266.74,67.355 +444125,270.1,63.238 +444126,268.41,64.625 +444127,266.84,65.998 +444128,265.37,67.354 +444129,268.85,63.288 +444130,267.12,64.657 +444131,265.51,66.012 +444132,264,67.352 +444133,267.6,63.339 +444134,265.83,64.69 +444135,264.17,66.027 +444136,262.63,67.349 +444137,266.35,63.391 +444138,264.53,64.723 +444139,262.84,66.041 +444140,261.26,67.345 +444141,265.09,63.443 +444142,263.24,64.756 +444143,261.51,66.055 +444144,259.89,67.34 +444145,263.84,63.497 +444146,261.94,64.789 +444147,260.18,66.068 +444148,258.52,67.333 +444149,262.58,63.552 +444150,260.65,64.823 +444151,258.85,66.081 +444152,257.15,67.326 +444153,261.32,63.608 +444154,259.35,64.857 +444155,257.51,66.094 +444156,255.79,67.318 +444157,260.07,63.665 +444158,258.06,64.892 +444159,256.18,66.106 +444160,254.42,67.308 +444161,258.8,63.723 +444162,256.76,64.926 +444163,254.85,66.118 +444164,253.06,67.298 +444165,257.54,63.782 +444166,255.47,64.961 +444167,253.52,66.13 +444168,251.7,67.287 +444169,256.28,63.842 +444170,254.17,64.997 +444171,252.2,66.141 +444172,250.34,67.275 +444173,255.01,63.902 +444174,252.87,65.032 +444175,250.87,66.152 +444176,248.98,67.262 +444177,253.74,63.964 +444178,251.57,65.068 +444179,249.54,66.163 +444180,247.62,67.248 +444181,252.48,64.026 +444182,250.27,65.105 +444183,248.21,66.174 +444184,246.27,67.233 +444185,251.2,64.09 +444186,248.97,65.141 +444187,246.88,66.184 +444188,244.91,67.217 +444189,249.93,64.154 +444190,247.67,65.178 +444191,245.56,66.194 +444192,243.56,67.201 +444193,248.66,64.219 +444194,246.37,65.215 +444195,244.23,66.203 +444196,242.21,67.183 +444197,247.38,64.284 +444198,245.07,65.252 +444199,242.9,66.213 +444200,240.86,67.165 +444201,246.1,64.35 +444202,243.77,65.29 +444203,241.58,66.222 +444204,239.51,67.146 +444205,244.82,64.417 +444206,242.47,65.327 +444207,240.26,66.231 +444208,238.17,67.127 +444209,243.54,64.485 +444210,241.16,65.365 +444211,238.93,66.239 +444212,236.82,67.106 +444213,242.26,64.554 +444214,239.86,65.403 +444215,237.61,66.247 +444216,235.48,67.085 +444217,240.97,64.623 +444218,238.56,65.442 +444219,236.28,66.255 +444220,234.14,67.063 +444221,239.69,64.692 +444222,237.25,65.48 +444223,234.96,66.263 +444224,232.8,67.041 +444225,238.4,64.762 +444226,235.95,65.519 +444227,233.64,66.271 +444228,231.46,67.018 +444229,237.11,64.833 +444230,234.64,65.558 +444231,232.32,66.278 +444232,230.12,66.994 +444233,235.81,64.905 +444234,233.33,65.597 +444235,231,66.286 +444236,228.79,66.97 +444237,234.52,64.976 +444238,232.03,65.636 +444239,229.68,66.293 +444240,227.45,66.945 +444241,233.22,65.049 +444242,230.72,65.676 +444243,228.36,66.3 +444244,226.12,66.92 +444245,231.92,65.122 +444246,229.41,65.715 +444247,227.04,66.306 +444248,224.79,66.894 +444249,230.62,65.195 +444250,228.1,65.755 +444251,225.72,66.313 +444252,223.46,66.868 +444253,229.32,65.268 +444254,226.79,65.795 +444255,224.4,66.319 +444256,222.13,66.841 +444257,228.01,65.342 +444258,225.48,65.835 +444259,223.09,66.326 +444260,220.81,66.814 +444261,226.71,65.417 +444262,224.17,65.875 +444263,221.77,66.332 +444264,219.49,66.786 +444265,225.4,65.491 +444266,222.86,65.915 +444267,220.45,66.338 +444268,218.16,66.758 +444269,224.09,65.566 +444270,221.54,65.955 +444271,219.14,66.343 +444272,216.84,66.73 +444273,222.77,65.641 +444274,220.23,65.996 +444275,217.82,66.349 +444276,215.53,66.702 +444277,221.46,65.717 +444278,218.92,66.036 +444279,216.51,66.355 +444280,214.21,66.673 +444281,220.14,65.792 +444282,217.6,66.077 +444283,215.19,66.36 +444284,212.89,66.644 +444285,218.82,65.868 +444286,216.29,66.117 +444287,213.88,66.366 +444288,211.58,66.614 +444289,217.5,65.944 +444290,214.97,66.158 +444291,212.57,66.371 +444292,210.27,66.585 +444293,216.18,66.02 +444294,213.66,66.199 +444295,211.26,66.377 +444296,208.96,66.555 +444297,214.86,66.096 +444298,212.34,66.239 +444299,209.94,66.382 +444300,207.65,66.525 +444301,213.53,66.173 +444302,211.02,66.28 +444303,208.63,66.387 +444304,206.35,66.495 +444305,212.2,66.249 +444306,209.7,66.321 +444307,207.32,66.392 +444308,205.04,66.465 +444309,210.87,66.325 +444310,208.39,66.361 +444311,206.01,66.398 +444312,203.74,66.435 +444313,209.54,66.401 +444314,207.07,66.402 +444315,204.7,66.403 +444316,202.44,66.404 +444317,208.21,66.477 +444318,205.75,66.443 +444319,203.39,66.408 +444320,201.14,66.374 +444321,206.87,66.553 +444322,204.43,66.483 +444323,202.09,66.413 +444324,199.84,66.344 +444325,205.53,66.629 +444326,203.1,66.524 +444327,200.78,66.418 +444328,198.55,66.314 +444329,204.2,66.705 +444330,201.78,66.564 +444331,199.47,66.424 +444332,197.25,66.284 +444333,202.85,66.781 +444334,200.46,66.605 +444335,198.17,66.429 +444336,195.96,66.254 +444337,201.51,66.856 +444338,199.14,66.645 +444339,196.86,66.434 +444340,194.67,66.224 +444341,200.17,66.932 +444342,197.81,66.686 +444343,195.55,66.439 +444344,193.38,66.194 +444345,198.82,67.006 +444346,196.49,66.726 +444347,194.25,66.445 +444348,192.09,66.165 +444349,197.47,67.081 +444350,195.16,66.766 +444351,192.95,66.45 +444352,190.81,66.136 +444353,196.12,67.156 +444354,193.84,66.806 +444355,191.64,66.456 +444356,189.52,66.107 +444357,194.77,67.23 +444358,192.51,66.846 +444359,190.34,66.462 +444360,188.24,66.078 +444361,193.42,67.303 +444362,191.19,66.886 +444363,189.04,66.467 +444364,186.96,66.049 +444365,192.06,67.377 +444366,189.86,66.925 +444367,187.73,66.473 +444368,185.68,66.021 +444369,190.71,67.449 +444370,188.53,66.965 +444371,186.43,66.479 +444372,184.4,65.994 +444373,189.35,67.522 +444374,187.2,67.004 +444375,185.13,66.485 +444376,183.13,65.966 +444377,187.99,67.594 +444378,185.87,67.043 +444379,183.83,66.492 +444380,181.85,65.939 +444381,186.63,67.665 +444382,184.54,67.083 +444383,182.53,66.498 +444384,180.58,65.913 +444385,185.27,67.736 +444386,183.21,67.121 +444387,181.23,66.504 +444388,179.31,65.887 +444389,183.9,67.807 +444390,181.88,67.16 +444391,179.93,66.511 +444392,178.04,65.861 +444393,182.54,67.877 +444394,180.55,67.199 +444395,178.63,66.518 +444396,176.77,65.836 +444397,181.17,67.946 +444398,179.22,67.237 +444399,177.34,66.525 +444400,175.5,65.812 +444401,179.8,68.014 +444402,177.89,67.275 +444403,176.04,66.532 +444404,174.24,65.788 +444405,178.43,68.082 +444406,176.56,67.313 +444407,174.74,66.54 +444408,172.97,65.765 +444409,177.06,68.15 +444410,175.23,67.35 +444411,173.44,66.547 +444412,171.71,65.742 +444413,175.69,68.216 +444414,173.89,67.388 +444415,172.15,66.555 +444416,170.45,65.72 +444417,174.32,68.282 +444418,172.56,67.425 +444419,170.85,66.563 +444420,169.19,65.699 +444421,172.94,68.347 +444422,171.22,67.462 +444423,169.56,66.572 +444424,167.93,65.678 +444425,171.57,68.412 +444426,169.89,67.499 +444427,168.26,66.58 +444428,166.68,65.658 +444429,170.19,68.476 +444430,168.56,67.535 +444431,166.97,66.589 +444432,165.42,65.639 +444433,168.81,68.538 +444434,167.22,67.571 +444435,165.67,66.598 +444436,164.16,65.621 +444437,167.43,68.6 +444438,165.88,67.607 +444439,164.38,66.607 +444440,162.91,65.603 +444441,166.05,68.662 +444442,164.55,67.642 +444443,163.09,66.617 +444444,161.66,65.587 +444445,164.67,68.722 +444446,163.21,67.678 +444447,161.79,66.627 +444448,160.41,65.571 +444449,163.29,68.781 +444450,161.87,67.713 +444451,160.5,66.637 +444452,159.16,65.555 +444453,161.9,68.84 +444454,160.54,67.747 +444455,159.21,66.647 +444456,157.91,65.541 +444457,160.52,68.898 +444458,159.2,67.782 +444459,157.91,66.658 +444460,156.66,65.528 +444461,159.14,68.954 +444462,157.86,67.816 +444463,156.62,66.669 +444464,155.41,65.516 +444465,157.75,69.01 +444466,156.52,67.849 +444467,155.33,66.68 +444468,154.17,65.504 +444469,156.36,69.065 +444470,155.19,67.883 +444471,154.04,66.692 +444472,152.92,65.494 +444473,154.98,69.119 +444474,153.85,67.916 +444475,152.75,66.704 +444476,151.68,65.484 +444477,153.59,69.172 +444478,152.51,67.949 +444479,151.46,66.716 +444480,150.44,65.476 +444481,152.2,69.224 +444482,151.17,67.981 +444483,150.17,66.729 +444484,149.19,65.468 +444485,150.81,69.274 +444486,149.83,68.013 +444487,148.88,66.742 +444488,147.95,65.461 +444489,149.42,69.324 +444490,148.49,68.045 +444491,147.59,66.755 +444492,146.71,65.456 +444493,148.03,69.373 +444494,147.15,68.076 +444495,146.3,66.768 +444496,145.47,65.452 +444497,146.64,69.42 +444498,145.81,68.107 +444499,145.01,66.782 +444500,144.23,65.448 +444501,145.25,69.467 +444502,144.47,68.137 +444503,143.72,66.797 +444504,142.99,65.446 +444505,143.86,69.512 +444506,143.13,68.168 +444507,142.43,66.811 +444508,141.75,65.445 +444509,142.46,69.557 +444510,141.79,68.197 +444511,141.14,66.826 +444512,140.52,65.445 +444513,141.07,69.6 +444514,140.45,68.227 +444515,139.85,66.842 +444516,139.28,65.446 +444517,139.68,69.642 +444518,139.11,68.256 +444519,138.56,66.857 +444520,138.04,65.448 +444521,138.28,69.683 +444522,137.76,68.285 +444523,137.27,66.874 +444524,136.81,65.451 +444525,136.89,69.723 +444526,136.42,68.313 +444527,135.98,66.89 +444528,135.57,65.456 +444529,135.5,69.762 +444530,135.08,68.341 +444531,134.7,66.907 +444532,134.34,65.462 +444533,134.1,69.799 +444534,133.74,68.368 +444535,133.41,66.924 +444536,133.1,65.468 +444537,132.71,69.836 +444538,132.4,68.395 +444539,132.12,66.942 +444540,131.87,65.476 +444541,131.31,69.871 +444542,131.06,68.422 +444543,130.83,66.96 +444544,130.63,65.486 +444545,129.92,69.905 +444546,129.72,68.448 +444547,129.54,66.978 +444548,129.4,65.496 +444549,128.53,69.938 +444550,128.37,68.474 +444551,128.25,66.997 +444552,128.17,65.508 +444553,127.13,69.969 +444554,127.03,68.5 +444555,126.97,67.016 +444556,126.93,65.521 +444557,125.74,70 +444558,125.69,68.525 +444559,125.68,67.036 +444560,125.7,65.535 +444561,124.34,70.029 +444562,124.35,68.549 +444563,124.39,67.056 +444564,124.47,65.55 +444565,122.95,70.057 +444566,123.01,68.574 +444567,123.1,67.076 +444568,123.23,65.567 +444569,121.56,70.084 +444570,121.67,68.598 +444571,121.81,67.097 +444572,122,65.584 +444573,120.16,70.109 +444574,120.32,68.621 +444575,120.52,67.118 +444576,120.77,65.603 +444577,118.77,70.134 +444578,118.98,68.644 +444579,119.24,67.14 +444580,119.53,65.623 +444581,117.38,70.157 +444582,117.64,68.667 +444583,117.95,67.162 +444584,118.3,65.645 +444585,115.98,70.179 +444586,116.3,68.689 +444587,116.66,67.185 +444588,117.06,65.668 +444589,114.59,70.2 +444590,114.96,68.711 +444591,115.37,67.207 +444592,115.83,65.691 +444593,113.2,70.22 +444594,113.62,68.732 +444595,114.08,67.231 +444596,114.59,65.717 +444597,111.81,70.238 +444598,112.28,68.753 +444599,112.79,67.254 +444600,113.36,65.743 +444601,110.42,70.255 +444602,110.93,68.774 +444603,111.5,67.278 +444604,112.12,65.77 +444605,109.03,70.271 +444606,109.59,68.794 +444607,110.21,67.303 +444608,110.89,65.799 +444609,107.63,70.286 +444610,108.25,68.813 +444611,108.92,67.327 +444612,109.65,65.829 +444613,106.25,70.3 +444614,106.91,68.833 +444615,107.63,67.353 +444616,108.41,65.861 +444617,104.86,70.312 +444618,105.57,68.852 +444619,106.34,67.378 +444620,107.18,65.893 +444621,103.47,70.323 +444622,104.23,68.87 +444623,105.05,67.404 +444624,105.94,65.927 +444625,102.08,70.333 +444626,102.89,68.888 +444627,103.76,67.431 +444628,104.7,65.962 +444629,100.69,70.342 +444630,101.55,68.906 +444631,102.47,67.457 +444632,103.46,65.998 +444633,99.307,70.35 +444634,100.21,68.923 +444635,101.18,67.484 +444636,102.22,66.035 +444637,97.921,70.357 +444638,98.873,68.94 +444639,99.89,67.512 +444640,100.98,66.073 +444641,96.537,70.362 +444642,97.534,68.957 +444643,98.599,67.54 +444644,99.737,66.113 +444645,95.153,70.367 +444646,96.195,68.973 +444647,97.307,67.568 +444648,98.494,66.153 +444649,93.77,70.37 +444650,94.857,68.989 +444651,96.015,67.597 +444652,97.251,66.195 +444653,92.387,70.372 +444654,93.518,69.004 +444655,94.722,67.626 +444656,96.006,66.238 +444657,91.006,70.373 +444658,92.181,69.019 +444659,93.43,67.655 +444660,94.761,66.282 +444661,89.626,70.373 +444662,90.843,69.034 +444663,92.136,67.685 +444664,93.514,66.328 +444665,88.246,70.372 +444666,89.506,69.048 +444667,90.843,67.715 +444668,92.267,66.374 +444669,86.868,70.369 +444670,88.169,69.062 +444671,89.549,67.746 +444672,91.018,66.421 +444673,85.491,70.366 +444674,86.832,69.076 +444675,88.255,67.776 +444676,89.768,66.47 +444677,84.114,70.362 +444678,85.496,69.089 +444679,86.96,67.808 +444680,88.518,66.519 +444681,82.739,70.356 +444682,84.16,69.102 +444683,85.665,67.839 +444684,87.265,66.57 +444685,81.365,70.35 +444686,82.824,69.114 +444687,84.37,67.871 +444688,86.012,66.621 +444689,79.992,70.343 +444690,81.489,69.127 +444691,83.074,67.903 +444692,84.757,66.674 +444693,78.621,70.334 +444694,80.154,69.138 +444695,81.778,67.936 +444696,83.501,66.727 +444697,77.25,70.325 +444698,78.82,69.15 +444699,80.481,67.968 +444700,82.244,66.782 +444701,75.881,70.315 +444702,77.486,69.161 +444703,79.184,68.001 +444704,80.986,66.837 +444705,74.513,70.304 +444706,76.153,69.172 +444707,77.887,68.035 +444708,79.726,66.893 +444709,73.146,70.292 +444710,74.82,69.183 +444711,76.588,68.069 +444712,78.464,66.951 +444713,71.78,70.279 +444714,73.487,69.193 +444715,75.29,68.103 +444716,77.201,67.009 +444717,70.416,70.265 +444718,72.155,69.203 +444719,73.991,68.137 +444720,75.937,67.068 +444721,69.053,70.25 +444722,70.823,69.213 +444723,72.691,68.171 +444724,74.671,67.128 +444725,67.692,70.234 +444726,69.491,69.222 +444727,71.391,68.206 +444728,73.403,67.188 +444729,66.331,70.218 +444730,68.161,69.231 +444731,70.091,68.241 +444732,72.134,67.25 +444733,64.973,70.201 +444734,66.83,69.24 +444735,68.789,68.277 +444736,70.864,67.312 +444737,63.615,70.183 +444738,65.5,69.249 +444739,67.488,68.312 +444740,69.592,67.375 +444741,62.26,70.164 +444742,64.171,69.257 +444743,66.186,68.348 +444744,68.318,67.439 +444745,60.905,70.145 +444746,62.842,69.265 +444747,64.883,68.384 +444748,67.042,67.503 +444749,59.552,70.124 +444750,61.513,69.273 +444751,63.58,68.42 +444752,65.765,67.568 +444753,58.201,70.104 +444754,60.186,69.281 +444755,62.276,68.457 +444756,64.486,67.634 +444757,56.851,70.082 +444758,58.858,69.288 +444759,60.972,68.494 +444760,63.205,67.701 +444761,55.502,70.06 +444762,57.531,69.295 +444763,59.667,68.531 +444764,61.923,67.768 +444765,54.155,70.037 +444766,56.205,69.302 +444767,58.361,68.568 +444768,60.639,67.835 +444769,52.81,70.014 +444770,54.879,69.309 +444771,57.055,68.605 +444772,59.353,67.904 +444773,51.466,69.99 +444774,53.554,69.316 +444775,55.748,68.643 +444776,58.065,67.972 +444777,50.124,69.965 +444778,52.229,69.322 +444779,54.441,68.68 +444780,56.776,68.042 +444781,48.783,69.94 +444782,50.905,69.328 +444783,53.133,68.718 +444784,55.484,68.112 +444785,47.444,69.915 +444786,49.581,69.334 +444787,51.825,68.756 +444788,54.191,68.182 +444789,46.107,69.889 +444790,48.258,69.34 +444791,50.516,68.794 +444792,52.896,68.252 +444793,44.771,69.862 +444794,46.935,69.346 +444795,49.206,68.832 +444796,51.599,68.324 +444797,43.437,69.835 +444798,45.613,69.351 +444799,47.896,68.871 +444800,50.301,68.395 +444801,42.105,69.808 +444802,44.292,69.357 +444803,46.585,68.909 +444804,49,68.467 +444805,40.774,69.781 +444806,42.971,69.362 +444807,45.273,68.948 +444808,47.698,68.539 +444809,39.445,69.753 +444810,41.65,69.367 +444811,43.961,68.987 +444812,46.393,68.611 +444813,38.117,69.724 +444814,40.33,69.373 +444815,42.648,69.026 +444816,45.087,68.684 +444817,36.791,69.696 +444818,39.011,69.378 +444819,41.335,69.064 +444820,43.779,68.757 +444821,35.467,69.667 +444822,37.692,69.383 +444823,40.021,69.103 +444824,42.469,68.83 +444825,34.145,69.638 +444826,36.374,69.387 +444827,38.707,69.142 +444828,41.157,68.904 +444829,32.824,69.608 +444830,35.057,69.392 +444831,37.391,69.182 +444832,39.844,68.977 +444833,31.505,69.579 +444834,33.74,69.397 +444835,36.076,69.221 +444836,38.528,69.051 +444837,30.188,69.549 +444838,32.423,69.402 +444839,34.759,69.26 +444840,37.211,69.125 +444841,28.872,69.519 +444842,31.107,69.406 +444843,33.442,69.299 +444844,35.891,69.198 +444845,27.558,69.49 +444846,29.792,69.411 +444847,32.124,69.338 +444848,34.57,69.272 +444849,26.246,69.46 +444850,28.477,69.416 +444851,30.806,69.378 +444852,33.247,69.346 +444853,24.935,69.43 +444854,27.163,69.42 +444855,29.487,69.417 +444856,31.922,69.42 +444857,23.626,69.4 +444858,25.85,69.425 +444859,28.168,69.456 +444860,30.595,69.494 +444861,22.319,69.37 +444862,24.537,69.429 +444863,26.848,69.495 +444864,29.266,69.568 +444865,21.013,69.34 +444866,23.224,69.434 +444867,25.527,69.534 +444868,27.936,69.641 +444869,19.71,69.31 +444870,21.912,69.438 +444871,24.205,69.573 +444872,26.603,69.715 +444873,18.407,69.28 +444874,20.601,69.443 +444875,22.884,69.613 +444876,25.269,69.789 +444877,17.107,69.25 +444878,19.29,69.448 +444879,21.561,69.652 +444880,23.933,69.862 +444881,15.808,69.221 +444882,17.98,69.453 +444883,20.238,69.691 +444884,22.595,69.935 +444885,14.511,69.192 +444886,16.67,69.457 +444887,18.914,69.729 +444888,21.256,70.008 +444889,13.215,69.162 +444890,15.361,69.462 +444891,17.59,69.768 +444892,19.914,70.08 +444893,11.921,69.134 +444894,14.053,69.467 +444895,16.265,69.807 +444896,18.571,70.153 +444897,10.629,69.105 +444898,12.745,69.472 +444899,14.939,69.846 +444900,17.227,70.225 +444901,9.3386,69.077 +444902,11.437,69.477 +444903,13.613,69.884 +444904,15.88,70.296 +444905,8.0496,69.049 +444906,10.13,69.483 +444907,12.287,69.922 +444908,14.532,70.368 +444909,6.7622,69.021 +444910,8.8237,69.488 +444911,10.96,69.961 +444912,13.182,70.438 +444913,5.4764,68.994 +444914,7.5178,69.494 +444915,9.6319,69.999 +444916,11.83,70.509 +444917,4.1921,68.967 +444918,6.2123,69.499 +444919,8.3036,70.037 +444920,10.477,70.579 +444921,2.9094,68.94 +444922,4.9074,69.505 +444923,6.9748,70.075 +444924,9.1226,70.649 +444925,1.6282,68.914 +444926,3.603,69.511 +444927,5.6454,70.112 +444928,7.7663,70.718 +444929,0.3486,68.889 +444930,2.2991,69.517 +444931,4.3155,70.15 +444932,6.4084,70.786 +444933,359.07,68.864 +444934,0.99569,69.523 +444935,2.9851,70.187 +444936,5.049,70.854 +444937,357.79,68.839 +444938,359.69,69.53 +444939,1.6542,70.224 +444940,3.6881,70.922 +444941,356.52,68.815 +444942,358.39,69.536 +444943,0.32277,70.261 +444944,2.3257,70.989 +444945,355.24,68.792 +444946,357.09,69.543 +444947,358.99,70.298 +444948,0.96184,71.055 +444949,353.97,68.769 +444950,355.79,69.55 +444951,357.66,70.334 +444952,359.6,71.121 +444953,352.7,68.747 +444954,354.49,69.557 +444955,356.33,70.371 +444956,358.23,71.186 +444957,351.43,68.725 +444958,353.19,69.565 +444959,354.99,70.407 +444960,356.86,71.25 +444961,350.16,68.704 +444962,351.88,69.572 +444963,353.66,70.442 +444964,355.49,71.314 +444965,348.9,68.684 +444966,350.59,69.58 +444967,352.32,70.478 +444968,354.12,71.377 +444969,347.63,68.665 +444970,349.29,69.588 +444971,350.99,70.513 +444972,352.75,71.439 +444973,346.37,68.646 +444974,347.99,69.597 +444975,349.65,70.549 +444976,351.38,71.5 +444977,345.11,68.628 +444978,346.69,69.605 +444979,348.32,70.583 +444980,350,71.561 +444981,343.84,68.611 +444982,345.39,69.614 +444983,346.98,70.618 +444984,348.63,71.621 +444985,342.58,68.595 +444986,344.09,69.624 +444987,345.65,70.652 +444988,347.25,71.679 +444989,341.32,68.579 +444990,342.8,69.633 +444991,344.31,70.686 +444992,345.87,71.738 +444993,340.07,68.565 +444994,341.5,69.643 +444995,342.97,70.72 +444996,344.49,71.795 +444997,338.81,68.551 +444998,340.2,69.653 +444999,341.63,70.753 +445000,343.11,71.851 +445001,337.55,68.538 +445002,338.91,69.663 +445003,340.3,70.786 +445004,341.73,71.907 +445005,336.3,68.526 +445006,337.61,69.674 +445007,338.96,70.819 +445008,340.35,71.961 +445009,335.04,68.515 +445010,336.31,69.685 +445011,337.62,70.852 +445012,338.97,72.015 +445013,333.79,68.505 +445014,335.02,69.696 +445015,336.28,70.884 +445016,337.58,72.068 +445017,332.54,68.496 +445018,333.72,69.707 +445019,334.94,70.916 +445020,336.2,72.119 +445021,331.29,68.488 +445022,332.43,69.719 +445023,333.6,70.947 +445024,334.81,72.17 +445025,330.04,68.481 +445026,331.13,69.732 +445027,332.26,70.978 +445028,333.43,72.22 +445029,328.79,68.475 +445030,329.84,69.744 +445031,330.92,71.009 +445032,332.04,72.269 +445033,327.54,68.47 +445034,328.55,69.757 +445035,329.58,71.04 +445036,330.65,72.316 +445037,326.3,68.466 +445038,327.25,69.77 +445039,328.24,71.07 +445040,329.26,72.363 +445041,325.05,68.463 +445042,325.96,69.784 +445043,326.9,71.1 +445044,327.87,72.409 +445045,323.8,68.461 +445046,324.67,69.798 +445047,325.56,71.129 +445048,326.48,72.453 +445049,322.56,68.461 +445050,323.37,69.812 +445051,324.22,71.158 +445052,325.09,72.497 +445053,321.31,68.461 +445054,322.08,69.827 +445055,322.88,71.187 +445056,323.7,72.539 +445057,320.07,68.462 +445058,320.79,69.842 +445059,321.53,71.215 +445060,322.31,72.581 +445061,318.83,68.465 +445062,319.49,69.857 +445063,320.19,71.243 +445064,320.92,72.621 +445065,317.58,68.469 +445066,318.2,69.873 +445067,318.85,71.271 +445068,319.53,72.66 +445069,316.34,68.474 +445070,316.91,69.889 +445071,317.51,71.298 +445072,318.13,72.698 +445073,315.1,68.48 +445074,315.62,69.906 +445075,316.16,71.325 +445076,316.74,72.735 +445077,313.86,68.487 +445078,314.33,69.923 +445079,314.82,71.351 +445080,315.35,72.771 +445081,312.62,68.495 +445082,313.03,69.94 +445083,313.48,71.377 +445084,313.95,72.805 +445085,311.38,68.505 +445086,311.74,69.958 +445087,312.14,71.403 +445088,312.56,72.839 +445089,310.14,68.516 +445090,310.45,69.976 +445091,310.79,71.428 +445092,311.17,72.871 +445093,308.9,68.528 +445094,309.16,69.994 +445095,309.45,71.453 +445096,309.77,72.902 +445097,307.66,68.541 +445098,307.87,70.013 +445099,308.11,71.478 +445100,308.38,72.932 +445101,306.42,68.555 +445102,306.58,70.033 +445103,306.76,71.502 +445104,306.98,72.961 +445105,305.18,68.571 +445106,305.29,70.052 +445107,305.42,71.525 +445108,305.59,72.989 +445109,303.94,68.587 +445110,303.99,70.072 +445111,304.08,71.549 +445112,304.19,73.015 +445113,302.7,68.605 +445114,302.7,70.093 +445115,302.73,71.572 +445116,302.8,73.041 +445117,301.46,68.625 +445118,301.41,70.114 +445119,301.39,71.594 +445120,301.41,73.065 +445121,300.23,68.645 +445122,300.12,70.135 +445123,300.05,71.616 +445124,300.01,73.088 +445125,298.99,68.667 +445126,298.83,70.157 +445127,298.71,71.638 +445128,298.62,73.109 +445129,297.75,68.69 +445130,297.54,70.179 +445131,297.36,71.659 +445132,297.22,73.13 +445133,296.51,68.714 +445134,296.24,70.201 +445135,296.02,71.68 +445136,295.83,73.149 +445137,295.27,68.739 +445138,294.95,70.224 +445139,294.68,71.701 +445140,294.44,73.168 +445141,294.03,68.766 +445142,293.66,70.247 +445143,293.33,71.721 +445144,293.04,73.185 +445145,292.79,68.793 +445146,292.37,70.271 +445147,291.99,71.741 +445148,291.65,73.2 +445149,291.55,68.822 +445150,291.08,70.295 +445151,290.65,71.76 +445152,290.26,73.215 +445153,290.31,68.852 +445154,289.79,70.32 +445155,289.3,71.779 +445156,288.87,73.229 +445157,289.07,68.884 +445158,288.49,70.344 +445159,287.96,71.797 +445160,287.47,73.241 +445161,287.83,68.916 +445162,287.2,70.37 +445163,286.62,71.816 +445164,286.08,73.252 +445165,286.59,68.95 +445166,285.91,70.395 +445167,285.28,71.833 +445168,284.69,73.262 +445169,285.35,68.985 +445170,284.62,70.421 +445171,283.93,71.851 +445172,283.3,73.271 +445173,284.1,69.021 +445174,283.32,70.448 +445175,282.59,71.868 +445176,281.91,73.279 +445177,282.86,69.058 +445178,282.03,70.475 +445179,281.25,71.884 +445180,280.52,73.286 +445181,281.62,69.097 +445182,280.74,70.502 +445183,279.91,71.901 +445184,279.13,73.291 +445185,280.37,69.136 +445186,279.44,70.529 +445187,278.57,71.916 +445188,277.75,73.296 +445189,279.13,69.177 +445190,278.15,70.557 +445191,277.23,71.932 +445192,276.36,73.299 +445193,277.88,69.219 +445194,276.85,70.586 +445195,275.89,71.947 +445196,274.97,73.301 +445197,276.63,69.262 +445198,275.56,70.614 +445199,274.55,71.962 +445200,273.59,73.302 +445201,275.39,69.306 +445202,274.26,70.643 +445203,273.21,71.976 +445204,272.2,73.302 +445205,274.14,69.351 +445206,272.97,70.673 +445207,271.87,71.99 +445208,270.82,73.301 +445209,272.89,69.397 +445210,271.67,70.703 +445211,270.53,72.004 +445212,269.44,73.299 +445213,271.64,69.445 +445214,270.38,70.733 +445215,269.19,72.017 +445216,268.06,73.296 +445217,270.39,69.493 +445218,269.08,70.763 +445219,267.85,72.03 +445220,266.67,73.292 +445221,269.14,69.542 +445222,267.79,70.794 +445223,266.51,72.043 +445224,265.29,73.287 +445225,267.88,69.593 +445226,266.49,70.825 +445227,265.17,72.055 +445228,263.91,73.281 +445229,266.63,69.644 +445230,265.19,70.857 +445231,263.83,72.067 +445232,262.54,73.274 +445233,265.37,69.697 +445234,263.89,70.888 +445235,262.49,72.079 +445236,261.16,73.266 +445237,264.12,69.75 +445238,262.6,70.921 +445239,261.15,72.09 +445240,259.78,73.257 +445241,262.86,69.804 +445242,261.3,70.953 +445243,259.82,72.101 +445244,258.41,73.247 +445245,261.6,69.86 +445246,260,70.986 +445247,258.48,72.112 +445248,257.03,73.236 +445249,260.34,69.916 +445250,258.7,71.019 +445251,257.14,72.122 +445252,255.66,73.224 +445253,259.08,69.973 +445254,257.4,71.052 +445255,255.81,72.132 +445256,254.29,73.212 +445257,257.82,70.031 +445258,256.1,71.086 +445259,254.47,72.142 +445260,252.92,73.198 +445261,256.55,70.089 +445262,254.8,71.12 +445263,253.14,72.152 +445264,251.55,73.184 +445265,255.29,70.149 +445266,253.5,71.154 +445267,251.8,72.161 +445268,250.18,73.168 +445269,254.02,70.21 +445270,252.2,71.188 +445271,250.47,72.17 +445272,248.82,73.152 +445273,252.75,70.271 +445274,250.9,71.223 +445275,249.13,72.179 +445276,247.45,73.136 +445277,251.48,70.333 +445278,249.6,71.258 +445279,247.8,72.187 +445280,246.09,73.118 +445281,250.21,70.395 +445282,248.29,71.293 +445283,246.47,72.196 +445284,244.72,73.1 +445285,248.94,70.459 +445286,246.99,71.329 +445287,245.13,72.204 +445288,243.36,73.081 +445289,247.67,70.523 +445290,245.69,71.365 +445291,243.8,72.211 +445292,242,73.061 +445293,246.39,70.588 +445294,244.38,71.401 +445295,242.47,72.219 +445296,240.64,73.04 +445297,245.11,70.653 +445298,243.08,71.437 +445299,241.14,72.226 +445300,239.29,73.019 +445301,243.84,70.72 +445302,241.77,71.473 +445303,239.81,72.233 +445304,237.93,72.997 +445305,242.56,70.786 +445306,240.47,71.51 +445307,238.48,72.24 +445308,236.58,72.975 +445309,241.27,70.854 +445310,239.16,71.547 +445311,237.15,72.247 +445312,235.22,72.952 +445313,239.99,70.922 +445314,237.85,71.584 +445315,235.82,72.253 +445316,233.87,72.929 +445317,238.71,70.99 +445318,236.55,71.621 +445319,234.49,72.26 +445320,232.52,72.904 +445321,237.42,71.059 +445322,235.24,71.658 +445323,233.16,72.266 +445324,231.17,72.88 +445325,236.13,71.128 +445326,233.93,71.695 +445327,231.83,72.272 +445328,229.83,72.855 +445329,234.84,71.198 +445330,232.62,71.733 +445331,230.5,72.277 +445332,228.48,72.829 +445333,233.55,71.268 +445334,231.31,71.771 +445335,229.18,72.283 +445336,227.14,72.803 +445337,232.26,71.339 +445338,230,71.809 +445339,227.85,72.289 +445340,225.79,72.776 +445341,230.96,71.41 +445342,228.69,71.847 +445343,226.52,72.294 +445344,224.45,72.75 +445345,229.66,71.481 +445346,227.38,71.885 +445347,225.2,72.299 +445348,223.11,72.722 +445349,228.36,71.553 +445350,226.07,71.923 +445351,223.87,72.305 +445352,221.78,72.695 +445353,227.06,71.625 +445354,224.75,71.962 +445355,222.55,72.31 +445356,220.44,72.667 +445357,225.76,71.697 +445358,223.44,72 +445359,221.23,72.315 +445360,219.11,72.639 +445361,224.46,71.77 +445362,222.13,72.039 +445363,219.9,72.32 +445364,217.77,72.61 +445365,223.15,71.842 +445366,220.81,72.077 +445367,218.58,72.324 +445368,216.44,72.581 +445369,221.84,71.915 +445370,219.5,72.116 +445371,217.26,72.329 +445372,215.11,72.552 +445373,220.53,71.988 +445374,218.18,72.155 +445375,215.94,72.334 +445376,213.78,72.523 +445377,219.22,72.061 +445378,216.87,72.194 +445379,214.62,72.338 +445380,212.46,72.494 +445381,217.91,72.135 +445382,215.55,72.233 +445383,213.3,72.343 +445384,211.13,72.464 +445385,216.59,72.208 +445386,214.23,72.271 +445387,211.98,72.348 +445388,209.81,72.435 +445389,215.28,72.281 +445390,212.91,72.31 +445391,210.66,72.352 +445392,208.49,72.405 +445393,213.96,72.355 +445394,211.6,72.349 +445395,209.34,72.357 +445396,207.17,72.376 +445397,212.64,72.428 +445398,210.28,72.388 +445399,208.02,72.361 +445400,205.85,72.346 +445401,211.32,72.501 +445402,208.96,72.427 +445403,206.7,72.366 +445404,204.53,72.316 +445405,209.99,72.574 +445406,207.64,72.466 +445407,205.38,72.37 +445408,203.22,72.286 +445409,208.67,72.647 +445410,206.32,72.505 +445411,204.07,72.375 +445412,201.91,72.257 +445413,207.34,72.72 +445414,205,72.544 +445415,202.75,72.38 +445416,200.59,72.227 +445417,206.01,72.793 +445418,203.67,72.582 +445419,201.44,72.384 +445420,199.28,72.198 +445421,204.68,72.866 +445422,202.35,72.621 +445423,200.12,72.389 +445424,197.98,72.169 +445425,203.34,72.938 +445426,201.03,72.66 +445427,198.81,72.394 +445428,196.67,72.139 +445429,202.01,73.011 +445430,199.7,72.698 +445431,197.49,72.399 +445432,195.36,72.111 +445433,200.67,73.083 +445434,198.38,72.737 +445435,196.18,72.403 +445436,194.06,72.082 +445437,199.33,73.154 +445438,197.05,72.775 +445439,194.87,72.408 +445440,192.76,72.053 +445441,197.99,73.226 +445442,195.73,72.813 +445443,193.55,72.414 +445444,191.46,72.025 +445445,196.65,73.297 +445446,194.4,72.852 +445447,192.24,72.419 +445448,190.16,71.997 +445449,195.31,73.367 +445450,193.08,72.89 +445451,190.93,72.424 +445452,188.86,71.97 +445453,193.96,73.437 +445454,191.75,72.928 +445455,189.62,72.43 +445456,187.57,71.943 +445457,192.62,73.507 +445458,190.42,72.966 +445459,188.31,72.435 +445460,186.27,71.916 +445461,191.27,73.577 +445462,189.09,73.003 +445463,187,72.441 +445464,184.98,71.889 +445465,189.92,73.646 +445466,187.76,73.041 +445467,185.69,72.447 +445468,183.69,71.863 +445469,188.57,73.714 +445470,186.43,73.078 +445471,184.38,72.453 +445472,182.4,71.838 +445473,187.21,73.782 +445474,185.1,73.115 +445475,183.07,72.459 +445476,181.11,71.813 +445477,185.86,73.849 +445478,183.77,73.152 +445479,181.77,72.465 +445480,179.83,71.788 +445481,184.5,73.916 +445482,182.44,73.189 +445483,180.46,72.472 +445484,178.54,71.764 +445485,183.14,73.982 +445486,181.11,73.226 +445487,179.15,72.479 +445488,177.26,71.741 +445489,181.79,74.048 +445490,179.78,73.262 +445491,177.85,72.486 +445492,175.98,71.718 +445493,180.42,74.113 +445494,178.45,73.299 +445495,176.54,72.493 +445496,174.7,71.696 +445497,179.06,74.177 +445498,177.11,73.335 +445499,175.24,72.5 +445500,173.42,71.675 +445501,177.7,74.241 +445502,175.78,73.37 +445503,173.93,72.508 +445504,172.14,71.654 +445505,176.33,74.304 +445506,174.45,73.406 +445507,172.63,72.516 +445508,170.87,71.634 +445509,174.97,74.366 +445510,173.11,73.441 +445511,171.32,72.524 +445512,169.59,71.614 +445513,173.6,74.427 +445514,171.78,73.476 +445515,170.02,72.532 +445516,168.32,71.595 +445517,172.23,74.488 +445518,170.44,73.511 +445519,168.72,72.541 +445520,167.05,71.577 +445521,170.86,74.548 +445522,169.1,73.546 +445523,167.41,72.55 +445524,165.77,71.56 +445525,169.49,74.607 +445526,167.77,73.58 +445527,166.11,72.559 +445528,164.5,71.544 +445529,168.11,74.665 +445530,166.43,73.614 +445531,164.81,72.568 +445532,163.24,71.528 +445533,166.74,74.722 +445534,165.09,73.648 +445535,163.51,72.578 +445536,161.97,71.513 +445537,165.36,74.779 +445538,163.76,73.681 +445539,162.21,72.588 +445540,160.7,71.499 +445541,163.99,74.835 +445542,162.42,73.715 +445543,160.91,72.598 +445544,159.44,71.486 +445545,162.61,74.889 +445546,161.08,73.747 +445547,159.6,72.609 +445548,158.17,71.474 +445549,161.23,74.943 +445550,159.74,73.78 +445551,158.3,72.62 +445552,156.91,71.463 +445553,159.85,74.996 +445554,158.4,73.812 +445555,157,72.631 +445556,155.65,71.453 +445557,158.47,75.048 +445558,157.06,73.844 +445559,155.71,72.643 +445560,154.39,71.444 +445561,157.09,75.099 +445562,155.72,73.876 +445563,154.41,72.654 +445564,153.13,71.435 +445565,155.71,75.149 +445566,154.38,73.907 +445567,153.11,72.667 +445568,151.87,71.428 +445569,154.32,75.198 +445570,153.04,73.938 +445571,151.81,72.679 +445572,150.61,71.422 +445573,152.94,75.246 +445574,151.7,73.969 +445575,150.51,72.692 +445576,149.36,71.416 +445577,151.55,75.293 +445578,150.36,73.999 +445579,149.21,72.705 +445580,148.1,71.412 +445581,150.17,75.339 +445582,149.02,74.029 +445583,147.92,72.719 +445584,146.85,71.409 +445585,148.78,75.384 +445586,147.68,74.059 +445587,146.62,72.733 +445588,145.59,71.407 +445589,147.39,75.428 +445590,146.34,74.088 +445591,145.32,72.747 +445592,144.34,71.406 +445593,146,75.471 +445594,144.99,74.117 +445595,144.02,72.762 +445596,143.09,71.406 +445597,144.61,75.512 +445598,143.65,74.146 +445599,142.73,72.777 +445600,141.84,71.407 +445601,143.22,75.553 +445602,142.31,74.174 +445603,141.43,72.792 +445604,140.59,71.409 +445605,141.83,75.593 +445606,140.97,74.202 +445607,140.13,72.808 +445608,139.34,71.413 +445609,140.44,75.631 +445610,139.62,74.229 +445611,138.84,72.824 +445612,138.09,71.417 +445613,139.05,75.668 +445614,138.28,74.256 +445615,137.54,72.841 +445616,136.84,71.423 +445617,137.66,75.704 +445618,136.94,74.283 +445619,136.25,72.858 +445620,135.59,71.43 +445621,136.27,75.74 +445622,135.59,74.309 +445623,134.95,72.875 +445624,134.34,71.438 +445625,134.88,75.773 +445626,134.25,74.335 +445627,133.66,72.893 +445628,133.09,71.447 +445629,133.48,75.806 +445630,132.9,74.361 +445631,132.36,72.911 +445632,131.85,71.457 +445633,132.09,75.838 +445634,131.56,74.386 +445635,131.07,72.929 +445636,130.6,71.469 +445637,130.7,75.868 +445638,130.22,74.411 +445639,129.77,72.948 +445640,129.36,71.482 +445641,129.3,75.898 +445642,128.87,74.435 +445643,128.48,72.967 +445644,128.11,71.496 +445645,127.91,75.926 +445646,127.53,74.459 +445647,127.18,72.987 +445648,126.86,71.511 +445649,126.51,75.953 +445650,126.18,74.483 +445651,125.89,73.007 +445652,125.62,71.527 +445653,125.12,75.979 +445654,124.84,74.506 +445655,124.59,73.028 +445656,124.37,71.545 +445657,123.72,76.003 +445658,123.49,74.529 +445659,123.3,73.049 +445660,123.13,71.564 +445661,122.33,76.027 +445662,122.15,74.551 +445663,122,73.07 +445664,121.88,71.584 +445665,120.94,76.049 +445666,120.8,74.573 +445667,120.71,73.092 +445668,120.64,71.605 +445669,119.54,76.07 +445670,119.46,74.595 +445671,119.41,73.114 +445672,119.4,71.628 +445673,118.15,76.09 +445674,118.12,74.616 +445675,118.12,73.136 +445676,118.15,71.651 +445677,116.75,76.109 +445678,116.77,74.637 +445679,116.82,73.159 +445680,116.91,71.676 +445681,115.36,76.127 +445682,115.43,74.658 +445683,115.53,73.182 +445684,115.66,71.703 +445685,113.96,76.143 +445686,114.08,74.678 +445687,114.23,73.206 +445688,114.42,71.73 +445689,112.57,76.159 +445690,112.74,74.697 +445691,112.94,73.23 +445692,113.17,71.759 +445693,111.18,76.173 +445694,111.39,74.717 +445695,111.64,73.255 +445696,111.93,71.788 +445697,109.78,76.186 +445698,110.05,74.736 +445699,110.35,73.28 +445700,110.68,71.819 +445701,108.39,76.198 +445702,108.7,74.754 +445703,109.05,73.305 +445704,109.44,71.852 +445705,107,76.208 +445706,107.36,74.772 +445707,107.76,73.331 +445708,108.19,71.885 +445709,105.6,76.218 +445710,106.01,74.79 +445711,106.46,73.357 +445712,106.95,71.92 +445713,104.21,76.226 +445714,104.67,74.808 +445715,105.17,73.384 +445716,105.7,71.956 +445717,102.82,76.234 +445718,103.33,74.825 +445719,103.87,73.411 +445720,104.45,71.993 +445721,101.43,76.24 +445722,101.98,74.841 +445723,102.57,73.438 +445724,103.21,72.031 +445725,100.04,76.245 +445726,100.64,74.858 +445727,101.28,73.466 +445728,101.96,72.07 +445729,98.648,76.249 +445730,99.294,74.874 +445731,99.981,73.494 +445732,100.71,72.111 +445733,97.258,76.252 +445734,97.95,74.889 +445735,98.685,73.522 +445736,99.464,72.152 +445737,95.87,76.254 +445738,96.607,74.904 +445739,97.388,73.551 +445740,98.215,72.195 +445741,94.481,76.254 +445742,95.264,74.919 +445743,96.091,73.58 +445744,96.965,72.239 +445745,93.094,76.254 +445746,93.921,74.934 +445747,94.794,73.61 +445748,95.715,72.284 +445749,91.707,76.253 +445750,92.579,74.948 +445751,93.497,73.64 +445752,94.464,72.33 +445753,90.321,76.25 +445754,91.236,74.961 +445755,92.199,73.67 +445756,93.212,72.377 +445757,88.935,76.247 +445758,89.894,74.975 +445759,90.901,73.701 +445760,91.959,72.425 +445761,87.551,76.242 +445762,88.552,74.988 +445763,89.603,73.732 +445764,90.706,72.475 +445765,86.167,76.237 +445766,87.21,75.001 +445767,88.304,73.763 +445768,89.452,72.525 +445769,84.784,76.23 +445770,85.869,75.013 +445771,87.005,73.795 +445772,88.197,72.576 +445773,83.402,76.223 +445774,84.528,75.025 +445775,85.706,73.827 +445776,86.941,72.629 +445777,82.021,76.215 +445778,83.187,75.037 +445779,84.407,73.859 +445780,85.684,72.682 +445781,80.641,76.205 +445782,81.846,75.049 +445783,83.107,73.892 +445784,84.426,72.737 +445785,79.262,76.195 +445786,80.506,75.06 +445787,81.807,73.925 +445788,83.167,72.792 +445789,77.884,76.184 +445790,79.166,75.071 +445791,80.506,73.958 +445792,81.907,72.848 +445793,76.507,76.172 +445794,77.827,75.081 +445795,79.205,73.992 +445796,80.646,72.905 +445797,75.131,76.159 +445798,76.487,75.092 +445799,77.904,74.026 +445800,79.384,72.963 +445801,73.756,76.145 +445802,75.149,75.102 +445803,76.602,74.06 +445804,78.121,73.022 +445805,72.382,76.131 +445806,73.81,75.111 +445807,75.3,74.094 +445808,76.856,73.082 +445809,71.009,76.115 +445810,72.472,75.121 +445811,73.997,74.129 +445812,75.591,73.143 +445813,69.638,76.099 +445814,71.134,75.13 +445815,72.695,74.164 +445816,74.324,73.204 +445817,68.267,76.082 +445818,69.797,75.139 +445819,71.391,74.199 +445820,73.056,73.266 +445821,66.898,76.064 +445822,68.46,75.148 +445823,70.087,74.235 +445824,71.786,73.329 +445825,65.53,76.046 +445826,67.123,75.156 +445827,68.783,74.271 +445828,70.516,73.393 +445829,64.163,76.027 +445830,65.787,75.164 +445831,67.478,74.307 +445832,69.244,73.457 +445833,62.798,76.007 +445834,64.451,75.172 +445835,66.173,74.343 +445836,67.97,73.523 +445837,61.434,75.986 +445838,63.116,75.18 +445839,64.868,74.38 +445840,66.696,73.588 +445841,60.071,75.965 +445842,61.781,75.188 +445843,63.562,74.417 +445844,65.419,73.655 +445845,58.709,75.943 +445846,60.446,75.195 +445847,62.255,74.454 +445848,64.142,73.722 +445849,57.349,75.921 +445850,59.112,75.202 +445851,60.948,74.491 +445852,62.863,73.79 +445853,55.99,75.898 +445854,57.779,75.209 +445855,59.64,74.528 +445856,61.582,73.858 +445857,54.633,75.874 +445858,56.446,75.216 +445859,58.332,74.566 +445860,60.3,73.927 +445861,53.277,75.85 +445862,55.113,75.222 +445863,57.024,74.604 +445864,59.017,73.997 +445865,51.922,75.826 +445866,53.781,75.229 +445867,55.715,74.642 +445868,57.731,74.066 +445869,50.569,75.801 +445870,52.449,75.235 +445871,54.405,74.68 +445872,56.445,74.137 +445873,49.217,75.775 +445874,51.118,75.241 +445875,53.095,74.718 +445876,55.157,74.208 +445877,47.867,75.749 +445878,49.787,75.247 +445879,51.784,74.756 +445880,53.867,74.279 +445881,46.518,75.723 +445882,48.457,75.253 +445883,50.473,74.795 +445884,52.575,74.351 +445885,45.171,75.696 +445886,47.127,75.259 +445887,49.161,74.834 +445888,51.282,74.423 +445889,43.825,75.669 +445890,45.798,75.264 +445891,47.849,74.872 +445892,49.988,74.495 +445893,42.481,75.641 +445894,44.469,75.27 +445895,46.536,74.911 +445896,48.691,74.568 +445897,41.138,75.613 +445898,43.141,75.275 +445899,45.223,74.95 +445900,47.393,74.641 +445901,39.797,75.585 +445902,41.813,75.281 +445903,43.909,74.99 +445904,46.093,74.714 +445905,38.457,75.557 +445906,40.486,75.286 +445907,42.594,75.029 +445908,44.792,74.788 +445909,37.119,75.528 +445910,39.159,75.291 +445911,41.279,75.068 +445912,43.489,74.861 +445913,35.782,75.5 +445914,37.833,75.296 +445915,39.963,75.107 +445916,42.184,74.935 +445917,34.447,75.471 +445918,36.507,75.301 +445919,38.647,75.147 +445920,40.878,75.009 +445921,33.114,75.442 +445922,35.182,75.306 +445923,37.33,75.186 +445924,39.569,75.083 +445925,31.782,75.412 +445926,33.857,75.311 +445927,36.013,75.226 +445928,38.26,75.158 +445929,30.451,75.383 +445930,32.533,75.316 +445931,34.695,75.265 +445932,36.948,75.232 +445933,29.122,75.354 +445934,31.209,75.321 +445935,33.376,75.305 +445936,35.634,75.306 +445937,27.795,75.324 +445938,29.886,75.326 +445939,32.057,75.344 +445940,34.319,75.381 +445941,26.47,75.295 +445942,28.563,75.331 +445943,30.737,75.384 +445944,33.002,75.455 +445945,25.146,75.266 +445946,27.241,75.336 +445947,29.417,75.423 +445948,31.684,75.529 +445949,23.823,75.236 +445950,25.92,75.341 +445951,28.096,75.463 +445952,30.363,75.603 +445953,22.502,75.207 +445954,24.599,75.346 +445955,26.775,75.503 +445956,29.041,75.677 +445957,21.183,75.178 +445958,23.278,75.351 +445959,25.452,75.542 +445960,27.717,75.751 +445961,19.865,75.149 +445962,21.958,75.357 +445963,24.13,75.581 +445964,26.392,75.825 +445965,18.549,75.12 +445966,20.639,75.362 +445967,22.807,75.621 +445968,25.064,75.899 +445969,17.235,75.091 +445970,19.32,75.367 +445971,21.483,75.66 +445972,23.735,75.972 +445973,15.922,75.062 +445974,18.002,75.372 +445975,20.159,75.699 +445976,22.405,76.045 +445977,14.611,75.034 +445978,16.684,75.378 +445979,18.834,75.739 +445980,21.072,76.118 +445981,13.301,75.006 +445982,15.366,75.383 +445983,17.508,75.778 +445984,19.738,76.191 +445985,11.993,74.978 +445986,14.05,75.389 +445987,16.182,75.817 +445988,18.402,76.263 +445989,10.686,74.951 +445990,12.733,75.395 +445991,14.855,75.856 +445992,17.064,76.335 +445993,9.3809,74.924 +445994,11.417,75.401 +445995,13.528,75.894 +445996,15.725,76.406 +445997,8.0773,74.897 +445998,10.102,75.407 +445999,12.2,75.933 +446000,14.384,76.478 +446001,6.7753,74.871 +446002,8.7873,75.413 +446003,10.872,75.971 +446004,13.041,76.548 +446005,5.4748,74.845 +446006,7.473,75.419 +446007,9.5432,76.01 +446008,11.697,76.619 +446009,4.1758,74.82 +446010,6.1592,75.426 +446011,8.2138,76.048 +446012,10.351,76.688 +446013,2.8783,74.795 +446014,4.8459,75.432 +446015,6.8838,76.086 +446016,9.0037,76.758 +446017,1.5823,74.77 +446018,3.5331,75.439 +446019,5.5533,76.124 +446020,7.6546,76.826 +446021,0.28778,74.746 +446022,2.2207,75.446 +446023,4.2223,76.162 +446024,6.3039,76.894 +446025,358.99,74.723 +446026,0.90886,75.453 +446027,2.8907,76.199 +446028,4.9516,76.962 +446029,357.7,74.7 +446030,359.6,75.46 +446031,1.5587,76.236 +446032,3.5978,77.029 +446033,356.41,74.678 +446034,358.29,75.468 +446035,0.22605,76.274 +446036,2.2424,77.095 +446037,355.12,74.656 +446038,356.98,75.476 +446039,358.89,76.31 +446040,0.88558,77.161 +446041,353.84,74.635 +446042,355.67,75.484 +446043,357.56,76.347 +446044,359.53,77.226 +446045,352.55,74.615 +446046,354.36,75.492 +446047,356.23,76.384 +446048,358.17,77.291 +446049,351.27,74.595 +446050,353.05,75.501 +446051,354.89,76.42 +446052,356.81,77.354 +446053,349.98,74.577 +446054,351.74,75.509 +446055,353.56,76.456 +446056,355.44,77.417 +446057,348.7,74.559 +446058,350.43,75.518 +446059,352.22,76.492 +446060,354.08,77.479 +446061,347.42,74.541 +446062,349.12,75.528 +446063,350.88,76.527 +446064,352.71,77.54 +446065,346.14,74.525 +446066,347.82,75.537 +446067,349.55,76.562 +446068,351.35,77.601 +446069,344.86,74.509 +446070,346.51,75.547 +446071,348.21,76.597 +446072,349.98,77.661 +446073,343.59,74.494 +446074,345.2,75.557 +446075,346.87,76.632 +446076,348.61,77.72 +446077,342.31,74.48 +446078,343.9,75.567 +446079,345.54,76.667 +446080,347.24,77.778 +446081,341.04,74.467 +446082,342.59,75.578 +446083,344.2,76.701 +446084,345.87,77.835 +446085,339.76,74.455 +446086,341.28,75.589 +446087,342.86,76.735 +446088,344.49,77.891 +446089,338.49,74.443 +446090,339.98,75.6 +446091,341.52,76.768 +446092,343.12,77.946 +446093,337.22,74.433 +446094,338.67,75.612 +446095,340.18,76.801 +446096,341.74,78.001 +446097,335.95,74.423 +446098,337.37,75.624 +446099,338.84,76.834 +446100,340.37,78.054 +446101,334.68,74.415 +446102,336.07,75.636 +446103,337.5,76.867 +446104,338.99,78.107 +446105,333.41,74.407 +446106,334.76,75.649 +446107,336.16,76.899 +446108,337.61,78.158 +446109,332.15,74.401 +446110,333.46,75.662 +446111,334.82,76.931 +446112,336.23,78.209 +446113,330.88,74.395 +446114,332.16,75.675 +446115,333.48,76.963 +446116,334.85,78.258 +446117,329.62,74.391 +446118,330.85,75.689 +446119,332.13,76.994 +446120,333.47,78.307 +446121,328.35,74.388 +446122,329.55,75.703 +446123,330.79,77.025 +446124,332.08,78.354 +446125,327.09,74.385 +446126,328.25,75.717 +446127,329.45,77.056 +446128,330.7,78.401 +446129,325.83,74.384 +446130,326.95,75.732 +446131,328.11,77.086 +446132,329.32,78.446 +446133,324.57,74.384 +446134,325.65,75.747 +446135,326.76,77.116 +446136,327.93,78.49 +446137,323.31,74.385 +446138,324.34,75.762 +446139,325.42,77.145 +446140,326.54,78.534 +446141,322.05,74.387 +446142,323.04,75.778 +446143,324.08,77.175 +446144,325.16,78.576 +446145,320.79,74.39 +446146,321.74,75.794 +446147,322.73,77.203 +446148,323.77,78.617 +446149,319.53,74.394 +446150,320.44,75.811 +446151,321.39,77.232 +446152,322.38,78.657 +446153,318.27,74.4 +446154,319.14,75.828 +446155,320.05,77.26 +446156,320.99,78.695 +446157,317.02,74.406 +446158,317.84,75.845 +446159,318.7,77.288 +446160,319.6,78.733 +446161,315.76,74.414 +446162,316.54,75.863 +446163,317.36,77.315 +446164,318.21,78.769 +446165,314.51,74.423 +446166,315.24,75.881 +446167,316.01,77.342 +446168,316.82,78.805 +446169,313.25,74.434 +446170,313.94,75.9 +446171,314.67,77.369 +446172,315.43,78.839 +446173,312,74.445 +446174,312.64,75.919 +446175,313.32,77.395 +446176,314.04,78.872 +446177,310.74,74.458 +446178,311.34,75.938 +446179,311.97,77.421 +446180,312.65,78.904 +446181,309.49,74.471 +446182,310.04,75.958 +446183,310.63,77.446 +446184,311.25,78.935 +446185,308.24,74.487 +446186,308.74,75.978 +446187,309.28,77.471 +446188,309.86,78.964 +446189,306.98,74.503 +446190,307.44,75.999 +446191,307.94,77.496 +446192,308.47,78.993 +446193,305.73,74.52 +446194,306.14,76.02 +446195,306.59,77.52 +446196,307.07,79.02 +446197,304.48,74.539 +446198,304.85,76.041 +446199,305.24,77.544 +446200,305.68,79.046 +446201,303.23,74.559 +446202,303.55,76.063 +446203,303.9,77.567 +446204,304.28,79.071 +446205,301.98,74.58 +446206,302.25,76.085 +446207,302.55,77.59 +446208,302.89,79.094 +446209,300.73,74.603 +446210,300.95,76.108 +446211,301.2,77.613 +446212,301.49,79.117 +446213,299.48,74.626 +446214,299.65,76.131 +446215,299.86,77.635 +446216,300.1,79.138 +446217,298.22,74.651 +446218,298.35,76.154 +446219,298.51,77.657 +446220,298.7,79.158 +446221,296.97,74.677 +446222,297.05,76.178 +446223,297.16,77.678 +446224,297.31,79.177 +446225,295.72,74.705 +446226,295.75,76.202 +446227,295.82,77.7 +446228,295.91,79.195 +446229,294.47,74.733 +446230,294.46,76.227 +446231,294.47,77.72 +446232,294.52,79.211 +446233,293.22,74.763 +446234,293.16,76.252 +446235,293.12,77.741 +446236,293.12,79.227 +446237,291.97,74.794 +446238,291.86,76.278 +446239,291.78,77.76 +446240,291.73,79.241 +446241,290.72,74.827 +446242,290.56,76.304 +446243,290.43,77.78 +446244,290.33,79.254 +446245,289.47,74.86 +446246,289.26,76.33 +446247,289.08,77.799 +446248,288.94,79.266 +446249,288.22,74.895 +446250,287.96,76.357 +446251,287.74,77.818 +446252,287.55,79.277 +446253,286.97,74.931 +446254,286.66,76.384 +446255,286.39,77.836 +446256,286.15,79.286 +446257,285.72,74.968 +446258,285.36,76.412 +446259,285.04,77.854 +446260,284.76,79.295 +446261,284.46,75.007 +446262,284.06,76.439 +446263,283.7,77.872 +446264,283.36,79.302 +446265,283.21,75.046 +446266,282.76,76.468 +446267,282.35,77.889 +446268,281.97,79.308 +446269,281.96,75.087 +446270,281.47,76.497 +446271,281,77.906 +446272,280.58,79.313 +446273,280.71,75.129 +446274,280.17,76.526 +446275,279.66,77.922 +446276,279.19,79.317 +446277,279.45,75.172 +446278,278.87,76.555 +446279,278.31,77.939 +446280,277.79,79.32 +446281,278.2,75.216 +446282,277.57,76.585 +446283,276.97,77.954 +446284,276.4,79.322 +446285,276.95,75.262 +446286,276.27,76.615 +446287,275.62,77.97 +446288,275.01,79.323 +446289,275.69,75.308 +446290,274.96,76.646 +446291,274.28,77.985 +446292,273.62,79.322 +446293,274.44,75.356 +446294,273.66,76.677 +446295,272.93,77.999 +446296,272.23,79.321 +446297,273.18,75.404 +446298,272.36,76.708 +446299,271.58,78.014 +446300,270.84,79.318 +446301,271.92,75.454 +446302,271.06,76.74 +446303,270.24,78.028 +446304,269.45,79.315 +446305,270.67,75.505 +446306,269.76,76.772 +446307,268.89,78.041 +446308,268.07,79.31 +446309,269.41,75.557 +446310,268.46,76.805 +446311,267.55,78.055 +446312,266.68,79.305 +446313,268.15,75.61 +446314,267.16,76.838 +446315,266.21,78.068 +446316,265.29,79.298 +446317,266.89,75.664 +446318,265.86,76.871 +446319,264.86,78.08 +446320,263.91,79.291 +446321,265.63,75.719 +446322,264.55,76.904 +446323,263.52,78.093 +446324,262.52,79.282 +446325,264.37,75.775 +446326,263.25,76.938 +446327,262.17,78.105 +446328,261.14,79.273 +446329,263.11,75.832 +446330,261.95,76.972 +446331,260.83,78.116 +446332,259.76,79.263 +446333,261.85,75.89 +446334,260.64,77.007 +446335,259.49,78.128 +446336,258.37,79.252 +446337,260.58,75.949 +446338,259.34,77.041 +446339,258.14,78.139 +446340,256.99,79.239 +446341,259.32,76.008 +446342,258.04,77.076 +446343,256.8,78.15 +446344,255.61,79.226 +446345,258.05,76.069 +446346,256.73,77.112 +446347,255.46,78.16 +446348,254.23,79.213 +446349,256.79,76.131 +446350,255.43,77.148 +446351,254.12,78.171 +446352,252.85,79.198 +446353,255.52,76.193 +446354,254.12,77.184 +446355,252.77,78.181 +446356,251.48,79.182 +446357,254.25,76.256 +446358,252.82,77.22 +446359,251.43,78.19 +446360,250.1,79.166 +446361,252.98,76.32 +446362,251.51,77.256 +446363,250.09,78.2 +446364,248.72,79.149 +446365,251.71,76.385 +446366,250.2,77.293 +446367,248.75,78.209 +446368,247.35,79.131 +446369,250.44,76.451 +446370,248.9,77.33 +446371,247.41,78.218 +446372,245.98,79.113 +446373,249.16,76.517 +446374,247.59,77.367 +446375,246.07,78.227 +446376,244.61,79.093 +446377,247.89,76.584 +446378,246.28,77.405 +446379,244.73,78.235 +446380,243.23,79.073 +446381,246.61,76.652 +446382,244.97,77.443 +446383,243.39,78.244 +446384,241.86,79.053 +446385,245.34,76.72 +446386,243.67,77.481 +446387,242.05,78.252 +446388,240.5,79.031 +446389,244.06,76.79 +446390,242.36,77.519 +446391,240.72,78.26 +446392,239.13,79.009 +446393,242.78,76.859 +446394,241.05,77.557 +446395,239.38,78.267 +446396,237.76,78.987 +446397,241.5,76.93 +446398,239.74,77.596 +446399,238.04,78.275 +446400,236.4,78.964 +446401,240.22,77 +446402,238.43,77.635 +446403,236.7,78.282 +446404,235.04,78.94 +446405,238.93,77.072 +446406,237.12,77.674 +446407,235.37,78.289 +446408,233.67,78.916 +446409,237.65,77.144 +446410,235.81,77.713 +446411,234.03,78.296 +446412,232.31,78.891 +446413,236.36,77.216 +446414,234.49,77.752 +446415,232.69,78.303 +446416,230.95,78.866 +446417,235.07,77.289 +446418,233.18,77.792 +446419,231.36,78.31 +446420,229.59,78.84 +446421,233.78,77.363 +446422,231.87,77.832 +446423,230.02,78.316 +446424,228.24,78.814 +446425,232.49,77.436 +446426,230.56,77.872 +446427,228.69,78.323 +446428,226.88,78.788 +446429,231.2,77.51 +446430,229.24,77.911 +446431,227.35,78.329 +446432,225.53,78.761 +446433,229.91,77.585 +446434,227.93,77.952 +446435,226.02,78.335 +446436,224.18,78.734 +446437,228.61,77.66 +446438,226.61,77.992 +446439,224.69,78.341 +446440,222.82,78.706 +446441,227.31,77.735 +446442,225.3,78.032 +446443,223.35,78.347 +446444,221.48,78.678 +446445,226.02,77.81 +446446,223.98,78.072 +446447,222.02,78.353 +446448,220.13,78.65 +446449,224.72,77.886 +446450,222.67,78.113 +446451,220.69,78.359 +446452,218.78,78.622 +446453,223.41,77.962 +446454,221.35,78.154 +446455,219.36,78.365 +446456,217.43,78.593 +446457,222.11,78.038 +446458,220.03,78.194 +446459,218.03,78.371 +446460,216.09,78.564 +446461,220.81,78.114 +446462,218.71,78.235 +446463,216.7,78.376 +446464,214.75,78.535 +446465,219.5,78.19 +446466,217.4,78.276 +446467,215.37,78.382 +446468,213.41,78.506 +446469,218.19,78.267 +446470,216.08,78.316 +446471,214.04,78.387 +446472,212.07,78.477 +446473,216.88,78.343 +446474,214.76,78.357 +446475,212.71,78.393 +446476,210.73,78.447 +446477,215.57,78.42 +446478,213.44,78.398 +446479,211.38,78.398 +446480,209.39,78.418 +446481,214.26,78.496 +446482,212.12,78.439 +446483,210.05,78.404 +446484,208.06,78.388 +446485,212.94,78.573 +446486,210.8,78.48 +446487,208.73,78.409 +446488,206.73,78.359 +446489,211.63,78.649 +446490,209.47,78.521 +446491,207.4,78.415 +446492,205.39,78.329 +446493,210.31,78.725 +446494,208.15,78.561 +446495,206.07,78.421 +446496,204.06,78.3 +446497,208.99,78.802 +446498,206.83,78.602 +446499,204.75,78.426 +446500,202.73,78.271 +446501,207.67,78.878 +446502,205.5,78.643 +446503,203.42,78.432 +446504,201.41,78.242 +446505,206.34,78.954 +446506,204.18,78.684 +446507,202.1,78.438 +446508,200.08,78.212 +446509,205.02,79.03 +446510,202.86,78.724 +446511,200.77,78.443 +446512,198.76,78.184 +446513,203.69,79.105 +446514,201.53,78.765 +446515,199.45,78.449 +446516,197.43,78.155 +446517,202.37,79.18 +446518,200.21,78.806 +446519,198.12,78.455 +446520,196.11,78.126 +446521,201.04,79.255 +446522,198.88,78.846 +446523,196.8,78.461 +446524,194.79,78.098 +446525,199.7,79.33 +446526,197.55,78.886 +446527,195.48,78.467 +446528,193.47,78.07 +446529,198.37,79.405 +446530,196.22,78.927 +446531,194.16,78.473 +446532,192.16,78.042 +446533,197.04,79.479 +446534,194.9,78.967 +446535,192.84,78.48 +446536,190.84,78.015 +446537,195.7,79.552 +446538,193.57,79.007 +446539,191.51,78.486 +446540,189.53,77.988 +446541,194.36,79.626 +446542,192.24,79.047 +446543,190.19,78.493 +446544,188.22,77.961 +446545,193.02,79.698 +446546,190.91,79.087 +446547,188.87,78.5 +446548,186.91,77.935 +446549,191.68,79.771 +446550,189.58,79.126 +446551,187.55,78.507 +446552,185.6,77.909 +446553,190.34,79.843 +446554,188.25,79.166 +446555,186.24,78.514 +446556,184.29,77.884 +446557,189,79.914 +446558,186.92,79.205 +446559,184.92,78.521 +446560,182.98,77.859 +446561,187.65,79.985 +446562,185.59,79.244 +446563,183.6,78.528 +446564,181.68,77.835 +446565,186.3,80.0548 +446566,184.25,79.283 +446567,182.28,78.536 +446568,180.38,77.811 +446569,184.95,80.1245 +446570,182.92,79.322 +446571,180.96,78.544 +446572,179.07,77.787 +446573,183.6,80.1935 +446574,181.59,79.36 +446575,179.65,78.552 +446576,177.77,77.765 +446577,182.25,80.2618 +446578,180.25,79.399 +446579,178.33,78.56 +446580,176.47,77.743 +446581,180.9,80.3295 +446582,178.92,79.437 +446583,177.01,78.568 +446584,175.18,77.721 +446585,179.54,80.3965 +446586,177.58,79.475 +446587,175.7,78.577 +446588,173.88,77.7 +446589,178.19,80.4628 +446590,176.25,79.513 +446591,174.38,78.586 +446592,172.58,77.68 +446593,176.83,80.5283 +446594,174.91,79.55 +446595,173.07,78.595 +446596,171.29,77.661 +446597,175.47,80.5931 +446598,173.58,79.587 +446599,171.76,78.604 +446600,170,77.642 +446601,174.11,80.6571 +446602,172.24,79.624 +446603,170.44,78.614 +446604,168.71,77.624 +446605,172.74,80.7203 +446606,170.9,79.661 +446607,169.13,78.624 +446608,167.42,77.607 +446609,171.38,80.7826 +446610,169.56,79.697 +446611,167.82,78.634 +446612,166.13,77.591 +446613,170.02,80.8442 +446614,168.23,79.734 +446615,166.5,78.645 +446616,164.84,77.576 +446617,168.65,80.9048 +446618,166.89,79.77 +446619,165.19,78.655 +446620,163.56,77.561 +446621,167.28,80.9646 +446622,165.55,79.805 +446623,163.88,78.667 +446624,162.27,77.547 +446625,165.91,81.0234 +446626,164.21,79.84 +446627,162.57,78.678 +446628,160.99,77.534 +446629,164.54,81.0814 +446630,162.87,79.876 +446631,161.26,78.69 +446632,159.71,77.522 +446633,163.17,81.1384 +446634,161.53,79.91 +446635,159.95,78.702 +446636,158.42,77.511 +446637,161.8,81.1944 +446638,160.19,79.945 +446639,158.64,78.714 +446640,157.14,77.501 +446641,160.42,81.2495 +446642,158.84,79.979 +446643,157.33,78.727 +446644,155.87,77.492 +446645,159.05,81.3036 +446646,157.5,80.0124 +446647,156.02,78.74 +446648,154.59,77.484 +446649,157.67,81.3566 +446650,156.16,80.0459 +446651,154.71,78.753 +446652,153.31,77.477 +446653,156.3,81.4087 +446654,154.82,80.079 +446655,153.4,78.767 +446656,152.04,77.47 +446657,154.92,81.4597 +446658,153.48,80.1117 +446659,152.09,78.781 +446660,150.76,77.465 +446661,153.54,81.5096 +446662,152.13,80.1441 +446663,150.78,78.795 +446664,149.49,77.461 +446665,152.16,81.5585 +446666,150.79,80.1762 +446667,149.48,78.81 +446668,148.21,77.458 +446669,150.77,81.6063 +446670,149.44,80.2079 +446671,148.17,78.825 +446672,146.94,77.456 +446673,149.39,81.653 +446674,148.1,80.2392 +446675,146.86,78.84 +446676,145.67,77.455 +446677,148.01,81.6986 +446678,146.75,80.2702 +446679,145.55,78.856 +446680,144.4,77.456 +446681,146.62,81.7431 +446682,145.41,80.3008 +446683,144.25,78.872 +446684,143.13,77.457 +446685,145.24,81.7865 +446686,144.06,80.3311 +446687,142.94,78.889 +446688,141.86,77.46 +446689,143.85,81.8287 +446690,142.72,80.3609 +446691,141.64,78.906 +446692,140.6,77.463 +446693,142.47,81.8698 +446694,141.37,80.3904 +446695,140.33,78.923 +446696,139.33,77.468 +446697,141.08,81.9097 +446698,140.03,80.4195 +446699,139.02,78.941 +446700,138.06,77.474 +446701,139.69,81.9485 +446702,138.68,80.4482 +446703,137.72,78.959 +446704,136.8,77.482 +446705,138.3,81.986 +446706,137.33,80.4766 +446707,136.41,78.978 +446708,135.53,77.49 +446709,136.91,82.0224 +446710,135.99,80.5045 +446711,135.11,78.997 +446712,134.27,77.5 +446713,135.52,82.0577 +446714,134.64,80.532 +446715,133.8,79.016 +446716,133.01,77.51 +446717,134.13,82.0917 +446718,133.29,80.5592 +446719,132.5,79.036 +446720,131.74,77.522 +446721,132.74,82.1245 +446722,131.94,80.5859 +446723,131.19,79.056 +446724,130.48,77.536 +446725,131.35,82.1561 +446726,130.6,80.6123 +446727,129.89,79.077 +446728,129.22,77.55 +446729,129.95,82.1865 +446730,129.25,80.6383 +446731,128.58,79.098 +446732,127.96,77.566 +446733,128.56,82.2157 +446734,127.9,80.6638 +446735,127.28,79.119 +446736,126.7,77.583 +446737,127.17,82.2437 +446738,126.55,80.689 +446739,125.98,79.141 +446740,125.44,77.601 +446741,125.77,82.2705 +446742,125.2,80.7137 +446743,124.67,79.164 +446744,124.18,77.621 +446745,124.38,82.2961 +446746,123.85,80.738 +446747,123.37,79.186 +446748,122.92,77.641 +446749,122.98,82.3204 +446750,122.51,80.762 +446751,122.06,79.209 +446752,121.66,77.663 +446753,121.59,82.3435 +446754,121.16,80.7855 +446755,120.76,79.233 +446756,120.4,77.687 +446757,120.19,82.3654 +446758,119.81,80.8086 +446759,119.46,79.257 +446760,119.14,77.711 +446761,118.8,82.3861 +446762,118.46,80.8313 +446763,118.15,79.281 +446764,117.88,77.737 +446765,117.4,82.4056 +446766,117.11,80.8536 +446767,116.85,79.306 +446768,116.62,77.764 +446769,116.01,82.4238 +446770,115.76,80.8755 +446771,115.55,79.331 +446772,115.37,77.793 +446773,114.61,82.4409 +446774,114.41,80.897 +446775,114.24,79.357 +446776,114.11,77.822 +446777,113.22,82.4567 +446778,113.06,80.9181 +446779,112.94,79.383 +446780,112.85,77.853 +446781,111.82,82.4713 +446782,111.71,80.9388 +446783,111.64,79.41 +446784,111.59,77.885 +446785,110.42,82.4848 +446786,110.36,80.9591 +446787,110.33,79.437 +446788,110.33,77.918 +446789,109.03,82.497 +446790,109.01,80.979 +446791,109.03,79.464 +446792,109.08,77.953 +446793,107.63,82.5081 +446794,107.66,80.9985 +446795,107.72,79.492 +446796,107.82,77.989 +446797,106.24,82.5179 +446798,106.31,81.0176 +446799,106.42,79.52 +446800,106.56,78.026 +446801,104.84,82.5266 +446802,104.96,81.0363 +446803,105.12,79.548 +446804,105.3,78.064 +446805,103.45,82.5341 +446806,103.61,81.0546 +446807,103.81,79.577 +446808,104.04,78.104 +446809,102.05,82.5405 +446810,102.26,81.0725 +446811,102.51,79.607 +446812,102.78,78.145 +446813,100.66,82.5457 +446814,100.92,81.09 +446815,101.2,79.637 +446816,101.53,78.187 +446817,99.263,82.5498 +446818,99.566,81.1072 +446819,99.901,79.667 +446820,100.27,78.23 +446821,97.868,82.5527 +446822,98.217,81.124 +446823,98.596,79.697 +446824,99.007,78.274 +446825,96.474,82.5545 +446826,96.868,81.1403 +446827,97.292,79.728 +446828,97.747,78.32 +446829,95.081,82.5553 +446830,95.519,81.1564 +446831,95.987,79.76 +446832,96.487,78.366 +446833,93.688,82.5549 +446834,94.17,81.172 +446835,94.682,79.791 +446836,95.226,78.414 +446837,92.295,82.5534 +446838,92.821,81.1873 +446839,93.377,79.823 +446840,93.965,78.463 +446841,90.903,82.5508 +446842,91.472,81.2023 +446843,92.072,79.856 +446844,92.704,78.513 +446845,89.511,82.5472 +446846,90.123,81.2168 +446847,90.767,79.889 +446848,91.442,78.565 +446849,88.12,82.5426 +446850,88.775,81.2311 +446851,89.461,79.922 +446852,90.179,78.617 +446853,86.73,82.5369 +446854,87.427,81.2449 +446855,88.155,79.956 +446856,88.916,78.671 +446857,85.34,82.5302 +446858,86.079,81.2585 +446859,86.849,79.99 +446860,87.652,78.725 +446861,83.951,82.5225 +446862,84.731,81.2717 +446863,85.543,80.0238 +446864,86.388,78.781 +446865,82.562,82.5138 +446866,83.383,81.2845 +446867,84.237,80.0585 +446868,85.123,78.837 +446869,81.174,82.5041 +446870,82.036,81.2971 +446871,82.93,80.0935 +446872,83.857,78.895 +446873,79.787,82.4935 +446874,80.688,81.3093 +446875,81.623,80.1288 +446876,82.591,78.954 +446877,78.401,82.482 +446878,79.341,81.3212 +446879,80.315,80.1644 +446880,81.324,79.013 +446881,77.015,82.4695 +446882,77.994,81.3328 +446883,79.008,80.2004 +446884,80.056,79.074 +446885,75.63,82.4561 +446886,76.648,81.3441 +446887,77.7,80.2367 +446888,78.787,79.136 +446889,74.246,82.4419 +446890,75.301,81.3551 +446891,76.392,80.2732 +446892,77.518,79.198 +446893,72.863,82.4268 +446894,73.955,81.3659 +446895,75.083,80.3101 +446896,76.247,79.262 +446897,71.481,82.4108 +446898,72.61,81.3763 +446899,73.774,80.3473 +446900,74.976,79.326 +446901,70.1,82.394 +446902,71.264,81.3865 +446903,72.465,80.3848 +446904,73.703,79.391 +446905,68.719,82.3765 +446906,69.919,81.3964 +446907,71.155,80.4226 +446908,72.43,79.457 +446909,67.34,82.3581 +446910,68.574,81.406 +446911,69.845,80.4606 +446912,71.156,79.524 +446913,65.961,82.339 +446914,67.229,81.4154 +446915,68.535,80.4989 +446916,69.88,79.592 +446917,64.584,82.3191 +446918,65.885,81.4245 +446919,67.225,80.5374 +446920,68.604,79.66 +446921,63.208,82.2986 +446922,64.541,81.4334 +446923,65.913,80.5762 +446924,67.327,79.729 +446925,61.833,82.2773 +446926,63.197,81.4421 +446927,64.602,80.6153 +446928,66.048,79.799 +446929,60.458,82.2554 +446930,61.854,81.4505 +446931,63.29,80.6546 +446932,64.768,79.87 +446933,59.085,82.2328 +446934,60.511,81.4587 +446935,61.978,80.6941 +446936,63.488,79.941 +446937,57.714,82.2096 +446938,59.168,81.4667 +446939,60.665,80.7338 +446940,62.206,80.0129 +446941,56.343,82.1858 +446942,57.826,81.4746 +446943,59.352,80.7737 +446944,60.922,80.0855 +446945,54.973,82.1614 +446946,56.484,81.4822 +446947,58.039,80.8139 +446948,59.638,80.1587 +446949,53.605,82.1365 +446950,55.143,81.4896 +446951,56.725,80.8542 +446952,58.352,80.2324 +446953,52.238,82.1111 +446954,53.802,81.4969 +446955,55.41,80.8947 +446956,57.065,80.3067 +446957,50.872,82.0851 +446958,52.461,81.504 +446959,54.095,80.9354 +446960,55.777,80.3815 +446961,49.507,82.0587 +446962,51.121,81.5109 +446963,52.78,80.9762 +446964,54.488,80.4569 +446965,48.144,82.0318 +446966,49.781,81.5177 +446967,51.464,81.0172 +446968,53.197,80.5326 +446969,46.781,82.0045 +446970,48.441,81.5244 +446971,50.148,81.0584 +446972,51.905,80.6088 +446973,45.421,81.9768 +446974,47.102,81.5309 +446975,48.831,81.0997 +446976,50.611,80.6855 +446977,44.061,81.9488 +446978,45.763,81.5373 +446979,47.514,81.1411 +446980,49.316,80.7625 +446981,42.703,81.9204 +446982,44.425,81.5436 +446983,46.196,81.1827 +446984,48.02,80.8398 +446985,41.346,81.8916 +446986,43.087,81.5498 +446987,44.878,81.2243 +446988,46.722,80.9175 +446989,39.99,81.8626 +446990,41.75,81.5559 +446991,43.559,81.2661 +446992,45.423,80.9955 +446993,38.636,81.8333 +446994,40.413,81.5619 +446995,42.24,81.3079 +446996,44.123,81.0737 +446997,37.283,81.8038 +446998,39.076,81.5679 +446999,40.921,81.3498 +447000,42.821,81.1522 +447001,35.932,81.7741 +447002,37.74,81.5738 +447003,39.6,81.3918 +447004,41.517,81.2308 +447005,34.582,81.7441 +447006,36.404,81.5796 +447007,38.28,81.4339 +447008,40.212,81.3097 +447009,33.233,81.7141 +447010,35.069,81.5853 +447011,36.958,81.476 +447012,38.906,81.3887 +447013,31.886,81.6839 +447014,33.734,81.5911 +447015,35.637,81.5181 +447016,37.598,81.4678 +447017,30.54,81.6536 +447018,32.4,81.5968 +447019,34.314,81.5603 +447020,36.288,81.547 +447021,29.196,81.6232 +447022,31.066,81.6024 +447023,32.992,81.6025 +447024,34.977,81.6263 +447025,27.853,81.5928 +447026,29.733,81.6081 +447027,31.668,81.6448 +447028,33.665,81.7055 +447029,26.511,81.5624 +447030,28.4,81.6138 +447031,30.344,81.687 +447032,32.35,81.7848 +447033,25.171,81.532 +447034,27.067,81.6195 +447035,29.02,81.7292 +447036,31.035,81.8641 +447037,23.833,81.5016 +447038,25.735,81.6252 +447039,27.695,81.7714 +447040,29.718,81.9432 +447041,22.495,81.4713 +447042,24.404,81.6309 +447043,26.369,81.8136 +447044,28.399,82.0223 +447045,21.16,81.4411 +447046,23.073,81.6367 +447047,25.043,81.8557 +447048,27.078,82.1013 +447049,19.825,81.4111 +447050,21.742,81.6425 +447051,23.717,81.8978 +447052,25.756,82.1801 +447053,18.492,81.3811 +447054,20.412,81.6484 +447055,22.39,81.9399 +447056,24.433,82.2587 +447057,17.161,81.3514 +447058,19.082,81.6543 +447059,21.062,81.9819 +447060,23.108,82.3371 +447061,15.831,81.3219 +447062,17.753,81.6603 +447063,19.734,82.0238 +447064,21.781,82.4153 +447065,14.503,81.2926 +447066,16.424,81.6664 +447067,18.405,82.0656 +447068,20.453,82.4932 +447069,13.176,81.2636 +447070,15.096,81.6726 +447071,17.076,82.1073 +447072,19.123,82.5707 +447073,11.85,81.2348 +447074,13.768,81.6789 +447075,15.746,82.1489 +447076,17.792,82.648 +447077,10.526,81.2064 +447078,12.441,81.6853 +447079,14.416,82.1904 +447080,16.459,82.7249 +447081,9.2033,81.1784 +447082,11.114,81.6918 +447083,13.085,82.2318 +447084,15.124,82.8014 +447085,7.8821,81.1507 +447086,9.7875,81.6985 +447087,11.753,82.2731 +447088,13.788,82.8775 +447089,6.5623,81.1234 +447090,8.4616,81.7053 +447091,10.421,82.3142 +447092,12.45,82.9531 +447093,5.2439,81.0966 +447094,7.1361,81.7123 +447095,9.0888,82.3551 +447096,11.111,83.0283 +447097,3.9269,81.0702 +447098,5.811,81.7194 +447099,7.7557,82.3959 +447100,9.77,83.103 +447101,2.6114,81.0443 +447102,4.4864,81.7267 +447103,6.4221,82.4366 +447104,8.4276,83.1771 +447105,1.2972,81.0189 +447106,3.1623,81.7341 +447107,5.088,82.477 +447108,7.0836,83.2507 +447109,359.98,80.994 +447110,1.8386,81.7418 +447111,3.7534,82.5173 +447112,5.7381,83.3237 +447113,358.67,80.9697 +447114,0.51538,81.7496 +447115,2.4182,82.5573 +447116,4.3911,83.3961 +447117,357.36,80.946 +447118,359.19,81.7577 +447119,1.0825,82.5972 +447120,3.0426,83.4679 +447121,356.05,80.9229 +447122,357.87,81.7659 +447123,359.75,82.6369 +447124,1.6925,83.539 +447125,354.75,80.9005 +447126,356.55,81.7744 +447127,358.41,82.6763 +447128,0.34101,83.6094 +447129,353.44,80.8787 +447130,355.23,81.7831 +447131,357.07,82.7155 +447132,358.99,83.6791 +447133,352.14,80.8576 +447134,353.91,81.792 +447135,355.73,82.7545 +447136,357.63,83.7481 +447137,350.83,80.8372 +447138,352.59,81.8012 +447139,354.4,82.7932 +447140,356.28,83.8163 +447141,349.53,80.8175 +447142,351.26,81.8106 +447143,353.06,82.8316 +447144,354.92,83.8837 +447145,348.23,80.7986 +447146,349.95,81.8203 +447147,351.72,82.8698 +447148,353.56,83.9503 +447149,346.93,80.7805 +447150,348.63,81.8303 +447151,350.38,82.9078 +447152,352.2,84.0161 +447153,345.63,80.7632 +447154,347.31,81.8405 +447155,349.04,82.9454 +447156,350.84,84.081 +447157,344.34,80.7468 +447158,345.99,81.851 +447159,347.7,82.9828 +447160,349.48,84.1451 +447161,343.04,80.7312 +447162,344.67,81.8619 +447163,346.36,83.0199 +447164,348.11,84.2082 +447165,341.75,80.7164 +447166,343.35,81.873 +447167,345.02,83.0566 +447168,346.75,84.2705 +447169,340.45,80.7026 +447170,342.03,81.8844 +447171,343.67,83.0931 +447172,345.38,84.3318 +447173,339.16,80.6896 +447174,340.72,81.8961 +447175,342.33,83.1293 +447176,344.01,84.3921 +447177,337.87,80.6776 +447178,339.4,81.9081 +447179,340.99,83.1651 +447180,342.64,84.4515 +447181,336.58,80.6666 +447182,338.08,81.9205 +447183,339.64,83.2006 +447184,341.27,84.5098 +447185,335.29,80.6565 +447186,336.77,81.9332 +447187,338.3,83.2358 +447188,339.9,84.5672 +447189,334,80.6475 +447190,335.45,81.9462 +447191,336.96,83.2706 +447192,338.53,84.6235 +447193,332.72,80.6394 +447194,334.14,81.9596 +447195,335.61,83.3051 +447196,337.15,84.6788 +447197,331.43,80.6324 +447198,332.82,81.9733 +447199,334.27,83.3393 +447200,335.78,84.733 +447201,330.15,80.6264 +447202,331.51,81.9873 +447203,332.92,83.3731 +447204,334.4,84.7861 +447205,328.86,80.6215 +447206,330.19,82.0018 +447207,331.58,83.4065 +447208,333.02,84.8381 +447209,327.58,80.6176 +447210,328.88,82.0166 +447211,330.23,83.4396 +447212,331.64,84.8891 +447213,326.3,80.6149 +447214,327.57,82.0317 +447215,328.88,83.4723 +447216,330.26,84.9388 +447217,325.02,80.6133 +447218,326.25,82.0472 +447219,327.54,83.5046 +447220,328.88,84.9875 +447221,323.74,80.6128 +447222,324.94,82.0632 +447223,326.19,83.5365 +447224,327.5,85.035 +447225,322.46,80.6134 +447226,323.63,82.0795 +447227,324.84,83.5681 +447228,326.12,85.0813 +447229,321.18,80.6152 +447230,322.31,82.0961 +447231,323.49,83.5992 +447232,324.73,85.1265 +447233,319.9,80.6182 +447234,321,82.1132 +447235,322.15,83.63 +447236,323.35,85.1704 +447237,318.63,80.6223 +447238,319.69,82.1307 +447239,320.8,83.6604 +447240,321.96,85.2132 +447241,317.35,80.6277 +447242,318.38,82.1485 +447243,319.45,83.6903 +447244,320.57,85.2547 +447245,316.08,80.6342 +447246,317.06,82.1668 +447247,318.1,83.7199 +447248,319.19,85.2951 +447249,314.8,80.642 +447250,315.75,82.1855 +447251,316.75,83.7491 +447252,317.8,85.3342 +447253,313.53,80.6509 +447254,314.44,82.2046 +447255,315.4,83.7778 +447256,316.41,85.372 +447257,312.26,80.6611 +447258,313.13,82.2241 +447259,314.05,83.8062 +447260,315.02,85.4087 +447261,310.98,80.6726 +447262,311.82,82.244 +447263,312.7,83.8341 +447264,313.63,85.4441 +447265,309.71,80.6853 +447266,310.51,82.2643 +447267,311.35,83.8616 +447268,312.24,85.4782 +447269,308.44,80.6993 +447270,309.2,82.2851 +447271,310,83.8887 +447272,310.85,85.511 +447273,307.17,80.7145 +447274,307.89,82.3062 +447275,308.65,83.9153 +447276,309.46,85.5426 +447277,305.9,80.731 +447278,306.58,82.3278 +447279,307.3,83.9415 +447280,308.06,85.573 +447281,304.63,80.7488 +447282,305.27,82.3499 +447283,305.94,83.9674 +447284,306.67,85.602 +447285,303.36,80.7678 +447286,303.96,82.3723 +447287,304.59,83.9927 +447288,305.28,85.6298 +447289,302.09,80.7882 +447290,302.65,82.3952 +447291,303.24,84.0177 +447292,303.88,85.6563 +447293,300.82,80.8098 +447294,301.34,82.4185 +447295,301.89,84.0422 +447296,302.49,85.6815 +447297,299.55,80.8327 +447298,300.03,82.4422 +447299,300.54,84.0663 +447300,301.09,85.7055 +447301,298.29,80.8569 +447302,298.72,82.4664 +447303,299.19,84.09 +447304,299.7,85.7282 +447305,297.02,80.8824 +447306,297.41,82.4909 +447307,297.83,84.1133 +447308,298.3,85.7495 +447309,295.75,80.9092 +447310,296.1,82.5159 +447311,296.48,84.1361 +447312,296.9,85.7697 +447313,294.48,80.9373 +447314,294.79,82.5414 +447315,295.13,84.1585 +447316,295.51,85.7885 +447317,293.22,80.9667 +447318,293.48,82.5673 +447319,293.78,84.1804 +447320,294.11,85.8061 +447321,291.95,80.9974 +447322,292.17,82.5936 +447323,292.42,84.2019 +447324,292.71,85.8224 +447325,290.68,81.0294 +447326,290.86,82.6203 +447327,291.07,84.2231 +447328,291.32,85.8374 +447329,289.42,81.0626 +447330,289.55,82.6474 +447331,289.72,84.2437 +447332,289.92,85.8512 +447333,288.15,81.0972 +447334,288.24,82.675 +447335,288.36,84.264 +447336,288.52,85.8637 +447337,286.88,81.133 +447338,286.93,82.703 +447339,287.01,84.2838 +447340,287.13,85.8749 +447341,285.62,81.1701 +447342,285.62,82.7314 +447343,285.66,84.3032 +447344,285.73,85.885 +447345,284.35,81.2085 +447346,284.31,82.7602 +447347,284.3,84.3222 +447348,284.33,85.8937 +447349,283.08,81.2481 +447350,283,82.7895 +447351,282.95,84.3408 +447352,282.93,85.9013 +447353,281.82,81.289 +447354,281.69,82.8192 +447355,281.6,84.359 +447356,281.54,85.9076 +447357,280.55,81.3311 +447358,280.38,82.8492 +447359,280.25,84.3768 +447360,280.14,85.9128 +447361,279.28,81.3745 +447362,279.07,82.8797 +447363,278.89,84.3941 +447364,278.74,85.9167 +447365,278.02,81.4191 +447366,277.76,82.9106 +447367,277.54,84.4111 +447368,277.35,85.9194 +447369,276.75,81.4649 +447370,276.45,82.9419 +447371,276.19,84.4276 +447372,275.95,85.921 +447373,275.48,81.5119 +447374,275.14,82.9736 +447375,274.83,84.4438 +447376,274.55,85.9214 +447377,274.21,81.5601 +447378,273.83,83.0057 +447379,273.48,84.4595 +447380,273.16,85.9206 +447381,272.94,81.6096 +447382,272.52,83.0381 +447383,272.13,84.4749 +447384,271.76,85.9187 +447385,271.68,81.6602 +447386,271.21,83.071 +447387,270.77,84.4899 +447388,270.37,85.9156 +447389,270.41,81.7119 +447390,269.9,83.1042 +447391,269.42,84.5045 +447392,268.97,85.9115 +447393,269.14,81.7648 +447394,268.59,83.1378 +447395,268.07,84.5187 +447396,267.58,85.9062 +447397,267.87,81.8189 +447398,267.28,83.1718 +447399,266.72,84.5326 +447400,266.18,85.8998 +447401,266.6,81.874 +447402,265.97,83.2062 +447403,265.37,84.5461 +447404,264.79,85.8924 +447405,265.32,81.9303 +447406,264.66,83.2409 +447407,264.01,84.5592 +447408,263.4,85.8839 +447409,264.05,81.9876 +447410,263.34,83.2759 +447411,262.66,84.572 +447412,262.01,85.8744 +447413,262.78,82.0461 +447414,262.03,83.3113 +447415,261.31,84.5845 +447416,260.61,85.8638 +447417,261.51,82.1055 +447418,260.72,83.3471 +447419,259.96,84.5965 +447420,259.22,85.8523 +447421,260.23,82.166 +447422,259.41,83.3832 +447423,258.61,84.6083 +447424,257.83,85.8397 +447425,258.96,82.2276 +447426,258.09,83.4196 +447427,257.25,84.6197 +447428,256.44,85.8262 +447429,257.69,82.2901 +447430,256.78,83.4564 +447431,255.9,84.6308 +447432,255.05,85.8117 +447433,256.41,82.3536 +447434,255.47,83.4934 +447435,254.55,84.6416 +447436,253.66,85.7963 +447437,255.13,82.4181 +447438,254.15,83.5308 +447439,253.2,84.652 +447440,252.28,85.78 +447441,253.86,82.4835 +447442,252.84,83.5685 +447443,251.85,84.6622 +447444,250.89,85.7628 +447445,252.58,82.5498 +447446,251.53,83.6065 +447447,250.5,84.672 +447448,249.5,85.7447 +447449,251.3,82.617 +447450,250.21,83.6448 +447451,249.15,84.6816 +447452,248.12,85.7257 +447453,250.02,82.6851 +447454,248.9,83.6833 +447455,247.8,84.6909 +447456,246.73,85.706 +447457,248.74,82.754 +447458,247.58,83.7222 +447459,246.45,84.6999 +447460,245.35,85.6854 +447461,247.46,82.8237 +447462,246.27,83.7613 +447463,245.1,84.7086 +447464,243.97,85.6641 +447465,246.17,82.8943 +447466,244.95,83.8006 +447467,243.75,84.7171 +447468,242.59,85.6419 +447469,244.89,82.9656 +447470,243.63,83.8402 +447471,242.41,84.7253 +447472,241.21,85.6191 +447473,243.61,83.0377 +447474,242.32,83.8801 +447475,241.06,84.7333 +447476,239.83,85.5955 +447477,242.32,83.1105 +447478,241,83.9202 +447479,239.71,84.741 +447480,238.45,85.5713 +447481,241.04,83.184 +447482,239.68,83.9605 +447483,238.36,84.7485 +447484,237.07,85.5463 +447485,239.75,83.2582 +447486,238.37,84.001 +447487,237.01,84.7558 +447488,235.69,85.5208 +447489,238.46,83.333 +447490,237.05,84.0417 +447491,235.67,84.7629 +447492,234.32,85.4946 +447493,237.17,83.4085 +447494,235.73,84.0827 +447495,234.32,84.7698 +447496,232.94,85.4678 +447497,235.88,83.4846 +447498,234.41,84.1238 +447499,232.97,84.7764 +447500,231.57,85.4404 +447501,234.59,83.5612 +447502,233.09,84.1651 +447503,231.63,84.7829 +447504,230.2,85.4125 +447505,233.29,83.6383 +447506,231.77,84.2066 +447507,230.28,84.7892 +447508,228.82,85.3841 +447509,232,83.716 +447510,230.45,84.2483 +447511,228.94,84.7953 +447512,227.45,85.3553 +447513,230.7,83.7942 +447514,229.13,84.2901 +447515,227.59,84.8013 +447516,226.09,85.3259 +447517,229.41,83.8728 +447518,227.81,84.332 +447519,226.25,84.8071 +447520,224.72,85.2961 +447521,228.11,83.9518 +447522,226.49,84.3741 +447523,224.9,84.8128 +447524,223.35,85.2659 +447525,226.81,84.0312 +447526,225.17,84.4163 +447527,223.56,84.8184 +447528,221.99,85.2353 +447529,225.51,84.111 +447530,223.84,84.4586 +447531,222.22,84.8238 +447532,220.62,85.2044 +447533,224.21,84.1911 +447534,222.52,84.5011 +447535,220.87,84.8291 +447536,219.26,85.1732 +447537,222.9,84.2716 +447538,221.2,84.5436 +447539,219.53,84.8343 +447540,217.9,85.1416 +447541,221.6,84.3523 +447542,219.87,84.5862 +447543,218.19,84.8394 +447544,216.54,85.1098 +447545,220.29,84.4332 +447546,218.55,84.6289 +447547,216.84,84.8445 +447548,215.18,85.0777 +447549,218.99,84.5144 +447550,217.22,84.6716 +447551,215.5,84.8494 +447552,213.82,85.0454 +447553,217.68,84.5957 +447554,215.9,84.7145 +447555,214.16,84.8543 +447556,212.46,85.013 +447557,216.37,84.6773 +447558,214.57,84.7573 +447559,212.82,84.8591 +447560,211.11,84.9803 +447561,215.05,84.7589 +447562,213.25,84.8002 +447563,211.48,84.8639 +447564,209.76,84.9476 +447565,213.74,84.8406 +447566,211.92,84.8431 +447567,210.14,84.8686 +447568,208.4,84.9148 +447569,212.43,84.9224 +447570,210.59,84.8861 +447571,208.8,84.8734 +447572,207.05,84.8818 +447573,211.11,85.0042 +447574,209.27,84.929 +447575,207.46,84.8781 +447576,205.7,84.8489 +447577,209.79,85.086 +447578,207.94,84.9719 +447579,206.12,84.8827 +447580,204.35,84.8159 +447581,208.48,85.1677 +447582,206.61,85.0148 +447583,204.79,84.8874 +447584,203.01,84.7829 +447585,207.16,85.2494 +447586,205.28,85.0577 +447587,203.45,84.8921 +447588,201.66,84.75 +447589,205.83,85.331 +447590,203.95,85.1006 +447591,202.11,84.8969 +447592,200.32,84.7172 +447593,204.51,85.4125 +447594,202.62,85.1434 +447595,200.77,84.9016 +447596,198.98,84.6845 +447597,203.19,85.4938 +447598,201.29,85.1862 +447599,199.44,84.9064 +447600,197.63,84.6519 +447601,201.86,85.5749 +447602,199.96,85.2288 +447603,198.1,84.9113 +447604,196.29,84.6194 +447605,200.53,85.6558 +447606,198.62,85.2714 +447607,196.77,84.9162 +447608,194.95,84.5872 +447609,199.2,85.7365 +447610,197.29,85.314 +447611,195.43,84.9212 +447612,193.62,84.5551 +447613,197.87,85.8168 +447614,195.96,85.3564 +447615,194.1,84.9262 +447616,192.28,84.5233 +447617,196.54,85.8969 +447618,194.63,85.3987 +447619,192.76,84.9314 +447620,190.95,84.4918 +447621,195.21,85.9766 +447622,193.29,85.4409 +447623,191.43,84.9366 +447624,189.61,84.4606 +447625,193.87,86.0559 +447626,191.96,85.483 +447627,190.1,84.942 +447628,188.28,84.4297 +447629,192.54,86.1348 +447630,190.62,85.5249 +447631,188.76,84.9475 +447632,186.95,84.3992 +447633,191.2,86.2133 +447634,189.29,85.5667 +447635,187.43,84.9531 +447636,185.62,84.3691 +447637,189.86,86.2913 +447638,187.95,85.6084 +447639,186.1,84.9588 +447640,184.29,84.3394 +447641,188.52,86.3688 +447642,186.61,85.6498 +447643,184.77,84.9647 +447644,182.97,84.3101 +447645,187.18,86.4458 +447646,185.28,85.6911 +447647,183.44,84.9708 +447648,181.64,84.2813 +447649,185.83,86.5223 +447650,183.94,85.7322 +447651,182.1,84.977 +447652,180.32,84.253 +447653,184.49,86.5981 +447654,182.6,85.7731 +447655,180.77,84.9834 +447656,179,84.2252 +447657,183.14,86.6734 +447658,181.26,85.8139 +447659,179.44,84.99 +447660,177.68,84.198 +447661,181.79,86.748 +447662,179.92,85.8543 +447663,178.11,84.9967 +447664,176.36,84.1714 +447665,180.44,86.8219 +447666,178.58,85.8946 +447667,176.79,85.0037 +447668,175.04,84.1453 +447669,179.09,86.8951 +447670,177.24,85.9347 +447671,175.46,85.0109 +447672,173.72,84.1199 +447673,177.74,86.9677 +447674,175.9,85.9745 +447675,174.13,85.0183 +447676,172.41,84.0952 +447677,176.39,87.0394 +447678,174.56,86.014 +447679,172.8,85.0259 +447680,171.09,84.0711 +447681,175.03,87.1104 +447682,173.22,86.0533 +447683,171.47,85.0337 +447684,169.78,84.0477 +447685,173.67,87.1806 +447686,171.88,86.0923 +447687,170.15,85.0418 +447688,168.47,84.0251 +447689,172.32,87.25 +447690,170.54,86.1311 +447691,168.82,85.0502 +447692,167.16,84.0032 +447693,170.96,87.3185 +447694,169.19,86.1696 +447695,167.49,85.0588 +447696,165.85,83.9821 +447697,169.59,87.3862 +447698,167.85,86.2078 +447699,166.17,85.0677 +447700,164.54,83.9618 +447701,168.23,87.4529 +447702,166.51,86.2456 +447703,164.84,85.0768 +447704,163.23,83.9423 +447705,166.87,87.5187 +447706,165.16,86.2832 +447707,163.52,85.0863 +447708,161.92,83.9237 +447709,165.5,87.5836 +447710,163.82,86.3205 +447711,162.19,85.096 +447712,160.62,83.906 +447713,164.14,87.6475 +447714,162.47,86.3574 +447715,160.87,85.106 +447716,159.32,83.8891 +447717,162.77,87.7104 +447718,161.13,86.394 +447719,159.54,85.1163 +447720,158.01,83.8732 +447721,161.4,87.7723 +447722,159.78,86.4303 +447723,158.22,85.127 +447724,156.71,83.8582 +447725,160.03,87.8332 +447726,158.43,86.4662 +447727,156.9,85.1379 +447728,155.41,83.8441 +447729,158.66,87.893 +447730,157.09,86.5018 +447731,155.57,85.1492 +447732,154.11,83.8311 +447733,157.29,87.9517 +447734,155.74,86.537 +447735,154.25,85.1608 +447736,152.82,83.819 +447737,155.91,88.0094 +447738,154.39,86.5719 +447739,152.93,85.1728 +447740,151.52,83.808 +447741,154.54,88.0659 +447742,153.04,86.6063 +447743,151.61,85.1851 +447744,150.22,83.798 +447745,153.16,88.1213 +447746,151.69,86.6405 +447747,150.28,85.1977 +447748,148.93,83.789 +447749,151.79,88.1756 +447750,150.34,86.6742 +447751,148.96,85.2107 +447752,147.63,83.7811 +447753,150.41,88.2286 +447754,148.99,86.7075 +447755,147.64,85.2241 +447756,146.34,83.7743 +447757,149.03,88.2806 +447758,147.64,86.7405 +447759,146.32,85.2378 +447760,145.05,83.7686 +447761,147.65,88.3313 +447762,146.29,86.773 +447763,145,85.2519 +447764,143.76,83.7641 +447765,146.27,88.3808 +447766,144.94,86.8052 +447767,143.68,85.2664 +447768,142.47,83.7607 +447769,144.88,88.4291 +447770,143.59,86.8369 +447771,142.36,85.2813 +447772,141.18,83.7584 +447773,143.5,88.4761 +447774,142.24,86.8682 +447775,141.04,85.2965 +447776,139.89,83.7573 +447777,142.12,88.5219 +447778,140.89,86.8991 +447779,139.72,85.3122 +447780,138.6,83.7574 +447781,140.73,88.5665 +447782,139.54,86.9296 +447783,138.4,85.3282 +447784,137.32,83.7586 +447785,139.34,88.6097 +447786,138.19,86.9597 +447787,137.08,85.3446 +447788,136.03,83.7611 +447789,137.96,88.6517 +447790,136.83,86.9893 +447791,135.76,85.3615 +447792,134.74,83.7648 +447793,136.57,88.6924 +447794,135.48,87.0185 +447795,134.45,85.3787 +447796,133.46,83.7698 +447797,135.18,88.7318 +447798,134.13,87.0472 +447799,133.13,85.3964 +447800,132.18,83.776 +447801,133.79,88.7698 +447802,132.77,87.0755 +447803,131.81,85.4145 +447804,130.89,83.7834 +447805,132.4,88.8066 +447806,131.42,87.1034 +447807,130.49,85.4329 +447808,129.61,83.7921 +447809,131.01,88.842 +447810,130.07,87.1308 +447811,129.17,85.4518 +447812,128.33,83.8021 +447813,129.62,88.8761 +447814,128.71,87.1578 +447815,127.86,85.4712 +447816,127.05,83.8133 +447817,128.23,88.9088 +447818,127.36,87.1843 +447819,126.54,85.4909 +447820,125.77,83.8258 +447821,126.83,88.9402 +447822,126,87.2104 +447823,125.22,85.5111 +447824,124.48,83.8397 +447825,125.44,88.9703 +447826,124.65,87.236 +447827,123.9,85.5317 +447828,123.2,83.8548 +447829,124.04,88.999 +447830,123.29,87.2612 +447831,122.59,85.5527 +447832,121.93,83.8712 +447833,122.65,89.02632 +447834,121.94,87.2859 +447835,121.27,85.5742 +447836,120.65,83.889 +447837,121.25,89.0523 +447838,120.58,87.3101 +447839,119.95,85.5961 +447840,119.37,83.9081 +447841,119.86,89.07692 +447842,119.22,87.3339 +447843,118.64,85.6184 +447844,118.09,83.9284 +447845,118.46,89.10018 +447846,117.87,87.3572 +447847,117.32,85.6412 +447848,116.81,83.9502 +447849,117.07,89.12208 +447850,116.51,87.3801 +447851,116,85.6644 +447852,115.53,83.9732 +447853,115.67,89.14262 +447854,115.16,87.4025 +447855,114.69,85.688 +447856,114.26,83.9976 +447857,114.27,89.1618 +447858,113.8,87.4244 +447859,113.37,85.7121 +447860,112.98,84.0232 +447861,112.87,89.17962 +447862,112.44,87.4459 +447863,112.05,85.7366 +447864,111.7,84.0503 +447865,111.48,89.19609 +447866,111.09,87.4669 +447867,110.74,85.7616 +447868,110.43,84.0786 +447869,110.08,89.2112 +447870,109.73,87.4875 +447871,109.42,85.7869 +447872,109.15,84.1083 +447873,108.68,89.22497 +447874,108.37,87.5076 +447875,108.11,85.8127 +447876,107.87,84.1393 +447877,107.28,89.23739 +447878,107.02,87.5273 +447879,106.79,85.839 +447880,106.6,84.1716 +447881,105.88,89.24848 +447882,105.66,87.5464 +447883,105.47,85.8656 +447884,105.32,84.2052 +447885,104.48,89.25824 +447886,104.3,87.5652 +447887,104.16,85.8927 +447888,104.05,84.2402 +447889,103.08,89.26667 +447890,102.94,87.5835 +447891,102.84,85.9202 +447892,102.77,84.2765 +447893,101.69,89.27379 +447894,101.59,87.6013 +447895,101.52,85.9482 +447896,101.49,84.314 +447897,100.29,89.2796 +447898,100.23,87.6187 +447899,100.21,85.9766 +447900,100.22,84.3529 +447901,98.888,89.28411 +447902,98.873,87.6356 +447903,98.891,86.0053 +447904,98.941,84.3931 +447905,97.489,89.28733 +447906,97.516,87.6521 +447907,97.575,86.0345 +447908,97.665,84.4345 +447909,96.09,89.28927 +447910,96.158,87.6682 +447911,96.258,86.0642 +447912,96.388,84.4772 +447913,94.691,89.28995 +447914,94.801,87.6838 +447915,94.942,86.0942 +447916,95.112,84.5212 +447917,93.293,89.28936 +447918,93.444,87.699 +447919,93.625,86.1246 +447920,93.835,84.5665 +447921,91.894,89.28753 +447922,92.086,87.7137 +447923,92.308,86.1554 +447924,92.558,84.613 +447925,90.496,89.28447 +447926,90.729,87.7281 +447927,90.991,86.1867 +447928,91.281,84.6607 +447929,89.098,89.28019 +447930,89.372,87.742 +447931,89.674,86.2183 +447932,90.003,84.7097 +447933,87.7,89.2747 +447934,88.015,87.7555 +447935,88.357,86.2503 +447936,88.725,84.7598 +447937,86.303,89.26802 +447938,86.658,87.7686 +447939,87.039,86.2827 +447940,87.447,84.8112 +447941,84.906,89.26017 +447942,85.301,87.7813 +447943,85.722,86.3155 +447944,86.168,84.8638 +447945,83.51,89.25115 +447946,83.944,87.7935 +447947,84.404,86.3487 +447948,84.889,84.9175 +447949,82.113,89.24099 +447950,82.587,87.8054 +447951,83.086,86.3822 +447952,83.61,84.9724 +447953,80.718,89.22971 +447954,81.23,87.8169 +447955,81.768,86.4161 +447956,82.33,85.0284 +447957,79.322,89.21731 +447958,79.874,87.828 +447959,80.45,86.4504 +447960,81.05,85.0856 +447961,77.927,89.20382 +447962,78.517,87.8387 +447963,79.131,86.485 +447964,79.769,85.1439 +447965,76.533,89.18926 +447966,77.161,87.8491 +447967,77.813,86.52 +447968,78.487,85.2033 +447969,75.139,89.17365 +447970,75.805,87.859 +447971,76.494,86.5553 +447972,77.205,85.2637 +447973,73.746,89.157 +447974,74.449,87.8686 +447975,75.175,86.591 +447976,75.922,85.3252 +447977,72.354,89.13933 +447978,73.093,87.8779 +447979,73.855,86.6269 +447980,74.639,85.3877 +447981,70.962,89.12067 +447982,71.738,87.8868 +447983,72.536,86.6632 +447984,73.355,85.4513 +447985,69.571,89.10104 +447986,70.382,87.8954 +447987,71.216,86.6999 +447988,72.071,85.5158 +447989,68.18,89.08046 +447990,69.027,87.9036 +447991,69.895,86.7368 +447992,70.785,85.5814 +447993,66.79,89.05894 +447994,67.672,87.9115 +447995,68.575,86.774 +447996,69.499,85.6478 +447997,65.401,89.03652 +447998,66.317,87.9191 +447999,67.254,86.8115 +448000,68.212,85.7153 +448001,64.013,89.01321 +448002,64.962,87.9264 +448003,65.933,86.8493 +448004,66.925,85.7836 +448005,62.625,88.989 +448006,63.608,87.9333 +448007,64.612,86.8874 +448008,65.636,85.8528 +448009,61.239,88.964 +448010,62.254,87.94 +448011,63.29,86.9258 +448012,64.347,85.9229 +448013,59.853,88.9382 +448014,60.9,87.9464 +448015,61.968,86.9644 +448016,63.057,85.9938 +448017,58.468,88.9116 +448018,59.546,87.9525 +448019,60.646,87.0033 +448020,61.766,86.0655 +448021,57.084,88.8842 +448022,58.193,87.9583 +448023,59.323,87.0424 +448024,60.474,86.1381 +448025,55.701,88.8561 +448026,56.84,87.9638 +448027,58,87.0817 +448028,59.181,86.2114 +448029,54.318,88.8272 +448030,55.487,87.9691 +448031,56.677,87.1213 +448032,57.887,86.2854 +448033,52.937,88.7977 +448034,54.135,87.9742 +448035,55.353,87.1611 +448036,56.592,86.3601 +448037,51.557,88.7675 +448038,52.782,87.979 +448039,54.029,87.2011 +448040,55.296,86.4356 +448041,50.178,88.7367 +448042,51.43,87.9836 +448043,52.704,87.2414 +448044,53.999,86.5117 +448045,48.799,88.7053 +448046,50.079,87.9879 +448047,51.379,87.2818 +448048,52.702,86.5884 +448049,47.422,88.6733 +448050,48.727,87.9921 +448051,50.054,87.3224 +448052,51.403,86.6657 +448053,46.046,88.6407 +448054,47.376,87.996 +448055,48.729,87.3631 +448056,50.103,86.7436 +448057,44.671,88.6076 +448058,46.026,87.9998 +448059,47.403,87.4041 +448060,48.801,86.8221 +448061,43.297,88.574 +448062,44.675,88.0033 +448063,46.076,87.4451 +448064,47.499,86.901 +448065,41.924,88.5399 +448066,43.325,88.0067 +448067,44.749,87.4864 +448068,46.196,86.9805 +448069,40.552,88.5054 +448070,41.976,88.0099 +448071,43.422,87.5277 +448072,44.891,87.0604 +448073,39.182,88.4705 +448074,40.626,88.013 +448075,42.094,87.5692 +448076,43.586,87.1407 +448077,37.812,88.4351 +448078,39.277,88.0159 +448079,40.766,87.6108 +448080,42.279,87.2215 +448081,36.444,88.3995 +448082,37.929,88.0187 +448083,39.437,87.6525 +448084,40.971,87.3026 +448085,35.077,88.3634 +448086,36.58,88.0213 +448087,38.108,87.6943 +448088,39.661,87.384 +448089,33.711,88.3271 +448090,35.232,88.0239 +448091,36.779,87.7362 +448092,38.351,87.4658 +448093,32.346,88.2906 +448094,33.885,88.0263 +448095,35.449,87.7781 +448096,37.039,87.5478 +448097,30.983,88.2537 +448098,32.538,88.0286 +448099,34.119,87.8202 +448100,35.726,87.6301 +448101,29.621,88.2167 +448102,31.191,88.0309 +448103,32.788,87.8622 +448104,34.411,87.7125 +448105,28.26,88.1795 +448106,29.845,88.033 +448107,31.457,87.9043 +448108,33.096,87.7952 +448109,26.9,88.1421 +448110,28.499,88.0351 +448111,30.125,87.9465 +448112,31.779,87.878 +448113,25.541,88.1046 +448114,27.153,88.0372 +448115,28.793,87.9887 +448116,30.461,87.9609 +448117,24.184,88.0671 +448118,25.808,88.0392 +448119,27.46,88.0308 +448120,29.141,88.0439 +448121,22.828,88.0294 +448122,24.463,88.0411 +448123,26.127,88.073 +448124,27.82,88.1269 +448125,21.473,87.9918 +448126,23.118,88.0431 +448127,24.793,88.1152 +448128,26.498,88.21 +448129,20.12,87.9541 +448130,21.774,88.045 +448131,23.459,88.1573 +448132,25.174,88.2931 +448133,18.768,87.9164 +448134,20.431,88.0469 +448135,22.124,88.1994 +448136,23.85,88.3761 +448137,17.417,87.8788 +448138,19.088,88.0488 +448139,20.789,88.2415 +448140,22.523,88.459 +448141,16.068,87.8413 +448142,17.745,88.0507 +448143,19.454,88.2835 +448144,21.196,88.5418 +448145,14.719,87.8039 +448146,16.402,88.0527 +448147,18.118,88.3254 +448148,19.867,88.6245 +448149,13.373,87.7667 +448150,15.06,88.0547 +448151,16.781,88.3673 +448152,18.536,88.7069 +448153,12.027,87.7296 +448154,13.719,88.0567 +448155,15.444,88.4091 +448156,17.204,88.7892 +448157,10.683,87.6928 +448158,12.378,88.0588 +448159,14.106,88.4508 +448160,15.871,88.8712 +448161,9.3397,87.6561 +448162,11.037,88.0609 +448163,12.768,88.4924 +448164,14.537,88.953 +448165,7.998,87.6198 +448166,9.6964,88.0631 +448167,11.43,88.5338 +448168,13.201,89.03445 +448169,6.6577,87.5837 +448170,8.3565,88.0654 +448171,10.091,88.5752 +448172,11.863,89.11556 +448173,5.3186,87.548 +448174,7.0169,88.0679 +448175,8.7512,88.6164 +448176,10.524,89.1963 +448177,3.9809,87.5126 +448178,5.6778,88.0704 +448179,7.4112,88.6574 +448180,9.1843,89.27663 +448181,2.6444,87.4776 +448182,4.339,88.073 +448183,6.0707,88.6983 +448184,7.8428,89.35652 +448185,1.3093,87.443 +448186,3.0007,88.0757 +448187,4.7297,88.739 +448188,6.4998,89.43595 +448189,359.98,87.4088 +448190,1.6628,88.0786 +448191,3.3882,88.7796 +448192,5.1554,89.51488 +448193,358.64,87.3751 +448194,0.32528,88.0816 +448195,2.0462,88.8199 +448196,3.8097,89.59328 +448197,357.31,87.3419 +448198,358.99,88.0848 +448199,0.70369,88.8601 +448200,2.4625,89.67111 +448201,355.98,87.3093 +448202,357.65,88.0881 +448203,359.36,88.9 +448204,1.114,89.74836 +448205,354.65,87.2771 +448206,356.32,88.0916 +448207,358.02,88.9397 +448208,359.76,89.82498 +448209,353.33,87.2456 +448210,354.98,88.0953 +448211,356.67,88.9792 +448212,358.41,89.900951 +448213,352,87.2147 +448214,353.64,88.0992 +448215,355.33,89.01848 +448216,357.06,89.976239 +448217,350.67,87.1843 +448218,352.31,88.1033 +448219,353.98,89.05749 +448220,355.71,90.050815 +448221,349.35,87.1547 +448222,350.97,88.1076 +448223,352.64,89.09623 +448224,354.35,90.12465 +448225,348.03,87.1257 +448226,349.64,88.1121 +448227,351.29,89.13471 +448228,352.99,90.19772 +448229,346.71,87.0975 +448230,348.31,88.1168 +448231,349.95,89.17291 +448232,351.64,90.26999 +448233,345.39,87.07 +448234,346.97,88.1218 +448235,348.6,89.21082 +448236,350.28,90.34143 +448237,344.07,87.0432 +448238,345.64,88.127 +448239,347.25,89.24844 +448240,348.92,90.41202 +448241,342.75,87.0172 +448242,344.31,88.1324 +448243,345.9,89.28576 +448244,347.55,90.48173 +448245,341.43,86.9921 +448246,342.97,88.1381 +448247,344.56,89.32277 +448248,346.19,90.55053 +448249,340.12,86.9677 +448250,341.64,88.1441 +448251,343.21,89.35945 +448252,344.83,90.6184 +448253,338.8,86.9443 +448254,340.31,88.1504 +448255,341.86,89.3958 +448256,343.46,90.68531 +448257,337.49,86.9217 +448258,338.98,88.1569 +448259,340.51,89.43182 +448260,342.09,90.75124 +448261,336.18,86.9 +448262,337.65,88.1637 +448263,339.16,89.46749 +448264,340.72,90.81616 +448265,334.87,86.8792 +448266,336.32,88.1709 +448267,337.81,89.50281 +448268,339.35,90.88005 +448269,333.56,86.8594 +448270,334.99,88.1783 +448271,336.46,89.53777 +448272,337.98,90.94288 +448273,332.25,86.8406 +448274,333.66,88.1861 +448275,335.11,89.57236 +448276,336.61,91.0046 +448277,330.94,86.8227 +448278,332.33,88.1941 +448279,333.76,89.60657 +448280,335.24,91.0653 +448281,329.63,86.8059 +448282,331,88.2025 +448283,332.4,89.6404 +448284,333.86,91.1248 +448285,328.33,86.7901 +448286,329.67,88.2112 +448287,331.05,89.67384 +448288,332.49,91.1832 +448289,327.02,86.7753 +448290,328.34,88.2203 +448291,329.7,89.70688 +448292,331.11,91.2404 +448293,325.72,86.7616 +448294,327.01,88.2297 +448295,328.35,89.73952 +448296,329.73,91.2964 +448297,324.42,86.749 +448298,325.68,88.2395 +448299,326.99,89.77175 +448300,328.36,91.3513 +448301,323.11,86.7375 +448302,324.35,88.2496 +448303,325.64,89.80356 +448304,326.98,91.4049 +448305,321.81,86.7272 +448306,323.03,88.2601 +448307,324.28,89.83495 +448308,325.59,91.4572 +448309,320.51,86.7179 +448310,321.7,88.2709 +448311,322.93,89.86591 +448312,324.21,91.5083 +448313,319.21,86.7099 +448314,320.37,88.2822 +448315,321.57,89.89644 +448316,322.83,91.5582 +448317,317.92,86.703 +448318,319.04,88.2938 +448319,320.22,89.926531 +448320,321.45,91.6067 +448321,316.62,86.6972 +448322,317.72,88.3058 +448323,318.86,89.956177 +448324,320.06,91.6539 +448325,315.32,86.6927 +448326,316.39,88.3182 +448327,317.51,89.985373 +448328,318.67,91.6999 +448329,314.02,86.6894 +448330,315.07,88.3309 +448331,316.15,90.014115 +448332,317.29,91.7444 +448333,312.73,86.6874 +448334,313.74,88.3441 +448335,314.79,90.042399 +448336,315.9,91.7877 +448337,311.43,86.6865 +448338,312.41,88.3577 +448339,313.44,90.07022 +448340,314.51,91.8295 +448341,310.14,86.687 +448342,311.09,88.3717 +448343,312.08,90.097575 +448344,313.12,91.87 +448345,308.85,86.6887 +448346,309.76,88.3861 +448347,310.72,90.12446 +448348,311.73,91.9091 +448349,307.55,86.6916 +448350,308.44,88.4009 +448351,309.36,90.15087 +448352,310.34,91.9469 +448353,306.26,86.6959 +448354,307.11,88.4161 +448355,308.01,90.1768 +448356,308.95,91.9832 +448357,304.97,86.7014 +448358,305.79,88.4317 +448359,306.65,90.20225 +448360,307.56,92.0181 +448361,303.68,86.7083 +448362,304.46,88.4478 +448363,305.29,90.22722 +448364,306.16,92.0516 +448365,302.39,86.7165 +448366,303.14,88.4643 +448367,303.93,90.2517 +448368,304.77,92.0836 +448369,301.1,86.726 +448370,301.81,88.4812 +448371,302.57,90.27569 +448372,303.38,92.1143 +448373,299.81,86.7368 +448374,300.49,88.4986 +448375,301.21,90.2992 +448376,301.98,92.1434 +448377,298.52,86.7489 +448378,299.17,88.5163 +448379,299.85,90.32221 +448380,300.58,92.1712 +448381,297.23,86.7624 +448382,297.84,88.5345 +448383,298.49,90.34472 +448384,299.19,92.1975 +448385,295.94,86.7773 +448386,296.52,88.5532 +448387,297.13,90.36674 +448388,297.79,92.2223 +448389,294.66,86.7935 +448390,295.19,88.5723 +448391,295.77,90.38826 +448392,296.39,92.2457 +448393,293.37,86.811 +448394,293.87,88.5918 +448395,294.41,90.40929 +448396,295,92.2677 +448397,292.08,86.8299 +448398,292.55,88.6117 +448399,293.05,90.42981 +448400,293.6,92.2881 +448401,290.79,86.8502 +448402,291.22,88.6321 +448403,291.69,90.44984 +448404,292.2,92.3072 +448405,289.51,86.8718 +448406,289.9,88.653 +448407,290.33,90.46937 +448408,290.8,92.3247 +448409,288.22,86.8948 +448410,288.58,88.6742 +448411,288.97,90.4884 +448412,289.4,92.3409 +448413,286.93,86.9191 +448414,287.25,88.6959 +448415,287.61,90.50692 +448416,288,92.3555 +448417,285.65,86.9448 +448418,285.93,88.7181 +448419,286.25,90.52495 +448420,286.6,92.3688 +448421,284.36,86.9719 +448422,284.61,88.7406 +448423,284.89,90.54249 +448424,285.2,92.3805 +448425,283.08,87.0003 +448426,283.28,88.7636 +448427,283.52,90.55952 +448428,283.8,92.3909 +448429,281.79,87.0301 +448430,281.96,88.7871 +448431,282.16,90.57606 +448432,282.4,92.3998 +448433,280.5,87.0612 +448434,280.64,88.811 +448435,280.8,90.59211 +448436,281,92.4072 +448437,279.22,87.0936 +448438,279.31,88.8353 +448439,279.44,90.60766 +448440,279.6,92.4133 +448441,277.93,87.1274 +448442,277.99,88.86 +448443,278.08,90.62273 +448444,278.2,92.4179 +448445,276.65,87.1626 +448446,276.67,88.8852 +448447,276.72,90.6373 +448448,276.8,92.4211 +448449,275.36,87.1991 +448450,275.34,88.9108 +448451,275.36,90.6514 +448452,275.4,92.4229 +448453,274.08,87.2369 +448454,274.02,88.9368 +448455,273.99,90.665 +448456,274,92.4234 +448457,272.79,87.276 +448458,272.7,88.9632 +448459,272.63,90.67813 +448460,272.6,92.4224 +448461,271.5,87.3164 +448462,271.37,88.9901 +448463,271.27,90.69078 +448464,271.2,92.4201 +448465,270.22,87.3581 +448466,270.05,89.01731 +448467,269.91,90.70296 +448468,269.8,92.4164 +448469,268.93,87.4011 +448470,268.73,89.04498 +448471,268.55,90.71467 +448472,268.4,92.4114 +448473,267.64,87.4454 +448474,267.4,89.07305 +448475,267.19,90.72591 +448476,267,92.4051 +448477,266.36,87.491 +448478,266.08,89.10153 +448479,265.82,90.73669 +448480,265.6,92.3974 +448481,265.07,87.5378 +448482,264.75,89.1304 +448483,264.46,90.74702 +448484,264.2,92.3884 +448485,263.78,87.5859 +448486,263.43,89.15966 +448487,263.1,90.75689 +448488,262.8,92.3782 +448489,262.49,87.6351 +448490,262.1,89.18931 +448491,261.74,90.76631 +448492,261.4,92.3666 +448493,261.2,87.6857 +448494,260.78,89.21934 +448495,260.38,90.77529 +448496,260,92.3539 +448497,259.92,87.7374 +448498,259.45,89.24975 +448499,259.02,90.78383 +448500,258.6,92.3398 +448501,258.63,87.7903 +448502,258.13,89.28053 +448503,257.65,90.79194 +448504,257.2,92.3246 +448505,257.34,87.8443 +448506,256.8,89.31168 +448507,256.29,90.79962 +448508,255.81,92.3081 +448509,256.05,87.8995 +448510,255.48,89.34319 +448511,254.93,90.80688 +448512,254.41,92.2905 +448513,254.76,87.9559 +448514,254.15,89.37506 +448515,253.57,90.81373 +448516,253.01,92.2717 +448517,253.46,88.0134 +448518,252.83,89.40727 +448519,252.21,90.82017 +448520,251.62,92.2517 +448521,252.17,88.072 +448522,251.5,89.43983 +448523,250.85,90.8262 +448524,250.22,92.2307 +448525,250.88,88.1317 +448526,250.18,89.47272 +448527,249.49,90.83184 +448528,248.82,92.2085 +448529,249.59,88.1924 +448530,248.85,89.50594 +448531,248.13,90.83709 +448532,247.43,92.1852 +448533,248.29,88.2542 +448534,247.52,89.53949 +448535,246.77,90.84196 +448536,246.04,92.1609 +448537,247,88.317 +448538,246.2,89.57334 +448539,245.41,90.84645 +448540,244.64,92.1355 +448541,245.7,88.3808 +448542,244.87,89.60751 +448543,244.05,90.85057 +448544,243.25,92.1092 +448545,244.41,88.4456 +448546,243.54,89.64198 +448547,242.69,90.85434 +448548,241.86,92.0818 +448549,243.11,88.5114 +448550,242.21,89.67674 +448551,241.33,90.85775 +448552,240.47,92.0535 +448553,241.81,88.5781 +448554,240.89,89.71178 +448555,239.97,90.86082 +448556,239.08,92.0242 +448557,240.52,88.6457 +448558,239.56,89.7471 +448559,238.61,90.86355 +448560,237.69,91.994 +448561,239.22,88.7142 +448562,238.23,89.78269 +448563,237.25,90.86595 +448564,236.3,91.9629 +448565,237.92,88.7835 +448566,236.9,89.81854 +448567,235.9,90.86803 +448568,234.91,91.9309 +448569,236.62,88.8537 +448570,235.57,89.85464 +448571,234.54,90.8698 +448572,233.52,91.8981 +448573,235.32,88.9248 +448574,234.24,89.89098 +448575,233.18,90.87127 +448576,232.13,91.8644 +448577,234.01,88.9966 +448578,232.91,89.927559 +448579,231.82,90.87244 +448580,230.75,91.83 +448581,232.71,89.06915 +448582,231.58,89.964361 +448583,230.47,90.87333 +448584,229.36,91.7948 +448585,231.41,89.14246 +448586,230.25,90.001378 +448587,229.11,90.87394 +448588,227.98,91.7589 +448589,230.1,89.21649 +448590,228.92,90.038602 +448591,227.75,90.87428 +448592,226.6,91.7223 +448593,228.8,89.29119 +448594,227.59,90.076023 +448595,226.39,90.87436 +448596,225.22,91.685 +448597,227.49,89.36655 +448598,226.26,90.11363 +448599,225.04,90.8742 +448600,223.84,91.647 +448601,226.18,89.44254 +448602,224.92,90.15142 +448603,223.68,90.8738 +448604,222.46,91.6084 +448605,224.87,89.51912 +448606,223.59,90.18937 +448607,222.33,90.87316 +448608,221.08,91.5693 +448609,223.56,89.59627 +448610,222.26,90.22748 +448611,220.97,90.87231 +448612,219.7,91.5295 +448613,222.25,89.67396 +448614,220.93,90.26574 +448615,219.62,90.87124 +448616,218.32,91.4892 +448617,220.94,89.75216 +448618,219.59,90.30414 +448619,218.26,90.86998 +448620,216.95,91.4484 +448621,219.62,89.83084 +448622,218.26,90.34267 +448623,216.91,90.86852 +448624,215.57,91.4072 +448625,218.31,89.909959 +448626,216.92,90.38131 +448627,215.55,90.86689 +448628,214.2,91.3655 +448629,216.99,89.989499 +448630,215.59,90.42006 +448631,214.2,90.86508 +448632,212.83,91.3233 +448633,215.68,90.069423 +448634,214.25,90.45891 +448635,212.85,90.86311 +448636,211.45,91.2808 +448637,214.36,90.1497 +448638,212.92,90.49784 +448639,211.49,90.86099 +448640,210.08,91.238 +448641,213.04,90.2303 +448642,211.58,90.53685 +448643,210.14,90.85874 +448644,208.71,91.1948 +448645,211.72,90.31119 +448646,210.25,90.57593 +448647,208.79,90.85635 +448648,207.35,91.1513 +448649,210.4,90.39234 +448650,208.91,90.61505 +448651,207.44,90.85384 +448652,205.98,91.1075 +448653,209.07,90.47372 +448654,207.57,90.65423 +448655,206.08,90.85123 +448656,204.61,91.0635 +448657,207.75,90.55528 +448658,206.23,90.69343 +448659,204.73,90.84852 +448660,203.25,91.0193 +448661,206.43,90.63701 +448662,204.9,90.73265 +448663,203.38,90.84572 +448664,201.89,90.97499 +448665,205.1,90.71886 +448666,203.56,90.77189 +448667,202.03,90.84284 +448668,200.52,90.9305 +448669,203.77,90.80081 +448670,202.22,90.81112 +448671,200.68,90.8399 +448672,199.16,90.88589 +448673,202.44,90.88282 +448674,200.88,90.85034 +448675,199.33,90.8369 +448676,197.8,90.84122 +448677,201.11,90.96485 +448678,199.54,90.88954 +448679,197.98,90.83385 +448680,196.45,90.79649 +448681,199.78,91.0469 +448682,198.2,90.92871 +448683,196.63,90.83077 +448684,195.09,90.75175 +448685,198.45,91.1289 +448686,196.86,90.96783 +448687,195.29,90.82767 +448688,193.73,90.70703 +448689,197.11,91.2108 +448690,195.52,91.0069 +448691,193.94,90.82455 +448692,192.38,90.66236 +448693,195.78,91.2926 +448694,194.17,91.0459 +448695,192.59,90.82143 +448696,191.02,90.61776 +448697,194.44,91.3743 +448698,192.83,91.0848 +448699,191.24,90.81831 +448700,189.67,90.57328 +448701,193.11,91.4557 +448702,191.49,91.1236 +448703,189.89,90.81522 +448704,188.32,90.52893 +448705,191.77,91.537 +448706,190.15,91.1624 +448707,188.55,90.81215 +448708,186.97,90.48476 +448709,190.43,91.6181 +448710,188.8,91.201 +448711,187.2,90.80912 +448712,185.62,90.4408 +448713,189.08,91.6988 +448714,187.46,91.2395 +448715,185.86,90.80614 +448716,184.28,90.39706 +448717,187.74,91.7793 +448718,186.11,91.2779 +448719,184.51,90.80322 +448720,182.93,90.35359 +448721,186.4,91.8594 +448722,184.77,91.3161 +448723,183.17,90.80038 +448724,181.59,90.31042 +448725,185.05,91.9391 +448726,183.42,91.3541 +448727,181.82,90.79761 +448728,180.24,90.26757 +448729,183.7,92.0184 +448730,182.08,91.392 +448731,180.48,90.79493 +448732,178.9,90.22507 +448733,182.36,92.0973 +448734,180.73,91.4298 +448735,179.13,90.79235 +448736,177.56,90.18296 +448737,181.01,92.1757 +448738,179.38,91.4673 +448739,177.79,90.78989 +448740,176.22,90.14126 +448741,179.65,92.2536 +448742,178.04,91.5046 +448743,176.45,90.78755 +448744,174.88,90.10001 +448745,178.3,92.331 +448746,176.69,91.5418 +448747,175.1,90.78533 +448748,173.54,90.059232 +448749,176.95,92.4078 +448750,175.34,91.5787 +448751,173.76,90.78326 +448752,172.21,90.018953 +448753,175.59,92.4839 +448754,173.99,91.6153 +448755,172.42,90.78134 +448756,170.87,89.979205 +448757,174.24,92.5595 +448758,172.64,91.6518 +448759,171.08,90.77958 +448760,169.54,89.940016 +448761,172.88,92.6343 +448762,171.29,91.688 +448763,169.74,90.77799 +448764,168.21,89.901415 +448765,171.52,92.7085 +448766,169.94,91.7239 +448767,168.39,90.77658 +448768,166.87,89.86343 +448769,170.16,92.7819 +448770,168.59,91.7596 +448771,167.05,90.77536 +448772,165.54,89.82608 +448773,168.8,92.8546 +448774,167.24,91.7949 +448775,165.71,90.77434 +448776,164.22,89.78941 +448777,167.44,92.9265 +448778,165.89,91.83 +448779,164.37,90.77353 +448780,162.89,89.75343 +448781,166.08,92.9975 +448782,164.54,91.8648 +448783,163.03,90.77293 +448784,161.56,89.71817 +448785,164.71,93.0677 +448786,163.19,91.8993 +448787,161.7,90.77256 +448788,160.24,89.68367 +448789,163.34,93.137 +448790,161.83,91.9335 +448791,160.36,90.77242 +448792,158.91,89.64994 +448793,161.98,93.2054 +448794,160.48,91.9673 +448795,159.02,90.77253 +448796,157.59,89.617 +448797,160.61,93.2729 +448798,159.13,92.0008 +448799,157.68,90.77288 +448800,156.27,89.5849 +448801,159.24,93.3394 +448802,157.77,92.0339 +448803,156.34,90.7735 +448804,154.94,89.55364 +448805,157.87,93.4049 +448806,156.42,92.0667 +448807,155.01,90.77438 +448808,153.62,89.52326 +448809,156.5,93.4694 +448810,155.06,92.0992 +448811,153.67,90.77555 +448812,152.3,89.49378 +448813,155.12,93.5328 +448814,153.71,92.1312 +448815,152.33,90.77699 +448816,150.99,89.46521 +448817,153.75,93.5952 +448818,152.35,92.1629 +448819,150.99,90.77873 +448820,149.67,89.43759 +448821,152.37,93.6565 +448822,151,92.1942 +448823,149.66,90.78077 +448824,148.35,89.41094 +448825,151,93.7166 +448826,149.64,92.2251 +448827,148.32,90.78311 +448828,147.04,89.38528 +448829,149.62,93.7756 +448830,148.28,92.2556 +448831,146.99,90.78577 +448832,145.72,89.36062 +448833,148.24,93.8334 +448834,146.93,92.2857 +448835,145.65,90.78875 +448836,144.41,89.337 +448837,146.86,93.8901 +448838,145.57,92.3154 +448839,144.32,90.79206 +448840,143.1,89.31442 +448841,145.48,93.9455 +448842,144.21,92.3446 +448843,142.98,90.7957 +448844,141.79,89.29292 +448845,144.1,93.9996 +448846,142.85,92.3734 +448847,141.65,90.79969 +448848,140.48,89.27251 +448849,142.71,94.0525 +448850,141.49,92.4018 +448851,140.31,90.80402 +448852,139.17,89.2532 +448853,141.33,94.1042 +448854,140.14,92.4297 +448855,138.98,90.80871 +448856,137.86,89.23503 +448857,139.95,94.1545 +448858,138.78,92.4572 +448859,137.65,90.81375 +448860,136.55,89.218 +448861,138.56,94.2035 +448862,137.42,92.4842 +448863,136.31,90.81917 +448864,135.24,89.20213 +448865,137.17,94.2512 +448866,136.06,92.5107 +448867,134.98,90.82495 +448868,133.94,89.18744 +448869,135.79,94.2975 +448870,134.7,92.5368 +448871,133.65,90.83111 +448872,132.63,89.17394 +448873,134.4,94.3424 +448874,133.34,92.5624 +448875,132.32,90.83766 +448876,131.33,89.16166 +448877,133.01,94.386 +448878,131.98,92.5875 +448879,130.98,90.84459 +448880,130.02,89.1506 +448881,131.62,94.4282 +448882,130.61,92.6121 +448883,129.65,90.85191 +448884,128.72,89.14078 +448885,130.23,94.4689 +448886,129.25,92.6363 +448887,128.32,90.85962 +448888,127.42,89.13221 +448889,128.84,94.5082 +448890,127.89,92.6599 +448891,126.99,90.86774 +448892,126.12,89.12491 +448893,127.44,94.546 +448894,126.53,92.683 +448895,125.66,90.87626 +448896,124.81,89.11888 +448897,126.05,94.5824 +448898,125.17,92.7057 +448899,124.32,90.8852 +448900,123.51,89.11415 +448901,124.66,94.6174 +448902,123.81,92.7278 +448903,122.99,90.89454 +448904,122.21,89.11072 +448905,123.26,94.6508 +448906,122.44,92.7494 +448907,121.66,90.9043 +448908,120.91,89.1086 +448909,121.87,94.6828 +448910,121.08,92.7705 +448911,120.33,90.91447 +448912,119.62,89.1078 +448913,120.47,94.7132 +448914,119.72,92.7911 +448915,119,90.92507 +448916,118.32,89.10833 +448917,119.08,94.7422 +448918,118.35,92.8112 +448919,117.67,90.93609 +448920,117.02,89.1102 +448921,117.68,94.7696 +448922,116.99,92.8307 +448923,116.34,90.94754 +448924,115.72,89.11342 +448925,116.28,94.7955 +448926,115.63,92.8497 +448927,115.01,90.95942 +448928,114.42,89.11799 +448929,114.88,94.8199 +448930,114.26,92.8682 +448931,113.68,90.97173 +448932,113.13,89.12392 +448933,113.48,94.8428 +448934,112.9,92.8861 +448935,112.35,90.98447 +448936,111.83,89.13121 +448937,112.09,94.8641 +448938,111.53,92.9035 +448939,111.02,90.99764 +448940,110.53,89.13988 +448941,110.69,94.8838 +448942,110.17,92.9204 +448943,109.69,91.0113 +448944,109.24,89.14993 +448945,109.29,94.9021 +448946,108.81,92.9368 +448947,108.36,91.0253 +448948,107.94,89.16135 +448949,107.89,94.9187 +448950,107.44,92.9526 +448951,107.03,91.0398 +448952,106.65,89.17416 +448953,106.49,94.9339 +448954,106.08,92.9679 +448955,105.7,91.0547 +448956,105.35,89.18835 +448957,105.09,94.9475 +448958,104.71,92.9826 +448959,104.37,91.0701 +448960,104.06,89.20393 +448961,103.69,94.9595 +448962,103.35,92.9968 +448963,103.04,91.0859 +448964,102.76,89.22089 +448965,102.28,94.97 +448966,101.98,93.0105 +448967,101.71,91.1021 +448968,101.47,89.23924 +448969,100.88,94.979 +448970,100.62,93.0236 +448971,100.38,91.1188 +448972,100.17,89.25898 +448973,99.481,94.9864 +448974,99.25,93.0362 +448975,99.051,91.1359 +448976,98.878,89.28011 +448977,98.079,94.9923 +448978,97.885,93.0482 +448979,97.721,91.1534 +448980,97.584,89.30262 +448981,96.677,94.9966 +448982,96.519,93.0598 +448983,96.391,91.1714 +448984,96.29,89.32651 +448985,95.275,94.9995 +448986,95.154,93.0708 +448987,95.062,91.1898 +448988,94.995,89.35178 +448989,93.873,95.0008 +448990,93.788,93.0812 +448991,93.732,91.2087 +448992,93.701,89.37843 +448993,92.471,95.0006 +448994,92.423,93.0912 +448995,92.402,91.228 +448996,92.407,89.40644 +448997,91.069,94.9989 +448998,91.057,93.1006 +448999,91.073,91.2477 +449000,91.112,89.43582 +449001,89.667,94.9957 +449002,89.692,93.1095 +449003,89.743,91.2678 +449004,89.818,89.46656 +449005,88.265,94.991 +449006,88.326,93.1178 +449007,88.413,91.2884 +449008,88.523,89.49865 +449009,86.863,94.9849 +449010,86.96,93.1257 +449011,87.083,91.3094 +449012,87.228,89.53208 +449013,85.461,94.9773 +449014,85.595,93.133 +449015,85.753,91.3307 +449016,85.933,89.56685 +449017,84.06,94.9682 +449018,84.229,93.1398 +449019,84.423,91.3526 +449020,84.638,89.60294 +449021,82.658,94.9577 +449022,82.864,93.1461 +449023,83.093,91.3748 +449024,83.342,89.64036 +449025,81.257,94.9458 +449026,81.498,93.152 +449027,81.762,91.3974 +449028,82.047,89.67908 +449029,79.856,94.9324 +449030,80.133,93.1573 +449031,80.432,91.4204 +449032,80.751,89.7191 +449033,78.455,94.9177 +449034,78.768,93.1621 +449035,79.101,91.4439 +449036,79.454,89.7604 +449037,77.055,94.9016 +449038,77.403,93.1664 +449039,77.771,91.4677 +449040,78.158,89.80298 +449041,75.655,94.8841 +449042,76.037,93.1702 +449043,76.44,91.4919 +449044,76.86,89.84682 +449045,74.255,94.8653 +449046,74.672,93.1736 +449047,75.109,91.5165 +449048,75.563,89.8919 +449049,72.856,94.8452 +449050,73.307,93.1765 +449051,73.778,91.5415 +449052,74.265,89.938214 +449053,71.457,94.8237 +449054,71.942,93.1789 +449055,72.446,91.5668 +449056,72.967,89.985747 +449057,70.058,94.801 +449058,70.578,93.1808 +449059,71.115,91.5925 +449060,71.668,90.034481 +449061,68.66,94.7769 +449062,69.213,93.1823 +449063,69.783,91.6186 +449064,70.368,90.084402 +449065,67.263,94.7517 +449066,67.849,93.1834 +449067,68.451,91.645 +449068,69.068,90.13549 +449069,65.866,94.7252 +449070,66.484,93.184 +449071,67.119,91.6718 +449072,67.768,90.18773 +449073,64.469,94.6974 +449074,65.12,93.1841 +449075,65.786,91.699 +449076,66.467,90.24111 +449077,63.073,94.6685 +449078,63.756,93.1838 +449079,64.454,91.7264 +449080,65.165,90.2956 +449081,61.678,94.6385 +449082,62.392,93.1831 +449083,63.121,91.7542 +449084,63.863,90.35118 +449085,60.283,94.6072 +449086,61.029,93.182 +449087,61.788,91.7824 +449088,62.56,90.40784 +449089,58.889,94.5749 +449090,59.665,93.1805 +449091,60.455,91.8108 +449092,61.256,90.46556 +449093,57.496,94.5415 +449094,58.302,93.1785 +449095,59.121,91.8395 +449096,59.952,90.52431 +449097,56.103,94.507 +449098,56.939,93.1762 +449099,57.787,91.8686 +449100,58.647,90.58408 +449101,54.711,94.4714 +449102,55.576,93.1735 +449103,56.453,91.8979 +449104,57.341,90.64483 +449105,53.32,94.4349 +449106,54.214,93.1704 +449107,55.119,91.9276 +449108,56.035,90.70656 +449109,51.929,94.3973 +449110,52.851,93.1669 +449111,53.784,91.9575 +449112,54.728,90.76923 +449113,50.54,94.3588 +449114,51.489,93.1631 +449115,52.449,91.9877 +449116,53.419,90.83282 +449117,49.151,94.3193 +449118,50.127,93.1589 +449119,51.114,92.0181 +449120,52.11,90.8973 +449121,47.763,94.2789 +449122,48.766,93.1543 +449123,49.779,92.0488 +449124,50.801,90.96266 +449125,46.376,94.2376 +449126,47.404,93.1495 +449127,48.443,92.0797 +449128,49.49,91.0289 +449129,44.989,94.1955 +449130,46.043,93.1443 +449131,47.106,92.1109 +449132,48.178,91.0959 +449133,43.604,94.1526 +449134,44.682,93.1388 +449135,45.77,92.1423 +449136,46.866,91.1637 +449137,42.22,94.1088 +449138,43.322,93.1329 +449139,44.433,92.1739 +449140,45.553,91.2323 +449141,40.836,94.0643 +449142,41.961,93.1268 +449143,43.096,92.2057 +449144,44.238,91.3016 +449145,39.453,94.019 +449146,40.601,93.1204 +449147,41.758,92.2377 +449148,42.923,91.3717 +449149,38.072,93.973 +449150,39.242,93.1137 +449151,40.421,92.2699 +449152,41.607,91.4424 +449153,36.691,93.9264 +449154,37.882,93.1067 +449155,39.082,92.3023 +449156,40.29,91.5138 +449157,35.311,93.879 +449158,36.523,93.0995 +449159,37.744,92.3348 +449160,38.971,91.5858 +449161,33.933,93.8311 +449162,35.165,93.092 +449163,36.405,92.3675 +449164,37.652,91.6584 +449165,32.555,93.7826 +449166,33.806,93.0843 +449167,35.065,92.4004 +449168,36.332,91.7316 +449169,31.179,93.7335 +449170,32.448,93.0764 +449171,33.726,92.4334 +449172,35.01,91.8053 +449173,29.803,93.6839 +449174,31.09,93.0682 +449175,32.386,92.4665 +449176,33.688,91.8796 +449177,28.429,93.6337 +449178,29.733,93.0598 +449179,31.045,92.4997 +449180,32.365,91.9543 +449181,27.055,93.5832 +449182,28.376,93.0513 +449183,29.704,92.5331 +449184,31.04,92.0294 +449185,25.683,93.5321 +449186,27.019,93.0425 +449187,28.363,92.5665 +449188,29.714,92.105 +449189,24.312,93.4807 +449190,25.662,93.0335 +449191,27.021,92.6 +449192,28.387,92.1809 +449193,22.942,93.4289 +449194,24.306,93.0244 +449195,25.679,92.6336 +449196,27.059,92.2573 +449197,21.573,93.3768 +449198,22.951,93.0152 +449199,24.337,92.6673 +449200,25.73,92.3339 +449201,20.205,93.3244 +449202,21.595,93.0058 +449203,22.994,92.701 +449204,24.4,92.4108 +449205,18.839,93.2717 +449206,20.24,92.9962 +449207,21.651,92.7347 +449208,23.069,92.488 +449209,17.473,93.2188 +449210,18.886,92.9865 +449211,20.307,92.7685 +449212,21.736,92.5653 +449213,16.109,93.1656 +449214,17.531,92.9768 +449215,18.963,92.8023 +449216,20.402,92.6429 +449217,14.746,93.1123 +449218,16.177,92.9669 +449219,17.618,92.8361 +449220,19.067,92.7207 +449221,13.384,93.0588 +449222,14.824,92.9569 +449223,16.274,92.8699 +449224,17.731,92.7985 +449225,12.023,93.0053 +449226,13.471,92.9468 +449227,14.928,92.9037 +449228,16.394,92.8764 +449229,10.663,92.9516 +449230,12.118,92.9367 +449231,13.582,92.9374 +449232,15.055,92.9544 +449233,9.3048,92.8979 +449234,10.765,92.9265 +449235,12.236,92.9711 +449236,13.716,93.0325 +449237,7.9475,92.8442 +449238,9.4134,92.9163 +449239,10.89,93.0048 +449240,12.375,93.1105 +449241,6.5915,92.7905 +449242,8.0617,92.906 +449243,9.5425,93.0384 +449244,11.033,93.1884 +449245,5.2366,92.7369 +449246,6.7104,92.8957 +449247,8.195,93.072 +449248,9.6892,93.2663 +449249,3.883,92.6834 +449250,5.3595,92.8854 +449251,6.847,93.1054 +449252,8.3446,93.344 +449253,2.5305,92.6299 +449254,4.0089,92.8751 +449255,5.4987,93.1388 +449256,6.9987,93.4216 +449257,1.1793,92.5766 +449258,2.6588,92.8648 +449259,4.1499,93.172 +449260,5.6517,93.4991 +449261,359.83,92.5236 +449262,1.309,92.8545 +449263,2.8007,93.2052 +449264,4.3034,93.5763 +449265,358.48,92.4707 +449266,359.96,92.8443 +449267,1.451,93.2382 +449268,2.9538,93.6532 +449269,357.13,92.418 +449270,358.61,92.834 +449271,0.10095,93.271 +449272,1.603,93.7298 +449273,355.79,92.3657 +449274,357.26,92.8239 +449275,358.75,93.3037 +449276,0.25104,93.8062 +449277,354.44,92.3136 +449278,355.91,92.8138 +449279,357.4,93.3363 +449280,358.9,93.8822 +449281,353.1,92.2619 +449282,354.57,92.8037 +449283,356.05,93.3687 +449284,357.54,93.9577 +449285,351.75,92.2105 +449286,353.22,92.7938 +449287,354.7,93.4009 +449288,356.19,94.0329 +449289,350.41,92.1596 +449290,351.87,92.7839 +449291,353.34,93.4329 +449292,354.83,94.1076 +449293,349.07,92.1091 +449294,350.52,92.7742 +449295,351.99,93.4647 +449296,353.47,94.1818 +449297,347.73,92.059 +449298,349.18,92.7645 +449299,350.64,93.4962 +449300,352.11,94.2555 +449301,346.39,92.0095 +449302,347.83,92.755 +449303,349.28,93.5276 +449304,350.75,94.3286 +449305,345.06,91.9604 +449306,346.49,92.7457 +449307,347.93,93.5587 +449308,349.39,94.4011 +449309,343.72,91.9119 +449310,345.14,92.7364 +449311,346.58,93.5895 +449312,348.03,94.473 +449313,342.39,91.864 +449314,343.8,92.7273 +449315,345.22,93.6201 +449316,346.66,94.5443 +449317,341.05,91.8167 +449318,342.45,92.7184 +449319,343.87,93.6505 +449320,345.3,94.6148 +449321,339.72,91.77 +449322,341.11,92.7097 +449323,342.51,93.6805 +449324,343.93,94.6847 +449325,338.39,91.724 +449326,339.76,92.7011 +449327,341.16,93.7103 +449328,342.56,94.7537 +449329,337.06,91.6787 +449330,338.42,92.6928 +449331,339.8,93.7397 +449332,341.2,94.822 +449333,335.73,91.6341 +449334,337.08,92.6846 +449335,338.44,93.7689 +449336,339.83,94.8895 +449337,334.4,91.5903 +449338,335.73,92.6767 +449339,337.09,93.7977 +449340,338.45,94.9561 +449341,333.07,91.5472 +449342,334.39,92.6689 +449343,335.73,93.8262 +449344,337.08,95.0219 +449345,331.75,91.5049 +449346,333.05,92.6614 +449347,334.37,93.8543 +449348,335.71,95.0867 +449349,330.42,91.4635 +449350,331.71,92.6542 +449351,333.01,93.8821 +449352,334.33,95.1506 +449353,329.1,91.4229 +449354,330.37,92.6472 +449355,331.65,93.9096 +449356,332.96,95.2135 +449357,327.78,91.3832 +449358,329.03,92.6404 +449359,330.29,93.9366 +449360,331.58,95.2754 +449361,326.45,91.3443 +449362,327.68,92.6339 +449363,328.93,93.9633 +449364,330.2,95.3363 +449365,325.13,91.3064 +449366,326.34,92.6277 +449367,327.57,93.9896 +449368,328.83,95.3962 +449369,323.81,91.2695 +449370,325,92.6218 +449371,326.21,94.0156 +449372,327.45,95.4549 +449373,322.49,91.2335 +449374,323.66,92.6161 +449375,324.85,94.0411 +449376,326.07,95.5126 +449377,321.17,91.1985 +449378,322.32,92.6108 +449379,323.49,94.0662 +449380,324.68,95.5691 +449381,319.86,91.1645 +449382,320.98,92.6058 +449383,322.13,94.0908 +449384,323.3,95.6245 +449385,318.54,91.1316 +449386,319.65,92.601 +449387,320.77,94.1151 +449388,321.92,95.6787 +449389,317.22,91.0997 +449390,318.31,92.5966 +449391,319.41,94.1389 +449392,320.53,95.7316 +449393,315.91,91.0689 +449394,316.97,92.5925 +449395,318.05,94.1623 +449396,319.15,95.7834 +449397,314.6,91.0392 +449398,315.63,92.5888 +449399,316.68,94.1852 +449400,317.76,95.8338 +449401,313.28,91.0106 +449402,314.29,92.5854 +449403,315.32,94.2076 +449404,316.37,95.883 +449405,311.97,90.98311 +449406,312.95,92.5823 +449407,313.96,94.2296 +449408,314.99,95.9309 +449409,310.66,90.9568 +449410,311.62,92.5796 +449411,312.6,94.2512 +449412,313.6,95.9775 +449413,309.35,90.93166 +449414,310.28,92.5773 +449415,311.23,94.2722 +449416,312.21,96.0227 +449417,308.04,90.90771 +449418,308.94,92.5753 +449419,309.87,94.2928 +449420,310.82,96.0665 +449421,306.73,90.88497 +449422,307.61,92.5737 +449423,308.5,94.3128 +449424,309.42,96.109 +449425,305.42,90.86345 +449426,306.27,92.5724 +449427,307.14,94.3324 +449428,308.03,96.1501 +449429,304.11,90.84316 +449430,304.93,92.5716 +449431,305.77,94.3515 +449432,306.64,96.1897 +449433,302.8,90.82412 +449434,303.6,92.5711 +449435,304.41,94.37 +449436,305.25,96.2279 +449437,301.5,90.80634 +449438,302.26,92.571 +449439,303.04,94.3881 +449440,303.85,96.2647 +449441,300.19,90.78985 +449442,300.92,92.5713 +449443,301.68,94.4056 +449444,302.46,96.2999 +449445,298.88,90.77464 +449446,299.59,92.572 +449447,300.31,94.4226 +449448,301.06,96.3337 +449449,297.58,90.76074 +449450,298.25,92.5732 +449451,298.95,94.4391 +449452,299.66,96.366 +449453,296.27,90.74815 +449454,296.92,92.5747 +449455,297.58,94.4551 +449456,298.27,96.3968 +449457,294.97,90.73688 +449458,295.58,92.5766 +449459,296.22,94.4705 +449460,296.87,96.4261 +449461,293.67,90.72695 +449462,294.25,92.579 +449463,294.85,94.4854 +449464,295.47,96.4538 +449465,292.36,90.71836 +449466,292.91,92.5817 +449467,293.48,94.4997 +449468,294.07,96.48 +449469,291.06,90.71113 +449470,291.58,92.5849 +449471,292.12,94.5135 +449472,292.68,96.5046 +449473,289.76,90.70526 +449474,290.24,92.5886 +449475,290.75,94.5267 +449476,291.28,96.5276 +449477,288.45,90.70075 +449478,288.91,92.5926 +449479,289.38,94.5394 +449480,289.88,96.5491 +449481,287.15,90.69762 +449482,287.57,92.5971 +449483,288.01,94.5515 +449484,288.48,96.569 +449485,285.85,90.69588 +449486,286.24,92.602 +449487,286.65,94.5631 +449488,287.08,96.5873 +449489,284.55,90.69552 +449490,284.91,92.6073 +449491,285.28,94.5741 +449492,285.68,96.604 +449493,283.25,90.69655 +449494,283.57,92.6131 +449495,283.91,94.5846 +449496,284.27,96.6191 +449497,281.95,90.69897 +449498,282.24,92.6193 +449499,282.54,94.5945 +449500,282.87,96.6326 +449501,280.65,90.7028 +449502,280.9,92.6259 +449503,281.18,94.6038 +449504,281.47,96.6444 +449505,279.34,90.70803 +449506,279.57,92.633 +449507,279.81,94.6126 +449508,280.07,96.6547 +449509,278.04,90.71466 +449510,278.24,92.6405 +449511,278.44,94.6208 +449512,278.67,96.6634 +449513,276.74,90.72269 +449514,276.9,92.6484 +449515,277.07,94.6285 +449516,277.26,96.6704 +449517,275.44,90.73213 +449518,275.57,92.6568 +449519,275.71,94.6356 +449520,275.86,96.6759 +449521,274.14,90.74298 +449522,274.23,92.6657 +449523,274.34,94.6421 +449524,274.46,96.6797 +449525,272.84,90.75523 +449526,272.9,92.6749 +449527,272.97,94.648 +449528,273.06,96.682 +449529,271.54,90.76888 +449530,271.57,92.6846 +449531,271.6,94.6534 +449532,271.65,96.6826 +449533,270.24,90.78394 +449534,270.23,92.6948 +449535,270.23,94.6583 +449536,270.25,96.6816 +449537,268.94,90.80039 +449538,268.9,92.7053 +449539,268.86,94.6625 +449540,268.85,96.679 +449541,267.64,90.81823 +449542,267.56,92.7163 +449543,267.5,94.6662 +449544,267.45,96.6749 +449545,266.34,90.83746 +449546,266.23,92.7278 +449547,266.13,94.6694 +449548,266.04,96.6691 +449549,265.04,90.85808 +449550,264.89,92.7396 +449551,264.76,94.672 +449552,264.64,96.6618 +449553,263.74,90.88008 +449554,263.56,92.7519 +449555,263.39,94.674 +449556,263.24,96.6529 +449557,262.44,90.90345 +449558,262.23,92.7646 +449559,262.02,94.6755 +449560,261.84,96.6424 +449561,261.14,90.92818 +449562,260.89,92.7778 +449563,260.66,94.6765 +449564,260.43,96.6304 +449565,259.84,90.95427 +449566,259.56,92.7913 +449567,259.29,94.6769 +449568,259.03,96.6169 +449569,258.54,90.98171 +449570,258.22,92.8053 +449571,257.92,94.6768 +449572,257.63,96.6018 +449573,257.23,91.0105 +449574,256.89,92.8197 +449575,256.55,94.6761 +449576,256.23,96.5852 +449577,255.93,91.0406 +449578,255.55,92.8345 +449579,255.19,94.6749 +449580,254.83,96.5671 +449581,254.63,91.072 +449582,254.22,92.8497 +449583,253.82,94.6732 +449584,253.43,96.5476 +449585,253.33,91.1048 +449586,252.88,92.8653 +449587,252.45,94.6709 +449588,252.03,96.5265 +449589,252.02,91.1388 +449590,251.55,92.8813 +449591,251.08,94.6681 +449592,250.63,96.504 +449593,250.72,91.1741 +449594,250.21,92.8977 +449595,249.72,94.6648 +449596,249.23,96.48 +449597,249.41,91.2107 +449598,248.88,92.9144 +449599,248.35,94.661 +449600,247.83,96.4546 +449601,248.11,91.2485 +449602,247.54,92.9316 +449603,246.98,94.6567 +449604,246.43,96.4278 +449605,246.8,91.2876 +449606,246.21,92.9491 +449607,245.61,94.6519 +449608,245.03,96.3997 +449609,245.5,91.3279 +449610,244.87,92.9671 +449611,244.25,94.6466 +449612,243.63,96.3701 +449613,244.19,91.3694 +449614,243.53,92.9853 +449615,242.88,94.6408 +449616,242.24,96.3392 +449617,242.89,91.4121 +449618,242.2,93.004 +449619,241.51,94.6345 +449620,240.84,96.307 +449621,241.58,91.456 +449622,240.86,93.023 +449623,240.15,94.6278 +449624,239.44,96.2734 +449625,240.27,91.501 +449626,239.52,93.0423 +449627,238.78,94.6205 +449628,238.05,96.2386 +449629,238.96,91.5472 +449630,238.19,93.062 +449631,237.42,94.6129 +449632,236.65,96.2025 +449633,237.65,91.5945 +449634,236.85,93.082 +449635,236.05,94.6047 +449636,235.26,96.1651 +449637,236.34,91.6429 +449638,235.51,93.1023 +449639,234.69,94.5961 +449640,233.87,96.1265 +449641,235.03,91.6924 +449642,234.17,93.123 +449643,233.32,94.5871 +449644,232.47,96.0868 +449645,233.72,91.743 +449646,232.84,93.144 +449647,231.96,94.5777 +449648,231.08,96.0458 +449649,232.41,91.7946 +449650,231.5,93.1653 +449651,230.59,94.5678 +449652,229.69,96.0037 +449653,231.09,91.8472 +449654,230.16,93.1869 +449655,229.23,94.5575 +449656,228.3,95.9605 +449657,229.78,91.9008 +449658,228.82,93.2087 +449659,227.86,94.5468 +449660,226.91,95.9162 +449661,228.47,91.9554 +449662,227.48,93.2309 +449663,226.5,94.5357 +449664,225.52,95.8708 +449665,227.15,92.0109 +449666,226.14,93.2533 +449667,225.13,94.5241 +449668,224.13,95.8244 +449669,225.83,92.0674 +449670,224.8,93.276 +449671,223.77,94.5123 +449672,222.74,95.777 +449673,224.52,92.1248 +449674,223.46,93.299 +449675,222.41,94.5 +449676,221.36,95.7286 +449677,223.2,92.183 +449678,222.12,93.3222 +449679,221.05,94.4874 +449680,219.97,95.6792 +449681,221.88,92.2421 +449682,220.78,93.3456 +449683,219.68,94.4744 +449684,218.59,95.6289 +449685,220.56,92.302 +449686,219.44,93.3693 +449687,218.32,94.4611 +449688,217.2,95.5777 +449689,219.24,92.3627 +449690,218.1,93.3932 +449691,216.96,94.4474 +449692,215.82,95.5256 +449693,217.92,92.4242 +449694,216.76,93.4173 +449695,215.6,94.4334 +449696,214.44,95.4727 +449697,216.59,92.4864 +449698,215.41,93.4416 +449699,214.24,94.4191 +449700,213.06,95.419 +449701,215.27,92.5494 +449702,214.07,93.4661 +449703,212.87,94.4045 +449704,211.68,95.3645 +449705,213.95,92.613 +449706,212.73,93.4908 +449707,211.51,94.3896 +449708,210.3,95.3092 +449709,212.62,92.6773 +449710,211.39,93.5157 +449711,210.15,94.3744 +449712,208.92,95.2533 +449713,211.29,92.7423 +449714,210.04,93.5407 +449715,208.79,94.3589 +449716,207.55,95.1966 +449717,209.96,92.8078 +449718,208.7,93.5659 +449719,207.43,94.3431 +449720,206.17,95.1393 +449721,208.64,92.8739 +449722,207.35,93.5912 +449723,206.07,94.3271 +449724,204.8,95.0814 +449725,207.31,92.9406 +449726,206.01,93.6167 +449727,204.72,94.3109 +449728,203.42,95.0229 +449729,205.98,93.0077 +449730,204.67,93.6423 +449731,203.36,94.2944 +449732,202.05,94.9638 +449733,204.64,93.0754 +449734,203.32,93.668 +449735,202,94.2777 +449736,200.68,94.9042 +449737,203.31,93.1435 +449738,201.97,93.6938 +449739,200.64,94.2608 +449740,199.31,94.8442 +449741,201.98,93.212 +449742,200.63,93.7196 +449743,199.28,94.2436 +449744,197.94,94.7836 +449745,200.64,93.2809 +449746,199.28,93.7456 +449747,197.93,94.2263 +449748,196.57,94.7227 +449749,199.3,93.3501 +449750,197.94,93.7716 +449751,196.57,94.2088 +449752,195.2,94.6613 +449753,197.97,93.4197 +449754,196.59,93.7977 +449755,195.21,94.1911 +449756,193.84,94.5996 +449757,196.63,93.4896 +449758,195.24,93.8239 +449759,193.86,94.1733 +449760,192.47,94.5376 +449761,195.29,93.5597 +449762,193.89,93.85 +449763,192.5,94.1553 +449764,191.11,94.4753 +449765,193.95,93.6301 +449766,192.54,93.8762 +449767,191.15,94.1372 +449768,189.75,94.4127 +449769,192.6,93.7006 +449770,191.2,93.9025 +449771,189.79,94.119 +449772,188.39,94.3499 +449773,191.26,93.7714 +449774,189.85,93.9287 +449775,188.44,94.1006 +449776,187.03,94.2869 +449777,189.92,93.8422 +449778,188.5,93.9549 +449779,187.08,94.0822 +449780,185.67,94.2238 +449781,188.57,93.9131 +449782,187.15,93.9811 +449783,185.73,94.0636 +449784,184.31,94.1606 +449785,187.22,93.9841 +449786,185.8,94.0072 +449787,184.37,94.045 +449788,182.95,94.0972 +449789,185.87,94.0551 +449790,184.45,94.0333 +449791,183.02,94.0263 +449792,181.6,94.0338 +449793,184.52,94.1261 +449794,183.1,94.0594 +449795,181.67,94.0075 +449796,180.25,93.9704 +449797,183.17,94.1971 +449798,181.74,94.0854 +449799,180.32,93.9887 +449800,178.89,93.907 +449801,181.82,94.268 +449802,180.39,94.1113 +449803,178.96,93.9699 +449804,177.54,93.8436 +449805,180.47,94.3388 +449806,179.04,94.1371 +449807,177.61,93.951 +449808,176.19,93.7804 +449809,179.12,94.4094 +449810,177.69,94.1628 +449811,176.26,93.9321 +449812,174.84,93.7172 +449813,177.76,94.4798 +449814,176.33,94.1884 +449815,174.91,93.9133 +449816,173.49,93.6542 +449817,176.4,94.5501 +449818,174.98,94.2139 +449819,173.56,93.8944 +449820,172.15,93.5914 +449821,175.05,94.62 +449822,173.63,94.2393 +449823,172.21,93.8755 +449824,170.8,93.5287 +449825,173.69,94.6897 +449826,172.27,94.2645 +449827,170.86,93.8567 +449828,169.46,93.4664 +449829,172.33,94.7591 +449830,170.92,94.2895 +449831,169.51,93.8379 +449832,168.11,93.4043 +449833,170.97,94.8282 +449834,169.56,94.3144 +449835,168.16,93.8192 +449836,166.77,93.3425 +449837,169.6,94.8968 +449838,168.21,94.3391 +449839,166.82,93.8006 +449840,165.43,93.281 +449841,168.24,94.965 +449842,166.85,94.3636 +449843,165.47,93.782 +449844,164.09,93.2199 +449845,166.88,95.0328 +449846,165.5,94.3879 +449847,164.12,93.7635 +449848,162.75,93.1593 +449849,165.51,95.1001 +449850,164.14,94.412 +449851,162.77,93.7451 +449852,161.41,93.099 +449853,164.14,95.1669 +449854,162.78,94.4359 +449855,161.43,93.7268 +449856,160.07,93.0393 +449857,162.77,95.2331 +449858,161.42,94.4595 +449859,160.08,93.7087 +449860,158.74,92.98 +449861,161.41,95.2987 +449862,160.07,94.4829 +449863,158.73,93.6906 +449864,157.4,92.9212 +449865,160.03,95.3637 +449866,158.71,94.5061 +449867,157.39,93.6727 +449868,156.07,92.863 +449869,158.66,95.428 +449870,157.35,94.5289 +449871,156.04,93.655 +449872,154.74,92.8054 +449873,157.29,95.4917 +449874,155.99,94.5515 +449875,154.7,93.6374 +449876,153.41,92.7484 +449877,155.92,95.5546 +449878,154.63,94.5738 +449879,153.35,93.6199 +449880,152.08,92.6921 +449881,154.54,95.6168 +449882,153.27,94.5958 +449883,152.01,93.6027 +449884,150.75,92.6364 +449885,153.17,95.6782 +449886,151.91,94.6175 +449887,150.66,93.5856 +449888,149.42,92.5815 +449889,151.79,95.7388 +449890,150.55,94.6389 +449891,149.32,93.5688 +449892,148.09,92.5272 +449893,150.41,95.7986 +449894,149.19,94.66 +449895,147.98,93.5521 +449896,146.77,92.4737 +449897,149.03,95.8575 +449898,147.83,94.6807 +449899,146.63,93.5357 +449900,145.44,92.421 +449901,147.65,95.9154 +449902,146.47,94.701 +449903,145.29,93.5195 +449904,144.12,92.3692 +449905,146.27,95.9725 +449906,145.11,94.721 +449907,143.95,93.5035 +449908,142.79,92.3181 +449909,144.89,96.0286 +449910,143.74,94.7407 +449911,142.61,93.4878 +449912,141.47,92.2679 +449913,143.51,96.0836 +449914,142.38,94.7599 +449915,141.26,93.4723 +449916,140.15,92.2186 +449917,142.12,96.1377 +449918,141.02,94.7788 +449919,139.92,93.4571 +449920,138.83,92.1702 +449921,140.74,96.1907 +449922,139.66,94.7973 +449923,138.58,93.4422 +449924,137.51,92.1227 +449925,139.35,96.2426 +449926,138.29,94.8154 +449927,137.24,93.4275 +449928,136.19,92.0762 +449929,137.97,96.2934 +449930,136.93,94.8331 +449931,135.9,93.4132 +449932,134.87,92.0307 +449933,136.58,96.3431 +449934,135.57,94.8503 +449935,134.56,93.3991 +449936,133.56,91.9862 +449937,135.19,96.3916 +449938,134.2,94.8671 +449939,133.22,93.3853 +449940,132.24,91.9427 +449941,133.8,96.439 +449942,132.84,94.8835 +449943,131.88,93.3718 +449944,130.93,91.9003 +449945,132.41,96.4851 +449946,131.47,94.8995 +449947,130.54,93.3587 +449948,129.61,91.8589 +449949,131.02,96.53 +449950,130.11,94.915 +449951,129.2,93.3459 +449952,128.3,91.8187 +449953,129.63,96.5736 +449954,128.74,94.93 +449955,127.86,93.3334 +449956,126.98,91.7795 +449957,128.24,96.616 +449958,127.38,94.9446 +449959,126.52,93.3212 +449960,125.67,91.7414 +449961,126.85,96.657 +449962,126.01,94.9587 +449963,125.18,93.3094 +449964,124.36,91.7046 +449965,125.45,96.6967 +449966,124.65,94.9723 +449967,123.85,93.2979 +449968,123.05,91.6688 +449969,124.06,96.7351 +449970,123.28,94.9854 +449971,122.51,93.2868 +449972,121.74,91.6343 +449973,122.66,96.7721 +449974,121.91,94.9981 +449975,121.17,93.2761 +449976,120.43,91.6009 +449977,121.27,96.8077 +449978,120.55,95.0102 +449979,119.83,93.2657 +449980,119.12,91.5688 +449981,119.87,96.8419 +449982,119.18,95.0218 +449983,118.49,93.2557 +449984,117.81,91.5379 +449985,118.47,96.8747 +449986,117.81,95.033 +449987,117.16,93.2461 +449988,116.5,91.5083 +449989,117.08,96.906 +449990,116.45,95.0436 +449991,115.82,93.2369 +449992,115.2,91.4799 +449993,115.68,96.9359 +449994,115.08,95.0537 +449995,114.48,93.2281 +449996,113.89,91.4528 +449997,114.28,96.9642 +449998,113.71,95.0632 +449999,113.15,93.2196 +450000,112.58,91.427 +450001,112.88,96.9911 +450002,112.34,95.0722 +450003,111.81,93.2116 +450004,111.28,91.4025 +450005,111.48,97.0165 +450006,110.98,95.0807 +450007,110.47,93.2039 +450008,109.97,91.3793 +450009,110.08,97.0404 +450010,109.61,95.0887 +450011,109.14,93.1967 +450012,108.67,91.3574 +450013,108.68,97.0627 +450014,108.24,95.0961 +450015,107.8,93.1899 +450016,107.36,91.3368 +450017,107.28,97.0835 +450018,106.87,95.103 +450019,106.46,93.1834 +450020,106.06,91.3176 +450021,105.88,97.1027 +450022,105.5,95.1093 +450023,105.13,93.1775 +450024,104.75,91.2998 +450025,104.48,97.1203 +450026,104.14,95.115 +450027,103.79,93.1719 +450028,103.45,91.2833 +450029,103.08,97.1364 +450030,102.77,95.1202 +450031,102.46,93.1667 +450032,102.15,91.2682 +450033,101.68,97.1509 +450034,101.4,95.1249 +450035,101.12,93.162 +450036,100.84,91.2545 +450037,100.28,97.1638 +450038,100.03,95.129 +450039,99.785,93.1577 +450040,99.541,91.2421 +450041,98.873,97.175 +450042,98.661,95.1325 +450043,98.449,93.1538 +450044,98.238,91.2312 +450045,97.471,97.1847 +450046,97.292,95.1354 +450047,97.114,93.1504 +450048,96.936,91.2216 +450049,96.068,97.1927 +450050,95.923,95.1378 +450051,95.778,93.1474 +450052,95.633,91.2134 +450053,94.665,97.1991 +450054,94.554,95.1396 +450055,94.443,93.1448 +450056,94.331,91.2067 +450057,93.263,97.2039 +450058,93.185,95.1408 +450059,93.108,93.1427 +450060,93.029,91.2013 +450061,91.86,97.2071 +450062,91.817,95.1415 +450063,91.772,93.141 +450064,91.727,91.1974 +450065,90.457,97.2086 +450066,90.448,95.1416 +450067,90.437,93.1398 +450068,90.425,91.1949 +450069,89.054,97.2085 +450070,89.079,95.1411 +450071,89.101,93.139 +450072,89.123,91.1937 +450073,87.651,97.2068 +450074,87.71,95.1401 +450075,87.766,93.1386 +450076,87.821,91.194 +450077,86.249,97.2034 +450078,86.341,95.1384 +450079,86.431,93.1386 +450080,86.519,91.1957 +450081,84.846,97.1984 +450082,84.972,95.1362 +450083,85.095,93.1391 +450084,85.216,91.1988 +450085,83.443,97.1918 +450086,83.603,95.1335 +450087,83.76,93.1401 +450088,83.914,91.2033 +450089,82.041,97.1836 +450090,82.234,95.1301 +450091,82.424,93.1414 +450092,82.612,91.2092 +450093,80.639,97.1737 +450094,80.866,95.1262 +450095,81.089,93.1432 +450096,81.309,91.2166 +450097,79.237,97.1622 +450098,79.497,95.1218 +450099,79.753,93.1455 +450100,80.007,91.2253 +450101,77.835,97.1491 +450102,78.128,95.1167 +450103,78.418,93.1481 +450104,78.704,91.2354 +450105,76.433,97.1344 +450106,76.76,95.1111 +450107,77.082,93.1512 +450108,77.4,91.2469 +450109,75.032,97.1181 +450110,75.391,95.1049 +450111,75.746,93.1547 +450112,76.097,91.2598 +450113,73.631,97.1002 +450114,74.023,95.0982 +450115,74.41,93.1587 +450116,74.793,91.274 +450117,72.23,97.0808 +450118,72.655,95.0909 +450119,73.074,93.1631 +450120,73.489,91.2896 +450121,70.83,97.0597 +450122,71.287,95.0831 +450123,71.738,93.1678 +450124,72.185,91.3066 +450125,69.43,97.0372 +450126,69.919,95.0747 +450127,70.402,93.173 +450128,70.88,91.3249 +450129,68.03,97.013 +450130,68.551,95.0658 +450131,69.066,93.1787 +450132,69.575,91.3446 +450133,66.631,96.9874 +450134,67.183,95.0563 +450135,67.729,93.1847 +450136,68.27,91.3656 +450137,65.232,96.9602 +450138,65.816,95.0463 +450139,66.393,93.1911 +450140,66.964,91.3879 +450141,63.834,96.9315 +450142,64.448,95.0358 +450143,65.056,93.198 +450144,65.658,91.4115 +450145,62.436,96.9013 +450146,63.081,95.0247 +450147,63.719,93.2052 +450148,64.351,91.4364 +450149,61.039,96.8697 +450150,61.714,95.0131 +450151,62.382,93.2128 +450152,63.043,91.4626 +450153,59.643,96.8366 +450154,60.347,95.001 +450155,61.044,93.2208 +450156,61.736,91.4901 +450157,58.247,96.802 +450158,58.981,94.9884 +450159,59.707,93.2292 +450160,60.427,91.5188 +450161,56.851,96.7661 +450162,57.614,94.9752 +450163,58.369,93.238 +450164,59.118,91.5488 +450165,55.457,96.7287 +450166,56.248,94.9616 +450167,57.032,93.2471 +450168,57.808,91.58 +450169,54.063,96.69 +450170,54.882,94.9475 +450171,55.693,93.2566 +450172,56.498,91.6124 +450173,52.669,96.6498 +450174,53.516,94.9328 +450175,54.355,93.2665 +450176,55.187,91.646 +450177,51.277,96.6084 +450178,52.151,94.9177 +450179,53.017,93.2767 +450180,53.876,91.6807 +450181,49.885,96.5656 +450182,50.786,94.9021 +450183,51.678,93.2873 +450184,52.563,91.7167 +450185,48.494,96.5215 +450186,49.421,94.8861 +450187,50.339,93.2982 +450188,51.25,91.7537 +450189,47.103,96.4762 +450190,48.056,94.8696 +450191,49,93.3095 +450192,49.937,91.7919 +450193,45.714,96.4296 +450194,46.691,94.8526 +450195,47.66,93.3211 +450196,48.622,91.8312 +450197,44.325,96.3818 +450198,45.327,94.8352 +450199,46.321,93.333 +450200,47.307,91.8715 +450201,42.937,96.3328 +450202,43.963,94.8173 +450203,44.981,93.3452 +450204,45.991,91.913 +450205,41.55,96.2826 +450206,42.6,94.799 +450207,43.64,93.3577 +450208,44.674,91.9554 +450209,40.164,96.2312 +450210,41.236,94.7803 +450211,42.3,93.3706 +450212,43.356,91.9989 +450213,38.779,96.1787 +450214,39.873,94.7612 +450215,40.959,93.3837 +450216,42.037,92.0434 +450217,37.394,96.1251 +450218,38.51,94.7416 +450219,39.618,93.3971 +450220,40.718,92.0888 +450221,36.011,96.0705 +450222,37.148,94.7217 +450223,38.277,93.4108 +450224,39.398,92.1352 +450225,34.629,96.0148 +450226,35.786,94.7014 +450227,36.935,93.4247 +450228,38.076,92.1825 +450229,33.247,95.9581 +450230,34.424,94.6806 +450231,35.593,93.4389 +450232,36.754,92.2307 +450233,31.867,95.9004 +450234,33.063,94.6596 +450235,34.25,93.4534 +450236,35.431,92.2798 +450237,30.487,95.8418 +450238,31.701,94.6381 +450239,32.908,93.4681 +450240,34.107,92.3297 +450241,29.109,95.7822 +450242,30.341,94.6163 +450243,31.565,93.483 +450244,32.782,92.3805 +450245,27.731,95.7218 +450246,28.98,94.5942 +450247,30.222,93.4981 +450248,31.456,92.4321 +450249,26.355,95.6604 +450250,27.62,94.5717 +450251,28.878,93.5135 +450252,30.129,92.4844 +450253,24.979,95.5983 +450254,26.26,94.5489 +450255,27.534,93.5291 +450256,28.8,92.5375 +450257,23.605,95.5353 +450258,24.901,94.5258 +450259,26.19,93.5448 +450260,27.471,92.5913 +450261,22.232,95.4716 +450262,23.542,94.5024 +450263,24.845,93.5608 +450264,26.141,92.6457 +450265,20.86,95.4071 +450266,22.183,94.4787 +450267,23.5,93.5769 +450268,24.81,92.7009 +450269,19.489,95.3419 +450270,20.825,94.4547 +450271,22.155,93.5932 +450272,23.478,92.7566 +450273,18.119,95.2761 +450274,19.467,94.4304 +450275,20.809,93.6096 +450276,22.144,92.813 +450277,16.75,95.2096 +450278,18.11,94.4059 +450279,19.463,93.6262 +450280,20.81,92.87 +450281,15.382,95.1425 +450282,16.753,94.3811 +450283,18.117,93.643 +450284,19.474,92.9275 +450285,14.016,95.0748 +450286,15.396,94.3561 +450287,16.77,93.6598 +450288,18.137,92.9855 +450289,12.651,95.0066 +450290,14.039,94.3309 +450291,15.423,93.6768 +450292,16.8,93.044 +450293,11.286,94.9379 +450294,12.683,94.3054 +450295,14.075,93.6939 +450296,15.461,93.1029 +450297,9.9234,94.8687 +450298,11.328,94.2797 +450299,12.727,93.711 +450300,14.121,93.1623 +450301,8.5615,94.799 +450302,9.9727,94.2538 +450303,11.379,93.7283 +450304,12.779,93.222 +450305,7.2008,94.729 +450306,8.6179,94.2278 +450307,10.03,93.7456 +450308,11.437,93.2821 +450309,5.8413,94.6586 +450310,7.2636,94.2016 +450311,8.6814,93.763 +450312,10.094,93.3426 +450313,4.4829,94.5878 +450314,5.9096,94.1752 +450315,7.332,93.7804 +450316,8.7488,93.4033 +450317,3.1258,94.5168 +450318,4.556,94.1486 +450319,5.9822,93.7979 +450320,7.403,93.4643 +450321,1.7698,94.4454 +450322,3.2029,94.1219 +450323,4.6321,93.8154 +450324,6.056,93.5256 +450325,0.41502,94.3739 +450326,1.8501,94.0951 +450327,3.2815,93.8329 +450328,4.7078,93.587 +450329,359.06,94.3021 +450330,0.49775,94.0682 +450331,1.9306,93.8504 +450332,3.3584,93.6486 +450333,357.71,94.2302 +450334,359.15,94.0411 +450335,0.57927,93.8679 +450336,2.0079,93.7103 +450337,356.36,94.1581 +450338,357.79,94.014 +450339,359.23,93.8854 +450340,0.65618,93.7722 +450341,355.01,94.0859 +450342,356.44,93.9868 +450343,357.88,93.9029 +450344,359.3,93.8341 +450345,353.66,94.0137 +450346,355.09,93.9595 +450347,356.52,93.9203 +450348,357.95,93.896 +450349,352.31,93.9415 +450350,353.74,93.9321 +450351,355.17,93.9377 +450352,356.59,93.9579 +450353,350.96,93.8692 +450354,352.39,93.9047 +450355,353.82,93.9551 +450356,355.24,94.0198 +450357,349.62,93.797 +450358,351.04,93.8773 +450359,352.46,93.9723 +450360,353.88,94.0817 +450361,348.28,93.7248 +450362,349.69,93.8498 +450363,351.11,93.9895 +450364,352.52,94.1434 +450365,346.93,93.6528 +450366,348.34,93.8224 +450367,349.75,94.0065 +450368,351.16,94.205 +450369,345.59,93.5809 +450370,347,93.7949 +450371,348.4,94.0235 +450372,349.8,94.2665 +450373,344.25,93.5092 +450374,345.65,93.7674 +450375,347.05,94.0404 +450376,348.44,94.3277 +450377,342.91,93.4377 +450378,344.3,93.74 +450379,345.69,94.0571 +450380,347.07,94.3887 +450381,341.57,93.3664 +450382,342.95,93.7125 +450383,344.33,94.0737 +450384,345.71,94.4494 +450385,340.24,93.2954 +450386,341.61,93.6851 +450387,342.98,94.0901 +450388,344.34,94.5099 +450389,338.9,93.2247 +450390,340.26,93.6578 +450391,341.62,94.1064 +450392,342.98,94.57 +450393,337.56,93.1543 +450394,338.92,93.6305 +450395,340.26,94.1225 +450396,341.61,94.6297 +450397,336.23,93.0844 +450398,337.57,93.6033 +450399,338.91,94.1384 +450400,340.24,94.689 +450401,334.9,93.0148 +450402,336.22,93.5762 +450403,337.55,94.1541 +450404,338.87,94.7479 +450405,333.57,92.9456 +450406,334.88,93.5492 +450407,336.19,94.1696 +450408,337.5,94.8064 +450409,332.24,92.8769 +450410,333.54,93.5223 +450411,334.83,94.1849 +450412,336.13,94.8643 +450413,330.91,92.8087 +450414,332.19,93.4955 +450415,333.47,94.2 +450416,334.75,94.9217 +450417,329.58,92.741 +450418,330.85,93.4688 +450419,332.11,94.2148 +450420,333.38,94.9785 +450421,328.25,92.6739 +450422,329.5,93.4423 +450423,330.75,94.2294 +450424,332,95.0348 +450425,326.93,92.6074 +450426,328.16,93.4159 +450427,329.4,94.2437 +450428,330.63,95.0904 +450429,325.6,92.5415 +450430,326.82,93.3897 +450431,328.04,94.2577 +450432,329.25,95.1453 +450433,324.28,92.4762 +450434,325.48,93.3637 +450435,326.67,94.2715 +450436,327.87,95.1996 +450437,322.95,92.4116 +450438,324.13,93.3378 +450439,325.31,94.285 +450440,326.49,95.2531 +450441,321.63,92.3477 +450442,322.79,93.3121 +450443,323.95,94.2982 +450444,325.11,95.3059 +450445,320.31,92.2846 +450446,321.45,93.2866 +450447,322.59,94.311 +450448,323.73,95.3579 +450449,318.99,92.2221 +450450,320.11,93.2614 +450451,321.23,94.3236 +450452,322.34,95.409 +450453,317.67,92.1605 +450454,318.77,93.2363 +450455,319.87,94.3358 +450456,320.96,95.4594 +450457,316.35,92.0997 +450458,317.43,93.2115 +450459,318.51,94.3477 +450460,319.58,95.5088 +450461,315.03,92.0397 +450462,316.09,93.1869 +450463,317.14,94.3592 +450464,318.19,95.5574 +450465,313.72,91.9806 +450466,314.75,93.1625 +450467,315.78,94.3704 +450468,316.8,95.605 +450469,312.4,91.9224 +450470,313.41,93.1384 +450471,314.42,94.3812 +450472,315.42,95.6516 +450473,311.09,91.8651 +450474,312.07,93.1146 +450475,313.05,94.3917 +450476,314.03,95.6973 +450477,309.77,91.8087 +450478,310.73,93.091 +450479,311.69,94.4017 +450480,312.64,95.7419 +450481,308.46,91.7533 +450482,309.4,93.0677 +450483,310.33,94.4114 +450484,311.25,95.7855 +450485,307.15,91.6989 +450486,308.06,93.0447 +450487,308.96,94.4206 +450488,309.86,95.828 +450489,305.84,91.6454 +450490,306.72,93.022 +450491,307.6,94.4295 +450492,308.47,95.8694 +450493,304.53,91.593 +450494,305.38,92.9996 +450495,306.23,94.4379 +450496,307.08,95.9097 +450497,303.22,91.5417 +450498,304.04,92.9775 +450499,304.87,94.4459 +450500,305.68,95.9488 +450501,301.91,91.4914 +450502,302.71,92.9557 +450503,303.5,94.4535 +450504,304.29,95.9868 +450505,300.6,91.4422 +450506,301.37,92.9343 +450507,302.14,94.4606 +450508,302.9,96.0235 +450509,299.29,91.3941 +450510,300.03,92.9131 +450511,300.77,94.4673 +450512,301.5,96.0591 +450513,297.98,91.3472 +450514,298.7,92.8924 +450515,299.41,94.4735 +450516,300.11,96.0934 +450517,296.68,91.3014 +450518,297.36,92.8719 +450519,298.04,94.4793 +450520,298.71,96.1264 +450521,295.37,91.2568 +450522,296.03,92.8518 +450523,296.67,94.4846 +450524,297.31,96.1581 +450525,294.06,91.2133 +450526,294.69,92.8321 +450527,295.31,94.4894 +450528,295.92,96.1885 +450529,292.76,91.1711 +450530,293.35,92.8127 +450531,293.94,94.4938 +450532,294.52,96.2176 +450533,291.45,91.1301 +450534,292.02,92.7937 +450535,292.58,94.4976 +450536,293.12,96.2453 +450537,290.15,91.0903 +450538,290.68,92.7751 +450539,291.21,94.501 +450540,291.72,96.2717 +450541,288.85,91.0517 +450542,289.35,92.7569 +450543,289.84,94.5038 +450544,290.32,96.2967 +450545,287.54,91.0144 +450546,288.01,92.739 +450547,288.47,94.5062 +450548,288.92,96.3202 +450549,286.24,90.97842 +450550,286.68,92.7216 +450551,287.11,94.5081 +450552,287.52,96.3424 +450553,284.94,90.94369 +450554,285.35,92.7045 +450555,285.74,94.5094 +450556,286.12,96.363 +450557,283.64,90.91027 +450558,284.01,92.6878 +450559,284.37,94.5102 +450560,284.72,96.3823 +450561,282.34,90.87816 +450562,282.68,92.6716 +450563,283.01,94.5105 +450564,283.32,96.4 +450565,281.03,90.84738 +450566,281.34,92.6557 +450567,281.64,94.5103 +450568,281.92,96.4163 +450569,279.73,90.81792 +450570,280.01,92.6403 +450571,280.27,94.5095 +450572,280.52,96.4311 +450573,278.43,90.78981 +450574,278.67,92.6252 +450575,278.9,94.5082 +450576,279.12,96.4444 +450577,277.13,90.76305 +450578,277.34,92.6106 +450579,277.54,94.5063 +450580,277.71,96.4561 +450581,275.83,90.73765 +450582,276.01,92.5964 +450583,276.17,94.504 +450584,276.31,96.4663 +450585,274.53,90.71362 +450586,274.67,92.5827 +450587,274.8,94.501 +450588,274.91,96.4749 +450589,273.23,90.69096 +450590,273.34,92.5693 +450591,273.43,94.4975 +450592,273.51,96.482 +450593,271.93,90.66968 +450594,272.01,92.5564 +450595,272.06,94.4935 +450596,272.11,96.4876 +450597,270.63,90.64979 +450598,270.67,92.5439 +450599,270.7,94.4889 +450600,270.7,96.4915 +450601,269.33,90.63128 +450602,269.34,92.5319 +450603,269.33,94.4838 +450604,269.3,96.4939 +450605,268.03,90.61418 +450606,268.01,92.5203 +450607,267.96,94.4781 +450608,267.9,96.4947 +450609,266.73,90.59847 +450610,266.67,92.5091 +450611,266.59,94.4719 +450612,266.5,96.4939 +450613,265.44,90.58416 +450614,265.34,92.4983 +450615,265.23,94.4651 +450616,265.09,96.4916 +450617,264.14,90.57125 +450618,264.01,92.488 +450619,263.86,94.4577 +450620,263.69,96.4876 +450621,262.84,90.55974 +450622,262.67,92.4782 +450623,262.49,94.4498 +450624,262.29,96.482 +450625,261.54,90.54964 +450626,261.34,92.4687 +450627,261.12,94.4413 +450628,260.89,96.4748 +450629,260.24,90.54094 +450630,260.01,92.4597 +450631,259.76,94.4322 +450632,259.48,96.466 +450633,258.94,90.53365 +450634,258.67,92.4512 +450635,258.39,94.4226 +450636,258.08,96.4556 +450637,257.64,90.52776 +450638,257.34,92.4431 +450639,257.02,94.4125 +450640,256.68,96.4436 +450641,256.34,90.52326 +450642,256,92.4354 +450643,255.65,94.4017 +450644,255.28,96.43 +450645,255.04,90.52016 +450646,254.67,92.4282 +450647,254.29,94.3904 +450648,253.88,96.4148 +450649,253.74,90.51846 +450650,253.34,92.4213 +450651,252.92,94.3786 +450652,252.48,96.398 +450653,252.43,90.51814 +450654,252,92.415 +450655,251.55,94.3662 +450656,251.08,96.3797 +450657,251.13,90.51921 +450658,250.67,92.409 +450659,250.19,94.3533 +450660,249.68,96.3597 +450661,249.83,90.52165 +450662,249.34,92.4035 +450663,248.82,94.3398 +450664,248.28,96.3381 +450665,248.53,90.52546 +450666,248,92.3984 +450667,247.45,94.3257 +450668,246.88,96.315 +450669,247.23,90.53064 +450670,246.67,92.3938 +450671,246.09,94.3111 +450672,245.48,96.2903 +450673,245.93,90.53717 +450674,245.33,92.3896 +450675,244.72,94.296 +450676,244.08,96.2641 +450677,244.62,90.54505 +450678,244,92.3858 +450679,243.36,94.2803 +450680,242.69,96.2363 +450681,243.32,90.55426 +450682,242.66,92.3824 +450683,241.99,94.2641 +450684,241.29,96.207 +450685,242.01,90.56481 +450686,241.33,92.3794 +450687,240.62,94.2473 +450688,239.89,96.1761 +450689,240.71,90.57667 +450690,240,92.3768 +450691,239.26,94.23 +450692,238.5,96.1438 +450693,239.4,90.58984 +450694,238.66,92.3746 +450695,237.89,94.2122 +450696,237.1,96.1099 +450697,238.1,90.60431 +450698,237.32,92.3729 +450699,236.53,94.1939 +450700,235.71,96.0745 +450701,236.79,90.62006 +450702,235.99,92.3715 +450703,235.16,94.1751 +450704,234.31,96.0377 +450705,235.49,90.63707 +450706,234.65,92.3706 +450707,233.8,94.1557 +450708,232.92,95.9994 +450709,234.18,90.65535 +450710,233.32,92.37 +450711,232.44,94.1358 +450712,231.53,95.9597 +450713,232.87,90.67486 +450714,231.98,92.3698 +450715,231.07,94.1155 +450716,230.13,95.9185 +450717,231.56,90.6956 +450718,230.65,92.37 +450719,229.71,94.0946 +450720,228.74,95.876 +450721,230.25,90.71755 +450722,229.31,92.3705 +450723,228.34,94.0732 +450724,227.35,95.832 +450725,228.94,90.7407 +450726,227.97,92.3715 +450727,226.98,94.0514 +450728,225.96,95.7867 +450729,227.63,90.76503 +450730,226.64,92.3728 +450731,225.62,94.0291 +450732,224.58,95.74 +450733,226.32,90.79051 +450734,225.3,92.3744 +450735,224.26,94.0063 +450736,223.19,95.692 +450737,225.01,90.81714 +450738,223.96,92.3764 +450739,222.89,93.983 +450740,221.8,95.6427 +450741,223.69,90.8449 +450742,222.62,92.3788 +450743,221.53,93.9593 +450744,220.42,95.5921 +450745,222.38,90.87376 +450746,221.29,92.3815 +450747,220.17,93.9352 +450748,219.03,95.5402 +450749,221.07,90.9037 +450750,219.95,92.3845 +450751,218.81,93.9106 +450752,217.65,95.4871 +450753,219.75,90.93472 +450754,218.61,92.3878 +450755,217.45,93.8855 +450756,216.26,95.4327 +450757,218.43,90.96677 +450758,217.27,92.3915 +450759,216.09,93.86 +450760,214.88,95.3772 +450761,217.12,90.99985 +450762,215.93,92.3954 +450763,214.73,93.8341 +450764,213.5,95.3205 +450765,215.8,91.0339 +450766,214.59,92.3997 +450767,213.37,93.8078 +450768,212.12,95.2626 +450769,214.48,91.069 +450770,213.25,92.4043 +450771,212.01,93.7811 +450772,210.74,95.2037 +450773,213.16,91.105 +450774,211.91,92.4091 +450775,210.65,93.754 +450776,209.36,95.1436 +450777,211.84,91.142 +450778,210.57,92.4143 +450779,209.29,93.7265 +450780,207.98,95.0825 +450781,210.51,91.1798 +450782,209.23,92.4197 +450783,207.93,93.6986 +450784,206.61,95.0203 +450785,209.19,91.2186 +450786,207.89,92.4253 +450787,206.57,93.6703 +450788,205.23,94.9571 +450789,207.87,91.2582 +450790,206.55,92.4313 +450791,205.22,93.6417 +450792,203.86,94.893 +450793,206.54,91.2987 +450794,205.21,92.4374 +450795,203.86,93.6128 +450796,202.49,94.8278 +450797,205.21,91.3399 +450798,203.87,92.4438 +450799,202.5,93.5835 +450800,201.12,94.7618 +450801,203.89,91.382 +450802,202.53,92.4505 +450803,201.15,93.5538 +450804,199.75,94.6949 +450805,202.56,91.4248 +450806,201.18,92.4573 +450807,199.79,93.5239 +450808,198.38,94.6271 +450809,201.23,91.4683 +450810,199.84,92.4644 +450811,198.43,93.4936 +450812,197.01,94.5584 +450813,199.9,91.5126 +450814,198.5,92.4716 +450815,197.08,93.463 +450816,195.64,94.489 +450817,198.57,91.5575 +450818,197.15,92.4791 +450819,195.72,93.4321 +450820,194.27,94.4188 +450821,197.23,91.6031 +450822,195.81,92.4867 +450823,194.37,93.401 +450824,192.91,94.3479 +450825,195.9,91.6493 +450826,194.47,92.4945 +450827,193.02,93.3695 +450828,191.55,94.2762 +450829,194.56,91.6961 +450830,193.12,92.5025 +450831,191.66,93.3378 +450832,190.18,94.2039 +450833,193.23,91.7434 +450834,191.78,92.5106 +450835,190.31,93.3059 +450836,188.82,94.1309 +450837,191.89,91.7913 +450838,190.43,92.5189 +450839,188.96,93.2737 +450840,187.46,94.0574 +450841,190.55,91.8397 +450842,189.08,92.5272 +450843,187.6,93.2412 +450844,186.11,93.9832 +450845,189.21,91.8886 +450846,187.74,92.5358 +450847,186.25,93.2086 +450848,184.75,93.9085 +450849,187.87,91.9379 +450850,186.39,92.5444 +450851,184.9,93.1757 +450852,183.39,93.8333 +450853,186.53,91.9876 +450854,185.05,92.5531 +450855,183.55,93.1427 +450856,182.04,93.7576 +450857,185.18,92.0378 +450858,183.7,92.5619 +450859,182.2,93.1095 +450860,180.68,93.6815 +450861,183.84,92.0882 +450862,182.35,92.5708 +450863,180.85,93.076 +450864,179.33,93.605 +450865,182.49,92.1391 +450866,181,92.5798 +450867,179.5,93.0424 +450868,177.98,93.528 +450869,181.15,92.1902 +450870,179.65,92.5888 +450871,178.15,93.0087 +450872,176.63,93.4508 +450873,179.8,92.2415 +450874,178.31,92.5979 +450875,176.8,92.9748 +450876,175.28,93.3732 +450877,178.45,92.2931 +450878,176.96,92.607 +450879,175.45,92.9408 +450880,173.93,93.2954 +450881,177.1,92.3449 +450882,175.61,92.6161 +450883,174.1,92.9067 +450884,172.59,93.2173 +450885,175.75,92.3969 +450886,174.26,92.6253 +450887,172.76,92.8724 +450888,171.24,93.1391 +450889,174.39,92.449 +450890,172.91,92.6345 +450891,171.41,92.8381 +450892,169.9,93.0606 +450893,173.04,92.5012 +450894,171.56,92.6436 +450895,170.06,92.8036 +450896,168.56,92.9821 +450897,171.68,92.5534 +450898,170.21,92.6528 +450899,168.72,92.7691 +450900,167.21,92.9034 +450901,170.33,92.6058 +450902,168.85,92.6619 +450903,167.37,92.7346 +450904,165.87,92.8246 +450905,168.97,92.6581 +450906,167.5,92.6709 +450907,166.02,92.6999 +450908,164.54,92.7459 +450909,167.61,92.7104 +450910,166.15,92.68 +450911,164.68,92.6653 +450912,163.2,92.6671 +450913,166.25,92.7626 +450914,164.8,92.6889 +450915,163.33,92.6306 +450916,161.86,92.5884 +450917,164.89,92.8148 +450918,163.44,92.6978 +450919,161.99,92.5959 +450920,160.53,92.5097 +450921,163.53,92.8668 +450922,162.09,92.7066 +450923,160.65,92.5611 +450924,159.19,92.4311 +450925,162.16,92.9187 +450926,160.74,92.7153 +450927,159.3,92.5264 +450928,157.86,92.3527 +450929,160.8,92.9703 +450930,159.38,92.7239 +450931,157.96,92.4917 +450932,156.53,92.2745 +450933,159.43,93.0218 +450934,158.03,92.7324 +450935,156.62,92.457 +450936,155.2,92.1964 +450937,158.06,93.073 +450938,156.68,92.7408 +450939,155.28,92.4224 +450940,153.87,92.1186 +450941,156.7,93.124 +450942,155.32,92.749 +450943,153.93,92.3878 +450944,152.54,92.041 +450945,155.33,93.1746 +450946,153.96,92.7571 +450947,152.59,92.3532 +450948,151.21,91.9638 +450949,153.96,93.2248 +450950,152.61,92.765 +450951,151.25,92.3188 +450952,149.89,91.8869 +450953,152.58,93.2747 +450954,151.25,92.7728 +450955,149.91,92.2844 +450956,148.56,91.8103 +450957,151.21,93.3242 +450958,149.9,92.7804 +450959,148.57,92.2501 +450960,147.24,91.7342 +450961,149.84,93.3732 +450962,148.54,92.7878 +450963,147.23,92.2159 +450964,145.92,91.6585 +450965,148.46,93.4218 +450966,147.18,92.795 +450967,145.89,92.1818 +450968,144.59,91.5832 +450969,147.09,93.4698 +450970,145.83,92.8019 +450971,144.55,92.1478 +450972,143.27,91.5085 +450973,145.71,93.5174 +450974,144.47,92.8087 +450975,143.22,92.114 +450976,141.96,91.4342 +450977,144.33,93.5643 +450978,143.11,92.8152 +450979,141.88,92.0803 +450980,140.64,91.3605 +450981,142.95,93.6107 +450982,141.75,92.8215 +450983,140.54,92.0468 +450984,139.32,91.2874 +450985,141.57,93.6564 +450986,140.39,92.8275 +450987,139.2,92.0134 +450988,138,91.2149 +450989,140.19,93.7014 +450990,139.03,92.8333 +450991,137.87,91.9803 +450992,136.69,91.1431 +450993,138.81,93.7458 +450994,137.67,92.8388 +450995,136.53,91.9473 +450996,135.37,91.0719 +450997,137.43,93.7895 +450998,136.31,92.844 +450999,135.19,91.9144 +451000,134.06,91.0014 +451001,136.04,93.8324 +451002,134.95,92.849 +451003,133.86,91.8818 +451004,132.75,90.93164 +451005,134.66,93.8745 +451006,133.59,92.8536 +451007,132.52,91.8494 +451008,131.44,90.86263 +451009,133.27,93.9158 +451010,132.23,92.8579 +451011,131.19,91.8173 +451012,130.13,90.7944 +451013,131.88,93.9563 +451014,130.87,92.8619 +451015,129.85,91.7853 +451016,128.82,90.72698 +451017,130.5,93.9959 +451018,129.51,92.8656 +451019,128.52,91.7536 +451020,127.51,90.66039 +451021,129.11,94.0346 +451022,128.15,92.869 +451023,127.18,91.7222 +451024,126.2,90.59466 +451025,127.72,94.0724 +451026,126.79,92.872 +451027,125.85,91.691 +451028,124.89,90.52981 +451029,126.33,94.1093 +451030,125.43,92.8746 +451031,124.51,91.66 +451032,123.59,90.46587 +451033,124.94,94.1452 +451034,124.07,92.8769 +451035,123.18,91.6294 +451036,122.28,90.40286 +451037,123.55,94.1801 +451038,122.7,92.8788 +451039,121.85,91.599 +451040,120.98,90.34081 +451041,122.16,94.214 +451042,121.34,92.8803 +451043,120.51,91.5689 +451044,119.67,90.27974 +451045,120.76,94.2468 +451046,119.98,92.8815 +451047,119.18,91.5391 +451048,118.37,90.21966 +451049,119.37,94.2785 +451050,118.62,92.8822 +451051,117.85,91.5097 +451052,117.07,90.16061 +451053,117.97,94.3092 +451054,117.25,92.8826 +451055,116.52,91.4805 +451056,115.77,90.1026 +451057,116.58,94.3387 +451058,115.89,92.8825 +451059,115.19,91.4516 +451060,114.47,90.045651 +451061,115.18,94.3671 +451062,114.53,92.882 +451063,113.85,91.4231 +451064,113.17,89.989789 +451065,113.79,94.3944 +451066,113.16,92.8811 +451067,112.52,91.395 +451068,111.87,89.935031 +451069,112.39,94.4204 +451070,111.8,92.8798 +451071,111.19,91.3671 +451072,110.57,89.8814 +451073,110.99,94.4452 +451074,110.44,92.878 +451075,109.86,91.3396 +451076,109.27,89.8289 +451077,109.6,94.4688 +451078,109.07,92.8758 +451079,108.53,91.3125 +451080,107.97,89.77756 +451081,108.2,94.4912 +451082,107.71,92.8732 +451083,107.2,91.2857 +451084,106.67,89.7274 +451085,106.8,94.5123 +451086,106.34,92.8701 +451087,105.87,91.2593 +451088,105.37,89.67844 +451089,105.4,94.532 +451090,104.98,92.8665 +451091,104.54,91.2333 +451092,104.08,89.63068 +451093,104,94.5505 +451094,103.62,92.8624 +451095,103.21,91.2076 +451096,102.78,89.58414 +451097,102.6,94.5677 +451098,102.25,92.8579 +451099,101.88,91.1823 +451100,101.49,89.53884 +451101,101.2,94.5835 +451102,100.89,92.8529 +451103,100.55,91.1575 +451104,100.19,89.49479 +451105,99.801,94.598 +451106,99.521,92.8475 +451107,99.219,91.133 +451108,98.895,89.45201 +451109,98.401,94.611 +451110,98.157,92.8415 +451111,97.889,91.1089 +451112,97.601,89.4105 +451113,97,94.6227 +451114,96.792,92.835 +451115,96.56,91.0852 +451116,96.306,89.37028 +451117,95.599,94.633 +451118,95.427,92.8281 +451119,95.231,91.0619 +451120,95.012,89.33136 +451121,94.197,94.6419 +451122,94.062,92.8206 +451123,93.902,91.039 +451124,93.718,89.29376 +451125,92.796,94.6493 +451126,92.697,92.8127 +451127,92.573,91.0165 +451128,92.424,89.25747 +451129,91.394,94.6553 +451130,91.333,92.8042 +451131,91.244,90.99449 +451132,91.131,89.22251 +451133,89.993,94.6598 +451134,89.968,92.7953 +451135,89.915,90.97286 +451136,89.837,89.18889 +451137,88.591,94.6629 +451138,88.603,92.7858 +451139,88.586,90.95165 +451140,88.544,89.15662 +451141,87.189,94.6645 +451142,87.238,92.7758 +451143,87.257,90.93087 +451144,87.251,89.1257 +451145,85.788,94.6646 +451146,85.873,92.7652 +451147,85.929,90.91052 +451148,85.958,89.09614 +451149,84.386,94.6632 +451150,84.508,92.7542 +451151,84.6,90.89059 +451152,84.665,89.06794 +451153,82.984,94.6604 +451154,83.143,92.7426 +451155,83.271,90.8711 +451156,83.372,89.04112 +451157,81.583,94.656 +451158,81.779,92.7305 +451159,81.943,90.85205 +451160,82.079,89.01567 +451161,80.181,94.6501 +451162,80.414,92.7179 +451163,80.614,90.83342 +451164,80.786,88.9916 +451165,78.78,94.6427 +451166,79.049,92.7048 +451167,79.286,90.81524 +451168,79.493,88.9689 +451169,77.379,94.6337 +451170,77.685,92.6911 +451171,77.957,90.79749 +451172,78.2,88.9476 +451173,75.978,94.6232 +451174,76.321,92.6769 +451175,76.628,90.78018 +451176,76.906,88.9277 +451177,74.578,94.6112 +451178,74.956,92.6622 +451179,75.3,90.76331 +451180,75.613,88.9091 +451181,73.177,94.5977 +451182,73.592,92.6469 +451183,73.971,90.74688 +451184,74.32,88.892 +451185,71.777,94.5826 +451186,72.228,92.6311 +451187,72.642,90.73089 +451188,73.026,88.8762 +451189,70.378,94.566 +451190,70.864,92.6148 +451191,71.314,90.71533 +451192,71.732,88.8618 +451193,68.978,94.5479 +451194,69.5,92.5979 +451195,69.985,90.70022 +451196,70.437,88.8488 +451197,67.579,94.5283 +451198,68.137,92.5805 +451199,68.656,90.68554 +451200,69.143,88.8372 +451201,66.181,94.5071 +451202,66.773,92.5626 +451203,67.327,90.6713 +451204,67.848,88.8269 +451205,64.783,94.4843 +451206,65.41,92.5442 +451207,65.998,90.6575 +451208,66.553,88.818 +451209,63.385,94.4601 +451210,64.047,92.5252 +451211,64.669,90.64413 +451212,65.257,88.8105 +451213,61.988,94.4343 +451214,62.684,92.5057 +451215,63.339,90.63119 +451216,63.961,88.8044 +451217,60.592,94.4071 +451218,61.321,92.4857 +451219,62.01,90.61869 +451220,62.665,88.7996 +451221,59.196,94.3783 +451222,59.958,92.4651 +451223,60.68,90.60661 +451224,61.368,88.7961 +451225,57.8,94.348 +451226,58.596,92.4441 +451227,59.351,90.59496 +451228,60.071,88.794 +451229,56.406,94.3162 +451230,57.234,92.4225 +451231,58.021,90.58373 +451232,58.773,88.7932 +451233,55.011,94.283 +451234,55.872,92.4004 +451235,56.691,90.57293 +451236,57.475,88.7937 +451237,53.618,94.2482 +451238,54.51,92.3779 +451239,55.361,90.56254 +451240,56.176,88.7956 +451241,52.225,94.212 +451242,53.149,92.3548 +451243,54.03,90.55256 +451244,54.877,88.7988 +451245,50.833,94.1744 +451246,51.788,92.3312 +451247,52.7,90.543 +451248,53.577,88.8032 +451249,49.442,94.1353 +451250,50.427,92.3071 +451251,51.369,90.53385 +451252,52.276,88.8089 +451253,48.052,94.0948 +451254,49.066,92.2825 +451255,50.038,90.5251 +451256,50.975,88.8159 +451257,46.662,94.0529 +451258,47.706,92.2574 +451259,48.707,90.51675 +451260,49.673,88.8242 +451261,45.273,94.0095 +451262,46.346,92.2319 +451263,47.376,90.50879 +451264,48.37,88.8337 +451265,43.885,93.9648 +451266,44.986,92.2059 +451267,46.044,90.50122 +451268,47.067,88.8444 +451269,42.498,93.9187 +451270,43.627,92.1793 +451271,44.713,90.49404 +451272,45.763,88.8564 +451273,41.112,93.8713 +451274,42.268,92.1524 +451275,43.381,90.48724 +451276,44.458,88.8695 +451277,39.727,93.8225 +451278,40.909,92.1249 +451279,42.049,90.48082 +451280,43.152,88.8839 +451281,38.342,93.7724 +451282,39.55,92.097 +451283,40.716,90.47476 +451284,41.846,88.8994 +451285,36.959,93.721 +451286,38.192,92.0687 +451287,39.383,90.46907 +451288,40.539,88.916 +451289,35.577,93.6683 +451290,36.835,92.0399 +451291,38.05,90.46374 +451292,39.23,88.9338 +451293,34.195,93.6144 +451294,35.477,92.0107 +451295,36.717,90.45876 +451296,37.921,88.9527 +451297,32.815,93.5592 +451298,34.12,91.981 +451299,35.384,90.45412 +451300,36.611,88.9727 +451301,31.436,93.5028 +451302,32.763,91.951 +451303,34.05,90.44983 +451304,35.301,88.9937 +451305,30.057,93.4452 +451306,31.407,91.9205 +451307,32.716,90.44586 +451308,33.989,89.01587 +451309,28.68,93.3864 +451310,30.051,91.8896 +451311,31.381,90.44223 +451312,32.676,89.03903 +451313,27.304,93.3265 +451314,28.696,91.8582 +451315,30.046,90.43891 +451316,31.363,89.06322 +451317,25.929,93.2654 +451318,27.34,91.8265 +451319,28.711,90.43591 +451320,30.048,89.0884 +451321,24.555,93.2033 +451322,25.986,91.7944 +451323,27.376,90.43321 +451324,28.732,89.11455 +451325,23.183,93.14 +451326,24.631,91.762 +451327,26.04,90.43081 +451328,27.416,89.14166 +451329,21.811,93.0757 +451330,23.277,91.7291 +451331,24.704,90.42869 +451332,26.098,89.16969 +451333,20.441,93.0104 +451334,21.924,91.6959 +451335,23.368,90.42686 +451336,24.779,89.19864 +451337,19.072,92.9441 +451338,20.571,91.6624 +451339,22.031,90.4253 +451340,23.459,89.22846 +451341,17.704,92.8768 +451342,19.218,91.6285 +451343,20.695,90.42401 +451344,22.138,89.25915 +451345,16.337,92.8086 +451346,17.866,91.5942 +451347,19.357,90.42298 +451348,20.816,89.29067 +451349,14.971,92.7394 +451350,16.514,91.5597 +451351,18.02,90.42219 +451352,19.493,89.323 +451353,13.607,92.6693 +451354,15.162,91.5248 +451355,16.681,90.42165 +451356,18.169,89.35612 +451357,12.244,92.5984 +451358,13.811,91.4896 +451359,15.343,90.42134 +451360,16.844,89.39 +451361,10.882,92.5267 +451362,12.461,91.4541 +451363,14.004,90.42125 +451364,15.517,89.42461 +451365,9.5217,92.4541 +451366,11.111,91.4183 +451367,12.665,90.42137 +451368,14.189,89.45993 +451369,8.1624,92.3808 +451370,9.7608,91.3822 +451371,11.326,90.4217 +451372,12.86,89.49593 +451373,6.8045,92.3067 +451374,8.4116,91.3459 +451375,9.9859,90.42223 +451376,11.53,89.53258 +451377,5.4478,92.232 +451378,7.0629,91.3093 +451379,8.6457,90.42294 +451380,10.199,89.56986 +451381,4.0924,92.1565 +451382,5.7145,91.2724 +451383,7.3051,90.42383 +451384,8.8667,89.60774 +451385,2.7383,92.0804 +451386,4.3667,91.2354 +451387,5.9641,90.42488 +451388,7.533,89.64619 +451389,1.3855,92.0037 +451390,3.0193,91.198 +451391,4.6228,90.4261 +451392,6.1982,89.68519 +451393,0.034017,91.9263 +451394,1.6723,91.1605 +451395,3.281,90.42746 +451396,4.8621,89.72469 +451397,358.68,91.8485 +451398,0.32586,91.1227 +451399,1.9389,90.42896 +451400,3.5248,89.76469 +451401,357.33,91.7701 +451402,358.98,91.0848 +451403,0.59638,90.43059 +451404,2.1863,89.80514 +451405,355.99,91.6912 +451406,357.63,91.0467 +451407,359.25,90.43233 +451408,0.84648,89.84602 +451409,354.64,91.6119 +451410,356.29,91.0083 +451411,357.91,90.43419 +451412,359.51,89.8873 +451413,353.3,91.5321 +451414,354.94,90.96985 +451415,356.57,90.43614 +451416,358.16,89.928945 +451417,351.95,91.452 +451418,353.6,90.93121 +451419,355.22,90.43819 +451420,356.82,89.97093 +451421,350.61,91.3715 +451422,352.26,90.89243 +451423,353.88,90.44031 +451424,355.47,90.013225 +451425,349.27,91.2906 +451426,350.91,90.85351 +451427,352.53,90.44249 +451428,354.13,90.055799 +451429,347.93,91.2095 +451430,349.57,90.81446 +451431,351.19,90.44474 +451432,352.78,90.098621 +451433,346.59,91.1281 +451434,348.23,90.7753 +451435,349.84,90.44703 +451436,351.43,90.14166 +451437,345.25,91.0465 +451438,346.89,90.73604 +451439,348.5,90.44936 +451440,350.08,90.18489 +451441,343.92,90.96475 +451442,345.55,90.69669 +451443,347.15,90.45171 +451444,348.73,90.22827 +451445,342.58,90.8828 +451446,344.2,90.65725 +451447,345.8,90.45408 +451448,347.38,90.27178 +451449,341.25,90.80073 +451450,342.86,90.61775 +451451,344.46,90.45646 +451452,346.03,90.31539 +451453,339.92,90.71858 +451454,341.52,90.57819 +451455,343.11,90.45883 +451456,344.67,90.35906 +451457,338.59,90.63636 +451458,340.18,90.53859 +451459,341.76,90.46118 +451460,343.32,90.40277 +451461,337.26,90.55413 +451462,338.85,90.49894 +451463,340.41,90.46351 +451464,341.96,90.44647 +451465,335.93,90.47191 +451466,337.51,90.45927 +451467,339.06,90.4658 +451468,340.6,90.49015 +451469,334.61,90.38973 +451470,336.17,90.41959 +451471,337.71,90.46804 +451472,339.24,90.53377 +451473,333.28,90.30763 +451474,334.83,90.37991 +451475,336.36,90.47023 +451476,337.88,90.5773 +451477,331.96,90.22564 +451478,333.49,90.34023 +451479,335.01,90.47234 +451480,336.52,90.6207 +451481,330.63,90.1438 +451482,332.16,90.30057 +451483,333.66,90.47438 +451484,335.15,90.66395 +451485,329.31,90.062129 +451486,330.82,90.26094 +451487,332.31,90.47633 +451488,333.79,90.70702 +451489,327.99,89.980672 +451490,329.49,90.22135 +451491,330.96,90.47818 +451492,332.42,90.74988 +451493,326.67,89.89946 +451494,328.15,90.18182 +451495,329.61,90.47991 +451496,331.06,90.79249 +451497,325.35,89.81852 +451498,326.81,90.14234 +451499,328.26,90.48153 +451500,329.69,90.83482 +451501,324.04,89.73788 +451502,325.48,90.10294 +451503,326.91,90.48302 +451504,328.32,90.87685 +451505,322.72,89.65759 +451506,324.15,90.063619 +451507,325.56,90.48436 +451508,326.95,90.91854 +451509,321.41,89.57766 +451510,322.81,90.024395 +451511,324.2,90.48555 +451512,325.58,90.95986 +451513,320.09,89.49814 +451514,321.48,89.985274 +451515,322.85,90.48658 +451516,324.2,91.0008 +451517,318.78,89.41904 +451518,320.15,89.946269 +451519,321.5,90.48744 +451520,322.83,91.0413 +451521,317.47,89.34042 +451522,318.81,89.907389 +451523,320.14,90.48812 +451524,321.46,91.0813 +451525,316.16,89.26228 +451526,317.48,89.86864 +451527,318.79,90.48861 +451528,320.08,91.1209 +451529,314.85,89.18467 +451530,316.15,89.83004 +451531,317.43,90.48889 +451532,318.7,91.1599 +451533,313.54,89.10761 +451534,314.82,89.7916 +451535,316.08,90.48897 +451536,317.33,91.1984 +451537,312.24,89.03113 +451538,313.49,89.75332 +451539,314.72,90.48882 +451540,315.95,91.2363 +451541,310.93,88.9553 +451542,312.16,89.71522 +451543,313.37,90.48844 +451544,314.57,91.2736 +451545,309.62,88.88 +451546,310.83,89.6773 +451547,312.01,90.48782 +451548,313.19,91.3103 +451549,308.32,88.8055 +451550,309.5,89.63958 +451551,310.66,90.48696 +451552,311.8,91.3463 +451553,307.02,88.7316 +451554,308.17,89.60206 +451555,309.3,90.48583 +451556,310.42,91.3817 +451557,305.72,88.6585 +451558,306.84,89.56475 +451559,307.95,90.48444 +451560,309.04,91.4163 +451561,304.41,88.5861 +451562,305.51,89.52767 +451563,306.59,90.48277 +451564,307.65,91.4502 +451565,303.11,88.5145 +451566,304.18,89.49081 +451567,305.23,90.48082 +451568,306.27,91.4833 +451569,301.81,88.4437 +451570,302.85,89.4542 +451571,303.87,90.47857 +451572,304.88,91.5156 +451573,300.52,88.3737 +451574,301.52,89.41784 +451575,302.52,90.47602 +451576,303.49,91.547 +451577,299.22,88.3045 +451578,300.2,89.38173 +451579,301.16,90.47315 +451580,302.1,91.5777 +451581,297.92,88.2363 +451582,298.87,89.34589 +451583,299.8,90.46997 +451584,300.72,91.6074 +451585,296.63,88.1689 +451586,297.54,89.31033 +451587,298.44,90.46646 +451588,299.33,91.6363 +451589,295.33,88.1025 +451590,296.22,89.27504 +451591,297.08,90.46262 +451592,297.93,91.6642 +451593,294.04,88.037 +451594,294.89,89.24005 +451595,295.73,90.45843 +451596,296.54,91.6912 +451597,292.74,87.9725 +451598,293.56,89.20536 +451599,294.37,90.45389 +451600,295.15,91.7172 +451601,291.45,87.909 +451602,292.24,89.17097 +451603,293.01,90.44899 +451604,293.76,91.7423 +451605,290.16,87.8465 +451606,290.91,89.13689 +451607,291.65,90.44373 +451608,292.37,91.7663 +451609,288.87,87.785 +451610,289.59,89.10313 +451611,290.29,90.43809 +451612,290.97,91.7892 +451613,287.57,87.7246 +451614,288.26,89.0697 +451615,288.93,90.43207 +451616,289.58,91.8111 +451617,286.28,87.6653 +451618,286.94,89.03661 +451619,287.57,90.42566 +451620,288.18,91.8319 +451621,284.99,87.607 +451622,285.61,89.00386 +451623,286.21,90.41887 +451624,286.79,91.8516 +451625,283.71,87.5499 +451626,284.29,88.9714 +451627,284.85,90.41167 +451628,285.39,91.8702 +451629,282.42,87.4939 +451630,282.96,88.9394 +451631,283.49,90.40406 +451632,283.99,91.8876 +451633,281.13,87.439 +451634,281.64,88.9077 +451635,282.13,90.39604 +451636,282.6,91.9039 +451637,279.84,87.3853 +451638,280.32,88.8764 +451639,280.77,90.3876 +451640,281.2,91.919 +451641,278.55,87.3328 +451642,278.99,88.8454 +451643,279.41,90.37874 +451644,279.8,91.9329 +451645,277.27,87.2815 +451646,277.67,88.8148 +451647,278.05,90.36945 +451648,278.4,91.9456 +451649,275.98,87.2313 +451650,276.35,88.7846 +451651,276.69,90.35973 +451652,277,91.957 +451653,274.69,87.1824 +451654,275.02,88.7548 +451655,275.33,90.34956 +451656,275.61,91.9672 +451657,273.41,87.1348 +451658,273.7,88.7254 +451659,273.97,90.33895 +451660,274.21,91.9761 +451661,272.12,87.0884 +451662,272.38,88.6964 +451663,272.61,90.3279 +451664,272.81,91.9837 +451665,270.84,87.0432 +451666,271.05,88.6677 +451667,271.25,90.31638 +451668,271.41,91.99 +451669,269.55,86.9993 +451670,269.73,88.6395 +451671,269.88,90.30441 +451672,270.01,91.9951 +451673,268.27,86.9567 +451674,268.41,88.6117 +451675,268.52,90.29198 +451676,268.61,91.9987 +451677,266.98,86.9154 +451678,267.09,88.5843 +451679,267.16,90.27909 +451680,267.21,92.0011 +451681,265.7,86.8754 +451682,265.76,88.5573 +451683,265.8,90.26572 +451684,265.81,92.0021 +451685,264.41,86.8367 +451686,264.44,88.5307 +451687,264.44,90.25188 +451688,264.41,92.0018 +451689,263.13,86.7993 +451690,263.12,88.5046 +451691,263.08,90.23757 +451692,263.01,92 +451693,261.84,86.7633 +451694,261.8,88.4789 +451695,261.72,90.22278 +451696,261.61,91.9969 +451697,260.56,86.7285 +451698,260.48,88.4536 +451699,260.36,90.20751 +451700,260.21,91.9924 +451701,259.28,86.6951 +451702,259.15,88.4287 +451703,259,90.19175 +451704,258.81,91.9865 +451705,257.99,86.6631 +451706,257.83,88.4043 +451707,257.64,90.17551 +451708,257.41,91.9792 +451709,256.71,86.6324 +451710,256.51,88.3803 +451711,256.28,90.15878 +451712,256.01,91.9705 +451713,255.42,86.603 +451714,255.19,88.3567 +451715,254.92,90.14157 +451716,254.61,91.9604 +451717,254.14,86.575 +451718,253.86,88.3336 +451719,253.56,90.12387 +451720,253.21,91.9488 +451721,252.85,86.5484 +451722,252.54,88.3109 +451723,252.2,90.10567 +451724,251.81,91.9358 +451725,251.57,86.5231 +451726,251.22,88.2886 +451727,250.84,90.086982 +451728,250.41,91.9214 +451729,250.29,86.4992 +451730,249.9,88.2668 +451731,249.48,90.067803 +451732,249.01,91.9056 +451733,249,86.4766 +451734,248.58,88.2454 +451735,248.12,90.04813 +451736,247.61,91.8883 +451737,247.71,86.4554 +451738,247.25,88.2244 +451739,246.76,90.027965 +451740,246.21,91.8695 +451741,246.43,86.4355 +451742,245.93,88.2039 +451743,245.4,90.0073064 +451744,244.82,91.8494 +451745,245.14,86.417 +451746,244.61,88.1839 +451747,244.04,89.986156 +451748,243.42,91.8277 +451749,243.86,86.3998 +451750,243.29,88.1642 +451751,242.68,89.964513 +451752,242.02,91.8047 +451753,242.57,86.384 +451754,241.96,88.145 +451755,241.32,89.942379 +451756,240.63,91.7802 +451757,241.28,86.3695 +451758,240.64,88.1263 +451759,239.96,89.919755 +451760,239.23,91.7543 +451761,240,86.3564 +451762,239.32,88.1079 +451763,238.6,89.89664 +451764,237.83,91.7269 +451765,238.71,86.3446 +451766,238,88.09 +451767,237.24,89.87304 +451768,236.44,91.6981 +451769,237.42,86.3341 +451770,236.67,88.0726 +451771,235.88,89.84896 +451772,235.05,91.6679 +451773,236.13,86.325 +451774,235.35,88.0555 +451775,234.53,89.82439 +451776,233.65,91.6362 +451777,234.84,86.3172 +451778,234.03,88.0389 +451779,233.17,89.79934 +451780,232.26,91.6031 +451781,233.55,86.3106 +451782,232.7,88.0228 +451783,231.81,89.77381 +451784,230.87,91.5687 +451785,232.26,86.3054 +451786,231.38,88.007 +451787,230.45,89.74781 +451788,229.48,91.5328 +451789,230.97,86.3015 +451790,230.05,87.9916 +451791,229.1,89.72133 +451792,228.08,91.4955 +451793,229.68,86.2988 +451794,228.73,87.9767 +451795,227.74,89.69439 +451796,226.69,91.4569 +451797,228.39,86.2974 +451798,227.41,87.9622 +451799,226.38,89.66698 +451800,225.31,91.4168 +451801,227.09,86.2973 +451802,226.08,87.9481 +451803,225.03,89.6391 +451804,223.92,91.3755 +451805,225.8,86.2984 +451806,224.76,87.9344 +451807,223.67,89.61077 +451808,222.53,91.3327 +451809,224.5,86.3007 +451810,223.43,87.9211 +451811,222.31,89.58198 +451812,221.14,91.2886 +451813,223.21,86.3042 +451814,222.11,87.9082 +451815,220.96,89.55274 +451816,219.76,91.2432 +451817,221.91,86.309 +451818,220.78,87.8957 +451819,219.6,89.52306 +451820,218.37,91.1965 +451821,220.62,86.3149 +451822,219.46,87.8835 +451823,218.25,89.49294 +451824,216.99,91.1485 +451825,219.32,86.3221 +451826,218.13,87.8718 +451827,216.9,89.46238 +451828,215.61,91.0991 +451829,218.02,86.3303 +451830,216.8,87.8604 +451831,215.54,89.43139 +451832,214.23,91.0486 +451833,216.72,86.3398 +451834,215.48,87.8494 +451835,214.19,89.39998 +451836,212.84,90.99672 +451837,215.42,86.3503 +451838,214.15,87.8388 +451839,212.84,89.36815 +451840,211.46,90.94364 +451841,214.12,86.362 +451842,212.82,87.8285 +451843,211.48,89.3359 +451844,210.09,90.88934 +451845,212.82,86.3747 +451846,211.5,87.8186 +451847,210.13,89.30325 +451848,208.71,90.83385 +451849,211.51,86.3886 +451850,210.17,87.8091 +451851,208.78,89.2702 +451852,207.33,90.77717 +451853,210.21,86.4034 +451854,208.84,87.7998 +451855,207.43,89.23675 +451856,205.96,90.71932 +451857,208.9,86.4194 +451858,207.51,87.791 +451859,206.08,89.20292 +451860,204.58,90.66033 +451861,207.6,86.4363 +451862,206.18,87.7824 +451863,204.72,89.1687 +451864,203.21,90.60022 +451865,206.29,86.4542 +451866,204.86,87.7742 +451867,203.37,89.13411 +451868,201.84,90.53901 +451869,204.98,86.4731 +451870,203.53,87.7663 +451871,202.02,89.09916 +451872,200.47,90.47672 +451873,203.67,86.493 +451874,202.2,87.7587 +451875,200.67,89.06384 +451876,199.1,90.41338 +451877,202.36,86.5138 +451878,200.87,87.7514 +451879,199.33,89.02818 +451880,197.73,90.349 +451881,201.05,86.5355 +451882,199.54,87.7444 +451883,197.98,88.9922 +451884,196.36,90.28361 +451885,199.74,86.5581 +451886,198.21,87.7377 +451887,196.63,88.9558 +451888,195,90.21723 +451889,198.43,86.5815 +451890,196.88,87.7312 +451891,195.28,88.9192 +451892,193.63,90.14989 +451893,197.11,86.6058 +451894,195.54,87.7251 +451895,193.93,88.8822 +451896,192.27,90.081622 +451897,195.79,86.6309 +451898,194.21,87.7192 +451899,192.59,88.8449 +451900,190.91,90.01244 +451901,194.48,86.6569 +451902,192.88,87.7135 +451903,191.24,88.8072 +451904,189.55,89.942374 +451905,193.16,86.6835 +451906,191.55,87.7081 +451907,189.89,88.7693 +451908,188.19,89.87145 +451909,191.84,86.711 +451910,190.22,87.703 +451911,188.55,88.7312 +451912,186.83,89.7997 +451913,190.52,86.7391 +451914,188.88,87.698 +451915,187.2,88.6927 +451916,185.48,89.72714 +451917,189.2,86.7679 +451918,187.55,87.6933 +451919,185.86,88.654 +451920,184.12,89.65381 +451921,187.87,86.7974 +451922,186.21,87.6888 +451923,184.52,88.615 +451924,182.77,89.57973 +451925,186.55,86.8276 +451926,184.88,87.6845 +451927,183.17,88.5758 +451928,181.42,89.50494 +451929,185.22,86.8583 +451930,183.55,87.6805 +451931,181.83,88.5363 +451932,180.06,89.42945 +451933,183.89,86.8897 +451934,182.21,87.6765 +451935,180.49,88.4966 +451936,178.71,89.35331 +451937,182.57,86.9216 +451938,180.88,87.6728 +451939,179.14,88.4567 +451940,177.37,89.27654 +451941,181.24,86.954 +451942,179.54,87.6693 +451943,177.8,88.4165 +451944,176.02,89.19916 +451945,179.91,86.9869 +451946,178.2,87.6659 +451947,176.46,88.3762 +451948,174.67,89.12122 +451949,178.57,87.0204 +451950,176.87,87.6626 +451951,175.12,88.3357 +451952,173.33,89.04274 +451953,177.24,87.0542 +451954,175.53,87.6595 +451955,173.78,88.295 +451956,171.99,88.9638 +451957,175.9,87.0885 +451958,174.19,87.6565 +451959,172.44,88.2541 +451960,170.65,88.8843 +451961,174.57,87.1232 +451962,172.85,87.6536 +451963,171.1,88.2131 +451964,169.31,88.8044 +451965,173.23,87.1582 +451966,171.52,87.6509 +451967,169.76,88.1719 +451968,167.97,88.7241 +451969,171.89,87.1936 +451970,170.18,87.6482 +451971,168.42,88.1306 +451972,166.63,88.6433 +451973,170.55,87.2293 +451974,168.84,87.6457 +451975,167.09,88.0891 +451976,165.3,88.5623 +451977,169.21,87.2652 +451978,167.5,87.6432 +451979,165.75,88.0476 +451980,163.96,88.4809 +451981,167.87,87.3015 +451982,166.16,87.6408 +451983,164.41,88.0059 +451984,162.63,88.3993 +451985,166.52,87.3379 +451986,164.82,87.6384 +451987,163.08,87.9641 +451988,161.3,88.3173 +451989,165.18,87.3745 +451990,163.48,87.6361 +451991,161.74,87.9223 +451992,159.97,88.2352 +451993,163.83,87.4113 +451994,162.14,87.6339 +451995,160.41,87.8803 +451996,158.64,88.1529 +451997,162.48,87.4482 +451998,160.79,87.6316 +451999,159.07,87.8383 +452000,157.31,88.0704 +452001,161.13,87.4852 +452002,159.45,87.6294 +452003,157.74,87.7963 +452004,155.99,87.9878 +452005,159.78,87.5222 +452006,158.11,87.6272 +452007,156.4,87.7542 +452008,154.66,87.9051 +452009,158.43,87.5593 +452010,156.77,87.6251 +452011,155.07,87.712 +452012,153.34,87.8223 +452013,157.08,87.5965 +452014,155.42,87.6228 +452015,153.74,87.6699 +452016,152.02,87.7396 +452017,155.72,87.6336 +452018,154.08,87.6206 +452019,152.41,87.6277 +452020,150.7,87.6568 +452021,154.37,87.6706 +452022,152.74,87.6184 +452023,151.07,87.5855 +452024,149.38,87.574 +452025,153.01,87.7076 +452026,151.39,87.6161 +452027,149.74,87.5434 +452028,148.06,87.4914 +452029,151.65,87.7444 +452030,150.05,87.6137 +452031,148.41,87.5012 +452032,146.75,87.4088 +452033,150.29,87.7812 +452034,148.7,87.6113 +452035,147.08,87.4591 +452036,145.43,87.3264 +452037,148.93,87.8177 +452038,147.35,87.6088 +452039,145.75,87.417 +452040,144.12,87.2441 +452041,147.57,87.8541 +452042,146.01,87.6063 +452043,144.42,87.375 +452044,142.81,87.162 +452045,146.21,87.8902 +452046,144.66,87.6036 +452047,143.09,87.3331 +452048,141.5,87.0802 +452049,144.84,87.9261 +452050,143.32,87.6009 +452051,141.76,87.2912 +452052,140.19,86.9986 +452053,143.47,87.9617 +452054,141.97,87.598 +452055,140.44,87.2494 +452056,138.88,86.9173 +452057,142.11,87.997 +452058,140.62,87.5951 +452059,139.11,87.2076 +452060,137.57,86.8364 +452061,140.74,88.0319 +452062,139.27,87.592 +452063,137.78,87.166 +452064,136.26,86.7558 +452065,139.37,88.0664 +452066,137.92,87.5887 +452067,136.45,87.1245 +452068,134.96,86.6755 +452069,138,88.1006 +452070,136.58,87.5853 +452071,135.13,87.0831 +452072,133.66,86.5957 +452073,136.63,88.1343 +452074,135.23,87.5818 +452075,133.8,87.0419 +452076,132.35,86.5164 +452077,135.25,88.1676 +452078,133.88,87.5781 +452079,132.48,87.0008 +452080,131.05,86.4375 +452081,133.88,88.2004 +452082,132.53,87.5742 +452083,131.15,86.9598 +452084,129.75,86.3591 +452085,132.51,88.2327 +452086,131.18,87.5701 +452087,129.83,86.919 +452088,128.45,86.2812 +452089,131.13,88.2644 +452090,129.83,87.5658 +452091,128.5,86.8784 +452092,127.16,86.204 +452093,129.75,88.2956 +452094,128.48,87.5613 +452095,127.18,86.838 +452096,125.86,86.1273 +452097,128.37,88.3261 +452098,127.13,87.5566 +452099,125.86,86.7977 +452100,124.56,86.0512 +452101,127,88.3561 +452102,125.78,87.5517 +452103,124.53,86.7577 +452104,123.27,85.9758 +452105,125.62,88.3854 +452106,124.42,87.5465 +452107,123.21,86.7179 +452108,121.97,85.901 +452109,124.23,88.414 +452110,123.07,87.5411 +452111,121.89,86.6782 +452112,120.68,85.827 +452113,122.85,88.442 +452114,121.72,87.5355 +452115,120.57,86.6388 +452116,119.39,85.7536 +452117,121.47,88.4692 +452118,120.37,87.5296 +452119,119.24,86.5997 +452120,118.1,85.6811 +452121,120.08,88.4956 +452122,119.01,87.5234 +452123,117.92,86.5608 +452124,116.81,85.6093 +452125,118.7,88.5213 +452126,117.66,87.517 +452127,116.6,86.5221 +452128,115.52,85.5383 +452129,117.31,88.5462 +452130,116.31,87.5102 +452131,115.28,86.4837 +452132,114.23,85.4681 +452133,115.93,88.5703 +452134,114.96,87.5032 +452135,113.96,86.4455 +452136,112.94,85.3988 +452137,114.54,88.5935 +452138,113.6,87.4959 +452139,112.64,86.4077 +452140,111.66,85.3304 +452141,113.15,88.6158 +452142,112.25,87.4883 +452143,111.32,86.3701 +452144,110.37,85.2628 +452145,111.76,88.6373 +452146,110.89,87.4803 +452147,110,86.3328 +452148,109.09,85.1962 +452149,110.37,88.6578 +452150,109.54,87.4721 +452151,108.68,86.2958 +452152,107.8,85.1306 +452153,108.98,88.6774 +452154,108.18,87.4635 +452155,107.36,86.2592 +452156,106.52,85.0659 +452157,107.59,88.6961 +452158,106.83,87.4546 +452159,106.05,86.2228 +452160,105.24,85.0022 +452161,106.2,88.7137 +452162,105.48,87.4453 +452163,104.73,86.1868 +452164,103.96,84.9394 +452165,104.81,88.7304 +452166,104.12,87.4357 +452167,103.41,86.1511 +452168,102.67,84.8778 +452169,103.42,88.7461 +452170,102.76,87.4257 +452171,102.09,86.1157 +452172,101.39,84.8171 +452173,102.02,88.7607 +452174,101.41,87.4154 +452175,100.77,86.0806 +452176,100.11,84.7576 +452177,100.63,88.7742 +452178,100.05,87.4047 +452179,99.456,86.0459 +452180,98.834,84.6991 +452181,99.233,88.7867 +452182,98.698,87.3936 +452183,98.139,86.0116 +452184,97.555,84.6417 +452185,97.838,88.7981 +452186,97.343,87.3822 +452187,96.822,85.9776 +452188,96.276,84.5854 +452189,96.442,88.8084 +452190,95.987,87.3704 +452191,95.505,85.944 +452192,94.998,84.5303 +452193,95.047,88.8175 +452194,94.631,87.3581 +452195,94.188,85.9108 +452196,93.721,84.4763 +452197,93.65,88.8256 +452198,93.275,87.3455 +452199,92.872,85.8779 +452200,92.444,84.4235 +452201,92.254,88.8324 +452202,91.918,87.3325 +452203,91.556,85.8454 +452204,91.167,84.3719 +452205,90.857,88.8381 +452206,90.562,87.3191 +452207,90.24,85.8133 +452208,89.89,84.3214 +452209,89.459,88.8426 +452210,89.206,87.3053 +452211,88.924,85.7816 +452212,88.614,84.2722 +452213,88.062,88.8458 +452214,87.849,87.291 +452215,87.608,85.7503 +452216,87.338,84.2242 +452217,86.664,88.8479 +452218,86.493,87.2763 +452219,86.292,85.7194 +452220,86.063,84.1774 +452221,85.266,88.8487 +452222,85.137,87.2613 +452223,84.977,85.6889 +452224,84.787,84.1318 +452225,83.868,88.8483 +452226,83.78,87.2457 +452227,83.661,85.6587 +452228,83.512,84.0875 +452229,82.47,88.8467 +452230,82.424,87.2298 +452231,82.346,85.629 +452232,82.237,84.0445 +452233,81.071,88.8437 +452234,81.067,87.2134 +452235,81.03,85.5998 +452236,80.963,84.0027 +452237,79.673,88.8395 +452238,79.711,87.1966 +452239,79.715,85.5709 +452240,79.688,83.9622 +452241,78.274,88.8341 +452242,78.354,87.1794 +452243,78.4,85.5424 +452244,78.413,83.923 +452245,76.876,88.8273 +452246,76.998,87.1617 +452247,77.085,85.5144 +452248,77.139,83.8851 +452249,75.477,88.8192 +452250,75.641,87.1435 +452251,75.77,85.4868 +452252,75.864,83.8485 +452253,74.079,88.8098 +452254,74.285,87.125 +452255,74.454,85.4596 +452256,74.59,83.8132 +452257,72.681,88.7991 +452258,72.929,87.1059 +452259,73.139,85.4329 +452260,73.315,83.7792 +452261,71.282,88.7871 +452262,71.573,87.0865 +452263,71.824,85.4065 +452264,72.041,83.7465 +452265,69.884,88.7737 +452266,70.216,87.0665 +452267,70.509,85.3806 +452268,70.766,83.7151 +452269,68.487,88.759 +452270,68.86,87.0461 +452271,69.194,85.3552 +452272,69.491,83.6851 +452273,67.089,88.743 +452274,67.505,87.0253 +452275,67.879,85.3301 +452276,68.216,83.6564 +452277,65.692,88.7256 +452278,66.149,87.004 +452279,66.564,85.3055 +452280,66.941,83.629 +452281,64.295,88.7069 +452282,64.793,86.9823 +452283,65.249,85.2814 +452284,65.666,83.6029 +452285,62.898,88.6869 +452286,63.438,86.9601 +452287,63.933,85.2577 +452288,64.39,83.5781 +452289,61.502,88.6655 +452290,62.082,86.9374 +452291,62.618,85.2344 +452292,63.114,83.5547 +452293,60.106,88.6427 +452294,60.727,86.9143 +452295,61.303,85.2115 +452296,61.838,83.5326 +452297,58.711,88.6186 +452298,59.372,86.8907 +452299,59.987,85.1891 +452300,60.561,83.5118 +452301,57.316,88.5932 +452302,58.017,86.8667 +452303,58.672,85.1671 +452304,59.284,83.4924 +452305,55.921,88.5664 +452306,56.662,86.8422 +452307,57.356,85.1455 +452308,58.007,83.4742 +452309,54.527,88.5382 +452310,55.308,86.8173 +452311,56.04,85.1244 +452312,56.729,83.4574 +452313,53.134,88.5087 +452314,53.954,86.7919 +452315,54.724,85.1037 +452316,55.451,83.4418 +452317,51.741,88.4779 +452318,52.6,86.7661 +452319,53.408,85.0835 +452320,54.172,83.4276 +452321,50.349,88.4458 +452322,51.246,86.7398 +452323,52.092,85.0636 +452324,52.893,83.4146 +452325,48.957,88.4123 +452326,49.892,86.7131 +452327,50.775,85.0442 +452328,51.613,83.403 +452329,47.566,88.3775 +452330,48.539,86.6859 +452331,49.459,85.0252 +452332,50.333,83.3926 +452333,46.176,88.3413 +452334,47.186,86.6583 +452335,48.142,85.0066 +452336,49.052,83.3835 +452337,44.787,88.3039 +452338,45.833,86.6302 +452339,46.825,84.9885 +452340,47.77,83.3756 +452341,43.398,88.2651 +452342,44.481,86.6017 +452343,45.508,84.9708 +452344,46.488,83.3691 +452345,42.011,88.2251 +452346,43.128,86.5728 +452347,44.191,84.9534 +452348,45.205,83.3637 +452349,40.624,88.1838 +452350,41.776,86.5435 +452351,42.873,84.9365 +452352,43.921,83.3596 +452353,39.237,88.1412 +452354,40.425,86.5137 +452355,41.555,84.92 +452356,42.637,83.3567 +452357,37.852,88.0973 +452358,39.074,86.4835 +452359,40.237,84.9039 +452360,41.352,83.355 +452361,36.468,88.0522 +452362,37.723,86.4529 +452363,38.919,84.8882 +452364,40.066,83.3545 +452365,35.085,88.0058 +452366,36.372,86.4218 +452367,37.601,84.8728 +452368,38.779,83.3552 +452369,33.702,87.9582 +452370,35.022,86.3904 +452371,36.282,84.8579 +452372,37.491,83.3571 +452373,32.321,87.9094 +452374,33.672,86.3586 +452375,34.963,84.8434 +452376,36.203,83.3601 +452377,30.941,87.8594 +452378,32.322,86.3263 +452379,33.643,84.8292 +452380,34.913,83.3643 +452381,29.562,87.8082 +452382,30.973,86.2937 +452383,32.324,84.8154 +452384,33.623,83.3695 +452385,28.183,87.7558 +452386,29.624,86.2606 +452387,31.004,84.802 +452388,32.332,83.3759 +452389,26.806,87.7022 +452390,28.276,86.2272 +452391,29.684,84.7889 +452392,31.04,83.3834 +452393,25.43,87.6476 +452394,26.928,86.1934 +452395,28.363,84.7762 +452396,29.746,83.392 +452397,24.056,87.5918 +452398,25.58,86.1592 +452399,27.043,84.7638 +452400,28.452,83.4016 +452401,22.682,87.5348 +452402,24.233,86.1247 +452403,25.721,84.7518 +452404,27.157,83.4123 +452405,21.31,87.4768 +452406,22.886,86.0898 +452407,24.4,84.7402 +452408,25.861,83.4239 +452409,19.938,87.4178 +452410,21.54,86.0545 +452411,23.078,84.7288 +452412,24.563,83.4366 +452413,18.568,87.3576 +452414,20.194,86.0189 +452415,21.756,84.7178 +452416,23.265,83.4503 +452417,17.2,87.2965 +452418,18.848,85.983 +452419,20.434,84.7071 +452420,21.965,83.4649 +452421,15.832,87.2343 +452422,17.503,85.9467 +452423,19.111,84.6968 +452424,20.665,83.4805 +452425,14.466,87.1711 +452426,16.158,85.9101 +452427,17.788,84.6867 +452428,19.363,83.497 +452429,13.101,87.107 +452430,14.814,85.8732 +452431,16.464,84.677 +452432,18.06,83.5143 +452433,11.738,87.0419 +452434,13.47,85.8359 +452435,15.14,84.6675 +452436,16.756,83.5326 +452437,10.375,86.9759 +452438,12.127,85.7984 +452439,13.816,84.6583 +452440,15.451,83.5517 +452441,9.0145,86.909 +452442,10.784,85.7605 +452443,12.491,84.6494 +452444,14.144,83.5717 +452445,7.655,86.8413 +452446,9.442,85.7224 +452447,11.166,84.6408 +452448,12.836,83.5924 +452449,6.2969,86.7726 +452450,8.1002,85.684 +452451,9.8407,84.6324 +452452,11.527,83.614 +452453,4.9402,86.7032 +452454,6.7588,85.6453 +452455,8.5148,84.6243 +452456,10.217,83.6363 +452457,3.5849,86.6329 +452458,5.4179,85.6063 +452459,7.1886,84.6164 +452460,8.9055,83.6593 +452461,2.231,86.5619 +452462,4.0775,85.5671 +452463,5.8619,84.6088 +452464,7.5927,83.6831 +452465,0.87861,86.4901 +452466,2.7376,85.5276 +452467,4.5348,84.6014 +452468,6.2786,83.7075 +452469,359.53,86.4176 +452470,1.3982,85.4879 +452471,3.2074,84.5942 +452472,4.9632,83.7326 +452473,358.18,86.3444 +452474,0.059268,85.448 +452475,1.8795,84.5873 +452476,3.6465,83.7584 +452477,356.83,86.2705 +452478,358.72,85.4079 +452479,0.55114,84.5805 +452480,2.3285,83.7847 +452481,355.48,86.196 +452482,357.38,85.3675 +452483,359.22,84.5739 +452484,1.0092,83.8116 +452485,354.14,86.1208 +452486,356.05,85.3269 +452487,357.89,84.5676 +452488,359.69,83.8391 +452489,352.79,86.0451 +452490,354.71,85.2862 +452491,356.56,84.5614 +452492,358.37,83.8672 +452493,351.45,85.9688 +452494,353.37,85.2452 +452495,355.23,84.5553 +452496,357.04,83.8957 +452497,350.11,85.892 +452498,352.04,85.2041 +452499,353.9,84.5495 +452500,355.72,83.9247 +452501,348.77,85.8147 +452502,350.7,85.1628 +452503,352.57,84.5437 +452504,354.39,83.9542 +452505,347.43,85.7369 +452506,349.37,85.1213 +452507,351.24,84.5382 +452508,353.06,83.9841 +452509,346.1,85.6586 +452510,348.03,85.0797 +452511,349.91,84.5327 +452512,351.74,84.0143 +452513,344.76,85.58 +452514,346.7,85.038 +452515,348.58,84.5274 +452516,350.41,84.045 +452517,343.43,85.501 +452518,345.37,84.9961 +452519,347.24,84.5222 +452520,349.07,84.076 +452521,342.1,85.4216 +452522,344.03,84.9542 +452523,345.91,84.5171 +452524,347.74,84.1073 +452525,340.77,85.3419 +452526,342.7,84.9121 +452527,344.58,84.5121 +452528,346.41,84.1389 +452529,339.44,85.2619 +452530,341.37,84.8699 +452531,343.24,84.5072 +452532,345.07,84.1707 +452533,338.11,85.1816 +452534,340.04,84.8276 +452535,341.91,84.5023 +452536,343.73,84.2028 +452537,336.79,85.1012 +452538,338.71,84.7853 +452539,340.57,84.4975 +452540,342.39,84.235 +452541,335.46,85.0205 +452542,337.38,84.7429 +452543,339.24,84.4928 +452544,341.05,84.2674 +452545,334.14,84.9396 +452546,336.05,84.7004 +452547,337.9,84.4881 +452548,339.71,84.3 +452549,332.82,84.8586 +452550,334.72,84.6579 +452551,336.57,84.4835 +452552,338.37,84.3327 +452553,331.5,84.7775 +452554,333.39,84.6153 +452555,335.23,84.4788 +452556,337.03,84.3655 +452557,330.18,84.6964 +452558,332.06,84.5727 +452559,333.89,84.4742 +452560,335.68,84.3983 +452561,328.86,84.6151 +452562,330.73,84.5301 +452563,332.56,84.4696 +452564,334.33,84.4311 +452565,327.55,84.5339 +452566,329.41,84.4875 +452567,331.22,84.465 +452568,332.99,84.464 +452569,326.24,84.4527 +452570,328.08,84.4449 +452571,329.88,84.4604 +452572,331.64,84.4968 +452573,324.92,84.3715 +452574,326.75,84.4023 +452575,328.54,84.4558 +452576,330.29,84.5295 +452577,323.61,84.2905 +452578,325.43,84.3598 +452579,327.2,84.4511 +452580,328.93,84.5622 +452581,322.3,84.2095 +452582,324.1,84.3172 +452583,325.86,84.4464 +452584,327.58,84.5947 +452585,320.99,84.1287 +452586,322.78,84.2748 +452587,324.52,84.4417 +452588,326.22,84.6271 +452589,319.69,84.048 +452590,321.46,84.2323 +452591,323.18,84.4369 +452592,324.87,84.6593 +452593,318.38,83.9676 +452594,320.13,84.19 +452595,321.84,84.432 +452596,323.51,84.6913 +452597,317.08,83.8874 +452598,318.81,84.1477 +452599,320.5,84.427 +452600,322.15,84.7231 +452601,315.78,83.8074 +452602,317.49,84.1055 +452603,319.16,84.4219 +452604,320.79,84.7547 +452605,314.47,83.7278 +452606,316.16,84.0634 +452607,317.82,84.4168 +452608,319.43,84.7859 +452609,313.17,83.6484 +452610,314.84,84.0213 +452611,316.47,84.4115 +452612,318.07,84.8168 +452613,311.88,83.5695 +452614,313.52,83.9794 +452615,315.13,84.4061 +452616,316.7,84.8474 +452617,310.58,83.4909 +452618,312.2,83.9377 +452619,313.79,84.4006 +452620,315.34,84.8776 +452621,309.28,83.4127 +452622,310.88,83.896 +452623,312.44,84.3949 +452624,313.97,84.9074 +452625,307.99,83.335 +452626,309.56,83.8545 +452627,311.1,84.3891 +452628,312.6,84.9368 +452629,306.69,83.2577 +452630,308.24,83.8132 +452631,309.75,84.3832 +452632,311.23,84.9657 +452633,305.4,83.181 +452634,306.92,83.772 +452635,308.41,84.3771 +452636,309.86,84.9942 +452637,304.11,83.1048 +452638,305.6,83.731 +452639,307.06,84.3708 +452640,308.49,85.0221 +452641,302.82,83.0291 +452642,304.29,83.6902 +452643,305.72,84.3643 +452644,307.12,85.0496 +452645,301.53,82.954 +452646,302.97,83.6495 +452647,304.37,84.3576 +452648,305.75,85.0764 +452649,300.24,82.8795 +452650,301.65,83.6091 +452651,303.03,84.3508 +452652,304.37,85.1027 +452653,298.96,82.8057 +452654,300.33,83.5688 +452655,301.68,84.3437 +452656,303,85.1284 +452657,297.67,82.7325 +452658,299.02,83.5288 +452659,300.33,84.3364 +452660,301.62,85.1534 +452661,296.38,82.6601 +452662,297.7,83.489 +452663,298.99,84.3289 +452664,300.24,85.1778 +452665,295.1,82.5883 +452666,296.39,83.4495 +452667,297.64,84.3212 +452668,298.86,85.2016 +452669,293.82,82.5173 +452670,295.07,83.4101 +452671,296.29,84.3132 +452672,297.48,85.2246 +452673,292.54,82.447 +452674,293.76,83.3711 +452675,294.94,84.305 +452676,296.1,85.2468 +452677,291.26,82.3776 +452678,292.44,83.3322 +452679,293.6,84.2965 +452680,294.72,85.2684 +452681,289.98,82.3089 +452682,291.13,83.2937 +452683,292.25,84.2877 +452684,293.34,85.2891 +452685,288.7,82.2411 +452686,289.81,83.2554 +452687,290.9,84.2787 +452688,291.96,85.3091 +452689,287.42,82.1742 +452690,288.5,83.2174 +452691,289.55,84.2694 +452692,290.57,85.3282 +452693,286.14,82.1081 +452694,287.19,83.1797 +452695,288.2,84.2598 +452696,289.19,85.3465 +452697,284.87,82.0429 +452698,285.87,83.1423 +452699,286.85,84.2499 +452700,287.8,85.364 +452701,283.59,81.9787 +452702,284.56,83.1052 +452703,285.5,84.2397 +452704,286.41,85.3806 +452705,282.32,81.9154 +452706,283.25,83.0684 +452707,284.15,84.2292 +452708,285.03,85.3962 +452709,281.04,81.8531 +452710,281.94,83.0319 +452711,282.8,84.2184 +452712,283.64,85.411 +452713,279.77,81.7918 +452714,280.62,82.9957 +452715,281.45,84.2073 +452716,282.25,85.4248 +452717,278.5,81.7315 +452718,279.31,82.9599 +452719,280.1,84.1958 +452720,280.86,85.4376 +452721,277.23,81.6722 +452722,278,82.9244 +452723,278.75,84.184 +452724,279.47,85.4495 +452725,275.95,81.614 +452726,276.69,82.8893 +452727,277.4,84.1719 +452728,278.08,85.4604 +452729,274.68,81.5568 +452730,275.38,82.8545 +452731,276.05,84.1595 +452732,276.69,85.4702 +452733,273.41,81.5007 +452734,274.07,82.82 +452735,274.69,84.1466 +452736,275.29,85.479 +452737,272.14,81.4457 +452738,272.76,82.7859 +452739,273.34,84.1335 +452740,273.9,85.4868 +452741,270.88,81.3918 +452742,271.45,82.7522 +452743,271.99,84.1199 +452744,272.51,85.4935 +452745,269.61,81.339 +452746,270.14,82.7188 +452747,270.64,84.106 +452748,271.11,85.4992 +452749,268.34,81.2874 +452750,268.83,82.6858 +452751,269.29,84.0917 +452752,269.72,85.5037 +452753,267.07,81.2369 +452754,267.52,82.6532 +452755,267.94,84.0771 +452756,268.33,85.5072 +452757,265.8,81.1876 +452758,266.21,82.621 +452759,266.58,84.0621 +452760,266.93,85.5095 +452761,264.54,81.1395 +452762,264.9,82.5892 +452763,265.23,84.0467 +452764,265.54,85.5107 +452765,263.27,81.0926 +452766,263.59,82.5577 +452767,263.88,84.0308 +452768,264.14,85.5107 +452769,262,81.0469 +452770,262.28,82.5267 +452771,262.53,84.0147 +452772,262.74,85.5096 +452773,260.74,81.0024 +452774,260.97,82.4961 +452775,261.17,83.9981 +452776,261.35,85.5073 +452777,259.47,80.9591 +452778,259.66,82.4658 +452779,259.82,83.9811 +452780,259.95,85.5039 +452781,258.21,80.917 +452782,258.35,82.436 +452783,258.47,83.9637 +452784,258.56,85.4992 +452785,256.94,80.8762 +452786,257.04,82.4066 +452787,257.12,83.9459 +452788,257.16,85.4933 +452789,255.68,80.8366 +452790,255.74,82.3775 +452791,255.77,83.9277 +452792,255.76,85.4863 +452793,254.41,80.7983 +452794,254.43,82.3489 +452795,254.41,83.9091 +452796,254.37,85.478 +452797,253.15,80.7613 +452798,253.12,82.3208 +452799,253.06,83.89 +452800,252.97,85.4685 +452801,251.88,80.7255 +452802,251.81,82.293 +452803,251.71,83.8706 +452804,251.57,85.4577 +452805,250.61,80.691 +452806,250.5,82.2657 +452807,250.36,83.8507 +452808,250.17,85.4458 +452809,249.35,80.6578 +452810,249.19,82.2387 +452811,249,83.8305 +452812,248.78,85.4325 +452813,248.08,80.6259 +452814,247.88,82.2123 +452815,247.65,83.8098 +452816,247.38,85.4181 +452817,246.82,80.5952 +452818,246.58,82.1862 +452819,246.3,83.7886 +452820,245.98,85.4023 +452821,245.55,80.5659 +452822,245.27,82.1605 +452823,244.95,83.7671 +452824,244.59,85.3853 +452825,244.29,80.5378 +452826,243.96,82.1353 +452827,243.6,83.7451 +452828,243.19,85.3671 +452829,243.02,80.511 +452830,242.65,82.1106 +452831,242.24,83.7227 +452832,241.8,85.3476 +452833,241.76,80.4855 +452834,241.34,82.0862 +452835,240.89,83.6999 +452836,240.4,85.3268 +452837,240.49,80.4613 +452838,240.03,82.0623 +452839,239.54,83.6767 +452840,239.01,85.3047 +452841,239.22,80.4384 +452842,238.72,82.0388 +452843,238.19,83.653 +452844,237.61,85.2814 +452845,237.95,80.4168 +452846,237.42,82.0157 +452847,236.84,83.6289 +452848,236.22,85.2568 +452849,236.69,80.3965 +452850,236.11,81.9931 +452851,235.49,83.6044 +452852,234.82,85.2309 +452853,235.42,80.3774 +452854,234.8,81.9708 +452855,234.14,83.5794 +452856,233.43,85.2038 +452857,234.15,80.3596 +452858,233.49,81.949 +452859,232.78,83.5541 +452860,232.04,85.1754 +452861,232.88,80.3431 +452862,232.18,81.9277 +452863,231.43,83.5283 +452864,230.64,85.1457 +452865,231.61,80.3279 +452866,230.87,81.9067 +452867,230.08,83.5021 +452868,229.25,85.1148 +452869,230.34,80.3139 +452870,229.56,81.8862 +452871,228.73,83.4755 +452872,227.86,85.0826 +452873,229.07,80.3012 +452874,228.25,81.8661 +452875,227.38,83.4484 +452876,226.47,85.0492 +452877,227.8,80.2898 +452878,226.94,81.8464 +452879,226.03,83.421 +452880,225.08,85.0145 +452881,226.53,80.2795 +452882,225.63,81.8271 +452883,224.68,83.3931 +452884,223.69,84.9786 +452885,225.26,80.2705 +452886,224.32,81.8083 +452887,223.34,83.3648 +452888,222.3,84.9414 +452889,223.99,80.2628 +452890,223.01,81.7898 +452891,221.99,83.3361 +452892,220.91,84.903 +452893,222.71,80.2562 +452894,221.7,81.7718 +452895,220.64,83.307 +452896,219.52,84.8634 +452897,221.44,80.2509 +452898,220.39,81.7541 +452899,219.29,83.2775 +452900,218.14,84.8226 +452901,220.16,80.2467 +452902,219.08,81.7369 +452903,217.94,83.2476 +452904,216.75,84.7805 +452905,218.89,80.2437 +452906,217.77,81.7201 +452907,216.59,83.2173 +452908,215.37,84.7373 +452909,217.61,80.2419 +452910,216.45,81.7036 +452911,215.25,83.1867 +452912,213.98,84.6929 +452913,216.33,80.2413 +452914,215.14,81.6875 +452915,213.9,83.1556 +452916,212.6,84.6473 +452917,215.05,80.2417 +452918,213.83,81.6719 +452919,212.55,83.1241 +452920,211.22,84.6006 +452921,213.78,80.2434 +452922,212.52,81.6566 +452923,211.21,83.0923 +452924,209.84,84.5527 +452925,212.5,80.2461 +452926,211.2,81.6416 +452927,209.86,83.0601 +452928,208.46,84.5037 +452929,211.21,80.2499 +452930,209.89,81.6271 +452931,208.51,83.0275 +452932,207.08,84.4535 +452933,209.93,80.2548 +452934,208.58,81.6129 +452935,207.17,82.9946 +452936,205.7,84.4023 +452937,208.65,80.2608 +452938,207.26,81.599 +452939,205.82,82.9613 +452940,204.32,84.3499 +452941,207.37,80.2678 +452942,205.95,81.5856 +452943,204.48,82.9277 +452944,202.95,84.2965 +452945,206.08,80.2759 +452946,204.64,81.5724 +452947,203.14,82.8937 +452948,201.57,84.242 +452949,204.79,80.2849 +452950,203.32,81.5597 +452951,201.79,82.8593 +452952,200.2,84.1865 +452953,203.51,80.295 +452954,202.01,81.5472 +452955,200.45,82.8246 +452956,198.83,84.1299 +452957,202.22,80.3061 +452958,200.69,81.5351 +452959,199.11,82.7896 +452960,197.46,84.0723 +452961,200.93,80.3181 +452962,199.38,81.5233 +452963,197.76,82.7543 +452964,196.09,84.0137 +452965,199.64,80.331 +452966,198.06,81.5118 +452967,196.42,82.7186 +452968,194.72,83.9542 +452969,198.35,80.3449 +452970,196.74,81.5007 +452971,195.08,82.6827 +452972,193.35,83.8937 +452973,197.05,80.3596 +452974,195.43,81.4898 +452975,193.74,82.6464 +452976,191.98,83.8322 +452977,195.76,80.3752 +452978,194.11,81.4792 +452979,192.4,82.6098 +452980,190.62,83.7699 +452981,194.46,80.3917 +452982,192.79,81.469 +452983,191.06,82.573 +452984,189.26,83.7066 +452985,193.17,80.409 +452986,191.47,81.459 +452987,189.72,82.5358 +452988,187.9,83.6425 +452989,191.87,80.4272 +452990,190.15,81.4493 +452991,188.38,82.4984 +452992,186.54,83.5775 +452993,190.57,80.4461 +452994,188.84,81.4398 +452995,187.04,82.4607 +452996,185.18,83.5117 +452997,189.27,80.4658 +452998,187.52,81.4307 +452999,185.7,82.4227 +453000,183.82,83.4451 +453001,187.97,80.4862 +453002,186.2,81.4217 +453003,184.37,82.3845 +453004,182.46,83.3777 +453005,186.67,80.5073 +453006,184.88,81.4131 +453007,183.03,82.3461 +453008,181.11,83.3095 +453009,185.36,80.5292 +453010,183.56,81.4046 +453011,181.69,82.3074 +453012,179.75,83.2406 +453013,184.06,80.5517 +453014,182.24,81.3964 +453015,180.35,82.2685 +453016,178.4,83.171 +453017,182.75,80.5748 +453018,180.91,81.3884 +453019,179.02,82.2293 +453020,177.05,83.1006 +453021,181.44,80.5986 +453022,179.59,81.3807 +453023,177.68,82.19 +453024,175.7,83.0297 +453025,180.13,80.6229 +453026,178.27,81.3731 +453027,176.35,82.1504 +453028,174.36,82.9581 +453029,178.82,80.6478 +453030,176.95,81.3657 +453031,175.02,82.1107 +453032,173.01,82.8858 +453033,177.51,80.6733 +453034,175.62,81.3585 +453035,173.68,82.0707 +453036,171.67,82.813 +453037,176.19,80.6993 +453038,174.3,81.3515 +453039,172.35,82.0306 +453040,170.32,82.7397 +453041,174.88,80.7257 +453042,172.98,81.3447 +453043,171.02,81.9903 +453044,168.98,82.6658 +453045,173.56,80.7527 +453046,171.65,81.338 +453047,169.68,81.9499 +453048,167.64,82.5914 +453049,172.24,80.78 +453050,170.33,81.3315 +453051,168.35,81.9093 +453052,166.31,82.5165 +453053,170.92,80.8078 +453054,169,81.3251 +453055,167.02,81.8685 +453056,164.97,82.4411 +453057,169.6,80.836 +453058,167.68,81.3189 +453059,165.69,81.8276 +453060,163.64,82.3654 +453061,168.28,80.8645 +453062,166.35,81.3127 +453063,164.36,81.7866 +453064,162.3,82.2892 +453065,166.95,80.8933 +453066,165.02,81.3067 +453067,163.03,81.7455 +453068,160.97,82.2127 +453069,165.63,80.9225 +453070,163.7,81.3008 +453071,161.7,81.7043 +453072,159.64,82.1359 +453073,164.3,80.9519 +453074,162.37,81.295 +453075,160.37,81.663 +453076,158.31,82.0587 +453077,162.97,80.9815 +453078,161.04,81.2893 +453079,159.05,81.6216 +453080,156.99,81.9813 +453081,161.64,81.0114 +453082,159.71,81.2837 +453083,157.72,81.5801 +453084,155.66,81.9036 +453085,160.31,81.0414 +453086,158.38,81.2781 +453087,156.39,81.5386 +453088,154.34,81.8257 +453089,158.98,81.0717 +453090,157.05,81.2726 +453091,155.07,81.497 +453092,153.02,81.7476 +453093,157.64,81.102 +453094,155.72,81.2672 +453095,153.74,81.4553 +453096,151.7,81.6694 +453097,156.31,81.1325 +453098,154.39,81.2617 +453099,152.42,81.4136 +453100,150.38,81.591 +453101,154.97,81.163 +453102,153.06,81.2564 +453103,151.09,81.3719 +453104,149.06,81.5125 +453105,153.63,81.1936 +453106,151.73,81.251 +453107,149.77,81.3302 +453108,147.74,81.4339 +453109,152.29,81.2242 +453110,150.4,81.2457 +453111,148.44,81.2885 +453112,146.43,81.3553 +453113,150.95,81.2547 +453114,149.06,81.2403 +453115,147.12,81.2467 +453116,145.12,81.2767 +453117,149.61,81.2853 +453118,147.73,81.235 +453119,145.8,81.205 +453120,143.81,81.1981 +453121,148.26,81.3158 +453122,146.4,81.2296 +453123,144.48,81.1633 +453124,142.5,81.1196 +453125,146.92,81.3462 +453126,145.06,81.2242 +453127,143.16,81.1216 +453128,141.19,81.0411 +453129,145.57,81.3765 +453130,143.73,81.2188 +453131,141.84,81.08 +453132,139.88,80.9628 +453133,144.22,81.4066 +453134,142.39,81.2133 +453135,140.52,81.0384 +453136,138.58,80.8846 +453137,142.87,81.4365 +453138,141.06,81.2078 +453139,139.2,80.9969 +453140,137.27,80.8065 +453141,141.52,81.4663 +453142,139.72,81.2022 +453143,137.88,80.9555 +453144,135.97,80.7287 +453145,140.17,81.4958 +453146,138.39,81.1965 +453147,136.56,80.9141 +453148,134.67,80.651 +453149,138.81,81.5251 +453150,137.05,81.1908 +453151,135.24,80.8728 +453152,133.37,80.5737 +453153,137.46,81.554 +453154,135.71,81.1849 +453155,133.92,80.8316 +453156,132.08,80.4966 +453157,136.1,81.5827 +453158,134.38,81.179 +453159,132.6,80.7906 +453160,130.78,80.4198 +453161,134.74,81.611 +453162,133.04,81.1729 +453163,131.29,80.7496 +453164,129.48,80.3434 +453165,133.38,81.639 +453166,131.7,81.1668 +453167,129.97,80.7088 +453168,128.19,80.2673 +453169,132.02,81.6666 +453170,130.36,81.1605 +453171,128.66,80.6681 +453172,126.9,80.1917 +453173,130.66,81.6937 +453174,129.02,81.1541 +453175,127.34,80.6275 +453176,125.61,80.1165 +453177,129.29,81.7204 +453178,127.68,81.1475 +453179,126.03,80.5871 +453180,124.32,80.0417 +453181,127.93,81.7467 +453182,126.34,81.1408 +453183,124.71,80.5469 +453184,123.03,79.967 +453185,126.56,81.7724 +453186,125,81.1339 +453187,123.4,80.5069 +453188,121.75,79.894 +453189,125.19,81.7977 +453190,123.66,81.1268 +453191,122.08,80.467 +453192,120.46,79.82 +453193,123.83,81.8223 +453194,122.32,81.1196 +453195,120.77,80.4273 +453196,119.18,79.748 +453197,122.46,81.8465 +453198,120.98,81.1121 +453199,119.46,80.3878 +453200,117.89,79.676 +453201,121.09,81.87 +453202,119.64,81.1045 +453203,118.15,80.3485 +453204,116.61,79.604 +453205,119.71,81.8929 +453206,118.3,81.0967 +453207,116.84,80.3095 +453208,115.33,79.533 +453209,118.34,81.9152 +453210,116.95,81.0886 +453211,115.52,80.2706 +453212,114.05,79.463 +453213,116.97,81.9368 +453214,115.61,81.0804 +453215,114.21,80.232 +453216,112.77,79.394 +453217,115.59,81.9577 +453218,114.27,81.0719 +453219,112.9,80.1937 +453220,111.5,79.325 +453221,114.21,81.9779 +453222,112.92,81.0632 +453223,111.59,80.1556 +453224,110.22,79.257 +453225,112.84,81.9974 +453226,111.58,81.0542 +453227,110.28,80.1177 +453228,108.95,79.19 +453229,111.46,82.0162 +453230,110.24,81.045 +453231,108.97,80.0801 +453232,107.67,79.124 +453233,110.08,82.0341 +453234,108.89,81.0355 +453235,107.67,80.0428 +453236,106.4,79.058 +453237,108.7,82.0513 +453238,107.55,81.0258 +453239,106.36,80.0057 +453240,105.13,78.993 +453241,107.32,82.0677 +453242,106.2,81.0157 +453243,105.05,79.969 +453244,103.86,78.929 +453245,105.94,82.0832 +453246,104.86,81.0055 +453247,103.74,79.932 +453248,102.59,78.866 +453249,104.55,82.0978 +453250,103.51,80.9949 +453251,102.43,79.896 +453252,101.32,78.804 +453253,103.17,82.1116 +453254,102.16,80.984 +453255,101.13,79.86 +453256,100.05,78.743 +453257,101.78,82.1245 +453258,100.82,80.9728 +453259,99.818,79.825 +453260,98.783,78.683 +453261,100.4,82.1365 +453262,99.472,80.9614 +453263,98.512,79.79 +453264,97.517,78.623 +453265,99.011,82.1476 +453266,98.125,80.9496 +453267,97.205,79.755 +453268,96.251,78.565 +453269,97.624,82.1577 +453270,96.778,80.9375 +453271,95.899,79.72 +453272,94.986,78.508 +453273,96.236,82.1669 +453274,95.431,80.925 +453275,94.593,79.686 +453276,93.722,78.451 +453277,94.847,82.175 +453278,94.084,80.9123 +453279,93.288,79.652 +453280,92.458,78.396 +453281,93.458,82.1822 +453282,92.736,80.8992 +453283,91.982,79.619 +453284,91.196,78.342 +453285,92.068,82.1884 +453286,91.389,80.8858 +453287,90.677,79.585 +453288,89.933,78.289 +453289,90.677,82.1935 +453290,90.041,80.872 +453291,89.372,79.553 +453292,88.672,78.237 +453293,89.286,82.1976 +453294,88.693,80.8579 +453295,88.068,79.52 +453296,87.41,78.186 +453297,87.895,82.2007 +453298,87.345,80.8434 +453299,86.763,79.488 +453300,86.15,78.136 +453301,86.503,82.2027 +453302,85.997,80.8286 +453303,85.459,79.456 +453304,84.89,78.087 +453305,85.11,82.2036 +453306,84.648,80.8134 +453307,84.155,79.425 +453308,83.63,78.04 +453309,83.717,82.2034 +453310,83.3,80.7979 +453311,82.851,79.394 +453312,82.371,77.993 +453313,82.324,82.2021 +453314,81.951,80.7819 +453315,81.547,79.363 +453316,81.112,77.948 +453317,80.93,82.1997 +453318,80.602,80.7656 +453319,80.243,79.333 +453320,79.853,77.904 +453321,79.536,82.1961 +453322,79.254,80.749 +453323,78.94,79.303 +453324,78.595,77.861 +453325,78.142,82.1915 +453326,77.905,80.7319 +453327,77.637,79.274 +453328,77.337,77.819 +453329,76.747,82.1857 +453330,76.556,80.7145 +453331,76.333,79.245 +453332,76.079,77.779 +453333,75.352,82.1787 +453334,75.207,80.6966 +453335,75.03,79.216 +453336,74.822,77.739 +453337,73.957,82.1706 +453338,73.858,80.6784 +453339,73.727,79.188 +453340,73.565,77.701 +453341,72.562,82.1613 +453342,72.509,80.6598 +453343,72.424,79.16 +453344,72.307,77.665 +453345,71.166,82.1508 +453346,71.16,80.6408 +453347,71.121,79.133 +453348,71.05,77.629 +453349,69.771,82.1392 +453350,69.811,80.6214 +453351,69.818,79.106 +453352,69.793,77.595 +453353,68.375,82.1263 +453354,68.462,80.6016 +453355,68.515,79.08 +453356,68.536,77.561 +453357,66.98,82.1123 +453358,67.113,80.5814 +453359,67.212,79.053 +453360,67.28,77.53 +453361,65.584,82.0971 +453362,65.764,80.5608 +453363,65.91,79.028 +453364,66.023,77.499 +453365,64.189,82.0806 +453366,64.415,80.5398 +453367,64.607,79.002 +453368,64.765,77.47 +453369,62.793,82.063 +453370,63.066,80.5184 +453371,63.304,78.978 +453372,63.508,77.441 +453373,61.398,82.0441 +453374,61.717,80.4966 +453375,62.001,78.953 +453376,62.251,77.415 +453377,60.003,82.0241 +453378,60.369,80.4744 +453379,60.698,78.929 +453380,60.994,77.389 +453381,58.608,82.0028 +453382,59.02,80.4518 +453383,59.395,78.906 +453384,59.736,77.365 +453385,57.213,81.9803 +453386,57.671,80.4288 +453387,58.092,78.882 +453388,58.478,77.342 +453389,55.819,81.9566 +453390,56.323,80.4054 +453391,56.789,78.86 +453392,57.22,77.32 +453393,54.425,81.9317 +453394,54.975,80.3816 +453395,55.486,78.837 +453396,55.961,77.299 +453397,53.031,81.9056 +453398,53.627,80.3573 +453399,54.183,78.815 +453400,54.703,77.28 +453401,51.638,81.8783 +453402,52.279,80.3327 +453403,52.879,78.794 +453404,53.443,77.262 +453405,50.245,81.8497 +453406,50.931,80.3077 +453407,51.576,78.773 +453408,52.184,77.245 +453409,48.852,81.82 +453410,49.583,80.2822 +453411,50.272,78.752 +453412,50.924,77.229 +453413,47.46,81.789 +453414,48.236,80.2564 +453415,48.969,78.732 +453416,49.663,77.215 +453417,46.069,81.7568 +453418,46.889,80.2302 +453419,47.665,78.712 +453420,48.402,77.202 +453421,44.678,81.7235 +453422,45.541,80.2035 +453423,46.361,78.692 +453424,47.141,77.19 +453425,43.287,81.689 +453426,44.195,80.1765 +453427,45.057,78.673 +453428,45.878,77.18 +453429,41.897,81.6532 +453430,42.848,80.1491 +453431,43.752,78.655 +453432,44.616,77.17 +453433,40.508,81.6164 +453434,41.502,80.1213 +453435,42.448,78.636 +453436,43.352,77.162 +453437,39.12,81.5783 +453438,40.156,80.0931 +453439,41.143,78.619 +453440,42.088,77.155 +453441,37.732,81.5391 +453442,38.81,80.0645 +453443,39.838,78.601 +453444,40.823,77.149 +453445,36.345,81.4987 +453446,37.464,80.0356 +453447,38.533,78.584 +453448,39.558,77.144 +453449,34.959,81.4572 +453450,36.119,80.0062 +453451,37.228,78.568 +453452,38.292,77.141 +453453,33.573,81.4145 +453454,34.774,79.977 +453455,35.922,78.551 +453456,37.025,77.138 +453457,32.189,81.3707 +453458,33.429,79.946 +453459,34.616,78.535 +453460,35.757,77.137 +453461,30.805,81.3258 +453462,32.085,79.916 +453463,33.31,78.52 +453464,34.488,77.137 +453465,29.423,81.2798 +453466,30.741,79.885 +453467,32.004,78.505 +453468,33.218,77.138 +453469,28.041,81.2327 +453470,29.397,79.854 +453471,30.697,78.49 +453472,31.948,77.14 +453473,26.66,81.1846 +453474,28.054,79.822 +453475,29.39,78.476 +453476,30.676,77.143 +453477,25.28,81.1353 +453478,26.711,79.791 +453479,28.083,78.462 +453480,29.404,77.148 +453481,23.902,81.085 +453482,25.368,79.758 +453483,26.775,78.448 +453484,28.131,77.153 +453485,22.524,81.0337 +453486,24.026,79.726 +453487,25.467,78.435 +453488,26.856,77.159 +453489,21.148,80.9814 +453490,22.684,79.693 +453491,24.159,78.422 +453492,25.581,77.167 +453493,19.772,80.928 +453494,21.342,79.66 +453495,22.85,78.409 +453496,24.304,77.175 +453497,18.398,80.8737 +453498,20.001,79.626 +453499,21.541,78.397 +453500,23.027,77.184 +453501,17.025,80.8183 +453502,18.661,79.592 +453503,20.232,78.385 +453504,21.748,77.195 +453505,15.653,80.7621 +453506,17.32,79.558 +453507,18.922,78.373 +453508,20.468,77.206 +453509,14.282,80.7048 +453510,15.981,79.524 +453511,17.612,78.362 +453512,19.187,77.218 +453513,12.913,80.6467 +453514,14.641,79.489 +453515,16.302,78.351 +453516,17.905,77.231 +453517,11.545,80.5876 +453518,13.302,79.454 +453519,14.991,78.34 +453520,16.622,77.245 +453521,10.178,80.5277 +453522,11.964,79.418 +453523,13.68,78.33 +453524,15.337,77.26 +453525,8.8129,80.4669 +453526,10.626,79.383 +453527,12.368,78.32 +453528,14.051,77.276 +453529,7.4489,80.4053 +453530,9.2881,79.347 +453531,11.056,78.31 +453532,12.764,77.292 +453533,6.0862,80.3428 +453534,7.951,79.311 +453535,9.7441,78.3 +453536,11.476,77.309 +453537,4.725,80.2795 +453538,6.6143,79.274 +453539,8.4312,78.291 +453540,10.186,77.327 +453541,3.3651,80.2154 +453542,5.2782,79.237 +453543,7.118,78.282 +453544,8.8952,77.346 +453545,2.0068,80.1506 +453546,3.9425,79.201 +453547,5.8043,78.273 +453548,7.6029,77.366 +453549,0.64984,80.0851 +453550,2.6074,79.163 +453551,4.4902,78.264 +453552,6.3092,77.386 +453553,359.29,80.0188 +453554,1.2727,79.126 +453555,3.1757,78.256 +453556,5.0142,77.407 +453557,357.94,79.952 +453558,359.94,79.088 +453559,1.8607,78.248 +453560,3.7178,77.429 +453561,356.59,79.884 +453562,358.6,79.05 +453563,0.54525,78.24 +453564,2.42,77.451 +453565,355.24,79.816 +453566,357.27,79.012 +453567,359.23,78.233 +453568,1.1207,77.474 +453569,353.89,79.747 +453570,355.94,78.974 +453571,357.91,78.225 +453572,359.82,77.498 +453573,352.54,79.677 +453574,354.61,78.936 +453575,356.6,78.218 +453576,358.52,77.522 +453577,351.19,79.607 +453578,353.28,78.897 +453579,355.28,78.211 +453580,357.21,77.546 +453581,349.85,79.537 +453582,351.94,78.858 +453583,353.96,78.204 +453584,355.91,77.571 +453585,348.51,79.466 +453586,350.61,78.819 +453587,352.64,78.197 +453588,354.6,77.597 +453589,347.16,79.394 +453590,349.28,78.78 +453591,351.32,78.191 +453592,353.3,77.623 +453593,345.82,79.322 +453594,347.95,78.741 +453595,350,78.184 +453596,351.99,77.649 +453597,344.49,79.249 +453598,346.63,78.702 +453599,348.69,78.178 +453600,350.67,77.676 +453601,343.15,79.176 +453602,345.3,78.662 +453603,347.36,78.172 +453604,349.36,77.704 +453605,341.82,79.103 +453606,343.97,78.622 +453607,346.04,78.166 +453608,348.05,77.731 +453609,340.48,79.029 +453610,342.64,78.583 +453611,344.72,78.16 +453612,346.73,77.759 +453613,339.15,78.955 +453614,341.32,78.543 +453615,343.4,78.154 +453616,345.42,77.788 +453617,337.82,78.881 +453618,339.99,78.503 +453619,342.08,78.149 +453620,344.1,77.816 +453621,336.49,78.806 +453622,338.66,78.463 +453623,340.76,78.143 +453624,342.78,77.845 +453625,335.17,78.731 +453626,337.34,78.423 +453627,339.43,78.138 +453628,341.46,77.874 +453629,333.84,78.656 +453630,336.02,78.382 +453631,338.11,78.132 +453632,340.13,77.903 +453633,332.52,78.581 +453634,334.69,78.342 +453635,336.79,78.127 +453636,338.81,77.932 +453637,331.2,78.505 +453638,333.37,78.302 +453639,335.46,78.122 +453640,337.48,77.962 +453641,329.88,78.429 +453642,332.05,78.262 +453643,334.14,78.117 +453644,336.15,77.991 +453645,328.56,78.354 +453646,330.72,78.221 +453647,332.81,78.111 +453648,334.83,78.021 +453649,327.24,78.278 +453650,329.4,78.181 +453651,331.48,78.106 +453652,333.49,78.051 +453653,325.93,78.202 +453654,328.08,78.141 +453655,330.16,78.101 +453656,332.16,78.081 +453657,324.61,78.126 +453658,326.76,78.1 +453659,328.83,78.096 +453660,330.83,78.11 +453661,323.3,78.05 +453662,325.44,78.06 +453663,327.5,78.091 +453664,329.49,78.14 +453665,321.99,77.974 +453666,324.12,78.019 +453667,326.17,78.086 +453668,328.16,78.17 +453669,320.68,77.898 +453670,322.8,77.979 +453671,324.85,78.08 +453672,326.82,78.199 +453673,319.38,77.823 +453674,321.48,77.939 +453675,323.52,78.075 +453676,325.48,78.229 +453677,318.07,77.747 +453678,320.17,77.899 +453679,322.19,78.07 +453680,324.14,78.258 +453681,316.77,77.672 +453682,318.85,77.858 +453683,320.86,78.065 +453684,322.79,78.287 +453685,315.47,77.596 +453686,317.53,77.818 +453687,319.53,78.059 +453688,321.45,78.316 +453689,314.17,77.521 +453690,316.22,77.778 +453691,318.19,78.054 +453692,320.1,78.345 +453693,312.87,77.446 +453694,314.9,77.738 +453695,316.86,78.048 +453696,318.76,78.374 +453697,311.57,77.372 +453698,313.59,77.699 +453699,315.53,78.043 +453700,317.41,78.402 +453701,310.28,77.298 +453702,312.27,77.659 +453703,314.2,78.037 +453704,316.06,78.43 +453705,308.98,77.224 +453706,310.96,77.619 +453707,312.86,78.031 +453708,314.71,78.457 +453709,307.69,77.15 +453710,309.65,77.58 +453711,311.53,78.025 +453712,313.35,78.485 +453713,306.4,77.077 +453714,308.33,77.54 +453715,310.2,78.019 +453716,312,78.512 +453717,305.11,77.004 +453718,307.02,77.501 +453719,308.86,78.013 +453720,310.64,78.538 +453721,303.82,76.931 +453722,305.71,77.462 +453723,307.53,78.007 +453724,309.29,78.564 +453725,302.53,76.86 +453726,304.4,77.423 +453727,306.19,78.001 +453728,307.93,78.59 +453729,301.25,76.788 +453730,303.09,77.384 +453731,304.86,77.994 +453732,306.57,78.615 +453733,299.97,76.717 +453734,301.78,77.346 +453735,303.52,77.987 +453736,305.21,78.639 +453737,298.68,76.647 +453738,300.47,77.307 +453739,302.18,77.98 +453740,303.84,78.663 +453741,297.4,76.577 +453742,299.16,77.269 +453743,300.85,77.973 +453744,302.48,78.687 +453745,296.12,76.508 +453746,297.85,77.231 +453747,299.51,77.966 +453748,301.12,78.71 +453749,294.85,76.439 +453750,296.54,77.193 +453751,298.17,77.959 +453752,299.75,78.732 +453753,293.57,76.371 +453754,295.23,77.156 +453755,296.83,77.951 +453756,298.38,78.754 +453757,292.29,76.304 +453758,293.92,77.118 +453759,295.5,77.943 +453760,297.01,78.775 +453761,291.02,76.237 +453762,292.62,77.081 +453763,294.16,77.935 +453764,295.64,78.795 +453765,289.75,76.171 +453766,291.31,77.044 +453767,292.82,77.927 +453768,294.27,78.815 +453769,288.47,76.106 +453770,290,77.008 +453771,291.48,77.918 +453772,292.9,78.834 +453773,287.2,76.041 +453774,288.7,76.971 +453775,290.14,77.909 +453776,291.53,78.852 +453777,285.93,75.978 +453778,287.39,76.935 +453779,288.8,77.9 +453780,290.15,78.87 +453781,284.66,75.915 +453782,286.09,76.899 +453783,287.46,77.891 +453784,288.78,78.887 +453785,283.4,75.853 +453786,284.78,76.864 +453787,286.11,77.881 +453788,287.4,78.903 +453789,282.13,75.792 +453790,283.48,76.829 +453791,284.77,77.871 +453792,286.02,78.918 +453793,280.87,75.731 +453794,282.17,76.794 +453795,283.43,77.861 +453796,284.64,78.932 +453797,279.6,75.672 +453798,280.87,76.759 +453799,282.09,77.851 +453800,283.26,78.945 +453801,278.34,75.613 +453802,279.57,76.725 +453803,280.75,77.84 +453804,281.88,78.958 +453805,277.08,75.556 +453806,278.26,76.691 +453807,279.4,77.829 +453808,280.5,78.97 +453809,275.81,75.499 +453810,276.96,76.657 +453811,278.06,77.818 +453812,279.12,78.98 +453813,274.55,75.443 +453814,275.66,76.623 +453815,276.72,77.806 +453816,277.73,78.99 +453817,273.29,75.389 +453818,274.36,76.59 +453819,275.37,77.794 +453820,276.35,78.999 +453821,272.04,75.335 +453822,273.05,76.557 +453823,274.03,77.782 +453824,274.97,79.007 +453825,270.78,75.282 +453826,271.75,76.525 +453827,272.69,77.77 +453828,273.58,79.014 +453829,269.52,75.231 +453830,270.45,76.493 +453831,271.34,77.757 +453832,272.19,79.02 +453833,268.26,75.18 +453834,269.15,76.461 +453835,270,77.743 +453836,270.81,79.025 +453837,267.01,75.131 +453838,267.85,76.43 +453839,268.65,77.73 +453840,269.42,79.029 +453841,265.75,75.082 +453842,266.55,76.399 +453843,267.31,77.716 +453844,268.03,79.032 +453845,264.5,75.035 +453846,265.25,76.368 +453847,265.96,77.702 +453848,266.64,79.034 +453849,263.24,74.989 +453850,263.95,76.338 +453851,264.62,77.687 +453852,265.25,79.035 +453853,261.99,74.944 +453854,262.65,76.308 +453855,263.27,77.672 +453856,263.86,79.035 +453857,260.74,74.9 +453858,261.35,76.278 +453859,261.93,77.657 +453860,262.47,79.034 +453861,259.48,74.857 +453862,260.05,76.249 +453863,260.58,77.641 +453864,261.08,79.031 +453865,258.23,74.815 +453866,258.75,76.221 +453867,259.24,77.625 +453868,259.68,79.028 +453869,256.98,74.775 +453870,257.45,76.192 +453871,257.89,77.609 +453872,258.29,79.023 +453873,255.73,74.736 +453874,256.15,76.164 +453875,256.54,77.592 +453876,256.9,79.018 +453877,254.48,74.697 +453878,254.85,76.137 +453879,255.2,77.575 +453880,255.51,79.011 +453881,253.23,74.66 +453882,253.56,76.109 +453883,253.85,77.557 +453884,254.11,79.003 +453885,251.98,74.625 +453886,252.26,76.083 +453887,252.5,77.539 +453888,252.72,78.994 +453889,250.73,74.59 +453890,250.96,76.056 +453891,251.16,77.521 +453892,251.33,78.984 +453893,249.48,74.557 +453894,249.66,76.03 +453895,249.81,77.502 +453896,249.93,78.972 +453897,248.23,74.525 +453898,248.36,76.005 +453899,248.47,77.483 +453900,248.54,78.96 +453901,246.98,74.494 +453902,247.06,75.979 +453903,247.12,77.464 +453904,247.14,78.946 +453905,245.73,74.464 +453906,245.77,75.955 +453907,245.77,77.444 +453908,245.75,78.931 +453909,244.48,74.436 +453910,244.47,75.93 +453911,244.43,77.424 +453912,244.35,78.915 +453913,243.23,74.409 +453914,243.17,75.906 +453915,243.08,77.403 +453916,242.96,78.898 +453917,241.98,74.383 +453918,241.87,75.883 +453919,241.73,77.382 +453920,241.56,78.879 +453921,240.73,74.358 +453922,240.57,75.86 +453923,240.39,77.361 +453924,240.17,78.86 +453925,239.48,74.334 +453926,239.27,75.837 +453927,239.04,77.339 +453928,238.77,78.839 +453929,238.23,74.312 +453930,237.98,75.815 +453931,237.69,77.317 +453932,237.38,78.817 +453933,236.98,74.291 +453934,236.68,75.793 +453935,236.35,77.294 +453936,235.98,78.794 +453937,235.72,74.271 +453938,235.38,75.771 +453939,235,77.271 +453940,234.59,78.77 +453941,234.47,74.253 +453942,234.08,75.75 +453943,233.66,77.248 +453944,233.2,78.744 +453945,233.22,74.236 +453946,232.78,75.729 +453947,232.31,77.224 +453948,231.8,78.718 +453949,231.97,74.219 +453950,231.48,75.709 +453951,230.96,77.2 +453952,230.41,78.69 +453953,230.72,74.205 +453954,230.19,75.689 +453955,229.62,77.175 +453956,229.02,78.661 +453957,229.47,74.191 +453958,228.89,75.67 +453959,228.27,77.15 +453960,227.62,78.631 +453961,228.21,74.179 +453962,227.59,75.651 +453963,226.93,77.125 +453964,226.23,78.6 +453965,226.96,74.167 +453966,226.29,75.632 +453967,225.58,77.099 +453968,224.84,78.567 +453969,225.71,74.157 +453970,224.99,75.614 +453971,224.24,77.073 +453972,223.45,78.533 +453973,224.45,74.148 +453974,223.69,75.596 +453975,222.89,77.046 +453976,222.06,78.499 +453977,223.2,74.141 +453978,222.39,75.579 +453979,221.55,77.02 +453980,220.67,78.463 +453981,221.94,74.134 +453982,221.09,75.562 +453983,220.2,76.992 +453984,219.28,78.426 +453985,220.68,74.129 +453986,219.79,75.545 +453987,218.86,76.965 +453988,217.89,78.387 +453989,219.43,74.125 +453990,218.49,75.529 +453991,217.52,76.937 +453992,216.5,78.348 +453993,218.17,74.122 +453994,217.19,75.513 +453995,216.17,76.908 +453996,215.11,78.308 +453997,216.91,74.12 +453998,215.89,75.497 +453999,214.83,76.879 +454000,213.72,78.266 +454001,215.65,74.119 +454002,214.59,75.482 +454003,213.49,76.85 +454004,212.34,78.223 +454005,214.39,74.119 +454006,213.29,75.467 +454007,212.14,76.821 +454008,210.95,78.18 +454009,213.13,74.121 +454010,211.99,75.453 +454011,210.8,76.791 +454012,209.57,78.135 +454013,211.87,74.123 +454014,210.69,75.439 +454015,209.46,76.761 +454016,208.18,78.089 +454017,210.61,74.127 +454018,209.38,75.425 +454019,208.12,76.73 +454020,206.8,78.042 +454021,209.34,74.132 +454022,208.08,75.412 +454023,206.77,76.7 +454024,205.42,77.994 +454025,208.08,74.137 +454026,206.78,75.399 +454027,205.43,76.668 +454028,204.03,77.945 +454029,206.81,74.144 +454030,205.48,75.386 +454031,204.09,76.637 +454032,202.65,77.895 +454033,205.55,74.152 +454034,204.17,75.374 +454035,202.75,76.605 +454036,201.28,77.844 +454037,204.28,74.16 +454038,202.87,75.362 +454039,201.41,76.573 +454040,199.9,77.792 +454041,203.01,74.17 +454042,201.57,75.35 +454043,200.07,76.54 +454044,198.52,77.74 +454045,201.74,74.181 +454046,200.26,75.339 +454047,198.73,76.507 +454048,197.14,77.686 +454049,200.47,74.192 +454050,198.96,75.328 +454051,197.39,76.474 +454052,195.77,77.631 +454053,199.2,74.205 +454054,197.65,75.317 +454055,196.06,76.441 +454056,194.4,77.575 +454057,197.92,74.218 +454058,196.35,75.307 +454059,194.72,76.407 +454060,193.02,77.519 +454061,196.65,74.232 +454062,195.04,75.297 +454063,193.38,76.373 +454064,191.65,77.461 +454065,195.37,74.247 +454066,193.74,75.287 +454067,192.04,76.339 +454068,190.28,77.403 +454069,194.1,74.263 +454070,192.43,75.278 +454071,190.71,76.304 +454072,188.91,77.344 +454073,192.82,74.28 +454074,191.12,75.268 +454075,189.37,76.269 +454076,187.55,77.284 +454077,191.54,74.297 +454078,189.82,75.259 +454079,188.03,76.234 +454080,186.18,77.223 +454081,190.26,74.316 +454082,188.51,75.251 +454083,186.7,76.199 +454084,184.82,77.161 +454085,188.98,74.335 +454086,187.2,75.242 +454087,185.36,76.163 +454088,183.45,77.099 +454089,187.69,74.354 +454090,185.89,75.234 +454091,184.03,76.128 +454092,182.09,77.036 +454093,186.41,74.375 +454094,184.58,75.226 +454095,182.69,76.092 +454096,180.73,76.972 +454097,185.12,74.396 +454098,183.27,75.218 +454099,181.36,76.055 +454100,179.37,76.907 +454101,183.83,74.418 +454102,181.96,75.211 +454103,180.03,76.019 +454104,178.01,76.842 +454105,182.54,74.44 +454106,180.65,75.204 +454107,178.69,75.982 +454108,176.66,76.776 +454109,181.25,74.463 +454110,179.34,75.197 +454111,177.36,75.945 +454112,175.3,76.71 +454113,179.96,74.487 +454114,178.03,75.19 +454115,176.03,75.908 +454116,173.95,76.643 +454117,178.67,74.511 +454118,176.72,75.183 +454119,174.7,75.871 +454120,172.6,76.575 +454121,177.37,74.536 +454122,175.41,75.177 +454123,173.37,75.833 +454124,171.25,76.507 +454125,176.08,74.561 +454126,174.09,75.17 +454127,172.04,75.796 +454128,169.9,76.438 +454129,174.78,74.586 +454130,172.78,75.164 +454131,170.71,75.758 +454132,168.56,76.369 +454133,173.48,74.612 +454134,171.47,75.158 +454135,169.38,75.72 +454136,167.21,76.299 +454137,172.18,74.639 +454138,170.15,75.152 +454139,168.05,75.682 +454140,165.87,76.229 +454141,170.88,74.666 +454142,168.84,75.147 +454143,166.73,75.643 +454144,164.53,76.158 +454145,169.57,74.693 +454146,167.52,75.141 +454147,165.4,75.605 +454148,163.19,76.087 +454149,168.27,74.721 +454150,166.21,75.135 +454151,164.07,75.567 +454152,161.85,76.016 +454153,166.96,74.749 +454154,164.89,75.13 +454155,162.75,75.528 +454156,160.51,75.944 +454157,165.65,74.777 +454158,163.57,75.125 +454159,161.42,75.489 +454160,159.18,75.872 +454161,164.34,74.806 +454162,162.26,75.12 +454163,160.1,75.45 +454164,157.85,75.8 +454165,163.03,74.834 +454166,160.94,75.115 +454167,158.77,75.412 +454168,156.51,75.727 +454169,161.71,74.863 +454170,159.62,75.11 +454171,157.45,75.373 +454172,155.18,75.654 +454173,160.4,74.893 +454174,158.3,75.105 +454175,156.12,75.334 +454176,153.86,75.581 +454177,159.08,74.922 +454178,156.98,75.1 +454179,154.8,75.295 +454180,152.53,75.507 +454181,157.76,74.951 +454182,155.66,75.095 +454183,153.48,75.255 +454184,151.21,75.434 +454185,156.45,74.981 +454186,154.34,75.091 +454187,152.16,75.216 +454188,149.88,75.36 +454189,155.12,75.011 +454190,153.02,75.086 +454191,150.84,75.177 +454192,148.56,75.286 +454193,153.8,75.04 +454194,151.7,75.081 +454195,149.52,75.138 +454196,147.24,75.213 +454197,152.48,75.07 +454198,150.38,75.077 +454199,148.2,75.099 +454200,145.93,75.139 +454201,151.15,75.1 +454202,149.06,75.072 +454203,146.88,75.059 +454204,144.61,75.065 +454205,149.82,75.129 +454206,147.73,75.067 +454207,145.56,75.02 +454208,143.3,74.991 +454209,148.49,75.159 +454210,146.41,75.062 +454211,144.24,74.981 +454212,141.98,74.917 +454213,147.16,75.188 +454214,145.08,75.058 +454215,142.93,74.942 +454216,140.67,74.843 +454217,145.83,75.218 +454218,143.76,75.053 +454219,141.61,74.903 +454220,139.37,74.769 +454221,144.49,75.247 +454222,142.43,75.048 +454223,140.29,74.864 +454224,138.06,74.696 +454225,143.16,75.276 +454226,141.11,75.043 +454227,138.98,74.825 +454228,136.75,74.622 +454229,141.82,75.305 +454230,139.78,75.039 +454231,137.66,74.786 +454232,135.45,74.549 +454233,140.48,75.334 +454234,138.46,75.034 +454235,136.35,74.747 +454236,134.15,74.476 +454237,139.14,75.362 +454238,137.13,75.029 +454239,135.03,74.708 +454240,132.85,74.403 +454241,137.8,75.39 +454242,135.8,75.023 +454243,133.72,74.669 +454244,131.55,74.33 +454245,136.46,75.418 +454246,134.47,75.018 +454247,132.41,74.631 +454248,130.25,74.258 +454249,135.11,75.445 +454250,133.14,75.013 +454251,131.09,74.592 +454252,128.96,74.186 +454253,133.77,75.472 +454254,131.81,75.007 +454255,129.78,74.554 +454256,127.66,74.114 +454257,132.42,75.499 +454258,130.48,75.002 +454259,128.47,74.516 +454260,126.37,74.043 +454261,131.07,75.525 +454262,129.15,74.996 +454263,127.16,74.477 +454264,125.08,73.972 +454265,129.72,75.551 +454266,127.82,74.99 +454267,125.85,74.44 +454268,123.79,73.901 +454269,128.37,75.577 +454270,126.49,74.984 +454271,124.54,74.402 +454272,122.51,73.831 +454273,127.01,75.602 +454274,125.16,74.978 +454275,123.23,74.364 +454276,121.22,73.761 +454277,125.66,75.626 +454278,123.83,74.972 +454279,121.92,74.327 +454280,119.94,73.692 +454281,124.3,75.65 +454282,122.5,74.966 +454283,120.62,74.289 +454284,118.66,73.624 +454285,122.94,75.673 +454286,121.16,74.959 +454287,119.31,74.252 +454288,117.38,73.555 +454289,121.58,75.696 +454290,119.83,74.952 +454291,118,74.215 +454292,116.1,73.488 +454293,120.22,75.718 +454294,118.49,74.945 +454295,116.7,74.178 +454296,114.82,73.421 +454297,118.86,75.74 +454298,117.16,74.938 +454299,115.39,74.142 +454300,113.54,73.355 +454301,117.5,75.761 +454302,115.83,74.93 +454303,114.08,74.106 +454304,112.27,73.289 +454305,116.13,75.781 +454306,114.49,74.923 +454307,112.78,74.07 +454308,110.99,73.224 +454309,114.77,75.8 +454310,113.15,74.915 +454311,111.47,74.034 +454312,109.72,73.16 +454313,113.4,75.819 +454314,111.82,74.907 +454315,110.17,73.998 +454316,108.45,73.096 +454317,112.03,75.837 +454318,110.48,74.898 +454319,108.87,73.963 +454320,107.18,73.034 +454321,110.66,75.855 +454322,109.14,74.89 +454323,107.56,73.928 +454324,105.91,72.972 +454325,109.29,75.871 +454326,107.81,74.881 +454327,106.26,73.893 +454328,104.65,72.91 +454329,107.92,75.887 +454330,106.47,74.872 +454331,104.96,73.859 +454332,103.38,72.85 +454333,106.54,75.902 +454334,105.13,74.862 +454335,103.66,73.824 +454336,102.12,72.79 +454337,105.17,75.916 +454338,103.79,74.852 +454339,102.36,73.79 +454340,100.85,72.732 +454341,103.79,75.929 +454342,102.45,74.842 +454343,101.05,73.757 +454344,99.59,72.674 +454345,102.42,75.942 +454346,101.11,74.832 +454347,99.754,73.723 +454348,98.329,72.617 +454349,101.04,75.953 +454350,99.775,74.822 +454351,98.453,73.69 +454352,97.069,72.561 +454353,99.661,75.964 +454354,98.435,74.811 +454355,97.153,73.657 +454356,95.811,72.506 +454357,98.282,75.973 +454358,97.095,74.8 +454359,95.854,73.625 +454360,94.553,72.452 +454361,96.901,75.982 +454362,95.755,74.788 +454363,94.554,73.593 +454364,93.296,72.398 +454365,95.52,75.99 +454366,94.414,74.776 +454367,93.255,73.561 +454368,92.04,72.346 +454369,94.137,75.997 +454370,93.073,74.764 +454371,91.957,73.53 +454372,90.785,72.295 +454373,92.754,76.003 +454374,91.732,74.752 +454375,90.658,73.498 +454376,89.531,72.245 +454377,91.37,76.007 +454378,90.39,74.739 +454379,89.36,73.468 +454380,88.278,72.196 +454381,89.985,76.011 +454382,89.048,74.726 +454383,88.063,73.437 +454384,87.026,72.147 +454385,88.599,76.014 +454386,87.706,74.712 +454387,86.765,73.407 +454388,85.774,72.1 +454389,87.213,76.016 +454390,86.364,74.698 +454391,85.468,73.377 +454392,84.523,72.054 +454393,85.826,76.016 +454394,85.021,74.684 +454395,84.171,73.348 +454396,83.273,72.01 +454397,84.438,76.016 +454398,83.678,74.67 +454399,82.874,73.319 +454400,82.024,71.966 +454401,83.049,76.015 +454402,82.335,74.655 +454403,81.578,73.29 +454404,80.775,71.923 +454405,81.66,76.012 +454406,80.992,74.64 +454407,80.282,73.262 +454408,79.527,71.882 +454409,80.27,76.009 +454410,79.649,74.624 +454411,78.986,73.234 +454412,78.279,71.841 +454413,78.88,76.004 +454414,78.305,74.608 +454415,77.69,73.207 +454416,77.032,71.802 +454417,77.489,75.998 +454418,76.961,74.592 +454419,76.394,73.18 +454420,75.785,71.764 +454421,76.098,75.991 +454422,75.618,74.575 +454423,75.099,73.153 +454424,74.539,71.727 +454425,74.706,75.983 +454426,74.274,74.558 +454427,73.803,73.127 +454428,73.293,71.691 +454429,73.314,75.974 +454430,72.93,74.54 +454431,72.508,73.101 +454432,72.048,71.657 +454433,71.921,75.964 +454434,71.585,74.522 +454435,71.213,73.075 +454436,70.803,71.623 +454437,70.528,75.952 +454438,70.241,74.504 +454439,69.918,73.05 +454440,69.558,71.591 +454441,69.135,75.94 +454442,68.897,74.486 +454443,68.623,73.025 +454444,68.313,71.56 +454445,67.741,75.926 +454446,67.552,74.467 +454447,67.329,73.001 +454448,67.069,71.53 +454449,66.348,75.911 +454450,66.208,74.447 +454451,66.034,72.977 +454452,65.825,71.502 +454453,64.954,75.895 +454454,64.863,74.427 +454455,64.739,72.953 +454456,64.581,71.474 +454457,63.559,75.878 +454458,63.519,74.407 +454459,63.445,72.93 +454460,63.337,71.448 +454461,62.165,75.859 +454462,62.174,74.386 +454463,62.15,72.907 +454464,62.093,71.423 +454465,60.771,75.839 +454466,60.83,74.366 +454467,60.856,72.885 +454468,60.849,71.4 +454469,59.376,75.819 +454470,59.485,74.344 +454471,59.562,72.863 +454472,59.606,71.377 +454473,57.982,75.797 +454474,58.14,74.322 +454475,58.267,72.842 +454476,58.362,71.356 +454477,56.587,75.774 +454478,56.796,74.3 +454479,56.973,72.82 +454480,57.118,71.336 +454481,55.193,75.749 +454482,55.451,74.278 +454483,55.678,72.8 +454484,55.874,71.317 +454485,53.798,75.724 +454486,54.107,74.255 +454487,54.384,72.779 +454488,54.629,71.3 +454489,52.404,75.697 +454490,52.762,74.231 +454491,53.089,72.759 +454492,53.385,71.283 +454493,51.01,75.67 +454494,51.418,74.208 +454495,51.795,72.74 +454496,52.14,71.268 +454497,49.616,75.641 +454498,50.074,74.183 +454499,50.5,72.721 +454500,50.895,71.254 +454501,48.222,75.61 +454502,48.73,74.159 +454503,49.205,72.702 +454504,49.649,71.241 +454505,46.829,75.579 +454506,47.386,74.134 +454507,47.91,72.684 +454508,48.403,71.23 +454509,45.436,75.547 +454510,46.042,74.109 +454511,46.615,72.666 +454512,47.157,71.22 +454513,44.043,75.513 +454514,44.698,74.083 +454515,45.32,72.648 +454516,45.911,71.21 +454517,42.651,75.479 +454518,43.355,74.057 +454519,44.025,72.631 +454520,44.663,71.202 +454521,41.259,75.443 +454522,42.011,74.031 +454523,42.73,72.614 +454524,43.416,71.196 +454525,39.867,75.406 +454526,40.668,74.004 +454527,41.434,72.598 +454528,42.168,71.19 +454529,38.476,75.368 +454530,39.325,73.976 +454531,40.139,72.582 +454532,40.919,71.185 +454533,37.086,75.329 +454534,37.982,73.949 +454535,38.843,72.566 +454536,39.669,71.182 +454537,35.696,75.288 +454538,36.64,73.921 +454539,37.547,72.551 +454540,38.419,71.18 +454541,34.307,75.247 +454542,35.297,73.893 +454543,36.25,72.536 +454544,37.169,71.179 +454545,32.918,75.204 +454546,33.955,73.864 +454547,34.954,72.522 +454548,35.917,71.179 +454549,31.53,75.161 +454550,32.613,73.835 +454551,33.657,72.508 +454552,34.665,71.18 +454553,30.143,75.116 +454554,31.272,73.806 +454555,32.36,72.494 +454556,33.412,71.182 +454557,28.756,75.071 +454558,29.93,73.776 +454559,31.063,72.48 +454560,32.158,71.185 +454561,27.371,75.024 +454562,28.589,73.746 +454563,29.765,72.467 +454564,30.903,71.189 +454565,25.986,74.976 +454566,27.249,73.715 +454567,28.468,72.455 +454568,29.647,71.195 +454569,24.602,74.928 +454570,25.908,73.685 +454571,27.17,72.442 +454572,28.391,71.201 +454573,23.219,74.878 +454574,24.568,73.654 +454575,25.871,72.43 +454576,27.133,71.208 +454577,21.836,74.827 +454578,23.228,73.622 +454579,24.573,72.418 +454580,25.875,71.217 +454581,20.455,74.776 +454582,21.889,73.59 +454583,23.274,72.407 +454584,24.615,71.226 +454585,19.075,74.723 +454586,20.55,73.558 +454587,21.974,72.396 +454588,23.354,71.236 +454589,17.696,74.67 +454590,19.211,73.526 +454591,20.675,72.385 +454592,22.093,71.248 +454593,16.318,74.615 +454594,17.873,73.493 +454595,19.375,72.375 +454596,20.83,71.26 +454597,14.941,74.56 +454598,16.535,73.46 +454599,18.074,72.365 +454600,19.566,71.273 +454601,13.565,74.504 +454602,15.197,73.427 +454603,16.774,72.355 +454604,18.301,71.287 +454605,12.19,74.446 +454606,13.86,73.394 +454607,15.472,72.345 +454608,17.035,71.302 +454609,10.817,74.389 +454610,12.523,73.36 +454611,14.171,72.336 +454612,15.767,71.317 +454613,9.4445,74.33 +454614,11.187,73.326 +454615,12.869,72.327 +454616,14.498,71.334 +454617,8.0735,74.27 +454618,9.8513,73.291 +454619,11.567,72.318 +454620,13.228,71.351 +454621,6.7037,74.21 +454622,8.5159,73.257 +454623,10.264,72.31 +454624,11.957,71.369 +454625,5.3353,74.149 +454626,7.1809,73.222 +454627,8.9609,72.301 +454628,10.684,71.388 +454629,3.9682,74.087 +454630,5.8464,73.187 +454631,7.6574,72.293 +454632,9.4105,71.407 +454633,2.6025,74.024 +454634,4.5123,73.151 +454635,6.3534,72.286 +454636,8.1352,71.428 +454637,1.2381,73.961 +454638,3.1787,73.116 +454639,5.0489,72.278 +454640,6.8585,71.449 +454641,359.88,73.897 +454642,1.8457,73.08 +454643,3.7441,72.271 +454644,5.5805,71.47 +454645,358.51,73.832 +454646,0.51306,73.044 +454647,2.4387,72.264 +454648,4.301,71.492 +454649,357.15,73.767 +454650,359.18,73.008 +454651,1.1329,72.257 +454652,3.0202,71.515 +454653,355.8,73.701 +454654,357.85,72.971 +454655,359.83,72.25 +454656,1.7378,71.539 +454657,354.44,73.634 +454658,356.52,72.934 +454659,358.52,72.244 +454660,0.45402,71.563 +454661,353.08,73.567 +454662,355.19,72.898 +454663,357.21,72.238 +454664,359.17,71.587 +454665,351.73,73.5 +454666,353.86,72.861 +454667,355.9,72.232 +454668,357.88,71.612 +454669,350.38,73.431 +454670,352.53,72.823 +454671,354.6,72.226 +454672,356.59,71.638 +454673,349.03,73.363 +454674,351.2,72.786 +454675,353.29,72.22 +454676,355.3,71.664 +454677,347.68,73.294 +454678,349.87,72.748 +454679,351.98,72.214 +454680,354.01,71.691 +454681,346.33,73.224 +454682,348.54,72.711 +454683,350.67,72.209 +454684,352.72,71.717 +454685,344.98,73.154 +454686,347.22,72.673 +454687,349.36,72.204 +454688,351.43,71.745 +454689,343.64,73.083 +454690,345.89,72.635 +454691,348.05,72.198 +454692,350.13,71.772 +454693,342.3,73.013 +454694,344.56,72.597 +454695,346.74,72.193 +454696,348.83,71.8 +454697,340.96,72.942 +454698,343.24,72.559 +454699,345.42,72.188 +454700,347.53,71.829 +454701,339.62,72.87 +454702,341.91,72.521 +454703,344.11,72.183 +454704,346.23,71.857 +454705,338.28,72.798 +454706,340.59,72.482 +454707,342.8,72.179 +454708,344.93,71.886 +454709,336.95,72.726 +454710,339.26,72.444 +454711,341.49,72.174 +454712,343.62,71.915 +454713,335.61,72.654 +454714,337.94,72.405 +454715,340.17,72.169 +454716,342.32,71.944 +454717,334.28,72.581 +454718,336.62,72.367 +454719,338.86,72.165 +454720,341.01,71.974 +454721,332.95,72.509 +454722,335.3,72.328 +454723,337.54,72.16 +454724,339.7,72.003 +454725,331.62,72.436 +454726,333.97,72.289 +454727,336.23,72.156 +454728,338.39,72.033 +454729,330.29,72.363 +454730,332.65,72.251 +454731,334.91,72.151 +454732,337.08,72.063 +454733,328.97,72.29 +454734,331.33,72.212 +454735,333.59,72.147 +454736,335.77,72.092 +454737,327.65,72.217 +454738,330.01,72.173 +454739,332.28,72.142 +454740,334.45,72.122 +454741,326.33,72.144 +454742,328.69,72.134 +454743,330.96,72.138 +454744,333.13,72.152 +454745,325.01,72.07 +454746,327.38,72.096 +454747,329.64,72.133 +454748,331.81,72.182 +454749,323.69,71.997 +454750,326.06,72.057 +454751,328.32,72.129 +454752,330.49,72.212 +454753,322.37,71.924 +454754,324.74,72.018 +454755,327,72.124 +454756,329.17,72.241 +454757,321.06,71.851 +454758,323.42,71.979 +454759,325.68,72.12 +454760,327.85,72.271 +454761,319.75,71.778 +454762,322.11,71.941 +454763,324.36,72.115 +454764,326.52,72.3 +454765,318.44,71.705 +454766,320.79,71.902 +454767,323.04,72.111 +454768,325.2,72.33 +454769,317.13,71.632 +454770,319.48,71.863 +454771,321.72,72.106 +454772,323.87,72.359 +454773,315.82,71.56 +454774,318.16,71.825 +454775,320.4,72.102 +454776,322.54,72.388 +454777,314.52,71.487 +454778,316.85,71.786 +454779,319.07,72.097 +454780,321.2,72.416 +454781,313.21,71.415 +454782,315.54,71.748 +454783,317.75,72.092 +454784,319.87,72.445 +454785,311.91,71.343 +454786,314.22,71.71 +454787,316.43,72.087 +454788,318.54,72.473 +454789,310.61,71.271 +454790,312.91,71.672 +454791,315.1,72.082 +454792,317.2,72.501 +454793,309.32,71.2 +454794,311.6,71.633 +454795,313.78,72.077 +454796,315.86,72.528 +454797,308.02,71.129 +454798,310.29,71.596 +454799,312.45,72.071 +454800,314.52,72.555 +454801,306.73,71.059 +454802,308.98,71.558 +454803,311.13,72.066 +454804,313.18,72.582 +454805,305.43,70.988 +454806,307.67,71.52 +454807,309.8,72.06 +454808,311.84,72.608 +454809,304.14,70.919 +454810,306.36,71.482 +454811,308.47,72.055 +454812,310.49,72.634 +454813,302.86,70.849 +454814,305.05,71.445 +454815,307.14,72.049 +454816,309.14,72.659 +454817,301.57,70.78 +454818,303.74,71.408 +454819,305.82,72.043 +454820,307.8,72.684 +454821,300.28,70.712 +454822,302.44,71.371 +454823,304.49,72.037 +454824,306.45,72.708 +454825,299,70.644 +454826,301.13,71.334 +454827,303.16,72.03 +454828,305.1,72.732 +454829,297.72,70.577 +454830,299.82,71.297 +454831,301.83,72.024 +454832,303.74,72.755 +454833,296.44,70.51 +454834,298.52,71.26 +454835,300.5,72.017 +454836,302.39,72.778 +454837,295.16,70.444 +454838,297.21,71.224 +454839,299.17,72.01 +454840,301.04,72.8 +454841,293.88,70.378 +454842,295.91,71.188 +454843,297.84,72.003 +454844,299.68,72.821 +454845,292.6,70.313 +454846,294.6,71.152 +454847,296.51,71.995 +454848,298.32,72.842 +454849,291.33,70.249 +454850,293.3,71.116 +454851,295.17,71.988 +454852,296.96,72.862 +454853,290.06,70.186 +454854,292,71.081 +454855,293.84,71.98 +454856,295.6,72.881 +454857,288.79,70.123 +454858,290.69,71.046 +454859,292.51,71.972 +454860,294.24,72.899 +454861,287.52,70.061 +454862,289.39,71.011 +454863,291.18,71.963 +454864,292.87,72.917 +454865,286.25,70 +454866,288.09,70.976 +454867,289.84,71.955 +454868,291.51,72.934 +454869,284.98,69.939 +454870,286.79,70.941 +454871,288.51,71.946 +454872,290.14,72.95 +454873,283.72,69.88 +454874,285.49,70.907 +454875,287.17,71.937 +454876,288.78,72.966 +454877,282.45,69.821 +454878,284.19,70.873 +454879,285.84,71.927 +454880,287.41,72.98 +454881,281.19,69.763 +454882,282.89,70.84 +454883,284.5,71.918 +454884,286.04,72.994 +454885,279.93,69.706 +454886,281.59,70.806 +454887,283.17,71.908 +454888,284.67,73.007 +454889,278.67,69.649 +454890,280.29,70.773 +454891,281.83,71.897 +454892,283.29,73.019 +454893,277.41,69.594 +454894,278.99,70.741 +454895,280.49,71.887 +454896,281.92,73.03 +454897,276.15,69.54 +454898,277.69,70.708 +454899,279.16,71.876 +454900,280.55,73.04 +454901,274.89,69.486 +454902,276.4,70.676 +454903,277.82,71.864 +454904,279.17,73.049 +454905,273.64,69.434 +454906,275.1,70.644 +454907,276.48,71.853 +454908,277.79,73.057 +454909,272.38,69.382 +454910,273.8,70.613 +454911,275.14,71.841 +454912,276.42,73.065 +454913,271.13,69.332 +454914,272.5,70.582 +454915,273.8,71.829 +454916,275.04,73.071 +454917,269.88,69.282 +454918,271.21,70.551 +454919,272.47,71.816 +454920,273.66,73.076 +454921,268.63,69.234 +454922,269.91,70.52 +454923,271.13,71.803 +454924,272.28,73.081 +454925,267.38,69.186 +454926,268.62,70.49 +454927,269.79,71.79 +454928,270.9,73.084 +454929,266.13,69.14 +454930,267.32,70.46 +454931,268.45,71.776 +454932,269.51,73.086 +454933,264.88,69.095 +454934,266.03,70.431 +454935,267.11,71.763 +454936,268.13,73.087 +454937,263.63,69.05 +454938,264.73,70.402 +454939,265.77,71.748 +454940,266.75,73.087 +454941,262.39,69.007 +454942,263.44,70.373 +454943,264.43,71.734 +454944,265.36,73.087 +454945,261.14,68.965 +454946,262.14,70.345 +454947,263.09,71.718 +454948,263.97,73.084 +454949,259.9,68.924 +454950,260.85,70.317 +454951,261.75,71.703 +454952,262.59,73.081 +454953,258.65,68.885 +454954,259.56,70.289 +454955,260.4,71.687 +454956,261.2,73.077 +454957,257.41,68.846 +454958,258.26,70.262 +454959,259.06,71.671 +454960,259.81,73.072 +454961,256.17,68.809 +454962,256.97,70.235 +454963,257.72,71.655 +454964,258.42,73.065 +454965,254.92,68.773 +454966,255.68,70.209 +454967,256.38,71.638 +454968,257.03,73.058 +454969,253.68,68.737 +454970,254.38,70.183 +454971,255.04,71.62 +454972,255.64,73.049 +454973,252.44,68.704 +454974,253.09,70.157 +454975,253.7,71.603 +454976,254.25,73.039 +454977,251.2,68.671 +454978,251.8,70.132 +454979,252.35,71.585 +454980,252.86,73.028 +454981,249.96,68.639 +454982,250.51,70.107 +454983,251.01,71.566 +454984,251.47,73.016 +454985,248.72,68.609 +454986,249.22,70.082 +454987,249.67,71.547 +454988,250.08,73.002 +454989,247.48,68.58 +454990,247.92,70.058 +454991,248.33,71.528 +454992,248.69,72.988 +454993,246.24,68.552 +454994,246.63,70.034 +454995,246.98,71.508 +454996,247.3,72.972 +454997,245,68.525 +454998,245.34,70.011 +454999,245.64,71.488 +455000,245.9,72.955 +455001,243.76,68.5 +455002,244.05,69.988 +455003,244.3,71.468 +455004,244.51,72.937 +455005,242.52,68.476 +455006,242.76,69.966 +455007,242.95,71.447 +455008,243.12,72.918 +455009,241.28,68.453 +455010,241.47,69.943 +455011,241.61,71.426 +455012,241.72,72.897 +455013,240.05,68.431 +455014,240.17,69.922 +455015,240.27,71.404 +455016,240.33,72.876 +455017,238.81,68.41 +455018,238.88,69.9 +455019,238.93,71.382 +455020,238.93,72.853 +455021,237.57,68.391 +455022,237.59,69.879 +455023,237.58,71.359 +455024,237.54,72.829 +455025,236.33,68.373 +455026,236.3,69.859 +455027,236.24,71.337 +455028,236.14,72.804 +455029,235.09,68.356 +455030,235.01,69.839 +455031,234.9,71.313 +455032,234.75,72.778 +455033,233.85,68.34 +455034,233.72,69.819 +455035,233.55,71.29 +455036,233.36,72.75 +455037,232.61,68.325 +455038,232.43,69.8 +455039,232.21,71.266 +455040,231.96,72.721 +455041,231.37,68.312 +455042,231.14,69.781 +455043,230.87,71.241 +455044,230.57,72.692 +455045,230.14,68.3 +455046,229.84,69.762 +455047,229.52,71.216 +455048,229.17,72.661 +455049,228.9,68.289 +455050,228.55,69.744 +455051,228.18,71.191 +455052,227.78,72.628 +455053,227.66,68.279 +455054,227.26,69.726 +455055,226.84,71.165 +455056,226.38,72.595 +455057,226.42,68.271 +455058,225.97,69.709 +455059,225.5,71.139 +455060,224.99,72.561 +455061,225.18,68.263 +455062,224.68,69.692 +455063,224.15,71.113 +455064,223.6,72.525 +455065,223.93,68.257 +455066,223.39,69.675 +455067,222.81,71.086 +455068,222.2,72.488 +455069,222.69,68.252 +455070,222.1,69.659 +455071,221.47,71.059 +455072,220.81,72.45 +455073,221.45,68.248 +455074,220.8,69.643 +455075,220.13,71.031 +455076,219.42,72.411 +455077,220.21,68.245 +455078,219.51,69.628 +455079,218.78,71.003 +455080,218.03,72.371 +455081,218.97,68.244 +455082,218.22,69.612 +455083,217.44,70.975 +455084,216.63,72.33 +455085,217.72,68.243 +455086,216.93,69.598 +455087,216.1,70.946 +455088,215.24,72.287 +455089,216.48,68.244 +455090,215.63,69.583 +455091,214.76,70.917 +455092,213.85,72.244 +455093,215.23,68.245 +455094,214.34,69.569 +455095,213.42,70.888 +455096,212.46,72.2 +455097,213.99,68.248 +455098,213.05,69.556 +455099,212.08,70.858 +455100,211.07,72.154 +455101,212.74,68.252 +455102,211.75,69.542 +455103,210.74,70.828 +455104,209.68,72.107 +455105,211.49,68.257 +455106,210.46,69.529 +455107,209.4,70.797 +455108,208.3,72.06 +455109,210.24,68.262 +455110,209.17,69.517 +455111,208.06,70.767 +455112,206.91,72.011 +455113,209,68.269 +455114,207.87,69.504 +455115,206.72,70.735 +455116,205.52,71.961 +455117,207.75,68.277 +455118,206.58,69.492 +455119,205.38,70.704 +455120,204.14,71.911 +455121,206.49,68.286 +455122,205.28,69.481 +455123,204.04,70.672 +455124,202.75,71.859 +455125,205.24,68.296 +455126,203.99,69.469 +455127,202.7,70.64 +455128,201.37,71.806 +455129,203.99,68.307 +455130,202.69,69.458 +455131,201.36,70.607 +455132,199.98,71.753 +455133,202.74,68.319 +455134,201.4,69.448 +455135,200.02,70.574 +455136,198.6,71.698 +455137,201.48,68.331 +455138,200.1,69.437 +455139,198.68,70.541 +455140,197.22,71.643 +455141,200.22,68.345 +455142,198.81,69.427 +455143,197.35,70.508 +455144,195.84,71.586 +455145,198.97,68.359 +455146,197.51,69.417 +455147,196.01,70.474 +455148,194.46,71.529 +455149,197.71,68.375 +455150,196.21,69.408 +455151,194.67,70.44 +455152,193.08,71.471 +455153,196.45,68.391 +455154,194.91,69.398 +455155,193.33,70.406 +455156,191.7,71.412 +455157,195.19,68.408 +455158,193.62,69.389 +455159,192,70.371 +455160,190.33,71.352 +455161,193.93,68.426 +455162,192.32,69.381 +455163,190.66,70.336 +455164,188.95,71.291 +455165,192.66,68.444 +455166,191.02,69.372 +455167,189.33,70.301 +455168,187.58,71.23 +455169,191.4,68.463 +455170,189.72,69.364 +455171,187.99,70.266 +455172,186.21,71.168 +455173,190.13,68.483 +455174,188.42,69.356 +455175,186.66,70.23 +455176,184.84,71.105 +455177,188.87,68.504 +455178,187.12,69.348 +455179,185.32,70.194 +455180,183.47,71.041 +455181,187.6,68.525 +455182,185.82,69.341 +455183,183.99,70.158 +455184,182.1,70.977 +455185,186.33,68.547 +455186,184.52,69.333 +455187,182.66,70.122 +455188,180.73,70.912 +455189,185.06,68.57 +455190,183.22,69.326 +455191,181.33,70.085 +455192,179.36,70.846 +455193,183.78,68.593 +455194,181.92,69.319 +455195,179.99,70.048 +455196,178,70.78 +455197,182.51,68.617 +455198,180.62,69.313 +455199,178.66,70.011 +455200,176.64,70.713 +455201,181.23,68.642 +455202,179.31,69.306 +455203,177.33,69.974 +455204,175.28,70.645 +455205,179.95,68.667 +455206,178.01,69.3 +455207,176,69.937 +455208,173.92,70.577 +455209,178.68,68.692 +455210,176.71,69.293 +455211,174.67,69.899 +455212,172.56,70.508 +455213,177.4,68.718 +455214,175.4,69.287 +455215,173.34,69.861 +455216,171.2,70.439 +455217,176.11,68.744 +455218,174.1,69.282 +455219,172.01,69.824 +455220,169.84,70.37 +455221,174.83,68.771 +455222,172.79,69.276 +455223,170.68,69.785 +455224,168.49,70.299 +455225,173.55,68.798 +455226,171.49,69.27 +455227,169.36,69.747 +455228,167.14,70.229 +455229,172.26,68.826 +455230,170.18,69.265 +455231,168.03,69.709 +455232,165.79,70.158 +455233,170.97,68.854 +455234,168.88,69.259 +455235,166.7,69.67 +455236,164.44,70.086 +455237,169.68,68.882 +455238,167.57,69.254 +455239,165.38,69.632 +455240,163.09,70.015 +455241,168.39,68.911 +455242,166.26,69.249 +455243,164.05,69.593 +455244,161.75,69.943 +455245,167.1,68.939 +455246,164.95,69.244 +455247,162.73,69.554 +455248,160.4,69.87 +455249,165.8,68.968 +455250,163.64,69.239 +455251,161.4,69.515 +455252,159.06,69.797 +455253,164.51,68.998 +455254,162.33,69.234 +455255,160.08,69.476 +455256,157.72,69.724 +455257,163.21,69.027 +455258,161.02,69.229 +455259,158.75,69.437 +455260,156.38,69.651 +455261,161.91,69.057 +455262,159.71,69.224 +455263,157.43,69.398 +455264,155.05,69.578 +455265,160.61,69.086 +455266,158.4,69.22 +455267,156.11,69.359 +455268,153.71,69.504 +455269,159.3,69.116 +455270,157.09,69.215 +455271,154.79,69.32 +455272,152.38,69.43 +455273,158,69.146 +455274,155.78,69.21 +455275,153.47,69.28 +455276,151.05,69.356 +455277,156.69,69.176 +455278,154.47,69.206 +455279,152.15,69.241 +455280,149.72,69.282 +455281,155.39,69.206 +455282,153.15,69.201 +455283,150.83,69.201 +455284,148.39,69.208 +455285,154.08,69.236 +455286,151.84,69.196 +455287,149.51,69.162 +455288,147.06,69.134 +455289,152.76,69.266 +455290,150.53,69.191 +455291,148.19,69.123 +455292,145.74,69.06 +455293,151.45,69.296 +455294,149.21,69.187 +455295,146.87,69.083 +455296,144.42,68.986 +455297,150.14,69.325 +455298,147.9,69.182 +455299,145.55,69.044 +455300,143.1,68.912 +455301,148.82,69.355 +455302,146.58,69.177 +455303,144.24,69.005 +455304,141.78,68.838 +455305,147.5,69.384 +455306,145.26,69.172 +455307,142.92,68.965 +455308,140.46,68.764 +455309,146.18,69.414 +455310,143.95,69.167 +455311,141.61,68.926 +455312,139.15,68.69 +455313,144.86,69.443 +455314,142.63,69.162 +455315,140.29,68.887 +455316,137.84,68.617 +455317,143.54,69.471 +455318,141.31,69.157 +455319,138.98,68.848 +455320,136.53,68.543 +455321,142.21,69.5 +455322,139.99,69.152 +455323,137.66,68.809 +455324,135.22,68.47 +455325,140.88,69.528 +455326,138.67,69.147 +455327,136.35,68.77 +455328,133.91,68.397 +455329,139.56,69.556 +455330,137.35,69.142 +455331,135.04,68.731 +455332,132.6,68.325 +455333,138.23,69.584 +455334,136.03,69.136 +455335,133.73,68.692 +455336,131.3,68.252 +455337,136.9,69.611 +455338,134.71,69.131 +455339,132.42,68.653 +455340,130,68.18 +455341,135.56,69.638 +455342,133.39,69.125 +455343,131.11,68.615 +455344,128.7,68.108 +455345,134.23,69.664 +455346,132.07,69.119 +455347,129.8,68.576 +455348,127.4,68.037 +455349,132.89,69.69 +455350,130.74,69.113 +455351,128.49,68.538 +455352,126.11,67.966 +455353,131.55,69.716 +455354,129.42,69.107 +455355,127.18,68.5 +455356,124.81,67.895 +455357,130.21,69.741 +455358,128.1,69.1 +455359,125.87,68.462 +455360,123.52,67.825 +455361,128.87,69.765 +455362,126.77,69.094 +455363,124.56,68.424 +455364,122.23,67.756 +455365,127.53,69.789 +455366,125.45,69.087 +455367,123.26,68.386 +455368,120.94,67.687 +455369,126.18,69.813 +455370,124.12,69.08 +455371,121.95,68.348 +455372,119.66,67.618 +455373,124.84,69.835 +455374,122.79,69.073 +455375,120.65,68.311 +455376,118.37,67.55 +455377,123.49,69.858 +455378,121.47,69.066 +455379,119.34,68.274 +455380,117.09,67.483 +455381,122.14,69.879 +455382,120.14,69.058 +455383,118.04,68.237 +455384,115.81,67.416 +455385,120.79,69.9 +455386,118.81,69.051 +455387,116.73,68.2 +455388,114.53,67.35 +455389,119.44,69.92 +455390,117.49,69.043 +455391,115.43,68.164 +455392,113.25,67.284 +455393,118.08,69.939 +455394,116.16,69.034 +455395,114.13,68.127 +455396,111.98,67.22 +455397,116.73,69.958 +455398,114.83,69.026 +455399,112.82,68.091 +455400,110.7,67.155 +455401,115.37,69.976 +455402,113.5,69.017 +455403,111.52,68.055 +455404,109.43,67.092 +455405,114.01,69.993 +455406,112.17,69.008 +455407,110.22,68.02 +455408,108.16,67.029 +455409,112.65,70.01 +455410,110.84,68.999 +455411,108.92,67.984 +455412,106.89,66.968 +455413,111.29,70.025 +455414,109.51,68.989 +455415,107.62,67.949 +455416,105.62,66.907 +455417,109.93,70.04 +455418,108.18,68.98 +455419,106.32,67.915 +455420,104.35,66.846 +455421,108.57,70.054 +455422,106.84,68.97 +455423,105.02,67.88 +455424,103.09,66.787 +455425,107.2,70.067 +455426,105.51,68.959 +455427,103.72,67.846 +455428,101.83,66.729 +455429,105.84,70.079 +455430,104.18,68.948 +455431,102.42,67.812 +455432,100.56,66.671 +455433,104.47,70.09 +455434,102.85,68.937 +455435,101.13,67.778 +455436,99.303,66.614 +455437,103.1,70.1 +455438,101.51,68.926 +455439,99.83,67.745 +455440,98.044,66.558 +455441,101.73,70.109 +455442,100.18,68.914 +455443,98.533,67.712 +455444,96.787,66.504 +455445,100.36,70.118 +455446,98.843,68.902 +455447,97.237,67.679 +455448,95.531,66.45 +455449,98.987,70.125 +455450,97.508,68.89 +455451,95.941,67.647 +455452,94.276,66.397 +455453,97.613,70.131 +455454,96.173,68.877 +455455,94.646,67.615 +455456,93.022,66.345 +455457,96.238,70.137 +455458,94.837,68.864 +455459,93.351,67.583 +455460,91.77,66.294 +455461,94.863,70.141 +455462,93.501,68.851 +455463,92.056,67.551 +455464,90.519,66.244 +455465,93.486,70.144 +455466,92.165,68.837 +455467,90.762,67.52 +455468,89.269,66.195 +455469,92.108,70.146 +455470,90.828,68.823 +455471,89.468,67.49 +455472,88.02,66.147 +455473,90.729,70.148 +455474,89.491,68.809 +455475,88.175,67.459 +455476,86.772,66.101 +455477,89.349,70.148 +455478,88.154,68.794 +455479,86.882,67.429 +455480,85.526,66.055 +455481,87.968,70.147 +455482,86.816,68.779 +455483,85.589,67.399 +455484,84.28,66.011 +455485,86.587,70.144 +455486,85.478,68.763 +455487,84.297,67.37 +455488,83.036,65.967 +455489,85.204,70.141 +455490,84.14,68.747 +455491,83.005,67.341 +455492,81.792,65.925 +455493,83.82,70.137 +455494,82.801,68.731 +455495,81.713,67.313 +455496,80.549,65.884 +455497,82.436,70.131 +455498,81.463,68.714 +455499,80.422,67.284 +455500,79.307,65.844 +455501,81.051,70.125 +455502,80.123,68.697 +455503,79.131,67.257 +455504,78.066,65.805 +455505,79.665,70.117 +455506,78.784,68.679 +455507,77.84,67.229 +455508,76.826,65.768 +455509,78.278,70.108 +455510,77.445,68.661 +455511,76.549,67.202 +455512,75.587,65.731 +455513,76.891,70.098 +455514,76.105,68.643 +455515,75.259,67.175 +455516,74.348,65.696 +455517,75.503,70.086 +455518,74.765,68.624 +455519,73.969,67.149 +455520,73.11,65.662 +455521,74.114,70.074 +455522,73.425,68.605 +455523,72.679,67.123 +455524,71.873,65.629 +455525,72.725,70.06 +455526,72.084,68.586 +455527,71.39,67.098 +455528,70.636,65.597 +455529,71.335,70.045 +455530,70.744,68.566 +455531,70.1,67.073 +455532,69.4,65.567 +455533,69.945,70.029 +455534,69.403,68.546 +455535,68.811,67.048 +455536,68.164,65.538 +455537,68.554,70.012 +455538,68.062,68.525 +455539,67.522,67.024 +455540,66.928,65.51 +455541,67.162,69.993 +455542,66.721,68.504 +455543,66.233,67 +455544,65.694,65.483 +455545,65.77,69.974 +455546,65.38,68.482 +455547,64.944,66.976 +455548,64.459,65.457 +455549,64.378,69.953 +455550,64.039,68.46 +455551,63.656,66.953 +455552,63.225,65.433 +455553,62.985,69.931 +455554,62.698,68.438 +455555,62.367,66.93 +455556,61.991,65.41 +455557,61.593,69.907 +455558,61.356,68.415 +455559,61.079,66.908 +455560,60.757,65.388 +455561,60.199,69.883 +455562,60.015,68.392 +455563,59.79,66.886 +455564,59.524,65.367 +455565,58.806,69.857 +455566,58.673,68.368 +455567,58.502,66.865 +455568,58.29,65.348 +455569,57.412,69.83 +455570,57.332,68.344 +455571,57.214,66.843 +455572,57.057,65.33 +455573,56.018,69.802 +455574,55.99,68.319 +455575,55.926,66.823 +455576,55.824,65.313 +455577,54.624,69.773 +455578,54.648,68.295 +455579,54.638,66.802 +455580,54.591,65.297 +455581,53.23,69.742 +455582,53.307,68.269 +455583,53.35,66.782 +455584,53.358,65.283 +455585,51.836,69.71 +455586,51.965,68.244 +455587,52.062,66.763 +455588,52.125,65.269 +455589,50.442,69.677 +455590,50.624,68.217 +455591,50.774,66.744 +455592,50.891,65.257 +455593,49.047,69.643 +455594,49.282,68.191 +455595,49.486,66.725 +455596,49.658,65.247 +455597,47.653,69.608 +455598,47.94,68.164 +455599,48.198,66.707 +455600,48.424,65.237 +455601,46.259,69.571 +455602,46.599,68.137 +455603,46.91,66.689 +455604,47.19,65.228 +455605,44.865,69.534 +455606,45.258,68.109 +455607,45.621,66.671 +455608,45.956,65.221 +455609,43.471,69.495 +455610,43.916,68.081 +455611,44.333,66.654 +455612,44.721,65.215 +455613,42.078,69.455 +455614,42.575,68.052 +455615,43.045,66.637 +455616,43.487,65.21 +455617,40.684,69.414 +455618,41.234,68.023 +455619,41.756,66.621 +455620,42.251,65.206 +455621,39.291,69.371 +455622,39.893,67.994 +455623,40.468,66.604 +455624,41.016,65.204 +455625,37.898,69.328 +455626,38.552,67.964 +455627,39.179,66.589 +455628,39.779,65.202 +455629,36.506,69.283 +455630,37.212,67.934 +455631,37.89,66.573 +455632,38.543,65.202 +455633,35.114,69.238 +455634,35.871,67.904 +455635,36.601,66.558 +455636,37.305,65.203 +455637,33.722,69.191 +455638,34.531,67.873 +455639,35.312,66.544 +455640,36.067,65.205 +455641,32.331,69.143 +455642,33.191,67.842 +455643,34.023,66.53 +455644,34.829,65.208 +455645,30.94,69.094 +455646,31.851,67.81 +455647,32.733,66.516 +455648,33.589,65.212 +455649,29.55,69.044 +455650,30.511,67.778 +455651,31.443,66.502 +455652,32.349,65.217 +455653,28.161,68.993 +455654,29.171,67.746 +455655,30.153,66.489 +455656,31.109,65.223 +455657,26.772,68.941 +455658,27.832,67.713 +455659,28.863,66.476 +455660,29.867,65.23 +455661,25.384,68.888 +455662,26.493,67.68 +455663,27.573,66.463 +455664,28.625,65.238 +455665,23.996,68.834 +455666,25.155,67.647 +455667,26.282,66.451 +455668,27.381,65.248 +455669,22.609,68.779 +455670,23.816,67.613 +455671,24.991,66.439 +455672,26.137,65.258 +455673,21.223,68.723 +455674,22.478,67.579 +455675,23.7,66.428 +455676,24.892,65.269 +455677,19.838,68.666 +455678,21.14,67.545 +455679,22.408,66.416 +455680,23.646,65.281 +455681,18.454,68.608 +455682,19.803,67.51 +455683,21.117,66.405 +455684,22.399,65.294 +455685,17.07,68.549 +455686,18.466,67.475 +455687,19.824,66.394 +455688,21.15,65.308 +455689,15.687,68.489 +455690,17.129,67.44 +455691,18.532,66.384 +455692,19.901,65.322 +455693,14.306,68.428 +455694,15.792,67.405 +455695,17.239,66.374 +455696,18.651,65.338 +455697,12.925,68.367 +455698,14.456,67.369 +455699,15.946,66.364 +455700,17.399,65.354 +455701,11.546,68.304 +455702,13.12,67.332 +455703,14.652,66.354 +455704,16.146,65.372 +455705,10.167,68.241 +455706,11.785,67.296 +455707,13.358,66.345 +455708,14.893,65.39 +455709,8.7897,68.177 +455710,10.45,67.259 +455711,12.064,66.336 +455712,13.637,65.409 +455713,7.4134,68.113 +455714,9.1155,67.222 +455715,10.769,66.327 +455716,12.381,65.428 +455717,6.0383,68.047 +455718,7.7814,67.185 +455719,9.4744,66.318 +455720,11.123,65.448 +455721,4.6643,67.981 +455722,6.4477,67.148 +455723,8.1789,66.31 +455724,9.8644,65.469 +455725,3.2917,67.914 +455726,5.1144,67.11 +455727,6.8829,66.302 +455728,8.604,65.491 +455729,1.9202,67.846 +455730,3.7816,67.072 +455731,5.5866,66.294 +455732,7.3423,65.513 +455733,0.55012,67.778 +455734,2.4493,67.034 +455735,4.2898,66.286 +455736,6.0792,65.536 +455737,359.18,67.709 +455738,1.1174,66.995 +455739,2.9926,66.279 +455740,4.8147,65.56 +455741,357.81,67.639 +455742,359.79,66.957 +455743,1.6949,66.271 +455744,3.5488,65.584 +455745,356.45,67.569 +455746,358.46,66.918 +455747,0.39678,66.264 +455748,2.2814,65.609 +455749,355.08,67.498 +455750,357.12,66.879 +455751,359.1,66.257 +455752,1.0125,65.634 +455753,353.72,67.427 +455754,355.79,66.839 +455755,357.8,66.25 +455756,359.74,65.66 +455757,352.36,67.355 +455758,354.47,66.8 +455759,356.5,66.243 +455760,358.47,65.686 +455761,351,67.282 +455762,353.14,66.76 +455763,355.2,66.237 +455764,357.2,65.713 +455765,349.64,67.209 +455766,351.81,66.721 +455767,353.9,66.23 +455768,355.92,65.74 +455769,348.28,67.136 +455770,350.48,66.681 +455771,352.6,66.224 +455772,354.65,65.767 +455773,346.93,67.062 +455774,349.15,66.641 +455775,351.3,66.218 +455776,353.37,65.795 +455777,345.57,66.988 +455778,347.83,66.601 +455779,349.99,66.212 +455780,352.09,65.823 +455781,344.22,66.914 +455782,346.5,66.56 +455783,348.69,66.206 +455784,350.81,65.852 +455785,342.87,66.839 +455786,345.18,66.52 +455787,347.39,66.2 +455788,349.52,65.88 +455789,341.52,66.764 +455790,343.85,66.479 +455791,346.08,66.194 +455792,348.24,65.909 +455793,340.18,66.688 +455794,342.53,66.439 +455795,344.78,66.188 +455796,346.95,65.938 +455797,338.83,66.613 +455798,341.2,66.398 +455799,343.48,66.183 +455800,345.66,65.968 +455801,337.49,66.537 +455802,339.88,66.357 +455803,342.17,66.177 +455804,344.37,65.997 +455805,336.14,66.461 +455806,338.56,66.316 +455807,340.86,66.171 +455808,343.08,66.027 +455809,334.8,66.384 +455810,337.23,66.275 +455811,339.56,66.166 +455812,341.79,66.057 +455813,333.47,66.308 +455814,335.91,66.234 +455815,338.25,66.16 +455816,340.5,66.087 +455817,332.13,66.231 +455818,334.59,66.193 +455819,336.94,66.155 +455820,339.2,66.117 +455821,330.8,66.155 +455822,333.27,66.152 +455823,335.63,66.149 +455824,337.9,66.147 +455825,329.46,66.078 +455826,331.95,66.111 +455827,334.33,66.144 +455828,336.6,66.177 +455829,328.13,66.001 +455830,330.63,66.07 +455831,333.02,66.138 +455832,335.3,66.207 +455833,326.8,65.924 +455834,329.32,66.029 +455835,331.71,66.133 +455836,334,66.237 +455837,325.48,65.848 +455838,328,65.988 +455839,330.4,66.127 +455840,332.69,66.267 +455841,324.15,65.771 +455842,326.68,65.947 +455843,329.09,66.122 +455844,331.38,66.296 +455845,322.83,65.694 +455846,325.36,65.906 +455847,327.77,66.116 +455848,330.08,66.326 +455849,321.51,65.618 +455850,324.05,65.865 +455851,326.46,66.11 +455852,328.76,66.355 +455853,320.19,65.541 +455854,322.73,65.824 +455855,325.15,66.104 +455856,327.45,66.384 +455857,318.87,65.465 +455858,321.42,65.783 +455859,323.84,66.099 +455860,326.14,66.413 +455861,317.56,65.389 +455862,320.11,65.742 +455863,322.52,66.093 +455864,324.82,66.442 +455865,316.24,65.313 +455866,318.79,65.701 +455867,321.21,66.087 +455868,323.51,66.47 +455869,314.93,65.238 +455870,317.48,65.66 +455871,319.89,66.08 +455872,322.19,66.498 +455873,313.62,65.163 +455874,316.17,65.619 +455875,318.58,66.074 +455876,320.87,66.526 +455877,312.31,65.088 +455878,314.86,65.579 +455879,317.26,66.068 +455880,319.54,66.554 +455881,311.01,65.013 +455882,313.55,65.538 +455883,315.94,66.061 +455884,318.22,66.58 +455885,309.7,64.939 +455886,312.24,65.498 +455887,314.63,66.054 +455888,316.89,66.607 +455889,308.4,64.865 +455890,310.93,65.458 +455891,313.31,66.047 +455892,315.57,66.633 +455893,307.1,64.792 +455894,309.62,65.418 +455895,311.99,66.04 +455896,314.24,66.659 +455897,305.81,64.719 +455898,308.31,65.378 +455899,310.67,66.033 +455900,312.91,66.684 +455901,304.51,64.646 +455902,307,65.338 +455903,309.35,66.026 +455904,311.57,66.708 +455905,303.22,64.574 +455906,305.7,65.299 +455907,308.03,66.018 +455908,310.24,66.733 +455909,301.92,64.503 +455910,304.39,65.259 +455911,306.71,66.01 +455912,308.9,66.756 +455913,300.63,64.432 +455914,303.08,65.22 +455915,305.39,66.002 +455916,307.57,66.779 +455917,299.35,64.362 +455918,301.78,65.181 +455919,304.07,65.994 +455920,306.23,66.801 +455921,298.06,64.292 +455922,300.47,65.142 +455923,302.74,65.986 +455924,304.89,66.823 +455925,296.78,64.223 +455926,299.17,65.103 +455927,301.42,65.977 +455928,303.54,66.844 +455929,295.49,64.155 +455930,297.87,65.065 +455931,300.1,65.968 +455932,302.2,66.864 +455933,294.21,64.087 +455934,296.57,65.027 +455935,298.77,65.959 +455936,300.85,66.883 +455937,292.94,64.02 +455938,295.26,64.989 +455939,297.45,65.95 +455940,299.51,66.902 +455941,291.66,63.954 +455942,293.96,64.951 +455943,296.12,65.94 +455944,298.16,66.92 +455945,290.38,63.888 +455946,292.66,64.914 +455947,294.8,65.93 +455948,296.81,66.937 +455949,289.11,63.823 +455950,291.36,64.876 +455951,293.47,65.92 +455952,295.46,66.953 +455953,287.84,63.76 +455954,290.06,64.839 +455955,292.14,65.909 +455956,294.1,66.969 +455957,286.57,63.697 +455958,288.76,64.803 +455959,290.82,65.898 +455960,292.75,66.984 +455961,285.3,63.634 +455962,287.46,64.766 +455963,289.49,65.887 +455964,291.39,66.997 +455965,284.04,63.573 +455966,286.17,64.73 +455967,288.16,65.876 +455968,290.03,67.01 +455969,282.77,63.513 +455970,284.87,64.694 +455971,286.83,65.864 +455972,288.67,67.022 +455973,281.51,63.453 +455974,283.57,64.658 +455975,285.5,65.852 +455976,287.31,67.033 +455977,280.25,63.394 +455978,282.28,64.623 +455979,284.17,65.84 +455980,285.95,67.043 +455981,278.99,63.337 +455982,280.98,64.588 +455983,282.84,65.827 +455984,284.59,67.052 +455985,277.73,63.28 +455986,279.69,64.554 +455987,281.51,65.814 +455988,283.22,67.061 +455989,276.47,63.225 +455990,278.39,64.519 +455991,280.18,65.801 +455992,281.86,67.068 +455993,275.22,63.17 +455994,277.1,64.485 +455995,278.85,65.787 +455996,280.49,67.074 +455997,273.96,63.116 +455998,275.8,64.452 +455999,277.52,65.773 +456000,279.12,67.079 +456001,272.71,63.064 +456002,274.51,64.418 +456003,276.19,65.758 +456004,277.75,67.083 +456005,271.46,63.012 +456006,273.22,64.385 +456007,274.85,65.743 +456008,276.38,67.086 +456009,270.21,62.962 +456010,271.92,64.353 +456011,273.52,65.728 +456012,275.01,67.088 +456013,268.96,62.913 +456014,270.63,64.32 +456015,272.19,65.713 +456016,273.64,67.088 +456017,267.72,62.864 +456018,269.34,64.288 +456019,270.85,65.697 +456020,272.26,67.088 +456021,266.47,62.817 +456022,268.05,64.257 +456023,269.52,65.68 +456024,270.89,67.086 +456025,265.23,62.771 +456026,266.76,64.226 +456027,268.18,65.663 +456028,269.51,67.084 +456029,263.98,62.727 +456030,265.47,64.195 +456031,266.85,65.646 +456032,268.13,67.08 +456033,262.74,62.683 +456034,264.18,64.164 +456035,265.51,65.629 +456036,266.76,67.075 +456037,261.5,62.64 +456038,262.89,64.134 +456039,264.18,65.611 +456040,265.38,67.069 +456041,260.26,62.599 +456042,261.6,64.105 +456043,262.84,65.592 +456044,264,67.062 +456045,259.02,62.559 +456046,260.31,64.075 +456047,261.51,65.574 +456048,262.62,67.053 +456049,257.79,62.52 +456050,259.02,64.046 +456051,260.17,65.554 +456052,261.23,67.044 +456053,256.55,62.483 +456054,257.74,64.018 +456055,258.83,65.535 +456056,259.85,67.033 +456057,255.31,62.446 +456058,256.45,63.99 +456059,257.5,65.515 +456060,258.47,67.021 +456061,254.08,62.411 +456062,255.16,63.962 +456063,256.16,65.494 +456064,257.08,67.007 +456065,252.84,62.377 +456066,253.87,63.935 +456067,254.82,65.473 +456068,255.7,66.993 +456069,251.61,62.345 +456070,252.59,63.908 +456071,253.48,65.452 +456072,254.31,66.977 +456073,250.38,62.313 +456074,251.3,63.881 +456075,252.15,65.43 +456076,252.92,66.96 +456077,249.15,62.283 +456078,250.01,63.855 +456079,250.81,65.408 +456080,251.54,66.942 +456081,247.91,62.254 +456082,248.73,63.829 +456083,249.47,65.386 +456084,250.15,66.922 +456085,246.68,62.227 +456086,247.44,63.804 +456087,248.13,65.363 +456088,248.76,66.901 +456089,245.45,62.2 +456090,246.16,63.779 +456091,246.79,65.339 +456092,247.37,66.879 +456093,244.22,62.175 +456094,244.87,63.755 +456095,245.45,65.315 +456096,245.98,66.856 +456097,242.99,62.151 +456098,243.58,63.731 +456099,244.12,65.291 +456100,244.59,66.832 +456101,241.76,62.129 +456102,242.3,63.707 +456103,242.78,65.266 +456104,243.2,66.806 +456105,240.54,62.107 +456106,241.01,63.684 +456107,241.44,65.241 +456108,241.81,66.779 +456109,239.31,62.087 +456110,239.73,63.661 +456111,240.1,65.216 +456112,240.42,66.751 +456113,238.08,62.069 +456114,238.44,63.638 +456115,238.76,65.19 +456116,239.03,66.721 +456117,236.85,62.051 +456118,237.16,63.616 +456119,237.42,65.163 +456120,237.63,66.69 +456121,235.62,62.035 +456122,235.88,63.595 +456123,236.08,65.136 +456124,236.24,66.658 +456125,234.4,62.02 +456126,234.59,63.574 +456127,234.74,65.109 +456128,234.85,66.625 +456129,233.17,62.006 +456130,233.31,63.553 +456131,233.4,65.081 +456132,233.45,66.59 +456133,231.94,61.994 +456134,232.02,63.532 +456135,232.06,65.053 +456136,232.06,66.555 +456137,230.72,61.983 +456138,230.74,63.512 +456139,230.72,65.024 +456140,230.67,66.518 +456141,229.49,61.973 +456142,229.45,63.493 +456143,229.38,64.995 +456144,229.28,66.479 +456145,228.26,61.964 +456146,228.17,63.473 +456147,228.04,64.966 +456148,227.88,66.44 +456149,227.03,61.956 +456150,226.88,63.455 +456151,226.7,64.936 +456152,226.49,66.399 +456153,225.81,61.95 +456154,225.6,63.436 +456155,225.36,64.906 +456156,225.1,66.357 +456157,224.58,61.945 +456158,224.32,63.418 +456159,224.02,64.875 +456160,223.7,66.314 +456161,223.35,61.941 +456162,223.03,63.4 +456163,222.68,64.844 +456164,222.31,66.27 +456165,222.12,61.938 +456166,221.75,63.383 +456167,221.34,64.812 +456168,220.92,66.224 +456169,220.89,61.937 +456170,220.46,63.366 +456171,220.01,64.78 +456172,219.52,66.178 +456173,219.66,61.936 +456174,219.18,63.35 +456175,218.67,64.748 +456176,218.13,66.13 +456177,218.43,61.937 +456178,217.89,63.334 +456179,217.33,64.715 +456180,216.74,66.081 +456181,217.2,61.939 +456182,216.61,63.318 +456183,215.99,64.682 +456184,215.35,66.031 +456185,215.97,61.942 +456186,215.32,63.302 +456187,214.65,64.649 +456188,213.95,65.979 +456189,214.74,61.946 +456190,214.04,63.287 +456191,213.31,64.615 +456192,212.56,65.927 +456193,213.51,61.951 +456194,212.75,63.273 +456195,211.97,64.581 +456196,211.17,65.874 +456197,212.27,61.957 +456198,211.47,63.258 +456199,210.64,64.546 +456200,209.78,65.819 +456201,211.04,61.965 +456202,210.18,63.244 +456203,209.3,64.511 +456204,208.39,65.763 +456205,209.81,61.973 +456206,208.89,63.23 +456207,207.96,64.475 +456208,207,65.707 +456209,208.57,61.982 +456210,207.61,63.217 +456211,206.62,64.44 +456212,205.61,65.649 +456213,207.34,61.993 +456214,206.32,63.204 +456215,205.28,64.404 +456216,204.22,65.59 +456217,206.1,62.004 +456218,205.03,63.191 +456219,203.95,64.367 +456220,202.84,65.53 +456221,204.86,62.016 +456222,203.75,63.179 +456223,202.61,64.33 +456224,201.45,65.47 +456225,203.62,62.029 +456226,202.46,63.167 +456227,201.27,64.293 +456228,200.06,65.408 +456229,202.38,62.044 +456230,201.17,63.155 +456231,199.94,64.256 +456232,198.68,65.345 +456233,201.14,62.059 +456234,199.89,63.143 +456235,198.6,64.218 +456236,197.29,65.282 +456237,199.9,62.074 +456238,198.6,63.132 +456239,197.27,64.18 +456240,195.91,65.217 +456241,198.66,62.091 +456242,197.31,63.121 +456243,195.93,64.142 +456244,194.53,65.152 +456245,197.41,62.109 +456246,196.02,63.11 +456247,194.6,64.103 +456248,193.14,65.085 +456249,196.17,62.127 +456250,194.73,63.1 +456251,193.26,64.064 +456252,191.76,65.018 +456253,194.92,62.146 +456254,193.44,63.09 +456255,191.93,64.025 +456256,190.38,64.95 +456257,193.68,62.166 +456258,192.15,63.08 +456259,190.6,63.985 +456260,189,64.881 +456261,192.43,62.187 +456262,190.86,63.07 +456263,189.26,63.945 +456264,187.62,64.812 +456265,191.18,62.209 +456266,189.57,63.061 +456267,187.93,63.905 +456268,186.25,64.741 +456269,189.93,62.231 +456270,188.28,63.051 +456271,186.6,63.865 +456272,184.87,64.67 +456273,188.67,62.253 +456274,186.99,63.042 +456275,185.27,63.824 +456276,183.5,64.598 +456277,187.42,62.277 +456278,185.7,63.033 +456279,183.93,63.784 +456280,182.12,64.526 +456281,186.16,62.301 +456282,184.41,63.025 +456283,182.6,63.743 +456284,180.75,64.452 +456285,184.91,62.325 +456286,183.11,63.016 +456287,181.27,63.701 +456288,179.38,64.379 +456289,183.65,62.351 +456290,181.82,63.008 +456291,179.94,63.66 +456292,178.01,64.304 +456293,182.39,62.376 +456294,180.53,63 +456295,178.61,63.618 +456296,176.64,64.229 +456297,181.13,62.403 +456298,179.23,62.992 +456299,177.28,63.576 +456300,175.27,64.153 +456301,179.87,62.429 +456302,177.94,62.984 +456303,175.95,63.534 +456304,173.91,64.077 +456305,178.6,62.456 +456306,176.64,62.977 +456307,174.63,63.492 +456308,172.54,64 +456309,177.34,62.484 +456310,175.35,62.969 +456311,173.3,63.449 +456312,171.18,63.923 +456313,176.07,62.512 +456314,174.05,62.962 +456315,171.97,63.407 +456316,169.82,63.845 +456317,174.8,62.54 +456318,172.76,62.954 +456319,170.64,63.364 +456320,168.46,63.767 +456321,173.53,62.569 +456322,171.46,62.947 +456323,169.32,63.321 +456324,167.1,63.689 +456325,172.26,62.598 +456326,170.16,62.94 +456327,167.99,63.278 +456328,165.75,63.61 +456329,170.98,62.627 +456330,168.86,62.933 +456331,166.67,63.235 +456332,164.39,63.531 +456333,169.71,62.656 +456334,167.56,62.926 +456335,165.34,63.192 +456336,163.04,63.451 +456337,168.43,62.686 +456338,166.27,62.92 +456339,164.02,63.148 +456340,161.69,63.371 +456341,167.15,62.716 +456342,164.97,62.913 +456343,162.7,63.105 +456344,160.34,63.291 +456345,165.87,62.746 +456346,163.67,62.906 +456347,161.37,63.061 +456348,158.99,63.21 +456349,164.59,62.776 +456350,162.37,62.899 +456351,160.05,63.018 +456352,157.64,63.13 +456353,163.31,62.806 +456354,161.06,62.893 +456355,158.73,62.974 +456356,156.3,63.049 +456357,162.02,62.837 +456358,159.76,62.886 +456359,157.41,62.93 +456360,154.95,62.968 +456361,160.74,62.867 +456362,158.46,62.879 +456363,156.09,62.887 +456364,153.61,62.887 +456365,159.45,62.897 +456366,157.16,62.873 +456367,154.77,62.843 +456368,152.27,62.806 +456369,158.16,62.928 +456370,155.85,62.866 +456371,153.45,62.799 +456372,150.93,62.725 +456373,156.86,62.958 +456374,154.55,62.859 +456375,152.13,62.755 +456376,149.6,62.644 +456377,155.57,62.988 +456378,153.25,62.853 +456379,150.82,62.711 +456380,148.27,62.562 +456381,154.27,63.018 +456382,151.94,62.846 +456383,149.5,62.667 +456384,146.93,62.481 +456385,152.98,63.048 +456386,150.63,62.839 +456387,148.18,62.624 +456388,145.6,62.4 +456389,151.68,63.078 +456390,149.33,62.832 +456391,146.87,62.58 +456392,144.28,62.319 +456393,150.37,63.108 +456394,148.02,62.826 +456395,145.55,62.536 +456396,142.95,62.238 +456397,149.07,63.137 +456398,146.71,62.819 +456399,144.24,62.492 +456400,141.63,62.157 +456401,147.77,63.166 +456402,145.41,62.811 +456403,142.92,62.449 +456404,140.3,62.077 +456405,146.46,63.195 +456406,144.1,62.804 +456407,141.61,62.405 +456408,138.98,61.996 +456409,145.15,63.224 +456410,142.79,62.797 +456411,140.3,62.361 +456412,137.67,61.916 +456413,143.84,63.252 +456414,141.48,62.79 +456415,138.99,62.318 +456416,136.35,61.836 +456417,142.53,63.28 +456418,140.17,62.782 +456419,137.68,62.275 +456420,135.04,61.757 +456421,141.22,63.307 +456422,138.86,62.774 +456423,136.37,62.231 +456424,133.72,61.678 +456425,139.9,63.334 +456426,137.54,62.766 +456427,135.06,62.188 +456428,132.41,61.599 +456429,138.58,63.361 +456430,136.23,62.758 +456431,133.75,62.145 +456432,131.11,61.52 +456433,137.26,63.387 +456434,134.92,62.75 +456435,132.44,62.102 +456436,129.8,61.442 +456437,135.94,63.413 +456438,133.61,62.742 +456439,131.13,62.06 +456440,128.5,61.365 +456441,134.62,63.438 +456442,132.29,62.733 +456443,129.82,62.017 +456444,127.19,61.287 +456445,133.3,63.462 +456446,130.98,62.725 +456447,128.52,61.975 +456448,125.9,61.211 +456449,131.97,63.486 +456450,129.66,62.716 +456451,127.21,61.932 +456452,124.6,61.135 +456453,130.64,63.509 +456454,128.35,62.707 +456455,125.91,61.89 +456456,123.3,61.059 +456457,129.31,63.532 +456458,127.03,62.697 +456459,124.6,61.848 +456460,122.01,60.984 +456461,127.98,63.554 +456462,125.71,62.688 +456463,123.3,61.807 +456464,120.72,60.91 +456465,126.65,63.575 +456466,124.4,62.678 +456467,122,61.765 +456468,119.43,60.837 +456469,125.32,63.596 +456470,123.08,62.668 +456471,120.69,61.724 +456472,118.14,60.764 +456473,123.98,63.616 +456474,121.76,62.657 +456475,119.39,61.683 +456476,116.85,60.691 +456477,122.64,63.635 +456478,120.44,62.647 +456479,118.09,61.642 +456480,115.57,60.62 +456481,121.3,63.653 +456482,119.12,62.636 +456483,116.79,61.602 +456484,114.29,60.549 +456485,119.96,63.671 +456486,117.8,62.625 +456487,115.49,61.561 +456488,113.01,60.479 +456489,118.62,63.687 +456490,116.48,62.613 +456491,114.19,61.521 +456492,111.73,60.41 +456493,117.28,63.703 +456494,115.16,62.602 +456495,112.89,61.481 +456496,110.46,60.342 +456497,115.93,63.718 +456498,113.84,62.59 +456499,111.6,61.442 +456500,109.18,60.274 +456501,114.58,63.732 +456502,112.51,62.577 +456503,110.3,61.403 +456504,107.91,60.207 +456505,113.23,63.745 +456506,111.19,62.565 +456507,109,61.364 +456508,106.64,60.142 +456509,111.88,63.757 +456510,109.87,62.552 +456511,107.71,61.325 +456512,105.37,60.077 +456513,110.53,63.768 +456514,108.54,62.538 +456515,106.41,61.287 +456516,104.11,60.013 +456517,109.18,63.778 +456518,107.22,62.525 +456519,105.12,61.249 +456520,102.84,59.95 +456521,107.82,63.788 +456522,105.89,62.511 +456523,103.82,61.211 +456524,101.58,59.888 +456525,106.47,63.796 +456526,104.57,62.496 +456527,102.53,61.174 +456528,100.32,59.828 +456529,105.11,63.803 +456530,103.24,62.481 +456531,101.24,61.137 +456532,99.063,59.768 +456533,103.75,63.809 +456534,101.92,62.466 +456535,99.943,61.1 +456536,97.806,59.709 +456537,102.39,63.814 +456538,100.59,62.451 +456539,98.651,61.063 +456540,96.55,59.651 +456541,101.03,63.818 +456542,99.263,62.435 +456543,97.36,61.027 +456544,95.296,59.595 +456545,99.667,63.821 +456546,97.936,62.419 +456547,96.069,60.992 +456548,94.044,59.539 +456549,98.303,63.822 +456550,96.608,62.402 +456551,94.778,60.956 +456552,92.794,59.485 +456553,96.938,63.823 +456554,95.279,62.385 +456555,93.489,60.921 +456556,91.545,59.432 +456557,95.571,63.822 +456558,93.95,62.368 +456559,92.199,60.887 +456560,90.298,59.38 +456561,94.203,63.821 +456562,92.621,62.35 +456563,90.91,60.853 +456564,89.052,59.329 +456565,92.834,63.818 +456566,91.291,62.332 +456567,89.622,60.819 +456568,87.807,59.279 +456569,91.464,63.813 +456570,89.961,62.313 +456571,88.334,60.785 +456572,86.564,59.231 +456573,90.092,63.808 +456574,88.63,62.294 +456575,87.047,60.752 +456576,85.323,59.183 +456577,88.72,63.801 +456578,87.299,62.274 +456579,85.76,60.72 +456580,84.083,59.137 +456581,87.346,63.794 +456582,85.968,62.254 +456583,84.473,60.688 +456584,82.844,59.093 +456585,85.972,63.785 +456586,84.636,62.234 +456587,83.187,60.656 +456588,81.606,59.049 +456589,84.596,63.774 +456590,83.304,62.213 +456591,81.901,60.624 +456592,80.37,59.007 +456593,83.219,63.763 +456594,81.972,62.192 +456595,80.616,60.593 +456596,79.135,58.966 +456597,81.842,63.75 +456598,80.64,62.17 +456599,79.331,60.563 +456600,77.901,58.926 +456601,80.463,63.736 +456602,79.307,62.148 +456603,78.047,60.532 +456604,76.668,58.888 +456605,79.084,63.72 +456606,77.973,62.126 +456607,76.763,60.503 +456608,75.436,58.851 +456609,77.704,63.704 +456610,76.64,62.103 +456611,75.479,60.473 +456612,74.206,58.815 +456613,76.322,63.686 +456614,75.306,62.079 +456615,74.195,60.444 +456616,72.976,58.78 +456617,74.94,63.667 +456618,73.972,62.056 +456619,72.912,60.416 +456620,71.747,58.747 +456621,73.558,63.646 +456622,72.638,62.031 +456623,71.629,60.388 +456624,70.519,58.716 +456625,72.174,63.624 +456626,71.304,62.006 +456627,70.347,60.36 +456628,69.292,58.685 +456629,70.79,63.601 +456630,69.969,61.981 +456631,69.065,60.333 +456632,68.066,58.656 +456633,69.405,63.576 +456634,68.634,61.956 +456635,67.783,60.306 +456636,66.84,58.628 +456637,68.02,63.551 +456638,67.299,61.929 +456639,66.501,60.28 +456640,65.615,58.602 +456641,66.633,63.523 +456642,65.964,61.903 +456643,65.219,60.254 +456644,64.391,58.577 +456645,65.247,63.495 +456646,64.628,61.876 +456647,63.938,60.228 +456648,63.167,58.553 +456649,63.859,63.465 +456650,63.293,61.848 +456651,62.657,60.203 +456652,61.944,58.53 +456653,62.472,63.434 +456654,61.957,61.82 +456655,61.376,60.179 +456656,60.722,58.509 +456657,61.083,63.402 +456658,60.621,61.792 +456659,60.096,60.154 +456660,59.5,58.49 +456661,59.695,63.368 +456662,59.285,61.763 +456663,58.815,60.131 +456664,58.278,58.471 +456665,58.306,63.333 +456666,57.949,61.734 +456667,57.535,60.107 +456668,57.057,58.454 +456669,56.916,63.296 +456670,56.613,61.704 +456671,56.255,60.084 +456672,55.836,58.438 +456673,55.526,63.259 +456674,55.277,61.674 +456675,54.975,60.062 +456676,54.615,58.424 +456677,54.136,63.22 +456678,53.94,61.643 +456679,53.695,60.04 +456680,53.394,58.411 +456681,52.746,63.179 +456682,52.604,61.612 +456683,52.415,60.018 +456684,52.174,58.399 +456685,51.355,63.138 +456686,51.268,61.58 +456687,51.135,59.997 +456688,50.954,58.389 +456689,49.965,63.095 +456690,49.931,61.548 +456691,49.856,59.976 +456692,49.734,58.379 +456693,48.574,63.051 +456694,48.595,61.516 +456695,48.576,59.956 +456696,48.513,58.371 +456697,47.183,63.005 +456698,47.258,61.483 +456699,47.296,59.936 +456700,47.293,58.365 +456701,45.792,62.958 +456702,45.922,61.449 +456703,46.017,59.916 +456704,46.073,58.359 +456705,44.401,62.91 +456706,44.586,61.416 +456707,44.737,59.897 +456708,44.853,58.355 +456709,43.01,62.861 +456710,43.249,61.381 +456711,43.458,59.878 +456712,43.632,58.352 +456713,41.618,62.811 +456714,41.913,61.347 +456715,42.178,59.86 +456716,42.411,58.351 +456717,40.227,62.759 +456718,40.577,61.312 +456719,40.898,59.842 +456720,41.19,58.35 +456721,38.837,62.706 +456722,39.241,61.276 +456723,39.619,59.824 +456724,39.969,58.351 +456725,37.446,62.652 +456726,37.905,61.24 +456727,38.339,59.807 +456728,38.747,58.353 +456729,36.055,62.597 +456730,36.569,61.204 +456731,37.059,59.79 +456732,37.525,58.356 +456733,34.665,62.54 +456734,35.233,61.167 +456735,35.779,59.774 +456736,36.302,58.361 +456737,33.275,62.482 +456738,33.898,61.13 +456739,34.499,59.758 +456740,35.079,58.366 +456741,31.885,62.424 +456742,32.562,61.093 +456743,33.219,59.742 +456744,33.855,58.373 +456745,30.496,62.364 +456746,31.227,61.055 +456747,31.939,59.726 +456748,32.631,58.38 +456749,29.107,62.303 +456750,29.892,61.016 +456751,30.658,59.711 +456752,31.406,58.389 +456753,27.718,62.24 +456754,28.557,60.978 +456755,29.378,59.697 +456756,30.18,58.399 +456757,26.33,62.177 +456758,27.223,60.939 +456759,28.097,59.682 +456760,28.954,58.41 +456761,24.943,62.113 +456762,25.888,60.899 +456763,26.816,59.668 +456764,27.726,58.422 +456765,23.555,62.047 +456766,24.554,60.86 +456767,25.535,59.655 +456768,26.498,58.435 +456769,22.169,61.981 +456770,23.22,60.819 +456771,24.253,59.641 +456772,25.27,58.449 +456773,20.783,61.914 +456774,21.886,60.779 +456775,22.972,59.628 +456776,24.04,58.463 +456777,19.398,61.845 +456778,20.553,60.738 +456779,21.69,59.616 +456780,22.809,58.479 +456781,18.013,61.776 +456782,19.22,60.697 +456783,20.408,59.603 +456784,21.578,58.496 +456785,16.63,61.705 +456786,17.887,60.656 +456787,19.125,59.591 +456788,20.345,58.514 +456789,15.247,61.634 +456790,16.555,60.614 +456791,17.843,59.579 +456792,19.111,58.532 +456793,13.864,61.562 +456794,15.223,60.572 +456795,16.56,59.568 +456796,17.877,58.551 +456797,12.483,61.489 +456798,13.891,60.529 +456799,15.276,59.556 +456800,16.641,58.572 +456801,11.102,61.415 +456802,12.56,60.487 +456803,13.993,59.545 +456804,15.404,58.593 +456805,9.7229,61.34 +456806,11.229,60.444 +456807,12.709,59.535 +456808,14.165,58.614 +456809,8.3443,61.264 +456810,9.8979,60.4 +456811,11.424,59.524 +456812,12.926,58.637 +456813,6.9667,61.188 +456814,8.5676,60.357 +456815,10.139,59.514 +456816,11.685,58.66 +456817,5.5902,61.111 +456818,7.2378,60.313 +456819,8.8544,59.504 +456820,10.443,58.684 +456821,4.2147,61.033 +456822,5.9084,60.269 +456823,7.569,59.494 +456824,9.2002,58.709 +456825,2.8404,60.954 +456826,4.5794,60.225 +456827,6.2831,59.484 +456828,7.9555,58.734 +456829,1.4671,60.875 +456830,3.2508,60.18 +456831,4.9969,59.475 +456832,6.7096,58.76 +456833,0.095118,60.795 +456834,1.9228,60.136 +456835,3.7102,59.465 +456836,5.4622,58.786 +456837,358.72,60.714 +456838,0.59513,60.091 +456839,2.4232,59.456 +456840,4.2134,58.813 +456841,357.35,60.633 +456842,359.27,60.046 +456843,1.1357,59.447 +456844,2.9631,58.841 +456845,355.99,60.551 +456846,357.94,60 +456847,359.85,59.439 +456848,1.7113,58.869 +456849,354.62,60.469 +456850,356.62,59.955 +456851,358.56,59.43 +456852,0.4581,58.897 +456853,353.25,60.386 +456854,355.29,59.909 +456855,357.27,59.422 +456856,359.2,58.926 +456857,351.89,60.302 +456858,353.96,59.863 +456859,355.98,59.413 +456860,357.95,58.955 +456861,350.53,60.218 +456862,352.64,59.817 +456863,354.69,59.405 +456864,356.69,58.985 +456865,349.17,60.134 +456866,351.32,59.771 +456867,353.4,59.397 +456868,355.43,59.015 +456869,347.81,60.049 +456870,349.99,59.724 +456871,352.11,59.389 +456872,354.17,59.045 +456873,346.45,59.964 +456874,348.67,59.678 +456875,350.82,59.381 +456876,352.91,59.076 +456877,345.09,59.879 +456878,347.35,59.631 +456879,349.53,59.373 +456880,351.64,59.107 +456881,343.74,59.793 +456882,346.03,59.585 +456883,348.23,59.366 +456884,350.38,59.138 +456885,342.38,59.707 +456886,344.7,59.538 +456887,346.94,59.358 +456888,349.11,59.169 +456889,341.03,59.62 +456890,343.38,59.491 +456891,345.65,59.35 +456892,347.84,59.201 +456893,339.68,59.534 +456894,342.06,59.444 +456895,344.35,59.343 +456896,346.57,59.232 +456897,338.33,59.447 +456898,340.74,59.397 +456899,343.06,59.335 +456900,345.29,59.264 +456901,336.99,59.36 +456902,339.42,59.35 +456903,341.77,59.328 +456904,344.02,59.296 +456905,335.64,59.273 +456906,338.11,59.303 +456907,340.47,59.32 +456908,342.74,59.327 +456909,334.3,59.186 +456910,336.79,59.256 +456911,339.17,59.313 +456912,341.47,59.359 +456913,332.96,59.099 +456914,335.47,59.208 +456915,337.88,59.305 +456916,340.19,59.391 +456917,331.62,59.012 +456918,334.16,59.161 +456919,336.58,59.297 +456920,338.9,59.423 +456921,330.28,58.924 +456922,332.84,59.114 +456923,335.28,59.29 +456924,337.62,59.454 +456925,328.94,58.837 +456926,331.53,59.067 +456927,333.98,59.282 +456928,336.34,59.486 +456929,327.61,58.75 +456930,330.21,59.02 +456931,332.68,59.275 +456932,335.05,59.517 +456933,326.28,58.663 +456934,328.9,58.972 +456935,331.39,59.267 +456936,333.76,59.548 +456937,324.95,58.576 +456938,327.58,58.925 +456939,330.09,59.259 +456940,332.47,59.579 +456941,323.62,58.489 +456942,326.27,58.878 +456943,328.78,59.251 +456944,331.18,59.61 +456945,322.29,58.402 +456946,324.96,58.831 +456947,327.48,59.243 +456948,329.88,59.64 +456949,320.97,58.316 +456950,323.65,58.784 +456951,326.18,59.235 +456952,328.59,59.671 +456953,319.65,58.23 +456954,322.34,58.737 +456955,324.88,59.227 +456956,327.29,59.7 +456957,318.33,58.144 +456958,321.03,58.691 +456959,323.58,59.218 +456960,325.99,59.73 +456961,317.01,58.059 +456962,319.72,58.644 +456963,322.27,59.21 +456964,324.69,59.759 +456965,315.7,57.974 +456966,318.41,58.597 +456967,320.97,59.201 +456968,323.38,59.788 +456969,314.38,57.889 +456970,317.11,58.551 +456971,319.66,59.192 +456972,322.08,59.816 +456973,313.07,57.804 +456974,315.8,58.505 +456975,318.36,59.184 +456976,320.77,59.843 +456977,311.76,57.721 +456978,314.49,58.459 +456979,317.05,59.174 +456980,319.46,59.871 +456981,310.45,57.637 +456982,313.19,58.413 +456983,315.75,59.165 +456984,318.15,59.897 +456985,309.15,57.554 +456986,311.88,58.367 +456987,314.44,59.156 +456988,316.84,59.923 +456989,307.85,57.472 +456990,310.58,58.321 +456991,313.13,59.146 +456992,315.53,59.949 +456993,306.54,57.39 +456994,309.28,58.276 +456995,311.82,59.136 +456996,314.21,59.974 +456997,305.25,57.309 +456998,307.97,58.23 +456999,310.51,59.126 +457000,312.89,59.998 +457001,303.95,57.229 +457002,306.67,58.185 +457003,309.2,59.115 +457004,311.58,60.022 +457005,302.65,57.149 +457006,305.37,58.14 +457007,307.89,59.105 +457008,310.25,60.044 +457009,301.36,57.07 +457010,304.07,58.096 +457011,306.58,59.094 +457012,308.93,60.066 +457013,300.07,56.991 +457014,302.77,58.051 +457015,305.27,59.083 +457016,307.61,60.088 +457017,298.78,56.913 +457018,301.47,58.007 +457019,303.96,59.071 +457020,306.28,60.108 +457021,297.5,56.837 +457022,300.17,57.963 +457023,302.65,59.06 +457024,304.95,60.128 +457025,296.21,56.76 +457026,298.87,57.92 +457027,301.33,59.048 +457028,303.62,60.147 +457029,294.93,56.685 +457030,297.58,57.876 +457031,300.02,59.035 +457032,302.29,60.165 +457033,293.65,56.611 +457034,296.28,57.833 +457035,298.71,59.023 +457036,300.96,60.182 +457037,292.38,56.537 +457038,294.99,57.79 +457039,297.39,59.01 +457040,299.63,60.199 +457041,291.1,56.465 +457042,293.69,57.748 +457043,296.08,58.997 +457044,298.29,60.214 +457045,289.83,56.393 +457046,292.4,57.706 +457047,294.76,58.983 +457048,296.95,60.228 +457049,288.56,56.323 +457050,291.1,57.664 +457051,293.44,58.969 +457052,295.61,60.242 +457053,287.29,56.253 +457054,289.81,57.622 +457055,292.13,58.955 +457056,294.27,60.254 +457057,286.02,56.184 +457058,288.52,57.581 +457059,290.81,58.94 +457060,292.93,60.266 +457061,284.75,56.117 +457062,287.23,57.54 +457063,289.49,58.925 +457064,291.58,60.276 +457065,283.49,56.05 +457066,285.94,57.5 +457067,288.17,58.91 +457068,290.24,60.285 +457069,282.23,55.985 +457070,284.65,57.459 +457071,286.85,58.894 +457072,288.89,60.294 +457073,280.97,55.921 +457074,283.36,57.42 +457075,285.53,58.878 +457076,287.54,60.301 +457077,279.71,55.858 +457078,282.07,57.38 +457079,284.22,58.862 +457080,286.19,60.307 +457081,278.46,55.796 +457082,280.78,57.341 +457083,282.89,58.845 +457084,284.84,60.312 +457085,277.2,55.735 +457086,279.49,57.302 +457087,281.57,58.828 +457088,283.49,60.315 +457089,275.95,55.675 +457090,278.2,57.264 +457091,280.25,58.81 +457092,282.14,60.318 +457093,274.7,55.617 +457094,276.92,57.226 +457095,278.93,58.792 +457096,280.78,60.319 +457097,273.46,55.56 +457098,275.63,57.188 +457099,277.61,58.774 +457100,279.42,60.319 +457101,272.21,55.504 +457102,274.34,57.151 +457103,276.29,58.755 +457104,278.06,60.318 +457105,270.96,55.45 +457106,273.06,57.114 +457107,274.96,58.736 +457108,276.71,60.316 +457109,269.72,55.396 +457110,271.78,57.078 +457111,273.64,58.716 +457112,275.34,60.313 +457113,268.48,55.344 +457114,270.49,57.042 +457115,272.31,58.696 +457116,273.98,60.308 +457117,267.24,55.294 +457118,269.21,57.007 +457119,270.99,58.675 +457120,272.62,60.302 +457121,266,55.244 +457122,267.93,56.972 +457123,269.67,58.654 +457124,271.25,60.294 +457125,264.77,55.196 +457126,266.64,56.937 +457127,268.34,58.632 +457128,269.89,60.286 +457129,263.53,55.15 +457130,265.36,56.903 +457131,267.02,58.611 +457132,268.52,60.276 +457133,262.3,55.105 +457134,264.08,56.869 +457135,265.69,58.588 +457136,267.15,60.265 +457137,261.07,55.061 +457138,262.8,56.836 +457139,264.36,58.565 +457140,265.79,60.252 +457141,259.84,55.018 +457142,261.52,56.803 +457143,263.04,58.542 +457144,264.42,60.238 +457145,258.61,54.977 +457146,260.24,56.771 +457147,261.71,58.518 +457148,263.04,60.223 +457149,257.38,54.938 +457150,258.96,56.739 +457151,260.38,58.494 +457152,261.67,60.206 +457153,256.15,54.9 +457154,257.68,56.707 +457155,259.05,58.469 +457156,260.3,60.188 +457157,254.93,54.863 +457158,256.4,56.676 +457159,257.73,58.444 +457160,258.93,60.169 +457161,253.7,54.828 +457162,255.12,56.646 +457163,256.4,58.418 +457164,257.55,60.148 +457165,252.48,54.794 +457166,253.85,56.615 +457167,255.07,58.392 +457168,256.18,60.126 +457169,251.26,54.761 +457170,252.57,56.586 +457171,253.74,58.365 +457172,254.8,60.102 +457173,250.04,54.73 +457174,251.29,56.557 +457175,252.41,58.338 +457176,253.42,60.077 +457177,248.82,54.701 +457178,250.01,56.528 +457179,251.08,58.31 +457180,252.04,60.051 +457181,247.6,54.673 +457182,248.74,56.5 +457183,249.75,58.282 +457184,250.66,60.023 +457185,246.38,54.646 +457186,247.46,56.472 +457187,248.42,58.254 +457188,249.28,59.994 +457189,245.16,54.621 +457190,246.19,56.445 +457191,247.09,58.225 +457192,247.9,59.963 +457193,243.95,54.597 +457194,244.91,56.418 +457195,245.76,58.195 +457196,246.52,59.931 +457197,242.73,54.575 +457198,243.64,56.391 +457199,244.43,58.165 +457200,245.14,59.898 +457201,241.52,54.554 +457202,242.36,56.365 +457203,243.1,58.135 +457204,243.76,59.863 +457205,240.3,54.535 +457206,241.09,56.34 +457207,241.77,58.104 +457208,242.38,59.827 +457209,239.09,54.517 +457210,239.81,56.315 +457211,240.44,58.072 +457212,240.99,59.789 +457213,237.87,54.501 +457214,238.54,56.291 +457215,239.11,58.04 +457216,239.61,59.75 +457217,236.66,54.485 +457218,237.26,56.267 +457219,237.78,58.008 +457220,238.23,59.71 +457221,235.45,54.472 +457222,235.99,56.243 +457223,236.45,57.975 +457224,236.84,59.668 +457225,234.23,54.46 +457226,234.71,56.22 +457227,235.12,57.941 +457228,235.46,59.625 +457229,233.02,54.449 +457230,233.44,56.197 +457231,233.79,57.907 +457232,234.07,59.581 +457233,231.81,54.44 +457234,232.17,56.175 +457235,232.46,57.873 +457236,232.69,59.535 +457237,230.6,54.432 +457238,230.89,56.153 +457239,231.13,57.838 +457240,231.3,59.487 +457241,229.39,54.425 +457242,229.62,56.132 +457243,229.79,57.803 +457244,229.91,59.439 +457245,228.18,54.42 +457246,228.35,56.111 +457247,228.46,57.767 +457248,228.53,59.389 +457249,226.97,54.416 +457250,227.07,56.091 +457251,227.13,57.731 +457252,227.14,59.337 +457253,225.75,54.414 +457254,225.8,56.071 +457255,225.8,57.694 +457256,225.76,59.285 +457257,224.54,54.413 +457258,224.53,56.051 +457259,224.47,57.657 +457260,224.37,59.231 +457261,223.33,54.413 +457262,223.26,56.032 +457263,223.14,57.62 +457264,222.98,59.175 +457265,222.12,54.414 +457266,221.98,56.013 +457267,221.81,57.582 +457268,221.6,59.119 +457269,220.91,54.417 +457270,220.71,55.995 +457271,220.48,57.543 +457272,220.21,59.061 +457273,219.7,54.421 +457274,219.44,55.977 +457275,219.14,57.504 +457276,218.82,59.002 +457277,218.48,54.426 +457278,218.16,55.96 +457279,217.81,57.465 +457280,217.44,58.941 +457281,217.27,54.433 +457282,216.89,55.943 +457283,216.48,57.425 +457284,216.05,58.879 +457285,216.06,54.441 +457286,215.62,55.926 +457287,215.15,57.385 +457288,214.66,58.816 +457289,214.84,54.45 +457290,214.34,55.91 +457291,213.82,57.344 +457292,213.28,58.752 +457293,213.63,54.46 +457294,213.07,55.894 +457295,212.49,57.303 +457296,211.89,58.687 +457297,212.42,54.471 +457298,211.8,55.879 +457299,211.16,57.262 +457300,210.51,58.62 +457301,211.2,54.484 +457302,210.52,55.864 +457303,209.83,57.22 +457304,209.12,58.552 +457305,209.98,54.497 +457306,209.25,55.849 +457307,208.5,57.178 +457308,207.74,58.483 +457309,208.77,54.512 +457310,207.98,55.835 +457311,207.17,57.135 +457312,206.35,58.413 +457313,207.55,54.528 +457314,206.7,55.821 +457315,205.84,57.093 +457316,204.97,58.342 +457317,206.33,54.544 +457318,205.43,55.807 +457319,204.51,57.049 +457320,203.59,58.27 +457321,205.11,54.562 +457322,204.15,55.794 +457323,203.19,57.006 +457324,202.2,58.197 +457325,203.89,54.581 +457326,202.88,55.781 +457327,201.86,56.962 +457328,200.82,58.122 +457329,202.67,54.601 +457330,201.61,55.768 +457331,200.53,56.917 +457332,199.44,58.047 +457333,201.45,54.622 +457334,200.33,55.756 +457335,199.2,56.872 +457336,198.06,57.97 +457337,200.23,54.643 +457338,199.05,55.744 +457339,197.87,56.827 +457340,196.68,57.893 +457341,199,54.666 +457342,197.78,55.732 +457343,196.55,56.782 +457344,195.3,57.814 +457345,197.78,54.689 +457346,196.5,55.721 +457347,195.22,56.736 +457348,193.92,57.735 +457349,196.55,54.713 +457350,195.23,55.709 +457351,193.89,56.69 +457352,192.54,57.655 +457353,195.32,54.738 +457354,193.95,55.699 +457355,192.57,56.644 +457356,191.17,57.574 +457357,194.1,54.764 +457358,192.67,55.688 +457359,191.24,56.598 +457360,189.79,57.492 +457361,192.87,54.791 +457362,191.4,55.678 +457363,189.91,56.551 +457364,188.41,57.409 +457365,191.64,54.818 +457366,190.12,55.667 +457367,188.59,56.504 +457368,187.04,57.325 +457369,190.4,54.846 +457370,188.84,55.658 +457371,187.26,56.456 +457372,185.67,57.24 +457373,189.17,54.875 +457374,187.56,55.648 +457375,185.94,56.409 +457376,184.29,57.155 +457377,187.93,54.904 +457378,186.29,55.638 +457379,184.62,56.361 +457380,182.92,57.069 +457381,186.7,54.934 +457382,185.01,55.629 +457383,183.29,56.313 +457384,181.55,56.982 +457385,185.46,54.965 +457386,183.73,55.62 +457387,181.97,56.264 +457388,180.18,56.895 +457389,184.22,54.996 +457390,182.45,55.611 +457391,180.65,56.216 +457392,178.81,56.807 +457393,182.98,55.027 +457394,181.17,55.603 +457395,179.32,56.167 +457396,177.45,56.718 +457397,181.74,55.059 +457398,179.89,55.594 +457399,178,56.118 +457400,176.08,56.629 +457401,180.49,55.092 +457402,178.61,55.586 +457403,176.68,56.069 +457404,174.72,56.539 +457405,179.25,55.124 +457406,177.32,55.577 +457407,175.36,56.02 +457408,173.36,56.449 +457409,178,55.158 +457410,176.04,55.569 +457411,174.04,55.97 +457412,171.99,56.358 +457413,176.75,55.191 +457414,174.76,55.561 +457415,172.72,55.921 +457416,170.63,56.267 +457417,175.5,55.225 +457418,173.48,55.553 +457419,171.4,55.871 +457420,169.27,56.175 +457421,174.25,55.259 +457422,172.19,55.546 +457423,170.08,55.821 +457424,167.92,56.083 +457425,173,55.294 +457426,170.91,55.538 +457427,168.77,55.771 +457428,166.56,55.991 +457429,171.74,55.328 +457430,169.63,55.53 +457431,167.45,55.721 +457432,165.21,55.898 +457433,170.49,55.363 +457434,168.34,55.523 +457435,166.13,55.671 +457436,163.85,55.805 +457437,169.23,55.398 +457438,167.06,55.515 +457439,164.82,55.621 +457440,162.5,55.711 +457441,167.97,55.433 +457442,165.77,55.508 +457443,163.5,55.57 +457444,161.15,55.618 +457445,166.71,55.469 +457446,164.48,55.501 +457447,162.19,55.52 +457448,159.81,55.524 +457449,165.44,55.504 +457450,163.2,55.493 +457451,160.87,55.469 +457452,158.46,55.43 +457453,164.18,55.539 +457454,161.91,55.486 +457455,159.56,55.419 +457456,157.12,55.336 +457457,162.91,55.574 +457458,160.62,55.479 +457459,158.25,55.368 +457460,155.77,55.241 +457461,161.64,55.609 +457462,159.33,55.471 +457463,156.93,55.318 +457464,154.43,55.147 +457465,160.37,55.644 +457466,158.04,55.464 +457467,155.62,55.267 +457468,153.09,55.053 +457469,159.1,55.679 +457470,156.75,55.456 +457471,154.31,55.217 +457472,151.76,54.959 +457473,157.82,55.714 +457474,155.46,55.449 +457475,153,55.166 +457476,150.42,54.864 +457477,156.55,55.749 +457478,154.17,55.441 +457479,151.69,55.116 +457480,149.09,54.77 +457481,155.27,55.783 +457482,152.88,55.434 +457483,150.38,55.066 +457484,147.76,54.676 +457485,153.99,55.818 +457486,151.59,55.426 +457487,149.08,55.015 +457488,146.43,54.582 +457489,152.71,55.851 +457490,150.3,55.418 +457491,147.77,54.965 +457492,145.1,54.489 +457493,151.42,55.885 +457494,149,55.41 +457495,146.46,54.915 +457496,143.77,54.395 +457497,150.14,55.918 +457498,147.71,55.402 +457499,145.16,54.865 +457500,142.45,54.302 +457501,148.85,55.951 +457502,146.42,55.394 +457503,143.85,54.815 +457504,141.13,54.209 +457505,147.56,55.984 +457506,145.12,55.386 +457507,142.55,54.765 +457508,139.81,54.116 +457509,146.27,56.016 +457510,143.83,55.378 +457511,141.24,54.715 +457512,138.49,54.024 +457513,144.98,56.047 +457514,142.53,55.369 +457515,139.94,54.666 +457516,137.18,53.932 +457517,143.68,56.078 +457518,141.23,55.361 +457519,138.64,54.616 +457520,135.86,53.841 +457521,142.39,56.109 +457522,139.94,55.352 +457523,137.33,54.567 +457524,134.55,53.75 +457525,141.09,56.138 +457526,138.64,55.343 +457527,136.03,54.518 +457528,133.24,53.66 +457529,139.79,56.168 +457530,137.34,55.333 +457531,134.73,54.469 +457532,131.94,53.57 +457533,138.49,56.197 +457534,136.04,55.324 +457535,133.43,54.42 +457536,130.63,53.481 +457537,137.18,56.225 +457538,134.74,55.314 +457539,132.13,54.371 +457540,129.33,53.392 +457541,135.88,56.252 +457542,133.44,55.304 +457543,130.84,54.323 +457544,128.03,53.304 +457545,134.57,56.279 +457546,132.14,55.294 +457547,129.54,54.275 +457548,126.73,53.217 +457549,133.26,56.305 +457550,130.84,55.284 +457551,128.24,54.227 +457552,125.44,53.13 +457553,131.95,56.33 +457554,129.54,55.273 +457555,126.95,54.179 +457556,124.14,53.044 +457557,130.64,56.354 +457558,128.24,55.262 +457559,125.65,54.132 +457560,122.85,52.959 +457561,129.32,56.378 +457562,126.93,55.251 +457563,124.36,54.085 +457564,121.56,52.875 +457565,128.01,56.4 +457566,125.63,55.239 +457567,123.06,54.038 +457568,120.27,52.791 +457569,126.69,56.422 +457570,124.32,55.228 +457571,121.77,53.992 +457572,118.99,52.709 +457573,125.37,56.443 +457574,123.02,55.215 +457575,120.48,53.945 +457576,117.71,52.627 +457577,124.05,56.463 +457578,121.71,55.203 +457579,119.19,53.899 +457580,116.43,52.546 +457581,122.73,56.482 +457582,120.41,55.19 +457583,117.9,53.854 +457584,115.15,52.467 +457585,121.4,56.5 +457586,119.1,55.177 +457587,116.61,53.809 +457588,113.87,52.388 +457589,120.08,56.517 +457590,117.8,55.164 +457591,115.32,53.764 +457592,112.6,52.31 +457593,118.75,56.533 +457594,116.49,55.15 +457595,114.03,53.719 +457596,111.33,52.234 +457597,117.42,56.548 +457598,115.18,55.136 +457599,112.74,53.675 +457600,110.06,52.158 +457601,116.09,56.562 +457602,113.87,55.122 +457603,111.45,53.631 +457604,108.79,52.084 +457605,114.76,56.574 +457606,112.56,55.107 +457607,110.17,53.587 +457608,107.53,52.011 +457609,113.42,56.586 +457610,111.25,55.091 +457611,108.88,53.544 +457612,106.27,51.938 +457613,112.09,56.597 +457614,109.94,55.076 +457615,107.6,53.502 +457616,105.01,51.868 +457617,110.75,56.606 +457618,108.63,55.06 +457619,106.31,53.459 +457620,103.75,51.798 +457621,109.41,56.614 +457622,107.32,55.043 +457623,105.03,53.417 +457624,102.49,51.729 +457625,108.07,56.621 +457626,106.01,55.026 +457627,103.75,53.376 +457628,101.24,51.662 +457629,106.73,56.627 +457630,104.7,55.009 +457631,102.46,53.335 +457632,99.987,51.597 +457633,105.38,56.631 +457634,103.38,54.992 +457635,101.18,53.294 +457636,98.737,51.532 +457637,104.04,56.634 +457638,102.07,54.973 +457639,99.902,53.254 +457640,97.489,51.469 +457641,102.69,56.636 +457642,100.76,54.955 +457643,98.622,53.214 +457644,96.243,51.407 +457645,101.35,56.637 +457646,99.442,54.936 +457647,97.342,53.175 +457648,95,51.347 +457649,99.997,56.636 +457650,98.128,54.916 +457651,96.063,53.136 +457652,93.758,51.288 +457653,98.647,56.634 +457654,96.813,54.897 +457655,94.785,53.098 +457656,92.518,51.23 +457657,97.296,56.631 +457658,95.497,54.876 +457659,93.507,53.06 +457660,91.28,51.174 +457661,95.943,56.626 +457662,94.182,54.855 +457663,92.23,53.022 +457664,90.044,51.119 +457665,94.589,56.62 +457666,92.865,54.834 +457667,90.953,52.985 +457668,88.809,51.066 +457669,93.234,56.613 +457670,91.549,54.812 +457671,89.677,52.949 +457672,87.577,51.015 +457673,91.878,56.604 +457674,90.232,54.79 +457675,88.402,52.913 +457676,86.346,50.964 +457677,90.52,56.594 +457678,88.914,54.767 +457679,87.127,52.877 +457680,85.117,50.916 +457681,89.162,56.582 +457682,87.596,54.744 +457683,85.853,52.842 +457684,83.89,50.869 +457685,87.802,56.569 +457686,86.278,54.721 +457687,84.579,52.808 +457688,82.664,50.823 +457689,86.441,56.555 +457690,84.96,54.696 +457691,83.306,52.774 +457692,81.44,50.779 +457693,85.079,56.539 +457694,83.641,54.672 +457695,82.033,52.74 +457696,80.217,50.737 +457697,83.717,56.522 +457698,82.322,54.647 +457699,80.761,52.707 +457700,78.996,50.696 +457701,82.353,56.503 +457702,81.002,54.621 +457703,79.489,52.675 +457704,77.776,50.657 +457705,80.988,56.482 +457706,79.682,54.595 +457707,78.217,52.643 +457708,76.558,50.619 +457709,79.622,56.461 +457710,78.362,54.568 +457711,76.947,52.611 +457712,75.341,50.583 +457713,78.255,56.437 +457714,77.042,54.541 +457715,75.676,52.58 +457716,74.125,50.549 +457717,76.888,56.413 +457718,75.721,54.513 +457719,74.406,52.55 +457720,72.911,50.516 +457721,75.519,56.386 +457722,74.4,54.485 +457723,73.137,52.52 +457724,71.698,50.485 +457725,74.15,56.359 +457726,73.079,54.456 +457727,71.867,52.49 +457728,70.486,50.455 +457729,72.78,56.329 +457730,71.757,54.427 +457731,70.599,52.462 +457732,69.275,50.427 +457733,71.41,56.299 +457734,70.436,54.397 +457735,69.33,52.433 +457736,68.065,50.401 +457737,70.038,56.266 +457738,69.114,54.367 +457739,68.062,52.406 +457740,66.856,50.376 +457741,68.666,56.233 +457742,67.792,54.336 +457743,66.795,52.378 +457744,65.648,50.353 +457745,67.293,56.197 +457746,66.47,54.305 +457747,65.527,52.352 +457748,64.441,50.332 +457749,65.92,56.161 +457750,65.147,54.273 +457751,64.26,52.325 +457752,63.235,50.312 +457753,64.546,56.122 +457754,63.825,54.241 +457755,62.993,52.3 +457756,62.03,50.294 +457757,63.171,56.083 +457758,62.502,54.208 +457759,61.727,52.274 +457760,60.825,50.277 +457761,61.796,56.041 +457762,61.179,54.175 +457763,60.461,52.25 +457764,59.621,50.262 +457765,60.421,55.998 +457766,59.856,54.141 +457767,59.195,52.226 +457768,58.418,50.249 +457769,59.045,55.954 +457770,58.533,54.106 +457771,57.929,52.202 +457772,57.215,50.237 +457773,57.668,55.908 +457774,57.21,54.072 +457775,56.664,52.179 +457776,56.013,50.227 +457777,56.291,55.861 +457778,55.887,54.036 +457779,55.398,52.157 +457780,54.811,50.218 +457781,54.914,55.813 +457782,54.563,54 +457783,54.133,52.134 +457784,53.61,50.211 +457785,53.537,55.762 +457786,53.24,53.964 +457787,52.868,52.113 +457788,52.409,50.205 +457789,52.159,55.711 +457790,51.917,53.927 +457791,51.604,52.092 +457792,51.208,50.201 +457793,50.781,55.658 +457794,50.593,53.89 +457795,50.339,52.071 +457796,50.007,50.199 +457797,49.403,55.603 +457798,49.27,53.852 +457799,49.075,52.051 +457800,48.807,50.198 +457801,48.024,55.547 +457802,47.946,53.814 +457803,47.81,52.032 +457804,47.606,50.198 +457805,46.646,55.49 +457806,46.623,53.775 +457807,46.546,52.013 +457808,46.406,50.2 +457809,45.267,55.431 +457810,45.299,53.736 +457811,45.282,51.994 +457812,45.206,50.204 +457813,43.889,55.371 +457814,43.976,53.696 +457815,44.018,51.976 +457816,44.005,50.209 +457817,42.51,55.309 +457818,42.653,53.656 +457819,42.753,51.959 +457820,42.805,50.215 +457821,41.131,55.246 +457822,41.33,53.615 +457823,41.489,51.941 +457824,41.604,50.223 +457825,39.753,55.182 +457826,40.007,53.574 +457827,40.225,51.925 +457828,40.403,50.232 +457829,38.374,55.116 +457830,38.684,53.533 +457831,38.961,51.909 +457832,39.202,50.243 +457833,36.996,55.049 +457834,37.361,53.491 +457835,37.697,51.893 +457836,38.001,50.255 +457837,35.617,54.981 +457838,36.038,53.448 +457839,36.433,51.877 +457840,36.799,50.268 +457841,34.239,54.911 +457842,34.716,53.405 +457843,35.169,51.863 +457844,35.596,50.282 +457845,32.861,54.84 +457846,33.393,53.362 +457847,33.905,51.848 +457848,34.393,50.298 +457849,31.484,54.768 +457850,32.071,53.318 +457851,32.64,51.834 +457852,33.19,50.315 +457853,30.107,54.695 +457854,30.749,53.274 +457855,31.376,51.821 +457856,31.986,50.333 +457857,28.73,54.62 +457858,29.427,53.23 +457859,30.111,51.807 +457860,30.781,50.353 +457861,27.353,54.544 +457862,28.105,53.185 +457863,28.847,51.795 +457864,29.576,50.374 +457865,25.977,54.467 +457866,26.784,53.139 +457867,27.582,51.782 +457868,28.37,50.395 +457869,24.601,54.389 +457870,25.463,53.094 +457871,26.317,51.77 +457872,27.163,50.418 +457873,23.226,54.309 +457874,24.142,53.048 +457875,25.052,51.758 +457876,25.955,50.442 +457877,21.852,54.229 +457878,22.821,53.001 +457879,23.786,51.747 +457880,24.746,50.467 +457881,20.478,54.147 +457882,21.501,52.954 +457883,22.521,51.736 +457884,23.537,50.494 +457885,19.104,54.065 +457886,20.181,52.907 +457887,21.255,51.726 +457888,22.326,50.521 +457889,17.731,53.981 +457890,18.861,52.86 +457891,19.989,51.716 +457892,21.114,50.549 +457893,16.359,53.896 +457894,17.542,52.812 +457895,18.723,51.706 +457896,19.902,50.578 +457897,14.988,53.81 +457898,16.223,52.764 +457899,17.456,51.696 +457900,18.688,50.608 +457901,13.617,53.724 +457902,14.904,52.715 +457903,16.189,51.687 +457904,17.473,50.639 +457905,12.247,53.636 +457906,13.586,52.667 +457907,14.922,51.678 +457908,16.257,50.671 +457909,10.878,53.547 +457910,12.268,52.618 +457911,13.655,51.669 +457912,15.04,50.703 +457913,9.5102,53.458 +457914,10.951,52.568 +457915,12.387,51.661 +457916,13.821,50.736 +457917,8.143,53.367 +457918,9.6338,52.519 +457919,11.119,51.653 +457920,12.601,50.771 +457921,6.7768,53.276 +457922,8.3171,52.469 +457923,9.851,51.645 +457924,11.38,50.805 +457925,5.4115,53.184 +457926,7.0009,52.419 +457927,8.5823,51.637 +457928,10.157,50.841 +457929,4.0473,53.092 +457930,5.6852,52.368 +457931,7.3133,51.63 +457932,8.9332,50.877 +457933,2.6842,52.998 +457934,4.3699,52.318 +457935,6.0439,51.623 +457936,7.7078,50.914 +457937,1.3221,52.904 +457938,3.0551,52.267 +457939,4.7741,51.616 +457940,6.4809,50.951 +457941,359.96,52.809 +457942,1.7407,52.216 +457943,3.5039,51.609 +457944,5.2525,50.989 +457945,358.6,52.713 +457946,0.42691,52.165 +457947,2.2332,51.602 +457948,4.0226,51.027 +457949,357.24,52.617 +457950,359.11,52.114 +457951,0.96222,51.596 +457952,2.7912,51.066 +457953,355.89,52.52 +457954,357.8,52.062 +457955,359.69,51.59 +457956,1.5582,51.106 +457957,354.53,52.423 +457958,356.49,52.01 +457959,358.42,51.584 +457960,0.32355,51.145 +457961,353.18,52.325 +457962,355.18,51.959 +457963,357.15,51.578 +457964,359.09,51.185 +457965,351.82,52.227 +457966,353.87,51.907 +457967,355.87,51.572 +457968,357.85,51.226 +457969,350.47,52.128 +457970,352.56,51.854 +457971,354.6,51.567 +457972,356.61,51.267 +457973,349.12,52.029 +457974,351.25,51.802 +457975,353.33,51.561 +457976,355.37,51.308 +457977,347.77,51.93 +457978,349.94,51.75 +457979,352.05,51.556 +457980,354.13,51.349 +457981,346.42,51.83 +457982,348.63,51.698 +457983,350.78,51.55 +457984,352.88,51.39 +457985,345.08,51.73 +457986,347.32,51.645 +457987,349.5,51.545 +457988,351.63,51.432 +457989,343.73,51.629 +457990,346.01,51.593 +457991,348.23,51.54 +457992,350.39,51.474 +457993,342.39,51.529 +457994,344.7,51.54 +457995,346.95,51.535 +457996,349.14,51.515 +457997,341.05,51.428 +457998,343.4,51.487 +457999,345.67,51.53 +458000,347.89,51.557 +458001,339.71,51.327 +458002,342.09,51.435 +458003,344.4,51.525 +458004,346.63,51.599 +458005,338.37,51.226 +458006,340.79,51.382 +458007,343.12,51.52 +458008,345.38,51.641 +458009,337.04,51.125 +458010,339.48,51.329 +458011,341.84,51.515 +458012,344.12,51.683 +458013,335.7,51.023 +458014,338.18,51.277 +458015,340.56,51.509 +458016,342.86,51.724 +458017,334.37,50.922 +458018,336.88,51.224 +458019,339.28,51.504 +458020,341.6,51.766 +458021,333.04,50.821 +458022,335.57,51.171 +458023,338,51.499 +458024,340.34,51.807 +458025,331.71,50.72 +458026,334.27,51.119 +458027,336.72,51.494 +458028,339.07,51.848 +458029,330.38,50.619 +458030,332.97,51.066 +458031,335.44,51.489 +458032,337.81,51.889 +458033,329.06,50.518 +458034,331.67,51.014 +458035,334.16,51.484 +458036,336.54,51.93 +458037,327.74,50.417 +458038,330.37,50.962 +458039,332.88,51.478 +458040,335.27,51.97 +458041,326.41,50.317 +458042,329.07,50.909 +458043,331.59,51.473 +458044,334,52.01 +458045,325.1,50.217 +458046,327.77,50.857 +458047,330.31,51.467 +458048,332.72,52.05 +458049,323.78,50.117 +458050,326.48,50.805 +458051,329.03,51.461 +458052,331.45,52.089 +458053,322.46,50.018 +458054,325.18,50.754 +458055,327.74,51.456 +458056,330.17,52.128 +458057,321.15,49.919 +458058,323.89,50.702 +458059,326.46,51.45 +458060,328.89,52.166 +458061,319.84,49.82 +458062,322.59,50.65 +458063,325.17,51.444 +458064,327.61,52.204 +458065,318.53,49.722 +458066,321.3,50.599 +458067,323.89,51.437 +458068,326.33,52.241 +458069,317.22,49.624 +458070,320,50.548 +458071,322.6,51.431 +458072,325.04,52.278 +458073,315.92,49.527 +458074,318.71,50.497 +458075,321.31,51.424 +458076,323.75,52.314 +458077,314.62,49.431 +458078,317.42,50.446 +458079,320.02,51.417 +458080,322.47,52.349 +458081,313.32,49.335 +458082,316.13,50.396 +458083,318.73,51.41 +458084,321.18,52.384 +458085,312.02,49.24 +458086,314.84,50.346 +458087,317.44,51.403 +458088,319.88,52.418 +458089,310.73,49.145 +458090,313.55,50.296 +458091,316.16,51.395 +458092,318.59,52.451 +458093,309.43,49.052 +458094,312.26,50.246 +458095,314.86,51.388 +458096,317.29,52.483 +458097,308.14,48.959 +458098,310.97,50.196 +458099,313.57,51.38 +458100,316,52.515 +458101,306.85,48.867 +458102,309.68,50.147 +458103,312.28,51.371 +458104,314.7,52.546 +458105,305.57,48.776 +458106,308.39,50.098 +458107,310.99,51.363 +458108,313.4,52.576 +458109,304.28,48.685 +458110,307.11,50.05 +458111,309.7,51.354 +458112,312.09,52.605 +458113,303,48.596 +458114,305.82,50.002 +458115,308.4,51.345 +458116,310.79,52.633 +458117,301.72,48.508 +458118,304.54,49.954 +458119,307.11,51.335 +458120,309.48,52.66 +458121,300.44,48.42 +458122,303.26,49.906 +458123,305.82,51.325 +458124,308.17,52.686 +458125,299.17,48.334 +458126,301.97,49.859 +458127,304.52,51.315 +458128,306.86,52.712 +458129,297.9,48.249 +458130,300.69,49.812 +458131,303.23,51.305 +458132,305.55,52.736 +458133,296.63,48.164 +458134,299.41,49.766 +458135,301.93,51.294 +458136,304.24,52.759 +458137,295.36,48.081 +458138,298.13,49.72 +458139,300.63,51.283 +458140,302.92,52.781 +458141,294.09,48 +458142,296.85,49.674 +458143,299.34,51.271 +458144,301.61,52.802 +458145,292.83,47.919 +458146,295.57,49.629 +458147,298.04,51.26 +458148,300.29,52.822 +458149,291.57,47.84 +458150,294.29,49.584 +458151,296.74,51.247 +458152,298.97,52.84 +458153,290.31,47.762 +458154,293.01,49.54 +458155,295.44,51.235 +458156,297.65,52.858 +458157,289.05,47.685 +458158,291.74,49.496 +458159,294.14,51.222 +458160,296.32,52.874 +458161,287.8,47.61 +458162,290.46,49.452 +458163,292.84,51.208 +458164,295,52.889 +458165,286.55,47.536 +458166,289.19,49.409 +458167,291.54,51.194 +458168,293.67,52.903 +458169,285.3,47.463 +458170,287.91,49.367 +458171,290.24,51.18 +458172,292.35,52.915 +458173,284.05,47.392 +458174,286.64,49.324 +458175,288.94,51.165 +458176,291.02,52.927 +458177,282.8,47.322 +458178,285.36,49.283 +458179,287.64,51.15 +458180,289.69,52.937 +458181,281.56,47.254 +458182,284.09,49.242 +458183,286.34,51.135 +458184,288.36,52.945 +458185,280.32,47.187 +458186,282.82,49.201 +458187,285.03,51.118 +458188,287.02,52.953 +458189,279.08,47.122 +458190,281.55,49.161 +458191,283.73,51.102 +458192,285.69,52.958 +458193,277.84,47.059 +458194,280.28,49.121 +458195,282.43,51.085 +458196,284.35,52.963 +458197,276.61,46.997 +458198,279.01,49.082 +458199,281.12,51.068 +458200,283.01,52.966 +458201,275.38,46.936 +458202,277.74,49.044 +458203,279.82,51.05 +458204,281.68,52.968 +458205,274.15,46.878 +458206,276.47,49.006 +458207,278.51,51.031 +458208,280.34,52.968 +458209,272.92,46.821 +458210,275.2,48.968 +458211,277.21,51.012 +458212,278.99,52.967 +458213,271.69,46.765 +458214,273.94,48.931 +458215,275.9,50.993 +458216,277.65,52.964 +458217,270.47,46.711 +458218,272.67,48.895 +458219,274.6,50.973 +458220,276.31,52.96 +458221,269.25,46.659 +458222,271.4,48.859 +458223,273.29,50.953 +458224,274.96,52.954 +458225,268.02,46.609 +458226,270.14,48.824 +458227,271.98,50.932 +458228,273.62,52.947 +458229,266.81,46.561 +458230,268.87,48.789 +458231,270.68,50.91 +458232,272.27,52.939 +458233,265.59,46.514 +458234,267.61,48.755 +458235,269.37,50.888 +458236,270.92,52.928 +458237,264.37,46.469 +458238,266.35,48.722 +458239,268.06,50.866 +458240,269.57,52.917 +458241,263.16,46.426 +458242,265.08,48.689 +458243,266.75,50.843 +458244,268.22,52.903 +458245,261.95,46.384 +458246,263.82,48.656 +458247,265.44,50.82 +458248,266.87,52.889 +458249,260.74,46.345 +458250,262.56,48.625 +458251,264.14,50.796 +458252,265.52,52.872 +458253,259.53,46.307 +458254,261.3,48.593 +458255,262.83,50.771 +458256,264.17,52.854 +458257,258.32,46.271 +458258,260.04,48.563 +458259,261.52,50.746 +458260,262.81,52.835 +458261,257.11,46.237 +458262,258.78,48.533 +458263,260.21,50.72 +458264,261.46,52.813 +458265,255.91,46.204 +458266,257.52,48.503 +458267,258.9,50.694 +458268,260.1,52.791 +458269,254.71,46.174 +458270,256.26,48.475 +458271,257.59,50.667 +458272,258.74,52.766 +458273,253.5,46.145 +458274,255,48.446 +458275,256.28,50.64 +458276,257.39,52.741 +458277,252.3,46.119 +458278,253.74,48.419 +458279,254.97,50.612 +458280,256.03,52.713 +458281,251.1,46.094 +458282,252.48,48.392 +458283,253.65,50.584 +458284,254.67,52.684 +458285,249.91,46.071 +458286,251.22,48.365 +458287,252.34,50.555 +458288,253.31,52.653 +458289,248.71,46.049 +458290,249.97,48.34 +458291,251.03,50.526 +458292,251.95,52.621 +458293,247.51,46.03 +458294,248.71,48.315 +458295,249.72,50.496 +458296,250.59,52.587 +458297,246.32,46.012 +458298,247.45,48.29 +458299,248.41,50.465 +458300,249.23,52.551 +458301,245.12,45.997 +458302,246.2,48.266 +458303,247.1,50.434 +458304,247.86,52.514 +458305,243.93,45.983 +458306,244.94,48.243 +458307,245.79,50.403 +458308,246.5,52.475 +458309,242.74,45.971 +458310,243.68,48.22 +458311,244.47,50.371 +458312,245.14,52.435 +458313,241.54,45.961 +458314,242.43,48.198 +458315,243.16,50.338 +458316,243.78,52.393 +458317,240.35,45.952 +458318,241.17,48.176 +458319,241.85,50.305 +458320,242.41,52.349 +458321,239.16,45.946 +458322,239.92,48.155 +458323,240.54,50.271 +458324,241.05,52.304 +458325,237.97,45.941 +458326,238.66,48.135 +458327,239.22,50.237 +458328,239.68,52.257 +458329,236.78,45.938 +458330,237.41,48.115 +458331,237.91,50.202 +458332,238.32,52.209 +458333,235.59,45.937 +458334,236.15,48.096 +458335,236.6,50.167 +458336,236.95,52.159 +458337,234.4,45.937 +458338,234.9,48.078 +458339,235.29,50.131 +458340,235.59,52.107 +458341,233.22,45.939 +458342,233.65,48.06 +458343,233.97,50.095 +458344,234.22,52.054 +458345,232.03,45.943 +458346,232.39,48.042 +458347,232.66,50.058 +458348,232.85,51.999 +458349,230.84,45.949 +458350,231.14,48.025 +458351,231.35,50.021 +458352,231.49,51.943 +458353,229.65,45.956 +458354,229.89,48.009 +458355,230.04,49.983 +458356,230.12,51.885 +458357,228.46,45.965 +458358,228.63,47.993 +458359,228.72,49.945 +458360,228.75,51.826 +458361,227.27,45.976 +458362,227.38,47.978 +458363,227.41,49.906 +458364,227.39,51.765 +458365,226.09,45.988 +458366,226.13,47.963 +458367,226.1,49.866 +458368,226.02,51.703 +458369,224.9,46.002 +458370,224.87,47.949 +458371,224.79,49.826 +458372,224.65,51.639 +458373,223.71,46.017 +458374,223.62,47.936 +458375,223.48,49.786 +458376,223.29,51.574 +458377,222.52,46.034 +458378,222.37,47.923 +458379,222.16,49.745 +458380,221.92,51.507 +458381,221.33,46.053 +458382,221.11,47.91 +458383,220.85,49.704 +458384,220.55,51.439 +458385,220.14,46.073 +458386,219.86,47.898 +458387,219.54,49.662 +458388,219.19,51.369 +458389,218.95,46.094 +458390,218.61,47.887 +458391,218.23,49.62 +458392,217.82,51.298 +458393,217.76,46.117 +458394,217.35,47.876 +458395,216.92,49.578 +458396,216.46,51.226 +458397,216.57,46.142 +458398,216.1,47.865 +458399,215.61,49.535 +458400,215.09,51.152 +458401,215.38,46.167 +458402,214.85,47.855 +458403,214.29,49.491 +458404,213.73,51.077 +458405,214.19,46.195 +458406,213.59,47.846 +458407,212.98,49.447 +458408,212.36,51.001 +458409,212.99,46.223 +458410,212.34,47.837 +458411,211.67,49.403 +458412,211,50.923 +458413,211.8,46.253 +458414,211.09,47.828 +458415,210.36,49.358 +458416,209.63,50.844 +458417,210.6,46.284 +458418,209.83,47.82 +458419,209.05,49.313 +458420,208.27,50.764 +458421,209.41,46.316 +458422,208.58,47.813 +458423,207.74,49.267 +458424,206.91,50.682 +458425,208.21,46.35 +458426,207.32,47.805 +458427,206.43,49.221 +458428,205.54,50.599 +458429,207.02,46.384 +458430,206.07,47.798 +458431,205.12,49.175 +458432,204.18,50.515 +458433,205.82,46.42 +458434,204.81,47.792 +458435,203.82,49.128 +458436,202.82,50.43 +458437,204.62,46.457 +458438,203.56,47.786 +458439,202.51,49.081 +458440,201.46,50.344 +458441,203.42,46.495 +458442,202.3,47.78 +458443,201.2,49.034 +458444,200.1,50.256 +458445,202.22,46.534 +458446,201.05,47.775 +458447,199.89,48.986 +458448,198.74,50.168 +458449,201.01,46.574 +458450,199.79,47.77 +458451,198.58,48.938 +458452,197.38,50.078 +458453,199.81,46.615 +458454,198.54,47.766 +458455,197.28,48.89 +458456,196.03,49.987 +458457,198.6,46.657 +458458,197.28,47.762 +458459,195.97,48.841 +458460,194.67,49.896 +458461,197.4,46.7 +458462,196.02,47.758 +458463,194.66,48.792 +458464,193.31,49.803 +458465,196.19,46.743 +458466,194.77,47.754 +458467,193.36,48.743 +458468,191.96,49.709 +458469,194.98,46.788 +458470,193.51,47.751 +458471,192.05,48.694 +458472,190.6,49.615 +458473,193.77,46.833 +458474,192.25,47.748 +458475,190.75,48.644 +458476,189.25,49.519 +458477,192.56,46.879 +458478,191,47.746 +458479,189.44,48.594 +458480,187.9,49.423 +458481,191.34,46.926 +458482,189.74,47.743 +458483,188.14,48.544 +458484,186.55,49.326 +458485,190.13,46.973 +458486,188.48,47.741 +458487,186.84,48.493 +458488,185.2,49.228 +458489,188.91,47.021 +458490,187.22,47.739 +458491,185.53,48.442 +458492,183.85,49.129 +458493,187.69,47.069 +458494,185.96,47.738 +458495,184.23,48.392 +458496,182.5,49.03 +458497,186.47,47.118 +458498,184.7,47.736 +458499,182.93,48.341 +458500,181.15,48.929 +458501,185.25,47.168 +458502,183.44,47.735 +458503,181.63,48.289 +458504,179.81,48.829 +458505,184.03,47.218 +458506,182.18,47.734 +458507,180.33,48.238 +458508,178.46,48.727 +458509,182.8,47.268 +458510,180.92,47.734 +458511,179.03,48.186 +458512,177.12,48.625 +458513,181.58,47.319 +458514,179.66,47.733 +458515,177.73,48.135 +458516,175.78,48.523 +458517,180.35,47.37 +458518,178.4,47.733 +458519,176.43,48.083 +458520,174.44,48.419 +458521,179.12,47.422 +458522,177.13,47.732 +458523,175.13,48.031 +458524,173.1,48.316 +458525,177.89,47.474 +458526,175.87,47.732 +458527,173.83,47.979 +458528,171.76,48.212 +458529,176.65,47.526 +458530,174.61,47.732 +458531,172.53,47.927 +458532,170.43,48.107 +458533,175.42,47.578 +458534,173.34,47.732 +458535,171.24,47.875 +458536,169.09,48.003 +458537,174.18,47.63 +458538,172.08,47.733 +458539,169.94,47.822 +458540,167.76,47.898 +458541,172.94,47.682 +458542,170.81,47.733 +458543,168.65,47.77 +458544,166.43,47.792 +458545,171.7,47.735 +458546,169.55,47.733 +458547,167.35,47.718 +458548,165.1,47.687 +458549,170.46,47.787 +458550,168.28,47.734 +458551,166.06,47.665 +458552,163.77,47.581 +458553,169.21,47.84 +458554,167.02,47.734 +458555,164.76,47.613 +458556,162.45,47.475 +458557,167.97,47.892 +458558,165.75,47.735 +458559,163.47,47.561 +458560,161.12,47.369 +458561,166.72,47.945 +458562,164.48,47.735 +458563,162.18,47.508 +458564,159.8,47.262 +458565,165.47,47.997 +458566,163.21,47.736 +458567,160.89,47.456 +458568,158.48,47.156 +458569,164.22,48.049 +458570,161.95,47.736 +458571,159.6,47.404 +458572,157.16,47.05 +458573,162.96,48.101 +458574,160.68,47.737 +458575,158.31,47.352 +458576,155.84,46.944 +458577,161.71,48.152 +458578,159.41,47.737 +458579,157.02,47.3 +458580,154.53,46.838 +458581,160.45,48.203 +458582,158.14,47.738 +458583,155.73,47.248 +458584,153.21,46.732 +458585,159.19,48.254 +458586,156.87,47.738 +458587,154.44,47.196 +458588,151.9,46.626 +458589,157.93,48.305 +458590,155.59,47.738 +458591,153.15,47.144 +458592,150.59,46.521 +458593,156.67,48.355 +458594,154.32,47.738 +458595,151.87,47.093 +458596,149.29,46.415 +458597,155.4,48.405 +458598,153.05,47.738 +458599,150.58,47.041 +458600,147.98,46.31 +458601,154.14,48.454 +458602,151.78,47.738 +458603,149.3,46.99 +458604,146.68,46.206 +458605,152.87,48.503 +458606,150.5,47.738 +458607,148.01,46.939 +458608,145.38,46.102 +458609,151.6,48.551 +458610,149.23,47.738 +458611,146.73,46.888 +458612,144.08,45.998 +458613,150.32,48.599 +458614,147.95,47.737 +458615,145.45,46.838 +458616,142.78,45.895 +458617,149.05,48.646 +458618,146.68,47.737 +458619,144.16,46.787 +458620,141.48,45.792 +458621,147.77,48.692 +458622,145.4,47.736 +458623,142.88,46.737 +458624,140.19,45.69 +458625,146.5,48.738 +458626,144.13,47.735 +458627,141.6,46.687 +458628,138.9,45.588 +458629,145.22,48.782 +458630,142.85,47.734 +458631,140.32,46.637 +458632,137.61,45.488 +458633,143.93,48.827 +458634,141.57,47.732 +458635,139.05,46.588 +458636,136.32,45.387 +458637,142.65,48.87 +458638,140.29,47.731 +458639,137.77,46.539 +458640,135.04,45.288 +458641,141.36,48.913 +458642,139.01,47.729 +458643,136.49,46.49 +458644,133.76,45.19 +458645,140.08,48.954 +458646,137.73,47.727 +458647,135.21,46.442 +458648,132.48,45.092 +458649,138.79,48.995 +458650,136.45,47.724 +458651,133.94,46.393 +458652,131.2,44.995 +458653,137.5,49.035 +458654,135.17,47.721 +458655,132.66,46.346 +458656,129.93,44.899 +458657,136.21,49.074 +458658,133.89,47.718 +458659,131.39,46.298 +458660,128.65,44.804 +458661,134.91,49.112 +458662,132.61,47.715 +458663,130.12,46.251 +458664,127.38,44.71 +458665,133.62,49.149 +458666,131.33,47.712 +458667,128.84,46.205 +458668,126.11,44.617 +458669,132.32,49.185 +458670,130.05,47.708 +458671,127.57,46.158 +458672,124.85,44.526 +458673,131.02,49.22 +458674,128.76,47.703 +458675,126.3,46.112 +458676,123.58,44.435 +458677,129.72,49.253 +458678,127.48,47.699 +458679,125.03,46.067 +458680,122.32,44.345 +458681,128.42,49.286 +458682,126.19,47.694 +458683,123.76,46.022 +458684,121.06,44.257 +458685,127.11,49.317 +458686,124.91,47.689 +458687,122.49,45.977 +458688,119.81,44.17 +458689,125.81,49.348 +458690,123.62,47.683 +458691,121.23,45.933 +458692,118.55,44.085 +458693,124.5,49.377 +458694,122.34,47.677 +458695,119.96,45.89 +458696,117.3,44 +458697,123.19,49.405 +458698,121.05,47.671 +458699,118.69,45.846 +458700,116.05,43.917 +458701,121.88,49.431 +458702,119.76,47.664 +458703,117.43,45.804 +458704,114.8,43.836 +458705,120.57,49.457 +458706,118.48,47.657 +458707,116.16,45.762 +458708,113.56,43.756 +458709,119.25,49.481 +458710,117.19,47.649 +458711,114.9,45.72 +458712,112.32,43.677 +458713,117.94,49.503 +458714,115.9,47.641 +458715,113.63,45.679 +458716,111.07,43.6 +458717,116.62,49.525 +458718,114.61,47.632 +458719,112.37,45.638 +458720,109.84,43.524 +458721,115.3,49.545 +458722,113.32,47.623 +458723,111.11,45.598 +458724,108.6,43.451 +458725,113.98,49.563 +458726,112.03,47.614 +458727,109.85,45.559 +458728,107.37,43.378 +458729,112.66,49.58 +458730,110.74,47.604 +458731,108.59,45.52 +458732,106.13,43.308 +458733,111.34,49.596 +458734,109.45,47.594 +458735,107.33,45.481 +458736,104.91,43.239 +458737,110.02,49.61 +458738,108.16,47.583 +458739,106.07,45.444 +458740,103.68,43.172 +458741,108.69,49.623 +458742,106.87,47.572 +458743,104.81,45.407 +458744,102.45,43.106 +458745,107.37,49.634 +458746,105.58,47.56 +458747,103.55,45.37 +458748,101.23,43.042 +458749,106.04,49.644 +458750,104.28,47.548 +458751,102.3,45.334 +458752,100.01,42.981 +458753,104.71,49.652 +458754,102.99,47.535 +458755,101.04,45.299 +458756,98.79,42.92 +458757,103.38,49.659 +458758,101.7,47.522 +458759,99.785,45.264 +458760,97.574,42.862 +458761,102.05,49.664 +458762,100.4,47.508 +458763,98.529,45.23 +458764,96.359,42.806 +458765,100.72,49.668 +458766,99.109,47.494 +458767,97.275,45.196 +458768,95.146,42.752 +458769,99.388,49.67 +458770,97.815,47.479 +458771,96.021,45.163 +458772,93.935,42.699 +458773,98.054,49.67 +458774,96.52,47.464 +458775,94.768,45.131 +458776,92.726,42.649 +458777,96.719,49.669 +458778,95.225,47.448 +458779,93.515,45.1 +458780,91.519,42.6 +458781,95.383,49.666 +458782,93.93,47.431 +458783,92.263,45.069 +458784,90.313,42.553 +458785,94.046,49.662 +458786,92.634,47.414 +458787,91.012,45.038 +458788,89.11,42.509 +458789,92.708,49.656 +458790,91.338,47.397 +458791,89.761,45.009 +458792,87.908,42.466 +458793,91.369,49.648 +458794,90.042,47.379 +458795,88.51,44.98 +458796,86.707,42.426 +458797,90.03,49.639 +458798,88.745,47.36 +458799,87.26,44.952 +458800,85.509,42.387 +458801,88.689,49.628 +458802,87.448,47.341 +458803,86.011,44.924 +458804,84.312,42.351 +458805,87.348,49.615 +458806,86.151,47.322 +458807,84.762,44.897 +458808,83.116,42.317 +458809,86.005,49.6 +458810,84.854,47.301 +458811,83.513,44.871 +458812,81.922,42.284 +458813,84.663,49.584 +458814,83.556,47.281 +458815,82.265,44.846 +458816,80.729,42.254 +458817,83.319,49.566 +458818,82.258,47.259 +458819,81.018,44.821 +458820,79.538,42.226 +458821,81.974,49.547 +458822,80.96,47.237 +458823,79.771,44.797 +458824,78.348,42.2 +458825,80.629,49.526 +458826,79.662,47.215 +458827,78.524,44.774 +458828,77.159,42.176 +458829,79.284,49.503 +458830,78.364,47.192 +458831,77.278,44.751 +458832,75.972,42.155 +458833,77.938,49.478 +458834,77.065,47.168 +458835,76.032,44.729 +458836,74.785,42.135 +458837,76.591,49.451 +458838,75.766,47.144 +458839,74.786,44.707 +458840,73.6,42.118 +458841,75.243,49.423 +458842,74.467,47.119 +458843,73.541,44.687 +458844,72.415,42.102 +458845,73.896,49.394 +458846,73.168,47.094 +458847,72.296,44.667 +458848,71.232,42.089 +458849,72.547,49.362 +458850,71.869,47.068 +458851,71.052,44.648 +458852,70.049,42.078 +458853,71.199,49.329 +458854,70.57,47.042 +458855,69.807,44.629 +458856,68.867,42.068 +458857,69.849,49.294 +458858,69.271,47.015 +458859,68.563,44.611 +458860,67.686,42.061 +458861,68.5,49.257 +458862,67.971,46.987 +458863,67.32,44.594 +458864,66.506,42.056 +458865,67.15,49.219 +458866,66.672,46.959 +458867,66.076,44.578 +458868,65.326,42.054 +458869,65.8,49.179 +458870,65.373,46.93 +458871,64.833,44.562 +458872,64.147,42.053 +458873,64.45,49.137 +458874,64.073,46.901 +458875,63.59,44.547 +458876,62.968,42.054 +458877,63.099,49.093 +458878,62.774,46.871 +458879,62.347,44.533 +458880,61.789,42.057 +458881,61.748,49.048 +458882,61.474,46.841 +458883,61.105,44.519 +458884,60.611,42.062 +458885,60.397,49.001 +458886,60.175,46.81 +458887,59.862,44.506 +458888,59.434,42.07 +458889,59.046,48.953 +458890,58.875,46.779 +458891,58.62,44.493 +458892,58.256,42.079 +458893,57.695,48.903 +458894,57.576,46.747 +458895,57.378,44.482 +458896,57.079,42.09 +458897,56.344,48.851 +458898,56.276,46.714 +458899,56.136,44.471 +458900,55.902,42.103 +458901,54.993,48.797 +458902,54.977,46.681 +458903,54.894,44.46 +458904,54.724,42.118 +458905,53.642,48.742 +458906,53.678,46.648 +458907,53.652,44.451 +458908,53.547,42.135 +458909,52.291,48.686 +458910,52.379,46.614 +458911,52.41,44.442 +458912,52.37,42.154 +458913,50.94,48.627 +458914,51.08,46.579 +458915,51.168,44.433 +458916,51.192,42.175 +458917,49.589,48.567 +458918,49.781,46.544 +458919,49.927,44.425 +458920,50.014,42.198 +458921,48.238,48.506 +458922,48.482,46.508 +458923,48.685,44.418 +458924,48.836,42.222 +458925,46.888,48.443 +458926,47.183,46.472 +458927,47.443,44.411 +458928,47.657,42.248 +458929,45.538,48.378 +458930,45.885,46.436 +458931,46.201,44.406 +458932,46.479,42.276 +458933,44.188,48.312 +458934,44.587,46.399 +458935,44.959,44.4 +458936,45.299,42.306 +458937,42.838,48.244 +458938,43.288,46.361 +458939,43.718,44.395 +458940,44.119,42.337 +458941,41.489,48.175 +458942,41.991,46.323 +458943,42.476,44.391 +458944,42.939,42.37 +458945,40.14,48.104 +458946,40.693,46.285 +458947,41.233,44.388 +458948,41.757,42.405 +458949,38.792,48.032 +458950,39.396,46.246 +458951,39.991,44.385 +458952,40.575,42.441 +458953,37.444,47.959 +458954,38.099,46.206 +458955,38.749,44.382 +458956,39.393,42.479 +458957,36.096,47.884 +458958,36.802,46.166 +458959,37.506,44.38 +458960,38.209,42.518 +458961,34.749,47.808 +458962,35.505,46.126 +458963,36.264,44.379 +458964,37.025,42.559 +458965,33.403,47.73 +458966,34.209,46.086 +458967,35.021,44.378 +458968,35.839,42.601 +458969,32.057,47.651 +458970,32.913,46.045 +458971,33.778,44.378 +458972,34.653,42.644 +458973,30.711,47.57 +458974,31.617,46.003 +458975,32.535,44.378 +458976,33.465,42.689 +458977,29.367,47.489 +458978,30.322,45.961 +458979,31.291,44.378 +458980,32.277,42.736 +458981,28.023,47.406 +458982,29.027,45.919 +458983,30.048,44.38 +458984,31.087,42.784 +458985,26.68,47.321 +458986,27.732,45.876 +458987,28.804,44.381 +458988,29.896,42.832 +458989,25.338,47.236 +458990,26.438,45.833 +458991,27.559,44.383 +458992,28.704,42.883 +458993,23.996,47.149 +458994,25.144,45.79 +458995,26.315,44.386 +458996,27.511,42.934 +458997,22.655,47.061 +458998,23.851,45.746 +458999,25.07,44.389 +459000,26.316,42.986 +459001,21.316,46.972 +459002,22.558,45.702 +459003,23.825,44.392 +459004,25.12,43.04 +459005,19.977,46.882 +459006,21.265,45.658 +459007,22.579,44.396 +459008,23.923,43.095 +459009,18.639,46.791 +459010,19.973,45.613 +459011,21.334,44.4 +459012,22.724,43.15 +459013,17.302,46.699 +459014,18.681,45.569 +459015,20.088,44.405 +459016,21.524,43.207 +459017,15.966,46.605 +459018,17.39,45.523 +459019,18.841,44.41 +459020,20.322,43.264 +459021,14.631,46.511 +459022,16.099,45.478 +459023,17.594,44.415 +459024,19.119,43.323 +459025,13.297,46.416 +459026,14.809,45.432 +459027,16.347,44.421 +459028,17.914,43.382 +459029,11.965,46.32 +459030,13.519,45.386 +459031,15.099,44.427 +459032,16.707,43.442 +459033,10.633,46.223 +459034,12.23,45.34 +459035,13.851,44.433 +459036,15.499,43.503 +459037,9.303,46.125 +459038,10.941,45.294 +459039,12.603,44.44 +459040,14.289,43.565 +459041,7.974,46.026 +459042,9.653,45.247 +459043,11.354,44.447 +459044,13.078,43.627 +459045,6.6462,45.927 +459046,8.3654,45.2 +459047,10.104,44.454 +459048,11.864,43.69 +459049,5.3197,45.826 +459050,7.0783,45.153 +459051,8.8544,44.462 +459052,10.65,43.753 +459053,3.9946,45.725 +459054,5.7918,45.106 +459055,7.6041,44.47 +459056,9.4329,43.817 +459057,2.6708,45.624 +459058,4.5058,45.059 +459059,6.3534,44.478 +459060,8.2145,43.882 +459061,1.3484,45.521 +459062,3.2205,45.011 +459063,5.1021,44.486 +459064,6.9942,43.947 +459065,0.027407,45.419 +459066,1.9357,44.964 +459067,3.8504,44.495 +459068,5.7722,44.012 +459069,358.71,45.315 +459070,0.65158,44.916 +459071,2.5981,44.503 +459072,4.5483,44.078 +459073,357.39,45.211 +459074,359.37,44.868 +459075,1.3454,44.512 +459076,3.3226,44.144 +459077,356.07,45.107 +459078,358.09,44.82 +459079,0.092097,44.521 +459080,2.0951,44.21 +459081,354.76,45.002 +459082,356.8,44.772 +459083,358.84,44.53 +459084,0.86567,44.277 +459085,353.45,44.897 +459086,355.52,44.724 +459087,357.58,44.54 +459088,359.63,44.343 +459089,352.13,44.791 +459090,354.24,44.676 +459091,356.33,44.549 +459092,358.4,44.41 +459093,350.82,44.685 +459094,352.96,44.628 +459095,355.07,44.559 +459096,357.17,44.477 +459097,349.51,44.579 +459098,351.68,44.58 +459099,353.82,44.568 +459100,355.93,44.544 +459101,348.21,44.473 +459102,350.4,44.532 +459103,352.56,44.578 +459104,354.69,44.611 +459105,346.9,44.366 +459106,349.12,44.484 +459107,351.3,44.588 +459108,353.45,44.678 +459109,345.6,44.259 +459110,347.85,44.436 +459111,350.05,44.598 +459112,352.21,44.745 +459113,344.3,44.153 +459114,346.57,44.388 +459115,348.79,44.608 +459116,350.96,44.812 +459117,343,44.046 +459118,345.29,44.34 +459119,347.53,44.618 +459120,349.72,44.878 +459121,341.7,43.939 +459122,344.02,44.293 +459123,346.27,44.628 +459124,348.47,44.945 +459125,340.41,43.832 +459126,342.74,44.245 +459127,345.01,44.637 +459128,347.22,45.011 +459129,339.11,43.725 +459130,341.47,44.197 +459131,343.75,44.647 +459132,345.96,45.077 +459133,337.82,43.619 +459134,340.19,44.15 +459135,342.49,44.657 +459136,344.71,45.142 +459137,336.53,43.513 +459138,338.92,44.103 +459139,341.23,44.667 +459140,343.45,45.207 +459141,335.24,43.406 +459142,337.65,44.056 +459143,339.97,44.677 +459144,342.2,45.272 +459145,333.96,43.301 +459146,336.38,44.009 +459147,338.7,44.687 +459148,340.94,45.337 +459149,332.67,43.195 +459150,335.11,43.962 +459151,337.44,44.696 +459152,339.67,45.4 +459153,331.39,43.09 +459154,333.84,43.915 +459155,336.18,44.706 +459156,338.41,45.464 +459157,330.11,42.985 +459158,332.57,43.869 +459159,334.91,44.715 +459160,337.15,45.526 +459161,328.83,42.881 +459162,331.3,43.823 +459163,333.65,44.724 +459164,335.88,45.588 +459165,327.56,42.777 +459166,330.04,43.777 +459167,332.38,44.733 +459168,334.61,45.65 +459169,326.28,42.674 +459170,328.77,43.732 +459171,331.11,44.742 +459172,333.34,45.711 +459173,325.01,42.572 +459174,327.5,43.686 +459175,329.85,44.751 +459176,332.07,45.771 +459177,323.74,42.47 +459178,326.24,43.641 +459179,328.58,44.76 +459180,330.79,45.83 +459181,322.47,42.369 +459182,324.97,43.597 +459183,327.31,44.768 +459184,329.51,45.889 +459185,321.21,42.268 +459186,323.71,43.552 +459187,326.04,44.776 +459188,328.24,45.946 +459189,319.95,42.169 +459190,322.45,43.508 +459191,324.77,44.784 +459192,326.96,46.003 +459193,318.68,42.07 +459194,321.18,43.465 +459195,323.5,44.792 +459196,325.67,46.059 +459197,317.43,41.972 +459198,319.92,43.421 +459199,322.23,44.799 +459200,324.39,46.114 +459201,316.17,41.876 +459202,318.66,43.379 +459203,320.96,44.806 +459204,323.11,46.168 +459205,314.92,41.78 +459206,317.4,43.336 +459207,319.69,44.813 +459208,321.82,46.221 +459209,313.66,41.685 +459210,316.14,43.294 +459211,318.42,44.82 +459212,320.53,46.273 +459213,312.41,41.591 +459214,314.89,43.252 +459215,317.15,44.826 +459216,319.24,46.324 +459217,311.17,41.499 +459218,313.63,43.211 +459219,315.87,44.832 +459220,317.95,46.374 +459221,309.92,41.408 +459222,312.37,43.17 +459223,314.6,44.838 +459224,316.66,46.423 +459225,308.68,41.318 +459226,311.12,43.13 +459227,313.33,44.843 +459228,315.36,46.47 +459229,307.44,41.229 +459230,309.86,43.09 +459231,312.05,44.848 +459232,314.06,46.517 +459233,306.2,41.141 +459234,308.61,43.051 +459235,310.78,44.853 +459236,312.77,46.562 +459237,304.96,41.055 +459238,307.35,43.012 +459239,309.5,44.857 +459240,311.47,46.606 +459241,303.73,40.971 +459242,306.1,42.974 +459243,308.23,44.861 +459244,310.17,46.649 +459245,302.5,40.887 +459246,304.85,42.936 +459247,306.95,44.865 +459248,308.86,46.69 +459249,301.27,40.806 +459250,303.59,42.899 +459251,305.67,44.868 +459252,307.56,46.73 +459253,300.04,40.726 +459254,302.34,42.863 +459255,304.4,44.87 +459256,306.25,46.769 +459257,298.81,40.647 +459258,301.09,42.827 +459259,303.12,44.873 +459260,304.95,46.806 +459261,297.59,40.57 +459262,299.84,42.791 +459263,301.84,44.875 +459264,303.64,46.842 +459265,296.37,40.495 +459266,298.59,42.756 +459267,300.56,44.876 +459268,302.33,46.877 +459269,295.15,40.422 +459270,297.35,42.722 +459271,299.28,44.877 +459272,301.02,46.91 +459273,293.93,40.35 +459274,296.1,42.688 +459275,298,44.877 +459276,299.71,46.941 +459277,292.72,40.28 +459278,294.85,42.655 +459279,296.72,44.877 +459280,298.39,46.972 +459281,291.51,40.212 +459282,293.6,42.623 +459283,295.44,44.877 +459284,297.08,47 +459285,290.3,40.146 +459286,292.36,42.591 +459287,294.16,44.876 +459288,295.76,47.027 +459289,289.09,40.081 +459290,291.11,42.56 +459291,292.88,44.875 +459292,294.45,47.053 +459293,287.88,40.019 +459294,289.87,42.53 +459295,291.6,44.873 +459296,293.13,47.077 +459297,286.68,39.958 +459298,288.62,42.5 +459299,290.31,44.871 +459300,291.81,47.1 +459301,285.47,39.9 +459302,287.38,42.471 +459303,289.03,44.868 +459304,290.49,47.121 +459305,284.27,39.843 +459306,286.14,42.443 +459307,287.75,44.864 +459308,289.17,47.14 +459309,283.07,39.789 +459310,284.9,42.415 +459311,286.47,44.86 +459312,287.85,47.157 +459313,281.87,39.737 +459314,283.65,42.388 +459315,285.18,44.856 +459316,286.52,47.173 +459317,280.68,39.686 +459318,282.41,42.362 +459319,283.9,44.851 +459320,285.2,47.188 +459321,279.48,39.638 +459322,281.17,42.336 +459323,282.61,44.845 +459324,283.88,47.2 +459325,278.29,39.592 +459326,279.93,42.311 +459327,281.33,44.839 +459328,282.55,47.211 +459329,277.1,39.549 +459330,278.69,42.287 +459331,280.04,44.833 +459332,281.22,47.221 +459333,275.91,39.507 +459334,277.45,42.264 +459335,278.76,44.826 +459336,279.9,47.228 +459337,274.72,39.468 +459338,276.21,42.241 +459339,277.47,44.818 +459340,278.57,47.234 +459341,273.54,39.431 +459342,274.98,42.22 +459343,276.19,44.81 +459344,277.24,47.238 +459345,272.35,39.396 +459346,273.74,42.198 +459347,274.9,44.801 +459348,275.91,47.24 +459349,271.17,39.364 +459350,272.5,42.178 +459351,273.62,44.791 +459352,274.58,47.241 +459353,269.98,39.333 +459354,271.26,42.159 +459355,272.33,44.782 +459356,273.25,47.24 +459357,268.8,39.305 +459358,270.03,42.14 +459359,271.05,44.771 +459360,271.92,47.237 +459361,267.62,39.28 +459362,268.79,42.122 +459363,269.76,44.76 +459364,270.58,47.232 +459365,266.44,39.256 +459366,267.55,42.104 +459367,268.47,44.748 +459368,269.25,47.226 +459369,265.26,39.235 +459370,266.32,42.088 +459371,267.19,44.736 +459372,267.92,47.218 +459373,264.09,39.217 +459374,265.08,42.072 +459375,265.9,44.723 +459376,266.58,47.208 +459377,262.91,39.2 +459378,263.85,42.057 +459379,264.61,44.71 +459380,265.25,47.196 +459381,261.74,39.187 +459382,262.61,42.043 +459383,263.32,44.696 +459384,263.92,47.182 +459385,260.56,39.175 +459386,261.38,42.03 +459387,262.04,44.681 +459388,262.58,47.167 +459389,259.39,39.166 +459390,260.14,42.017 +459391,260.75,44.666 +459392,261.25,47.15 +459393,258.21,39.159 +459394,258.91,42.005 +459395,259.46,44.65 +459396,259.91,47.131 +459397,257.04,39.154 +459398,257.68,41.994 +459399,258.17,44.634 +459400,258.57,47.11 +459401,255.87,39.152 +459402,256.44,41.984 +459403,256.89,44.617 +459404,257.24,47.087 +459405,254.7,39.152 +459406,255.21,41.975 +459407,255.6,44.6 +459408,255.9,47.063 +459409,253.52,39.154 +459410,253.97,41.966 +459411,254.31,44.582 +459412,254.57,47.037 +459413,252.35,39.159 +459414,252.74,41.958 +459415,253.02,44.563 +459416,253.23,47.009 +459417,251.18,39.166 +459418,251.51,41.951 +459419,251.74,44.544 +459420,251.89,46.979 +459421,250.01,39.175 +459422,250.28,41.944 +459423,250.45,44.524 +459424,250.56,46.948 +459425,248.84,39.187 +459426,249.04,41.939 +459427,249.16,44.504 +459428,249.22,46.914 +459429,247.67,39.2 +459430,247.81,41.934 +459431,247.87,44.483 +459432,247.88,46.879 +459433,246.5,39.216 +459434,246.58,41.93 +459435,246.59,44.461 +459436,246.55,46.843 +459437,245.33,39.235 +459438,245.34,41.926 +459439,245.3,44.439 +459440,245.21,46.804 +459441,244.16,39.255 +459442,244.11,41.924 +459443,244.01,44.417 +459444,243.87,46.764 +459445,242.99,39.278 +459446,242.88,41.922 +459447,242.72,44.394 +459448,242.54,46.722 +459449,241.82,39.303 +459450,241.65,41.921 +459451,241.44,44.37 +459452,241.2,46.678 +459453,240.64,39.33 +459454,240.41,41.92 +459455,240.15,44.346 +459456,239.87,46.633 +459457,239.47,39.359 +459458,239.18,41.921 +459459,238.86,44.321 +459460,238.53,46.586 +459461,238.3,39.39 +459462,237.95,41.922 +459463,237.58,44.296 +459464,237.2,46.537 +459465,237.13,39.423 +459466,236.71,41.923 +459467,236.29,44.27 +459468,235.86,46.486 +459469,235.95,39.458 +459470,235.48,41.926 +459471,235.01,44.243 +459472,234.53,46.434 +459473,234.78,39.495 +459474,234.25,41.929 +459475,233.72,44.217 +459476,233.19,46.38 +459477,233.6,39.534 +459478,233.01,41.933 +459479,232.43,44.189 +459480,231.86,46.325 +459481,232.42,39.575 +459482,231.78,41.937 +459483,231.15,44.161 +459484,230.53,46.268 +459485,231.25,39.618 +459486,230.55,41.942 +459487,229.86,44.133 +459488,229.2,46.209 +459489,230.07,39.663 +459490,229.31,41.948 +459491,228.58,44.104 +459492,227.86,46.149 +459493,228.89,39.71 +459494,228.08,41.955 +459495,227.29,44.075 +459496,226.53,46.087 +459497,227.71,39.758 +459498,226.84,41.962 +459499,226.01,44.045 +459500,225.2,46.024 +459501,226.53,39.808 +459502,225.61,41.97 +459503,224.72,44.015 +459504,223.87,45.959 +459505,225.35,39.86 +459506,224.37,41.978 +459507,223.44,43.984 +459508,222.54,45.893 +459509,224.16,39.914 +459510,223.14,41.987 +459511,222.16,43.953 +459512,221.21,45.825 +459513,222.98,39.969 +459514,221.9,41.997 +459515,220.87,43.922 +459516,219.89,45.756 +459517,221.79,40.025 +459518,220.67,42.007 +459519,219.59,43.89 +459520,218.56,45.685 +459521,220.61,40.084 +459522,219.43,42.018 +459523,218.31,43.857 +459524,217.23,45.613 +459525,219.42,40.144 +459526,218.19,42.029 +459527,217.03,43.824 +459528,215.91,45.54 +459529,218.23,40.205 +459530,216.96,42.041 +459531,215.75,43.791 +459532,214.58,45.465 +459533,217.04,40.268 +459534,215.72,42.053 +459535,214.46,43.758 +459536,213.26,45.389 +459537,215.84,40.332 +459538,214.48,42.066 +459539,213.18,43.724 +459540,211.94,45.312 +459541,214.65,40.397 +459542,213.24,42.08 +459543,211.9,43.689 +459544,210.62,45.233 +459545,213.45,40.464 +459546,212.01,42.094 +459547,210.62,43.655 +459548,209.29,45.153 +459549,212.26,40.532 +459550,210.77,42.108 +459551,209.34,43.62 +459552,207.98,45.072 +459553,211.06,40.601 +459554,209.53,42.123 +459555,208.07,43.584 +459556,206.66,44.99 +459557,209.86,40.671 +459558,208.29,42.139 +459559,206.79,43.549 +459560,205.34,44.906 +459561,208.65,40.742 +459562,207.05,42.154 +459563,205.51,43.513 +459564,204.02,44.821 +459565,207.45,40.815 +459566,205.81,42.171 +459567,204.23,43.477 +459568,202.71,44.736 +459569,206.24,40.888 +459570,204.57,42.187 +459571,202.95,43.44 +459572,201.4,44.649 +459573,205.03,40.962 +459574,203.33,42.205 +459575,201.68,43.403 +459576,200.08,44.561 +459577,203.82,41.038 +459578,202.08,42.222 +459579,200.4,43.366 +459580,198.77,44.472 +459581,202.61,41.114 +459582,200.84,42.24 +459583,199.13,43.329 +459584,197.46,44.383 +459585,201.4,41.191 +459586,199.6,42.258 +459587,197.85,43.292 +459588,196.15,44.292 +459589,200.19,41.268 +459590,198.35,42.277 +459591,196.58,43.254 +459592,194.85,44.2 +459593,198.97,41.347 +459594,197.11,42.296 +459595,195.3,43.216 +459596,193.54,44.108 +459597,197.75,41.426 +459598,195.87,42.315 +459599,194.03,43.178 +459600,192.24,44.015 +459601,196.53,41.505 +459602,194.62,42.335 +459603,192.76,43.14 +459604,190.94,43.921 +459605,195.31,41.586 +459606,193.37,42.355 +459607,191.49,43.101 +459608,189.63,43.826 +459609,194.08,41.666 +459610,192.13,42.375 +459611,190.21,43.063 +459612,188.34,43.73 +459613,192.85,41.748 +459614,190.88,42.395 +459615,188.94,43.024 +459616,187.04,43.634 +459617,191.63,41.829 +459618,189.63,42.416 +459619,187.67,42.985 +459620,185.74,43.537 +459621,190.4,41.911 +459622,188.39,42.437 +459623,186.4,42.946 +459624,184.45,43.44 +459625,189.16,41.994 +459626,187.14,42.458 +459627,185.13,42.907 +459628,183.15,43.342 +459629,187.93,42.076 +459630,185.89,42.479 +459631,183.87,42.868 +459632,181.86,43.244 +459633,186.69,42.159 +459634,184.64,42.5 +459635,182.6,42.829 +459636,180.57,43.145 +459637,185.45,42.242 +459638,183.39,42.522 +459639,181.33,42.79 +459640,179.28,43.046 +459641,184.21,42.326 +459642,182.14,42.544 +459643,180.07,42.751 +459644,178,42.946 +459645,182.97,42.409 +459646,180.89,42.566 +459647,178.8,42.712 +459648,176.71,42.846 +459649,181.73,42.492 +459650,179.63,42.588 +459651,177.53,42.673 +459652,175.43,42.746 +459653,180.48,42.575 +459654,178.38,42.61 +459655,176.27,42.633 +459656,174.15,42.646 +459657,179.23,42.659 +459658,177.13,42.632 +459659,175.01,42.594 +459660,172.87,42.545 +459661,177.98,42.742 +459662,175.87,42.654 +459663,173.74,42.555 +459664,171.59,42.444 +459665,176.73,42.825 +459666,174.62,42.677 +459667,172.48,42.516 +459668,170.32,42.343 +459669,175.48,42.908 +459670,173.36,42.699 +459671,171.22,42.478 +459672,169.05,42.243 +459673,174.22,42.99 +459674,172.11,42.722 +459675,169.96,42.439 +459676,167.77,42.142 +459677,172.97,43.073 +459678,170.85,42.744 +459679,168.7,42.4 +459680,166.5,42.041 +459681,171.71,43.155 +459682,169.59,42.766 +459683,167.44,42.362 +459684,165.24,41.94 +459685,170.44,43.236 +459686,168.34,42.789 +459687,166.18,42.323 +459688,163.97,41.839 +459689,169.18,43.318 +459690,167.08,42.811 +459691,164.92,42.285 +459692,162.71,41.739 +459693,167.92,43.398 +459694,165.82,42.833 +459695,163.66,42.247 +459696,161.45,41.639 +459697,166.65,43.479 +459698,164.56,42.856 +459699,162.41,42.209 +459700,160.19,41.539 +459701,165.38,43.558 +459702,163.3,42.878 +459703,161.15,42.172 +459704,158.93,41.439 +459705,164.11,43.638 +459706,162.04,42.9 +459707,159.9,42.135 +459708,157.67,41.34 +459709,162.84,43.716 +459710,160.78,42.922 +459711,158.64,42.098 +459712,156.42,41.241 +459713,161.56,43.794 +459714,159.52,42.944 +459715,157.39,42.061 +459716,155.17,41.143 +459717,160.29,43.871 +459718,158.25,42.965 +459719,156.13,42.024 +459720,153.92,41.045 +459721,159.01,43.948 +459722,156.99,42.987 +459723,154.88,41.988 +459724,152.67,40.948 +459725,157.73,44.024 +459726,155.73,43.008 +459727,153.63,41.952 +459728,151.43,40.852 +459729,156.45,44.098 +459730,154.46,43.029 +459731,152.38,41.916 +459732,150.18,40.756 +459733,155.17,44.173 +459734,153.2,43.05 +459735,151.13,41.881 +459736,148.94,40.661 +459737,153.88,44.246 +459738,151.93,43.071 +459739,149.88,41.846 +459740,147.7,40.567 +459741,152.6,44.318 +459742,150.67,43.092 +459743,148.63,41.812 +459744,146.47,40.473 +459745,151.31,44.389 +459746,149.4,43.112 +459747,147.38,41.778 +459748,145.23,40.381 +459749,150.02,44.46 +459750,148.13,43.132 +459751,146.13,41.744 +459752,144,40.289 +459753,148.73,44.529 +459754,146.86,43.152 +459755,144.88,41.711 +459756,142.77,40.199 +459757,147.44,44.597 +459758,145.6,43.171 +459759,143.64,41.678 +459760,141.54,40.109 +459761,146.14,44.665 +459762,144.33,43.19 +459763,142.39,41.646 +459764,140.31,40.021 +459765,144.85,44.731 +459766,143.06,43.209 +459767,141.15,41.614 +459768,139.09,39.933 +459769,143.55,44.796 +459770,141.79,43.228 +459771,139.9,41.582 +459772,137.86,39.847 +459773,142.25,44.859 +459774,140.52,43.246 +459775,138.66,41.551 +459776,136.64,39.762 +459777,140.95,44.922 +459778,139.25,43.264 +459779,137.41,41.521 +459780,135.43,39.679 +459781,139.65,44.983 +459782,137.98,43.282 +459783,136.17,41.491 +459784,134.21,39.597 +459785,138.35,45.043 +459786,136.7,43.299 +459787,134.93,41.461 +459788,132.99,39.516 +459789,137.05,45.102 +459790,135.43,43.316 +459791,133.69,41.433 +459792,131.78,39.436 +459793,135.74,45.159 +459794,134.16,43.332 +459795,132.45,41.404 +459796,130.57,39.358 +459797,134.44,45.215 +459798,132.89,43.348 +459799,131.21,41.377 +459800,129.36,39.282 +459801,133.13,45.27 +459802,131.61,43.364 +459803,129.97,41.349 +459804,128.16,39.207 +459805,131.82,45.323 +459806,130.34,43.379 +459807,128.73,41.323 +459808,126.95,39.134 +459809,130.51,45.375 +459810,129.06,43.394 +459811,127.49,41.297 +459812,125.75,39.062 +459813,129.2,45.425 +459814,127.79,43.409 +459815,126.25,41.272 +459816,124.55,38.993 +459817,127.89,45.474 +459818,126.51,43.423 +459819,125.01,41.247 +459820,123.35,38.925 +459821,126.57,45.522 +459822,125.24,43.436 +459823,123.78,41.223 +459824,122.15,38.858 +459825,125.26,45.568 +459826,123.96,43.449 +459827,122.54,41.2 +459828,120.95,38.794 +459829,123.95,45.612 +459830,122.69,43.462 +459831,121.3,41.177 +459832,119.76,38.731 +459833,122.63,45.655 +459834,121.41,43.474 +459835,120.07,41.155 +459836,118.57,38.671 +459837,121.31,45.696 +459838,120.13,43.485 +459839,118.83,41.134 +459840,117.37,38.612 +459841,119.99,45.736 +459842,118.85,43.497 +459843,117.6,41.113 +459844,116.18,38.555 +459845,118.68,45.774 +459846,117.58,43.507 +459847,116.36,41.093 +459848,115,38.5 +459849,117.36,45.81 +459850,116.3,43.517 +459851,115.13,41.074 +459852,113.81,38.448 +459853,116.04,45.845 +459854,115.02,43.527 +459855,113.9,41.056 +459856,112.62,38.397 +459857,114.72,45.878 +459858,113.74,43.536 +459859,112.66,41.038 +459860,111.44,38.349 +459861,113.39,45.909 +459862,112.46,43.544 +459863,111.43,41.021 +459864,110.26,38.302 +459865,112.07,45.939 +459866,111.18,43.553 +459867,110.2,41.005 +459868,109.08,38.258 +459869,110.75,45.967 +459870,109.9,43.56 +459871,108.96,40.989 +459872,107.9,38.216 +459873,109.42,45.993 +459874,108.62,43.567 +459875,107.73,40.974 +459876,106.72,38.177 +459877,108.1,46.017 +459878,107.34,43.573 +459879,106.5,40.96 +459880,105.54,38.139 +459881,106.77,46.04 +459882,106.06,43.579 +459883,105.27,40.947 +459884,104.36,38.104 +459885,105.45,46.061 +459886,104.78,43.584 +459887,104.04,40.935 +459888,103.19,38.071 +459889,104.12,46.08 +459890,103.5,43.589 +459891,102.81,40.923 +459892,102.01,38.041 +459893,102.8,46.098 +459894,102.22,43.593 +459895,101.58,40.912 +459896,100.84,38.013 +459897,101.47,46.113 +459898,100.94,43.597 +459899,100.35,40.902 +459900,99.664,37.987 +459901,100.14,46.127 +459902,99.661,43.6 +459903,99.118,40.893 +459904,98.491,37.964 +459905,98.814,46.139 +459906,98.379,43.602 +459907,97.889,40.885 +459908,97.32,37.943 +459909,97.486,46.149 +459910,97.098,43.604 +459911,96.659,40.877 +459912,96.148,37.924 +459913,96.158,46.158 +459914,95.817,43.605 +459915,95.43,40.87 +459916,94.978,37.908 +459917,94.829,46.164 +459918,94.535,43.606 +459919,94.2,40.864 +459920,93.807,37.894 +459921,93.5,46.169 +459922,93.254,43.606 +459923,92.971,40.859 +459924,92.638,37.883 +459925,92.171,46.172 +459926,91.972,43.606 +459927,91.742,40.855 +459928,91.468,37.874 +459929,90.842,46.173 +459930,90.691,43.605 +459931,90.513,40.851 +459932,90.299,37.868 +459933,89.513,46.173 +459934,89.409,43.603 +459935,89.284,40.849 +459936,89.13,37.864 +459937,88.184,46.17 +459938,88.127,43.601 +459939,88.055,40.847 +459940,87.961,37.863 +459941,86.855,46.166 +459942,86.846,43.598 +459943,86.826,40.846 +459944,86.792,37.864 +459945,85.525,46.16 +459946,85.564,43.594 +459947,85.597,40.845 +459948,85.624,37.867 +459949,84.196,46.152 +459950,84.282,43.59 +459951,84.368,40.846 +459952,84.455,37.873 +459953,82.867,46.142 +459954,83.001,43.586 +459955,83.14,40.847 +459956,83.286,37.882 +459957,81.538,46.13 +459958,81.719,43.581 +459959,81.911,40.85 +459960,82.117,37.893 +459961,80.209,46.117 +459962,80.437,43.575 +459963,80.682,40.853 +459964,80.947,37.906 +459965,78.881,46.101 +459966,79.156,43.569 +459967,79.453,40.856 +459968,79.777,37.922 +459969,77.552,46.084 +459970,77.875,43.562 +459971,78.223,40.861 +459972,78.607,37.94 +459973,76.224,46.065 +459974,76.594,43.554 +459975,76.994,40.867 +459976,77.437,37.96 +459977,74.896,46.045 +459978,75.312,43.546 +459979,75.765,40.873 +459980,76.265,37.983 +459981,73.568,46.022 +459982,74.031,43.537 +459983,74.535,40.88 +459984,75.094,38.008 +459985,72.241,45.998 +459986,72.751,43.528 +459987,73.305,40.888 +459988,73.921,38.036 +459989,70.914,45.972 +459990,71.47,43.518 +459991,72.075,40.896 +459992,72.748,38.066 +459993,69.588,45.944 +459994,70.189,43.508 +459995,70.845,40.906 +459996,71.574,38.098 +459997,68.262,45.914 +459998,68.909,43.497 +459999,69.615,40.916 +460000,70.399,38.133 +460001,66.937,45.883 +460002,67.629,43.486 +460003,68.384,40.927 +460004,69.224,38.169 +460005,65.612,45.85 +460006,66.349,43.474 +460007,67.153,40.938 +460008,68.047,38.208 +460009,64.288,45.815 +460010,65.07,43.461 +460011,65.922,40.951 +460012,66.869,38.25 +460013,62.964,45.779 +460014,63.79,43.448 +460015,64.691,40.964 +460016,65.691,38.293 +460017,61.641,45.741 +460018,62.511,43.435 +460019,63.459,40.978 +460020,64.511,38.339 +460021,60.319,45.701 +460022,61.232,43.421 +460023,62.227,40.993 +460024,63.33,38.386 +460025,58.997,45.66 +460026,59.954,43.406 +460027,60.994,41.008 +460028,62.147,38.436 +460029,57.676,45.616 +460030,58.675,43.391 +460031,59.762,41.024 +460032,60.964,38.488 +460033,56.356,45.572 +460034,57.397,43.375 +460035,58.529,41.041 +460036,59.779,38.542 +460037,55.037,45.525 +460038,56.12,43.359 +460039,57.295,41.059 +460040,58.592,38.597 +460041,53.719,45.478 +460042,54.842,43.343 +460043,56.061,41.077 +460044,57.405,38.655 +460045,52.401,45.428 +460046,53.565,43.326 +460047,54.827,41.096 +460048,56.215,38.715 +460049,51.085,45.377 +460050,52.289,43.308 +460051,53.592,41.115 +460052,55.025,38.776 +460053,49.769,45.325 +460054,51.012,43.29 +460055,52.357,41.136 +460056,53.832,38.839 +460057,48.454,45.271 +460058,49.736,43.272 +460059,51.121,41.157 +460060,52.638,38.904 +460061,47.141,45.215 +460062,48.461,43.253 +460063,49.885,41.178 +460064,51.443,38.971 +460065,45.828,45.158 +460066,47.186,43.233 +460067,48.649,41.2 +460068,50.245,39.04 +460069,44.517,45.1 +460070,45.911,43.214 +460071,47.412,41.223 +460072,49.046,39.11 +460073,43.206,45.04 +460074,44.637,43.194 +460075,46.174,41.246 +460076,47.846,39.182 +460077,41.897,44.979 +460078,43.363,43.173 +460079,44.936,41.27 +460080,46.643,39.255 +460081,40.589,44.916 +460082,42.089,43.152 +460083,43.697,41.295 +460084,45.439,39.33 +460085,39.282,44.852 +460086,40.817,43.131 +460087,42.458,41.32 +460088,44.233,39.406 +460089,37.977,44.787 +460090,39.544,43.109 +460091,41.218,41.345 +460092,43.025,39.484 +460093,36.672,44.721 +460094,38.272,43.087 +460095,39.978,41.372 +460096,41.815,39.563 +460097,35.369,44.653 +460098,37,43.065 +460099,38.737,41.398 +460100,40.603,39.643 +460101,34.068,44.584 +460102,35.729,43.042 +460103,37.496,41.425 +460104,39.39,39.725 +460105,32.767,44.514 +460106,34.459,43.019 +460107,36.254,41.453 +460108,38.174,39.808 +460109,31.468,44.443 +460110,33.189,42.995 +460111,35.012,41.481 +460112,36.956,39.892 +460113,30.171,44.371 +460114,31.919,42.972 +460115,33.768,41.51 +460116,35.737,39.977 +460117,28.875,44.297 +460118,30.65,42.948 +460119,32.525,41.539 +460120,34.515,40.064 +460121,27.58,44.223 +460122,29.382,42.924 +460123,31.28,41.568 +460124,33.292,40.151 +460125,26.287,44.147 +460126,28.114,42.899 +460127,30.035,41.598 +460128,32.066,40.24 +460129,24.995,44.071 +460130,26.847,42.874 +460131,28.79,41.629 +460132,30.839,40.329 +460133,23.705,43.993 +460134,25.58,42.849 +460135,27.543,41.659 +460136,29.609,40.419 +460137,22.417,43.915 +460138,24.314,42.824 +460139,26.296,41.691 +460140,28.378,40.51 +460141,21.13,43.835 +460142,23.048,42.799 +460143,25.049,41.722 +460144,27.144,40.602 +460145,19.845,43.755 +460146,21.783,42.773 +460147,23.801,41.754 +460148,25.908,40.694 +460149,18.561,43.674 +460150,20.519,42.747 +460151,22.552,41.786 +460152,24.671,40.787 +460153,17.279,43.593 +460154,19.255,42.722 +460155,21.302,41.818 +460156,23.431,40.881 +460157,15.999,43.51 +460158,17.991,42.695 +460159,20.052,41.851 +460160,22.189,40.976 +460161,14.72,43.427 +460162,16.729,42.669 +460163,18.801,41.884 +460164,20.945,41.071 +460165,13.444,43.343 +460166,15.466,42.643 +460167,17.55,41.917 +460168,19.7,41.166 +460169,12.169,43.259 +460170,14.205,42.616 +460171,16.298,41.951 +460172,18.452,41.262 +460173,10.895,43.174 +460174,12.944,42.59 +460175,15.045,41.985 +460176,17.202,41.358 +460177,9.6238,43.089 +460178,11.684,42.563 +460179,13.791,42.019 +460180,15.95,41.454 +460181,8.3542,43.003 +460182,10.424,42.537 +460183,12.537,42.053 +460184,14.696,41.551 +460185,7.0863,42.916 +460186,9.1651,42.51 +460187,11.282,42.087 +460188,13.44,41.648 +460189,5.8204,42.829 +460190,7.9067,42.483 +460191,10.027,42.122 +460192,12.182,41.745 +460193,4.5562,42.742 +460194,6.6489,42.456 +460195,8.7705,42.157 +460196,10.923,41.843 +460197,3.294,42.655 +460198,5.3917,42.429 +460199,7.5136,42.191 +460200,9.6607,41.94 +460201,2.0337,42.567 +460202,4.1352,42.403 +460203,6.256,42.226 +460204,8.397,42.038 +460205,0.7752,42.479 +460206,2.8793,42.376 +460207,4.9978,42.261 +460208,7.1313,42.135 +460209,359.52,42.391 +460210,1.624,42.349 +460211,3.7389,42.296 +460212,5.8637,42.232 +460213,358.26,42.303 +460214,0.3694,42.323 +460215,2.4793,42.332 +460216,4.5942,42.33 +460217,357.01,42.214 +460218,359.12,42.296 +460219,1.2191,42.367 +460220,3.3228,42.427 +460221,355.76,42.126 +460222,357.86,42.27 +460223,359.96,42.402 +460224,2.0496,42.524 +460225,354.51,42.037 +460226,356.61,42.243 +460227,358.7,42.438 +460228,0.77452,42.62 +460229,353.27,41.949 +460230,355.36,42.217 +460231,357.43,42.473 +460232,359.5,42.717 +460233,352.02,41.861 +460234,354.11,42.191 +460235,356.17,42.508 +460236,358.22,42.813 +460237,350.78,41.773 +460238,352.85,42.165 +460239,354.91,42.544 +460240,356.94,42.908 +460241,349.54,41.685 +460242,351.6,42.139 +460243,353.64,42.579 +460244,355.66,43.004 +460245,348.3,41.597 +460246,350.35,42.114 +460247,352.38,42.614 +460248,354.37,43.098 +460249,347.06,41.51 +460250,349.11,42.088 +460251,351.11,42.649 +460252,353.09,43.193 +460253,345.83,41.423 +460254,347.86,42.063 +460255,349.85,42.684 +460256,351.8,43.286 +460257,344.59,41.336 +460258,346.61,42.038 +460259,348.58,42.719 +460260,350.51,43.379 +460261,343.36,41.25 +460262,345.36,42.014 +460263,347.31,42.754 +460264,349.22,43.472 +460265,342.13,41.164 +460266,344.12,41.989 +460267,346.05,42.789 +460268,347.93,43.564 +460269,340.91,41.079 +460270,342.87,41.965 +460271,344.78,42.824 +460272,346.63,43.655 +460273,339.68,40.994 +460274,341.62,41.941 +460275,343.51,42.858 +460276,345.34,43.745 +460277,338.46,40.91 +460278,340.38,41.918 +460279,342.24,42.892 +460280,344.04,43.835 +460281,337.24,40.827 +460282,339.14,41.895 +460283,340.97,42.926 +460284,342.74,43.923 +460285,336.02,40.744 +460286,337.89,41.872 +460287,339.7,42.96 +460288,341.44,44.011 +460289,334.8,40.663 +460290,336.65,41.85 +460291,338.43,42.994 +460292,340.14,44.098 +460293,333.58,40.582 +460294,335.41,41.828 +460295,337.15,43.027 +460296,338.84,44.184 +460297,332.37,40.502 +460298,334.16,41.806 +460299,335.88,43.061 +460300,337.53,44.269 +460301,331.16,40.423 +460302,332.92,41.785 +460303,334.61,43.093 +460304,336.23,44.353 +460305,329.95,40.344 +460306,331.68,41.764 +460307,333.34,43.126 +460308,334.92,44.436 +460309,328.74,40.267 +460310,330.44,41.743 +460311,332.06,43.159 +460312,333.61,44.518 +460313,327.53,40.191 +460314,329.2,41.723 +460315,330.79,43.191 +460316,332.3,44.599 +460317,326.33,40.116 +460318,327.96,41.704 +460319,329.51,43.222 +460320,330.99,44.678 +460321,325.13,40.043 +460322,326.72,41.685 +460323,328.24,43.254 +460324,329.68,44.757 +460325,323.93,39.97 +460326,325.48,41.666 +460327,326.96,43.285 +460328,328.37,44.834 +460329,322.73,39.899 +460330,324.25,41.648 +460331,325.68,43.316 +460332,327.05,44.91 +460333,321.53,39.829 +460334,323.01,41.631 +460335,324.41,43.346 +460336,325.74,44.985 +460337,320.33,39.761 +460338,321.77,41.614 +460339,323.13,43.376 +460340,324.42,45.058 +460341,319.14,39.694 +460342,320.53,41.597 +460343,321.85,43.406 +460344,323.1,45.131 +460345,317.94,39.628 +460346,319.3,41.582 +460347,320.57,43.435 +460348,321.78,45.201 +460349,316.75,39.564 +460350,318.06,41.566 +460351,319.29,43.464 +460352,320.46,45.271 +460353,315.56,39.501 +460354,316.83,41.552 +460355,318.02,43.493 +460356,319.14,45.339 +460357,314.37,39.44 +460358,315.59,41.537 +460359,316.74,43.521 +460360,317.82,45.406 +460361,313.19,39.381 +460362,314.36,41.524 +460363,315.46,43.549 +460364,316.5,45.471 +460365,312,39.323 +460366,313.12,41.511 +460367,314.18,43.576 +460368,315.18,45.535 +460369,310.82,39.267 +460370,311.89,41.499 +460371,312.9,43.603 +460372,313.85,45.597 +460373,309.63,39.213 +460374,310.65,41.487 +460375,311.61,43.629 +460376,312.53,45.658 +460377,308.45,39.16 +460378,309.42,41.476 +460379,310.33,43.655 +460380,311.2,45.717 +460381,307.27,39.11 +460382,308.19,41.466 +460383,309.05,43.68 +460384,309.88,45.775 +460385,306.09,39.061 +460386,306.95,41.456 +460387,307.77,43.705 +460388,308.55,45.831 +460389,304.91,39.014 +460390,305.72,41.447 +460391,306.49,43.73 +460392,307.22,45.885 +460393,303.74,38.969 +460394,304.49,41.439 +460395,305.21,43.754 +460396,305.89,45.938 +460397,302.56,38.926 +460398,303.26,41.431 +460399,303.92,43.777 +460400,304.56,45.989 +460401,301.38,38.885 +460402,302.02,41.424 +460403,302.64,43.8 +460404,303.24,46.039 +460405,300.21,38.846 +460406,300.79,41.418 +460407,301.36,43.822 +460408,301.91,46.087 +460409,299.03,38.81 +460410,299.56,41.413 +460411,300.07,43.844 +460412,300.57,46.133 +460413,297.86,38.775 +460414,298.33,41.408 +460415,298.79,43.866 +460416,299.24,46.178 +460417,296.69,38.742 +460418,297.1,41.404 +460419,297.51,43.886 +460420,297.91,46.221 +460421,295.52,38.712 +460422,295.87,41.401 +460423,296.22,43.907 +460424,296.58,46.262 +460425,294.34,38.684 +460426,294.64,41.398 +460427,294.94,43.926 +460428,295.25,46.301 +460429,293.17,38.658 +460430,293.4,41.396 +460431,293.65,43.946 +460432,293.92,46.339 +460433,292,38.634 +460434,292.17,41.395 +460435,292.37,43.964 +460436,292.59,46.375 +460437,290.83,38.613 +460438,290.94,41.395 +460439,291.09,43.982 +460440,291.25,46.409 +460441,289.66,38.593 +460442,289.71,41.396 +460443,289.8,44 +460444,289.92,46.442 +460445,288.49,38.576 +460446,288.48,41.397 +460447,288.52,44.017 +460448,288.59,46.473 +460449,287.32,38.562 +460450,287.25,41.399 +460451,287.23,44.033 +460452,287.25,46.502 +460453,286.15,38.549 +460454,286.02,41.402 +460455,285.95,44.049 +460456,285.92,46.529 +460457,284.98,38.54 +460458,284.79,41.406 +460459,284.66,44.064 +460460,284.59,46.554 +460461,283.81,38.532 +460462,283.56,41.41 +460463,283.38,44.079 +460464,283.25,46.578 +460465,282.64,38.527 +460466,282.32,41.415 +460467,282.09,44.093 +460468,281.92,46.599 +460469,281.47,38.524 +460470,281.09,41.421 +460471,280.81,44.106 +460472,280.59,46.619 +460473,280.3,38.523 +460474,279.86,41.428 +460475,279.52,44.119 +460476,279.26,46.637 +460477,279.13,38.525 +460478,278.63,41.436 +460479,278.24,44.132 +460480,277.92,46.654 +460481,277.96,38.53 +460482,277.4,41.444 +460483,276.95,44.143 +460484,276.59,46.668 +460485,276.79,38.536 +460486,276.17,41.453 +460487,275.67,44.155 +460488,275.26,46.681 +460489,275.62,38.545 +460490,274.94,41.464 +460491,274.38,44.165 +460492,273.93,46.692 +460493,274.44,38.557 +460494,273.7,41.474 +460495,273.1,44.175 +460496,272.59,46.701 +460497,273.27,38.571 +460498,272.47,41.486 +460499,271.81,44.185 +460500,271.26,46.708 +460501,272.1,38.587 +460502,271.24,41.498 +460503,270.53,44.193 +460504,269.93,46.714 +460505,270.92,38.606 +460506,270,41.512 +460507,269.25,44.202 +460508,268.6,46.717 +460509,269.75,38.627 +460510,268.77,41.526 +460511,267.96,44.209 +460512,267.27,46.719 +460513,268.57,38.65 +460514,267.54,41.54 +460515,266.68,44.216 +460516,265.94,46.719 +460517,267.39,38.676 +460518,266.3,41.556 +460519,265.39,44.223 +460520,264.61,46.717 +460521,266.21,38.704 +460522,265.07,41.572 +460523,264.11,44.229 +460524,263.28,46.714 +460525,265.03,38.735 +460526,263.84,41.589 +460527,262.83,44.234 +460528,261.95,46.709 +460529,263.85,38.768 +460530,262.6,41.607 +460531,261.54,44.239 +460532,260.62,46.702 +460533,262.67,38.803 +460534,261.37,41.626 +460535,260.26,44.243 +460536,259.3,46.693 +460537,261.48,38.84 +460538,260.13,41.646 +460539,258.98,44.247 +460540,257.97,46.682 +460541,260.3,38.88 +460542,258.89,41.666 +460543,257.69,44.25 +460544,256.65,46.67 +460545,259.11,38.922 +460546,257.66,41.687 +460547,256.41,44.253 +460548,255.32,46.656 +460549,257.93,38.966 +460550,256.42,41.708 +460551,255.13,44.255 +460552,254,46.64 +460553,256.74,39.012 +460554,255.18,41.731 +460555,253.85,44.256 +460556,252.67,46.623 +460557,255.54,39.061 +460558,253.95,41.754 +460559,252.57,44.257 +460560,251.35,46.603 +460561,254.35,39.111 +460562,252.71,41.778 +460563,251.29,44.257 +460564,250.03,46.583 +460565,253.16,39.164 +460566,251.47,41.803 +460567,250,44.257 +460568,248.71,46.56 +460569,251.96,39.219 +460570,250.23,41.828 +460571,248.72,44.256 +460572,247.39,46.536 +460573,250.76,39.276 +460574,248.99,41.854 +460575,247.44,44.255 +460576,246.07,46.51 +460577,249.57,39.335 +460578,247.75,41.881 +460579,246.16,44.254 +460580,244.75,46.483 +460581,248.36,39.396 +460582,246.51,41.908 +460583,244.88,44.251 +460584,243.43,46.454 +460585,247.16,39.459 +460586,245.27,41.937 +460587,243.6,44.249 +460588,242.12,46.423 +460589,245.96,39.524 +460590,244.02,41.965 +460591,242.33,44.246 +460592,240.8,46.391 +460593,244.75,39.59 +460594,242.78,41.995 +460595,241.05,44.242 +460596,239.49,46.358 +460597,243.54,39.659 +460598,241.54,42.025 +460599,239.77,44.238 +460600,238.18,46.322 +460601,242.33,39.729 +460602,240.29,42.056 +460603,238.49,44.233 +460604,236.87,46.286 +460605,241.12,39.802 +460606,239.05,42.087 +460607,237.21,44.228 +460608,235.55,46.247 +460609,239.9,39.876 +460610,237.81,42.119 +460611,235.94,44.223 +460612,234.25,46.208 +460613,238.69,39.951 +460614,236.56,42.152 +460615,234.66,44.217 +460616,232.94,46.167 +460617,237.47,40.029 +460618,235.31,42.185 +460619,233.39,44.21 +460620,231.63,46.124 +460621,236.25,40.108 +460622,234.07,42.219 +460623,232.11,44.204 +460624,230.33,46.08 +460625,235.02,40.188 +460626,232.82,42.253 +460627,230.83,44.196 +460628,229.02,46.035 +460629,233.8,40.27 +460630,231.57,42.288 +460631,229.56,44.189 +460632,227.72,45.989 +460633,232.57,40.354 +460634,230.32,42.324 +460635,228.29,44.181 +460636,226.42,45.941 +460637,231.34,40.438 +460638,229.07,42.36 +460639,227.01,44.173 +460640,225.12,45.892 +460641,230.11,40.525 +460642,227.82,42.396 +460643,225.74,44.164 +460644,223.82,45.841 +460645,228.88,40.612 +460646,226.57,42.433 +460647,224.47,44.155 +460648,222.53,45.79 +460649,227.64,40.701 +460650,225.32,42.471 +460651,223.19,44.145 +460652,221.23,45.737 +460653,226.4,40.792 +460654,224.07,42.509 +460655,221.92,44.136 +460656,219.94,45.683 +460657,225.16,40.883 +460658,222.81,42.548 +460659,220.65,44.126 +460660,218.65,45.628 +460661,223.92,40.976 +460662,221.56,42.587 +460663,219.38,44.115 +460664,217.36,45.572 +460665,222.68,41.069 +460666,220.3,42.626 +460667,218.11,44.105 +460668,216.07,45.514 +460669,221.43,41.164 +460670,219.05,42.666 +460671,216.84,44.094 +460672,214.78,45.456 +460673,220.18,41.26 +460674,217.79,42.706 +460675,215.57,44.082 +460676,213.49,45.397 +460677,218.93,41.357 +460678,216.54,42.747 +460679,214.31,44.071 +460680,212.21,45.336 +460681,217.68,41.454 +460682,215.28,42.788 +460683,213.04,44.059 +460684,210.93,45.275 +460685,216.42,41.553 +460686,214.02,42.829 +460687,211.77,44.047 +460688,209.65,45.213 +460689,215.17,41.652 +460690,212.76,42.871 +460691,210.5,44.035 +460692,208.37,45.15 +460693,213.91,41.752 +460694,211.5,42.913 +460695,209.24,44.022 +460696,207.09,45.086 +460697,212.64,41.853 +460698,210.24,42.955 +460699,207.97,44.01 +460700,205.82,45.021 +460701,211.38,41.954 +460702,208.98,42.998 +460703,206.71,43.997 +460704,204.54,44.956 +460705,210.11,42.056 +460706,207.72,43.041 +460707,205.44,43.984 +460708,203.27,44.889 +460709,208.85,42.159 +460710,206.46,43.084 +460711,204.18,43.971 +460712,202,44.823 +460713,207.58,42.262 +460714,205.19,43.128 +460715,202.92,43.958 +460716,200.74,44.755 +460717,206.3,42.366 +460718,203.93,43.171 +460719,201.65,43.944 +460720,199.47,44.687 +460721,205.03,42.47 +460722,202.66,43.215 +460723,200.39,43.931 +460724,198.2,44.618 +460725,203.75,42.574 +460726,201.4,43.26 +460727,199.13,43.917 +460728,196.94,44.549 +460729,202.47,42.679 +460730,200.13,43.304 +460731,197.87,43.904 +460732,195.68,44.479 +460733,201.19,42.784 +460734,198.86,43.349 +460735,196.61,43.89 +460736,194.42,44.409 +460737,199.91,42.889 +460738,197.6,43.393 +460739,195.35,43.876 +460740,193.17,44.338 +460741,198.63,42.994 +460742,196.33,43.438 +460743,194.09,43.862 +460744,191.91,44.267 +460745,197.34,43.1 +460746,195.06,43.483 +460747,192.83,43.848 +460748,190.66,44.196 +460749,196.05,43.205 +460750,193.79,43.528 +460751,191.57,43.835 +460752,189.41,44.124 +460753,194.76,43.311 +460754,192.52,43.574 +460755,190.32,43.821 +460756,188.16,44.053 +460757,193.47,43.417 +460758,191.25,43.619 +460759,189.06,43.807 +460760,186.91,43.981 +460761,192.18,43.522 +460762,189.97,43.665 +460763,187.8,43.793 +460764,185.67,43.908 +460765,190.88,43.628 +460766,188.7,43.71 +460767,186.55,43.779 +460768,184.42,43.836 +460769,189.59,43.733 +460770,187.43,43.755 +460771,185.29,43.765 +460772,183.18,43.764 +460773,188.29,43.838 +460774,186.15,43.801 +460775,184.04,43.752 +460776,181.94,43.691 +460777,186.99,43.943 +460778,184.88,43.847 +460779,182.79,43.738 +460780,180.71,43.619 +460781,185.68,44.047 +460782,183.6,43.892 +460783,181.53,43.725 +460784,179.47,43.546 +460785,184.38,44.152 +460786,182.33,43.938 +460787,180.28,43.712 +460788,178.24,43.474 +460789,183.07,44.255 +460790,181.05,43.983 +460791,179.03,43.698 +460792,177,43.402 +460793,181.77,44.359 +460794,179.77,44.029 +460795,177.78,43.685 +460796,175.77,43.33 +460797,180.46,44.462 +460798,178.49,44.074 +460799,176.52,43.673 +460800,174.55,43.259 +460801,179.15,44.564 +460802,177.22,44.119 +460803,175.27,43.66 +460804,173.32,43.187 +460805,177.83,44.666 +460806,175.94,44.164 +460807,174.02,43.647 +460808,172.1,43.116 +460809,176.52,44.768 +460810,174.66,44.209 +460811,172.77,43.635 +460812,170.87,43.045 +460813,175.21,44.868 +460814,173.38,44.254 +460815,171.53,43.623 +460816,169.65,42.975 +460817,173.89,44.969 +460818,172.09,44.299 +460819,170.28,43.611 +460820,168.43,42.905 +460821,172.57,45.068 +460822,170.81,44.344 +460823,169.03,43.6 +460824,167.22,42.836 +460825,171.25,45.167 +460826,169.53,44.388 +460827,167.78,43.589 +460828,166,42.767 +460829,169.93,45.264 +460830,168.25,44.433 +460831,166.53,43.578 +460832,164.79,42.699 +460833,168.61,45.362 +460834,166.96,44.477 +460835,165.29,43.567 +460836,163.58,42.632 +460837,167.29,45.458 +460838,165.68,44.521 +460839,164.04,43.557 +460840,162.37,42.565 +460841,165.96,45.553 +460842,164.4,44.564 +460843,162.8,43.547 +460844,161.16,42.499 +460845,164.64,45.648 +460846,163.11,44.608 +460847,161.55,43.537 +460848,159.95,42.434 +460849,163.31,45.741 +460850,161.82,44.651 +460851,160.31,43.528 +460852,158.75,42.37 +460853,161.98,45.834 +460854,160.54,44.694 +460855,159.06,43.519 +460856,157.55,42.306 +460857,160.65,45.925 +460858,159.25,44.737 +460859,157.82,43.51 +460860,156.34,42.244 +460861,159.32,46.015 +460862,157.96,44.779 +460863,156.57,43.502 +460864,155.14,42.182 +460865,157.99,46.105 +460866,156.68,44.821 +460867,155.33,43.494 +460868,153.95,42.122 +460869,156.66,46.193 +460870,155.39,44.863 +460871,154.09,43.487 +460872,152.75,42.062 +460873,155.33,46.28 +460874,154.1,44.904 +460875,152.85,43.48 +460876,151.55,42.004 +460877,153.99,46.366 +460878,152.81,44.946 +460879,151.6,43.474 +460880,150.36,41.946 +460881,152.66,46.451 +460882,151.52,44.986 +460883,150.36,43.468 +460884,149.17,41.89 +460885,151.32,46.534 +460886,150.23,45.027 +460887,149.12,43.462 +460888,147.98,41.835 +460889,149.98,46.616 +460890,148.94,45.067 +460891,147.88,43.457 +460892,146.79,41.782 +460893,148.65,46.697 +460894,147.65,45.107 +460895,146.64,43.453 +460896,145.6,41.73 +460897,147.31,46.777 +460898,146.36,45.146 +460899,145.4,43.449 +460900,144.41,41.679 +460901,145.97,46.855 +460902,145.07,45.185 +460903,144.16,43.445 +460904,143.22,41.629 +460905,144.63,46.932 +460906,143.78,45.223 +460907,142.92,43.442 +460908,142.04,41.581 +460909,143.29,47.008 +460910,142.49,45.261 +460911,141.68,43.44 +460912,140.85,41.535 +460913,141.95,47.082 +460914,141.2,45.299 +460915,140.44,43.438 +460916,139.67,41.489 +460917,140.61,47.155 +460918,139.9,45.336 +460919,139.2,43.437 +460920,138.49,41.446 +460921,139.26,47.226 +460922,138.61,45.373 +460923,137.96,43.436 +460924,137.31,41.404 +460925,137.92,47.296 +460926,137.32,45.409 +460927,136.72,43.436 +460928,136.13,41.364 +460929,136.58,47.364 +460930,136.02,45.445 +460931,135.48,43.436 +460932,134.95,41.325 +460933,135.23,47.431 +460934,134.73,45.481 +460935,134.24,43.437 +460936,133.77,41.288 +460937,133.89,47.496 +460938,133.44,45.516 +460939,133,43.439 +460940,132.59,41.253 +460941,132.55,47.56 +460942,132.14,45.55 +460943,131.76,43.441 +460944,131.41,41.219 +460945,131.2,47.622 +460946,130.85,45.584 +460947,130.52,43.444 +460948,130.23,41.188 +460949,129.86,47.683 +460950,129.55,45.617 +460951,129.28,43.448 +460952,129.06,41.158 +460953,128.51,47.742 +460954,128.26,45.65 +460955,128.05,43.452 +460956,127.88,41.13 +460957,127.17,47.799 +460958,126.97,45.683 +460959,126.81,43.457 +460960,126.71,41.104 +460961,125.82,47.855 +460962,125.67,45.715 +460963,125.57,43.462 +460964,125.53,41.079 +460965,124.47,47.909 +460966,124.38,45.746 +460967,124.33,43.469 +460968,124.36,41.057 +460969,123.13,47.962 +460970,123.08,45.777 +460971,123.09,43.475 +460972,123.18,41.037 +460973,121.78,48.012 +460974,121.79,45.807 +460975,121.85,43.483 +460976,122.01,41.019 +460977,120.44,48.062 +460978,120.49,45.837 +460979,120.61,43.491 +460980,120.83,41.002 +460981,119.09,48.109 +460982,119.2,45.866 +460983,119.38,43.5 +460984,119.66,40.988 +460985,117.74,48.155 +460986,117.9,45.895 +460987,118.14,43.51 +460988,118.48,40.976 +460989,116.4,48.199 +460990,116.6,45.923 +460991,116.9,43.52 +460992,117.31,40.965 +460993,115.05,48.241 +460994,115.31,45.951 +460995,115.66,43.531 +460996,116.13,40.957 +460997,113.71,48.282 +460998,114.01,45.978 +460999,114.42,43.543 +461000,114.96,40.951 +461001,112.36,48.321 +461002,112.72,46.004 +461003,113.18,43.555 +461004,113.78,40.947 +461005,111.02,48.358 +461006,111.42,46.03 +461007,111.94,43.568 +461008,112.6,40.946 +461009,109.67,48.393 +461010,110.13,46.056 +461011,110.7,43.582 +461012,111.43,40.946 +461013,108.33,48.427 +461014,108.83,46.081 +461015,109.46,43.597 +461016,110.25,40.949 +461017,106.98,48.459 +461018,107.54,46.105 +461019,108.22,43.612 +461020,109.07,40.953 +461021,105.64,48.489 +461022,106.24,46.128 +461023,106.98,43.628 +461024,107.89,40.96 +461025,104.29,48.518 +461026,104.95,46.152 +461027,105.74,43.645 +461028,106.72,40.969 +461029,102.95,48.545 +461030,103.65,46.174 +461031,104.5,43.662 +461032,105.54,40.98 +461033,101.61,48.57 +461034,102.36,46.196 +461035,103.26,43.68 +461036,104.35,40.994 +461037,100.26,48.593 +461038,101.06,46.217 +461039,102.01,43.699 +461040,103.17,41.009 +461041,98.921,48.614 +461042,99.767,46.238 +461043,100.77,43.719 +461044,101.99,41.027 +461045,97.579,48.634 +461046,98.473,46.258 +461047,99.53,43.739 +461048,100.81,41.047 +461049,96.238,48.652 +461050,97.179,46.278 +461051,98.287,43.76 +461052,99.621,41.069 +461053,94.898,48.668 +461054,95.884,46.297 +461055,97.043,43.782 +461056,98.435,41.094 +461057,93.558,48.683 +461058,94.59,46.316 +461059,95.8,43.805 +461060,97.248,41.12 +461061,92.219,48.696 +461062,93.297,46.334 +461063,94.556,43.828 +461064,96.059,41.149 +461065,90.88,48.707 +461066,92.003,46.351 +461067,93.311,43.852 +461068,94.869,41.18 +461069,89.543,48.716 +461070,90.71,46.368 +461071,92.066,43.877 +461072,93.678,41.213 +461073,88.206,48.724 +461074,89.417,46.384 +461075,90.821,43.902 +461076,92.485,41.248 +461077,86.87,48.73 +461078,88.124,46.4 +461079,89.575,43.928 +461080,91.29,41.286 +461081,85.534,48.734 +461082,86.831,46.415 +461083,88.328,43.955 +461084,90.094,41.325 +461085,84.2,48.737 +461086,85.539,46.43 +461087,87.081,43.983 +461088,88.897,41.367 +461089,82.867,48.737 +461090,84.247,46.444 +461091,85.834,44.011 +461092,87.698,41.41 +461093,81.534,48.737 +461094,82.955,46.457 +461095,84.586,44.04 +461096,86.497,41.456 +461097,80.202,48.734 +461098,81.664,46.47 +461099,83.337,44.069 +461100,85.294,41.504 +461101,78.872,48.73 +461102,80.373,46.482 +461103,82.088,44.1 +461104,84.089,41.554 +461105,77.542,48.725 +461106,79.082,46.494 +461107,80.838,44.13 +461108,82.883,41.606 +461109,76.214,48.717 +461110,77.792,46.506 +461111,79.588,44.162 +461112,81.675,41.66 +461113,74.886,48.708 +461114,76.502,46.517 +461115,78.337,44.194 +461116,80.464,41.716 +461117,73.56,48.698 +461118,75.212,46.527 +461119,77.085,44.227 +461120,79.252,41.773 +461121,72.235,48.686 +461122,73.923,46.537 +461123,75.833,44.261 +461124,78.038,41.833 +461125,70.911,48.672 +461126,72.634,46.546 +461127,74.58,44.295 +461128,76.822,41.895 +461129,69.588,48.657 +461130,71.345,46.555 +461131,73.327,44.33 +461132,75.604,41.958 +461133,68.266,48.64 +461134,70.057,46.563 +461135,72.073,44.365 +461136,74.383,42.023 +461137,66.946,48.622 +461138,68.77,46.571 +461139,70.818,44.401 +461140,73.161,42.091 +461141,65.627,48.603 +461142,67.482,46.578 +461143,69.562,44.438 +461144,71.936,42.159 +461145,64.309,48.582 +461146,66.196,46.585 +461147,68.306,44.475 +461148,70.71,42.23 +461149,62.993,48.559 +461150,64.909,46.592 +461151,67.049,44.513 +461152,69.481,42.303 +461153,61.678,48.535 +461154,63.623,46.598 +461155,65.792,44.551 +461156,68.25,42.377 +461157,60.364,48.51 +461158,62.338,46.603 +461159,64.533,44.59 +461160,67.016,42.452 +461161,59.052,48.483 +461162,61.053,46.608 +461163,63.274,44.63 +461164,65.781,42.53 +461165,57.741,48.455 +461166,59.768,46.613 +461167,62.015,44.67 +461168,64.543,42.608 +461169,56.432,48.425 +461170,58.484,46.617 +461171,60.754,44.711 +461172,63.303,42.689 +461173,55.124,48.395 +461174,57.201,46.621 +461175,59.493,44.752 +461176,62.06,42.771 +461177,53.817,48.363 +461178,55.918,46.624 +461179,58.231,44.793 +461180,60.816,42.854 +461181,52.513,48.329 +461182,54.635,46.627 +461183,56.968,44.836 +461184,59.569,42.939 +461185,51.209,48.295 +461186,53.353,46.63 +461187,55.705,44.878 +461188,58.319,43.025 +461189,49.908,48.259 +461190,52.072,46.632 +461191,54.441,44.921 +461192,57.068,43.112 +461193,48.608,48.222 +461194,50.791,46.634 +461195,53.176,44.965 +461196,55.814,43.201 +461197,47.309,48.184 +461198,49.51,46.636 +461199,51.91,45.009 +461200,54.558,43.291 +461201,46.012,48.145 +461202,48.231,46.637 +461203,50.644,45.053 +461204,53.299,43.382 +461205,44.717,48.105 +461206,46.951,46.638 +461207,49.376,45.098 +461208,52.039,43.475 +461209,43.424,48.064 +461210,45.672,46.639 +461211,48.108,45.144 +461212,50.776,43.568 +461213,42.132,48.021 +461214,44.394,46.639 +461215,46.84,45.189 +461216,49.51,43.663 +461217,40.842,47.978 +461218,43.116,46.639 +461219,45.57,45.235 +461220,48.243,43.758 +461221,39.554,47.934 +461222,41.839,46.639 +461223,44.3,45.282 +461224,46.973,43.855 +461225,38.267,47.888 +461226,40.563,46.638 +461227,43.028,45.329 +461228,45.701,43.952 +461229,36.982,47.842 +461230,39.287,46.637 +461231,41.757,45.376 +461232,44.426,44.051 +461233,35.699,47.795 +461234,38.011,46.636 +461235,40.484,45.423 +461236,43.15,44.15 +461237,34.418,47.747 +461238,36.736,46.635 +461239,39.21,45.471 +461240,41.871,44.25 +461241,33.139,47.699 +461242,35.462,46.633 +461243,37.936,45.519 +461244,40.59,44.351 +461245,31.861,47.649 +461246,34.188,46.631 +461247,36.661,45.568 +461248,39.306,44.453 +461249,30.585,47.599 +461250,32.915,46.63 +461251,35.385,45.617 +461252,38.021,44.555 +461253,29.311,47.548 +461254,31.642,46.627 +461255,34.109,45.666 +461256,36.733,44.658 +461257,28.039,47.497 +461258,30.37,46.625 +461259,32.831,45.715 +461260,35.444,44.761 +461261,26.769,47.444 +461262,29.099,46.623 +461263,31.553,45.764 +461264,34.152,44.865 +461265,25.5,47.392 +461266,27.828,46.62 +461267,30.274,45.814 +461268,32.858,44.97 +461269,24.234,47.338 +461270,26.558,46.617 +461271,28.995,45.864 +461272,31.562,45.075 +461273,22.969,47.284 +461274,25.288,46.614 +461275,27.714,45.914 +461276,30.264,45.18 +461277,21.707,47.23 +461278,24.019,46.611 +461279,26.433,45.964 +461280,28.964,45.286 +461281,20.446,47.175 +461282,22.75,46.608 +461283,25.151,46.015 +461284,27.662,45.392 +461285,19.187,47.12 +461286,21.482,46.605 +461287,23.869,46.065 +461288,26.357,45.498 +461289,17.93,47.064 +461290,20.215,46.602 +461291,22.585,46.116 +461292,25.051,45.605 +461293,16.675,47.009 +461294,18.948,46.598 +461295,21.301,46.167 +461296,23.743,45.711 +461297,15.421,46.952 +461298,17.682,46.595 +461299,20.016,46.218 +461300,22.434,45.818 +461301,14.17,46.896 +461302,16.416,46.592 +461303,18.731,46.269 +461304,21.122,45.925 +461305,12.92,46.839 +461306,15.151,46.588 +461307,17.445,46.32 +461308,19.808,46.032 +461309,11.673,46.782 +461310,13.886,46.585 +461311,16.158,46.371 +461312,18.493,46.139 +461313,10.427,46.725 +461314,12.622,46.581 +461315,14.87,46.422 +461316,17.176,46.245 +461317,9.1832,46.668 +461318,11.358,46.578 +461319,13.582,46.473 +461320,15.857,46.352 +461321,7.9412,46.611 +461322,10.095,46.575 +461323,12.293,46.524 +461324,14.536,46.459 +461325,6.7011,46.554 +461326,8.833,46.571 +461327,11.003,46.576 +461328,13.214,46.565 +461329,5.4628,46.497 +461330,7.571,46.568 +461331,9.7125,46.627 +461332,11.89,46.671 +461333,4.2264,46.44 +461334,6.3096,46.565 +461335,8.4215,46.678 +461336,10.565,46.777 +461337,2.9919,46.383 +461338,5.0487,46.562 +461339,7.1298,46.729 +461340,9.2375,46.883 +461341,1.7591,46.326 +461342,3.7882,46.559 +461343,5.8375,46.78 +461344,7.9089,46.988 +461345,0.5282,46.27 +461346,2.5283,46.556 +461347,4.5446,46.831 +461348,6.5786,47.093 +461349,359.3,46.213 +461350,1.2689,46.554 +461351,3.251,46.882 +461352,5.247,47.198 +461353,358.07,46.157 +461354,0.0099419,46.551 +461355,1.9569,46.933 +461356,3.9138,47.302 +461357,356.85,46.101 +461358,358.75,46.549 +461359,0.66213,46.984 +461360,2.5792,47.405 +461361,355.62,46.046 +461362,357.49,46.547 +461363,359.37,47.035 +461364,1.2433,47.508 +461365,354.4,45.991 +461366,356.24,46.545 +461367,358.07,47.085 +461368,359.91,47.611 +461369,353.18,45.936 +461370,354.98,46.543 +461371,356.77,47.135 +461372,358.57,47.712 +461373,351.96,45.882 +461374,353.72,46.541 +461375,355.48,47.186 +461376,357.23,47.814 +461377,350.74,45.829 +461378,352.47,46.54 +461379,354.18,47.236 +461380,355.89,47.914 +461381,349.53,45.776 +461382,351.21,46.539 +461383,352.88,47.285 +461384,354.54,48.014 +461385,348.31,45.723 +461386,349.95,46.538 +461387,351.58,47.335 +461388,353.2,48.113 +461389,347.1,45.672 +461390,348.7,46.538 +461391,350.28,47.384 +461392,351.86,48.211 +461393,345.89,45.621 +461394,347.45,46.537 +461395,348.98,47.433 +461396,350.51,48.308 +461397,344.68,45.57 +461398,346.19,46.537 +461399,347.68,47.482 +461400,349.16,48.405 +461401,343.47,45.521 +461402,344.94,46.538 +461403,346.38,47.531 +461404,347.82,48.5 +461405,342.27,45.472 +461406,343.68,46.538 +461407,345.08,47.579 +461408,346.47,48.595 +461409,341.06,45.424 +461410,342.43,46.539 +461411,343.78,47.628 +461412,345.12,48.689 +461413,339.86,45.377 +461414,341.18,46.541 +461415,342.48,47.675 +461416,343.77,48.781 +461417,338.66,45.331 +461418,339.92,46.542 +461419,341.18,47.723 +461420,342.41,48.873 +461421,337.46,45.286 +461422,338.67,46.544 +461423,339.87,47.77 +461424,341.06,48.964 +461425,336.26,45.242 +461426,337.42,46.547 +461427,338.57,47.817 +461428,339.71,49.053 +461429,335.06,45.199 +461430,336.17,46.55 +461431,337.27,47.864 +461432,338.35,49.142 +461433,333.86,45.157 +461434,334.92,46.553 +461435,335.96,47.91 +461436,337,49.229 +461437,332.67,45.116 +461438,333.67,46.557 +461439,334.66,47.956 +461440,335.64,49.315 +461441,331.47,45.076 +461442,332.42,46.561 +461443,333.35,48.001 +461444,334.29,49.4 +461445,330.28,45.038 +461446,331.16,46.565 +461447,332.05,48.046 +461448,332.93,49.484 +461449,329.08,45 +461450,329.91,46.57 +461451,330.74,48.091 +461452,331.57,49.566 +461453,327.89,44.964 +461454,328.66,46.576 +461455,329.44,48.136 +461456,330.22,49.647 +461457,326.7,44.93 +461458,327.41,46.581 +461459,328.13,48.18 +461460,328.86,49.727 +461461,325.51,44.896 +461462,326.16,46.588 +461463,326.83,48.223 +461464,327.5,49.806 +461465,324.32,44.864 +461466,324.91,46.595 +461467,325.52,48.266 +461468,326.14,49.883 +461469,323.13,44.834 +461470,323.66,46.602 +461471,324.21,48.309 +461472,324.78,49.959 +461473,321.94,44.804 +461474,322.41,46.61 +461475,322.91,48.351 +461476,323.42,50.034 +461477,320.76,44.777 +461478,321.16,46.618 +461479,321.6,48.393 +461480,322.06,50.107 +461481,319.57,44.75 +461482,319.91,46.627 +461483,320.29,48.435 +461484,320.7,50.179 +461485,318.38,44.725 +461486,318.66,46.636 +461487,318.99,48.475 +461488,319.34,50.249 +461489,317.2,44.702 +461490,317.42,46.646 +461491,317.68,48.516 +461492,317.98,50.318 +461493,316.01,44.681 +461494,316.17,46.657 +461495,316.37,48.556 +461496,316.62,50.386 +461497,314.83,44.66 +461498,314.92,46.668 +461499,315.06,48.595 +461500,315.25,50.452 +461501,313.64,44.642 +461502,313.67,46.679 +461503,313.75,48.635 +461504,313.89,50.516 +461505,312.46,44.625 +461506,312.42,46.691 +461507,312.45,48.673 +461508,312.53,50.579 +461509,311.27,44.61 +461510,311.17,46.704 +461511,311.14,48.711 +461512,311.17,50.64 +461513,310.09,44.597 +461514,309.92,46.717 +461515,309.83,48.749 +461516,309.81,50.7 +461517,308.9,44.585 +461518,308.67,46.731 +461519,308.52,48.786 +461520,308.44,50.759 +461521,307.72,44.575 +461522,307.42,46.746 +461523,307.21,48.822 +461524,307.08,50.815 +461525,306.53,44.567 +461526,306.17,46.761 +461527,305.9,48.858 +461528,305.72,50.871 +461529,305.35,44.56 +461530,304.92,46.776 +461531,304.6,48.894 +461532,304.36,50.924 +461533,304.16,44.556 +461534,303.67,46.793 +461535,303.29,48.929 +461536,303,50.976 +461537,302.98,44.553 +461538,302.42,46.809 +461539,301.98,48.963 +461540,301.64,51.027 +461541,301.79,44.552 +461542,301.17,46.827 +461543,300.67,48.997 +461544,300.28,51.076 +461545,300.61,44.553 +461546,299.92,46.845 +461547,299.36,49.031 +461548,298.92,51.123 +461549,299.42,44.556 +461550,298.67,46.864 +461551,298.05,49.063 +461552,297.55,51.168 +461553,298.23,44.56 +461554,297.41,46.883 +461555,296.75,49.096 +461556,296.19,51.212 +461557,297.05,44.567 +461558,296.16,46.903 +461559,295.44,49.128 +461560,294.84,51.255 +461561,295.86,44.575 +461562,294.91,46.924 +461563,294.13,49.159 +461564,293.48,51.295 +461565,294.67,44.585 +461566,293.66,46.945 +461567,292.82,49.189 +461568,292.12,51.334 +461569,293.48,44.598 +461570,292.41,46.967 +461571,291.51,49.22 +461572,290.76,51.372 +461573,292.29,44.612 +461574,291.15,46.989 +461575,290.2,49.249 +461576,289.4,51.407 +461577,291.1,44.628 +461578,289.9,47.012 +461579,288.9,49.278 +461580,288.04,51.441 +461581,289.9,44.646 +461582,288.65,47.036 +461583,287.59,49.307 +461584,286.69,51.474 +461585,288.71,44.666 +461586,287.39,47.06 +461587,286.28,49.335 +461588,285.33,51.505 +461589,287.52,44.687 +461590,286.14,47.085 +461591,284.97,49.362 +461592,283.98,51.534 +461593,286.32,44.711 +461594,284.88,47.111 +461595,283.67,49.389 +461596,282.62,51.561 +461597,285.12,44.737 +461598,283.63,47.137 +461599,282.36,49.415 +461600,281.27,51.587 +461601,283.93,44.765 +461602,282.37,47.164 +461603,281.05,49.441 +461604,279.91,51.611 +461605,282.73,44.794 +461606,281.12,47.192 +461607,279.75,49.466 +461608,278.56,51.634 +461609,281.52,44.826 +461610,279.86,47.22 +461611,278.44,49.491 +461612,277.21,51.655 +461613,280.32,44.859 +461614,278.61,47.249 +461615,277.14,49.515 +461616,275.86,51.674 +461617,279.12,44.894 +461618,277.35,47.278 +461619,275.83,49.538 +461620,274.51,51.692 +461621,277.91,44.932 +461622,276.09,47.308 +461623,274.53,49.561 +461624,273.16,51.708 +461625,276.71,44.971 +461626,274.83,47.339 +461627,273.22,49.584 +461628,271.81,51.722 +461629,275.5,45.012 +461630,273.57,47.37 +461631,271.92,49.606 +461632,270.46,51.735 +461633,274.29,45.055 +461634,272.31,47.402 +461635,270.61,49.627 +461636,269.12,51.746 +461637,273.08,45.099 +461638,271.05,47.435 +461639,269.31,49.648 +461640,267.77,51.756 +461641,271.86,45.146 +461642,269.79,47.468 +461643,268,49.668 +461644,266.43,51.764 +461645,270.65,45.194 +461646,268.53,47.502 +461647,266.7,49.688 +461648,265.08,51.771 +461649,269.43,45.245 +461650,267.27,47.536 +461651,265.4,49.707 +461652,263.74,51.776 +461653,268.21,45.297 +461654,266.01,47.571 +461655,264.09,49.726 +461656,262.4,51.779 +461657,266.99,45.351 +461658,264.75,47.607 +461659,262.79,49.744 +461660,261.06,51.781 +461661,265.77,45.406 +461662,263.48,47.643 +461663,261.49,49.762 +461664,259.72,51.781 +461665,264.54,45.464 +461666,262.22,47.679 +461667,260.19,49.779 +461668,258.38,51.78 +461669,263.31,45.523 +461670,260.95,47.717 +461671,258.89,49.796 +461672,257.05,51.778 +461673,262.08,45.583 +461674,259.69,47.754 +461675,257.59,49.812 +461676,255.71,51.774 +461677,260.85,45.646 +461678,258.42,47.793 +461679,256.29,49.828 +461680,254.38,51.768 +461681,259.62,45.71 +461682,257.15,47.832 +461683,254.99,49.843 +461684,253.05,51.761 +461685,258.38,45.776 +461686,255.89,47.871 +461687,253.69,49.858 +461688,251.72,51.753 +461689,257.15,45.843 +461690,254.62,47.911 +461691,252.39,49.872 +461692,250.39,51.743 +461693,255.91,45.912 +461694,253.35,47.951 +461695,251.09,49.886 +461696,249.06,51.732 +461697,254.66,45.983 +461698,252.08,47.992 +461699,249.79,49.9 +461700,247.73,51.719 +461701,253.42,46.055 +461702,250.81,48.034 +461703,248.49,49.913 +461704,246.41,51.705 +461705,252.17,46.128 +461706,249.54,48.076 +461707,247.2,49.925 +461708,245.08,51.69 +461709,250.92,46.203 +461710,248.27,48.118 +461711,245.9,49.938 +461712,243.76,51.674 +461713,249.67,46.279 +461714,246.99,48.161 +461715,244.6,49.949 +461716,242.44,51.656 +461717,248.42,46.357 +461718,245.72,48.205 +461719,243.31,49.961 +461720,241.12,51.637 +461721,247.16,46.436 +461722,244.45,48.249 +461723,242.01,49.971 +461724,239.8,51.617 +461725,245.91,46.517 +461726,243.17,48.293 +461727,240.72,49.982 +461728,238.49,51.595 +461729,244.64,46.599 +461730,241.9,48.338 +461731,239.43,49.992 +461732,237.17,51.573 +461733,243.38,46.682 +461734,240.62,48.383 +461735,238.13,50.002 +461736,235.86,51.549 +461737,242.12,46.766 +461738,239.34,48.429 +461739,236.84,50.011 +461740,234.55,51.524 +461741,240.85,46.852 +461742,238.07,48.475 +461743,235.55,50.02 +461744,233.24,51.498 +461745,239.58,46.938 +461746,236.79,48.521 +461747,234.25,50.029 +461748,231.93,51.471 +461749,238.31,47.026 +461750,235.51,48.568 +461751,232.96,50.037 +461752,230.62,51.443 +461753,237.03,47.115 +461754,234.23,48.615 +461755,231.67,50.045 +461756,229.32,51.414 +461757,235.76,47.205 +461758,232.95,48.663 +461759,230.38,50.053 +461760,228.02,51.383 +461761,234.48,47.296 +461762,231.67,48.711 +461763,229.09,50.06 +461764,226.72,51.352 +461765,233.2,47.387 +461766,230.38,48.759 +461767,227.8,50.067 +461768,225.42,51.32 +461769,231.91,47.48 +461770,229.1,48.808 +461771,226.52,50.074 +461772,224.12,51.287 +461773,230.63,47.574 +461774,227.82,48.857 +461775,225.23,50.081 +461776,222.82,51.253 +461777,229.34,47.668 +461778,226.53,48.906 +461779,223.94,50.087 +461780,221.53,51.218 +461781,228.05,47.764 +461782,225.25,48.955 +461783,222.65,50.093 +461784,220.24,51.183 +461785,226.76,47.86 +461786,223.96,49.005 +461787,221.37,50.099 +461788,218.95,51.146 +461789,225.46,47.957 +461790,222.67,49.055 +461791,220.08,50.104 +461792,217.66,51.109 +461793,224.16,48.054 +461794,221.38,49.105 +461795,218.8,50.109 +461796,216.37,51.071 +461797,222.86,48.153 +461798,220.1,49.156 +461799,217.51,50.114 +461800,215.09,51.033 +461801,221.56,48.251 +461802,218.81,49.207 +461803,216.23,50.119 +461804,213.8,50.993 +461805,220.26,48.351 +461806,217.52,49.258 +461807,214.95,50.124 +461808,212.52,50.954 +461809,218.95,48.451 +461810,216.23,49.309 +461811,213.66,50.128 +461812,211.24,50.913 +461813,217.65,48.551 +461814,214.93,49.36 +461815,212.38,50.133 +461816,209.96,50.872 +461817,216.34,48.652 +461818,213.64,49.412 +461819,211.1,50.137 +461820,208.69,50.83 +461821,215.02,48.753 +461822,212.35,49.464 +461823,209.82,50.141 +461824,207.41,50.788 +461825,213.71,48.855 +461826,211.05,49.516 +461827,208.54,50.145 +461828,206.14,50.746 +461829,212.39,48.957 +461830,209.76,49.568 +461831,207.26,50.149 +461832,204.87,50.703 +461833,211.08,49.059 +461834,208.46,49.62 +461835,205.98,50.152 +461836,203.6,50.66 +461837,209.76,49.161 +461838,207.17,49.672 +461839,204.7,50.156 +461840,202.34,50.616 +461841,208.43,49.264 +461842,205.87,49.724 +461843,203.42,50.159 +461844,201.07,50.572 +461845,207.11,49.367 +461846,204.57,49.777 +461847,202.15,50.163 +461848,199.81,50.527 +461849,205.78,49.469 +461850,203.28,49.829 +461851,200.87,50.166 +461852,198.55,50.483 +461853,204.46,49.572 +461854,201.98,49.882 +461855,199.59,50.169 +461856,197.29,50.438 +461857,203.13,49.675 +461858,200.68,49.934 +461859,198.32,50.173 +461860,196.03,50.393 +461861,201.8,49.778 +461862,199.38,49.987 +461863,197.04,50.176 +461864,194.78,50.348 +461865,200.46,49.881 +461866,198.08,50.04 +461867,195.77,50.179 +461868,193.53,50.303 +461869,199.13,49.984 +461870,196.77,50.092 +461871,194.49,50.183 +461872,192.27,50.258 +461873,197.79,50.087 +461874,195.47,50.145 +461875,193.22,50.186 +461876,191.02,50.212 +461877,196.45,50.19 +461878,194.17,50.198 +461879,191.95,50.189 +461880,189.78,50.167 +461881,195.11,50.292 +461882,192.86,50.25 +461883,190.67,50.193 +461884,188.53,50.122 +461885,193.77,50.394 +461886,191.56,50.303 +461887,189.4,50.196 +461888,187.29,50.077 +461889,192.43,50.496 +461890,190.26,50.355 +461891,188.13,50.2 +461892,186.04,50.032 +461893,191.08,50.597 +461894,188.95,50.408 +461895,186.86,50.203 +461896,184.8,49.987 +461897,189.74,50.699 +461898,187.64,50.46 +461899,185.59,50.207 +461900,183.56,49.942 +461901,188.39,50.799 +461902,186.34,50.512 +461903,184.32,50.211 +461904,182.33,49.898 +461905,187.04,50.9 +461906,185.03,50.564 +461907,183.05,50.215 +461908,181.09,49.854 +461909,185.69,51 +461910,183.72,50.616 +461911,181.78,50.219 +461912,179.86,49.81 +461913,184.34,51.099 +461914,182.41,50.668 +461915,180.51,50.223 +461916,178.62,49.766 +461917,182.99,51.198 +461918,181.1,50.72 +461919,179.24,50.228 +461920,177.39,49.723 +461921,181.63,51.296 +461922,179.8,50.771 +461923,177.97,50.232 +461924,176.16,49.68 +461925,180.28,51.394 +461926,178.49,50.823 +461927,176.71,50.237 +461928,174.94,49.638 +461929,178.92,51.491 +461930,177.17,50.874 +461931,175.44,50.242 +461932,173.71,49.596 +461933,177.56,51.587 +461934,175.86,50.925 +461935,174.17,50.247 +461936,172.49,49.555 +461937,176.2,51.683 +461938,174.55,50.976 +461939,172.91,50.252 +461940,171.26,49.514 +461941,174.84,51.778 +461942,173.24,51.026 +461943,171.64,50.258 +461944,170.04,49.474 +461945,173.48,51.872 +461946,171.93,51.076 +461947,170.37,50.264 +461948,168.82,49.435 +461949,172.12,51.965 +461950,170.61,51.126 +461951,169.11,50.27 +461952,167.6,49.396 +461953,170.76,52.058 +461954,169.3,51.176 +461955,167.84,50.276 +461956,166.39,49.358 +461957,169.39,52.149 +461958,167.99,51.226 +461959,166.58,50.283 +461960,165.17,49.321 +461961,168.03,52.24 +461962,166.67,51.275 +461963,165.32,50.29 +461964,163.96,49.284 +461965,166.66,52.33 +461966,165.36,51.324 +461967,164.05,50.297 +461968,162.74,49.249 +461969,165.3,52.419 +461970,164.04,51.373 +461971,162.79,50.304 +461972,161.53,49.214 +461973,163.93,52.507 +461974,162.73,51.421 +461975,161.52,50.312 +461976,160.32,49.18 +461977,162.56,52.594 +461978,161.41,51.469 +461979,160.26,50.32 +461980,159.11,49.147 +461981,161.19,52.68 +461982,160.1,51.517 +461983,159,50.329 +461984,157.9,49.115 +461985,159.82,52.764 +461986,158.78,51.565 +461987,157.74,50.337 +461988,156.69,49.084 +461989,158.45,52.848 +461990,157.46,51.612 +461991,156.47,50.347 +461992,155.49,49.054 +461993,157.08,52.931 +461994,156.15,51.658 +461995,155.21,50.356 +461996,154.28,49.025 +461997,155.71,53.012 +461998,154.83,51.705 +461999,153.95,50.366 +462000,153.08,48.997 +462001,154.34,53.093 +462002,153.51,51.751 +462003,152.69,50.376 +462004,151.87,48.97 +462005,152.97,53.172 +462006,152.19,51.796 +462007,151.43,50.387 +462008,150.67,48.944 +462009,151.6,53.25 +462010,150.88,51.841 +462011,150.17,50.398 +462012,149.47,48.919 +462013,150.22,53.326 +462014,149.56,51.886 +462015,148.9,50.41 +462016,148.27,48.896 +462017,148.85,53.402 +462018,148.24,51.931 +462019,147.64,50.422 +462020,147.07,48.874 +462021,147.47,53.476 +462022,146.92,51.975 +462023,146.38,50.434 +462024,145.87,48.853 +462025,146.1,53.549 +462026,145.6,52.018 +462027,145.12,50.447 +462028,144.67,48.833 +462029,144.73,53.621 +462030,144.28,52.061 +462031,143.86,50.46 +462032,143.47,48.815 +462033,143.35,53.691 +462034,142.96,52.104 +462035,142.6,50.474 +462036,142.27,48.798 +462037,141.98,53.76 +462038,141.64,52.146 +462039,141.34,50.488 +462040,141.07,48.783 +462041,140.6,53.828 +462042,140.32,52.188 +462043,140.08,50.503 +462044,139.87,48.768 +462045,139.23,53.894 +462046,139,52.23 +462047,138.82,50.518 +462048,138.68,48.755 +462049,137.85,53.959 +462050,137.68,52.271 +462051,137.56,50.533 +462052,137.48,48.744 +462053,136.48,54.022 +462054,136.36,52.311 +462055,136.3,50.549 +462056,136.28,48.734 +462057,135.1,54.084 +462058,135.04,52.351 +462059,135.04,50.566 +462060,135.09,48.726 +462061,133.73,54.145 +462062,133.72,52.391 +462063,133.77,50.583 +462064,133.89,48.719 +462065,132.35,54.204 +462066,132.4,52.43 +462067,132.51,50.601 +462068,132.69,48.713 +462069,130.98,54.262 +462070,131.08,52.468 +462071,131.25,50.619 +462072,131.5,48.709 +462073,129.6,54.318 +462074,129.76,52.506 +462075,129.99,50.637 +462076,130.3,48.707 +462077,128.23,54.373 +462078,128.44,52.544 +462079,128.73,50.656 +462080,129.11,48.706 +462081,126.85,54.426 +462082,127.12,52.581 +462083,127.47,50.676 +462084,127.91,48.706 +462085,125.48,54.478 +462086,125.8,52.617 +462087,126.21,50.696 +462088,126.71,48.709 +462089,124.1,54.528 +462090,124.48,52.654 +462091,124.95,50.717 +462092,125.51,48.713 +462093,122.73,54.577 +462094,123.16,52.689 +462095,123.68,50.738 +462096,124.32,48.718 +462097,121.36,54.624 +462098,121.84,52.724 +462099,122.42,50.76 +462100,123.12,48.725 +462101,119.98,54.67 +462102,120.52,52.759 +462103,121.16,50.782 +462104,121.92,48.734 +462105,118.61,54.714 +462106,119.2,52.793 +462107,119.9,50.805 +462108,120.72,48.745 +462109,117.24,54.757 +462110,117.88,52.826 +462111,118.63,50.828 +462112,119.52,48.757 +462113,115.87,54.798 +462114,116.56,52.859 +462115,117.37,50.852 +462116,118.32,48.77 +462117,114.5,54.838 +462118,115.24,52.892 +462119,116.11,50.877 +462120,117.12,48.786 +462121,113.13,54.876 +462122,113.92,52.924 +462123,114.84,50.902 +462124,115.92,48.803 +462125,111.76,54.913 +462126,112.6,52.955 +462127,113.58,50.927 +462128,114.72,48.822 +462129,110.39,54.948 +462130,111.29,52.986 +462131,112.32,50.953 +462132,113.51,48.842 +462133,109.02,54.981 +462134,109.97,53.016 +462135,111.05,50.98 +462136,112.31,48.864 +462137,107.65,55.013 +462138,108.65,53.046 +462139,109.79,51.007 +462140,111.1,48.888 +462141,106.28,55.044 +462142,107.33,53.075 +462143,108.52,51.035 +462144,109.89,48.914 +462145,104.92,55.072 +462146,106.01,53.104 +462147,107.26,51.063 +462148,108.69,48.941 +462149,103.55,55.1 +462150,104.69,53.133 +462151,105.99,51.092 +462152,107.48,48.97 +462153,102.19,55.126 +462154,103.38,53.16 +462155,104.72,51.122 +462156,106.27,49.001 +462157,100.82,55.15 +462158,102.06,53.188 +462159,103.46,51.152 +462160,105.06,49.033 +462161,99.459,55.173 +462162,100.74,53.214 +462163,102.19,51.182 +462164,103.84,49.067 +462165,98.097,55.194 +462166,99.424,53.24 +462167,100.92,51.213 +462168,102.63,49.103 +462169,96.735,55.213 +462170,98.107,53.266 +462171,99.653,51.245 +462172,101.41,49.14 +462173,95.375,55.232 +462174,96.791,53.291 +462175,98.384,51.277 +462176,100.2,49.179 +462177,94.016,55.248 +462178,95.475,53.316 +462179,97.114,51.31 +462180,98.979,49.22 +462181,92.657,55.264 +462182,94.159,53.34 +462183,95.844,51.343 +462184,97.759,49.263 +462185,91.3,55.277 +462186,92.844,53.364 +462187,94.574,51.377 +462188,96.538,49.307 +462189,89.944,55.29 +462190,91.529,53.387 +462191,93.303,51.411 +462192,95.314,49.352 +462193,88.589,55.3 +462194,90.214,53.41 +462195,92.032,51.446 +462196,94.089,49.4 +462197,87.235,55.31 +462198,88.9,53.432 +462199,90.76,51.481 +462200,92.863,49.448 +462201,85.882,55.318 +462202,87.586,53.453 +462203,89.487,51.517 +462204,91.634,49.499 +462205,84.531,55.324 +462206,86.272,53.475 +462207,88.214,51.553 +462208,90.404,49.551 +462209,83.18,55.329 +462210,84.959,53.495 +462211,86.94,51.59 +462212,89.172,49.605 +462213,81.831,55.333 +462214,83.647,53.515 +462215,85.665,51.628 +462216,87.938,49.66 +462217,80.483,55.335 +462218,82.335,53.535 +462219,84.39,51.665 +462220,86.702,49.716 +462221,79.137,55.336 +462222,81.023,53.554 +462223,83.115,51.704 +462224,85.464,49.775 +462225,77.792,55.335 +462226,79.711,53.573 +462227,81.838,51.743 +462228,84.224,49.834 +462229,76.448,55.334 +462230,78.4,53.592 +462231,80.562,51.782 +462232,82.983,49.896 +462233,75.105,55.331 +462234,77.09,53.609 +462235,79.284,51.822 +462236,81.739,49.958 +462237,73.764,55.326 +462238,75.78,53.627 +462239,78.006,51.862 +462240,80.493,50.022 +462241,72.425,55.32 +462242,74.471,53.644 +462243,76.727,51.903 +462244,79.245,50.088 +462245,71.087,55.313 +462246,73.162,53.66 +462247,75.447,51.944 +462248,77.995,50.154 +462249,69.75,55.305 +462250,71.853,53.677 +462251,74.167,51.985 +462252,76.743,50.223 +462253,68.415,55.296 +462254,70.545,53.692 +462255,72.886,52.027 +462256,75.488,50.292 +462257,67.081,55.285 +462258,69.238,53.708 +462259,71.604,52.07 +462260,74.232,50.363 +462261,65.749,55.273 +462262,67.931,53.723 +462263,70.322,52.113 +462264,72.973,50.435 +462265,64.418,55.26 +462266,66.624,53.737 +462267,69.039,52.156 +462268,71.712,50.508 +462269,63.089,55.246 +462270,65.318,53.751 +462271,67.755,52.2 +462272,70.449,50.583 +462273,61.762,55.23 +462274,64.013,53.765 +462275,66.47,52.244 +462276,69.183,50.659 +462277,60.436,55.214 +462278,62.708,53.778 +462279,65.185,52.288 +462280,67.916,50.736 +462281,59.111,55.196 +462282,61.403,53.791 +462283,63.899,52.333 +462284,66.646,50.814 +462285,57.789,55.178 +462286,60.1,53.804 +462287,62.613,52.378 +462288,65.374,50.893 +462289,56.468,55.158 +462290,58.796,53.816 +462291,61.325,52.424 +462292,64.1,50.973 +462293,55.149,55.137 +462294,57.494,53.828 +462295,60.037,52.469 +462296,62.823,51.054 +462297,53.831,55.116 +462298,56.191,53.84 +462299,58.748,52.516 +462300,61.544,51.137 +462301,52.515,55.093 +462302,54.89,53.851 +462303,57.458,52.562 +462304,60.263,51.22 +462305,51.201,55.07 +462306,53.589,53.862 +462307,56.168,52.609 +462308,58.979,51.304 +462309,49.889,55.045 +462310,52.288,53.873 +462311,54.877,52.656 +462312,57.694,51.39 +462313,48.578,55.02 +462314,50.989,53.883 +462315,53.585,52.704 +462316,56.406,51.476 +462317,47.269,54.994 +462318,49.689,53.893 +462319,52.292,52.751 +462320,55.115,51.562 +462321,45.962,54.967 +462322,48.391,53.903 +462323,50.999,52.799 +462324,53.823,51.65 +462325,44.656,54.939 +462326,47.093,53.913 +462327,49.704,52.848 +462328,52.528,51.739 +462329,43.353,54.91 +462330,45.795,53.922 +462331,48.41,52.896 +462332,51.231,51.828 +462333,42.051,54.881 +462334,44.498,53.931 +462335,47.114,52.945 +462336,49.932,51.918 +462337,40.751,54.851 +462338,43.202,53.94 +462339,45.817,52.994 +462340,48.631,52.008 +462341,39.453,54.82 +462342,41.906,53.949 +462343,44.52,53.043 +462344,47.327,52.1 +462345,38.157,54.789 +462346,40.611,53.957 +462347,43.222,53.093 +462348,46.021,52.192 +462349,36.862,54.757 +462350,39.316,53.965 +462351,41.924,53.142 +462352,44.713,52.284 +462353,35.57,54.725 +462354,38.022,53.973 +462355,40.624,53.192 +462356,43.403,52.377 +462357,34.279,54.692 +462358,36.729,53.981 +462359,39.324,53.242 +462360,42.091,52.47 +462361,32.99,54.658 +462362,35.436,53.989 +462363,38.023,53.292 +462364,40.777,52.564 +462365,31.703,54.624 +462366,34.144,53.996 +462367,36.722,53.342 +462368,39.46,52.659 +462369,30.417,54.589 +462370,32.852,54.004 +462371,35.419,53.393 +462372,38.142,52.753 +462373,29.134,54.554 +462374,31.561,54.011 +462375,34.116,53.443 +462376,36.821,52.848 +462377,27.852,54.519 +462378,30.271,54.018 +462379,32.812,53.494 +462380,35.498,52.944 +462381,26.573,54.483 +462382,28.981,54.025 +462383,31.508,53.545 +462384,34.174,53.039 +462385,25.295,54.447 +462386,27.692,54.032 +462387,30.203,53.596 +462388,32.847,53.135 +462389,24.019,54.411 +462390,26.403,54.039 +462391,28.897,53.646 +462392,31.518,53.231 +462393,22.744,54.374 +462394,25.115,54.045 +462395,27.59,53.697 +462396,30.188,53.327 +462397,21.472,54.337 +462398,23.827,54.052 +462399,26.283,53.748 +462400,28.855,53.424 +462401,20.202,54.3 +462402,22.54,54.059 +462403,24.975,53.8 +462404,27.521,53.52 +462405,18.933,54.263 +462406,21.254,54.065 +462407,23.666,53.851 +462408,26.184,53.617 +462409,17.666,54.226 +462410,19.968,54.072 +462411,22.357,53.902 +462412,24.846,53.713 +462413,16.401,54.188 +462414,18.682,54.078 +462415,21.047,53.953 +462416,23.506,53.81 +462417,15.138,54.151 +462418,17.398,54.085 +462419,19.736,54.004 +462420,22.165,53.906 +462421,13.876,54.113 +462422,16.113,54.091 +462423,18.425,54.055 +462424,20.821,54.002 +462425,12.616,54.076 +462426,14.83,54.098 +462427,17.113,54.106 +462428,19.476,54.098 +462429,11.358,54.038 +462430,13.546,54.104 +462431,15.801,54.157 +462432,18.13,54.194 +462433,10.102,54.001 +462434,12.264,54.111 +462435,14.487,54.208 +462436,16.781,54.29 +462437,8.8476,53.964 +462438,10.982,54.118 +462439,13.174,54.259 +462440,15.431,54.386 +462441,7.5948,53.927 +462442,9.6999,54.124 +462443,11.859,54.31 +462444,14.079,54.481 +462445,6.3437,53.89 +462446,8.4188,54.131 +462447,10.544,54.36 +462448,12.726,54.576 +462449,5.0943,53.853 +462450,7.1382,54.138 +462451,9.2287,54.411 +462452,11.372,54.671 +462453,3.8466,53.816 +462454,5.858,54.145 +462455,7.9126,54.462 +462456,10.016,54.765 +462457,2.6006,53.78 +462458,4.5783,54.152 +462459,6.5959,54.512 +462460,8.6579,54.859 +462461,1.3561,53.744 +462462,3.2991,54.159 +462463,5.2786,54.562 +462464,7.299,54.952 +462465,0.11329,53.709 +462466,2.0203,54.166 +462467,3.9608,54.612 +462468,5.9386,55.045 +462469,358.87,53.674 +462470,0.74204,54.174 +462471,2.6425,54.662 +462472,4.577,55.137 +462473,357.63,53.639 +462474,359.46,54.181 +462475,1.3236,54.712 +462476,3.214,55.229 +462477,356.39,53.605 +462478,358.19,54.189 +462479,0.0042618,54.762 +462480,1.8498,55.321 +462481,355.16,53.571 +462482,356.91,54.197 +462483,358.68,54.811 +462484,0.48433,55.411 +462485,353.92,53.538 +462486,355.63,54.205 +462487,357.36,54.86 +462488,359.12,55.501 +462489,352.69,53.505 +462490,354.36,54.213 +462491,356.04,54.909 +462492,357.75,55.591 +462493,351.46,53.473 +462494,353.08,54.222 +462495,354.72,54.958 +462496,356.38,55.679 +462497,350.23,53.441 +462498,351.81,54.23 +462499,353.4,55.006 +462500,355.01,55.767 +462501,349,53.41 +462502,350.53,54.239 +462503,352.08,55.055 +462504,353.64,55.855 +462505,347.77,53.38 +462506,349.26,54.248 +462507,350.76,55.103 +462508,352.27,55.941 +462509,346.54,53.35 +462510,347.98,54.258 +462511,349.43,55.15 +462512,350.9,56.027 +462513,345.32,53.322 +462514,346.71,54.267 +462515,348.11,55.198 +462516,349.52,56.111 +462517,344.09,53.294 +462518,345.43,54.277 +462519,346.79,55.245 +462520,348.15,56.195 +462521,342.87,53.266 +462522,344.16,54.287 +462523,345.46,55.292 +462524,346.77,56.278 +462525,341.65,53.24 +462526,342.89,54.298 +462527,344.14,55.339 +462528,345.39,56.36 +462529,340.42,53.215 +462530,341.61,54.309 +462531,342.81,55.385 +462532,344.02,56.442 +462533,339.2,53.19 +462534,340.34,54.32 +462535,341.49,55.431 +462536,342.64,56.522 +462537,337.99,53.166 +462538,339.07,54.331 +462539,340.16,55.476 +462540,341.26,56.601 +462541,336.77,53.143 +462542,337.8,54.343 +462543,338.84,55.522 +462544,339.88,56.679 +462545,335.55,53.122 +462546,336.53,54.355 +462547,337.51,55.567 +462548,338.5,56.756 +462549,334.34,53.101 +462550,335.25,54.367 +462551,336.18,55.611 +462552,337.12,56.832 +462553,333.12,53.081 +462554,333.98,54.38 +462555,334.86,55.656 +462556,335.74,56.907 +462557,331.91,53.062 +462558,332.71,54.393 +462559,333.53,55.699 +462560,334.36,56.981 +462561,330.69,53.045 +462562,331.44,54.406 +462563,332.2,55.743 +462564,332.98,57.054 +462565,329.48,53.028 +462566,330.17,54.42 +462567,330.87,55.786 +462568,331.6,57.126 +462569,328.27,53.013 +462570,328.9,54.434 +462571,329.55,55.829 +462572,330.21,57.196 +462573,327.06,52.999 +462574,327.63,54.449 +462575,328.22,55.871 +462576,328.83,57.265 +462577,325.85,52.985 +462578,326.36,54.464 +462579,326.89,55.913 +462580,327.45,57.333 +462581,324.63,52.974 +462582,325.09,54.479 +462583,325.56,55.955 +462584,326.06,57.4 +462585,323.42,52.963 +462586,323.82,54.495 +462587,324.24,55.996 +462588,324.68,57.466 +462589,322.22,52.953 +462590,322.55,54.511 +462591,322.91,56.036 +462592,323.29,57.53 +462593,321.01,52.945 +462594,321.28,54.527 +462595,321.58,56.077 +462596,321.91,57.593 +462597,319.8,52.938 +462598,320.01,54.544 +462599,320.25,56.116 +462600,320.53,57.655 +462601,318.59,52.933 +462602,318.74,54.562 +462603,318.92,56.156 +462604,319.14,57.715 +462605,317.38,52.928 +462606,317.47,54.58 +462607,317.59,56.195 +462608,317.76,57.775 +462609,316.17,52.925 +462610,316.2,54.598 +462611,316.26,56.233 +462612,316.37,57.832 +462613,314.97,52.924 +462614,314.92,54.617 +462615,314.93,56.271 +462616,314.99,57.889 +462617,313.76,52.924 +462618,313.65,54.636 +462619,313.61,56.309 +462620,313.6,57.944 +462621,312.55,52.925 +462622,312.38,54.655 +462623,312.28,56.346 +462624,312.22,57.998 +462625,311.34,52.927 +462626,311.11,54.675 +462627,310.95,56.383 +462628,310.84,58.05 +462629,310.13,52.931 +462630,309.84,54.696 +462631,309.62,56.419 +462632,309.45,58.101 +462633,308.93,52.937 +462634,308.57,54.717 +462635,308.29,56.454 +462636,308.07,58.151 +462637,307.72,52.943 +462638,307.3,54.738 +462639,306.96,56.49 +462640,306.69,58.199 +462641,306.51,52.952 +462642,306.03,54.76 +462643,305.63,56.524 +462644,305.3,58.246 +462645,305.3,52.961 +462646,304.76,54.783 +462647,304.3,56.559 +462648,303.92,58.292 +462649,304.09,52.972 +462650,303.49,54.805 +462651,302.97,56.592 +462652,302.54,58.336 +462653,302.88,52.985 +462654,302.22,54.829 +462655,301.65,56.626 +462656,301.15,58.378 +462657,301.67,52.999 +462658,300.95,54.853 +462659,300.32,56.659 +462660,299.77,58.42 +462661,300.46,53.015 +462662,299.67,54.877 +462663,298.99,56.691 +462664,298.39,58.459 +462665,299.25,53.032 +462666,298.4,54.902 +462667,297.66,56.723 +462668,297.01,58.498 +462669,298.04,53.05 +462670,297.13,54.927 +462671,296.33,56.754 +462672,295.63,58.535 +462673,296.83,53.07 +462674,295.86,54.953 +462675,295,56.785 +462676,294.25,58.57 +462677,295.62,53.092 +462678,294.58,54.979 +462679,293.68,56.815 +462680,292.87,58.604 +462681,294.4,53.115 +462682,293.31,55.006 +462683,292.35,56.845 +462684,291.49,58.637 +462685,293.19,53.14 +462686,292.04,55.033 +462687,291.02,56.874 +462688,290.12,58.668 +462689,291.97,53.166 +462690,290.76,55.061 +462691,289.69,56.903 +462692,288.74,58.697 +462693,290.75,53.194 +462694,289.49,55.089 +462695,288.37,56.932 +462696,287.36,58.726 +462697,289.54,53.223 +462698,288.22,55.117 +462699,287.04,56.96 +462700,285.99,58.752 +462701,288.32,53.253 +462702,286.94,55.147 +462703,285.71,56.987 +462704,284.61,58.778 +462705,287.1,53.285 +462706,285.67,55.176 +462707,284.39,57.014 +462708,283.24,58.802 +462709,285.88,53.319 +462710,284.39,55.206 +462711,283.06,57.04 +462712,281.87,58.824 +462713,284.66,53.354 +462714,283.11,55.237 +462715,281.74,57.066 +462716,280.49,58.846 +462717,283.43,53.391 +462718,281.84,55.268 +462719,280.41,57.092 +462720,279.12,58.865 +462721,282.21,53.429 +462722,280.56,55.3 +462723,279.09,57.116 +462724,277.75,58.884 +462725,280.98,53.469 +462726,279.28,55.332 +462727,277.76,57.141 +462728,276.38,58.9 +462729,279.76,53.51 +462730,278.01,55.364 +462731,276.44,57.165 +462732,275.02,58.916 +462733,278.53,53.552 +462734,276.73,55.397 +462735,275.11,57.188 +462736,273.65,58.93 +462737,277.3,53.596 +462738,275.45,55.431 +462739,273.79,57.211 +462740,272.28,58.943 +462741,276.07,53.642 +462742,274.17,55.465 +462743,272.46,57.234 +462744,270.92,58.954 +462745,274.83,53.688 +462746,272.89,55.499 +462747,271.14,57.256 +462748,269.55,58.964 +462749,273.6,53.737 +462750,271.61,55.534 +462751,269.82,57.278 +462752,268.19,58.973 +462753,272.36,53.786 +462754,270.33,55.569 +462755,268.5,57.299 +462756,266.83,58.98 +462757,271.12,53.837 +462758,269.05,55.605 +462759,267.17,57.32 +462760,265.47,58.986 +462761,269.88,53.89 +462762,267.77,55.641 +462763,265.85,57.34 +462764,264.11,58.991 +462765,268.64,53.944 +462766,266.48,55.678 +462767,264.53,57.36 +462768,262.75,58.994 +462769,267.4,53.999 +462770,265.2,55.715 +462771,263.21,57.379 +462772,261.4,58.997 +462773,266.16,54.055 +462774,263.92,55.752 +462775,261.89,57.398 +462776,260.04,58.997 +462777,264.91,54.113 +462778,262.63,55.79 +462779,260.57,57.416 +462780,258.69,58.997 +462781,263.66,54.172 +462782,261.35,55.828 +462783,259.25,57.435 +462784,257.33,58.996 +462785,262.41,54.233 +462786,260.06,55.867 +462787,257.93,57.452 +462788,255.98,58.993 +462789,261.16,54.294 +462790,258.78,55.906 +462791,256.61,57.469 +462792,254.63,58.989 +462793,259.9,54.357 +462794,257.49,55.946 +462795,255.3,57.486 +462796,253.28,58.983 +462797,258.65,54.421 +462798,256.2,55.985 +462799,253.98,57.503 +462800,251.94,58.977 +462801,257.39,54.486 +462802,254.91,56.026 +462803,252.66,57.519 +462804,250.59,58.97 +462805,256.13,54.553 +462806,253.63,56.066 +462807,251.35,57.534 +462808,249.25,58.961 +462809,254.87,54.62 +462810,252.34,56.107 +462811,250.03,57.55 +462812,247.91,58.951 +462813,253.6,54.689 +462814,251.05,56.149 +462815,248.71,57.564 +462816,246.56,58.94 +462817,252.33,54.759 +462818,249.76,56.19 +462819,247.4,57.579 +462820,245.23,58.928 +462821,251.07,54.829 +462822,248.47,56.233 +462823,246.09,57.593 +462824,243.89,58.915 +462825,249.79,54.901 +462826,247.17,56.275 +462827,244.77,57.607 +462828,242.55,58.901 +462829,248.52,54.974 +462830,245.88,56.318 +462831,243.46,57.62 +462832,241.22,58.886 +462833,247.25,55.048 +462834,244.59,56.361 +462835,242.15,57.634 +462836,239.88,58.87 +462837,245.97,55.123 +462838,243.29,56.404 +462839,240.83,57.646 +462840,238.55,58.853 +462841,244.69,55.199 +462842,242,56.448 +462843,239.52,57.659 +462844,237.22,58.836 +462845,243.41,55.275 +462846,240.7,56.492 +462847,238.21,57.671 +462848,235.9,58.817 +462849,242.13,55.353 +462850,239.41,56.536 +462851,236.9,57.683 +462852,234.57,58.797 +462853,240.84,55.431 +462854,238.11,56.58 +462855,235.59,57.694 +462856,233.24,58.777 +462857,239.55,55.511 +462858,236.81,56.625 +462859,234.28,57.706 +462860,231.92,58.755 +462861,238.26,55.591 +462862,235.52,56.67 +462863,232.97,57.717 +462864,230.6,58.733 +462865,236.97,55.671 +462866,234.22,56.716 +462867,231.66,57.727 +462868,229.28,58.71 +462869,235.68,55.753 +462870,232.92,56.761 +462871,230.36,57.738 +462872,227.96,58.686 +462873,234.38,55.835 +462874,231.62,56.807 +462875,229.05,57.748 +462876,226.65,58.662 +462877,233.08,55.918 +462878,230.32,56.853 +462879,227.74,57.758 +462880,225.33,58.637 +462881,231.78,56.001 +462882,229.01,56.899 +462883,226.44,57.768 +462884,224.02,58.611 +462885,230.48,56.086 +462886,227.71,56.945 +462887,225.13,57.777 +462888,222.71,58.584 +462889,229.17,56.17 +462890,226.41,56.992 +462891,223.83,57.787 +462892,221.4,58.557 +462893,227.86,56.256 +462894,225.1,57.039 +462895,222.52,57.796 +462896,220.09,58.53 +462897,226.55,56.341 +462898,223.8,57.086 +462899,221.22,57.805 +462900,218.79,58.501 +462901,225.24,56.427 +462902,222.49,57.133 +462903,219.92,57.813 +462904,217.49,58.473 +462905,223.93,56.514 +462906,221.19,57.18 +462907,218.62,57.822 +462908,216.18,58.443 +462909,222.61,56.601 +462910,219.88,57.227 +462911,217.31,57.83 +462912,214.88,58.414 +462913,221.29,56.689 +462914,218.57,57.275 +462915,216.01,57.838 +462916,213.59,58.383 +462917,219.97,56.776 +462918,217.27,57.322 +462919,214.71,57.847 +462920,212.29,58.353 +462921,218.65,56.864 +462922,215.96,57.37 +462923,213.41,57.855 +462924,211,58.322 +462925,217.33,56.953 +462926,214.65,57.417 +462927,212.11,57.862 +462928,209.7,58.29 +462929,216,57.041 +462930,213.34,57.465 +462931,210.81,57.87 +462932,208.41,58.259 +462933,214.67,57.13 +462934,212.03,57.513 +462935,209.52,57.878 +462936,207.12,58.227 +462937,213.34,57.219 +462938,210.71,57.561 +462939,208.22,57.885 +462940,205.84,58.194 +462941,212.01,57.308 +462942,209.4,57.609 +462943,206.92,57.893 +462944,204.55,58.162 +462945,210.68,57.398 +462946,208.09,57.657 +462947,205.63,57.9 +462948,203.27,58.129 +462949,209.34,57.487 +462950,206.78,57.705 +462951,204.33,57.908 +462952,201.99,58.097 +462953,208,57.576 +462954,205.46,57.753 +462955,203.03,57.915 +462956,200.71,58.064 +462957,206.66,57.666 +462958,204.15,57.801 +462959,201.74,57.922 +462960,199.43,58.031 +462961,205.32,57.755 +462962,202.83,57.849 +462963,200.45,57.929 +462964,198.15,57.997 +462965,203.98,57.844 +462966,201.52,57.897 +462967,199.15,57.937 +462968,196.88,57.964 +462969,202.63,57.933 +462970,200.2,57.946 +462971,197.86,57.944 +462972,195.6,57.931 +462973,201.29,58.022 +462974,198.88,57.993 +462975,196.57,57.951 +462976,194.33,57.898 +462977,199.94,58.111 +462978,197.56,58.041 +462979,195.28,57.958 +462980,193.06,57.865 +462981,198.59,58.2 +462982,196.24,58.089 +462983,193.98,57.966 +462984,191.8,57.832 +462985,197.24,58.289 +462986,194.92,58.137 +462987,192.69,57.973 +462988,190.53,57.799 +462989,195.88,58.377 +462990,193.6,58.185 +462991,191.4,57.981 +462992,189.27,57.766 +462993,194.53,58.465 +462994,192.28,58.232 +462995,190.11,57.988 +462996,188.01,57.734 +462997,193.17,58.552 +462998,190.96,58.28 +462999,188.82,57.995 +463000,186.74,57.702 +463001,191.81,58.64 +463002,189.64,58.327 +463003,187.54,58.003 +463004,185.49,57.669 +463005,190.45,58.727 +463006,188.32,58.374 +463007,186.25,58.011 +463008,184.23,57.638 +463009,189.09,58.813 +463010,187,58.422 +463011,184.96,58.019 +463012,182.97,57.606 +463013,187.73,58.899 +463014,185.67,58.469 +463015,183.67,58.026 +463016,181.72,57.575 +463017,186.36,58.985 +463018,184.35,58.515 +463019,182.39,58.035 +463020,180.47,57.544 +463021,185,59.07 +463022,183.02,58.562 +463023,181.1,58.043 +463024,179.21,57.514 +463025,183.63,59.154 +463026,181.7,58.608 +463027,179.81,58.051 +463028,177.96,57.484 +463029,182.26,59.238 +463030,180.37,58.655 +463031,178.53,58.059 +463032,176.72,57.455 +463033,180.89,59.321 +463034,179.05,58.701 +463035,177.24,58.068 +463036,175.47,57.426 +463037,179.52,59.404 +463038,177.72,58.747 +463039,175.96,58.077 +463040,174.23,57.397 +463041,178.15,59.486 +463042,176.4,58.792 +463043,174.67,58.086 +463044,172.98,57.369 +463045,176.78,59.568 +463046,175.07,58.838 +463047,173.39,58.095 +463048,171.74,57.342 +463049,175.4,59.648 +463050,173.74,58.883 +463051,172.11,58.105 +463052,170.5,57.315 +463053,174.03,59.728 +463054,172.41,58.928 +463055,170.82,58.114 +463056,169.26,57.289 +463057,172.65,59.808 +463058,171.08,58.972 +463059,169.54,58.124 +463060,168.02,57.264 +463061,171.27,59.886 +463062,169.76,59.017 +463063,168.26,58.134 +463064,166.78,57.239 +463065,169.9,59.964 +463066,168.43,59.061 +463067,166.98,58.144 +463068,165.55,57.215 +463069,168.52,60.04 +463070,167.1,59.105 +463071,165.7,58.155 +463072,164.31,57.192 +463073,167.14,60.116 +463074,165.77,59.148 +463075,164.41,58.166 +463076,163.08,57.17 +463077,165.76,60.191 +463078,164.44,59.192 +463079,163.13,58.177 +463080,161.85,57.148 +463081,164.37,60.266 +463082,163.11,59.235 +463083,161.85,58.188 +463084,160.62,57.127 +463085,162.99,60.339 +463086,161.77,59.277 +463087,160.57,58.2 +463088,159.39,57.107 +463089,161.61,60.411 +463090,160.44,59.32 +463091,159.29,58.212 +463092,158.16,57.088 +463093,160.22,60.482 +463094,159.11,59.362 +463095,158.01,58.224 +463096,156.93,57.07 +463097,158.84,60.553 +463098,157.78,59.403 +463099,156.73,58.236 +463100,155.7,57.053 +463101,157.46,60.622 +463102,156.45,59.445 +463103,155.45,58.249 +463104,154.48,57.037 +463105,156.07,60.69 +463106,155.11,59.486 +463107,154.17,58.262 +463108,153.25,57.022 +463109,154.68,60.758 +463110,153.78,59.526 +463111,152.9,58.276 +463112,152.03,57.007 +463113,153.3,60.824 +463114,152.45,59.566 +463115,151.62,58.29 +463116,150.8,56.994 +463117,151.91,60.889 +463118,151.12,59.606 +463119,150.34,58.304 +463120,149.58,56.982 +463121,150.52,60.953 +463122,149.78,59.646 +463123,149.06,58.318 +463124,148.36,56.971 +463125,149.13,61.016 +463126,148.45,59.685 +463127,147.78,58.333 +463128,147.14,56.961 +463129,147.74,61.077 +463130,147.11,59.724 +463131,146.5,58.348 +463132,145.92,56.952 +463133,146.36,61.138 +463134,145.78,59.762 +463135,145.23,58.364 +463136,144.7,56.944 +463137,144.97,61.197 +463138,144.45,59.8 +463139,143.95,58.38 +463140,143.48,56.937 +463141,143.58,61.255 +463142,143.11,59.837 +463143,142.67,58.396 +463144,142.26,56.932 +463145,142.19,61.312 +463146,141.78,59.875 +463147,141.39,58.413 +463148,141.04,56.928 +463149,140.8,61.368 +463150,140.44,59.911 +463151,140.12,58.43 +463152,139.82,56.925 +463153,139.41,61.423 +463154,139.11,59.948 +463155,138.84,58.447 +463156,138.6,56.923 +463157,138.02,61.476 +463158,137.77,59.983 +463159,137.56,58.465 +463160,137.38,56.922 +463161,136.63,61.528 +463162,136.44,60.019 +463163,136.28,58.484 +463164,136.17,56.923 +463165,135.24,61.579 +463166,135.1,60.054 +463167,135.01,58.502 +463168,134.95,56.925 +463169,133.85,61.628 +463170,133.77,60.088 +463171,133.73,58.522 +463172,133.73,56.928 +463173,132.46,61.676 +463174,132.43,60.122 +463175,132.45,58.541 +463176,132.51,56.932 +463177,131.07,61.723 +463178,131.1,60.156 +463179,131.17,58.561 +463180,131.3,56.938 +463181,129.68,61.769 +463182,129.76,60.189 +463183,129.9,58.581 +463184,130.08,56.945 +463185,128.29,61.813 +463186,128.43,60.222 +463187,128.62,58.602 +463188,128.86,56.953 +463189,126.9,61.856 +463190,127.1,60.254 +463191,127.34,58.623 +463192,127.64,56.963 +463193,125.51,61.898 +463194,125.76,60.286 +463195,126.06,58.645 +463196,126.43,56.974 +463197,124.12,61.938 +463198,124.43,60.318 +463199,124.79,58.667 +463200,125.21,56.986 +463201,122.74,61.977 +463202,123.09,60.349 +463203,123.51,58.69 +463204,123.99,57 +463205,121.35,62.015 +463206,121.76,60.379 +463207,122.23,58.713 +463208,122.77,57.015 +463209,119.96,62.051 +463210,120.42,60.409 +463211,120.95,58.736 +463212,121.55,57.031 +463213,118.57,62.086 +463214,119.09,60.439 +463215,119.67,58.76 +463216,120.34,57.049 +463217,117.19,62.119 +463218,117.75,60.468 +463219,118.39,58.784 +463220,119.12,57.068 +463221,115.8,62.152 +463222,116.42,60.496 +463223,117.11,58.809 +463224,117.9,57.089 +463225,114.42,62.183 +463226,115.09,60.525 +463227,115.84,58.834 +463228,116.68,57.111 +463229,113.03,62.212 +463230,113.75,60.552 +463231,114.56,58.86 +463232,115.45,57.134 +463233,111.65,62.24 +463234,112.42,60.579 +463235,113.28,58.886 +463236,114.23,57.159 +463237,110.26,62.267 +463238,111.08,60.606 +463239,112,58.912 +463240,113.01,57.185 +463241,108.88,62.293 +463242,109.75,60.633 +463243,110.72,58.939 +463244,111.79,57.212 +463245,107.5,62.317 +463246,108.42,60.658 +463247,109.44,58.967 +463248,110.56,57.241 +463249,106.11,62.34 +463250,107.09,60.684 +463251,108.15,58.994 +463252,109.34,57.271 +463253,104.73,62.361 +463254,105.75,60.709 +463255,106.87,59.023 +463256,108.11,57.303 +463257,103.35,62.381 +463258,104.42,60.733 +463259,105.59,59.051 +463260,106.88,57.336 +463261,101.97,62.4 +463262,103.09,60.757 +463263,104.31,59.081 +463264,105.66,57.37 +463265,100.6,62.418 +463266,101.76,60.781 +463267,103.03,59.11 +463268,104.43,57.406 +463269,99.219,62.434 +463270,100.43,60.804 +463271,101.75,59.14 +463272,103.2,57.442 +463273,97.843,62.449 +463274,99.095,60.826 +463275,100.46,59.171 +463276,101.97,57.481 +463277,96.467,62.462 +463278,97.764,60.848 +463279,99.18,59.202 +463280,100.73,57.52 +463281,95.092,62.475 +463282,96.433,60.87 +463283,97.896,59.233 +463284,99.5,57.561 +463285,93.719,62.486 +463286,95.103,60.891 +463287,96.612,59.265 +463288,98.266,57.604 +463289,92.346,62.495 +463290,93.773,60.912 +463291,95.327,59.297 +463292,97.029,57.647 +463293,90.975,62.504 +463294,92.444,60.933 +463295,94.042,59.329 +463296,95.792,57.692 +463297,89.605,62.511 +463298,91.115,60.953 +463299,92.757,59.362 +463300,94.553,57.739 +463301,88.235,62.517 +463302,89.786,60.972 +463303,91.471,59.396 +463304,93.313,57.786 +463305,86.867,62.521 +463306,88.458,60.991 +463307,90.184,59.429 +463308,92.071,57.835 +463309,85.501,62.525 +463310,87.13,61.01 +463311,88.897,59.464 +463312,90.828,57.885 +463313,84.135,62.527 +463314,85.802,61.028 +463315,87.61,59.498 +463316,89.583,57.936 +463317,82.77,62.528 +463318,84.475,61.046 +463319,86.322,59.533 +463320,88.337,57.988 +463321,81.407,62.528 +463322,83.148,61.063 +463323,85.033,59.568 +463324,87.089,58.042 +463325,80.046,62.527 +463326,81.822,61.08 +463327,83.744,59.604 +463328,85.839,58.097 +463329,78.685,62.524 +463330,80.496,61.097 +463331,82.455,59.64 +463332,84.588,58.153 +463333,77.326,62.521 +463334,79.171,61.113 +463335,81.165,59.677 +463336,83.334,58.21 +463337,75.968,62.516 +463338,77.846,61.129 +463339,79.874,59.714 +463340,82.08,58.268 +463341,74.612,62.51 +463342,76.522,61.145 +463343,78.583,59.751 +463344,80.823,58.328 +463345,73.256,62.503 +463346,75.198,61.16 +463347,77.291,59.788 +463348,79.565,58.388 +463349,71.903,62.495 +463350,73.874,61.174 +463351,75.999,59.826 +463352,78.305,58.45 +463353,70.551,62.486 +463354,72.551,61.189 +463355,74.706,59.864 +463356,77.043,58.512 +463357,69.2,62.476 +463358,71.229,61.203 +463359,73.412,59.903 +463360,75.779,58.576 +463361,67.851,62.465 +463362,69.907,61.216 +463363,72.118,59.942 +463364,74.513,58.64 +463365,66.503,62.453 +463366,68.585,61.23 +463367,70.823,59.981 +463368,73.245,58.706 +463369,65.157,62.44 +463370,67.264,61.243 +463371,69.528,60.021 +463372,71.976,58.773 +463373,63.812,62.426 +463374,65.944,61.255 +463375,68.231,60.06 +463376,70.704,58.84 +463377,62.469,62.411 +463378,64.624,61.268 +463379,66.935,60.1 +463380,69.43,58.909 +463381,61.128,62.396 +463382,63.305,61.28 +463383,65.637,60.141 +463384,68.155,58.978 +463385,59.788,62.379 +463386,61.986,61.291 +463387,64.339,60.182 +463388,66.877,59.048 +463389,58.45,62.361 +463390,60.668,61.303 +463391,63.041,60.222 +463392,65.598,59.119 +463393,57.113,62.343 +463394,59.35,61.314 +463395,61.741,60.264 +463396,64.316,59.191 +463397,55.778,62.324 +463398,58.033,61.325 +463399,60.441,60.305 +463400,63.033,59.264 +463401,54.445,62.304 +463402,56.716,61.335 +463403,59.141,60.347 +463404,61.747,59.337 +463405,53.113,62.283 +463406,55.4,61.345 +463407,57.839,60.389 +463408,60.459,59.411 +463409,51.783,62.262 +463410,54.085,61.355 +463411,56.537,60.431 +463412,59.169,59.486 +463413,50.455,62.239 +463414,52.77,61.365 +463415,55.235,60.473 +463416,57.877,59.562 +463417,49.129,62.216 +463418,51.456,61.375 +463419,53.931,60.516 +463420,56.583,59.638 +463421,47.804,62.193 +463422,50.142,61.384 +463423,52.627,60.559 +463424,55.287,59.715 +463425,46.481,62.169 +463426,48.829,61.393 +463427,51.323,60.601 +463428,53.989,59.792 +463429,45.159,62.144 +463430,47.516,61.402 +463431,50.017,60.645 +463432,52.689,59.87 +463433,43.84,62.118 +463434,46.204,61.411 +463435,48.711,60.688 +463436,51.387,59.948 +463437,42.522,62.092 +463438,44.893,61.419 +463439,47.405,60.731 +463440,50.082,60.027 +463441,41.206,62.066 +463442,43.582,61.427 +463443,46.097,60.775 +463444,48.776,60.107 +463445,39.892,62.039 +463446,42.272,61.436 +463447,44.789,60.819 +463448,47.467,60.187 +463449,38.579,62.011 +463450,40.962,61.444 +463451,43.48,60.863 +463452,46.157,60.267 +463453,37.268,61.984 +463454,39.653,61.451 +463455,42.171,60.907 +463456,44.844,60.348 +463457,35.959,61.955 +463458,38.345,61.459 +463459,40.861,60.951 +463460,43.529,60.429 +463461,34.652,61.926 +463462,37.037,61.466 +463463,39.55,60.995 +463464,42.212,60.51 +463465,33.347,61.897 +463466,35.73,61.474 +463467,38.238,61.039 +463468,40.894,60.592 +463469,32.043,61.868 +463470,34.423,61.481 +463471,36.926,61.084 +463472,39.573,60.674 +463473,30.741,61.838 +463474,33.117,61.488 +463475,35.613,61.128 +463476,38.25,60.756 +463477,29.441,61.808 +463478,31.812,61.495 +463479,34.3,61.173 +463480,36.925,60.839 +463481,28.143,61.778 +463482,30.507,61.502 +463483,32.986,61.217 +463484,35.598,60.921 +463485,26.847,61.747 +463486,29.203,61.509 +463487,31.671,61.262 +463488,34.269,61.004 +463489,25.552,61.717 +463490,27.899,61.516 +463491,30.355,61.307 +463492,32.938,61.087 +463493,24.259,61.686 +463494,26.596,61.523 +463495,29.039,61.351 +463496,31.606,61.17 +463497,22.968,61.655 +463498,25.294,61.53 +463499,27.722,61.396 +463500,30.271,61.253 +463501,21.679,61.624 +463502,23.992,61.536 +463503,26.405,61.441 +463504,28.935,61.336 +463505,20.391,61.593 +463506,22.69,61.543 +463507,25.087,61.485 +463508,27.596,61.419 +463509,19.106,61.562 +463510,21.39,61.55 +463511,23.768,61.53 +463512,26.256,61.501 +463513,17.822,61.531 +463514,20.089,61.556 +463515,22.449,61.575 +463516,24.914,61.584 +463517,16.539,61.5 +463518,18.79,61.563 +463519,21.129,61.619 +463520,23.57,61.667 +463521,15.259,61.469 +463522,17.491,61.57 +463523,19.808,61.664 +463524,22.224,61.75 +463525,13.98,61.438 +463526,16.192,61.576 +463527,18.487,61.708 +463528,20.877,61.832 +463529,12.703,61.407 +463530,14.894,61.583 +463531,17.165,61.753 +463532,19.528,61.914 +463533,11.427,61.376 +463534,13.597,61.59 +463535,15.843,61.797 +463536,18.177,61.996 +463537,10.154,61.345 +463538,12.3,61.597 +463539,14.52,61.841 +463540,16.824,62.078 +463541,8.8816,61.315 +463542,11.004,61.603 +463543,13.196,61.885 +463544,15.47,62.159 +463545,7.6112,61.285 +463546,9.7077,61.61 +463547,11.872,61.93 +463548,14.114,62.241 +463549,6.3425,61.255 +463550,8.4123,61.617 +463551,10.547,61.973 +463552,12.757,62.321 +463553,5.0753,61.226 +463554,7.1175,61.625 +463555,9.2219,62.017 +463556,11.397,62.402 +463557,3.8098,61.197 +463558,5.8232,61.632 +463559,7.8961,62.061 +463560,10.037,62.482 +463561,2.5459,61.168 +463562,4.5294,61.639 +463563,6.5697,62.104 +463564,8.6749,62.561 +463565,1.2835,61.139 +463566,3.2361,61.647 +463567,5.2428,62.148 +463568,7.3113,62.64 +463569,0.022679,61.111 +463570,1.9432,61.654 +463571,3.9154,62.191 +463572,5.9463,62.719 +463573,358.76,61.084 +463574,0.65087,61.662 +463575,2.5874,62.234 +463576,4.5799,62.797 +463577,357.51,61.056 +463578,359.36,61.67 +463579,1.259,62.277 +463580,3.2121,62.875 +463581,356.25,61.03 +463582,358.07,61.678 +463583,359.93,62.319 +463584,1.843,62.952 +463585,354.99,61.004 +463586,356.78,61.686 +463587,358.6,62.362 +463588,0.4726,63.028 +463589,353.74,60.978 +463590,355.49,61.695 +463591,357.27,62.404 +463592,359.1,63.104 +463593,352.49,60.953 +463594,354.2,61.703 +463595,355.94,62.446 +463596,357.73,63.179 +463597,351.24,60.929 +463598,352.91,61.712 +463599,354.61,62.488 +463600,356.35,63.253 +463601,349.99,60.905 +463602,351.62,61.721 +463603,353.28,62.529 +463604,354.98,63.327 +463605,348.74,60.882 +463606,350.33,61.73 +463607,351.95,62.57 +463608,353.6,63.4 +463609,347.49,60.859 +463610,349.04,61.74 +463611,350.61,62.611 +463612,352.22,63.472 +463613,346.25,60.838 +463614,347.75,61.749 +463615,349.28,62.652 +463616,350.85,63.544 +463617,345.01,60.817 +463618,346.46,61.759 +463619,347.95,62.692 +463620,349.47,63.614 +463621,343.76,60.797 +463622,345.18,61.769 +463623,346.62,62.733 +463624,348.09,63.684 +463625,342.52,60.777 +463626,343.89,61.78 +463627,345.28,62.772 +463628,346.7,63.753 +463629,341.28,60.759 +463630,342.6,61.791 +463631,343.95,62.812 +463632,345.32,63.821 +463633,340.04,60.741 +463634,341.32,61.802 +463635,342.61,62.851 +463636,343.94,63.889 +463637,338.8,60.724 +463638,340.03,61.813 +463639,341.28,62.89 +463640,342.55,63.955 +463641,337.56,60.708 +463642,338.74,61.824 +463643,339.94,62.929 +463644,341.17,64.02 +463645,336.33,60.693 +463646,337.46,61.836 +463647,338.61,62.967 +463648,339.78,64.085 +463649,335.09,60.679 +463650,336.17,61.848 +463651,337.27,63.005 +463652,338.4,64.148 +463653,333.86,60.665 +463654,334.89,61.861 +463655,335.94,63.043 +463656,337.01,64.211 +463657,332.62,60.653 +463658,333.6,61.873 +463659,334.6,63.08 +463660,335.62,64.273 +463661,331.39,60.642 +463662,332.32,61.886 +463663,333.27,63.117 +463664,334.23,64.333 +463665,330.16,60.632 +463666,331.03,61.9 +463667,331.93,63.154 +463668,332.84,64.392 +463669,328.93,60.622 +463670,329.75,61.913 +463671,330.59,63.19 +463672,331.46,64.451 +463673,327.7,60.614 +463674,328.47,61.927 +463675,329.26,63.226 +463676,330.07,64.508 +463677,326.47,60.607 +463678,327.18,61.942 +463679,327.92,63.261 +463680,328.68,64.565 +463681,325.24,60.601 +463682,325.9,61.957 +463683,326.58,63.297 +463684,327.28,64.62 +463685,324.01,60.596 +463686,324.62,61.972 +463687,325.24,63.331 +463688,325.89,64.674 +463689,322.78,60.592 +463690,323.33,61.987 +463691,323.91,63.366 +463692,324.5,64.727 +463693,321.56,60.589 +463694,322.05,62.003 +463695,322.57,63.4 +463696,323.11,64.778 +463697,320.33,60.588 +463698,320.77,62.019 +463699,321.23,63.433 +463700,321.72,64.829 +463701,319.1,60.587 +463702,319.48,62.036 +463703,319.89,63.466 +463704,320.33,64.878 +463705,317.88,60.588 +463706,318.2,62.053 +463707,318.55,63.499 +463708,318.93,64.927 +463709,316.65,60.59 +463710,316.92,62.07 +463711,317.21,63.532 +463712,317.54,64.974 +463713,315.42,60.593 +463714,315.63,62.088 +463715,315.88,63.563 +463716,316.15,65.02 +463717,314.2,60.597 +463718,314.35,62.106 +463719,314.54,63.595 +463720,314.76,65.064 +463721,312.97,60.603 +463722,313.07,62.124 +463723,313.2,63.626 +463724,313.36,65.108 +463725,311.75,60.61 +463726,311.79,62.143 +463727,311.86,63.657 +463728,311.97,65.15 +463729,310.52,60.618 +463730,310.5,62.162 +463731,310.52,63.687 +463732,310.58,65.191 +463733,309.3,60.627 +463734,309.22,62.182 +463735,309.18,63.717 +463736,309.18,65.231 +463737,308.08,60.638 +463738,307.94,62.202 +463739,307.84,63.746 +463740,307.79,65.269 +463741,306.85,60.649 +463742,306.66,62.223 +463743,306.51,63.775 +463744,306.4,65.306 +463745,305.63,60.662 +463746,305.37,62.244 +463747,305.17,63.804 +463748,305.01,65.342 +463749,304.4,60.677 +463750,304.09,62.265 +463751,303.83,63.832 +463752,303.62,65.377 +463753,303.18,60.692 +463754,302.81,62.287 +463755,302.49,63.86 +463756,302.22,65.41 +463757,301.95,60.709 +463758,301.52,62.309 +463759,301.15,63.887 +463760,300.83,65.442 +463761,300.72,60.727 +463762,300.24,62.331 +463763,299.81,63.914 +463764,299.44,65.473 +463765,299.5,60.747 +463766,298.96,62.354 +463767,298.48,63.94 +463768,298.05,65.503 +463769,298.27,60.768 +463770,297.67,62.378 +463771,297.14,63.966 +463772,296.66,65.531 +463773,297.05,60.79 +463774,296.39,62.401 +463775,295.8,63.991 +463776,295.27,65.558 +463777,295.82,60.813 +463778,295.11,62.426 +463779,294.46,64.016 +463780,293.88,65.584 +463781,294.59,60.838 +463782,293.82,62.45 +463783,293.12,64.041 +463784,292.49,65.609 +463785,293.36,60.864 +463786,292.54,62.475 +463787,291.79,64.065 +463788,291.11,65.632 +463789,292.13,60.891 +463790,291.25,62.501 +463791,290.45,64.089 +463792,289.72,65.654 +463793,290.9,60.919 +463794,289.97,62.527 +463795,289.11,64.112 +463796,288.33,65.674 +463797,289.67,60.949 +463798,288.68,62.553 +463799,287.78,64.135 +463800,286.95,65.694 +463801,288.44,60.98 +463802,287.4,62.58 +463803,286.44,64.157 +463804,285.56,65.712 +463805,287.21,61.012 +463806,286.11,62.607 +463807,285.1,64.179 +463808,284.17,65.729 +463809,285.98,61.046 +463810,284.83,62.634 +463811,283.77,64.201 +463812,282.79,65.744 +463813,284.75,61.081 +463814,283.54,62.662 +463815,282.43,64.222 +463816,281.41,65.759 +463817,283.51,61.117 +463818,282.25,62.691 +463819,281.09,64.242 +463820,280.03,65.772 +463821,282.28,61.155 +463822,280.97,62.719 +463823,279.76,64.263 +463824,278.64,65.784 +463825,281.04,61.193 +463826,279.68,62.749 +463827,278.42,64.282 +463828,277.26,65.794 +463829,279.8,61.233 +463830,278.39,62.778 +463831,277.09,64.302 +463832,275.88,65.804 +463833,278.56,61.274 +463834,277.1,62.808 +463835,275.75,64.321 +463836,274.5,65.812 +463837,277.32,61.317 +463838,275.82,62.838 +463839,274.42,64.339 +463840,273.13,65.819 +463841,276.08,61.36 +463842,274.53,62.869 +463843,273.09,64.357 +463844,271.75,65.825 +463845,274.84,61.405 +463846,273.24,62.9 +463847,271.75,64.375 +463848,270.37,65.829 +463849,273.6,61.451 +463850,271.95,62.932 +463851,270.42,64.392 +463852,269,65.833 +463853,272.35,61.498 +463854,270.66,62.964 +463855,269.09,64.409 +463856,267.63,65.835 +463857,271.11,61.546 +463858,269.37,62.996 +463859,267.75,64.426 +463860,266.25,65.836 +463861,269.86,61.596 +463862,268.08,63.028 +463863,266.42,64.442 +463864,264.88,65.836 +463865,268.61,61.646 +463866,266.79,63.061 +463867,265.09,64.458 +463868,263.51,65.835 +463869,267.36,61.698 +463870,265.49,63.095 +463871,263.76,64.473 +463872,262.14,65.833 +463873,266.11,61.75 +463874,264.2,63.128 +463875,262.43,64.488 +463876,260.78,65.829 +463877,264.86,61.804 +463878,262.91,63.162 +463879,261.1,64.503 +463880,259.41,65.825 +463881,263.6,61.859 +463882,261.62,63.197 +463883,259.77,64.517 +463884,258.04,65.819 +463885,262.35,61.915 +463886,260.32,63.231 +463887,258.44,64.531 +463888,256.68,65.813 +463889,261.09,61.972 +463890,259.03,63.266 +463891,257.11,64.544 +463892,255.32,65.805 +463893,259.83,62.03 +463894,257.73,63.302 +463895,255.78,64.558 +463896,253.96,65.797 +463897,258.57,62.089 +463898,256.44,63.337 +463899,254.45,64.57 +463900,252.6,65.787 +463901,257.31,62.149 +463902,255.14,63.373 +463903,253.13,64.583 +463904,251.24,65.777 +463905,256.04,62.21 +463906,253.85,63.41 +463907,251.8,64.595 +463908,249.88,65.765 +463909,254.78,62.271 +463910,252.55,63.446 +463911,250.47,64.607 +463912,248.52,65.753 +463913,253.51,62.334 +463914,251.25,63.483 +463915,249.15,64.618 +463916,247.17,65.739 +463917,252.24,62.398 +463918,249.95,63.52 +463919,247.82,64.63 +463920,245.82,65.725 +463921,250.97,62.462 +463922,248.65,63.558 +463923,246.49,64.641 +463924,244.47,65.71 +463925,249.69,62.527 +463926,247.35,63.595 +463927,245.17,64.651 +463928,243.12,65.694 +463929,248.42,62.593 +463930,246.05,63.633 +463931,243.85,64.661 +463932,241.77,65.677 +463933,247.14,62.66 +463934,244.75,63.672 +463935,242.52,64.672 +463936,240.42,65.659 +463937,245.86,62.728 +463938,243.45,63.71 +463939,241.2,64.681 +463940,239.08,65.641 +463941,244.58,62.796 +463942,242.15,63.749 +463943,239.88,64.691 +463944,237.73,65.622 +463945,243.3,62.865 +463946,240.85,63.788 +463947,238.55,64.7 +463948,236.39,65.602 +463949,242.02,62.935 +463950,239.55,63.827 +463951,237.23,64.709 +463952,235.05,65.581 +463953,240.73,63.005 +463954,238.24,63.866 +463955,235.91,64.718 +463956,233.71,65.56 +463957,239.44,63.076 +463958,236.94,63.906 +463959,234.59,64.726 +463960,232.38,65.537 +463961,238.15,63.148 +463962,235.63,63.946 +463963,233.27,64.735 +463964,231.04,65.515 +463965,236.86,63.22 +463966,234.33,63.986 +463967,231.95,64.743 +463968,229.71,65.491 +463969,235.56,63.293 +463970,233.02,64.026 +463971,230.63,64.751 +463972,228.38,65.467 +463973,234.27,63.366 +463974,231.71,64.066 +463975,229.32,64.758 +463976,227.05,65.443 +463977,232.97,63.44 +463978,230.41,64.107 +463979,228,64.766 +463980,225.72,65.418 +463981,231.67,63.514 +463982,229.1,64.147 +463983,226.68,64.773 +463984,224.39,65.392 +463985,230.37,63.589 +463986,227.79,64.188 +463987,225.36,64.78 +463988,223.07,65.366 +463989,229.06,63.664 +463990,226.48,64.229 +463991,224.05,64.787 +463992,221.74,65.339 +463993,227.75,63.74 +463994,225.17,64.27 +463995,222.73,64.794 +463996,220.42,65.312 +463997,226.45,63.816 +463998,223.86,64.311 +463999,221.42,64.801 +464000,219.1,65.285 +464001,225.14,63.892 +464002,222.55,64.352 +464003,220.1,64.807 +464004,217.78,65.257 +464005,223.82,63.969 +464006,221.24,64.394 +464007,218.79,64.813 +464008,216.47,65.229 +464009,222.51,64.046 +464010,219.92,64.435 +464011,217.48,64.82 +464012,215.15,65.2 +464013,221.19,64.123 +464014,218.61,64.477 +464015,216.17,64.826 +464016,213.84,65.171 +464017,219.87,64.2 +464018,217.3,64.518 +464019,214.85,64.832 +464020,212.53,65.142 +464021,218.55,64.277 +464022,215.98,64.56 +464023,213.54,64.838 +464024,211.22,65.113 +464025,217.23,64.355 +464026,214.67,64.601 +464027,212.23,64.844 +464028,209.91,65.083 +464029,215.91,64.433 +464030,213.35,64.643 +464031,210.92,64.85 +464032,208.6,65.053 +464033,214.58,64.511 +464034,212.03,64.685 +464035,209.61,64.856 +464036,207.3,65.023 +464037,213.25,64.589 +464038,210.72,64.727 +464039,208.3,64.861 +464040,206,64.993 +464041,211.92,64.667 +464042,209.4,64.768 +464043,207,64.867 +464044,204.7,64.963 +464045,210.59,64.745 +464046,208.08,64.81 +464047,205.69,64.873 +464048,203.4,64.933 +464049,209.26,64.823 +464050,206.76,64.852 +464051,204.38,64.878 +464052,202.1,64.902 +464053,207.92,64.901 +464054,205.44,64.894 +464055,203.08,64.884 +464056,200.8,64.872 +464057,206.58,64.979 +464058,204.12,64.935 +464059,201.77,64.89 +464060,199.51,64.842 +464061,205.25,65.056 +464062,202.8,64.977 +464063,200.46,64.895 +464064,198.22,64.811 +464065,203.9,65.134 +464066,201.48,65.019 +464067,199.16,64.901 +464068,196.93,64.781 +464069,202.56,65.211 +464070,200.16,65.06 +464071,197.86,64.907 +464072,195.64,64.751 +464073,201.22,65.289 +464074,198.83,65.102 +464075,196.55,64.912 +464076,194.35,64.721 +464077,199.87,65.366 +464078,197.51,65.143 +464079,195.25,64.918 +464080,193.07,64.691 +464081,198.52,65.443 +464082,196.19,65.185 +464083,193.95,64.924 +464084,191.78,64.661 +464085,197.17,65.519 +464086,194.86,65.226 +464087,192.64,64.93 +464088,190.5,64.632 +464089,195.82,65.595 +464090,193.54,65.267 +464091,191.34,64.936 +464092,189.22,64.602 +464093,194.47,65.671 +464094,192.21,65.308 +464095,190.04,64.942 +464096,187.94,64.573 +464097,193.11,65.747 +464098,190.89,65.349 +464099,188.74,64.948 +464100,186.67,64.545 +464101,191.75,65.822 +464102,189.56,65.39 +464103,187.44,64.954 +464104,185.39,64.516 +464105,190.4,65.897 +464106,188.23,65.43 +464107,186.14,64.96 +464108,184.12,64.488 +464109,189.04,65.971 +464110,186.9,65.471 +464111,184.84,64.967 +464112,182.85,64.461 +464113,187.68,66.045 +464114,185.58,65.511 +464115,183.54,64.974 +464116,181.58,64.433 +464117,186.31,66.118 +464118,184.25,65.551 +464119,182.25,64.98 +464120,180.31,64.407 +464121,184.95,66.191 +464122,182.92,65.591 +464123,180.95,64.987 +464124,179.04,64.38 +464125,183.58,66.263 +464126,181.59,65.631 +464127,179.65,64.994 +464128,177.77,64.354 +464129,182.22,66.335 +464130,180.26,65.671 +464131,178.36,65.002 +464132,176.51,64.329 +464133,180.85,66.406 +464134,178.93,65.71 +464135,177.06,65.009 +464136,175.25,64.304 +464137,179.48,66.477 +464138,177.59,65.749 +464139,175.76,65.017 +464140,173.98,64.28 +464141,178.11,66.547 +464142,176.26,65.788 +464143,174.47,65.024 +464144,172.72,64.256 +464145,176.73,66.616 +464146,174.93,65.827 +464147,173.17,65.032 +464148,171.47,64.233 +464149,175.36,66.684 +464150,173.6,65.865 +464151,171.88,65.04 +464152,170.21,64.211 +464153,173.99,66.752 +464154,172.26,65.904 +464155,170.59,65.049 +464156,168.95,64.189 +464157,172.61,66.819 +464158,170.93,65.942 +464159,169.29,65.058 +464160,167.7,64.168 +464161,171.23,66.885 +464162,169.6,65.979 +464163,168,65.066 +464164,166.44,64.148 +464165,169.85,66.951 +464166,168.26,66.017 +464167,166.71,65.076 +464168,165.19,64.128 +464169,168.48,67.016 +464170,166.93,66.054 +464171,165.42,65.085 +464172,163.94,64.109 +464173,167.1,67.079 +464174,165.59,66.091 +464175,164.12,65.094 +464176,162.69,64.091 +464177,165.71,67.142 +464178,164.26,66.128 +464179,162.83,65.104 +464180,161.44,64.074 +464181,164.33,67.205 +464182,162.92,66.164 +464183,161.54,65.115 +464184,160.19,64.058 +464185,162.95,67.266 +464186,161.58,66.2 +464187,160.25,65.125 +464188,158.95,64.042 +464189,161.56,67.326 +464190,160.25,66.236 +464191,158.96,65.136 +464192,157.7,64.028 +464193,160.18,67.386 +464194,158.91,66.271 +464195,157.67,65.147 +464196,156.46,64.014 +464197,158.79,67.444 +464198,157.57,66.306 +464199,156.38,65.158 +464200,155.21,64.001 +464201,157.41,67.502 +464202,156.23,66.341 +464203,155.09,65.17 +464204,153.97,63.989 +464205,156.02,67.558 +464206,154.9,66.375 +464207,153.8,65.182 +464208,152.73,63.978 +464209,154.63,67.614 +464210,153.56,66.409 +464211,152.51,65.194 +464212,151.49,63.969 +464213,153.24,67.669 +464214,152.22,66.443 +464215,151.22,65.206 +464216,150.25,63.96 +464217,151.85,67.722 +464218,150.88,66.477 +464219,149.93,65.219 +464220,149.01,63.952 +464221,150.46,67.775 +464222,149.54,66.51 +464223,148.65,65.232 +464224,147.77,63.945 +464225,149.07,67.826 +464226,148.2,66.542 +464227,147.36,65.246 +464228,146.54,63.939 +464229,147.68,67.877 +464230,146.86,66.575 +464231,146.07,65.26 +464232,145.3,63.934 +464233,146.29,67.926 +464234,145.52,66.607 +464235,144.78,65.274 +464236,144.06,63.93 +464237,144.9,67.974 +464238,144.18,66.638 +464239,143.49,65.289 +464240,142.83,63.928 +464241,143.51,68.021 +464242,142.84,66.669 +464243,142.21,65.304 +464244,141.59,63.926 +464245,142.11,68.067 +464246,141.5,66.7 +464247,140.92,65.319 +464248,140.36,63.926 +464249,140.72,68.112 +464250,140.16,66.73 +464251,139.63,65.335 +464252,139.13,63.926 +464253,139.33,68.156 +464254,138.82,66.761 +464255,138.35,65.351 +464256,137.89,63.928 +464257,137.93,68.198 +464258,137.48,66.79 +464259,137.06,65.367 +464260,136.66,63.931 +464261,136.54,68.24 +464262,136.14,66.819 +464263,135.77,65.384 +464264,135.43,63.935 +464265,135.15,68.28 +464266,134.8,66.848 +464267,134.48,65.401 +464268,134.2,63.941 +464269,133.75,68.319 +464270,133.46,66.877 +464271,133.2,65.419 +464272,132.97,63.947 +464273,132.36,68.357 +464274,132.12,66.905 +464275,131.91,65.437 +464276,131.73,63.955 +464277,130.97,68.394 +464278,130.78,66.932 +464279,130.62,65.455 +464280,130.5,63.964 +464281,129.57,68.429 +464282,129.44,66.959 +464283,129.34,65.474 +464284,129.27,63.974 +464285,128.18,68.463 +464286,128.1,66.986 +464287,128.05,65.493 +464288,128.04,63.986 +464289,126.78,68.497 +464290,126.76,67.013 +464291,126.76,65.513 +464292,126.81,63.998 +464293,125.39,68.528 +464294,125.42,67.039 +464295,125.48,65.533 +464296,125.58,64.012 +464297,124,68.559 +464298,124.07,67.064 +464299,124.19,65.553 +464300,124.35,64.027 +464301,122.6,68.589 +464302,122.73,67.089 +464303,122.9,65.574 +464304,123.12,64.043 +464305,121.21,68.617 +464306,121.39,67.114 +464307,121.62,65.595 +464308,121.89,64.061 +464309,119.82,68.644 +464310,120.05,67.138 +464311,120.33,65.617 +464312,120.65,64.08 +464313,118.42,68.67 +464314,118.71,67.162 +464315,119.04,65.638 +464316,119.42,64.1 +464317,117.03,68.694 +464318,117.37,67.186 +464319,117.76,65.661 +464320,118.19,64.121 +464321,115.64,68.717 +464322,116.03,67.209 +464323,116.47,65.684 +464324,116.96,64.143 +464325,114.25,68.74 +464326,114.69,67.231 +464327,115.18,65.707 +464328,115.73,64.167 +464329,112.86,68.76 +464330,113.35,67.254 +464331,113.89,65.73 +464332,114.49,64.192 +464333,111.47,68.78 +464334,112.01,67.275 +464335,112.61,65.754 +464336,113.26,64.218 +464337,110.08,68.799 +464338,110.67,67.297 +464339,111.32,65.779 +464340,112.03,64.246 +464341,108.69,68.816 +464342,109.33,67.318 +464343,110.03,65.803 +464344,110.79,64.275 +464345,107.3,68.832 +464346,107.99,67.338 +464347,108.74,65.829 +464348,109.56,64.304 +464349,105.91,68.847 +464350,106.65,67.358 +464351,107.45,65.854 +464352,108.32,64.336 +464353,104.52,68.86 +464354,105.31,67.378 +464355,106.17,65.88 +464356,107.09,64.368 +464357,103.13,68.872 +464358,103.97,67.397 +464359,104.88,65.907 +464360,105.85,64.402 +464361,101.75,68.884 +464362,102.63,67.416 +464363,103.59,65.933 +464364,104.62,64.436 +464365,100.36,68.894 +464366,101.29,67.435 +464367,102.3,65.96 +464368,103.38,64.473 +464369,98.977,68.903 +464370,99.956,67.453 +464371,101.01,65.988 +464372,102.14,64.51 +464373,97.593,68.91 +464374,98.618,67.47 +464375,99.718,66.016 +464376,100.9,64.548 +464377,96.209,68.917 +464378,97.281,67.488 +464379,98.427,66.044 +464380,99.658,64.588 +464381,94.827,68.922 +464382,95.943,67.504 +464383,97.137,66.073 +464384,98.417,64.629 +464385,93.445,68.926 +464386,94.606,67.521 +464387,95.846,66.102 +464388,97.175,64.67 +464389,92.065,68.929 +464390,93.269,67.537 +464391,94.554,66.131 +464392,95.931,64.714 +464393,90.685,68.931 +464394,91.932,67.553 +464395,93.263,66.161 +464396,94.687,64.758 +464397,89.307,68.932 +464398,90.596,67.568 +464399,91.971,66.191 +464400,93.441,64.803 +464401,87.929,68.932 +464402,89.26,67.583 +464403,90.678,66.222 +464404,92.194,64.85 +464405,86.552,68.93 +464406,87.924,67.598 +464407,89.385,66.253 +464408,90.946,64.897 +464409,85.177,68.928 +464410,86.589,67.612 +464411,88.092,66.284 +464412,89.697,64.946 +464413,83.803,68.924 +464414,85.254,67.626 +464415,86.798,66.316 +464416,88.447,64.995 +464417,82.429,68.92 +464418,83.92,67.639 +464419,85.504,66.348 +464420,87.195,65.046 +464421,81.057,68.914 +464422,82.585,67.652 +464423,84.21,66.38 +464424,85.943,65.098 +464425,79.686,68.908 +464426,81.252,67.665 +464427,82.915,66.412 +464428,84.688,65.151 +464429,78.317,68.9 +464430,79.918,67.678 +464431,81.619,66.445 +464432,83.433,65.204 +464433,76.948,68.891 +464434,78.585,67.69 +464435,80.323,66.478 +464436,82.176,65.259 +464437,75.581,68.882 +464438,77.253,67.701 +464439,79.027,66.512 +464440,80.917,65.315 +464441,74.215,68.871 +464442,75.921,67.713 +464443,77.73,66.546 +464444,79.657,65.372 +464445,72.851,68.86 +464446,74.589,67.724 +464447,76.433,66.58 +464448,78.396,65.429 +464449,71.487,68.847 +464450,73.258,67.735 +464451,75.135,66.614 +464452,77.133,65.488 +464453,70.125,68.834 +464454,71.927,67.745 +464455,73.837,66.649 +464456,75.868,65.547 +464457,68.765,68.82 +464458,70.597,67.756 +464459,72.538,66.684 +464460,74.602,65.607 +464461,67.406,68.805 +464462,69.267,67.766 +464463,71.238,66.72 +464464,73.334,65.668 +464465,66.048,68.789 +464466,67.938,67.775 +464467,69.938,66.755 +464468,72.065,65.73 +464469,64.692,68.773 +464470,66.609,67.785 +464471,68.638,66.791 +464472,70.794,65.793 +464473,63.337,68.755 +464474,65.281,67.794 +464475,67.337,66.827 +464476,69.521,65.857 +464477,61.983,68.737 +464478,63.953,67.802 +464479,66.035,66.863 +464480,68.247,65.921 +464481,60.632,68.718 +464482,62.626,67.811 +464483,64.733,66.9 +464484,66.97,65.986 +464485,59.281,68.698 +464486,61.299,67.819 +464487,63.43,66.937 +464488,65.692,66.051 +464489,57.932,68.678 +464490,59.973,67.827 +464491,62.127,66.974 +464492,64.413,66.118 +464493,56.585,68.656 +464494,58.647,67.835 +464495,60.823,67.011 +464496,63.131,66.185 +464497,55.239,68.635 +464498,57.322,67.843 +464499,59.519,67.048 +464500,61.848,66.252 +464501,53.895,68.612 +464502,55.997,67.85 +464503,58.214,67.086 +464504,60.563,66.321 +464505,52.553,68.589 +464506,54.673,67.857 +464507,56.908,67.124 +464508,59.276,66.39 +464509,51.212,68.566 +464510,53.349,67.864 +464511,55.602,67.162 +464512,57.987,66.459 +464513,49.872,68.541 +464514,52.026,67.871 +464515,54.295,67.2 +464516,56.696,66.529 +464517,48.534,68.517 +464518,50.704,67.878 +464519,52.987,67.238 +464520,55.404,66.599 +464521,47.198,68.491 +464522,49.382,67.884 +464523,51.679,67.277 +464524,54.109,66.67 +464525,45.864,68.465 +464526,48.06,67.891 +464527,50.371,67.316 +464528,52.813,66.742 +464529,44.531,68.439 +464530,46.739,67.897 +464531,49.061,67.354 +464532,51.515,66.813 +464533,43.2,68.412 +464534,45.419,67.903 +464535,47.751,67.393 +464536,50.215,66.886 +464537,41.87,68.385 +464538,44.099,67.908 +464539,46.441,67.432 +464540,48.913,66.958 +464541,40.543,68.358 +464542,42.78,67.914 +464543,45.13,67.472 +464544,47.609,67.031 +464545,39.216,68.33 +464546,41.462,67.92 +464547,43.818,67.511 +464548,46.303,67.104 +464549,37.892,68.302 +464550,40.144,67.925 +464551,42.505,67.55 +464552,44.995,67.178 +464553,36.569,68.273 +464554,38.826,67.93 +464555,41.192,67.59 +464556,43.686,67.251 +464557,35.248,68.244 +464558,37.509,67.936 +464559,39.879,67.629 +464560,42.374,67.325 +464561,33.929,68.215 +464562,36.193,67.941 +464563,38.564,67.669 +464564,41.06,67.4 +464565,32.611,68.186 +464566,34.877,67.946 +464567,37.249,67.708 +464568,39.745,67.474 +464569,31.296,68.157 +464570,33.562,67.951 +464571,35.934,67.748 +464572,38.428,67.548 +464573,29.981,68.127 +464574,32.248,67.956 +464575,34.618,67.788 +464576,37.108,67.623 +464577,28.669,68.097 +464578,30.934,67.961 +464579,33.301,67.828 +464580,35.787,67.698 +464581,27.358,68.067 +464582,29.62,67.966 +464583,31.983,67.867 +464584,34.464,67.772 +464585,26.049,68.037 +464586,28.307,67.97 +464587,30.665,67.907 +464588,33.139,67.847 +464589,24.742,68.007 +464590,26.995,67.975 +464591,29.347,67.947 +464592,31.812,67.922 +464593,23.436,67.977 +464594,25.683,67.98 +464595,28.027,67.987 +464596,30.483,67.997 +464597,22.132,67.947 +464598,24.372,67.985 +464599,26.707,68.026 +464600,29.153,68.072 +464601,20.83,67.917 +464602,23.062,67.99 +464603,25.387,68.066 +464604,27.82,68.146 +464605,19.53,67.887 +464606,21.752,67.995 +464607,24.066,68.106 +464608,26.486,68.221 +464609,18.231,67.857 +464610,20.442,67.999 +464611,22.744,68.146 +464612,25.15,68.295 +464613,16.934,67.827 +464614,19.134,68.004 +464615,21.421,68.185 +464616,23.812,68.369 +464617,15.639,67.797 +464618,17.825,68.009 +464619,20.098,68.225 +464620,22.472,68.443 +464621,14.345,67.768 +464622,16.517,68.014 +464623,18.775,68.264 +464624,21.131,68.517 +464625,13.053,67.738 +464626,15.21,68.019 +464627,17.451,68.304 +464628,19.787,68.591 +464629,11.762,67.709 +464630,13.904,68.024 +464631,16.126,68.343 +464632,18.442,68.664 +464633,10.474,67.68 +464634,12.597,68.03 +464635,14.801,68.382 +464636,17.095,68.737 +464637,9.1864,67.652 +464638,11.292,68.035 +464639,13.475,68.421 +464640,15.747,68.81 +464641,7.9009,67.624 +464642,9.9869,68.04 +464643,12.148,68.46 +464644,14.397,68.882 +464645,6.617,67.596 +464646,8.6824,68.046 +464647,10.821,68.499 +464648,13.045,68.954 +464649,5.3347,67.568 +464650,7.3784,68.051 +464651,9.4936,68.538 +464652,11.692,69.026 +464653,4.0539,67.541 +464654,6.0749,68.057 +464655,8.1654,68.576 +464656,10.337,69.097 +464657,2.7748,67.514 +464658,4.7719,68.063 +464659,6.8367,68.615 +464660,8.98,69.167 +464661,1.4971,67.488 +464662,3.4695,68.069 +464663,5.5075,68.653 +464664,7.6218,69.238 +464665,0.22105,67.462 +464666,2.1675,68.075 +464667,4.1778,68.691 +464668,6.2621,69.307 +464669,358.95,67.436 +464670,0.866,68.082 +464671,2.8475,68.729 +464672,4.9008,69.376 +464673,357.67,67.411 +464674,359.56,68.088 +464675,1.5168,68.766 +464676,3.5381,69.445 +464677,356.4,67.387 +464678,358.26,68.095 +464679,0.18551,68.804 +464680,2.1739,69.513 +464681,355.13,67.363 +464682,356.96,68.102 +464683,358.85,68.841 +464684,0.80827,69.58 +464685,353.86,67.34 +464686,355.66,68.109 +464687,357.52,68.878 +464688,359.44,69.647 +464689,352.6,67.317 +464690,354.37,68.116 +464691,356.19,68.915 +464692,358.07,69.713 +464693,351.33,67.295 +464694,353.07,68.124 +464695,354.86,68.952 +464696,356.7,69.779 +464697,350.07,67.274 +464698,351.77,68.131 +464699,353.52,68.988 +464700,355.33,69.843 +464701,348.8,67.254 +464702,350.47,68.139 +464703,352.19,69.024 +464704,353.96,69.907 +464705,347.54,67.234 +464706,349.17,68.148 +464707,350.85,69.06 +464708,352.59,69.971 +464709,346.28,67.215 +464710,347.88,68.156 +464711,349.52,69.096 +464712,351.21,70.033 +464713,345.02,67.196 +464714,346.58,68.165 +464715,348.18,69.131 +464716,349.84,70.095 +464717,343.76,67.179 +464718,345.28,68.174 +464719,346.85,69.166 +464720,348.46,70.156 +464721,342.51,67.162 +464722,343.99,68.183 +464723,345.51,69.201 +464724,347.08,70.216 +464725,341.25,67.146 +464726,342.69,68.192 +464727,344.17,69.236 +464728,345.7,70.275 +464729,339.99,67.131 +464730,341.4,68.202 +464731,342.84,69.27 +464732,344.32,70.334 +464733,338.74,67.117 +464734,340.1,68.212 +464735,341.5,69.304 +464736,342.94,70.391 +464737,337.49,67.103 +464738,338.81,68.222 +464739,340.16,69.338 +464740,341.56,70.448 +464741,336.24,67.091 +464742,337.51,68.233 +464743,338.82,69.371 +464744,340.17,70.503 +464745,334.99,67.08 +464746,336.22,68.244 +464747,337.49,69.404 +464748,338.79,70.558 +464749,333.74,67.069 +464750,334.93,68.255 +464751,336.15,69.437 +464752,337.4,70.612 +464753,332.49,67.059 +464754,333.63,68.267 +464755,334.81,69.469 +464756,336.02,70.665 +464757,331.24,67.051 +464758,332.34,68.279 +464759,333.47,69.501 +464760,334.63,70.717 +464761,330,67.043 +464762,331.05,68.291 +464763,332.13,69.533 +464764,333.25,70.767 +464765,328.75,67.037 +464766,329.76,68.304 +464767,330.79,69.564 +464768,331.86,70.817 +464769,327.51,67.031 +464770,328.46,68.316 +464771,329.45,69.595 +464772,330.47,70.866 +464773,326.26,67.026 +464774,327.17,68.33 +464775,328.11,69.626 +464776,329.08,70.914 +464777,325.02,67.023 +464778,325.88,68.343 +464779,326.77,69.656 +464780,327.69,70.961 +464781,323.78,67.021 +464782,324.59,68.357 +464783,325.43,69.686 +464784,326.3,71.006 +464785,322.53,67.019 +464786,323.3,68.371 +464787,324.09,69.716 +464788,324.91,71.051 +464789,321.29,67.019 +464790,322.01,68.386 +464791,322.75,69.745 +464792,323.52,71.094 +464793,320.05,67.02 +464794,320.71,68.401 +464795,321.4,69.774 +464796,322.12,71.137 +464797,318.81,67.022 +464798,319.42,68.417 +464799,320.06,69.802 +464800,320.73,71.178 +464801,317.57,67.025 +464802,318.13,68.432 +464803,318.72,69.83 +464804,319.34,71.218 +464805,316.33,67.03 +464806,316.84,68.448 +464807,317.38,69.858 +464808,317.95,71.257 +464809,315.1,67.035 +464810,315.55,68.465 +464811,316.04,69.886 +464812,316.55,71.295 +464813,313.86,67.042 +464814,314.26,68.482 +464815,314.7,69.912 +464816,315.16,71.332 +464817,312.62,67.05 +464818,312.97,68.499 +464819,313.35,69.939 +464820,313.76,71.368 +464821,311.38,67.059 +464822,311.68,68.517 +464823,312.01,69.965 +464824,312.37,71.402 +464825,310.15,67.069 +464826,310.39,68.535 +464827,310.67,69.991 +464828,310.98,71.436 +464829,308.91,67.08 +464830,309.1,68.553 +464831,309.33,70.016 +464832,309.58,71.468 +464833,307.67,67.093 +464834,307.81,68.572 +464835,307.98,70.041 +464836,308.19,71.499 +464837,306.44,67.107 +464838,306.52,68.591 +464839,306.64,70.066 +464840,306.79,71.528 +464841,305.2,67.122 +464842,305.23,68.611 +464843,305.3,70.09 +464844,305.4,71.557 +464845,303.96,67.138 +464846,303.94,68.631 +464847,303.96,70.114 +464848,304,71.585 +464849,302.73,67.156 +464850,302.65,68.652 +464851,302.61,70.137 +464852,302.61,71.611 +464853,301.49,67.174 +464854,301.36,68.672 +464855,301.27,70.16 +464856,301.22,71.636 +464857,300.25,67.194 +464858,300.07,68.694 +464859,299.93,70.183 +464860,299.82,71.66 +464861,299.02,67.215 +464862,298.78,68.715 +464863,298.59,70.205 +464864,298.43,71.682 +464865,297.78,67.238 +464866,297.49,68.737 +464867,297.24,70.226 +464868,297.03,71.704 +464869,296.54,67.261 +464870,296.2,68.76 +464871,295.9,70.248 +464872,295.64,71.724 +464873,295.31,67.286 +464874,294.91,68.783 +464875,294.56,70.269 +464876,294.25,71.743 +464877,294.07,67.312 +464878,293.62,68.806 +464879,293.22,70.289 +464880,292.86,71.761 +464881,292.83,67.339 +464882,292.33,68.829 +464883,291.88,70.309 +464884,291.46,71.778 +464885,291.59,67.368 +464886,291.04,68.853 +464887,290.53,70.329 +464888,290.07,71.793 +464889,290.36,67.397 +464890,289.75,68.878 +464891,289.19,70.348 +464892,288.68,71.808 +464893,289.12,67.428 +464894,288.46,68.903 +464895,287.85,70.367 +464896,287.29,71.821 +464897,287.88,67.46 +464898,287.17,68.928 +464899,286.51,70.386 +464900,285.9,71.833 +464901,286.64,67.494 +464902,285.88,68.953 +464903,285.17,70.404 +464904,284.51,71.844 +464905,285.4,67.528 +464906,284.58,68.979 +464907,283.83,70.422 +464908,283.12,71.854 +464909,284.16,67.564 +464910,283.29,69.006 +464911,282.48,70.439 +464912,281.73,71.862 +464913,282.92,67.6 +464914,282,69.033 +464915,281.14,70.456 +464916,280.34,71.87 +464917,281.67,67.638 +464918,280.71,69.06 +464919,279.8,70.473 +464920,278.96,71.876 +464921,280.43,67.678 +464922,279.42,69.087 +464923,278.46,70.489 +464924,277.57,71.881 +464925,279.19,67.718 +464926,278.12,69.115 +464927,277.12,70.505 +464928,276.18,71.885 +464929,277.94,67.759 +464930,276.83,69.143 +464931,275.78,70.52 +464932,274.8,71.888 +464933,276.7,67.802 +464934,275.54,69.172 +464935,274.44,70.535 +464936,273.41,71.89 +464937,275.45,67.845 +464938,274.24,69.201 +464939,273.1,70.55 +464940,272.03,71.891 +464941,274.21,67.89 +464942,272.95,69.23 +464943,271.77,70.564 +464944,270.65,71.89 +464945,272.96,67.936 +464946,271.65,69.26 +464947,270.43,70.578 +464948,269.27,71.889 +464949,271.71,67.983 +464950,270.36,69.29 +464951,269.09,70.592 +464952,267.89,71.886 +464953,270.46,68.031 +464954,269.06,69.321 +464955,267.75,70.605 +464956,266.51,71.883 +464957,269.21,68.08 +464958,267.77,69.351 +464959,266.41,70.618 +464960,265.13,71.878 +464961,267.95,68.13 +464962,266.47,69.382 +464963,265.07,70.631 +464964,263.75,71.873 +464965,266.7,68.181 +464966,265.18,69.414 +464967,263.74,70.643 +464968,262.37,71.866 +464969,265.45,68.233 +464970,263.88,69.446 +464971,262.4,70.655 +464972,261,71.859 +464973,264.19,68.286 +464974,262.58,69.478 +464975,261.06,70.666 +464976,259.62,71.85 +464977,262.93,68.34 +464978,261.29,69.51 +464979,259.73,70.678 +464980,258.25,71.841 +464981,261.68,68.395 +464982,259.99,69.543 +464983,258.39,70.689 +464984,256.88,71.831 +464985,260.42,68.451 +464986,258.69,69.576 +464987,257.06,70.699 +464988,255.51,71.819 +464989,259.16,68.508 +464990,257.39,69.609 +464991,255.72,70.71 +464992,254.14,71.807 +464993,257.89,68.565 +464994,256.09,69.643 +464995,254.39,70.72 +464996,252.77,71.794 +464997,256.63,68.624 +464998,254.79,69.677 +464999,253.05,70.729 +465000,251.4,71.78 +465001,255.36,68.683 +465002,253.49,69.711 +465003,251.72,70.739 +465004,250.04,71.765 +465005,254.1,68.743 +465006,252.19,69.745 +465007,250.39,70.748 +465008,248.67,71.75 +465009,252.83,68.804 +465010,250.89,69.78 +465011,249.06,70.757 +465012,247.31,71.733 +465013,251.56,68.866 +465014,249.59,69.815 +465015,247.72,70.766 +465016,245.95,71.716 +465017,250.29,68.928 +465018,248.29,69.85 +465019,246.39,70.774 +465020,244.59,71.698 +465021,249.02,68.992 +465022,246.99,69.886 +465023,245.06,70.782 +465024,243.23,71.679 +465025,247.74,69.056 +465026,245.68,69.921 +465027,243.73,70.79 +465028,241.87,71.66 +465029,246.47,69.12 +465030,244.38,69.957 +465031,242.4,70.798 +465032,240.51,71.64 +465033,245.19,69.185 +465034,243.08,69.993 +465035,241.07,70.805 +465036,239.16,71.619 +465037,243.91,69.251 +465038,241.77,70.03 +465039,239.74,70.812 +465040,237.8,71.597 +465041,242.63,69.318 +465042,240.47,70.066 +465043,238.41,70.819 +465044,236.45,71.575 +465045,241.35,69.385 +465046,239.16,70.103 +465047,237.08,70.826 +465048,235.1,71.552 +465049,240.06,69.453 +465050,237.85,70.14 +465051,235.75,70.833 +465052,233.75,71.529 +465053,238.78,69.521 +465054,236.55,70.177 +465055,234.43,70.839 +465056,232.41,71.505 +465057,237.49,69.59 +465058,235.24,70.215 +465059,233.1,70.845 +465060,231.06,71.481 +465061,236.2,69.659 +465062,233.93,70.252 +465063,231.77,70.852 +465064,229.72,71.456 +465065,234.91,69.729 +465066,232.62,70.29 +465067,230.45,70.857 +465068,228.37,71.43 +465069,233.62,69.799 +465070,231.31,70.328 +465071,229.12,70.863 +465072,227.03,71.404 +465073,232.32,69.869 +465074,230,70.365 +465075,227.8,70.869 +465076,225.69,71.378 +465077,231.03,69.94 +465078,228.69,70.403 +465079,226.47,70.874 +465080,224.35,71.351 +465081,229.73,70.012 +465082,227.38,70.442 +465083,225.15,70.88 +465084,223.02,71.324 +465085,228.43,70.083 +465086,226.07,70.48 +465087,223.83,70.885 +465088,221.68,71.296 +465089,227.13,70.155 +465090,224.76,70.518 +465091,222.5,70.89 +465092,220.35,71.268 +465093,225.82,70.227 +465094,223.45,70.557 +465095,221.18,70.895 +465096,219.02,71.24 +465097,224.52,70.3 +465098,222.13,70.595 +465099,219.86,70.9 +465100,217.69,71.212 +465101,223.21,70.373 +465102,220.82,70.634 +465103,218.54,70.905 +465104,216.36,71.183 +465105,221.9,70.445 +465106,219.5,70.673 +465107,217.22,70.909 +465108,215.03,71.154 +465109,220.59,70.518 +465110,218.19,70.711 +465111,215.9,70.914 +465112,213.71,71.125 +465113,219.28,70.592 +465114,216.87,70.75 +465115,214.58,70.919 +465116,212.38,71.095 +465117,217.96,70.665 +465118,215.56,70.789 +465119,213.26,70.923 +465120,211.06,71.066 +465121,216.65,70.738 +465122,214.24,70.828 +465123,211.94,70.928 +465124,209.74,71.036 +465125,215.33,70.812 +465126,212.92,70.867 +465127,210.63,70.932 +465128,208.42,71.006 +465129,214.01,70.885 +465130,211.6,70.906 +465131,209.31,70.937 +465132,207.11,70.977 +465133,212.69,70.958 +465134,210.29,70.945 +465135,207.99,70.941 +465136,205.79,70.947 +465137,211.36,71.032 +465138,208.97,70.984 +465139,206.68,70.946 +465140,204.48,70.917 +465141,210.04,71.105 +465142,207.65,71.023 +465143,205.36,70.95 +465144,203.17,70.887 +465145,208.71,71.178 +465146,206.33,71.061 +465147,204.05,70.955 +465148,201.86,70.857 +465149,207.38,71.251 +465150,205,71.1 +465151,202.73,70.959 +465152,200.55,70.827 +465153,206.05,71.324 +465154,203.68,71.139 +465155,201.42,70.964 +465156,199.24,70.798 +465157,204.71,71.397 +465158,202.36,71.178 +465159,200.11,70.969 +465160,197.94,70.768 +465161,203.38,71.47 +465162,201.04,71.217 +465163,198.79,70.973 +465164,196.64,70.739 +465165,202.04,71.542 +465166,199.71,71.255 +465167,197.48,70.978 +465168,195.33,70.71 +465169,200.71,71.614 +465170,198.39,71.294 +465171,196.17,70.983 +465172,194.03,70.681 +465173,199.37,71.686 +465174,197.07,71.332 +465175,194.86,70.988 +465176,192.73,70.652 +465177,198.02,71.758 +465178,195.74,71.37 +465179,193.55,70.993 +465180,191.44,70.624 +465181,196.68,71.829 +465182,194.41,71.409 +465183,192.24,70.998 +465184,190.14,70.595 +465185,195.33,71.9 +465186,193.09,71.447 +465187,190.93,71.003 +465188,188.85,70.567 +465189,193.99,71.97 +465190,191.76,71.485 +465191,189.62,71.008 +465192,187.56,70.54 +465193,192.64,72.04 +465194,190.43,71.523 +465195,188.31,71.014 +465196,186.27,70.513 +465197,191.29,72.11 +465198,189.1,71.56 +465199,187.01,71.019 +465200,184.98,70.486 +465201,189.94,72.179 +465202,187.78,71.598 +465203,185.7,71.025 +465204,183.69,70.46 +465205,188.58,72.248 +465206,186.45,71.635 +465207,184.39,71.031 +465208,182.41,70.434 +465209,187.23,72.316 +465210,185.12,71.673 +465211,183.08,71.037 +465212,181.12,70.408 +465213,185.87,72.383 +465214,183.79,71.71 +465215,181.78,71.043 +465216,179.84,70.383 +465217,184.51,72.45 +465218,182.46,71.747 +465219,180.47,71.049 +465220,178.56,70.359 +465221,183.15,72.517 +465222,181.12,71.783 +465223,179.17,71.056 +465224,177.28,70.335 +465225,181.79,72.583 +465226,179.79,71.82 +465227,177.86,71.063 +465228,176,70.312 +465229,180.43,72.648 +465230,178.46,71.856 +465231,176.56,71.07 +465232,174.72,70.289 +465233,179.07,72.713 +465234,177.13,71.892 +465235,175.26,71.077 +465236,173.45,70.267 +465237,177.7,72.777 +465238,175.79,71.928 +465239,173.95,71.084 +465240,172.17,70.246 +465241,176.33,72.84 +465242,174.46,71.964 +465243,172.65,71.092 +465244,170.9,70.225 +465245,174.97,72.902 +465246,173.13,71.999 +465247,171.35,71.1 +465248,169.63,70.205 +465249,173.6,72.964 +465250,171.79,72.034 +465251,170.05,71.108 +465252,168.36,70.186 +465253,172.23,73.025 +465254,170.46,72.069 +465255,168.75,71.116 +465256,167.09,70.167 +465257,170.85,73.085 +465258,169.12,72.104 +465259,167.45,71.125 +465260,165.82,70.15 +465261,169.48,73.145 +465262,167.78,72.138 +465263,166.15,71.134 +465264,164.56,70.133 +465265,168.11,73.204 +465266,166.45,72.172 +465267,164.85,71.143 +465268,163.29,70.117 +465269,166.73,73.261 +465270,165.11,72.206 +465271,163.55,71.152 +465272,162.03,70.101 +465273,165.35,73.318 +465274,163.77,72.24 +465275,162.25,71.162 +465276,160.77,70.087 +465277,163.97,73.374 +465278,162.44,72.273 +465279,160.95,71.172 +465280,159.5,70.073 +465281,162.6,73.43 +465282,161.1,72.306 +465283,159.65,71.182 +465284,158.24,70.06 +465285,161.22,73.484 +465286,159.76,72.339 +465287,158.35,71.193 +465288,156.99,70.049 +465289,159.83,73.537 +465290,158.42,72.371 +465291,157.05,71.204 +465292,155.73,70.038 +465293,158.45,73.59 +465294,157.08,72.403 +465295,155.76,71.215 +465296,154.47,70.028 +465297,157.07,73.641 +465298,155.74,72.435 +465299,154.46,71.227 +465300,153.22,70.019 +465301,155.69,73.692 +465302,154.4,72.466 +465303,153.16,71.239 +465304,151.96,70.011 +465305,154.3,73.741 +465306,153.06,72.497 +465307,151.87,71.251 +465308,150.71,70.004 +465309,152.92,73.789 +465310,151.72,72.528 +465311,150.57,71.263 +465312,149.45,69.998 +465313,151.53,73.837 +465314,150.38,72.558 +465315,149.27,71.276 +465316,148.2,69.993 +465317,150.14,73.883 +465318,149.04,72.588 +465319,147.98,71.29 +465320,146.95,69.989 +465321,148.75,73.929 +465322,147.7,72.618 +465323,146.68,71.303 +465324,145.7,69.986 +465325,147.37,73.973 +465326,146.36,72.647 +465327,145.39,71.317 +465328,144.45,69.984 +465329,145.98,74.016 +465330,145.02,72.676 +465331,144.09,71.331 +465332,143.2,69.984 +465333,144.59,74.059 +465334,143.67,72.705 +465335,142.8,71.346 +465336,141.95,69.984 +465337,143.2,74.1 +465338,142.33,72.733 +465339,141.5,71.361 +465340,140.71,69.986 +465341,141.81,74.14 +465342,140.99,72.761 +465343,140.21,71.377 +465344,139.46,69.988 +465345,140.41,74.179 +465346,139.65,72.788 +465347,138.91,71.392 +465348,138.21,69.992 +465349,139.02,74.217 +465350,138.3,72.816 +465351,137.62,71.409 +465352,136.97,69.997 +465353,137.63,74.253 +465354,136.96,72.842 +465355,136.33,71.425 +465356,135.72,70.003 +465357,136.24,74.289 +465358,135.62,72.869 +465359,135.03,71.442 +465360,134.48,70.011 +465361,134.84,74.323 +465362,134.28,72.895 +465363,133.74,71.459 +465364,133.23,70.019 +465365,133.45,74.357 +465366,132.93,72.92 +465367,132.45,71.477 +465368,131.99,70.029 +465369,132.06,74.389 +465370,131.59,72.946 +465371,131.15,71.495 +465372,130.75,70.039 +465373,130.66,74.42 +465374,130.24,72.97 +465375,129.86,71.514 +465376,129.5,70.051 +465377,129.27,74.449 +465378,128.9,72.995 +465379,128.57,71.533 +465380,128.26,70.065 +465381,127.87,74.478 +465382,127.56,73.019 +465383,127.27,71.552 +465384,127.02,70.079 +465385,126.48,74.506 +465386,126.21,73.043 +465387,125.98,71.572 +465388,125.78,70.095 +465389,125.09,74.532 +465390,124.87,73.066 +465391,124.69,71.592 +465392,124.53,70.112 +465393,123.69,74.557 +465394,123.53,73.089 +465395,123.39,71.612 +465396,123.29,70.13 +465397,122.3,74.581 +465398,122.18,73.111 +465399,122.1,71.633 +465400,122.05,70.149 +465401,120.9,74.604 +465402,120.84,73.133 +465403,120.81,71.655 +465404,120.81,70.169 +465405,119.51,74.626 +465406,119.49,73.155 +465407,119.51,71.676 +465408,119.57,70.191 +465409,118.11,74.646 +465410,118.15,73.176 +465411,118.22,71.698 +465412,118.32,70.214 +465413,116.72,74.665 +465414,116.81,73.197 +465415,116.93,71.721 +465416,117.08,70.238 +465417,115.33,74.684 +465418,115.46,73.218 +465419,115.63,71.744 +465420,115.84,70.264 +465421,113.93,74.701 +465422,114.12,73.238 +465423,114.34,71.767 +465424,114.6,70.29 +465425,112.54,74.716 +465426,112.77,73.258 +465427,113.05,71.791 +465428,113.36,70.318 +465429,111.14,74.731 +465430,111.43,73.277 +465431,111.75,71.815 +465432,112.12,70.347 +465433,109.75,74.744 +465434,110.09,73.296 +465435,110.46,71.84 +465436,110.87,70.377 +465437,108.36,74.757 +465438,108.74,73.314 +465439,109.17,71.864 +465440,109.63,70.409 +465441,106.97,74.768 +465442,107.4,73.333 +465443,107.87,71.89 +465444,108.39,70.441 +465445,105.57,74.778 +465446,106.06,73.35 +465447,106.58,71.916 +465448,107.14,70.475 +465449,104.18,74.787 +465450,104.71,73.368 +465451,105.28,71.942 +465452,105.9,70.51 +465453,102.79,74.795 +465454,103.37,73.385 +465455,103.99,71.968 +465456,104.65,70.546 +465457,101.4,74.801 +465458,102.03,73.401 +465459,102.7,71.995 +465460,103.41,70.584 +465461,100.01,74.807 +465462,100.68,73.418 +465463,101.4,72.022 +465464,102.16,70.622 +465465,98.624,74.811 +465466,99.342,73.434 +465467,100.11,72.05 +465468,100.92,70.662 +465469,97.235,74.815 +465470,97.999,73.449 +465471,98.811,72.078 +465472,99.672,70.702 +465473,95.847,74.817 +465474,96.657,73.464 +465475,97.515,72.106 +465476,98.425,70.744 +465477,94.46,74.818 +465478,95.315,73.479 +465479,96.22,72.135 +465480,97.177,70.787 +465481,93.074,74.818 +465482,93.974,73.494 +465483,94.924,72.164 +465484,95.928,70.832 +465485,91.688,74.817 +465486,92.632,73.508 +465487,93.628,72.194 +465488,94.679,70.877 +465489,90.303,74.815 +465490,91.291,73.521 +465491,92.332,72.224 +465492,93.429,70.923 +465493,88.919,74.812 +465494,89.95,73.535 +465495,91.035,72.254 +465496,92.178,70.971 +465497,87.536,74.808 +465498,88.609,73.548 +465499,89.738,72.284 +465500,90.926,71.019 +465501,86.154,74.803 +465502,87.269,73.561 +465503,88.441,72.315 +465504,89.673,71.068 +465505,84.772,74.797 +465506,85.929,73.573 +465507,87.143,72.346 +465508,88.42,71.119 +465509,83.392,74.79 +465510,84.589,73.585 +465511,85.845,72.378 +465512,87.165,71.171 +465513,82.012,74.782 +465514,83.249,73.597 +465515,84.547,72.41 +465516,85.91,71.223 +465517,80.634,74.773 +465518,81.91,73.608 +465519,83.248,72.442 +465520,84.653,71.277 +465521,79.257,74.763 +465522,80.571,73.619 +465523,81.949,72.475 +465524,83.395,71.331 +465525,77.88,74.752 +465526,79.233,73.63 +465527,80.65,72.508 +465528,82.136,71.386 +465529,76.505,74.74 +465530,77.894,73.641 +465531,79.35,72.541 +465532,80.876,71.443 +465533,75.131,74.728 +465534,76.557,73.651 +465535,78.049,72.574 +465536,79.615,71.5 +465537,73.757,74.714 +465538,75.219,73.661 +465539,76.749,72.608 +465540,78.353,71.558 +465541,72.386,74.7 +465542,73.882,73.67 +465543,75.448,72.642 +465544,77.089,71.617 +465545,71.015,74.685 +465546,72.545,73.68 +465547,74.146,72.676 +465548,75.824,71.677 +465549,69.645,74.669 +465550,71.209,73.689 +465551,72.844,72.711 +465552,74.558,71.737 +465553,68.277,74.652 +465554,69.873,73.698 +465555,71.542,72.746 +465556,73.29,71.799 +465557,66.91,74.635 +465558,68.538,73.706 +465559,70.239,72.781 +465560,72.022,71.861 +465561,65.544,74.617 +465562,67.203,73.715 +465563,68.936,72.816 +465564,70.751,71.924 +465565,64.179,74.598 +465566,65.868,73.723 +465567,67.632,72.852 +465568,69.48,71.987 +465569,62.816,74.578 +465570,64.534,73.731 +465571,66.328,72.888 +465572,68.207,72.052 +465573,61.454,74.558 +465574,63.2,73.738 +465575,65.023,72.924 +465576,66.932,72.117 +465577,60.094,74.537 +465578,61.867,73.746 +465579,63.718,72.96 +465580,65.656,72.183 +465581,58.735,74.515 +465582,60.534,73.753 +465583,62.412,72.997 +465584,64.379,72.249 +465585,57.377,74.493 +465586,59.202,73.76 +465587,61.106,73.034 +465588,63.1,72.316 +465589,56.02,74.47 +465590,57.87,73.767 +465591,59.8,73.071 +465592,61.819,72.383 +465593,54.666,74.446 +465594,56.538,73.773 +465595,58.492,73.108 +465596,60.537,72.452 +465597,53.312,74.423 +465598,55.207,73.78 +465599,57.185,73.145 +465600,59.253,72.52 +465601,51.96,74.398 +465602,53.877,73.786 +465603,55.876,73.183 +465604,57.968,72.589 +465605,50.609,74.373 +465606,52.547,73.792 +465607,54.567,73.22 +465608,56.681,72.659 +465609,49.26,74.348 +465610,51.217,73.798 +465611,53.258,73.258 +465612,55.393,72.729 +465613,47.913,74.322 +465614,49.888,73.804 +465615,51.948,73.296 +465616,54.102,72.8 +465617,46.567,74.295 +465618,48.56,73.81 +465619,50.638,73.334 +465620,52.811,72.87 +465621,45.222,74.269 +465622,47.232,73.815 +465623,49.327,73.372 +465624,51.517,72.942 +465625,43.879,74.241 +465626,45.904,73.821 +465627,48.015,73.411 +465628,50.222,73.013 +465629,42.537,74.214 +465630,44.577,73.826 +465631,46.703,73.449 +465632,48.925,73.085 +465633,41.198,74.186 +465634,43.251,73.831 +465635,45.39,73.488 +465636,47.626,73.158 +465637,39.859,74.158 +465638,41.925,73.837 +465639,44.077,73.526 +465640,46.326,73.23 +465641,38.522,74.13 +465642,40.599,73.842 +465643,42.763,73.565 +465644,45.024,73.303 +465645,37.187,74.101 +465646,39.275,73.847 +465647,41.448,73.604 +465648,43.72,73.376 +465649,35.854,74.072 +465650,37.95,73.851 +465651,40.133,73.643 +465652,42.414,73.449 +465653,34.521,74.043 +465654,36.626,73.856 +465655,38.818,73.682 +465656,41.107,73.522 +465657,33.191,74.014 +465658,35.303,73.861 +465659,37.501,73.721 +465660,39.798,73.596 +465661,31.862,73.985 +465662,33.98,73.866 +465663,36.185,73.76 +465664,38.487,73.669 +465665,30.535,73.956 +465666,32.658,73.871 +465667,34.867,73.799 +465668,37.174,73.743 +465669,29.209,73.926 +465670,31.337,73.875 +465671,33.549,73.838 +465672,35.86,73.817 +465673,27.885,73.897 +465674,30.015,73.88 +465675,32.231,73.877 +465676,34.543,73.89 +465677,26.563,73.867 +465678,28.695,73.885 +465679,30.912,73.917 +465680,33.225,73.964 +465681,25.242,73.838 +465682,27.375,73.89 +465683,29.592,73.956 +465684,31.906,74.038 +465685,23.923,73.808 +465686,26.055,73.894 +465687,28.271,73.995 +465688,30.584,74.111 +465689,22.605,73.779 +465690,24.736,73.899 +465691,26.951,74.034 +465692,29.261,74.185 +465693,21.29,73.749 +465694,23.418,73.904 +465695,25.629,74.073 +465696,27.936,74.258 +465697,19.975,73.72 +465698,22.1,73.909 +465699,24.307,74.112 +465700,26.609,74.331 +465701,18.663,73.691 +465702,20.783,73.914 +465703,22.984,74.151 +465704,25.28,74.404 +465705,17.351,73.662 +465706,19.466,73.919 +465707,21.661,74.19 +465708,23.95,74.477 +465709,16.042,73.633 +465710,18.149,73.924 +465711,20.337,74.229 +465712,22.617,74.55 +465713,14.734,73.605 +465714,16.834,73.929 +465715,19.013,74.267 +465716,21.284,74.622 +465717,13.428,73.576 +465718,15.518,73.934 +465719,17.688,74.306 +465720,19.948,74.694 +465721,12.123,73.548 +465722,14.204,73.939 +465723,16.362,74.345 +465724,18.611,74.766 +465725,10.82,73.521 +465726,12.889,73.945 +465727,15.036,74.383 +465728,17.272,74.837 +465729,9.5184,73.493 +465730,11.576,73.95 +465731,13.709,74.422 +465732,15.931,74.908 +465733,8.2184,73.466 +465734,10.263,73.956 +465735,12.382,74.46 +465736,14.588,74.979 +465737,6.92,73.44 +465738,8.95,73.962 +465739,11.054,74.498 +465740,13.244,75.049 +465741,5.6231,73.413 +465742,7.6378,73.968 +465743,9.7257,74.536 +465744,11.899,75.119 +465745,4.3277,73.388 +465746,6.3262,73.974 +465747,8.3967,74.574 +465748,10.551,75.188 +465749,3.0339,73.362 +465750,5.015,73.98 +465751,7.0672,74.611 +465752,9.2021,75.257 +465753,1.7416,73.337 +465754,3.7044,73.986 +465755,5.7372,74.649 +465756,7.8515,75.325 +465757,0.45072,73.313 +465758,2.3942,73.993 +465759,4.4066,74.686 +465760,6.4993,75.393 +465761,359.16,73.289 +465762,1.0846,74 +465763,3.0755,74.723 +465764,5.1456,75.46 +465765,357.87,73.266 +465766,359.78,74.007 +465767,1.7439,74.76 +465768,3.7902,75.527 +465769,356.59,73.243 +465770,358.47,74.014 +465771,0.41181,74.797 +465772,2.4334,75.593 +465773,355.3,73.221 +465774,357.16,74.021 +465775,359.08,74.834 +465776,1.075,75.658 +465777,354.02,73.2 +465778,355.85,74.029 +465779,357.75,74.87 +465780,359.72,75.723 +465781,352.74,73.179 +465782,354.54,74.037 +465783,356.41,74.906 +465784,358.35,75.787 +465785,351.46,73.159 +465786,353.24,74.045 +465787,355.08,74.942 +465788,356.99,75.85 +465789,350.18,73.14 +465790,351.93,74.053 +465791,353.74,74.978 +465792,355.63,75.913 +465793,348.9,73.121 +465794,350.62,74.062 +465795,352.41,75.013 +465796,354.26,75.974 +465797,347.62,73.104 +465798,349.32,74.071 +465799,351.07,75.048 +465800,352.89,76.035 +465801,346.35,73.087 +465802,348.01,74.08 +465803,349.74,75.083 +465804,351.53,76.096 +465805,345.07,73.07 +465806,346.71,74.089 +465807,348.4,75.118 +465808,350.16,76.155 +465809,343.8,73.055 +465810,345.4,74.099 +465811,347.06,75.152 +465812,348.79,76.214 +465813,342.53,73.04 +465814,344.1,74.109 +465815,345.73,75.186 +465816,347.41,76.272 +465817,341.26,73.027 +465818,342.8,74.119 +465819,344.39,75.22 +465820,346.04,76.329 +465821,339.99,73.014 +465822,341.49,74.13 +465823,343.05,75.253 +465824,344.67,76.385 +465825,338.72,73.002 +465826,340.19,74.141 +465827,341.71,75.287 +465828,343.29,76.44 +465829,337.45,72.991 +465830,338.89,74.152 +465831,340.37,75.32 +465832,341.91,76.494 +465833,336.19,72.981 +465834,337.59,74.163 +465835,339.03,75.352 +465836,340.54,76.547 +465837,334.92,72.972 +465838,336.28,74.175 +465839,337.69,75.384 +465840,339.16,76.6 +465841,333.66,72.963 +465842,334.98,74.187 +465843,336.35,75.416 +465844,337.78,76.651 +465845,332.39,72.956 +465846,333.68,74.2 +465847,335.01,75.448 +465848,336.4,76.701 +465849,331.13,72.95 +465850,332.38,74.212 +465851,333.67,75.479 +465852,335.01,76.751 +465853,329.87,72.945 +465854,331.08,74.225 +465855,332.33,75.51 +465856,333.63,76.799 +465857,328.61,72.941 +465858,329.78,74.239 +465859,330.99,75.541 +465860,332.25,76.847 +465861,327.35,72.938 +465862,328.48,74.253 +465863,329.65,75.571 +465864,330.86,76.893 +465865,326.09,72.936 +465866,327.18,74.267 +465867,328.31,75.601 +465868,329.48,76.938 +465869,324.84,72.935 +465870,325.88,74.282 +465871,326.96,75.631 +465872,328.09,76.982 +465873,323.58,72.935 +465874,324.58,74.297 +465875,325.62,75.66 +465876,326.7,77.026 +465877,322.32,72.937 +465878,323.28,74.312 +465879,324.28,75.689 +465880,325.32,77.068 +465881,321.07,72.939 +465882,321.98,74.328 +465883,322.94,75.718 +465884,323.93,77.109 +465885,319.82,72.943 +465886,320.69,74.344 +465887,321.59,75.746 +465888,322.54,77.149 +465889,318.56,72.947 +465890,319.39,74.36 +465891,320.25,75.774 +465892,321.15,77.187 +465893,317.31,72.953 +465894,318.09,74.377 +465895,318.9,75.801 +465896,319.76,77.225 +465897,316.06,72.96 +465898,316.79,74.394 +465899,317.56,75.828 +465900,318.37,77.262 +465901,314.8,72.969 +465902,315.49,74.412 +465903,316.22,75.855 +465904,316.98,77.297 +465905,313.55,72.978 +465906,314.2,74.43 +465907,314.87,75.881 +465908,315.58,77.331 +465909,312.3,72.989 +465910,312.9,74.448 +465911,313.53,75.907 +465912,314.19,77.364 +465913,311.05,73 +465914,311.6,74.467 +465915,312.18,75.933 +465916,312.8,77.396 +465917,309.8,73.013 +465918,310.3,74.486 +465919,310.84,75.958 +465920,311.41,77.427 +465921,308.55,73.028 +465922,309.01,74.506 +465923,309.49,75.983 +465924,310.01,77.457 +465925,307.3,73.043 +465926,307.71,74.526 +465927,308.15,76.007 +465928,308.62,77.485 +465929,306.06,73.06 +465930,306.41,74.546 +465931,306.8,76.031 +465932,307.22,77.513 +465933,304.81,73.078 +465934,305.12,74.567 +465935,305.46,76.054 +465936,305.83,77.539 +465937,303.56,73.097 +465938,303.82,74.588 +465939,304.11,76.078 +465940,304.44,77.564 +465941,302.31,73.117 +465942,302.52,74.61 +465943,302.77,76.1 +465944,303.04,77.588 +465945,301.06,73.139 +465946,301.23,74.632 +465947,301.42,76.123 +465948,301.65,77.61 +465949,299.82,73.161 +465950,299.93,74.654 +465951,300.07,76.145 +465952,300.25,77.632 +465953,298.57,73.185 +465954,298.63,74.677 +465955,298.73,76.167 +465956,298.86,77.652 +465957,297.32,73.211 +465958,297.34,74.701 +465959,297.38,76.188 +465960,297.46,77.671 +465961,296.07,73.237 +465962,296.04,74.724 +465963,296.04,76.209 +465964,296.07,77.689 +465965,294.83,73.265 +465966,294.74,74.748 +465967,294.69,76.229 +465968,294.67,77.706 +465969,293.58,73.294 +465970,293.45,74.773 +465971,293.35,76.249 +465972,293.28,77.721 +465973,292.33,73.324 +465974,292.15,74.798 +465975,292,76.269 +465976,291.88,77.736 +465977,291.08,73.355 +465978,290.85,74.823 +465979,290.65,76.288 +465980,290.49,77.749 +465981,289.83,73.388 +465982,289.55,74.849 +465983,289.31,76.307 +465984,289.1,77.761 +465985,288.59,73.422 +465986,288.26,74.875 +465987,287.96,76.326 +465988,287.7,77.772 +465989,287.34,73.457 +465990,286.96,74.901 +465991,286.62,76.344 +465992,286.31,77.782 +465993,286.09,73.493 +465994,285.66,74.928 +465995,285.27,76.361 +465996,284.92,77.791 +465997,284.84,73.53 +465998,284.37,74.956 +465999,283.93,76.379 +466000,283.52,77.798 +466001,283.59,73.569 +466002,283.07,74.983 +466003,282.58,76.396 +466004,282.13,77.805 +466005,282.34,73.609 +466006,281.77,75.011 +466007,281.24,76.412 +466008,280.74,77.81 +466009,281.09,73.649 +466010,280.47,75.04 +466011,279.89,76.429 +466012,279.35,77.814 +466013,279.84,73.691 +466014,279.17,75.069 +466015,278.55,76.445 +466016,277.96,77.817 +466017,278.59,73.735 +466018,277.88,75.098 +466019,277.2,76.46 +466020,276.57,77.82 +466021,277.34,73.779 +466022,276.58,75.128 +466023,275.86,76.475 +466024,275.18,77.82 +466025,276.09,73.824 +466026,275.28,75.158 +466027,274.51,76.49 +466028,273.79,77.82 +466029,274.83,73.871 +466030,273.98,75.188 +466031,273.17,76.505 +466032,272.4,77.819 +466033,273.58,73.919 +466034,272.68,75.219 +466035,271.83,76.519 +466036,271.01,77.817 +466037,272.33,73.967 +466038,271.38,75.25 +466039,270.48,76.533 +466040,269.62,77.814 +466041,271.07,74.017 +466042,270.08,75.281 +466043,269.14,76.546 +466044,268.24,77.81 +466045,269.81,74.068 +466046,268.78,75.313 +466047,267.79,76.559 +466048,266.85,77.804 +466049,268.56,74.12 +466050,267.48,75.345 +466051,266.45,76.572 +466052,265.47,77.798 +466053,267.3,74.173 +466054,266.18,75.378 +466055,265.11,76.584 +466056,264.08,77.791 +466057,266.04,74.227 +466058,264.88,75.41 +466059,263.77,76.596 +466060,262.7,77.783 +466061,264.78,74.282 +466062,263.58,75.444 +466063,262.42,76.608 +466064,261.32,77.774 +466065,263.52,74.337 +466066,262.28,75.477 +466067,261.08,76.62 +466068,259.94,77.764 +466069,262.26,74.394 +466070,260.98,75.511 +466071,259.74,76.631 +466072,258.56,77.753 +466073,261,74.452 +466074,259.67,75.545 +466075,258.4,76.642 +466076,257.18,77.741 +466077,259.74,74.511 +466078,258.37,75.579 +466079,257.06,76.653 +466080,255.8,77.728 +466081,258.47,74.57 +466082,257.07,75.614 +466083,255.72,76.663 +466084,254.42,77.715 +466085,257.21,74.63 +466086,255.76,75.649 +466087,254.38,76.673 +466088,253.04,77.7 +466089,255.94,74.692 +466090,254.46,75.684 +466091,253.04,76.683 +466092,251.67,77.685 +466093,254.68,74.754 +466094,253.16,75.72 +466095,251.7,76.692 +466096,250.29,77.669 +466097,253.41,74.817 +466098,251.85,75.756 +466099,250.36,76.702 +466100,248.92,77.652 +466101,252.14,74.88 +466102,250.55,75.792 +466103,249.02,76.711 +466104,247.55,77.635 +466105,250.87,74.945 +466106,249.24,75.828 +466107,247.68,76.719 +466108,246.18,77.616 +466109,249.6,75.01 +466110,247.94,75.865 +466111,246.34,76.728 +466112,244.81,77.597 +466113,248.32,75.076 +466114,246.63,75.902 +466115,245,76.736 +466116,243.44,77.578 +466117,247.05,75.143 +466118,245.32,75.939 +466119,243.67,76.744 +466120,242.07,77.557 +466121,245.77,75.21 +466122,244.02,75.976 +466123,242.33,76.752 +466124,240.71,77.536 +466125,244.49,75.278 +466126,242.71,76.013 +466127,240.99,76.76 +466128,239.34,77.514 +466129,243.21,75.346 +466130,241.4,76.051 +466131,239.66,76.767 +466132,237.98,77.492 +466133,241.93,75.415 +466134,240.09,76.089 +466135,238.32,76.775 +466136,236.61,77.469 +466137,240.65,75.485 +466138,238.78,76.127 +466139,236.99,76.782 +466140,235.25,77.446 +466141,239.37,75.555 +466142,237.48,76.166 +466143,235.65,76.789 +466144,233.89,77.422 +466145,238.09,75.626 +466146,236.17,76.204 +466147,234.32,76.795 +466148,232.54,77.397 +466149,236.8,75.697 +466150,234.85,76.243 +466151,232.98,76.802 +466152,231.18,77.372 +466153,235.51,75.769 +466154,233.54,76.282 +466155,231.65,76.808 +466156,229.82,77.347 +466157,234.22,75.841 +466158,232.23,76.321 +466159,230.32,76.815 +466160,228.47,77.321 +466161,232.93,75.914 +466162,230.92,76.36 +466163,228.98,76.821 +466164,227.12,77.295 +466165,231.64,75.987 +466166,229.61,76.399 +466167,227.65,76.827 +466168,225.77,77.268 +466169,230.35,76.06 +466170,228.29,76.438 +466171,226.32,76.833 +466172,224.42,77.241 +466173,229.05,76.133 +466174,226.98,76.478 +466175,224.99,76.839 +466176,223.07,77.214 +466177,227.76,76.207 +466178,225.67,76.518 +466179,223.66,76.845 +466180,221.72,77.186 +466181,226.46,76.282 +466182,224.35,76.557 +466183,222.33,76.85 +466184,220.38,77.158 +466185,225.16,76.356 +466186,223.04,76.597 +466187,221,76.856 +466188,219.03,77.13 +466189,223.86,76.431 +466190,221.72,76.637 +466191,219.67,76.861 +466192,217.69,77.101 +466193,222.55,76.505 +466194,220.41,76.677 +466195,218.34,76.867 +466196,216.35,77.073 +466197,221.25,76.58 +466198,219.09,76.717 +466199,217.01,76.872 +466200,215.01,77.044 +466201,219.94,76.656 +466202,217.77,76.757 +466203,215.69,76.877 +466204,213.67,77.015 +466205,218.63,76.731 +466206,216.45,76.797 +466207,214.36,76.883 +466208,212.34,76.986 +466209,217.32,76.806 +466210,215.13,76.837 +466211,213.03,76.888 +466212,211,76.956 +466213,216.01,76.881 +466214,213.82,76.877 +466215,211.71,76.893 +466216,209.67,76.927 +466217,214.7,76.957 +466218,212.5,76.918 +466219,210.38,76.899 +466220,208.34,76.898 +466221,213.38,77.032 +466222,211.18,76.958 +466223,209.05,76.904 +466224,207.01,76.868 +466225,212.06,77.107 +466226,209.85,76.998 +466227,207.73,76.909 +466228,205.68,76.839 +466229,210.75,77.183 +466230,208.53,77.038 +466231,206.41,76.915 +466232,204.35,76.81 +466233,209.43,77.258 +466234,207.21,77.078 +466235,205.08,76.92 +466236,203.03,76.78 +466237,208.1,77.333 +466238,205.89,77.118 +466239,203.76,76.925 +466240,201.7,76.751 +466241,206.78,77.408 +466242,204.57,77.158 +466243,202.44,76.931 +466244,200.38,76.722 +466245,205.46,77.482 +466246,203.24,77.198 +466247,201.11,76.936 +466248,199.06,76.693 +466249,204.13,77.557 +466250,201.92,77.238 +466251,199.79,76.942 +466252,197.74,76.665 +466253,202.8,77.631 +466254,200.59,77.278 +466255,198.47,76.947 +466256,196.42,76.636 +466257,201.47,77.705 +466258,199.27,77.318 +466259,197.15,76.953 +466260,195.11,76.608 +466261,200.14,77.779 +466262,197.94,77.358 +466263,195.83,76.959 +466264,193.79,76.58 +466265,198.8,77.852 +466266,196.62,77.397 +466267,194.51,76.965 +466268,192.48,76.552 +466269,197.47,77.925 +466270,195.29,77.437 +466271,193.19,76.971 +466272,191.17,76.525 +466273,196.13,77.997 +466274,193.96,77.476 +466275,191.87,76.977 +466276,189.86,76.498 +466277,194.79,78.07 +466278,192.63,77.516 +466279,190.56,76.983 +466280,188.55,76.471 +466281,193.45,78.141 +466282,191.3,77.555 +466283,189.24,76.99 +466284,187.24,76.445 +466285,192.11,78.213 +466286,189.97,77.594 +466287,187.92,76.996 +466288,185.94,76.419 +466289,190.77,78.284 +466290,188.64,77.633 +466291,186.6,77.003 +466292,184.63,76.393 +466293,189.42,78.354 +466294,187.31,77.671 +466295,185.29,77.01 +466296,183.33,76.368 +466297,188.07,78.424 +466298,185.98,77.71 +466299,183.97,77.017 +466300,182.03,76.344 +466301,186.73,78.493 +466302,184.65,77.748 +466303,182.66,77.025 +466304,180.73,76.32 +466305,185.38,78.562 +466306,183.32,77.786 +466307,181.34,77.032 +466308,179.43,76.297 +466309,184.02,78.63 +466310,181.99,77.824 +466311,180.03,77.04 +466312,178.14,76.274 +466313,182.67,78.697 +466314,180.65,77.862 +466315,178.72,77.048 +466316,176.84,76.252 +466317,181.32,78.764 +466318,179.32,77.9 +466319,177.4,77.056 +466320,175.55,76.23 +466321,179.96,78.83 +466322,177.99,77.937 +466323,176.09,77.064 +466324,174.26,76.209 +466325,178.6,78.895 +466326,176.65,77.974 +466327,174.78,77.073 +466328,172.97,76.189 +466329,177.24,78.96 +466330,175.32,78.011 +466331,173.47,77.081 +466332,171.68,76.169 +466333,175.88,79.024 +466334,173.98,78.048 +466335,172.15,77.09 +466336,170.39,76.15 +466337,174.52,79.087 +466338,172.65,78.084 +466339,170.84,77.1 +466340,169.1,76.132 +466341,173.16,79.15 +466342,171.31,78.12 +466343,169.53,77.109 +466344,167.82,76.115 +466345,171.79,79.211 +466346,169.97,78.156 +466347,168.22,77.119 +466348,166.53,76.098 +466349,170.43,79.272 +466350,168.63,78.192 +466351,166.91,77.129 +466352,165.25,76.083 +466353,169.06,79.332 +466354,167.3,78.227 +466355,165.6,77.14 +466356,163.97,76.068 +466357,167.69,79.391 +466358,165.96,78.262 +466359,164.29,77.15 +466360,162.69,76.054 +466361,166.32,79.449 +466362,164.62,78.297 +466363,162.99,77.161 +466364,161.41,76.041 +466365,164.95,79.506 +466366,163.28,78.332 +466367,161.68,77.173 +466368,160.13,76.028 +466369,163.58,79.563 +466370,161.94,78.366 +466371,160.37,77.184 +466372,158.85,76.017 +466373,162.2,79.618 +466374,160.6,78.4 +466375,159.06,77.196 +466376,157.58,76.007 +466377,160.83,79.673 +466378,159.26,78.433 +466379,157.75,77.208 +466380,156.3,75.997 +466381,159.45,79.726 +466382,157.92,78.467 +466383,156.45,77.221 +466384,155.03,75.989 +466385,158.07,79.778 +466386,156.58,78.5 +466387,155.14,77.234 +466388,153.75,75.981 +466389,156.7,79.83 +466390,155.24,78.532 +466391,153.84,77.247 +466392,152.48,75.975 +466393,155.32,79.88 +466394,153.89,78.564 +466395,152.53,77.261 +466396,151.21,75.969 +466397,153.94,79.93 +466398,152.55,78.596 +466399,151.22,77.275 +466400,149.94,75.965 +466401,152.56,79.978 +466402,151.21,78.628 +466403,149.92,77.289 +466404,148.67,75.961 +466405,151.17,80.0255 +466406,149.87,78.659 +466407,148.61,77.304 +466408,147.41,75.959 +466409,149.79,80.0717 +466410,148.52,78.69 +466411,147.31,77.319 +466412,146.14,75.958 +466413,148.41,80.1169 +466414,147.18,78.721 +466415,146,77.334 +466416,144.87,75.958 +466417,147.02,80.161 +466418,145.84,78.751 +466419,144.7,77.35 +466420,143.61,75.959 +466421,145.63,80.2039 +466422,144.49,78.781 +466423,143.4,77.366 +466424,142.35,75.961 +466425,144.25,80.2458 +466426,143.15,78.81 +466427,142.09,77.383 +466428,141.08,75.964 +466429,142.86,80.2865 +466430,141.8,78.839 +466431,140.79,77.4 +466432,139.82,75.969 +466433,141.47,80.3261 +466434,140.46,78.868 +466435,139.49,77.417 +466436,138.56,75.974 +466437,140.08,80.3645 +466438,139.11,78.896 +466439,138.18,77.435 +466440,137.3,75.981 +466441,138.69,80.4018 +466442,137.77,78.924 +466443,136.88,77.453 +466444,136.04,75.989 +466445,137.3,80.438 +466446,136.42,78.952 +466447,135.58,77.471 +466448,134.78,75.998 +466449,135.91,80.4729 +466450,135.07,78.979 +466451,134.28,77.49 +466452,133.52,76.008 +466453,134.52,80.5067 +466454,133.73,79.006 +466455,132.97,77.51 +466456,132.26,76.02 +466457,133.13,80.5393 +466458,132.38,79.032 +466459,131.67,77.529 +466460,131,76.032 +466461,131.74,80.5708 +466462,131.03,79.058 +466463,130.37,77.55 +466464,129.74,76.046 +466465,130.34,80.601 +466466,129.69,79.084 +466467,129.07,77.57 +466468,128.49,76.062 +466469,128.95,80.6301 +466470,128.34,79.109 +466471,127.77,77.591 +466472,127.23,76.078 +466473,127.56,80.658 +466474,126.99,79.134 +466475,126.47,77.612 +466476,125.97,76.096 +466477,126.16,80.6846 +466478,125.65,79.158 +466479,125.16,77.634 +466480,124.72,76.115 +466481,124.77,80.7101 +466482,124.3,79.182 +466483,123.86,77.656 +466484,123.46,76.135 +466485,123.38,80.7344 +466486,122.95,79.206 +466487,122.56,77.679 +466488,122.21,76.156 +466489,121.98,80.7575 +466490,121.6,79.229 +466491,121.26,77.702 +466492,120.95,76.179 +466493,120.59,80.7794 +466494,120.25,79.252 +466495,119.96,77.726 +466496,119.7,76.203 +466497,119.19,80.8 +466498,118.91,79.274 +466499,118.66,77.75 +466500,118.44,76.228 +466501,117.8,80.8195 +466502,117.56,79.296 +466503,117.36,77.774 +466504,117.19,76.254 +466505,116.4,80.8378 +466506,116.21,79.318 +466507,116.06,77.799 +466508,115.93,76.282 +466509,115.01,80.8549 +466510,114.86,79.339 +466511,114.75,77.824 +466512,114.68,76.311 +466513,113.61,80.8709 +466514,113.51,79.36 +466515,113.45,77.849 +466516,113.42,76.341 +466517,112.21,80.8856 +466518,112.17,79.38 +466519,112.15,77.875 +466520,112.17,76.372 +466521,110.82,80.8991 +466522,110.82,79.4 +466523,110.85,77.902 +466524,110.91,76.405 +466525,109.42,80.9115 +466526,109.47,79.42 +466527,109.55,77.928 +466528,109.66,76.439 +466529,108.03,80.9227 +466530,108.12,79.439 +466531,108.25,77.956 +466532,108.41,76.474 +466533,106.63,80.9327 +466534,106.77,79.458 +466535,106.95,77.983 +466536,107.15,76.51 +466537,105.24,80.9416 +466538,105.43,79.476 +466539,105.65,78.011 +466540,105.9,76.547 +466541,103.84,80.9494 +466542,104.08,79.494 +466543,104.34,78.04 +466544,104.64,76.586 +466545,102.45,80.9559 +466546,102.73,79.512 +466547,103.04,78.068 +466548,103.39,76.626 +466549,101.06,80.9614 +466550,101.38,79.529 +466551,101.74,78.098 +466552,102.13,76.667 +466553,99.663,80.9657 +466554,100.03,79.546 +466555,100.44,78.127 +466556,100.88,76.71 +466557,98.27,80.9689 +466558,98.687,79.563 +466559,99.137,78.157 +466560,99.619,76.753 +466561,96.877,80.971 +466562,97.34,79.579 +466563,97.835,78.188 +466564,98.363,76.798 +466565,95.485,80.9721 +466566,95.992,79.595 +466567,96.532,78.218 +466568,97.106,76.844 +466569,94.093,80.972 +466570,94.645,79.611 +466571,95.23,78.25 +466572,95.848,76.891 +466573,92.701,80.9708 +466574,93.298,79.626 +466575,93.927,78.281 +466576,94.59,76.939 +466577,91.311,80.9686 +466578,91.951,79.64 +466579,92.624,78.313 +466580,93.332,76.988 +466581,89.92,80.9654 +466582,90.604,79.655 +466583,91.321,78.345 +466584,92.073,77.038 +466585,88.531,80.9611 +466586,89.257,79.669 +466587,90.018,78.378 +466588,90.814,77.09 +466589,87.142,80.9558 +466590,87.91,79.683 +466591,88.714,78.411 +466592,89.554,77.142 +466593,85.753,80.9495 +466594,86.564,79.696 +466595,87.41,78.444 +466596,88.293,77.196 +466597,84.366,80.9422 +466598,85.218,79.709 +466599,86.106,78.478 +466600,87.031,77.25 +466601,82.979,80.9339 +466602,83.872,79.722 +466603,84.802,78.512 +466604,85.769,77.306 +466605,81.592,80.9247 +466606,82.526,79.734 +466607,83.497,78.546 +466608,84.506,77.363 +466609,80.207,80.9145 +466610,81.181,79.746 +466611,82.192,78.581 +466612,83.243,77.42 +466613,78.822,80.9035 +466614,79.836,79.758 +466615,80.887,78.616 +466616,81.978,77.479 +466617,77.439,80.8915 +466618,78.491,79.77 +466619,79.582,78.651 +466620,80.713,77.538 +466621,76.056,80.8786 +466622,77.146,79.781 +466623,78.276,78.687 +466624,79.446,77.599 +466625,74.674,80.8648 +466626,75.802,79.792 +466627,76.97,78.723 +466628,78.179,77.66 +466629,73.293,80.8502 +466630,74.458,79.802 +466631,75.663,78.759 +466632,76.911,77.723 +466633,71.912,80.8348 +466634,73.114,79.813 +466635,74.357,78.796 +466636,75.642,77.786 +466637,70.533,80.8185 +466638,71.77,79.823 +466639,73.049,78.833 +466640,74.372,77.85 +466641,69.155,80.8015 +466642,70.427,79.833 +466643,71.742,78.87 +466644,73.101,77.915 +466645,67.778,80.7836 +466646,69.084,79.842 +466647,70.434,78.907 +466648,71.829,77.981 +466649,66.402,80.7651 +466650,67.742,79.852 +466651,69.126,78.945 +466652,70.556,78.047 +466653,65.027,80.7458 +466654,66.4,79.861 +466655,67.817,78.983 +466656,69.281,78.114 +466657,63.653,80.7258 +466658,65.058,79.869 +466659,66.508,79.021 +466660,68.006,78.182 +466661,62.28,80.7051 +466662,63.716,79.878 +466663,65.198,79.059 +466664,66.729,78.251 +466665,60.908,80.6837 +466666,62.375,79.886 +466667,63.888,79.098 +466668,65.451,78.32 +466669,59.538,80.6617 +466670,61.034,79.895 +466671,62.578,79.137 +466672,64.172,78.39 +466673,58.168,80.6391 +466674,59.694,79.903 +466675,61.267,79.176 +466676,62.892,78.461 +466677,56.8,80.6159 +466678,58.354,79.91 +466679,59.956,79.215 +466680,61.611,78.533 +466681,55.433,80.5921 +466682,57.014,79.918 +466683,58.645,79.255 +466684,60.328,78.604 +466685,54.068,80.5678 +466686,55.675,79.925 +466687,57.332,79.294 +466688,59.044,78.677 +466689,52.703,80.5429 +466690,54.336,79.933 +466691,56.02,79.334 +466692,57.758,78.75 +466693,51.34,80.5176 +466694,52.997,79.94 +466695,54.707,79.374 +466696,56.472,78.824 +466697,49.978,80.4918 +466698,51.659,79.947 +466699,53.393,79.415 +466700,55.184,78.898 +466701,48.618,80.4655 +466702,50.322,79.954 +466703,52.079,79.455 +466704,53.894,78.972 +466705,47.258,80.4388 +466706,48.985,79.96 +466707,50.765,79.495 +466708,52.603,79.047 +466709,45.901,80.4117 +466710,47.648,79.967 +466711,49.45,79.536 +466712,51.311,79.122 +466713,44.544,80.3843 +466714,46.311,79.973 +466715,48.134,79.577 +466716,50.017,79.198 +466717,43.189,80.3565 +466718,44.976,79.979 +466719,46.818,79.618 +466720,48.722,79.274 +466721,41.835,80.3284 +466722,43.64,79.986 +466723,45.502,79.659 +466724,47.425,79.35 +466725,40.483,80.3 +466726,42.305,79.992 +466727,44.185,79.7 +466728,46.127,79.427 +466729,39.132,80.2713 +466730,40.971,79.998 +466731,42.867,79.741 +466732,44.827,79.504 +466733,37.782,80.2424 +466734,39.637,80.0037 +466735,41.549,79.782 +466736,43.526,79.581 +466737,36.434,80.2133 +466738,38.303,80.0095 +466739,40.231,79.824 +466740,42.224,79.658 +466741,35.087,80.184 +466742,36.97,80.0154 +466743,38.912,79.865 +466744,40.919,79.736 +466745,33.742,80.1546 +466746,35.637,80.0212 +466747,37.592,79.907 +466748,39.614,79.813 +466749,32.398,80.125 +466750,34.305,80.0269 +466751,36.272,79.948 +466752,38.306,79.891 +466753,31.056,80.0953 +466754,32.973,80.0326 +466755,34.951,79.99 +466756,36.997,79.969 +466757,29.715,80.0656 +466758,31.642,80.0383 +466759,33.63,80.0312 +466760,35.687,80.047 +466761,28.375,80.0358 +466762,30.311,80.044 +466763,32.308,80.0728 +466764,34.375,80.1249 +466765,27.037,80.006 +466766,28.981,80.0497 +466767,30.986,80.1144 +466768,33.061,80.2028 +466769,25.701,79.976 +466770,27.651,80.0554 +466771,29.663,80.156 +466772,31.746,80.2807 +466773,24.366,79.946 +466774,26.321,80.0612 +466775,28.34,80.1976 +466776,30.429,80.3585 +466777,23.032,79.917 +466778,24.993,80.0669 +466779,27.016,80.2391 +466780,29.11,80.4362 +466781,21.7,79.887 +466782,23.664,80.0727 +466783,25.691,80.2807 +466784,27.79,80.5138 +466785,20.37,79.858 +466786,22.336,80.0786 +466787,24.366,80.3221 +466788,26.468,80.5913 +466789,19.041,79.828 +466790,21.009,80.0845 +466791,23.041,80.3636 +466792,25.145,80.6685 +466793,17.713,79.799 +466794,19.682,80.0905 +466795,21.715,80.4049 +466796,23.82,80.7456 +466797,16.387,79.77 +466798,18.355,80.0965 +466799,20.388,80.4462 +466800,22.493,80.8224 +466801,15.063,79.742 +466802,17.029,80.1027 +466803,19.061,80.4875 +466804,21.165,80.8989 +466805,13.74,79.713 +466806,15.704,80.1089 +466807,17.733,80.5286 +466808,19.835,80.9752 +466809,12.418,79.685 +466810,14.379,80.1153 +466811,16.404,80.5696 +466812,18.504,81.0511 +466813,11.098,79.657 +466814,13.054,80.1217 +466815,15.075,80.6105 +466816,17.171,81.1267 +466817,9.7791,79.63 +466818,11.73,80.1283 +466819,13.746,80.6513 +466820,15.836,81.2019 +466821,8.4619,79.603 +466822,10.407,80.135 +466823,12.416,80.692 +466824,14.5,81.2767 +466825,7.1462,79.576 +466826,9.0835,80.1418 +466827,11.085,80.7325 +466828,13.162,81.351 +466829,5.8319,79.55 +466830,7.7608,80.1488 +466831,9.7543,80.7729 +466832,11.822,81.4249 +466833,4.519,79.524 +466834,6.4386,80.156 +466835,8.4227,80.8132 +466836,10.481,81.4983 +466837,3.2077,79.499 +466838,5.1169,80.1633 +466839,7.0905,80.8533 +466840,9.1384,81.5711 +466841,1.8977,79.474 +466842,3.7957,80.1708 +466843,5.7578,80.8932 +466844,7.7941,81.6435 +466845,0.58915,79.449 +466846,2.4749,80.1785 +466847,4.4245,80.9329 +466848,6.4483,81.7152 +466849,359.28,79.426 +466850,1.1546,80.1864 +466851,3.0908,80.9724 +466852,5.1009,81.7864 +466853,357.98,79.402 +466854,359.83,80.1945 +466855,1.7565,81.0117 +466856,3.752,81.8569 +466857,356.67,79.38 +466858,358.52,80.2028 +466859,0.42165,81.0509 +466860,2.4016,81.9268 +466861,355.37,79.358 +466862,357.2,80.2113 +466863,359.09,81.0898 +466864,1.0496,81.996 +466865,354.07,79.337 +466866,355.88,80.2201 +466867,357.75,81.1285 +466868,359.7,82.0646 +466869,352.77,79.316 +466870,354.56,80.229 +466871,356.41,81.1669 +466872,358.34,82.1324 +466873,351.47,79.296 +466874,353.24,80.2383 +466875,355.08,81.2051 +466876,356.98,82.1994 +466877,350.17,79.277 +466878,351.92,80.2477 +466879,353.74,81.2431 +466880,355.63,82.2657 +466881,348.87,79.259 +466882,350.61,80.2575 +466883,352.4,81.2808 +466884,354.27,82.3312 +466885,347.58,79.241 +466886,349.29,80.2675 +466887,351.06,81.3183 +466888,352.91,82.3959 +466889,346.29,79.224 +466890,347.98,80.2777 +466891,349.73,81.3555 +466892,351.54,82.4598 +466893,344.99,79.208 +466894,346.66,80.2883 +466895,348.39,81.3924 +466896,350.18,82.5228 +466897,343.7,79.193 +466898,345.34,80.2991 +466899,347.05,81.429 +466900,348.82,82.5849 +466901,342.41,79.179 +466902,344.03,80.3103 +466903,345.71,81.4653 +466904,347.45,82.6461 +466905,341.12,79.165 +466906,342.72,80.3217 +466907,344.37,81.5014 +466908,346.08,82.7064 +466909,339.84,79.153 +466910,341.4,80.3335 +466911,343.02,81.5371 +466912,344.71,82.7658 +466913,338.55,79.141 +466914,340.09,80.3455 +466915,341.68,81.5725 +466916,343.34,82.8242 +466917,337.26,79.13 +466918,338.77,80.3579 +466919,340.34,81.6076 +466920,341.97,82.8817 +466921,335.98,79.121 +466922,337.46,80.3706 +466923,339,81.6424 +466924,340.6,82.9381 +466925,334.7,79.112 +466926,336.15,80.3837 +466927,337.66,81.6769 +466928,339.23,82.9936 +466929,333.41,79.104 +466930,334.84,80.3971 +466931,336.31,81.711 +466932,337.85,83.048 +466933,332.13,79.098 +466934,333.52,80.4108 +466935,334.97,81.7448 +466936,336.48,83.1014 +466937,330.85,79.092 +466938,332.21,80.4249 +466939,333.62,81.7782 +466940,335.1,83.1537 +466941,329.57,79.087 +466942,330.9,80.4393 +466943,332.28,81.8113 +466944,333.72,83.205 +466945,328.3,79.084 +466946,329.59,80.4541 +466947,330.94,81.844 +466948,332.34,83.2552 +466949,327.02,79.081 +466950,328.28,80.4693 +466951,329.59,81.8764 +466952,330.96,83.3042 +466953,325.74,79.08 +466954,326.97,80.4848 +466955,328.24,81.9084 +466956,329.58,83.3522 +466957,324.47,79.08 +466958,325.66,80.5007 +466959,326.9,81.94 +466960,328.2,83.399 +466961,323.19,79.081 +466962,324.35,80.517 +466963,325.55,81.9712 +466964,326.81,83.4447 +466965,321.92,79.083 +466966,323.04,80.5337 +466967,324.21,82.0021 +466968,325.43,83.4893 +466969,320.65,79.086 +466970,321.73,80.5508 +466971,322.86,82.0326 +466972,324.04,83.5327 +466973,319.38,79.091 +466974,320.42,80.5683 +466975,321.51,82.0627 +466976,322.66,83.5749 +466977,318.1,79.096 +466978,319.11,80.5861 +466979,320.17,82.0924 +466980,321.27,83.6159 +466981,316.83,79.103 +466982,317.8,80.6044 +466983,318.82,82.1217 +466984,319.88,83.6558 +466985,315.56,79.111 +466986,316.49,80.623 +466987,317.47,82.1507 +466988,318.49,83.6945 +466989,314.3,79.12 +466990,315.19,80.6421 +466991,316.12,82.1792 +466992,317.11,83.7319 +466993,313.03,79.13 +466994,313.88,80.6616 +466995,314.77,82.2073 +466996,315.72,83.7681 +466997,311.76,79.142 +466998,312.57,80.6815 +466999,313.42,82.235 +467000,314.33,83.8032 +467001,310.49,79.155 +467002,311.26,80.7018 +467003,312.08,82.2623 +467004,312.93,83.837 +467005,309.23,79.169 +467006,309.96,80.7225 +467007,310.73,82.2892 +467008,311.54,83.8695 +467009,307.96,79.184 +467010,308.65,80.7437 +467011,309.38,82.3157 +467012,310.15,83.9009 +467013,306.69,79.201 +467014,307.34,80.7652 +467015,308.03,82.3418 +467016,308.76,83.931 +467017,305.43,79.219 +467018,306.03,80.7872 +467019,306.68,82.3675 +467020,307.36,83.9598 +467021,304.16,79.238 +467022,304.73,80.8096 +467023,305.33,82.3927 +467024,305.97,83.9875 +467025,302.9,79.258 +467026,303.42,80.8324 +467027,303.98,82.4176 +467028,304.58,84.0138 +467029,301.64,79.28 +467030,302.11,80.8557 +467031,302.63,82.442 +467032,303.18,84.039 +467033,300.37,79.303 +467034,300.81,80.8793 +467035,301.28,82.466 +467036,301.79,84.0628 +467037,299.11,79.327 +467038,299.5,80.9034 +467039,299.93,82.4896 +467040,300.39,84.0855 +467041,297.84,79.353 +467042,298.19,80.928 +467043,298.58,82.5128 +467044,299,84.1069 +467045,296.58,79.38 +467046,296.89,80.9529 +467047,297.22,82.5355 +467048,297.6,84.127 +467049,295.32,79.408 +467050,295.58,80.9783 +467051,295.87,82.5579 +467052,296.2,84.1459 +467053,294.06,79.437 +467054,294.27,81.0041 +467055,294.52,82.5798 +467056,294.81,84.1636 +467057,292.79,79.468 +467058,292.97,81.0303 +467059,293.17,82.6013 +467060,293.41,84.18 +467061,291.53,79.5 +467062,291.66,81.057 +467063,291.82,82.6224 +467064,292.02,84.1952 +467065,290.27,79.533 +467066,290.35,81.084 +467067,290.47,82.6431 +467068,290.62,84.2091 +467069,289.01,79.567 +467070,289.05,81.1115 +467071,289.12,82.6634 +467072,289.22,84.2219 +467073,287.75,79.603 +467074,287.74,81.1394 +467075,287.77,82.6832 +467076,287.83,84.2334 +467077,286.48,79.64 +467078,286.43,81.1678 +467079,286.42,82.7027 +467080,286.43,84.2437 +467081,285.22,79.678 +467082,285.13,81.1965 +467083,285.06,82.7217 +467084,285.03,84.2528 +467085,283.96,79.718 +467086,283.82,81.2257 +467087,283.71,82.7404 +467088,283.64,84.2607 +467089,282.7,79.758 +467090,282.51,81.2552 +467091,282.36,82.7586 +467092,282.24,84.2674 +467093,281.43,79.8 +467094,281.21,81.2852 +467095,281.01,82.7765 +467096,280.85,84.2729 +467097,280.17,79.843 +467098,279.9,81.3156 +467099,279.66,82.794 +467100,279.45,84.2773 +467101,278.91,79.888 +467102,278.59,81.3463 +467103,278.31,82.811 +467104,278.05,84.2805 +467105,277.64,79.933 +467106,277.28,81.3775 +467107,276.96,82.8277 +467108,276.66,84.2825 +467109,276.38,79.98 +467110,275.98,81.4091 +467111,275.61,82.844 +467112,275.26,84.2834 +467113,275.11,80.028 +467114,274.67,81.441 +467115,274.25,82.8599 +467116,273.87,84.2832 +467117,273.85,80.0771 +467118,273.36,81.4734 +467119,272.9,82.8754 +467120,272.48,84.2819 +467121,272.59,80.1274 +467122,272.05,81.5061 +467123,271.55,82.8906 +467124,271.08,84.2794 +467125,271.32,80.1788 +467126,270.75,81.5392 +467127,270.2,82.9054 +467128,269.69,84.2759 +467129,270.05,80.2313 +467130,269.44,81.5727 +467131,268.85,82.9198 +467132,268.29,84.2713 +467133,268.79,80.285 +467134,268.13,81.6065 +467135,267.5,82.9339 +467136,266.9,84.2656 +467137,267.52,80.3397 +467138,266.82,81.6407 +467139,266.15,82.9476 +467140,265.51,84.2589 +467141,266.25,80.3956 +467142,265.51,81.6753 +467143,264.8,82.961 +467144,264.12,84.2512 +467145,264.99,80.4525 +467146,264.2,81.7102 +467147,263.45,82.974 +467148,262.73,84.2424 +467149,263.72,80.5104 +467150,262.89,81.7454 +467151,262.1,82.9867 +467152,261.34,84.2327 +467153,262.45,80.5694 +467154,261.58,81.781 +467155,260.75,82.9991 +467156,259.95,84.2219 +467157,261.18,80.6294 +467158,260.27,81.817 +467159,259.4,83.0111 +467160,258.56,84.2102 +467161,259.91,80.6905 +467162,258.96,81.8532 +467163,258.05,83.0228 +467164,257.17,84.1976 +467165,258.63,80.7524 +467166,257.65,81.8898 +467167,256.7,83.0342 +467168,255.79,84.184 +467169,257.36,80.8154 +467170,256.34,81.9267 +467171,255.36,83.0453 +467172,254.4,84.1695 +467173,256.09,80.8793 +467174,255.03,81.9639 +467175,254.01,83.0561 +467176,253.01,84.1541 +467177,254.82,80.9441 +467178,253.72,82.0014 +467179,252.66,83.0666 +467180,251.63,84.1379 +467181,253.54,81.0098 +467182,252.41,82.0392 +467183,251.31,83.0768 +467184,250.24,84.1208 +467185,252.26,81.0764 +467186,251.1,82.0773 +467187,249.96,83.0868 +467188,248.86,84.1029 +467189,250.99,81.1438 +467190,249.79,82.1157 +467191,248.62,83.0964 +467192,247.48,84.0841 +467193,249.71,81.212 +467194,248.47,82.1543 +467195,247.27,83.1058 +467196,246.1,84.0646 +467197,248.43,81.2811 +467198,247.16,82.1932 +467199,245.92,83.1149 +467200,244.72,84.0443 +467201,247.15,81.3509 +467202,245.85,82.2324 +467203,244.58,83.1238 +467204,243.34,84.0233 +467205,245.87,81.4215 +467206,244.53,82.2718 +467207,243.23,83.1325 +467208,241.96,84.0016 +467209,244.59,81.4929 +467210,243.22,82.3115 +467211,241.88,83.1409 +467212,240.58,83.9791 +467213,243.31,81.5649 +467214,241.91,82.3513 +467215,240.54,83.149 +467216,239.21,83.956 +467217,242.02,81.6377 +467218,240.59,82.3915 +467219,239.19,83.157 +467220,237.83,83.9323 +467221,240.74,81.711 +467222,239.28,82.4318 +467223,237.85,83.1647 +467224,236.46,83.9079 +467225,239.45,81.7851 +467226,237.96,82.4723 +467227,236.5,83.1723 +467228,235.08,83.8829 +467229,238.17,81.8597 +467230,236.64,82.513 +467231,235.16,83.1796 +467232,233.71,83.8573 +467233,236.88,81.9349 +467234,235.33,82.554 +467235,233.81,83.1868 +467236,232.34,83.8312 +467237,235.59,82.0106 +467238,234.01,82.5951 +467239,232.47,83.1938 +467240,230.97,83.8046 +467241,234.3,82.0869 +467242,232.69,82.6363 +467243,231.13,83.2006 +467244,229.6,83.7775 +467245,233.01,82.1636 +467246,231.38,82.6778 +467247,229.79,83.2072 +467248,228.23,83.7498 +467249,231.71,82.2409 +467250,230.06,82.7194 +467251,228.44,83.2137 +467252,226.87,83.7218 +467253,230.42,82.3185 +467254,228.74,82.7611 +467255,227.1,83.2201 +467256,225.5,83.6933 +467257,229.12,82.3966 +467258,227.42,82.803 +467259,225.76,83.2263 +467260,224.14,83.6645 +467261,227.82,82.4751 +467262,226.1,82.845 +467263,224.42,83.2324 +467264,222.78,83.6352 +467265,226.53,82.5539 +467266,224.78,82.8871 +467267,223.08,83.2384 +467268,221.42,83.6056 +467269,225.23,82.633 +467270,223.46,82.9293 +467271,221.74,83.2443 +467272,220.06,83.5757 +467273,223.92,82.7124 +467274,222.14,82.9716 +467275,220.4,83.2501 +467276,218.7,83.5456 +467277,222.62,82.7921 +467278,220.82,83.014 +467279,219.06,83.2558 +467280,217.34,83.5151 +467281,221.32,82.872 +467282,219.49,83.0564 +467283,217.72,83.2614 +467284,215.99,83.4845 +467285,220.01,82.9521 +467286,218.17,83.099 +467287,216.38,83.267 +467288,214.63,83.4536 +467289,218.71,83.0324 +467290,216.85,83.1416 +467291,215.04,83.2725 +467292,213.28,83.4226 +467293,217.4,83.1128 +467294,215.53,83.1842 +467295,213.7,83.2779 +467296,211.93,83.3914 +467297,216.09,83.1933 +467298,214.2,83.2269 +467299,212.37,83.2833 +467300,210.58,83.3601 +467301,214.78,83.2739 +467302,212.88,83.2696 +467303,211.03,83.2887 +467304,209.23,83.3287 +467305,213.46,83.3546 +467306,211.55,83.3123 +467307,209.69,83.2941 +467308,207.88,83.2972 +467309,212.15,83.4353 +467310,210.23,83.3551 +467311,208.36,83.2994 +467312,206.53,83.2657 +467313,210.83,83.5159 +467314,208.9,83.3978 +467315,207.02,83.3048 +467316,205.19,83.2342 +467317,209.52,83.5966 +467318,207.57,83.4405 +467319,205.68,83.3101 +467320,203.85,83.2027 +467321,208.2,83.6771 +467322,206.25,83.4832 +467323,204.35,83.3155 +467324,202.5,83.1713 +467325,206.88,83.7576 +467326,204.92,83.5258 +467327,203.02,83.3209 +467328,201.16,83.14 +467329,205.55,83.8379 +467330,203.59,83.5684 +467331,201.68,83.3264 +467332,199.82,83.1087 +467333,204.23,83.918 +467334,202.26,83.611 +467335,200.35,83.3319 +467336,198.49,83.0776 +467337,202.91,83.9979 +467338,200.93,83.6535 +467339,199.02,83.3374 +467340,197.15,83.0467 +467341,201.58,84.0777 +467342,199.6,83.6959 +467343,197.68,83.343 +467344,195.82,83.016 +467345,200.25,84.1571 +467346,198.27,83.7382 +467347,196.35,83.3487 +467348,194.48,82.9855 +467349,198.92,84.2363 +467350,196.94,83.7805 +467351,195.02,83.3545 +467352,193.15,82.9552 +467353,197.59,84.3151 +467354,195.61,83.8226 +467355,193.69,83.3604 +467356,191.82,82.9252 +467357,196.26,84.3937 +467358,194.28,83.8647 +467359,192.36,83.3664 +467360,190.49,82.8955 +467361,194.93,84.4718 +467362,192.95,83.9066 +467363,191.03,83.3724 +467364,189.16,82.8662 +467365,193.59,84.5495 +467366,191.61,83.9483 +467367,189.7,83.3787 +467368,187.84,82.8372 +467369,192.25,84.6268 +467370,190.28,83.99 +467371,188.37,83.385 +467372,186.51,82.8086 +467373,190.91,84.7036 +467374,188.94,84.0314 +467375,187.04,83.3915 +467376,185.19,82.7805 +467377,189.57,84.78 +467378,187.61,84.0728 +467379,185.71,83.3982 +467380,183.87,82.7527 +467381,188.23,84.8558 +467382,186.28,84.1139 +467383,184.38,83.405 +467384,182.54,82.7255 +467385,186.89,84.931 +467386,184.94,84.1549 +467387,183.05,83.4119 +467388,181.23,82.6987 +467389,185.54,85.0057 +467390,183.6,84.1957 +467391,181.73,83.4191 +467392,179.91,82.6725 +467393,184.2,85.0798 +467394,182.27,84.2363 +467395,180.4,83.4264 +467396,178.59,82.6468 +467397,182.85,85.1532 +467398,180.93,84.2766 +467399,179.07,83.434 +467400,177.28,82.6217 +467401,181.5,85.226 +467402,179.59,84.3168 +467403,177.75,83.4417 +467404,175.96,82.5972 +467405,180.15,85.2981 +467406,178.25,84.3567 +467407,176.42,83.4497 +467408,174.65,82.5734 +467409,178.8,85.3695 +467410,176.91,84.3964 +467411,175.1,83.4579 +467412,173.34,82.5502 +467413,177.44,85.4401 +467414,175.58,84.4359 +467415,173.77,83.4663 +467416,172.03,82.5276 +467417,176.09,85.51 +467418,174.24,84.4751 +467419,172.45,83.4749 +467420,170.72,82.5058 +467421,174.73,85.5791 +467422,172.9,84.5141 +467423,171.13,83.4838 +467424,169.41,82.4847 +467425,173.37,85.6474 +467426,171.56,84.5528 +467427,169.8,83.493 +467428,168.1,82.4644 +467429,172.02,85.7149 +467430,170.21,84.5912 +467431,168.48,83.5024 +467432,166.8,82.4448 +467433,170.65,85.7815 +467434,168.87,84.6293 +467435,167.16,83.5121 +467436,165.5,82.426 +467437,169.29,85.8472 +467438,167.53,84.6671 +467439,165.83,83.522 +467440,164.19,82.4081 +467441,167.93,85.912 +467442,166.19,84.7047 +467443,164.51,83.5323 +467444,162.89,82.391 +467445,166.56,85.9758 +467446,164.84,84.7419 +467447,163.19,83.5428 +467448,161.59,82.3748 +467449,165.2,86.0388 +467450,163.5,84.7789 +467451,161.87,83.5536 +467452,160.29,82.3595 +467453,163.83,86.1007 +467454,162.16,84.8155 +467455,160.55,83.5648 +467456,159,82.345 +467457,162.46,86.1617 +467458,160.81,84.8517 +467459,159.23,83.5762 +467460,157.7,82.3315 +467461,161.09,86.2216 +467462,159.47,84.8877 +467463,157.91,83.588 +467464,156.4,82.319 +467465,159.72,86.2806 +467466,158.12,84.9233 +467467,156.59,83.6001 +467468,155.11,82.3074 +467469,158.35,86.3384 +467470,156.78,84.9586 +467471,155.27,83.6125 +467472,153.82,82.2969 +467473,156.98,86.3952 +467474,155.43,84.9935 +467475,153.95,83.6253 +467476,152.52,82.2873 +467477,155.6,86.4509 +467478,154.08,85.028 +467479,152.63,83.6384 +467480,151.23,82.2788 +467481,154.22,86.5056 +467482,152.74,85.0622 +467483,151.31,83.6519 +467484,149.94,82.2713 +467485,152.85,86.5591 +467486,151.39,85.096 +467487,150,83.6657 +467488,148.65,82.2649 +467489,151.47,86.6114 +467490,150.04,85.1295 +467491,148.68,83.6799 +467492,147.37,82.2595 +467493,150.09,86.6626 +467494,148.69,85.1625 +467495,147.36,83.6945 +467496,146.08,82.2553 +467497,148.71,86.7127 +467498,147.35,85.1952 +467499,146.04,83.7094 +467500,144.79,82.2522 +467501,147.33,86.7616 +467502,146,85.2275 +467503,144.73,83.7247 +467504,143.51,82.2502 +467505,145.95,86.8092 +467506,144.65,85.2594 +467507,143.41,83.7404 +467508,142.22,82.2493 +467509,144.56,86.8557 +467510,143.3,85.2909 +467511,142.09,83.7565 +467512,140.94,82.2496 +467513,143.18,86.901 +467514,141.95,85.322 +467515,140.78,83.773 +467516,139.66,82.2511 +467517,141.79,86.945 +467518,140.6,85.3526 +467519,139.46,83.7898 +467520,138.37,82.2538 +467521,140.41,86.9878 +467522,139.25,85.3829 +467523,138.15,83.8071 +467524,137.09,82.2577 +467525,139.02,87.0293 +467526,137.9,85.4127 +467527,136.83,83.8247 +467528,135.81,82.2627 +467529,137.63,87.0696 +467530,136.55,85.4422 +467531,135.52,83.8428 +467532,134.53,82.269 +467533,136.24,87.1086 +467534,135.2,85.4712 +467535,134.2,83.8613 +467536,133.25,82.2766 +467537,134.85,87.1463 +467538,133.84,85.4998 +467539,132.89,83.8802 +467540,131.97,82.2853 +467541,133.46,87.1828 +467542,132.49,85.5279 +467543,131.57,83.8995 +467544,130.7,82.2954 +467545,132.07,87.2179 +467546,131.14,85.5556 +467547,130.26,83.9192 +467548,129.42,82.3066 +467549,130.68,87.2518 +467550,129.79,85.5829 +467551,128.94,83.9394 +467552,128.14,82.3192 +467553,129.29,87.2844 +467554,128.43,85.6098 +467555,127.63,83.9599 +467556,126.87,82.333 +467557,127.9,87.3156 +467558,127.08,85.6362 +467559,126.31,83.9809 +467560,125.59,82.3481 +467561,126.5,87.3456 +467562,125.73,85.6621 +467563,125,84.0023 +467564,124.32,82.3645 +467565,125.11,87.3742 +467566,124.38,85.6877 +467567,123.69,84.0242 +467568,123.04,82.3822 +467569,123.72,87.4015 +467570,123.02,85.7128 +467571,122.37,84.0465 +467572,121.77,82.4012 +467573,122.32,87.4275 +467574,121.67,85.7374 +467575,121.06,84.0692 +467576,120.49,82.4215 +467577,120.93,87.4522 +467578,120.31,85.7616 +467579,119.75,84.0923 +467580,119.22,82.4431 +467581,119.53,87.4756 +467582,118.96,85.7854 +467583,118.43,84.1159 +467584,117.95,82.466 +467585,118.13,87.4976 +467586,117.61,85.8087 +467587,117.12,84.1399 +467588,116.67,82.4902 +467589,116.74,87.5184 +467590,116.25,85.8316 +467591,115.81,84.1643 +467592,115.4,82.5157 +467593,115.34,87.5378 +467594,114.9,85.854 +467595,114.49,84.1892 +467596,114.13,82.5426 +467597,113.94,87.5559 +467598,113.54,85.876 +467599,113.18,84.2145 +467600,112.86,82.5707 +467601,112.55,87.5727 +467602,112.19,85.8975 +467603,111.87,84.2402 +467604,111.59,82.6002 +467605,111.15,87.5882 +467606,110.83,85.9186 +467607,110.56,84.2664 +467608,110.31,82.6309 +467609,109.75,87.6023 +467610,109.48,85.9393 +467611,109.24,84.2929 +467612,109.04,82.663 +467613,108.35,87.6152 +467614,108.12,85.9595 +467615,107.93,84.32 +467616,107.77,82.6964 +467617,106.96,87.6268 +467618,106.77,85.9793 +467619,106.62,84.3474 +467620,106.5,82.7311 +467621,105.56,87.6371 +467622,105.41,85.9986 +467623,105.3,84.3753 +467624,105.23,82.767 +467625,104.16,87.6461 +467626,104.06,86.0175 +467627,103.99,84.4036 +467628,103.96,82.8043 +467629,102.76,87.6538 +467630,102.7,86.036 +467631,102.68,84.4323 +467632,102.68,82.8429 +467633,101.36,87.6603 +467634,101.35,86.0541 +467635,101.36,84.4614 +467636,101.41,82.8827 +467637,99.965,87.6655 +467638,99.992,86.0717 +467639,100.05,84.491 +467640,100.14,82.9238 +467641,98.567,87.6695 +467642,98.637,86.0889 +467643,98.738,84.5209 +467644,98.87,82.9662 +467645,97.169,87.6722 +467646,97.282,86.1056 +467647,97.425,84.5513 +467648,97.598,83.0098 +467649,95.772,87.6738 +467650,95.926,86.122 +467651,96.112,84.5821 +467652,96.326,83.0547 +467653,94.374,87.6741 +467654,94.571,86.1379 +467655,94.798,84.6133 +467656,95.054,83.1008 +467657,92.977,87.6732 +467658,93.216,86.1535 +467659,93.485,84.6448 +467660,93.781,83.1481 +467661,91.58,87.6711 +467662,91.861,86.1686 +467663,92.171,84.6768 +467664,92.509,83.1967 +467665,90.183,87.6678 +467666,90.506,86.1833 +467667,90.857,84.7092 +467668,91.236,83.2464 +467669,88.787,87.6634 +467670,89.151,86.1976 +467671,89.543,84.7419 +467672,89.962,83.2974 +467673,87.391,87.6578 +467674,87.796,86.2115 +467675,88.229,84.7751 +467676,88.688,83.3495 +467677,85.995,87.6511 +467678,86.441,86.2251 +467679,86.915,84.8086 +467680,87.414,83.4028 +467681,84.6,87.6432 +467682,85.087,86.2382 +467683,85.6,84.8425 +467684,86.139,83.4572 +467685,83.205,87.6343 +467686,83.732,86.251 +467687,84.285,84.8767 +467688,84.864,83.5128 +467689,81.811,87.6243 +467690,82.378,86.2634 +467691,82.971,84.9114 +467692,83.588,83.5695 +467693,80.417,87.6132 +467694,81.024,86.2754 +467695,81.655,84.9463 +467696,82.312,83.6273 +467697,79.024,87.601 +467698,79.669,86.2871 +467699,80.34,84.9817 +467700,81.036,83.6862 +467701,77.631,87.5878 +467702,78.315,86.2984 +467703,79.025,85.0173 +467704,79.758,83.7462 +467705,76.239,87.5736 +467706,76.962,86.3093 +467707,77.709,85.0534 +467708,78.48,83.8072 +467709,74.848,87.5585 +467710,75.608,86.3199 +467711,76.393,85.0897 +467712,77.202,83.8692 +467713,73.457,87.5423 +467714,74.254,86.3302 +467715,75.077,85.1264 +467716,75.923,83.9323 +467717,72.067,87.5252 +467718,72.901,86.3402 +467719,73.76,85.1634 +467720,74.643,83.9963 +467721,70.677,87.5071 +467722,71.548,86.3498 +467723,72.443,85.2007 +467724,73.362,84.0613 +467725,69.288,87.4881 +467726,70.195,86.3591 +467727,71.126,85.2383 +467728,72.081,84.1273 +467729,67.901,87.4683 +467730,68.843,86.3681 +467731,69.809,85.2762 +467732,70.798,84.1942 +467733,66.513,87.4475 +467734,67.49,86.3767 +467735,68.491,85.3144 +467736,69.515,84.262 +467737,65.127,87.4259 +467738,66.138,86.3851 +467739,67.173,85.3528 +467740,68.232,84.3307 +467741,63.742,87.4035 +467742,64.786,86.3932 +467743,65.855,85.3916 +467744,66.947,84.4002 +467745,62.357,87.3803 +467746,63.434,86.401 +467747,64.536,85.4306 +467748,65.661,84.4706 +467749,60.973,87.3563 +467750,62.083,86.4086 +467751,63.217,85.4699 +467752,64.375,84.5418 +467753,59.59,87.3315 +467754,60.732,86.4159 +467755,61.898,85.5094 +467756,63.088,84.6138 +467757,58.209,87.306 +467758,59.381,86.4229 +467759,60.578,85.5492 +467760,61.799,84.6866 +467761,56.828,87.2798 +467762,58.03,86.4297 +467763,59.258,85.5892 +467764,60.51,84.7601 +467765,55.448,87.253 +467766,56.68,86.4362 +467767,57.937,85.6294 +467768,59.22,84.8343 +467769,54.069,87.2254 +467770,55.33,86.4425 +467771,56.617,85.6699 +467772,57.928,84.9092 +467773,52.691,87.1973 +467774,53.98,86.4486 +467775,55.295,85.7105 +467776,56.636,84.9848 +467777,51.314,87.1685 +467778,52.631,86.4544 +467779,53.974,85.7514 +467780,55.342,85.061 +467781,49.938,87.1391 +467782,51.282,86.4601 +467783,52.652,85.7924 +467784,54.048,85.1378 +467785,48.563,87.1092 +467786,49.933,86.4656 +467787,51.33,85.8336 +467788,52.752,85.2152 +467789,47.19,87.0788 +467790,48.585,86.4708 +467791,50.007,85.875 +467792,51.455,85.2931 +467793,45.817,87.0478 +467794,47.237,86.4759 +467795,48.684,85.9166 +467796,50.158,85.3715 +467797,44.446,87.0164 +467798,45.889,86.4809 +467799,47.36,85.9583 +467800,48.858,85.4505 +467801,43.076,86.9846 +467802,44.542,86.4856 +467803,46.036,86.0001 +467804,47.558,85.5299 +467805,41.707,86.9523 +467806,43.195,86.4902 +467807,44.711,86.0421 +467808,46.257,85.6097 +467809,40.339,86.9197 +467810,41.848,86.4947 +467811,43.387,86.0842 +467812,44.954,85.69 +467813,38.972,86.8866 +467814,40.502,86.499 +467815,42.061,86.1264 +467816,43.65,85.7706 +467817,37.607,86.8533 +467818,39.156,86.5033 +467819,40.735,86.1687 +467820,42.345,85.8515 +467821,36.242,86.8196 +467822,37.811,86.5074 +467823,39.409,86.2111 +467824,41.038,85.9328 +467825,34.879,86.7857 +467826,36.465,86.5114 +467827,38.082,86.2536 +467828,39.731,86.0144 +467829,33.518,86.7515 +467830,35.121,86.5153 +467831,36.755,86.2962 +467832,38.422,86.0962 +467833,32.157,86.7171 +467834,33.776,86.5191 +467835,35.427,86.3388 +467836,37.111,86.1782 +467837,30.798,86.6825 +467838,32.432,86.5229 +467839,34.099,86.3815 +467840,35.8,86.2604 +467841,29.44,86.6478 +467842,31.089,86.5265 +467843,32.771,86.4242 +467844,34.487,86.3428 +467845,28.083,86.6129 +467846,29.746,86.5302 +467847,31.442,86.4669 +467848,33.172,86.4253 +467849,26.728,86.5779 +467850,28.403,86.5338 +467851,30.112,86.5097 +467852,31.857,86.5078 +467853,25.374,86.5429 +467854,27.061,86.5373 +467855,28.782,86.5525 +467856,30.54,86.5905 +467857,24.021,86.5078 +467858,25.719,86.5409 +467859,27.451,86.5953 +467860,29.221,86.6732 +467861,22.67,86.4727 +467862,24.377,86.5444 +467863,26.12,86.638 +467864,27.901,86.7558 +467865,21.32,86.4376 +467866,23.036,86.5479 +467867,24.789,86.6808 +467868,26.58,86.8385 +467869,19.971,86.4025 +467870,21.695,86.5514 +467871,23.457,86.7235 +467872,25.257,86.9211 +467873,18.623,86.3675 +467874,20.355,86.555 +467875,22.124,86.7661 +467876,23.933,87.0035 +467877,17.277,86.3327 +467878,19.015,86.5585 +467879,20.791,86.8088 +467880,22.608,87.0859 +467881,15.932,86.2979 +467882,17.676,86.5621 +467883,19.458,86.8513 +467884,21.281,87.1681 +467885,14.589,86.2633 +467886,16.337,86.5658 +467887,18.124,86.8938 +467888,19.953,87.2501 +467889,13.247,86.229 +467890,14.998,86.5695 +467891,16.789,86.9362 +467892,18.623,87.3318 +467893,11.906,86.1948 +467894,13.66,86.5732 +467895,15.454,86.9785 +467896,17.292,87.4133 +467897,10.567,86.1609 +467898,12.322,86.5771 +467899,14.118,87.0207 +467900,15.959,87.4946 +467901,9.2286,86.1272 +467902,10.985,86.581 +467903,12.782,87.0628 +467904,14.625,87.5755 +467905,7.8919,86.0939 +467906,9.6479,86.585 +467907,11.446,87.1047 +467908,13.289,87.656 +467909,6.5565,86.0609 +467910,8.3114,86.5892 +467911,10.109,87.1465 +467912,11.953,87.7362 +467913,5.2225,86.0283 +467914,6.9753,86.5934 +467915,8.7711,87.1882 +467916,10.614,87.8159 +467917,3.8898,85.9961 +467918,5.6397,86.5978 +467919,7.4329,87.2297 +467920,9.2743,87.8952 +467921,2.5584,85.9643 +467922,4.3045,86.6023 +467923,6.0943,87.2711 +467924,7.933,87.974 +467925,1.2283,85.9329 +467926,2.9697,86.6069 +467927,4.7552,87.3123 +467928,6.5902,88.0523 +467929,359.9,85.902 +467930,1.6353,86.6117 +467931,3.4156,87.3533 +467932,5.246,88.1301 +467933,358.57,85.8716 +467934,0.30129,86.6167 +467935,2.0755,87.3941 +467936,3.9004,88.2073 +467937,357.25,85.8418 +467938,358.97,86.6218 +467939,0.73488,87.4346 +467940,2.5534,88.2839 +467941,355.92,85.8125 +467942,357.63,86.6271 +467943,359.39,87.475 +467944,1.2049,88.3599 +467945,354.6,85.7838 +467946,356.3,86.6326 +467947,358.05,87.5152 +467948,359.86,88.4353 +467949,353.28,85.7557 +467950,354.97,86.6383 +467951,356.71,87.5551 +467952,358.5,88.5099 +467953,351.95,85.7283 +467954,353.64,86.6442 +467955,355.37,87.5948 +467956,357.15,88.5838 +467957,350.63,85.7015 +467958,352.31,86.6503 +467959,354.02,87.6342 +467960,355.8,88.657 +467961,349.32,85.6754 +467962,350.97,86.6567 +467963,352.68,87.6733 +467964,354.44,88.7295 +467965,348,85.65 +467966,349.64,86.6633 +467967,351.34,87.7122 +467968,353.08,88.8011 +467969,346.68,85.6254 +467970,348.31,86.6701 +467971,349.99,87.7509 +467972,351.73,88.8719 +467973,345.37,85.6015 +467974,346.98,86.6772 +467975,348.65,87.7892 +467976,350.37,88.9419 +467977,344.05,85.5784 +467978,345.65,86.6845 +467979,347.3,87.8272 +467980,349.01,89.01094 +467981,342.74,85.5561 +467982,344.32,86.6921 +467983,345.96,87.8649 +467984,347.64,89.07913 +467985,341.43,85.5347 +467986,343,86.7 +467987,344.61,87.9023 +467988,346.28,89.14639 +467989,340.12,85.5141 +467990,341.67,86.7081 +467991,343.26,87.9394 +467992,344.92,89.2127 +467993,338.81,85.4944 +467994,340.34,86.7165 +467995,341.92,87.9762 +467996,343.55,89.27804 +467997,337.5,85.4757 +467998,339.01,86.7253 +467999,340.57,88.0126 +468000,342.18,89.34238 +468001,336.2,85.4578 +468002,337.68,86.7343 +468003,339.22,88.0487 +468004,340.81,89.4057 +468005,334.89,85.4409 +468006,336.36,86.7437 +468007,337.87,88.0845 +468008,339.44,89.46798 +468009,333.59,85.425 +468010,335.03,86.7533 +468011,336.52,88.1198 +468012,338.07,89.52919 +468013,332.28,85.41 +468014,333.7,86.7633 +468015,335.17,88.1548 +468016,336.7,89.58932 +468017,330.98,85.3961 +468018,332.38,86.7737 +468019,333.82,88.1895 +468020,335.33,89.64835 +468021,329.68,85.3832 +468022,331.05,86.7843 +468023,332.47,88.2237 +468024,333.95,89.70625 +468025,328.38,85.3713 +468026,329.73,86.7953 +468027,331.12,88.2576 +468028,332.58,89.763 +468029,327.08,85.3606 +468030,328.4,86.8067 +468031,329.77,88.2911 +468032,331.2,89.81859 +468033,325.78,85.3509 +468034,327.08,86.8184 +468035,328.42,88.3242 +468036,329.82,89.873 +468037,324.48,85.3423 +468038,325.75,86.8305 +468039,327.07,88.3569 +468040,328.44,89.926206 +468041,323.19,85.3348 +468042,324.43,86.8429 +468043,325.72,88.3891 +468044,327.06,89.978197 +468045,321.89,85.3284 +468046,323.1,86.8557 +468047,324.36,88.421 +468048,325.68,90.028956 +468049,320.6,85.3233 +468050,321.78,86.8689 +468051,323.01,88.4524 +468052,324.3,90.078466 +468053,319.3,85.3192 +468054,320.46,86.8825 +468055,321.66,88.4834 +468056,322.91,90.12671 +468057,318.01,85.3164 +468058,319.13,86.8965 +468059,320.3,88.514 +468060,321.53,90.17368 +468061,316.72,85.3148 +468062,317.81,86.9108 +468063,318.95,88.5441 +468064,320.14,90.21936 +468065,315.43,85.3143 +468066,316.49,86.9256 +468067,317.59,88.5738 +468068,318.76,90.26374 +468069,314.13,85.3151 +468070,315.16,86.9407 +468071,316.24,88.6031 +468072,317.37,90.30679 +468073,312.84,85.3172 +468074,313.84,86.9563 +468075,314.89,88.6319 +468076,315.98,90.34853 +468077,311.56,85.3204 +468078,312.52,86.9722 +468079,313.53,88.6603 +468080,314.59,90.38892 +468081,310.27,85.325 +468082,311.2,86.9886 +468083,312.17,88.6882 +468084,313.2,90.42797 +468085,308.98,85.3308 +468086,309.88,87.0054 +468087,310.82,88.7156 +468088,311.81,90.46566 +468089,307.69,85.3379 +468090,308.55,87.0226 +468091,309.46,88.7426 +468092,310.42,90.50198 +468093,306.4,85.3462 +468094,307.23,87.0402 +468095,308.11,88.7691 +468096,309.03,90.53693 +468097,305.12,85.3559 +468098,305.91,87.0583 +468099,306.75,88.7952 +468100,307.64,90.5705 +468101,303.83,85.3669 +468102,304.59,87.0768 +468103,305.39,88.8208 +468104,306.25,90.60269 +468105,302.55,85.3791 +468106,303.27,87.0957 +468107,304.04,88.8459 +468108,304.85,90.63348 +468109,301.26,85.3927 +468110,301.95,87.115 +468111,302.68,88.8705 +468112,303.46,90.66288 +468113,299.98,85.4077 +468114,300.63,87.1348 +468115,301.32,88.8947 +468116,302.06,90.69087 +468117,298.69,85.4239 +468118,299.31,87.155 +468119,299.96,88.9184 +468120,300.67,90.71746 +468121,297.41,85.4415 +468122,297.99,87.1756 +468123,298.61,88.9416 +468124,299.27,90.74265 +468125,296.13,85.4604 +468126,296.67,87.1967 +468127,297.25,88.9643 +468128,297.87,90.76643 +468129,294.84,85.4807 +468130,295.35,87.2182 +468131,295.89,88.9866 +468132,296.48,90.78879 +468133,293.56,85.5023 +468134,294.03,87.2401 +468135,294.53,89.00833 +468136,295.08,90.80975 +468137,292.28,85.5252 +468138,292.71,87.2625 +468139,293.17,89.02962 +468140,293.68,90.8293 +468141,291,85.5495 +468142,291.39,87.2853 +468143,291.81,89.05043 +468144,292.28,90.84744 +468145,289.71,85.5751 +468146,290.07,87.3086 +468147,290.46,89.07076 +468148,290.89,90.86418 +468149,288.43,85.6021 +468150,288.75,87.3322 +468151,289.1,89.09061 +468152,289.49,90.87951 +468153,287.15,85.6304 +468154,287.43,87.3564 +468155,287.74,89.10998 +468156,288.09,90.89344 +468157,285.87,85.6601 +468158,286.11,87.3809 +468159,286.38,89.12887 +468160,286.69,90.90598 +468161,284.59,85.6911 +468162,284.79,87.4059 +468163,285.02,89.14729 +468164,285.29,90.91713 +468165,283.31,85.7234 +468166,283.47,87.4313 +468167,283.66,89.16523 +468168,283.89,90.92689 +468169,282.03,85.7571 +468170,282.15,87.4572 +468171,282.3,89.18269 +468172,282.49,90.93527 +468173,280.75,85.7921 +468174,280.83,87.4834 +468175,280.94,89.19969 +468176,281.09,90.94228 +468177,279.46,85.8284 +468178,279.51,87.5101 +468179,279.58,89.21621 +468180,279.69,90.94792 +468181,278.18,85.8661 +468182,278.19,87.5373 +468183,278.22,89.23227 +468184,278.29,90.95221 +468185,276.9,85.905 +468186,276.87,87.5648 +468187,276.86,89.24786 +468188,276.89,90.95515 +468189,275.62,85.9453 +468190,275.55,87.5928 +468191,275.5,89.26299 +468192,275.49,90.95676 +468193,274.34,85.9869 +468194,274.23,87.6212 +468195,274.14,89.27766 +468196,274.09,90.95703 +468197,273.06,86.0297 +468198,272.91,87.65 +468199,272.78,89.29188 +468200,272.69,90.956 +468201,271.78,86.0738 +468202,271.59,87.6792 +468203,271.42,89.30564 +468204,271.29,90.95365 +468205,270.49,86.1192 +468206,270.27,87.7088 +468207,270.06,89.31895 +468208,269.89,90.95002 +468209,269.21,86.1658 +468210,268.94,87.7388 +468211,268.7,89.33182 +468212,268.49,90.94511 +468213,267.93,86.2137 +468214,267.62,87.7692 +468215,267.34,89.34425 +468216,267.09,90.93893 +468217,266.65,86.2628 +468218,266.3,87.8 +468219,265.99,89.35625 +468220,265.69,90.93151 +468221,265.36,86.3132 +468222,264.98,87.8312 +468223,264.63,89.36781 +468224,264.3,90.92284 +468225,264.08,86.3647 +468226,263.66,87.8628 +468227,263.27,89.37895 +468228,262.9,90.91296 +468229,262.8,86.4175 +468230,262.34,87.8947 +468231,261.91,89.38966 +468232,261.5,90.90188 +468233,261.51,86.4714 +468234,261.02,87.9271 +468235,260.55,89.39996 +468236,260.1,90.8896 +468237,260.23,86.5264 +468238,259.7,87.9598 +468239,259.19,89.40985 +468240,258.71,90.87616 +468241,258.94,86.5827 +468242,258.37,87.9928 +468243,257.83,89.41933 +468244,257.31,90.86156 +468245,257.65,86.64 +468246,257.05,88.0262 +468247,256.47,89.42841 +468248,255.91,90.84584 +468249,256.37,86.6985 +468250,255.73,88.06 +468251,255.11,89.4371 +468252,254.52,90.82899 +468253,255.08,86.758 +468254,254.41,88.0941 +468255,253.75,89.4454 +468256,253.12,90.81106 +468257,253.79,86.8187 +468258,253.08,88.1286 +468259,252.4,89.45332 +468260,251.73,90.79205 +468261,252.51,86.8804 +468262,251.76,88.1633 +468263,251.04,89.46087 +468264,250.33,90.77198 +468265,251.22,86.9431 +468266,250.44,88.1984 +468267,249.68,89.46805 +468268,248.94,90.75088 +468269,249.93,87.0069 +468270,249.12,88.2339 +468271,248.32,89.47487 +468272,247.55,90.72877 +468273,248.64,87.0716 +468274,247.79,88.2696 +468275,246.96,89.48133 +468276,246.16,90.70567 +468277,247.35,87.1373 +468278,246.47,88.3056 +468279,245.61,89.48745 +468280,244.77,90.6816 +468281,246.06,87.204 +468282,245.14,88.342 +468283,244.25,89.49323 +468284,243.37,90.65659 +468285,244.76,87.2716 +468286,243.82,88.3786 +468287,242.89,89.49868 +468288,241.98,90.63066 +468289,243.47,87.3401 +468290,242.49,88.4155 +468291,241.54,89.50381 +468292,240.6,90.60384 +468293,242.18,87.4095 +468294,241.17,88.4526 +468295,240.18,89.50862 +468296,239.21,90.57614 +468297,240.88,87.4798 +468298,239.84,88.4901 +468299,238.82,89.51313 +468300,237.82,90.54759 +468301,239.59,87.5509 +468302,238.52,88.5278 +468303,237.47,89.51733 +468304,236.43,90.51822 +468305,238.29,87.6228 +468306,237.19,88.5657 +468307,236.11,89.52125 +468308,235.05,90.48805 +468309,236.99,87.6954 +468310,235.86,88.6039 +468311,234.75,89.52488 +468312,233.66,90.45711 +468313,235.69,87.7689 +468314,234.54,88.6423 +468315,233.4,89.52824 +468316,232.28,90.42543 +468317,234.39,87.8431 +468318,233.21,88.6809 +468319,232.04,89.53133 +468320,230.9,90.39302 +468321,233.09,87.918 +468322,231.88,88.7197 +468323,230.69,89.53417 +468324,229.51,90.35993 +468325,231.79,87.9935 +468326,230.56,88.7587 +468327,229.34,89.53677 +468328,228.13,90.32617 +468329,230.49,88.0697 +468330,229.23,88.798 +468331,227.98,89.53912 +468332,226.75,90.29178 +468333,229.19,88.1466 +468334,227.9,88.8374 +468335,226.63,89.54125 +468336,225.37,90.25677 +468337,227.88,88.224 +468338,226.57,88.8769 +468339,225.27,89.54315 +468340,224,90.22118 +468341,226.58,88.302 +468342,225.24,88.9167 +468343,223.92,89.54485 +468344,222.62,90.18504 +468345,225.27,88.3805 +468346,223.91,88.9566 +468347,222.57,89.54635 +468348,221.24,90.14838 +468349,223.96,88.4595 +468350,222.58,88.9966 +468351,221.21,89.54766 +468352,219.87,90.11122 +468353,222.65,88.539 +468354,221.25,89.0368 +468355,219.86,89.54878 +468356,218.49,90.073591 +468357,221.34,88.619 +468358,219.92,89.07709 +468359,218.51,89.54974 +468360,217.12,90.035527 +468361,220.03,88.6994 +468362,218.59,89.1175 +468363,217.16,89.55053 +468364,215.75,89.9970536 +468365,218.72,88.7801 +468366,217.25,89.15801 +468367,215.81,89.55118 +468368,214.38,89.958202 +468369,217.41,88.8612 +468370,215.92,89.19862 +468371,214.46,89.55168 +468372,213.01,89.919002 +468373,216.09,88.9427 +468374,214.59,89.2393 +468375,213.11,89.55205 +468376,211.64,89.87948 +468377,214.78,89.02437 +468378,213.26,89.28006 +468379,211.76,89.5523 +468380,210.27,89.83967 +468381,213.46,89.10635 +468382,211.92,89.32088 +468383,210.41,89.55244 +468384,208.91,89.79961 +468385,212.14,89.18855 +468386,210.59,89.36175 +468387,209.06,89.55248 +468388,207.54,89.75931 +468389,210.82,89.27094 +468390,209.25,89.40266 +468391,207.71,89.55243 +468392,206.18,89.71882 +468393,209.5,89.3535 +468394,207.92,89.44359 +468395,206.36,89.5523 +468396,204.82,89.67815 +468397,208.18,89.43619 +468398,206.58,89.48455 +468399,205.01,89.5521 +468400,203.46,89.63735 +468401,206.86,89.51897 +468402,205.25,89.52551 +468403,203.66,89.55184 +468404,202.1,89.59645 +468405,205.53,89.60181 +468406,203.91,89.56646 +468407,202.31,89.55154 +468408,200.74,89.55546 +468409,204.21,89.68468 +468410,202.58,89.60741 +468411,200.97,89.55119 +468412,199.38,89.51443 +468413,202.88,89.76755 +468414,201.24,89.64832 +468415,199.62,89.55081 +468416,198.03,89.47339 +468417,201.55,89.85039 +468418,199.9,89.68921 +468419,198.27,89.55042 +468420,196.67,89.43236 +468421,200.22,89.933152 +468422,198.56,89.73004 +468423,196.93,89.55002 +468424,195.32,89.39138 +468425,198.89,90.015813 +468426,197.22,89.77082 +468427,195.58,89.54963 +468428,193.97,89.35047 +468429,197.56,90.098339 +468430,195.88,89.81152 +468431,194.24,89.54924 +468432,192.62,89.30967 +468433,196.22,90.1807 +468434,194.54,89.85215 +468435,192.89,89.54888 +468436,191.27,89.26901 +468437,194.89,90.26285 +468438,193.2,89.89268 +468439,191.55,89.54856 +468440,189.92,89.22851 +468441,193.55,90.34477 +468442,191.86,89.933117 +468443,190.2,89.54828 +468444,188.57,89.18822 +468445,192.22,90.42642 +468446,190.52,89.973438 +468447,188.86,89.54805 +468448,187.22,89.14815 +468449,190.88,90.50776 +468450,189.18,90.013636 +468451,187.52,89.54789 +468452,185.88,89.10834 +468453,189.54,90.58878 +468454,187.84,90.053699 +468455,186.17,89.5478 +468456,184.54,89.06881 +468457,188.19,90.66942 +468458,186.5,90.093618 +468459,184.83,89.5478 +468460,183.19,89.02961 +468461,186.85,90.74966 +468462,185.15,90.13338 +468463,183.49,89.54789 +468464,181.85,88.9908 +468465,185.51,90.82948 +468466,183.81,90.17298 +468467,182.15,89.54809 +468468,180.51,88.9523 +468469,184.16,90.90882 +468470,182.47,90.2124 +468471,180.81,89.54841 +468472,179.18,88.9142 +468473,182.81,90.98767 +468474,181.12,90.25163 +468475,179.47,89.54885 +468476,177.84,88.8766 +468477,181.47,91.066 +468478,179.78,90.29067 +468479,178.12,89.54942 +468480,176.5,88.8394 +468481,180.12,91.1437 +468482,178.43,90.3295 +468483,176.78,89.55014 +468484,175.17,88.8027 +468485,178.76,91.2209 +468486,177.09,90.36811 +468487,175.44,89.55102 +468488,173.84,88.7665 +468489,177.41,91.2974 +468490,175.74,90.40649 +468491,174.11,89.55206 +468492,172.5,88.7309 +468493,176.06,91.3733 +468494,174.39,90.44464 +468495,172.77,89.55327 +468496,171.17,88.6959 +468497,174.7,91.4485 +468498,173.05,90.48253 +468499,171.43,89.55466 +468500,169.84,88.6614 +468501,173.35,91.523 +468502,171.7,90.52017 +468503,170.09,89.55625 +468504,168.52,88.6276 +468505,171.99,91.5967 +468506,170.35,90.55754 +468507,168.75,89.55803 +468508,167.19,88.5945 +468509,170.63,91.6697 +468510,169,90.59464 +468511,167.41,89.56003 +468512,165.86,88.562 +468513,169.27,91.7418 +468514,167.65,90.63144 +468515,166.08,89.56225 +468516,164.54,88.5303 +468517,167.91,91.8132 +468518,166.3,90.66796 +468519,164.74,89.56469 +468520,163.21,88.4993 +468521,166.54,91.8836 +468522,164.95,90.70416 +468523,163.4,89.56737 +468524,161.89,88.469 +468525,165.18,91.9532 +468526,163.6,90.74005 +468527,162.07,89.5703 +468528,160.57,88.4396 +468529,163.81,92.0218 +468530,162.25,90.77562 +468531,160.73,89.57348 +468532,159.25,88.4109 +468533,162.45,92.0895 +468534,160.9,90.81086 +468535,159.4,89.57692 +468536,157.93,88.3831 +468537,161.08,92.1562 +468538,159.55,90.84575 +468539,158.06,89.58063 +468540,156.61,88.3562 +468541,159.71,92.222 +468542,158.2,90.8803 +468543,156.73,89.58462 +468544,155.3,88.3301 +468545,158.34,92.2867 +468546,156.84,90.91449 +468547,155.39,89.5889 +468548,153.98,88.3049 +468549,156.97,92.3503 +468550,155.49,90.94831 +468551,154.06,89.59347 +468552,152.67,88.2807 +468553,155.6,92.4129 +468554,154.14,90.98176 +468555,152.73,89.59834 +468556,151.35,88.2574 +468557,154.22,92.4744 +468558,152.78,91.0148 +468559,151.39,89.60352 +468560,150.04,88.2351 +468561,152.85,92.5347 +468562,151.43,91.0475 +468563,150.06,89.60901 +468564,148.73,88.2138 +468565,151.47,92.5939 +468566,150.08,91.0798 +468567,148.73,89.61482 +468568,147.42,88.1935 +468569,150.09,92.652 +468570,148.72,91.1117 +468571,147.4,89.62097 +468572,146.11,88.1743 +468573,148.71,92.7088 +468574,147.37,91.1431 +468575,146.06,89.62745 +468576,144.8,88.1561 +468577,147.34,92.7645 +468578,146.01,91.1742 +468579,144.73,89.63427 +468580,143.49,88.139 +468581,145.95,92.8189 +468582,144.65,91.2048 +468583,143.4,89.64145 +468584,142.19,88.1229 +468585,144.57,92.8721 +468586,143.3,91.235 +468587,142.07,89.64897 +468588,140.88,88.108 +468589,143.19,92.924 +468590,141.94,91.2648 +468591,140.74,89.65686 +468592,139.57,88.0943 +468593,141.81,92.9746 +468594,140.58,91.2941 +468595,139.41,89.66512 +468596,138.27,88.0816 +468597,140.42,93.0239 +468598,139.23,91.3229 +468599,138.08,89.67374 +468600,136.97,88.0702 +468601,139.04,93.0718 +468602,137.87,91.3514 +468603,136.75,89.68275 +468604,135.66,88.0599 +468605,137.65,93.1185 +468606,136.51,91.3793 +468607,135.42,89.69213 +468608,134.36,88.0508 +468609,136.26,93.1638 +468610,135.15,91.4068 +468611,134.09,89.7019 +468612,133.06,88.0429 +468613,134.88,93.2077 +468614,133.79,91.4338 +468615,132.76,89.71207 +468616,131.76,88.0363 +468617,133.49,93.2502 +468618,132.43,91.4603 +468619,131.43,89.72263 +468620,130.46,88.0308 +468621,132.1,93.2913 +468622,131.07,91.4864 +468623,130.1,89.73359 +468624,129.16,88.0267 +468625,130.71,93.3311 +468626,129.71,91.512 +468627,128.77,89.74496 +468628,127.86,88.0238 +468629,129.31,93.3694 +468630,128.35,91.5371 +468631,127.44,89.75673 +468632,126.57,88.0222 +468633,127.92,93.4062 +468634,126.99,91.5617 +468635,126.11,89.76892 +468636,125.27,88.0218 +468637,126.53,93.4417 +468638,125.63,91.5858 +468639,124.78,89.78152 +468640,123.97,88.0228 +468641,125.14,93.4756 +468642,124.27,91.6094 +468643,123.46,89.79454 +468644,122.68,88.0251 +468645,123.74,93.5082 +468646,122.91,91.6325 +468647,122.13,89.80798 +468648,121.38,88.0286 +468649,122.35,93.5392 +468650,121.55,91.6551 +468651,120.8,89.82185 +468652,120.09,88.0336 +468653,120.95,93.5688 +468654,120.19,91.6772 +468655,119.47,89.83614 +468656,118.79,88.0398 +468657,119.56,93.5969 +468658,118.83,91.6987 +468659,118.14,89.85086 +468660,117.5,88.0474 +468661,118.16,93.6235 +468662,117.47,91.7198 +468663,116.82,89.86601 +468664,116.2,88.0563 +468665,116.76,93.6486 +468666,116.1,91.7404 +468667,115.49,89.8816 +468668,114.91,88.0666 +468669,115.36,93.6722 +468670,114.74,91.7604 +468671,114.16,89.89762 +468672,113.62,88.0783 +468673,113.97,93.6943 +468674,113.38,91.7799 +468675,112.84,89.914074 +468676,112.33,88.0913 +468677,112.57,93.7149 +468678,112.02,91.7989 +468679,111.51,89.930965 +468680,111.03,88.1057 +468681,111.17,93.734 +468682,110.66,91.8174 +468683,110.18,89.948293 +468684,109.74,88.1214 +468685,109.77,93.7516 +468686,109.29,91.8354 +468687,108.85,89.96606 +468688,108.45,88.1385 +468689,108.37,93.7677 +468690,107.93,91.8528 +468691,107.53,89.984264 +468692,107.16,88.157 +468693,106.97,93.7823 +468694,106.57,91.8698 +468695,106.2,90.0029069 +468696,105.87,88.1769 +468697,105.57,93.7954 +468698,105.2,91.8862 +468699,104.87,90.021988 +468700,104.58,88.1981 +468701,104.17,93.807 +468702,103.84,91.9021 +468703,103.55,90.041506 +468704,103.29,88.2207 +468705,102.77,93.8171 +468706,102.48,91.9175 +468707,102.22,90.061462 +468708,102,88.2447 +468709,101.37,93.8257 +468710,101.11,91.9323 +468711,100.89,90.081854 +468712,100.71,88.2701 +468713,99.966,93.8328 +468714,99.749,91.9467 +468715,99.567,90.10268 +468716,99.416,88.2968 +468717,98.564,93.8384 +468718,98.386,91.9605 +468719,98.241,90.12394 +468720,98.125,88.3249 +468721,97.163,93.8426 +468722,97.022,91.9738 +468723,96.914,90.14563 +468724,96.835,88.3544 +468725,95.762,93.8452 +468726,95.658,91.9866 +468727,95.587,90.16776 +468728,95.544,88.3852 +468729,94.36,93.8465 +468730,94.294,91.9989 +468731,94.26,90.19031 +468732,94.254,88.4174 +468733,92.959,93.8463 +468734,92.931,92.0107 +468735,92.933,90.21329 +468736,92.963,88.4509 +468737,91.557,93.8446 +468738,91.567,92.022 +468739,91.606,90.23669 +468740,91.673,88.4858 +468741,90.156,93.8415 +468742,90.203,92.0327 +468743,90.279,90.26051 +468744,90.382,88.522 +468745,88.754,93.837 +468746,88.839,92.043 +468747,88.952,90.28475 +468748,89.091,88.5595 +468749,87.353,93.8311 +468750,87.475,92.0528 +468751,87.625,90.3094 +468752,87.8,88.5984 +468753,85.952,93.8237 +468754,86.112,92.0621 +468755,86.298,90.33446 +468756,86.509,88.6385 +468757,84.551,93.815 +468758,84.748,92.0709 +468759,84.971,90.35994 +468760,85.217,88.68 +468761,83.15,93.805 +468762,83.384,92.0793 +468763,83.643,90.38581 +468764,83.925,88.7227 +468765,81.75,93.7935 +468766,82.02,92.0871 +468767,82.315,90.41208 +468768,82.633,88.7667 +468769,80.35,93.7808 +468770,80.657,92.0945 +468771,80.988,90.43875 +468772,81.341,88.812 +468773,78.95,93.7667 +468774,79.293,92.1014 +468775,79.66,90.46581 +468776,80.048,88.8585 +468777,77.55,93.7513 +468778,77.93,92.1078 +468779,78.332,90.49325 +468780,78.755,88.9063 +468781,76.151,93.7346 +468782,76.566,92.1138 +468783,77.004,90.52107 +468784,77.461,88.9552 +468785,74.752,93.7166 +468786,75.203,92.1194 +468787,75.675,90.54927 +468788,76.167,89.00544 +468789,73.354,93.6974 +468790,73.84,92.1244 +468791,74.347,90.57784 +468792,74.873,89.05682 +468793,71.956,93.6769 +468794,72.477,92.1291 +468795,73.018,90.60677 +468796,73.578,89.10938 +468797,70.558,93.6553 +468798,71.114,92.1333 +468799,71.689,90.63605 +468800,72.282,89.1631 +468801,69.161,93.6324 +468802,69.751,92.1371 +468803,70.36,90.66569 +468804,70.986,89.21796 +468805,67.765,93.6083 +468806,68.389,92.1404 +468807,69.031,90.69568 +468808,69.689,89.27395 +468809,66.369,93.5831 +468810,67.026,92.1433 +468811,67.701,90.726 +468812,68.392,89.33104 +468813,64.974,93.5568 +468814,65.664,92.1459 +468815,66.371,90.75665 +468816,67.095,89.38922 +468817,63.579,93.5294 +468818,64.302,92.148 +468819,65.041,90.78763 +468820,65.796,89.44847 +468821,62.185,93.5009 +468822,62.94,92.1497 +468823,63.711,90.81893 +468824,64.497,89.50876 +468825,60.791,93.4713 +468826,61.578,92.151 +468827,62.38,90.85053 +468828,63.197,89.57008 +468829,59.398,93.4406 +468830,60.216,92.152 +468831,61.05,90.88244 +468832,61.897,89.63241 +468833,58.006,93.409 +468834,58.855,92.1526 +468835,59.718,90.91465 +468836,60.596,89.69572 +468837,56.615,93.3764 +468838,57.494,92.1528 +468839,58.387,90.94714 +468840,59.294,89.75999 +468841,55.224,93.3428 +468842,56.133,92.1526 +468843,57.055,90.97991 +468844,57.991,89.82519 +468845,53.835,93.3082 +468846,54.772,92.1522 +468847,55.723,91.013 +468848,56.687,89.89131 +468849,52.445,93.2728 +468850,53.412,92.1513 +468851,54.391,91.0463 +468852,55.383,89.958322 +468853,51.057,93.2364 +468854,52.052,92.1502 +468855,53.059,91.0798 +468856,54.078,90.026195 +468857,49.67,93.1992 +468858,50.692,92.1487 +468859,51.726,91.1136 +468860,52.772,90.094907 +468861,48.283,93.1612 +468862,49.332,92.1469 +468863,50.393,91.1477 +468864,51.465,90.16443 +468865,46.898,93.1224 +468866,47.972,92.1448 +468867,49.059,91.1819 +468868,50.157,90.23475 +468869,45.513,93.0828 +468870,46.613,92.1424 +468871,47.725,91.2164 +468872,48.848,90.30582 +468873,44.129,93.0424 +468874,45.254,92.1397 +468875,46.391,91.2511 +468876,47.538,90.37763 +468877,42.746,93.0013 +468878,43.896,92.1367 +468879,45.056,91.286 +468880,46.228,90.45014 +468881,41.365,92.9595 +468882,42.537,92.1335 +468883,43.722,91.3211 +468884,44.916,90.52333 +468885,39.984,92.9171 +468886,41.179,92.13 +468887,42.386,91.3563 +468888,43.604,90.59718 +468889,38.604,92.8741 +468890,39.822,92.1263 +468891,41.051,91.3918 +468892,42.29,90.67164 +468893,37.225,92.8304 +468894,38.464,92.1223 +468895,39.715,91.4274 +468896,40.975,90.74669 +468897,35.847,92.7862 +468898,37.107,92.1181 +468899,38.378,91.4631 +468900,39.66,90.82231 +468901,34.47,92.7414 +468902,35.75,92.1136 +468903,37.042,91.499 +468904,38.343,90.89846 +468905,33.094,92.6961 +468906,34.394,92.109 +468907,35.704,91.535 +468908,37.025,90.97511 +468909,31.72,92.6503 +468910,33.038,92.1042 +468911,34.367,91.5711 +468912,35.706,91.0522 +468913,30.346,92.6041 +468914,31.682,92.0991 +468915,33.029,91.6074 +468916,34.386,91.1298 +468917,28.974,92.5575 +468918,30.326,92.0939 +468919,31.691,91.6437 +468920,33.065,91.2078 +468921,27.602,92.5105 +468922,28.971,92.0886 +468923,30.352,91.6801 +468924,31.743,91.2861 +468925,26.232,92.4631 +468926,27.616,92.0831 +468927,29.013,91.7166 +468928,30.419,91.3648 +468929,24.863,92.4154 +468930,26.262,92.0774 +468931,27.673,91.7532 +468932,29.095,91.4438 +468933,23.495,92.3674 +468934,24.908,92.0716 +468935,26.333,91.7898 +468936,27.769,91.5231 +468937,22.128,92.3191 +468938,23.554,92.0656 +468939,24.993,91.8265 +468940,26.442,91.6027 +468941,20.762,92.2707 +468942,22.201,92.0596 +468943,23.652,91.8632 +468944,25.114,91.6824 +468945,19.398,92.222 +468946,20.848,92.0534 +468947,22.311,91.8999 +468948,23.785,91.7624 +468949,18.035,92.1731 +468950,19.495,92.0472 +468951,20.969,91.9367 +468952,22.454,91.8424 +468953,16.672,92.1242 +468954,18.143,92.0409 +468955,19.627,91.9734 +468956,21.123,91.9226 +468957,15.312,92.0751 +468958,16.791,92.0345 +468959,18.284,92.0101 +468960,19.79,92.0029 +468961,13.952,92.0259 +468962,15.44,92.028 +468963,16.941,92.0468 +468964,18.455,92.0833 +468965,12.593,91.9768 +468966,14.089,92.0215 +468967,15.598,92.0835 +468968,17.12,92.1636 +468969,11.236,91.9276 +468970,12.738,92.015 +468971,14.254,92.1201 +468972,15.783,92.244 +468973,9.8798,91.8784 +468974,11.387,92.0084 +468975,12.91,92.1567 +468976,14.446,92.3242 +468977,8.5249,91.8293 +468978,10.037,92.0018 +468979,11.565,92.1932 +468980,13.107,92.4044 +468981,7.1712,91.7803 +468982,8.6878,91.9952 +468983,10.22,92.2296 +468984,11.766,92.4845 +468985,5.8187,91.7314 +468986,7.3386,91.9886 +468987,8.874,92.2659 +468988,10.425,92.5644 +468989,4.4675,91.6826 +468990,5.9897,91.982 +468991,7.5279,92.3021 +468992,9.0817,92.6441 +468993,3.1174,91.6341 +468994,4.6412,91.9755 +468995,6.1814,92.3383 +468996,7.7375,92.7237 +468997,1.7686,91.5858 +468998,3.2932,91.9689 +468999,4.8344,92.3743 +469000,6.3921,92.8029 +469001,0.42101,91.5377 +469002,1.9455,91.9625 +469003,3.487,92.4101 +469004,5.0455,92.8819 +469005,359.07,91.4898 +469006,0.59814,91.9561 +469007,2.1391,92.4458 +469008,3.6975,92.9605 +469009,357.73,91.4423 +469010,359.25,91.9497 +469011,0.7908,92.4814 +469012,2.3483,93.0388 +469013,356.39,91.3952 +469014,357.9,91.9434 +469015,359.44,92.5168 +469016,0.99788,93.1166 +469017,355.04,91.3484 +469018,356.56,91.9373 +469019,358.09,92.552 +469020,359.65,93.1941 +469021,353.7,91.302 +469022,355.21,91.9312 +469023,356.74,92.587 +469024,358.29,93.2711 +469025,352.36,91.256 +469026,353.87,91.9252 +469027,355.39,92.6218 +469028,356.94,93.3476 +469029,351.02,91.2105 +469030,352.52,91.9194 +469031,354.04,92.6564 +469032,355.58,93.4236 +469033,349.68,91.1655 +469034,351.18,91.9136 +469035,352.69,92.6908 +469036,354.23,93.499 +469037,348.35,91.121 +469038,349.83,91.9081 +469039,351.34,92.725 +469040,352.87,93.5738 +469041,347.01,91.077 +469042,348.49,91.9026 +469043,349.99,92.7589 +469044,351.51,93.648 +469045,345.68,91.0337 +469046,347.15,91.8974 +469047,348.64,92.7925 +469048,350.15,93.7215 +469049,344.34,90.9909 +469050,345.8,91.8922 +469051,347.28,92.8259 +469052,348.79,93.7944 +469053,343.01,90.94876 +469054,344.46,91.8873 +469055,345.93,92.859 +469056,347.42,93.8665 +469057,341.68,90.90729 +469058,343.12,91.8826 +469059,344.58,92.8918 +469060,346.06,93.9379 +469061,340.35,90.8665 +469062,341.78,91.878 +469063,343.22,92.9244 +469064,344.69,94.0085 +469065,339.02,90.82643 +469066,340.43,91.8737 +469067,341.87,92.9566 +469068,343.33,94.0782 +469069,337.69,90.78709 +469070,339.09,91.8696 +469071,340.51,92.9885 +469072,341.96,94.1472 +469073,336.37,90.74853 +469074,337.75,91.8657 +469075,339.16,93.0201 +469076,340.59,94.2152 +469077,335.04,90.71076 +469078,336.41,91.8621 +469079,337.8,93.0514 +469080,339.22,94.2824 +469081,333.72,90.67381 +469082,335.07,91.8586 +469083,336.45,93.0823 +469084,337.85,94.3486 +469085,332.39,90.63771 +469086,333.73,91.8555 +469087,335.09,93.1129 +469088,336.48,94.4138 +469089,331.07,90.60247 +469090,332.39,91.8526 +469091,333.73,93.1431 +469092,335.1,94.4781 +469093,329.75,90.56813 +469094,331.05,91.85 +469095,332.38,93.1729 +469096,333.73,94.5413 +469097,328.43,90.5347 +469098,329.71,91.8476 +469099,331.02,93.2024 +469100,332.35,94.6035 +469101,327.11,90.50222 +469102,328.37,91.8455 +469103,329.66,93.2314 +469104,330.98,94.6646 +469105,325.79,90.4707 +469106,327.03,91.8438 +469107,328.3,93.2601 +469108,329.6,94.7246 +469109,324.47,90.44016 +469110,325.7,91.8423 +469111,326.94,93.2884 +469112,328.22,94.7835 +469113,323.16,90.41063 +469114,324.36,91.8411 +469115,325.58,93.3163 +469116,326.84,94.8412 +469117,321.84,90.38213 +469118,323.02,91.8403 +469119,324.23,93.3437 +469120,325.46,94.8978 +469121,320.53,90.35468 +469122,321.68,91.8397 +469123,322.87,93.3707 +469124,324.08,94.9531 +469125,319.21,90.3283 +469126,320.35,91.8395 +469127,321.51,93.3973 +469128,322.7,95.0073 +469129,317.9,90.30301 +469130,319.01,91.8396 +469131,320.14,93.4234 +469132,321.31,95.0601 +469133,316.59,90.27882 +469134,317.67,91.8401 +469135,318.78,93.4491 +469136,319.93,95.1117 +469137,315.28,90.25577 +469138,316.34,91.8409 +469139,317.42,93.4743 +469140,318.54,95.1621 +469141,313.97,90.23386 +469142,315,91.8421 +469143,316.06,93.4991 +469144,317.15,95.2111 +469145,312.66,90.21311 +469146,313.67,91.8437 +469147,314.7,93.5234 +469148,315.77,95.2588 +469149,311.35,90.19355 +469150,312.33,91.8456 +469151,313.34,93.5472 +469152,314.38,95.3051 +469153,310.04,90.17518 +469154,310.99,91.8478 +469155,311.98,93.5706 +469156,312.99,95.35 +469157,308.73,90.15802 +469158,309.66,91.8505 +469159,310.61,93.5934 +469160,311.6,95.3936 +469161,307.43,90.1421 +469162,308.32,91.8535 +469163,309.25,93.6158 +469164,310.21,95.4358 +469165,306.12,90.12741 +469166,306.99,91.8569 +469167,307.89,93.6377 +469168,308.82,95.4765 +469169,304.81,90.11398 +469170,305.66,91.8608 +469171,306.52,93.659 +469172,307.42,95.5158 +469173,303.51,90.10182 +469174,304.32,91.865 +469175,305.16,93.6799 +469176,306.03,95.5537 +469177,302.2,90.090942 +469178,302.99,91.8696 +469179,303.8,93.7002 +469180,304.64,95.5901 +469181,300.9,90.081358 +469182,301.65,91.8746 +469183,302.43,93.72 +469184,303.24,95.625 +469185,299.6,90.073081 +469186,300.32,91.88 +469187,301.07,93.7393 +469188,301.85,95.6584 +469189,298.3,90.06612 +469190,298.99,91.8859 +469191,299.7,93.7581 +469192,300.45,95.6903 +469193,296.99,90.060487 +469194,297.65,91.8921 +469195,298.34,93.7764 +469196,299.05,95.7206 +469197,295.69,90.056189 +469198,296.32,91.8988 +469199,296.97,93.7941 +469200,297.66,95.7495 +469201,294.39,90.053237 +469202,294.99,91.9059 +469203,295.61,93.8113 +469204,296.26,95.7768 +469205,293.09,90.051639 +469206,293.65,91.9134 +469207,294.24,93.8279 +469208,294.86,95.8026 +469209,291.79,90.051401 +469210,292.32,91.9214 +469211,292.88,93.844 +469212,293.46,95.8268 +469213,290.49,90.052531 +469214,290.99,91.9298 +469215,291.51,93.8596 +469216,292.06,95.8495 +469217,289.19,90.055035 +469218,289.65,91.9386 +469219,290.15,93.8746 +469220,290.67,95.8706 +469221,287.89,90.058918 +469222,288.32,91.9478 +469223,288.78,93.8891 +469224,289.27,95.8901 +469225,286.59,90.064185 +469226,286.99,91.9575 +469227,287.41,93.903 +469228,287.87,95.9081 +469229,285.29,90.07084 +469230,285.66,91.9676 +469231,286.05,93.9164 +469232,286.46,95.9244 +469233,283.99,90.078887 +469234,284.32,91.9781 +469235,284.68,93.9292 +469236,285.06,95.9392 +469237,282.69,90.088328 +469238,282.99,91.9891 +469239,283.31,93.9414 +469240,283.66,95.9524 +469241,281.4,90.099166 +469242,281.66,92.0005 +469243,281.95,93.9532 +469244,282.26,95.9641 +469245,280.1,90.1114 +469246,280.33,92.0124 +469247,280.58,93.9643 +469248,280.86,95.9741 +469249,278.8,90.12503 +469250,279,92.0247 +469251,279.21,93.9749 +469252,279.46,95.9825 +469253,277.5,90.14006 +469254,277.66,92.0374 +469255,277.85,93.985 +469256,278.06,95.9894 +469257,276.2,90.15649 +469258,276.33,92.0506 +469259,276.48,93.9945 +469260,276.65,95.9947 +469261,274.91,90.17432 +469262,275,92.0642 +469263,275.11,94.0035 +469264,275.25,95.9984 +469265,273.61,90.19353 +469266,273.67,92.0783 +469267,273.75,94.0119 +469268,273.85,96.0006 +469269,272.31,90.21414 +469270,272.33,92.0928 +469271,272.38,94.0197 +469272,272.45,96.0012 +469273,271.01,90.23614 +469274,271,92.1077 +469275,271.01,94.027 +469276,271.04,96.0002 +469277,269.72,90.25951 +469278,269.67,92.123 +469279,269.64,94.0338 +469280,269.64,95.9976 +469281,268.42,90.28427 +469282,268.34,92.1388 +469283,268.28,94.04 +469284,268.24,95.9935 +469285,267.12,90.3104 +469286,267.01,92.155 +469287,266.91,94.0457 +469288,266.84,95.9879 +469289,265.82,90.33789 +469290,265.67,92.1716 +469291,265.54,94.0508 +469292,265.43,95.9808 +469293,264.52,90.36674 +469294,264.34,92.1887 +469295,264.18,94.0554 +469296,264.03,95.9721 +469297,263.22,90.39694 +469298,263.01,92.2061 +469299,262.81,94.0595 +469300,262.63,95.9619 +469301,261.92,90.42848 +469302,261.68,92.224 +469303,261.44,94.063 +469304,261.23,95.9502 +469305,260.63,90.46136 +469306,260.34,92.2423 +469307,260.08,94.0661 +469308,259.83,95.9371 +469309,259.33,90.49556 +469310,259.01,92.261 +469311,258.71,94.0686 +469312,258.43,95.9224 +469313,258.03,90.53107 +469314,257.68,92.2801 +469315,257.34,94.0705 +469316,257.02,95.9063 +469317,256.73,90.56788 +469318,256.34,92.2997 +469319,255.98,94.072 +469320,255.62,95.8888 +469321,255.43,90.60599 +469322,255.01,92.3196 +469323,254.61,94.073 +469324,254.22,95.8698 +469325,254.13,90.64536 +469326,253.68,92.3399 +469327,253.24,94.0734 +469328,252.82,95.8494 +469329,252.82,90.68601 +469330,252.34,92.3606 +469331,251.88,94.0734 +469332,251.42,95.8276 +469333,251.52,90.7279 +469334,251.01,92.3816 +469335,250.51,94.0728 +469336,250.02,95.8045 +469337,250.22,90.77103 +469338,249.68,92.4031 +469339,249.14,94.0718 +469340,248.62,95.78 +469341,248.92,90.81538 +469342,248.34,92.4249 +469343,247.78,94.0703 +469344,247.23,95.7541 +469345,247.61,90.86093 +469346,247.01,92.4471 +469347,246.41,94.0683 +469348,245.83,95.7269 +469349,246.31,90.90767 +469350,245.67,92.4696 +469351,245.05,94.0658 +469352,244.43,95.6984 +469353,245.01,90.95558 +469354,244.34,92.4925 +469355,243.68,94.0629 +469356,243.03,95.6687 +469357,243.7,91.0046 +469358,243,92.5158 +469359,242.31,94.0595 +469360,241.64,95.6377 +469361,242.4,91.0548 +469362,241.67,92.5394 +469363,240.95,94.0556 +469364,240.24,95.6054 +469365,241.09,91.1062 +469366,240.33,92.5633 +469367,239.58,94.0514 +469368,238.85,95.5719 +469369,239.78,91.1586 +469370,239,92.5875 +469371,238.22,94.0466 +469372,237.45,95.5372 +469373,238.48,91.2121 +469374,237.66,92.6121 +469375,236.85,94.0415 +469376,236.06,95.5014 +469377,237.17,91.2666 +469378,236.32,92.637 +469379,235.49,94.0359 +469380,234.66,95.4644 +469381,235.86,91.3222 +469382,234.99,92.6622 +469383,234.13,94.0299 +469384,233.27,95.4263 +469385,234.55,91.3788 +469386,233.65,92.6877 +469387,232.76,94.0236 +469388,231.88,95.3871 +469389,233.24,91.4364 +469390,232.31,92.7135 +469391,231.4,94.0168 +469392,230.49,95.3469 +469393,231.93,91.4949 +469394,230.98,92.7395 +469395,230.03,94.0096 +469396,229.1,95.3056 +469397,230.62,91.5544 +469398,229.64,92.7659 +469399,228.67,94.002 +469400,227.71,95.2632 +469401,229.3,91.6148 +469402,228.3,92.7925 +469403,227.31,93.9941 +469404,226.32,95.2199 +469405,227.99,91.6761 +469406,226.96,92.8193 +469407,225.95,93.9858 +469408,224.93,95.1757 +469409,226.67,91.7383 +469410,225.63,92.8464 +469411,224.58,93.9771 +469412,223.55,95.1305 +469413,225.36,91.8013 +469414,224.29,92.8738 +469415,223.22,93.9681 +469416,222.16,95.0843 +469417,224.04,91.8652 +469418,222.95,92.9014 +469419,221.86,93.9588 +469420,220.78,95.0374 +469421,222.73,91.9298 +469422,221.61,92.9292 +469423,220.5,93.9491 +469424,219.39,94.9895 +469425,221.41,91.9952 +469426,220.27,92.9572 +469427,219.14,93.9392 +469428,218.01,94.9409 +469429,220.09,92.0613 +469430,218.93,92.9854 +469431,217.77,93.9289 +469432,216.63,94.8915 +469433,218.77,92.1282 +469434,217.59,93.0138 +469435,216.41,93.9183 +469436,215.24,94.8413 +469437,217.45,92.1957 +469438,216.25,93.0424 +469439,215.05,93.9074 +469440,213.86,94.7904 +469441,216.12,92.2639 +469442,214.91,93.0711 +469443,213.69,93.8962 +469444,212.49,94.7388 +469445,214.8,92.3327 +469446,213.57,93.1001 +469447,212.33,93.8848 +469448,211.11,94.6865 +469449,213.48,92.4021 +469450,212.22,93.1291 +469451,210.97,93.8731 +469452,209.73,94.6336 +469453,212.15,92.4721 +469454,210.88,93.1583 +469455,209.61,93.8612 +469456,208.35,94.5801 +469457,210.83,92.5426 +469458,209.54,93.1877 +469459,208.26,93.849 +469460,206.98,94.526 +469461,209.5,92.6136 +469462,208.2,93.2172 +469463,206.9,93.8366 +469464,205.6,94.4714 +469465,208.17,92.6851 +469466,206.85,93.2468 +469467,205.54,93.824 +469468,204.23,94.4163 +469469,206.84,92.757 +469470,205.51,93.2764 +469471,204.18,93.8112 +469472,202.86,94.3607 +469473,205.51,92.8294 +469474,204.16,93.3062 +469475,202.82,93.7982 +469476,201.49,94.3047 +469477,204.18,92.9021 +469478,202.82,93.3361 +469479,201.47,93.785 +469480,200.12,94.2483 +469481,202.84,92.9752 +469482,201.48,93.366 +469483,200.11,93.7716 +469484,198.75,94.1915 +469485,201.51,93.0486 +469486,200.13,93.396 +469487,198.75,93.7581 +469488,197.38,94.1344 +469489,200.18,93.1222 +469490,198.78,93.426 +469491,197.4,93.7444 +469492,196.02,94.0769 +469493,198.84,93.1961 +469494,197.44,93.4561 +469495,196.04,93.7306 +469496,194.65,94.0192 +469497,197.5,93.2703 +469498,196.09,93.4861 +469499,194.69,93.7166 +469500,193.29,93.9612 +469501,196.16,93.3446 +469502,194.75,93.5162 +469503,193.33,93.7025 +469504,191.92,93.903 +469505,194.82,93.4191 +469506,193.4,93.5463 +469507,191.98,93.6884 +469508,190.56,93.8447 +469509,193.48,93.4937 +469510,192.05,93.5764 +469511,190.62,93.6741 +469512,189.2,93.7862 +469513,192.14,93.5683 +469514,190.7,93.6065 +469515,189.27,93.6597 +469516,187.84,93.7276 +469517,190.8,93.643 +469518,189.35,93.6365 +469519,187.92,93.6453 +469520,186.48,93.6689 +469521,189.45,93.7178 +469522,188.01,93.6665 +469523,186.56,93.6308 +469524,185.13,93.6102 +469525,188.11,93.7925 +469526,186.66,93.6964 +469527,185.21,93.6162 +469528,183.77,93.5515 +469529,186.76,93.8671 +469530,185.31,93.7263 +469531,183.86,93.6017 +469532,182.42,93.4928 +469533,185.41,93.9417 +469534,183.96,93.7561 +469535,182.51,93.587 +469536,181.06,93.4341 +469537,184.06,94.0162 +469538,182.61,93.7858 +469539,181.15,93.5724 +469540,179.71,93.3756 +469541,182.71,94.0905 +469542,181.25,93.8154 +469543,179.8,93.5578 +469544,178.36,93.3171 +469545,181.36,94.1646 +469546,179.9,93.8449 +469547,178.45,93.5431 +469548,177.01,93.2589 +469549,180.01,94.2385 +469550,178.55,93.8742 +469551,177.1,93.5285 +469552,175.66,93.2008 +469553,178.65,94.3121 +469554,177.2,93.9035 +469555,175.75,93.5139 +469556,174.31,93.1429 +469557,177.3,94.3854 +469558,175.85,93.9326 +469559,174.4,93.4993 +469560,172.97,93.0853 +469561,175.94,94.4584 +469562,174.49,93.9615 +469563,173.05,93.4848 +469564,171.62,93.028 +469565,174.58,94.531 +469566,173.14,93.9902 +469567,171.7,93.4704 +469568,170.28,92.9709 +469569,173.22,94.6033 +469570,171.79,94.0188 +469571,170.36,93.456 +469572,168.94,92.9143 +469573,171.86,94.6751 +469574,170.43,94.0472 +469575,169.01,93.4417 +469576,167.59,92.858 +469577,170.5,94.7464 +469578,169.08,94.0754 +469579,167.66,93.4275 +469580,166.25,92.8021 +469581,169.14,94.8173 +469582,167.72,94.1033 +469583,166.31,93.4134 +469584,164.91,92.7466 +469585,167.78,94.8876 +469586,166.37,94.1311 +469587,164.97,93.3994 +469588,163.58,92.6917 +469589,166.41,94.9573 +469590,165.01,94.1586 +469591,163.62,93.3855 +469592,162.24,92.6372 +469593,165.05,95.0265 +469594,163.65,94.1858 +469595,162.27,93.3718 +469596,160.9,92.5832 +469597,163.68,95.095 +469598,162.3,94.2128 +469599,160.93,93.3582 +469600,159.57,92.5299 +469601,162.31,95.1629 +469602,160.94,94.2396 +469603,159.58,93.3447 +469604,158.23,92.4771 +469605,160.94,95.23 +469606,159.58,94.266 +469607,158.24,93.3314 +469608,156.9,92.4249 +469609,159.57,95.2964 +469610,158.23,94.2922 +469611,156.89,93.3183 +469612,155.57,92.3734 +469613,158.2,95.3621 +469614,156.87,94.3181 +469615,155.55,93.3054 +469616,154.24,92.3225 +469617,156.83,95.427 +469618,155.51,94.3436 +469619,154.2,93.2927 +469620,152.91,92.2724 +469621,155.45,95.491 +469622,154.15,94.3689 +469623,152.86,93.2802 +469624,151.58,92.2229 +469625,154.08,95.5542 +469626,152.79,94.3938 +469627,151.52,93.2678 +469628,150.25,92.1743 +469629,152.7,95.6165 +469630,151.43,94.4184 +469631,150.17,93.2557 +469632,148.93,92.1264 +469633,151.32,95.6779 +469634,150.07,94.4426 +469635,148.83,93.2439 +469636,147.6,92.0793 +469637,149.95,95.7383 +469638,148.71,94.4665 +469639,147.49,93.2322 +469640,146.28,92.0331 +469641,148.57,95.7978 +469642,147.35,94.49 +469643,146.15,93.2209 +469644,144.95,91.9877 +469645,147.19,95.8562 +469646,145.99,94.5131 +469647,144.8,93.2097 +469648,143.63,91.9433 +469649,145.8,95.9137 +469650,144.63,94.5358 +469651,143.46,93.1989 +469652,142.31,91.8997 +469653,144.42,95.97 +469654,143.27,94.5582 +469655,142.12,93.1883 +469656,140.99,91.8571 +469657,143.04,96.0253 +469658,141.9,94.5801 +469659,140.78,93.178 +469660,139.67,91.8154 +469661,141.66,96.0795 +469662,140.54,94.6017 +469663,139.44,93.168 +469664,138.35,91.7747 +469665,140.27,96.1325 +469666,139.18,94.6228 +469667,138.1,93.1583 +469668,137.03,91.735 +469669,138.88,96.1843 +469670,137.82,94.6435 +469671,136.76,93.1488 +469672,135.72,91.6964 +469673,137.5,96.235 +469674,136.45,94.6637 +469675,135.42,93.1397 +469676,134.4,91.6588 +469677,136.11,96.2844 +469678,135.09,94.6835 +469679,134.08,93.131 +469680,133.08,91.6222 +469681,134.72,96.3326 +469682,133.72,94.7029 +469683,132.74,93.1225 +469684,131.77,91.5868 +469685,133.33,96.3795 +469686,132.36,94.7218 +469687,131.4,93.1144 +469688,130.46,91.5524 +469689,131.94,96.4251 +469690,131,94.7402 +469691,130.06,93.1066 +469692,129.14,91.5192 +469693,130.55,96.4694 +469694,129.63,94.7581 +469695,128.72,93.0992 +469696,127.83,91.4871 +469697,129.16,96.5124 +469698,128.27,94.7756 +469699,127.39,93.0921 +469700,126.52,91.4562 +469701,127.77,96.554 +469702,126.9,94.7926 +469703,126.05,93.0854 +469704,125.21,91.4265 +469705,126.37,96.5942 +469706,125.54,94.8091 +469707,124.71,93.079 +469708,123.9,91.398 +469709,124.98,96.6331 +469710,124.17,94.8251 +469711,123.37,93.073 +469712,122.59,91.3707 +469713,123.59,96.6705 +469714,122.8,94.8406 +469715,122.04,93.0674 +469716,121.28,91.3446 +469717,122.19,96.7065 +469718,121.44,94.8556 +469719,120.7,93.0622 +469720,119.97,91.3197 +469721,120.79,96.741 +469722,120.07,94.8701 +469723,119.36,93.0573 +469724,118.66,91.2962 +469725,119.4,96.7741 +469726,118.7,94.884 +469727,118.02,93.0529 +469728,117.35,91.2739 +469729,118,96.8057 +469730,117.34,94.8974 +469731,116.69,93.0488 +469732,116.05,91.2529 +469733,116.6,96.8358 +469734,115.97,94.9103 +469735,115.35,93.0452 +469736,114.74,91.2332 +469737,115.21,96.8644 +469738,114.6,94.9227 +469739,114.01,93.0419 +469740,113.44,91.2148 +469741,113.81,96.8915 +469742,113.24,94.9345 +469743,112.68,93.0391 +469744,112.13,91.1977 +469745,112.41,96.917 +469746,111.87,94.9458 +469747,111.34,93.0366 +469748,110.82,91.1819 +469749,111.01,96.9409 +469750,110.5,94.9565 +469751,110.01,93.0346 +469752,109.52,91.1675 +469753,109.61,96.9633 +469754,109.13,94.9667 +469755,108.67,93.033 +469756,108.22,91.1545 +469757,108.21,96.9842 +469758,107.77,94.9763 +469759,107.33,93.0318 +469760,106.91,91.1428 +469761,106.81,97.0034 +469762,106.4,94.9854 +469763,106,93.0311 +469764,105.61,91.1325 +469765,105.41,97.0211 +469766,105.03,94.9939 +469767,104.66,93.0308 +469768,104.31,91.1236 +469769,104.01,97.0371 +469770,103.66,95.0019 +469771,103.33,93.0309 +469772,103,91.116 +469773,102.6,97.0516 +469774,102.29,95.0093 +469775,101.99,93.0314 +469776,101.7,91.1098 +469777,101.2,97.0644 +469778,100.92,95.0161 +469779,100.66,93.0324 +469780,100.4,91.1051 +469781,99.801,97.0756 +469782,99.556,95.0223 +469783,99.321,93.0337 +469784,99.095,91.1017 +469785,98.398,97.0852 +469786,98.187,95.028 +469787,97.986,93.0356 +469788,97.793,91.0997 +469789,96.996,97.0932 +469790,96.819,95.0331 +469791,96.651,93.0378 +469792,96.491,91.0991 +469793,95.593,97.0996 +469794,95.45,95.0377 +469795,95.316,93.0406 +469796,95.189,91.1 +469797,94.191,97.1043 +469798,94.081,95.0417 +469799,93.981,93.0437 +469800,93.887,91.1022 +469801,92.788,97.1074 +469802,92.713,95.0451 +469803,92.646,93.0473 +469804,92.586,91.1059 +469805,91.385,97.1089 +469806,91.344,95.0479 +469807,91.311,93.0513 +469808,91.284,91.1109 +469809,89.982,97.1087 +469810,89.975,95.0502 +469811,89.975,93.0557 +469812,89.982,91.1174 +469813,88.579,97.1069 +469814,88.606,95.0518 +469815,88.64,93.0606 +469816,88.68,91.1253 +469817,87.177,97.1035 +469818,87.238,95.053 +469819,87.305,93.066 +469820,87.379,91.1346 +469821,85.774,97.0985 +469822,85.869,95.0535 +469823,85.97,93.0717 +469824,86.077,91.1453 +469825,84.371,97.0919 +469826,84.5,95.0535 +469827,84.635,93.0779 +469828,84.775,91.1574 +469829,82.969,97.0836 +469830,83.131,95.0529 +469831,83.299,93.0846 +469832,83.473,91.1709 +469833,81.566,97.0738 +469834,81.763,95.0518 +469835,81.964,93.0916 +469836,82.17,91.1858 +469837,80.164,97.0623 +469838,80.394,95.0501 +469839,80.629,93.0991 +469840,80.868,91.202 +469841,78.762,97.0493 +469842,79.025,95.0478 +469843,79.293,93.107 +469844,79.565,91.2197 +469845,77.36,97.0347 +469846,77.657,95.045 +469847,77.958,93.1154 +469848,78.262,91.2387 +469849,75.959,97.0185 +469850,76.289,95.0416 +469851,76.622,93.1241 +469852,76.959,91.2591 +469853,74.558,97.0007 +469854,74.92,95.0377 +469855,75.286,93.1333 +469856,75.656,91.2808 +469857,73.157,96.9815 +469858,73.552,95.0332 +469859,73.95,93.1429 +469860,74.352,91.3039 +469861,71.756,96.9606 +469862,72.184,95.0282 +469863,72.614,93.1529 +469864,73.048,91.3283 +469865,70.356,96.9383 +469866,70.816,95.0227 +469867,71.278,93.1633 +469868,71.743,91.3541 +469869,68.956,96.9145 +469870,69.448,95.0166 +469871,69.942,93.1741 +469872,70.438,91.3812 +469873,67.557,96.8891 +469874,68.08,95.0099 +469875,68.606,93.1854 +469876,69.133,91.4096 +469877,66.158,96.8623 +469878,66.713,95.0028 +469879,67.269,93.197 +469880,67.827,91.4393 +469881,64.759,96.834 +469882,65.345,94.9951 +469883,65.932,93.209 +469884,66.521,91.4702 +469885,63.362,96.8043 +469886,63.978,94.9869 +469887,64.596,93.2214 +469888,65.214,91.5024 +469889,61.964,96.7732 +469890,62.611,94.9782 +469891,63.259,93.2342 +469892,63.907,91.5359 +469893,60.567,96.7406 +469894,61.244,94.969 +469895,61.921,93.2473 +469896,62.599,91.5707 +469897,59.171,96.7067 +469898,59.877,94.9593 +469899,60.584,93.2608 +469900,61.291,91.6066 +469901,57.775,96.6713 +469902,58.511,94.9491 +469903,59.246,93.2747 +469904,59.982,91.6438 +469905,56.38,96.6347 +469906,57.145,94.9385 +469907,57.908,93.289 +469908,58.672,91.6821 +469909,54.986,96.5967 +469910,55.778,94.9273 +469911,56.57,93.3036 +469912,57.362,91.7216 +469913,53.592,96.5574 +469914,54.413,94.9157 +469915,55.232,93.3185 +469916,56.051,91.7623 +469917,52.199,96.5168 +469918,53.047,94.9036 +469919,53.894,93.3338 +469920,54.74,91.8041 +469921,50.807,96.475 +469922,51.681,94.891 +469923,52.555,93.3495 +469924,53.427,91.8471 +469925,49.415,96.4319 +469926,50.316,94.878 +469927,51.216,93.3654 +469928,52.114,91.8911 +469929,48.024,96.3876 +469930,48.951,94.8645 +469931,49.877,93.3817 +469932,50.801,91.9362 +469933,46.634,96.3421 +469934,47.587,94.8506 +469935,48.537,93.3983 +469936,49.486,91.9824 +469937,45.245,96.2955 +469938,46.222,94.8363 +469939,47.197,93.4151 +469940,48.171,92.0296 +469941,43.857,96.2477 +469942,44.858,94.8215 +469943,45.857,93.4323 +469944,46.855,92.0778 +469945,42.469,96.1988 +469946,43.494,94.8064 +469947,44.517,93.4498 +469948,45.538,92.127 +469949,41.083,96.1489 +469950,42.131,94.7908 +469951,43.176,93.4676 +469952,44.22,92.1772 +469953,39.697,96.0979 +469954,40.767,94.7748 +469955,41.835,93.4856 +469956,42.901,92.2284 +469957,38.312,96.0458 +469958,39.404,94.7585 +469959,40.494,93.5039 +469960,41.582,92.2804 +469961,36.928,95.9928 +469962,38.042,94.7418 +469963,39.153,93.5224 +469964,40.261,92.3334 +469965,35.545,95.9388 +469966,36.679,94.7247 +469967,37.811,93.5412 +469968,38.94,92.3872 +469969,34.163,95.8838 +469970,35.317,94.7072 +469971,36.469,93.5603 +469972,37.618,92.4418 +469973,32.782,95.8279 +469974,33.955,94.6894 +469975,35.126,93.5795 +469976,36.295,92.4973 +469977,31.402,95.7712 +469978,32.594,94.6712 +469979,33.783,93.599 +469980,34.97,92.5536 +469981,30.023,95.7136 +469982,31.233,94.6528 +469983,32.44,93.6187 +469984,33.645,92.6107 +469985,28.645,95.6552 +469986,29.872,94.634 +469987,31.097,93.6386 +469988,32.319,92.6685 +469989,27.268,95.596 +469990,28.511,94.6148 +469991,29.753,93.6587 +469992,30.992,92.727 +469993,25.892,95.5361 +469994,27.151,94.5954 +469995,28.409,93.679 +469996,29.664,92.7862 +469997,24.517,95.4754 +469998,25.792,94.5757 +469999,27.064,93.6994 +470000,28.334,92.846 +470001,23.143,95.414 +470002,24.432,94.5558 +470003,25.72,93.72 +470004,27.004,92.9065 +470005,21.77,95.352 +470006,23.073,94.5355 +470007,24.374,93.7408 +470008,25.673,92.9676 +470009,20.398,95.2893 +470010,21.715,94.515 +470011,23.029,93.7617 +470012,24.34,93.0292 +470013,19.028,95.2261 +470014,20.356,94.4942 +470015,21.683,93.7827 +470016,23.007,93.0914 +470017,17.658,95.1623 +470018,18.998,94.4732 +470019,20.337,93.8039 +470020,21.672,93.1541 +470021,16.29,95.0979 +470022,17.641,94.452 +470023,18.99,93.8251 +470024,20.337,93.2172 +470025,14.923,95.0331 +470026,16.284,94.4306 +470027,17.643,93.8465 +470028,19,93.2809 +470029,13.557,94.9678 +470030,14.927,94.4089 +470031,16.296,93.8679 +470032,17.662,93.3449 +470033,12.192,94.9021 +470034,13.57,94.3871 +470035,14.948,93.8895 +470036,16.323,93.4093 +470037,10.828,94.836 +470038,12.214,94.3651 +470039,13.6,93.9111 +470040,14.983,93.4741 +470041,9.4652,94.7695 +470042,10.859,94.3429 +470043,12.251,93.9327 +470044,13.641,93.5392 +470045,8.1037,94.7027 +470046,9.5033,94.3205 +470047,10.902,93.9544 +470048,12.299,93.6045 +470049,6.7434,94.6356 +470050,8.1484,94.298 +470051,9.5529,93.9762 +470052,10.955,93.6702 +470053,5.3842,94.5683 +470054,6.7939,94.2754 +470055,8.2032,93.9979 +470056,9.6103,93.736 +470057,4.0262,94.5007 +470058,5.4398,94.2526 +470059,6.8531,94.0197 +470060,8.2643,93.8021 +470061,2.6694,94.4329 +470062,4.0861,94.2297 +470063,5.5026,94.0415 +470064,6.9172,93.8683 +470065,1.3138,94.365 +470066,2.7328,94.2067 +470067,4.1517,94.0632 +470068,5.5689,93.9346 +470069,359.96,94.297 +470070,1.3799,94.1836 +470071,2.8005,94.085 +470072,4.2194,94.001 +470073,358.61,94.2288 +470074,0.02738,94.1605 +470075,1.4488,94.1067 +470076,2.8687,94.0675 +470077,357.25,94.1607 +470078,358.68,94.1372 +470079,0.096781,94.1283 +470080,1.5169,94.134 +470081,355.9,94.0925 +470082,357.32,94.1139 +470083,358.74,94.15 +470084,0.16388,94.2005 +470085,354.55,94.0243 +470086,355.97,94.0906 +470087,357.39,94.1715 +470088,358.81,94.2669 +470089,353.2,93.9562 +470090,354.62,94.0672 +470091,356.04,94.193 +470092,357.45,94.3333 +470093,351.86,93.8881 +470094,353.27,94.0438 +470095,354.68,94.2143 +470096,356.1,94.3995 +470097,350.51,93.8202 +470098,351.92,94.0204 +470099,353.33,94.2356 +470100,354.74,94.4656 +470101,349.17,93.7524 +470102,350.57,93.997 +470103,351.98,94.2568 +470104,353.38,94.5316 +470105,347.82,93.6848 +470106,349.22,93.9736 +470107,350.62,94.2778 +470108,352.02,94.5973 +470109,346.48,93.6174 +470110,347.87,93.9502 +470111,349.27,94.2987 +470112,350.66,94.6627 +470113,345.14,93.5503 +470114,346.52,93.9269 +470115,347.91,94.3195 +470116,349.3,94.7279 +470117,343.8,93.4834 +470118,345.18,93.9036 +470119,346.55,94.3401 +470120,347.93,94.7928 +470121,342.46,93.4168 +470122,343.83,93.8803 +470123,345.2,94.3605 +470124,346.57,94.8573 +470125,341.12,93.3506 +470126,342.48,93.8571 +470127,343.84,94.3808 +470128,345.2,94.9214 +470129,339.78,93.2848 +470130,341.13,93.834 +470131,342.48,94.4008 +470132,343.84,94.9851 +470133,338.45,93.2194 +470134,339.79,93.811 +470135,341.13,94.4207 +470136,342.47,95.0484 +470137,337.11,93.1544 +470138,338.44,93.788 +470139,339.77,94.4403 +470140,341.1,95.1112 +470141,335.78,93.0899 +470142,337.09,93.7652 +470143,338.41,94.4597 +470144,339.73,95.1735 +470145,334.45,93.0259 +470146,335.75,93.7425 +470147,337.05,94.4789 +470148,338.36,95.2352 +470149,333.11,92.9625 +470150,334.4,93.7199 +470151,335.69,94.4979 +470152,336.98,95.2963 +470153,331.78,92.8996 +470154,333.06,93.6975 +470155,334.33,94.5166 +470156,335.61,95.3568 +470157,330.46,92.8373 +470158,331.71,93.6752 +470159,332.98,94.535 +470160,334.24,95.4167 +470161,329.13,92.7756 +470162,330.37,93.6531 +470163,331.62,94.5531 +470164,332.86,95.4759 +470165,327.8,92.7145 +470166,329.03,93.6312 +470167,330.26,94.571 +470168,331.48,95.5343 +470169,326.47,92.6542 +470170,327.68,93.6094 +470171,328.89,94.5885 +470172,330.11,95.5921 +470173,325.15,92.5945 +470174,326.34,93.5878 +470175,327.53,94.6058 +470176,328.73,95.649 +470177,323.82,92.5356 +470178,325,93.5664 +470179,326.17,94.6227 +470180,327.35,95.7052 +470181,322.5,92.4774 +470182,323.66,93.5452 +470183,324.81,94.6393 +470184,325.97,95.7605 +470185,321.18,92.4201 +470186,322.31,93.5243 +470187,323.45,94.6556 +470188,324.58,95.8149 +470189,319.86,92.3635 +470190,320.97,93.5036 +470191,322.09,94.6715 +470192,323.2,95.8684 +470193,318.54,92.3078 +470194,319.63,93.4831 +470195,320.72,94.6871 +470196,321.82,95.921 +470197,317.22,92.253 +470198,318.29,93.4628 +470199,319.36,94.7023 +470200,320.43,95.9727 +470201,315.9,92.199 +470202,316.95,93.4428 +470203,318,94.7171 +470204,319.05,96.0234 +470205,314.58,92.146 +470206,315.61,93.4231 +470207,316.63,94.7316 +470208,317.66,96.073 +470209,313.26,92.0939 +470210,314.27,93.4036 +470211,315.27,94.7456 +470212,316.27,96.1216 +470213,311.95,92.0428 +470214,312.93,93.3845 +470215,313.91,94.7593 +470216,314.89,96.1692 +470217,310.63,91.9927 +470218,311.59,93.3656 +470219,312.54,94.7725 +470220,313.5,96.2156 +470221,309.32,91.9435 +470222,310.25,93.347 +470223,311.18,94.7853 +470224,312.11,96.2609 +470225,308,91.8954 +470226,308.91,93.3287 +470227,309.81,94.7977 +470228,310.72,96.3051 +470229,306.69,91.8484 +470230,307.57,93.3107 +470231,308.45,94.8097 +470232,309.33,96.3481 +470233,305.38,91.8025 +470234,306.23,93.293 +470235,307.08,94.8212 +470236,307.93,96.3899 +470237,304.07,91.7576 +470238,304.89,93.2757 +470239,305.72,94.8323 +470240,306.54,96.4304 +470241,302.76,91.7138 +470242,303.56,93.2587 +470243,304.35,94.8429 +470244,305.15,96.4697 +470245,301.45,91.6712 +470246,302.22,93.242 +470247,302.99,94.853 +470248,303.75,96.5078 +470249,300.14,91.6298 +470250,300.88,93.2257 +470251,301.62,94.8627 +470252,302.36,96.5445 +470253,298.83,91.5895 +470254,299.54,93.2098 +470255,300.25,94.8719 +470256,300.96,96.5799 +470257,297.52,91.5504 +470258,298.2,93.1941 +470259,298.89,94.8806 +470260,299.57,96.614 +470261,296.21,91.5125 +470262,296.87,93.1789 +470263,297.52,94.8889 +470264,298.17,96.6468 +470265,294.9,91.4758 +470266,295.53,93.164 +470267,296.15,94.8966 +470268,296.77,96.6781 +470269,293.6,91.4404 +470270,294.19,93.1495 +470271,294.79,94.9038 +470272,295.37,96.7081 +470273,292.29,91.4062 +470274,292.86,93.1354 +470275,293.42,94.9106 +470276,293.98,96.7366 +470277,290.99,91.3732 +470278,291.52,93.1217 +470279,292.05,94.9168 +470280,292.58,96.7637 +470281,289.68,91.3416 +470282,290.19,93.1083 +470283,290.68,94.9225 +470284,291.18,96.7894 +470285,288.38,91.3113 +470286,288.85,93.0954 +470287,289.32,94.9276 +470288,289.78,96.8136 +470289,287.07,91.2822 +470290,287.51,93.0829 +470291,287.95,94.9323 +470292,288.38,96.8363 +470293,285.77,91.2545 +470294,286.18,93.0707 +470295,286.58,94.9364 +470296,286.98,96.8575 +470297,284.47,91.2281 +470298,284.84,93.059 +470299,285.21,94.9399 +470300,285.58,96.8772 +470301,283.16,91.203 +470302,283.51,93.0477 +470303,283.84,94.943 +470304,284.18,96.8953 +470305,281.86,91.1793 +470306,282.17,93.0368 +470307,282.48,94.9454 +470308,282.78,96.912 +470309,280.56,91.1569 +470310,280.84,93.0263 +470311,281.11,94.9474 +470312,281.37,96.9271 +470313,279.25,91.1359 +470314,279.5,93.0162 +470315,279.74,94.9488 +470316,279.97,96.9406 +470317,277.95,91.1163 +470318,278.17,93.0066 +470319,278.37,94.9496 +470320,278.57,96.9525 +470321,276.65,91.0981 +470322,276.83,92.9973 +470323,277,94.9499 +470324,277.17,96.9629 +470325,275.35,91.0812 +470326,275.5,92.9885 +470327,275.63,94.9496 +470328,275.76,96.9717 +470329,274.05,91.0657 +470330,274.16,92.9802 +470331,274.27,94.9487 +470332,274.36,96.9789 +470333,272.75,91.0516 +470334,272.83,92.9723 +470335,272.9,94.9473 +470336,272.96,96.9845 +470337,271.44,91.039 +470338,271.49,92.9648 +470339,271.53,94.9454 +470340,271.56,96.9884 +470341,270.14,91.0277 +470342,270.16,92.9577 +470343,270.16,94.9428 +470344,270.15,96.9908 +470345,268.84,91.0178 +470346,268.82,92.9511 +470347,268.79,94.9397 +470348,268.75,96.9916 +470349,267.54,91.0094 +470350,267.49,92.9449 +470351,267.42,94.936 +470352,267.35,96.9907 +470353,266.24,91.0023 +470354,266.15,92.9392 +470355,266.06,94.9318 +470356,265.95,96.9882 +470357,264.94,90.99665 +470358,264.82,92.9339 +470359,264.69,94.927 +470360,264.54,96.9841 +470361,263.64,90.99241 +470362,263.48,92.929 +470363,263.32,94.9216 +470364,263.14,96.9783 +470365,262.34,90.98958 +470366,262.15,92.9246 +470367,261.95,94.9157 +470368,261.74,96.971 +470369,261.03,90.98816 +470370,260.81,92.9206 +470371,260.58,94.9091 +470372,260.34,96.962 +470373,259.73,90.98814 +470374,259.48,92.917 +470375,259.21,94.9021 +470376,258.93,96.9514 +470377,258.43,90.98952 +470378,258.14,92.9139 +470379,257.84,94.8944 +470380,257.53,96.9392 +470381,257.13,90.9923 +470382,256.81,92.9112 +470383,256.48,94.8862 +470384,256.13,96.9253 +470385,255.83,90.99647 +470386,255.47,92.909 +470387,255.11,94.8774 +470388,254.73,96.9099 +470389,254.52,91.002 +470390,254.14,92.9071 +470391,253.74,94.8681 +470392,253.33,96.8929 +470393,253.22,91.009 +470394,252.8,92.9057 +470395,252.37,94.8582 +470396,251.93,96.8742 +470397,251.92,91.0173 +470398,251.47,92.9048 +470399,251.01,94.8477 +470400,250.53,96.854 +470401,250.61,91.027 +470402,250.13,92.9042 +470403,249.64,94.8367 +470404,249.13,96.8322 +470405,249.31,91.038 +470406,248.8,92.9041 +470407,248.27,94.8251 +470408,247.73,96.8088 +470409,248.01,91.0504 +470410,247.46,92.9044 +470411,246.9,94.813 +470412,246.33,96.7839 +470413,246.7,91.0642 +470414,246.13,92.9051 +470415,245.54,94.8004 +470416,244.93,96.7574 +470417,245.4,91.0792 +470418,244.79,92.9063 +470419,244.17,94.7872 +470420,243.53,96.7293 +470421,244.09,91.0957 +470422,243.45,92.9078 +470423,242.8,94.7734 +470424,242.14,96.6998 +470425,242.78,91.1134 +470426,242.12,92.9097 +470427,241.44,94.7591 +470428,240.74,96.6687 +470429,241.48,91.1324 +470430,240.78,92.9121 +470431,240.07,94.7444 +470432,239.34,96.6361 +470433,240.17,91.1527 +470434,239.44,92.9148 +470435,238.7,94.729 +470436,237.95,96.6021 +470437,238.86,91.1743 +470438,238.11,92.918 +470439,237.34,94.7132 +470440,236.55,96.5666 +470441,237.55,91.1971 +470442,236.77,92.9215 +470443,235.97,94.6968 +470444,235.16,96.5296 +470445,236.25,91.2212 +470446,235.43,92.9254 +470447,234.61,94.68 +470448,233.76,96.4912 +470449,234.94,91.2465 +470450,234.1,92.9297 +470451,233.24,94.6626 +470452,232.37,96.4514 +470453,233.63,91.273 +470454,232.76,92.9343 +470455,231.88,94.6447 +470456,230.98,96.4101 +470457,232.31,91.3008 +470458,231.42,92.9394 +470459,230.51,94.6264 +470460,229.59,96.3675 +470461,231,91.3297 +470462,230.08,92.9448 +470463,229.15,94.6075 +470464,228.2,96.3236 +470465,229.69,91.3598 +470466,228.74,92.9505 +470467,227.78,94.5882 +470468,226.81,96.2783 +470469,228.38,91.391 +470470,227.41,92.9566 +470471,226.42,94.5684 +470472,225.42,96.2316 +470473,227.06,91.4234 +470474,226.07,92.963 +470475,225.06,94.5481 +470476,224.03,96.1837 +470477,225.75,91.4569 +470478,224.73,92.9698 +470479,223.69,94.5274 +470480,222.64,96.1346 +470481,224.43,91.4914 +470482,223.39,92.9769 +470483,222.33,94.5062 +470484,221.25,96.0841 +470485,223.12,91.5271 +470486,222.05,92.9843 +470487,220.97,94.4846 +470488,219.87,96.0325 +470489,221.8,91.5637 +470490,220.71,92.992 +470491,219.6,94.4626 +470492,218.48,95.9796 +470493,220.48,91.6014 +470494,219.37,93.0001 +470495,218.24,94.4401 +470496,217.1,95.9256 +470497,219.16,91.6402 +470498,218.03,93.0084 +470499,216.88,94.4172 +470500,215.72,95.8704 +470501,217.84,91.6799 +470502,216.69,93.017 +470503,215.52,94.3939 +470504,214.33,95.8141 +470505,216.52,91.7205 +470506,215.35,93.0259 +470507,214.16,94.3702 +470508,212.95,95.7567 +470509,215.2,91.7621 +470510,214.01,93.0351 +470511,212.8,94.3461 +470512,211.57,95.6983 +470513,213.88,91.8047 +470514,212.67,93.0446 +470515,211.44,94.3216 +470516,210.19,95.6388 +470517,212.56,91.8481 +470518,211.32,93.0543 +470519,210.08,94.2968 +470520,208.82,95.5783 +470521,211.23,91.8923 +470522,209.98,93.0643 +470523,208.72,94.2715 +470524,207.44,95.5168 +470525,209.91,91.9375 +470526,208.64,93.0745 +470527,207.36,94.2459 +470528,206.06,95.4543 +470529,208.58,91.9834 +470530,207.3,93.0849 +470531,206,94.22 +470532,204.69,95.391 +470533,207.25,92.0301 +470534,205.95,93.0956 +470535,204.64,94.1937 +470536,203.31,95.3267 +470537,205.92,92.0776 +470538,204.61,93.1065 +470539,203.28,94.1671 +470540,201.94,95.2616 +470541,204.59,92.1258 +470542,203.27,93.1176 +470543,201.92,94.1402 +470544,200.57,95.1956 +470545,203.26,92.1747 +470546,201.92,93.1288 +470547,200.57,94.113 +470548,199.2,95.1289 +470549,201.93,92.2243 +470550,200.58,93.1403 +470551,199.21,94.0854 +470552,197.83,95.0613 +470553,200.6,92.2746 +470554,199.23,93.152 +470555,197.85,94.0576 +470556,196.46,94.9931 +470557,199.27,92.3254 +470558,197.89,93.1638 +470559,196.5,94.0295 +470560,195.09,94.9241 +470561,197.93,92.3769 +470562,196.54,93.1757 +470563,195.14,94.0012 +470564,193.73,94.8545 +470565,196.59,92.4289 +470566,195.2,93.1879 +470567,193.79,93.9726 +470568,192.36,94.7842 +470569,195.26,92.4815 +470570,193.85,93.2001 +470571,192.43,93.9437 +470572,191,94.7133 +470573,193.92,92.5346 +470574,192.5,93.2125 +470575,191.08,93.9146 +470576,189.64,94.6419 +470577,192.58,92.5882 +470578,191.16,93.225 +470579,189.72,93.8853 +470580,188.28,94.5699 +470581,191.24,92.6421 +470582,189.81,93.2376 +470583,188.37,93.8557 +470584,186.92,94.4974 +470585,189.9,92.6966 +470586,188.46,93.2503 +470587,187.01,93.826 +470588,185.56,94.4244 +470589,188.55,92.7514 +470590,187.11,93.2631 +470591,185.66,93.796 +470592,184.2,94.351 +470593,187.21,92.8065 +470594,185.76,93.2759 +470595,184.31,93.7659 +470596,182.84,94.2772 +470597,185.86,92.862 +470598,184.42,93.2888 +470599,182.96,93.7356 +470600,181.49,94.2031 +470601,184.52,92.9177 +470602,183.07,93.3018 +470603,181.6,93.7052 +470604,180.14,94.1285 +470605,183.17,92.9738 +470606,181.72,93.3148 +470607,180.25,93.6746 +470608,178.78,94.0537 +470609,181.82,93.03 +470610,180.37,93.3278 +470611,178.9,93.6439 +470612,177.43,93.9786 +470613,180.47,93.0865 +470614,179.02,93.3409 +470615,177.55,93.613 +470616,176.08,93.9033 +470617,179.12,93.1431 +470618,177.66,93.354 +470619,176.2,93.5821 +470620,174.73,93.8278 +470621,177.77,93.1998 +470622,176.31,93.367 +470623,174.85,93.551 +470624,173.38,93.7521 +470625,176.41,93.2566 +470626,174.96,93.3801 +470627,173.5,93.5198 +470628,172.04,93.6763 +470629,175.06,93.3135 +470630,173.61,93.3931 +470631,172.15,93.4886 +470632,170.69,93.6004 +470633,173.7,93.3705 +470634,172.26,93.4061 +470635,170.81,93.4573 +470636,169.35,93.5245 +470637,172.35,93.4274 +470638,170.91,93.4191 +470639,169.46,93.4259 +470640,168,93.4485 +470641,170.99,93.4843 +470642,169.55,93.432 +470643,168.11,93.3945 +470644,166.66,93.3725 +470645,169.63,93.5411 +470646,168.2,93.4448 +470647,166.76,93.3631 +470648,165.32,93.2966 +470649,168.27,93.5978 +470650,166.85,93.4575 +470651,165.42,93.3316 +470652,163.98,93.2207 +470653,166.9,93.6544 +470654,165.49,93.4702 +470655,164.07,93.3002 +470656,162.64,93.145 +470657,165.54,93.7109 +470658,164.14,93.4827 +470659,162.72,93.2687 +470660,161.31,93.0694 +470661,164.18,93.7671 +470662,162.78,93.4952 +470663,161.38,93.2373 +470664,159.97,92.994 +470665,162.81,93.8231 +470666,161.43,93.5075 +470667,160.03,93.2058 +470668,158.64,92.9188 +470669,161.45,93.8788 +470670,160.07,93.5197 +470671,158.69,93.1744 +470672,157.3,92.8438 +470673,160.08,93.9343 +470674,158.71,93.5317 +470675,157.34,93.1431 +470676,155.97,92.7691 +470677,158.71,93.9894 +470678,157.36,93.5436 +470679,156,93.1118 +470680,154.64,92.6947 +470681,157.34,94.0441 +470682,156,93.5553 +470683,154.66,93.0806 +470684,153.31,92.6206 +470685,155.97,94.0985 +470686,154.64,93.5668 +470687,153.31,93.0494 +470688,151.98,92.547 +470689,154.6,94.1524 +470690,153.29,93.5781 +470691,151.97,93.0183 +470692,150.65,92.4737 +470693,153.22,94.2059 +470694,151.93,93.5893 +470695,150.63,92.9874 +470696,149.32,92.4009 +470697,151.85,94.2588 +470698,150.57,93.6002 +470699,149.29,92.9565 +470700,148,92.3285 +470701,150.47,94.3113 +470702,149.21,93.6109 +470703,147.95,92.9258 +470704,146.67,92.2566 +470705,149.1,94.3632 +470706,147.85,93.6214 +470707,146.6,92.8952 +470708,145.35,92.1853 +470709,147.72,94.4145 +470710,146.49,93.6316 +470711,145.26,92.8647 +470712,144.03,92.1145 +470713,146.34,94.4651 +470714,145.14,93.6416 +470715,143.92,92.8344 +470716,142.71,92.0443 +470717,144.96,94.5152 +470718,143.78,93.6513 +470719,142.58,92.8043 +470720,141.39,91.9748 +470721,143.58,94.5645 +470722,142.42,93.6607 +470723,141.24,92.7743 +470724,140.07,91.9059 +470725,142.2,94.6132 +470726,141.05,93.6699 +470727,139.9,92.7446 +470728,138.75,91.8376 +470729,140.82,94.6611 +470730,139.69,93.6788 +470731,138.56,92.715 +470732,137.43,91.7701 +470733,139.43,94.7082 +470734,138.33,93.6873 +470735,137.23,92.6856 +470736,136.11,91.7033 +470737,138.05,94.7545 +470738,136.97,93.6956 +470739,135.89,92.6564 +470740,134.8,91.6372 +470741,136.66,94.8 +470742,135.61,93.7035 +470743,134.55,92.6274 +470744,133.48,91.572 +470745,135.28,94.8446 +470746,134.25,93.7111 +470747,133.21,92.5987 +470748,132.17,91.5075 +470749,133.89,94.8883 +470750,132.89,93.7184 +470751,131.87,92.5702 +470752,130.86,91.4439 +470753,132.5,94.9312 +470754,131.52,93.7253 +470755,130.54,92.542 +470756,129.54,91.3812 +470757,131.11,94.973 +470758,130.16,93.7318 +470759,129.2,92.514 +470760,128.23,91.3193 +470761,129.72,95.0139 +470762,128.8,93.738 +470763,127.86,92.4863 +470764,126.92,91.2584 +470765,128.33,95.0538 +470766,127.44,93.7438 +470767,126.53,92.4588 +470768,125.61,91.1984 +470769,126.94,95.0927 +470770,126.07,93.7493 +470771,125.19,92.4316 +470772,124.3,91.1394 +470773,125.55,95.1305 +470774,124.71,93.7543 +470775,123.86,92.4048 +470776,122.99,91.0813 +470777,124.16,95.1673 +470778,123.35,93.7589 +470779,122.52,92.3782 +470780,121.69,91.0243 +470781,122.77,95.2029 +470782,121.98,93.7632 +470783,121.19,92.3519 +470784,120.38,90.96828 +470785,121.37,95.2374 +470786,120.62,93.767 +470787,119.85,92.326 +470788,119.07,90.91332 +470789,119.98,95.2708 +470790,119.25,93.7704 +470791,118.52,92.3003 +470792,117.77,90.85943 +470793,118.58,95.3029 +470794,117.89,93.7733 +470795,117.18,92.275 +470796,116.46,90.80664 +470797,117.19,95.3339 +470798,116.52,93.7758 +470799,115.85,92.25 +470800,115.16,90.75496 +470801,115.79,95.3637 +470802,115.16,93.7779 +470803,114.51,92.2254 +470804,113.86,90.7044 +470805,114.39,95.3922 +470806,113.79,93.7795 +470807,113.18,92.2011 +470808,112.55,90.655 +470809,113,95.4194 +470810,112.43,93.7807 +470811,111.85,92.1772 +470812,111.25,90.60676 +470813,111.6,95.4454 +470814,111.06,93.7814 +470815,110.51,92.1536 +470816,109.95,90.55971 +470817,110.2,95.47 +470818,109.7,93.7816 +470819,109.18,92.1304 +470820,108.65,90.51386 +470821,108.8,95.4934 +470822,108.33,93.7814 +470823,107.85,92.1076 +470824,107.35,90.46922 +470825,107.4,95.5154 +470826,106.97,93.7807 +470827,106.51,92.0851 +470828,106.05,90.42582 +470829,106,95.536 +470830,105.6,93.7794 +470831,105.18,92.063 +470832,104.75,90.38366 +470833,104.6,95.5552 +470834,104.23,93.7777 +470835,103.85,92.0413 +470836,103.45,90.34276 +470837,103.2,95.5731 +470838,102.87,93.7755 +470839,102.52,92.02 +470840,102.15,90.30313 +470841,101.8,95.5895 +470842,101.5,93.7728 +470843,101.19,91.9991 +470844,100.85,90.26479 +470845,100.4,95.6045 +470846,100.14,93.7696 +470847,99.853,91.9786 +470848,99.553,90.22775 +470849,98.997,95.6181 +470850,98.769,93.7659 +470851,98.521,91.9585 +470852,98.255,90.19201 +470853,97.596,95.6302 +470854,97.403,93.7616 +470855,97.19,91.9389 +470856,96.957,90.1576 +470857,96.194,95.6408 +470858,96.037,93.7569 +470859,95.858,91.9196 +470860,95.66,90.12451 +470861,94.792,95.65 +470862,94.67,93.7516 +470863,94.526,91.9007 +470864,94.363,90.092766 +470865,93.39,95.6576 +470866,93.304,93.7458 +470867,93.195,91.8823 +470868,93.065,90.062367 +470869,91.988,95.6638 +470870,91.937,93.7394 +470871,91.863,91.8643 +470872,91.769,90.033323 +470873,90.586,95.6684 +470874,90.571,93.7326 +470875,90.532,91.8467 +470876,90.472,90.005641 +470877,89.184,95.6715 +470878,89.204,93.7251 +470879,89.201,91.8295 +470880,89.175,89.979328 +470881,87.782,95.6731 +470882,87.838,93.7172 +470883,87.869,91.8128 +470884,87.879,89.95439 +470885,86.379,95.6732 +470886,86.472,93.7087 +470887,86.538,91.7965 +470888,86.582,89.930831 +470889,84.977,95.6717 +470890,85.105,93.6997 +470891,85.207,91.7806 +470892,85.286,89.908656 +470893,83.575,95.6686 +470894,83.739,93.6901 +470895,83.876,91.7652 +470896,83.989,89.88787 +470897,82.173,95.664 +470898,82.373,93.68 +470899,82.544,91.7502 +470900,82.693,89.86847 +470901,80.771,95.6578 +470902,81.006,93.6693 +470903,81.213,91.7357 +470904,81.396,89.85047 +470905,79.37,95.6501 +470906,79.64,93.6581 +470907,79.882,91.7215 +470908,80.099,89.83386 +470909,77.968,95.6408 +470910,78.274,93.6464 +470911,78.551,91.7079 +470912,78.803,89.81865 +470913,76.567,95.6299 +470914,76.908,93.6341 +470915,77.22,91.6946 +470916,77.506,89.80483 +470917,75.166,95.6174 +470918,75.542,93.6212 +470919,75.888,91.6818 +470920,76.209,89.79241 +470921,73.765,95.6034 +470922,74.176,93.6078 +470923,74.557,91.6695 +470924,74.911,89.78138 +470925,72.365,95.5878 +470926,72.811,93.5939 +470927,73.226,91.6575 +470928,73.614,89.77174 +470929,70.965,95.5707 +470930,71.445,93.5794 +470931,71.894,91.6461 +470932,72.316,89.76349 +470933,69.565,95.5519 +470934,70.08,93.5644 +470935,70.563,91.635 +470936,71.018,89.75663 +470937,68.166,95.5316 +470938,68.715,93.5488 +470939,69.231,91.6244 +470940,69.72,89.75115 +470941,66.767,95.5098 +470942,67.35,93.5327 +470943,67.899,91.6142 +470944,68.421,89.74705 +470945,65.369,95.4864 +470946,65.985,93.5161 +470947,66.567,91.6045 +470948,67.123,89.74432 +470949,63.971,95.4614 +470950,64.62,93.4989 +470951,65.236,91.5951 +470952,65.823,89.74295 +470953,62.573,95.4349 +470954,63.255,93.4812 +470955,63.904,91.5862 +470956,64.524,89.74294 +470957,61.177,95.4069 +470958,61.891,93.4629 +470959,62.571,91.5778 +470960,63.223,89.74429 +470961,59.78,95.3774 +470962,60.527,93.4441 +470963,61.239,91.5697 +470964,61.923,89.74698 +470965,58.385,95.3463 +470966,59.163,93.4248 +470967,59.907,91.5621 +470968,60.622,89.751 +470969,56.99,95.3137 +470970,57.799,93.405 +470971,58.574,91.5549 +470972,59.32,89.75635 +470973,55.595,95.2796 +470974,56.436,93.3846 +470975,57.241,91.5481 +470976,58.018,89.76301 +470977,54.201,95.2441 +470978,55.072,93.3637 +470979,55.908,91.5418 +470980,56.715,89.77098 +470981,52.808,95.207 +470982,53.709,93.3424 +470983,54.575,91.5358 +470984,55.412,89.78024 +470985,51.416,95.1685 +470986,52.346,93.3205 +470987,53.242,91.5302 +470988,54.108,89.79078 +470989,50.024,95.1286 +470990,50.984,93.2981 +470991,51.909,91.525 +470992,52.804,89.80259 +470993,48.634,95.0872 +470994,49.622,93.2752 +470995,50.575,91.5203 +470996,51.498,89.81566 +470997,47.243,95.0444 +470998,48.26,93.2518 +470999,49.241,91.5159 +471000,50.193,89.82997 +471001,45.854,95.0003 +471002,46.898,93.2279 +471003,47.907,91.5119 +471004,48.886,89.8455 +471005,44.466,94.9547 +471006,45.537,93.2036 +471007,46.573,91.5083 +471008,47.579,89.86224 +471009,43.078,94.9078 +471010,44.176,93.1787 +471011,45.238,91.505 +471012,46.271,89.88019 +471013,41.692,94.8595 +471014,42.815,93.1534 +471015,43.903,91.5021 +471016,44.962,89.89931 +471017,40.306,94.8099 +471018,41.454,93.1277 +471019,42.568,91.4996 +471020,43.652,89.919589 +471021,38.921,94.759 +471022,40.094,93.1014 +471023,41.233,91.4975 +471024,42.342,89.941017 +471025,37.537,94.7068 +471026,38.735,93.0748 +471027,39.897,91.4956 +471028,41.031,89.963572 +471029,36.155,94.6533 +471030,37.375,93.0476 +471031,38.561,91.4942 +471032,39.719,89.987236 +471033,34.773,94.5986 +471034,36.016,93.0201 +471035,37.225,91.4931 +471036,38.406,90.011989 +471037,33.392,94.5427 +471038,34.657,92.9921 +471039,35.889,91.4923 +471040,37.092,90.037812 +471041,32.012,94.4856 +471042,33.299,92.9637 +471043,34.552,91.4918 +471044,35.777,90.064684 +471045,30.633,94.4273 +471046,31.941,92.9348 +471047,33.215,91.4916 +471048,34.462,90.092585 +471049,29.255,94.3679 +471050,30.583,92.9056 +471051,31.878,91.4918 +471052,33.145,90.12149 +471053,27.879,94.3073 +471054,29.226,92.876 +471055,30.541,91.4923 +471056,31.827,90.15139 +471057,26.503,94.2456 +471058,27.869,92.8459 +471059,29.203,91.493 +471060,30.509,90.18225 +471061,25.129,94.1829 +471062,26.512,92.8155 +471063,27.864,91.4941 +471064,29.189,90.21404 +471065,23.755,94.1191 +471066,25.156,92.7847 +471067,26.526,91.4954 +471068,27.869,90.24676 +471069,22.383,94.0543 +471070,23.8,92.7536 +471071,25.187,91.497 +471072,26.547,90.28037 +471073,21.012,93.9885 +471074,22.445,92.7221 +471075,23.848,91.4988 +471076,25.224,90.31485 +471077,19.642,93.9218 +471078,21.09,92.6902 +471079,22.509,91.5009 +471080,23.901,90.35018 +471081,18.273,93.8541 +471082,19.735,92.658 +471083,21.169,91.5033 +471084,22.576,90.38632 +471085,16.906,93.7855 +471086,18.381,92.6255 +471087,19.829,91.5059 +471088,21.25,90.42326 +471089,15.539,93.7161 +471090,17.028,92.5926 +471091,18.488,91.5087 +471092,19.923,90.46097 +471093,14.174,93.6457 +471094,15.674,92.5595 +471095,17.147,91.5118 +471096,18.595,90.49943 +471097,12.81,93.5746 +471098,14.321,92.526 +471099,15.806,91.515 +471100,17.266,90.5386 +471101,11.447,93.5027 +471102,12.969,92.4923 +471103,14.464,91.5185 +471104,15.935,90.57846 +471105,10.086,93.43 +471106,11.617,92.4582 +471107,13.122,91.5221 +471108,14.604,90.61898 +471109,8.7255,93.3566 +471110,10.265,92.4239 +471111,11.78,91.5259 +471112,13.271,90.66014 +471113,7.3664,93.2826 +471114,8.9143,92.3893 +471115,10.437,91.5299 +471116,11.937,90.7019 +471117,6.0086,93.2078 +471118,7.5636,92.3545 +471119,9.0944,91.5341 +471120,10.602,90.74425 +471121,4.6521,93.1325 +471122,6.2133,92.3195 +471123,7.7509,91.5384 +471124,9.2663,90.78714 +471125,3.2969,93.0565 +471126,4.8635,92.2842 +471127,6.4072,91.5429 +471128,7.9289,90.83056 +471129,1.9429,92.98 +471130,3.5142,92.2487 +471131,5.063,91.5475 +471132,6.5903,90.87447 +471133,0.59014,92.9029 +471134,2.1652,92.2129 +471135,3.7184,91.5522 +471136,5.2506,90.91884 +471137,359.24,92.8254 +471138,0.81677,92.177 +471139,2.3735,91.557 +471140,3.9096,90.96364 +471141,357.89,92.7474 +471142,359.47,92.1409 +471143,1.0282,91.562 +471144,2.5674,91.0089 +471145,356.54,92.6689 +471146,358.12,92.1046 +471147,359.68,91.567 +471148,1.224,91.0544 +471149,355.19,92.5901 +471150,356.77,92.0682 +471151,358.34,91.5721 +471152,359.88,91.1004 +471153,353.85,92.5109 +471154,355.43,92.0316 +471155,356.99,91.5773 +471156,358.53,91.1466 +471157,352.5,92.4313 +471158,354.08,91.9948 +471159,355.64,91.5826 +471160,357.19,91.1931 +471161,351.16,92.3515 +471162,352.74,91.958 +471163,354.3,91.5879 +471164,355.84,91.2399 +471165,349.81,92.2714 +471166,351.39,91.921 +471167,352.95,91.5932 +471168,354.49,91.2869 +471169,348.47,92.1911 +471170,350.05,91.8838 +471171,351.6,91.5986 +471172,353.14,91.3341 +471173,347.13,92.1106 +471174,348.7,91.8466 +471175,350.25,91.604 +471176,351.79,91.3814 +471177,345.79,92.03 +471178,347.36,91.8093 +471179,348.9,91.6094 +471180,350.43,91.4289 +471181,344.46,91.9492 +471182,346.01,91.772 +471183,347.55,91.6148 +471184,349.08,91.4764 +471185,343.12,91.8683 +471186,344.67,91.7345 +471187,346.2,91.6201 +471188,347.72,91.5241 +471189,341.79,91.7874 +471190,343.33,91.697 +471191,344.85,91.6255 +471192,346.37,91.5717 +471193,340.45,91.7064 +471194,341.99,91.6595 +471195,343.5,91.6308 +471196,345.01,91.6194 +471197,339.12,91.6255 +471198,340.64,91.6219 +471199,342.15,91.6361 +471200,343.65,91.667 +471201,337.79,91.5446 +471202,339.3,91.5843 +471203,340.8,91.6413 +471204,342.29,91.7146 +471205,336.46,91.4638 +471206,337.96,91.5467 +471207,339.45,91.6465 +471208,340.93,91.7621 +471209,335.13,91.383 +471210,336.62,91.5091 +471211,338.1,91.6516 +471212,339.56,91.8094 +471213,333.8,91.3025 +471214,335.28,91.4715 +471215,336.75,91.6566 +471216,338.2,91.8566 +471217,332.48,91.2221 +471218,333.94,91.434 +471219,335.39,91.6615 +471220,336.83,91.9036 +471221,331.15,91.1419 +471222,332.6,91.3964 +471223,334.04,91.6663 +471224,335.47,91.9504 +471225,329.83,91.062 +471226,331.26,91.359 +471227,332.69,91.6709 +471228,334.1,91.9969 +471229,328.5,90.98234 +471230,329.93,91.3215 +471231,331.34,91.6755 +471232,332.73,92.0432 +471233,327.18,90.903 +471234,328.59,91.2842 +471235,329.98,91.6799 +471236,331.36,92.0891 +471237,325.86,90.82399 +471238,327.25,91.2469 +471239,328.63,91.6841 +471240,329.99,92.1347 +471241,324.54,90.74536 +471242,325.91,91.2097 +471243,327.27,91.6882 +471244,328.62,92.1799 +471245,323.23,90.66714 +471246,324.58,91.1726 +471247,325.92,91.6921 +471248,327.25,92.2247 +471249,321.91,90.58935 +471250,323.24,91.1356 +471251,324.56,91.6959 +471252,325.87,92.269 +471253,320.59,90.51202 +471254,321.9,91.0987 +471255,323.21,91.6994 +471256,324.5,92.3129 +471257,319.28,90.43519 +471258,320.57,91.062 +471259,321.85,91.7028 +471260,323.12,92.3563 +471261,317.96,90.35889 +471262,319.23,91.0254 +471263,320.49,91.7059 +471264,321.74,92.3992 +471265,316.65,90.28315 +471266,317.9,90.98897 +471267,319.14,91.7088 +471268,320.36,92.4415 +471269,315.34,90.208 +471270,316.57,90.95269 +471271,317.78,91.7115 +471272,318.98,92.4832 +471273,314.03,90.13346 +471274,315.23,90.91658 +471275,316.42,91.7139 +471276,317.6,92.5243 +471277,312.72,90.059563 +471278,313.9,90.88065 +471279,315.07,91.7161 +471280,316.22,92.5647 +471281,311.41,89.986342 +471282,312.56,90.84491 +471283,313.71,91.718 +471284,314.84,92.6045 +471285,310.1,89.913822 +471286,311.23,90.80938 +471287,312.35,91.7196 +471288,313.46,92.6435 +471289,308.79,89.84203 +471290,309.9,90.77405 +471291,310.99,91.721 +471292,312.07,92.6819 +471293,307.49,89.771 +471294,308.57,90.73894 +471295,309.63,91.7221 +471296,310.69,92.7194 +471297,306.18,89.70074 +471298,307.24,90.70405 +471299,308.27,91.7229 +471300,309.3,92.7562 +471301,304.88,89.6313 +471302,305.9,90.66941 +471303,306.92,91.7233 +471304,307.91,92.7921 +471305,303.58,89.56269 +471306,304.57,90.63501 +471307,305.56,91.7235 +471308,306.53,92.8272 +471309,302.27,89.49494 +471310,303.24,90.60086 +471311,304.2,91.7233 +471312,305.14,92.8614 +471313,300.97,89.42807 +471314,301.91,90.56698 +471315,302.84,91.7228 +471316,303.75,92.8948 +471317,299.67,89.36212 +471318,300.58,90.53337 +471319,301.48,91.722 +471320,302.36,92.9272 +471321,298.37,89.29709 +471322,299.25,90.50004 +471323,300.12,91.7208 +471324,300.97,92.9586 +471325,297.07,89.23302 +471326,297.92,90.467 +471327,298.76,91.7192 +471328,299.57,92.9891 +471329,295.77,89.16993 +471330,296.59,90.43425 +471331,297.39,91.7173 +471332,298.18,93.0186 +471333,294.48,89.10784 +471334,295.26,90.40181 +471335,296.03,91.715 +471336,296.79,93.047 +471337,293.18,89.04677 +471338,293.93,90.36968 +471339,294.67,91.7123 +471340,295.39,93.0744 +471341,291.88,88.9867 +471342,292.61,90.33786 +471343,293.31,91.7093 +471344,294,93.1008 +471345,290.59,88.9278 +471346,291.28,90.30638 +471347,291.95,91.7058 +471348,292.61,93.126 +471349,289.29,88.8699 +471350,289.95,90.27522 +471351,290.59,91.702 +471352,291.21,93.1501 +471353,288,88.8131 +471354,288.62,90.2444 +471355,289.23,91.6977 +471356,289.81,93.1731 +471357,286.7,88.7575 +471358,287.29,90.21393 +471359,287.86,91.693 +471360,288.42,93.1949 +471361,285.41,88.7029 +471362,285.97,90.18381 +471363,286.5,91.6879 +471364,287.02,93.2156 +471365,284.12,88.6496 +471366,284.64,90.15405 +471367,285.14,91.6824 +471368,285.62,93.235 +471369,282.82,88.5974 +471370,283.31,90.12465 +471371,283.78,91.6764 +471372,284.22,93.2532 +471373,281.53,88.5464 +471374,281.98,90.095622 +471375,282.42,91.67 +471376,282.83,93.2702 +471377,280.24,88.4966 +471378,280.66,90.066969 +471379,281.05,91.6631 +471380,281.43,93.286 +471381,278.95,88.448 +471382,279.33,90.038696 +471383,279.69,91.6558 +471384,280.03,93.3004 +471385,277.66,88.4006 +471386,278,90.01081 +471387,278.33,91.6481 +471388,278.63,93.3136 +471389,276.37,88.3545 +471390,276.68,89.983313 +471391,276.97,91.6398 +471392,277.23,93.3255 +471393,275.08,88.3097 +471394,275.35,89.956212 +471395,275.6,91.6311 +471396,275.83,93.336 +471397,273.79,88.2661 +471398,274.03,89.929511 +471399,274.24,91.622 +471400,274.43,93.3452 +471401,272.5,88.2238 +471402,272.7,89.903213 +471403,272.88,91.6123 +471404,273.03,93.353 +471405,271.21,88.1828 +471406,271.37,89.87732 +471407,271.51,91.6022 +471408,271.63,93.3595 +471409,269.92,88.1431 +471410,270.05,89.85184 +471411,270.15,91.5916 +471412,270.23,93.3646 +471413,268.63,88.1047 +471414,268.72,89.82678 +471415,268.79,91.5805 +471416,268.83,93.3683 +471417,267.34,88.0676 +471418,267.4,89.80213 +471419,267.43,91.569 +471420,267.42,93.3707 +471421,266.05,88.0319 +471422,266.07,89.77791 +471423,266.06,91.5569 +471424,266.02,93.3716 +471425,264.76,87.9975 +471426,264.75,89.75411 +471427,264.7,91.5443 +471428,264.62,93.371 +471429,263.47,87.9644 +471430,263.42,89.73074 +471431,263.34,91.5313 +471432,263.22,93.3691 +471433,262.18,87.9327 +471434,262.09,89.70779 +471435,261.97,91.5177 +471436,261.82,93.3657 +471437,260.9,87.9024 +471438,260.77,89.68528 +471439,260.61,91.5036 +471440,260.42,93.3608 +471441,259.61,87.8734 +471442,259.44,89.6632 +471443,259.25,91.489 +471444,259.02,93.3545 +471445,258.32,87.8458 +471446,258.12,89.64155 +471447,257.89,91.474 +471448,257.62,93.3467 +471449,257.03,87.8195 +471450,256.79,89.62034 +471451,256.52,91.4584 +471452,256.22,93.3375 +471453,255.74,87.7946 +471454,255.47,89.59957 +471455,255.16,91.4423 +471456,254.82,93.3268 +471457,254.45,87.7711 +471458,254.14,89.57923 +471459,253.8,91.4257 +471460,253.42,93.3146 +471461,253.16,87.7489 +471462,252.82,89.55933 +471463,252.44,91.4085 +471464,252.02,93.3009 +471465,251.87,87.7281 +471466,251.49,89.53987 +471467,251.07,91.3909 +471468,250.62,93.2858 +471469,250.58,87.7087 +471470,250.17,89.52086 +471471,249.71,91.3728 +471472,249.22,93.2691 +471473,249.29,87.6907 +471474,248.84,89.50227 +471475,248.35,91.3541 +471476,247.82,93.251 +471477,248,87.674 +471478,247.51,89.48413 +471479,246.99,91.3349 +471480,246.42,93.2314 +471481,246.71,87.6587 +471482,246.19,89.46643 +471483,245.63,91.3153 +471484,245.02,93.2102 +471485,245.42,87.6448 +471486,244.86,89.44916 +471487,244.27,91.2951 +471488,243.63,93.1877 +471489,244.13,87.6322 +471490,243.54,89.43233 +471491,242.9,91.2744 +471492,242.23,93.1636 +471493,242.84,87.621 +471494,242.21,89.41594 +471495,241.54,91.2532 +471496,240.83,93.138 +471497,241.55,87.6111 +471498,240.89,89.39998 +471499,240.18,91.2315 +471500,239.44,93.111 +471501,240.26,87.6026 +471502,239.56,89.38445 +471503,238.82,91.2092 +471504,238.04,93.0825 +471505,238.96,87.5954 +471506,238.23,89.36935 +471507,237.46,91.1865 +471508,236.65,93.0525 +471509,237.67,87.5895 +471510,236.91,89.35468 +471511,236.1,91.1633 +471512,235.25,93.0211 +471513,236.38,87.5849 +471514,235.58,89.34043 +471515,234.74,91.1396 +471516,233.86,92.9882 +471517,235.08,87.5817 +471518,234.25,89.32661 +471519,233.38,91.1154 +471520,232.47,92.9539 +471521,233.79,87.5798 +471522,232.93,89.3132 +471523,232.02,91.0907 +471524,231.07,92.9181 +471525,232.49,87.5792 +471526,231.6,89.30022 +471527,230.66,91.0655 +471528,229.68,92.8809 +471529,231.2,87.5798 +471530,230.27,89.28764 +471531,229.31,91.0398 +471532,228.29,92.8423 +471533,229.9,87.5817 +471534,228.94,89.27548 +471535,227.95,91.0137 +471536,226.9,92.8023 +471537,228.6,87.5849 +471538,227.62,89.26372 +471539,226.59,90.98704 +471540,225.51,92.7609 +471541,227.3,87.5893 +471542,226.29,89.25236 +471543,225.23,90.95994 +471544,224.12,92.7181 +471545,226,87.595 +471546,224.96,89.2414 +471547,223.87,90.93237 +471548,222.74,92.6739 +471549,224.71,87.6019 +471550,223.63,89.23084 +471551,222.52,90.90433 +471552,221.35,92.6284 +471553,223.4,87.61 +471554,222.3,89.22066 +471555,221.16,90.87584 +471556,219.97,92.5815 +471557,222.1,87.6193 +471558,220.97,89.21086 +471559,219.8,90.84689 +471560,218.58,92.5333 +471561,220.8,87.6298 +471562,219.64,89.20145 +471563,218.45,90.8175 +471564,217.2,92.4838 +471565,219.5,87.6414 +471566,218.31,89.19241 +471567,217.09,90.78766 +471568,215.81,92.433 +471569,218.2,87.6542 +471570,216.99,89.18373 +471571,215.73,90.75739 +471572,214.43,92.3809 +471573,216.89,87.6681 +471574,215.66,89.17542 +471575,214.38,90.72668 +471576,213.05,92.3276 +471577,215.59,87.6831 +471578,214.33,89.16747 +471579,213.02,90.69555 +471580,211.67,92.273 +471581,214.28,87.6992 +471582,212.99,89.15986 +471583,211.67,90.664 +471584,210.29,92.2172 +471585,212.97,87.7164 +471586,211.66,89.1526 +471587,210.31,90.63204 +471588,208.92,92.1602 +471589,211.66,87.7346 +471590,210.33,89.14568 +471591,208.96,90.59968 +471592,207.54,92.1021 +471593,210.35,87.7539 +471594,209,89.13909 +471595,207.61,90.56692 +471596,206.17,92.0427 +471597,209.04,87.7742 +471598,207.67,89.13282 +471599,206.25,90.53376 +471600,204.79,91.9823 +471601,207.73,87.7954 +471602,206.34,89.12687 +471603,204.9,90.50023 +471604,203.42,91.9207 +471605,206.42,87.8177 +471606,205.01,89.12123 +471607,203.55,90.46632 +471608,202.05,91.858 +471609,205.11,87.8409 +471610,203.67,89.1159 +471611,202.2,90.43204 +471612,200.68,91.7943 +471613,203.79,87.865 +471614,202.34,89.11085 +471615,200.85,90.3974 +471616,199.31,91.7295 +471617,202.48,87.8901 +471618,201.01,89.1061 +471619,199.5,90.3624 +471620,197.94,91.6637 +471621,201.16,87.916 +471622,199.67,89.10163 +471623,198.15,90.32707 +471624,196.57,91.5969 +471625,199.84,87.9428 +471626,198.34,89.09743 +471627,196.8,90.2914 +471628,195.21,91.5292 +471629,198.52,87.9704 +471630,197,89.09349 +471631,195.45,90.2554 +471632,193.84,91.4605 +471633,197.2,87.9988 +471634,195.67,89.08981 +471635,194.1,90.21908 +471636,192.48,91.3909 +471637,195.88,88.028 +471638,194.33,89.08638 +471639,192.75,90.18246 +471640,191.12,91.3204 +471641,194.56,88.058 +471642,193,89.08318 +471643,191.4,90.14553 +471644,189.76,91.2491 +471645,193.24,88.0887 +471646,191.66,89.08022 +471647,190.05,90.10832 +471648,188.4,91.1769 +471649,191.91,88.1201 +471650,190.33,89.07747 +471651,188.7,90.070819 +471652,187.04,91.1039 +471653,190.59,88.1522 +471654,188.99,89.07495 +471655,187.36,90.033049 +471656,185.68,91.0302 +471657,189.26,88.1849 +471658,187.65,89.07262 +471659,186.01,89.9950154 +471660,184.33,90.9557 +471661,187.93,88.2183 +471662,186.32,89.07049 +471663,184.66,89.956729 +471664,182.97,90.8805 +471665,186.6,88.2523 +471666,184.98,89.06854 +471667,183.32,89.918199 +471668,181.62,90.80463 +471669,185.27,88.2869 +471670,183.64,89.06677 +471671,181.97,89.87944 +471672,180.27,90.72809 +471673,183.94,88.322 +471674,182.3,89.06517 +471675,180.63,89.84045 +471676,178.92,90.65094 +471677,182.6,88.3576 +471678,180.96,89.06373 +471679,179.29,89.80125 +471680,177.57,90.5732 +471681,181.27,88.3938 +471682,179.62,89.06243 +471683,177.94,89.76184 +471684,176.22,90.4949 +471685,179.93,88.4304 +471686,178.28,89.06127 +471687,176.6,89.72224 +471688,174.88,90.41607 +471689,178.6,88.4674 +471690,176.94,89.06024 +471691,175.26,89.68246 +471692,173.53,90.33675 +471693,177.26,88.5048 +471694,175.6,89.05933 +471695,173.91,89.64251 +471696,172.19,90.25696 +471697,175.92,88.5426 +471698,174.26,89.05852 +471699,172.57,89.6024 +471700,170.85,90.17675 +471701,174.58,88.5808 +471702,172.92,89.05782 +471703,171.23,89.56213 +471704,169.51,90.096131 +471705,173.24,88.6193 +471706,171.58,89.0572 +471707,169.89,89.52172 +471708,168.17,90.015149 +471709,171.89,88.658 +471710,170.24,89.05666 +471711,168.55,89.48118 +471712,166.83,89.933833 +471713,170.55,88.6971 +471714,168.89,89.05619 +471715,167.21,89.44053 +471716,165.5,89.85222 +471717,169.2,88.7363 +471718,167.55,89.05578 +471719,165.87,89.39976 +471720,164.16,89.77033 +471721,167.85,88.7758 +471722,166.21,89.05542 +471723,164.53,89.35889 +471724,162.83,89.68821 +471725,166.51,88.8154 +471726,164.86,89.05509 +471727,163.19,89.31794 +471728,161.5,89.60589 +471729,165.16,88.8551 +471730,163.52,89.0548 +471731,161.86,89.27691 +471732,160.17,89.5234 +471733,163.8,88.895 +471734,162.18,89.05451 +471735,160.52,89.23582 +471736,158.84,89.44077 +471737,162.45,88.935 +471738,160.83,89.05424 +471739,159.18,89.19467 +471740,157.51,89.35804 +471741,161.1,88.975 +471742,159.49,89.05396 +471743,157.85,89.15347 +471744,156.18,89.27524 +471745,159.74,89.01499 +471746,158.14,89.05367 +471747,156.51,89.11224 +471748,154.86,89.19241 +471749,158.39,89.05499 +471750,156.79,89.05336 +471751,155.17,89.07099 +471752,153.53,89.10957 +471753,157.03,89.09496 +471754,155.45,89.05301 +471755,153.84,89.02973 +471756,152.21,89.02676 +471757,155.67,89.13485 +471758,154.1,89.05262 +471759,152.51,88.9885 +471760,150.89,88.944 +471761,154.31,89.17463 +471762,152.75,89.05217 +471763,151.17,88.9472 +471764,149.57,88.8614 +471765,152.95,89.21428 +471766,151.4,89.05166 +471767,149.84,88.906 +471768,148.25,88.7788 +471769,151.59,89.25377 +471770,150.06,89.05107 +471771,148.5,88.8648 +471772,146.93,88.6965 +471773,150.22,89.29307 +471774,148.71,89.05039 +471775,147.17,88.8236 +471776,145.61,88.6143 +471777,148.86,89.33214 +471778,147.36,89.04962 +471779,145.84,88.7825 +471780,144.3,88.5323 +471781,147.49,89.37096 +471782,146.01,89.04875 +471783,144.51,88.7415 +471784,142.98,88.4506 +471785,146.12,89.40949 +471786,144.66,89.04775 +471787,143.18,88.7005 +471788,141.67,88.3692 +471789,144.76,89.44771 +471790,143.31,89.04664 +471791,141.85,88.6596 +471792,140.36,88.2881 +471793,143.39,89.48558 +471794,141.96,89.04538 +471795,140.52,88.6188 +471796,139.05,88.2074 +471797,142.02,89.52309 +471798,140.61,89.04398 +471799,139.19,88.5781 +471800,137.74,88.127 +471801,140.64,89.56019 +471802,139.26,89.04242 +471803,137.86,88.5376 +471804,136.43,88.0471 +471805,139.27,89.59686 +471806,137.91,89.0407 +471807,136.53,88.4971 +471808,135.13,87.9676 +471809,137.9,89.63307 +471810,136.56,89.0388 +471811,135.2,88.4568 +471812,133.82,87.8886 +471813,136.52,89.66879 +471814,135.2,89.03672 +471815,133.87,88.4166 +471816,132.52,87.81 +471817,135.14,89.70399 +471818,133.85,89.03444 +471819,132.54,88.3766 +471820,131.21,87.7321 +471821,133.77,89.73865 +471822,132.5,89.03196 +471823,131.21,88.3368 +471824,129.91,87.6546 +471825,132.39,89.77274 +471826,131.15,89.02927 +471827,129.89,88.2971 +471828,128.61,87.5778 +471829,131.01,89.80622 +471830,129.79,89.02635 +471831,128.56,88.2576 +471832,127.31,87.5016 +471833,129.63,89.83907 +471834,128.44,89.0232 +471835,127.23,88.2184 +471836,126.01,87.426 +471837,128.25,89.87127 +471838,127.09,89.01981 +471839,125.91,88.1793 +471840,124.71,87.3511 +471841,126.87,89.902786 +471842,125.73,89.01617 +471843,124.58,88.1404 +471844,123.41,87.2769 +471845,125.48,89.933591 +471846,124.38,89.01227 +471847,123.26,88.1017 +471848,122.12,87.2034 +471849,124.1,89.963661 +471850,123.02,89.0081 +471851,121.93,88.0633 +471852,120.82,87.1307 +471853,122.71,89.9929685 +471854,121.67,89.00366 +471855,120.61,88.0251 +471856,119.53,87.0588 +471857,121.33,90.021489 +471858,120.31,88.9989 +471859,119.28,87.9872 +471860,118.23,86.9877 +471861,119.94,90.049197 +471862,118.96,88.9939 +471863,117.96,87.9495 +471864,116.94,86.9174 +471865,118.55,90.076068 +471866,117.6,88.9886 +471867,116.63,87.9121 +471868,115.65,86.8479 +471869,117.16,90.10208 +471870,116.25,88.983 +471871,115.31,87.8749 +471872,114.36,86.7794 +471873,115.78,90.1272 +471874,114.89,88.977 +471875,113.99,87.8381 +471876,113.07,86.7117 +471877,114.39,90.15141 +471878,113.54,88.9707 +471879,112.66,87.8015 +471880,111.78,86.645 +471881,112.99,90.1747 +471882,112.18,88.9641 +471883,111.34,87.7652 +471884,110.49,86.5792 +471885,111.6,90.19702 +471886,110.82,88.9572 +471887,110.02,87.7293 +471888,109.2,86.5144 +471889,110.21,90.21837 +471890,109.47,88.9499 +471891,108.7,87.6936 +471892,107.91,86.4506 +471893,108.82,90.23872 +471894,108.11,88.9422 +471895,107.38,87.6583 +471896,106.62,86.3878 +471897,107.43,90.25805 +471898,106.75,88.9342 +471899,106.05,87.6232 +471900,105.34,86.3261 +471901,106.03,90.27634 +471902,105.39,88.9259 +471903,104.73,87.5886 +471904,104.05,86.2654 +471905,104.64,90.29356 +471906,104.04,88.9171 +471907,103.41,87.5542 +471908,102.77,86.2057 +471909,103.24,90.30971 +471910,102.68,88.908 +471911,102.09,87.5202 +471912,101.48,86.1472 +471913,101.85,90.32475 +471914,101.32,88.8985 +471915,100.77,87.4866 +471916,100.2,86.0897 +471917,100.45,90.33868 +471918,99.963,88.8886 +471919,99.451,87.4533 +471920,98.916,86.0334 +471921,99.054,90.35146 +471922,98.605,88.8783 +471923,98.131,87.4203 +471924,97.633,85.9783 +471925,97.657,90.36309 +471926,97.247,88.8676 +471927,96.811,87.3878 +471928,96.35,85.9242 +471929,96.26,90.37355 +471930,95.888,88.8564 +471931,95.491,87.3556 +471932,95.068,85.8714 +471933,94.862,90.38282 +471934,94.53,88.8449 +471935,94.171,87.3238 +471936,93.787,85.8198 +471937,93.464,90.39088 +471938,93.172,88.8329 +471939,92.852,87.2924 +471940,92.505,85.7693 +471941,92.066,90.39772 +471942,91.813,88.8206 +471943,91.532,87.2613 +471944,91.225,85.7201 +471945,90.668,90.40333 +471946,90.455,88.8078 +471947,90.213,87.2307 +471948,89.944,85.6721 +471949,89.269,90.40769 +471950,89.096,88.7945 +471951,88.894,87.2004 +471952,88.664,85.6253 +471953,87.87,90.41078 +471954,87.738,88.7808 +471955,87.575,87.1706 +471956,87.383,85.5798 +471957,86.471,90.4126 +471958,86.379,88.7667 +471959,86.256,87.1412 +471960,86.104,85.5355 +471961,85.072,90.41313 +471962,85.02,88.7522 +471963,84.937,87.1121 +471964,84.824,85.4926 +471965,83.673,90.41236 +471966,83.662,88.7372 +471967,83.618,87.0835 +471968,83.544,85.4509 +471969,82.274,90.41028 +471970,82.303,88.7217 +471971,82.3,87.0553 +471972,82.265,85.4105 +471973,80.874,90.40688 +471974,80.945,88.7058 +471975,80.981,87.0276 +471976,80.986,85.3714 +471977,79.475,90.40214 +471978,79.586,88.6894 +471979,79.662,87.0002 +471980,79.707,85.3336 +471981,78.075,90.39607 +471982,78.228,88.6726 +471983,78.344,86.9733 +471984,78.427,85.2971 +471985,76.676,90.38865 +471986,76.869,88.6553 +471987,77.025,86.9468 +471988,77.148,85.2619 +471989,75.277,90.37988 +471990,75.511,88.6375 +471991,75.707,86.9207 +471992,75.869,85.2281 +471993,73.878,90.36974 +471994,74.152,88.6193 +471995,74.388,86.8951 +471996,74.59,85.1956 +471997,72.479,90.35823 +471998,72.794,88.6006 +471999,73.07,86.8698 +472000,73.31,85.1644 +472001,71.08,90.34535 +472002,71.436,88.5814 +472003,71.752,86.8451 +472004,72.031,85.1345 +472005,69.682,90.33109 +472006,70.078,88.5618 +472007,70.433,86.8207 +472008,70.751,85.106 +472009,68.284,90.31545 +472010,68.72,88.5416 +472011,69.115,86.7968 +472012,69.472,85.0789 +472013,66.886,90.29842 +472014,67.362,88.5211 +472015,67.796,86.7733 +472016,68.192,85.053 +472017,65.488,90.28 +472018,66.005,88.5 +472019,66.477,86.7503 +472020,66.912,85.0285 +472021,64.091,90.26019 +472022,64.647,88.4785 +472023,65.159,86.7277 +472024,65.631,85.0054 +472025,62.694,90.23898 +472026,63.29,88.4565 +472027,63.84,86.7056 +472028,64.351,84.9836 +472029,61.298,90.21639 +472030,61.932,88.434 +472031,62.521,86.6838 +472032,63.07,84.9631 +472033,59.902,90.1924 +472034,60.575,88.4111 +472035,61.202,86.6626 +472036,61.788,84.944 +472037,58.506,90.16702 +472038,59.219,88.3876 +472039,59.883,86.6417 +472040,60.506,84.9262 +472041,57.111,90.14025 +472042,57.862,88.3638 +472043,58.564,86.6213 +472044,59.224,84.9097 +472045,55.717,90.1121 +472046,56.505,88.3394 +472047,57.245,86.6013 +472048,57.942,84.8945 +472049,54.323,90.08256 +472050,55.149,88.3146 +472051,55.926,86.5817 +472052,56.659,84.8807 +472053,52.93,90.051641 +472054,53.793,88.2893 +472055,54.606,86.5626 +472056,55.375,84.8682 +472057,51.537,90.019346 +472058,52.437,88.2635 +472059,53.286,86.5439 +472060,54.091,84.857 +472061,50.145,89.985682 +472062,51.082,88.2373 +472063,51.967,86.5257 +472064,52.806,84.8471 +472065,48.754,89.950653 +472066,49.727,88.2106 +472067,50.647,86.5078 +472068,51.521,84.8384 +472069,47.364,89.914268 +472070,48.372,88.1835 +472071,49.326,86.4904 +472072,50.235,84.8311 +472073,45.974,89.87653 +472074,47.017,88.1559 +472075,48.006,86.4734 +472076,48.949,84.825 +472077,44.585,89.83746 +472078,45.663,88.1278 +472079,46.686,86.4568 +472080,47.662,84.8202 +472081,43.197,89.79705 +472082,44.308,88.0994 +472083,45.365,86.4406 +472084,46.374,84.8167 +472085,41.81,89.75532 +472086,42.955,88.0704 +472087,44.044,86.4248 +472088,45.086,84.8144 +472089,40.423,89.71228 +472090,41.601,88.041 +472091,42.723,86.4095 +472092,43.797,84.8133 +472093,39.038,89.66794 +472094,40.248,88.0112 +472095,41.401,86.3945 +472096,42.507,84.8134 +472097,37.653,89.62231 +472098,38.895,87.981 +472099,40.08,86.3799 +472100,41.216,84.8148 +472101,36.27,89.5754 +472102,37.542,87.9503 +472103,38.758,86.3658 +472104,39.924,84.8173 +472105,34.887,89.52724 +472106,36.19,87.9192 +472107,37.436,86.352 +472108,38.632,84.821 +472109,33.505,89.47782 +472110,34.838,87.8877 +472111,36.113,86.3386 +472112,37.339,84.8259 +472113,32.125,89.42717 +472114,33.487,87.8558 +472115,34.79,86.3255 +472116,36.045,84.8319 +472117,30.745,89.3753 +472118,32.136,87.8234 +472119,33.468,86.3129 +472120,34.75,84.8391 +472121,29.367,89.32223 +472122,30.785,87.7907 +472123,32.144,86.3006 +472124,33.454,84.8473 +472125,27.989,89.26797 +472126,29.435,87.7575 +472127,30.821,86.2887 +472128,32.157,84.8567 +472129,26.613,89.21255 +472130,28.085,87.724 +472131,29.497,86.2771 +472132,30.859,84.8672 +472133,25.238,89.15597 +472134,26.735,87.6901 +472135,28.173,86.2659 +472136,29.56,84.8787 +472137,23.864,89.09826 +472138,25.386,87.6558 +472139,26.848,86.255 +472140,28.26,84.8912 +472141,22.491,89.03944 +472142,24.037,87.6211 +472143,25.524,86.2445 +472144,26.96,84.9048 +472145,21.12,88.9795 +472146,22.689,87.5861 +472147,24.198,86.2343 +472148,25.658,84.9194 +472149,19.749,88.9185 +472150,21.341,87.5507 +472151,22.873,86.2244 +472152,24.355,84.935 +472153,18.38,88.8565 +472154,19.993,87.515 +472155,21.547,86.2148 +472156,23.051,84.9515 +472157,17.012,88.7934 +472158,18.646,87.4789 +472159,20.221,86.2056 +472160,21.745,84.969 +472161,15.646,88.7293 +472162,17.3,87.4424 +472163,18.895,86.1966 +472164,20.439,84.9874 +472165,14.28,88.6643 +472166,15.953,87.4057 +472167,17.568,86.188 +472168,19.132,85.0067 +472169,12.916,88.5983 +472170,14.608,87.3686 +472171,16.241,86.1796 +472172,17.823,85.0269 +472173,11.553,88.5313 +472174,13.262,87.3312 +472175,14.913,86.1716 +472176,16.513,85.048 +472177,10.192,88.4634 +472178,11.918,87.2935 +472179,13.585,86.1638 +472180,15.202,85.0698 +472181,8.8321,88.3947 +472182,10.573,87.2555 +472183,12.257,86.1562 +472184,13.89,85.0925 +472185,7.4734,88.325 +472186,9.2294,87.2172 +472187,10.928,86.1489 +472188,12.577,85.116 +472189,6.1161,88.2545 +472190,7.886,87.1786 +472191,9.5989,86.1419 +472192,11.262,85.1402 +472193,4.7602,88.1833 +472194,6.5431,87.1398 +472195,8.2694,86.1351 +472196,9.9465,85.1652 +472197,3.4057,88.1112 +472198,5.2007,87.1007 +472199,6.9395,86.1286 +472200,8.6294,85.1909 +472201,2.0525,88.0384 +472202,3.8588,87.0613 +472203,5.6092,86.1223 +472204,7.311,85.2173 +472205,0.70083,87.9648 +472206,2.5173,87.0217 +472207,4.2785,86.1162 +472208,5.9914,85.2443 +472209,359.35,87.8905 +472210,1.1764,86.9819 +472211,2.9474,86.1103 +472212,4.6705,85.272 +472213,358,87.8156 +472214,359.84,86.9418 +472215,1.6159,86.1046 +472216,3.3483,85.3002 +472217,356.65,87.74 +472218,358.5,86.9015 +472219,0.28404,86.0991 +472220,2.0248,85.3291 +472221,355.31,87.6638 +472222,357.16,86.861 +472223,358.95,86.0937 +472224,0.69998,85.3585 +472225,353.96,87.587 +472226,355.82,86.8203 +472227,357.62,86.0886 +472228,359.37,85.3885 +472229,352.62,87.5096 +472230,354.48,86.7794 +472231,356.29,86.0836 +472232,358.05,85.4189 +472233,351.28,87.4318 +472234,353.14,86.7383 +472235,354.95,86.0788 +472236,356.72,85.4498 +472237,349.94,87.3534 +472238,351.8,86.697 +472239,353.62,86.0741 +472240,355.39,85.4812 +472241,348.6,87.2745 +472242,350.47,86.6556 +472243,352.28,86.0695 +472244,354.06,85.513 +472245,347.26,87.1952 +472246,349.13,86.6141 +472247,350.95,86.0651 +472248,352.72,85.5451 +472249,345.93,87.1155 +472250,347.79,86.5724 +472251,349.61,86.0608 +472252,351.39,85.5777 +472253,344.59,87.0354 +472254,346.46,86.5305 +472255,348.28,86.0566 +472256,350.05,85.6106 +472257,343.26,86.955 +472258,345.12,86.4886 +472259,346.94,86.0525 +472260,348.72,85.6437 +472261,341.93,86.8742 +472262,343.79,86.4465 +472263,345.61,86.0484 +472264,347.38,85.6772 +472265,340.6,86.7932 +472266,342.46,86.4043 +472267,344.27,86.0445 +472268,346.04,85.7109 +472269,339.27,86.7119 +472270,341.12,86.3621 +472271,342.93,86.0406 +472272,344.7,85.7448 +472273,337.94,86.6304 +472274,339.79,86.3197 +472275,341.59,86.0368 +472276,343.36,85.7789 +472277,336.62,86.5487 +472278,338.46,86.2773 +472279,340.25,86.033 +472280,342.01,85.8132 +472281,335.29,86.4668 +472282,337.13,86.2349 +472283,338.92,86.0293 +472284,340.67,85.8476 +472285,333.97,86.3848 +472286,335.79,86.1924 +472287,337.58,86.0256 +472288,339.32,85.8821 +472289,332.65,86.3028 +472290,334.46,86.1498 +472291,336.24,86.0219 +472292,337.97,85.9166 +472293,331.33,86.2206 +472294,333.13,86.1072 +472295,334.9,86.0182 +472296,336.62,85.9512 +472297,330.01,86.1384 +472298,331.8,86.0646 +472299,333.56,86.0145 +472300,335.27,85.9859 +472301,328.69,86.0563 +472302,330.47,86.022 +472303,332.22,86.0108 +472304,333.92,86.0205 +472305,327.38,85.9741 +472306,329.15,85.9794 +472307,330.88,86.0071 +472308,332.57,86.0551 +472309,326.06,85.892 +472310,327.82,85.9368 +472311,329.53,86.0034 +472312,331.21,86.0896 +472313,324.75,85.8101 +472314,326.49,85.8942 +472315,328.19,85.9996 +472316,329.86,86.124 +472317,323.44,85.7282 +472318,325.16,85.8517 +472319,326.85,85.9957 +472320,328.5,86.1582 +472321,322.13,85.6465 +472322,323.83,85.8092 +472323,325.51,85.9918 +472324,327.14,86.1923 +472325,320.82,85.565 +472326,322.51,85.7668 +472327,324.16,85.9879 +472328,325.78,86.2262 +472329,319.51,85.4837 +472330,321.18,85.7244 +472331,322.82,85.9838 +472332,324.42,86.2599 +472333,318.21,85.4027 +472334,319.86,85.6821 +472335,321.48,85.9797 +472336,323.06,86.2934 +472337,316.9,85.3219 +472338,318.53,85.6399 +472339,320.13,85.9754 +472340,321.7,86.3266 +472341,315.6,85.2415 +472342,317.21,85.5978 +472343,318.79,85.9711 +472344,320.33,86.3594 +472345,314.29,85.1614 +472346,315.88,85.5558 +472347,317.44,85.9666 +472348,318.97,86.392 +472349,312.99,85.0817 +472350,314.56,85.5139 +472351,316.1,85.962 +472352,317.6,86.4242 +472353,311.69,85.0023 +472354,313.24,85.4721 +472355,314.75,85.9573 +472356,316.23,86.456 +472357,310.39,84.9235 +472358,311.91,85.4305 +472359,313.4,85.9524 +472360,314.86,86.4873 +472361,309.1,84.845 +472362,310.59,85.389 +472363,312.06,85.9473 +472364,313.49,86.5183 +472365,307.8,84.7671 +472366,309.27,85.3476 +472367,310.71,85.9421 +472368,312.12,86.5487 +472369,306.51,84.6897 +472370,307.95,85.3064 +472371,309.36,85.9367 +472372,310.75,86.5787 +472373,305.21,84.6128 +472374,306.63,85.2654 +472375,308.01,85.9311 +472376,309.37,86.6082 +472377,303.92,84.5366 +472378,305.31,85.2246 +472379,306.67,85.9254 +472380,308,86.6371 +472381,302.63,84.4609 +472382,303.99,85.184 +472383,305.32,85.9194 +472384,306.62,86.6654 +472385,301.34,84.3858 +472386,302.67,85.1436 +472387,303.97,85.9132 +472388,305.25,86.6931 +472389,300.05,84.3115 +472390,301.35,85.1033 +472391,302.62,85.9068 +472392,303.87,86.7202 +472393,298.76,84.2378 +472394,300.03,85.0633 +472395,301.27,85.9002 +472396,302.49,86.7466 +472397,297.47,84.1648 +472398,298.71,85.0236 +472399,299.92,85.8933 +472400,301.11,86.7724 +472401,296.18,84.0925 +472402,297.39,84.984 +472403,298.57,85.8862 +472404,299.73,86.7974 +472405,294.9,84.021 +472406,296.07,84.9447 +472407,297.22,85.8789 +472408,298.35,86.8217 +472409,293.61,83.9503 +472410,294.75,84.9057 +472411,295.87,85.8712 +472412,296.96,86.8453 +472413,292.33,83.8805 +472414,293.44,84.8669 +472415,294.52,85.8633 +472416,295.58,86.8681 +472417,291.05,83.8114 +472418,292.12,84.8284 +472419,293.17,85.8552 +472420,294.19,86.8901 +472421,289.76,83.7432 +472422,290.8,84.7901 +472423,291.82,85.8467 +472424,292.81,86.9113 +472425,288.48,83.6759 +472426,289.49,84.7522 +472427,290.47,85.838 +472428,291.42,86.9316 +472429,287.2,83.6095 +472430,288.17,84.7145 +472431,289.12,85.8289 +472432,290.03,86.9511 +472433,285.92,83.5441 +472434,286.86,84.6772 +472435,287.76,85.8196 +472436,288.65,86.9697 +472437,284.64,83.4795 +472438,285.54,84.6401 +472439,286.41,85.8099 +472440,287.26,86.9873 +472441,283.37,83.416 +472442,284.22,84.6033 +472443,285.06,85.7999 +472444,285.87,87.0041 +472445,282.09,83.3534 +472446,282.91,84.5669 +472447,283.71,85.7896 +472448,284.48,87.0199 +472449,280.81,83.2919 +472450,281.59,84.5308 +472451,282.35,85.7789 +472452,283.09,87.0347 +472453,279.53,83.2314 +472454,280.28,84.4951 +472455,281,85.7679 +472456,281.7,87.0485 +472457,278.26,83.1719 +472458,278.97,84.4596 +472459,279.65,85.7566 +472460,280.3,87.0614 +472461,276.98,83.1135 +472462,277.65,84.4246 +472463,278.29,85.7449 +472464,278.91,87.0732 +472465,275.71,83.0562 +472466,276.34,84.3898 +472467,276.94,85.7329 +472468,277.52,87.0839 +472469,274.44,82.9999 +472470,275.03,84.3555 +472471,275.59,85.7205 +472472,276.12,87.0936 +472473,273.16,82.9448 +472474,273.71,84.3215 +472475,274.23,85.7077 +472476,274.73,87.1022 +472477,271.89,82.8909 +472478,272.4,84.2878 +472479,272.88,85.6945 +472480,273.34,87.1098 +472481,270.62,82.838 +472482,271.09,84.2545 +472483,271.53,85.681 +472484,271.94,87.1162 +472485,269.35,82.7864 +472486,269.77,84.2217 +472487,270.17,85.6671 +472488,270.55,87.1215 +472489,268.07,82.7359 +472490,268.46,84.1892 +472491,268.82,85.6528 +472492,269.15,87.1256 +472493,266.8,82.6866 +472494,267.15,84.157 +472495,267.47,85.6381 +472496,267.75,87.1286 +472497,265.53,82.6385 +472498,265.84,84.1253 +472499,266.11,85.623 +472500,266.36,87.1305 +472501,264.26,82.5916 +472502,264.52,84.094 +472503,264.76,85.6074 +472504,264.96,87.1311 +472505,262.99,82.5459 +472506,263.21,84.0631 +472507,263.4,85.5915 +472508,263.56,87.1306 +472509,261.72,82.5015 +472510,261.9,84.0325 +472511,262.05,85.5752 +472512,262.17,87.1289 +472513,260.45,82.4583 +472514,260.59,84.0024 +472515,260.69,85.5585 +472516,260.77,87.1259 +472517,259.18,82.4164 +472518,259.27,83.9727 +472519,259.34,85.5413 +472520,259.37,87.1217 +472521,257.91,82.3757 +472522,257.96,83.9434 +472523,257.99,85.5238 +472524,257.97,87.1163 +472525,256.64,82.3363 +472526,256.65,83.9145 +472527,256.63,85.5058 +472528,256.58,87.1097 +472529,255.37,82.2982 +472530,255.34,83.8861 +472531,255.28,85.4874 +472532,255.18,87.1017 +472533,254.1,82.2613 +472534,254.03,83.858 +472535,253.92,85.4685 +472536,253.78,87.0926 +472537,252.83,82.2258 +472538,252.72,83.8304 +472539,252.57,85.4492 +472540,252.38,87.0821 +472541,251.56,82.1915 +472542,251.4,83.8032 +472543,251.21,85.4295 +472544,250.99,87.0704 +472545,250.29,82.1585 +472546,250.09,83.7765 +472547,249.86,85.4094 +472548,249.59,87.0574 +472549,249.02,82.1268 +472550,248.78,83.7501 +472551,248.51,85.3888 +472552,248.19,87.0431 +472553,247.75,82.0965 +472554,247.47,83.7242 +472555,247.15,85.3678 +472556,246.8,87.0276 +472557,246.48,82.0674 +472558,246.16,83.6988 +472559,245.8,85.3464 +472560,245.4,87.0107 +472561,245.21,82.0396 +472562,244.85,83.6737 +472563,244.44,85.3245 +472564,244,86.9925 +472565,243.94,82.0132 +472566,243.54,83.6491 +472567,243.09,85.3022 +472568,242.61,86.9731 +472569,242.67,81.988 +472570,242.22,83.6249 +472571,241.74,85.2794 +472572,241.21,86.9523 +472573,241.4,81.9642 +472574,240.91,83.6012 +472575,240.38,85.2562 +472576,239.81,86.9302 +472577,240.13,81.9417 +472578,239.6,83.5779 +472579,239.03,85.2326 +472580,238.42,86.9068 +472581,238.86,81.9204 +472582,238.29,83.555 +472583,237.68,85.2085 +472584,237.02,86.8821 +472585,237.58,81.9005 +472586,236.98,83.5325 +472587,236.33,85.184 +472588,235.63,86.8562 +472589,236.31,81.8819 +472590,235.66,83.5105 +472591,234.97,85.1591 +472592,234.24,86.8289 +472593,235.04,81.8645 +472594,234.35,83.4889 +472595,233.62,85.1337 +472596,232.84,86.8003 +472597,233.77,81.8485 +472598,233.04,83.4677 +472599,232.27,85.1079 +472600,231.45,86.7704 +472601,232.49,81.8337 +472602,231.73,83.447 +472603,230.92,85.0816 +472604,230.06,86.7392 +472605,231.22,81.8202 +472606,230.41,83.4267 +472607,229.56,85.0549 +472608,228.67,86.7067 +472609,229.94,81.808 +472610,229.1,83.4068 +472611,228.21,85.0278 +472612,227.27,86.6729 +472613,228.67,81.797 +472614,227.79,83.3873 +472615,226.86,85.0003 +472616,225.88,86.6379 +472617,227.39,81.7873 +472618,226.47,83.3682 +472619,225.51,84.9723 +472620,224.49,86.6015 +472621,226.11,81.7789 +472622,225.16,83.3496 +472623,224.16,84.9439 +472624,223.11,86.5639 +472625,224.84,81.7716 +472626,223.85,83.3313 +472627,222.81,84.9151 +472628,221.72,86.5251 +472629,223.56,81.7656 +472630,222.53,83.3135 +472631,221.46,84.8859 +472632,220.33,86.485 +472633,222.28,81.7608 +472634,221.22,83.2961 +472635,220.11,84.8562 +472636,218.94,86.4436 +472637,221,81.7573 +472638,219.9,83.2791 +472639,218.76,84.8262 +472640,217.56,86.401 +472641,219.72,81.7549 +472642,218.59,83.2624 +472643,217.41,84.7957 +472644,216.17,86.3572 +472645,218.44,81.7537 +472646,217.27,83.2462 +472647,216.06,84.7648 +472648,214.79,86.3121 +472649,217.16,81.7536 +472650,215.96,83.2304 +472651,214.71,84.7336 +472652,213.41,86.2659 +472653,215.87,81.7547 +472654,214.64,83.2149 +472655,213.36,84.7019 +472656,212.02,86.2185 +472657,214.59,81.757 +472658,213.33,83.1999 +472659,212.02,84.6699 +472660,210.64,86.1699 +472661,213.3,81.7603 +472662,212.01,83.1852 +472663,210.67,84.6375 +472664,209.26,86.1201 +472665,212.02,81.7648 +472666,210.7,83.1709 +472667,209.32,84.6046 +472668,207.89,86.0692 +472669,210.73,81.7704 +472670,209.38,83.1569 +472671,207.98,84.5715 +472672,206.51,86.0171 +472673,209.44,81.777 +472674,208.06,83.1433 +472675,206.63,84.5379 +472676,205.13,85.9639 +472677,208.16,81.7847 +472678,206.75,83.1301 +472679,205.28,84.504 +472680,203.76,85.9096 +472681,206.87,81.7935 +472682,205.43,83.1172 +472683,203.94,84.4697 +472684,202.38,85.8543 +472685,205.58,81.8033 +472686,204.11,83.1046 +472687,202.59,84.4351 +472688,201.01,85.7978 +472689,204.28,81.814 +472690,202.79,83.0924 +472691,201.25,84.4001 +472692,199.64,85.7403 +472693,202.99,81.8258 +472694,201.47,83.0806 +472695,199.9,84.3648 +472696,198.27,85.6818 +472697,201.7,81.8385 +472698,200.16,83.069 +472699,198.56,84.3291 +472700,196.9,85.6222 +472701,200.4,81.8522 +472702,198.84,83.0578 +472703,197.22,84.2931 +472704,195.53,85.5617 +472705,199.11,81.8668 +472706,197.52,83.0469 +472707,195.87,84.2568 +472708,194.16,85.5001 +472709,197.81,81.8823 +472710,196.2,83.0363 +472711,194.53,84.2202 +472712,192.8,85.4376 +472713,196.51,81.8987 +472714,194.88,83.026 +472715,193.19,84.1833 +472716,191.43,85.3742 +472717,195.21,81.916 +472718,193.56,83.0159 +472719,191.85,84.1461 +472720,190.07,85.3099 +472721,193.91,81.9341 +472722,192.24,83.0062 +472723,190.5,84.1085 +472724,188.71,85.2446 +472725,192.61,81.953 +472726,190.91,82.9967 +472727,189.16,84.0707 +472728,187.35,85.1785 +472729,191.3,81.9727 +472730,189.59,82.9876 +472731,187.82,84.0327 +472732,185.99,85.1115 +472733,190,81.9931 +472734,188.27,82.9786 +472735,186.48,83.9943 +472736,184.63,85.0437 +472737,188.69,82.0144 +472738,186.95,82.97 +472739,185.14,83.9557 +472740,183.28,84.9752 +472741,187.38,82.0363 +472742,185.62,82.9615 +472743,183.81,83.9168 +472744,181.92,84.9058 +472745,186.08,82.059 +472746,184.3,82.9533 +472747,182.47,83.8777 +472748,180.57,84.8357 +472749,184.77,82.0823 +472750,182.98,82.9454 +472751,181.13,83.8384 +472752,179.22,84.7648 +472753,183.45,82.1062 +472754,181.65,82.9376 +472755,179.79,83.7988 +472756,177.87,84.6933 +472757,182.14,82.1308 +472758,180.33,82.9301 +472759,178.46,83.759 +472760,176.52,84.6211 +472761,180.83,82.156 +472762,179,82.9228 +472763,177.12,83.719 +472764,175.17,84.5482 +472765,179.51,82.1818 +472766,177.68,82.9156 +472767,175.78,83.6788 +472768,173.83,84.4747 +472769,178.19,82.2081 +472770,176.35,82.9087 +472771,174.45,83.6384 +472772,172.48,84.4006 +472773,176.88,82.2349 +472774,175.02,82.9019 +472775,173.11,83.5978 +472776,171.14,84.3259 +472777,175.56,82.2622 +472778,173.7,82.8953 +472779,171.78,83.5571 +472780,169.8,84.2507 +472781,174.24,82.29 +472782,172.37,82.8889 +472783,170.45,83.5161 +472784,168.46,84.175 +472785,172.91,82.3182 +472786,171.04,82.8826 +472787,169.11,83.4751 +472788,167.12,84.0988 +472789,171.59,82.3468 +472790,169.71,82.8765 +472791,167.78,83.4338 +472792,165.78,84.0222 +472793,170.26,82.3759 +472794,168.38,82.8705 +472795,166.45,83.3925 +472796,164.45,83.9451 +472797,168.94,82.4052 +472798,167.06,82.8646 +472799,165.12,83.351 +472800,163.12,83.8676 +472801,167.61,82.4349 +472802,165.73,82.8588 +472803,163.79,83.3094 +472804,161.78,83.7898 +472805,166.28,82.4649 +472806,164.4,82.8531 +472807,162.46,83.2677 +472808,160.45,83.7116 +472809,164.95,82.4952 +472810,163.07,82.8476 +472811,161.13,83.2258 +472812,159.13,83.6331 +472813,163.62,82.5257 +472814,161.73,82.8421 +472815,159.8,83.1839 +472816,157.8,83.5543 +472817,162.28,82.5565 +472818,160.4,82.8367 +472819,158.47,83.1419 +472820,156.47,83.4753 +472821,160.95,82.5874 +472822,159.07,82.8313 +472823,157.14,83.0999 +472824,155.15,83.396 +472825,159.61,82.6185 +472826,157.74,82.826 +472827,155.81,83.0578 +472828,153.83,83.3166 +472829,158.27,82.6497 +472830,156.41,82.8208 +472831,154.48,83.0156 +472832,152.51,83.237 +472833,156.93,82.681 +472834,155.07,82.8156 +472835,153.16,82.9734 +472836,151.19,83.1573 +472837,155.59,82.7124 +472838,153.74,82.8104 +472839,151.83,82.9312 +472840,149.87,83.0774 +472841,154.25,82.7439 +472842,152.4,82.8053 +472843,150.51,82.8889 +472844,148.55,82.9975 +472845,152.91,82.7754 +472846,151.07,82.8001 +472847,149.18,82.8466 +472848,147.24,82.9176 +472849,151.56,82.8068 +472850,149.73,82.795 +472851,147.86,82.8044 +472852,145.92,82.8377 +472853,150.22,82.8382 +472854,148.4,82.7898 +472855,146.53,82.7621 +472856,144.61,82.7578 +472857,148.87,82.8696 +472858,147.06,82.7846 +472859,145.21,82.7199 +472860,143.3,82.6779 +472861,147.52,82.9008 +472862,145.73,82.7794 +472863,143.89,82.6777 +472864,141.99,82.5981 +472865,146.17,82.932 +472866,144.39,82.7742 +472867,142.56,82.6355 +472868,140.69,82.5184 +472869,144.82,82.9629 +472870,143.05,82.7689 +472871,141.24,82.5934 +472872,139.38,82.4389 +472873,143.46,82.9938 +472874,141.71,82.7635 +472875,139.92,82.5513 +472876,138.08,82.3596 +472877,142.11,83.0244 +472878,140.38,82.7581 +472879,138.6,82.5093 +472880,136.77,82.2804 +472881,140.75,83.0547 +472882,139.04,82.7526 +472883,137.28,82.4674 +472884,135.47,82.2015 +472885,139.39,83.0848 +472886,137.7,82.747 +472887,135.96,82.4256 +472888,134.17,82.1229 +472889,138.03,83.1146 +472890,136.36,82.7414 +472891,134.64,82.3839 +472892,132.87,82.0446 +472893,136.67,83.1441 +472894,135.02,82.7356 +472895,133.32,82.3423 +472896,131.57,81.9665 +472897,135.31,83.1733 +472898,133.68,82.7297 +472899,132,82.3008 +472900,130.28,81.8889 +472901,133.95,83.2021 +472902,132.34,82.7236 +472903,130.68,82.2594 +472904,128.98,81.8116 +472905,132.59,83.2305 +472906,131,82.7175 +472907,129.37,82.2182 +472908,127.69,81.7347 +472909,131.22,83.2584 +472910,129.66,82.7112 +472911,128.05,82.1771 +472912,126.4,81.6583 +472913,129.86,83.2859 +472914,128.31,82.7048 +472915,126.73,82.1362 +472916,125.11,81.5823 +472917,128.49,83.313 +472918,126.97,82.6981 +472919,125.41,82.0954 +472920,123.82,81.5068 +472921,127.12,83.3395 +472922,125.63,82.6914 +472923,124.1,82.0548 +472924,122.53,81.4319 +472925,125.75,83.3655 +472926,124.29,82.6844 +472927,122.78,82.0144 +472928,121.24,81.3575 +472929,124.38,83.391 +472930,122.94,82.6773 +472931,121.47,81.9742 +472932,119.96,81.2837 +472933,123.01,83.4159 +472934,121.6,82.67 +472935,120.15,81.9341 +472936,118.67,81.2105 +472937,121.63,83.4401 +472938,120.25,82.6624 +472939,118.84,81.8943 +472940,117.39,81.1379 +472941,120.26,83.4638 +472942,118.91,82.6547 +472943,117.53,81.8547 +472944,116.11,81.066 +472945,118.88,83.4868 +472946,117.56,82.6467 +472947,116.21,81.8154 +472948,114.82,80.9947 +472949,117.5,83.5091 +472950,116.22,82.6385 +472951,114.9,81.7762 +472952,113.54,80.9242 +472953,116.13,83.5308 +472954,114.87,82.6301 +472955,113.59,81.7373 +472956,112.26,80.8544 +472957,114.75,83.5517 +472958,113.53,82.6215 +472959,112.27,81.6987 +472960,110.99,80.7854 +472961,113.37,83.5719 +472962,112.18,82.6125 +472963,110.96,81.6603 +472964,109.71,80.7171 +472965,111.99,83.5913 +472966,110.84,82.6034 +472967,109.65,81.6222 +472968,108.43,80.6497 +472969,110.61,83.6099 +472970,109.49,82.5939 +472971,108.34,81.5844 +472972,107.16,80.5831 +472973,109.22,83.6277 +472974,108.14,82.5842 +472975,107.03,81.5468 +472976,105.88,80.5173 +472977,107.84,83.6447 +472978,106.8,82.5742 +472979,105.72,81.5095 +472980,104.61,80.4524 +472981,106.46,83.6609 +472982,105.45,82.564 +472983,104.41,81.4726 +472984,103.34,80.3884 +472985,105.07,83.6761 +472986,104.1,82.5534 +472987,103.1,81.4359 +472988,102.07,80.3254 +472989,103.69,83.6905 +472990,102.75,82.5425 +472991,101.79,81.3995 +472992,100.79,80.2632 +472993,102.3,83.704 +472994,101.4,82.5314 +472995,100.48,81.3635 +472996,99.525,80.2021 +472997,100.91,83.7166 +472998,100.06,82.5199 +472999,99.171,81.3277 +473000,98.255,80.1419 +473001,99.523,83.7282 +473002,98.708,82.5081 +473003,97.863,81.2923 +473004,96.987,80.0827 +473005,98.134,83.7388 +473006,97.359,82.496 +473007,96.554,81.2573 +473008,95.719,80.0245 +473009,96.745,83.7485 +473010,96.01,82.4835 +473011,95.246,81.2225 +473012,94.451,79.967 +473013,95.355,83.7572 +473014,94.661,82.4707 +473015,93.938,81.1882 +473016,93.185,79.911 +473017,93.964,83.7648 +473018,93.312,82.4576 +473019,92.63,81.1542 +473020,91.919,79.856 +473021,92.572,83.7715 +473022,91.962,82.4441 +473023,91.323,81.1205 +473024,90.653,79.802 +473025,91.181,83.7771 +473026,90.613,82.4303 +473027,90.016,81.0872 +473028,89.388,79.749 +473029,89.788,83.7816 +473030,89.263,82.4161 +473031,88.709,81.0542 +473032,88.124,79.698 +473033,88.395,83.7851 +473034,87.913,82.4016 +473035,87.402,81.0217 +473036,86.86,79.647 +473037,87.002,83.7875 +473038,86.563,82.3867 +473039,86.095,80.9895 +473040,85.597,79.598 +473041,85.608,83.7887 +473042,85.213,82.3714 +473043,84.788,80.9577 +473044,84.334,79.549 +473045,84.214,83.7889 +473046,83.863,82.3557 +473047,83.482,80.9263 +473048,83.071,79.502 +473049,82.82,83.788 +473050,82.513,82.3397 +473051,82.176,80.8953 +473052,81.808,79.456 +473053,81.425,83.7859 +473054,81.162,82.3233 +473055,80.869,80.8646 +473056,80.546,79.411 +473057,80.03,83.7826 +473058,79.812,82.3065 +473059,79.563,80.8344 +473060,79.285,79.368 +473061,78.634,83.7783 +473062,78.462,82.2893 +473063,78.258,80.8046 +473064,78.023,79.325 +473065,77.239,83.7727 +473066,77.111,82.2717 +473067,76.952,80.7751 +473068,76.762,79.284 +473069,75.843,83.766 +473070,75.76,82.2537 +473071,75.646,80.7461 +473072,75.501,79.244 +473073,74.447,83.7581 +473074,74.41,82.2353 +473075,74.34,80.7175 +473076,74.24,79.206 +473077,73.051,83.749 +473078,73.059,82.2166 +473079,73.035,80.6893 +473080,72.979,79.168 +473081,71.655,83.7387 +473082,71.709,82.1974 +473083,71.729,80.6615 +473084,71.718,79.132 +473085,70.259,83.7272 +473086,70.358,82.1778 +473087,70.424,80.6341 +473088,70.457,79.097 +473089,68.863,83.7144 +473090,69.008,82.1578 +473091,69.118,80.6072 +473092,69.196,79.063 +473093,67.467,83.7005 +473094,67.657,82.1374 +473095,67.813,80.5806 +473096,67.935,79.031 +473097,66.071,83.6854 +473098,66.307,82.1166 +473099,66.507,80.5545 +473100,66.675,79 +473101,64.675,83.669 +473102,64.957,82.0954 +473103,65.202,80.5288 +473104,65.414,78.97 +473105,63.279,83.6514 +473106,63.606,82.0738 +473107,63.897,80.5035 +473108,64.152,78.941 +473109,61.884,83.6325 +473110,62.256,82.0518 +473111,62.591,80.4787 +473112,62.891,78.914 +473113,60.488,83.6125 +473114,60.906,82.0293 +473115,61.285,80.4543 +473116,61.63,78.888 +473117,59.093,83.5911 +473118,59.556,82.0064 +473119,59.98,80.4303 +473120,60.368,78.863 +473121,57.698,83.5686 +473122,58.206,81.9832 +473123,58.674,80.4067 +473124,59.106,78.84 +473125,56.304,83.5448 +473126,56.856,81.9595 +473127,57.369,80.3836 +473128,57.844,78.817 +473129,54.91,83.5198 +473130,55.507,81.9354 +473131,56.063,80.3608 +473132,56.581,78.796 +473133,53.516,83.4935 +473134,54.157,81.9109 +473135,54.757,80.3385 +473136,55.318,78.777 +473137,52.123,83.466 +473138,52.808,81.8859 +473139,53.451,80.3166 +473140,54.055,78.758 +473141,50.73,83.4373 +473142,51.459,81.8606 +473143,52.145,80.2952 +473144,52.791,78.741 +473145,49.337,83.4073 +473146,50.11,81.8349 +473147,50.838,80.2741 +473148,51.527,78.725 +473149,47.945,83.3761 +473150,48.761,81.8087 +473151,49.532,80.2535 +473152,50.262,78.71 +473153,46.554,83.3437 +473154,47.413,81.7821 +473155,48.226,80.2333 +473156,48.997,78.697 +473157,45.163,83.3101 +473158,46.065,81.7552 +473159,46.919,80.2135 +473160,47.731,78.685 +473161,43.773,83.2752 +473162,44.717,81.7278 +473163,45.612,80.1941 +473164,46.465,78.674 +473165,42.383,83.2392 +473166,43.369,81.7 +473167,44.305,80.1752 +473168,45.198,78.664 +473169,40.995,83.2019 +473170,42.021,81.6719 +473171,42.998,80.1566 +473172,43.93,78.656 +473173,39.607,83.1635 +473174,40.674,81.6433 +473175,41.69,80.1385 +473176,42.662,78.648 +473177,38.219,83.1239 +473178,39.327,81.6143 +473179,40.383,80.1207 +473180,41.393,78.642 +473181,36.833,83.083 +473182,37.98,81.585 +473183,39.075,80.1033 +473184,40.123,78.637 +473185,35.447,83.0411 +473186,36.634,81.5553 +473187,37.767,80.0864 +473188,38.852,78.633 +473189,34.062,82.9979 +473190,35.288,81.5252 +473191,36.458,80.0698 +473192,37.581,78.631 +473193,32.678,82.9536 +473194,33.942,81.4947 +473195,35.15,80.0536 +473196,36.309,78.629 +473197,31.295,82.9082 +473198,32.596,81.4638 +473199,33.841,80.0378 +473200,35.036,78.629 +473201,29.913,82.8617 +473202,31.251,81.4326 +473203,32.532,80.0224 +473204,33.762,78.63 +473205,28.532,82.814 +473206,29.906,81.4009 +473207,31.222,80.0074 +473208,32.487,78.632 +473209,27.152,82.7652 +473210,28.562,81.369 +473211,29.912,79.993 +473212,31.211,78.635 +473213,25.773,82.7154 +473214,27.218,81.3367 +473215,28.602,79.978 +473216,29.935,78.639 +473217,24.395,82.6644 +473218,25.874,81.304 +473219,27.292,79.964 +473220,28.657,78.644 +473221,23.018,82.6124 +473222,24.531,81.271 +473223,25.981,79.951 +473224,27.378,78.65 +473225,21.642,82.5594 +473226,23.188,81.2376 +473227,24.67,79.938 +473228,26.099,78.658 +473229,20.268,82.5053 +473230,21.845,81.2039 +473231,23.359,79.925 +473232,24.818,78.666 +473233,18.894,82.4502 +473234,20.503,81.1698 +473235,22.047,79.912 +473236,23.536,78.675 +473237,17.522,82.3942 +473238,19.161,81.1355 +473239,20.735,79.9 +473240,22.253,78.685 +473241,16.151,82.3371 +473242,17.82,81.1008 +473243,19.423,79.888 +473244,20.969,78.696 +473245,14.781,82.2791 +473246,16.479,81.0658 +473247,18.11,79.876 +473248,19.684,78.709 +473249,13.413,82.2201 +473250,15.139,81.0305 +473251,16.797,79.865 +473252,18.397,78.722 +473253,12.046,82.1602 +473254,13.799,80.9949 +473255,15.484,79.854 +473256,17.11,78.736 +473257,10.68,82.0994 +473258,12.459,80.959 +473259,14.17,79.843 +473260,15.821,78.75 +473261,9.3152,82.0377 +473262,11.12,80.9228 +473263,12.856,79.833 +473264,14.531,78.766 +473265,7.952,81.9752 +473266,9.7818,80.8864 +473267,11.541,79.823 +473268,13.24,78.783 +473269,6.5903,81.9118 +473270,8.4436,80.8496 +473271,10.226,79.813 +473272,11.947,78.8 +473273,5.2299,81.8476 +473274,7.106,80.8126 +473275,8.9103,79.804 +473276,10.653,78.818 +473277,3.871,81.7826 +473278,5.7688,80.7754 +473279,7.5944,79.794 +473280,9.3581,78.837 +473281,2.5135,81.7168 +473282,4.4321,80.7379 +473283,6.278,79.785 +473284,8.0617,78.857 +473285,1.1574,81.6502 +473286,3.096,80.7001 +473287,4.9613,79.777 +473288,6.7639,78.877 +473289,359.8,81.5829 +473290,1.7603,80.6621 +473291,3.6441,79.768 +473292,5.4648,78.898 +473293,358.45,81.515 +473294,0.42514,80.6239 +473295,2.3265,79.76 +473296,4.1643,78.92 +473297,357.1,81.4463 +473298,359.09,80.5855 +473299,1.0084,79.752 +473300,2.8624,78.942 +473301,355.75,81.3769 +473302,357.76,80.5468 +473303,359.69,79.744 +473304,1.5591,78.965 +473305,354.4,81.307 +473306,356.42,80.508 +473307,358.37,79.736 +473308,0.25449,78.989 +473309,353.05,81.2364 +473310,355.09,80.469 +473311,357.05,79.729 +473312,358.95,79.013 +473313,351.71,81.1652 +473314,353.76,80.4297 +473315,355.73,79.721 +473316,357.64,79.037 +473317,350.36,81.0934 +473318,352.43,80.3903 +473319,354.41,79.714 +473320,356.33,79.063 +473321,349.02,81.0212 +473322,351.09,80.3507 +473323,353.09,79.707 +473324,355.02,79.088 +473325,347.68,80.9484 +473326,349.76,80.311 +473327,351.77,79.701 +473328,353.71,79.115 +473329,346.34,80.8751 +473330,348.43,80.2711 +473331,350.45,79.694 +473332,352.4,79.141 +473333,345,80.8014 +473334,347.1,80.2311 +473335,349.12,79.688 +473336,351.08,79.168 +473337,343.67,80.7273 +473338,345.77,80.1909 +473339,347.8,79.681 +473340,349.77,79.196 +473341,342.33,80.6527 +473342,344.44,80.1506 +473343,346.48,79.675 +473344,348.45,79.224 +473345,341,80.5778 +473346,343.12,80.1102 +473347,345.16,79.669 +473348,347.13,79.252 +473349,339.67,80.5025 +473350,341.79,80.0697 +473351,343.83,79.663 +473352,345.81,79.28 +473353,338.34,80.4269 +473354,340.46,80.0291 +473355,342.51,79.657 +473356,344.49,79.309 +473357,337.01,80.3511 +473358,339.13,79.988 +473359,341.18,79.652 +473360,343.16,79.338 +473361,335.69,80.2749 +473362,337.81,79.948 +473363,339.86,79.646 +473364,341.84,79.367 +473365,334.36,80.1986 +473366,336.48,79.907 +473367,338.53,79.64 +473368,340.51,79.397 +473369,333.04,80.122 +473370,335.16,79.866 +473371,337.2,79.635 +473372,339.18,79.426 +473373,331.72,80.0453 +473374,333.83,79.825 +473375,335.88,79.629 +473376,337.85,79.456 +473377,330.4,79.968 +473378,332.51,79.784 +473379,334.55,79.624 +473380,336.52,79.486 +473381,329.08,79.891 +473382,331.19,79.743 +473383,333.22,79.619 +473384,335.19,79.516 +473385,327.76,79.814 +473386,329.86,79.702 +473387,331.89,79.613 +473388,333.85,79.546 +473389,326.45,79.737 +473390,328.54,79.661 +473391,330.56,79.608 +473392,332.52,79.576 +473393,325.14,79.66 +473394,327.22,79.62 +473395,329.23,79.603 +473396,331.18,79.606 +473397,323.83,79.583 +473398,325.9,79.579 +473399,327.9,79.597 +473400,329.84,79.636 +473401,322.52,79.506 +473402,324.58,79.538 +473403,326.57,79.592 +473404,328.5,79.666 +473405,321.21,79.429 +473406,323.26,79.497 +473407,325.24,79.587 +473408,327.16,79.696 +473409,319.9,79.352 +473410,321.94,79.456 +473411,323.91,79.581 +473412,325.82,79.725 +473413,318.6,79.275 +473414,320.62,79.415 +473415,322.58,79.576 +473416,324.47,79.755 +473417,317.29,79.198 +473418,319.3,79.374 +473419,321.25,79.57 +473420,323.13,79.784 +473421,315.99,79.121 +473422,317.98,79.333 +473423,319.91,79.565 +473424,321.78,79.814 +473425,314.69,79.045 +473426,316.67,79.293 +473427,318.58,79.559 +473428,320.43,79.843 +473429,313.39,78.969 +473430,315.35,79.252 +473431,317.25,79.554 +473432,319.08,79.872 +473433,312.09,78.893 +473434,314.03,79.211 +473435,315.91,79.548 +473436,317.73,79.9 +473437,310.8,78.818 +473438,312.72,79.171 +473439,314.58,79.542 +473440,316.38,79.928 +473441,309.5,78.742 +473442,311.4,79.131 +473443,313.24,79.536 +473444,315.02,79.956 +473445,308.21,78.668 +473446,310.09,79.091 +473447,311.91,79.53 +473448,313.67,79.984 +473449,306.92,78.593 +473450,308.77,79.05 +473451,310.57,79.524 +473452,312.31,80.0111 +473453,305.63,78.519 +473454,307.46,79.011 +473455,309.23,79.518 +473456,310.95,80.0379 +473457,304.34,78.445 +473458,306.15,78.971 +473459,307.9,79.511 +473460,309.59,80.0643 +473461,303.05,78.372 +473462,304.83,78.931 +473463,306.56,79.505 +473464,308.23,80.0903 +473465,301.77,78.299 +473466,303.52,78.892 +473467,305.22,79.498 +473468,306.87,80.1157 +473469,300.48,78.227 +473470,302.21,78.852 +473471,303.88,79.491 +473472,305.5,80.1407 +473473,299.2,78.156 +473474,300.9,78.813 +473475,302.54,79.484 +473476,304.14,80.1651 +473477,297.92,78.085 +473478,299.59,78.774 +473479,301.21,79.477 +473480,302.77,80.189 +473481,296.64,78.014 +473482,298.28,78.736 +473483,299.87,79.469 +473484,301.4,80.2123 +473485,295.36,77.944 +473486,296.97,78.697 +473487,298.53,79.462 +473488,300.04,80.235 +473489,294.08,77.875 +473490,295.66,78.659 +473491,297.19,79.454 +473492,298.67,80.257 +473493,292.8,77.806 +473494,294.35,78.621 +473495,295.85,79.446 +473496,297.29,80.2785 +473497,291.53,77.739 +473498,293.04,78.583 +473499,294.5,79.437 +473500,295.92,80.2992 +473501,290.25,77.671 +473502,291.73,78.546 +473503,293.16,79.429 +473504,294.55,80.3193 +473505,288.98,77.605 +473506,290.42,78.508 +473507,291.82,79.42 +473508,293.17,80.3387 +473509,287.71,77.539 +473510,289.12,78.471 +473511,290.48,79.411 +473512,291.8,80.3573 +473513,286.44,77.475 +473514,287.81,78.434 +473515,289.14,79.402 +473516,290.42,80.3752 +473517,285.17,77.411 +473518,286.5,78.398 +473519,287.8,79.393 +473520,289.04,80.3923 +473521,283.9,77.347 +473522,285.2,78.362 +473523,286.45,79.383 +473524,287.67,80.4086 +473525,282.63,77.285 +473526,283.89,78.326 +473527,285.11,79.373 +473528,286.29,80.4241 +473529,281.36,77.224 +473530,282.58,78.29 +473531,283.77,79.362 +473532,284.91,80.4387 +473533,280.1,77.163 +473534,281.28,78.255 +473535,282.42,79.352 +473536,283.52,80.4525 +473537,278.83,77.103 +473538,279.97,78.22 +473539,281.08,79.341 +473540,282.14,80.4655 +473541,277.57,77.045 +473542,278.67,78.185 +473543,279.73,79.33 +473544,280.76,80.4775 +473545,276.3,76.987 +473546,277.37,78.151 +473547,278.39,79.318 +473548,279.37,80.4886 +473549,275.04,76.93 +473550,276.06,78.116 +473551,277.04,79.307 +473552,277.99,80.4988 +473553,273.78,76.875 +473554,274.76,78.083 +473555,275.7,79.295 +473556,276.6,80.5081 +473557,272.52,76.82 +473558,273.45,78.049 +473559,274.35,79.282 +473560,275.22,80.5164 +473561,271.26,76.766 +473562,272.15,78.016 +473563,273.01,79.269 +473564,273.83,80.5237 +473565,270,76.713 +473566,270.85,77.983 +473567,271.66,79.256 +473568,272.44,80.53 +473569,268.74,76.662 +473570,269.54,77.951 +473571,270.32,79.243 +473572,271.05,80.5353 +473573,267.48,76.611 +473574,268.24,77.919 +473575,268.97,79.229 +473576,269.66,80.5396 +473577,266.22,76.562 +473578,266.94,77.887 +473579,267.62,79.215 +473580,268.27,80.5429 +473581,264.96,76.514 +473582,265.64,77.856 +473583,266.28,79.201 +473584,266.88,80.5451 +473585,263.71,76.466 +473586,264.34,77.825 +473587,264.93,79.186 +473588,265.49,80.5463 +473589,262.45,76.42 +473590,263.03,77.795 +473591,263.58,79.171 +473592,264.1,80.5464 +473593,261.2,76.375 +473594,261.73,77.765 +473595,262.24,79.155 +473596,262.71,80.5454 +473597,259.94,76.332 +473598,260.43,77.735 +473599,260.89,79.139 +473600,261.32,80.5433 +473601,258.68,76.289 +473602,259.13,77.705 +473603,259.54,79.123 +473604,259.92,80.5401 +473605,257.43,76.247 +473606,257.83,77.676 +473607,258.2,79.106 +473608,258.53,80.5358 +473609,256.18,76.207 +473610,256.53,77.648 +473611,256.85,79.089 +473612,257.14,80.5304 +473613,254.92,76.168 +473614,255.23,77.62 +473615,255.5,79.072 +473616,255.74,80.5239 +473617,253.67,76.13 +473618,253.93,77.592 +473619,254.15,79.054 +473620,254.35,80.5162 +473621,252.41,76.094 +473622,252.63,77.564 +473623,252.81,79.036 +473624,252.95,80.5073 +473625,251.16,76.058 +473626,251.33,77.537 +473627,251.46,79.018 +473628,251.56,80.4973 +473629,249.91,76.024 +473630,250.03,77.511 +473631,250.11,78.999 +473632,250.16,80.4861 +473633,248.65,75.991 +473634,248.72,77.485 +473635,248.76,78.979 +473636,248.77,80.4738 +473637,247.4,75.959 +473638,247.42,77.459 +473639,247.42,78.96 +473640,247.37,80.4603 +473641,246.15,75.929 +473642,246.12,77.433 +473643,246.07,78.94 +473644,245.98,80.4456 +473645,244.89,75.899 +473646,244.82,77.409 +473647,244.72,78.919 +473648,244.58,80.4298 +473649,243.64,75.871 +473650,243.52,77.384 +473651,243.37,78.898 +473652,243.19,80.4127 +473653,242.39,75.845 +473654,242.22,77.36 +473655,242.03,78.877 +473656,241.79,80.3945 +473657,241.13,75.819 +473658,240.92,77.336 +473659,240.68,78.855 +473660,240.4,80.375 +473661,239.88,75.795 +473662,239.62,77.313 +473663,239.33,78.833 +473664,239,80.3544 +473665,238.63,75.772 +473666,238.32,77.29 +473667,237.98,78.811 +473668,237.61,80.3326 +473669,237.37,75.75 +473670,237.02,77.268 +473671,236.64,78.788 +473672,236.21,80.3096 +473673,236.12,75.729 +473674,235.72,77.245 +473675,235.29,78.764 +473676,234.82,80.2854 +473677,234.86,75.71 +473678,234.42,77.224 +473679,233.94,78.741 +473680,233.43,80.26 +473681,233.61,75.692 +473682,233.12,77.203 +473683,232.59,78.717 +473684,232.03,80.2334 +473685,232.35,75.675 +473686,231.82,77.182 +473687,231.25,78.692 +473688,230.64,80.2056 +473689,231.1,75.66 +473690,230.52,77.161 +473691,229.9,78.667 +473692,229.25,80.1766 +473693,229.84,75.645 +473694,229.22,77.141 +473695,228.56,78.642 +473696,227.85,80.1465 +473697,228.59,75.632 +473698,227.92,77.122 +473699,227.21,78.617 +473700,226.46,80.1151 +473701,227.33,75.62 +473702,226.61,77.103 +473703,225.86,78.59 +473704,225.07,80.0826 +473705,226.07,75.609 +473706,225.31,77.084 +473707,224.52,78.564 +473708,223.68,80.049 +473709,224.81,75.6 +473710,224.01,77.066 +473711,223.17,78.537 +473712,222.29,80.0141 +473713,223.55,75.591 +473714,222.71,77.048 +473715,221.83,78.51 +473716,220.9,79.978 +473717,222.3,75.584 +473718,221.41,77.03 +473719,220.48,78.482 +473720,219.51,79.941 +473721,221.04,75.578 +473722,220.11,77.013 +473723,219.14,78.454 +473724,218.12,79.903 +473725,219.77,75.574 +473726,218.8,76.996 +473727,217.79,78.426 +473728,216.73,79.863 +473729,218.51,75.57 +473730,217.5,76.98 +473731,216.45,78.397 +473732,215.35,79.823 +473733,217.25,75.567 +473734,216.2,76.964 +473735,215.1,78.368 +473736,213.96,79.781 +473737,215.99,75.566 +473738,214.89,76.948 +473739,213.76,78.339 +473740,212.57,79.738 +473741,214.72,75.566 +473742,213.59,76.933 +473743,212.42,78.309 +473744,211.19,79.694 +473745,213.46,75.567 +473746,212.29,76.918 +473747,211.07,78.279 +473748,209.8,79.649 +473749,212.19,75.569 +473750,210.98,76.904 +473751,209.73,78.248 +473752,208.42,79.603 +473753,210.93,75.572 +473754,209.68,76.889 +473755,208.39,78.218 +473756,207.04,79.556 +473757,209.66,75.576 +473758,208.38,76.876 +473759,207.04,78.186 +473760,205.66,79.508 +473761,208.39,75.581 +473762,207.07,76.862 +473763,205.7,78.155 +473764,204.28,79.459 +473765,207.12,75.587 +473766,205.77,76.849 +473767,204.36,78.123 +473768,202.9,79.409 +473769,205.85,75.594 +473770,204.46,76.836 +473771,203.02,78.091 +473772,201.52,79.357 +473773,204.58,75.602 +473774,203.15,76.824 +473775,201.68,78.058 +473776,200.14,79.305 +473777,203.31,75.611 +473778,201.85,76.812 +473779,200.34,78.025 +473780,198.77,79.252 +473781,202.03,75.622 +473782,200.54,76.8 +473783,199,77.992 +473784,197.39,79.198 +473785,200.76,75.633 +473786,199.24,76.789 +473787,197.66,77.959 +473788,196.02,79.142 +473789,199.48,75.645 +473790,197.93,76.778 +473791,196.32,77.925 +473792,194.65,79.086 +473793,198.2,75.658 +473794,196.62,76.767 +473795,194.98,77.891 +473796,193.28,79.029 +473797,196.93,75.671 +473798,195.31,76.756 +473799,193.64,77.856 +473800,191.91,78.972 +473801,195.65,75.686 +473802,194,76.746 +473803,192.3,77.822 +473804,190.54,78.913 +473805,194.37,75.701 +473806,192.7,76.736 +473807,190.97,77.787 +473808,189.17,78.853 +473809,193.08,75.718 +473810,191.39,76.727 +473811,189.63,77.751 +473812,187.8,78.793 +473813,191.8,75.735 +473814,190.08,76.717 +473815,188.29,77.716 +473816,186.44,78.732 +473817,190.52,75.753 +473818,188.77,76.708 +473819,186.96,77.68 +473820,185.08,78.669 +473821,189.23,75.772 +473822,187.46,76.699 +473823,185.62,77.644 +473824,183.71,78.607 +473825,187.94,75.791 +473826,186.15,76.691 +473827,184.29,77.608 +473828,182.35,78.543 +473829,186.65,75.811 +473830,184.83,76.683 +473831,182.95,77.571 +473832,180.99,78.479 +473833,185.36,75.832 +473834,183.52,76.674 +473835,181.62,77.535 +473836,179.64,78.414 +473837,184.07,75.853 +473838,182.21,76.667 +473839,180.28,77.498 +473840,178.28,78.348 +473841,182.78,75.875 +473842,180.9,76.659 +473843,178.95,77.461 +473844,176.93,78.282 +473845,181.49,75.898 +473846,179.59,76.652 +473847,177.62,77.423 +473848,175.57,78.214 +473849,180.19,75.921 +473850,178.27,76.644 +473851,176.29,77.386 +473852,174.22,78.147 +473853,178.89,75.945 +473854,176.96,76.637 +473855,174.96,77.348 +473856,172.87,78.079 +473857,177.59,75.97 +473858,175.64,76.631 +473859,173.62,77.31 +473860,171.52,78.01 +473861,176.29,75.995 +473862,174.33,76.624 +473863,172.29,77.272 +473864,170.18,77.94 +473865,174.99,76.02 +473866,173.01,76.617 +473867,170.96,77.234 +473868,168.83,77.87 +473869,173.69,76.046 +473870,171.7,76.611 +473871,169.63,77.195 +473872,167.49,77.8 +473873,172.38,76.072 +473874,170.38,76.605 +473875,168.31,77.157 +473876,166.15,77.729 +473877,171.08,76.099 +473878,169.06,76.599 +473879,166.98,77.118 +473880,164.81,77.658 +473881,169.77,76.126 +473882,167.75,76.593 +473883,165.65,77.079 +473884,163.47,77.586 +473885,168.46,76.154 +473886,166.43,76.587 +473887,164.32,77.04 +473888,162.13,77.514 +473889,167.15,76.182 +473890,165.11,76.582 +473891,163,77.001 +473892,160.8,77.441 +473893,165.84,76.21 +473894,163.79,76.576 +473895,161.67,76.962 +473896,159.46,77.369 +473897,164.52,76.238 +473898,162.47,76.571 +473899,160.34,76.923 +473900,158.13,77.295 +473901,163.21,76.267 +473902,161.15,76.566 +473903,159.02,76.883 +473904,156.8,77.222 +473905,161.89,76.296 +473906,159.83,76.56 +473907,157.69,76.844 +473908,155.47,77.148 +473909,160.57,76.325 +473910,158.51,76.555 +473911,156.37,76.804 +473912,154.15,77.074 +473913,159.25,76.354 +473914,157.19,76.55 +473915,155.05,76.765 +473916,152.82,77 +473917,157.93,76.383 +473918,155.87,76.545 +473919,153.73,76.725 +473920,151.5,76.926 +473921,156.61,76.413 +473922,154.54,76.54 +473923,152.4,76.685 +473924,150.18,76.851 +473925,155.28,76.442 +473926,153.22,76.535 +473927,151.08,76.646 +473928,148.86,76.777 +473929,153.96,76.472 +473930,151.9,76.53 +473931,149.76,76.606 +473932,147.54,76.702 +473933,152.63,76.502 +473934,150.57,76.525 +473935,148.44,76.566 +473936,146.22,76.628 +473937,151.3,76.531 +473938,149.25,76.52 +473939,147.12,76.527 +473940,144.91,76.553 +473941,149.97,76.561 +473942,147.92,76.515 +473943,145.8,76.487 +473944,143.59,76.478 +473945,148.64,76.591 +473946,146.6,76.511 +473947,144.48,76.447 +473948,142.28,76.403 +473949,147.3,76.62 +473950,145.27,76.506 +473951,143.17,76.408 +473952,140.97,76.329 +473953,145.97,76.649 +473954,143.95,76.501 +473955,141.85,76.368 +473956,139.66,76.254 +473957,144.63,76.679 +473958,142.62,76.496 +473959,140.53,76.328 +473960,138.36,76.179 +473961,143.29,76.708 +473962,141.29,76.491 +473963,139.21,76.289 +473964,137.05,76.105 +473965,141.95,76.737 +473966,139.96,76.486 +473967,137.9,76.249 +473968,135.75,76.031 +473969,140.61,76.765 +473970,138.63,76.48 +473971,136.58,76.21 +473972,134.45,75.957 +473973,139.27,76.794 +473974,137.3,76.475 +473975,135.27,76.171 +473976,133.15,75.883 +473977,137.92,76.822 +473978,135.98,76.47 +473979,133.95,76.131 +473980,131.85,75.81 +473981,136.58,76.85 +473982,134.64,76.464 +473983,132.64,76.092 +473984,130.56,75.736 +473985,135.23,76.878 +473986,133.31,76.459 +473987,131.33,76.053 +473988,129.26,75.663 +473989,133.88,76.905 +473990,131.98,76.453 +473991,130.02,76.014 +473992,127.97,75.591 +473993,132.53,76.932 +473994,130.65,76.448 +473995,128.7,75.976 +473996,126.68,75.518 +473997,131.18,76.958 +473998,129.32,76.442 +473999,127.39,75.937 +474000,125.39,75.447 +474001,129.82,76.984 +474002,127.99,76.436 +474003,126.08,75.899 +474004,124.1,75.375 +474005,128.47,77.01 +474006,126.65,76.43 +474007,124.77,75.86 +474008,122.81,75.304 +474009,127.11,77.035 +474010,125.32,76.423 +474011,123.46,75.822 +474012,121.53,75.234 +474013,125.75,77.06 +474014,123.99,76.417 +474015,122.15,75.784 +474016,120.24,75.163 +474017,124.39,77.084 +474018,122.65,76.41 +474019,120.84,75.746 +474020,118.96,75.094 +474021,123.03,77.107 +474022,121.32,76.403 +474023,119.53,75.709 +474024,117.68,75.025 +474025,121.67,77.13 +474026,119.98,76.397 +474027,118.23,75.671 +474028,116.4,74.957 +474029,120.31,77.153 +474030,118.65,76.389 +474031,116.92,75.634 +474032,115.12,74.889 +474033,118.94,77.174 +474034,117.31,76.382 +474035,115.61,75.597 +474036,113.84,74.822 +474037,117.58,77.196 +474038,115.97,76.374 +474039,114.31,75.56 +474040,112.57,74.755 +474041,116.21,77.216 +474042,114.64,76.367 +474043,113,75.524 +474044,111.29,74.689 +474045,114.84,77.236 +474046,113.3,76.359 +474047,111.69,75.487 +474048,110.02,74.624 +474049,113.47,77.255 +474050,111.96,76.35 +474051,110.39,75.451 +474052,108.75,74.56 +474053,112.1,77.273 +474054,110.62,76.342 +474055,109.08,75.415 +474056,107.48,74.496 +474057,110.73,77.291 +474058,109.28,76.333 +474059,107.78,75.38 +474060,106.21,74.433 +474061,109.36,77.308 +474062,107.95,76.324 +474063,106.48,75.344 +474064,104.94,74.371 +474065,107.99,77.324 +474066,106.61,76.315 +474067,105.17,75.309 +474068,103.68,74.309 +474069,106.61,77.339 +474070,105.27,76.305 +474071,103.87,75.275 +474072,102.41,74.249 +474073,105.23,77.353 +474074,103.93,76.296 +474075,102.57,75.24 +474076,101.15,74.189 +474077,103.86,77.367 +474078,102.59,76.285 +474079,101.26,75.206 +474080,99.884,74.13 +474081,102.48,77.38 +474082,101.25,76.275 +474083,99.962,75.172 +474084,98.622,74.073 +474085,101.1,77.392 +474086,99.905,76.264 +474087,98.66,75.138 +474088,97.361,74.016 +474089,99.719,77.403 +474090,98.564,76.253 +474091,97.359,75.105 +474092,96.101,73.96 +474093,98.338,77.413 +474094,97.223,76.242 +474095,96.058,75.072 +474096,94.842,73.905 +474097,96.956,77.422 +474098,95.881,76.231 +474099,94.757,75.04 +474100,93.583,73.85 +474101,95.573,77.43 +474102,94.539,76.219 +474103,93.457,75.007 +474104,92.326,73.797 +474105,94.189,77.437 +474106,93.196,76.207 +474107,92.157,74.975 +474108,91.069,73.745 +474109,92.805,77.443 +474110,91.854,76.194 +474111,90.858,74.944 +474112,89.814,73.694 +474113,91.419,77.448 +474114,90.511,76.181 +474115,89.558,74.912 +474116,88.559,73.644 +474117,90.033,77.453 +474118,89.168,76.168 +474119,88.259,74.881 +474120,87.305,73.595 +474121,88.646,77.456 +474122,87.824,76.154 +474123,86.96,74.851 +474124,86.051,73.547 +474125,87.258,77.458 +474126,86.481,76.141 +474127,85.662,74.821 +474128,84.799,73.5 +474129,85.87,77.459 +474130,85.137,76.126 +474131,84.363,74.791 +474132,83.547,73.454 +474133,84.481,77.459 +474134,83.793,76.112 +474135,83.065,74.761 +474136,82.295,73.41 +474137,83.092,77.458 +474138,82.449,76.097 +474139,81.767,74.732 +474140,81.044,73.366 +474141,81.701,77.456 +474142,81.105,76.081 +474143,80.469,74.704 +474144,79.794,73.324 +474145,80.311,77.453 +474146,79.76,76.066 +474147,79.172,74.675 +474148,78.544,73.283 +474149,78.919,77.449 +474150,78.416,76.05 +474151,77.875,74.647 +474152,77.295,73.242 +474153,77.528,77.443 +474154,77.071,76.033 +474155,76.577,74.62 +474156,76.046,73.203 +474157,76.136,77.437 +474158,75.726,76.017 +474159,75.28,74.592 +474160,74.798,73.166 +474161,74.743,77.429 +474162,74.381,75.999 +474163,73.984,74.566 +474164,73.55,73.129 +474165,73.35,77.42 +474166,73.036,75.982 +474167,72.687,74.539 +474168,72.302,73.094 +474169,71.957,77.41 +474170,71.691,75.964 +474171,71.39,74.513 +474172,71.054,73.059 +474173,70.564,77.399 +474174,70.346,75.946 +474175,70.094,74.488 +474176,69.807,73.026 +474177,69.17,77.387 +474178,69,75.927 +474179,68.797,74.462 +474180,68.56,72.995 +474181,67.776,77.374 +474182,67.655,75.908 +474183,67.501,74.438 +474184,67.313,72.964 +474185,66.382,77.359 +474186,66.31,75.888 +474187,66.204,74.413 +474188,66.066,72.935 +474189,64.987,77.344 +474190,64.964,75.869 +474191,64.908,74.389 +474192,64.819,72.906 +474193,63.593,77.327 +474194,63.619,75.848 +474195,63.612,74.366 +474196,63.573,72.88 +474197,62.198,77.309 +474198,62.273,75.828 +474199,62.316,74.342 +474200,62.326,72.854 +474201,60.804,77.29 +474202,60.928,75.807 +474203,61.02,74.32 +474204,61.079,72.829 +474205,59.409,77.269 +474206,59.582,75.785 +474207,59.724,74.297 +474208,59.833,72.806 +474209,58.014,77.248 +474210,58.237,75.764 +474211,58.427,74.275 +474212,58.586,72.784 +474213,56.62,77.225 +474214,56.892,75.741 +474215,57.131,74.254 +474216,57.339,72.763 +474217,55.225,77.201 +474218,55.546,75.719 +474219,55.835,74.232 +474220,56.092,72.744 +474221,53.831,77.176 +474222,54.201,75.696 +474223,54.539,74.212 +474224,54.844,72.725 +474225,52.437,77.15 +474226,52.856,75.672 +474227,53.242,74.191 +474228,53.597,72.708 +474229,51.043,77.122 +474230,51.511,75.649 +474231,51.946,74.171 +474232,52.349,72.692 +474233,49.649,77.094 +474234,50.166,75.624 +474235,50.65,74.152 +474236,51.101,72.678 +474237,48.256,77.064 +474238,48.822,75.6 +474239,49.353,74.133 +474240,49.852,72.664 +474241,46.863,77.033 +474242,47.477,75.575 +474243,48.056,74.114 +474244,48.603,72.652 +474245,45.47,77.001 +474246,46.132,75.55 +474247,46.76,74.096 +474248,47.354,72.641 +474249,44.078,76.968 +474250,44.788,75.524 +474251,45.463,74.078 +474252,46.104,72.631 +474253,42.686,76.934 +474254,43.444,75.498 +474255,44.166,74.06 +474256,44.853,72.622 +474257,41.295,76.898 +474258,42.1,75.471 +474259,42.868,74.043 +474260,43.602,72.615 +474261,39.904,76.862 +474262,40.756,75.444 +474263,41.571,74.026 +474264,42.351,72.608 +474265,38.513,76.824 +474266,39.413,75.417 +474267,40.273,74.01 +474268,41.099,72.603 +474269,37.124,76.785 +474270,38.069,75.39 +474271,38.976,73.994 +474272,39.846,72.599 +474273,35.735,76.745 +474274,36.726,75.362 +474275,37.678,73.978 +474276,38.592,72.596 +474277,34.346,76.704 +474278,35.383,75.333 +474279,36.379,73.963 +474280,37.338,72.594 +474281,32.958,76.662 +474282,34.041,75.305 +474283,35.081,73.948 +474284,36.083,72.593 +474285,31.571,76.619 +474286,32.698,75.276 +474287,33.782,73.934 +474288,34.827,72.594 +474289,30.185,76.575 +474290,31.356,75.246 +474291,32.483,73.919 +474292,33.571,72.595 +474293,28.8,76.529 +474294,30.015,75.216 +474295,31.184,73.906 +474296,32.313,72.598 +474297,27.415,76.483 +474298,28.673,75.186 +474299,29.885,73.892 +474300,31.055,72.602 +474301,26.031,76.436 +474302,27.332,75.156 +474303,28.585,73.879 +474304,29.796,72.606 +474305,24.648,76.387 +474306,25.991,75.125 +474307,27.285,73.867 +474308,28.536,72.612 +474309,23.266,76.338 +474310,24.651,75.094 +474311,25.985,73.854 +474312,27.275,72.619 +474313,21.885,76.288 +474314,23.31,75.063 +474315,24.684,73.842 +474316,26.013,72.627 +474317,20.505,76.236 +474318,21.971,75.031 +474319,23.383,73.83 +474320,24.75,72.635 +474321,19.126,76.184 +474322,20.631,74.999 +474323,22.082,73.819 +474324,23.485,72.645 +474325,17.749,76.131 +474326,19.292,74.966 +474327,20.78,73.808 +474328,22.22,72.656 +474329,16.372,76.076 +474330,17.953,74.934 +474331,19.478,73.797 +474332,20.954,72.667 +474333,14.996,76.021 +474334,16.615,74.901 +474335,18.176,73.787 +474336,19.686,72.68 +474337,13.622,75.965 +474338,15.277,74.867 +474339,16.873,73.777 +474340,18.418,72.693 +474341,12.248,75.908 +474342,13.94,74.834 +474343,15.57,73.767 +474344,17.148,72.708 +474345,10.876,75.851 +474346,12.603,74.8 +474347,14.266,73.757 +474348,15.877,72.723 +474349,9.5056,75.792 +474350,11.266,74.766 +474351,12.963,73.748 +474352,14.604,72.739 +474353,8.1361,75.733 +474354,9.9298,74.731 +474355,11.658,73.739 +474356,13.331,72.756 +474357,6.7679,75.672 +474358,8.594,74.697 +474359,10.354,73.73 +474360,12.056,72.773 +474361,5.401,75.611 +474362,7.2587,74.662 +474363,9.0485,73.722 +474364,10.78,72.791 +474365,4.0355,75.55 +474366,5.9239,74.626 +474367,7.7429,73.713 +474368,9.5022,72.811 +474369,2.6714,75.487 +474370,4.5896,74.591 +474371,6.4369,73.706 +474372,8.2233,72.83 +474373,1.3087,75.424 +474374,3.2557,74.555 +474375,5.1305,73.698 +474376,6.9431,72.851 +474377,359.95,75.36 +474378,1.9224,74.52 +474379,3.8236,73.69 +474380,5.6615,72.872 +474381,358.59,75.296 +474382,0.5895,74.483 +474383,2.5162,73.683 +474384,4.3785,72.894 +474385,357.23,75.23 +474386,359.26,74.447 +474387,1.2084,73.676 +474388,3.0941,72.916 +474389,355.87,75.164 +474390,357.93,74.411 +474391,359.9,73.669 +474392,1.8082,72.939 +474393,354.52,75.098 +474394,356.59,74.374 +474395,358.59,73.662 +474396,0.52091,72.963 +474397,353.16,75.031 +474398,355.26,74.337 +474399,357.28,73.656 +474400,359.23,72.987 +474401,351.81,74.963 +474402,353.93,74.3 +474403,355.97,73.65 +474404,357.94,73.012 +474405,350.46,74.895 +474406,352.6,74.263 +474407,354.66,73.644 +474408,356.65,73.037 +474409,349.11,74.827 +474410,351.27,74.225 +474411,353.35,73.638 +474412,355.36,73.063 +474413,347.76,74.757 +474414,349.95,74.188 +474415,352.04,73.632 +474416,354.06,73.089 +474417,346.42,74.688 +474418,348.62,74.15 +474419,350.73,73.626 +474420,352.77,73.116 +474421,345.07,74.618 +474422,347.29,74.112 +474423,349.42,73.621 +474424,351.47,73.143 +474425,343.73,74.547 +474426,345.96,74.074 +474427,348.1,73.615 +474428,350.17,73.17 +474429,342.39,74.477 +474430,344.64,74.036 +474431,346.79,73.61 +474432,348.87,73.198 +474433,341.05,74.405 +474434,343.31,73.998 +474435,345.48,73.605 +474436,347.56,73.226 +474437,339.72,74.334 +474438,341.98,73.959 +474439,344.16,73.6 +474440,346.26,73.254 +474441,338.38,74.262 +474442,340.66,73.921 +474443,342.85,73.595 +474444,344.95,73.283 +474445,337.05,74.19 +474446,339.34,73.882 +474447,341.53,73.59 +474448,343.65,73.312 +474449,335.71,74.118 +474450,338.01,73.844 +474451,340.22,73.585 +474452,342.34,73.341 +474453,334.38,74.045 +474454,336.69,73.805 +474455,338.9,73.581 +474456,341.03,73.37 +474457,333.06,73.972 +474458,335.37,73.766 +474459,337.58,73.576 +474460,339.72,73.399 +474461,331.73,73.899 +474462,334.05,73.728 +474463,336.27,73.571 +474464,338.4,73.429 +474465,330.4,73.826 +474466,332.72,73.689 +474467,334.95,73.567 +474468,337.09,73.459 +474469,329.08,73.753 +474470,331.4,73.65 +474471,333.63,73.562 +474472,335.77,73.488 +474473,327.76,73.68 +474474,330.08,73.611 +474475,332.31,73.558 +474476,334.45,73.518 +474477,326.44,73.606 +474478,328.76,73.572 +474479,330.99,73.553 +474480,333.13,73.548 +474481,325.12,73.533 +474482,327.44,73.533 +474483,329.67,73.549 +474484,331.81,73.578 +474485,323.81,73.46 +474486,326.13,73.495 +474487,328.35,73.544 +474488,330.48,73.607 +474489,322.49,73.386 +474490,324.81,73.456 +474491,327.03,73.54 +474492,329.16,73.637 +474493,321.18,73.313 +474494,323.49,73.417 +474495,325.71,73.535 +474496,327.83,73.666 +474497,319.87,73.24 +474498,322.18,73.378 +474499,324.38,73.531 +474500,326.5,73.696 +474501,318.56,73.167 +474502,320.86,73.339 +474503,323.06,73.526 +474504,325.17,73.725 +474505,317.25,73.094 +474506,319.54,73.301 +474507,321.74,73.522 +474508,323.84,73.754 +474509,315.95,73.021 +474510,318.23,73.262 +474511,320.41,73.517 +474512,322.51,73.783 +474513,314.64,72.948 +474514,316.92,73.223 +474515,319.09,73.512 +474516,321.17,73.812 +474517,313.34,72.876 +474518,315.6,73.185 +474519,317.76,73.507 +474520,319.84,73.84 +474521,312.04,72.804 +474522,314.29,73.146 +474523,316.44,73.502 +474524,318.5,73.869 +474525,310.74,72.732 +474526,312.98,73.108 +474527,315.11,73.497 +474528,317.16,73.897 +474529,309.45,72.66 +474530,311.66,73.07 +474531,313.78,73.492 +474532,315.82,73.924 +474533,308.15,72.589 +474534,310.35,73.032 +474535,312.46,73.487 +474536,314.48,73.951 +474537,306.86,72.518 +474538,309.04,72.994 +474539,311.13,73.481 +474540,313.13,73.978 +474541,305.57,72.447 +474542,307.73,72.956 +474543,309.8,73.476 +474544,311.79,74.004 +474545,304.28,72.377 +474546,306.42,72.918 +474547,308.47,73.47 +474548,310.44,74.03 +474549,302.99,72.308 +474550,305.11,72.881 +474551,307.14,73.464 +474552,309.09,74.056 +474553,301.7,72.238 +474554,303.81,72.843 +474555,305.81,73.458 +474556,307.74,74.081 +474557,300.42,72.17 +474558,302.5,72.806 +474559,304.48,73.452 +474560,306.39,74.105 +474561,299.13,72.102 +474562,301.19,72.769 +474563,303.15,73.446 +474564,305.03,74.129 +474565,297.85,72.034 +474566,299.88,72.732 +474567,301.82,73.439 +474568,303.68,74.153 +474569,296.57,71.967 +474570,298.58,72.696 +474571,300.49,73.433 +474572,302.32,74.176 +474573,295.29,71.9 +474574,297.27,72.659 +474575,299.16,73.426 +474576,300.97,74.198 +474577,294.02,71.834 +474578,295.97,72.623 +474579,297.83,73.419 +474580,299.61,74.22 +474581,292.74,71.769 +474582,294.66,72.587 +474583,296.49,73.411 +474584,298.25,74.241 +474585,291.47,71.704 +474586,293.36,72.551 +474587,295.16,73.404 +474588,296.89,74.261 +474589,290.19,71.641 +474590,292.05,72.515 +474591,293.83,73.396 +474592,295.52,74.28 +474593,288.92,71.577 +474594,290.75,72.48 +474595,292.49,73.388 +474596,294.16,74.299 +474597,287.65,71.515 +474598,289.45,72.445 +474599,291.16,73.38 +474600,292.79,74.317 +474601,286.38,71.453 +474602,288.14,72.41 +474603,289.82,73.371 +474604,291.43,74.335 +474605,285.12,71.392 +474606,286.84,72.376 +474607,288.49,73.363 +474608,290.06,74.351 +474609,283.85,71.332 +474610,285.54,72.341 +474611,287.15,73.354 +474612,288.69,74.367 +474613,282.59,71.273 +474614,284.24,72.307 +474615,285.81,73.344 +474616,287.32,74.382 +474617,281.32,71.214 +474618,282.94,72.273 +474619,284.48,73.335 +474620,285.95,74.396 +474621,280.06,71.157 +474622,281.64,72.24 +474623,283.14,73.325 +474624,284.57,74.41 +474625,278.8,71.1 +474626,280.34,72.207 +474627,281.8,73.315 +474628,283.2,74.422 +474629,277.54,71.044 +474630,279.04,72.174 +474631,280.46,73.304 +474632,281.82,74.434 +474633,276.28,70.99 +474634,277.74,72.141 +474635,279.13,73.294 +474636,280.45,74.444 +474637,275.03,70.936 +474638,276.44,72.109 +474639,277.79,73.283 +474640,279.07,74.454 +474641,273.77,70.883 +474642,275.14,72.077 +474643,276.45,73.271 +474644,277.69,74.463 +474645,272.51,70.831 +474646,273.84,72.046 +474647,275.11,73.26 +474648,276.31,74.471 +474649,271.26,70.78 +474650,272.55,72.014 +474651,273.77,73.248 +474652,274.93,74.478 +474653,270.01,70.73 +474654,271.25,71.983 +474655,272.43,73.235 +474656,273.55,74.484 +474657,268.75,70.681 +474658,269.95,71.953 +474659,271.09,73.223 +474660,272.17,74.488 +474661,267.5,70.633 +474662,268.66,71.922 +474663,269.75,73.21 +474664,270.79,74.492 +474665,266.25,70.586 +474666,267.36,71.893 +474667,268.41,73.196 +474668,269.4,74.495 +474669,265,70.54 +474670,266.06,71.863 +474671,267.07,73.183 +474672,268.02,74.497 +474673,263.75,70.495 +474674,264.77,71.834 +474675,265.73,73.168 +474676,266.63,74.498 +474677,262.51,70.452 +474678,263.47,71.805 +474679,264.38,73.154 +474680,265.25,74.497 +474681,261.26,70.409 +474682,262.18,71.776 +474683,263.04,73.139 +474684,263.86,74.496 +474685,260.01,70.368 +474686,260.88,71.748 +474687,261.7,73.124 +474688,262.47,74.494 +474689,258.77,70.328 +474690,259.59,71.721 +474691,260.36,73.109 +474692,261.08,74.49 +474693,257.52,70.289 +474694,258.29,71.693 +474695,259.02,73.093 +474696,259.69,74.485 +474697,256.28,70.251 +474698,257,71.666 +474699,257.67,73.076 +474700,258.3,74.48 +474701,255.03,70.214 +474702,255.7,71.64 +474703,256.33,73.06 +474704,256.91,74.473 +474705,253.79,70.178 +474706,254.41,71.613 +474707,254.99,73.043 +474708,255.52,74.465 +474709,252.55,70.144 +474710,253.12,71.588 +474711,253.64,73.025 +474712,254.13,74.456 +474713,251.3,70.111 +474714,251.82,71.562 +474715,252.3,73.008 +474716,252.74,74.445 +474717,250.06,70.078 +474718,250.53,71.537 +474719,250.96,72.989 +474720,251.35,74.434 +474721,248.82,70.048 +474722,249.24,71.513 +474723,249.61,72.971 +474724,249.96,74.421 +474725,247.58,70.018 +474726,247.94,71.488 +474727,248.27,72.952 +474728,248.56,74.407 +474729,246.33,69.989 +474730,246.65,71.464 +474731,246.93,72.933 +474732,247.17,74.392 +474733,245.09,69.962 +474734,245.36,71.441 +474735,245.58,72.913 +474736,245.78,74.376 +474737,243.85,69.936 +474738,244.06,71.418 +474739,244.24,72.893 +474740,244.38,74.359 +474741,242.61,69.911 +474742,242.77,71.395 +474743,242.9,72.872 +474744,242.99,74.341 +474745,241.37,69.888 +474746,241.48,71.373 +474747,241.55,72.851 +474748,241.59,74.321 +474749,240.13,69.865 +474750,240.19,71.351 +474751,240.21,72.83 +474752,240.2,74.3 +474753,238.89,69.844 +474754,238.89,71.33 +474755,238.87,72.808 +474756,238.81,74.278 +474757,237.65,69.824 +474758,237.6,71.309 +474759,237.52,72.786 +474760,237.41,74.255 +474761,236.41,69.806 +474762,236.31,71.288 +474763,236.18,72.764 +474764,236.02,74.231 +474765,235.16,69.788 +474766,235.01,71.268 +474767,234.83,72.741 +474768,234.62,74.205 +474769,233.92,69.772 +474770,233.72,71.248 +474771,233.49,72.717 +474772,233.23,74.179 +474773,232.68,69.757 +474774,232.43,71.228 +474775,232.15,72.694 +474776,231.83,74.151 +474777,231.44,69.743 +474778,231.14,71.209 +474779,230.8,72.67 +474780,230.44,74.122 +474781,230.2,69.73 +474782,229.84,71.191 +474783,229.46,72.645 +474784,229.04,74.092 +474785,228.95,69.719 +474786,228.55,71.172 +474787,228.12,72.62 +474788,227.65,74.061 +474789,227.71,69.708 +474790,227.26,71.155 +474791,226.77,72.595 +474792,226.26,74.028 +474793,226.47,69.699 +474794,225.96,71.137 +474795,225.43,72.569 +474796,224.86,73.995 +474797,225.23,69.691 +474798,224.67,71.12 +474799,224.09,72.543 +474800,223.47,73.96 +474801,223.98,69.684 +474802,223.38,71.103 +474803,222.74,72.517 +474804,222.08,73.924 +474805,222.74,69.679 +474806,222.08,71.087 +474807,221.4,72.49 +474808,220.69,73.887 +474809,221.49,69.674 +474810,220.79,71.071 +474811,220.06,72.463 +474812,219.29,73.849 +474813,220.25,69.671 +474814,219.5,71.055 +474815,218.72,72.435 +474816,217.9,73.81 +474817,219,69.669 +474818,218.2,71.04 +474819,217.37,72.407 +474820,216.51,73.769 +474821,217.75,69.668 +474822,216.91,71.025 +474823,216.03,72.379 +474824,215.12,73.728 +474825,216.51,69.668 +474826,215.61,71.011 +474827,214.69,72.351 +474828,213.73,73.685 +474829,215.26,69.669 +474830,214.32,70.997 +474831,213.35,72.322 +474832,212.34,73.642 +474833,214.01,69.671 +474834,213.02,70.983 +474835,212.01,72.292 +474836,210.95,73.597 +474837,212.76,69.674 +474838,211.73,70.97 +474839,210.67,72.262 +474840,209.56,73.551 +474841,211.51,69.679 +474842,210.43,70.957 +474843,209.33,72.232 +474844,208.18,73.505 +474845,210.26,69.684 +474846,209.14,70.944 +474847,207.98,72.202 +474848,206.79,73.457 +474849,209,69.691 +474850,207.84,70.932 +474851,206.64,72.171 +474852,205.41,73.408 +474853,207.75,69.698 +474854,206.55,70.92 +474855,205.3,72.14 +474856,204.02,73.358 +474857,206.5,69.706 +474858,205.25,70.908 +474859,203.96,72.109 +474860,202.64,73.308 +474861,205.24,69.716 +474862,203.95,70.896 +474863,202.63,72.077 +474864,201.25,73.256 +474865,203.98,69.726 +474866,202.66,70.885 +474867,201.29,72.045 +474868,199.87,73.203 +474869,202.73,69.737 +474870,201.36,70.875 +474871,199.95,72.012 +474872,198.49,73.149 +474873,201.47,69.75 +474874,200.06,70.864 +474875,198.61,71.98 +474876,197.11,73.095 +474877,200.21,69.763 +474878,198.76,70.854 +474879,197.27,71.947 +474880,195.73,73.039 +474881,198.95,69.777 +474882,197.46,70.844 +474883,195.93,71.913 +474884,194.35,72.983 +474885,197.69,69.792 +474886,196.16,70.835 +474887,194.6,71.88 +474888,192.98,72.926 +474889,196.42,69.807 +474890,194.87,70.825 +474891,193.26,71.846 +474892,191.6,72.868 +474893,195.16,69.824 +474894,193.57,70.816 +474895,191.92,71.812 +474896,190.23,72.809 +474897,193.89,69.841 +474898,192.27,70.808 +474899,190.59,71.777 +474900,188.85,72.749 +474901,192.63,69.859 +474902,190.97,70.799 +474903,189.25,71.743 +474904,187.48,72.689 +474905,191.36,69.878 +474906,189.66,70.791 +474907,187.92,71.708 +474908,186.11,72.627 +474909,190.09,69.898 +474910,188.36,70.783 +474911,186.58,71.673 +474912,184.74,72.565 +474913,188.82,69.918 +474914,187.06,70.775 +474915,185.25,71.637 +474916,183.37,72.503 +474917,187.55,69.939 +474918,185.76,70.768 +474919,183.92,71.601 +474920,182.01,72.439 +474921,186.27,69.961 +474922,184.46,70.761 +474923,182.58,71.565 +474924,180.64,72.375 +474925,185,69.983 +474926,183.15,70.753 +474927,181.25,71.529 +474928,179.28,72.31 +474929,183.72,70.006 +474930,181.85,70.747 +474931,179.92,71.493 +474932,177.91,72.245 +474933,182.44,70.029 +474934,180.55,70.74 +474935,178.59,71.456 +474936,176.55,72.179 +474937,181.16,70.054 +474938,179.24,70.733 +474939,177.25,71.42 +474940,175.19,72.112 +474941,179.88,70.078 +474942,177.94,70.727 +474943,175.92,71.383 +474944,173.83,72.045 +474945,178.6,70.103 +474946,176.63,70.721 +474947,174.59,71.346 +474948,172.48,71.977 +474949,177.32,70.129 +474950,175.33,70.715 +474951,173.26,71.308 +474952,171.12,71.908 +474953,176.03,70.155 +474954,174.02,70.709 +474955,171.94,71.271 +474956,169.77,71.84 +474957,174.75,70.182 +474958,172.71,70.704 +474959,170.61,71.233 +474960,168.42,71.77 +474961,173.46,70.209 +474962,171.41,70.698 +474963,169.28,71.195 +474964,167.07,71.7 +474965,172.17,70.236 +474966,170.1,70.693 +474967,167.95,71.158 +474968,165.72,71.63 +474969,170.88,70.264 +474970,168.79,70.688 +474971,166.62,71.12 +474972,164.37,71.56 +474973,169.58,70.292 +474974,167.48,70.682 +474975,165.3,71.081 +474976,163.03,71.489 +474977,168.29,70.32 +474978,166.17,70.677 +474979,163.97,71.043 +474980,161.68,71.417 +474981,166.99,70.349 +474982,164.86,70.673 +474983,162.65,71.005 +474984,160.34,71.346 +474985,165.69,70.378 +474986,163.55,70.668 +474987,161.32,70.966 +474988,159,71.274 +474989,164.39,70.407 +474990,162.24,70.663 +474991,160,70.928 +474992,157.66,71.201 +474993,163.09,70.436 +474994,160.93,70.658 +474995,158.68,70.889 +474996,156.33,71.129 +474997,161.79,70.465 +474998,159.61,70.654 +474999,157.35,70.85 +475000,154.99,71.056 +475001,160.48,70.495 +475002,158.3,70.649 +475003,156.03,70.811 +475004,153.66,70.983 +475005,159.18,70.525 +475006,156.99,70.644 +475007,154.71,70.773 +475008,152.33,70.91 +475009,157.87,70.555 +475010,155.67,70.64 +475011,153.39,70.734 +475012,151,70.837 +475013,156.56,70.584 +475014,154.36,70.635 +475015,152.07,70.695 +475016,149.67,70.764 +475017,155.25,70.614 +475018,153.04,70.631 +475019,150.75,70.656 +475020,148.34,70.69 +475021,153.94,70.644 +475022,151.73,70.626 +475023,149.43,70.617 +475024,147.02,70.617 +475025,152.62,70.674 +475026,150.41,70.622 +475027,148.11,70.578 +475028,145.7,70.543 +475029,151.31,70.704 +475030,149.1,70.617 +475031,146.79,70.539 +475032,144.38,70.47 +475033,149.99,70.734 +475034,147.78,70.613 +475035,145.47,70.5 +475036,143.06,70.397 +475037,148.67,70.763 +475038,146.46,70.608 +475039,144.16,70.461 +475040,141.74,70.323 +475041,147.35,70.793 +475042,145.14,70.604 +475043,142.84,70.422 +475044,140.43,70.25 +475045,146.02,70.822 +475046,143.82,70.599 +475047,141.53,70.384 +475048,139.11,70.177 +475049,144.7,70.851 +475050,142.5,70.594 +475051,140.21,70.345 +475052,137.8,70.104 +475053,143.37,70.88 +475054,141.18,70.59 +475055,138.9,70.306 +475056,136.49,70.031 +475057,142.04,70.909 +475058,139.86,70.585 +475059,137.58,70.267 +475060,135.19,69.958 +475061,140.71,70.937 +475062,138.54,70.58 +475063,136.27,70.229 +475064,133.88,69.886 +475065,139.38,70.966 +475066,137.22,70.575 +475067,134.96,70.19 +475068,132.58,69.814 +475069,138.05,70.993 +475070,135.9,70.57 +475071,133.65,70.152 +475072,131.28,69.742 +475073,136.72,71.021 +475074,134.58,70.564 +475075,132.33,70.114 +475076,129.98,69.67 +475077,135.38,71.048 +475078,133.25,70.559 +475079,131.02,70.075 +475080,128.68,69.599 +475081,134.04,71.075 +475082,131.93,70.553 +475083,129.71,70.037 +475084,127.38,69.528 +475085,132.7,71.101 +475086,130.6,70.548 +475087,128.4,69.999 +475088,126.09,69.457 +475089,131.36,71.127 +475090,129.28,70.542 +475091,127.09,69.962 +475092,124.8,69.387 +475093,130.02,71.152 +475094,127.95,70.536 +475095,125.79,69.924 +475096,123.51,69.318 +475097,128.68,71.177 +475098,126.63,70.53 +475099,124.48,69.886 +475100,122.22,69.248 +475101,127.33,71.201 +475102,125.3,70.523 +475103,123.17,69.849 +475104,120.93,69.18 +475105,125.98,71.225 +475106,123.97,70.517 +475107,121.87,69.812 +475108,119.64,69.112 +475109,124.63,71.248 +475110,122.65,70.51 +475111,120.56,69.775 +475112,118.36,69.044 +475113,123.28,71.27 +475114,121.32,70.503 +475115,119.25,69.738 +475116,117.08,68.977 +475117,121.93,71.292 +475118,119.99,70.496 +475119,117.95,69.702 +475120,115.8,68.911 +475121,120.58,71.314 +475122,118.66,70.489 +475123,116.64,69.665 +475124,114.52,68.845 +475125,119.22,71.334 +475126,117.33,70.481 +475127,115.34,69.629 +475128,113.24,68.78 +475129,117.87,71.354 +475130,116,70.473 +475131,114.04,69.593 +475132,111.97,68.715 +475133,116.51,71.373 +475134,114.67,70.465 +475135,112.73,69.557 +475136,110.69,68.651 +475137,115.15,71.392 +475138,113.34,70.457 +475139,111.43,69.522 +475140,109.42,68.588 +475141,113.79,71.409 +475142,112.01,70.449 +475143,110.13,69.487 +475144,108.15,68.526 +475145,112.43,71.426 +475146,110.67,70.44 +475147,108.83,69.452 +475148,106.88,68.464 +475149,111.07,71.442 +475150,109.34,70.431 +475151,107.53,69.417 +475152,105.61,68.403 +475153,109.7,71.458 +475154,108.01,70.421 +475155,106.23,69.383 +475156,104.35,68.343 +475157,108.34,71.472 +475158,106.68,70.412 +475159,104.93,69.348 +475160,103.08,68.284 +475161,106.97,71.486 +475162,105.34,70.402 +475163,103.63,69.315 +475164,101.82,68.226 +475165,105.6,71.499 +475166,104.01,70.392 +475167,102.33,69.281 +475168,100.56,68.168 +475169,104.23,71.51 +475170,102.67,70.381 +475171,101.03,69.248 +475172,99.296,68.112 +475173,102.86,71.521 +475174,101.34,70.37 +475175,99.734,69.215 +475176,98.036,68.056 +475177,101.49,71.531 +475178,100,70.359 +475179,98.436,69.182 +475180,96.779,68.001 +475181,100.11,71.54 +475182,98.667,70.348 +475183,97.139,69.149 +475184,95.522,67.948 +475185,98.74,71.549 +475186,97.331,70.336 +475187,95.843,69.117 +475188,94.267,67.895 +475189,97.365,71.556 +475190,95.995,70.324 +475191,94.546,69.086 +475192,93.013,67.843 +475193,95.989,71.562 +475194,94.658,70.311 +475195,93.251,69.054 +475196,91.76,67.792 +475197,94.611,71.567 +475198,93.32,70.298 +475199,91.955,69.023 +475200,90.508,67.742 +475201,93.233,71.571 +475202,91.983,70.285 +475203,90.66,68.992 +475204,89.257,67.694 +475205,91.853,71.574 +475206,90.645,70.272 +475207,89.365,68.962 +475208,88.008,67.646 +475209,90.473,71.576 +475210,89.307,70.258 +475211,88.071,68.932 +475212,86.759,67.599 +475213,89.091,71.577 +475214,87.968,70.244 +475215,86.777,68.902 +475216,85.511,67.554 +475217,87.709,71.577 +475218,86.629,70.229 +475219,85.483,68.873 +475220,84.265,67.509 +475221,86.326,71.576 +475222,85.29,70.214 +475223,84.19,68.844 +475224,83.019,67.466 +475225,84.942,71.573 +475226,83.951,70.199 +475227,82.897,68.815 +475228,81.774,67.423 +475229,83.557,71.57 +475230,82.611,70.183 +475231,81.604,68.787 +475232,80.53,67.382 +475233,82.171,71.565 +475234,81.271,70.167 +475235,80.312,68.759 +475236,79.287,67.342 +475237,80.784,71.56 +475238,79.931,70.151 +475239,79.019,68.731 +475240,78.045,67.303 +475241,79.397,71.553 +475242,78.591,70.134 +475243,77.727,68.704 +475244,76.803,67.266 +475245,78.009,71.545 +475246,77.25,70.117 +475247,76.436,68.678 +475248,75.562,67.229 +475249,76.621,71.536 +475250,75.909,70.099 +475251,75.144,68.651 +475252,74.322,67.194 +475253,75.232,71.526 +475254,74.568,70.081 +475255,73.853,68.625 +475256,73.082,67.16 +475257,73.842,71.514 +475258,73.227,70.063 +475259,72.562,68.6 +475260,71.843,67.127 +475261,72.452,71.502 +475262,71.886,70.044 +475263,71.271,68.574 +475264,70.604,67.095 +475265,71.061,71.488 +475266,70.544,70.025 +475267,69.98,68.55 +475268,69.366,67.064 +475269,69.67,71.473 +475270,69.202,70.005 +475271,68.69,68.525 +475272,68.128,67.035 +475273,68.278,71.457 +475274,67.861,69.985 +475275,67.399,68.501 +475276,66.891,67.007 +475277,66.886,71.44 +475278,66.519,69.965 +475279,66.109,68.477 +475280,65.654,66.98 +475281,65.493,71.421 +475282,65.177,69.944 +475283,64.819,68.454 +475284,64.417,66.954 +475285,64.1,71.401 +475286,63.835,69.923 +475287,63.529,68.431 +475288,63.181,66.929 +475289,62.707,71.381 +475290,62.493,69.901 +475291,62.239,68.409 +475292,61.945,66.906 +475293,61.313,71.359 +475294,61.15,69.879 +475295,60.949,68.387 +475296,60.709,66.884 +475297,59.92,71.335 +475298,59.808,69.856 +475299,59.66,68.365 +475300,59.473,66.863 +475301,58.526,71.311 +475302,58.466,69.834 +475303,58.37,68.344 +475304,58.237,66.843 +475305,57.131,71.285 +475306,57.123,69.81 +475307,57.08,68.323 +475308,57.001,66.825 +475309,55.737,71.258 +475310,55.781,69.787 +475311,55.791,68.303 +475312,55.766,66.808 +475313,54.343,71.23 +475314,54.438,69.763 +475315,54.501,68.283 +475316,54.53,66.792 +475317,52.949,71.201 +475318,53.096,69.738 +475319,53.212,68.263 +475320,53.294,66.777 +475321,51.554,71.171 +475322,51.754,69.713 +475323,51.922,68.244 +475324,52.058,66.764 +475325,50.16,71.139 +475326,50.411,69.688 +475327,50.632,68.225 +475328,50.822,66.751 +475329,48.765,71.106 +475330,49.069,69.662 +475331,49.343,68.206 +475332,49.586,66.74 +475333,47.371,71.072 +475334,47.727,69.636 +475335,48.053,68.188 +475336,48.349,66.73 +475337,45.977,71.037 +475338,46.385,69.61 +475339,46.763,68.171 +475340,47.112,66.721 +475341,44.583,71.001 +475342,45.043,69.583 +475343,45.473,68.153 +475344,45.875,66.714 +475345,43.19,70.964 +475346,43.701,69.555 +475347,44.183,68.136 +475348,44.638,66.707 +475349,41.796,70.925 +475350,42.359,69.528 +475351,42.893,68.12 +475352,43.4,66.702 +475353,40.403,70.885 +475354,41.017,69.5 +475355,41.603,68.104 +475356,42.161,66.698 +475357,39.01,70.845 +475358,39.676,69.471 +475359,40.313,68.088 +475360,40.922,66.695 +475361,37.618,70.803 +475362,38.334,69.443 +475363,39.023,68.072 +475364,39.683,66.693 +475365,36.226,70.76 +475366,36.993,69.413 +475367,37.732,68.057 +475368,38.443,66.693 +475369,34.834,70.715 +475370,35.652,69.384 +475371,36.441,68.043 +475372,37.202,66.693 +475373,33.443,70.67 +475374,34.311,69.354 +475375,35.15,68.028 +475376,35.961,66.695 +475377,32.052,70.624 +475378,32.971,69.324 +475379,33.859,68.014 +475380,34.719,66.697 +475381,30.662,70.576 +475382,31.63,69.293 +475383,32.568,68.001 +475384,33.477,66.701 +475385,29.273,70.528 +475386,30.29,69.262 +475387,31.276,67.987 +475388,32.233,66.706 +475389,27.884,70.479 +475390,28.95,69.23 +475391,29.984,67.974 +475392,30.989,66.711 +475393,26.496,70.428 +475394,27.611,69.199 +475395,28.692,67.962 +475396,29.744,66.718 +475397,25.109,70.377 +475398,26.271,69.167 +475399,27.4,67.949 +475400,28.498,66.726 +475401,23.722,70.324 +475402,24.932,69.134 +475403,26.107,67.937 +475404,27.251,66.735 +475405,22.336,70.271 +475406,23.593,69.102 +475407,24.815,67.926 +475408,26.004,66.745 +475409,20.951,70.216 +475410,22.255,69.068 +475411,23.521,67.914 +475412,24.755,66.755 +475413,19.567,70.161 +475414,20.917,69.035 +475415,22.228,67.903 +475416,23.505,66.767 +475417,18.184,70.104 +475418,19.579,69.001 +475419,20.934,67.893 +475420,22.254,66.78 +475421,16.801,70.047 +475422,18.241,68.967 +475423,19.64,67.882 +475424,21.003,66.793 +475425,15.42,69.989 +475426,16.904,68.933 +475427,18.346,67.872 +475428,19.75,66.808 +475429,14.04,69.93 +475430,15.567,68.898 +475431,17.051,67.862 +475432,18.496,66.823 +475433,12.66,69.87 +475434,14.231,68.863 +475435,15.756,67.853 +475436,17.241,66.839 +475437,11.282,69.809 +475438,12.895,68.828 +475439,14.46,67.843 +475440,15.984,66.856 +475441,9.9047,69.748 +475442,11.559,68.793 +475443,13.164,67.834 +475444,14.727,66.874 +475445,8.5287,69.686 +475446,10.224,68.757 +475447,11.868,67.825 +475448,13.468,66.892 +475449,7.1539,69.622 +475450,8.8889,68.721 +475451,10.571,67.817 +475452,12.208,66.911 +475453,5.7802,69.559 +475454,7.5545,68.685 +475455,9.2742,67.809 +475456,10.946,66.931 +475457,4.4078,69.494 +475458,6.2205,68.648 +475459,7.9767,67.801 +475460,9.6836,66.952 +475461,3.0367,69.429 +475462,4.887,68.611 +475463,6.6788,67.793 +475464,8.4195,66.973 +475465,1.6669,69.363 +475466,3.5539,68.574 +475467,5.3804,67.785 +475468,7.1541,66.995 +475469,0.29842,69.296 +475470,2.2214,68.537 +475471,4.0816,67.778 +475472,5.8873,67.018 +475473,358.93,69.229 +475474,0.88924,68.5 +475475,2.7823,67.77 +475476,4.6191,67.041 +475477,357.57,69.161 +475478,359.56,68.462 +475479,1.4826,67.763 +475480,3.3494,67.065 +475481,356.2,69.092 +475482,358.23,68.424 +475483,0.18237,67.756 +475484,2.0783,67.09 +475485,354.84,69.023 +475486,356.9,68.386 +475487,358.88,67.75 +475488,0.80565,67.114 +475489,353.48,68.953 +475490,355.57,68.348 +475491,357.58,67.743 +475492,359.53,67.14 +475493,352.12,68.883 +475494,354.24,68.31 +475495,356.28,67.737 +475496,358.26,67.166 +475497,350.76,68.812 +475498,352.91,68.271 +475499,354.98,67.731 +475500,356.98,67.192 +475501,349.4,68.741 +475502,351.58,68.232 +475503,353.67,67.725 +475504,355.7,67.219 +475505,348.05,68.669 +475506,350.25,68.193 +475507,352.37,67.719 +475508,354.42,67.246 +475509,346.69,68.597 +475510,348.92,68.154 +475511,351.07,67.713 +475512,353.14,67.274 +475513,345.34,68.525 +475514,347.6,68.115 +475515,349.76,67.707 +475516,351.85,67.302 +475517,343.99,68.452 +475518,346.27,68.076 +475519,348.46,67.702 +475520,350.57,67.33 +475521,342.64,68.379 +475522,344.94,68.036 +475523,347.15,67.696 +475524,349.28,67.359 +475525,341.3,68.305 +475526,343.62,67.997 +475527,345.85,67.691 +475528,347.99,67.388 +475529,339.95,68.231 +475530,342.29,67.957 +475531,344.54,67.685 +475532,346.7,67.417 +475533,338.61,68.157 +475534,340.97,67.917 +475535,343.23,67.68 +475536,345.41,67.446 +475537,337.27,68.083 +475538,339.65,67.878 +475539,341.93,67.675 +475540,344.12,67.475 +475541,335.93,68.008 +475542,338.32,67.838 +475543,340.62,67.67 +475544,342.82,67.505 +475545,334.59,67.934 +475546,337,67.798 +475547,339.31,67.665 +475548,341.53,67.535 +475549,333.25,67.859 +475550,335.68,67.758 +475551,338,67.66 +475552,340.23,67.565 +475553,331.92,67.784 +475554,334.36,67.718 +475555,336.69,67.655 +475556,338.93,67.594 +475557,330.59,67.708 +475558,333.04,67.678 +475559,335.38,67.649 +475560,337.63,67.624 +475561,329.25,67.633 +475562,331.72,67.637 +475563,334.07,67.644 +475564,336.32,67.654 +475565,327.93,67.558 +475566,330.4,67.597 +475567,332.76,67.639 +475568,335.02,67.684 +475569,326.6,67.483 +475570,329.08,67.557 +475571,331.45,67.634 +475572,333.71,67.714 +475573,325.27,67.408 +475574,327.76,67.517 +475575,330.13,67.629 +475576,332.4,67.744 +475577,323.95,67.332 +475578,326.45,67.477 +475579,328.82,67.624 +475580,331.09,67.774 +475581,322.63,67.257 +475582,325.13,67.437 +475583,327.51,67.619 +475584,329.78,67.803 +475585,321.31,67.182 +475586,323.81,67.397 +475587,326.19,67.614 +475588,328.47,67.833 +475589,319.99,67.107 +475590,322.5,67.357 +475591,324.88,67.608 +475592,327.15,67.862 +475593,318.68,67.032 +475594,321.18,67.317 +475595,323.56,67.603 +475596,325.83,67.891 +475597,317.36,66.958 +475598,319.87,67.277 +475599,322.25,67.598 +475600,324.52,67.92 +475601,316.05,66.884 +475602,318.56,67.237 +475603,320.93,67.592 +475604,323.19,67.948 +475605,314.74,66.809 +475606,317.24,67.197 +475607,319.61,67.586 +475608,321.87,67.977 +475609,313.43,66.736 +475610,315.93,67.157 +475611,318.3,67.581 +475612,320.55,68.005 +475613,312.13,66.662 +475614,314.62,67.118 +475615,316.98,67.575 +475616,319.22,68.032 +475617,310.83,66.589 +475618,313.31,67.078 +475619,315.66,67.569 +475620,317.89,68.059 +475621,309.52,66.516 +475622,312,67.039 +475623,314.34,67.563 +475624,316.57,68.086 +475625,308.22,66.443 +475626,310.69,67 +475627,313.02,67.556 +475628,315.23,68.113 +475629,306.92,66.371 +475630,309.38,66.961 +475631,311.7,67.55 +475632,313.9,68.138 +475633,305.63,66.3 +475634,308.07,66.922 +475635,310.38,67.543 +475636,312.57,68.164 +475637,304.33,66.228 +475638,306.76,66.883 +475639,309.06,67.537 +475640,311.23,68.189 +475641,303.04,66.158 +475642,305.46,66.844 +475643,307.73,67.53 +475644,309.9,68.213 +475645,301.75,66.087 +475646,304.15,66.806 +475647,306.41,67.522 +475648,308.56,68.237 +475649,300.46,66.018 +475650,302.84,66.767 +475651,305.09,67.515 +475652,307.22,68.26 +475653,299.18,65.949 +475654,301.54,66.729 +475655,303.76,67.508 +475656,305.87,68.283 +475657,297.89,65.88 +475658,300.23,66.691 +475659,302.44,67.5 +475660,304.53,68.305 +475661,296.61,65.812 +475662,298.93,66.653 +475663,301.11,67.492 +475664,303.18,68.326 +475665,295.33,65.745 +475666,297.62,66.616 +475667,299.79,67.484 +475668,301.84,68.347 +475669,294.05,65.678 +475670,296.32,66.578 +475671,298.46,67.475 +475672,300.49,68.367 +475673,292.77,65.612 +475674,295.02,66.541 +475675,297.14,67.466 +475676,299.14,68.386 +475677,291.49,65.547 +475678,293.72,66.504 +475679,295.81,67.457 +475680,297.79,68.405 +475681,290.22,65.483 +475682,292.42,66.468 +475683,294.48,67.448 +475684,296.43,68.423 +475685,288.95,65.419 +475686,291.11,66.431 +475687,293.15,67.439 +475688,295.08,68.439 +475689,287.68,65.356 +475690,289.81,66.395 +475691,291.82,67.429 +475692,293.72,68.456 +475693,286.41,65.294 +475694,288.51,66.359 +475695,290.5,67.419 +475696,292.37,68.471 +475697,285.14,65.233 +475698,287.22,66.324 +475699,289.17,67.408 +475700,291.01,68.485 +475701,283.87,65.172 +475702,285.92,66.288 +475703,287.84,67.398 +475704,289.65,68.499 +475705,282.61,65.113 +475706,284.62,66.253 +475707,286.51,67.387 +475708,288.28,68.512 +475709,281.35,65.054 +475710,283.32,66.219 +475711,285.18,67.376 +475712,286.92,68.524 +475713,280.08,64.996 +475714,282.02,66.184 +475715,283.84,67.364 +475716,285.56,68.534 +475717,278.83,64.939 +475718,280.73,66.15 +475719,282.51,67.352 +475720,284.19,68.544 +475721,277.57,64.884 +475722,279.43,66.116 +475723,281.18,67.34 +475724,282.82,68.553 +475725,276.31,64.829 +475726,278.14,66.083 +475727,279.85,67.327 +475728,281.46,68.561 +475729,275.06,64.775 +475730,276.84,66.049 +475731,278.51,67.314 +475732,280.09,68.568 +475733,273.8,64.722 +475734,275.55,66.017 +475735,277.18,67.301 +475736,278.72,68.574 +475737,272.55,64.67 +475738,274.25,65.984 +475739,275.85,67.288 +475740,277.34,68.579 +475741,271.3,64.619 +475742,272.96,65.952 +475743,274.51,67.274 +475744,275.97,68.583 +475745,270.05,64.569 +475746,271.66,65.92 +475747,273.18,67.259 +475748,274.6,68.586 +475749,268.8,64.521 +475750,270.37,65.888 +475751,271.84,67.245 +475752,273.22,68.588 +475753,267.55,64.473 +475754,269.08,65.857 +475755,270.51,67.229 +475756,271.85,68.588 +475757,266.31,64.427 +475758,267.79,65.826 +475759,269.17,67.214 +475760,270.47,68.588 +475761,265.06,64.381 +475762,266.5,65.796 +475763,267.84,67.198 +475764,269.09,68.586 +475765,263.82,64.337 +475766,265.2,65.766 +475767,266.5,67.182 +475768,267.71,68.584 +475769,262.57,64.294 +475770,263.91,65.736 +475771,265.16,67.165 +475772,266.33,68.58 +475773,261.33,64.252 +475774,262.62,65.707 +475775,263.83,67.148 +475776,264.95,68.575 +475777,260.09,64.211 +475778,261.33,65.678 +475779,262.49,67.131 +475780,263.57,68.569 +475781,258.85,64.171 +475782,260.04,65.649 +475783,261.15,67.113 +475784,262.18,68.562 +475785,257.61,64.133 +475786,258.75,65.621 +475787,259.81,67.095 +475788,260.8,68.553 +475789,256.37,64.096 +475790,257.46,65.593 +475791,258.47,67.076 +475792,259.41,68.544 +475793,255.14,64.06 +475794,256.17,65.566 +475795,257.14,67.057 +475796,258.03,68.533 +475797,253.9,64.025 +475798,254.88,65.539 +475799,255.8,67.038 +475800,256.64,68.521 +475801,252.66,63.991 +475802,253.6,65.512 +475803,254.46,67.018 +475804,255.26,68.508 +475805,251.43,63.959 +475806,252.31,65.486 +475807,253.12,66.998 +475808,253.87,68.493 +475809,250.19,63.928 +475810,251.02,65.46 +475811,251.78,66.977 +475812,252.48,68.478 +475813,248.96,63.898 +475814,249.73,65.435 +475815,250.44,66.956 +475816,251.09,68.461 +475817,247.73,63.869 +475818,248.44,65.41 +475819,249.1,66.935 +475820,249.7,68.443 +475821,246.49,63.841 +475822,247.16,65.385 +475823,247.76,66.913 +475824,248.31,68.424 +475825,245.26,63.815 +475826,245.87,65.361 +475827,246.42,66.89 +475828,246.92,68.403 +475829,244.03,63.79 +475830,244.58,65.337 +475831,245.08,66.868 +475832,245.53,68.381 +475833,242.8,63.767 +475834,243.3,65.313 +475835,243.74,66.844 +475836,244.14,68.358 +475837,241.56,63.744 +475838,242.01,65.29 +475839,242.4,66.821 +475840,242.75,68.334 +475841,240.33,63.723 +475842,240.72,65.268 +475843,241.06,66.797 +475844,241.35,68.309 +475845,239.1,63.703 +475846,239.44,65.245 +475847,239.72,66.772 +475848,239.96,68.282 +475849,237.87,63.684 +475850,238.15,65.224 +475851,238.38,66.747 +475852,238.57,68.254 +475853,236.64,63.667 +475854,236.86,65.202 +475855,237.04,66.722 +475856,237.18,68.225 +475857,235.41,63.65 +475858,235.58,65.181 +475859,235.7,66.696 +475860,235.78,68.195 +475861,234.18,63.635 +475862,234.29,65.161 +475863,234.36,66.67 +475864,234.39,68.163 +475865,232.95,63.622 +475866,233,65.14 +475867,233.02,66.644 +475868,233,68.13 +475869,231.72,63.609 +475870,231.72,65.12 +475871,231.68,66.617 +475872,231.6,68.096 +475873,230.49,63.598 +475874,230.43,65.101 +475875,230.34,66.589 +475876,230.21,68.061 +475877,229.26,63.588 +475878,229.14,65.082 +475879,229,66.561 +475880,228.81,68.025 +475881,228.03,63.579 +475882,227.86,65.063 +475883,227.65,66.533 +475884,227.42,67.987 +475885,226.8,63.571 +475886,226.57,65.045 +475887,226.31,66.504 +475888,226.03,67.948 +475889,225.57,63.565 +475890,225.29,65.027 +475891,224.97,66.475 +475892,224.63,67.908 +475893,224.34,63.559 +475894,224,65.01 +475895,223.63,66.446 +475896,223.24,67.867 +475897,223.11,63.555 +475898,222.71,64.993 +475899,222.29,66.416 +475900,221.85,67.825 +475901,221.87,63.552 +475902,221.43,64.976 +475903,220.95,66.386 +475904,220.45,67.781 +475905,220.64,63.55 +475906,220.14,64.959 +475907,219.61,66.355 +475908,219.06,67.736 +475909,219.41,63.55 +475910,218.85,64.943 +475911,218.27,66.324 +475912,217.67,67.691 +475913,218.17,63.55 +475914,217.57,64.928 +475915,216.93,66.293 +475916,216.27,67.644 +475917,216.94,63.552 +475918,216.28,64.913 +475919,215.59,66.261 +475920,214.88,67.596 +475921,215.71,63.555 +475922,214.99,64.898 +475923,214.25,66.229 +475924,213.49,67.546 +475925,214.47,63.558 +475926,213.7,64.883 +475927,212.91,66.196 +475928,212.1,67.496 +475929,213.23,63.563 +475930,212.42,64.869 +475931,211.57,66.163 +475932,210.71,67.445 +475933,212,63.569 +475934,211.13,64.855 +475935,210.24,66.13 +475936,209.32,67.392 +475937,210.76,63.576 +475938,209.84,64.841 +475939,208.9,66.096 +475940,207.93,67.339 +475941,209.52,63.584 +475942,208.55,64.828 +475943,207.56,66.062 +475944,206.54,67.284 +475945,208.28,63.593 +475946,207.26,64.815 +475947,206.22,66.028 +475948,205.15,67.229 +475949,207.04,63.603 +475950,205.98,64.803 +475951,204.88,65.993 +475952,203.76,67.172 +475953,205.8,63.614 +475954,204.69,64.791 +475955,203.54,65.958 +475956,202.37,67.114 +475957,204.56,63.626 +475958,203.4,64.779 +475959,202.21,65.923 +475960,200.99,67.056 +475961,203.32,63.639 +475962,202.11,64.767 +475963,200.87,65.887 +475964,199.6,66.996 +475965,202.08,63.652 +475966,200.82,64.756 +475967,199.53,65.851 +475968,198.22,66.936 +475969,200.83,63.667 +475970,199.53,64.745 +475971,198.2,65.814 +475972,196.83,66.875 +475973,199.59,63.683 +475974,198.24,64.734 +475975,196.86,65.778 +475976,195.45,66.812 +475977,198.34,63.699 +475978,196.95,64.723 +475979,195.52,65.741 +475980,194.07,66.749 +475981,197.09,63.716 +475982,195.66,64.713 +475983,194.19,65.703 +475984,192.69,66.685 +475985,195.84,63.734 +475986,194.36,64.703 +475987,192.85,65.666 +475988,191.31,66.62 +475989,194.59,63.753 +475990,193.07,64.694 +475991,191.52,65.628 +475992,189.93,66.555 +475993,193.34,63.772 +475994,191.78,64.684 +475995,190.19,65.59 +475996,188.55,66.488 +475997,192.09,63.793 +475998,190.49,64.675 +475999,188.85,65.551 +476000,187.17,66.421 +476001,190.83,63.814 +476002,189.2,64.666 +476003,187.52,65.513 +476004,185.79,66.353 +476005,189.58,63.835 +476006,187.9,64.657 +476007,186.18,65.474 +476008,184.42,66.284 +476009,188.32,63.858 +476010,186.61,64.649 +476011,184.85,65.435 +476012,183.05,66.214 +476013,187.06,63.881 +476014,185.31,64.64 +476015,183.52,65.395 +476016,181.67,66.144 +476017,185.8,63.904 +476018,184.02,64.632 +476019,182.19,65.356 +476020,180.3,66.073 +476021,184.54,63.928 +476022,182.72,64.624 +476023,180.86,65.316 +476024,178.93,66.002 +476025,183.28,63.953 +476026,181.43,64.616 +476027,179.53,65.276 +476028,177.56,65.93 +476029,182.02,63.978 +476030,180.13,64.609 +476031,178.2,65.236 +476032,176.2,65.857 +476033,180.75,64.004 +476034,178.84,64.601 +476035,176.87,65.195 +476036,174.83,65.784 +476037,179.48,64.03 +476038,177.54,64.594 +476039,175.54,65.154 +476040,173.47,65.71 +476041,178.22,64.057 +476042,176.24,64.587 +476043,174.21,65.114 +476044,172.1,65.636 +476045,176.95,64.084 +476046,174.94,64.58 +476047,172.88,65.073 +476048,170.74,65.561 +476049,175.67,64.112 +476050,173.65,64.573 +476051,171.55,65.032 +476052,169.38,65.486 +476053,174.4,64.14 +476054,172.35,64.566 +476055,170.23,64.99 +476056,168.03,65.41 +476057,173.13,64.168 +476058,171.05,64.56 +476059,168.9,64.949 +476060,166.67,65.334 +476061,171.85,64.197 +476062,169.75,64.553 +476063,167.57,64.907 +476064,165.31,65.257 +476065,170.57,64.225 +476066,168.45,64.547 +476067,166.25,64.866 +476068,163.96,65.181 +476069,169.29,64.255 +476070,167.15,64.54 +476071,164.92,64.824 +476072,162.61,65.103 +476073,168.01,64.284 +476074,165.84,64.534 +476075,163.6,64.782 +476076,161.26,65.026 +476077,166.73,64.313 +476078,164.54,64.528 +476079,162.27,64.74 +476080,159.91,64.948 +476081,165.44,64.343 +476082,163.24,64.522 +476083,160.95,64.698 +476084,158.56,64.87 +476085,164.16,64.373 +476086,161.94,64.515 +476087,159.63,64.656 +476088,157.22,64.792 +476089,162.87,64.403 +476090,160.63,64.509 +476091,158.31,64.613 +476092,155.88,64.714 +476093,161.58,64.433 +476094,159.33,64.503 +476095,156.99,64.571 +476096,154.53,64.635 +476097,160.29,64.463 +476098,158.02,64.497 +476099,155.66,64.529 +476100,153.2,64.557 +476101,159,64.493 +476102,156.72,64.491 +476103,154.34,64.486 +476104,151.86,64.478 +476105,157.7,64.523 +476106,155.41,64.485 +476107,153.03,64.444 +476108,150.52,64.399 +476109,156.4,64.553 +476110,154.11,64.479 +476111,151.71,64.402 +476112,149.19,64.32 +476113,155.11,64.583 +476114,152.8,64.473 +476115,150.39,64.359 +476116,147.86,64.241 +476117,153.81,64.613 +476118,151.49,64.467 +476119,149.07,64.317 +476120,146.53,64.162 +476121,152.5,64.643 +476122,150.18,64.46 +476123,147.75,64.274 +476124,145.2,64.084 +476125,151.2,64.673 +476126,148.87,64.454 +476127,146.44,64.232 +476128,143.87,64.005 +476129,149.89,64.702 +476130,147.56,64.448 +476131,145.12,64.19 +476132,142.55,63.926 +476133,148.59,64.731 +476134,146.25,64.441 +476135,143.81,64.147 +476136,141.23,63.848 +476137,147.28,64.76 +476138,144.94,64.435 +476139,142.49,64.105 +476140,139.91,63.77 +476141,145.97,64.789 +476142,143.63,64.428 +476143,141.18,64.063 +476144,138.59,63.692 +476145,144.66,64.818 +476146,142.32,64.422 +476147,139.87,64.021 +476148,137.27,63.614 +476149,143.34,64.846 +476150,141.01,64.415 +476151,138.55,63.979 +476152,135.96,63.536 +476153,142.03,64.874 +476154,139.7,64.408 +476155,137.24,63.937 +476156,134.64,63.459 +476157,140.71,64.901 +476158,138.38,64.401 +476159,135.93,63.895 +476160,133.33,63.382 +476161,139.39,64.928 +476162,137.07,64.394 +476163,134.62,63.853 +476164,132.03,63.305 +476165,138.07,64.955 +476166,135.75,64.387 +476167,133.31,63.811 +476168,130.72,63.229 +476169,136.74,64.981 +476170,134.44,64.379 +476171,132,63.77 +476172,129.41,63.153 +476173,135.42,65.007 +476174,133.12,64.371 +476175,130.69,63.728 +476176,128.11,63.077 +476177,134.09,65.032 +476178,131.81,64.364 +476179,129.39,63.687 +476180,126.81,63.002 +476181,132.77,65.056 +476182,130.49,64.355 +476183,128.08,63.646 +476184,125.51,62.928 +476185,131.44,65.08 +476186,129.17,64.347 +476187,126.77,63.605 +476188,124.22,62.854 +476189,130.1,65.104 +476190,127.85,64.339 +476191,125.47,63.564 +476192,122.92,62.78 +476193,128.77,65.127 +476194,126.53,64.33 +476195,124.16,63.524 +476196,121.63,62.707 +476197,127.44,65.149 +476198,125.21,64.321 +476199,122.86,63.484 +476200,120.34,62.635 +476201,126.1,65.17 +476202,123.89,64.312 +476203,121.55,63.443 +476204,119.05,62.563 +476205,124.76,65.191 +476206,122.57,64.303 +476207,120.25,63.403 +476208,117.77,62.492 +476209,123.42,65.211 +476210,121.25,64.293 +476211,118.95,63.364 +476212,116.48,62.422 +476213,122.08,65.231 +476214,119.93,64.284 +476215,117.64,63.324 +476216,115.2,62.352 +476217,120.74,65.249 +476218,118.61,64.273 +476219,116.34,63.285 +476220,113.92,62.283 +476221,119.39,65.267 +476222,117.29,64.263 +476223,115.04,63.246 +476224,112.64,62.215 +476225,118.05,65.284 +476226,115.96,64.252 +476227,113.74,63.207 +476228,111.36,62.148 +476229,116.7,65.3 +476230,114.64,64.241 +476231,112.44,63.168 +476232,110.09,62.081 +476233,115.35,65.316 +476234,113.32,64.23 +476235,111.14,63.13 +476236,108.82,62.015 +476237,114,65.33 +476238,111.99,64.219 +476239,109.85,63.092 +476240,107.54,61.951 +476241,112.65,65.344 +476242,110.67,64.207 +476243,108.55,63.054 +476244,106.27,61.886 +476245,111.29,65.357 +476246,109.34,64.195 +476247,107.25,63.017 +476248,105.01,61.823 +476249,109.94,65.368 +476250,108.01,64.182 +476251,105.95,62.98 +476252,103.74,61.761 +476253,108.58,65.379 +476254,106.69,64.169 +476255,104.66,62.943 +476256,102.48,61.7 +476257,107.23,65.389 +476258,105.36,64.156 +476259,103.36,62.906 +476260,101.21,61.639 +476261,105.87,65.398 +476262,104.03,64.143 +476263,102.07,62.87 +476264,99.954,61.58 +476265,104.51,65.406 +476266,102.7,64.129 +476267,100.77,62.834 +476268,98.695,61.522 +476269,103.14,65.412 +476270,101.37,64.115 +476271,99.479,62.799 +476272,97.438,61.464 +476273,101.78,65.418 +476274,100.05,64.1 +476275,98.186,62.764 +476276,96.182,61.408 +476277,100.42,65.423 +476278,98.716,64.085 +476279,96.893,62.729 +476280,94.928,61.353 +476281,99.049,65.426 +476282,97.386,64.07 +476283,95.601,62.694 +476284,93.676,61.298 +476285,97.682,65.429 +476286,96.056,64.054 +476287,94.309,62.66 +476288,92.425,61.245 +476289,96.313,65.43 +476290,94.725,64.038 +476291,93.018,62.626 +476292,91.175,61.193 +476293,94.944,65.431 +476294,93.394,64.022 +476295,91.727,62.592 +476296,89.927,61.142 +476297,93.573,65.43 +476298,92.062,64.005 +476299,90.437,62.559 +476300,88.681,61.093 +476301,92.201,65.428 +476302,90.73,63.988 +476303,89.147,62.527 +476304,87.435,61.044 +476305,90.828,65.425 +476306,89.398,63.97 +476307,87.857,62.494 +476308,86.191,60.997 +476309,89.453,65.42 +476310,88.065,63.952 +476311,86.568,62.462 +476312,84.949,60.95 +476313,88.078,65.415 +476314,86.732,63.934 +476315,85.28,62.431 +476316,83.707,60.905 +476317,86.702,65.408 +476318,85.398,63.915 +476319,83.992,62.399 +476320,82.467,60.862 +476321,85.324,65.4 +476322,84.065,63.896 +476323,82.704,62.369 +476324,81.228,60.819 +476325,83.946,65.391 +476326,82.731,63.876 +476327,81.416,62.338 +476328,79.99,60.777 +476329,82.567,65.381 +476330,81.396,63.856 +476331,80.129,62.308 +476332,78.754,60.737 +476333,81.187,65.369 +476334,80.061,63.835 +476335,78.843,62.278 +476336,77.518,60.698 +476337,79.806,65.356 +476338,78.726,63.814 +476339,77.556,62.249 +476340,76.283,60.661 +476341,78.424,65.342 +476342,77.391,63.793 +476343,76.271,62.22 +476344,75.05,60.624 +476345,77.041,65.327 +476346,76.056,63.771 +476347,74.985,62.192 +476348,73.817,60.589 +476349,75.657,65.31 +476350,74.72,63.749 +476351,73.7,62.164 +476352,72.585,60.555 +476353,74.273,65.292 +476354,73.384,63.726 +476355,72.414,62.136 +476356,71.354,60.523 +476357,72.888,65.273 +476358,72.048,63.703 +476359,71.13,62.109 +476360,70.124,60.492 +476361,71.502,65.253 +476362,70.711,63.679 +476363,69.845,62.082 +476364,68.895,60.462 +476365,70.115,65.231 +476366,69.375,63.655 +476367,68.561,62.056 +476368,67.666,60.433 +476369,68.728,65.208 +476370,68.038,63.631 +476371,67.277,62.03 +476372,66.438,60.405 +476373,67.341,65.184 +476374,66.701,63.606 +476375,65.993,62.004 +476376,65.21,60.379 +476377,65.952,65.158 +476378,65.364,63.581 +476379,64.71,61.979 +476380,63.984,60.355 +476381,64.564,65.131 +476382,64.026,63.555 +476383,63.426,61.955 +476384,62.757,60.331 +476385,63.174,65.103 +476386,62.689,63.529 +476387,62.143,61.93 +476388,61.531,60.309 +476389,61.785,65.074 +476390,61.351,63.502 +476391,60.86,61.906 +476392,60.306,60.288 +476393,60.395,65.043 +476394,60.013,63.475 +476395,59.577,61.883 +476396,59.081,60.268 +476397,59.004,65.011 +476398,58.676,63.447 +476399,58.295,61.86 +476400,57.856,60.25 +476401,57.613,64.978 +476402,57.338,63.419 +476403,57.012,61.837 +476404,56.631,60.233 +476405,56.222,64.943 +476406,56,63.391 +476407,55.73,61.815 +476408,55.407,60.218 +476409,54.83,64.907 +476410,54.662,63.362 +476411,54.447,61.793 +476412,54.183,60.203 +476413,53.439,64.87 +476414,53.324,63.332 +476415,53.165,61.772 +476416,52.959,60.19 +476417,52.047,64.832 +476418,51.985,63.303 +476419,51.883,61.751 +476420,51.735,60.178 +476421,50.655,64.792 +476422,50.647,63.272 +476423,50.601,61.731 +476424,50.511,60.168 +476425,49.262,64.751 +476426,49.309,63.242 +476427,49.319,61.71 +476428,49.288,60.158 +476429,47.87,64.709 +476430,47.971,63.211 +476431,48.036,61.691 +476432,48.064,60.15 +476433,46.478,64.666 +476434,46.633,63.179 +476435,46.754,61.671 +476436,46.84,60.143 +476437,45.085,64.621 +476438,45.295,63.147 +476439,45.472,61.652 +476440,45.616,60.138 +476441,43.693,64.575 +476442,43.957,63.115 +476443,44.19,61.634 +476444,44.391,60.133 +476445,42.3,64.528 +476446,42.619,63.082 +476447,42.908,61.616 +476448,43.167,60.13 +476449,40.908,64.48 +476450,41.281,63.049 +476451,41.626,61.598 +476452,41.942,60.128 +476453,39.516,64.431 +476454,39.943,63.015 +476455,40.344,61.581 +476456,40.717,60.127 +476457,38.124,64.38 +476458,38.605,62.981 +476459,39.061,61.564 +476460,39.491,60.128 +476461,36.732,64.328 +476462,37.268,62.947 +476463,37.779,61.547 +476464,38.265,60.129 +476465,35.341,64.275 +476466,35.93,62.912 +476467,36.496,61.531 +476468,37.039,60.132 +476469,33.95,64.221 +476470,34.593,62.877 +476471,35.214,61.515 +476472,35.812,60.136 +476473,32.559,64.166 +476474,33.256,62.841 +476475,33.931,61.499 +476476,34.584,60.141 +476477,31.168,64.109 +476478,31.919,62.805 +476479,32.648,61.484 +476480,33.356,60.147 +476481,29.778,64.052 +476482,30.582,62.769 +476483,31.365,61.469 +476484,32.127,60.154 +476485,28.388,63.993 +476486,29.245,62.732 +476487,30.082,61.455 +476488,30.898,60.162 +476489,26.999,63.933 +476490,27.909,62.695 +476491,28.798,61.441 +476492,29.668,60.172 +476493,25.611,63.873 +476494,26.573,62.657 +476495,27.515,61.427 +476496,28.437,60.182 +476497,24.222,63.811 +476498,25.237,62.62 +476499,26.231,61.413 +476500,27.205,60.193 +476501,22.835,63.748 +476502,23.901,62.581 +476503,24.947,61.4 +476504,25.973,60.205 +476505,21.448,63.684 +476506,22.566,62.543 +476507,23.663,61.387 +476508,24.739,60.219 +476509,20.062,63.619 +476510,21.231,62.504 +476511,22.378,61.375 +476512,23.505,60.233 +476513,18.676,63.554 +476514,19.896,62.465 +476515,21.093,61.362 +476516,22.269,60.248 +476517,17.292,63.487 +476518,18.562,62.425 +476519,19.808,61.35 +476520,21.033,60.264 +476521,15.908,63.419 +476522,17.227,62.385 +476523,18.523,61.339 +476524,19.796,60.281 +476525,14.525,63.351 +476526,15.894,62.345 +476527,17.237,61.327 +476528,18.557,60.299 +476529,13.142,63.281 +476530,14.56,62.305 +476531,15.951,61.316 +476532,17.317,60.317 +476533,11.761,63.211 +476534,13.227,62.264 +476535,14.664,61.305 +476536,16.077,60.336 +476537,10.38,63.14 +476538,11.894,62.223 +476539,13.378,61.295 +476540,14.835,60.357 +476541,9.001,63.068 +476542,10.562,62.182 +476543,12.091,61.284 +476544,13.592,60.378 +476545,7.6226,62.995 +476546,9.2296,62.14 +476547,10.803,61.274 +476548,12.347,60.399 +476549,6.2453,62.921 +476550,7.898,62.098 +476551,9.5155,61.264 +476552,11.102,60.422 +476553,4.869,62.847 +476554,6.5668,62.056 +476555,8.2273,61.255 +476556,9.8548,60.445 +476557,3.4938,62.772 +476558,5.236,62.014 +476559,6.9388,61.245 +476560,8.6066,60.468 +476561,2.1198,62.696 +476562,3.9057,61.971 +476563,5.6498,61.236 +476564,7.357,60.493 +476565,0.74705,62.62 +476566,2.5758,61.928 +476567,4.3604,61.227 +476568,6.106,60.518 +476569,359.38,62.543 +476570,1.2464,61.885 +476571,3.0706,61.218 +476572,4.8536,60.543 +476573,358.01,62.465 +476574,359.92,61.842 +476575,1.7803,61.209 +476576,3.5997,60.569 +476577,356.64,62.387 +476578,358.59,61.798 +476579,0.48963,61.201 +476580,2.3445,60.596 +476581,355.27,62.308 +476582,357.26,61.755 +476583,359.2,61.192 +476584,1.0877,60.623 +476585,353.9,62.229 +476586,355.93,61.711 +476587,357.91,61.184 +476588,359.83,60.65 +476589,352.54,62.149 +476590,354.61,61.667 +476591,356.61,61.176 +476592,358.57,60.678 +476593,351.17,62.068 +476594,353.28,61.623 +476595,355.32,61.168 +476596,357.31,60.707 +476597,349.81,61.987 +476598,351.95,61.578 +476599,354.03,61.16 +476600,356.05,60.735 +476601,348.45,61.906 +476602,350.63,61.534 +476603,352.74,61.152 +476604,354.78,60.765 +476605,347.09,61.824 +476606,349.3,61.489 +476607,351.44,61.145 +476608,353.51,60.794 +476609,345.74,61.742 +476610,347.98,61.444 +476611,350.15,61.137 +476612,352.25,60.824 +476613,344.38,61.66 +476614,346.66,61.399 +476615,348.85,61.13 +476616,350.98,60.854 +476617,343.03,61.577 +476618,345.33,61.354 +476619,347.56,61.122 +476620,349.71,60.884 +476621,341.67,61.494 +476622,344.01,61.309 +476623,346.26,61.115 +476624,348.43,60.914 +476625,340.32,61.411 +476626,342.69,61.264 +476627,344.96,61.108 +476628,347.16,60.945 +476629,338.97,61.328 +476630,341.37,61.219 +476631,343.67,61.101 +476632,345.88,60.975 +476633,337.63,61.244 +476634,340.05,61.173 +476635,342.37,61.093 +476636,344.61,61.006 +476637,336.28,61.16 +476638,338.73,61.128 +476639,341.07,61.086 +476640,343.33,61.037 +476641,334.94,61.076 +476642,337.41,61.082 +476643,339.77,61.079 +476644,342.04,61.068 +476645,333.59,60.992 +476646,336.09,61.037 +476647,338.47,61.072 +476648,340.76,61.099 +476649,332.25,60.908 +476650,334.77,60.991 +476651,337.17,61.065 +476652,339.48,61.13 +476653,330.92,60.824 +476654,333.45,60.946 +476655,335.87,61.058 +476656,338.19,61.161 +476657,329.58,60.74 +476658,332.14,60.9 +476659,334.57,61.05 +476660,336.9,61.191 +476661,328.24,60.655 +476662,330.82,60.855 +476663,333.27,61.043 +476664,335.61,61.222 +476665,326.91,60.571 +476666,329.5,60.809 +476667,331.97,61.036 +476668,334.32,61.253 +476669,325.58,60.487 +476670,328.19,60.764 +476671,330.66,61.028 +476672,333.03,61.283 +476673,324.25,60.403 +476674,326.87,60.718 +476675,329.36,61.021 +476676,331.73,61.313 +476677,322.93,60.32 +476678,325.56,60.673 +476679,328.06,61.013 +476680,330.43,61.343 +476681,321.6,60.236 +476682,324.25,60.627 +476683,326.75,61.006 +476684,329.13,61.373 +476685,320.28,60.153 +476686,322.94,60.582 +476687,325.45,60.998 +476688,327.83,61.402 +476689,318.96,60.07 +476690,321.62,60.537 +476691,324.14,60.99 +476692,326.53,61.431 +476693,317.64,59.987 +476694,320.31,60.492 +476695,322.83,60.982 +476696,325.23,61.46 +476697,316.32,59.904 +476698,319,60.447 +476699,321.53,60.974 +476700,323.92,61.489 +476701,315.01,59.822 +476702,317.69,60.402 +476703,320.22,60.966 +476704,322.61,61.516 +476705,313.7,59.74 +476706,316.38,60.357 +476707,318.91,60.958 +476708,321.3,61.544 +476709,312.39,59.659 +476710,315.08,60.312 +476711,317.6,60.949 +476712,319.99,61.571 +476713,311.08,59.578 +476714,313.77,60.268 +476715,316.29,60.94 +476716,318.68,61.598 +476717,309.77,59.497 +476718,312.46,60.223 +476719,314.98,60.931 +476720,317.36,61.624 +476721,308.47,59.417 +476722,311.15,60.179 +476723,313.67,60.922 +476724,316.04,61.649 +476725,307.16,59.338 +476726,309.85,60.135 +476727,312.36,60.913 +476728,314.73,61.674 +476729,305.86,59.259 +476730,308.54,60.091 +476731,311.05,60.904 +476732,313.41,61.699 +476733,304.57,59.18 +476734,307.24,60.047 +476735,309.74,60.894 +476736,312.08,61.722 +476737,303.27,59.103 +476738,305.94,60.004 +476739,308.42,60.884 +476740,310.76,61.746 +476741,301.98,59.025 +476742,304.63,59.96 +476743,307.11,60.874 +476744,309.43,61.768 +476745,300.69,58.949 +476746,303.33,59.917 +476747,305.8,60.863 +476748,308.11,61.79 +476749,299.4,58.873 +476750,302.03,59.874 +476751,304.48,60.853 +476752,306.78,61.811 +476753,298.11,58.798 +476754,300.73,59.832 +476755,303.17,60.842 +476756,305.45,61.831 +476757,296.82,58.724 +476758,299.43,59.789 +476759,301.85,60.831 +476760,304.11,61.85 +476761,295.54,58.65 +476762,298.13,59.747 +476763,300.53,60.819 +476764,302.78,61.869 +476765,294.26,58.577 +476766,296.83,59.705 +476767,299.22,60.807 +476768,301.44,61.887 +476769,292.98,58.506 +476770,295.53,59.663 +476771,297.9,60.795 +476772,300.11,61.904 +476773,291.7,58.435 +476774,294.24,59.622 +476775,296.58,60.783 +476776,298.77,61.92 +476777,290.43,58.364 +476778,292.94,59.581 +476779,295.26,60.77 +476780,297.43,61.935 +476781,289.15,58.295 +476782,291.64,59.54 +476783,293.94,60.757 +476784,296.09,61.949 +476785,287.88,58.227 +476786,290.35,59.499 +476787,292.63,60.744 +476788,294.74,61.962 +476789,286.61,58.159 +476790,289.05,59.459 +476791,291.31,60.73 +476792,293.4,61.975 +476793,285.35,58.093 +476794,287.76,59.419 +476795,289.98,60.716 +476796,292.05,61.986 +476797,284.08,58.028 +476798,286.47,59.38 +476799,288.66,60.702 +476800,290.7,61.997 +476801,282.82,57.963 +476802,285.17,59.34 +476803,287.34,60.687 +476804,289.35,62.006 +476805,281.56,57.9 +476806,283.88,59.302 +476807,286.02,60.672 +476808,288,62.014 +476809,280.3,57.838 +476810,282.59,59.263 +476811,284.7,60.657 +476812,286.65,62.021 +476813,279.04,57.776 +476814,281.3,59.225 +476815,283.37,60.641 +476816,285.29,62.028 +476817,277.78,57.716 +476818,280.01,59.187 +476819,282.05,60.625 +476820,283.94,62.033 +476821,276.53,57.658 +476822,278.72,59.149 +476823,280.73,60.608 +476824,282.58,62.037 +476825,275.28,57.6 +476826,277.43,59.112 +476827,279.4,60.591 +476828,281.22,62.039 +476829,274.03,57.543 +476830,276.14,59.075 +476831,278.08,60.574 +476832,279.86,62.041 +476833,272.78,57.488 +476834,274.85,59.039 +476835,276.75,60.556 +476836,278.5,62.041 +476837,271.53,57.434 +476838,273.56,59.003 +476839,275.43,60.538 +476840,277.14,62.041 +476841,270.28,57.381 +476842,272.28,58.967 +476843,274.1,60.52 +476844,275.78,62.039 +476845,269.04,57.329 +476846,270.99,58.932 +476847,272.77,60.501 +476848,274.41,62.036 +476849,267.8,57.278 +476850,269.7,58.897 +476851,271.44,60.481 +476852,273.05,62.031 +476853,266.56,57.229 +476854,268.42,58.863 +476855,270.12,60.461 +476856,271.68,62.026 +476857,265.32,57.181 +476858,267.13,58.829 +476859,268.79,60.441 +476860,270.31,62.019 +476861,264.08,57.134 +476862,265.85,58.795 +476863,267.46,60.42 +476864,268.94,62.011 +476865,262.84,57.089 +476866,264.56,58.762 +476867,266.13,60.399 +476868,267.57,62.002 +476869,261.61,57.045 +476870,263.28,58.729 +476871,264.8,60.378 +476872,266.2,61.991 +476873,260.37,57.002 +476874,262,58.697 +476875,263.47,60.355 +476876,264.83,61.979 +476877,259.14,56.961 +476878,260.71,58.665 +476879,262.14,60.333 +476880,263.45,61.966 +476881,257.91,56.921 +476882,259.43,58.634 +476883,260.81,60.31 +476884,262.08,61.951 +476885,256.68,56.882 +476886,258.15,58.603 +476887,259.48,60.287 +476888,260.7,61.935 +476889,255.45,56.845 +476890,256.87,58.572 +476891,258.15,60.263 +476892,259.33,61.918 +476893,254.22,56.809 +476894,255.59,58.542 +476895,256.82,60.238 +476896,257.95,61.9 +476897,252.99,56.774 +476898,254.31,58.512 +476899,255.49,60.214 +476900,256.57,61.88 +476901,251.77,56.741 +476902,253.03,58.483 +476903,254.16,60.188 +476904,255.19,61.859 +476905,250.54,56.709 +476906,251.74,58.454 +476907,252.83,60.163 +476908,253.81,61.836 +476909,249.32,56.679 +476910,250.47,58.426 +476911,251.5,60.136 +476912,252.43,61.812 +476913,248.1,56.65 +476914,249.19,58.398 +476915,250.16,60.11 +476916,251.05,61.787 +476917,246.87,56.622 +476918,247.91,58.37 +476919,248.83,60.083 +476920,249.67,61.76 +476921,245.65,56.596 +476922,246.63,58.343 +476923,247.5,60.055 +476924,248.28,61.732 +476925,244.43,56.571 +476926,245.35,58.317 +476927,246.17,60.027 +476928,246.9,61.703 +476929,243.21,56.548 +476930,244.07,58.29 +476931,244.83,59.998 +476932,245.51,61.672 +476933,241.99,56.525 +476934,242.79,58.265 +476935,243.5,59.969 +476936,244.13,61.64 +476937,240.77,56.505 +476938,241.51,58.239 +476939,242.17,59.94 +476940,242.74,61.607 +476941,239.56,56.486 +476942,240.24,58.215 +476943,240.83,59.91 +476944,241.36,61.572 +476945,238.34,56.468 +476946,238.96,58.19 +476947,239.5,59.88 +476948,239.97,61.536 +476949,237.12,56.451 +476950,237.68,58.166 +476951,238.17,59.849 +476952,238.59,61.498 +476953,235.9,56.436 +476954,236.4,58.143 +476955,236.83,59.817 +476956,237.2,61.459 +476957,234.69,56.422 +476958,235.13,58.12 +476959,235.5,59.785 +476960,235.81,61.419 +476961,233.47,56.41 +476962,233.85,58.097 +476963,234.17,59.753 +476964,234.42,61.378 +476965,232.25,56.399 +476966,232.57,58.075 +476967,232.83,59.72 +476968,233.04,61.335 +476969,231.04,56.389 +476970,231.3,58.053 +476971,231.5,59.687 +476972,231.65,61.291 +476973,229.82,56.381 +476974,230.02,58.032 +476975,230.16,59.654 +476976,230.26,61.245 +476977,228.61,56.374 +476978,228.74,58.011 +476979,228.83,59.619 +476980,228.87,61.198 +476981,227.39,56.368 +476982,227.47,57.991 +476983,227.49,59.585 +476984,227.48,61.15 +476985,226.18,56.364 +476986,226.19,57.971 +476987,226.16,59.55 +476988,226.09,61.1 +476989,224.96,56.36 +476990,224.91,57.951 +476991,224.83,59.514 +476992,224.7,61.05 +476993,223.74,56.359 +476994,223.64,57.932 +476995,223.49,59.479 +476996,223.31,60.998 +476997,222.53,56.358 +476998,222.36,57.913 +476999,222.16,59.442 +477000,221.92,60.944 +477001,221.31,56.359 +477002,221.08,57.895 +477003,220.83,59.405 +477004,220.54,60.89 +477005,220.09,56.361 +477006,219.81,57.877 +477007,219.49,59.368 +477008,219.15,60.834 +477009,218.88,56.364 +477010,218.53,57.859 +477011,218.16,59.331 +477012,217.76,60.777 +477013,217.66,56.368 +477014,217.25,57.842 +477015,216.82,59.293 +477016,216.37,60.718 +477017,216.44,56.374 +477018,215.98,57.826 +477019,215.49,59.254 +477020,214.98,60.659 +477021,215.22,56.38 +477022,214.7,57.809 +477023,214.16,59.215 +477024,213.59,60.598 +477025,214,56.388 +477026,213.42,57.793 +477027,212.82,59.176 +477028,212.2,60.536 +477029,212.78,56.397 +477030,212.15,57.777 +477031,211.49,59.136 +477032,210.82,60.473 +477033,211.56,56.408 +477034,210.87,57.762 +477035,210.16,59.096 +477036,209.43,60.409 +477037,210.34,56.419 +477038,209.59,57.747 +477039,208.83,59.056 +477040,208.04,60.344 +477041,209.12,56.431 +477042,208.32,57.733 +477043,207.49,59.015 +477044,206.66,60.277 +477045,207.9,56.444 +477046,207.04,57.718 +477047,206.16,58.974 +477048,205.27,60.209 +477049,206.68,56.459 +477050,205.76,57.705 +477051,204.83,58.932 +477052,203.88,60.141 +477053,205.45,56.474 +477054,204.48,57.691 +477055,203.5,58.89 +477056,202.5,60.071 +477057,204.23,56.491 +477058,203.2,57.678 +477059,202.17,58.848 +477060,201.11,60 +477061,203,56.508 +477062,201.93,57.665 +477063,200.84,58.806 +477064,199.73,59.929 +477065,201.78,56.526 +477066,200.65,57.652 +477067,199.5,58.763 +477068,198.35,59.856 +477069,200.55,56.545 +477070,199.37,57.64 +477071,198.17,58.719 +477072,196.96,59.782 +477073,199.32,56.566 +477074,198.09,57.628 +477075,196.84,58.676 +477076,195.58,59.707 +477077,198.09,56.586 +477078,196.81,57.616 +477079,195.51,58.632 +477080,194.2,59.632 +477081,196.86,56.608 +477082,195.53,57.605 +477083,194.18,58.588 +477084,192.82,59.555 +477085,195.63,56.631 +477086,194.25,57.594 +477087,192.85,58.543 +477088,191.44,59.478 +477089,194.4,56.654 +477090,192.97,57.583 +477091,191.53,58.498 +477092,190.06,59.399 +477093,193.16,56.678 +477094,191.69,57.572 +477095,190.2,58.453 +477096,188.68,59.32 +477097,191.93,56.703 +477098,190.41,57.561 +477099,188.87,58.408 +477100,187.31,59.24 +477101,190.69,56.729 +477102,189.13,57.551 +477103,187.54,58.362 +477104,185.93,59.16 +477105,189.45,56.755 +477106,187.84,57.541 +477107,186.21,58.316 +477108,184.56,59.078 +477109,188.21,56.782 +477110,186.56,57.531 +477111,184.89,58.27 +477112,183.18,58.996 +477113,186.97,56.809 +477114,185.28,57.522 +477115,183.56,58.224 +477116,181.81,58.913 +477117,185.73,56.837 +477118,184,57.513 +477119,182.24,58.177 +477120,180.44,58.829 +477121,184.48,56.866 +477122,182.71,57.503 +477123,180.91,58.13 +477124,179.07,58.745 +477125,183.24,56.895 +477126,181.43,57.494 +477127,179.59,58.083 +477128,177.7,58.66 +477129,181.99,56.925 +477130,180.15,57.485 +477131,178.26,58.036 +477132,176.33,58.575 +477133,180.75,56.955 +477134,178.86,57.477 +477135,176.94,57.989 +477136,174.97,58.489 +477137,179.5,56.985 +477138,177.58,57.468 +477139,175.61,57.941 +477140,173.6,58.402 +477141,178.24,57.016 +477142,176.29,57.46 +477143,174.29,57.893 +477144,172.24,58.315 +477145,176.99,57.048 +477146,175,57.451 +477147,172.97,57.845 +477148,170.88,58.227 +477149,175.74,57.079 +477150,173.72,57.443 +477151,171.65,57.797 +477152,169.52,58.14 +477153,174.48,57.111 +477154,172.43,57.435 +477155,170.32,57.749 +477156,168.16,58.051 +477157,173.22,57.143 +477158,171.14,57.427 +477159,169,57.701 +477160,166.8,57.962 +477161,171.96,57.176 +477162,169.85,57.419 +477163,167.68,57.652 +477164,165.44,57.873 +477165,170.7,57.209 +477166,168.57,57.411 +477167,166.36,57.604 +477168,164.09,57.784 +477169,169.44,57.241 +477170,167.28,57.404 +477171,165.05,57.555 +477172,162.73,57.694 +477173,168.18,57.274 +477174,165.99,57.396 +477175,163.73,57.507 +477176,161.38,57.604 +477177,166.91,57.308 +477178,164.7,57.388 +477179,162.41,57.458 +477180,160.03,57.514 +477181,165.64,57.341 +477182,163.41,57.381 +477183,161.09,57.409 +477184,158.69,57.423 +477185,164.37,57.374 +477186,162.12,57.373 +477187,159.78,57.36 +477188,157.34,57.333 +477189,163.1,57.407 +477190,160.82,57.365 +477191,158.46,57.311 +477192,155.99,57.242 +477193,161.83,57.44 +477194,159.53,57.358 +477195,157.14,57.262 +477196,154.65,57.151 +477197,160.55,57.474 +477198,158.24,57.35 +477199,155.83,57.213 +477200,153.31,57.061 +477201,159.28,57.507 +477202,156.95,57.342 +477203,154.52,57.164 +477204,151.97,56.97 +477205,158,57.54 +477206,155.65,57.335 +477207,153.2,57.115 +477208,150.63,56.879 +477209,156.72,57.573 +477210,154.36,57.327 +477211,151.89,57.066 +477212,149.3,56.788 +477213,155.44,57.605 +477214,153.06,57.319 +477215,150.58,57.017 +477216,147.96,56.698 +477217,154.15,57.638 +477218,151.77,57.311 +477219,149.27,56.968 +477220,146.63,56.607 +477221,152.87,57.67 +477222,150.47,57.303 +477223,147.96,56.92 +477224,145.3,56.517 +477225,151.58,57.702 +477226,149.17,57.295 +477227,146.65,56.871 +477228,143.98,56.426 +477229,150.29,57.734 +477230,147.88,57.287 +477231,145.34,56.822 +477232,142.65,56.336 +477233,149,57.765 +477234,146.58,57.279 +477235,144.03,56.774 +477236,141.33,56.247 +477237,147.71,57.796 +477238,145.28,57.27 +477239,142.72,56.725 +477240,140,56.157 +477241,146.41,57.827 +477242,143.98,57.262 +477243,141.41,56.677 +477244,138.68,56.068 +477245,145.12,57.857 +477246,142.68,57.253 +477247,140.11,56.628 +477248,137.37,55.979 +477249,143.82,57.886 +477250,141.38,57.244 +477251,138.8,56.58 +477252,136.05,55.891 +477253,142.52,57.916 +477254,140.08,57.235 +477255,137.5,56.532 +477256,134.74,55.803 +477257,141.21,57.944 +477258,138.78,57.226 +477259,136.19,56.484 +477260,133.43,55.715 +477261,139.91,57.972 +477262,137.48,57.217 +477263,134.89,56.436 +477264,132.12,55.628 +477265,138.61,58 +477266,136.17,57.207 +477267,133.58,56.389 +477268,130.81,55.542 +477269,137.3,58.027 +477270,134.87,57.197 +477271,132.28,56.341 +477272,129.51,55.456 +477273,135.99,58.053 +477274,133.57,57.187 +477275,130.98,56.294 +477276,128.2,55.37 +477277,134.68,58.079 +477278,132.26,57.177 +477279,129.68,56.247 +477280,126.9,55.286 +477281,133.36,58.104 +477282,130.96,57.167 +477283,128.38,56.201 +477284,125.61,55.201 +477285,132.05,58.128 +477286,129.65,57.156 +477287,127.08,56.154 +477288,124.31,55.118 +477289,130.73,58.152 +477290,128.34,57.145 +477291,125.78,56.108 +477292,123.02,55.035 +477293,129.42,58.174 +477294,127.04,57.134 +477295,124.48,56.062 +477296,121.72,54.953 +477297,128.1,58.196 +477298,125.73,57.123 +477299,123.19,56.016 +477300,120.43,54.872 +477301,126.77,58.218 +477302,124.42,57.111 +477303,121.89,55.97 +477304,119.15,54.792 +477305,125.45,58.238 +477306,123.11,57.099 +477307,120.6,55.925 +477308,117.86,54.712 +477309,124.13,58.257 +477310,121.8,57.086 +477311,119.3,55.88 +477312,116.58,54.634 +477313,122.8,58.276 +477314,120.49,57.074 +477315,118.01,55.835 +477316,115.3,54.556 +477317,121.47,58.293 +477318,119.18,57.061 +477319,116.71,55.791 +477320,114.02,54.479 +477321,120.14,58.31 +477322,117.87,57.048 +477323,115.42,55.747 +477324,112.74,54.403 +477325,118.81,58.326 +477326,116.56,57.034 +477327,114.13,55.703 +477328,111.47,54.328 +477329,117.48,58.34 +477330,115.25,57.02 +477331,112.84,55.659 +477332,110.2,54.254 +477333,116.14,58.354 +477334,113.94,57.006 +477335,111.55,55.616 +477336,108.93,54.181 +477337,114.81,58.367 +477338,112.62,56.991 +477339,110.26,55.574 +477340,107.66,54.11 +477341,113.47,58.378 +477342,111.31,56.976 +477343,108.97,55.531 +477344,106.39,54.039 +477345,112.13,58.388 +477346,110,56.961 +477347,107.68,55.489 +477348,105.13,53.969 +477349,110.79,58.398 +477350,108.68,56.945 +477351,106.39,55.447 +477352,103.87,53.901 +477353,109.44,58.406 +477354,107.37,56.929 +477355,105.1,55.406 +477356,102.61,53.834 +477357,108.1,58.413 +477358,106.05,56.912 +477359,103.81,55.365 +477360,101.35,53.768 +477361,106.75,58.419 +477362,104.73,56.895 +477363,102.53,55.325 +477364,100.1,53.703 +477365,105.41,58.424 +477366,103.42,56.878 +477367,101.24,55.284 +477368,98.844,53.639 +477369,104.06,58.427 +477370,102.1,56.86 +477371,99.959,55.245 +477372,97.592,53.577 +477373,102.71,58.43 +477374,100.78,56.842 +477375,98.675,55.205 +477376,96.343,53.516 +477377,101.36,58.431 +477378,99.466,56.823 +477379,97.391,55.166 +477380,95.095,53.456 +477381,100.01,58.431 +477382,98.147,56.804 +477383,96.108,55.128 +477384,93.849,53.397 +477385,98.652,58.429 +477386,96.828,56.784 +477387,94.826,55.09 +477388,92.606,53.34 +477389,97.297,58.426 +477390,95.509,56.765 +477391,93.544,55.052 +477392,91.364,53.284 +477393,95.94,58.422 +477394,94.189,56.744 +477395,92.263,55.015 +477396,90.123,53.23 +477397,94.582,58.417 +477398,92.869,56.723 +477399,90.982,54.978 +477400,88.885,53.177 +477401,93.224,58.41 +477402,91.548,56.702 +477403,89.702,54.942 +477404,87.648,53.125 +477405,91.863,58.402 +477406,90.227,56.68 +477407,88.423,54.906 +477408,86.413,53.075 +477409,90.502,58.393 +477410,88.906,56.658 +477411,87.144,54.871 +477412,85.18,53.026 +477413,89.14,58.382 +477414,87.584,56.635 +477415,85.865,54.836 +477416,83.948,52.979 +477417,87.776,58.37 +477418,86.262,56.612 +477419,84.587,54.801 +477420,82.718,52.933 +477421,86.411,58.357 +477422,84.94,56.589 +477423,83.31,54.767 +477424,81.489,52.889 +477425,85.045,58.342 +477426,83.617,56.564 +477427,82.033,54.734 +477428,80.262,52.846 +477429,83.679,58.326 +477430,82.294,56.54 +477431,80.757,54.701 +477432,79.036,52.804 +477433,82.311,58.308 +477434,80.97,56.515 +477435,79.481,54.668 +477436,77.812,52.764 +477437,80.942,58.289 +477438,79.646,56.489 +477439,78.205,54.636 +477440,76.589,52.726 +477441,79.572,58.268 +477442,78.322,56.463 +477443,76.93,54.605 +477444,75.367,52.689 +477445,78.202,58.246 +477446,76.998,56.437 +477447,75.655,54.574 +477448,74.147,52.654 +477449,76.83,58.223 +477450,75.673,56.409 +477451,74.381,54.543 +477452,72.928,52.62 +477453,75.458,58.198 +477454,74.348,56.382 +477455,73.107,54.513 +477456,71.709,52.587 +477457,74.084,58.172 +477458,73.023,56.354 +477459,71.834,54.483 +477460,70.493,52.557 +477461,72.71,58.144 +477462,71.697,56.325 +477463,70.561,54.454 +477464,69.277,52.527 +477465,71.335,58.115 +477466,70.372,56.296 +477467,69.288,54.426 +477468,68.062,52.499 +477469,69.96,58.085 +477470,69.046,56.267 +477471,68.016,54.398 +477472,66.848,52.473 +477473,68.584,58.053 +477474,67.72,56.237 +477475,66.744,54.37 +477476,65.635,52.449 +477477,67.207,58.019 +477478,66.393,56.206 +477479,65.472,54.343 +477480,64.423,52.425 +477481,65.829,57.984 +477482,65.067,56.175 +477483,64.201,54.316 +477484,63.211,52.404 +477485,64.451,57.948 +477486,63.74,56.144 +477487,62.93,54.29 +477488,62.001,52.384 +477489,63.072,57.91 +477490,62.414,56.112 +477491,61.659,54.264 +477492,60.791,52.365 +477493,61.693,57.87 +477494,61.087,56.079 +477495,60.388,54.239 +477496,59.582,52.348 +477497,60.313,57.83 +477498,59.76,56.046 +477499,59.118,54.215 +477500,58.373,52.333 +477501,58.933,57.787 +477502,58.432,56.013 +477503,57.848,54.191 +477504,57.165,52.319 +477505,57.553,57.744 +477506,57.105,55.979 +477507,56.578,54.167 +477508,55.957,52.306 +477509,56.172,57.699 +477510,55.778,55.944 +477511,55.308,54.144 +477512,54.75,52.295 +477513,54.79,57.652 +477514,54.45,55.909 +477515,54.038,54.121 +477516,53.543,52.286 +477517,53.409,57.604 +477518,53.123,55.874 +477519,52.769,54.099 +477520,52.336,52.278 +477521,52.027,57.555 +477522,51.795,55.838 +477523,51.5,54.077 +477524,51.13,52.271 +477525,50.644,57.504 +477526,50.468,55.801 +477527,50.231,54.056 +477528,49.924,52.266 +477529,49.262,57.452 +477530,49.14,55.764 +477531,48.962,54.035 +477532,48.718,52.262 +477533,47.879,57.398 +477534,47.813,55.727 +477535,47.693,54.015 +477536,47.512,52.26 +477537,46.496,57.343 +477538,46.485,55.689 +477539,46.424,53.995 +477540,46.306,52.259 +477541,45.113,57.287 +477542,45.157,55.651 +477543,45.155,53.975 +477544,45.101,52.26 +477545,43.731,57.229 +477546,43.83,55.612 +477547,43.887,53.956 +477548,43.895,52.262 +477549,42.348,57.17 +477550,42.502,55.573 +477551,42.618,53.938 +477552,42.689,52.265 +477553,40.965,57.11 +477554,41.175,55.533 +477555,41.349,53.92 +477556,41.482,52.27 +477557,39.582,57.048 +477558,39.848,55.493 +477559,40.081,53.902 +477560,40.276,52.276 +477561,38.199,56.985 +477562,38.52,55.452 +477563,38.812,53.885 +477564,39.069,52.283 +477565,36.816,56.921 +477566,37.193,55.411 +477567,37.543,53.868 +477568,37.862,52.292 +477569,35.433,56.855 +477570,35.866,55.37 +477571,36.274,53.852 +477572,36.655,52.302 +477573,34.051,56.788 +477574,34.54,55.328 +477575,35.006,53.836 +477576,35.447,52.313 +477577,32.669,56.72 +477578,33.213,55.286 +477579,33.737,53.821 +477580,34.239,52.325 +477581,31.287,56.651 +477582,31.886,55.243 +477583,32.468,53.806 +477584,33.03,52.339 +477585,29.905,56.58 +477586,30.56,55.2 +477587,31.199,53.791 +477588,31.82,52.353 +477589,28.524,56.509 +477590,29.234,55.156 +477591,29.93,53.777 +477592,30.61,52.369 +477593,27.143,56.436 +477594,27.908,55.113 +477595,28.66,53.763 +477596,29.399,52.386 +477597,25.762,56.362 +477598,26.582,55.068 +477599,27.391,53.749 +477600,28.188,52.405 +477601,24.382,56.286 +477602,25.257,55.024 +477603,26.121,53.736 +477604,26.975,52.424 +477605,23.003,56.21 +477606,23.932,54.979 +477607,24.851,53.723 +477608,25.762,52.444 +477609,21.624,56.133 +477610,22.607,54.933 +477611,23.581,53.711 +477612,24.548,52.466 +477613,20.245,56.054 +477614,21.282,54.888 +477615,22.311,53.699 +477616,23.333,52.488 +477617,18.867,55.975 +477618,19.958,54.841 +477619,21.041,53.687 +477620,22.117,52.512 +477621,17.49,55.894 +477622,18.634,54.795 +477623,19.77,53.675 +477624,20.9,52.536 +477625,16.114,55.812 +477626,17.31,54.748 +477627,18.499,53.664 +477628,19.683,52.561 +477629,14.738,55.73 +477630,15.986,54.701 +477631,17.228,53.653 +477632,18.464,52.587 +477633,13.363,55.646 +477634,14.663,54.654 +477635,15.957,53.643 +477636,17.243,52.614 +477637,11.989,55.562 +477638,13.341,54.606 +477639,14.685,53.632 +477640,16.022,52.642 +477641,10.615,55.477 +477642,12.018,54.558 +477643,13.413,53.622 +477644,14.8,52.671 +477645,9.2426,55.39 +477646,10.696,54.51 +477647,12.14,53.613 +477648,13.576,52.7 +477649,7.871,55.303 +477650,9.3748,54.461 +477651,10.868,53.603 +477652,12.351,52.731 +477653,6.5003,55.215 +477654,8.0537,54.413 +477655,9.5946,53.594 +477656,11.125,52.761 +477657,5.1306,55.127 +477658,6.733,54.363 +477659,8.3213,53.585 +477660,9.8971,52.793 +477661,3.762,55.037 +477662,5.4128,54.314 +477663,7.0475,53.576 +477664,8.6681,52.825 +477665,2.3944,54.947 +477666,4.093,54.265 +477667,5.7734,53.568 +477668,7.4378,52.858 +477669,1.0279,54.856 +477670,2.7736,54.215 +477671,4.4989,53.559 +477672,6.206,52.892 +477673,359.66,54.765 +477674,1.4548,54.165 +477675,3.224,53.551 +477676,4.9727,52.926 +477677,358.3,54.672 +477678,0.13639,54.115 +477679,1.9486,53.543 +477680,3.738,52.96 +477681,356.94,54.58 +477682,358.82,54.064 +477683,0.6729,53.536 +477684,2.5017,52.995 +477685,355.57,54.486 +477686,357.5,54.014 +477687,359.4,53.528 +477688,1.2639,53.031 +477689,354.21,54.392 +477690,356.18,53.963 +477691,358.12,53.521 +477692,0.024544,53.066 +477693,352.85,54.298 +477694,354.87,53.912 +477695,356.84,53.513 +477696,358.78,53.103 +477697,351.5,54.203 +477698,353.55,53.861 +477699,355.57,53.506 +477700,357.54,53.139 +477701,350.14,54.108 +477702,352.24,53.81 +477703,354.29,53.499 +477704,356.3,53.176 +477705,348.79,54.012 +477706,350.92,53.759 +477707,353.01,53.492 +477708,355.05,53.213 +477709,347.43,53.916 +477710,349.61,53.707 +477711,351.73,53.485 +477712,353.8,53.251 +477713,346.08,53.819 +477714,348.29,53.656 +477715,350.45,53.478 +477716,352.55,53.288 +477717,344.73,53.722 +477718,346.98,53.604 +477719,349.17,53.472 +477720,351.3,53.326 +477721,343.38,53.625 +477722,345.67,53.553 +477723,347.89,53.465 +477724,350.05,53.364 +477725,342.03,53.528 +477726,344.36,53.501 +477727,346.61,53.458 +477728,348.8,53.402 +477729,340.69,53.43 +477730,343.05,53.449 +477731,345.33,53.452 +477732,347.54,53.44 +477733,339.34,53.333 +477734,341.74,53.398 +477735,344.05,53.445 +477736,346.28,53.479 +477737,338,53.235 +477738,340.43,53.346 +477739,342.76,53.439 +477740,345.02,53.517 +477741,336.66,53.137 +477742,339.12,53.294 +477743,341.48,53.432 +477744,343.76,53.555 +477745,335.32,53.039 +477746,337.81,53.242 +477747,340.2,53.426 +477748,342.5,53.593 +477749,333.99,52.941 +477750,336.5,53.19 +477751,338.91,53.419 +477752,341.23,53.631 +477753,332.65,52.843 +477754,335.19,53.138 +477755,337.63,53.413 +477756,339.97,53.669 +477757,331.32,52.745 +477758,333.89,53.087 +477759,336.34,53.406 +477760,338.7,53.707 +477761,329.99,52.647 +477762,332.58,53.035 +477763,335.06,53.399 +477764,337.43,53.744 +477765,328.66,52.55 +477766,331.28,52.983 +477767,333.77,53.393 +477768,336.15,53.781 +477769,327.33,52.452 +477770,329.97,52.932 +477771,332.48,53.386 +477772,334.88,53.818 +477773,326,52.355 +477774,328.67,52.88 +477775,331.2,53.379 +477776,333.6,53.855 +477777,324.68,52.258 +477778,327.37,52.829 +477779,329.91,53.372 +477780,332.33,53.891 +477781,323.36,52.161 +477782,326.06,52.777 +477783,328.62,53.365 +477784,331.05,53.927 +477785,322.04,52.065 +477786,324.76,52.726 +477787,327.33,53.358 +477788,329.76,53.963 +477789,320.72,51.968 +477790,323.46,52.675 +477791,326.04,53.35 +477792,328.48,53.998 +477793,319.41,51.873 +477794,322.16,52.624 +477795,324.75,53.343 +477796,327.2,54.033 +477797,318.09,51.777 +477798,320.86,52.573 +477799,323.46,53.335 +477800,325.91,54.067 +477801,316.78,51.683 +477802,319.56,52.523 +477803,322.17,53.327 +477804,324.62,54.1 +477805,315.47,51.588 +477806,318.27,52.472 +477807,320.87,53.319 +477808,323.33,54.133 +477809,314.17,51.494 +477810,316.97,52.422 +477811,319.58,53.311 +477812,322.04,54.166 +477813,312.86,51.401 +477814,315.67,52.372 +477815,318.29,53.302 +477816,320.74,54.198 +477817,311.56,51.309 +477818,314.38,52.322 +477819,316.99,53.294 +477820,319.44,54.229 +477821,310.26,51.217 +477822,313.08,52.272 +477823,315.7,53.285 +477824,318.15,54.259 +477825,308.96,51.126 +477826,311.79,52.223 +477827,314.4,53.276 +477828,316.85,54.289 +477829,307.67,51.035 +477830,310.5,52.174 +477831,313.11,53.266 +477832,315.54,54.318 +477833,306.37,50.945 +477834,309.2,52.125 +477835,311.81,53.257 +477836,314.24,54.346 +477837,305.08,50.856 +477838,307.91,52.077 +477839,310.52,53.247 +477840,312.94,54.374 +477841,303.79,50.768 +477842,306.62,52.028 +477843,309.22,53.237 +477844,311.63,54.4 +477845,302.51,50.681 +477846,305.33,51.98 +477847,307.92,53.226 +477848,310.32,54.426 +477849,301.22,50.595 +477850,304.04,51.933 +477851,306.62,53.216 +477852,309.01,54.451 +477853,299.94,50.509 +477854,302.75,51.885 +477855,305.32,53.205 +477856,307.7,54.475 +477857,298.66,50.425 +477858,301.46,51.838 +477859,304.02,53.193 +477860,306.38,54.497 +477861,297.38,50.341 +477862,300.18,51.791 +477863,302.72,53.182 +477864,305.07,54.519 +477865,296.11,50.259 +477866,298.89,51.745 +477867,301.42,53.17 +477868,303.75,54.54 +477869,294.84,50.178 +477870,297.6,51.699 +477871,300.12,53.157 +477872,302.43,54.56 +477873,293.57,50.097 +477874,296.32,51.653 +477875,298.82,53.145 +477876,301.11,54.579 +477877,292.3,50.018 +477878,295.04,51.608 +477879,297.52,53.132 +477880,299.79,54.597 +477881,291.03,49.94 +477882,293.75,51.563 +477883,296.21,53.118 +477884,298.46,54.614 +477885,289.77,49.864 +477886,292.47,51.518 +477887,294.91,53.104 +477888,297.14,54.629 +477889,288.51,49.788 +477890,291.19,51.474 +477891,293.61,53.09 +477892,295.81,54.644 +477893,287.25,49.714 +477894,289.91,51.431 +477895,292.3,53.076 +477896,294.48,54.657 +477897,285.99,49.641 +477898,288.63,51.387 +477899,291,53.061 +477900,293.15,54.669 +477901,284.73,49.569 +477902,287.35,51.345 +477903,289.69,53.045 +477904,291.82,54.68 +477905,283.48,49.499 +477906,286.07,51.302 +477907,288.38,53.029 +477908,290.49,54.69 +477909,282.23,49.43 +477910,284.79,51.26 +477911,287.08,53.013 +477912,289.15,54.698 +477913,280.98,49.362 +477914,283.51,51.219 +477915,285.77,52.996 +477916,287.81,54.705 +477917,279.74,49.296 +477918,282.23,51.178 +477919,284.46,52.979 +477920,286.48,54.711 +477921,278.49,49.231 +477922,280.96,51.137 +477923,283.15,52.962 +477924,285.14,54.716 +477925,277.25,49.168 +477926,279.68,51.097 +477927,281.85,52.944 +477928,283.8,54.719 +477929,276.01,49.106 +477930,278.41,51.057 +477931,280.54,52.925 +477932,282.45,54.721 +477933,274.77,49.046 +477934,277.13,51.018 +477935,279.23,52.906 +477936,281.11,54.721 +477937,273.53,48.987 +477938,275.86,50.98 +477939,277.92,52.887 +477940,279.77,54.72 +477941,272.3,48.93 +477942,274.58,50.941 +477943,276.61,52.867 +477944,278.42,54.718 +477945,271.07,48.874 +477946,273.31,50.904 +477947,275.3,52.847 +477948,277.07,54.714 +477949,269.84,48.82 +477950,272.04,50.867 +477951,273.98,52.826 +477952,275.73,54.709 +477953,268.61,48.768 +477954,270.77,50.83 +477955,272.67,52.805 +477956,274.38,54.703 +477957,267.38,48.717 +477958,269.5,50.794 +477959,271.36,52.783 +477960,273.02,54.695 +477961,266.16,48.668 +477962,268.23,50.758 +477963,270.05,52.761 +477964,271.67,54.685 +477965,264.94,48.62 +477966,266.96,50.723 +477967,268.74,52.738 +477968,270.32,54.674 +477969,263.71,48.574 +477970,265.69,50.689 +477971,267.42,52.715 +477972,268.97,54.662 +477973,262.49,48.53 +477974,264.42,50.655 +477975,266.11,52.691 +477976,267.61,54.648 +477977,261.28,48.487 +477978,263.15,50.622 +477979,264.8,52.667 +477980,266.25,54.633 +477981,260.06,48.446 +477982,261.88,50.589 +477983,263.48,52.642 +477984,264.9,54.616 +477985,258.84,48.407 +477986,260.62,50.556 +477987,262.17,52.616 +477988,263.54,54.597 +477989,257.63,48.37 +477990,259.35,50.525 +477991,260.85,52.591 +477992,262.18,54.577 +477993,256.42,48.334 +477994,258.09,50.494 +477995,259.54,52.564 +477996,260.82,54.556 +477997,255.21,48.3 +477998,256.82,50.463 +477999,258.22,52.537 +478000,259.46,54.533 +478001,254,48.268 +478002,255.56,50.433 +478003,256.91,52.51 +478004,258.1,54.508 +478005,252.79,48.237 +478006,254.29,50.403 +478007,255.59,52.482 +478008,256.73,54.482 +478009,251.58,48.208 +478010,253.03,50.374 +478011,254.28,52.453 +478012,255.37,54.455 +478013,250.38,48.181 +478014,251.76,50.346 +478015,252.96,52.424 +478016,254,54.426 +478017,249.17,48.156 +478018,250.5,50.318 +478019,251.64,52.395 +478020,252.64,54.395 +478021,247.97,48.132 +478022,249.24,50.291 +478023,250.33,52.365 +478024,251.27,54.362 +478025,246.77,48.11 +478026,247.97,50.264 +478027,249.01,52.334 +478028,249.91,54.329 +478029,245.57,48.09 +478030,246.71,50.238 +478031,247.69,52.303 +478032,248.54,54.293 +478033,244.37,48.071 +478034,245.45,50.213 +478035,246.37,52.272 +478036,247.17,54.256 +478037,243.17,48.055 +478038,244.19,50.188 +478039,245.06,52.239 +478040,245.8,54.218 +478041,241.97,48.04 +478042,242.93,50.163 +478043,243.74,52.207 +478044,244.43,54.178 +478045,240.77,48.026 +478046,241.67,50.14 +478047,242.42,52.173 +478048,243.07,54.136 +478049,239.57,48.015 +478050,240.4,50.116 +478051,241.1,52.14 +478052,241.7,54.093 +478053,238.38,48.005 +478054,239.14,50.093 +478055,239.79,52.105 +478056,240.33,54.048 +478057,237.18,47.997 +478058,237.88,50.071 +478059,238.47,52.071 +478060,238.95,54.002 +478061,235.98,47.99 +478062,236.62,50.05 +478063,237.15,52.035 +478064,237.58,53.954 +478065,234.79,47.985 +478066,235.36,50.029 +478067,235.83,52 +478068,236.21,53.904 +478069,233.59,47.982 +478070,234.1,50.008 +478071,234.51,51.963 +478072,234.84,53.853 +478073,232.4,47.98 +478074,232.85,49.988 +478075,233.2,51.926 +478076,233.47,53.801 +478077,231.2,47.98 +478078,231.59,49.969 +478079,231.88,51.889 +478080,232.1,53.747 +478081,230.01,47.982 +478082,230.33,49.95 +478083,230.56,51.851 +478084,230.72,53.692 +478085,228.82,47.985 +478086,229.07,49.931 +478087,229.24,51.813 +478088,229.35,53.635 +478089,227.62,47.99 +478090,227.81,49.914 +478091,227.92,51.774 +478092,227.98,53.576 +478093,226.43,47.996 +478094,226.55,49.896 +478095,226.61,51.735 +478096,226.6,53.517 +478097,225.23,48.004 +478098,225.29,49.879 +478099,225.29,51.695 +478100,225.23,53.455 +478101,224.04,48.014 +478102,224.03,49.863 +478103,223.97,51.655 +478104,223.86,53.393 +478105,222.84,48.025 +478106,222.77,49.847 +478107,222.65,51.614 +478108,222.49,53.328 +478109,221.65,48.037 +478110,221.52,49.832 +478111,221.33,51.573 +478112,221.11,53.263 +478113,220.46,48.051 +478114,220.26,49.817 +478115,220.02,51.531 +478116,219.74,53.196 +478117,219.26,48.066 +478118,219,49.803 +478119,218.7,51.489 +478120,218.37,53.127 +478121,218.06,48.083 +478122,217.74,49.789 +478123,217.38,51.446 +478124,216.99,53.058 +478125,216.87,48.101 +478126,216.48,49.776 +478127,216.06,51.403 +478128,215.62,52.986 +478129,215.67,48.12 +478130,215.22,49.763 +478131,214.75,51.36 +478132,214.25,52.914 +478133,214.47,48.141 +478134,213.96,49.75 +478135,213.43,51.316 +478136,212.88,52.84 +478137,213.28,48.163 +478138,212.7,49.738 +478139,212.11,51.272 +478140,211.51,52.765 +478141,212.08,48.186 +478142,211.44,49.727 +478143,210.8,51.227 +478144,210.14,52.689 +478145,210.88,48.211 +478146,210.19,49.715 +478147,209.48,51.182 +478148,208.77,52.611 +478149,209.68,48.237 +478150,208.93,49.705 +478151,208.16,51.136 +478152,207.39,52.532 +478153,208.48,48.264 +478154,207.67,49.694 +478155,206.85,51.09 +478156,206.02,52.452 +478157,207.28,48.292 +478158,206.41,49.685 +478159,205.53,51.044 +478160,204.66,52.371 +478161,206.08,48.321 +478162,205.15,49.675 +478163,204.22,50.998 +478164,203.29,52.289 +478165,204.87,48.351 +478166,203.89,49.666 +478167,202.9,50.95 +478168,201.92,52.205 +478169,203.67,48.383 +478170,202.63,49.657 +478171,201.59,50.903 +478172,200.55,52.12 +478173,202.46,48.415 +478174,201.37,49.649 +478175,200.27,50.855 +478176,199.18,52.035 +478177,201.26,48.449 +478178,200.11,49.641 +478179,198.96,50.807 +478180,197.82,51.948 +478181,200.05,48.483 +478182,198.85,49.633 +478183,197.65,50.759 +478184,196.45,51.86 +478185,198.84,48.518 +478186,197.58,49.626 +478187,196.33,50.71 +478188,195.09,51.771 +478189,197.63,48.555 +478190,196.32,49.619 +478191,195.02,50.661 +478192,193.72,51.681 +478193,196.42,48.592 +478194,195.06,49.612 +478195,193.71,50.612 +478196,192.36,51.59 +478197,195.21,48.63 +478198,193.8,49.606 +478199,192.4,50.562 +478200,191,51.498 +478201,193.99,48.668 +478202,192.54,49.6 +478203,191.08,50.512 +478204,189.63,51.406 +478205,192.78,48.708 +478206,191.27,49.594 +478207,189.77,50.462 +478208,188.27,51.312 +478209,191.56,48.748 +478210,190.01,49.588 +478211,188.46,50.412 +478212,186.91,51.218 +478213,190.34,48.789 +478214,188.75,49.583 +478215,187.15,50.361 +478216,185.56,51.123 +478217,189.12,48.831 +478218,187.48,49.578 +478219,185.84,50.31 +478220,184.2,51.027 +478221,187.9,48.873 +478222,186.22,49.573 +478223,184.53,50.259 +478224,182.84,50.93 +478225,186.68,48.915 +478226,184.96,49.569 +478227,183.22,50.208 +478228,181.49,50.832 +478229,185.46,48.959 +478230,183.69,49.564 +478231,181.92,50.157 +478232,180.13,50.734 +478233,184.23,49.002 +478234,182.43,49.56 +478235,180.61,50.105 +478236,178.78,50.635 +478237,183,49.047 +478238,181.16,49.556 +478239,179.3,50.053 +478240,177.43,50.536 +478241,181.77,49.091 +478242,179.89,49.552 +478243,177.99,50.001 +478244,176.08,50.436 +478245,180.54,49.136 +478246,178.63,49.549 +478247,176.69,49.949 +478248,174.73,50.335 +478249,179.31,49.182 +478250,177.36,49.545 +478251,175.38,49.897 +478252,173.38,50.234 +478253,178.08,49.227 +478254,176.09,49.542 +478255,174.08,49.844 +478256,172.03,50.133 +478257,176.84,49.273 +478258,174.82,49.539 +478259,172.77,49.792 +478260,170.69,50.031 +478261,175.61,49.32 +478262,173.56,49.536 +478263,171.47,49.739 +478264,169.35,49.929 +478265,174.37,49.366 +478266,172.29,49.533 +478267,170.17,49.687 +478268,168,49.826 +478269,173.13,49.413 +478270,171.02,49.53 +478271,168.86,49.634 +478272,166.66,49.723 +478273,171.88,49.459 +478274,169.75,49.527 +478275,167.56,49.581 +478276,165.32,49.62 +478277,170.64,49.506 +478278,168.48,49.524 +478279,166.26,49.528 +478280,163.99,49.516 +478281,169.39,49.553 +478282,167.21,49.521 +478283,164.96,49.475 +478284,162.65,49.412 +478285,168.15,49.6 +478286,165.93,49.519 +478287,163.66,49.422 +478288,161.32,49.308 +478289,166.9,49.646 +478290,164.66,49.516 +478291,162.36,49.369 +478292,159.99,49.204 +478293,165.64,49.693 +478294,163.39,49.513 +478295,161.06,49.317 +478296,158.65,49.1 +478297,164.39,49.74 +478298,162.12,49.511 +478299,159.76,49.264 +478300,157.33,48.996 +478301,163.14,49.786 +478302,160.84,49.508 +478303,158.47,49.211 +478304,156,48.892 +478305,161.88,49.832 +478306,159.57,49.505 +478307,157.17,49.158 +478308,154.67,48.788 +478309,160.62,49.879 +478310,158.29,49.503 +478311,155.87,49.105 +478312,153.35,48.684 +478313,159.36,49.924 +478314,157.02,49.5 +478315,154.58,49.053 +478316,152.03,48.58 +478317,158.1,49.97 +478318,155.74,49.497 +478319,153.28,49 +478320,150.71,48.476 +478321,156.83,50.015 +478322,154.47,49.494 +478323,151.99,48.948 +478324,149.39,48.372 +478325,155.57,50.06 +478326,153.19,49.491 +478327,150.7,48.895 +478328,148.08,48.269 +478329,154.3,50.104 +478330,151.91,49.488 +478331,149.41,48.843 +478332,146.76,48.166 +478333,153.03,50.148 +478334,150.63,49.485 +478335,148.11,48.791 +478336,145.45,48.063 +478337,151.76,50.192 +478338,149.35,49.482 +478339,146.82,48.739 +478340,144.14,47.961 +478341,150.48,50.235 +478342,148.07,49.478 +478343,145.53,48.687 +478344,142.83,47.859 +478345,149.21,50.277 +478346,146.79,49.474 +478347,144.24,48.636 +478348,141.53,47.757 +478349,147.93,50.319 +478350,145.51,49.471 +478351,142.95,48.585 +478352,140.22,47.656 +478353,146.65,50.36 +478354,144.23,49.467 +478355,141.67,48.533 +478356,138.92,47.556 +478357,145.37,50.401 +478358,142.95,49.462 +478359,140.38,48.483 +478360,137.62,47.456 +478361,144.08,50.441 +478362,141.67,49.458 +478363,139.09,48.432 +478364,136.33,47.357 +478365,142.8,50.48 +478366,140.39,49.454 +478367,137.81,48.381 +478368,135.03,47.258 +478369,141.51,50.519 +478370,139.1,49.449 +478371,136.52,48.331 +478372,133.74,47.16 +478373,140.22,50.557 +478374,137.82,49.444 +478375,135.24,48.281 +478376,132.45,47.063 +478377,138.93,50.593 +478378,136.53,49.438 +478379,133.96,48.232 +478380,131.16,46.967 +478381,137.64,50.63 +478382,135.25,49.433 +478383,132.67,48.183 +478384,129.88,46.871 +478385,136.35,50.665 +478386,133.96,49.427 +478387,131.39,48.134 +478388,128.59,46.777 +478389,135.05,50.699 +478390,132.68,49.421 +478391,130.11,48.085 +478392,127.31,46.683 +478393,133.75,50.732 +478394,131.39,49.415 +478395,128.83,48.037 +478396,126.03,46.59 +478397,132.45,50.765 +478398,130.1,49.408 +478399,127.55,47.989 +478400,124.76,46.498 +478401,131.15,50.796 +478402,128.81,49.401 +478403,126.27,47.941 +478404,123.48,46.407 +478405,129.85,50.827 +478406,127.53,49.394 +478407,125,47.894 +478408,122.21,46.318 +478409,128.55,50.856 +478410,126.24,49.386 +478411,123.72,47.847 +478412,120.94,46.229 +478413,127.24,50.884 +478414,124.95,49.378 +478415,122.44,47.801 +478416,119.68,46.142 +478417,125.93,50.912 +478418,123.66,49.37 +478419,121.17,47.755 +478420,118.41,46.055 +478421,124.62,50.938 +478422,122.37,49.361 +478423,119.89,47.709 +478424,117.15,45.97 +478425,123.31,50.963 +478426,121.08,49.352 +478427,118.62,47.664 +478428,115.89,45.886 +478429,122,50.986 +478430,119.78,49.342 +478431,117.35,47.619 +478432,114.63,45.804 +478433,120.68,51.009 +478434,118.49,49.333 +478435,116.07,47.575 +478436,113.37,45.723 +478437,119.37,51.03 +478438,117.2,49.322 +478439,114.8,47.531 +478440,112.12,45.643 +478441,118.05,51.05 +478442,115.91,49.312 +478443,113.53,47.488 +478444,110.87,45.564 +478445,116.73,51.069 +478446,114.61,49.301 +478447,112.26,47.445 +478448,109.62,45.488 +478449,115.41,51.087 +478450,113.32,49.289 +478451,110.99,47.403 +478452,108.38,45.412 +478453,114.09,51.103 +478454,112.02,49.277 +478455,109.72,47.361 +478456,107.13,45.338 +478457,112.77,51.118 +478458,110.73,49.265 +478459,108.46,47.319 +478460,105.89,45.265 +478461,111.44,51.131 +478462,109.43,49.252 +478463,107.19,47.279 +478464,104.65,45.194 +478465,110.12,51.144 +478466,108.14,49.239 +478467,105.92,47.238 +478468,103.41,45.125 +478469,108.79,51.154 +478470,106.84,49.225 +478471,104.66,47.199 +478472,102.18,45.057 +478473,107.46,51.164 +478474,105.54,49.211 +478475,103.39,47.159 +478476,100.94,44.991 +478477,106.13,51.171 +478478,104.24,49.196 +478479,102.13,47.121 +478480,99.713,44.927 +478481,104.8,51.178 +478482,102.95,49.181 +478483,100.86,47.083 +478484,98.485,44.864 +478485,103.46,51.183 +478486,101.65,49.166 +478487,99.602,47.045 +478488,97.258,44.803 +478489,102.13,51.186 +478490,100.35,49.15 +478491,98.339,47.008 +478492,96.033,44.744 +478493,100.8,51.188 +478494,99.05,49.133 +478495,97.078,46.972 +478496,94.811,44.686 +478497,99.459,51.189 +478498,97.75,49.116 +478499,95.817,46.936 +478500,93.59,44.631 +478501,98.121,51.188 +478502,96.45,49.098 +478503,94.556,46.901 +478504,92.372,44.577 +478505,96.782,51.185 +478506,95.15,49.08 +478507,93.296,46.866 +478508,91.155,44.524 +478509,95.443,51.181 +478510,93.849,49.061 +478511,92.037,46.832 +478512,89.94,44.474 +478513,94.102,51.175 +478514,92.548,49.042 +478515,90.779,46.799 +478516,88.727,44.426 +478517,92.76,51.168 +478518,91.247,49.023 +478519,89.521,46.766 +478520,87.516,44.379 +478521,91.416,51.159 +478522,89.945,49.002 +478523,88.263,46.734 +478524,86.307,44.335 +478525,90.072,51.148 +478526,88.643,48.981 +478527,87.006,46.703 +478528,85.099,44.292 +478529,88.727,51.136 +478530,87.34,48.96 +478531,85.75,46.672 +478532,83.893,44.251 +478533,87.381,51.122 +478534,86.038,48.938 +478535,84.494,46.642 +478536,82.689,44.212 +478537,86.035,51.107 +478538,84.735,48.916 +478539,83.239,46.612 +478540,81.486,44.176 +478541,84.687,51.09 +478542,83.432,48.893 +478543,81.984,46.583 +478544,80.285,44.141 +478545,83.338,51.071 +478546,82.128,48.87 +478547,80.73,46.555 +478548,79.085,44.108 +478549,81.989,51.051 +478550,80.824,48.845 +478551,79.476,46.527 +478552,77.887,44.077 +478553,80.639,51.029 +478554,79.52,48.821 +478555,78.222,46.5 +478556,76.69,44.047 +478557,79.288,51.005 +478558,78.216,48.796 +478559,76.969,46.474 +478560,75.494,44.02 +478561,77.936,50.98 +478562,76.912,48.77 +478563,75.717,46.448 +478564,74.3,43.995 +478565,76.584,50.953 +478566,75.607,48.744 +478567,74.465,46.423 +478568,73.107,43.972 +478569,75.231,50.925 +478570,74.303,48.717 +478571,73.213,46.399 +478572,71.915,43.951 +478573,73.877,50.894 +478574,72.998,48.69 +478575,71.962,46.375 +478576,70.724,43.932 +478577,72.523,50.862 +478578,71.693,48.662 +478579,70.711,46.352 +478580,69.534,43.915 +478581,71.169,50.829 +478582,70.387,48.633 +478583,69.46,46.329 +478584,68.345,43.9 +478585,69.813,50.794 +478586,69.082,48.604 +478587,68.21,46.308 +478588,67.157,43.886 +478589,68.458,50.757 +478590,67.776,48.575 +478591,66.96,46.286 +478592,65.969,43.875 +478593,67.102,50.718 +478594,66.471,48.545 +478595,65.71,46.266 +478596,64.783,43.866 +478597,65.745,50.678 +478598,65.165,48.514 +478599,64.461,46.246 +478600,63.597,43.858 +478601,64.388,50.636 +478602,63.859,48.483 +478603,63.212,46.227 +478604,62.412,43.853 +478605,63.031,50.592 +478606,62.554,48.451 +478607,61.963,46.208 +478608,61.227,43.85 +478609,61.673,50.547 +478610,61.248,48.419 +478611,60.714,46.191 +478612,60.043,43.848 +478613,60.315,50.5 +478614,59.942,48.386 +478615,59.466,46.173 +478616,58.86,43.848 +478617,58.957,50.452 +478618,58.636,48.352 +478619,58.218,46.157 +478620,57.677,43.851 +478621,57.599,50.402 +478622,57.33,48.318 +478623,56.97,46.141 +478624,56.494,43.855 +478625,56.24,50.35 +478626,56.024,48.284 +478627,55.722,46.125 +478628,55.311,43.861 +478629,54.882,50.296 +478630,54.718,48.249 +478631,54.474,46.11 +478632,54.129,43.868 +478633,53.523,50.241 +478634,53.412,48.213 +478635,53.227,46.096 +478636,52.947,43.878 +478637,52.164,50.185 +478638,52.106,48.177 +478639,51.979,46.083 +478640,51.764,43.889 +478641,50.805,50.127 +478642,50.801,48.141 +478643,50.732,46.07 +478644,50.582,43.903 +478645,49.447,50.067 +478646,49.495,48.104 +478647,49.485,46.057 +478648,49.4,43.918 +478649,48.088,50.006 +478650,48.189,48.066 +478651,48.237,46.046 +478652,48.218,43.934 +478653,46.729,49.943 +478654,46.884,48.028 +478655,46.99,46.035 +478656,47.035,43.953 +478657,45.37,49.879 +478658,45.579,47.99 +478659,45.743,46.024 +478660,45.852,43.973 +478661,44.012,49.813 +478662,44.273,47.951 +478663,44.496,46.014 +478664,44.669,43.995 +478665,42.654,49.746 +478666,42.968,47.911 +478667,43.249,46.005 +478668,43.486,44.018 +478669,41.296,49.677 +478670,41.664,47.871 +478671,42.001,45.996 +478672,42.302,44.043 +478673,39.938,49.606 +478674,40.359,47.831 +478675,40.754,45.987 +478676,41.118,44.07 +478677,38.58,49.535 +478678,39.054,47.79 +478679,39.507,45.98 +478680,39.933,44.098 +478681,37.223,49.462 +478682,37.75,47.749 +478683,38.259,45.972 +478684,38.747,44.127 +478685,35.866,49.387 +478686,36.446,47.707 +478687,37.012,45.966 +478688,37.561,44.159 +478689,34.51,49.311 +478690,35.142,47.665 +478691,35.764,45.959 +478692,36.374,44.191 +478693,33.154,49.234 +478694,33.838,47.622 +478695,34.517,45.954 +478696,35.187,44.225 +478697,31.798,49.155 +478698,32.535,47.579 +478699,33.269,45.949 +478700,33.998,44.261 +478701,30.443,49.075 +478702,31.232,47.535 +478703,32.021,45.944 +478704,32.809,44.297 +478705,29.088,48.994 +478706,29.929,47.491 +478707,30.773,45.94 +478708,31.618,44.335 +478709,27.735,48.911 +478710,28.627,47.447 +478711,29.524,45.936 +478712,30.427,44.375 +478713,26.381,48.828 +478714,27.325,47.402 +478715,28.276,45.933 +478716,29.235,44.415 +478717,25.029,48.743 +478718,26.023,47.357 +478719,27.027,45.93 +478720,28.042,44.457 +478721,23.677,48.656 +478722,24.721,47.312 +478723,25.778,45.927 +478724,26.847,44.5 +478725,22.325,48.569 +478726,23.42,47.266 +478727,24.529,45.925 +478728,25.652,44.544 +478729,20.975,48.48 +478730,22.12,47.22 +478731,23.279,45.924 +478732,24.455,44.59 +478733,19.625,48.391 +478734,20.819,47.174 +478735,22.029,45.923 +478736,23.257,44.636 +478737,18.276,48.3 +478738,19.519,47.127 +478739,20.779,45.922 +478740,22.058,44.683 +478741,16.928,48.208 +478742,18.22,47.08 +478743,19.529,45.921 +478744,20.857,44.732 +478745,15.581,48.115 +478746,16.921,47.033 +478747,18.278,45.921 +478748,19.655,44.781 +478749,14.235,48.021 +478750,15.622,46.985 +478751,17.027,45.922 +478752,18.451,44.831 +478753,12.89,47.927 +478754,14.324,46.937 +478755,15.776,45.922 +478756,17.247,44.882 +478757,11.546,47.831 +478758,13.026,46.889 +478759,14.524,45.923 +478760,16.04,44.934 +478761,10.203,47.734 +478762,11.729,46.841 +478763,13.272,45.925 +478764,14.832,44.987 +478765,8.8606,47.637 +478766,10.432,46.792 +478767,12.019,45.926 +478768,13.623,45.04 +478769,7.5197,47.538 +478770,9.136,46.743 +478771,10.766,45.928 +478772,12.412,45.094 +478773,6.1799,47.439 +478774,7.8403,46.694 +478775,9.5131,45.93 +478776,11.2,45.149 +478777,4.8414,47.339 +478778,6.5451,46.645 +478779,8.2594,45.933 +478780,9.9854,45.204 +478781,3.504,47.238 +478782,5.2504,46.595 +478783,7.0052,45.935 +478784,8.7696,45.26 +478785,2.1679,47.137 +478786,3.9563,46.546 +478787,5.7507,45.938 +478788,7.5521,45.317 +478789,0.83316,47.035 +478790,2.6627,46.496 +478791,4.4956,45.942 +478792,6.333,45.374 +478793,359.5,46.932 +478794,1.3697,46.446 +478795,3.2402,45.945 +478796,5.112,45.431 +478797,358.17,46.829 +478798,0.077333,46.396 +478799,1.9842,45.949 +478800,3.8894,45.489 +478801,356.84,46.725 +478802,358.79,46.345 +478803,0.72785,45.952 +478804,2.665,45.547 +478805,355.51,46.621 +478806,357.49,46.295 +478807,359.47,45.956 +478808,1.4388,45.605 +478809,354.18,46.516 +478810,356.2,46.245 +478811,358.21,45.96 +478812,0.2108,45.664 +478813,352.85,46.411 +478814,354.91,46.194 +478815,356.96,45.965 +478816,358.98,45.723 +478817,351.53,46.305 +478818,353.62,46.144 +478819,355.7,45.969 +478820,357.75,45.782 +478821,350.21,46.199 +478822,352.34,46.093 +478823,354.44,45.973 +478824,356.52,45.842 +478825,348.88,46.093 +478826,351.05,46.042 +478827,353.18,45.978 +478828,355.28,45.901 +478829,347.56,45.986 +478830,349.76,45.992 +478831,351.92,45.983 +478832,354.04,45.961 +478833,346.25,45.88 +478834,348.47,45.941 +478835,350.66,45.988 +478836,352.8,46.02 +478837,344.93,45.773 +478838,347.19,45.89 +478839,349.4,45.992 +478840,351.56,46.08 +478841,343.61,45.666 +478842,345.9,45.84 +478843,348.14,45.997 +478844,350.32,46.14 +478845,342.3,45.558 +478846,344.62,45.789 +478847,346.87,46.002 +478848,349.08,46.199 +478849,340.99,45.451 +478850,343.33,45.739 +478851,345.61,46.007 +478852,347.83,46.258 +478853,339.68,45.344 +478854,342.05,45.688 +478855,344.35,46.012 +478856,346.58,46.317 +478857,338.37,45.237 +478858,340.77,45.638 +478859,343.08,46.017 +478860,345.33,46.376 +478861,337.07,45.13 +478862,339.49,45.587 +478863,341.82,46.022 +478864,344.08,46.435 +478865,335.76,45.023 +478866,338.2,45.537 +478867,340.56,46.027 +478868,342.82,46.493 +478869,334.46,44.916 +478870,336.92,45.487 +478871,339.29,46.031 +478872,341.57,46.551 +478873,333.16,44.809 +478874,335.64,45.437 +478875,338.02,46.036 +478876,340.31,46.609 +478877,331.86,44.703 +478878,334.37,45.387 +478879,336.76,46.041 +478880,339.05,46.666 +478881,330.57,44.597 +478882,333.09,45.338 +478883,335.49,46.045 +478884,337.79,46.723 +478885,329.27,44.491 +478886,331.81,45.288 +478887,334.22,46.05 +478888,336.52,46.779 +478889,327.98,44.386 +478890,330.53,45.239 +478891,332.95,46.054 +478892,335.26,46.835 +478893,326.69,44.281 +478894,329.26,45.19 +478895,331.69,46.058 +478896,333.99,46.89 +478897,325.4,44.177 +478898,327.98,45.141 +478899,330.42,46.062 +478900,332.72,46.944 +478901,324.12,44.073 +478902,326.71,45.093 +478903,329.15,46.066 +478904,331.45,46.998 +478905,322.83,43.97 +478906,325.44,45.044 +478907,327.88,46.07 +478908,330.18,47.051 +478909,321.55,43.867 +478910,324.16,44.996 +478911,326.6,46.073 +478912,328.9,47.104 +478913,320.27,43.765 +478914,322.89,44.949 +478915,325.33,46.077 +478916,327.63,47.156 +478917,319,43.664 +478918,321.62,44.901 +478919,324.06,46.08 +478920,326.35,47.207 +478921,317.72,43.564 +478922,320.35,44.854 +478923,322.79,46.083 +478924,325.07,47.257 +478925,316.45,43.464 +478926,319.08,44.807 +478927,321.51,46.085 +478928,323.79,47.306 +478929,315.18,43.366 +478930,317.81,44.761 +478931,320.24,46.088 +478932,322.5,47.354 +478933,313.91,43.268 +478934,316.54,44.715 +478935,318.96,46.09 +478936,321.22,47.402 +478937,312.64,43.171 +478938,315.27,44.669 +478939,317.69,46.092 +478940,319.93,47.448 +478941,311.38,43.075 +478942,314.01,44.624 +478943,316.41,46.093 +478944,318.64,47.494 +478945,310.12,42.98 +478946,312.74,44.579 +478947,315.14,46.095 +478948,317.35,47.539 +478949,308.86,42.887 +478950,311.48,44.534 +478951,313.86,46.096 +478952,316.06,47.582 +478953,307.6,42.794 +478954,310.21,44.49 +478955,312.58,46.096 +478956,314.76,47.625 +478957,306.35,42.703 +478958,308.95,44.446 +478959,311.31,46.097 +478960,313.47,47.666 +478961,305.1,42.613 +478962,307.69,44.403 +478963,310.03,46.097 +478964,312.17,47.706 +478965,303.85,42.524 +478966,306.42,44.361 +478967,308.75,46.096 +478968,310.87,47.745 +478969,302.6,42.436 +478970,305.16,44.318 +478971,307.47,46.095 +478972,309.57,47.783 +478973,301.35,42.35 +478974,303.9,44.276 +478975,306.19,46.094 +478976,308.27,47.82 +478977,300.11,42.265 +478978,302.64,44.235 +478979,304.91,46.093 +478980,306.97,47.855 +478981,298.87,42.182 +478982,301.38,44.194 +478983,303.63,46.091 +478984,305.66,47.889 +478985,297.63,42.1 +478986,300.13,44.154 +478987,302.35,46.089 +478988,304.35,47.922 +478989,296.4,42.02 +478990,298.87,44.115 +478991,301.06,46.086 +478992,303.05,47.953 +478993,295.16,41.941 +478994,297.61,44.075 +478995,299.78,46.083 +478996,301.74,47.983 +478997,293.93,41.864 +478998,296.35,44.037 +478999,298.5,46.079 +479000,300.43,48.012 +479001,292.7,41.789 +479002,295.1,43.999 +479003,297.22,46.076 +479004,299.11,48.04 +479005,291.47,41.715 +479006,293.84,43.961 +479007,295.93,46.071 +479008,297.8,48.066 +479009,290.25,41.642 +479010,292.59,43.925 +479011,294.65,46.066 +479012,296.49,48.09 +479013,289.02,41.572 +479014,291.34,43.888 +479015,293.36,46.061 +479016,295.17,48.113 +479017,287.8,41.503 +479018,290.08,43.853 +479019,292.08,46.055 +479020,293.85,48.135 +479021,286.58,41.437 +479022,288.83,43.818 +479023,290.79,46.049 +479024,292.53,48.155 +479025,285.37,41.372 +479026,287.58,43.783 +479027,289.51,46.042 +479028,291.21,48.173 +479029,284.15,41.309 +479030,286.33,43.749 +479031,288.22,46.035 +479032,289.89,48.19 +479033,282.94,41.247 +479034,285.08,43.716 +479035,286.93,46.027 +479036,288.57,48.206 +479037,281.73,41.188 +479038,283.83,43.684 +479039,285.65,46.019 +479040,287.25,48.22 +479041,280.52,41.131 +479042,282.58,43.652 +479043,284.36,46.01 +479044,285.92,48.232 +479045,279.31,41.075 +479046,281.33,43.621 +479047,283.07,46.001 +479048,284.59,48.243 +479049,278.11,41.022 +479050,280.09,43.591 +479051,281.78,45.991 +479052,283.27,48.252 +479053,276.91,40.971 +479054,278.84,43.561 +479055,280.49,45.981 +479056,281.94,48.26 +479057,275.7,40.922 +479058,277.59,43.532 +479059,279.2,45.97 +479060,280.61,48.265 +479061,274.5,40.874 +479062,276.35,43.503 +479063,277.92,45.958 +479064,279.28,48.27 +479065,273.31,40.829 +479066,275.1,43.476 +479067,276.63,45.946 +479068,277.95,48.272 +479069,272.11,40.786 +479070,273.86,43.449 +479071,275.34,45.934 +479072,276.62,48.273 +479073,270.92,40.746 +479074,272.61,43.422 +479075,274.05,45.921 +479076,275.29,48.272 +479077,269.72,40.707 +479078,271.37,43.397 +479079,272.76,45.907 +479080,273.95,48.27 +479081,268.53,40.671 +479082,270.12,43.372 +479083,271.47,45.893 +479084,272.62,48.265 +479085,267.34,40.636 +479086,268.88,43.348 +479087,270.17,45.878 +479088,271.28,48.259 +479089,266.15,40.604 +479090,267.64,43.325 +479091,268.88,45.863 +479092,269.95,48.252 +479093,264.97,40.574 +479094,266.4,43.302 +479095,267.59,45.847 +479096,268.61,48.242 +479097,263.78,40.547 +479098,265.16,43.28 +479099,266.3,45.831 +479100,267.28,48.231 +479101,262.6,40.521 +479102,263.91,43.259 +479103,265.01,45.814 +479104,265.94,48.218 +479105,261.41,40.498 +479106,262.67,43.238 +479107,263.72,45.796 +479108,264.6,48.204 +479109,260.23,40.477 +479110,261.43,43.219 +479111,262.42,45.778 +479112,263.26,48.187 +479113,259.05,40.458 +479114,260.19,43.2 +479115,261.13,45.759 +479116,261.92,48.169 +479117,257.87,40.442 +479118,258.95,43.181 +479119,259.84,45.74 +479120,260.58,48.149 +479121,256.69,40.427 +479122,257.71,43.164 +479123,258.55,45.72 +479124,259.24,48.127 +479125,255.51,40.415 +479126,256.47,43.147 +479127,257.26,45.7 +479128,257.9,48.104 +479129,254.33,40.406 +479130,255.24,43.131 +479131,255.96,45.679 +479132,256.56,48.079 +479133,253.16,40.398 +479134,254,43.116 +479135,254.67,45.657 +479136,255.22,48.052 +479137,251.98,40.393 +479138,252.76,43.101 +479139,253.38,45.635 +479140,253.88,48.023 +479141,250.8,40.39 +479142,251.52,43.088 +479143,252.08,45.612 +479144,252.54,47.993 +479145,249.63,40.389 +479146,250.28,43.075 +479147,250.79,45.589 +479148,251.19,47.96 +479149,248.45,40.39 +479150,249.05,43.062 +479151,249.5,45.565 +479152,249.85,47.926 +479153,247.28,40.393 +479154,247.81,43.051 +479155,248.21,45.541 +479156,248.51,47.891 +479157,246.11,40.399 +479158,246.57,43.04 +479159,246.91,45.516 +479160,247.16,47.853 +479161,244.93,40.407 +479162,245.33,43.03 +479163,245.62,45.49 +479164,245.82,47.814 +479165,243.76,40.417 +479166,244.1,43.02 +479167,244.33,45.464 +479168,244.48,47.773 +479169,242.59,40.429 +479170,242.86,43.012 +479171,243.03,45.437 +479172,243.14,47.73 +479173,241.41,40.443 +479174,241.62,43.004 +479175,241.74,45.41 +479176,241.79,47.686 +479177,240.24,40.459 +479178,240.39,42.997 +479179,240.45,45.382 +479180,240.45,47.64 +479181,239.07,40.478 +479182,239.15,42.99 +479183,239.16,45.354 +479184,239.11,47.592 +479185,237.89,40.498 +479186,237.91,42.984 +479187,237.86,45.325 +479188,237.76,47.543 +479189,236.72,40.52 +479190,236.68,42.979 +479191,236.57,45.296 +479192,236.42,47.491 +479193,235.55,40.545 +479194,235.44,42.975 +479195,235.28,45.266 +479196,235.08,47.439 +479197,234.37,40.571 +479198,234.2,42.971 +479199,233.99,45.235 +479200,233.74,47.384 +479201,233.2,40.6 +479202,232.97,42.968 +479203,232.69,45.204 +479204,232.39,47.328 +479205,232.02,40.63 +479206,231.73,42.965 +479207,231.4,45.173 +479208,231.05,47.27 +479209,230.85,40.662 +479210,230.49,42.964 +479211,230.11,45.141 +479212,229.71,47.211 +479213,229.67,40.696 +479214,229.26,42.962 +479215,228.82,45.108 +479216,228.37,47.15 +479217,228.49,40.732 +479218,228.02,42.962 +479219,227.53,45.076 +479220,227.03,47.088 +479221,227.32,40.769 +479222,226.78,42.962 +479223,226.24,45.042 +479224,225.69,47.024 +479225,226.14,40.809 +479226,225.54,42.963 +479227,224.95,45.008 +479228,224.35,46.958 +479229,224.96,40.85 +479230,224.31,42.964 +479231,223.66,44.974 +479232,223.01,46.891 +479233,223.78,40.893 +479234,223.07,42.966 +479235,222.37,44.939 +479236,221.67,46.822 +479237,222.6,40.937 +479238,221.83,42.969 +479239,221.08,44.904 +479240,220.33,46.752 +479241,221.42,40.983 +479242,220.59,42.972 +479243,219.79,44.868 +479244,218.99,46.681 +479245,220.23,41.031 +479246,219.36,42.976 +479247,218.5,44.832 +479248,217.66,46.608 +479249,219.05,41.08 +479250,218.12,42.98 +479251,217.21,44.795 +479252,216.32,46.533 +479253,217.87,41.131 +479254,216.88,42.985 +479255,215.92,44.758 +479256,214.98,46.458 +479257,216.68,41.183 +479258,215.64,42.991 +479259,214.63,44.721 +479260,213.65,46.38 +479261,215.49,41.236 +479262,214.4,42.997 +479263,213.34,44.683 +479264,212.31,46.302 +479265,214.3,41.291 +479266,213.16,43.003 +479267,212.06,44.645 +479268,210.98,46.222 +479269,213.11,41.348 +479270,211.92,43.01 +479271,210.77,44.606 +479272,209.65,46.141 +479273,211.92,41.405 +479274,210.68,43.018 +479275,209.48,44.567 +479276,208.32,46.059 +479277,210.73,41.464 +479278,209.44,43.026 +479279,208.2,44.528 +479280,206.98,45.975 +479281,209.53,41.524 +479282,208.2,43.034 +479283,206.91,44.488 +479284,205.65,45.89 +479285,208.34,41.585 +479286,206.96,43.043 +479287,205.62,44.448 +479288,204.33,45.804 +479289,207.14,41.648 +479290,205.72,43.052 +479291,204.34,44.408 +479292,203,45.717 +479293,205.94,41.711 +479294,204.48,43.062 +479295,203.05,44.367 +479296,201.67,45.629 +479297,204.74,41.775 +479298,203.23,43.072 +479299,201.77,44.326 +479300,200.35,45.539 +479301,203.54,41.841 +479302,201.99,43.083 +479303,200.49,44.285 +479304,199.02,45.449 +479305,202.34,41.907 +479306,200.75,43.094 +479307,199.2,44.244 +479308,197.7,45.358 +479309,201.13,41.974 +479310,199.5,43.105 +479311,197.92,44.202 +479312,196.37,45.265 +479313,199.93,42.043 +479314,198.26,43.117 +479315,196.64,44.16 +479316,195.05,45.172 +479317,198.72,42.111 +479318,197.02,43.129 +479319,195.36,44.118 +479320,193.73,45.077 +479321,197.51,42.181 +479322,195.77,43.142 +479323,194.08,44.075 +479324,192.41,44.982 +479325,196.29,42.252 +479326,194.53,43.155 +479327,192.79,44.033 +479328,191.1,44.886 +479329,195.08,42.323 +479330,193.28,43.168 +479331,191.51,43.99 +479332,189.78,44.789 +479333,193.86,42.394 +479334,192.03,43.181 +479335,190.24,43.947 +479336,188.47,44.692 +479337,192.65,42.466 +479338,190.79,43.195 +479339,188.96,43.904 +479340,187.15,44.593 +479341,191.43,42.539 +479342,189.54,43.209 +479343,187.68,43.86 +479344,185.84,44.494 +479345,190.21,42.612 +479346,188.29,43.223 +479347,186.4,43.817 +479348,184.53,44.394 +479349,188.98,42.686 +479350,187.04,43.237 +479351,185.12,43.773 +479352,183.22,44.294 +479353,187.76,42.76 +479354,185.79,43.252 +479355,183.85,43.73 +479356,181.92,44.193 +479357,186.53,42.834 +479358,184.55,43.267 +479359,182.57,43.686 +479360,180.61,44.092 +479361,185.3,42.909 +479362,183.3,43.282 +479363,181.3,43.642 +479364,179.31,43.99 +479365,184.07,42.984 +479366,182.04,43.297 +479367,180.02,43.598 +479368,178,43.887 +479369,182.84,43.059 +479370,180.79,43.312 +479371,178.75,43.554 +479372,176.7,43.784 +479373,181.6,43.134 +479374,179.54,43.328 +479375,177.47,43.51 +479376,175.4,43.681 +479377,180.37,43.21 +479378,178.29,43.344 +479379,176.2,43.466 +479380,174.11,43.577 +479381,179.13,43.285 +479382,177.04,43.359 +479383,174.93,43.422 +479384,172.81,43.473 +479385,177.89,43.36 +479386,175.78,43.375 +479387,173.66,43.378 +479388,171.52,43.369 +479389,176.65,43.436 +479390,174.53,43.391 +479391,172.39,43.334 +479392,170.22,43.265 +479393,175.4,43.511 +479394,173.27,43.407 +479395,171.12,43.29 +479396,168.93,43.16 +479397,174.16,43.586 +479398,172.02,43.423 +479399,169.85,43.247 +479400,167.64,43.056 +479401,172.91,43.661 +479402,170.76,43.439 +479403,168.58,43.203 +479404,166.36,42.951 +479405,171.66,43.736 +479406,169.51,43.455 +479407,167.31,43.159 +479408,165.07,42.847 +479409,170.41,43.811 +479410,168.25,43.472 +479411,166.05,43.116 +479412,163.79,42.742 +479413,169.15,43.885 +479414,166.99,43.488 +479415,164.78,43.072 +479416,162.51,42.637 +479417,167.9,43.959 +479418,165.74,43.504 +479419,163.51,43.029 +479420,161.23,42.533 +479421,166.64,44.033 +479422,164.48,43.52 +479423,162.25,42.986 +479424,159.95,42.429 +479425,165.38,44.106 +479426,163.22,43.536 +479427,160.99,42.943 +479428,158.68,42.325 +479429,164.12,44.179 +479430,161.96,43.552 +479431,159.72,42.9 +479432,157.4,42.221 +479433,162.86,44.251 +479434,160.7,43.568 +479435,158.46,42.857 +479436,156.13,42.117 +479437,161.59,44.322 +479438,159.44,43.583 +479439,157.2,42.815 +479440,154.86,42.014 +479441,160.32,44.394 +479442,158.17,43.599 +479443,155.94,42.773 +479444,153.6,41.912 +479445,159.05,44.464 +479446,156.91,43.615 +479447,154.68,42.731 +479448,152.33,41.81 +479449,157.78,44.534 +479450,155.65,43.63 +479451,153.42,42.689 +479452,151.07,41.708 +479453,156.51,44.603 +479454,154.39,43.645 +479455,152.16,42.648 +479456,149.81,41.607 +479457,155.24,44.671 +479458,153.12,43.66 +479459,150.9,42.607 +479460,148.55,41.506 +479461,153.96,44.739 +479462,151.86,43.675 +479463,149.64,42.566 +479464,147.29,41.407 +479465,152.68,44.806 +479466,150.59,43.69 +479467,148.38,42.526 +479468,146.04,41.307 +479469,151.4,44.872 +479470,149.33,43.704 +479471,147.13,42.486 +479472,144.79,41.209 +479473,150.12,44.937 +479474,148.06,43.719 +479475,145.87,42.446 +479476,143.54,41.112 +479477,148.84,45.001 +479478,146.79,43.733 +479479,144.62,42.406 +479480,142.29,41.015 +479481,147.56,45.064 +479482,145.53,43.747 +479483,143.36,42.368 +479484,141.04,40.919 +479485,146.27,45.126 +479486,144.26,43.76 +479487,142.11,42.329 +479488,139.8,40.825 +479489,144.98,45.187 +479490,142.99,43.773 +479491,140.86,42.291 +479492,138.56,40.731 +479493,143.69,45.247 +479494,141.72,43.786 +479495,139.61,42.253 +479496,137.32,40.638 +479497,142.4,45.306 +479498,140.45,43.799 +479499,138.35,42.216 +479500,136.08,40.547 +479501,141.11,45.364 +479502,139.18,43.811 +479503,137.1,42.179 +479504,134.84,40.456 +479505,139.81,45.421 +479506,137.91,43.823 +479507,135.85,42.143 +479508,133.61,40.367 +479509,138.52,45.477 +479510,136.64,43.835 +479511,134.6,42.107 +479512,132.38,40.279 +479513,137.22,45.531 +479514,135.37,43.847 +479515,133.36,42.072 +479516,131.15,40.193 +479517,135.92,45.584 +479518,134.09,43.858 +479519,132.11,42.037 +479520,129.92,40.107 +479521,134.62,45.636 +479522,132.82,43.868 +479523,130.86,42.003 +479524,128.7,40.024 +479525,133.32,45.687 +479526,131.55,43.878 +479527,129.62,41.969 +479528,127.48,39.941 +479529,132.02,45.736 +479530,130.28,43.888 +479531,128.37,41.936 +479532,126.26,39.86 +479533,130.72,45.784 +479534,129,43.898 +479535,127.12,41.903 +479536,125.04,39.781 +479537,129.41,45.83 +479538,127.73,43.907 +479539,125.88,41.871 +479540,123.82,39.703 +479541,128.1,45.876 +479542,126.45,43.916 +479543,124.64,41.84 +479544,122.61,39.627 +479545,126.8,45.919 +479546,125.18,43.924 +479547,123.39,41.809 +479548,121.39,39.553 +479549,125.49,45.962 +479550,123.9,43.932 +479551,122.15,41.779 +479552,120.18,39.48 +479553,124.18,46.003 +479554,122.62,43.939 +479555,120.91,41.749 +479556,118.98,39.409 +479557,122.87,46.042 +479558,121.35,43.946 +479559,119.67,41.72 +479560,117.77,39.34 +479561,121.55,46.08 +479562,120.07,43.952 +479563,118.43,41.692 +479564,116.57,39.272 +479565,120.24,46.116 +479566,118.79,43.958 +479567,117.19,41.664 +479568,115.36,39.207 +479569,118.92,46.151 +479570,117.52,43.964 +479571,115.95,41.637 +479572,114.16,39.143 +479573,117.61,46.184 +479574,116.24,43.969 +479575,114.71,41.611 +479576,112.96,39.081 +479577,116.29,46.215 +479578,114.96,43.973 +479579,113.47,41.585 +479580,111.76,39.022 +479581,114.97,46.245 +479582,113.68,43.977 +479583,112.23,41.561 +479584,110.57,38.964 +479585,113.65,46.274 +479586,112.4,43.981 +479587,110.99,41.536 +479588,109.38,38.909 +479589,112.34,46.301 +479590,111.12,43.984 +479591,109.75,41.513 +479592,108.18,38.855 +479593,111.01,46.326 +479594,109.84,43.986 +479595,108.52,41.49 +479596,106.99,38.804 +479597,109.69,46.349 +479598,108.56,43.988 +479599,107.28,41.468 +479600,105.8,38.754 +479601,108.37,46.371 +479602,107.28,43.989 +479603,106.05,41.447 +479604,104.62,38.707 +479605,107.05,46.391 +479606,106,43.99 +479607,104.81,41.426 +479608,103.43,38.662 +479609,105.72,46.409 +479610,104.72,43.99 +479611,103.58,41.407 +479612,102.24,38.62 +479613,104.4,46.425 +479614,103.44,43.99 +479615,102.34,41.388 +479616,101.06,38.579 +479617,103.07,46.44 +479618,102.16,43.989 +479619,101.11,41.369 +479620,99.879,38.541 +479621,101.75,46.453 +479622,100.87,43.988 +479623,99.873,41.352 +479624,98.698,38.505 +479625,100.42,46.465 +479626,99.592,43.986 +479627,98.639,41.335 +479628,97.518,38.472 +479629,99.095,46.474 +479630,98.309,43.983 +479631,97.406,41.319 +479632,96.339,38.441 +479633,97.767,46.482 +479634,97.027,43.98 +479635,96.173,41.304 +479636,95.162,38.412 +479637,96.439,46.488 +479638,95.745,43.977 +479639,94.941,41.29 +479640,93.985,38.385 +479641,95.111,46.492 +479642,94.462,43.973 +479643,93.709,41.276 +479644,92.81,38.361 +479645,93.782,46.494 +479646,93.179,43.968 +479647,92.477,41.264 +479648,91.635,38.339 +479649,92.452,46.495 +479650,91.896,43.962 +479651,91.245,41.252 +479652,90.461,38.32 +479653,91.123,46.494 +479654,90.613,43.956 +479655,90.014,41.241 +479656,89.288,38.303 +479657,89.792,46.491 +479658,89.33,43.95 +479659,88.782,41.23 +479660,88.115,38.289 +479661,88.462,46.486 +479662,88.047,43.943 +479663,87.551,41.221 +479664,86.944,38.277 +479665,87.131,46.479 +479666,86.763,43.935 +479667,86.32,41.212 +479668,85.772,38.267 +479669,85.8,46.471 +479670,85.48,43.927 +479671,85.09,41.204 +479672,84.602,38.26 +479673,84.469,46.46 +479674,84.197,43.918 +479675,83.859,41.197 +479676,83.431,38.255 +479677,83.138,46.448 +479678,82.913,43.908 +479679,82.629,41.191 +479680,82.261,38.252 +479681,81.807,46.434 +479682,81.63,43.898 +479683,81.398,41.185 +479684,81.092,38.252 +479685,80.475,46.419 +479686,80.346,43.888 +479687,80.168,41.18 +479688,79.922,38.255 +479689,79.144,46.401 +479690,79.063,43.877 +479691,78.938,41.177 +479692,78.753,38.26 +479693,77.812,46.382 +479694,77.779,43.865 +479695,77.708,41.173 +479696,77.584,38.267 +479697,76.481,46.36 +479698,76.496,43.852 +479699,76.478,41.171 +479700,76.414,38.277 +479701,75.149,46.337 +479702,75.212,43.839 +479703,75.248,41.17 +479704,75.245,38.289 +479705,73.818,46.313 +479706,73.929,43.826 +479707,74.018,41.169 +479708,74.076,38.303 +479709,72.487,46.286 +479710,72.646,43.812 +479711,72.788,41.169 +479712,72.906,38.32 +479713,71.156,46.258 +479714,71.362,43.797 +479715,71.558,41.17 +479716,71.736,38.339 +479717,69.825,46.228 +479718,70.079,43.782 +479719,70.328,41.172 +479720,70.566,38.36 +479721,68.495,46.196 +479722,68.796,43.766 +479723,69.097,41.174 +479724,69.396,38.384 +479725,67.164,46.162 +479726,67.514,43.75 +479727,67.867,41.177 +479728,68.225,38.41 +479729,65.834,46.127 +479730,66.231,43.733 +479731,66.637,41.181 +479732,67.053,38.438 +479733,64.505,46.089 +479734,64.949,43.715 +479735,65.406,41.186 +479736,65.881,38.468 +479737,63.175,46.05 +479738,63.666,43.697 +479739,64.176,41.192 +479740,64.708,38.501 +479741,61.846,46.01 +479742,62.384,43.679 +479743,62.945,41.198 +479744,63.535,38.536 +479745,60.518,45.968 +479746,61.102,43.66 +479747,61.714,41.205 +479748,62.361,38.573 +479749,59.19,45.924 +479750,59.82,43.64 +479751,60.483,41.213 +479752,61.186,38.612 +479753,57.863,45.878 +479754,58.539,43.62 +479755,59.251,41.221 +479756,60.01,38.653 +479757,56.536,45.83 +479758,57.258,43.599 +479759,58.02,41.23 +479760,58.833,38.696 +479761,55.21,45.781 +479762,55.977,43.578 +479763,56.788,41.24 +479764,57.655,38.742 +479765,53.884,45.731 +479766,54.696,43.556 +479767,55.556,41.251 +479768,56.476,38.789 +479769,52.559,45.679 +479770,53.416,43.534 +479771,54.323,41.262 +479772,55.296,38.838 +479773,51.235,45.625 +479774,52.135,43.512 +479775,53.09,41.274 +479776,54.115,38.89 +479777,49.912,45.569 +479778,50.856,43.488 +479779,51.857,41.287 +479780,52.933,38.943 +479781,48.589,45.512 +479782,49.576,43.465 +479783,50.624,41.3 +479784,51.749,38.998 +479785,47.267,45.454 +479786,48.297,43.441 +479787,49.39,41.314 +479788,50.564,39.054 +479789,45.946,45.394 +479790,47.018,43.416 +479791,48.156,41.329 +479792,49.378,39.113 +479793,44.626,45.333 +479794,45.74,43.391 +479795,46.922,41.344 +479796,48.19,39.173 +479797,43.306,45.27 +479798,44.462,43.366 +479799,45.687,41.36 +479800,47.001,39.235 +479801,41.988,45.205 +479802,43.184,43.34 +479803,44.452,41.376 +479804,45.81,39.299 +479805,40.67,45.139 +479806,41.907,43.314 +479807,43.217,41.393 +479808,44.618,39.364 +479809,39.354,45.072 +479810,40.63,43.287 +479811,41.981,41.411 +479812,43.424,39.43 +479813,38.039,45.004 +479814,39.353,43.26 +479815,40.744,41.429 +479816,42.229,39.499 +479817,36.724,44.934 +479818,38.077,43.233 +479819,39.507,41.448 +479820,41.032,39.568 +479821,35.411,44.862 +479822,36.801,43.205 +479823,38.27,41.467 +479824,39.833,39.64 +479825,34.099,44.79 +479826,35.526,43.177 +479827,37.032,41.487 +479828,38.633,39.712 +479829,32.788,44.716 +479830,34.252,43.148 +479831,35.794,41.508 +479832,37.431,39.786 +479833,31.479,44.641 +479834,32.977,43.119 +479835,34.555,41.529 +479836,36.227,39.861 +479837,30.17,44.565 +479838,31.704,43.09 +479839,33.316,41.55 +479840,35.021,39.937 +479841,28.863,44.488 +479842,30.43,43.061 +479843,32.076,41.572 +479844,33.814,40.015 +479845,27.557,44.409 +479846,29.158,43.031 +479847,30.836,41.594 +479848,32.605,40.094 +479849,26.252,44.329 +479850,27.885,43.001 +479851,29.595,41.617 +479852,31.393,40.174 +479853,24.949,44.249 +479854,26.614,42.97 +479855,28.353,41.641 +479856,30.18,40.254 +479857,23.647,44.167 +479858,25.342,42.94 +479859,27.111,41.664 +479860,28.966,40.336 +479861,22.347,44.084 +479862,24.072,42.909 +479863,25.869,41.688 +479864,27.749,40.419 +479865,21.048,44 +479866,22.802,42.878 +479867,24.626,41.713 +479868,26.53,40.503 +479869,19.75,43.916 +479870,21.532,42.846 +479871,23.382,41.738 +479872,25.309,40.587 +479873,18.454,43.83 +479874,20.263,42.815 +479875,22.138,41.763 +479876,24.087,40.672 +479877,17.16,43.744 +479878,18.995,42.783 +479879,20.893,41.788 +479880,22.862,40.758 +479881,15.867,43.656 +479882,17.727,42.751 +479883,19.648,41.814 +479884,21.636,40.845 +479885,14.575,43.568 +479886,16.46,42.719 +479887,18.402,41.841 +479888,20.407,40.932 +479889,13.285,43.48 +479890,15.193,42.687 +479891,17.155,41.867 +479892,19.177,41.02 +479893,11.997,43.39 +479894,13.927,42.654 +479895,15.908,41.894 +479896,17.944,41.109 +479897,10.711,43.3 +479898,12.661,42.622 +479899,14.66,41.921 +479900,16.71,41.198 +479901,9.4259,43.209 +479902,11.397,42.589 +479903,13.411,41.948 +479904,15.473,41.287 +479905,8.1427,43.118 +479906,10.132,42.556 +479907,12.162,41.976 +479908,14.235,41.377 +479909,6.8613,43.026 +479910,8.8688,42.523 +479911,10.912,42.004 +479912,12.995,41.467 +479913,5.5816,42.933 +479914,7.6059,42.49 +479915,9.6621,42.032 +479916,11.752,41.557 +479917,4.3036,42.84 +479918,6.3436,42.457 +479919,8.4111,42.06 +479920,10.508,41.648 +479921,3.0275,42.747 +479922,5.0819,42.424 +479923,7.1594,42.088 +479924,9.2613,41.739 +479925,1.7531,42.653 +479926,3.8208,42.391 +479927,5.9072,42.117 +479928,8.013,41.83 +479929,0.48061,42.559 +479930,2.5604,42.358 +479931,4.6542,42.146 +479932,6.7626,41.921 +479933,359.21,42.465 +479934,1.3007,42.325 +479935,3.4007,42.174 +479936,5.5104,42.012 +479937,357.94,42.37 +479938,0.041557,42.292 +479939,2.1464,42.203 +479940,4.2561,42.103 +479941,356.67,42.275 +479942,358.78,42.259 +479943,0.89158,42.232 +479944,2.9999,42.195 +479945,355.41,42.18 +479946,357.53,42.226 +479947,359.64,42.261 +479948,1.7418,42.286 +479949,354.15,42.085 +479950,356.27,42.194 +479951,358.38,42.291 +479952,0.4818,42.376 +479953,352.88,41.99 +479954,355.01,42.161 +479955,357.12,42.32 +479956,359.22,42.467 +479957,351.63,41.895 +479958,353.76,42.128 +479959,355.87,42.349 +479960,357.96,42.558 +479961,350.37,41.8 +479962,352.5,42.096 +479963,354.61,42.378 +479964,356.69,42.648 +479965,349.11,41.705 +479966,351.25,42.063 +479967,353.35,42.408 +479968,355.42,42.738 +479969,347.86,41.61 +479970,349.99,42.031 +479971,352.09,42.437 +479972,354.15,42.827 +479973,346.61,41.515 +479974,348.74,41.999 +479975,350.83,42.466 +479976,352.88,42.916 +479977,345.36,41.421 +479978,347.49,41.967 +479979,349.57,42.495 +479980,351.61,43.005 +479981,344.11,41.326 +479982,346.23,41.936 +479983,348.31,42.524 +479984,350.33,43.093 +479985,342.87,41.233 +479986,344.98,41.904 +479987,347.05,42.553 +479988,349.06,43.181 +479989,341.62,41.139 +479990,343.73,41.873 +479991,345.78,42.582 +479992,347.78,43.268 +479993,340.38,41.046 +479994,342.48,41.842 +479995,344.52,42.611 +479996,346.5,43.355 +479997,339.14,40.953 +479998,341.23,41.811 +479999,343.26,42.64 +480000,345.22,43.44 +480001,337.9,40.861 +480002,339.99,41.781 +480003,341.99,42.668 +480004,343.93,43.525 +480005,336.67,40.77 +480006,338.74,41.751 +480007,340.73,42.697 +480008,342.65,43.61 +480009,335.44,40.679 +480010,337.49,41.721 +480011,339.46,42.725 +480012,341.36,43.693 +480013,334.2,40.589 +480014,336.24,41.691 +480015,338.2,42.753 +480016,340.07,43.776 +480017,332.98,40.499 +480018,335,41.662 +480019,336.93,42.781 +480020,338.78,43.858 +480021,331.75,40.41 +480022,333.75,41.634 +480023,335.66,42.809 +480024,337.49,43.939 +480025,330.52,40.323 +480026,332.51,41.605 +480027,334.39,42.836 +480028,336.2,44.019 +480029,329.3,40.236 +480030,331.26,41.577 +480031,333.13,42.863 +480032,334.9,44.099 +480033,328.08,40.149 +480034,330.02,41.55 +480035,331.86,42.89 +480036,333.61,44.177 +480037,326.86,40.064 +480038,328.78,41.522 +480039,330.59,42.917 +480040,332.31,44.254 +480041,325.64,39.98 +480042,327.53,41.496 +480043,329.32,42.943 +480044,331.01,44.33 +480045,324.43,39.897 +480046,326.29,41.469 +480047,328.05,42.97 +480048,329.71,44.405 +480049,323.21,39.816 +480050,325.05,41.444 +480051,326.78,42.995 +480052,328.41,44.479 +480053,322,39.735 +480054,323.81,41.418 +480055,325.51,43.021 +480056,327.11,44.552 +480057,320.79,39.655 +480058,322.57,41.393 +480059,324.23,43.046 +480060,325.8,44.623 +480061,319.58,39.577 +480062,321.33,41.369 +480063,322.96,43.071 +480064,324.5,44.693 +480065,318.38,39.5 +480066,320.09,41.345 +480067,321.69,43.095 +480068,323.19,44.762 +480069,317.17,39.425 +480070,318.85,41.322 +480071,320.41,43.12 +480072,321.88,44.83 +480073,315.97,39.351 +480074,317.61,41.299 +480075,319.14,43.143 +480076,320.57,44.897 +480077,314.77,39.278 +480078,316.38,41.277 +480079,317.87,43.167 +480080,319.26,44.962 +480081,313.57,39.207 +480082,315.14,41.256 +480083,316.59,43.19 +480084,317.95,45.026 +480085,312.37,39.138 +480086,313.9,41.234 +480087,315.32,43.212 +480088,316.64,45.088 +480089,311.18,39.07 +480090,312.67,41.214 +480091,314.04,43.235 +480092,315.32,45.149 +480093,309.98,39.003 +480094,311.43,41.194 +480095,312.76,43.256 +480096,314.01,45.209 +480097,308.79,38.939 +480098,310.2,41.175 +480099,311.49,43.278 +480100,312.69,45.267 +480101,307.6,38.876 +480102,308.96,41.157 +480103,310.21,43.299 +480104,311.38,45.323 +480105,306.41,38.815 +480106,307.73,41.139 +480107,308.93,43.319 +480108,310.06,45.378 +480109,305.22,38.756 +480110,306.49,41.121 +480111,307.66,43.339 +480112,308.74,45.432 +480113,304.04,38.698 +480114,305.26,41.105 +480115,306.38,43.359 +480116,307.42,45.484 +480117,302.85,38.643 +480118,304.03,41.089 +480119,305.1,43.378 +480120,306.1,45.535 +480121,301.67,38.589 +480122,302.79,41.074 +480123,303.82,43.396 +480124,304.78,45.583 +480125,300.49,38.538 +480126,301.56,41.059 +480127,302.54,43.414 +480128,303.46,45.631 +480129,299.3,38.488 +480130,300.33,41.045 +480131,301.26,43.432 +480132,302.13,45.676 +480133,298.12,38.44 +480134,299.1,41.032 +480135,299.99,43.449 +480136,300.81,45.72 +480137,296.94,38.395 +480138,297.86,41.02 +480139,298.71,43.466 +480140,299.49,45.763 +480141,295.77,38.352 +480142,296.63,41.008 +480143,297.43,43.482 +480144,298.16,45.803 +480145,294.59,38.31 +480146,295.4,40.997 +480147,296.15,43.497 +480148,296.84,45.843 +480149,293.41,38.271 +480150,294.17,40.987 +480151,294.87,43.512 +480152,295.51,45.88 +480153,292.24,38.234 +480154,292.94,40.978 +480155,293.58,43.526 +480156,294.18,45.915 +480157,291.07,38.2 +480158,291.71,40.969 +480159,292.3,43.54 +480160,292.86,45.949 +480161,289.89,38.167 +480162,290.48,40.961 +480163,291.02,43.554 +480164,291.53,45.981 +480165,288.72,38.137 +480166,289.25,40.954 +480167,289.74,43.566 +480168,290.2,46.012 +480169,287.55,38.109 +480170,288.02,40.948 +480171,288.46,43.579 +480172,288.87,46.04 +480173,286.38,38.084 +480174,286.79,40.942 +480175,287.18,43.59 +480176,287.55,46.067 +480177,285.21,38.061 +480178,285.56,40.938 +480179,285.9,43.601 +480180,286.22,46.092 +480181,284.03,38.04 +480182,284.33,40.934 +480183,284.62,43.612 +480184,284.89,46.116 +480185,282.87,38.021 +480186,283.1,40.931 +480187,283.33,43.622 +480188,283.56,46.137 +480189,281.7,38.005 +480190,281.87,40.928 +480191,282.05,43.631 +480192,282.23,46.157 +480193,280.53,37.992 +480194,280.64,40.927 +480195,280.77,43.64 +480196,280.9,46.175 +480197,279.36,37.981 +480198,279.41,40.926 +480199,279.49,43.648 +480200,279.57,46.191 +480201,278.19,37.972 +480202,278.19,40.926 +480203,278.21,43.656 +480204,278.24,46.205 +480205,277.02,37.965 +480206,276.96,40.927 +480207,276.92,43.663 +480208,276.91,46.217 +480209,275.85,37.961 +480210,275.73,40.929 +480211,275.64,43.669 +480212,275.58,46.228 +480213,274.68,37.96 +480214,274.5,40.931 +480215,274.36,43.675 +480216,274.25,46.237 +480217,273.51,37.961 +480218,273.27,40.935 +480219,273.08,43.681 +480220,272.92,46.244 +480221,272.34,37.964 +480222,272.04,40.939 +480223,271.79,43.685 +480224,271.59,46.249 +480225,271.17,37.97 +480226,270.81,40.944 +480227,270.51,43.689 +480228,270.26,46.252 +480229,270,37.978 +480230,269.58,40.95 +480231,269.23,43.693 +480232,268.93,46.253 +480233,268.83,37.989 +480234,268.35,40.956 +480235,267.95,43.696 +480236,267.6,46.253 +480237,267.66,38.002 +480238,267.12,40.964 +480239,266.67,43.698 +480240,266.27,46.251 +480241,266.49,38.018 +480242,265.89,40.972 +480243,265.38,43.7 +480244,264.95,46.247 +480245,265.32,38.036 +480246,264.66,40.981 +480247,264.1,43.701 +480248,263.62,46.241 +480249,264.15,38.056 +480250,263.43,40.991 +480251,262.82,43.702 +480252,262.29,46.233 +480253,262.97,38.079 +480254,262.2,41.001 +480255,261.54,43.702 +480256,260.96,46.224 +480257,261.8,38.105 +480258,260.97,41.013 +480259,260.26,43.701 +480260,259.63,46.213 +480261,260.62,38.132 +480262,259.74,41.025 +480263,258.98,43.7 +480264,258.31,46.2 +480265,259.45,38.162 +480266,258.51,41.038 +480267,257.7,43.699 +480268,256.98,46.185 +480269,258.27,38.195 +480270,257.27,41.052 +480271,256.42,43.696 +480272,255.66,46.168 +480273,257.09,38.229 +480274,256.04,41.067 +480275,255.13,43.694 +480276,254.33,46.15 +480277,255.91,38.266 +480278,254.81,41.082 +480279,253.85,43.69 +480280,253.01,46.13 +480281,254.73,38.305 +480282,253.58,41.098 +480283,252.57,43.686 +480284,251.68,46.108 +480285,253.55,38.347 +480286,252.34,41.115 +480287,251.29,43.682 +480288,250.36,46.084 +480289,252.37,38.391 +480290,251.11,41.133 +480291,250.01,43.677 +480292,249.03,46.059 +480293,251.18,38.437 +480294,249.88,41.151 +480295,248.73,43.671 +480296,247.71,46.032 +480297,250,38.485 +480298,248.64,41.17 +480299,247.46,43.665 +480300,246.39,46.003 +480301,248.81,38.535 +480302,247.41,41.19 +480303,246.18,43.658 +480304,245.07,45.973 +480305,247.62,38.587 +480306,246.17,41.211 +480307,244.9,43.651 +480308,243.75,45.941 +480309,246.43,38.642 +480310,244.94,41.232 +480311,243.62,43.644 +480312,242.43,45.907 +480313,245.24,38.698 +480314,243.7,41.254 +480315,242.34,43.636 +480316,241.11,45.872 +480317,244.05,38.757 +480318,242.47,41.277 +480319,241.06,43.627 +480320,239.8,45.835 +480321,242.85,38.817 +480322,241.23,41.301 +480323,239.79,43.618 +480324,238.48,45.797 +480325,241.66,38.88 +480326,239.99,41.325 +480327,238.51,43.608 +480328,237.17,45.757 +480329,240.46,38.944 +480330,238.75,41.35 +480331,237.23,43.598 +480332,235.85,45.715 +480333,239.26,39.01 +480334,237.52,41.375 +480335,235.96,43.587 +480336,234.54,45.672 +480337,238.06,39.078 +480338,236.28,41.401 +480339,234.68,43.576 +480340,233.23,45.627 +480341,236.85,39.148 +480342,235.04,41.428 +480343,233.41,43.565 +480344,231.92,45.581 +480345,235.65,39.22 +480346,233.8,41.456 +480347,232.13,43.553 +480348,230.61,45.533 +480349,234.44,39.293 +480350,232.56,41.484 +480351,230.86,43.541 +480352,229.3,45.484 +480353,233.23,39.368 +480354,231.32,41.512 +480355,229.58,43.528 +480356,227.99,45.434 +480357,232.02,39.445 +480358,230.07,41.542 +480359,228.31,43.515 +480360,226.69,45.382 +480361,230.81,39.523 +480362,228.83,41.571 +480363,227.04,43.501 +480364,225.38,45.329 +480365,229.59,39.602 +480366,227.59,41.602 +480367,225.76,43.487 +480368,224.08,45.274 +480369,228.38,39.683 +480370,226.35,41.633 +480371,224.49,43.473 +480372,222.78,45.218 +480373,227.16,39.766 +480374,225.1,41.664 +480375,223.22,43.458 +480376,221.47,45.161 +480377,225.94,39.85 +480378,223.86,41.696 +480379,221.95,43.443 +480380,220.18,45.102 +480381,224.71,39.935 +480382,222.61,41.729 +480383,220.68,43.427 +480384,218.88,45.043 +480385,223.49,40.022 +480386,221.36,41.762 +480387,219.41,43.412 +480388,217.58,44.982 +480389,222.26,40.109 +480390,220.12,41.795 +480391,218.14,43.395 +480392,216.29,44.92 +480393,221.03,40.198 +480394,218.87,41.829 +480395,216.87,43.379 +480396,214.99,44.856 +480397,219.8,40.288 +480398,217.62,41.864 +480399,215.6,43.362 +480400,213.7,44.792 +480401,218.57,40.38 +480402,216.37,41.899 +480403,214.33,43.345 +480404,212.41,44.727 +480405,217.33,40.472 +480406,215.12,41.934 +480407,213.06,43.328 +480408,211.12,44.66 +480409,216.09,40.565 +480410,213.87,41.97 +480411,211.79,43.31 +480412,209.83,44.593 +480413,214.85,40.659 +480414,212.62,42.006 +480415,210.53,43.293 +480416,208.55,44.524 +480417,213.61,40.754 +480418,211.37,42.043 +480419,209.26,43.274 +480420,207.26,44.455 +480421,212.37,40.85 +480422,210.12,42.08 +480423,208,43.256 +480424,205.98,44.384 +480425,211.12,40.947 +480426,208.87,42.117 +480427,206.73,43.238 +480428,204.7,44.313 +480429,209.87,41.044 +480430,207.61,42.155 +480431,205.47,43.219 +480432,203.42,44.241 +480433,208.62,41.143 +480434,206.36,42.193 +480435,204.2,43.2 +480436,202.14,44.168 +480437,207.37,41.241 +480438,205.1,42.231 +480439,202.94,43.181 +480440,200.87,44.095 +480441,206.12,41.341 +480442,203.85,42.269 +480443,201.68,43.162 +480444,199.59,44.021 +480445,204.86,41.441 +480446,202.59,42.308 +480447,200.42,43.142 +480448,198.32,43.946 +480449,203.6,41.541 +480450,201.33,42.347 +480451,199.15,43.123 +480452,197.05,43.87 +480453,202.34,41.642 +480454,200.08,42.387 +480455,197.89,43.103 +480456,195.78,43.794 +480457,201.08,41.743 +480458,198.82,42.426 +480459,196.63,43.084 +480460,194.52,43.717 +480461,199.81,41.844 +480462,197.56,42.466 +480463,195.37,43.064 +480464,193.25,43.639 +480465,198.55,41.946 +480466,196.3,42.506 +480467,194.12,43.044 +480468,191.99,43.562 +480469,197.28,42.048 +480470,195.04,42.546 +480471,192.86,43.024 +480472,190.73,43.483 +480473,196.01,42.151 +480474,193.78,42.587 +480475,191.6,43.004 +480476,189.47,43.405 +480477,194.73,42.253 +480478,192.52,42.627 +480479,190.34,42.984 +480480,188.21,43.326 +480481,193.46,42.356 +480482,191.25,42.668 +480483,189.09,42.964 +480484,186.96,43.246 +480485,192.18,42.458 +480486,189.99,42.708 +480487,187.83,42.944 +480488,185.7,43.167 +480489,190.91,42.561 +480490,188.72,42.749 +480491,186.57,42.924 +480492,184.45,43.087 +480493,189.62,42.663 +480494,187.46,42.79 +480495,185.32,42.905 +480496,183.2,43.007 +480497,188.34,42.766 +480498,186.19,42.831 +480499,184.07,42.885 +480500,181.95,42.927 +480501,187.06,42.868 +480502,184.93,42.872 +480503,182.81,42.865 +480504,180.71,42.846 +480505,185.77,42.97 +480506,183.66,42.913 +480507,181.56,42.845 +480508,179.46,42.766 +480509,184.49,43.072 +480510,182.39,42.954 +480511,180.31,42.826 +480512,178.22,42.686 +480513,183.2,43.173 +480514,181.13,42.996 +480515,179.05,42.806 +480516,176.98,42.605 +480517,181.9,43.274 +480518,179.86,43.037 +480519,177.8,42.787 +480520,175.74,42.525 +480521,180.61,43.375 +480522,178.59,43.078 +480523,176.55,42.768 +480524,174.51,42.445 +480525,179.32,43.476 +480526,177.32,43.119 +480527,175.3,42.748 +480528,173.27,42.365 +480529,178.02,43.576 +480530,176.05,43.16 +480531,174.05,42.73 +480532,172.04,42.286 +480533,176.72,43.675 +480534,174.77,43.201 +480535,172.8,42.711 +480536,170.81,42.206 +480537,175.42,43.774 +480538,173.5,43.242 +480539,171.56,42.692 +480540,169.58,42.127 +480541,174.12,43.873 +480542,172.23,43.282 +480543,170.31,42.674 +480544,168.36,42.049 +480545,172.82,43.97 +480546,170.96,43.323 +480547,169.06,42.656 +480548,167.13,41.97 +480549,171.52,44.068 +480550,169.68,43.363 +480551,167.81,42.638 +480552,165.91,41.893 +480553,170.21,44.164 +480554,168.41,43.404 +480555,166.57,42.621 +480556,164.69,41.815 +480557,168.9,44.26 +480558,167.13,43.444 +480559,165.32,42.604 +480560,163.47,41.739 +480561,167.59,44.355 +480562,165.86,43.484 +480563,164.08,42.587 +480564,162.25,41.663 +480565,166.28,44.449 +480566,164.58,43.524 +480567,162.83,42.57 +480568,161.04,41.587 +480569,164.97,44.542 +480570,163.3,43.563 +480571,161.59,42.554 +480572,159.83,41.512 +480573,163.66,44.634 +480574,162.03,43.603 +480575,160.35,42.538 +480576,158.61,41.438 +480577,162.35,44.726 +480578,160.75,43.642 +480579,159.1,42.522 +480580,157.4,41.365 +480581,161.03,44.816 +480582,159.47,43.681 +480583,157.86,42.507 +480584,156.2,41.293 +480585,159.71,44.906 +480586,158.19,43.72 +480587,156.62,42.492 +480588,154.99,41.221 +480589,158.4,44.994 +480590,156.91,43.758 +480591,155.38,42.478 +480592,153.79,41.151 +480593,157.08,45.082 +480594,155.63,43.796 +480595,154.14,42.464 +480596,152.58,41.081 +480597,155.76,45.168 +480598,154.35,43.834 +480599,152.89,42.451 +480600,151.38,41.013 +480601,154.44,45.253 +480602,153.07,43.872 +480603,151.65,42.437 +480604,150.18,40.946 +480605,153.11,45.337 +480606,151.79,43.909 +480607,150.41,42.425 +480608,148.99,40.879 +480609,151.79,45.42 +480610,150.51,43.946 +480611,149.17,42.413 +480612,147.79,40.814 +480613,150.47,45.502 +480614,149.22,43.983 +480615,147.94,42.401 +480616,146.59,40.75 +480617,149.14,45.582 +480618,147.94,44.019 +480619,146.7,42.39 +480620,145.4,40.688 +480621,147.81,45.661 +480622,146.66,44.055 +480623,145.46,42.379 +480624,144.21,40.627 +480625,146.49,45.739 +480626,145.37,44.09 +480627,144.22,42.369 +480628,143.02,40.567 +480629,145.16,45.815 +480630,144.09,44.125 +480631,142.98,42.359 +480632,141.83,40.508 +480633,143.83,45.891 +480634,142.81,44.16 +480635,141.75,42.35 +480636,140.64,40.451 +480637,142.5,45.964 +480638,141.52,44.194 +480639,140.51,42.341 +480640,139.46,40.395 +480641,141.17,46.037 +480642,140.24,44.228 +480643,139.27,42.333 +480644,138.27,40.341 +480645,139.84,46.108 +480646,138.95,44.262 +480647,138.03,42.326 +480648,137.09,40.289 +480649,138.51,46.177 +480650,137.66,44.295 +480651,136.8,42.319 +480652,135.9,40.238 +480653,137.17,46.245 +480654,136.38,44.327 +480655,135.56,42.313 +480656,134.72,40.189 +480657,135.84,46.312 +480658,135.09,44.359 +480659,134.33,42.307 +480660,133.54,40.141 +480661,134.5,46.377 +480662,133.8,44.391 +480663,133.09,42.302 +480664,132.36,40.095 +480665,133.17,46.441 +480666,132.52,44.422 +480667,131.86,42.298 +480668,131.18,40.051 +480669,131.84,46.502 +480670,131.23,44.453 +480671,130.62,42.294 +480672,130.01,40.009 +480673,130.5,46.563 +480674,129.94,44.483 +480675,129.39,42.291 +480676,128.83,39.969 +480677,129.16,46.622 +480678,128.65,44.513 +480679,128.15,42.289 +480680,127.65,39.93 +480681,127.83,46.679 +480682,127.37,44.542 +480683,126.92,42.287 +480684,126.48,39.893 +480685,126.49,46.735 +480686,126.08,44.571 +480687,125.68,42.286 +480688,125.3,39.858 +480689,125.15,46.788 +480690,124.79,44.599 +480691,124.45,42.286 +480692,124.13,39.826 +480693,123.81,46.841 +480694,123.5,44.627 +480695,123.21,42.286 +480696,122.96,39.795 +480697,122.48,46.891 +480698,122.21,44.654 +480699,121.98,42.287 +480700,121.78,39.766 +480701,121.14,46.94 +480702,120.92,44.681 +480703,120.74,42.289 +480704,120.61,39.739 +480705,119.8,46.988 +480706,119.63,44.707 +480707,119.51,42.291 +480708,119.44,39.715 +480709,118.46,47.033 +480710,118.35,44.733 +480711,118.28,42.294 +480712,118.27,39.692 +480713,117.12,47.077 +480714,117.06,44.758 +480715,117.04,42.298 +480716,117.09,39.672 +480717,115.78,47.119 +480718,115.77,44.782 +480719,115.81,42.303 +480720,115.92,39.653 +480721,114.44,47.16 +480722,114.48,44.806 +480723,114.57,42.308 +480724,114.75,39.637 +480725,113.11,47.198 +480726,113.19,44.829 +480727,113.34,42.314 +480728,113.58,39.623 +480729,111.77,47.235 +480730,111.9,44.852 +480731,112.1,42.321 +480732,112.41,39.611 +480733,110.43,47.271 +480734,110.61,44.875 +480735,110.87,42.329 +480736,111.24,39.602 +480737,109.09,47.304 +480738,109.32,44.896 +480739,109.63,42.337 +480740,110.06,39.595 +480741,107.75,47.336 +480742,108.03,44.917 +480743,108.4,42.346 +480744,108.89,39.589 +480745,106.41,47.366 +480746,106.74,44.938 +480747,107.16,42.356 +480748,107.72,39.587 +480749,105.07,47.394 +480750,105.45,44.958 +480751,105.93,42.367 +480752,106.55,39.586 +480753,103.73,47.42 +480754,104.16,44.977 +480755,104.69,42.378 +480756,105.37,39.588 +480757,102.4,47.445 +480758,102.87,44.996 +480759,103.46,42.39 +480760,104.2,39.592 +480761,101.06,47.467 +480762,101.58,45.014 +480763,102.22,42.403 +480764,103.02,39.598 +480765,99.72,47.488 +480766,100.29,45.032 +480767,100.99,42.417 +480768,101.85,39.607 +480769,98.383,47.507 +480770,99.003,45.049 +480771,99.75,42.431 +480772,100.67,39.618 +480773,97.046,47.525 +480774,97.713,45.066 +480775,98.513,42.446 +480776,99.495,39.631 +480777,95.71,47.541 +480778,96.424,45.082 +480779,97.276,42.462 +480780,98.317,39.647 +480781,94.374,47.554 +480782,95.135,45.097 +480783,96.039,42.479 +480784,97.139,39.664 +480785,93.038,47.566 +480786,93.846,45.112 +480787,94.801,42.496 +480788,95.959,39.685 +480789,91.703,47.577 +480790,92.557,45.126 +480791,93.564,42.515 +480792,94.778,39.707 +480793,90.369,47.585 +480794,91.269,45.14 +480795,92.325,42.534 +480796,93.597,39.732 +480797,89.035,47.592 +480798,89.98,45.153 +480799,91.087,42.553 +480800,92.414,39.759 +480801,87.702,47.597 +480802,88.692,45.165 +480803,89.848,42.574 +480804,91.23,39.788 +480805,86.369,47.6 +480806,87.404,45.177 +480807,88.608,42.595 +480808,90.044,39.82 +480809,85.037,47.602 +480810,86.116,45.188 +480811,87.369,42.617 +480812,88.857,39.853 +480813,83.706,47.602 +480814,84.829,45.199 +480815,86.128,42.64 +480816,87.669,39.889 +480817,82.376,47.6 +480818,83.542,45.209 +480819,84.888,42.663 +480820,86.48,39.928 +480821,81.046,47.596 +480822,82.255,45.219 +480823,83.646,42.688 +480824,85.288,39.968 +480825,79.717,47.591 +480826,80.968,45.228 +480827,82.405,42.713 +480828,84.096,40.011 +480829,78.389,47.584 +480830,79.681,45.237 +480831,81.162,42.738 +480832,82.901,40.056 +480833,77.062,47.575 +480834,78.395,45.245 +480835,79.92,42.765 +480836,81.705,40.102 +480837,75.736,47.564 +480838,77.109,45.252 +480839,78.677,42.792 +480840,80.508,40.152 +480841,74.411,47.552 +480842,75.824,45.259 +480843,77.433,42.82 +480844,79.308,40.203 +480845,73.087,47.538 +480846,74.538,45.265 +480847,76.188,42.848 +480848,78.107,40.256 +480849,71.764,47.523 +480850,73.253,45.271 +480851,74.944,42.877 +480852,76.904,40.311 +480853,70.442,47.506 +480854,71.969,45.277 +480855,73.698,42.907 +480856,75.699,40.369 +480857,69.121,47.488 +480858,70.685,45.281 +480859,72.452,42.938 +480860,74.492,40.428 +480861,67.801,47.467 +480862,69.401,45.286 +480863,71.205,42.969 +480864,73.284,40.489 +480865,66.482,47.446 +480866,68.117,45.29 +480867,69.958,43.001 +480868,72.073,40.553 +480869,65.164,47.422 +480870,66.834,45.293 +480871,68.71,43.033 +480872,70.86,40.618 +480873,63.848,47.397 +480874,65.551,45.296 +480875,67.462,43.067 +480876,69.645,40.685 +480877,62.532,47.371 +480878,64.269,45.298 +480879,66.213,43.1 +480880,68.429,40.754 +480881,61.218,47.343 +480882,62.987,45.3 +480883,64.963,43.135 +480884,67.21,40.824 +480885,59.906,47.314 +480886,61.706,45.302 +480887,63.712,43.17 +480888,65.989,40.897 +480889,58.594,47.283 +480890,60.425,45.303 +480891,62.461,43.206 +480892,64.766,40.971 +480893,57.284,47.251 +480894,59.144,45.303 +480895,61.209,43.242 +480896,63.54,41.047 +480897,55.975,47.218 +480898,57.864,45.303 +480899,59.957,43.279 +480900,62.313,41.124 +480901,54.668,47.183 +480902,56.585,45.303 +480903,58.704,43.316 +480904,61.083,41.203 +480905,53.362,47.146 +480906,55.306,45.302 +480907,57.45,43.354 +480908,59.852,41.284 +480909,52.057,47.109 +480910,54.027,45.301 +480911,56.195,43.393 +480912,58.617,41.366 +480913,50.754,47.07 +480914,52.749,45.3 +480915,54.94,43.432 +480916,57.381,41.45 +480917,49.453,47.03 +480918,51.471,45.298 +480919,53.684,43.471 +480920,56.143,41.535 +480921,48.153,46.988 +480922,50.194,45.295 +480923,52.427,43.511 +480924,54.902,41.621 +480925,46.854,46.945 +480926,48.917,45.293 +480927,51.169,43.552 +480928,53.659,41.709 +480929,45.557,46.902 +480930,47.641,45.29 +480931,49.911,43.593 +480932,52.414,41.798 +480933,44.262,46.856 +480934,46.366,45.286 +480935,48.652,43.635 +480936,51.166,41.889 +480937,42.968,46.81 +480938,45.09,45.283 +480939,47.392,43.677 +480940,49.917,41.981 +480941,41.676,46.763 +480942,43.816,45.279 +480943,46.132,43.719 +480944,48.665,42.073 +480945,40.386,46.715 +480946,42.542,45.274 +480947,44.87,43.762 +480948,47.41,42.167 +480949,39.097,46.665 +480950,41.268,45.27 +480951,43.608,43.805 +480952,46.154,42.263 +480953,37.81,46.615 +480954,39.996,45.265 +480955,42.345,43.849 +480956,44.895,42.359 +480957,36.524,46.563 +480958,38.723,45.259 +480959,41.082,43.893 +480960,43.634,42.456 +480961,35.241,46.511 +480962,37.451,45.254 +480963,39.818,43.937 +480964,42.371,42.554 +480965,33.959,46.458 +480966,36.18,45.248 +480967,38.552,43.982 +480968,41.106,42.653 +480969,32.678,46.403 +480970,34.909,45.242 +480971,37.287,44.027 +480972,39.838,42.753 +480973,31.4,46.348 +480974,33.639,45.236 +480975,36.02,44.073 +480976,38.568,42.853 +480977,30.123,46.292 +480978,32.37,45.23 +480979,34.753,44.119 +480980,37.296,42.955 +480981,28.848,46.236 +480982,31.101,45.223 +480983,33.484,44.165 +480984,36.022,43.057 +480985,27.575,46.178 +480986,29.832,45.216 +480987,32.215,44.211 +480988,34.746,43.16 +480989,26.304,46.12 +480990,28.565,45.209 +480991,30.946,44.258 +480992,33.468,43.263 +480993,25.035,46.062 +480994,27.297,45.202 +480995,29.675,44.305 +480996,32.187,43.367 +480997,23.767,46.002 +480998,26.031,45.195 +480999,28.404,44.352 +481000,30.904,43.471 +481001,22.502,45.942 +481002,24.765,45.187 +481003,27.132,44.4 +481004,29.62,43.576 +481005,21.238,45.882 +481006,23.499,45.18 +481007,25.859,44.447 +481008,28.333,43.682 +481009,19.976,45.821 +481010,22.234,45.172 +481011,24.586,44.495 +481012,27.044,43.788 +481013,18.716,45.759 +481014,20.97,45.164 +481015,23.312,44.543 +481016,25.753,43.894 +481017,17.458,45.697 +481018,19.706,45.156 +481019,22.037,44.592 +481020,24.46,44 +481021,16.201,45.635 +481022,18.443,45.149 +481023,20.761,44.64 +481024,23.166,44.107 +481025,14.947,45.572 +481026,17.18,45.141 +481027,19.485,44.688 +481028,21.869,44.213 +481029,13.695,45.509 +481030,15.918,45.133 +481031,18.208,44.737 +481032,20.57,44.32 +481033,12.444,45.445 +481034,14.657,45.125 +481035,16.93,44.786 +481036,19.27,44.427 +481037,11.195,45.382 +481038,13.396,45.117 +481039,15.651,44.835 +481040,17.967,44.534 +481041,9.9488,45.318 +481042,12.135,45.109 +481043,14.372,44.883 +481044,16.663,44.641 +481045,8.704,45.254 +481046,10.875,45.101 +481047,13.092,44.932 +481048,15.357,44.748 +481049,7.4611,45.19 +481050,9.6162,45.093 +481051,11.811,44.981 +481052,14.049,44.855 +481053,6.2201,45.126 +481054,8.3575,45.085 +481055,10.53,45.031 +481056,12.74,44.962 +481057,4.981,45.061 +481058,7.0994,45.077 +481059,9.2478,45.08 +481060,11.428,45.069 +481061,3.7437,44.997 +481062,5.8418,45.069 +481063,7.9651,45.129 +481064,10.115,45.175 +481065,2.5084,44.933 +481066,4.5847,45.061 +481067,6.6817,45.178 +481068,8.8008,45.281 +481069,1.275,44.869 +481070,3.3282,45.054 +481071,5.3976,45.227 +481072,7.4845,45.387 +481073,0.043386,44.805 +481074,2.0722,45.046 +481075,4.1129,45.276 +481076,6.1666,45.493 +481077,358.81,44.741 +481078,0.81668,45.039 +481079,2.8275,45.325 +481080,4.8472,45.598 +481081,357.59,44.678 +481082,359.56,45.032 +481083,1.5415,45.374 +481084,3.5262,45.702 +481085,356.36,44.615 +481086,358.31,45.025 +481087,0.25492,45.422 +481088,2.2037,45.807 +481089,355.14,44.552 +481090,357.05,45.018 +481091,358.97,45.471 +481092,0.87973,45.91 +481093,353.91,44.489 +481094,355.8,45.011 +481095,357.68,45.52 +481096,359.55,46.014 +481097,352.69,44.427 +481098,354.55,45.005 +481099,356.39,45.568 +481100,358.23,46.116 +481101,351.47,44.365 +481102,353.29,44.998 +481103,355.1,45.616 +481104,356.9,46.218 +481105,350.26,44.304 +481106,352.04,44.992 +481107,353.81,45.665 +481108,355.57,46.319 +481109,349.04,44.243 +481110,350.79,44.987 +481111,352.52,45.712 +481112,354.24,46.42 +481113,347.83,44.183 +481114,349.54,44.981 +481115,351.23,45.76 +481116,352.91,46.52 +481117,346.62,44.123 +481118,348.29,44.976 +481119,349.94,45.808 +481120,351.57,46.619 +481121,345.4,44.065 +481122,347.04,44.971 +481123,348.65,45.855 +481124,350.24,46.717 +481125,344.2,44.006 +481126,345.79,44.966 +481127,347.36,45.902 +481128,348.9,46.814 +481129,342.99,43.949 +481130,344.54,44.962 +481131,346.06,45.949 +481132,347.57,46.911 +481133,341.78,43.892 +481134,343.29,44.958 +481135,344.77,45.996 +481136,346.23,47.007 +481137,340.58,43.837 +481138,342.04,44.954 +481139,343.48,46.043 +481140,344.89,47.101 +481141,339.38,43.782 +481142,340.79,44.951 +481143,342.18,46.089 +481144,343.55,47.195 +481145,338.18,43.728 +481146,339.54,44.948 +481147,340.89,46.135 +481148,342.21,47.288 +481149,336.98,43.675 +481150,338.3,44.946 +481151,339.59,46.18 +481152,340.87,47.379 +481153,335.78,43.622 +481154,337.05,44.943 +481155,338.3,46.225 +481156,339.52,47.47 +481157,334.58,43.571 +481158,335.8,44.942 +481159,337,46.27 +481160,338.18,47.559 +481161,333.39,43.522 +481162,334.56,44.94 +481163,335.7,46.315 +481164,336.84,47.647 +481165,332.19,43.473 +481166,333.31,44.939 +481167,334.41,46.359 +481168,335.49,47.735 +481169,331,43.425 +481170,332.06,44.939 +481171,333.11,46.403 +481172,334.14,47.821 +481173,329.81,43.379 +481174,330.82,44.939 +481175,331.81,46.447 +481176,332.8,47.905 +481177,328.61,43.333 +481178,329.57,44.939 +481179,330.52,46.49 +481180,331.45,47.989 +481181,327.43,43.289 +481182,328.33,44.94 +481183,329.22,46.533 +481184,330.1,48.071 +481185,326.24,43.247 +481186,327.08,44.942 +481187,327.92,46.575 +481188,328.75,48.152 +481189,325.05,43.206 +481190,325.84,44.944 +481191,326.62,46.617 +481192,327.4,48.232 +481193,323.86,43.166 +481194,324.59,44.946 +481195,325.32,46.659 +481196,326.05,48.31 +481197,322.68,43.127 +481198,323.35,44.949 +481199,324.02,46.7 +481200,324.7,48.387 +481201,321.49,43.09 +481202,322.1,44.952 +481203,322.72,46.741 +481204,323.35,48.462 +481205,320.31,43.055 +481206,320.86,44.956 +481207,321.42,46.781 +481208,322,48.536 +481209,319.12,43.021 +481210,319.61,44.961 +481211,320.12,46.821 +481212,320.65,48.609 +481213,317.94,42.988 +481214,318.37,44.966 +481215,318.82,46.861 +481216,319.29,48.68 +481217,316.76,42.957 +481218,317.12,44.972 +481219,317.52,46.9 +481220,317.94,48.75 +481221,315.58,42.928 +481222,315.88,44.978 +481223,316.22,46.938 +481224,316.59,48.818 +481225,314.4,42.901 +481226,314.64,44.985 +481227,314.92,46.976 +481228,315.23,48.885 +481229,313.22,42.875 +481230,313.39,44.992 +481231,313.62,47.014 +481232,313.88,48.951 +481233,312.04,42.851 +481234,312.15,45 +481235,312.32,47.051 +481236,312.53,49.014 +481237,310.86,42.828 +481238,310.9,45.009 +481239,311.01,47.087 +481240,311.17,49.076 +481241,309.68,42.808 +481242,309.66,45.018 +481243,309.71,47.123 +481244,309.82,49.137 +481245,308.5,42.789 +481246,308.42,45.028 +481247,308.41,47.159 +481248,308.47,49.196 +481249,307.32,42.772 +481250,307.17,45.038 +481251,307.11,47.194 +481252,307.11,49.254 +481253,306.14,42.757 +481254,305.93,45.049 +481255,305.81,47.228 +481256,305.76,49.309 +481257,304.96,42.743 +481258,304.68,45.061 +481259,304.5,47.263 +481260,304.4,49.364 +481261,303.78,42.732 +481262,303.44,45.073 +481263,303.2,47.296 +481264,303.05,49.416 +481265,302.6,42.722 +481266,302.19,45.086 +481267,301.9,47.329 +481268,301.69,49.467 +481269,301.42,42.715 +481270,300.95,45.1 +481271,300.6,47.361 +481272,300.34,49.517 +481273,300.24,42.709 +481274,299.7,45.114 +481275,299.3,47.393 +481276,298.99,49.564 +481277,299.06,42.705 +481278,298.46,45.129 +481279,297.99,47.425 +481280,297.63,49.61 +481281,297.88,42.703 +481282,297.21,45.144 +481283,296.69,47.455 +481284,296.28,49.655 +481285,296.7,42.704 +481286,295.97,45.161 +481287,295.39,47.486 +481288,294.93,49.697 +481289,295.52,42.706 +481290,294.72,45.178 +481291,294.09,47.515 +481292,293.57,49.738 +481293,294.33,42.71 +481294,293.48,45.195 +481295,292.79,47.544 +481296,292.22,49.778 +481297,293.15,42.716 +481298,292.23,45.213 +481299,291.48,47.573 +481300,290.87,49.815 +481301,291.97,42.725 +481302,290.99,45.232 +481303,290.18,47.601 +481304,289.52,49.851 +481305,290.78,42.735 +481306,289.74,45.252 +481307,288.88,47.628 +481308,288.16,49.885 +481309,289.6,42.747 +481310,288.49,45.272 +481311,287.58,47.655 +481312,286.81,49.918 +481313,288.41,42.762 +481314,287.24,45.293 +481315,286.28,47.682 +481316,285.46,49.949 +481317,287.23,42.778 +481318,286,45.315 +481319,284.98,47.707 +481320,284.11,49.978 +481321,286.04,42.797 +481322,284.75,45.337 +481323,283.67,47.733 +481324,282.76,50.005 +481325,284.85,42.818 +481326,283.5,45.36 +481327,282.37,47.757 +481328,281.41,50.031 +481329,283.66,42.84 +481330,282.25,45.384 +481331,281.07,47.781 +481332,280.07,50.055 +481333,282.47,42.865 +481334,281,45.408 +481335,279.77,47.805 +481336,278.72,50.077 +481337,281.27,42.892 +481338,279.75,45.433 +481339,278.47,47.828 +481340,277.37,50.098 +481341,280.08,42.921 +481342,278.5,45.459 +481343,277.17,47.85 +481344,276.03,50.117 +481345,278.88,42.952 +481346,277.25,45.485 +481347,275.87,47.872 +481348,274.68,50.134 +481349,277.69,42.984 +481350,276,45.513 +481351,274.57,47.893 +481352,273.34,50.15 +481353,276.49,43.019 +481354,274.75,45.54 +481355,273.27,47.914 +481356,271.99,50.163 +481357,275.29,43.056 +481358,273.5,45.569 +481359,271.97,47.934 +481360,270.65,50.176 +481361,274.09,43.095 +481362,272.24,45.598 +481363,270.67,47.954 +481364,269.31,50.186 +481365,272.89,43.136 +481366,270.99,45.627 +481367,269.37,47.973 +481368,267.97,50.195 +481369,271.68,43.179 +481370,269.74,45.658 +481371,268.08,47.991 +481372,266.63,50.203 +481373,270.47,43.224 +481374,268.48,45.689 +481375,266.78,48.009 +481376,265.29,50.208 +481377,269.27,43.271 +481378,267.23,45.721 +481379,265.48,48.027 +481380,263.95,50.212 +481381,268.06,43.32 +481382,265.97,45.753 +481383,264.18,48.044 +481384,262.61,50.215 +481385,266.84,43.371 +481386,264.72,45.786 +481387,262.89,48.06 +481388,261.28,50.216 +481389,265.63,43.424 +481390,263.46,45.819 +481391,261.59,48.076 +481392,259.94,50.215 +481393,264.41,43.478 +481394,262.2,45.854 +481395,260.29,48.091 +481396,258.61,50.213 +481397,263.2,43.535 +481398,260.95,45.888 +481399,259,48.106 +481400,257.27,50.209 +481401,261.98,43.593 +481402,259.69,45.924 +481403,257.7,48.12 +481404,255.94,50.203 +481405,260.75,43.653 +481406,258.43,45.96 +481407,256.41,48.134 +481408,254.61,50.197 +481409,259.53,43.715 +481410,257.17,45.996 +481411,255.11,48.148 +481412,253.28,50.188 +481413,258.3,43.779 +481414,255.91,46.034 +481415,253.82,48.16 +481416,251.96,50.178 +481417,257.08,43.844 +481418,254.65,46.071 +481419,252.52,48.173 +481420,250.63,50.167 +481421,255.85,43.911 +481422,253.39,46.11 +481423,251.23,48.185 +481424,249.3,50.154 +481425,254.61,43.98 +481426,252.12,46.149 +481427,249.94,48.196 +481428,247.98,50.14 +481429,253.38,44.05 +481430,250.86,46.188 +481431,248.64,48.207 +481432,246.66,50.124 +481433,252.14,44.122 +481434,249.6,46.228 +481435,247.35,48.217 +481436,245.34,50.107 +481437,250.9,44.196 +481438,248.33,46.269 +481439,246.06,48.227 +481440,244.02,50.089 +481441,249.66,44.271 +481442,247.07,46.31 +481443,244.77,48.237 +481444,242.7,50.069 +481445,248.42,44.348 +481446,245.8,46.352 +481447,243.48,48.246 +481448,241.38,50.048 +481449,247.17,44.426 +481450,244.53,46.394 +481451,242.19,48.255 +481452,240.07,50.025 +481453,245.92,44.506 +481454,243.27,46.436 +481455,240.9,48.263 +481456,238.75,50.001 +481457,244.67,44.587 +481458,242,46.48 +481459,239.61,48.271 +481460,237.44,49.976 +481461,243.42,44.67 +481462,240.73,46.523 +481463,238.32,48.279 +481464,236.13,49.95 +481465,242.16,44.754 +481466,239.46,46.567 +481467,237.03,48.286 +481468,234.82,49.923 +481469,240.91,44.839 +481470,238.19,46.612 +481471,235.74,48.293 +481472,233.51,49.894 +481473,239.65,44.925 +481474,236.92,46.657 +481475,234.46,48.299 +481476,232.21,49.864 +481477,238.38,45.013 +481478,235.65,46.702 +481479,233.17,48.305 +481480,230.9,49.833 +481481,237.12,45.102 +481482,234.37,46.748 +481483,231.88,48.311 +481484,229.6,49.801 +481485,235.85,45.192 +481486,233.1,46.794 +481487,230.6,48.316 +481488,228.3,49.768 +481489,234.58,45.283 +481490,231.82,46.841 +481491,229.31,48.321 +481492,227,49.734 +481493,233.31,45.376 +481494,230.55,46.888 +481495,228.03,48.326 +481496,225.7,49.699 +481497,232.04,45.469 +481498,229.27,46.935 +481499,226.74,48.33 +481500,224.41,49.662 +481501,230.76,45.563 +481502,228,46.983 +481503,225.46,48.334 +481504,223.11,49.625 +481505,229.48,45.658 +481506,226.72,47.031 +481507,224.18,48.338 +481508,221.82,49.587 +481509,228.2,45.755 +481510,225.44,47.08 +481511,222.9,48.341 +481512,220.53,49.548 +481513,226.92,45.852 +481514,224.16,47.128 +481515,221.62,48.345 +481516,219.24,49.508 +481517,225.63,45.949 +481518,222.88,47.177 +481519,220.33,48.348 +481520,217.96,49.467 +481521,224.35,46.048 +481522,221.6,47.227 +481523,219.05,48.351 +481524,216.67,49.426 +481525,223.06,46.147 +481526,220.32,47.276 +481527,217.77,48.353 +481528,215.39,49.384 +481529,221.76,46.248 +481530,219.04,47.326 +481531,216.49,48.355 +481532,214.11,49.34 +481533,220.47,46.348 +481534,217.75,47.376 +481535,215.22,48.357 +481536,212.83,49.297 +481537,219.17,46.45 +481538,216.47,47.427 +481539,213.94,48.359 +481540,211.55,49.252 +481541,217.88,46.552 +481542,215.19,47.478 +481543,212.66,48.361 +481544,210.27,49.207 +481545,216.58,46.654 +481546,213.9,47.528 +481547,211.38,48.363 +481548,209,49.161 +481549,215.27,46.757 +481550,212.62,47.579 +481551,210.11,48.364 +481552,207.73,49.115 +481553,213.97,46.86 +481554,211.33,47.631 +481555,208.83,48.365 +481556,206.46,49.068 +481557,212.66,46.964 +481558,210.04,47.682 +481559,207.56,48.367 +481560,205.19,49.021 +481561,211.35,47.068 +481562,208.75,47.734 +481563,206.28,48.368 +481564,203.92,48.973 +481565,210.04,47.173 +481566,207.46,47.785 +481567,205.01,48.368 +481568,202.66,48.925 +481569,208.73,47.277 +481570,206.17,47.837 +481571,203.73,48.369 +481572,201.39,48.876 +481573,207.41,47.382 +481574,204.88,47.889 +481575,202.46,48.37 +481576,200.13,48.827 +481577,206.1,47.487 +481578,203.59,47.941 +481579,201.19,48.371 +481580,198.87,48.778 +481581,204.78,47.592 +481582,202.3,47.994 +481583,199.92,48.371 +481584,197.62,48.728 +481585,203.46,47.698 +481586,201.01,48.046 +481587,198.64,48.372 +481588,196.36,48.678 +481589,202.14,47.803 +481590,199.71,48.098 +481591,197.37,48.373 +481592,195.11,48.628 +481593,200.81,47.908 +481594,198.42,48.151 +481595,196.1,48.373 +481596,193.86,48.578 +481597,199.49,48.014 +481598,197.12,48.203 +481599,194.83,48.374 +481600,192.61,48.528 +481601,198.16,48.119 +481602,195.83,48.255 +481603,193.56,48.374 +481604,191.36,48.477 +481605,196.83,48.224 +481606,194.53,48.308 +481607,192.3,48.375 +481608,190.11,48.427 +481609,195.5,48.329 +481610,193.24,48.36 +481611,191.03,48.375 +481612,188.87,48.376 +481613,194.17,48.434 +481614,191.94,48.413 +481615,189.76,48.376 +481616,187.63,48.326 +481617,192.83,48.538 +481618,190.64,48.465 +481619,188.49,48.377 +481620,186.38,48.275 +481621,191.5,48.643 +481622,189.34,48.517 +481623,187.23,48.378 +481624,185.15,48.225 +481625,190.16,48.747 +481626,188.04,48.57 +481627,185.96,48.378 +481628,183.91,48.175 +481629,188.82,48.85 +481630,186.74,48.622 +481631,184.69,48.379 +481632,182.67,48.125 +481633,187.48,48.953 +481634,185.44,48.674 +481635,183.43,48.381 +481636,181.44,48.075 +481637,186.14,49.056 +481638,184.14,48.726 +481639,182.17,48.382 +481640,180.21,48.026 +481641,184.79,49.159 +481642,182.84,48.778 +481643,180.9,48.383 +481644,178.98,47.977 +481645,183.45,49.26 +481646,181.54,48.829 +481647,179.64,48.385 +481648,177.75,47.928 +481649,182.1,49.362 +481650,180.23,48.881 +481651,178.37,48.386 +481652,176.52,47.879 +481653,180.76,49.462 +481654,178.93,48.933 +481655,177.11,48.388 +481656,175.3,47.831 +481657,179.41,49.562 +481658,177.63,48.984 +481659,175.85,48.39 +481660,174.08,47.783 +481661,178.06,49.662 +481662,176.32,49.035 +481663,174.59,48.393 +481664,172.85,47.736 +481665,176.71,49.76 +481666,175.02,49.086 +481667,173.33,48.395 +481668,171.63,47.69 +481669,175.36,49.858 +481670,173.71,49.137 +481671,172.06,48.398 +481672,170.42,47.644 +481673,174,49.956 +481674,172.4,49.187 +481675,170.8,48.401 +481676,169.2,47.598 +481677,172.65,50.052 +481678,171.1,49.237 +481679,169.54,48.404 +481680,167.98,47.554 +481681,171.29,50.148 +481682,169.79,49.288 +481683,168.28,48.408 +481684,166.77,47.509 +481685,169.94,50.242 +481686,168.48,49.337 +481687,167.02,48.412 +481688,165.56,47.466 +481689,168.58,50.336 +481690,167.18,49.387 +481691,165.76,48.416 +481692,164.35,47.424 +481693,167.22,50.429 +481694,165.87,49.436 +481695,164.51,48.42 +481696,163.14,47.382 +481697,165.86,50.521 +481698,164.56,49.485 +481699,163.25,48.425 +481700,161.93,47.341 +481701,164.5,50.612 +481702,163.25,49.534 +481703,161.99,48.43 +481704,160.72,47.301 +481705,163.14,50.702 +481706,161.94,49.582 +481707,160.73,48.435 +481708,159.51,47.262 +481709,161.78,50.791 +481710,160.63,49.63 +481711,159.47,48.441 +481712,158.31,47.223 +481713,160.42,50.879 +481714,159.32,49.678 +481715,158.22,48.447 +481716,157.11,47.186 +481717,159.06,50.966 +481718,158.01,49.725 +481719,156.96,48.453 +481720,155.9,47.15 +481721,157.69,51.052 +481722,156.7,49.772 +481723,155.7,48.46 +481724,154.7,47.115 +481725,156.33,51.137 +481726,155.39,49.819 +481727,154.44,48.467 +481728,153.5,47.081 +481729,154.96,51.22 +481730,154.07,49.866 +481731,153.19,48.475 +481732,152.3,47.048 +481733,153.6,51.302 +481734,152.76,49.912 +481735,151.93,48.483 +481736,151.1,47.016 +481737,152.23,51.383 +481738,151.45,49.957 +481739,150.67,48.492 +481740,149.91,46.985 +481741,150.87,51.463 +481742,150.14,50.002 +481743,149.42,48.5 +481744,148.71,46.956 +481745,149.5,51.542 +481746,148.83,50.047 +481747,148.16,48.51 +481748,147.51,46.928 +481749,148.13,51.619 +481750,147.51,50.091 +481751,146.91,48.519 +481752,146.32,46.901 +481753,146.76,51.695 +481754,146.2,50.135 +481755,145.65,48.53 +481756,145.12,46.875 +481757,145.4,51.77 +481758,144.89,50.179 +481759,144.4,48.54 +481760,143.93,46.851 +481761,144.03,51.843 +481762,143.57,50.222 +481763,143.14,48.551 +481764,142.74,46.828 +481765,142.66,51.915 +481766,142.26,50.265 +481767,141.88,48.563 +481768,141.54,46.807 +481769,141.29,51.985 +481770,140.94,50.307 +481771,140.63,48.575 +481772,140.35,46.786 +481773,139.92,52.055 +481774,139.63,50.349 +481775,139.37,48.588 +481776,139.16,46.768 +481777,138.55,52.122 +481778,138.32,50.39 +481779,138.12,48.601 +481780,137.97,46.751 +481781,137.18,52.189 +481782,137,50.431 +481783,136.86,48.615 +481784,136.78,46.735 +481785,135.82,52.254 +481786,135.69,50.471 +481787,135.61,48.629 +481788,135.59,46.721 +481789,134.45,52.317 +481790,134.37,50.511 +481791,134.35,48.643 +481792,134.39,46.708 +481793,133.08,52.379 +481794,133.06,50.551 +481795,133.1,48.659 +481796,133.2,46.697 +481797,131.71,52.44 +481798,131.74,50.59 +481799,131.84,48.674 +481800,132.01,46.688 +481801,130.34,52.499 +481802,130.43,50.628 +481803,130.59,48.691 +481804,130.82,46.68 +481805,128.97,52.556 +481806,129.11,50.666 +481807,129.33,48.707 +481808,129.63,46.674 +481809,127.6,52.612 +481810,127.8,50.703 +481811,128.07,48.725 +481812,128.44,46.669 +481813,126.23,52.667 +481814,126.48,50.74 +481815,126.82,48.743 +481816,127.25,46.666 +481817,124.86,52.719 +481818,125.17,50.777 +481819,125.56,48.761 +481820,126.06,46.665 +481821,123.49,52.771 +481822,123.85,50.813 +481823,124.3,48.78 +481824,124.87,46.666 +481825,122.13,52.821 +481826,122.54,50.848 +481827,123.05,48.8 +481828,123.68,46.668 +481829,120.76,52.869 +481830,121.22,50.883 +481831,121.79,48.82 +481832,122.48,46.672 +481833,119.39,52.915 +481834,119.91,50.917 +481835,120.53,48.841 +481836,121.29,46.677 +481837,118.02,52.961 +481838,118.59,50.951 +481839,119.28,48.862 +481840,120.1,46.685 +481841,116.66,53.004 +481842,117.28,50.984 +481843,118.02,48.884 +481844,118.9,46.694 +481845,115.29,53.046 +481846,115.97,51.017 +481847,116.76,48.907 +481848,117.71,46.705 +481849,113.93,53.086 +481850,114.65,51.049 +481851,115.5,48.93 +481852,116.52,46.718 +481853,112.56,53.125 +481854,113.34,51.081 +481855,114.25,48.953 +481856,115.32,46.732 +481857,111.2,53.162 +481858,112.02,51.112 +481859,112.99,48.978 +481860,114.12,46.748 +481861,109.83,53.198 +481862,110.71,51.143 +481863,111.73,49.003 +481864,112.92,46.766 +481865,108.47,53.232 +481866,109.4,51.173 +481867,110.47,49.028 +481868,111.73,46.786 +481869,107.11,53.264 +481870,108.08,51.202 +481871,109.21,49.054 +481872,110.53,46.808 +481873,105.74,53.295 +481874,106.77,51.231 +481875,107.95,49.081 +481876,109.33,46.831 +481877,104.38,53.324 +481878,105.46,51.26 +481879,106.69,49.108 +481880,108.12,46.857 +481881,103.02,53.352 +481882,104.14,51.288 +481883,105.43,49.136 +481884,106.92,46.884 +481885,101.66,53.378 +481886,102.83,51.315 +481887,104.17,49.164 +481888,105.72,46.913 +481889,100.3,53.402 +481890,101.52,51.342 +481891,102.9,49.193 +481892,104.51,46.943 +481893,98.946,53.425 +481894,100.21,51.368 +481895,101.64,49.223 +481896,103.3,46.976 +481897,97.588,53.446 +481898,98.893,51.394 +481899,100.38,49.253 +481900,102.1,47.01 +481901,96.232,53.466 +481902,97.582,51.419 +481903,99.116,49.284 +481904,100.89,47.046 +481905,94.877,53.484 +481906,96.27,51.444 +481907,97.853,49.315 +481908,99.675,47.084 +481909,93.522,53.501 +481910,94.959,51.468 +481911,96.589,49.347 +481912,98.462,47.124 +481913,92.169,53.516 +481914,93.649,51.492 +481915,95.324,49.379 +481916,97.248,47.165 +481917,90.816,53.529 +481918,92.338,51.515 +481919,94.059,49.412 +481920,96.032,47.209 +481921,89.465,53.541 +481922,91.028,51.537 +481923,92.793,49.446 +481924,94.814,47.253 +481925,88.114,53.552 +481926,89.718,51.56 +481927,91.527,49.48 +481928,93.595,47.3 +481929,86.765,53.561 +481930,88.409,51.581 +481931,90.26,49.515 +481932,92.374,47.348 +481933,85.417,53.568 +481934,87.1,51.602 +481935,88.992,49.55 +481936,91.151,47.398 +481937,84.07,53.574 +481938,85.791,51.623 +481939,87.724,49.586 +481940,89.926,47.45 +481941,82.724,53.579 +481942,84.483,51.643 +481943,86.455,49.622 +481944,88.699,47.504 +481945,81.38,53.582 +481946,83.175,51.663 +481947,85.186,49.659 +481948,87.47,47.559 +481949,80.037,53.583 +481950,81.868,51.682 +481951,83.916,49.697 +481952,86.24,47.615 +481953,78.695,53.583 +481954,80.561,51.7 +481955,82.646,49.735 +481956,85.007,47.674 +481957,77.354,53.582 +481958,79.254,51.718 +481959,81.374,49.773 +481960,83.773,47.734 +481961,76.015,53.579 +481962,77.948,51.736 +481963,80.102,49.812 +481964,82.536,47.795 +481965,74.677,53.575 +481966,76.643,51.753 +481967,78.83,49.852 +481968,81.297,47.858 +481969,73.34,53.57 +481970,75.337,51.77 +481971,77.557,49.892 +481972,80.056,47.923 +481973,72.005,53.563 +481974,74.033,51.786 +481975,76.283,49.932 +481976,78.813,47.989 +481977,70.671,53.555 +481978,72.728,51.802 +481979,75.008,49.973 +481980,77.568,48.056 +481981,69.338,53.546 +481982,71.425,51.818 +481983,73.733,50.015 +481984,76.321,48.125 +481985,68.007,53.535 +481986,70.121,51.833 +481987,72.457,50.057 +481988,75.071,48.196 +481989,66.678,53.523 +481990,68.818,51.847 +481991,71.18,50.099 +481992,73.82,48.268 +481993,65.35,53.51 +481994,67.516,51.861 +481995,69.903,50.142 +481996,72.566,48.341 +481997,64.024,53.495 +481998,66.214,51.875 +481999,68.624,50.185 +482000,71.31,48.416 +482001,62.699,53.48 +482002,64.913,51.888 +482003,67.346,50.229 +482004,70.051,48.491 +482005,61.376,53.463 +482006,63.612,51.901 +482007,66.066,50.273 +482008,68.79,48.569 +482009,60.054,53.445 +482010,62.312,51.914 +482011,64.786,50.318 +482012,67.528,48.647 +482013,58.734,53.425 +482014,61.012,51.926 +482015,63.504,50.363 +482016,66.262,48.727 +482017,57.415,53.405 +482018,59.713,51.938 +482019,62.223,50.408 +482020,64.995,48.808 +482021,56.099,53.384 +482022,58.415,51.949 +482023,60.94,50.454 +482024,63.725,48.89 +482025,54.783,53.361 +482026,57.116,51.96 +482027,59.657,50.5 +482028,62.453,48.973 +482029,53.47,53.338 +482030,55.819,51.971 +482031,58.373,50.546 +482032,61.178,49.057 +482033,52.158,53.313 +482034,54.522,51.981 +482035,57.088,50.593 +482036,59.901,49.142 +482037,50.848,53.288 +482038,53.226,51.991 +482039,55.802,50.641 +482040,58.622,49.229 +482041,49.54,53.262 +482042,51.93,52.001 +482043,54.516,50.688 +482044,57.341,49.316 +482045,48.233,53.234 +482046,50.635,52.01 +482047,53.228,50.736 +482048,56.057,49.404 +482049,46.928,53.206 +482050,49.34,52.019 +482051,51.94,50.784 +482052,54.771,49.493 +482053,45.625,53.177 +482054,48.046,52.028 +482055,50.652,50.833 +482056,53.483,49.583 +482057,44.324,53.147 +482058,46.752,52.037 +482059,49.362,50.881 +482060,52.193,49.674 +482061,43.025,53.116 +482062,45.459,52.045 +482063,48.072,50.931 +482064,50.9,49.766 +482065,41.727,53.084 +482066,44.167,52.053 +482067,46.781,50.98 +482068,49.605,49.858 +482069,40.431,53.052 +482070,42.875,52.061 +482071,45.489,51.029 +482072,48.308,49.952 +482073,39.137,53.019 +482074,41.584,52.069 +482075,44.197,51.079 +482076,47.008,50.046 +482077,37.845,52.985 +482078,40.293,52.076 +482079,42.903,51.129 +482080,45.706,50.14 +482081,36.554,52.951 +482082,39.003,52.083 +482083,41.609,51.18 +482084,44.403,50.235 +482085,35.266,52.916 +482086,37.714,52.09 +482087,40.315,51.23 +482088,43.096,50.331 +482089,33.979,52.88 +482090,36.425,52.097 +482091,39.019,51.281 +482092,41.788,50.427 +482093,32.694,52.844 +482094,35.137,52.103 +482095,37.723,51.332 +482096,40.478,50.524 +482097,31.411,52.807 +482098,33.849,52.11 +482099,36.426,51.383 +482100,39.165,50.622 +482101,30.13,52.77 +482102,32.562,52.116 +482103,35.128,51.434 +482104,37.851,50.719 +482105,28.851,52.732 +482106,31.276,52.122 +482107,33.829,51.485 +482108,36.534,50.817 +482109,27.573,52.694 +482110,29.99,52.128 +482111,32.53,51.537 +482112,35.215,50.916 +482113,26.298,52.655 +482114,28.704,52.134 +482115,31.23,51.588 +482116,33.895,51.014 +482117,25.024,52.616 +482118,27.419,52.14 +482119,29.929,51.64 +482120,32.572,51.114 +482121,23.752,52.577 +482122,26.135,52.146 +482123,28.628,51.692 +482124,31.247,51.213 +482125,22.482,52.537 +482126,24.852,52.151 +482127,27.326,51.744 +482128,29.921,51.312 +482129,21.214,52.497 +482130,23.569,52.157 +482131,26.023,51.796 +482132,28.592,51.412 +482133,19.948,52.457 +482134,22.286,52.162 +482135,24.719,51.848 +482136,27.261,51.511 +482137,18.683,52.417 +482138,21.004,52.167 +482139,23.415,51.9 +482140,25.929,51.611 +482141,17.421,52.376 +482142,19.723,52.173 +482143,22.11,51.952 +482144,24.595,51.711 +482145,16.16,52.336 +482146,18.442,52.178 +482147,20.805,52.004 +482148,23.259,51.811 +482149,14.901,52.295 +482150,17.162,52.184 +482151,19.498,52.056 +482152,21.921,51.911 +482153,13.644,52.254 +482154,15.882,52.189 +482155,18.191,52.108 +482156,20.582,52.01 +482157,12.388,52.213 +482158,14.603,52.194 +482159,16.884,52.161 +482160,19.24,52.11 +482161,11.135,52.172 +482162,13.324,52.2 +482163,15.576,52.213 +482164,17.898,52.209 +482165,9.8827,52.132 +482166,12.046,52.205 +482167,14.267,52.265 +482168,16.553,52.309 +482169,8.6327,52.091 +482170,10.768,52.21 +482171,12.957,52.317 +482172,15.207,52.408 +482173,7.3843,52.051 +482174,9.4909,52.216 +482175,11.647,52.369 +482176,13.859,52.506 +482177,6.1377,52.01 +482178,8.2143,52.222 +482179,10.337,52.42 +482180,12.51,52.605 +482181,4.8929,51.97 +482182,6.9381,52.227 +482183,9.0253,52.472 +482184,11.159,52.703 +482185,3.6497,51.93 +482186,5.6624,52.233 +482187,7.7134,52.524 +482188,9.8069,52.801 +482189,2.4082,51.89 +482190,4.3872,52.239 +482191,6.401,52.575 +482192,8.4532,52.898 +482193,1.1683,51.851 +482194,3.1125,52.245 +482195,5.0879,52.627 +482196,7.0982,52.995 +482197,359.93,51.812 +482198,1.8382,52.251 +482199,3.7744,52.678 +482200,5.7417,53.091 +482201,358.69,51.773 +482202,0.56441,52.257 +482203,2.4603,52.729 +482204,4.384,53.187 +482205,357.46,51.735 +482206,359.29,52.264 +482207,1.1456,52.78 +482208,3.0249,53.283 +482209,356.23,51.697 +482210,358.02,52.27 +482211,359.83,52.831 +482212,1.6646,53.377 +482213,354.99,51.66 +482214,356.75,52.277 +482215,358.51,52.881 +482216,0.30304,53.471 +482217,353.76,51.623 +482218,355.47,52.284 +482219,357.2,52.932 +482220,358.94,53.565 +482221,352.53,51.587 +482222,354.2,52.291 +482223,355.88,52.982 +482224,357.58,53.658 +482225,351.31,51.551 +482226,352.93,52.298 +482227,354.56,53.032 +482228,356.21,53.75 +482229,350.08,51.516 +482230,351.66,52.306 +482231,353.25,53.082 +482232,354.85,53.841 +482233,348.86,51.482 +482234,350.39,52.314 +482235,351.93,53.131 +482236,353.48,53.932 +482237,347.63,51.448 +482238,349.12,52.322 +482239,350.61,53.18 +482240,352.11,54.022 +482241,346.41,51.415 +482242,347.85,52.33 +482243,349.29,53.229 +482244,350.74,54.111 +482245,345.19,51.382 +482246,346.58,52.339 +482247,347.97,53.278 +482248,349.37,54.199 +482249,343.97,51.351 +482250,345.31,52.347 +482251,346.65,53.326 +482252,348,54.286 +482253,342.75,51.32 +482254,344.04,52.357 +482255,345.33,53.375 +482256,346.63,54.373 +482257,341.53,51.29 +482258,342.77,52.366 +482259,344.01,53.422 +482260,345.26,54.458 +482261,340.32,51.261 +482262,341.5,52.376 +482263,342.69,53.47 +482264,343.88,54.543 +482265,339.1,51.233 +482266,340.24,52.386 +482267,341.37,53.517 +482268,342.51,54.626 +482269,337.89,51.206 +482270,338.97,52.396 +482271,340.05,53.564 +482272,341.13,54.709 +482273,336.68,51.18 +482274,337.7,52.407 +482275,338.73,53.611 +482276,339.76,54.79 +482277,335.47,51.155 +482278,336.43,52.418 +482279,337.41,53.657 +482280,338.38,54.871 +482281,334.26,51.13 +482282,335.17,52.429 +482283,336.08,53.703 +482284,337.01,54.95 +482285,333.05,51.107 +482286,333.9,52.441 +482287,334.76,53.748 +482288,335.63,55.028 +482289,331.84,51.085 +482290,332.63,52.453 +482291,333.44,53.793 +482292,334.25,55.105 +482293,330.63,51.064 +482294,331.36,52.466 +482295,332.11,53.838 +482296,332.87,55.181 +482297,329.42,51.044 +482298,330.1,52.478 +482299,330.79,53.882 +482300,331.5,55.256 +482301,328.21,51.026 +482302,328.83,52.492 +482303,329.47,53.926 +482304,330.12,55.329 +482305,327.01,51.008 +482306,327.57,52.505 +482307,328.14,53.97 +482308,328.74,55.402 +482309,325.8,50.992 +482310,326.3,52.519 +482311,326.82,54.013 +482312,327.36,55.473 +482313,324.6,50.977 +482314,325.03,52.534 +482315,325.5,54.056 +482316,325.98,55.542 +482317,323.39,50.963 +482318,323.77,52.549 +482319,324.17,54.098 +482320,324.6,55.611 +482321,322.19,50.951 +482322,322.5,52.564 +482323,322.85,54.14 +482324,323.22,55.678 +482325,320.98,50.94 +482326,321.24,52.58 +482327,321.52,54.181 +482328,321.84,55.744 +482329,319.78,50.93 +482330,319.97,52.596 +482331,320.2,54.222 +482332,320.46,55.809 +482333,318.58,50.921 +482334,318.7,52.613 +482335,318.87,54.263 +482336,319.08,55.872 +482337,317.38,50.914 +482338,317.44,52.63 +482339,317.55,54.303 +482340,317.7,55.934 +482341,316.17,50.908 +482342,316.17,52.648 +482343,316.22,54.342 +482344,316.32,55.995 +482345,314.97,50.904 +482346,314.91,52.666 +482347,314.9,54.382 +482348,314.94,56.054 +482349,313.77,50.901 +482350,313.64,52.684 +482351,313.57,54.42 +482352,313.56,56.112 +482353,312.57,50.9 +482354,312.37,52.703 +482355,312.25,54.458 +482356,312.18,56.168 +482357,311.36,50.899 +482358,311.11,52.723 +482359,310.92,54.496 +482360,310.8,56.223 +482361,310.16,50.901 +482362,309.84,52.742 +482363,309.6,54.533 +482364,309.42,56.277 +482365,308.96,50.904 +482366,308.58,52.763 +482367,308.27,54.57 +482368,308.04,56.329 +482369,307.75,50.908 +482370,307.31,52.784 +482371,306.95,54.607 +482372,306.66,56.38 +482373,306.55,50.914 +482374,306.04,52.805 +482375,305.62,54.642 +482376,305.28,56.429 +482377,305.35,50.922 +482378,304.78,52.827 +482379,304.3,54.678 +482380,303.9,56.477 +482381,304.14,50.931 +482382,303.51,52.85 +482383,302.97,54.713 +482384,302.52,56.523 +482385,302.94,50.941 +482386,302.24,52.872 +482387,301.65,54.747 +482388,301.14,56.568 +482389,301.74,50.953 +482390,300.97,52.896 +482391,300.32,54.781 +482392,299.76,56.612 +482393,300.53,50.967 +482394,299.71,52.92 +482395,299,54.814 +482396,298.39,56.654 +482397,299.32,50.982 +482398,298.44,52.944 +482399,297.67,54.847 +482400,297.01,56.694 +482401,298.12,50.999 +482402,297.17,52.969 +482403,296.35,54.879 +482404,295.63,56.733 +482405,296.91,51.017 +482406,295.9,52.995 +482407,295.02,54.911 +482408,294.26,56.771 +482409,295.7,51.037 +482410,294.63,53.021 +482411,293.7,54.942 +482412,292.88,56.807 +482413,294.49,51.059 +482414,293.36,53.047 +482415,292.38,54.973 +482416,291.51,56.841 +482417,293.28,51.082 +482418,292.09,53.074 +482419,291.05,55.003 +482420,290.13,56.874 +482421,292.07,51.107 +482422,290.82,53.102 +482423,289.73,55.033 +482424,288.76,56.906 +482425,290.86,51.133 +482426,289.55,53.13 +482427,288.41,55.062 +482428,287.39,56.936 +482429,289.65,51.161 +482430,288.28,53.158 +482431,287.08,55.091 +482432,286.02,56.964 +482433,288.43,51.19 +482434,287.01,53.188 +482435,285.76,55.119 +482436,284.65,56.991 +482437,287.22,51.221 +482438,285.74,53.217 +482439,284.44,55.147 +482440,283.28,57.017 +482441,286,51.254 +482442,284.47,53.247 +482443,283.12,55.174 +482444,281.91,57.041 +482445,284.79,51.288 +482446,283.2,53.278 +482447,281.79,55.201 +482448,280.54,57.064 +482449,283.57,51.324 +482450,281.93,53.309 +482451,280.47,55.227 +482452,279.17,57.085 +482453,282.35,51.362 +482454,280.65,53.341 +482455,279.15,55.253 +482456,277.8,57.105 +482457,281.13,51.401 +482458,279.38,53.373 +482459,277.83,55.278 +482460,276.44,57.123 +482461,279.9,51.441 +482462,278.11,53.405 +482463,276.51,55.303 +482464,275.07,57.14 +482465,278.68,51.483 +482466,276.83,53.439 +482467,275.19,55.327 +482468,273.71,57.155 +482469,277.45,51.527 +482470,275.56,53.472 +482471,273.87,55.351 +482472,272.35,57.169 +482473,276.23,51.572 +482474,274.28,53.506 +482475,272.55,55.374 +482476,270.99,57.182 +482477,275,51.619 +482478,273,53.541 +482479,271.23,55.397 +482480,269.63,57.193 +482481,273.77,51.667 +482482,271.73,53.576 +482483,269.91,55.419 +482484,268.27,57.203 +482485,272.53,51.717 +482486,270.45,53.612 +482487,268.59,55.441 +482488,266.91,57.211 +482489,271.3,51.768 +482490,269.17,53.648 +482491,267.27,55.462 +482492,265.55,57.218 +482493,270.06,51.82 +482494,267.9,53.684 +482495,265.95,55.483 +482496,264.2,57.224 +482497,268.83,51.875 +482498,266.62,53.721 +482499,264.64,55.504 +482500,262.84,57.228 +482501,267.59,51.93 +482502,265.34,53.759 +482503,263.32,55.524 +482504,261.49,57.231 +482505,266.35,51.987 +482506,264.06,53.797 +482507,262,55.543 +482508,260.14,57.233 +482509,265.1,52.045 +482510,262.78,53.835 +482511,260.69,55.562 +482512,258.79,57.233 +482513,263.86,52.105 +482514,261.5,53.874 +482515,259.37,55.581 +482516,257.44,57.232 +482517,262.61,52.166 +482518,260.21,53.913 +482519,258.06,55.599 +482520,256.09,57.23 +482521,261.36,52.228 +482522,258.93,53.953 +482523,256.74,55.617 +482524,254.75,57.227 +482525,260.11,52.292 +482526,257.65,53.993 +482527,255.43,55.634 +482528,253.4,57.222 +482529,258.86,52.357 +482530,256.37,54.033 +482531,254.11,55.651 +482532,252.06,57.216 +482533,257.6,52.423 +482534,255.08,54.074 +482535,252.8,55.667 +482536,250.72,57.209 +482537,256.34,52.491 +482538,253.8,54.116 +482539,251.49,55.683 +482540,249.38,57.2 +482541,255.09,52.56 +482542,252.51,54.157 +482543,250.17,55.699 +482544,248.04,57.191 +482545,253.82,52.63 +482546,251.22,54.2 +482547,248.86,55.714 +482548,246.7,57.18 +482549,252.56,52.701 +482550,249.94,54.242 +482551,247.55,55.729 +482552,245.36,57.168 +482553,251.29,52.773 +482554,248.65,54.285 +482555,246.24,55.744 +482556,244.03,57.155 +482557,250.03,52.847 +482558,247.36,54.328 +482559,244.93,55.758 +482560,242.7,57.141 +482561,248.76,52.921 +482562,246.07,54.372 +482563,243.62,55.772 +482564,241.37,57.126 +482565,247.48,52.997 +482566,244.78,54.416 +482567,242.31,55.785 +482568,240.04,57.11 +482569,246.21,53.073 +482570,243.49,54.46 +482571,241,55.798 +482572,238.71,57.093 +482573,244.93,53.151 +482574,242.2,54.505 +482575,239.7,55.811 +482576,237.38,57.075 +482577,243.65,53.229 +482578,240.91,54.55 +482579,238.39,55.823 +482580,236.06,57.056 +482581,242.37,53.309 +482582,239.61,54.595 +482583,237.08,55.836 +482584,234.73,57.036 +482585,241.09,53.389 +482586,238.32,54.64 +482587,235.77,55.847 +482588,233.41,57.015 +482589,239.8,53.471 +482590,237.03,54.686 +482591,234.47,55.859 +482592,232.09,56.993 +482593,238.52,53.553 +482594,235.73,54.732 +482595,233.16,55.87 +482596,230.78,56.971 +482597,237.23,53.636 +482598,234.44,54.779 +482599,231.86,55.881 +482600,229.46,56.947 +482601,235.93,53.72 +482602,233.14,54.825 +482603,230.56,55.892 +482604,228.15,56.923 +482605,234.64,53.805 +482606,231.84,54.872 +482607,229.25,55.902 +482608,226.83,56.898 +482609,233.34,53.89 +482610,230.54,54.919 +482611,227.95,55.912 +482612,225.52,56.872 +482613,232.04,53.976 +482614,229.25,54.967 +482615,226.65,55.922 +482616,224.21,56.846 +482617,230.74,54.063 +482618,227.95,55.014 +482619,225.35,55.932 +482620,222.91,56.818 +482621,229.44,54.15 +482622,226.65,55.062 +482623,224.04,55.941 +482624,221.6,56.79 +482625,228.14,54.238 +482626,225.35,55.11 +482627,222.74,55.95 +482628,220.3,56.762 +482629,226.83,54.326 +482630,224.04,55.158 +482631,221.44,55.959 +482632,219,56.733 +482633,225.52,54.415 +482634,222.74,55.207 +482635,220.14,55.968 +482636,217.7,56.703 +482637,224.21,54.505 +482638,221.44,55.255 +482639,218.85,55.977 +482640,216.4,56.672 +482641,222.89,54.595 +482642,220.14,55.304 +482643,217.55,55.985 +482644,215.1,56.642 +482645,221.58,54.685 +482646,218.83,55.353 +482647,216.25,55.993 +482648,213.81,56.61 +482649,220.26,54.776 +482650,217.53,55.402 +482651,214.95,56.001 +482652,212.52,56.578 +482653,218.94,54.867 +482654,216.22,55.451 +482655,213.66,56.009 +482656,211.23,56.546 +482657,217.62,54.959 +482658,214.91,55.5 +482659,212.36,56.017 +482660,209.94,56.514 +482661,216.29,55.051 +482662,213.61,55.549 +482663,211.07,56.025 +482664,208.65,56.481 +482665,214.96,55.143 +482666,212.3,55.599 +482667,209.77,56.032 +482668,207.36,56.447 +482669,213.64,55.235 +482670,210.99,55.648 +482671,208.48,56.04 +482672,206.08,56.414 +482673,212.31,55.327 +482674,209.68,55.698 +482675,207.18,56.047 +482676,204.8,56.38 +482677,210.97,55.42 +482678,208.37,55.747 +482679,205.89,56.055 +482680,203.52,56.346 +482681,209.64,55.512 +482682,207.06,55.797 +482683,204.6,56.062 +482684,202.24,56.311 +482685,208.3,55.605 +482686,205.75,55.846 +482687,203.31,56.069 +482688,200.97,56.277 +482689,206.97,55.698 +482690,204.44,55.896 +482691,202.02,56.076 +482692,199.69,56.242 +482693,205.63,55.791 +482694,203.12,55.946 +482695,200.73,56.084 +482696,198.42,56.207 +482697,204.28,55.883 +482698,201.81,55.995 +482699,199.44,56.091 +482700,197.15,56.172 +482701,202.94,55.976 +482702,200.5,56.045 +482703,198.15,56.098 +482704,195.88,56.138 +482705,201.6,56.069 +482706,199.18,56.094 +482707,196.86,56.105 +482708,194.61,56.103 +482709,200.25,56.161 +482710,197.87,56.144 +482711,195.57,56.112 +482712,193.35,56.068 +482713,198.9,56.253 +482714,196.55,56.193 +482715,194.28,56.119 +482716,192.08,56.033 +482717,197.55,56.345 +482718,195.23,56.243 +482719,192.99,56.126 +482720,190.82,55.998 +482721,196.2,56.437 +482722,193.92,56.292 +482723,191.71,56.134 +482724,189.56,55.964 +482725,194.84,56.529 +482726,192.6,56.342 +482727,190.42,56.141 +482728,188.3,55.929 +482729,193.49,56.62 +482730,191.28,56.391 +482731,189.14,56.148 +482732,187.05,55.895 +482733,192.13,56.711 +482734,189.96,56.44 +482735,187.85,56.156 +482736,185.79,55.861 +482737,190.77,56.802 +482738,188.64,56.489 +482739,186.57,56.163 +482740,184.54,55.827 +482741,189.41,56.892 +482742,187.32,56.538 +482743,185.28,56.171 +482744,183.29,55.793 +482745,188.05,56.982 +482746,186,56.586 +482747,184,56.179 +482748,182.04,55.76 +482749,186.69,57.071 +482750,184.68,56.635 +482751,182.71,56.186 +482752,180.79,55.727 +482753,185.33,57.16 +482754,183.36,56.683 +482755,181.43,56.194 +482756,179.54,55.695 +482757,183.96,57.248 +482758,182.04,56.731 +482759,180.15,56.203 +482760,178.3,55.663 +482761,182.6,57.336 +482762,180.71,56.78 +482763,178.87,56.211 +482764,177.05,55.631 +482765,181.23,57.423 +482766,179.39,56.827 +482767,177.59,56.219 +482768,175.81,55.6 +482769,179.86,57.509 +482770,178.07,56.875 +482771,176.3,56.228 +482772,174.57,55.57 +482773,178.49,57.595 +482774,176.74,56.922 +482775,175.02,56.237 +482776,173.33,55.539 +482777,177.12,57.68 +482778,175.42,56.97 +482779,173.74,56.246 +482780,172.09,55.51 +482781,175.75,57.765 +482782,174.09,57.017 +482783,172.46,56.255 +482784,170.85,55.481 +482785,174.37,57.848 +482786,172.77,57.063 +482787,171.18,56.264 +482788,169.62,55.453 +482789,173,57.931 +482790,171.44,57.11 +482791,169.9,56.274 +482792,168.38,55.425 +482793,171.62,58.014 +482794,170.12,57.156 +482795,168.63,56.284 +482796,167.15,55.398 +482797,170.25,58.095 +482798,168.79,57.202 +482799,167.35,56.294 +482800,165.92,55.372 +482801,168.87,58.175 +482802,167.46,57.248 +482803,166.07,56.304 +482804,164.69,55.347 +482805,167.49,58.255 +482806,166.13,57.293 +482807,164.79,56.315 +482808,163.46,55.322 +482809,166.11,58.334 +482810,164.81,57.338 +482811,163.51,56.326 +482812,162.23,55.298 +482813,164.73,58.412 +482814,163.48,57.383 +482815,162.24,56.337 +482816,161.01,55.275 +482817,163.35,58.489 +482818,162.15,57.427 +482819,160.96,56.348 +482820,159.78,55.253 +482821,161.97,58.565 +482822,160.82,57.471 +482823,159.68,56.36 +482824,158.56,55.231 +482825,160.59,58.64 +482826,159.49,57.515 +482827,158.41,56.372 +482828,157.33,55.211 +482829,159.21,58.714 +482830,158.16,57.559 +482831,157.13,56.384 +482832,156.11,55.192 +482833,157.82,58.787 +482834,156.83,57.602 +482835,155.85,56.397 +482836,154.89,55.173 +482837,156.44,58.859 +482838,155.5,57.645 +482839,154.58,56.41 +482840,153.67,55.156 +482841,155.06,58.929 +482842,154.17,57.687 +482843,153.3,56.423 +482844,152.45,55.139 +482845,153.67,58.999 +482846,152.84,57.729 +482847,152.03,56.437 +482848,151.23,55.124 +482849,152.29,59.068 +482850,151.51,57.771 +482851,150.75,56.451 +482852,150.01,55.109 +482853,150.9,59.135 +482854,150.18,57.812 +482855,149.48,56.465 +482856,148.79,55.096 +482857,149.51,59.202 +482858,148.85,57.853 +482859,148.2,56.48 +482860,147.58,55.084 +482861,148.13,59.267 +482862,147.52,57.893 +482863,146.93,56.495 +482864,146.36,55.073 +482865,146.74,59.331 +482866,146.19,57.934 +482867,145.65,56.511 +482868,145.14,55.063 +482869,145.35,59.394 +482870,144.86,57.973 +482871,144.38,56.527 +482872,143.93,55.054 +482873,143.97,59.455 +482874,143.52,58.013 +482875,143.11,56.543 +482876,142.71,55.047 +482877,142.58,59.516 +482878,142.19,58.051 +482879,141.83,56.56 +482880,141.5,55.041 +482881,141.19,59.575 +482882,140.86,58.09 +482883,140.56,56.577 +482884,140.28,55.035 +482885,139.8,59.633 +482886,139.53,58.128 +482887,139.28,56.594 +482888,139.07,55.032 +482889,138.42,59.689 +482890,138.2,58.165 +482891,138.01,56.612 +482892,137.86,55.029 +482893,137.03,59.745 +482894,136.86,58.203 +482895,136.73,56.63 +482896,136.64,55.028 +482897,135.64,59.799 +482898,135.53,58.239 +482899,135.46,56.649 +482900,135.43,55.028 +482901,134.25,59.852 +482902,134.2,58.276 +482903,134.19,56.668 +482904,134.22,55.029 +482905,132.87,59.903 +482906,132.87,58.311 +482907,132.91,56.688 +482908,133.01,55.032 +482909,131.48,59.953 +482910,131.53,58.347 +482911,131.64,56.708 +482912,131.79,55.035 +482913,130.09,60.002 +482914,130.2,58.382 +482915,130.36,56.728 +482916,130.58,55.041 +482917,128.71,60.049 +482918,128.87,58.416 +482919,129.09,56.749 +482920,129.37,55.047 +482921,127.32,60.095 +482922,127.54,58.45 +482923,127.81,56.77 +482924,128.15,55.055 +482925,125.93,60.14 +482926,126.21,58.484 +482927,126.54,56.792 +482928,126.94,55.065 +482929,124.55,60.183 +482930,124.87,58.517 +482931,125.26,56.814 +482932,125.73,55.076 +482933,123.16,60.225 +482934,123.54,58.549 +482935,123.99,56.837 +482936,124.51,55.088 +482937,121.77,60.266 +482938,122.21,58.581 +482939,122.71,56.86 +482940,123.3,55.101 +482941,120.39,60.305 +482942,120.88,58.613 +482943,121.44,56.884 +482944,122.08,55.116 +482945,119,60.343 +482946,119.54,58.644 +482947,120.16,56.908 +482948,120.87,55.133 +482949,117.62,60.379 +482950,118.21,58.675 +482951,118.89,56.932 +482952,119.65,55.151 +482953,116.24,60.414 +482954,116.88,58.705 +482955,117.61,56.957 +482956,118.44,55.17 +482957,114.85,60.448 +482958,115.55,58.735 +482959,116.34,56.983 +482960,117.22,55.19 +482961,113.47,60.48 +482962,114.22,58.764 +482963,115.06,57.008 +482964,116,55.213 +482965,112.09,60.511 +482966,112.89,58.793 +482967,113.78,57.035 +482968,114.79,55.236 +482969,110.71,60.541 +482970,111.56,58.821 +482971,112.5,57.062 +482972,113.57,55.261 +482973,109.33,60.569 +482974,110.23,58.849 +482975,111.23,57.089 +482976,112.35,55.288 +482977,107.95,60.596 +482978,108.9,58.876 +482979,109.95,57.117 +482980,111.13,55.315 +482981,106.57,60.621 +482982,107.57,58.903 +482983,108.67,57.145 +482984,109.91,55.345 +482985,105.19,60.645 +482986,106.24,58.929 +482987,107.39,57.173 +482988,108.68,55.375 +482989,103.81,60.667 +482990,104.91,58.955 +482991,106.12,57.203 +482992,107.46,55.408 +482993,102.43,60.689 +482994,103.58,58.981 +482995,104.84,57.232 +482996,106.24,55.441 +482997,101.06,60.708 +482998,102.25,59.005 +482999,103.56,57.262 +483000,105.01,55.476 +483001,99.684,60.727 +483002,100.92,59.03 +483003,102.28,57.293 +483004,103.78,55.513 +483005,98.31,60.744 +483006,99.59,59.054 +483007,101,57.324 +483008,102.56,55.55 +483009,96.937,60.76 +483010,98.261,59.078 +483011,99.717,57.355 +483012,101.33,55.59 +483013,95.565,60.774 +483014,96.933,59.101 +483015,98.436,57.387 +483016,100.1,55.63 +483017,94.194,60.787 +483018,95.606,59.123 +483019,97.155,57.419 +483020,98.866,55.672 +483021,92.823,60.799 +483022,94.278,59.145 +483023,95.873,57.452 +483024,97.633,55.716 +483025,91.455,60.809 +483026,92.951,59.167 +483027,94.59,57.485 +483028,96.398,55.76 +483029,90.087,60.819 +483030,91.625,59.188 +483031,93.308,57.518 +483032,95.162,55.806 +483033,88.72,60.826 +483034,90.298,59.209 +483035,92.024,57.552 +483036,93.925,55.854 +483037,87.354,60.833 +483038,88.973,59.229 +483039,90.74,57.587 +483040,92.686,55.903 +483041,85.99,60.838 +483042,87.647,59.249 +483043,89.456,57.622 +483044,91.446,55.953 +483045,84.627,60.842 +483046,86.322,59.269 +483047,88.171,57.657 +483048,90.204,56.004 +483049,83.265,60.845 +483050,84.998,59.288 +483051,86.886,57.693 +483052,88.96,56.057 +483053,81.904,60.846 +483054,83.673,59.306 +483055,85.6,57.729 +483056,87.715,56.111 +483057,80.545,60.847 +483058,82.35,59.325 +483059,84.314,57.765 +483060,86.467,56.166 +483061,79.187,60.846 +483062,81.026,59.342 +483063,83.026,57.802 +483064,85.219,56.222 +483065,77.83,60.844 +483066,79.704,59.36 +483067,81.739,57.839 +483068,83.968,56.28 +483069,76.475,60.841 +483070,78.381,59.377 +483071,80.451,57.877 +483072,82.716,56.339 +483073,75.121,60.836 +483074,77.059,59.393 +483075,79.162,57.915 +483076,81.461,56.399 +483077,73.769,60.831 +483078,75.738,59.409 +483079,77.873,57.954 +483080,80.205,56.46 +483081,72.418,60.824 +483082,74.417,59.425 +483083,76.583,57.992 +483084,78.947,56.522 +483085,71.068,60.816 +483086,73.096,59.441 +483087,75.292,58.031 +483088,77.687,56.586 +483089,69.72,60.807 +483090,71.776,59.456 +483091,74.001,58.071 +483092,76.426,56.65 +483093,68.373,60.797 +483094,70.457,59.47 +483095,72.709,58.111 +483096,75.162,56.716 +483097,67.028,60.786 +483098,69.138,59.485 +483099,71.416,58.151 +483100,73.896,56.783 +483101,65.685,60.774 +483102,67.82,59.499 +483103,70.123,58.191 +483104,72.628,56.85 +483105,64.343,60.761 +483106,66.502,59.512 +483107,68.829,58.232 +483108,71.359,56.919 +483109,63.002,60.747 +483110,65.184,59.525 +483111,67.535,58.273 +483112,70.087,56.989 +483113,61.663,60.733 +483114,63.868,59.538 +483115,66.24,58.315 +483116,68.813,57.06 +483117,60.326,60.717 +483118,62.551,59.551 +483119,64.944,58.357 +483120,67.537,57.131 +483121,58.99,60.7 +483122,61.236,59.563 +483123,63.648,58.399 +483124,66.259,57.204 +483125,57.657,60.682 +483126,59.92,59.575 +483127,62.351,58.441 +483128,64.979,57.277 +483129,56.324,60.664 +483130,58.606,59.587 +483131,61.053,58.484 +483132,63.697,57.351 +483133,54.994,60.644 +483134,57.292,59.598 +483135,59.754,58.526 +483136,62.413,57.426 +483137,53.665,60.624 +483138,55.978,59.609 +483139,58.455,58.57 +483140,61.126,57.502 +483141,52.337,60.603 +483142,54.665,59.62 +483143,57.155,58.613 +483144,59.838,57.579 +483145,51.012,60.581 +483146,53.353,59.631 +483147,55.855,58.656 +483148,58.547,57.656 +483149,49.688,60.559 +483150,52.041,59.641 +483151,54.553,58.7 +483152,57.254,57.734 +483153,48.366,60.536 +483154,50.73,59.651 +483155,53.252,58.744 +483156,55.959,57.813 +483157,47.045,60.512 +483158,49.42,59.661 +483159,51.949,58.789 +483160,54.662,57.892 +483161,45.727,60.487 +483162,48.11,59.67 +483163,50.646,58.833 +483164,53.363,57.972 +483165,44.41,60.462 +483166,46.8,59.68 +483167,49.342,58.878 +483168,52.062,58.053 +483169,43.095,60.436 +483170,45.491,59.689 +483171,48.037,58.922 +483172,50.759,58.134 +483173,41.782,60.41 +483174,44.183,59.698 +483175,46.731,58.967 +483176,49.453,58.216 +483177,40.47,60.383 +483178,42.876,59.707 +483179,45.425,59.013 +483180,48.146,58.298 +483181,39.16,60.355 +483182,41.569,59.715 +483183,44.119,59.058 +483184,46.836,58.381 +483185,37.852,60.327 +483186,40.262,59.724 +483187,42.811,59.103 +483188,45.524,58.464 +483189,36.546,60.299 +483190,38.956,59.732 +483191,41.503,59.149 +483192,44.21,58.547 +483193,35.242,60.27 +483194,37.651,59.74 +483195,40.194,59.195 +483196,42.894,58.631 +483197,33.939,60.241 +483198,36.346,59.748 +483199,38.884,59.24 +483200,41.576,58.716 +483201,32.638,60.211 +483202,35.042,59.756 +483203,37.574,59.286 +483204,40.256,58.8 +483205,31.34,60.181 +483206,33.739,59.764 +483207,36.263,59.332 +483208,38.934,58.885 +483209,30.042,60.15 +483210,32.436,59.771 +483211,34.952,59.378 +483212,37.61,58.97 +483213,28.747,60.12 +483214,31.134,59.779 +483215,33.639,59.424 +483216,36.283,59.055 +483217,27.454,60.089 +483218,29.832,59.786 +483219,32.326,59.471 +483220,34.955,59.141 +483221,26.162,60.058 +483222,28.531,59.793 +483223,31.013,59.517 +483224,33.625,59.226 +483225,24.872,60.026 +483226,27.231,59.801 +483227,29.698,59.563 +483228,32.293,59.312 +483229,23.584,59.995 +483230,25.931,59.808 +483231,28.383,59.609 +483232,30.959,59.398 +483233,22.297,59.963 +483234,24.631,59.815 +483235,27.068,59.656 +483236,29.623,59.484 +483237,21.013,59.931 +483238,23.332,59.822 +483239,25.751,59.702 +483240,28.285,59.57 +483241,19.73,59.9 +483242,22.034,59.829 +483243,24.434,59.748 +483244,26.945,59.656 +483245,18.449,59.868 +483246,20.737,59.836 +483247,23.117,59.795 +483248,25.604,59.742 +483249,17.17,59.836 +483250,19.44,59.843 +483251,21.798,59.841 +483252,24.261,59.827 +483253,15.892,59.804 +483254,18.143,59.85 +483255,20.48,59.887 +483256,22.915,59.913 +483257,14.617,59.772 +483258,16.847,59.857 +483259,19.16,59.933 +483260,21.568,59.999 +483261,13.343,59.74 +483262,15.552,59.864 +483263,17.84,59.979 +483264,20.22,60.084 +483265,12.07,59.709 +483266,14.257,59.871 +483267,16.519,60.025 +483268,18.869,60.169 +483269,10.8,59.677 +483270,12.962,59.879 +483271,15.198,60.071 +483272,17.517,60.254 +483273,9.5309,59.646 +483274,11.669,59.886 +483275,13.876,60.117 +483276,16.164,60.339 +483277,8.2637,59.615 +483278,10.375,59.893 +483279,12.554,60.163 +483280,14.808,60.423 +483281,6.9981,59.584 +483282,9.0826,59.9 +483283,11.231,60.209 +483284,13.451,60.507 +483285,5.7342,59.553 +483286,7.7904,59.908 +483287,9.9071,60.254 +483288,12.093,60.591 +483289,4.4719,59.523 +483290,6.4986,59.915 +483291,8.5829,60.3 +483292,10.733,60.674 +483293,3.2112,59.493 +483294,5.2074,59.923 +483295,7.2582,60.345 +483296,9.3712,60.757 +483297,1.9521,59.463 +483298,3.9166,59.931 +483299,5.933,60.39 +483300,8.0082,60.84 +483301,0.69455,59.434 +483302,2.6263,59.938 +483303,4.6072,60.435 +483304,6.6438,60.922 +483305,359.44,59.405 +483306,1.3365,59.946 +483307,3.2809,60.48 +483308,5.2779,61.003 +483309,358.18,59.377 +483310,0.047181,59.955 +483311,1.9541,60.524 +483312,3.9107,61.084 +483313,356.93,59.349 +483314,358.76,59.963 +483315,0.62681,60.569 +483316,2.5422,61.164 +483317,355.68,59.321 +483318,357.47,59.971 +483319,359.3,60.613 +483320,1.1723,61.244 +483321,354.43,59.294 +483322,356.18,59.98 +483323,357.97,60.657 +483324,359.8,61.324 +483325,353.18,59.268 +483326,354.89,59.989 +483327,356.64,60.701 +483328,358.43,61.402 +483329,351.93,59.242 +483330,353.61,59.998 +483331,355.31,60.744 +483332,357.06,61.48 +483333,350.69,59.217 +483334,352.32,60.007 +483335,353.98,60.788 +483336,355.68,61.557 +483337,349.44,59.192 +483338,351.03,60.016 +483339,352.65,60.831 +483340,354.3,61.634 +483341,348.2,59.168 +483342,349.75,60.026 +483343,351.32,60.874 +483344,352.93,61.709 +483345,346.96,59.145 +483346,348.46,60.036 +483347,349.99,60.916 +483348,351.55,61.784 +483349,345.72,59.123 +483350,347.18,60.046 +483351,348.66,60.959 +483352,350.17,61.859 +483353,344.48,59.101 +483354,345.89,60.056 +483355,347.33,61.001 +483356,348.79,61.932 +483357,343.24,59.08 +483358,344.61,60.067 +483359,346,61.042 +483360,347.41,62.005 +483361,342,59.06 +483362,343.32,60.078 +483363,344.66,61.084 +483364,346.03,62.076 +483365,340.77,59.041 +483366,342.04,60.089 +483367,343.33,61.125 +483368,344.65,62.147 +483369,339.53,59.022 +483370,340.76,60.1 +483371,342,61.166 +483372,343.26,62.217 +483373,338.3,59.005 +483374,339.47,60.112 +483375,340.67,61.206 +483376,341.88,62.286 +483377,337.07,58.988 +483378,338.19,60.124 +483379,339.33,61.246 +483380,340.49,62.354 +483381,335.83,58.972 +483382,336.91,60.136 +483383,338,61.286 +483384,339.11,62.421 +483385,334.6,58.957 +483386,335.62,60.149 +483387,336.66,61.326 +483388,337.72,62.487 +483389,333.37,58.943 +483390,334.34,60.162 +483391,335.33,61.365 +483392,336.33,62.552 +483393,332.14,58.93 +483394,333.06,60.175 +483395,333.99,61.404 +483396,334.95,62.616 +483397,330.91,58.919 +483398,331.78,60.188 +483399,332.66,61.442 +483400,333.56,62.679 +483401,329.69,58.908 +483402,330.5,60.202 +483403,331.32,61.48 +483404,332.17,62.741 +483405,328.46,58.898 +483406,329.21,60.216 +483407,329.99,61.518 +483408,330.78,62.802 +483409,327.23,58.889 +483410,327.93,60.231 +483411,328.65,61.556 +483412,329.39,62.861 +483413,326.01,58.882 +483414,326.65,60.246 +483415,327.32,61.593 +483416,328,62.92 +483417,324.78,58.875 +483418,325.37,60.261 +483419,325.98,61.629 +483420,326.61,62.978 +483421,323.56,58.87 +483422,324.09,60.277 +483423,324.64,61.665 +483424,325.22,63.034 +483425,322.34,58.865 +483426,322.81,60.293 +483427,323.31,61.701 +483428,323.83,63.089 +483429,321.11,58.862 +483430,321.53,60.309 +483431,321.97,61.736 +483432,322.44,63.143 +483433,319.89,58.86 +483434,320.25,60.326 +483435,320.64,61.771 +483436,321.05,63.196 +483437,318.67,58.859 +483438,318.97,60.343 +483439,319.3,61.806 +483440,319.66,63.247 +483441,317.44,58.86 +483442,317.69,60.361 +483443,317.96,61.84 +483444,318.27,63.298 +483445,316.22,58.861 +483446,316.41,60.378 +483447,316.63,61.874 +483448,316.87,63.347 +483449,315,58.864 +483450,315.13,60.397 +483451,315.29,61.907 +483452,315.48,63.395 +483453,313.78,58.868 +483454,313.85,60.415 +483455,313.95,61.94 +483456,314.09,63.442 +483457,312.56,58.874 +483458,312.57,60.435 +483459,312.61,61.973 +483460,312.7,63.487 +483461,311.34,58.88 +483462,311.29,60.454 +483463,311.28,62.005 +483464,311.31,63.531 +483465,310.12,58.888 +483466,310.01,60.474 +483467,309.94,62.036 +483468,309.92,63.574 +483469,308.89,58.897 +483470,308.72,60.494 +483471,308.6,62.067 +483472,308.53,63.616 +483473,307.67,58.908 +483474,307.44,60.515 +483475,307.27,62.098 +483476,307.13,63.656 +483477,306.45,58.919 +483478,306.16,60.536 +483479,305.93,62.128 +483480,305.74,63.695 +483481,305.23,58.932 +483482,304.88,60.558 +483483,304.59,62.158 +483484,304.35,63.733 +483485,304.01,58.947 +483486,303.6,60.58 +483487,303.26,62.188 +483488,302.96,63.77 +483489,302.79,58.962 +483490,302.32,60.602 +483491,301.92,62.216 +483492,301.57,63.805 +483493,301.56,58.979 +483494,301.04,60.625 +483495,300.58,62.245 +483496,300.18,63.839 +483497,300.34,58.997 +483498,299.76,60.648 +483499,299.25,62.273 +483500,298.79,63.871 +483501,299.12,59.017 +483502,298.48,60.672 +483503,297.91,62.301 +483504,297.4,63.903 +483505,297.89,59.038 +483506,297.2,60.696 +483507,296.57,62.328 +483508,296.02,63.933 +483509,296.67,59.06 +483510,295.91,60.721 +483511,295.24,62.354 +483512,294.63,63.961 +483513,295.45,59.084 +483514,294.63,60.746 +483515,293.9,62.381 +483516,293.24,63.989 +483517,294.22,59.109 +483518,293.35,60.771 +483519,292.56,62.406 +483520,291.85,64.015 +483521,292.99,59.135 +483522,292.07,60.797 +483523,291.23,62.432 +483524,290.47,64.039 +483525,291.77,59.163 +483526,290.79,60.823 +483527,289.89,62.457 +483528,289.08,64.063 +483529,290.54,59.191 +483530,289.5,60.85 +483531,288.56,62.481 +483532,287.7,64.085 +483533,289.31,59.222 +483534,288.22,60.877 +483535,287.22,62.505 +483536,286.31,64.106 +483537,288.08,59.253 +483538,286.94,60.904 +483539,285.89,62.528 +483540,284.93,64.125 +483541,286.85,59.286 +483542,285.65,60.932 +483543,284.55,62.552 +483544,283.55,64.143 +483545,285.62,59.32 +483546,284.37,60.961 +483547,283.22,62.574 +483548,282.17,64.16 +483549,284.39,59.356 +483550,283.08,60.99 +483551,281.89,62.596 +483552,280.79,64.176 +483553,283.16,59.392 +483554,281.8,61.019 +483555,280.55,62.618 +483556,279.41,64.19 +483557,281.93,59.431 +483558,280.51,61.048 +483559,279.22,62.639 +483560,278.03,64.203 +483561,280.69,59.47 +483562,279.23,61.078 +483563,277.88,62.66 +483564,276.65,64.215 +483565,279.46,59.511 +483566,277.94,61.109 +483567,276.55,62.681 +483568,275.27,64.226 +483569,278.22,59.552 +483570,276.66,61.14 +483571,275.22,62.701 +483572,273.89,64.235 +483573,276.98,59.596 +483574,275.37,61.171 +483575,273.89,62.72 +483576,272.52,64.243 +483577,275.74,59.64 +483578,274.08,61.203 +483579,272.56,62.739 +483580,271.14,64.25 +483581,274.5,59.686 +483582,272.79,61.235 +483583,271.22,62.758 +483584,269.77,64.256 +483585,273.26,59.732 +483586,271.51,61.267 +483587,269.89,62.776 +483588,268.4,64.26 +483589,272.01,59.78 +483590,270.22,61.3 +483591,268.56,62.794 +483592,267.03,64.263 +483593,270.77,59.83 +483594,268.93,61.333 +483595,267.23,62.812 +483596,265.66,64.266 +483597,269.52,59.88 +483598,267.64,61.367 +483599,265.9,62.829 +483600,264.29,64.266 +483601,268.27,59.932 +483602,266.35,61.401 +483603,264.57,62.846 +483604,262.92,64.266 +483605,267.03,59.984 +483606,265.06,61.435 +483607,263.24,62.862 +483608,261.56,64.265 +483609,265.77,60.038 +483610,263.77,61.47 +483611,261.91,62.878 +483612,260.19,64.262 +483613,264.52,60.093 +483614,262.48,61.505 +483615,260.59,62.893 +483616,258.83,64.259 +483617,263.27,60.149 +483618,261.18,61.54 +483619,259.26,62.908 +483620,257.47,64.254 +483621,262.01,60.206 +483622,259.89,61.576 +483623,257.93,62.923 +483624,256.11,64.248 +483625,260.75,60.265 +483626,258.6,61.612 +483627,256.6,62.938 +483628,254.75,64.241 +483629,259.49,60.324 +483630,257.3,61.649 +483631,255.28,62.952 +483632,253.39,64.233 +483633,258.23,60.384 +483634,256.01,61.685 +483635,253.95,62.965 +483636,252.03,64.224 +483637,256.97,60.445 +483638,254.72,61.722 +483639,252.63,62.979 +483640,250.68,64.214 +483641,255.71,60.508 +483642,253.42,61.76 +483643,251.3,62.992 +483644,249.32,64.204 +483645,254.44,60.571 +483646,252.12,61.797 +483647,249.98,63.004 +483648,247.97,64.192 +483649,253.17,60.635 +483650,250.83,61.835 +483651,248.65,63.017 +483652,246.62,64.179 +483653,251.9,60.7 +483654,249.53,61.874 +483655,247.33,63.029 +483656,245.27,64.165 +483657,250.63,60.766 +483658,248.23,61.912 +483659,246.01,63.04 +483660,243.92,64.15 +483661,249.36,60.833 +483662,246.93,61.951 +483663,244.68,63.052 +483664,242.58,64.135 +483665,248.08,60.9 +483666,245.64,61.99 +483667,243.36,63.063 +483668,241.23,64.118 +483669,246.8,60.969 +483670,244.34,62.03 +483671,242.04,63.074 +483672,239.89,64.101 +483673,245.52,61.038 +483674,243.04,62.069 +483675,240.72,63.084 +483676,238.55,64.083 +483677,244.24,61.108 +483678,241.74,62.109 +483679,239.4,63.094 +483680,237.21,64.064 +483681,242.96,61.179 +483682,240.43,62.149 +483683,238.08,63.104 +483684,235.87,64.044 +483685,241.67,61.25 +483686,239.13,62.19 +483687,236.76,63.114 +483688,234.53,64.024 +483689,240.38,61.322 +483690,237.83,62.23 +483691,235.44,63.123 +483692,233.2,64.003 +483693,239.09,61.395 +483694,236.53,62.271 +483695,234.12,63.133 +483696,231.86,63.981 +483697,237.8,61.469 +483698,235.22,62.312 +483699,232.81,63.142 +483700,230.53,63.958 +483701,236.51,61.543 +483702,233.92,62.353 +483703,231.49,63.15 +483704,229.2,63.935 +483705,235.21,61.617 +483706,232.61,62.395 +483707,230.17,63.159 +483708,227.87,63.911 +483709,233.92,61.693 +483710,231.3,62.436 +483711,228.86,63.167 +483712,226.55,63.887 +483713,232.62,61.768 +483714,230,62.478 +483715,227.54,63.175 +483716,225.22,63.862 +483717,231.31,61.845 +483718,228.69,62.52 +483719,226.23,63.183 +483720,223.9,63.836 +483721,230.01,61.921 +483722,227.38,62.562 +483723,224.91,63.191 +483724,222.58,63.81 +483725,228.7,61.999 +483726,226.07,62.604 +483727,223.6,63.199 +483728,221.26,63.784 +483729,227.4,62.076 +483730,224.76,62.646 +483731,222.29,63.206 +483732,219.94,63.757 +483733,226.09,62.154 +483734,223.45,62.689 +483735,220.97,63.213 +483736,218.62,63.729 +483737,224.77,62.232 +483738,222.14,62.731 +483739,219.66,63.22 +483740,217.31,63.701 +483741,223.46,62.311 +483742,220.83,62.774 +483743,218.35,63.227 +483744,216,63.673 +483745,222.14,62.39 +483746,219.52,62.816 +483747,217.04,63.234 +483748,214.68,63.645 +483749,220.83,62.469 +483750,218.21,62.859 +483751,215.73,63.241 +483752,213.38,63.616 +483753,219.51,62.548 +483754,216.89,62.902 +483755,214.42,63.248 +483756,212.07,63.586 +483757,218.18,62.628 +483758,215.58,62.945 +483759,213.11,63.254 +483760,210.76,63.557 +483761,216.86,62.708 +483762,214.27,62.988 +483763,211.81,63.261 +483764,209.46,63.527 +483765,215.53,62.788 +483766,212.95,63.031 +483767,210.5,63.267 +483768,208.16,63.497 +483769,214.21,62.868 +483770,211.63,63.074 +483771,209.19,63.273 +483772,206.86,63.467 +483773,212.88,62.948 +483774,210.32,63.117 +483775,207.88,63.28 +483776,205.56,63.437 +483777,211.54,63.028 +483778,209,63.16 +483779,206.58,63.286 +483780,204.26,63.406 +483781,210.21,63.108 +483782,207.68,63.203 +483783,205.27,63.292 +483784,202.97,63.376 +483785,208.87,63.188 +483786,206.36,63.246 +483787,203.97,63.298 +483788,201.67,63.345 +483789,207.54,63.269 +483790,205.04,63.289 +483791,202.66,63.304 +483792,200.38,63.314 +483793,206.2,63.349 +483794,203.72,63.333 +483795,201.36,63.31 +483796,199.09,63.284 +483797,204.86,63.429 +483798,202.4,63.376 +483799,200.06,63.317 +483800,197.8,63.253 +483801,203.51,63.509 +483802,201.08,63.418 +483803,198.76,63.323 +483804,196.52,63.223 +483805,202.17,63.588 +483806,199.76,63.461 +483807,197.45,63.329 +483808,195.23,63.192 +483809,200.82,63.668 +483810,198.44,63.504 +483811,196.15,63.335 +483812,193.95,63.162 +483813,199.47,63.747 +483814,197.12,63.547 +483815,194.85,63.341 +483816,192.67,63.132 +483817,198.12,63.826 +483818,195.79,63.59 +483819,193.55,63.348 +483820,191.39,63.101 +483821,196.77,63.905 +483822,194.47,63.632 +483823,192.25,63.354 +483824,190.11,63.072 +483825,195.42,63.983 +483826,193.14,63.675 +483827,190.95,63.36 +483828,188.84,63.042 +483829,194.06,64.062 +483830,191.82,63.717 +483831,189.66,63.367 +483832,187.56,63.013 +483833,192.71,64.139 +483834,190.49,63.759 +483835,188.36,63.373 +483836,186.29,62.983 +483837,191.35,64.217 +483838,189.17,63.801 +483839,187.06,63.38 +483840,185.02,62.955 +483841,189.99,64.294 +483842,187.84,63.843 +483843,185.76,63.387 +483844,183.75,62.926 +483845,188.63,64.37 +483846,186.51,63.885 +483847,184.47,63.394 +483848,182.48,62.898 +483849,187.26,64.446 +483850,185.18,63.927 +483851,183.17,63.401 +483852,181.21,62.87 +483853,185.9,64.522 +483854,183.86,63.968 +483855,181.87,63.408 +483856,179.95,62.843 +483857,184.53,64.597 +483858,182.53,64.01 +483859,180.58,63.415 +483860,178.69,62.816 +483861,183.17,64.672 +483862,181.2,64.051 +483863,179.29,63.423 +483864,177.42,62.79 +483865,181.8,64.746 +483866,179.87,64.092 +483867,177.99,63.431 +483868,176.16,62.764 +483869,180.43,64.819 +483870,178.54,64.132 +483871,176.7,63.438 +483872,174.9,62.739 +483873,179.06,64.892 +483874,177.21,64.173 +483875,175.4,63.446 +483876,173.65,62.714 +483877,177.69,64.964 +483878,175.87,64.213 +483879,174.11,63.455 +483880,172.39,62.69 +483881,176.31,65.035 +483882,174.54,64.253 +483883,172.82,63.463 +483884,171.14,62.667 +483885,174.94,65.106 +483886,173.21,64.293 +483887,171.53,63.472 +483888,169.88,62.644 +483889,173.56,65.176 +483890,171.88,64.333 +483891,170.24,63.481 +483892,168.63,62.622 +483893,172.18,65.245 +483894,170.54,64.372 +483895,168.94,63.49 +483896,167.38,62.6 +483897,170.81,65.314 +483898,169.21,64.411 +483899,167.65,63.499 +483900,166.13,62.58 +483901,169.43,65.381 +483902,167.88,64.45 +483903,166.36,63.508 +483904,164.88,62.56 +483905,168.05,65.448 +483906,166.54,64.488 +483907,165.07,63.518 +483908,163.64,62.54 +483909,166.66,65.514 +483910,165.21,64.526 +483911,163.78,63.528 +483912,162.39,62.522 +483913,165.28,65.579 +483914,163.87,64.564 +483915,162.5,63.539 +483916,161.15,62.504 +483917,163.9,65.644 +483918,162.54,64.602 +483919,161.21,63.549 +483920,159.9,62.487 +483921,162.52,65.707 +483922,161.2,64.639 +483923,159.92,63.56 +483924,158.66,62.472 +483925,161.13,65.77 +483926,159.87,64.676 +483927,158.63,63.571 +483928,157.42,62.456 +483929,159.74,65.831 +483930,158.53,64.713 +483931,157.34,63.583 +483932,156.18,62.442 +483933,158.36,65.892 +483934,157.19,64.749 +483935,156.05,63.594 +483936,154.94,62.429 +483937,156.97,65.951 +483938,155.86,64.785 +483939,154.77,63.606 +483940,153.7,62.417 +483941,155.58,66.01 +483942,154.52,64.821 +483943,153.48,63.619 +483944,152.46,62.405 +483945,154.19,66.068 +483946,153.18,64.856 +483947,152.19,63.631 +483948,151.23,62.395 +483949,152.81,66.124 +483950,151.84,64.891 +483951,150.9,63.644 +483952,149.99,62.386 +483953,151.42,66.18 +483954,150.51,64.926 +483955,149.62,63.658 +483956,148.75,62.377 +483957,150.03,66.234 +483958,149.17,64.96 +483959,148.33,63.671 +483960,147.52,62.37 +483961,148.64,66.288 +483962,147.83,64.994 +483963,147.05,63.685 +483964,146.29,62.364 +483965,147.24,66.34 +483966,146.49,65.027 +483967,145.76,63.7 +483968,145.05,62.359 +483969,145.85,66.391 +483970,145.15,65.06 +483971,144.47,63.714 +483972,143.82,62.355 +483973,144.46,66.441 +483974,143.81,65.093 +483975,143.19,63.729 +483976,142.59,62.352 +483977,143.07,66.49 +483978,142.47,65.125 +483979,141.9,63.745 +483980,141.36,62.35 +483981,141.68,66.538 +483982,141.13,65.157 +483983,140.62,63.761 +483984,140.13,62.349 +483985,140.28,66.585 +483986,139.79,65.189 +483987,139.33,63.777 +483988,138.9,62.349 +483989,138.89,66.631 +483990,138.46,65.22 +483991,138.05,63.793 +483992,137.67,62.351 +483993,137.5,66.675 +483994,137.12,65.251 +483995,136.76,63.81 +483996,136.44,62.354 +483997,136.1,66.718 +483998,135.78,65.281 +483999,135.48,63.827 +484000,135.21,62.358 +484001,134.71,66.76 +484002,134.44,65.311 +484003,134.19,63.845 +484004,133.98,62.363 +484005,133.32,66.801 +484006,133.1,65.341 +484007,132.91,63.863 +484008,132.75,62.369 +484009,131.92,66.841 +484010,131.76,65.37 +484011,131.62,63.882 +484012,131.52,62.377 +484013,130.53,66.879 +484014,130.42,65.399 +484015,130.34,63.9 +484016,130.29,62.385 +484017,129.14,66.916 +484018,129.08,65.427 +484019,129.05,63.92 +484020,129.07,62.395 +484021,127.74,66.952 +484022,127.74,65.455 +484023,127.77,63.939 +484024,127.84,62.406 +484025,126.35,66.987 +484026,126.4,65.482 +484027,126.48,63.959 +484028,126.61,62.419 +484029,124.96,67.02 +484030,125.06,65.509 +484031,125.2,63.98 +484032,125.38,62.433 +484033,123.56,67.053 +484034,123.72,65.536 +484035,123.91,64.001 +484036,124.15,62.448 +484037,122.17,67.084 +484038,122.38,65.562 +484039,122.63,64.022 +484040,122.93,62.464 +484041,120.78,67.114 +484042,121.04,65.588 +484043,121.34,64.044 +484044,121.7,62.481 +484045,119.39,67.142 +484046,119.7,65.613 +484047,120.06,64.066 +484048,120.47,62.5 +484049,117.99,67.169 +484050,118.36,65.638 +484051,118.77,64.088 +484052,119.24,62.52 +484053,116.6,67.195 +484054,117.02,65.663 +484055,117.49,64.111 +484056,118.01,62.541 +484057,115.21,67.22 +484058,115.68,65.687 +484059,116.2,64.134 +484060,116.78,62.564 +484061,113.82,67.244 +484062,114.34,65.71 +484063,114.92,64.158 +484064,115.55,62.587 +484065,112.43,67.266 +484066,113,65.734 +484067,113.63,64.182 +484068,114.32,62.612 +484069,111.04,67.287 +484070,111.66,65.756 +484071,112.34,64.207 +484072,113.09,62.639 +484073,109.65,67.307 +484074,110.32,65.779 +484075,111.06,64.231 +484076,111.86,62.666 +484077,108.26,67.325 +484078,108.98,65.801 +484079,109.77,64.257 +484080,110.63,62.695 +484081,106.88,67.343 +484082,107.65,65.822 +484083,108.48,64.282 +484084,109.39,62.725 +484085,105.49,67.359 +484086,106.31,65.843 +484087,107.2,64.309 +484088,108.16,62.756 +484089,104.1,67.374 +484090,104.97,65.864 +484091,105.91,64.335 +484092,106.93,62.789 +484093,102.72,67.387 +484094,103.63,65.884 +484095,104.62,64.362 +484096,105.69,62.823 +484097,101.33,67.4 +484098,102.29,65.904 +484099,103.33,64.389 +484100,104.46,62.858 +484101,99.949,67.411 +484102,100.96,65.923 +484103,102.04,64.417 +484104,103.22,62.894 +484105,98.566,67.421 +484106,99.621,65.942 +484107,100.76,64.445 +484108,101.98,62.931 +484109,97.183,67.43 +484110,98.284,65.961 +484111,99.468,64.474 +484112,100.74,62.97 +484113,95.802,67.437 +484114,96.947,65.979 +484115,98.179,64.503 +484116,99.505,63.01 +484117,94.421,67.444 +484118,95.611,65.996 +484119,96.889,64.532 +484120,98.265,63.051 +484121,93.041,67.449 +484122,94.275,66.014 +484123,95.599,64.562 +484124,97.024,63.093 +484125,91.663,67.453 +484126,92.94,66.031 +484127,94.309,64.592 +484128,95.781,63.137 +484129,90.285,67.456 +484130,91.605,66.047 +484131,93.018,64.622 +484132,94.538,63.181 +484133,88.908,67.458 +484134,90.27,66.063 +484135,91.727,64.653 +484136,93.293,63.227 +484137,87.533,67.459 +484138,88.935,66.079 +484139,90.436,64.684 +484140,92.047,63.274 +484141,86.158,67.458 +484142,87.601,66.095 +484143,89.144,64.715 +484144,90.8,63.322 +484145,84.785,67.457 +484146,86.267,66.11 +484147,87.852,64.747 +484148,89.552,63.371 +484149,83.413,67.454 +484150,84.934,66.124 +484151,86.559,64.78 +484152,88.302,63.421 +484153,82.042,67.45 +484154,83.601,66.138 +484155,85.266,64.812 +484156,87.051,63.472 +484157,80.672,67.446 +484158,82.269,66.152 +484159,83.972,64.845 +484160,85.798,63.525 +484161,79.303,67.44 +484162,80.936,66.166 +484163,82.678,64.878 +484164,84.544,63.578 +484165,77.936,67.433 +484166,79.605,66.179 +484167,81.384,64.912 +484168,83.289,63.632 +484169,76.57,67.425 +484170,78.273,66.192 +484171,80.089,64.946 +484172,82.032,63.688 +484173,75.205,67.416 +484174,76.942,66.204 +484175,78.793,64.98 +484176,80.773,63.744 +484177,73.841,67.406 +484178,75.612,66.217 +484179,77.497,65.015 +484180,79.513,63.802 +484181,72.479,67.396 +484182,74.282,66.228 +484183,76.201,65.049 +484184,78.252,63.86 +484185,71.118,67.384 +484186,72.953,66.24 +484187,74.904,65.085 +484188,76.989,63.919 +484189,69.759,67.371 +484190,71.623,66.251 +484191,73.606,65.12 +484192,75.724,63.979 +484193,68.401,67.358 +484194,70.295,66.262 +484195,72.308,65.156 +484196,74.457,64.04 +484197,67.044,67.343 +484198,68.967,66.273 +484199,71.009,65.192 +484200,73.189,64.102 +484201,65.689,67.328 +484202,67.639,66.283 +484203,69.71,65.228 +484204,71.919,64.165 +484205,64.336,67.312 +484206,66.312,66.293 +484207,68.41,65.265 +484208,70.648,64.228 +484209,62.983,67.295 +484210,64.986,66.302 +484211,67.11,65.301 +484212,69.374,64.293 +484213,61.633,67.277 +484214,63.66,66.312 +484215,65.809,65.338 +484216,68.099,64.358 +484217,60.284,67.259 +484218,62.334,66.321 +484219,64.507,65.376 +484220,66.822,64.423 +484221,58.936,67.24 +484222,61.009,66.33 +484223,63.205,65.413 +484224,65.543,64.49 +484225,57.59,67.22 +484226,59.684,66.339 +484227,61.902,65.451 +484228,64.263,64.557 +484229,56.246,67.199 +484230,58.36,66.347 +484231,60.599,65.489 +484232,62.98,64.625 +484233,54.903,67.177 +484234,57.037,66.355 +484235,59.295,65.527 +484236,61.696,64.694 +484237,53.562,67.155 +484238,55.714,66.363 +484239,57.99,65.566 +484240,60.41,64.763 +484241,52.222,67.133 +484242,54.392,66.371 +484243,56.685,65.604 +484244,59.122,64.833 +484245,50.884,67.109 +484246,53.07,66.378 +484247,55.379,65.643 +484248,57.832,64.903 +484249,49.548,67.085 +484250,51.749,66.386 +484251,54.073,65.682 +484252,56.54,64.974 +484253,48.213,67.061 +484254,50.428,66.393 +484255,52.766,65.721 +484256,55.246,65.046 +484257,46.88,67.036 +484258,49.108,66.4 +484259,51.458,65.76 +484260,53.95,65.118 +484261,45.548,67.01 +484262,47.789,66.407 +484263,50.15,65.8 +484264,52.652,65.19 +484265,44.219,66.984 +484266,46.47,66.413 +484267,48.841,65.839 +484268,51.353,65.263 +484269,42.891,66.958 +484270,45.151,66.42 +484271,47.532,65.879 +484272,50.051,65.336 +484273,41.564,66.931 +484274,43.833,66.426 +484275,46.221,65.919 +484276,48.748,65.41 +484277,40.24,66.903 +484278,42.516,66.432 +484279,44.911,65.959 +484280,47.442,65.484 +484281,38.917,66.876 +484282,41.2,66.438 +484283,43.599,65.999 +484284,46.135,65.558 +484285,37.596,66.848 +484286,39.884,66.444 +484287,42.287,66.039 +484288,44.825,65.633 +484289,36.276,66.819 +484290,38.568,66.45 +484291,40.974,66.079 +484292,43.514,65.708 +484293,34.959,66.79 +484294,37.253,66.455 +484295,39.661,66.12 +484296,42.2,65.783 +484297,33.643,66.761 +484298,35.939,66.461 +484299,38.347,66.16 +484300,40.885,65.859 +484301,32.328,66.732 +484302,34.625,66.466 +484303,37.032,66.201 +484304,39.568,65.934 +484305,31.016,66.703 +484306,33.312,66.472 +484307,35.717,66.241 +484308,38.249,66.01 +484309,29.705,66.673 +484310,31.999,66.477 +484311,34.401,66.282 +484312,36.927,66.086 +484313,28.396,66.643 +484314,30.687,66.483 +484315,33.084,66.322 +484316,35.604,66.162 +484317,27.089,66.613 +484318,29.376,66.488 +484319,31.767,66.363 +484320,34.279,66.238 +484321,25.783,66.583 +484322,28.065,66.493 +484323,30.449,66.403 +484324,32.952,66.314 +484325,24.479,66.553 +484326,26.755,66.498 +484327,29.131,66.444 +484328,31.624,66.39 +484329,23.177,66.523 +484330,25.445,66.503 +484331,27.812,66.485 +484332,30.293,66.466 +484333,21.877,66.493 +484334,24.136,66.508 +484335,26.492,66.525 +484336,28.96,66.542 +484337,20.578,66.462 +484338,22.827,66.514 +484339,25.172,66.566 +484340,27.626,66.618 +484341,19.281,66.432 +484342,21.52,66.519 +484343,23.851,66.606 +484344,26.29,66.694 +484345,17.986,66.402 +484346,20.212,66.524 +484347,22.529,66.647 +484348,24.952,66.77 +484349,16.692,66.372 +484350,18.905,66.529 +484351,21.207,66.687 +484352,23.612,66.846 +484353,15.401,66.342 +484354,17.599,66.534 +484355,19.884,66.728 +484356,22.27,66.921 +484357,14.11,66.312 +484358,16.293,66.54 +484359,18.561,66.768 +484360,20.926,66.996 +484361,12.822,66.283 +484362,14.988,66.545 +484363,17.237,66.808 +484364,19.581,67.071 +484365,11.535,66.254 +484366,13.683,66.55 +484367,15.912,66.848 +484368,18.234,67.146 +484369,10.25,66.224 +484370,12.379,66.556 +484371,14.587,66.888 +484372,16.885,67.221 +484373,8.9664,66.196 +484374,11.076,66.562 +484375,13.261,66.928 +484376,15.535,67.295 +484377,7.6845,66.167 +484378,9.7728,66.567 +484379,11.935,66.968 +484380,14.183,67.368 +484381,6.4043,66.139 +484382,8.4703,66.573 +484383,10.608,67.008 +484384,12.829,67.442 +484385,5.1256,66.111 +484386,7.1684,66.579 +484387,9.2808,67.047 +484388,11.474,67.515 +484389,3.8485,66.083 +484390,5.8669,66.585 +484391,7.9529,67.087 +484392,10.117,67.587 +484393,2.573,66.056 +484394,4.566,66.591 +484395,6.6244,67.126 +484396,8.7585,67.659 +484397,1.299,66.03 +484398,3.2655,66.597 +484399,5.2954,67.165 +484400,7.3984,67.731 +484401,0.026603,66.003 +484402,1.9655,66.604 +484403,3.9658,67.204 +484404,6.0369,67.802 +484405,358.76,65.978 +484406,0.66608,66.61 +484407,2.6358,67.243 +484408,4.6738,67.873 +484409,357.49,65.952 +484410,359.37,66.617 +484411,1.3052,67.281 +484412,3.3093,67.943 +484413,356.22,65.928 +484414,358.07,66.624 +484415,359.97,67.319 +484416,1.9434,68.012 +484417,354.95,65.903 +484418,356.77,66.631 +484419,358.64,67.358 +484420,0.57606,68.081 +484421,353.69,65.88 +484422,355.47,66.638 +484423,357.31,67.395 +484424,359.21,68.149 +484425,352.42,65.857 +484426,354.18,66.646 +484427,355.98,67.433 +484428,357.84,68.217 +484429,351.16,65.835 +484430,352.88,66.654 +484431,354.65,67.471 +484432,356.47,68.284 +484433,349.9,65.813 +484434,351.58,66.662 +484435,353.31,67.508 +484436,355.09,68.35 +484437,348.64,65.792 +484438,350.29,66.67 +484439,351.98,67.545 +484440,353.72,68.416 +484441,347.38,65.772 +484442,348.99,66.678 +484443,350.64,67.582 +484444,352.34,68.48 +484445,346.13,65.752 +484446,347.7,66.687 +484447,349.31,67.618 +484448,350.97,68.544 +484449,344.87,65.733 +484450,346.4,66.696 +484451,347.97,67.654 +484452,349.59,68.607 +484453,343.62,65.715 +484454,345.11,66.705 +484455,346.64,67.69 +484456,348.21,68.67 +484457,342.36,65.698 +484458,343.81,66.714 +484459,345.3,67.726 +484460,346.83,68.731 +484461,341.11,65.682 +484462,342.52,66.724 +484463,343.97,67.761 +484464,345.45,68.792 +484465,339.86,65.666 +484466,341.23,66.734 +484467,342.63,67.796 +484468,344.07,68.852 +484469,338.61,65.652 +484470,339.93,66.744 +484471,341.29,67.831 +484472,342.69,68.911 +484473,337.36,65.638 +484474,338.64,66.755 +484475,339.96,67.866 +484476,341.3,68.969 +484477,336.11,65.625 +484478,337.35,66.765 +484479,338.62,67.9 +484480,339.92,69.026 +484481,334.87,65.613 +484482,336.06,66.777 +484483,337.28,67.934 +484484,338.54,69.082 +484485,333.62,65.602 +484486,334.77,66.788 +484487,335.94,67.967 +484488,337.15,69.138 +484489,332.38,65.592 +484490,333.47,66.8 +484491,334.6,68 +484492,335.76,69.192 +484493,331.13,65.583 +484494,332.18,66.812 +484495,333.26,68.033 +484496,334.37,69.245 +484497,329.89,65.575 +484498,330.89,66.824 +484499,331.92,68.066 +484500,332.99,69.297 +484501,328.65,65.568 +484502,329.6,66.837 +484503,330.59,68.098 +484504,331.6,69.349 +484505,327.4,65.562 +484506,328.31,66.85 +484507,329.25,68.129 +484508,330.21,69.399 +484509,326.16,65.557 +484510,327.02,66.863 +484511,327.91,68.161 +484512,328.82,69.448 +484513,324.92,65.553 +484514,325.73,66.877 +484515,326.57,68.192 +484516,327.43,69.496 +484517,323.68,65.55 +484518,324.44,66.891 +484519,325.23,68.223 +484520,326.04,69.543 +484521,322.45,65.548 +484522,323.15,66.906 +484523,323.88,68.253 +484524,324.64,69.589 +484525,321.21,65.548 +484526,321.86,66.92 +484527,322.54,68.283 +484528,323.25,69.634 +484529,319.97,65.548 +484530,320.57,66.936 +484531,321.2,68.313 +484532,321.86,69.678 +484533,318.73,65.55 +484534,319.28,66.951 +484535,319.86,68.342 +484536,320.47,69.721 +484537,317.5,65.552 +484538,318,66.967 +484539,318.52,68.371 +484540,319.07,69.762 +484541,316.26,65.556 +484542,316.71,66.983 +484543,317.18,68.399 +484544,317.68,69.802 +484545,315.03,65.561 +484546,315.42,67 +484547,315.84,68.427 +484548,316.29,69.842 +484549,313.79,65.568 +484550,314.13,67.017 +484551,314.5,68.455 +484552,314.89,69.88 +484553,312.56,65.575 +484554,312.84,67.034 +484555,313.16,68.482 +484556,313.5,69.917 +484557,311.32,65.584 +484558,311.55,67.052 +484559,311.81,68.509 +484560,312.11,69.952 +484561,310.09,65.593 +484562,310.26,67.07 +484563,310.47,68.535 +484564,310.71,69.987 +484565,308.85,65.604 +484566,308.98,67.089 +484567,309.13,68.561 +484568,309.32,70.02 +484569,307.62,65.617 +484570,307.69,67.108 +484571,307.79,68.587 +484572,307.92,70.053 +484573,306.39,65.63 +484574,306.4,67.127 +484575,306.45,68.612 +484576,306.53,70.084 +484577,305.15,65.645 +484578,305.11,67.147 +484579,305.11,68.637 +484580,305.13,70.113 +484581,303.92,65.661 +484582,303.82,67.167 +484583,303.76,68.662 +484584,303.74,70.142 +484585,302.68,65.678 +484586,302.53,67.188 +484587,302.42,68.686 +484588,302.35,70.169 +484589,301.45,65.696 +484590,301.25,67.209 +484591,301.08,68.709 +484592,300.95,70.196 +484593,300.22,65.715 +484594,299.96,67.23 +484595,299.74,68.732 +484596,299.56,70.221 +484597,298.98,65.736 +484598,298.67,67.252 +484599,298.4,68.755 +484600,298.17,70.244 +484601,297.75,65.758 +484602,297.38,67.274 +484603,297.05,68.778 +484604,296.77,70.267 +484605,296.51,65.781 +484606,296.09,67.297 +484607,295.71,68.799 +484608,295.38,70.288 +484609,295.28,65.806 +484610,294.8,67.32 +484611,294.37,68.821 +484612,293.99,70.309 +484613,294.04,65.832 +484614,293.51,67.343 +484615,293.03,68.842 +484616,292.6,70.328 +484617,292.81,65.859 +484618,292.22,67.367 +484619,291.69,68.863 +484620,291.2,70.345 +484621,291.57,65.887 +484622,290.93,67.391 +484623,290.35,68.883 +484624,289.81,70.362 +484625,290.34,65.916 +484626,289.64,67.416 +484627,289.01,68.903 +484628,288.42,70.377 +484629,289.1,65.947 +484630,288.35,67.441 +484631,287.67,68.923 +484632,287.03,70.392 +484633,287.86,65.978 +484634,287.06,67.466 +484635,286.33,68.942 +484636,285.64,70.405 +484637,286.63,66.011 +484638,285.77,67.492 +484639,284.99,68.96 +484640,284.25,70.416 +484641,285.39,66.046 +484642,284.48,67.518 +484643,283.65,68.979 +484644,282.87,70.427 +484645,284.15,66.081 +484646,283.19,67.544 +484647,282.31,68.997 +484648,281.48,70.437 +484649,282.91,66.118 +484650,281.9,67.571 +484651,280.97,69.014 +484652,280.09,70.445 +484653,281.67,66.155 +484654,280.61,67.599 +484655,279.63,69.031 +484656,278.71,70.452 +484657,280.43,66.194 +484658,279.32,67.626 +484659,278.29,69.048 +484660,277.32,70.458 +484661,279.18,66.234 +484662,278.03,67.654 +484663,276.95,69.064 +484664,275.94,70.463 +484665,277.94,66.276 +484666,276.74,67.683 +484667,275.61,69.08 +484668,274.55,70.467 +484669,276.7,66.318 +484670,275.44,67.712 +484671,274.27,69.096 +484672,273.17,70.469 +484673,275.45,66.361 +484674,274.15,67.741 +484675,272.93,69.111 +484676,271.79,70.471 +484677,274.2,66.406 +484678,272.86,67.77 +484679,271.6,69.126 +484680,270.41,70.471 +484681,272.96,66.452 +484682,271.57,67.8 +484683,270.26,69.14 +484684,269.03,70.471 +484685,271.71,66.498 +484686,270.27,67.83 +484687,268.92,69.154 +484688,267.65,70.469 +484689,270.46,66.546 +484690,268.98,67.861 +484691,267.58,69.168 +484692,266.27,70.466 +484693,269.21,66.595 +484694,267.68,67.892 +484695,266.25,69.182 +484696,264.89,70.463 +484697,267.96,66.645 +484698,266.39,67.923 +484699,264.91,69.195 +484700,263.52,70.458 +484701,266.71,66.696 +484702,265.09,67.955 +484703,263.58,69.207 +484704,262.14,70.452 +484705,265.45,66.748 +484706,263.8,67.987 +484707,262.24,69.22 +484708,260.77,70.445 +484709,264.2,66.801 +484710,262.5,68.019 +484711,260.9,69.232 +484712,259.4,70.437 +484713,262.94,66.855 +484714,261.2,68.052 +484715,259.57,69.243 +484716,258.02,70.428 +484717,261.68,66.91 +484718,259.91,68.085 +484719,258.24,69.255 +484720,256.65,70.419 +484721,260.42,66.966 +484722,258.61,68.118 +484723,256.9,69.266 +484724,255.29,70.408 +484725,259.16,67.022 +484726,257.31,68.151 +484727,255.57,69.276 +484728,253.92,70.396 +484729,257.9,67.08 +484730,256.01,68.185 +484731,254.24,69.287 +484732,252.55,70.384 +484733,256.64,67.139 +484734,254.72,68.219 +484735,252.9,69.297 +484736,251.19,70.37 +484737,255.37,67.198 +484738,253.42,68.254 +484739,251.57,69.307 +484740,249.82,70.356 +484741,254.11,67.258 +484742,252.12,68.288 +484743,250.24,69.316 +484744,248.46,70.341 +484745,252.84,67.319 +484746,250.82,68.323 +484747,248.91,69.326 +484748,247.1,70.325 +484749,251.57,67.381 +484750,249.52,68.358 +484751,247.58,69.335 +484752,245.74,70.308 +484753,250.3,67.444 +484754,248.21,68.394 +484755,246.25,69.343 +484756,244.38,70.29 +484757,249.02,67.507 +484758,246.91,68.429 +484759,244.92,69.352 +484760,243.02,70.272 +484761,247.75,67.571 +484762,245.61,68.465 +484763,243.59,69.36 +484764,241.67,70.253 +484765,246.47,67.636 +484766,244.31,68.502 +484767,242.26,69.368 +484768,240.31,70.233 +484769,245.19,67.701 +484770,243,68.538 +484771,240.93,69.376 +484772,238.96,70.213 +484773,243.91,67.767 +484774,241.7,68.575 +484775,239.6,69.383 +484776,237.61,70.192 +484777,242.63,67.834 +484778,240.39,68.611 +484779,238.28,69.39 +484780,236.26,70.17 +484781,241.35,67.901 +484782,239.09,68.648 +484783,236.95,69.398 +484784,234.91,70.147 +484785,240.07,67.969 +484786,237.78,68.686 +484787,235.62,69.404 +484788,233.57,70.124 +484789,238.78,68.038 +484790,236.48,68.723 +484791,234.3,69.411 +484792,232.22,70.101 +484793,237.49,68.107 +484794,235.17,68.76 +484795,232.97,69.418 +484796,230.88,70.076 +484797,236.2,68.176 +484798,233.86,68.798 +484799,231.65,69.424 +484800,229.54,70.052 +484801,234.91,68.246 +484802,232.55,68.836 +484803,230.32,69.43 +484804,228.2,70.026 +484805,233.61,68.316 +484806,231.25,68.874 +484807,229,69.436 +484808,226.86,70 +484809,232.32,68.387 +484810,229.94,68.912 +484811,227.68,69.442 +484812,225.52,69.974 +484813,231.02,68.459 +484814,228.63,68.951 +484815,226.35,69.447 +484816,224.19,69.948 +484817,229.72,68.53 +484818,227.32,68.989 +484819,225.03,69.453 +484820,222.85,69.921 +484821,228.42,68.602 +484822,226,69.028 +484823,223.71,69.458 +484824,221.52,69.893 +484825,227.12,68.674 +484826,224.69,69.066 +484827,222.39,69.464 +484828,220.19,69.865 +484829,225.81,68.747 +484830,223.38,69.105 +484831,221.07,69.469 +484832,218.86,69.837 +484833,224.5,68.82 +484834,222.07,69.144 +484835,219.75,69.474 +484836,217.54,69.809 +484837,223.2,68.893 +484838,220.75,69.183 +484839,218.43,69.479 +484840,216.21,69.78 +484841,221.89,68.966 +484842,219.44,69.222 +484843,217.11,69.484 +484844,214.89,69.751 +484845,220.57,69.039 +484846,218.12,69.261 +484847,215.79,69.488 +484848,213.56,69.722 +484849,219.26,69.113 +484850,216.81,69.3 +484851,214.48,69.493 +484852,212.24,69.692 +484853,217.94,69.186 +484854,215.49,69.339 +484855,213.16,69.498 +484856,210.93,69.663 +484857,216.62,69.26 +484858,214.18,69.378 +484859,211.84,69.503 +484860,209.61,69.633 +484861,215.3,69.334 +484862,212.86,69.417 +484863,210.53,69.507 +484864,208.29,69.603 +484865,213.98,69.408 +484866,211.54,69.456 +484867,209.21,69.512 +484868,206.98,69.573 +484869,212.66,69.482 +484870,210.22,69.496 +484871,207.9,69.516 +484872,205.67,69.543 +484873,211.33,69.556 +484874,208.9,69.535 +484875,206.58,69.521 +484876,204.36,69.513 +484877,210,69.629 +484878,207.58,69.574 +484879,205.27,69.525 +484880,203.05,69.484 +484881,208.68,69.703 +484882,206.26,69.613 +484883,203.96,69.53 +484884,201.74,69.454 +484885,207.34,69.777 +484886,204.94,69.652 +484887,202.64,69.535 +484888,200.44,69.424 +484889,206.01,69.85 +484890,203.62,69.691 +484891,201.33,69.539 +484892,199.14,69.394 +484893,204.68,69.924 +484894,202.3,69.73 +484895,200.02,69.544 +484896,197.83,69.364 +484897,203.34,69.997 +484898,200.97,69.769 +484899,198.71,69.549 +484900,196.53,69.334 +484901,202,70.07 +484902,199.65,69.808 +484903,197.4,69.553 +484904,195.24,69.305 +484905,200.66,70.142 +484906,198.33,69.847 +484907,196.09,69.558 +484908,193.94,69.276 +484909,199.32,70.215 +484910,197,69.886 +484911,194.78,69.563 +484912,192.64,69.247 +484913,197.97,70.287 +484914,195.68,69.924 +484915,193.47,69.568 +484916,191.35,69.218 +484917,196.63,70.359 +484918,194.35,69.963 +484919,192.17,69.573 +484920,190.06,69.19 +484921,195.28,70.43 +484922,193.03,70.001 +484923,190.86,69.578 +484924,188.77,69.161 +484925,193.93,70.501 +484926,191.7,70.04 +484927,189.55,69.584 +484928,187.48,69.134 +484929,192.58,70.572 +484930,190.37,70.078 +484931,188.25,69.589 +484932,186.19,69.106 +484933,191.23,70.642 +484934,189.04,70.116 +484935,186.94,69.595 +484936,184.91,69.079 +484937,189.88,70.712 +484938,187.71,70.154 +484939,185.63,69.6 +484940,183.62,69.052 +484941,188.52,70.781 +484942,186.39,70.191 +484943,184.33,69.606 +484944,182.34,69.026 +484945,187.16,70.85 +484946,185.06,70.229 +484947,183.03,69.612 +484948,181.06,69 +484949,185.81,70.918 +484950,183.73,70.266 +484951,181.72,69.618 +484952,179.78,68.975 +484953,184.45,70.986 +484954,182.4,70.304 +484955,180.42,69.625 +484956,178.5,68.95 +484957,183.09,71.053 +484958,181.06,70.341 +484959,179.12,69.631 +484960,177.23,68.926 +484961,181.72,71.12 +484962,179.73,70.377 +484963,177.81,69.638 +484964,175.95,68.902 +484965,180.36,71.186 +484966,178.4,70.414 +484967,176.51,69.645 +484968,174.68,68.879 +484969,178.99,71.251 +484970,177.07,70.45 +484971,175.21,69.652 +484972,173.41,68.857 +484973,177.62,71.316 +484974,175.73,70.487 +484975,173.91,69.659 +484976,172.14,68.835 +484977,176.26,71.38 +484978,174.4,70.522 +484979,172.61,69.667 +484980,170.87,68.814 +484981,174.89,71.443 +484982,173.07,70.558 +484983,171.31,69.675 +484984,169.6,68.793 +484985,173.52,71.505 +484986,171.73,70.594 +484987,170.01,69.683 +484988,168.33,68.773 +484989,172.14,71.567 +484990,170.4,70.629 +484991,168.71,69.691 +484992,167.07,68.754 +484993,170.77,71.628 +484994,169.06,70.664 +484995,167.41,69.699 +484996,165.81,68.736 +484997,169.39,71.688 +484998,167.73,70.698 +484999,166.11,69.708 +485000,164.54,68.718 +485001,168.02,71.748 +485002,166.39,70.733 +485003,164.81,69.717 +485004,163.28,68.702 +485005,166.64,71.806 +485006,165.05,70.767 +485007,163.52,69.726 +485008,162.02,68.686 +485009,165.26,71.864 +485010,163.72,70.801 +485011,162.22,69.736 +485012,160.76,68.671 +485013,163.88,71.921 +485014,162.38,70.834 +485015,160.92,69.746 +485016,159.5,68.657 +485017,162.5,71.977 +485018,161.04,70.868 +485019,159.62,69.756 +485020,158.25,68.643 +485021,161.12,72.032 +485022,159.7,70.9 +485023,158.33,69.767 +485024,156.99,68.631 +485025,159.74,72.086 +485026,158.36,70.933 +485027,157.03,69.777 +485028,155.74,68.62 +485029,158.36,72.139 +485030,157.03,70.965 +485031,155.74,69.788 +485032,154.48,68.609 +485033,156.97,72.191 +485034,155.69,70.997 +485035,154.44,69.8 +485036,153.23,68.599 +485037,155.59,72.242 +485038,154.35,71.029 +485039,153.15,69.811 +485040,151.98,68.591 +485041,154.2,72.293 +485042,153.01,71.06 +485043,151.85,69.824 +485044,150.73,68.583 +485045,152.81,72.342 +485046,151.67,71.091 +485047,150.56,69.836 +485048,149.48,68.577 +485049,151.43,72.39 +485050,150.33,71.122 +485051,149.26,69.849 +485052,148.23,68.571 +485053,150.04,72.437 +485054,148.99,71.152 +485055,147.97,69.862 +485056,146.98,68.567 +485057,148.65,72.483 +485058,147.65,71.182 +485059,146.68,69.875 +485060,145.74,68.563 +485061,147.26,72.529 +485062,146.3,71.212 +485063,145.38,69.889 +485064,144.49,68.561 +485065,145.87,72.573 +485066,144.96,71.241 +485067,144.09,69.903 +485068,143.24,68.56 +485069,144.48,72.616 +485070,143.62,71.27 +485071,142.8,69.918 +485072,142,68.559 +485073,143.09,72.657 +485074,142.28,71.299 +485075,141.5,69.932 +485076,140.76,68.56 +485077,141.7,72.698 +485078,140.94,71.327 +485079,140.21,69.948 +485080,139.51,68.562 +485081,140.31,72.738 +485082,139.6,71.354 +485083,138.92,69.963 +485084,138.27,68.565 +485085,138.91,72.777 +485086,138.25,71.382 +485087,137.63,69.979 +485088,137.03,68.57 +485089,137.52,72.814 +485090,136.91,71.409 +485091,136.33,69.995 +485092,135.78,68.575 +485093,136.13,72.85 +485094,135.57,71.436 +485095,135.04,70.012 +485096,134.54,68.582 +485097,134.73,72.885 +485098,134.23,71.462 +485099,133.75,70.029 +485100,133.3,68.59 +485101,133.34,72.919 +485102,132.88,71.488 +485103,132.46,70.047 +485104,132.06,68.598 +485105,131.95,72.952 +485106,131.54,71.513 +485107,131.17,70.065 +485108,130.82,68.609 +485109,130.55,72.984 +485110,130.2,71.538 +485111,129.87,70.083 +485112,129.58,68.62 +485113,129.16,73.015 +485114,128.85,71.563 +485115,128.58,70.102 +485116,128.34,68.633 +485117,127.76,73.044 +485118,127.51,71.587 +485119,127.29,70.121 +485120,127.1,68.646 +485121,126.37,73.072 +485122,126.17,71.611 +485123,126,70.14 +485124,125.86,68.661 +485125,124.97,73.099 +485126,124.82,71.635 +485127,124.71,70.16 +485128,124.62,68.677 +485129,123.58,73.125 +485130,123.48,71.658 +485131,123.42,70.18 +485132,123.38,68.695 +485133,122.19,73.15 +485134,122.14,71.68 +485135,122.12,70.201 +485136,122.14,68.713 +485137,120.79,73.173 +485138,120.8,71.703 +485139,120.83,70.222 +485140,120.91,68.733 +485141,119.4,73.196 +485142,119.45,71.725 +485143,119.54,70.244 +485144,119.67,68.754 +485145,118,73.217 +485146,118.11,71.746 +485147,118.25,70.265 +485148,118.43,68.776 +485149,116.61,73.237 +485150,116.77,71.767 +485151,116.96,70.288 +485152,117.19,68.8 +485153,115.22,73.256 +485154,115.42,71.788 +485155,115.67,70.31 +485156,115.95,68.825 +485157,113.82,73.273 +485158,114.08,71.808 +485159,114.37,70.333 +485160,114.71,68.85 +485161,112.43,73.29 +485162,112.74,71.828 +485163,113.08,70.357 +485164,113.47,68.878 +485165,111.04,73.305 +485166,111.39,71.848 +485167,111.79,70.381 +485168,112.23,68.906 +485169,109.64,73.319 +485170,110.05,71.867 +485171,110.5,70.405 +485172,110.99,68.935 +485173,108.25,73.332 +485174,108.71,71.886 +485175,109.21,70.43 +485176,109.75,68.966 +485177,106.86,73.344 +485178,107.37,71.904 +485179,107.91,70.455 +485180,108.51,68.998 +485181,105.47,73.355 +485182,106.02,71.922 +485183,106.62,70.48 +485184,107.27,69.031 +485185,104.08,73.364 +485186,104.68,71.94 +485187,105.33,70.506 +485188,106.02,69.066 +485189,102.69,73.373 +485190,103.34,71.957 +485191,104.04,70.532 +485192,104.78,69.101 +485193,101.3,73.38 +485194,102,71.974 +485195,102.74,70.559 +485196,103.54,69.138 +485197,99.911,73.386 +485198,100.65,71.99 +485199,101.45,70.586 +485200,102.3,69.175 +485201,98.522,73.391 +485202,99.313,72.006 +485203,100.15,70.613 +485204,101.05,69.214 +485205,97.135,73.395 +485206,97.972,72.022 +485207,98.861,70.641 +485208,99.807,69.255 +485209,95.748,73.398 +485210,96.631,72.037 +485211,97.567,70.669 +485212,98.561,69.296 +485213,94.362,73.399 +485214,95.29,72.052 +485215,96.272,70.698 +485216,97.315,69.338 +485217,92.977,73.4 +485218,93.949,72.067 +485219,94.978,70.727 +485220,96.068,69.382 +485221,91.593,73.4 +485222,92.609,72.081 +485223,93.683,70.756 +485224,94.82,69.426 +485225,90.209,73.398 +485226,91.269,72.095 +485227,92.388,70.785 +485228,93.571,69.472 +485229,88.827,73.396 +485230,89.929,72.108 +485231,91.092,70.815 +485232,92.321,69.519 +485233,87.445,73.392 +485234,88.589,72.121 +485235,89.796,70.846 +485236,91.071,69.567 +485237,86.064,73.387 +485238,87.25,72.134 +485239,88.5,70.876 +485240,89.819,69.615 +485241,84.684,73.382 +485242,85.911,72.147 +485243,87.203,70.907 +485244,88.567,69.665 +485245,83.305,73.375 +485246,84.572,72.159 +485247,85.907,70.938 +485248,87.313,69.716 +485249,81.927,73.368 +485250,83.234,72.171 +485251,84.609,70.97 +485252,86.058,69.768 +485253,80.55,73.359 +485254,81.896,72.182 +485255,83.312,71.002 +485256,84.803,69.821 +485257,79.175,73.35 +485258,80.559,72.193 +485259,82.014,71.034 +485260,83.546,69.875 +485261,77.8,73.339 +485262,79.221,72.204 +485263,80.715,71.067 +485264,82.288,69.929 +485265,76.427,73.328 +485266,77.885,72.215 +485267,79.416,71.1 +485268,81.028,69.985 +485269,75.054,73.316 +485270,76.548,72.225 +485271,78.117,71.133 +485272,79.768,70.042 +485273,73.683,73.303 +485274,75.212,72.235 +485275,76.817,71.167 +485276,78.506,70.099 +485277,72.313,73.289 +485278,73.876,72.245 +485279,75.517,71.2 +485280,77.243,70.158 +485281,70.944,73.274 +485282,72.541,72.254 +485283,74.217,71.234 +485284,75.978,70.217 +485285,69.577,73.258 +485286,71.206,72.263 +485287,72.916,71.269 +485288,74.713,70.277 +485289,68.21,73.242 +485290,69.872,72.272 +485291,71.614,71.303 +485292,73.445,70.338 +485293,66.845,73.225 +485294,68.538,72.281 +485295,70.312,71.338 +485296,72.177,70.399 +485297,65.482,73.207 +485298,67.204,72.289 +485299,69.01,71.373 +485300,70.907,70.462 +485301,64.119,73.188 +485302,65.871,72.297 +485303,67.707,71.409 +485304,69.635,70.525 +485305,62.758,73.169 +485306,64.538,72.305 +485307,66.403,71.444 +485308,68.362,70.589 +485309,61.399,73.148 +485310,63.206,72.313 +485311,65.099,71.48 +485312,67.088,70.653 +485313,60.04,73.128 +485314,61.874,72.32 +485315,63.795,71.516 +485316,65.812,70.718 +485317,58.684,73.106 +485318,60.543,72.327 +485319,62.49,71.552 +485320,64.534,70.784 +485321,57.328,73.084 +485322,59.212,72.334 +485323,61.184,71.589 +485324,63.255,70.85 +485325,55.974,73.062 +485326,57.882,72.341 +485327,59.878,71.626 +485328,61.974,70.917 +485329,54.622,73.038 +485330,56.552,72.348 +485331,58.572,71.663 +485332,60.692,70.985 +485333,53.271,73.014 +485334,55.223,72.354 +485335,57.265,71.7 +485336,59.407,71.053 +485337,51.921,72.99 +485338,53.894,72.36 +485339,55.957,71.737 +485340,58.122,71.122 +485341,50.573,72.965 +485342,52.566,72.366 +485343,54.649,71.774 +485344,56.834,71.191 +485345,49.227,72.94 +485346,51.238,72.372 +485347,53.34,71.812 +485348,55.545,71.261 +485349,47.882,72.914 +485350,49.91,72.378 +485351,52.031,71.85 +485352,54.254,71.331 +485353,46.538,72.888 +485354,48.584,72.384 +485355,50.721,71.887 +485356,52.962,71.401 +485357,45.197,72.861 +485358,47.257,72.389 +485359,49.41,71.925 +485360,51.668,71.472 +485361,43.856,72.834 +485362,45.932,72.394 +485363,48.099,71.964 +485364,50.371,71.543 +485365,42.518,72.807 +485366,44.606,72.4 +485367,46.788,72.002 +485368,49.074,71.615 +485369,41.18,72.779 +485370,43.282,72.405 +485371,45.475,72.04 +485372,47.774,71.686 +485373,39.845,72.751 +485374,41.958,72.41 +485375,44.163,72.079 +485376,46.473,71.759 +485377,38.511,72.722 +485378,40.634,72.415 +485379,42.849,72.117 +485380,45.17,71.831 +485381,37.179,72.694 +485382,39.311,72.42 +485383,41.535,72.156 +485384,43.865,71.904 +485385,35.848,72.665 +485386,37.988,72.424 +485387,40.221,72.194 +485388,42.558,71.976 +485389,34.519,72.636 +485390,36.666,72.429 +485391,38.905,72.233 +485392,41.249,72.049 +485393,33.192,72.607 +485394,35.345,72.434 +485395,37.59,72.272 +485396,39.939,72.122 +485397,31.866,72.577 +485398,34.024,72.439 +485399,36.273,72.311 +485400,38.627,72.196 +485401,30.542,72.548 +485402,32.704,72.443 +485403,34.956,72.35 +485404,37.313,72.269 +485405,29.219,72.518 +485406,31.384,72.448 +485407,33.639,72.388 +485408,35.997,72.342 +485409,27.898,72.489 +485410,30.065,72.452 +485411,32.321,72.427 +485412,34.68,72.415 +485413,26.579,72.459 +485414,28.746,72.457 +485415,31.002,72.466 +485416,33.36,72.489 +485417,25.261,72.429 +485418,27.428,72.461 +485419,29.683,72.505 +485420,32.039,72.562 +485421,23.946,72.4 +485422,26.11,72.466 +485423,28.363,72.544 +485424,30.716,72.635 +485425,22.631,72.37 +485426,24.793,72.47 +485427,27.042,72.583 +485428,29.391,72.709 +485429,21.319,72.34 +485430,23.477,72.475 +485431,25.721,72.622 +485432,28.065,72.782 +485433,20.008,72.311 +485434,22.161,72.48 +485435,24.399,72.661 +485436,26.736,72.855 +485437,18.698,72.281 +485438,20.845,72.484 +485439,23.077,72.699 +485440,25.406,72.927 +485441,17.39,72.252 +485442,19.53,72.489 +485443,21.754,72.738 +485444,24.074,73 +485445,16.084,72.223 +485446,18.216,72.494 +485447,20.43,72.777 +485448,22.74,73.072 +485449,14.78,72.194 +485450,16.902,72.499 +485451,19.106,72.815 +485452,21.405,73.144 +485453,13.477,72.166 +485454,15.589,72.504 +485455,17.782,72.854 +485456,20.068,73.216 +485457,12.176,72.138 +485458,14.276,72.509 +485459,16.456,72.892 +485460,18.729,73.288 +485461,10.876,72.109 +485462,12.964,72.514 +485463,15.131,72.93 +485464,17.388,73.359 +485465,9.5778,72.082 +485466,11.652,72.519 +485467,13.804,72.968 +485468,16.046,73.43 +485469,8.2813,72.054 +485470,10.341,72.525 +485471,12.477,73.006 +485472,14.702,73.5 +485473,6.9864,72.027 +485474,9.0306,72.53 +485475,11.15,73.044 +485476,13.356,73.57 +485477,5.693,72.001 +485478,7.7205,72.536 +485479,9.8217,73.082 +485480,12.008,73.64 +485481,4.4012,71.975 +485482,6.4109,72.542 +485483,8.493,73.12 +485484,10.659,73.709 +485485,3.1109,71.949 +485486,5.1018,72.548 +485487,7.1639,73.157 +485488,9.3088,73.778 +485489,1.8221,71.924 +485490,3.7932,72.554 +485491,5.8342,73.195 +485492,7.9565,73.846 +485493,0.53482,71.899 +485494,2.4851,72.56 +485495,4.5039,73.232 +485496,6.6026,73.914 +485497,359.25,71.875 +485498,1.1775,72.567 +485499,3.1732,73.269 +485500,5.2472,73.981 +485501,357.96,71.851 +485502,359.87,72.573 +485503,1.8419,73.305 +485504,3.8902,74.047 +485505,356.68,71.828 +485506,358.56,72.58 +485507,0.51011,73.342 +485508,2.5318,74.113 +485509,355.4,71.805 +485510,357.26,72.587 +485511,359.18,73.378 +485512,1.1718,74.178 +485513,354.12,71.784 +485514,355.95,72.595 +485515,357.85,73.414 +485516,359.81,74.243 +485517,352.84,71.762 +485518,354.65,72.602 +485519,356.51,73.45 +485520,358.45,74.307 +485521,351.56,71.742 +485522,353.34,72.61 +485523,355.18,73.486 +485524,357.08,74.37 +485525,350.29,71.722 +485526,352.04,72.618 +485527,353.84,73.522 +485528,355.72,74.433 +485529,349.01,71.703 +485530,350.73,72.626 +485531,352.51,73.557 +485532,354.35,74.495 +485533,347.74,71.685 +485534,349.43,72.635 +485535,351.17,73.592 +485536,352.98,74.556 +485537,346.47,71.667 +485538,348.13,72.643 +485539,349.84,73.627 +485540,351.61,74.616 +485541,345.2,71.65 +485542,346.82,72.652 +485543,348.5,73.661 +485544,350.24,74.676 +485545,343.93,71.634 +485546,345.52,72.662 +485547,347.17,73.695 +485548,348.87,74.734 +485549,342.66,71.619 +485550,344.22,72.671 +485551,345.83,73.729 +485552,347.5,74.792 +485553,341.39,71.605 +485554,342.92,72.681 +485555,344.49,73.763 +485556,346.12,74.849 +485557,340.13,71.591 +485558,341.62,72.691 +485559,343.15,73.796 +485560,344.74,74.905 +485561,338.86,71.579 +485562,340.32,72.702 +485563,341.82,73.829 +485564,343.37,74.96 +485565,337.6,71.567 +485566,339.02,72.712 +485567,340.48,73.862 +485568,341.99,75.015 +485569,336.34,71.556 +485570,337.72,72.724 +485571,339.14,73.894 +485572,340.61,75.068 +485573,335.08,71.546 +485574,336.42,72.735 +485575,337.8,73.927 +485576,339.23,75.121 +485577,333.82,71.538 +485578,335.12,72.747 +485579,336.46,73.958 +485580,337.85,75.172 +485581,332.56,71.53 +485582,333.82,72.759 +485583,335.12,73.99 +485584,336.47,75.223 +485585,331.3,71.523 +485586,332.52,72.771 +485587,333.78,74.021 +485588,335.08,75.272 +485589,330.04,71.517 +485590,331.22,72.784 +485591,332.44,74.052 +485592,333.7,75.321 +485593,328.79,71.512 +485594,329.92,72.797 +485595,331.1,74.082 +485596,332.32,75.368 +485597,327.53,71.509 +485598,328.62,72.81 +485599,329.76,74.113 +485600,330.93,75.415 +485601,326.28,71.506 +485602,327.33,72.824 +485603,328.41,74.142 +485604,329.54,75.46 +485605,325.02,71.504 +485606,326.03,72.838 +485607,327.07,74.172 +485608,328.16,75.505 +485609,323.77,71.504 +485610,324.73,72.853 +485611,325.73,74.201 +485612,326.77,75.548 +485613,322.52,71.504 +485614,323.44,72.867 +485615,324.39,74.23 +485616,325.38,75.59 +485617,321.27,71.506 +485618,322.14,72.883 +485619,323.05,74.258 +485620,323.99,75.632 +485621,320.02,71.509 +485622,320.84,72.898 +485623,321.7,74.286 +485624,322.6,75.672 +485625,318.77,71.513 +485626,319.55,72.914 +485627,320.36,74.314 +485628,321.21,75.711 +485629,317.52,71.518 +485630,318.25,72.931 +485631,319.02,74.341 +485632,319.82,75.749 +485633,316.27,71.524 +485634,316.95,72.947 +485635,317.67,74.368 +485636,318.43,75.785 +485637,315.02,71.532 +485638,315.66,72.964 +485639,316.33,74.395 +485640,317.04,75.821 +485641,313.77,71.54 +485642,314.36,72.982 +485643,314.99,74.421 +485644,315.64,75.856 +485645,312.52,71.55 +485646,313.07,73 +485647,313.64,74.447 +485648,314.25,75.889 +485649,311.28,71.561 +485650,311.77,73.018 +485651,312.3,74.472 +485652,312.86,75.921 +485653,310.03,71.573 +485654,310.48,73.037 +485655,310.95,74.497 +485656,311.46,75.952 +485657,308.78,71.587 +485658,309.18,73.056 +485659,309.61,74.522 +485660,310.07,75.982 +485661,307.54,71.601 +485662,307.89,73.075 +485663,308.26,74.546 +485664,308.68,76.011 +485665,306.29,71.617 +485666,306.59,73.095 +485667,306.92,74.57 +485668,307.28,76.039 +485669,305.05,71.634 +485670,305.3,73.116 +485671,305.58,74.593 +485672,305.89,76.065 +485673,303.8,71.652 +485674,304,73.136 +485675,304.23,74.616 +485676,304.49,76.09 +485677,302.56,71.672 +485678,302.71,73.158 +485679,302.89,74.639 +485680,303.1,76.115 +485681,301.31,71.692 +485682,301.41,73.179 +485683,301.54,74.661 +485684,301.7,76.137 +485685,300.07,71.714 +485686,300.12,73.201 +485687,300.2,74.683 +485688,300.31,76.159 +485689,298.82,71.738 +485690,298.82,73.223 +485691,298.85,74.705 +485692,298.91,76.18 +485693,297.58,71.762 +485694,297.53,73.246 +485695,297.51,74.726 +485696,297.52,76.199 +485697,296.33,71.787 +485698,296.23,73.269 +485699,296.16,74.746 +485700,296.13,76.218 +485701,295.09,71.814 +485702,294.94,73.293 +485703,294.82,74.767 +485704,294.73,76.235 +485705,293.84,71.842 +485706,293.64,73.317 +485707,293.47,74.787 +485708,293.34,76.251 +485709,292.6,71.871 +485710,292.35,73.341 +485711,292.13,74.806 +485712,291.94,76.265 +485713,291.35,71.902 +485714,291.05,73.366 +485715,290.78,74.825 +485716,290.55,76.279 +485717,290.11,71.934 +485718,289.76,73.391 +485719,289.44,74.844 +485720,289.16,76.291 +485721,288.86,71.966 +485722,288.46,73.417 +485723,288.09,74.862 +485724,287.76,76.303 +485725,287.62,72 +485726,287.16,73.442 +485727,286.75,74.88 +485728,286.37,76.313 +485729,286.37,72.036 +485730,285.87,73.469 +485731,285.41,74.898 +485732,284.98,76.322 +485733,285.13,72.072 +485734,284.57,73.496 +485735,284.06,74.915 +485736,283.59,76.33 +485737,283.88,72.11 +485738,283.28,73.523 +485739,282.72,74.932 +485740,282.19,76.337 +485741,282.63,72.148 +485742,281.98,73.55 +485743,281.37,74.949 +485744,280.8,76.342 +485745,281.38,72.188 +485746,280.69,73.578 +485747,280.03,74.965 +485748,279.41,76.347 +485749,280.14,72.229 +485750,279.39,73.606 +485751,278.69,74.981 +485752,278.02,76.35 +485753,278.89,72.272 +485754,278.09,73.635 +485755,277.34,74.996 +485756,276.63,76.353 +485757,277.64,72.315 +485758,276.79,73.664 +485759,276,75.011 +485760,275.25,76.354 +485761,276.39,72.359 +485762,275.5,73.694 +485763,274.66,75.026 +485764,273.86,76.354 +485765,275.14,72.405 +485766,274.2,73.723 +485767,273.31,75.04 +485768,272.47,76.353 +485769,273.88,72.452 +485770,272.9,73.753 +485771,271.97,75.054 +485772,271.08,76.351 +485773,272.63,72.499 +485774,271.6,73.784 +485775,270.63,75.068 +485776,269.7,76.349 +485777,271.38,72.548 +485778,270.31,73.815 +485779,269.29,75.081 +485780,268.31,76.345 +485781,270.13,72.598 +485782,269.01,73.846 +485783,267.94,75.094 +485784,266.93,76.34 +485785,268.87,72.649 +485786,267.71,73.878 +485787,266.6,75.106 +485788,265.54,76.334 +485789,267.62,72.701 +485790,266.41,73.909 +485791,265.26,75.119 +485792,264.16,76.327 +485793,266.36,72.754 +485794,265.11,73.942 +485795,263.92,75.131 +485796,262.78,76.319 +485797,265.1,72.807 +485798,263.81,73.974 +485799,262.58,75.142 +485800,261.4,76.31 +485801,263.84,72.862 +485802,262.51,74.007 +485803,261.24,75.154 +485804,260.02,76.301 +485805,262.58,72.918 +485806,261.21,74.04 +485807,259.9,75.165 +485808,258.64,76.29 +485809,261.32,72.975 +485810,259.91,74.074 +485811,258.56,75.176 +485812,257.26,76.278 +485813,260.06,73.032 +485814,258.61,74.107 +485815,257.22,75.186 +485816,255.89,76.266 +485817,258.8,73.091 +485818,257.31,74.142 +485819,255.88,75.196 +485820,254.51,76.253 +485821,257.53,73.15 +485822,256.01,74.176 +485823,254.54,75.206 +485824,253.14,76.238 +485825,256.27,73.211 +485826,254.7,74.211 +485827,253.2,75.216 +485828,251.76,76.224 +485829,255,73.272 +485830,253.4,74.246 +485831,251.86,75.225 +485832,250.39,76.208 +485833,253.74,73.333 +485834,252.1,74.281 +485835,250.53,75.234 +485836,249.02,76.191 +485837,252.47,73.396 +485838,250.79,74.316 +485839,249.19,75.243 +485840,247.65,76.174 +485841,251.2,73.459 +485842,249.49,74.352 +485843,247.85,75.252 +485844,246.28,76.156 +485845,249.93,73.524 +485846,248.18,74.388 +485847,246.52,75.26 +485848,244.91,76.137 +485849,248.65,73.588 +485850,246.88,74.424 +485851,245.18,75.268 +485852,243.55,76.117 +485853,247.38,73.654 +485854,245.57,74.461 +485855,243.84,75.276 +485856,242.18,76.097 +485857,246.1,73.72 +485858,244.27,74.497 +485859,242.51,75.284 +485860,240.82,76.076 +485861,244.83,73.787 +485862,242.96,74.534 +485863,241.17,75.291 +485864,239.46,76.055 +485865,243.55,73.855 +485866,241.66,74.571 +485867,239.84,75.298 +485868,238.09,76.033 +485869,242.27,73.923 +485870,240.35,74.609 +485871,238.51,75.305 +485872,236.73,76.01 +485873,240.99,73.991 +485874,239.04,74.646 +485875,237.17,75.312 +485876,235.38,75.987 +485877,239.71,74.061 +485878,237.73,74.684 +485879,235.84,75.319 +485880,234.02,75.963 +485881,238.42,74.13 +485882,236.42,74.722 +485883,234.51,75.326 +485884,232.66,75.939 +485885,237.14,74.2 +485886,235.11,74.76 +485887,233.17,75.332 +485888,231.31,75.914 +485889,235.85,74.271 +485890,233.8,74.798 +485891,231.84,75.338 +485892,229.96,75.889 +485893,234.56,74.342 +485894,232.49,74.837 +485895,230.51,75.344 +485896,228.61,75.863 +485897,233.27,74.414 +485898,231.18,74.875 +485899,229.18,75.35 +485900,227.26,75.837 +485901,231.98,74.486 +485902,229.87,74.914 +485903,227.85,75.356 +485904,225.91,75.81 +485905,230.68,74.558 +485906,228.56,74.953 +485907,226.52,75.362 +485908,224.56,75.783 +485909,229.39,74.631 +485910,227.25,74.991 +485911,225.19,75.367 +485912,223.22,75.756 +485913,228.09,74.703 +485914,225.93,75.03 +485915,223.86,75.373 +485916,221.87,75.728 +485917,226.79,74.777 +485918,224.62,75.07 +485919,222.53,75.378 +485920,220.53,75.7 +485921,225.49,74.85 +485922,223.3,75.109 +485923,221.21,75.384 +485924,219.19,75.672 +485925,224.19,74.924 +485926,221.99,75.148 +485927,219.88,75.389 +485928,217.85,75.644 +485929,222.88,74.998 +485930,220.67,75.187 +485931,218.55,75.394 +485932,216.51,75.615 +485933,221.58,75.072 +485934,219.36,75.227 +485935,217.23,75.399 +485936,215.18,75.586 +485937,220.27,75.146 +485938,218.04,75.266 +485939,215.9,75.404 +485940,213.84,75.557 +485941,218.96,75.22 +485942,216.72,75.306 +485943,214.58,75.409 +485944,212.51,75.528 +485945,217.65,75.294 +485946,215.41,75.345 +485947,213.25,75.414 +485948,211.18,75.499 +485949,216.34,75.369 +485950,214.09,75.385 +485951,211.93,75.419 +485952,209.85,75.469 +485953,215.03,75.443 +485954,212.77,75.425 +485955,210.6,75.424 +485956,208.52,75.44 +485957,213.71,75.517 +485958,211.45,75.464 +485959,209.28,75.429 +485960,207.19,75.411 +485961,212.39,75.592 +485962,210.13,75.504 +485963,207.96,75.434 +485964,205.87,75.381 +485965,211.07,75.666 +485966,208.81,75.543 +485967,206.64,75.439 +485968,204.54,75.352 +485969,209.75,75.74 +485970,207.49,75.583 +485971,205.31,75.444 +485972,203.22,75.322 +485973,208.43,75.814 +485974,206.17,75.622 +485975,203.99,75.449 +485976,201.9,75.293 +485977,207.1,75.888 +485978,204.84,75.662 +485979,202.67,75.455 +485980,200.58,75.264 +485981,205.78,75.962 +485982,203.52,75.701 +485983,201.35,75.46 +485984,199.26,75.235 +485985,204.45,76.036 +485986,202.2,75.741 +485987,200.03,75.465 +485988,197.95,75.206 +485989,203.12,76.109 +485990,200.87,75.78 +485991,198.72,75.47 +485992,196.63,75.178 +485993,201.79,76.182 +485994,199.55,75.819 +485995,197.4,75.476 +485996,195.32,75.149 +485997,200.46,76.255 +485998,198.22,75.858 +485999,196.08,75.481 +486000,194.01,75.121 +486001,199.12,76.327 +486002,196.9,75.898 +486003,194.76,75.487 +486004,192.7,75.093 +486005,197.78,76.4 +486006,195.57,75.937 +486007,193.45,75.492 +486008,191.39,75.066 +486009,196.45,76.471 +486010,194.24,75.975 +486011,192.13,75.498 +486012,190.09,75.038 +486013,195.11,76.543 +486014,192.92,76.014 +486015,190.81,75.504 +486016,188.78,75.011 +486017,193.76,76.614 +486018,191.59,76.053 +486019,189.5,75.51 +486020,187.48,74.985 +486021,192.42,76.684 +486022,190.26,76.091 +486023,188.18,75.517 +486024,186.18,74.959 +486025,191.08,76.754 +486026,188.93,76.13 +486027,186.87,75.523 +486028,184.88,74.933 +486029,189.73,76.824 +486030,187.6,76.168 +486031,185.56,75.53 +486032,183.58,74.908 +486033,188.38,76.893 +486034,186.27,76.206 +486035,184.24,75.536 +486036,182.28,74.883 +486037,187.03,76.961 +486038,184.94,76.244 +486039,182.93,75.543 +486040,180.99,74.859 +486041,185.68,77.029 +486042,183.61,76.281 +486043,181.62,75.55 +486044,179.69,74.835 +486045,184.33,77.097 +486046,182.28,76.319 +486047,180.31,75.558 +486048,178.4,74.812 +486049,182.97,77.164 +486050,180.95,76.356 +486051,178.99,75.565 +486052,177.11,74.79 +486053,181.62,77.23 +486054,179.61,76.393 +486055,177.68,75.573 +486056,175.82,74.768 +486057,180.26,77.295 +486058,178.28,76.43 +486059,176.37,75.581 +486060,174.53,74.747 +486061,178.9,77.36 +486062,176.94,76.466 +486063,175.06,75.589 +486064,173.24,74.726 +486065,177.54,77.424 +486066,175.61,76.503 +486067,173.75,75.597 +486068,171.96,74.706 +486069,176.18,77.487 +486070,174.28,76.539 +486071,172.44,75.606 +486072,170.67,74.687 +486073,174.82,77.55 +486074,172.94,76.575 +486075,171.14,75.615 +486076,169.39,74.668 +486077,173.45,77.612 +486078,171.6,76.611 +486079,169.83,75.624 +486080,168.11,74.651 +486081,172.09,77.673 +486082,170.27,76.646 +486083,168.52,75.633 +486084,166.83,74.634 +486085,170.72,77.733 +486086,168.93,76.681 +486087,167.21,75.643 +486088,165.55,74.618 +486089,169.35,77.792 +486090,167.59,76.716 +486091,165.91,75.653 +486092,164.27,74.602 +486093,167.98,77.851 +486094,166.26,76.751 +486095,164.6,75.663 +486096,163,74.588 +486097,166.61,77.908 +486098,164.92,76.785 +486099,163.29,75.674 +486100,161.72,74.574 +486101,165.24,77.965 +486102,163.58,76.819 +486103,161.99,75.685 +486104,160.45,74.561 +486105,163.86,78.021 +486106,162.24,76.853 +486107,160.68,75.696 +486108,159.17,74.55 +486109,162.49,78.076 +486110,160.9,76.886 +486111,159.38,75.707 +486112,157.9,74.539 +486113,161.11,78.13 +486114,159.56,76.919 +486115,158.07,75.719 +486116,156.63,74.529 +486117,159.73,78.183 +486118,158.22,76.952 +486119,156.77,75.731 +486120,155.36,74.52 +486121,158.36,78.235 +486122,156.88,76.985 +486123,155.46,75.744 +486124,154.09,74.512 +486125,156.98,78.286 +486126,155.54,77.017 +486127,154.16,75.756 +486128,152.83,74.505 +486129,155.6,78.336 +486130,154.2,77.049 +486131,152.86,75.769 +486132,151.56,74.499 +486133,154.21,78.385 +486134,152.86,77.08 +486135,151.55,75.783 +486136,150.29,74.494 +486137,152.83,78.433 +486138,151.52,77.111 +486139,150.25,75.797 +486140,149.03,74.49 +486141,151.45,78.48 +486142,150.17,77.142 +486143,148.95,75.811 +486144,147.77,74.487 +486145,150.07,78.526 +486146,148.83,77.173 +486147,147.65,75.826 +486148,146.5,74.485 +486149,148.68,78.571 +486150,147.49,77.203 +486151,146.34,75.84 +486152,145.24,74.484 +486153,147.29,78.615 +486154,146.14,77.233 +486155,145.04,75.856 +486156,143.98,74.485 +486157,145.91,78.658 +486158,144.8,77.262 +486159,143.74,75.871 +486160,142.72,74.486 +486161,144.52,78.699 +486162,143.46,77.291 +486163,142.44,75.887 +486164,141.46,74.489 +486165,143.13,78.74 +486166,142.11,77.32 +486167,141.14,75.904 +486168,140.2,74.493 +486169,141.74,78.779 +486170,140.77,77.348 +486171,139.84,75.921 +486172,138.94,74.498 +486173,140.35,78.818 +486174,139.42,77.376 +486175,138.54,75.938 +486176,137.69,74.504 +486177,138.96,78.855 +486178,138.08,77.404 +486179,137.24,75.955 +486180,136.43,74.511 +486181,137.57,78.891 +486182,136.74,77.431 +486183,135.94,75.973 +486184,135.18,74.519 +486185,136.18,78.926 +486186,135.39,77.458 +486187,134.64,75.992 +486188,133.92,74.529 +486189,134.79,78.959 +486190,134.04,77.484 +486191,133.34,76.011 +486192,132.66,74.54 +486193,133.4,78.992 +486194,132.7,77.51 +486195,132.04,76.03 +486196,131.41,74.552 +486197,132.01,79.023 +486198,131.35,77.536 +486199,130.74,76.049 +486200,130.16,74.565 +486201,130.61,79.053 +486202,130.01,77.561 +486203,129.44,76.069 +486204,128.9,74.579 +486205,129.22,79.082 +486206,128.66,77.586 +486207,128.14,76.09 +486208,127.65,74.595 +486209,127.83,79.11 +486210,127.32,77.61 +486211,126.84,76.111 +486212,126.4,74.612 +486213,126.43,79.137 +486214,125.97,77.634 +486215,125.54,76.132 +486216,125.15,74.63 +486217,125.04,79.162 +486218,124.62,77.658 +486219,124.24,76.153 +486220,123.89,74.649 +486221,123.64,79.187 +486222,123.28,77.681 +486223,122.94,76.175 +486224,122.64,74.67 +486225,122.25,79.21 +486226,121.93,77.704 +486227,121.64,76.198 +486228,121.39,74.692 +486229,120.85,79.232 +486230,120.58,77.727 +486231,120.34,76.221 +486232,120.14,74.715 +486233,119.46,79.253 +486234,119.24,77.749 +486235,119.05,76.244 +486236,118.89,74.739 +486237,118.06,79.272 +486238,117.89,77.771 +486239,117.75,76.268 +486240,117.64,74.765 +486241,116.67,79.29 +486242,116.54,77.792 +486243,116.45,76.292 +486244,116.39,74.792 +486245,115.27,79.308 +486246,115.2,77.813 +486247,115.15,76.316 +486248,115.14,74.82 +486249,113.88,79.324 +486250,113.85,77.833 +486251,113.85,76.341 +486252,113.88,74.849 +486253,112.48,79.339 +486254,112.5,77.854 +486255,112.55,76.367 +486256,112.63,74.879 +486257,111.09,79.352 +486258,111.15,77.873 +486259,111.25,76.392 +486260,111.38,74.911 +486261,109.7,79.365 +486262,109.81,77.893 +486263,109.95,76.419 +486264,110.13,74.944 +486265,108.3,79.376 +486266,108.46,77.912 +486267,108.65,76.445 +486268,108.88,74.978 +486269,106.91,79.386 +486270,107.11,77.93 +486271,107.36,76.472 +486272,107.63,75.013 +486273,105.51,79.395 +486274,105.77,77.948 +486275,106.06,76.5 +486276,106.38,75.05 +486277,104.12,79.403 +486278,104.42,77.966 +486279,104.76,76.527 +486280,105.13,75.088 +486281,102.73,79.41 +486282,103.07,77.984 +486283,103.46,76.555 +486284,103.87,75.127 +486285,101.33,79.416 +486286,101.73,78.001 +486287,102.16,76.584 +486288,102.62,75.167 +486289,99.94,79.42 +486290,100.38,78.018 +486291,100.86,76.613 +486292,101.37,75.208 +486293,98.548,79.424 +486294,99.035,78.034 +486295,99.558,76.642 +486296,100.12,75.251 +486297,97.156,79.426 +486298,97.689,78.05 +486299,98.258,76.672 +486300,98.862,75.295 +486301,95.765,79.427 +486302,96.343,78.065 +486303,96.957,76.702 +486304,97.608,75.339 +486305,94.374,79.428 +486306,94.997,78.081 +486307,95.657,76.733 +486308,96.353,75.385 +486309,92.984,79.427 +486310,93.652,78.096 +486311,94.356,76.764 +486312,95.098,75.432 +486313,91.594,79.425 +486314,92.306,78.11 +486315,93.055,76.795 +486316,93.842,75.481 +486317,90.205,79.422 +486318,90.961,78.124 +486319,91.754,76.826 +486320,92.586,75.53 +486321,88.817,79.418 +486322,89.616,78.138 +486323,90.453,76.858 +486324,91.329,75.58 +486325,87.429,79.413 +486326,88.271,78.152 +486327,89.151,76.891 +486328,90.072,75.632 +486329,86.042,79.407 +486330,86.926,78.165 +486331,87.849,76.923 +486332,88.813,75.684 +486333,84.656,79.4 +486334,85.582,78.178 +486335,86.547,76.956 +486336,87.554,75.738 +486337,83.271,79.392 +486338,84.238,78.19 +486339,85.245,76.99 +486340,86.295,75.792 +486341,81.886,79.383 +486342,82.894,78.203 +486343,83.942,77.023 +486344,85.034,75.848 +486345,80.503,79.373 +486346,81.55,78.214 +486347,82.639,77.057 +486348,83.773,75.904 +486349,79.12,79.363 +486350,80.206,78.226 +486351,81.336,77.092 +486352,82.51,75.962 +486353,77.738,79.351 +486354,78.863,78.237 +486355,80.032,77.126 +486356,81.247,76.02 +486357,76.357,79.338 +486358,77.52,78.248 +486359,78.728,77.161 +486360,79.983,76.079 +486361,74.977,79.325 +486362,76.178,78.259 +486363,77.424,77.197 +486364,78.718,76.14 +486365,73.597,79.311 +486366,74.835,78.27 +486367,76.119,77.232 +486368,77.452,76.201 +486369,72.219,79.296 +486370,73.493,78.28 +486371,74.814,77.268 +486372,76.185,76.263 +486373,70.842,79.28 +486374,72.152,78.29 +486375,73.509,77.304 +486376,74.916,76.326 +486377,69.466,79.263 +486378,70.81,78.299 +486379,72.203,77.341 +486380,73.647,76.389 +486381,68.091,79.246 +486382,69.469,78.309 +486383,70.897,77.377 +486384,72.377,76.454 +486385,66.717,79.228 +486386,68.129,78.318 +486387,69.59,77.414 +486388,71.105,76.519 +486389,65.345,79.209 +486390,66.788,78.327 +486391,68.283,77.451 +486392,69.833,76.585 +486393,63.973,79.189 +486394,65.448,78.335 +486395,66.976,77.489 +486396,68.559,76.652 +486397,62.602,79.169 +486398,64.109,78.344 +486399,65.668,77.527 +486400,67.284,76.719 +486401,61.233,79.148 +486402,62.77,78.352 +486403,64.36,77.565 +486404,66.007,76.788 +486405,59.865,79.126 +486406,61.431,78.36 +486407,63.051,77.603 +486408,64.73,76.856 +486409,58.498,79.104 +486410,60.092,78.368 +486411,61.742,77.641 +486412,63.451,76.926 +486413,57.133,79.081 +486414,58.754,78.375 +486415,60.432,77.68 +486416,62.17,76.996 +486417,55.768,79.058 +486418,57.417,78.383 +486419,59.122,77.718 +486420,60.889,77.067 +486421,54.405,79.034 +486422,56.08,78.39 +486423,57.812,77.757 +486424,59.606,77.138 +486425,53.044,79.009 +486426,54.743,78.397 +486427,56.501,77.797 +486428,58.322,77.21 +486429,51.683,78.984 +486430,53.407,78.404 +486431,55.189,77.836 +486432,57.036,77.282 +486433,50.324,78.959 +486434,52.071,78.411 +486435,53.877,77.875 +486436,55.749,77.355 +486437,48.966,78.933 +486438,50.735,78.418 +486439,52.565,77.915 +486440,54.46,77.428 +486441,47.61,78.907 +486442,49.4,78.424 +486443,51.252,77.955 +486444,53.17,77.501 +486445,46.255,78.88 +486446,48.066,78.43 +486447,49.938,77.995 +486448,51.878,77.575 +486449,44.902,78.853 +486450,46.732,78.437 +486451,48.624,78.035 +486452,50.585,77.65 +486453,43.549,78.826 +486454,45.398,78.443 +486455,47.31,78.075 +486456,49.291,77.724 +486457,42.199,78.798 +486458,44.065,78.449 +486459,45.995,78.115 +486460,47.995,77.799 +486461,40.849,78.77 +486462,42.732,78.455 +486463,44.679,78.156 +486464,46.697,77.875 +486465,39.502,78.741 +486466,41.4,78.461 +486467,43.363,78.196 +486468,45.398,77.95 +486469,38.155,78.713 +486470,40.068,78.467 +486471,42.047,78.237 +486472,44.097,78.026 +486473,36.81,78.684 +486474,38.737,78.472 +486475,40.729,78.277 +486476,42.795,78.102 +486477,35.467,78.655 +486478,37.406,78.478 +486479,39.412,78.318 +486480,41.491,78.178 +486481,34.125,78.626 +486482,36.076,78.484 +486483,38.093,78.359 +486484,40.185,78.255 +486485,32.784,78.597 +486486,34.746,78.489 +486487,36.775,78.4 +486488,38.878,78.331 +486489,31.445,78.568 +486490,33.416,78.495 +486491,35.455,78.441 +486492,37.569,78.408 +486493,30.108,78.538 +486494,32.088,78.5 +486495,34.135,78.481 +486496,36.259,78.484 +486497,28.772,78.509 +486498,30.759,78.506 +486499,32.815,78.522 +486500,34.947,78.561 +486501,27.437,78.479 +486502,29.431,78.511 +486503,31.494,78.563 +486504,33.633,78.637 +486505,26.104,78.45 +486506,28.104,78.517 +486507,30.172,78.604 +486508,32.318,78.714 +486509,24.773,78.42 +486510,26.777,78.523 +486511,28.85,78.645 +486512,31.001,78.791 +486513,23.443,78.391 +486514,25.451,78.528 +486515,27.527,78.686 +486516,29.682,78.867 +486517,22.115,78.362 +486518,24.125,78.534 +486519,26.204,78.727 +486520,28.362,78.943 +486521,20.788,78.333 +486522,22.799,78.539 +486523,24.88,78.768 +486524,27.04,79.019 +486525,19.462,78.303 +486526,21.475,78.545 +486527,23.556,78.808 +486528,25.716,79.095 +486529,18.139,78.275 +486530,20.15,78.551 +486531,22.231,78.849 +486532,24.391,79.171 +486533,16.816,78.246 +486534,18.826,78.557 +486535,20.906,78.89 +486536,23.064,79.247 +486537,15.495,78.218 +486538,17.503,78.563 +486539,19.579,78.93 +486540,21.735,79.322 +486541,14.176,78.189 +486542,16.18,78.569 +486543,18.253,78.971 +486544,20.405,79.397 +486545,12.858,78.162 +486546,14.858,78.575 +486547,16.926,79.011 +486548,19.073,79.472 +486549,11.542,78.134 +486550,13.536,78.581 +486551,15.598,79.051 +486552,17.739,79.546 +486553,10.227,78.107 +486554,12.214,78.588 +486555,14.27,79.091 +486556,16.404,79.62 +486557,8.9141,78.08 +486558,10.893,78.594 +486559,12.941,79.131 +486560,15.067,79.693 +486561,7.6023,78.053 +486562,9.5728,78.601 +486563,11.611,79.171 +486564,13.729,79.767 +486565,6.292,78.027 +486566,8.2528,78.608 +486567,10.281,79.211 +486568,12.389,79.839 +486569,4.9832,78.002 +486570,6.9333,78.615 +486571,8.951,79.251 +486572,11.047,79.911 +486573,3.6759,77.977 +486574,5.6143,78.622 +486575,7.62,79.29 +486576,9.7036,79.983 +486577,2.37,77.952 +486578,4.2958,78.629 +486579,6.2884,79.329 +486580,8.3587,80.0543 +486581,1.0656,77.928 +486582,2.9777,78.637 +486583,4.9563,79.369 +486584,7.0122,80.1249 +486585,359.76,77.904 +486586,1.6601,78.645 +486587,3.6236,79.407 +486588,5.6641,80.195 +486589,358.46,77.881 +486590,0.34294,78.653 +486591,2.2905,79.446 +486592,4.3144,80.2644 +486593,357.16,77.859 +486594,359.03,78.661 +486595,0.9568,79.485 +486596,2.9633,80.3331 +486597,355.86,77.837 +486598,357.71,78.669 +486599,359.62,79.523 +486600,1.6106,80.4013 +486601,354.56,77.816 +486602,356.39,78.678 +486603,358.29,79.561 +486604,0.25634,80.4687 +486605,353.27,77.795 +486606,355.08,78.686 +486607,356.95,79.599 +486608,358.9,80.5355 +486609,351.97,77.776 +486610,353.76,78.695 +486611,355.62,79.637 +486612,357.54,80.6015 +486613,350.68,77.756 +486614,352.45,78.705 +486615,354.28,79.674 +486616,356.18,80.6667 +486617,349.39,77.738 +486618,351.14,78.714 +486619,352.94,79.711 +486620,354.82,80.7312 +486621,348.1,77.721 +486622,349.82,78.724 +486623,351.61,79.748 +486624,353.46,80.7949 +486625,346.81,77.704 +486626,348.51,78.734 +486627,350.27,79.785 +486628,352.1,80.8578 +486629,345.52,77.688 +486630,347.2,78.744 +486631,348.93,79.821 +486632,350.74,80.9199 +486633,344.23,77.673 +486634,345.88,78.755 +486635,347.59,79.857 +486636,349.37,80.9811 +486637,342.95,77.659 +486638,344.57,78.766 +486639,346.25,79.893 +486640,348,81.0414 +486641,341.66,77.645 +486642,343.26,78.777 +486643,344.91,79.929 +486644,346.64,81.1008 +486645,340.38,77.633 +486646,341.95,78.789 +486647,343.57,79.964 +486648,345.27,81.1593 +486649,339.1,77.621 +486650,340.64,78.801 +486651,342.23,79.999 +486652,343.89,81.2169 +486653,337.82,77.61 +486654,339.33,78.813 +486655,340.89,80.0333 +486656,342.52,81.2735 +486657,336.54,77.601 +486658,338.02,78.825 +486659,339.55,80.0676 +486660,341.15,81.3292 +486661,335.26,77.592 +486662,336.71,78.838 +486663,338.21,80.1016 +486664,339.77,81.3838 +486665,333.98,77.584 +486666,335.4,78.851 +486667,336.87,80.1352 +486668,338.4,81.4375 +486669,332.7,77.578 +486670,334.09,78.865 +486671,335.53,80.1685 +486672,337.02,81.4902 +486673,331.43,77.572 +486674,332.78,78.879 +486675,334.18,80.2015 +486676,335.64,81.5418 +486677,330.15,77.567 +486678,331.47,78.893 +486679,332.84,80.2341 +486680,334.27,81.5924 +486681,328.88,77.564 +486682,330.16,78.907 +486683,331.5,80.2664 +486684,332.89,81.6419 +486685,327.61,77.561 +486686,328.86,78.922 +486687,330.15,80.2983 +486688,331.5,81.6903 +486689,326.34,77.56 +486690,327.55,78.938 +486691,328.81,80.3299 +486692,330.12,81.7377 +486693,325.07,77.56 +486694,326.24,78.953 +486695,327.46,80.3611 +486696,328.74,81.7839 +486697,323.8,77.56 +486698,324.93,78.969 +486699,326.12,80.392 +486700,327.36,81.8291 +486701,322.53,77.562 +486702,323.63,78.986 +486703,324.77,80.4224 +486704,325.97,81.8731 +486705,321.26,77.565 +486706,322.32,79.003 +486707,323.43,80.4525 +486708,324.59,81.916 +486709,319.99,77.57 +486710,321.01,79.02 +486711,322.08,80.4823 +486712,323.2,81.9577 +486713,318.72,77.575 +486714,319.71,79.037 +486715,320.74,80.5116 +486716,321.81,81.9983 +486717,317.46,77.582 +486718,318.4,79.055 +486719,319.39,80.5406 +486720,320.42,82.0377 +486721,316.19,77.589 +486722,317.1,79.074 +486723,318.04,80.5691 +486724,319.04,82.076 +486725,314.93,77.598 +486726,315.79,79.092 +486727,316.7,80.5973 +486728,317.65,82.1131 +486729,313.66,77.609 +486730,314.49,79.112 +486731,315.35,80.6251 +486732,316.26,82.1489 +486733,312.4,77.62 +486734,313.18,79.131 +486735,314,80.6525 +486736,314.87,82.1836 +486737,311.14,77.633 +486738,311.88,79.151 +486739,312.65,80.6795 +486740,313.47,82.2172 +486741,309.88,77.647 +486742,310.57,79.172 +486743,311.31,80.7061 +486744,312.08,82.2495 +486745,308.61,77.662 +486746,309.27,79.193 +486747,309.96,80.7323 +486748,310.69,82.2805 +486749,307.35,77.678 +486750,307.96,79.214 +486751,308.61,80.7581 +486752,309.3,82.3104 +486753,306.09,77.696 +486754,306.66,79.235 +486755,307.26,80.7835 +486756,307.9,82.3391 +486757,304.83,77.714 +486758,305.35,79.258 +486759,305.91,80.8085 +486760,306.51,82.3666 +486761,303.57,77.734 +486762,304.05,79.28 +486763,304.56,80.833 +486764,305.12,82.3928 +486765,302.31,77.756 +486766,302.75,79.303 +486767,303.21,80.8572 +486768,303.72,82.4178 +486769,301.05,77.778 +486770,301.44,79.326 +486771,301.87,80.881 +486772,302.33,82.4416 +486773,299.79,77.802 +486774,300.14,79.35 +486775,300.52,80.9043 +486776,300.93,82.4642 +486777,298.53,77.827 +486778,298.83,79.374 +486779,299.17,80.9273 +486780,299.54,82.4856 +486781,297.28,77.854 +486782,297.53,79.399 +486783,297.82,80.9499 +486784,298.14,82.5057 +486785,296.02,77.882 +486786,296.23,79.424 +486787,296.47,80.972 +486788,296.75,82.5246 +486789,294.76,77.91 +486790,294.92,79.449 +486791,295.12,80.9937 +486792,295.35,82.5423 +486793,293.5,77.941 +486794,293.62,79.475 +486795,293.77,81.0151 +486796,293.95,82.5588 +486797,292.24,77.972 +486798,292.31,79.502 +486799,292.42,81.036 +486800,292.56,82.5741 +486801,290.98,78.005 +486802,291.01,79.528 +486803,291.07,81.0565 +486804,291.16,82.5882 +486805,289.73,78.039 +486806,289.71,79.555 +486807,289.72,81.0766 +486808,289.77,82.6011 +486809,288.47,78.074 +486810,288.4,79.583 +486811,288.37,81.0964 +486812,288.37,82.6128 +486813,287.21,78.11 +486814,287.1,79.611 +486815,287.02,81.1157 +486816,286.98,82.6233 +486817,285.95,78.148 +486818,285.8,79.639 +486819,285.67,81.1346 +486820,285.58,82.6326 +486821,284.69,78.187 +486822,284.49,79.668 +486823,284.32,81.1532 +486824,284.18,82.6408 +486825,283.43,78.227 +486826,283.19,79.697 +486827,282.97,81.1713 +486828,282.79,82.6477 +486829,282.17,78.269 +486830,281.88,79.727 +486831,281.62,81.1891 +486832,281.39,82.6536 +486833,280.91,78.311 +486834,280.58,79.757 +486835,280.27,81.2064 +486836,280,82.6582 +486837,279.65,78.355 +486838,279.27,79.787 +486839,278.92,81.2234 +486840,278.6,82.6618 +486841,278.39,78.4 +486842,277.97,79.818 +486843,277.57,81.24 +486844,277.21,82.6642 +486845,277.13,78.446 +486846,276.66,79.849 +486847,276.23,81.2563 +486848,275.82,82.6655 +486849,275.87,78.493 +486850,275.36,79.881 +486851,274.88,81.2721 +486852,274.42,82.6657 +486853,274.61,78.542 +486854,274.05,79.913 +486855,273.53,81.2876 +486856,273.03,82.6648 +486857,273.35,78.591 +486858,272.75,79.945 +486859,272.18,81.3028 +486860,271.64,82.6628 +486861,272.09,78.642 +486862,271.44,79.978 +486863,270.83,81.3176 +486864,270.25,82.6598 +486865,270.83,78.694 +486866,270.14,80.0108 +486867,269.48,81.332 +486868,268.85,82.6556 +486869,269.56,78.747 +486870,268.83,80.0443 +486871,268.13,81.3461 +486872,267.46,82.6505 +486873,268.3,78.801 +486874,267.53,80.0781 +486875,266.78,81.3598 +486876,266.07,82.6443 +486877,267.04,78.856 +486878,266.22,80.1122 +486879,265.44,81.3732 +486880,264.68,82.6371 +486881,265.77,78.912 +486882,264.91,80.1467 +486883,264.09,81.3862 +486884,263.29,82.6289 +486885,264.51,78.969 +486886,263.61,80.1815 +486887,262.74,81.399 +486888,261.91,82.6198 +486889,263.24,79.027 +486890,262.3,80.2167 +486891,261.39,81.4114 +486892,260.52,82.6096 +486893,261.97,79.087 +486894,260.99,80.2522 +486895,260.05,81.4235 +486896,259.13,82.5986 +486897,260.71,79.147 +486898,259.68,80.288 +486899,258.7,81.4352 +486900,257.75,82.5866 +486901,259.44,79.208 +486902,258.38,80.3242 +486903,257.35,81.4467 +486904,256.36,82.5737 +486905,258.17,79.27 +486906,257.07,80.3606 +486907,256,81.4579 +486908,254.98,82.5599 +486909,256.9,79.333 +486910,255.76,80.3974 +486911,254.66,81.4688 +486912,253.59,82.5452 +486913,255.63,79.397 +486914,254.45,80.4344 +486915,253.31,81.4794 +486916,252.21,82.5296 +486917,254.35,79.462 +486918,253.14,80.4718 +486919,251.97,81.4897 +486920,250.83,82.5133 +486921,253.08,79.527 +486922,251.83,80.5094 +486923,250.62,81.4997 +486924,249.45,82.4961 +486925,251.81,79.594 +486926,250.52,80.5473 +486927,249.28,81.5095 +486928,248.07,82.4781 +486929,250.53,79.661 +486930,249.21,80.5855 +486931,247.93,81.519 +486932,246.69,82.4594 +486933,249.26,79.729 +486934,247.9,80.624 +486935,246.59,81.5283 +486936,245.31,82.4399 +486937,247.98,79.798 +486938,246.59,80.6627 +486939,245.24,81.5373 +486940,243.93,82.4197 +486941,246.7,79.868 +486942,245.28,80.7016 +486943,243.9,81.5461 +486944,242.56,82.3988 +486945,245.42,79.938 +486946,243.97,80.7408 +486947,242.55,81.5546 +486948,241.18,82.3771 +486949,244.14,80.0088 +486950,242.66,80.7803 +486951,241.21,81.563 +486952,239.81,82.3549 +486953,242.86,80.0805 +486954,241.34,80.8199 +486955,239.87,81.5711 +486956,238.43,82.332 +486957,241.58,80.1528 +486958,240.03,80.8598 +486959,238.53,81.579 +486960,237.06,82.3084 +486961,240.29,80.2257 +486962,238.72,80.8998 +486963,237.18,81.5867 +486964,235.69,82.2843 +486965,239.01,80.2993 +486966,237.4,80.9401 +486967,235.84,81.5943 +486968,234.32,82.2597 +486969,237.72,80.3733 +486970,236.09,80.9805 +486971,234.5,81.6016 +486972,232.95,82.2345 +486973,236.44,80.448 +486974,234.77,81.0212 +486975,233.16,81.6088 +486976,231.59,82.2087 +486977,235.15,80.5231 +486978,233.46,81.062 +486979,231.82,81.6159 +486980,230.22,82.1825 +486981,233.86,80.5987 +486982,232.14,81.1029 +486983,230.48,81.6227 +486984,228.86,82.1558 +486985,232.56,80.6748 +486986,230.83,81.144 +486987,229.14,81.6295 +486988,227.49,82.1287 +486989,231.27,80.7512 +486990,229.51,81.1853 +486991,227.8,81.6361 +486992,226.13,82.1012 +486993,229.98,80.8281 +486994,228.19,81.2267 +486995,226.46,81.6425 +486996,224.77,82.0733 +486997,228.68,80.9054 +486998,226.88,81.2682 +486999,225.12,81.6489 +487000,223.41,82.045 +487001,227.38,80.983 +487002,225.56,81.3098 +487003,223.78,81.6551 +487004,222.06,82.0164 +487005,226.09,81.0609 +487006,224.24,81.3516 +487007,222.44,81.6613 +487008,220.7,81.9875 +487009,224.79,81.1391 +487010,222.92,81.3934 +487011,221.11,81.6673 +487012,219.34,81.9583 +487013,223.49,81.2175 +487014,221.6,81.4353 +487015,219.77,81.6733 +487016,217.99,81.9288 +487017,222.18,81.2961 +487018,220.28,81.4773 +487019,218.43,81.6792 +487020,216.64,81.8991 +487021,220.88,81.375 +487022,218.96,81.5194 +487023,217.1,81.685 +487024,215.29,81.8693 +487025,219.57,81.454 +487026,217.64,81.5615 +487027,215.76,81.6908 +487028,213.94,81.8392 +487029,218.27,81.5332 +487030,216.32,81.6037 +487031,214.43,81.6965 +487032,212.59,81.809 +487033,216.96,81.6124 +487034,214.99,81.6459 +487035,213.09,81.7022 +487036,211.24,81.7787 +487037,215.65,81.6917 +487038,213.67,81.6881 +487039,211.76,81.7079 +487040,209.9,81.7484 +487041,214.33,81.7711 +487042,212.35,81.7304 +487043,210.42,81.7136 +487044,208.55,81.7179 +487045,213.02,81.8505 +487046,211.03,81.7727 +487047,209.09,81.7192 +487048,207.21,81.6874 +487049,211.71,81.9298 +487050,209.7,81.8149 +487051,207.76,81.7249 +487052,205.87,81.657 +487053,210.39,82.0091 +487054,208.38,81.8572 +487055,206.42,81.7306 +487056,204.53,81.6265 +487057,209.07,82.0884 +487058,207.05,81.8994 +487059,205.09,81.7363 +487060,203.19,81.5961 +487061,207.75,82.1675 +487062,205.73,81.9416 +487063,203.76,81.742 +487064,201.85,81.5658 +487065,206.43,82.2465 +487066,204.4,81.9838 +487067,202.43,81.7478 +487068,200.52,81.5356 +487069,205.11,82.3253 +487070,203.07,82.0259 +487071,201.1,81.7536 +487072,199.18,81.5055 +487073,203.78,82.4039 +487074,201.74,82.0679 +487075,199.77,81.7595 +487076,197.85,81.4756 +487077,202.46,82.4823 +487078,200.42,82.1099 +487079,198.44,81.7655 +487080,196.52,81.4459 +487081,201.13,82.5604 +487082,199.09,82.1518 +487083,197.11,81.7715 +487084,195.19,81.4165 +487085,199.8,82.6383 +487086,197.76,82.1936 +487087,195.78,81.7776 +487088,193.86,81.3872 +487089,198.47,82.7158 +487090,196.43,82.2353 +487091,194.45,81.7839 +487092,192.54,81.3583 +487093,197.14,82.793 +487094,195.1,82.277 +487095,193.13,81.7902 +487096,191.21,81.3296 +487097,195.81,82.8698 +487098,193.77,82.3184 +487099,191.8,81.7967 +487100,189.89,81.3013 +487101,194.47,82.9463 +487102,192.44,82.3598 +487103,190.47,81.8032 +487104,188.57,81.2734 +487105,193.13,83.0222 +487106,191.11,82.401 +487107,189.15,81.8099 +487108,187.25,81.2458 +487109,191.8,83.0978 +487110,189.77,82.4421 +487111,187.82,81.8168 +487112,185.93,81.2187 +487113,190.46,83.1728 +487114,188.44,82.483 +487115,186.49,81.8238 +487116,184.61,81.192 +487117,189.11,83.2473 +487118,187.11,82.5238 +487119,185.17,81.831 +487120,183.29,81.1658 +487121,187.77,83.3213 +487122,185.77,82.5644 +487123,183.84,81.8383 +487124,181.98,81.14 +487125,186.43,83.3947 +487126,184.44,82.6048 +487127,182.52,81.8459 +487128,180.66,81.1148 +487129,185.08,83.4676 +487130,183.1,82.645 +487131,181.2,81.8536 +487132,179.35,81.0902 +487133,183.73,83.5398 +487134,181.77,82.685 +487135,179.87,81.8615 +487136,178.04,81.0661 +487137,182.38,83.6113 +487138,180.43,82.7248 +487139,178.55,81.8696 +487140,176.73,81.0426 +487141,181.03,83.6822 +487142,179.1,82.7644 +487143,177.23,81.878 +487144,175.42,81.0197 +487145,179.68,83.7524 +487146,177.76,82.8037 +487147,175.91,81.8865 +487148,174.11,80.9975 +487149,178.33,83.8218 +487150,176.42,82.8429 +487151,174.58,81.8953 +487152,172.81,80.976 +487153,176.97,83.8905 +487154,175.08,82.8817 +487155,173.26,81.9044 +487156,171.5,80.9551 +487157,175.61,83.9585 +487158,173.74,82.9204 +487159,171.94,81.9136 +487160,170.2,80.935 +487161,174.26,84.0256 +487162,172.4,82.9588 +487163,170.62,81.9232 +487164,168.9,80.9157 +487165,172.9,84.0919 +487166,171.07,82.9969 +487167,169.3,81.933 +487168,167.6,80.8971 +487169,171.54,84.1574 +487170,169.73,83.0347 +487171,167.98,81.943 +487172,166.3,80.8793 +487173,170.17,84.222 +487174,168.38,83.0723 +487175,166.66,81.9534 +487176,165,80.8623 +487177,168.81,84.2858 +487178,167.04,83.1095 +487179,165.35,81.964 +487180,163.7,80.8462 +487181,167.45,84.3486 +487182,165.7,83.1465 +487183,164.03,81.9749 +487184,162.41,80.8309 +487185,166.08,84.4105 +487186,164.36,83.1832 +487187,162.71,81.9862 +487188,161.11,80.8165 +487189,164.71,84.4714 +487190,163.02,83.2195 +487191,161.39,81.9977 +487192,159.82,80.803 +487193,163.34,84.5314 +487194,161.68,83.2556 +487195,160.07,82.0096 +487196,158.53,80.7905 +487197,161.97,84.5904 +487198,160.33,83.2913 +487199,158.76,82.0217 +487200,157.24,80.7788 +487201,160.6,84.6484 +487202,158.99,83.3267 +487203,157.44,82.0342 +487204,155.95,80.7682 +487205,159.23,84.7053 +487206,157.64,83.3617 +487207,156.13,82.047 +487208,154.66,80.7585 +487209,157.86,84.7612 +487210,156.3,83.3964 +487211,154.81,82.0602 +487212,153.37,80.7499 +487213,156.48,84.8161 +487214,154.96,83.4308 +487215,153.49,82.0737 +487216,152.09,80.7422 +487217,155.1,84.8699 +487218,153.61,83.4648 +487219,152.18,82.0876 +487220,150.8,80.7356 +487221,153.73,84.9226 +487222,152.26,83.4984 +487223,150.86,82.1018 +487224,149.52,80.7301 +487225,152.35,84.9741 +487226,150.92,83.5317 +487227,149.55,82.1164 +487228,148.23,80.7256 +487229,150.97,85.0246 +487230,149.57,83.5646 +487231,148.24,82.1313 +487232,146.95,80.7222 +487233,149.59,85.0739 +487234,148.23,83.5972 +487235,146.92,82.1466 +487236,145.67,80.7199 +487237,148.21,85.1221 +487238,146.88,83.6293 +487239,145.61,82.1623 +487240,144.39,80.7188 +487241,146.82,85.1691 +487242,145.53,83.6611 +487243,144.29,82.1784 +487244,143.11,80.7187 +487245,145.44,85.215 +487246,144.18,83.6925 +487247,142.98,82.1948 +487248,141.83,80.7199 +487249,144.06,85.2596 +487250,142.83,83.7235 +487251,141.67,82.2117 +487252,140.55,80.7222 +487253,142.67,85.3031 +487254,141.49,83.7541 +487255,140.36,82.2289 +487256,139.27,80.7256 +487257,141.29,85.3454 +487258,140.14,83.7843 +487259,139.04,82.2466 +487260,138,80.7303 +487261,139.9,85.3864 +487262,138.79,83.8141 +487263,137.73,82.2646 +487264,136.72,80.7361 +487265,138.51,85.4262 +487266,137.44,83.8435 +487267,136.42,82.283 +487268,135.45,80.7432 +487269,137.12,85.4648 +487270,136.09,83.8725 +487271,135.11,82.3019 +487272,134.17,80.7514 +487273,135.73,85.5021 +487274,134.74,83.9011 +487275,133.8,82.3211 +487276,132.9,80.7609 +487277,134.34,85.5382 +487278,133.39,83.9292 +487279,132.49,82.3408 +487280,131.63,80.7717 +487281,132.95,85.5731 +487282,132.04,83.957 +487283,131.17,82.3609 +487284,130.35,80.7837 +487285,131.56,85.6066 +487286,130.69,83.9843 +487287,129.86,82.3814 +487288,129.08,80.7969 +487289,130.17,85.639 +487290,129.34,84.0112 +487291,128.55,82.4023 +487292,127.81,80.8114 +487293,128.78,85.67 +487294,127.99,84.0377 +487295,127.24,82.4237 +487296,126.54,80.8272 +487297,127.38,85.6998 +487298,126.63,84.0637 +487299,125.93,82.4455 +487300,125.27,80.8442 +487301,125.99,85.7283 +487302,125.28,84.0893 +487303,124.62,82.4677 +487304,124,80.8625 +487305,124.6,85.7555 +487306,123.93,84.1145 +487307,123.31,82.4903 +487308,122.73,80.8822 +487309,123.2,85.7814 +487310,122.58,84.1393 +487311,122,82.5133 +487312,121.46,80.9031 +487313,121.81,85.8061 +487314,121.23,84.1636 +487315,120.69,82.5368 +487316,120.19,80.9252 +487317,120.41,85.8295 +487318,119.87,84.1875 +487319,119.38,82.5607 +487320,118.92,80.9487 +487321,119.02,85.8516 +487322,118.52,84.211 +487323,118.07,82.5851 +487324,117.66,80.9735 +487325,117.62,85.8724 +487326,117.17,84.2341 +487327,116.76,82.6098 +487328,116.39,80.9996 +487329,116.22,85.8919 +487330,115.82,84.2567 +487331,115.45,82.635 +487332,115.12,81.0269 +487333,114.83,85.9102 +487334,114.46,84.2789 +487335,114.14,82.6607 +487336,113.85,81.0556 +487337,113.43,85.9272 +487338,113.11,84.3006 +487339,112.83,82.6867 +487340,112.59,81.0855 +487341,112.03,85.9429 +487342,111.76,84.322 +487343,111.52,82.7132 +487344,111.32,81.1168 +487345,110.64,85.9573 +487346,110.41,84.3429 +487347,110.21,82.7401 +487348,110.05,81.1493 +487349,109.24,85.9705 +487350,109.05,84.3634 +487351,108.9,82.7674 +487352,108.78,81.1831 +487353,107.84,85.9825 +487354,107.7,84.3834 +487355,107.59,82.7952 +487356,107.52,81.2182 +487357,106.44,85.9931 +487358,106.35,84.4031 +487359,106.28,82.8234 +487360,106.25,81.2546 +487361,105.05,86.0026 +487362,104.99,84.4223 +487363,104.97,82.852 +487364,104.98,81.2923 +487365,103.65,86.0108 +487366,103.64,84.4411 +487367,103.66,82.881 +487368,103.72,81.3312 +487369,102.25,86.0178 +487370,102.29,84.4595 +487371,102.35,82.9104 +487372,102.45,81.3714 +487373,100.86,86.0235 +487374,100.93,84.4774 +487375,101.04,82.9403 +487376,101.18,81.4128 +487377,99.458,86.0281 +487378,99.58,84.495 +487379,99.733,82.9705 +487380,99.916,81.4555 +487381,98.062,86.0314 +487382,98.227,84.5122 +487383,98.423,83.0012 +487384,98.649,81.4994 +487385,96.665,86.0336 +487386,96.874,84.5289 +487387,97.113,83.0322 +487388,97.381,81.5446 +487389,95.269,86.0346 +487390,95.521,84.5453 +487391,95.802,83.0637 +487392,96.113,81.591 +487393,93.873,86.0344 +487394,94.168,84.5612 +487395,94.492,83.0956 +487396,94.845,81.6385 +487397,92.477,86.0331 +487398,92.815,84.5768 +487399,93.181,83.1278 +487400,93.576,81.6873 +487401,91.081,86.0306 +487402,91.462,84.592 +487403,91.87,83.1604 +487404,92.307,81.7373 +487405,89.686,86.027 +487406,90.109,84.6068 +487407,90.559,83.1935 +487408,91.038,81.7884 +487409,88.292,86.0223 +487410,88.756,84.6212 +487411,89.248,83.2269 +487412,89.768,81.8407 +487413,86.898,86.0165 +487414,87.404,84.6352 +487415,87.937,83.2606 +487416,88.498,81.8941 +487417,85.504,86.0096 +487418,86.051,84.6489 +487419,86.626,83.2948 +487420,87.227,81.9486 +487421,84.11,86.0016 +487422,84.699,84.6622 +487423,85.314,83.3293 +487424,85.956,82.0043 +487425,82.718,85.9926 +487426,83.346,84.6752 +487427,84.002,83.3642 +487428,84.685,82.0611 +487429,81.326,85.9825 +487430,81.994,84.6878 +487431,82.69,83.3994 +487432,83.412,82.1189 +487433,79.934,85.9715 +487434,80.642,84.7 +487435,81.378,83.4349 +487436,82.14,82.1778 +487437,78.543,85.9594 +487438,79.291,84.7119 +487439,80.065,83.4708 +487440,80.866,82.2378 +487441,77.153,85.9463 +487442,77.939,84.7235 +487443,78.752,83.5071 +487444,79.592,82.2988 +487445,75.763,85.9323 +487446,76.588,84.7347 +487447,77.439,83.5437 +487448,78.317,82.3608 +487449,74.374,85.9173 +487450,75.237,84.7456 +487451,76.126,83.5806 +487452,77.042,82.4238 +487453,72.986,85.9014 +487454,73.886,84.7562 +487455,74.812,83.6178 +487456,75.766,82.4877 +487457,71.598,85.8846 +487458,72.535,84.7665 +487459,73.498,83.6553 +487460,74.489,82.5526 +487461,70.211,85.867 +487462,71.184,84.7765 +487463,72.184,83.6931 +487464,73.211,82.6185 +487465,68.826,85.8484 +487466,69.834,84.7862 +487467,70.87,83.7312 +487468,71.932,82.6852 +487469,67.441,85.829 +487470,68.484,84.7956 +487471,69.555,83.7696 +487472,70.653,82.7529 +487473,66.056,85.8088 +487474,67.134,84.8047 +487475,68.24,83.8083 +487476,69.373,82.8214 +487477,64.673,85.7878 +487478,65.785,84.8136 +487479,66.924,83.8473 +487480,68.091,82.8907 +487481,63.291,85.766 +487482,64.436,84.8221 +487483,65.608,83.8865 +487484,66.809,82.9608 +487485,61.909,85.7435 +487486,63.087,84.8305 +487487,64.292,83.926 +487488,65.526,83.0318 +487489,60.529,85.7202 +487490,61.738,84.8385 +487491,62.976,83.9657 +487492,64.242,83.1035 +487493,59.149,85.6962 +487494,60.389,84.8464 +487495,61.659,84.0056 +487496,62.957,83.1759 +487497,57.771,85.6716 +487498,59.041,84.8539 +487499,60.341,84.0458 +487500,61.671,83.2491 +487501,56.393,85.6463 +487502,57.694,84.8613 +487503,59.024,84.0862 +487504,60.384,83.323 +487505,55.017,85.6203 +487506,56.346,84.8684 +487507,57.706,84.1269 +487508,59.096,83.3975 +487509,53.641,85.5938 +487510,54.999,84.8754 +487511,56.387,84.1677 +487512,57.806,83.4726 +487513,52.267,85.5666 +487514,53.652,84.8821 +487515,55.068,84.2087 +487516,56.516,83.5484 +487517,50.894,85.5389 +487518,52.306,84.8886 +487519,53.749,84.2499 +487520,55.224,83.6248 +487521,49.522,85.5107 +487522,50.96,84.895 +487523,52.43,84.2913 +487524,53.932,83.7017 +487525,48.151,85.482 +487526,49.614,84.9012 +487527,51.109,84.3329 +487528,52.638,83.7791 +487529,46.781,85.4528 +487530,48.269,84.9072 +487531,49.789,84.3746 +487532,51.343,83.8571 +487533,45.413,85.4231 +487534,46.924,84.913 +487535,48.468,84.4165 +487536,50.046,83.9355 +487537,44.045,85.393 +487538,45.579,84.9188 +487539,47.146,84.4585 +487540,48.749,84.0143 +487541,42.679,85.3626 +487542,44.235,84.9243 +487543,45.825,84.5007 +487544,47.45,84.0936 +487545,41.314,85.3317 +487546,42.891,84.9298 +487547,44.502,84.5429 +487548,46.15,84.1732 +487549,39.95,85.3005 +487550,41.547,84.9351 +487551,43.179,84.5853 +487552,44.848,84.2532 +487553,38.588,85.269 +487554,40.204,84.9403 +487555,41.856,84.6278 +487556,43.546,84.3336 +487557,37.227,85.2372 +487558,38.861,84.9454 +487559,40.533,84.6703 +487560,42.242,84.4142 +487561,35.867,85.2052 +487562,37.519,84.9504 +487563,39.208,84.713 +487564,40.936,84.4951 +487565,34.508,85.1729 +487566,36.177,84.9554 +487567,37.884,84.7557 +487568,39.63,84.5762 +487569,33.151,85.1404 +487570,34.836,84.9602 +487571,36.558,84.7985 +487572,38.322,84.6575 +487573,31.795,85.1078 +487574,33.494,84.965 +487575,35.233,84.8413 +487576,37.012,84.739 +487577,30.44,85.075 +487578,32.154,84.9698 +487579,33.907,84.8842 +487580,35.701,84.8206 +487581,29.087,85.0421 +487582,30.813,84.9745 +487583,32.58,84.9271 +487584,34.389,84.9024 +487585,27.735,85.0091 +487586,29.474,84.9791 +487587,31.253,84.97 +487588,33.075,84.9842 +487589,26.384,84.976 +487590,28.134,84.9838 +487591,29.925,85.013 +487592,31.76,85.066 +487593,25.035,84.9429 +487594,26.795,84.9884 +487595,28.597,85.0559 +487596,30.444,85.1479 +487597,23.687,84.9098 +487598,25.457,84.9931 +487599,27.269,85.0989 +487600,29.126,85.2297 +487601,22.34,84.8768 +487602,24.118,84.9977 +487603,25.939,85.1418 +487604,27.807,85.3116 +487605,20.995,84.8438 +487606,22.781,85.0023 +487607,24.61,85.1846 +487608,26.486,85.3933 +487609,19.651,84.8108 +487610,21.443,85.007 +487611,23.28,85.2275 +487612,25.163,85.4749 +487613,18.309,84.778 +487614,20.106,85.0117 +487615,21.949,85.2703 +487616,23.84,85.5564 +487617,16.968,84.7454 +487618,18.77,85.0165 +487619,20.618,85.313 +487620,22.514,85.6377 +487621,15.628,84.7129 +487622,17.434,85.0213 +487623,19.286,85.3556 +487624,21.188,85.7188 +487625,14.29,84.6806 +487626,16.099,85.0262 +487627,17.954,85.3982 +487628,19.859,85.7996 +487629,12.953,84.6486 +487630,14.763,85.0311 +487631,16.621,85.4407 +487632,18.53,85.8802 +487633,11.617,84.6168 +487634,13.429,85.0362 +487635,15.288,85.4831 +487636,17.199,85.9605 +487637,10.283,84.5853 +487638,12.094,85.0413 +487639,13.954,85.5254 +487640,15.866,86.0405 +487641,8.9499,84.5541 +487642,10.761,85.0465 +487643,12.619,85.5675 +487644,14.532,86.1201 +487645,7.6184,84.5232 +487646,9.4273,85.0519 +487647,11.285,85.6095 +487648,13.196,86.1993 +487649,6.2883,84.4928 +487650,8.0943,85.0574 +487651,9.9493,85.6514 +487652,11.859,86.2781 +487653,4.9595,84.4627 +487654,6.7618,85.063 +487655,8.6134,85.6931 +487656,10.52,86.3565 +487657,3.6321,84.433 +487658,5.4297,85.0687 +487659,7.277,85.7347 +487660,9.1803,86.4344 +487661,2.3061,84.4039 +487662,4.0981,85.0746 +487663,5.9401,85.7761 +487664,7.8387,86.5117 +487665,0.98143,84.3751 +487666,2.7669,85.0807 +487667,4.6027,85.8173 +487668,6.4956,86.5885 +487669,359.66,84.3469 +487670,1.4361,85.0869 +487671,3.2648,85.8583 +487672,5.1511,86.6648 +487673,358.34,84.3193 +487674,0.10571,85.0933 +487675,1.9263,85.8991 +487676,3.8051,86.7405 +487677,357.02,84.2922 +487678,358.78,85.0999 +487679,0.58737,85.9397 +487680,2.4576,86.8155 +487681,355.7,84.2657 +487682,357.45,85.1067 +487683,359.25,85.9801 +487684,1.1087,86.8899 +487685,354.38,84.2398 +487686,356.12,85.1136 +487687,357.91,86.0203 +487688,359.76,86.9636 +487689,353.06,84.2145 +487690,354.79,85.1208 +487691,356.57,86.0602 +487692,358.41,87.0366 +487693,351.75,84.19 +487694,353.46,85.1283 +487695,355.23,86.0999 +487696,357.05,87.1088 +487697,350.43,84.1661 +487698,352.13,85.1359 +487699,353.89,86.1393 +487700,355.7,87.1803 +487701,349.12,84.1429 +487702,350.8,85.1438 +487703,352.54,86.1785 +487704,354.34,87.251 +487705,347.81,84.1205 +487706,349.48,85.1519 +487707,351.2,86.2174 +487708,352.99,87.3209 +487709,346.5,84.0988 +487710,348.15,85.1603 +487711,349.86,86.256 +487712,351.63,87.39 +487713,345.19,84.0779 +487714,346.82,85.169 +487715,348.51,86.2944 +487716,350.27,87.4582 +487717,343.88,84.0579 +487718,345.5,85.1779 +487719,347.17,86.3324 +487720,348.9,87.5255 +487721,342.57,84.0387 +487722,344.17,85.1871 +487723,345.83,86.3701 +487724,347.54,87.5919 +487725,341.27,84.0203 +487726,342.85,85.1966 +487727,344.48,86.4076 +487728,346.18,87.6574 +487729,339.96,84.0028 +487730,341.52,85.2064 +487731,343.14,86.4447 +487732,344.81,87.7219 +487733,338.66,83.9863 +487734,340.2,85.2165 +487735,341.79,86.4815 +487736,343.44,87.7854 +487737,337.36,83.9706 +487738,338.87,85.2269 +487739,340.44,86.5179 +487740,342.08,87.8479 +487741,336.06,83.9559 +487742,337.55,85.2376 +487743,339.1,86.554 +487744,340.71,87.9094 +487745,334.76,83.9422 +487746,336.23,85.2486 +487747,337.75,86.5898 +487748,339.34,87.9699 +487749,333.46,83.9294 +487750,334.9,85.26 +487751,336.4,86.6252 +487752,337.96,88.0292 +487753,332.16,83.9177 +487754,333.58,85.2717 +487755,335.06,86.6602 +487756,336.59,88.0876 +487757,330.86,83.907 +487758,332.26,85.2837 +487759,333.71,86.6949 +487760,335.22,88.1448 +487761,329.57,83.8973 +487762,330.94,85.2961 +487763,332.36,86.7292 +487764,333.84,88.2008 +487765,328.27,83.8887 +487766,329.62,85.3088 +487767,331.01,86.7631 +487768,332.47,88.2558 +487769,326.98,83.8812 +487770,328.29,85.3219 +487771,329.66,86.7966 +487772,331.09,88.3096 +487773,325.69,83.8748 +487774,326.97,85.3354 +487775,328.31,86.8298 +487776,329.71,88.3622 +487777,324.39,83.8695 +487778,325.65,85.3492 +487779,326.96,86.8625 +487780,328.33,88.4136 +487781,323.1,83.8653 +487782,324.33,85.3634 +487783,325.61,86.8949 +487784,326.95,88.4638 +487785,321.81,83.8623 +487786,323.01,85.3779 +487787,324.26,86.9268 +487788,325.57,88.5128 +487789,320.52,83.8604 +487790,321.69,85.3929 +487791,322.91,86.9583 +487792,324.18,88.5606 +487793,319.23,83.8597 +487794,320.37,85.4083 +487795,321.56,86.9895 +487796,322.8,88.6071 +487797,317.95,83.8602 +487798,319.05,85.424 +487799,320.2,87.0201 +487800,321.41,88.6524 +487801,316.66,83.8619 +487802,317.73,85.4401 +487803,318.85,87.0504 +487804,320.03,88.6964 +487805,315.37,83.8648 +487806,316.41,85.4567 +487807,317.5,87.0802 +487808,318.64,88.7391 +487809,314.09,83.8689 +487810,315.09,85.4736 +487811,316.15,87.1097 +487812,317.25,88.7805 +487813,312.8,83.8743 +487814,313.78,85.491 +487815,314.79,87.1386 +487816,315.87,88.8207 +487817,311.52,83.8809 +487818,312.46,85.5087 +487819,313.44,87.1671 +487820,314.48,88.8595 +487821,310.24,83.8888 +487822,311.14,85.5269 +487823,312.09,87.1952 +487824,313.09,88.897 +487825,308.95,83.898 +487826,309.82,85.5455 +487827,310.73,87.2229 +487828,311.7,88.9331 +487829,307.67,83.9084 +487830,308.5,85.5645 +487831,309.38,87.2501 +487832,310.31,88.968 +487833,306.39,83.9201 +487834,307.18,85.584 +487835,308.02,87.2768 +487836,308.91,89.00147 +487837,305.11,83.9331 +487838,305.87,85.6039 +487839,306.67,87.3031 +487840,307.52,89.03362 +487841,303.83,83.9474 +487842,304.55,85.6241 +487843,305.31,87.3289 +487844,306.13,89.06442 +487845,302.55,83.963 +487846,303.23,85.6449 +487847,303.96,87.3543 +487848,304.73,89.09386 +487849,301.27,83.9799 +487850,301.91,85.666 +487851,302.6,87.3792 +487852,303.34,89.12195 +487853,299.99,83.9982 +487854,300.6,85.6876 +487855,301.25,87.4037 +487856,301.94,89.14868 +487857,298.71,84.0177 +487858,299.28,85.7096 +487859,299.89,87.4277 +487860,300.55,89.17404 +487861,297.43,84.0386 +487862,297.96,85.7321 +487863,298.54,87.4512 +487864,299.15,89.19804 +487865,296.15,84.0608 +487866,296.65,85.755 +487867,297.18,87.4743 +487868,297.76,89.22068 +487869,294.88,84.0843 +487870,295.33,85.7783 +487871,295.82,87.4969 +487872,296.36,89.24195 +487873,293.6,84.1092 +487874,294.01,85.802 +487875,294.47,87.519 +487876,294.96,89.26186 +487877,292.32,84.1353 +487878,292.7,85.8262 +487879,293.11,87.5407 +487880,293.56,89.28041 +487881,291.04,84.1629 +487882,291.38,85.8509 +487883,291.75,87.562 +487884,292.17,89.29759 +487885,289.77,84.1917 +487886,290.06,85.8759 +487887,290.4,87.5827 +487888,290.77,89.31343 +487889,288.49,84.2219 +487890,288.75,85.9014 +487891,289.04,87.603 +487892,289.37,89.3279 +487893,287.21,84.2534 +487894,287.43,85.9273 +487895,287.68,87.6229 +487896,287.97,89.34103 +487897,285.94,84.2862 +487898,286.11,85.9537 +487899,286.32,87.6423 +487900,286.57,89.35282 +487901,284.66,84.3203 +487902,284.8,85.9805 +487903,284.97,87.6612 +487904,285.17,89.36327 +487905,283.39,84.3558 +487906,283.48,86.0077 +487907,283.61,87.6797 +487908,283.78,89.37239 +487909,282.11,84.3925 +487910,282.16,86.0353 +487911,282.25,87.6977 +487912,282.38,89.38019 +487913,280.83,84.4306 +487914,280.85,86.0634 +487915,280.9,87.7153 +487916,280.98,89.38667 +487917,279.56,84.4699 +487918,279.53,86.0919 +487919,279.54,87.7324 +487920,279.58,89.39184 +487921,278.28,84.5106 +487922,278.21,86.1208 +487923,278.18,87.7491 +487924,278.18,89.39571 +487925,277,84.5525 +487926,276.9,86.1501 +487927,276.82,87.7653 +487928,276.78,89.3983 +487929,275.73,84.5957 +487930,275.58,86.1798 +487931,275.47,87.7811 +487932,275.38,89.39961 +487933,274.45,84.6402 +487934,274.26,86.2099 +487935,274.11,87.7965 +487936,273.98,89.39965 +487937,273.17,84.6859 +487938,272.95,86.2405 +487939,272.75,87.8114 +487940,272.58,89.39843 +487941,271.89,84.7329 +487942,271.63,86.2714 +487943,271.39,87.8259 +487944,271.19,89.39597 +487945,270.62,84.7811 +487946,270.31,86.3028 +487947,270.04,87.84 +487948,269.79,89.39229 +487949,269.34,84.8305 +487950,269,86.3345 +487951,268.68,87.8536 +487952,268.39,89.38738 +487953,268.06,84.8812 +487954,267.68,86.3666 +487955,267.32,87.8669 +487956,266.99,89.38128 +487957,266.78,84.933 +487958,266.36,86.3991 +487959,265.96,87.8797 +487960,265.59,89.37398 +487961,265.5,84.986 +487962,265.04,86.432 +487963,264.61,87.8921 +487964,264.2,89.36552 +487965,264.22,85.0402 +487966,263.72,86.4653 +487967,263.25,87.9041 +487968,262.8,89.3559 +487969,262.94,85.0955 +487970,262.41,86.4989 +487971,261.89,87.9158 +487972,261.41,89.34514 +487973,261.66,85.152 +487974,261.09,86.5329 +487975,260.54,87.927 +487976,260.01,89.33325 +487977,260.38,85.2096 +487978,259.77,86.5673 +487979,259.18,87.9379 +487980,258.61,89.32026 +487981,259.1,85.2683 +487982,258.45,86.602 +487983,257.82,87.9483 +487984,257.22,89.30619 +487985,257.82,85.3281 +487986,257.13,86.6371 +487987,256.47,87.9584 +487988,255.83,89.29105 +487989,256.54,85.3889 +487990,255.81,86.6725 +487991,255.11,87.9682 +487992,254.43,89.27486 +487993,255.25,85.4508 +487994,254.49,86.7082 +487995,253.75,87.9775 +487996,253.04,89.25764 +487997,253.97,85.5138 +487998,253.17,86.7442 +487999,252.4,87.9865 +488000,251.65,89.23941 +488001,252.68,85.5777 +488002,251.85,86.7806 +488003,251.04,87.9952 +488004,250.25,89.22019 +488005,251.4,85.6427 +488006,250.53,86.8173 +488007,249.69,88.0035 +488008,248.86,89.2 +488009,250.11,85.7086 +488010,249.21,86.8543 +488011,248.33,88.0115 +488012,247.47,89.17888 +488013,248.83,85.7754 +488014,247.89,86.8916 +488015,246.98,88.0192 +488016,246.08,89.15682 +488017,247.54,85.8432 +488018,246.57,86.9292 +488019,245.62,88.0265 +488020,244.69,89.13387 +488021,246.25,85.9119 +488022,245.25,86.967 +488023,244.27,88.0336 +488024,243.31,89.11004 +488025,244.96,85.9814 +488026,243.93,87.0052 +488027,242.91,88.0403 +488028,241.92,89.08535 +488029,243.67,86.0519 +488030,242.6,87.0436 +488031,241.56,88.0468 +488032,240.53,89.05984 +488033,242.38,86.1231 +488034,241.28,87.0823 +488035,240.2,88.0529 +488036,239.15,89.03351 +488037,241.09,86.1952 +488038,239.96,87.1212 +488039,238.85,88.0588 +488040,237.76,89.00641 +488041,239.8,86.268 +488042,238.64,87.1603 +488043,237.5,88.0644 +488044,236.38,88.9785 +488045,238.5,86.3416 +488046,237.31,87.1997 +488047,236.14,88.0697 +488048,235,88.95 +488049,237.21,86.4159 +488050,235.99,87.2394 +488051,234.79,88.0748 +488052,233.61,88.9207 +488053,235.91,86.4909 +488054,234.67,87.2792 +488055,233.44,88.0796 +488056,232.23,88.8907 +488057,234.62,86.5666 +488058,233.34,87.3192 +488059,232.09,88.0842 +488060,230.85,88.86 +488061,233.32,86.643 +488062,232.02,87.3595 +488063,230.73,88.0886 +488064,229.47,88.8288 +488065,232.02,86.72 +488066,230.69,87.3999 +488067,229.38,88.0928 +488068,228.1,88.7969 +488069,230.72,86.7975 +488070,229.37,87.4405 +488071,228.03,88.0967 +488072,226.72,88.7645 +488073,229.42,86.8756 +488074,228.04,87.4813 +488075,226.68,88.1005 +488076,225.34,88.7315 +488077,228.12,86.9543 +488078,226.71,87.5222 +488079,225.33,88.104 +488080,223.97,88.698 +488081,226.81,87.0335 +488082,225.39,87.5633 +488083,223.98,88.1074 +488084,222.6,88.664 +488085,225.51,87.1131 +488086,224.06,87.6046 +488087,222.63,88.1106 +488088,221.22,88.6296 +488089,224.21,87.1932 +488090,222.73,87.6459 +488091,221.28,88.1136 +488092,219.85,88.5947 +488093,222.9,87.2737 +488094,221.4,87.6874 +488095,219.93,88.1165 +488096,218.48,88.5594 +488097,221.59,87.3546 +488098,220.07,87.729 +488099,218.58,88.1192 +488100,217.11,88.5238 +488101,220.28,87.4359 +488102,218.75,87.7707 +488103,217.23,88.1218 +488104,215.74,88.4878 +488105,218.97,87.5174 +488106,217.42,87.8124 +488107,215.88,88.1243 +488108,214.38,88.4514 +488109,217.66,87.5993 +488110,216.09,87.8543 +488111,214.54,88.1267 +488112,213.01,88.4148 +488113,216.35,87.6814 +488114,214.76,87.8962 +488115,213.19,88.1289 +488116,211.65,88.3779 +488117,215.03,87.7638 +488118,213.43,87.9382 +488119,211.84,88.1311 +488120,210.28,88.3408 +488121,213.72,87.8463 +488122,212.09,87.9802 +488123,210.49,88.1332 +488124,208.92,88.3035 +488125,212.4,87.9291 +488126,210.76,88.0223 +488127,209.15,88.1352 +488128,207.56,88.2661 +488129,211.09,88.0119 +488130,209.43,88.0644 +488131,207.8,88.1372 +488132,206.2,88.2284 +488133,209.77,88.0949 +488134,208.1,88.1065 +488135,206.46,88.139 +488136,204.84,88.1907 +488137,208.45,88.1779 +488138,206.76,88.1486 +488139,205.11,88.1409 +488140,203.49,88.1529 +488141,207.12,88.261 +488142,205.43,88.1907 +488143,203.77,88.1427 +488144,202.13,88.1151 +488145,205.8,88.3441 +488146,204.1,88.2328 +488147,202.42,88.1445 +488148,200.78,88.0772 +488149,204.48,88.4271 +488150,202.76,88.2749 +488151,201.08,88.1463 +488152,199.42,88.0393 +488153,203.15,88.5101 +488154,201.43,88.3169 +488155,199.73,88.1481 +488156,198.07,88.0015 +488157,201.82,88.593 +488158,200.09,88.3589 +488159,198.39,88.1499 +488160,196.72,87.9637 +488161,200.5,88.6757 +488162,198.76,88.4008 +488163,197.05,88.1517 +488164,195.37,87.9261 +488165,199.17,88.7583 +488166,197.42,88.4427 +488167,195.71,88.1535 +488168,194.03,87.8885 +488169,197.83,88.8407 +488170,196.08,88.4845 +488171,194.36,88.1554 +488172,192.68,87.8512 +488173,196.5,88.9229 +488174,194.74,88.5261 +488175,193.02,88.1573 +488176,191.33,87.814 +488177,195.17,89.00487 +488178,193.41,88.5677 +488179,191.68,88.1592 +488180,189.99,87.777 +488181,193.83,89.08651 +488182,192.07,88.6092 +488183,190.34,88.1613 +488184,188.65,87.7403 +488185,192.5,89.16783 +488186,190.73,88.6505 +488187,189,88.1634 +488188,187.31,87.7038 +488189,191.16,89.2488 +488190,189.39,88.6918 +488191,187.66,88.1656 +488192,185.97,87.6677 +488193,189.82,89.32938 +488194,188.05,88.7328 +488195,186.32,88.1679 +488196,184.63,87.6319 +488197,188.48,89.40955 +488198,186.71,88.7737 +488199,184.98,88.1703 +488200,183.29,87.5965 +488201,187.14,89.48926 +488202,185.37,88.8145 +488203,183.64,88.1729 +488204,181.95,87.5614 +488205,185.79,89.56849 +488206,184.03,88.8551 +488207,182.3,88.1755 +488208,180.62,87.5268 +488209,184.45,89.64722 +488210,182.69,88.8955 +488211,180.97,88.1783 +488212,179.28,87.4926 +488213,183.1,89.72539 +488214,181.34,88.9357 +488215,179.63,88.1813 +488216,177.95,87.459 +488217,181.75,89.803 +488218,180,88.9757 +488219,178.29,88.1844 +488220,176.62,87.4258 +488221,180.4,89.88 +488222,178.66,89.01546 +488223,176.95,88.1877 +488224,175.29,87.3931 +488225,179.05,89.956359 +488226,177.31,89.05502 +488227,175.62,88.1911 +488228,173.96,87.361 +488229,177.7,90.032057 +488230,175.97,89.09434 +488231,174.28,88.1947 +488232,172.64,87.3295 +488233,176.35,90.10706 +488234,174.62,89.13342 +488235,172.95,88.1985 +488236,171.31,87.2987 +488237,174.99,90.18134 +488238,173.28,89.17224 +488239,171.61,88.2026 +488240,169.99,87.2684 +488241,173.64,90.25486 +488242,171.93,89.21081 +488243,170.28,88.2068 +488244,168.66,87.2389 +488245,172.28,90.32761 +488246,170.59,89.2491 +488247,168.94,88.2113 +488248,167.34,87.21 +488249,170.92,90.39954 +488250,169.24,89.28711 +488251,167.61,88.2159 +488252,166.02,87.1818 +488253,169.56,90.47063 +488254,167.89,89.32482 +488255,166.27,88.2209 +488256,164.7,87.1544 +488257,168.2,90.54086 +488258,166.55,89.36224 +488259,164.94,88.226 +488260,163.38,87.1278 +488261,166.84,90.6102 +488262,165.2,89.39936 +488263,163.61,88.2314 +488264,162.06,87.102 +488265,165.47,90.67862 +488266,163.85,89.43615 +488267,162.28,88.2371 +488268,160.75,87.0769 +488269,164.11,90.74609 +488270,162.5,89.47262 +488271,160.94,88.2431 +488272,159.43,87.0528 +488273,162.74,90.8126 +488274,161.15,89.50876 +488275,159.61,88.2493 +488276,158.12,87.0295 +488277,161.37,90.8781 +488278,159.8,89.54455 +488279,158.28,88.2558 +488280,156.8,87.007 +488281,160,90.94259 +488282,158.45,89.58 +488283,156.95,88.2626 +488284,155.49,86.9855 +488285,158.63,91.006 +488286,157.1,89.61508 +488287,155.62,88.2697 +488288,154.18,86.965 +488289,157.26,91.0684 +488290,155.75,89.64981 +488291,154.29,88.2772 +488292,152.87,86.9454 +488293,155.89,91.1297 +488294,154.4,89.68416 +488295,152.96,88.2849 +488296,151.56,86.9268 +488297,154.51,91.1899 +488298,153.05,89.71813 +488299,151.63,88.293 +488300,150.26,86.9091 +488301,153.14,91.2489 +488302,151.69,89.75171 +488303,150.3,88.3013 +488304,148.95,86.8925 +488305,151.76,91.3068 +488306,150.34,89.7849 +488307,148.97,88.3101 +488308,147.64,86.8769 +488309,150.39,91.3635 +488310,148.99,89.81769 +488311,147.64,88.3191 +488312,146.34,86.8624 +488313,149.01,91.419 +488314,147.63,89.85007 +488315,146.31,88.3285 +488316,145.03,86.849 +488317,147.63,91.4733 +488318,146.28,89.88204 +488319,144.98,88.3383 +488320,143.73,86.8367 +488321,146.25,91.5264 +488322,144.93,89.913585 +488323,143.66,88.3484 +488324,142.43,86.8255 +488325,144.87,91.5782 +488326,143.57,89.944707 +488327,142.33,88.3589 +488328,141.13,86.8154 +488329,143.48,91.6288 +488330,142.22,89.975397 +488331,141,88.3698 +488332,139.83,86.8064 +488333,142.1,91.678 +488334,140.86,90.0056509 +488335,139.67,88.381 +488336,138.53,86.7986 +488337,140.72,91.726 +488338,139.5,90.035462 +488339,138.35,88.3927 +488340,137.23,86.792 +488341,139.33,91.7726 +488342,138.15,90.064826 +488343,137.02,88.4047 +488344,135.93,86.7866 +488345,137.94,91.818 +488346,136.79,90.093738 +488347,135.69,88.4171 +488348,134.64,86.7824 +488349,136.56,91.8619 +488350,135.44,90.12219 +488351,134.37,88.4299 +488352,133.34,86.7795 +488353,135.17,91.9046 +488354,134.08,90.15019 +488355,133.04,88.4431 +488356,132.04,86.7777 +488357,133.78,91.9458 +488358,132.72,90.17771 +488359,131.71,88.4567 +488360,130.75,86.7772 +488361,132.39,91.9857 +488362,131.36,90.20477 +488363,130.39,88.4707 +488364,129.46,86.778 +488365,131,92.0242 +488366,130.01,90.23136 +488367,129.06,88.4851 +488368,128.16,86.78 +488369,129.61,92.0613 +488370,128.65,90.25747 +488371,127.74,88.4999 +488372,126.87,86.7834 +488373,128.22,92.0969 +488374,127.29,90.28309 +488375,126.41,88.5152 +488376,125.58,86.788 +488377,126.82,92.1312 +488378,125.93,90.30824 +488379,125.09,88.5308 +488380,124.29,86.7939 +488381,125.43,92.164 +488382,124.57,90.3329 +488383,123.76,88.5469 +488384,122.99,86.8011 +488385,124.04,92.1954 +488386,123.21,90.35707 +488387,122.44,88.5635 +488388,121.7,86.8097 +488389,122.64,92.2254 +488390,121.85,90.38075 +488391,121.11,88.5804 +488392,120.41,86.8195 +488393,121.25,92.2539 +488394,120.49,90.40394 +488395,119.79,88.5978 +488396,119.12,86.8307 +488397,119.85,92.281 +488398,119.13,90.42663 +488399,118.47,88.6156 +488400,117.84,86.8433 +488401,118.45,92.3066 +488402,117.77,90.44882 +488403,117.14,88.6338 +488404,116.55,86.8571 +488405,117.06,92.3308 +488406,116.41,90.47052 +488407,115.82,88.6525 +488408,115.26,86.8724 +488409,115.66,92.3535 +488410,115.05,90.49172 +488411,114.49,88.6716 +488412,113.97,86.889 +488413,114.26,92.3747 +488414,113.69,90.51242 +488415,113.17,88.6912 +488416,112.68,86.9069 +488417,112.86,92.3945 +488418,112.33,90.53262 +488419,111.85,88.7112 +488420,111.4,86.9262 +488421,111.46,92.4129 +488422,110.97,90.55232 +488423,110.52,88.7316 +488424,110.11,86.9468 +488425,110.07,92.4297 +488426,109.61,90.57152 +488427,109.2,88.7525 +488428,108.82,86.9689 +488429,108.67,92.4451 +488430,108.25,90.59022 +488431,107.87,88.7738 +488432,107.53,86.9922 +488433,107.27,92.4591 +488434,106.89,90.60842 +488435,106.55,88.7955 +488436,106.25,87.017 +488437,105.87,92.4716 +488438,105.53,90.62611 +488439,105.23,88.8177 +488440,104.96,87.0431 +488441,104.47,92.4827 +488442,104.17,90.64331 +488443,103.9,88.8403 +488444,103.68,87.0705 +488445,103.07,92.4923 +488446,102.8,90.66002 +488447,102.58,88.8633 +488448,102.39,87.0993 +488449,101.67,92.5005 +488450,101.44,90.67622 +488451,101.26,88.8868 +488452,101.1,87.1295 +488453,100.26,92.5073 +488454,100.08,90.69193 +488455,99.933,88.9107 +488456,99.817,87.161 +488457,98.864,92.5126 +488458,98.719,90.70715 +488459,98.61,88.9351 +488460,98.531,87.1939 +488461,97.463,92.5165 +488462,97.358,90.72188 +488463,97.286,88.9598 +488464,97.245,87.2281 +488465,96.063,92.519 +488466,95.996,90.73612 +488467,95.962,88.985 +488468,95.959,87.2636 +488469,94.662,92.5201 +488470,94.634,90.74988 +488471,94.639,89.01067 +488472,94.673,87.3005 +488473,93.261,92.5198 +488474,93.272,90.76315 +488475,93.315,89.03671 +488476,93.386,87.3387 +488477,91.86,92.5182 +488478,91.91,90.77594 +488479,91.991,89.06316 +488480,92.1,87.3782 +488481,90.46,92.5152 +488482,90.548,90.78825 +488483,90.667,89.09004 +488484,90.813,87.419 +488485,89.059,92.5108 +488486,89.187,90.80009 +488487,89.343,89.11732 +488488,89.527,87.4611 +488489,87.659,92.5051 +488490,87.825,90.81146 +488491,88.019,89.14501 +488492,88.24,87.5045 +488493,86.259,92.498 +488494,86.463,90.82237 +488495,86.695,89.17311 +488496,86.952,87.5492 +488497,84.859,92.4897 +488498,85.101,90.83282 +488499,85.371,89.2016 +488500,85.665,87.5951 +488501,83.459,92.48 +488502,83.74,90.8428 +488503,84.046,89.23049 +488504,84.377,87.6423 +488505,82.06,92.469 +488506,82.378,90.85234 +488507,82.721,89.25977 +488508,83.089,87.6907 +488509,80.661,92.4568 +488510,81.016,90.86143 +488511,81.397,89.28944 +488512,81.8,87.7404 +488513,79.262,92.4434 +488514,79.655,90.87007 +488515,80.072,89.31948 +488516,80.511,87.7912 +488517,77.863,92.4287 +488518,78.293,90.87828 +488519,78.747,89.3499 +488520,79.222,87.8433 +488521,76.465,92.4127 +488522,76.932,90.88606 +488523,77.422,89.3807 +488524,77.932,87.8965 +488525,75.068,92.3956 +488526,75.571,90.89341 +488527,76.096,89.41185 +488528,76.642,87.9509 +488529,73.671,92.3773 +488530,74.21,90.90035 +488531,74.77,89.44337 +488532,75.351,88.0065 +488533,72.274,92.3578 +488534,72.849,90.90686 +488535,73.445,89.47524 +488536,74.06,88.0632 +488537,70.878,92.3372 +488538,71.488,90.91297 +488539,72.119,89.50745 +488540,72.768,88.121 +488541,69.482,92.3155 +488542,70.128,90.91868 +488543,70.792,89.54001 +488544,71.476,88.1799 +488545,68.087,92.2927 +488546,68.767,90.924 +488547,69.466,89.57289 +488548,70.183,88.2399 +488549,66.693,92.2688 +488550,67.407,90.92892 +488551,68.139,89.60611 +488552,68.889,88.301 +488553,65.299,92.2438 +488554,66.047,90.93347 +488555,66.812,89.63964 +488556,67.595,88.363 +488557,63.906,92.2179 +488558,64.687,90.93764 +488559,65.485,89.67349 +488560,66.3,88.4261 +488561,62.514,92.1909 +488562,63.327,90.94145 +488563,64.157,89.70764 +488564,65.004,88.4902 +488565,61.122,92.1629 +488566,61.967,90.9449 +488567,62.829,89.74208 +488568,63.708,88.5553 +488569,59.731,92.1339 +488570,60.608,90.948 +488571,61.501,89.77682 +488572,62.411,88.6213 +488573,58.341,92.104 +488574,59.249,90.95076 +488575,60.173,89.81184 +488576,61.113,88.6883 +488577,56.951,92.0732 +488578,57.89,90.95318 +488579,58.844,89.84713 +488580,59.814,88.7561 +488581,55.562,92.0416 +488582,56.531,90.95527 +488583,57.515,89.88269 +488584,58.515,88.8249 +488585,54.174,92.009 +488586,55.173,90.95705 +488587,56.186,89.918499 +488588,57.214,88.8945 +488589,52.787,91.9756 +488590,53.814,90.95852 +488591,54.857,89.95456 +488592,55.913,88.9649 +488593,51.401,91.9415 +488594,52.456,90.95969 +488595,53.527,89.9908595 +488596,54.611,89.03614 +488597,50.016,91.9065 +488598,51.099,90.96056 +488599,52.196,90.02739 +488600,53.308,89.10816 +488601,48.631,91.8708 +488602,49.741,90.96115 +488603,50.866,90.064141 +488604,52.004,89.18093 +488605,47.248,91.8343 +488606,48.384,90.96147 +488607,49.535,90.1011 +488608,50.699,89.25443 +488609,45.865,91.7972 +488610,47.027,90.96152 +488611,48.204,90.13827 +488612,49.393,89.32863 +488613,44.484,91.7593 +488614,45.671,90.96132 +488615,46.872,90.17563 +488616,48.086,89.4035 +488617,43.103,91.7209 +488618,44.314,90.96087 +488619,45.54,90.21317 +488620,46.779,89.47901 +488621,41.724,91.6818 +488622,42.958,90.96019 +488623,44.207,90.25089 +488624,45.47,89.55514 +488625,40.345,91.6421 +488626,41.603,90.95927 +488627,42.875,90.28877 +488628,44.16,89.63186 +488629,38.968,91.6019 +488630,40.247,90.95814 +488631,41.542,90.3268 +488632,42.849,89.70913 +488633,37.591,91.5612 +488634,38.892,90.95681 +488635,40.208,90.36498 +488636,41.537,89.78693 +488637,36.216,91.5199 +488638,37.538,90.95527 +488639,38.874,90.40329 +488640,40.224,89.86523 +488641,34.841,91.4782 +488642,36.183,90.95355 +488643,37.54,90.44173 +488644,38.91,89.943994 +488645,33.468,91.4361 +488646,34.829,90.95165 +488647,36.205,90.48028 +488648,37.594,90.023194 +488649,32.096,91.3936 +488650,33.475,90.94958 +488651,34.87,90.51893 +488652,36.278,90.1028 +488653,30.725,91.3506 +488654,32.122,90.94736 +488655,33.534,90.55767 +488656,34.96,90.18278 +488657,29.355,91.3074 +488658,30.769,90.94499 +488659,32.198,90.5965 +488660,33.642,90.2631 +488661,27.987,91.2638 +488662,29.416,90.94248 +488663,30.862,90.6354 +488664,32.322,90.34373 +488665,26.619,91.2199 +488666,28.064,90.93984 +488667,29.525,90.67435 +488668,31.001,90.42464 +488669,25.253,91.1758 +488670,26.712,90.93709 +488671,28.188,90.71336 +488672,29.678,90.50579 +488673,23.887,91.1315 +488674,25.361,90.93424 +488675,26.85,90.7524 +488676,28.355,90.58716 +488677,22.523,91.087 +488678,24.009,90.93129 +488679,25.512,90.79148 +488680,27.03,90.66871 +488681,21.161,91.0423 +488682,22.658,90.92825 +488683,24.173,90.83057 +488684,25.704,90.7504 +488685,19.799,90.99746 +488686,21.308,90.92515 +488687,22.834,90.86966 +488688,24.377,90.83221 +488689,18.439,90.95255 +488690,19.958,90.92198 +488691,21.495,90.90875 +488692,23.049,90.9141 +488693,17.079,90.90758 +488694,18.608,90.91875 +488695,20.155,90.94782 +488696,21.719,90.99604 +488697,15.721,90.86257 +488698,17.259,90.91549 +488699,18.815,90.98687 +488700,20.388,91.078 +488701,14.365,90.81756 +488702,15.91,90.91219 +488703,17.474,91.0259 +488704,19.056,91.1599 +488705,13.009,90.77258 +488706,14.561,90.90887 +488707,16.132,91.0648 +488708,17.722,91.2418 +488709,11.655,90.72766 +488710,13.213,90.90554 +488711,14.791,91.1037 +488712,16.388,91.3236 +488713,10.302,90.68283 +488714,11.865,90.90222 +488715,13.448,91.1426 +488716,15.052,91.4053 +488717,8.9501,90.63813 +488718,10.518,90.8989 +488719,12.106,91.1813 +488720,13.714,91.4868 +488721,7.5995,90.59357 +488722,9.1707,90.89561 +488723,10.763,91.2199 +488724,12.376,91.5681 +488725,6.2502,90.5492 +488726,7.824,90.89234 +488727,9.4191,91.2585 +488728,11.036,91.6492 +488729,4.9021,90.50505 +488730,6.4777,90.88912 +488731,8.0751,91.2969 +488732,9.6946,91.7301 +488733,3.5553,90.46114 +488734,5.1318,90.88596 +488735,6.7306,91.3352 +488736,8.352,91.8106 +488737,2.2098,90.41751 +488738,3.7864,90.88285 +488739,5.3856,91.3734 +488740,7.0082,91.8909 +488741,0.86542,90.37418 +488742,2.4412,90.87982 +488743,4.0402,91.4114 +488744,5.6631,91.9708 +488745,359.52,90.33119 +488746,1.0965,90.87688 +488747,2.6943,91.4492 +488748,4.3166,92.0503 +488749,358.18,90.28857 +488750,359.75,90.87403 +488751,1.348,91.4869 +488752,2.9689,92.1293 +488753,356.84,90.24634 +488754,358.41,90.87128 +488755,0.0011492,91.5244 +488756,1.6198,92.208 +488757,355.5,90.20454 +488758,357.06,90.86865 +488759,358.65,91.5617 +488760,0.2695,92.2861 +488761,354.16,90.16319 +488762,355.72,90.86614 +488763,357.31,91.5988 +488764,358.92,92.3637 +488765,352.83,90.12233 +488766,354.38,90.86377 +488767,355.96,91.6357 +488768,357.56,92.4407 +488769,351.49,90.081981 +488770,353.04,90.86154 +488771,354.61,91.6724 +488772,356.21,92.5172 +488773,350.15,90.042174 +488774,351.69,90.85947 +488775,353.26,91.7088 +488776,354.86,92.593 +488777,348.82,90.0029377 +488778,350.35,90.85756 +488779,351.91,91.745 +488780,353.5,92.6682 +488781,347.49,89.964299 +488782,349.01,90.85582 +488783,350.56,91.781 +488784,352.14,92.7427 +488785,346.16,89.926287 +488786,347.67,90.85427 +488787,349.21,91.8166 +488788,350.78,92.8165 +488789,344.83,89.88893 +488790,346.33,90.85291 +488791,347.86,91.852 +488792,349.42,92.8896 +488793,343.5,89.85225 +488794,344.99,90.85175 +488795,346.51,91.8872 +488796,348.06,92.9619 +488797,342.17,89.81628 +488798,343.65,90.85081 +488799,345.16,91.922 +488800,346.7,93.0333 +488801,340.85,89.78104 +488802,342.31,90.85008 +488803,343.8,91.9565 +488804,345.33,93.104 +488805,339.52,89.74656 +488806,340.97,90.84958 +488807,342.45,91.9907 +488808,343.97,93.1738 +488809,338.2,89.71287 +488810,339.63,90.84932 +488811,341.1,92.0246 +488812,342.6,93.2426 +488813,336.87,89.67999 +488814,338.29,90.8493 +488815,339.75,92.0581 +488816,341.23,93.3106 +488817,335.55,89.64794 +488818,336.96,90.84954 +488819,338.39,92.0913 +488820,339.86,93.3776 +488821,334.23,89.61675 +488822,335.62,90.85004 +488823,337.04,92.1242 +488824,338.49,93.4436 +488825,332.91,89.58645 +488826,334.28,90.85082 +488827,335.68,92.1567 +488828,337.12,93.5086 +488829,331.59,89.55705 +488830,332.94,90.85187 +488831,334.33,92.1888 +488832,335.75,93.5726 +488833,330.27,89.52859 +488834,331.61,90.85321 +488835,332.97,92.2206 +488836,334.37,93.6355 +488837,328.96,89.50108 +488838,330.27,90.85484 +488839,331.62,92.2519 +488840,333,93.6974 +488841,327.64,89.47454 +488842,328.93,90.85678 +488843,330.26,92.2829 +488844,331.62,93.7581 +488845,326.33,89.449 +488846,327.6,90.85903 +488847,328.9,92.3135 +488848,330.24,93.8177 +488849,325.01,89.42448 +488850,326.26,90.86159 +488851,327.55,92.3436 +488852,328.87,93.8762 +488853,323.7,89.401 +488854,324.93,90.86448 +488855,326.19,92.3734 +488856,327.49,93.9334 +488857,322.39,89.37858 +488858,323.59,90.86769 +488859,324.83,92.4027 +488860,326.11,93.9895 +488861,321.08,89.35724 +488862,322.26,90.87125 +488863,323.47,92.4316 +488864,324.73,94.0443 +488865,319.77,89.33699 +488866,320.92,90.87515 +488867,322.11,92.4601 +488868,323.34,94.0979 +488869,318.46,89.31786 +488870,319.59,90.8794 +488871,320.75,92.4881 +488872,321.96,94.1502 +488873,317.15,89.29987 +488874,318.26,90.884 +488875,319.4,92.5157 +488876,320.58,94.2012 +488877,315.84,89.28303 +488878,316.92,90.88897 +488879,318.04,92.5428 +488880,319.19,94.2509 +488881,314.53,89.26736 +488882,315.59,90.89431 +488883,316.68,92.5695 +488884,317.8,94.2993 +488885,313.23,89.25288 +488886,314.26,90.90002 +488887,315.32,92.5957 +488888,316.42,94.3463 +488889,311.92,89.23959 +488890,312.92,90.90611 +488891,313.96,92.6214 +488892,315.03,94.392 +488893,310.62,89.22753 +488894,311.59,90.91258 +488895,312.6,92.6466 +488896,313.64,94.4363 +488897,309.31,89.21669 +488898,310.26,90.91944 +488899,311.23,92.6713 +488900,312.25,94.4792 +488901,308.01,89.2071 +488902,308.93,90.92669 +488903,309.87,92.6956 +488904,310.86,94.5206 +488905,306.71,89.19877 +488906,307.59,90.93434 +488907,308.51,92.7194 +488908,309.47,94.5607 +488909,305.41,89.19171 +488910,306.26,90.9424 +488911,307.15,92.7426 +488912,308.08,94.5993 +488913,304.11,89.18594 +488914,304.93,90.95085 +488915,305.79,92.7654 +488916,306.68,94.6365 +488917,302.8,89.18146 +488918,303.6,90.95972 +488919,304.42,92.7877 +488920,305.29,94.6722 +488921,301.5,89.17828 +488922,302.27,90.96901 +488923,303.06,92.8094 +488924,303.9,94.7064 +488925,300.2,89.17642 +488926,300.94,90.9787 +488927,301.7,92.8306 +488928,302.5,94.7391 +488929,298.91,89.17589 +488930,299.6,90.98882 +488931,300.34,92.8513 +488932,301.11,94.7703 +488933,297.61,89.17669 +488934,298.27,90.99936 +488935,298.97,92.8715 +488936,299.71,94.8001 +488937,296.31,89.17884 +488938,296.94,91.0103 +488939,297.61,92.8912 +488940,298.31,94.8283 +488941,295.01,89.18233 +488942,295.61,91.0217 +488943,296.25,92.9103 +488944,296.92,94.855 +488945,293.71,89.18718 +488946,294.28,91.0335 +488947,294.88,92.929 +488948,295.52,94.8802 +488949,292.42,89.1934 +488950,292.95,91.0458 +488951,293.52,92.947 +488952,294.12,94.9038 +488953,291.12,89.20098 +488954,291.62,91.0585 +488955,292.15,92.9646 +488956,292.72,94.9259 +488957,289.82,89.20994 +488958,290.29,91.0716 +488959,290.79,92.9816 +488960,291.32,94.9465 +488961,288.53,89.22028 +488962,288.96,91.0852 +488963,289.42,92.9981 +488964,289.92,94.9655 +488965,287.23,89.232 +488966,287.63,91.0992 +488967,288.06,93.014 +488968,288.52,94.9829 +488969,285.94,89.2451 +488970,286.3,91.1136 +488971,286.69,93.0294 +488972,287.12,94.9989 +488973,284.64,89.25959 +488974,284.97,91.1285 +488975,285.33,93.0443 +488976,285.72,95.0132 +488977,283.35,89.27547 +488978,283.64,91.1438 +488979,283.96,93.0586 +488980,284.32,95.026 +488981,282.05,89.29273 +488982,282.31,91.1595 +488983,282.6,93.0724 +488984,282.92,95.0373 +488985,280.76,89.31138 +488986,280.98,91.1757 +488987,281.23,93.0857 +488988,281.52,95.047 +488989,279.46,89.33142 +488990,279.65,91.1923 +488991,279.87,93.0984 +488992,280.12,95.0552 +488993,278.17,89.35285 +488994,278.32,91.2094 +488995,278.5,93.1106 +488996,278.72,95.0619 +488997,276.87,89.37566 +488998,276.99,91.2269 +488999,277.14,93.1222 +489000,277.31,95.067 +489001,275.58,89.39986 +489002,275.66,91.2448 +489003,275.77,93.1334 +489004,275.91,95.0705 +489005,274.28,89.42543 +489006,274.33,91.2632 +489007,274.41,93.1439 +489008,274.51,95.0726 +489009,272.99,89.45237 +489010,273,91.282 +489011,273.04,93.154 +489012,273.11,95.0731 +489013,271.69,89.48068 +489014,271.67,91.3012 +489015,271.68,93.1635 +489016,271.71,95.0722 +489017,270.4,89.51036 +489018,270.34,91.3209 +489019,270.31,93.1725 +489020,270.3,95.0697 +489021,269.1,89.54139 +489022,269.01,91.3409 +489023,268.94,93.181 +489024,268.9,95.0657 +489025,267.81,89.57377 +489026,267.68,91.3614 +489027,267.58,93.1889 +489028,267.5,95.0603 +489029,266.51,89.60749 +489030,266.35,91.3824 +489031,266.21,93.1964 +489032,266.1,95.0533 +489033,265.22,89.64255 +489034,265.02,91.4037 +489035,264.85,93.2033 +489036,264.7,95.045 +489037,263.92,89.67893 +489038,263.69,91.4254 +489039,263.48,93.2097 +489040,263.29,95.0351 +489041,262.63,89.71663 +489042,262.36,91.4476 +489043,262.12,93.2156 +489044,261.89,95.0239 +489045,261.33,89.75563 +489046,261.03,91.4702 +489047,260.75,93.221 +489048,260.49,95.0112 +489049,260.04,89.79592 +489050,259.7,91.4931 +489051,259.39,93.2259 +489052,259.09,94.9971 +489053,258.74,89.83749 +489054,258.37,91.5165 +489055,258.02,93.2303 +489056,257.69,94.9816 +489057,257.44,89.88033 +489058,257.04,91.5402 +489059,256.65,93.2342 +489060,256.29,94.9647 +489061,256.14,89.924433 +489062,255.71,91.5644 +489063,255.29,93.2376 +489064,254.89,94.9465 +489065,254.85,89.969773 +489066,254.38,91.5889 +489067,253.92,93.2406 +489068,253.49,94.9269 +489069,253.55,90.01634 +489070,253.04,91.6138 +489071,252.56,93.243 +489072,252.09,94.906 +489073,252.25,90.06412 +489074,251.71,91.6391 +489075,251.19,93.245 +489076,250.69,94.8838 +489077,250.95,90.1131 +489078,250.38,91.6647 +489079,249.83,93.2466 +489080,249.29,94.8603 +489081,249.65,90.16325 +489082,249.05,91.6907 +489083,248.46,93.2477 +489084,247.9,94.8356 +489085,248.35,90.21457 +489086,247.72,91.717 +489087,247.1,93.2483 +489088,246.5,94.8096 +489089,247.05,90.26704 +489090,246.38,91.7437 +489091,245.74,93.2485 +489092,245.1,94.7824 +489093,245.75,90.32063 +489094,245.05,91.7708 +489095,244.37,93.2483 +489096,243.71,94.7539 +489097,244.44,90.37533 +489098,243.72,91.7982 +489099,243.01,93.2476 +489100,242.31,94.7243 +489101,243.14,90.43112 +489102,242.39,91.8259 +489103,241.64,93.2465 +489104,240.92,94.6935 +489105,241.84,90.48798 +489106,241.05,91.8539 +489107,240.28,93.245 +489108,239.52,94.6616 +489109,240.53,90.54588 +489110,239.72,91.8822 +489111,238.92,93.243 +489112,238.13,94.6286 +489113,239.23,90.60481 +489114,238.39,91.9109 +489115,237.55,93.2407 +489116,236.73,94.5945 +489117,237.92,90.66475 +489118,237.05,91.9398 +489119,236.19,93.238 +489120,235.34,94.5593 +489121,236.62,90.72567 +489122,235.72,91.9691 +489123,234.83,93.2349 +489124,233.95,94.5231 +489125,235.31,90.78756 +489126,234.38,91.9986 +489127,233.47,93.2314 +489128,232.56,94.4859 +489129,234,90.85037 +489130,233.05,92.0284 +489131,232.1,93.2275 +489132,231.17,94.4477 +489133,232.69,90.9141 +489134,231.71,92.0584 +489135,230.74,93.2233 +489136,229.78,94.4085 +489137,231.38,90.97872 +489138,230.38,92.0887 +489139,229.38,93.2188 +489140,228.39,94.3684 +489141,230.07,91.0442 +489142,229.04,92.1193 +489143,228.02,93.2138 +489144,227,94.3274 +489145,228.76,91.1105 +489146,227.7,92.1501 +489147,226.66,93.2086 +489148,225.62,94.2855 +489149,227.45,91.1777 +489150,226.37,92.1811 +489151,225.29,93.203 +489152,224.23,94.2428 +489153,226.14,91.2456 +489154,225.03,92.2124 +489155,223.93,93.1971 +489156,222.85,94.1992 +489157,224.82,91.3142 +489158,223.69,92.2439 +489159,222.57,93.191 +489160,221.46,94.1549 +489161,223.51,91.3837 +489162,222.36,92.2755 +489163,221.21,93.1845 +489164,220.08,94.1098 +489165,222.19,91.4538 +489166,221.02,92.3074 +489167,219.85,93.1777 +489168,218.7,94.0639 +489169,220.87,91.5245 +489170,219.68,92.3395 +489171,218.49,93.1706 +489172,217.32,94.0174 +489173,219.56,91.596 +489174,218.34,92.3717 +489175,217.13,93.1633 +489176,215.93,93.9701 +489177,218.24,91.668 +489178,217,92.4041 +489179,215.78,93.1558 +489180,214.56,93.9223 +489181,216.92,91.7407 +489182,215.66,92.4366 +489183,214.42,93.1479 +489184,213.18,93.8738 +489185,215.6,91.8139 +489186,214.32,92.4693 +489187,213.06,93.1399 +489188,211.8,93.8248 +489189,214.27,91.8876 +489190,212.98,92.5021 +489191,211.7,93.1316 +489192,210.42,93.7752 +489193,212.95,91.9618 +489194,211.64,92.5351 +489195,210.34,93.1231 +489196,209.05,93.7251 +489197,211.63,92.0365 +489198,210.3,92.5681 +489199,208.98,93.1144 +489200,207.67,93.6745 +489201,210.3,92.1116 +489202,208.96,92.6013 +489203,207.63,93.1055 +489204,206.3,93.6234 +489205,208.98,92.1871 +489206,207.62,92.6345 +489207,206.27,93.0964 +489208,204.93,93.5719 +489209,207.65,92.263 +489210,206.28,92.6678 +489211,204.91,93.0871 +489212,203.56,93.52 +489213,206.32,92.3393 +489214,204.94,92.7012 +489215,203.56,93.0777 +489216,202.19,93.4678 +489217,204.99,92.4158 +489218,203.59,92.7347 +489219,202.2,93.0681 +489220,200.82,93.4153 +489221,203.66,92.4926 +489222,202.25,92.7682 +489223,200.85,93.0584 +489224,199.45,93.3624 +489225,202.33,92.5697 +489226,200.91,92.8017 +489227,199.49,93.0485 +489228,198.09,93.3093 +489229,200.99,92.647 +489230,199.56,92.8353 +489231,198.14,93.0385 +489232,196.72,93.256 +489233,199.66,92.7244 +489234,198.22,92.8689 +489235,196.78,93.0284 +489236,195.36,93.2024 +489237,198.32,92.802 +489238,196.87,92.9024 +489239,195.43,93.0182 +489240,194,93.1488 +489241,196.99,92.8797 +489242,195.53,92.936 +489243,194.08,93.008 +489244,192.64,93.0949 +489245,195.65,92.9575 +489246,194.18,92.9696 +489247,192.72,92.9976 +489248,191.27,93.041 +489249,194.31,93.0353 +489250,192.84,93.0031 +489251,191.37,92.9872 +489252,189.92,92.987 +489253,192.97,93.1131 +489254,191.49,93.0365 +489255,190.02,92.9767 +489256,188.56,92.933 +489257,191.63,93.1909 +489258,190.14,93.07 +489259,188.67,92.9662 +489260,187.2,92.879 +489261,190.28,93.2687 +489262,188.79,93.1033 +489263,187.31,92.9557 +489264,185.85,92.825 +489265,188.94,93.3463 +489266,187.45,93.1366 +489267,185.96,92.9451 +489268,184.49,92.7711 +489269,187.59,93.4238 +489270,186.1,93.1698 +489271,184.61,92.9345 +489272,183.14,92.7172 +489273,186.25,93.5012 +489274,184.75,93.2029 +489275,183.26,92.9239 +489276,181.79,92.6635 +489277,184.9,93.5783 +489278,183.4,93.2359 +489279,181.91,92.9134 +489280,180.44,92.61 +489281,183.55,93.6553 +489282,182.05,93.2687 +489283,180.56,92.9028 +489284,179.09,92.5567 +489285,182.2,93.7319 +489286,180.7,93.3015 +489287,179.21,92.8923 +489288,177.74,92.5035 +489289,180.85,93.8083 +489290,179.35,93.3341 +489291,177.86,92.8818 +489292,176.39,92.4507 +489293,179.5,93.8843 +489294,178,93.3665 +489295,176.52,92.8714 +489296,175.04,92.3981 +489297,178.14,93.9599 +489298,176.65,93.3988 +489299,175.17,92.8611 +489300,173.7,92.3458 +489301,176.79,94.0352 +489302,175.3,93.4308 +489303,173.82,92.8508 +489304,172.36,92.2939 +489305,175.43,94.11 +489306,173.94,93.4627 +489307,172.47,92.8406 +489308,171.01,92.2424 +489309,174.07,94.1843 +489310,172.59,93.4944 +489311,171.13,92.8305 +489312,169.67,92.1913 +489313,172.71,94.2581 +489314,171.24,93.5259 +489315,169.78,92.8205 +489316,168.33,92.1406 +489317,171.35,94.3314 +489318,169.89,93.5572 +489319,168.43,92.8106 +489320,166.99,92.0904 +489321,169.99,94.4041 +489322,168.53,93.5882 +489323,167.09,92.8009 +489324,165.66,92.0407 +489325,168.63,94.4763 +489326,167.18,93.619 +489327,165.74,92.7913 +489328,164.32,91.9916 +489329,167.27,94.5477 +489330,165.82,93.6495 +489331,164.4,92.7819 +489332,162.98,91.943 +489333,165.9,94.6185 +489334,164.47,93.6798 +489335,163.05,92.7726 +489336,161.65,91.895 +489337,164.54,94.6886 +489338,163.11,93.7098 +489339,161.71,92.7634 +489340,160.32,91.8476 +489341,163.17,94.758 +489342,161.76,93.7395 +489343,160.36,92.7545 +489344,158.98,91.8008 +489345,161.8,94.8266 +489346,160.4,93.7689 +489347,159.02,92.7457 +489348,157.65,91.7548 +489349,160.43,94.8944 +489350,159.04,93.798 +489351,157.67,92.7372 +489352,156.32,91.7094 +489353,159.06,94.9614 +489354,157.69,93.8268 +489355,156.33,92.7288 +489356,154.99,91.6648 +489357,157.69,95.0275 +489358,156.33,93.8553 +489359,154.99,92.7207 +489360,153.67,91.6209 +489361,156.32,95.0927 +489362,154.97,93.8834 +489363,153.65,92.7127 +489364,152.34,91.5778 +489365,154.94,95.157 +489366,153.61,93.9112 +489367,152.3,92.7051 +489368,151.01,91.5355 +489369,153.57,95.2204 +489370,152.25,93.9386 +489371,150.96,92.6976 +489372,149.69,91.4941 +489373,152.19,95.2827 +489374,150.9,93.9657 +489375,149.62,92.6904 +489376,148.36,91.4535 +489377,150.81,95.3441 +489378,149.54,93.9924 +489379,148.28,92.6835 +489380,147.04,91.4138 +489381,149.43,95.4044 +489382,148.18,94.0187 +489383,146.94,92.6768 +489384,145.72,91.375 +489385,148.06,95.4637 +489386,146.82,94.0446 +489387,145.6,92.6704 +489388,144.4,91.3371 +489389,146.68,95.5218 +489390,145.46,94.0702 +489391,144.26,92.6643 +489392,143.08,91.3002 +489393,145.29,95.5789 +489394,144.1,94.0953 +489395,142.92,92.6585 +489396,141.76,91.2642 +489397,143.91,95.6348 +489398,142.73,94.12 +489399,141.58,92.653 +489400,140.44,91.2293 +489401,142.53,95.6895 +489402,141.37,94.1443 +489403,140.24,92.6478 +489404,139.13,91.1954 +489405,141.14,95.743 +489406,140.01,94.1681 +489407,138.9,92.6429 +489408,137.81,91.1625 +489409,139.76,95.7954 +489410,138.65,94.1915 +489411,137.56,92.6384 +489412,136.49,91.1307 +489413,138.37,95.8464 +489414,137.29,94.2145 +489415,136.22,92.6341 +489416,135.18,91.1 +489417,136.99,95.8962 +489418,135.92,94.237 +489419,134.89,92.6302 +489420,133.87,91.0704 +489421,135.6,95.9448 +489422,134.56,94.259 +489423,133.55,92.6267 +489424,132.55,91.0419 +489425,134.21,95.992 +489426,133.2,94.2806 +489427,132.21,92.6235 +489428,131.24,91.0146 +489429,132.82,96.0378 +489430,131.83,94.3017 +489431,130.87,92.6206 +489432,129.93,90.98841 +489433,131.43,96.0823 +489434,130.47,94.3223 +489435,129.53,92.6181 +489436,128.62,90.9634 +489437,130.04,96.1255 +489438,129.11,94.3425 +489439,128.2,92.616 +489440,127.31,90.93959 +489441,128.65,96.1672 +489442,127.74,94.3621 +489443,126.86,92.6142 +489444,126,90.91699 +489445,127.25,96.2076 +489446,126.38,94.3813 +489447,125.52,92.6128 +489448,124.69,90.89562 +489449,125.86,96.2465 +489450,125.01,94.3999 +489451,124.19,92.6119 +489452,123.38,90.87549 +489453,124.47,96.284 +489454,123.65,94.418 +489455,122.85,92.6112 +489456,122.07,90.85661 +489457,123.07,96.32 +489458,122.28,94.4356 +489459,121.52,92.611 +489460,120.77,90.83901 +489461,121.68,96.3545 +489462,120.92,94.4527 +489463,120.18,92.6112 +489464,119.46,90.82269 +489465,120.28,96.3875 +489466,119.55,94.4693 +489467,118.84,92.6118 +489468,118.16,90.80766 +489469,118.88,96.419 +489470,118.19,94.4853 +489471,117.51,92.6128 +489472,116.85,90.79394 +489473,117.49,96.4491 +489474,116.82,94.5008 +489475,116.17,92.6142 +489476,115.55,90.78154 +489477,116.09,96.4775 +489478,115.45,94.5158 +489479,114.84,92.616 +489480,114.24,90.77046 +489481,114.69,96.5045 +489482,114.09,94.5302 +489483,113.5,92.6182 +489484,112.94,90.76073 +489485,113.29,96.5299 +489486,112.72,94.5441 +489487,112.17,92.6209 +489488,111.63,90.75235 +489489,111.89,96.5537 +489490,111.35,94.5574 +489491,110.83,92.6239 +489492,110.33,90.74532 +489493,110.49,96.5759 +489494,109.99,94.5702 +489495,109.5,92.6274 +489496,109.03,90.73965 +489497,109.09,96.5966 +489498,108.62,94.5825 +489499,108.16,92.6314 +489500,107.73,90.73536 +489501,107.69,96.6157 +489502,107.25,94.5941 +489503,106.83,92.6357 +489504,106.42,90.73244 +489505,106.29,96.6332 +489506,105.88,94.6053 +489507,105.49,92.6405 +489508,105.12,90.73091 +489509,104.89,96.6491 +489510,104.52,94.6158 +489511,104.16,92.6457 +489512,103.82,90.73077 +489513,103.49,96.6633 +489514,103.15,94.6258 +489515,102.83,92.6514 +489516,102.52,90.73203 +489517,102.09,96.676 +489518,101.78,94.6352 +489519,101.49,92.6574 +489520,101.22,90.73467 +489521,100.69,96.6871 +489522,100.41,94.6441 +489523,100.16,92.664 +489524,99.918,90.73872 +489525,99.285,96.6965 +489526,99.045,94.6524 +489527,98.824,92.6709 +489528,98.617,90.74418 +489529,97.883,96.7044 +489530,97.677,94.6602 +489531,97.489,92.6783 +489532,97.317,90.75103 +489533,96.48,96.7106 +489534,96.309,94.6674 +489535,96.155,92.6861 +489536,96.016,90.7593 +489537,95.078,96.7153 +489538,94.941,94.674 +489539,94.821,92.6944 +489540,94.716,90.76897 +489541,93.675,96.7183 +489542,93.573,94.68 +489543,93.487,92.7031 +489544,93.416,90.78004 +489545,92.273,96.7197 +489546,92.205,94.6855 +489547,92.153,92.7123 +489548,92.115,90.79252 +489549,90.87,96.7195 +489550,90.837,94.6904 +489551,90.819,92.7218 +489552,90.815,90.8064 +489553,89.467,96.7177 +489554,89.468,94.6948 +489555,89.485,92.7319 +489556,89.515,90.82168 +489557,88.065,96.7143 +489558,88.1,94.6986 +489559,88.151,92.7423 +489560,88.214,90.83835 +489561,86.662,96.7093 +489562,86.732,94.7018 +489563,86.817,92.7532 +489564,86.914,90.85642 +489565,85.259,96.7027 +489566,85.364,94.7045 +489567,85.482,92.7645 +489568,85.613,90.87588 +489569,83.857,96.6945 +489570,83.996,94.7067 +489571,84.148,92.7763 +489572,84.312,90.89671 +489573,82.454,96.6848 +489574,82.627,94.7082 +489575,82.814,92.7884 +489576,83.011,90.91893 +489577,81.052,96.6736 +489578,81.259,94.7093 +489579,81.479,92.801 +489580,81.71,90.94251 +489581,79.65,96.6607 +489582,79.891,94.7098 +489583,80.145,92.814 +489584,80.409,90.96746 +489585,78.249,96.6464 +489586,78.523,94.7097 +489587,78.81,92.8275 +489588,79.107,90.99376 +489589,76.847,96.6305 +489590,77.156,94.7091 +489591,77.475,92.8413 +489592,77.805,91.0214 +489593,75.446,96.6131 +489594,75.788,94.708 +489595,76.14,92.8556 +489596,76.503,91.0504 +489597,74.045,96.5942 +489598,74.42,94.7063 +489599,74.805,92.8702 +489600,75.2,91.0807 +489601,72.644,96.5738 +489602,73.052,94.7041 +489603,73.47,92.8853 +489604,73.897,91.1123 +489605,71.244,96.552 +489606,71.685,94.7014 +489607,72.135,92.9008 +489608,72.594,91.1452 +489609,69.844,96.5286 +489610,70.317,94.6981 +489611,70.8,92.9166 +489612,71.29,91.1795 +489613,68.445,96.5039 +489614,68.95,94.6944 +489615,69.464,92.9329 +489616,69.986,91.215 +489617,67.046,96.4777 +489618,67.583,94.6901 +489619,68.128,92.9495 +489620,68.681,91.2517 +489621,65.647,96.4502 +489622,66.216,94.6853 +489623,66.793,92.9665 +489624,67.376,91.2897 +489625,64.249,96.4212 +489626,64.849,94.6801 +489627,65.457,92.9839 +489628,66.071,91.329 +489629,62.852,96.3909 +489630,63.483,94.6743 +489631,64.12,93.0017 +489632,64.765,91.3695 +489633,61.455,96.3592 +489634,62.116,94.6681 +489635,62.784,93.0198 +489636,63.458,91.4111 +489637,60.059,96.3262 +489638,60.75,94.6613 +489639,61.447,93.0383 +489640,62.151,91.454 +489641,58.663,96.2919 +489642,59.384,94.6541 +489643,60.11,93.0572 +489644,60.843,91.498 +489645,57.268,96.2563 +489646,58.018,94.6465 +489647,58.773,93.0764 +489648,59.534,91.5432 +489649,55.873,96.2195 +489650,56.652,94.6383 +489651,57.436,93.0959 +489652,58.225,91.5895 +489653,54.479,96.1814 +489654,55.286,94.6298 +489655,56.098,93.1157 +489656,56.915,91.6369 +489657,53.086,96.1421 +489658,53.921,94.6207 +489659,54.761,93.1359 +489660,55.605,91.6855 +489661,51.694,96.1016 +489662,52.556,94.6113 +489663,53.423,93.1564 +489664,54.293,91.7351 +489665,50.302,96.0599 +489666,51.191,94.6014 +489667,52.084,93.1773 +489668,52.981,91.7857 +489669,48.911,96.0172 +489670,49.827,94.5911 +489671,50.746,93.1984 +489672,51.668,91.8374 +489673,47.521,95.9732 +489674,48.462,94.5803 +489675,49.407,93.2198 +489676,50.355,91.8901 +489677,46.132,95.9283 +489678,47.098,94.5692 +489679,48.068,93.2415 +489680,49.041,91.9438 +489681,44.743,95.8822 +489682,45.734,94.5577 +489683,46.728,93.2635 +489684,47.725,91.9985 +489685,43.356,95.8351 +489686,44.371,94.5457 +489687,45.389,93.2857 +489688,46.409,92.0541 +489689,41.969,95.787 +489690,43.007,94.5334 +489691,44.049,93.3082 +489692,45.093,92.1106 +489693,40.583,95.738 +489694,41.644,94.5207 +489695,42.709,93.331 +489696,43.775,92.168 +489697,39.198,95.6879 +489698,40.282,94.5077 +489699,41.368,93.354 +489700,42.456,92.2263 +489701,37.814,95.637 +489702,38.919,94.4943 +489703,40.027,93.3773 +489704,41.137,92.2854 +489705,36.431,95.5852 +489706,37.557,94.4806 +489707,38.686,93.4008 +489708,39.816,92.3453 +489709,35.048,95.5325 +489710,36.195,94.4665 +489711,37.344,93.4245 +489712,38.495,92.406 +489713,33.667,95.479 +489714,34.834,94.4521 +489715,36.002,93.4484 +489716,37.172,92.4675 +489717,32.287,95.4247 +489718,33.473,94.4374 +489719,34.66,93.4725 +489720,35.849,92.5297 +489721,30.908,95.3696 +489722,32.112,94.4224 +489723,33.318,93.4968 +489724,34.525,92.5927 +489725,29.529,95.3138 +489726,30.751,94.4071 +489727,31.975,93.5212 +489728,33.199,92.6563 +489729,28.152,95.2573 +489730,29.391,94.3915 +489731,30.631,93.5459 +489732,31.873,92.7205 +489733,26.776,95.2001 +489734,28.031,94.3756 +489735,29.288,93.5707 +489736,30.546,92.7854 +489737,25.401,95.1422 +489738,26.671,94.3595 +489739,27.944,93.5956 +489740,29.217,92.8509 +489741,24.027,95.0838 +489742,25.312,94.3431 +489743,26.6,93.6207 +489744,27.888,92.9169 +489745,22.654,95.0247 +489746,23.953,94.3265 +489747,25.255,93.646 +489748,26.557,92.9835 +489749,21.282,94.9652 +489750,22.595,94.3096 +489751,23.91,93.6713 +489752,25.225,93.0505 +489753,19.911,94.9051 +489754,21.237,94.2925 +489755,22.564,93.6968 +489756,23.892,93.1181 +489757,18.541,94.8445 +489758,19.879,94.2752 +489759,21.219,93.7223 +489760,22.559,93.186 +489761,17.173,94.7835 +489762,18.522,94.2578 +489763,19.872,93.7479 +489764,21.224,93.2544 +489765,15.805,94.7221 +489766,17.165,94.2401 +489767,18.526,93.7737 +489768,19.888,93.3232 +489769,14.439,94.6603 +489770,15.808,94.2222 +489771,17.179,93.7994 +489772,18.55,93.3923 +489773,13.074,94.5982 +489774,14.452,94.2042 +489775,15.831,93.8253 +489776,17.212,93.4617 +489777,11.71,94.5358 +489778,13.096,94.186 +489779,14.484,93.8511 +489780,15.872,93.5314 +489781,10.347,94.473 +489782,11.74,94.1677 +489783,13.136,93.877 +489784,14.532,93.6013 +489785,8.9855,94.4101 +489786,10.385,94.1492 +489787,11.787,93.903 +489788,13.19,93.6715 +489789,7.6249,94.3469 +489790,9.0302,94.1307 +489791,10.438,93.9289 +489792,11.847,93.7418 +489793,6.2656,94.2835 +489794,7.6758,94.112 +489795,9.0887,93.9548 +489796,10.503,93.8123 +489797,4.9074,94.22 +489798,6.3218,94.0932 +489799,7.739,93.9808 +489800,9.1574,93.8829 +489801,3.5504,94.1564 +489802,4.9681,94.0743 +489803,6.3889,94.0066 +489804,7.8109,93.9536 +489805,2.1945,94.0927 +489806,3.6149,94.0554 +489807,5.0383,94.0325 +489808,6.4632,94.0243 +489809,0.83987,94.029 +489810,2.262,94.0364 +489811,3.6874,94.0583 +489812,5.1144,94.0951 +489813,359.49,93.9653 +489814,0.90954,94.0173 +489815,2.3361,94.0841 +489816,3.7643,94.1658 +489817,358.13,93.9016 +489818,359.56,93.9982 +489819,0.98432,94.1097 +489820,2.4131,94.2364 +489821,356.78,93.8379 +489822,358.21,93.979 +489823,359.63,94.1353 +489824,1.0606,94.307 +489825,355.43,93.7744 +489826,356.85,93.9599 +489827,358.28,94.1609 +489828,359.71,94.3775 +489829,354.08,93.7109 +489830,355.5,93.9407 +489831,356.93,94.1863 +489832,358.35,94.4477 +489833,352.74,93.6477 +489834,354.15,93.9215 +489835,355.57,94.2115 +489836,357,94.5178 +489837,351.39,93.5846 +489838,352.8,93.9024 +489839,354.22,94.2367 +489840,355.64,94.5877 +489841,350.04,93.5217 +489842,351.45,93.8832 +489843,352.87,94.2617 +489844,354.28,94.6573 +489845,348.7,93.4591 +489846,350.1,93.8641 +489847,351.51,94.2866 +489848,352.92,94.7266 +489849,347.36,93.3968 +489850,348.75,93.8451 +489851,350.16,94.3113 +489852,351.56,94.7956 +489853,346.02,93.3348 +489854,347.41,93.8261 +489855,348.8,94.3358 +489856,350.2,94.8642 +489857,344.68,93.2732 +489858,346.06,93.8072 +489859,347.44,94.3602 +489860,348.84,94.9325 +489861,343.34,93.2119 +489862,344.71,93.7883 +489863,346.09,94.3844 +489864,347.47,95.0003 +489865,342,93.1511 +489866,343.36,93.7696 +489867,344.73,94.4083 +489868,346.11,95.0676 +489869,340.66,93.0907 +489870,342.02,93.7509 +489871,343.38,94.432 +489872,344.74,95.1344 +489873,339.32,93.0308 +489874,340.67,93.7324 +489875,342.02,94.4555 +489876,343.37,95.2007 +489877,337.99,92.9714 +489878,339.32,93.714 +489879,340.66,94.4788 +489880,342,95.2664 +489881,336.66,92.9125 +489882,337.98,93.6957 +489883,339.3,94.5018 +489884,340.63,95.3316 +489885,335.32,92.8542 +489886,336.63,93.6775 +489887,337.94,94.5246 +489888,339.26,95.3961 +489889,333.99,92.7965 +489890,335.29,93.6595 +489891,336.59,94.5471 +489892,337.89,95.4599 +489893,332.66,92.7394 +489894,333.94,93.6417 +489895,335.23,94.5693 +489896,336.52,95.523 +489897,331.33,92.683 +489898,332.6,93.624 +489899,333.87,94.5912 +489900,335.14,95.5854 +489901,330,92.6273 +489902,331.25,93.6066 +489903,332.51,94.6128 +489904,333.77,95.6471 +489905,328.67,92.5723 +489906,329.91,93.5893 +489907,331.15,94.6341 +489908,332.39,95.7079 +489909,327.35,92.518 +489910,328.56,93.5722 +489911,329.79,94.6551 +489912,331.01,95.768 +489913,326.02,92.4645 +489914,327.22,93.5553 +489915,328.43,94.6758 +489916,329.64,95.8271 +489917,324.7,92.4117 +489918,325.88,93.5387 +489919,327.06,94.6961 +489920,328.26,95.8854 +489921,323.37,92.3598 +489922,324.54,93.5223 +489923,325.7,94.716 +489924,326.88,95.9428 +489925,322.05,92.3088 +489926,323.19,93.5061 +489927,324.34,94.7356 +489928,325.49,95.9992 +489929,320.73,92.2586 +489930,321.85,93.4902 +489931,322.98,94.7548 +489932,324.11,96.0547 +489933,319.41,92.2093 +489934,320.51,93.4745 +489935,321.62,94.7737 +489936,322.73,96.1091 +489937,318.09,92.1609 +489938,319.17,93.4591 +489939,320.25,94.7922 +489940,321.34,96.1625 +489941,316.77,92.1135 +489942,317.83,93.444 +489943,318.89,94.8102 +489944,319.96,96.2149 +489945,315.45,92.067 +489946,316.49,93.4291 +489947,317.53,94.8279 +489948,318.57,96.2661 +489949,314.13,92.0216 +489950,315.15,93.4145 +489951,316.16,94.8451 +489952,317.19,96.3163 +489953,312.82,91.9771 +489954,313.81,93.4003 +489955,314.8,94.8619 +489956,315.8,96.3653 +489957,311.5,91.9337 +489958,312.47,93.3863 +489959,313.43,94.8783 +489960,314.41,96.4131 +489961,310.19,91.8913 +489962,311.13,93.3727 +489963,312.07,94.8943 +489964,313.02,96.4597 +489965,308.87,91.85 +489966,309.79,93.3593 +489967,310.71,94.9098 +489968,311.63,96.5052 +489969,307.56,91.8098 +489970,308.45,93.3463 +489971,309.34,94.9248 +489972,310.24,96.5493 +489973,306.25,91.7708 +489974,307.11,93.3337 +489975,307.97,94.9394 +489976,308.85,96.5922 +489977,304.93,91.7328 +489978,305.77,93.3213 +489979,306.61,94.9535 +489980,307.45,96.6339 +489981,303.62,91.6961 +489982,304.43,93.3093 +489983,305.24,94.9672 +489984,306.06,96.6742 +489985,302.31,91.6604 +489986,303.09,93.2977 +489987,303.88,94.9803 +489988,304.67,96.7131 +489989,301,91.626 +489990,301.75,93.2865 +489991,302.51,94.993 +489992,303.27,96.7508 +489993,299.69,91.5928 +489994,300.42,93.2756 +489995,301.14,95.0052 +489996,301.88,96.787 +489997,298.38,91.5608 +489998,299.08,93.265 +489999,299.78,95.0169 +490000,300.48,96.8218 +490001,297.08,91.5301 +490002,297.74,93.2549 +490003,298.41,95.028 +490004,299.08,96.8553 +490005,295.77,91.5006 +490006,296.4,93.2451 +490007,297.04,95.0387 +490008,297.69,96.8873 +490009,294.46,91.4724 +490010,295.07,93.2357 +490011,295.68,95.0488 +490012,296.29,96.9178 +490013,293.15,91.4454 +490014,293.73,93.2267 +490015,294.31,95.0585 +490016,294.89,96.9469 +490017,291.85,91.4197 +490018,292.39,93.2181 +490019,292.94,95.0675 +490020,293.49,96.9745 +490021,290.54,91.3954 +490022,291.06,93.2099 +490023,291.57,95.0761 +490024,292.09,97.0006 +490025,289.24,91.3724 +490026,289.72,93.2021 +490027,290.21,95.0841 +490028,290.69,97.0252 +490029,287.93,91.3507 +490030,288.38,93.1947 +490031,288.84,95.0916 +490032,289.29,97.0482 +490033,286.63,91.3303 +490034,287.05,93.1878 +490035,287.47,95.0985 +490036,287.89,97.0697 +490037,285.32,91.3113 +490038,285.71,93.1812 +490039,286.1,95.1049 +490040,286.49,97.0897 +490041,284.02,91.2936 +490042,284.38,93.1751 +490043,284.73,95.1107 +490044,285.09,97.1081 +490045,282.72,91.2773 +490046,283.04,93.1694 +490047,283.37,95.116 +490048,283.69,97.1249 +490049,281.41,91.2624 +490050,281.71,93.1641 +490051,282,95.1207 +490052,282.29,97.1401 +490053,280.11,91.2489 +490054,280.37,93.1592 +490055,280.63,95.1249 +490056,280.89,97.1538 +490057,278.81,91.2367 +490058,279.03,93.1548 +490059,279.26,95.1285 +490060,279.49,97.1658 +490061,277.51,91.226 +490062,277.7,93.1508 +490063,277.89,95.1315 +490064,278.08,97.1763 +490065,276.2,91.2166 +490066,276.36,93.1472 +490067,276.52,95.134 +490068,276.68,97.1851 +490069,274.9,91.2086 +490070,275.03,93.144 +490071,275.15,95.1359 +490072,275.28,97.1923 +490073,273.6,91.2021 +490074,273.69,93.1413 +490075,273.78,95.1372 +490076,273.88,97.1979 +490077,272.3,91.1969 +490078,272.36,93.1391 +490079,272.42,95.138 +490080,272.47,97.2018 +490081,270.99,91.1932 +490082,271.02,93.1372 +490083,271.05,95.1381 +490084,271.07,97.2041 +490085,269.69,91.1909 +490086,269.69,93.1359 +490087,269.68,95.1377 +490088,269.67,97.2048 +490089,268.39,91.1899 +490090,268.35,93.1349 +490091,268.31,95.1368 +490092,268.26,97.2039 +490093,267.09,91.1904 +490094,267.02,93.1344 +490095,266.94,95.1352 +490096,266.86,97.2013 +490097,265.79,91.1923 +490098,265.68,93.1343 +490099,265.57,95.1331 +490100,265.46,97.1971 +490101,264.48,91.1956 +490102,264.34,93.1347 +490103,264.2,95.1305 +490104,264.06,97.1913 +490105,263.18,91.2003 +490106,263.01,93.1354 +490107,262.83,95.1272 +490108,262.65,97.1838 +490109,261.88,91.2065 +490110,261.67,93.1367 +490111,261.46,95.1234 +490112,261.25,97.1747 +490113,260.58,91.214 +490114,260.34,93.1383 +490115,260.1,95.119 +490116,259.85,97.164 +490117,259.27,91.2229 +490118,259,93.1404 +490119,258.73,95.114 +490120,258.45,97.1517 +490121,257.97,91.2332 +490122,257.67,93.143 +490123,257.36,95.1085 +490124,257.05,97.1378 +490125,256.67,91.2449 +490126,256.33,93.1459 +490127,255.99,95.1024 +490128,255.64,97.1223 +490129,255.36,91.258 +490130,255,93.1493 +490131,254.62,95.0958 +490132,254.24,97.1051 +490133,254.06,91.2724 +490134,253.66,93.1531 +490135,253.25,95.0886 +490136,252.84,97.0864 +490137,252.76,91.2882 +490138,252.32,93.1573 +490139,251.89,95.0808 +490140,251.44,97.0662 +490141,251.45,91.3054 +490142,250.99,93.162 +490143,250.52,95.0725 +490144,250.04,97.0443 +490145,250.15,91.3239 +490146,249.65,93.167 +490147,249.15,95.0636 +490148,248.64,97.0209 +490149,248.84,91.3437 +490150,248.31,93.1725 +490151,247.78,95.0542 +490152,247.24,96.996 +490153,247.54,91.3649 +490154,246.98,93.1784 +490155,246.41,95.0443 +490156,245.84,96.9695 +490157,246.23,91.3873 +490158,245.64,93.1846 +490159,245.05,95.0338 +490160,244.45,96.9416 +490161,244.92,91.4111 +490162,244.3,93.1913 +490163,243.68,95.0228 +490164,243.05,96.9121 +490165,243.62,91.4362 +490166,242.97,93.1984 +490167,242.31,95.0113 +490168,241.65,96.8811 +490169,242.31,91.4625 +490170,241.63,93.2059 +490171,240.95,94.9992 +490172,240.25,96.8487 +490173,241,91.4902 +490174,240.29,93.2137 +490175,239.58,94.9866 +490176,238.86,96.8148 +490177,239.69,91.519 +490178,238.96,93.222 +490179,238.21,94.9735 +490180,237.46,96.7795 +490181,238.38,91.5491 +490182,237.62,93.2306 +490183,236.85,94.9599 +490184,236.07,96.7428 +490185,237.07,91.5804 +490186,236.28,93.2396 +490187,235.48,94.9458 +490188,234.67,96.7047 +490189,235.76,91.613 +490190,234.94,93.2489 +490191,234.11,94.9313 +490192,233.28,96.6652 +490193,234.45,91.6467 +490194,233.6,93.2586 +490195,232.75,94.9162 +490196,231.89,96.6243 +490197,233.14,91.6815 +490198,232.26,93.2687 +490199,231.38,94.9006 +490200,230.49,96.5821 +490201,231.83,91.7176 +490202,230.93,93.2791 +490203,230.02,94.8846 +490204,229.1,96.5386 +490205,230.51,91.7547 +490206,229.59,93.2898 +490207,228.65,94.8681 +490208,227.71,96.4939 +490209,229.2,91.793 +490210,228.25,93.3009 +490211,227.29,94.8511 +490212,226.32,96.4478 +490213,227.88,91.8324 +490214,226.91,93.3123 +490215,225.92,94.8337 +490216,224.93,96.4005 +490217,226.57,91.8728 +490218,225.57,93.324 +490219,224.56,94.8159 +490220,223.54,96.352 +490221,225.25,91.9143 +490222,224.23,93.3361 +490223,223.2,94.7976 +490224,222.16,96.3023 +490225,223.93,91.9568 +490226,222.89,93.3484 +490227,221.83,94.7788 +490228,220.77,96.2514 +490229,222.62,92.0003 +490230,221.55,93.361 +490231,220.47,94.7597 +490232,219.38,96.1994 +490233,221.3,92.0448 +490234,220.21,93.374 +490235,219.11,94.7401 +490236,218,96.1463 +490237,219.98,92.0903 +490238,218.86,93.3872 +490239,217.74,94.7202 +490240,216.62,96.092 +490241,218.66,92.1367 +490242,217.52,93.4006 +490243,216.38,94.6998 +490244,215.23,96.0368 +490245,217.33,92.184 +490246,216.18,93.4144 +490247,215.02,94.6791 +490248,213.85,95.9804 +490249,216.01,92.2322 +490250,214.84,93.4284 +490251,213.66,94.658 +490252,212.47,95.9231 +490253,214.69,92.2813 +490254,213.5,93.4426 +490255,212.3,94.6365 +490256,211.09,95.8648 +490257,213.36,92.3312 +490258,212.15,93.4571 +490259,210.94,94.6146 +490260,209.71,95.8056 +490261,212.04,92.382 +490262,210.81,93.4718 +490263,209.58,94.5924 +490264,208.33,95.7455 +490265,210.71,92.4335 +490266,209.47,93.4868 +490267,208.22,94.5699 +490268,206.96,95.6844 +490269,209.38,92.4858 +490270,208.12,93.5019 +490271,206.86,94.547 +490272,205.58,95.6225 +490273,208.06,92.5388 +490274,206.78,93.5173 +490275,205.5,94.5238 +490276,204.21,95.5598 +490277,206.73,92.5925 +490278,205.44,93.5328 +490279,204.14,94.5004 +490280,202.83,95.4963 +490281,205.39,92.6469 +490282,204.09,93.5485 +490283,202.78,94.4766 +490284,201.46,95.4321 +490285,204.06,92.702 +490286,202.75,93.5644 +490287,201.42,94.4525 +490288,200.09,95.3671 +490289,202.73,92.7577 +490290,201.4,93.5805 +490291,200.06,94.4281 +490292,198.72,95.3014 +490293,201.4,92.8139 +490294,200.05,93.5967 +490295,198.7,94.4035 +490296,197.35,95.2351 +490297,200.06,92.8708 +490298,198.71,93.613 +490299,197.35,94.3786 +490300,195.98,95.1681 +490301,198.73,92.9281 +490302,197.36,93.6295 +490303,195.99,94.3534 +490304,194.61,95.1005 +490305,197.39,92.986 +490306,196.01,93.6461 +490307,194.63,94.3281 +490308,193.25,95.0324 +490309,196.05,93.0443 +490310,194.67,93.6628 +490311,193.28,94.3025 +490312,191.88,94.9637 +490313,194.71,93.1031 +490314,193.32,93.6796 +490315,191.92,94.2767 +490316,190.52,94.8946 +490317,193.37,93.1623 +490318,191.97,93.6965 +490319,190.57,94.2506 +490320,189.16,94.8249 +490321,192.03,93.2218 +490322,190.62,93.7135 +490323,189.21,94.2244 +490324,187.8,94.7549 +490325,190.68,93.2818 +490326,189.27,93.7306 +490327,187.86,94.198 +490328,186.44,94.6844 +490329,189.34,93.342 +490330,187.92,93.7477 +490331,186.5,94.1715 +490332,185.08,94.6136 +490333,188,93.4025 +490334,186.58,93.7648 +490335,185.15,94.1447 +490336,183.72,94.5425 +490337,186.65,93.4633 +490338,185.23,93.782 +490339,183.8,94.1179 +490340,182.36,94.4711 +490341,185.3,93.5243 +490342,183.88,93.7992 +490343,182.44,94.0909 +490344,181.01,94.3994 +490345,183.95,93.5855 +490346,182.52,93.8165 +490347,181.09,94.0637 +490348,179.65,94.3275 +490349,182.6,93.6468 +490350,181.17,93.8337 +490351,179.74,94.0365 +490352,178.3,94.2554 +490353,181.25,93.7082 +490354,179.82,93.8509 +490355,178.39,94.0091 +490356,176.95,94.1832 +490357,179.9,93.7698 +490358,178.47,93.8681 +490359,177.04,93.9817 +490360,175.6,94.1108 +490361,178.55,93.8314 +490362,177.12,93.8853 +490363,175.68,93.9542 +490364,174.25,94.0383 +490365,177.19,93.893 +490366,175.77,93.9024 +490367,174.33,93.9266 +490368,172.9,93.9658 +490369,175.84,93.9546 +490370,174.41,93.9195 +490371,172.98,93.899 +490372,171.55,93.8933 +490373,174.48,94.0162 +490374,173.06,93.9365 +490375,171.63,93.8713 +490376,170.21,93.8208 +490377,173.12,94.0776 +490378,171.71,93.9534 +490379,170.29,93.8436 +490380,168.86,93.7484 +490381,171.76,94.139 +490382,170.35,93.9703 +490383,168.94,93.8158 +490384,167.52,93.676 +490385,170.4,94.2002 +490386,169,93.987 +490387,167.59,93.7881 +490388,166.18,93.6037 +490389,169.04,94.2613 +490390,167.64,94.0037 +490391,166.24,93.7603 +490392,164.84,93.5316 +490393,167.68,94.3221 +490394,166.29,94.0202 +490395,164.89,93.7326 +490396,163.5,93.4597 +490397,166.31,94.3827 +490398,164.93,94.0366 +490399,163.55,93.7049 +490400,162.16,93.388 +490401,164.95,94.443 +490402,163.57,94.0528 +490403,162.2,93.6772 +490404,160.82,93.3166 +490405,163.58,94.503 +490406,162.22,94.0689 +490407,160.85,93.6495 +490408,159.48,93.2454 +490409,162.21,94.5627 +490410,160.86,94.0848 +490411,159.51,93.622 +490412,158.15,93.1746 +490413,160.84,94.622 +490414,159.5,94.1005 +490415,158.16,93.5944 +490416,156.81,93.1041 +490417,159.47,94.6808 +490418,158.15,94.1161 +490419,156.82,93.567 +490420,155.48,93.034 +490421,158.1,94.7393 +490422,156.79,94.1315 +490423,155.47,93.5397 +490424,154.15,92.9643 +490425,156.73,94.7972 +490426,155.43,94.1466 +490427,154.13,93.5124 +490428,152.82,92.895 +490429,155.36,94.8546 +490430,154.07,94.1615 +490431,152.78,93.4853 +490432,151.49,92.8263 +490433,153.99,94.9115 +490434,152.71,94.1762 +490435,151.44,93.4583 +490436,150.16,92.758 +490437,152.61,94.9678 +490438,151.35,94.1907 +490439,150.09,93.4314 +490440,148.83,92.6903 +490441,151.23,95.0235 +490442,149.99,94.2049 +490443,148.75,93.4046 +490444,147.51,92.6231 +490445,149.86,95.0786 +490446,148.63,94.2188 +490447,147.41,93.378 +490448,146.18,92.5565 +490449,148.48,95.133 +490450,147.27,94.2325 +490451,146.07,93.3516 +490452,144.86,92.4906 +490453,147.1,95.1867 +490454,145.91,94.2459 +490455,144.72,93.3254 +490456,143.53,92.4253 +490457,145.72,95.2396 +490458,144.55,94.259 +490459,143.38,93.2993 +490460,142.21,92.3607 +490461,144.34,95.2918 +490462,143.19,94.2717 +490463,142.04,93.2734 +490464,140.89,92.2968 +490465,142.96,95.3432 +490466,141.83,94.2842 +490467,140.7,93.2477 +490468,139.57,92.2336 +490469,141.57,95.3937 +490470,140.47,94.2964 +490471,139.36,93.2223 +490472,138.25,92.1712 +490473,140.19,95.4434 +490474,139.11,94.3082 +490475,138.02,93.197 +490476,136.93,92.1096 +490477,138.8,95.4923 +490478,137.74,94.3197 +490479,136.68,93.172 +490480,135.61,92.0489 +490481,137.42,95.5402 +490482,136.38,94.3308 +490483,135.34,93.1472 +490484,134.3,91.9889 +490485,136.03,95.5871 +490486,135.02,94.3416 +490487,134,93.1227 +490488,132.98,91.9299 +490489,134.64,95.6331 +490490,133.66,94.352 +490491,132.66,93.0984 +490492,131.66,91.8717 +490493,133.25,95.6781 +490494,132.29,94.362 +490495,131.32,93.0744 +490496,130.35,91.8145 +490497,131.87,95.7221 +490498,130.93,94.3716 +490499,129.99,93.0507 +490500,129.04,91.7582 +490501,130.48,95.765 +490502,129.56,94.3809 +490503,128.65,93.0272 +490504,127.72,91.7029 +490505,129.08,95.8068 +490506,128.2,94.3897 +490507,127.31,93.004 +490508,126.41,91.6485 +490509,127.69,95.8475 +490510,126.84,94.3981 +490511,125.97,92.9812 +490512,125.1,91.5952 +490513,126.3,95.8871 +490514,125.47,94.4061 +490515,124.63,92.9586 +490516,123.79,91.5429 +490517,124.91,95.9255 +490518,124.11,94.4137 +490519,123.3,92.9364 +490520,122.48,91.4917 +490521,123.51,95.9628 +490522,122.74,94.4208 +490523,121.96,92.9144 +490524,121.17,91.4416 +490525,122.12,95.9988 +490526,121.38,94.4275 +490527,120.62,92.8928 +490528,119.86,91.3925 +490529,120.72,96.0336 +490530,120.01,94.4338 +490531,119.29,92.8716 +490532,118.56,91.3446 +490533,119.33,96.0671 +490534,118.64,94.4396 +490535,117.95,92.8507 +490536,117.25,91.2978 +490537,117.93,96.0994 +490538,117.28,94.4449 +490539,116.62,92.8301 +490540,115.94,91.2522 +490541,116.54,96.1304 +490542,115.91,94.4497 +490543,115.28,92.8099 +490544,114.64,91.2077 +490545,115.14,96.16 +490546,114.55,94.4541 +490547,113.94,92.79 +490548,113.33,91.1644 +490549,113.74,96.1884 +490550,113.18,94.458 +490551,112.61,92.7705 +490552,112.03,91.1224 +490553,112.34,96.2153 +490554,111.81,94.4614 +490555,111.27,92.7514 +490556,110.72,91.0815 +490557,110.94,96.2409 +490558,110.45,94.4643 +490559,109.94,92.7326 +490560,109.42,91.0419 +490561,109.54,96.2651 +490562,109.08,94.4667 +490563,108.6,92.7143 +490564,108.12,91.0035 +490565,108.14,96.2879 +490566,107.71,94.4687 +490567,107.27,92.6963 +490568,106.81,90.96646 +490569,106.74,96.3092 +490570,106.35,94.4701 +490571,105.93,92.6787 +490572,105.51,90.93065 +490573,105.34,96.3291 +490574,104.98,94.4709 +490575,104.6,92.6615 +490576,104.21,90.89614 +490577,103.94,96.3476 +490578,103.61,94.4713 +490579,103.27,92.6447 +490580,102.91,90.86293 +490581,102.54,96.3645 +490582,102.24,94.4711 +490583,101.93,92.6283 +490584,101.61,90.83103 +490585,101.14,96.38 +490586,100.88,94.4704 +490587,100.6,92.6124 +490588,100.31,90.80046 +490589,99.738,96.394 +490590,99.509,94.4692 +490591,99.264,92.5968 +490592,99.006,90.77123 +490593,98.336,96.4064 +490594,98.141,94.4674 +490595,97.93,92.5817 +490596,97.706,90.74334 +490597,96.934,96.4173 +490598,96.773,94.4651 +490599,96.597,92.5669 +490600,96.405,90.71681 +490601,95.532,96.4267 +490602,95.406,94.4623 +490603,95.263,92.5526 +490604,95.105,90.69164 +490605,94.13,96.4346 +490606,94.038,94.4589 +490607,93.93,92.5387 +490608,93.806,90.66784 +490609,92.727,96.4409 +490610,92.671,94.455 +490611,92.596,92.5253 +490612,92.506,90.64542 +490613,91.325,96.4456 +490614,91.303,94.4505 +490615,91.263,92.5123 +490616,91.207,90.62437 +490617,89.922,96.4487 +490618,89.935,94.4454 +490619,89.929,92.4997 +490620,89.907,90.60472 +490621,88.52,96.4503 +490622,88.567,94.4399 +490623,88.596,92.4875 +490624,88.608,90.58645 +490625,87.117,96.4503 +490626,87.2,94.4337 +490627,87.263,92.4758 +490628,87.309,90.56959 +490629,85.715,96.4487 +490630,85.832,94.427 +490631,85.929,92.4645 +490632,86.009,90.55412 +490633,84.312,96.4455 +490634,84.465,94.4197 +490635,84.596,92.4537 +490636,84.71,90.54005 +490637,82.91,96.4407 +490638,83.097,94.4119 +490639,83.263,92.4433 +490640,83.411,90.52738 +490641,81.508,96.4343 +490642,81.73,94.4035 +490643,81.93,92.4333 +490644,82.111,90.51611 +490645,80.106,96.4263 +490646,80.362,94.3946 +490647,80.596,92.4237 +490648,80.812,90.50625 +490649,78.704,96.4167 +490650,78.995,94.3851 +490651,79.263,92.4147 +490652,79.512,90.4978 +490653,77.303,96.4055 +490654,77.627,94.375 +490655,77.93,92.406 +490656,78.213,90.49074 +490657,75.901,96.3926 +490658,76.26,94.3644 +490659,76.596,92.3978 +490660,76.913,90.48508 +490661,74.5,96.3782 +490662,74.893,94.3532 +490663,75.263,92.39 +490664,75.612,90.48083 +490665,73.099,96.3622 +490666,73.526,94.3415 +490667,73.929,92.3826 +490668,74.312,90.47796 +490669,71.699,96.3447 +490670,72.159,94.3292 +490671,72.596,92.3757 +490672,73.012,90.47649 +490673,70.299,96.3255 +490674,70.793,94.3164 +490675,71.262,92.3693 +490676,71.711,90.4764 +490677,68.899,96.3047 +490678,69.426,94.303 +490679,69.928,92.3632 +490680,70.409,90.47769 +490681,67.5,96.2824 +490682,68.06,94.289 +490683,68.594,92.3576 +490684,69.108,90.48036 +490685,66.101,96.2585 +490686,66.694,94.2745 +490687,67.26,92.3524 +490688,67.806,90.48439 +490689,64.703,96.233 +490690,65.327,94.2595 +490691,65.926,92.3476 +490692,66.504,90.48979 +490693,63.305,96.206 +490694,63.962,94.2439 +490695,64.592,92.3433 +490696,65.201,90.49653 +490697,61.908,96.1774 +490698,62.596,94.2278 +490699,63.258,92.3394 +490700,63.898,90.50462 +490701,60.511,96.1474 +490702,61.23,94.2111 +490703,61.923,92.3359 +490704,62.594,90.51404 +490705,59.115,96.1157 +490706,59.865,94.1939 +490707,60.588,92.3328 +490708,61.29,90.52479 +490709,57.72,96.0826 +490710,58.5,94.1762 +490711,59.254,92.3301 +490712,59.985,90.53685 +490713,56.325,96.048 +490714,57.135,94.158 +490715,57.919,92.3278 +490716,58.68,90.55021 +490717,54.931,96.0119 +490718,55.77,94.1392 +490719,56.584,92.3259 +490720,57.374,90.56487 +490721,53.537,95.9744 +490722,54.406,94.12 +490723,55.248,92.3244 +490724,56.068,90.5808 +490725,52.144,95.9353 +490726,53.042,94.1002 +490727,53.913,92.3234 +490728,54.761,90.59799 +490729,50.752,95.8949 +490730,51.678,94.0799 +490731,52.577,92.3227 +490732,53.454,90.61643 +490733,49.361,95.853 +490734,50.314,94.0591 +490735,51.241,92.3223 +490736,52.145,90.63611 +490737,47.97,95.8098 +490738,48.951,94.0378 +490739,49.905,92.3224 +490740,50.836,90.65701 +490741,46.58,95.7651 +490742,47.588,94.0161 +490743,48.568,92.3228 +490744,49.527,90.67911 +490745,45.191,95.7191 +490746,46.225,93.9938 +490747,47.232,92.3236 +490748,48.216,90.70241 +490749,43.803,95.6717 +490750,44.862,93.9711 +490751,45.895,92.3248 +490752,46.905,90.72687 +490753,42.416,95.6231 +490754,43.5,93.9479 +490755,44.558,92.3263 +490756,45.593,90.75249 +490757,41.03,95.5731 +490758,42.138,93.9242 +490759,43.221,92.3282 +490760,44.281,90.77924 +490761,39.644,95.5218 +490762,40.777,93.9001 +490763,41.883,92.3304 +490764,42.967,90.80711 +490765,38.26,95.4693 +490766,39.415,93.8756 +490767,40.545,92.3329 +490768,41.653,90.83608 +490769,36.876,95.4155 +490770,38.054,93.8506 +490771,39.207,92.3358 +490772,40.338,90.86612 +490773,35.494,95.3606 +490774,36.694,93.8251 +490775,37.869,92.339 +490776,39.022,90.89722 +490777,34.112,95.3044 +490778,35.333,93.7993 +490779,36.53,92.3425 +490780,37.705,90.92936 +490781,32.731,95.2471 +490782,33.973,93.773 +490783,35.191,92.3463 +490784,36.387,90.96252 +490785,31.352,95.1887 +490786,32.614,93.7463 +490787,33.852,92.3504 +490788,35.068,90.99667 +490789,29.973,95.1291 +490790,31.255,93.7192 +490791,32.512,92.3548 +490792,33.748,91.0318 +490793,28.596,95.0685 +490794,29.896,93.6917 +490795,31.172,92.3595 +490796,32.428,91.0679 +490797,27.219,95.0068 +490798,28.537,93.6639 +490799,29.832,92.3645 +490800,31.106,91.1049 +490801,25.844,94.9441 +490802,27.179,93.6356 +490803,28.491,92.3697 +490804,29.783,91.1427 +490805,24.469,94.8803 +490806,25.821,93.607 +490807,27.151,92.3752 +490808,28.46,91.1815 +490809,23.096,94.8157 +490810,24.464,93.5781 +490811,25.809,92.381 +490812,27.135,91.2211 +490813,21.724,94.75 +490814,23.107,93.5487 +490815,24.468,92.387 +490816,25.809,91.2616 +490817,20.353,94.6835 +490818,21.75,93.5191 +490819,23.126,92.3932 +490820,24.482,91.3028 +490821,18.983,94.6161 +490822,20.394,93.4891 +490823,21.784,92.3996 +490824,23.155,91.3449 +490825,17.615,94.5478 +490826,19.038,93.4588 +490827,20.441,92.4063 +490828,21.826,91.3876 +490829,16.247,94.4787 +490830,17.683,93.4282 +490831,19.099,92.4132 +490832,20.496,91.4311 +490833,14.881,94.4088 +490834,16.328,93.3973 +490835,17.755,92.4203 +490836,19.164,91.4753 +490837,13.516,94.3381 +490838,14.973,93.3661 +490839,16.412,92.4275 +490840,17.832,91.5202 +490841,12.152,94.2668 +490842,13.619,93.3346 +490843,15.068,92.4349 +490844,16.499,91.5657 +490845,10.789,94.1947 +490846,12.266,93.3029 +490847,13.724,92.4425 +490848,15.164,91.6118 +490849,9.4276,94.1219 +490850,10.912,93.2708 +490851,12.379,92.4503 +490852,13.829,91.6585 +490853,8.0673,94.0486 +490854,9.5593,93.2386 +490855,11.034,92.4582 +490856,12.492,91.7058 +490857,6.7082,93.9746 +490858,8.2069,93.2061 +490859,9.6887,92.4663 +490860,11.154,91.7535 +490861,5.3503,93.9001 +490862,6.8548,93.1734 +490863,8.3429,92.4744 +490864,9.8149,91.8018 +490865,3.9936,93.825 +490866,5.5032,93.1404 +490867,6.9968,92.4827 +490868,8.4746,91.8505 +490869,2.6382,93.7495 +490870,4.152,93.1073 +490871,5.6503,92.4911 +490872,7.1331,91.8997 +490873,1.284,93.6735 +490874,2.8013,93.074 +490875,4.3034,92.4996 +490876,5.7904,91.9493 +490877,359.93,93.597 +490878,1.4509,93.0404 +490879,2.9562,92.5082 +490880,4.4466,91.9992 +490881,358.58,93.5202 +490882,0.10106,93.0067 +490883,1.6086,92.5169 +490884,3.1016,92.0495 +490885,357.23,93.443 +490886,358.75,92.9729 +490887,0.26057,92.5256 +490888,1.7553,92.1001 +490889,355.88,93.3654 +490890,357.4,92.9389 +490891,358.91,92.5344 +490892,0.40788,92.151 +490893,354.53,93.2876 +490894,356.05,92.9047 +490895,357.56,92.5432 +490896,359.06,92.2022 +490897,353.19,93.2095 +490898,354.71,92.8705 +490899,356.21,92.5521 +490900,357.71,92.2535 +490901,351.84,93.1312 +490902,353.36,92.8361 +490903,354.86,92.561 +490904,356.36,92.3051 +490905,350.5,93.0527 +490906,352.01,92.8016 +490907,353.51,92.5699 +490908,355.01,92.3568 +490909,349.15,92.9741 +490910,350.66,92.767 +490911,352.16,92.5788 +490912,353.65,92.4086 +490913,347.81,92.8953 +490914,349.32,92.7323 +490915,350.81,92.5877 +490916,352.3,92.4605 +490917,346.47,92.8164 +490918,347.97,92.6976 +490919,349.46,92.5966 +490920,350.94,92.5125 +490921,345.13,92.7375 +490922,346.63,92.6628 +490923,348.11,92.6054 +490924,349.59,92.5645 +490925,343.79,92.6585 +490926,345.28,92.6279 +490927,346.76,92.6142 +490928,348.23,92.6165 +490929,342.46,92.5796 +490930,343.94,92.5931 +490931,345.41,92.6229 +490932,346.87,92.6685 +490933,341.12,92.5007 +490934,342.59,92.5581 +490935,344.05,92.6316 +490936,345.51,92.7204 +490937,339.79,92.4219 +490938,341.25,92.5232 +490939,342.7,92.6402 +490940,344.14,92.7722 +490941,338.45,92.3432 +490942,339.91,92.4883 +490943,341.35,92.6488 +490944,342.78,92.8239 +490945,337.12,92.2647 +490946,338.56,92.4534 +490947,340,92.6572 +490948,341.42,92.8754 +490949,335.79,92.1864 +490950,337.22,92.4185 +490951,338.64,92.6655 +490952,340.05,92.9267 +490953,334.46,92.1082 +490954,335.88,92.3836 +490955,337.29,92.6737 +490956,338.69,92.9777 +490957,333.13,92.0303 +490958,334.54,92.3488 +490959,335.93,92.6818 +490960,337.32,93.0285 +490961,331.8,91.9527 +490962,333.19,92.314 +490963,334.58,92.6897 +490964,335.95,93.079 +490965,330.48,91.8754 +490966,331.85,92.2793 +490967,333.22,92.6975 +490968,334.58,93.1292 +490969,329.15,91.7985 +490970,330.51,92.2446 +490971,331.87,92.7051 +490972,333.21,93.179 +490973,327.83,91.7219 +490974,329.17,92.2101 +490975,330.51,92.7125 +490976,331.84,93.2285 +490977,326.51,91.6458 +490978,327.83,92.1756 +490979,329.15,92.7198 +490980,330.46,93.2775 +490981,325.18,91.5701 +490982,326.49,92.1412 +490983,327.8,92.7269 +490984,329.09,93.3261 +490985,323.86,91.4948 +490986,325.16,92.107 +490987,326.44,92.7337 +490988,327.71,93.3741 +490989,322.54,91.4201 +490990,323.82,92.0729 +490991,325.08,92.7404 +490992,326.34,93.4217 +490993,321.23,91.3459 +490994,322.48,92.0389 +490995,323.72,92.7468 +490996,324.96,93.4687 +490997,319.91,91.2722 +490998,321.14,92.0051 +490999,322.37,92.753 +491000,323.58,93.5151 +491001,318.59,91.1992 +491002,319.8,91.9714 +491003,321.01,92.759 +491004,322.2,93.5609 +491005,317.28,91.1267 +491006,318.47,91.9379 +491007,319.65,92.7647 +491008,320.82,93.6061 +491009,315.96,91.055 +491010,317.13,91.9046 +491011,318.29,92.7701 +491012,319.44,93.6506 +491013,314.65,90.98386 +491014,315.79,91.8715 +491015,316.93,92.7753 +491016,318.06,93.6944 +491017,313.34,90.91347 +491018,314.46,91.8385 +491019,315.57,92.7801 +491020,316.67,93.7375 +491021,312.02,90.84381 +491022,313.12,91.8058 +491023,314.21,92.7847 +491024,315.29,93.7798 +491025,310.71,90.77492 +491026,311.79,91.7733 +491027,312.85,92.789 +491028,313.9,93.8214 +491029,309.4,90.70682 +491030,310.45,91.741 +491031,311.49,92.793 +491032,312.52,93.8621 +491033,308.09,90.63953 +491034,309.12,91.7089 +491035,310.13,92.7966 +491036,311.13,93.902 +491037,306.79,90.57309 +491038,307.78,91.6771 +491039,308.77,92.7999 +491040,309.74,93.941 +491041,305.48,90.50751 +491042,306.45,91.6456 +491043,307.41,92.8029 +491044,308.35,93.9791 +491045,304.17,90.44282 +491046,305.11,91.6143 +491047,306.05,92.8055 +491048,306.96,94.0163 +491049,302.87,90.37905 +491050,303.78,91.5832 +491051,304.68,92.8078 +491052,305.57,94.0525 +491053,301.56,90.31622 +491054,302.45,91.5525 +491055,303.32,92.8097 +491056,304.18,94.0878 +491057,300.26,90.25436 +491058,301.12,91.522 +491059,301.96,92.8113 +491060,302.79,94.122 +491061,298.96,90.19348 +491062,299.78,91.4918 +491063,300.6,92.8124 +491064,301.4,94.1552 +491065,297.65,90.13361 +491066,298.45,91.462 +491067,299.24,92.8132 +491068,300.01,94.1874 +491069,296.35,90.074762 +491070,297.12,91.4324 +491071,297.87,92.8136 +491072,298.61,94.2185 +491073,295.05,90.01697 +491074,295.79,91.4032 +491075,296.51,92.8135 +491076,297.22,94.2484 +491077,293.75,89.96025 +491078,294.46,91.3743 +491079,295.15,92.8131 +491080,295.82,94.2773 +491081,292.45,89.90462 +491082,293.12,91.3457 +491083,293.78,92.8122 +491084,294.43,94.305 +491085,291.15,89.8501 +491086,291.79,91.3174 +491087,292.42,92.811 +491088,293.03,94.3315 +491089,289.85,89.79671 +491090,290.46,91.2895 +491091,291.06,92.8092 +491092,291.63,94.3568 +491093,288.55,89.74447 +491094,289.13,91.262 +491095,289.69,92.8071 +491096,290.24,94.381 +491097,287.26,89.69339 +491098,287.8,91.2348 +491099,288.33,92.8045 +491100,288.84,94.4038 +491101,285.96,89.64349 +491102,286.47,91.2079 +491103,286.96,92.8014 +491104,287.44,94.4255 +491105,284.66,89.59479 +491106,285.14,91.1815 +491107,285.6,92.7979 +491108,286.04,94.4458 +491109,283.37,89.54731 +491110,283.81,91.1554 +491111,284.24,92.794 +491112,284.64,94.4649 +491113,282.07,89.50105 +491114,282.48,91.1297 +491115,282.87,92.7895 +491116,283.24,94.4826 +491117,280.77,89.45603 +491118,281.15,91.1043 +491119,281.51,92.7846 +491120,281.84,94.499 +491121,279.48,89.41227 +491122,279.82,91.0794 +491123,280.14,92.7792 +491124,280.44,94.5141 +491125,278.18,89.36978 +491126,278.49,91.0548 +491127,278.78,92.7734 +491128,279.04,94.5278 +491129,276.89,89.32857 +491130,277.16,91.0307 +491131,277.41,92.767 +491132,277.64,94.5401 +491133,275.6,89.28865 +491134,275.83,91.007 +491135,276.05,92.7602 +491136,276.24,94.5511 +491137,274.3,89.25003 +491138,274.5,90.98363 +491139,274.68,92.7528 +491140,274.84,94.5606 +491141,273.01,89.21273 +491142,273.18,90.96071 +491143,273.32,92.745 +491144,273.44,94.5687 +491145,271.72,89.17675 +491146,271.85,90.9382 +491147,271.96,92.7366 +491148,272.04,94.5754 +491149,270.42,89.14211 +491150,270.52,90.91611 +491151,270.59,92.7278 +491152,270.63,94.5806 +491153,269.13,89.1088 +491154,269.19,90.89444 +491155,269.23,92.7184 +491156,269.23,94.5844 +491157,267.84,89.07685 +491158,267.86,90.87319 +491159,267.86,92.7085 +491160,267.83,94.5867 +491161,266.54,89.04624 +491162,266.53,90.85238 +491163,266.5,92.6981 +491164,266.43,94.5876 +491165,265.25,89.017 +491166,265.2,90.83199 +491167,265.13,92.6872 +491168,265.03,94.5869 +491169,263.96,88.9891 +491170,263.88,90.81203 +491171,263.77,92.6757 +491172,263.63,94.5848 +491173,262.67,88.9626 +491174,262.55,90.7925 +491175,262.4,92.6638 +491176,262.22,94.5811 +491177,261.37,88.9375 +491178,261.22,90.77341 +491179,261.04,92.6513 +491180,260.82,94.576 +491181,260.08,88.9137 +491182,259.89,90.75476 +491183,259.67,92.6383 +491184,259.42,94.5693 +491185,258.79,88.8914 +491186,258.56,90.73654 +491187,258.31,92.6247 +491188,258.02,94.5611 +491189,257.49,88.8704 +491190,257.23,90.71876 +491191,256.94,92.6107 +491192,256.62,94.5514 +491193,256.2,88.8508 +491194,255.91,90.70141 +491195,255.58,92.5961 +491196,255.22,94.5402 +491197,254.91,88.8326 +491198,254.58,90.68451 +491199,254.22,92.5809 +491200,253.82,94.5274 +491201,253.61,88.8157 +491202,253.25,90.66805 +491203,252.85,92.5653 +491204,252.42,94.5132 +491205,252.32,88.8003 +491206,251.92,90.65202 +491207,251.49,92.5491 +491208,251.02,94.4973 +491209,251.03,88.7862 +491210,250.59,90.63644 +491211,250.12,92.5324 +491212,249.62,94.48 +491213,249.73,88.7735 +491214,249.26,90.62129 +491215,248.76,92.5151 +491216,248.22,94.4611 +491217,248.44,88.7622 +491218,247.93,90.60658 +491219,247.4,92.4974 +491220,246.82,94.4407 +491221,247.14,88.7522 +491222,246.61,90.59231 +491223,246.03,92.4791 +491224,245.42,94.4188 +491225,245.85,88.7437 +491226,245.28,90.57847 +491227,244.67,92.4602 +491228,244.03,94.3953 +491229,244.55,88.7365 +491230,243.95,90.56507 +491231,243.31,92.4409 +491232,242.63,94.3703 +491233,243.26,88.7306 +491234,242.62,90.55209 +491235,241.94,92.421 +491236,241.23,94.3439 +491237,241.96,88.7261 +491238,241.29,90.53955 +491239,240.58,92.4006 +491240,239.84,94.3159 +491241,240.66,88.723 +491242,239.96,90.52744 +491243,239.22,92.3797 +491244,238.44,94.2864 +491245,239.37,88.7211 +491246,238.63,90.51575 +491247,237.86,92.3583 +491248,237.04,94.2554 +491249,238.07,88.7206 +491250,237.3,90.50449 +491251,236.5,92.3364 +491252,235.65,94.2229 +491253,236.77,88.7215 +491254,235.97,90.49364 +491255,235.13,92.3139 +491256,234.26,94.1889 +491257,235.47,88.7236 +491258,234.64,90.48321 +491259,233.77,92.291 +491260,232.86,94.1535 +491261,234.17,88.727 +491262,233.31,90.4732 +491263,232.41,92.2675 +491264,231.47,94.1166 +491265,232.87,88.7317 +491266,231.98,90.46359 +491267,231.05,92.2436 +491268,230.08,94.0783 +491269,231.57,88.7377 +491270,230.65,90.45439 +491271,229.69,92.2191 +491272,228.69,94.0386 +491273,230.27,88.745 +491274,229.32,90.44559 +491275,228.33,92.1942 +491276,227.3,93.9974 +491277,228.97,88.7535 +491278,227.99,90.43719 +491279,226.97,92.1688 +491280,225.91,93.9548 +491281,227.67,88.7633 +491282,226.66,90.42919 +491283,225.61,92.1429 +491284,224.52,93.9108 +491285,226.36,88.7742 +491286,225.32,90.42157 +491287,224.25,92.1165 +491288,223.13,93.8655 +491289,225.06,88.7864 +491290,223.99,90.41433 +491291,222.89,92.0897 +491292,221.75,93.8187 +491293,223.75,88.7998 +491294,222.66,90.40748 +491295,221.53,92.0623 +491296,220.36,93.7707 +491297,222.45,88.8143 +491298,221.33,90.40099 +491299,220.17,92.0346 +491300,218.98,93.7213 +491301,221.14,88.83 +491302,220,90.39488 +491303,218.82,92.0064 +491304,217.59,93.6706 +491305,219.83,88.8469 +491306,218.66,90.38913 +491307,217.46,91.9777 +491308,216.21,93.6186 +491309,218.53,88.8649 +491310,217.33,90.38373 +491311,216.1,91.9486 +491312,214.83,93.5653 +491313,217.22,88.8839 +491314,216,90.37868 +491315,214.74,91.919 +491316,213.45,93.5108 +491317,215.91,88.9041 +491318,214.66,90.37398 +491319,213.39,91.889 +491320,212.07,93.455 +491321,214.59,88.9254 +491322,213.33,90.36961 +491323,212.03,91.8587 +491324,210.69,93.3981 +491325,213.28,88.9476 +491326,212,90.36558 +491327,210.67,91.8278 +491328,209.31,93.3399 +491329,211.97,88.971 +491330,210.66,90.36187 +491331,209.32,91.7966 +491332,207.93,93.2806 +491333,210.66,88.9953 +491334,209.33,90.35847 +491335,207.96,91.765 +491336,206.56,93.2202 +491337,209.34,89.02061 +491338,207.99,90.35539 +491339,206.61,91.733 +491340,205.18,93.1586 +491341,208.03,89.0469 +491342,206.66,90.3526 +491343,205.25,91.7006 +491344,203.81,93.0959 +491345,206.71,89.07412 +491346,205.32,90.35011 +491347,203.9,91.6679 +491348,202.44,93.0322 +491349,205.39,89.10227 +491350,203.99,90.34791 +491351,202.55,91.6347 +491352,201.07,92.9674 +491353,204.07,89.13131 +491354,202.65,90.34599 +491355,201.19,91.6013 +491356,199.7,92.9016 +491357,202.75,89.16122 +491358,201.31,90.34434 +491359,199.84,91.5674 +491360,198.33,92.8349 +491361,201.43,89.19199 +491362,199.98,90.34295 +491363,198.49,91.5332 +491364,196.96,92.7671 +491365,200.11,89.22358 +491366,198.64,90.34181 +491367,197.14,91.4987 +491368,195.6,92.6984 +491369,198.78,89.25597 +491370,197.3,90.34092 +491371,195.78,91.4639 +491372,194.23,92.6289 +491373,197.46,89.28914 +491374,195.96,90.34027 +491375,194.43,91.4287 +491376,192.87,92.5584 +491377,196.13,89.32305 +491378,194.62,90.33985 +491379,193.08,91.3933 +491380,191.51,92.4871 +491381,194.81,89.35769 +491382,193.29,90.33964 +491383,191.73,91.3575 +491384,190.15,92.4149 +491385,193.48,89.39302 +491386,191.95,90.33965 +491387,190.38,91.3215 +491388,188.79,92.342 +491389,192.15,89.42903 +491390,190.61,90.33986 +491391,189.03,91.2852 +491392,187.43,92.2683 +491393,190.82,89.46568 +491394,189.27,90.34026 +491395,187.69,91.2486 +491396,186.07,92.1939 +491397,189.49,89.50294 +491398,187.93,90.34085 +491399,186.34,91.2118 +491400,184.71,92.1188 +491401,188.16,89.54079 +491402,186.59,90.3416 +491403,184.99,91.1747 +491404,183.36,92.043 +491405,186.82,89.5792 +491406,185.25,90.34253 +491407,183.64,91.1374 +491408,182.01,91.9666 +491409,185.49,89.61814 +491410,183.9,90.3436 +491411,182.29,91.0999 +491412,180.65,91.8896 +491413,184.15,89.65759 +491414,182.56,90.34482 +491415,180.95,91.0621 +491416,179.3,91.812 +491417,182.81,89.69751 +491418,181.22,90.34618 +491419,179.6,91.0242 +491420,177.95,91.7339 +491421,181.47,89.73788 +491422,179.88,90.34766 +491423,178.26,90.986 +491424,176.61,91.6552 +491425,180.13,89.77866 +491426,178.54,90.34926 +491427,176.91,90.94766 +491428,175.26,91.5761 +491429,178.79,89.81983 +491430,177.19,90.35096 +491431,175.57,90.90915 +491432,173.91,91.4965 +491433,177.45,89.86135 +491434,175.85,90.35275 +491435,174.22,90.87047 +491436,172.57,91.4165 +491437,176.11,89.903206 +491438,174.5,90.35463 +491439,172.88,90.83164 +491440,171.23,91.3362 +491441,174.76,89.945356 +491442,173.16,90.35659 +491443,171.53,90.79268 +491444,169.88,91.2555 +491445,173.41,89.987774 +491446,171.81,90.35861 +491447,170.19,90.75358 +491448,168.54,91.1745 +491449,172.07,90.030428 +491450,170.47,90.36068 +491451,168.85,90.71436 +491452,167.21,91.0932 +491453,170.72,90.073288 +491454,169.12,90.3628 +491455,167.51,90.67503 +491456,165.87,91.0117 +491457,169.37,90.11632 +491458,167.78,90.36495 +491459,166.17,90.63561 +491460,164.53,90.92992 +491461,168.02,90.1595 +491462,166.43,90.36712 +491463,164.83,90.5961 +491464,163.2,90.84801 +491465,166.66,90.2028 +491466,165.08,90.3693 +491467,163.48,90.55651 +491468,161.86,90.76595 +491469,165.31,90.24618 +491470,163.74,90.37149 +491471,162.14,90.51686 +491472,160.53,90.68378 +491473,163.95,90.28961 +491474,162.39,90.37366 +491475,160.81,90.47716 +491476,159.2,90.60153 +491477,162.6,90.33306 +491478,161.04,90.37582 +491479,159.47,90.43741 +491480,157.87,90.51925 +491481,161.24,90.37651 +491482,159.69,90.37795 +491483,158.13,90.39764 +491484,156.54,90.43695 +491485,159.88,90.41991 +491486,158.34,90.38003 +491487,156.79,90.35784 +491488,155.21,90.35468 +491489,158.52,90.46324 +491490,157,90.38207 +491491,155.45,90.31803 +491492,153.89,90.27247 +491493,157.16,90.50647 +491494,155.65,90.38404 +491495,154.11,90.27823 +491496,152.56,90.19034 +491497,155.8,90.54957 +491498,154.3,90.38594 +491499,152.78,90.23843 +491500,151.24,90.10834 +491501,154.43,90.5925 +491502,152.95,90.38776 +491503,151.44,90.19867 +491504,149.92,90.026501 +491505,153.07,90.63524 +491506,151.6,90.38949 +491507,150.11,90.15893 +491508,148.6,89.944848 +491509,151.7,90.67775 +491510,150.24,90.39111 +491511,148.77,90.11924 +491512,147.28,89.86342 +491513,150.33,90.72 +491514,148.89,90.39262 +491515,147.43,90.079607 +491516,145.96,89.78224 +491517,148.97,90.76197 +491518,147.54,90.394 +491519,146.1,90.04004 +491520,144.64,89.70135 +491521,147.6,90.80362 +491522,146.19,90.39526 +491523,144.77,90.00054962 +491524,143.33,89.62078 +491525,146.23,90.84492 +491526,144.84,90.39636 +491527,143.43,89.961148 +491528,142.01,89.54056 +491529,144.85,90.88584 +491530,143.48,90.39731 +491531,142.1,89.921844 +491532,140.7,89.46072 +491533,143.48,90.92636 +491534,142.13,90.3981 +491535,140.77,89.88265 +491536,139.38,89.3813 +491537,142.11,90.96643 +491538,140.78,90.39871 +491539,139.43,89.84357 +491540,138.07,89.30231 +491541,140.73,91.006 +491542,139.42,90.39914 +491543,138.1,89.80463 +491544,136.76,89.22381 +491545,139.36,91.0452 +491546,138.07,90.39937 +491547,136.77,89.76582 +491548,135.45,89.1458 +491549,137.98,91.0837 +491550,136.72,90.3994 +491551,135.44,89.72716 +491552,134.15,89.06833 +491553,136.6,91.1218 +491554,135.36,90.39921 +491555,134.11,89.68867 +491556,132.84,88.9914 +491557,135.22,91.1592 +491558,134.01,90.39881 +491559,132.78,89.65034 +491560,131.53,88.9151 +491561,133.84,91.196 +491562,132.65,90.39816 +491563,131.45,89.61219 +491564,130.23,88.8394 +491565,132.46,91.2322 +491566,131.3,90.39728 +491567,130.12,89.57423 +491568,128.92,88.7644 +491569,131.08,91.2677 +491570,129.94,90.39614 +491571,128.79,89.53647 +491572,127.62,88.69 +491573,129.69,91.3026 +491574,128.58,90.39474 +491575,127.46,89.49892 +491576,126.32,88.6164 +491577,128.31,91.3367 +491578,127.23,90.39307 +491579,126.13,89.46158 +491580,125.02,88.5434 +491581,126.92,91.37 +491582,125.87,90.39113 +491583,124.8,89.42447 +491584,123.72,88.4713 +491585,125.54,91.4026 +491586,124.51,90.38889 +491587,123.47,89.38759 +491588,122.42,88.3999 +491589,124.15,91.4343 +491590,123.16,90.38636 +491591,122.14,89.35096 +491592,121.12,88.3293 +491593,122.76,91.4653 +491594,121.8,90.38352 +491595,120.82,89.31458 +491596,119.82,88.2596 +491597,121.38,91.4953 +491598,120.44,90.38037 +491599,119.49,89.27846 +491600,118.52,88.1907 +491601,119.99,91.5245 +491602,119.08,90.3769 +491603,118.16,89.24262 +491604,117.23,88.1228 +491605,118.6,91.5528 +491606,117.73,90.3731 +491607,116.84,89.20704 +491608,115.93,88.0557 +491609,117.21,91.5801 +491610,116.37,90.36896 +491611,115.51,89.17176 +491612,114.64,87.9895 +491613,115.81,91.6065 +491614,115.01,90.36447 +491615,114.18,89.13677 +491616,113.34,87.9244 +491617,114.42,91.6319 +491618,113.65,90.35964 +491619,112.86,89.10208 +491620,112.05,87.8602 +491621,113.03,91.6564 +491622,112.29,90.35444 +491623,111.53,89.06769 +491624,110.76,87.797 +491625,111.64,91.6797 +491626,110.93,90.34887 +491627,110.21,89.03363 +491628,109.47,87.7348 +491629,110.24,91.7021 +491630,109.57,90.34293 +491631,108.88,88.9999 +491632,108.17,87.6736 +491633,108.85,91.7234 +491634,108.21,90.33661 +491635,107.56,88.9665 +491636,106.88,87.6135 +491637,107.45,91.7435 +491638,106.85,90.32989 +491639,106.23,88.9334 +491640,105.59,87.5545 +491641,106.06,91.7626 +491642,105.49,90.32279 +491643,104.91,88.9007 +491644,104.3,87.4966 +491645,104.66,91.7805 +491646,104.13,90.31528 +491647,103.59,88.8683 +491648,103.02,87.4399 +491649,103.26,91.7973 +491650,102.77,90.30736 +491651,102.26,88.8362 +491652,101.73,87.3842 +491653,101.87,91.8129 +491654,101.41,90.29903 +491655,100.94,88.8046 +491656,100.44,87.3297 +491657,100.47,91.8274 +491658,100.05,90.29028 +491659,99.614,88.7733 +491660,99.152,87.2764 +491661,99.07,91.8406 +491662,98.693,90.28111 +491663,98.291,88.7424 +491664,97.866,87.2242 +491665,97.672,91.8526 +491666,97.332,90.2715 +491667,96.968,88.7118 +491668,96.579,87.1733 +491669,96.273,91.8634 +491670,95.972,90.26146 +491671,95.645,88.6816 +491672,95.293,87.1236 +491673,94.874,91.8729 +491674,94.611,90.25098 +491675,94.322,88.6519 +491676,94.007,87.075 +491677,93.475,91.8811 +491678,93.251,90.24006 +491679,92.999,88.6225 +491680,92.722,87.0278 +491681,92.075,91.888 +491682,91.89,90.22868 +491683,91.677,88.5935 +491684,91.437,86.9818 +491685,90.676,91.8937 +491686,90.53,90.21685 +491687,90.354,88.5649 +491688,90.152,86.937 +491689,89.276,91.898 +491690,89.169,90.20456 +491691,89.032,88.5367 +491692,88.867,86.8935 +491693,87.876,91.901 +491694,87.808,90.19181 +491695,87.71,88.509 +491696,87.583,86.8513 +491697,86.476,91.9027 +491698,86.447,90.1786 +491699,86.387,88.4816 +491700,86.298,86.8104 +491701,85.076,91.903 +491702,85.087,90.16492 +491703,85.065,88.4547 +491704,85.014,86.7708 +491705,83.675,91.902 +491706,83.726,90.15076 +491707,83.743,88.4282 +491708,83.73,86.7325 +491709,82.275,91.8995 +491710,82.365,90.13613 +491711,82.421,88.4021 +491712,82.446,86.6956 +491713,80.875,91.8957 +491714,81.005,90.12102 +491715,81.099,88.3764 +491716,81.163,86.6599 +491717,79.475,91.8906 +491718,79.644,90.10543 +491719,79.777,88.3512 +491720,79.879,86.6256 +491721,78.075,91.884 +491722,78.283,90.089357 +491723,78.456,88.3263 +491724,78.595,86.5926 +491725,76.675,91.876 +491726,76.923,90.072801 +491727,77.134,88.302 +491728,77.311,86.561 +491729,75.275,91.8666 +491730,75.563,90.055759 +491731,75.812,88.278 +491732,76.027,86.5307 +491733,73.875,91.8557 +491734,74.202,90.038229 +491735,74.49,88.2545 +491736,74.743,86.5018 +491737,72.476,91.8435 +491738,72.842,90.02021 +491739,73.168,88.2314 +491740,73.459,86.4742 +491741,71.077,91.8298 +491742,71.482,90.0017011 +491743,71.846,88.2088 +491744,72.175,86.448 +491745,69.678,91.8147 +491746,70.122,89.982701 +491747,70.524,88.1866 +491748,70.89,86.4231 +491749,68.279,91.7982 +491750,68.762,89.963211 +491751,69.202,88.1648 +491752,69.606,86.3996 +491753,66.881,91.7802 +491754,67.402,89.943228 +491755,67.88,88.1435 +491756,68.321,86.3774 +491757,65.483,91.7608 +491758,66.043,89.922754 +491759,66.558,88.1226 +491760,67.036,86.3566 +491761,64.086,91.7399 +491762,64.683,89.901788 +491763,65.236,88.1021 +491764,65.75,86.3372 +491765,62.689,91.7176 +491766,63.324,89.88033 +491767,63.914,88.0821 +491768,64.465,86.3191 +491769,61.292,91.6939 +491770,61.965,89.85838 +491771,62.592,88.0625 +491772,63.179,86.3023 +491773,59.896,91.6688 +491774,60.606,89.83595 +491775,61.269,88.0434 +491776,61.892,86.2869 +491777,58.501,91.6422 +491778,59.247,89.81302 +491779,59.947,88.0247 +491780,60.605,86.2729 +491781,57.106,91.6141 +491782,57.889,89.78961 +491783,58.624,88.0064 +491784,59.318,86.2602 +491785,55.711,91.5847 +491786,56.531,89.76572 +491787,57.301,87.9886 +491788,58.03,86.2488 +491789,54.317,91.5538 +491790,55.173,89.74134 +491791,55.978,87.9711 +491792,56.742,86.2387 +491793,52.924,91.5215 +491794,53.815,89.71647 +491795,54.655,87.9542 +491796,55.453,86.2299 +491797,51.532,91.4878 +491798,52.457,89.69113 +491799,53.332,87.9376 +491800,54.164,86.2225 +491801,50.14,91.4527 +491802,51.1,89.66532 +491803,52.009,87.9215 +491804,52.874,86.2163 +491805,48.749,91.4162 +491806,49.743,89.63903 +491807,50.685,87.9058 +491808,51.584,86.2115 +491809,47.359,91.3783 +491810,48.386,89.61227 +491811,49.361,87.8905 +491812,50.293,86.2079 +491813,45.969,91.3391 +491814,47.03,89.58504 +491815,48.037,87.8756 +491816,49.001,86.2056 +491817,44.581,91.2984 +491818,45.673,89.55735 +491819,46.713,87.8611 +491820,47.708,86.2046 +491821,43.193,91.2564 +491822,44.317,89.5292 +491823,45.389,87.847 +491824,46.415,86.2048 +491825,41.806,91.2131 +491826,42.962,89.5006 +491827,44.064,87.8334 +491828,45.122,86.2063 +491829,40.42,91.1684 +491830,41.607,89.47154 +491831,42.74,87.8201 +491832,43.827,86.2089 +491833,39.035,91.1225 +491834,40.252,89.44204 +491835,41.415,87.8072 +491836,42.532,86.2128 +491837,37.651,91.0752 +491838,38.897,89.41209 +491839,40.089,87.7948 +491840,41.236,86.2179 +491841,36.267,91.0266 +491842,37.543,89.38171 +491843,38.764,87.7827 +491844,39.939,86.2242 +491845,34.885,90.97671 +491846,36.189,89.3509 +491847,37.438,87.771 +491848,38.641,86.2316 +491849,33.504,90.92559 +491850,34.835,89.31965 +491851,36.112,87.7596 +491852,37.342,86.2402 +491853,32.124,90.87322 +491854,33.482,89.28799 +491855,34.786,87.7486 +491856,36.043,86.2499 +491857,30.745,90.81962 +491858,32.129,89.25591 +491859,33.459,87.738 +491860,34.742,86.2608 +491861,29.367,90.76481 +491862,30.777,89.22342 +491863,32.132,87.7278 +491864,33.441,86.2727 +491865,27.99,90.70881 +491866,29.425,89.19053 +491867,30.805,87.7179 +491868,32.138,86.2858 +491869,26.614,90.65164 +491870,28.073,89.15724 +491871,29.477,87.7084 +491872,30.835,86.2999 +491873,25.239,90.59332 +491874,26.722,89.12357 +491875,28.15,87.6992 +491876,29.531,86.315 +491877,23.866,90.53386 +491878,25.371,89.0895 +491879,26.821,87.6903 +491880,28.226,86.3312 +491881,22.493,90.47329 +491882,24.02,89.05506 +491883,25.493,87.6818 +491884,26.919,86.3484 +491885,21.122,90.41163 +491886,22.67,89.02025 +491887,24.164,87.6735 +491888,25.612,86.3665 +491889,19.752,90.3489 +491890,21.321,88.9851 +491891,22.835,87.6656 +491892,24.303,86.3857 +491893,18.384,90.28513 +491894,19.972,88.9496 +491895,21.506,87.658 +491896,22.994,86.4057 +491897,17.016,90.22033 +491898,18.623,88.9137 +491899,20.176,87.6507 +491900,21.683,86.4267 +491901,15.65,90.15453 +491902,17.275,88.8775 +491903,18.846,87.6437 +491904,20.372,86.4486 +491905,14.285,90.087767 +491906,15.927,88.8409 +491907,17.515,87.637 +491908,19.059,86.4714 +491909,12.921,90.020049 +491910,14.579,88.804 +491911,16.185,87.6306 +491912,17.745,86.495 +491913,11.559,89.951407 +491914,13.232,88.7669 +491915,14.853,87.6244 +491916,16.429,86.5195 +491917,10.198,89.88187 +491918,11.886,88.7294 +491919,13.522,87.6185 +491920,15.113,86.5448 +491921,8.8384,89.81146 +491922,10.54,88.6916 +491923,12.19,87.6128 +491924,13.795,86.5708 +491925,7.48,89.7402 +491926,9.1941,88.6535 +491927,10.857,87.6074 +491928,12.477,86.5976 +491929,6.123,89.66813 +491930,7.849,88.6151 +491931,9.5248,87.6022 +491932,11.157,86.6252 +491933,4.7674,89.59526 +491934,6.5043,88.5765 +491935,8.1917,87.5972 +491936,9.8356,86.6534 +491937,3.4131,89.52164 +491938,5.1602,88.5376 +491939,6.8582,87.5925 +491940,8.5131,86.6824 +491941,2.0602,89.44728 +491942,3.8165,88.4985 +491943,5.5243,87.588 +491944,7.1895,86.712 +491945,0.70873,89.37221 +491946,2.4733,88.4591 +491947,4.1901,87.5836 +491948,5.8645,86.7422 +491949,359.36,89.29647 +491950,1.1306,88.4195 +491951,2.8554,87.5795 +491952,4.5383,86.773 +491953,358.01,89.22008 +491954,359.79,88.3796 +491955,1.5203,87.5756 +491956,3.2108,86.8044 +491957,356.66,89.14308 +491958,358.45,88.3396 +491959,0.18487,87.5718 +491960,1.8821,86.8364 +491961,355.32,89.06549 +491962,357.11,88.2993 +491963,358.85,87.5682 +491964,0.55204,86.8688 +491965,353.97,88.9873 +491966,355.76,88.2588 +491967,357.51,87.5647 +491968,359.22,86.9018 +491969,352.63,88.9087 +491970,354.42,88.2182 +491971,356.18,87.5614 +491972,357.89,86.9352 +491973,351.29,88.8295 +491974,353.08,88.1774 +491975,354.84,87.5582 +491976,356.55,86.9691 +491977,349.95,88.7499 +491978,351.75,88.1364 +491979,353.5,87.5552 +491980,355.22,87.0033 +491981,348.61,88.6698 +491982,350.41,88.0952 +491983,352.16,87.5522 +491984,353.88,87.038 +491985,347.27,88.5894 +491986,349.07,88.0539 +491987,350.83,87.5494 +491988,352.54,87.073 +491989,345.93,88.5085 +491990,347.73,88.0125 +491991,349.49,87.5467 +491992,351.21,87.1083 +491993,344.6,88.4274 +491994,346.39,87.971 +491995,348.15,87.544 +491996,349.86,87.1439 +491997,343.27,88.3459 +491998,345.06,87.9293 +491999,346.81,87.5415 +492000,348.52,87.1798 +492001,341.93,88.2641 +492002,343.72,87.8875 +492003,345.47,87.539 +492004,347.18,87.2159 +492005,340.6,88.1822 +492006,342.38,87.8457 +492007,344.13,87.5365 +492008,345.84,87.2523 +492009,339.28,88.1 +492010,341.05,87.8037 +492011,342.79,87.5341 +492012,344.49,87.2888 +492013,337.95,88.0176 +492014,339.71,87.7617 +492015,341.45,87.5318 +492016,343.14,87.3254 +492017,336.62,87.9351 +492018,338.38,87.7197 +492019,340.1,87.5294 +492020,341.79,87.3622 +492021,335.3,87.8525 +492022,337.05,87.6775 +492023,338.76,87.5271 +492024,340.44,87.399 +492025,333.97,87.7698 +492026,335.71,87.6354 +492027,337.42,87.5248 +492028,339.09,87.4359 +492029,332.65,87.687 +492030,334.38,87.5932 +492031,336.08,87.5225 +492032,337.74,87.4729 +492033,331.33,87.6042 +492034,333.05,87.551 +492035,334.73,87.5202 +492036,336.39,87.5098 +492037,330.01,87.5215 +492038,331.72,87.5088 +492039,333.39,87.5178 +492040,335.03,87.5467 +492041,328.69,87.4388 +492042,330.38,87.4666 +492043,332.05,87.5155 +492044,333.68,87.5836 +492045,327.38,87.3562 +492046,329.05,87.4244 +492047,330.7,87.513 +492048,332.32,87.6203 +492049,326.06,87.2737 +492050,327.72,87.3822 +492051,329.36,87.5105 +492052,330.96,87.657 +492053,324.75,87.1914 +492054,326.39,87.34 +492055,328.01,87.508 +492056,329.6,87.6934 +492057,323.43,87.1092 +492058,325.06,87.2979 +492059,326.66,87.5054 +492060,328.24,87.7297 +492061,322.12,87.0272 +492062,323.73,87.2559 +492063,325.32,87.5027 +492064,326.88,87.7658 +492065,320.81,86.9455 +492066,322.41,87.2139 +492067,323.97,87.4999 +492068,325.51,87.8017 +492069,319.5,86.8641 +492070,321.08,87.172 +492071,322.63,87.497 +492072,324.15,87.8373 +492073,318.2,86.7829 +492074,319.75,87.1302 +492075,321.28,87.494 +492076,322.78,87.8726 +492077,316.89,86.7021 +492078,318.42,87.0885 +492079,319.93,87.4909 +492080,321.41,87.9075 +492081,315.58,86.6217 +492082,317.1,87.0469 +492083,318.58,87.4876 +492084,320.04,87.9421 +492085,314.28,86.5417 +492086,315.77,87.0054 +492087,317.23,87.4842 +492088,318.67,87.9764 +492089,312.98,86.4621 +492090,314.44,86.964 +492091,315.89,87.4806 +492092,317.3,88.0102 +492093,311.68,86.3829 +492094,313.12,86.9228 +492095,314.54,87.4769 +492096,315.93,88.0435 +492097,310.38,86.3042 +492098,311.79,86.8817 +492099,313.19,87.473 +492100,314.56,88.0764 +492101,309.08,86.2261 +492102,310.47,86.8408 +492103,311.84,87.4689 +492104,313.18,88.1089 +492105,307.78,86.1485 +492106,309.14,86.8 +492107,310.49,87.4647 +492108,311.81,88.1407 +492109,306.48,86.0714 +492110,307.82,86.7594 +492111,309.14,87.4602 +492112,310.43,88.1721 +492113,305.18,85.995 +492114,306.5,86.719 +492115,307.79,87.4555 +492116,309.06,88.2028 +492117,303.89,85.9192 +492118,305.17,86.6788 +492119,306.44,87.4506 +492120,307.68,88.233 +492121,302.6,85.8441 +492122,303.85,86.6388 +492123,305.09,87.4455 +492124,306.3,88.2625 +492125,301.3,85.7696 +492126,302.53,86.599 +492127,303.73,87.4402 +492128,304.92,88.2914 +492129,300.01,85.6959 +492130,301.21,86.5595 +492131,302.38,87.4346 +492132,303.54,88.3196 +492133,298.72,85.6229 +492134,299.89,86.5201 +492135,301.03,87.4287 +492136,302.15,88.3471 +492137,297.43,85.5506 +492138,298.56,86.481 +492139,299.68,87.4226 +492140,300.77,88.3738 +492141,296.14,85.4791 +492142,297.24,86.4422 +492143,298.33,87.4162 +492144,299.39,88.3998 +492145,294.85,85.4085 +492146,295.92,86.4036 +492147,296.97,87.4096 +492148,298,88.425 +492149,293.56,85.3387 +492150,294.6,86.3652 +492151,295.62,87.4027 +492152,296.61,88.4494 +492153,292.28,85.2697 +492154,293.28,86.3272 +492155,294.27,87.3954 +492156,295.23,88.473 +492157,290.99,85.2017 +492158,291.96,86.2894 +492159,292.91,87.3879 +492160,293.84,88.4957 +492161,289.71,85.1345 +492162,290.64,86.2519 +492163,291.56,87.3801 +492164,292.45,88.5175 +492165,288.42,85.0683 +492166,289.32,86.2147 +492167,290.2,87.3719 +492168,291.06,88.5384 +492169,287.14,85.003 +492170,288.01,86.1778 +492171,288.85,87.3634 +492172,289.67,88.5584 +492173,285.86,84.9387 +492174,286.69,86.1412 +492175,287.5,87.3546 +492176,288.28,88.5775 +492177,284.57,84.8754 +492178,285.37,86.1049 +492179,286.14,87.3455 +492180,286.89,88.5956 +492181,283.29,84.8131 +492182,284.05,86.069 +492183,284.79,87.336 +492184,285.5,88.6128 +492185,282.01,84.7519 +492186,282.73,86.0334 +492187,283.43,87.3261 +492188,284.11,88.6289 +492189,280.73,84.6917 +492190,281.42,85.9981 +492191,282.08,87.3159 +492192,282.71,88.644 +492193,279.45,84.6326 +492194,280.1,85.9632 +492195,280.72,87.3054 +492196,281.32,88.658 +492197,278.17,84.5745 +492198,278.78,85.9286 +492199,279.37,87.2945 +492200,279.93,88.671 +492201,276.89,84.5176 +492202,277.46,85.8944 +492203,278.01,87.2832 +492204,278.53,88.6829 +492205,275.62,84.4618 +492206,276.15,85.8605 +492207,276.65,87.2715 +492208,277.14,88.6937 +492209,274.34,84.4071 +492210,274.83,85.827 +492211,275.3,87.2594 +492212,275.74,88.7034 +492213,273.06,84.3536 +492214,273.52,85.7939 +492215,273.94,87.247 +492216,274.34,88.712 +492217,271.78,84.3012 +492218,272.2,85.7611 +492219,272.59,87.2341 +492220,272.95,88.7194 +492221,270.51,84.2501 +492222,270.88,85.7287 +492223,271.23,87.2208 +492224,271.55,88.7256 +492225,269.23,84.2001 +492226,269.57,85.6968 +492227,269.87,87.2072 +492228,270.15,88.7307 +492229,267.96,84.1514 +492230,268.25,85.6652 +492231,268.52,87.1931 +492232,268.76,88.7346 +492233,266.68,84.1038 +492234,266.94,85.634 +492235,267.16,87.1786 +492236,267.36,88.7372 +492237,265.41,84.0575 +492238,265.62,85.6032 +492239,265.81,87.1637 +492240,265.96,88.7387 +492241,264.13,84.0125 +492242,264.31,85.5728 +492243,264.45,87.1484 +492244,264.56,88.7389 +492245,262.86,83.9687 +492246,262.99,85.5428 +492247,263.09,87.1326 +492248,263.17,88.7379 +492249,261.58,83.9261 +492250,261.67,85.5132 +492251,261.74,87.1164 +492252,261.77,88.7356 +492253,260.31,83.8849 +492254,260.36,85.4841 +492255,260.38,87.0998 +492256,260.37,88.7321 +492257,259.03,83.8449 +492258,259.04,85.4553 +492259,259.02,87.0828 +492260,258.97,88.7272 +492261,257.76,83.8062 +492262,257.73,85.427 +492263,257.67,87.0653 +492264,257.57,88.7211 +492265,256.48,83.7688 +492266,256.41,85.3991 +492267,256.31,87.0473 +492268,256.17,88.7137 +492269,255.21,83.7327 +492270,255.1,85.3716 +492271,254.96,87.029 +492272,254.77,88.705 +492273,253.94,83.6979 +492274,253.79,85.3446 +492275,253.6,87.0101 +492276,253.38,88.695 +492277,252.66,83.6644 +492278,252.47,85.318 +492279,252.24,86.9909 +492280,251.98,88.6837 +492281,251.39,83.6322 +492282,251.16,85.2918 +492283,250.89,86.9711 +492284,250.58,88.671 +492285,250.11,83.6014 +492286,249.84,85.266 +492287,249.53,86.951 +492288,249.18,88.6571 +492289,248.84,83.5718 +492290,248.53,85.2407 +492291,248.18,86.9303 +492292,247.78,88.6418 +492293,247.56,83.5436 +492294,247.21,85.2158 +492295,246.82,86.9093 +492296,246.39,88.6251 +492297,246.29,83.5167 +492298,245.9,85.1914 +492299,245.46,86.8877 +492300,244.99,88.6071 +492301,245.01,83.4912 +492302,244.58,85.1673 +492303,244.11,86.8657 +492304,243.59,88.5878 +492305,243.74,83.4669 +492306,243.27,85.1437 +492307,242.75,86.8433 +492308,242.2,88.5671 +492309,242.46,83.444 +492310,241.95,85.1206 +492311,241.4,86.8204 +492312,240.8,88.5451 +492313,241.19,83.4224 +492314,240.64,85.0979 +492315,240.04,86.7971 +492316,239.41,88.5217 +492317,239.91,83.4021 +492318,239.32,85.0756 +492319,238.69,86.7733 +492320,238.01,88.497 +492321,238.63,83.3831 +492322,238,85.0537 +492323,237.33,86.749 +492324,236.62,88.471 +492325,237.36,83.3655 +492326,236.69,85.0323 +492327,235.98,86.7243 +492328,235.22,88.4436 +492329,236.08,83.3491 +492330,235.37,85.0113 +492331,234.63,86.6991 +492332,233.83,88.4148 +492333,234.8,83.3341 +492334,234.06,84.9907 +492335,233.27,86.6735 +492336,232.43,88.3848 +492337,233.52,83.3203 +492338,232.74,84.9706 +492339,231.92,86.6475 +492340,231.04,88.3534 +492341,232.24,83.3079 +492342,231.43,84.9509 +492343,230.56,86.621 +492344,229.65,88.3206 +492345,230.96,83.2967 +492346,230.11,84.9316 +492347,229.21,86.594 +492348,228.26,88.2866 +492349,229.68,83.2868 +492350,228.79,84.9128 +492351,227.86,86.5666 +492352,226.87,88.2512 +492353,228.4,83.2782 +492354,227.48,84.8943 +492355,226.5,86.5388 +492356,225.48,88.2145 +492357,227.12,83.2708 +492358,226.16,84.8763 +492359,225.15,86.5105 +492360,224.09,88.1765 +492361,225.84,83.2646 +492362,224.84,84.8587 +492363,223.8,86.4818 +492364,222.7,88.1372 +492365,224.56,83.2598 +492366,223.53,84.8415 +492367,222.45,86.4527 +492368,221.31,88.0966 +492369,223.27,83.2561 +492370,222.21,84.8247 +492371,221.1,86.4231 +492372,219.93,88.0547 +492373,221.99,83.2536 +492374,220.89,84.8083 +492375,219.74,86.3932 +492376,218.54,88.0116 +492377,220.7,83.2524 +492378,219.57,84.7923 +492379,218.39,86.3628 +492380,217.16,87.9672 +492381,219.42,83.2523 +492382,218.25,84.7767 +492383,217.04,86.3319 +492384,215.77,87.9215 +492385,218.13,83.2534 +492386,216.94,84.7615 +492387,215.69,86.3007 +492388,214.39,87.8747 +492389,216.84,83.2557 +492390,215.62,84.7467 +492391,214.34,86.2691 +492392,213.01,87.8266 +492393,215.55,83.2591 +492394,214.3,84.7322 +492395,212.99,86.237 +492396,211.63,87.7773 +492397,214.26,83.2637 +492398,212.98,84.7182 +492399,211.64,86.2046 +492400,210.25,87.7268 +492401,212.97,83.2694 +492402,211.66,84.7045 +492403,210.29,86.1718 +492404,208.87,87.6751 +492405,211.68,83.2762 +492406,210.34,84.6911 +492407,208.95,86.1385 +492408,207.49,87.6222 +492409,210.39,83.284 +492410,209.02,84.6782 +492411,207.6,86.105 +492412,206.11,87.5682 +492413,209.1,83.293 +492414,207.7,84.6656 +492415,206.25,86.071 +492416,204.74,87.5131 +492417,207.8,83.3029 +492418,206.38,84.6533 +492419,204.9,86.0366 +492420,203.37,87.4568 +492421,206.51,83.314 +492422,205.06,84.6414 +492423,203.56,86.0019 +492424,201.99,87.3995 +492425,205.21,83.326 +492426,203.74,84.6298 +492427,202.21,85.9669 +492428,200.62,87.3411 +492429,203.91,83.339 +492430,202.41,84.6186 +492431,200.86,85.9314 +492432,199.25,87.2816 +492433,202.61,83.353 +492434,201.09,84.6077 +492435,199.52,85.8957 +492436,197.88,87.221 +492437,201.31,83.3679 +492438,199.77,84.5971 +492439,198.17,85.8596 +492440,196.51,87.1595 +492441,200.01,83.3838 +492442,198.45,84.5868 +492443,196.83,85.8232 +492444,195.15,87.0969 +492445,198.71,83.4006 +492446,197.12,84.5768 +492447,195.48,85.7864 +492448,193.78,87.0334 +492449,197.41,83.4182 +492450,195.8,84.5671 +492451,194.14,85.7493 +492452,192.42,86.9689 +492453,196.1,83.4368 +492454,194.48,84.5577 +492455,192.8,85.7119 +492456,191.05,86.9035 +492457,194.8,83.4562 +492458,193.15,84.5486 +492459,191.45,85.6743 +492460,189.69,86.8372 +492461,193.49,83.4764 +492462,191.83,84.5398 +492463,190.11,85.6363 +492464,188.33,86.7699 +492465,192.18,83.4974 +492466,190.5,84.5312 +492467,188.77,85.598 +492468,186.97,86.7019 +492469,190.87,83.5192 +492470,189.18,84.5229 +492471,187.43,85.5595 +492472,185.61,86.6329 +492473,189.56,83.5417 +492474,187.85,84.5148 +492475,186.09,85.5207 +492476,184.26,86.5632 +492477,188.25,83.5649 +492478,186.53,84.507 +492479,184.75,85.4816 +492480,182.9,86.4927 +492481,186.94,83.5889 +492482,185.2,84.4994 +492483,183.41,85.4423 +492484,181.55,86.4214 +492485,185.62,83.6135 +492486,183.87,84.4921 +492487,182.07,85.4027 +492488,180.2,86.3493 +492489,184.31,83.6388 +492490,182.54,84.4849 +492491,180.73,85.3629 +492492,178.85,86.2766 +492493,182.99,83.6647 +492494,181.22,84.478 +492495,179.39,85.3229 +492496,177.5,86.2031 +492497,181.67,83.6912 +492498,179.89,84.4713 +492499,178.05,85.2827 +492500,176.15,86.129 +492501,180.35,83.7183 +492502,178.56,84.4647 +492503,176.71,85.2422 +492504,174.81,86.0543 +492505,179.03,83.7459 +492506,177.23,84.4584 +492507,175.38,85.2016 +492508,173.46,85.979 +492509,177.71,83.7741 +492510,175.9,84.4522 +492511,174.04,85.1607 +492512,172.12,85.9031 +492513,176.39,83.8027 +492514,174.57,84.4462 +492515,172.7,85.1197 +492516,170.78,85.8266 +492517,175.06,83.8318 +492518,173.24,84.4403 +492519,171.37,85.0785 +492520,169.44,85.7497 +492521,173.73,83.8614 +492522,171.91,84.4346 +492523,170.03,85.0371 +492524,168.1,85.6722 +492525,172.41,83.8913 +492526,170.58,84.4291 +492527,168.7,84.9956 +492528,166.76,85.5943 +492529,171.08,83.9216 +492530,169.25,84.4236 +492531,167.36,84.954 +492532,165.43,85.516 +492533,169.75,83.9523 +492534,167.91,84.4183 +492535,166.03,84.9122 +492536,164.09,85.4372 +492537,168.42,83.9834 +492538,166.58,84.4131 +492539,164.7,84.8703 +492540,162.76,85.3581 +492541,167.08,84.0147 +492542,165.25,84.408 +492543,163.37,84.8283 +492544,161.43,85.2787 +492545,165.75,84.0463 +492546,163.92,84.403 +492547,162.03,84.7862 +492548,160.1,85.1989 +492549,164.41,84.0781 +492550,162.58,84.398 +492551,160.7,84.744 +492552,158.77,85.1189 +492553,163.07,84.1101 +492554,161.25,84.3931 +492555,159.37,84.7017 +492556,157.45,85.0386 +492557,161.73,84.1424 +492558,159.91,84.3883 +492559,158.04,84.6593 +492560,156.12,84.9581 +492561,160.39,84.1748 +492562,158.58,84.3836 +492563,156.71,84.6169 +492564,154.8,84.8774 +492565,159.05,84.2073 +492566,157.24,84.3789 +492567,155.38,84.5744 +492568,153.48,84.7966 +492569,157.71,84.2399 +492570,155.9,84.3742 +492571,154.05,84.5319 +492572,152.15,84.7156 +492573,156.36,84.2726 +492574,154.57,84.3695 +492575,152.73,84.4893 +492576,150.84,84.6346 +492577,155.02,84.3053 +492578,153.23,84.3649 +492579,151.4,84.4467 +492580,149.52,84.5534 +492581,153.67,84.3381 +492582,151.89,84.3602 +492583,150.07,84.4041 +492584,148.2,84.4723 +492585,152.32,84.3708 +492586,150.56,84.3556 +492587,148.74,84.3615 +492588,146.89,84.3911 +492589,150.97,84.4035 +492590,149.22,84.3509 +492591,147.42,84.319 +492592,145.57,84.31 +492593,149.62,84.4361 +492594,147.88,84.3462 +492595,146.09,84.2764 +492596,144.26,84.229 +492597,148.27,84.4686 +492598,146.54,84.3415 +492599,144.77,84.2338 +492600,142.95,84.148 +492601,146.91,84.501 +492602,145.2,84.3367 +492603,143.44,84.1913 +492604,141.64,84.0672 +492605,145.56,84.5332 +492606,143.86,84.3319 +492607,142.12,84.1489 +492608,140.34,83.9865 +492609,144.2,84.5652 +492610,142.52,84.327 +492611,140.8,84.1065 +492612,139.03,83.906 +492613,142.84,84.597 +492614,141.18,84.322 +492615,139.47,84.0642 +492616,137.73,83.8257 +492617,141.49,84.6286 +492618,139.84,84.317 +492619,138.15,84.0219 +492620,136.42,83.7457 +492621,140.12,84.6599 +492622,138.5,84.3118 +492623,136.83,83.9798 +492624,135.12,83.666 +492625,138.76,84.6909 +492626,137.15,84.3066 +492627,135.51,83.9377 +492628,133.82,83.5865 +492629,137.4,84.7216 +492630,135.81,84.3012 +492631,134.18,83.8958 +492632,132.52,83.5074 +492633,136.04,84.7519 +492634,134.47,84.2957 +492635,132.86,83.854 +492636,131.22,83.4287 +492637,134.67,84.7818 +492638,133.12,84.2901 +492639,131.54,83.8123 +492640,129.93,83.3503 +492641,133.3,84.8114 +492642,131.78,84.2844 +492643,130.22,83.7707 +492644,128.63,83.2724 +492645,131.93,84.8405 +492646,130.44,84.2785 +492647,128.9,83.7293 +492648,127.34,83.195 +492649,130.57,84.8691 +492650,129.09,84.2724 +492651,127.59,83.688 +492652,126.04,83.118 +492653,129.2,84.8972 +492654,127.75,84.2662 +492655,126.27,83.6469 +492656,124.75,83.0415 +492657,127.82,84.9249 +492658,126.4,84.2597 +492659,124.95,83.606 +492660,123.46,82.9656 +492661,126.45,84.952 +492662,125.06,84.2532 +492663,123.63,83.5653 +492664,122.17,82.8903 +492665,125.08,84.9785 +492666,123.71,84.2464 +492667,122.31,83.5247 +492668,120.88,82.8155 +492669,123.7,85.0044 +492670,122.37,84.2394 +492671,121,83.4844 +492672,119.6,82.7414 +492673,122.33,85.0297 +492674,121.02,84.2322 +492675,119.68,83.4443 +492676,118.31,82.6679 +492677,120.95,85.0544 +492678,119.67,84.2248 +492679,118.36,83.4043 +492680,117.02,82.5951 +492681,119.57,85.0784 +492682,118.32,84.2171 +492683,117.05,83.3647 +492684,115.74,82.523 +492685,118.19,85.1017 +492686,116.98,84.2092 +492687,115.73,83.3252 +492688,114.46,82.4516 +492689,116.81,85.1244 +492690,115.63,84.2011 +492691,114.42,83.286 +492692,113.18,82.3809 +492693,115.43,85.1462 +492694,114.28,84.1927 +492695,113.1,83.2471 +492696,111.89,82.3111 +492697,114.05,85.1673 +492698,112.93,84.1841 +492699,111.79,83.2084 +492700,110.61,82.242 +492701,112.67,85.1877 +492702,111.59,84.1752 +492703,110.47,83.17 +492704,109.34,82.1738 +492705,111.28,85.2072 +492706,110.24,84.166 +492707,109.16,83.1318 +492708,108.06,82.1064 +492709,109.9,85.2259 +492710,108.89,84.1566 +492711,107.85,83.094 +492712,106.78,82.0399 +492713,108.51,85.2438 +492714,107.54,84.1468 +492715,106.54,83.0564 +492716,105.5,81.9743 +492717,107.13,85.2607 +492718,106.19,84.1368 +492719,105.22,83.0191 +492720,104.23,81.9096 +492721,105.74,85.2768 +492722,104.84,84.1264 +492723,103.91,82.9822 +492724,102.95,81.8458 +492725,104.35,85.292 +492726,103.49,84.1158 +492727,102.6,82.9455 +492728,101.68,81.783 +492729,102.96,85.3063 +492730,102.14,84.1048 +492731,101.29,82.9092 +492732,100.41,81.7212 +492733,101.57,85.3196 +492734,100.79,84.0935 +492735,99.975,82.8732 +492736,99.133,81.6603 +492737,100.18,85.332 +492738,99.437,84.0819 +492739,98.663,82.8375 +492740,97.861,81.6005 +492741,98.793,85.3433 +492742,98.087,84.0699 +492743,97.352,82.8022 +492744,96.59,81.5417 +492745,97.402,85.3537 +492746,96.736,84.0576 +492747,96.041,82.7672 +492748,95.319,81.484 +492749,96.01,85.363 +492750,95.385,84.045 +492751,94.731,82.7325 +492752,94.049,81.4273 +492753,94.618,85.3713 +492754,94.033,84.032 +492755,93.42,82.6982 +492756,92.78,81.3717 +492757,93.225,85.3786 +492758,92.682,84.0186 +492759,92.11,82.6643 +492760,91.511,81.3172 +492761,91.832,85.3848 +492762,91.33,84.0049 +492763,90.8,82.6308 +492764,90.242,81.2639 +492765,90.438,85.3899 +492766,89.979,83.9908 +492767,89.491,82.5976 +492768,88.974,81.2116 +492769,89.044,85.3939 +492770,88.627,83.9764 +492771,88.181,82.5648 +492772,87.707,81.1605 +492773,87.65,85.3968 +492774,87.275,83.9615 +492775,86.872,82.5323 +492776,86.44,81.1106 +492777,86.255,85.3986 +492778,85.923,83.9463 +492779,85.562,82.5003 +492780,85.173,81.0618 +492781,84.859,85.3992 +492782,84.571,83.9307 +492783,84.253,82.4687 +492784,83.906,81.0143 +492785,83.464,85.3987 +492786,83.219,83.9147 +492787,82.944,82.4374 +492788,82.64,80.9679 +492789,82.068,85.397 +492790,81.867,83.8983 +492791,81.635,82.4065 +492792,81.374,80.9227 +492793,80.672,85.3942 +492794,80.515,83.8816 +492795,80.326,82.3761 +492796,80.108,80.8788 +492797,79.275,85.3902 +492798,79.162,83.8644 +492799,79.018,82.346 +492800,78.843,80.8361 +492801,77.879,85.3849 +492802,77.81,83.8468 +492803,77.709,82.3164 +492804,77.578,80.7946 +492805,76.482,85.3785 +492806,76.458,83.8288 +492807,76.401,82.2871 +492808,76.312,80.7543 +492809,75.086,85.3709 +492810,75.105,83.8104 +492811,75.092,82.2583 +492812,75.047,80.7153 +492813,73.689,85.362 +492814,73.753,83.7916 +492815,73.784,82.2299 +492816,73.782,80.6776 +492817,72.292,85.352 +492818,72.401,83.7724 +492819,72.475,82.2019 +492820,72.518,80.6411 +492821,70.896,85.3406 +492822,71.049,83.7528 +492823,71.167,82.1744 +492824,71.253,80.6059 +492825,69.499,85.3281 +492826,69.697,83.7327 +492827,69.859,82.1472 +492828,69.988,80.572 +492829,68.102,85.3143 +492830,68.344,83.7123 +492831,68.551,82.1205 +492832,68.723,80.5394 +492833,66.706,85.2993 +492834,66.992,83.6914 +492835,67.242,82.0942 +492836,67.458,80.508 +492837,65.309,85.2829 +492838,65.64,83.6701 +492839,65.934,82.0683 +492840,66.192,80.4779 +492841,63.913,85.2654 +492842,64.289,83.6483 +492843,64.626,82.0429 +492844,64.927,80.4492 +492845,62.517,85.2466 +492846,62.937,83.6262 +492847,63.317,82.0178 +492848,63.662,80.4217 +492849,61.121,85.2265 +492850,61.585,83.6036 +492851,62.009,81.9932 +492852,62.396,80.3955 +492853,59.726,85.2051 +492854,60.234,83.5806 +492855,60.7,81.9691 +492856,61.13,80.3705 +492857,58.331,85.1825 +492858,58.882,83.5572 +492859,59.392,81.9453 +492860,59.864,80.3469 +492861,56.936,85.1586 +492862,57.531,83.5333 +492863,58.083,81.922 +492864,58.597,80.3246 +492865,55.542,85.1334 +492866,56.18,83.509 +492867,56.775,81.8992 +492868,57.33,80.3035 +492869,54.148,85.107 +492870,54.829,83.4843 +492871,55.466,81.8767 +492872,56.063,80.2837 +492873,52.754,85.0793 +492874,53.478,83.4592 +492875,54.157,81.8547 +492876,54.795,80.2653 +492877,51.361,85.0504 +492878,52.128,83.4337 +492879,52.848,81.8331 +492880,53.527,80.248 +492881,49.969,85.0202 +492882,50.777,83.4077 +492883,51.539,81.8119 +492884,52.258,80.2321 +492885,48.577,84.9887 +492886,49.427,83.3813 +492887,50.229,81.7911 +492888,50.989,80.2174 +492889,47.186,84.956 +492890,48.077,83.3545 +492891,48.92,81.7708 +492892,49.719,80.204 +492893,45.795,84.922 +492894,46.727,83.3273 +492895,47.61,81.7509 +492896,48.449,80.1918 +492897,44.405,84.8868 +492898,45.378,83.2997 +492899,46.3,81.7314 +492900,47.178,80.1809 +492901,43.016,84.8503 +492902,44.029,83.2716 +492903,44.99,81.7123 +492904,45.907,80.1712 +492905,41.627,84.8126 +492906,42.68,83.2432 +492907,43.68,81.6936 +492908,44.635,80.1627 +492909,40.24,84.7737 +492910,41.331,83.2143 +492911,42.37,81.6753 +492912,43.362,80.1555 +492913,38.852,84.7336 +492914,39.983,83.185 +492915,41.059,81.6575 +492916,42.088,80.1495 +492917,37.466,84.6923 +492918,38.635,83.1554 +492919,39.748,81.64 +492920,40.814,80.1446 +492921,36.081,84.6498 +492922,37.287,83.1253 +492923,38.437,81.623 +492924,39.539,80.141 +492925,34.696,84.606 +492926,35.94,83.0949 +492927,37.126,81.6063 +492928,38.263,80.1385 +492929,33.313,84.5612 +492930,34.592,83.0641 +492931,35.814,81.59 +492932,36.986,80.1372 +492933,31.93,84.5151 +492934,33.246,83.0328 +492935,34.502,81.5741 +492936,35.709,80.137 +492937,30.549,84.4679 +492938,31.899,83.0012 +492939,33.19,81.5586 +492940,34.43,80.138 +492941,29.168,84.4195 +492942,30.553,82.9693 +492943,31.878,81.5434 +492944,33.151,80.1401 +492945,27.788,84.3701 +492946,29.207,82.9369 +492947,30.565,81.5287 +492948,31.871,80.1433 +492949,26.41,84.3195 +492950,27.862,82.9042 +492951,29.252,81.5143 +492952,30.59,80.1475 +492953,25.032,84.2678 +492954,26.517,82.8711 +492955,27.939,81.5003 +492956,29.308,80.1529 +492957,23.656,84.215 +492958,25.172,82.8377 +492959,26.625,81.4866 +492960,28.025,80.1593 +492961,22.281,84.1612 +492962,23.828,82.8039 +492963,25.312,81.4732 +492964,26.74,80.1668 +492965,20.907,84.1063 +492966,22.484,82.7698 +492967,23.997,81.4603 +492968,25.455,80.1753 +492969,19.534,84.0503 +492970,21.141,82.7353 +492971,22.683,81.4476 +492972,24.169,80.1847 +492973,18.162,83.9933 +492974,19.798,82.7005 +492975,21.368,81.4353 +492976,22.881,80.1952 +492977,16.792,83.9354 +492978,18.455,82.6654 +492979,20.052,81.4233 +492980,21.593,80.2067 +492981,15.423,83.8764 +492982,17.113,82.6299 +492983,18.737,81.4117 +492984,20.303,80.2191 +492985,14.055,83.8165 +492986,15.772,82.5942 +492987,17.421,81.4004 +492988,19.012,80.2324 +492989,12.688,83.7557 +492990,14.43,82.5581 +492991,16.104,81.3893 +492992,17.72,80.2466 +492993,11.323,83.6939 +492994,13.09,82.5217 +492995,14.788,81.3786 +492996,16.427,80.2617 +492997,9.9591,83.6312 +492998,11.749,82.485 +492999,13.471,81.3682 +493000,15.133,80.2777 +493001,8.5965,83.5676 +493002,10.409,82.4481 +493003,12.153,81.358 +493004,13.837,80.2945 +493005,7.2353,83.5032 +493006,9.0701,82.4108 +493007,10.835,81.3482 +493008,12.54,80.3122 +493009,5.8756,83.4379 +493010,7.7312,82.3733 +493011,9.5167,81.3386 +493012,11.242,80.3306 +493013,4.5172,83.3718 +493014,6.3928,82.3355 +493015,8.1979,81.3292 +493016,9.9428,80.3498 +493017,3.1603,83.3049 +493018,5.0548,82.2975 +493019,6.8787,81.3202 +493020,8.6421,80.3698 +493021,1.8049,83.2372 +493022,3.7174,82.2592 +493023,5.5591,81.3113 +493024,7.3401,80.3905 +493025,0.45087,83.1688 +493026,2.3805,82.2207 +493027,4.2391,81.3028 +493028,6.0367,80.4119 +493029,359.1,83.0996 +493030,1.0441,82.1819 +493031,2.9186,81.2944 +493032,4.732,80.434 +493033,357.75,83.0298 +493034,359.71,82.1429 +493035,1.5977,81.2863 +493036,3.4259,80.4568 +493037,356.4,82.9593 +493038,358.37,82.1037 +493039,0.27639,81.2784 +493040,2.1185,80.4802 +493041,355.05,82.8881 +493042,357.04,82.0643 +493043,358.95,81.2707 +493044,0.80971,80.5042 +493045,353.7,82.8163 +493046,355.7,82.0247 +493047,357.63,81.2632 +493048,359.5,80.5287 +493049,352.36,82.7439 +493050,354.37,81.9849 +493051,356.31,81.2559 +493052,358.19,80.5538 +493053,351.01,82.6709 +493054,353.04,81.9449 +493055,354.99,81.2488 +493056,356.87,80.5795 +493057,349.67,82.5974 +493058,351.7,81.9048 +493059,353.66,81.2419 +493060,355.56,80.6057 +493061,348.33,82.5233 +493062,350.37,81.8644 +493063,352.34,81.2351 +493064,354.24,80.6323 +493065,346.99,82.4488 +493066,349.04,81.824 +493067,351.01,81.2285 +493068,352.93,80.6594 +493069,345.66,82.3738 +493070,347.71,81.7833 +493071,349.69,81.2221 +493072,351.61,80.6869 +493073,344.32,82.2984 +493074,346.38,81.7426 +493075,348.36,81.2157 +493076,350.29,80.7148 +493077,342.99,82.2225 +493078,345.05,81.7017 +493079,347.04,81.2095 +493080,348.97,80.7431 +493081,341.66,82.1463 +493082,343.72,81.6607 +493083,345.71,81.2035 +493084,347.64,80.7717 +493085,340.32,82.0697 +493086,342.39,81.6195 +493087,344.38,81.1975 +493088,346.32,80.8006 +493089,339,81.9928 +493090,341.06,81.5783 +493091,343.06,81.1916 +493092,344.99,80.8298 +493093,337.67,81.9157 +493094,339.73,81.537 +493095,341.73,81.1859 +493096,343.67,80.8593 +493097,336.34,81.8382 +493098,338.41,81.4956 +493099,340.4,81.1802 +493100,342.34,80.889 +493101,335.02,81.7605 +493102,337.08,81.4541 +493103,339.07,81.1746 +493104,341.01,80.9189 +493105,333.69,81.6826 +493106,335.75,81.4126 +493107,337.74,81.169 +493108,339.67,80.949 +493109,332.37,81.6045 +493110,334.43,81.371 +493111,336.41,81.1636 +493112,338.34,80.9792 +493113,331.05,81.5263 +493114,333.1,81.3294 +493115,335.08,81.1581 +493116,337.01,81.0096 +493117,329.74,81.448 +493118,331.78,81.2877 +493119,333.75,81.1527 +493120,335.67,81.04 +493121,328.42,81.3695 +493122,330.45,81.2461 +493123,332.42,81.1473 +493124,334.33,81.0705 +493125,327.1,81.2911 +493126,329.13,81.2044 +493127,331.09,81.142 +493128,332.99,81.1011 +493129,325.79,81.2126 +493130,327.81,81.1627 +493131,329.76,81.1366 +493132,331.65,81.1316 +493133,324.48,81.134 +493134,326.48,81.121 +493135,328.43,81.1313 +493136,330.31,81.1622 +493137,323.17,81.0556 +493138,325.16,81.0793 +493139,327.09,81.1259 +493140,328.97,81.1926 +493141,321.86,80.9771 +493142,323.84,81.0377 +493143,325.76,81.1205 +493144,327.62,81.223 +493145,320.55,80.8988 +493146,322.52,80.9961 +493147,324.43,81.1151 +493148,326.28,81.2533 +493149,319.25,80.8206 +493150,321.2,80.9545 +493151,323.09,81.1097 +493152,324.93,81.2835 +493153,317.94,80.7426 +493154,319.88,80.913 +493155,321.76,81.1042 +493156,323.58,81.3135 +493157,316.64,80.6647 +493158,318.56,80.8715 +493159,320.42,81.0986 +493160,322.23,81.3433 +493161,315.34,80.587 +493162,317.24,80.8302 +493163,319.09,81.093 +493164,320.88,81.3729 +493165,314.04,80.5096 +493166,315.92,80.7889 +493167,317.75,81.0873 +493168,319.52,81.4023 +493169,312.74,80.4325 +493170,314.6,80.7477 +493171,316.41,81.0815 +493172,318.17,81.4314 +493173,311.44,80.3556 +493174,313.29,80.7066 +493175,315.08,81.0756 +493176,316.81,81.4602 +493177,310.15,80.2791 +493178,311.97,80.6656 +493179,313.74,81.0696 +493180,315.45,81.4886 +493181,308.86,80.2029 +493182,310.65,80.6248 +493183,312.4,81.0635 +493184,314.1,81.5168 +493185,307.56,80.1271 +493186,309.34,80.584 +493187,311.06,81.0573 +493188,312.74,81.5445 +493189,306.27,80.0517 +493190,308.02,80.5435 +493191,309.72,81.0509 +493192,311.37,81.5719 +493193,304.98,79.977 +493194,306.71,80.503 +493195,308.38,81.0445 +493196,310.01,81.5988 +493197,303.69,79.902 +493198,305.39,80.4627 +493199,307.04,81.0378 +493200,308.65,81.6252 +493201,302.41,79.828 +493202,304.08,80.4226 +493203,305.7,81.031 +493204,307.28,81.6512 +493205,301.12,79.755 +493206,302.77,80.3827 +493207,304.36,81.024 +493208,305.92,81.6767 +493209,299.84,79.682 +493210,301.45,80.343 +493211,303.02,81.0169 +493212,304.55,81.7016 +493213,298.55,79.61 +493214,300.14,80.3034 +493215,301.68,81.0096 +493216,303.18,81.726 +493217,297.27,79.538 +493218,298.83,80.264 +493219,300.34,81.0021 +493220,301.81,81.7498 +493221,295.99,79.467 +493222,297.52,80.2249 +493223,299,80.9944 +493224,300.44,81.7731 +493225,294.71,79.396 +493226,296.21,80.186 +493227,297.66,80.9864 +493228,299.07,81.7956 +493229,293.43,79.327 +493230,294.89,80.1473 +493231,296.31,80.9783 +493232,297.69,81.8176 +493233,292.15,79.258 +493234,293.58,80.1088 +493235,294.97,80.9699 +493236,296.32,81.8389 +493237,290.88,79.189 +493238,292.27,80.0706 +493239,293.63,80.9613 +493240,294.94,81.8594 +493241,289.6,79.122 +493242,290.96,80.0327 +493243,292.28,80.9525 +493244,293.57,81.8793 +493245,288.33,79.055 +493246,289.65,79.995 +493247,290.94,80.9434 +493248,292.19,81.8984 +493249,287.05,78.989 +493250,288.35,79.958 +493251,289.6,80.9341 +493252,290.81,81.9167 +493253,285.78,78.924 +493254,287.04,79.92 +493255,288.25,80.9245 +493256,289.43,81.9343 +493257,284.51,78.86 +493258,285.73,79.883 +493259,286.91,80.9146 +493260,288.05,81.9511 +493261,283.24,78.796 +493262,284.42,79.847 +493263,285.56,80.9045 +493264,286.67,81.967 +493265,281.97,78.734 +493266,283.11,79.811 +493267,284.22,80.8941 +493268,285.28,81.9821 +493269,280.7,78.672 +493270,281.81,79.775 +493271,282.87,80.8834 +493272,283.9,81.9964 +493273,279.44,78.611 +493274,280.5,79.739 +493275,281.53,80.8724 +493276,282.52,82.0097 +493277,278.17,78.552 +493278,279.19,79.704 +493279,280.18,80.8611 +493280,281.13,82.0222 +493281,276.9,78.493 +493282,277.89,79.669 +493283,278.83,80.8495 +493284,279.75,82.0337 +493285,275.64,78.435 +493286,276.58,79.634 +493287,277.49,80.8376 +493288,278.36,82.0443 +493289,274.37,78.378 +493290,275.27,79.599 +493291,276.14,80.8253 +493292,276.97,82.054 +493293,273.11,78.322 +493294,273.97,79.565 +493295,274.79,80.8128 +493296,275.58,82.0627 +493297,271.85,78.268 +493298,272.66,79.532 +493299,273.44,80.7999 +493300,274.19,82.0704 +493301,270.58,78.214 +493302,271.36,79.498 +493303,272.1,80.7866 +493304,272.81,82.0771 +493305,269.32,78.161 +493306,270.05,79.465 +493307,270.75,80.7731 +493308,271.42,82.0828 +493309,268.06,78.11 +493310,268.75,79.433 +493311,269.4,80.7591 +493312,270.02,82.0874 +493313,266.8,78.059 +493314,267.44,79.4 +493315,268.05,80.7449 +493316,268.63,82.091 +493317,265.54,78.01 +493318,266.14,79.369 +493319,266.71,80.7303 +493320,267.24,82.0936 +493321,264.28,77.962 +493322,264.84,79.337 +493323,265.36,80.7153 +493324,265.85,82.0951 +493325,263.02,77.915 +493326,263.53,79.306 +493327,264.01,80.6999 +493328,264.46,82.0955 +493329,261.76,77.869 +493330,262.23,79.275 +493331,262.66,80.6842 +493332,263.06,82.0948 +493333,260.5,77.825 +493334,260.92,79.245 +493335,261.31,80.6682 +493336,261.67,82.0929 +493337,259.25,77.781 +493338,259.62,79.215 +493339,259.96,80.6517 +493340,260.28,82.09 +493341,257.99,77.739 +493342,258.32,79.185 +493343,258.62,80.6349 +493344,258.88,82.086 +493345,256.73,77.698 +493346,257.01,79.156 +493347,257.27,80.6176 +493348,257.49,82.0808 +493349,255.47,77.658 +493350,255.71,79.127 +493351,255.92,80.6 +493352,256.09,82.0744 +493353,254.22,77.619 +493354,254.41,79.099 +493355,254.57,80.5821 +493356,254.7,82.0669 +493357,252.96,77.581 +493358,253.11,79.071 +493359,253.22,80.5637 +493360,253.3,82.0583 +493361,251.7,77.545 +493362,251.8,79.043 +493363,251.87,80.5449 +493364,251.91,82.0484 +493365,250.45,77.51 +493366,250.5,79.016 +493367,250.52,80.5258 +493368,250.51,82.0374 +493369,249.19,77.476 +493370,249.2,78.99 +493371,249.17,80.5062 +493372,249.12,82.0252 +493373,247.93,77.444 +493374,247.89,78.963 +493375,247.82,80.4862 +493376,247.72,82.0119 +493377,246.68,77.413 +493378,246.59,78.937 +493379,246.48,80.4659 +493380,246.33,81.9973 +493381,245.42,77.383 +493382,245.29,78.912 +493383,245.13,80.4451 +493384,244.93,81.9815 +493385,244.16,77.354 +493386,243.99,78.887 +493387,243.78,80.424 +493388,243.53,81.9645 +493389,242.9,77.326 +493390,242.68,78.862 +493391,242.43,80.4024 +493392,242.14,81.9463 +493393,241.65,77.3 +493394,241.38,78.838 +493395,241.08,80.3804 +493396,240.74,81.9269 +493397,240.39,77.275 +493398,240.08,78.814 +493399,239.73,80.3581 +493400,239.35,81.9063 +493401,239.13,77.251 +493402,238.78,78.791 +493403,238.38,80.3353 +493404,237.95,81.8845 +493405,237.88,77.229 +493406,237.47,78.768 +493407,237.03,80.3121 +493408,236.56,81.8615 +493409,236.62,77.208 +493410,236.17,78.745 +493411,235.69,80.2885 +493412,235.17,81.8373 +493413,235.36,77.188 +493414,234.87,78.723 +493415,234.34,80.2646 +493416,233.77,81.8118 +493417,234.1,77.169 +493418,233.56,78.701 +493419,232.99,80.2402 +493420,232.38,81.7852 +493421,232.84,77.152 +493422,232.26,78.68 +493423,231.64,80.2154 +493424,230.98,81.7573 +493425,231.58,77.135 +493426,230.96,78.659 +493427,230.3,80.1902 +493428,229.59,81.7282 +493429,230.32,77.12 +493430,229.65,78.639 +493431,228.95,80.1646 +493432,228.2,81.6979 +493433,229.06,77.107 +493434,228.35,78.619 +493435,227.6,80.1386 +493436,226.81,81.6665 +493437,227.8,77.094 +493438,227.05,78.599 +493439,226.25,80.1122 +493440,225.42,81.6338 +493441,226.54,77.083 +493442,225.74,78.58 +493443,224.91,80.0854 +493444,224.03,81.5999 +493445,225.28,77.073 +493446,224.44,78.561 +493447,223.56,80.0583 +493448,222.64,81.5649 +493449,224.01,77.064 +493450,223.13,78.542 +493451,222.21,80.0307 +493452,221.25,81.5286 +493453,222.75,77.056 +493454,221.83,78.524 +493455,220.87,80.0028 +493456,219.86,81.4912 +493457,221.49,77.05 +493458,220.53,78.507 +493459,219.52,79.974 +493460,218.47,81.4527 +493461,220.22,77.044 +493462,219.22,78.49 +493463,218.18,79.946 +493464,217.08,81.413 +493465,218.96,77.04 +493466,217.92,78.473 +493467,216.83,79.917 +493468,215.69,81.3721 +493469,217.69,77.037 +493470,216.61,78.456 +493471,215.49,79.887 +493472,214.31,81.3301 +493473,216.42,77.036 +493474,215.3,78.44 +493475,214.14,79.857 +493476,212.92,81.287 +493477,215.15,77.035 +493478,214,78.425 +493479,212.8,79.827 +493480,211.54,81.2427 +493481,213.89,77.035 +493482,212.69,78.409 +493483,211.45,79.796 +493484,210.16,81.1973 +493485,212.62,77.037 +493486,211.39,78.394 +493487,210.11,79.766 +493488,208.77,81.1509 +493489,211.35,77.039 +493490,210.08,78.38 +493491,208.76,79.734 +493492,207.39,81.1033 +493493,210.07,77.043 +493494,208.77,78.366 +493495,207.42,79.703 +493496,206.01,81.0547 +493497,208.8,77.048 +493498,207.47,78.352 +493499,206.08,79.671 +493500,204.63,81.0051 +493501,207.53,77.054 +493502,206.16,78.338 +493503,204.74,79.638 +493504,203.25,80.9543 +493505,206.25,77.06 +493506,204.85,78.325 +493507,203.39,79.606 +493508,201.88,80.9026 +493509,204.98,77.068 +493510,203.54,78.312 +493511,202.05,79.573 +493512,200.5,80.8498 +493513,203.7,77.077 +493514,202.23,78.3 +493515,200.71,79.539 +493516,199.13,80.7961 +493517,202.42,77.087 +493518,200.92,78.288 +493519,199.37,79.506 +493520,197.75,80.7413 +493521,201.14,77.098 +493522,199.61,78.276 +493523,198.03,79.472 +493524,196.38,80.6856 +493525,199.86,77.109 +493526,198.31,78.264 +493527,196.69,79.437 +493528,195.01,80.629 +493529,198.58,77.122 +493530,197,78.253 +493531,195.35,79.403 +493532,193.64,80.5714 +493533,197.3,77.135 +493534,195.68,78.242 +493535,194.01,79.368 +493536,192.27,80.5129 +493537,196.02,77.15 +493538,194.37,78.232 +493539,192.67,79.333 +493540,190.9,80.4535 +493541,194.73,77.165 +493542,193.06,78.222 +493543,191.33,79.297 +493544,189.54,80.3932 +493545,193.45,77.181 +493546,191.75,78.212 +493547,190,79.261 +493548,188.17,80.3321 +493549,192.16,77.198 +493550,190.44,78.202 +493551,188.66,79.225 +493552,186.81,80.2701 +493553,190.87,77.216 +493554,189.13,78.193 +493555,187.32,79.189 +493556,185.45,80.2073 +493557,189.58,77.234 +493558,187.81,78.183 +493559,185.99,79.153 +493560,184.09,80.1438 +493561,188.29,77.253 +493562,186.5,78.174 +493563,184.65,79.116 +493564,182.73,80.0794 +493565,187,77.273 +493566,185.19,78.166 +493567,183.31,79.079 +493568,181.37,80.0143 +493569,185.7,77.294 +493570,183.87,78.157 +493571,181.98,79.042 +493572,180.01,79.949 +493573,184.41,77.315 +493574,182.56,78.149 +493575,180.65,79.004 +493576,178.66,79.882 +493577,183.11,77.337 +493578,181.24,78.141 +493579,179.31,78.966 +493580,177.3,79.815 +493581,181.81,77.36 +493582,179.93,78.133 +493583,177.98,78.929 +493584,175.95,79.747 +493585,180.51,77.383 +493586,178.61,78.126 +493587,176.65,78.89 +493588,174.6,79.678 +493589,179.21,77.406 +493590,177.3,78.119 +493591,175.31,78.852 +493592,173.25,79.609 +493593,177.91,77.431 +493594,175.98,78.111 +493595,173.98,78.814 +493596,171.91,79.54 +493597,176.6,77.456 +493598,174.66,78.105 +493599,172.65,78.775 +493600,170.56,79.469 +493601,175.3,77.481 +493602,173.34,78.098 +493603,171.32,78.736 +493604,169.22,79.398 +493605,173.99,77.507 +493606,172.03,78.091 +493607,169.99,78.697 +493608,167.87,79.327 +493609,172.68,77.533 +493610,170.71,78.085 +493611,168.66,78.658 +493612,166.53,79.255 +493613,171.37,77.56 +493614,169.39,78.078 +493615,167.33,78.619 +493616,165.19,79.183 +493617,170.06,77.587 +493618,168.07,78.072 +493619,166,78.579 +493620,163.86,79.11 +493621,168.75,77.614 +493622,166.75,78.066 +493623,164.67,78.54 +493624,162.52,79.037 +493625,167.44,77.642 +493626,165.43,78.06 +493627,163.35,78.5 +493628,161.19,78.964 +493629,166.12,77.67 +493630,164.11,78.055 +493631,162.02,78.46 +493632,159.85,78.89 +493633,164.8,77.698 +493634,162.78,78.049 +493635,160.69,78.421 +493636,158.52,78.816 +493637,163.48,77.727 +493638,161.46,78.043 +493639,159.37,78.381 +493640,157.19,78.741 +493641,162.16,77.756 +493642,160.14,78.038 +493643,158.04,78.341 +493644,155.87,78.667 +493645,160.84,77.785 +493646,158.82,78.032 +493647,156.72,78.3 +493648,154.54,78.592 +493649,159.52,77.814 +493650,157.49,78.027 +493651,155.39,78.26 +493652,153.22,78.517 +493653,158.19,77.844 +493654,156.17,78.022 +493655,154.07,78.22 +493656,151.89,78.441 +493657,156.87,77.873 +493658,154.84,78.016 +493659,152.75,78.18 +493660,150.57,78.366 +493661,155.54,77.903 +493662,153.52,78.011 +493663,151.43,78.14 +493664,149.25,78.29 +493665,154.21,77.933 +493666,152.19,78.006 +493667,150.1,78.099 +493668,147.94,78.215 +493669,152.88,77.962 +493670,150.86,78.001 +493671,148.78,78.059 +493672,146.62,78.139 +493673,151.54,77.992 +493674,149.54,77.996 +493675,147.46,78.019 +493676,145.31,78.063 +493677,150.21,78.022 +493678,148.21,77.991 +493679,146.14,77.978 +493680,143.99,77.987 +493681,148.87,78.052 +493682,146.88,77.986 +493683,144.82,77.938 +493684,142.68,77.911 +493685,147.54,78.081 +493686,145.55,77.98 +493687,143.5,77.898 +493688,141.37,77.835 +493689,146.2,78.111 +493690,144.23,77.975 +493691,142.18,77.857 +493692,140.07,77.76 +493693,144.86,78.14 +493694,142.9,77.97 +493695,140.87,77.817 +493696,138.76,77.684 +493697,143.52,78.169 +493698,141.57,77.965 +493699,139.55,77.777 +493700,137.46,77.609 +493701,142.17,78.198 +493702,140.24,77.959 +493703,138.23,77.737 +493704,136.15,77.533 +493705,140.83,78.227 +493706,138.91,77.954 +493707,136.92,77.697 +493708,134.85,77.458 +493709,139.48,78.256 +493710,137.57,77.949 +493711,135.6,77.657 +493712,133.55,77.383 +493713,138.13,78.284 +493714,136.24,77.943 +493715,134.29,77.617 +493716,132.25,77.309 +493717,136.79,78.312 +493718,134.91,77.938 +493719,132.97,77.577 +493720,130.96,77.234 +493721,135.43,78.34 +493722,133.58,77.932 +493723,131.66,77.538 +493724,129.66,77.16 +493725,134.08,78.368 +493726,132.25,77.926 +493727,130.34,77.498 +493728,128.37,77.087 +493729,132.73,78.395 +493730,130.91,77.92 +493731,129.03,77.459 +493732,127.08,77.013 +493733,131.37,78.421 +493734,129.58,77.914 +493735,127.72,77.42 +493736,125.79,76.94 +493737,130.02,78.448 +493738,128.24,77.908 +493739,126.41,77.38 +493740,124.5,76.868 +493741,128.66,78.473 +493742,126.91,77.902 +493743,125.09,77.341 +493744,123.21,76.796 +493745,127.3,78.499 +493746,125.57,77.895 +493747,123.78,77.303 +493748,121.93,76.724 +493749,125.94,78.524 +493750,124.24,77.888 +493751,122.47,77.264 +493752,120.64,76.653 +493753,124.58,78.548 +493754,122.9,77.882 +493755,121.16,77.226 +493756,119.36,76.582 +493757,123.22,78.572 +493758,121.56,77.875 +493759,119.85,77.187 +493760,118.08,76.512 +493761,121.85,78.595 +493762,120.23,77.868 +493763,118.54,77.149 +493764,116.8,76.443 +493765,120.49,78.618 +493766,118.89,77.86 +493767,117.24,77.111 +493768,115.52,76.374 +493769,119.12,78.64 +493770,117.55,77.853 +493771,115.93,77.074 +493772,114.24,76.305 +493773,117.75,78.661 +493774,116.21,77.845 +493775,114.62,77.036 +493776,112.97,76.238 +493777,116.38,78.682 +493778,114.87,77.837 +493779,113.31,76.999 +493780,111.69,76.171 +493781,115.01,78.702 +493782,113.54,77.829 +493783,112,76.962 +493784,110.42,76.104 +493785,113.64,78.721 +493786,112.2,77.82 +493787,110.7,76.925 +493788,109.14,76.039 +493789,112.27,78.74 +493790,110.86,77.812 +493791,109.39,76.889 +493792,107.87,75.974 +493793,110.89,78.758 +493794,109.52,77.803 +493795,108.09,76.853 +493796,106.6,75.91 +493797,109.52,78.775 +493798,108.18,77.794 +493799,106.78,76.817 +493800,105.33,75.847 +493801,108.14,78.791 +493802,106.84,77.784 +493803,105.48,76.781 +493804,104.07,75.784 +493805,106.77,78.807 +493806,105.49,77.774 +493807,104.17,76.746 +493808,102.8,75.723 +493809,105.39,78.822 +493810,104.15,77.764 +493811,102.87,76.711 +493812,101.53,75.662 +493813,104.01,78.836 +493814,102.81,77.754 +493815,101.56,76.676 +493816,100.27,75.602 +493817,102.63,78.849 +493818,101.47,77.744 +493819,100.26,76.641 +493820,99.005,75.543 +493821,101.25,78.861 +493822,100.13,77.733 +493823,98.958,76.607 +493824,97.743,75.485 +493825,99.867,78.872 +493826,98.783,77.722 +493827,97.655,76.573 +493828,96.481,75.428 +493829,98.484,78.882 +493830,97.44,77.71 +493831,96.353,76.54 +493832,95.22,75.372 +493833,97.101,78.892 +493834,96.097,77.699 +493835,95.051,76.506 +493836,93.96,75.317 +493837,95.716,78.9 +493838,94.753,77.687 +493839,93.749,76.473 +493840,92.701,75.263 +493841,94.331,78.908 +493842,93.41,77.674 +493843,92.447,76.441 +493844,91.442,75.21 +493845,92.945,78.914 +493846,92.066,77.662 +493847,91.146,76.409 +493848,90.185,75.158 +493849,91.558,78.92 +493850,90.721,77.649 +493851,89.845,76.377 +493852,88.928,75.107 +493853,90.17,78.924 +493854,89.377,77.635 +493855,88.545,76.345 +493856,87.672,75.057 +493857,88.782,78.928 +493858,88.032,77.621 +493859,87.244,76.314 +493860,86.416,75.008 +493861,87.393,78.93 +493862,86.687,77.607 +493863,85.944,76.283 +493864,85.161,74.96 +493865,86.004,78.932 +493866,85.342,77.593 +493867,84.644,76.253 +493868,83.907,74.913 +493869,84.614,78.932 +493870,83.997,77.578 +493871,83.344,76.223 +493872,82.653,74.867 +493873,83.223,78.931 +493874,82.652,77.563 +493875,82.045,76.193 +493876,81.4,74.823 +493877,81.832,78.93 +493878,81.306,77.548 +493879,80.745,76.164 +493880,80.148,74.779 +493881,80.44,78.927 +493882,79.961,77.532 +493883,79.446,76.135 +493884,78.895,74.737 +493885,79.048,78.923 +493886,78.615,77.516 +493887,78.147,76.106 +493888,77.643,74.696 +493889,77.656,78.918 +493890,77.269,77.499 +493891,76.848,76.078 +493892,76.392,74.656 +493893,76.263,78.912 +493894,75.923,77.482 +493895,75.549,76.05 +493896,75.141,74.618 +493897,74.87,78.904 +493898,74.577,77.465 +493899,74.251,76.023 +493900,73.89,74.58 +493901,73.476,78.896 +493902,73.231,77.447 +493903,72.952,75.996 +493904,72.64,74.544 +493905,72.082,78.886 +493906,71.884,77.429 +493907,71.654,75.969 +493908,71.389,74.509 +493909,70.688,78.876 +493910,70.538,77.411 +493911,70.355,75.943 +493912,70.139,74.475 +493913,69.294,78.864 +493914,69.192,77.392 +493915,69.057,75.917 +493916,68.889,74.442 +493917,67.9,78.851 +493918,67.845,77.373 +493919,67.759,75.892 +493920,67.64,74.41 +493921,66.505,78.836 +493922,66.499,77.353 +493923,66.461,75.867 +493924,66.39,74.38 +493925,65.11,78.821 +493926,65.153,77.333 +493927,65.163,75.843 +493928,65.14,74.351 +493929,63.715,78.804 +493930,63.806,77.313 +493931,63.865,75.818 +493932,63.891,74.323 +493933,62.321,78.787 +493934,62.46,77.292 +493935,62.566,75.795 +493936,62.641,74.297 +493937,60.926,78.768 +493938,61.114,77.271 +493939,61.268,75.771 +493940,61.391,74.271 +493941,59.531,78.748 +493942,59.767,77.249 +493943,59.97,75.748 +493944,60.141,74.247 +493945,58.136,78.726 +493946,58.421,77.227 +493947,58.672,75.726 +493948,58.891,74.224 +493949,56.742,78.704 +493950,57.075,77.205 +493951,57.374,75.704 +493952,57.641,74.203 +493953,55.348,78.68 +493954,55.729,77.182 +493955,56.076,75.682 +493956,56.391,74.182 +493957,53.953,78.655 +493958,54.383,77.159 +493959,54.778,75.661 +493960,55.14,74.163 +493961,52.559,78.629 +493962,53.037,77.135 +493963,53.48,75.64 +493964,53.889,74.145 +493965,51.166,78.602 +493966,51.691,77.111 +493967,52.181,75.62 +493968,52.638,74.129 +493969,49.772,78.574 +493970,50.345,77.087 +493971,50.883,75.6 +493972,51.386,74.113 +493973,48.379,78.544 +493974,49,77.062 +493975,49.584,75.58 +493976,50.134,74.099 +493977,46.986,78.514 +493978,47.654,77.037 +493979,48.285,75.561 +493980,48.882,74.086 +493981,45.594,78.482 +493982,46.309,77.012 +493983,46.987,75.542 +493984,47.629,74.074 +493985,44.202,78.449 +493986,44.964,76.986 +493987,45.688,75.523 +493988,46.376,74.063 +493989,42.811,78.415 +493990,43.619,76.959 +493991,44.389,75.505 +493992,45.122,74.054 +493993,41.42,78.379 +493994,42.275,76.933 +493995,43.089,75.488 +493996,43.868,74.046 +493997,40.03,78.343 +493998,40.93,76.906 +493999,41.79,75.471 +494000,42.612,74.038 +494001,38.64,78.305 +494002,39.586,76.878 +494003,40.49,75.454 +494004,41.357,74.032 +494005,37.251,78.267 +494006,38.242,76.85 +494007,39.19,75.437 +494008,40.1,74.028 +494009,35.863,78.227 +494010,36.898,76.822 +494011,37.89,75.421 +494012,38.843,74.024 +494013,34.475,78.186 +494014,35.555,76.794 +494015,36.59,75.405 +494016,37.586,74.022 +494017,33.088,78.144 +494018,34.211,76.765 +494019,35.29,75.39 +494020,36.327,74.02 +494021,31.702,78.101 +494022,32.869,76.736 +494023,33.989,75.375 +494024,35.068,74.02 +494025,30.316,78.057 +494026,31.526,76.706 +494027,32.688,75.361 +494028,33.807,74.021 +494029,28.932,78.011 +494030,30.184,76.676 +494031,31.387,75.346 +494032,32.546,74.023 +494033,27.548,77.965 +494034,28.842,76.646 +494035,30.085,75.333 +494036,31.285,74.026 +494037,26.166,77.918 +494038,27.5,76.615 +494039,28.783,75.319 +494040,30.022,74.03 +494041,24.784,77.869 +494042,26.158,76.584 +494043,27.481,75.306 +494044,28.758,74.035 +494045,23.403,77.82 +494046,24.817,76.553 +494047,26.179,75.293 +494048,27.493,74.041 +494049,22.023,77.769 +494050,23.477,76.521 +494051,24.876,75.281 +494052,26.227,74.049 +494053,20.644,77.718 +494054,22.136,76.489 +494055,23.573,75.269 +494056,24.96,74.057 +494057,19.267,77.666 +494058,20.796,76.457 +494059,22.269,75.257 +494060,23.693,74.066 +494061,17.89,77.612 +494062,19.457,76.424 +494063,20.966,75.245 +494064,22.424,74.076 +494065,16.514,77.558 +494066,18.118,76.391 +494067,19.661,75.234 +494068,21.154,74.087 +494069,15.14,77.503 +494070,16.779,76.358 +494071,18.357,75.223 +494072,19.882,74.099 +494073,13.767,77.447 +494074,15.441,76.324 +494075,17.052,75.213 +494076,18.61,74.112 +494077,12.395,77.39 +494078,14.103,76.291 +494079,15.747,75.203 +494080,17.336,74.126 +494081,11.024,77.332 +494082,12.765,76.257 +494083,14.441,75.193 +494084,16.062,74.14 +494085,9.655,77.273 +494086,11.428,76.222 +494087,13.135,75.183 +494088,14.786,74.156 +494089,8.2869,77.214 +494090,10.092,76.187 +494091,11.829,75.174 +494092,13.508,74.172 +494093,6.9201,77.153 +494094,8.7554,76.153 +494095,10.522,75.165 +494096,12.23,74.189 +494097,5.5547,77.092 +494098,7.4197,76.117 +494099,9.2148,75.156 +494100,10.95,74.207 +494101,4.1907,77.03 +494102,6.0844,76.082 +494103,7.9071,75.147 +494104,9.6688,74.226 +494105,2.828,76.968 +494106,4.7497,76.046 +494107,6.599,75.139 +494108,8.3862,74.245 +494109,1.4668,76.904 +494110,3.4154,76.01 +494111,5.2904,75.131 +494112,7.1024,74.265 +494113,0.1071,76.84 +494114,2.0816,75.974 +494115,3.9814,75.123 +494116,5.8171,74.286 +494117,358.75,76.775 +494118,0.74838,75.938 +494119,2.672,75.116 +494120,4.5305,74.307 +494121,357.39,76.71 +494122,359.42,75.901 +494123,1.3621,75.108 +494124,3.2424,74.33 +494125,356.04,76.644 +494126,358.08,75.864 +494127,0.05168,75.101 +494128,1.9529,74.352 +494129,354.68,76.577 +494130,356.75,75.828 +494131,358.74,75.094 +494132,0.66201,74.376 +494133,353.33,76.51 +494134,355.42,75.79 +494135,357.43,75.087 +494136,359.37,74.399 +494137,351.98,76.442 +494138,354.09,75.753 +494139,356.12,75.081 +494140,358.08,74.424 +494141,350.63,76.374 +494142,352.76,75.715 +494143,354.81,75.074 +494144,356.78,74.449 +494145,349.28,76.305 +494146,351.43,75.678 +494147,353.49,75.068 +494148,355.48,74.474 +494149,347.94,76.235 +494150,350.1,75.64 +494151,352.18,75.062 +494152,354.19,74.5 +494153,346.59,76.165 +494154,348.77,75.602 +494155,350.87,75.056 +494156,352.89,74.526 +494157,345.25,76.095 +494158,347.44,75.564 +494159,349.55,75.05 +494160,351.58,74.553 +494161,343.91,76.024 +494162,346.12,75.525 +494163,348.24,75.045 +494164,350.28,74.58 +494165,342.57,75.953 +494166,344.79,75.487 +494167,346.92,75.039 +494168,348.98,74.608 +494169,341.23,75.881 +494170,343.46,75.449 +494171,345.61,75.034 +494172,347.67,74.636 +494173,339.9,75.809 +494174,342.14,75.41 +494175,344.29,75.029 +494176,346.36,74.664 +494177,338.56,75.737 +494178,340.81,75.371 +494179,342.97,75.023 +494180,345.05,74.692 +494181,337.23,75.665 +494182,339.49,75.332 +494183,341.65,75.018 +494184,343.74,74.721 +494185,335.9,75.592 +494186,338.16,75.294 +494187,340.34,75.013 +494188,342.43,74.75 +494189,334.57,75.519 +494190,336.84,75.255 +494191,339.02,75.008 +494192,341.12,74.779 +494193,333.25,75.446 +494194,335.52,75.216 +494195,337.7,75.004 +494196,339.8,74.808 +494197,331.92,75.372 +494198,334.2,75.176 +494199,336.38,74.999 +494200,338.48,74.837 +494201,330.6,75.299 +494202,332.87,75.137 +494203,335.06,74.994 +494204,337.17,74.867 +494205,329.27,75.225 +494206,331.55,75.098 +494207,333.74,74.989 +494208,335.84,74.896 +494209,327.95,75.151 +494210,330.23,75.059 +494211,332.42,74.985 +494212,334.52,74.926 +494213,326.64,75.077 +494214,328.91,75.02 +494215,331.1,74.98 +494216,333.2,74.956 +494217,325.32,75.004 +494218,327.59,74.981 +494219,329.77,74.975 +494220,331.87,74.985 +494221,324,74.93 +494222,326.27,74.941 +494223,328.45,74.971 +494224,330.55,75.015 +494225,322.69,74.856 +494226,324.96,74.902 +494227,327.13,74.966 +494228,329.22,75.045 +494229,321.38,74.782 +494230,323.64,74.863 +494231,325.8,74.961 +494232,327.89,75.074 +494233,320.07,74.708 +494234,322.32,74.824 +494235,324.48,74.957 +494236,326.56,75.104 +494237,318.76,74.635 +494238,321.01,74.785 +494239,323.16,74.952 +494240,325.22,75.133 +494241,317.46,74.561 +494242,319.69,74.746 +494243,321.83,74.947 +494244,323.89,75.162 +494245,316.15,74.488 +494246,318.37,74.707 +494247,320.5,74.942 +494248,322.55,75.191 +494249,314.85,74.414 +494250,317.06,74.668 +494251,319.18,74.937 +494252,321.22,75.22 +494253,313.55,74.341 +494254,315.75,74.629 +494255,317.85,74.932 +494256,319.88,75.248 +494257,312.25,74.269 +494258,314.43,74.591 +494259,316.52,74.927 +494260,318.54,75.277 +494261,310.95,74.196 +494262,313.12,74.552 +494263,315.2,74.922 +494264,317.19,75.305 +494265,309.65,74.124 +494266,311.81,74.513 +494267,313.87,74.917 +494268,315.85,75.332 +494269,308.36,74.052 +494270,310.49,74.475 +494271,312.54,74.912 +494272,314.5,75.36 +494273,307.07,73.981 +494274,309.18,74.437 +494275,311.21,74.906 +494276,313.16,75.387 +494277,305.78,73.909 +494278,307.87,74.399 +494279,309.88,74.9 +494280,311.81,75.413 +494281,304.49,73.839 +494282,306.56,74.36 +494283,308.55,74.895 +494284,310.46,75.439 +494285,303.2,73.768 +494286,305.25,74.323 +494287,307.22,74.889 +494288,309.11,75.465 +494289,301.91,73.699 +494290,303.94,74.285 +494291,305.89,74.883 +494292,307.75,75.49 +494293,300.63,73.629 +494294,302.63,74.247 +494295,304.56,74.877 +494296,306.4,75.515 +494297,299.35,73.56 +494298,301.33,74.21 +494299,303.22,74.87 +494300,305.04,75.539 +494301,298.06,73.492 +494302,300.02,74.173 +494303,301.89,74.864 +494304,303.69,75.563 +494305,296.78,73.424 +494306,298.71,74.136 +494307,300.56,74.857 +494308,302.33,75.586 +494309,295.51,73.357 +494310,297.4,74.099 +494311,299.22,74.85 +494312,300.97,75.608 +494313,294.23,73.291 +494314,296.1,74.062 +494315,297.89,74.843 +494316,299.61,75.63 +494317,292.95,73.225 +494318,294.79,74.026 +494319,296.55,74.836 +494320,298.25,75.651 +494321,291.68,73.159 +494322,293.49,73.99 +494323,295.22,74.828 +494324,296.88,75.672 +494325,290.41,73.095 +494326,292.18,73.954 +494327,293.88,74.82 +494328,295.52,75.692 +494329,289.13,73.031 +494330,290.88,73.918 +494331,292.55,74.812 +494332,294.15,75.711 +494333,287.86,72.968 +494334,289.57,73.883 +494335,291.21,74.804 +494336,292.78,75.729 +494337,286.59,72.905 +494338,288.27,73.848 +494339,289.88,74.796 +494340,291.41,75.747 +494341,285.33,72.844 +494342,286.97,73.813 +494343,288.54,74.787 +494344,290.04,75.764 +494345,284.06,72.783 +494346,285.67,73.778 +494347,287.2,74.778 +494348,288.67,75.78 +494349,282.8,72.723 +494350,284.36,73.744 +494351,285.86,74.769 +494352,287.3,75.796 +494353,281.53,72.664 +494354,283.06,73.71 +494355,284.53,74.759 +494356,285.93,75.81 +494357,280.27,72.606 +494358,281.76,73.676 +494359,283.19,74.749 +494360,284.55,75.824 +494361,279.01,72.548 +494362,280.46,73.642 +494363,281.85,74.739 +494364,283.18,75.837 +494365,277.75,72.492 +494366,279.16,73.609 +494367,280.51,74.729 +494368,281.8,75.849 +494369,276.49,72.436 +494370,277.86,73.576 +494371,279.17,74.718 +494372,280.42,75.86 +494373,275.23,72.381 +494374,276.56,73.544 +494375,277.83,74.707 +494376,279.04,75.87 +494377,273.97,72.328 +494378,275.26,73.511 +494379,276.49,74.696 +494380,277.66,75.879 +494381,272.72,72.275 +494382,273.96,73.479 +494383,275.15,74.684 +494384,276.28,75.887 +494385,271.46,72.223 +494386,272.66,73.448 +494387,273.81,74.672 +494388,274.9,75.895 +494389,270.21,72.173 +494390,271.36,73.416 +494391,272.47,74.66 +494392,273.52,75.901 +494393,268.95,72.123 +494394,270.07,73.385 +494395,271.12,74.647 +494396,272.13,75.906 +494397,267.7,72.074 +494398,268.77,73.355 +494399,269.78,74.634 +494400,270.75,75.911 +494401,266.45,72.027 +494402,267.47,73.325 +494403,268.44,74.621 +494404,269.36,75.914 +494405,265.2,71.98 +494406,266.17,73.295 +494407,267.1,74.607 +494408,267.98,75.916 +494409,263.95,71.935 +494410,264.88,73.265 +494411,265.76,74.593 +494412,266.59,75.918 +494413,262.7,71.891 +494414,263.58,73.236 +494415,264.41,74.579 +494416,265.2,75.918 +494417,261.45,71.847 +494418,262.28,73.207 +494419,263.07,74.564 +494420,263.82,75.917 +494421,260.2,71.805 +494422,260.99,73.179 +494423,261.73,74.549 +494424,262.43,75.915 +494425,258.95,71.764 +494426,259.69,73.151 +494427,260.39,74.534 +494428,261.04,75.912 +494429,257.7,71.724 +494430,258.39,73.123 +494431,259.04,74.518 +494432,259.65,75.908 +494433,256.46,71.686 +494434,257.1,73.096 +494435,257.7,74.502 +494436,258.26,75.903 +494437,255.21,71.648 +494438,255.8,73.069 +494439,256.35,74.485 +494440,256.87,75.896 +494441,253.97,71.612 +494442,254.51,73.042 +494443,255.01,74.469 +494444,255.47,75.889 +494445,252.72,71.577 +494446,253.21,73.016 +494447,253.67,74.451 +494448,254.08,75.88 +494449,251.48,71.543 +494450,251.92,72.99 +494451,252.32,74.434 +494452,252.69,75.871 +494453,250.23,71.51 +494454,250.62,72.965 +494455,250.98,74.416 +494456,251.3,75.86 +494457,248.99,71.478 +494458,249.33,72.94 +494459,249.63,74.397 +494460,249.9,75.848 +494461,247.74,71.448 +494462,248.03,72.916 +494463,248.29,74.378 +494464,248.51,75.835 +494465,246.5,71.419 +494466,246.74,72.891 +494467,246.95,74.359 +494468,247.12,75.82 +494469,245.25,71.391 +494470,245.44,72.868 +494471,245.6,74.34 +494472,245.72,75.805 +494473,244.01,71.364 +494474,244.15,72.844 +494475,244.26,74.32 +494476,244.33,75.788 +494477,242.77,71.339 +494478,242.86,72.821 +494479,242.91,74.299 +494480,242.94,75.77 +494481,241.52,71.314 +494482,241.56,72.799 +494483,241.57,74.278 +494484,241.54,75.751 +494485,240.28,71.291 +494486,240.27,72.777 +494487,240.22,74.257 +494488,240.15,75.731 +494489,239.04,71.269 +494490,238.97,72.755 +494491,238.88,74.236 +494492,238.75,75.71 +494493,237.79,71.249 +494494,237.68,72.734 +494495,237.53,74.214 +494496,237.36,75.687 +494497,236.55,71.229 +494498,236.38,72.713 +494499,236.19,74.191 +494500,235.96,75.664 +494501,235.3,71.211 +494502,235.09,72.692 +494503,234.85,74.169 +494504,234.57,75.639 +494505,234.06,71.194 +494506,233.8,72.672 +494507,233.5,74.145 +494508,233.17,75.613 +494509,232.81,71.178 +494510,232.5,72.652 +494511,232.16,74.122 +494512,231.78,75.586 +494513,231.57,71.164 +494514,231.21,72.633 +494515,230.81,74.098 +494516,230.39,75.557 +494517,230.33,71.15 +494518,229.91,72.614 +494519,229.47,74.074 +494520,228.99,75.528 +494521,229.08,71.138 +494522,228.62,72.596 +494523,228.12,74.049 +494524,227.6,75.497 +494525,227.83,71.127 +494526,227.32,72.577 +494527,226.78,74.024 +494528,226.2,75.465 +494529,226.59,71.118 +494530,226.03,72.56 +494531,225.44,73.998 +494532,224.81,75.432 +494533,225.34,71.109 +494534,224.73,72.542 +494535,224.09,73.973 +494536,223.42,75.398 +494537,224.09,71.102 +494538,223.44,72.525 +494539,222.75,73.946 +494540,222.03,75.363 +494541,222.85,71.095 +494542,222.14,72.509 +494543,221.41,73.92 +494544,220.64,75.327 +494545,221.6,71.09 +494546,220.85,72.493 +494547,220.06,73.893 +494548,219.24,75.289 +494549,220.35,71.086 +494550,219.55,72.477 +494551,218.72,73.865 +494552,217.85,75.251 +494553,219.1,71.083 +494554,218.26,72.461 +494555,217.38,73.838 +494556,216.46,75.211 +494557,217.85,71.082 +494558,216.96,72.446 +494559,216.03,73.809 +494560,215.07,75.17 +494561,216.6,71.081 +494562,215.66,72.432 +494563,214.69,73.781 +494564,213.68,75.128 +494565,215.35,71.082 +494566,214.37,72.417 +494567,213.35,73.752 +494568,212.3,75.085 +494569,214.09,71.083 +494570,213.07,72.403 +494571,212.01,73.723 +494572,210.91,75.041 +494573,212.84,71.086 +494574,211.77,72.39 +494575,210.67,73.693 +494576,209.52,74.996 +494577,211.59,71.09 +494578,210.48,72.377 +494579,209.33,73.664 +494580,208.14,74.95 +494581,210.33,71.095 +494582,209.18,72.364 +494583,207.99,73.633 +494584,206.75,74.903 +494585,209.08,71.1 +494586,207.88,72.351 +494587,206.64,73.603 +494588,205.37,74.855 +494589,207.82,71.107 +494590,206.58,72.339 +494591,205.3,73.572 +494592,203.98,74.805 +494593,206.56,71.115 +494594,205.28,72.327 +494595,203.96,73.541 +494596,202.6,74.755 +494597,205.3,71.124 +494598,203.99,72.315 +494599,202.63,73.509 +494600,201.22,74.704 +494601,204.04,71.134 +494602,202.69,72.304 +494603,201.29,73.477 +494604,199.84,74.652 +494605,202.78,71.144 +494606,201.39,72.293 +494607,199.95,73.445 +494608,198.46,74.599 +494609,201.52,71.156 +494610,200.09,72.283 +494611,198.61,73.413 +494612,197.08,74.545 +494613,200.26,71.169 +494614,198.79,72.272 +494615,197.27,73.38 +494616,195.7,74.49 +494617,198.99,71.182 +494618,197.49,72.262 +494619,195.93,73.347 +494620,194.32,74.434 +494621,197.73,71.197 +494622,196.19,72.253 +494623,194.6,73.313 +494624,192.95,74.378 +494625,196.46,71.212 +494626,194.89,72.243 +494627,193.26,73.28 +494628,191.57,74.32 +494629,195.19,71.228 +494630,193.58,72.234 +494631,191.92,73.246 +494632,190.2,74.262 +494633,193.92,71.245 +494634,192.28,72.225 +494635,190.59,73.211 +494636,188.83,74.203 +494637,192.65,71.262 +494638,190.98,72.217 +494639,189.25,73.177 +494640,187.46,74.143 +494641,191.38,71.281 +494642,189.68,72.208 +494643,187.91,73.142 +494644,186.09,74.082 +494645,190.11,71.3 +494646,188.37,72.2 +494647,186.58,73.107 +494648,184.72,74.021 +494649,188.84,71.32 +494650,187.07,72.192 +494651,185.25,73.072 +494652,183.35,73.958 +494653,187.56,71.34 +494654,185.77,72.185 +494655,183.91,73.036 +494656,181.99,73.895 +494657,186.28,71.362 +494658,184.46,72.177 +494659,182.58,73.001 +494660,180.63,73.832 +494661,185,71.384 +494662,183.16,72.17 +494663,181.25,72.965 +494664,179.26,73.767 +494665,183.72,71.406 +494666,181.85,72.163 +494667,179.91,72.929 +494668,177.9,73.702 +494669,182.44,71.429 +494670,180.54,72.156 +494671,178.58,72.892 +494672,176.54,73.637 +494673,181.16,71.453 +494674,179.24,72.15 +494675,177.25,72.856 +494676,175.18,73.571 +494677,179.88,71.477 +494678,177.93,72.144 +494679,175.92,72.819 +494680,173.83,73.504 +494681,178.59,71.502 +494682,176.62,72.137 +494683,174.59,72.782 +494684,172.47,73.436 +494685,177.3,71.528 +494686,175.32,72.131 +494687,173.26,72.745 +494688,171.12,73.368 +494689,176.01,71.553 +494690,174.01,72.126 +494691,171.93,72.708 +494692,169.77,73.3 +494693,174.72,71.58 +494694,172.7,72.12 +494695,170.6,72.67 +494696,168.42,73.231 +494697,173.43,71.606 +494698,171.39,72.114 +494699,169.27,72.633 +494700,167.07,73.162 +494701,172.14,71.633 +494702,170.08,72.109 +494703,167.95,72.595 +494704,165.72,73.092 +494705,170.84,71.661 +494706,168.77,72.104 +494707,166.62,72.557 +494708,164.38,73.022 +494709,169.55,71.689 +494710,167.46,72.098 +494711,165.29,72.519 +494712,163.03,72.951 +494713,168.25,71.717 +494714,166.15,72.093 +494715,163.97,72.481 +494716,161.69,72.88 +494717,166.95,71.745 +494718,164.84,72.088 +494719,162.64,72.443 +494720,160.35,72.809 +494721,165.65,71.774 +494722,163.52,72.084 +494723,161.32,72.404 +494724,159.01,72.737 +494725,164.35,71.803 +494726,162.21,72.079 +494727,159.99,72.366 +494728,157.68,72.665 +494729,163.04,71.832 +494730,160.9,72.074 +494731,158.67,72.328 +494732,156.34,72.593 +494733,161.73,71.861 +494734,159.58,72.07 +494735,157.35,72.289 +494736,155.01,72.521 +494737,160.43,71.891 +494738,158.27,72.065 +494739,156.02,72.25 +494740,153.68,72.448 +494741,159.12,71.92 +494742,156.95,72.061 +494743,154.7,72.212 +494744,152.35,72.375 +494745,157.81,71.95 +494746,155.64,72.056 +494747,153.38,72.173 +494748,151.02,72.302 +494749,156.49,71.98 +494750,154.32,72.052 +494751,152.06,72.134 +494752,149.7,72.229 +494753,155.18,72.01 +494754,153,72.047 +494755,150.74,72.096 +494756,148.37,72.156 +494757,153.86,72.04 +494758,151.69,72.043 +494759,149.42,72.057 +494760,147.05,72.083 +494761,152.54,72.069 +494762,150.37,72.038 +494763,148.1,72.018 +494764,145.73,72.01 +494765,151.23,72.099 +494766,149.05,72.034 +494767,146.78,71.979 +494768,144.41,71.937 +494769,149.9,72.129 +494770,147.73,72.029 +494771,145.47,71.94 +494772,143.09,71.863 +494773,148.58,72.159 +494774,146.41,72.025 +494775,144.15,71.902 +494776,141.78,71.79 +494777,147.26,72.188 +494778,145.09,72.02 +494779,142.83,71.863 +494780,140.47,71.717 +494781,145.93,72.218 +494782,143.77,72.016 +494783,141.52,71.824 +494784,139.15,71.644 +494785,144.6,72.247 +494786,142.45,72.011 +494787,140.2,71.786 +494788,137.85,71.571 +494789,143.27,72.276 +494790,141.13,72.007 +494791,138.89,71.747 +494792,136.54,71.499 +494793,141.94,72.305 +494794,139.8,72.002 +494795,137.57,71.709 +494796,135.23,71.426 +494797,140.61,72.333 +494798,138.48,71.997 +494799,136.26,71.67 +494800,133.93,71.354 +494801,139.28,72.361 +494802,137.16,71.992 +494803,134.95,71.632 +494804,132.63,71.282 +494805,137.94,72.389 +494806,135.83,71.987 +494807,133.63,71.594 +494808,131.32,71.21 +494809,136.6,72.417 +494810,134.51,71.982 +494811,132.32,71.555 +494812,130.03,71.139 +494813,135.26,72.444 +494814,133.18,71.977 +494815,131.01,71.517 +494816,128.73,71.067 +494817,133.92,72.471 +494818,131.86,71.972 +494819,129.7,71.479 +494820,127.43,70.997 +494821,132.58,72.497 +494822,130.53,71.966 +494823,128.39,71.442 +494824,126.14,70.926 +494825,131.24,72.523 +494826,129.21,71.96 +494827,127.08,71.404 +494828,124.85,70.856 +494829,129.89,72.549 +494830,127.88,71.955 +494831,125.77,71.366 +494832,123.56,70.787 +494833,128.55,72.574 +494834,126.55,71.949 +494835,124.46,71.329 +494836,122.27,70.717 +494837,127.2,72.599 +494838,125.22,71.943 +494839,123.16,71.292 +494840,120.98,70.649 +494841,125.85,72.623 +494842,123.89,71.936 +494843,121.85,71.255 +494844,119.7,70.581 +494845,124.5,72.646 +494846,122.57,71.93 +494847,120.54,71.218 +494848,118.42,70.513 +494849,123.14,72.669 +494850,121.24,71.923 +494851,119.24,71.181 +494852,117.14,70.446 +494853,121.79,72.691 +494854,119.91,71.916 +494855,117.93,71.145 +494856,115.86,70.38 +494857,120.43,72.713 +494858,118.58,71.909 +494859,116.63,71.109 +494860,114.58,70.314 +494861,119.08,72.734 +494862,117.24,71.902 +494863,115.32,71.073 +494864,113.3,70.249 +494865,117.72,72.754 +494866,115.91,71.894 +494867,114.02,71.037 +494868,112.03,70.184 +494869,116.36,72.774 +494870,114.58,71.887 +494871,112.71,71.001 +494872,110.75,70.12 +494873,115,72.793 +494874,113.25,71.879 +494875,111.41,70.966 +494876,109.48,70.057 +494877,113.64,72.811 +494878,111.91,71.87 +494879,110.11,70.931 +494880,108.21,69.994 +494881,112.27,72.828 +494882,110.58,71.862 +494883,108.81,70.896 +494884,106.94,69.933 +494885,110.91,72.845 +494886,109.25,71.853 +494887,107.51,70.861 +494888,105.67,69.872 +494889,109.54,72.861 +494890,107.91,71.844 +494891,106.2,70.827 +494892,104.41,69.812 +494893,108.17,72.876 +494894,106.58,71.835 +494895,104.9,70.793 +494896,103.14,69.752 +494897,106.8,72.89 +494898,105.24,71.825 +494899,103.6,70.759 +494900,101.88,69.694 +494901,105.43,72.903 +494902,103.91,71.815 +494903,102.3,70.726 +494904,100.62,69.636 +494905,104.06,72.916 +494906,102.57,71.805 +494907,101.01,70.692 +494908,99.356,69.58 +494909,102.69,72.927 +494910,101.24,71.795 +494911,99.707,70.66 +494912,98.096,69.524 +494913,101.31,72.938 +494914,99.898,71.784 +494915,98.409,70.627 +494916,96.838,69.469 +494917,99.94,72.947 +494918,98.561,71.773 +494919,97.111,70.595 +494920,95.581,69.415 +494921,98.564,72.956 +494922,97.224,71.761 +494923,95.813,70.563 +494924,94.325,69.362 +494925,97.187,72.964 +494926,95.886,71.75 +494927,94.516,70.531 +494928,93.07,69.31 +494929,95.809,72.971 +494930,94.548,71.738 +494931,93.219,70.5 +494932,91.816,69.259 +494933,94.43,72.977 +494934,93.21,71.725 +494935,91.923,70.469 +494936,90.564,69.209 +494937,93.05,72.981 +494938,91.871,71.712 +494939,90.627,70.438 +494940,89.312,69.16 +494941,91.669,72.985 +494942,90.532,71.699 +494943,89.331,70.408 +494944,88.062,69.112 +494945,90.287,72.988 +494946,89.192,71.686 +494947,88.036,70.378 +494948,86.812,69.065 +494949,88.904,72.99 +494950,87.853,71.672 +494951,86.741,70.348 +494952,85.563,69.019 +494953,87.52,72.99 +494954,86.513,71.658 +494955,85.446,70.319 +494956,84.316,68.974 +494957,86.136,72.99 +494958,85.172,71.644 +494959,84.152,70.29 +494960,83.069,68.931 +494961,84.75,72.988 +494962,83.832,71.629 +494963,82.858,70.261 +494964,81.823,68.888 +494965,83.364,72.986 +494966,82.491,71.613 +494967,81.564,70.233 +494968,80.577,68.847 +494969,81.977,72.982 +494970,81.15,71.598 +494971,80.27,70.205 +494972,79.333,68.806 +494973,80.59,72.977 +494974,79.809,71.582 +494975,78.977,70.178 +494976,78.089,68.767 +494977,79.201,72.971 +494978,78.468,71.566 +494979,77.684,70.151 +494980,76.845,68.729 +494981,77.812,72.964 +494982,77.126,71.549 +494983,76.391,70.124 +494984,75.603,68.692 +494985,76.423,72.956 +494986,75.784,71.532 +494987,75.098,70.098 +494988,74.361,68.657 +494989,75.033,72.947 +494990,74.442,71.514 +494991,73.806,70.072 +494992,73.119,68.622 +494993,73.642,72.936 +494994,73.1,71.496 +494995,72.513,70.047 +494996,71.878,68.589 +494997,72.251,72.925 +494998,71.758,71.478 +494999,71.221,70.021 +495000,70.638,68.557 +495001,70.859,72.912 +495002,70.416,71.459 +495003,69.929,69.997 +495004,69.398,68.526 +495005,69.467,72.898 +495006,69.073,71.44 +495007,68.637,69.972 +495008,68.158,68.496 +495009,68.075,72.883 +495010,67.73,71.421 +495011,67.346,69.948 +495012,66.918,68.467 +495013,66.682,72.867 +495014,66.388,71.401 +495015,66.054,69.925 +495016,65.679,68.44 +495017,65.289,72.849 +495018,65.045,71.381 +495019,64.763,69.902 +495020,64.44,68.414 +495021,63.896,72.831 +495022,63.702,71.36 +495023,63.471,69.879 +495024,63.202,68.389 +495025,62.502,72.811 +495026,62.359,71.339 +495027,62.18,69.857 +495028,61.963,68.365 +495029,61.108,72.79 +495030,61.016,71.317 +495031,60.889,69.835 +495032,60.725,68.343 +495033,59.714,72.767 +495034,59.673,71.295 +495035,59.598,69.813 +495036,59.487,68.322 +495037,58.32,72.744 +495038,58.33,71.273 +495039,58.307,69.792 +495040,58.248,68.302 +495041,56.925,72.72 +495042,56.987,71.251 +495043,57.015,69.771 +495044,57.01,68.283 +495045,55.531,72.694 +495046,55.644,71.227 +495047,55.724,69.751 +495048,55.772,68.265 +495049,54.136,72.667 +495050,54.301,71.204 +495051,54.433,69.731 +495052,54.533,68.249 +495053,52.742,72.639 +495054,52.958,71.18 +495055,53.142,69.711 +495056,53.295,68.234 +495057,51.348,72.609 +495058,51.615,71.156 +495059,51.851,69.692 +495060,52.056,68.22 +495061,49.953,72.579 +495062,50.272,71.131 +495063,50.56,69.673 +495064,50.817,68.207 +495065,48.559,72.547 +495066,48.929,71.106 +495067,49.269,69.655 +495068,49.578,68.195 +495069,47.165,72.515 +495070,47.586,71.081 +495071,47.977,69.637 +495072,48.339,68.185 +495073,45.771,72.481 +495074,46.243,71.055 +495075,46.686,69.619 +495076,47.099,68.176 +495077,44.377,72.446 +495078,44.901,71.028 +495079,45.395,69.602 +495080,45.859,68.168 +495081,42.984,72.409 +495082,43.558,71.002 +495083,44.103,69.585 +495084,44.618,68.161 +495085,41.591,72.372 +495086,42.216,70.975 +495087,42.811,69.569 +495088,43.377,68.155 +495089,40.198,72.334 +495090,40.874,70.947 +495091,41.519,69.553 +495092,42.136,68.151 +495093,38.806,72.294 +495094,39.532,70.92 +495095,40.227,69.537 +495096,40.894,68.147 +495097,37.414,72.253 +495098,38.19,70.891 +495099,38.935,69.522 +495100,39.651,68.145 +495101,36.022,72.211 +495102,36.848,70.863 +495103,37.643,69.507 +495104,38.408,68.144 +495105,34.632,72.169 +495106,35.507,70.834 +495107,36.351,69.492 +495108,37.164,68.144 +495109,33.241,72.125 +495110,34.166,70.805 +495111,35.058,69.478 +495112,35.92,68.145 +495113,31.851,72.079 +495114,32.825,70.775 +495115,33.765,69.464 +495116,34.675,68.147 +495117,30.462,72.033 +495118,31.484,70.745 +495119,32.472,69.45 +495120,33.429,68.151 +495121,29.073,71.986 +495122,30.143,70.715 +495123,31.179,69.437 +495124,32.182,68.155 +495125,27.686,71.938 +495126,28.803,70.684 +495127,29.885,69.424 +495128,30.935,68.16 +495129,26.298,71.889 +495130,27.463,70.653 +495131,28.591,69.412 +495132,29.686,68.167 +495133,24.912,71.838 +495134,26.123,70.622 +495135,27.297,69.4 +495136,28.437,68.174 +495137,23.526,71.787 +495138,24.784,70.59 +495139,26.003,69.388 +495140,27.187,68.182 +495141,22.142,71.735 +495142,23.445,70.558 +495143,24.708,69.376 +495144,25.936,68.192 +495145,20.758,71.682 +495146,22.106,70.526 +495147,23.413,69.365 +495148,24.684,68.202 +495149,19.375,71.628 +495150,20.767,70.493 +495151,22.118,69.354 +495152,23.43,68.213 +495153,17.993,71.573 +495154,19.429,70.46 +495155,20.822,69.344 +495156,22.176,68.226 +495157,16.611,71.517 +495158,18.091,70.427 +495159,19.526,69.333 +495160,20.921,68.239 +495161,15.231,71.46 +495162,16.754,70.393 +495163,18.23,69.323 +495164,19.665,68.253 +495165,13.852,71.402 +495166,15.417,70.359 +495167,16.933,69.314 +495168,18.407,68.268 +495169,12.474,71.344 +495170,14.08,70.325 +495171,15.636,69.304 +495172,17.148,68.283 +495173,11.098,71.284 +495174,12.744,70.29 +495175,14.339,69.295 +495176,15.888,68.3 +495177,9.7219,71.224 +495178,11.408,70.256 +495179,13.041,69.286 +495180,14.627,68.317 +495181,8.3474,71.163 +495182,10.072,70.221 +495183,11.743,69.278 +495184,13.365,68.335 +495185,6.9741,71.101 +495186,8.7373,70.185 +495187,10.444,69.269 +495188,12.101,68.354 +495189,5.602,71.038 +495190,7.4027,70.15 +495191,9.145,69.261 +495192,10.836,68.374 +495193,4.2313,70.975 +495194,6.0686,70.114 +495195,7.8455,69.253 +495196,9.57,68.394 +495197,2.8618,70.911 +495198,4.7349,70.078 +495199,6.5457,69.246 +495200,8.3024,68.415 +495201,1.4937,70.846 +495202,3.4016,70.042 +495203,5.2453,69.238 +495204,7.0334,68.437 +495205,0.12693,70.781 +495206,2.0689,70.005 +495207,3.9446,69.231 +495208,5.763,68.459 +495209,358.76,70.715 +495210,0.7366,69.968 +495211,2.6434,69.224 +495212,4.4912,68.482 +495213,357.4,70.648 +495214,359.4,69.931 +495215,1.3417,69.217 +495216,3.2179,68.506 +495217,356.04,70.581 +495218,358.07,69.894 +495219,0.03956,69.21 +495220,1.9432,68.53 +495221,354.67,70.513 +495222,356.74,69.857 +495223,358.74,69.204 +495224,0.66699,68.555 +495225,353.31,70.445 +495226,355.41,69.819 +495227,357.43,69.198 +495228,359.39,68.58 +495229,351.96,70.376 +495230,354.08,69.782 +495231,356.13,69.192 +495232,358.11,68.605 +495233,350.6,70.306 +495234,352.75,69.744 +495235,354.83,69.186 +495236,356.83,68.632 +495237,349.25,70.236 +495238,351.42,69.706 +495239,353.52,69.18 +495240,355.55,68.658 +495241,347.89,70.166 +495242,350.1,69.668 +495243,352.22,69.174 +495244,354.26,68.685 +495245,346.54,70.095 +495246,348.77,69.629 +495247,350.91,69.169 +495248,352.98,68.713 +495249,345.19,70.024 +495250,347.44,69.591 +495251,349.6,69.163 +495252,351.69,68.74 +495253,343.84,69.952 +495254,346.12,69.552 +495255,348.3,69.158 +495256,350.4,68.768 +495257,342.5,69.88 +495258,344.79,69.514 +495259,346.99,69.153 +495260,349.11,68.797 +495261,341.15,69.808 +495262,343.46,69.475 +495263,345.68,69.147 +495264,347.82,68.825 +495265,339.81,69.735 +495266,342.14,69.436 +495267,344.37,69.142 +495268,346.53,68.854 +495269,338.47,69.662 +495270,340.82,69.397 +495271,343.07,69.137 +495272,345.23,68.884 +495273,337.13,69.589 +495274,339.49,69.358 +495275,341.76,69.132 +495276,343.93,68.913 +495277,335.79,69.515 +495278,338.17,69.319 +495279,340.45,69.128 +495280,342.64,68.942 +495281,334.45,69.442 +495282,336.85,69.279 +495283,339.14,69.123 +495284,341.34,68.972 +495285,333.12,69.368 +495286,335.52,69.24 +495287,337.82,69.118 +495288,340.03,69.002 +495289,331.79,69.294 +495290,334.2,69.201 +495291,336.51,69.113 +495292,338.73,69.032 +495293,330.46,69.22 +495294,332.88,69.161 +495295,335.2,69.109 +495296,337.43,69.062 +495297,329.13,69.146 +495298,331.56,69.122 +495299,333.89,69.104 +495300,336.12,69.092 +495301,327.8,69.072 +495302,330.24,69.083 +495303,332.58,69.099 +495304,334.81,69.121 +495305,326.48,68.998 +495306,328.92,69.043 +495307,331.26,69.095 +495308,333.5,69.151 +495309,325.15,68.924 +495310,327.61,69.004 +495311,329.95,69.09 +495312,332.19,69.181 +495313,323.83,68.85 +495314,326.29,68.964 +495315,328.63,69.085 +495316,330.87,69.211 +495317,322.51,68.776 +495318,324.97,68.925 +495319,327.32,69.08 +495320,329.56,69.241 +495321,321.19,68.702 +495322,323.66,68.886 +495323,326,69.075 +495324,328.24,69.27 +495325,319.88,68.628 +495326,322.34,68.846 +495327,324.68,69.071 +495328,326.92,69.3 +495329,318.56,68.554 +495330,321.03,68.807 +495331,323.37,69.066 +495332,325.6,69.329 +495333,317.25,68.48 +495334,319.71,68.768 +495335,322.05,69.061 +495336,324.28,69.358 +495337,315.94,68.407 +495338,318.4,68.729 +495339,320.73,69.055 +495340,322.96,69.386 +495341,314.63,68.334 +495342,317.08,68.69 +495343,319.41,69.05 +495344,321.63,69.415 +495345,313.33,68.261 +495346,315.77,68.651 +495347,318.09,69.045 +495348,320.3,69.443 +495349,312.02,68.188 +495350,314.46,68.612 +495351,316.77,69.039 +495352,318.98,69.471 +495353,310.72,68.116 +495354,313.15,68.573 +495355,315.45,69.034 +495356,317.64,69.498 +495357,309.42,68.044 +495358,311.84,68.534 +495359,314.13,69.028 +495360,316.31,69.525 +495361,308.12,67.972 +495362,310.53,68.496 +495363,312.81,69.022 +495364,314.98,69.552 +495365,306.83,67.901 +495366,309.22,68.457 +495367,311.49,69.016 +495368,313.64,69.578 +495369,305.53,67.83 +495370,307.91,68.419 +495371,310.16,69.01 +495372,312.31,69.604 +495373,304.24,67.76 +495374,306.6,68.381 +495375,308.84,69.004 +495376,310.97,69.629 +495377,302.95,67.69 +495378,305.29,68.343 +495379,307.51,68.998 +495380,309.63,69.654 +495381,301.66,67.621 +495382,303.99,68.305 +495383,306.19,68.991 +495384,308.28,69.678 +495385,300.37,67.552 +495386,302.68,68.267 +495387,304.87,68.984 +495388,306.94,69.702 +495389,299.08,67.483 +495390,301.37,68.23 +495391,303.54,68.977 +495392,305.6,69.725 +495393,297.8,67.416 +495394,300.07,68.192 +495395,302.21,68.97 +495396,304.25,69.747 +495397,296.52,67.348 +495398,298.76,68.155 +495399,300.89,68.963 +495400,302.9,69.769 +495401,295.24,67.282 +495402,297.46,68.118 +495403,299.56,68.955 +495404,301.55,69.79 +495405,293.96,67.216 +495406,296.16,68.082 +495407,298.23,68.947 +495408,300.2,69.811 +495409,292.68,67.151 +495410,294.85,68.045 +495411,296.9,68.939 +495412,298.85,69.83 +495413,291.41,67.086 +495414,293.55,68.009 +495415,295.57,68.93 +495416,297.49,69.849 +495417,290.13,67.022 +495418,292.25,67.973 +495419,294.25,68.922 +495420,296.14,69.868 +495421,288.86,66.959 +495422,290.95,67.937 +495423,292.92,68.913 +495424,294.78,69.885 +495425,287.59,66.897 +495426,289.65,67.902 +495427,291.59,68.904 +495428,293.42,69.902 +495429,286.32,66.836 +495430,288.35,67.866 +495431,290.26,68.894 +495432,292.06,69.918 +495433,285.06,66.775 +495434,287.05,67.831 +495435,288.92,68.885 +495436,290.7,69.933 +495437,283.79,66.715 +495438,285.75,67.797 +495439,287.59,68.875 +495440,289.34,69.947 +495441,282.53,66.656 +495442,284.45,67.762 +495443,286.26,68.864 +495444,287.97,69.961 +495445,281.26,66.598 +495446,283.15,67.728 +495447,284.93,68.854 +495448,286.61,69.973 +495449,280,66.541 +495450,281.85,67.694 +495451,283.6,68.843 +495452,285.24,69.985 +495453,278.74,66.484 +495454,280.55,67.661 +495455,282.26,68.832 +495456,283.87,69.996 +495457,277.48,66.429 +495458,279.26,67.627 +495459,280.93,68.82 +495460,282.51,70.005 +495461,276.23,66.374 +495462,277.96,67.594 +495463,279.59,68.808 +495464,281.13,70.014 +495465,274.97,66.321 +495466,276.67,67.562 +495467,278.26,68.796 +495468,279.76,70.022 +495469,273.72,66.268 +495470,275.37,67.53 +495471,276.92,68.783 +495472,278.39,70.029 +495473,272.46,66.217 +495474,274.07,67.498 +495475,275.59,68.771 +495476,277.02,70.035 +495477,271.21,66.167 +495478,272.78,67.466 +495479,274.25,68.757 +495480,275.64,70.04 +495481,269.96,66.117 +495482,271.49,67.435 +495483,272.92,68.744 +495484,274.27,70.043 +495485,268.71,66.069 +495486,270.19,67.404 +495487,271.58,68.73 +495488,272.89,70.046 +495489,267.46,66.021 +495490,268.9,67.373 +495491,270.24,68.716 +495492,271.51,70.048 +495493,266.22,65.975 +495494,267.61,67.343 +495495,268.91,68.701 +495496,270.13,70.048 +495497,264.97,65.93 +495498,266.31,67.313 +495499,267.57,68.686 +495500,268.75,70.048 +495501,263.73,65.886 +495502,265.02,67.283 +495503,266.23,68.67 +495504,267.37,70.046 +495505,262.48,65.843 +495506,263.73,67.254 +495507,264.89,68.655 +495508,265.99,70.043 +495509,261.24,65.802 +495510,262.44,67.225 +495511,263.56,68.638 +495512,264.6,70.04 +495513,260,65.761 +495514,261.14,67.197 +495515,262.22,68.622 +495516,263.22,70.035 +495517,258.75,65.721 +495518,259.85,67.169 +495519,260.88,68.605 +495520,261.84,70.029 +495521,257.51,65.683 +495522,258.56,67.141 +495523,259.54,68.588 +495524,260.45,70.021 +495525,256.27,65.646 +495526,257.27,67.114 +495527,258.2,68.57 +495528,259.06,70.013 +495529,255.04,65.61 +495530,255.98,67.087 +495531,256.86,68.552 +495532,257.68,70.003 +495533,253.8,65.575 +495534,254.69,67.06 +495535,255.52,68.533 +495536,256.29,69.993 +495537,252.56,65.542 +495538,253.4,67.034 +495539,254.18,68.514 +495540,254.9,69.981 +495541,251.32,65.51 +495542,252.11,67.008 +495543,252.84,68.495 +495544,253.51,69.967 +495545,250.09,65.478 +495546,250.82,66.983 +495547,251.5,68.475 +495548,252.12,69.953 +495549,248.85,65.449 +495550,249.53,66.958 +495551,250.16,68.455 +495552,250.73,69.938 +495553,247.61,65.42 +495554,248.24,66.934 +495555,248.82,68.434 +495556,249.34,69.921 +495557,246.38,65.392 +495558,246.96,66.909 +495559,247.48,68.413 +495560,247.95,69.903 +495561,245.15,65.366 +495562,245.67,66.886 +495563,246.14,68.392 +495564,246.56,69.884 +495565,243.91,65.341 +495566,244.38,66.862 +495567,244.8,68.37 +495568,245.17,69.864 +495569,242.68,65.317 +495570,243.09,66.839 +495571,243.45,68.348 +495572,243.78,69.842 +495573,241.44,65.295 +495574,241.8,66.817 +495575,242.11,68.325 +495576,242.38,69.819 +495577,240.21,65.274 +495578,240.51,66.795 +495579,240.77,68.302 +495580,240.99,69.795 +495581,238.98,65.254 +495582,239.22,66.773 +495583,239.43,68.279 +495584,239.6,69.77 +495585,237.74,65.235 +495586,237.94,66.751 +495587,238.09,68.255 +495588,238.2,69.744 +495589,236.51,65.217 +495590,236.65,66.73 +495591,236.75,68.231 +495592,236.81,69.716 +495593,235.28,65.201 +495594,235.36,66.71 +495595,235.41,68.206 +495596,235.42,69.687 +495597,234.04,65.186 +495598,234.07,66.69 +495599,234.06,68.181 +495600,234.02,69.657 +495601,232.81,65.172 +495602,232.78,66.67 +495603,232.72,68.155 +495604,232.63,69.626 +495605,231.58,65.159 +495606,231.5,66.651 +495607,231.38,68.129 +495608,231.23,69.594 +495609,230.35,65.148 +495610,230.21,66.632 +495611,230.04,68.103 +495612,229.84,69.56 +495613,229.11,65.137 +495614,228.92,66.613 +495615,228.7,68.076 +495616,228.44,69.525 +495617,227.88,65.128 +495618,227.63,66.595 +495619,227.36,68.049 +495620,227.05,69.489 +495621,226.64,65.12 +495622,226.34,66.577 +495623,226.02,68.021 +495624,225.66,69.452 +495625,225.41,65.114 +495626,225.06,66.56 +495627,224.67,67.993 +495628,224.26,69.414 +495629,224.18,65.108 +495630,223.77,66.542 +495631,223.33,67.965 +495632,222.87,69.374 +495633,222.94,65.104 +495634,222.48,66.526 +495635,221.99,67.936 +495636,221.48,69.334 +495637,221.71,65.101 +495638,221.19,66.509 +495639,220.65,67.907 +495640,220.08,69.292 +495641,220.47,65.098 +495642,219.9,66.494 +495643,219.31,67.878 +495644,218.69,69.249 +495645,219.23,65.098 +495646,218.61,66.478 +495647,217.97,67.848 +495648,217.3,69.205 +495649,218,65.098 +495650,217.33,66.463 +495651,216.63,67.817 +495652,215.9,69.16 +495653,216.76,65.099 +495654,216.04,66.448 +495655,215.29,67.787 +495656,214.51,69.114 +495657,215.52,65.101 +495658,214.75,66.433 +495659,213.95,67.755 +495660,213.12,69.066 +495661,214.28,65.105 +495662,213.46,66.419 +495663,212.61,67.724 +495664,211.73,69.018 +495665,213.04,65.109 +495666,212.17,66.405 +495667,211.27,67.692 +495668,210.34,68.968 +495669,211.8,65.115 +495670,210.88,66.392 +495671,209.93,67.66 +495672,208.95,68.918 +495673,210.56,65.122 +495674,209.59,66.379 +495675,208.59,67.628 +495676,207.56,68.866 +495677,209.32,65.129 +495678,208.3,66.366 +495679,207.25,67.595 +495680,206.17,68.813 +495681,208.08,65.138 +495682,207.01,66.354 +495683,205.91,67.561 +495684,204.78,68.76 +495685,206.84,65.148 +495686,205.72,66.342 +495687,204.57,67.528 +495688,203.4,68.705 +495689,205.59,65.158 +495690,204.43,66.33 +495691,203.23,67.494 +495692,202.01,68.649 +495693,204.35,65.17 +495694,203.14,66.318 +495695,201.9,67.46 +495696,200.62,68.593 +495697,203.1,65.182 +495698,201.84,66.307 +495699,200.56,67.425 +495700,199.24,68.535 +495701,201.85,65.196 +495702,200.55,66.296 +495703,199.22,67.39 +495704,197.85,68.477 +495705,200.6,65.21 +495706,199.26,66.285 +495707,197.88,67.355 +495708,196.47,68.417 +495709,199.35,65.225 +495710,197.97,66.275 +495711,196.55,67.32 +495712,195.09,68.357 +495713,198.1,65.241 +495714,196.68,66.265 +495715,195.21,67.284 +495716,193.71,68.296 +495717,196.85,65.258 +495718,195.38,66.255 +495719,193.88,67.248 +495720,192.33,68.234 +495721,195.6,65.276 +495722,194.09,66.246 +495723,192.54,67.211 +495724,190.95,68.171 +495725,194.34,65.294 +495726,192.79,66.236 +495727,191.21,67.175 +495728,189.57,68.107 +495729,193.09,65.313 +495730,191.5,66.227 +495731,189.87,67.138 +495732,188.19,68.043 +495733,191.83,65.333 +495734,190.21,66.219 +495735,188.54,67.101 +495736,186.82,67.978 +495737,190.57,65.354 +495738,188.91,66.21 +495739,187.2,67.063 +495740,185.44,67.912 +495741,189.31,65.375 +495742,187.61,66.202 +495743,185.87,67.026 +495744,184.07,67.845 +495745,188.05,65.397 +495746,186.32,66.194 +495747,184.54,66.988 +495748,182.7,67.777 +495749,186.79,65.42 +495750,185.02,66.186 +495751,183.2,66.949 +495752,181.33,67.709 +495753,185.53,65.443 +495754,183.73,66.178 +495755,181.87,66.911 +495756,179.96,67.641 +495757,184.26,65.467 +495758,182.43,66.171 +495759,180.54,66.872 +495760,178.59,67.571 +495761,183,65.491 +495762,181.13,66.163 +495763,179.21,66.834 +495764,177.22,67.501 +495765,181.73,65.516 +495766,179.83,66.156 +495767,177.88,66.795 +495768,175.86,67.43 +495769,180.46,65.542 +495770,178.53,66.149 +495771,176.55,66.755 +495772,174.49,67.359 +495773,179.19,65.568 +495774,177.23,66.142 +495775,175.22,66.716 +495776,173.13,67.288 +495777,177.92,65.594 +495778,175.93,66.136 +495779,173.89,66.676 +495780,171.77,67.215 +495781,176.64,65.621 +495782,174.63,66.129 +495783,172.56,66.637 +495784,170.41,67.143 +495785,175.37,65.648 +495786,173.33,66.123 +495787,171.23,66.597 +495788,169.05,67.069 +495789,174.09,65.676 +495790,172.03,66.116 +495791,169.9,66.557 +495792,167.69,66.996 +495793,172.81,65.704 +495794,170.73,66.11 +495795,168.58,66.517 +495796,166.34,66.922 +495797,171.53,65.732 +495798,169.43,66.104 +495799,167.25,66.476 +495800,164.99,66.847 +495801,170.25,65.761 +495802,168.13,66.098 +495803,165.93,66.436 +495804,163.63,66.772 +495805,168.97,65.789 +495806,166.82,66.092 +495807,164.6,66.395 +495808,162.28,66.697 +495809,167.68,65.819 +495810,165.52,66.087 +495811,163.28,66.355 +495812,160.94,66.622 +495813,166.39,65.848 +495814,164.21,66.081 +495815,161.95,66.314 +495816,159.59,66.546 +495817,165.11,65.877 +495818,162.91,66.075 +495819,160.63,66.273 +495820,158.25,66.47 +495821,163.82,65.907 +495822,161.6,66.069 +495823,159.3,66.232 +495824,156.9,66.394 +495825,162.52,65.937 +495826,160.3,66.064 +495827,157.98,66.191 +495828,155.56,66.318 +495829,161.23,65.967 +495830,158.99,66.058 +495831,156.66,66.15 +495832,154.22,66.241 +495833,159.94,65.997 +495834,157.68,66.053 +495835,155.34,66.109 +495836,152.88,66.165 +495837,158.64,66.027 +495838,156.38,66.047 +495839,154.02,66.068 +495840,151.55,66.088 +495841,157.34,66.057 +495842,155.07,66.042 +495843,152.7,66.027 +495844,150.22,66.011 +495845,156.04,66.087 +495846,153.76,66.036 +495847,151.38,65.985 +495848,148.88,65.934 +495849,154.74,66.117 +495850,152.45,66.031 +495851,150.06,65.944 +495852,147.55,65.857 +495853,153.43,66.146 +495854,151.14,66.025 +495855,148.74,65.903 +495856,146.23,65.78 +495857,152.13,66.176 +495858,149.83,66.019 +495859,147.43,65.862 +495860,144.9,65.704 +495861,150.82,66.206 +495862,148.52,66.014 +495863,146.11,65.821 +495864,143.57,65.627 +495865,149.51,66.235 +495866,147.21,66.008 +495867,144.79,65.78 +495868,142.25,65.55 +495869,148.2,66.265 +495870,145.89,66.002 +495871,143.48,65.739 +495872,140.93,65.474 +495873,146.89,66.294 +495874,144.58,65.996 +495875,142.16,65.697 +495876,139.61,65.397 +495877,145.57,66.322 +495878,143.27,65.99 +495879,140.85,65.656 +495880,138.3,65.321 +495881,144.26,66.351 +495882,141.95,65.984 +495883,139.54,65.616 +495884,136.98,65.245 +495885,142.94,66.379 +495886,140.64,65.978 +495887,138.22,65.575 +495888,135.67,65.169 +495889,141.62,66.407 +495890,139.32,65.972 +495891,136.91,65.534 +495892,134.36,65.094 +495893,140.3,66.435 +495894,138.01,65.965 +495895,135.6,65.493 +495896,133.05,65.018 +495897,138.98,66.462 +495898,136.69,65.959 +495899,134.29,65.453 +495900,131.74,64.944 +495901,137.65,66.489 +495902,135.38,65.952 +495903,132.98,65.412 +495904,130.44,64.869 +495905,136.32,66.515 +495906,134.06,65.945 +495907,131.67,65.372 +495908,129.14,64.795 +495909,135,66.541 +495910,132.74,65.938 +495911,130.36,65.332 +495912,127.84,64.721 +495913,133.67,66.566 +495914,131.42,65.931 +495915,129.05,65.292 +495916,126.54,64.648 +495917,132.34,66.591 +495918,130.1,65.924 +495919,127.74,65.252 +495920,125.24,64.575 +495921,131,66.615 +495922,128.78,65.916 +495923,126.44,65.212 +495924,123.95,64.503 +495925,129.67,66.639 +495926,127.46,65.909 +495927,125.13,65.172 +495928,122.65,64.431 +495929,128.33,66.662 +495930,126.14,65.901 +495931,123.82,65.133 +495932,121.36,64.36 +495933,126.99,66.685 +495934,124.82,65.893 +495935,122.52,65.094 +495936,120.07,64.289 +495937,125.65,66.707 +495938,123.5,65.884 +495939,121.21,65.055 +495940,118.78,64.219 +495941,124.31,66.728 +495942,122.17,65.876 +495943,119.91,65.016 +495944,117.5,64.149 +495945,122.97,66.749 +495946,120.85,65.867 +495947,118.61,64.977 +495948,116.22,64.08 +495949,121.62,66.768 +495950,119.53,65.858 +495951,117.3,64.939 +495952,114.93,64.012 +495953,120.28,66.788 +495954,118.2,65.848 +495955,116,64.901 +495956,113.65,63.945 +495957,118.93,66.806 +495958,116.88,65.839 +495959,114.7,64.863 +495960,112.38,63.878 +495961,117.58,66.823 +495962,115.55,65.829 +495963,113.4,64.825 +495964,111.1,63.812 +495965,116.23,66.84 +495966,114.23,65.819 +495967,112.1,64.787 +495968,109.83,63.747 +495969,114.88,66.856 +495970,112.9,65.808 +495971,110.8,64.75 +495972,108.55,63.682 +495973,113.52,66.871 +495974,111.57,65.798 +495975,109.5,64.713 +495976,107.28,63.619 +495977,112.17,66.885 +495978,110.25,65.787 +495979,108.2,64.677 +495980,106.02,63.556 +495981,110.81,66.899 +495982,108.92,65.775 +495983,106.9,64.64 +495984,104.75,63.494 +495985,109.45,66.911 +495986,107.59,65.764 +495987,105.61,64.604 +495988,103.48,63.433 +495989,108.09,66.923 +495990,106.26,65.752 +495991,104.31,64.568 +495992,102.22,63.373 +495993,106.73,66.933 +495994,104.93,65.74 +495995,103.01,64.533 +495996,100.96,63.314 +495997,105.37,66.943 +495998,103.6,65.727 +495999,101.72,64.498 +496000,99.696,63.256 +496001,104.01,66.952 +496002,102.27,65.714 +496003,100.42,64.463 +496004,98.437,63.198 +496005,102.64,66.959 +496006,100.94,65.701 +496007,99.126,64.428 +496008,97.18,63.142 +496009,101.28,66.966 +496010,99.611,65.687 +496011,97.832,64.394 +496012,95.924,63.087 +496013,99.91,66.971 +496014,98.279,65.673 +496015,96.538,64.36 +496016,94.669,63.033 +496017,98.541,66.976 +496018,96.947,65.659 +496019,95.244,64.326 +496020,93.416,62.979 +496021,97.171,66.979 +496022,95.615,65.644 +496023,93.951,64.293 +496024,92.165,62.927 +496025,95.8,66.982 +496026,94.282,65.629 +496027,92.659,64.26 +496028,90.915,62.876 +496029,94.428,66.983 +496030,92.949,65.614 +496031,91.367,64.228 +496032,89.666,62.826 +496033,93.054,66.983 +496034,91.616,65.598 +496035,90.075,64.196 +496036,88.419,62.777 +496037,91.68,66.982 +496038,90.282,65.582 +496039,88.784,64.164 +496040,87.173,62.73 +496041,90.304,66.98 +496042,88.948,65.565 +496043,87.493,64.132 +496044,85.928,62.683 +496045,88.927,66.977 +496046,87.613,65.548 +496047,86.203,64.101 +496048,84.684,62.638 +496049,87.55,66.973 +496050,86.278,65.531 +496051,84.913,64.071 +496052,83.442,62.593 +496053,86.171,66.967 +496054,84.943,65.513 +496055,83.623,64.04 +496056,82.2,62.55 +496057,84.791,66.96 +496058,83.607,65.494 +496059,82.334,64.01 +496060,80.96,62.508 +496061,83.411,66.952 +496062,82.272,65.476 +496063,81.045,63.981 +496064,79.721,62.467 +496065,82.029,66.943 +496066,80.936,65.457 +496067,79.757,63.951 +496068,78.483,62.428 +496069,80.647,66.933 +496070,79.599,65.437 +496071,78.469,63.923 +496072,77.246,62.39 +496073,79.264,66.921 +496074,78.262,65.418 +496075,77.181,63.894 +496076,76.009,62.352 +496077,77.88,66.909 +496078,76.925,65.397 +496079,75.893,63.866 +496080,74.774,62.317 +496081,76.495,66.895 +496082,75.588,65.377 +496083,74.606,63.839 +496084,73.54,62.282 +496085,75.109,66.88 +496086,74.251,65.355 +496087,73.319,63.811 +496088,72.306,62.249 +496089,73.723,66.863 +496090,72.913,65.334 +496091,72.032,63.785 +496092,71.073,62.216 +496093,72.336,66.845 +496094,71.575,65.312 +496095,70.746,63.758 +496096,69.841,62.186 +496097,70.948,66.827 +496098,70.237,65.289 +496099,69.46,63.732 +496100,68.609,62.156 +496101,69.56,66.806 +496102,68.899,65.267 +496103,68.174,63.707 +496104,67.378,62.128 +496105,68.171,66.785 +496106,67.56,65.243 +496107,66.888,63.682 +496108,66.148,62.101 +496109,66.782,66.762 +496110,66.222,65.22 +496111,65.602,63.657 +496112,64.918,62.075 +496113,65.392,66.738 +496114,64.883,65.195 +496115,64.317,63.632 +496116,63.689,62.05 +496117,64.002,66.713 +496118,63.544,65.171 +496119,63.032,63.608 +496120,62.46,62.027 +496121,62.611,66.687 +496122,62.205,65.146 +496123,61.747,63.585 +496124,61.231,62.005 +496125,61.22,66.659 +496126,60.866,65.12 +496127,60.462,63.562 +496128,60.003,61.984 +496129,59.828,66.63 +496130,59.527,65.095 +496131,59.177,63.539 +496132,58.775,61.965 +496133,58.436,66.6 +496134,58.188,65.068 +496135,57.893,63.517 +496136,57.547,61.947 +496137,57.044,66.568 +496138,56.848,65.041 +496139,56.608,63.495 +496140,56.32,61.93 +496141,55.651,66.536 +496142,55.509,65.014 +496143,55.324,63.473 +496144,55.093,61.914 +496145,54.259,66.502 +496146,54.169,64.987 +496147,54.039,63.452 +496148,53.866,61.9 +496149,52.866,66.466 +496150,52.83,64.959 +496151,52.755,63.432 +496152,52.638,61.886 +496153,51.473,66.43 +496154,51.49,64.93 +496155,51.471,63.411 +496156,51.411,61.875 +496157,50.08,66.392 +496158,50.151,64.901 +496159,50.186,63.391 +496160,50.184,61.864 +496161,48.686,66.353 +496162,48.811,64.872 +496163,48.902,63.372 +496164,48.957,61.854 +496165,47.293,66.313 +496166,47.472,64.842 +496167,47.618,63.353 +496168,47.73,61.846 +496169,45.9,66.272 +496170,46.132,64.812 +496171,46.334,63.334 +496172,46.502,61.839 +496173,44.506,66.229 +496174,44.793,64.781 +496175,45.049,63.316 +496176,45.275,61.834 +496177,43.113,66.185 +496178,43.453,64.75 +496179,43.765,63.298 +496180,44.047,61.829 +496181,41.72,66.14 +496182,42.114,64.719 +496183,42.481,63.28 +496184,42.819,61.826 +496185,40.327,66.094 +496186,40.775,64.687 +496187,41.196,63.263 +496188,41.59,61.823 +496189,38.934,66.047 +496190,39.436,64.655 +496191,39.912,63.247 +496192,40.361,61.822 +496193,37.542,65.998 +496194,38.097,64.622 +496195,38.627,63.23 +496196,39.132,61.822 +496197,36.15,65.949 +496198,36.758,64.589 +496199,37.342,63.214 +496200,37.902,61.824 +496201,34.758,65.898 +496202,35.42,64.556 +496203,36.057,63.198 +496204,36.672,61.826 +496205,33.366,65.846 +496206,34.081,64.522 +496207,34.772,63.183 +496208,35.441,61.83 +496209,31.975,65.793 +496210,32.743,64.488 +496211,33.487,63.168 +496212,34.209,61.834 +496213,30.584,65.739 +496214,31.405,64.454 +496215,32.202,63.153 +496216,32.977,61.84 +496217,29.194,65.684 +496218,30.067,64.419 +496219,30.916,63.139 +496220,31.744,61.847 +496221,27.804,65.627 +496222,28.729,64.383 +496223,29.631,63.125 +496224,30.511,61.854 +496225,26.415,65.57 +496226,27.391,64.348 +496227,28.345,63.112 +496228,29.276,61.863 +496229,25.026,65.512 +496230,26.054,64.312 +496231,27.059,63.098 +496232,28.041,61.873 +496233,23.638,65.452 +496234,24.717,64.276 +496235,25.772,63.085 +496236,26.805,61.884 +496237,22.25,65.392 +496238,23.38,64.239 +496239,24.486,63.073 +496240,25.568,61.896 +496241,20.864,65.331 +496242,22.044,64.202 +496243,23.199,63.06 +496244,24.331,61.908 +496245,19.478,65.268 +496246,20.708,64.164 +496247,21.912,63.048 +496248,23.092,61.922 +496249,18.092,65.205 +496250,19.372,64.127 +496251,20.624,63.037 +496252,21.852,61.937 +496253,16.708,65.141 +496254,18.036,64.089 +496255,19.337,63.025 +496256,20.611,61.952 +496257,15.324,65.076 +496258,16.701,64.05 +496259,18.048,63.014 +496260,19.369,61.968 +496261,13.942,65.01 +496262,15.366,64.012 +496263,16.76,63.003 +496264,18.127,61.986 +496265,12.56,64.943 +496266,14.032,63.973 +496267,15.471,62.993 +496268,16.882,62.004 +496269,11.179,64.875 +496270,12.697,63.934 +496271,14.182,62.982 +496272,15.637,62.022 +496273,9.799,64.806 +496274,11.364,63.894 +496275,12.893,62.972 +496276,14.391,62.042 +496277,8.4202,64.737 +496278,10.03,63.854 +496279,11.603,62.962 +496280,13.143,62.062 +496281,7.0424,64.667 +496282,8.6973,63.814 +496283,10.313,62.953 +496284,11.894,62.083 +496285,5.6658,64.596 +496286,7.3647,63.774 +496287,9.0226,62.943 +496288,10.644,62.105 +496289,4.2902,64.524 +496290,6.0325,63.734 +496291,7.7316,62.934 +496292,9.3927,62.128 +496293,2.9159,64.452 +496294,4.7008,63.693 +496295,6.4403,62.925 +496296,8.1399,62.151 +496297,1.5428,64.379 +496298,3.3695,63.652 +496299,5.1486,62.916 +496300,6.8857,62.174 +496301,0.17086,64.305 +496302,2.0387,63.61 +496303,3.8564,62.908 +496304,5.6301,62.199 +496305,358.8,64.231 +496306,0.70832,63.569 +496307,2.5638,62.899 +496308,4.373,62.224 +496309,357.43,64.156 +496310,359.38,63.527 +496311,1.2707,62.891 +496312,3.1146,62.249 +496313,356.06,64.081 +496314,358.05,63.485 +496315,359.98,62.883 +496316,1.8547,62.275 +496317,354.7,64.004 +496318,356.72,63.443 +496319,358.68,62.875 +496320,0.59325,62.301 +496321,353.33,63.928 +496322,355.39,63.401 +496323,357.39,62.867 +496324,359.33,62.328 +496325,351.97,63.851 +496326,354.06,63.359 +496327,356.09,62.86 +496328,358.07,62.356 +496329,350.61,63.773 +496330,352.74,63.316 +496331,354.8,62.852 +496332,356.8,62.383 +496333,349.24,63.695 +496334,351.41,63.273 +496335,353.5,62.845 +496336,355.53,62.412 +496337,347.89,63.616 +496338,350.08,63.23 +496339,352.21,62.838 +496340,354.26,62.44 +496341,346.53,63.538 +496342,348.76,63.187 +496343,350.91,62.83 +496344,352.99,62.469 +496345,345.17,63.458 +496346,347.43,63.144 +496347,349.61,62.823 +496348,351.72,62.498 +496349,343.82,63.379 +496350,346.11,63.101 +496351,348.31,62.816 +496352,350.45,62.527 +496353,342.46,63.299 +496354,344.78,63.057 +496355,347.02,62.809 +496356,349.17,62.557 +496357,341.11,63.219 +496358,343.46,63.014 +496359,345.72,62.803 +496360,347.89,62.587 +496361,339.76,63.138 +496362,342.14,62.97 +496363,344.42,62.796 +496364,346.61,62.617 +496365,338.42,63.057 +496366,340.82,62.927 +496367,343.12,62.789 +496368,345.33,62.647 +496369,337.07,62.977 +496370,339.49,62.883 +496371,341.82,62.782 +496372,344.05,62.677 +496373,335.73,62.896 +496374,338.17,62.839 +496375,340.51,62.776 +496376,342.77,62.707 +496377,334.38,62.814 +496378,336.85,62.795 +496379,339.21,62.769 +496380,341.48,62.738 +496381,333.04,62.733 +496382,335.53,62.751 +496383,337.91,62.762 +496384,340.19,62.768 +496385,331.71,62.652 +496386,334.21,62.707 +496387,336.61,62.756 +496388,338.9,62.798 +496389,330.37,62.57 +496390,332.9,62.663 +496391,335.3,62.749 +496392,337.61,62.829 +496393,329.03,62.489 +496394,331.58,62.619 +496395,334,62.742 +496396,336.32,62.859 +496397,327.7,62.408 +496398,330.26,62.575 +496399,332.7,62.736 +496400,335.02,62.889 +496401,326.37,62.326 +496402,328.94,62.532 +496403,331.39,62.729 +496404,333.73,62.919 +496405,325.04,62.245 +496406,327.63,62.488 +496407,330.08,62.722 +496408,332.43,62.949 +496409,323.71,62.164 +496410,326.31,62.444 +496411,328.78,62.715 +496412,331.13,62.979 +496413,322.39,62.083 +496414,325,62.4 +496415,327.47,62.708 +496416,329.83,63.009 +496417,321.06,62.002 +496418,323.68,62.356 +496419,326.16,62.701 +496420,328.52,63.038 +496421,319.74,61.921 +496422,322.37,62.312 +496423,324.86,62.694 +496424,327.22,63.067 +496425,318.42,61.841 +496426,321.06,62.269 +496427,323.55,62.687 +496428,325.91,63.096 +496429,317.11,61.761 +496430,319.75,62.225 +496431,322.24,62.679 +496432,324.6,63.124 +496433,315.79,61.681 +496434,318.43,62.181 +496435,320.93,62.672 +496436,323.29,63.152 +496437,314.48,61.601 +496438,317.12,62.138 +496439,319.62,62.664 +496440,321.98,63.18 +496441,313.17,61.522 +496442,315.81,62.095 +496443,318.31,62.656 +496444,320.67,63.207 +496445,311.86,61.443 +496446,314.5,62.052 +496447,316.99,62.648 +496448,319.35,63.234 +496449,310.55,61.365 +496450,313.2,62.009 +496451,315.68,62.64 +496452,318.03,63.26 +496453,309.25,61.287 +496454,311.89,61.966 +496455,314.37,62.632 +496456,316.71,63.286 +496457,307.94,61.209 +496458,310.58,61.923 +496459,313.06,62.623 +496460,315.39,63.312 +496461,306.64,61.132 +496462,309.27,61.88 +496463,311.74,62.615 +496464,314.07,63.337 +496465,305.34,61.056 +496466,307.97,61.838 +496467,310.43,62.606 +496468,312.74,63.361 +496469,304.05,60.98 +496470,306.66,61.796 +496471,309.11,62.597 +496472,311.42,63.384 +496473,302.75,60.904 +496474,305.36,61.753 +496475,307.8,62.587 +496476,310.09,63.407 +496477,301.46,60.829 +496478,304.05,61.712 +496479,306.48,62.578 +496480,308.76,63.43 +496481,300.17,60.755 +496482,302.75,61.67 +496483,305.16,62.568 +496484,307.43,63.451 +496485,298.88,60.682 +496486,301.45,61.628 +496487,303.84,62.558 +496488,306.1,63.472 +496489,297.59,60.609 +496490,300.15,61.587 +496491,302.53,62.548 +496492,304.76,63.493 +496493,296.31,60.537 +496494,298.85,61.546 +496495,301.21,62.537 +496496,303.42,63.512 +496497,295.03,60.466 +496498,297.54,61.505 +496499,299.89,62.527 +496500,302.09,63.531 +496501,293.75,60.395 +496502,296.24,61.465 +496503,298.57,62.516 +496504,300.75,63.549 +496505,292.47,60.325 +496506,294.95,61.424 +496507,297.25,62.504 +496508,299.4,63.566 +496509,291.19,60.256 +496510,293.65,61.384 +496511,295.93,62.493 +496512,298.06,63.582 +496513,289.92,60.188 +496514,292.35,61.345 +496515,294.61,62.481 +496516,296.72,63.597 +496517,288.64,60.121 +496518,291.05,61.305 +496519,293.28,62.469 +496520,295.37,63.612 +496521,287.37,60.055 +496522,289.75,61.266 +496523,291.96,62.456 +496524,294.02,63.625 +496525,286.1,59.989 +496526,288.46,61.227 +496527,290.64,62.443 +496528,292.67,63.638 +496529,284.84,59.925 +496530,287.16,61.188 +496531,289.32,62.43 +496532,291.32,63.65 +496533,283.57,59.861 +496534,285.87,61.15 +496535,287.99,62.416 +496536,289.97,63.66 +496537,282.31,59.799 +496538,284.57,61.112 +496539,286.67,62.402 +496540,288.62,63.67 +496541,281.05,59.737 +496542,283.28,61.075 +496543,285.34,62.388 +496544,287.26,63.679 +496545,279.79,59.677 +496546,281.99,61.037 +496547,284.02,62.374 +496548,285.91,63.687 +496549,278.53,59.617 +496550,280.69,61 +496551,282.69,62.359 +496552,284.55,63.693 +496553,277.27,59.559 +496554,279.4,60.964 +496555,281.36,62.343 +496556,283.19,63.699 +496557,276.02,59.502 +496558,278.11,60.927 +496559,280.04,62.328 +496560,281.83,63.703 +496561,274.76,59.445 +496562,276.82,60.891 +496563,278.71,62.311 +496564,280.47,63.706 +496565,273.51,59.39 +496566,275.53,60.856 +496567,277.38,62.295 +496568,279.1,63.709 +496569,272.26,59.336 +496570,274.24,60.821 +496571,276.05,62.278 +496572,277.74,63.71 +496573,271.02,59.284 +496574,272.95,60.786 +496575,274.73,62.261 +496576,276.37,63.71 +496577,269.77,59.232 +496578,271.66,60.751 +496579,273.4,62.243 +496580,275.01,63.709 +496581,268.52,59.182 +496582,270.37,60.717 +496583,272.07,62.225 +496584,273.64,63.706 +496585,267.28,59.132 +496586,269.08,60.683 +496587,270.74,62.207 +496588,272.27,63.703 +496589,266.04,59.084 +496590,267.79,60.65 +496591,269.41,62.188 +496592,270.9,63.698 +496593,264.8,59.038 +496594,266.51,60.617 +496595,268.08,62.168 +496596,269.53,63.692 +496597,263.56,58.992 +496598,265.22,60.585 +496599,266.75,62.149 +496600,268.15,63.685 +496601,262.32,58.948 +496602,263.93,60.552 +496603,265.42,62.128 +496604,266.78,63.676 +496605,261.08,58.905 +496606,262.65,60.521 +496607,264.08,62.108 +496608,265.4,63.667 +496609,259.85,58.863 +496610,261.36,60.489 +496611,262.75,62.087 +496612,264.03,63.656 +496613,258.61,58.823 +496614,260.08,60.459 +496615,261.42,62.065 +496616,262.65,63.643 +496617,257.38,58.783 +496618,258.79,60.428 +496619,260.09,62.043 +496620,261.27,63.63 +496621,256.15,58.746 +496622,257.51,60.398 +496623,258.75,62.021 +496624,259.9,63.615 +496625,254.92,58.709 +496626,256.23,60.368 +496627,257.42,61.998 +496628,258.52,63.599 +496629,253.69,58.674 +496630,254.94,60.339 +496631,256.09,61.975 +496632,257.14,63.582 +496633,252.46,58.64 +496634,253.66,60.31 +496635,254.75,61.951 +496636,255.75,63.563 +496637,251.23,58.607 +496638,252.38,60.282 +496639,253.42,61.927 +496640,254.37,63.543 +496641,250,58.576 +496642,251.09,60.254 +496643,252.09,61.902 +496644,252.99,63.522 +496645,248.77,58.546 +496646,249.81,60.226 +496647,250.75,61.877 +496648,251.61,63.499 +496649,247.55,58.518 +496650,248.53,60.199 +496651,249.42,61.852 +496652,250.22,63.476 +496653,246.32,58.49 +496654,247.25,60.173 +496655,248.08,61.826 +496656,248.84,63.45 +496657,245.1,58.465 +496658,245.97,60.146 +496659,246.75,61.799 +496660,247.45,63.424 +496661,243.88,58.44 +496662,244.69,60.121 +496663,245.41,61.773 +496664,246.06,63.396 +496665,242.65,58.417 +496666,243.4,60.095 +496667,244.08,61.745 +496668,244.68,63.367 +496669,241.43,58.395 +496670,242.12,60.07 +496671,242.74,61.717 +496672,243.29,63.336 +496673,240.21,58.374 +496674,240.84,60.046 +496675,241.41,61.689 +496676,241.9,63.304 +496677,238.99,58.355 +496678,239.56,60.022 +496679,240.07,61.66 +496680,240.51,63.271 +496681,237.76,58.337 +496682,238.28,59.998 +496683,238.73,61.631 +496684,239.12,63.237 +496685,236.54,58.321 +496686,237,59.975 +496687,237.4,61.602 +496688,237.74,63.201 +496689,235.32,58.306 +496690,235.72,59.952 +496691,236.06,61.572 +496692,236.35,63.164 +496693,234.1,58.292 +496694,234.44,59.93 +496695,234.73,61.541 +496696,234.96,63.125 +496697,232.88,58.28 +496698,233.16,59.908 +496699,233.39,61.51 +496700,233.57,63.086 +496701,231.66,58.268 +496702,231.88,59.886 +496703,232.05,61.479 +496704,232.18,63.045 +496705,230.44,58.258 +496706,230.6,59.865 +496707,230.72,61.447 +496708,230.79,63.002 +496709,229.22,58.25 +496710,229.32,59.845 +496711,229.38,61.414 +496712,229.39,62.959 +496713,228,58.242 +496714,228.04,59.824 +496715,228.04,61.382 +496716,228,62.914 +496717,226.78,58.236 +496718,226.77,59.804 +496719,226.71,61.348 +496720,226.61,62.868 +496721,225.56,58.232 +496722,225.49,59.785 +496723,225.37,61.315 +496724,225.22,62.82 +496725,224.34,58.228 +496726,224.21,59.766 +496727,224.04,61.281 +496728,223.83,62.772 +496729,223.12,58.226 +496730,222.93,59.747 +496731,222.7,61.246 +496732,222.44,62.722 +496733,221.9,58.225 +496734,221.65,59.729 +496735,221.36,61.211 +496736,221.05,62.67 +496737,220.68,58.225 +496738,220.37,59.711 +496739,220.03,61.176 +496740,219.66,62.618 +496741,219.46,58.226 +496742,219.09,59.694 +496743,218.69,61.14 +496744,218.27,62.564 +496745,218.24,58.229 +496746,217.81,59.677 +496747,217.36,61.104 +496748,216.88,62.51 +496749,217.02,58.232 +496750,216.53,59.66 +496751,216.02,61.067 +496752,215.49,62.454 +496753,215.79,58.237 +496754,215.25,59.644 +496755,214.68,61.03 +496756,214.1,62.396 +496757,214.57,58.243 +496758,213.97,59.628 +496759,213.35,60.993 +496760,212.71,62.338 +496761,213.35,58.25 +496762,212.69,59.612 +496763,212.01,60.955 +496764,211.32,62.279 +496765,212.12,58.259 +496766,211.41,59.597 +496767,210.68,60.917 +496768,209.93,62.218 +496769,210.9,58.268 +496770,210.13,59.582 +496771,209.34,60.878 +496772,208.54,62.156 +496773,209.67,58.278 +496774,208.85,59.567 +496775,208.01,60.839 +496776,207.15,62.093 +496777,208.44,58.29 +496778,207.57,59.553 +496779,206.67,60.8 +496780,205.76,62.029 +496781,207.22,58.302 +496782,206.29,59.539 +496783,205.34,60.761 +496784,204.38,61.964 +496785,205.99,58.316 +496786,205.01,59.526 +496787,204.01,60.72 +496788,202.99,61.898 +496789,204.76,58.33 +496790,203.73,59.513 +496791,202.67,60.68 +496792,201.6,61.831 +496793,203.53,58.345 +496794,202.44,59.5 +496795,201.34,60.639 +496796,200.22,61.763 +496797,202.3,58.362 +496798,201.16,59.487 +496799,200.01,60.598 +496800,198.83,61.694 +496801,201.07,58.379 +496802,199.88,59.475 +496803,198.67,60.557 +496804,197.45,61.624 +496805,199.84,58.397 +496806,198.6,59.463 +496807,197.34,60.515 +496808,196.06,61.553 +496809,198.6,58.416 +496810,197.31,59.451 +496811,196.01,60.473 +496812,194.68,61.481 +496813,197.37,58.436 +496814,196.03,59.439 +496815,194.68,60.431 +496816,193.3,61.408 +496817,196.13,58.456 +496818,194.75,59.428 +496819,193.35,60.388 +496820,191.92,61.335 +496821,194.89,58.478 +496822,193.46,59.417 +496823,192.01,60.345 +496824,190.54,61.26 +496825,193.66,58.5 +496826,192.18,59.407 +496827,190.68,60.302 +496828,189.16,61.185 +496829,192.42,58.523 +496830,190.9,59.396 +496831,189.35,60.259 +496832,187.78,61.109 +496833,191.17,58.546 +496834,189.61,59.386 +496835,188.02,60.215 +496836,186.41,61.032 +496837,189.93,58.571 +496838,188.33,59.376 +496839,186.69,60.171 +496840,185.03,60.954 +496841,188.69,58.596 +496842,187.04,59.366 +496843,185.36,60.127 +496844,183.65,60.876 +496845,187.44,58.621 +496846,185.76,59.356 +496847,184.04,60.082 +496848,182.28,60.796 +496849,186.2,58.647 +496850,184.47,59.347 +496851,182.71,60.037 +496852,180.91,60.716 +496853,184.95,58.674 +496854,183.18,59.338 +496855,181.38,59.992 +496856,179.54,60.636 +496857,183.7,58.701 +496858,181.9,59.329 +496859,180.05,59.947 +496860,178.17,60.555 +496861,182.45,58.729 +496862,180.61,59.32 +496863,178.73,59.902 +496864,176.8,60.473 +496865,181.2,58.757 +496866,179.32,59.311 +496867,177.4,59.856 +496868,175.43,60.391 +496869,179.94,58.786 +496870,178.03,59.303 +496871,176.07,59.811 +496872,174.06,60.308 +496873,178.69,58.815 +496874,176.74,59.294 +496875,174.75,59.765 +496876,172.7,60.225 +496877,177.43,58.845 +496878,175.45,59.286 +496879,173.42,59.719 +496880,171.33,60.141 +496881,176.17,58.875 +496882,174.16,59.278 +496883,172.1,59.672 +496884,169.97,60.056 +496885,174.91,58.905 +496886,172.87,59.27 +496887,170.78,59.626 +496888,168.61,59.972 +496889,173.65,58.936 +496890,171.58,59.262 +496891,169.45,59.58 +496892,167.25,59.887 +496893,172.39,58.966 +496894,170.29,59.254 +496895,168.13,59.533 +496896,165.89,59.801 +496897,171.13,58.997 +496898,169,59.246 +496899,166.81,59.486 +496900,164.54,59.715 +496901,169.86,59.029 +496902,167.71,59.238 +496903,165.49,59.439 +496904,163.18,59.629 +496905,168.59,59.06 +496906,166.42,59.231 +496907,164.17,59.392 +496908,161.83,59.543 +496909,167.32,59.092 +496910,165.12,59.223 +496911,162.85,59.345 +496912,160.48,59.456 +496913,166.05,59.123 +496914,163.83,59.216 +496915,161.53,59.298 +496916,159.13,59.369 +496917,164.78,59.155 +496918,162.53,59.208 +496919,160.21,59.251 +496920,157.78,59.282 +496921,163.5,59.187 +496922,161.24,59.2 +496923,158.89,59.204 +496924,156.44,59.195 +496925,162.22,59.219 +496926,159.94,59.193 +496927,157.57,59.156 +496928,155.09,59.107 +496929,160.95,59.251 +496930,158.65,59.185 +496931,156.25,59.109 +496932,153.75,59.02 +496933,159.67,59.283 +496934,157.35,59.178 +496935,154.94,59.062 +496936,152.41,58.933 +496937,158.38,59.314 +496938,156.05,59.17 +496939,153.62,59.015 +496940,151.07,58.845 +496941,157.1,59.346 +496942,154.76,59.163 +496943,152.31,58.967 +496944,149.73,58.758 +496945,155.81,59.378 +496946,153.46,59.155 +496947,150.99,58.92 +496948,148.4,58.67 +496949,154.53,59.409 +496950,152.16,59.147 +496951,149.68,58.873 +496952,147.07,58.583 +496953,153.24,59.44 +496954,150.86,59.139 +496955,148.36,58.825 +496956,145.74,58.496 +496957,151.95,59.471 +496958,149.56,59.131 +496959,147.05,58.778 +496960,144.41,58.408 +496961,150.65,59.502 +496962,148.26,59.124 +496963,145.74,58.731 +496964,143.08,58.322 +496965,149.36,59.532 +496966,146.96,59.115 +496967,144.43,58.684 +496968,141.75,58.235 +496969,148.06,59.562 +496970,145.65,59.107 +496971,143.12,58.637 +496972,140.43,58.148 +496973,146.76,59.592 +496974,144.35,59.099 +496975,141.81,58.59 +496976,139.11,58.062 +496977,145.46,59.621 +496978,143.05,59.091 +496979,140.5,58.543 +496980,137.79,57.976 +496981,144.16,59.65 +496982,141.75,59.082 +496983,139.19,58.496 +496984,136.47,57.891 +496985,142.86,59.679 +496986,140.44,59.073 +496987,137.88,58.45 +496988,135.16,57.806 +496989,141.55,59.707 +496990,139.14,59.064 +496991,136.58,58.403 +496992,133.85,57.721 +496993,140.25,59.734 +496994,137.83,59.055 +496995,135.27,58.357 +496996,132.54,57.636 +496997,138.94,59.761 +496998,136.52,59.046 +496999,133.96,58.311 +497000,131.23,57.553 +497001,137.63,59.788 +497002,135.22,59.037 +497003,132.66,58.265 +497004,129.92,57.469 +497005,136.31,59.814 +497006,133.91,59.027 +497007,131.35,58.219 +497008,128.62,57.386 +497009,135,59.839 +497010,132.6,59.017 +497011,130.05,58.173 +497012,127.32,57.304 +497013,133.68,59.864 +497014,131.29,59.007 +497015,128.75,58.128 +497016,126.02,57.222 +497017,132.37,59.888 +497018,129.99,58.997 +497019,127.45,58.082 +497020,124.72,57.141 +497021,131.05,59.911 +497022,128.68,58.986 +497023,126.14,58.037 +497024,123.42,57.061 +497025,129.72,59.933 +497026,127.37,58.976 +497027,124.84,57.992 +497028,122.13,56.981 +497029,128.4,59.955 +497030,126.06,58.965 +497031,123.54,57.948 +497032,120.84,56.902 +497033,127.08,59.976 +497034,124.74,58.953 +497035,122.24,57.903 +497036,119.55,56.824 +497037,125.75,59.996 +497038,123.43,58.942 +497039,120.95,57.859 +497040,118.26,56.746 +497041,124.42,60.016 +497042,122.12,58.93 +497043,119.65,57.815 +497044,116.98,56.67 +497045,123.09,60.034 +497046,120.81,58.918 +497047,118.35,57.772 +497048,115.69,56.594 +497049,121.76,60.052 +497050,119.49,58.905 +497051,117.05,57.728 +497052,114.41,56.519 +497053,120.43,60.069 +497054,118.18,58.893 +497055,115.76,57.685 +497056,113.13,56.444 +497057,119.09,60.085 +497058,116.86,58.879 +497059,114.46,57.643 +497060,111.86,56.371 +497061,117.76,60.1 +497062,115.55,58.866 +497063,113.17,57.6 +497064,110.58,56.299 +497065,116.42,60.114 +497066,114.23,58.852 +497067,111.88,57.558 +497068,109.31,56.228 +497069,115.08,60.127 +497070,112.92,58.838 +497071,110.58,57.516 +497072,108.04,56.157 +497073,113.74,60.139 +497074,111.6,58.824 +497075,109.29,57.475 +497076,106.77,56.088 +497077,112.39,60.15 +497078,110.28,58.809 +497079,108,57.433 +497080,105.51,56.02 +497081,111.05,60.16 +497082,108.96,58.794 +497083,106.71,57.393 +497084,104.24,55.953 +497085,109.7,60.169 +497086,107.65,58.778 +497087,105.42,57.352 +497088,102.98,55.886 +497089,108.36,60.176 +497090,106.33,58.763 +497091,104.13,57.312 +497092,101.72,55.821 +497093,107.01,60.183 +497094,105.01,58.746 +497095,102.84,57.272 +497096,100.46,55.757 +497097,105.66,60.189 +497098,103.69,58.73 +497099,101.55,57.233 +497100,99.204,55.695 +497101,104.3,60.193 +497102,102.37,58.713 +497103,100.26,57.194 +497104,97.95,55.633 +497105,102.95,60.196 +497106,101.05,58.695 +497107,98.973,57.155 +497108,96.697,55.573 +497109,101.6,60.198 +497110,99.725,58.677 +497111,97.686,57.117 +497112,95.447,55.514 +497113,100.24,60.199 +497114,98.404,58.659 +497115,96.4,57.079 +497116,94.198,55.456 +497117,98.884,60.199 +497118,97.081,58.64 +497119,95.114,57.042 +497120,92.951,55.399 +497121,97.526,60.197 +497122,95.759,58.621 +497123,93.829,57.005 +497124,91.705,55.344 +497125,96.166,60.194 +497126,94.436,58.602 +497127,92.545,56.968 +497128,90.462,55.29 +497129,94.805,60.19 +497130,93.112,58.582 +497131,91.261,56.932 +497132,89.22,55.237 +497133,93.443,60.185 +497134,91.788,58.561 +497135,89.977,56.896 +497136,87.98,55.185 +497137,92.079,60.178 +497138,90.464,58.54 +497139,88.695,56.861 +497140,86.741,55.135 +497141,90.714,60.17 +497142,89.139,58.519 +497143,87.412,56.826 +497144,85.504,55.086 +497145,89.349,60.161 +497146,87.814,58.497 +497147,86.13,56.791 +497148,84.268,55.039 +497149,87.982,60.15 +497150,86.489,58.475 +497151,84.849,56.757 +497152,83.034,54.993 +497153,86.614,60.138 +497154,85.163,58.453 +497155,83.568,56.724 +497156,81.802,54.948 +497157,85.245,60.125 +497158,83.837,58.429 +497159,82.288,56.69 +497160,80.571,54.905 +497161,83.874,60.11 +497162,82.51,58.406 +497163,81.008,56.658 +497164,79.341,54.863 +497165,82.503,60.095 +497166,81.183,58.382 +497167,79.728,56.625 +497168,78.112,54.823 +497169,81.131,60.077 +497170,79.856,58.357 +497171,78.449,56.594 +497172,76.885,54.784 +497173,79.758,60.059 +497174,78.529,58.332 +497175,77.17,56.562 +497176,75.66,54.746 +497177,78.384,60.038 +497178,77.201,58.307 +497179,75.892,56.531 +497180,74.435,54.71 +497181,77.009,60.017 +497182,75.873,58.281 +497183,74.614,56.501 +497184,73.211,54.675 +497185,75.633,59.994 +497186,74.544,58.254 +497187,73.337,56.471 +497188,71.989,54.642 +497189,74.257,59.97 +497190,73.216,58.227 +497191,72.06,56.441 +497192,70.768,54.61 +497193,72.879,59.944 +497194,71.887,58.2 +497195,70.783,56.412 +497196,69.547,54.58 +497197,71.501,59.917 +497198,70.558,58.172 +497199,69.506,56.384 +497200,68.328,54.551 +497201,70.122,59.889 +497202,69.229,58.144 +497203,68.23,56.356 +497204,67.109,54.523 +497205,68.742,59.859 +497206,67.899,58.115 +497207,66.955,56.328 +497208,65.892,54.497 +497209,67.362,59.828 +497210,66.569,58.085 +497211,65.679,56.301 +497212,64.675,54.473 +497213,65.981,59.795 +497214,65.24,58.056 +497215,64.404,56.274 +497216,63.459,54.45 +497217,64.6,59.761 +497218,63.91,58.025 +497219,63.129,56.248 +497220,62.244,54.428 +497221,63.218,59.725 +497222,62.579,57.994 +497223,61.854,56.223 +497224,61.029,54.408 +497225,61.835,59.689 +497226,61.249,57.963 +497227,60.58,56.197 +497228,59.815,54.389 +497229,60.452,59.65 +497230,59.918,57.931 +497231,59.306,56.172 +497232,58.601,54.372 +497233,59.068,59.611 +497234,58.588,57.899 +497235,58.032,56.148 +497236,57.388,54.356 +497237,57.684,59.569 +497238,57.257,57.866 +497239,56.758,56.124 +497240,56.176,54.342 +497241,56.3,59.527 +497242,55.926,57.833 +497243,55.484,56.101 +497244,54.964,54.329 +497245,54.915,59.483 +497246,54.596,57.799 +497247,54.211,56.078 +497248,53.752,54.318 +497249,53.53,59.438 +497250,53.265,57.765 +497251,52.938,56.056 +497252,52.54,54.307 +497253,52.145,59.391 +497254,51.934,57.731 +497255,51.664,56.034 +497256,51.329,54.299 +497257,50.759,59.343 +497258,50.603,57.696 +497259,50.391,56.012 +497260,50.118,54.292 +497261,49.373,59.294 +497262,49.272,57.66 +497263,49.118,55.991 +497264,48.907,54.286 +497265,47.987,59.243 +497266,47.94,57.624 +497267,47.846,55.97 +497268,47.696,54.281 +497269,46.601,59.191 +497270,46.609,57.587 +497271,46.573,55.95 +497272,46.485,54.278 +497273,45.215,59.138 +497274,45.278,57.55 +497275,45.3,55.93 +497276,45.274,54.276 +497277,43.828,59.083 +497278,43.947,57.513 +497279,44.027,55.911 +497280,44.063,54.276 +497281,42.442,59.027 +497282,42.616,57.475 +497283,42.755,55.892 +497284,42.852,54.276 +497285,41.055,58.969 +497286,41.286,57.437 +497287,41.482,55.873 +497288,41.641,54.279 +497289,39.669,58.911 +497290,39.955,57.398 +497291,40.209,55.855 +497292,40.429,54.282 +497293,38.283,58.851 +497294,38.624,57.359 +497295,38.936,55.838 +497296,39.217,54.287 +497297,36.897,58.79 +497298,37.293,57.319 +497299,37.664,55.82 +497300,38.005,54.293 +497301,35.511,58.727 +497302,35.963,57.279 +497303,36.391,55.804 +497304,36.792,54.3 +497305,34.125,58.664 +497306,34.633,57.239 +497307,35.118,55.787 +497308,35.579,54.308 +497309,32.739,58.599 +497310,33.302,57.198 +497311,33.845,55.771 +497312,34.366,54.318 +497313,31.354,58.533 +497314,31.972,57.157 +497315,32.572,55.755 +497316,33.152,54.329 +497317,29.969,58.465 +497318,30.643,57.115 +497319,31.299,55.74 +497320,31.937,54.341 +497321,28.584,58.397 +497322,29.313,57.073 +497323,30.026,55.725 +497324,30.722,54.354 +497325,27.2,58.327 +497326,27.983,57.031 +497327,28.752,55.711 +497328,29.506,54.368 +497329,25.816,58.257 +497330,26.654,56.988 +497331,27.479,55.696 +497332,28.289,54.383 +497333,24.433,58.185 +497334,25.325,56.945 +497335,26.205,55.683 +497336,27.072,54.399 +497337,23.05,58.112 +497338,23.996,56.901 +497339,24.931,55.669 +497340,25.854,54.417 +497341,21.668,58.038 +497342,22.668,56.857 +497343,23.657,55.656 +497344,24.634,54.435 +497345,20.286,57.963 +497346,21.339,56.813 +497347,22.382,55.643 +497348,23.415,54.455 +497349,18.905,57.887 +497350,20.012,56.768 +497351,21.108,55.631 +497352,22.194,54.475 +497353,17.524,57.81 +497354,18.684,56.723 +497355,19.833,55.619 +497356,20.972,54.496 +497357,16.144,57.732 +497358,17.357,56.678 +497359,18.558,55.607 +497360,19.749,54.518 +497361,14.765,57.653 +497362,16.029,56.633 +497363,17.282,55.595 +497364,18.525,54.541 +497365,13.387,57.573 +497366,14.703,56.587 +497367,16.007,55.584 +497368,17.3,54.565 +497369,12.009,57.492 +497370,13.376,56.54 +497371,14.731,55.573 +497372,16.073,54.59 +497373,10.633,57.41 +497374,12.051,56.494 +497375,13.454,55.562 +497376,14.846,54.616 +497377,9.2569,57.327 +497378,10.725,56.447 +497379,12.178,55.551 +497380,13.617,54.642 +497381,7.882,57.244 +497382,9.3997,56.4 +497383,10.901,55.541 +497384,12.387,54.669 +497385,6.5081,57.16 +497386,8.075,56.353 +497387,9.6237,55.531 +497388,11.156,54.697 +497389,5.1352,57.074 +497390,6.7506,56.305 +497391,8.3461,55.521 +497392,9.9239,54.725 +497393,3.7634,56.989 +497394,5.4266,56.257 +497395,7.0681,55.512 +497396,8.6901,54.754 +497397,2.3926,56.902 +497398,4.1032,56.209 +497399,5.7897,55.503 +497400,7.4549,54.784 +497401,1.0229,56.815 +497402,2.7801,56.161 +497403,4.511,55.493 +497404,6.2183,54.814 +497405,359.65,56.727 +497406,1.4575,56.112 +497407,3.2318,55.485 +497408,4.9803,54.845 +497409,358.29,56.638 +497410,0.13545,56.064 +497411,1.9523,55.476 +497412,3.7409,54.877 +497413,356.92,56.549 +497414,358.81,56.015 +497415,0.67227,55.467 +497416,2.4999,54.909 +497417,355.56,56.46 +497418,357.49,55.966 +497419,359.39,55.459 +497420,1.2575,54.941 +497421,354.19,56.369 +497422,356.17,55.916 +497423,358.11,55.45 +497424,0.013448,54.974 +497425,352.83,56.279 +497426,354.85,55.867 +497427,356.83,55.442 +497428,358.77,55.007 +497429,351.47,56.187 +497430,353.53,55.817 +497431,355.55,55.434 +497432,357.52,55.04 +497433,350.11,56.096 +497434,352.21,55.768 +497435,354.27,55.426 +497436,356.27,55.074 +497437,348.75,56.003 +497438,350.9,55.718 +497439,352.98,55.419 +497440,355.02,55.109 +497441,347.4,55.911 +497442,349.58,55.668 +497443,351.7,55.411 +497444,353.77,55.143 +497445,346.04,55.818 +497446,348.26,55.618 +497447,350.42,55.403 +497448,352.52,55.178 +497449,344.69,55.725 +497450,346.94,55.567 +497451,349.13,55.396 +497452,351.26,55.213 +497453,343.33,55.631 +497454,345.63,55.517 +497455,347.85,55.388 +497456,350,55.248 +497457,341.98,55.538 +497458,344.31,55.467 +497459,346.56,55.381 +497460,348.74,55.283 +497461,340.64,55.444 +497462,343,55.416 +497463,345.28,55.374 +497464,347.48,55.318 +497465,339.29,55.35 +497466,341.68,55.366 +497467,343.99,55.366 +497468,346.22,55.354 +497469,337.94,55.255 +497470,340.37,55.315 +497471,342.7,55.359 +497472,344.96,55.389 +497473,336.6,55.161 +497474,339.06,55.265 +497475,341.42,55.352 +497476,343.69,55.424 +497477,335.26,55.066 +497478,337.74,55.214 +497479,340.13,55.344 +497480,342.42,55.46 +497481,333.92,54.972 +497482,336.43,55.163 +497483,338.84,55.337 +497484,341.15,55.495 +497485,332.58,54.877 +497486,335.12,55.113 +497487,337.55,55.329 +497488,339.88,55.53 +497489,331.24,54.783 +497490,333.81,55.062 +497491,336.26,55.322 +497492,338.61,55.565 +497493,329.91,54.688 +497494,332.5,55.012 +497495,334.97,55.315 +497496,337.34,55.6 +497497,328.58,54.594 +497498,331.19,54.961 +497499,333.68,55.307 +497500,336.06,55.635 +497501,327.25,54.5 +497502,329.88,54.911 +497503,332.39,55.299 +497504,334.78,55.669 +497505,325.92,54.406 +497506,328.58,54.86 +497507,331.1,55.292 +497508,333.5,55.704 +497509,324.59,54.312 +497510,327.27,54.81 +497511,329.8,55.284 +497512,332.22,55.738 +497513,323.27,54.218 +497514,325.96,54.76 +497515,328.51,55.276 +497516,330.93,55.771 +497517,321.94,54.125 +497518,324.66,54.71 +497519,327.22,55.268 +497520,329.65,55.804 +497521,320.62,54.032 +497522,323.35,54.659 +497523,325.92,55.26 +497524,328.36,55.837 +497525,319.3,53.939 +497526,322.05,54.61 +497527,324.63,55.252 +497528,327.07,55.87 +497529,317.99,53.847 +497530,320.74,54.56 +497531,323.33,55.243 +497532,325.78,55.902 +497533,316.67,53.755 +497534,319.44,54.51 +497535,322.04,55.235 +497536,324.49,55.933 +497537,315.36,53.664 +497538,318.14,54.461 +497539,320.74,55.226 +497540,323.19,55.964 +497541,314.05,53.573 +497542,316.84,54.411 +497543,319.44,55.217 +497544,321.9,55.994 +497545,312.74,53.482 +497546,315.54,54.362 +497547,318.15,55.208 +497548,320.6,56.024 +497549,311.44,53.393 +497550,314.24,54.313 +497551,316.85,55.199 +497552,319.3,56.053 +497553,310.13,53.303 +497554,312.94,54.264 +497555,315.55,55.189 +497556,317.99,56.082 +497557,308.83,53.215 +497558,311.64,54.216 +497559,314.25,55.179 +497560,316.69,56.11 +497561,307.53,53.127 +497562,310.34,54.168 +497563,312.95,55.169 +497564,315.38,56.137 +497565,306.24,53.04 +497566,309.05,54.12 +497567,311.65,55.159 +497568,314.08,56.163 +497569,304.94,52.953 +497570,307.75,54.072 +497571,310.35,55.149 +497572,312.77,56.189 +497573,303.65,52.867 +497574,306.46,54.024 +497575,309.05,55.138 +497576,311.46,56.214 +497577,302.36,52.782 +497578,305.16,53.977 +497579,307.74,55.127 +497580,310.14,56.238 +497581,301.07,52.698 +497582,303.87,53.93 +497583,306.44,55.116 +497584,308.83,56.261 +497585,299.79,52.615 +497586,302.58,53.883 +497587,305.14,55.104 +497588,307.51,56.284 +497589,298.5,52.533 +497590,301.28,53.836 +497591,303.83,55.092 +497592,306.19,56.305 +497593,297.22,52.451 +497594,299.99,53.79 +497595,302.53,55.08 +497596,304.87,56.326 +497597,295.94,52.371 +497598,298.7,53.744 +497599,301.22,55.068 +497600,303.55,56.346 +497601,294.67,52.291 +497602,297.41,53.699 +497603,299.92,55.055 +497604,302.23,56.364 +497605,293.39,52.213 +497606,296.12,53.654 +497607,298.61,55.041 +497608,300.9,56.382 +497609,292.12,52.135 +497610,294.83,53.609 +497611,297.3,55.028 +497612,299.58,56.399 +497613,290.85,52.059 +497614,293.54,53.564 +497615,296,55.014 +497616,298.25,56.414 +497617,289.58,51.984 +497618,292.26,53.52 +497619,294.69,55 +497620,296.92,56.429 +497621,288.32,51.91 +497622,290.97,53.477 +497623,293.38,54.985 +497624,295.59,56.442 +497625,287.05,51.837 +497626,289.68,53.433 +497627,292.07,54.97 +497628,294.25,56.455 +497629,285.79,51.765 +497630,288.4,53.39 +497631,290.76,54.955 +497632,292.92,56.466 +497633,284.53,51.695 +497634,287.12,53.348 +497635,289.45,54.939 +497636,291.58,56.476 +497637,283.27,51.625 +497638,285.83,53.305 +497639,288.14,54.923 +497640,290.25,56.485 +497641,282.02,51.558 +497642,284.55,53.264 +497643,286.83,54.906 +497644,288.91,56.493 +497645,280.77,51.491 +497646,283.27,53.222 +497647,285.52,54.889 +497648,287.57,56.499 +497649,279.52,51.425 +497650,281.98,53.181 +497651,284.21,54.872 +497652,286.22,56.505 +497653,278.27,51.361 +497654,280.7,53.141 +497655,282.89,54.854 +497656,284.88,56.509 +497657,277.02,51.299 +497658,279.42,53.101 +497659,281.58,54.836 +497660,283.54,56.511 +497661,275.78,51.237 +497662,278.14,53.061 +497663,280.27,54.817 +497664,282.19,56.513 +497665,274.53,51.177 +497666,276.86,53.022 +497667,278.95,54.798 +497668,280.84,56.513 +497669,273.29,51.119 +497670,275.59,52.983 +497671,277.64,54.778 +497672,279.49,56.512 +497673,272.05,51.062 +497674,274.31,52.945 +497675,276.32,54.758 +497676,278.14,56.509 +497677,270.82,51.006 +497678,273.03,52.907 +497679,275.01,54.738 +497680,276.79,56.505 +497681,269.58,50.952 +497682,271.75,52.87 +497683,273.69,54.717 +497684,275.44,56.5 +497685,268.35,50.9 +497686,270.48,52.833 +497687,272.38,54.695 +497688,274.09,56.494 +497689,267.12,50.849 +497690,269.2,52.797 +497691,271.06,54.673 +497692,272.73,56.486 +497693,265.89,50.799 +497694,267.93,52.761 +497695,269.74,54.651 +497696,271.37,56.476 +497697,264.66,50.751 +497698,266.65,52.726 +497699,268.42,54.628 +497700,270.02,56.466 +497701,263.43,50.705 +497702,265.38,52.691 +497703,267.11,54.604 +497704,268.66,56.453 +497705,262.21,50.66 +497706,264.11,52.656 +497707,265.79,54.581 +497708,267.3,56.44 +497709,260.98,50.616 +497710,262.83,52.623 +497711,264.47,54.556 +497712,265.94,56.425 +497713,259.76,50.574 +497714,261.56,52.589 +497715,263.15,54.531 +497716,264.57,56.408 +497717,258.54,50.534 +497718,260.29,52.556 +497719,261.83,54.506 +497720,263.21,56.39 +497721,257.32,50.496 +497722,259.02,52.524 +497723,260.51,54.48 +497724,261.85,56.371 +497725,256.11,50.459 +497726,257.75,52.492 +497727,259.19,54.454 +497728,260.48,56.35 +497729,254.89,50.423 +497730,256.48,52.461 +497731,257.87,54.427 +497732,259.12,56.327 +497733,253.67,50.39 +497734,255.21,52.43 +497735,256.55,54.399 +497736,257.75,56.303 +497737,252.46,50.358 +497738,253.94,52.4 +497739,255.23,54.371 +497740,256.38,56.278 +497741,251.25,50.327 +497742,252.67,52.371 +497743,253.91,54.343 +497744,255.01,56.251 +497745,250.04,50.298 +497746,251.4,52.341 +497747,252.59,54.314 +497748,253.65,56.223 +497749,248.83,50.271 +497750,250.13,52.313 +497751,251.27,54.285 +497752,252.28,56.193 +497753,247.62,50.245 +497754,248.86,52.285 +497755,249.95,54.255 +497756,250.9,56.161 +497757,246.41,50.222 +497758,247.6,52.257 +497759,248.63,54.224 +497760,249.53,56.128 +497761,245.2,50.199 +497762,246.33,52.23 +497763,247.31,54.193 +497764,248.16,56.094 +497765,244,50.179 +497766,245.06,52.204 +497767,245.98,54.162 +497768,246.79,56.058 +497769,242.79,50.159 +497770,243.79,52.178 +497771,244.66,54.13 +497772,245.41,56.021 +497773,241.59,50.142 +497774,242.53,52.152 +497775,243.34,54.097 +497776,244.04,55.982 +497777,240.38,50.126 +497778,241.26,52.127 +497779,242.02,54.064 +497780,242.67,55.941 +497781,239.18,50.112 +497782,240,52.103 +497783,240.69,54.031 +497784,241.29,55.899 +497785,237.98,50.099 +497786,238.73,52.079 +497787,239.37,53.996 +497788,239.92,55.856 +497789,236.77,50.088 +497790,237.47,52.056 +497791,238.05,53.962 +497792,238.54,55.811 +497793,235.57,50.079 +497794,236.2,52.033 +497795,236.73,53.927 +497796,237.16,55.765 +497797,234.37,50.071 +497798,234.94,52.011 +497799,235.4,53.891 +497800,235.79,55.717 +497801,233.17,50.065 +497802,233.67,51.989 +497803,234.08,53.855 +497804,234.41,55.667 +497805,231.97,50.06 +497806,232.41,51.968 +497807,232.76,53.819 +497808,233.03,55.616 +497809,230.77,50.057 +497810,231.14,51.947 +497811,231.43,53.782 +497812,231.66,55.564 +497813,229.57,50.055 +497814,229.88,51.927 +497815,230.11,53.744 +497816,230.28,55.51 +497817,228.37,50.055 +497818,228.61,51.907 +497819,228.79,53.706 +497820,228.9,55.455 +497821,227.17,50.056 +497822,227.35,51.888 +497823,227.46,53.667 +497824,227.52,55.398 +497825,225.97,50.059 +497826,226.09,51.869 +497827,226.14,53.628 +497828,226.14,55.34 +497829,224.77,50.063 +497830,224.82,51.851 +497831,224.82,53.589 +497832,224.77,55.281 +497833,223.57,50.069 +497834,223.56,51.833 +497835,223.5,53.549 +497836,223.39,55.22 +497837,222.37,50.076 +497838,222.29,51.815 +497839,222.17,53.509 +497840,222.01,55.158 +497841,221.17,50.085 +497842,221.03,51.799 +497843,220.85,53.468 +497844,220.63,55.094 +497845,219.97,50.095 +497846,219.77,51.782 +497847,219.53,53.426 +497848,219.25,55.029 +497849,218.77,50.106 +497850,218.5,51.766 +497851,218.2,53.385 +497852,217.87,54.963 +497853,217.57,50.119 +497854,217.24,51.751 +497855,216.88,53.342 +497856,216.5,54.895 +497857,216.36,50.133 +497858,215.98,51.736 +497859,215.56,53.3 +497860,215.12,54.826 +497861,215.16,50.148 +497862,214.71,51.721 +497863,214.24,53.257 +497864,213.74,54.756 +497865,213.96,50.164 +497866,213.45,51.707 +497867,212.92,53.213 +497868,212.36,54.684 +497869,212.76,50.182 +497870,212.18,51.693 +497871,211.59,53.169 +497872,210.99,54.611 +497873,211.55,50.201 +497874,210.92,51.68 +497875,210.27,53.125 +497876,209.61,54.537 +497877,210.35,50.221 +497878,209.66,51.667 +497879,208.95,53.08 +497880,208.23,54.462 +497881,209.14,50.243 +497882,208.39,51.654 +497883,207.63,53.035 +497884,206.86,54.385 +497885,207.94,50.265 +497886,207.13,51.642 +497887,206.31,52.989 +497888,205.48,54.307 +497889,206.73,50.289 +497890,205.86,51.63 +497891,204.99,52.944 +497892,204.11,54.229 +497893,205.52,50.314 +497894,204.6,51.619 +497895,203.67,52.897 +497896,202.73,54.149 +497897,204.31,50.339 +497898,203.33,51.608 +497899,202.35,52.851 +497900,201.36,54.068 +497901,203.1,50.366 +497902,202.07,51.597 +497903,201.03,52.804 +497904,199.98,53.985 +497905,201.89,50.394 +497906,200.8,51.587 +497907,199.71,52.756 +497908,198.61,53.902 +497909,200.68,50.423 +497910,199.54,51.577 +497911,198.39,52.709 +497912,197.24,53.818 +497913,199.47,50.452 +497914,198.27,51.567 +497915,197.07,52.661 +497916,195.87,53.732 +497917,198.25,50.483 +497918,197,51.558 +497919,195.75,52.613 +497920,194.5,53.646 +497921,197.04,50.515 +497922,195.74,51.549 +497923,194.43,52.564 +497924,193.13,53.559 +497925,195.82,50.547 +497926,194.47,51.54 +497927,193.11,52.515 +497928,191.76,53.471 +497929,194.61,50.58 +497930,193.2,51.532 +497931,191.8,52.466 +497932,190.39,53.381 +497933,193.39,50.614 +497934,191.94,51.523 +497935,190.48,52.416 +497936,189.02,53.291 +497937,192.17,50.649 +497938,190.67,51.516 +497939,189.16,52.367 +497940,187.66,53.201 +497941,190.95,50.684 +497942,189.4,51.508 +497943,187.85,52.317 +497944,186.29,53.109 +497945,189.72,50.72 +497946,188.13,51.501 +497947,186.53,52.266 +497948,184.92,53.016 +497949,188.5,50.757 +497950,186.86,51.493 +497951,185.22,52.216 +497952,183.56,52.923 +497953,187.27,50.794 +497954,185.59,51.486 +497955,183.9,52.165 +497956,182.2,52.829 +497957,186.05,50.832 +497958,184.32,51.48 +497959,182.59,52.114 +497960,180.84,52.734 +497961,184.82,50.87 +497962,183.05,51.473 +497963,181.27,52.063 +497964,179.48,52.639 +497965,183.59,50.909 +497966,181.78,51.467 +497967,179.96,52.012 +497968,178.12,52.543 +497969,182.36,50.949 +497970,180.51,51.461 +497971,178.65,51.96 +497972,176.76,52.446 +497973,181.12,50.988 +497974,179.24,51.455 +497975,177.34,51.909 +497976,175.4,52.349 +497977,179.89,51.029 +497978,177.97,51.449 +497979,176.02,51.857 +497980,174.05,52.252 +497981,178.65,51.069 +497982,176.7,51.443 +497983,174.71,51.805 +497984,172.7,52.153 +497985,177.41,51.11 +497986,175.42,51.438 +497987,173.4,51.753 +497988,171.34,52.055 +497989,176.17,51.151 +497990,174.15,51.432 +497991,172.09,51.701 +497992,169.99,51.956 +497993,174.93,51.193 +497994,172.88,51.427 +497995,170.78,51.649 +497996,168.64,51.856 +497997,173.69,51.234 +497998,171.6,51.421 +497999,169.47,51.596 +498000,167.29,51.756 +498001,172.44,51.276 +498002,170.33,51.416 +498003,168.17,51.544 +498004,165.95,51.656 +498005,171.2,51.318 +498006,169.05,51.411 +498007,166.86,51.491 +498008,164.6,51.556 +498009,169.95,51.36 +498010,167.78,51.406 +498011,165.55,51.439 +498012,163.26,51.455 +498013,168.7,51.402 +498014,166.5,51.401 +498015,164.24,51.386 +498016,161.92,51.354 +498017,167.45,51.444 +498018,165.23,51.396 +498019,162.94,51.333 +498020,160.58,51.253 +498021,166.19,51.486 +498022,163.95,51.391 +498023,161.63,51.28 +498024,159.24,51.152 +498025,164.94,51.528 +498026,162.67,51.386 +498027,160.33,51.228 +498028,157.9,51.05 +498029,163.68,51.57 +498030,161.39,51.381 +498031,159.03,51.175 +498032,156.57,50.949 +498033,162.42,51.612 +498034,160.11,51.376 +498035,157.72,51.122 +498036,155.23,50.847 +498037,161.16,51.654 +498038,158.83,51.372 +498039,156.42,51.07 +498040,153.9,50.746 +498041,159.9,51.696 +498042,157.55,51.367 +498043,155.12,51.017 +498044,152.57,50.645 +498045,158.63,51.737 +498046,156.27,51.361 +498047,153.82,50.965 +498048,151.25,50.543 +498049,157.36,51.778 +498050,154.99,51.356 +498051,152.52,50.912 +498052,149.92,50.442 +498053,156.09,51.819 +498054,153.71,51.351 +498055,151.22,50.86 +498056,148.6,50.341 +498057,154.82,51.859 +498058,152.43,51.346 +498059,149.92,50.807 +498060,147.27,50.241 +498061,153.55,51.899 +498062,151.15,51.34 +498063,148.62,50.755 +498064,145.95,50.14 +498065,152.28,51.939 +498066,149.86,51.335 +498067,147.32,50.703 +498068,144.64,50.04 +498069,151,51.978 +498070,148.58,51.329 +498071,146.03,50.651 +498072,143.32,49.94 +498073,149.72,52.017 +498074,147.3,51.324 +498075,144.73,50.599 +498076,142.01,49.841 +498077,148.44,52.055 +498078,146.01,51.318 +498079,143.44,50.548 +498080,140.7,49.741 +498081,147.16,52.093 +498082,144.72,51.312 +498083,142.14,50.496 +498084,139.39,49.643 +498085,145.88,52.13 +498086,143.44,51.305 +498087,140.85,50.445 +498088,138.08,49.545 +498089,144.59,52.167 +498090,142.15,51.299 +498091,139.55,50.394 +498092,136.77,49.447 +498093,143.31,52.203 +498094,140.86,51.292 +498095,138.26,50.343 +498096,135.47,49.35 +498097,142.02,52.238 +498098,139.58,51.286 +498099,136.97,50.292 +498100,134.17,49.254 +498101,140.73,52.273 +498102,138.29,51.279 +498103,135.68,50.242 +498104,132.87,49.158 +498105,139.43,52.307 +498106,137,51.271 +498107,134.39,50.192 +498108,131.57,49.063 +498109,138.14,52.34 +498110,135.71,51.264 +498111,133.1,50.142 +498112,130.28,48.969 +498113,136.84,52.373 +498114,134.42,51.256 +498115,131.81,50.092 +498116,128.99,48.875 +498117,135.55,52.404 +498118,133.13,51.248 +498119,130.53,50.043 +498120,127.7,48.782 +498121,134.25,52.435 +498122,131.84,51.24 +498123,129.24,49.994 +498124,126.41,48.69 +498125,132.94,52.465 +498126,130.55,51.231 +498127,127.95,49.945 +498128,125.13,48.599 +498129,131.64,52.494 +498130,129.25,51.222 +498131,126.67,49.897 +498132,123.84,48.509 +498133,130.34,52.522 +498134,127.96,51.213 +498135,125.38,49.849 +498136,122.56,48.42 +498137,129.03,52.549 +498138,126.67,51.204 +498139,124.1,49.801 +498140,121.28,48.332 +498141,127.72,52.575 +498142,125.37,51.194 +498143,122.82,49.754 +498144,120.01,48.245 +498145,126.41,52.6 +498146,124.08,51.184 +498147,121.53,49.707 +498148,118.74,48.159 +498149,125.1,52.624 +498150,122.78,51.173 +498151,120.25,49.66 +498152,117.46,48.074 +498153,123.79,52.646 +498154,121.49,51.163 +498155,118.97,49.614 +498156,116.19,47.99 +498157,122.47,52.668 +498158,120.19,51.151 +498159,117.69,49.568 +498160,114.93,47.908 +498161,121.15,52.689 +498162,118.89,51.14 +498163,116.41,49.522 +498164,113.66,47.826 +498165,119.83,52.709 +498166,117.59,51.128 +498167,115.14,49.477 +498168,112.4,47.746 +498169,118.51,52.727 +498170,116.3,51.116 +498171,113.86,49.433 +498172,111.14,47.667 +498173,117.19,52.744 +498174,115,51.103 +498175,112.58,49.388 +498176,109.88,47.589 +498177,115.87,52.76 +498178,113.7,51.09 +498179,111.3,49.345 +498180,108.63,47.513 +498181,114.55,52.775 +498182,112.4,51.076 +498183,110.03,49.301 +498184,107.38,47.438 +498185,113.22,52.788 +498186,111.1,51.062 +498187,108.75,49.259 +498188,106.13,47.365 +498189,111.89,52.8 +498190,109.8,51.048 +498191,107.48,49.216 +498192,104.88,47.293 +498193,110.56,52.811 +498194,108.5,51.033 +498195,106.21,49.174 +498196,103.63,47.222 +498197,109.23,52.821 +498198,107.2,51.018 +498199,104.94,49.133 +498200,102.39,47.153 +498201,107.9,52.829 +498202,105.89,51.002 +498203,103.66,49.092 +498204,101.15,47.085 +498205,106.57,52.836 +498206,104.59,50.986 +498207,102.39,49.052 +498208,99.905,47.019 +498209,105.23,52.842 +498210,103.29,50.97 +498211,101.12,49.012 +498212,98.668,46.955 +498213,103.89,52.846 +498214,101.99,50.953 +498215,99.852,48.973 +498216,97.432,46.892 +498217,102.56,52.848 +498218,100.68,50.935 +498219,98.583,48.934 +498220,96.199,46.83 +498221,101.22,52.85 +498222,99.378,50.917 +498223,97.315,48.895 +498224,94.968,46.77 +498225,99.878,52.849 +498226,98.073,50.899 +498227,96.047,48.858 +498228,93.739,46.712 +498229,98.537,52.848 +498230,96.768,50.88 +498231,94.78,48.82 +498232,92.511,46.656 +498233,97.194,52.845 +498234,95.462,50.86 +498235,93.513,48.784 +498236,91.286,46.601 +498237,95.851,52.84 +498238,94.157,50.84 +498239,92.247,48.748 +498240,90.063,46.548 +498241,94.506,52.834 +498242,92.85,50.82 +498243,90.982,48.712 +498244,88.841,46.497 +498245,93.16,52.826 +498246,91.544,50.799 +498247,89.717,48.677 +498248,87.621,46.447 +498249,91.813,52.817 +498250,90.237,50.777 +498251,88.453,48.643 +498252,86.404,46.4 +498253,90.464,52.806 +498254,88.929,50.755 +498255,87.19,48.609 +498256,85.188,46.354 +498257,89.115,52.794 +498258,87.622,50.733 +498259,85.927,48.576 +498260,83.973,46.309 +498261,87.765,52.78 +498262,86.314,50.709 +498263,84.664,48.543 +498264,82.761,46.267 +498265,86.413,52.765 +498266,85.006,50.686 +498267,83.403,48.511 +498268,81.55,46.226 +498269,85.061,52.748 +498270,83.697,50.662 +498271,82.141,48.48 +498272,80.34,46.187 +498273,83.708,52.73 +498274,82.388,50.637 +498275,80.88,48.449 +498276,79.132,46.15 +498277,82.354,52.71 +498278,81.079,50.612 +498279,79.62,48.419 +498280,77.926,46.115 +498281,80.999,52.688 +498282,79.769,50.586 +498283,78.36,48.389 +498284,76.721,46.082 +498285,79.643,52.665 +498286,78.46,50.56 +498287,77.101,48.36 +498288,75.517,46.051 +498289,78.286,52.64 +498290,77.15,50.533 +498291,75.842,48.332 +498292,74.315,46.021 +498293,76.929,52.613 +498294,75.84,50.506 +498295,74.583,48.304 +498296,73.114,45.993 +498297,75.571,52.585 +498298,74.529,50.478 +498299,73.325,48.276 +498300,71.914,45.967 +498301,74.212,52.555 +498302,73.219,50.449 +498303,72.067,48.25 +498304,70.716,45.943 +498305,72.852,52.524 +498306,71.908,50.42 +498307,70.81,48.224 +498308,69.518,45.921 +498309,71.492,52.491 +498310,70.597,50.391 +498311,69.553,48.198 +498312,68.322,45.901 +498313,70.131,52.457 +498314,69.286,50.361 +498315,68.297,48.174 +498316,67.126,45.882 +498317,68.77,52.42 +498318,67.974,50.33 +498319,67.04,48.149 +498320,65.932,45.866 +498321,67.408,52.383 +498322,66.663,50.299 +498323,65.785,48.126 +498324,64.738,45.851 +498325,66.045,52.343 +498326,65.351,50.267 +498327,64.529,48.103 +498328,63.545,45.838 +498329,64.682,52.302 +498330,64.04,50.235 +498331,63.274,48.081 +498332,62.353,45.827 +498333,63.319,52.26 +498334,62.728,50.202 +498335,62.019,48.059 +498336,61.162,45.818 +498337,61.955,52.215 +498338,61.416,50.169 +498339,60.764,48.038 +498340,59.971,45.81 +498341,60.591,52.17 +498342,60.104,50.135 +498343,59.51,48.017 +498344,58.781,45.804 +498345,59.226,52.122 +498346,58.792,50.101 +498347,58.255,47.997 +498348,57.592,45.801 +498349,57.862,52.073 +498350,57.48,50.066 +498351,57.001,47.978 +498352,56.402,45.798 +498353,56.496,52.023 +498354,56.168,50.031 +498355,55.747,47.959 +498356,55.214,45.798 +498357,55.131,51.97 +498358,54.856,49.995 +498359,54.494,47.941 +498360,54.025,45.8 +498361,53.765,51.917 +498362,53.543,49.958 +498363,53.24,47.923 +498364,52.837,45.803 +498365,52.4,51.861 +498366,52.231,49.921 +498367,51.987,47.906 +498368,51.649,45.808 +498369,51.034,51.805 +498370,50.919,49.884 +498371,50.734,47.89 +498372,50.461,45.814 +498373,49.668,51.746 +498374,49.607,49.846 +498375,49.481,47.874 +498376,49.273,45.822 +498377,48.302,51.686 +498378,48.295,49.807 +498379,48.228,47.858 +498380,48.085,45.832 +498381,46.936,51.625 +498382,46.983,49.768 +498383,46.975,47.844 +498384,46.898,45.844 +498385,45.569,51.562 +498386,45.671,49.729 +498387,45.722,47.829 +498388,45.71,45.857 +498389,44.203,51.498 +498390,44.36,49.689 +498391,44.469,47.816 +498392,44.522,45.872 +498393,42.837,51.432 +498394,43.048,49.648 +498395,43.216,47.802 +498396,43.333,45.888 +498397,41.472,51.364 +498398,41.737,49.608 +498399,41.964,47.79 +498400,42.145,45.906 +498401,40.106,51.296 +498402,40.425,49.566 +498403,40.711,47.778 +498404,40.956,45.926 +498405,38.74,51.226 +498406,39.114,49.524 +498407,39.458,47.766 +498408,39.766,45.947 +498409,37.375,51.154 +498410,37.803,49.482 +498411,38.205,47.755 +498412,38.577,45.969 +498413,36.01,51.081 +498414,36.492,49.439 +498415,36.952,47.745 +498416,37.386,45.993 +498417,34.645,51.007 +498418,35.181,49.396 +498419,35.699,47.734 +498420,36.195,46.018 +498421,33.281,50.931 +498422,33.871,49.353 +498423,34.446,47.725 +498424,35.004,46.045 +498425,31.917,50.854 +498426,32.561,49.309 +498427,33.193,47.716 +498428,33.812,46.073 +498429,30.553,50.776 +498430,31.251,49.264 +498431,31.94,47.707 +498432,32.619,46.102 +498433,29.19,50.696 +498434,29.941,49.219 +498435,30.686,47.699 +498436,31.425,46.133 +498437,27.827,50.615 +498438,28.631,49.174 +498439,29.433,47.691 +498440,30.23,46.165 +498441,26.465,50.533 +498442,27.322,49.128 +498443,28.179,47.684 +498444,29.035,46.198 +498445,25.103,50.45 +498446,26.013,49.082 +498447,26.925,47.677 +498448,27.839,46.232 +498449,23.742,50.365 +498450,24.705,49.036 +498451,25.671,47.671 +498452,26.641,46.268 +498453,22.381,50.279 +498454,23.396,48.989 +498455,24.417,47.664 +498456,25.443,46.304 +498457,21.021,50.193 +498458,22.089,48.942 +498459,23.162,47.659 +498460,24.243,46.342 +498461,19.662,50.105 +498462,20.781,48.895 +498463,21.907,47.654 +498464,23.043,46.381 +498465,18.304,50.016 +498466,19.474,48.847 +498467,20.652,47.649 +498468,21.841,46.421 +498469,16.946,49.925 +498470,18.167,48.799 +498471,19.397,47.644 +498472,20.638,46.462 +498473,15.59,49.834 +498474,16.86,48.75 +498475,18.142,47.64 +498476,19.434,46.503 +498477,14.234,49.742 +498478,15.554,48.702 +498479,16.886,47.636 +498480,18.228,46.546 +498481,12.878,49.649 +498482,14.249,48.653 +498483,15.629,47.633 +498484,17.021,46.589 +498485,11.524,49.555 +498486,12.944,48.603 +498487,14.373,47.63 +498488,15.813,46.634 +498489,10.171,49.46 +498490,11.639,48.554 +498491,13.116,47.627 +498492,14.604,46.679 +498493,8.8189,49.364 +498494,10.335,48.504 +498495,11.859,47.624 +498496,13.393,46.725 +498497,7.4677,49.267 +498498,9.0308,48.454 +498499,10.601,47.622 +498500,12.18,46.772 +498501,6.1176,49.17 +498502,7.7275,48.404 +498503,9.3434,47.62 +498504,10.966,46.819 +498505,4.7685,49.071 +498506,6.4247,48.353 +498507,8.0851,47.618 +498508,9.7508,46.867 +498509,3.4207,48.972 +498510,5.1224,48.303 +498511,6.8263,47.617 +498512,8.5338,46.916 +498513,2.074,48.872 +498514,3.8205,48.252 +498515,5.5672,47.615 +498516,7.3152,46.965 +498517,0.72846,48.772 +498518,2.5193,48.201 +498519,4.3077,47.614 +498520,6.0949,47.014 +498521,359.38,48.671 +498522,1.2185,48.149 +498523,3.0477,47.614 +498524,4.873,47.065 +498525,358.04,48.569 +498526,359.92,48.098 +498527,1.7873,47.613 +498528,3.6495,47.115 +498529,356.7,48.467 +498530,358.62,48.046 +498531,0.52649,47.613 +498532,2.4243,47.166 +498533,355.36,48.364 +498534,357.32,47.995 +498535,359.27,47.612 +498536,1.1974,47.218 +498537,354.02,48.26 +498538,356.02,47.943 +498539,358,47.612 +498540,359.97,47.269 +498541,352.68,48.156 +498542,354.72,47.891 +498543,356.74,47.612 +498544,358.74,47.321 +498545,351.35,48.052 +498546,353.43,47.839 +498547,355.48,47.612 +498548,357.51,47.374 +498549,350.01,47.947 +498550,352.13,47.787 +498551,354.22,47.613 +498552,356.27,47.426 +498553,348.68,47.842 +498554,350.83,47.735 +498555,352.95,47.613 +498556,355.04,47.479 +498557,347.35,47.737 +498558,349.54,47.683 +498559,351.69,47.614 +498560,353.8,47.532 +498561,346.02,47.632 +498562,348.24,47.63 +498563,350.42,47.614 +498564,352.56,47.584 +498565,344.69,47.526 +498566,346.95,47.578 +498567,349.16,47.615 +498568,351.32,47.637 +498569,343.36,47.42 +498570,345.66,47.526 +498571,347.89,47.616 +498572,350.08,47.69 +498573,342.04,47.314 +498574,344.36,47.474 +498575,346.63,47.616 +498576,348.83,47.743 +498577,340.72,47.207 +498578,343.07,47.421 +498579,345.36,47.617 +498580,347.58,47.796 +498581,339.39,47.101 +498582,341.78,47.369 +498583,344.09,47.618 +498584,346.34,47.849 +498585,338.07,46.995 +498586,340.49,47.317 +498587,342.82,47.619 +498588,345.08,47.901 +498589,336.76,46.888 +498590,339.2,47.265 +498591,341.55,47.619 +498592,343.83,47.953 +498593,335.44,46.782 +498594,337.91,47.213 +498595,340.29,47.62 +498596,342.58,48.006 +498597,334.13,46.676 +498598,336.62,47.161 +498599,339.02,47.621 +498600,341.32,48.057 +498601,332.81,46.57 +498602,335.33,47.109 +498603,337.75,47.621 +498604,340.06,48.109 +498605,331.5,46.464 +498606,334.05,47.058 +498607,336.48,47.622 +498608,338.8,48.16 +498609,330.2,46.359 +498610,332.76,47.006 +498611,335.2,47.622 +498612,337.54,48.211 +498613,328.89,46.254 +498614,331.47,46.955 +498615,333.93,47.623 +498616,336.28,48.261 +498617,327.59,46.149 +498618,330.19,46.903 +498619,332.66,47.623 +498620,335.01,48.311 +498621,326.28,46.044 +498622,328.91,46.852 +498623,331.39,47.623 +498624,333.75,48.361 +498625,324.98,45.94 +498626,327.62,46.801 +498627,330.11,47.623 +498628,332.48,48.41 +498629,323.69,45.837 +498630,326.34,46.751 +498631,328.84,47.623 +498632,331.2,48.458 +498633,322.39,45.733 +498634,325.06,46.7 +498635,327.56,47.623 +498636,329.93,48.506 +498637,321.1,45.631 +498638,323.78,46.65 +498639,326.29,47.622 +498640,328.66,48.553 +498641,319.8,45.529 +498642,322.5,46.6 +498643,325.01,47.622 +498644,327.38,48.6 +498645,318.52,45.427 +498646,321.22,46.55 +498647,323.74,47.621 +498648,326.1,48.645 +498649,317.23,45.327 +498650,319.94,46.501 +498651,322.46,47.62 +498652,324.82,48.69 +498653,315.94,45.227 +498654,318.66,46.452 +498655,321.18,47.619 +498656,323.54,48.735 +498657,314.66,45.128 +498658,317.38,46.403 +498659,319.9,47.617 +498660,322.25,48.778 +498661,313.38,45.029 +498662,316.11,46.354 +498663,318.63,47.615 +498664,320.97,48.821 +498665,312.1,44.932 +498666,314.83,46.306 +498667,317.35,47.613 +498668,319.68,48.862 +498669,310.83,44.835 +498670,313.56,46.258 +498671,316.07,47.611 +498672,318.39,48.903 +498673,309.55,44.74 +498674,312.28,46.21 +498675,314.79,47.608 +498676,317.1,48.943 +498677,308.28,44.645 +498678,311.01,46.163 +498679,313.5,47.606 +498680,315.81,48.982 +498681,307.01,44.552 +498682,309.74,46.116 +498683,312.22,47.603 +498684,314.51,49.02 +498685,305.74,44.459 +498686,308.47,46.07 +498687,310.94,47.599 +498688,313.22,49.057 +498689,304.48,44.368 +498690,307.2,46.024 +498691,309.66,47.595 +498692,311.92,49.093 +498693,303.22,44.278 +498694,305.92,45.979 +498695,308.37,47.591 +498696,310.62,49.127 +498697,301.96,44.189 +498698,304.66,45.933 +498699,307.09,47.587 +498700,309.32,49.161 +498701,300.7,44.101 +498702,303.39,45.889 +498703,305.81,47.582 +498704,308.02,49.194 +498705,299.45,44.014 +498706,302.12,45.844 +498707,304.52,47.577 +498708,306.71,49.225 +498709,298.19,43.929 +498710,300.85,45.801 +498711,303.24,47.571 +498712,305.4,49.255 +498713,296.94,43.845 +498714,299.59,45.757 +498715,301.95,47.565 +498716,304.1,49.284 +498717,295.69,43.763 +498718,298.32,45.714 +498719,300.66,47.559 +498720,302.79,49.312 +498721,294.45,43.682 +498722,297.06,45.672 +498723,299.38,47.552 +498724,301.48,49.338 +498725,293.2,43.602 +498726,295.79,45.63 +498727,298.09,47.545 +498728,300.16,49.363 +498729,291.96,43.524 +498730,294.53,45.589 +498731,296.8,47.538 +498732,298.85,49.387 +498733,290.72,43.448 +498734,293.27,45.548 +498735,295.51,47.53 +498736,297.53,49.41 +498737,289.49,43.373 +498738,292,45.508 +498739,294.23,47.521 +498740,296.22,49.431 +498741,288.25,43.3 +498742,290.74,45.468 +498743,292.94,47.512 +498744,294.9,49.45 +498745,287.02,43.228 +498746,289.48,45.429 +498747,291.65,47.503 +498748,293.58,49.469 +498749,285.79,43.158 +498750,288.22,45.391 +498751,290.36,47.493 +498752,292.26,49.486 +498753,284.56,43.09 +498754,286.96,45.353 +498755,289.07,47.483 +498756,290.94,49.501 +498757,283.34,43.024 +498758,285.71,45.315 +498759,287.77,47.472 +498760,289.61,49.515 +498761,282.11,42.959 +498762,284.45,45.279 +498763,286.48,47.461 +498764,288.29,49.528 +498765,280.89,42.896 +498766,283.19,45.242 +498767,285.19,47.449 +498768,286.96,49.539 +498769,279.67,42.835 +498770,281.93,45.207 +498771,283.9,47.437 +498772,285.64,49.548 +498773,278.45,42.776 +498774,280.68,45.172 +498775,282.61,47.424 +498776,284.31,49.556 +498777,277.24,42.718 +498778,279.42,45.138 +498779,281.31,47.411 +498780,282.98,49.562 +498781,276.02,42.663 +498782,278.17,45.104 +498783,280.02,47.397 +498784,281.65,49.567 +498785,274.81,42.609 +498786,276.92,45.071 +498787,278.73,47.383 +498788,280.32,49.571 +498789,273.6,42.558 +498790,275.66,45.038 +498791,277.43,47.368 +498792,278.98,49.572 +498793,272.39,42.508 +498794,274.41,45.007 +498795,276.14,47.353 +498796,277.65,49.572 +498797,271.19,42.46 +498798,273.16,44.975 +498799,274.84,47.337 +498800,276.31,49.571 +498801,269.98,42.415 +498802,271.91,44.945 +498803,273.55,47.321 +498804,274.98,49.568 +498805,268.78,42.371 +498806,270.66,44.915 +498807,272.25,47.304 +498808,273.64,49.563 +498809,267.58,42.329 +498810,269.41,44.886 +498811,270.96,47.287 +498812,272.3,49.556 +498813,266.38,42.29 +498814,268.16,44.858 +498815,269.66,47.269 +498816,270.96,49.548 +498817,265.18,42.252 +498818,266.91,44.83 +498819,268.36,47.25 +498820,269.62,49.538 +498821,263.99,42.217 +498822,265.66,44.803 +498823,267.07,47.231 +498824,268.28,49.527 +498825,262.79,42.184 +498826,264.41,44.777 +498827,265.77,47.211 +498828,266.94,49.514 +498829,261.6,42.152 +498830,263.16,44.751 +498831,264.47,47.191 +498832,265.6,49.499 +498833,260.41,42.123 +498834,261.91,44.726 +498835,263.18,47.17 +498836,264.26,49.482 +498837,259.22,42.096 +498838,260.67,44.702 +498839,261.88,47.149 +498840,262.91,49.464 +498841,258.03,42.071 +498842,259.42,44.678 +498843,260.58,47.127 +498844,261.57,49.444 +498845,256.84,42.049 +498846,258.17,44.655 +498847,259.28,47.105 +498848,260.22,49.422 +498849,255.66,42.028 +498850,256.93,44.633 +498851,257.99,47.081 +498852,258.88,49.399 +498853,254.47,42.009 +498854,255.68,44.611 +498855,256.69,47.058 +498856,257.53,49.374 +498857,253.29,41.993 +498858,254.44,44.591 +498859,255.39,47.034 +498860,256.19,49.347 +498861,252.1,41.979 +498862,253.19,44.571 +498863,254.09,47.009 +498864,254.84,49.318 +498865,250.92,41.966 +498866,251.95,44.551 +498867,252.79,46.984 +498868,253.49,49.288 +498869,249.74,41.956 +498870,250.71,44.532 +498871,251.49,46.958 +498872,252.14,49.256 +498873,248.56,41.948 +498874,249.46,44.514 +498875,250.19,46.931 +498876,250.79,49.222 +498877,247.38,41.942 +498878,248.22,44.497 +498879,248.9,46.904 +498880,249.45,49.187 +498881,246.2,41.938 +498882,246.98,44.481 +498883,247.6,46.877 +498884,248.1,49.15 +498885,245.02,41.937 +498886,245.73,44.465 +498887,246.3,46.849 +498888,246.75,49.111 +498889,243.84,41.937 +498890,244.49,44.449 +498891,245,46.82 +498892,245.4,49.07 +498893,242.66,41.939 +498894,243.25,44.435 +498895,243.7,46.791 +498896,244.05,49.028 +498897,241.48,41.944 +498898,242,44.421 +498899,242.4,46.761 +498900,242.7,48.984 +498901,240.3,41.95 +498902,240.76,44.408 +498903,241.1,46.731 +498904,241.35,48.938 +498905,239.13,41.958 +498906,239.52,44.395 +498907,239.8,46.7 +498908,240,48.891 +498909,237.95,41.969 +498910,238.28,44.383 +498911,238.5,46.668 +498912,238.65,48.842 +498913,236.77,41.981 +498914,237.04,44.372 +498915,237.2,46.636 +498916,237.3,48.791 +498917,235.6,41.995 +498918,235.8,44.362 +498919,235.91,46.604 +498920,235.95,48.739 +498921,234.42,42.012 +498922,234.55,44.352 +498923,234.61,46.571 +498924,234.59,48.685 +498925,233.24,42.03 +498926,233.31,44.343 +498927,233.31,46.537 +498928,233.24,48.629 +498929,232.06,42.05 +498930,232.07,44.334 +498931,232.01,46.503 +498932,231.89,48.572 +498933,230.89,42.072 +498934,230.83,44.326 +498935,230.71,46.469 +498936,230.54,48.513 +498937,229.71,42.095 +498938,229.59,44.319 +498939,229.41,46.434 +498940,229.19,48.453 +498941,228.53,42.121 +498942,228.35,44.312 +498943,228.11,46.398 +498944,227.84,48.391 +498945,227.35,42.148 +498946,227.11,44.306 +498947,226.82,46.362 +498948,226.49,48.328 +498949,226.17,42.177 +498950,225.86,44.301 +498951,225.52,46.326 +498952,225.14,48.263 +498953,224.99,42.208 +498954,224.62,44.296 +498955,224.22,46.289 +498956,223.79,48.196 +498957,223.81,42.24 +498958,223.38,44.292 +498959,222.92,46.251 +498960,222.45,48.128 +498961,222.63,42.274 +498962,222.14,44.288 +498963,221.63,46.213 +498964,221.1,48.058 +498965,221.45,42.31 +498966,220.9,44.285 +498967,220.33,46.175 +498968,219.75,47.987 +498969,220.27,42.347 +498970,219.66,44.283 +498971,219.03,46.136 +498972,218.4,47.915 +498973,219.09,42.386 +498974,218.41,44.281 +498975,217.73,46.096 +498976,217.05,47.841 +498977,217.9,42.426 +498978,217.17,44.279 +498979,216.44,46.057 +498980,215.71,47.765 +498981,216.72,42.468 +498982,215.93,44.278 +498983,215.14,46.016 +498984,214.36,47.688 +498985,215.53,42.511 +498986,214.69,44.278 +498987,213.85,45.976 +498988,213.02,47.61 +498989,214.35,42.556 +498990,213.44,44.278 +498991,212.55,45.935 +498992,211.67,47.531 +498993,213.16,42.602 +498994,212.2,44.279 +498995,211.26,45.893 +498996,210.33,47.45 +498997,211.97,42.65 +498998,210.96,44.28 +498999,209.96,45.852 +499000,208.98,47.368 +499001,210.78,42.698 +499002,209.71,44.282 +499003,208.67,45.809 +499004,207.64,47.285 +499005,209.59,42.748 +499006,208.47,44.284 +499007,207.37,45.767 +499008,206.3,47.2 +499009,208.4,42.799 +499010,207.23,44.287 +499011,206.08,45.724 +499012,204.96,47.114 +499013,207.2,42.852 +499014,205.98,44.29 +499015,204.79,45.681 +499016,203.62,47.027 +499017,206.01,42.905 +499018,204.74,44.293 +499019,203.49,45.637 +499020,202.28,46.939 +499021,204.81,42.96 +499022,203.49,44.297 +499023,202.2,45.593 +499024,200.94,46.85 +499025,203.61,43.015 +499026,202.25,44.301 +499027,200.91,45.549 +499028,199.6,46.759 +499029,202.41,43.072 +499030,201,44.306 +499031,199.62,45.504 +499032,198.26,46.668 +499033,201.21,43.129 +499034,199.75,44.311 +499035,198.33,45.46 +499036,196.93,46.575 +499037,200.01,43.188 +499038,198.51,44.317 +499039,197.04,45.415 +499040,195.59,46.481 +499041,198.81,43.247 +499042,197.26,44.323 +499043,195.75,45.369 +499044,194.26,46.387 +499045,197.6,43.307 +499046,196.01,44.329 +499047,194.46,45.324 +499048,192.93,46.291 +499049,196.39,43.368 +499050,194.77,44.335 +499051,193.17,45.278 +499052,191.59,46.195 +499053,195.19,43.43 +499054,193.52,44.342 +499055,191.88,45.232 +499056,190.26,46.098 +499057,193.97,43.492 +499058,192.27,44.349 +499059,190.59,45.185 +499060,188.94,46 +499061,192.76,43.555 +499062,191.02,44.357 +499063,189.3,45.139 +499064,187.61,45.901 +499065,191.55,43.619 +499066,189.77,44.365 +499067,188.02,45.092 +499068,186.28,45.801 +499069,190.33,43.683 +499070,188.52,44.373 +499071,186.73,45.045 +499072,184.96,45.701 +499073,189.12,43.748 +499074,187.27,44.381 +499075,185.44,44.998 +499076,183.63,45.599 +499077,187.9,43.813 +499078,186.02,44.389 +499079,184.16,44.951 +499080,182.31,45.498 +499081,186.68,43.879 +499082,184.77,44.398 +499083,182.88,44.904 +499084,180.99,45.395 +499085,185.45,43.945 +499086,183.52,44.407 +499087,181.59,44.857 +499088,179.67,45.292 +499089,184.23,44.011 +499090,182.27,44.416 +499091,180.31,44.809 +499092,178.35,45.189 +499093,183,44.078 +499094,181.01,44.425 +499095,179.03,44.761 +499096,177.03,45.085 +499097,181.77,44.144 +499098,179.76,44.435 +499099,177.74,44.714 +499100,175.72,44.98 +499101,180.54,44.212 +499102,178.51,44.445 +499103,176.46,44.666 +499104,174.41,44.875 +499105,179.31,44.279 +499106,177.25,44.454 +499107,175.18,44.618 +499108,173.09,44.77 +499109,178.08,44.346 +499110,176,44.464 +499111,173.9,44.57 +499112,171.78,44.664 +499113,176.84,44.414 +499114,174.74,44.474 +499115,172.62,44.523 +499116,170.48,44.558 +499117,175.6,44.481 +499118,173.49,44.484 +499119,171.34,44.475 +499120,169.17,44.452 +499121,174.36,44.549 +499122,172.23,44.494 +499123,170.06,44.427 +499124,167.86,44.346 +499125,173.12,44.616 +499126,170.97,44.505 +499127,168.79,44.379 +499128,166.56,44.239 +499129,171.88,44.684 +499130,169.72,44.515 +499131,167.51,44.332 +499132,165.26,44.133 +499133,170.63,44.751 +499134,168.46,44.525 +499135,166.23,44.284 +499136,163.96,44.026 +499137,169.39,44.818 +499138,167.2,44.535 +499139,164.96,44.236 +499140,162.66,43.919 +499141,168.14,44.885 +499142,165.94,44.546 +499143,163.68,44.189 +499144,161.36,43.812 +499145,166.89,44.951 +499146,164.68,44.556 +499147,162.41,44.141 +499148,160.07,43.706 +499149,165.63,45.018 +499150,163.42,44.566 +499151,161.14,44.094 +499152,158.78,43.599 +499153,164.38,45.084 +499154,162.16,44.577 +499155,159.86,44.047 +499156,157.49,43.493 +499157,163.12,45.149 +499158,160.9,44.587 +499159,158.59,44 +499160,156.2,43.387 +499161,161.86,45.214 +499162,159.63,44.597 +499163,157.32,43.953 +499164,154.91,43.281 +499165,160.6,45.279 +499166,158.37,44.607 +499167,156.05,43.906 +499168,153.63,43.175 +499169,159.34,45.343 +499170,157.11,44.617 +499171,154.78,43.86 +499172,152.35,43.07 +499173,158.07,45.407 +499174,155.84,44.627 +499175,153.51,43.814 +499176,151.06,42.965 +499177,156.81,45.47 +499178,154.58,44.636 +499179,152.24,43.768 +499180,149.79,42.86 +499181,155.54,45.532 +499182,153.31,44.646 +499183,150.98,43.722 +499184,148.51,42.756 +499185,154.27,45.594 +499186,152.05,44.655 +499187,149.71,43.677 +499188,147.24,42.653 +499189,153,45.655 +499190,150.78,44.665 +499191,148.44,43.631 +499192,145.96,42.55 +499193,151.73,45.715 +499194,149.52,44.674 +499195,147.18,43.586 +499196,144.69,42.448 +499197,150.45,45.774 +499198,148.25,44.683 +499199,145.92,43.542 +499200,143.43,42.347 +499201,149.17,45.833 +499202,146.98,44.691 +499203,144.65,43.498 +499204,142.16,42.246 +499205,147.89,45.891 +499206,145.71,44.7 +499207,143.39,43.454 +499208,140.9,42.146 +499209,146.61,45.948 +499210,144.44,44.708 +499211,142.13,43.41 +499212,139.64,42.047 +499213,145.33,46.004 +499214,143.17,44.716 +499215,140.87,43.367 +499216,138.38,41.949 +499217,144.05,46.059 +499218,141.9,44.724 +499219,139.61,43.324 +499220,137.12,41.851 +499221,142.76,46.113 +499222,140.63,44.731 +499223,138.35,43.281 +499224,135.87,41.755 +499225,141.47,46.166 +499226,139.36,44.738 +499227,137.09,43.239 +499228,134.61,41.66 +499229,140.18,46.218 +499230,138.09,44.745 +499231,135.83,43.198 +499232,133.36,41.566 +499233,138.89,46.269 +499234,136.82,44.752 +499235,134.57,43.157 +499236,132.12,41.472 +499237,137.6,46.319 +499238,135.54,44.758 +499239,133.31,43.116 +499240,130.87,41.381 +499241,136.31,46.368 +499242,134.27,44.764 +499243,132.06,43.075 +499244,129.63,41.29 +499245,135.01,46.416 +499246,133,44.77 +499247,130.8,43.036 +499248,128.38,41.2 +499249,133.71,46.462 +499250,131.72,44.775 +499251,129.55,42.996 +499252,127.15,41.112 +499253,132.42,46.507 +499254,130.45,44.78 +499255,128.29,42.958 +499256,125.91,41.026 +499257,131.12,46.551 +499258,129.17,44.784 +499259,127.04,42.919 +499260,124.67,40.94 +499261,129.81,46.594 +499262,127.9,44.788 +499263,125.79,42.881 +499264,123.44,40.856 +499265,128.51,46.635 +499266,126.62,44.792 +499267,124.54,42.844 +499268,122.21,40.774 +499269,127.21,46.675 +499270,125.34,44.795 +499271,123.29,42.808 +499272,120.98,40.693 +499273,125.9,46.714 +499274,124.06,44.798 +499275,122.04,42.771 +499276,119.76,40.613 +499277,124.59,46.751 +499278,122.79,44.801 +499279,120.79,42.736 +499280,118.53,40.536 +499281,123.29,46.787 +499282,121.51,44.803 +499283,119.54,42.701 +499284,117.31,40.46 +499285,121.98,46.821 +499286,120.23,44.804 +499287,118.29,42.667 +499288,116.09,40.385 +499289,120.66,46.854 +499290,118.95,44.806 +499291,117.04,42.633 +499292,114.88,40.313 +499293,119.35,46.886 +499294,117.67,44.806 +499295,115.79,42.6 +499296,113.66,40.242 +499297,118.04,46.916 +499298,116.39,44.807 +499299,114.55,42.567 +499300,112.45,40.173 +499301,116.72,46.945 +499302,115.11,44.806 +499303,113.3,42.536 +499304,111.24,40.105 +499305,115.41,46.972 +499306,113.83,44.806 +499307,112.06,42.504 +499308,110.03,40.04 +499309,114.09,46.997 +499310,112.55,44.804 +499311,110.81,42.474 +499312,108.82,39.977 +499313,112.77,47.021 +499314,111.27,44.803 +499315,109.57,42.444 +499316,107.61,39.915 +499317,111.45,47.043 +499318,109.98,44.8 +499319,108.32,42.415 +499320,106.41,39.856 +499321,110.13,47.064 +499322,108.7,44.798 +499323,107.08,42.386 +499324,105.21,39.798 +499325,108.81,47.083 +499326,107.42,44.795 +499327,105.84,42.359 +499328,104.01,39.743 +499329,107.49,47.1 +499330,106.14,44.791 +499331,104.6,42.331 +499332,102.81,39.69 +499333,106.17,47.116 +499334,104.85,44.787 +499335,103.36,42.305 +499336,101.61,39.638 +499337,104.84,47.13 +499338,103.57,44.782 +499339,102.12,42.279 +499340,100.42,39.589 +499341,103.52,47.142 +499342,102.28,44.776 +499343,100.88,42.255 +499344,99.225,39.542 +499345,102.19,47.153 +499346,101,44.77 +499347,99.636,42.23 +499348,98.034,39.497 +499349,100.86,47.162 +499350,99.716,44.764 +499351,98.397,42.207 +499352,96.844,39.455 +499353,99.536,47.169 +499354,98.431,44.757 +499355,97.158,42.184 +499356,95.655,39.414 +499357,98.208,47.175 +499358,97.146,44.75 +499359,95.92,42.162 +499360,94.468,39.376 +499361,96.879,47.179 +499362,95.861,44.741 +499363,94.682,42.141 +499364,93.283,39.34 +499365,95.549,47.181 +499366,94.575,44.733 +499367,93.445,42.12 +499368,92.098,39.307 +499369,94.219,47.181 +499370,93.29,44.723 +499371,92.208,42.101 +499372,90.915,39.275 +499373,92.888,47.18 +499374,92.004,44.714 +499375,90.971,42.082 +499376,89.734,39.246 +499377,91.557,47.177 +499378,90.718,44.703 +499379,89.735,42.064 +499380,88.553,39.219 +499381,90.225,47.172 +499382,89.431,44.692 +499383,88.499,42.046 +499384,87.374,39.195 +499385,88.892,47.165 +499386,88.145,44.681 +499387,87.263,42.03 +499388,86.195,39.173 +499389,87.559,47.156 +499390,86.858,44.669 +499391,86.028,42.014 +499392,85.018,39.153 +499393,86.225,47.146 +499394,85.572,44.656 +499395,84.793,41.999 +499396,83.841,39.136 +499397,84.891,47.134 +499398,84.285,44.643 +499399,83.558,41.985 +499400,82.666,39.121 +499401,83.557,47.12 +499402,82.998,44.629 +499403,82.324,41.971 +499404,81.491,39.108 +499405,82.222,47.104 +499406,81.711,44.614 +499407,81.09,41.958 +499408,80.317,39.098 +499409,80.887,47.087 +499410,80.424,44.599 +499411,79.856,41.946 +499412,79.143,39.09 +499413,79.552,47.067 +499414,79.137,44.584 +499415,78.622,41.935 +499416,77.97,39.084 +499417,78.217,47.046 +499418,77.849,44.568 +499419,77.389,41.925 +499420,76.798,39.081 +499421,76.881,47.023 +499422,76.562,44.551 +499423,76.155,41.915 +499424,75.626,39.08 +499425,75.545,46.998 +499426,75.275,44.534 +499427,74.922,41.906 +499428,74.455,39.081 +499429,74.209,46.972 +499430,73.988,44.516 +499431,73.689,41.898 +499432,73.284,39.085 +499433,72.873,46.944 +499434,72.7,44.497 +499435,72.456,41.891 +499436,72.113,39.09 +499437,71.537,46.914 +499438,71.413,44.478 +499439,71.223,41.885 +499440,70.942,39.099 +499441,70.201,46.882 +499442,70.126,44.458 +499443,69.991,41.879 +499444,69.772,39.109 +499445,68.865,46.848 +499446,68.839,44.438 +499447,68.758,41.874 +499448,68.601,39.122 +499449,67.529,46.813 +499450,67.552,44.417 +499451,67.525,41.87 +499452,67.43,39.137 +499453,66.193,46.776 +499454,66.265,44.396 +499455,66.293,41.866 +499456,66.26,39.154 +499457,64.857,46.737 +499458,64.978,44.374 +499459,65.06,41.864 +499460,65.089,39.174 +499461,63.521,46.696 +499462,63.691,44.352 +499463,63.828,41.862 +499464,63.918,39.196 +499465,62.185,46.654 +499466,62.404,44.329 +499467,62.595,41.86 +499468,62.747,39.22 +499469,60.85,46.61 +499470,61.118,44.305 +499471,61.362,41.86 +499472,61.575,39.246 +499473,59.515,46.564 +499474,59.831,44.281 +499475,60.13,41.86 +499476,60.403,39.274 +499477,58.18,46.517 +499478,58.545,44.257 +499479,58.897,41.861 +499480,59.231,39.304 +499481,56.846,46.468 +499482,57.259,44.232 +499483,57.664,41.863 +499484,58.058,39.336 +499485,55.512,46.417 +499486,55.973,44.206 +499487,56.431,41.865 +499488,56.884,39.371 +499489,54.178,46.364 +499490,54.687,44.18 +499491,55.198,41.868 +499492,55.71,39.407 +499493,52.845,46.31 +499494,53.402,44.153 +499495,53.965,41.872 +499496,54.535,39.446 +499497,51.512,46.255 +499498,52.116,44.126 +499499,52.732,41.877 +499500,53.359,39.486 +499501,50.18,46.197 +499502,50.831,44.098 +499503,51.498,41.882 +499504,52.182,39.528 +499505,48.848,46.138 +499506,49.547,44.07 +499507,50.264,41.888 +499508,51.005,39.572 +499509,47.517,46.078 +499510,48.262,44.041 +499511,49.03,41.894 +499512,49.826,39.618 +499513,46.187,46.016 +499514,46.978,44.012 +499515,47.796,41.901 +499516,48.647,39.666 +499517,44.857,45.952 +499518,45.694,43.983 +499519,46.562,41.909 +499520,47.466,39.716 +499521,43.528,45.887 +499522,44.41,43.953 +499523,45.327,41.918 +499524,46.285,39.767 +499525,42.199,45.821 +499526,43.127,43.922 +499527,44.092,41.927 +499528,45.102,39.82 +499529,40.871,45.753 +499530,41.844,43.891 +499531,42.857,41.936 +499532,43.918,39.875 +499533,39.545,45.683 +499534,40.562,43.86 +499535,41.621,41.947 +499536,42.732,39.931 +499537,38.219,45.612 +499538,39.279,43.828 +499539,40.385,41.957 +499540,41.546,39.989 +499541,36.893,45.54 +499542,37.998,43.796 +499543,39.149,41.969 +499544,40.358,40.048 +499545,35.569,45.466 +499546,36.716,43.763 +499547,37.913,41.981 +499548,39.168,40.109 +499549,34.246,45.391 +499550,35.435,43.73 +499551,36.676,41.993 +499552,37.977,40.172 +499553,32.923,45.315 +499554,34.155,43.697 +499555,35.438,42.006 +499556,36.785,40.235 +499557,31.602,45.238 +499558,32.874,43.663 +499559,34.201,42.02 +499560,35.591,40.3 +499561,30.281,45.159 +499562,31.595,43.629 +499563,32.963,42.034 +499564,34.396,40.367 +499565,28.962,45.079 +499566,30.315,43.595 +499567,31.724,42.049 +499568,33.199,40.434 +499569,27.644,44.997 +499570,29.036,43.56 +499571,30.485,42.064 +499572,32,40.503 +499573,26.327,44.915 +499574,27.758,43.525 +499575,29.246,42.079 +499576,30.8,40.573 +499577,25.011,44.831 +499578,26.48,43.489 +499579,28.006,42.095 +499580,29.598,40.645 +499581,23.696,44.746 +499582,25.203,43.454 +499583,26.766,42.112 +499584,28.394,40.717 +499585,22.383,44.661 +499586,23.926,43.418 +499587,25.525,42.129 +499588,27.189,40.79 +499589,21.07,44.574 +499590,22.649,43.381 +499591,24.284,42.146 +499592,25.982,40.865 +499593,19.759,44.486 +499594,21.373,43.345 +499595,23.042,42.164 +499596,24.773,40.94 +499597,18.45,44.397 +499598,20.098,43.308 +499599,21.8,42.182 +499600,23.562,41.016 +499601,17.141,44.307 +499602,18.823,43.271 +499603,20.557,42.2 +499604,22.35,41.093 +499605,15.834,44.216 +499606,17.549,43.234 +499607,19.314,42.219 +499608,21.135,41.171 +499609,14.529,44.125 +499610,16.275,43.197 +499611,18.07,42.238 +499612,19.919,41.249 +499613,13.225,44.032 +499614,15.002,43.159 +499615,16.826,42.258 +499616,18.701,41.328 +499617,11.922,43.939 +499618,13.73,43.121 +499619,15.581,42.278 +499620,17.481,41.408 +499621,10.621,43.845 +499622,12.458,43.083 +499623,14.336,42.298 +499624,16.259,41.489 +499625,9.3213,43.75 +499626,11.186,43.045 +499627,13.09,42.318 +499628,15.035,41.57 +499629,8.0232,43.655 +499630,9.9155,43.007 +499631,11.843,42.339 +499632,13.809,41.651 +499633,6.7268,43.559 +499634,8.6454,42.968 +499635,10.596,42.36 +499636,12.582,41.733 +499637,5.4319,43.462 +499638,7.3759,42.93 +499639,9.3486,42.381 +499640,11.352,41.815 +499641,4.1387,43.365 +499642,6.107,42.891 +499643,8.1004,42.402 +499644,10.12,41.898 +499645,2.8471,43.267 +499646,4.8387,42.853 +499647,6.8515,42.424 +499648,8.8867,41.981 +499649,1.5572,43.169 +499650,3.5711,42.814 +499651,5.6021,42.446 +499652,7.6511,42.064 +499653,0.26902,43.07 +499654,2.3041,42.775 +499655,4.3521,42.468 +499656,6.4136,42.148 +499657,358.98,42.971 +499658,1.0377,42.737 +499659,3.1014,42.49 +499660,5.1742,42.231 +499661,357.7,42.872 +499662,359.77,42.698 +499663,1.8502,42.512 +499664,3.9328,42.315 +499665,356.42,42.772 +499666,358.51,42.659 +499667,0.59838,42.535 +499668,2.6894,42.399 +499669,355.13,42.672 +499670,357.24,42.62 +499671,359.35,42.557 +499672,1.4441,42.483 +499673,353.85,42.572 +499674,355.98,42.582 +499675,358.09,42.58 +499676,0.1968,42.567 +499677,352.58,42.472 +499678,354.72,42.543 +499679,356.84,42.602 +499680,358.95,42.65 +499681,351.3,42.371 +499682,353.45,42.504 +499683,355.58,42.625 +499684,357.7,42.734 +499685,350.03,42.271 +499686,352.19,42.466 +499687,354.33,42.648 +499688,356.44,42.818 +499689,348.76,42.17 +499690,350.93,42.427 +499691,353.07,42.671 +499692,355.19,42.901 +499693,347.49,42.069 +499694,349.67,42.389 +499695,351.82,42.694 +499696,353.93,42.984 +499697,346.22,41.969 +499698,348.41,42.351 +499699,350.56,42.716 +499700,352.67,43.067 +499701,344.95,41.869 +499702,347.15,42.313 +499703,349.3,42.739 +499704,351.41,43.149 +499705,343.69,41.768 +499706,345.89,42.275 +499707,348.05,42.762 +499708,350.15,43.231 +499709,342.43,41.668 +499710,344.64,42.237 +499711,346.79,42.785 +499712,348.88,43.313 +499713,341.17,41.569 +499714,343.38,42.2 +499715,345.53,42.808 +499716,347.62,43.394 +499717,339.91,41.469 +499718,342.12,42.162 +499719,344.27,42.83 +499720,346.35,43.474 +499721,338.65,41.37 +499722,340.87,42.125 +499723,343.01,42.853 +499724,345.08,43.554 +499725,337.4,41.271 +499726,339.61,42.088 +499727,341.75,42.875 +499728,343.81,43.634 +499729,336.15,41.173 +499730,338.36,42.052 +499731,340.49,42.898 +499732,342.54,43.713 +499733,334.9,41.075 +499734,337.11,42.015 +499735,339.22,42.92 +499736,341.26,43.791 +499737,333.65,40.978 +499738,335.85,41.979 +499739,337.96,42.942 +499740,339.98,43.868 +499741,332.4,40.882 +499742,334.6,41.944 +499743,336.7,42.964 +499744,338.7,43.945 +499745,331.16,40.786 +499746,333.35,41.908 +499747,335.43,42.986 +499748,337.42,44.021 +499749,329.92,40.691 +499750,332.1,41.873 +499751,334.17,43.007 +499752,336.14,44.096 +499753,328.68,40.596 +499754,330.85,41.838 +499755,332.9,43.028 +499756,334.86,44.17 +499757,327.44,40.503 +499758,329.6,41.804 +499759,331.64,43.049 +499760,333.57,44.244 +499761,326.21,40.41 +499762,328.35,41.77 +499763,330.37,43.07 +499764,332.29,44.316 +499765,324.97,40.318 +499766,327.1,41.737 +499767,329.1,43.091 +499768,331,44.388 +499769,323.74,40.227 +499770,325.86,41.703 +499771,327.84,43.111 +499772,329.71,44.458 +499773,322.51,40.137 +499774,324.61,41.671 +499775,326.57,43.132 +499776,328.41,44.527 +499777,321.29,40.049 +499778,323.36,41.638 +499779,325.3,43.151 +499780,327.12,44.596 +499781,320.06,39.961 +499782,322.12,41.607 +499783,324.03,43.171 +499784,325.83,44.663 +499785,318.84,39.874 +499786,320.87,41.575 +499787,322.76,43.19 +499788,324.53,44.729 +499789,317.62,39.789 +499790,319.63,41.544 +499791,321.49,43.209 +499792,323.23,44.794 +499793,316.4,39.705 +499794,318.39,41.514 +499795,320.22,43.228 +499796,321.93,44.858 +499797,315.18,39.622 +499798,317.14,41.484 +499799,318.95,43.246 +499800,320.63,44.92 +499801,313.97,39.541 +499802,315.9,41.455 +499803,317.68,43.264 +499804,319.33,44.982 +499805,312.75,39.461 +499806,314.66,41.426 +499807,316.41,43.281 +499808,318.03,45.042 +499809,311.54,39.383 +499810,313.42,41.398 +499811,315.14,43.298 +499812,316.72,45.1 +499813,310.33,39.306 +499814,312.18,41.37 +499815,313.86,43.315 +499816,315.42,45.158 +499817,309.13,39.23 +499818,310.94,41.343 +499819,312.59,43.332 +499820,314.11,45.214 +499821,307.92,39.156 +499822,309.7,41.317 +499823,311.32,43.347 +499824,312.8,45.268 +499825,306.72,39.084 +499826,308.46,41.291 +499827,310.04,43.363 +499828,311.49,45.321 +499829,305.52,39.014 +499830,307.22,41.265 +499831,308.77,43.378 +499832,310.18,45.373 +499833,304.32,38.945 +499834,305.98,41.241 +499835,307.49,43.393 +499836,308.87,45.424 +499837,303.12,38.878 +499838,304.75,41.217 +499839,306.22,43.407 +499840,307.56,45.472 +499841,301.92,38.813 +499842,303.51,41.193 +499843,304.94,43.421 +499844,306.25,45.52 +499845,300.73,38.749 +499846,302.27,41.171 +499847,303.66,43.434 +499848,304.93,45.565 +499849,299.53,38.688 +499850,301.04,41.149 +499851,302.39,43.447 +499852,303.62,45.61 +499853,298.34,38.628 +499854,299.8,41.127 +499855,301.11,43.459 +499856,302.3,45.652 +499857,297.15,38.57 +499858,298.57,41.107 +499859,299.83,43.471 +499860,300.98,45.693 +499861,295.96,38.515 +499862,297.33,41.087 +499863,298.56,43.482 +499864,299.66,45.733 +499865,294.78,38.461 +499866,296.1,41.068 +499867,297.28,43.493 +499868,298.34,45.77 +499869,293.59,38.41 +499870,294.87,41.049 +499871,296,43.504 +499872,297.02,45.807 +499873,292.41,38.36 +499874,293.63,41.031 +499875,294.72,43.514 +499876,295.7,45.841 +499877,291.22,38.313 +499878,292.4,41.014 +499879,293.44,43.523 +499880,294.38,45.874 +499881,290.04,38.268 +499882,291.17,40.998 +499883,292.16,43.532 +499884,293.06,45.905 +499885,288.86,38.225 +499886,289.94,40.982 +499887,290.88,43.54 +499888,291.74,45.935 +499889,287.68,38.185 +499890,288.7,40.968 +499891,289.6,43.548 +499892,290.41,45.962 +499893,286.5,38.146 +499894,287.47,40.954 +499895,288.32,43.555 +499896,289.09,45.988 +499897,285.33,38.11 +499898,286.24,40.94 +499899,287.04,43.561 +499900,287.76,46.013 +499901,284.15,38.076 +499902,285.01,40.928 +499903,285.76,43.567 +499904,286.44,46.035 +499905,282.97,38.045 +499906,283.78,40.916 +499907,284.48,43.573 +499908,285.11,46.056 +499909,281.8,38.015 +499910,282.55,40.905 +499911,283.2,43.578 +499912,283.79,46.075 +499913,280.63,37.989 +499914,281.32,40.895 +499915,281.92,43.582 +499916,282.46,46.092 +499917,279.45,37.964 +499918,280.09,40.886 +499919,280.64,43.586 +499920,281.13,46.107 +499921,278.28,37.942 +499922,278.86,40.877 +499923,279.36,43.589 +499924,279.8,46.121 +499925,277.11,37.923 +499926,277.63,40.87 +499927,278.08,43.592 +499928,278.48,46.133 +499929,275.94,37.905 +499930,276.4,40.863 +499931,276.8,43.594 +499932,277.15,46.143 +499933,274.77,37.891 +499934,275.17,40.857 +499935,275.52,43.595 +499936,275.82,46.151 +499937,273.6,37.878 +499938,273.94,40.852 +499939,274.23,43.596 +499940,274.49,46.157 +499941,272.43,37.868 +499942,272.71,40.847 +499943,272.95,43.596 +499944,273.16,46.162 +499945,271.26,37.861 +499946,271.48,40.843 +499947,271.67,43.596 +499948,271.83,46.164 +499949,270.09,37.856 +499950,270.25,40.841 +499951,270.39,43.595 +499952,270.5,46.165 +499953,268.92,37.853 +499954,269.03,40.839 +499955,269.11,43.594 +499956,269.18,46.164 +499957,267.75,37.853 +499958,267.8,40.838 +499959,267.83,43.592 +499960,267.85,46.161 +499961,266.59,37.856 +499962,266.57,40.837 +499963,266.55,43.589 +499964,266.52,46.157 +499965,265.42,37.86 +499966,265.34,40.838 +499967,265.26,43.586 +499968,265.19,46.15 +499969,264.25,37.868 +499970,264.11,40.839 +499971,263.98,43.582 +499972,263.86,46.142 +499973,263.08,37.878 +499974,262.88,40.841 +499975,262.7,43.578 +499976,262.53,46.132 +499977,261.91,37.89 +499978,261.65,40.844 +499979,261.42,43.573 +499980,261.2,46.12 +499981,260.74,37.904 +499982,260.42,40.848 +499983,260.14,43.567 +499984,259.87,46.106 +499985,259.57,37.921 +499986,259.19,40.852 +499987,258.86,43.561 +499988,258.54,46.091 +499989,258.4,37.941 +499990,257.97,40.858 +499991,257.57,43.554 +499992,257.22,46.073 +499993,257.23,37.963 +499994,256.74,40.864 +499995,256.29,43.547 +499996,255.89,46.054 +499997,256.06,37.987 +499998,255.51,40.871 +499999,255.01,43.539 +500000,254.56,46.033 +500001,254.88,38.013 +500002,254.28,40.879 +500003,253.73,43.531 +500004,253.23,46.01 +500005,253.71,38.042 +500006,253.05,40.887 +500007,252.45,43.522 +500008,251.91,45.986 +500009,252.54,38.074 +500010,251.82,40.897 +500011,251.17,43.512 +500012,250.58,45.96 +500013,251.36,38.107 +500014,250.59,40.907 +500015,249.89,43.502 +500016,249.25,45.932 +500017,250.19,38.143 +500018,249.36,40.918 +500019,248.61,43.492 +500020,247.93,45.902 +500021,249.01,38.181 +500022,248.12,40.929 +500023,247.33,43.48 +500024,246.6,45.87 +500025,247.83,38.221 +500026,246.89,40.942 +500027,246.05,43.469 +500028,245.28,45.837 +500029,246.66,38.264 +500030,245.66,40.955 +500031,244.77,43.456 +500032,243.96,45.802 +500033,245.48,38.308 +500034,244.43,40.969 +500035,243.49,43.443 +500036,242.63,45.765 +500037,244.29,38.355 +500038,243.2,40.983 +500039,242.21,43.43 +500040,241.31,45.727 +500041,243.11,38.404 +500042,241.97,40.999 +500043,240.93,43.416 +500044,239.99,45.687 +500045,241.93,38.455 +500046,240.73,41.015 +500047,239.66,43.402 +500048,238.67,45.645 +500049,240.74,38.508 +500050,239.5,41.032 +500051,238.38,43.387 +500052,237.35,45.602 +500053,239.56,38.563 +500054,238.27,41.049 +500055,237.1,43.372 +500056,236.03,45.557 +500057,238.37,38.62 +500058,237.03,41.068 +500059,235.82,43.356 +500060,234.71,45.511 +500061,237.18,38.679 +500062,235.8,41.086 +500063,234.55,43.339 +500064,233.39,45.463 +500065,235.99,38.739 +500066,234.56,41.106 +500067,233.27,43.323 +500068,232.07,45.413 +500069,234.8,38.802 +500070,233.33,41.126 +500071,231.99,43.305 +500072,230.76,45.362 +500073,233.61,38.866 +500074,232.09,41.147 +500075,230.72,43.288 +500076,229.44,45.309 +500077,232.41,38.932 +500078,230.86,41.169 +500079,229.44,43.27 +500080,228.13,45.255 +500081,231.21,39 +500082,229.62,41.191 +500083,228.17,43.251 +500084,226.82,45.2 +500085,230.02,39.07 +500086,228.38,41.214 +500087,226.89,43.232 +500088,225.5,45.143 +500089,228.82,39.141 +500090,227.15,41.237 +500091,225.62,43.212 +500092,224.19,45.084 +500093,227.61,39.214 +500094,225.91,41.261 +500095,224.34,43.193 +500096,222.88,45.024 +500097,226.41,39.288 +500098,224.67,41.286 +500099,223.07,43.172 +500100,221.58,44.963 +500101,225.2,39.364 +500102,223.43,41.311 +500103,221.8,43.152 +500104,220.27,44.9 +500105,224,39.441 +500106,222.19,41.336 +500107,220.52,43.131 +500108,218.96,44.836 +500109,222.79,39.52 +500110,220.95,41.363 +500111,219.25,43.109 +500112,217.66,44.771 +500113,221.58,39.6 +500114,219.71,41.389 +500115,217.98,43.087 +500116,216.36,44.705 +500117,220.36,39.681 +500118,218.47,41.417 +500119,216.71,43.065 +500120,215.05,44.637 +500121,219.15,39.764 +500122,217.23,41.445 +500123,215.44,43.043 +500124,213.75,44.568 +500125,217.93,39.848 +500126,215.99,41.473 +500127,214.17,43.02 +500128,212.45,44.498 +500129,216.71,39.933 +500130,214.74,41.502 +500131,212.9,42.997 +500132,211.16,44.427 +500133,215.49,40.019 +500134,213.5,41.531 +500135,211.63,42.974 +500136,209.86,44.355 +500137,214.27,40.106 +500138,212.25,41.56 +500139,210.36,42.95 +500140,208.56,44.281 +500141,213.04,40.194 +500142,211.01,41.591 +500143,209.09,42.926 +500144,207.27,44.207 +500145,211.81,40.283 +500146,209.76,41.621 +500147,207.82,42.902 +500148,205.98,44.131 +500149,210.59,40.373 +500150,208.52,41.652 +500151,206.56,42.878 +500152,204.69,44.055 +500153,209.35,40.464 +500154,207.27,41.683 +500155,205.29,42.853 +500156,203.4,43.978 +500157,208.12,40.556 +500158,206.02,41.715 +500159,204.02,42.828 +500160,202.11,43.899 +500161,206.89,40.648 +500162,204.78,41.747 +500163,202.76,42.803 +500164,200.83,43.82 +500165,205.65,40.741 +500166,203.53,41.779 +500167,201.49,42.778 +500168,199.54,43.74 +500169,204.41,40.835 +500170,202.28,41.812 +500171,200.23,42.753 +500172,198.26,43.659 +500173,203.17,40.93 +500174,201.03,41.845 +500175,198.97,42.727 +500176,196.98,43.578 +500177,201.92,41.025 +500178,199.78,41.878 +500179,197.7,42.701 +500180,195.7,43.496 +500181,200.68,41.12 +500182,198.53,41.912 +500183,196.44,42.675 +500184,194.42,43.413 +500185,199.43,41.216 +500186,197.27,41.945 +500187,195.18,42.65 +500188,193.15,43.329 +500189,198.18,41.312 +500190,196.02,41.979 +500191,193.92,42.623 +500192,191.87,43.245 +500193,196.93,41.409 +500194,194.77,42.014 +500195,192.66,42.597 +500196,190.6,43.161 +500197,195.68,41.506 +500198,193.51,42.048 +500199,191.4,42.571 +500200,189.33,43.075 +500201,194.42,41.603 +500202,192.26,42.083 +500203,190.14,42.545 +500204,188.06,42.99 +500205,193.16,41.701 +500206,191,42.118 +500207,188.88,42.519 +500208,186.8,42.904 +500209,191.9,41.799 +500210,189.75,42.153 +500211,187.62,42.492 +500212,185.53,42.817 +500213,190.64,41.896 +500214,188.49,42.188 +500215,186.37,42.466 +500216,184.27,42.73 +500217,189.38,41.994 +500218,187.23,42.223 +500219,185.11,42.44 +500220,183.01,42.643 +500221,188.11,42.092 +500222,185.97,42.259 +500223,183.85,42.413 +500224,181.75,42.556 +500225,186.85,42.19 +500226,184.72,42.294 +500227,182.6,42.387 +500228,180.49,42.468 +500229,185.58,42.287 +500230,183.46,42.33 +500231,181.34,42.361 +500232,179.24,42.381 +500233,184.31,42.385 +500234,182.2,42.365 +500235,180.09,42.335 +500236,177.98,42.293 +500237,183.03,42.482 +500238,180.93,42.401 +500239,178.83,42.308 +500240,176.73,42.205 +500241,181.76,42.58 +500242,179.67,42.437 +500243,177.58,42.282 +500244,175.48,42.117 +500245,180.48,42.676 +500246,178.41,42.472 +500247,176.33,42.257 +500248,174.23,42.029 +500249,179.2,42.773 +500250,177.15,42.508 +500251,175.08,42.231 +500252,172.99,41.941 +500253,177.92,42.869 +500254,175.88,42.544 +500255,173.83,42.205 +500256,171.75,41.854 +500257,176.64,42.965 +500258,174.62,42.58 +500259,172.57,42.18 +500260,170.5,41.766 +500261,175.36,43.061 +500262,173.36,42.615 +500263,171.33,42.155 +500264,169.26,41.679 +500265,174.07,43.156 +500266,172.09,42.651 +500267,170.08,42.13 +500268,168.03,41.592 +500269,172.79,43.25 +500270,170.82,42.686 +500271,168.83,42.105 +500272,166.79,41.505 +500273,171.5,43.344 +500274,169.56,42.722 +500275,167.58,42.08 +500276,165.56,41.418 +500277,170.21,43.437 +500278,168.29,42.757 +500279,166.33,42.056 +500280,164.33,41.333 +500281,168.91,43.53 +500282,167.02,42.792 +500283,165.08,42.032 +500284,163.1,41.247 +500285,167.62,43.622 +500286,165.75,42.828 +500287,163.84,42.008 +500288,161.87,41.162 +500289,166.33,43.713 +500290,164.48,42.862 +500291,162.59,41.984 +500292,160.64,41.077 +500293,165.03,43.803 +500294,163.22,42.897 +500295,161.35,41.961 +500296,159.42,40.994 +500297,163.73,43.893 +500298,161.94,42.932 +500299,160.1,41.938 +500300,158.2,40.91 +500301,162.43,43.981 +500302,160.67,42.966 +500303,158.86,41.916 +500304,156.98,40.828 +500305,161.13,44.069 +500306,159.4,43 +500307,157.62,41.893 +500308,155.76,40.746 +500309,159.83,44.156 +500310,158.13,43.034 +500311,156.37,41.872 +500312,154.54,40.665 +500313,158.52,44.242 +500314,156.86,43.068 +500315,155.13,41.85 +500316,153.33,40.585 +500317,157.22,44.327 +500318,155.59,43.102 +500319,153.89,41.829 +500320,152.12,40.506 +500321,155.91,44.411 +500322,154.31,43.135 +500323,152.65,41.808 +500324,150.91,40.428 +500325,154.6,44.494 +500326,153.04,43.168 +500327,151.41,41.788 +500328,149.7,40.351 +500329,153.29,44.576 +500330,151.76,43.2 +500331,150.17,41.768 +500332,148.49,40.274 +500333,151.98,44.657 +500334,150.49,43.233 +500335,148.93,41.749 +500336,147.29,40.199 +500337,150.67,44.736 +500338,149.21,43.265 +500339,147.69,41.73 +500340,146.08,40.125 +500341,149.36,44.815 +500342,147.94,43.297 +500343,146.45,41.712 +500344,144.88,40.053 +500345,148.04,44.892 +500346,146.66,43.328 +500347,145.21,41.694 +500348,143.68,39.981 +500349,146.73,44.968 +500350,145.38,43.359 +500351,143.97,41.676 +500352,142.48,39.911 +500353,145.41,45.042 +500354,144.11,43.39 +500355,142.73,41.66 +500356,141.29,39.842 +500357,144.09,45.116 +500358,142.83,43.42 +500359,141.5,41.643 +500360,140.09,39.775 +500361,142.77,45.188 +500362,141.55,43.45 +500363,140.26,41.627 +500364,138.9,39.708 +500365,141.45,45.258 +500366,140.27,43.48 +500367,139.03,41.612 +500368,137.71,39.644 +500369,140.13,45.328 +500370,138.99,43.509 +500371,137.79,41.598 +500372,136.51,39.581 +500373,138.81,45.396 +500374,137.71,43.537 +500375,136.55,41.583 +500376,135.33,39.519 +500377,137.49,45.462 +500378,136.43,43.566 +500379,135.32,41.57 +500380,134.14,39.459 +500381,136.17,45.527 +500382,135.15,43.594 +500383,134.08,41.557 +500384,132.95,39.401 +500385,134.84,45.591 +500386,133.87,43.621 +500387,132.85,41.545 +500388,131.77,39.345 +500389,133.52,45.653 +500390,132.59,43.648 +500391,131.62,41.533 +500392,130.58,39.29 +500393,132.19,45.713 +500394,131.31,43.675 +500395,130.38,41.522 +500396,129.4,39.237 +500397,130.86,45.772 +500398,130.03,43.701 +500399,129.15,41.512 +500400,128.22,39.185 +500401,129.54,45.83 +500402,128.74,43.726 +500403,127.92,41.502 +500404,127.04,39.136 +500405,128.21,45.886 +500406,127.46,43.751 +500407,126.68,41.493 +500408,125.86,39.088 +500409,126.88,45.94 +500410,126.18,43.776 +500411,125.45,41.485 +500412,124.68,39.043 +500413,125.55,45.992 +500414,124.9,43.8 +500415,124.22,41.477 +500416,123.51,38.999 +500417,124.22,46.043 +500418,123.61,43.824 +500419,122.98,41.47 +500420,122.33,38.957 +500421,122.89,46.093 +500422,122.33,43.847 +500423,121.75,41.464 +500424,121.15,38.918 +500425,121.56,46.14 +500426,121.05,43.87 +500427,120.52,41.459 +500428,119.98,38.88 +500429,120.23,46.186 +500430,119.76,43.892 +500431,119.29,41.454 +500432,118.81,38.845 +500433,118.9,46.231 +500434,118.48,43.913 +500435,118.06,41.45 +500436,117.63,38.811 +500437,117.57,46.273 +500438,117.2,43.934 +500439,116.83,41.447 +500440,116.46,38.78 +500441,116.24,46.314 +500442,115.91,43.955 +500443,115.59,41.444 +500444,115.29,38.751 +500445,114.9,46.354 +500446,114.63,43.975 +500447,114.36,41.442 +500448,114.12,38.724 +500449,113.57,46.391 +500450,113.34,43.994 +500451,113.13,41.441 +500452,112.95,38.699 +500453,112.24,46.427 +500454,112.06,44.013 +500455,111.9,41.441 +500456,111.78,38.677 +500457,110.91,46.461 +500458,110.77,44.031 +500459,110.67,41.441 +500460,110.61,38.656 +500461,109.57,46.493 +500462,109.49,44.049 +500463,109.44,41.443 +500464,109.44,38.638 +500465,108.24,46.523 +500466,108.2,44.066 +500467,108.21,41.445 +500468,108.27,38.623 +500469,106.91,46.552 +500470,106.92,44.082 +500471,106.98,41.447 +500472,107.1,38.61 +500473,105.57,46.579 +500474,105.63,44.098 +500475,105.74,41.451 +500476,105.93,38.599 +500477,104.24,46.604 +500478,104.35,44.114 +500479,104.51,41.455 +500480,104.76,38.59 +500481,102.91,46.627 +500482,103.06,44.129 +500483,103.28,41.461 +500484,103.59,38.584 +500485,101.57,46.648 +500486,101.78,44.143 +500487,102.05,41.466 +500488,102.42,38.58 +500489,100.24,46.668 +500490,100.49,44.156 +500491,100.82,41.473 +500492,101.25,38.578 +500493,98.906,46.686 +500494,99.208,44.17 +500495,99.588,41.481 +500496,100.08,38.579 +500497,97.573,46.702 +500498,97.923,44.182 +500499,98.356,41.489 +500500,98.904,38.582 +500501,96.24,46.716 +500502,96.638,44.194 +500503,97.124,41.498 +500504,97.733,38.588 +500505,94.907,46.728 +500506,95.353,44.205 +500507,95.892,41.508 +500508,96.56,38.596 +500509,93.575,46.739 +500510,94.068,44.216 +500511,94.659,41.519 +500512,95.388,38.606 +500513,92.243,46.748 +500514,92.783,44.226 +500515,93.427,41.53 +500516,94.214,38.619 +500517,90.912,46.755 +500518,91.499,44.236 +500519,92.194,41.543 +500520,93.04,38.634 +500521,89.58,46.76 +500522,90.214,44.245 +500523,90.961,41.556 +500524,91.866,38.652 +500525,88.249,46.763 +500526,88.93,44.253 +500527,89.728,41.57 +500528,90.69,38.672 +500529,86.919,46.765 +500530,87.645,44.261 +500531,88.494,41.584 +500532,89.513,38.694 +500533,85.589,46.764 +500534,86.361,44.268 +500535,87.26,41.6 +500536,88.336,38.719 +500537,84.26,46.762 +500538,85.077,44.275 +500539,86.026,41.616 +500540,87.157,38.746 +500541,82.931,46.759 +500542,83.793,44.281 +500543,84.791,41.633 +500544,85.977,38.775 +500545,81.602,46.753 +500546,82.509,44.286 +500547,83.556,41.651 +500548,84.796,38.807 +500549,80.275,46.746 +500550,81.226,44.291 +500551,82.321,41.669 +500552,83.614,38.841 +500553,78.948,46.737 +500554,79.943,44.296 +500555,81.085,41.689 +500556,82.431,38.877 +500557,77.621,46.726 +500558,78.66,44.3 +500559,79.849,41.709 +500560,81.246,38.916 +500561,76.296,46.713 +500562,77.377,44.303 +500563,78.613,41.73 +500564,80.06,38.956 +500565,74.971,46.699 +500566,76.095,44.306 +500567,77.376,41.751 +500568,78.872,39 +500569,73.647,46.683 +500570,74.812,44.308 +500571,76.138,41.774 +500572,77.683,39.045 +500573,72.324,46.665 +500574,73.53,44.31 +500575,74.9,41.797 +500576,76.493,39.092 +500577,71.001,46.646 +500578,72.249,44.311 +500579,73.662,41.821 +500580,75.301,39.142 +500581,69.68,46.625 +500582,70.967,44.311 +500583,72.423,41.845 +500584,74.107,39.194 +500585,68.359,46.602 +500586,69.686,44.311 +500587,71.184,41.871 +500588,72.911,39.248 +500589,67.04,46.578 +500590,68.406,44.311 +500591,69.944,41.897 +500592,71.714,39.303 +500593,65.721,46.552 +500594,67.125,44.31 +500595,68.703,41.923 +500596,70.515,39.361 +500597,64.403,46.524 +500598,65.845,44.308 +500599,67.462,41.951 +500600,69.315,39.421 +500601,63.087,46.495 +500602,64.566,44.306 +500603,66.221,41.979 +500604,68.112,39.483 +500605,61.771,46.464 +500606,63.286,44.304 +500607,64.979,42.007 +500608,66.908,39.547 +500609,60.457,46.432 +500610,62.007,44.301 +500611,63.736,42.037 +500612,65.702,39.613 +500613,59.144,46.398 +500614,60.729,44.297 +500615,62.493,42.067 +500616,64.493,39.681 +500617,57.832,46.363 +500618,59.451,44.294 +500619,61.249,42.098 +500620,63.283,39.751 +500621,56.521,46.326 +500622,58.173,44.289 +500623,60.005,42.129 +500624,62.071,39.822 +500625,55.211,46.288 +500626,56.896,44.284 +500627,58.76,42.161 +500628,60.857,39.895 +500629,53.903,46.248 +500630,55.619,44.279 +500631,57.514,42.194 +500632,59.641,39.97 +500633,52.596,46.207 +500634,54.343,44.273 +500635,56.267,42.227 +500636,58.423,40.046 +500637,51.29,46.164 +500638,53.067,44.267 +500639,55.02,42.261 +500640,57.202,40.124 +500641,49.985,46.12 +500642,51.791,44.261 +500643,53.773,42.295 +500644,55.98,40.204 +500645,48.682,46.075 +500646,50.516,44.254 +500647,52.524,42.33 +500648,54.755,40.286 +500649,47.381,46.029 +500650,49.242,44.247 +500651,51.275,42.365 +500652,53.529,40.368 +500653,46.08,45.981 +500654,47.968,44.239 +500655,50.026,42.401 +500656,52.3,40.453 +500657,44.782,45.932 +500658,46.694,44.231 +500659,48.775,42.438 +500660,51.069,40.538 +500661,43.484,45.881 +500662,45.421,44.222 +500663,47.524,42.475 +500664,49.836,40.625 +500665,42.189,45.83 +500666,44.149,44.214 +500667,46.272,42.513 +500668,48.601,40.714 +500669,40.894,45.777 +500670,42.877,44.204 +500671,45.02,42.551 +500672,47.363,40.803 +500673,39.601,45.723 +500674,41.605,44.195 +500675,43.767,42.589 +500676,46.123,40.894 +500677,38.31,45.668 +500678,40.334,44.185 +500679,42.513,42.628 +500680,44.882,40.986 +500681,37.021,45.612 +500682,39.064,44.175 +500683,41.258,42.668 +500684,43.638,41.079 +500685,35.733,45.554 +500686,37.794,44.165 +500687,40.003,42.707 +500688,42.391,41.174 +500689,34.447,45.496 +500690,36.524,44.154 +500691,38.747,42.748 +500692,41.143,41.269 +500693,33.162,45.437 +500694,35.256,44.143 +500695,37.49,42.788 +500696,39.893,41.365 +500697,31.879,45.377 +500698,33.987,44.132 +500699,36.232,42.829 +500700,38.64,41.463 +500701,30.598,45.316 +500702,32.72,44.12 +500703,34.974,42.871 +500704,37.385,41.561 +500705,29.318,45.254 +500706,31.453,44.109 +500707,33.715,42.913 +500708,36.128,41.66 +500709,28.04,45.191 +500710,30.186,44.097 +500711,32.455,42.955 +500712,34.869,41.759 +500713,26.764,45.127 +500714,28.92,44.085 +500715,31.195,42.997 +500716,33.607,41.86 +500717,25.49,45.062 +500718,27.655,44.073 +500719,29.933,43.04 +500720,32.344,41.961 +500721,24.218,44.997 +500722,26.39,44.06 +500723,28.671,43.083 +500724,31.078,42.063 +500725,22.947,44.931 +500726,25.126,44.047 +500727,27.409,43.127 +500728,29.811,42.165 +500729,21.678,44.865 +500730,23.862,44.035 +500731,26.145,43.17 +500732,28.541,42.268 +500733,20.411,44.797 +500734,22.599,44.022 +500735,24.881,43.214 +500736,27.269,42.372 +500737,19.146,44.73 +500738,21.336,44.009 +500739,23.616,43.258 +500740,25.995,42.476 +500741,17.883,44.661 +500742,20.075,43.996 +500743,22.35,43.303 +500744,24.719,42.58 +500745,16.621,44.592 +500746,18.813,43.982 +500747,21.084,43.347 +500748,23.441,42.685 +500749,15.362,44.523 +500750,17.553,43.969 +500751,19.816,43.392 +500752,22.161,42.79 +500753,14.104,44.453 +500754,16.292,43.956 +500755,18.549,43.437 +500756,20.879,42.895 +500757,12.848,44.383 +500758,15.033,43.942 +500759,17.28,43.482 +500760,19.595,43 +500761,11.594,44.312 +500762,13.774,43.929 +500763,16.011,43.527 +500764,18.309,43.106 +500765,10.342,44.241 +500766,12.516,43.915 +500767,14.74,43.573 +500768,17.022,43.212 +500769,9.0922,44.17 +500770,11.258,43.902 +500771,13.47,43.618 +500772,15.732,43.317 +500773,7.8441,44.099 +500774,10,43.888 +500775,12.198,43.664 +500776,14.44,43.423 +500777,6.5979,44.027 +500778,8.7439,43.875 +500779,10.926,43.709 +500780,13.147,43.529 +500781,5.3536,43.955 +500782,7.4878,43.862 +500783,9.6531,43.755 +500784,11.851,43.635 +500785,4.1112,43.884 +500786,6.2323,43.848 +500787,8.3795,43.801 +500788,10.554,43.74 +500789,2.8708,43.812 +500790,4.9774,43.835 +500791,7.1052,43.847 +500792,9.2556,43.845 +500793,1.6323,43.74 +500794,3.723,43.822 +500795,5.8302,43.892 +500796,7.955,43.951 +500797,0.39567,43.668 +500798,2.4692,43.809 +500799,4.5546,43.938 +500800,6.6527,44.055 +500801,359.16,43.596 +500802,1.216,43.796 +500803,3.2783,43.984 +500804,5.3487,44.16 +500805,357.93,43.525 +500806,359.96,43.783 +500807,2.0013,44.03 +500808,4.043,44.264 +500809,356.7,43.453 +500810,358.71,43.77 +500811,0.72371,44.075 +500812,2.7357,44.368 +500813,355.47,43.382 +500814,357.46,43.758 +500815,359.45,44.121 +500816,1.4268,44.472 +500817,354.24,43.311 +500818,356.21,43.745 +500819,358.17,44.167 +500820,0.11634,44.575 +500821,353.02,43.24 +500822,354.96,43.733 +500823,356.89,44.212 +500824,358.8,44.677 +500825,351.79,43.17 +500826,353.71,43.721 +500827,355.61,44.258 +500828,357.49,44.779 +500829,350.57,43.1 +500830,352.46,43.709 +500831,354.33,44.303 +500832,356.18,44.88 +500833,349.35,43.03 +500834,351.21,43.698 +500835,353.04,44.348 +500836,354.86,44.981 +500837,348.13,42.961 +500838,349.96,43.686 +500839,351.76,44.393 +500840,353.54,45.081 +500841,346.92,42.893 +500842,348.71,43.675 +500843,350.48,44.438 +500844,352.22,45.18 +500845,345.7,42.825 +500846,347.47,43.665 +500847,349.2,44.483 +500848,350.9,45.279 +500849,344.49,42.758 +500850,346.22,43.654 +500851,347.91,44.527 +500852,349.58,45.376 +500853,343.28,42.691 +500854,344.97,43.644 +500855,346.63,44.571 +500856,348.26,45.473 +500857,342.07,42.625 +500858,343.73,43.634 +500859,345.34,44.616 +500860,346.93,45.569 +500861,340.86,42.56 +500862,342.48,43.625 +500863,344.06,44.659 +500864,345.61,45.664 +500865,339.66,42.496 +500866,341.23,43.616 +500867,342.77,44.703 +500868,344.28,45.759 +500869,338.45,42.432 +500870,339.99,43.607 +500871,341.49,44.746 +500872,342.95,45.852 +500873,337.25,42.369 +500874,338.75,43.598 +500875,340.2,44.789 +500876,341.62,45.944 +500877,336.05,42.308 +500878,337.5,43.59 +500879,338.91,44.832 +500880,340.29,46.035 +500881,334.85,42.247 +500882,336.26,43.583 +500883,337.63,44.875 +500884,338.96,46.126 +500885,333.65,42.188 +500886,335.01,43.576 +500887,336.34,44.917 +500888,337.63,46.215 +500889,332.46,42.129 +500890,333.77,43.569 +500891,335.05,44.959 +500892,336.29,46.303 +500893,331.26,42.072 +500894,332.53,43.562 +500895,333.76,45.001 +500896,334.96,46.389 +500897,330.07,42.015 +500898,331.29,43.556 +500899,332.47,45.042 +500900,333.63,46.475 +500901,328.88,41.96 +500902,330.04,43.551 +500903,331.18,45.083 +500904,332.29,46.559 +500905,327.69,41.906 +500906,328.8,43.546 +500907,329.89,45.123 +500908,330.95,46.643 +500909,326.5,41.854 +500910,327.56,43.542 +500911,328.6,45.163 +500912,329.61,46.725 +500913,325.31,41.803 +500914,326.32,43.538 +500915,327.31,45.203 +500916,328.28,46.805 +500917,324.12,41.753 +500918,325.08,43.534 +500919,326.02,45.243 +500920,326.94,46.884 +500921,322.94,41.704 +500922,323.84,43.531 +500923,324.73,45.282 +500924,325.6,46.962 +500925,321.75,41.657 +500926,322.6,43.529 +500927,323.43,45.32 +500928,324.26,47.039 +500929,320.57,41.612 +500930,321.36,43.527 +500931,322.14,45.358 +500932,322.92,47.114 +500933,319.38,41.568 +500934,320.12,43.526 +500935,320.85,45.396 +500936,321.57,47.188 +500937,318.2,41.525 +500938,318.88,43.525 +500939,319.55,45.433 +500940,320.23,47.26 +500941,317.02,41.484 +500942,317.64,43.525 +500943,318.26,45.47 +500944,318.89,47.331 +500945,315.84,41.445 +500946,316.4,43.525 +500947,316.97,45.507 +500948,317.54,47.401 +500949,314.66,41.408 +500950,315.16,43.526 +500951,315.67,45.543 +500952,316.2,47.469 +500953,313.48,41.372 +500954,313.92,43.528 +500955,314.38,45.578 +500956,314.86,47.535 +500957,312.3,41.338 +500958,312.68,43.53 +500959,313.09,45.613 +500960,313.51,47.6 +500961,311.13,41.305 +500962,311.44,43.533 +500963,311.79,45.648 +500964,312.17,47.663 +500965,309.95,41.275 +500966,310.2,43.537 +500967,310.5,45.682 +500968,310.82,47.725 +500969,308.77,41.246 +500970,308.96,43.541 +500971,309.2,45.715 +500972,309.48,47.785 +500973,307.6,41.219 +500974,307.73,43.546 +500975,307.91,45.748 +500976,308.13,47.844 +500977,306.42,41.194 +500978,306.49,43.551 +500979,306.61,45.781 +500980,306.78,47.901 +500981,305.25,41.171 +500982,305.25,43.557 +500983,305.32,45.813 +500984,305.44,47.956 +500985,304.07,41.15 +500986,304.01,43.564 +500987,304.02,45.844 +500988,304.09,48.01 +500989,302.9,41.131 +500990,302.77,43.571 +500991,302.73,45.875 +500992,302.74,48.062 +500993,301.72,41.114 +500994,301.53,43.579 +500995,301.43,45.905 +500996,301.4,48.112 +500997,300.55,41.099 +500998,300.29,43.588 +500999,300.13,45.935 +501000,300.05,48.161 +501001,299.37,41.086 +501002,299.05,43.598 +501003,298.84,45.965 +501004,298.7,48.208 +501005,298.2,41.075 +501006,297.81,43.608 +501007,297.54,45.993 +501008,297.36,48.253 +501009,297.02,41.065 +501010,296.57,43.619 +501011,296.25,46.021 +501012,296.01,48.297 +501013,295.84,41.059 +501014,295.33,43.63 +501015,294.95,46.049 +501016,294.67,48.339 +501017,294.67,41.054 +501018,294.09,43.643 +501019,293.66,46.076 +501020,293.32,48.379 +501021,293.49,41.051 +501022,292.85,43.656 +501023,292.36,46.103 +501024,291.97,48.418 +501025,292.32,41.05 +501026,291.61,43.669 +501027,291.06,46.129 +501028,290.63,48.454 +501029,291.14,41.052 +501030,290.37,43.684 +501031,289.77,46.154 +501032,289.28,48.489 +501033,289.96,41.056 +501034,289.13,43.699 +501035,288.47,46.179 +501036,287.94,48.523 +501037,288.78,41.062 +501038,287.89,43.715 +501039,287.18,46.203 +501040,286.59,48.554 +501041,287.6,41.07 +501042,286.65,43.731 +501043,285.88,46.227 +501044,285.25,48.584 +501045,286.42,41.08 +501046,285.41,43.749 +501047,284.59,46.25 +501048,283.9,48.612 +501049,285.24,41.092 +501050,284.17,43.767 +501051,283.29,46.273 +501052,282.56,48.638 +501053,284.06,41.107 +501054,282.93,43.785 +501055,282,46.295 +501056,281.22,48.663 +501057,282.88,41.123 +501058,281.68,43.805 +501059,280.7,46.316 +501060,279.87,48.686 +501061,281.7,41.142 +501062,280.44,43.825 +501063,279.41,46.337 +501064,278.53,48.707 +501065,280.51,41.163 +501066,279.2,43.846 +501067,278.11,46.357 +501068,277.19,48.726 +501069,279.32,41.187 +501070,277.95,43.868 +501071,276.82,46.377 +501072,275.85,48.744 +501073,278.14,41.212 +501074,276.71,43.89 +501075,275.52,46.396 +501076,274.51,48.76 +501077,276.95,41.24 +501078,275.47,43.913 +501079,274.23,46.415 +501080,273.17,48.774 +501081,275.76,41.27 +501082,274.22,43.937 +501083,272.93,46.433 +501084,271.83,48.786 +501085,274.57,41.302 +501086,272.98,43.961 +501087,271.64,46.45 +501088,270.49,48.797 +501089,273.38,41.336 +501090,271.73,43.987 +501091,270.35,46.467 +501092,269.15,48.806 +501093,272.18,41.372 +501094,270.49,44.013 +501095,269.05,46.483 +501096,267.81,48.813 +501097,270.99,41.41 +501098,269.24,44.039 +501099,267.76,46.499 +501100,266.48,48.819 +501101,269.79,41.451 +501102,267.99,44.067 +501103,266.47,46.514 +501104,265.14,48.823 +501105,268.59,41.493 +501106,266.74,44.095 +501107,265.17,46.529 +501108,263.81,48.825 +501109,267.39,41.538 +501110,265.5,44.123 +501111,263.88,46.543 +501112,262.47,48.825 +501113,266.19,41.585 +501114,264.25,44.153 +501115,262.59,46.557 +501116,261.14,48.824 +501117,264.98,41.634 +501118,263,44.183 +501119,261.3,46.57 +501120,259.81,48.821 +501121,263.78,41.684 +501122,261.75,44.213 +501123,260.01,46.582 +501124,258.48,48.817 +501125,262.57,41.737 +501126,260.5,44.245 +501127,258.72,46.594 +501128,257.15,48.811 +501129,261.36,41.792 +501130,259.25,44.277 +501131,257.42,46.605 +501132,255.82,48.803 +501133,260.15,41.849 +501134,257.99,44.31 +501135,256.13,46.616 +501136,254.5,48.794 +501137,258.94,41.907 +501138,256.74,44.343 +501139,254.84,46.627 +501140,253.17,48.784 +501141,257.72,41.968 +501142,255.49,44.377 +501143,253.56,46.637 +501144,251.84,48.771 +501145,256.5,42.03 +501146,254.24,44.412 +501147,252.27,46.646 +501148,250.52,48.757 +501149,255.28,42.095 +501150,252.98,44.447 +501151,250.98,46.655 +501152,249.2,48.742 +501153,254.06,42.161 +501154,251.73,44.483 +501155,249.69,46.663 +501156,247.88,48.725 +501157,252.84,42.229 +501158,250.47,44.519 +501159,248.4,46.671 +501160,246.56,48.707 +501161,251.61,42.298 +501162,249.22,44.556 +501163,247.11,46.679 +501164,245.24,48.687 +501165,250.38,42.37 +501166,247.96,44.594 +501167,245.83,46.686 +501168,243.92,48.665 +501169,249.15,42.443 +501170,246.7,44.632 +501171,244.54,46.692 +501172,242.6,48.643 +501173,247.92,42.518 +501174,245.44,44.671 +501175,243.25,46.698 +501176,241.29,48.618 +501177,246.69,42.594 +501178,244.18,44.711 +501179,241.97,46.704 +501180,239.98,48.593 +501181,245.45,42.672 +501182,242.92,44.751 +501183,240.68,46.709 +501184,238.66,48.566 +501185,244.21,42.751 +501186,241.66,44.791 +501187,239.4,46.714 +501188,237.35,48.538 +501189,242.97,42.832 +501190,240.4,44.832 +501191,238.11,46.718 +501192,236.04,48.508 +501193,241.72,42.915 +501194,239.14,44.874 +501195,236.83,46.722 +501196,234.74,48.477 +501197,240.48,42.999 +501198,237.88,44.916 +501199,235.55,46.726 +501200,233.43,48.445 +501201,239.23,43.084 +501202,236.61,44.958 +501203,234.27,46.729 +501204,232.13,48.412 +501205,237.98,43.171 +501206,235.35,45.001 +501207,232.98,46.732 +501208,230.82,48.377 +501209,236.72,43.259 +501210,234.08,45.045 +501211,231.7,46.734 +501212,229.52,48.341 +501213,235.47,43.348 +501214,232.82,45.088 +501215,230.42,46.736 +501216,228.22,48.304 +501217,234.21,43.438 +501218,231.55,45.133 +501219,229.14,46.738 +501220,226.93,48.266 +501221,232.95,43.53 +501222,230.28,45.178 +501223,227.86,46.74 +501224,225.63,48.227 +501225,231.69,43.623 +501226,229.02,45.223 +501227,226.58,46.741 +501228,224.33,48.187 +501229,230.42,43.717 +501230,227.75,45.268 +501231,225.3,46.741 +501232,223.04,48.146 +501233,229.16,43.812 +501234,226.48,45.314 +501235,224.02,46.742 +501236,221.75,48.103 +501237,227.89,43.908 +501238,225.21,45.361 +501239,222.75,46.742 +501240,220.46,48.06 +501241,226.62,44.005 +501242,223.94,45.408 +501243,221.47,46.742 +501244,219.17,48.016 +501245,225.34,44.103 +501246,222.66,45.455 +501247,220.19,46.741 +501248,217.89,47.97 +501249,224.07,44.201 +501250,221.39,45.502 +501251,218.92,46.741 +501252,216.6,47.924 +501253,222.79,44.301 +501254,220.12,45.55 +501255,217.64,46.74 +501256,215.32,47.877 +501257,221.51,44.401 +501258,218.84,45.598 +501259,216.36,46.739 +501260,214.04,47.83 +501261,220.23,44.502 +501262,217.57,45.646 +501263,215.09,46.737 +501264,212.76,47.781 +501265,218.94,44.604 +501266,216.29,45.695 +501267,213.82,46.736 +501268,211.48,47.732 +501269,217.65,44.707 +501270,215.02,45.744 +501271,212.54,46.734 +501272,210.21,47.682 +501273,216.37,44.81 +501274,213.74,45.793 +501275,211.27,46.732 +501276,208.93,47.631 +501277,215.07,44.913 +501278,212.46,45.843 +501279,210,46.73 +501280,207.66,47.58 +501281,213.78,45.018 +501282,211.18,45.892 +501283,208.73,46.728 +501284,206.39,47.528 +501285,212.48,45.122 +501286,209.9,45.942 +501287,207.46,46.725 +501288,205.13,47.475 +501289,211.19,45.227 +501290,208.62,45.992 +501291,206.19,46.723 +501292,203.86,47.422 +501293,209.89,45.333 +501294,207.34,46.043 +501295,204.92,46.72 +501296,202.6,47.368 +501297,208.59,45.438 +501298,206.06,46.093 +501299,203.65,46.717 +501300,201.33,47.314 +501301,207.28,45.544 +501302,204.78,46.144 +501303,202.38,46.715 +501304,200.07,47.26 +501305,205.98,45.651 +501306,203.49,46.195 +501307,201.11,46.712 +501308,198.81,47.205 +501309,204.67,45.757 +501310,202.21,46.245 +501311,199.84,46.709 +501312,197.56,47.15 +501313,203.36,45.864 +501314,200.92,46.296 +501315,198.57,46.706 +501316,196.3,47.094 +501317,202.05,45.971 +501318,199.64,46.347 +501319,197.31,46.703 +501320,195.05,47.038 +501321,200.74,46.077 +501322,198.35,46.399 +501323,196.04,46.699 +501324,193.8,46.982 +501325,199.42,46.184 +501326,197.06,46.45 +501327,194.78,46.696 +501328,192.55,46.926 +501329,198.1,46.291 +501330,195.78,46.501 +501331,193.51,46.693 +501332,191.3,46.869 +501333,196.79,46.398 +501334,194.49,46.552 +501335,192.25,46.69 +501336,190.06,46.813 +501337,195.47,46.504 +501338,193.2,46.604 +501339,190.98,46.687 +501340,188.82,46.756 +501341,194.14,46.611 +501342,191.91,46.655 +501343,189.72,46.684 +501344,187.57,46.699 +501345,192.82,46.717 +501346,190.62,46.706 +501347,188.46,46.681 +501348,186.33,46.643 +501349,191.49,46.823 +501350,189.33,46.758 +501351,187.2,46.678 +501352,185.1,46.586 +501353,190.17,46.929 +501354,188.04,46.809 +501355,185.94,46.675 +501356,183.86,46.53 +501357,188.84,47.034 +501358,186.74,46.86 +501359,184.67,46.673 +501360,182.63,46.473 +501361,187.51,47.14 +501362,185.45,46.911 +501363,183.41,46.67 +501364,181.4,46.417 +501365,186.18,47.244 +501366,184.16,46.963 +501367,182.15,46.668 +501368,180.16,46.361 +501369,184.85,47.348 +501370,182.86,47.014 +501371,180.89,46.665 +501372,178.94,46.305 +501373,183.51,47.452 +501374,181.57,47.064 +501375,179.63,46.663 +501376,177.71,46.25 +501377,182.18,47.556 +501378,180.27,47.115 +501379,178.38,46.661 +501380,176.48,46.194 +501381,180.84,47.658 +501382,178.98,47.166 +501383,177.12,46.659 +501384,175.26,46.14 +501385,179.5,47.76 +501386,177.68,47.216 +501387,175.86,46.658 +501388,174.04,46.085 +501389,178.16,47.862 +501390,176.38,47.267 +501391,174.6,46.656 +501392,172.82,46.031 +501393,176.82,47.963 +501394,175.09,47.317 +501395,173.35,46.655 +501396,171.6,45.978 +501397,175.48,48.063 +501398,173.79,47.367 +501399,172.09,46.654 +501400,170.38,45.925 +501401,174.13,48.162 +501402,172.49,47.417 +501403,170.83,46.653 +501404,169.17,45.873 +501405,172.79,48.261 +501406,171.19,47.467 +501407,169.58,46.653 +501408,167.96,45.821 +501409,171.44,48.359 +501410,169.89,47.516 +501411,168.32,46.653 +501412,166.74,45.77 +501413,170.1,48.455 +501414,168.59,47.565 +501415,167.07,46.653 +501416,165.53,45.72 +501417,168.75,48.552 +501418,167.29,47.614 +501419,165.81,46.653 +501420,164.32,45.67 +501421,167.4,48.647 +501422,165.99,47.663 +501423,164.56,46.654 +501424,163.12,45.621 +501425,166.05,48.741 +501426,164.68,47.711 +501427,163.31,46.655 +501428,161.91,45.573 +501429,164.7,48.834 +501430,163.38,47.759 +501431,162.05,46.657 +501432,160.71,45.526 +501433,163.35,48.927 +501434,162.08,47.807 +501435,160.8,46.658 +501436,159.5,45.48 +501437,161.99,49.018 +501438,160.78,47.854 +501439,159.55,46.66 +501440,158.3,45.435 +501441,160.64,49.108 +501442,159.47,47.902 +501443,158.29,46.663 +501444,157.1,45.391 +501445,159.29,49.197 +501446,158.17,47.949 +501447,157.04,46.666 +501448,155.9,45.347 +501449,157.93,49.285 +501450,156.87,47.995 +501451,155.79,46.669 +501452,154.7,45.305 +501453,156.58,49.372 +501454,155.56,48.041 +501455,154.54,46.672 +501456,153.51,45.264 +501457,155.22,49.457 +501458,154.26,48.087 +501459,153.29,46.677 +501460,152.31,45.224 +501461,153.86,49.542 +501462,152.95,48.133 +501463,152.04,46.681 +501464,151.11,45.185 +501465,152.51,49.625 +501466,151.65,48.178 +501467,150.78,46.686 +501468,149.92,45.148 +501469,151.15,49.707 +501470,150.34,48.222 +501471,149.53,46.691 +501472,148.73,45.111 +501473,149.79,49.788 +501474,149.03,48.267 +501475,148.28,46.697 +501476,147.54,45.076 +501477,148.43,49.867 +501478,147.73,48.311 +501479,147.03,46.703 +501480,146.34,45.042 +501481,147.07,49.946 +501482,146.42,48.354 +501483,145.78,46.71 +501484,145.15,45.01 +501485,145.71,50.022 +501486,145.11,48.397 +501487,144.53,46.717 +501488,143.97,44.979 +501489,144.35,50.098 +501490,143.81,48.44 +501491,143.28,46.725 +501492,142.78,44.949 +501493,142.99,50.172 +501494,142.5,48.482 +501495,142.03,46.733 +501496,141.59,44.921 +501497,141.63,50.244 +501498,141.19,48.524 +501499,140.78,46.742 +501500,140.4,44.894 +501501,140.27,50.316 +501502,139.88,48.565 +501503,139.53,46.751 +501504,139.21,44.868 +501505,138.9,50.386 +501506,138.58,48.606 +501507,138.28,46.761 +501508,138.03,44.845 +501509,137.54,50.454 +501510,137.27,48.646 +501511,137.03,46.772 +501512,136.84,44.822 +501513,136.18,50.521 +501514,135.96,48.686 +501515,135.78,46.782 +501516,135.65,44.802 +501517,134.82,50.586 +501518,134.65,48.726 +501519,134.53,46.794 +501520,134.47,44.783 +501521,133.46,50.65 +501522,133.34,48.765 +501523,133.28,46.806 +501524,133.28,44.765 +501525,132.09,50.712 +501526,132.03,48.803 +501527,132.03,46.818 +501528,132.1,44.749 +501529,130.73,50.773 +501530,130.73,48.841 +501531,130.78,46.832 +501532,130.91,44.735 +501533,129.37,50.833 +501534,129.42,48.879 +501535,129.53,46.845 +501536,129.73,44.723 +501537,128.01,50.89 +501538,128.11,48.916 +501539,128.28,46.86 +501540,128.54,44.712 +501541,126.64,50.947 +501542,126.8,48.952 +501543,127.03,46.874 +501544,127.36,44.703 +501545,125.28,51.001 +501546,125.49,48.988 +501547,125.78,46.89 +501548,126.17,44.696 +501549,123.92,51.054 +501550,124.18,49.024 +501551,124.53,46.906 +501552,124.99,44.691 +501553,122.56,51.106 +501554,122.87,49.058 +501555,123.28,46.923 +501556,123.8,44.687 +501557,121.2,51.156 +501558,121.56,49.093 +501559,122.03,46.94 +501560,122.62,44.685 +501561,119.84,51.204 +501562,120.25,49.127 +501563,120.78,46.958 +501564,121.43,44.685 +501565,118.47,51.25 +501566,118.95,49.16 +501567,119.53,46.976 +501568,120.25,44.687 +501569,117.11,51.295 +501570,117.64,49.193 +501571,118.27,46.996 +501572,119.06,44.691 +501573,115.75,51.339 +501574,116.33,49.225 +501575,117.02,47.015 +501576,117.87,44.696 +501577,114.39,51.381 +501578,115.02,49.257 +501579,115.77,47.036 +501580,116.68,44.704 +501581,113.03,51.421 +501582,113.71,49.288 +501583,114.52,47.057 +501584,115.49,44.713 +501585,111.68,51.459 +501586,112.4,49.318 +501587,113.27,47.078 +501588,114.3,44.724 +501589,110.32,51.496 +501590,111.09,49.348 +501591,112.01,47.101 +501592,113.11,44.738 +501593,108.96,51.531 +501594,109.79,49.378 +501595,110.76,47.123 +501596,111.92,44.753 +501597,107.6,51.565 +501598,108.48,49.407 +501599,109.51,47.147 +501600,110.73,44.77 +501601,106.24,51.597 +501602,107.17,49.435 +501603,108.25,47.171 +501604,109.54,44.789 +501605,104.89,51.627 +501606,105.86,49.463 +501607,107,47.196 +501608,108.34,44.809 +501609,103.53,51.655 +501610,104.55,49.49 +501611,105.74,47.221 +501612,107.15,44.832 +501613,102.18,51.682 +501614,103.25,49.517 +501615,104.49,47.247 +501616,105.95,44.857 +501617,100.82,51.708 +501618,101.94,49.543 +501619,103.23,47.274 +501620,104.75,44.883 +501621,99.47,51.731 +501622,100.63,49.569 +501623,101.98,47.301 +501624,103.55,44.912 +501625,98.117,51.753 +501626,99.327,49.594 +501627,100.72,47.329 +501628,102.35,44.942 +501629,96.765,51.774 +501630,98.02,49.618 +501631,99.463,47.358 +501632,101.15,44.975 +501633,95.414,51.792 +501634,96.714,49.642 +501635,98.206,47.387 +501636,99.947,45.009 +501637,94.064,51.81 +501638,95.408,49.666 +501639,96.948,47.417 +501640,98.742,45.045 +501641,92.715,51.825 +501642,94.102,49.689 +501643,95.69,47.447 +501644,97.536,45.083 +501645,91.366,51.839 +501646,92.797,49.711 +501647,94.431,47.478 +501648,96.328,45.123 +501649,90.019,51.851 +501650,91.492,49.733 +501651,93.171,47.51 +501652,95.118,45.165 +501653,88.673,51.862 +501654,90.187,49.754 +501655,91.911,47.542 +501656,93.907,45.209 +501657,87.328,51.871 +501658,88.883,49.775 +501659,90.651,47.575 +501660,92.694,45.254 +501661,85.983,51.879 +501662,87.579,49.795 +501663,89.39,47.609 +501664,91.479,45.302 +501665,84.64,51.885 +501666,86.275,49.815 +501667,88.128,47.643 +501668,90.262,45.351 +501669,83.298,51.89 +501670,84.972,49.834 +501671,86.866,47.677 +501672,89.044,45.402 +501673,81.957,51.893 +501674,83.669,49.853 +501675,85.603,47.713 +501676,87.823,45.455 +501677,80.618,51.894 +501678,82.367,49.871 +501679,84.339,47.748 +501680,86.601,45.509 +501681,79.279,51.894 +501682,81.065,49.889 +501683,83.075,47.785 +501684,85.377,45.566 +501685,77.942,51.893 +501686,79.763,49.906 +501687,81.81,47.822 +501688,84.15,45.624 +501689,76.606,51.89 +501690,78.461,49.923 +501691,80.545,47.859 +501692,82.922,45.684 +501693,75.271,51.885 +501694,77.161,49.939 +501695,79.279,47.897 +501696,81.691,45.745 +501697,73.938,51.879 +501698,75.86,49.955 +501699,78.012,47.936 +501700,80.459,45.808 +501701,72.606,51.872 +501702,74.56,49.97 +501703,76.744,47.975 +501704,79.224,45.873 +501705,71.275,51.863 +501706,73.261,49.985 +501707,75.476,48.015 +501708,77.987,45.939 +501709,69.946,51.853 +501710,71.961,49.999 +501711,74.207,48.055 +501712,76.748,46.007 +501713,68.618,51.842 +501714,70.663,50.013 +501715,72.938,48.096 +501716,75.507,46.077 +501717,67.291,51.829 +501718,69.365,50.026 +501719,71.668,48.137 +501720,74.263,46.148 +501721,65.966,51.815 +501722,68.067,50.039 +501723,70.397,48.179 +501724,73.018,46.22 +501725,64.643,51.799 +501726,66.77,50.052 +501727,69.125,48.221 +501728,71.77,46.294 +501729,63.321,51.782 +501730,65.473,50.064 +501731,67.852,48.264 +501732,70.519,46.37 +501733,62,51.764 +501734,64.177,50.076 +501735,66.579,48.307 +501736,69.267,46.447 +501737,60.681,51.745 +501738,62.881,50.087 +501739,65.305,48.351 +501740,68.012,46.525 +501741,59.364,51.725 +501742,61.586,50.098 +501743,64.031,48.395 +501744,66.755,46.605 +501745,58.048,51.703 +501746,60.291,50.108 +501747,62.755,48.44 +501748,65.496,46.685 +501749,56.733,51.68 +501750,58.997,50.118 +501751,61.479,48.485 +501752,64.234,46.768 +501753,55.421,51.656 +501754,57.704,50.128 +501755,60.202,48.53 +501756,62.97,46.851 +501757,54.11,51.631 +501758,56.411,50.138 +501759,58.924,48.576 +501760,61.703,46.936 +501761,52.801,51.605 +501762,55.118,50.147 +501763,57.646,48.622 +501764,60.435,47.022 +501765,51.493,51.577 +501766,53.826,50.155 +501767,56.366,48.669 +501768,59.164,47.109 +501769,50.187,51.549 +501770,52.535,50.164 +501771,55.086,48.716 +501772,57.89,47.197 +501773,48.883,51.52 +501774,51.244,50.172 +501775,53.806,48.763 +501776,56.615,47.286 +501777,47.58,51.489 +501778,49.954,50.179 +501779,52.524,48.811 +501780,55.337,47.376 +501781,46.279,51.458 +501782,48.664,50.187 +501783,51.242,48.859 +501784,54.056,47.467 +501785,44.98,51.426 +501786,47.375,50.194 +501787,49.959,48.907 +501788,52.774,47.559 +501789,43.683,51.393 +501790,46.086,50.201 +501791,48.675,48.956 +501792,51.489,47.652 +501793,42.388,51.359 +501794,44.798,50.207 +501795,47.39,49.005 +501796,50.202,47.746 +501797,41.094,51.324 +501798,43.511,50.213 +501799,46.104,49.055 +501800,48.912,47.841 +501801,39.802,51.288 +501802,42.224,50.219 +501803,44.818,49.104 +501804,47.621,47.936 +501805,38.512,51.252 +501806,40.938,50.225 +501807,43.531,49.154 +501808,46.327,48.033 +501809,37.224,51.215 +501810,39.652,50.231 +501811,42.243,49.204 +501812,45.031,48.13 +501813,35.938,51.177 +501814,38.367,50.236 +501815,40.955,49.255 +501816,43.732,48.227 +501817,34.653,51.138 +501818,37.082,50.241 +501819,39.665,49.305 +501820,42.432,48.325 +501821,33.37,51.099 +501822,35.798,50.246 +501823,38.375,49.356 +501824,41.129,48.424 +501825,32.089,51.059 +501826,34.515,50.251 +501827,37.085,49.407 +501828,39.824,48.524 +501829,30.81,51.019 +501830,33.232,50.256 +501831,35.793,49.459 +501832,38.517,48.624 +501833,29.533,50.978 +501834,31.95,50.26 +501835,34.501,49.51 +501836,37.208,48.724 +501837,28.258,50.936 +501838,30.668,50.264 +501839,33.207,49.562 +501840,35.897,48.825 +501841,26.985,50.894 +501842,29.387,50.268 +501843,31.914,49.614 +501844,34.583,48.926 +501845,25.713,50.852 +501846,28.107,50.272 +501847,30.619,49.665 +501848,33.268,49.028 +501849,24.443,50.809 +501850,26.827,50.276 +501851,29.324,49.718 +501852,31.951,49.129 +501853,23.176,50.766 +501854,25.548,50.28 +501855,28.028,49.77 +501856,30.631,49.232 +501857,21.91,50.722 +501858,24.269,50.284 +501859,26.731,49.822 +501860,29.31,49.334 +501861,20.646,50.679 +501862,22.991,50.287 +501863,25.433,49.874 +501864,27.987,49.436 +501865,19.383,50.634 +501866,21.713,50.291 +501867,24.135,49.927 +501868,26.662,49.539 +501869,18.123,50.59 +501870,20.436,50.295 +501871,22.836,49.979 +501872,25.335,49.642 +501873,16.865,50.546 +501874,19.16,50.298 +501875,21.536,50.032 +501876,24.006,49.745 +501877,15.608,50.501 +501878,17.884,50.302 +501879,20.236,50.084 +501880,22.675,49.847 +501881,14.353,50.456 +501882,16.608,50.305 +501883,18.935,50.137 +501884,21.343,49.95 +501885,13.1,50.411 +501886,15.333,50.308 +501887,17.633,50.19 +501888,20.009,50.053 +501889,11.849,50.366 +501890,14.059,50.312 +501891,16.331,50.242 +501892,18.673,50.156 +501893,10.6,50.321 +501894,12.785,50.315 +501895,15.028,50.295 +501896,17.336,50.258 +501897,9.3522,50.276 +501898,11.512,50.319 +501899,13.725,50.348 +501900,15.996,50.36 +501901,8.1065,50.231 +501902,10.239,50.323 +501903,12.42,50.4 +501904,14.656,50.462 +501905,6.8625,50.187 +501906,8.9667,50.326 +501907,11.115,50.453 +501908,13.313,50.564 +501909,5.6203,50.142 +501910,7.6949,50.33 +501911,9.8098,50.505 +501912,11.969,50.666 +501913,4.3799,50.098 +501914,6.4237,50.334 +501915,8.5037,50.557 +501916,10.624,50.767 +501917,3.1411,50.053 +501918,5.1529,50.338 +501919,7.1969,50.61 +501920,9.2768,50.868 +501921,1.9041,50.009 +501922,3.8825,50.342 +501923,5.8896,50.662 +501924,7.9285,50.968 +501925,0.66879,49.966 +501926,2.6127,50.346 +501927,4.5817,50.714 +501928,6.5787,51.068 +501929,359.44,49.922 +501930,1.3433,50.35 +501931,3.2733,50.766 +501932,5.2276,51.168 +501933,358.2,49.879 +501934,0.074319,50.354 +501935,1.9642,50.818 +501936,3.8751,51.267 +501937,356.97,49.837 +501938,358.81,50.359 +501939,0.65468,50.869 +501940,2.5213,51.365 +501941,355.74,49.794 +501942,357.54,50.364 +501943,359.34,50.921 +501944,1.1663,51.463 +501945,354.52,49.753 +501946,356.27,50.369 +501947,358.03,50.972 +501948,359.81,51.56 +501949,353.29,49.711 +501950,355,50.374 +501951,356.72,51.023 +501952,358.45,51.657 +501953,352.07,49.671 +501954,353.74,50.379 +501955,355.41,51.074 +501956,357.09,51.753 +501957,350.84,49.631 +501958,352.47,50.385 +501959,354.1,51.125 +501960,355.73,51.848 +501961,349.62,49.591 +501962,351.2,50.391 +501963,352.79,51.175 +501964,354.37,51.942 +501965,348.4,49.552 +501966,349.94,50.397 +501967,351.47,51.225 +501968,353.01,52.036 +501969,347.18,49.514 +501970,348.67,50.403 +501971,350.16,51.275 +501972,351.65,52.129 +501973,345.97,49.477 +501974,347.41,50.41 +501975,348.85,51.325 +501976,350.29,52.221 +501977,344.75,49.44 +501978,346.14,50.417 +501979,347.53,51.374 +501980,348.92,52.312 +501981,343.54,49.404 +501982,344.88,50.424 +501983,346.22,51.423 +501984,347.55,52.402 +501985,342.32,49.369 +501986,343.61,50.431 +501987,344.9,51.472 +501988,346.19,52.492 +501989,341.11,49.335 +501990,342.35,50.439 +501991,343.59,51.521 +501992,344.82,52.58 +501993,339.9,49.302 +501994,341.09,50.447 +501995,342.27,51.569 +501996,343.45,52.667 +501997,338.69,49.269 +501998,339.82,50.455 +501999,340.95,51.617 +502000,342.08,52.754 +502001,337.48,49.238 +502002,338.56,50.464 +502003,339.64,51.665 +502004,340.71,52.839 +502005,336.28,49.207 +502006,337.3,50.473 +502007,338.32,51.712 +502008,339.34,52.923 +502009,335.07,49.178 +502010,336.04,50.483 +502011,337,51.759 +502012,337.97,53.006 +502013,333.86,49.15 +502014,334.77,50.492 +502015,335.69,51.805 +502016,336.6,53.088 +502017,332.66,49.123 +502018,333.51,50.503 +502019,334.37,51.852 +502020,335.23,53.169 +502021,331.46,49.096 +502022,332.25,50.513 +502023,333.05,51.897 +502024,333.86,53.249 +502025,330.25,49.071 +502026,330.99,50.524 +502027,331.73,51.943 +502028,332.49,53.328 +502029,329.05,49.048 +502030,329.73,50.536 +502031,330.41,51.988 +502032,331.11,53.405 +502033,327.85,49.025 +502034,328.46,50.547 +502035,329.09,52.032 +502036,329.74,53.481 +502037,326.65,49.004 +502038,327.2,50.56 +502039,327.78,52.077 +502040,328.36,53.556 +502041,325.45,48.984 +502042,325.94,50.572 +502043,326.46,52.121 +502044,326.99,53.629 +502045,324.25,48.965 +502046,324.68,50.585 +502047,325.14,52.164 +502048,325.62,53.702 +502049,323.05,48.947 +502050,323.42,50.599 +502051,323.82,52.207 +502052,324.24,53.773 +502053,321.85,48.931 +502054,322.16,50.613 +502055,322.5,52.249 +502056,322.87,53.842 +502057,320.65,48.916 +502058,320.9,50.627 +502059,321.18,52.292 +502060,321.49,53.911 +502061,319.46,48.903 +502062,319.64,50.642 +502063,319.86,52.333 +502064,320.11,53.978 +502065,318.26,48.891 +502066,318.37,50.658 +502067,318.54,52.374 +502068,318.74,54.043 +502069,317.06,48.88 +502070,317.11,50.674 +502071,317.22,52.415 +502072,317.36,54.107 +502073,315.86,48.871 +502074,315.85,50.69 +502075,315.9,52.455 +502076,315.99,54.17 +502077,314.67,48.863 +502078,314.59,50.707 +502079,314.58,52.495 +502080,314.61,54.232 +502081,313.47,48.857 +502082,313.33,50.724 +502083,313.26,52.534 +502084,313.24,54.292 +502085,312.27,48.852 +502086,312.07,50.742 +502087,311.93,52.573 +502088,311.86,54.35 +502089,311.08,48.849 +502090,310.81,50.76 +502091,310.61,52.612 +502092,310.49,54.407 +502093,309.88,48.848 +502094,309.55,50.779 +502095,309.29,52.65 +502096,309.11,54.463 +502097,308.68,48.848 +502098,308.28,50.799 +502099,307.97,52.687 +502100,307.74,54.517 +502101,307.49,48.849 +502102,307.02,50.819 +502103,306.65,52.724 +502104,306.36,54.57 +502105,306.29,48.852 +502106,305.76,50.839 +502107,305.33,52.76 +502108,304.99,54.621 +502109,305.09,48.857 +502110,304.5,50.86 +502111,304.01,52.796 +502112,303.61,54.67 +502113,303.89,48.863 +502114,303.24,50.882 +502115,302.69,52.831 +502116,302.24,54.719 +502117,302.69,48.871 +502118,301.97,50.904 +502119,301.37,52.866 +502120,300.87,54.765 +502121,301.49,48.881 +502122,300.71,50.926 +502123,300.05,52.901 +502124,299.49,54.81 +502125,300.29,48.892 +502126,299.45,50.949 +502127,298.73,52.934 +502128,298.12,54.854 +502129,299.09,48.905 +502130,298.18,50.973 +502131,297.41,52.968 +502132,296.75,54.896 +502133,297.89,48.92 +502134,296.92,50.997 +502135,296.09,53 +502136,295.38,54.936 +502137,296.69,48.936 +502138,295.66,51.022 +502139,294.77,53.033 +502140,294,54.975 +502141,295.49,48.954 +502142,294.39,51.047 +502143,293.45,53.064 +502144,292.63,55.013 +502145,294.29,48.973 +502146,293.13,51.073 +502147,292.13,53.096 +502148,291.26,55.049 +502149,293.08,48.995 +502150,291.86,51.099 +502151,290.81,53.126 +502152,289.89,55.083 +502153,291.88,49.018 +502154,290.6,51.126 +502155,289.49,53.157 +502156,288.53,55.116 +502157,290.67,49.042 +502158,289.33,51.154 +502159,288.17,53.186 +502160,287.16,55.147 +502161,289.46,49.069 +502162,288.07,51.182 +502163,286.86,53.215 +502164,285.79,55.177 +502165,288.25,49.097 +502166,286.8,51.21 +502167,285.54,53.244 +502168,284.42,55.205 +502169,287.04,49.126 +502170,285.54,51.24 +502171,284.22,53.272 +502172,283.06,55.232 +502173,285.83,49.158 +502174,284.27,51.269 +502175,282.9,53.3 +502176,281.69,55.257 +502177,284.62,49.191 +502178,283,51.299 +502179,281.58,53.327 +502180,280.33,55.281 +502181,283.41,49.226 +502182,281.73,51.33 +502183,280.27,53.353 +502184,278.97,55.303 +502185,282.19,49.262 +502186,280.46,51.362 +502187,278.95,53.379 +502188,277.6,55.324 +502189,280.98,49.3 +502190,279.2,51.393 +502191,277.63,53.405 +502192,276.24,55.343 +502193,279.76,49.34 +502194,277.93,51.426 +502195,276.32,53.43 +502196,274.88,55.36 +502197,278.54,49.381 +502198,276.66,51.459 +502199,275,53.454 +502200,273.52,55.376 +502201,277.32,49.424 +502202,275.39,51.492 +502203,273.68,53.478 +502204,272.17,55.391 +502205,276.09,49.469 +502206,274.11,51.526 +502207,272.37,53.501 +502208,270.81,55.404 +502209,274.87,49.515 +502210,272.84,51.561 +502211,271.05,53.524 +502212,269.45,55.416 +502213,273.64,49.563 +502214,271.57,51.596 +502215,269.74,53.547 +502216,268.1,55.426 +502217,272.42,49.613 +502218,270.3,51.631 +502219,268.42,53.569 +502220,266.74,55.435 +502221,271.19,49.664 +502222,269.03,51.667 +502223,267.11,53.59 +502224,265.39,55.442 +502225,269.96,49.717 +502226,267.75,51.704 +502227,265.8,53.611 +502228,264.04,55.448 +502229,268.72,49.771 +502230,266.48,51.741 +502231,264.48,53.632 +502232,262.69,55.453 +502233,267.49,49.827 +502234,265.2,51.778 +502235,263.17,53.652 +502236,261.34,55.456 +502237,266.25,49.884 +502238,263.93,51.817 +502239,261.86,53.671 +502240,259.99,55.458 +502241,265.01,49.943 +502242,262.65,51.855 +502243,260.55,53.691 +502244,258.65,55.458 +502245,263.77,50.003 +502246,261.37,51.894 +502247,259.23,53.709 +502248,257.3,55.457 +502249,262.53,50.065 +502250,260.1,51.934 +502251,257.92,53.727 +502252,255.96,55.455 +502253,261.28,50.128 +502254,258.82,51.973 +502255,256.61,53.745 +502256,254.62,55.451 +502257,260.04,50.192 +502258,257.54,52.014 +502259,255.3,53.762 +502260,253.27,55.446 +502261,258.79,50.258 +502262,256.26,52.055 +502263,253.99,53.779 +502264,251.94,55.44 +502265,257.54,50.325 +502266,254.98,52.096 +502267,252.68,53.796 +502268,250.6,55.433 +502269,256.28,50.394 +502270,253.7,52.138 +502271,251.37,53.812 +502272,249.26,55.424 +502273,255.03,50.464 +502274,252.42,52.18 +502275,250.07,53.827 +502276,247.93,55.414 +502277,253.77,50.535 +502278,251.13,52.223 +502279,248.76,53.843 +502280,246.59,55.403 +502281,252.51,50.608 +502282,249.85,52.266 +502283,247.45,53.857 +502284,245.26,55.391 +502285,251.25,50.681 +502286,248.57,52.309 +502287,246.15,53.872 +502288,243.93,55.377 +502289,249.98,50.756 +502290,247.28,52.353 +502291,244.84,53.886 +502292,242.6,55.363 +502293,248.72,50.832 +502294,246,52.397 +502295,243.53,53.899 +502296,241.27,55.347 +502297,247.45,50.91 +502298,244.71,52.441 +502299,242.23,53.913 +502300,239.95,55.33 +502301,246.18,50.988 +502302,243.43,52.486 +502303,240.92,53.925 +502304,238.62,55.312 +502305,244.9,51.067 +502306,242.14,52.532 +502307,239.62,53.938 +502308,237.3,55.293 +502309,243.63,51.148 +502310,240.85,52.577 +502311,238.32,53.95 +502312,235.98,55.273 +502313,242.35,51.23 +502314,239.56,52.623 +502315,237.01,53.962 +502316,234.66,55.252 +502317,241.07,51.312 +502318,238.27,52.67 +502319,235.71,53.974 +502320,233.35,55.231 +502321,239.79,51.396 +502322,236.98,52.716 +502323,234.41,53.985 +502324,232.03,55.208 +502325,238.5,51.48 +502326,235.69,52.763 +502327,233.11,53.996 +502328,230.72,55.184 +502329,237.22,51.565 +502330,234.4,52.81 +502331,231.81,54.006 +502332,229.4,55.159 +502333,235.93,51.652 +502334,233.11,52.858 +502335,230.51,54.017 +502336,228.09,55.134 +502337,234.64,51.739 +502338,231.81,52.906 +502339,229.21,54.027 +502340,226.79,55.107 +502341,233.34,51.827 +502342,230.52,52.954 +502343,227.91,54.037 +502344,225.48,55.08 +502345,232.05,51.915 +502346,229.23,53.002 +502347,226.61,54.046 +502348,224.17,55.052 +502349,230.75,52.004 +502350,227.93,53.051 +502351,225.32,54.055 +502352,222.87,55.024 +502353,229.45,52.094 +502354,226.63,53.099 +502355,224.02,54.064 +502356,221.57,54.994 +502357,228.15,52.185 +502358,225.34,53.148 +502359,222.72,54.073 +502360,220.27,54.964 +502361,226.84,52.276 +502362,224.04,53.198 +502363,221.43,54.082 +502364,218.97,54.933 +502365,225.54,52.368 +502366,222.74,53.247 +502367,220.13,54.09 +502368,217.68,54.902 +502369,224.23,52.461 +502370,221.44,53.297 +502371,218.84,54.098 +502372,216.38,54.87 +502373,222.91,52.554 +502374,220.14,53.347 +502375,217.54,54.106 +502376,215.09,54.837 +502377,221.6,52.647 +502378,218.84,53.397 +502379,216.25,54.114 +502380,213.8,54.804 +502381,220.29,52.741 +502382,217.54,53.447 +502383,214.96,54.122 +502384,212.51,54.77 +502385,218.97,52.835 +502386,216.24,53.497 +502387,213.66,54.129 +502388,211.22,54.736 +502389,217.65,52.93 +502390,214.93,53.547 +502391,212.37,54.137 +502392,209.94,54.702 +502393,216.33,53.025 +502394,213.63,53.598 +502395,211.08,54.144 +502396,208.66,54.667 +502397,215,53.12 +502398,212.33,53.648 +502399,209.79,54.151 +502400,207.38,54.631 +502401,213.68,53.215 +502402,211.02,53.699 +502403,208.5,54.158 +502404,206.1,54.596 +502405,212.35,53.311 +502406,209.72,53.75 +502407,207.21,54.165 +502408,204.82,54.56 +502409,211.02,53.407 +502410,208.41,53.801 +502411,205.92,54.172 +502412,203.54,54.523 +502413,209.69,53.503 +502414,207.1,53.852 +502415,204.63,54.179 +502416,202.27,54.487 +502417,208.36,53.599 +502418,205.79,53.903 +502419,203.35,54.185 +502420,201,54.45 +502421,207.02,53.695 +502422,204.49,53.954 +502423,202.06,54.192 +502424,199.73,54.413 +502425,205.68,53.792 +502426,203.18,54.005 +502427,200.77,54.199 +502428,198.46,54.376 +502429,204.34,53.888 +502430,201.87,54.056 +502431,199.49,54.205 +502432,197.19,54.339 +502433,203,53.984 +502434,200.56,54.107 +502435,198.2,54.212 +502436,195.93,54.302 +502437,201.66,54.08 +502438,199.24,54.158 +502439,196.92,54.218 +502440,194.66,54.264 +502441,200.32,54.176 +502442,197.93,54.209 +502443,195.63,54.225 +502444,193.4,54.227 +502445,198.97,54.272 +502446,196.62,54.26 +502447,194.35,54.231 +502448,192.14,54.19 +502449,197.62,54.368 +502450,195.31,54.311 +502451,193.06,54.238 +502452,190.89,54.153 +502453,196.27,54.463 +502454,193.99,54.361 +502455,191.78,54.245 +502456,189.63,54.115 +502457,194.92,54.558 +502458,192.68,54.412 +502459,190.5,54.251 +502460,188.38,54.078 +502461,193.57,54.653 +502462,191.36,54.463 +502463,189.22,54.258 +502464,187.12,54.042 +502465,192.22,54.748 +502466,190.05,54.513 +502467,187.94,54.265 +502468,185.87,54.005 +502469,190.86,54.842 +502470,188.73,54.564 +502471,186.66,54.272 +502472,184.62,53.968 +502473,189.5,54.936 +502474,187.42,54.614 +502475,185.38,54.279 +502476,183.38,53.932 +502477,188.15,55.029 +502478,186.1,54.664 +502479,184.1,54.286 +502480,182.13,53.896 +502481,186.79,55.122 +502482,184.78,54.715 +502483,182.82,54.293 +502484,180.89,53.861 +502485,185.43,55.215 +502486,183.46,54.764 +502487,181.54,54.301 +502488,179.64,53.826 +502489,184.06,55.307 +502490,182.14,54.814 +502491,180.26,54.308 +502492,178.4,53.791 +502493,182.7,55.398 +502494,180.82,54.864 +502495,178.98,54.316 +502496,177.16,53.757 +502497,181.33,55.489 +502498,179.51,54.913 +502499,177.7,54.324 +502500,175.93,53.723 +502501,179.97,55.579 +502502,178.18,54.962 +502503,176.43,54.332 +502504,174.69,53.689 +502505,178.6,55.669 +502506,176.86,55.011 +502507,175.15,54.34 +502508,173.45,53.656 +502509,177.23,55.758 +502510,175.54,55.06 +502511,173.87,54.348 +502512,172.22,53.624 +502513,175.86,55.846 +502514,174.22,55.109 +502515,172.6,54.357 +502516,170.99,53.592 +502517,174.49,55.933 +502518,172.9,55.157 +502519,171.32,54.366 +502520,169.76,53.561 +502521,173.12,56.02 +502522,171.58,55.205 +502523,170.05,54.375 +502524,168.53,53.531 +502525,171.75,56.106 +502526,170.25,55.253 +502527,168.77,54.384 +502528,167.3,53.501 +502529,170.37,56.191 +502530,168.93,55.301 +502531,167.5,54.394 +502532,166.07,53.472 +502533,169,56.275 +502534,167.61,55.348 +502535,166.22,54.404 +502536,164.85,53.444 +502537,167.62,56.358 +502538,166.28,55.395 +502539,164.95,54.414 +502540,163.62,53.416 +502541,166.25,56.441 +502542,164.96,55.441 +502543,163.68,54.424 +502544,162.4,53.39 +502545,164.87,56.522 +502546,163.63,55.488 +502547,162.4,54.435 +502548,161.18,53.364 +502549,163.49,56.603 +502550,162.31,55.534 +502551,161.13,54.445 +502552,159.96,53.339 +502553,162.12,56.683 +502554,160.98,55.58 +502555,159.86,54.457 +502556,158.74,53.315 +502557,160.74,56.761 +502558,159.66,55.625 +502559,158.58,54.468 +502560,157.52,53.292 +502561,159.36,56.839 +502562,158.33,55.67 +502563,157.31,54.48 +502564,156.3,53.269 +502565,157.98,56.915 +502566,157,55.715 +502567,156.04,54.492 +502568,155.09,53.248 +502569,156.6,56.991 +502570,155.68,55.759 +502571,154.77,54.505 +502572,153.87,53.228 +502573,155.21,57.065 +502574,154.35,55.803 +502575,153.5,54.518 +502576,152.65,53.209 +502577,153.83,57.138 +502578,153.02,55.847 +502579,152.22,54.531 +502580,151.44,53.191 +502581,152.45,57.21 +502582,151.69,55.89 +502583,150.95,54.544 +502584,150.23,53.174 +502585,151.07,57.281 +502586,150.37,55.933 +502587,149.68,54.558 +502588,149.01,53.158 +502589,149.68,57.351 +502590,149.04,55.976 +502591,148.41,54.573 +502592,147.8,53.143 +502593,148.3,57.419 +502594,147.71,56.018 +502595,147.14,54.588 +502596,146.59,53.129 +502597,146.92,57.487 +502598,146.38,56.059 +502599,145.87,54.603 +502600,145.38,53.117 +502601,145.53,57.553 +502602,145.05,56.101 +502603,144.6,54.618 +502604,144.17,53.106 +502605,144.15,57.618 +502606,143.73,56.141 +502607,143.33,54.634 +502608,142.96,53.096 +502609,142.77,57.682 +502610,142.4,56.182 +502611,142.06,54.65 +502612,141.75,53.087 +502613,141.38,57.744 +502614,141.07,56.222 +502615,140.79,54.667 +502616,140.54,53.079 +502617,140,57.805 +502618,139.74,56.261 +502619,139.52,54.684 +502620,139.33,53.073 +502621,138.61,57.865 +502622,138.41,56.3 +502623,138.25,54.702 +502624,138.12,53.068 +502625,137.23,57.923 +502626,137.08,56.339 +502627,136.98,54.72 +502628,136.91,53.065 +502629,135.84,57.98 +502630,135.75,56.377 +502631,135.71,54.738 +502632,135.71,53.062 +502633,134.46,58.036 +502634,134.42,56.415 +502635,134.43,54.757 +502636,134.5,53.061 +502637,133.07,58.091 +502638,133.09,56.452 +502639,133.16,54.777 +502640,133.29,53.062 +502641,131.69,58.144 +502642,131.77,56.489 +502643,131.89,54.796 +502644,132.08,53.064 +502645,130.3,58.195 +502646,130.44,56.526 +502647,130.62,54.817 +502648,130.87,53.067 +502649,128.92,58.246 +502650,129.11,56.562 +502651,129.35,54.837 +502652,129.66,53.072 +502653,127.54,58.295 +502654,127.78,56.597 +502655,128.08,54.858 +502656,128.46,53.078 +502657,126.15,58.342 +502658,126.45,56.632 +502659,126.81,54.88 +502660,127.25,53.085 +502661,124.77,58.388 +502662,125.12,56.666 +502663,125.54,54.902 +502664,126.04,53.094 +502665,123.39,58.433 +502666,123.79,56.7 +502667,124.27,54.925 +502668,124.83,53.104 +502669,122,58.477 +502670,122.46,56.734 +502671,123,54.948 +502672,123.62,53.116 +502673,120.62,58.518 +502674,121.13,56.767 +502675,121.72,54.971 +502676,122.41,53.13 +502677,119.24,58.559 +502678,119.8,56.799 +502679,120.45,54.995 +502680,121.2,53.144 +502681,117.86,58.598 +502682,118.48,56.832 +502683,119.18,55.02 +502684,119.99,53.161 +502685,116.48,58.636 +502686,117.15,56.863 +502687,117.91,55.045 +502688,118.78,53.178 +502689,115.1,58.672 +502690,115.82,56.894 +502691,116.63,55.07 +502692,117.57,53.198 +502693,113.72,58.707 +502694,114.49,56.925 +502695,115.36,55.096 +502696,116.35,53.218 +502697,112.34,58.74 +502698,113.16,56.955 +502699,114.09,55.123 +502700,115.14,53.241 +502701,110.96,58.772 +502702,111.83,56.984 +502703,112.82,55.15 +502704,113.92,53.264 +502705,109.58,58.802 +502706,110.51,57.013 +502707,111.54,55.177 +502708,112.71,53.29 +502709,108.21,58.831 +502710,109.18,57.042 +502711,110.27,55.205 +502712,111.49,53.316 +502713,106.83,58.859 +502714,107.85,57.07 +502715,108.99,55.233 +502716,110.28,53.345 +502717,105.46,58.885 +502718,106.53,57.098 +502719,107.72,55.262 +502720,109.06,53.374 +502721,104.08,58.91 +502722,105.2,57.125 +502723,106.44,55.292 +502724,107.84,53.406 +502725,102.71,58.933 +502726,103.87,57.152 +502727,105.17,55.321 +502728,106.62,53.439 +502729,101.33,58.955 +502730,102.55,57.178 +502731,103.89,55.352 +502732,105.4,53.473 +502733,99.963,58.975 +502734,101.22,57.203 +502735,102.61,55.382 +502736,104.17,53.509 +502737,98.592,58.994 +502738,99.894,57.229 +502739,101.34,55.414 +502740,102.95,53.546 +502741,97.222,59.012 +502742,98.569,57.253 +502743,100.06,55.445 +502744,101.73,53.585 +502745,95.853,59.028 +502746,97.244,57.277 +502747,98.783,55.478 +502748,100.5,53.625 +502749,94.485,59.043 +502750,95.92,57.301 +502751,97.505,55.51 +502752,99.271,53.666 +502753,93.118,59.057 +502754,94.595,57.324 +502755,96.226,55.543 +502756,98.041,53.709 +502757,91.752,59.069 +502758,93.271,57.347 +502759,94.947,55.577 +502760,96.811,53.754 +502761,90.387,59.079 +502762,91.948,57.37 +502763,93.667,55.611 +502764,95.578,53.8 +502765,89.023,59.089 +502766,90.625,57.391 +502767,92.387,55.646 +502768,94.344,53.847 +502769,87.661,59.097 +502770,89.302,57.413 +502771,91.107,55.681 +502772,93.109,53.896 +502773,86.299,59.104 +502774,87.979,57.434 +502775,89.825,55.716 +502776,91.872,53.946 +502777,84.939,59.109 +502778,86.657,57.454 +502779,88.544,55.752 +502780,90.633,53.998 +502781,83.58,59.113 +502782,85.336,57.474 +502783,87.261,55.788 +502784,89.392,54.051 +502785,82.223,59.116 +502786,84.015,57.494 +502787,85.979,55.825 +502788,88.15,54.105 +502789,80.867,59.118 +502790,82.694,57.513 +502791,84.695,55.862 +502792,86.906,54.161 +502793,79.512,59.118 +502794,81.374,57.532 +502795,83.411,55.9 +502796,85.66,54.218 +502797,78.158,59.117 +502798,80.054,57.55 +502799,82.126,55.938 +502800,84.413,54.276 +502801,76.806,59.115 +502802,78.735,57.568 +502803,80.841,55.976 +502804,83.163,54.336 +502805,75.455,59.112 +502806,77.416,57.585 +502807,79.555,56.015 +502808,81.912,54.396 +502809,74.105,59.107 +502810,76.097,57.602 +502811,78.269,56.054 +502812,80.658,54.458 +502813,72.757,59.102 +502814,74.779,57.619 +502815,76.982,56.094 +502816,79.403,54.522 +502817,71.411,59.095 +502818,73.462,57.635 +502819,75.694,56.134 +502820,78.146,54.586 +502821,70.066,59.087 +502822,72.145,57.651 +502823,74.406,56.174 +502824,76.886,54.652 +502825,68.722,59.078 +502826,70.829,57.666 +502827,73.117,56.215 +502828,75.625,54.718 +502829,67.38,59.067 +502830,69.513,57.681 +502831,71.827,56.256 +502832,74.362,54.786 +502833,66.039,59.056 +502834,68.197,57.696 +502835,70.537,56.297 +502836,73.096,54.855 +502837,64.7,59.044 +502838,66.882,57.711 +502839,69.246,56.339 +502840,71.829,54.925 +502841,63.363,59.03 +502842,65.568,57.725 +502843,67.954,56.381 +502844,70.559,54.996 +502845,62.027,59.016 +502846,64.254,57.738 +502847,66.662,56.424 +502848,69.287,55.069 +502849,60.693,59 +502850,62.941,57.751 +502851,65.369,56.466 +502852,68.014,55.142 +502853,59.36,58.984 +502854,61.628,57.764 +502855,64.075,56.51 +502856,66.738,55.216 +502857,58.029,58.967 +502858,60.316,57.777 +502859,62.781,56.553 +502860,65.46,55.291 +502861,56.7,58.949 +502862,59.005,57.789 +502863,61.486,56.597 +502864,64.179,55.367 +502865,55.373,58.929 +502866,57.693,57.801 +502867,60.19,56.641 +502868,62.897,55.444 +502869,54.047,58.909 +502870,56.383,57.813 +502871,58.893,56.685 +502872,61.612,55.522 +502873,52.723,58.889 +502874,55.073,57.824 +502875,57.596,56.729 +502876,60.326,55.6 +502877,51.4,58.867 +502878,53.764,57.836 +502879,56.298,56.774 +502880,59.037,55.679 +502881,50.079,58.844 +502882,52.455,57.846 +502883,54.999,56.819 +502884,57.746,55.76 +502885,48.76,58.821 +502886,51.147,57.857 +502887,53.7,56.865 +502888,56.452,55.841 +502889,47.443,58.797 +502890,49.839,57.867 +502891,52.4,56.91 +502892,55.157,55.922 +502893,46.128,58.773 +502894,48.532,57.877 +502895,51.099,56.956 +502896,53.859,56.004 +502897,44.814,58.747 +502898,47.226,57.887 +502899,49.798,57.002 +502900,52.56,56.087 +502901,43.502,58.721 +502902,45.92,57.897 +502903,48.496,57.048 +502904,51.258,56.171 +502905,42.192,58.694 +502906,44.615,57.906 +502907,47.193,57.094 +502908,49.954,56.255 +502909,40.883,58.667 +502910,43.31,57.916 +502911,45.889,57.141 +502912,48.647,56.34 +502913,39.577,58.639 +502914,42.006,57.925 +502915,44.585,57.188 +502916,47.339,56.425 +502917,38.272,58.611 +502918,40.703,57.933 +502919,43.28,57.234 +502920,46.029,56.511 +502921,36.969,58.582 +502922,39.4,57.942 +502923,41.974,57.281 +502924,44.716,56.597 +502925,35.668,58.553 +502926,38.098,57.951 +502927,40.667,57.329 +502928,43.401,56.684 +502929,34.369,58.523 +502930,36.796,57.959 +502931,39.36,57.376 +502932,42.084,56.771 +502933,33.071,58.492 +502934,35.495,57.967 +502935,38.052,57.423 +502936,40.765,56.858 +502937,31.775,58.462 +502938,34.195,57.975 +502939,36.744,57.471 +502940,39.445,56.946 +502941,30.482,58.431 +502942,32.895,57.983 +502943,35.434,57.518 +502944,38.122,57.034 +502945,29.189,58.399 +502946,31.596,57.991 +502947,34.124,57.566 +502948,36.796,57.122 +502949,27.899,58.367 +502950,30.297,57.999 +502951,32.814,57.614 +502952,35.469,57.21 +502953,26.611,58.335 +502954,28.999,58.006 +502955,31.502,57.662 +502956,34.14,57.299 +502957,25.324,58.303 +502958,27.701,58.014 +502959,30.19,57.709 +502960,32.809,57.388 +502961,24.039,58.271 +502962,26.404,58.021 +502963,28.878,57.757 +502964,31.476,57.477 +502965,22.756,58.238 +502966,25.108,58.028 +502967,27.564,57.805 +502968,30.142,57.566 +502969,21.475,58.205 +502970,23.812,58.036 +502971,26.25,57.853 +502972,28.805,57.655 +502973,20.196,58.172 +502974,22.517,58.043 +502975,24.935,57.901 +502976,27.466,57.744 +502977,18.918,58.139 +502978,21.222,58.05 +502979,23.62,57.949 +502980,26.126,57.833 +502981,17.643,58.106 +502982,19.928,58.058 +502983,22.304,57.997 +502984,24.783,57.922 +502985,16.368,58.073 +502986,18.635,58.065 +502987,20.987,58.045 +502988,23.439,58.011 +502989,15.096,58.04 +502990,17.342,58.072 +502991,19.67,58.093 +502992,22.093,58.1 +502993,13.826,58.007 +502994,16.05,58.079 +502995,18.352,58.141 +502996,20.745,58.189 +502997,12.557,57.974 +502998,14.758,58.087 +502999,17.034,58.188 +503000,19.396,58.278 +503001,11.29,57.942 +503002,13.466,58.094 +503003,15.715,58.236 +503004,18.045,58.366 +503005,10.024,57.909 +503006,12.176,58.101 +503007,14.395,58.284 +503008,16.692,58.454 +503009,8.7607,57.876 +503010,10.885,58.109 +503011,13.075,58.331 +503012,15.338,58.542 +503013,7.4987,57.844 +503014,9.5955,58.116 +503015,11.754,58.379 +503016,13.982,58.63 +503017,6.2384,57.812 +503018,8.3062,58.124 +503019,10.432,58.426 +503020,12.625,58.717 +503021,4.9797,57.78 +503022,7.0174,58.131 +503023,9.1102,58.473 +503024,11.266,58.804 +503025,3.7227,57.748 +503026,5.7292,58.139 +503027,7.7877,58.52 +503028,9.905,58.89 +503029,2.4672,57.717 +503030,4.4414,58.147 +503031,6.4645,58.567 +503032,8.5431,58.976 +503033,1.2133,57.686 +503034,3.1541,58.155 +503035,5.1409,58.614 +503036,7.1797,59.062 +503037,359.96,57.656 +503038,1.8673,58.163 +503039,3.8167,58.661 +503040,5.8149,59.147 +503041,358.71,57.626 +503042,0.58089,58.171 +503043,2.492,58.707 +503044,4.4487,59.232 +503045,357.46,57.596 +503046,359.29,58.18 +503047,1.1668,58.753 +503048,3.0812,59.316 +503049,356.21,57.567 +503050,358.01,58.188 +503051,359.84,58.799 +503052,1.7125,59.399 +503053,354.97,57.538 +503054,356.72,58.197 +503055,358.51,58.845 +503056,0.34247,59.482 +503057,353.72,57.51 +503058,355.44,58.206 +503059,357.19,58.891 +503060,358.97,59.564 +503061,352.48,57.483 +503062,354.16,58.215 +503063,355.86,58.936 +503064,357.6,59.646 +503065,351.24,57.456 +503066,352.87,58.224 +503067,354.53,58.982 +503068,356.23,59.727 +503069,350,57.429 +503070,351.59,58.234 +503071,353.21,59.027 +503072,354.85,59.807 +503073,348.76,57.404 +503074,350.31,58.243 +503075,351.88,59.071 +503076,353.47,59.886 +503077,347.52,57.379 +503078,349.02,58.253 +503079,350.55,59.116 +503080,352.1,59.965 +503081,346.28,57.355 +503082,347.74,58.263 +503083,349.22,59.16 +503084,350.72,60.043 +503085,345.05,57.331 +503086,346.46,58.274 +503087,347.89,59.204 +503088,349.34,60.12 +503089,343.81,57.308 +503090,345.18,58.284 +503091,346.56,59.247 +503092,347.96,60.196 +503093,342.58,57.286 +503094,343.9,58.295 +503095,345.23,59.291 +503096,346.58,60.272 +503097,341.35,57.265 +503098,342.61,58.306 +503099,343.9,59.334 +503100,345.2,60.346 +503101,340.12,57.245 +503102,341.33,58.318 +503103,342.57,59.377 +503104,343.82,60.42 +503105,338.89,57.225 +503106,340.05,58.33 +503107,341.24,59.419 +503108,342.44,60.492 +503109,337.66,57.207 +503110,338.77,58.342 +503111,339.9,59.461 +503112,341.05,60.564 +503113,336.43,57.189 +503114,337.49,58.354 +503115,338.57,59.503 +503116,339.67,60.635 +503117,335.2,57.173 +503118,336.21,58.367 +503119,337.24,59.544 +503120,338.28,60.704 +503121,333.98,57.157 +503122,334.93,58.379 +503123,335.91,59.585 +503124,336.9,60.773 +503125,332.75,57.142 +503126,333.65,58.393 +503127,334.57,59.626 +503128,335.51,60.84 +503129,331.53,57.128 +503130,332.38,58.406 +503131,333.24,59.666 +503132,334.12,60.907 +503133,330.3,57.116 +503134,331.1,58.42 +503135,331.91,59.706 +503136,332.74,60.973 +503137,329.08,57.104 +503138,329.82,58.435 +503139,330.58,59.746 +503140,331.35,61.037 +503141,327.86,57.094 +503142,328.54,58.449 +503143,329.24,59.785 +503144,329.96,61.1 +503145,326.64,57.084 +503146,327.26,58.464 +503147,327.91,59.824 +503148,328.57,61.162 +503149,325.42,57.076 +503150,325.98,58.48 +503151,326.57,59.862 +503152,327.18,61.223 +503153,324.19,57.069 +503154,324.71,58.495 +503155,325.24,59.9 +503156,325.8,61.283 +503157,322.97,57.062 +503158,323.43,58.511 +503159,323.91,59.938 +503160,324.41,61.342 +503161,321.76,57.058 +503162,322.15,58.528 +503163,322.57,59.975 +503164,323.02,61.399 +503165,320.54,57.054 +503166,320.87,58.545 +503167,321.24,60.012 +503168,321.63,61.456 +503169,319.32,57.051 +503170,319.59,58.562 +503171,319.9,60.049 +503172,320.24,61.511 +503173,318.1,57.05 +503174,318.32,58.58 +503175,318.57,60.085 +503176,318.85,61.564 +503177,316.88,57.05 +503178,317.04,58.598 +503179,317.23,60.12 +503180,317.46,61.617 +503181,315.66,57.051 +503182,315.76,58.616 +503183,315.9,60.155 +503184,316.07,61.668 +503185,314.45,57.054 +503186,314.48,58.635 +503187,314.56,60.19 +503188,314.68,61.718 +503189,313.23,57.057 +503190,313.21,58.654 +503191,313.23,60.224 +503192,313.29,61.767 +503193,312.01,57.063 +503194,311.93,58.674 +503195,311.89,60.258 +503196,311.9,61.815 +503197,310.79,57.069 +503198,310.65,58.694 +503199,310.56,60.291 +503200,310.51,61.861 +503201,309.58,57.076 +503202,309.37,58.715 +503203,309.22,60.324 +503204,309.12,61.906 +503205,308.36,57.085 +503206,308.09,58.736 +503207,307.89,60.357 +503208,307.73,61.949 +503209,307.14,57.096 +503210,306.82,58.757 +503211,306.55,60.389 +503212,306.34,61.991 +503213,305.92,57.107 +503214,305.54,58.779 +503215,305.22,60.42 +503216,304.95,62.032 +503217,304.7,57.12 +503218,304.26,58.801 +503219,303.88,60.452 +503220,303.56,62.072 +503221,303.49,57.135 +503222,302.98,58.824 +503223,302.55,60.482 +503224,302.17,62.11 +503225,302.27,57.15 +503226,301.7,58.847 +503227,301.21,60.512 +503228,300.79,62.147 +503229,301.05,57.167 +503230,300.43,58.87 +503231,299.88,60.542 +503232,299.4,62.183 +503233,299.83,57.186 +503234,299.15,58.894 +503235,298.54,60.571 +503236,298.01,62.217 +503237,298.61,57.205 +503238,297.87,58.919 +503239,297.21,60.6 +503240,296.62,62.25 +503241,297.39,57.227 +503242,296.59,58.944 +503243,295.88,60.628 +503244,295.24,62.281 +503245,296.17,57.249 +503246,295.31,58.969 +503247,294.54,60.656 +503248,293.85,62.312 +503249,294.95,57.273 +503250,294.03,58.995 +503251,293.21,60.684 +503252,292.47,62.341 +503253,293.72,57.298 +503254,292.75,59.021 +503255,291.87,60.711 +503256,291.08,62.368 +503257,292.5,57.325 +503258,291.47,59.048 +503259,290.54,60.737 +503260,289.7,62.394 +503261,291.28,57.353 +503262,290.19,59.075 +503263,289.21,60.763 +503264,288.32,62.419 +503265,290.05,57.382 +503266,288.91,59.102 +503267,287.87,60.789 +503268,286.94,62.443 +503269,288.83,57.413 +503270,287.63,59.13 +503271,286.54,60.814 +503272,285.55,62.465 +503273,287.6,57.445 +503274,286.35,59.159 +503275,285.21,60.838 +503276,284.17,62.485 +503277,286.37,57.478 +503278,285.06,59.187 +503279,283.88,60.863 +503280,282.79,62.505 +503281,285.14,57.513 +503282,283.78,59.217 +503283,282.54,60.886 +503284,281.41,62.523 +503285,283.91,57.55 +503286,282.5,59.246 +503287,281.21,60.91 +503288,280.04,62.54 +503289,282.68,57.587 +503290,281.22,59.277 +503291,279.88,60.932 +503292,278.66,62.555 +503293,281.45,57.626 +503294,279.93,59.307 +503295,278.55,60.955 +503296,277.28,62.57 +503297,280.22,57.666 +503298,278.65,59.338 +503299,277.22,60.977 +503300,275.91,62.583 +503301,278.98,57.708 +503302,277.37,59.37 +503303,275.89,60.998 +503304,274.53,62.594 +503305,277.75,57.75 +503306,276.08,59.401 +503307,274.56,61.019 +503308,273.16,62.605 +503309,276.51,57.795 +503310,274.8,59.434 +503311,273.23,61.04 +503312,271.79,62.614 +503313,275.27,57.84 +503314,273.51,59.466 +503315,271.9,61.06 +503316,270.42,62.621 +503317,274.03,57.887 +503318,272.22,59.499 +503319,270.57,61.079 +503320,269.05,62.628 +503321,272.79,57.935 +503322,270.94,59.533 +503323,269.24,61.099 +503324,267.68,62.633 +503325,271.55,57.984 +503326,269.65,59.567 +503327,267.91,61.118 +503328,266.31,62.637 +503329,270.31,58.034 +503330,268.36,59.601 +503331,266.58,61.136 +503332,264.94,62.64 +503333,269.06,58.086 +503334,267.08,59.636 +503335,265.26,61.154 +503336,263.58,62.642 +503337,267.81,58.139 +503338,265.79,59.671 +503339,263.93,61.172 +503340,262.21,62.642 +503341,266.57,58.193 +503342,264.5,59.706 +503343,262.6,61.189 +503344,260.85,62.642 +503345,265.31,58.248 +503346,263.21,59.742 +503347,261.28,61.206 +503348,259.49,62.64 +503349,264.06,58.305 +503350,261.92,59.778 +503351,259.95,61.222 +503352,258.13,62.637 +503353,262.81,58.362 +503354,260.63,59.815 +503355,258.63,61.238 +503356,256.77,62.633 +503357,261.55,58.421 +503358,259.34,59.852 +503359,257.3,61.254 +503360,255.41,62.627 +503361,260.3,58.48 +503362,258.05,59.889 +503363,255.98,61.269 +503364,254.06,62.621 +503365,259.04,58.541 +503366,256.75,59.927 +503367,254.65,61.284 +503368,252.7,62.614 +503369,257.78,58.603 +503370,255.46,59.965 +503371,253.33,61.298 +503372,251.35,62.605 +503373,256.51,58.666 +503374,254.17,60.003 +503375,252.01,61.312 +503376,250,62.596 +503377,255.25,58.73 +503378,252.87,60.041 +503379,250.68,61.326 +503380,248.65,62.585 +503381,253.98,58.795 +503382,251.58,60.08 +503383,249.36,61.34 +503384,247.3,62.574 +503385,252.71,58.861 +503386,250.28,60.12 +503387,248.04,61.353 +503388,245.95,62.561 +503389,251.44,58.928 +503390,248.99,60.159 +503391,246.72,61.365 +503392,244.6,62.548 +503393,250.17,58.996 +503394,247.69,60.199 +503395,245.4,61.378 +503396,243.26,62.533 +503397,248.9,59.064 +503398,246.4,60.239 +503399,244.08,61.39 +503400,241.92,62.518 +503401,247.62,59.134 +503402,245.1,60.28 +503403,242.76,61.402 +503404,240.58,62.502 +503405,246.34,59.204 +503406,243.8,60.32 +503407,241.44,61.413 +503408,239.24,62.485 +503409,245.06,59.276 +503410,242.5,60.361 +503411,240.12,61.424 +503412,237.9,62.467 +503413,243.78,59.348 +503414,241.2,60.402 +503415,238.81,61.435 +503416,236.56,62.448 +503417,242.49,59.42 +503418,239.9,60.444 +503419,237.49,61.446 +503420,235.23,62.429 +503421,241.21,59.494 +503422,238.6,60.486 +503423,236.17,61.456 +503424,233.9,62.408 +503425,239.92,59.568 +503426,237.3,60.527 +503427,234.86,61.467 +503428,232.57,62.387 +503429,238.63,59.643 +503430,236,60.57 +503431,233.54,61.476 +503432,231.24,62.365 +503433,237.33,59.719 +503434,234.69,60.612 +503435,232.23,61.486 +503436,229.91,62.343 +503437,236.04,59.795 +503438,233.39,60.655 +503439,230.91,61.495 +503440,228.58,62.32 +503441,234.74,59.872 +503442,232.08,60.697 +503443,229.6,61.505 +503444,227.26,62.296 +503445,233.44,59.95 +503446,230.78,60.74 +503447,228.28,61.514 +503448,225.93,62.271 +503449,232.14,60.028 +503450,229.47,60.783 +503451,226.97,61.522 +503452,224.61,62.246 +503453,230.84,60.106 +503454,228.17,60.827 +503455,225.66,61.531 +503456,223.29,62.221 +503457,229.53,60.185 +503458,226.86,60.87 +503459,224.35,61.539 +503460,221.98,62.194 +503461,228.23,60.265 +503462,225.55,60.914 +503463,223.04,61.547 +503464,220.66,62.168 +503465,226.92,60.345 +503466,224.24,60.957 +503467,221.73,61.555 +503468,219.35,62.14 +503469,225.61,60.425 +503470,222.93,61.001 +503471,220.42,61.563 +503472,218.04,62.113 +503473,224.29,60.506 +503474,221.62,61.045 +503475,219.11,61.571 +503476,216.73,62.085 +503477,222.98,60.587 +503478,220.31,61.089 +503479,217.8,61.578 +503480,215.42,62.056 +503481,221.66,60.668 +503482,219,61.133 +503483,216.49,61.586 +503484,214.11,62.027 +503485,220.34,60.75 +503486,217.69,61.178 +503487,215.19,61.593 +503488,212.81,61.998 +503489,219.02,60.832 +503490,216.38,61.222 +503491,213.88,61.6 +503492,211.5,61.969 +503493,217.69,60.914 +503494,215.06,61.266 +503495,212.57,61.607 +503496,210.2,61.939 +503497,216.37,60.996 +503498,213.75,61.311 +503499,211.27,61.614 +503500,208.9,61.909 +503501,215.04,61.079 +503502,212.44,61.355 +503503,209.96,61.621 +503504,207.6,61.878 +503505,213.71,61.161 +503506,211.12,61.4 +503507,208.66,61.628 +503508,206.31,61.848 +503509,212.38,61.244 +503510,209.81,61.444 +503511,207.36,61.635 +503512,205.01,61.817 +503513,211.05,61.327 +503514,208.49,61.489 +503515,206.05,61.642 +503516,203.72,61.786 +503517,209.71,61.409 +503518,207.17,61.534 +503519,204.75,61.648 +503520,202.43,61.755 +503521,208.37,61.492 +503522,205.85,61.578 +503523,203.45,61.655 +503524,201.14,61.724 +503525,207.04,61.575 +503526,204.54,61.623 +503527,202.15,61.662 +503528,199.86,61.693 +503529,205.69,61.658 +503530,203.22,61.667 +503531,200.85,61.668 +503532,198.57,61.662 +503533,204.35,61.74 +503534,201.9,61.712 +503535,199.55,61.675 +503536,197.29,61.631 +503537,203.01,61.823 +503538,200.58,61.756 +503539,198.25,61.682 +503540,196,61.6 +503541,201.66,61.905 +503542,199.26,61.801 +503543,196.95,61.688 +503544,194.72,61.569 +503545,200.31,61.987 +503546,197.93,61.845 +503547,195.65,61.695 +503548,193.45,61.538 +503549,198.96,62.069 +503550,196.61,61.889 +503551,194.35,61.702 +503552,192.17,61.507 +503553,197.61,62.151 +503554,195.29,61.934 +503555,193.05,61.708 +503556,190.89,61.477 +503557,196.26,62.232 +503558,193.97,61.978 +503559,191.76,61.715 +503560,189.62,61.446 +503561,194.9,62.313 +503562,192.64,62.022 +503563,190.46,61.722 +503564,188.35,61.416 +503565,193.55,62.394 +503566,191.32,62.065 +503567,189.17,61.729 +503568,187.08,61.386 +503569,192.19,62.474 +503570,189.99,62.109 +503571,187.87,61.736 +503572,185.81,61.357 +503573,190.83,62.554 +503574,188.67,62.153 +503575,186.57,61.743 +503576,184.54,61.327 +503577,189.47,62.634 +503578,187.34,62.196 +503579,185.28,61.75 +503580,183.28,61.298 +503581,188.1,62.713 +503582,186.01,62.24 +503583,183.99,61.758 +503584,182.02,61.27 +503585,186.74,62.792 +503586,184.69,62.283 +503587,182.69,61.765 +503588,180.75,61.242 +503589,185.37,62.87 +503590,183.36,62.326 +503591,181.4,61.773 +503592,179.49,61.214 +503593,184.01,62.948 +503594,182.03,62.369 +503595,180.11,61.781 +503596,178.23,61.186 +503597,182.64,63.025 +503598,180.7,62.411 +503599,178.82,61.789 +503600,176.98,61.159 +503601,181.27,63.101 +503602,179.37,62.454 +503603,177.53,61.797 +503604,175.72,61.133 +503605,179.9,63.177 +503606,178.04,62.496 +503607,176.23,61.805 +503608,174.47,61.107 +503609,178.53,63.253 +503610,176.71,62.538 +503611,174.94,61.814 +503612,173.21,61.082 +503613,177.15,63.327 +503614,175.38,62.579 +503615,173.65,61.822 +503616,171.96,61.057 +503617,175.78,63.401 +503618,174.05,62.621 +503619,172.36,61.831 +503620,170.71,61.033 +503621,174.4,63.474 +503622,172.72,62.662 +503623,171.07,61.84 +503624,169.46,61.01 +503625,173.03,63.547 +503626,171.39,62.703 +503627,169.79,61.849 +503628,168.21,60.987 +503629,171.65,63.619 +503630,170.06,62.744 +503631,168.5,61.859 +503632,166.97,60.965 +503633,170.27,63.689 +503634,168.72,62.785 +503635,167.21,61.869 +503636,165.72,60.944 +503637,168.89,63.76 +503638,167.39,62.825 +503639,165.92,61.879 +503640,164.48,60.923 +503641,167.51,63.829 +503642,166.06,62.865 +503643,164.63,61.889 +503644,163.24,60.903 +503645,166.13,63.897 +503646,164.72,62.904 +503647,163.35,61.899 +503648,162,60.884 +503649,164.74,63.965 +503650,163.39,62.944 +503651,162.06,61.91 +503652,160.75,60.866 +503653,163.36,64.032 +503654,162.05,62.983 +503655,160.77,61.921 +503656,159.52,60.849 +503657,161.98,64.097 +503658,160.72,63.021 +503659,159.49,61.933 +503660,158.28,60.832 +503661,160.59,64.162 +503662,159.38,63.06 +503663,158.2,61.944 +503664,157.04,60.817 +503665,159.2,64.226 +503666,158.05,63.098 +503667,156.92,61.956 +503668,155.8,60.802 +503669,157.82,64.289 +503670,156.71,63.136 +503671,155.63,61.968 +503672,154.57,60.788 +503673,156.43,64.351 +503674,155.38,63.173 +503675,154.34,61.981 +503676,153.33,60.776 +503677,155.04,64.412 +503678,154.04,63.21 +503679,153.06,61.994 +503680,152.1,60.764 +503681,153.65,64.472 +503682,152.7,63.247 +503683,151.78,62.007 +503684,150.87,60.753 +503685,152.26,64.531 +503686,151.37,63.283 +503687,150.49,62.02 +503688,149.64,60.743 +503689,150.87,64.588 +503690,150.03,63.319 +503691,149.21,62.034 +503692,148.4,60.735 +503693,149.48,64.645 +503694,148.69,63.355 +503695,147.92,62.048 +503696,147.17,60.727 +503697,148.09,64.701 +503698,147.36,63.39 +503699,146.64,62.063 +503700,145.94,60.72 +503701,146.7,64.755 +503702,146.02,63.425 +503703,145.36,62.078 +503704,144.72,60.715 +503705,145.31,64.809 +503706,144.68,63.459 +503707,144.07,62.093 +503708,143.49,60.71 +503709,143.92,64.861 +503710,143.34,63.493 +503711,142.79,62.108 +503712,142.26,60.707 +503713,142.53,64.912 +503714,142,63.527 +503715,141.51,62.124 +503716,141.03,60.705 +503717,141.14,64.962 +503718,140.67,63.56 +503719,140.22,62.141 +503720,139.8,60.704 +503721,139.74,65.011 +503722,139.33,63.593 +503723,138.94,62.157 +503724,138.58,60.704 +503725,138.35,65.058 +503726,137.99,63.626 +503727,137.66,62.174 +503728,137.35,60.705 +503729,136.96,65.105 +503730,136.65,63.658 +503731,136.37,62.192 +503732,136.13,60.708 +503733,135.56,65.15 +503734,135.31,63.69 +503735,135.09,62.21 +503736,134.9,60.711 +503737,134.17,65.194 +503738,133.97,63.721 +503739,133.81,62.228 +503740,133.67,60.716 +503741,132.78,65.237 +503742,132.63,63.752 +503743,132.52,62.247 +503744,132.45,60.722 +503745,131.39,65.278 +503746,131.3,63.782 +503747,131.24,62.266 +503748,131.22,60.73 +503749,129.99,65.318 +503750,129.96,63.812 +503751,129.96,62.285 +503752,130,60.738 +503753,128.6,65.357 +503754,128.62,63.842 +503755,128.68,62.305 +503756,128.77,60.748 +503757,127.21,65.395 +503758,127.28,63.871 +503759,127.39,62.325 +503760,127.55,60.759 +503761,125.82,65.432 +503762,125.94,63.899 +503763,126.11,62.346 +503764,126.32,60.771 +503765,124.42,65.467 +503766,124.6,63.928 +503767,124.83,62.367 +503768,125.1,60.785 +503769,123.03,65.501 +503770,123.26,63.955 +503771,123.54,62.388 +503772,123.87,60.8 +503773,121.64,65.534 +503774,121.93,63.983 +503775,122.26,62.41 +503776,122.65,60.816 +503777,120.25,65.565 +503778,120.59,64.01 +503779,120.98,62.432 +503780,121.42,60.834 +503781,118.86,65.595 +503782,119.25,64.036 +503783,119.69,62.455 +503784,120.2,60.852 +503785,117.47,65.624 +503786,117.91,64.062 +503787,118.41,62.478 +503788,118.97,60.872 +503789,116.08,65.652 +503790,116.57,64.088 +503791,117.13,62.502 +503792,117.74,60.894 +503793,114.69,65.678 +503794,115.23,64.113 +503795,115.84,62.526 +503796,116.52,60.916 +503797,113.3,65.703 +503798,113.9,64.138 +503799,114.56,62.55 +503800,115.29,60.94 +503801,111.91,65.727 +503802,112.56,64.162 +503803,113.27,62.575 +503804,114.06,60.965 +503805,110.52,65.75 +503806,111.22,64.186 +503807,111.99,62.6 +503808,112.83,60.992 +503809,109.14,65.771 +503810,109.88,64.209 +503811,110.7,62.626 +503812,111.6,61.02 +503813,107.75,65.791 +503814,108.55,64.232 +503815,109.42,62.652 +503816,110.37,61.049 +503817,106.36,65.81 +503818,107.21,64.255 +503819,108.13,62.678 +503820,109.14,61.079 +503821,104.98,65.827 +503822,105.87,64.277 +503823,106.85,62.705 +503824,107.91,61.111 +503825,103.59,65.843 +503826,104.54,64.299 +503827,105.56,62.732 +503828,106.68,61.144 +503829,102.21,65.858 +503830,103.2,64.32 +503831,104.28,62.76 +503832,105.45,61.178 +503833,100.83,65.872 +503834,101.87,64.341 +503835,102.99,62.788 +503836,104.21,61.213 +503837,99.444,65.884 +503838,100.53,64.361 +503839,101.7,62.816 +503840,102.98,61.25 +503841,98.063,65.896 +503842,99.194,64.381 +503843,100.42,62.845 +503844,101.74,61.288 +503845,96.683,65.906 +503846,97.859,64.401 +503847,99.129,62.874 +503848,100.51,61.327 +503849,95.303,65.914 +503850,96.524,64.42 +503851,97.841,62.904 +503852,99.267,61.367 +503853,93.925,65.922 +503854,95.189,64.439 +503855,96.553,62.934 +503856,98.028,61.409 +503857,92.547,65.928 +503858,93.855,64.457 +503859,95.264,62.965 +503860,96.788,61.452 +503861,91.171,65.933 +503862,92.521,64.475 +503863,93.975,62.995 +503864,95.547,61.496 +503865,89.795,65.937 +503866,91.188,64.492 +503867,92.686,63.027 +503868,94.304,61.541 +503869,88.421,65.94 +503870,89.855,64.509 +503871,91.396,63.058 +503872,93.06,61.587 +503873,87.048,65.942 +503874,88.522,64.526 +503875,90.106,63.09 +503876,91.815,61.635 +503877,85.675,65.943 +503878,87.19,64.542 +503879,88.815,63.122 +503880,90.569,61.684 +503881,84.304,65.942 +503882,85.858,64.558 +503883,87.524,63.155 +503884,89.321,61.734 +503885,82.935,65.94 +503886,84.526,64.574 +503887,86.233,63.188 +503888,88.072,61.785 +503889,81.566,65.937 +503890,83.195,64.589 +503891,84.941,63.222 +503892,86.821,61.837 +503893,80.199,65.934 +503894,81.864,64.604 +503895,83.648,63.255 +503896,85.569,61.89 +503897,78.833,65.929 +503898,80.534,64.618 +503899,82.355,63.29 +503900,84.315,61.944 +503901,77.468,65.923 +503902,79.204,64.632 +503903,81.062,63.324 +503904,83.06,61.999 +503905,76.104,65.916 +503906,77.874,64.646 +503907,79.768,63.359 +503908,81.803,62.055 +503909,74.742,65.908 +503910,76.545,64.659 +503911,78.473,63.394 +503912,80.545,62.113 +503913,73.381,65.898 +503914,75.217,64.672 +503915,77.178,63.429 +503916,79.285,62.171 +503917,72.022,65.888 +503918,73.889,64.684 +503919,75.882,63.465 +503920,78.023,62.23 +503921,70.664,65.877 +503922,72.561,64.697 +503923,74.586,63.501 +503924,76.759,62.291 +503925,69.307,65.865 +503926,71.234,64.709 +503927,73.289,63.537 +503928,75.494,62.352 +503929,67.952,65.852 +503930,69.907,64.72 +503931,71.992,63.574 +503932,74.227,62.414 +503933,66.598,65.839 +503934,68.581,64.732 +503935,70.694,63.611 +503936,72.959,62.477 +503937,65.246,65.824 +503938,67.255,64.743 +503939,69.396,63.648 +503940,71.688,62.541 +503941,63.896,65.808 +503942,65.93,64.753 +503943,68.097,63.686 +503944,70.416,62.605 +503945,62.546,65.792 +503946,64.606,64.764 +503947,66.797,63.723 +503948,69.142,62.671 +503949,61.199,65.775 +503950,63.281,64.774 +503951,65.497,63.761 +503952,67.866,62.737 +503953,59.853,65.757 +503954,61.958,64.784 +503955,64.196,63.8 +503956,66.589,62.804 +503957,58.508,65.738 +503958,60.635,64.794 +503959,62.894,63.838 +503960,65.309,62.872 +503961,57.165,65.718 +503962,59.312,64.803 +503963,61.592,63.877 +503964,64.027,62.941 +503965,55.824,65.698 +503966,57.99,64.812 +503967,60.29,63.916 +503968,62.744,63.01 +503969,54.484,65.677 +503970,56.669,64.821 +503971,58.986,63.955 +503972,61.458,63.08 +503973,53.146,65.655 +503974,55.348,64.829 +503975,57.682,63.995 +503976,60.171,63.15 +503977,51.81,65.633 +503978,54.028,64.838 +503979,56.378,64.034 +503980,58.882,63.222 +503981,50.475,65.61 +503982,52.708,64.846 +503983,55.073,64.074 +503984,57.591,63.294 +503985,49.142,65.586 +503986,51.389,64.854 +503987,53.767,64.114 +503988,56.297,63.366 +503989,47.81,65.562 +503990,50.07,64.862 +503991,52.46,64.154 +503992,55.002,63.439 +503993,46.481,65.537 +503994,48.752,64.869 +503995,51.153,64.194 +503996,53.705,63.512 +503997,45.153,65.512 +503998,47.435,64.876 +503999,49.845,64.235 +504000,52.406,63.586 +504001,43.826,65.486 +504002,46.118,64.884 +504003,48.537,64.275 +504004,51.105,63.661 +504005,42.502,65.459 +504006,44.802,64.891 +504007,47.228,64.316 +504008,49.801,63.735 +504009,41.179,65.433 +504010,43.486,64.898 +504011,45.918,64.357 +504012,48.496,63.811 +504013,39.858,65.405 +504014,42.171,64.904 +504015,44.608,64.398 +504016,47.189,63.886 +504017,38.538,65.378 +504018,40.856,64.911 +504019,43.297,64.439 +504020,45.88,63.962 +504021,37.221,65.35 +504022,39.542,64.917 +504023,41.985,64.48 +504024,44.569,64.038 +504025,35.905,65.321 +504026,38.229,64.924 +504027,40.673,64.522 +504028,43.256,64.115 +504029,34.59,65.293 +504030,36.916,64.93 +504031,39.36,64.563 +504032,41.941,64.192 +504033,33.278,65.264 +504034,35.604,64.936 +504035,38.046,64.604 +504036,40.623,64.269 +504037,31.967,65.234 +504038,34.293,64.942 +504039,36.732,64.646 +504040,39.304,64.346 +504041,30.658,65.205 +504042,32.982,64.948 +504043,35.417,64.688 +504044,37.983,64.424 +504045,29.351,65.175 +504046,31.671,64.954 +504047,34.101,64.729 +504048,36.66,64.501 +504049,28.046,65.145 +504050,30.361,64.959 +504051,32.785,64.771 +504052,35.335,64.579 +504053,26.742,65.115 +504054,29.052,64.965 +504055,31.468,64.812 +504056,34.008,64.657 +504057,25.44,65.085 +504058,27.743,64.971 +504059,30.151,64.854 +504060,32.68,64.735 +504061,24.14,65.055 +504062,26.435,64.976 +504063,28.833,64.896 +504064,31.349,64.812 +504065,22.842,65.024 +504066,25.128,64.982 +504067,27.514,64.938 +504068,30.016,64.89 +504069,21.545,64.994 +504070,23.821,64.988 +504071,26.195,64.979 +504072,28.682,64.968 +504073,20.25,64.964 +504074,22.515,64.993 +504075,24.874,65.021 +504076,27.345,65.046 +504077,18.957,64.933 +504078,21.209,64.999 +504079,23.554,65.063 +504080,26.007,65.124 +504081,17.665,64.903 +504082,19.904,65.004 +504083,22.233,65.104 +504084,24.667,65.201 +504085,16.376,64.873 +504086,18.599,65.01 +504087,20.911,65.146 +504088,23.325,65.279 +504089,15.088,64.843 +504090,17.295,65.016 +504091,19.588,65.187 +504092,21.982,65.356 +504093,13.801,64.813 +504094,15.991,65.021 +504095,18.265,65.229 +504096,20.636,65.433 +504097,12.517,64.783 +504098,14.688,65.027 +504099,16.941,65.27 +504100,19.289,65.51 +504101,11.234,64.753 +504102,13.386,65.033 +504103,15.617,65.311 +504104,17.94,65.586 +504105,9.9522,64.724 +504106,12.084,65.039 +504107,14.292,65.352 +504108,16.59,65.663 +504109,8.6725,64.695 +504110,10.783,65.045 +504111,12.967,65.393 +504112,15.237,65.739 +504113,7.3944,64.666 +504114,9.4817,65.051 +504115,11.641,65.434 +504116,13.883,65.814 +504117,6.118,64.637 +504118,8.1814,65.057 +504119,10.314,65.475 +504120,12.528,65.889 +504121,4.8431,64.609 +504122,6.8816,65.063 +504123,8.9873,65.515 +504124,11.171,65.964 +504125,3.5699,64.581 +504126,5.5823,65.07 +504127,7.6596,65.556 +504128,9.8118,66.039 +504129,2.2982,64.554 +504130,4.2835,65.076 +504131,6.3314,65.596 +504132,8.4516,66.113 +504133,1.0281,64.527 +504134,2.9852,65.083 +504135,5.0027,65.636 +504136,7.0898,66.186 +504137,359.76,64.5 +504138,1.6874,65.09 +504139,3.6735,65.676 +504140,5.7265,66.259 +504141,358.49,64.474 +504142,0.39009,65.097 +504143,2.3437,65.716 +504144,4.3617,66.331 +504145,357.23,64.449 +504146,359.09,65.104 +504147,1.0135,65.756 +504148,2.9956,66.403 +504149,355.96,64.423 +504150,357.8,65.111 +504151,359.68,65.795 +504152,1.628,66.475 +504153,354.7,64.399 +504154,356.5,65.118 +504155,358.35,65.834 +504156,0.25909,66.545 +504157,353.44,64.375 +504158,355.21,65.126 +504159,357.02,65.873 +504160,358.89,66.615 +504161,352.18,64.352 +504162,353.91,65.134 +504163,355.69,65.912 +504164,357.52,66.685 +504165,350.92,64.329 +504166,352.62,65.142 +504167,354.36,65.951 +504168,356.14,66.754 +504169,349.66,64.307 +504170,351.32,65.15 +504171,353.02,65.989 +504172,354.77,66.822 +504173,348.41,64.286 +504174,350.03,65.159 +504175,351.69,66.027 +504176,353.4,66.889 +504177,347.15,64.265 +504178,348.73,65.167 +504179,350.35,66.065 +504180,352.02,66.956 +504181,345.9,64.245 +504182,347.44,65.176 +504183,349.02,66.102 +504184,350.64,67.021 +504185,344.65,64.226 +504186,346.15,65.186 +504187,347.69,66.14 +504188,349.26,67.086 +504189,343.4,64.207 +504190,344.86,65.195 +504191,346.35,66.177 +504192,347.88,67.151 +504193,342.15,64.19 +504194,343.56,65.205 +504195,345.01,66.213 +504196,346.5,67.214 +504197,340.9,64.173 +504198,342.27,65.215 +504199,343.68,66.25 +504200,345.12,67.276 +504201,339.65,64.157 +504202,340.98,65.225 +504203,342.34,66.286 +504204,343.74,67.338 +504205,338.41,64.142 +504206,339.69,65.236 +504207,341.01,66.322 +504208,342.35,67.399 +504209,337.16,64.128 +504210,338.4,65.246 +504211,339.67,66.357 +504212,340.97,67.459 +504213,335.92,64.114 +504214,337.11,65.258 +504215,338.33,66.392 +504216,339.58,67.518 +504217,334.67,64.102 +504218,335.82,65.269 +504219,336.99,66.427 +504220,338.2,67.576 +504221,333.43,64.091 +504222,334.53,65.281 +504223,335.66,66.462 +504224,336.81,67.633 +504225,332.19,64.08 +504226,333.24,65.293 +504227,334.32,66.496 +504228,335.42,67.689 +504229,330.95,64.071 +504230,331.95,65.305 +504231,332.98,66.53 +504232,334.04,67.744 +504233,329.71,64.062 +504234,330.66,65.318 +504235,331.64,66.563 +504236,332.65,67.798 +504237,328.47,64.055 +504238,329.38,65.331 +504239,330.3,66.597 +504240,331.26,67.851 +504241,327.23,64.048 +504242,328.09,65.344 +504243,328.96,66.629 +504244,329.87,67.902 +504245,326,64.043 +504246,326.8,65.358 +504247,327.62,66.662 +504248,328.48,67.953 +504249,324.76,64.039 +504250,325.51,65.372 +504251,326.29,66.694 +504252,327.09,68.003 +504253,323.52,64.035 +504254,324.22,65.386 +504255,324.95,66.726 +504256,325.69,68.052 +504257,322.29,64.033 +504258,322.93,65.401 +504259,323.61,66.757 +504260,324.3,68.099 +504261,321.05,64.032 +504262,321.65,65.416 +504263,322.27,66.788 +504264,322.91,68.146 +504265,319.82,64.032 +504266,320.36,65.432 +504267,320.93,66.818 +504268,321.52,68.191 +504269,318.59,64.034 +504270,319.07,65.447 +504271,319.58,66.848 +504272,320.12,68.235 +504273,317.35,64.036 +504274,317.79,65.464 +504275,318.24,66.878 +504276,318.73,68.279 +504277,316.12,64.04 +504278,316.5,65.48 +504279,316.9,66.908 +504280,317.34,68.321 +504281,314.89,64.044 +504282,315.21,65.497 +504283,315.56,66.937 +504284,315.94,68.361 +504285,313.66,64.05 +504286,313.92,65.515 +504287,314.22,66.965 +504288,314.55,68.401 +504289,312.42,64.057 +504290,312.64,65.532 +504291,312.88,66.993 +504292,313.16,68.439 +504293,311.19,64.066 +504294,311.35,65.55 +504295,311.54,67.021 +504296,311.76,68.477 +504297,309.96,64.075 +504298,310.06,65.569 +504299,310.2,67.049 +504300,310.37,68.513 +504301,308.73,64.086 +504302,308.78,65.588 +504303,308.86,67.075 +504304,308.97,68.548 +504305,307.5,64.098 +504306,307.49,65.607 +504307,307.52,67.102 +504308,307.58,68.581 +504309,306.27,64.111 +504310,306.2,65.627 +504311,306.18,67.128 +504312,306.19,68.614 +504313,305.04,64.125 +504314,304.92,65.647 +504315,304.84,67.154 +504316,304.79,68.645 +504317,303.81,64.141 +504318,303.63,65.667 +504319,303.49,67.179 +504320,303.4,68.675 +504321,302.58,64.158 +504322,302.34,65.688 +504323,302.15,67.204 +504324,302,68.704 +504325,301.34,64.176 +504326,301.06,65.71 +504327,300.81,67.229 +504328,300.61,68.731 +504329,300.11,64.195 +504330,299.77,65.731 +504331,299.47,67.253 +504332,299.22,68.758 +504333,298.88,64.216 +504334,298.48,65.753 +504335,298.13,67.276 +504336,297.83,68.783 +504337,297.65,64.238 +504338,297.19,65.776 +504339,296.79,67.299 +504340,296.43,68.807 +504341,296.42,64.261 +504342,295.91,65.799 +504343,295.45,67.322 +504344,295.04,68.829 +504345,295.18,64.285 +504346,294.62,65.822 +504347,294.11,67.345 +504348,293.65,68.851 +504349,293.95,64.31 +504350,293.33,65.846 +504351,292.77,67.366 +504352,292.26,68.871 +504353,292.72,64.337 +504354,292.04,65.87 +504355,291.43,67.388 +504356,290.87,68.89 +504357,291.48,64.365 +504358,290.76,65.895 +504359,290.09,67.409 +504360,289.48,68.908 +504361,290.25,64.395 +504362,289.47,65.919 +504363,288.75,67.43 +504364,288.09,68.924 +504365,289.01,64.425 +504366,288.18,65.945 +504367,287.41,67.45 +504368,286.7,68.94 +504369,287.78,64.457 +504370,286.89,65.971 +504371,286.07,67.47 +504372,285.31,68.954 +504373,286.54,64.49 +504374,285.6,65.997 +504375,284.73,67.489 +504376,283.92,68.967 +504377,285.31,64.524 +504378,284.31,66.023 +504379,283.39,67.508 +504380,282.54,68.979 +504381,284.07,64.559 +504382,283.02,66.05 +504383,282.05,67.527 +504384,281.15,68.989 +504385,282.83,64.596 +504386,281.73,66.077 +504387,280.71,67.545 +504388,279.77,68.999 +504389,281.59,64.634 +504390,280.44,66.105 +504391,279.38,67.563 +504392,278.38,69.007 +504393,280.35,64.673 +504394,279.15,66.133 +504395,278.04,67.581 +504396,277,69.014 +504397,279.11,64.713 +504398,277.86,66.162 +504399,276.7,67.598 +504400,275.61,69.02 +504401,277.87,64.754 +504402,276.57,66.19 +504403,275.36,67.614 +504404,274.23,69.025 +504405,276.62,64.796 +504406,275.28,66.22 +504407,274.03,67.631 +504408,272.85,69.028 +504409,275.38,64.84 +504410,273.99,66.249 +504411,272.69,67.646 +504412,271.47,69.031 +504413,274.14,64.885 +504414,272.7,66.279 +504415,271.35,67.662 +504416,270.09,69.032 +504417,272.89,64.93 +504418,271.41,66.309 +504419,270.02,67.677 +504420,268.71,69.032 +504421,271.64,64.977 +504422,270.11,66.34 +504423,268.68,67.692 +504424,267.34,69.031 +504425,270.39,65.025 +504426,268.82,66.371 +504427,267.34,67.706 +504428,265.96,69.03 +504429,269.14,65.074 +504430,267.53,66.402 +504431,266.01,67.72 +504432,264.58,69.027 +504433,267.89,65.125 +504434,266.23,66.434 +504435,264.67,67.734 +504436,263.21,69.022 +504437,266.64,65.176 +504438,264.94,66.466 +504439,263.34,67.747 +504440,261.84,69.017 +504441,265.39,65.228 +504442,263.64,66.498 +504443,262.01,67.76 +504444,260.47,69.011 +504445,264.13,65.281 +504446,262.35,66.531 +504447,260.67,67.773 +504448,259.1,69.004 +504449,262.88,65.335 +504450,261.05,66.564 +504451,259.34,67.785 +504452,257.73,68.996 +504453,261.62,65.39 +504454,259.76,66.597 +504455,258.01,67.797 +504456,256.36,68.987 +504457,260.36,65.447 +504458,258.46,66.631 +504459,256.67,67.808 +504460,254.99,68.977 +504461,259.1,65.504 +504462,257.16,66.665 +504463,255.34,67.82 +504464,253.63,68.966 +504465,257.84,65.562 +504466,255.86,66.699 +504467,254.01,67.831 +504468,252.26,68.954 +504469,256.57,65.62 +504470,254.57,66.734 +504471,252.68,67.841 +504472,250.9,68.941 +504473,255.31,65.68 +504474,253.27,66.769 +504475,251.35,67.852 +504476,249.54,68.928 +504477,254.04,65.741 +504478,251.97,66.804 +504479,250.02,67.862 +504480,248.18,68.913 +504481,252.77,65.802 +504482,250.67,66.839 +504483,248.69,67.871 +504484,246.82,68.898 +504485,251.5,65.864 +504486,249.37,66.875 +504487,247.36,67.881 +504488,245.46,68.881 +504489,250.23,65.927 +504490,248.07,66.911 +504491,246.03,67.89 +504492,244.11,68.864 +504493,248.96,65.991 +504494,246.77,66.947 +504495,244.7,67.899 +504496,242.75,68.846 +504497,247.68,66.056 +504498,245.46,66.983 +504499,243.38,67.908 +504500,241.4,68.828 +504501,246.41,66.121 +504502,244.16,67.02 +504503,242.05,67.916 +504504,240.05,68.808 +504505,245.13,66.187 +504506,242.86,67.057 +504507,240.72,67.924 +504508,238.7,68.788 +504509,243.85,66.254 +504510,241.56,67.094 +504511,239.4,67.932 +504512,237.35,68.767 +504513,242.56,66.321 +504514,240.25,67.131 +504515,238.07,67.94 +504516,236,68.746 +504517,241.28,66.389 +504518,238.95,67.169 +504519,236.74,67.947 +504520,234.66,68.724 +504521,239.99,66.457 +504522,237.64,67.206 +504523,235.42,67.955 +504524,233.31,68.701 +504525,238.71,66.526 +504526,236.34,67.244 +504527,234.1,67.962 +504528,231.97,68.678 +504529,237.42,66.596 +504530,235.03,67.282 +504531,232.77,67.969 +504532,230.63,68.654 +504533,236.13,66.666 +504534,233.72,67.32 +504535,231.45,67.975 +504536,229.29,68.629 +504537,234.83,66.736 +504538,232.41,67.359 +504539,230.13,67.982 +504540,227.95,68.604 +504541,233.54,66.808 +504542,231.11,67.397 +504543,228.81,67.988 +504544,226.62,68.579 +504545,232.24,66.879 +504546,229.8,67.436 +504547,227.48,67.994 +504548,225.29,68.553 +504549,230.94,66.951 +504550,228.49,67.475 +504551,226.16,68 +504552,223.95,68.526 +504553,229.64,67.023 +504554,227.18,67.514 +504555,224.84,68.006 +504556,222.62,68.499 +504557,228.34,67.096 +504558,225.87,67.553 +504559,223.52,68.012 +504560,221.29,68.472 +504561,227.03,67.169 +504562,224.55,67.592 +504563,222.2,68.017 +504564,219.97,68.444 +504565,225.73,67.242 +504566,223.24,67.631 +504567,220.89,68.023 +504568,218.64,68.416 +504569,224.42,67.316 +504570,221.93,67.671 +504571,219.57,68.028 +504572,217.32,68.388 +504573,223.11,67.389 +504574,220.62,67.71 +504575,218.25,68.034 +504576,215.99,68.359 +504577,221.79,67.463 +504578,219.3,67.75 +504579,216.93,68.039 +504580,214.67,68.33 +504581,220.48,67.538 +504582,217.99,67.789 +504583,215.62,68.044 +504584,213.36,68.301 +504585,219.16,67.612 +504586,216.67,67.829 +504587,214.3,68.049 +504588,212.04,68.272 +504589,217.85,67.686 +504590,215.36,67.868 +504591,212.99,68.054 +504592,210.72,68.242 +504593,216.53,67.761 +504594,214.04,67.908 +504595,211.67,68.059 +504596,209.41,68.213 +504597,215.2,67.836 +504598,212.72,67.948 +504599,210.36,68.064 +504600,208.1,68.183 +504601,213.88,67.91 +504602,211.4,67.988 +504603,209.05,68.068 +504604,206.79,68.153 +504605,212.55,67.985 +504606,210.09,68.027 +504607,207.73,68.073 +504608,205.48,68.123 +504609,211.23,68.06 +504610,208.77,68.067 +504611,206.42,68.078 +504612,204.17,68.093 +504613,209.9,68.135 +504614,207.45,68.107 +504615,205.11,68.083 +504616,202.87,68.063 +504617,208.57,68.209 +504618,206.13,68.146 +504619,203.8,68.088 +504620,201.56,68.032 +504621,207.23,68.284 +504622,204.81,68.186 +504623,202.49,68.092 +504624,200.26,68.002 +504625,205.9,68.358 +504626,203.49,68.226 +504627,201.18,68.097 +504628,198.96,67.972 +504629,204.56,68.432 +504630,202.16,68.265 +504631,199.87,68.102 +504632,197.66,67.943 +504633,203.22,68.506 +504634,200.84,68.305 +504635,198.56,68.107 +504636,196.37,67.913 +504637,201.88,68.58 +504638,199.52,68.344 +504639,197.25,68.112 +504640,195.07,67.883 +504641,200.54,68.654 +504642,198.19,68.384 +504643,195.94,68.117 +504644,193.78,67.854 +504645,199.2,68.727 +504646,196.87,68.423 +504647,194.64,68.122 +504648,192.49,67.824 +504649,197.85,68.8 +504650,195.54,68.462 +504651,193.33,68.127 +504652,191.2,67.795 +504653,196.5,68.873 +504654,194.22,68.501 +504655,192.02,68.132 +504656,189.91,67.767 +504657,195.15,68.946 +504658,192.89,68.54 +504659,190.72,68.138 +504660,188.62,67.738 +504661,193.8,69.018 +504662,191.57,68.579 +504663,189.41,68.143 +504664,187.34,67.71 +504665,192.45,69.089 +504666,190.24,68.618 +504667,188.11,68.149 +504668,186.05,67.682 +504669,191.1,69.161 +504670,188.91,68.656 +504671,186.81,68.154 +504672,184.77,67.655 +504673,189.74,69.231 +504674,187.58,68.695 +504675,185.5,68.16 +504676,183.49,67.628 +504677,188.38,69.302 +504678,186.25,68.733 +504679,184.2,68.166 +504680,182.21,67.601 +504681,187.02,69.372 +504682,184.92,68.771 +504683,182.9,68.172 +504684,180.94,67.575 +504685,185.66,69.441 +504686,183.59,68.809 +504687,181.6,68.178 +504688,179.66,67.549 +504689,184.3,69.51 +504690,182.26,68.847 +504691,180.29,68.185 +504692,178.39,67.524 +504693,182.94,69.578 +504694,180.93,68.884 +504695,178.99,68.191 +504696,177.11,67.5 +504697,181.57,69.646 +504698,179.6,68.922 +504699,177.69,68.198 +504700,175.84,67.476 +504701,180.21,69.713 +504702,178.27,68.959 +504703,176.39,68.205 +504704,174.57,67.452 +504705,178.84,69.779 +504706,176.94,68.996 +504707,175.09,68.212 +504708,173.3,67.429 +504709,177.47,69.845 +504710,175.6,69.033 +504711,173.79,68.22 +504712,172.04,67.407 +504713,176.1,69.91 +504714,174.27,69.069 +504715,172.5,68.227 +504716,170.77,67.385 +504717,174.73,69.974 +504718,172.94,69.105 +504719,171.2,68.235 +504720,169.51,67.364 +504721,173.36,70.038 +504722,171.6,69.141 +504723,169.9,68.243 +504724,168.24,67.344 +504725,171.98,70.101 +504726,170.27,69.177 +504727,168.6,68.251 +504728,166.98,67.325 +504729,170.61,70.163 +504730,168.93,69.213 +504731,167.3,68.26 +504732,165.72,67.306 +504733,169.23,70.224 +504734,167.6,69.248 +504735,166.01,68.269 +504736,164.46,67.288 +504737,167.85,70.284 +504738,166.26,69.283 +504739,164.71,68.278 +504740,163.21,67.271 +504741,166.48,70.344 +504742,164.92,69.317 +504743,163.42,68.287 +504744,161.95,67.254 +504745,165.1,70.403 +504746,163.59,69.352 +504747,162.12,68.297 +504748,160.69,67.239 +504749,163.72,70.461 +504750,162.25,69.386 +504751,160.83,68.307 +504752,159.44,67.224 +504753,162.33,70.518 +504754,160.91,69.42 +504755,159.53,68.317 +504756,158.19,67.21 +504757,160.95,70.574 +504758,159.57,69.453 +504759,158.24,68.327 +504760,156.93,67.198 +504761,159.57,70.629 +504762,158.24,69.486 +504763,156.94,68.338 +504764,155.68,67.186 +504765,158.18,70.683 +504766,156.9,69.519 +504767,155.65,68.349 +504768,154.43,67.175 +504769,156.8,70.737 +504770,155.56,69.552 +504771,154.36,68.36 +504772,153.18,67.164 +504773,155.41,70.789 +504774,154.22,69.584 +504775,153.06,68.372 +504776,151.94,67.155 +504777,154.03,70.84 +504778,152.88,69.616 +504779,151.77,68.384 +504780,150.69,67.147 +504781,152.64,70.891 +504782,151.54,69.647 +504783,150.48,68.397 +504784,149.44,67.14 +504785,151.25,70.94 +504786,150.2,69.678 +504787,149.18,68.409 +504788,148.2,67.134 +504789,149.86,70.988 +504790,148.86,69.709 +504791,147.89,68.422 +504792,146.95,67.129 +504793,148.47,71.035 +504794,147.52,69.74 +504795,146.6,68.436 +504796,145.71,67.125 +504797,147.08,71.082 +504798,146.18,69.77 +504799,145.31,68.449 +504800,144.47,67.122 +504801,145.69,71.127 +504802,144.84,69.8 +504803,144.02,68.464 +504804,143.22,67.12 +504805,144.3,71.171 +504806,143.5,69.829 +504807,142.73,68.478 +504808,141.98,67.119 +504809,142.91,71.214 +504810,142.16,69.858 +504811,141.43,68.493 +504812,140.74,67.12 +504813,141.51,71.255 +504814,140.81,69.887 +504815,140.14,68.508 +504816,139.5,67.121 +504817,140.12,71.296 +504818,139.47,69.915 +504819,138.85,68.524 +504820,138.26,67.124 +504821,138.73,71.336 +504822,138.13,69.943 +504823,137.56,68.54 +504824,137.02,67.128 +504825,137.34,71.374 +504826,136.79,69.97 +504827,136.27,68.556 +504828,135.78,67.132 +504829,135.94,71.412 +504830,135.45,69.997 +504831,134.98,68.573 +504832,134.54,67.138 +504833,134.55,71.448 +504834,134.11,70.024 +504835,133.69,68.59 +504836,133.31,67.146 +504837,133.15,71.483 +504838,132.76,70.05 +504839,132.4,68.607 +504840,132.07,67.154 +504841,131.76,71.517 +504842,131.42,70.076 +504843,131.11,68.625 +504844,130.83,67.164 +504845,130.37,71.549 +504846,130.08,70.102 +504847,129.82,68.643 +504848,129.59,67.174 +504849,128.97,71.581 +504850,128.74,70.127 +504851,128.53,68.662 +504852,128.36,67.186 +504853,127.58,71.611 +504854,127.39,70.152 +504855,127.24,68.681 +504856,127.12,67.2 +504857,126.18,71.64 +504858,126.05,70.176 +504859,125.95,68.7 +504860,125.88,67.214 +504861,124.79,71.668 +504862,124.71,70.2 +504863,124.66,68.72 +504864,124.65,67.23 +504865,123.39,71.695 +504866,123.37,70.224 +504867,123.37,68.74 +504868,123.41,67.246 +504869,122,71.721 +504870,122.02,70.247 +504871,122.08,68.761 +504872,122.17,67.265 +504873,120.61,71.745 +504874,120.68,70.269 +504875,120.79,68.782 +504876,120.94,67.284 +504877,119.21,71.769 +504878,119.34,70.292 +504879,119.5,68.803 +504880,119.7,67.304 +504881,117.82,71.791 +504882,118,70.314 +504883,118.21,68.825 +504884,118.46,67.326 +504885,116.43,71.812 +504886,116.65,70.335 +504887,116.92,68.847 +504888,117.23,67.349 +504889,115.03,71.831 +504890,115.31,70.356 +504891,115.63,68.87 +504892,115.99,67.373 +504893,113.64,71.85 +504894,113.97,70.377 +504895,114.34,68.893 +504896,114.75,67.398 +504897,112.25,71.867 +504898,112.63,70.397 +504899,113.05,68.916 +504900,113.51,67.425 +504901,110.85,71.883 +504902,111.28,70.417 +504903,111.76,68.94 +504904,112.28,67.453 +504905,109.46,71.898 +504906,109.94,70.437 +504907,110.47,68.964 +504908,111.04,67.482 +504909,108.07,71.912 +504910,108.6,70.456 +504911,109.18,68.989 +504912,109.8,67.512 +504913,106.68,71.925 +504914,107.26,70.475 +504915,107.88,69.014 +504916,108.56,67.544 +504917,105.29,71.936 +504918,105.92,70.493 +504919,106.59,69.039 +504920,107.32,67.576 +504921,103.9,71.946 +504922,104.58,70.511 +504923,105.3,69.065 +504924,106.08,67.61 +504925,102.51,71.956 +504926,103.23,70.528 +504927,104.01,69.091 +504928,104.84,67.645 +504929,101.12,71.964 +504930,101.89,70.546 +504931,102.72,69.118 +504932,103.6,67.681 +504933,99.736,71.97 +504934,100.55,70.562 +504935,101.43,69.145 +504936,102.36,67.719 +504937,98.349,71.976 +504938,99.212,70.579 +504939,100.13,69.172 +504940,101.12,67.757 +504941,96.963,71.981 +504942,97.872,70.595 +504943,98.84,69.2 +504944,99.872,67.797 +504945,95.577,71.984 +504946,96.532,70.61 +504947,97.547,69.228 +504948,98.628,67.838 +504949,94.192,71.987 +504950,95.192,70.626 +504951,96.254,69.256 +504952,97.383,67.879 +504953,92.808,71.988 +504954,93.853,70.641 +504955,94.96,69.285 +504956,96.137,67.923 +504957,91.425,71.988 +504958,92.513,70.655 +504959,93.666,69.314 +504960,94.891,67.967 +504961,90.043,71.987 +504962,91.174,70.669 +504963,92.372,69.344 +504964,93.643,68.012 +504965,88.662,71.985 +504966,89.836,70.683 +504967,91.078,69.373 +504968,92.395,68.058 +504969,87.282,71.982 +504970,88.497,70.696 +504971,89.783,69.404 +504972,91.145,68.106 +504973,85.902,71.978 +504974,87.159,70.71 +504975,88.488,69.434 +504976,89.895,68.154 +504977,84.524,71.973 +504978,85.821,70.722 +504979,87.192,69.465 +504980,88.643,68.204 +504981,83.147,71.967 +504982,84.484,70.735 +504983,85.896,69.496 +504984,87.39,68.254 +504985,81.771,71.96 +504986,83.147,70.747 +504987,84.6,69.528 +504988,86.136,68.306 +504989,80.395,71.952 +504990,81.81,70.759 +504991,83.303,69.56 +504992,84.881,68.358 +504993,79.021,71.943 +504994,80.474,70.77 +504995,82.006,69.592 +504996,83.625,68.412 +504997,77.649,71.933 +504998,79.138,70.781 +504999,80.708,69.625 +505000,82.367,68.466 +505001,76.277,71.923 +505002,77.803,70.792 +505003,79.41,69.657 +505004,81.109,68.521 +505005,74.906,71.911 +505006,76.467,70.802 +505007,78.112,69.691 +505008,79.848,68.578 +505009,73.537,71.898 +505010,75.133,70.812 +505011,76.813,69.724 +505012,78.587,68.635 +505013,72.169,71.885 +505014,73.798,70.822 +505015,75.514,69.758 +505016,77.324,68.693 +505017,70.802,71.87 +505018,72.465,70.832 +505019,74.214,69.792 +505020,76.06,68.752 +505021,69.437,71.855 +505022,71.131,70.841 +505023,72.914,69.826 +505024,74.794,68.811 +505025,68.073,71.839 +505026,69.798,70.85 +505027,71.613,69.861 +505028,73.527,68.872 +505029,66.71,71.822 +505030,68.465,70.859 +505031,70.311,69.896 +505032,72.259,68.933 +505033,65.348,71.805 +505034,67.133,70.868 +505035,69.01,69.931 +505036,70.988,68.995 +505037,63.988,71.786 +505038,65.802,70.876 +505039,67.707,69.966 +505040,69.717,69.058 +505041,62.629,71.767 +505042,64.47,70.884 +505043,66.405,70.001 +505044,68.444,69.122 +505045,61.272,71.747 +505046,63.14,70.892 +505047,65.101,70.037 +505048,67.169,69.186 +505049,59.916,71.727 +505050,61.809,70.899 +505051,63.798,70.073 +505052,65.892,69.251 +505053,58.562,71.706 +505054,60.48,70.907 +505055,62.493,70.11 +505056,64.614,69.317 +505057,57.209,71.684 +505058,59.15,70.914 +505059,61.188,70.146 +505060,63.335,69.383 +505061,55.857,71.661 +505062,57.822,70.921 +505063,59.883,70.183 +505064,62.053,69.45 +505065,54.507,71.638 +505066,56.493,70.927 +505067,58.577,70.22 +505068,60.77,69.517 +505069,53.159,71.615 +505070,55.166,70.934 +505071,57.27,70.257 +505072,59.485,69.585 +505073,51.812,71.591 +505074,53.838,70.94 +505075,55.963,70.294 +505076,58.199,69.653 +505077,50.467,71.566 +505078,52.512,70.946 +505079,54.655,70.331 +505080,56.911,69.722 +505081,49.123,71.541 +505082,51.186,70.952 +505083,53.347,70.369 +505084,55.621,69.792 +505085,47.78,71.515 +505086,49.86,70.958 +505087,52.038,70.406 +505088,54.329,69.862 +505089,46.44,71.489 +505090,48.535,70.964 +505091,50.729,70.444 +505092,53.036,69.932 +505093,45.101,71.462 +505094,47.21,70.969 +505095,49.419,70.482 +505096,51.74,70.003 +505097,43.763,71.435 +505098,45.886,70.975 +505099,48.108,70.52 +505100,50.443,70.074 +505101,42.427,71.408 +505102,44.563,70.98 +505103,46.797,70.558 +505104,49.144,70.145 +505105,41.093,71.38 +505106,43.24,70.985 +505107,45.485,70.597 +505108,47.844,70.217 +505109,39.76,71.352 +505110,41.917,70.99 +505111,44.173,70.635 +505112,46.541,70.289 +505113,38.429,71.324 +505114,40.595,70.995 +505115,42.86,70.674 +505116,45.237,70.361 +505117,37.1,71.295 +505118,39.274,71 +505119,41.546,70.712 +505120,43.931,70.434 +505121,35.772,71.266 +505122,37.953,71.005 +505123,40.232,70.751 +505124,42.623,70.507 +505125,34.446,71.237 +505126,36.633,71.009 +505127,38.917,70.79 +505128,41.313,70.58 +505129,33.122,71.208 +505130,35.313,71.014 +505131,37.602,70.829 +505132,40.001,70.653 +505133,31.799,71.179 +505134,33.994,71.019 +505135,36.286,70.867 +505136,38.687,70.726 +505137,30.478,71.149 +505138,32.676,71.023 +505139,34.969,70.906 +505140,37.372,70.799 +505141,29.158,71.119 +505142,31.358,71.028 +505143,33.652,70.945 +505144,36.055,70.872 +505145,27.841,71.09 +505146,30.04,71.032 +505147,32.334,70.984 +505148,34.736,70.946 +505149,26.525,71.06 +505150,28.723,71.037 +505151,31.015,71.023 +505152,33.415,71.019 +505153,25.21,71.03 +505154,27.407,71.041 +505155,29.696,71.062 +505156,32.092,71.093 +505157,23.897,71 +505158,26.091,71.046 +505159,28.377,71.101 +505160,30.767,71.166 +505161,22.586,70.97 +505162,24.776,71.05 +505163,27.056,71.14 +505164,29.441,71.239 +505165,21.277,70.94 +505166,23.462,71.055 +505167,25.735,71.178 +505168,28.112,71.312 +505169,19.969,70.911 +505170,22.148,71.059 +505171,24.414,71.217 +505172,26.782,71.385 +505173,18.663,70.881 +505174,20.834,71.064 +505175,23.092,71.256 +505176,25.45,71.458 +505177,17.359,70.852 +505178,19.521,71.069 +505179,21.769,71.295 +505180,24.117,71.531 +505181,16.056,70.822 +505182,18.209,71.073 +505183,20.446,71.333 +505184,22.781,71.603 +505185,14.755,70.793 +505186,16.897,71.078 +505187,19.122,71.372 +505188,21.444,71.676 +505189,13.455,70.764 +505190,15.585,71.083 +505191,17.798,71.41 +505192,20.105,71.748 +505193,12.157,70.736 +505194,14.275,71.088 +505195,16.473,71.449 +505196,18.764,71.819 +505197,10.861,70.708 +505198,12.964,71.093 +505199,15.147,71.487 +505200,17.422,71.891 +505201,9.5662,70.68 +505202,11.655,71.098 +505203,13.821,71.525 +505204,16.078,71.962 +505205,8.2731,70.652 +505206,10.345,71.103 +505207,12.494,71.563 +505208,14.732,72.032 +505209,6.9816,70.624 +505210,9.0367,71.109 +505211,11.167,71.601 +505212,13.384,72.103 +505213,5.6917,70.597 +505214,7.7286,71.114 +505215,9.839,71.639 +505216,12.035,72.172 +505217,4.4033,70.571 +505218,6.4209,71.12 +505219,8.5106,71.677 +505220,10.684,72.242 +505221,3.1165,70.545 +505222,5.1138,71.126 +505223,7.1817,71.714 +505224,9.3318,72.311 +505225,1.8312,70.519 +505226,3.8071,71.132 +505227,5.8522,71.752 +505228,7.9777,72.379 +505229,0.54747,70.494 +505230,2.501,71.138 +505231,4.5222,71.789 +505232,6.6221,72.447 +505233,359.27,70.469 +505234,1.1953,71.144 +505235,3.1916,71.826 +505236,5.2649,72.514 +505237,357.98,70.445 +505238,359.89,71.15 +505239,1.8606,71.863 +505240,3.9062,72.581 +505241,356.71,70.422 +505242,358.59,71.157 +505243,0.52903,71.899 +505244,2.546,72.647 +505245,355.43,70.399 +505246,357.28,71.164 +505247,359.2,71.936 +505248,1.1843,72.713 +505249,354.15,70.376 +505250,355.98,71.171 +505251,357.86,71.972 +505252,359.82,72.778 +505253,352.88,70.355 +505254,354.67,71.178 +505255,356.53,72.008 +505256,358.46,72.842 +505257,351.6,70.334 +505258,353.37,71.186 +505259,355.2,72.043 +505260,357.09,72.906 +505261,350.33,70.313 +505262,352.07,71.194 +505263,353.86,72.079 +505264,355.72,72.969 +505265,349.06,70.294 +505266,350.77,71.202 +505267,352.53,72.114 +505268,354.35,73.031 +505269,347.79,70.275 +505270,349.47,71.21 +505271,351.19,72.149 +505272,352.98,73.092 +505273,346.52,70.257 +505274,348.16,71.218 +505275,349.86,72.184 +505276,351.61,73.153 +505277,345.25,70.239 +505278,346.86,71.227 +505279,348.52,72.219 +505280,350.24,73.213 +505281,343.99,70.223 +505282,345.56,71.236 +505283,347.19,72.253 +505284,348.87,73.272 +505285,342.72,70.207 +505286,344.26,71.245 +505287,345.85,72.287 +505288,347.49,73.33 +505289,341.46,70.192 +505290,342.96,71.255 +505291,344.51,72.32 +505292,346.12,73.387 +505293,340.2,70.178 +505294,341.66,71.265 +505295,343.18,72.354 +505296,344.74,73.444 +505297,338.94,70.165 +505298,340.37,71.275 +505299,341.84,72.387 +505300,343.36,73.5 +505301,337.68,70.152 +505302,339.07,71.285 +505303,340.5,72.42 +505304,341.98,73.554 +505305,336.42,70.141 +505306,337.77,71.296 +505307,339.16,72.452 +505308,340.6,73.608 +505309,335.16,70.131 +505310,336.47,71.307 +505311,337.82,72.484 +505312,339.22,73.661 +505313,333.9,70.121 +505314,335.17,71.319 +505315,336.48,72.516 +505316,337.84,73.713 +505317,332.65,70.113 +505318,333.88,71.33 +505319,335.14,72.548 +505320,336.45,73.764 +505321,331.39,70.105 +505322,332.58,71.342 +505323,333.8,72.579 +505324,335.07,73.814 +505325,330.14,70.099 +505326,331.28,71.355 +505327,332.46,72.61 +505328,333.68,73.863 +505329,328.89,70.093 +505330,329.99,71.368 +505331,331.12,72.641 +505332,332.3,73.911 +505333,327.64,70.089 +505334,328.69,71.381 +505335,329.78,72.671 +505336,330.91,73.958 +505337,326.38,70.085 +505338,327.4,71.394 +505339,328.44,72.701 +505340,329.52,74.004 +505341,325.13,70.083 +505342,326.1,71.408 +505343,327.1,72.73 +505344,328.14,74.049 +505345,323.88,70.082 +505346,324.8,71.422 +505347,325.76,72.759 +505348,326.75,74.093 +505349,322.64,70.082 +505350,323.51,71.436 +505351,324.42,72.788 +505352,325.36,74.135 +505353,321.39,70.083 +505354,322.21,71.451 +505355,323.07,72.816 +505356,323.97,74.177 +505357,320.14,70.085 +505358,320.92,71.467 +505359,321.73,72.845 +505360,322.58,74.218 +505361,318.89,70.088 +505362,319.63,71.482 +505363,320.39,72.872 +505364,321.19,74.257 +505365,317.65,70.093 +505366,318.33,71.498 +505367,319.05,72.9 +505368,319.79,74.295 +505369,316.4,70.098 +505370,317.04,71.515 +505371,317.7,72.927 +505372,318.4,74.333 +505373,315.16,70.105 +505374,315.74,71.531 +505375,316.36,72.953 +505376,317.01,74.369 +505377,313.91,70.113 +505378,314.45,71.548 +505379,315.02,72.979 +505380,315.62,74.404 +505381,312.67,70.122 +505382,313.16,71.566 +505383,313.67,73.005 +505384,314.22,74.438 +505385,311.42,70.132 +505386,311.86,71.584 +505387,312.33,73.031 +505388,312.83,74.471 +505389,310.18,70.143 +505390,310.57,71.602 +505391,310.99,73.056 +505392,311.44,74.502 +505393,308.94,70.156 +505394,309.27,71.621 +505395,309.64,73.08 +505396,310.04,74.533 +505397,307.69,70.17 +505398,307.98,71.64 +505399,308.3,73.105 +505400,308.65,74.562 +505401,306.45,70.185 +505402,306.69,71.66 +505403,306.96,73.128 +505404,307.25,74.59 +505405,305.21,70.201 +505406,305.39,71.679 +505407,305.61,73.152 +505408,305.86,74.617 +505409,303.97,70.218 +505410,304.1,71.7 +505411,304.27,73.175 +505412,304.47,74.643 +505413,302.73,70.237 +505414,302.81,71.72 +505415,302.92,73.198 +505416,303.07,74.667 +505417,301.48,70.257 +505418,301.52,71.742 +505419,301.58,73.22 +505420,301.68,74.691 +505421,300.24,70.278 +505422,300.22,71.763 +505423,300.24,73.242 +505424,300.28,74.713 +505425,299,70.3 +505426,298.93,71.785 +505427,298.89,73.263 +505428,298.89,74.734 +505429,297.76,70.324 +505430,297.64,71.807 +505431,297.55,73.285 +505432,297.49,74.754 +505433,296.52,70.348 +505434,296.34,71.83 +505435,296.2,73.305 +505436,296.1,74.773 +505437,295.27,70.374 +505438,295.05,71.853 +505439,294.86,73.326 +505440,294.7,74.79 +505441,294.03,70.402 +505442,293.76,71.877 +505443,293.52,73.346 +505444,293.31,74.807 +505445,292.79,70.43 +505446,292.46,71.901 +505447,292.17,73.365 +505448,291.92,74.822 +505449,291.55,70.46 +505450,291.17,71.925 +505451,290.83,73.384 +505452,290.52,74.836 +505453,290.3,70.49 +505454,289.87,71.95 +505455,289.48,73.403 +505456,289.13,74.849 +505457,289.06,70.522 +505458,288.58,71.975 +505459,288.14,73.421 +505460,287.74,74.861 +505461,287.82,70.556 +505462,287.29,72 +505463,286.8,73.439 +505464,286.35,74.871 +505465,286.57,70.59 +505466,285.99,72.026 +505467,285.45,73.457 +505468,284.96,74.881 +505469,285.33,70.626 +505470,284.7,72.053 +505471,284.11,73.474 +505472,283.56,74.889 +505473,284.09,70.662 +505474,283.4,72.079 +505475,282.77,73.491 +505476,282.17,74.896 +505477,282.84,70.7 +505478,282.11,72.106 +505479,281.42,73.508 +505480,280.78,74.902 +505481,281.59,70.739 +505482,280.81,72.134 +505483,280.08,73.524 +505484,279.39,74.907 +505485,280.35,70.78 +505486,279.52,72.162 +505487,278.74,73.539 +505488,278.01,74.911 +505489,279.1,70.821 +505490,278.22,72.19 +505491,277.4,73.555 +505492,276.62,74.914 +505493,277.85,70.863 +505494,276.93,72.218 +505495,276.05,73.57 +505496,275.23,74.916 +505497,276.61,70.907 +505498,275.63,72.247 +505499,274.71,73.584 +505500,273.84,74.916 +505501,275.36,70.952 +505502,274.34,72.277 +505503,273.37,73.599 +505504,272.46,74.916 +505505,274.11,70.997 +505506,273.04,72.306 +505507,272.03,73.613 +505508,271.07,74.915 +505509,272.86,71.044 +505510,271.74,72.336 +505511,270.69,73.626 +505512,269.69,74.912 +505513,271.6,71.092 +505514,270.45,72.367 +505515,269.35,73.64 +505516,268.3,74.909 +505517,270.35,71.141 +505518,269.15,72.398 +505519,268.01,73.652 +505520,266.92,74.904 +505521,269.1,71.191 +505522,267.85,72.429 +505523,266.67,73.665 +505524,265.54,74.898 +505525,267.84,71.242 +505526,266.55,72.46 +505527,265.33,73.677 +505528,264.16,74.892 +505529,266.59,71.294 +505530,265.26,72.492 +505531,263.99,73.689 +505532,262.78,74.884 +505533,265.33,71.347 +505534,263.96,72.524 +505535,262.65,73.701 +505536,261.4,74.876 +505537,264.08,71.401 +505538,262.66,72.556 +505539,261.31,73.712 +505540,260.02,74.867 +505541,262.82,71.456 +505542,261.36,72.589 +505543,259.97,73.723 +505544,258.64,74.856 +505545,261.56,71.512 +505546,260.06,72.622 +505547,258.63,73.734 +505548,257.27,74.845 +505549,260.3,71.569 +505550,258.76,72.655 +505551,257.29,73.744 +505552,255.89,74.833 +505553,259.04,71.626 +505554,257.46,72.689 +505555,255.95,73.754 +505556,254.52,74.82 +505557,257.77,71.685 +505558,256.16,72.723 +505559,254.62,73.764 +505560,253.14,74.806 +505561,256.51,71.744 +505562,254.86,72.757 +505563,253.28,73.773 +505564,251.77,74.791 +505565,255.24,71.805 +505566,253.56,72.792 +505567,251.94,73.783 +505568,250.4,74.776 +505569,253.98,71.866 +505570,252.25,72.826 +505571,250.61,73.792 +505572,249.03,74.76 +505573,252.71,71.927 +505574,250.95,72.861 +505575,249.27,73.8 +505576,247.67,74.742 +505577,251.44,71.99 +505578,249.65,72.897 +505579,247.94,73.809 +505580,246.3,74.725 +505581,250.17,72.053 +505582,248.34,72.932 +505583,246.6,73.817 +505584,244.93,74.706 +505585,248.9,72.117 +505586,247.04,72.968 +505587,245.27,73.825 +505588,243.57,74.687 +505589,247.62,72.182 +505590,245.74,73.004 +505591,243.93,73.833 +505592,242.21,74.667 +505593,246.35,72.247 +505594,244.43,73.04 +505595,242.6,73.84 +505596,240.85,74.646 +505597,245.07,72.313 +505598,243.12,73.077 +505599,241.27,73.848 +505600,239.49,74.625 +505601,243.79,72.38 +505602,241.82,73.113 +505603,239.93,73.855 +505604,238.13,74.603 +505605,242.51,72.447 +505606,240.51,73.15 +505607,238.6,73.862 +505608,236.77,74.58 +505609,241.23,72.515 +505610,239.21,73.187 +505611,237.27,73.869 +505612,235.41,74.557 +505613,239.95,72.584 +505614,237.9,73.224 +505615,235.94,73.875 +505616,234.06,74.534 +505617,238.66,72.653 +505618,236.59,73.262 +505619,234.61,73.882 +505620,232.71,74.509 +505621,237.38,72.722 +505622,235.28,73.299 +505623,233.28,73.888 +505624,231.35,74.485 +505625,236.09,72.792 +505626,233.97,73.337 +505627,231.95,73.894 +505628,230,74.459 +505629,234.8,72.862 +505630,232.66,73.375 +505631,230.62,73.9 +505632,228.66,74.434 +505633,233.51,72.933 +505634,231.35,73.413 +505635,229.29,73.906 +505636,227.31,74.408 +505637,232.22,73.004 +505638,230.04,73.451 +505639,227.96,73.911 +505640,225.96,74.381 +505641,230.92,73.076 +505642,228.73,73.49 +505643,226.63,73.917 +505644,224.62,74.354 +505645,229.63,73.147 +505646,227.42,73.528 +505647,225.3,73.922 +505648,223.28,74.327 +505649,228.33,73.219 +505650,226.11,73.567 +505651,223.98,73.927 +505652,221.94,74.299 +505653,227.03,73.292 +505654,224.79,73.605 +505655,222.65,73.933 +505656,220.6,74.271 +505657,225.73,73.365 +505658,223.48,73.644 +505659,221.33,73.938 +505660,219.26,74.243 +505661,224.43,73.438 +505662,222.16,73.683 +505663,220,73.943 +505664,217.92,74.215 +505665,223.12,73.511 +505666,220.85,73.722 +505667,218.68,73.948 +505668,216.59,74.186 +505669,221.82,73.584 +505670,219.53,73.761 +505671,217.35,73.953 +505672,215.25,74.157 +505673,220.51,73.657 +505674,218.22,73.8 +505675,216.03,73.957 +505676,213.92,74.128 +505677,219.2,73.731 +505678,216.9,73.839 +505679,214.7,73.962 +505680,212.59,74.099 +505681,217.89,73.804 +505682,215.59,73.878 +505683,213.38,73.967 +505684,211.26,74.07 +505685,216.57,73.878 +505686,214.27,73.917 +505687,212.06,73.972 +505688,209.94,74.04 +505689,215.26,73.952 +505690,212.95,73.956 +505691,210.74,73.977 +505692,208.61,74.011 +505693,213.94,74.026 +505694,211.63,73.995 +505695,209.42,73.981 +505696,207.29,73.981 +505697,212.62,74.099 +505698,210.31,74.035 +505699,208.1,73.986 +505700,205.97,73.952 +505701,211.3,74.173 +505702,208.99,74.074 +505703,206.78,73.991 +505704,204.65,73.922 +505705,209.98,74.246 +505706,207.67,74.113 +505707,205.46,73.996 +505708,203.33,73.893 +505709,208.65,74.32 +505710,206.35,74.152 +505711,204.14,74 +505712,202.01,73.863 +505713,207.33,74.393 +505714,205.03,74.191 +505715,202.82,74.005 +505716,200.7,73.834 +505717,206,74.466 +505718,203.7,74.23 +505719,201.5,74.01 +505720,199.38,73.805 +505721,204.67,74.539 +505722,202.38,74.269 +505723,200.18,74.015 +505724,198.07,73.776 +505725,203.34,74.612 +505726,201.06,74.308 +505727,198.87,74.02 +505728,196.76,73.747 +505729,202.01,74.685 +505730,199.73,74.347 +505731,197.55,74.025 +505732,195.45,73.718 +505733,200.67,74.757 +505734,198.41,74.386 +505735,196.24,74.03 +505736,194.14,73.69 +505737,199.34,74.829 +505738,197.08,74.424 +505739,194.92,74.036 +505740,192.84,73.662 +505741,198,74.9 +505742,195.76,74.463 +505743,193.61,74.041 +505744,191.53,73.634 +505745,196.66,74.972 +505746,194.43,74.501 +505747,192.29,74.046 +505748,190.23,73.606 +505749,195.32,75.043 +505750,193.1,74.54 +505751,190.98,74.052 +505752,188.93,73.579 +505753,193.98,75.113 +505754,191.78,74.578 +505755,189.67,74.058 +505756,187.63,73.552 +505757,192.63,75.183 +505758,190.45,74.616 +505759,188.35,74.064 +505760,186.33,73.526 +505761,191.28,75.253 +505762,189.12,74.654 +505763,187.04,74.07 +505764,185.03,73.5 +505765,189.94,75.322 +505766,187.79,74.691 +505767,185.73,74.076 +505768,183.74,73.474 +505769,188.59,75.39 +505770,186.46,74.729 +505771,184.42,74.082 +505772,182.45,73.449 +505773,187.24,75.458 +505774,185.13,74.767 +505775,183.11,74.089 +505776,181.15,73.425 +505777,185.88,75.526 +505778,183.8,74.804 +505779,181.8,74.096 +505780,179.86,73.4 +505781,184.53,75.593 +505782,182.47,74.841 +505783,180.49,74.102 +505784,178.57,73.377 +505785,183.17,75.659 +505786,181.14,74.878 +505787,179.18,74.11 +505788,177.29,73.354 +505789,181.81,75.725 +505790,179.8,74.914 +505791,177.87,74.117 +505792,176,73.332 +505793,180.46,75.79 +505794,178.47,74.951 +505795,176.56,74.124 +505796,174.72,73.31 +505797,179.1,75.854 +505798,177.14,74.987 +505799,175.25,74.132 +505800,173.43,73.289 +505801,177.73,75.918 +505802,175.8,75.023 +505803,173.95,74.14 +505804,172.15,73.269 +505805,176.37,75.981 +505806,174.47,75.059 +505807,172.64,74.148 +505808,170.87,73.249 +505809,175.01,76.043 +505810,173.14,75.095 +505811,171.33,74.157 +505812,169.59,73.23 +505813,173.64,76.105 +505814,171.8,75.13 +505815,170.03,74.166 +505816,168.31,73.212 +505817,172.27,76.165 +505818,170.46,75.165 +505819,168.72,74.175 +505820,167.04,73.194 +505821,170.9,76.225 +505822,169.13,75.2 +505823,167.42,74.184 +505824,165.76,73.178 +505825,169.53,76.285 +505826,167.79,75.234 +505827,166.11,74.193 +505828,164.49,73.162 +505829,168.16,76.343 +505830,166.45,75.269 +505831,164.81,74.203 +505832,163.22,73.147 +505833,166.79,76.4 +505834,165.12,75.303 +505835,163.5,74.213 +505836,161.94,73.133 +505837,165.42,76.457 +505838,163.78,75.336 +505839,162.2,74.224 +505840,160.67,73.119 +505841,164.04,76.512 +505842,162.44,75.37 +505843,160.9,74.234 +505844,159.41,73.107 +505845,162.66,76.567 +505846,161.1,75.403 +505847,159.59,74.245 +505848,158.14,73.095 +505849,161.29,76.621 +505850,159.76,75.436 +505851,158.29,74.257 +505852,156.87,73.085 +505853,159.91,76.674 +505854,158.42,75.468 +505855,156.99,74.268 +505856,155.6,73.075 +505857,158.53,76.726 +505858,157.08,75.5 +505859,155.69,74.28 +505860,154.34,73.067 +505861,157.15,76.777 +505862,155.74,75.532 +505863,154.39,74.293 +505864,153.08,73.059 +505865,155.77,76.827 +505866,154.4,75.564 +505867,153.09,74.305 +505868,151.81,73.052 +505869,154.39,76.876 +505870,153.06,75.595 +505871,151.78,74.318 +505872,150.55,73.047 +505873,153,76.924 +505874,151.72,75.626 +505875,150.48,74.332 +505876,149.29,73.042 +505877,151.62,76.97 +505878,150.38,75.656 +505879,149.18,74.345 +505880,148.03,73.039 +505881,150.23,77.016 +505882,149.04,75.686 +505883,147.88,74.359 +505884,146.77,73.036 +505885,148.85,77.061 +505886,147.69,75.716 +505887,146.58,74.374 +505888,145.51,73.035 +505889,147.46,77.105 +505890,146.35,75.746 +505891,145.28,74.389 +505892,144.26,73.034 +505893,146.07,77.148 +505894,145.01,75.775 +505895,143.99,74.404 +505896,143,73.035 +505897,144.69,77.189 +505898,143.67,75.804 +505899,142.69,74.419 +505900,141.75,73.037 +505901,143.3,77.23 +505902,142.32,75.832 +505903,141.39,74.435 +505904,140.49,73.04 +505905,141.91,77.269 +505906,140.98,75.86 +505907,140.09,74.451 +505908,139.24,73.044 +505909,140.52,77.307 +505910,139.63,75.888 +505911,138.79,74.468 +505912,137.98,73.049 +505913,139.13,77.345 +505914,138.29,75.915 +505915,137.49,74.485 +505916,136.73,73.056 +505917,137.74,77.381 +505918,136.95,75.942 +505919,136.19,74.502 +505920,135.48,73.064 +505921,136.34,77.415 +505922,135.6,75.968 +505923,134.9,74.52 +505924,134.23,73.072 +505925,134.95,77.449 +505926,134.26,75.994 +505927,133.6,74.539 +505928,132.97,73.082 +505929,133.56,77.482 +505930,132.91,76.02 +505931,132.3,74.557 +505932,131.72,73.094 +505933,132.17,77.513 +505934,131.57,76.046 +505935,131,74.576 +505936,130.47,73.106 +505937,130.77,77.543 +505938,130.22,76.071 +505939,129.71,74.596 +505940,129.22,73.12 +505941,129.38,77.573 +505942,128.88,76.095 +505943,128.41,74.615 +505944,127.97,73.134 +505945,127.99,77.601 +505946,127.53,76.119 +505947,127.11,74.636 +505948,126.73,73.15 +505949,126.59,77.627 +505950,126.19,76.143 +505951,125.82,74.656 +505952,125.48,73.168 +505953,125.2,77.653 +505954,124.84,76.167 +505955,124.52,74.677 +505956,124.23,73.186 +505957,123.8,77.677 +505958,123.5,76.19 +505959,123.22,74.699 +505960,122.98,73.206 +505961,122.41,77.701 +505962,122.15,76.212 +505963,121.92,74.721 +505964,121.73,73.227 +505965,121.01,77.723 +505966,120.8,76.235 +505967,120.63,74.743 +505968,120.48,73.249 +505969,119.62,77.744 +505970,119.46,76.256 +505971,119.33,74.766 +505972,119.24,73.272 +505973,118.22,77.763 +505974,118.11,76.278 +505975,118.03,74.789 +505976,117.99,73.297 +505977,116.83,77.782 +505978,116.77,76.299 +505979,116.74,74.812 +505980,116.74,73.323 +505981,115.44,77.799 +505982,115.42,76.32 +505983,115.44,74.836 +505984,115.49,73.35 +505985,114.04,77.816 +505986,114.08,76.34 +505987,114.14,74.86 +505988,114.24,73.378 +505989,112.65,77.831 +505990,112.73,76.36 +505991,112.85,74.885 +505992,113,73.408 +505993,111.25,77.845 +505994,111.38,76.379 +505995,111.55,74.91 +505996,111.75,73.439 +505997,109.86,77.857 +505998,110.04,76.399 +505999,110.25,74.936 +506000,110.5,73.471 +506001,108.46,77.869 +506002,108.69,76.417 +506003,108.96,74.962 +506004,109.25,73.504 +506005,107.07,77.879 +506006,107.35,76.436 +506007,107.66,74.988 +506008,108,73.538 +506009,105.68,77.889 +506010,106,76.454 +506011,106.36,75.015 +506012,106.76,73.574 +506013,104.28,77.897 +506014,104.66,76.471 +506015,105.06,75.042 +506016,105.51,73.611 +506017,102.89,77.904 +506018,103.31,76.488 +506019,103.77,75.069 +506020,104.26,73.649 +506021,101.5,77.91 +506022,101.97,76.505 +506023,102.47,75.097 +506024,103.01,73.688 +506025,100.11,77.915 +506026,100.62,76.522 +506027,101.17,75.126 +506028,101.76,73.728 +506029,98.716,77.918 +506030,99.276,76.538 +506031,99.872,75.154 +506032,100.51,73.77 +506033,97.326,77.921 +506034,97.931,76.554 +506035,98.574,75.184 +506036,99.256,73.812 +506037,95.935,77.922 +506038,96.586,76.569 +506039,97.275,75.213 +506040,98.005,73.856 +506041,94.546,77.923 +506042,95.242,76.584 +506043,95.977,75.243 +506044,96.753,73.901 +506045,93.157,77.922 +506046,93.897,76.599 +506047,94.678,75.273 +506048,95.5,73.947 +506049,91.768,77.921 +506050,92.553,76.613 +506051,93.379,75.304 +506052,94.247,73.994 +506053,90.381,77.918 +506054,91.209,76.627 +506055,92.079,75.334 +506056,92.993,74.042 +506057,88.994,77.914 +506058,89.866,76.641 +506059,90.78,75.366 +506060,91.738,74.091 +506061,87.608,77.91 +506062,88.522,76.654 +506063,89.48,75.397 +506064,90.483,74.142 +506065,86.222,77.904 +506066,87.179,76.667 +506067,88.18,75.429 +506068,89.227,74.193 +506069,84.838,77.897 +506070,85.836,76.68 +506071,86.879,75.462 +506072,87.97,74.246 +506073,83.454,77.89 +506074,84.493,76.692 +506075,85.578,75.494 +506076,86.712,74.299 +506077,82.071,77.881 +506078,83.151,76.704 +506079,84.277,75.527 +506080,85.453,74.353 +506081,80.689,77.871 +506082,81.808,76.716 +506083,82.976,75.561 +506084,84.194,74.409 +506085,79.308,77.861 +506086,80.467,76.727 +506087,81.674,75.594 +506088,82.934,74.465 +506089,77.927,77.85 +506090,79.125,76.738 +506091,80.372,75.628 +506092,81.672,74.522 +506093,76.548,77.837 +506094,77.784,76.749 +506095,79.07,75.663 +506096,80.41,74.581 +506097,75.17,77.824 +506098,76.443,76.759 +506099,77.767,75.697 +506100,79.146,74.64 +506101,73.793,77.81 +506102,75.102,76.77 +506103,76.464,75.732 +506104,77.882,74.7 +506105,72.417,77.796 +506106,73.762,76.78 +506107,75.16,75.767 +506108,76.616,74.761 +506109,71.041,77.78 +506110,72.422,76.789 +506111,73.857,75.803 +506112,75.349,74.822 +506113,69.667,77.764 +506114,71.082,76.799 +506115,72.552,75.838 +506116,74.082,74.885 +506117,68.295,77.746 +506118,69.743,76.808 +506119,71.248,75.874 +506120,72.812,74.948 +506121,66.923,77.729 +506122,68.404,76.817 +506123,69.942,75.911 +506124,71.542,75.012 +506125,65.552,77.71 +506126,67.065,76.826 +506127,68.637,75.947 +506128,70.271,75.077 +506129,64.183,77.691 +506130,65.727,76.834 +506131,67.331,75.984 +506132,68.998,75.143 +506133,62.815,77.67 +506134,64.39,76.842 +506135,66.025,76.021 +506136,67.724,75.209 +506137,61.448,77.65 +506138,63.052,76.85 +506139,64.718,76.058 +506140,66.449,75.276 +506141,60.082,77.628 +506142,61.715,76.858 +506143,63.41,76.096 +506144,65.172,75.344 +506145,58.718,77.606 +506146,60.379,76.866 +506147,62.103,76.133 +506148,63.894,75.412 +506149,57.355,77.584 +506150,59.043,76.873 +506151,60.794,76.171 +506152,62.615,75.481 +506153,55.993,77.561 +506154,57.707,76.88 +506155,59.486,76.209 +506156,61.334,75.55 +506157,54.633,77.537 +506158,56.372,76.887 +506159,58.176,76.248 +506160,60.052,75.62 +506161,53.273,77.513 +506162,55.037,76.894 +506163,56.867,76.286 +506164,58.768,75.691 +506165,51.916,77.488 +506166,53.703,76.901 +506167,55.556,76.325 +506168,57.483,75.762 +506169,50.559,77.463 +506170,52.369,76.907 +506171,54.246,76.363 +506172,56.196,75.833 +506173,49.204,77.437 +506174,51.035,76.914 +506175,52.934,76.402 +506176,54.908,75.905 +506177,47.851,77.411 +506178,49.702,76.92 +506179,51.623,76.441 +506180,53.618,75.978 +506181,46.499,77.385 +506182,48.37,76.926 +506183,50.31,76.481 +506184,52.327,76.051 +506185,45.148,77.358 +506186,47.038,76.932 +506187,48.998,76.52 +506188,51.034,76.124 +506189,43.799,77.331 +506190,45.706,76.938 +506191,47.684,76.56 +506192,49.74,76.197 +506193,42.451,77.303 +506194,44.375,76.944 +506195,46.37,76.599 +506196,48.444,76.271 +506197,41.105,77.275 +506198,43.045,76.95 +506199,45.056,76.639 +506200,47.146,76.345 +506201,39.76,77.247 +506202,41.715,76.955 +506203,43.741,76.679 +506204,45.847,76.42 +506205,38.417,77.219 +506206,40.385,76.961 +506207,42.426,76.719 +506208,44.547,76.494 +506209,37.075,77.19 +506210,39.056,76.966 +506211,41.11,76.759 +506212,43.244,76.569 +506213,35.735,77.161 +506214,37.727,76.972 +506215,39.793,76.799 +506216,41.94,76.644 +506217,34.396,77.132 +506218,36.399,76.977 +506219,38.476,76.839 +506220,40.634,76.719 +506221,33.059,77.103 +506222,35.072,76.983 +506223,37.158,76.879 +506224,39.327,76.794 +506225,31.723,77.074 +506226,33.744,76.988 +506227,35.84,76.919 +506228,38.018,76.87 +506229,30.389,77.045 +506230,32.418,76.993 +506231,34.521,76.959 +506232,36.707,76.945 +506233,29.056,77.016 +506234,31.092,76.999 +506235,33.201,76.999 +506236,35.395,77.02 +506237,27.725,76.986 +506238,29.766,77.004 +506239,31.882,77.04 +506240,34.081,77.096 +506241,26.395,76.957 +506242,28.441,77.009 +506243,30.561,77.08 +506244,32.765,77.171 +506245,25.067,76.927 +506246,27.117,77.014 +506247,29.24,77.12 +506248,31.447,77.247 +506249,23.741,76.898 +506250,25.792,77.02 +506251,27.918,77.16 +506252,30.128,77.322 +506253,22.416,76.869 +506254,24.469,77.025 +506255,26.596,77.2 +506256,28.807,77.397 +506257,21.093,76.84 +506258,23.146,77.031 +506259,25.273,77.241 +506260,27.485,77.472 +506261,19.771,76.811 +506262,21.823,77.036 +506263,23.95,77.281 +506264,26.16,77.547 +506265,18.451,76.782 +506266,20.501,77.042 +506267,22.626,77.321 +506268,24.834,77.622 +506269,17.132,76.754 +506270,19.18,77.047 +506271,21.301,77.361 +506272,23.507,77.696 +506273,15.815,76.725 +506274,17.859,77.053 +506275,19.976,77.401 +506276,22.177,77.77 +506277,14.499,76.697 +506278,16.538,77.059 +506279,18.65,77.44 +506280,20.846,77.844 +506281,13.185,76.669 +506282,15.218,77.065 +506283,17.324,77.48 +506284,19.514,77.918 +506285,11.873,76.642 +506286,13.899,77.071 +506287,15.997,77.52 +506288,18.179,77.991 +506289,10.562,76.614 +506290,12.58,77.077 +506291,14.67,77.559 +506292,16.843,78.064 +506293,9.2525,76.587 +506294,11.262,77.083 +506295,13.342,77.599 +506296,15.505,78.136 +506297,7.9446,76.561 +506298,9.9435,77.089 +506299,12.014,77.638 +506300,14.166,78.208 +506301,6.6382,76.535 +506302,8.6261,77.096 +506303,10.685,77.677 +506304,12.825,78.28 +506305,5.3333,76.509 +506306,7.3091,77.103 +506307,9.3549,77.716 +506308,11.482,78.351 +506309,4.0298,76.484 +506310,5.9926,77.109 +506311,8.0248,77.755 +506312,10.138,78.422 +506313,2.7279,76.459 +506314,4.6765,77.117 +506315,6.6941,77.793 +506316,8.7919,78.492 +506317,1.4274,76.435 +506318,3.361,77.124 +506319,5.3629,77.832 +506320,7.4444,78.562 +506321,0.12838,76.411 +506322,2.0459,77.131 +506323,4.0312,77.87 +506324,6.0953,78.631 +506325,358.83,76.388 +506326,0.73136,77.139 +506327,2.6989,77.908 +506328,4.7447,78.699 +506329,357.53,76.366 +506330,359.42,77.146 +506331,1.3661,77.946 +506332,3.3924,78.767 +506333,356.24,76.344 +506334,358.1,77.154 +506335,0.032826,77.984 +506336,2.0387,78.834 +506337,354.95,76.322 +506338,356.79,77.163 +506339,358.7,78.022 +506340,0.68345,78.901 +506341,353.65,76.302 +506342,355.48,77.171 +506343,357.36,78.059 +506344,359.33,78.966 +506345,352.36,76.282 +506346,354.17,77.18 +506347,356.03,78.096 +506348,357.97,79.032 +506349,351.07,76.263 +506350,352.85,77.189 +506351,354.69,78.133 +506352,356.61,79.096 +506353,349.79,76.244 +506354,351.54,77.198 +506355,353.36,78.169 +506356,355.25,79.16 +506357,348.5,76.226 +506358,350.23,77.207 +506359,352.02,78.206 +506360,353.89,79.223 +506361,347.22,76.21 +506362,348.92,77.217 +506363,350.69,78.242 +506364,352.52,79.285 +506365,345.93,76.193 +506366,347.61,77.227 +506367,349.35,78.278 +506368,351.16,79.346 +506369,344.65,76.178 +506370,346.3,77.237 +506371,348.01,78.313 +506372,349.79,79.406 +506373,343.37,76.164 +506374,344.99,77.248 +506375,346.67,78.348 +506376,348.42,79.466 +506377,342.09,76.15 +506378,343.68,77.259 +506379,345.33,78.383 +506380,347.05,79.525 +506381,340.81,76.137 +506382,342.37,77.27 +506383,343.99,78.418 +506384,345.68,79.582 +506385,339.53,76.125 +506386,341.07,77.282 +506387,342.66,78.452 +506388,344.31,79.639 +506389,338.25,76.114 +506390,339.76,77.293 +506391,341.32,78.487 +506392,342.94,79.695 +506393,336.98,76.105 +506394,338.45,77.305 +506395,339.98,78.52 +506396,341.56,79.75 +506397,335.7,76.096 +506398,337.14,77.318 +506399,338.63,78.554 +506400,340.19,79.804 +506401,334.43,76.087 +506402,335.84,77.331 +506403,337.29,78.587 +506404,338.81,79.857 +506405,333.16,76.08 +506406,334.53,77.344 +506407,335.95,78.62 +506408,337.43,79.909 +506409,331.89,76.074 +506410,333.22,77.357 +506411,334.61,78.652 +506412,336.05,79.96 +506413,330.62,76.069 +506414,331.92,77.371 +506415,333.27,78.684 +506416,334.67,80.0105 +506417,329.35,76.066 +506418,330.61,77.385 +506419,331.93,78.716 +506420,333.29,80.0595 +506421,328.08,76.063 +506422,329.31,77.4 +506423,330.58,78.748 +506424,331.91,80.1074 +506425,326.81,76.061 +506426,328,77.414 +506427,329.24,78.779 +506428,330.53,80.1543 +506429,325.54,76.06 +506430,326.7,77.43 +506431,327.9,78.81 +506432,329.15,80.2001 +506433,324.28,76.061 +506434,325.39,77.445 +506435,326.55,78.84 +506436,327.76,80.2448 +506437,323.01,76.062 +506438,324.09,77.461 +506439,325.21,78.87 +506440,326.38,80.2883 +506441,321.75,76.065 +506442,322.78,77.478 +506443,323.86,78.9 +506444,324.99,80.3308 +506445,320.49,76.069 +506446,321.48,77.495 +506447,322.52,78.929 +506448,323.6,80.3722 +506449,319.22,76.074 +506450,320.18,77.512 +506451,321.17,78.958 +506452,322.22,80.4124 +506453,317.96,76.08 +506454,318.87,77.529 +506455,319.83,78.987 +506456,320.83,80.4515 +506457,316.7,76.087 +506458,317.57,77.547 +506459,318.48,79.015 +506460,319.44,80.4895 +506461,315.44,76.096 +506462,316.27,77.565 +506463,317.14,79.043 +506464,318.05,80.5263 +506465,314.18,76.105 +506466,314.97,77.584 +506467,315.79,79.07 +506468,316.66,80.5619 +506469,312.92,76.116 +506470,313.66,77.603 +506471,314.44,79.097 +506472,315.27,80.5963 +506473,311.66,76.128 +506474,312.36,77.623 +506475,313.1,79.124 +506476,313.87,80.6296 +506477,310.4,76.142 +506478,311.06,77.643 +506479,311.75,79.15 +506480,312.48,80.6617 +506481,309.15,76.156 +506482,309.76,77.663 +506483,310.4,79.176 +506484,311.09,80.6926 +506485,307.89,76.172 +506486,308.46,77.684 +506487,309.06,79.201 +506488,309.7,80.7224 +506489,306.63,76.189 +506490,307.15,77.705 +506491,307.71,79.226 +506492,308.3,80.7509 +506493,305.38,76.207 +506494,305.85,77.727 +506495,306.36,79.251 +506496,306.91,80.7782 +506497,304.12,76.227 +506498,304.55,77.749 +506499,305.01,79.275 +506500,305.52,80.8044 +506501,302.86,76.247 +506502,303.25,77.771 +506503,303.67,79.299 +506504,304.12,80.8293 +506505,301.61,76.269 +506506,301.95,77.794 +506507,302.32,79.322 +506508,302.73,80.8531 +506509,300.35,76.293 +506510,300.65,77.817 +506511,300.97,79.345 +506512,301.33,80.8756 +506513,299.1,76.317 +506514,299.34,77.841 +506515,299.62,79.368 +506516,299.94,80.897 +506517,297.84,76.343 +506518,298.04,77.865 +506519,298.28,79.39 +506520,298.54,80.9171 +506521,296.59,76.37 +506522,296.74,77.89 +506523,296.93,79.412 +506524,297.15,80.9361 +506525,295.33,76.398 +506526,295.44,77.915 +506527,295.58,79.434 +506528,295.75,80.9538 +506529,294.08,76.428 +506530,294.14,77.94 +506531,294.23,79.455 +506532,294.36,80.9704 +506533,292.83,76.458 +506534,292.84,77.966 +506535,292.88,79.475 +506536,292.96,80.9858 +506537,291.57,76.49 +506538,291.54,77.992 +506539,291.54,79.496 +506540,291.57,81 +506541,290.32,76.524 +506542,290.24,78.019 +506543,290.19,79.516 +506544,290.17,81.013 +506545,289.06,76.558 +506546,288.93,78.046 +506547,288.84,79.535 +506548,288.78,81.0248 +506549,287.81,76.594 +506550,287.63,78.073 +506551,287.49,79.554 +506552,287.38,81.0355 +506553,286.55,76.631 +506554,286.33,78.101 +506555,286.14,79.573 +506556,285.99,81.045 +506557,285.3,76.669 +506558,285.03,78.129 +506559,284.79,79.591 +506560,284.59,81.0533 +506561,284.04,76.708 +506562,283.73,78.158 +506563,283.45,79.609 +506564,283.2,81.0605 +506565,282.79,76.749 +506566,282.43,78.187 +506567,282.1,79.627 +506568,281.8,81.0666 +506569,281.53,76.79 +506570,281.12,78.216 +506571,280.75,79.644 +506572,280.41,81.0715 +506573,280.27,76.833 +506574,279.82,78.246 +506575,279.4,79.661 +506576,279.02,81.0753 +506577,279.02,76.877 +506578,278.52,78.276 +506579,278.05,79.677 +506580,277.62,81.078 +506581,277.76,76.923 +506582,277.22,78.307 +506583,276.71,79.693 +506584,276.23,81.0796 +506585,276.5,76.969 +506586,275.91,78.338 +506587,275.36,79.709 +506588,274.84,81.0801 +506589,275.25,77.017 +506590,274.61,78.369 +506591,274.01,79.724 +506592,273.45,81.0796 +506593,273.99,77.065 +506594,273.31,78.401 +506595,272.66,79.739 +506596,272.05,81.0779 +506597,272.73,77.115 +506598,272.01,78.433 +506599,271.32,79.754 +506600,270.66,81.0752 +506601,271.47,77.166 +506602,270.7,78.466 +506603,269.97,79.768 +506604,269.27,81.0715 +506605,270.21,77.218 +506606,269.4,78.498 +506607,268.62,79.782 +506608,267.88,81.0667 +506609,268.95,77.271 +506610,268.1,78.532 +506611,267.28,79.796 +506612,266.49,81.0609 +506613,267.69,77.325 +506614,266.79,78.565 +506615,265.93,79.809 +506616,265.11,81.0542 +506617,266.43,77.38 +506618,265.49,78.599 +506619,264.59,79.822 +506620,263.72,81.0464 +506621,265.16,77.436 +506622,264.18,78.633 +506623,263.24,79.834 +506624,262.33,81.0377 +506625,263.9,77.494 +506626,262.88,78.668 +506627,261.89,79.847 +506628,260.95,81.028 +506629,262.63,77.552 +506630,261.57,78.703 +506631,260.55,79.859 +506632,259.56,81.0174 +506633,261.37,77.611 +506634,260.27,78.738 +506635,259.2,79.87 +506636,258.18,81.0059 +506637,260.1,77.671 +506638,258.96,78.773 +506639,257.86,79.882 +506640,256.79,80.9934 +506641,258.84,77.732 +506642,257.65,78.809 +506643,256.51,79.893 +506644,255.41,80.9801 +506645,257.57,77.794 +506646,256.35,78.845 +506647,255.17,79.904 +506648,254.03,80.966 +506649,256.3,77.857 +506650,255.04,78.882 +506651,253.82,79.914 +506652,252.65,80.9509 +506653,255.03,77.92 +506654,253.73,78.919 +506655,252.48,79.924 +506656,251.27,80.9351 +506657,253.76,77.985 +506658,252.43,78.956 +506659,251.14,79.934 +506660,249.89,80.9185 +506661,252.49,78.05 +506662,251.12,78.993 +506663,249.79,79.944 +506664,248.51,80.901 +506665,251.22,78.116 +506666,249.81,79.031 +506667,248.45,79.953 +506668,247.13,80.8828 +506669,249.94,78.183 +506670,248.5,79.068 +506671,247.11,79.963 +506672,245.76,80.8639 +506673,248.67,78.251 +506674,247.19,79.106 +506675,245.77,79.972 +506676,244.38,80.8443 +506677,247.39,78.319 +506678,245.88,79.145 +506679,244.42,79.98 +506680,243.01,80.8239 +506681,246.11,78.388 +506682,244.57,79.183 +506683,243.08,79.989 +506684,241.64,80.8029 +506685,244.84,78.458 +506686,243.26,79.222 +506687,241.74,79.997 +506688,240.27,80.7812 +506689,243.56,78.529 +506690,241.95,79.261 +506691,240.4,80.0053 +506692,238.9,80.7589 +506693,242.27,78.6 +506694,240.64,79.3 +506695,239.06,80.0132 +506696,237.53,80.736 +506697,240.99,78.671 +506698,239.33,79.34 +506699,237.72,80.0209 +506700,236.16,80.7125 +506701,239.71,78.744 +506702,238.02,79.379 +506703,236.38,80.0284 +506704,234.79,80.6884 +506705,238.42,78.817 +506706,236.71,79.419 +506707,235.04,80.0357 +506708,233.43,80.6638 +506709,237.14,78.89 +506710,235.39,79.459 +506711,233.7,80.0429 +506712,232.06,80.6387 +506713,235.85,78.964 +506714,234.08,79.499 +506715,232.36,80.0499 +506716,230.7,80.6131 +506717,234.56,79.038 +506718,232.77,79.54 +506719,231.03,80.0568 +506720,229.34,80.5871 +506721,233.27,79.113 +506722,231.45,79.58 +506723,229.69,80.0635 +506724,227.98,80.5606 +506725,231.98,79.188 +506726,230.14,79.621 +506727,228.35,80.0701 +506728,226.62,80.5337 +506729,230.69,79.264 +506730,228.82,79.662 +506731,227.02,80.0766 +506732,225.26,80.5064 +506733,229.39,79.34 +506734,227.51,79.702 +506735,225.68,80.083 +506736,223.91,80.4787 +506737,228.1,79.416 +506738,226.19,79.743 +506739,224.34,80.0892 +506740,222.55,80.4508 +506741,226.8,79.492 +506742,224.87,79.785 +506743,223.01,80.0954 +506744,221.2,80.4225 +506745,225.5,79.569 +506746,223.56,79.826 +506747,221.67,80.1015 +506748,219.85,80.3939 +506749,224.2,79.646 +506750,222.24,79.867 +506751,220.34,80.1075 +506752,218.5,80.3651 +506753,222.9,79.724 +506754,220.92,79.908 +506755,219,80.1134 +506756,217.15,80.3361 +506757,221.59,79.801 +506758,219.6,79.95 +506759,217.67,80.1193 +506760,215.8,80.3069 +506761,220.29,79.879 +506762,218.28,79.991 +506763,216.34,80.1251 +506764,214.45,80.2775 +506765,218.98,79.957 +506766,216.96,80.0328 +506767,215,80.1308 +506768,213.11,80.248 +506769,217.68,80.0345 +506770,215.64,80.0744 +506771,213.67,80.1366 +506772,211.77,80.2183 +506773,216.37,80.1124 +506774,214.32,80.116 +506775,212.34,80.1423 +506776,210.42,80.1886 +506777,215.05,80.1905 +506778,213,80.1576 +506779,211.01,80.148 +506780,209.08,80.1588 +506781,213.74,80.2685 +506782,211.68,80.1993 +506783,209.68,80.1537 +506784,207.74,80.1289 +506785,212.43,80.3465 +506786,210.35,80.2409 +506787,208.35,80.1594 +506788,206.41,80.0991 +506789,211.11,80.4244 +506790,209.03,80.2826 +506791,207.02,80.1651 +506792,205.07,80.0693 +506793,209.79,80.5023 +506794,207.71,80.3242 +506795,205.69,80.1709 +506796,203.74,80.0396 +506797,208.47,80.58 +506798,206.38,80.3658 +506799,204.36,80.1767 +506800,202.4,80.0099 +506801,207.15,80.6577 +506802,205.06,80.4073 +506803,203.03,80.1825 +506804,201.07,79.98 +506805,205.83,80.7351 +506806,203.73,80.4488 +506807,201.7,80.1884 +506808,199.74,79.951 +506809,204.51,80.8124 +506810,202.41,80.4903 +506811,200.38,80.1943 +506812,198.41,79.922 +506813,203.18,80.8894 +506814,201.08,80.5317 +506815,199.05,80.2003 +506816,197.08,79.893 +506817,201.85,80.9662 +506818,199.75,80.573 +506819,197.72,80.2064 +506820,195.76,79.864 +506821,200.52,81.0427 +506822,198.42,80.6142 +506823,196.4,80.2126 +506824,194.43,79.835 +506825,199.19,81.1189 +506826,197.1,80.6553 +506827,195.07,80.2189 +506828,193.11,79.807 +506829,197.86,81.1948 +506830,195.77,80.6964 +506831,193.75,80.2253 +506832,191.79,79.779 +506833,196.53,81.2703 +506834,194.44,80.7373 +506835,192.42,80.2318 +506836,190.47,79.751 +506837,195.19,81.3454 +506838,193.11,80.7781 +506839,191.1,80.2385 +506840,189.15,79.724 +506841,193.86,81.4201 +506842,191.78,80.8187 +506843,189.78,80.2452 +506844,187.84,79.697 +506845,192.52,81.4943 +506846,190.45,80.8592 +506847,188.45,80.2522 +506848,186.52,79.67 +506849,191.18,81.568 +506850,189.12,80.8996 +506851,187.13,80.2592 +506852,185.21,79.644 +506853,189.84,81.6413 +506854,187.78,80.9398 +506855,185.81,80.2665 +506856,183.89,79.618 +506857,188.49,81.714 +506858,186.45,80.9798 +506859,184.49,80.2739 +506860,182.58,79.593 +506861,187.15,81.7861 +506862,185.12,81.0197 +506863,183.16,80.2815 +506864,181.27,79.569 +506865,185.8,81.8577 +506866,183.79,81.0594 +506867,181.84,80.2893 +506868,179.97,79.544 +506869,184.45,81.9287 +506870,182.45,81.0989 +506871,180.52,80.2972 +506872,178.66,79.521 +506873,183.1,81.999 +506874,181.12,81.1381 +506875,179.2,80.3054 +506876,177.35,79.498 +506877,181.75,82.0687 +506878,179.78,81.1772 +506879,177.88,80.3138 +506880,176.05,79.476 +506881,180.4,82.1377 +506882,178.45,81.2161 +506883,176.56,80.3225 +506884,174.75,79.454 +506885,179.05,82.206 +506886,177.11,81.2547 +506887,175.25,80.3313 +506888,173.45,79.433 +506889,177.69,82.2735 +506890,175.77,81.2931 +506891,173.93,80.3404 +506892,172.15,79.413 +506893,176.33,82.3403 +506894,174.44,81.3312 +506895,172.61,80.3497 +506896,170.85,79.393 +506897,174.97,82.4063 +506898,173.1,81.3691 +506899,171.29,80.3593 +506900,169.55,79.374 +506901,173.61,82.4715 +506902,171.76,81.4068 +506903,169.98,80.3692 +506904,168.25,79.356 +506905,172.25,82.5359 +506906,170.42,81.4441 +506907,168.66,80.3793 +506908,166.96,79.339 +506909,170.89,82.5995 +506910,169.08,81.4812 +506911,167.34,80.3897 +506912,165.67,79.322 +506913,169.53,82.6621 +506914,167.74,81.5181 +506915,166.03,80.4004 +506916,164.37,79.307 +506917,168.16,82.7239 +506918,166.4,81.5546 +506919,164.71,80.4114 +506920,163.08,79.292 +506921,166.79,82.7848 +506922,165.06,81.5908 +506923,163.4,80.4227 +506924,161.79,79.278 +506925,165.43,82.8448 +506926,163.72,81.6268 +506927,162.08,80.4342 +506928,160.5,79.265 +506929,164.06,82.9038 +506930,162.38,81.6624 +506931,160.77,80.4461 +506932,159.22,79.253 +506933,162.69,82.9619 +506934,161.04,81.6977 +506935,159.46,80.4584 +506936,157.93,79.242 +506937,161.31,83.0189 +506938,159.7,81.7327 +506939,158.14,80.4709 +506940,156.65,79.231 +506941,159.94,83.075 +506942,158.35,81.7673 +506943,156.83,80.4838 +506944,155.36,79.222 +506945,158.57,83.13 +506946,157.01,81.8017 +506947,155.52,80.497 +506948,154.08,79.214 +506949,157.19,83.1841 +506950,155.67,81.8357 +506951,154.2,80.5105 +506952,152.8,79.207 +506953,155.81,83.237 +506954,154.32,81.8693 +506955,152.89,80.5244 +506956,151.52,79.2 +506957,154.44,83.2889 +506958,152.98,81.9026 +506959,151.58,80.5387 +506960,150.24,79.195 +506961,153.06,83.3398 +506962,151.63,81.9356 +506963,150.27,80.5533 +506964,148.96,79.191 +506965,151.68,83.3895 +506966,150.29,81.9682 +506967,148.96,80.5683 +506968,147.68,79.188 +506969,150.3,83.4381 +506970,148.94,82.0004 +506971,147.65,80.5836 +506972,146.4,79.186 +506973,148.92,83.4856 +506974,147.6,82.0322 +506975,146.34,80.5993 +506976,145.13,79.185 +506977,147.53,83.532 +506978,146.25,82.0637 +506979,145.03,80.6154 +506980,143.85,79.186 +506981,146.15,83.5772 +506982,144.91,82.0948 +506983,143.72,80.6319 +506984,142.58,79.187 +506985,144.77,83.6213 +506986,143.56,82.1256 +506987,142.41,80.6488 +506988,141.3,79.19 +506989,143.38,83.6642 +506990,142.21,82.1559 +506991,141.1,80.666 +506992,140.03,79.193 +506993,141.99,83.7059 +506994,140.86,82.1859 +506995,139.79,80.6837 +506996,138.76,79.198 +506997,140.61,83.7465 +506998,139.52,82.2154 +506999,138.48,80.7017 +507000,137.49,79.204 +507001,139.22,83.7858 +507002,138.17,82.2446 +507003,137.17,80.7202 +507004,136.22,79.212 +507005,137.83,83.824 +507006,136.82,82.2733 +507007,135.86,80.739 +507008,134.95,79.22 +507009,136.44,83.8609 +507010,135.47,82.3017 +507011,134.55,80.7583 +507012,133.68,79.23 +507013,135.05,83.8966 +507014,134.12,82.3297 +507015,133.25,80.778 +507016,132.41,79.241 +507017,133.66,83.9311 +507018,132.77,82.3572 +507019,131.94,80.7981 +507020,131.14,79.253 +507021,132.27,83.9644 +507022,131.43,82.3844 +507023,130.63,80.8186 +507024,129.87,79.267 +507025,130.88,83.9964 +507026,130.08,82.4111 +507027,129.32,80.8395 +507028,128.61,79.281 +507029,129.48,84.0272 +507030,128.73,82.4374 +507031,128.01,80.8608 +507032,127.34,79.297 +507033,128.09,84.0568 +507034,127.38,82.4633 +507035,126.71,80.8826 +507036,126.08,79.314 +507037,126.7,84.0851 +507038,126.03,82.4888 +507039,125.4,80.9048 +507040,124.81,79.333 +507041,125.3,84.1122 +507042,124.68,82.5139 +507043,124.09,80.9274 +507044,123.55,79.352 +507045,123.91,84.138 +507046,123.33,82.5386 +507047,122.78,80.9504 +507048,122.28,79.373 +507049,122.51,84.1626 +507050,121.98,82.5628 +507051,121.48,80.9738 +507052,121.02,79.396 +507053,121.12,84.1859 +507054,120.62,82.5867 +507055,120.17,80.9977 +507056,119.75,79.419 +507057,119.72,84.208 +507058,119.27,82.6101 +507059,118.86,81.022 +507060,118.49,79.444 +507061,118.33,84.2288 +507062,117.92,82.6331 +507063,117.56,81.0468 +507064,117.23,79.47 +507065,116.93,84.2484 +507066,116.57,82.6557 +507067,116.25,81.0719 +507068,115.96,79.498 +507069,115.54,84.2667 +507070,115.22,82.6778 +507071,114.94,81.0975 +507072,114.7,79.526 +507073,114.14,84.2838 +507074,113.87,82.6996 +507075,113.64,81.1235 +507076,113.44,79.556 +507077,112.74,84.2997 +507078,112.52,82.7209 +507079,112.33,81.1499 +507080,112.17,79.587 +507081,111.35,84.3143 +507082,111.17,82.7418 +507083,111.02,81.1768 +507084,110.91,79.62 +507085,109.95,84.3277 +507086,109.82,82.7623 +507087,109.72,81.2041 +507088,109.65,79.654 +507089,108.55,84.3399 +507090,108.47,82.7824 +507091,108.41,81.2317 +507092,108.39,79.689 +507093,107.16,84.3508 +507094,107.11,82.8021 +507095,107.1,81.2599 +507096,107.12,79.725 +507097,105.76,84.3606 +507098,105.76,82.8214 +507099,105.8,81.2884 +507100,105.86,79.763 +507101,104.36,84.3691 +507102,104.41,82.8403 +507103,104.49,81.3173 +507104,104.6,79.801 +507105,102.97,84.3765 +507106,103.06,82.8587 +507107,103.18,81.3467 +507108,103.34,79.841 +507109,101.57,84.3826 +507110,101.71,82.8768 +507111,101.88,81.3764 +507112,102.07,79.883 +507113,100.18,84.3876 +507114,100.36,82.8945 +507115,100.57,81.4066 +507116,100.81,79.925 +507117,98.78,84.3914 +507118,99.005,82.9118 +507119,99.261,81.4372 +507120,99.547,79.969 +507121,97.385,84.3941 +507122,97.654,82.9287 +507123,97.954,81.4681 +507124,98.283,80.0138 +507125,95.99,84.3956 +507126,96.303,82.9452 +507127,96.646,81.4995 +507128,97.019,80.06 +507129,94.595,84.396 +507130,94.952,82.9613 +507131,95.339,81.5313 +507132,95.755,80.1073 +507133,93.2,84.3952 +507134,93.601,82.977 +507135,94.031,81.5634 +507136,94.49,80.1558 +507137,91.806,84.3933 +507138,92.25,82.9924 +507139,92.723,81.5959 +507140,93.225,80.2055 +507141,90.412,84.3904 +507142,90.899,83.0074 +507143,91.415,81.6289 +507144,91.96,80.2563 +507145,89.019,84.3863 +507146,89.548,83.022 +507147,90.107,81.6621 +507148,90.694,80.3082 +507149,87.626,84.3812 +507150,88.198,83.0363 +507151,88.798,81.6958 +507152,89.428,80.3613 +507153,86.234,84.375 +507154,86.847,83.0502 +507155,87.489,81.7298 +507156,88.161,80.4155 +507157,84.842,84.3678 +507158,85.497,83.0638 +507159,86.181,81.7642 +507160,86.893,80.4708 +507161,83.451,84.3595 +507162,84.147,83.077 +507163,84.872,81.7989 +507164,85.625,80.5271 +507165,82.061,84.3503 +507166,82.797,83.0898 +507167,83.562,81.834 +507168,84.357,80.5846 +507169,80.671,84.34 +507170,81.447,83.1024 +507171,82.253,81.8695 +507172,83.088,80.643 +507173,79.282,84.3288 +507174,80.098,83.1146 +507175,80.943,81.9052 +507176,81.818,80.7025 +507177,77.893,84.3166 +507178,78.748,83.1264 +507179,79.633,81.9413 +507180,80.547,80.7631 +507181,76.505,84.3035 +507182,77.399,83.138 +507183,78.322,81.9778 +507184,79.276,80.8246 +507185,75.118,84.2895 +507186,76.05,83.1493 +507187,77.012,82.0145 +507188,78.004,80.887 +507189,73.732,84.2745 +507190,74.701,83.1602 +507191,75.701,82.0516 +507192,76.731,80.9505 +507193,72.346,84.2587 +507194,73.353,83.1708 +507195,74.39,82.0889 +507196,75.457,81.0148 +507197,70.962,84.242 +507198,72.004,83.1812 +507199,73.078,82.1266 +507200,74.183,81.0801 +507201,69.578,84.2245 +507202,70.657,83.1913 +507203,71.766,82.1646 +507204,72.907,81.1462 +507205,68.195,84.2061 +507206,69.309,83.2011 +507207,70.454,82.2028 +507208,71.631,81.2132 +507209,66.813,84.187 +507210,67.961,83.2106 +507211,69.141,82.2413 +507212,70.354,81.2811 +507213,65.432,84.167 +507214,66.614,83.2198 +507215,67.829,82.2801 +507216,69.076,81.3498 +507217,64.052,84.1464 +507218,65.267,83.2288 +507219,66.515,82.3191 +507220,67.797,81.4192 +507221,62.673,84.125 +507222,63.921,83.2376 +507223,65.202,82.3584 +507224,66.516,81.4895 +507225,61.295,84.1028 +507226,62.574,83.2461 +507227,63.888,82.398 +507228,65.235,81.5605 +507229,59.917,84.08 +507230,61.228,83.2544 +507231,62.573,82.4378 +507232,63.953,81.6322 +507233,58.541,84.0565 +507234,59.883,83.2624 +507235,61.259,82.4778 +507236,62.67,81.7046 +507237,57.166,84.0324 +507238,58.538,83.2703 +507239,59.943,82.518 +507240,61.385,81.7777 +507241,55.793,84.0077 +507242,57.193,83.2779 +507243,58.628,82.5585 +507244,60.1,81.8514 +507245,54.42,83.9824 +507246,55.848,83.2853 +507247,57.312,82.5991 +507248,58.813,81.9258 +507249,53.048,83.9565 +507250,54.504,83.2926 +507251,55.996,82.6399 +507252,57.525,82.0008 +507253,51.678,83.9301 +507254,53.16,83.2996 +507255,54.679,82.681 +507256,56.236,82.0763 +507257,50.309,83.9031 +507258,51.816,83.3065 +507259,53.362,82.7222 +507260,54.946,82.1523 +507261,48.94,83.8757 +507262,50.473,83.3132 +507263,52.044,82.7635 +507264,53.654,82.2289 +507265,47.574,83.8478 +507266,49.13,83.3198 +507267,50.726,82.8051 +507268,52.362,82.3059 +507269,46.208,83.8195 +507270,47.788,83.3262 +507271,49.407,82.8468 +507272,51.067,82.3834 +507273,44.844,83.7908 +507274,46.446,83.3324 +507275,48.088,82.8886 +507276,49.772,82.4614 +507277,43.48,83.7617 +507278,45.104,83.3386 +507279,46.769,82.9305 +507280,48.475,82.5397 +507281,42.119,83.7322 +507282,43.763,83.3446 +507283,45.449,82.9726 +507284,47.178,82.6184 +507285,40.758,83.7024 +507286,42.422,83.3505 +507287,44.128,83.0148 +507288,45.878,82.6974 +507289,39.399,83.6723 +507290,41.082,83.3563 +507291,42.807,83.0571 +507292,44.578,82.7767 +507293,38.041,83.6419 +507294,39.742,83.3621 +507295,41.486,83.0994 +507296,43.275,82.8564 +507297,36.684,83.6113 +507298,38.402,83.3677 +507299,40.164,83.1419 +507300,41.972,82.9362 +507301,35.329,83.5804 +507302,37.063,83.3733 +507303,38.841,83.1844 +507304,40.667,83.0163 +507305,33.975,83.5494 +507306,35.724,83.3788 +507307,37.519,83.227 +507308,39.361,83.0966 +507309,32.622,83.5182 +507310,34.386,83.3842 +507311,36.195,83.2696 +507312,38.053,83.177 +507313,31.271,83.4869 +507314,33.048,83.3896 +507315,34.871,83.3123 +507316,36.744,83.2576 +507317,29.921,83.4554 +507318,31.71,83.395 +507319,33.547,83.355 +507320,35.433,83.3382 +507321,28.572,83.4239 +507322,30.373,83.4003 +507323,32.222,83.3978 +507324,34.121,83.4189 +507325,27.225,83.3924 +507326,29.037,83.4056 +507327,30.896,83.4405 +507328,32.808,83.4997 +507329,25.879,83.3608 +507330,27.701,83.4109 +507331,29.57,83.4833 +507332,31.493,83.5804 +507333,24.535,83.3292 +507334,26.365,83.4163 +507335,28.244,83.526 +507336,30.176,83.6612 +507337,23.192,83.2977 +507338,25.03,83.4216 +507339,26.917,83.5687 +507340,28.858,83.7419 +507341,21.85,83.2662 +507342,23.695,83.4269 +507343,25.589,83.6114 +507344,27.539,83.8224 +507345,20.51,83.2348 +507346,22.361,83.4323 +507347,24.261,83.6541 +507348,26.218,83.9029 +507349,19.172,83.2035 +507350,21.027,83.4378 +507351,22.933,83.6967 +507352,24.895,83.9832 +507353,17.834,83.1724 +507354,19.693,83.4432 +507355,21.604,83.7393 +507356,23.571,84.0634 +507357,16.498,83.1415 +507358,18.36,83.4488 +507359,20.274,83.7817 +507360,22.245,84.1433 +507361,15.164,83.1108 +507362,17.028,83.4544 +507363,18.944,83.8241 +507364,20.918,84.223 +507365,13.831,83.0803 +507366,15.696,83.4601 +507367,17.613,83.8665 +507368,19.59,84.3024 +507369,12.499,83.05 +507370,14.364,83.4659 +507371,16.282,83.9087 +507372,18.259,84.3815 +507373,11.169,83.0201 +507374,13.033,83.4718 +507375,14.95,83.9508 +507376,16.928,84.4603 +507377,9.8399,82.9905 +507378,11.702,83.4778 +507379,13.618,83.9928 +507380,15.594,84.5388 +507381,8.5124,82.9612 +507382,10.372,83.4839 +507383,12.285,84.0347 +507384,14.26,84.6168 +507385,7.1864,82.9323 +507386,9.0418,83.4901 +507387,10.952,84.0764 +507388,12.923,84.6944 +507389,5.8617,82.9038 +507390,7.7124,83.4965 +507391,9.6178,84.118 +507392,11.585,84.7716 +507393,4.5385,82.8758 +507394,6.3834,83.503 +507395,8.2834,84.1594 +507396,10.246,84.8483 +507397,3.2166,82.8482 +507398,5.0549,83.5097 +507399,6.9485,84.2007 +507400,8.9051,84.9245 +507401,1.8961,82.821 +507402,3.7268,83.5165 +507403,5.613,84.2418 +507404,7.5627,85.0001 +507405,0.577,82.7944 +507406,2.3991,83.5236 +507407,4.277,84.2827 +507408,6.2188,85.0752 +507409,359.26,82.7683 +507410,1.0719,83.5308 +507411,2.9405,84.3234 +507412,4.8733,85.1497 +507413,357.94,82.7428 +507414,359.75,83.5381 +507415,1.6035,84.3639 +507416,3.5264,85.2236 +507417,356.63,82.7179 +507418,358.42,83.5457 +507419,0.26601,84.4042 +507420,2.178,85.2968 +507421,355.31,82.6936 +507422,357.09,83.5535 +507423,358.93,84.4443 +507424,0.82808,85.3694 +507425,354,82.67 +507426,355.77,83.5616 +507427,357.59,84.4841 +507428,359.48,85.4413 +507429,352.69,82.647 +507430,354.44,83.5698 +507431,356.25,84.5237 +507432,358.12,85.5124 +507433,351.38,82.6247 +507434,353.12,83.5783 +507435,354.91,84.5631 +507436,356.77,85.5828 +507437,350.07,82.6031 +507438,351.79,83.587 +507439,353.57,84.6022 +507440,355.41,85.6524 +507441,348.77,82.5822 +507442,350.47,83.596 +507443,352.23,84.6411 +507444,354.06,85.7212 +507445,347.46,82.5621 +507446,349.15,83.6052 +507447,350.89,84.6796 +507448,352.7,85.7892 +507449,346.15,82.5428 +507450,347.82,83.6147 +507451,349.55,84.7179 +507452,351.34,85.8564 +507453,344.85,82.5244 +507454,346.5,83.6244 +507455,348.21,84.756 +507456,349.98,85.9226 +507457,343.55,82.5067 +507458,345.18,83.6345 +507459,346.86,84.7937 +507460,348.61,85.988 +507461,342.25,82.4899 +507462,343.86,83.6448 +507463,345.52,84.8311 +507464,347.25,86.0525 +507465,340.95,82.474 +507466,342.53,83.6554 +507467,344.18,84.8682 +507468,345.88,86.116 +507469,339.65,82.459 +507470,341.21,83.6664 +507471,342.83,84.905 +507472,344.52,86.1786 +507473,338.35,82.4449 +507474,339.89,83.6776 +507475,341.49,84.9415 +507476,343.15,86.2401 +507477,337.06,82.4317 +507478,338.57,83.6892 +507479,340.14,84.9776 +507480,341.78,86.3007 +507481,335.76,82.4196 +507482,337.25,83.701 +507483,338.8,85.0134 +507484,340.41,86.3603 +507485,334.47,82.4083 +507486,335.93,83.7133 +507487,337.45,85.0489 +507488,339.04,86.4188 +507489,333.17,82.3981 +507490,334.61,83.7258 +507491,336.11,85.084 +507492,337.67,86.4762 +507493,331.88,82.389 +507494,333.29,83.7387 +507495,334.76,85.1187 +507496,336.29,86.5326 +507497,330.59,82.3808 +507498,331.98,83.7519 +507499,333.41,85.1531 +507500,334.92,86.5879 +507501,329.3,82.3737 +507502,330.66,83.7655 +507503,332.07,85.1872 +507504,333.54,86.6421 +507505,328.01,82.3677 +507506,329.34,83.7795 +507507,330.72,85.2208 +507508,332.16,86.6951 +507509,326.72,82.3628 +507510,328.02,83.7938 +507511,329.37,85.2541 +507512,330.78,86.747 +507513,325.44,82.359 +507514,326.7,83.8084 +507515,328.02,85.287 +507516,329.4,86.7978 +507517,324.15,82.3563 +507518,325.39,83.8235 +507519,326.67,85.3195 +507520,328.02,86.8473 +507521,322.86,82.3547 +507522,324.07,83.8389 +507523,325.33,85.3516 +507524,326.64,86.8957 +507525,321.58,82.3543 +507526,322.75,83.8548 +507527,323.98,85.3833 +507528,325.26,86.9429 +507529,320.3,82.3551 +507530,321.44,83.871 +507531,322.63,85.4146 +507532,323.88,86.9889 +507533,319.01,82.357 +507534,320.12,83.8876 +507535,321.28,85.4455 +507536,322.49,87.0336 +507537,317.73,82.3601 +507538,318.8,83.9046 +507539,319.93,85.476 +507540,321.1,87.0771 +507541,316.45,82.3645 +507542,317.49,83.922 +507543,318.58,85.506 +507544,319.72,87.1194 +507545,315.17,82.37 +507546,316.17,83.9398 +507547,317.22,85.5357 +507548,318.33,87.1604 +507549,313.89,82.3768 +507550,314.86,83.958 +507551,315.87,85.5649 +507552,316.94,87.2001 +507553,312.61,82.3848 +507554,313.54,83.9766 +507555,314.52,85.5937 +507556,315.55,87.2386 +507557,311.33,82.3941 +507558,312.23,83.9956 +507559,313.17,85.6221 +507560,314.16,87.2758 +507561,310.05,82.4046 +507562,310.91,84.0151 +507563,311.82,85.6501 +507564,312.77,87.3117 +507565,308.78,82.4164 +507566,309.6,84.035 +507567,310.46,85.6776 +507568,311.38,87.3463 +507569,307.5,82.4294 +507570,308.28,84.0553 +507571,309.11,85.7047 +507572,309.99,87.3796 +507573,306.22,82.4437 +507574,306.97,84.076 +507575,307.76,85.7313 +507576,308.6,87.4116 +507577,304.95,82.4594 +507578,305.66,84.0971 +507579,306.41,85.7575 +507580,307.21,87.4423 +507581,303.67,82.4763 +507582,304.34,84.1187 +507583,305.05,85.7833 +507584,305.81,87.4716 +507585,302.4,82.4945 +507586,303.03,84.1407 +507587,303.7,85.8086 +507588,304.42,87.4997 +507589,301.12,82.514 +507590,301.71,84.1631 +507591,302.35,85.8335 +507592,303.02,87.5264 +507593,299.85,82.5348 +507594,300.4,84.186 +507595,300.99,85.8579 +507596,301.63,87.5518 +507597,298.58,82.5569 +507598,299.09,84.2093 +507599,299.64,85.8819 +507600,300.23,87.5759 +507601,297.3,82.5803 +507602,297.77,84.233 +507603,298.28,85.9054 +507604,298.84,87.5987 +507605,296.03,82.6051 +507606,296.46,84.2572 +507607,296.93,85.9285 +507608,297.44,87.6201 +507609,294.76,82.6311 +507610,295.15,84.2817 +507611,295.57,85.9512 +507612,296.04,87.6403 +507613,293.48,82.6585 +507614,293.83,84.3068 +507615,294.22,85.9734 +507616,294.65,87.6591 +507617,292.21,82.6872 +507618,292.52,84.3322 +507619,292.87,85.9951 +507620,293.25,87.6766 +507621,290.94,82.7172 +507622,291.21,84.3581 +507623,291.51,86.0165 +507624,291.85,87.6927 +507625,289.67,82.7485 +507626,289.89,84.3844 +507627,290.16,86.0373 +507628,290.45,87.7076 +507629,288.4,82.7811 +507630,288.58,84.4112 +507631,288.8,86.0578 +507632,289.06,87.7212 +507633,287.12,82.815 +507634,287.27,84.4383 +507635,287.44,86.0778 +507636,287.66,87.7335 +507637,285.85,82.8502 +507638,285.95,84.4659 +507639,286.09,86.0973 +507640,286.26,87.7444 +507641,284.58,82.8867 +507642,284.64,84.4939 +507643,284.73,86.1164 +507644,284.86,87.7541 +507645,283.31,82.9245 +507646,283.33,84.5224 +507647,283.38,86.1351 +507648,283.46,87.7625 +507649,282.04,82.9636 +507650,282.02,84.5512 +507651,282.02,86.1533 +507652,282.07,87.7697 +507653,280.77,83.0039 +507654,280.7,84.5805 +507655,280.67,86.1712 +507656,280.67,87.7755 +507657,279.49,83.0456 +507658,279.39,84.6102 +507659,279.31,86.1886 +507660,279.27,87.7801 +507661,278.22,83.0885 +507662,278.07,84.6403 +507663,277.96,86.2055 +507664,277.87,87.7835 +507665,276.95,83.1326 +507666,276.76,84.6709 +507667,276.6,86.2221 +507668,276.47,87.7857 +507669,275.68,83.178 +507670,275.45,84.7018 +507671,275.25,86.2382 +507672,275.08,87.7866 +507673,274.4,83.2246 +507674,274.13,84.7331 +507675,273.89,86.2539 +507676,273.68,87.7863 +507677,273.13,83.2725 +507678,272.82,84.7648 +507679,272.54,86.2692 +507680,272.28,87.7848 +507681,271.86,83.3215 +507682,271.51,84.7969 +507683,271.18,86.2841 +507684,270.89,87.7821 +507685,270.58,83.3718 +507686,270.19,84.8295 +507687,269.83,86.2986 +507688,269.49,87.7782 +507689,269.31,83.4232 +507690,268.88,84.8624 +507691,268.47,86.3127 +507692,268.09,87.7732 +507693,268.04,83.4759 +507694,267.56,84.8956 +507695,267.12,86.3264 +507696,266.7,87.7671 +507697,266.76,83.5296 +507698,266.25,84.9293 +507699,265.76,86.3397 +507700,265.3,87.7598 +507701,265.49,83.5846 +507702,264.93,84.9633 +507703,264.41,86.3526 +507704,263.91,87.7514 +507705,264.21,83.6406 +507706,263.62,84.9977 +507707,263.05,86.3652 +507708,262.51,87.7419 +507709,262.93,83.6978 +507710,262.3,85.0324 +507711,261.7,86.3774 +507712,261.12,87.7313 +507713,261.66,83.756 +507714,260.99,85.0675 +507715,260.34,86.3892 +507716,259.72,87.7196 +507717,260.38,83.8154 +507718,259.67,85.103 +507719,258.99,86.4006 +507720,258.33,87.7069 +507721,259.1,83.8758 +507722,258.36,85.1388 +507723,257.63,86.4117 +507724,256.94,87.6932 +507725,257.82,83.9373 +507726,257.04,85.1749 +507727,256.28,86.4225 +507728,255.55,87.6785 +507729,256.55,83.9997 +507730,255.72,85.2114 +507731,254.93,86.4329 +507732,254.15,87.6627 +507733,255.27,84.0632 +507734,254.41,85.2481 +507735,253.57,86.4429 +507736,252.76,87.646 +507737,253.99,84.1277 +507738,253.09,85.2852 +507739,252.22,86.4527 +507740,251.37,87.6284 +507741,252.7,84.1931 +507742,251.77,85.3227 +507743,250.87,86.4621 +507744,249.98,87.6098 +507745,251.42,84.2595 +507746,250.46,85.3604 +507747,249.51,86.4712 +507748,248.6,87.5903 +507749,250.14,84.3268 +507750,249.14,85.3984 +507751,248.16,86.48 +507752,247.21,87.57 +507753,248.86,84.395 +507754,247.82,85.4367 +507755,246.81,86.4884 +507756,245.82,87.5488 +507757,247.57,84.4641 +507758,246.5,85.4752 +507759,245.46,86.4966 +507760,244.44,87.5267 +507761,246.29,84.534 +507762,245.18,85.5141 +507763,244.1,86.5045 +507764,243.05,87.5038 +507765,245,84.6048 +507766,243.86,85.5532 +507767,242.75,86.5122 +507768,241.67,87.4801 +507769,243.71,84.6763 +507770,242.54,85.5925 +507771,241.4,86.5195 +507772,240.28,87.4556 +507773,242.42,84.7487 +507774,241.23,85.6321 +507775,240.05,86.5266 +507776,238.9,87.4304 +507777,241.14,84.8218 +507778,239.91,85.672 +507779,238.7,86.5335 +507780,237.52,87.4045 +507781,239.85,84.8956 +507782,238.58,85.7121 +507783,237.35,86.5401 +507784,236.14,87.3779 +507785,238.55,84.9701 +507786,237.26,85.7524 +507787,236,86.5464 +507788,234.76,87.3506 +507789,237.26,85.0454 +507790,235.94,85.7929 +507791,234.65,86.5525 +507792,233.38,87.3226 +507793,235.97,85.1212 +507794,234.62,85.8336 +507795,233.3,86.5584 +507796,232,87.2941 +507797,234.67,85.1977 +507798,233.3,85.8745 +507799,231.95,86.5641 +507800,230.62,87.2649 +507801,233.38,85.2748 +507802,231.98,85.9156 +507803,230.6,86.5696 +507804,229.25,87.2352 +507805,232.08,85.3524 +507806,230.65,85.9569 +507807,229.25,86.5749 +507808,227.87,87.2049 +507809,230.79,85.4306 +507810,229.33,85.9983 +507811,227.9,86.58 +507812,226.5,87.1741 +507813,229.49,85.5093 +507814,228.01,86.0399 +507815,226.55,86.585 +507816,225.13,87.1428 +507817,228.19,85.5885 +507818,226.68,86.0816 +507819,225.21,86.5898 +507820,223.76,87.111 +507821,226.89,85.6681 +507822,225.36,86.1235 +507823,223.86,86.5944 +507824,222.39,87.0789 +507825,225.58,85.7481 +507826,224.03,86.1655 +507827,222.51,86.5988 +507828,221.02,87.0463 +507829,224.28,85.8286 +507830,222.71,86.2076 +507831,221.17,86.6032 +507832,219.65,87.0133 +507833,222.98,85.9094 +507834,221.38,86.2499 +507835,219.82,86.6074 +507836,218.29,86.98 +507837,221.67,85.9905 +507838,220.06,86.2922 +507839,218.47,86.6114 +507840,216.92,86.9463 +507841,220.36,86.0719 +507842,218.73,86.3346 +507843,217.13,86.6154 +507844,215.56,86.9124 +507845,219.05,86.1536 +507846,217.4,86.3771 +507847,215.78,86.6193 +507848,214.19,86.8782 +507849,217.74,86.2356 +507850,216.08,86.4197 +507851,214.44,86.6231 +507852,212.83,86.8438 +507853,216.43,86.3177 +507854,214.75,86.4623 +507855,213.09,86.6268 +507856,211.47,86.8091 +507857,215.12,86.4 +507858,213.42,86.505 +507859,211.75,86.6304 +507860,210.11,86.7743 +507861,213.81,86.4825 +507862,212.09,86.5477 +507863,210.41,86.634 +507864,208.76,86.7394 +507865,212.49,86.5651 +507866,210.76,86.5904 +507867,209.06,86.6375 +507868,207.4,86.7043 +507869,211.18,86.6477 +507870,209.43,86.6332 +507871,207.72,86.641 +507872,206.04,86.6691 +507873,209.86,86.7304 +507874,208.1,86.6759 +507875,206.38,86.6444 +507876,204.69,86.6339 +507877,208.54,86.8132 +507878,206.77,86.7187 +507879,205.04,86.6479 +507880,203.34,86.5986 +507881,207.22,86.8959 +507882,205.44,86.7614 +507883,203.69,86.6513 +507884,201.99,86.5633 +507885,205.9,86.9785 +507886,204.11,86.8041 +507887,202.35,86.6547 +507888,200.64,86.5281 +507889,204.57,87.0611 +507890,202.77,86.8468 +507891,201.01,86.6582 +507892,199.29,86.4929 +507893,203.25,87.1436 +507894,201.44,86.8894 +507895,199.67,86.6616 +507896,197.94,86.4578 +507897,201.92,87.2259 +507898,200.11,86.9319 +507899,198.33,86.6651 +507900,196.6,86.4228 +507901,200.59,87.3081 +507902,198.77,86.9744 +507903,196.99,86.6686 +507904,195.25,86.388 +507905,199.26,87.39 +507906,197.44,87.0169 +507907,195.65,86.6722 +507908,193.91,86.3533 +507909,197.93,87.4717 +507910,196.1,87.0592 +507911,194.32,86.6758 +507912,192.57,86.3189 +507913,196.6,87.5531 +507914,194.77,87.1014 +507915,192.98,86.6795 +507916,191.23,86.2847 +507917,195.27,87.6343 +507918,193.43,87.1435 +507919,191.64,86.6833 +507920,189.89,86.2507 +507921,193.93,87.7151 +507922,192.1,87.1855 +507923,190.3,86.6872 +507924,188.55,86.217 +507925,192.6,87.7955 +507926,190.76,87.2274 +507927,188.97,86.6911 +507928,187.21,86.1837 +507929,191.26,87.8755 +507930,189.42,87.2691 +507931,187.63,86.6952 +507932,185.88,86.1507 +507933,189.92,87.9551 +507934,188.08,87.3107 +507935,186.29,86.6994 +507936,184.54,86.1181 +507937,188.58,88.0343 +507938,186.74,87.3521 +507939,184.96,86.7037 +507940,183.21,86.0858 +507941,187.24,88.1129 +507942,185.41,87.3934 +507943,183.62,86.7082 +507944,181.88,86.0541 +507945,185.89,88.191 +507946,184.07,87.4344 +507947,182.29,86.7128 +507948,180.55,86.0227 +507949,184.55,88.2686 +507950,182.73,87.4753 +507951,180.95,86.7176 +507952,179.22,85.9919 +507953,183.2,88.3456 +507954,181.39,87.516 +507955,179.62,86.7225 +507956,177.9,85.9616 +507957,181.86,88.422 +507958,180.04,87.5564 +507959,178.28,86.7276 +507960,176.57,85.9318 +507961,180.51,88.4978 +507962,178.7,87.5967 +507963,176.95,86.7329 +507964,175.25,85.9026 +507965,179.16,88.5729 +507966,177.36,87.6367 +507967,175.62,86.7384 +507968,173.92,85.874 +507969,177.8,88.6472 +507970,176.02,87.6765 +507971,174.29,86.744 +507972,172.6,85.846 +507973,176.45,88.7209 +507974,174.68,87.716 +507975,172.95,86.7499 +507976,171.28,85.8187 +507977,175.1,88.7938 +507978,173.33,87.7553 +507979,171.62,86.756 +507980,169.96,85.792 +507981,173.74,88.8659 +507982,171.99,87.7943 +507983,170.29,86.7624 +507984,168.64,85.7661 +507985,172.38,88.9373 +507986,170.64,87.833 +507987,168.96,86.769 +507988,167.33,85.7408 +507989,171.02,89.00775 +507990,169.3,87.8715 +507991,167.63,86.7758 +507992,166.01,85.7164 +507993,169.66,89.07737 +507994,167.95,87.9096 +507995,166.3,86.7829 +507996,164.69,85.6927 +507997,168.3,89.14611 +507998,166.61,87.9475 +507999,164.97,86.7902 +508000,163.38,85.6698 +508001,166.94,89.21393 +508002,165.26,87.985 +508003,163.64,86.7978 +508004,162.07,85.6477 +508005,165.57,89.28082 +508006,163.92,88.0223 +508007,162.31,86.8057 +508008,160.76,85.6265 +508009,164.21,89.34675 +508010,162.57,88.0592 +508011,160.98,86.8138 +508012,159.45,85.6061 +508013,162.84,89.41169 +508014,161.22,88.0958 +508015,159.66,86.8223 +508016,158.14,85.5867 +508017,161.47,89.47563 +508018,159.87,88.132 +508019,158.33,86.8311 +508020,156.83,85.5681 +508021,160.1,89.53853 +508022,158.52,88.1679 +508023,157,86.8401 +508024,155.53,85.5505 +508025,158.73,89.60039 +508026,157.17,88.2034 +508027,155.67,86.8495 +508028,154.22,85.5339 +508029,157.36,89.66116 +508030,155.83,88.2386 +508031,154.35,86.8592 +508032,152.92,85.5182 +508033,155.99,89.72084 +508034,154.48,88.2734 +508035,153.02,86.8692 +508036,151.61,85.5035 +508037,154.62,89.77941 +508038,153.13,88.3078 +508039,151.69,86.8796 +508040,150.31,85.4899 +508041,153.24,89.83683 +508042,151.77,88.3419 +508043,150.37,86.8903 +508044,149.01,85.4773 +508045,151.86,89.89311 +508046,150.42,88.3755 +508047,149.04,86.9014 +508048,147.71,85.4657 +508049,150.49,89.948207 +508050,149.07,88.4088 +508051,147.72,86.9128 +508052,146.41,85.4552 +508053,149.11,90.0021147 +508054,147.72,88.4416 +508055,146.39,86.9245 +508056,145.11,85.4458 +508057,147.73,90.054813 +508058,146.37,88.4741 +508059,145.07,86.9366 +508060,143.81,85.4376 +508061,146.35,90.10629 +508062,145.02,88.5061 +508063,143.74,86.9491 +508064,142.52,85.4304 +508065,144.96,90.15652 +508066,143.66,88.5377 +508067,142.42,86.962 +508068,141.22,85.4244 +508069,143.58,90.20549 +508070,142.31,88.5689 +508071,141.09,86.9752 +508072,139.93,85.4196 +508073,142.2,90.25319 +508074,140.96,88.5997 +508075,139.77,86.9889 +508076,138.63,85.4159 +508077,140.81,90.29961 +508078,139.6,88.63 +508079,138.45,87.0029 +508080,137.34,85.4135 +508081,139.43,90.34472 +508082,138.25,88.6599 +508083,137.12,87.0173 +508084,136.05,85.4122 +508085,138.04,90.38853 +508086,136.89,88.6894 +508087,135.8,87.0321 +508088,134.76,85.4121 +508089,136.65,90.43101 +508090,135.54,88.7184 +508091,134.48,87.0473 +508092,133.46,85.4133 +508093,135.27,90.47216 +508094,134.18,88.7469 +508095,133.16,87.063 +508096,132.17,85.4157 +508097,133.88,90.51196 +508098,132.83,88.775 +508099,131.83,87.079 +508100,130.88,85.4194 +508101,132.49,90.55041 +508102,131.47,88.8027 +508103,130.51,87.0954 +508104,129.6,85.4243 +508105,131.1,90.5875 +508106,130.12,88.8299 +508107,129.19,87.1123 +508108,128.31,85.4305 +508109,129.7,90.62321 +508110,128.76,88.8566 +508111,127.87,87.1296 +508112,127.02,85.438 +508113,128.31,90.65755 +508114,127.4,88.8828 +508115,126.55,87.1473 +508116,125.73,85.4468 +508117,126.92,90.69049 +508118,126.05,88.9086 +508119,125.23,87.1654 +508120,124.45,85.4569 +508121,125.53,90.72205 +508122,124.69,88.9339 +508123,123.9,87.1839 +508124,123.16,85.4682 +508125,124.13,90.75221 +508126,123.33,88.9588 +508127,122.58,87.2029 +508128,121.88,85.4809 +508129,122.74,90.78097 +508130,121.98,88.9831 +508131,121.26,87.2223 +508132,120.59,85.495 +508133,121.34,90.80832 +508134,120.62,89.007 +508135,119.94,87.2422 +508136,119.31,85.5103 +508137,119.95,90.83427 +508138,119.26,89.03041 +508139,118.62,87.2624 +508140,118.02,85.527 +508141,118.55,90.8588 +508142,117.9,89.05333 +508143,117.3,87.2832 +508144,116.74,85.545 +508145,117.15,90.88193 +508146,116.54,89.07577 +508147,115.98,87.3043 +508148,115.45,85.5644 +508149,115.76,90.90364 +508150,115.18,89.09774 +508151,114.66,87.3259 +508152,114.17,85.5851 +508153,114.36,90.92394 +508154,113.83,89.11922 +508155,113.34,87.3479 +508156,112.89,85.6071 +508157,112.96,90.94282 +508158,112.47,89.14022 +508159,112.02,87.3704 +508160,111.61,85.6305 +508161,111.56,90.9603 +508162,111.11,89.16074 +508163,110.7,87.3932 +508164,110.32,85.6552 +508165,110.16,90.97637 +508166,109.75,89.18078 +508167,109.38,87.4166 +508168,109.04,85.6813 +508169,108.76,90.99103 +508170,108.39,89.20033 +508171,108.06,87.4403 +508172,107.76,85.7087 +508173,107.36,91.0043 +508174,107.03,89.21941 +508175,106.74,87.4645 +508176,106.48,85.7375 +508177,105.97,91.0162 +508178,105.67,89.23801 +508179,105.42,87.4892 +508180,105.2,85.7676 +508181,104.57,91.0266 +508182,104.31,89.25613 +508183,104.1,87.5142 +508184,103.92,85.7991 +508185,103.17,91.0357 +508186,102.95,89.27377 +508187,102.78,87.5397 +508188,102.63,85.8319 +508189,101.77,91.0434 +508190,101.59,89.29094 +508191,101.46,87.5657 +508192,101.35,85.866 +508193,100.37,91.0498 +508194,100.23,89.30764 +508195,100.14,87.592 +508196,100.07,85.9014 +508197,98.966,91.0547 +508198,98.874,89.32386 +508199,98.816,87.6188 +508200,98.789,85.9382 +508201,97.566,91.0583 +508202,97.514,89.33962 +508203,97.496,87.646 +508204,97.508,85.9763 +508205,96.166,91.0606 +508206,96.154,89.35492 +508207,96.175,87.6736 +508208,96.226,86.0157 +508209,94.766,91.0615 +508210,94.795,89.36975 +508211,94.855,87.7017 +508212,94.945,86.0564 +508213,93.367,91.0611 +508214,93.435,89.38412 +508215,93.534,87.7301 +508216,93.663,86.0984 +508217,91.967,91.0594 +508218,92.075,89.39804 +508219,92.214,87.759 +508220,92.381,86.1416 +508221,90.567,91.0564 +508222,90.715,89.4115 +508223,90.893,87.7882 +508224,91.099,86.1862 +508225,89.168,91.0521 +508226,89.356,89.42452 +508227,89.572,87.8179 +508228,89.816,86.232 +508229,87.769,91.0466 +508230,87.996,89.43709 +508231,88.252,87.848 +508232,88.533,86.2791 +508233,86.37,91.0397 +508234,86.636,89.44923 +508235,86.93,87.8785 +508236,87.25,86.3274 +508237,84.971,91.0316 +508238,85.277,89.46092 +508239,85.609,87.9093 +508240,85.967,86.3769 +508241,83.573,91.0223 +508242,83.917,89.47219 +508243,84.288,87.9406 +508244,84.683,86.4277 +508245,82.175,91.0118 +508246,82.558,89.48303 +508247,82.967,87.9722 +508248,83.399,86.4796 +508249,80.777,91.0001 +508250,81.199,89.49345 +508251,81.645,88.0042 +508252,82.115,86.5327 +508253,79.38,90.98714 +508254,79.839,89.50346 +508255,80.323,88.0366 +508256,80.83,86.5871 +508257,77.983,90.97306 +508258,78.48,89.51305 +508259,79.001,88.0694 +508260,79.545,86.6425 +508261,76.586,90.95783 +508262,77.121,89.52224 +508263,77.679,88.1025 +508264,78.259,86.6991 +508265,75.19,90.94148 +508266,75.762,89.53104 +508267,76.357,88.1359 +508268,76.972,86.7569 +508269,73.795,90.92401 +508270,74.404,89.53944 +508271,75.034,88.1697 +508272,75.685,86.8157 +508273,72.4,90.90546 +508274,73.045,89.54745 +508275,73.711,88.2039 +508276,74.398,86.8756 +508277,71.006,90.88584 +508278,71.686,89.55509 +508279,72.388,88.2384 +508280,73.11,86.9366 +508281,69.612,90.86517 +508282,70.328,89.56235 +508283,71.065,88.2732 +508284,71.821,86.9987 +508285,68.219,90.84347 +508286,68.97,89.56925 +508287,69.741,88.3083 +508288,70.532,87.0618 +508289,66.826,90.82077 +508290,67.612,89.57579 +508291,68.417,88.3438 +508292,69.242,87.1259 +508293,65.435,90.79708 +508294,66.254,89.58198 +508295,67.093,88.3795 +508296,67.951,87.1909 +508297,64.044,90.77244 +508298,64.897,89.58782 +508299,65.769,88.4156 +508300,66.66,87.257 +508301,62.653,90.74686 +508302,63.539,89.59333 +508303,64.444,88.452 +508304,65.367,87.324 +508305,61.264,90.72036 +508306,62.182,89.5985 +508307,63.119,88.4886 +508308,64.074,87.3919 +508309,59.875,90.69298 +508310,60.825,89.60336 +508311,61.794,88.5255 +508312,62.781,87.4607 +508313,58.487,90.66473 +508314,59.469,89.6079 +508315,60.469,88.5627 +508316,61.486,87.5304 +508317,57.1,90.63564 +508318,58.112,89.61214 +508319,59.143,88.6001 +508320,60.191,87.6009 +508321,55.713,90.60574 +508322,56.756,89.61608 +508323,57.817,88.6378 +508324,58.894,87.6723 +508325,54.328,90.57505 +508326,55.4,89.61974 +508327,56.49,88.6757 +508328,57.597,87.7445 +508329,52.943,90.5436 +508330,54.045,89.62311 +508331,55.163,88.7139 +508332,56.299,87.8174 +508333,51.559,90.51141 +508334,52.689,89.62622 +508335,53.836,88.7523 +508336,55,87.8911 +508337,50.177,90.47851 +508338,51.334,89.62906 +508339,52.509,88.7909 +508340,53.7,87.9655 +508341,48.795,90.44493 +508342,49.979,89.63164 +508343,51.181,88.8297 +508344,52.399,88.0406 +508345,47.414,90.4107 +508346,48.625,89.63399 +508347,49.852,88.8687 +508348,51.097,88.1164 +508349,46.034,90.37583 +508350,47.27,89.6361 +508351,48.524,88.908 +508352,49.794,88.1928 +508353,44.656,90.34037 +508354,45.916,89.63798 +508355,47.195,88.9473 +508356,48.49,88.2698 +508357,43.278,90.30434 +508358,44.563,89.63965 +508359,45.865,88.9869 +508360,47.185,88.3474 +508361,41.901,90.26776 +508362,43.209,89.64111 +508363,44.536,89.02659 +508364,45.879,88.4256 +508365,40.525,90.23067 +508366,41.857,89.64237 +508367,43.205,89.06645 +508368,44.572,88.5043 +508369,39.151,90.19309 +508370,40.504,89.64345 +508371,41.875,89.10644 +508372,43.263,88.5835 +508373,37.777,90.15506 +508374,39.151,89.64435 +508375,40.544,89.14657 +508376,41.954,88.6631 +508377,36.405,90.1166 +508378,37.8,89.64508 +508379,39.212,89.18681 +508380,40.643,88.7432 +508381,35.034,90.077738 +508382,36.448,89.64565 +508383,37.881,89.22717 +508384,39.331,88.8237 +508385,33.664,90.038513 +508386,35.097,89.64608 +508387,36.548,89.26762 +508388,38.019,88.9045 +508389,32.295,89.9989493 +508390,33.746,89.64637 +508391,35.216,89.30816 +508392,36.704,88.9857 +508393,30.927,89.959078 +508394,32.395,89.64653 +508395,33.883,89.34878 +508396,35.389,89.06724 +508397,29.561,89.918929 +508398,31.045,89.64657 +508399,32.549,89.38946 +508400,34.073,89.14903 +508401,28.195,89.87853 +508402,29.695,89.6465 +508403,31.215,89.4302 +508404,32.755,89.23106 +508405,26.831,89.83792 +508406,28.345,89.64634 +508407,29.881,89.47099 +508408,31.436,89.3133 +508409,25.468,89.79712 +508410,26.996,89.64609 +508411,28.546,89.51181 +508412,30.116,89.39573 +508413,24.106,89.75616 +508414,25.647,89.64577 +508415,27.21,89.55266 +508416,28.794,89.4783 +508417,22.746,89.71508 +508418,24.299,89.64537 +508419,25.875,89.59351 +508420,27.472,89.56099 +508421,21.386,89.6739 +508422,22.951,89.64493 +508423,24.538,89.63438 +508424,26.148,89.64376 +508425,20.028,89.63266 +508426,21.604,89.64443 +508427,23.202,89.67523 +508428,24.822,89.72659 +508429,18.671,89.59138 +508430,20.256,89.64391 +508431,21.864,89.71606 +508432,23.496,89.80943 +508433,17.316,89.5501 +508434,18.909,89.64335 +508435,20.527,89.75686 +508436,22.168,89.89225 +508437,15.962,89.50884 +508438,17.563,89.64279 +508439,19.189,89.79762 +508440,20.839,89.975023 +508441,14.609,89.46765 +508442,16.217,89.64222 +508443,17.85,89.83833 +508444,19.508,90.057715 +508445,13.257,89.42654 +508446,14.871,89.64165 +508447,16.511,89.87898 +508448,18.176,90.14029 +508449,11.906,89.38555 +508450,13.526,89.64111 +508451,15.171,89.919553 +508452,16.843,90.22272 +508453,10.557,89.34471 +508454,12.181,89.64059 +508455,13.831,89.96004 +508456,15.509,90.30496 +508457,9.2091,89.30406 +508458,10.837,89.64011 +508459,12.491,90.0004321 +508460,14.173,90.38699 +508461,7.8624,89.26361 +508462,9.4926,89.63967 +508463,11.15,90.040717 +508464,12.836,90.46877 +508465,6.5169,89.2234 +508466,8.1489,89.6393 +508467,9.8086,90.080885 +508468,11.497,90.55027 +508469,5.1728,89.18346 +508470,6.8056,89.63899 +508471,8.4666,90.12093 +508472,10.157,90.63145 +508473,3.8299,89.14382 +508474,5.4627,89.63876 +508475,7.1242,90.16083 +508476,8.8162,90.71228 +508477,2.4883,89.10451 +508478,4.1202,89.63862 +508479,5.7814,90.20058 +508480,7.4736,90.79274 +508481,1.1479,89.06556 +508482,2.7781,89.63858 +508483,4.438,90.24017 +508484,6.1297,90.87278 +508485,359.81,89.02699 +508486,1.4364,89.63865 +508487,3.0942,90.27959 +508488,4.7845,90.95237 +508489,358.47,88.9888 +508490,0.095114,89.63884 +508491,1.7499,90.31883 +508492,3.4379,91.0315 +508493,357.13,88.9512 +508494,358.75,89.63915 +508495,0.40514,90.35787 +508496,2.09,91.1101 +508497,355.8,88.9139 +508498,357.41,89.63961 +508499,359.06,90.39672 +508500,0.74068,91.1881 +508501,354.47,88.8772 +508502,356.07,89.64021 +508503,357.71,90.43535 +508504,359.39,91.2656 +508505,353.13,88.841 +508506,354.73,89.64097 +508507,356.37,90.47376 +508508,358.04,91.3425 +508509,351.8,88.8054 +508510,353.39,89.6419 +508511,355.02,90.51194 +508512,356.68,91.4188 +508513,350.47,88.7704 +508514,352.06,89.643 +508515,353.67,90.54987 +508516,355.33,91.4943 +508517,349.14,88.7359 +508518,350.72,89.64429 +508519,352.33,90.58755 +508520,353.97,91.5692 +508521,347.81,88.7022 +508522,349.38,89.64578 +508523,350.98,90.62497 +508524,352.62,91.6434 +508525,346.49,88.669 +508526,348.04,89.64747 +508527,349.63,90.66212 +508528,351.26,91.7167 +508529,345.16,88.6366 +508530,346.7,89.64937 +508531,348.28,90.69898 +508532,349.9,91.7893 +508533,343.84,88.6049 +508534,345.37,89.6515 +508535,346.93,90.73556 +508536,348.54,91.8611 +508537,342.51,88.574 +508538,344.03,89.65386 +508539,345.58,90.77183 +508540,347.18,91.932 +508541,341.19,88.5438 +508542,342.69,89.65645 +508543,344.23,90.8078 +508544,345.81,92.0021 +508545,339.87,88.5144 +508546,341.36,89.6593 +508547,342.88,90.84344 +508548,344.45,92.0713 +508549,338.55,88.4859 +508550,340.02,89.6624 +508551,341.53,90.87876 +508552,343.08,92.1395 +508553,337.23,88.4582 +508554,338.69,89.66577 +508555,340.18,90.91374 +508556,341.71,92.2067 +508557,335.91,88.4313 +508558,337.35,89.66941 +508559,338.83,90.94837 +508560,340.34,92.273 +508561,334.6,88.4054 +508562,336.02,89.67333 +508563,337.47,90.98266 +508564,338.97,92.3383 +508565,333.28,88.3804 +508566,334.68,89.67754 +508567,336.12,91.0166 +508568,337.6,92.4025 +508569,331.97,88.3563 +508570,333.35,89.68204 +508571,334.77,91.0501 +508572,336.23,92.4657 +508573,330.65,88.3332 +508574,332.01,89.68685 +508575,333.41,91.0833 +508576,334.86,92.5278 +508577,329.34,88.311 +508578,330.68,89.69197 +508579,332.06,91.1161 +508580,333.48,92.5888 +508581,328.03,88.2899 +508582,329.35,89.69741 +508583,330.71,91.1485 +508584,332.11,92.6486 +508585,326.72,88.2698 +508586,328.02,89.70317 +508587,329.35,91.1805 +508588,330.73,92.7073 +508589,325.41,88.2508 +508590,326.68,89.70927 +508591,327.99,91.2121 +508592,329.35,92.7648 +508593,324.1,88.2328 +508594,325.35,89.7157 +508595,326.64,91.2432 +508596,327.97,92.8211 +508597,322.79,88.2158 +508598,324.02,89.72248 +508599,325.28,91.274 +508600,326.59,92.8762 +508601,321.49,88.2 +508602,322.69,89.72961 +508603,323.93,91.3043 +508604,325.21,92.9301 +508605,320.18,88.1854 +508606,321.36,89.7371 +508607,322.57,91.3342 +508608,323.83,92.9827 +508609,318.88,88.1718 +508610,320.02,89.74495 +508611,321.21,91.3636 +508612,322.45,93.034 +508613,317.57,88.1594 +508614,318.69,89.75316 +508615,319.86,91.3927 +508616,321.06,93.084 +508617,316.27,88.1482 +508618,317.36,89.76175 +508619,318.5,91.4212 +508620,319.68,93.1327 +508621,314.97,88.1382 +508622,316.03,89.77073 +508623,317.14,91.4493 +508624,318.29,93.18 +508625,313.66,88.1293 +508626,314.7,89.78008 +508627,315.78,91.4769 +508628,316.91,93.2261 +508629,312.36,88.1217 +508630,313.37,89.78982 +508631,314.42,91.5041 +508632,315.52,93.2707 +508633,311.06,88.1153 +508634,312.04,89.79996 +508635,313.06,91.5308 +508636,314.13,93.314 +508637,309.76,88.1102 +508638,310.71,89.8105 +508639,311.7,91.557 +508640,312.74,93.3559 +508641,308.46,88.1063 +508642,309.39,89.82143 +508643,310.34,91.5827 +508644,311.35,93.3964 +508645,307.17,88.1037 +508646,308.06,89.83278 +508647,308.98,91.6079 +508648,309.96,93.4354 +508649,305.87,88.1024 +508650,306.73,89.84453 +508651,307.62,91.6327 +508652,308.57,93.4731 +508653,304.57,88.1024 +508654,305.4,89.8567 +508655,306.26,91.6569 +508656,307.18,93.5093 +508657,303.27,88.1036 +508658,304.07,89.86928 +508659,304.9,91.6807 +508660,305.78,93.544 +508661,301.98,88.1062 +508662,302.74,89.88229 +508663,303.54,91.704 +508664,304.39,93.5773 +508665,300.68,88.1101 +508666,301.41,89.89571 +508667,302.18,91.7267 +508668,302.99,93.6092 +508669,299.39,88.1153 +508670,300.09,89.909563 +508671,300.82,91.7489 +508672,301.6,93.6395 +508673,298.09,88.1219 +508674,298.76,89.923841 +508675,299.46,91.7707 +508676,300.2,93.6684 +508677,296.8,88.1298 +508678,297.43,89.938549 +508679,298.1,91.7919 +508680,298.81,93.6958 +508681,295.51,88.1391 +508682,296.1,89.953689 +508683,296.73,91.8126 +508684,297.41,93.7216 +508685,294.21,88.1497 +508686,294.78,89.969262 +508687,295.37,91.8328 +508688,296.01,93.746 +508689,292.92,88.1617 +508690,293.45,89.98527 +508691,294.01,91.8525 +508692,294.61,93.7689 +508693,291.63,88.175 +508694,292.12,90.0017133 +508695,292.65,91.8717 +508696,293.22,93.7903 +508697,290.34,88.1898 +508698,290.79,90.018594 +508699,291.28,91.8903 +508700,291.82,93.8102 +508701,289.04,88.2058 +508702,289.47,90.035911 +508703,289.92,91.9084 +508704,290.42,93.8286 +508705,287.75,88.2233 +508706,288.14,90.053667 +508707,288.56,91.926 +508708,289.02,93.8454 +508709,286.46,88.2421 +508710,286.81,90.071862 +508711,287.2,91.9431 +508712,287.62,93.8608 +508713,285.17,88.2624 +508714,285.48,90.090494 +508715,285.83,91.9597 +508716,286.22,93.8746 +508717,283.88,88.2839 +508718,284.16,90.10956 +508719,284.47,91.9757 +508720,284.82,93.887 +508721,282.59,88.3069 +508722,282.83,90.12907 +508723,283.11,91.9912 +508724,283.42,93.8978 +508725,281.3,88.3313 +508726,281.5,90.14902 +508727,281.74,92.0062 +508728,282.02,93.9072 +508729,280.01,88.357 +508730,280.18,90.1694 +508731,280.38,92.0207 +508732,280.61,93.915 +508733,278.72,88.384 +508734,278.85,90.19021 +508735,279.01,92.0347 +508736,279.21,93.9214 +508737,277.42,88.4125 +508738,277.52,90.21146 +508739,277.65,92.0481 +508740,277.81,93.9263 +508741,276.13,88.4423 +508742,276.2,90.23314 +508743,276.29,92.0611 +508744,276.41,93.9297 +508745,274.84,88.4735 +508746,274.87,90.25525 +508747,274.92,92.0735 +508748,275.01,93.9316 +508749,273.55,88.506 +508750,273.54,90.27779 +508751,273.56,92.0854 +508752,273.61,93.9321 +508753,272.26,88.5399 +508754,272.21,90.30075 +508755,272.2,92.0968 +508756,272.21,93.9312 +508757,270.97,88.5751 +508758,270.89,90.32413 +508759,270.83,92.1077 +508760,270.8,93.9288 +508761,269.68,88.6116 +508762,269.56,90.34794 +508763,269.47,92.1181 +508764,269.4,93.9249 +508765,268.39,88.6495 +508766,268.23,90.37216 +508767,268.1,92.128 +508768,268,93.9197 +508769,267.1,88.6886 +508770,266.91,90.39679 +508771,266.74,92.1374 +508772,266.6,93.913 +508773,265.8,88.7291 +508774,265.58,90.42183 +508775,265.38,92.1464 +508776,265.2,93.9049 +508777,264.51,88.7709 +508778,264.25,90.44728 +508779,264.01,92.1548 +508780,263.8,93.8955 +508781,263.22,88.814 +508782,262.92,90.47313 +508783,262.65,92.1627 +508784,262.4,93.8847 +508785,261.93,88.8583 +508786,261.6,90.49938 +508787,261.28,92.1702 +508788,261,93.8725 +508789,260.64,88.9039 +508790,260.27,90.52602 +508791,259.92,92.1772 +508792,259.6,93.859 +508793,259.34,88.9507 +508794,258.94,90.55304 +508795,258.56,92.1837 +508796,258.2,93.8442 +508797,258.05,88.9988 +508798,257.61,90.58045 +508799,257.19,92.1898 +508800,256.8,93.8281 +508801,256.75,89.04805 +508802,256.28,90.60824 +508803,255.83,92.1954 +508804,255.4,93.8107 +508805,255.46,89.09854 +508806,254.95,90.6364 +508807,254.47,92.2006 +508808,254,93.792 +508809,254.16,89.15021 +508810,253.62,90.66493 +508811,253.1,92.2053 +508812,252.6,93.7721 +508813,252.87,89.20306 +508814,252.3,90.69382 +508815,251.74,92.2096 +508816,251.2,93.7509 +508817,251.57,89.25706 +508818,250.97,90.72307 +508819,250.38,92.2134 +508820,249.81,93.7285 +508821,250.28,89.31219 +508822,249.64,90.75266 +508823,249.01,92.2168 +508824,248.41,93.705 +508825,248.98,89.36845 +508826,248.31,90.78259 +508827,247.65,92.2198 +508828,247.01,93.6802 +508829,247.68,89.4258 +508830,246.98,90.81287 +508831,246.29,92.2223 +508832,245.62,93.6544 +508833,246.38,89.48423 +508834,245.65,90.84347 +508835,244.93,92.2245 +508836,244.22,93.6273 +508837,245.08,89.54373 +508838,244.32,90.87439 +508839,243.56,92.2263 +508840,242.83,93.5992 +508841,243.78,89.60426 +508842,242.99,90.90563 +508843,242.2,92.2276 +508844,241.43,93.57 +508845,242.48,89.66582 +508846,241.66,90.93717 +508847,240.84,92.2286 +508848,240.04,93.5398 +508849,241.18,89.72837 +508850,240.32,90.96901 +508851,239.48,92.2292 +508852,238.65,93.5085 +508853,239.88,89.79189 +508854,238.99,91.0012 +508855,238.12,92.2294 +508856,237.26,93.4762 +508857,238.58,89.85637 +508858,237.66,91.0336 +508859,236.76,92.2293 +508860,235.87,93.443 +508861,237.28,89.921774 +508862,236.33,91.0663 +508863,235.4,92.2288 +508864,234.48,93.4087 +508865,235.97,89.988084 +508866,235,91.0992 +508867,234.03,92.228 +508868,233.09,93.3736 +508869,234.67,90.055275 +508870,233.66,91.1325 +508871,232.67,92.2268 +508872,231.7,93.3375 +508873,233.36,90.12332 +508874,232.33,91.1659 +508875,231.31,92.2253 +508876,230.31,93.3006 +508877,232.05,90.1922 +508878,231,91.1996 +508879,229.95,92.2235 +508880,228.92,93.2628 +508881,230.75,90.26188 +508882,229.66,91.2336 +508883,228.59,92.2213 +508884,227.54,93.2242 +508885,229.44,90.33234 +508886,228.33,91.2678 +508887,227.23,92.2189 +508888,226.15,93.1848 +508889,228.13,90.40355 +508890,227,91.3021 +508891,225.88,92.2161 +508892,224.77,93.1446 +508893,226.82,90.47548 +508894,225.66,91.3367 +508895,224.52,92.2131 +508896,223.38,93.1037 +508897,225.51,90.54811 +508898,224.33,91.3715 +508899,223.16,92.2098 +508900,222,93.062 +508901,224.19,90.62141 +508902,222.99,91.4065 +508903,221.8,92.2063 +508904,220.62,93.0197 +508905,222.88,90.69534 +508906,221.66,91.4416 +508907,220.44,92.2025 +508908,219.24,92.9768 +508909,221.57,90.76989 +508910,220.32,91.477 +508911,219.08,92.1984 +508912,217.86,92.9332 +508913,220.25,90.84502 +508914,218.98,91.5124 +508915,217.73,92.1941 +508916,216.48,92.889 +508917,218.93,90.9207 +508918,217.65,91.548 +508919,216.37,92.1896 +508920,215.1,92.8443 +508921,217.62,90.9969 +508922,216.31,91.5838 +508923,215.01,92.1848 +508924,213.73,92.799 +508925,216.3,91.0736 +508926,214.97,91.6197 +508927,213.66,92.1799 +508928,212.35,92.7533 +508929,214.98,91.1507 +508930,213.63,91.6557 +508931,212.3,92.1748 +508932,210.98,92.707 +508933,213.66,91.2283 +508934,212.3,91.6918 +508935,210.94,92.1694 +508936,209.6,92.6604 +508937,212.34,91.3063 +508938,210.96,91.728 +508939,209.59,92.1639 +508940,208.23,92.6133 +508941,211.01,91.3846 +508942,209.62,91.7642 +508943,208.23,92.1583 +508944,206.86,92.5658 +508945,209.69,91.4633 +508946,208.28,91.8006 +508947,206.88,92.1525 +508948,205.49,92.518 +508949,208.36,91.5423 +508950,206.94,91.837 +508951,205.52,92.1465 +508952,204.12,92.4699 +508953,207.04,91.6216 +508954,205.6,91.8734 +508955,204.17,92.1404 +508956,202.75,92.4215 +508957,205.71,91.701 +508958,204.26,91.9099 +508959,202.82,92.1342 +508960,201.39,92.3729 +508961,204.38,91.7807 +508962,202.92,91.9465 +508963,201.46,92.1279 +508964,200.02,92.324 +508965,203.05,91.8606 +508966,201.58,91.983 +508967,200.11,92.1215 +508968,198.66,92.275 +508969,201.72,91.9406 +508970,200.23,92.0196 +508971,198.76,92.1149 +508972,197.3,92.2258 +508973,200.39,92.0207 +508974,198.89,92.0561 +508975,197.41,92.1083 +508976,195.93,92.1765 +508977,199.05,92.1009 +508978,197.55,92.0926 +508979,196.05,92.1017 +508980,194.57,92.1271 +508981,197.72,92.1811 +508982,196.2,92.1291 +508983,194.7,92.095 +508984,193.21,92.0776 +508985,196.38,92.2613 +508986,194.86,92.1656 +508987,193.35,92.0882 +508988,191.86,92.0281 +508989,195.05,92.3415 +508990,193.52,92.202 +508991,192,92.0814 +508992,190.5,91.9786 +508993,193.71,92.4216 +508994,192.17,92.2384 +508995,190.65,92.0746 +508996,189.14,91.9292 +508997,192.37,92.5016 +508998,190.83,92.2747 +508999,189.3,92.0677 +509000,187.79,91.8798 +509001,191.03,92.5815 +509002,189.48,92.3109 +509003,187.95,92.0609 +509004,186.44,91.8305 +509005,189.68,92.6612 +509006,188.13,92.347 +509007,186.6,92.0541 +509008,185.08,91.7814 +509009,188.34,92.7407 +509010,186.79,92.383 +509011,185.25,92.0472 +509012,183.73,91.7324 +509013,186.99,92.82 +509014,185.44,92.4188 +509015,183.9,92.0405 +509016,182.38,91.6836 +509017,185.65,92.899 +509018,184.09,92.4546 +509019,182.56,92.0337 +509020,181.04,91.6351 +509021,184.3,92.9777 +509022,182.75,92.4902 +509023,181.21,92.027 +509024,179.69,91.5868 +509025,182.95,93.0561 +509026,181.4,92.5257 +509027,179.86,92.0204 +509028,178.34,91.5388 +509029,181.6,93.134 +509030,180.05,92.561 +509031,178.51,92.0138 +509032,177,91.4911 +509033,180.25,93.2116 +509034,178.7,92.5961 +509035,177.17,92.0073 +509036,175.65,91.4437 +509037,178.9,93.2888 +509038,177.35,92.6311 +509039,175.82,92.0009 +509040,174.31,91.3968 +509041,177.54,93.3655 +509042,176,92.6658 +509043,174.48,91.9946 +509044,172.97,91.3503 +509045,176.19,93.4416 +509046,174.65,92.7004 +509047,173.13,91.9885 +509048,171.63,91.3042 +509049,174.83,93.5172 +509050,173.3,92.7347 +509051,171.79,91.9824 +509052,170.29,91.2585 +509053,173.48,93.5923 +509054,171.95,92.7688 +509055,170.44,91.9765 +509056,168.95,91.2134 +509057,172.12,93.6667 +509058,170.6,92.8027 +509059,169.1,91.9707 +509060,167.62,91.1688 +509061,170.76,93.7406 +509062,169.24,92.8363 +509063,167.75,91.9651 +509064,166.28,91.1248 +509065,169.4,93.8137 +509066,167.89,92.8696 +509067,166.41,91.9596 +509068,164.95,91.0813 +509069,168.03,93.8861 +509070,166.54,92.9027 +509071,165.07,91.9544 +509072,163.62,91.0385 +509073,166.67,93.9578 +509074,165.19,92.9355 +509075,163.72,91.9493 +509076,162.28,90.9963 +509077,165.31,94.0288 +509078,163.83,92.9681 +509079,162.38,91.9443 +509080,160.95,90.95478 +509081,163.94,94.0989 +509082,162.48,93.0003 +509083,161.04,91.9396 +509084,159.62,90.91396 +509085,162.57,94.1682 +509086,161.12,93.0322 +509087,159.7,91.9351 +509088,158.3,90.87386 +509089,161.2,94.2367 +509090,159.77,93.0638 +509091,158.36,91.9308 +509092,156.97,90.83452 +509093,159.83,94.3043 +509094,158.41,93.0951 +509095,157.01,91.9268 +509096,155.64,90.79596 +509097,158.46,94.3709 +509098,157.06,93.126 +509099,155.67,91.923 +509100,154.32,90.7582 +509101,157.09,94.4366 +509102,155.7,93.1566 +509103,154.33,91.9194 +509104,152.99,90.72127 +509105,155.72,94.5014 +509106,154.34,93.1868 +509107,152.99,91.9161 +509108,151.67,90.68519 +509109,154.34,94.5651 +509110,152.99,93.2167 +509111,151.65,91.913 +509112,150.35,90.64999 +509113,152.97,94.6278 +509114,151.63,93.2462 +509115,150.31,91.9103 +509116,149.03,90.6157 +509117,151.59,94.6894 +509118,150.27,93.2753 +509119,148.98,91.9078 +509120,147.71,90.58233 +509121,150.22,94.75 +509122,148.91,93.304 +509123,147.64,91.9055 +509124,146.39,90.54991 +509125,148.84,94.8094 +509126,147.55,93.3323 +509127,146.3,91.9036 +509128,145.07,90.51847 +509129,147.46,94.8677 +509130,146.19,93.3602 +509131,144.96,91.902 +509132,143.75,90.48802 +509133,146.08,94.9248 +509134,144.83,93.3877 +509135,143.62,91.9007 +509136,142.44,90.45858 +509137,144.7,94.9808 +509138,143.48,93.4148 +509139,142.28,91.8997 +509140,141.12,90.43018 +509141,143.31,95.0355 +509142,142.11,93.4414 +509143,140.95,91.8991 +509144,139.81,90.40284 +509145,141.93,95.0891 +509146,140.75,93.4677 +509147,139.61,91.8987 +509148,138.49,90.37658 +509149,140.55,95.1413 +509150,139.39,93.4934 +509151,138.27,91.8987 +509152,137.18,90.35142 +509153,139.16,95.1923 +509154,138.03,93.5187 +509155,136.94,91.8991 +509156,135.87,90.32737 +509157,137.77,95.2419 +509158,136.67,93.5436 +509159,135.6,91.8998 +509160,134.56,90.30446 +509161,136.39,95.2903 +509162,135.31,93.5679 +509163,134.26,91.9008 +509164,133.25,90.2827 +509165,135,95.3373 +509166,133.95,93.5918 +509167,132.93,91.9023 +509168,131.94,90.26211 +509169,133.61,95.383 +509170,132.59,93.6153 +509171,131.59,91.904 +509172,130.63,90.24271 +509173,132.22,95.4272 +509174,131.22,93.6382 +509175,130.26,91.9062 +509176,129.32,90.22451 +509177,130.83,95.4701 +509178,129.86,93.6607 +509179,128.92,91.9088 +509180,128.01,90.20753 +509181,129.44,95.5116 +509182,128.5,93.6826 +509183,127.59,91.9117 +509184,126.71,90.19179 +509185,128.05,95.5516 +509186,127.13,93.7041 +509187,126.25,91.915 +509188,125.4,90.17729 +509189,126.65,95.5902 +509190,125.77,93.7251 +509191,124.92,91.9187 +509192,124.09,90.16406 +509193,125.26,95.6273 +509194,124.41,93.7455 +509195,123.58,91.9228 +509196,122.79,90.1521 +509197,123.87,95.663 +509198,123.04,93.7654 +509199,122.25,91.9273 +509200,121.48,90.14142 +509201,122.47,95.6972 +509202,121.68,93.7848 +509203,120.92,91.9322 +509204,120.18,90.13205 +509205,121.07,95.7298 +509206,120.31,93.8037 +509207,119.58,91.9376 +509208,118.88,90.12399 +509209,119.68,95.761 +509210,118.95,93.8221 +509211,118.25,91.9433 +509212,117.58,90.11725 +509213,118.28,95.7906 +509214,117.58,93.8399 +509215,116.92,91.9495 +509216,116.27,90.11184 +509217,116.88,95.8187 +509218,116.22,93.8572 +509219,115.58,91.9561 +509220,114.97,90.10777 +509221,115.49,95.8453 +509222,114.85,93.874 +509223,114.25,91.9631 +509224,113.67,90.10505 +509225,114.09,95.8703 +509226,113.49,93.8902 +509227,112.92,91.9705 +509228,112.37,90.10369 +509229,112.69,95.8937 +509230,112.12,93.9058 +509231,111.58,91.9783 +509232,111.07,90.10369 +509233,111.29,95.9156 +509234,110.76,93.921 +509235,110.25,91.9866 +509236,109.77,90.10507 +509237,109.89,95.9359 +509238,109.39,93.9356 +509239,108.92,91.9953 +509240,108.47,90.10781 +509241,108.49,95.9547 +509242,108.02,93.9496 +509243,107.58,92.0045 +509244,107.17,90.11195 +509245,107.09,95.9718 +509246,106.66,93.9631 +509247,106.25,92.0141 +509248,105.87,90.11746 +509249,105.69,95.9874 +509250,105.29,93.976 +509251,104.92,92.0241 +509252,104.57,90.12437 +509253,104.29,96.0014 +509254,103.92,93.9884 +509255,103.59,92.0346 +509256,103.27,90.13267 +509257,102.89,96.0138 +509258,102.56,94.0002 +509259,102.25,92.0455 +509260,101.97,90.14237 +509261,101.49,96.0246 +509262,101.19,94.0115 +509263,100.92,92.0568 +509264,100.68,90.15346 +509265,100.08,96.0339 +509266,99.824,94.0222 +509267,99.59,92.0686 +509268,99.377,90.16595 +509269,98.682,96.0415 +509270,98.457,94.0324 +509271,98.257,92.0808 +509272,98.079,90.17984 +509273,97.28,96.0476 +509274,97.09,94.042 +509275,96.925,92.0934 +509276,96.781,90.19513 +509277,95.877,96.0521 +509278,95.723,94.0511 +509279,95.593,92.1065 +509280,95.483,90.21182 +509281,94.475,96.055 +509282,94.356,94.0596 +509283,94.26,92.12 +509284,94.185,90.2299 +509285,93.073,96.0563 +509286,92.989,94.0675 +509287,92.928,92.134 +509288,92.887,90.24937 +509289,91.67,96.0561 +509290,91.622,94.0749 +509291,91.596,92.1484 +509292,91.589,90.27024 +509293,90.268,96.0543 +509294,90.254,94.0818 +509295,90.263,92.1632 +509296,90.291,90.29249 +509297,88.865,96.051 +509298,88.887,94.0881 +509299,88.931,92.1784 +509300,88.993,90.31612 +509301,87.463,96.0461 +509302,87.52,94.0939 +509303,87.598,92.1941 +509304,87.695,90.34113 +509305,86.06,96.0396 +509306,86.153,94.0991 +509307,86.266,92.2102 +509308,86.397,90.36751 +509309,84.658,96.0317 +509310,84.786,94.1038 +509311,84.933,92.2268 +509312,85.098,90.39525 +509313,83.256,96.0222 +509314,83.419,94.108 +509315,83.6,92.2437 +509316,83.799,90.42435 +509317,81.854,96.0112 +509318,82.051,94.1116 +509319,82.267,92.2611 +509320,82.5,90.45479 +509321,80.452,95.9987 +509322,80.684,94.1147 +509323,80.935,92.2789 +509324,81.201,90.48658 +509325,79.051,95.9848 +509326,79.317,94.1173 +509327,79.602,92.2971 +509328,79.902,90.51969 +509329,77.649,95.9693 +509330,77.95,94.1193 +509331,78.268,92.3157 +509332,78.602,90.55412 +509333,76.248,95.9525 +509334,76.584,94.1209 +509335,76.935,92.3347 +509336,77.302,90.58987 +509337,74.848,95.9341 +509338,75.217,94.1219 +509339,75.602,92.3541 +509340,76.001,90.62691 +509341,73.447,95.9144 +509342,73.85,94.1224 +509343,74.268,92.3739 +509344,74.7,90.66523 +509345,72.047,95.8932 +509346,72.484,94.1224 +509347,72.935,92.3941 +509348,73.399,90.70483 +509349,70.648,95.8707 +509350,71.117,94.1219 +509351,71.601,92.4147 +509352,72.098,90.74569 +509353,69.249,95.8467 +509354,69.751,94.1209 +509355,70.267,92.4356 +509356,70.795,90.78779 +509357,67.85,95.8215 +509358,68.385,94.1194 +509359,68.933,92.457 +509360,69.493,90.83112 +509361,66.452,95.7948 +509362,67.019,94.1175 +509363,67.598,92.4787 +509364,68.19,90.87566 +509365,65.054,95.7669 +509366,65.653,94.1151 +509367,66.264,92.5007 +509368,66.886,90.92141 +509369,63.657,95.7377 +509370,64.287,94.1122 +509371,64.929,92.5231 +509372,65.582,90.96834 +509373,62.26,95.7072 +509374,62.921,94.1088 +509375,63.594,92.5459 +509376,64.277,91.0164 +509377,60.864,95.6754 +509378,61.556,94.105 +509379,62.259,92.569 +509380,62.972,91.0657 +509381,59.468,95.6424 +509382,60.191,94.1007 +509383,60.923,92.5925 +509384,61.666,91.116 +509385,58.073,95.6082 +509386,58.826,94.096 +509387,59.588,92.6163 +509388,60.359,91.1675 +509389,56.679,95.5728 +509390,57.461,94.0909 +509391,58.252,92.6404 +509392,59.052,91.2201 +509393,55.286,95.5363 +509394,56.096,94.0853 +509395,56.916,92.6649 +509396,57.744,91.2737 +509397,53.893,95.4986 +509398,54.732,94.0793 +509399,55.579,92.6896 +509400,56.435,91.3284 +509401,52.501,95.4598 +509402,53.368,94.0729 +509403,54.243,92.7147 +509404,55.126,91.3841 +509405,51.109,95.4199 +509406,52.004,94.0661 +509407,52.906,92.74 +509408,53.816,91.4408 +509409,49.719,95.379 +509410,50.64,94.0589 +509411,51.569,92.7656 +509412,52.505,91.4985 +509413,48.329,95.337 +509414,49.276,94.0513 +509415,50.231,92.7915 +509416,51.193,91.5572 +509417,46.94,95.294 +509418,47.913,94.0433 +509419,48.893,92.8177 +509420,49.88,91.6168 +509421,45.552,95.25 +509422,46.55,94.035 +509423,47.555,92.8442 +509424,48.567,91.6773 +509425,44.164,95.2051 +509426,45.187,94.0263 +509427,46.217,92.8709 +509428,47.253,91.7386 +509429,42.778,95.1593 +509430,43.825,94.0172 +509431,44.878,92.8978 +509432,45.937,91.8009 +509433,41.392,95.1125 +509434,42.463,94.0078 +509435,43.539,92.925 +509436,44.621,91.864 +509437,40.008,95.0649 +509438,41.101,93.9981 +509439,42.2,92.9524 +509440,43.304,91.9279 +509441,38.624,95.0165 +509442,39.739,93.9881 +509443,40.86,92.98 +509444,41.987,91.9926 +509445,37.241,94.9673 +509446,38.378,93.9777 +509447,39.52,93.0078 +509448,40.668,92.058 +509449,35.859,94.9172 +509450,37.017,93.967 +509451,38.18,93.0359 +509452,39.348,92.1241 +509453,34.478,94.8665 +509454,35.656,93.956 +509455,36.84,93.0641 +509456,38.027,92.191 +509457,33.099,94.815 +509458,34.296,93.9448 +509459,35.499,93.0925 +509460,36.705,92.2585 +509461,31.72,94.7628 +509462,32.936,93.9332 +509463,34.157,93.1211 +509464,35.383,92.3267 +509465,30.342,94.71 +509466,31.576,93.9214 +509467,32.815,93.1498 +509468,34.059,92.3955 +509469,28.965,94.6566 +509470,30.217,93.9094 +509471,31.473,93.1787 +509472,32.734,92.4649 +509473,27.589,94.6026 +509474,28.858,93.8971 +509475,30.131,93.2077 +509476,31.408,92.5348 +509477,26.215,94.548 +509478,27.499,93.8846 +509479,28.788,93.2368 +509480,30.081,92.6053 +509481,24.841,94.4929 +509482,26.141,93.8718 +509483,27.445,93.2661 +509484,28.753,92.6762 +509485,23.469,94.4373 +509486,24.782,93.8588 +509487,26.101,93.2954 +509488,27.424,92.7477 +509489,22.097,94.3812 +509490,23.425,93.8457 +509491,24.757,93.3249 +509492,26.094,92.8195 +509493,20.727,94.3247 +509494,22.067,93.8323 +509495,23.413,93.3545 +509496,24.762,92.8917 +509497,19.358,94.2678 +509498,20.71,93.8188 +509499,22.068,93.3841 +509500,23.43,92.9644 +509501,17.99,94.2106 +509502,19.354,93.805 +509503,20.723,93.4138 +509504,22.096,93.0373 +509505,16.623,94.153 +509506,17.998,93.7912 +509507,19.378,93.4435 +509508,20.762,93.1106 +509509,15.257,94.0951 +509510,16.642,93.7771 +509511,18.032,93.4733 +509512,19.426,93.1841 +509513,13.892,94.037 +509514,15.286,93.763 +509515,16.685,93.5031 +509516,18.089,93.2578 +509517,12.529,93.9786 +509518,13.931,93.7487 +509519,15.339,93.5329 +509520,16.75,93.3318 +509521,11.166,93.92 +509522,12.576,93.7343 +509523,13.992,93.5628 +509524,15.411,93.406 +509525,9.8052,93.8613 +509526,11.222,93.7198 +509527,12.644,93.5926 +509528,14.071,93.4802 +509529,8.4452,93.8024 +509530,9.8677,93.7052 +509531,11.296,93.6224 +509532,12.729,93.5546 +509533,7.0864,93.7435 +509534,8.5141,93.6905 +509535,9.9478,93.6522 +509536,11.386,93.6291 +509537,5.7287,93.6845 +509538,7.1608,93.6758 +509539,8.599,93.682 +509540,10.042,93.7036 +509541,4.3723,93.6254 +509542,5.8079,93.661 +509543,7.2498,93.7117 +509544,8.6965,93.778 +509545,3.017,93.5664 +509546,4.4553,93.6461 +509547,5.9002,93.7414 +509548,7.3501,93.8525 +509549,1.6629,93.5074 +509550,3.1032,93.6312 +509551,4.5502,93.771 +509552,6.0024,93.9269 +509553,0.30999,93.4484 +509554,1.7515,93.6163 +509555,3.1998,93.8005 +509556,4.6535,94.0012 +509557,358.96,93.3896 +509558,0.40008,93.6014 +509559,1.8489,93.8299 +509560,3.3034,94.0754 +509561,357.61,93.3309 +509562,359.05,93.5865 +509563,0.49766,93.8592 +509564,1.9521,94.1494 +509565,356.26,93.2723 +509566,357.7,93.5715 +509567,359.15,93.8883 +509568,0.59962,94.2231 +509569,354.91,93.214 +509570,356.35,93.5566 +509571,357.79,93.9174 +509572,359.25,94.2967 +509573,353.56,93.1559 +509574,355,93.5418 +509575,356.44,93.9463 +509576,357.89,94.37 +509577,352.22,93.098 +509578,353.65,93.5269 +509579,355.09,93.9751 +509580,356.53,94.443 +509581,350.87,93.0405 +509582,352.3,93.5122 +509583,353.74,94.0037 +509584,355.18,94.5156 +509585,349.53,92.9833 +509586,350.95,93.4974 +509587,352.38,94.0321 +509588,353.82,94.5878 +509589,348.19,92.9264 +509590,349.6,93.4828 +509591,351.03,94.0604 +509592,352.46,94.6597 +509593,346.85,92.8699 +509594,348.25,93.4682 +509595,349.67,94.0884 +509596,351.1,94.7311 +509597,345.51,92.8139 +509598,346.91,93.4538 +509599,348.32,94.1163 +509600,349.74,94.802 +509601,344.17,92.7583 +509602,345.56,93.4394 +509603,346.96,94.1439 +509604,348.37,94.8725 +509605,342.83,92.7031 +509606,344.21,93.4252 +509607,345.61,94.1713 +509608,347.01,94.9423 +509609,341.49,92.6485 +509610,342.87,93.411 +509611,344.25,94.1984 +509612,345.64,95.0116 +509613,340.16,92.5945 +509614,341.52,93.3971 +509615,342.89,94.2253 +509616,344.28,95.0803 +509617,338.82,92.541 +509618,340.17,93.3832 +509619,341.54,94.252 +509620,342.91,95.1484 +509621,337.49,92.4881 +509622,338.83,93.3696 +509623,340.18,94.2784 +509624,341.54,95.2157 +509625,336.16,92.4358 +509626,337.48,93.356 +509627,338.82,94.3044 +509628,340.17,95.2824 +509629,334.83,92.3842 +509630,336.14,93.3427 +509631,337.46,94.3302 +509632,338.8,95.3483 +509633,333.5,92.3333 +509634,334.8,93.3296 +509635,336.11,94.3557 +509636,337.43,95.4134 +509637,332.17,92.2831 +509638,333.45,93.3166 +509639,334.75,94.3809 +509640,336.05,95.4778 +509641,330.84,92.2336 +509642,332.11,93.3039 +509643,333.39,94.4058 +509644,334.68,95.5413 +509645,329.51,92.1849 +509646,330.76,93.2913 +509647,332.03,94.4303 +509648,333.3,95.6039 +509649,328.19,92.137 +509650,329.42,93.279 +509651,330.67,94.4545 +509652,331.93,95.6657 +509653,326.86,92.0899 +509654,328.08,93.267 +509655,329.31,94.4783 +509656,330.55,95.7265 +509657,325.54,92.0437 +509658,326.74,93.2551 +509659,327.95,94.5018 +509660,329.17,95.7863 +509661,324.21,91.9983 +509662,325.39,93.2435 +509663,326.59,94.5249 +509664,327.79,95.8452 +509665,322.89,91.9538 +509666,324.05,93.2322 +509667,325.22,94.5476 +509668,326.41,95.903 +509669,321.57,91.9103 +509670,322.71,93.2212 +509671,323.86,94.57 +509672,325.03,95.9598 +509673,320.25,91.8677 +509674,321.37,93.2104 +509675,322.5,94.5919 +509676,323.64,96.0156 +509677,318.93,91.826 +509678,320.03,93.1999 +509679,321.14,94.6134 +509680,322.26,96.0702 +509681,317.61,91.7854 +509682,318.69,93.1897 +509683,319.78,94.6346 +509684,320.88,96.1237 +509685,316.29,91.7458 +509686,317.35,93.1798 +509687,318.41,94.6552 +509688,319.49,96.1761 +509689,314.98,91.7072 +509690,316.01,93.1702 +509691,317.05,94.6755 +509692,318.1,96.2272 +509693,313.66,91.6696 +509694,314.67,93.1609 +509695,315.69,94.6953 +509696,316.72,96.2772 +509697,312.35,91.6332 +509698,313.33,93.152 +509699,314.32,94.7147 +509700,315.33,96.326 +509701,311.03,91.5978 +509702,311.99,93.1433 +509703,312.96,94.7336 +509704,313.94,96.3734 +509705,309.72,91.5635 +509706,310.65,93.135 +509707,311.59,94.7521 +509708,312.55,96.4197 +509709,308.41,91.5304 +509710,309.31,93.1271 +509711,310.23,94.7701 +509712,311.16,96.4646 +509713,307.09,91.4985 +509714,307.97,93.1195 +509715,308.86,94.7876 +509716,309.77,96.5082 +509717,305.78,91.4677 +509718,306.64,93.1122 +509719,307.5,94.8046 +509720,308.38,96.5504 +509721,304.47,91.4381 +509722,305.3,93.1054 +509723,306.13,94.8212 +509724,306.98,96.5913 +509725,303.16,91.4097 +509726,303.96,93.0988 +509727,304.77,94.8372 +509728,305.59,96.6308 +509729,301.85,91.3825 +509730,302.62,93.0927 +509731,303.4,94.8528 +509732,304.2,96.6689 +509733,300.54,91.3566 +509734,301.28,93.0869 +509735,302.04,94.8678 +509736,302.8,96.7056 +509737,299.24,91.3319 +509738,299.95,93.0815 +509739,300.67,94.8823 +509740,301.41,96.7408 +509741,297.93,91.3085 +509742,298.61,93.0766 +509743,299.3,94.8964 +509744,300.01,96.7746 +509745,296.62,91.2863 +509746,297.27,93.072 +509747,297.94,94.9099 +509748,298.61,96.8069 +509749,295.31,91.2655 +509750,295.94,93.0677 +509751,296.57,94.9228 +509752,297.22,96.8377 +509753,294.01,91.2459 +509754,294.6,93.0639 +509755,295.2,94.9352 +509756,295.82,96.867 +509757,292.7,91.2277 +509758,293.26,93.0605 +509759,293.84,94.9471 +509760,294.42,96.8948 +509761,291.4,91.2108 +509762,291.93,93.0576 +509763,292.47,94.9585 +509764,293.02,96.921 +509765,290.09,91.1952 +509766,290.59,93.055 +509767,291.1,94.9693 +509768,291.62,96.9458 +509769,288.79,91.181 +509770,289.26,93.0528 +509771,289.73,94.9796 +509772,290.22,96.9689 +509773,287.48,91.1682 +509774,287.92,93.0511 +509775,288.37,94.9893 +509776,288.82,96.9905 +509777,286.18,91.1567 +509778,286.58,93.0498 +509779,287,94.9984 +509780,287.42,97.0105 +509781,284.88,91.1465 +509782,285.25,93.0489 +509783,285.63,95.007 +509784,286.02,97.029 +509785,283.57,91.1378 +509786,283.91,93.0484 +509787,284.26,95.015 +509788,284.62,97.0458 +509789,282.27,91.1304 +509790,282.58,93.0484 +509791,282.89,95.0225 +509792,283.22,97.061 +509793,280.97,91.1245 +509794,281.24,93.0488 +509795,281.52,95.0294 +509796,281.82,97.0747 +509797,279.67,91.1199 +509798,279.91,93.0496 +509799,280.16,95.0358 +509800,280.41,97.0867 +509801,278.36,91.1167 +509802,278.57,93.0508 +509803,278.79,95.0415 +509804,279.01,97.0971 +509805,277.06,91.115 +509806,277.24,93.0525 +509807,277.42,95.0468 +509808,277.61,97.1058 +509809,275.76,91.1146 +509810,275.9,93.0547 +509811,276.05,95.0514 +509812,276.21,97.113 +509813,274.46,91.1156 +509814,274.57,93.0572 +509815,274.68,95.0555 +509816,274.8,97.1185 +509817,273.16,91.1181 +509818,273.23,93.0603 +509819,273.31,95.0589 +509820,273.4,97.1224 +509821,271.85,91.122 +509822,271.9,93.0637 +509823,271.94,95.0619 +509824,272,97.1246 +509825,270.55,91.1272 +509826,270.56,93.0676 +509827,270.57,95.0642 +509828,270.6,97.1253 +509829,269.25,91.1339 +509830,269.23,93.0719 +509831,269.21,95.066 +509832,269.19,97.1243 +509833,267.95,91.142 +509834,267.89,93.0767 +509835,267.84,95.0672 +509836,267.79,97.1217 +509837,266.65,91.1515 +509838,266.55,93.0819 +509839,266.47,95.0678 +509840,266.39,97.1174 +509841,265.34,91.1624 +509842,265.22,93.0875 +509843,265.1,95.0679 +509844,264.99,97.1115 +509845,264.04,91.1747 +509846,263.88,93.0935 +509847,263.73,95.0674 +509848,263.58,97.1041 +509849,262.74,91.1884 +509850,262.55,93.1 +509851,262.36,95.0664 +509852,262.18,97.095 +509853,261.44,91.2035 +509854,261.21,93.107 +509855,260.99,95.0647 +509856,260.78,97.0843 +509857,260.13,91.2199 +509858,259.88,93.1143 +509859,259.62,95.0626 +509860,259.38,97.072 +509861,258.83,91.2378 +509862,258.54,93.1221 +509863,258.26,95.0598 +509864,257.97,97.0582 +509865,257.53,91.257 +509866,257.21,93.1303 +509867,256.89,95.0565 +509868,256.57,97.0427 +509869,256.23,91.2776 +509870,255.87,93.1389 +509871,255.52,95.0527 +509872,255.17,97.0257 +509873,254.92,91.2995 +509874,254.54,93.1479 +509875,254.15,95.0483 +509876,253.77,97.0072 +509877,253.62,91.3228 +509878,253.2,93.1574 +509879,252.78,95.0433 +509880,252.37,96.9871 +509881,252.31,91.3474 +509882,251.86,93.1673 +509883,251.41,95.0378 +509884,250.97,96.9654 +509885,251.01,91.3733 +509886,250.53,93.1775 +509887,250.05,95.0318 +509888,249.57,96.9423 +509889,249.7,91.4006 +509890,249.19,93.1882 +509891,248.68,95.0252 +509892,248.17,96.9176 +509893,248.4,91.4292 +509894,247.85,93.1993 +509895,247.31,95.0181 +509896,246.77,96.8915 +509897,247.09,91.459 +509898,246.52,93.2107 +509899,245.94,95.0105 +509900,245.37,96.8639 +509901,245.79,91.4901 +509902,245.18,93.2226 +509903,244.58,95.0024 +509904,243.97,96.8348 +509905,244.48,91.5225 +509906,243.84,93.2348 +509907,243.21,94.9937 +509908,242.58,96.8043 +509909,243.17,91.5561 +509910,242.51,93.2475 +509911,241.84,94.9846 +509912,241.18,96.7724 +509913,241.86,91.591 +509914,241.17,93.2605 +509915,240.48,94.9749 +509916,239.78,96.7391 +509917,240.55,91.6271 +509918,239.83,93.2738 +509919,239.11,94.9647 +509920,238.39,96.7044 +509921,239.24,91.6644 +509922,238.49,93.2875 +509923,237.74,94.9541 +509924,236.99,96.6683 +509925,237.93,91.7029 +509926,237.16,93.3016 +509927,236.38,94.9429 +509928,235.6,96.6309 +509929,236.62,91.7425 +509930,235.82,93.3161 +509931,235.01,94.9313 +509932,234.2,96.5921 +509933,235.31,91.7833 +509934,234.48,93.3308 +509935,233.64,94.9192 +509936,232.81,96.5521 +509937,234,91.8252 +509938,233.14,93.346 +509939,232.28,94.9067 +509940,231.42,96.5108 +509941,232.69,91.8682 +509942,231.8,93.3614 +509943,230.91,94.8936 +509944,230.02,96.4682 +509945,231.37,91.9124 +509946,230.46,93.3772 +509947,229.55,94.8802 +509948,228.63,96.4244 +509949,230.06,91.9576 +509950,229.12,93.3933 +509951,228.18,94.8663 +509952,227.24,96.3794 +509953,228.75,92.0038 +509954,227.78,93.4097 +509955,226.82,94.8519 +509956,225.85,96.3333 +509957,227.43,92.0511 +509958,226.44,93.4264 +509959,225.45,94.8372 +509960,224.46,96.2859 +509961,226.11,92.0994 +509962,225.1,93.4434 +509963,224.09,94.822 +509964,223.08,96.2375 +509965,224.8,92.1486 +509966,223.76,93.4607 +509967,222.73,94.8064 +509968,221.69,96.1879 +509969,223.48,92.1989 +509970,222.42,93.4782 +509971,221.36,94.7904 +509972,220.3,96.1373 +509973,222.16,92.25 +509974,221.08,93.4961 +509975,220,94.774 +509976,218.92,96.0856 +509977,220.84,92.3021 +509978,219.74,93.5141 +509979,218.64,94.7572 +509980,217.53,96.0329 +509981,219.52,92.3551 +509982,218.4,93.5325 +509983,217.28,94.7401 +509984,216.15,95.9793 +509985,218.2,92.4089 +509986,217.06,93.5511 +509987,215.91,94.7226 +509988,214.77,95.9246 +509989,216.87,92.4636 +509990,215.71,93.5699 +509991,214.55,94.7047 +509992,213.39,95.8691 +509993,215.55,92.519 +509994,214.37,93.589 +509995,213.19,94.6865 +509996,212.01,95.8126 +509997,214.22,92.5753 +509998,213.03,93.6082 +509999,211.83,94.6679 +510000,210.63,95.7553 +510001,212.9,92.6323 +510002,211.68,93.6277 +510003,210.47,94.649 +510004,209.25,95.6971 +510005,211.57,92.6901 +510006,210.34,93.6474 +510007,209.11,94.6298 +510008,207.87,95.6381 +510009,210.24,92.7485 +510010,209,93.6672 +510011,207.75,94.6103 +510012,206.49,95.5783 +510013,208.92,92.8076 +510014,207.65,93.6873 +510015,206.39,94.5905 +510016,205.12,95.5178 +510017,207.59,92.8674 +510018,206.31,93.7075 +510019,205.03,94.5704 +510020,203.74,95.4566 +510021,206.26,92.9278 +510022,204.96,93.7279 +510023,203.67,94.5501 +510024,202.37,95.3947 +510025,204.92,92.9888 +510026,203.62,93.7484 +510027,202.31,94.5294 +510028,201,95.3322 +510029,203.59,93.0503 +510030,202.27,93.769 +510031,200.95,94.5085 +510032,199.63,95.269 +510033,202.26,93.1124 +510034,200.93,93.7898 +510035,199.59,94.4874 +510036,198.26,95.2053 +510037,200.92,93.1749 +510038,199.58,93.8107 +510039,198.23,94.466 +510040,196.89,95.141 +510041,199.58,93.238 +510042,198.23,93.8317 +510043,196.88,94.4444 +510044,195.52,95.0762 +510045,198.25,93.3014 +510046,196.89,93.8528 +510047,195.52,94.4226 +510048,194.15,95.0109 +510049,196.91,93.3653 +510050,195.54,93.874 +510051,194.16,94.4006 +510052,192.79,94.9451 +510053,195.57,93.4295 +510054,194.19,93.8953 +510055,192.81,94.3784 +510056,191.42,94.879 +510057,194.23,93.4941 +510058,192.84,93.9166 +510059,191.45,94.3561 +510060,190.06,94.8124 +510061,192.89,93.559 +510062,191.49,93.938 +510063,190.1,94.3335 +510064,188.7,94.7455 +510065,191.54,93.6242 +510066,190.14,93.9594 +510067,188.74,94.3108 +510068,187.34,94.6783 +510069,190.2,93.6896 +510070,188.79,93.9809 +510071,187.39,94.288 +510072,185.98,94.6108 +510073,188.85,93.7552 +510074,187.44,94.0024 +510075,186.03,94.265 +510076,184.62,94.5431 +510077,187.51,93.821 +510078,186.09,94.0238 +510079,184.68,94.2419 +510080,183.26,94.4752 +510081,186.16,93.8869 +510082,184.74,94.0453 +510083,183.32,94.2187 +510084,181.91,94.4071 +510085,184.81,93.953 +510086,183.39,94.0668 +510087,181.97,94.1954 +510088,180.55,94.3388 +510089,183.46,94.0191 +510090,182.04,94.0882 +510091,180.62,94.172 +510092,179.2,94.2704 +510093,182.11,94.0853 +510094,180.69,94.1096 +510095,179.27,94.1485 +510096,177.84,94.202 +510097,180.76,94.1515 +510098,179.34,94.131 +510099,177.91,94.125 +510100,176.49,94.1335 +510101,179.4,94.2177 +510102,177.98,94.1523 +510103,176.56,94.1014 +510104,175.14,94.065 +510105,178.05,94.2838 +510106,176.63,94.1735 +510107,175.21,94.0777 +510108,173.79,93.9966 +510109,176.69,94.3498 +510110,175.28,94.1946 +510111,173.86,94.0541 +510112,172.45,93.9282 +510113,175.33,94.4157 +510114,173.92,94.2157 +510115,172.51,94.0304 +510116,171.1,93.8598 +510117,173.98,94.4814 +510118,172.57,94.2366 +510119,171.16,94.0067 +510120,169.75,93.7917 +510121,172.62,94.547 +510122,171.21,94.2575 +510123,169.81,93.983 +510124,168.41,93.7236 +510125,171.26,94.6123 +510126,169.86,94.2782 +510127,168.46,93.9593 +510128,167.07,93.6558 +510129,169.89,94.6774 +510130,168.5,94.2987 +510131,167.11,93.9356 +510132,165.72,93.5882 +510133,168.53,94.7421 +510134,167.15,94.3191 +510135,165.77,93.912 +510136,164.38,93.5209 +510137,167.17,94.8066 +510138,165.79,94.3394 +510139,164.42,93.8884 +510140,163.04,93.4538 +510141,165.8,94.8706 +510142,164.44,94.3594 +510143,163.07,93.8649 +510144,161.7,93.3871 +510145,164.44,94.9343 +510146,163.08,94.3793 +510147,161.72,93.8414 +510148,160.37,93.3208 +510149,163.07,94.9976 +510150,161.72,94.399 +510151,160.38,93.8181 +510152,159.03,93.2548 +510153,161.7,95.0604 +510154,160.36,94.4185 +510155,159.03,93.7948 +510156,157.7,93.1892 +510157,160.33,95.1227 +510158,159.01,94.4378 +510159,157.68,93.7716 +510160,156.36,93.1241 +510161,158.96,95.1844 +510162,157.65,94.4569 +510163,156.34,93.7485 +510164,155.03,93.0595 +510165,157.59,95.2457 +510166,156.29,94.4757 +510167,154.99,93.7256 +510168,153.7,92.9954 +510169,156.21,95.3063 +510170,154.93,94.4942 +510171,153.65,93.7028 +510172,152.37,92.9318 +510173,154.84,95.3662 +510174,153.57,94.5125 +510175,152.3,93.6801 +510176,151.04,92.8689 +510177,153.46,95.4256 +510178,152.21,94.5306 +510179,150.96,93.6576 +510180,149.71,92.8065 +510181,152.09,95.4842 +510182,150.85,94.5483 +510183,149.61,93.6353 +510184,148.38,92.7447 +510185,150.71,95.5421 +510186,149.49,94.5658 +510187,148.27,93.6131 +510188,147.05,92.6836 +510189,149.33,95.5993 +510190,148.13,94.583 +510191,146.93,93.5911 +510192,145.73,92.6232 +510193,147.95,95.6556 +510194,146.77,94.5998 +510195,145.59,93.5693 +510196,144.4,92.5635 +510197,146.57,95.7112 +510198,145.41,94.6163 +510199,144.24,93.5477 +510200,143.08,92.5046 +510201,145.19,95.7659 +510202,144.05,94.6325 +510203,142.9,93.5263 +510204,141.76,92.4464 +510205,143.81,95.8197 +510206,142.68,94.6484 +510207,141.56,93.5051 +510208,140.43,92.3891 +510209,142.43,95.8726 +510210,141.32,94.6639 +510211,140.22,93.4842 +510212,139.11,92.3325 +510213,141.04,95.9246 +510214,139.96,94.679 +510215,138.88,93.4635 +510216,137.79,92.2768 +510217,139.66,95.9756 +510218,138.6,94.6938 +510219,137.53,93.4431 +510220,136.47,92.222 +510221,138.27,96.0256 +510222,137.23,94.7082 +510223,136.19,93.4229 +510224,135.16,92.1681 +510225,136.88,96.0746 +510226,135.87,94.7223 +510227,134.85,93.403 +510228,133.84,92.1151 +510229,135.5,96.1226 +510230,134.5,94.7359 +510231,133.51,93.3833 +510232,132.52,92.0631 +510233,134.11,96.1694 +510234,133.14,94.7491 +510235,132.17,93.364 +510236,131.21,92.012 +510237,132.72,96.2152 +510238,131.78,94.7619 +510239,130.83,93.3449 +510240,129.89,91.962 +510241,131.33,96.2598 +510242,130.41,94.7743 +510243,129.5,93.3261 +510244,128.58,91.9129 +510245,129.94,96.3032 +510246,129.05,94.7862 +510247,128.16,93.3076 +510248,127.26,91.8649 +510249,128.54,96.3455 +510250,127.68,94.7978 +510251,126.82,93.2895 +510252,125.95,91.818 +510253,127.15,96.3866 +510254,126.32,94.8088 +510255,125.48,93.2717 +510256,124.64,91.7721 +510257,125.76,96.4264 +510258,124.95,94.8195 +510259,124.14,93.2542 +510260,123.33,91.7274 +510261,124.36,96.465 +510262,123.59,94.8296 +510263,122.8,93.237 +510264,122.02,91.6837 +510265,122.97,96.5023 +510266,122.22,94.8393 +510267,121.47,93.2202 +510268,120.71,91.6412 +510269,121.57,96.5383 +510270,120.85,94.8486 +510271,120.13,93.2037 +510272,119.4,91.5999 +510273,120.18,96.573 +510274,119.49,94.8573 +510275,118.79,93.1876 +510276,118.09,91.5598 +510277,118.78,96.6063 +510278,118.12,94.8656 +510279,117.45,93.1718 +510280,116.78,91.5208 +510281,117.39,96.6383 +510282,116.75,94.8733 +510283,116.12,93.1564 +510284,115.48,91.483 +510285,115.99,96.6688 +510286,115.39,94.8806 +510287,114.78,93.1414 +510288,114.17,91.4465 +510289,114.59,96.698 +510290,114.02,94.8874 +510291,113.44,93.1267 +510292,112.86,91.4112 +510293,113.19,96.7258 +510294,112.65,94.8936 +510295,112.11,93.1125 +510296,111.56,91.3772 +510297,111.79,96.7521 +510298,111.28,94.8994 +510299,110.77,93.0986 +510300,110.25,91.3445 +510301,110.39,96.7769 +510302,109.92,94.9046 +510303,109.43,93.0851 +510304,108.95,91.313 +510305,108.99,96.8003 +510306,108.55,94.9093 +510307,108.1,93.072 +510308,107.64,91.2828 +510309,107.59,96.8222 +510310,107.18,94.9135 +510311,106.76,93.0593 +510312,106.34,91.254 +510313,106.19,96.8426 +510314,105.81,94.9171 +510315,105.43,93.047 +510316,105.04,91.2264 +510317,104.79,96.8615 +510318,104.45,94.9202 +510319,104.09,93.0352 +510320,103.73,91.2002 +510321,103.39,96.8789 +510322,103.08,94.9228 +510323,102.76,93.0237 +510324,102.43,91.1753 +510325,101.99,96.8947 +510326,101.71,94.9248 +510327,101.42,93.0127 +510328,101.13,91.1518 +510329,100.59,96.9089 +510330,100.34,94.9262 +510331,100.09,93.0021 +510332,99.825,91.1297 +510333,99.185,96.9216 +510334,98.973,94.9271 +510335,98.751,92.9919 +510336,98.523,91.1089 +510337,97.783,96.9328 +510338,97.604,94.9275 +510339,97.417,92.9821 +510340,97.221,91.0894 +510341,96.38,96.9423 +510342,96.236,94.9273 +510343,96.082,92.9727 +510344,95.919,91.0714 +510345,94.978,96.9503 +510346,94.867,94.9265 +510347,94.747,92.9638 +510348,94.617,91.0548 +510349,93.575,96.9566 +510350,93.499,94.9252 +510351,93.412,92.9553 +510352,93.316,91.0395 +510353,92.173,96.9614 +510354,92.13,94.9233 +510355,92.077,92.9473 +510356,92.015,91.0256 +510357,90.77,96.9645 +510358,90.762,94.9209 +510359,90.742,92.9397 +510360,90.714,91.0132 +510361,89.367,96.9661 +510362,89.393,94.9179 +510363,89.408,92.9325 +510364,89.412,91.0021 +510365,87.965,96.966 +510366,88.025,94.9143 +510367,88.073,92.9257 +510368,88.111,90.99245 +510369,86.562,96.9643 +510370,86.656,94.9101 +510371,86.738,92.9194 +510372,86.81,90.9842 +510373,85.159,96.9609 +510374,85.288,94.9054 +510375,85.404,92.9135 +510376,85.509,90.97736 +510377,83.757,96.956 +510378,83.919,94.9001 +510379,84.069,92.9081 +510380,84.208,90.97193 +510381,82.354,96.9494 +510382,82.551,94.8943 +510383,82.734,92.9031 +510384,82.906,90.96791 +510385,80.952,96.9412 +510386,81.183,94.8878 +510387,81.4,92.8986 +510388,81.605,90.96529 +510389,79.55,96.9314 +510390,79.814,94.8808 +510391,80.065,92.8944 +510392,80.303,90.96408 +510393,78.148,96.92 +510394,78.446,94.8733 +510395,78.73,92.8907 +510396,79.002,90.96427 +510397,76.747,96.907 +510398,77.078,94.8652 +510399,77.395,92.8875 +510400,77.7,90.96587 +510401,75.345,96.8923 +510402,75.71,94.8565 +510403,76.06,92.8847 +510404,76.398,90.96885 +510405,73.944,96.876 +510406,74.342,94.8472 +510407,74.725,92.8823 +510408,75.095,90.97323 +510409,72.543,96.8582 +510410,72.975,94.8374 +510411,73.39,92.8803 +510412,73.793,90.979 +510413,71.143,96.8387 +510414,71.607,94.827 +510415,72.055,92.8788 +510416,72.49,90.98614 +510417,69.743,96.8177 +510418,70.239,94.8161 +510419,70.72,92.8777 +510420,71.186,90.99466 +510421,68.343,96.7951 +510422,68.872,94.8046 +510423,69.384,92.8771 +510424,69.883,91.0045 +510425,66.944,96.7709 +510426,67.505,94.7926 +510427,68.049,92.8768 +510428,68.579,91.0158 +510429,65.546,96.7452 +510430,66.138,94.78 +510431,66.713,92.877 +510432,67.275,91.0284 +510433,64.147,96.7179 +510434,64.771,94.7669 +510435,65.377,92.8775 +510436,65.97,91.0423 +510437,62.75,96.6891 +510438,63.404,94.7533 +510439,64.041,92.8785 +510440,64.664,91.0576 +510441,61.353,96.6587 +510442,62.038,94.7391 +510443,62.705,92.8799 +510444,63.359,91.0741 +510445,59.956,96.6269 +510446,60.671,94.7243 +510447,61.369,92.8817 +510448,62.053,91.092 +510449,58.56,96.5936 +510450,59.305,94.7091 +510451,60.033,92.884 +510452,60.746,91.1112 +510453,57.165,96.5587 +510454,57.939,94.6933 +510455,58.696,92.8866 +510456,59.438,91.1317 +510457,55.77,96.5225 +510458,56.573,94.677 +510459,57.359,92.8895 +510460,58.131,91.1534 +510461,54.376,96.4847 +510462,55.208,94.6602 +510463,56.022,92.8929 +510464,56.822,91.1764 +510465,52.982,96.4456 +510466,53.843,94.6429 +510467,54.685,92.8967 +510468,55.513,91.2006 +510469,51.59,96.405 +510470,52.478,94.6251 +510471,53.348,92.9008 +510472,54.203,91.2261 +510473,50.198,96.3631 +510474,51.113,94.6068 +510475,52.01,92.9053 +510476,52.893,91.2528 +510477,48.806,96.3198 +510478,49.748,94.588 +510479,50.673,92.9102 +510480,51.582,91.2806 +510481,47.416,96.2751 +510482,48.384,94.5687 +510483,49.335,92.9154 +510484,50.27,91.3097 +510485,46.026,96.2291 +510486,47.02,94.549 +510487,47.996,92.921 +510488,48.957,91.3399 +510489,44.638,96.1818 +510490,45.657,94.5287 +510491,46.658,92.9269 +510492,47.644,91.3712 +510493,43.25,96.1332 +510494,44.293,94.5081 +510495,45.319,92.9332 +510496,46.33,91.4037 +510497,41.863,96.0833 +510498,42.93,94.4869 +510499,43.98,92.9398 +510500,45.015,91.4372 +510501,40.476,96.0322 +510502,41.567,94.4653 +510503,42.641,92.9467 +510504,43.7,91.4719 +510505,39.091,95.9799 +510506,40.205,94.4433 +510507,41.301,92.954 +510508,42.383,91.5076 +510509,37.707,95.9264 +510510,38.843,94.4208 +510511,39.962,92.9615 +510512,41.066,91.5443 +510513,36.323,95.8717 +510514,37.481,94.398 +510515,38.622,92.9694 +510516,39.747,91.5821 +510517,34.941,95.8159 +510518,36.119,94.3747 +510519,37.281,92.9776 +510520,38.428,91.6209 +510521,33.559,95.759 +510522,34.758,94.351 +510523,35.94,92.986 +510524,37.108,91.6606 +510525,32.179,95.701 +510526,33.397,94.3268 +510527,34.6,92.9947 +510528,35.787,91.7013 +510529,30.799,95.642 +510530,32.037,94.3024 +510531,33.258,93.0037 +510532,34.465,91.7429 +510533,29.421,95.5819 +510534,30.677,94.2775 +510535,31.917,93.013 +510536,33.143,91.7855 +510537,28.043,95.5208 +510538,29.317,94.2522 +510539,30.575,93.0225 +510540,31.819,91.8289 +510541,26.667,95.4587 +510542,27.957,94.2266 +510543,29.233,93.0323 +510544,30.494,91.8731 +510545,25.292,95.3957 +510546,26.598,94.2006 +510547,27.89,93.0423 +510548,29.168,91.9182 +510549,23.917,95.3318 +510550,25.24,94.1743 +510551,26.547,93.0526 +510552,27.841,91.9641 +510553,22.544,95.267 +510554,23.881,94.1477 +510555,25.204,93.063 +510556,26.513,92.0108 +510557,21.172,95.2014 +510558,22.523,94.1207 +510559,23.86,93.0737 +510560,25.184,92.0582 +510561,19.801,95.1349 +510562,21.166,94.0934 +510563,22.517,93.0846 +510564,23.854,92.1064 +510565,18.432,95.0677 +510566,19.809,94.0659 +510567,21.172,93.0956 +510568,22.523,92.1553 +510569,17.063,94.9997 +510570,18.452,94.038 +510571,19.828,93.1069 +510572,21.191,92.2048 +510573,15.695,94.9309 +510574,17.095,94.0098 +510575,18.483,93.1183 +510576,19.858,92.2549 +510577,14.329,94.8615 +510578,15.739,93.9814 +510579,17.138,93.1299 +510580,18.523,92.3057 +510581,12.964,94.7914 +510582,14.384,93.9527 +510583,15.792,93.1416 +510584,17.188,92.3571 +510585,11.6,94.7207 +510586,13.029,93.9237 +510587,14.446,93.1535 +510588,15.851,92.409 +510589,10.237,94.6494 +510590,11.674,93.8945 +510591,13.1,93.1655 +510592,14.514,92.4614 +510593,8.8753,94.5775 +510594,10.319,93.8651 +510595,11.753,93.1777 +510596,13.175,92.5144 +510597,7.5148,94.5051 +510598,8.9655,93.8354 +510599,10.406,93.1899 +510600,11.835,92.5678 +510601,6.1555,94.4323 +510602,7.612,93.8055 +510603,9.0582,93.2023 +510604,10.494,92.6216 +510605,4.7974,94.3589 +510606,6.2588,93.7755 +510607,7.7103,93.2147 +510608,9.1512,92.6758 +510609,3.4405,94.2851 +510610,4.9061,93.7452 +510611,6.3621,93.2272 +510612,7.8077,92.7304 +510613,2.0849,94.211 +510614,3.5538,93.7148 +510615,5.0135,93.2398 +510616,6.463,92.7854 +510617,0.73042,94.1365 +510618,2.2019,93.6842 +510619,3.6645,93.2525 +510620,5.1172,92.8406 +510621,359.38,94.0616 +510622,0.85047,93.6535 +510623,2.3151,93.2652 +510624,3.7701,92.8962 +510625,358.03,93.9865 +510626,359.5,93.6226 +510627,0.96538,93.278 +510628,2.4219,92.952 +510629,356.67,93.9111 +510630,358.15,93.5916 +510631,359.62,93.2907 +510632,1.0725,93.008 +510633,355.32,93.8355 +510634,356.8,93.5604 +510635,358.26,93.3035 +510636,359.72,93.0642 +510637,353.98,93.7597 +510638,355.45,93.5292 +510639,356.91,93.3163 +510640,358.37,93.1205 +510641,352.63,93.6838 +510642,354.1,93.4979 +510643,355.56,93.3291 +510644,357.02,93.1769 +510645,351.28,93.6077 +510646,352.75,93.4664 +510647,354.21,93.3419 +510648,355.66,93.2335 +510649,349.94,93.5316 +510650,351.4,93.4349 +510651,352.86,93.3546 +510652,354.31,93.2901 +510653,348.59,93.4554 +510654,350.05,93.4034 +510655,351.51,93.3673 +510656,352.95,93.3467 +510657,347.25,93.3792 +510658,348.71,93.3717 +510659,350.15,93.3799 +510660,351.59,93.4033 +510661,345.91,93.303 +510662,347.36,93.3401 +510663,348.8,93.3925 +510664,350.23,93.4598 +510665,344.57,93.2269 +510666,346.01,93.3084 +510667,347.45,93.4051 +510668,348.87,93.5163 +510669,343.23,93.1509 +510670,344.67,93.2767 +510671,346.09,93.4175 +510672,347.51,93.5727 +510673,341.9,93.0749 +510674,343.32,93.245 +510675,344.74,93.4298 +510676,346.15,93.6289 +510677,340.56,92.9992 +510678,341.97,93.2133 +510679,343.38,93.4421 +510680,344.79,93.6849 +510681,339.22,92.9236 +510682,340.63,93.1816 +510683,342.03,93.4542 +510684,343.42,93.7407 +510685,337.89,92.8483 +510686,339.28,93.1499 +510687,340.67,93.4662 +510688,342.06,93.7963 +510689,336.56,92.7732 +510690,337.94,93.1183 +510691,339.32,93.478 +510692,340.69,93.8516 +510693,335.22,92.6984 +510694,336.6,93.0867 +510695,337.96,93.4897 +510696,339.32,93.9066 +510697,333.89,92.6239 +510698,335.25,93.0552 +510699,336.61,93.5013 +510700,337.95,93.9613 +510701,332.56,92.5498 +510702,333.91,93.0238 +510703,335.25,93.5126 +510704,336.58,94.0156 +510705,331.24,92.476 +510706,332.57,92.9924 +510707,333.89,93.5238 +510708,335.21,94.0695 +510709,329.91,92.4027 +510710,331.22,92.9612 +510711,332.53,93.5348 +510712,333.84,94.1229 +510713,328.58,92.3298 +510714,329.88,92.93 +510715,331.18,93.5456 +510716,332.46,94.1759 +510717,327.26,92.2574 +510718,328.54,92.899 +510719,329.82,93.5562 +510720,331.09,94.2284 +510721,325.93,92.1855 +510722,327.2,92.868 +510723,328.46,93.5665 +510724,329.71,94.2803 +510725,324.61,92.1142 +510726,325.86,92.8373 +510727,327.1,93.5766 +510728,328.34,94.3317 +510729,323.29,92.0434 +510730,324.52,92.8066 +510731,325.74,93.5865 +510732,326.96,94.3824 +510733,321.97,91.9732 +510734,323.18,92.7761 +510735,324.38,93.5961 +510736,325.58,94.4326 +510737,320.65,91.9037 +510738,321.84,92.7458 +510739,323.02,93.6055 +510740,324.2,94.482 +510741,319.33,91.8348 +510742,320.5,92.7157 +510743,321.66,93.6145 +510744,322.82,94.5308 +510745,318.01,91.7666 +510746,319.16,92.6857 +510747,320.3,93.6233 +510748,321.44,94.5789 +510749,316.69,91.6991 +510750,317.82,92.656 +510751,318.94,93.6318 +510752,320.05,94.6262 +510753,315.38,91.6323 +510754,316.48,92.6264 +510755,317.58,93.64 +510756,318.67,94.6727 +510757,314.06,91.5663 +510758,315.14,92.5971 +510759,316.22,93.6479 +510760,317.29,94.7184 +510761,312.75,91.5012 +510762,313.81,92.568 +510763,314.86,93.6554 +510764,315.9,94.7633 +510765,311.44,91.4368 +510766,312.47,92.5391 +510767,313.5,93.6626 +510768,314.51,94.8073 +510769,310.12,91.3733 +510770,311.13,92.5105 +510771,312.13,93.6695 +510772,313.13,94.8504 +510773,308.81,91.3107 +510774,309.8,92.4821 +510775,310.77,93.676 +510776,311.74,94.8926 +510777,307.5,91.2489 +510778,308.46,92.4539 +510779,309.41,93.6822 +510780,310.35,94.9338 +510781,306.19,91.1881 +510782,307.12,92.4261 +510783,308.05,93.688 +510784,308.96,94.9741 +510785,304.88,91.1282 +510786,305.79,92.3985 +510787,306.68,93.6934 +510788,307.57,95.0133 +510789,303.57,91.0694 +510790,304.45,92.3712 +510791,305.32,93.6984 +510792,306.18,95.0515 +510793,302.27,91.0115 +510794,303.12,92.3442 +510795,303.96,93.7031 +510796,304.78,95.0886 +510797,300.96,90.95457 +510798,301.78,92.3175 +510799,302.59,93.7073 +510800,303.39,95.1247 +510801,299.65,90.89873 +510802,300.45,92.2911 +510803,301.23,93.7111 +510804,302,95.1596 +510805,298.35,90.84394 +510806,299.11,92.265 +510807,299.86,93.7145 +510808,300.6,95.1934 +510809,297.04,90.79023 +510810,297.78,92.2393 +510811,298.5,93.7175 +510812,299.21,95.2261 +510813,295.74,90.73762 +510814,296.44,92.2139 +510815,297.13,93.72 +510816,297.81,95.2575 +510817,294.44,90.68613 +510818,295.11,92.1888 +510819,295.77,93.7221 +510820,296.42,95.2878 +510821,293.13,90.63577 +510822,293.78,92.164 +510823,294.4,93.7238 +510824,295.02,95.3168 +510825,291.83,90.58657 +510826,292.44,92.1396 +510827,293.04,93.725 +510828,293.62,95.3446 +510829,290.53,90.53855 +510830,291.11,92.1156 +510831,291.67,93.7258 +510832,292.23,95.3711 +510833,289.23,90.49171 +510834,289.78,92.0919 +510835,290.31,93.726 +510836,290.83,95.3963 +510837,287.93,90.44608 +510838,288.44,92.0686 +510839,288.94,93.7258 +510840,289.43,95.4202 +510841,286.63,90.40167 +510842,287.11,92.0457 +510843,287.58,93.7252 +510844,288.03,95.4428 +510845,285.33,90.3585 +510846,285.78,92.0231 +510847,286.21,93.724 +510848,286.63,95.464 +510849,284.03,90.31657 +510850,284.44,92.001 +510851,284.85,93.7224 +510852,285.23,95.4839 +510853,282.73,90.27592 +510854,283.11,91.9792 +510855,283.48,93.7202 +510856,283.83,95.5023 +510857,281.43,90.23654 +510858,281.78,91.9578 +510859,282.11,93.7176 +510860,282.43,95.5194 +510861,280.13,90.19844 +510862,280.45,91.9368 +510863,280.75,93.7145 +510864,281.03,95.5351 +510865,278.83,90.16165 +510866,279.12,91.9162 +510867,279.38,93.7108 +510868,279.63,95.5493 +510869,277.54,90.12618 +510870,277.79,91.8961 +510871,278.02,93.7067 +510872,278.23,95.5621 +510873,276.24,90.092024 +510874,276.45,91.8763 +510875,276.65,93.702 +510876,276.82,95.5734 +510877,274.94,90.059202 +510878,275.12,91.8569 +510879,275.28,93.6968 +510880,275.42,95.5833 +510881,273.64,90.027722 +510882,273.79,91.838 +510883,273.92,93.6911 +510884,274.02,95.5916 +510885,272.35,89.9975916 +510886,272.46,91.8195 +510887,272.55,93.6849 +510888,272.62,95.5985 +510889,271.05,89.968819 +510890,271.13,91.8014 +510891,271.18,93.6781 +510892,271.22,95.6039 +510893,269.75,89.94141 +510894,269.8,91.7837 +510895,269.82,93.6708 +510896,269.81,95.6077 +510897,268.46,89.915372 +510898,268.47,91.7665 +510899,268.45,93.6629 +510900,268.41,95.61 +510901,267.16,89.89071 +510902,267.13,91.7497 +510903,267.09,93.6546 +510904,267.01,95.6108 +510905,265.86,89.86743 +510906,265.8,91.7333 +510907,265.72,93.6456 +510908,265.61,95.6101 +510909,264.57,89.84553 +510910,264.47,91.7174 +510911,264.35,93.6362 +510912,264.21,95.6078 +510913,263.27,89.82502 +510914,263.14,91.7019 +510915,262.99,93.6262 +510916,262.8,95.6039 +510917,261.98,89.80591 +510918,261.81,91.6868 +510919,261.62,93.6156 +510920,261.4,95.5985 +510921,260.68,89.78818 +510922,260.48,91.6722 +510923,260.25,93.6046 +510924,260,95.5916 +510925,259.38,89.77185 +510926,259.15,91.658 +510927,258.89,93.5929 +510928,258.6,95.583 +510929,258.09,89.75692 +510930,257.82,91.6443 +510931,257.52,93.5807 +510932,257.2,95.5729 +510933,256.79,89.74338 +510934,256.49,91.6309 +510935,256.16,93.568 +510936,255.8,95.5613 +510937,255.49,89.73123 +510938,255.16,91.6181 +510939,254.79,93.5548 +510940,254.4,95.548 +510941,254.2,89.72047 +510942,253.82,91.6056 +510943,253.43,93.5409 +510944,253,95.5332 +510945,252.9,89.71111 +510946,252.49,91.5936 +510947,252.06,93.5266 +510948,251.6,95.5169 +510949,251.6,89.70313 +510950,251.16,91.5821 +510951,250.69,93.5117 +510952,250.2,95.4989 +510953,250.3,89.69654 +510954,249.83,91.571 +510955,249.33,93.4962 +510956,248.8,95.4794 +510957,249,89.69133 +510958,248.5,91.5603 +510959,247.96,93.4802 +510960,247.4,95.4584 +510961,247.71,89.68749 +510962,247.17,91.55 +510963,246.6,93.4637 +510964,246,95.4358 +510965,246.41,89.68502 +510966,245.84,91.5402 +510967,245.23,93.4467 +510968,244.6,95.4116 +510969,245.11,89.68391 +510970,244.5,91.5308 +510971,243.87,93.4291 +510972,243.2,95.3859 +510973,243.81,89.68416 +510974,243.17,91.5218 +510975,242.51,93.4109 +510976,241.81,95.3586 +510977,242.51,89.68576 +510978,241.84,91.5133 +510979,241.14,93.3923 +510980,240.41,95.3299 +510981,241.21,89.6887 +510982,240.51,91.5052 +510983,239.78,93.3731 +510984,239.01,95.2996 +510985,239.91,89.69296 +510986,239.17,91.4975 +510987,238.41,93.3534 +510988,237.62,95.2678 +510989,238.61,89.69855 +510990,237.84,91.4902 +510991,237.05,93.3331 +510992,236.22,95.2345 +510993,237.3,89.70545 +510994,236.51,91.4833 +510995,235.69,93.3124 +510996,234.83,95.1997 +510997,236,89.71364 +510998,235.18,91.4769 +510999,234.32,93.2911 +511000,233.44,95.1634 +511001,234.7,89.72313 +511002,233.84,91.4708 +511003,232.96,93.2693 +511004,232.04,95.1256 +511005,233.39,89.73389 +511006,232.51,91.4652 +511007,231.6,93.247 +511008,230.65,95.0864 +511009,232.09,89.74591 +511010,231.18,91.4599 +511011,230.24,93.2242 +511012,229.26,95.0458 +511013,230.78,89.75918 +511014,229.84,91.455 +511015,228.87,93.201 +511016,227.87,95.0038 +511017,229.48,89.77369 +511018,228.51,91.4506 +511019,227.51,93.1772 +511020,226.48,94.9603 +511021,228.17,89.78942 +511022,227.18,91.4465 +511023,226.15,93.1529 +511024,225.09,94.9154 +511025,226.86,89.80635 +511026,225.84,91.4428 +511027,224.79,93.1282 +511028,223.7,94.8692 +511029,225.55,89.82447 +511030,224.51,91.4394 +511031,223.43,93.103 +511032,222.32,94.8216 +511033,224.25,89.84377 +511034,223.17,91.4364 +511035,222.07,93.0773 +511036,220.93,94.7727 +511037,222.94,89.86422 +511038,221.84,91.4338 +511039,220.71,93.0512 +511040,219.54,94.7225 +511041,221.63,89.8858 +511042,220.5,91.4316 +511043,219.35,93.0246 +511044,218.16,94.6709 +511045,220.31,89.908511 +511046,219.17,91.4296 +511047,217.99,92.9976 +511048,216.78,94.6181 +511049,219,89.932319 +511050,217.83,91.4281 +511051,216.63,92.9701 +511052,215.39,94.5641 +511053,217.69,89.957207 +511054,216.49,91.4268 +511055,215.27,92.9422 +511056,214.01,94.5088 +511057,216.37,89.983157 +511058,215.16,91.4259 +511059,213.91,92.9138 +511060,212.63,94.4523 +511061,215.06,90.010147 +511062,213.82,91.4253 +511063,212.55,92.8851 +511064,211.25,94.3946 +511065,213.74,90.038158 +511066,212.48,91.4251 +511067,211.2,92.8559 +511068,209.88,94.3357 +511069,212.43,90.067168 +511070,211.15,91.4251 +511071,209.84,92.8263 +511072,208.5,94.2757 +511073,211.11,90.097154 +511074,209.81,91.4255 +511075,208.48,92.7964 +511076,207.12,94.2146 +511077,209.79,90.12809 +511078,208.47,91.4261 +511079,207.13,92.766 +511080,205.75,94.1524 +511081,208.47,90.15997 +511082,207.13,91.427 +511083,205.77,92.7353 +511084,204.37,94.0892 +511085,207.15,90.19275 +511086,205.8,91.4282 +511087,204.41,92.7041 +511088,203,94.0249 +511089,205.83,90.22641 +511090,204.46,91.4296 +511091,203.06,92.6727 +511092,201.63,93.9596 +511093,204.5,90.26094 +511094,203.12,91.4314 +511095,201.7,92.6408 +511096,200.26,93.8933 +511097,203.18,90.2963 +511098,201.78,91.4333 +511099,200.35,92.6087 +511100,198.89,93.8261 +511101,201.86,90.33247 +511102,200.44,91.4356 +511103,198.99,92.5762 +511104,197.52,93.7579 +511105,200.53,90.36942 +511106,199.1,91.438 +511107,197.64,92.5433 +511108,196.15,93.6889 +511109,199.2,90.40713 +511110,197.76,91.4407 +511111,196.29,92.5102 +511112,194.79,93.6189 +511113,197.87,90.44558 +511114,196.42,91.4436 +511115,194.93,92.4767 +511116,193.42,93.5482 +511117,196.54,90.48473 +511118,195.08,91.4467 +511119,193.58,92.443 +511120,192.06,93.4767 +511121,195.21,90.52457 +511122,193.73,91.45 +511123,192.23,92.4089 +511124,190.7,93.4043 +511125,193.88,90.56505 +511126,192.39,91.4535 +511127,190.88,92.3746 +511128,189.34,93.3313 +511129,192.55,90.60616 +511130,191.05,91.4571 +511131,189.53,92.34 +511132,187.98,93.2575 +511133,191.21,90.64786 +511134,189.71,91.461 +511135,188.18,92.3052 +511136,186.62,93.1831 +511137,189.88,90.69013 +511138,188.36,91.4649 +511139,186.83,92.2701 +511140,185.26,93.108 +511141,188.54,90.73294 +511142,187.02,91.4691 +511143,185.48,92.2348 +511144,183.91,93.0323 +511145,187.2,90.77626 +511146,185.68,91.4734 +511147,184.13,92.1992 +511148,182.55,92.956 +511149,185.87,90.82007 +511150,184.33,91.4778 +511151,182.78,92.1635 +511152,181.2,92.8791 +511153,184.53,90.86432 +511154,182.99,91.4823 +511155,181.43,92.1275 +511156,179.85,92.8018 +511157,183.18,90.90899 +511158,181.64,91.487 +511159,180.08,92.0914 +511160,178.5,92.7239 +511161,181.84,90.95406 +511162,180.3,91.4917 +511163,178.73,92.055 +511164,177.15,92.6456 +511165,180.5,90.99949 +511166,178.95,91.4966 +511167,177.39,92.0185 +511168,175.8,92.5669 +511169,179.15,91.0453 +511170,177.61,91.5015 +511171,176.04,91.9818 +511172,174.45,92.4878 +511173,177.81,91.0913 +511174,176.26,91.5065 +511175,174.69,91.945 +511176,173.11,92.4084 +511177,176.46,91.1376 +511178,174.91,91.5115 +511179,173.35,91.908 +511180,171.76,92.3286 +511181,175.11,91.1842 +511182,173.57,91.5166 +511183,172,91.8709 +511184,170.42,92.2486 +511185,173.76,91.231 +511186,172.22,91.5217 +511187,170.66,91.8337 +511188,169.08,92.1683 +511189,172.41,91.278 +511190,170.87,91.5269 +511191,169.31,91.7964 +511192,167.74,92.0878 +511193,171.06,91.3251 +511194,169.52,91.532 +511195,167.97,91.759 +511196,166.4,92.0071 +511197,169.7,91.3723 +511198,168.17,91.5372 +511199,166.62,91.7215 +511200,165.06,91.9263 +511201,168.35,91.4196 +511202,166.82,91.5424 +511203,165.28,91.6839 +511204,163.72,91.8454 +511205,166.99,91.467 +511206,165.47,91.5475 +511207,163.94,91.6463 +511208,162.39,91.7644 +511209,165.63,91.5143 +511210,164.12,91.5527 +511211,162.6,91.6086 +511212,161.05,91.6833 +511213,164.28,91.5617 +511214,162.77,91.5578 +511215,161.25,91.5709 +511216,159.72,91.6022 +511217,162.92,91.609 +511218,161.42,91.5628 +511219,159.91,91.5332 +511220,158.39,91.5212 +511221,161.56,91.6563 +511222,160.07,91.5678 +511223,158.57,91.4954 +511224,157.06,91.4402 +511225,160.19,91.7034 +511226,158.72,91.5727 +511227,157.23,91.4576 +511228,155.73,91.3593 +511229,158.83,91.7504 +511230,157.37,91.5775 +511231,155.89,91.4199 +511232,154.4,91.2786 +511233,157.47,91.7973 +511234,156.02,91.5823 +511235,154.55,91.3821 +511236,153.08,91.1979 +511237,156.1,91.8439 +511238,154.66,91.5869 +511239,153.21,91.3444 +511240,151.75,91.1175 +511241,154.73,91.8903 +511242,153.31,91.5914 +511243,151.87,91.3067 +511244,150.43,91.0373 +511245,153.37,91.9365 +511246,151.96,91.5958 +511247,150.54,91.2691 +511248,149.1,90.95738 +511249,152,91.9823 +511250,150.6,91.6001 +511251,149.2,91.2316 +511252,147.78,90.87772 +511253,150.63,92.0278 +511254,149.25,91.6042 +511255,147.86,91.1941 +511256,146.46,90.79839 +511257,149.25,92.073 +511258,147.9,91.6082 +511259,146.52,91.1567 +511260,145.14,90.71941 +511261,147.88,92.1178 +511262,146.54,91.612 +511263,145.19,91.1193 +511264,143.82,90.64082 +511265,146.51,92.1621 +511266,145.19,91.6157 +511267,143.85,91.0821 +511268,142.5,90.56264 +511269,145.13,92.206 +511270,143.83,91.6191 +511271,142.52,91.045 +511272,141.19,90.48491 +511273,143.76,92.2495 +511274,142.48,91.6224 +511275,141.18,91.008 +511276,139.87,90.40765 +511277,142.38,92.2924 +511278,141.12,91.6254 +511279,139.84,90.97121 +511280,138.56,90.33091 +511281,141,92.3347 +511282,139.76,91.6282 +511283,138.51,90.93451 +511284,137.25,90.2547 +511285,139.62,92.3765 +511286,138.41,91.6308 +511287,137.18,90.89797 +511288,135.93,90.17906 +511289,138.24,92.4177 +511290,137.05,91.6332 +511291,135.84,90.8616 +511292,134.62,90.10402 +511293,136.86,92.4583 +511294,135.69,91.6353 +511295,134.51,90.8254 +511296,133.31,90.029605 +511297,135.48,92.4982 +511298,134.33,91.6372 +511299,133.18,90.78938 +511300,132,89.955846 +511301,134.1,92.5375 +511302,132.98,91.6388 +511303,131.84,90.75356 +511304,130.7,89.88277 +511305,132.72,92.576 +511306,131.62,91.6402 +511307,130.51,90.71794 +511308,129.39,89.81041 +511309,131.33,92.6137 +511310,130.26,91.6412 +511311,129.18,90.68254 +511312,128.08,89.73878 +511313,129.95,92.6507 +511314,128.9,91.642 +511315,127.85,90.64736 +511316,126.78,89.66792 +511317,128.56,92.6869 +511318,127.54,91.6424 +511319,126.51,90.61241 +511320,125.47,89.59785 +511321,127.17,92.7223 +511322,126.18,91.6426 +511323,125.18,90.5777 +511324,124.17,89.5286 +511325,125.78,92.7568 +511326,124.82,91.6424 +511327,123.85,90.54324 +511328,122.87,89.46019 +511329,124.39,92.7904 +511330,123.47,91.6419 +511331,122.52,90.50904 +511332,121.56,89.39266 +511333,123,92.8232 +511334,122.11,91.6411 +511335,121.19,90.47511 +511336,120.26,89.32601 +511337,121.61,92.855 +511338,120.75,91.6399 +511339,119.86,90.44145 +511340,118.96,89.26028 +511341,120.22,92.8858 +511342,119.39,91.6384 +511343,118.53,90.40807 +511344,117.66,89.19549 +511345,118.83,92.9156 +511346,118.02,91.6365 +511347,117.2,90.37498 +511348,116.37,89.13167 +511349,117.44,92.9445 +511350,116.66,91.6342 +511351,115.87,90.3422 +511352,115.07,89.06883 +511353,116.04,92.9723 +511354,115.3,91.6316 +511355,114.54,90.30972 +511356,113.77,89.007 +511357,114.65,92.999 +511358,113.94,91.6286 +511359,113.22,90.27755 +511360,112.47,88.9462 +511361,113.26,93.0247 +511362,112.58,91.6252 +511363,111.89,90.2457 +511364,111.18,88.8864 +511365,111.86,93.0493 +511366,111.22,91.6214 +511367,110.56,90.21419 +511368,109.88,88.8278 +511369,110.47,93.0728 +511370,109.86,91.6172 +511371,109.23,90.183 +511372,108.59,88.7702 +511373,109.07,93.0951 +511374,108.5,91.6126 +511375,107.9,90.15216 +511376,107.29,88.7137 +511377,107.67,93.1162 +511378,107.13,91.6076 +511379,106.58,90.12167 +511380,106,88.6583 +511381,106.27,93.1362 +511382,105.77,91.6021 +511383,105.25,90.09153 +511384,104.71,88.6041 +511385,104.88,93.1549 +511386,104.41,91.5962 +511387,103.92,90.061751 +511388,103.41,88.5511 +511389,103.48,93.1725 +511390,103.05,91.5899 +511391,102.6,90.03234 +511392,102.12,88.4992 +511393,102.08,93.1888 +511394,101.69,91.5831 +511395,101.27,90.0032996 +511396,100.83,88.4485 +511397,100.68,93.2038 +511398,100.32,91.5759 +511399,99.942,89.974637 +511400,99.539,88.399 +511401,99.282,93.2176 +511402,98.961,91.5683 +511403,98.616,89.946357 +511404,98.248,88.3508 +511405,97.882,93.23 +511406,97.599,91.5601 +511407,97.29,89.918464 +511408,96.957,88.3038 +511409,96.483,93.2412 +511410,96.236,91.5516 +511411,95.964,89.89096 +511412,95.667,88.258 +511413,95.082,93.251 +511414,94.873,91.5425 +511415,94.638,89.86386 +511416,94.377,88.2135 +511417,93.682,93.2595 +511418,93.511,91.533 +511419,93.312,89.83716 +511420,93.088,88.1703 +511421,92.282,93.2666 +511422,92.148,91.523 +511423,91.986,89.81086 +511424,91.799,88.1283 +511425,90.881,93.2724 +511426,90.785,91.5125 +511427,90.661,89.78497 +511428,90.51,88.0877 +511429,89.48,93.2768 +511430,89.422,91.5016 +511431,89.335,89.7595 +511432,89.221,88.0483 +511433,88.079,93.2797 +511434,88.06,91.4901 +511435,88.01,89.73444 +511436,87.932,88.0103 +511437,86.678,93.2813 +511438,86.697,91.4782 +511439,86.684,89.7098 +511440,86.643,87.9736 +511441,85.277,93.2815 +511442,85.334,91.4658 +511443,85.359,89.68559 +511444,85.355,87.9383 +511445,83.876,93.2802 +511446,83.971,91.4528 +511447,84.034,89.66179 +511448,84.066,87.9042 +511449,82.475,93.2776 +511450,82.609,91.4394 +511451,82.708,89.63843 +511452,82.778,87.8715 +511453,81.075,93.2734 +511454,81.246,91.4255 +511455,81.383,89.61549 +511456,81.49,87.8402 +511457,79.674,93.2678 +511458,79.884,91.4111 +511459,80.058,89.59299 +511460,80.202,87.8102 +511461,78.273,93.2608 +511462,78.521,91.3961 +511463,78.733,89.57092 +511464,78.913,87.7816 +511465,76.873,93.2523 +511466,77.159,91.3807 +511467,77.408,89.54929 +511468,77.625,87.7543 +511469,75.472,93.2423 +511470,75.796,91.3648 +511471,76.083,89.52809 +511472,76.336,87.7285 +511473,74.072,93.2309 +511474,74.434,91.3483 +511475,74.758,89.50733 +511476,75.048,87.7039 +511477,72.672,93.218 +511478,73.072,91.3313 +511479,73.432,89.48701 +511480,73.759,87.6808 +511481,71.273,93.2036 +511482,71.71,91.3139 +511483,72.107,89.46712 +511484,72.47,87.659 +511485,69.873,93.1877 +511486,70.348,91.2959 +511487,70.782,89.44768 +511488,71.181,87.6386 +511489,68.474,93.1704 +511490,68.986,91.2774 +511491,69.457,89.42867 +511492,69.892,87.6196 +511493,67.076,93.1515 +511494,67.624,91.2584 +511495,68.131,89.4101 +511496,68.602,87.6019 +511497,65.678,93.1312 +511498,66.263,91.2389 +511499,66.806,89.39197 +511500,67.312,87.5856 +511501,64.28,93.1094 +511502,64.902,91.2189 +511503,65.48,89.37428 +511504,66.022,87.5706 +511505,62.883,93.0861 +511506,63.541,91.1983 +511507,64.155,89.35703 +511508,64.731,87.5571 +511509,61.486,93.0613 +511510,62.18,91.1773 +511511,62.829,89.34021 +511512,63.44,87.5448 +511513,60.09,93.035 +511514,60.819,91.1557 +511515,61.503,89.32383 +511516,62.149,87.534 +511517,58.694,93.0073 +511518,59.458,91.1337 +511519,60.177,89.30788 +511520,60.857,87.5244 +511521,57.299,92.9781 +511522,58.098,91.1111 +511523,58.851,89.29236 +511524,59.565,87.5163 +511525,55.905,92.9475 +511526,56.738,91.0881 +511527,57.525,89.27727 +511528,58.272,87.5094 +511529,54.511,92.9154 +511530,55.378,91.0646 +511531,56.199,89.2626 +511532,56.979,87.5039 +511533,53.118,92.8818 +511534,54.018,91.0405 +511535,54.872,89.24836 +511536,55.686,87.4997 +511537,51.725,92.8468 +511538,52.659,91.016 +511539,53.545,89.23455 +511540,54.391,87.4968 +511541,50.333,92.8104 +511542,51.3,90.99095 +511543,52.218,89.22115 +511544,53.096,87.4952 +511545,48.942,92.7726 +511546,49.941,90.96545 +511547,50.891,89.20816 +511548,51.801,87.4949 +511549,47.552,92.7333 +511550,48.582,90.93946 +511551,49.564,89.19559 +511552,50.505,87.4958 +511553,46.163,92.6927 +511554,47.224,90.91299 +511555,48.237,89.18343 +511556,49.208,87.4981 +511557,44.774,92.6506 +511558,45.866,90.88604 +511559,46.909,89.17167 +511560,47.911,87.5016 +511561,43.386,92.6072 +511562,44.508,90.85863 +511563,45.581,89.16031 +511564,46.613,87.5063 +511565,41.999,92.5624 +511566,43.151,90.83076 +511567,44.253,89.14934 +511568,45.314,87.5123 +511569,40.614,92.5163 +511570,41.794,90.80242 +511571,42.925,89.13877 +511572,44.014,87.5194 +511573,39.228,92.4688 +511574,40.437,90.77362 +511575,41.596,89.12859 +511576,42.714,87.5278 +511577,37.844,92.42 +511578,39.081,90.74438 +511579,40.268,89.11878 +511580,41.412,87.5374 +511581,36.461,92.37 +511582,37.725,90.71469 +511583,38.939,89.10936 +511584,40.11,87.5481 +511585,35.079,92.3186 +511586,36.369,90.68456 +511587,37.609,89.1003 +511588,38.807,87.56 +511589,33.698,92.266 +511590,35.014,90.654 +511591,36.28,89.09161 +511592,37.504,87.573 +511593,32.318,92.2121 +511594,33.659,90.62301 +511595,34.95,89.08328 +511596,36.199,87.5872 +511597,30.939,92.157 +511598,32.304,90.59161 +511599,33.62,89.07531 +511600,34.893,87.6024 +511601,29.561,92.1006 +511602,30.95,90.55978 +511603,32.289,89.06768 +511604,33.587,87.6188 +511605,28.184,92.0431 +511606,29.596,90.52755 +511607,30.959,89.06039 +511608,32.279,87.6362 +511609,26.809,91.9845 +511610,28.243,90.49492 +511611,29.628,89.05344 +511612,30.971,87.6546 +511613,25.434,91.9246 +511614,26.889,90.46189 +511615,28.296,89.04682 +511616,29.661,87.6741 +511617,24.061,91.8637 +511618,25.537,90.42848 +511619,26.965,89.04052 +511620,28.351,87.6946 +511621,22.688,91.8016 +511622,24.185,90.39468 +511623,25.633,89.03453 +511624,27.04,87.716 +511625,21.317,91.7385 +511626,22.833,90.36052 +511627,24.3,89.02885 +511628,25.727,87.7385 +511629,19.947,91.6743 +511630,21.481,90.32599 +511631,22.968,89.02348 +511632,24.413,87.7618 +511633,18.579,91.6091 +511634,20.13,90.29111 +511635,21.635,89.01839 +511636,23.099,87.7861 +511637,17.211,91.5429 +511638,18.78,90.25587 +511639,20.301,89.01359 +511640,21.783,87.8113 +511641,15.845,91.4757 +511642,17.43,90.2203 +511643,18.968,89.00907 +511644,20.466,87.8374 +511645,14.48,91.4075 +511646,16.08,90.1844 +511647,17.634,89.00481 +511648,19.148,87.8643 +511649,13.116,91.3384 +511650,14.731,90.14817 +511651,16.299,89.00082 +511652,17.829,87.892 +511653,11.754,91.2684 +511654,13.382,90.11163 +511655,14.965,88.9971 +511656,16.509,87.9205 +511657,10.393,91.1976 +511658,12.033,90.074791 +511659,13.63,88.9936 +511660,15.187,87.9498 +511661,9.0332,91.1259 +511662,10.685,90.037651 +511663,12.294,88.9903 +511664,13.865,87.9799 +511665,7.6747,91.0534 +511666,9.338,90.00022526 +511667,10.958,88.9873 +511668,12.541,88.0107 +511669,6.3175,90.98005 +511670,7.991,89.962522 +511671,9.6222,88.9845 +511672,11.216,88.0421 +511673,4.9617,90.90598 +511674,6.6445,89.924551 +511675,8.2857,88.9819 +511676,9.8898,88.0743 +511677,3.6071,90.83119 +511678,5.2984,89.88632 +511679,6.9487,88.9795 +511680,8.5623,88.1071 +511681,2.254,90.75569 +511682,3.9528,89.84784 +511683,5.6114,88.9773 +511684,7.2337,88.1405 +511685,0.90216,90.67953 +511686,2.6077,89.80913 +511687,4.2736,88.9752 +511688,5.9038,88.1745 +511689,359.55,90.60273 +511690,1.2631,89.77018 +511691,2.9355,88.9734 +511692,4.5727,88.2091 +511693,358.2,90.52532 +511694,359.92,89.73102 +511695,1.597,88.9717 +511696,3.2403,88.2442 +511697,356.85,90.44733 +511698,358.58,89.69164 +511699,0.25811,88.9701 +511700,1.9066,88.2798 +511701,355.51,90.3688 +511702,357.23,89.65207 +511703,358.92,88.9687 +511704,0.57172,88.3159 +511705,354.16,90.28976 +511706,355.89,89.61231 +511707,357.58,88.9675 +511708,359.24,88.3525 +511709,352.82,90.21023 +511710,354.55,89.57237 +511711,356.24,88.9663 +511712,357.9,88.3894 +511713,351.48,90.13025 +511714,353.21,89.53227 +511715,354.9,88.9653 +511716,356.56,88.4268 +511717,350.14,90.049855 +511718,351.86,89.492 +511719,353.56,88.9644 +511720,355.22,88.4645 +511721,348.8,89.969074 +511722,350.52,89.45159 +511723,352.22,88.9636 +511724,353.88,88.5026 +511725,347.46,89.88794 +511726,349.18,89.41104 +511727,350.87,88.9628 +511728,352.54,88.541 +511729,346.12,89.80649 +511730,347.84,89.37037 +511731,349.53,88.9622 +511732,351.19,88.5797 +511733,344.79,89.72474 +511734,346.5,89.32958 +511735,348.19,88.9616 +511736,349.85,88.6186 +511737,343.45,89.64275 +511738,345.17,89.28869 +511739,346.85,88.961 +511740,348.5,88.6577 +511741,342.12,89.56053 +511742,343.83,89.24771 +511743,345.5,88.9605 +511744,347.15,88.697 +511745,340.79,89.47812 +511746,342.49,89.20664 +511747,344.16,88.9601 +511748,345.8,88.7364 +511749,339.46,89.39556 +511750,341.15,89.1655 +511751,342.82,88.9596 +511752,344.45,88.776 +511753,338.13,89.31287 +511754,339.81,89.1243 +511755,341.47,88.9592 +511756,343.1,88.8157 +511757,336.8,89.2301 +511758,338.48,89.08305 +511759,340.13,88.9588 +511760,341.75,88.8555 +511761,335.48,89.14726 +511762,337.14,89.04176 +511763,338.78,88.9583 +511764,340.39,88.8953 +511765,334.15,89.06441 +511766,335.81,89.00044 +511767,337.44,88.9579 +511768,339.04,88.9351 +511769,332.83,88.9816 +511770,334.47,88.9591 +511771,336.09,88.9574 +511772,337.68,88.9748 +511773,331.51,88.8988 +511774,333.14,88.9178 +511775,334.74,88.9569 +511776,336.32,89.01457 +511777,330.19,88.816 +511778,331.8,88.8764 +511779,333.4,88.9564 +511780,334.97,89.0542 +511781,328.87,88.7334 +511782,330.47,88.8351 +511783,332.05,88.9557 +511784,333.6,89.09372 +511785,327.55,88.6509 +511786,329.14,88.7938 +511787,330.7,88.955 +511788,332.24,89.1331 +511789,326.23,88.5686 +511790,327.8,88.7525 +511791,329.35,88.9543 +511792,330.88,89.1723 +511793,324.92,88.4865 +511794,326.47,88.7113 +511795,328,88.9534 +511796,329.52,89.21129 +511797,323.6,88.4046 +511798,325.14,88.6702 +511799,326.66,88.9525 +511800,328.15,89.25005 +511801,322.29,88.323 +511802,323.81,88.6291 +511803,325.31,88.9514 +511804,326.78,89.28855 +511805,320.98,88.2417 +511806,322.48,88.588 +511807,323.96,88.9502 +511808,325.42,89.32674 +511809,319.66,88.1608 +511810,321.15,88.5471 +511811,322.61,88.9489 +511812,324.05,89.36462 +511813,318.36,88.0802 +511814,319.82,88.5063 +511815,321.26,88.9475 +511816,322.68,89.40214 +511817,317.05,87.9999 +511818,318.49,88.4656 +511819,319.91,88.9459 +511820,321.31,89.43927 +511821,315.74,87.9202 +511822,317.16,88.425 +511823,318.56,88.9441 +511824,319.93,89.476 +511825,314.43,87.8408 +511826,315.83,88.3845 +511827,317.2,88.9422 +511828,318.56,89.51228 +511829,313.13,87.762 +511830,314.5,88.3442 +511831,315.85,88.9401 +511832,317.19,89.54809 +511833,311.82,87.6836 +511834,313.17,88.304 +511835,314.5,88.9378 +511836,315.81,89.5834 +511837,310.52,87.6058 +511838,311.84,88.264 +511839,313.15,88.9353 +511840,314.43,89.61818 +511841,309.22,87.5286 +511842,310.52,88.2241 +511843,311.8,88.9326 +511844,313.06,89.65241 +511845,307.92,87.452 +511846,309.19,88.1845 +511847,310.44,88.9296 +511848,311.68,89.68605 +511849,306.62,87.376 +511850,307.86,88.145 +511851,309.09,88.9265 +511852,310.3,89.71909 +511853,305.32,87.3007 +511854,306.54,88.1057 +511855,307.74,88.9231 +511856,308.92,89.75148 +511857,304.02,87.226 +511858,305.21,88.0666 +511859,306.38,88.9195 +511860,307.54,89.78321 +511861,302.73,87.1521 +511862,303.89,88.0278 +511863,305.03,88.9156 +511864,306.15,89.81425 +511865,301.43,87.0789 +511866,302.56,87.9891 +511867,303.68,88.9115 +511868,304.77,89.84456 +511869,300.14,87.0065 +511870,301.24,87.9507 +511871,302.32,88.9071 +511872,303.39,89.87414 +511873,298.84,86.9348 +511874,299.91,87.9126 +511875,300.97,88.9024 +511876,302,89.902941 +511877,297.55,86.864 +511878,298.59,87.8747 +511879,299.61,88.8974 +511880,300.61,89.930948 +511881,296.26,86.794 +511882,297.27,87.837 +511883,298.26,88.8922 +511884,299.23,89.958135 +511885,294.96,86.7249 +511886,295.94,87.7996 +511887,296.9,88.8866 +511888,297.84,89.984476 +511889,293.67,86.6567 +511890,294.62,87.7625 +511891,295.54,88.8807 +511892,296.45,90.0099469 +511893,292.38,86.5894 +511894,293.3,87.7257 +511895,294.19,88.8745 +511896,295.06,90.034525 +511897,291.1,86.523 +511898,291.97,87.6892 +511899,292.83,88.868 +511900,293.67,90.058186 +511901,289.81,86.4576 +511902,290.65,87.6529 +511903,291.48,88.8611 +511904,292.28,90.080908 +511905,288.52,86.3931 +511906,289.33,87.617 +511907,290.12,88.8539 +511908,290.89,90.10267 +511909,287.23,86.3297 +511910,288.01,87.5814 +511911,288.76,88.8464 +511912,289.5,90.12344 +511913,285.95,86.2673 +511914,286.69,87.5461 +511915,287.41,88.8385 +511916,288.1,90.14321 +511917,284.66,86.2059 +511918,285.37,87.5112 +511919,286.05,88.8302 +511920,286.71,90.16195 +511921,283.38,86.1456 +511922,284.04,87.4765 +511923,284.69,88.8216 +511924,285.32,90.17965 +511925,282.09,86.0863 +511926,282.72,87.4423 +511927,283.33,88.8125 +511928,283.92,90.19628 +511929,280.81,86.0282 +511930,281.4,87.4083 +511931,281.98,88.8031 +511932,282.53,90.21182 +511933,279.52,85.9711 +511934,280.08,87.3747 +511935,280.62,88.7934 +511936,281.13,90.22625 +511937,278.24,85.9152 +511938,278.76,87.3415 +511939,279.26,88.7832 +511940,279.73,90.23956 +511941,276.96,85.8605 +511942,277.44,87.3087 +511943,277.9,88.7726 +511944,278.34,90.25173 +511945,275.68,85.8069 +511946,276.12,87.2762 +511947,276.54,88.7616 +511948,276.94,90.26274 +511949,274.4,85.7545 +511950,274.8,87.2441 +511951,275.19,88.7502 +511952,275.54,90.27256 +511953,273.11,85.7033 +511954,273.48,87.2123 +511955,273.83,88.7384 +511956,274.15,90.2812 +511957,271.83,85.6533 +511958,272.17,87.181 +511959,272.47,88.7262 +511960,272.75,90.28863 +511961,270.55,85.6045 +511962,270.85,87.1501 +511963,271.11,88.7135 +511964,271.35,90.29483 +511965,269.27,85.5569 +511966,269.53,87.1195 +511967,269.75,88.7005 +511968,269.95,90.2998 +511969,267.99,85.5106 +511970,268.21,87.0893 +511971,268.4,88.6869 +511972,268.55,90.30351 +511973,266.71,85.4655 +511974,266.89,87.0596 +511975,267.04,88.673 +511976,267.15,90.30596 +511977,265.43,85.4217 +511978,265.57,87.0302 +511979,265.68,88.6586 +511980,265.75,90.30713 +511981,264.15,85.3792 +511982,264.25,87.0013 +511983,264.32,88.6437 +511984,264.36,90.30701 +511985,262.88,85.338 +511986,262.93,86.9728 +511987,262.96,88.6285 +511988,262.96,90.30559 +511989,261.6,85.2981 +511990,261.62,86.9447 +511991,261.6,88.6127 +511992,261.56,90.30285 +511993,260.32,85.2594 +511994,260.3,86.917 +511995,260.24,88.5965 +511996,260.16,90.29879 +511997,259.04,85.2221 +511998,258.98,86.8898 +511999,258.89,88.5799 +512000,258.76,90.29341 +512001,257.76,85.1861 +512002,257.66,86.8629 +512003,257.53,88.5628 +512004,257.36,90.28668 +512005,256.48,85.1514 +512006,256.34,86.8365 +512007,256.17,88.5452 +512008,255.96,90.2786 +512009,255.2,85.118 +512010,255.02,86.8105 +512011,254.81,88.5271 +512012,254.56,90.26917 +512013,253.92,85.086 +512014,253.71,86.785 +512015,253.45,88.5086 +512016,253.16,90.25838 +512017,252.64,85.0552 +512018,252.39,86.7599 +512019,252.1,88.4897 +512020,251.76,90.24621 +512021,251.37,85.0259 +512022,251.07,86.7352 +512023,250.74,88.4702 +512024,250.36,90.23268 +512025,250.09,84.9978 +512026,249.75,86.711 +512027,249.38,88.4503 +512028,248.97,90.21776 +512029,248.81,84.9711 +512030,248.43,86.6872 +512031,248.02,88.4299 +512032,247.57,90.20147 +512033,247.53,84.9458 +512034,247.11,86.6638 +512035,246.66,88.4091 +512036,246.17,90.18379 +512037,246.25,84.9218 +512038,245.8,86.6409 +512039,245.31,88.3877 +512040,244.77,90.16473 +512041,244.97,84.8991 +512042,244.48,86.6184 +512043,243.95,88.3659 +512044,243.38,90.14427 +512045,243.69,84.8777 +512046,243.16,86.5963 +512047,242.59,88.3437 +512048,241.98,90.12243 +512049,242.41,84.8577 +512050,241.84,86.5747 +512051,241.24,88.3209 +512052,240.58,90.099196 +512053,241.12,84.839 +512054,240.52,86.5535 +512055,239.88,88.2977 +512056,239.19,90.074574 +512057,239.84,84.8217 +512058,239.2,86.5327 +512059,238.52,88.274 +512060,237.79,90.048564 +512061,238.56,84.8057 +512062,237.88,86.5124 +512063,237.17,88.2499 +512064,236.4,90.021169 +512065,237.28,84.791 +512066,236.56,86.4925 +512067,235.81,88.2253 +512068,235,89.9923905 +512069,235.99,84.7776 +512070,235.25,86.4731 +512071,234.45,88.2002 +512072,233.61,89.962233 +512073,234.71,84.7655 +512074,233.93,86.4541 +512075,233.1,88.1746 +512076,232.22,89.9307 +512077,233.43,84.7547 +512078,232.61,86.4355 +512079,231.74,88.1486 +512080,230.83,89.8978 +512081,232.14,84.7453 +512082,231.29,86.4173 +512083,230.39,88.1221 +512084,229.43,89.86353 +512085,230.86,84.7371 +512086,229.97,86.3995 +512087,229.03,88.0952 +512088,228.04,89.82791 +512089,229.57,84.7301 +512090,228.65,86.3822 +512091,227.68,88.0678 +512092,226.65,89.79093 +512093,228.29,84.7245 +512094,227.33,86.3653 +512095,226.32,88.04 +512096,225.26,89.75261 +512097,227,84.7201 +512098,226.01,86.3488 +512099,224.97,88.0117 +512100,223.87,89.71296 +512101,225.71,84.717 +512102,224.69,86.3327 +512103,223.61,87.983 +512104,222.49,89.67198 +512105,224.42,84.7151 +512106,223.37,86.317 +512107,222.26,87.9538 +512108,221.1,89.62968 +512109,223.13,84.7144 +512110,222.04,86.3017 +512111,220.91,87.9242 +512112,219.71,89.58609 +512113,221.84,84.7149 +512114,220.72,86.2868 +512115,219.55,87.8941 +512116,218.33,89.5412 +512117,220.55,84.7167 +512118,219.4,86.2723 +512119,218.2,87.8637 +512120,216.94,89.49502 +512121,219.26,84.7196 +512122,218.08,86.2582 +512123,216.85,87.8328 +512124,215.56,89.44759 +512125,217.97,84.7237 +512126,216.76,86.2445 +512127,215.5,87.8014 +512128,214.18,89.39889 +512129,216.68,84.7289 +512130,215.44,86.2312 +512131,214.15,87.7697 +512132,212.8,89.34896 +512133,215.38,84.7353 +512134,214.11,86.2182 +512135,212.79,87.7376 +512136,211.42,89.2978 +512137,214.09,84.7428 +512138,212.79,86.2057 +512139,211.44,87.705 +512140,210.04,89.24543 +512141,212.79,84.7514 +512142,211.47,86.1934 +512143,210.09,87.6721 +512144,208.66,89.19187 +512145,211.49,84.7611 +512146,210.14,86.1816 +512147,208.74,87.6387 +512148,207.28,89.13713 +512149,210.2,84.7719 +512150,208.82,86.1701 +512151,207.39,87.605 +512152,205.91,89.08124 +512153,208.9,84.7837 +512154,207.5,86.1589 +512155,206.04,87.5709 +512156,204.53,89.0242 +512157,207.6,84.7966 +512158,206.17,86.1481 +512159,204.7,87.5364 +512160,203.16,88.966 +512161,206.3,84.8105 +512162,204.85,86.1376 +512163,203.35,87.5015 +512164,201.79,88.9068 +512165,204.99,84.8254 +512166,203.52,86.1275 +512167,202,87.4663 +512168,200.42,88.8464 +512169,203.69,84.8412 +512170,202.2,86.1176 +512171,200.65,87.4307 +512172,199.05,88.785 +512173,202.39,84.858 +512174,200.87,86.1081 +512175,199.3,87.3948 +512176,197.68,88.7226 +512177,201.08,84.8758 +512178,199.54,86.0989 +512179,197.96,87.3585 +512180,196.31,88.6591 +512181,199.77,84.8944 +512182,198.22,86.09 +512183,196.61,87.3219 +512184,194.95,88.5946 +512185,198.47,84.914 +512186,196.89,86.0814 +512187,195.27,87.285 +512188,193.58,88.5292 +512189,197.16,84.9344 +512190,195.56,86.0731 +512191,193.92,87.2478 +512192,192.22,88.4628 +512193,195.85,84.9557 +512194,194.24,86.065 +512195,192.58,87.2102 +512196,190.86,88.3955 +512197,194.54,84.9778 +512198,192.91,86.0573 +512199,191.23,87.1723 +512200,189.5,88.3273 +512201,193.22,85.0007 +512202,191.58,86.0498 +512203,189.89,87.1342 +512204,188.14,88.2582 +512205,191.91,85.0243 +512206,190.25,86.0425 +512207,188.54,87.0958 +512208,186.78,88.1882 +512209,190.6,85.0487 +512210,188.92,86.0355 +512211,187.2,87.057 +512212,185.42,88.1175 +512213,189.28,85.0739 +512214,187.59,86.0287 +512215,185.86,87.0181 +512216,184.07,88.0459 +512217,187.96,85.0997 +512218,186.26,86.0222 +512219,184.52,86.9788 +512220,182.71,87.9735 +512221,186.64,85.1262 +512222,184.93,86.0159 +512223,183.17,86.9393 +512224,181.36,87.9004 +512225,185.32,85.1534 +512226,183.6,86.0098 +512227,181.83,86.8996 +512228,180.01,87.8266 +512229,184,85.1812 +512230,182.27,86.0039 +512231,180.49,86.8596 +512232,178.66,87.7521 +512233,182.68,85.2096 +512234,180.94,85.9982 +512235,179.15,86.8194 +512236,177.31,87.677 +512237,181.36,85.2386 +512238,179.61,85.9927 +512239,177.81,86.779 +512240,175.96,87.6012 +512241,180.03,85.2681 +512242,178.28,85.9873 +512243,176.47,86.7384 +512244,174.62,87.5247 +512245,178.7,85.2981 +512246,176.94,85.9822 +512247,175.14,86.6976 +512248,173.27,87.4478 +512249,177.38,85.3286 +512250,175.61,85.9772 +512251,173.8,86.6566 +512252,171.93,87.3702 +512253,176.05,85.3596 +512254,174.28,85.9723 +512255,172.46,86.6154 +512256,170.59,87.2922 +512257,174.72,85.391 +512258,172.94,85.9676 +512259,171.12,86.5741 +512260,169.25,87.2136 +512261,173.39,85.4228 +512262,171.61,85.963 +512263,169.79,86.5326 +512264,167.91,87.1346 +512265,172.05,85.455 +512266,170.27,85.9586 +512267,168.45,86.4909 +512268,166.58,87.0552 +512269,170.72,85.4875 +512270,168.94,85.9542 +512271,167.11,86.4492 +512272,165.24,86.9754 +512273,169.38,85.5204 +512274,167.6,85.95 +512275,165.78,86.4073 +512276,163.91,86.8952 +512277,168.04,85.5535 +512278,166.27,85.9458 +512279,164.45,86.3652 +512280,162.58,86.8147 +512281,166.71,85.5869 +512282,164.93,85.9417 +512283,163.11,86.3231 +512284,161.25,86.7339 +512285,165.37,85.6206 +512286,163.59,85.9377 +512287,161.78,86.2809 +512288,159.92,86.6528 +512289,164.02,85.6545 +512290,162.26,85.9338 +512291,160.44,86.2386 +512292,158.59,86.5715 +512293,162.68,85.6885 +512294,160.92,85.9299 +512295,159.11,86.1962 +512296,157.26,86.4899 +512297,161.34,85.7227 +512298,159.58,85.9261 +512299,157.78,86.1538 +512300,155.94,86.4082 +512301,159.99,85.757 +512302,158.24,85.9223 +512303,156.45,86.1113 +512304,154.61,86.3263 +512305,158.65,85.7914 +512306,156.9,85.9185 +512307,155.12,86.0687 +512308,153.29,86.2444 +512309,157.3,85.8258 +512310,155.56,85.9148 +512311,153.79,86.0261 +512312,151.97,86.1623 +512313,155.95,85.8603 +512314,154.22,85.911 +512315,152.46,85.9835 +512316,150.65,86.0802 +512317,154.6,85.8948 +512318,152.88,85.9072 +512319,151.13,85.9409 +512320,149.34,85.9981 +512321,153.25,85.9293 +512322,151.54,85.9035 +512323,149.8,85.8983 +512324,148.02,85.916 +512325,151.89,85.9637 +512326,150.2,85.8997 +512327,148.47,85.8557 +512328,146.7,85.8339 +512329,150.54,85.998 +512330,148.86,85.8958 +512331,147.14,85.8131 +512332,145.39,85.7519 +512333,149.18,86.0322 +512334,147.52,85.8919 +512335,145.82,85.7705 +512336,144.08,85.67 +512337,147.82,86.0663 +512338,146.17,85.888 +512339,144.49,85.728 +512340,142.77,85.5883 +512341,146.47,86.1002 +512342,144.83,85.884 +512343,143.16,85.6855 +512344,141.46,85.5067 +512345,145.11,86.1338 +512346,143.49,85.8799 +512347,141.84,85.6431 +512348,140.15,85.4254 +512349,143.74,86.1673 +512350,142.14,85.8758 +512351,140.51,85.6007 +512352,138.84,85.3442 +512353,142.38,86.2005 +512354,140.8,85.8715 +512355,139.19,85.5585 +512356,137.54,85.2634 +512357,141.02,86.2334 +512358,139.46,85.8671 +512359,137.86,85.5163 +512360,136.23,85.1828 +512361,139.65,86.266 +512362,138.11,85.8627 +512363,136.54,85.4742 +512364,134.93,85.1025 +512365,138.29,86.2983 +512366,136.77,85.8581 +512367,135.21,85.4322 +512368,133.63,85.0227 +512369,136.92,86.3302 +512370,135.42,85.8533 +512371,133.89,85.3904 +512372,132.33,84.9431 +512373,135.55,86.3617 +512374,134.07,85.8485 +512375,132.57,85.3486 +512376,131.03,84.8641 +512377,134.18,86.3927 +512378,132.73,85.8434 +512379,131.24,85.307 +512380,129.73,84.7854 +512381,132.81,86.4233 +512382,131.38,85.8383 +512383,129.92,85.2656 +512384,128.43,84.7072 +512385,131.44,86.4535 +512386,130.03,85.8329 +512387,128.6,85.2243 +512388,127.14,84.6296 +512389,130.07,86.4831 +512390,128.69,85.8274 +512391,127.28,85.1832 +512392,125.84,84.5524 +512393,128.69,86.5122 +512394,127.34,85.8217 +512395,125.96,85.1423 +512396,124.55,84.4759 +512397,127.32,86.5407 +512398,125.99,85.8157 +512399,124.64,85.1015 +512400,123.26,84.3999 +512401,125.94,86.5686 +512402,124.64,85.8096 +512403,123.32,85.061 +512404,121.97,84.3245 +512405,124.56,86.596 +512406,123.29,85.8033 +512407,122,85.0206 +512408,120.68,84.2498 +512409,123.18,86.6226 +512410,121.95,85.7967 +512411,120.68,84.9805 +512412,119.39,84.1757 +512413,121.81,86.6487 +512414,120.6,85.7899 +512415,119.36,84.9406 +512416,118.1,84.1024 +512417,120.42,86.674 +512418,119.25,85.7829 +512419,118.04,84.9009 +512420,116.81,84.0297 +512421,119.04,86.6986 +512422,117.9,85.7756 +512423,116.72,84.8614 +512424,115.53,83.9578 +512425,117.66,86.7225 +512426,116.55,85.7681 +512427,115.41,84.8222 +512428,114.24,83.8867 +512429,116.28,86.7457 +512430,115.2,85.7603 +512431,114.09,84.7833 +512432,112.96,83.8164 +512433,114.89,86.768 +512434,113.85,85.7522 +512435,112.77,84.7446 +512436,111.67,83.7469 +512437,113.51,86.7895 +512438,112.5,85.7439 +512439,111.46,84.7062 +512440,110.39,83.6782 +512441,112.12,86.8102 +512442,111.14,85.7352 +512443,110.14,84.6681 +512444,109.11,83.6105 +512445,110.74,86.8301 +512446,109.79,85.7263 +512447,108.82,84.6302 +512448,107.83,83.5436 +512449,109.35,86.8491 +512450,108.44,85.7171 +512451,107.51,84.5927 +512452,106.55,83.4776 +512453,107.96,86.8672 +512454,107.09,85.7075 +512455,106.19,84.5555 +512456,105.27,83.4126 +512457,106.57,86.8844 +512458,105.74,85.6977 +512459,104.88,84.5185 +512460,103.99,83.3485 +512461,105.18,86.9006 +512462,104.38,85.6875 +512463,103.56,84.4819 +512464,102.72,83.2854 +512465,103.79,86.9159 +512466,103.03,85.677 +512467,102.25,84.4456 +512468,101.44,83.2233 +512469,102.4,86.9302 +512470,101.68,85.6661 +512471,100.93,84.4096 +512472,100.16,83.1622 +512473,101.01,86.9435 +512474,100.33,85.655 +512475,99.619,84.374 +512476,98.886,83.1021 +512477,99.617,86.9558 +512478,98.974,85.6434 +512479,98.306,84.3387 +512480,97.611,83.0431 +512481,98.224,86.9671 +512482,97.621,85.6315 +512483,96.992,84.3038 +512484,96.337,82.9852 +512485,96.831,86.9773 +512486,96.268,85.6193 +512487,95.678,84.2692 +512488,95.063,82.9284 +512489,95.437,86.9864 +512490,94.914,85.6067 +512491,94.365,84.235 +512492,93.79,82.8726 +512493,94.043,86.9945 +512494,93.561,85.5937 +512495,93.052,84.2011 +512496,92.517,82.818 +512497,92.648,87.0015 +512498,92.207,85.5803 +512499,91.739,84.1676 +512500,91.244,82.7646 +512501,91.253,87.0073 +512502,90.854,85.5666 +512503,90.427,84.1345 +512504,89.972,82.7122 +512505,89.857,87.0121 +512506,89.5,85.5525 +512507,89.114,84.1018 +512508,88.701,82.6611 +512509,88.462,87.0156 +512510,88.146,85.5379 +512511,87.802,84.0694 +512512,87.43,82.6111 +512513,87.065,87.0181 +512514,86.792,85.523 +512515,86.489,84.0375 +512516,86.159,82.5623 +512517,85.669,87.0193 +512518,85.438,85.5077 +512519,85.177,84.0059 +512520,84.888,82.5148 +512521,84.272,87.0194 +512522,84.084,85.492 +512523,83.865,83.9747 +512524,83.618,82.4684 +512525,82.875,87.0183 +512526,82.73,85.4759 +512527,82.553,83.9439 +512528,82.348,82.4233 +512529,81.478,87.016 +512530,81.376,85.4594 +512531,81.242,83.9136 +512532,81.078,82.3794 +512533,80.081,87.0124 +512534,80.021,85.4424 +512535,79.93,83.8836 +512536,79.808,82.3367 +512537,78.683,87.0077 +512538,78.667,85.425 +512539,78.618,83.8541 +512540,78.538,82.2953 +512541,77.286,87.0016 +512542,77.313,85.4073 +512543,77.307,83.825 +512544,77.269,82.2552 +512545,75.889,86.9944 +512546,75.959,85.3891 +512547,75.995,83.7962 +512548,76,82.2163 +512549,74.491,86.9859 +512550,74.605,85.3704 +512551,74.684,83.768 +512552,74.73,82.1787 +512553,73.093,86.9761 +512554,73.251,85.3514 +512555,73.372,83.7401 +512556,73.461,82.1424 +512557,71.696,86.9651 +512558,71.897,85.3319 +512559,72.061,83.7126 +512560,72.192,82.1074 +512561,70.299,86.9528 +512562,70.543,85.312 +512563,70.75,83.6856 +512564,70.922,82.0737 +512565,68.901,86.9392 +512566,69.189,85.2916 +512567,69.438,83.659 +512568,69.653,82.0413 +512569,67.504,86.9243 +512570,67.835,85.2708 +512571,68.127,83.6329 +512572,68.384,82.0101 +512573,66.107,86.9082 +512574,66.481,85.2496 +512575,66.816,83.6071 +512576,67.114,81.9803 +512577,64.711,86.8907 +512578,65.128,85.228 +512579,65.504,83.5818 +512580,65.844,81.9518 +512581,63.314,86.8719 +512582,63.774,85.2059 +512583,64.193,83.5569 +512584,64.574,81.9246 +512585,61.918,86.8519 +512586,62.421,85.1834 +512587,62.881,83.5325 +512588,63.304,81.8987 +512589,60.522,86.8305 +512590,61.067,85.1604 +512591,61.57,83.5085 +512592,62.033,81.8741 +512593,59.127,86.8079 +512594,59.714,85.137 +512595,60.258,83.4849 +512596,60.762,81.8508 +512597,57.732,86.7839 +512598,58.361,85.1131 +512599,58.946,83.4618 +512600,59.491,81.8288 +512601,56.337,86.7586 +512602,57.009,85.0889 +512603,57.634,83.439 +512604,58.22,81.8081 +512605,54.943,86.7321 +512606,55.656,85.0641 +512607,56.322,83.4167 +512608,56.948,81.7887 +512609,53.549,86.7042 +512610,54.304,85.039 +512611,55.01,83.3949 +512612,55.675,81.7706 +512613,52.156,86.675 +512614,52.951,85.0134 +512615,53.698,83.3735 +512616,54.403,81.7538 +512617,50.764,86.6446 +512618,51.599,84.9874 +512619,52.386,83.3525 +512620,53.129,81.7383 +512621,49.372,86.6128 +512622,50.248,84.9609 +512623,51.073,83.3319 +512624,51.856,81.724 +512625,47.98,86.5798 +512626,48.896,84.9341 +512627,49.761,83.3117 +512628,50.581,81.711 +512629,46.59,86.5454 +512630,47.545,84.9067 +512631,48.448,83.292 +512632,49.306,81.6993 +512633,45.2,86.5098 +512634,46.194,84.879 +512635,47.135,83.2727 +512636,48.031,81.6889 +512637,43.811,86.473 +512638,44.843,84.8509 +512639,45.822,83.2538 +512640,46.755,81.6797 +512641,42.422,86.4348 +512642,43.492,84.8223 +512643,44.509,83.2353 +512644,45.478,81.6717 +512645,41.034,86.3954 +512646,42.142,84.7933 +512647,43.195,83.2172 +512648,44.2,81.665 +512649,39.647,86.3548 +512650,40.792,84.7639 +512651,41.881,83.1995 +512652,42.922,81.6595 +512653,38.261,86.3129 +512654,39.443,84.7341 +512655,40.567,83.1823 +512656,41.643,81.6552 +512657,36.876,86.2698 +512658,38.093,84.7038 +512659,39.253,83.1654 +512660,40.364,81.6521 +512661,35.492,86.2255 +512662,36.744,84.6732 +512663,37.939,83.1489 +512664,39.083,81.6502 +512665,34.108,86.18 +512666,35.396,84.6422 +512667,36.624,83.1328 +512668,37.802,81.6494 +512669,32.726,86.1332 +512670,34.047,84.6107 +512671,35.309,83.1171 +512672,36.52,81.6498 +512673,31.345,86.0853 +512674,32.699,84.5789 +512675,33.994,83.1018 +512676,35.237,81.6514 +512677,29.964,86.0363 +512678,31.352,84.5467 +512679,32.678,83.0869 +512680,33.953,81.6541 +512681,28.585,85.986 +512682,30.004,84.5141 +512683,31.362,83.0724 +512684,32.668,81.6579 +512685,27.207,85.9346 +512686,28.657,84.4811 +512687,30.046,83.0582 +512688,31.382,81.6628 +512689,25.829,85.8821 +512690,27.311,84.4478 +512691,28.73,83.0444 +512692,30.095,81.6688 +512693,24.453,85.8285 +512694,25.965,84.4141 +512695,27.413,83.0309 +512696,28.808,81.6759 +512697,23.078,85.7738 +512698,24.619,84.38 +512699,26.096,83.0178 +512700,27.519,81.684 +512701,21.705,85.718 +512702,23.274,84.3456 +512703,24.779,83.005 +512704,26.229,81.6931 +512705,20.332,85.6611 +512706,21.929,84.3108 +512707,23.461,82.9926 +512708,24.938,81.7033 +512709,18.961,85.6032 +512710,20.584,84.2757 +512711,22.143,82.9805 +512712,23.646,81.7144 +512713,17.591,85.5443 +512714,19.24,84.2402 +512715,20.825,82.9688 +512716,22.353,81.7266 +512717,16.222,85.4844 +512718,17.897,84.2045 +512719,19.506,82.9573 +512720,21.059,81.7397 +512721,14.854,85.4234 +512722,16.554,84.1683 +512723,18.187,82.9462 +512724,19.764,81.7537 +512725,13.488,85.3615 +512726,15.211,84.1319 +512727,16.867,82.9354 +512728,18.467,81.7686 +512729,12.123,85.2987 +512730,13.869,84.0952 +512731,15.547,82.9249 +512732,17.169,81.7845 +512733,10.76,85.2349 +512734,12.527,84.0581 +512735,14.227,82.9147 +512736,15.871,81.8012 +512737,9.3973,85.1702 +512738,11.186,84.0208 +512739,12.907,82.9048 +512740,14.57,81.8187 +512741,8.0364,85.1047 +512742,9.8447,83.9832 +512743,11.586,82.8952 +512744,13.269,81.8371 +512745,6.6769,85.0383 +512746,8.5043,83.9453 +512747,10.264,82.8858 +512748,11.967,81.8563 +512749,5.3188,84.971 +512750,7.1644,83.9071 +512751,8.9424,82.8767 +512752,10.663,81.8763 +512753,3.9622,84.9029 +512754,5.8249,83.8686 +512755,7.6202,82.8678 +512756,9.3576,81.8971 +512757,2.607,84.8341 +512758,4.486,83.8299 +512759,6.2976,82.8593 +512760,8.0513,81.9185 +512761,1.2532,84.7645 +512762,3.1476,83.791 +512763,4.9746,82.8509 +512764,6.7436,81.9407 +512765,359.9,84.6941 +512766,1.8097,83.7518 +512767,3.6511,82.8428 +512768,5.4345,81.9636 +512769,358.55,84.623 +512770,0.47223,83.7124 +512771,2.3272,82.8349 +512772,4.1242,81.9871 +512773,357.2,84.5512 +512774,359.14,83.6727 +512775,1.0029,82.8272 +512776,2.8125,82.0113 +512777,355.85,84.4788 +512778,357.8,83.6329 +512779,359.68,82.8198 +512780,1.4995,82.0361 +512781,354.51,84.4058 +512782,356.46,83.5928 +512783,358.35,82.8125 +512784,0.18509,82.0615 +512785,353.16,84.3321 +512786,355.13,83.5525 +512787,357.03,82.8054 +512788,358.87,82.0874 +512789,351.82,84.2578 +512790,353.79,83.5121 +512791,355.7,82.7985 +512792,357.55,82.1139 +512793,350.48,84.183 +512794,352.46,83.4714 +512795,354.37,82.7918 +512796,356.23,82.1408 +512797,349.14,84.1076 +512798,351.12,83.4306 +512799,353.05,82.7853 +512800,354.91,82.1683 +512801,347.8,84.0318 +512802,349.79,83.3897 +512803,351.72,82.7789 +512804,353.59,82.1962 +512805,346.46,83.9555 +512806,348.46,83.3485 +512807,350.39,82.7726 +512808,352.27,82.2245 +512809,345.12,83.8787 +512810,347.13,83.3073 +512811,349.06,82.7665 +512812,350.95,82.2533 +512813,343.79,83.8016 +512814,345.79,83.2659 +512815,347.74,82.7606 +512816,349.62,82.2824 +512817,342.46,83.724 +512818,344.46,83.2244 +512819,346.41,82.7547 +512820,348.29,82.3118 +512821,341.13,83.6461 +512822,343.13,83.1827 +512823,345.08,82.7489 +512824,346.96,82.3416 +512825,339.8,83.5679 +512826,341.8,83.141 +512827,343.75,82.7433 +512828,345.63,82.3717 +512829,338.47,83.4893 +512830,340.47,83.0992 +512831,342.42,82.7377 +512832,344.3,82.402 +512833,337.14,83.4105 +512834,339.14,83.0573 +512835,341.08,82.7323 +512836,342.97,82.4325 +512837,335.82,83.3315 +512838,337.82,83.0153 +512839,339.75,82.7269 +512840,341.64,82.4633 +512841,334.5,83.2522 +512842,336.49,82.9732 +512843,338.42,82.7215 +512844,340.3,82.4942 +512845,333.17,83.1728 +512846,335.16,82.9311 +512847,337.09,82.7162 +512848,338.96,82.5253 +512849,331.85,83.0932 +512850,333.83,82.8889 +512851,335.76,82.711 +512852,337.63,82.5565 +512853,330.53,83.0136 +512854,332.51,82.8468 +512855,334.42,82.7058 +512856,336.29,82.5878 +512857,329.22,82.9338 +512858,331.18,82.8045 +512859,333.09,82.7006 +512860,334.94,82.6191 +512861,327.9,82.854 +512862,329.86,82.7623 +512863,331.75,82.6954 +512864,333.6,82.6505 +512865,326.59,82.7741 +512866,328.53,82.7201 +512867,330.42,82.6902 +512868,332.26,82.6819 +512869,325.28,82.6943 +512870,327.21,82.6778 +512871,329.08,82.6851 +512872,330.91,82.7133 +512873,323.96,82.6145 +512874,325.88,82.6356 +512875,327.75,82.6799 +512876,329.56,82.7446 +512877,322.65,82.5347 +512878,324.56,82.5934 +512879,326.41,82.6747 +512880,328.22,82.7758 +512881,321.35,82.4551 +512882,323.24,82.5513 +512883,325.08,82.6694 +512884,326.87,82.807 +512885,320.04,82.3756 +512886,321.92,82.5092 +512887,323.74,82.6641 +512888,325.52,82.838 +512889,318.73,82.2962 +512890,320.59,82.4671 +512891,322.4,82.6588 +512892,324.16,82.8688 +512893,317.43,82.217 +512894,319.27,82.4251 +512895,321.06,82.6534 +512896,322.81,82.8995 +512897,316.13,82.1381 +512898,317.95,82.3832 +512899,319.73,82.6479 +512900,321.45,82.9299 +512901,314.83,82.0594 +512902,316.63,82.3413 +512903,318.39,82.6424 +512904,320.1,82.9601 +512905,313.53,81.9809 +512906,315.31,82.2996 +512907,317.05,82.6367 +512908,318.74,82.99 +512909,312.23,81.9028 +512910,313.99,82.2579 +512911,315.71,82.631 +512912,317.38,83.0196 +512913,310.93,81.825 +512914,312.67,82.2164 +512915,314.37,82.6251 +512916,316.02,83.0489 +512917,309.64,81.7476 +512918,311.36,82.175 +512919,313.03,82.6191 +512920,314.66,83.0778 +512921,308.34,81.6706 +512922,310.04,82.1337 +512923,311.69,82.613 +512924,313.3,83.1063 +512925,307.05,81.594 +512926,308.72,82.0926 +512927,310.35,82.6068 +512928,311.93,83.1345 +512929,305.76,81.5178 +512930,307.4,82.0516 +512931,309.01,82.6004 +512932,310.57,83.1622 +512933,304.47,81.4422 +512934,306.09,82.0108 +512935,307.66,82.5939 +512936,309.2,83.1894 +512937,303.18,81.367 +512938,304.77,81.9701 +512939,306.32,82.5872 +512940,307.83,83.2161 +512941,301.89,81.2924 +512942,303.46,81.9296 +512943,304.98,82.5803 +512944,306.46,83.2424 +512945,300.61,81.2183 +512946,302.14,81.8893 +512947,303.64,82.5733 +512948,305.09,83.2681 +512949,299.32,81.1448 +512950,300.83,81.8492 +512951,302.29,82.5661 +512952,303.72,83.2932 +512953,298.04,81.072 +512954,299.51,81.8093 +512955,300.95,82.5586 +512956,302.35,83.3178 +512957,296.75,80.9998 +512958,298.2,81.7697 +512959,299.6,82.551 +512960,300.97,83.3417 +512961,295.47,80.9282 +512962,296.89,81.7302 +512963,298.26,82.5431 +512964,299.6,83.365 +512965,294.19,80.8574 +512966,295.57,81.691 +512967,296.92,82.5351 +512968,298.22,83.3877 +512969,292.91,80.7872 +512970,294.26,81.652 +512971,295.57,82.5268 +512972,296.85,83.4096 +512973,291.63,80.7179 +512974,292.95,81.6132 +512975,294.22,82.5182 +512976,295.47,83.4309 +512977,290.36,80.6492 +512978,291.64,81.5747 +512979,292.88,82.5094 +512980,294.09,83.4514 +512981,289.08,80.5814 +512982,290.32,81.5365 +512983,291.53,82.5004 +512984,292.71,83.4712 +512985,287.8,80.5144 +512986,289.01,81.4985 +512987,290.19,82.4911 +512988,291.33,83.4902 +512989,286.53,80.4482 +512990,287.7,81.4608 +512991,288.84,82.4815 +512992,289.95,83.5085 +512993,285.26,80.3829 +512994,286.39,81.4234 +512995,287.49,82.4717 +512996,288.56,83.5259 +512997,283.98,80.3185 +512998,285.08,81.3863 +512999,286.15,82.4616 +513000,287.18,83.5424 +513001,282.71,80.255 +513002,283.77,81.3495 +513003,284.8,82.4512 +513004,285.8,83.5581 +513005,281.44,80.1924 +513006,282.46,81.313 +513007,283.45,82.4405 +513008,284.41,83.573 +513009,280.17,80.1307 +513010,281.15,81.2768 +513011,282.1,82.4295 +513012,283.02,83.5869 +513013,278.9,80.07 +513014,279.84,81.2409 +513015,280.76,82.4182 +513016,281.64,83.5999 +513017,277.63,80.0103 +513018,278.53,81.2054 +513019,279.41,82.4065 +513020,280.25,83.612 +513021,276.36,79.952 +513022,277.23,81.1702 +513023,278.06,82.3946 +513024,278.86,83.6232 +513025,275.1,79.894 +513026,275.92,81.1353 +513027,276.71,82.3823 +513028,277.47,83.6333 +513029,273.83,79.837 +513030,274.61,81.1007 +513031,275.36,82.3697 +513032,276.08,83.6425 +513033,272.56,79.782 +513034,273.3,81.0665 +513035,274.01,82.3568 +513036,274.69,83.6507 +513037,271.3,79.727 +513038,272,81.0327 +513039,272.66,82.3435 +513040,273.3,83.6579 +513041,270.03,79.674 +513042,270.69,80.9992 +513043,271.31,82.3298 +513044,271.91,83.664 +513045,268.77,79.622 +513046,269.38,80.9661 +513047,269.96,82.3158 +513048,270.52,83.6691 +513049,267.5,79.57 +513050,268.07,80.9334 +513051,268.61,82.3015 +513052,269.12,83.6731 +513053,266.24,79.52 +513054,266.77,80.901 +513055,267.26,82.2868 +513056,267.73,83.6761 +513057,264.98,79.471 +513058,265.46,80.869 +513059,265.91,82.2717 +513060,266.34,83.6779 +513061,263.71,79.424 +513062,264.15,80.8374 +513063,264.56,82.2563 +513064,264.94,83.6787 +513065,262.45,79.377 +513066,262.85,80.8062 +513067,263.21,82.2404 +513068,263.55,83.6783 +513069,261.19,79.332 +513070,261.54,80.7754 +513071,261.86,82.2242 +513072,262.16,83.6769 +513073,259.93,79.287 +513074,260.24,80.7449 +513075,260.51,82.2077 +513076,260.76,83.6742 +513077,258.67,79.244 +513078,258.93,80.7149 +513079,259.16,82.1907 +513080,259.37,83.6705 +513081,257.41,79.203 +513082,257.63,80.6853 +513083,257.81,82.1733 +513084,257.97,83.6655 +513085,256.15,79.162 +513086,256.32,80.6561 +513087,256.46,82.1556 +513088,256.57,83.6594 +513089,254.88,79.123 +513090,255.01,80.6272 +513091,255.11,82.1374 +513092,255.18,83.6522 +513093,253.62,79.085 +513094,253.71,80.5988 +513095,253.76,82.1189 +513096,253.78,83.6437 +513097,252.36,79.048 +513098,252.4,80.5708 +513099,252.41,82.0999 +513100,252.39,83.6341 +513101,251.1,79.012 +513102,251.1,80.5433 +513103,251.06,82.0806 +513104,250.99,83.6232 +513105,249.84,78.978 +513106,249.79,80.5161 +513107,249.71,82.0608 +513108,249.6,83.6111 +513109,248.58,78.945 +513110,248.49,80.4893 +513111,248.36,82.0407 +513112,248.2,83.5979 +513113,247.32,78.913 +513114,247.18,80.463 +513115,247.01,82.0201 +513116,246.8,83.5834 +513117,246.06,78.882 +513118,245.88,80.4371 +513119,245.66,81.9991 +513120,245.41,83.5677 +513121,244.8,78.853 +513122,244.57,80.4116 +513123,244.31,81.9778 +513124,244.01,83.5507 +513125,243.54,78.825 +513126,243.27,80.3866 +513127,242.96,81.956 +513128,242.62,83.5326 +513129,242.28,78.798 +513130,241.96,80.3619 +513131,241.61,81.9338 +513132,241.22,83.5132 +513133,241.02,78.773 +513134,240.66,80.3377 +513135,240.26,81.9111 +513136,239.83,83.4926 +513137,239.75,78.749 +513138,239.35,80.3139 +513139,238.91,81.8881 +513140,238.43,83.4707 +513141,238.49,78.726 +513142,238.04,80.2906 +513143,237.56,81.8647 +513144,237.04,83.4476 +513145,237.23,78.704 +513146,236.74,80.2676 +513147,236.21,81.8408 +513148,235.64,83.4233 +513149,235.97,78.684 +513150,235.43,80.2451 +513151,234.86,81.8165 +513152,234.25,83.3977 +513153,234.71,78.665 +513154,234.13,80.223 +513155,233.51,81.7918 +513156,232.85,83.3709 +513157,233.44,78.647 +513158,232.82,80.2013 +513159,232.16,81.7668 +513160,231.46,83.3429 +513161,232.18,78.63 +513162,231.52,80.1801 +513163,230.81,81.7413 +513164,230.07,83.3136 +513165,230.91,78.615 +513166,230.21,80.1593 +513167,229.46,81.7153 +513168,228.68,83.2831 +513169,229.65,78.601 +513170,228.9,80.1388 +513171,228.12,81.689 +513172,227.28,83.2514 +513173,228.38,78.588 +513174,227.6,80.1188 +513175,226.77,81.6623 +513176,225.89,83.2184 +513177,227.12,78.576 +513178,226.29,80.0993 +513179,225.42,81.6352 +513180,224.5,83.1843 +513181,225.85,78.566 +513182,224.98,80.0801 +513183,224.07,81.6076 +513184,223.11,83.1489 +513185,224.59,78.557 +513186,223.68,80.0613 +513187,222.72,81.5797 +513188,221.72,83.1124 +513189,223.32,78.549 +513190,222.37,80.0429 +513191,221.38,81.5514 +513192,220.33,83.0746 +513193,222.05,78.542 +513194,221.06,80.025 +513195,220.03,81.5227 +513196,218.95,83.0356 +513197,220.78,78.536 +513198,219.75,80.0074 +513199,218.68,81.4936 +513200,217.56,82.9955 +513201,219.51,78.532 +513202,218.45,79.99 +513203,217.34,81.4641 +513204,216.17,82.9542 +513205,218.24,78.529 +513206,217.14,79.973 +513207,215.99,81.4342 +513208,214.79,82.9117 +513209,216.97,78.527 +513210,215.83,79.957 +513211,214.64,81.404 +513212,213.4,82.8681 +513213,215.7,78.526 +513214,214.52,79.941 +513215,213.3,81.3733 +513216,212.02,82.8234 +513217,214.42,78.526 +513218,213.21,79.926 +513219,211.95,81.3423 +513220,210.64,82.7775 +513221,213.15,78.527 +513222,211.9,79.91 +513223,210.61,81.3109 +513224,209.26,82.7304 +513225,211.87,78.53 +513226,210.59,79.895 +513227,209.26,81.2792 +513228,207.87,82.6823 +513229,210.6,78.533 +513230,209.29,79.881 +513231,207.92,81.2471 +513232,206.5,82.6331 +513233,209.32,78.538 +513234,207.98,79.867 +513235,206.58,81.2146 +513236,205.12,82.5828 +513237,208.04,78.543 +513238,206.66,79.853 +513239,205.23,81.1818 +513240,203.74,82.5315 +513241,206.77,78.55 +513242,205.35,79.84 +513243,203.89,81.1487 +513244,202.36,82.479 +513245,205.49,78.558 +513246,204.04,79.826 +513247,202.55,81.1152 +513248,200.99,82.4256 +513249,204.2,78.566 +513250,202.73,79.814 +513251,201.2,81.0814 +513252,199.61,82.3711 +513253,202.92,78.576 +513254,201.42,79.801 +513255,199.86,81.0472 +513256,198.24,82.3156 +513257,201.64,78.587 +513258,200.11,79.789 +513259,198.52,81.0128 +513260,196.87,82.2592 +513261,200.35,78.598 +513262,198.8,79.777 +513263,197.18,80.978 +513264,195.5,82.2017 +513265,199.07,78.611 +513266,197.48,79.766 +513267,195.84,80.9429 +513268,194.13,82.1434 +513269,197.78,78.624 +513270,196.17,79.755 +513271,194.5,80.9075 +513272,192.76,82.084 +513273,196.49,78.639 +513274,194.86,79.744 +513275,193.16,80.8718 +513276,191.39,82.0238 +513277,195.21,78.654 +513278,193.54,79.734 +513279,191.82,80.8358 +513280,190.03,81.9627 +513281,193.92,78.67 +513282,192.23,79.723 +513283,190.48,80.7995 +513284,188.66,81.9007 +513285,192.62,78.687 +513286,190.91,79.713 +513287,189.14,80.763 +513288,187.3,81.8378 +513289,191.33,78.704 +513290,189.6,79.704 +513291,187.81,80.7262 +513292,185.94,81.7741 +513293,190.04,78.723 +513294,188.28,79.694 +513295,186.47,80.6891 +513296,184.58,81.7096 +513297,188.74,78.742 +513298,186.97,79.685 +513299,185.13,80.6518 +513300,183.22,81.6443 +513301,187.44,78.762 +513302,185.65,79.676 +513303,183.8,80.6142 +513304,181.87,81.5783 +513305,186.15,78.783 +513306,184.33,79.668 +513307,182.46,80.5764 +513308,180.51,81.5114 +513309,184.85,78.804 +513310,183.02,79.659 +513311,181.12,80.5383 +513312,179.16,81.4439 +513313,183.55,78.826 +513314,181.7,79.651 +513315,179.79,80.5 +513316,177.8,81.3757 +513317,182.24,78.849 +513318,180.38,79.643 +513319,178.45,80.4615 +513320,176.45,81.3068 +513321,180.94,78.872 +513322,179.06,79.635 +513323,177.12,80.4228 +513324,175.1,81.2372 +513325,179.64,78.896 +513326,177.74,79.628 +513327,175.79,80.3839 +513328,173.76,81.1671 +513329,178.33,78.92 +513330,176.42,79.62 +513331,174.45,80.3449 +513332,172.41,81.0963 +513333,177.02,78.945 +513334,175.1,79.613 +513335,173.12,80.3056 +513336,171.06,81.0249 +513337,175.71,78.97 +513338,173.78,79.606 +513339,171.79,80.2662 +513340,169.72,80.953 +513341,174.4,78.996 +513342,172.46,79.599 +513343,170.46,80.2265 +513344,168.38,80.8806 +513345,173.09,79.023 +513346,171.14,79.593 +513347,169.13,80.1868 +513348,167.04,80.8077 +513349,171.78,79.05 +513350,169.82,79.586 +513351,167.8,80.1469 +513352,165.7,80.7343 +513353,170.46,79.077 +513354,168.5,79.58 +513355,166.47,80.1068 +513356,164.37,80.6605 +513357,169.14,79.104 +513358,167.18,79.574 +513359,165.14,80.0667 +513360,163.03,80.5862 +513361,167.83,79.132 +513362,165.85,79.568 +513363,163.81,80.0264 +513364,161.7,80.5116 +513365,166.51,79.161 +513366,164.53,79.562 +513367,162.48,79.986 +513368,160.36,80.4366 +513369,165.18,79.189 +513370,163.2,79.556 +513371,161.16,79.945 +513372,159.03,80.3613 +513373,163.86,79.218 +513374,161.88,79.55 +513375,159.83,79.905 +513376,157.71,80.2856 +513377,162.54,79.247 +513378,160.55,79.544 +513379,158.5,79.864 +513380,156.38,80.2097 +513381,161.21,79.276 +513382,159.23,79.539 +513383,157.18,79.823 +513384,155.05,80.1336 +513385,159.89,79.306 +513386,157.9,79.533 +513387,155.85,79.783 +513388,153.73,80.0572 +513389,158.56,79.335 +513390,156.58,79.528 +513391,154.53,79.742 +513392,152.41,79.981 +513393,157.23,79.365 +513394,155.25,79.522 +513395,153.2,79.701 +513396,151.09,79.904 +513397,155.9,79.395 +513398,153.92,79.517 +513399,151.88,79.66 +513400,149.77,79.827 +513401,154.56,79.425 +513402,152.59,79.511 +513403,150.56,79.619 +513404,148.45,79.75 +513405,153.23,79.455 +513406,151.26,79.506 +513407,149.24,79.578 +513408,147.14,79.673 +513409,151.89,79.485 +513410,149.93,79.501 +513411,147.91,79.537 +513412,145.82,79.596 +513413,150.55,79.515 +513414,148.61,79.495 +513415,146.59,79.496 +513416,144.51,79.519 +513417,149.21,79.545 +513418,147.28,79.49 +513419,145.27,79.455 +513420,143.2,79.442 +513421,147.87,79.575 +513422,145.94,79.485 +513423,143.95,79.414 +513424,141.89,79.365 +513425,146.53,79.605 +513426,144.61,79.479 +513427,142.63,79.373 +513428,140.58,79.288 +513429,145.19,79.634 +513430,143.28,79.474 +513431,141.31,79.332 +513432,139.28,79.211 +513433,143.84,79.664 +513434,141.95,79.469 +513435,139.99,79.291 +513436,137.97,79.134 +513437,142.5,79.693 +513438,140.62,79.463 +513439,138.68,79.251 +513440,136.67,79.058 +513441,141.15,79.722 +513442,139.28,79.458 +513443,137.36,79.21 +513444,135.37,78.981 +513445,139.8,79.751 +513446,137.95,79.452 +513447,136.04,79.169 +513448,134.07,78.905 +513449,138.45,79.78 +513450,136.62,79.446 +513451,134.73,79.129 +513452,132.77,78.829 +513453,137.1,79.808 +513454,135.28,79.441 +513455,133.41,79.088 +513456,131.47,78.754 +513457,135.74,79.837 +513458,133.95,79.435 +513459,132.09,79.048 +513460,130.18,78.678 +513461,134.39,79.864 +513462,132.61,79.429 +513463,130.78,79.008 +513464,128.88,78.603 +513465,133.03,79.892 +513466,131.28,79.423 +513467,129.47,78.968 +513468,127.59,78.529 +513469,131.68,79.919 +513470,129.94,79.416 +513471,128.15,78.928 +513472,126.3,78.455 +513473,130.32,79.945 +513474,128.6,79.41 +513475,126.84,78.888 +513476,125.01,78.381 +513477,128.96,79.971 +513478,127.27,79.404 +513479,125.52,78.848 +513480,123.72,78.307 +513481,127.59,79.997 +513482,125.93,79.397 +513483,124.21,78.809 +513484,122.44,78.235 +513485,126.23,80.0223 +513486,124.59,79.39 +513487,122.9,78.769 +513488,121.15,78.162 +513489,124.87,80.047 +513490,123.25,79.383 +513491,121.59,78.73 +513492,119.87,78.09 +513493,123.5,80.0711 +513494,121.92,79.376 +513495,120.28,78.691 +513496,118.59,78.019 +513497,122.14,80.0947 +513498,120.58,79.369 +513499,118.97,78.653 +513500,117.3,77.948 +513501,120.77,80.1177 +513502,119.24,79.361 +513503,117.66,78.614 +513504,116.02,77.878 +513505,119.4,80.1401 +513506,117.9,79.354 +513507,116.35,78.576 +513508,114.75,77.809 +513509,118.03,80.1619 +513510,116.56,79.346 +513511,115.04,78.538 +513512,113.47,77.74 +513513,116.66,80.183 +513514,115.22,79.337 +513515,113.73,78.5 +513516,112.19,77.672 +513517,115.28,80.2034 +513518,113.88,79.329 +513519,112.42,78.462 +513520,110.92,77.604 +513521,113.91,80.2232 +513522,112.53,79.32 +513523,111.11,78.425 +513524,109.64,77.538 +513525,112.53,80.2422 +513526,111.19,79.312 +513527,109.81,78.387 +513528,108.37,77.472 +513529,111.16,80.2604 +513530,109.85,79.303 +513531,108.5,78.351 +513532,107.1,77.406 +513533,109.78,80.2779 +513534,108.51,79.293 +513535,107.19,78.314 +513536,105.83,77.342 +513537,108.4,80.2947 +513538,107.17,79.284 +513539,105.88,78.278 +513540,104.56,77.278 +513541,107.03,80.3106 +513542,105.82,79.274 +513543,104.58,78.241 +513544,103.29,77.216 +513545,105.65,80.3257 +513546,104.48,79.264 +513547,103.27,78.206 +513548,102.02,77.154 +513549,104.26,80.3399 +513550,103.14,79.253 +513551,101.97,78.17 +513552,100.76,77.093 +513553,102.88,80.3533 +513554,101.79,79.243 +513555,100.66,78.135 +513556,99.49,77.033 +513557,101.5,80.3658 +513558,100.45,79.232 +513559,99.358,78.1 +513560,98.226,76.974 +513561,100.12,80.3774 +513562,99.104,79.22 +513563,98.053,78.066 +513564,96.962,76.916 +513565,98.732,80.3881 +513566,97.76,79.209 +513567,96.749,78.031 +513568,95.699,76.858 +513569,97.346,80.3978 +513570,96.415,79.197 +513571,95.446,77.998 +513572,94.437,76.802 +513573,95.96,80.4066 +513574,95.07,79.185 +513575,94.142,77.964 +513576,93.176,76.747 +513577,94.574,80.4145 +513578,93.725,79.172 +513579,92.839,77.931 +513580,91.915,76.693 +513581,93.186,80.4213 +513582,92.379,79.159 +513583,91.536,77.898 +513584,90.655,76.639 +513585,91.798,80.4272 +513586,91.033,79.146 +513587,90.233,77.865 +513588,89.396,76.587 +513589,90.409,80.432 +513590,89.687,79.132 +513591,88.93,77.833 +513592,88.137,76.536 +513593,89.02,80.4358 +513594,88.341,79.118 +513595,87.628,77.801 +513596,86.879,76.486 +513597,87.629,80.4386 +513598,86.995,79.104 +513599,86.326,77.77 +513600,85.622,76.437 +513601,86.239,80.4404 +513602,85.648,79.09 +513603,85.024,77.739 +513604,84.365,76.39 +513605,84.848,80.441 +513606,84.302,79.075 +513607,83.722,77.708 +513608,83.109,76.343 +513609,83.456,80.4406 +513610,82.955,79.059 +513611,82.421,77.678 +513612,81.853,76.298 +513613,82.064,80.4391 +513614,81.608,79.044 +513615,81.12,77.648 +513616,80.597,76.253 +513617,80.671,80.4365 +513618,80.261,79.028 +513619,79.819,77.618 +513620,79.342,76.21 +513621,79.278,80.4328 +513622,78.914,79.011 +513623,78.518,77.589 +513624,78.088,76.168 +513625,77.885,80.428 +513626,77.567,78.995 +513627,77.217,77.56 +513628,76.834,76.127 +513629,76.491,80.4221 +513630,76.22,78.977 +513631,75.916,77.532 +513632,75.58,76.087 +513633,75.097,80.415 +513634,74.872,78.96 +513635,74.615,77.504 +513636,74.326,76.049 +513637,73.703,80.4068 +513638,73.525,78.942 +513639,73.315,77.476 +513640,73.072,76.012 +513641,72.309,80.3974 +513642,72.178,78.924 +513643,72.014,77.449 +513644,71.819,75.976 +513645,70.914,80.3868 +513646,70.83,78.905 +513647,70.714,77.422 +513648,70.566,75.941 +513649,69.519,80.3751 +513650,69.483,78.886 +513651,69.414,77.396 +513652,69.313,75.907 +513653,68.124,80.3623 +513654,68.135,78.866 +513655,68.113,77.37 +513656,68.06,75.875 +513657,66.729,80.3482 +513658,66.787,78.847 +513659,66.813,77.345 +513660,66.807,75.844 +513661,65.334,80.333 +513662,65.44,78.826 +513663,65.513,77.319 +513664,65.554,75.814 +513665,63.939,80.3166 +513666,64.092,78.806 +513667,64.213,77.295 +513668,64.301,75.785 +513669,62.544,80.299 +513670,62.745,78.785 +513671,62.913,77.27 +513672,63.048,75.758 +513673,61.149,80.2802 +513674,61.398,78.763 +513675,61.613,77.247 +513676,61.795,75.732 +513677,59.754,80.2603 +513678,60.05,78.741 +513679,60.312,77.223 +513680,60.542,75.707 +513681,58.359,80.2391 +513682,58.703,78.719 +513683,59.012,77.2 +513684,59.288,75.683 +513685,56.965,80.2167 +513686,57.356,78.696 +513687,57.712,77.177 +513688,58.035,75.661 +513689,55.57,80.1932 +513690,56.009,78.673 +513691,56.412,77.155 +513692,56.781,75.639 +513693,54.176,80.1684 +513694,54.662,78.65 +513695,55.111,77.133 +513696,55.527,75.619 +513697,52.782,80.1425 +513698,53.315,78.626 +513699,53.811,77.112 +513700,54.272,75.601 +513701,51.389,80.1154 +513702,51.968,78.602 +513703,52.51,77.091 +513704,53.017,75.583 +513705,49.995,80.0871 +513706,50.622,78.577 +513707,51.21,77.07 +513708,51.762,75.567 +513709,48.603,80.0576 +513710,49.275,78.552 +513711,49.909,77.05 +513712,50.507,75.552 +513713,47.21,80.0269 +513714,47.929,78.527 +513715,48.608,77.03 +513716,49.251,75.538 +513717,45.818,79.995 +513718,46.583,78.501 +513719,47.307,77.011 +513720,47.994,75.526 +513721,44.427,79.962 +513722,45.237,78.475 +513723,46.006,76.992 +513724,46.737,75.514 +513725,43.036,79.928 +513726,43.891,78.448 +513727,44.704,76.974 +513728,45.48,75.504 +513729,41.646,79.892 +513730,42.546,78.421 +513731,43.403,76.955 +513732,44.221,75.495 +513733,40.256,79.856 +513734,41.2,78.394 +513735,42.101,76.938 +513736,42.963,75.487 +513737,38.867,79.818 +513738,39.855,78.366 +513739,40.799,76.92 +513740,41.703,75.481 +513741,37.478,79.78 +513742,38.511,78.338 +513743,39.497,76.903 +513744,40.443,75.475 +513745,36.091,79.74 +513746,37.166,78.31 +513747,38.195,76.887 +513748,39.182,75.471 +513749,34.704,79.699 +513750,35.822,78.281 +513751,36.892,76.871 +513752,37.921,75.468 +513753,33.318,79.656 +513754,34.478,78.252 +513755,35.59,76.855 +513756,36.658,75.466 +513757,31.932,79.613 +513758,33.134,78.222 +513759,34.287,76.839 +513760,35.395,75.465 +513761,30.548,79.569 +513762,31.791,78.192 +513763,32.983,76.824 +513764,34.131,75.466 +513765,29.164,79.523 +513766,30.448,78.162 +513767,31.68,76.81 +513768,32.866,75.467 +513769,27.781,79.477 +513770,29.105,78.131 +513771,30.376,76.795 +513772,31.6,75.469 +513773,26.399,79.429 +513774,27.763,78.1 +513775,29.072,76.781 +513776,30.334,75.473 +513777,25.019,79.381 +513778,26.421,78.069 +513779,27.767,76.768 +513780,29.066,75.478 +513781,23.639,79.331 +513782,25.079,78.037 +513783,26.463,76.755 +513784,27.797,75.483 +513785,22.26,79.28 +513786,23.738,78.005 +513787,25.158,76.742 +513788,26.528,75.49 +513789,20.882,79.229 +513790,22.397,77.973 +513791,23.852,76.729 +513792,25.257,75.497 +513793,19.506,79.176 +513794,21.056,77.94 +513795,22.547,76.717 +513796,23.985,75.506 +513797,18.13,79.122 +513798,19.716,77.907 +513799,21.24,76.705 +513800,22.712,75.516 +513801,16.756,79.068 +513802,18.376,77.874 +513803,19.934,76.693 +513804,21.439,75.526 +513805,15.383,79.012 +513806,17.037,77.84 +513807,18.627,76.682 +513808,20.163,75.538 +513809,14.011,78.956 +513810,15.698,77.806 +513811,17.32,76.671 +513812,18.887,75.55 +513813,12.64,78.898 +513814,14.359,77.772 +513815,16.013,76.661 +513816,17.61,75.564 +513817,11.271,78.84 +513818,13.021,77.738 +513819,14.705,76.65 +513820,16.331,75.578 +513821,9.9026,78.781 +513822,11.683,77.703 +513823,13.396,76.64 +513824,15.051,75.593 +513825,8.5358,78.721 +513826,10.346,77.668 +513827,12.088,76.631 +513828,13.77,75.609 +513829,7.1703,78.66 +513830,9.0095,77.632 +513831,10.779,76.621 +513832,12.488,75.625 +513833,5.8062,78.599 +513834,7.6732,77.597 +513835,9.4691,76.612 +513836,11.204,75.643 +513837,4.4435,78.536 +513838,6.3374,77.561 +513839,8.1591,76.603 +513840,9.9191,75.661 +513841,3.0822,78.473 +513842,5.0021,77.525 +513843,6.8487,76.594 +513844,8.6328,75.68 +513845,1.7224,78.409 +513846,3.6672,77.489 +513847,5.5379,76.586 +513848,7.3451,75.7 +513849,0.36402,78.345 +513850,2.3329,77.452 +513851,4.2266,76.578 +513852,6.0561,75.72 +513853,359.01,78.28 +513854,0.99906,77.415 +513855,2.9149,76.57 +513856,4.7657,75.742 +513857,357.65,78.214 +513858,359.67,77.378 +513859,1.6028,76.562 +513860,3.4738,75.763 +513861,356.3,78.147 +513862,358.33,77.341 +513863,0.29013,76.554 +513864,2.1806,75.786 +513865,354.95,78.08 +513866,357,77.304 +513867,358.98,76.547 +513868,0.88595,75.809 +513869,353.59,78.012 +513870,355.67,77.266 +513871,357.66,76.54 +513872,359.59,75.832 +513873,352.25,77.943 +513874,354.34,77.228 +513875,356.35,76.533 +513876,358.29,75.856 +513877,350.9,77.874 +513878,353.01,77.19 +513879,355.03,76.526 +513880,356.99,75.881 +513881,349.55,77.805 +513882,351.68,77.152 +513883,353.72,76.52 +513884,355.69,75.906 +513885,348.21,77.735 +513886,350.35,77.114 +513887,352.4,76.514 +513888,354.39,75.932 +513889,346.86,77.664 +513890,349.02,77.075 +513891,351.09,76.507 +513892,353.09,75.958 +513893,345.52,77.593 +513894,347.69,77.037 +513895,349.77,76.501 +513896,351.78,75.985 +513897,344.18,77.522 +513898,346.36,76.998 +513899,348.45,76.495 +513900,350.48,76.012 +513901,342.85,77.45 +513902,345.03,76.959 +513903,347.14,76.49 +513904,349.17,76.039 +513905,341.51,77.377 +513906,343.71,76.92 +513907,345.82,76.484 +513908,347.86,76.066 +513909,340.18,77.305 +513910,342.38,76.881 +513911,344.5,76.478 +513912,346.55,76.094 +513913,338.84,77.232 +513914,341.06,76.842 +513915,343.18,76.473 +513916,345.23,76.123 +513917,337.51,77.159 +513918,339.73,76.803 +513919,341.86,76.468 +513920,343.92,76.151 +513921,336.18,77.085 +513922,338.41,76.763 +513923,340.54,76.462 +513924,342.6,76.18 +513925,334.85,77.011 +513926,337.08,76.724 +513927,339.22,76.457 +513928,341.29,76.209 +513929,333.53,76.937 +513930,335.76,76.684 +513931,337.9,76.452 +513932,339.97,76.238 +513933,332.2,76.863 +513934,334.44,76.645 +513935,336.58,76.447 +513936,338.65,76.267 +513937,330.88,76.789 +513938,333.11,76.605 +513939,335.26,76.442 +513940,337.33,76.297 +513941,329.56,76.715 +513942,331.79,76.566 +513943,333.93,76.437 +513944,336,76.326 +513945,328.24,76.64 +513946,330.47,76.526 +513947,332.61,76.432 +513948,334.68,76.356 +513949,326.92,76.565 +513950,329.15,76.486 +513951,331.29,76.427 +513952,333.35,76.386 +513953,325.61,76.491 +513954,327.83,76.447 +513955,329.96,76.422 +513956,332.02,76.415 +513957,324.29,76.416 +513958,326.51,76.407 +513959,328.64,76.417 +513960,330.69,76.445 +513961,322.98,76.341 +513962,325.19,76.367 +513963,327.31,76.413 +513964,329.36,76.475 +513965,321.67,76.267 +513966,323.87,76.328 +513967,325.99,76.408 +513968,328.03,76.504 +513969,320.36,76.192 +513970,322.55,76.288 +513971,324.66,76.403 +513972,326.69,76.534 +513973,319.06,76.118 +513974,321.24,76.248 +513975,323.33,76.398 +513976,325.36,76.563 +513977,317.75,76.043 +513978,319.92,76.209 +513979,322.01,76.393 +513980,324.02,76.592 +513981,316.45,75.969 +513982,318.61,76.169 +513983,320.68,76.388 +513984,322.68,76.621 +513985,315.14,75.895 +513986,317.29,76.13 +513987,319.35,76.383 +513988,321.34,76.65 +513989,313.84,75.821 +513990,315.97,76.091 +513991,318.02,76.377 +513992,320,76.679 +513993,312.54,75.747 +513994,314.66,76.052 +513995,316.69,76.372 +513996,318.65,76.707 +513997,311.25,75.674 +513998,313.35,76.012 +513999,315.36,76.367 +514000,317.31,76.735 +514001,309.95,75.601 +514002,312.03,75.973 +514003,314.03,76.361 +514004,315.96,76.763 +514005,308.66,75.528 +514006,310.72,75.934 +514007,312.7,76.356 +514008,314.61,76.79 +514009,307.37,75.456 +514010,309.41,75.896 +514011,311.37,76.35 +514012,313.26,76.817 +514013,306.07,75.384 +514014,308.1,75.857 +514015,310.04,76.345 +514016,311.91,76.844 +514017,304.79,75.312 +514018,306.79,75.818 +514019,308.71,76.339 +514020,310.56,76.87 +514021,303.5,75.241 +514022,305.47,75.78 +514023,307.38,76.333 +514024,309.21,76.896 +514025,302.21,75.17 +514026,304.16,75.742 +514027,306.04,76.326 +514028,307.85,76.921 +514029,300.93,75.1 +514030,302.85,75.704 +514031,304.71,76.32 +514032,306.49,76.946 +514033,299.64,75.03 +514034,301.55,75.666 +514035,303.37,76.314 +514036,305.14,76.971 +514037,298.36,74.961 +514038,300.24,75.628 +514039,302.04,76.307 +514040,303.78,76.995 +514041,297.08,74.892 +514042,298.93,75.591 +514043,300.71,76.3 +514044,302.41,77.018 +514045,295.8,74.824 +514046,297.62,75.553 +514047,299.37,76.293 +514048,301.05,77.04 +514049,294.52,74.757 +514050,296.31,75.516 +514051,298.03,76.286 +514052,299.69,77.063 +514053,293.25,74.69 +514054,295.01,75.479 +514055,296.7,76.278 +514056,298.32,77.084 +514057,291.97,74.624 +514058,293.7,75.443 +514059,295.36,76.271 +514060,296.96,77.105 +514061,290.7,74.558 +514062,292.4,75.406 +514063,294.02,76.263 +514064,295.59,77.125 +514065,289.43,74.494 +514066,291.09,75.37 +514067,292.69,76.255 +514068,294.22,77.145 +514069,288.16,74.43 +514070,289.79,75.334 +514071,291.35,76.246 +514072,292.85,77.163 +514073,286.89,74.366 +514074,288.48,75.299 +514075,290.01,76.238 +514076,291.48,77.181 +514077,285.62,74.304 +514078,287.18,75.263 +514079,288.67,76.229 +514080,290.11,77.199 +514081,284.35,74.242 +514082,285.87,75.228 +514083,287.33,76.22 +514084,288.74,77.215 +514085,283.09,74.181 +514086,284.57,75.193 +514087,285.99,76.21 +514088,287.36,77.231 +514089,281.82,74.121 +514090,283.27,75.158 +514091,284.65,76.201 +514092,285.99,77.246 +514093,280.56,74.062 +514094,281.96,75.124 +514095,283.31,76.191 +514096,284.61,77.26 +514097,279.3,74.004 +514098,280.66,75.09 +514099,281.97,76.181 +514100,283.23,77.273 +514101,278.03,73.946 +514102,279.36,75.056 +514103,280.63,76.17 +514104,281.85,77.285 +514105,276.77,73.89 +514106,278.06,75.023 +514107,279.29,76.159 +514108,280.47,77.296 +514109,275.51,73.834 +514110,276.76,74.99 +514111,277.95,76.148 +514112,279.09,77.307 +514113,274.25,73.78 +514114,275.46,74.957 +514115,276.61,76.137 +514116,277.71,77.317 +514117,273,73.726 +514118,274.16,74.925 +514119,275.27,76.125 +514120,276.33,77.325 +514121,271.74,73.673 +514122,272.86,74.893 +514123,273.93,76.113 +514124,274.95,77.333 +514125,270.48,73.622 +514126,271.56,74.861 +514127,272.58,76.101 +514128,273.56,77.34 +514129,269.23,73.571 +514130,270.26,74.829 +514131,271.24,76.088 +514132,272.18,77.345 +514133,267.97,73.522 +514134,268.96,74.798 +514135,269.9,76.075 +514136,270.79,77.35 +514137,266.72,73.473 +514138,267.66,74.768 +514139,268.55,76.062 +514140,269.41,77.354 +514141,265.47,73.426 +514142,266.36,74.737 +514143,267.21,76.048 +514144,268.02,77.357 +514145,264.22,73.379 +514146,265.06,74.707 +514147,265.87,76.034 +514148,266.63,77.358 +514149,262.96,73.334 +514150,263.77,74.678 +514151,264.52,76.02 +514152,265.24,77.359 +514153,261.71,73.29 +514154,262.47,74.648 +514155,263.18,76.005 +514156,263.85,77.358 +514157,260.46,73.247 +514158,261.17,74.619 +514159,261.84,75.99 +514160,262.46,77.357 +514161,259.21,73.205 +514162,259.87,74.591 +514163,260.49,75.974 +514164,261.07,77.354 +514165,257.96,73.165 +514166,258.57,74.563 +514167,259.15,75.959 +514168,259.68,77.351 +514169,256.71,73.125 +514170,257.28,74.535 +514171,257.8,75.942 +514172,258.29,77.346 +514173,255.47,73.087 +514174,255.98,74.508 +514175,256.46,75.926 +514176,256.9,77.34 +514177,254.22,73.05 +514178,254.68,74.481 +514179,255.11,75.909 +514180,255.51,77.333 +514181,252.97,73.014 +514182,253.39,74.454 +514183,253.77,75.892 +514184,254.11,77.325 +514185,251.72,72.979 +514186,252.09,74.428 +514187,252.42,75.874 +514188,252.72,77.315 +514189,250.48,72.945 +514190,250.79,74.402 +514191,251.08,75.856 +514192,251.33,77.305 +514193,249.23,72.913 +514194,249.5,74.377 +514195,249.73,75.837 +514196,249.93,77.293 +514197,247.98,72.882 +514198,248.2,74.352 +514199,248.39,75.818 +514200,248.54,77.281 +514201,246.73,72.852 +514202,246.91,74.327 +514203,247.04,75.799 +514204,247.15,77.267 +514205,245.49,72.823 +514206,245.61,74.303 +514207,245.7,75.78 +514208,245.75,77.252 +514209,244.24,72.795 +514210,244.31,74.279 +514211,244.35,75.76 +514212,244.36,77.235 +514213,243,72.769 +514214,243.02,74.256 +514215,243.01,75.739 +514216,242.96,77.218 +514217,241.75,72.744 +514218,241.72,74.233 +514219,241.66,75.718 +514220,241.57,77.199 +514221,240.5,72.72 +514222,240.42,74.21 +514223,240.32,75.697 +514224,240.17,77.18 +514225,239.26,72.697 +514226,239.13,74.188 +514227,238.97,75.676 +514228,238.78,77.159 +514229,238.01,72.676 +514230,237.83,74.166 +514231,237.62,75.654 +514232,237.38,77.137 +514233,236.76,72.656 +514234,236.54,74.145 +514235,236.28,75.631 +514236,235.99,77.114 +514237,235.52,72.637 +514238,235.24,74.124 +514239,234.93,75.608 +514240,234.6,77.089 +514241,234.27,72.619 +514242,233.94,74.103 +514243,233.59,75.585 +514244,233.2,77.064 +514245,233.02,72.602 +514246,232.65,74.083 +514247,232.24,75.562 +514248,231.81,77.037 +514249,231.77,72.587 +514250,231.35,74.063 +514251,230.9,75.538 +514252,230.41,77.009 +514253,230.52,72.573 +514254,230.06,74.044 +514255,229.55,75.513 +514256,229.02,76.98 +514257,229.28,72.56 +514258,228.76,74.025 +514259,228.21,75.489 +514260,227.63,76.95 +514261,228.03,72.548 +514262,227.46,74.007 +514263,226.87,75.464 +514264,226.23,76.918 +514265,226.78,72.538 +514266,226.17,73.989 +514267,225.52,75.438 +514268,224.84,76.886 +514269,225.53,72.528 +514270,224.87,73.971 +514271,224.18,75.412 +514272,223.45,76.852 +514273,224.28,72.52 +514274,223.57,73.953 +514275,222.83,75.386 +514276,222.06,76.817 +514277,223.03,72.513 +514278,222.27,73.936 +514279,221.49,75.359 +514280,220.67,76.781 +514281,221.77,72.508 +514282,220.98,73.92 +514283,220.15,75.332 +514284,219.28,76.744 +514285,220.52,72.503 +514286,219.68,73.904 +514287,218.8,75.305 +514288,217.89,76.706 +514289,219.27,72.499 +514290,218.38,73.888 +514291,217.46,75.277 +514292,216.5,76.666 +514293,218.02,72.497 +514294,217.08,73.873 +514295,216.12,75.249 +514296,215.11,76.626 +514297,216.76,72.496 +514298,215.79,73.857 +514299,214.77,75.221 +514300,213.72,76.584 +514301,215.51,72.496 +514302,214.49,73.843 +514303,213.43,75.192 +514304,212.33,76.542 +514305,214.25,72.497 +514306,213.19,73.829 +514307,212.09,75.163 +514308,210.94,76.498 +514309,212.99,72.499 +514310,211.89,73.815 +514311,210.75,75.133 +514312,209.56,76.453 +514313,211.74,72.502 +514314,210.59,73.801 +514315,209.4,75.103 +514316,208.17,76.408 +514317,210.48,72.506 +514318,209.29,73.788 +514319,208.06,75.073 +514320,206.79,76.361 +514321,209.22,72.511 +514322,207.99,73.775 +514323,206.72,75.042 +514324,205.41,76.313 +514325,207.96,72.517 +514326,206.69,73.762 +514327,205.38,75.011 +514328,204.02,76.264 +514329,206.7,72.525 +514330,205.39,73.75 +514331,204.04,74.98 +514332,202.64,76.214 +514333,205.43,72.533 +514334,204.09,73.738 +514335,202.7,74.949 +514336,201.26,76.163 +514337,204.17,72.542 +514338,202.79,73.727 +514339,201.36,74.917 +514340,199.88,76.112 +514341,202.91,72.552 +514342,201.49,73.715 +514343,200.02,74.884 +514344,198.5,76.059 +514345,201.64,72.564 +514346,200.19,73.705 +514347,198.68,74.852 +514348,197.12,76.005 +514349,200.37,72.576 +514350,198.88,73.694 +514351,197.35,74.819 +514352,195.75,75.95 +514353,199.11,72.589 +514354,197.58,73.684 +514355,196.01,74.786 +514356,194.37,75.895 +514357,197.84,72.602 +514358,196.28,73.674 +514359,194.67,74.753 +514360,193,75.839 +514361,196.57,72.617 +514362,194.98,73.664 +514363,193.33,74.719 +514364,191.63,75.781 +514365,195.3,72.633 +514366,193.67,73.655 +514367,192,74.685 +514368,190.25,75.723 +514369,194.02,72.649 +514370,192.37,73.646 +514371,190.66,74.651 +514372,188.88,75.664 +514373,192.75,72.666 +514374,191.06,73.637 +514375,189.32,74.616 +514376,187.52,75.604 +514377,191.47,72.684 +514378,189.76,73.628 +514379,187.99,74.581 +514380,186.15,75.544 +514381,190.2,72.703 +514382,188.45,73.62 +514383,186.65,74.546 +514384,184.78,75.483 +514385,188.92,72.722 +514386,187.15,73.612 +514387,185.32,74.511 +514388,183.42,75.42 +514389,187.64,72.742 +514390,185.84,73.604 +514391,183.98,74.475 +514392,182.05,75.358 +514393,186.36,72.763 +514394,184.54,73.596 +514395,182.65,74.44 +514396,180.69,75.294 +514397,185.08,72.785 +514398,183.23,73.589 +514399,181.32,74.404 +514400,179.33,75.23 +514401,183.8,72.807 +514402,181.92,73.582 +514403,179.98,74.367 +514404,177.97,75.165 +514405,182.51,72.83 +514406,180.61,73.575 +514407,178.65,74.331 +514408,176.61,75.1 +514409,181.22,72.853 +514410,179.31,73.568 +514411,177.32,74.294 +514412,175.26,75.033 +514413,179.94,72.877 +514414,178,73.561 +514415,175.99,74.258 +514416,173.9,74.967 +514417,178.65,72.902 +514418,176.69,73.555 +514419,174.66,74.221 +514420,172.55,74.899 +514421,177.36,72.927 +514422,175.38,73.549 +514423,173.33,74.184 +514424,171.2,74.832 +514425,176.06,72.952 +514426,174.07,73.543 +514427,172,74.146 +514428,169.85,74.763 +514429,174.77,72.978 +514430,172.76,73.537 +514431,170.67,74.109 +514432,168.5,74.694 +514433,173.48,73.004 +514434,171.45,73.531 +514435,169.34,74.071 +514436,167.15,74.625 +514437,172.18,73.031 +514438,170.13,73.526 +514439,168.01,74.033 +514440,165.81,74.555 +514441,170.88,73.058 +514442,168.82,73.52 +514443,166.69,73.995 +514444,164.46,74.485 +514445,169.58,73.086 +514446,167.51,73.515 +514447,165.36,73.957 +514448,163.12,74.414 +514449,168.28,73.114 +514450,166.2,73.51 +514451,164.03,73.919 +514452,161.78,74.343 +514453,166.98,73.142 +514454,164.88,73.505 +514455,162.71,73.881 +514456,160.44,74.272 +514457,165.67,73.17 +514458,163.57,73.5 +514459,161.38,73.843 +514460,159.11,74.201 +514461,164.36,73.199 +514462,162.25,73.495 +514463,160.06,73.804 +514464,157.77,74.129 +514465,163.06,73.228 +514466,160.94,73.49 +514467,158.74,73.766 +514468,156.44,74.056 +514469,161.75,73.257 +514470,159.62,73.485 +514471,157.41,73.727 +514472,155.11,73.984 +514473,160.44,73.287 +514474,158.3,73.481 +514475,156.09,73.688 +514476,153.78,73.911 +514477,159.12,73.316 +514478,156.99,73.476 +514479,154.77,73.65 +514480,152.45,73.838 +514481,157.81,73.346 +514482,155.67,73.471 +514483,153.45,73.611 +514484,151.12,73.765 +514485,156.49,73.375 +514486,154.35,73.467 +514487,152.12,73.572 +514488,149.8,73.692 +514489,155.18,73.405 +514490,153.03,73.462 +514491,150.8,73.533 +514492,148.48,73.619 +514493,153.86,73.435 +514494,151.71,73.458 +514495,149.48,73.494 +514496,147.16,73.546 +514497,152.54,73.465 +514498,150.39,73.453 +514499,148.17,73.455 +514500,145.84,73.472 +514501,151.21,73.494 +514502,149.07,73.449 +514503,146.85,73.417 +514504,144.52,73.399 +514505,149.89,73.524 +514506,147.75,73.444 +514507,145.53,73.378 +514508,143.21,73.326 +514509,148.56,73.554 +514510,146.43,73.44 +514511,144.21,73.339 +514512,141.89,73.252 +514513,147.24,73.583 +514514,145.11,73.435 +514515,142.89,73.3 +514516,140.58,73.179 +514517,145.91,73.613 +514518,143.79,73.431 +514519,141.58,73.261 +514520,139.27,73.106 +514521,144.58,73.642 +514522,142.46,73.426 +514523,140.26,73.223 +514524,137.96,73.033 +514525,143.24,73.671 +514526,141.14,73.422 +514527,138.95,73.184 +514528,136.66,72.96 +514529,141.91,73.7 +514530,139.82,73.417 +514531,137.63,73.145 +514532,135.35,72.887 +514533,140.57,73.728 +514534,138.49,73.412 +514535,136.32,73.107 +514536,134.05,72.815 +514537,139.24,73.757 +514538,137.17,73.407 +514539,135.01,73.068 +514540,132.75,72.743 +514541,137.9,73.785 +514542,135.84,73.402 +514543,133.69,73.03 +514544,131.45,72.671 +514545,136.56,73.812 +514546,134.51,73.397 +514547,132.38,72.992 +514548,130.15,72.599 +514549,135.22,73.84 +514550,133.19,73.392 +514551,131.07,72.954 +514552,128.85,72.527 +514553,133.87,73.867 +514554,131.86,73.387 +514555,129.76,72.916 +514556,127.56,72.456 +514557,132.53,73.893 +514558,130.53,73.381 +514559,128.45,72.878 +514560,126.27,72.386 +514561,131.18,73.92 +514562,129.2,73.375 +514563,127.14,72.84 +514564,124.98,72.315 +514565,129.84,73.945 +514566,127.88,73.37 +514567,125.83,72.802 +514568,123.69,72.245 +514569,128.49,73.971 +514570,126.55,73.364 +514571,124.52,72.765 +514572,122.4,72.176 +514573,127.14,73.995 +514574,125.22,73.358 +514575,123.21,72.728 +514576,121.11,72.107 +514577,125.78,74.02 +514578,123.89,73.352 +514579,121.9,72.691 +514580,119.83,72.039 +514581,124.43,74.043 +514582,122.55,73.345 +514583,120.6,72.654 +514584,118.55,71.971 +514585,123.07,74.067 +514586,121.22,73.339 +514587,119.29,72.617 +514588,117.27,71.903 +514589,121.72,74.089 +514590,119.89,73.332 +514591,117.98,72.58 +514592,115.99,71.836 +514593,120.36,74.111 +514594,118.56,73.325 +514595,116.68,72.544 +514596,114.71,71.77 +514597,119,74.132 +514598,117.23,73.318 +514599,115.37,72.508 +514600,113.43,71.705 +514601,117.64,74.153 +514602,115.89,73.31 +514603,114.07,72.472 +514604,112.16,71.64 +514605,116.28,74.173 +514606,114.56,73.303 +514607,112.77,72.436 +514608,110.88,71.576 +514609,114.91,74.192 +514610,113.23,73.295 +514611,111.46,72.401 +514612,109.61,71.512 +514613,113.55,74.211 +514614,111.89,73.287 +514615,110.16,72.365 +514616,108.34,71.449 +514617,112.18,74.229 +514618,110.56,73.278 +514619,108.86,72.33 +514620,107.07,71.387 +514621,110.82,74.246 +514622,109.22,73.27 +514623,107.55,72.296 +514624,105.8,71.326 +514625,109.45,74.262 +514626,107.89,73.261 +514627,106.25,72.261 +514628,104.54,71.265 +514629,108.08,74.277 +514630,106.55,73.252 +514631,104.95,72.227 +514632,103.27,71.206 +514633,106.71,74.292 +514634,105.21,73.242 +514635,103.65,72.193 +514636,102.01,71.147 +514637,105.33,74.306 +514638,103.88,73.233 +514639,102.35,72.16 +514640,100.75,71.089 +514641,103.96,74.318 +514642,102.54,73.223 +514643,101.05,72.126 +514644,99.485,71.032 +514645,102.59,74.331 +514646,101.2,73.212 +514647,99.75,72.093 +514648,98.225,70.975 +514649,101.21,74.342 +514650,99.864,73.202 +514651,98.45,72.061 +514652,96.966,70.92 +514653,99.835,74.352 +514654,98.525,73.191 +514655,97.152,72.028 +514656,95.708,70.866 +514657,98.457,74.361 +514658,97.187,73.18 +514659,95.853,71.996 +514660,94.451,70.812 +514661,97.078,74.369 +514662,95.848,73.168 +514663,94.555,71.964 +514664,93.195,70.76 +514665,95.699,74.377 +514666,94.508,73.156 +514667,93.257,71.933 +514668,91.941,70.708 +514669,94.318,74.383 +514670,93.169,73.144 +514671,91.96,71.902 +514672,90.687,70.658 +514673,92.937,74.389 +514674,91.829,73.132 +514675,90.663,71.871 +514676,89.435,70.608 +514677,91.554,74.393 +514678,90.489,73.119 +514679,89.366,71.84 +514680,88.183,70.56 +514681,90.171,74.396 +514682,89.148,73.106 +514683,88.07,71.81 +514684,86.932,70.512 +514685,88.787,74.399 +514686,87.807,73.092 +514687,86.774,71.781 +514688,85.682,70.466 +514689,87.402,74.4 +514690,86.466,73.078 +514691,85.478,71.751 +514692,84.433,70.421 +514693,86.016,74.4 +514694,85.125,73.064 +514695,84.182,71.722 +514696,83.185,70.376 +514697,84.629,74.399 +514698,83.783,73.049 +514699,82.887,71.694 +514700,81.937,70.333 +514701,83.242,74.398 +514702,82.442,73.035 +514703,81.592,71.665 +514704,80.69,70.291 +514705,81.854,74.395 +514706,81.1,73.019 +514707,80.297,71.637 +514708,79.444,70.251 +514709,80.466,74.39 +514710,79.757,73.003 +514711,79.003,71.61 +514712,78.198,70.211 +514713,79.076,74.385 +514714,78.415,72.987 +514715,77.708,71.583 +514716,76.954,70.172 +514717,77.687,74.379 +514718,77.072,72.971 +514719,76.414,71.556 +514720,75.709,70.135 +514721,76.296,74.371 +514722,75.73,72.954 +514723,75.12,71.529 +514724,74.465,70.099 +514725,74.905,74.363 +514726,74.387,72.937 +514727,73.827,71.503 +514728,73.222,70.064 +514729,73.514,74.353 +514730,73.044,72.919 +514731,72.533,71.478 +514732,71.979,70.03 +514733,72.122,74.342 +514734,71.701,72.901 +514735,71.24,71.452 +514736,70.736,69.997 +514737,70.73,74.33 +514738,70.357,72.883 +514739,69.946,71.428 +514740,69.494,69.966 +514741,69.337,74.317 +514742,69.014,72.864 +514743,68.653,71.403 +514744,68.252,69.935 +514745,67.944,74.303 +514746,67.671,72.845 +514747,67.36,71.379 +514748,67.011,69.906 +514749,66.551,74.287 +514750,66.327,72.826 +514751,66.067,71.355 +514752,65.769,69.878 +514753,65.157,74.271 +514754,64.984,72.806 +514755,64.774,71.332 +514756,64.528,69.852 +514757,63.763,74.253 +514758,63.64,72.785 +514759,63.481,71.309 +514760,63.287,69.826 +514761,62.369,74.234 +514762,62.296,72.765 +514763,62.189,71.287 +514764,62.046,69.802 +514765,60.975,74.214 +514766,60.952,72.744 +514767,60.896,71.265 +514768,60.805,69.779 +514769,59.581,74.192 +514770,59.609,72.722 +514771,59.603,71.243 +514772,59.564,69.757 +514773,58.186,74.17 +514774,58.265,72.7 +514775,58.311,71.222 +514776,58.323,69.737 +514777,56.792,74.146 +514778,56.921,72.678 +514779,57.018,71.201 +514780,57.083,69.717 +514781,55.397,74.121 +514782,55.577,72.655 +514783,55.726,71.181 +514784,55.842,69.699 +514785,54.003,74.095 +514786,54.234,72.632 +514787,54.433,71.161 +514788,54.601,69.682 +514789,52.609,74.068 +514790,52.89,72.608 +514791,53.14,71.141 +514792,53.359,69.666 +514793,51.214,74.04 +514794,51.546,72.585 +514795,51.848,71.122 +514796,52.118,69.652 +514797,49.82,74.01 +514798,50.203,72.56 +514799,50.555,71.103 +514800,50.876,69.639 +514801,48.426,73.979 +514802,48.859,72.536 +514803,49.262,71.084 +514804,49.634,69.627 +514805,47.032,73.947 +514806,47.516,72.511 +514807,47.969,71.066 +514808,48.392,69.616 +514809,45.639,73.914 +514810,46.173,72.485 +514811,46.676,71.048 +514812,47.149,69.606 +514813,44.245,73.88 +514814,44.83,72.459 +514815,45.383,71.031 +514816,45.906,69.597 +514817,42.852,73.845 +514818,43.487,72.433 +514819,44.09,71.014 +514820,44.662,69.59 +514821,41.46,73.809 +514822,42.144,72.406 +514823,42.796,70.998 +514824,43.418,69.584 +514825,40.068,73.771 +514826,40.801,72.379 +514827,41.503,70.982 +514828,42.174,69.579 +514829,38.676,73.732 +514830,39.459,72.352 +514831,40.209,70.966 +514832,40.929,69.575 +514833,37.285,73.692 +514834,38.117,72.324 +514835,38.915,70.95 +514836,39.683,69.572 +514837,35.894,73.652 +514838,36.774,72.296 +514839,37.621,70.935 +514840,38.437,69.57 +514841,34.504,73.61 +514842,35.433,72.268 +514843,36.327,70.921 +514844,37.19,69.57 +514845,33.114,73.567 +514846,34.091,72.239 +514847,35.033,70.906 +514848,35.942,69.57 +514849,31.725,73.522 +514850,32.75,72.21 +514851,33.738,70.893 +514852,34.694,69.572 +514853,30.337,73.477 +514854,31.408,72.18 +514855,32.443,70.879 +514856,33.445,69.575 +514857,28.949,73.431 +514858,30.067,72.15 +514859,31.148,70.866 +514860,32.195,69.579 +514861,27.562,73.384 +514862,28.727,72.12 +514863,29.853,70.853 +514864,30.944,69.583 +514865,26.176,73.336 +514866,27.386,72.089 +514867,28.557,70.84 +514868,29.692,69.589 +514869,24.79,73.286 +514870,26.046,72.058 +514871,27.261,70.828 +514872,28.439,69.596 +514873,23.406,73.236 +514874,24.707,72.027 +514875,25.965,70.816 +514876,27.186,69.604 +514877,22.022,73.185 +514878,23.367,71.996 +514879,24.669,70.805 +514880,25.931,69.613 +514881,20.64,73.132 +514882,22.028,71.964 +514883,23.372,70.793 +514884,24.676,69.623 +514885,19.258,73.079 +514886,20.689,71.931 +514887,22.075,70.783 +514888,23.419,69.634 +514889,17.877,73.025 +514890,19.351,71.899 +514891,20.777,70.772 +514892,22.161,69.645 +514893,16.497,72.97 +514894,18.013,71.866 +514895,19.479,70.762 +514896,20.903,69.658 +514897,15.119,72.914 +514898,16.675,71.833 +514899,18.181,70.752 +514900,19.643,69.672 +514901,13.741,72.858 +514902,15.338,71.799 +514903,16.883,70.742 +514904,18.382,69.686 +514905,12.365,72.8 +514906,14.001,71.766 +514907,15.584,70.733 +514908,17.12,69.701 +514909,10.989,72.741 +514910,12.664,71.732 +514911,14.284,70.723 +514912,15.856,69.717 +514913,9.615,72.682 +514914,11.328,71.697 +514915,12.985,70.715 +514916,14.592,69.734 +514917,8.2421,72.622 +514918,9.9926,71.663 +514919,11.685,70.706 +514920,13.326,69.752 +514921,6.8704,72.561 +514922,8.6574,71.628 +514923,10.384,70.698 +514924,12.059,69.771 +514925,5.5,72.499 +514926,7.3226,71.593 +514927,9.0833,70.689 +514928,10.79,69.79 +514929,4.1309,72.437 +514930,5.9883,71.558 +514931,7.782,70.682 +514932,9.5204,69.81 +514933,2.7631,72.374 +514934,4.6544,71.522 +514935,6.4802,70.674 +514936,8.2493,69.83 +514937,1.3967,72.31 +514938,3.321,71.486 +514939,5.178,70.667 +514940,6.9768,69.852 +514941,0.031704,72.245 +514942,1.9881,71.45 +514943,3.8753,70.659 +514944,5.7029,69.874 +514945,358.67,72.18 +514946,0.65568,71.414 +514947,2.5722,70.652 +514948,4.4275,69.896 +514949,357.31,72.114 +514950,359.32,71.377 +514951,1.2686,70.646 +514952,3.1508,69.92 +514953,355.95,72.048 +514954,357.99,71.341 +514955,359.96,70.639 +514956,1.8725,69.943 +514957,354.59,71.981 +514958,356.66,71.304 +514959,358.66,70.633 +514960,0.59285,69.968 +514961,353.23,71.913 +514962,355.33,71.267 +514963,357.36,70.626 +514964,359.31,69.993 +514965,351.87,71.845 +514966,354,71.23 +514967,356.05,70.62 +514968,358.03,70.018 +514969,350.52,71.777 +514970,352.67,71.192 +514971,354.74,70.615 +514972,356.74,70.044 +514973,349.17,71.708 +514974,351.34,71.155 +514975,353.44,70.609 +514976,355.46,70.07 +514977,347.81,71.638 +514978,350.01,71.117 +514979,352.13,70.603 +514980,354.17,70.097 +514981,346.46,71.568 +514982,348.69,71.079 +514983,350.82,70.598 +514984,352.88,70.124 +514985,345.12,71.498 +514986,347.36,71.041 +514987,349.51,70.593 +514988,351.59,70.152 +514989,343.77,71.427 +514990,346.03,71.003 +514991,348.21,70.587 +514992,350.3,70.18 +514993,342.43,71.356 +514994,344.71,70.965 +514995,346.9,70.582 +514996,349.01,70.208 +514997,341.08,71.284 +514998,343.38,70.926 +514999,345.59,70.577 +515000,347.71,70.236 +515001,339.74,71.212 +515002,342.06,70.888 +515003,344.28,70.572 +515004,346.41,70.265 +515005,338.4,71.14 +515006,340.73,70.849 +515007,342.97,70.568 +515008,345.12,70.294 +515009,337.06,71.068 +515010,339.41,70.811 +515011,341.65,70.563 +515012,343.82,70.323 +515013,335.73,70.995 +515014,338.09,70.772 +515015,340.34,70.558 +515016,342.51,70.353 +515017,334.39,70.922 +515018,336.76,70.733 +515019,339.03,70.554 +515020,341.21,70.382 +515021,333.06,70.849 +515022,335.44,70.694 +515023,337.72,70.549 +515024,339.91,70.412 +515025,331.73,70.776 +515026,334.12,70.656 +515027,336.4,70.544 +515028,338.6,70.442 +515029,330.4,70.703 +515030,332.8,70.617 +515031,335.09,70.54 +515032,337.29,70.471 +515033,329.08,70.629 +515034,331.48,70.578 +515035,333.78,70.535 +515036,335.98,70.501 +515037,327.75,70.556 +515038,330.16,70.539 +515039,332.46,70.531 +515040,334.67,70.531 +515041,326.43,70.482 +515042,328.84,70.5 +515043,331.14,70.526 +515044,333.35,70.561 +515045,325.11,70.409 +515046,327.52,70.461 +515047,329.83,70.522 +515048,332.04,70.591 +515049,323.79,70.335 +515050,326.2,70.422 +515051,328.51,70.517 +515052,330.72,70.621 +515053,322.47,70.262 +515054,324.89,70.383 +515055,327.19,70.513 +515056,329.4,70.65 +515057,321.15,70.189 +515058,323.57,70.344 +515059,325.88,70.508 +515060,328.08,70.68 +515061,319.84,70.115 +515062,322.26,70.305 +515063,324.56,70.504 +515064,326.76,70.71 +515065,318.53,70.042 +515066,320.94,70.266 +515067,323.24,70.499 +515068,325.44,70.739 +515069,317.22,69.969 +515070,319.63,70.227 +515071,321.92,70.494 +515072,324.11,70.768 +515073,315.91,69.896 +515074,318.31,70.189 +515075,320.6,70.489 +515076,322.79,70.797 +515077,314.6,69.824 +515078,317,70.15 +515079,319.28,70.484 +515080,321.46,70.825 +515081,313.3,69.751 +515082,315.68,70.112 +515083,317.96,70.479 +515084,320.13,70.853 +515085,311.99,69.679 +515086,314.37,70.073 +515087,316.64,70.474 +515088,318.8,70.881 +515089,310.69,69.608 +515090,313.06,70.035 +515091,315.31,70.469 +515092,317.46,70.909 +515093,309.39,69.536 +515094,311.75,69.996 +515095,313.99,70.464 +515096,316.13,70.936 +515097,308.1,69.465 +515098,310.44,69.958 +515099,312.67,70.458 +515100,314.79,70.963 +515101,306.8,69.394 +515102,309.13,69.92 +515103,311.34,70.453 +515104,313.45,70.99 +515105,305.51,69.324 +515106,307.82,69.882 +515107,310.02,70.447 +515108,312.11,71.016 +515109,304.22,69.254 +515110,306.51,69.845 +515111,308.69,70.441 +515112,310.77,71.041 +515113,302.93,69.185 +515114,305.2,69.807 +515115,307.37,70.435 +515116,309.43,71.066 +515117,301.64,69.116 +515118,303.9,69.77 +515119,306.04,70.429 +515120,308.08,71.091 +515121,300.35,69.047 +515122,302.59,69.732 +515123,304.71,70.422 +515124,306.74,71.115 +515125,299.07,68.979 +515126,301.28,69.695 +515127,303.39,70.416 +515128,305.39,71.138 +515129,297.78,68.912 +515130,299.98,69.658 +515131,302.06,70.409 +515132,304.04,71.161 +515133,296.5,68.845 +515134,298.67,69.622 +515135,300.73,70.402 +515136,302.69,71.183 +515137,295.22,68.779 +515138,297.37,69.585 +515139,299.4,70.394 +515140,301.34,71.205 +515141,293.94,68.713 +515142,296.06,69.549 +515143,298.07,70.387 +515144,299.98,71.226 +515145,292.67,68.648 +515146,294.76,69.513 +515147,296.74,70.379 +515148,298.63,71.246 +515149,291.39,68.584 +515150,293.46,69.477 +515151,295.41,70.371 +515152,297.27,71.266 +515153,290.12,68.521 +515154,292.15,69.441 +515155,294.08,70.363 +515156,295.91,71.285 +515157,288.85,68.458 +515158,290.85,69.406 +515159,292.75,70.355 +515160,294.55,71.303 +515161,287.58,68.396 +515162,289.55,69.371 +515163,291.42,70.346 +515164,293.19,71.32 +515165,286.31,68.335 +515166,288.25,69.336 +515167,290.09,70.337 +515168,291.83,71.337 +515169,285.04,68.274 +515170,286.95,69.301 +515171,288.75,70.328 +515172,290.47,71.352 +515173,283.78,68.215 +515174,285.65,69.267 +515175,287.42,70.318 +515176,289.1,71.367 +515177,282.51,68.156 +515178,284.35,69.233 +515179,286.09,70.309 +515180,287.74,71.381 +515181,281.25,68.098 +515182,283.05,69.199 +515183,284.75,70.299 +515184,286.37,71.394 +515185,279.99,68.041 +515186,281.75,69.166 +515187,283.42,70.288 +515188,285,71.407 +515189,278.73,67.985 +515190,280.45,69.132 +515191,282.08,70.277 +515192,283.63,71.418 +515193,277.47,67.929 +515194,279.16,69.099 +515195,280.75,70.266 +515196,282.26,71.429 +515197,276.21,67.875 +515198,277.86,69.067 +515199,279.41,70.255 +515200,280.89,71.438 +515201,274.96,67.822 +515202,276.56,69.035 +515203,278.08,70.244 +515204,279.51,71.447 +515205,273.7,67.769 +515206,275.27,69.003 +515207,276.74,70.232 +515208,278.14,71.454 +515209,272.45,67.718 +515210,273.97,68.971 +515211,275.41,70.219 +515212,276.76,71.461 +515213,271.2,67.668 +515214,272.67,68.94 +515215,274.07,70.207 +515216,275.39,71.467 +515217,269.95,67.618 +515218,271.38,68.909 +515219,272.73,70.194 +515220,274.01,71.471 +515221,268.7,67.57 +515222,270.08,68.878 +515223,271.39,70.18 +515224,272.63,71.475 +515225,267.45,67.523 +515226,268.79,68.848 +515227,270.06,70.167 +515228,271.25,71.477 +515229,266.2,67.476 +515230,267.5,68.818 +515231,268.72,70.153 +515232,269.87,71.479 +515233,264.95,67.431 +515234,266.2,68.788 +515235,267.38,70.138 +515236,268.49,71.479 +515237,263.71,67.387 +515238,264.91,68.759 +515239,266.04,70.123 +515240,267.1,71.478 +515241,262.46,67.344 +515242,263.62,68.73 +515243,264.7,70.108 +515244,265.72,71.477 +515245,261.22,67.303 +515246,262.32,68.702 +515247,263.36,70.093 +515248,264.34,71.474 +515249,259.97,67.262 +515250,261.03,68.674 +515251,262.02,70.077 +515252,262.95,71.47 +515253,258.73,67.223 +515254,259.74,68.646 +515255,260.68,70.061 +515256,261.57,71.465 +515257,257.49,67.184 +515258,258.45,68.619 +515259,259.34,70.044 +515260,260.18,71.459 +515261,256.25,67.147 +515262,257.15,68.592 +515263,258,70.027 +515264,258.79,71.451 +515265,255.01,67.111 +515266,255.86,68.565 +515267,256.66,70.009 +515268,257.4,71.443 +515269,253.77,67.076 +515270,254.57,68.539 +515271,255.32,69.992 +515272,256.01,71.433 +515273,252.53,67.043 +515274,253.28,68.513 +515275,253.98,69.973 +515276,254.63,71.422 +515277,251.29,67.01 +515278,251.99,68.487 +515279,252.64,69.955 +515280,253.24,71.41 +515281,250.05,66.979 +515282,250.7,68.462 +515283,251.3,69.936 +515284,251.84,71.397 +515285,248.81,66.949 +515286,249.41,68.438 +515287,249.95,69.916 +515288,250.45,71.383 +515289,247.57,66.92 +515290,248.12,68.414 +515291,248.61,69.896 +515292,249.06,71.367 +515293,246.34,66.892 +515294,246.83,68.39 +515295,247.27,69.876 +515296,247.67,71.35 +515297,245.1,66.866 +515298,245.54,68.366 +515299,245.93,69.855 +515300,246.28,71.332 +515301,243.86,66.841 +515302,244.25,68.343 +515303,244.59,69.834 +515304,244.89,71.313 +515305,242.63,66.817 +515306,242.96,68.32 +515307,243.24,69.813 +515308,243.49,71.293 +515309,241.39,66.794 +515310,241.67,68.298 +515311,241.9,69.791 +515312,242.1,71.272 +515313,240.16,66.773 +515314,240.38,68.276 +515315,240.56,69.769 +515316,240.71,71.249 +515317,238.92,66.752 +515318,239.09,68.255 +515319,239.22,69.746 +515320,239.31,71.225 +515321,237.68,66.733 +515322,237.8,68.234 +515323,237.88,69.723 +515324,237.92,71.2 +515325,236.45,66.715 +515326,236.51,68.213 +515327,236.53,69.7 +515328,236.52,71.174 +515329,235.21,66.699 +515330,235.22,68.193 +515331,235.19,69.676 +515332,235.13,71.146 +515333,233.98,66.683 +515334,233.93,68.173 +515335,233.85,69.651 +515336,233.73,71.118 +515337,232.74,66.669 +515338,232.64,68.153 +515339,232.51,69.627 +515340,232.34,71.088 +515341,231.51,66.656 +515342,231.35,68.134 +515343,231.16,69.602 +515344,230.95,71.057 +515345,230.27,66.644 +515346,230.06,68.116 +515347,229.82,69.576 +515348,229.55,71.025 +515349,229.03,66.634 +515350,228.77,68.097 +515351,228.48,69.55 +515352,228.16,70.991 +515353,227.8,66.625 +515354,227.48,68.079 +515355,227.14,69.524 +515356,226.76,70.957 +515357,226.56,66.616 +515358,226.19,68.062 +515359,225.8,69.497 +515360,225.37,70.921 +515361,225.32,66.609 +515362,224.9,68.045 +515363,224.45,69.47 +515364,223.98,70.884 +515365,224.09,66.603 +515366,223.61,68.028 +515367,223.11,69.442 +515368,222.58,70.846 +515369,222.85,66.599 +515370,222.32,68.011 +515371,221.77,69.415 +515372,221.19,70.807 +515373,221.61,66.595 +515374,221.03,67.995 +515375,220.43,69.386 +515376,219.8,70.767 +515377,220.37,66.593 +515378,219.74,67.98 +515379,219.09,69.358 +515380,218.4,70.725 +515381,219.13,66.592 +515382,218.45,67.964 +515383,217.75,69.329 +515384,217.01,70.683 +515385,217.89,66.591 +515386,217.16,67.95 +515387,216.4,69.299 +515388,215.62,70.639 +515389,216.65,66.592 +515390,215.87,67.935 +515391,215.06,69.269 +515392,214.23,70.594 +515393,215.41,66.594 +515394,214.58,67.921 +515395,213.72,69.239 +515396,212.84,70.548 +515397,214.17,66.597 +515398,213.29,67.907 +515399,212.38,69.209 +515400,211.45,70.502 +515401,212.92,66.602 +515402,212,67.893 +515403,211.04,69.178 +515404,210.06,70.454 +515405,211.68,66.607 +515406,210.71,67.88 +515407,209.7,69.147 +515408,208.67,70.405 +515409,210.44,66.613 +515410,209.41,67.867 +515411,208.36,69.115 +515412,207.28,70.355 +515413,209.19,66.62 +515414,208.12,67.855 +515415,207.02,69.083 +515416,205.89,70.304 +515417,207.95,66.629 +515418,206.83,67.843 +515419,205.68,69.051 +515420,204.5,70.251 +515421,206.7,66.638 +515422,205.54,67.831 +515423,204.34,69.018 +515424,203.12,70.198 +515425,205.45,66.648 +515426,204.24,67.819 +515427,203.01,68.985 +515428,201.73,70.144 +515429,204.2,66.659 +515430,202.95,67.808 +515431,201.67,68.952 +515432,200.35,70.089 +515433,202.95,66.672 +515434,201.66,67.797 +515435,200.33,68.918 +515436,198.96,70.034 +515437,201.7,66.685 +515438,200.36,67.787 +515439,198.99,68.884 +515440,197.58,69.977 +515441,200.45,66.699 +515442,199.07,67.776 +515443,197.65,68.85 +515444,196.2,69.919 +515445,199.2,66.713 +515446,197.78,67.766 +515447,196.32,68.816 +515448,194.82,69.86 +515449,197.94,66.729 +515450,196.48,67.757 +515451,194.98,68.781 +515452,193.44,69.801 +515453,196.69,66.746 +515454,195.19,67.747 +515455,193.64,68.746 +515456,192.06,69.74 +515457,195.43,66.763 +515458,193.89,67.738 +515459,192.31,68.71 +515460,190.68,69.679 +515461,194.17,66.781 +515462,192.59,67.729 +515463,190.97,68.675 +515464,189.3,69.617 +515465,192.91,66.8 +515466,191.3,67.72 +515467,189.64,68.639 +515468,187.93,69.554 +515469,191.65,66.819 +515470,190,67.712 +515471,188.3,68.603 +515472,186.55,69.491 +515473,190.39,66.84 +515474,188.7,67.704 +515475,186.97,68.566 +515476,185.18,69.427 +515477,189.13,66.861 +515478,187.41,67.696 +515479,185.64,68.53 +515480,183.81,69.362 +515481,187.86,66.882 +515482,186.11,67.688 +515483,184.3,68.493 +515484,182.44,69.296 +515485,186.6,66.905 +515486,184.81,67.68 +515487,182.97,68.455 +515488,181.07,69.229 +515489,185.33,66.928 +515490,183.51,67.673 +515491,181.64,68.418 +515492,179.7,69.162 +515493,184.06,66.951 +515494,182.21,67.666 +515495,180.31,68.38 +515496,178.33,69.094 +515497,182.79,66.975 +515498,180.91,67.659 +515499,178.97,68.343 +515500,176.97,69.026 +515501,181.52,67 +515502,179.61,67.652 +515503,177.64,68.305 +515504,175.6,68.957 +515505,180.25,67.025 +515506,178.31,67.645 +515507,176.31,68.266 +515508,174.24,68.888 +515509,178.97,67.051 +515510,177.01,67.639 +515511,174.98,68.228 +515512,172.88,68.818 +515513,177.7,67.077 +515514,175.71,67.632 +515515,173.65,68.189 +515516,171.52,68.747 +515517,176.42,67.104 +515518,174.41,67.626 +515519,172.32,68.151 +515520,170.16,68.676 +515521,175.14,67.131 +515522,173.1,67.62 +515523,171,68.112 +515524,168.81,68.605 +515525,173.86,67.158 +515526,171.8,67.614 +515527,169.67,68.073 +515528,167.45,68.533 +515529,172.58,67.186 +515530,170.5,67.609 +515531,168.34,68.034 +515532,166.1,68.46 +515533,171.29,67.214 +515534,169.19,67.603 +515535,167.01,67.994 +515536,164.75,68.387 +515537,170.01,67.242 +515538,167.89,67.597 +515539,165.69,67.955 +515540,163.4,68.314 +515541,168.72,67.271 +515542,166.58,67.592 +515543,164.36,67.915 +515544,162.05,68.241 +515545,167.43,67.3 +515546,165.28,67.587 +515547,163.04,67.876 +515548,160.71,68.167 +515549,166.14,67.329 +515550,163.97,67.581 +515551,161.71,67.836 +515552,159.36,68.093 +515553,164.85,67.359 +515554,162.66,67.576 +515555,160.39,67.796 +515556,158.02,68.019 +515557,163.55,67.388 +515558,161.35,67.571 +515559,159.07,67.756 +515560,156.68,67.944 +515561,162.26,67.418 +515562,160.05,67.566 +515563,157.74,67.716 +515564,155.34,67.869 +515565,160.96,67.448 +515566,158.74,67.56 +515567,156.42,67.676 +515568,154,67.795 +515569,159.66,67.477 +515570,157.43,67.555 +515571,155.1,67.636 +515572,152.67,67.719 +515573,158.36,67.507 +515574,156.12,67.55 +515575,153.78,67.596 +515576,151.33,67.644 +515577,157.06,67.537 +515578,154.81,67.545 +515579,152.46,67.556 +515580,150,67.569 +515581,155.76,67.567 +515582,153.5,67.54 +515583,151.14,67.516 +515584,148.67,67.494 +515585,154.45,67.597 +515586,152.19,67.535 +515587,149.82,67.475 +515588,147.34,67.418 +515589,153.14,67.627 +515590,150.87,67.53 +515591,148.5,67.435 +515592,146.02,67.343 +515593,151.83,67.657 +515594,149.56,67.525 +515595,147.19,67.395 +515596,144.69,67.268 +515597,150.52,67.687 +515598,148.25,67.52 +515599,145.87,67.355 +515600,143.37,67.192 +515601,149.21,67.716 +515602,146.93,67.514 +515603,144.55,67.315 +515604,142.05,67.117 +515605,147.9,67.745 +515606,145.62,67.509 +515607,143.24,67.275 +515608,140.73,67.042 +515609,146.58,67.775 +515610,144.31,67.504 +515611,141.92,67.235 +515612,139.41,66.967 +515613,145.26,67.804 +515614,142.99,67.498 +515615,140.61,67.194 +515616,138.1,66.892 +515617,143.94,67.832 +515618,141.67,67.493 +515619,139.29,67.155 +515620,136.79,66.818 +515621,142.62,67.861 +515622,140.36,67.487 +515623,137.98,67.115 +515624,135.48,66.744 +515625,141.3,67.889 +515626,139.04,67.481 +515627,136.67,67.075 +515628,134.17,66.669 +515629,139.97,67.916 +515630,137.72,67.476 +515631,135.36,67.035 +515632,132.86,66.596 +515633,138.65,67.944 +515634,136.4,67.47 +515635,134.05,66.996 +515636,131.55,66.522 +515637,137.32,67.971 +515638,135.08,67.464 +515639,132.73,66.956 +515640,130.25,66.449 +515641,135.99,67.997 +515642,133.76,67.457 +515643,131.42,66.917 +515644,128.95,66.376 +515645,134.66,68.024 +515646,132.44,67.451 +515647,130.11,66.877 +515648,127.65,66.304 +515649,133.33,68.049 +515650,131.12,67.444 +515651,128.81,66.838 +515652,126.35,66.232 +515653,131.99,68.074 +515654,129.8,67.438 +515655,127.5,66.799 +515656,125.06,66.16 +515657,130.65,68.099 +515658,128.48,67.431 +515659,126.19,66.76 +515660,123.76,66.089 +515661,129.32,68.123 +515662,127.16,67.424 +515663,124.88,66.722 +515664,122.47,66.019 +515665,127.98,68.147 +515666,125.84,67.416 +515667,123.58,66.683 +515668,121.18,65.948 +515669,126.64,68.17 +515670,124.51,67.409 +515671,122.27,66.645 +515672,119.89,65.879 +515673,125.29,68.192 +515674,123.19,67.401 +515675,120.97,66.607 +515676,118.61,65.81 +515677,123.95,68.214 +515678,121.86,67.393 +515679,119.66,66.569 +515680,117.32,65.742 +515681,122.6,68.235 +515682,120.54,67.385 +515683,118.36,66.531 +515684,116.04,65.674 +515685,121.25,68.255 +515686,119.21,67.377 +515687,117.05,66.494 +515688,114.76,65.607 +515689,119.91,68.275 +515690,117.89,67.368 +515691,115.75,66.456 +515692,113.48,65.541 +515693,118.56,68.294 +515694,116.56,67.359 +515695,114.45,66.419 +515696,112.21,65.475 +515697,117.2,68.312 +515698,115.23,67.35 +515699,113.15,66.383 +515700,110.93,65.41 +515701,115.85,68.329 +515702,113.91,67.341 +515703,111.85,66.346 +515704,109.66,65.346 +515705,114.49,68.346 +515706,112.58,67.331 +515707,110.55,66.31 +515708,108.39,65.282 +515709,113.14,68.361 +515710,111.25,67.321 +515711,109.25,66.274 +515712,107.12,65.22 +515713,111.78,68.376 +515714,109.92,67.311 +515715,107.95,66.238 +515716,105.85,65.158 +515717,110.42,68.39 +515718,108.59,67.3 +515719,106.65,66.202 +515720,104.58,65.097 +515721,109.06,68.404 +515722,107.26,67.29 +515723,105.35,66.167 +515724,103.31,65.037 +515725,107.7,68.416 +515726,105.93,67.278 +515727,104.05,66.132 +515728,102.05,64.978 +515729,106.33,68.427 +515730,104.6,67.267 +515731,102.75,66.097 +515732,100.79,64.919 +515733,104.97,68.438 +515734,103.27,67.255 +515735,101.46,66.063 +515736,99.529,64.862 +515737,103.6,68.447 +515738,101.93,67.243 +515739,100.16,66.029 +515740,98.27,64.806 +515741,102.24,68.455 +515742,100.6,67.231 +515743,98.866,65.995 +515744,97.012,64.75 +515745,100.87,68.463 +515746,99.27,67.218 +515747,97.57,65.962 +515748,95.756,64.696 +515749,99.498,68.469 +515750,97.937,67.205 +515751,96.276,65.929 +515752,94.501,64.642 +515753,98.127,68.475 +515754,96.603,67.191 +515755,94.981,65.896 +515756,93.248,64.59 +515757,96.755,68.479 +515758,95.269,67.177 +515759,93.687,65.863 +515760,91.996,64.538 +515761,95.381,68.483 +515762,93.935,67.163 +515763,92.394,65.831 +515764,90.746,64.488 +515765,94.007,68.485 +515766,92.6,67.149 +515767,91.1,65.8 +515768,89.496,64.439 +515769,92.631,68.486 +515770,91.265,67.134 +515771,89.808,65.768 +515772,88.248,64.39 +515773,91.254,68.486 +515774,89.93,67.118 +515775,88.516,65.737 +515776,87.001,64.343 +515777,89.877,68.485 +515778,88.594,67.103 +515779,87.224,65.706 +515780,85.756,64.297 +515781,88.498,68.483 +515782,87.258,67.087 +515783,85.932,65.676 +515784,84.511,64.252 +515785,87.118,68.48 +515786,85.921,67.07 +515787,84.641,65.646 +515788,83.268,64.208 +515789,85.738,68.476 +515790,84.585,67.053 +515791,83.35,65.616 +515792,82.025,64.166 +515793,84.356,68.47 +515794,83.248,67.036 +515795,82.06,65.587 +515796,80.784,64.124 +515797,82.974,68.463 +515798,81.91,67.019 +515799,80.77,65.558 +515800,79.543,64.084 +515801,81.59,68.455 +515802,80.573,67 +515803,79.48,65.53 +515804,78.304,64.045 +515805,80.206,68.446 +515806,79.235,66.982 +515807,78.19,65.502 +515808,77.065,64.007 +515809,78.821,68.436 +515810,77.897,66.963 +515811,76.901,65.474 +515812,75.827,63.97 +515813,77.435,68.425 +515814,76.558,66.944 +515815,75.612,65.447 +515816,74.59,63.935 +515817,76.049,68.412 +515818,75.22,66.924 +515819,74.324,65.42 +515820,73.354,63.9 +515821,74.662,68.398 +515822,73.881,66.904 +515823,73.035,65.393 +515824,72.119,63.867 +515825,73.274,68.383 +515826,72.542,66.884 +515827,71.747,65.367 +515828,70.884,63.835 +515829,71.885,68.367 +515830,71.202,66.863 +515831,70.459,65.342 +515832,69.65,63.805 +515833,70.496,68.35 +515834,69.863,66.841 +515835,69.171,65.316 +515836,68.416,63.775 +515837,69.107,68.331 +515838,68.523,66.82 +515839,67.884,65.291 +515840,67.183,63.747 +515841,67.717,68.311 +515842,67.184,66.797 +515843,66.597,65.267 +515844,65.95,63.72 +515845,66.326,68.29 +515846,65.844,66.775 +515847,65.31,65.243 +515848,64.718,63.695 +515849,64.935,68.267 +515850,64.504,66.752 +515851,64.023,65.219 +515852,63.487,63.67 +515853,63.543,68.244 +515854,63.164,66.728 +515855,62.736,65.196 +515856,62.255,63.647 +515857,62.151,68.219 +515858,61.823,66.704 +515859,61.449,65.173 +515860,61.024,63.625 +515861,60.759,68.193 +515862,60.483,66.68 +515863,60.163,65.15 +515864,59.794,63.605 +515865,59.366,68.166 +515866,59.143,66.655 +515867,58.876,65.128 +515868,58.563,63.585 +515869,57.973,68.137 +515870,57.802,66.63 +515871,57.59,65.107 +515872,57.333,63.567 +515873,56.58,68.107 +515874,56.462,66.605 +515875,56.303,65.085 +515876,56.103,63.55 +515877,55.187,68.076 +515878,55.121,66.579 +515879,55.017,65.064 +515880,54.873,63.534 +515881,53.793,68.044 +515882,53.78,66.552 +515883,53.731,65.044 +515884,53.643,63.52 +515885,52.399,68.011 +515886,52.44,66.525 +515887,52.445,65.024 +515888,52.412,63.507 +515889,51.006,67.976 +515890,51.099,66.498 +515891,51.159,65.004 +515892,51.182,63.495 +515893,49.612,67.94 +515894,49.759,66.471 +515895,49.873,64.985 +515896,49.952,63.484 +515897,48.218,67.903 +515898,48.418,66.442 +515899,48.586,64.966 +515900,48.722,63.474 +515901,46.824,67.865 +515902,47.077,66.414 +515903,47.3,64.947 +515904,47.492,63.466 +515905,45.43,67.825 +515906,45.737,66.385 +515907,46.014,64.929 +515908,46.261,63.459 +515909,44.037,67.784 +515910,44.397,66.356 +515911,44.728,64.912 +515912,45.03,63.453 +515913,42.643,67.743 +515914,43.056,66.326 +515915,43.442,64.894 +515916,43.799,63.448 +515917,41.25,67.7 +515918,41.716,66.296 +515919,42.155,64.877 +515920,42.567,63.445 +515921,39.856,67.655 +515922,40.376,66.265 +515923,40.869,64.861 +515924,41.335,63.442 +515925,38.463,67.61 +515926,39.036,66.234 +515927,39.582,64.844 +515928,40.103,63.441 +515929,37.071,67.564 +515930,37.696,66.203 +515931,38.295,64.828 +515932,38.87,63.441 +515933,35.678,67.516 +515934,36.356,66.171 +515935,37.009,64.813 +515936,37.636,63.442 +515937,34.286,67.467 +515938,35.017,66.139 +515939,35.722,64.798 +515940,36.402,63.444 +515941,32.895,67.417 +515942,33.677,66.107 +515943,34.435,64.783 +515944,35.168,63.447 +515945,31.504,67.366 +515946,32.338,66.074 +515947,33.147,64.769 +515948,33.932,63.451 +515949,30.113,67.314 +515950,30.999,66.041 +515951,31.86,64.755 +515952,32.697,63.457 +515953,28.723,67.261 +515954,29.66,66.007 +515955,30.572,64.741 +515956,31.46,63.463 +515957,27.333,67.207 +515958,28.322,65.973 +515959,29.284,64.727 +515960,30.222,63.471 +515961,25.944,67.152 +515962,26.983,65.939 +515963,27.996,64.714 +515964,28.984,63.479 +515965,24.556,67.096 +515966,25.645,65.905 +515967,26.708,64.702 +515968,27.745,63.489 +515969,23.168,67.039 +515970,24.307,65.87 +515971,25.419,64.689 +515972,26.505,63.499 +515973,21.781,66.981 +515974,22.97,65.834 +515975,24.13,64.677 +515976,25.264,63.51 +515977,20.395,66.922 +515978,21.633,65.799 +515979,22.841,64.665 +515980,24.023,63.523 +515981,19.009,66.861 +515982,20.296,65.763 +515983,21.552,64.654 +515984,22.78,63.536 +515985,17.625,66.8 +515986,18.959,65.726 +515987,20.262,64.642 +515988,21.536,63.55 +515989,16.241,66.739 +515990,17.623,65.69 +515991,18.972,64.631 +515992,20.291,63.565 +515993,14.858,66.676 +515994,16.287,65.653 +515995,17.681,64.621 +515996,19.045,63.581 +515997,13.476,66.612 +515998,14.951,65.616 +515999,16.391,64.61 +516000,17.798,63.598 +516001,12.095,66.547 +516002,13.616,65.578 +516003,15.1,64.6 +516004,16.55,63.615 +516005,10.715,66.482 +516006,12.281,65.54 +516007,13.808,64.59 +516008,15.301,63.634 +516009,9.3362,66.416 +516010,10.947,65.502 +516011,12.516,64.581 +516012,14.05,63.653 +516013,7.9583,66.349 +516014,9.6124,65.464 +516015,11.224,64.571 +516016,12.798,63.673 +516017,6.5816,66.281 +516018,8.2788,65.425 +516019,9.9316,64.562 +516020,11.545,63.694 +516021,5.206,66.213 +516022,6.9455,65.386 +516023,8.6386,64.553 +516024,10.291,63.715 +516025,3.8316,66.143 +516026,5.6127,65.347 +516027,7.3453,64.545 +516028,9.0352,63.737 +516029,2.4584,66.073 +516030,4.2803,65.308 +516031,6.0515,64.536 +516032,7.7781,63.759 +516033,1.0865,66.003 +516034,2.9484,65.268 +516035,4.7573,64.528 +516036,6.5197,63.783 +516037,359.72,65.931 +516038,1.6169,65.229 +516039,3.4626,64.52 +516040,5.2598,63.807 +516041,358.35,65.86 +516042,0.28595,65.188 +516043,2.1675,64.512 +516044,3.9985,63.831 +516045,356.98,65.787 +516046,358.96,65.148 +516047,0.87196,64.504 +516048,2.7358,63.856 +516049,355.61,65.714 +516050,357.63,65.108 +516051,359.58,64.497 +516052,1.4716,63.882 +516053,354.25,65.64 +516054,356.3,65.067 +516055,358.28,64.489 +516056,0.20587,63.908 +516057,352.88,65.566 +516058,354.97,65.026 +516059,356.98,64.482 +516060,358.94,63.934 +516061,351.52,65.491 +516062,353.64,64.985 +516063,355.69,64.475 +516064,357.67,63.961 +516065,350.16,65.416 +516066,352.31,64.944 +516067,354.39,64.468 +516068,356.4,63.988 +516069,348.8,65.341 +516070,350.98,64.903 +516071,353.09,64.461 +516072,355.13,64.016 +516073,347.44,65.265 +516074,349.66,64.861 +516075,351.79,64.454 +516076,353.85,64.044 +516077,346.09,65.188 +516078,348.33,64.82 +516079,350.49,64.448 +516080,352.58,64.073 +516081,344.73,65.111 +516082,347,64.778 +516083,349.19,64.441 +516084,351.3,64.101 +516085,343.38,65.034 +516086,345.68,64.736 +516087,347.89,64.435 +516088,350.02,64.13 +516089,342.03,64.957 +516090,344.35,64.694 +516091,346.59,64.428 +516092,348.74,64.16 +516093,340.68,64.879 +516094,343.03,64.652 +516095,345.29,64.422 +516096,347.46,64.189 +516097,339.33,64.801 +516098,341.71,64.61 +516099,343.98,64.416 +516100,346.18,64.219 +516101,337.99,64.723 +516102,340.38,64.568 +516103,342.68,64.409 +516104,344.89,64.248 +516105,336.64,64.644 +516106,339.06,64.526 +516107,341.38,64.403 +516108,343.61,64.278 +516109,335.3,64.566 +516110,337.74,64.483 +516111,340.08,64.397 +516112,342.32,64.308 +516113,333.96,64.487 +516114,336.42,64.441 +516115,338.77,64.391 +516116,341.03,64.338 +516117,332.62,64.408 +516118,335.1,64.399 +516119,337.47,64.385 +516120,339.74,64.369 +516121,331.28,64.329 +516122,333.78,64.356 +516123,336.16,64.379 +516124,338.44,64.399 +516125,329.95,64.25 +516126,332.46,64.314 +516127,334.85,64.373 +516128,337.15,64.429 +516129,328.62,64.171 +516130,331.14,64.271 +516131,333.55,64.367 +516132,335.85,64.459 +516133,327.28,64.092 +516134,329.82,64.228 +516135,332.24,64.36 +516136,334.55,64.489 +516137,325.95,64.013 +516138,328.51,64.186 +516139,330.93,64.354 +516140,333.25,64.519 +516141,324.63,63.934 +516142,327.19,64.143 +516143,329.62,64.348 +516144,331.95,64.548 +516145,323.3,63.856 +516146,325.87,64.101 +516147,328.32,64.342 +516148,330.64,64.578 +516149,321.98,63.777 +516150,324.56,64.059 +516151,327.01,64.335 +516152,329.34,64.607 +516153,320.66,63.698 +516154,323.24,64.016 +516155,325.7,64.329 +516156,328.03,64.637 +516157,319.34,63.62 +516158,321.93,63.974 +516159,324.38,64.322 +516160,326.72,64.666 +516161,318.02,63.542 +516162,320.62,63.932 +516163,323.07,64.315 +516164,325.41,64.694 +516165,316.7,63.464 +516166,319.3,63.889 +516167,321.76,64.309 +516168,324.1,64.723 +516169,315.39,63.386 +516170,317.99,63.847 +516171,320.45,64.302 +516172,322.78,64.751 +516173,314.08,63.309 +516174,316.68,63.805 +516175,319.14,64.295 +516176,321.47,64.778 +516177,312.77,63.232 +516178,315.37,63.763 +516179,317.82,64.288 +516180,320.15,64.805 +516181,311.46,63.155 +516182,314.06,63.722 +516183,316.51,64.28 +516184,318.83,64.832 +516185,310.16,63.079 +516186,312.75,63.68 +516187,315.19,64.273 +516188,317.51,64.859 +516189,308.85,63.003 +516190,311.44,63.638 +516191,313.88,64.265 +516192,316.18,64.885 +516193,307.55,62.928 +516194,310.13,63.597 +516195,312.56,64.258 +516196,314.86,64.91 +516197,306.25,62.853 +516198,308.83,63.556 +516199,311.25,64.25 +516200,313.53,64.935 +516201,304.95,62.778 +516202,307.52,63.515 +516203,309.93,64.241 +516204,312.2,64.959 +516205,303.66,62.705 +516206,306.21,63.474 +516207,308.61,64.233 +516208,310.87,64.983 +516209,302.37,62.631 +516210,304.91,63.433 +516211,307.29,64.224 +516212,309.54,65.006 +516213,301.07,62.558 +516214,303.6,63.392 +516215,305.97,64.216 +516216,308.21,65.029 +516217,299.78,62.486 +516218,302.3,63.352 +516219,304.65,64.207 +516220,306.87,65.051 +516221,298.5,62.415 +516222,301,63.312 +516223,303.33,64.197 +516224,305.54,65.072 +516225,297.21,62.344 +516226,299.69,63.272 +516227,302.01,64.188 +516228,304.2,65.092 +516229,295.93,62.274 +516230,298.39,63.232 +516231,300.69,64.178 +516232,302.86,65.112 +516233,294.65,62.204 +516234,297.09,63.193 +516235,299.37,64.168 +516236,301.51,65.131 +516237,293.37,62.136 +516238,295.79,63.153 +516239,298.05,64.158 +516240,300.17,65.149 +516241,292.09,62.068 +516242,294.49,63.114 +516243,296.73,64.147 +516244,298.83,65.167 +516245,290.81,62 +516246,293.19,63.076 +516247,295.4,64.137 +516248,297.48,65.183 +516249,289.54,61.934 +516250,291.89,63.037 +516251,294.08,64.125 +516252,296.13,65.199 +516253,288.27,61.869 +516254,290.59,62.999 +516255,292.75,64.114 +516256,294.78,65.214 +516257,287,61.804 +516258,289.29,62.961 +516259,291.43,64.102 +516260,293.43,65.228 +516261,285.73,61.74 +516262,287.99,62.923 +516263,290.1,64.09 +516264,292.08,65.241 +516265,284.46,61.677 +516266,286.7,62.886 +516267,288.78,64.078 +516268,290.72,65.254 +516269,283.2,61.615 +516270,285.4,62.849 +516271,287.45,64.065 +516272,289.37,65.265 +516273,281.93,61.554 +516274,284.11,62.812 +516275,286.12,64.052 +516276,288.01,65.275 +516277,280.67,61.494 +516278,282.81,62.775 +516279,284.8,64.039 +516280,286.65,65.284 +516281,279.41,61.435 +516282,281.52,62.739 +516283,283.47,64.025 +516284,285.29,65.293 +516285,278.15,61.377 +516286,280.22,62.704 +516287,282.14,64.011 +516288,283.93,65.3 +516289,276.9,61.32 +516290,278.93,62.668 +516291,280.81,63.997 +516292,282.57,65.306 +516293,275.64,61.264 +516294,277.63,62.633 +516295,279.48,63.982 +516296,281.21,65.312 +516297,274.39,61.209 +516298,276.34,62.598 +516299,278.15,63.967 +516300,279.84,65.316 +516301,273.14,61.156 +516302,275.05,62.564 +516303,276.82,63.951 +516304,278.48,65.319 +516305,271.89,61.103 +516306,273.76,62.529 +516307,275.49,63.935 +516308,277.11,65.321 +516309,270.64,61.051 +516310,272.47,62.496 +516311,274.16,63.919 +516312,275.74,65.322 +516313,269.39,61.001 +516314,271.18,62.462 +516315,272.83,63.902 +516316,274.37,65.321 +516317,268.14,60.952 +516318,269.89,62.429 +516319,271.5,63.885 +516320,273,65.32 +516321,266.9,60.904 +516322,268.6,62.397 +516323,270.17,63.868 +516324,271.63,65.317 +516325,265.66,60.857 +516326,267.31,62.364 +516327,268.84,63.85 +516328,270.25,65.313 +516329,264.41,60.811 +516330,266.02,62.332 +516331,267.5,63.832 +516332,268.88,65.309 +516333,263.17,60.766 +516334,264.73,62.301 +516335,266.17,63.813 +516336,267.5,65.302 +516337,261.93,60.723 +516338,263.44,62.27 +516339,264.84,63.794 +516340,266.13,65.295 +516341,260.7,60.681 +516342,262.16,62.239 +516343,263.5,63.774 +516344,264.75,65.287 +516345,259.46,60.64 +516346,260.87,62.209 +516347,262.17,63.754 +516348,263.37,65.277 +516349,258.22,60.6 +516350,259.58,62.179 +516351,260.83,63.734 +516352,261.99,65.266 +516353,256.99,60.562 +516354,258.3,62.149 +516355,259.5,63.713 +516356,260.61,65.254 +516357,255.75,60.525 +516358,257.01,62.12 +516359,258.16,63.692 +516360,259.23,65.24 +516361,254.52,60.489 +516362,255.72,62.091 +516363,256.83,63.67 +516364,257.85,65.225 +516365,253.29,60.454 +516366,254.44,62.063 +516367,255.49,63.648 +516368,256.46,65.209 +516369,252.06,60.421 +516370,253.15,62.035 +516371,254.16,63.626 +516372,255.08,65.192 +516373,250.83,60.389 +516374,251.87,62.008 +516375,252.82,63.603 +516376,253.69,65.174 +516377,249.6,60.358 +516378,250.58,61.981 +516379,251.49,63.579 +516380,252.31,65.154 +516381,248.37,60.329 +516382,249.3,61.954 +516383,250.15,63.555 +516384,250.92,65.133 +516385,247.14,60.301 +516386,248.02,61.928 +516387,248.81,63.531 +516388,249.54,65.11 +516389,245.91,60.274 +516390,246.73,61.902 +516391,247.48,63.506 +516392,248.15,65.087 +516393,244.68,60.248 +516394,245.45,61.876 +516395,246.14,63.481 +516396,246.76,65.062 +516397,243.46,60.224 +516398,244.17,61.851 +516399,244.8,63.455 +516400,245.37,65.035 +516401,242.23,60.201 +516402,242.88,61.827 +516403,243.46,63.429 +516404,243.98,65.008 +516405,241.01,60.179 +516406,241.6,61.803 +516407,242.13,63.403 +516408,242.59,64.979 +516409,239.78,60.159 +516410,240.32,61.779 +516411,240.79,63.376 +516412,241.2,64.949 +516413,238.56,60.14 +516414,239.03,61.756 +516415,239.45,63.348 +516416,239.81,64.917 +516417,237.33,60.122 +516418,237.75,61.733 +516419,238.11,63.32 +516420,238.42,64.885 +516421,236.11,60.106 +516422,236.47,61.71 +516423,236.78,63.292 +516424,237.03,64.851 +516425,234.88,60.091 +516426,235.19,61.688 +516427,235.44,63.263 +516428,235.64,64.816 +516429,233.66,60.077 +516430,233.9,61.667 +516431,234.1,63.234 +516432,234.25,64.779 +516433,232.44,60.065 +516434,232.62,61.645 +516435,232.76,63.205 +516436,232.86,64.741 +516437,231.21,60.053 +516438,231.34,61.625 +516439,231.42,63.175 +516440,231.47,64.702 +516441,229.99,60.043 +516442,230.06,61.604 +516443,230.09,63.144 +516444,230.07,64.662 +516445,228.77,60.034 +516446,228.78,61.584 +516447,228.75,63.113 +516448,228.68,64.62 +516449,227.54,60.027 +516450,227.49,61.565 +516451,227.41,63.082 +516452,227.29,64.577 +516453,226.32,60.021 +516454,226.21,61.545 +516455,226.07,63.05 +516456,225.9,64.533 +516457,225.09,60.016 +516458,224.93,61.527 +516459,224.73,63.018 +516460,224.51,64.488 +516461,223.87,60.012 +516462,223.65,61.508 +516463,223.4,62.985 +516464,223.11,64.441 +516465,222.65,60.009 +516466,222.37,61.49 +516467,222.06,62.952 +516468,221.72,64.394 +516469,221.42,60.008 +516470,221.09,61.473 +516471,220.72,62.918 +516472,220.33,64.345 +516473,220.2,60.008 +516474,219.8,61.455 +516475,219.38,62.885 +516476,218.94,64.294 +516477,218.97,60.009 +516478,218.52,61.438 +516479,218.05,62.85 +516480,217.54,64.243 +516481,217.74,60.011 +516482,217.24,61.422 +516483,216.71,62.816 +516484,216.15,64.191 +516485,216.52,60.014 +516486,215.96,61.406 +516487,215.37,62.78 +516488,214.76,64.137 +516489,215.29,60.018 +516490,214.67,61.39 +516491,214.03,62.745 +516492,213.37,64.082 +516493,214.06,60.024 +516494,213.39,61.375 +516495,212.7,62.709 +516496,211.98,64.026 +516497,212.84,60.03 +516498,212.11,61.359 +516499,211.36,62.673 +516500,210.59,63.969 +516501,211.61,60.038 +516502,210.83,61.345 +516503,210.02,62.636 +516504,209.2,63.911 +516505,210.38,60.047 +516506,209.54,61.33 +516507,208.69,62.599 +516508,207.81,63.852 +516509,209.15,60.056 +516510,208.26,61.316 +516511,207.35,62.562 +516512,206.42,63.791 +516513,207.92,60.067 +516514,206.98,61.303 +516515,206.01,62.524 +516516,205.03,63.73 +516517,206.68,60.079 +516518,205.69,61.289 +516519,204.68,62.486 +516520,203.65,63.667 +516521,205.45,60.092 +516522,204.41,61.276 +516523,203.34,62.447 +516524,202.26,63.604 +516525,204.22,60.105 +516526,203.12,61.263 +516527,202.01,62.409 +516528,200.87,63.539 +516529,202.98,60.12 +516530,201.84,61.251 +516531,200.67,62.37 +516532,199.49,63.474 +516533,201.75,60.136 +516534,200.55,61.239 +516535,199.34,62.33 +516536,198.1,63.408 +516537,200.51,60.152 +516538,199.27,61.227 +516539,198,62.29 +516540,196.72,63.34 +516541,199.27,60.169 +516542,197.98,61.215 +516543,196.67,62.25 +516544,195.33,63.272 +516545,198.04,60.187 +516546,196.7,61.204 +516547,195.34,62.21 +516548,193.95,63.203 +516549,196.8,60.206 +516550,195.41,61.193 +516551,194,62.169 +516552,192.57,63.133 +516553,195.55,60.226 +516554,194.13,61.182 +516555,192.67,62.128 +516556,191.19,63.062 +516557,194.31,60.247 +516558,192.84,61.172 +516559,191.34,62.087 +516560,189.81,62.99 +516561,193.07,60.268 +516562,191.55,61.161 +516563,190.01,62.045 +516564,188.43,62.918 +516565,191.82,60.29 +516566,190.26,61.151 +516567,188.67,62.003 +516568,187.05,62.844 +516569,190.58,60.313 +516570,188.98,61.141 +516571,187.34,61.961 +516572,185.67,62.77 +516573,189.33,60.336 +516574,187.69,61.132 +516575,186.01,61.919 +516576,184.3,62.695 +516577,188.08,60.36 +516578,186.4,61.122 +516579,184.68,61.876 +516580,182.92,62.62 +516581,186.83,60.385 +516582,185.11,61.113 +516583,183.35,61.833 +516584,181.55,62.544 +516585,185.58,60.41 +516586,183.82,61.104 +516587,182.02,61.79 +516588,180.18,62.467 +516589,184.33,60.436 +516590,182.53,61.095 +516591,180.69,61.747 +516592,178.81,62.389 +516593,183.08,60.462 +516594,181.24,61.087 +516595,179.36,61.704 +516596,177.44,62.311 +516597,181.82,60.489 +516598,179.95,61.078 +516599,178.04,61.66 +516600,176.07,62.232 +516601,180.56,60.517 +516602,178.66,61.07 +516603,176.71,61.616 +516604,174.7,62.153 +516605,179.3,60.544 +516606,177.37,61.062 +516607,175.38,61.572 +516608,173.33,62.073 +516609,178.04,60.573 +516610,176.08,61.054 +516611,174.05,61.528 +516612,171.97,61.993 +516613,176.78,60.601 +516614,174.78,61.046 +516615,172.73,61.483 +516616,170.61,61.912 +516617,175.52,60.63 +516618,173.49,61.038 +516619,171.4,61.439 +516620,169.25,61.831 +516621,174.25,60.659 +516622,172.2,61.03 +516623,170.08,61.394 +516624,167.89,61.749 +516625,172.99,60.689 +516626,170.9,61.023 +516627,168.75,61.349 +516628,166.53,61.667 +516629,171.72,60.719 +516630,169.61,61.015 +516631,167.43,61.304 +516632,165.17,61.585 +516633,170.45,60.749 +516634,168.31,61.008 +516635,166.11,61.259 +516636,163.82,61.502 +516637,169.18,60.779 +516638,167.02,61 +516639,164.78,61.214 +516640,162.46,61.419 +516641,167.9,60.81 +516642,165.72,60.993 +516643,163.46,61.169 +516644,161.11,61.336 +516645,166.63,60.84 +516646,164.42,60.986 +516647,162.14,61.123 +516648,159.76,61.252 +516649,165.35,60.871 +516650,163.13,60.978 +516651,160.82,61.078 +516652,158.41,61.168 +516653,164.07,60.902 +516654,161.83,60.971 +516655,159.5,61.033 +516656,157.07,61.084 +516657,162.79,60.933 +516658,160.53,60.964 +516659,158.18,60.987 +516660,155.72,61 +516661,161.51,60.964 +516662,159.23,60.957 +516663,156.86,60.941 +516664,154.38,60.916 +516665,160.23,60.995 +516666,157.93,60.95 +516667,155.54,60.896 +516668,153.04,60.832 +516669,158.94,61.026 +516670,156.63,60.942 +516671,154.22,60.85 +516672,151.7,60.747 +516673,157.66,61.057 +516674,155.33,60.935 +516675,152.91,60.804 +516676,150.36,60.663 +516677,156.37,61.088 +516678,154.03,60.928 +516679,151.59,60.759 +516680,149.02,60.579 +516681,155.08,61.118 +516682,152.73,60.92 +516683,150.27,60.713 +516684,147.69,60.494 +516685,153.79,61.149 +516686,151.43,60.913 +516687,148.96,60.667 +516688,146.36,60.41 +516689,152.49,61.179 +516690,150.12,60.906 +516691,147.64,60.622 +516692,145.03,60.326 +516693,151.2,61.209 +516694,148.82,60.898 +516695,146.33,60.576 +516696,143.7,60.242 +516697,149.9,61.239 +516698,147.52,60.891 +516699,145.02,60.531 +516700,142.37,60.158 +516701,148.6,61.269 +516702,146.21,60.883 +516703,143.7,60.485 +516704,141.05,60.074 +516705,147.3,61.298 +516706,144.91,60.875 +516707,142.39,60.44 +516708,139.73,59.991 +516709,145.99,61.327 +516710,143.6,60.867 +516711,141.08,60.395 +516712,138.41,59.908 +516713,144.69,61.356 +516714,142.29,60.859 +516715,139.77,60.349 +516716,137.09,59.825 +516717,143.38,61.384 +516718,140.99,60.851 +516719,138.46,60.304 +516720,135.78,59.742 +516721,142.07,61.412 +516722,139.68,60.843 +516723,137.15,60.259 +516724,134.46,59.66 +516725,140.76,61.439 +516726,138.37,60.834 +516727,135.84,60.214 +516728,133.15,59.578 +516729,139.45,61.466 +516730,137.06,60.825 +516731,134.53,60.17 +516732,131.84,59.497 +516733,138.14,61.492 +516734,135.75,60.817 +516735,133.23,60.125 +516736,130.53,59.416 +516737,136.82,61.518 +516738,134.44,60.808 +516739,131.92,60.081 +516740,129.23,59.335 +516741,135.5,61.544 +516742,133.13,60.798 +516743,130.61,60.036 +516744,127.92,59.255 +516745,134.19,61.568 +516746,131.82,60.789 +516747,129.31,59.992 +516748,126.62,59.176 +516749,132.86,61.592 +516750,130.51,60.779 +516751,128.01,59.948 +516752,125.32,59.097 +516753,131.54,61.616 +516754,129.2,60.77 +516755,126.7,59.904 +516756,124.03,59.019 +516757,130.22,61.639 +516758,127.88,60.76 +516759,125.4,59.861 +516760,122.73,58.941 +516761,128.89,61.661 +516762,126.57,60.749 +516763,124.1,59.818 +516764,121.44,58.864 +516765,127.56,61.682 +516766,125.26,60.739 +516767,122.79,59.774 +516768,120.15,58.787 +516769,126.23,61.703 +516770,123.94,60.728 +516771,121.49,59.731 +516772,118.86,58.712 +516773,124.9,61.723 +516774,122.63,60.717 +516775,120.19,59.689 +516776,117.57,58.637 +516777,123.57,61.742 +516778,121.31,60.705 +516779,118.89,59.646 +516780,116.29,58.563 +516781,122.24,61.76 +516782,119.99,60.694 +516783,117.59,59.604 +516784,115.01,58.489 +516785,120.9,61.778 +516786,118.68,60.682 +516787,116.3,59.562 +516788,113.73,58.417 +516789,119.56,61.794 +516790,117.36,60.67 +516791,115,59.521 +516792,112.45,58.345 +516793,118.22,61.81 +516794,116.04,60.657 +516795,113.7,59.479 +516796,111.17,58.274 +516797,116.88,61.825 +516798,114.72,60.644 +516799,112.41,59.438 +516800,109.9,58.204 +516801,115.54,61.838 +516802,113.4,60.631 +516803,111.11,59.397 +516804,108.62,58.135 +516805,114.19,61.851 +516806,112.08,60.618 +516807,109.81,59.357 +516808,107.35,58.067 +516809,112.85,61.863 +516810,110.76,60.604 +516811,108.52,59.317 +516812,106.09,58 +516813,111.5,61.874 +516814,109.44,60.59 +516815,107.23,59.277 +516816,104.82,57.934 +516817,110.15,61.884 +516818,108.12,60.575 +516819,105.93,59.237 +516820,103.56,57.869 +516821,108.8,61.893 +516822,106.8,60.56 +516823,104.64,59.198 +516824,102.29,57.805 +516825,107.45,61.901 +516826,105.48,60.545 +516827,103.35,59.159 +516828,101.03,57.742 +516829,106.1,61.907 +516830,104.16,60.529 +516831,102.06,59.121 +516832,99.773,57.68 +516833,104.74,61.913 +516834,102.83,60.513 +516835,100.77,59.083 +516836,98.517,57.619 +516837,103.39,61.918 +516838,101.51,60.497 +516839,99.477,59.045 +516840,97.261,57.56 +516841,102.03,61.921 +516842,100.19,60.48 +516843,98.187,59.007 +516844,96.008,57.501 +516845,100.67,61.923 +516846,98.861,60.463 +516847,96.899,58.97 +516848,94.757,57.444 +516849,99.311,61.924 +516850,97.536,60.445 +516851,95.61,58.934 +516852,93.507,57.388 +516853,97.95,61.924 +516854,96.21,60.427 +516855,94.322,58.897 +516856,92.259,57.333 +516857,96.588,61.923 +516858,94.884,60.409 +516859,93.035,58.861 +516860,91.012,57.279 +516861,95.224,61.92 +516862,93.558,60.39 +516863,91.748,58.826 +516864,89.767,57.226 +516865,93.859,61.917 +516866,92.231,60.371 +516867,90.462,58.791 +516868,88.524,57.175 +516869,92.492,61.912 +516870,90.904,60.351 +516871,89.176,58.756 +516872,87.282,57.125 +516873,91.125,61.906 +516874,89.577,60.331 +516875,87.891,58.722 +516876,86.042,57.076 +516877,89.756,61.898 +516878,88.249,60.31 +516879,86.606,58.688 +516880,84.803,57.029 +516881,88.387,61.889 +516882,86.921,60.289 +516883,85.322,58.654 +516884,83.566,56.983 +516885,87.016,61.879 +516886,85.592,60.268 +516887,84.038,58.621 +516888,82.33,56.938 +516889,85.644,61.868 +516890,84.263,60.246 +516891,82.754,58.589 +516892,81.096,56.894 +516893,84.271,61.856 +516894,82.934,60.224 +516895,81.471,58.556 +516896,79.862,56.852 +516897,82.897,61.842 +516898,81.604,60.201 +516899,80.189,58.525 +516900,78.63,56.811 +516901,81.522,61.827 +516902,80.274,60.178 +516903,78.907,58.493 +516904,77.4,56.772 +516905,80.146,61.81 +516906,78.944,60.154 +516907,77.625,58.462 +516908,76.17,56.734 +516909,78.77,61.792 +516910,77.613,60.13 +516911,76.344,58.432 +516912,74.942,56.697 +516913,77.392,61.773 +516914,76.283,60.105 +516915,75.063,58.402 +516916,73.715,56.661 +516917,76.013,61.752 +516918,74.951,60.08 +516919,73.782,58.372 +516920,72.488,56.627 +516921,74.634,61.731 +516922,73.62,60.055 +516923,72.502,58.343 +516924,71.263,56.595 +516925,73.254,61.707 +516926,72.288,60.029 +516927,71.222,58.315 +516928,70.039,56.564 +516929,71.873,61.683 +516930,70.957,60.002 +516931,69.943,58.286 +516932,68.816,56.534 +516933,70.491,61.657 +516934,69.625,59.975 +516935,68.663,58.258 +516936,67.593,56.505 +516937,69.109,61.629 +516938,68.292,59.948 +516939,67.384,58.231 +516940,66.371,56.478 +516941,67.726,61.601 +516942,66.96,59.92 +516943,66.106,58.204 +516944,65.15,56.453 +516945,66.342,61.571 +516946,65.627,59.892 +516947,64.827,58.178 +516948,63.93,56.428 +516949,64.958,61.539 +516950,64.294,59.863 +516951,63.549,58.152 +516952,62.711,56.405 +516953,63.573,61.507 +516954,62.961,59.833 +516955,62.271,58.126 +516956,61.492,56.384 +516957,62.188,61.472 +516958,61.628,59.804 +516959,60.993,58.101 +516960,60.273,56.364 +516961,60.802,61.437 +516962,60.295,59.773 +516963,59.716,58.076 +516964,59.056,56.345 +516965,59.416,61.4 +516966,58.961,59.743 +516967,58.439,58.052 +516968,57.838,56.328 +516969,58.029,61.362 +516970,57.628,59.712 +516971,57.161,58.028 +516972,56.621,56.312 +516973,56.642,61.322 +516974,56.294,59.68 +516975,55.884,58.005 +516976,55.405,56.298 +516977,55.255,61.281 +516978,54.961,59.648 +516979,54.608,57.982 +516980,54.188,56.284 +516981,53.867,61.239 +516982,53.627,59.615 +516983,53.331,57.96 +516984,52.972,56.273 +516985,52.479,61.195 +516986,52.293,59.582 +516987,52.054,57.938 +516988,51.757,56.262 +516989,51.091,61.15 +516990,50.959,59.549 +516991,50.778,57.916 +516992,50.541,56.253 +516993,49.702,61.104 +516994,49.625,59.515 +516995,49.502,57.895 +516996,49.325,56.245 +516997,48.314,61.057 +516998,48.292,59.48 +516999,48.225,57.874 +517000,48.11,56.239 +517001,46.925,61.008 +517002,46.958,59.445 +517003,46.949,57.854 +517004,46.894,56.234 +517005,45.536,60.957 +517006,45.624,59.41 +517007,45.673,57.834 +517008,45.679,56.23 +517009,44.147,60.906 +517010,44.29,59.374 +517011,44.397,57.815 +517012,44.463,56.228 +517013,42.758,60.853 +517014,42.956,59.338 +517015,43.12,57.796 +517016,43.247,56.226 +517017,41.369,60.799 +517018,41.622,59.302 +517019,41.844,57.777 +517020,42.031,56.226 +517021,39.98,60.744 +517022,40.289,59.265 +517023,40.568,57.759 +517024,40.815,56.228 +517025,38.591,60.687 +517026,38.955,59.227 +517027,39.292,57.741 +517028,39.598,56.23 +517029,37.202,60.629 +517030,37.622,59.189 +517031,38.015,57.724 +517032,38.381,56.234 +517033,35.814,60.57 +517034,36.289,59.151 +517035,36.739,57.707 +517036,37.164,56.239 +517037,34.426,60.51 +517038,34.955,59.112 +517039,35.463,57.69 +517040,35.946,56.245 +517041,33.037,60.449 +517042,33.622,59.073 +517043,34.186,57.674 +517044,34.728,56.252 +517045,31.65,60.386 +517046,32.289,59.033 +517047,32.91,57.658 +517048,33.509,56.261 +517049,30.262,60.322 +517050,30.957,58.994 +517051,31.633,57.643 +517052,32.29,56.271 +517053,28.875,60.257 +517054,29.624,58.953 +517055,30.356,57.627 +517056,31.07,56.281 +517057,27.488,60.191 +517058,28.292,58.913 +517059,29.079,57.613 +517060,29.849,56.293 +517061,26.102,60.124 +517062,26.96,58.871 +517063,27.802,57.598 +517064,28.628,56.306 +517065,24.716,60.056 +517066,25.628,58.83 +517067,26.524,57.584 +517068,27.406,56.32 +517069,23.331,59.987 +517070,24.296,58.788 +517071,25.247,57.57 +517072,26.183,56.335 +517073,21.946,59.916 +517074,22.965,58.746 +517075,23.969,57.557 +517076,24.959,56.351 +517077,20.562,59.845 +517078,21.633,58.703 +517079,22.691,57.544 +517080,23.734,56.368 +517081,19.178,59.773 +517082,20.303,58.661 +517083,21.412,57.531 +517084,22.509,56.385 +517085,17.795,59.699 +517086,18.972,58.617 +517087,20.134,57.519 +517088,21.282,56.404 +517089,16.413,59.625 +517090,17.642,58.574 +517091,18.855,57.506 +517092,20.055,56.424 +517093,15.032,59.549 +517094,16.312,58.53 +517095,17.576,57.495 +517096,18.826,56.444 +517097,13.651,59.473 +517098,14.982,58.486 +517099,16.297,57.483 +517100,17.596,56.466 +517101,12.271,59.396 +517102,13.653,58.441 +517103,15.017,57.472 +517104,16.365,56.488 +517105,10.892,59.318 +517106,12.324,58.397 +517107,13.737,57.46 +517108,15.133,56.511 +517109,9.5142,59.239 +517110,10.996,58.352 +517111,12.457,57.45 +517112,13.9,56.535 +517113,8.1371,59.159 +517114,9.6675,58.306 +517115,11.176,57.439 +517116,12.666,56.56 +517117,6.7609,59.079 +517118,8.3397,58.261 +517119,9.8953,57.429 +517120,11.43,56.585 +517121,5.3857,58.998 +517122,7.0124,58.215 +517123,8.614,57.419 +517124,10.193,56.611 +517125,4.0116,58.916 +517126,5.6855,58.169 +517127,7.3323,57.409 +517128,8.9548,56.637 +517129,2.6386,58.833 +517130,4.3591,58.122 +517131,6.0502,57.399 +517132,7.7151,56.665 +517133,1.2667,58.749 +517134,3.033,58.076 +517135,4.7677,57.39 +517136,6.4741,56.693 +517137,359.9,58.665 +517138,1.7075,58.029 +517139,3.4848,57.38 +517140,5.2316,56.721 +517141,358.53,58.58 +517142,0.3824,57.982 +517143,2.2015,57.371 +517144,3.9878,56.75 +517145,357.16,58.495 +517146,359.06,57.935 +517147,0.91774,57.362 +517148,2.7424,56.779 +517149,355.79,58.409 +517150,357.73,57.887 +517151,359.63,57.353 +517152,1.4955,56.809 +517153,354.43,58.323 +517154,356.41,57.84 +517155,358.35,57.345 +517156,0.24717,56.84 +517157,353.06,58.236 +517158,355.09,57.792 +517159,357.06,57.336 +517160,359,56.871 +517161,351.7,58.148 +517162,353.76,57.744 +517163,355.78,57.328 +517164,357.75,56.902 +517165,350.34,58.06 +517166,352.44,57.696 +517167,354.49,57.32 +517168,356.49,56.933 +517169,348.98,57.972 +517170,351.12,57.648 +517171,353.21,57.311 +517172,355.24,56.965 +517173,347.62,57.883 +517174,349.8,57.599 +517175,351.92,57.303 +517176,353.98,56.998 +517177,346.26,57.794 +517178,348.48,57.551 +517179,350.63,57.295 +517180,352.72,57.03 +517181,344.9,57.704 +517182,347.16,57.502 +517183,349.34,57.288 +517184,351.46,57.063 +517185,343.55,57.614 +517186,345.84,57.454 +517187,348.05,57.28 +517188,350.2,57.095 +517189,342.2,57.524 +517190,344.52,57.405 +517191,346.77,57.272 +517192,348.94,57.129 +517193,340.85,57.434 +517194,343.2,57.356 +517195,345.48,57.264 +517196,347.68,57.162 +517197,339.5,57.344 +517198,341.89,57.307 +517199,344.19,57.257 +517200,346.41,57.195 +517201,338.15,57.253 +517202,340.57,57.258 +517203,342.9,57.249 +517204,345.14,57.228 +517205,336.81,57.162 +517206,339.25,57.209 +517207,341.6,57.241 +517208,343.87,57.262 +517209,335.46,57.071 +517210,337.94,57.16 +517211,340.31,57.234 +517212,342.6,57.295 +517213,334.12,56.98 +517214,336.62,57.111 +517215,339.02,57.226 +517216,341.33,57.328 +517217,332.78,56.889 +517218,335.31,57.062 +517219,337.73,57.218 +517220,340.05,57.362 +517221,331.44,56.798 +517222,334,57.013 +517223,336.43,57.211 +517224,338.77,57.395 +517225,330.1,56.707 +517226,332.68,56.964 +517227,335.14,57.203 +517228,337.49,57.428 +517229,328.77,56.616 +517230,331.37,56.915 +517231,333.85,57.195 +517232,336.21,57.461 +517233,327.44,56.525 +517234,330.06,56.866 +517235,332.55,57.187 +517236,334.93,57.493 +517237,326.11,56.434 +517238,328.75,56.817 +517239,331.26,57.18 +517240,333.65,57.526 +517241,324.78,56.344 +517242,327.44,56.768 +517243,329.96,57.172 +517244,332.36,57.558 +517245,323.45,56.253 +517246,326.13,56.719 +517247,328.66,57.163 +517248,331.07,57.59 +517249,322.13,56.163 +517250,324.82,56.67 +517251,327.36,57.155 +517252,329.78,57.622 +517253,320.8,56.073 +517254,323.51,56.621 +517255,326.07,57.147 +517256,328.49,57.653 +517257,319.48,55.984 +517258,322.2,56.573 +517259,324.77,57.138 +517260,327.2,57.684 +517261,318.16,55.895 +517262,320.9,56.524 +517263,323.47,57.13 +517264,325.9,57.714 +517265,316.85,55.806 +517266,319.59,56.476 +517267,322.17,57.121 +517268,324.61,57.744 +517269,315.53,55.717 +517270,318.29,56.428 +517271,320.87,57.112 +517272,323.31,57.774 +517273,314.22,55.629 +517274,316.98,56.38 +517275,319.57,57.103 +517276,322.01,57.803 +517277,312.91,55.542 +517278,315.68,56.332 +517279,318.27,57.094 +517280,320.7,57.832 +517281,311.6,55.455 +517282,314.37,56.284 +517283,316.96,57.084 +517284,319.4,57.86 +517285,310.3,55.368 +517286,313.07,56.236 +517287,315.66,57.075 +517288,318.09,57.887 +517289,308.99,55.282 +517290,311.77,56.189 +517291,314.36,57.065 +517292,316.79,57.914 +517293,307.69,55.197 +517294,310.47,56.142 +517295,313.05,57.055 +517296,315.48,57.94 +517297,306.39,55.112 +517298,309.17,56.095 +517299,311.75,57.045 +517300,314.17,57.965 +517301,305.09,55.028 +517302,307.87,56.048 +517303,310.44,57.034 +517304,312.85,57.99 +517305,303.8,54.945 +517306,306.57,56.001 +517307,309.14,57.023 +517308,311.54,58.014 +517309,302.51,54.862 +517310,305.27,55.955 +517311,307.83,57.012 +517312,310.22,58.037 +517313,301.22,54.78 +517314,303.98,55.909 +517315,306.53,57.001 +517316,308.9,58.06 +517317,299.93,54.699 +517318,302.68,55.863 +517319,305.22,56.989 +517320,307.58,58.082 +517321,298.64,54.619 +517322,301.38,55.818 +517323,303.91,56.977 +517324,306.26,58.102 +517325,297.36,54.54 +517326,300.09,55.772 +517327,302.6,56.965 +517328,304.94,58.122 +517329,296.07,54.461 +517330,298.79,55.728 +517331,301.29,56.953 +517332,303.61,58.142 +517333,294.79,54.384 +517334,297.5,55.683 +517335,299.98,56.94 +517336,302.28,58.16 +517337,293.52,54.307 +517338,296.21,55.639 +517339,298.67,56.927 +517340,300.96,58.177 +517341,292.24,54.232 +517342,294.91,55.594 +517343,297.36,56.914 +517344,299.62,58.193 +517345,290.97,54.157 +517346,293.62,55.551 +517347,296.05,56.9 +517348,298.29,58.208 +517349,289.7,54.083 +517350,292.33,55.507 +517351,294.74,56.886 +517352,296.96,58.223 +517353,288.43,54.011 +517354,291.04,55.464 +517355,293.43,56.871 +517356,295.62,58.236 +517357,287.16,53.939 +517358,289.75,55.422 +517359,292.11,56.856 +517360,294.29,58.248 +517361,285.9,53.869 +517362,288.46,55.379 +517363,290.8,56.841 +517364,292.95,58.259 +517365,284.63,53.8 +517366,287.17,55.337 +517367,289.49,56.826 +517368,291.61,58.269 +517369,283.37,53.732 +517370,285.89,55.296 +517371,288.17,56.81 +517372,290.27,58.278 +517373,282.12,53.665 +517374,284.6,55.254 +517375,286.86,56.793 +517376,288.92,58.286 +517377,280.86,53.599 +517378,283.31,55.214 +517379,285.54,56.776 +517380,287.58,58.293 +517381,279.61,53.535 +517382,282.03,55.173 +517383,284.22,56.759 +517384,286.23,58.298 +517385,278.35,53.471 +517386,280.74,55.133 +517387,282.91,56.742 +517388,284.89,58.302 +517389,277.1,53.409 +517390,279.46,55.093 +517391,281.59,56.724 +517392,283.54,58.305 +517393,275.85,53.349 +517394,278.18,55.054 +517395,280.27,56.705 +517396,282.19,58.307 +517397,274.61,53.289 +517398,276.89,55.015 +517399,278.96,56.686 +517400,280.84,58.308 +517401,273.36,53.231 +517402,275.61,54.977 +517403,277.64,56.667 +517404,279.48,58.307 +517405,272.12,53.175 +517406,274.33,54.939 +517407,276.32,56.648 +517408,278.13,58.305 +517409,270.88,53.119 +517410,273.05,54.902 +517411,275,56.627 +517412,276.77,58.302 +517413,269.64,53.066 +517414,271.77,54.865 +517415,273.68,56.607 +517416,275.42,58.297 +517417,268.4,53.013 +517418,270.49,54.828 +517419,272.36,56.586 +517420,274.06,58.291 +517421,267.17,52.962 +517422,269.21,54.792 +517423,271.04,56.564 +517424,272.7,58.284 +517425,265.93,52.912 +517426,267.93,54.756 +517427,269.72,56.542 +517428,271.34,58.275 +517429,264.7,52.864 +517430,266.65,54.721 +517431,268.4,56.52 +517432,269.98,58.265 +517433,263.47,52.817 +517434,265.37,54.686 +517435,267.08,56.497 +517436,268.62,58.254 +517437,262.24,52.772 +517438,264.09,54.652 +517439,265.75,56.473 +517440,267.25,58.241 +517441,261.01,52.728 +517442,262.82,54.618 +517443,264.43,56.45 +517444,265.89,58.227 +517445,259.78,52.686 +517446,261.54,54.585 +517447,263.11,56.425 +517448,264.52,58.212 +517449,258.56,52.645 +517450,260.26,54.552 +517451,261.79,56.4 +517452,263.15,58.195 +517453,257.34,52.606 +517454,258.99,54.52 +517455,260.46,56.375 +517456,261.79,58.177 +517457,256.11,52.568 +517458,257.71,54.488 +517459,259.14,56.349 +517460,260.42,58.157 +517461,254.89,52.531 +517462,256.44,54.456 +517463,257.81,56.323 +517464,259.05,58.136 +517465,253.67,52.497 +517466,255.16,54.425 +517467,256.49,56.296 +517468,257.68,58.113 +517469,252.46,52.463 +517470,253.89,54.395 +517471,255.17,56.269 +517472,256.31,58.089 +517473,251.24,52.432 +517474,252.62,54.365 +517475,253.84,56.241 +517476,254.93,58.064 +517477,250.02,52.402 +517478,251.34,54.336 +517479,252.52,56.213 +517480,253.56,58.037 +517481,248.81,52.373 +517482,250.07,54.307 +517483,251.19,56.184 +517484,252.19,58.008 +517485,247.59,52.346 +517486,248.8,54.278 +517487,249.86,56.155 +517488,250.81,57.979 +517489,246.38,52.32 +517490,247.53,54.25 +517491,248.54,56.125 +517492,249.44,57.947 +517493,245.17,52.296 +517494,246.26,54.223 +517495,247.21,56.095 +517496,248.06,57.915 +517497,243.96,52.274 +517498,244.98,54.196 +517499,245.89,56.064 +517500,246.68,57.88 +517501,242.74,52.253 +517502,243.71,54.17 +517503,244.56,56.032 +517504,245.3,57.845 +517505,241.53,52.234 +517506,242.44,54.144 +517507,243.23,56.001 +517508,243.93,57.808 +517509,240.33,52.216 +517510,241.17,54.118 +517511,241.91,55.968 +517512,242.55,57.769 +517513,239.12,52.199 +517514,239.9,54.093 +517515,240.58,55.936 +517516,241.17,57.729 +517517,237.91,52.185 +517518,238.63,54.069 +517519,239.25,55.902 +517520,239.79,57.688 +517521,236.7,52.171 +517522,237.36,54.045 +517523,237.93,55.869 +517524,238.41,57.645 +517525,235.49,52.16 +517526,236.09,54.022 +517527,236.6,55.834 +517528,237.03,57.6 +517529,234.29,52.149 +517530,234.82,53.999 +517531,235.27,55.8 +517532,235.65,57.554 +517533,233.08,52.14 +517534,233.55,53.976 +517535,233.95,55.764 +517536,234.27,57.507 +517537,231.87,52.133 +517538,232.29,53.954 +517539,232.62,55.729 +517540,232.88,57.459 +517541,230.67,52.127 +517542,231.02,53.933 +517543,231.29,55.692 +517544,231.5,57.408 +517545,229.46,52.123 +517546,229.75,53.912 +517547,229.96,55.656 +517548,230.12,57.357 +517549,228.26,52.12 +517550,228.48,53.891 +517551,228.64,55.618 +517552,228.74,57.304 +517553,227.05,52.118 +517554,227.21,53.871 +517555,227.31,55.581 +517556,227.36,57.25 +517557,225.85,52.118 +517558,225.94,53.851 +517559,225.98,55.543 +517560,225.97,57.194 +517561,224.64,52.12 +517562,224.67,53.832 +517563,224.65,55.504 +517564,224.59,57.137 +517565,223.44,52.122 +517566,223.41,53.813 +517567,223.33,55.465 +517568,223.21,57.079 +517569,222.23,52.126 +517570,222.14,53.795 +517571,222,55.426 +517572,221.83,57.019 +517573,221.02,52.132 +517574,220.87,53.777 +517575,220.67,55.386 +517576,220.44,56.958 +517577,219.82,52.138 +517578,219.6,53.76 +517579,219.35,55.345 +517580,219.06,56.895 +517581,218.61,52.146 +517582,218.33,53.743 +517583,218.02,55.305 +517584,217.68,56.832 +517585,217.4,52.156 +517586,217.06,53.726 +517587,216.69,55.263 +517588,216.3,56.767 +517589,216.2,52.166 +517590,215.79,53.71 +517591,215.37,55.222 +517592,214.91,56.7 +517593,214.99,52.178 +517594,214.53,53.695 +517595,214.04,55.179 +517596,213.53,56.633 +517597,213.78,52.191 +517598,213.26,53.679 +517599,212.71,55.137 +517600,212.15,56.564 +517601,212.57,52.205 +517602,211.99,53.664 +517603,211.39,55.094 +517604,210.77,56.494 +517605,211.36,52.221 +517606,210.72,53.65 +517607,210.06,55.051 +517608,209.39,56.423 +517609,210.15,52.237 +517610,209.45,53.636 +517611,208.74,55.007 +517612,208.01,56.35 +517613,208.94,52.255 +517614,208.18,53.622 +517615,207.41,54.963 +517616,206.62,56.277 +517617,207.73,52.274 +517618,206.91,53.609 +517619,206.08,54.918 +517620,205.24,56.202 +517621,206.52,52.294 +517622,205.64,53.596 +517623,204.76,54.873 +517624,203.87,56.126 +517625,205.31,52.315 +517626,204.37,53.583 +517627,203.43,54.828 +517628,202.49,56.049 +517629,204.09,52.337 +517630,203.1,53.571 +517631,202.11,54.783 +517632,201.11,55.971 +517633,202.88,52.36 +517634,201.83,53.559 +517635,200.79,54.737 +517636,199.73,55.892 +517637,201.66,52.384 +517638,200.56,53.547 +517639,199.46,54.69 +517640,198.35,55.812 +517641,200.44,52.409 +517642,199.29,53.536 +517643,198.14,54.644 +517644,196.98,55.731 +517645,199.23,52.435 +517646,198.02,53.525 +517647,196.81,54.597 +517648,195.6,55.648 +517649,198.01,52.461 +517650,196.75,53.514 +517651,195.49,54.549 +517652,194.22,55.565 +517653,196.79,52.489 +517654,195.48,53.504 +517655,194.17,54.502 +517656,192.85,55.481 +517657,195.57,52.517 +517658,194.21,53.494 +517659,192.85,54.454 +517660,191.48,55.396 +517661,194.34,52.547 +517662,192.94,53.484 +517663,191.52,54.406 +517664,190.1,55.31 +517665,193.12,52.577 +517666,191.67,53.475 +517667,190.2,54.357 +517668,188.73,55.223 +517669,191.89,52.607 +517670,190.39,53.465 +517671,188.88,54.309 +517672,187.36,55.136 +517673,190.67,52.639 +517674,189.12,53.456 +517675,187.56,54.26 +517676,185.99,55.047 +517677,189.44,52.671 +517678,187.85,53.447 +517679,186.24,54.21 +517680,184.62,54.958 +517681,188.21,52.704 +517682,186.57,53.439 +517683,184.92,54.161 +517684,183.25,54.868 +517685,186.98,52.737 +517686,185.3,53.43 +517687,183.6,54.111 +517688,181.89,54.778 +517689,185.75,52.771 +517690,184.02,53.422 +517691,182.28,54.061 +517692,180.52,54.686 +517693,184.51,52.805 +517694,182.75,53.414 +517695,180.96,54.011 +517696,179.16,54.594 +517697,183.28,52.84 +517698,181.47,53.406 +517699,179.65,53.961 +517700,177.79,54.501 +517701,182.04,52.876 +517702,180.2,53.399 +517703,178.33,53.91 +517704,176.43,54.408 +517705,180.8,52.912 +517706,178.92,53.391 +517707,177.01,53.86 +517708,175.07,54.314 +517709,179.57,52.948 +517710,177.65,53.384 +517711,175.7,53.809 +517712,173.71,54.22 +517713,178.32,52.984 +517714,176.37,53.377 +517715,174.38,53.758 +517716,172.35,54.125 +517717,177.08,53.021 +517718,175.09,53.37 +517719,173.07,53.707 +517720,170.99,54.03 +517721,175.84,53.059 +517722,173.81,53.363 +517723,171.75,53.655 +517724,169.64,53.934 +517725,174.59,53.096 +517726,172.54,53.356 +517727,170.44,53.604 +517728,168.28,53.838 +517729,173.34,53.134 +517730,171.26,53.349 +517731,169.12,53.552 +517732,166.93,53.741 +517733,172.09,53.172 +517734,169.98,53.343 +517735,167.81,53.501 +517736,165.58,53.644 +517737,170.84,53.21 +517738,168.7,53.336 +517739,166.5,53.449 +517740,164.23,53.547 +517741,169.59,53.248 +517742,167.42,53.329 +517743,165.19,53.397 +517744,162.88,53.45 +517745,168.33,53.287 +517746,166.14,53.323 +517747,163.87,53.346 +517748,161.54,53.352 +517749,167.08,53.325 +517750,164.86,53.316 +517751,162.56,53.294 +517752,160.19,53.254 +517753,165.82,53.363 +517754,163.57,53.31 +517755,161.25,53.242 +517756,158.85,53.157 +517757,164.56,53.402 +517758,162.29,53.304 +517759,159.95,53.19 +517760,157.51,53.058 +517761,163.3,53.44 +517762,161.01,53.297 +517763,158.64,53.138 +517764,156.17,52.96 +517765,162.03,53.478 +517766,159.73,53.291 +517767,157.33,53.086 +517768,154.83,52.862 +517769,160.77,53.517 +517770,158.44,53.284 +517771,156.02,53.034 +517772,153.5,52.764 +517773,159.5,53.555 +517774,157.16,53.278 +517775,154.71,52.982 +517776,152.16,52.666 +517777,158.23,53.592 +517778,155.87,53.271 +517779,153.41,52.931 +517780,150.83,52.568 +517781,156.96,53.63 +517782,154.59,53.265 +517783,152.1,52.879 +517784,149.5,52.47 +517785,155.69,53.667 +517786,153.3,53.258 +517787,150.8,52.827 +517788,148.17,52.372 +517789,154.41,53.704 +517790,152.01,53.251 +517791,149.5,52.775 +517792,146.84,52.274 +517793,153.14,53.741 +517794,150.72,53.244 +517795,148.19,52.724 +517796,145.52,52.177 +517797,151.86,53.778 +517798,149.44,53.237 +517799,146.89,52.672 +517800,144.2,52.079 +517801,150.58,53.814 +517802,148.15,53.23 +517803,145.59,52.621 +517804,142.88,51.982 +517805,149.3,53.849 +517806,146.86,53.223 +517807,144.29,52.57 +517808,141.56,51.886 +517809,148.01,53.884 +517810,145.57,53.216 +517811,142.99,52.519 +517812,140.24,51.79 +517813,146.73,53.919 +517814,144.28,53.208 +517815,141.69,52.468 +517816,138.93,51.694 +517817,145.44,53.953 +517818,142.99,53.2 +517819,140.39,52.417 +517820,137.62,51.599 +517821,144.15,53.987 +517822,141.7,53.193 +517823,139.09,52.366 +517824,136.31,51.504 +517825,142.86,54.02 +517826,140.4,53.185 +517827,137.79,52.316 +517828,135,51.409 +517829,141.56,54.052 +517830,139.11,53.176 +517831,136.5,52.266 +517832,133.69,51.316 +517833,140.27,54.084 +517834,137.82,53.168 +517835,135.2,52.216 +517836,132.39,51.223 +517837,138.97,54.115 +517838,136.52,53.159 +517839,133.91,52.166 +517840,131.09,51.13 +517841,137.67,54.145 +517842,135.23,53.15 +517843,132.61,52.116 +517844,129.79,51.038 +517845,136.37,54.175 +517846,133.94,53.141 +517847,131.32,52.067 +517848,128.49,50.947 +517849,135.07,54.204 +517850,132.64,53.132 +517851,130.03,52.018 +517852,127.2,50.857 +517853,133.77,54.232 +517854,131.34,53.122 +517855,128.74,51.969 +517856,125.91,50.767 +517857,132.46,54.259 +517858,130.05,53.112 +517859,127.44,51.921 +517860,124.62,50.678 +517861,131.15,54.285 +517862,128.75,53.102 +517863,126.15,51.873 +517864,123.33,50.59 +517865,129.85,54.311 +517866,127.45,53.092 +517867,124.86,51.825 +517868,122.04,50.503 +517869,128.53,54.335 +517870,126.15,53.081 +517871,123.58,51.777 +517872,120.76,50.417 +517873,127.22,54.359 +517874,124.85,53.07 +517875,122.29,51.73 +517876,119.48,50.332 +517877,125.91,54.382 +517878,123.55,53.058 +517879,121,51.683 +517880,118.2,50.248 +517881,124.59,54.403 +517882,122.25,53.047 +517883,119.71,51.636 +517884,116.92,50.164 +517885,123.27,54.424 +517886,120.95,53.034 +517887,118.43,51.59 +517888,115.65,50.082 +517889,121.95,54.444 +517890,119.65,53.022 +517891,117.14,51.544 +517892,114.38,50.001 +517893,120.63,54.462 +517894,118.35,53.009 +517895,115.86,51.498 +517896,113.11,49.921 +517897,119.31,54.48 +517898,117.05,52.996 +517899,114.57,51.453 +517900,111.84,49.843 +517901,117.99,54.496 +517902,115.74,52.983 +517903,113.29,51.408 +517904,110.58,49.765 +517905,116.66,54.511 +517906,114.44,52.969 +517907,112.01,51.364 +517908,109.31,49.689 +517909,115.33,54.526 +517910,113.14,52.954 +517911,110.73,51.32 +517912,108.05,49.613 +517913,114,54.538 +517914,111.83,52.94 +517915,109.45,51.277 +517916,106.79,49.54 +517917,112.67,54.55 +517918,110.53,52.925 +517919,108.17,51.233 +517920,105.54,49.467 +517921,111.34,54.561 +517922,109.22,52.909 +517923,106.89,51.191 +517924,104.28,49.396 +517925,110.01,54.57 +517926,107.92,52.893 +517927,105.61,51.148 +517928,103.03,49.326 +517929,108.67,54.578 +517930,106.61,52.877 +517931,104.33,51.107 +517932,101.78,49.257 +517933,107.33,54.585 +517934,105.3,52.86 +517935,103.05,51.065 +517936,100.54,49.19 +517937,106,54.59 +517938,103.99,52.843 +517939,101.78,51.024 +517940,99.291,49.125 +517941,104.66,54.594 +517942,102.69,52.825 +517943,100.5,50.984 +517944,98.048,49.06 +517945,103.32,54.597 +517946,101.38,52.807 +517947,99.227,50.944 +517948,96.807,48.998 +517949,101.97,54.598 +517950,100.07,52.789 +517951,97.952,50.905 +517952,95.568,48.937 +517953,100.63,54.598 +517954,98.76,52.769 +517955,96.678,50.866 +517956,94.331,48.877 +517957,99.286,54.597 +517958,97.451,52.75 +517959,95.405,50.827 +517960,93.096,48.819 +517961,97.94,54.594 +517962,96.14,52.73 +517963,94.133,50.789 +517964,91.863,48.762 +517965,96.593,54.59 +517966,94.83,52.71 +517967,92.861,50.752 +517968,90.632,48.707 +517969,95.244,54.584 +517970,93.519,52.689 +517971,91.589,50.715 +517972,89.403,48.653 +517973,93.894,54.577 +517974,92.207,52.667 +517975,90.319,50.679 +517976,88.175,48.602 +517977,92.543,54.569 +517978,90.896,52.645 +517979,89.048,50.643 +517980,86.95,48.551 +517981,91.191,54.559 +517982,89.584,52.623 +517983,87.779,50.608 +517984,85.726,48.503 +517985,89.838,54.547 +517986,88.271,52.6 +517987,86.51,50.573 +517988,84.504,48.456 +517989,88.484,54.535 +517990,86.958,52.576 +517991,85.241,50.539 +517992,83.284,48.411 +517993,87.128,54.52 +517994,85.645,52.552 +517995,83.973,50.505 +517996,82.065,48.367 +517997,85.772,54.504 +517998,84.331,52.528 +517999,82.706,50.472 +518000,80.848,48.325 +518001,84.415,54.487 +518002,83.018,52.503 +518003,81.439,50.439 +518004,79.633,48.285 +518005,83.056,54.468 +518006,81.703,52.477 +518007,80.173,50.407 +518008,78.419,48.247 +518009,81.697,54.447 +518010,80.389,52.451 +518011,78.907,50.376 +518012,77.206,48.21 +518013,80.337,54.425 +518014,79.074,52.425 +518015,77.641,50.345 +518016,75.995,48.175 +518017,78.976,54.402 +518018,77.759,52.398 +518019,76.376,50.315 +518020,74.785,48.142 +518021,77.614,54.376 +518022,76.444,52.37 +518023,75.112,50.285 +518024,73.577,48.11 +518025,76.251,54.35 +518026,75.128,52.342 +518027,73.848,50.256 +518028,72.37,48.08 +518029,74.887,54.321 +518030,73.813,52.313 +518031,72.584,50.227 +518032,71.164,48.052 +518033,73.523,54.292 +518034,72.497,52.284 +518035,71.321,50.199 +518036,69.959,48.026 +518037,72.158,54.26 +518038,71.18,52.255 +518039,70.058,50.171 +518040,68.756,48.001 +518041,70.792,54.227 +518042,69.864,52.224 +518043,68.796,50.144 +518044,67.553,47.978 +518045,69.426,54.193 +518046,68.547,52.194 +518047,67.534,50.118 +518048,66.351,47.957 +518049,68.059,54.157 +518050,67.231,52.162 +518051,66.272,50.092 +518052,65.151,47.938 +518053,66.691,54.119 +518054,65.914,52.13 +518055,65.01,50.067 +518056,63.951,47.92 +518057,65.323,54.08 +518058,64.597,52.098 +518059,63.749,50.042 +518060,62.752,47.904 +518061,63.954,54.039 +518062,63.28,52.065 +518063,62.488,50.018 +518064,61.554,47.89 +518065,62.585,53.997 +518066,61.962,52.032 +518067,61.228,49.995 +518068,60.356,47.878 +518069,61.215,53.953 +518070,60.645,51.998 +518071,59.968,49.972 +518072,59.159,47.867 +518073,59.845,53.908 +518074,59.327,51.963 +518075,58.708,49.949 +518076,57.963,47.858 +518077,58.474,53.861 +518078,58.01,51.929 +518079,57.448,49.927 +518080,56.767,47.85 +518081,57.103,53.812 +518082,56.692,51.893 +518083,56.188,49.906 +518084,55.572,47.845 +518085,55.732,53.762 +518086,55.374,51.857 +518087,54.929,49.885 +518088,54.377,47.841 +518089,54.361,53.711 +518090,54.056,51.821 +518091,53.67,49.865 +518092,53.183,47.838 +518093,52.989,53.658 +518094,52.739,51.784 +518095,52.411,49.846 +518096,51.989,47.838 +518097,51.617,53.603 +518098,51.421,51.746 +518099,51.152,49.826 +518100,50.795,47.838 +518101,50.245,53.547 +518102,50.103,51.708 +518103,49.893,49.808 +518104,49.601,47.841 +518105,48.872,53.489 +518106,48.785,51.669 +518107,48.634,49.79 +518108,48.407,47.845 +518109,47.5,53.43 +518110,47.468,51.63 +518111,47.376,49.772 +518112,47.213,47.851 +518113,46.128,53.37 +518114,46.15,51.591 +518115,46.117,49.755 +518116,46.02,47.858 +518117,44.755,53.308 +518118,44.832,51.551 +518119,44.859,49.739 +518120,44.826,47.867 +518121,43.382,53.244 +518122,43.515,51.511 +518123,43.601,49.723 +518124,43.632,47.877 +518125,42.01,53.18 +518126,42.197,51.47 +518127,42.342,49.707 +518128,42.438,47.889 +518129,40.637,53.113 +518130,40.88,51.428 +518131,41.084,49.692 +518132,41.244,47.902 +518133,39.265,53.046 +518134,39.563,51.386 +518135,39.826,49.678 +518136,40.049,47.917 +518137,37.893,52.977 +518138,38.246,51.344 +518139,38.568,49.664 +518140,38.854,47.933 +518141,36.521,52.906 +518142,36.929,51.301 +518143,37.309,49.65 +518144,37.659,47.95 +518145,35.149,52.835 +518146,35.612,51.258 +518147,36.051,49.637 +518148,36.463,47.969 +518149,33.777,52.762 +518150,34.295,51.215 +518151,34.793,49.625 +518152,35.267,47.989 +518153,32.406,52.687 +518154,32.979,51.171 +518155,33.534,49.612 +518156,34.07,48.011 +518157,31.035,52.611 +518158,31.662,51.126 +518159,32.276,49.601 +518160,32.872,48.034 +518161,29.665,52.535 +518162,30.346,51.081 +518163,31.017,49.589 +518164,31.674,48.058 +518165,28.294,52.456 +518166,29.031,51.036 +518167,29.758,49.579 +518168,30.475,48.083 +518169,26.925,52.377 +518170,27.715,50.99 +518171,28.499,49.568 +518172,29.275,48.11 +518173,25.555,52.296 +518174,26.4,50.944 +518175,27.24,49.558 +518176,28.075,48.138 +518177,24.186,52.214 +518178,25.085,50.898 +518179,25.981,49.549 +518180,26.873,48.167 +518181,22.818,52.131 +518182,23.77,50.851 +518183,24.721,49.539 +518184,25.671,48.197 +518185,21.45,52.047 +518186,22.456,50.804 +518187,23.462,49.531 +518188,24.468,48.228 +518189,20.083,51.962 +518190,21.142,50.756 +518191,22.202,49.522 +518192,23.263,48.26 +518193,18.717,51.876 +518194,19.828,50.708 +518195,20.942,49.514 +518196,22.058,48.293 +518197,17.351,51.788 +518198,18.515,50.66 +518199,19.681,49.506 +518200,20.852,48.327 +518201,15.986,51.7 +518202,17.202,50.612 +518203,18.421,49.499 +518204,19.644,48.362 +518205,14.622,51.61 +518206,15.889,50.563 +518207,17.16,49.492 +518208,18.435,48.398 +518209,13.259,51.52 +518210,14.577,50.514 +518211,15.898,49.485 +518212,17.225,48.435 +518213,11.896,51.429 +518214,13.265,50.464 +518215,14.637,49.479 +518216,16.014,48.473 +518217,10.535,51.336 +518218,11.953,50.415 +518219,13.375,49.473 +518220,14.801,48.512 +518221,9.1739,51.243 +518222,10.642,50.365 +518223,12.113,49.467 +518224,13.587,48.551 +518225,7.8142,51.149 +518226,9.3317,50.314 +518227,10.851,49.461 +518228,12.372,48.591 +518229,6.4554,51.054 +518230,8.0215,50.264 +518231,9.5877,49.456 +518232,11.155,48.632 +518233,5.0977,50.959 +518234,6.7119,50.213 +518235,8.3245,49.451 +518236,9.9369,48.674 +518237,3.741,50.862 +518238,5.4027,50.162 +518239,7.061,49.446 +518240,8.7173,48.716 +518241,2.3855,50.765 +518242,4.0939,50.111 +518243,5.7971,49.442 +518244,7.4961,48.758 +518245,1.0311,50.667 +518246,2.7857,50.06 +518247,4.5327,49.438 +518248,6.2735,48.802 +518249,359.68,50.568 +518250,1.478,50.008 +518251,3.268,49.433 +518252,5.0492,48.846 +518253,358.33,50.469 +518254,0.17085,49.957 +518255,2.0028,49.43 +518256,3.8234,48.89 +518257,356.98,50.369 +518258,358.86,49.905 +518259,0.73725,49.426 +518260,2.596,48.935 +518261,355.63,50.269 +518262,357.56,49.853 +518263,359.47,49.422 +518264,1.367,48.98 +518265,354.28,50.168 +518266,356.25,49.8 +518267,358.2,49.419 +518268,0.13625,49.025 +518269,352.93,50.067 +518270,354.95,49.748 +518271,356.94,49.416 +518272,358.9,49.071 +518273,351.59,49.965 +518274,353.64,49.696 +518275,355.67,49.413 +518276,357.67,49.117 +518277,350.24,49.863 +518278,352.34,49.643 +518279,354.4,49.41 +518280,356.43,49.164 +518281,348.9,49.76 +518282,351.04,49.591 +518283,353.13,49.407 +518284,355.2,49.21 +518285,347.56,49.657 +518286,349.73,49.538 +518287,351.87,49.404 +518288,353.96,49.257 +518289,346.22,49.554 +518290,348.43,49.485 +518291,350.6,49.401 +518292,352.72,49.304 +518293,344.88,49.45 +518294,347.13,49.432 +518295,349.33,49.399 +518296,351.47,49.351 +518297,343.54,49.346 +518298,345.83,49.379 +518299,348.06,49.396 +518300,350.23,49.399 +518301,342.21,49.242 +518302,344.53,49.327 +518303,346.78,49.394 +518304,348.98,49.446 +518305,340.88,49.138 +518306,343.23,49.274 +518307,345.51,49.391 +518308,347.73,49.493 +518309,339.55,49.034 +518310,341.93,49.221 +518311,344.24,49.389 +518312,346.48,49.54 +518313,338.22,48.93 +518314,340.63,49.168 +518315,342.97,49.386 +518316,345.23,49.587 +518317,336.89,48.825 +518318,339.34,49.115 +518319,341.7,49.384 +518320,343.98,49.634 +518321,335.56,48.721 +518322,338.04,49.062 +518323,340.42,49.381 +518324,342.72,49.681 +518325,334.24,48.617 +518326,336.74,49.009 +518327,339.15,49.379 +518328,341.46,49.727 +518329,332.92,48.512 +518330,335.45,48.957 +518331,337.87,49.376 +518332,340.21,49.773 +518333,331.6,48.408 +518334,334.15,48.904 +518335,336.6,49.374 +518336,338.94,49.82 +518337,330.28,48.305 +518338,332.86,48.852 +518339,335.32,49.371 +518340,337.68,49.865 +518341,328.96,48.201 +518342,331.57,48.799 +518343,334.05,49.368 +518344,336.42,49.911 +518345,327.65,48.097 +518346,330.28,48.747 +518347,332.77,49.365 +518348,335.15,49.956 +518349,326.34,47.994 +518350,328.98,48.695 +518351,331.49,49.362 +518352,333.88,50 +518353,325.02,47.892 +518354,327.69,48.643 +518355,330.21,49.359 +518356,332.61,50.044 +518357,323.72,47.789 +518358,326.4,48.591 +518359,328.94,49.356 +518360,331.34,50.088 +518361,322.41,47.687 +518362,325.11,48.54 +518363,327.66,49.353 +518364,330.06,50.131 +518365,321.11,47.586 +518366,323.82,48.488 +518367,326.38,49.349 +518368,328.79,50.174 +518369,319.8,47.485 +518370,322.54,48.437 +518371,325.1,49.346 +518372,327.51,50.216 +518373,318.5,47.385 +518374,321.25,48.386 +518375,323.82,49.342 +518376,326.23,50.257 +518377,317.21,47.285 +518378,319.96,48.335 +518379,322.53,49.338 +518380,324.95,50.298 +518381,315.91,47.186 +518382,318.68,48.285 +518383,321.25,49.333 +518384,323.66,50.338 +518385,314.62,47.087 +518386,317.39,48.234 +518387,319.97,49.329 +518388,322.38,50.377 +518389,313.33,46.989 +518390,316.11,48.184 +518391,318.69,49.324 +518392,321.09,50.416 +518393,312.04,46.892 +518394,314.83,48.135 +518395,317.4,49.319 +518396,319.8,50.453 +518397,310.75,46.796 +518398,313.54,48.085 +518399,316.12,49.314 +518400,318.51,50.49 +518401,309.47,46.701 +518402,312.26,48.036 +518403,314.83,49.309 +518404,317.22,50.526 +518405,308.19,46.606 +518406,310.98,47.987 +518407,313.55,49.303 +518408,315.92,50.561 +518409,306.91,46.513 +518410,309.7,47.939 +518411,312.26,49.297 +518412,314.63,50.596 +518413,305.63,46.42 +518414,308.42,47.891 +518415,310.97,49.291 +518416,313.33,50.629 +518417,304.35,46.329 +518418,307.14,47.843 +518419,309.69,49.284 +518420,312.03,50.661 +518421,303.08,46.238 +518422,305.87,47.796 +518423,308.4,49.277 +518424,310.73,50.693 +518425,301.81,46.149 +518426,304.59,47.749 +518427,307.11,49.27 +518428,309.42,50.723 +518429,300.54,46.061 +518430,303.31,47.702 +518431,305.82,49.262 +518432,308.12,50.752 +518433,299.28,45.974 +518434,302.04,47.656 +518435,304.53,49.254 +518436,306.81,50.78 +518437,298.01,45.888 +518438,300.76,47.61 +518439,303.24,49.246 +518440,305.51,50.807 +518441,296.75,45.803 +518442,299.49,47.565 +518443,301.95,49.237 +518444,304.2,50.833 +518445,295.49,45.72 +518446,298.22,47.52 +518447,300.66,49.228 +518448,302.88,50.858 +518449,294.24,45.638 +518450,296.94,47.475 +518451,299.37,49.219 +518452,301.57,50.882 +518453,292.98,45.557 +518454,295.67,47.431 +518455,298.08,49.209 +518456,300.26,50.904 +518457,291.73,45.478 +518458,294.4,47.388 +518459,296.78,49.199 +518460,298.94,50.925 +518461,290.48,45.4 +518462,293.13,47.345 +518463,295.49,49.188 +518464,297.62,50.945 +518465,289.23,45.323 +518466,291.86,47.302 +518467,294.2,49.177 +518468,296.3,50.964 +518469,287.99,45.248 +518470,290.59,47.26 +518471,292.9,49.166 +518472,294.98,50.981 +518473,286.75,45.175 +518474,289.33,47.218 +518475,291.61,49.154 +518476,293.66,50.997 +518477,285.51,45.103 +518478,288.06,47.177 +518479,290.31,49.141 +518480,292.34,51.011 +518481,284.27,45.033 +518482,286.79,47.137 +518483,289.02,49.129 +518484,291.01,51.025 +518485,283.03,44.964 +518486,285.53,47.097 +518487,287.72,49.115 +518488,289.69,51.036 +518489,281.8,44.897 +518490,284.26,47.057 +518491,286.43,49.102 +518492,288.36,51.047 +518493,280.57,44.831 +518494,283,47.019 +518495,285.13,49.088 +518496,287.03,51.056 +518497,279.34,44.767 +518498,281.73,46.98 +518499,283.83,49.073 +518500,285.7,51.063 +518501,278.11,44.705 +518502,280.47,46.942 +518503,282.53,49.058 +518504,284.37,51.069 +518505,276.88,44.645 +518506,279.21,46.905 +518507,281.24,49.042 +518508,283.03,51.074 +518509,275.66,44.587 +518510,277.95,46.869 +518511,279.94,49.026 +518512,281.7,51.077 +518513,274.44,44.53 +518514,276.69,46.833 +518515,278.64,49.009 +518516,280.36,51.079 +518517,273.22,44.475 +518518,275.43,46.797 +518519,277.34,48.992 +518520,279.03,51.079 +518521,272,44.422 +518522,274.17,46.762 +518523,276.04,48.975 +518524,277.69,51.077 +518525,270.79,44.37 +518526,272.91,46.728 +518527,274.74,48.956 +518528,276.35,51.074 +518529,269.57,44.321 +518530,271.65,46.695 +518531,273.44,48.938 +518532,275.01,51.069 +518533,268.36,44.273 +518534,270.39,46.662 +518535,272.14,48.918 +518536,273.67,51.063 +518537,267.15,44.228 +518538,269.13,46.629 +518539,270.84,48.899 +518540,272.33,51.056 +518541,265.94,44.184 +518542,267.88,46.598 +518543,269.53,48.878 +518544,270.99,51.046 +518545,264.74,44.142 +518546,266.62,46.567 +518547,268.23,48.858 +518548,269.64,51.035 +518549,263.53,44.102 +518550,265.36,46.536 +518551,266.93,48.836 +518552,268.3,51.023 +518553,262.33,44.064 +518554,264.11,46.506 +518555,265.63,48.814 +518556,266.95,51.008 +518557,261.13,44.028 +518558,262.85,46.477 +518559,264.33,48.792 +518560,265.6,50.993 +518561,259.93,43.994 +518562,261.6,46.449 +518563,263.02,48.769 +518564,264.26,50.975 +518565,258.73,43.962 +518566,260.35,46.421 +518567,261.72,48.745 +518568,262.91,50.956 +518569,257.53,43.932 +518570,259.09,46.393 +518571,260.42,48.721 +518572,261.56,50.935 +518573,256.33,43.904 +518574,257.84,46.367 +518575,259.11,48.697 +518576,260.21,50.913 +518577,255.14,43.878 +518578,256.59,46.341 +518579,257.81,48.671 +518580,258.86,50.889 +518581,253.95,43.854 +518582,255.34,46.316 +518583,256.51,48.646 +518584,257.51,50.863 +518585,252.75,43.831 +518586,254.08,46.291 +518587,255.2,48.619 +518588,256.15,50.835 +518589,251.56,43.811 +518590,252.83,46.267 +518591,253.9,48.592 +518592,254.8,50.806 +518593,250.37,43.793 +518594,251.58,46.244 +518595,252.59,48.565 +518596,253.45,50.775 +518597,249.18,43.777 +518598,250.33,46.221 +518599,251.29,48.537 +518600,252.09,50.743 +518601,248,43.763 +518602,249.08,46.199 +518603,249.98,48.509 +518604,250.74,50.709 +518605,246.81,43.751 +518606,247.83,46.178 +518607,248.68,48.479 +518608,249.38,50.673 +518609,245.62,43.74 +518610,246.58,46.157 +518611,247.37,48.45 +518612,248.03,50.635 +518613,244.44,43.732 +518614,245.33,46.137 +518615,246.07,48.42 +518616,246.67,50.596 +518617,243.25,43.726 +518618,244.08,46.118 +518619,244.76,48.389 +518620,245.32,50.556 +518621,242.07,43.721 +518622,242.84,46.099 +518623,243.46,48.358 +518624,243.96,50.513 +518625,240.88,43.719 +518626,241.59,46.081 +518627,242.15,48.326 +518628,242.6,50.469 +518629,239.7,43.718 +518630,240.34,46.063 +518631,240.85,48.293 +518632,241.25,50.423 +518633,238.52,43.72 +518634,239.09,46.047 +518635,239.54,48.26 +518636,239.89,50.376 +518637,237.33,43.723 +518638,237.84,46.03 +518639,238.23,48.227 +518640,238.53,50.327 +518641,236.15,43.728 +518642,236.6,46.015 +518643,236.93,48.193 +518644,237.17,50.276 +518645,234.97,43.735 +518646,235.35,46 +518647,235.62,48.159 +518648,235.81,50.224 +518649,233.79,43.744 +518650,234.1,45.986 +518651,234.32,48.123 +518652,234.46,50.17 +518653,232.61,43.755 +518654,232.85,45.972 +518655,233.01,48.088 +518656,233.1,50.114 +518657,231.42,43.767 +518658,231.61,45.959 +518659,231.71,48.052 +518660,231.74,50.057 +518661,230.24,43.781 +518662,230.36,45.946 +518663,230.4,48.015 +518664,230.38,49.999 +518665,229.06,43.797 +518666,229.11,45.935 +518667,229.1,47.978 +518668,229.02,49.938 +518669,227.88,43.815 +518670,227.87,45.923 +518671,227.79,47.941 +518672,227.66,49.877 +518673,226.7,43.835 +518674,226.62,45.913 +518675,226.49,47.902 +518676,226.31,49.813 +518677,225.51,43.856 +518678,225.37,45.903 +518679,225.18,47.864 +518680,224.95,49.748 +518681,224.33,43.878 +518682,224.13,45.893 +518683,223.88,47.825 +518684,223.59,49.682 +518685,223.15,43.903 +518686,222.88,45.884 +518687,222.57,47.785 +518688,222.23,49.614 +518689,221.96,43.929 +518690,221.63,45.876 +518691,221.27,47.745 +518692,220.88,49.545 +518693,220.78,43.957 +518694,220.39,45.868 +518695,219.96,47.705 +518696,219.52,49.474 +518697,219.59,43.986 +518698,219.14,45.86 +518699,218.66,47.664 +518700,218.16,49.402 +518701,218.41,44.016 +518702,217.89,45.854 +518703,217.36,47.622 +518704,216.81,49.328 +518705,217.22,44.048 +518706,216.64,45.847 +518707,216.05,47.581 +518708,215.45,49.253 +518709,216.04,44.082 +518710,215.4,45.842 +518711,214.75,47.538 +518712,214.09,49.177 +518713,214.85,44.117 +518714,214.15,45.836 +518715,213.45,47.496 +518716,212.74,49.099 +518717,213.66,44.153 +518718,212.9,45.832 +518719,212.14,47.453 +518720,211.38,49.02 +518721,212.47,44.191 +518722,211.66,45.827 +518723,210.84,47.409 +518724,210.03,48.939 +518725,211.28,44.23 +518726,210.41,45.824 +518727,209.54,47.365 +518728,208.68,48.858 +518729,210.09,44.27 +518730,209.16,45.82 +518731,208.24,47.321 +518732,207.32,48.775 +518733,208.9,44.312 +518734,207.91,45.818 +518735,206.94,47.276 +518736,205.97,48.69 +518737,207.7,44.355 +518738,206.66,45.815 +518739,205.63,47.231 +518740,204.62,48.605 +518741,206.51,44.399 +518742,205.41,45.813 +518743,204.33,47.186 +518744,203.27,48.518 +518745,205.31,44.444 +518746,204.16,45.812 +518747,203.03,47.14 +518748,201.92,48.43 +518749,204.11,44.49 +518750,202.92,45.81 +518751,201.73,47.094 +518752,200.57,48.341 +518753,202.92,44.537 +518754,201.67,45.81 +518755,200.43,47.048 +518756,199.22,48.251 +518757,201.72,44.585 +518758,200.42,45.809 +518759,199.13,47.001 +518760,197.87,48.16 +518761,200.52,44.634 +518762,199.17,45.809 +518763,197.84,46.954 +518764,196.52,48.068 +518765,199.31,44.685 +518766,197.92,45.81 +518767,196.54,46.906 +518768,195.18,47.975 +518769,198.11,44.736 +518770,196.66,45.811 +518771,195.24,46.859 +518772,193.83,47.88 +518773,196.9,44.787 +518774,195.41,45.812 +518775,193.94,46.811 +518776,192.49,47.785 +518777,195.7,44.84 +518778,194.16,45.813 +518779,192.64,46.763 +518780,191.15,47.689 +518781,194.49,44.893 +518782,192.91,45.815 +518783,191.35,46.714 +518784,189.8,47.592 +518785,193.28,44.948 +518786,191.66,45.817 +518787,190.05,46.666 +518788,188.46,47.494 +518789,192.07,45.002 +518790,190.4,45.819 +518791,188.76,46.617 +518792,187.12,47.396 +518793,190.86,45.058 +518794,189.15,45.822 +518795,187.46,46.568 +518796,185.78,47.296 +518797,189.64,45.114 +518798,187.9,45.825 +518799,186.17,46.519 +518800,184.45,47.196 +518801,188.42,45.171 +518802,186.64,45.828 +518803,184.87,46.469 +518804,183.11,47.095 +518805,187.21,45.228 +518806,185.39,45.831 +518807,183.58,46.42 +518808,181.78,46.993 +518809,185.99,45.285 +518810,184.13,45.835 +518811,182.29,46.37 +518812,180.44,46.891 +518813,184.76,45.344 +518814,182.88,45.838 +518815,180.99,46.32 +518816,179.11,46.788 +518817,183.54,45.402 +518818,181.62,45.842 +518819,179.7,46.27 +518820,177.78,46.684 +518821,182.32,45.461 +518822,180.37,45.846 +518823,178.41,46.22 +518824,176.45,46.58 +518825,181.09,45.52 +518826,179.11,45.851 +518827,177.12,46.17 +518828,175.12,46.476 +518829,179.86,45.579 +518830,177.85,45.855 +518831,175.83,46.12 +518832,173.79,46.371 +518833,178.63,45.639 +518834,176.6,45.86 +518835,174.54,46.069 +518836,172.47,46.265 +518837,177.4,45.699 +518838,175.34,45.865 +518839,173.25,46.019 +518840,171.15,46.16 +518841,176.16,45.759 +518842,174.08,45.869 +518843,171.97,45.968 +518844,169.82,46.054 +518845,174.93,45.819 +518846,172.82,45.874 +518847,170.68,45.918 +518848,168.5,45.947 +518849,173.69,45.879 +518850,171.56,45.879 +518851,169.39,45.867 +518852,167.19,45.84 +518853,172.45,45.939 +518854,170.3,45.885 +518855,168.11,45.817 +518856,165.87,45.734 +518857,171.21,45.999 +518858,169.04,45.89 +518859,166.82,45.766 +518860,164.55,45.627 +518861,169.97,46.059 +518862,167.78,45.895 +518863,165.54,45.716 +518864,163.24,45.519 +518865,168.72,46.118 +518866,166.51,45.9 +518867,164.25,45.665 +518868,161.93,45.412 +518869,167.47,46.178 +518870,165.25,45.905 +518871,162.97,45.615 +518872,160.62,45.305 +518873,166.22,46.238 +518874,163.99,45.911 +518875,161.69,45.564 +518876,159.31,45.198 +518877,164.97,46.297 +518878,162.73,45.916 +518879,160.41,45.514 +518880,158,45.09 +518881,163.72,46.356 +518882,161.46,45.921 +518883,159.12,45.464 +518884,156.7,44.983 +518885,162.47,46.415 +518886,160.2,45.926 +518887,157.84,45.414 +518888,155.4,44.876 +518889,161.21,46.473 +518890,158.93,45.931 +518891,156.56,45.364 +518892,154.1,44.77 +518893,159.95,46.531 +518894,157.67,45.936 +518895,155.29,45.314 +518896,152.8,44.663 +518897,158.69,46.588 +518898,156.4,45.941 +518899,154.01,45.265 +518900,151.5,44.557 +518901,157.43,46.645 +518902,155.13,45.946 +518903,152.73,45.216 +518904,150.21,44.451 +518905,156.16,46.702 +518906,153.86,45.951 +518907,151.45,45.166 +518908,148.92,44.346 +518909,154.9,46.758 +518910,152.6,45.955 +518911,150.18,45.117 +518912,147.62,44.24 +518913,153.63,46.813 +518914,151.33,45.96 +518915,148.9,45.069 +518916,146.34,44.136 +518917,152.36,46.868 +518918,150.06,45.964 +518919,147.63,45.02 +518920,145.05,44.032 +518921,151.09,46.922 +518922,148.79,45.968 +518923,146.35,44.972 +518924,143.77,43.928 +518925,149.81,46.975 +518926,147.52,45.972 +518927,145.08,44.924 +518928,142.48,43.825 +518929,148.54,47.028 +518930,146.25,45.976 +518931,143.81,44.876 +518932,141.2,43.723 +518933,147.26,47.08 +518934,144.97,45.979 +518935,142.54,44.829 +518936,139.93,43.621 +518937,145.98,47.131 +518938,143.7,45.983 +518939,141.27,44.781 +518940,138.65,43.52 +518941,144.7,47.181 +518942,142.43,45.986 +518943,140,44.735 +518944,137.38,43.42 +518945,143.42,47.231 +518946,141.16,45.989 +518947,138.73,44.688 +518948,136.11,43.321 +518949,142.13,47.279 +518950,139.88,45.991 +518951,137.46,44.642 +518952,134.84,43.223 +518953,140.85,47.327 +518954,138.61,45.994 +518955,136.19,44.596 +518956,133.57,43.125 +518957,139.56,47.373 +518958,137.33,45.996 +518959,134.93,44.551 +518960,132.31,43.029 +518961,138.27,47.419 +518962,136.06,45.998 +518963,133.66,44.506 +518964,131.05,42.934 +518965,136.98,47.464 +518966,134.78,45.999 +518967,132.4,44.461 +518968,129.79,42.839 +518969,135.69,47.507 +518970,133.5,46 +518971,131.13,44.417 +518972,128.53,42.746 +518973,134.39,47.55 +518974,132.23,46.001 +518975,129.87,44.373 +518976,127.27,42.654 +518977,133.1,47.591 +518978,130.95,46.002 +518979,128.61,44.33 +518980,126.02,42.563 +518981,131.8,47.631 +518982,129.67,46.002 +518983,127.34,44.287 +518984,124.77,42.474 +518985,130.5,47.67 +518986,128.39,46.002 +518987,126.08,44.245 +518988,123.52,42.385 +518989,129.2,47.708 +518990,127.11,46.001 +518991,124.82,44.203 +518992,122.28,42.298 +518993,127.9,47.744 +518994,125.83,46 +518995,123.56,44.162 +518996,121.03,42.213 +518997,126.59,47.78 +518998,124.55,45.999 +518999,122.3,44.121 +519000,119.79,42.129 +519001,125.29,47.814 +519002,123.27,45.997 +519003,121.05,44.081 +519004,118.55,42.046 +519005,123.98,47.846 +519006,121.99,45.995 +519007,119.79,44.041 +519008,117.31,41.965 +519009,122.67,47.878 +519010,120.71,45.993 +519011,118.53,44.001 +519012,116.08,41.885 +519013,121.36,47.908 +519014,119.43,45.99 +519015,117.28,43.963 +519016,114.85,41.807 +519017,120.05,47.936 +519018,118.14,45.986 +519019,116.02,43.925 +519020,113.62,41.731 +519021,118.74,47.963 +519022,116.86,45.982 +519023,114.77,43.887 +519024,112.39,41.656 +519025,117.42,47.989 +519026,115.58,45.978 +519027,113.51,43.85 +519028,111.16,41.583 +519029,116.11,48.014 +519030,114.29,45.973 +519031,112.26,43.814 +519032,109.94,41.511 +519033,114.79,48.036 +519034,113.01,45.968 +519035,111.01,43.778 +519036,108.72,41.442 +519037,113.47,48.058 +519038,111.72,45.963 +519039,109.75,43.743 +519040,107.5,41.374 +519041,112.15,48.078 +519042,110.44,45.956 +519043,108.5,43.708 +519044,106.28,41.308 +519045,110.83,48.096 +519046,109.15,45.95 +519047,107.25,43.674 +519048,105.06,41.244 +519049,109.51,48.113 +519050,107.86,45.943 +519051,106,43.641 +519052,103.85,41.181 +519053,108.19,48.128 +519054,106.58,45.935 +519055,104.75,43.608 +519056,102.64,41.121 +519057,106.87,48.142 +519058,105.29,45.927 +519059,103.5,43.576 +519060,101.43,41.063 +519061,105.54,48.154 +519062,104,45.918 +519063,102.26,43.545 +519064,100.22,41.006 +519065,104.22,48.164 +519066,102.72,45.909 +519067,101.01,43.515 +519068,99.018,40.952 +519069,102.89,48.173 +519070,101.43,45.899 +519071,99.761,43.485 +519072,97.815,40.9 +519073,101.56,48.18 +519074,100.14,45.889 +519075,98.515,43.455 +519076,96.613,40.849 +519077,100.23,48.186 +519078,98.851,45.878 +519079,97.269,43.427 +519080,95.413,40.801 +519081,98.901,48.19 +519082,97.562,45.867 +519083,96.024,43.399 +519084,94.214,40.755 +519085,97.571,48.192 +519086,96.273,45.855 +519087,94.779,43.372 +519088,93.018,40.711 +519089,96.239,48.193 +519090,94.984,45.843 +519091,93.535,43.345 +519092,91.823,40.669 +519093,94.907,48.191 +519094,93.694,45.83 +519095,92.291,43.32 +519096,90.63,40.629 +519097,93.573,48.188 +519098,92.404,45.816 +519099,91.048,43.295 +519100,89.438,40.592 +519101,92.239,48.184 +519102,91.113,45.802 +519103,89.805,43.27 +519104,88.247,40.556 +519105,90.904,48.178 +519106,89.823,45.788 +519107,88.562,43.247 +519108,87.058,40.523 +519109,89.569,48.17 +519110,88.532,45.772 +519111,87.321,43.224 +519112,85.871,40.492 +519113,88.233,48.16 +519114,87.241,45.757 +519115,86.079,43.202 +519116,84.685,40.463 +519117,86.896,48.148 +519118,85.95,45.74 +519119,84.838,43.181 +519120,83.5,40.437 +519121,85.558,48.135 +519122,84.659,45.723 +519123,83.597,43.16 +519124,82.316,40.413 +519125,84.22,48.12 +519126,83.367,45.706 +519127,82.357,43.14 +519128,81.133,40.39 +519129,82.882,48.103 +519130,82.075,45.688 +519131,81.117,43.121 +519132,79.952,40.371 +519133,81.543,48.085 +519134,80.784,45.669 +519135,79.878,43.103 +519136,78.771,40.353 +519137,80.203,48.064 +519138,79.492,45.65 +519139,78.638,43.085 +519140,77.592,40.338 +519141,78.863,48.042 +519142,78.199,45.63 +519143,77.399,43.068 +519144,76.413,40.325 +519145,77.523,48.018 +519146,76.907,45.61 +519147,76.161,43.052 +519148,75.236,40.314 +519149,76.182,47.993 +519150,75.615,45.589 +519151,74.922,43.037 +519152,74.059,40.305 +519153,74.841,47.965 +519154,74.323,45.567 +519155,73.684,43.022 +519156,72.882,40.299 +519157,73.499,47.936 +519158,73.03,45.545 +519159,72.446,43.008 +519160,71.707,40.295 +519161,72.157,47.905 +519162,71.738,45.523 +519163,71.209,42.995 +519164,70.532,40.293 +519165,70.816,47.873 +519166,70.445,45.499 +519167,69.971,42.982 +519168,69.357,40.293 +519169,69.473,47.838 +519170,69.153,45.476 +519171,68.734,42.971 +519172,68.183,40.295 +519173,68.131,47.802 +519174,67.86,45.451 +519175,67.497,42.96 +519176,67.009,40.3 +519177,66.789,47.764 +519178,66.568,45.426 +519179,66.26,42.95 +519180,65.836,40.307 +519181,65.446,47.725 +519182,65.275,45.401 +519183,65.023,42.94 +519184,64.662,40.316 +519185,64.103,47.683 +519186,63.983,45.375 +519187,63.787,42.931 +519188,63.489,40.327 +519189,62.761,47.64 +519190,62.69,45.348 +519191,62.55,42.923 +519192,62.316,40.34 +519193,61.418,47.595 +519194,61.398,45.321 +519195,61.314,42.916 +519196,61.143,40.356 +519197,60.076,47.549 +519198,60.106,45.293 +519199,60.077,42.909 +519200,59.97,40.373 +519201,58.733,47.501 +519202,58.814,45.265 +519203,58.841,42.903 +519204,58.797,40.393 +519205,57.391,47.451 +519206,57.522,45.236 +519207,57.605,42.898 +519208,57.624,40.414 +519209,56.049,47.399 +519210,56.23,45.207 +519211,56.368,42.894 +519212,56.45,40.438 +519213,54.707,47.346 +519214,54.938,45.177 +519215,55.132,42.89 +519216,55.277,40.464 +519217,53.365,47.291 +519218,53.646,45.147 +519219,53.896,42.887 +519220,54.103,40.491 +519221,52.023,47.235 +519222,52.355,45.116 +519223,52.659,42.884 +519224,52.928,40.521 +519225,50.682,47.177 +519226,51.063,45.085 +519227,51.423,42.882 +519228,51.753,40.552 +519229,49.341,47.117 +519230,49.772,45.053 +519231,50.186,42.881 +519232,50.577,40.586 +519233,48.001,47.056 +519234,48.481,45.02 +519235,48.95,42.881 +519236,49.401,40.621 +519237,46.661,46.993 +519238,47.191,44.987 +519239,47.713,42.881 +519240,48.224,40.658 +519241,45.321,46.929 +519242,45.9,44.954 +519243,46.476,42.882 +519244,47.046,40.697 +519245,43.982,46.863 +519246,44.61,44.92 +519247,45.239,42.883 +519248,45.868,40.737 +519249,42.643,46.795 +519250,43.32,44.886 +519251,44.002,42.885 +519252,44.689,40.779 +519253,41.305,46.726 +519254,42.03,44.851 +519255,42.765,42.888 +519256,43.509,40.823 +519257,39.968,46.656 +519258,40.741,44.816 +519259,41.527,42.891 +519260,42.327,40.869 +519261,38.631,46.584 +519262,39.452,44.781 +519263,40.289,42.895 +519264,41.145,40.916 +519265,37.294,46.511 +519266,38.163,44.744 +519267,39.051,42.899 +519268,39.962,40.965 +519269,35.959,46.436 +519270,36.875,44.708 +519271,37.813,42.904 +519272,38.778,41.015 +519273,34.624,46.36 +519274,35.587,44.671 +519275,36.575,42.909 +519276,37.592,41.067 +519277,33.29,46.282 +519278,34.299,44.634 +519279,35.336,42.915 +519280,36.406,41.12 +519281,31.956,46.204 +519282,33.011,44.596 +519283,34.097,42.922 +519284,35.218,41.175 +519285,30.624,46.124 +519286,31.724,44.558 +519287,32.857,42.929 +519288,34.028,41.231 +519289,29.292,46.042 +519290,30.438,44.52 +519291,31.618,42.937 +519292,32.838,41.288 +519293,27.962,45.96 +519294,29.152,44.481 +519295,30.378,42.945 +519296,31.646,41.347 +519297,26.632,45.876 +519298,27.866,44.442 +519299,29.138,42.953 +519300,30.452,41.406 +519301,25.303,45.791 +519302,26.581,44.402 +519303,27.897,42.962 +519304,29.257,41.467 +519305,23.975,45.704 +519306,25.296,44.362 +519307,26.656,42.972 +519308,28.061,41.53 +519309,22.648,45.617 +519310,24.011,44.322 +519311,25.414,42.982 +519312,26.863,41.593 +519313,21.322,45.529 +519314,22.727,44.282 +519315,24.173,42.992 +519316,25.664,41.657 +519317,19.998,45.439 +519318,21.444,44.241 +519319,22.93,43.003 +519320,24.463,41.723 +519321,18.674,45.348 +519322,20.161,44.2 +519323,21.688,43.014 +519324,23.26,41.789 +519325,17.352,45.257 +519326,18.878,44.159 +519327,20.445,43.026 +519328,22.056,41.856 +519329,16.031,45.164 +519330,17.596,44.117 +519331,19.201,43.038 +519332,20.85,41.924 +519333,14.711,45.071 +519334,16.315,44.076 +519335,17.957,43.05 +519336,19.642,41.993 +519337,13.392,44.976 +519338,15.034,44.034 +519339,16.713,43.063 +519340,18.432,42.063 +519341,12.075,44.881 +519342,13.753,43.991 +519343,15.468,43.076 +519344,17.221,42.134 +519345,10.759,44.785 +519346,12.474,43.949 +519347,14.222,43.089 +519348,16.008,42.205 +519349,9.4443,44.688 +519350,11.194,43.906 +519351,12.976,43.103 +519352,14.793,42.277 +519353,8.131,44.59 +519354,9.9157,43.864 +519355,11.73,43.117 +519356,13.577,42.349 +519357,6.8192,44.491 +519358,8.6376,43.821 +519359,10.483,43.131 +519360,12.358,42.422 +519361,5.5088,44.392 +519362,7.3601,43.778 +519363,9.2358,43.145 +519364,11.138,42.495 +519365,4.1999,44.292 +519366,6.0832,43.734 +519367,7.9879,43.16 +519368,9.9155,42.569 +519369,2.8925,44.192 +519370,4.8069,43.691 +519371,6.7394,43.175 +519372,8.6914,42.644 +519373,1.5867,44.091 +519374,3.5312,43.648 +519375,5.4904,43.19 +519376,7.4654,42.718 +519377,0.28246,43.99 +519378,2.2562,43.604 +519379,4.2409,43.205 +519380,6.2375,42.793 +519381,358.98,43.888 +519382,0.98175,43.561 +519383,2.9908,43.221 +519384,5.0076,42.869 +519385,357.68,43.785 +519386,359.71,43.517 +519387,1.7402,43.236 +519388,3.7759,42.944 +519389,356.38,43.682 +519390,358.43,43.473 +519391,0.48896,43.252 +519392,2.5422,43.02 +519393,355.08,43.579 +519394,357.16,43.43 +519395,359.24,43.268 +519396,1.3066,43.096 +519397,353.79,43.476 +519398,355.89,43.386 +519399,357.98,43.284 +519400,0.069125,43.172 +519401,352.49,43.372 +519402,354.62,43.342 +519403,356.73,43.301 +519404,358.83,43.248 +519405,351.2,43.268 +519406,353.35,43.299 +519407,355.48,43.317 +519408,357.59,43.324 +519409,349.91,43.164 +519410,352.08,43.255 +519411,354.22,43.333 +519412,356.34,43.4 +519413,348.62,43.059 +519414,350.81,43.211 +519415,352.97,43.35 +519416,355.1,43.476 +519417,347.33,42.955 +519418,349.54,43.168 +519419,351.71,43.366 +519420,353.85,43.551 +519421,346.05,42.85 +519422,348.27,43.124 +519423,350.46,43.383 +519424,352.6,43.627 +519425,344.76,42.746 +519426,347.01,43.081 +519427,349.2,43.399 +519428,351.35,43.702 +519429,343.48,42.642 +519430,345.74,43.038 +519431,347.95,43.416 +519432,350.1,43.777 +519433,342.2,42.537 +519434,344.48,42.995 +519435,346.69,43.432 +519436,348.84,43.852 +519437,340.93,42.433 +519438,343.21,42.952 +519439,345.43,43.449 +519440,347.59,43.926 +519441,339.65,42.329 +519442,341.95,42.909 +519443,344.17,43.465 +519444,346.33,44 +519445,338.38,42.225 +519446,340.68,42.866 +519447,342.91,43.482 +519448,345.07,44.074 +519449,337.11,42.122 +519450,339.42,42.824 +519451,341.65,43.498 +519452,343.81,44.147 +519453,335.84,42.019 +519454,338.16,42.782 +519455,340.39,43.514 +519456,342.54,44.219 +519457,334.57,41.916 +519458,336.9,42.74 +519459,339.13,43.531 +519460,341.28,44.291 +519461,333.3,41.814 +519462,335.64,42.698 +519463,337.87,43.547 +519464,340.01,44.362 +519465,332.04,41.712 +519466,334.38,42.657 +519467,336.61,43.563 +519468,338.74,44.433 +519469,330.78,41.611 +519470,333.12,42.615 +519471,335.34,43.578 +519472,337.47,44.503 +519473,329.52,41.51 +519474,331.86,42.574 +519475,334.08,43.594 +519476,336.19,44.573 +519477,328.26,41.41 +519478,330.6,42.534 +519479,332.81,43.609 +519480,334.92,44.641 +519481,327.01,41.311 +519482,329.34,42.494 +519483,331.55,43.625 +519484,333.64,44.709 +519485,325.76,41.212 +519486,328.09,42.454 +519487,330.28,43.64 +519488,332.36,44.776 +519489,324.5,41.115 +519490,326.83,42.414 +519491,329.02,43.654 +519492,331.08,44.842 +519493,323.26,41.018 +519494,325.58,42.375 +519495,327.75,43.669 +519496,329.8,44.907 +519497,322.01,40.922 +519498,324.32,42.336 +519499,326.49,43.683 +519500,328.52,44.972 +519501,320.77,40.827 +519502,323.07,42.297 +519503,325.22,43.698 +519504,327.23,45.035 +519505,319.52,40.732 +519506,321.82,42.259 +519507,323.95,43.711 +519508,325.94,45.097 +519509,318.28,40.639 +519510,320.57,42.222 +519511,322.68,43.725 +519512,324.66,45.158 +519513,317.05,40.547 +519514,319.32,42.185 +519515,321.41,43.738 +519516,323.37,45.219 +519517,315.81,40.456 +519518,318.07,42.148 +519519,320.14,43.751 +519520,322.07,45.278 +519521,314.58,40.367 +519522,316.82,42.112 +519523,318.87,43.764 +519524,320.78,45.336 +519525,313.34,40.278 +519526,315.57,42.076 +519527,317.6,43.776 +519528,319.49,45.392 +519529,312.12,40.191 +519530,314.32,42.04 +519531,316.33,43.788 +519532,318.19,45.448 +519533,310.89,40.105 +519534,313.07,42.006 +519535,315.06,43.8 +519536,316.89,45.503 +519537,309.66,40.021 +519538,311.82,41.971 +519539,313.79,43.811 +519540,315.59,45.556 +519541,308.44,39.938 +519542,310.58,41.938 +519543,312.51,43.822 +519544,314.29,45.608 +519545,307.22,39.856 +519546,309.33,41.905 +519547,311.24,43.833 +519548,312.99,45.658 +519549,306,39.776 +519550,308.09,41.872 +519551,309.97,43.843 +519552,311.69,45.707 +519553,304.78,39.698 +519554,306.84,41.84 +519555,308.69,43.853 +519556,310.38,45.755 +519557,303.57,39.621 +519558,305.6,41.809 +519559,307.42,43.862 +519560,309.08,45.802 +519561,302.36,39.546 +519562,304.35,41.778 +519563,306.14,43.871 +519564,307.77,45.847 +519565,301.15,39.472 +519566,303.11,41.747 +519567,304.87,43.879 +519568,306.46,45.89 +519569,299.94,39.4 +519570,301.87,41.718 +519571,303.59,43.887 +519572,305.15,45.933 +519573,298.73,39.33 +519574,300.63,41.689 +519575,302.31,43.895 +519576,303.84,45.973 +519577,297.52,39.262 +519578,299.39,41.661 +519579,301.04,43.902 +519580,302.53,46.013 +519581,296.32,39.196 +519582,298.15,41.633 +519583,299.76,43.909 +519584,301.21,46.05 +519585,295.12,39.131 +519586,296.91,41.606 +519587,298.48,43.915 +519588,299.9,46.086 +519589,293.92,39.069 +519590,295.67,41.58 +519591,297.21,43.921 +519592,298.58,46.121 +519593,292.72,39.008 +519594,294.43,41.554 +519595,295.93,43.926 +519596,297.27,46.154 +519597,291.53,38.949 +519598,293.19,41.529 +519599,294.65,43.931 +519600,295.95,46.185 +519601,290.33,38.893 +519602,291.95,41.505 +519603,293.37,43.935 +519604,294.63,46.215 +519605,289.14,38.838 +519606,290.72,41.481 +519607,292.09,43.938 +519608,293.31,46.243 +519609,287.95,38.786 +519610,289.48,41.458 +519611,290.81,43.942 +519612,291.99,46.27 +519613,286.76,38.736 +519614,288.24,41.436 +519615,289.53,43.944 +519616,290.67,46.295 +519617,285.57,38.688 +519618,287.01,41.415 +519619,288.25,43.946 +519620,289.35,46.318 +519621,284.38,38.642 +519622,285.77,41.394 +519623,286.97,43.948 +519624,288.03,46.339 +519625,283.2,38.598 +519626,284.54,41.375 +519627,285.69,43.949 +519628,286.71,46.359 +519629,282.02,38.556 +519630,283.3,41.355 +519631,284.41,43.949 +519632,285.38,46.377 +519633,280.83,38.517 +519634,282.07,41.337 +519635,283.13,43.949 +519636,284.06,46.393 +519637,279.65,38.48 +519638,280.84,41.32 +519639,281.85,43.949 +519640,282.73,46.408 +519641,278.47,38.446 +519642,279.6,41.303 +519643,280.56,43.948 +519644,281.4,46.421 +519645,277.29,38.413 +519646,278.37,41.287 +519647,279.28,43.946 +519648,280.08,46.432 +519649,276.12,38.383 +519650,277.14,41.272 +519651,278,43.944 +519652,278.75,46.441 +519653,274.94,38.356 +519654,275.9,41.257 +519655,276.72,43.941 +519656,277.42,46.449 +519657,273.76,38.331 +519658,274.67,41.243 +519659,275.44,43.937 +519660,276.1,46.454 +519661,272.59,38.308 +519662,273.44,41.231 +519663,274.15,43.933 +519664,274.77,46.458 +519665,271.41,38.287 +519666,272.21,41.219 +519667,272.87,43.929 +519668,273.44,46.46 +519669,270.24,38.269 +519670,270.98,41.207 +519671,271.59,43.923 +519672,272.11,46.461 +519673,269.07,38.254 +519674,269.75,41.197 +519675,270.3,43.918 +519676,270.78,46.459 +519677,267.9,38.24 +519678,268.51,41.187 +519679,269.02,43.911 +519680,269.45,46.456 +519681,266.72,38.23 +519682,267.28,41.178 +519683,267.74,43.904 +519684,268.12,46.451 +519685,265.55,38.221 +519686,266.05,41.17 +519687,266.46,43.897 +519688,266.79,46.444 +519689,264.38,38.215 +519690,264.82,41.163 +519691,265.17,43.889 +519692,265.46,46.435 +519693,263.21,38.212 +519694,263.59,41.157 +519695,263.89,43.88 +519696,264.13,46.424 +519697,262.04,38.211 +519698,262.36,41.151 +519699,262.61,43.871 +519700,262.79,46.412 +519701,260.87,38.212 +519702,261.13,41.146 +519703,261.32,43.861 +519704,261.46,46.398 +519705,259.7,38.216 +519706,259.9,41.142 +519707,260.04,43.85 +519708,260.13,46.382 +519709,258.54,38.222 +519710,258.67,41.139 +519711,258.76,43.839 +519712,258.8,46.364 +519713,257.37,38.231 +519714,257.44,41.137 +519715,257.47,43.828 +519716,257.47,46.344 +519717,256.2,38.241 +519718,256.21,41.135 +519719,256.19,43.816 +519720,256.14,46.323 +519721,255.03,38.255 +519722,254.98,41.135 +519723,254.91,43.803 +519724,254.81,46.299 +519725,253.86,38.27 +519726,253.75,41.135 +519727,253.62,43.789 +519728,253.48,46.274 +519729,252.69,38.289 +519730,252.52,41.135 +519731,252.34,43.776 +519732,252.15,46.247 +519733,251.52,38.309 +519734,251.29,41.137 +519735,251.06,43.761 +519736,250.81,46.219 +519737,250.35,38.332 +519738,250.06,41.139 +519739,249.77,43.746 +519740,249.48,46.188 +519741,249.18,38.357 +519742,248.83,41.143 +519743,248.49,43.73 +519744,248.15,46.156 +519745,248.01,38.384 +519746,247.6,41.147 +519747,247.21,43.714 +519748,246.82,46.122 +519749,246.83,38.413 +519750,246.37,41.151 +519751,245.93,43.698 +519752,245.49,46.086 +519753,245.66,38.445 +519754,245.14,41.157 +519755,244.64,43.68 +519756,244.17,46.049 +519757,244.49,38.479 +519758,243.91,41.163 +519759,243.36,43.662 +519760,242.84,46.01 +519761,243.31,38.515 +519762,242.68,41.17 +519763,242.08,43.644 +519764,241.51,45.969 +519765,242.14,38.553 +519766,241.45,41.178 +519767,240.8,43.625 +519768,240.18,45.926 +519769,240.96,38.594 +519770,240.22,41.186 +519771,239.52,43.606 +519772,238.85,45.882 +519773,239.79,38.636 +519774,238.99,41.195 +519775,238.24,43.586 +519776,237.53,45.836 +519777,238.61,38.681 +519778,237.75,41.205 +519779,236.96,43.565 +519780,236.2,45.789 +519781,237.43,38.727 +519782,236.52,41.216 +519783,235.67,43.544 +519784,234.88,45.739 +519785,236.25,38.776 +519786,235.29,41.227 +519787,234.39,43.523 +519788,233.55,45.689 +519789,235.07,38.826 +519790,234.06,41.239 +519791,233.11,43.501 +519792,232.23,45.636 +519793,233.89,38.879 +519794,232.82,41.252 +519795,231.83,43.479 +519796,230.9,45.582 +519797,232.71,38.933 +519798,231.59,41.265 +519799,230.55,43.456 +519800,229.58,45.526 +519801,231.52,38.989 +519802,230.36,41.279 +519803,229.28,43.432 +519804,228.26,45.469 +519805,230.34,39.047 +519806,229.12,41.294 +519807,228,43.409 +519808,226.94,45.411 +519809,229.15,39.107 +519810,227.89,41.309 +519811,226.72,43.384 +519812,225.62,45.35 +519813,227.96,39.168 +519814,226.66,41.325 +519815,225.44,43.36 +519816,224.3,45.289 +519817,226.77,39.231 +519818,225.42,41.342 +519819,224.16,43.334 +519820,222.98,45.226 +519821,225.58,39.296 +519822,224.19,41.359 +519823,222.89,43.309 +519824,221.66,45.161 +519825,224.38,39.362 +519826,222.95,41.376 +519827,221.61,43.283 +519828,220.34,45.095 +519829,223.19,39.43 +519830,221.71,41.395 +519831,220.33,43.256 +519832,219.03,45.028 +519833,221.99,39.499 +519834,220.48,41.414 +519835,219.06,43.23 +519836,217.71,44.959 +519837,220.8,39.57 +519838,219.24,41.433 +519839,217.78,43.203 +519840,216.4,44.889 +519841,219.6,39.642 +519842,218,41.453 +519843,216.51,43.175 +519844,215.09,44.818 +519845,218.39,39.715 +519846,216.76,41.474 +519847,215.23,43.147 +519848,213.78,44.745 +519849,217.19,39.79 +519850,215.52,41.495 +519851,213.96,43.119 +519852,212.47,44.671 +519853,215.99,39.866 +519854,214.29,41.516 +519855,212.68,43.09 +519856,211.16,44.596 +519857,214.78,39.944 +519858,213.05,41.538 +519859,211.41,43.061 +519860,209.85,44.52 +519861,213.57,40.022 +519862,211.81,41.561 +519863,210.14,43.032 +519864,208.55,44.443 +519865,212.36,40.102 +519866,210.57,41.584 +519867,208.86,43.003 +519868,207.24,44.364 +519869,211.15,40.182 +519870,209.32,41.607 +519871,207.59,42.973 +519872,205.94,44.284 +519873,209.93,40.264 +519874,208.08,41.631 +519875,206.32,42.943 +519876,204.64,44.204 +519877,208.72,40.347 +519878,206.84,41.655 +519879,205.05,42.912 +519880,203.34,44.122 +519881,207.5,40.43 +519882,205.6,41.68 +519883,203.78,42.882 +519884,202.04,44.039 +519885,206.28,40.515 +519886,204.35,41.705 +519887,202.51,42.851 +519888,200.74,43.955 +519889,205.06,40.6 +519890,203.11,41.731 +519891,201.24,42.82 +519892,199.44,43.871 +519893,203.83,40.686 +519894,201.87,41.756 +519895,199.97,42.789 +519896,198.15,43.785 +519897,202.61,40.773 +519898,200.62,41.783 +519899,198.71,42.757 +519900,196.85,43.699 +519901,201.38,40.86 +519902,199.37,41.809 +519903,197.44,42.726 +519904,195.56,43.612 +519905,200.15,40.948 +519906,198.13,41.836 +519907,196.17,42.694 +519908,194.27,43.524 +519909,198.92,41.037 +519910,196.88,41.863 +519911,194.91,42.662 +519912,192.98,43.435 +519913,197.68,41.126 +519914,195.63,41.89 +519915,193.64,42.63 +519916,191.7,43.346 +519917,196.45,41.216 +519918,194.38,41.918 +519919,192.37,42.598 +519920,190.41,43.256 +519921,195.21,41.306 +519922,193.14,41.946 +519923,191.11,42.565 +519924,189.13,43.165 +519925,193.97,41.396 +519926,191.89,41.974 +519927,189.85,42.533 +519928,187.85,43.074 +519929,192.73,41.487 +519930,190.64,42.002 +519931,188.58,42.501 +519932,186.57,42.982 +519933,191.48,41.578 +519934,189.39,42.031 +519935,187.32,42.468 +519936,185.29,42.89 +519937,190.24,41.669 +519938,188.13,42.059 +519939,186.06,42.435 +519940,184.01,42.797 +519941,188.99,41.761 +519942,186.88,42.088 +519943,184.8,42.403 +519944,182.74,42.704 +519945,187.74,41.852 +519946,185.63,42.117 +519947,183.54,42.37 +519948,181.46,42.611 +519949,186.49,41.944 +519950,184.38,42.147 +519951,182.28,42.338 +519952,180.19,42.517 +519953,185.23,42.035 +519954,183.12,42.176 +519955,181.02,42.305 +519956,178.92,42.423 +519957,183.98,42.127 +519958,181.87,42.205 +519959,179.76,42.272 +519960,177.66,42.329 +519961,182.72,42.219 +519962,180.61,42.235 +519963,178.5,42.24 +519964,176.39,42.234 +519965,181.46,42.31 +519966,179.36,42.264 +519967,177.25,42.207 +519968,175.13,42.14 +519969,180.2,42.401 +519970,178.1,42.294 +519971,175.99,42.175 +519972,173.87,42.045 +519973,178.94,42.492 +519974,176.84,42.324 +519975,174.73,42.143 +519976,172.61,41.95 +519977,177.67,42.583 +519978,175.58,42.353 +519979,173.48,42.111 +519980,171.35,41.855 +519981,176.4,42.674 +519982,174.33,42.383 +519983,172.22,42.079 +519984,170.09,41.761 +519985,175.13,42.764 +519986,173.07,42.413 +519987,170.97,42.047 +519988,168.84,41.666 +519989,173.86,42.854 +519990,171.81,42.442 +519991,169.72,42.015 +519992,167.59,41.572 +519993,172.59,42.943 +519994,170.55,42.472 +519995,168.46,41.983 +519996,166.34,41.478 +519997,171.32,43.032 +519998,169.29,42.501 +519999,167.21,41.952 +520000,165.09,41.384 +520001,170.04,43.121 +520002,168.02,42.531 +520003,165.96,41.921 +520004,163.84,41.29 +520005,168.76,43.209 +520006,166.76,42.56 +520007,164.71,41.89 +520008,162.6,41.197 +520009,167.48,43.296 +520010,165.5,42.59 +520011,163.46,41.859 +520012,161.36,41.104 +520013,166.2,43.383 +520014,164.23,42.619 +520015,162.21,41.829 +520016,160.12,41.011 +520017,164.92,43.469 +520018,162.97,42.648 +520019,160.96,41.799 +520020,158.88,40.919 +520021,163.63,43.554 +520022,161.71,42.677 +520023,159.71,41.769 +520024,157.64,40.828 +520025,162.35,43.638 +520026,160.44,42.706 +520027,158.46,41.739 +520028,156.41,40.737 +520029,161.06,43.722 +520030,159.17,42.734 +520031,157.22,41.71 +520032,155.18,40.647 +520033,159.77,43.805 +520034,157.91,42.763 +520035,155.97,41.681 +520036,153.95,40.557 +520037,158.48,43.887 +520038,156.64,42.791 +520039,154.73,41.653 +520040,152.72,40.469 +520041,157.19,43.968 +520042,155.37,42.819 +520043,153.48,41.624 +520044,151.5,40.381 +520045,155.89,44.048 +520046,154.11,42.847 +520047,152.24,41.597 +520048,150.27,40.293 +520049,154.6,44.128 +520050,152.84,42.874 +520051,150.99,41.569 +520052,149.05,40.207 +520053,153.3,44.206 +520054,151.57,42.902 +520055,149.75,41.542 +520056,147.83,40.122 +520057,152,44.283 +520058,150.3,42.929 +520059,148.51,41.516 +520060,146.61,40.038 +520061,150.7,44.359 +520062,149.03,42.955 +520063,147.27,41.489 +520064,145.4,39.955 +520065,149.4,44.434 +520066,147.76,42.982 +520067,146.02,41.464 +520068,144.18,39.872 +520069,148.09,44.508 +520070,146.48,43.008 +520071,144.78,41.439 +520072,142.97,39.791 +520073,146.79,44.581 +520074,145.21,43.034 +520075,143.54,41.414 +520076,141.76,39.712 +520077,145.49,44.652 +520078,143.94,43.059 +520079,142.3,41.39 +520080,140.55,39.633 +520081,144.18,44.723 +520082,142.67,43.085 +520083,141.06,41.366 +520084,139.35,39.556 +520085,142.87,44.792 +520086,141.39,43.109 +520087,139.82,41.343 +520088,138.14,39.48 +520089,141.56,44.859 +520090,140.12,43.134 +520091,138.59,41.32 +520092,136.94,39.406 +520093,140.25,44.926 +520094,138.85,43.158 +520095,137.35,41.298 +520096,135.74,39.333 +520097,138.94,44.991 +520098,137.57,43.182 +520099,136.11,41.276 +520100,134.54,39.261 +520101,137.63,45.054 +520102,136.3,43.205 +520103,134.88,41.256 +520104,133.34,39.191 +520105,136.31,45.117 +520106,135.02,43.228 +520107,133.64,41.235 +520108,132.14,39.122 +520109,135,45.178 +520110,133.75,43.25 +520111,132.4,41.215 +520112,130.95,39.056 +520113,133.68,45.237 +520114,132.47,43.272 +520115,131.17,41.196 +520116,129.76,38.99 +520117,132.37,45.295 +520118,131.19,43.294 +520119,129.93,41.178 +520120,128.56,38.927 +520121,131.05,45.352 +520122,129.91,43.315 +520123,128.7,41.16 +520124,127.38,38.865 +520125,129.73,45.406 +520126,128.64,43.336 +520127,127.46,41.143 +520128,126.19,38.805 +520129,128.41,45.46 +520130,127.36,43.356 +520131,126.23,41.126 +520132,125,38.747 +520133,127.09,45.512 +520134,126.08,43.376 +520135,125,41.11 +520136,123.81,38.691 +520137,125.77,45.562 +520138,124.8,43.395 +520139,123.76,41.095 +520140,122.63,38.637 +520141,124.45,45.611 +520142,123.52,43.414 +520143,122.53,41.081 +520144,121.45,38.584 +520145,123.12,45.658 +520146,122.25,43.432 +520147,121.3,41.067 +520148,120.27,38.534 +520149,121.8,45.703 +520150,120.97,43.45 +520151,120.07,41.054 +520152,119.09,38.485 +520153,120.48,45.747 +520154,119.69,43.467 +520155,118.84,41.041 +520156,117.91,38.439 +520157,119.15,45.789 +520158,118.41,43.484 +520159,117.6,41.03 +520160,116.73,38.395 +520161,117.83,45.83 +520162,117.13,43.5 +520163,116.37,41.019 +520164,115.55,38.353 +520165,116.5,45.868 +520166,115.85,43.516 +520167,115.14,41.008 +520168,114.38,38.313 +520169,115.18,45.906 +520170,114.56,43.531 +520171,113.91,40.999 +520172,113.2,38.275 +520173,113.85,45.941 +520174,113.28,43.546 +520175,112.68,40.99 +520176,112.03,38.239 +520177,112.52,45.974 +520178,112,43.56 +520179,111.45,40.982 +520180,110.85,38.206 +520181,111.19,46.006 +520182,110.72,43.573 +520183,110.22,40.975 +520184,109.68,38.175 +520185,109.87,46.036 +520186,109.44,43.586 +520187,108.99,40.969 +520188,108.51,38.146 +520189,108.54,46.065 +520190,108.16,43.599 +520191,107.76,40.963 +520192,107.34,38.12 +520193,107.21,46.091 +520194,106.88,43.611 +520195,106.53,40.959 +520196,106.16,38.095 +520197,105.88,46.116 +520198,105.6,43.622 +520199,105.3,40.955 +520200,104.99,38.073 +520201,104.55,46.139 +520202,104.31,43.633 +520203,104.07,40.951 +520204,103.82,38.054 +520205,103.22,46.16 +520206,103.03,43.643 +520207,102.84,40.949 +520208,102.65,38.037 +520209,101.89,46.18 +520210,101.75,43.652 +520211,101.61,40.947 +520212,101.48,38.022 +520213,100.56,46.197 +520214,100.47,43.661 +520215,100.38,40.946 +520216,100.32,38.01 +520217,99.232,46.213 +520218,99.185,43.67 +520219,99.154,40.946 +520220,99.147,38 +520221,97.902,46.227 +520222,97.903,43.678 +520223,97.925,40.947 +520224,97.978,37.992 +520225,96.572,46.239 +520226,96.62,43.685 +520227,96.696,40.949 +520228,96.809,37.987 +520229,95.242,46.249 +520230,95.338,43.691 +520231,95.466,40.951 +520232,95.64,37.985 +520233,93.912,46.258 +520234,94.056,43.698 +520235,94.237,40.955 +520236,94.471,37.985 +520237,92.582,46.265 +520238,92.774,43.703 +520239,93.008,40.959 +520240,93.301,37.987 +520241,91.252,46.269 +520242,91.491,43.708 +520243,91.778,40.964 +520244,92.132,37.992 +520245,89.923,46.272 +520246,90.209,43.712 +520247,90.548,40.969 +520248,90.962,37.999 +520249,88.593,46.274 +520250,88.927,43.716 +520251,89.319,40.976 +520252,89.792,38.008 +520253,87.264,46.273 +520254,87.645,43.719 +520255,88.089,40.983 +520256,88.621,38.02 +520257,85.935,46.271 +520258,86.363,43.722 +520259,86.859,40.991 +520260,87.45,38.035 +520261,84.606,46.266 +520262,85.081,43.724 +520263,85.628,41 +520264,86.278,38.052 +520265,83.278,46.26 +520266,83.799,43.725 +520267,84.398,41.01 +520268,85.105,38.071 +520269,81.95,46.252 +520270,82.517,43.726 +520271,83.167,41.021 +520272,83.932,38.093 +520273,80.622,46.243 +520274,81.236,43.726 +520275,81.936,41.032 +520276,82.758,38.117 +520277,79.295,46.231 +520278,79.954,43.726 +520279,80.705,41.044 +520280,81.583,38.144 +520281,77.969,46.218 +520282,78.673,43.725 +520283,79.474,41.057 +520284,80.407,38.173 +520285,76.642,46.203 +520286,77.392,43.723 +520287,78.242,41.071 +520288,79.23,38.204 +520289,75.317,46.186 +520290,76.111,43.721 +520291,77.01,41.085 +520292,78.053,38.238 +520293,73.992,46.167 +520294,74.831,43.719 +520295,75.778,41.101 +520296,76.874,38.273 +520297,72.667,46.147 +520298,73.55,43.716 +520299,74.545,41.117 +520300,75.694,38.312 +520301,71.343,46.125 +520302,72.27,43.712 +520303,73.312,41.134 +520304,74.512,38.352 +520305,70.02,46.101 +520306,70.99,43.708 +520307,72.079,41.151 +520308,73.33,38.395 +520309,68.698,46.076 +520310,69.71,43.703 +520311,70.845,41.17 +520312,72.146,38.44 +520313,67.376,46.048 +520314,68.431,43.697 +520315,69.611,41.189 +520316,70.961,38.487 +520317,66.055,46.02 +520318,67.152,43.692 +520319,68.376,41.209 +520320,69.774,38.536 +520321,64.735,45.989 +520322,65.873,43.685 +520323,67.141,41.229 +520324,68.586,38.588 +520325,63.416,45.957 +520326,64.594,43.678 +520327,65.906,41.25 +520328,67.397,38.641 +520329,62.098,45.923 +520330,63.316,43.671 +520331,64.67,41.273 +520332,66.206,38.697 +520333,60.78,45.887 +520334,62.038,43.663 +520335,63.434,41.295 +520336,65.013,38.754 +520337,59.464,45.85 +520338,60.761,43.655 +520339,62.197,41.319 +520340,63.819,38.814 +520341,58.148,45.812 +520342,59.483,43.646 +520343,60.96,41.343 +520344,62.623,38.876 +520345,56.834,45.771 +520346,58.207,43.636 +520347,59.722,41.368 +520348,61.425,38.939 +520349,55.52,45.73 +520350,56.93,43.626 +520351,58.483,41.393 +520352,60.225,39.004 +520353,54.208,45.686 +520354,55.654,43.616 +520355,57.245,41.419 +520356,59.024,39.072 +520357,52.897,45.642 +520358,54.378,43.605 +520359,56.005,41.446 +520360,57.821,39.141 +520361,51.587,45.595 +520362,53.103,43.594 +520363,54.765,41.474 +520364,56.616,39.212 +520365,50.278,45.548 +520366,51.828,43.582 +520367,53.525,41.502 +520368,55.409,39.284 +520369,48.97,45.498 +520370,50.554,43.57 +520371,52.284,41.53 +520372,54.201,39.358 +520373,47.663,45.448 +520374,49.28,43.558 +520375,51.042,41.559 +520376,52.99,39.434 +520377,46.358,45.396 +520378,48.006,43.545 +520379,49.8,41.589 +520380,51.777,39.512 +520381,45.054,45.343 +520382,46.733,43.532 +520383,48.557,41.62 +520384,50.563,39.591 +520385,43.751,45.288 +520386,45.461,43.518 +520387,47.313,41.651 +520388,49.346,39.671 +520389,42.45,45.232 +520390,44.189,43.504 +520391,46.069,41.682 +520392,48.127,39.753 +520393,41.15,45.175 +520394,42.917,43.489 +520395,44.824,41.714 +520396,46.907,39.836 +520397,39.852,45.116 +520398,41.646,43.474 +520399,43.579,41.747 +520400,45.684,39.921 +520401,38.554,45.057 +520402,40.375,43.459 +520403,42.333,41.78 +520404,44.459,40.007 +520405,37.259,44.996 +520406,39.105,43.444 +520407,41.086,41.814 +520408,43.233,40.095 +520409,35.965,44.934 +520410,37.835,43.428 +520411,39.839,41.848 +520412,42.004,40.183 +520413,34.672,44.871 +520414,36.566,43.412 +520415,38.59,41.882 +520416,40.773,40.273 +520417,33.381,44.806 +520418,35.298,43.395 +520419,37.342,41.917 +520420,39.54,40.364 +520421,32.091,44.741 +520422,34.03,43.379 +520423,36.092,41.953 +520424,38.304,40.456 +520425,30.803,44.675 +520426,32.762,43.362 +520427,34.842,41.989 +520428,37.067,40.548 +520429,29.517,44.607 +520430,31.495,43.345 +520431,33.591,42.025 +520432,35.828,40.642 +520433,28.232,44.539 +520434,30.229,43.327 +520435,32.34,42.062 +520436,34.586,40.737 +520437,26.949,44.47 +520438,28.963,43.309 +520439,31.088,42.099 +520440,33.343,40.833 +520441,25.667,44.399 +520442,27.698,43.291 +520443,29.835,42.136 +520444,32.097,40.929 +520445,24.388,44.328 +520446,26.433,43.273 +520447,28.581,42.174 +520448,30.849,41.027 +520449,23.11,44.257 +520450,25.169,43.255 +520451,27.327,42.212 +520452,29.599,41.125 +520453,21.833,44.184 +520454,23.905,43.236 +520455,26.072,42.251 +520456,28.347,41.223 +520457,20.559,44.111 +520458,22.642,43.218 +520459,24.816,42.289 +520460,27.093,41.323 +520461,19.286,44.037 +520462,21.38,43.199 +520463,23.56,42.328 +520464,25.837,41.422 +520465,18.015,43.962 +520466,20.118,43.18 +520467,22.303,42.368 +520468,24.578,41.523 +520469,16.746,43.886 +520470,18.857,43.161 +520471,21.045,42.407 +520472,23.318,41.624 +520473,15.478,43.811 +520474,17.597,43.142 +520475,19.786,42.447 +520476,22.056,41.725 +520477,14.213,43.734 +520478,16.337,43.122 +520479,18.527,42.487 +520480,20.791,41.826 +520481,12.949,43.657 +520482,15.077,43.103 +520483,17.267,42.527 +520484,19.525,41.928 +520485,11.687,43.58 +520486,13.818,43.084 +520487,16.006,42.568 +520488,18.256,42.031 +520489,10.427,43.502 +520490,12.56,43.064 +520491,14.745,42.608 +520492,16.986,42.133 +520493,9.1692,43.423 +520494,11.303,43.045 +520495,13.483,42.649 +520496,15.714,42.236 +520497,7.913,43.345 +520498,10.046,43.025 +520499,12.22,42.69 +520500,14.439,42.338 +520501,6.6588,43.266 +520502,8.7893,43.005 +520503,10.957,42.731 +520504,13.163,42.441 +520505,5.4064,43.187 +520506,7.5336,42.986 +520507,9.6924,42.772 +520508,11.885,42.544 +520509,4.156,43.107 +520510,6.2784,42.966 +520511,8.4275,42.813 +520512,10.605,42.647 +520513,2.9075,43.028 +520514,5.0239,42.947 +520515,7.1619,42.854 +520516,9.3229,42.749 +520517,1.6609,42.948 +520518,3.7699,42.928 +520519,5.8957,42.896 +520520,8.0391,42.852 +520521,0.41628,42.868 +520522,2.5165,42.908 +520523,4.6287,42.937 +520524,6.7535,42.954 +520525,359.17,42.788 +520526,1.2638,42.889 +520527,3.3611,42.979 +520528,5.466,43.057 +520529,357.93,42.709 +520530,0.011573,42.87 +520531,2.0927,43.02 +520532,4.1768,43.159 +520533,356.69,42.629 +520534,358.76,42.851 +520535,0.82376,43.062 +520536,2.8859,43.26 +520537,355.46,42.549 +520538,357.51,42.832 +520539,359.55,43.103 +520540,1.5932,43.362 +520541,354.22,42.47 +520542,356.26,42.813 +520543,358.28,43.144 +520544,0.29878,43.463 +520545,352.99,42.391 +520546,355.01,42.795 +520547,357.01,43.186 +520548,359,43.563 +520549,351.76,42.312 +520550,353.76,42.776 +520551,355.74,43.227 +520552,357.7,43.663 +520553,350.53,42.233 +520554,352.51,42.758 +520555,354.47,43.268 +520556,356.41,43.763 +520557,349.3,42.155 +520558,351.26,42.74 +520559,353.2,43.309 +520560,355.1,43.862 +520561,348.08,42.077 +520562,350.01,42.723 +520563,351.92,43.35 +520564,353.8,43.96 +520565,346.85,41.999 +520566,348.77,42.705 +520567,350.65,43.391 +520568,352.5,44.058 +520569,345.63,41.922 +520570,347.52,42.688 +520571,349.37,43.432 +520572,351.19,44.155 +520573,344.41,41.846 +520574,346.28,42.671 +520575,348.1,43.473 +520576,349.89,44.252 +520577,343.19,41.77 +520578,345.03,42.654 +520579,346.82,43.513 +520580,348.58,44.347 +520581,341.98,41.694 +520582,343.78,42.638 +520583,345.55,43.554 +520584,347.27,44.442 +520585,340.76,41.62 +520586,342.54,42.622 +520587,344.27,43.594 +520588,345.96,44.536 +520589,339.55,41.546 +520590,341.3,42.606 +520591,342.99,43.634 +520592,344.64,44.629 +520593,338.34,41.473 +520594,340.05,42.591 +520595,341.71,43.673 +520596,343.33,44.722 +520597,337.13,41.4 +520598,338.81,42.576 +520599,340.44,43.713 +520600,342.01,44.813 +520601,335.93,41.329 +520602,337.57,42.561 +520603,339.16,43.752 +520604,340.7,44.903 +520605,334.72,41.258 +520606,336.33,42.547 +520607,337.88,43.791 +520608,339.38,44.993 +520609,333.52,41.189 +520610,335.08,42.533 +520611,336.6,43.829 +520612,338.06,45.081 +520613,332.32,41.12 +520614,333.84,42.52 +520615,335.32,43.868 +520616,336.74,45.168 +520617,331.12,41.053 +520618,332.6,42.507 +520619,334.03,43.906 +520620,335.42,45.254 +520621,329.92,40.986 +520622,331.36,42.494 +520623,332.75,43.944 +520624,334.1,45.339 +520625,328.72,40.921 +520626,330.12,42.482 +520627,331.47,43.981 +520628,332.77,45.423 +520629,327.52,40.857 +520630,328.88,42.47 +520631,330.19,44.018 +520632,331.45,45.506 +520633,326.33,40.794 +520634,327.64,42.459 +520635,328.9,44.055 +520636,330.12,45.587 +520637,325.14,40.733 +520638,326.4,42.449 +520639,327.62,44.091 +520640,328.8,45.668 +520641,323.95,40.672 +520642,325.17,42.439 +520643,326.34,44.127 +520644,327.47,45.746 +520645,322.76,40.614 +520646,323.93,42.429 +520647,325.05,44.163 +520648,326.14,45.824 +520649,321.57,40.556 +520650,322.69,42.42 +520651,323.77,44.198 +520652,324.81,45.9 +520653,320.38,40.5 +520654,321.45,42.412 +520655,322.48,44.233 +520656,323.48,45.975 +520657,319.2,40.446 +520658,320.22,42.404 +520659,321.2,44.268 +520660,322.15,46.049 +520661,318.01,40.393 +520662,318.98,42.396 +520663,319.91,44.302 +520664,320.82,46.121 +520665,316.83,40.341 +520666,317.74,42.389 +520667,318.63,44.335 +520668,319.49,46.192 +520669,315.65,40.291 +520670,316.51,42.383 +520671,317.34,44.369 +520672,318.15,46.261 +520673,314.47,40.243 +520674,315.27,42.378 +520675,316.05,44.401 +520676,316.82,46.329 +520677,313.29,40.197 +520678,314.03,42.373 +520679,314.77,44.434 +520680,315.49,46.395 +520681,312.11,40.152 +520682,312.8,42.368 +520683,313.48,44.465 +520684,314.15,46.46 +520685,310.93,40.109 +520686,311.56,42.365 +520687,312.19,44.497 +520688,312.81,46.523 +520689,309.75,40.068 +520690,310.33,42.362 +520691,310.9,44.528 +520692,311.48,46.584 +520693,308.58,40.029 +520694,309.09,42.359 +520695,309.62,44.558 +520696,310.14,46.644 +520697,307.4,39.992 +520698,307.86,42.357 +520699,308.33,44.588 +520700,308.81,46.703 +520701,306.22,39.956 +520702,306.62,42.356 +520703,307.04,44.617 +520704,307.47,46.76 +520705,305.05,39.923 +520706,305.39,42.356 +520707,305.75,44.646 +520708,306.13,46.815 +520709,303.88,39.891 +520710,304.15,42.356 +520711,304.46,44.675 +520712,304.79,46.869 +520713,302.7,39.861 +520714,302.92,42.357 +520715,303.17,44.702 +520716,303.45,46.921 +520717,301.53,39.834 +520718,301.68,42.359 +520719,301.88,44.73 +520720,302.12,46.971 +520721,300.36,39.808 +520722,300.45,42.361 +520723,300.59,44.757 +520724,300.78,47.02 +520725,299.18,39.785 +520726,299.21,42.364 +520727,299.3,44.783 +520728,299.44,47.067 +520729,298.01,39.764 +520730,297.98,42.368 +520731,298.01,44.809 +520732,298.1,47.112 +520733,296.84,39.744 +520734,296.75,42.373 +520735,296.72,44.834 +520736,296.76,47.155 +520737,295.67,39.727 +520738,295.51,42.378 +520739,295.44,44.858 +520740,295.42,47.197 +520741,294.5,39.712 +520742,294.28,42.384 +520743,294.15,44.882 +520744,294.08,47.237 +520745,293.32,39.7 +520746,293.04,42.391 +520747,292.86,44.906 +520748,292.74,47.275 +520749,292.15,39.689 +520750,291.81,42.398 +520751,291.57,44.929 +520752,291.4,47.312 +520753,290.98,39.681 +520754,290.57,42.406 +520755,290.28,44.951 +520756,290.06,47.347 +520757,289.81,39.675 +520758,289.34,42.415 +520759,288.99,44.973 +520760,288.72,47.38 +520761,288.64,39.671 +520762,288.1,42.425 +520763,287.7,44.994 +520764,287.38,47.411 +520765,287.46,39.669 +520766,286.87,42.435 +520767,286.41,45.015 +520768,286.04,47.441 +520769,286.29,39.67 +520770,285.63,42.447 +520771,285.12,45.035 +520772,284.7,47.468 +520773,285.12,39.673 +520774,284.39,42.459 +520775,283.83,45.054 +520776,283.37,47.494 +520777,283.94,39.678 +520778,283.16,42.471 +520779,282.54,45.073 +520780,282.03,47.518 +520781,282.77,39.686 +520782,281.92,42.485 +520783,281.25,45.092 +520784,280.69,47.541 +520785,281.59,39.696 +520786,280.69,42.499 +520787,279.96,45.11 +520788,279.35,47.562 +520789,280.41,39.708 +520790,279.45,42.514 +520791,278.67,45.127 +520792,278.01,47.58 +520793,279.24,39.722 +520794,278.21,42.53 +520795,277.38,45.143 +520796,276.68,47.597 +520797,278.06,39.739 +520798,276.97,42.547 +520799,276.09,45.159 +520800,275.34,47.613 +520801,276.88,39.758 +520802,275.74,42.564 +520803,274.8,45.175 +520804,274,47.626 +520805,275.7,39.779 +520806,274.5,42.582 +520807,273.51,45.19 +520808,272.67,47.638 +520809,274.52,39.803 +520810,273.26,42.601 +520811,272.22,45.204 +520812,271.33,47.648 +520813,273.33,39.829 +520814,272.02,42.621 +520815,270.93,45.218 +520816,270,47.656 +520817,272.15,39.857 +520818,270.78,42.641 +520819,269.64,45.231 +520820,268.67,47.662 +520821,270.96,39.887 +520822,269.54,42.662 +520823,268.35,45.244 +520824,267.33,47.667 +520825,269.78,39.92 +520826,268.3,42.684 +520827,267.07,45.256 +520828,266,47.67 +520829,268.59,39.955 +520830,267.06,42.706 +520831,265.78,45.267 +520832,264.67,47.671 +520833,267.4,39.992 +520834,265.82,42.73 +520835,264.49,45.278 +520836,263.34,47.671 +520837,266.21,40.032 +520838,264.58,42.754 +520839,263.2,45.288 +520840,262.01,47.668 +520841,265.02,40.073 +520842,263.34,42.779 +520843,261.91,45.298 +520844,260.68,47.664 +520845,263.82,40.117 +520846,262.1,42.804 +520847,260.63,45.307 +520848,259.35,47.659 +520849,262.63,40.163 +520850,260.85,42.83 +520851,259.34,45.316 +520852,258.02,47.651 +520853,261.43,40.211 +520854,259.61,42.857 +520855,258.05,45.324 +520856,256.69,47.642 +520857,260.23,40.261 +520858,258.37,42.885 +520859,256.77,45.332 +520860,255.37,47.632 +520861,259.03,40.313 +520862,257.12,42.913 +520863,255.48,45.339 +520864,254.04,47.619 +520865,257.83,40.367 +520866,255.88,42.943 +520867,254.2,45.345 +520868,252.72,47.605 +520869,256.62,40.424 +520870,254.63,42.972 +520871,252.91,45.351 +520872,251.4,47.59 +520873,255.42,40.482 +520874,253.39,43.003 +520875,251.63,45.357 +520876,250.07,47.572 +520877,254.21,40.542 +520878,252.14,43.034 +520879,250.34,45.362 +520880,248.75,47.554 +520881,253,40.604 +520882,250.89,43.066 +520883,249.06,45.366 +520884,247.43,47.533 +520885,251.79,40.668 +520886,249.64,43.098 +520887,247.78,45.37 +520888,246.11,47.511 +520889,250.57,40.734 +520890,248.39,43.131 +520891,246.49,45.374 +520892,244.8,47.488 +520893,249.36,40.802 +520894,247.15,43.165 +520895,245.21,45.377 +520896,243.48,47.463 +520897,248.14,40.872 +520898,245.9,43.199 +520899,243.93,45.379 +520900,242.17,47.436 +520901,246.92,40.944 +520902,244.65,43.234 +520903,242.65,45.381 +520904,240.85,47.408 +520905,245.7,41.017 +520906,243.39,43.27 +520907,241.36,45.383 +520908,239.54,47.379 +520909,244.47,41.092 +520910,242.14,43.306 +520911,240.08,45.384 +520912,238.23,47.348 +520913,243.24,41.168 +520914,240.89,43.343 +520915,238.8,45.385 +520916,236.92,47.316 +520917,242.02,41.246 +520918,239.64,43.38 +520919,237.52,45.385 +520920,235.61,47.282 +520921,240.78,41.326 +520922,238.38,43.418 +520923,236.24,45.385 +520924,234.3,47.247 +520925,239.55,41.408 +520926,237.13,43.456 +520927,234.96,45.384 +520928,233,47.211 +520929,238.31,41.491 +520930,235.87,43.495 +520931,233.68,45.384 +520932,231.69,47.173 +520933,237.08,41.575 +520934,234.62,43.535 +520935,232.41,45.382 +520936,230.39,47.134 +520937,235.84,41.661 +520938,233.36,43.575 +520939,231.13,45.38 +520940,229.09,47.094 +520941,234.59,41.748 +520942,232.1,43.615 +520943,229.85,45.378 +520944,227.79,47.052 +520945,233.35,41.836 +520946,230.84,43.656 +520947,228.57,45.376 +520948,226.49,47.009 +520949,232.1,41.926 +520950,229.58,43.698 +520951,227.3,45.373 +520952,225.2,46.965 +520953,230.85,42.017 +520954,228.32,43.74 +520955,226.02,45.37 +520956,223.9,46.92 +520957,229.6,42.109 +520958,227.06,43.782 +520959,224.75,45.366 +520960,222.61,46.874 +520961,228.35,42.203 +520962,225.8,43.825 +520963,223.47,45.363 +520964,221.32,46.827 +520965,227.09,42.297 +520966,224.54,43.868 +520967,222.2,45.359 +520968,220.03,46.779 +520969,225.83,42.393 +520970,223.28,43.912 +520971,220.92,45.354 +520972,218.74,46.729 +520973,224.57,42.489 +520974,222.01,43.956 +520975,219.65,45.349 +520976,217.45,46.679 +520977,223.31,42.587 +520978,220.75,44 +520979,218.38,45.344 +520980,216.17,46.627 +520981,222.05,42.685 +520982,219.48,44.045 +520983,217.11,45.339 +520984,214.89,46.575 +520985,220.78,42.785 +520986,218.22,44.09 +520987,215.84,45.334 +520988,213.6,46.522 +520989,219.51,42.885 +520990,216.95,44.136 +520991,214.57,45.328 +520992,212.32,46.468 +520993,218.24,42.986 +520994,215.68,44.182 +520995,213.3,45.322 +520996,211.05,46.413 +520997,216.97,43.088 +520998,214.42,44.228 +520999,212.03,45.316 +521000,209.77,46.357 +521001,215.69,43.19 +521002,213.15,44.274 +521003,210.76,45.31 +521004,208.5,46.301 +521005,214.41,43.293 +521006,211.88,44.321 +521007,209.49,45.303 +521008,207.22,46.244 +521009,213.13,43.397 +521010,210.61,44.368 +521011,208.22,45.296 +521012,205.95,46.186 +521013,211.85,43.501 +521014,209.34,44.415 +521015,206.95,45.29 +521016,204.69,46.127 +521017,210.57,43.606 +521018,208.06,44.463 +521019,205.69,45.283 +521020,203.42,46.068 +521021,209.28,43.711 +521022,206.79,44.511 +521023,204.42,45.275 +521024,202.15,46.008 +521025,207.99,43.817 +521026,205.52,44.559 +521027,203.15,45.268 +521028,200.89,45.948 +521029,206.7,43.922 +521030,204.24,44.607 +521031,201.89,45.261 +521032,199.63,45.887 +521033,205.41,44.029 +521034,202.97,44.655 +521035,200.63,45.253 +521036,198.37,45.826 +521037,204.11,44.135 +521038,201.69,44.703 +521039,199.36,45.246 +521040,197.11,45.764 +521041,202.82,44.242 +521042,200.42,44.752 +521043,198.1,45.238 +521044,195.86,45.702 +521045,201.52,44.349 +521046,199.14,44.801 +521047,196.84,45.231 +521048,194.6,45.64 +521049,200.22,44.456 +521050,197.86,44.85 +521051,195.57,45.223 +521052,193.35,45.577 +521053,198.92,44.563 +521054,196.58,44.899 +521055,194.31,45.215 +521056,192.1,45.514 +521057,197.61,44.67 +521058,195.3,44.948 +521059,193.05,45.208 +521060,190.85,45.451 +521061,196.31,44.777 +521062,194.02,44.997 +521063,191.79,45.2 +521064,189.61,45.388 +521065,195,44.884 +521066,192.74,45.046 +521067,190.53,45.192 +521068,188.36,45.324 +521069,193.69,44.991 +521070,191.46,45.095 +521071,189.27,45.185 +521072,187.12,45.261 +521073,192.38,45.098 +521074,190.18,45.144 +521075,188.01,45.177 +521076,185.88,45.197 +521077,191.07,45.204 +521078,188.89,45.194 +521079,186.75,45.17 +521080,184.64,45.133 +521081,189.75,45.311 +521082,187.61,45.243 +521083,185.5,45.162 +521084,183.41,45.069 +521085,188.44,45.417 +521086,186.33,45.292 +521087,184.24,45.155 +521088,182.17,45.006 +521089,187.12,45.523 +521090,185.04,45.341 +521091,182.98,45.148 +521092,180.94,44.942 +521093,185.8,45.628 +521094,183.76,45.391 +521095,181.73,45.141 +521096,179.71,44.879 +521097,184.48,45.733 +521098,182.47,45.44 +521099,180.47,45.134 +521100,178.48,44.816 +521101,183.16,45.837 +521102,181.18,45.489 +521103,179.22,45.127 +521104,177.25,44.753 +521105,181.83,45.941 +521106,179.9,45.538 +521107,177.96,45.12 +521108,176.03,44.69 +521109,180.51,46.045 +521110,178.61,45.586 +521111,176.71,45.114 +521112,174.8,44.628 +521113,179.18,46.148 +521114,177.32,45.635 +521115,175.45,45.108 +521116,173.58,44.566 +521117,177.85,46.25 +521118,176.03,45.684 +521119,174.2,45.102 +521120,172.36,44.505 +521121,176.52,46.352 +521122,174.74,45.732 +521123,172.95,45.096 +521124,171.14,44.444 +521125,175.19,46.453 +521126,173.45,45.78 +521127,171.7,45.09 +521128,169.93,44.383 +521129,173.86,46.553 +521130,172.16,45.828 +521131,170.44,45.085 +521132,168.71,44.323 +521133,172.53,46.653 +521134,170.87,45.876 +521135,169.19,45.08 +521136,167.5,44.264 +521137,171.19,46.752 +521138,169.58,45.924 +521139,167.94,45.075 +521140,166.29,44.205 +521141,169.86,46.85 +521142,168.28,45.972 +521143,166.69,45.07 +521144,165.08,44.147 +521145,168.52,46.947 +521146,166.99,46.019 +521147,165.44,45.066 +521148,163.87,44.089 +521149,167.18,47.043 +521150,165.7,46.066 +521151,164.19,45.062 +521152,162.66,44.033 +521153,165.84,47.138 +521154,164.4,46.113 +521155,162.94,45.059 +521156,161.46,43.977 +521157,164.5,47.233 +521158,163.11,46.159 +521159,161.69,45.056 +521160,160.25,43.922 +521161,163.16,47.326 +521162,161.81,46.205 +521163,160.45,45.053 +521164,159.05,43.868 +521165,161.82,47.418 +521166,160.52,46.251 +521167,159.2,45.05 +521168,157.85,43.815 +521169,160.48,47.51 +521170,159.22,46.297 +521171,157.95,45.048 +521172,156.65,43.763 +521173,159.13,47.6 +521174,157.93,46.342 +521175,156.7,45.047 +521176,155.45,43.711 +521177,157.79,47.689 +521178,156.63,46.387 +521179,155.45,45.045 +521180,154.26,43.661 +521181,156.44,47.777 +521182,155.33,46.432 +521183,154.21,45.044 +521184,153.06,43.612 +521185,155.09,47.864 +521186,154.04,46.476 +521187,152.96,45.044 +521188,151.87,43.564 +521189,153.75,47.949 +521190,152.74,46.52 +521191,151.71,45.044 +521192,150.67,43.518 +521193,152.4,48.033 +521194,151.44,46.564 +521195,150.47,45.045 +521196,149.48,43.472 +521197,151.05,48.116 +521198,150.14,46.607 +521199,149.22,45.045 +521200,148.29,43.428 +521201,149.7,48.198 +521202,148.84,46.65 +521203,147.98,45.047 +521204,147.1,43.385 +521205,148.35,48.279 +521206,147.54,46.692 +521207,146.73,45.049 +521208,145.91,43.343 +521209,147,48.358 +521210,146.24,46.734 +521211,145.49,45.051 +521212,144.73,43.303 +521213,145.65,48.436 +521214,144.94,46.776 +521215,144.24,45.054 +521216,143.54,43.264 +521217,144.3,48.512 +521218,143.64,46.817 +521219,143,45.057 +521220,142.36,43.227 +521221,142.95,48.587 +521222,142.34,46.858 +521223,141.75,45.061 +521224,141.17,43.191 +521225,141.59,48.661 +521226,141.04,46.898 +521227,140.51,45.066 +521228,139.99,43.156 +521229,140.24,48.733 +521230,139.74,46.938 +521231,139.26,45.071 +521232,138.8,43.123 +521233,138.89,48.804 +521234,138.44,46.978 +521235,138.02,45.076 +521236,137.62,43.092 +521237,137.54,48.873 +521238,137.14,47.017 +521239,136.77,45.083 +521240,136.44,43.062 +521241,136.18,48.941 +521242,135.84,47.055 +521243,135.53,45.089 +521244,135.26,43.034 +521245,134.83,49.007 +521246,134.54,47.093 +521247,134.28,45.097 +521248,134.08,43.008 +521249,133.47,49.072 +521250,133.24,47.131 +521251,133.04,45.104 +521252,132.89,42.983 +521253,132.12,49.135 +521254,131.93,47.168 +521255,131.79,45.113 +521256,131.71,42.96 +521257,130.76,49.197 +521258,130.63,47.204 +521259,130.55,45.122 +521260,130.53,42.938 +521261,129.41,49.257 +521262,129.33,47.24 +521263,129.31,45.132 +521264,129.35,42.919 +521265,128.05,49.316 +521266,128.03,47.276 +521267,128.06,45.142 +521268,128.17,42.901 +521269,126.7,49.373 +521270,126.72,47.311 +521271,126.82,45.153 +521272,126.99,42.885 +521273,125.35,49.428 +521274,125.42,47.345 +521275,125.57,45.164 +521276,125.82,42.871 +521277,123.99,49.482 +521278,124.12,47.379 +521279,124.33,45.177 +521280,124.64,42.859 +521281,122.64,49.534 +521282,122.82,47.413 +521283,123.08,45.19 +521284,123.46,42.848 +521285,121.28,49.584 +521286,121.51,47.446 +521287,121.84,45.203 +521288,122.28,42.84 +521289,119.93,49.633 +521290,120.21,47.478 +521291,120.59,45.217 +521292,121.1,42.833 +521293,118.57,49.68 +521294,118.91,47.51 +521295,119.35,45.232 +521296,119.92,42.829 +521297,117.22,49.726 +521298,117.61,47.541 +521299,118.1,45.247 +521300,118.73,42.826 +521301,115.86,49.77 +521302,116.3,47.572 +521303,116.86,45.263 +521304,117.55,42.825 +521305,114.51,49.812 +521306,115,47.602 +521307,115.61,45.28 +521308,116.37,42.827 +521309,113.16,49.852 +521310,113.7,47.632 +521311,114.36,45.298 +521312,115.19,42.83 +521313,111.8,49.891 +521314,112.4,47.661 +521315,113.12,45.316 +521316,114.01,42.835 +521317,110.45,49.928 +521318,111.09,47.689 +521319,111.87,45.334 +521320,112.82,42.843 +521321,109.1,49.964 +521322,109.79,47.717 +521323,110.62,45.354 +521324,111.64,42.852 +521325,107.75,49.997 +521326,108.49,47.745 +521327,109.38,45.374 +521328,110.45,42.863 +521329,106.4,50.029 +521330,107.19,47.772 +521331,108.13,45.395 +521332,109.27,42.877 +521333,105.05,50.06 +521334,105.89,47.798 +521335,106.88,45.416 +521336,108.08,42.892 +521337,103.7,50.088 +521338,104.58,47.824 +521339,105.63,45.438 +521340,106.89,42.91 +521341,102.35,50.115 +521342,103.28,47.849 +521343,104.38,45.461 +521344,105.7,42.929 +521345,101,50.14 +521346,101.98,47.874 +521347,103.14,45.484 +521348,104.51,42.951 +521349,99.649,50.164 +521350,100.68,47.898 +521351,101.89,45.509 +521352,103.32,42.975 +521353,98.301,50.186 +521354,99.379,47.921 +521355,100.64,45.533 +521356,102.13,43.001 +521357,96.954,50.206 +521358,98.078,47.944 +521359,99.386,45.559 +521360,100.94,43.028 +521361,95.608,50.224 +521362,96.778,47.966 +521363,98.136,45.585 +521364,99.742,43.058 +521365,94.262,50.241 +521366,95.477,47.988 +521367,96.884,45.612 +521368,98.546,43.09 +521369,92.918,50.256 +521370,94.177,48.009 +521371,95.633,45.64 +521372,97.348,43.124 +521373,91.574,50.27 +521374,92.877,48.03 +521375,94.381,45.668 +521376,96.148,43.16 +521377,90.231,50.282 +521378,91.578,48.05 +521379,93.128,45.697 +521380,94.947,43.198 +521381,88.889,50.292 +521382,90.278,48.07 +521383,91.875,45.726 +521384,93.745,43.238 +521385,87.548,50.3 +521386,88.979,48.089 +521387,90.621,45.756 +521388,92.541,43.28 +521389,86.208,50.307 +521390,87.681,48.107 +521391,89.367,45.787 +521392,91.335,43.323 +521393,84.869,50.312 +521394,86.382,48.125 +521395,88.112,45.818 +521396,90.127,43.369 +521397,83.531,50.316 +521398,85.084,48.143 +521399,86.857,45.85 +521400,88.917,43.417 +521401,82.194,50.318 +521402,83.786,48.16 +521403,85.601,45.883 +521404,87.706,43.467 +521405,80.858,50.319 +521406,82.489,48.176 +521407,84.344,45.917 +521408,86.493,43.518 +521409,79.523,50.318 +521410,81.192,48.192 +521411,83.087,45.951 +521412,85.277,43.572 +521413,78.189,50.315 +521414,79.895,48.207 +521415,81.829,45.985 +521416,84.06,43.627 +521417,76.856,50.311 +521418,78.599,48.222 +521419,80.57,46.02 +521420,82.841,43.684 +521421,75.525,50.305 +521422,77.303,48.236 +521423,79.311,46.056 +521424,81.62,43.744 +521425,74.195,50.298 +521426,76.008,48.25 +521427,78.052,46.093 +521428,80.397,43.804 +521429,72.866,50.289 +521430,74.713,48.264 +521431,76.791,46.13 +521432,79.171,43.867 +521433,71.538,50.279 +521434,73.418,48.276 +521435,75.53,46.167 +521436,77.944,43.931 +521437,70.212,50.267 +521438,72.124,48.289 +521439,74.268,46.205 +521440,76.714,43.997 +521441,68.887,50.254 +521442,70.83,48.301 +521443,73.006,46.244 +521444,75.483,44.065 +521445,67.564,50.239 +521446,69.537,48.312 +521447,71.743,46.283 +521448,74.249,44.135 +521449,66.241,50.224 +521450,68.244,48.323 +521451,70.479,46.323 +521452,73.013,44.206 +521453,64.921,50.206 +521454,66.952,48.334 +521455,69.214,46.363 +521456,71.774,44.279 +521457,63.601,50.187 +521458,65.66,48.344 +521459,67.949,46.404 +521460,70.534,44.353 +521461,62.283,50.167 +521462,64.369,48.353 +521463,66.683,46.446 +521464,69.291,44.429 +521465,60.967,50.146 +521466,63.078,48.363 +521467,65.416,46.488 +521468,68.046,44.506 +521469,59.652,50.123 +521470,61.787,48.371 +521471,64.149,46.53 +521472,66.798,44.585 +521473,58.338,50.099 +521474,60.497,48.38 +521475,62.88,46.573 +521476,65.548,44.665 +521477,57.027,50.074 +521478,59.208,48.388 +521479,61.611,46.617 +521480,64.296,44.747 +521481,55.716,50.048 +521482,57.919,48.395 +521483,60.342,46.66 +521484,63.042,44.83 +521485,54.408,50.02 +521486,56.631,48.403 +521487,59.071,46.705 +521488,61.785,44.914 +521489,53.1,49.991 +521490,55.343,48.409 +521491,57.8,46.75 +521492,60.526,45 +521493,51.795,49.961 +521494,54.056,48.416 +521495,56.528,46.795 +521496,59.265,45.087 +521497,50.491,49.93 +521498,52.769,48.422 +521499,55.255,46.84 +521500,58.001,45.175 +521501,49.189,49.898 +521502,51.483,48.428 +521503,53.981,46.887 +521504,56.735,45.264 +521505,47.888,49.865 +521506,50.197,48.433 +521507,52.707,46.933 +521508,55.467,45.354 +521509,46.59,49.831 +521510,48.912,48.438 +521511,51.432,46.98 +521512,54.196,45.446 +521513,45.293,49.795 +521514,47.627,48.443 +521515,50.156,47.027 +521516,52.923,45.539 +521517,43.997,49.759 +521518,46.343,48.447 +521519,48.879,47.075 +521520,51.648,45.632 +521521,42.704,49.722 +521522,45.06,48.452 +521523,47.601,47.123 +521524,50.37,45.727 +521525,41.412,49.684 +521526,43.777,48.456 +521527,46.323,47.171 +521528,49.09,45.822 +521529,40.122,49.645 +521530,42.494,48.459 +521531,45.044,47.22 +521532,47.808,45.919 +521533,38.834,49.605 +521534,41.213,48.463 +521535,43.764,47.269 +521536,46.524,46.016 +521537,37.547,49.564 +521538,39.932,48.466 +521539,42.483,47.318 +521540,45.237,46.114 +521541,36.262,49.522 +521542,38.651,48.469 +521543,41.202,47.367 +521544,43.948,46.213 +521545,34.98,49.48 +521546,37.371,48.471 +521547,39.92,47.417 +521548,42.657,46.312 +521549,33.699,49.437 +521550,36.091,48.474 +521551,38.637,47.467 +521552,41.364,46.413 +521553,32.419,49.393 +521554,34.813,48.476 +521555,37.353,47.518 +521556,40.068,46.513 +521557,31.142,49.349 +521558,33.534,48.478 +521559,36.069,47.568 +521560,38.77,46.615 +521561,29.867,49.304 +521562,32.257,48.48 +521563,34.783,47.619 +521564,37.471,46.717 +521565,28.593,49.258 +521566,30.979,48.482 +521567,33.497,47.67 +521568,36.169,46.819 +521569,27.321,49.212 +521570,29.703,48.483 +521571,32.21,47.721 +521572,34.865,46.922 +521573,26.052,49.166 +521574,28.427,48.485 +521575,30.923,47.773 +521576,33.559,47.026 +521577,24.784,49.118 +521578,27.151,48.486 +521579,29.635,47.824 +521580,32.251,47.13 +521581,23.518,49.071 +521582,25.877,48.487 +521583,28.345,47.876 +521584,30.94,47.234 +521585,22.253,49.023 +521586,24.602,48.488 +521587,27.056,47.928 +521588,29.628,47.338 +521589,20.991,48.974 +521590,23.329,48.489 +521591,25.765,47.98 +521592,28.314,47.443 +521593,19.731,48.926 +521594,22.056,48.49 +521595,24.474,48.032 +521596,26.998,47.548 +521597,18.472,48.877 +521598,20.783,48.491 +521599,23.182,48.084 +521600,25.68,47.653 +521601,17.215,48.827 +521602,19.511,48.492 +521603,21.889,48.136 +521604,24.36,47.758 +521605,15.961,48.778 +521606,18.239,48.493 +521607,20.596,48.189 +521608,23.039,47.863 +521609,14.708,48.728 +521610,16.969,48.494 +521611,19.302,48.241 +521612,21.715,47.968 +521613,13.457,48.678 +521614,15.698,48.494 +521615,18.007,48.293 +521616,20.39,48.073 +521617,12.207,48.628 +521618,14.428,48.495 +521619,16.711,48.346 +521620,19.063,48.178 +521621,10.96,48.578 +521622,13.159,48.496 +521623,15.415,48.398 +521624,17.734,48.284 +521625,9.7144,48.528 +521626,11.89,48.497 +521627,14.118,48.451 +521628,16.403,48.389 +521629,8.4707,48.478 +521630,10.622,48.497 +521631,12.821,48.503 +521632,15.071,48.493 +521633,7.2289,48.428 +521634,9.3544,48.498 +521635,11.523,48.556 +521636,13.738,48.598 +521637,5.9888,48.378 +521638,8.0872,48.499 +521639,10.224,48.608 +521640,12.402,48.702 +521641,4.7505,48.328 +521642,6.8205,48.5 +521643,8.9243,48.66 +521644,11.065,48.806 +521645,3.514,48.278 +521646,5.5543,48.502 +521647,7.6242,48.713 +521648,9.7267,48.91 +521649,2.2793,48.229 +521650,4.2886,48.503 +521651,6.3235,48.765 +521652,8.3868,49.013 +521653,1.0463,48.179 +521654,3.0233,48.504 +521655,5.0223,48.817 +521656,7.0453,49.116 +521657,359.82,48.13 +521658,1.7586,48.506 +521659,3.7204,48.869 +521660,5.7025,49.219 +521661,358.59,48.082 +521662,0.49428,48.507 +521663,2.4179,48.921 +521664,4.3583,49.32 +521665,357.36,48.033 +521666,359.23,48.509 +521667,1.1149,48.973 +521668,3.0127,49.422 +521669,356.13,47.985 +521670,357.97,48.511 +521671,359.81,49.024 +521672,1.6658,49.523 +521673,354.91,47.938 +521674,356.7,48.513 +521675,358.51,49.076 +521676,0.31763,49.623 +521677,353.68,47.891 +521678,355.44,48.516 +521679,357.2,49.127 +521680,358.97,49.723 +521681,352.46,47.844 +521682,354.18,48.518 +521683,355.9,49.178 +521684,357.62,49.822 +521685,351.24,47.798 +521686,352.92,48.521 +521687,354.59,49.229 +521688,356.27,49.92 +521689,350.02,47.753 +521690,351.66,48.524 +521691,353.29,49.279 +521692,354.91,50.018 +521693,348.81,47.708 +521694,350.4,48.528 +521695,351.98,49.33 +521696,353.56,50.114 +521697,347.59,47.664 +521698,349.13,48.531 +521699,350.67,49.38 +521700,352.2,50.21 +521701,346.38,47.621 +521702,347.87,48.535 +521703,349.36,49.43 +521704,350.85,50.306 +521705,345.17,47.578 +521706,346.61,48.539 +521707,348.06,49.48 +521708,349.49,50.4 +521709,343.96,47.536 +521710,345.36,48.543 +521711,346.75,49.529 +521712,348.13,50.493 +521713,342.75,47.495 +521714,344.1,48.548 +521715,345.44,49.579 +521716,346.77,50.586 +521717,341.54,47.455 +521718,342.84,48.553 +521719,344.13,49.627 +521720,345.41,50.677 +521721,340.33,47.416 +521722,341.58,48.559 +521723,342.82,49.676 +521724,344.05,50.768 +521725,339.12,47.377 +521726,340.32,48.564 +521727,341.51,49.724 +521728,342.69,50.857 +521729,337.92,47.34 +521730,339.06,48.57 +521731,340.2,49.772 +521732,341.33,50.946 +521733,336.72,47.303 +521734,337.8,48.577 +521735,338.89,49.82 +521736,339.97,51.033 +521737,335.51,47.268 +521738,336.55,48.583 +521739,337.58,49.867 +521740,338.6,51.12 +521741,334.31,47.233 +521742,335.29,48.591 +521743,336.26,49.914 +521744,337.24,51.205 +521745,333.11,47.2 +521746,334.03,48.598 +521747,334.95,49.961 +521748,335.87,51.289 +521749,331.91,47.168 +521750,332.78,48.606 +521751,333.64,50.007 +521752,334.51,51.372 +521753,330.71,47.137 +521754,331.52,48.614 +521755,332.33,50.053 +521756,333.14,51.454 +521757,329.52,47.107 +521758,330.26,48.623 +521759,331.02,50.098 +521760,331.78,51.534 +521761,328.32,47.079 +521762,329.01,48.632 +521763,329.7,50.143 +521764,330.41,51.613 +521765,327.12,47.051 +521766,327.75,48.642 +521767,328.39,50.188 +521768,329.04,51.691 +521769,325.93,47.025 +521770,326.49,48.652 +521771,327.08,50.232 +521772,327.67,51.768 +521773,324.73,47 +521774,325.24,48.663 +521775,325.76,50.276 +521776,326.31,51.843 +521777,323.54,46.977 +521778,323.98,48.674 +521779,324.45,50.32 +521780,324.94,51.917 +521781,322.35,46.955 +521782,322.73,48.685 +521783,323.13,50.363 +521784,323.57,51.99 +521785,321.15,46.934 +521786,321.47,48.697 +521787,321.82,50.405 +521788,322.2,52.061 +521789,319.96,46.915 +521790,320.21,48.71 +521791,320.51,50.447 +521792,320.83,52.131 +521793,318.77,46.897 +521794,318.96,48.723 +521795,319.19,50.489 +521796,319.46,52.2 +521797,317.58,46.881 +521798,317.7,48.736 +521799,317.88,50.53 +521800,318.09,52.267 +521801,316.39,46.866 +521802,316.45,48.75 +521803,316.56,50.571 +521804,316.72,52.333 +521805,315.19,46.853 +521806,315.19,48.765 +521807,315.25,50.611 +521808,315.35,52.397 +521809,314,46.841 +521810,313.93,48.78 +521811,313.93,50.651 +521812,313.98,52.46 +521813,312.81,46.831 +521814,312.68,48.795 +521815,312.62,50.69 +521816,312.61,52.521 +521817,311.62,46.823 +521818,311.42,48.811 +521819,311.3,50.729 +521820,311.24,52.581 +521821,310.43,46.816 +521822,310.17,48.828 +521823,309.99,50.767 +521824,309.87,52.64 +521825,309.24,46.811 +521826,308.91,48.845 +521827,308.67,50.805 +521828,308.5,52.696 +521829,308.05,46.807 +521830,307.65,48.863 +521831,307.36,50.842 +521832,307.13,52.752 +521833,306.86,46.805 +521834,306.4,48.881 +521835,306.04,50.879 +521836,305.77,52.806 +521837,305.67,46.805 +521838,305.14,48.9 +521839,304.72,50.915 +521840,304.4,52.858 +521841,304.47,46.806 +521842,303.88,48.919 +521843,303.41,50.951 +521844,303.03,52.909 +521845,303.28,46.809 +521846,302.63,48.939 +521847,302.09,50.986 +521848,301.66,52.958 +521849,302.09,46.814 +521850,301.37,48.96 +521851,300.78,51.021 +521852,300.29,53.005 +521853,300.9,46.82 +521854,300.11,48.981 +521855,299.46,51.055 +521856,298.92,53.051 +521857,299.7,46.829 +521858,298.85,49.003 +521859,298.15,51.089 +521860,297.56,53.096 +521861,298.51,46.839 +521862,297.6,49.025 +521863,296.83,51.122 +521864,296.19,53.139 +521865,297.31,46.851 +521866,296.34,49.048 +521867,295.52,51.154 +521868,294.82,53.18 +521869,296.12,46.864 +521870,295.08,49.071 +521871,294.2,51.186 +521872,293.46,53.22 +521873,294.92,46.88 +521874,293.82,49.095 +521875,292.89,51.218 +521876,292.09,53.258 +521877,293.72,46.897 +521878,292.56,49.12 +521879,291.58,51.249 +521880,290.73,53.295 +521881,292.52,46.916 +521882,291.3,49.145 +521883,290.26,51.279 +521884,289.36,53.329 +521885,291.32,46.936 +521886,290.04,49.171 +521887,288.95,51.309 +521888,288,53.363 +521889,290.12,46.959 +521890,288.78,49.197 +521891,287.63,51.339 +521892,286.64,53.395 +521893,288.92,46.983 +521894,287.52,49.224 +521895,286.32,51.367 +521896,285.28,53.425 +521897,287.72,47.009 +521898,286.26,49.252 +521899,285.01,51.396 +521900,283.91,53.453 +521901,286.52,47.037 +521902,285,49.28 +521903,283.69,51.423 +521904,282.55,53.48 +521905,285.31,47.067 +521906,283.74,49.308 +521907,282.38,51.451 +521908,281.19,53.506 +521909,284.1,47.099 +521910,282.48,49.338 +521911,281.07,51.477 +521912,279.83,53.53 +521913,282.9,47.132 +521914,281.21,49.368 +521915,279.76,51.504 +521916,278.48,53.552 +521917,281.69,47.167 +521918,279.95,49.398 +521919,278.44,51.529 +521920,277.12,53.573 +521921,280.48,47.204 +521922,278.69,49.429 +521923,277.13,51.554 +521924,275.76,53.592 +521925,279.26,47.242 +521926,277.42,49.461 +521927,275.82,51.579 +521928,274.41,53.609 +521929,278.05,47.283 +521930,276.16,49.493 +521931,274.51,51.603 +521932,273.05,53.625 +521933,276.83,47.325 +521934,274.89,49.526 +521935,273.2,51.626 +521936,271.7,53.64 +521937,275.62,47.369 +521938,273.63,49.559 +521939,271.89,51.649 +521940,270.35,53.653 +521941,274.4,47.415 +521942,272.36,49.593 +521943,270.58,51.672 +521944,269,53.664 +521945,273.18,47.462 +521946,271.09,49.627 +521947,269.27,51.694 +521948,267.64,53.674 +521949,271.96,47.511 +521950,269.82,49.662 +521951,267.96,51.715 +521952,266.3,53.683 +521953,270.73,47.562 +521954,268.56,49.698 +521955,266.65,51.736 +521956,264.95,53.69 +521957,269.51,47.614 +521958,267.29,49.734 +521959,265.34,51.757 +521960,263.6,53.695 +521961,268.28,47.668 +521962,266.02,49.771 +521963,264.03,51.777 +521964,262.26,53.699 +521965,267.05,47.724 +521966,264.75,49.808 +521967,262.72,51.796 +521968,260.91,53.702 +521969,265.82,47.781 +521970,263.48,49.845 +521971,261.41,51.815 +521972,259.57,53.703 +521973,264.58,47.84 +521974,262.21,49.884 +521975,260.11,51.834 +521976,258.23,53.702 +521977,263.35,47.901 +521978,260.94,49.922 +521979,258.8,51.852 +521980,256.89,53.701 +521981,262.11,47.963 +521982,259.66,49.962 +521983,257.49,51.869 +521984,255.55,53.698 +521985,260.87,48.026 +521986,258.39,50.001 +521987,256.19,51.886 +521988,254.21,53.693 +521989,259.63,48.091 +521990,257.12,50.042 +521991,254.88,51.903 +521992,252.87,53.687 +521993,258.38,48.158 +521994,255.84,50.082 +521995,253.58,51.919 +521996,251.54,53.68 +521997,257.14,48.226 +521998,254.57,50.124 +521999,252.27,51.935 +522000,250.2,53.672 +522001,255.89,48.296 +522002,253.29,50.165 +522003,250.97,51.95 +522004,248.87,53.662 +522005,254.64,48.367 +522006,252.01,50.207 +522007,249.67,51.965 +522008,247.54,53.651 +522009,253.38,48.439 +522010,250.74,50.25 +522011,248.36,51.98 +522012,246.21,53.638 +522013,252.13,48.513 +522014,249.46,50.293 +522015,247.06,51.994 +522016,244.88,53.625 +522017,250.87,48.588 +522018,248.18,50.337 +522019,245.76,52.007 +522020,243.56,53.61 +522021,249.61,48.664 +522022,246.9,50.38 +522023,244.46,52.021 +522024,242.23,53.594 +522025,248.35,48.741 +522026,245.62,50.425 +522027,243.16,52.033 +522028,240.91,53.577 +522029,247.09,48.82 +522030,244.34,50.47 +522031,241.86,52.046 +522032,239.59,53.558 +522033,245.82,48.9 +522034,243.06,50.515 +522035,240.56,52.058 +522036,238.27,53.539 +522037,244.55,48.981 +522038,241.77,50.56 +522039,239.26,52.07 +522040,236.95,53.518 +522041,243.28,49.064 +522042,240.49,50.606 +522043,237.96,52.081 +522044,235.63,53.497 +522045,242.01,49.147 +522046,239.21,50.652 +522047,236.66,52.092 +522048,234.32,53.474 +522049,240.73,49.232 +522050,237.92,50.699 +522051,235.36,52.103 +522052,233.01,53.45 +522053,239.45,49.317 +522054,236.64,50.746 +522055,234.07,52.113 +522056,231.7,53.426 +522057,238.17,49.404 +522058,235.35,50.793 +522059,232.77,52.123 +522060,230.39,53.4 +522061,236.89,49.491 +522062,234.06,50.841 +522063,231.47,52.133 +522064,229.08,53.373 +522065,235.61,49.58 +522066,232.78,50.889 +522067,230.18,52.142 +522068,227.77,53.346 +522069,234.32,49.669 +522070,231.49,50.937 +522071,228.88,52.151 +522072,226.47,53.317 +522073,233.03,49.759 +522074,230.2,50.986 +522075,227.59,52.16 +522076,225.16,53.288 +522077,231.74,49.85 +522078,228.91,51.035 +522079,226.3,52.169 +522080,223.86,53.258 +522081,230.44,49.942 +522082,227.62,51.084 +522083,225,52.177 +522084,222.56,53.227 +522085,229.15,50.035 +522086,226.32,51.133 +522087,223.71,52.185 +522088,221.27,53.195 +522089,227.85,50.128 +522090,225.03,51.183 +522091,222.42,52.193 +522092,219.97,53.163 +522093,226.55,50.222 +522094,223.74,51.233 +522095,221.13,52.2 +522096,218.68,53.13 +522097,225.24,50.317 +522098,222.45,51.283 +522099,219.84,52.208 +522100,217.39,53.096 +522101,223.94,50.412 +522102,221.15,51.333 +522103,218.55,52.215 +522104,216.1,53.061 +522105,222.63,50.508 +522106,219.85,51.384 +522107,217.26,52.222 +522108,214.81,53.026 +522109,221.32,50.604 +522110,218.56,51.435 +522111,215.97,52.229 +522112,213.52,52.991 +522113,220.01,50.701 +522114,217.26,51.486 +522115,214.68,52.235 +522116,212.24,52.954 +522117,218.7,50.798 +522118,215.96,51.537 +522119,213.39,52.242 +522120,210.95,52.918 +522121,217.38,50.896 +522122,214.67,51.588 +522123,212.1,52.248 +522124,209.67,52.88 +522125,216.06,50.994 +522126,213.37,51.639 +522127,210.82,52.254 +522128,208.39,52.843 +522129,214.74,51.092 +522130,212.07,51.691 +522131,209.53,52.26 +522132,207.12,52.805 +522133,213.42,51.191 +522134,210.77,51.742 +522135,208.25,52.266 +522136,205.84,52.766 +522137,212.1,51.29 +522138,209.46,51.794 +522139,206.96,52.272 +522140,204.57,52.727 +522141,210.77,51.389 +522142,208.16,51.846 +522143,205.68,52.278 +522144,203.3,52.688 +522145,209.45,51.488 +522146,206.86,51.898 +522147,204.39,52.284 +522148,202.03,52.648 +522149,208.12,51.588 +522150,205.56,51.95 +522151,203.11,52.289 +522152,200.76,52.609 +522153,206.78,51.687 +522154,204.25,52.002 +522155,201.83,52.295 +522156,199.49,52.569 +522157,205.45,51.787 +522158,202.95,52.054 +522159,200.54,52.3 +522160,198.23,52.529 +522161,204.12,51.886 +522162,201.64,52.106 +522163,199.26,52.306 +522164,196.97,52.488 +522165,202.78,51.986 +522166,200.34,52.158 +522167,197.98,52.311 +522168,195.71,52.448 +522169,201.44,52.085 +522170,199.03,52.21 +522171,196.7,52.316 +522172,194.45,52.407 +522173,200.1,52.185 +522174,197.72,52.262 +522175,195.42,52.322 +522176,193.19,52.367 +522177,198.76,52.284 +522178,196.41,52.314 +522179,194.14,52.327 +522180,191.94,52.326 +522181,197.41,52.383 +522182,195.1,52.366 +522183,192.86,52.333 +522184,190.68,52.286 +522185,196.07,52.482 +522186,193.8,52.418 +522187,191.59,52.338 +522188,189.43,52.245 +522189,194.72,52.581 +522190,192.49,52.47 +522191,190.31,52.344 +522192,188.18,52.205 +522193,193.37,52.679 +522194,191.17,52.522 +522195,189.03,52.35 +522196,186.94,52.165 +522197,192.02,52.777 +522198,189.86,52.573 +522199,187.75,52.355 +522200,185.69,52.125 +522201,190.67,52.875 +522202,188.55,52.625 +522203,186.48,52.361 +522204,184.44,52.085 +522205,189.32,52.972 +522206,187.24,52.677 +522207,185.2,52.367 +522208,183.2,52.045 +522209,187.96,53.069 +522210,185.93,52.728 +522211,183.93,52.373 +522212,181.96,52.006 +522213,186.61,53.166 +522214,184.61,52.779 +522215,182.65,52.379 +522216,180.72,51.967 +522217,185.25,53.262 +522218,183.3,52.83 +522219,181.38,52.385 +522220,179.48,51.928 +522221,183.89,53.357 +522222,181.98,52.881 +522223,180.1,52.392 +522224,178.25,51.89 +522225,182.53,53.452 +522226,180.67,52.932 +522227,178.83,52.398 +522228,177.01,51.852 +522229,181.17,53.547 +522230,179.35,52.983 +522231,177.56,52.405 +522232,175.78,51.815 +522233,179.81,53.64 +522234,178.04,53.033 +522235,176.28,52.412 +522236,174.55,51.778 +522237,178.44,53.733 +522238,176.72,53.084 +522239,175.01,52.419 +522240,173.32,51.742 +522241,177.08,53.826 +522242,175.4,53.134 +522243,173.74,52.426 +522244,172.09,51.706 +522245,175.71,53.917 +522246,174.09,53.183 +522247,172.47,52.434 +522248,170.86,51.671 +522249,174.35,54.008 +522250,172.77,53.233 +522251,171.2,52.442 +522252,169.63,51.636 +522253,172.98,54.098 +522254,171.45,53.282 +522255,169.93,52.45 +522256,168.41,51.602 +522257,171.61,54.188 +522258,170.13,53.331 +522259,168.66,52.458 +522260,167.19,51.569 +522261,170.24,54.276 +522262,168.81,53.38 +522263,167.39,52.466 +522264,165.97,51.536 +522265,168.87,54.364 +522266,167.49,53.429 +522267,166.12,52.475 +522268,164.74,51.505 +522269,167.5,54.451 +522270,166.17,53.477 +522271,164.85,52.484 +522272,163.53,51.474 +522273,166.13,54.536 +522274,164.85,53.525 +522275,163.58,52.494 +522276,162.31,51.444 +522277,164.75,54.621 +522278,163.53,53.573 +522279,162.31,52.503 +522280,161.09,51.414 +522281,163.38,54.705 +522282,162.21,53.62 +522283,161.04,52.513 +522284,159.87,51.386 +522285,162.01,54.788 +522286,160.89,53.667 +522287,159.77,52.523 +522288,158.66,51.358 +522289,160.63,54.87 +522290,159.56,53.714 +522291,158.5,52.534 +522292,157.45,51.332 +522293,159.26,54.951 +522294,158.24,53.76 +522295,157.24,52.545 +522296,156.23,51.306 +522297,157.88,55.031 +522298,156.92,53.806 +522299,155.97,52.556 +522300,155.02,51.282 +522301,156.5,55.109 +522302,155.6,53.852 +522303,154.7,52.568 +522304,153.81,51.258 +522305,155.12,55.187 +522306,154.27,53.897 +522307,153.43,52.58 +522308,152.6,51.236 +522309,153.75,55.263 +522310,152.95,53.942 +522311,152.17,52.592 +522312,151.39,51.214 +522313,152.37,55.338 +522314,151.63,53.986 +522315,150.9,52.605 +522316,150.18,51.194 +522317,150.99,55.412 +522318,150.3,54.03 +522319,149.63,52.618 +522320,148.98,51.175 +522321,149.61,55.485 +522322,148.98,54.074 +522323,148.37,52.631 +522324,147.77,51.157 +522325,148.23,55.557 +522326,147.66,54.117 +522327,147.1,52.645 +522328,146.56,51.14 +522329,146.85,55.627 +522330,146.33,54.16 +522331,145.83,52.66 +522332,145.36,51.125 +522333,145.47,55.696 +522334,145.01,54.203 +522335,144.57,52.674 +522336,144.15,51.11 +522337,144.09,55.764 +522338,143.68,54.245 +522339,143.3,52.689 +522340,142.95,51.097 +522341,142.71,55.831 +522342,142.36,54.286 +522343,142.03,52.705 +522344,141.74,51.085 +522345,141.33,55.896 +522346,141.03,54.328 +522347,140.77,52.721 +522348,140.54,51.075 +522349,139.95,55.96 +522350,139.71,54.368 +522351,139.5,52.737 +522352,139.34,51.066 +522353,138.57,56.023 +522354,138.38,54.409 +522355,138.23,52.754 +522356,138.13,51.058 +522357,137.19,56.084 +522358,137.06,54.449 +522359,136.97,52.772 +522360,136.93,51.052 +522361,135.81,56.144 +522362,135.73,54.488 +522363,135.7,52.789 +522364,135.73,51.047 +522365,134.43,56.202 +522366,134.41,54.527 +522367,134.44,52.808 +522368,134.52,51.043 +522369,133.04,56.26 +522370,133.08,54.565 +522371,133.17,52.826 +522372,133.32,51.041 +522373,131.66,56.315 +522374,131.76,54.603 +522375,131.9,52.846 +522376,132.12,51.04 +522377,130.28,56.37 +522378,130.43,54.641 +522379,130.64,52.865 +522380,130.91,51.041 +522381,128.9,56.423 +522382,129.1,54.678 +522383,129.37,52.886 +522384,129.71,51.043 +522385,127.52,56.474 +522386,127.78,54.714 +522387,128.1,52.906 +522388,128.51,51.047 +522389,126.14,56.524 +522390,126.45,54.75 +522391,126.84,52.927 +522392,127.31,51.052 +522393,124.76,56.573 +522394,125.13,54.786 +522395,125.57,52.949 +522396,126.1,51.059 +522397,123.39,56.62 +522398,123.8,54.821 +522399,124.3,52.971 +522400,124.9,51.067 +522401,122.01,56.665 +522402,122.48,54.856 +522403,123.03,52.994 +522404,123.69,51.077 +522405,120.63,56.71 +522406,121.15,54.89 +522407,121.77,53.017 +522408,122.49,51.088 +522409,119.25,56.752 +522410,119.83,54.923 +522411,120.5,53.041 +522412,121.28,51.101 +522413,117.87,56.794 +522414,118.5,54.956 +522415,119.23,53.065 +522416,120.08,51.115 +522417,116.5,56.833 +522418,117.18,54.989 +522419,117.96,53.09 +522420,118.87,51.131 +522421,115.12,56.872 +522422,115.85,55.021 +522423,116.69,53.115 +522424,117.66,51.148 +522425,113.74,56.909 +522426,114.53,55.053 +522427,115.43,53.14 +522428,116.46,51.168 +522429,112.37,56.944 +522430,113.2,55.084 +522431,114.16,53.167 +522432,115.25,51.188 +522433,110.99,56.978 +522434,111.88,55.114 +522435,112.89,53.193 +522436,114.04,51.211 +522437,109.62,57.01 +522438,110.56,55.144 +522439,111.62,53.221 +522440,112.83,51.234 +522441,108.25,57.041 +522442,109.23,55.174 +522443,110.35,53.248 +522444,111.62,51.26 +522445,106.87,57.07 +522446,107.91,55.203 +522447,109.08,53.277 +522448,110.4,51.287 +522449,105.5,57.098 +522450,106.59,55.231 +522451,107.81,53.305 +522452,109.19,51.315 +522453,104.13,57.125 +522454,105.26,55.259 +522455,106.53,53.335 +522456,107.97,51.346 +522457,102.76,57.15 +522458,103.94,55.287 +522459,105.26,53.365 +522460,106.76,51.377 +522461,101.39,57.173 +522462,102.62,55.314 +522463,103.99,53.395 +522464,105.54,51.411 +522465,100.02,57.195 +522466,101.3,55.34 +522467,102.72,53.426 +522468,104.32,51.446 +522469,98.657,57.216 +522470,99.974,55.366 +522471,101.45,53.457 +522472,103.1,51.482 +522473,97.291,57.235 +522474,98.652,55.392 +522475,100.17,53.489 +522476,101.88,51.52 +522477,95.925,57.253 +522478,97.331,55.417 +522479,98.898,53.521 +522480,100.66,51.56 +522481,94.561,57.269 +522482,96.01,55.441 +522483,97.623,53.554 +522484,99.438,51.601 +522485,93.198,57.284 +522486,94.689,55.465 +522487,96.349,53.587 +522488,98.213,51.644 +522489,91.835,57.297 +522490,93.369,55.489 +522491,95.073,53.621 +522492,96.986,51.688 +522493,90.474,57.309 +522494,92.049,55.512 +522495,93.797,53.656 +522496,95.758,51.734 +522497,89.114,57.32 +522498,90.73,55.534 +522499,92.521,53.69 +522500,94.528,51.781 +522501,87.755,57.329 +522502,89.41,55.557 +522503,91.244,53.726 +522504,93.296,51.83 +522505,86.397,57.337 +522506,88.092,55.578 +522507,89.967,53.761 +522508,92.063,51.88 +522509,85.041,57.343 +522510,86.773,55.599 +522511,88.688,53.798 +522512,90.828,51.932 +522513,83.685,57.348 +522514,85.455,55.62 +522515,87.41,53.834 +522516,89.591,51.985 +522517,82.331,57.352 +522518,84.138,55.64 +522519,86.131,53.871 +522520,88.353,52.04 +522521,80.979,57.354 +522522,82.821,55.66 +522523,84.851,53.909 +522524,87.112,52.096 +522525,79.627,57.356 +522526,81.504,55.679 +522527,83.57,53.947 +522528,85.87,52.153 +522529,78.277,57.355 +522530,80.188,55.698 +522531,82.289,53.986 +522532,84.626,52.212 +522533,76.928,57.354 +522534,78.872,55.716 +522535,81.008,54.025 +522536,83.38,52.272 +522537,75.581,57.351 +522538,77.556,55.734 +522539,79.725,54.064 +522540,82.131,52.334 +522541,74.235,57.347 +522542,76.242,55.752 +522543,78.443,54.104 +522544,80.881,52.396 +522545,72.89,57.342 +522546,74.927,55.769 +522547,77.159,54.144 +522548,79.629,52.461 +522549,71.547,57.335 +522550,73.613,55.786 +522551,75.875,54.185 +522552,78.375,52.526 +522553,70.206,57.328 +522554,72.3,55.802 +522555,74.59,54.226 +522556,77.119,52.593 +522557,68.866,57.319 +522558,70.987,55.818 +522559,73.304,54.267 +522560,75.861,52.661 +522561,67.527,57.309 +522562,69.675,55.834 +522563,72.018,54.309 +522564,74.6,52.73 +522565,66.19,57.298 +522566,68.363,55.849 +522567,70.731,54.351 +522568,73.338,52.8 +522569,64.854,57.286 +522570,67.052,55.863 +522571,69.444,54.394 +522572,72.073,52.871 +522573,63.521,57.272 +522574,65.741,55.878 +522575,68.155,54.437 +522576,70.807,52.944 +522577,62.188,57.258 +522578,64.431,55.892 +522579,66.866,54.48 +522580,69.538,53.018 +522581,60.858,57.243 +522582,63.121,55.905 +522583,65.577,54.524 +522584,68.266,53.093 +522585,59.528,57.226 +522586,61.812,55.919 +522587,64.286,54.568 +522588,66.993,53.168 +522589,58.201,57.209 +522590,60.503,55.932 +522591,62.995,54.612 +522592,65.718,53.245 +522593,56.875,57.19 +522594,59.195,55.944 +522595,61.703,54.657 +522596,64.44,53.323 +522597,55.551,57.171 +522598,57.888,55.957 +522599,60.411,54.702 +522600,63.16,53.402 +522601,54.229,57.151 +522602,56.581,55.969 +522603,59.117,54.747 +522604,61.878,53.482 +522605,52.908,57.13 +522606,55.274,55.98 +522607,57.823,54.793 +522608,60.594,53.562 +522609,51.589,57.108 +522610,53.968,55.992 +522611,56.529,54.839 +522612,59.307,53.644 +522613,50.272,57.085 +522614,52.663,56.003 +522615,55.233,54.885 +522616,58.018,53.726 +522617,48.956,57.061 +522618,51.359,56.014 +522619,53.937,54.931 +522620,56.727,53.81 +522621,47.643,57.036 +522622,50.055,56.024 +522623,52.64,54.978 +522624,55.434,53.894 +522625,46.331,57.011 +522626,48.751,56.034 +522627,51.342,55.025 +522628,54.139,53.978 +522629,45.02,56.985 +522630,47.448,56.044 +522631,50.044,55.072 +522632,52.841,54.064 +522633,43.712,56.958 +522634,46.146,56.054 +522635,48.745,55.119 +522636,51.541,54.15 +522637,42.405,56.931 +522638,44.844,56.064 +522639,47.445,55.167 +522640,50.239,54.237 +522641,41.101,56.903 +522642,43.543,56.073 +522643,46.144,55.215 +522644,48.935,54.324 +522645,39.798,56.874 +522646,42.243,56.082 +522647,44.843,55.263 +522648,47.629,54.412 +522649,38.496,56.845 +522650,40.943,56.091 +522651,43.541,55.311 +522652,46.32,54.5 +522653,37.197,56.815 +522654,39.643,56.1 +522655,42.238,55.359 +522656,45.009,54.589 +522657,35.899,56.784 +522658,38.345,56.108 +522659,40.935,55.408 +522660,43.696,54.679 +522661,34.604,56.753 +522662,37.047,56.117 +522663,39.631,55.456 +522664,42.382,54.769 +522665,33.31,56.722 +522666,35.749,56.125 +522667,38.326,55.505 +522668,41.064,54.859 +522669,32.018,56.69 +522670,34.452,56.133 +522671,37.02,55.554 +522672,39.745,54.95 +522673,30.727,56.658 +522674,33.156,56.141 +522675,35.714,55.603 +522676,38.424,55.041 +522677,29.439,56.625 +522678,31.86,56.149 +522679,34.407,55.652 +522680,37.101,55.132 +522681,28.152,56.592 +522682,30.565,56.156 +522683,33.099,55.701 +522684,35.776,55.224 +522685,26.868,56.559 +522686,29.27,56.164 +522687,31.79,55.751 +522688,34.448,55.316 +522689,25.585,56.525 +522690,27.976,56.172 +522691,30.481,55.8 +522692,33.119,55.408 +522693,24.304,56.491 +522694,26.683,56.179 +522695,29.171,55.85 +522696,31.788,55.5 +522697,23.025,56.457 +522698,25.39,56.186 +522699,27.861,55.899 +522700,30.455,55.593 +522701,21.747,56.423 +522702,24.097,56.194 +522703,26.55,55.948 +522704,29.12,55.685 +522705,20.471,56.388 +522706,22.806,56.201 +522707,25.238,55.998 +522708,27.783,55.778 +522709,19.198,56.354 +522710,21.515,56.208 +522711,23.925,56.048 +522712,26.444,55.87 +522713,17.926,56.319 +522714,20.224,56.215 +522715,22.612,56.097 +522716,25.103,55.963 +522717,16.655,56.284 +522718,18.934,56.222 +522719,21.298,56.147 +522720,23.761,56.055 +522721,15.387,56.25 +522722,17.645,56.229 +522723,19.984,56.196 +522724,22.416,56.147 +522725,14.12,56.215 +522726,16.356,56.237 +522727,18.669,56.246 +522728,21.07,56.24 +522729,12.855,56.18 +522730,15.067,56.244 +522731,17.353,56.295 +522732,19.723,56.332 +522733,11.592,56.146 +522734,13.779,56.251 +522735,16.036,56.344 +522736,18.373,56.424 +522737,10.331,56.111 +522738,12.492,56.258 +522739,14.719,56.394 +522740,17.022,56.516 +522741,9.0709,56.077 +522742,11.205,56.265 +522743,13.402,56.443 +522744,15.67,56.607 +522745,7.8129,56.042 +522746,9.9188,56.273 +522747,12.084,56.492 +522748,14.315,56.698 +522749,6.5565,56.008 +522750,8.633,56.28 +522751,10.765,56.541 +522752,12.96,56.789 +522753,5.3018,55.974 +522754,7.3477,56.288 +522755,9.4456,56.59 +522756,11.602,56.88 +522757,4.0488,55.941 +522758,6.0629,56.295 +522759,8.1257,56.639 +522760,10.243,56.97 +522761,2.7973,55.908 +522762,4.7786,56.303 +522763,6.8053,56.688 +522764,8.8832,57.06 +522765,1.5475,55.875 +522766,3.4947,56.311 +522767,5.4843,56.736 +522768,7.5215,57.149 +522769,0.29928,55.842 +522770,2.2114,56.319 +522771,4.1628,56.784 +522772,6.1585,57.238 +522773,359.05,55.81 +522774,0.92843,56.327 +522775,2.8407,56.833 +522776,4.794,57.326 +522777,357.81,55.778 +522778,359.65,56.335 +522779,1.5182,56.881 +522780,3.4283,57.414 +522781,356.56,55.747 +522782,358.36,56.343 +522783,0.19511,56.928 +522784,2.0613,57.501 +522785,355.32,55.716 +522786,357.08,56.352 +522787,358.87,56.976 +522788,0.69308,57.588 +522789,354.08,55.686 +522790,355.8,56.36 +522791,357.55,57.024 +522792,359.32,57.674 +522793,352.84,55.656 +522794,354.52,56.369 +522795,356.22,57.071 +522796,357.95,57.759 +522797,351.6,55.627 +522798,353.24,56.378 +522799,354.9,57.118 +522800,356.58,57.844 +522801,350.37,55.599 +522802,351.96,56.388 +522803,353.57,57.165 +522804,355.21,57.928 +522805,349.13,55.571 +522806,350.68,56.397 +522807,352.25,57.211 +522808,353.83,58.011 +522809,347.9,55.544 +522810,349.4,56.407 +522811,350.92,57.257 +522812,352.46,58.093 +522813,346.67,55.517 +522814,348.12,56.417 +522815,349.59,57.303 +522816,351.08,58.175 +522817,345.43,55.491 +522818,346.84,56.427 +522819,348.27,57.349 +522820,349.71,58.256 +522821,344.2,55.466 +522822,345.57,56.438 +522823,346.94,57.394 +522824,348.33,58.336 +522825,342.98,55.442 +522826,344.29,56.448 +522827,345.61,57.44 +522828,346.95,58.415 +522829,341.75,55.419 +522830,343.01,56.459 +522831,344.28,57.484 +522832,345.57,58.493 +522833,340.52,55.396 +522834,341.73,56.471 +522835,342.96,57.529 +522836,344.19,58.57 +522837,339.3,55.375 +522838,340.46,56.482 +522839,341.63,57.573 +522840,342.81,58.647 +522841,338.07,55.354 +522842,339.18,56.494 +522843,340.3,57.617 +522844,341.43,58.722 +522845,336.85,55.334 +522846,337.9,56.506 +522847,338.97,57.661 +522848,340.05,58.796 +522849,335.63,55.315 +522850,336.63,56.519 +522851,337.64,57.704 +522852,338.66,58.87 +522853,334.4,55.297 +522854,335.35,56.531 +522855,336.31,57.747 +522856,337.28,58.942 +522857,333.18,55.28 +522858,334.07,56.545 +522859,334.98,57.789 +522860,335.9,59.013 +522861,331.96,55.264 +522862,332.8,56.558 +522863,333.65,57.831 +522864,334.51,59.083 +522865,330.74,55.249 +522866,331.52,56.572 +522867,332.32,57.873 +522868,333.13,59.152 +522869,329.53,55.236 +522870,330.25,56.586 +522871,330.99,57.915 +522872,331.74,59.22 +522873,328.31,55.223 +522874,328.97,56.601 +522875,329.65,57.956 +522876,330.35,59.287 +522877,327.09,55.211 +522878,327.7,56.616 +522879,328.32,57.996 +522880,328.97,59.353 +522881,325.87,55.201 +522882,326.42,56.631 +522883,326.99,58.037 +522884,327.58,59.417 +522885,324.66,55.192 +522886,325.15,56.646 +522887,325.66,58.076 +522888,326.19,59.481 +522889,323.44,55.184 +522890,323.87,56.663 +522891,324.33,58.116 +522892,324.81,59.543 +522893,322.23,55.177 +522894,322.6,56.679 +522895,323,58.155 +522896,323.42,59.604 +522897,321.01,55.171 +522898,321.32,56.696 +522899,321.66,58.193 +522900,322.03,59.664 +522901,319.8,55.166 +522902,320.05,56.713 +522903,320.33,58.232 +522904,320.65,59.722 +522905,318.58,55.163 +522906,318.77,56.731 +522907,319,58.269 +522908,319.26,59.779 +522909,317.37,55.161 +522910,317.5,56.749 +522911,317.67,58.307 +522912,317.87,59.835 +522913,316.16,55.161 +522914,316.23,56.767 +522915,316.34,58.343 +522916,316.48,59.89 +522917,314.94,55.161 +522918,314.95,56.786 +522919,315,58.38 +522920,315.09,59.943 +522921,313.73,55.163 +522922,313.68,56.805 +522923,313.67,58.416 +522924,313.71,59.995 +522925,312.52,55.166 +522926,312.4,56.825 +522927,312.34,58.451 +522928,312.32,60.046 +522929,311.3,55.171 +522930,311.13,56.845 +522931,311,58.486 +522932,310.93,60.095 +522933,310.09,55.177 +522934,309.85,56.866 +522935,309.67,58.521 +522936,309.54,60.143 +522937,308.88,55.184 +522938,308.58,56.887 +522939,308.34,58.555 +522940,308.16,60.19 +522941,307.66,55.193 +522942,307.3,56.908 +522943,307.01,58.589 +522944,306.77,60.235 +522945,306.45,55.203 +522946,306.03,56.93 +522947,305.68,58.622 +522948,305.38,60.279 +522949,305.24,55.214 +522950,304.75,56.953 +522951,304.34,58.655 +522952,304,60.322 +522953,304.02,55.227 +522954,303.48,56.976 +522955,303.01,58.687 +522956,302.61,60.363 +522957,302.81,55.241 +522958,302.2,56.999 +522959,301.68,58.719 +522960,301.23,60.403 +522961,301.59,55.257 +522962,300.93,57.023 +522963,300.35,58.75 +522964,299.84,60.441 +522965,300.38,55.274 +522966,299.65,57.047 +522967,299.01,58.781 +522968,298.46,60.479 +522969,299.16,55.292 +522970,298.38,57.071 +522971,297.68,58.812 +522972,297.07,60.514 +522973,297.95,55.312 +522974,297.1,57.097 +522975,296.35,58.842 +522976,295.69,60.549 +522977,296.73,55.334 +522978,295.82,57.122 +522979,295.02,58.871 +522980,294.3,60.582 +522981,295.51,55.356 +522982,294.55,57.148 +522983,293.69,58.9 +522984,292.92,60.613 +522985,294.29,55.381 +522986,293.27,57.175 +522987,292.36,58.928 +522988,291.54,60.643 +522989,293.07,55.406 +522990,291.99,57.202 +522991,291.03,58.956 +522992,290.16,60.672 +522993,291.85,55.433 +522994,290.71,57.229 +522995,289.69,58.984 +522996,288.78,60.7 +522997,290.63,55.462 +522998,289.44,57.257 +522999,288.36,59.011 +523000,287.4,60.726 +523001,289.41,55.492 +523002,288.16,57.285 +523003,287.03,59.038 +523004,286.02,60.75 +523005,288.19,55.523 +523006,286.88,57.314 +523007,285.7,59.064 +523008,284.64,60.773 +523009,286.96,55.556 +523010,285.6,57.343 +523011,284.37,59.089 +523012,283.26,60.795 +523013,285.74,55.59 +523014,284.32,57.373 +523015,283.04,59.114 +523016,281.89,60.816 +523017,284.51,55.625 +523018,283.04,57.403 +523019,281.71,59.139 +523020,280.51,60.835 +523021,283.28,55.662 +523022,281.76,57.434 +523023,280.39,59.163 +523024,279.14,60.853 +523025,282.06,55.701 +523026,280.48,57.465 +523027,279.06,59.187 +523028,277.76,60.869 +523029,280.83,55.741 +523030,279.2,57.496 +523031,277.73,59.21 +523032,276.39,60.884 +523033,279.59,55.782 +523034,277.92,57.528 +523035,276.4,59.233 +523036,275.02,60.898 +523037,278.36,55.824 +523038,276.64,57.561 +523039,275.07,59.255 +523040,273.65,60.911 +523041,277.13,55.868 +523042,275.35,57.594 +523043,273.75,59.277 +523044,272.28,60.922 +523045,275.89,55.913 +523046,274.07,57.627 +523047,272.42,59.299 +523048,270.91,60.931 +523049,274.66,55.96 +523050,272.79,57.661 +523051,271.09,59.32 +523052,269.54,60.94 +523053,273.42,56.008 +523054,271.5,57.695 +523055,269.77,59.34 +523056,268.17,60.947 +523057,272.18,56.057 +523058,270.22,57.729 +523059,268.44,59.36 +523060,266.81,60.953 +523061,270.94,56.108 +523062,268.94,57.764 +523063,267.11,59.38 +523064,265.44,60.958 +523065,269.69,56.16 +523066,267.65,57.8 +523067,265.79,59.399 +523068,264.08,60.961 +523069,268.45,56.213 +523070,266.36,57.835 +523071,264.46,59.418 +523072,262.72,60.963 +523073,267.2,56.267 +523074,265.08,57.872 +523075,263.14,59.436 +523076,261.36,60.964 +523077,265.96,56.323 +523078,263.79,57.908 +523079,261.82,59.454 +523080,260,60.964 +523081,264.71,56.38 +523082,262.5,57.945 +523083,260.49,59.472 +523084,258.64,60.963 +523085,263.46,56.438 +523086,261.22,57.983 +523087,259.17,59.489 +523088,257.29,60.96 +523089,262.2,56.497 +523090,259.93,58.02 +523091,257.85,59.506 +523092,255.93,60.956 +523093,260.95,56.557 +523094,258.64,58.058 +523095,256.53,59.522 +523096,254.58,60.951 +523097,259.69,56.619 +523098,257.35,58.097 +523099,255.2,59.538 +523100,253.23,60.945 +523101,258.43,56.682 +523102,256.06,58.136 +523103,253.88,59.554 +523104,251.88,60.938 +523105,257.17,56.746 +523106,254.77,58.175 +523107,252.56,59.569 +523108,250.53,60.93 +523109,255.91,56.81 +523110,253.48,58.215 +523111,251.24,59.584 +523112,249.18,60.921 +523113,254.64,56.876 +523114,252.18,58.254 +523115,249.92,59.598 +523116,247.83,60.91 +523117,253.38,56.943 +523118,250.89,58.295 +523119,248.61,59.612 +523120,246.49,60.899 +523121,252.11,57.011 +523122,249.6,58.335 +523123,247.29,59.626 +523124,245.14,60.886 +523125,250.84,57.08 +523126,248.3,58.376 +523127,245.97,59.639 +523128,243.8,60.873 +523129,249.56,57.15 +523130,247.01,58.417 +523131,244.65,59.652 +523132,242.46,60.858 +523133,248.29,57.221 +523134,245.71,58.459 +523135,243.33,59.665 +523136,241.12,60.843 +523137,247.01,57.293 +523138,244.42,58.501 +523139,242.02,59.678 +523140,239.79,60.827 +523141,245.73,57.366 +523142,243.12,58.543 +523143,240.7,59.69 +523144,238.45,60.81 +523145,244.45,57.439 +523146,241.82,58.585 +523147,239.39,59.702 +523148,237.12,60.792 +523149,243.17,57.514 +523150,240.52,58.628 +523151,238.07,59.713 +523152,235.79,60.773 +523153,241.88,57.589 +523154,239.22,58.67 +523155,236.76,59.724 +523156,234.46,60.753 +523157,240.6,57.665 +523158,237.92,58.714 +523159,235.45,59.735 +523160,233.13,60.732 +523161,239.31,57.742 +523162,236.62,58.757 +523163,234.13,59.746 +523164,231.8,60.711 +523165,238.02,57.819 +523166,235.32,58.801 +523167,232.82,59.756 +523168,230.48,60.689 +523169,236.72,57.898 +523170,234.02,58.844 +523171,231.51,59.766 +523172,229.15,60.666 +523173,235.43,57.976 +523174,232.72,58.888 +523175,230.2,59.776 +523176,227.83,60.643 +523177,234.13,58.056 +523178,231.42,58.933 +523179,228.89,59.786 +523180,226.51,60.619 +523181,232.83,58.136 +523182,230.11,58.977 +523183,227.58,59.796 +523184,225.19,60.594 +523185,231.53,58.217 +523186,228.81,59.022 +523187,226.27,59.805 +523188,223.88,60.568 +523189,230.22,58.298 +523190,227.5,59.066 +523191,224.96,59.814 +523192,222.56,60.542 +523193,228.92,58.38 +523194,226.2,59.111 +523195,223.65,59.823 +523196,221.25,60.516 +523197,227.61,58.462 +523198,224.89,59.157 +523199,222.34,59.831 +523200,219.94,60.488 +523201,226.3,58.545 +523202,223.58,59.202 +523203,221.04,59.84 +523204,218.63,60.461 +523205,224.98,58.628 +523206,222.28,59.247 +523207,219.73,59.848 +523208,217.32,60.433 +523209,223.67,58.711 +523210,220.97,59.293 +523211,218.42,59.856 +523212,216.02,60.404 +523213,222.35,58.795 +523214,219.66,59.338 +523215,217.12,59.864 +523216,214.71,60.375 +523217,221.03,58.879 +523218,218.35,59.384 +523219,215.81,59.872 +523220,213.41,60.346 +523221,219.71,58.964 +523222,217.04,59.43 +523223,214.51,59.88 +523224,212.11,60.316 +523225,218.39,59.048 +523226,215.73,59.476 +523227,213.21,59.887 +523228,210.81,60.286 +523229,217.06,59.133 +523230,214.41,59.522 +523231,211.9,59.895 +523232,209.51,60.255 +523233,215.74,59.219 +523234,213.1,59.568 +523235,210.6,59.902 +523236,208.22,60.225 +523237,214.41,59.304 +523238,211.79,59.614 +523239,209.3,59.91 +523240,206.93,60.194 +523241,213.08,59.389 +523242,210.47,59.66 +523243,208,59.917 +523244,205.64,60.162 +523245,211.74,59.475 +523246,209.16,59.706 +523247,206.7,59.924 +523248,204.35,60.131 +523249,210.41,59.561 +523250,207.84,59.752 +523251,205.4,59.931 +523252,203.06,60.1 +523253,209.07,59.646 +523254,206.53,59.799 +523255,204.1,59.938 +523256,201.77,60.068 +523257,207.73,59.732 +523258,205.21,59.845 +523259,202.8,59.945 +523260,200.49,60.036 +523261,206.39,59.818 +523262,203.89,59.891 +523263,201.5,59.952 +523264,199.21,60.004 +523265,205.05,59.903 +523266,202.58,59.937 +523267,200.2,59.96 +523268,197.93,59.973 +523269,203.71,59.989 +523270,201.26,59.983 +523271,198.91,59.967 +523272,196.65,59.941 +523273,202.36,60.074 +523274,199.94,60.029 +523275,197.61,59.974 +523276,195.37,59.909 +523277,201.01,60.159 +523278,198.62,60.075 +523279,196.32,59.981 +523280,194.09,59.877 +523281,199.66,60.245 +523282,197.3,60.121 +523283,195.02,59.988 +523284,192.82,59.846 +523285,198.31,60.329 +523286,195.98,60.167 +523287,193.72,59.995 +523288,191.55,59.814 +523289,196.96,60.414 +523290,194.65,60.213 +523291,192.43,60.002 +523292,190.28,59.783 +523293,195.61,60.498 +523294,193.33,60.259 +523295,191.14,60.009 +523296,189.01,59.751 +523297,194.25,60.582 +523298,192.01,60.304 +523299,189.84,60.016 +523300,187.74,59.72 +523301,192.89,60.666 +523302,190.69,60.35 +523303,188.55,60.024 +523304,186.48,59.69 +523305,191.53,60.749 +523306,189.36,60.395 +523307,187.26,60.031 +523308,185.21,59.659 +523309,190.17,60.832 +523310,188.04,60.44 +523311,185.97,60.039 +523312,183.95,59.629 +523313,188.81,60.915 +523314,186.71,60.486 +523315,184.68,60.046 +523316,182.69,59.599 +523317,187.45,60.997 +523318,185.39,60.53 +523319,183.38,60.054 +523320,181.43,59.57 +523321,186.08,61.078 +523322,184.06,60.575 +523323,182.09,60.062 +523324,180.18,59.541 +523325,184.72,61.16 +523326,182.73,60.62 +523327,180.8,60.07 +523328,178.92,59.512 +523329,183.35,61.24 +523330,181.41,60.664 +523331,179.52,60.078 +523332,177.67,59.484 +523333,181.98,61.32 +523334,180.08,60.708 +523335,178.23,60.087 +523336,176.41,59.456 +523337,180.61,61.399 +523338,178.75,60.753 +523339,176.94,60.095 +523340,175.16,59.429 +523341,179.24,61.478 +523342,177.42,60.796 +523343,175.65,60.104 +523344,173.91,59.403 +523345,177.86,61.556 +523346,176.09,60.84 +523347,174.36,60.113 +523348,172.66,59.376 +523349,176.49,61.634 +523350,174.76,60.883 +523351,173.08,60.122 +523352,171.42,59.351 +523353,175.12,61.71 +523354,173.43,60.926 +523355,171.79,60.131 +523356,170.17,59.326 +523357,173.74,61.786 +523358,172.1,60.969 +523359,170.5,60.141 +523360,168.93,59.302 +523361,172.36,61.861 +523362,170.77,61.012 +523363,169.22,60.15 +523364,167.68,59.278 +523365,170.98,61.936 +523366,169.44,61.054 +523367,167.93,60.16 +523368,166.44,59.256 +523369,169.6,62.01 +523370,168.11,61.096 +523371,166.64,60.17 +523372,165.2,59.234 +523373,168.22,62.082 +523374,166.78,61.138 +523375,165.36,60.181 +523376,163.96,59.212 +523377,166.84,62.154 +523378,165.45,61.18 +523379,164.08,60.191 +523380,162.73,59.192 +523381,165.46,62.225 +523382,164.11,61.221 +523383,162.79,60.202 +523384,161.49,59.172 +523385,164.08,62.296 +523386,162.78,61.262 +523387,161.51,60.214 +523388,160.25,59.153 +523389,162.69,62.365 +523390,161.45,61.302 +523391,160.22,60.225 +523392,159.02,59.135 +523393,161.31,62.433 +523394,160.11,61.342 +523395,158.94,60.237 +523396,157.78,59.118 +523397,159.92,62.501 +523398,158.78,61.382 +523399,157.66,60.249 +523400,156.55,59.102 +523401,158.54,62.567 +523402,157.45,61.422 +523403,156.37,60.261 +523404,155.32,59.086 +523405,157.15,62.633 +523406,156.11,61.461 +523407,155.09,60.274 +523408,154.09,59.072 +523409,155.76,62.697 +523410,154.78,61.5 +523411,153.81,60.287 +523412,152.86,59.059 +523413,154.38,62.76 +523414,153.44,61.539 +523415,152.53,60.3 +523416,151.63,59.046 +523417,152.99,62.823 +523418,152.11,61.577 +523419,151.24,60.314 +523420,150.4,59.035 +523421,151.6,62.884 +523422,150.77,61.615 +523423,149.96,60.328 +523424,149.17,59.025 +523425,150.21,62.944 +523426,149.44,61.652 +523427,148.68,60.342 +523428,147.95,59.015 +523429,148.82,63.003 +523430,148.1,61.689 +523431,147.4,60.357 +523432,146.72,59.007 +523433,147.43,63.061 +523434,146.76,61.726 +523435,146.12,60.372 +523436,145.5,59 +523437,146.04,63.118 +523438,145.43,61.762 +523439,144.84,60.387 +523440,144.27,58.994 +523441,144.65,63.173 +523442,144.09,61.798 +523443,143.56,60.403 +523444,143.05,58.989 +523445,143.26,63.228 +523446,142.75,61.834 +523447,142.28,60.419 +523448,141.82,58.985 +523449,141.87,63.281 +523450,141.42,61.869 +523451,140.99,60.436 +523452,140.6,58.983 +523453,140.48,63.333 +523454,140.08,61.904 +523455,139.71,60.453 +523456,139.38,58.981 +523457,139.08,63.384 +523458,138.74,61.938 +523459,138.43,60.47 +523460,138.15,58.981 +523461,137.69,63.434 +523462,137.41,61.972 +523463,137.15,60.487 +523464,136.93,58.982 +523465,136.3,63.482 +523466,136.07,62.005 +523467,135.87,60.506 +523468,135.71,58.984 +523469,134.91,63.53 +523470,134.73,62.038 +523471,134.59,60.524 +523472,134.49,58.988 +523473,133.52,63.576 +523474,133.4,62.071 +523475,133.31,60.543 +523476,133.26,58.992 +523477,132.13,63.621 +523478,132.06,62.103 +523479,132.03,60.562 +523480,132.04,58.998 +523481,130.73,63.664 +523482,130.72,62.135 +523483,130.75,60.582 +523484,130.82,59.005 +523485,129.34,63.706 +523486,129.39,62.166 +523487,129.47,60.602 +523488,129.6,59.014 +523489,127.95,63.747 +523490,128.05,62.197 +523491,128.19,60.622 +523492,128.38,59.024 +523493,126.56,63.787 +523494,126.71,62.227 +523495,126.91,60.643 +523496,127.16,59.035 +523497,125.17,63.825 +523498,125.37,62.257 +523499,125.63,60.664 +523500,125.93,59.047 +523501,123.78,63.862 +523502,124.04,62.287 +523503,124.35,60.686 +523504,124.71,59.06 +523505,122.39,63.898 +523506,122.7,62.316 +523507,123.07,60.708 +523508,123.49,59.075 +523509,121,63.933 +523510,121.36,62.345 +523511,121.78,60.731 +523512,122.27,59.092 +523513,119.61,63.966 +523514,120.03,62.373 +523515,120.5,60.754 +523516,121.05,59.109 +523517,118.22,63.998 +523518,118.69,62.4 +523519,119.22,60.777 +523520,119.82,59.128 +523521,116.83,64.028 +523522,117.35,62.428 +523523,117.94,60.801 +523524,118.6,59.148 +523525,115.44,64.058 +523526,116.02,62.455 +523527,116.66,60.825 +523528,117.38,59.17 +523529,114.05,64.085 +523530,114.68,62.481 +523531,115.38,60.85 +523532,116.15,59.192 +523533,112.67,64.112 +523534,113.34,62.507 +523535,114.09,60.875 +523536,114.93,59.217 +523537,111.28,64.137 +523538,112.01,62.532 +523539,112.81,60.901 +523540,113.7,59.242 +523541,109.9,64.162 +523542,110.67,62.557 +523543,111.53,60.927 +523544,112.47,59.269 +523545,108.51,64.184 +523546,109.34,62.582 +523547,110.25,60.953 +523548,111.25,59.297 +523549,107.13,64.206 +523550,108,62.606 +523551,108.96,60.98 +523552,110.02,59.327 +523553,105.74,64.226 +523554,106.67,62.63 +523555,107.68,61.007 +523556,108.79,59.357 +523557,104.36,64.245 +523558,105.33,62.653 +523559,106.4,61.035 +523560,107.56,59.389 +523561,102.98,64.262 +523562,104,62.676 +523563,105.11,61.063 +523564,106.33,59.423 +523565,101.59,64.278 +523566,102.66,62.698 +523567,103.83,61.091 +523568,105.1,59.458 +523569,100.21,64.293 +523570,101.33,62.72 +523571,102.54,61.12 +523572,103.87,59.494 +523573,98.833,64.307 +523574,99.995,62.742 +523575,101.26,61.15 +523576,102.63,59.531 +523577,97.455,64.32 +523578,98.661,62.763 +523579,99.972,61.179 +523580,101.4,59.569 +523581,96.077,64.331 +523582,97.328,62.783 +523583,98.686,61.209 +523584,100.17,59.609 +523585,94.699,64.341 +523586,95.995,62.803 +523587,97.4,61.24 +523588,98.929,59.65 +523589,93.323,64.349 +523590,94.663,62.823 +523591,96.113,61.271 +523592,97.691,59.693 +523593,91.948,64.357 +523594,93.331,62.842 +523595,94.826,61.302 +523596,96.452,59.736 +523597,90.575,64.363 +523598,91.999,62.861 +523599,93.538,61.334 +523600,95.212,59.781 +523601,89.202,64.368 +523602,90.667,62.88 +523603,92.251,61.366 +523604,93.97,59.827 +523605,87.83,64.372 +523606,89.336,62.898 +523607,90.962,61.399 +523608,92.727,59.875 +523609,86.459,64.375 +523610,88.005,62.915 +523611,89.673,61.432 +523612,91.483,59.923 +523613,85.09,64.376 +523614,86.675,62.933 +523615,88.384,61.465 +523616,90.237,59.973 +523617,83.722,64.376 +523618,85.345,62.95 +523619,87.094,61.499 +523620,88.99,60.024 +523621,82.355,64.376 +523622,84.015,62.966 +523623,85.804,61.533 +523624,87.742,60.076 +523625,80.989,64.374 +523626,82.686,62.982 +523627,84.513,61.567 +523628,86.491,60.129 +523629,79.625,64.371 +523630,81.358,62.998 +523631,83.222,61.602 +523632,85.24,60.183 +523633,78.261,64.366 +523634,80.029,63.013 +523635,81.93,61.637 +523636,83.986,60.239 +523637,76.9,64.361 +523638,78.702,63.028 +523639,80.638,61.673 +523640,82.731,60.295 +523641,75.539,64.355 +523642,77.374,63.042 +523643,79.345,61.708 +523644,81.475,60.353 +523645,74.18,64.347 +523646,76.047,63.057 +523647,78.052,61.745 +523648,80.216,60.411 +523649,72.822,64.339 +523650,74.721,63.07 +523651,76.758,61.781 +523652,78.956,60.471 +523653,71.466,64.33 +523654,73.395,63.084 +523655,75.463,61.818 +523656,77.694,60.531 +523657,70.111,64.319 +523658,72.069,63.097 +523659,74.168,61.855 +523660,76.431,60.593 +523661,68.758,64.308 +523662,70.745,63.11 +523663,72.872,61.893 +523664,75.165,60.655 +523665,67.406,64.295 +523666,69.42,63.122 +523667,71.576,61.93 +523668,73.898,60.719 +523669,66.055,64.282 +523670,68.096,63.134 +523671,70.279,61.968 +523672,72.629,60.783 +523673,64.706,64.268 +523674,66.773,63.146 +523675,68.982,62.007 +523676,71.358,60.849 +523677,63.359,64.253 +523678,65.45,63.158 +523679,67.684,62.045 +523680,70.085,60.915 +523681,62.013,64.237 +523682,64.127,63.169 +523683,66.385,62.084 +523684,68.811,60.982 +523685,60.669,64.22 +523686,62.806,63.18 +523687,65.086,62.123 +523688,67.534,61.05 +523689,59.326,64.202 +523690,61.484,63.19 +523691,63.786,62.163 +523692,66.255,61.119 +523693,57.985,64.184 +523694,60.163,63.201 +523695,62.485,62.202 +523696,64.975,61.188 +523697,56.645,64.165 +523698,58.843,63.211 +523699,61.184,62.242 +523700,63.692,61.258 +523701,55.307,64.145 +523702,57.524,63.221 +523703,59.882,62.282 +523704,62.408,61.329 +523705,53.971,64.124 +523706,56.204,63.23 +523707,58.58,62.323 +523708,61.121,61.401 +523709,52.637,64.102 +523710,54.886,63.239 +523711,57.277,62.363 +523712,59.833,61.473 +523713,51.304,64.08 +523714,53.568,63.249 +523715,55.973,62.404 +523716,58.543,61.546 +523717,49.972,64.057 +523718,52.251,63.257 +523719,54.668,62.445 +523720,57.25,61.62 +523721,48.643,64.034 +523722,50.934,63.266 +523723,53.363,62.486 +523724,55.956,61.694 +523725,47.315,64.01 +523726,49.617,63.274 +523727,52.057,62.528 +523728,54.659,61.769 +523729,45.989,63.985 +523730,48.302,63.283 +523731,50.751,62.569 +523732,53.36,61.844 +523733,44.665,63.96 +523734,46.987,63.291 +523735,49.444,62.611 +523736,52.06,61.92 +523737,43.342,63.934 +523738,45.672,63.298 +523739,48.136,62.653 +523740,50.757,61.996 +523741,42.021,63.908 +523742,44.358,63.306 +523743,46.828,62.695 +523744,49.453,62.073 +523745,40.702,63.881 +523746,43.045,63.313 +523747,45.519,62.737 +523748,48.146,62.15 +523749,39.385,63.854 +523750,41.732,63.321 +523751,44.209,62.779 +523752,46.837,62.228 +523753,38.069,63.826 +523754,40.42,63.328 +523755,42.899,62.821 +523756,45.526,62.306 +523757,36.755,63.798 +523758,39.109,63.335 +523759,41.587,62.864 +523760,44.213,62.384 +523761,35.443,63.77 +523762,37.798,63.342 +523763,40.276,62.906 +523764,42.899,62.463 +523765,34.133,63.741 +523766,36.487,63.349 +523767,38.963,62.949 +523768,41.582,62.541 +523769,32.824,63.712 +523770,35.177,63.355 +523771,37.65,62.992 +523772,40.263,62.621 +523773,31.517,63.682 +523774,33.868,63.362 +523775,36.337,63.035 +523776,38.942,62.7 +523777,30.212,63.653 +523778,32.56,63.368 +523779,35.022,63.078 +523780,37.619,62.779 +523781,28.909,63.623 +523782,31.252,63.375 +523783,33.707,63.12 +523784,36.294,62.859 +523785,27.607,63.593 +523786,29.944,63.381 +523787,32.391,63.163 +523788,34.968,62.939 +523789,26.308,63.563 +523790,28.637,63.387 +523791,31.075,63.206 +523792,33.639,63.019 +523793,25.01,63.532 +523794,27.331,63.393 +523795,29.758,63.249 +523796,32.308,63.099 +523797,23.713,63.502 +523798,26.025,63.4 +523799,28.44,63.292 +523800,30.976,63.179 +523801,22.419,63.471 +523802,24.72,63.406 +523803,27.122,63.335 +523804,29.641,63.259 +523805,21.126,63.441 +523806,23.416,63.412 +523807,25.803,63.378 +523808,28.305,63.339 +523809,19.835,63.41 +523810,22.112,63.418 +523811,24.484,63.421 +523812,26.967,63.419 +523813,18.546,63.38 +523814,20.808,63.424 +523815,23.164,63.464 +523816,25.627,63.499 +523817,17.259,63.349 +523818,19.506,63.43 +523819,21.843,63.507 +523820,24.285,63.579 +523821,15.973,63.318 +523822,18.203,63.436 +523823,20.521,63.55 +523824,22.941,63.658 +523825,14.689,63.288 +523826,16.902,63.442 +523827,19.199,63.593 +523828,21.596,63.738 +523829,13.407,63.258 +523830,15.601,63.449 +523831,17.877,63.635 +523832,20.248,63.817 +523833,12.126,63.228 +523834,14.3,63.455 +523835,16.554,63.678 +523836,18.899,63.896 +523837,10.847,63.198 +523838,13,63.461 +523839,15.23,63.721 +523840,17.549,63.975 +523841,9.5699,63.168 +523842,11.7,63.467 +523843,13.905,63.763 +523844,16.196,64.053 +523845,8.2943,63.138 +523846,10.401,63.474 +523847,12.58,63.805 +523848,14.842,64.131 +523849,7.0203,63.109 +523850,9.103,63.48 +523851,11.255,63.848 +523852,13.487,64.209 +523853,5.748,63.08 +523854,7.8051,63.487 +523855,9.9289,63.89 +523856,12.129,64.287 +523857,4.4772,63.052 +523858,6.5077,63.494 +523859,8.6023,63.932 +523860,10.771,64.364 +523861,3.2081,63.023 +523862,5.2107,63.501 +523863,7.2751,63.973 +523864,9.4103,64.44 +523865,1.9405,62.996 +523866,3.9143,63.507 +523867,5.9474,64.015 +523868,8.0484,64.517 +523869,0.67447,62.968 +523870,2.6184,63.515 +523871,4.6192,64.057 +523872,6.685,64.592 +523873,359.41,62.941 +523874,1.323,63.522 +523875,3.2904,64.098 +523876,5.3202,64.668 +523877,358.15,62.915 +523878,0.028011,63.529 +523879,1.9612,64.139 +523880,3.9539,64.742 +523881,356.89,62.888 +523882,358.73,63.537 +523883,0.6314,64.18 +523884,2.5863,64.816 +523885,355.63,62.863 +523886,357.44,63.544 +523887,359.3,64.221 +523888,1.2173,64.89 +523889,354.37,62.838 +523890,356.15,63.552 +523891,357.97,64.261 +523892,359.85,64.963 +523893,353.11,62.814 +523894,354.85,63.56 +523895,356.64,64.301 +523896,358.48,65.035 +523897,351.85,62.79 +523898,353.56,63.569 +523899,355.31,64.341 +523900,357.1,65.107 +523901,350.6,62.767 +523902,352.27,63.577 +523903,353.98,64.381 +523904,355.73,65.178 +523905,349.35,62.744 +523906,350.98,63.586 +523907,352.64,64.421 +523908,354.35,65.248 +523909,348.09,62.722 +523910,349.68,63.595 +523911,351.31,64.46 +523912,352.98,65.317 +523913,346.84,62.701 +523914,348.39,63.604 +523915,349.98,64.499 +523916,351.6,65.386 +523917,345.6,62.681 +523918,347.1,63.613 +523919,348.64,64.538 +523920,350.22,65.454 +523921,344.35,62.661 +523922,345.81,63.623 +523923,347.31,64.577 +523924,348.84,65.521 +523925,343.1,62.642 +523926,344.52,63.633 +523927,345.97,64.615 +523928,347.46,65.588 +523929,341.86,62.624 +523930,343.23,63.643 +523931,344.64,64.653 +523932,346.08,65.653 +523933,340.61,62.607 +523934,341.94,63.653 +523935,343.3,64.691 +523936,344.7,65.718 +523937,339.37,62.591 +523938,340.65,63.664 +523939,341.97,64.728 +523940,343.31,65.781 +523941,338.13,62.575 +523942,339.37,63.675 +523943,340.63,64.765 +523944,341.93,65.844 +523945,336.88,62.56 +523946,338.08,63.686 +523947,339.3,64.802 +523948,340.54,65.906 +523949,335.64,62.547 +523950,336.79,63.698 +523951,337.96,64.838 +523952,339.16,65.967 +523953,334.4,62.534 +523954,335.5,63.709 +523955,336.62,64.874 +523956,337.77,66.027 +523957,333.17,62.522 +523958,334.21,63.722 +523959,335.29,64.91 +523960,336.38,66.086 +523961,331.93,62.511 +523962,332.93,63.734 +523963,333.95,64.945 +523964,334.99,66.144 +523965,330.69,62.501 +523966,331.64,63.747 +523967,332.61,64.981 +523968,333.61,66.201 +523969,329.46,62.493 +523970,330.35,63.76 +523971,331.27,65.015 +523972,332.22,66.257 +523973,328.22,62.485 +523974,329.07,63.773 +523975,329.93,65.05 +523976,330.83,66.312 +523977,326.99,62.478 +523978,327.78,63.787 +523979,328.6,65.084 +523980,329.44,66.366 +523981,325.75,62.472 +523982,326.49,63.801 +523983,327.26,65.117 +523984,328.05,66.419 +523985,324.52,62.467 +523986,325.21,63.816 +523987,325.92,65.15 +523988,326.65,66.47 +523989,323.29,62.464 +523990,323.92,63.83 +523991,324.58,65.183 +523992,325.26,66.521 +523993,322.06,62.461 +523994,322.64,63.846 +523995,323.24,65.216 +523996,323.87,66.571 +523997,320.83,62.46 +523998,321.35,63.861 +523999,321.9,65.248 +524000,322.48,66.619 +524001,319.59,62.46 +524002,320.07,63.877 +524003,320.56,65.28 +524004,321.08,66.666 +524005,318.36,62.461 +524006,318.78,63.893 +524007,319.22,65.311 +524008,319.69,66.712 +524009,317.13,62.463 +524010,317.49,63.91 +524011,317.88,65.342 +524012,318.3,66.757 +524013,315.9,62.466 +524014,316.21,63.927 +524015,316.54,65.372 +524016,316.91,66.801 +524017,314.68,62.471 +524018,314.92,63.945 +524019,315.2,65.402 +524020,315.51,66.843 +524021,313.45,62.476 +524022,313.64,63.962 +524023,313.86,65.432 +524024,314.12,66.885 +524025,312.22,62.483 +524026,312.35,63.981 +524027,312.52,65.461 +524028,312.73,66.925 +524029,310.99,62.491 +524030,311.07,63.999 +524031,311.18,65.49 +524032,311.33,66.964 +524033,309.76,62.501 +524034,309.78,64.018 +524035,309.84,65.519 +524036,309.94,67.002 +524037,308.53,62.511 +524038,308.5,64.037 +524039,308.5,65.547 +524040,308.54,67.038 +524041,307.3,62.523 +524042,307.21,64.057 +524043,307.16,65.574 +524044,307.15,67.073 +524045,306.08,62.536 +524046,305.93,64.077 +524047,305.82,65.602 +524048,305.76,67.108 +524049,304.85,62.55 +524050,304.64,64.098 +524051,304.48,65.628 +524052,304.36,67.14 +524053,303.62,62.566 +524054,303.36,64.119 +524055,303.14,65.655 +524056,302.97,67.172 +524057,302.39,62.582 +524058,302.07,64.14 +524059,301.8,65.681 +524060,301.58,67.202 +524061,301.16,62.6 +524062,300.79,64.162 +524063,300.46,65.706 +524064,300.19,67.231 +524065,299.93,62.62 +524066,299.5,64.184 +524067,299.12,65.731 +524068,298.79,67.259 +524069,298.7,62.64 +524070,298.22,64.207 +524071,297.78,65.756 +524072,297.4,67.286 +524073,297.47,62.662 +524074,296.93,64.23 +524075,296.45,65.78 +524076,296.01,67.311 +524077,296.25,62.685 +524078,295.65,64.253 +524079,295.11,65.804 +524080,294.62,67.335 +524081,295.01,62.709 +524082,294.36,64.277 +524083,293.77,65.827 +524084,293.23,67.358 +524085,293.78,62.735 +524086,293.07,64.301 +524087,292.43,65.85 +524088,291.84,67.38 +524089,292.55,62.762 +524090,291.79,64.326 +524091,291.09,65.873 +524092,290.45,67.4 +524093,291.32,62.79 +524094,290.5,64.351 +524095,289.75,65.895 +524096,289.06,67.419 +524097,290.09,62.819 +524098,289.21,64.377 +524099,288.41,65.916 +524100,287.67,67.437 +524101,288.86,62.85 +524102,287.93,64.402 +524103,287.07,65.938 +524104,286.29,67.454 +524105,287.62,62.882 +524106,286.64,64.429 +524107,285.73,65.958 +524108,284.9,67.47 +524109,286.39,62.915 +524110,285.35,64.455 +524111,284.4,65.979 +524112,283.51,67.484 +524113,285.15,62.949 +524114,284.06,64.482 +524115,283.06,65.999 +524116,282.13,67.497 +524117,283.92,62.985 +524118,282.78,64.51 +524119,281.72,66.018 +524120,280.74,67.508 +524121,282.68,63.021 +524122,281.49,64.538 +524123,280.38,66.037 +524124,279.36,67.519 +524125,281.44,63.059 +524126,280.2,64.566 +524127,279.05,66.056 +524128,277.98,67.528 +524129,280.2,63.099 +524130,278.91,64.595 +524131,277.71,66.074 +524132,276.59,67.537 +524133,278.96,63.139 +524134,277.62,64.624 +524135,276.37,66.092 +524136,275.21,67.544 +524137,277.72,63.181 +524138,276.33,64.653 +524139,275.04,66.11 +524140,273.83,67.549 +524141,276.48,63.223 +524142,275.04,64.683 +524143,273.7,66.127 +524144,272.45,67.554 +524145,275.24,63.267 +524146,273.75,64.713 +524147,272.37,66.143 +524148,271.08,67.558 +524149,273.99,63.312 +524150,272.46,64.744 +524151,271.03,66.16 +524152,269.7,67.56 +524153,272.75,63.359 +524154,271.17,64.775 +524155,269.7,66.176 +524156,268.32,67.561 +524157,271.5,63.406 +524158,269.88,64.806 +524159,268.36,66.191 +524160,266.95,67.561 +524161,270.25,63.454 +524162,268.58,64.837 +524163,267.03,66.206 +524164,265.57,67.56 +524165,269,63.504 +524166,267.29,64.869 +524167,265.69,66.221 +524168,264.2,67.558 +524169,267.75,63.554 +524170,266,64.902 +524171,264.36,66.236 +524172,262.83,67.555 +524173,266.5,63.606 +524174,264.71,64.934 +524175,263.03,66.25 +524176,261.46,67.551 +524177,265.25,63.659 +524178,263.41,64.967 +524179,261.7,66.263 +524180,260.09,67.546 +524181,263.99,63.713 +524182,262.12,65.001 +524183,260.36,66.277 +524184,258.72,67.539 +524185,262.74,63.767 +524186,260.82,65.034 +524187,259.03,66.29 +524188,257.35,67.532 +524189,261.48,63.823 +524190,259.53,65.068 +524191,257.7,66.302 +524192,255.99,67.524 +524193,260.22,63.88 +524194,258.23,65.103 +524195,256.37,66.315 +524196,254.62,67.514 +524197,258.96,63.938 +524198,256.93,65.137 +524199,255.04,66.326 +524200,253.26,67.504 +524201,257.7,63.996 +524202,255.64,65.172 +524203,253.71,66.338 +524204,251.9,67.493 +524205,256.43,64.056 +524206,254.34,65.207 +524207,252.38,66.349 +524208,250.54,67.481 +524209,255.17,64.116 +524210,253.04,65.243 +524211,251.05,66.36 +524212,249.18,67.468 +524213,253.9,64.178 +524214,251.74,65.279 +524215,249.72,66.371 +524216,247.82,67.454 +524217,252.63,64.24 +524218,250.45,65.315 +524219,248.39,66.382 +524220,246.46,67.439 +524221,251.36,64.303 +524222,249.15,65.351 +524223,247.07,66.392 +524224,245.11,67.423 +524225,250.09,64.367 +524226,247.85,65.388 +524227,245.74,66.401 +524228,243.76,67.407 +524229,248.82,64.431 +524230,246.54,65.425 +524231,244.41,66.411 +524232,242.4,67.389 +524233,247.54,64.497 +524234,245.24,65.462 +524235,243.09,66.42 +524236,241.05,67.371 +524237,246.26,64.563 +524238,243.94,65.499 +524239,241.76,66.429 +524240,239.71,67.352 +524241,244.98,64.629 +524242,242.64,65.537 +524243,240.44,66.438 +524244,238.36,67.333 +524245,243.7,64.697 +524246,241.34,65.575 +524247,239.11,66.447 +524248,237.01,67.312 +524249,242.42,64.765 +524250,240.03,65.613 +524251,237.79,66.455 +524252,235.67,67.291 +524253,241.13,64.834 +524254,238.73,65.651 +524255,236.47,66.463 +524256,234.33,67.269 +524257,239.85,64.903 +524258,237.42,65.689 +524259,235.14,66.471 +524260,232.99,67.247 +524261,238.56,64.973 +524262,236.12,65.728 +524263,233.82,66.478 +524264,231.65,67.224 +524265,237.27,65.044 +524266,234.81,65.767 +524267,232.5,66.486 +524268,230.31,67.2 +524269,235.97,65.115 +524270,233.51,65.806 +524271,231.18,66.493 +524272,228.97,67.176 +524273,234.68,65.187 +524274,232.2,65.845 +524275,229.86,66.5 +524276,227.64,67.151 +524277,233.38,65.259 +524278,230.89,65.884 +524279,228.54,66.507 +524280,226.31,67.126 +524281,232.08,65.331 +524282,229.58,65.923 +524283,227.22,66.513 +524284,224.98,67.1 +524285,230.78,65.404 +524286,228.27,65.963 +524287,225.9,66.52 +524288,223.65,67.074 +524289,229.48,65.478 +524290,226.96,66.003 +524291,224.58,66.526 +524292,222.32,67.047 +524293,228.18,65.551 +524294,225.65,66.043 +524295,223.26,66.532 +524296,220.99,67.02 +524297,226.87,65.626 +524298,224.34,66.083 +524299,221.95,66.538 +524300,219.67,66.993 +524301,225.56,65.7 +524302,223.03,66.123 +524303,220.63,66.544 +524304,218.35,66.965 +524305,224.25,65.775 +524306,221.72,66.163 +524307,219.31,66.55 +524308,217.03,66.936 +524309,222.94,65.85 +524310,220.4,66.203 +524311,218,66.556 +524312,215.71,66.908 +524313,221.63,65.925 +524314,219.09,66.243 +524315,216.68,66.561 +524316,214.39,66.879 +524317,220.31,66 +524318,217.78,66.284 +524319,215.37,66.567 +524320,213.08,66.85 +524321,218.99,66.076 +524322,216.46,66.324 +524323,214.06,66.572 +524324,211.76,66.821 +524325,217.67,66.151 +524326,215.14,66.364 +524327,212.74,66.578 +524328,210.45,66.791 +524329,216.35,66.227 +524330,213.83,66.405 +524331,211.43,66.583 +524332,209.14,66.761 +524333,215.03,66.303 +524334,212.51,66.446 +524335,210.12,66.588 +524336,207.83,66.731 +524337,213.7,66.379 +524338,211.19,66.486 +524339,208.81,66.593 +524340,206.52,66.701 +524341,212.37,66.455 +524342,209.88,66.527 +524343,207.5,66.598 +524344,205.22,66.671 +524345,211.04,66.531 +524346,208.56,66.567 +524347,206.19,66.604 +524348,203.92,66.641 +524349,209.71,66.607 +524350,207.24,66.608 +524351,204.88,66.609 +524352,202.61,66.611 +524353,208.38,66.683 +524354,205.92,66.648 +524355,203.57,66.614 +524356,201.31,66.581 +524357,207.04,66.759 +524358,204.6,66.689 +524359,202.26,66.619 +524360,200.02,66.55 +524361,205.71,66.835 +524362,203.28,66.729 +524363,200.95,66.624 +524364,198.72,66.52 +524365,204.37,66.91 +524366,201.95,66.77 +524367,199.64,66.629 +524368,197.42,66.49 +524369,203.03,66.986 +524370,200.63,66.81 +524371,198.34,66.634 +524372,196.13,66.46 +524373,201.68,67.061 +524374,199.31,66.85 +524375,197.03,66.64 +524376,194.84,66.431 +524377,200.34,67.136 +524378,197.98,66.89 +524379,195.73,66.645 +524380,193.55,66.401 +524381,198.99,67.211 +524382,196.66,66.931 +524383,194.42,66.65 +524384,192.26,66.371 +524385,197.65,67.285 +524386,195.34,66.971 +524387,193.12,66.656 +524388,190.98,66.342 +524389,196.3,67.36 +524390,194.01,67.01 +524391,191.81,66.661 +524392,189.69,66.313 +524393,194.95,67.433 +524394,192.68,67.05 +524395,190.51,66.667 +524396,188.41,66.284 +524397,193.59,67.507 +524398,191.36,67.09 +524399,189.21,66.673 +524400,187.13,66.256 +524401,192.24,67.58 +524402,190.03,67.129 +524403,187.9,66.678 +524404,185.85,66.228 +524405,190.88,67.653 +524406,188.7,67.169 +524407,186.6,66.684 +524408,184.57,66.2 +524409,189.53,67.725 +524410,187.37,67.208 +524411,185.3,66.69 +524412,183.29,66.173 +524413,188.17,67.797 +524414,186.05,67.247 +524415,184,66.697 +524416,182.02,66.146 +524417,186.81,67.868 +524418,184.72,67.286 +524419,182.7,66.703 +524420,180.74,66.12 +524421,185.44,67.939 +524422,183.39,67.325 +524423,181.4,66.709 +524424,179.47,66.094 +524425,184.08,68.009 +524426,182.06,67.363 +524427,180.1,66.716 +524428,178.2,66.068 +524429,182.72,68.079 +524430,180.73,67.402 +524431,178.8,66.723 +524432,176.93,66.043 +524433,181.35,68.148 +524434,179.39,67.44 +524435,177.5,66.73 +524436,175.67,66.019 +524437,179.98,68.216 +524438,178.06,67.478 +524439,176.2,66.737 +524440,174.4,65.995 +524441,178.61,68.284 +524442,176.73,67.516 +524443,174.91,66.744 +524444,173.13,65.971 +524445,177.24,68.351 +524446,175.4,67.553 +524447,173.61,66.752 +524448,171.87,65.949 +524449,175.87,68.418 +524450,174.06,67.591 +524451,172.31,66.76 +524452,170.61,65.927 +524453,174.5,68.483 +524454,172.73,67.628 +524455,171.02,66.768 +524456,169.35,65.905 +524457,173.12,68.549 +524458,171.4,67.664 +524459,169.72,66.776 +524460,168.09,65.885 +524461,171.75,68.613 +524462,170.06,67.701 +524463,168.43,66.785 +524464,166.83,65.865 +524465,170.37,68.676 +524466,168.73,67.737 +524467,167.13,66.793 +524468,165.57,65.846 +524469,168.99,68.739 +524470,167.39,67.773 +524471,165.84,66.802 +524472,164.32,65.827 +524473,167.61,68.801 +524474,166.06,67.809 +524475,164.54,66.811 +524476,163.07,65.81 +524477,166.23,68.862 +524478,164.72,67.845 +524479,163.25,66.821 +524480,161.81,65.793 +524481,164.85,68.922 +524482,163.38,67.88 +524483,161.95,66.831 +524484,160.56,65.777 +524485,163.47,68.982 +524486,162.05,67.915 +524487,160.66,66.841 +524488,159.31,65.762 +524489,162.09,69.04 +524490,160.71,67.949 +524491,159.37,66.851 +524492,158.06,65.748 +524493,160.7,69.098 +524494,159.37,67.983 +524495,158.08,66.862 +524496,156.81,65.734 +524497,159.32,69.154 +524498,158.03,68.017 +524499,156.78,66.873 +524500,155.56,65.722 +524501,157.93,69.21 +524502,156.7,68.051 +524503,155.49,66.884 +524504,154.32,65.71 +524505,156.55,69.265 +524506,155.36,68.084 +524507,154.2,66.895 +524508,153.07,65.7 +524509,155.16,69.318 +524510,154.02,68.117 +524511,152.91,66.907 +524512,151.83,65.69 +524513,153.77,69.371 +524514,152.68,68.15 +524515,151.62,66.92 +524516,150.58,65.682 +524517,152.38,69.423 +524518,151.34,68.182 +524519,150.33,66.932 +524520,149.34,65.674 +524521,151,69.473 +524522,150,68.214 +524523,149.04,66.945 +524524,148.1,65.667 +524525,149.61,69.523 +524526,148.66,68.246 +524527,147.75,66.958 +524528,146.86,65.662 +524529,148.22,69.572 +524530,147.32,68.277 +524531,146.46,66.972 +524532,145.62,65.657 +524533,146.82,69.619 +524534,145.98,68.308 +524535,145.17,66.985 +524536,144.38,65.654 +524537,145.43,69.666 +524538,144.64,68.338 +524539,143.88,67 +524540,143.14,65.652 +524541,144.04,69.711 +524542,143.3,68.368 +524543,142.59,67.014 +524544,141.9,65.651 +524545,142.65,69.755 +524546,141.96,68.398 +524547,141.3,67.029 +524548,140.66,65.65 +524549,141.26,69.798 +524550,140.62,68.427 +524551,140.01,67.045 +524552,139.42,65.651 +524553,139.86,69.84 +524554,139.28,68.456 +524555,138.72,67.06 +524556,138.19,65.654 +524557,138.47,69.881 +524558,137.94,68.485 +524559,137.43,67.076 +524560,136.95,65.657 +524561,137.08,69.921 +524562,136.59,68.513 +524563,136.14,67.093 +524564,135.72,65.661 +524565,135.68,69.96 +524566,135.25,68.541 +524567,134.85,67.11 +524568,134.48,65.667 +524569,134.29,69.997 +524570,133.91,68.568 +524571,133.56,67.127 +524572,133.24,65.674 +524573,132.9,70.034 +524574,132.57,68.595 +524575,132.27,67.144 +524576,132.01,65.682 +524577,131.5,70.069 +524578,131.23,68.622 +524579,130.99,67.162 +524580,130.77,65.691 +524581,130.11,70.103 +524582,129.89,68.648 +524583,129.7,67.181 +524584,129.54,65.701 +524585,128.71,70.135 +524586,128.54,68.674 +524587,128.41,67.199 +524588,128.31,65.713 +524589,127.32,70.167 +524590,127.2,68.7 +524591,127.12,67.219 +524592,127.07,65.726 +524593,125.92,70.197 +524594,125.86,68.725 +524595,125.83,67.238 +524596,125.84,65.74 +524597,124.53,70.226 +524598,124.52,68.749 +524599,124.54,67.258 +524600,124.6,65.755 +524601,123.14,70.254 +524602,123.18,68.773 +524603,123.26,67.278 +524604,123.37,65.771 +524605,121.74,70.281 +524606,121.84,68.797 +524607,121.97,67.299 +524608,122.14,65.789 +524609,120.35,70.307 +524610,120.49,68.82 +524611,120.68,67.32 +524612,120.9,65.808 +524613,118.95,70.331 +524614,119.15,68.843 +524615,119.39,67.342 +524616,119.67,65.828 +524617,117.56,70.354 +524618,117.81,68.866 +524619,118.1,67.364 +524620,118.43,65.849 +524621,116.17,70.376 +524622,116.47,68.888 +524623,116.81,67.386 +524624,117.2,65.872 +524625,114.78,70.397 +524626,115.13,68.91 +524627,115.52,67.409 +524628,115.97,65.896 +524629,113.38,70.417 +524630,113.79,68.931 +524631,114.23,67.432 +524632,114.73,65.921 +524633,111.99,70.435 +524634,112.44,68.952 +524635,112.94,67.456 +524636,113.49,65.947 +524637,110.6,70.452 +524638,111.1,68.973 +524639,111.66,67.479 +524640,112.26,65.974 +524641,109.21,70.468 +524642,109.76,68.993 +524643,110.37,67.504 +524644,111.02,66.003 +524645,107.82,70.483 +524646,108.42,69.012 +524647,109.08,67.529 +524648,109.79,66.033 +524649,106.43,70.497 +524650,107.08,69.032 +524651,107.79,67.554 +524652,108.55,66.064 +524653,105.04,70.509 +524654,105.74,69.051 +524655,106.5,67.579 +524656,107.31,66.096 +524657,103.65,70.52 +524658,104.4,69.069 +524659,105.21,67.605 +524660,106.07,66.13 +524661,102.26,70.53 +524662,103.06,69.087 +524663,103.91,67.631 +524664,104.83,66.165 +524665,100.88,70.539 +524666,101.72,69.105 +524667,102.62,67.658 +524668,103.59,66.201 +524669,99.49,70.547 +524670,100.38,69.122 +524671,101.33,67.685 +524672,102.35,66.238 +524673,98.104,70.554 +524674,99.041,69.139 +524675,100.04,67.713 +524676,101.11,66.276 +524677,96.719,70.559 +524678,97.702,69.155 +524679,98.75,67.74 +524680,99.871,66.315 +524681,95.335,70.563 +524682,96.363,69.172 +524683,97.458,67.769 +524684,98.628,66.356 +524685,93.951,70.567 +524686,95.024,69.187 +524687,96.166,67.797 +524688,97.385,66.398 +524689,92.569,70.569 +524690,93.685,69.203 +524691,94.874,67.826 +524692,96.14,66.441 +524693,91.187,70.57 +524694,92.347,69.218 +524695,93.581,67.856 +524696,94.895,66.485 +524697,89.807,70.57 +524698,91.01,69.232 +524699,92.287,67.885 +524700,93.648,66.53 +524701,88.427,70.568 +524702,89.672,69.247 +524703,90.994,67.915 +524704,92.4,66.576 +524705,87.048,70.566 +524706,88.335,69.26 +524707,89.7,67.946 +524708,91.152,66.623 +524709,85.671,70.563 +524710,86.998,69.274 +524711,88.406,67.976 +524712,89.902,66.671 +524713,84.294,70.559 +524714,85.662,69.287 +524715,87.111,68.007 +524716,88.651,66.721 +524717,82.919,70.553 +524718,84.326,69.3 +524719,85.816,68.039 +524720,87.399,66.771 +524721,81.544,70.547 +524722,82.99,69.313 +524723,84.521,68.071 +524724,86.146,66.823 +524725,80.171,70.54 +524726,81.654,69.325 +524727,83.225,68.103 +524728,84.891,66.875 +524729,78.799,70.531 +524730,80.319,69.337 +524731,81.928,68.135 +524732,83.635,66.928 +524733,77.428,70.522 +524734,78.985,69.348 +524735,80.632,68.168 +524736,82.378,66.983 +524737,76.058,70.512 +524738,77.651,69.359 +524739,79.334,68.201 +524740,81.12,67.038 +524741,74.689,70.5 +524742,76.317,69.37 +524743,78.037,68.234 +524744,79.86,67.094 +524745,73.322,70.488 +524746,74.984,69.381 +524747,76.739,68.268 +524748,78.599,67.151 +524749,71.956,70.475 +524750,73.651,69.391 +524751,75.44,68.302 +524752,77.336,67.209 +524753,70.592,70.462 +524754,72.318,69.401 +524755,74.141,68.336 +524756,76.072,67.268 +524757,69.228,70.447 +524758,70.986,69.41 +524759,72.841,68.37 +524760,74.806,67.328 +524761,67.866,70.431 +524762,69.654,69.42 +524763,71.541,68.405 +524764,73.539,67.389 +524765,66.506,70.415 +524766,68.323,69.429 +524767,70.24,68.44 +524768,72.27,67.45 +524769,65.146,70.398 +524770,66.993,69.438 +524771,68.939,68.475 +524772,70.999,67.512 +524773,63.789,70.38 +524774,65.663,69.446 +524775,67.638,68.511 +524776,69.727,67.575 +524777,62.432,70.361 +524778,64.333,69.455 +524779,66.335,68.547 +524780,68.454,67.639 +524781,61.077,70.342 +524782,63.004,69.463 +524783,65.033,68.583 +524784,67.178,67.703 +524785,59.724,70.322 +524786,61.675,69.471 +524787,63.729,68.619 +524788,65.901,67.768 +524789,58.372,70.301 +524790,60.347,69.478 +524791,62.426,68.655 +524792,64.623,67.834 +524793,57.021,70.279 +524794,59.019,69.486 +524795,61.121,68.692 +524796,63.342,67.9 +524797,55.672,70.257 +524798,57.692,69.493 +524799,59.816,68.729 +524800,62.06,67.967 +524801,54.325,70.234 +524802,56.365,69.5 +524803,58.511,68.766 +524804,60.777,68.035 +524805,52.979,70.211 +524806,55.039,69.506 +524807,57.205,68.803 +524808,59.491,68.103 +524809,51.635,70.187 +524810,53.713,69.513 +524811,55.898,68.841 +524812,58.204,68.172 +524813,50.292,70.163 +524814,52.388,69.519 +524815,54.591,68.878 +524816,56.914,68.241 +524817,48.951,70.138 +524818,51.064,69.526 +524819,53.283,68.916 +524820,55.623,68.31 +524821,47.611,70.112 +524822,49.74,69.532 +524823,51.974,68.954 +524824,54.331,68.381 +524825,46.273,70.086 +524826,48.416,69.537 +524827,50.665,68.992 +524828,53.036,68.451 +524829,44.937,70.06 +524830,47.093,69.543 +524831,49.356,69.03 +524832,51.74,68.522 +524833,43.602,70.033 +524834,45.771,69.549 +524835,48.045,69.069 +524836,50.441,68.593 +524837,42.269,70.005 +524838,44.449,69.554 +524839,46.735,69.107 +524840,49.141,68.665 +524841,40.938,69.978 +524842,43.128,69.56 +524843,45.423,69.146 +524844,47.839,68.737 +524845,39.608,69.95 +524846,41.807,69.565 +524847,44.111,69.184 +524848,46.535,68.81 +524849,38.28,69.922 +524850,40.487,69.57 +524851,42.798,69.223 +524852,45.229,68.882 +524853,36.954,69.893 +524854,39.168,69.575 +524855,41.485,69.262 +524856,43.922,68.955 +524857,35.629,69.864 +524858,37.849,69.58 +524859,40.171,69.301 +524860,42.612,69.028 +524861,34.306,69.835 +524862,36.53,69.585 +524863,38.856,69.34 +524864,41.301,69.101 +524865,32.985,69.806 +524866,35.212,69.589 +524867,37.541,69.379 +524868,39.987,69.175 +524869,31.665,69.776 +524870,33.895,69.594 +524871,36.226,69.418 +524872,38.672,69.248 +524873,30.347,69.747 +524874,32.578,69.599 +524875,34.909,69.457 +524876,37.355,69.322 +524877,29.031,69.717 +524878,31.262,69.603 +524879,33.592,69.496 +524880,36.036,69.396 +524881,27.716,69.687 +524882,29.947,69.608 +524883,32.274,69.535 +524884,34.715,69.47 +524885,26.403,69.657 +524886,28.632,69.613 +524887,30.956,69.574 +524888,33.393,69.543 +524889,25.092,69.627 +524890,27.317,69.617 +524891,29.637,69.614 +524892,32.068,69.617 +524893,23.782,69.597 +524894,26.003,69.622 +524895,28.318,69.653 +524896,30.742,69.691 +524897,22.475,69.567 +524898,24.69,69.626 +524899,26.998,69.692 +524900,29.413,69.765 +524901,21.168,69.537 +524902,23.377,69.631 +524903,25.677,69.731 +524904,28.083,69.838 +524905,19.864,69.507 +524906,22.065,69.635 +524907,24.356,69.77 +524908,26.751,69.912 +524909,18.561,69.478 +524910,20.753,69.64 +524911,23.034,69.809 +524912,25.418,69.985 +524913,17.26,69.448 +524914,19.442,69.645 +524915,21.711,69.848 +524916,24.082,70.058 +524917,15.961,69.419 +524918,18.132,69.649 +524919,20.388,69.887 +524920,22.745,70.131 +524921,14.663,69.389 +524922,16.822,69.654 +524923,19.065,69.926 +524924,21.406,70.204 +524925,13.367,69.36 +524926,15.512,69.659 +524927,17.74,69.965 +524928,20.065,70.277 +524929,12.072,69.331 +524930,14.203,69.664 +524931,16.416,70.003 +524932,18.722,70.349 +524933,10.779,69.303 +524934,12.895,69.669 +524935,15.09,70.042 +524936,17.378,70.421 +524937,9.488,69.274 +524938,11.587,69.674 +524939,13.764,70.08 +524940,16.032,70.492 +524941,8.1983,69.246 +524942,10.28,69.679 +524943,12.438,70.119 +524944,14.684,70.564 +524945,6.9103,69.219 +524946,8.973,69.685 +524947,11.11,70.157 +524948,13.335,70.634 +524949,5.6238,69.191 +524950,7.6667,69.69 +524951,9.7827,70.195 +524952,11.983,70.705 +524953,4.3389,69.164 +524954,6.361,69.696 +524955,8.4544,70.233 +524956,10.631,70.775 +524957,3.0555,69.138 +524958,5.0558,69.702 +524959,7.1256,70.271 +524960,9.2765,70.844 +524961,1.7737,69.112 +524962,3.751,69.708 +524963,5.7963,70.308 +524964,7.9206,70.913 +524965,0.49345,69.086 +524966,2.4468,69.714 +524967,4.4665,70.346 +524968,6.5631,70.982 +524969,359.21,69.061 +524970,1.1431,69.72 +524971,3.1361,70.383 +524972,5.2041,71.05 +524973,357.94,69.037 +524974,359.84,69.726 +524975,1.8052,70.42 +524976,3.8436,71.117 +524977,356.66,69.013 +524978,358.54,69.733 +524979,0.47381,70.457 +524980,2.4816,71.184 +524981,355.39,68.989 +524982,357.23,69.74 +524983,359.14,70.494 +524984,1.1181,71.25 +524985,354.11,68.967 +524986,355.93,69.747 +524987,357.81,70.53 +524988,359.75,71.316 +524989,352.84,68.944 +524990,354.63,69.754 +524991,356.48,70.566 +524992,358.39,71.381 +524993,351.57,68.923 +524994,353.33,69.761 +524995,355.14,70.602 +524996,357.02,71.445 +524997,350.3,68.902 +524998,352.03,69.769 +524999,353.81,70.638 +525000,355.65,71.509 +525001,349.04,68.882 +525002,350.73,69.777 +525003,352.48,70.674 +525004,354.28,71.572 +525005,347.77,68.862 +525006,349.43,69.785 +525007,351.14,70.709 +525008,352.91,71.634 +525009,346.51,68.844 +525010,348.13,69.793 +525011,349.81,70.744 +525012,351.54,71.695 +525013,345.24,68.826 +525014,346.83,69.802 +525015,348.47,70.779 +525016,350.16,71.756 +525017,343.98,68.809 +525018,345.53,69.811 +525019,347.13,70.813 +525020,348.79,71.815 +525021,342.72,68.793 +525022,344.24,69.82 +525023,345.8,70.848 +525024,347.41,71.874 +525025,341.46,68.777 +525026,342.94,69.829 +525027,344.46,70.882 +525028,346.03,71.933 +525029,340.2,68.762 +525030,341.64,69.839 +525031,343.12,70.915 +525032,344.65,71.99 +525033,338.94,68.749 +525034,340.34,69.849 +525035,341.79,70.949 +525036,343.27,72.046 +525037,337.69,68.736 +525038,339.05,69.859 +525039,340.45,70.982 +525040,341.89,72.102 +525041,336.43,68.724 +525042,337.75,69.87 +525043,339.11,71.014 +525044,340.51,72.156 +525045,335.18,68.713 +525046,336.46,69.881 +525047,337.77,71.047 +525048,339.13,72.21 +525049,333.92,68.703 +525050,335.16,69.892 +525051,336.43,71.079 +525052,337.75,72.262 +525053,332.67,68.694 +525054,333.86,69.904 +525055,335.09,71.111 +525056,336.36,72.314 +525057,331.42,68.686 +525058,332.57,69.916 +525059,333.75,71.142 +525060,334.98,72.365 +525061,330.17,68.679 +525062,331.27,69.928 +525063,332.41,71.174 +525064,333.59,72.415 +525065,328.92,68.672 +525066,329.98,69.94 +525067,331.07,71.204 +525068,332.2,72.463 +525069,327.67,68.667 +525070,328.69,69.953 +525071,329.73,71.235 +525072,330.81,72.511 +525073,326.42,68.663 +525074,327.39,69.966 +525075,328.39,71.265 +525076,329.43,72.558 +525077,325.18,68.66 +525078,326.1,69.98 +525079,327.05,71.295 +525080,328.04,72.603 +525081,323.93,68.659 +525082,324.8,69.994 +525083,325.71,71.324 +525084,326.65,72.648 +525085,322.69,68.658 +525086,323.51,70.008 +525087,324.37,71.353 +525088,325.26,72.691 +525089,321.44,68.658 +525090,322.22,70.023 +525091,323.03,71.382 +525092,323.87,72.734 +525093,320.2,68.66 +525094,320.93,70.038 +525095,321.68,71.41 +525096,322.48,72.775 +525097,318.95,68.662 +525098,319.63,70.053 +525099,320.34,71.438 +525100,321.08,72.815 +525101,317.71,68.666 +525102,318.34,70.069 +525103,319,71.466 +525104,319.69,72.855 +525105,316.47,68.671 +525106,317.05,70.085 +525107,317.66,71.493 +525108,318.3,72.893 +525109,315.23,68.677 +525110,315.76,70.102 +525111,316.32,71.52 +525112,316.91,72.929 +525113,313.98,68.684 +525114,314.46,70.119 +525115,314.97,71.546 +525116,315.51,72.965 +525117,312.74,68.692 +525118,313.17,70.136 +525119,313.63,71.572 +525120,314.12,73 +525121,311.5,68.702 +525122,311.88,70.154 +525123,312.29,71.598 +525124,312.73,73.033 +525125,310.26,68.713 +525126,310.59,70.172 +525127,310.94,71.623 +525128,311.33,73.066 +525129,309.02,68.724 +525130,309.3,70.19 +525131,309.6,71.648 +525132,309.94,73.097 +525133,307.78,68.738 +525134,308,70.209 +525135,308.26,71.673 +525136,308.54,73.127 +525137,306.54,68.752 +525138,306.71,70.228 +525139,306.91,71.697 +525140,307.15,73.156 +525141,305.3,68.767 +525142,305.42,70.248 +525143,305.57,71.72 +525144,305.75,73.183 +525145,304.06,68.784 +525146,304.13,70.268 +525147,304.23,71.744 +525148,304.36,73.21 +525149,302.82,68.802 +525150,302.84,70.288 +525151,302.88,71.767 +525152,302.96,73.235 +525153,301.58,68.821 +525154,301.55,70.309 +525155,301.54,71.789 +525156,301.57,73.259 +525157,300.35,68.842 +525158,300.25,70.331 +525159,300.2,71.811 +525160,300.18,73.282 +525161,299.11,68.863 +525162,298.96,70.352 +525163,298.85,71.833 +525164,298.78,73.304 +525165,297.87,68.886 +525166,297.67,70.374 +525167,297.51,71.854 +525168,297.39,73.324 +525169,296.63,68.91 +525170,296.38,70.397 +525171,296.17,71.875 +525172,295.99,73.344 +525173,295.39,68.935 +525174,295.09,70.42 +525175,294.83,71.896 +525176,294.6,73.362 +525177,294.15,68.962 +525178,293.8,70.443 +525179,293.48,71.916 +525180,293.21,73.379 +525181,292.91,68.99 +525182,292.5,70.467 +525183,292.14,71.936 +525184,291.81,73.395 +525185,291.67,69.019 +525186,291.21,70.491 +525187,290.8,71.955 +525188,290.42,73.41 +525189,290.43,69.049 +525190,289.92,70.515 +525191,289.45,71.974 +525192,289.03,73.423 +525193,289.19,69.08 +525194,288.63,70.54 +525195,288.11,71.992 +525196,287.64,73.436 +525197,287.95,69.113 +525198,287.33,70.565 +525199,286.77,72.011 +525200,286.25,73.447 +525201,286.7,69.146 +525202,286.04,70.591 +525203,285.43,72.028 +525204,284.86,73.457 +525205,285.46,69.181 +525206,284.75,70.617 +525207,284.08,72.046 +525208,283.47,73.466 +525209,284.22,69.217 +525210,283.45,70.643 +525211,282.74,72.063 +525212,282.08,73.474 +525213,282.97,69.254 +525214,282.16,70.67 +525215,281.4,72.079 +525216,280.69,73.48 +525217,281.73,69.293 +525218,280.87,70.697 +525219,280.06,72.096 +525220,279.3,73.486 +525221,280.49,69.332 +525222,279.57,70.725 +525223,278.72,72.111 +525224,277.91,73.491 +525225,279.24,69.373 +525226,278.28,70.753 +525227,277.37,72.127 +525228,276.52,73.494 +525229,278,69.415 +525230,276.99,70.781 +525231,276.03,72.142 +525232,275.14,73.496 +525233,276.75,69.458 +525234,275.69,70.81 +525235,274.69,72.157 +525236,273.75,73.497 +525237,275.5,69.502 +525238,274.4,70.839 +525239,273.35,72.171 +525240,272.37,73.497 +525241,274.25,69.547 +525242,273.1,70.868 +525243,272.01,72.185 +525244,270.98,73.496 +525245,273,69.593 +525246,271.81,70.898 +525247,270.67,72.199 +525248,269.6,73.494 +525249,271.75,69.64 +525250,270.51,70.928 +525251,269.33,72.212 +525252,268.22,73.491 +525253,270.5,69.689 +525254,269.21,70.958 +525255,267.99,72.225 +525256,266.83,73.487 +525257,269.25,69.738 +525258,267.92,70.989 +525259,266.65,72.238 +525260,265.45,73.482 +525261,268,69.788 +525262,266.62,71.02 +525263,265.31,72.25 +525264,264.07,73.476 +525265,266.74,69.84 +525266,265.32,71.052 +525267,263.98,72.262 +525268,262.7,73.469 +525269,265.49,69.892 +525270,264.03,71.084 +525271,262.64,72.274 +525272,261.32,73.461 +525273,264.23,69.945 +525274,262.73,71.116 +525275,261.3,72.285 +525276,259.94,73.452 +525277,262.97,70 +525278,261.43,71.148 +525279,259.96,72.296 +525280,258.57,73.442 +525281,261.72,70.055 +525282,260.13,71.181 +525283,258.63,72.307 +525284,257.19,73.431 +525285,260.46,70.111 +525286,258.83,71.214 +525287,257.29,72.317 +525288,255.82,73.42 +525289,259.19,70.168 +525290,257.53,71.247 +525291,255.95,72.328 +525292,254.45,73.407 +525293,257.93,70.226 +525294,256.23,71.281 +525295,254.62,72.337 +525296,253.08,73.393 +525297,256.67,70.285 +525298,254.93,71.315 +525299,253.28,72.347 +525300,251.71,73.379 +525301,255.4,70.344 +525302,253.63,71.349 +525303,251.95,72.356 +525304,250.34,73.364 +525305,254.14,70.405 +525306,252.33,71.384 +525307,250.61,72.365 +525308,248.97,73.348 +525309,252.87,70.466 +525310,251.03,71.418 +525311,249.28,72.374 +525312,247.61,73.331 +525313,251.6,70.528 +525314,249.73,71.453 +525315,247.94,72.383 +525316,246.24,73.314 +525317,250.33,70.591 +525318,248.42,71.489 +525319,246.61,72.391 +525320,244.88,73.295 +525321,249.06,70.654 +525322,247.12,71.524 +525323,245.28,72.399 +525324,243.52,73.276 +525325,247.78,70.718 +525326,245.82,71.56 +525327,243.94,72.407 +525328,242.15,73.256 +525329,246.51,70.783 +525330,244.51,71.596 +525331,242.61,72.414 +525332,240.8,73.236 +525333,245.23,70.849 +525334,243.21,71.632 +525335,241.28,72.421 +525336,239.44,73.215 +525337,243.95,70.915 +525338,241.9,71.668 +525339,239.95,72.428 +525340,238.08,73.193 +525341,242.67,70.981 +525342,240.6,71.705 +525343,238.62,72.435 +525344,236.73,73.171 +525345,241.39,71.049 +525346,239.29,71.742 +525347,237.29,72.442 +525348,235.37,73.148 +525349,240.11,71.117 +525350,237.98,71.779 +525351,235.96,72.449 +525352,234.02,73.124 +525353,238.82,71.185 +525354,236.68,71.816 +525355,234.63,72.455 +525356,232.67,73.1 +525357,237.54,71.254 +525358,235.37,71.853 +525359,233.3,72.461 +525360,231.32,73.076 +525361,236.25,71.323 +525362,234.06,71.891 +525363,231.97,72.467 +525364,229.97,73.051 +525365,234.96,71.393 +525366,232.75,71.928 +525367,230.64,72.473 +525368,228.63,73.025 +525369,233.67,71.463 +525370,231.44,71.966 +525371,229.32,72.479 +525372,227.28,72.999 +525373,232.37,71.534 +525374,230.13,72.004 +525375,227.99,72.484 +525376,225.94,72.973 +525377,231.08,71.605 +525378,228.82,72.042 +525379,226.66,72.49 +525380,224.6,72.946 +525381,229.78,71.676 +525382,227.51,72.08 +525383,225.34,72.495 +525384,223.26,72.918 +525385,228.48,71.748 +525386,226.2,72.118 +525387,224.01,72.5 +525388,221.92,72.891 +525389,227.18,71.82 +525390,224.88,72.157 +525391,222.69,72.505 +525392,220.59,72.863 +525393,225.88,71.892 +525394,223.57,72.195 +525395,221.36,72.51 +525396,219.25,72.835 +525397,224.58,71.965 +525398,222.26,72.234 +525399,220.04,72.515 +525400,217.92,72.806 +525401,223.27,72.037 +525402,220.94,72.273 +525403,218.72,72.52 +525404,216.58,72.778 +525405,221.96,72.11 +525406,219.63,72.311 +525407,217.4,72.525 +525408,215.25,72.749 +525409,220.66,72.183 +525410,218.31,72.35 +525411,216.07,72.529 +525412,213.93,72.72 +525413,219.34,72.257 +525414,217,72.389 +525415,214.75,72.534 +525416,212.6,72.69 +525417,218.03,72.33 +525418,215.68,72.428 +525419,213.43,72.539 +525420,211.27,72.661 +525421,216.72,72.403 +525422,214.36,72.467 +525423,212.11,72.543 +525424,209.95,72.631 +525425,215.4,72.476 +525426,213.04,72.506 +525427,210.79,72.548 +525428,208.63,72.602 +525429,214.08,72.55 +525430,211.73,72.544 +525431,209.47,72.552 +525432,207.31,72.572 +525433,212.76,72.623 +525434,210.41,72.583 +525435,208.15,72.557 +525436,205.99,72.542 +525437,211.44,72.696 +525438,209.09,72.622 +525439,206.84,72.561 +525440,204.67,72.513 +525441,210.12,72.77 +525442,207.77,72.661 +525443,205.52,72.566 +525444,203.36,72.483 +525445,208.79,72.843 +525446,206.45,72.7 +525447,204.2,72.571 +525448,202.04,72.453 +525449,207.46,72.916 +525450,205.12,72.739 +525451,202.88,72.575 +525452,200.73,72.424 +525453,206.13,72.989 +525454,203.8,72.778 +525455,201.57,72.58 +525456,199.42,72.394 +525457,204.8,73.061 +525458,202.48,72.816 +525459,200.25,72.585 +525460,198.11,72.365 +525461,203.47,73.134 +525462,201.16,72.855 +525463,198.94,72.589 +525464,196.8,72.336 +525465,202.14,73.206 +525466,199.83,72.894 +525467,197.62,72.594 +525468,195.5,72.307 +525469,200.8,73.278 +525470,198.51,72.932 +525471,196.31,72.599 +525472,194.19,72.278 +525473,199.46,73.35 +525474,197.18,72.971 +525475,195,72.604 +525476,192.89,72.25 +525477,198.12,73.421 +525478,195.86,73.009 +525479,193.69,72.609 +525480,191.59,72.222 +525481,196.78,73.492 +525482,194.53,73.047 +525483,192.37,72.615 +525484,190.29,72.194 +525485,195.44,73.563 +525486,193.21,73.085 +525487,191.06,72.62 +525488,188.99,72.166 +525489,194.09,73.633 +525490,191.88,73.123 +525491,189.75,72.626 +525492,187.7,72.139 +525493,192.75,73.703 +525494,190.55,73.161 +525495,188.44,72.631 +525496,186.4,72.112 +525497,191.4,73.772 +525498,189.22,73.199 +525499,187.13,72.637 +525500,185.11,72.086 +525501,190.05,73.841 +525502,187.89,73.236 +525503,185.82,72.643 +525504,183.82,72.06 +525505,188.7,73.91 +525506,186.56,73.274 +525507,184.51,72.649 +525508,182.53,72.035 +525509,187.35,73.978 +525510,185.23,73.311 +525511,183.2,72.655 +525512,181.24,72.01 +525513,185.99,74.045 +525514,183.9,73.348 +525515,181.9,72.662 +525516,179.95,71.985 +525517,184.63,74.112 +525518,182.57,73.385 +525519,180.59,72.668 +525520,178.67,71.961 +525521,183.28,74.178 +525522,181.24,73.422 +525523,179.28,72.675 +525524,177.39,71.938 +525525,181.92,74.244 +525526,179.91,73.458 +525527,177.97,72.682 +525528,176.1,71.915 +525529,180.56,74.309 +525530,178.58,73.494 +525531,176.67,72.689 +525532,174.82,71.893 +525533,179.2,74.373 +525534,177.24,73.53 +525535,175.36,72.697 +525536,173.54,71.871 +525537,177.83,74.437 +525538,175.91,73.566 +525539,174.06,72.704 +525540,172.26,71.85 +525541,176.47,74.5 +525542,174.58,73.602 +525543,172.75,72.712 +525544,170.99,71.83 +525545,175.1,74.562 +525546,173.24,73.637 +525547,171.45,72.72 +525548,169.71,71.811 +525549,173.73,74.624 +525550,171.91,73.672 +525551,170.14,72.729 +525552,168.44,71.792 +525553,172.36,74.684 +525554,170.57,73.707 +525555,168.84,72.737 +525556,167.16,71.774 +525557,170.99,74.744 +525558,169.23,73.742 +525559,167.54,72.746 +525560,165.89,71.757 +525561,169.62,74.803 +525562,167.9,73.776 +525563,166.23,72.755 +525564,164.62,71.74 +525565,168.25,74.862 +525566,166.56,73.81 +525567,164.93,72.765 +525568,163.35,71.725 +525569,166.88,74.919 +525570,165.22,73.844 +525571,163.63,72.774 +525572,162.09,71.71 +525573,165.5,74.976 +525574,163.89,73.878 +525575,162.33,72.784 +525576,160.82,71.696 +525577,164.13,75.031 +525578,162.55,73.911 +525579,161.03,72.795 +525580,159.55,71.683 +525581,162.75,75.086 +525582,161.21,73.944 +525583,159.73,72.805 +525584,158.29,71.671 +525585,161.37,75.14 +525586,159.87,73.976 +525587,158.43,72.816 +525588,157.03,71.66 +525589,159.99,75.193 +525590,158.53,74.009 +525591,157.13,72.827 +525592,155.76,71.65 +525593,158.61,75.245 +525594,157.19,74.041 +525595,155.83,72.839 +525596,154.5,71.64 +525597,157.23,75.296 +525598,155.85,74.072 +525599,154.53,72.851 +525600,153.24,71.632 +525601,155.85,75.346 +525602,154.51,74.104 +525603,153.23,72.863 +525604,151.98,71.625 +525605,154.46,75.395 +525606,153.17,74.135 +525607,151.93,72.876 +525608,150.73,71.618 +525609,153.08,75.443 +525610,151.83,74.166 +525611,150.63,72.888 +525612,149.47,71.613 +525613,151.69,75.49 +525614,150.49,74.196 +525615,149.33,72.902 +525616,148.21,71.609 +525617,150.31,75.537 +525618,149.15,74.226 +525619,148.04,72.915 +525620,146.96,71.605 +525621,148.92,75.582 +525622,147.81,74.256 +525623,146.74,72.929 +525624,145.7,71.603 +525625,147.53,75.625 +525626,146.47,74.285 +525627,145.44,72.944 +525628,144.45,71.602 +525629,146.14,75.668 +525630,145.12,74.314 +525631,144.14,72.958 +525632,143.2,71.602 +525633,144.76,75.71 +525634,143.78,74.343 +525635,142.85,72.973 +525636,141.95,71.603 +525637,143.37,75.751 +525638,142.44,74.371 +525639,141.55,72.989 +525640,140.69,71.606 +525641,141.98,75.79 +525642,141.1,74.399 +525643,140.25,73.004 +525644,139.44,71.609 +525645,140.59,75.829 +525646,139.75,74.426 +525647,138.96,73.021 +525648,138.19,71.614 +525649,139.19,75.866 +525650,138.41,74.453 +525651,137.66,73.037 +525652,136.94,71.619 +525653,137.8,75.903 +525654,137.07,74.48 +525655,136.36,73.054 +525656,135.69,71.626 +525657,136.41,75.938 +525658,135.72,74.506 +525659,135.07,73.071 +525660,134.45,71.634 +525661,135.02,75.972 +525662,134.38,74.532 +525663,133.77,73.089 +525664,133.2,71.643 +525665,133.62,76.005 +525666,133.03,74.558 +525667,132.48,73.107 +525668,131.95,71.654 +525669,132.23,76.036 +525670,131.69,74.583 +525671,131.18,73.126 +525672,130.7,71.665 +525673,130.84,76.067 +525674,130.35,74.608 +525675,129.89,73.145 +525676,129.46,71.678 +525677,129.44,76.096 +525678,129,74.633 +525679,128.59,73.164 +525680,128.21,71.692 +525681,128.05,76.124 +525682,127.66,74.657 +525683,127.3,73.184 +525684,126.97,71.707 +525685,126.66,76.151 +525686,126.31,74.68 +525687,126,73.204 +525688,125.72,71.724 +525689,125.26,76.177 +525690,124.97,74.704 +525691,124.71,73.224 +525692,124.47,71.741 +525693,123.87,76.202 +525694,123.62,74.726 +525695,123.41,73.245 +525696,123.23,71.76 +525697,122.47,76.226 +525698,122.28,74.749 +525699,122.12,73.267 +525700,121.98,71.78 +525701,121.08,76.248 +525702,120.93,74.771 +525703,120.82,73.288 +525704,120.74,71.801 +525705,119.68,76.269 +525706,119.59,74.793 +525707,119.53,73.311 +525708,119.49,71.824 +525709,118.29,76.289 +525710,118.24,74.814 +525711,118.23,73.333 +525712,118.25,71.848 +525713,116.89,76.308 +525714,116.9,74.835 +525715,116.94,73.356 +525716,117.01,71.873 +525717,115.5,76.326 +525718,115.55,74.856 +525719,115.64,73.379 +525720,115.76,71.899 +525721,114.11,76.342 +525722,114.21,74.876 +525723,114.34,73.403 +525724,114.52,71.926 +525725,112.71,76.358 +525726,112.86,74.896 +525727,113.05,73.427 +525728,113.27,71.955 +525729,111.32,76.372 +525730,111.52,74.915 +525731,111.75,73.452 +525732,112.03,71.985 +525733,109.92,76.385 +525734,110.17,74.934 +525735,110.46,73.477 +525736,110.78,72.016 +525737,108.53,76.397 +525738,108.83,74.952 +525739,109.16,73.502 +525740,109.53,72.048 +525741,107.14,76.408 +525742,107.48,74.971 +525743,107.87,73.528 +525744,108.29,72.081 +525745,105.75,76.417 +525746,106.14,74.989 +525747,106.57,73.554 +525748,107.04,72.116 +525749,104.35,76.426 +525750,104.8,75.006 +525751,105.28,73.581 +525752,105.8,72.152 +525753,102.96,76.433 +525754,103.45,75.023 +525755,103.98,73.608 +525756,104.55,72.189 +525757,101.57,76.44 +525758,102.11,75.04 +525759,102.68,73.635 +525760,103.3,72.227 +525761,100.18,76.445 +525762,100.76,75.056 +525763,101.39,73.663 +525764,102.05,72.266 +525765,98.789,76.449 +525766,99.42,75.072 +525767,100.09,73.691 +525768,100.81,72.307 +525769,97.399,76.452 +525770,98.076,75.088 +525771,98.795,73.719 +525772,99.558,72.349 +525773,96.01,76.454 +525774,96.733,75.103 +525775,97.498,73.748 +525776,98.309,72.391 +525777,94.621,76.454 +525778,95.39,75.118 +525779,96.201,73.778 +525780,97.059,72.435 +525781,93.234,76.454 +525782,94.046,75.132 +525783,94.904,73.807 +525784,95.808,72.48 +525785,91.846,76.453 +525786,92.704,75.146 +525787,93.606,73.837 +525788,94.557,72.526 +525789,90.46,76.45 +525790,91.361,75.16 +525791,92.308,73.867 +525792,93.305,72.574 +525793,89.074,76.447 +525794,90.019,75.174 +525795,91.01,73.898 +525796,92.052,72.622 +525797,87.69,76.443 +525798,88.676,75.187 +525799,89.712,73.929 +525800,90.799,72.671 +525801,86.306,76.437 +525802,87.335,75.2 +525803,88.413,73.961 +525804,89.545,72.722 +525805,84.922,76.431 +525806,85.993,75.212 +525807,87.114,73.992 +525808,88.289,72.773 +525809,83.54,76.423 +525810,84.652,75.224 +525811,85.815,74.024 +525812,87.033,72.825 +525813,82.159,76.415 +525814,83.311,75.236 +525815,84.515,74.057 +525816,85.776,72.879 +525817,80.778,76.406 +525818,81.97,75.248 +525819,83.215,74.09 +525820,84.518,72.933 +525821,79.399,76.396 +525822,80.629,75.259 +525823,81.915,74.123 +525824,83.259,72.988 +525825,78.02,76.385 +525826,79.289,75.27 +525827,80.614,74.156 +525828,81.999,73.045 +525829,76.643,76.373 +525830,77.949,75.281 +525831,79.313,74.19 +525832,80.738,73.102 +525833,75.267,76.36 +525834,76.61,75.291 +525835,78.012,74.224 +525836,79.476,73.16 +525837,73.891,76.346 +525838,75.271,75.301 +525839,76.71,74.258 +525840,78.213,73.219 +525841,72.517,76.332 +525842,73.932,75.311 +525843,75.408,74.292 +525844,76.948,73.279 +525845,71.144,76.316 +525846,72.594,75.32 +525847,74.105,74.327 +525848,75.683,73.339 +525849,69.772,76.3 +525850,71.256,75.329 +525851,72.802,74.362 +525852,74.416,73.401 +525853,68.401,76.283 +525854,69.918,75.338 +525855,71.499,74.398 +525856,73.148,73.463 +525857,67.032,76.266 +525858,68.581,75.347 +525859,70.195,74.433 +525860,71.879,73.526 +525861,65.663,76.247 +525862,67.244,75.356 +525863,68.89,74.469 +525864,70.608,73.59 +525865,64.296,76.228 +525866,65.907,75.364 +525867,67.586,74.505 +525868,69.336,73.655 +525869,62.93,76.208 +525870,64.571,75.372 +525871,66.28,74.542 +525872,68.063,73.72 +525873,61.565,76.188 +525874,63.236,75.38 +525875,64.975,74.578 +525876,66.788,73.786 +525877,60.202,76.167 +525878,61.901,75.387 +525879,63.668,74.615 +525880,65.512,73.852 +525881,58.84,76.145 +525882,60.566,75.395 +525883,62.362,74.652 +525884,64.234,73.92 +525885,57.48,76.122 +525886,59.232,75.402 +525887,61.055,74.69 +525888,62.956,73.987 +525889,56.12,76.099 +525890,57.898,75.409 +525891,59.747,74.727 +525892,61.675,74.056 +525893,54.762,76.076 +525894,56.564,75.416 +525895,58.439,74.765 +525896,60.393,74.125 +525897,53.406,76.052 +525898,55.231,75.422 +525899,57.13,74.802 +525900,59.11,74.194 +525901,52.051,76.027 +525902,53.899,75.429 +525903,55.821,74.84 +525904,57.825,74.264 +525905,50.697,76.002 +525906,52.567,75.435 +525907,54.511,74.879 +525908,56.538,74.335 +525909,49.345,75.977 +525910,51.235,75.441 +525911,53.201,74.917 +525912,55.25,74.406 +525913,47.994,75.951 +525914,49.904,75.447 +525915,51.89,74.955 +525916,53.961,74.477 +525917,46.645,75.924 +525918,48.574,75.453 +525919,50.579,74.994 +525920,52.669,74.549 +525921,45.297,75.898 +525922,47.243,75.459 +525923,49.267,75.033 +525924,51.377,74.621 +525925,43.95,75.87 +525926,45.914,75.465 +525927,47.955,75.072 +525928,50.082,74.693 +525929,42.606,75.843 +525930,44.585,75.47 +525931,46.642,75.111 +525932,48.786,74.766 +525933,41.262,75.815 +525934,43.256,75.476 +525935,45.328,75.15 +525936,47.488,74.839 +525937,39.92,75.787 +525938,41.928,75.481 +525939,44.014,75.189 +525940,46.189,74.913 +525941,38.58,75.759 +525942,40.6,75.487 +525943,42.7,75.228 +525944,44.888,74.986 +525945,37.241,75.73 +525946,39.273,75.492 +525947,41.385,75.268 +525948,43.585,75.06 +525949,35.904,75.702 +525950,37.947,75.497 +525951,40.069,75.307 +525952,42.28,75.134 +525953,34.568,75.673 +525954,36.621,75.502 +525955,38.753,75.346 +525956,40.974,75.208 +525957,33.234,75.644 +525958,35.295,75.507 +525959,37.436,75.386 +525960,39.666,75.282 +525961,31.902,75.614 +525962,33.97,75.512 +525963,36.118,75.426 +525964,38.356,75.357 +525965,30.571,75.585 +525966,32.646,75.517 +525967,34.8,75.465 +525968,37.045,75.431 +525969,29.241,75.556 +525970,31.322,75.522 +525971,33.482,75.505 +525972,35.732,75.506 +525973,27.914,75.526 +525974,29.998,75.527 +525975,32.162,75.544 +525976,34.417,75.58 +525977,26.587,75.497 +525978,28.675,75.532 +525979,30.843,75.584 +525980,33.1,75.654 +525981,25.263,75.468 +525982,27.353,75.537 +525983,29.522,75.624 +525984,31.782,75.729 +525985,23.94,75.438 +525986,26.031,75.542 +525987,28.201,75.663 +525988,30.462,75.803 +525989,22.618,75.409 +525990,24.71,75.547 +525991,26.88,75.703 +525992,29.14,75.877 +525993,21.298,75.38 +525994,23.389,75.553 +525995,25.558,75.742 +525996,27.817,75.951 +525997,19.98,75.351 +525998,22.069,75.558 +525999,24.235,75.782 +526000,26.492,76.025 +526001,18.663,75.322 +526002,20.749,75.563 +526003,22.912,75.821 +526004,25.165,76.099 +526005,17.348,75.293 +526006,19.429,75.568 +526007,21.588,75.861 +526008,23.836,76.173 +526009,16.035,75.264 +526010,18.111,75.574 +526011,20.264,75.9 +526012,22.505,76.246 +526013,14.723,75.236 +526014,16.792,75.579 +526015,18.939,75.939 +526016,21.173,76.319 +526017,13.412,75.208 +526018,15.475,75.585 +526019,17.613,75.979 +526020,19.839,76.392 +526021,12.103,75.18 +526022,14.158,75.59 +526023,16.287,76.018 +526024,18.504,76.464 +526025,10.796,75.153 +526026,12.841,75.596 +526027,14.96,76.057 +526028,17.166,76.536 +526029,9.4903,75.126 +526030,11.525,75.602 +526031,13.633,76.095 +526032,15.828,76.608 +526033,8.186,75.099 +526034,10.209,75.608 +526035,12.305,76.134 +526036,14.487,76.679 +526037,6.8834,75.073 +526038,8.8939,75.614 +526039,10.977,76.173 +526040,13.145,76.75 +526041,5.5822,75.047 +526042,7.5793,75.621 +526043,9.6482,76.211 +526044,11.801,76.82 +526045,4.2825,75.022 +526046,6.2651,75.627 +526047,8.3188,76.249 +526048,10.455,76.89 +526049,2.9844,74.997 +526050,4.9514,75.634 +526051,6.9888,76.288 +526052,9.1081,76.96 +526053,1.6877,74.972 +526054,3.6382,75.641 +526055,5.6583,76.325 +526056,7.7593,77.028 +526057,0.3925,74.948 +526058,2.3255,75.648 +526059,4.3272,76.363 +526060,6.4089,77.097 +526061,359.1,74.925 +526062,1.0133,75.655 +526063,2.9956,76.401 +526064,5.057,77.164 +526065,357.81,74.902 +526066,359.7,75.662 +526067,1.6635,76.438 +526068,3.7035,77.232 +526069,356.52,74.88 +526070,358.39,75.67 +526071,0.3309,76.475 +526072,2.3485,77.298 +526073,355.23,74.858 +526074,357.08,75.678 +526075,359,76.512 +526076,0.992,77.364 +526077,353.94,74.837 +526078,355.77,75.686 +526079,357.66,76.549 +526080,359.63,77.429 +526081,352.65,74.817 +526082,354.46,75.694 +526083,356.33,76.586 +526084,358.27,77.494 +526085,351.37,74.797 +526086,353.15,75.702 +526087,355,76.622 +526088,356.91,77.557 +526089,350.08,74.779 +526090,351.84,75.711 +526091,353.66,76.658 +526092,355.55,77.62 +526093,348.8,74.76 +526094,350.53,75.72 +526095,352.32,76.694 +526096,354.19,77.683 +526097,347.52,74.743 +526098,349.22,75.73 +526099,350.99,76.73 +526100,352.82,77.744 +526101,346.24,74.727 +526102,347.92,75.739 +526103,349.65,76.765 +526104,351.46,77.805 +526105,344.96,74.711 +526106,346.61,75.749 +526107,348.31,76.8 +526108,350.09,77.865 +526109,343.68,74.696 +526110,345.3,75.759 +526111,346.98,76.835 +526112,348.72,77.924 +526113,342.41,74.682 +526114,344,75.77 +526115,345.64,76.869 +526116,347.35,77.982 +526117,341.13,74.669 +526118,342.69,75.78 +526119,344.3,76.904 +526120,345.98,78.039 +526121,339.86,74.656 +526122,341.38,75.791 +526123,342.96,76.938 +526124,344.6,78.096 +526125,338.58,74.645 +526126,340.08,75.803 +526127,341.62,76.971 +526128,343.23,78.151 +526129,337.31,74.635 +526130,338.77,75.814 +526131,340.28,77.005 +526132,341.85,78.206 +526133,336.04,74.625 +526134,337.47,75.826 +526135,338.94,77.038 +526136,340.48,78.259 +526137,334.77,74.617 +526138,336.16,75.839 +526139,337.6,77.07 +526140,339.1,78.312 +526141,333.5,74.609 +526142,334.86,75.851 +526143,336.26,77.103 +526144,337.72,78.363 +526145,332.24,74.603 +526146,333.56,75.864 +526147,334.92,77.135 +526148,336.34,78.414 +526149,330.97,74.597 +526150,332.25,75.877 +526151,333.58,77.166 +526152,334.96,78.464 +526153,329.71,74.593 +526154,330.95,75.891 +526155,332.24,77.198 +526156,333.58,78.512 +526157,328.44,74.589 +526158,329.65,75.905 +526159,330.9,77.229 +526160,332.2,78.56 +526161,327.18,74.587 +526162,328.34,75.92 +526163,329.55,77.26 +526164,330.81,78.607 +526165,325.92,74.585 +526166,327.04,75.934 +526167,328.21,77.29 +526168,329.43,78.652 +526169,324.65,74.585 +526170,325.74,75.949 +526171,326.87,77.32 +526172,328.04,78.697 +526173,323.39,74.586 +526174,324.44,75.965 +526175,325.52,77.35 +526176,326.66,78.74 +526177,322.13,74.588 +526178,323.14,75.981 +526179,324.18,77.379 +526180,325.27,78.782 +526181,320.87,74.591 +526182,321.84,75.997 +526183,322.84,77.408 +526184,323.88,78.823 +526185,319.62,74.596 +526186,320.53,76.014 +526187,321.49,77.436 +526188,322.5,78.863 +526189,318.36,74.601 +526190,319.23,76.031 +526191,320.15,77.464 +526192,321.11,78.902 +526193,317.1,74.608 +526194,317.93,76.048 +526195,318.8,77.492 +526196,319.72,78.94 +526197,315.84,74.616 +526198,316.63,76.066 +526199,317.46,77.52 +526200,318.33,78.977 +526201,314.59,74.625 +526202,315.33,76.084 +526203,316.11,77.547 +526204,316.94,79.012 +526205,313.33,74.635 +526206,314.03,76.103 +526207,314.77,77.573 +526208,315.54,79.046 +526209,312.08,74.646 +526210,312.73,76.122 +526211,313.42,77.6 +526212,314.15,79.08 +526213,310.82,74.659 +526214,311.43,76.141 +526215,312.08,77.626 +526216,312.76,79.112 +526217,309.57,74.673 +526218,310.13,76.161 +526219,310.73,77.651 +526220,311.37,79.142 +526221,308.32,74.688 +526222,308.83,76.181 +526223,309.39,77.676 +526224,309.97,79.172 +526225,307.06,74.704 +526226,307.53,76.202 +526227,308.04,77.701 +526228,308.58,79.201 +526229,305.81,74.722 +526230,306.23,76.223 +526231,306.69,77.725 +526232,307.19,79.228 +526233,304.56,74.74 +526234,304.94,76.244 +526235,305.35,77.749 +526236,305.79,79.254 +526237,303.31,74.76 +526238,303.64,76.266 +526239,304,77.773 +526240,304.4,79.279 +526241,302.05,74.781 +526242,302.34,76.288 +526243,302.65,77.796 +526244,303,79.303 +526245,300.8,74.804 +526246,301.04,76.311 +526247,301.31,77.819 +526248,301.61,79.325 +526249,299.55,74.828 +526250,299.74,76.334 +526251,299.96,77.841 +526252,300.21,79.347 +526253,298.3,74.852 +526254,298.44,76.358 +526255,298.61,77.863 +526256,298.82,79.367 +526257,297.05,74.879 +526258,297.14,76.382 +526259,297.27,77.884 +526260,297.42,79.386 +526261,295.8,74.906 +526262,295.84,76.406 +526263,295.92,77.906 +526264,296.03,79.404 +526265,294.55,74.935 +526266,294.54,76.431 +526267,294.57,77.926 +526268,294.63,79.42 +526269,293.3,74.965 +526270,293.24,76.456 +526271,293.23,77.947 +526272,293.24,79.436 +526273,292.04,74.996 +526274,291.95,76.481 +526275,291.88,77.967 +526276,291.84,79.45 +526277,290.79,75.028 +526278,290.65,76.507 +526279,290.53,77.986 +526280,290.45,79.463 +526281,289.54,75.062 +526282,289.35,76.534 +526283,289.18,78.005 +526284,289.05,79.475 +526285,288.29,75.096 +526286,288.05,76.561 +526287,287.84,78.024 +526288,287.66,79.486 +526289,287.04,75.132 +526290,286.75,76.588 +526291,286.49,78.043 +526292,286.27,79.496 +526293,285.79,75.169 +526294,285.45,76.615 +526295,285.14,78.061 +526296,284.87,79.504 +526297,284.53,75.208 +526298,284.15,76.643 +526299,283.8,78.079 +526300,283.48,79.512 +526301,283.28,75.247 +526302,282.85,76.672 +526303,282.45,78.096 +526304,282.09,79.518 +526305,282.03,75.288 +526306,281.55,76.7 +526307,281.1,78.113 +526308,280.69,79.523 +526309,280.78,75.33 +526310,280.25,76.73 +526311,279.76,78.129 +526312,279.3,79.527 +526313,279.52,75.373 +526314,278.95,76.759 +526315,278.41,78.145 +526316,277.91,79.53 +526317,278.27,75.418 +526318,277.65,76.789 +526319,277.07,78.161 +526320,276.52,79.532 +526321,277.01,75.463 +526322,276.35,76.82 +526323,275.72,78.177 +526324,275.13,79.533 +526325,275.76,75.509 +526326,275.05,76.85 +526327,274.37,78.192 +526328,273.73,79.533 +526329,274.5,75.557 +526330,273.75,76.881 +526331,273.03,78.207 +526332,272.34,79.531 +526333,273.25,75.606 +526334,272.45,76.913 +526335,271.68,78.221 +526336,270.96,79.529 +526337,271.99,75.656 +526338,271.14,76.945 +526339,270.34,78.235 +526340,269.57,79.525 +526341,270.73,75.707 +526342,269.84,76.977 +526343,268.99,78.249 +526344,268.18,79.521 +526345,269.48,75.758 +526346,268.54,77.009 +526347,267.65,78.262 +526348,266.79,79.516 +526349,268.22,75.812 +526350,267.24,77.042 +526351,266.3,78.275 +526352,265.4,79.509 +526353,266.96,75.866 +526354,265.94,77.075 +526355,264.96,78.288 +526356,264.02,79.502 +526357,265.7,75.921 +526358,264.63,77.109 +526359,263.61,78.3 +526360,262.63,79.493 +526361,264.44,75.977 +526362,263.33,77.143 +526363,262.27,78.312 +526364,261.25,79.484 +526365,263.17,76.034 +526366,262.03,77.177 +526367,260.93,78.324 +526368,259.87,79.474 +526369,261.91,76.092 +526370,260.72,77.211 +526371,259.58,78.336 +526372,258.48,79.463 +526373,260.65,76.151 +526374,259.42,77.246 +526375,258.24,78.347 +526376,257.1,79.45 +526377,259.38,76.21 +526378,258.12,77.281 +526379,256.9,78.358 +526380,255.72,79.437 +526381,258.12,76.271 +526382,256.81,77.317 +526383,255.55,78.368 +526384,254.34,79.424 +526385,256.85,76.333 +526386,255.51,77.353 +526387,254.21,78.379 +526388,252.96,79.409 +526389,255.58,76.395 +526390,254.2,77.389 +526391,252.87,78.389 +526392,251.58,79.394 +526393,254.31,76.459 +526394,252.9,77.425 +526395,251.53,78.399 +526396,250.21,79.377 +526397,253.04,76.523 +526398,251.59,77.462 +526399,250.19,78.408 +526400,248.83,79.36 +526401,251.77,76.588 +526402,250.28,77.498 +526403,248.85,78.417 +526404,247.46,79.342 +526405,250.5,76.653 +526406,248.98,77.536 +526407,247.5,78.427 +526408,246.08,79.324 +526409,249.23,76.72 +526410,247.67,77.573 +526411,246.16,78.435 +526412,244.71,79.305 +526413,247.95,76.787 +526414,246.36,77.611 +526415,244.82,78.444 +526416,243.34,79.285 +526417,246.68,76.855 +526418,245.05,77.648 +526419,243.49,78.452 +526420,241.97,79.264 +526421,245.4,76.923 +526422,243.74,77.687 +526423,242.15,78.46 +526424,240.6,79.243 +526425,244.12,76.993 +526426,242.44,77.725 +526427,240.81,78.468 +526428,239.23,79.221 +526429,242.84,77.062 +526430,241.13,77.763 +526431,239.47,78.476 +526432,237.87,79.198 +526433,241.56,77.133 +526434,239.82,77.802 +526435,238.13,78.484 +526436,236.5,79.175 +526437,240.28,77.204 +526438,238.51,77.841 +526439,236.79,78.491 +526440,235.14,79.152 +526441,239,77.275 +526442,237.19,77.88 +526443,235.46,78.498 +526444,233.78,79.127 +526445,237.71,77.347 +526446,235.88,77.919 +526447,234.12,78.505 +526448,232.41,79.103 +526449,236.42,77.42 +526450,234.57,77.959 +526451,232.78,78.512 +526452,231.05,79.078 +526453,235.14,77.493 +526454,233.26,77.998 +526455,231.45,78.519 +526456,229.7,79.052 +526457,233.85,77.567 +526458,231.95,78.038 +526459,230.11,78.525 +526460,228.34,79.026 +526461,232.56,77.64 +526462,230.63,78.078 +526463,228.78,78.532 +526464,226.98,78.999 +526465,231.26,77.715 +526466,229.32,78.118 +526467,227.44,78.538 +526468,225.63,78.972 +526469,229.97,77.789 +526470,228.01,78.158 +526471,226.11,78.544 +526472,224.27,78.945 +526473,228.67,77.864 +526474,226.69,78.199 +526475,224.77,78.551 +526476,222.92,78.918 +526477,227.38,77.94 +526478,225.38,78.239 +526479,223.44,78.557 +526480,221.57,78.89 +526481,226.08,78.015 +526482,224.06,78.279 +526483,222.11,78.562 +526484,220.22,78.861 +526485,224.78,78.091 +526486,222.74,78.32 +526487,220.78,78.568 +526488,218.88,78.833 +526489,223.48,78.167 +526490,221.43,78.361 +526491,219.45,78.574 +526492,217.53,78.804 +526493,222.18,78.243 +526494,220.11,78.401 +526495,218.11,78.58 +526496,216.19,78.776 +526497,220.87,78.319 +526498,218.79,78.442 +526499,216.78,78.586 +526500,214.84,78.747 +526501,219.56,78.396 +526502,217.47,78.483 +526503,215.45,78.591 +526504,213.5,78.717 +526505,218.26,78.472 +526506,216.15,78.524 +526507,214.12,78.597 +526508,212.16,78.688 +526509,216.95,78.549 +526510,214.83,78.565 +526511,212.79,78.602 +526512,210.82,78.659 +526513,215.64,78.626 +526514,213.51,78.606 +526515,211.47,78.608 +526516,209.49,78.629 +526517,214.32,78.702 +526518,212.19,78.647 +526519,210.14,78.613 +526520,208.15,78.6 +526521,213.01,78.779 +526522,210.87,78.688 +526523,208.81,78.619 +526524,206.82,78.57 +526525,211.69,78.856 +526526,209.55,78.729 +526527,207.48,78.625 +526528,205.48,78.541 +526529,210.37,78.932 +526530,208.23,78.77 +526531,206.15,78.63 +526532,204.15,78.511 +526533,209.06,79.009 +526534,206.9,78.811 +526535,204.83,78.636 +526536,202.82,78.482 +526537,207.73,79.085 +526538,205.58,78.851 +526539,203.5,78.642 +526540,201.49,78.453 +526541,206.41,79.161 +526542,204.26,78.892 +526543,202.18,78.647 +526544,200.17,78.424 +526545,205.09,79.237 +526546,202.93,78.933 +526547,200.85,78.653 +526548,198.84,78.395 +526549,203.76,79.313 +526550,201.61,78.974 +526551,199.53,78.659 +526552,197.52,78.366 +526553,202.43,79.388 +526554,200.28,79.014 +526555,198.2,78.665 +526556,196.2,78.337 +526557,201.1,79.464 +526558,198.95,79.055 +526559,196.88,78.671 +526560,194.88,78.309 +526561,199.77,79.539 +526562,197.63,79.095 +526563,195.56,78.677 +526564,193.56,78.281 +526565,198.44,79.613 +526566,196.3,79.136 +526567,194.24,78.683 +526568,192.24,78.253 +526569,197.11,79.687 +526570,194.97,79.176 +526571,192.91,78.69 +526572,190.93,78.226 +526573,195.77,79.761 +526574,193.64,79.216 +526575,191.59,78.696 +526576,189.61,78.199 +526577,194.43,79.835 +526578,192.31,79.256 +526579,190.27,78.703 +526580,188.3,78.172 +526581,193.09,79.908 +526582,190.98,79.296 +526583,188.95,78.71 +526584,186.99,78.146 +526585,191.75,79.98 +526586,189.65,79.336 +526587,187.63,78.716 +526588,185.68,78.12 +526589,190.41,80.0524 +526590,188.32,79.375 +526591,186.31,78.724 +526592,184.37,78.094 +526593,189.07,80.1239 +526594,186.99,79.415 +526595,184.99,78.731 +526596,183.06,78.069 +526597,187.72,80.1949 +526598,185.66,79.454 +526599,183.67,78.738 +526600,181.76,78.045 +526601,186.37,80.2653 +526602,184.33,79.493 +526603,182.36,78.746 +526604,180.45,78.021 +526605,185.02,80.3351 +526606,182.99,79.532 +526607,181.04,78.754 +526608,179.15,77.998 +526609,183.67,80.4043 +526610,181.66,79.571 +526611,179.72,78.762 +526612,177.85,77.975 +526613,182.32,80.4729 +526614,180.33,79.609 +526615,178.4,78.77 +526616,176.55,77.953 +526617,180.97,80.5408 +526618,178.99,79.647 +526619,177.09,78.778 +526620,175.25,77.931 +526621,179.61,80.608 +526622,177.66,79.685 +526623,175.77,78.787 +526624,173.95,77.911 +526625,178.26,80.6745 +526626,176.32,79.723 +526627,174.46,78.796 +526628,172.66,77.89 +526629,176.9,80.7402 +526630,174.98,79.761 +526631,173.14,78.805 +526632,171.36,77.871 +526633,175.54,80.8052 +526634,173.65,79.798 +526635,171.83,78.815 +526636,170.07,77.852 +526637,174.18,80.8694 +526638,172.31,79.835 +526639,170.51,78.824 +526640,168.78,77.834 +526641,172.82,80.9328 +526642,170.97,79.872 +526643,169.2,78.834 +526644,167.49,77.817 +526645,171.46,80.9954 +526646,169.64,79.909 +526647,167.89,78.844 +526648,166.2,77.801 +526649,170.09,81.0571 +526650,168.3,79.945 +526651,166.57,78.855 +526652,164.91,77.785 +526653,168.72,81.118 +526654,166.96,79.981 +526655,165.26,78.866 +526656,163.62,77.77 +526657,167.36,81.178 +526658,165.62,80.0166 +526659,163.95,78.877 +526660,162.34,77.757 +526661,165.99,81.237 +526662,164.28,80.052 +526663,162.64,78.888 +526664,161.05,77.744 +526665,164.62,81.2952 +526666,162.94,80.0872 +526667,161.33,78.9 +526668,159.77,77.731 +526669,163.25,81.3524 +526670,161.6,80.122 +526671,160.02,78.912 +526672,158.49,77.72 +526673,161.87,81.4086 +526674,160.26,80.1565 +526675,158.71,78.924 +526676,157.21,77.71 +526677,160.5,81.4639 +526678,158.92,80.1907 +526679,157.4,78.937 +526680,155.93,77.701 +526681,159.13,81.5182 +526682,157.57,80.2245 +526683,156.09,78.95 +526684,154.65,77.693 +526685,157.75,81.5714 +526686,156.23,80.2581 +526687,154.78,78.963 +526688,153.37,77.685 +526689,156.37,81.6237 +526690,154.89,80.2913 +526691,153.47,78.977 +526692,152.1,77.679 +526693,154.99,81.6749 +526694,153.55,80.3241 +526695,152.16,78.991 +526696,150.82,77.674 +526697,153.61,81.725 +526698,152.2,80.3566 +526699,150.85,79.005 +526700,149.55,77.67 +526701,152.23,81.7741 +526702,150.86,80.3888 +526703,149.54,79.02 +526704,148.27,77.667 +526705,150.85,81.8221 +526706,149.51,80.4206 +526707,148.23,79.035 +526708,147,77.665 +526709,149.47,81.869 +526710,148.17,80.452 +526711,146.93,79.051 +526712,145.73,77.664 +526713,148.09,81.9148 +526714,146.83,80.4831 +526715,145.62,79.066 +526716,144.46,77.664 +526717,146.7,81.9595 +526718,145.48,80.5138 +526719,144.31,79.083 +526720,143.19,77.665 +526721,145.32,82.003 +526722,144.13,80.5441 +526723,143,79.099 +526724,141.92,77.668 +526725,143.93,82.0454 +526726,142.79,80.5741 +526727,141.7,79.116 +526728,140.65,77.671 +526729,142.55,82.0867 +526730,141.44,80.6037 +526731,140.39,79.134 +526732,139.38,77.676 +526733,141.16,82.1268 +526734,140.1,80.6329 +526735,139.09,79.151 +526736,138.12,77.682 +526737,139.77,82.1657 +526738,138.75,80.6617 +526739,137.78,79.17 +526740,136.85,77.689 +526741,138.38,82.2034 +526742,137.4,80.6901 +526743,136.47,79.188 +526744,135.59,77.698 +526745,136.99,82.24 +526746,136.06,80.7181 +526747,135.17,79.207 +526748,134.32,77.707 +526749,135.6,82.2754 +526750,134.71,80.7458 +526751,133.86,79.227 +526752,133.06,77.718 +526753,134.21,82.3096 +526754,133.36,80.773 +526755,132.56,79.246 +526756,131.79,77.73 +526757,132.82,82.3426 +526758,132.01,80.7999 +526759,131.25,79.267 +526760,130.53,77.743 +526761,131.43,82.3743 +526762,130.67,80.8263 +526763,129.95,79.287 +526764,129.27,77.758 +526765,130.03,82.4049 +526766,129.32,80.8523 +526767,128.64,79.308 +526768,128.01,77.773 +526769,128.64,82.4343 +526770,127.97,80.878 +526771,127.34,79.33 +526772,126.75,77.79 +526773,127.25,82.4624 +526774,126.62,80.9032 +526775,126.03,79.352 +526776,125.49,77.808 +526777,125.85,82.4893 +526778,125.27,80.928 +526779,124.73,79.374 +526780,124.22,77.828 +526781,124.46,82.515 +526782,123.92,80.9525 +526783,123.43,79.397 +526784,122.96,77.849 +526785,123.06,82.5395 +526786,122.57,80.9765 +526787,122.12,79.42 +526788,121.7,77.871 +526789,121.67,82.5627 +526790,121.22,81.0001 +526791,120.82,79.444 +526792,120.44,77.894 +526793,120.27,82.5848 +526794,119.88,81.0233 +526795,119.51,79.468 +526796,119.19,77.918 +526797,118.88,82.6056 +526798,118.53,81.0461 +526799,118.21,79.492 +526800,117.93,77.944 +526801,117.48,82.6252 +526802,117.18,81.0685 +526803,116.9,79.517 +526804,116.67,77.971 +526805,116.09,82.6436 +526806,115.83,81.0904 +526807,115.6,79.542 +526808,115.41,77.999 +526809,114.69,82.6607 +526810,114.48,81.112 +526811,114.3,79.568 +526812,114.15,78.029 +526813,113.3,82.6767 +526814,113.13,81.1332 +526815,112.99,79.594 +526816,112.89,78.06 +526817,111.9,82.6914 +526818,111.78,81.1539 +526819,111.69,79.62 +526820,111.63,78.092 +526821,110.5,82.7049 +526822,110.43,81.1743 +526823,110.39,79.647 +526824,110.37,78.125 +526825,109.11,82.7173 +526826,109.08,81.1942 +526827,109.08,79.675 +526828,109.12,78.16 +526829,107.71,82.7284 +526830,107.73,81.2138 +526831,107.78,79.702 +526832,107.86,78.195 +526833,106.32,82.7384 +526834,106.38,81.233 +526835,106.47,79.731 +526836,106.6,78.232 +526837,104.92,82.7472 +526838,105.03,81.2517 +526839,105.17,79.759 +526840,105.34,78.271 +526841,103.53,82.7548 +526842,103.68,81.2701 +526843,103.86,79.788 +526844,104.08,78.31 +526845,102.13,82.7612 +526846,102.33,81.2881 +526847,102.56,79.818 +526848,102.82,78.351 +526849,100.74,82.7665 +526850,100.98,81.3057 +526851,101.26,79.847 +526852,101.56,78.393 +526853,99.341,82.7707 +526854,99.631,81.3229 +526855,99.951,79.878 +526856,100.3,78.436 +526857,97.947,82.7737 +526858,98.281,81.3397 +526859,98.647,79.908 +526860,99.043,78.48 +526861,96.553,82.7756 +526862,96.932,81.3562 +526863,97.342,79.939 +526864,97.782,78.526 +526865,95.159,82.7764 +526866,95.582,81.3723 +526867,96.037,79.971 +526868,96.522,78.573 +526869,93.766,82.776 +526870,94.233,81.388 +526871,94.732,80.0023 +526872,95.261,78.621 +526873,92.373,82.7746 +526874,92.884,81.4033 +526875,93.426,80.0344 +526876,93.999,78.67 +526877,90.98,82.7721 +526878,91.535,81.4183 +526879,92.121,80.0669 +526880,92.738,78.72 +526881,89.588,82.7686 +526882,90.186,81.4329 +526883,90.815,80.0998 +526884,91.475,78.771 +526885,88.197,82.764 +526886,88.838,81.4472 +526887,89.509,80.1331 +526888,90.212,78.823 +526889,86.806,82.7583 +526890,87.489,81.4611 +526891,88.203,80.1667 +526892,88.949,78.877 +526893,85.416,82.7517 +526894,86.141,81.4747 +526895,86.897,80.2007 +526896,87.685,78.931 +526897,84.027,82.744 +526898,84.793,81.488 +526899,85.59,80.235 +526900,86.42,78.987 +526901,82.638,82.7353 +526902,83.445,81.5009 +526903,84.283,80.2697 +526904,85.155,79.044 +526905,81.249,82.7257 +526906,82.097,81.5135 +526907,82.976,80.3047 +526908,83.889,79.101 +526909,79.862,82.7151 +526910,80.749,81.5257 +526911,81.669,80.3401 +526912,82.622,79.16 +526913,78.475,82.7036 +526914,79.402,81.5377 +526915,80.361,80.3758 +526916,81.355,79.22 +526917,77.089,82.6911 +526918,78.055,81.5493 +526919,79.053,80.4118 +526920,80.086,79.28 +526921,75.704,82.6778 +526922,76.708,81.5606 +526923,77.745,80.4481 +526924,78.817,79.342 +526925,74.32,82.6635 +526926,75.361,81.5717 +526927,76.437,80.4847 +526928,77.547,79.405 +526929,72.936,82.6484 +526930,74.015,81.5824 +526931,75.128,80.5217 +526932,76.277,79.468 +526933,71.554,82.6325 +526934,72.669,81.5929 +526935,73.819,80.5589 +526936,75.005,79.532 +526937,70.172,82.6157 +526938,71.323,81.6031 +526939,72.509,80.5964 +526940,73.732,79.598 +526941,68.791,82.5981 +526942,69.977,81.613 +526943,71.199,80.6342 +526944,72.459,79.664 +526945,67.411,82.5798 +526946,68.632,81.6227 +526947,69.889,80.6723 +526948,71.184,79.731 +526949,66.033,82.5606 +526950,67.287,81.6321 +526951,68.579,80.7106 +526952,69.909,79.798 +526953,64.655,82.5408 +526954,65.942,81.6412 +526955,67.268,80.7492 +526956,68.632,79.867 +526957,63.278,82.5202 +526958,64.598,81.6501 +526959,65.956,80.7881 +526960,67.355,79.936 +526961,61.902,82.4989 +526962,63.254,81.6588 +526963,64.645,80.8272 +526964,66.076,80.0061 +526965,60.528,82.4769 +526966,61.91,81.6673 +526967,63.333,80.8665 +526968,64.796,80.0768 +526969,59.154,82.4543 +526970,60.567,81.6755 +526971,62.02,80.9061 +526972,63.515,80.1482 +526973,57.782,82.4311 +526974,59.224,81.6835 +526975,60.707,80.9459 +526976,62.233,80.2203 +526977,56.411,82.4073 +526978,57.882,81.6914 +526979,59.394,80.9859 +526980,60.949,80.2929 +526981,55.041,82.3828 +526982,56.539,81.699 +526983,58.08,81.0261 +526984,59.665,80.3662 +526985,53.672,82.3579 +526986,55.197,81.7065 +526987,56.766,81.0664 +526988,58.379,80.4401 +526989,52.304,82.3324 +526990,53.856,81.7137 +526991,55.451,81.107 +526992,57.092,80.5145 +526993,50.938,82.3064 +526994,52.515,81.7208 +526995,54.136,81.1478 +526996,55.804,80.5894 +526997,49.572,82.2799 +526998,51.174,81.7278 +526999,52.821,81.1887 +527000,54.514,80.6648 +527001,48.209,82.253 +527002,49.834,81.7346 +527003,51.505,81.2297 +527004,53.223,80.7407 +527005,46.846,82.2256 +527006,48.494,81.7412 +527007,50.188,81.271 +527008,51.931,80.8171 +527009,45.484,82.1978 +527010,47.154,81.7478 +527011,48.871,81.3123 +527012,50.638,80.8938 +527013,44.124,82.1697 +527014,45.815,81.7542 +527015,47.554,81.3538 +527016,49.343,80.971 +527017,42.766,82.1412 +527018,44.477,81.7605 +527019,46.236,81.3954 +527020,48.046,81.0485 +527021,41.408,82.1124 +527022,43.138,81.7667 +527023,44.918,81.4371 +527024,46.749,81.1263 +527025,40.052,82.0833 +527026,41.801,81.7727 +527027,43.599,81.479 +527028,45.449,81.2044 +527029,38.697,82.0539 +527030,40.463,81.7788 +527031,42.279,81.5209 +527032,44.149,81.2828 +527033,37.344,82.0243 +527034,39.126,81.7847 +527035,40.959,81.5629 +527036,42.847,81.3614 +527037,35.992,81.9945 +527038,37.79,81.7905 +527039,39.639,81.6049 +527040,41.543,81.4403 +527041,34.641,81.9645 +527042,36.454,81.7963 +527043,38.318,81.6471 +527044,40.238,81.5193 +527045,33.292,81.9343 +527046,35.118,81.8021 +527047,36.997,81.6893 +527048,38.932,81.5984 +527049,31.944,81.904 +527050,33.783,81.8078 +527051,35.675,81.7315 +527052,37.624,81.6777 +527053,30.597,81.8736 +527054,32.448,81.8135 +527055,34.352,81.7737 +527056,36.314,81.7571 +527057,29.252,81.8432 +527058,31.114,81.8191 +527059,33.029,81.816 +527060,35.003,81.8365 +527061,27.909,81.8126 +527062,29.78,81.8248 +527063,31.706,81.8583 +527064,33.691,81.916 +527065,26.567,81.7821 +527066,28.447,81.8304 +527067,30.381,81.9006 +527068,32.377,81.9955 +527069,25.226,81.7516 +527070,27.114,81.8361 +527071,29.057,81.9429 +527072,31.061,82.0749 +527073,23.887,81.7211 +527074,25.781,81.8418 +527075,27.732,81.9852 +527076,29.744,82.1543 +527077,22.549,81.6907 +527078,24.449,81.8475 +527079,26.406,82.0275 +527080,28.425,82.2335 +527081,21.212,81.6603 +527082,23.118,81.8532 +527083,25.08,82.0697 +527084,27.105,82.3127 +527085,19.877,81.6301 +527086,21.787,81.859 +527087,23.753,82.1119 +527088,25.783,82.3917 +527089,18.544,81.6001 +527090,20.456,81.8648 +527091,22.426,82.154 +527092,24.46,82.4705 +527093,17.212,81.5702 +527094,19.126,81.8707 +527095,21.098,82.1961 +527096,23.135,82.5492 +527097,15.881,81.5406 +527098,17.796,81.8767 +527099,19.77,82.238 +527100,21.808,82.6275 +527101,14.552,81.5111 +527102,16.467,81.8828 +527103,18.441,82.2799 +527104,20.48,82.7056 +527105,13.224,81.482 +527106,15.138,81.8889 +527107,17.111,82.3217 +527108,19.15,82.7835 +527109,11.898,81.4531 +527110,13.81,81.8952 +527111,15.781,82.3634 +527112,17.819,82.8609 +527113,10.573,81.4246 +527114,12.482,81.9016 +527115,14.451,82.405 +527116,16.486,82.9381 +527117,9.2499,81.3963 +527118,11.155,81.9081 +527119,13.12,82.4465 +527120,15.152,83.0148 +527121,7.928,81.3685 +527122,9.8282,81.9147 +527123,11.788,82.4878 +527124,13.816,83.0911 +527125,6.6074,81.3411 +527126,8.5018,81.9215 +527127,10.456,82.529 +527128,12.478,83.167 +527129,5.2883,81.3141 +527130,7.1758,81.9284 +527131,9.1232,82.5701 +527132,11.139,83.2424 +527133,3.9707,81.2875 +527134,5.8503,81.9354 +527135,7.79,82.6109 +527136,9.7985,83.3173 +527137,2.6544,81.2615 +527138,4.5253,81.9427 +527139,6.4562,82.6517 +527140,8.4562,83.3917 +527141,1.3395,81.2359 +527142,3.2007,81.9501 +527143,5.122,82.6922 +527144,7.1125,83.4655 +527145,0.026037,81.2109 +527146,1.8766,81.9577 +527147,3.7872,82.7326 +527148,5.7671,83.5387 +527149,358.71,81.1864 +527150,0.55286,81.9655 +527151,2.4518,82.7727 +527152,4.4203,83.6114 +527153,357.4,81.1625 +527154,359.23,81.9735 +527155,1.116,82.8127 +527156,3.072,83.6834 +527157,356.09,81.1393 +527158,357.91,81.9817 +527159,359.78,82.8524 +527160,1.7221,83.7547 +527161,354.79,81.1167 +527162,356.58,81.9901 +527163,358.44,82.8919 +527164,0.37074,83.8254 +527165,353.48,81.0947 +527166,355.26,81.9988 +527167,357.11,82.9312 +527168,359.02,83.8953 +527169,352.17,81.0734 +527170,353.94,82.0076 +527171,355.77,82.9702 +527172,357.66,83.9645 +527173,350.87,81.0529 +527174,352.62,82.0168 +527175,354.43,83.009 +527176,356.31,84.0329 +527177,349.57,81.033 +527178,351.3,82.0261 +527179,353.09,83.0476 +527180,354.95,84.1006 +527181,348.27,81.014 +527182,349.98,82.0358 +527183,351.75,83.0859 +527184,353.59,84.1675 +527185,346.97,80.9957 +527186,348.66,82.0457 +527187,350.41,83.1239 +527188,352.23,84.2335 +527189,345.67,80.9782 +527190,347.34,82.0559 +527191,349.07,83.1616 +527192,350.87,84.2987 +527193,344.37,80.9615 +527194,346.02,82.0663 +527195,347.73,83.1991 +527196,349.51,84.363 +527197,343.07,80.9457 +527198,344.7,82.0771 +527199,346.39,83.2362 +527200,348.14,84.4263 +527201,341.78,80.9308 +527202,343.38,82.0881 +527203,345.05,83.2731 +527204,346.78,84.4888 +527205,340.48,80.9168 +527206,342.07,82.0995 +527207,343.7,83.3096 +527208,345.41,84.5504 +527209,339.19,80.9037 +527210,340.75,82.1111 +527211,342.36,83.3459 +527212,344.04,84.611 +527213,337.9,80.8915 +527214,339.43,82.1231 +527215,341.02,83.3818 +527216,342.67,84.6706 +527217,336.61,80.8802 +527218,338.11,82.1354 +527219,339.68,83.4174 +527220,341.3,84.7292 +527221,335.32,80.87 +527222,336.8,82.148 +527223,338.33,83.4527 +527224,339.93,84.7867 +527225,334.03,80.8607 +527226,335.48,82.161 +527227,336.99,83.4876 +527228,338.56,84.8433 +527229,332.74,80.8525 +527230,334.17,82.1743 +527231,335.64,83.5221 +527232,337.18,84.8988 +527233,331.46,80.8452 +527234,332.85,82.1879 +527235,334.3,83.5564 +527236,335.81,84.9532 +527237,330.17,80.8391 +527238,331.53,82.2019 +527239,332.95,83.5902 +527240,334.43,85.0066 +527241,328.89,80.8339 +527242,330.22,82.2163 +527243,331.61,83.6237 +527244,333.05,85.0588 +527245,327.6,80.8299 +527246,328.91,82.231 +527247,330.26,83.6569 +527248,331.68,85.11 +527249,326.32,80.827 +527250,327.59,82.2461 +527251,328.91,83.6896 +527252,330.3,85.16 +527253,325.04,80.8252 +527254,326.28,82.2616 +527255,327.57,83.722 +527256,328.91,85.2088 +527257,323.76,80.8245 +527258,324.96,82.2774 +527259,326.22,83.754 +527260,327.53,85.2566 +527261,322.48,80.8249 +527262,323.65,82.2937 +527263,324.87,83.7857 +527264,326.15,85.3031 +527265,321.2,80.8265 +527266,322.34,82.3103 +527267,323.52,83.8169 +527268,324.77,85.3484 +527269,319.92,80.8293 +527270,321.02,82.3273 +527271,322.17,83.8477 +527272,323.38,85.3926 +527273,318.64,80.8332 +527274,319.71,82.3447 +527275,320.83,83.8782 +527276,322,85.4356 +527277,317.37,80.8384 +527278,318.4,82.3625 +527279,319.48,83.9082 +527280,320.61,85.4773 +527281,316.09,80.8447 +527282,317.09,82.3807 +527283,318.13,83.9378 +527284,319.22,85.5179 +527285,314.82,80.8523 +527286,315.77,82.3993 +527287,316.78,83.967 +527288,317.83,85.5571 +527289,313.54,80.8611 +527290,314.46,82.4183 +527291,315.43,83.9959 +527292,316.44,85.5952 +527293,312.27,80.8711 +527294,313.15,82.4378 +527295,314.08,84.0242 +527296,315.06,85.632 +527297,311,80.8824 +527298,311.84,82.4576 +527299,312.73,84.0522 +527300,313.66,85.6676 +527301,309.72,80.8949 +527302,310.53,82.4779 +527303,311.38,84.0798 +527304,312.27,85.7019 +527305,308.45,80.9087 +527306,309.22,82.4986 +527307,310.03,84.1069 +527308,310.88,85.7349 +527309,307.18,80.9237 +527310,307.91,82.5197 +527311,308.67,84.1336 +527312,309.49,85.7667 +527313,305.91,80.94 +527314,306.6,82.5412 +527315,307.32,84.1599 +527316,308.1,85.7972 +527317,304.64,80.9576 +527318,305.28,82.5631 +527319,305.97,84.1858 +527320,306.7,85.8264 +527321,303.37,80.9765 +527322,303.97,82.5855 +527323,304.62,84.2112 +527324,305.31,85.8543 +527325,302.1,80.9967 +527326,302.66,82.6083 +527327,303.27,84.2362 +527328,303.92,85.881 +527329,300.83,81.0181 +527330,301.35,82.6316 +527331,301.92,84.2608 +527332,302.52,85.9063 +527333,299.56,81.0409 +527334,300.04,82.6552 +527335,300.56,84.2849 +527336,301.13,85.9304 +527337,298.29,81.0649 +527338,298.73,82.6793 +527339,299.21,84.3086 +527340,299.73,85.9532 +527341,297.02,81.0902 +527342,297.42,82.7038 +527343,297.86,84.3319 +527344,298.33,85.9747 +527345,295.76,81.1169 +527346,296.11,82.7288 +527347,296.51,84.3548 +527348,296.94,85.995 +527349,294.49,81.1448 +527350,294.8,82.7542 +527351,295.15,84.3772 +527352,295.54,86.0139 +527353,293.22,81.174 +527354,293.49,82.78 +527355,293.8,84.3992 +527356,294.15,86.0316 +527357,291.95,81.2045 +527358,292.18,82.8062 +527359,292.45,84.4207 +527360,292.75,86.048 +527361,290.69,81.2363 +527362,290.87,82.8329 +527363,291.09,84.4419 +527364,291.35,86.0632 +527365,289.42,81.2694 +527366,289.56,82.86 +527367,289.74,84.4626 +527368,289.95,86.077 +527369,288.15,81.3038 +527370,288.25,82.8875 +527371,288.39,84.4829 +527372,288.56,86.0896 +527373,286.88,81.3395 +527374,286.94,82.9154 +527375,287.03,84.5027 +527376,287.16,86.101 +527377,285.62,81.3764 +527378,285.63,82.9438 +527379,285.68,84.5222 +527380,285.76,86.1111 +527381,284.35,81.4146 +527382,284.32,82.9725 +527383,284.33,84.5412 +527384,284.37,86.1199 +527385,283.08,81.4541 +527386,283.01,83.0017 +527387,282.97,84.5598 +527388,282.97,86.1276 +527389,281.82,81.4949 +527390,281.7,83.0314 +527391,281.62,84.578 +527392,281.57,86.134 +527393,280.55,81.5369 +527394,280.39,83.0614 +527395,280.27,84.5958 +527396,280.17,86.1392 +527397,279.28,81.5801 +527398,279.08,83.0918 +527399,278.91,84.6131 +527400,278.78,86.1431 +527401,278.01,81.6246 +527402,277.77,83.1226 +527403,277.56,84.6301 +527404,277.38,86.1459 +527405,276.74,81.6703 +527406,276.46,83.1539 +527407,276.21,84.6466 +527408,275.98,86.1475 +527409,275.48,81.7172 +527410,275.15,83.1855 +527411,274.85,84.6628 +527412,274.59,86.1479 +527413,274.21,81.7653 +527414,273.84,83.2175 +527415,273.5,84.6785 +527416,273.19,86.1472 +527417,272.94,81.8146 +527418,272.53,83.2499 +527419,272.15,84.6939 +527420,271.8,86.1453 +527421,271.67,81.8651 +527422,271.22,83.2828 +527423,270.79,84.7089 +527424,270.4,86.1423 +527425,270.4,81.9167 +527426,269.91,83.3159 +527427,269.44,84.7235 +527428,269,86.1381 +527429,269.13,81.9695 +527430,268.6,83.3495 +527431,268.09,84.7377 +527432,267.61,86.1328 +527433,267.86,82.0235 +527434,267.28,83.3834 +527435,266.74,84.7516 +527436,266.22,86.1265 +527437,266.59,82.0785 +527438,265.97,83.4177 +527439,265.38,84.7651 +527440,264.82,86.1191 +527441,265.32,82.1347 +527442,264.66,83.4524 +527443,264.03,84.7782 +527444,263.43,86.1106 +527445,264.04,82.192 +527446,263.35,83.4874 +527447,262.68,84.7909 +527448,262.04,86.101 +527449,262.77,82.2503 +527450,262.04,83.5228 +527451,261.33,84.8034 +527452,260.64,86.0904 +527453,261.5,82.3097 +527454,260.72,83.5585 +527455,259.97,84.8154 +527456,259.25,86.0788 +527457,260.22,82.3702 +527458,259.41,83.5946 +527459,258.62,84.8271 +527460,257.86,86.0662 +527461,258.95,82.4316 +527462,258.1,83.631 +527463,257.27,84.8385 +527464,256.47,86.0527 +527465,257.67,82.4941 +527466,256.78,83.6677 +527467,255.92,84.8496 +527468,255.08,86.0382 +527469,256.4,82.5575 +527470,255.47,83.7047 +527471,254.57,84.8603 +527472,253.69,86.0227 +527473,255.12,82.6219 +527474,254.16,83.7421 +527475,253.22,84.8708 +527476,252.31,86.0063 +527477,253.84,82.6873 +527478,252.84,83.7797 +527479,251.87,84.8809 +527480,250.92,85.989 +527481,252.57,82.7536 +527482,251.53,83.8177 +527483,250.52,84.8907 +527484,249.53,85.9709 +527485,251.29,82.8207 +527486,250.21,83.8559 +527487,249.17,84.9002 +527488,248.15,85.9519 +527489,250.01,82.8888 +527490,248.9,83.8944 +527491,247.82,84.9094 +527492,246.76,85.932 +527493,248.72,82.9577 +527494,247.58,83.9332 +527495,246.47,84.9184 +527496,245.38,85.9114 +527497,247.44,83.0274 +527498,246.27,83.9723 +527499,245.12,84.9271 +527500,243.99,85.8899 +527501,246.16,83.098 +527502,244.95,84.0116 +527503,243.77,84.9355 +527504,242.61,85.8677 +527505,244.88,83.1693 +527506,243.63,84.0512 +527507,242.42,84.9437 +527508,241.23,85.8448 +527509,243.59,83.2414 +527510,242.32,84.0911 +527511,241.07,84.9516 +527512,239.85,85.8211 +527513,242.31,83.3142 +527514,241,84.1311 +527515,239.72,84.9592 +527516,238.47,85.7967 +527517,241.02,83.3877 +527518,239.68,84.1714 +527519,238.37,84.9667 +527520,237.09,85.7717 +527521,239.73,83.4619 +527522,238.36,84.2119 +527523,237.03,84.9739 +527524,235.72,85.746 +527525,238.44,83.5368 +527526,237.05,84.2527 +527527,235.68,84.9809 +527528,234.34,85.7196 +527529,237.15,83.6122 +527530,235.73,84.2936 +527531,234.33,84.9877 +527532,232.97,85.6927 +527533,235.86,83.6883 +527534,234.41,84.3347 +527535,232.98,84.9943 +527536,231.59,85.6652 +527537,234.57,83.765 +527538,233.09,84.376 +527539,231.64,85.0007 +527540,230.22,85.6372 +527541,233.28,83.8422 +527542,231.77,84.4175 +527543,230.29,85.0069 +527544,228.85,85.6086 +527545,231.98,83.9199 +527546,230.45,84.4591 +527547,228.95,85.013 +527548,227.48,85.5796 +527549,230.69,83.9981 +527550,229.13,84.5009 +527551,227.6,85.0189 +527552,226.11,85.5501 +527553,229.39,84.0768 +527554,227.8,84.5428 +527555,226.25,85.0246 +527556,224.74,85.5201 +527557,228.09,84.1559 +527558,226.48,84.5849 +527559,224.91,85.0302 +527560,223.37,85.4897 +527561,226.79,84.2353 +527562,225.16,84.6271 +527563,223.57,85.0357 +527564,222.01,85.459 +527565,225.49,84.3152 +527566,223.84,84.6694 +527567,222.22,85.041 +527568,220.64,85.4279 +527569,224.19,84.3954 +527570,222.51,84.7118 +527571,220.88,85.0462 +527572,219.28,85.3964 +527573,222.88,84.4759 +527574,221.19,84.7544 +527575,219.54,85.0513 +527576,217.92,85.3647 +527577,221.58,84.5567 +527578,219.87,84.797 +527579,218.19,85.0563 +527580,216.55,85.3327 +527581,220.27,84.6378 +527582,218.54,84.8397 +527583,216.85,85.0612 +527584,215.2,85.3004 +527585,218.97,84.7191 +527586,217.22,84.8824 +527587,215.51,85.0661 +527588,213.84,85.2679 +527589,217.66,84.8005 +527590,215.89,84.9252 +527591,214.17,85.0709 +527592,212.48,85.2352 +527593,216.35,84.8821 +527594,214.57,84.9681 +527595,212.83,85.0756 +527596,211.12,85.2024 +527597,215.03,84.9639 +527598,213.24,85.011 +527599,211.48,85.0802 +527600,209.77,85.1694 +527601,213.72,85.0457 +527602,211.91,85.0539 +527603,210.14,85.0849 +527604,208.42,85.1363 +527605,212.41,85.1276 +527606,210.58,85.0968 +527607,208.8,85.0895 +527608,207.07,85.1032 +527609,211.09,85.2095 +527610,209.26,85.1398 +527611,207.47,85.0941 +527612,205.71,85.07 +527613,209.77,85.2915 +527614,207.93,85.1827 +527615,206.13,85.0986 +527616,204.37,85.0368 +527617,208.46,85.3734 +527618,206.6,85.2256 +527619,204.79,85.1032 +527620,203.02,85.0036 +527621,207.14,85.4552 +527622,205.27,85.2685 +527623,203.45,85.1078 +527624,201.67,84.9704 +527625,205.81,85.537 +527626,203.94,85.3114 +527627,202.11,85.1124 +527628,200.33,84.9373 +527629,204.49,85.6186 +527630,202.61,85.3542 +527631,200.77,85.117 +527632,198.98,84.9043 +527633,203.17,85.7001 +527634,201.28,85.397 +527635,199.44,85.1217 +527636,197.64,84.8715 +527637,201.84,85.7814 +527638,199.95,85.4397 +527639,198.1,85.1264 +527640,196.3,84.8387 +527641,200.51,85.8624 +527642,198.61,85.4823 +527643,196.77,85.1312 +527644,194.96,84.8062 +527645,199.18,85.9433 +527646,197.28,85.5248 +527647,195.43,85.136 +527648,193.62,84.7739 +527649,197.85,86.0238 +527650,195.95,85.5672 +527651,194.09,85.1409 +527652,192.29,84.7418 +527653,196.52,86.104 +527654,194.61,85.6096 +527655,192.76,85.1459 +527656,190.95,84.7101 +527657,195.19,86.1839 +527658,193.28,85.6518 +527659,191.43,85.1511 +527660,189.62,84.6786 +527661,193.85,86.2634 +527662,191.95,85.6939 +527663,190.09,85.1563 +527664,188.29,84.6474 +527665,192.52,86.3425 +527666,190.61,85.7358 +527667,188.76,85.1616 +527668,186.95,84.6166 +527669,191.18,86.4212 +527670,189.27,85.7776 +527671,187.43,85.1671 +527672,185.62,84.5861 +527673,189.84,86.4994 +527674,187.94,85.8193 +527675,186.09,85.1727 +527676,184.3,84.5561 +527677,188.5,86.5771 +527678,186.6,85.8608 +527679,184.76,85.1784 +527680,182.97,84.5266 +527681,187.16,86.6543 +527682,185.26,85.9021 +527683,183.43,85.1843 +527684,181.64,84.4975 +527685,185.81,86.731 +527686,183.93,85.9432 +527687,182.1,85.1903 +527688,180.32,84.4688 +527689,184.47,86.807 +527690,182.59,85.9841 +527691,180.77,85.1966 +527692,179,84.4407 +527693,183.12,86.8825 +527694,181.25,86.0249 +527695,179.44,85.203 +527696,177.67,84.4132 +527697,181.77,86.9573 +527698,179.91,86.0654 +527699,178.11,85.2096 +527700,176.35,84.3862 +527701,180.42,87.0315 +527702,178.57,86.1057 +527703,176.78,85.2164 +527704,175.03,84.3599 +527705,179.07,87.1049 +527706,177.23,86.1457 +527707,175.45,85.2234 +527708,173.72,84.3341 +527709,177.72,87.1777 +527710,175.89,86.1855 +527711,174.12,85.2306 +527712,172.4,84.309 +527713,176.37,87.2497 +527714,174.55,86.2251 +527715,172.79,85.2381 +527716,171.09,84.2846 +527717,175.01,87.3209 +527718,173.21,86.2644 +527719,171.46,85.2458 +527720,169.77,84.2609 +527721,173.65,87.3913 +527722,171.86,86.3034 +527723,170.14,85.2537 +527724,168.46,84.238 +527725,172.3,87.4609 +527726,170.52,86.3422 +527727,168.81,85.2619 +527728,167.15,84.2158 +527729,170.94,87.5296 +527730,169.18,86.3807 +527731,167.48,85.2703 +527732,165.84,84.1943 +527733,169.57,87.5975 +527734,167.83,86.4189 +527735,166.15,85.279 +527736,164.53,84.1737 +527737,168.21,87.6645 +527738,166.49,86.4568 +527739,164.83,85.288 +527740,163.22,84.1539 +527741,166.85,87.7305 +527742,165.15,86.4944 +527743,163.5,85.2972 +527744,161.91,84.1349 +527745,165.48,87.7956 +527746,163.8,86.5316 +527747,162.18,85.3068 +527748,160.61,84.1168 +527749,164.12,87.8598 +527750,162.45,86.5686 +527751,160.85,85.3166 +527752,159.3,84.0996 +527753,162.75,87.9229 +527754,161.11,86.6052 +527755,159.53,85.3268 +527756,158,84.0833 +527757,161.38,87.985 +527758,159.76,86.6415 +527759,158.2,85.3372 +527760,156.7,84.0679 +527761,160.01,88.0461 +527762,158.42,86.6774 +527763,156.88,85.348 +527764,155.4,84.0535 +527765,158.64,88.1062 +527766,157.07,86.713 +527767,155.56,85.3591 +527768,154.1,84.0401 +527769,157.27,88.1651 +527770,155.72,86.7482 +527771,154.23,85.3705 +527772,152.8,84.0277 +527773,155.89,88.223 +527774,154.37,86.7831 +527775,152.91,85.3823 +527776,151.5,84.0163 +527777,154.52,88.2797 +527778,153.02,86.8176 +527779,151.59,85.3944 +527780,150.21,84.0059 +527781,153.14,88.3354 +527782,151.67,86.8517 +527783,150.27,85.4069 +527784,148.91,83.9966 +527785,151.77,88.3898 +527786,150.33,86.8854 +527787,148.94,85.4197 +527788,147.62,83.9884 +527789,150.39,88.4431 +527790,148.98,86.9188 +527791,147.62,85.4328 +527792,146.32,83.9812 +527793,149.01,88.4953 +527794,147.63,86.9517 +527795,146.3,85.4464 +527796,145.03,83.9751 +527797,147.63,88.5462 +527798,146.28,86.9843 +527799,144.98,85.4603 +527800,143.74,83.9702 +527801,146.25,88.5959 +527802,144.92,87.0164 +527803,143.66,85.4746 +527804,142.45,83.9664 +527805,144.87,88.6444 +527806,143.57,87.0481 +527807,142.34,85.4893 +527808,141.16,83.9638 +527809,143.48,88.6917 +527810,142.22,87.0795 +527811,141.02,85.5043 +527812,139.87,83.9623 +527813,142.1,88.7377 +527814,140.87,87.1104 +527815,139.7,85.5198 +527816,138.58,83.962 +527817,140.71,88.7824 +527818,139.52,87.1408 +527819,138.38,85.5356 +527820,137.29,83.9629 +527821,139.33,88.8258 +527822,138.16,87.1709 +527823,137.06,85.5518 +527824,136,83.9651 +527825,137.94,88.868 +527826,136.81,87.2005 +527827,135.74,85.5685 +527828,134.72,83.9684 +527829,136.55,88.9089 +527830,135.46,87.2297 +527831,134.42,85.5855 +527832,133.43,83.973 +527833,135.16,88.9484 +527834,134.11,87.2584 +527835,133.1,85.603 +527836,132.15,83.9788 +527837,133.77,88.9867 +527838,132.75,87.2867 +527839,131.78,85.6209 +527840,130.86,83.9858 +527841,132.38,89.0236 +527842,131.4,87.3146 +527843,130.47,85.6392 +527844,129.58,83.9942 +527845,130.99,89.05919 +527846,130.04,87.342 +527847,129.15,85.6579 +527848,128.3,84.0038 +527849,129.6,89.09344 +527850,128.69,87.3689 +527851,127.83,85.677 +527852,127.01,84.0146 +527853,128.21,89.12634 +527854,127.33,87.3954 +527855,126.51,85.6966 +527856,125.73,84.0268 +527857,126.81,89.15789 +527858,125.98,87.4215 +527859,125.19,85.7165 +527860,124.45,84.0403 +527861,125.42,89.18808 +527862,124.62,87.4471 +527863,123.88,85.7369 +527864,123.17,84.0551 +527865,124.03,89.21692 +527866,123.27,87.4722 +527867,122.56,85.7578 +527868,121.89,84.0711 +527869,122.63,89.24439 +527870,121.91,87.4969 +527871,121.24,85.7791 +527872,120.61,84.0885 +527873,121.24,89.2705 +527874,120.56,87.5211 +527875,119.92,85.8008 +527876,119.33,84.1072 +527877,119.84,89.29525 +527878,119.2,87.5448 +527879,118.61,85.8229 +527880,118.05,84.1273 +527881,118.44,89.31862 +527882,117.84,87.5681 +527883,117.29,85.8455 +527884,116.77,84.1486 +527885,117.05,89.34063 +527886,116.49,87.5909 +527887,115.97,85.8685 +527888,115.5,84.1713 +527889,115.65,89.36127 +527890,115.13,87.6133 +527891,114.66,85.8919 +527892,114.22,84.1953 +527893,114.25,89.38055 +527894,113.77,87.6352 +527895,113.34,85.9158 +527896,112.94,84.2207 +527897,112.86,89.39846 +527898,112.42,87.6566 +527899,112.02,85.9401 +527900,111.66,84.2473 +527901,111.46,89.41501 +527902,111.06,87.6776 +527903,110.71,85.9648 +527904,110.39,84.2753 +527905,110.06,89.43021 +527906,109.7,87.6981 +527907,109.39,85.99 +527908,109.11,84.3047 +527909,108.66,89.44405 +527910,108.35,87.7181 +527911,108.07,86.0156 +527912,107.83,84.3353 +527913,107.26,89.45654 +527914,106.99,87.7377 +527915,106.75,86.0417 +527916,106.55,84.3673 +527917,105.86,89.46769 +527918,105.63,87.7568 +527919,105.44,86.0681 +527920,105.28,84.4006 +527921,104.46,89.4775 +527922,104.27,87.7755 +527923,104.12,86.095 +527924,104,84.4352 +527925,103.07,89.48597 +527926,102.92,87.7937 +527927,102.8,86.1224 +527928,102.72,84.4712 +527929,101.67,89.49313 +527930,101.56,87.8115 +527931,101.49,86.1501 +527932,101.45,84.5084 +527933,100.27,89.49897 +527934,100.2,87.8288 +527935,100.17,86.1783 +527936,100.17,84.547 +527937,98.868,89.5035 +527938,98.845,87.8457 +527939,98.854,86.2069 +527940,98.895,84.5868 +527941,97.469,89.50674 +527942,97.487,87.8621 +527943,97.537,86.2359 +527944,97.618,84.6279 +527945,96.07,89.50868 +527946,96.129,87.8781 +527947,96.22,86.2653 +527948,96.341,84.6704 +527949,94.672,89.50936 +527950,94.772,87.8936 +527951,94.903,86.2952 +527952,95.063,84.714 +527953,93.273,89.50876 +527954,93.414,87.9087 +527955,93.586,86.3254 +527956,93.786,84.759 +527957,91.874,89.50692 +527958,92.057,87.9234 +527959,92.268,86.356 +527960,92.508,84.8052 +527961,90.476,89.50383 +527962,90.699,87.9376 +527963,90.951,86.3871 +527964,91.231,84.8526 +527965,89.078,89.49952 +527966,89.342,87.9514 +527967,89.633,86.4185 +527968,89.952,84.9013 +527969,87.68,89.49399 +527970,87.984,87.9648 +527971,88.316,86.4504 +527972,88.674,84.9512 +527973,86.282,89.48727 +527974,86.627,87.9778 +527975,86.998,86.4826 +527976,87.395,85.0023 +527977,84.885,89.47936 +527978,85.269,87.9904 +527979,85.68,86.5152 +527980,86.116,85.0546 +527981,83.488,89.47028 +527982,83.912,88.0025 +527983,84.362,86.5482 +527984,84.836,85.108 +527985,82.092,89.46005 +527986,82.555,88.0143 +527987,83.044,86.5816 +527988,83.556,85.1627 +527989,80.696,89.44869 +527990,81.198,88.0257 +527991,81.725,86.6153 +527992,82.276,85.2184 +527993,79.3,89.43621 +527994,79.841,88.0367 +527995,80.406,86.6494 +527996,80.995,85.2753 +527997,77.905,89.42263 +527998,78.484,88.0473 +527999,79.087,86.6838 +528000,79.713,85.3334 +528001,76.511,89.40796 +528002,77.128,88.0575 +528003,77.768,86.7186 +528004,78.431,85.3925 +528005,75.117,89.39224 +528006,75.771,88.0673 +528007,76.449,86.7538 +528008,77.149,85.4527 +528009,73.723,89.37547 +528010,74.415,88.0768 +528011,75.129,86.7892 +528012,75.866,85.514 +528013,72.331,89.35768 +528014,73.059,88.0859 +528015,73.81,86.825 +528016,74.582,85.5763 +528017,70.938,89.33889 +528018,71.703,88.0947 +528019,72.489,86.8612 +528020,73.297,85.6396 +528021,69.547,89.31911 +528022,70.347,88.1031 +528023,71.169,86.8976 +528024,72.012,85.7039 +528025,68.156,89.29838 +528026,68.992,88.1112 +528027,69.849,86.9344 +528028,70.726,85.7692 +528029,66.766,89.2767 +528030,67.636,88.119 +528031,68.528,86.9714 +528032,69.44,85.8355 +528033,65.376,89.25412 +528034,66.281,88.1264 +528035,67.206,87.0088 +528036,68.153,85.9027 +528037,63.988,89.23063 +528038,64.926,88.1335 +528039,65.885,87.0464 +528040,66.864,85.9709 +528041,62.6,89.20628 +528042,63.571,88.1403 +528043,64.563,87.0844 +528044,65.575,86.0399 +528045,61.213,89.18108 +528046,62.217,88.1468 +528047,63.241,87.1226 +528048,64.286,86.1098 +528049,59.827,89.15506 +528050,60.862,88.153 +528051,61.919,87.161 +528052,62.995,86.1805 +528053,58.441,89.12824 +528054,59.508,88.159 +528055,60.596,87.1997 +528056,61.704,86.2521 +528057,57.057,89.10065 +528058,58.155,88.1646 +528059,59.273,87.2387 +528060,60.411,86.3245 +528061,55.673,89.07231 +528062,56.801,88.17 +528063,57.95,87.2779 +528064,59.118,86.3976 +528065,54.291,89.04324 +528066,55.448,88.1751 +528067,56.626,87.3173 +528068,57.824,86.4715 +528069,52.909,89.01348 +528070,54.095,88.18 +528071,55.302,87.357 +528072,56.528,86.5461 +528073,51.528,88.9831 +528074,52.742,88.1846 +528075,53.977,87.3969 +528076,55.232,86.6214 +528077,50.149,88.952 +528078,51.39,88.189 +528079,52.652,87.4369 +528080,53.935,86.6973 +528081,48.77,88.9203 +528082,50.038,88.1932 +528083,51.327,87.4772 +528084,52.637,86.7739 +528085,47.392,88.888 +528086,48.686,88.1971 +528087,50.002,87.5176 +528088,51.337,86.8512 +528089,46.016,88.8552 +528090,47.335,88.2008 +528091,48.676,87.5583 +528092,50.037,86.9289 +528093,44.64,88.8218 +528094,45.984,88.2044 +528095,47.349,87.599 +528096,48.736,87.0073 +528097,43.266,88.7879 +528098,44.633,88.2077 +528099,46.022,87.64 +528100,47.433,87.0862 +528101,41.893,88.7535 +528102,43.283,88.2109 +528103,44.695,87.6811 +528104,46.129,87.1655 +528105,40.52,88.7187 +528106,41.933,88.2139 +528107,43.367,87.7223 +528108,44.824,87.2454 +528109,39.149,88.6835 +528110,40.583,88.2168 +528111,42.039,87.7636 +528112,43.518,87.3256 +528113,37.779,88.6478 +528114,39.233,88.2195 +528115,40.711,87.8051 +528116,42.211,87.4063 +528117,36.41,88.6118 +528118,37.884,88.222 +528119,39.382,87.8467 +528120,40.903,87.4873 +528121,35.043,88.5755 +528122,36.536,88.2245 +528123,38.053,87.8883 +528124,39.593,87.5687 +528125,33.676,88.5388 +528126,35.187,88.2268 +528127,36.723,87.9301 +528128,38.282,87.6504 +528129,32.311,88.5019 +528130,33.839,88.229 +528131,35.392,87.9719 +528132,36.97,87.7324 +528133,30.947,88.4648 +528134,32.492,88.2311 +528135,34.062,88.0138 +528136,35.657,87.8146 +528137,29.585,88.4274 +528138,31.145,88.2331 +528139,32.731,88.0557 +528140,34.342,87.8971 +528141,28.223,88.3898 +528142,29.798,88.235 +528143,31.399,88.0977 +528144,33.026,87.9797 +528145,26.863,88.3521 +528146,28.451,88.2368 +528147,30.067,88.1397 +528148,31.709,88.0625 +528149,25.504,88.3142 +528150,27.105,88.2386 +528151,28.734,88.1818 +528152,30.391,88.1454 +528153,24.146,88.2762 +528154,25.76,88.2404 +528155,27.401,88.2238 +528156,29.071,88.2284 +528157,22.789,88.2382 +528158,24.415,88.2421 +528159,26.068,88.2659 +528160,27.75,88.3114 +528161,21.434,88.2001 +528162,23.07,88.2438 +528163,24.734,88.3079 +528164,26.427,88.3945 +528165,20.08,88.1621 +528166,21.725,88.2454 +528167,23.399,88.35 +528168,25.104,88.4776 +528169,18.728,88.124 +528170,20.381,88.2471 +528171,22.064,88.3919 +528172,23.778,88.5606 +528173,17.376,88.086 +528174,19.037,88.2487 +528175,20.729,88.4339 +528176,22.452,88.6436 +528177,16.026,88.0481 +528178,17.694,88.2504 +528179,19.393,88.4758 +528180,21.124,88.7264 +528181,14.677,88.0103 +528182,16.351,88.252 +528183,18.057,88.5176 +528184,19.795,88.8091 +528185,13.33,87.9726 +528186,15.009,88.2538 +528187,16.72,88.5594 +528188,18.464,88.8917 +528189,11.984,87.9351 +528190,13.667,88.2555 +528191,15.382,88.6011 +528192,17.132,88.974 +528193,10.639,87.8978 +528194,12.325,88.2573 +528195,14.045,88.6426 +528196,15.799,89.05609 +528197,9.2952,87.8607 +528198,10.984,88.2592 +528199,12.706,88.6841 +528200,14.464,89.13791 +528201,7.9529,87.8239 +528202,9.6432,88.2611 +528203,11.367,88.7255 +528204,13.128,89.21943 +528205,6.612,87.7874 +528206,8.3028,88.2631 +528207,10.028,88.7667 +528208,11.791,89.30062 +528209,5.2723,87.7512 +528210,6.9627,88.2653 +528211,8.6882,88.8078 +528212,10.452,89.38144 +528213,3.9339,87.7153 +528214,5.6231,88.2675 +528215,7.3479,88.8487 +528216,9.1113,89.46186 +528217,2.5969,87.6798 +528218,4.284,88.2698 +528219,6.0071,88.8895 +528220,7.7696,89.54185 +528221,1.2611,87.6448 +528222,2.9452,88.2722 +528223,4.6658,88.9301 +528224,6.4266,89.62138 +528225,359.93,87.6101 +528226,1.6068,88.2748 +528227,3.324,88.9705 +528228,5.0821,89.70041 +528229,358.59,87.5759 +528230,0.2688,88.2775 +528231,1.9818,89.01079 +528232,3.7362,89.77892 +528233,357.26,87.5423 +528234,358.93,88.2804 +528235,0.63899,89.05084 +528236,2.389,89.85687 +528237,355.93,87.5091 +528238,357.59,88.2834 +528239,359.3,89.09068 +528240,1.0403,89.93423 +528241,354.6,87.4765 +528242,356.26,88.2866 +528243,357.95,89.13029 +528244,359.69,90.010975 +528245,353.27,87.4444 +528246,354.92,88.29 +528247,356.61,89.16968 +528248,358.34,90.087071 +528249,351.95,87.413 +528250,353.58,88.2936 +528251,355.26,89.20883 +528252,356.99,90.16249 +528253,350.62,87.3822 +528254,352.25,88.2973 +528255,353.92,89.24773 +528256,355.63,90.2372 +528257,349.3,87.352 +528258,350.91,88.3013 +528259,352.57,89.28638 +528260,354.28,90.31117 +528261,347.97,87.3225 +528262,349.58,88.3055 +528263,351.23,89.32475 +528264,352.92,90.38438 +528265,346.65,87.2937 +528266,348.24,88.3099 +528267,349.88,89.36285 +528268,351.56,90.45679 +528269,345.33,87.2657 +528270,346.91,88.3145 +528271,348.53,89.40066 +528272,350.2,90.52838 +528273,344.01,87.2384 +528274,345.58,88.3194 +528275,347.19,89.43818 +528276,348.84,90.59912 +528277,342.69,87.2119 +528278,344.24,88.3245 +528279,345.84,89.4754 +528280,347.48,90.66898 +528281,341.38,87.1862 +528282,342.91,88.3299 +528283,344.49,89.5123 +528284,346.12,90.73794 +528285,340.06,87.1613 +528286,341.58,88.3355 +528287,343.14,89.54888 +528288,344.75,90.80597 +528289,338.74,87.1373 +528290,340.25,88.3415 +528291,341.79,89.58513 +528292,343.39,90.87303 +528293,337.43,87.1142 +528294,338.91,88.3477 +528295,340.44,89.62105 +528296,342.02,90.93912 +528297,336.12,87.0919 +528298,337.58,88.3542 +528299,339.09,89.65661 +528300,340.65,91.0042 +528301,334.81,87.0706 +528302,336.25,88.361 +528303,337.74,89.69183 +528304,339.28,91.0683 +528305,333.5,87.0502 +528306,334.92,88.368 +528307,336.39,89.72668 +528308,337.91,91.1312 +528309,332.19,87.0308 +528310,333.59,88.3754 +528311,335.04,89.76116 +528312,336.54,91.1932 +528313,330.88,87.0124 +528314,332.26,88.3832 +528315,333.69,89.79527 +528316,335.16,91.254 +528317,329.57,86.995 +528318,330.93,88.3912 +528319,332.33,89.82899 +528320,333.79,91.3137 +528321,328.26,86.9787 +528322,329.6,88.3996 +528323,330.98,89.86233 +528324,332.41,91.3722 +528325,326.96,86.9633 +528326,328.27,88.4083 +528327,329.63,89.89526 +528328,331.04,91.4296 +528329,325.65,86.9491 +528330,326.94,88.4174 +528331,328.27,89.927792 +528332,329.66,91.4858 +528333,324.35,86.9359 +528334,325.61,88.4268 +528335,326.92,89.959911 +528336,328.28,91.5408 +528337,323.05,86.9238 +528338,324.28,88.4365 +528339,325.57,89.9916136 +528340,326.9,91.5946 +528341,321.75,86.9129 +528342,322.96,88.4467 +528343,324.21,90.022892 +528344,325.52,91.6471 +528345,320.44,86.9031 +528346,321.63,88.4572 +528347,322.86,90.053742 +528348,324.14,91.6983 +528349,319.14,86.8944 +528350,320.3,88.468 +528351,321.5,90.084157 +528352,322.75,91.7483 +528353,317.84,86.8869 +528354,318.97,88.4793 +528355,320.15,90.11413 +528356,321.37,91.797 +528357,316.55,86.8806 +528358,317.65,88.4909 +528359,318.79,90.14366 +528360,319.99,91.8444 +528361,315.25,86.8755 +528362,316.32,88.503 +528363,317.43,90.17274 +528364,318.6,91.8905 +528365,313.95,86.8717 +528366,314.99,88.5154 +528367,316.08,90.20136 +528368,317.21,91.9352 +528369,312.66,86.869 +528370,313.67,88.5282 +528371,314.72,90.22953 +528372,315.82,91.9786 +528373,311.36,86.8676 +528374,312.34,88.5414 +528375,313.36,90.25722 +528376,314.44,92.0206 +528377,310.07,86.8675 +528378,311.01,88.555 +528379,312.01,90.28446 +528380,313.05,92.0612 +528381,308.77,86.8686 +528382,309.69,88.569 +528383,310.65,90.31121 +528384,311.66,92.1005 +528385,307.48,86.8709 +528386,308.36,88.5835 +528387,309.29,90.3375 +528388,310.27,92.1383 +528389,306.19,86.8746 +528390,307.04,88.5983 +528391,307.93,90.3633 +528392,308.87,92.1748 +528393,304.89,86.8796 +528394,305.71,88.6136 +528395,306.57,90.38862 +528396,307.48,92.2098 +528397,303.6,86.8859 +528398,304.39,88.6293 +528399,305.21,90.41345 +528400,306.09,92.2434 +528401,302.31,86.8935 +528402,303.06,88.6454 +528403,303.85,90.4378 +528404,304.69,92.2756 +528405,301.02,86.9024 +528406,301.74,88.662 +528407,302.49,90.46166 +528408,303.3,92.3063 +528409,299.73,86.9126 +528410,300.41,88.679 +528411,301.14,90.48502 +528412,301.91,92.3356 +528413,298.44,86.9242 +528414,299.09,88.6964 +528415,299.78,90.50789 +528416,300.51,92.3635 +528417,297.15,86.9371 +528418,297.76,88.7142 +528419,298.42,90.53026 +528420,299.11,92.3899 +528421,295.86,86.9514 +528422,296.44,88.7325 +528423,297.06,90.55213 +528424,297.72,92.4148 +528425,294.57,86.967 +528426,295.11,88.7512 +528427,295.69,90.57351 +528428,296.32,92.4383 +528429,293.28,86.9839 +528430,293.79,88.7704 +528431,294.33,90.59438 +528432,294.92,92.4603 +528433,292,87.0023 +528434,292.47,88.7899 +528435,292.97,90.61475 +528436,293.52,92.4809 +528437,290.71,87.0219 +528438,291.14,88.81 +528439,291.61,90.63463 +528440,292.13,92.5 +528441,289.42,87.043 +528442,289.82,88.8304 +528443,290.25,90.65399 +528444,290.73,92.5176 +528445,288.13,87.0654 +528446,288.49,88.8513 +528447,288.89,90.67286 +528448,289.33,92.5338 +528449,286.85,87.0892 +528450,287.17,88.8727 +528451,287.53,90.69123 +528452,287.93,92.5485 +528453,285.56,87.1143 +528454,285.85,88.8944 +528455,286.17,90.70909 +528456,286.53,92.5617 +528457,284.27,87.1408 +528458,284.52,88.9166 +528459,284.81,90.72645 +528460,285.13,92.5735 +528461,282.99,87.1687 +528462,283.2,88.9393 +528463,283.44,90.74332 +528464,283.73,92.5839 +528465,281.7,87.1979 +528466,281.88,88.9624 +528467,282.08,90.75968 +528468,282.33,92.5928 +528469,280.41,87.2284 +528470,280.55,88.9859 +528471,280.72,90.77555 +528472,280.93,92.6003 +528473,279.13,87.2603 +528474,279.23,89.00982 +528475,279.36,90.79093 +528476,279.53,92.6063 +528477,277.84,87.2936 +528478,277.9,89.03419 +528479,278,90.80581 +528480,278.13,92.6109 +528481,276.56,87.3282 +528482,276.58,89.05899 +528483,276.64,90.8202 +528484,276.72,92.6141 +528485,275.27,87.3641 +528486,275.26,89.08421 +528487,275.27,90.8341 +528488,275.32,92.6159 +528489,273.98,87.4014 +528490,273.93,89.10986 +528491,273.91,90.84751 +528492,273.92,92.6163 +528493,272.7,87.44 +528494,272.61,89.13593 +528495,272.55,90.86044 +528496,272.52,92.6153 +528497,271.41,87.4799 +528498,271.28,89.16241 +528499,271.19,90.87289 +528500,271.12,92.613 +528501,270.12,87.5211 +528502,269.96,89.18931 +528503,269.83,90.88487 +528504,269.72,92.6092 +528505,268.84,87.5635 +528506,268.64,89.21661 +528507,268.46,90.89637 +528508,268.32,92.6042 +528509,267.55,87.6073 +528510,267.31,89.24433 +528511,267.1,90.9074 +528512,266.92,92.5977 +528513,266.26,87.6523 +528514,265.99,89.27244 +528515,265.74,90.91797 +528516,265.52,92.59 +528517,264.97,87.6987 +528518,264.66,89.30095 +528519,264.38,90.92808 +528520,264.12,92.5809 +528521,263.68,87.7462 +528522,263.34,89.32986 +528523,263.02,90.93773 +528524,262.72,92.5706 +528525,262.4,87.795 +528526,262.01,89.35915 +528527,261.65,90.94693 +528528,261.32,92.5589 +528529,261.11,87.845 +528530,260.69,89.38883 +528531,260.29,90.95568 +528532,259.92,92.546 +528533,259.82,87.8962 +528534,259.36,89.41889 +528535,258.93,90.96399 +528536,258.52,92.5319 +528537,258.53,87.9486 +528538,258.04,89.44932 +528539,257.57,90.97186 +528540,257.12,92.5165 +528541,257.24,88.0022 +528542,256.71,89.48011 +528543,256.21,90.97931 +528544,255.73,92.4999 +528545,255.95,88.057 +528546,255.39,89.51127 +528547,254.85,90.98633 +528548,254.33,92.4821 +528549,254.65,88.1128 +528550,254.06,89.54279 +528551,253.49,90.99293 +528552,252.93,92.4631 +528553,253.36,88.1699 +528554,252.73,89.57466 +528555,252.12,90.99911 +528556,251.54,92.443 +528557,252.07,88.228 +528558,251.41,89.60687 +528559,250.76,91.0049 +528560,250.14,92.4217 +528561,250.78,88.2872 +528562,250.08,89.63942 +528563,249.4,91.0103 +528564,248.74,92.3994 +528565,249.48,88.3475 +528566,248.75,89.6723 +528567,248.04,91.0153 +528568,247.35,92.3759 +528569,248.19,88.4088 +528570,247.43,89.7055 +528571,246.68,91.0199 +528572,245.96,92.3514 +528573,246.89,88.4712 +528574,246.1,89.73902 +528575,245.32,91.0241 +528576,244.56,92.3258 +528577,245.6,88.5346 +528578,244.77,89.77284 +528579,243.96,91.0279 +528580,243.17,92.2992 +528581,244.3,88.599 +528582,243.44,89.80697 +528583,242.6,91.0314 +528584,241.78,92.2715 +528585,243.01,88.6643 +528586,242.12,89.8414 +528587,241.24,91.0346 +528588,240.39,92.2429 +528589,241.71,88.7306 +528590,240.79,89.87611 +528591,239.88,91.0374 +528592,238.99,92.2134 +528593,240.41,88.7978 +528594,239.46,89.911095 +528595,238.52,91.0398 +528596,237.6,92.1829 +528597,239.11,88.8659 +528598,238.13,89.946353 +528599,237.17,91.0419 +528600,236.22,92.1515 +528601,237.81,88.9349 +528602,236.8,89.981873 +528603,235.81,91.0437 +528604,234.83,92.1193 +528605,236.51,89.0047 +528606,235.47,90.017645 +528607,234.45,91.0452 +528608,233.44,92.0861 +528609,235.21,89.07535 +528610,234.14,90.053662 +528611,233.09,91.0463 +528612,232.05,92.0522 +528613,233.9,89.14679 +528614,232.81,90.089914 +528615,231.73,91.0472 +528616,230.67,92.0175 +528617,232.6,89.219 +528618,231.48,90.12639 +528619,230.37,91.0478 +528620,229.28,91.9819 +528621,231.3,89.29196 +528622,230.15,90.16309 +528623,229.02,91.0481 +528624,227.9,91.9457 +528625,229.99,89.36564 +528626,228.82,90.19999 +528627,227.66,91.0481 +528628,226.51,91.9087 +528629,228.68,89.44 +528630,227.49,90.2371 +528631,226.3,91.0478 +528632,225.13,91.871 +528633,227.38,89.51503 +528634,226.15,90.27439 +528635,224.95,91.0474 +528636,223.75,91.8327 +528637,226.07,89.59069 +528638,224.82,90.31186 +528639,223.59,91.0466 +528640,222.37,91.7937 +528641,224.76,89.66696 +528642,223.49,90.3495 +528643,222.23,91.0457 +528644,220.99,91.7542 +528645,223.45,89.7438 +528646,222.16,90.38731 +528647,220.88,91.0445 +528648,219.61,91.714 +528649,222.14,89.82119 +528650,220.82,90.42526 +528651,219.52,91.0431 +528652,218.24,91.6734 +528653,220.82,89.89909 +528654,219.49,90.46335 +528655,218.17,91.0414 +528656,216.86,91.6322 +528657,219.51,89.977482 +528658,218.15,90.50157 +528659,216.81,91.0396 +528660,215.48,91.5905 +528661,218.19,90.056327 +528662,216.82,90.53991 +528663,215.46,91.0376 +528664,214.11,91.5483 +528665,216.88,90.1356 +528666,215.48,90.57836 +528667,214.1,91.0355 +528668,212.74,91.5058 +528669,215.56,90.21526 +528670,214.15,90.61691 +528671,212.75,91.0332 +528672,211.37,91.4628 +528673,214.24,90.29528 +528674,212.81,90.65555 +528675,211.4,91.0307 +528676,210,91.4195 +528677,212.92,90.37564 +528678,211.48,90.69426 +528679,210.04,91.028 +528680,208.63,91.3758 +528681,211.6,90.45629 +528682,210.14,90.73304 +528683,208.69,91.0253 +528684,207.26,91.3319 +528685,210.28,90.53721 +528686,208.8,90.77187 +528687,207.34,91.0224 +528688,205.89,91.2876 +528689,208.96,90.61836 +528690,207.47,90.81075 +528691,205.99,91.0194 +528692,204.52,91.2431 +528693,207.63,90.69971 +528694,206.13,90.84967 +528695,204.64,91.0163 +528696,203.16,91.1985 +528697,206.31,90.78123 +528698,204.79,90.8886 +528699,203.28,91.0131 +528700,201.8,91.1536 +528701,204.98,90.86289 +528702,203.45,90.92755 +528703,201.93,91.0098 +528704,200.43,91.1086 +528705,203.65,90.94465 +528706,202.11,90.9665 +528707,200.58,91.0065 +528708,199.07,91.0635 +528709,202.32,91.0265 +528710,200.77,91.0054 +528711,199.23,91.0031 +528712,197.71,91.0182 +528713,200.99,91.1083 +528714,199.43,91.0444 +528715,197.88,90.99966 +528716,196.35,90.97298 +528717,199.66,91.1902 +528718,198.09,91.0833 +528719,196.53,90.99617 +528720,195,90.9277 +528721,198.33,91.272 +528722,196.75,91.1221 +528723,195.18,90.99266 +528724,193.64,90.88242 +528725,197,91.3538 +528726,195.41,91.1609 +528727,193.84,90.98913 +528728,192.28,90.83718 +528729,195.66,91.4355 +528730,194.06,91.1996 +528731,192.49,90.98559 +528732,190.93,90.79202 +528733,194.32,91.517 +528734,192.72,91.2383 +528735,191.14,90.98205 +528736,189.58,90.74696 +528737,192.98,91.5983 +528738,191.38,91.2768 +528739,189.79,90.97853 +528740,188.23,90.70203 +528741,191.65,91.6795 +528742,190.04,91.3153 +528743,188.45,90.97504 +528744,186.88,90.65727 +528745,190.3,91.7604 +528746,188.69,91.3536 +528747,187.1,90.97158 +528748,185.53,90.6127 +528749,188.96,91.8411 +528750,187.35,91.3919 +528751,185.75,90.96817 +528752,184.18,90.56837 +528753,187.62,91.9214 +528754,186,91.43 +528755,184.41,90.96481 +528756,182.83,90.52428 +528757,186.27,92.0015 +528758,184.66,91.4679 +528759,183.06,90.96152 +528760,181.49,90.48049 +528761,184.93,92.0811 +528762,183.31,91.5057 +528763,181.72,90.95831 +528764,180.14,90.43701 +528765,183.58,92.1604 +528766,181.96,91.5434 +528767,180.37,90.95519 +528768,178.8,90.39389 +528769,182.23,92.2392 +528770,180.62,91.5808 +528771,179.03,90.95216 +528772,177.46,90.35114 +528773,180.88,92.3175 +528774,179.27,91.6181 +528775,177.68,90.94924 +528776,176.12,90.30879 +528777,179.53,92.3954 +528778,177.92,91.6552 +528779,176.34,90.94644 +528780,174.78,90.26689 +528781,178.18,92.4727 +528782,176.57,91.692 +528783,175,90.94377 +528784,173.44,90.22545 +528785,176.83,92.5494 +528786,175.23,91.7287 +528787,173.65,90.94124 +528788,172.11,90.18451 +528789,175.47,92.6255 +528790,173.88,91.7651 +528791,172.31,90.93885 +528792,170.77,90.14409 +528793,174.11,92.7011 +528794,172.53,91.8013 +528795,170.97,90.93662 +528796,169.44,90.10423 +528797,172.76,92.7759 +528798,171.18,91.8373 +528799,169.63,90.93456 +528800,168.1,90.064948 +528801,171.4,92.85 +528802,169.83,91.8729 +528803,168.29,90.93268 +528804,166.77,90.026275 +528805,170.04,92.9235 +528806,168.48,91.9083 +528807,166.95,90.93098 +528808,165.44,89.988239 +528809,168.68,92.9961 +528810,167.13,91.9435 +528811,165.6,90.92948 +528812,164.11,89.950867 +528813,167.31,93.068 +528814,165.77,91.9783 +528815,164.26,90.92818 +528816,162.78,89.914186 +528817,165.95,93.1391 +528818,164.42,92.0129 +528819,162.92,90.9271 +528820,161.46,89.87822 +528821,164.59,93.2093 +528822,163.07,92.0471 +528823,161.59,90.92624 +528824,160.13,89.84301 +528825,163.22,93.2786 +528826,161.72,92.081 +528827,160.25,90.92561 +528828,158.81,89.80856 +528829,161.85,93.347 +528830,160.36,92.1146 +528831,158.91,90.92523 +528832,157.48,89.77491 +528833,160.48,93.4145 +528834,159.01,92.1478 +528835,157.57,90.92509 +528836,156.16,89.74207 +528837,159.11,93.4811 +528838,157.65,92.1808 +528839,156.23,90.92521 +528840,154.84,89.71009 +528841,157.74,93.5466 +528842,156.3,92.2133 +528843,154.89,90.92559 +528844,153.52,89.67897 +528845,156.37,93.6111 +528846,154.95,92.2455 +528847,153.56,90.92625 +528848,152.2,89.64875 +528849,155,93.6746 +528850,153.59,92.2773 +528851,152.22,90.9272 +528852,150.88,89.61944 +528853,153.62,93.737 +528854,152.23,92.3088 +528855,150.88,90.92843 +528856,149.56,89.59108 +528857,152.25,93.7983 +528858,150.88,92.3398 +528859,149.55,90.92996 +528860,148.24,89.56367 +528861,150.87,93.8585 +528862,149.52,92.3705 +528863,148.21,90.93179 +528864,146.93,89.53726 +528865,149.49,93.9176 +528866,148.16,92.4007 +528867,146.87,90.93394 +528868,145.61,89.51184 +528869,148.11,93.9755 +528870,146.81,92.4306 +528871,145.54,90.9364 +528872,144.3,89.48746 +528873,146.73,94.0321 +528874,145.45,92.46 +528875,144.2,90.9392 +528876,142.99,89.46412 +528877,145.35,94.0876 +528878,144.09,92.489 +528879,142.87,90.94232 +528880,141.68,89.44185 +528881,143.97,94.1419 +528882,142.73,92.5175 +528883,141.53,90.94579 +528884,140.37,89.42067 +528885,142.59,94.1948 +528886,141.37,92.5457 +528887,140.2,90.9496 +528888,139.06,89.40059 +528889,141.2,94.2465 +528890,140.01,92.5733 +528891,138.86,90.95377 +528892,137.75,89.38164 +528893,139.82,94.2969 +528894,138.66,92.6006 +528895,137.53,90.95829 +528896,136.44,89.36383 +528897,138.43,94.346 +528898,137.3,92.6273 +528899,136.2,90.96318 +528900,135.13,89.34718 +528901,137.05,94.3937 +528902,135.94,92.6536 +528903,134.86,90.96843 +528904,133.82,89.33171 +528905,135.66,94.4401 +528906,134.57,92.6794 +528907,133.53,90.97406 +528908,132.52,89.31743 +528909,134.27,94.4851 +528910,133.21,92.7048 +528911,132.2,90.98008 +528912,131.21,89.30436 +528913,132.88,94.5288 +528914,131.85,92.7297 +528915,130.86,90.98648 +528916,129.91,89.29251 +528917,131.49,94.571 +528918,130.49,92.754 +528919,129.53,90.99326 +528920,128.6,89.2819 +528921,130.1,94.6118 +528922,129.13,92.7779 +528923,128.2,91.0004 +528924,127.3,89.27254 +528925,128.71,94.6512 +528926,127.77,92.8013 +528927,126.87,91.008 +528928,126,89.26445 +528929,127.32,94.6891 +528930,126.41,92.8242 +528931,125.54,91.016 +528932,124.7,89.25763 +528933,125.92,94.7255 +528934,125.04,92.8466 +528935,124.2,91.0244 +528936,123.4,89.2521 +528937,124.53,94.7605 +528938,123.68,92.8685 +528939,122.87,91.0332 +528940,122.09,89.24787 +528941,123.13,94.794 +528942,122.32,92.8898 +528943,121.54,91.0424 +528944,120.79,89.24495 +528945,121.74,94.8261 +528946,120.96,92.9107 +528947,120.21,91.0521 +528948,119.49,89.24336 +528949,120.34,94.8566 +528950,119.59,92.931 +528951,118.88,91.0621 +528952,118.2,89.24309 +528953,118.95,94.8856 +528954,118.23,92.9508 +528955,117.55,91.0726 +528956,116.9,89.24416 +528957,117.55,94.9131 +528958,116.86,92.9701 +528959,116.22,91.0835 +528960,115.6,89.24658 +528961,116.15,94.939 +528962,115.5,92.9888 +528963,114.89,91.0949 +528964,114.3,89.25035 +528965,114.76,94.9634 +528966,114.14,93.007 +528967,113.55,91.1066 +528968,113,89.25548 +528969,113.36,94.9863 +528970,112.77,93.0247 +528971,112.22,91.1188 +528972,111.71,89.26198 +528973,111.96,95.0077 +528974,111.41,93.0418 +528975,110.89,91.1315 +528976,110.41,89.26985 +528977,110.56,95.0275 +528978,110.04,93.0585 +528979,109.56,91.1445 +528980,109.11,89.2791 +528981,109.16,95.0457 +528982,108.68,93.0745 +528983,108.23,91.158 +528984,107.82,89.28973 +528985,107.76,95.0624 +528986,107.31,93.0901 +528987,106.9,91.172 +528988,106.52,89.30174 +528989,106.36,95.0776 +528990,105.95,93.1051 +528991,105.57,91.1863 +528992,105.23,89.31514 +528993,104.96,95.0912 +528994,104.58,93.1195 +528995,104.24,91.2012 +528996,103.93,89.32992 +528997,103.56,95.1032 +528998,103.22,93.1335 +528999,102.91,91.2164 +529000,102.63,89.34609 +529001,102.16,95.1137 +529002,101.85,93.1468 +529003,101.58,91.2321 +529004,101.34,89.36365 +529005,100.75,95.1227 +529006,100.49,93.1597 +529007,100.25,91.2482 +529008,100.04,89.38261 +529009,99.352,95.1301 +529010,99.122,93.172 +529011,98.923,91.2648 +529012,98.75,89.40294 +529013,97.95,95.1359 +529014,97.756,93.1838 +529015,97.593,91.2818 +529016,97.455,89.42467 +529017,96.548,95.1403 +529018,96.391,93.195 +529019,96.263,91.2993 +529020,96.16,89.44778 +529021,95.146,95.143 +529022,95.025,93.2057 +529023,94.933,91.3171 +529024,94.865,89.47227 +529025,93.744,95.1443 +529026,93.659,93.2159 +529027,93.603,91.3354 +529028,93.571,89.49813 +529029,92.342,95.1441 +529030,92.294,93.2255 +529031,92.273,91.3542 +529032,92.276,89.52537 +529033,90.94,95.1423 +529034,90.928,93.2346 +529035,90.942,91.3733 +529036,90.981,89.55398 +529037,89.538,95.1391 +529038,89.562,93.2432 +529039,89.612,91.3929 +529040,89.686,89.58395 +529041,88.136,95.1343 +529042,88.196,93.2512 +529043,88.282,91.4129 +529044,88.391,89.61527 +529045,86.734,95.1281 +529046,86.83,93.2588 +529047,86.952,91.4334 +529048,87.095,89.64794 +529049,85.332,95.1204 +529050,85.465,93.2658 +529051,85.621,91.4542 +529052,85.8,89.68195 +529053,83.93,95.1112 +529054,84.099,93.2723 +529055,84.291,91.4755 +529056,84.504,89.71729 +529057,82.529,95.1006 +529058,82.733,93.2783 +529059,82.96,91.4972 +529060,83.208,89.75395 +529061,81.128,95.0886 +529062,81.368,93.2838 +529063,81.63,91.5193 +529064,81.912,89.79192 +529065,79.726,95.0751 +529066,80.002,93.2887 +529067,80.299,91.5418 +529068,80.615,89.83119 +529069,78.326,95.0603 +529070,78.636,93.2932 +529071,78.968,91.5647 +529072,79.319,89.87176 +529073,76.925,95.044 +529074,77.271,93.2972 +529075,77.637,91.588 +529076,78.021,89.913596 +529077,75.525,95.0264 +529078,75.906,93.3007 +529079,76.306,91.6116 +529080,76.724,89.9567 +529081,74.125,95.0074 +529082,74.54,93.3037 +529083,74.974,91.6357 +529084,75.426,90.0010552 +529085,72.726,94.9871 +529086,73.175,93.3063 +529087,73.643,91.6601 +529088,74.127,90.046647 +529089,71.327,94.9655 +529090,71.81,93.3083 +529091,72.311,91.685 +529092,72.829,90.093461 +529093,69.928,94.9425 +529094,70.445,93.3099 +529095,70.979,91.7102 +529096,71.529,90.14148 +529097,68.53,94.9183 +529098,69.08,93.3111 +529099,69.647,91.7357 +529100,70.229,90.19069 +529101,67.132,94.8928 +529102,67.716,93.3117 +529103,68.315,91.7616 +529104,68.929,90.24108 +529105,65.735,94.8661 +529106,66.351,93.312 +529107,66.982,91.7879 +529108,67.628,90.29262 +529109,64.338,94.8381 +529110,64.987,93.3118 +529111,65.65,91.8145 +529112,66.327,90.34531 +529113,62.942,94.809 +529114,63.622,93.3111 +529115,64.317,91.8414 +529116,65.025,90.39911 +529117,61.547,94.7787 +529118,62.258,93.31 +529119,62.984,91.8687 +529120,63.722,90.45402 +529121,60.152,94.7472 +529122,60.895,93.3085 +529123,61.65,91.8963 +529124,62.419,90.51 +529125,58.758,94.7146 +529126,59.531,93.3066 +529127,60.317,91.9243 +529128,61.114,90.56705 +529129,57.365,94.6809 +529130,58.167,93.3043 +529131,58.983,91.9525 +529132,59.81,90.62514 +529133,55.972,94.6461 +529134,56.804,93.3016 +529135,57.649,91.981 +529136,58.504,90.68425 +529137,54.58,94.6103 +529138,55.441,93.2985 +529139,56.314,92.0099 +529140,57.198,90.74435 +529141,53.188,94.5734 +529142,54.078,93.295 +529143,54.98,92.039 +529144,55.891,90.80543 +529145,51.798,94.5355 +529146,52.716,93.2911 +529147,53.645,92.0684 +529148,54.584,90.86747 +529149,50.408,94.4966 +529150,51.353,93.2869 +529151,52.309,92.0981 +529152,53.275,90.93043 +529153,49.019,94.4568 +529154,49.991,93.2823 +529155,50.974,92.128 +529156,51.966,90.99429 +529157,47.631,94.4161 +529158,48.629,93.2773 +529159,49.638,92.1582 +529160,50.655,91.059 +529161,46.244,94.3744 +529162,47.268,93.272 +529163,48.302,92.1886 +529164,49.344,91.1246 +529165,44.857,94.3319 +529166,45.907,93.2664 +529167,46.965,92.2193 +529168,48.032,91.1911 +529169,43.472,94.2886 +529170,44.545,93.2605 +529171,45.628,92.2502 +529172,46.72,91.2583 +529173,42.087,94.2445 +529174,43.185,93.2542 +529175,44.291,92.2813 +529176,45.406,91.3263 +529177,40.703,94.1995 +529178,41.824,93.2477 +529179,42.954,92.3126 +529180,44.091,91.395 +529181,39.32,94.1538 +529182,40.464,93.2408 +529183,41.616,92.3442 +529184,42.776,91.4645 +529185,37.939,94.1074 +529186,39.104,93.2337 +529187,40.278,92.3759 +529188,41.459,91.5347 +529189,36.558,94.0603 +529190,37.744,93.2263 +529191,38.939,92.4078 +529192,40.141,91.6055 +529193,35.178,94.0126 +529194,36.385,93.2186 +529195,37.6,92.4398 +529196,38.823,91.677 +529197,33.799,93.9642 +529198,35.026,93.2107 +529199,36.261,92.472 +529200,37.503,91.7491 +529201,32.421,93.9152 +529202,33.668,93.2025 +529203,34.922,92.5044 +529204,36.182,91.8217 +529205,31.045,93.8656 +529206,32.309,93.1941 +529207,33.582,92.5369 +529208,34.861,91.8949 +529209,29.669,93.8155 +529210,30.951,93.1855 +529211,32.241,92.5696 +529212,33.538,91.9686 +529213,28.294,93.7649 +529214,29.593,93.1766 +529215,30.9,92.6023 +529216,32.214,92.0428 +529217,26.921,93.7138 +529218,28.236,93.1676 +529219,29.559,92.6352 +529220,30.889,92.1175 +529221,25.548,93.6623 +529222,26.879,93.1583 +529223,28.218,92.6682 +529224,29.563,92.1926 +529225,24.177,93.6103 +529226,25.522,93.1489 +529227,26.876,92.7012 +529228,28.236,92.268 +529229,22.807,93.558 +529230,24.166,93.1393 +529231,25.534,92.7344 +529232,26.908,92.3439 +529233,21.438,93.5053 +529234,22.81,93.1296 +529235,24.191,92.7676 +529236,25.578,92.42 +529237,20.07,93.4523 +529238,21.455,93.1197 +529239,22.848,92.8008 +529240,24.248,92.4965 +529241,18.703,93.3991 +529242,20.099,93.1096 +529243,21.504,92.8341 +529244,22.916,92.5732 +529245,17.337,93.3456 +529246,18.744,93.0994 +529247,20.16,92.8674 +529248,21.583,92.6502 +529249,15.973,93.2918 +529250,17.39,93.0892 +529251,18.816,92.9008 +529252,20.249,92.7273 +529253,14.609,93.2379 +529254,16.036,93.0788 +529255,17.471,92.9341 +529256,18.914,92.8046 +529257,13.247,93.1839 +529258,14.682,93.0683 +529259,16.126,92.9675 +529260,17.577,92.8821 +529261,11.886,93.1297 +529262,13.329,93.0577 +529263,14.78,93.0008 +529264,16.24,92.9596 +529265,10.526,93.0754 +529266,11.976,93.0471 +529267,13.434,93.0341 +529268,14.901,93.0372 +529269,9.1677,93.0211 +529270,10.623,93.0363 +529271,12.088,93.0674 +529272,13.561,93.1149 +529273,7.8103,92.9667 +529274,9.2707,93.0256 +529275,10.741,93.1006 +529276,12.22,93.1925 +529277,6.454,92.9124 +529278,7.9188,93.0148 +529279,9.3936,93.1338 +529280,10.877,93.2701 +529281,5.0989,92.8581 +529282,6.5673,93.004 +529283,8.0458,93.1669 +529284,9.5334,93.3476 +529285,3.7451,92.8039 +529286,5.2161,92.9931 +529287,6.6977,93.1999 +529288,8.1885,93.425 +529289,2.3924,92.7498 +529290,3.8654,92.9823 +529291,5.3491,93.2329 +529292,6.8424,93.5023 +529293,1.0409,92.6958 +529294,2.515,92.9714 +529295,4.0001,93.2657 +529296,5.4951,93.5794 +529297,359.69,92.642 +529298,1.165,92.9606 +529299,2.6506,93.2984 +529300,4.1465,93.6562 +529301,358.34,92.5884 +529302,359.82,92.9498 +529303,1.3007,93.331 +529304,2.7967,93.7329 +529305,356.99,92.5351 +529306,358.47,92.939 +529307,359.95,93.3634 +529308,1.4457,93.8092 +529309,355.65,92.482 +529310,357.12,92.9283 +529311,358.6,93.3957 +529312,0.093396,93.8853 +529313,354.3,92.4292 +529314,355.77,92.9176 +529315,357.25,93.4279 +529316,358.74,93.961 +529317,352.96,92.3768 +529318,354.42,92.907 +529319,355.9,93.4598 +529320,357.39,94.0363 +529321,351.61,92.3247 +529322,353.07,92.8965 +529323,354.54,93.4916 +529324,356.03,94.1112 +529325,350.27,92.273 +529326,351.73,92.8861 +529327,353.19,93.5232 +529328,354.67,94.1856 +529329,348.93,92.2217 +529330,350.38,92.8757 +529331,351.84,93.5546 +529332,353.31,94.2596 +529333,347.59,92.1709 +529334,349.03,92.8655 +529335,350.49,93.5858 +529336,351.95,94.333 +529337,346.25,92.1206 +529338,347.69,92.8554 +529339,349.13,93.6167 +529340,350.59,94.4059 +529341,344.92,92.0708 +529342,346.34,92.8455 +529343,347.78,93.6474 +529344,349.23,94.4782 +529345,343.58,92.0215 +529346,344.99,92.8356 +529347,346.42,93.6779 +529348,347.87,94.5499 +529349,342.24,91.9728 +529350,343.65,92.826 +529351,345.07,93.7081 +529352,346.5,94.621 +529353,340.91,91.9247 +529354,342.3,92.8165 +529355,343.71,93.738 +529356,345.14,94.6913 +529357,339.58,91.8772 +529358,340.96,92.8071 +529359,342.36,93.7677 +529360,343.77,94.761 +529361,338.25,91.8304 +529362,339.62,92.798 +529363,341,93.7971 +529364,342.4,94.8299 +529365,336.92,91.7843 +529366,338.27,92.789 +529367,339.65,93.8261 +529368,341.03,94.898 +529369,335.59,91.7388 +529370,336.93,92.7802 +529371,338.29,93.8549 +529372,339.66,94.9653 +529373,334.26,91.6942 +529374,335.59,92.7717 +529375,336.93,93.8833 +529376,338.29,95.0317 +529377,332.93,91.6503 +529378,334.24,92.7633 +529379,335.57,93.9114 +529380,336.92,95.0973 +529381,331.6,91.6071 +529382,332.9,92.7552 +529383,334.22,93.9392 +529384,335.55,95.162 +529385,330.28,91.5648 +529386,331.56,92.7473 +529387,332.86,93.9666 +529388,334.17,95.2258 +529389,328.95,91.5234 +529390,330.22,92.7397 +529391,331.5,93.9937 +529392,332.8,95.2886 +529393,327.63,91.4828 +529394,328.88,92.7323 +529395,330.14,94.0204 +529396,331.42,95.3504 +529397,326.31,91.4431 +529398,327.53,92.7252 +529399,328.78,94.0467 +529400,330.04,95.4112 +529401,324.99,91.4043 +529402,326.19,92.7184 +529403,327.42,94.0726 +529404,328.66,95.4709 +529405,323.67,91.3665 +529406,324.85,92.7118 +529407,326.06,94.0982 +529408,327.28,95.5296 +529409,322.35,91.3297 +529410,323.51,92.7056 +529411,324.7,94.1233 +529412,325.9,95.5871 +529413,321.03,91.2938 +529414,322.17,92.6996 +529415,323.34,94.148 +529416,324.52,95.6436 +529417,319.71,91.2589 +529418,320.83,92.6939 +529419,321.98,94.1723 +529420,323.14,95.6988 +529421,318.39,91.2251 +529422,319.49,92.6885 +529423,320.61,94.1962 +529424,321.75,95.7529 +529425,317.08,91.1923 +529426,318.16,92.6835 +529427,319.25,94.2197 +529428,320.37,95.8058 +529429,315.76,91.1606 +529430,316.82,92.6788 +529431,317.89,94.2427 +529432,318.98,95.8575 +529433,314.45,91.13 +529434,315.48,92.6744 +529435,316.53,94.2652 +529436,317.6,95.9079 +529437,313.13,91.1005 +529438,314.14,92.6703 +529439,315.16,94.2873 +529440,316.21,95.957 +529441,311.82,91.0721 +529442,312.8,92.6666 +529443,313.8,94.3089 +529444,314.82,96.0049 +529445,310.51,91.0449 +529446,311.46,92.6632 +529447,312.44,94.3301 +529448,313.43,96.0514 +529449,309.2,91.0188 +529450,310.13,92.6602 +529451,311.07,94.3508 +529452,312.04,96.0965 +529453,307.89,90.99393 +529454,308.79,92.6576 +529455,309.71,94.371 +529456,310.65,96.1404 +529457,306.58,90.97026 +529458,307.45,92.6553 +529459,308.35,94.3907 +529460,309.26,96.1828 +529461,305.27,90.94781 +529462,306.12,92.6534 +529463,306.98,94.4099 +529464,307.87,96.2238 +529465,303.96,90.92659 +529466,304.78,92.6519 +529467,305.62,94.4286 +529468,306.48,96.2634 +529469,302.65,90.90662 +529470,303.44,92.6508 +529471,304.25,94.4468 +529472,305.08,96.3016 +529473,301.35,90.88791 +529474,302.11,92.65 +529475,302.89,94.4645 +529476,303.69,96.3383 +529477,300.04,90.87047 +529478,300.77,92.6497 +529479,301.52,94.4817 +529480,302.29,96.3736 +529481,298.73,90.85432 +529482,299.43,92.6497 +529483,300.15,94.4983 +529484,300.9,96.4073 +529485,297.43,90.83948 +529486,298.1,92.6502 +529487,298.79,94.5144 +529488,299.5,96.4396 +529489,296.12,90.82594 +529490,296.76,92.6511 +529491,297.42,94.53 +529492,298.1,96.4704 +529493,294.82,90.81373 +529494,295.43,92.6523 +529495,296.06,94.5451 +529496,296.71,96.4996 +529497,293.51,90.80285 +529498,294.09,92.654 +529499,294.69,94.5596 +529500,295.31,96.5273 +529501,292.21,90.79332 +529502,292.76,92.6561 +529503,293.32,94.5736 +529504,293.91,96.5535 +529505,290.91,90.78513 +529506,291.42,92.6586 +529507,291.96,94.587 +529508,292.51,96.5781 +529509,289.6,90.77831 +529510,290.09,92.6616 +529511,290.59,94.5999 +529512,291.11,96.6011 +529513,288.3,90.77285 +529514,288.75,92.665 +529515,289.22,94.6122 +529516,289.71,96.6225 +529517,287,90.76877 +529518,287.42,92.6688 +529519,287.85,94.624 +529520,288.31,96.6424 +529521,285.7,90.76607 +529522,286.08,92.673 +529523,286.49,94.6352 +529524,286.91,96.6607 +529525,284.39,90.76475 +529526,284.75,92.6776 +529527,285.12,94.6458 +529528,285.51,96.6774 +529529,283.09,90.76483 +529530,283.41,92.6827 +529531,283.75,94.6559 +529532,284.11,96.6924 +529533,281.79,90.7663 +529534,282.08,92.6883 +529535,282.38,94.6655 +529536,282.71,96.7059 +529537,280.49,90.76917 +529538,280.75,92.6942 +529539,281.02,94.6744 +529540,281.31,96.7178 +529541,279.19,90.77345 +529542,279.41,92.7006 +529543,279.65,94.6829 +529544,279.9,96.728 +529545,277.89,90.77912 +529546,278.08,92.7075 +529547,278.28,94.6907 +529548,278.5,96.7367 +529549,276.59,90.7862 +529550,276.74,92.7147 +529551,276.91,94.698 +529552,277.1,96.7437 +529553,275.29,90.79469 +529554,275.41,92.7225 +529555,275.54,94.7047 +529556,275.7,96.7491 +529557,273.99,90.80459 +529558,274.08,92.7306 +529559,274.18,94.7108 +529560,274.29,96.7529 +529561,272.69,90.81589 +529562,272.74,92.7392 +529563,272.81,94.7164 +529564,272.89,96.7551 +529565,271.39,90.82859 +529566,271.41,92.7482 +529567,271.44,94.7214 +529568,271.49,96.7556 +529569,270.09,90.84269 +529570,270.07,92.7577 +529571,270.07,94.7259 +529572,270.09,96.7546 +529573,268.79,90.8582 +529574,268.74,92.7676 +529575,268.7,94.7298 +529576,268.68,96.752 +529577,267.49,90.8751 +529578,267.4,92.7779 +529579,267.33,94.7331 +529580,267.28,96.7478 +529581,266.18,90.89339 +529582,266.07,92.7887 +529583,265.97,94.7359 +529584,265.88,96.7419 +529585,264.88,90.91306 +529586,264.74,92.7999 +529587,264.6,94.7381 +529588,264.47,96.7345 +529589,263.58,90.93412 +529590,263.4,92.8115 +529591,263.23,94.7398 +529592,263.07,96.7256 +529593,262.28,90.95655 +529594,262.07,92.8235 +529595,261.86,94.7409 +529596,261.67,96.715 +529597,260.98,90.98035 +529598,260.73,92.836 +529599,260.49,94.7414 +529600,260.27,96.7029 +529601,259.68,91.0055 +529602,259.4,92.8489 +529603,259.13,94.7415 +529604,258.87,96.6893 +529605,258.38,91.032 +529606,258.06,92.8622 +529607,257.76,94.7409 +529608,257.46,96.6741 +529609,257.07,91.0599 +529610,256.73,92.8759 +529611,256.39,94.7399 +529612,256.06,96.6574 +529613,255.77,91.0891 +529614,255.39,92.89 +529615,255.02,94.7383 +529616,254.66,96.6392 +529617,254.47,91.1196 +529618,254.06,92.9046 +529619,253.65,94.7361 +529620,253.26,96.6195 +529621,253.17,91.1514 +529622,252.72,92.9195 +529623,252.29,94.7335 +529624,251.86,96.5983 +529625,251.86,91.1845 +529626,251.39,92.9348 +529627,250.92,94.7303 +529628,250.46,96.5757 +529629,250.56,91.2189 +529630,250.05,92.9506 +529631,249.55,94.7266 +529632,249.06,96.5516 +529633,249.25,91.2546 +529634,248.72,92.9667 +529635,248.18,94.7224 +529636,247.66,96.526 +529637,247.95,91.2915 +529638,247.38,92.9832 +529639,246.82,94.7176 +529640,246.26,96.4991 +529641,246.64,91.3297 +529642,246.04,93.0001 +529643,245.45,94.7124 +529644,244.87,96.4707 +529645,245.34,91.3691 +529646,244.71,93.0173 +529647,244.08,94.7067 +529648,243.47,96.441 +529649,244.03,91.4097 +529650,243.37,93.0349 +529651,242.72,94.7005 +529652,242.07,96.4099 +529653,242.72,91.4516 +529654,242.03,93.0529 +529655,241.35,94.6938 +529656,240.67,96.3775 +529657,241.42,91.4946 +529658,240.7,93.0713 +529659,239.98,94.6866 +529660,239.28,96.3437 +529661,240.11,91.5387 +529662,239.36,93.09 +529663,238.62,94.6789 +529664,237.88,96.3087 +529665,238.8,91.5841 +529666,238.02,93.109 +529667,237.25,94.6708 +529668,236.49,96.2723 +529669,237.49,91.6305 +529670,236.69,93.1284 +529671,235.89,94.6622 +529672,235.09,96.2348 +529673,236.18,91.6781 +529674,235.35,93.1481 +529675,234.52,94.6532 +529676,233.7,96.1959 +529677,234.87,91.7267 +529678,234.01,93.1681 +529679,233.16,94.6438 +529680,232.31,96.1559 +529681,233.56,91.7764 +529682,232.67,93.1884 +529683,231.79,94.6339 +529684,230.91,96.1147 +529685,232.24,91.8272 +529686,231.33,93.2091 +529687,230.43,94.6235 +529688,229.52,96.0724 +529689,230.93,91.8789 +529690,229.99,93.23 +529691,229.06,94.6128 +529692,228.13,96.0289 +529693,229.62,91.9317 +529694,228.66,93.2512 +529695,227.7,94.6016 +529696,226.74,95.9843 +529697,228.3,91.9855 +529698,227.32,93.2728 +529699,226.33,94.59 +529700,225.35,95.9386 +529701,226.99,92.0402 +529702,225.98,93.2946 +529703,224.97,94.5781 +529704,223.97,95.8919 +529705,225.67,92.0958 +529706,224.64,93.3166 +529707,223.61,94.5657 +529708,222.58,95.8441 +529709,224.35,92.1524 +529710,223.3,93.339 +529711,222.24,94.553 +529712,221.19,95.7954 +529713,223.03,92.2099 +529714,221.96,93.3616 +529715,220.88,94.5399 +529716,219.81,95.7457 +529717,221.71,92.2682 +529718,220.61,93.3844 +529719,219.52,94.5265 +529720,218.42,95.695 +529721,220.39,92.3273 +529722,219.27,93.4074 +529723,218.16,94.5127 +529724,217.04,95.6435 +529725,219.07,92.3872 +529726,217.93,93.4307 +529727,216.79,94.4985 +529728,215.66,95.591 +529729,217.75,92.448 +529730,216.59,93.4542 +529731,215.43,94.484 +529732,214.27,95.5377 +529733,216.43,92.5094 +529734,215.25,93.4779 +529735,214.07,94.4692 +529736,212.89,95.4836 +529737,215.1,92.5716 +529738,213.91,93.5018 +529739,212.71,94.4541 +529740,211.51,95.4287 +529741,213.78,92.6345 +529742,212.56,93.5259 +529743,211.35,94.4387 +529744,210.14,95.3731 +529745,212.45,92.6981 +529746,211.22,93.5502 +529747,209.99,94.423 +529748,208.76,95.3167 +529749,211.13,92.7623 +529750,209.88,93.5746 +529751,208.63,94.407 +529752,207.38,95.2596 +529753,209.8,92.8271 +529754,208.53,93.5992 +529755,207.27,94.3908 +529756,206.01,95.2019 +529757,208.47,92.8925 +529758,207.19,93.6239 +529759,205.91,94.3743 +529760,204.63,95.1435 +529761,207.14,92.9585 +529762,205.84,93.6488 +529763,204.55,94.3575 +529764,203.26,95.0845 +529765,205.81,93.0249 +529766,204.5,93.6737 +529767,203.19,94.3405 +529768,201.88,95.025 +529769,204.48,93.0919 +529770,203.15,93.6988 +529771,201.83,94.3233 +529772,200.51,94.9649 +529773,203.14,93.1593 +529774,201.81,93.7241 +529775,200.47,94.3058 +529776,199.14,94.9044 +529777,201.81,93.2271 +529778,200.46,93.7494 +529779,199.12,94.2882 +529780,197.77,94.8433 +529781,200.47,93.2954 +529782,199.12,93.7747 +529783,197.76,94.2703 +529784,196.41,94.7819 +529785,199.13,93.364 +529786,197.77,93.8002 +529787,196.4,94.2523 +529788,195.04,94.72 +529789,197.8,93.4329 +529790,196.42,93.8257 +529791,195.05,94.2341 +529792,193.67,94.6578 +529793,196.46,93.5022 +529794,195.07,93.8513 +529795,193.69,94.2157 +529796,192.31,94.5952 +529797,195.12,93.5717 +529798,193.73,93.8769 +529799,192.33,94.1972 +529800,190.95,94.5323 +529801,193.78,93.6414 +529802,192.38,93.9025 +529803,190.98,94.1785 +529804,189.58,94.4692 +529805,192.43,93.7114 +529806,191.03,93.9282 +529807,189.62,94.1597 +529808,188.22,94.4058 +529809,191.09,93.7815 +529810,189.68,93.9538 +529811,188.27,94.1408 +529812,186.86,94.3423 +529813,189.75,93.8518 +529814,188.33,93.9795 +529815,186.92,94.1218 +529816,185.5,94.2785 +529817,188.4,93.9221 +529818,186.98,94.0051 +529819,185.56,94.1027 +529820,184.15,94.2147 +529821,187.05,93.9925 +529822,185.63,94.0307 +529823,184.21,94.0835 +529824,182.79,94.1507 +529825,185.7,94.063 +529826,184.28,94.0563 +529827,182.86,94.0642 +529828,181.43,94.0867 +529829,184.35,94.1334 +529830,182.93,94.0818 +529831,181.5,94.0449 +529832,180.08,94.0227 +529833,183,94.2039 +529834,181.58,94.1072 +529835,180.15,94.0255 +529836,178.73,93.9586 +529837,181.65,94.2742 +529838,180.22,94.1326 +529839,178.8,94.0061 +529840,177.38,93.8946 +529841,180.3,94.3445 +529842,178.87,94.1579 +529843,177.45,93.9866 +529844,176.03,93.8307 +529845,178.94,94.4146 +529846,177.52,94.1831 +529847,176.1,93.9672 +529848,174.68,93.7668 +529849,177.59,94.4845 +529850,176.17,94.2081 +529851,174.74,93.9477 +529852,173.33,93.7031 +529853,176.23,94.5543 +529854,174.81,94.2331 +529855,173.39,93.9283 +529856,171.98,93.6396 +529857,174.87,94.6238 +529858,173.46,94.2579 +529859,172.04,93.9088 +529860,170.63,93.5763 +529861,173.52,94.693 +529862,172.1,94.2826 +529863,170.69,93.8894 +529864,169.29,93.5132 +529865,172.15,94.7619 +529866,170.75,94.3072 +529867,169.35,93.87 +529868,167.95,93.4504 +529869,170.79,94.8305 +529870,169.39,94.3315 +529871,168,93.8507 +529872,166.6,93.3879 +529873,169.43,94.8987 +529874,168.04,94.3557 +529875,166.65,93.8314 +529876,165.26,93.3257 +529877,168.07,94.9665 +529878,166.68,94.3797 +529879,165.3,93.8122 +529880,163.92,93.2639 +529881,166.7,95.0339 +529882,165.33,94.4035 +529883,163.95,93.7931 +529884,162.58,93.2025 +529885,165.34,95.1007 +529886,163.97,94.4271 +529887,162.61,93.7741 +529888,161.25,93.1415 +529889,163.97,95.1671 +529890,162.61,94.4505 +529891,161.26,93.7552 +529892,159.91,93.0809 +529893,162.6,95.2329 +529894,161.25,94.4736 +529895,159.91,93.7364 +529896,158.57,93.0209 +529897,161.23,95.2982 +529898,159.9,94.4965 +529899,158.57,93.7177 +529900,157.24,92.9613 +529901,159.86,95.3628 +529902,158.54,94.5192 +529903,157.22,93.6992 +529904,155.91,92.9024 +529905,158.49,95.4268 +529906,157.18,94.5416 +529907,155.87,93.6808 +529908,154.57,92.844 +529909,157.12,95.4901 +529910,155.82,94.5637 +529911,154.53,93.6626 +529912,153.24,92.7862 +529913,155.74,95.5527 +529914,154.46,94.5855 +529915,153.18,93.6445 +529916,151.91,92.729 +529917,154.37,95.6146 +529918,153.1,94.607 +529919,151.84,93.6266 +529920,150.58,92.6725 +529921,152.99,95.6756 +529922,151.74,94.6282 +529923,150.5,93.6089 +529924,149.26,92.6167 +529925,151.62,95.7359 +529926,150.38,94.6491 +529927,149.15,93.5914 +529928,147.93,92.5616 +529929,150.24,95.7954 +529930,149.02,94.6697 +529931,147.81,93.5741 +529932,146.6,92.5073 +529933,148.86,95.854 +529934,147.66,94.69 +529935,146.47,93.557 +529936,145.28,92.4538 +529937,147.48,95.9117 +529938,146.3,94.7099 +529939,145.12,93.5402 +529940,143.95,92.401 +529941,146.1,95.9684 +529942,144.94,94.7294 +529943,143.78,93.5236 +529944,142.63,92.3491 +529945,144.72,96.0242 +529946,143.57,94.7486 +529947,142.44,93.5072 +529948,141.31,92.298 +529949,143.33,96.079 +529950,142.21,94.7674 +529951,141.1,93.491 +529952,139.99,92.2479 +529953,141.95,96.1328 +529954,140.85,94.7858 +529955,139.76,93.4752 +529956,138.67,92.1986 +529957,140.56,96.1856 +529958,139.49,94.8039 +529959,138.41,93.4596 +529960,137.35,92.1502 +529961,139.18,96.2373 +529962,138.12,94.8215 +529963,137.07,93.4442 +529964,136.03,92.1029 +529965,137.79,96.2879 +529966,136.76,94.8387 +529967,135.73,93.4292 +529968,134.71,92.0564 +529969,136.4,96.3374 +529970,135.4,94.8555 +529971,134.39,93.4144 +529972,133.39,92.011 +529973,135.02,96.3857 +529974,134.03,94.8719 +529975,133.05,93.4 +529976,132.08,91.9666 +529977,133.63,96.4328 +529978,132.67,94.8879 +529979,131.71,93.3858 +529980,130.76,91.9233 +529981,132.24,96.4788 +529982,131.3,94.9034 +529983,130.37,93.372 +529984,129.45,91.881 +529985,130.85,96.5235 +529986,129.94,94.9184 +529987,129.03,93.3585 +529988,128.13,91.8398 +529989,129.45,96.5669 +529990,128.57,94.933 +529991,127.69,93.3453 +529992,126.82,91.7997 +529993,128.06,96.6091 +529994,127.21,94.9472 +529995,126.36,93.3325 +529996,125.51,91.7607 +529997,126.67,96.65 +529998,125.84,94.9609 +529999,125.02,93.32 +530000,124.2,91.7229 +530001,125.28,96.6896 +530002,124.47,94.974 +530003,123.68,93.3078 +530004,122.89,91.6862 +530005,123.88,96.7278 +530006,123.11,94.9867 +530007,122.34,93.296 +530008,121.58,91.6507 +530009,122.49,96.7646 +530010,121.74,94.999 +530011,121,93.2846 +530012,120.27,91.6164 +530013,121.09,96.8001 +530014,120.38,95.0107 +530015,119.66,93.2735 +530016,118.96,91.5834 +530017,119.69,96.8342 +530018,119.01,95.0219 +530019,118.33,93.2628 +530020,117.65,91.5515 +530021,118.3,96.8668 +530022,117.64,95.0326 +530023,116.99,93.2525 +530024,116.34,91.5209 +530025,116.9,96.8981 +530026,116.28,95.0428 +530027,115.65,93.2426 +530028,115.03,91.4916 +530029,115.5,96.9278 +530030,114.91,95.0525 +530031,114.32,93.233 +530032,113.73,91.4635 +530033,114.1,96.9561 +530034,113.54,95.0616 +530035,112.98,93.2239 +530036,112.42,91.4367 +530037,112.71,96.9829 +530038,112.17,95.0702 +530039,111.64,93.2152 +530040,111.11,91.4112 +530041,111.31,97.0082 +530042,110.8,95.0783 +530043,110.31,93.2068 +530044,109.81,91.387 +530045,109.91,97.032 +530046,109.44,95.0859 +530047,108.97,93.1989 +530048,108.5,91.3642 +530049,108.51,97.0542 +530050,108.07,95.0929 +530051,107.63,93.1913 +530052,107.2,91.3426 +530053,107.11,97.0749 +530054,106.7,95.0993 +530055,106.3,93.1842 +530056,105.89,91.3224 +530057,105.7,97.094 +530058,105.33,95.1052 +530059,104.96,93.1775 +530060,104.59,91.3036 +530061,104.3,97.1116 +530062,103.96,95.1106 +530063,103.63,93.1712 +530064,103.29,91.2861 +530065,102.9,97.1276 +530066,102.6,95.1154 +530067,102.29,93.1654 +530068,101.98,91.27 +530069,101.5,97.142 +530070,101.23,95.1196 +530071,100.95,93.1599 +530072,100.68,91.2553 +530073,100.1,97.1548 +530074,99.858,95.1233 +530075,99.618,93.1549 +530076,99.377,91.242 +530077,98.696,97.1661 +530078,98.49,95.1264 +530079,98.282,93.1503 +530080,98.075,91.23 +530081,97.294,97.1757 +530082,97.121,95.1289 +530083,96.947,93.1462 +530084,96.772,91.2195 +530085,95.891,97.1836 +530086,95.752,95.1309 +530087,95.611,93.1425 +530088,95.47,91.2103 +530089,94.489,97.19 +530090,94.383,95.1323 +530091,94.276,93.1392 +530092,94.167,91.2025 +530093,93.086,97.1948 +530094,93.014,95.1332 +530095,92.941,93.1364 +530096,92.865,91.1962 +530097,91.683,97.1979 +530098,91.645,95.1334 +530099,91.605,93.134 +530100,91.563,91.1912 +530101,90.28,97.1993 +530102,90.276,95.1331 +530103,90.27,93.132 +530104,90.261,91.1877 +530105,88.878,97.1992 +530106,88.908,95.1322 +530107,88.935,93.1305 +530108,88.959,91.1856 +530109,87.475,97.1974 +530110,87.539,95.1308 +530111,87.599,93.1294 +530112,87.657,91.1849 +530113,86.072,97.194 +530114,86.17,95.1288 +530115,86.264,93.1287 +530116,86.355,91.1855 +530117,84.669,97.189 +530118,84.801,95.1262 +530119,84.929,93.1285 +530120,85.053,91.1877 +530121,83.267,97.1823 +530122,83.432,95.123 +530123,83.593,93.1287 +530124,83.751,91.1912 +530125,81.864,97.174 +530126,82.063,95.1193 +530127,82.258,93.1294 +530128,82.448,91.1961 +530129,80.462,97.1641 +530130,80.695,95.115 +530131,80.922,93.1305 +530132,81.146,91.2024 +530133,79.06,97.1525 +530134,79.326,95.1101 +530135,79.587,93.132 +530136,79.843,91.2101 +530137,77.658,97.1394 +530138,77.957,95.1047 +530139,78.251,93.1339 +530140,78.54,91.2192 +530141,76.257,97.1246 +530142,76.589,95.0987 +530143,76.915,93.1363 +530144,77.237,91.2297 +530145,74.855,97.1083 +530146,75.221,95.0921 +530147,75.58,93.1391 +530148,75.934,91.2416 +530149,73.454,97.0903 +530150,73.852,95.085 +530151,74.244,93.1424 +530152,74.63,91.2549 +530153,72.054,97.0708 +530154,72.484,95.0773 +530155,72.908,93.146 +530156,73.326,91.2695 +530157,70.653,97.0497 +530158,71.116,95.069 +530159,71.572,93.1501 +530160,72.022,91.2855 +530161,69.253,97.0271 +530162,69.748,95.0603 +530163,70.236,93.1546 +530164,70.717,91.3028 +530165,67.854,97.0029 +530166,68.38,95.0509 +530167,68.899,93.1595 +530168,69.412,91.3215 +530169,66.455,96.9771 +530170,67.013,95.041 +530171,67.563,93.1648 +530172,68.107,91.3415 +530173,65.056,96.9499 +530174,65.645,95.0306 +530175,66.226,93.1706 +530176,66.801,91.3628 +530177,63.658,96.9211 +530178,64.278,95.0197 +530179,64.89,93.1767 +530180,65.495,91.3855 +530181,62.26,96.8909 +530182,62.911,95.0082 +530183,63.553,93.1832 +530184,64.188,91.4094 +530185,60.863,96.8591 +530186,61.544,94.9962 +530187,62.216,93.1901 +530188,62.881,91.4347 +530189,59.467,96.8259 +530190,60.177,94.9837 +530191,60.879,93.1975 +530192,61.573,91.4612 +530193,58.071,96.7913 +530194,58.811,94.9706 +530195,59.541,93.2052 +530196,60.264,91.4889 +530197,56.676,96.7552 +530198,57.444,94.9571 +530199,58.203,93.2132 +530200,58.955,91.5179 +530201,55.281,96.7177 +530202,56.078,94.943 +530203,56.866,93.2217 +530204,57.646,91.5481 +530205,53.887,96.6789 +530206,54.712,94.9285 +530207,55.528,93.2305 +530208,56.336,91.5796 +530209,52.494,96.6386 +530210,53.346,94.9134 +530211,54.189,93.2397 +530212,55.025,91.6122 +530213,51.102,96.597 +530214,51.981,94.8979 +530215,52.851,93.2492 +530216,53.713,91.646 +530217,49.71,96.5541 +530218,50.616,94.8819 +530219,51.512,93.2591 +530220,52.401,91.681 +530221,48.319,96.5099 +530222,49.251,94.8654 +530223,50.173,93.2693 +530224,51.088,91.7172 +530225,46.928,96.4644 +530226,47.886,94.8485 +530227,48.834,93.2799 +530228,49.774,91.7544 +530229,45.539,96.4176 +530230,46.522,94.8311 +530231,47.495,93.2908 +530232,48.46,91.7928 +530233,44.15,96.3697 +530234,45.158,94.8132 +530235,46.155,93.302 +530236,47.145,91.8322 +530237,42.763,96.3205 +530238,43.794,94.795 +530239,44.815,93.3136 +530240,45.829,91.8727 +530241,41.376,96.2701 +530242,42.43,94.7762 +530243,43.475,93.3254 +530244,44.512,91.9142 +530245,39.99,96.2185 +530246,41.067,94.7571 +530247,42.135,93.3376 +530248,43.194,91.9568 +530249,38.605,96.1659 +530250,39.704,94.7375 +530251,40.794,93.35 +530252,41.876,92.0004 +530253,37.22,96.1121 +530254,38.341,94.7175 +530255,39.453,93.3628 +530256,40.556,92.0449 +530257,35.837,96.0572 +530258,36.979,94.6972 +530259,38.111,93.3758 +530260,39.236,92.0904 +530261,34.455,96.0013 +530262,35.617,94.6764 +530263,36.77,93.3891 +530264,37.915,92.1368 +530265,33.073,95.9444 +530266,34.255,94.6552 +530267,35.428,93.4026 +530268,36.592,92.1842 +530269,31.693,95.8864 +530270,32.894,94.6337 +530271,34.086,93.4164 +530272,35.269,92.2324 +530273,30.314,95.8276 +530274,31.533,94.6118 +530275,32.743,93.4304 +530276,33.945,92.2815 +530277,28.935,95.7677 +530278,30.172,94.5896 +530279,31.4,93.4447 +530280,32.62,92.3314 +530281,27.558,95.707 +530282,28.812,94.567 +530283,30.057,93.4592 +530284,31.294,92.3821 +530285,26.182,95.6454 +530286,27.452,94.544 +530287,28.713,93.4739 +530288,29.967,92.4336 +530289,24.807,95.583 +530290,26.092,94.5208 +530291,27.37,93.4889 +530292,28.639,92.4858 +530293,23.432,95.5197 +530294,24.733,94.4972 +530295,26.025,93.504 +530296,27.31,92.5387 +530297,22.059,95.4557 +530298,23.374,94.4733 +530299,24.681,93.5193 +530300,25.98,92.5924 +530301,20.687,95.3909 +530302,22.015,94.4492 +530303,23.336,93.5348 +530304,24.649,92.6467 +530305,19.317,95.3254 +530306,20.657,94.4247 +530307,21.991,93.5504 +530308,23.316,92.7017 +530309,17.947,95.2592 +530310,19.299,94.4 +530311,20.645,93.5663 +530312,21.983,92.7573 +530313,16.578,95.1924 +530314,17.942,94.375 +530315,19.299,93.5822 +530316,20.649,92.8134 +530317,15.211,95.1249 +530318,16.585,94.3497 +530319,17.953,93.5983 +530320,19.313,92.8701 +530321,13.844,95.0569 +530322,15.228,94.3242 +530323,16.606,93.6146 +530324,17.977,92.9273 +530325,12.479,94.9883 +530326,13.872,94.2985 +530327,15.259,93.6309 +530328,16.639,92.9851 +530329,11.115,94.9192 +530330,12.516,94.2725 +530331,13.911,93.6474 +530332,15.3,93.0432 +530333,9.7523,94.8496 +530334,11.161,94.2464 +530335,12.564,93.6639 +530336,13.96,93.1018 +530337,8.3906,94.7796 +530338,9.8058,94.22 +530339,11.216,93.6806 +530340,12.619,93.1608 +530341,7.0301,94.7091 +530342,8.4512,94.1935 +530343,9.8669,93.6973 +530344,11.276,93.2202 +530345,5.6708,94.6383 +530346,7.0969,94.1667 +530347,8.518,93.7141 +530348,9.9329,93.2799 +530349,4.3126,94.5671 +530350,5.7431,94.1398 +530351,7.1687,93.7309 +530352,8.5882,93.34 +530353,2.9557,94.4956 +530354,4.3896,94.1128 +530355,5.819,93.7478 +530356,7.2424,93.4002 +530357,1.5999,94.4238 +530358,3.0366,94.0856 +530359,4.4689,93.7647 +530360,5.8954,93.4608 +530361,0.2453,94.3518 +530362,1.684,94.0583 +530363,3.1185,93.7816 +530364,4.5473,93.5215 +530365,358.89,94.2796 +530366,0.33177,94.0308 +530367,1.7676,93.7985 +530368,3.198,93.5824 +530369,357.54,94.2072 +530370,358.98,94.0033 +530371,0.41638,93.8155 +530372,1.8475,93.6435 +530373,356.19,94.1346 +530374,357.63,93.9756 +530375,359.06,93.8324 +530376,0.49581,93.7047 +530377,354.84,94.062 +530378,356.28,93.9479 +530379,357.71,93.8493 +530380,359.14,93.7659 +530381,353.49,93.9892 +530382,354.93,93.9201 +530383,356.36,93.8662 +530384,357.79,93.8272 +530385,352.14,93.9165 +530386,353.58,93.8922 +530387,355.01,93.883 +530388,356.43,93.8885 +530389,350.8,93.8437 +530390,352.23,93.8643 +530391,353.65,93.8997 +530392,355.08,93.9497 +530393,349.45,93.7709 +530394,350.88,93.8363 +530395,352.3,93.9164 +530396,353.72,94.011 +530397,348.11,93.6983 +530398,349.53,93.8083 +530399,350.95,93.933 +530400,352.36,94.0721 +530401,346.77,93.6257 +530402,348.18,93.7803 +530403,349.59,93.9496 +530404,351,94.1331 +530405,345.42,93.5532 +530406,346.83,93.7523 +530407,348.24,93.966 +530408,349.64,94.1939 +530409,344.08,93.4809 +530410,345.48,93.7243 +530411,346.88,93.9823 +530412,348.28,94.2546 +530413,342.74,93.4088 +530414,344.14,93.6963 +530415,345.53,93.9985 +530416,346.91,94.315 +530417,341.41,93.337 +530418,342.79,93.6683 +530419,344.17,94.0145 +530420,345.55,94.3752 +530421,340.07,93.2654 +530422,341.44,93.6404 +530423,342.82,94.0304 +530424,344.18,94.4351 +530425,338.73,93.194 +530426,340.1,93.6125 +530427,341.46,94.0462 +530428,342.82,94.4947 +530429,337.4,93.1231 +530430,338.75,93.5846 +530431,340.1,94.0617 +530432,341.45,94.5539 +530433,336.07,93.0525 +530434,337.41,93.5569 +530435,338.75,94.0771 +530436,340.08,94.6127 +530437,334.73,92.9822 +530438,336.06,93.5292 +530439,337.39,94.0923 +530440,338.71,94.6711 +530441,333.4,92.9124 +530442,334.72,93.5016 +530443,336.03,94.1073 +530444,337.34,94.729 +530445,332.07,92.8431 +530446,333.37,93.4742 +530447,334.67,94.1221 +530448,335.97,94.7864 +530449,330.74,92.7742 +530450,332.03,93.4468 +530451,333.31,94.1366 +530452,334.59,94.8434 +530453,329.41,92.7059 +530454,330.69,93.4196 +530455,331.95,94.151 +530456,333.22,94.8997 +530457,328.09,92.6381 +530458,329.34,93.3925 +530459,330.59,94.165 +530460,331.84,94.9555 +530461,326.76,92.5709 +530462,328,93.3655 +530463,329.23,94.1789 +530464,330.47,95.0107 +530465,325.44,92.5043 +530466,326.66,93.3387 +530467,327.87,94.1924 +530468,329.09,95.0652 +530469,324.11,92.4383 +530470,325.31,93.3121 +530471,326.51,94.2057 +530472,327.71,95.119 +530473,322.79,92.373 +530474,323.97,93.2856 +530475,325.15,94.2187 +530476,326.33,95.1721 +530477,321.47,92.3084 +530478,322.63,93.2593 +530479,323.79,94.2314 +530480,324.95,95.2245 +530481,320.15,92.2445 +530482,321.29,93.2333 +530483,322.43,94.2438 +530484,323.57,95.2761 +530485,318.83,92.1814 +530486,319.95,93.2074 +530487,321.07,94.2559 +530488,322.18,95.3269 +530489,317.51,92.119 +530490,318.61,93.1817 +530491,319.71,94.2676 +530492,320.8,95.3768 +530493,316.19,92.0574 +530494,317.27,93.1563 +530495,318.35,94.279 +530496,319.42,95.4259 +530497,314.87,91.9967 +530498,315.93,93.1311 +530499,316.98,94.2901 +530500,318.03,95.4741 +530501,313.56,91.9368 +530502,314.59,93.1062 +530503,315.62,94.3008 +530504,316.64,95.5214 +530505,312.24,91.8778 +530506,313.25,93.0815 +530507,314.26,94.3112 +530508,315.26,95.5677 +530509,310.93,91.8197 +530510,311.91,93.057 +530511,312.89,94.3212 +530512,313.87,95.613 +530513,309.61,91.7626 +530514,310.57,93.0328 +530515,311.53,94.3308 +530516,312.48,95.6573 +530517,308.3,91.7064 +530518,309.24,93.0089 +530519,310.17,94.34 +530520,311.09,95.7006 +530521,306.99,91.6512 +530522,307.9,92.9853 +530523,308.8,94.3488 +530524,309.7,95.7428 +530525,305.68,91.5969 +530526,306.56,92.962 +530527,307.44,94.3572 +530528,308.31,95.784 +530529,304.37,91.5437 +530530,305.22,92.939 +530531,306.07,94.3652 +530532,306.92,95.824 +530533,303.06,91.4916 +530534,303.89,92.9163 +530535,304.71,94.3728 +530536,305.52,95.8628 +530537,301.75,91.4405 +530538,302.55,92.8939 +530539,303.34,94.3799 +530540,304.13,95.9006 +530541,300.44,91.3905 +530542,301.21,92.8718 +530543,301.98,94.3866 +530544,302.74,95.9371 +530545,299.13,91.3416 +530546,299.88,92.8501 +530547,300.61,94.3929 +530548,301.34,95.9724 +530549,297.82,91.2938 +530550,298.54,92.8286 +530551,299.25,94.3987 +530552,299.95,96.0064 +530553,296.52,91.2472 +530554,297.2,92.8076 +530555,297.88,94.4041 +530556,298.55,96.0392 +530557,295.21,91.2017 +530558,295.87,92.7869 +530559,296.52,94.409 +530560,297.15,96.0708 +530561,293.91,91.1574 +530562,294.53,92.7665 +530563,295.15,94.4134 +530564,295.76,96.101 +530565,292.6,91.1143 +530566,293.2,92.7465 +530567,293.78,94.4173 +530568,294.36,96.1299 +530569,291.3,91.0724 +530570,291.86,92.7269 +530571,292.42,94.4208 +530572,292.96,96.1574 +530573,289.99,91.0317 +530574,290.53,92.7076 +530575,291.05,94.4237 +530576,291.56,96.1836 +530577,288.69,90.99233 +530578,289.19,92.6888 +530579,289.68,94.4262 +530580,290.16,96.2084 +530581,287.39,90.95417 +530582,287.86,92.6703 +530583,288.32,94.4281 +530584,288.76,96.2319 +530585,286.09,90.91729 +530586,286.52,92.6522 +530587,286.95,94.4296 +530588,287.36,96.2538 +530589,284.78,90.88169 +530590,285.19,92.6345 +530591,285.58,94.4305 +530592,285.96,96.2744 +530593,283.48,90.84738 +530594,283.86,92.6172 +530595,284.22,94.431 +530596,284.56,96.2935 +530597,282.18,90.81439 +530598,282.52,92.6003 +530599,282.85,94.4309 +530600,283.16,96.3112 +530601,280.88,90.78271 +530602,281.19,92.5838 +530603,281.48,94.4303 +530604,281.76,96.3273 +530605,279.58,90.75236 +530606,279.85,92.5677 +530607,280.11,94.4291 +530608,280.36,96.342 +530609,278.28,90.72336 +530610,278.52,92.552 +530611,278.75,94.4274 +530612,278.96,96.3551 +530613,276.98,90.6957 +530614,277.19,92.5367 +530615,277.38,94.4252 +530616,277.56,96.3668 +530617,275.68,90.6694 +530618,275.85,92.5219 +530619,276.01,94.4224 +530620,276.15,96.3769 +530621,274.38,90.64446 +530622,274.52,92.5075 +530623,274.64,94.4191 +530624,274.75,96.3855 +530625,273.08,90.6209 +530626,273.19,92.4935 +530627,273.28,94.4153 +530628,273.35,96.3925 +530629,271.78,90.59871 +530630,271.85,92.4799 +530631,271.91,94.4109 +530632,271.95,96.398 +530633,270.48,90.57791 +530634,270.52,92.4668 +530635,270.54,94.406 +530636,270.54,96.4019 +530637,269.18,90.55849 +530638,269.19,92.4541 +530639,269.17,94.4005 +530640,269.14,96.4042 +530641,267.88,90.54047 +530642,267.85,92.4419 +530643,267.81,94.3944 +530644,267.74,96.405 +530645,266.58,90.52384 +530646,266.52,92.43 +530647,266.44,94.3878 +530648,266.34,96.4041 +530649,265.28,90.50861 +530650,265.19,92.4186 +530651,265.07,94.3806 +530652,264.93,96.4017 +530653,263.99,90.49479 +530654,263.85,92.4077 +530655,263.7,94.3729 +530656,263.53,96.3977 +530657,262.69,90.48236 +530658,262.52,92.3972 +530659,262.34,94.3646 +530660,262.13,96.3921 +530661,261.39,90.47134 +530662,261.19,92.3871 +530663,260.97,94.3558 +530664,260.73,96.3849 +530665,260.09,90.46172 +530666,259.85,92.3775 +530667,259.6,94.3464 +530668,259.33,96.3761 +530669,258.79,90.45351 +530670,258.52,92.3683 +530671,258.23,94.3365 +530672,257.92,96.3656 +530673,257.49,90.44669 +530674,257.19,92.3595 +530675,256.87,94.3259 +530676,256.52,96.3536 +530677,256.19,90.44127 +530678,255.85,92.3512 +530679,255.5,94.3149 +530680,255.12,96.34 +530681,254.89,90.43725 +530682,254.52,92.3433 +530683,254.13,94.3032 +530684,253.72,96.3248 +530685,253.59,90.43462 +530686,253.19,92.3358 +530687,252.77,94.2911 +530688,252.32,96.308 +530689,252.29,90.43338 +530690,251.85,92.3288 +530691,251.4,94.2783 +530692,250.92,96.2896 +530693,250.99,90.43353 +530694,250.52,92.3222 +530695,250.03,94.265 +530696,249.52,96.2697 +530697,249.69,90.43505 +530698,249.19,92.3161 +530699,248.67,94.2512 +530700,248.12,96.2481 +530701,248.38,90.43794 +530702,247.85,92.3104 +530703,247.3,94.2368 +530704,246.72,96.225 +530705,247.08,90.44219 +530706,246.52,92.3051 +530707,245.93,94.2219 +530708,245.32,96.2003 +530709,245.78,90.4478 +530710,245.19,92.3002 +530711,244.57,94.2064 +530712,243.93,96.1741 +530713,244.48,90.45477 +530714,243.85,92.2957 +530715,243.2,94.1904 +530716,242.53,96.1463 +530717,243.17,90.46307 +530718,242.52,92.2917 +530719,241.84,94.1738 +530720,241.13,96.117 +530721,241.87,90.4727 +530722,241.18,92.2881 +530723,240.47,94.1567 +530724,239.73,96.0861 +530725,240.57,90.48364 +530726,239.85,92.2849 +530727,239.11,94.1391 +530728,238.34,96.0537 +530729,239.26,90.4959 +530730,238.51,92.2821 +530731,237.74,94.121 +530732,236.94,96.0199 +530733,237.96,90.50946 +530734,237.18,92.2797 +530735,236.38,94.1023 +530736,235.55,95.9845 +530737,236.65,90.5243 +530738,235.84,92.2777 +530739,235.01,94.0831 +530740,234.16,95.9477 +530741,235.34,90.54041 +530742,234.51,92.2761 +530743,233.65,94.0634 +530744,232.76,95.9094 +530745,234.04,90.55778 +530746,233.17,92.2749 +530747,232.28,94.0432 +530748,231.37,95.8697 +530749,232.73,90.57639 +530750,231.84,92.274 +530751,230.92,94.0225 +530752,229.98,95.8285 +530753,231.42,90.59623 +530754,230.5,92.2736 +530755,229.56,94.0013 +530756,228.59,95.7859 +530757,230.11,90.61729 +530758,229.16,92.2735 +530759,228.19,93.9796 +530760,227.2,95.742 +530761,228.8,90.63954 +530762,227.83,92.2738 +530763,226.83,93.9575 +530764,225.81,95.6966 +530765,227.49,90.66298 +530766,226.49,92.2745 +530767,225.47,93.9348 +530768,224.42,95.6499 +530769,226.18,90.68758 +530770,225.15,92.2755 +530771,224.11,93.9117 +530772,223.03,95.6019 +530773,224.87,90.71332 +530774,223.82,92.2769 +530775,222.74,93.8881 +530776,221.65,95.5526 +530777,223.55,90.7402 +530778,222.48,92.2787 +530779,221.38,93.864 +530780,220.26,95.5019 +530781,222.24,90.76818 +530782,221.14,92.2807 +530783,220.02,93.8395 +530784,218.87,95.45 +530785,220.93,90.79726 +530786,219.8,92.2831 +530787,218.66,93.8146 +530788,217.49,95.3969 +530789,219.61,90.8274 +530790,218.47,92.2859 +530791,217.3,93.7892 +530792,216.11,95.3425 +530793,218.29,90.85859 +530794,217.13,92.2889 +530795,215.94,93.7634 +530796,214.73,95.2869 +530797,216.98,90.89081 +530798,215.79,92.2923 +530799,214.58,93.7371 +530800,213.34,95.2301 +530801,215.66,90.92404 +530802,214.45,92.2959 +530803,213.22,93.7105 +530804,211.96,95.1722 +530805,214.34,90.95825 +530806,213.11,92.2999 +530807,211.86,93.6834 +530808,210.59,95.1132 +530809,213.02,90.99343 +530810,211.77,92.3041 +530811,210.5,93.656 +530812,209.21,95.0531 +530813,211.7,91.0295 +530814,210.43,92.3087 +530815,209.14,93.6281 +530816,207.83,94.9919 +530817,210.38,91.0666 +530818,209.09,92.3135 +530819,207.78,93.5999 +530820,206.45,94.9296 +530821,209.05,91.1045 +530822,207.75,92.3185 +530823,206.43,93.5713 +530824,205.08,94.8664 +530825,207.73,91.1433 +530826,206.41,92.3239 +530827,205.07,93.5423 +530828,203.71,94.8021 +530829,206.4,91.1829 +530830,205.07,92.3295 +530831,203.71,93.513 +530832,202.33,94.7369 +530833,205.08,91.2234 +530834,203.73,92.3353 +530835,202.36,93.4834 +530836,200.96,94.6708 +530837,203.75,91.2646 +530838,202.39,92.3413 +530839,201,93.4534 +530840,199.59,94.6037 +530841,202.42,91.3066 +530842,201.04,92.3476 +530843,199.64,93.4231 +530844,198.22,94.5358 +530845,201.09,91.3493 +530846,199.7,92.3541 +530847,198.29,93.3924 +530848,196.85,94.467 +530849,199.76,91.3928 +530850,198.36,92.3608 +530851,196.93,93.3615 +530852,195.49,94.3975 +530853,198.43,91.4369 +530854,197.01,92.3676 +530855,195.58,93.3303 +530856,194.12,94.3271 +530857,197.1,91.4817 +530858,195.67,92.3747 +530859,194.22,93.2987 +530860,192.76,94.256 +530861,195.77,91.5272 +530862,194.33,92.3819 +530863,192.87,93.2669 +530864,191.39,94.1842 +530865,194.43,91.5732 +530866,192.98,92.3893 +530867,191.52,93.2349 +530868,190.03,94.1118 +530869,193.09,91.6198 +530870,191.64,92.3969 +530871,190.16,93.2026 +530872,188.67,94.0386 +530873,191.76,91.6669 +530874,190.29,92.4046 +530875,188.81,93.17 +530876,187.31,93.9649 +530877,190.42,91.7146 +530878,188.95,92.4124 +530879,187.46,93.1372 +530880,185.95,93.8905 +530881,189.08,91.7627 +530882,187.6,92.4204 +530883,186.11,93.1042 +530884,184.6,93.8156 +530885,187.74,91.8113 +530886,186.26,92.4285 +530887,184.76,93.071 +530888,183.24,93.7402 +530889,186.4,91.8603 +530890,184.91,92.4367 +530891,183.41,93.0376 +530892,181.89,93.6643 +530893,185.05,91.9097 +530894,183.56,92.4449 +530895,182.05,93.0039 +530896,180.53,93.588 +530897,183.71,91.9595 +530898,182.21,92.4533 +530899,180.7,92.9701 +530900,179.18,93.5112 +530901,182.36,92.0096 +530902,180.87,92.4617 +530903,179.36,92.9362 +530904,177.83,93.4341 +530905,181.02,92.06 +530906,179.52,92.4702 +530907,178.01,92.9021 +530908,176.48,93.3566 +530909,179.67,92.1107 +530910,178.17,92.4788 +530911,176.66,92.8678 +530912,175.13,93.2788 +530913,178.32,92.1616 +530914,176.82,92.4874 +530915,175.31,92.8334 +530916,173.78,93.2007 +530917,176.97,92.2127 +530918,175.47,92.496 +530919,173.96,92.7989 +530920,172.44,93.1224 +530921,175.62,92.264 +530922,174.12,92.5046 +530923,172.61,92.7642 +530924,171.09,93.0438 +530925,174.27,92.3155 +530926,172.77,92.5133 +530927,171.27,92.7295 +530928,169.75,92.9651 +530929,172.91,92.367 +530930,171.42,92.5219 +530931,169.92,92.6947 +530932,168.41,92.8862 +530933,171.56,92.4187 +530934,170.07,92.5305 +530935,168.57,92.6598 +530936,167.07,92.8072 +530937,170.2,92.4704 +530938,168.72,92.5391 +530939,167.23,92.6248 +530940,165.73,92.7282 +530941,168.84,92.5221 +530942,167.37,92.5477 +530943,165.88,92.5898 +530944,164.39,92.6491 +530945,167.48,92.5737 +530946,166.02,92.5562 +530947,164.54,92.5547 +530948,163.05,92.57 +530949,166.12,92.6254 +530950,164.67,92.5647 +530951,163.2,92.5196 +530952,161.71,92.4909 +530953,164.76,92.6769 +530954,163.31,92.5731 +530955,161.85,92.4845 +530956,160.38,92.4119 +530957,163.4,92.7284 +530958,161.96,92.5814 +530959,160.51,92.4494 +530960,159.05,92.333 +530961,162.04,92.7797 +530962,160.61,92.5897 +530963,159.16,92.4142 +530964,157.71,92.2542 +530965,160.67,92.8308 +530966,159.25,92.5978 +530967,157.82,92.3791 +530968,156.38,92.1755 +530969,159.31,92.8817 +530970,157.9,92.6058 +530971,156.48,92.344 +530972,155.05,92.0971 +530973,157.94,92.9324 +530974,156.54,92.6137 +530975,155.14,92.309 +530976,153.72,92.0189 +530977,156.57,92.9828 +530978,155.19,92.6215 +530979,153.8,92.2739 +530980,152.4,91.9409 +530981,155.2,93.0329 +530982,153.83,92.6291 +530983,152.46,92.239 +530984,151.07,91.8633 +530985,153.83,93.0826 +530986,152.48,92.6366 +530987,151.12,92.2041 +530988,149.74,91.7859 +530989,152.46,93.132 +530990,151.12,92.6439 +530991,149.78,92.1693 +530992,148.42,91.709 +530993,151.09,93.181 +530994,149.77,92.651 +530995,148.44,92.1346 +530996,147.1,91.6324 +530997,149.71,93.2295 +530998,148.41,92.658 +530999,147.1,92.0999 +531000,145.77,91.5562 +531001,148.34,93.2776 +531002,147.05,92.6647 +531003,145.76,92.0654 +531004,144.45,91.4805 +531005,146.96,93.3252 +531006,145.7,92.6713 +531007,144.42,92.031 +531008,143.13,91.4053 +531009,145.59,93.3722 +531010,144.34,92.6776 +531011,143.08,91.9968 +531012,141.81,91.3306 +531013,144.21,93.4187 +531014,142.98,92.6837 +531015,141.74,91.9626 +531016,140.5,91.2564 +531017,142.83,93.4646 +531018,141.62,92.6896 +531019,140.41,91.9287 +531020,139.18,91.1828 +531021,141.45,93.5099 +531022,140.26,92.6952 +531023,139.07,91.8949 +531024,137.86,91.1098 +531025,140.07,93.5546 +531026,138.91,92.7006 +531027,137.73,91.8612 +531028,136.55,91.0375 +531029,138.69,93.5985 +531030,137.55,92.7056 +531031,136.4,91.8278 +531032,135.24,90.96578 +531033,137.3,93.6418 +531034,136.19,92.7105 +531035,135.06,91.7945 +531036,133.92,90.89477 +531037,135.92,93.6843 +531038,134.83,92.715 +531039,133.72,91.7615 +531040,132.61,90.82449 +531041,134.54,93.726 +531042,133.47,92.7192 +531043,132.39,91.7286 +531044,131.3,90.75495 +531045,133.15,93.767 +531046,132.11,92.7232 +531047,131.05,91.696 +531048,129.99,90.68618 +531049,131.76,93.8071 +531050,130.75,92.7268 +531051,129.72,91.6636 +531052,128.68,90.61821 +531053,130.38,93.8464 +531054,129.39,92.7301 +531055,128.38,91.6314 +531056,127.37,90.55106 +531057,128.99,93.8848 +531058,128.03,92.733 +531059,127.05,91.5995 +531060,126.06,90.48477 +531061,127.6,93.9223 +531062,126.66,92.7356 +531063,125.72,91.5678 +531064,124.76,90.41935 +531065,126.21,93.9588 +531066,125.3,92.7379 +531067,124.38,91.5364 +531068,123.45,90.35484 +531069,124.82,93.9944 +531070,123.94,92.7398 +531071,123.05,91.5053 +531072,122.15,90.29124 +531073,123.43,94.029 +531074,122.58,92.7414 +531075,121.72,91.4745 +531076,120.84,90.2286 +531077,122.04,94.0626 +531078,121.22,92.7425 +531079,120.39,91.4439 +531080,119.54,90.16693 +531081,120.64,94.0952 +531082,119.85,92.7433 +531083,119.05,91.4137 +531084,118.24,90.10625 +531085,119.25,94.1266 +531086,118.49,92.7437 +531087,117.72,91.3837 +531088,116.94,90.046585 +531089,117.86,94.157 +531090,117.13,92.7437 +531091,116.39,91.3541 +531092,115.63,89.98796 +531093,116.46,94.1863 +531094,115.77,92.7433 +531095,115.06,91.3248 +531096,114.33,89.930392 +531097,115.06,94.2145 +531098,114.4,92.7425 +531099,113.73,91.2958 +531100,113.03,89.8739 +531101,113.67,94.2415 +531102,113.04,92.7412 +531103,112.4,91.2671 +531104,111.73,89.81851 +531105,112.27,94.2673 +531106,111.68,92.7396 +531107,111.06,91.2388 +531108,110.44,89.76424 +531109,110.88,94.292 +531110,110.31,92.7375 +531111,109.73,91.2108 +531112,109.14,89.7111 +531113,109.48,94.3154 +531114,108.95,92.7349 +531115,108.4,91.1832 +531116,107.84,89.65911 +531117,108.08,94.3375 +531118,107.59,92.732 +531119,107.07,91.156 +531120,106.54,89.6083 +531121,106.68,94.3584 +531122,106.22,92.7285 +531123,105.74,91.1291 +531124,105.25,89.55867 +531125,105.28,94.3781 +531126,104.86,92.7246 +531127,104.41,91.1026 +531128,103.95,89.51024 +531129,103.88,94.3964 +531130,103.49,92.7203 +531131,103.08,91.0764 +531132,102.65,89.46303 +531133,102.48,94.4134 +531134,102.13,92.7155 +531135,101.75,91.0506 +531136,101.36,89.41706 +531137,101.08,94.4291 +531138,100.77,92.7102 +531139,100.42,91.0253 +531140,100.06,89.37233 +531141,99.683,94.4434 +531142,99.401,92.7044 +531143,99.096,91.0003 +531144,98.769,89.32886 +531145,98.283,94.4564 +531146,98.037,92.6981 +531147,97.766,90.9757 +531148,97.475,89.28667 +531149,96.882,94.4679 +531150,96.672,92.6914 +531151,96.437,90.95151 +531152,96.181,89.24576 +531153,95.481,94.4781 +531154,95.308,92.6841 +531155,95.109,90.92773 +531156,94.887,89.20614 +531157,94.08,94.4869 +531158,93.943,92.6764 +531159,93.78,90.90436 +531160,93.593,89.16784 +531161,92.679,94.4943 +531162,92.578,92.6681 +531163,92.451,90.88139 +531164,92.3,89.13085 +531165,91.277,94.5002 +531166,91.214,92.6594 +531167,91.123,90.85885 +531168,91.007,89.09518 +531169,89.876,94.5047 +531170,89.849,92.6501 +531171,89.794,90.83672 +531172,89.714,89.06085 +531173,88.474,94.5077 +531174,88.484,92.6404 +531175,88.466,90.81502 +531176,88.422,89.02786 +531177,87.072,94.5092 +531178,87.12,92.6301 +531179,87.138,90.79374 +531180,87.129,88.9962 +531181,85.671,94.5093 +531182,85.755,92.6193 +531183,85.809,90.77289 +531184,85.837,88.9659 +531185,84.269,94.5079 +531186,84.391,92.608 +531187,84.481,90.75247 +531188,84.544,88.937 +531189,82.868,94.505 +531190,83.026,92.5962 +531191,83.153,90.73247 +531192,83.252,88.9095 +531193,81.466,94.5006 +531194,81.662,92.5838 +531195,81.825,90.71292 +531196,81.959,88.8833 +531197,80.065,94.4947 +531198,80.297,92.5709 +531199,80.496,90.69379 +531200,80.667,88.8585 +531201,78.664,94.4872 +531202,78.933,92.5575 +531203,79.168,90.67511 +531204,79.374,88.8351 +531205,77.263,94.4783 +531206,77.568,92.5436 +531207,77.84,90.65686 +531208,78.082,88.813 +531209,75.862,94.4678 +531210,76.204,92.5291 +531211,76.512,90.63905 +531212,76.789,88.7924 +531213,74.461,94.4559 +531214,74.84,92.5141 +531215,75.184,90.62168 +531216,75.496,88.7731 +531217,73.061,94.4423 +531218,73.476,92.4986 +531219,73.855,90.60475 +531220,74.203,88.7552 +531221,71.661,94.4273 +531222,72.112,92.4826 +531223,72.527,90.58825 +531224,72.91,88.7387 +531225,70.261,94.4107 +531226,70.749,92.466 +531227,71.199,90.5722 +531228,71.616,88.7235 +531229,68.862,94.3927 +531230,69.385,92.4489 +531231,69.87,90.55658 +531232,70.323,88.7098 +531233,67.463,94.373 +531234,68.022,92.4313 +531235,68.542,90.54141 +531236,69.029,88.6974 +531237,66.065,94.3519 +531238,66.658,92.4131 +531239,67.213,90.52667 +531240,67.734,88.6864 +531241,64.667,94.3292 +531242,65.295,92.3944 +531243,65.884,90.51236 +531244,66.44,88.6768 +531245,63.269,94.305 +531246,63.932,92.3752 +531247,64.556,90.49849 +531248,65.145,88.6685 +531249,61.872,94.2793 +531250,62.57,92.3555 +531251,63.227,90.48506 +531252,63.849,88.6616 +531253,60.476,94.2521 +531254,61.207,92.3353 +531255,61.898,90.47205 +531256,62.554,88.6561 +531257,59.08,94.2234 +531258,59.845,92.3145 +531259,60.569,90.45948 +531260,61.257,88.6519 +531261,57.685,94.1932 +531262,58.483,92.2932 +531263,59.239,90.44733 +531264,59.961,88.649 +531265,56.29,94.1615 +531266,57.121,92.2714 +531267,57.91,90.43561 +531268,58.663,88.6475 +531269,54.896,94.1283 +531270,55.759,92.2491 +531271,56.58,90.42431 +531272,57.366,88.6473 +531273,53.503,94.0937 +531274,54.398,92.2263 +531275,55.251,90.41342 +531276,56.067,88.6484 +531277,52.11,94.0576 +531278,53.037,92.203 +531279,53.921,90.40295 +531280,54.769,88.6508 +531281,50.718,94.02 +531282,51.676,92.1792 +531283,52.591,90.3929 +531284,53.469,88.6545 +531285,49.327,93.981 +531286,50.315,92.1549 +531287,51.26,90.38325 +531288,52.169,88.6595 +531289,47.936,93.9406 +531290,48.955,92.1301 +531291,49.93,90.37401 +531292,50.868,88.6658 +531293,46.547,93.8988 +531294,47.595,92.1048 +531295,48.599,90.36517 +531296,49.567,88.6733 +531297,45.158,93.8555 +531298,46.235,92.0791 +531299,47.268,90.35672 +531300,48.265,88.682 +531301,43.77,93.8109 +531302,44.875,92.0528 +531303,45.937,90.34867 +531304,46.962,88.692 +531305,42.383,93.7649 +531306,43.516,92.0261 +531307,44.606,90.341 +531308,45.659,88.7032 +531309,40.997,93.7176 +531310,42.157,91.9989 +531311,43.274,90.33371 +531312,44.354,88.7156 +531313,39.612,93.6689 +531314,40.799,91.9713 +531315,41.942,90.3268 +531316,43.049,88.7292 +531317,38.228,93.6189 +531318,39.441,91.9432 +531319,40.61,90.32027 +531320,41.743,88.744 +531321,36.844,93.5676 +531322,38.083,91.9146 +531323,39.278,90.31409 +531324,40.437,88.7599 +531325,35.462,93.515 +531326,36.725,91.8856 +531327,37.946,90.30828 +531328,39.129,88.777 +531329,34.081,93.4612 +531330,35.368,91.8562 +531331,36.613,90.30282 +531332,37.821,88.7952 +531333,32.701,93.4061 +531334,34.011,91.8263 +531335,35.28,90.29771 +531336,36.511,88.8144 +531337,31.321,93.3498 +531338,32.655,91.796 +531339,33.946,90.29294 +531340,35.201,88.8348 +531341,29.943,93.2923 +531342,31.299,91.7653 +531343,32.612,90.28851 +531344,33.89,88.8562 +531345,28.566,93.2336 +531346,29.943,91.7342 +531347,31.278,90.2844 +531348,32.578,88.8786 +531349,27.19,93.1737 +531350,28.588,91.7027 +531351,29.944,90.28061 +531352,31.265,88.9021 +531353,25.815,93.1128 +531354,27.233,91.6708 +531355,28.61,90.27714 +531356,29.951,88.9266 +531357,24.442,93.0507 +531358,25.879,91.6385 +531359,27.275,90.27398 +531360,28.635,88.952 +531361,23.069,92.9875 +531362,24.524,91.6058 +531363,25.939,90.27111 +531364,27.319,88.9785 +531365,21.698,92.9233 +531366,23.171,91.5728 +531367,24.604,90.26854 +531368,26.002,89.0058 +531369,20.327,92.8581 +531370,21.817,91.5394 +531371,23.268,90.26625 +531372,24.684,89.03405 +531373,18.958,92.7918 +531374,20.465,91.5056 +531375,21.932,90.26423 +531376,23.365,89.06319 +531377,17.59,92.7246 +531378,19.112,91.4715 +531379,20.595,90.26249 +531380,22.044,89.0932 +531381,16.224,92.6564 +531382,17.76,91.437 +531383,19.258,90.261 +531384,20.723,89.12404 +531385,14.858,92.5873 +531386,16.408,91.4023 +531387,17.921,90.25977 +531388,19.4,89.1557 +531389,13.494,92.5173 +531390,15.057,91.3672 +531391,16.583,90.25877 +531392,18.077,89.18814 +531393,12.131,92.4464 +531394,13.707,91.3318 +531395,15.245,90.25802 +531396,16.752,89.22136 +531397,10.77,92.3747 +531398,12.356,91.2961 +531399,13.907,90.25748 +531400,15.426,89.25531 +531401,9.4094,92.3022 +531402,11.006,91.2601 +531403,12.568,90.25717 +531404,14.099,89.28997 +531405,8.0503,92.2289 +531406,9.6571,91.2238 +531407,11.229,90.25706 +531408,12.77,89.32532 +531409,6.6925,92.1549 +531410,8.3081,91.1873 +531411,9.8898,90.25715 +531412,11.441,89.36133 +531413,5.336,92.0801 +531414,6.9597,91.1504 +531415,8.55,90.25743 +531416,10.11,89.39797 +531417,3.9808,92.0047 +531418,5.6116,91.1134 +531419,7.2098,90.25789 +531420,8.7781,89.43521 +531421,2.6268,91.9286 +531422,4.2641,91.0761 +531423,5.8692,90.25852 +531424,7.445,89.47303 +531425,1.2742,91.8519 +531426,2.917,91.0385 +531427,4.5283,90.25931 +531428,6.1106,89.5114 +531429,359.92,91.7746 +531430,1.5703,91.0008 +531431,3.1869,90.26025 +531432,4.7751,89.55029 +531433,358.57,91.6967 +531434,0.22413,90.96283 +531435,1.8452,90.26133 +531436,3.4383,89.58967 +531437,357.22,91.6183 +531438,358.88,90.92466 +531439,0.50311,90.26254 +531440,2.1002,89.62952 +531441,355.88,91.5394 +531442,357.53,90.8863 +531443,359.16,90.26388 +531444,0.76098,89.6698 +531445,354.53,91.46 +531446,356.19,90.84777 +531447,357.82,90.26533 +531448,359.42,89.71048 +531449,353.19,91.3802 +531450,354.84,90.80907 +531451,356.47,90.26687 +531452,358.08,89.75154 +531453,351.84,91.3 +531454,353.5,90.7702 +531455,355.13,90.26851 +531456,356.74,89.79294 +531457,350.5,91.2195 +531458,352.16,90.7312 +531459,353.79,90.27023 +531460,355.39,89.83466 +531461,349.16,91.1386 +531462,350.81,90.69205 +531463,352.44,90.27202 +531464,354.05,89.87666 +531465,347.82,91.0574 +531466,349.47,90.65278 +531467,351.1,90.27387 +531468,352.7,89.918921 +531469,346.48,90.97599 +531470,348.13,90.61339 +531471,349.75,90.27578 +531472,351.35,89.961405 +531473,345.15,90.89432 +531474,346.79,90.57391 +531475,348.41,90.27772 +531476,350,90.004083 +531477,343.81,90.81245 +531478,345.45,90.53432 +531479,347.06,90.27969 +531480,348.65,90.046925 +531481,342.48,90.73041 +531482,344.11,90.49466 +531483,345.71,90.28168 +531484,347.3,90.0899 +531485,341.14,90.64825 +531486,342.77,90.45493 +531487,344.37,90.28368 +531488,345.95,90.13298 +531489,339.81,90.56599 +531490,341.43,90.41513 +531491,343.02,90.28567 +531492,344.59,90.17613 +531493,338.48,90.48366 +531494,340.09,90.37529 +531495,341.67,90.28766 +531496,343.24,90.21932 +531497,337.15,90.40131 +531498,338.75,90.33541 +531499,340.32,90.28962 +531500,341.88,90.26252 +531501,335.83,90.31896 +531502,337.41,90.29551 +531503,338.98,90.29155 +531504,340.52,90.30569 +531505,334.5,90.23665 +531506,336.07,90.25558 +531507,337.63,90.29343 +531508,339.16,90.34882 +531509,333.17,90.1544 +531510,334.74,90.21566 +531511,336.28,90.29526 +531512,337.8,90.39186 +531513,331.85,90.072267 +531514,333.4,90.17574 +531515,334.93,90.29702 +531516,336.44,90.43479 +531517,330.53,89.990265 +531518,332.06,90.13583 +531519,333.58,90.29871 +531520,335.08,90.47758 +531521,329.21,89.908433 +531522,330.73,90.09596 +531523,332.23,90.30031 +531524,333.71,90.52018 +531525,327.89,89.8268 +531526,329.39,90.056124 +531527,330.88,90.30182 +531528,332.35,90.56259 +531529,326.57,89.74541 +531530,328.06,90.016338 +531531,329.53,90.30322 +531532,330.98,90.60475 +531533,325.25,89.66428 +531534,326.72,89.976612 +531535,328.18,90.3045 +531536,329.61,90.64665 +531537,323.93,89.58345 +531538,325.39,89.936957 +531539,326.82,90.30566 +531540,328.24,90.68825 +531541,322.62,89.50295 +531542,324.05,89.89738 +531543,325.47,90.30667 +531544,326.87,90.72952 +531545,321.3,89.42281 +531546,322.72,89.8579 +531547,324.12,90.30754 +531548,325.5,90.77043 +531549,319.99,89.34307 +531550,321.39,89.81853 +531551,322.77,90.30825 +531552,324.13,90.81095 +531553,318.68,89.26375 +531554,320.05,89.77926 +531555,321.41,90.3088 +531556,322.76,90.85105 +531557,317.37,89.18488 +531558,318.72,89.74012 +531559,320.06,90.30916 +531560,321.38,90.8907 +531561,316.06,89.1065 +531562,317.39,89.70111 +531563,318.71,90.30934 +531564,320.01,90.92988 +531565,314.75,89.02864 +531566,316.06,89.66225 +531567,317.35,90.30932 +531568,318.63,90.96855 +531569,313.44,88.9513 +531570,314.73,89.62354 +531571,316,90.3091 +531572,317.25,91.0067 +531573,312.13,88.8746 +531574,313.4,89.58499 +531575,314.64,90.30865 +531576,315.88,91.0442 +531577,310.83,88.7984 +531578,312.07,89.54662 +531579,313.29,90.30798 +531580,314.5,91.0812 +531581,309.52,88.7229 +531582,310.74,89.50843 +531583,311.93,90.30708 +531584,313.12,91.1176 +531585,308.22,88.6481 +531586,309.41,89.47043 +531587,310.58,90.30592 +531588,311.73,91.1532 +531589,306.92,88.5739 +531590,308.08,89.43264 +531591,309.22,90.30452 +531592,310.35,91.1883 +531593,305.62,88.5005 +531594,306.75,89.39506 +531595,307.87,90.30285 +531596,308.97,91.2226 +531597,304.32,88.4278 +531598,305.42,89.35769 +531599,306.51,90.30091 +531600,307.58,91.2561 +531601,303.02,88.3559 +531602,304.09,89.32056 +531603,305.15,90.29868 +531604,306.2,91.289 +531605,301.72,88.2847 +531606,302.77,89.28367 +531607,303.8,90.29617 +531608,304.81,91.321 +531609,300.42,88.2144 +531610,301.44,89.24702 +531611,302.44,90.29335 +531612,303.42,91.3522 +531613,299.12,88.1449 +531614,300.11,89.21063 +531615,301.08,90.29023 +531616,302.04,91.3826 +531617,297.83,88.0763 +531618,298.78,89.17451 +531619,299.72,90.2868 +531620,300.65,91.4121 +531621,296.53,88.0086 +531622,297.46,89.13865 +531623,298.37,90.28304 +531624,299.26,91.4407 +531625,295.24,87.9419 +531626,296.13,89.10308 +531627,297.01,90.27894 +531628,297.87,91.4684 +531629,293.94,87.876 +531630,294.81,89.0678 +531631,295.65,90.27451 +531632,296.48,91.4952 +531633,292.65,87.8111 +531634,293.48,89.03281 +531635,294.29,90.26973 +531636,295.09,91.521 +531637,291.36,87.7472 +531638,292.15,88.9981 +531639,292.93,90.2646 +531640,293.69,91.5458 +531641,290.07,87.6844 +531642,290.83,88.9638 +531643,291.57,90.2591 +531644,292.3,91.5696 +531645,288.77,87.6225 +531646,289.5,88.9297 +531647,290.22,90.25324 +531648,290.91,91.5923 +531649,287.48,87.5617 +531650,288.18,88.896 +531651,288.86,90.24699 +531652,289.51,91.6141 +531653,286.19,87.5019 +531654,286.86,88.8626 +531655,287.5,90.24037 +531656,288.12,91.6347 +531657,284.9,87.4433 +531658,285.53,88.8295 +531659,286.14,90.23335 +531660,286.72,91.6542 +531661,283.62,87.3857 +531662,284.21,88.7968 +531663,284.78,90.22594 +531664,285.33,91.6727 +531665,282.33,87.3293 +531666,282.88,88.7645 +531667,283.42,90.21812 +531668,283.93,91.69 +531669,281.04,87.274 +531670,281.56,88.7325 +531671,282.06,90.2099 +531672,282.53,91.7061 +531673,279.75,87.2199 +531674,280.24,88.7008 +531675,280.7,90.20126 +531676,281.14,91.7211 +531677,278.47,87.1669 +531678,278.91,88.6696 +531679,279.34,90.1922 +531680,279.74,91.7348 +531681,277.18,87.1152 +531682,277.59,88.6387 +531683,277.98,90.18272 +531684,278.34,91.7474 +531685,275.89,87.0646 +531686,276.27,88.6082 +531687,276.62,90.1728 +531688,276.94,91.7587 +531689,274.61,87.0153 +531690,274.94,88.578 +531691,275.26,90.16245 +531692,275.54,91.7688 +531693,273.32,86.9672 +531694,273.62,88.5483 +531695,273.9,90.15165 +531696,274.14,91.7777 +531697,272.04,86.9203 +531698,272.3,88.519 +531699,272.54,90.14041 +531700,272.74,91.7852 +531701,270.75,86.8747 +531702,270.98,88.49 +531703,271.18,90.12872 +531704,271.34,91.7915 +531705,269.47,86.8303 +531706,269.66,88.4615 +531707,269.81,90.11658 +531708,269.94,91.7965 +531709,268.18,86.7872 +531710,268.33,88.4334 +531711,268.45,90.10397 +531712,268.54,91.8001 +531713,266.9,86.7455 +531714,267.01,88.4057 +531715,267.09,90.090908 +531716,267.14,91.8024 +531717,265.62,86.705 +531718,265.69,88.3783 +531719,265.73,90.077377 +531720,265.74,91.8034 +531721,264.33,86.6658 +531722,264.37,88.3515 +531723,264.37,90.063377 +531724,264.34,91.803 +531725,263.05,86.6279 +531726,263.05,88.325 +531727,263.01,90.048906 +531728,262.94,91.8013 +531729,261.77,86.5914 +531730,261.72,88.299 +531731,261.65,90.033959 +531732,261.54,91.7982 +531733,260.48,86.5562 +531734,260.4,88.2733 +531735,260.29,90.018535 +531736,260.14,91.7937 +531737,259.2,86.5223 +531738,259.08,88.2482 +531739,258.93,90.0026309 +531740,258.74,91.7878 +531741,257.91,86.4897 +531742,257.76,88.2234 +531743,257.57,89.986245 +531744,257.34,91.7805 +531745,256.63,86.4585 +531746,256.44,88.1991 +531747,256.21,89.969375 +531748,255.94,91.7719 +531749,255.35,86.4287 +531750,255.12,88.1752 +531751,254.85,89.95202 +531752,254.54,91.7618 +531753,254.06,86.4002 +531754,253.79,88.1517 +531755,253.49,89.934178 +531756,253.15,91.7502 +531757,252.78,86.373 +531758,252.47,88.1287 +531759,252.13,89.915848 +531760,251.75,91.7373 +531761,251.5,86.3472 +531762,251.15,88.1061 +531763,250.77,89.89703 +531764,250.35,91.723 +531765,250.21,86.3227 +531766,249.83,88.084 +531767,249.41,89.87772 +531768,248.95,91.7072 +531769,248.93,86.2997 +531770,248.51,88.0623 +531771,248.05,89.85792 +531772,247.55,91.6899 +531773,247.64,86.2779 +531774,247.19,88.041 +531775,246.69,89.83763 +531776,246.15,91.6713 +531777,246.36,86.2575 +531778,245.86,88.0202 +531779,245.33,89.81685 +531780,244.75,91.6512 +531781,245.07,86.2385 +531782,244.54,87.9998 +531783,243.97,89.79558 +531784,243.36,91.6297 +531785,243.79,86.2208 +531786,243.22,87.9798 +531787,242.61,89.77382 +531788,241.96,91.6067 +531789,242.5,86.2045 +531790,241.9,87.9603 +531791,241.25,89.75157 +531792,240.56,91.5823 +531793,241.21,86.1895 +531794,240.58,87.9412 +531795,239.9,89.72884 +531796,239.17,91.5565 +531797,239.93,86.1758 +531798,239.25,87.9226 +531799,238.54,89.70562 +531800,237.77,91.5292 +531801,238.64,86.1635 +531802,237.93,87.9043 +531803,237.18,89.68191 +531804,236.38,91.5006 +531805,237.35,86.1525 +531806,236.61,87.8865 +531807,235.82,89.65772 +531808,234.98,91.4705 +531809,236.06,86.1428 +531810,235.29,87.8692 +531811,234.46,89.63305 +531812,233.59,91.4389 +531813,234.78,86.1345 +531814,233.96,87.8523 +531815,233.11,89.6079 +531816,232.2,91.406 +531817,233.49,86.1274 +531818,232.64,87.8358 +531819,231.75,89.58227 +531820,230.81,91.3717 +531821,232.2,86.1217 +531822,231.32,87.8197 +531823,230.39,89.55617 +531824,229.41,91.336 +531825,230.91,86.1172 +531826,229.99,87.804 +531827,229.03,89.5296 +531828,228.02,91.2988 +531829,229.62,86.114 +531830,228.67,87.7888 +531831,227.68,89.50256 +531832,226.63,91.2603 +531833,228.32,86.1121 +531834,227.35,87.7739 +531835,226.32,89.47506 +531836,225.24,91.2205 +531837,227.03,86.1114 +531838,226.02,87.7595 +531839,224.97,89.44709 +531840,223.86,91.1792 +531841,225.74,86.112 +531842,224.7,87.7455 +531843,223.61,89.41867 +531844,222.47,91.1367 +531845,224.44,86.1138 +531846,223.37,87.7319 +531847,222.25,89.3898 +531848,221.08,91.0927 +531849,223.15,86.1168 +531850,222.05,87.7186 +531851,220.9,89.36048 +531852,219.7,91.0475 +531853,221.85,86.121 +531854,220.72,87.7058 +531855,219.54,89.33071 +531856,218.31,91.0009 +531857,220.56,86.1265 +531858,219.4,87.6934 +531859,218.19,89.3005 +531860,216.93,90.95309 +531861,219.26,86.133 +531862,218.07,87.6813 +531863,216.84,89.26987 +531864,215.55,90.90395 +531865,217.96,86.1408 +531866,216.75,87.6696 +531867,215.48,89.2388 +531868,214.16,90.85355 +531869,216.66,86.1497 +531870,215.42,87.6583 +531871,214.13,89.20731 +531872,212.78,90.80189 +531873,215.37,86.1597 +531874,214.09,87.6474 +531875,212.78,89.1754 +531876,211.4,90.749 +531877,214.06,86.1709 +531878,212.77,87.6368 +531879,211.42,89.14307 +531880,210.03,90.69488 +531881,212.76,86.1831 +531882,211.44,87.6266 +531883,210.07,89.11035 +531884,208.65,90.63957 +531885,211.46,86.1964 +531886,210.11,87.6167 +531887,208.72,89.07722 +531888,207.27,90.58308 +531889,210.16,86.2108 +531890,208.79,87.6072 +531891,207.37,89.0437 +531892,205.9,90.52542 +531893,208.85,86.2262 +531894,207.46,87.598 +531895,206.02,89.00979 +531896,204.52,90.46662 +531897,207.55,86.2426 +531898,206.13,87.5892 +531899,204.67,88.9755 +531900,203.15,90.4067 +531901,206.24,86.26 +531902,204.8,87.5806 +531903,203.32,88.9408 +531904,201.78,90.34567 +531905,204.93,86.2785 +531906,203.47,87.5724 +531907,201.97,88.9058 +531908,200.41,90.28357 +531909,203.62,86.2978 +531910,202.14,87.5645 +531911,200.62,88.8704 +531912,199.04,90.22041 +531913,202.32,86.3181 +531914,200.82,87.5569 +531915,199.27,88.8347 +531916,197.67,90.15622 +531917,201,86.3393 +531918,199.49,87.5496 +531919,197.92,88.7986 +531920,196.3,90.091013 +531921,199.69,86.3614 +531922,198.16,87.5426 +531923,196.57,88.7622 +531924,194.94,90.024821 +531925,198.38,86.3844 +531926,196.83,87.5359 +531927,195.23,88.7255 +531928,193.57,89.957667 +531929,197.06,86.4082 +531930,195.49,87.5294 +531931,193.88,88.6884 +531932,192.21,89.88957 +531933,195.75,86.4328 +531934,194.16,87.5232 +531935,192.53,88.651 +531936,190.85,89.82057 +531937,194.43,86.4582 +531938,192.83,87.5173 +531939,191.19,88.6134 +531940,189.49,89.75068 +531941,193.12,86.4844 +531942,191.5,87.5116 +531943,189.84,88.5754 +531944,188.13,89.67993 +531945,191.8,86.5114 +531946,190.17,87.5062 +531947,188.5,88.5371 +531948,186.77,89.60835 +531949,190.48,86.539 +531950,188.84,87.501 +531951,187.15,88.4986 +531952,185.42,89.53596 +531953,189.15,86.5674 +531954,187.5,87.496 +531955,185.81,88.4598 +531956,184.06,89.4628 +531957,187.83,86.5964 +531958,186.17,87.4912 +531959,184.46,88.4208 +531960,182.71,89.38889 +531961,186.51,86.6261 +531962,184.83,87.4867 +531963,183.12,88.3815 +531964,181.35,89.31425 +531965,185.18,86.6564 +531966,183.5,87.4823 +531967,181.78,88.3419 +531968,180,89.23892 +531969,183.86,86.6873 +531970,182.17,87.4781 +531971,180.43,88.3021 +531972,178.65,89.16293 +531973,182.53,86.7187 +531974,180.83,87.4741 +531975,179.09,88.2622 +531976,177.31,89.08631 +531977,181.2,86.7507 +531978,179.5,87.4703 +531979,177.75,88.222 +531980,175.96,89.00908 +531981,179.87,86.7832 +531982,178.16,87.4666 +531983,176.41,88.1816 +531984,174.61,88.9313 +531985,178.54,86.8162 +531986,176.82,87.4631 +531987,175.07,88.141 +531988,173.27,88.8529 +531989,177.2,86.8496 +531990,175.49,87.4597 +531991,173.73,88.1002 +531992,171.93,88.7741 +531993,175.87,86.8835 +531994,174.15,87.4565 +531995,172.39,88.0592 +531996,170.59,88.6948 +531997,174.53,86.9178 +531998,172.81,87.4534 +531999,171.05,88.0181 +532000,169.25,88.615 +532001,173.2,86.9524 +532002,171.47,87.4504 +532003,169.71,87.9769 +532004,167.91,88.5348 +532005,171.86,86.9873 +532006,170.14,87.4475 +532007,168.37,87.9355 +532008,166.57,88.4542 +532009,170.52,87.0226 +532010,168.8,87.4447 +532011,167.04,87.894 +532012,165.24,88.3732 +532013,169.18,87.0582 +532014,167.46,87.4419 +532015,165.7,87.8523 +532016,163.9,88.292 +532017,167.84,87.094 +532018,166.12,87.4393 +532019,164.36,87.8106 +532020,162.57,88.2104 +532021,166.49,87.13 +532022,164.78,87.4367 +532023,163.03,87.7687 +532024,161.24,88.1286 +532025,165.15,87.1662 +532026,163.44,87.4342 +532027,161.69,87.7268 +532028,159.91,88.0465 +532029,163.8,87.2026 +532030,162.1,87.4317 +532031,160.36,87.6848 +532032,158.58,87.9643 +532033,162.45,87.2391 +532034,160.76,87.4292 +532035,159.02,87.6427 +532036,157.26,87.8819 +532037,161.11,87.2758 +532038,159.41,87.4268 +532039,157.69,87.6006 +532040,155.93,87.7993 +532041,159.76,87.3125 +532042,158.07,87.4244 +532043,156.36,87.5584 +532044,154.61,87.7167 +532045,158.4,87.3492 +532046,156.73,87.4219 +532047,155.02,87.5162 +532048,153.28,87.634 +532049,157.05,87.386 +532050,155.39,87.4195 +532051,153.69,87.4739 +532052,151.96,87.5513 +532053,155.7,87.4227 +532054,154.04,87.4171 +532055,152.36,87.4317 +532056,150.64,87.4685 +532057,154.34,87.4594 +532058,152.7,87.4146 +532059,151.03,87.3894 +532060,149.32,87.3858 +532061,152.99,87.4961 +532062,151.36,87.4121 +532063,149.7,87.3472 +532064,148.01,87.3032 +532065,151.63,87.5326 +532066,150.01,87.4096 +532067,148.37,87.3049 +532068,146.69,87.2207 +532069,150.27,87.569 +532070,148.67,87.4069 +532071,147.04,87.2627 +532072,145.38,87.1382 +532073,148.91,87.6052 +532074,147.32,87.4043 +532075,145.71,87.2206 +532076,144.06,87.056 +532077,147.55,87.6413 +532078,145.98,87.4015 +532079,144.38,87.1785 +532080,142.75,86.9739 +532081,146.18,87.6771 +532082,144.63,87.3987 +532083,143.05,87.1364 +532084,141.44,86.8921 +532085,144.82,87.7127 +532086,143.28,87.3957 +532087,141.72,87.0944 +532088,140.13,86.8105 +532089,143.45,87.748 +532090,141.94,87.3927 +532091,140.39,87.0525 +532092,138.82,86.7292 +532093,142.09,87.783 +532094,140.59,87.3895 +532095,139.07,87.0107 +532096,137.52,86.6482 +532097,140.72,87.8176 +532098,139.24,87.3862 +532099,137.74,86.969 +532100,136.21,86.5676 +532101,139.35,87.8519 +532102,137.89,87.3828 +532103,136.41,86.9274 +532104,134.91,86.4873 +532105,137.98,87.8858 +532106,136.55,87.3792 +532107,135.09,86.8859 +532108,133.6,86.4075 +532109,136.61,87.9193 +532110,135.2,87.3755 +532111,133.76,86.8446 +532112,132.3,86.3281 +532113,135.24,87.9523 +532114,133.85,87.3716 +532115,132.44,86.8033 +532116,131,86.2492 +532117,133.86,87.9848 +532118,132.5,87.3675 +532119,131.11,86.7623 +532120,129.7,86.1707 +532121,132.49,88.0168 +532122,131.15,87.3633 +532123,129.79,86.7214 +532124,128.4,86.0928 +532125,131.11,88.0483 +532126,129.8,87.3588 +532127,128.46,86.6807 +532128,127.1,86.0154 +532129,129.74,88.0793 +532130,128.45,87.3542 +532131,127.14,86.6401 +532132,125.81,85.9387 +532133,128.36,88.1096 +532134,127.1,87.3493 +532135,125.82,86.5998 +532136,124.51,85.8625 +532137,126.98,88.1394 +532138,125.75,87.3443 +532139,124.49,86.5596 +532140,123.22,85.787 +532141,125.6,88.1685 +532142,124.4,87.339 +532143,123.17,86.5196 +532144,121.92,85.7121 +532145,124.22,88.1969 +532146,123.05,87.3334 +532147,121.85,86.4799 +532148,120.63,85.638 +532149,122.84,88.2246 +532150,121.69,87.3276 +532151,120.53,86.4404 +532152,119.34,85.5645 +532153,121.46,88.2517 +532154,120.34,87.3216 +532155,119.21,86.4011 +532156,118.05,85.4919 +532157,120.07,88.2779 +532158,118.99,87.3153 +532159,117.89,86.3621 +532160,116.76,85.4199 +532161,118.69,88.3035 +532162,117.64,87.3087 +532163,116.57,86.3233 +532164,115.47,85.3488 +532165,117.3,88.3282 +532166,116.28,87.3018 +532167,115.24,86.2848 +532168,114.18,85.2785 +532169,115.92,88.3521 +532170,114.93,87.2947 +532171,113.92,86.2465 +532172,112.9,85.2091 +532173,114.53,88.3752 +532174,113.58,87.2872 +532175,112.61,86.2085 +532176,111.61,85.1405 +532177,113.14,88.3974 +532178,112.22,87.2795 +532179,111.29,86.1708 +532180,110.33,85.0728 +532181,111.75,88.4187 +532182,110.87,87.2714 +532183,109.97,86.1334 +532184,109.04,85.006 +532185,110.36,88.4391 +532186,109.52,87.2631 +532187,108.65,86.0963 +532188,107.76,84.9402 +532189,108.97,88.4586 +532190,108.16,87.2544 +532191,107.33,86.0595 +532192,106.47,84.8753 +532193,107.58,88.4771 +532194,106.81,87.2453 +532195,106.01,86.023 +532196,105.19,84.8114 +532197,106.19,88.4947 +532198,105.45,87.236 +532199,104.69,85.9868 +532200,103.91,84.7486 +532201,104.8,88.5113 +532202,104.1,87.2263 +532203,103.38,85.951 +532204,102.63,84.6867 +532205,103.41,88.5268 +532206,102.74,87.2162 +532207,102.06,85.9155 +532208,101.35,84.6259 +532209,102.01,88.5414 +532210,101.39,87.2058 +532211,100.74,85.8803 +532212,100.07,84.5661 +532213,100.62,88.5548 +532214,100.03,87.195 +532215,99.424,85.8455 +532216,98.791,84.5074 +532217,99.225,88.5673 +532218,98.679,87.1838 +532219,98.108,85.811 +532220,97.512,84.4498 +532221,97.83,88.5786 +532222,97.323,87.1723 +532223,96.791,85.7769 +532224,96.234,84.3933 +532225,96.435,88.5888 +532226,95.968,87.1604 +532227,95.475,85.7431 +532228,94.957,84.338 +532229,95.039,88.5979 +532230,94.612,87.1481 +532231,94.159,85.7097 +532232,93.68,84.2838 +532233,93.643,88.6059 +532234,93.256,87.1354 +532235,92.843,85.6767 +532236,92.403,84.2307 +532237,92.246,88.6127 +532238,91.9,87.1223 +532239,91.527,85.6441 +532240,91.127,84.1789 +532241,90.85,88.6184 +532242,90.544,87.1088 +532243,90.211,85.6118 +532244,89.851,84.1282 +532245,89.452,88.6228 +532246,89.188,87.0949 +532247,88.896,85.58 +532248,88.575,84.0787 +532249,88.055,88.6261 +532250,87.832,87.0806 +532251,87.58,85.5485 +532252,87.3,84.0304 +532253,86.657,88.6282 +532254,86.476,87.0659 +532255,86.265,85.5174 +532256,86.025,83.9834 +532257,85.26,88.629 +532258,85.12,87.0507 +532259,84.95,85.4868 +532260,84.751,83.9376 +532261,83.862,88.6286 +532262,83.764,87.0351 +532263,83.635,85.4565 +532264,83.476,83.893 +532265,82.464,88.627 +532266,82.408,87.0191 +532267,82.32,85.4267 +532268,82.202,83.8497 +532269,81.065,88.6241 +532270,81.051,87.0027 +532271,81.005,85.3972 +532272,80.928,83.8077 +532273,79.667,88.6199 +532274,79.695,86.9859 +532275,79.69,85.3682 +532276,79.654,83.7669 +532277,78.269,88.6145 +532278,78.339,86.9686 +532279,78.375,85.3396 +532280,78.38,83.7275 +532281,76.87,88.6077 +532282,76.983,86.9508 +532283,77.061,85.3114 +532284,77.106,83.6893 +532285,75.472,88.5997 +532286,75.627,86.9326 +532287,75.746,85.2836 +532288,75.832,83.6524 +532289,74.074,88.5904 +532290,74.271,86.914 +532291,74.431,85.2563 +532292,74.558,83.6168 +532293,72.675,88.5798 +532294,72.915,86.895 +532295,73.117,85.2294 +532296,73.284,83.5825 +532297,71.277,88.5678 +532298,71.559,86.8754 +532299,71.802,85.2029 +532300,72.01,83.5495 +532301,69.879,88.5545 +532302,70.203,86.8555 +532303,70.487,85.1769 +532304,70.736,83.5179 +532305,68.482,88.5399 +532306,68.847,86.8351 +532307,69.173,85.1512 +532308,69.462,83.4875 +532309,67.084,88.524 +532310,67.492,86.8142 +532311,67.858,85.1261 +532312,68.188,83.4585 +532313,65.687,88.5067 +532314,66.136,86.7929 +532315,66.543,85.1013 +532316,66.913,83.4308 +532317,64.29,88.4881 +532318,64.781,86.7711 +532319,65.229,85.077 +532320,65.639,83.4044 +532321,62.893,88.4682 +532322,63.425,86.7489 +532323,63.914,85.0531 +532324,64.364,83.3794 +532325,61.497,88.4469 +532326,62.07,86.7262 +532327,62.599,85.0296 +532328,63.088,83.3557 +532329,60.101,88.4243 +532330,60.715,86.7031 +532331,61.284,85.0066 +532332,61.813,83.3332 +532333,58.706,88.4003 +532334,59.36,86.6795 +532335,59.969,84.9841 +532336,60.537,83.3121 +532337,57.311,88.375 +532338,58.006,86.6555 +532339,58.654,84.9619 +532340,59.261,83.2924 +532341,55.916,88.3484 +532342,56.651,86.631 +532343,57.339,84.9402 +532344,57.984,83.2739 +532345,54.522,88.3204 +532346,55.297,86.6061 +532347,56.023,84.9189 +532348,56.707,83.2567 +532349,53.129,88.291 +532350,53.943,86.5807 +532351,54.708,84.898 +532352,55.429,83.2409 +532353,51.736,88.2604 +532354,52.589,86.5548 +532355,53.392,84.8776 +532356,54.151,83.2263 +532357,50.344,88.2284 +532358,51.236,86.5286 +532359,52.076,84.8576 +532360,52.873,83.2131 +532361,48.952,88.1951 +532362,49.882,86.5018 +532363,50.761,84.838 +532364,51.594,83.2011 +532365,47.562,88.1604 +532366,48.529,86.4747 +532367,49.444,84.8189 +532368,50.314,83.1904 +532369,46.171,88.1245 +532370,47.177,86.4471 +532371,48.128,84.8002 +532372,49.034,83.181 +532373,44.782,88.0872 +532374,45.824,86.419 +532375,46.812,84.7818 +532376,47.753,83.1728 +532377,43.393,88.0487 +532378,44.472,86.3905 +532379,45.495,84.7639 +532380,46.471,83.1659 +532381,42.005,88.0088 +532382,43.12,86.3616 +532383,44.178,84.7465 +532384,45.189,83.1602 +532385,40.619,87.9677 +532386,41.768,86.3323 +532387,42.861,84.7294 +532388,43.906,83.1558 +532389,39.232,87.9253 +532390,40.417,86.3025 +532391,41.544,84.7127 +532392,42.622,83.1526 +532393,37.847,87.8816 +532394,39.066,86.2723 +532395,40.226,84.6964 +532396,41.338,83.1506 +532397,36.463,87.8367 +532398,37.715,86.2417 +532399,38.909,84.6806 +532400,40.053,83.1497 +532401,35.079,87.7905 +532402,36.364,86.2107 +532403,37.591,84.6651 +532404,38.767,83.1501 +532405,33.697,87.7431 +532406,35.014,86.1793 +532407,36.272,84.65 +532408,37.48,83.1517 +532409,32.316,87.6946 +532410,33.665,86.1475 +532411,34.954,84.6353 +532412,36.192,83.1543 +532413,30.935,87.6447 +532414,32.315,86.1153 +532415,33.635,84.621 +532416,34.903,83.1582 +532417,29.556,87.5938 +532418,30.966,86.0826 +532419,32.316,84.607 +532420,33.614,83.1631 +532421,28.178,87.5416 +532422,29.618,86.0496 +532423,30.997,84.5934 +532424,32.323,83.1692 +532425,26.8,87.4883 +532426,28.27,86.0162 +532427,29.677,84.5802 +532428,31.032,83.1764 +532429,25.424,87.4338 +532430,26.922,85.9825 +532431,28.357,84.5673 +532432,29.739,83.1846 +532433,24.049,87.3783 +532434,25.574,85.9483 +532435,27.037,84.5548 +532436,28.446,83.1939 +532437,22.676,87.3216 +532438,24.227,85.9138 +532439,25.716,84.5427 +532440,27.151,83.2043 +532441,21.303,87.2638 +532442,22.881,85.8789 +532443,24.395,84.5309 +532444,25.856,83.2156 +532445,19.932,87.2049 +532446,21.534,85.8437 +532447,23.074,84.5194 +532448,24.559,83.228 +532449,18.562,87.1451 +532450,20.189,85.8081 +532451,21.752,84.5082 +532452,23.262,83.2413 +532453,17.193,87.0841 +532454,18.843,85.7722 +532455,20.43,84.4974 +532456,21.963,83.2557 +532457,15.825,87.0222 +532458,17.498,85.736 +532459,19.108,84.4869 +532460,20.663,83.2709 +532461,14.459,86.9593 +532462,16.154,85.6994 +532463,17.785,84.4767 +532464,19.362,83.2871 +532465,13.094,86.8954 +532466,14.81,85.6625 +532467,16.462,84.4668 +532468,18.06,83.3042 +532469,11.731,86.8305 +532470,13.466,85.6253 +532471,15.139,84.4571 +532472,16.756,83.3221 +532473,10.368,86.7648 +532474,12.123,85.5878 +532475,13.815,84.4478 +532476,15.452,83.3409 +532477,9.0073,86.6981 +532478,10.781,85.55 +532479,12.491,84.4388 +532480,14.146,83.3606 +532481,7.6477,86.6306 +532482,9.4387,85.5119 +532483,11.166,84.43 +532484,12.839,83.381 +532485,6.2895,86.5622 +532486,8.097,85.4735 +532487,9.8411,84.4215 +532488,11.531,83.4023 +532489,4.9327,86.493 +532490,6.7558,85.4348 +532491,8.5157,84.4132 +532492,10.221,83.4243 +532493,3.5773,86.423 +532494,5.4152,85.3959 +532495,7.19,84.4052 +532496,8.9104,83.447 +532497,2.2234,86.3522 +532498,4.075,85.3567 +532499,5.8638,84.3975 +532500,7.5984,83.4705 +532501,0.87085,86.2806 +532502,2.7353,85.3173 +532503,4.5372,84.3899 +532504,6.285,83.4946 +532505,359.52,86.2083 +532506,1.3961,85.2776 +532507,3.2102,84.3826 +532508,4.9704,83.5195 +532509,358.17,86.1353 +532510,0.05738,85.2377 +532511,1.8828,84.3755 +532512,3.6544,83.5449 +532513,356.82,86.0617 +532514,358.72,85.1976 +532515,0.55494,84.3686 +532516,2.3371,83.571 +532517,355.48,85.9874 +532518,357.38,85.1573 +532519,359.23,84.3619 +532520,1.0185,83.5977 +532521,354.13,85.9125 +532522,356.04,85.1168 +532523,357.9,84.3554 +532524,359.7,83.6249 +532525,352.79,85.837 +532526,354.71,85.076 +532527,356.57,84.3491 +532528,358.38,83.6526 +532529,351.44,85.7609 +532530,353.37,85.0351 +532531,355.24,84.3429 +532532,357.05,83.6809 +532533,350.1,85.6843 +532534,352.04,84.994 +532535,353.91,84.3369 +532536,355.73,83.7096 +532537,348.76,85.6072 +532538,350.7,84.9528 +532539,352.58,84.3311 +532540,354.41,83.7388 +532541,347.43,85.5296 +532542,349.37,84.9114 +532543,351.25,84.3254 +532544,353.08,83.7685 +532545,346.09,85.4516 +532546,348.03,84.8698 +532547,349.92,84.3199 +532548,351.75,83.7985 +532549,344.76,85.3732 +532550,346.7,84.8281 +532551,348.58,84.3144 +532552,350.42,83.8289 +532553,343.42,85.2943 +532554,345.37,84.7863 +532555,347.25,84.3091 +532556,349.09,83.8596 +532557,342.09,85.2151 +532558,344.03,84.7443 +532559,345.92,84.3039 +532560,347.76,83.8907 +532561,340.76,85.1356 +532562,342.7,84.7023 +532563,344.59,84.2988 +532564,346.42,83.922 +532565,339.43,85.0558 +532566,341.37,84.6601 +532567,343.25,84.2937 +532568,345.09,83.9536 +532569,338.1,84.9758 +532570,340.04,84.6179 +532571,341.92,84.2888 +532572,343.75,83.9854 +532573,336.78,84.8955 +532574,338.71,84.5756 +532575,340.59,84.2839 +532576,342.41,84.0174 +532577,335.45,84.815 +532578,337.38,84.5332 +532579,339.25,84.279 +532580,341.07,84.0496 +532581,334.13,84.7343 +532582,336.05,84.4908 +532583,337.91,84.2743 +532584,339.73,84.082 +532585,332.81,84.6535 +532586,334.72,84.4483 +532587,336.58,84.2695 +532588,338.39,84.1145 +532589,331.49,84.5725 +532590,333.39,84.4057 +532591,335.24,84.2648 +532592,337.05,84.147 +532593,330.17,84.4915 +532594,332.06,84.3632 +532595,333.91,84.2601 +532596,335.7,84.1796 +532597,328.86,84.4105 +532598,330.74,84.3206 +532599,332.57,84.2554 +532600,334.36,84.2122 +532601,327.54,84.3294 +532602,329.41,84.278 +532603,331.23,84.2507 +532604,333.01,84.2449 +532605,326.23,84.2483 +532606,328.08,84.2355 +532607,329.89,84.246 +532608,331.66,84.2775 +532609,324.92,84.1673 +532610,326.76,84.1929 +532611,328.56,84.2413 +532612,330.31,84.31 +532613,323.6,84.0864 +532614,325.43,84.1504 +532615,327.22,84.2365 +532616,328.96,84.3425 +532617,322.29,84.0055 +532618,324.11,84.1078 +532619,325.88,84.2317 +532620,327.61,84.3749 +532621,320.99,83.9248 +532622,322.78,84.0654 +532623,324.54,84.2269 +532624,326.25,84.4071 +532625,319.68,83.8443 +532626,321.46,84.023 +532627,323.2,84.222 +532628,324.89,84.4391 +532629,318.37,83.764 +532630,320.14,83.9806 +532631,321.86,84.217 +532632,323.54,84.4709 +532633,317.07,83.6839 +532634,318.81,83.9384 +532635,320.52,84.212 +532636,322.18,84.5026 +532637,315.77,83.6041 +532638,317.49,83.8962 +532639,319.18,84.2068 +532640,320.82,84.5339 +532641,314.47,83.5245 +532642,316.17,83.8541 +532643,317.83,84.2016 +532644,319.46,84.565 +532645,313.17,83.4453 +532646,314.85,83.8121 +532647,316.49,84.1963 +532648,318.1,84.5958 +532649,311.87,83.3664 +532650,313.53,83.7702 +532651,315.15,84.1908 +532652,316.73,84.6262 +532653,310.57,83.2879 +532654,312.21,83.7284 +532655,313.81,84.1852 +532656,315.37,84.6562 +532657,309.27,83.2098 +532658,310.89,83.6868 +532659,312.46,84.1795 +532660,314,84.6859 +532661,307.98,83.1322 +532662,309.57,83.6453 +532663,311.12,84.1737 +532664,312.64,84.7152 +532665,306.69,83.055 +532666,308.25,83.604 +532667,309.78,84.1677 +532668,311.27,84.744 +532669,305.39,82.9783 +532670,306.93,83.5628 +532671,308.43,84.1615 +532672,309.9,84.7723 +532673,304.1,82.9021 +532674,305.61,83.5218 +532675,307.09,84.1551 +532676,308.53,84.8001 +532677,302.81,82.8265 +532678,304.29,83.481 +532679,305.74,84.1486 +532680,307.15,84.8274 +532681,301.52,82.7515 +532682,302.98,83.4403 +532683,304.4,84.1419 +532684,305.78,84.8542 +532685,300.24,82.6771 +532686,301.66,83.3999 +532687,303.05,84.135 +532688,304.41,84.8804 +532689,298.95,82.6033 +532690,300.34,83.3597 +532691,301.7,84.1279 +532692,303.03,84.9059 +532693,297.66,82.5301 +532694,299.03,83.3197 +532695,300.36,84.1206 +532696,301.66,84.9309 +532697,296.38,82.4577 +532698,297.71,83.2799 +532699,299.01,84.113 +532700,300.28,84.9552 +532701,295.1,82.3859 +532702,296.4,83.2403 +532703,297.66,84.1052 +532704,298.9,84.9788 +532705,293.82,82.3149 +532706,295.08,83.201 +532707,296.32,84.0972 +532708,297.52,85.0017 +532709,292.53,82.2447 +532710,293.77,83.1619 +532711,294.97,84.0889 +532712,296.14,85.024 +532713,291.25,82.1752 +532714,292.45,83.1231 +532715,293.62,84.0804 +532716,294.76,85.0454 +532717,289.97,82.1066 +532718,291.14,83.0845 +532719,292.27,84.0716 +532720,293.38,85.0661 +532721,288.7,82.0388 +532722,289.82,83.0462 +532723,290.92,84.0626 +532724,291.99,85.086 +532725,287.42,81.9718 +532726,288.51,83.0082 +532727,289.58,84.0532 +532728,290.61,85.1051 +532729,286.14,81.9058 +532730,287.2,82.9705 +532731,288.23,84.0436 +532732,289.23,85.1234 +532733,284.87,81.8406 +532734,285.89,82.9331 +532735,286.88,84.0337 +532736,287.84,85.1408 +532737,283.59,81.7763 +532738,284.57,82.896 +532739,285.53,84.0235 +532740,286.45,85.1573 +532741,282.32,81.713 +532742,283.26,82.8592 +532743,284.18,84.013 +532744,285.07,85.1729 +532745,281.04,81.6507 +532746,281.95,82.8227 +532747,282.83,84.0022 +532748,283.68,85.1876 +532749,279.77,81.5893 +532750,280.64,82.7865 +532751,281.48,83.9911 +532752,282.29,85.2014 +532753,278.5,81.529 +532754,279.33,82.7506 +532755,280.13,83.9796 +532756,280.9,85.2142 +532757,277.23,81.4696 +532758,278.02,82.7151 +532759,278.78,83.9678 +532760,279.51,85.2261 +532761,275.96,81.4114 +532762,276.7,82.6799 +532763,277.43,83.9557 +532764,278.12,85.2369 +532765,274.69,81.3541 +532766,275.39,82.6451 +532767,276.08,83.9432 +532768,276.73,85.2468 +532769,273.42,81.298 +532770,274.08,82.6106 +532771,274.72,83.9304 +532772,275.34,85.2556 +532773,272.15,81.2429 +532774,272.77,82.5765 +532775,273.37,83.9172 +532776,273.94,85.2634 +532777,270.88,81.1889 +532778,271.46,82.5428 +532779,272.02,83.9037 +532780,272.55,85.2702 +532781,269.61,81.1361 +532782,270.15,82.5094 +532783,270.67,83.8898 +532784,271.16,85.2758 +532785,268.34,81.0844 +532786,268.84,82.4764 +532787,269.32,83.8755 +532788,269.76,85.2804 +532789,267.08,81.0338 +532790,267.54,82.4438 +532791,267.97,83.8609 +532792,268.37,85.2839 +532793,265.81,80.9845 +532794,266.23,82.4115 +532795,266.61,83.8459 +532796,266.97,85.2862 +532797,264.54,80.9362 +532798,264.92,82.3797 +532799,265.26,83.8305 +532800,265.58,85.2875 +532801,263.28,80.8892 +532802,263.61,82.3482 +532803,263.91,83.8147 +532804,264.18,85.2875 +532805,262.01,80.8434 +532806,262.3,82.3171 +532807,262.56,83.7985 +532808,262.79,85.2865 +532809,260.75,80.7988 +532810,260.99,82.2864 +532811,261.21,83.782 +532812,261.39,85.2843 +532813,259.48,80.7554 +532814,259.68,82.2562 +532815,259.86,83.765 +532816,260,85.2808 +532817,258.21,80.7132 +532818,258.37,82.2263 +532819,258.5,83.7476 +532820,258.6,85.2763 +532821,256.95,80.6723 +532822,257.07,82.1968 +532823,257.15,83.7299 +532824,257.2,85.2705 +532825,255.68,80.6327 +532826,255.76,82.1678 +532827,255.8,83.7117 +532828,255.81,85.2635 +532829,254.42,80.5942 +532830,254.45,82.1392 +532831,254.45,83.6931 +532832,254.41,85.2553 +532833,253.16,80.5571 +532834,253.14,82.111 +532835,253.09,83.6741 +532836,253.01,85.2459 +532837,251.89,80.5212 +532838,251.83,82.0832 +532839,251.74,83.6547 +532840,251.62,85.2352 +532841,250.63,80.4866 +532842,250.52,82.0558 +532843,250.39,83.6349 +532844,250.22,85.2233 +532845,249.36,80.4532 +532846,249.22,82.0288 +532847,249.04,83.6147 +532848,248.82,85.2102 +532849,248.1,80.4211 +532850,247.91,82.0023 +532851,247.69,83.594 +532852,247.43,85.1959 +532853,246.83,80.3904 +532854,246.6,81.9762 +532855,246.33,83.5729 +532856,246.03,85.1802 +532857,245.57,80.3609 +532858,245.29,81.9505 +532859,244.98,83.5514 +532860,244.63,85.1634 +532861,244.3,80.3327 +532862,243.98,81.9253 +532863,243.63,83.5295 +532864,243.24,85.1452 +532865,243.04,80.3057 +532866,242.68,81.9004 +532867,242.28,83.5072 +532868,241.84,85.1258 +532869,241.77,80.2801 +532870,241.37,81.876 +532871,240.93,83.4844 +532872,240.45,85.1052 +532873,240.51,80.2558 +532874,240.06,81.8521 +532875,239.58,83.4612 +532876,239.05,85.0833 +532877,239.24,80.2327 +532878,238.75,81.8285 +532879,238.23,83.4376 +532880,237.66,85.0601 +532881,237.97,80.2109 +532882,237.44,81.8054 +532883,236.87,83.4136 +532884,236.26,85.0356 +532885,236.71,80.1905 +532886,236.13,81.7827 +532887,235.52,83.3891 +532888,234.87,85.0099 +532889,235.44,80.1713 +532890,234.83,81.7605 +532891,234.17,83.3642 +532892,233.47,84.9829 +532893,234.17,80.1533 +532894,233.52,81.7386 +532895,232.82,83.3389 +532896,232.08,84.9547 +532897,232.9,80.1367 +532898,232.21,81.7172 +532899,231.47,83.3132 +532900,230.69,84.9252 +532901,231.63,80.1213 +532902,230.9,81.6962 +532903,230.12,83.287 +532904,229.3,84.8944 +532905,230.37,80.1071 +532906,229.59,81.6757 +532907,228.77,83.2605 +532908,227.9,84.8624 +532909,229.1,80.0943 +532910,228.28,81.6555 +532911,227.42,83.2335 +532912,226.51,84.8292 +532913,227.83,80.0826 +532914,226.97,81.6358 +532915,226.07,83.2061 +532916,225.12,84.7946 +532917,226.55,80.0723 +532918,225.66,81.6165 +532919,224.72,83.1783 +532920,223.73,84.7589 +532921,225.28,80.0631 +532922,224.35,81.5976 +532923,223.37,83.1501 +532924,222.34,84.7219 +532925,224.01,80.0552 +532926,223.04,81.5791 +532927,222.03,83.1215 +532928,220.96,84.6837 +532929,222.74,80.0485 +532930,221.73,81.561 +532931,220.68,83.0925 +532932,219.57,84.6443 +532933,221.46,80.0429 +532934,220.42,81.5433 +532935,219.33,83.063 +532936,218.18,84.6037 +532937,220.19,80.0386 +532938,219.11,81.526 +532939,217.98,83.0332 +532940,216.8,84.5619 +532941,218.92,80.0355 +532942,217.8,81.5091 +532943,216.63,83.003 +532944,215.41,84.5188 +532945,217.64,80.0335 +532946,216.49,81.4926 +532947,215.29,82.9724 +532948,214.03,84.4746 +532949,216.36,80.0327 +532950,215.18,81.4765 +532951,213.94,82.9414 +532952,212.64,84.4293 +532953,215.09,80.033 +532954,213.86,81.4608 +532955,212.59,82.9101 +532956,211.26,84.3827 +532957,213.81,80.0344 +532958,212.55,81.4454 +532959,211.25,82.8783 +532960,209.88,84.3351 +532961,212.53,80.037 +532962,211.24,81.4304 +532963,209.9,82.8462 +532964,208.5,84.2863 +532965,211.25,80.0407 +532966,209.93,81.4158 +532967,208.56,82.8137 +532968,207.12,84.2363 +532969,209.97,80.0454 +532970,208.61,81.4016 +532971,207.21,82.7808 +532972,205.74,84.1853 +532973,208.68,80.0512 +532974,207.3,81.3877 +532975,205.87,82.7476 +532976,204.37,84.1332 +532977,207.4,80.0581 +532978,205.99,81.3742 +532979,204.52,82.7141 +532980,202.99,84.08 +532981,206.12,80.066 +532982,204.67,81.361 +532983,203.18,82.6802 +532984,201.62,84.0257 +532985,204.83,80.0749 +532986,203.36,81.3482 +532987,201.83,82.6459 +532988,200.24,83.9704 +532989,203.54,80.0848 +532990,202.05,81.3357 +532991,200.49,82.6113 +532992,198.87,83.9141 +532993,202.26,80.0956 +532994,200.73,81.3236 +532995,199.15,82.5764 +532996,197.5,83.8567 +532997,200.97,80.1075 +532998,199.42,81.3117 +532999,197.81,82.5411 +533000,196.13,83.7984 +533001,199.68,80.1203 +533002,198.1,81.3002 +533003,196.46,82.5056 +533004,194.76,83.739 +533005,198.39,80.134 +533006,196.78,81.289 +533007,195.12,82.4697 +533008,193.39,83.6788 +533009,197.09,80.1486 +533010,195.47,81.2781 +533011,193.78,82.4335 +533012,192.03,83.6176 +533013,195.8,80.164 +533014,194.15,81.2675 +533015,192.44,82.397 +533016,190.66,83.5554 +533017,194.51,80.1804 +533018,192.83,81.2572 +533019,191.1,82.3603 +533020,189.3,83.4924 +533021,193.21,80.1975 +533022,191.52,81.2472 +533023,189.76,82.3232 +533024,187.94,83.4285 +533025,191.91,80.2155 +533026,190.2,81.2374 +533027,188.42,82.2859 +533028,186.58,83.3638 +533029,190.62,80.2343 +533030,188.88,81.2279 +533031,187.08,82.2483 +533032,185.22,83.2982 +533033,189.32,80.2538 +533034,187.56,81.2187 +533035,185.75,82.2104 +533036,183.86,83.2318 +533037,188.01,80.2741 +533038,186.24,81.2098 +533039,184.41,82.1723 +533040,182.5,83.1647 +533041,186.71,80.295 +533042,184.92,81.2011 +533043,183.07,82.1339 +533044,181.15,83.0967 +533045,185.41,80.3167 +533046,183.6,81.1926 +533047,181.73,82.0953 +533048,179.79,83.0281 +533049,184.1,80.3391 +533050,182.28,81.1843 +533051,180.4,82.0565 +533052,178.44,82.9587 +533053,182.8,80.3621 +533054,180.96,81.1763 +533055,179.06,82.0175 +533056,177.09,82.8886 +533057,181.49,80.3857 +533058,179.64,81.1685 +533059,177.73,81.9782 +533060,175.74,82.8179 +533061,180.18,80.4099 +533062,178.32,81.1609 +533063,176.39,81.9387 +533064,174.4,82.7465 +533065,178.87,80.4347 +533066,177,81.1535 +533067,175.06,81.8991 +533068,173.05,82.6745 +533069,177.56,80.46 +533070,175.67,81.1463 +533071,173.73,81.8592 +533072,171.71,82.6019 +533073,176.24,80.4859 +533074,174.35,81.1393 +533075,172.39,81.8192 +533076,170.36,82.5288 +533077,174.93,80.5122 +533078,173.03,81.1324 +533079,171.06,81.779 +533080,169.02,82.4551 +533081,173.61,80.539 +533082,171.7,81.1257 +533083,169.73,81.7386 +533084,167.68,82.381 +533085,172.3,80.5662 +533086,170.38,81.1191 +533087,168.4,81.6981 +533088,166.34,82.3063 +533089,170.98,80.5939 +533090,169.05,81.1127 +533091,167.07,81.6575 +533092,165.01,82.2312 +533093,169.66,80.6219 +533094,167.73,81.1065 +533095,165.74,81.6167 +533096,163.67,82.1557 +533097,168.33,80.6503 +533098,166.4,81.1003 +533099,164.41,81.5758 +533100,162.34,82.0797 +533101,167.01,80.679 +533102,165.07,81.0943 +533103,163.08,81.5348 +533104,161.01,82.0034 +533105,165.69,80.708 +533106,163.75,81.0884 +533107,161.75,81.4936 +533108,159.68,81.9268 +533109,164.36,80.7373 +533110,162.42,81.0826 +533111,160.42,81.4524 +533112,158.35,81.8499 +533113,163.03,80.7669 +533114,161.09,81.0768 +533115,159.09,81.4111 +533116,157.02,81.7727 +533117,161.7,80.7966 +533118,159.76,81.0712 +533119,157.77,81.3697 +533120,155.7,81.6952 +533121,160.37,80.8266 +533122,158.44,81.0656 +533123,156.44,81.3283 +533124,154.37,81.6175 +533125,159.04,80.8567 +533126,157.11,81.0601 +533127,155.11,81.2867 +533128,153.05,81.5396 +533129,157.71,80.8869 +533130,155.78,81.0546 +533131,153.79,81.2452 +533132,151.73,81.4616 +533133,156.37,80.9173 +533134,154.45,81.0492 +533135,152.46,81.2036 +533136,150.41,81.3834 +533137,155.03,80.9477 +533138,153.12,81.0438 +533139,151.14,81.162 +533140,149.1,81.3051 +533141,153.7,80.9782 +533142,151.78,81.0384 +533143,149.81,81.1203 +533144,147.78,81.2267 +533145,152.36,81.0087 +533146,150.45,81.0331 +533147,148.49,81.0787 +533148,146.47,81.1483 +533149,151.02,81.0392 +533150,149.12,81.0277 +533151,147.17,81.037 +533152,145.15,81.0699 +533153,149.67,81.0696 +533154,147.79,81.0223 +533155,145.85,80.9954 +533156,143.84,80.9915 +533157,148.33,81.1 +533158,146.46,81.017 +533159,144.52,80.9538 +533160,142.53,80.9131 +533161,146.98,81.1304 +533162,145.12,81.0116 +533163,143.2,80.9122 +533164,141.22,80.8348 +533165,145.64,81.1606 +533166,143.79,81.0061 +533167,141.88,80.8706 +533168,139.92,80.7567 +533169,144.29,81.1906 +533170,142.45,81.0007 +533171,140.56,80.8291 +533172,138.61,80.6786 +533173,142.94,81.2205 +533174,141.12,80.9951 +533175,139.24,80.7877 +533176,137.31,80.6007 +533177,141.59,81.2502 +533178,139.78,80.9895 +533179,137.92,80.7463 +533180,136.01,80.523 +533181,140.24,81.2796 +533182,138.45,80.9839 +533183,136.61,80.705 +533184,134.71,80.4456 +533185,138.88,81.3088 +533186,137.11,80.9781 +533187,135.29,80.6638 +533188,133.41,80.3684 +533189,137.53,81.3377 +533190,135.77,80.9723 +533191,133.97,80.6227 +533192,132.11,80.2914 +533193,136.17,81.3663 +533194,134.44,80.9664 +533195,132.65,80.5817 +533196,130.82,80.2148 +533197,134.81,81.3946 +533198,133.1,80.9603 +533199,131.34,80.5408 +533200,129.52,80.1385 +533201,133.45,81.4225 +533202,131.76,80.9542 +533203,130.02,80.5001 +533204,128.23,80.0626 +533205,132.09,81.45 +533206,130.42,80.9479 +533207,128.71,80.4595 +533208,126.94,79.987 +533209,130.73,81.4772 +533210,129.08,80.9415 +533211,127.39,80.419 +533212,125.64,79.912 +533213,129.37,81.5038 +533214,127.75,80.9349 +533215,126.08,80.3787 +533216,124.36,79.837 +533217,128,81.53 +533218,126.41,80.9282 +533219,124.76,80.3385 +533220,123.07,79.763 +533221,126.64,81.5558 +533222,125.07,80.9213 +533223,123.45,80.2985 +533224,121.78,79.69 +533225,125.27,81.581 +533226,123.73,80.9143 +533227,122.14,80.2587 +533228,120.5,79.616 +533229,123.9,81.6056 +533230,122.39,80.9071 +533231,120.82,80.2191 +533232,119.21,79.544 +533233,122.53,81.6297 +533234,121.04,80.8997 +533235,119.51,80.1797 +533236,117.93,79.472 +533237,121.16,81.6532 +533238,119.7,80.8921 +533239,118.2,80.1404 +533240,116.65,79.401 +533241,119.79,81.6761 +533242,118.36,80.8843 +533243,116.89,80.1014 +533244,115.37,79.33 +533245,118.42,81.6984 +533246,117.02,80.8762 +533247,115.58,80.0627 +533248,114.09,79.26 +533249,117.04,81.72 +533250,115.68,80.868 +533251,114.27,80.0241 +533252,112.81,79.19 +533253,115.67,81.7409 +533254,114.33,80.8595 +533255,112.95,79.986 +533256,111.53,79.122 +533257,114.29,81.7611 +533258,112.99,80.8509 +533259,111.65,79.948 +533260,110.26,79.054 +533261,112.92,81.7806 +533262,111.65,80.8419 +533263,110.34,79.91 +533264,108.98,78.987 +533265,111.54,81.7993 +533266,110.3,80.8327 +533267,109.03,79.872 +533268,107.71,78.92 +533269,110.16,81.8173 +533270,108.96,80.8233 +533271,107.72,79.835 +533272,106.44,78.855 +533273,108.78,81.8345 +533274,107.61,80.8136 +533275,106.41,79.798 +533276,105.17,78.79 +533277,107.4,81.8508 +533278,106.27,80.8036 +533279,105.1,79.761 +533280,103.9,78.726 +533281,106.02,81.8664 +533282,104.92,80.7933 +533283,103.79,79.725 +533284,102.63,78.663 +533285,104.63,81.881 +533286,103.58,80.7828 +533287,102.49,79.689 +533288,101.36,78.601 +533289,103.25,81.8949 +533290,102.23,80.772 +533291,101.18,79.653 +533292,100.09,78.54 +533293,101.87,81.9078 +533294,100.89,80.7608 +533295,99.873,79.618 +533296,98.823,78.48 +533297,100.48,81.9198 +533298,99.541,80.7494 +533299,98.566,79.582 +533300,97.556,78.421 +533301,99.094,81.9309 +533302,98.194,80.7377 +533303,97.26,79.548 +533304,96.291,78.362 +533305,97.707,81.941 +533306,96.848,80.7256 +533307,95.954,79.513 +533308,95.026,78.305 +533309,96.32,81.9502 +533310,95.501,80.7132 +533311,94.649,79.479 +533312,93.762,78.249 +533313,94.932,81.9585 +533314,94.154,80.7005 +533315,93.344,79.445 +533316,92.499,78.194 +533317,93.543,81.9657 +533318,92.807,80.6875 +533319,92.038,79.411 +533320,91.237,78.139 +533321,92.153,81.9719 +533322,91.46,80.6741 +533323,90.734,79.378 +533324,89.975,78.086 +533325,90.763,81.9771 +533326,90.112,80.6604 +533327,89.429,79.346 +533328,88.713,78.034 +533329,89.372,81.9813 +533330,88.764,80.6464 +533331,88.125,79.313 +533332,87.452,77.983 +533333,87.981,81.9844 +533334,87.416,80.6319 +533335,86.82,79.281 +533336,86.192,77.933 +533337,86.589,81.9864 +533338,86.068,80.6172 +533339,85.516,79.249 +533340,84.932,77.885 +533341,85.196,81.9874 +533342,84.72,80.602 +533343,84.213,79.218 +533344,83.673,77.837 +533345,83.804,81.9873 +533346,83.372,80.5865 +533347,82.909,79.187 +533348,82.414,77.791 +533349,82.41,81.9861 +533350,82.024,80.5707 +533351,81.606,79.157 +533352,81.156,77.745 +533353,81.017,81.9837 +533354,80.675,80.5544 +533355,80.302,79.126 +533356,79.898,77.701 +533357,79.623,81.9803 +533358,79.327,80.5378 +533359,78.999,79.097 +533360,78.64,77.658 +533361,78.229,81.9757 +533362,77.978,80.5208 +533363,77.696,79.067 +533364,77.382,77.617 +533365,76.834,81.97 +533366,76.629,80.5035 +533367,76.393,79.038 +533368,76.125,77.576 +533369,75.439,81.9631 +533370,75.281,80.4857 +533371,75.09,79.01 +533372,74.868,77.537 +533373,74.044,81.9551 +533374,73.932,80.4676 +533375,73.787,78.982 +533376,73.611,77.499 +533377,72.649,81.9459 +533378,72.583,80.449 +533379,72.485,78.954 +533380,72.355,77.462 +533381,71.254,81.9355 +533382,71.234,80.4301 +533383,71.182,78.927 +533384,71.098,77.426 +533385,69.859,81.924 +533386,69.885,80.4108 +533387,69.879,78.9 +533388,69.842,77.392 +533389,68.463,81.9112 +533390,68.536,80.3911 +533391,68.577,78.873 +533392,68.585,77.359 +533393,67.068,81.8973 +533394,67.188,80.3709 +533395,67.274,78.847 +533396,67.329,77.327 +533397,65.672,81.8822 +533398,65.839,80.3504 +533399,65.972,78.821 +533400,66.072,77.296 +533401,64.277,81.8659 +533402,64.49,80.3295 +533403,64.669,78.796 +533404,64.816,77.267 +533405,62.881,81.8483 +533406,63.141,80.3082 +533407,63.367,78.771 +533408,63.559,77.239 +533409,61.486,81.8296 +533410,61.793,80.2865 +533411,62.064,78.747 +533412,62.302,77.212 +533413,60.091,81.8097 +533414,60.444,80.2643 +533415,60.762,78.723 +533416,61.045,77.186 +533417,58.696,81.7885 +533418,59.096,80.2418 +533419,59.459,78.699 +533420,59.788,77.162 +533421,57.301,81.7662 +533422,57.747,80.2189 +533423,58.157,78.676 +533424,58.531,77.139 +533425,55.907,81.7426 +533426,56.399,80.1955 +533427,56.854,78.653 +533428,57.273,77.117 +533429,54.513,81.7178 +533430,55.051,80.1718 +533431,55.551,78.631 +533432,56.015,77.096 +533433,53.119,81.6918 +533434,53.703,80.1476 +533435,54.248,78.609 +533436,54.757,77.077 +533437,51.726,81.6647 +533438,52.355,80.1231 +533439,52.945,78.588 +533440,53.499,77.059 +533441,50.333,81.6363 +533442,51.008,80.0982 +533443,51.642,78.566 +533444,52.24,77.042 +533445,48.94,81.6067 +533446,49.66,80.0728 +533447,50.339,78.546 +533448,50.98,77.026 +533449,47.548,81.5758 +533450,48.313,80.0471 +533451,49.036,78.526 +533452,49.72,77.012 +533453,46.156,81.5438 +533454,46.966,80.0209 +533455,47.732,78.506 +533456,48.46,76.999 +533457,44.765,81.5107 +533458,45.619,79.994 +533459,46.429,78.486 +533460,47.199,76.987 +533461,43.375,81.4763 +533462,44.272,79.967 +533463,45.125,78.467 +533464,45.937,76.976 +533465,41.985,81.4407 +533466,42.926,79.94 +533467,43.821,78.449 +533468,44.675,76.966 +533469,40.595,81.404 +533470,41.579,79.912 +533471,42.517,78.43 +533472,43.412,76.958 +533473,39.207,81.3661 +533474,40.233,79.884 +533475,41.212,78.413 +533476,42.149,76.951 +533477,37.819,81.327 +533478,38.888,79.856 +533479,39.908,78.395 +533480,40.885,76.945 +533481,36.432,81.2868 +533482,37.542,79.827 +533483,38.603,78.378 +533484,39.62,76.94 +533485,35.045,81.2455 +533486,36.197,79.798 +533487,37.298,78.362 +533488,38.354,76.937 +533489,33.66,81.203 +533490,34.852,79.768 +533491,35.993,78.345 +533492,37.088,76.934 +533493,32.275,81.1594 +533494,33.508,79.738 +533495,34.687,78.329 +533496,35.821,76.933 +533497,30.891,81.1146 +533498,32.163,79.708 +533499,33.381,78.314 +533500,34.553,76.933 +533501,29.509,81.0688 +533502,30.819,79.677 +533503,32.075,78.299 +533504,33.284,76.934 +533505,28.127,81.0219 +533506,29.476,79.646 +533507,30.769,78.284 +533508,32.014,76.936 +533509,26.746,80.9739 +533510,28.133,79.615 +533511,29.463,78.27 +533512,30.743,76.939 +533513,25.366,80.9249 +533514,26.79,79.583 +533515,28.156,78.256 +533516,29.471,76.943 +533517,23.987,80.8748 +533518,25.447,79.551 +533519,26.848,78.242 +533520,28.199,76.948 +533521,22.609,80.8236 +533522,24.105,79.518 +533523,25.541,78.229 +533524,26.925,76.955 +533525,21.232,80.7715 +533526,22.763,79.485 +533527,24.233,78.216 +533528,25.65,76.962 +533529,19.856,80.7183 +533530,21.422,79.452 +533531,22.925,78.203 +533532,24.374,76.97 +533533,18.482,80.6642 +533534,20.081,79.419 +533535,21.616,78.191 +533536,23.098,76.979 +533537,17.109,80.609 +533538,18.74,79.385 +533539,20.307,78.179 +533540,21.82,76.99 +533541,15.737,80.5529 +533542,17.4,79.351 +533543,18.998,78.167 +533544,20.54,77.001 +533545,14.366,80.4959 +533546,16.06,79.317 +533547,17.688,78.156 +533548,19.26,77.013 +533549,12.996,80.438 +533550,14.721,79.282 +533551,16.378,78.145 +533552,17.979,77.026 +533553,11.628,80.3791 +533554,13.382,79.247 +533555,15.068,78.134 +533556,16.696,77.04 +533557,10.261,80.3194 +533558,12.044,79.212 +533559,13.757,78.124 +533560,15.412,77.055 +533561,8.8951,80.2588 +533562,10.706,79.176 +533563,12.446,78.114 +533564,14.127,77.07 +533565,7.5308,80.1973 +533566,9.3681,79.14 +533567,11.135,78.104 +533568,12.841,77.087 +533569,6.1678,80.135 +533570,8.031,79.104 +533571,9.8226,78.094 +533572,11.553,77.104 +533573,4.8063,80.0719 +533574,6.6944,79.068 +533575,8.5102,78.085 +533576,10.264,77.122 +533577,3.4462,80.0081 +533578,5.3584,79.031 +533579,7.1973,78.076 +533580,8.9737,77.141 +533581,2.0875,79.943 +533582,4.0228,78.994 +533583,5.8841,78.067 +533584,7.6821,77.16 +533585,0.73029,79.878 +533586,2.6877,78.957 +533587,4.5704,78.059 +533588,6.3891,77.181 +533589,359.37,79.812 +533590,1.3531,78.92 +533591,3.2562,78.051 +533592,5.0948,77.201 +533593,358.02,79.745 +533594,0.019006,78.882 +533595,1.9416,78.042 +533596,3.7991,77.223 +533597,356.67,79.678 +533598,358.69,78.845 +533599,0.62657,78.035 +533600,2.5019,77.245 +533601,355.32,79.61 +533602,357.35,78.807 +533603,359.31,78.027 +533604,1.2034,77.268 +533605,353.97,79.541 +533606,356.02,78.769 +533607,358,78.02 +533608,359.9,77.292 +533609,352.62,79.472 +533610,354.69,78.73 +533611,356.68,78.012 +533612,358.6,77.316 +533613,351.27,79.402 +533614,353.36,78.692 +533615,355.36,78.005 +533616,357.3,77.34 +533617,349.93,79.331 +533618,352.03,78.653 +533619,354.04,77.998 +533620,355.99,77.365 +533621,348.58,79.26 +533622,350.7,78.614 +533623,352.73,77.992 +533624,354.69,77.391 +533625,347.24,79.189 +533626,349.37,78.575 +533627,351.41,77.985 +533628,353.38,77.417 +533629,345.9,79.117 +533630,348.04,78.536 +533631,350.09,77.979 +533632,352.07,77.443 +533633,344.56,79.045 +533634,346.71,78.497 +533635,348.77,77.973 +533636,350.76,77.47 +533637,343.23,78.972 +533638,345.38,78.457 +533639,347.45,77.967 +533640,349.45,77.497 +533641,341.89,78.899 +533642,344.05,78.418 +533643,346.13,77.961 +533644,348.14,77.525 +533645,340.56,78.825 +533646,342.72,78.378 +533647,344.81,77.955 +533648,346.82,77.553 +533649,339.23,78.751 +533650,341.4,78.338 +533651,343.49,77.949 +533652,345.51,77.581 +533653,337.9,78.677 +533654,340.07,78.298 +533655,342.17,77.944 +533656,344.19,77.61 +533657,336.57,78.602 +533658,338.75,78.259 +533659,340.84,77.938 +533660,342.87,77.638 +533661,335.24,78.528 +533662,337.42,78.218 +533663,339.52,77.933 +533664,341.55,77.667 +533665,333.92,78.453 +533666,336.1,78.178 +533667,338.2,77.927 +533668,340.23,77.696 +533669,332.59,78.378 +533670,334.77,78.138 +533671,336.87,77.922 +533672,338.9,77.726 +533673,331.27,78.302 +533674,333.45,78.098 +533675,335.55,77.917 +533676,337.58,77.755 +533677,329.95,78.227 +533678,332.13,78.058 +533679,334.22,77.911 +533680,336.25,77.785 +533681,328.63,78.151 +533682,330.81,78.018 +533683,332.9,77.906 +533684,334.92,77.814 +533685,327.32,78.076 +533686,329.48,77.977 +533687,331.57,77.901 +533688,333.59,77.844 +533689,326,78 +533690,328.16,77.937 +533691,330.25,77.896 +533692,332.26,77.874 +533693,324.69,77.924 +533694,326.84,77.897 +533695,328.92,77.891 +533696,330.93,77.904 +533697,323.37,77.848 +533698,325.52,77.856 +533699,327.59,77.886 +533700,329.59,77.933 +533701,322.06,77.773 +533702,324.2,77.816 +533703,326.26,77.881 +533704,328.26,77.963 +533705,320.76,77.697 +533706,322.89,77.776 +533707,324.94,77.875 +533708,326.92,77.993 +533709,319.45,77.621 +533710,321.57,77.736 +533711,323.61,77.87 +533712,325.58,78.022 +533713,318.14,77.546 +533714,320.25,77.696 +533715,322.28,77.865 +533716,324.24,78.051 +533717,316.84,77.471 +533718,318.93,77.656 +533719,320.95,77.86 +533720,322.9,78.081 +533721,315.54,77.395 +533722,317.62,77.616 +533723,319.62,77.854 +533724,321.55,78.11 +533725,314.24,77.32 +533726,316.3,77.576 +533727,318.29,77.849 +533728,320.21,78.138 +533729,312.94,77.246 +533730,314.98,77.536 +533731,316.96,77.844 +533732,318.86,78.167 +533733,311.64,77.171 +533734,313.67,77.496 +533735,315.62,77.838 +533736,317.51,78.195 +533737,310.35,77.097 +533738,312.36,77.456 +533739,314.29,77.832 +533740,316.16,78.223 +533741,309.05,77.023 +533742,311.04,77.417 +533743,312.96,77.827 +533744,314.81,78.251 +533745,307.76,76.95 +533746,309.73,77.377 +533747,311.63,77.821 +533748,313.46,78.278 +533749,306.47,76.877 +533750,308.42,77.338 +533751,310.29,77.815 +533752,312.11,78.305 +533753,305.18,76.804 +533754,307.1,77.299 +533755,308.96,77.809 +533756,310.75,78.331 +533757,303.89,76.732 +533758,305.79,77.26 +533759,307.62,77.803 +533760,309.39,78.357 +533761,302.61,76.66 +533762,304.48,77.221 +533763,306.29,77.796 +533764,308.04,78.383 +533765,301.32,76.589 +533766,303.17,77.182 +533767,304.95,77.79 +533768,306.68,78.408 +533769,300.04,76.518 +533770,301.86,77.144 +533771,303.62,77.783 +533772,305.32,78.433 +533773,298.75,76.447 +533774,300.55,77.106 +533775,302.28,77.776 +533776,303.95,78.457 +533777,297.47,76.378 +533778,299.24,77.067 +533779,300.94,77.769 +533780,302.59,78.48 +533781,296.19,76.308 +533782,297.93,77.03 +533783,299.61,77.762 +533784,301.23,78.503 +533785,294.92,76.24 +533786,296.62,76.992 +533787,298.27,77.754 +533788,299.86,78.525 +533789,293.64,76.172 +533790,295.32,76.954 +533791,296.93,77.747 +533792,298.49,78.547 +533793,292.36,76.105 +533794,294.01,76.917 +533795,295.59,77.739 +533796,297.12,78.568 +533797,291.09,76.038 +533798,292.7,76.88 +533799,294.26,77.731 +533800,295.75,78.589 +533801,289.82,75.972 +533802,291.39,76.843 +533803,292.92,77.723 +533804,294.38,78.608 +533805,288.54,75.907 +533806,290.09,76.807 +533807,291.58,77.714 +533808,293.01,78.628 +533809,287.27,75.843 +533810,288.78,76.77 +533811,290.24,77.705 +533812,291.64,78.646 +533813,286,75.779 +533814,287.48,76.734 +533815,288.9,77.696 +533816,290.26,78.663 +533817,284.74,75.716 +533818,286.17,76.698 +533819,287.56,77.687 +533820,288.89,78.68 +533821,283.47,75.654 +533822,284.87,76.663 +533823,286.22,77.678 +533824,287.51,78.696 +533825,282.2,75.593 +533826,283.56,76.628 +533827,284.87,77.668 +533828,286.14,78.711 +533829,280.94,75.533 +533830,282.26,76.593 +533831,283.53,77.658 +533832,284.76,78.726 +533833,279.67,75.474 +533834,280.96,76.558 +533835,282.19,77.647 +533836,283.38,78.739 +533837,278.41,75.415 +533838,279.65,76.524 +533839,280.85,77.637 +533840,282,78.752 +533841,277.15,75.358 +533842,278.35,76.49 +533843,279.51,77.626 +533844,280.62,78.763 +533845,275.89,75.301 +533846,277.05,76.456 +533847,278.16,77.615 +533848,279.23,78.774 +533849,274.63,75.246 +533850,275.75,76.423 +533851,276.82,77.603 +533852,277.85,78.784 +533853,273.37,75.191 +533854,274.44,76.39 +533855,275.48,77.591 +533856,276.47,78.793 +533857,272.11,75.137 +533858,273.14,76.357 +533859,274.13,77.579 +533860,275.08,78.801 +533861,270.85,75.085 +533862,271.84,76.325 +533863,272.79,77.566 +533864,273.7,78.808 +533865,269.59,75.033 +533866,270.54,76.293 +533867,271.45,77.554 +533868,272.31,78.814 +533869,268.34,74.983 +533870,269.24,76.261 +533871,270.1,77.54 +533872,270.92,78.819 +533873,267.08,74.933 +533874,267.94,76.23 +533875,268.76,77.527 +533876,269.54,78.823 +533877,265.83,74.885 +533878,266.64,76.199 +533879,267.41,77.513 +533880,268.15,78.826 +533881,264.57,74.837 +533882,265.34,76.168 +533883,266.07,77.499 +533884,266.76,78.828 +533885,263.32,74.791 +533886,264.04,76.138 +533887,264.72,77.484 +533888,265.37,78.829 +533889,262.06,74.746 +533890,262.74,76.108 +533891,263.38,77.47 +533892,263.98,78.829 +533893,260.81,74.702 +533894,261.44,76.078 +533895,262.03,77.454 +533896,262.59,78.828 +533897,259.56,74.659 +533898,260.14,76.049 +533899,260.69,77.439 +533900,261.2,78.826 +533901,258.31,74.618 +533902,258.84,76.021 +533903,259.34,77.423 +533904,259.8,78.822 +533905,257.06,74.577 +533906,257.54,75.992 +533907,257.99,77.406 +533908,258.41,78.818 +533909,255.8,74.538 +533910,256.24,75.964 +533911,256.65,77.39 +533912,257.02,78.812 +533913,254.55,74.5 +533914,254.95,75.937 +533915,255.3,77.373 +533916,255.63,78.806 +533917,253.3,74.463 +533918,253.65,75.91 +533919,253.96,77.355 +533920,254.23,78.798 +533921,252.05,74.427 +533922,252.35,75.883 +533923,252.61,77.337 +533924,252.84,78.789 +533925,250.8,74.393 +533926,251.05,75.857 +533927,251.26,77.319 +533928,251.45,78.779 +533929,249.55,74.359 +533930,249.75,75.831 +533931,249.92,77.3 +533932,250.05,78.767 +533933,248.3,74.327 +533934,248.45,75.805 +533935,248.57,77.281 +533936,248.66,78.755 +533937,247.05,74.296 +533938,247.16,75.78 +533939,247.23,77.262 +533940,247.26,78.741 +533941,245.8,74.267 +533942,245.86,75.755 +533943,245.88,77.242 +533944,245.87,78.727 +533945,244.56,74.238 +533946,244.56,75.731 +533947,244.53,77.222 +533948,244.47,78.711 +533949,243.31,74.211 +533950,243.26,75.707 +533951,243.19,77.201 +533952,243.08,78.694 +533953,242.06,74.185 +533954,241.96,75.683 +533955,241.84,77.181 +533956,241.68,78.675 +533957,240.81,74.16 +533958,240.67,75.66 +533959,240.49,77.159 +533960,240.29,78.656 +533961,239.56,74.137 +533962,239.37,75.638 +533963,239.15,77.137 +533964,238.89,78.635 +533965,238.31,74.115 +533966,238.07,75.615 +533967,237.8,77.115 +533968,237.5,78.613 +533969,237.06,74.094 +533970,236.77,75.593 +533971,236.46,77.093 +533972,236.11,78.59 +533973,235.81,74.074 +533974,235.47,75.572 +533975,235.11,77.07 +533976,234.71,78.566 +533977,234.56,74.055 +533978,234.18,75.551 +533979,233.76,77.046 +533980,233.32,78.541 +533981,233.31,74.038 +533982,232.88,75.53 +533983,232.42,77.023 +533984,231.92,78.514 +533985,232.05,74.022 +533986,231.58,75.51 +533987,231.07,76.999 +533988,230.53,78.487 +533989,230.8,74.007 +533990,230.28,75.49 +533991,229.73,76.974 +533992,229.14,78.458 +533993,229.55,73.993 +533994,228.98,75.471 +533995,228.38,76.949 +533996,227.74,78.428 +533997,228.3,73.981 +533998,227.68,75.452 +533999,227.04,76.924 +534000,226.35,78.396 +534001,227.05,73.97 +534002,226.39,75.433 +534003,225.69,76.898 +534004,224.96,78.364 +534005,225.79,73.96 +534006,225.09,75.415 +534007,224.35,76.872 +534008,223.57,78.331 +534009,224.54,73.951 +534010,223.79,75.397 +534011,223,76.846 +534012,222.18,78.296 +534013,223.28,73.943 +534014,222.49,75.38 +534015,221.66,76.819 +534016,220.79,78.26 +534017,222.03,73.936 +534018,221.19,75.363 +534019,220.31,76.792 +534020,219.39,78.223 +534021,220.77,73.931 +534022,219.89,75.346 +534023,218.97,76.764 +534024,218.01,78.185 +534025,219.52,73.927 +534026,218.59,75.33 +534027,217.62,76.736 +534028,216.62,78.146 +534029,218.26,73.924 +534030,217.29,75.314 +534031,216.28,76.708 +534032,215.23,78.105 +534033,217,73.922 +534034,215.99,75.298 +534035,214.94,76.679 +534036,213.84,78.064 +534037,215.74,73.921 +534038,214.69,75.283 +534039,213.59,76.65 +534040,212.45,78.022 +534041,214.48,73.921 +534042,213.39,75.269 +534043,212.25,76.621 +534044,211.07,77.978 +534045,213.22,73.923 +534046,212.09,75.254 +534047,210.91,76.591 +534048,209.68,77.933 +534049,211.96,73.925 +534050,210.79,75.24 +534051,209.57,76.561 +534052,208.3,77.888 +534053,210.7,73.929 +534054,209.48,75.227 +534055,208.23,76.531 +534056,206.92,77.841 +534057,209.44,73.933 +534058,208.18,75.213 +534059,206.88,76.5 +534060,205.53,77.793 +534061,208.17,73.939 +534062,206.88,75.2 +534063,205.54,76.469 +534064,204.15,77.744 +534065,206.91,73.946 +534066,205.58,75.188 +534067,204.2,76.437 +534068,202.77,77.694 +534069,205.64,73.953 +534070,204.28,75.175 +534071,202.86,76.405 +534072,201.39,77.643 +534073,204.38,73.962 +534074,202.97,75.163 +534075,201.52,76.373 +534076,200.01,77.592 +534077,203.11,73.972 +534078,201.67,75.152 +534079,200.18,76.341 +534080,198.64,77.539 +534081,201.84,73.982 +534082,200.37,75.141 +534083,198.84,76.308 +534084,197.26,77.485 +534085,200.57,73.994 +534086,199.06,75.13 +534087,197.5,76.275 +534088,195.89,77.43 +534089,199.3,74.006 +534090,197.76,75.119 +534091,196.16,76.242 +534092,194.51,77.375 +534093,198.02,74.02 +534094,196.45,75.109 +534095,194.83,76.208 +534096,193.14,77.318 +534097,196.75,74.034 +534098,195.15,75.099 +534099,193.49,76.174 +534100,191.77,77.261 +534101,195.47,74.049 +534102,193.84,75.089 +534103,192.15,76.14 +534104,190.4,77.203 +534105,194.2,74.065 +534106,192.54,75.079 +534107,190.81,76.106 +534108,189.03,77.144 +534109,192.92,74.081 +534110,191.23,75.07 +534111,189.48,76.071 +534112,187.66,77.084 +534113,191.64,74.099 +534114,189.92,75.061 +534115,188.14,76.036 +534116,186.29,77.023 +534117,190.36,74.117 +534118,188.61,75.052 +534119,186.81,76 +534120,184.93,76.962 +534121,189.08,74.136 +534122,187.31,75.044 +534123,185.47,75.965 +534124,183.57,76.9 +534125,187.8,74.156 +534126,186,75.036 +534127,184.14,75.929 +534128,182.2,76.837 +534129,186.51,74.176 +534130,184.69,75.028 +534131,182.8,75.893 +534132,180.84,76.773 +534133,185.23,74.197 +534134,183.38,75.02 +534135,181.47,75.857 +534136,179.48,76.708 +534137,183.94,74.219 +534138,182.07,75.013 +534139,180.14,75.821 +534140,178.13,76.643 +534141,182.65,74.242 +534142,180.76,75.006 +534143,178.8,75.784 +534144,176.77,76.578 +534145,181.36,74.265 +534146,179.45,74.998 +534147,177.47,75.747 +534148,175.42,76.511 +534149,180.07,74.288 +534150,178.14,74.992 +534151,176.14,75.71 +534152,174.06,76.444 +534153,178.78,74.312 +534154,176.83,74.985 +534155,174.81,75.673 +534156,172.71,76.377 +534157,177.48,74.337 +534158,175.52,74.978 +534159,173.48,75.635 +534160,171.36,76.309 +534161,176.19,74.362 +534162,174.2,74.972 +534163,172.15,75.598 +534164,170.01,76.24 +534165,174.89,74.388 +534166,172.89,74.966 +534167,170.82,75.56 +534168,168.67,76.171 +534169,173.59,74.414 +534170,171.58,74.96 +534171,169.49,75.522 +534172,167.32,76.101 +534173,172.29,74.44 +534174,170.26,74.954 +534175,168.16,75.484 +534176,165.98,76.031 +534177,170.99,74.467 +534178,168.95,74.949 +534179,166.84,75.446 +534180,164.64,75.961 +534181,169.69,74.495 +534182,167.64,74.943 +534183,165.51,75.408 +534184,163.29,75.89 +534185,168.38,74.522 +534186,166.32,74.938 +534187,164.18,75.369 +534188,161.96,75.818 +534189,167.07,74.55 +534190,165,74.932 +534191,162.86,75.331 +534192,160.62,75.747 +534193,165.77,74.579 +534194,163.69,74.927 +534195,161.53,75.292 +534196,159.28,75.675 +534197,164.46,74.607 +534198,162.37,74.922 +534199,160.21,75.253 +534200,157.95,75.602 +534201,163.15,74.636 +534202,161.05,74.917 +534203,158.88,75.214 +534204,156.62,75.53 +534205,161.83,74.665 +534206,159.73,74.912 +534207,157.56,75.176 +534208,155.29,75.457 +534209,160.52,74.694 +534210,158.42,74.907 +534211,156.23,75.137 +534212,153.96,75.384 +534213,159.2,74.723 +534214,157.1,74.902 +534215,154.91,75.098 +534216,152.63,75.311 +534217,157.88,74.753 +534218,155.78,74.898 +534219,153.59,75.058 +534220,151.31,75.237 +534221,156.57,74.782 +534222,154.46,74.893 +534223,152.27,75.019 +534224,149.99,75.164 +534225,155.24,74.812 +534226,153.14,74.888 +534227,150.95,74.98 +534228,148.67,75.09 +534229,153.92,74.842 +534230,151.82,74.884 +534231,149.63,74.941 +534232,147.35,75.016 +534233,152.6,74.871 +534234,150.49,74.879 +534235,148.31,74.902 +534236,146.03,74.942 +534237,151.27,74.901 +534238,149.17,74.874 +534239,146.99,74.863 +534240,144.71,74.869 +534241,149.95,74.931 +534242,147.85,74.87 +534243,145.67,74.824 +534244,143.4,74.795 +534245,148.62,74.96 +534246,146.53,74.865 +534247,144.35,74.785 +534248,142.09,74.721 +534249,147.29,74.99 +534250,145.2,74.86 +534251,143.04,74.745 +534252,140.78,74.647 +534253,145.95,75.019 +534254,143.88,74.856 +534255,141.72,74.706 +534256,139.47,74.573 +534257,144.62,75.048 +534258,142.55,74.851 +534259,140.4,74.667 +534260,138.16,74.5 +534261,143.29,75.078 +534262,141.23,74.846 +534263,139.09,74.628 +534264,136.85,74.426 +534265,141.95,75.106 +534266,139.9,74.841 +534267,137.77,74.589 +534268,135.55,74.353 +534269,140.61,75.135 +534270,138.58,74.836 +534271,136.46,74.551 +534272,134.25,74.28 +534273,139.27,75.163 +534274,137.25,74.831 +534275,135.14,74.512 +534276,132.95,74.207 +534277,137.93,75.192 +534278,135.92,74.826 +534279,133.83,74.473 +534280,131.65,74.135 +534281,136.59,75.219 +534282,134.59,74.821 +534283,132.52,74.435 +534284,130.35,74.062 +534285,135.24,75.247 +534286,133.26,74.816 +534287,131.21,74.396 +534288,129.06,73.99 +534289,133.9,75.274 +534290,131.94,74.81 +534291,129.89,74.358 +534292,127.76,73.919 +534293,132.55,75.301 +534294,130.61,74.805 +534295,128.58,74.32 +534296,126.47,73.848 +534297,131.2,75.327 +534298,129.28,74.799 +534299,127.27,74.282 +534300,125.18,73.777 +534301,129.85,75.353 +534302,127.95,74.793 +534303,125.96,74.244 +534304,123.89,73.706 +534305,128.5,75.378 +534306,126.61,74.787 +534307,124.65,74.206 +534308,122.61,73.636 +534309,127.14,75.403 +534310,125.28,74.781 +534311,123.34,74.168 +534312,121.32,73.566 +534313,125.79,75.428 +534314,123.95,74.775 +534315,122.04,74.131 +534316,120.04,73.497 +534317,124.43,75.452 +534318,122.62,74.769 +534319,120.73,74.094 +534320,118.75,73.429 +534321,123.08,75.475 +534322,121.29,74.762 +534323,119.42,74.056 +534324,117.47,73.361 +534325,121.72,75.498 +534326,119.95,74.755 +534327,118.11,74.02 +534328,116.19,73.293 +534329,120.36,75.52 +534330,118.62,74.748 +534331,116.81,73.983 +534332,114.92,73.227 +534333,119,75.542 +534334,117.28,74.741 +534335,115.5,73.946 +534336,113.64,73.16 +534337,117.63,75.563 +534338,115.95,74.734 +534339,114.2,73.91 +534340,112.36,73.095 +534341,116.27,75.583 +534342,114.61,74.726 +534343,112.89,73.874 +534344,111.09,73.03 +534345,114.9,75.602 +534346,113.28,74.718 +534347,111.59,73.838 +534348,109.82,72.966 +534349,113.54,75.621 +534350,111.94,74.71 +534351,110.28,73.803 +534352,108.55,72.902 +534353,112.17,75.639 +534354,110.61,74.702 +534355,108.98,73.768 +534356,107.28,72.839 +534357,110.8,75.657 +534358,109.27,74.693 +534359,107.68,73.732 +534360,106.01,72.777 +534361,109.43,75.673 +534362,107.93,74.684 +534363,106.37,73.698 +534364,104.74,72.716 +534365,108.06,75.689 +534366,106.6,74.675 +534367,105.07,73.663 +534368,103.48,72.656 +534369,106.68,75.704 +534370,105.26,74.666 +534371,103.77,73.629 +534372,102.21,72.596 +534373,105.31,75.718 +534374,103.92,74.656 +534375,102.47,73.595 +534376,100.95,72.538 +534377,103.93,75.732 +534378,102.58,74.646 +534379,101.17,73.561 +534380,99.687,72.48 +534381,102.56,75.744 +534382,101.24,74.636 +534383,99.866,73.528 +534384,98.426,72.423 +534385,101.18,75.755 +534386,99.902,74.625 +534387,98.566,73.495 +534388,97.166,72.367 +534389,99.802,75.766 +534390,98.563,74.614 +534391,97.266,73.462 +534392,95.907,72.312 +534393,98.423,75.776 +534394,97.223,74.603 +534395,95.966,73.43 +534396,94.649,72.257 +534397,97.043,75.785 +534398,95.883,74.592 +534399,94.667,73.398 +534400,93.393,72.204 +534401,95.662,75.792 +534402,94.542,74.58 +534403,93.368,73.366 +534404,92.137,72.152 +534405,94.28,75.799 +534406,93.201,74.568 +534407,92.07,73.335 +534408,90.882,72.101 +534409,92.897,75.805 +534410,91.86,74.556 +534411,90.772,73.303 +534412,89.628,72.051 +534413,91.513,75.81 +534414,90.519,74.543 +534415,89.474,73.273 +534416,88.375,72.002 +534417,90.128,75.814 +534418,89.177,74.53 +534419,88.176,73.242 +534420,87.123,71.953 +534421,88.743,75.817 +534422,87.835,74.516 +534423,86.879,73.212 +534424,85.871,71.906 +534425,87.357,75.819 +534426,86.493,74.502 +534427,85.582,73.183 +534428,84.621,71.86 +534429,85.97,75.819 +534430,85.15,74.488 +534431,84.285,73.153 +534432,83.371,71.816 +534433,84.582,75.819 +534434,83.808,74.474 +534435,82.988,73.124 +534436,82.122,71.772 +534437,83.194,75.818 +534438,82.465,74.459 +534439,81.692,73.096 +534440,80.873,71.729 +534441,81.805,75.815 +534442,81.122,74.444 +534443,80.396,73.067 +534444,79.625,71.688 +534445,80.415,75.812 +534446,79.779,74.428 +534447,79.1,73.039 +534448,78.378,71.647 +534449,79.025,75.807 +534450,78.435,74.412 +534451,77.805,73.012 +534452,77.131,71.608 +534453,77.634,75.801 +534454,77.092,74.396 +534455,76.509,72.985 +534456,75.884,71.57 +534457,76.243,75.794 +534458,75.748,74.379 +534459,75.214,72.958 +534460,74.638,71.533 +534461,74.851,75.786 +534462,74.404,74.362 +534463,73.919,72.932 +534464,73.393,71.497 +534465,73.459,75.777 +534466,73.06,74.345 +534467,72.624,72.906 +534468,72.148,71.463 +534469,72.067,75.767 +534470,71.716,74.327 +534471,71.329,72.88 +534472,70.903,71.429 +534473,70.674,75.756 +534474,70.372,74.309 +534475,70.034,72.855 +534476,69.658,71.397 +534477,69.281,75.743 +534478,69.028,74.29 +534479,68.739,72.831 +534480,68.414,71.366 +534481,67.887,75.729 +534482,67.684,74.271 +534483,67.445,72.806 +534484,67.17,71.336 +534485,66.494,75.714 +534486,66.339,74.252 +534487,66.151,72.782 +534488,65.926,71.308 +534489,65.1,75.698 +534490,64.995,74.232 +534491,64.856,72.759 +534492,64.683,71.28 +534493,63.705,75.681 +534494,63.65,74.212 +534495,63.562,72.736 +534496,63.439,71.254 +534497,62.311,75.663 +534498,62.306,74.191 +534499,62.268,72.713 +534500,62.196,71.229 +534501,60.917,75.643 +534502,60.961,74.17 +534503,60.973,72.69 +534504,60.952,71.205 +534505,59.522,75.623 +534506,59.617,74.149 +534507,59.679,72.669 +534508,59.709,71.183 +534509,58.128,75.601 +534510,58.272,74.127 +534511,58.385,72.647 +534512,58.465,71.162 +534513,56.733,75.578 +534514,56.928,74.105 +534515,57.091,72.626 +534516,57.222,71.142 +534517,55.339,75.553 +534518,55.584,74.082 +534519,55.797,72.605 +534520,55.978,71.123 +534521,53.944,75.528 +534522,54.239,74.06 +534523,54.502,72.585 +534524,54.734,71.105 +534525,52.55,75.501 +534526,52.895,74.036 +534527,53.208,72.565 +534528,53.49,71.089 +534529,51.156,75.474 +534530,51.551,74.012 +534531,51.914,72.545 +534532,52.246,71.074 +534533,49.762,75.445 +534534,50.207,73.988 +534535,50.619,72.526 +534536,51.001,71.06 +534537,48.368,75.415 +534538,48.863,73.964 +534539,49.325,72.508 +534540,49.756,71.047 +534541,46.975,75.384 +534542,47.519,73.939 +534543,48.03,72.489 +534544,48.511,71.035 +534545,45.581,75.351 +534546,46.175,73.914 +534547,46.736,72.471 +534548,47.265,71.025 +534549,44.189,75.318 +534550,44.831,73.888 +534551,45.441,72.454 +534552,46.019,71.016 +534553,42.796,75.283 +534554,43.488,73.862 +534555,44.146,72.437 +534556,44.772,71.008 +534557,41.404,75.247 +534558,42.144,73.836 +534559,42.851,72.42 +534560,43.525,71.001 +534561,40.012,75.21 +534562,40.801,73.809 +534563,41.555,72.403 +534564,42.277,70.995 +534565,38.621,75.172 +534566,39.458,73.782 +534567,40.26,72.387 +534568,41.029,70.991 +534569,37.231,75.133 +534570,38.116,73.754 +534571,38.964,72.372 +534572,39.78,70.987 +534573,35.841,75.093 +534574,36.773,73.726 +534575,37.669,72.357 +534576,38.53,70.985 +534577,34.451,75.052 +534578,35.431,73.698 +534579,36.373,72.342 +534580,37.28,70.984 +534581,33.062,75.009 +534582,34.089,73.669 +534583,35.076,72.327 +534584,36.029,70.984 +534585,31.674,74.966 +534586,32.747,73.64 +534587,33.78,72.313 +534588,34.777,70.985 +534589,30.287,74.921 +534590,31.405,73.611 +534591,32.483,72.299 +534592,33.525,70.987 +534593,28.9,74.876 +534594,30.064,73.581 +534595,31.186,72.286 +534596,32.272,70.99 +534597,27.514,74.829 +534598,28.723,73.551 +534599,29.889,72.273 +534600,31.017,70.995 +534601,26.129,74.781 +534602,27.382,73.521 +534603,28.592,72.26 +534604,29.762,71 +534605,24.745,74.733 +534606,26.042,73.49 +534607,27.294,72.248 +534608,28.506,71.006 +534609,23.362,74.683 +534610,24.702,73.459 +534611,25.996,72.236 +534612,27.249,71.014 +534613,21.979,74.632 +534614,23.362,73.428 +534615,24.697,72.224 +534616,25.991,71.022 +534617,20.598,74.581 +534618,22.022,73.396 +534619,23.399,72.212 +534620,24.732,71.031 +534621,19.217,74.528 +534622,20.683,73.364 +534623,22.1,72.201 +534624,23.472,71.041 +534625,17.838,74.475 +534626,19.345,73.332 +534627,20.8,72.191 +534628,22.211,71.053 +534629,16.459,74.42 +534630,18.006,73.299 +534631,19.501,72.18 +534632,20.949,71.065 +534633,15.082,74.365 +534634,16.668,73.266 +534635,18.201,72.17 +534636,19.686,71.078 +534637,13.706,74.309 +534638,15.331,73.233 +534639,16.9,72.16 +534640,18.421,71.092 +534641,12.331,74.252 +534642,13.994,73.199 +534643,15.599,72.151 +534644,17.155,71.107 +534645,10.957,74.194 +534646,12.657,73.165 +534647,14.298,72.141 +534648,15.889,71.122 +534649,9.5845,74.135 +534650,11.321,73.131 +534651,12.997,72.132 +534652,14.62,71.139 +534653,8.2131,74.076 +534654,9.9848,73.097 +534655,11.695,72.124 +534656,13.351,71.156 +534657,6.843,74.015 +534658,8.6493,73.062 +534659,10.392,72.115 +534660,12.08,71.174 +534661,5.4742,73.954 +534662,7.3143,73.028 +534663,9.0894,72.107 +534664,10.808,71.193 +534665,4.1067,73.892 +534666,5.9798,72.992 +534667,7.7862,72.099 +534668,9.5351,71.212 +534669,2.7406,73.83 +534670,4.6457,72.957 +534671,6.4825,72.091 +534672,8.2604,71.232 +534673,1.3759,73.766 +534674,3.3121,72.921 +534675,5.1784,72.084 +534676,6.9844,71.253 +534677,0.012654,73.702 +534678,1.979,72.886 +534679,3.8738,72.076 +534680,5.707,71.275 +534681,358.65,73.638 +534682,0.6464,72.85 +534683,2.5688,72.069 +534684,4.4282,71.297 +534685,357.29,73.572 +534686,359.31,72.813 +534687,1.2633,72.063 +534688,3.1479,71.32 +534689,355.93,73.507 +534690,357.98,72.777 +534691,359.96,72.056 +534692,1.8662,71.344 +534693,354.57,73.44 +534694,356.65,72.74 +534695,358.65,72.049 +534696,0.58306,71.368 +534697,353.22,73.373 +534698,355.32,72.703 +534699,357.34,72.043 +534700,359.3,71.392 +534701,351.86,73.305 +534702,353.99,72.666 +534703,356.04,72.037 +534704,358.01,71.417 +534705,350.51,73.237 +534706,352.66,72.629 +534707,354.73,72.031 +534708,356.72,71.443 +534709,349.16,73.168 +534710,351.33,72.592 +534711,353.42,72.025 +534712,355.44,71.469 +534713,347.81,73.099 +534714,350,72.554 +534715,352.11,72.02 +534716,354.14,71.495 +534717,346.46,73.03 +534718,348.68,72.517 +534719,350.8,72.014 +534720,352.85,71.522 +534721,345.12,72.96 +534722,347.35,72.479 +534723,349.49,72.009 +534724,351.56,71.549 +534725,343.77,72.889 +534726,346.02,72.441 +534727,348.18,72.004 +534728,350.26,71.577 +534729,342.43,72.819 +534730,344.7,72.403 +534731,346.87,71.999 +534732,348.97,71.605 +534733,341.09,72.747 +534734,343.37,72.365 +534735,345.56,71.994 +534736,347.67,71.633 +534737,339.75,72.676 +534738,342.05,72.327 +534739,344.25,71.989 +534740,346.37,71.662 +534741,338.41,72.604 +534742,340.72,72.288 +534743,342.93,71.984 +534744,345.07,71.691 +534745,337.08,72.532 +534746,339.4,72.25 +534747,341.62,71.979 +534748,343.76,71.72 +534749,335.74,72.46 +534750,338.07,72.211 +534751,340.31,71.975 +534752,342.46,71.749 +534753,334.41,72.387 +534754,336.75,72.173 +534755,338.99,71.97 +534756,341.15,71.778 +534757,333.08,72.315 +534758,335.43,72.134 +534759,337.68,71.965 +534760,339.84,71.808 +534761,331.75,72.242 +534762,334.11,72.095 +534763,336.36,71.961 +534764,338.53,71.838 +534765,330.42,72.169 +534766,332.79,72.057 +534767,335.05,71.957 +534768,337.22,71.867 +534769,329.1,72.096 +534770,331.47,72.018 +534771,333.73,71.952 +534772,335.91,71.897 +534773,327.77,72.023 +534774,330.15,71.979 +534775,332.41,71.948 +534776,334.59,71.927 +534777,326.45,71.949 +534778,328.83,71.94 +534779,331.1,71.943 +534780,333.28,71.957 +534781,325.13,71.876 +534782,327.51,71.902 +534783,329.78,71.939 +534784,331.96,71.987 +534785,323.82,71.803 +534786,326.19,71.863 +534787,328.46,71.934 +534788,330.64,72.017 +534789,322.5,71.73 +534790,324.87,71.824 +534791,327.14,71.93 +534792,329.32,72.046 +534793,321.19,71.657 +534794,323.56,71.785 +534795,325.82,71.925 +534796,327.99,72.076 +534797,319.87,71.584 +534798,322.24,71.747 +534799,324.5,71.921 +534800,326.67,72.105 +534801,318.56,71.511 +534802,320.92,71.708 +534803,323.18,71.916 +534804,325.34,72.135 +534805,317.25,71.438 +534806,319.61,71.669 +534807,321.86,71.912 +534808,324.01,72.164 +534809,315.95,71.365 +534810,318.3,71.631 +534811,320.54,71.907 +534812,322.68,72.193 +534813,314.64,71.293 +534814,316.98,71.592 +534815,319.21,71.902 +534816,321.35,72.221 +534817,313.34,71.221 +534818,315.67,71.554 +534819,317.89,71.897 +534820,320.02,72.25 +534821,312.04,71.149 +534822,314.36,71.516 +534823,316.57,71.892 +534824,318.68,72.278 +534825,310.74,71.077 +534826,313.04,71.477 +534827,315.24,71.887 +534828,317.35,72.306 +534829,309.44,71.006 +534830,311.73,71.439 +534831,313.92,71.882 +534832,316.01,72.333 +534833,308.14,70.935 +534834,310.42,71.401 +534835,312.59,71.877 +534836,314.67,72.36 +534837,306.85,70.864 +534838,309.11,71.363 +534839,311.27,71.872 +534840,313.33,72.387 +534841,305.56,70.794 +534842,307.8,71.326 +534843,309.94,71.866 +534844,311.99,72.413 +534845,304.26,70.724 +534846,306.49,71.288 +534847,308.61,71.86 +534848,310.64,72.439 +534849,302.98,70.655 +534850,305.18,71.251 +534851,307.29,71.854 +534852,309.3,72.464 +534853,301.69,70.586 +534854,303.88,71.213 +534855,305.96,71.848 +534856,307.95,72.489 +534857,300.4,70.517 +534858,302.57,71.176 +534859,304.63,71.842 +534860,306.6,72.513 +534861,299.12,70.45 +534862,301.26,71.139 +534863,303.3,71.836 +534864,305.25,72.537 +534865,297.84,70.382 +534866,299.96,71.102 +534867,301.97,71.829 +534868,303.9,72.56 +534869,296.56,70.315 +534870,298.65,71.066 +534871,300.64,71.822 +534872,302.55,72.583 +534873,295.28,70.249 +534874,297.34,71.03 +534875,299.31,71.815 +534876,301.19,72.605 +534877,294,70.184 +534878,296.04,70.993 +534879,297.98,71.808 +534880,299.83,72.626 +534881,292.72,70.119 +534882,294.74,70.957 +534883,296.65,71.801 +534884,298.48,72.647 +534885,291.45,70.054 +534886,293.43,70.922 +534887,295.32,71.793 +534888,297.12,72.667 +534889,290.18,69.991 +534890,292.13,70.886 +534891,293.99,71.785 +534892,295.76,72.686 +534893,288.9,69.928 +534894,290.83,70.851 +534895,292.65,71.777 +534896,294.4,72.705 +534897,287.63,69.866 +534898,289.52,70.816 +534899,291.32,71.769 +534900,293.03,72.722 +534901,286.37,69.805 +534902,288.22,70.781 +534903,289.99,71.76 +534904,291.67,72.739 +534905,285.1,69.744 +534906,286.92,70.747 +534907,288.65,71.751 +534908,290.3,72.756 +534909,283.83,69.684 +534910,285.62,70.713 +534911,287.32,71.742 +534912,288.94,72.771 +534913,282.57,69.626 +534914,284.32,70.679 +534915,285.98,71.733 +534916,287.57,72.786 +534917,281.31,69.567 +534918,283.02,70.645 +534919,284.65,71.723 +534920,286.2,72.799 +534921,280.04,69.51 +534922,281.72,70.612 +534923,283.31,71.713 +534924,284.83,72.812 +534925,278.78,69.454 +534926,280.42,70.579 +534927,281.98,71.703 +534928,283.46,72.824 +534929,277.53,69.399 +534930,279.12,70.546 +534931,280.64,71.692 +534932,282.08,72.835 +534933,276.27,69.344 +534934,277.83,70.513 +534935,279.3,71.681 +534936,280.71,72.845 +534937,275.01,69.291 +534938,276.53,70.481 +534939,277.97,71.67 +534940,279.33,72.855 +534941,273.76,69.238 +534942,275.23,70.449 +534943,276.63,71.658 +534944,277.96,72.863 +534945,272.5,69.187 +534946,273.93,70.418 +534947,275.29,71.646 +534948,276.58,72.87 +534949,271.25,69.136 +534950,272.64,70.387 +534951,273.95,71.634 +534952,275.2,72.877 +534953,270,69.086 +534954,271.34,70.356 +534955,272.61,71.622 +534956,273.82,72.882 +534957,268.75,69.038 +534958,270.05,70.325 +534959,271.28,71.609 +534960,272.44,72.886 +534961,267.5,68.99 +534962,268.75,70.295 +534963,269.94,71.595 +534964,271.06,72.889 +534965,266.25,68.944 +534966,267.46,70.265 +534967,268.6,71.582 +534968,269.68,72.892 +534969,265,68.899 +534970,266.16,70.236 +534971,267.26,71.568 +534972,268.29,72.893 +534973,263.75,68.854 +534974,264.87,70.207 +534975,265.92,71.553 +534976,266.91,72.893 +534977,262.5,68.811 +534978,263.57,70.178 +534979,264.58,71.539 +534980,265.53,72.892 +534981,261.26,68.769 +534982,262.28,70.15 +534983,263.24,71.524 +534984,264.14,72.89 +534985,260.01,68.728 +534986,260.98,70.122 +534987,261.9,71.508 +534988,262.75,72.887 +534989,258.77,68.689 +534990,259.69,70.094 +534991,260.56,71.493 +534992,261.37,72.883 +534993,257.53,68.65 +534994,258.4,70.067 +534995,259.21,71.476 +534996,259.98,72.877 +534997,256.28,68.612 +534998,257.1,70.04 +534999,257.87,71.46 +535000,258.59,72.871 +535001,255.04,68.576 +535002,255.81,70.013 +535003,256.53,71.443 +535004,257.2,72.863 +535005,253.8,68.541 +535006,254.52,69.987 +535007,255.19,71.426 +535008,255.81,72.855 +535009,252.56,68.507 +535010,253.23,69.961 +535011,253.85,71.408 +535012,254.42,72.845 +535013,251.32,68.474 +535014,251.94,69.936 +535015,252.51,71.39 +535016,253.03,72.834 +535017,250.08,68.443 +535018,250.64,69.911 +535019,251.16,71.371 +535020,251.64,72.821 +535021,248.84,68.412 +535022,249.35,69.887 +535023,249.82,71.352 +535024,250.25,72.808 +535025,247.6,68.383 +535026,248.06,69.862 +535027,248.48,71.333 +535028,248.85,72.793 +535029,246.36,68.355 +535030,246.77,69.839 +535031,247.14,71.313 +535032,247.46,72.778 +535033,245.12,68.328 +535034,245.48,69.815 +535035,245.79,71.293 +535036,246.07,72.761 +535037,243.88,68.303 +535038,244.19,69.792 +535039,244.45,71.273 +535040,244.68,72.743 +535041,242.64,68.279 +535042,242.89,69.77 +535043,243.11,71.252 +535044,243.28,72.724 +535045,241.4,68.255 +535046,241.6,69.748 +535047,241.76,71.231 +535048,241.89,72.703 +535049,240.17,68.234 +535050,240.31,69.726 +535051,240.42,71.209 +535052,240.49,72.682 +535053,238.93,68.213 +535054,239.02,69.704 +535055,239.08,71.187 +535056,239.1,72.659 +535057,237.69,68.193 +535058,237.73,69.683 +535059,237.74,71.164 +535060,237.71,72.635 +535061,236.45,68.175 +535062,236.44,69.663 +535063,236.39,71.141 +535064,236.31,72.61 +535065,235.21,68.158 +535066,235.15,69.643 +535067,235.05,71.118 +535068,234.92,72.583 +535069,233.98,68.142 +535070,233.86,69.623 +535071,233.71,71.094 +535072,233.52,72.556 +535073,232.74,68.128 +535074,232.57,69.603 +535075,232.36,71.07 +535076,232.13,72.527 +535077,231.5,68.114 +535078,231.28,69.584 +535079,231.02,71.046 +535080,230.73,72.497 +535081,230.26,68.102 +535082,229.98,69.566 +535083,229.68,71.021 +535084,229.34,72.466 +535085,229.02,68.091 +535086,228.69,69.548 +535087,228.33,70.996 +535088,227.95,72.434 +535089,227.78,68.081 +535090,227.4,69.53 +535091,226.99,70.97 +535092,226.55,72.401 +535093,226.54,68.073 +535094,226.11,69.512 +535095,225.65,70.944 +535096,225.16,72.366 +535097,225.3,68.065 +535098,224.82,69.495 +535099,224.31,70.917 +535100,223.76,72.33 +535101,224.06,68.059 +535102,223.53,69.479 +535103,222.96,70.891 +535104,222.37,72.294 +535105,222.82,68.054 +535106,222.24,69.462 +535107,221.62,70.863 +535108,220.98,72.256 +535109,221.58,68.05 +535110,220.94,69.446 +535111,220.28,70.836 +535112,219.59,72.217 +535113,220.34,68.047 +535114,219.65,69.431 +535115,218.94,70.808 +535116,218.19,72.176 +535117,219.09,68.045 +535118,218.36,69.416 +535119,217.6,70.779 +535120,216.8,72.135 +535121,217.85,68.045 +535122,217.07,69.401 +535123,216.25,70.751 +535124,215.41,72.093 +535125,216.61,68.045 +535126,215.78,69.387 +535127,214.91,70.722 +535128,214.02,72.049 +535129,215.36,68.047 +535130,214.48,69.372 +535131,213.57,70.692 +535132,212.63,72.005 +535133,214.12,68.05 +535134,213.19,69.359 +535135,212.23,70.662 +535136,211.24,71.959 +535137,212.87,68.053 +535138,211.9,69.345 +535139,210.89,70.632 +535140,209.85,71.912 +535141,211.62,68.058 +535142,210.6,69.332 +535143,209.55,70.602 +535144,208.46,71.865 +535145,210.38,68.064 +535146,209.31,69.32 +535147,208.21,70.571 +535148,207.07,71.816 +535149,209.13,68.071 +535150,208.02,69.307 +535151,206.87,70.539 +535152,205.69,71.766 +535153,207.88,68.079 +535154,206.72,69.295 +535155,205.53,70.508 +535156,204.3,71.715 +535157,206.63,68.088 +535158,205.43,69.284 +535159,204.19,70.476 +535160,202.92,71.664 +535161,205.38,68.098 +535162,204.13,69.272 +535163,202.85,70.444 +535164,201.53,71.611 +535165,204.12,68.108 +535166,202.84,69.261 +535167,201.51,70.411 +535168,200.15,71.557 +535169,202.87,68.12 +535170,201.54,69.25 +535171,200.18,70.378 +535172,198.77,71.503 +535173,201.62,68.133 +535174,200.25,69.24 +535175,198.84,70.345 +535176,197.38,71.447 +535177,200.36,68.146 +535178,198.95,69.23 +535179,197.5,70.312 +535180,196,71.391 +535181,199.1,68.161 +535182,197.65,69.22 +535183,196.16,70.278 +535184,194.62,71.333 +535185,197.85,68.176 +535186,196.36,69.21 +535187,194.83,70.244 +535188,193.24,71.275 +535189,196.59,68.192 +535190,195.06,69.201 +535191,193.49,70.209 +535192,191.87,71.216 +535193,195.33,68.209 +535194,193.76,69.192 +535195,192.15,70.175 +535196,190.49,71.156 +535197,194.07,68.227 +535198,192.47,69.183 +535199,190.82,70.14 +535200,189.12,71.096 +535201,192.8,68.245 +535202,191.17,69.175 +535203,189.48,70.105 +535204,187.74,71.034 +535205,191.54,68.264 +535206,189.87,69.166 +535207,188.15,70.069 +535208,186.37,70.972 +535209,190.27,68.284 +535210,188.57,69.158 +535211,186.81,70.034 +535212,185,70.909 +535213,189.01,68.305 +535214,187.27,69.151 +535215,185.48,69.998 +535216,183.63,70.845 +535217,187.74,68.326 +535218,185.97,69.143 +535219,184.15,69.961 +535220,182.26,70.781 +535221,186.47,68.348 +535222,184.67,69.136 +535223,182.81,69.925 +535224,180.89,70.716 +535225,185.2,68.371 +535226,183.37,69.128 +535227,181.48,69.888 +535228,179.52,70.65 +535229,183.93,68.394 +535230,182.07,69.121 +535231,180.15,69.851 +535232,178.16,70.583 +535233,182.65,68.418 +535234,180.77,69.115 +535235,178.82,69.814 +535236,176.8,70.516 +535237,181.38,68.443 +535238,179.46,69.108 +535239,177.49,69.777 +535240,175.43,70.449 +535241,180.1,68.467 +535242,178.16,69.102 +535243,176.15,69.74 +535244,174.07,70.38 +535245,178.82,68.493 +535246,176.86,69.096 +535247,174.82,69.702 +535248,172.71,70.312 +535249,177.54,68.519 +535250,175.55,69.089 +535251,173.5,69.664 +535252,171.36,70.242 +535253,176.26,68.545 +535254,174.25,69.084 +535255,172.17,69.626 +535256,170,70.173 +535257,174.98,68.572 +535258,172.94,69.078 +535259,170.84,69.588 +535260,168.65,70.102 +535261,173.7,68.599 +535262,171.64,69.072 +535263,169.51,69.55 +535264,167.29,70.032 +535265,172.41,68.627 +535266,170.33,69.067 +535267,168.18,69.511 +535268,165.94,69.961 +535269,171.12,68.655 +535270,169.03,69.061 +535271,166.86,69.473 +535272,164.59,69.889 +535273,169.83,68.683 +535274,167.72,69.056 +535275,165.53,69.434 +535276,163.25,69.817 +535277,168.54,68.711 +535278,166.41,69.051 +535279,164.2,69.395 +535280,161.9,69.745 +535281,167.25,68.74 +535282,165.11,69.046 +535283,162.88,69.356 +535284,160.56,69.672 +535285,165.96,68.769 +535286,163.8,69.041 +535287,161.55,69.317 +535288,159.21,69.6 +535289,164.66,68.799 +535290,162.49,69.036 +535291,160.23,69.278 +535292,157.87,69.526 +535293,163.36,68.828 +535294,161.18,69.031 +535295,158.91,69.239 +535296,156.53,69.453 +535297,162.06,68.858 +535298,159.87,69.026 +535299,157.58,69.2 +535300,155.2,69.38 +535301,160.76,68.887 +535302,158.56,69.021 +535303,156.26,69.161 +535304,153.86,69.306 +535305,159.46,68.917 +535306,157.25,69.016 +535307,154.94,69.121 +535308,152.53,69.232 +535309,158.16,68.947 +535310,155.94,69.012 +535311,153.62,69.082 +535312,151.2,69.158 +535313,156.85,68.977 +535314,154.62,69.007 +535315,152.3,69.042 +535316,149.87,69.084 +535317,155.54,69.007 +535318,153.31,69.002 +535319,150.98,69.003 +535320,148.54,69.01 +535321,154.24,69.037 +535322,152,68.997 +535323,149.66,68.964 +535324,147.21,68.935 +535325,152.92,69.067 +535326,150.68,68.993 +535327,148.34,68.924 +535328,145.89,68.861 +535329,151.61,69.096 +535330,149.37,68.988 +535331,147.02,68.885 +535332,144.57,68.787 +535333,150.3,69.126 +535334,148.05,68.983 +535335,145.71,68.845 +535336,143.25,68.713 +535337,148.98,69.156 +535338,146.74,68.978 +535339,144.39,68.806 +535340,141.93,68.639 +535341,147.66,69.185 +535342,145.42,68.973 +535343,143.07,68.766 +535344,140.61,68.565 +535345,146.35,69.215 +535346,144.1,68.969 +535347,141.76,68.727 +535348,139.29,68.491 +535349,145.02,69.244 +535350,142.79,68.964 +535351,140.44,68.688 +535352,137.98,68.417 +535353,143.7,69.272 +535354,141.47,68.958 +535355,139.13,68.649 +535356,136.67,68.344 +535357,142.38,69.301 +535358,140.15,68.953 +535359,137.82,68.609 +535360,135.36,68.27 +535361,141.05,69.329 +535362,138.83,68.948 +535363,136.5,68.57 +535364,134.05,68.197 +535365,139.72,69.357 +535366,137.51,68.943 +535367,135.19,68.531 +535368,132.75,68.124 +535369,138.39,69.385 +535370,136.19,68.937 +535371,133.88,68.492 +535372,131.45,68.052 +535373,137.06,69.412 +535374,134.87,68.931 +535375,132.57,68.454 +535376,130.14,67.98 +535377,135.73,69.439 +535378,133.55,68.926 +535379,131.26,68.415 +535380,128.84,67.908 +535381,134.4,69.465 +535382,132.23,68.92 +535383,129.95,68.376 +535384,127.55,67.836 +535385,133.06,69.491 +535386,130.9,68.914 +535387,128.64,68.338 +535388,126.25,67.765 +535389,131.72,69.517 +535390,129.58,68.908 +535391,127.33,68.3 +535392,124.96,67.694 +535393,130.38,69.542 +535394,128.26,68.901 +535395,126.02,68.261 +535396,123.66,67.624 +535397,129.04,69.566 +535398,126.93,68.895 +535399,124.72,68.224 +535400,122.37,67.555 +535401,127.7,69.59 +535402,125.61,68.888 +535403,123.41,68.186 +535404,121.08,67.485 +535405,126.36,69.614 +535406,124.28,68.881 +535407,122.1,68.148 +535408,119.8,67.417 +535409,125.01,69.636 +535410,122.96,68.874 +535411,120.8,68.111 +535412,118.51,67.348 +535413,123.66,69.659 +535414,121.63,68.866 +535415,119.49,68.073 +535416,117.23,67.281 +535417,122.31,69.68 +535418,120.31,68.859 +535419,118.19,68.036 +535420,115.95,67.214 +535421,120.96,69.701 +535422,118.98,68.851 +535423,116.88,67.999 +535424,114.67,67.148 +535425,119.61,69.721 +535426,117.65,68.843 +535427,115.58,67.963 +535428,113.39,67.082 +535429,118.26,69.74 +535430,116.32,68.835 +535431,114.28,67.926 +535432,112.11,67.017 +535433,116.9,69.759 +535434,114.99,68.826 +535435,112.98,67.89 +535436,110.84,66.953 +535437,115.55,69.777 +535438,113.66,68.817 +535439,111.67,67.854 +535440,109.57,66.889 +535441,114.19,69.794 +535442,112.33,68.808 +535443,110.37,67.819 +535444,108.3,66.827 +535445,112.83,69.811 +535446,111,68.799 +535447,109.07,67.783 +535448,107.03,66.765 +535449,111.47,69.826 +535450,109.67,68.789 +535451,107.77,67.748 +535452,105.76,66.703 +535453,110.11,69.841 +535454,108.34,68.78 +535455,106.47,67.713 +535456,104.49,66.643 +535457,108.75,69.855 +535458,107.01,68.769 +535459,105.17,67.679 +535460,103.23,66.584 +535461,107.38,69.868 +535462,105.68,68.759 +535463,103.88,67.644 +535464,101.96,66.525 +535465,106.02,69.88 +535466,104.35,68.748 +535467,102.58,67.61 +535468,100.7,66.467 +535469,104.65,69.891 +535470,103.01,68.737 +535471,101.28,67.576 +535472,99.44,66.41 +535473,103.28,69.901 +535474,101.68,68.726 +535475,99.983,67.543 +535476,98.181,66.354 +535477,101.91,69.91 +535478,100.34,68.714 +535479,98.686,67.51 +535480,96.923,66.299 +535481,100.54,69.919 +535482,99.011,68.702 +535483,97.39,67.477 +535484,95.667,66.245 +535485,99.168,69.926 +535486,97.676,68.689 +535487,96.094,67.444 +535488,94.412,66.192 +535489,97.795,69.932 +535490,96.341,68.677 +535491,94.799,67.412 +535492,93.158,66.14 +535493,96.421,69.938 +535494,95.006,68.664 +535495,93.504,67.38 +535496,91.906,66.089 +535497,95.045,69.942 +535498,93.67,68.65 +535499,92.21,67.349 +535500,90.655,66.039 +535501,93.669,69.945 +535502,92.334,68.636 +535503,90.916,67.318 +535504,89.405,65.99 +535505,92.291,69.947 +535506,90.997,68.622 +535507,89.622,67.287 +535508,88.156,65.942 +535509,90.913,69.949 +535510,89.661,68.608 +535511,88.329,67.256 +535512,86.908,65.896 +535513,89.533,69.949 +535514,88.323,68.593 +535515,87.036,67.226 +535516,85.662,65.85 +535517,88.153,69.948 +535518,86.986,68.578 +535519,85.743,67.196 +535520,84.416,65.805 +535521,86.771,69.945 +535522,85.648,68.562 +535523,84.451,67.167 +535524,83.172,65.762 +535525,85.389,69.942 +535526,84.31,68.546 +535527,83.159,67.138 +535528,81.928,65.719 +535529,84.006,69.938 +535530,82.972,68.53 +535531,81.867,67.109 +535532,80.686,65.678 +535533,82.622,69.932 +535534,81.633,68.513 +535535,80.576,67.081 +535536,79.444,65.638 +535537,81.237,69.925 +535538,80.294,68.496 +535539,79.285,67.053 +535540,78.203,65.599 +535541,79.851,69.918 +535542,78.955,68.478 +535543,77.995,67.026 +535544,76.963,65.561 +535545,78.465,69.909 +535546,77.616,68.46 +535547,76.704,66.998 +535548,75.724,65.525 +535549,77.078,69.898 +535550,76.276,68.442 +535551,75.414,66.972 +535552,74.485,65.489 +535553,75.69,69.887 +535554,74.936,68.423 +535555,74.124,66.945 +535556,73.247,65.455 +535557,74.301,69.874 +535558,73.596,68.404 +535559,72.834,66.919 +535560,72.01,65.422 +535561,72.912,69.861 +535562,72.256,68.384 +535563,71.545,66.894 +535564,70.773,65.39 +535565,71.523,69.846 +535566,70.916,68.364 +535567,70.256,66.868 +535568,69.537,65.36 +535569,70.132,69.83 +535570,69.575,68.344 +535571,68.967,66.844 +535572,68.302,65.33 +535573,68.742,69.812 +535574,68.235,68.323 +535575,67.678,66.819 +535576,67.067,65.302 +535577,67.35,69.794 +535578,66.894,68.302 +535579,66.389,66.795 +535580,65.832,65.275 +535581,65.959,69.774 +535582,65.553,68.28 +535583,65.1,66.772 +535584,64.598,65.25 +535585,64.567,69.753 +535586,64.212,68.258 +535587,63.812,66.748 +535588,63.364,65.225 +535589,63.174,69.731 +535590,62.871,68.235 +535591,62.524,66.726 +535592,62.13,65.202 +535593,61.781,69.707 +535594,61.529,68.213 +535595,61.235,66.703 +535596,60.897,65.18 +535597,60.388,69.683 +535598,60.188,68.189 +535599,59.947,66.681 +535600,59.664,65.159 +535601,58.995,69.657 +535602,58.847,68.166 +535603,58.659,66.659 +535604,58.431,65.14 +535605,57.601,69.63 +535606,57.505,68.141 +535607,57.371,66.638 +535608,57.198,65.122 +535609,56.207,69.602 +535610,56.164,68.117 +535611,56.084,66.617 +535612,55.965,65.105 +535613,54.813,69.572 +535614,54.822,68.092 +535615,54.796,66.597 +535616,54.732,65.089 +535617,53.419,69.542 +535618,53.481,68.067 +535619,53.508,66.577 +535620,53.499,65.074 +535621,52.025,69.51 +535622,52.139,68.041 +535623,52.22,66.557 +535624,52.267,65.061 +535625,50.631,69.477 +535626,50.798,68.015 +535627,50.932,66.538 +535628,51.034,65.049 +535629,49.237,69.442 +535630,49.456,67.988 +535631,49.644,66.519 +535632,49.801,65.038 +535633,47.843,69.407 +535634,48.115,67.961 +535635,48.357,66.501 +535636,48.567,65.028 +535637,46.448,69.37 +535638,46.773,67.933 +535639,47.069,66.483 +535640,47.334,65.02 +535641,45.054,69.333 +535642,45.432,67.906 +535643,45.781,66.465 +535644,46.1,65.012 +535645,43.661,69.294 +535646,44.091,67.877 +535647,44.493,66.448 +535648,44.866,65.006 +535649,42.267,69.254 +535650,42.75,67.849 +535651,43.205,66.431 +535652,43.632,65.001 +535653,40.873,69.212 +535654,41.409,67.82 +535655,41.916,66.414 +535656,42.397,64.997 +535657,39.48,69.17 +535658,40.068,67.79 +535659,40.628,66.398 +535660,41.162,64.995 +535661,38.087,69.126 +535662,38.727,67.761 +535663,39.34,66.382 +535664,39.926,64.993 +535665,36.695,69.082 +535666,37.386,67.73 +535667,38.051,66.367 +535668,38.69,64.993 +535669,35.303,69.036 +535670,36.046,67.7 +535671,36.762,66.352 +535672,37.453,64.993 +535673,33.911,68.989 +535674,34.706,67.669 +535675,35.473,66.337 +535676,36.215,64.995 +535677,32.52,68.941 +535678,33.366,67.638 +535679,34.184,66.323 +535680,34.977,64.998 +535681,31.129,68.892 +535682,32.026,67.606 +535683,32.895,66.309 +535684,33.738,65.002 +535685,29.739,68.842 +535686,30.686,67.574 +535687,31.606,66.295 +535688,32.499,65.007 +535689,28.349,68.791 +535690,29.347,67.541 +535691,30.316,66.282 +535692,31.259,65.013 +535693,26.96,68.738 +535694,28.007,67.509 +535695,29.026,66.269 +535696,30.018,65.02 +535697,25.572,68.685 +535698,26.669,67.476 +535699,27.736,66.256 +535700,28.776,65.028 +535701,24.184,68.631 +535702,25.33,67.442 +535703,26.446,66.244 +535704,27.533,65.037 +535705,22.797,68.576 +535706,23.991,67.408 +535707,25.155,66.232 +535708,26.29,65.048 +535709,21.411,68.52 +535710,22.653,67.374 +535711,23.864,66.22 +535712,25.045,65.059 +535713,20.025,68.462 +535714,21.316,67.34 +535715,22.573,66.209 +535716,23.8,65.071 +535717,18.641,68.404 +535718,19.978,67.305 +535719,21.281,66.198 +535720,22.553,65.084 +535721,17.257,68.345 +535722,18.641,67.27 +535723,19.989,66.187 +535724,21.305,65.097 +535725,15.874,68.285 +535726,17.304,67.235 +535727,18.697,66.176 +535728,20.057,65.112 +535729,14.492,68.225 +535730,15.968,67.199 +535731,17.405,66.166 +535732,18.807,65.128 +535733,13.111,68.163 +535734,14.632,67.163 +535735,16.112,66.156 +535736,17.556,65.144 +535737,11.731,68.1 +535738,13.296,67.127 +535739,14.818,66.146 +535740,16.304,65.161 +535741,10.353,68.037 +535742,11.961,67.09 +535743,13.525,66.137 +535744,15.051,65.179 +535745,8.9748,67.973 +535746,10.626,67.053 +535747,12.231,66.128 +535748,13.796,65.198 +535749,7.5982,67.908 +535750,9.291,67.016 +535751,10.937,66.119 +535752,12.541,65.218 +535753,6.2227,67.842 +535754,7.9569,66.979 +535755,9.6418,66.11 +535756,11.284,65.238 +535757,4.8485,67.776 +535758,6.6232,66.941 +535759,8.3467,66.102 +535760,10.025,65.259 +535761,3.4755,67.709 +535762,5.29,66.903 +535763,7.0511,66.093 +535764,8.7655,65.281 +535765,2.1037,67.641 +535766,3.9572,66.865 +535767,5.7551,66.085 +535768,7.5045,65.303 +535769,0.73324,67.572 +535770,2.6248,66.827 +535771,4.4587,66.077 +535772,6.2421,65.326 +535773,359.36,67.503 +535774,1.293,66.788 +535775,3.1618,66.07 +535776,4.9782,65.349 +535777,358,67.433 +535778,359.96,66.749 +535779,1.8644,66.062 +535780,3.713,65.373 +535781,356.63,67.363 +535782,358.63,66.71 +535783,0.56664,66.055 +535784,2.4462,65.398 +535785,355.26,67.292 +535786,357.3,66.671 +535787,359.27,66.048 +535788,1.1781,65.423 +535789,353.9,67.22 +535790,355.97,66.632 +535791,357.97,66.041 +535792,359.91,65.449 +535793,352.54,67.148 +535794,354.64,66.592 +535795,356.67,66.034 +535796,358.64,65.475 +535797,351.18,67.075 +535798,353.31,66.553 +535799,355.37,66.028 +535800,357.36,65.502 +535801,349.82,67.002 +535802,351.98,66.513 +535803,354.07,66.021 +535804,356.09,65.529 +535805,348.46,66.929 +535806,350.66,66.473 +535807,352.77,66.015 +535808,354.81,65.556 +535809,347.11,66.855 +535810,349.33,66.432 +535811,351.47,66.008 +535812,353.54,65.584 +535813,345.75,66.78 +535814,348,66.392 +535815,350.17,66.002 +535816,352.26,65.612 +535817,344.4,66.706 +535818,346.68,66.352 +535819,348.86,65.996 +535820,350.98,65.641 +535821,343.05,66.631 +535822,345.35,66.311 +535823,347.56,65.99 +535824,349.69,65.669 +535825,341.7,66.555 +535826,344.03,66.27 +535827,346.26,65.984 +535828,348.41,65.698 +535829,340.35,66.48 +535830,342.7,66.23 +535831,344.95,65.979 +535832,347.13,65.728 +535833,339.01,66.404 +535834,341.38,66.189 +535835,343.65,65.973 +535836,345.84,65.757 +535837,337.66,66.328 +535838,340.05,66.148 +535839,342.34,65.967 +535840,344.55,65.787 +535841,336.32,66.251 +535842,338.73,66.107 +535843,341.04,65.962 +535844,343.26,65.816 +535845,334.98,66.175 +535846,337.41,66.066 +535847,339.73,65.956 +535848,341.97,65.846 +535849,333.64,66.098 +535850,336.09,66.025 +535851,338.43,65.95 +535852,340.67,65.876 +535853,332.3,66.021 +535854,334.77,65.983 +535855,337.12,65.945 +535856,339.38,65.906 +535857,330.97,65.944 +535858,333.45,65.942 +535859,335.81,65.939 +535860,338.08,65.936 +535861,329.64,65.867 +535862,332.13,65.901 +535863,334.5,65.934 +535864,336.78,65.966 +535865,328.3,65.79 +535866,330.81,65.86 +535867,333.19,65.928 +535868,335.48,65.996 +535869,326.98,65.713 +535870,329.49,65.818 +535871,331.88,65.922 +535872,334.18,66.026 +535873,325.65,65.636 +535874,328.17,65.777 +535875,330.57,65.917 +535876,332.87,66.056 +535877,324.32,65.559 +535878,326.86,65.736 +535879,329.26,65.911 +535880,331.57,66.086 +535881,323,65.482 +535882,325.54,65.695 +535883,327.95,65.905 +535884,330.26,66.115 +535885,321.68,65.406 +535886,324.22,65.653 +535887,326.64,65.9 +535888,328.95,66.145 +535889,320.36,65.329 +535890,322.91,65.612 +535891,325.33,65.894 +535892,327.64,66.174 +535893,319.04,65.253 +535894,321.59,65.571 +535895,324.02,65.888 +535896,326.32,66.203 +535897,317.72,65.176 +535898,320.28,65.53 +535899,322.7,65.882 +535900,325.01,66.231 +535901,316.41,65.1 +535902,318.97,65.489 +535903,321.39,65.876 +535904,323.69,66.26 +535905,315.1,65.025 +535906,317.65,65.448 +535907,320.07,65.869 +535908,322.37,66.288 +535909,313.79,64.949 +535910,316.34,65.407 +535911,318.76,65.863 +535912,321.05,66.316 +535913,312.48,64.874 +535914,315.03,65.367 +535915,317.44,65.856 +535916,319.73,66.343 +535917,311.18,64.799 +535918,313.72,65.326 +535919,316.12,65.85 +535920,318.41,66.37 +535921,309.87,64.725 +535922,312.41,65.286 +535923,314.81,65.843 +535924,317.08,66.397 +535925,308.57,64.651 +535926,311.1,65.245 +535927,313.49,65.836 +535928,315.76,66.423 +535929,307.27,64.577 +535930,309.79,65.205 +535931,312.17,65.829 +535932,314.43,66.448 +535933,305.97,64.504 +535934,308.48,65.165 +535935,310.85,65.822 +535936,313.1,66.473 +535937,304.67,64.431 +535938,307.18,65.125 +535939,309.53,65.814 +535940,311.76,66.498 +535941,303.38,64.359 +535942,305.87,65.085 +535943,308.21,65.807 +535944,310.43,66.522 +535945,302.09,64.287 +535946,304.56,65.046 +535947,306.89,65.799 +535948,309.1,66.546 +535949,300.8,64.216 +535950,303.26,65.006 +535951,305.57,65.791 +535952,307.76,66.568 +535953,299.51,64.145 +535954,301.95,64.967 +535955,304.25,65.782 +535956,306.42,66.591 +535957,298.22,64.075 +535958,300.65,64.928 +535959,302.93,65.774 +535960,305.08,66.612 +535961,296.94,64.006 +535962,299.35,64.889 +535963,301.61,65.765 +535964,303.74,66.633 +535965,295.66,63.938 +535966,298.04,64.851 +535967,300.28,65.756 +535968,302.39,66.653 +535969,294.38,63.87 +535970,296.74,64.812 +535971,298.96,65.747 +535972,301.05,66.673 +535973,293.1,63.802 +535974,295.44,64.774 +535975,297.63,65.737 +535976,299.7,66.692 +535977,291.82,63.736 +535978,294.14,64.736 +535979,296.31,65.728 +535980,298.35,66.709 +535981,290.54,63.67 +535982,292.84,64.699 +535983,294.98,65.718 +535984,297,66.727 +535985,289.27,63.605 +535986,291.54,64.661 +535987,293.66,65.707 +535988,295.65,66.743 +535989,288,63.541 +535990,290.24,64.624 +535991,292.33,65.697 +535992,294.3,66.759 +535993,286.73,63.478 +535994,288.94,64.587 +535995,291,65.686 +535996,292.95,66.773 +535997,285.46,63.415 +535998,287.64,64.55 +535999,289.68,65.675 +536000,291.59,66.787 +536001,284.2,63.354 +536002,286.34,64.514 +536003,288.35,65.663 +536004,290.23,66.8 +536005,282.93,63.293 +536006,285.05,64.478 +536007,287.02,65.651 +536008,288.88,66.812 +536009,281.67,63.233 +536010,283.75,64.442 +536011,285.69,65.639 +536012,287.52,66.823 +536013,280.41,63.174 +536014,282.45,64.407 +536015,284.36,65.627 +536016,286.15,66.833 +536017,279.15,63.117 +536018,281.16,64.372 +536019,283.03,65.614 +536020,284.79,66.842 +536021,277.89,63.06 +536022,279.86,64.337 +536023,281.7,65.601 +536024,283.43,66.85 +536025,276.63,63.004 +536026,278.57,64.303 +536027,280.37,65.587 +536028,282.06,66.857 +536029,275.38,62.949 +536030,277.27,64.268 +536031,279.04,65.573 +536032,280.7,66.863 +536033,274.12,62.895 +536034,275.98,64.235 +536035,277.71,65.559 +536036,279.33,66.868 +536037,272.87,62.842 +536038,274.69,64.201 +536039,276.38,65.545 +536040,277.96,66.872 +536041,271.62,62.791 +536042,273.39,64.168 +536043,275.04,65.53 +536044,276.59,66.875 +536045,270.37,62.74 +536046,272.1,64.135 +536047,273.71,65.514 +536048,275.22,66.877 +536049,269.12,62.69 +536050,270.81,64.103 +536051,272.38,65.499 +536052,273.84,66.878 +536053,267.87,62.642 +536054,269.52,64.071 +536055,271.05,65.483 +536056,272.47,66.877 +536057,266.63,62.595 +536058,268.23,64.039 +536059,269.71,65.466 +536060,271.1,66.876 +536061,265.39,62.549 +536062,266.94,64.007 +536063,268.38,65.449 +536064,269.72,66.873 +536065,264.14,62.504 +536066,265.65,63.977 +536067,267.04,65.432 +536068,268.34,66.869 +536069,262.9,62.46 +536070,264.36,63.946 +536071,265.71,65.414 +536072,266.97,66.864 +536073,261.66,62.417 +536074,263.07,63.916 +536075,264.37,65.396 +536076,265.59,66.858 +536077,260.42,62.376 +536078,261.78,63.886 +536079,263.04,65.378 +536080,264.21,66.851 +536081,259.18,62.335 +536082,260.49,63.856 +536083,261.7,65.359 +536084,262.83,66.842 +536085,257.94,62.296 +536086,259.2,63.827 +536087,260.36,65.34 +536088,261.44,66.833 +536089,256.71,62.259 +536090,257.91,63.799 +536091,259.03,65.32 +536092,260.06,66.822 +536093,255.47,62.222 +536094,256.63,63.77 +536095,257.69,65.3 +536096,258.68,66.81 +536097,254.24,62.187 +536098,255.34,63.743 +536099,256.35,65.279 +536100,257.29,66.796 +536101,253,62.153 +536102,254.05,63.715 +536103,255.02,65.258 +536104,255.91,66.782 +536105,251.77,62.12 +536106,252.77,63.688 +536107,253.68,65.237 +536108,254.52,66.766 +536109,250.54,62.088 +536110,251.48,63.661 +536111,252.34,65.215 +536112,253.14,66.749 +536113,249.3,62.058 +536114,250.19,63.635 +536115,251,65.193 +536116,251.75,66.73 +536117,248.07,62.029 +536118,248.91,63.609 +536119,249.67,65.17 +536120,250.36,66.711 +536121,246.84,62.001 +536122,247.62,63.584 +536123,248.33,65.147 +536124,248.97,66.69 +536125,245.61,61.974 +536126,246.34,63.559 +536127,246.99,65.123 +536128,247.58,66.668 +536129,244.38,61.949 +536130,245.05,63.534 +536131,245.65,65.099 +536132,246.19,66.645 +536133,243.15,61.925 +536134,243.76,63.51 +536135,244.31,65.075 +536136,244.8,66.62 +536137,241.93,61.902 +536138,242.48,63.486 +536139,242.97,65.05 +536140,243.41,66.594 +536141,240.7,61.881 +536142,241.19,63.463 +536143,241.63,65.025 +536144,242.02,66.567 +536145,239.47,61.861 +536146,239.91,63.44 +536147,240.3,64.999 +536148,240.63,66.538 +536149,238.24,61.842 +536150,238.63,63.417 +536151,238.96,64.973 +536152,239.24,66.509 +536153,237.02,61.824 +536154,237.34,63.395 +536155,237.62,64.946 +536156,237.85,66.478 +536157,235.79,61.808 +536158,236.06,63.373 +536159,236.28,64.919 +536160,236.46,66.446 +536161,234.56,61.793 +536162,234.77,63.352 +536163,234.94,64.892 +536164,235.06,66.412 +536165,233.33,61.779 +536166,233.49,63.331 +536167,233.6,64.864 +536168,233.67,66.378 +536169,232.11,61.766 +536170,232.2,63.31 +536171,232.26,64.836 +536172,232.28,66.342 +536173,230.88,61.755 +536174,230.92,63.29 +536175,230.92,64.807 +536176,230.88,66.305 +536177,229.65,61.745 +536178,229.64,63.27 +536179,229.58,64.778 +536180,229.49,66.266 +536181,228.43,61.736 +536182,228.35,63.251 +536183,228.24,64.748 +536184,228.1,66.227 +536185,227.2,61.729 +536186,227.07,63.232 +536187,226.9,64.718 +536188,226.7,66.186 +536189,225.97,61.722 +536190,225.78,63.214 +536191,225.56,64.688 +536192,225.31,66.144 +536193,224.74,61.717 +536194,224.5,63.195 +536195,224.22,64.657 +536196,223.92,66.1 +536197,223.52,61.713 +536198,223.22,63.178 +536199,222.88,64.626 +536200,222.53,66.056 +536201,222.29,61.71 +536202,221.93,63.16 +536203,221.55,64.594 +536204,221.13,66.01 +536205,221.06,61.708 +536206,220.65,63.143 +536207,220.21,64.562 +536208,219.74,65.963 +536209,219.83,61.708 +536210,219.36,63.126 +536211,218.87,64.529 +536212,218.35,65.915 +536213,218.6,61.709 +536214,218.08,63.11 +536215,217.53,64.497 +536216,216.95,65.866 +536217,217.37,61.71 +536218,216.79,63.094 +536219,216.19,64.463 +536220,215.56,65.816 +536221,216.14,61.713 +536222,215.51,63.079 +536223,214.85,64.43 +536224,214.17,65.765 +536225,214.91,61.717 +536226,214.22,63.064 +536227,213.51,64.396 +536228,212.78,65.712 +536229,213.68,61.722 +536230,212.94,63.049 +536231,212.17,64.361 +536232,211.39,65.658 +536233,212.45,61.729 +536234,211.65,63.034 +536235,210.84,64.326 +536236,210,65.604 +536237,211.21,61.736 +536238,210.37,63.02 +536239,209.5,64.291 +536240,208.61,65.548 +536241,209.98,61.744 +536242,209.08,63.006 +536243,208.16,64.256 +536244,207.22,65.491 +536245,208.75,61.753 +536246,207.8,62.993 +536247,206.82,64.22 +536248,205.83,65.433 +536249,207.51,61.764 +536250,206.51,62.98 +536251,205.49,64.183 +536252,204.44,65.374 +536253,206.28,61.775 +536254,205.22,62.967 +536255,204.15,64.147 +536256,203.05,65.314 +536257,205.04,61.787 +536258,203.94,62.954 +536259,202.81,64.11 +536260,201.67,65.253 +536261,203.8,61.8 +536262,202.65,62.942 +536263,201.48,64.073 +536264,200.28,65.191 +536265,202.56,61.814 +536266,201.36,62.93 +536267,200.14,64.035 +536268,198.89,65.128 +536269,201.32,61.829 +536270,200.08,62.918 +536271,198.81,63.997 +536272,197.51,65.064 +536273,200.08,61.845 +536274,198.79,62.907 +536275,197.47,63.959 +536276,196.12,64.999 +536277,198.84,61.862 +536278,197.5,62.896 +536279,196.14,63.92 +536280,194.74,64.934 +536281,197.6,61.88 +536282,196.21,62.885 +536283,194.8,63.881 +536284,193.36,64.867 +536285,196.35,61.898 +536286,194.92,62.875 +536287,193.47,63.842 +536288,191.98,64.8 +536289,195.11,61.917 +536290,193.63,62.864 +536291,192.13,63.803 +536292,190.6,64.731 +536293,193.86,61.937 +536294,192.34,62.854 +536295,190.8,63.763 +536296,189.22,64.662 +536297,192.61,61.958 +536298,191.05,62.844 +536299,189.47,63.723 +536300,187.84,64.592 +536301,191.36,61.979 +536302,189.76,62.835 +536303,188.13,63.683 +536304,186.46,64.522 +536305,190.11,62.001 +536306,188.47,62.825 +536307,186.8,63.642 +536308,185.08,64.45 +536309,188.86,62.024 +536310,187.18,62.816 +536311,185.47,63.602 +536312,183.71,64.378 +536313,187.61,62.048 +536314,185.89,62.807 +536315,184.14,63.561 +536316,182.34,64.305 +536317,186.35,62.072 +536318,184.6,62.799 +536319,182.81,63.519 +536320,180.96,64.232 +536321,185.1,62.096 +536322,183.31,62.79 +536323,181.48,63.478 +536324,179.59,64.158 +536325,183.84,62.121 +536326,182.02,62.782 +536327,180.15,63.436 +536328,178.22,64.083 +536329,182.58,62.147 +536330,180.72,62.774 +536331,178.82,63.394 +536332,176.85,64.008 +536333,181.32,62.173 +536334,179.43,62.766 +536335,177.49,63.352 +536336,175.49,63.932 +536337,180.06,62.2 +536338,178.13,62.758 +536339,176.16,63.31 +536340,174.12,63.855 +536341,178.79,62.227 +536342,176.84,62.75 +536343,174.83,63.268 +536344,172.75,63.778 +536345,177.53,62.255 +536346,175.55,62.742 +536347,173.5,63.225 +536348,171.39,63.7 +536349,176.26,62.283 +536350,174.25,62.735 +536351,172.18,63.182 +536352,170.03,63.622 +536353,175,62.311 +536354,172.95,62.728 +536355,170.85,63.139 +536356,168.67,63.544 +536357,173.73,62.34 +536358,171.66,62.72 +536359,169.52,63.096 +536360,167.31,63.465 +536361,172.45,62.369 +536362,170.36,62.713 +536363,168.2,63.053 +536364,165.95,63.386 +536365,171.18,62.398 +536366,169.06,62.706 +536367,166.87,63.01 +536368,164.6,63.306 +536369,169.91,62.427 +536370,167.77,62.699 +536371,165.55,62.966 +536372,163.25,63.226 +536373,168.63,62.457 +536374,166.47,62.692 +536375,164.22,62.923 +536376,161.89,63.146 +536377,167.35,62.487 +536378,165.17,62.685 +536379,162.9,62.879 +536380,160.54,63.066 +536381,166.07,62.517 +536382,163.87,62.679 +536383,161.58,62.835 +536384,159.19,62.985 +536385,164.79,62.547 +536386,162.57,62.672 +536387,160.26,62.791 +536388,157.85,62.904 +536389,163.51,62.578 +536390,161.27,62.665 +536391,158.94,62.747 +536392,156.5,62.823 +536393,162.22,62.608 +536394,159.97,62.658 +536395,157.61,62.704 +536396,155.16,62.742 +536397,160.94,62.638 +536398,158.66,62.652 +536399,156.29,62.66 +536400,153.82,62.66 +536401,159.65,62.669 +536402,157.36,62.645 +536403,154.98,62.616 +536404,152.48,62.579 +536405,158.36,62.699 +536406,156.06,62.638 +536407,153.66,62.571 +536408,151.14,62.497 +536409,157.07,62.73 +536410,154.75,62.632 +536411,152.34,62.527 +536412,149.8,62.416 +536413,155.78,62.76 +536414,153.45,62.625 +536415,151.02,62.483 +536416,148.47,62.334 +536417,154.48,62.79 +536418,152.15,62.618 +536419,149.7,62.439 +536420,147.14,62.252 +536421,153.18,62.82 +536422,150.84,62.611 +536423,148.39,62.395 +536424,145.81,62.171 +536425,151.88,62.85 +536426,149.53,62.604 +536427,147.07,62.351 +536428,144.48,62.089 +536429,150.58,62.88 +536430,148.23,62.597 +536431,145.76,62.307 +536432,143.15,62.008 +536433,149.28,62.909 +536434,146.92,62.59 +536435,144.44,62.263 +536436,141.83,61.927 +536437,147.98,62.938 +536438,145.61,62.583 +536439,143.13,62.219 +536440,140.5,61.846 +536441,146.67,62.967 +536442,144.31,62.576 +536443,141.82,62.176 +536444,139.18,61.765 +536445,145.36,62.996 +536446,143,62.568 +536447,140.5,62.132 +536448,137.87,61.685 +536449,144.05,63.024 +536450,141.69,62.561 +536451,139.19,62.088 +536452,136.55,61.605 +536453,142.74,63.052 +536454,140.38,62.553 +536455,137.88,62.045 +536456,135.24,61.525 +536457,141.43,63.08 +536458,139.07,62.546 +536459,136.57,62.001 +536460,133.92,61.445 +536461,140.12,63.107 +536462,137.76,62.538 +536463,135.26,61.958 +536464,132.61,61.366 +536465,138.8,63.133 +536466,136.44,62.53 +536467,133.95,61.915 +536468,131.3,61.287 +536469,137.48,63.16 +536470,135.13,62.521 +536471,132.64,61.871 +536472,130,61.209 +536473,136.16,63.185 +536474,133.82,62.513 +536475,131.34,61.828 +536476,128.69,61.131 +536477,134.84,63.21 +536478,132.5,62.504 +536479,130.03,61.786 +536480,127.39,61.053 +536481,133.52,63.235 +536482,131.19,62.496 +536483,128.72,61.743 +536484,126.09,60.976 +536485,132.19,63.259 +536486,129.88,62.487 +536487,127.42,61.701 +536488,124.79,60.9 +536489,130.86,63.282 +536490,128.56,62.477 +536491,126.11,61.658 +536492,123.5,60.824 +536493,129.54,63.305 +536494,127.24,62.468 +536495,124.81,61.616 +536496,122.2,60.749 +536497,128.21,63.327 +536498,125.93,62.458 +536499,123.51,61.574 +536500,120.91,60.674 +536501,126.87,63.348 +536502,124.61,62.448 +536503,122.2,61.533 +536504,119.62,60.6 +536505,125.54,63.369 +536506,123.29,62.438 +536507,120.9,61.491 +536508,118.33,60.527 +536509,124.2,63.389 +536510,121.98,62.428 +536511,119.6,61.45 +536512,117.05,60.454 +536513,122.87,63.408 +536514,120.66,62.417 +536515,118.3,61.409 +536516,115.77,60.382 +536517,121.53,63.426 +536518,119.34,62.406 +536519,117,61.368 +536520,114.48,60.311 +536521,120.19,63.444 +536522,118.02,62.395 +536523,115.7,61.328 +536524,113.2,60.241 +536525,118.85,63.46 +536526,116.7,62.383 +536527,114.4,61.287 +536528,111.93,60.171 +536529,117.5,63.476 +536530,115.38,62.372 +536531,113.1,61.247 +536532,110.65,60.103 +536533,116.16,63.491 +536534,114.06,62.359 +536535,111.8,61.208 +536536,109.38,60.035 +536537,114.81,63.505 +536538,112.73,62.347 +536539,110.51,61.168 +536540,108.1,59.968 +536541,113.46,63.518 +536542,111.41,62.334 +536543,109.21,61.129 +536544,106.83,59.902 +536545,112.11,63.531 +536546,110.09,62.321 +536547,107.91,61.09 +536548,105.57,59.837 +536549,110.76,63.542 +536550,108.76,62.308 +536551,106.62,61.052 +536552,104.3,59.772 +536553,109.41,63.552 +536554,107.44,62.294 +536555,105.32,61.013 +536556,103.04,59.709 +536557,108.06,63.561 +536558,106.12,62.28 +536559,104.03,60.975 +536560,101.77,59.647 +536561,106.7,63.569 +536562,104.79,62.265 +536563,102.74,60.938 +536564,100.51,59.586 +536565,105.34,63.577 +536566,103.47,62.251 +536567,101.44,60.901 +536568,99.253,59.526 +536569,103.99,63.583 +536570,102.14,62.235 +536571,100.15,60.864 +536572,97.996,59.467 +536573,102.63,63.588 +536574,100.81,62.22 +536575,98.859,60.827 +536576,96.74,59.409 +536577,101.27,63.592 +536578,99.486,62.204 +536579,97.567,60.791 +536580,95.487,59.352 +536581,99.903,63.594 +536582,98.159,62.188 +536583,96.277,60.755 +536584,94.234,59.296 +536585,98.54,63.596 +536586,96.831,62.171 +536587,94.987,60.719 +536588,92.984,59.241 +536589,97.175,63.597 +536590,95.503,62.154 +536591,93.697,60.684 +536592,91.735,59.188 +536593,95.809,63.596 +536594,94.174,62.136 +536595,92.408,60.65 +536596,90.488,59.135 +536597,94.442,63.594 +536598,92.845,62.118 +536599,91.119,60.615 +536600,89.242,59.084 +536601,93.073,63.591 +536602,91.516,62.1 +536603,89.831,60.581 +536604,87.997,59.034 +536605,91.703,63.587 +536606,90.186,62.081 +536607,88.543,60.548 +536608,86.754,58.985 +536609,90.332,63.582 +536610,88.856,62.062 +536611,87.256,60.514 +536612,85.513,58.938 +536613,88.96,63.575 +536614,87.525,62.042 +536615,85.969,60.481 +536616,84.273,58.892 +536617,87.587,63.567 +536618,86.194,62.022 +536619,84.683,60.449 +536620,83.034,58.847 +536621,86.213,63.558 +536622,84.863,62.002 +536623,83.397,60.417 +536624,81.796,58.803 +536625,84.838,63.548 +536626,83.532,61.981 +536627,82.111,60.385 +536628,80.56,58.76 +536629,83.462,63.536 +536630,82.2,61.96 +536631,80.826,60.354 +536632,79.325,58.719 +536633,82.085,63.524 +536634,80.867,61.938 +536635,79.542,60.323 +536636,78.091,58.679 +536637,80.707,63.509 +536638,79.535,61.916 +536639,78.257,60.293 +536640,76.859,58.64 +536641,79.328,63.494 +536642,78.202,61.893 +536643,76.973,60.263 +536644,75.627,58.603 +536645,77.948,63.477 +536646,76.869,61.87 +536647,75.69,60.234 +536648,74.396,58.567 +536649,76.567,63.459 +536650,75.535,61.847 +536651,74.407,60.204 +536652,73.167,58.532 +536653,75.186,63.44 +536654,74.202,61.823 +536655,73.124,60.176 +536656,71.938,58.499 +536657,73.804,63.419 +536658,72.868,61.798 +536659,71.841,60.148 +536660,70.711,58.467 +536661,72.42,63.397 +536662,71.534,61.773 +536663,70.559,60.12 +536664,69.484,58.436 +536665,71.037,63.374 +536666,70.199,61.748 +536667,69.277,60.092 +536668,68.258,58.407 +536669,69.652,63.35 +536670,68.865,61.722 +536671,67.995,60.065 +536672,67.032,58.379 +536673,68.267,63.324 +536674,67.53,61.696 +536675,66.714,60.039 +536676,65.808,58.352 +536677,66.881,63.296 +536678,66.195,61.669 +536679,65.433,60.013 +536680,64.584,58.327 +536681,65.495,63.268 +536682,64.86,61.642 +536683,64.152,59.987 +536684,63.361,58.303 +536685,64.108,63.238 +536686,63.525,61.614 +536687,62.871,59.962 +536688,62.138,58.281 +536689,62.721,63.207 +536690,62.189,61.586 +536691,61.591,59.937 +536692,60.916,58.259 +536693,61.333,63.174 +536694,60.854,61.558 +536695,60.31,59.913 +536696,59.694,58.239 +536697,59.945,63.14 +536698,59.518,61.529 +536699,59.03,59.889 +536700,58.473,58.221 +536701,58.556,63.105 +536702,58.182,61.499 +536703,57.75,59.865 +536704,57.252,58.204 +536705,57.167,63.069 +536706,56.847,61.469 +536707,56.47,59.842 +536708,56.031,58.188 +536709,55.777,63.031 +536710,55.511,61.439 +536711,55.191,59.82 +536712,54.811,58.173 +536713,54.387,62.992 +536714,54.175,61.408 +536715,53.911,59.797 +536716,53.591,58.16 +536717,52.997,62.951 +536718,52.839,61.377 +536719,52.632,59.776 +536720,52.371,58.148 +536721,51.607,62.91 +536722,51.502,61.345 +536723,51.352,59.754 +536724,51.151,58.137 +536725,50.217,62.867 +536726,50.166,61.313 +536727,50.073,59.733 +536728,49.932,58.128 +536729,48.826,62.822 +536730,48.83,61.28 +536731,48.794,59.713 +536732,48.712,58.12 +536733,47.435,62.777 +536734,47.494,61.247 +536735,47.514,59.693 +536736,47.492,58.113 +536737,46.044,62.73 +536738,46.158,61.214 +536739,46.235,59.673 +536740,46.273,58.108 +536741,44.653,62.682 +536742,44.822,61.18 +536743,44.956,59.654 +536744,45.053,58.104 +536745,43.263,62.632 +536746,43.486,61.145 +536747,43.677,59.635 +536748,43.833,58.101 +536749,41.872,62.581 +536750,42.15,61.111 +536751,42.398,59.616 +536752,42.613,58.099 +536753,40.481,62.53 +536754,40.814,61.075 +536755,41.118,59.598 +536756,41.392,58.099 +536757,39.09,62.476 +536758,39.478,61.04 +536759,39.839,59.58 +536760,40.171,58.099 +536761,37.7,62.422 +536762,38.142,61.004 +536763,38.56,59.563 +536764,38.95,58.101 +536765,36.309,62.367 +536766,36.807,60.967 +536767,37.28,59.546 +536768,37.729,58.104 +536769,34.919,62.31 +536770,35.471,60.93 +536771,36.001,59.529 +536772,36.507,58.109 +536773,33.529,62.252 +536774,34.136,60.893 +536775,34.721,59.513 +536776,35.284,58.114 +536777,32.14,62.193 +536778,32.801,60.855 +536779,33.441,59.497 +536780,34.061,58.121 +536781,30.75,62.133 +536782,31.466,60.817 +536783,32.162,59.482 +536784,32.837,58.128 +536785,29.361,62.072 +536786,30.131,60.779 +536787,30.882,59.467 +536788,31.613,58.137 +536789,27.973,62.009 +536790,28.796,60.74 +536791,29.601,59.452 +536792,30.388,58.147 +536793,26.585,61.946 +536794,27.462,60.701 +536795,28.321,59.438 +536796,29.163,58.158 +536797,25.197,61.881 +536798,26.128,60.661 +536799,27.041,59.424 +536800,27.936,58.17 +536801,23.81,61.815 +536802,24.794,60.621 +536803,25.76,59.41 +536804,26.709,58.183 +536805,22.424,61.749 +536806,23.46,60.581 +536807,24.479,59.396 +536808,25.481,58.196 +536809,21.038,61.681 +536810,22.127,60.54 +536811,23.198,59.383 +536812,24.252,58.211 +536813,19.653,61.612 +536814,20.793,60.499 +536815,21.916,59.37 +536816,23.022,58.227 +536817,18.268,61.543 +536818,19.461,60.458 +536819,20.634,59.358 +536820,21.791,58.244 +536821,16.884,61.472 +536822,18.128,60.416 +536823,19.353,59.346 +536824,20.559,58.262 +536825,15.501,61.4 +536826,16.796,60.374 +536827,18.07,59.334 +536828,19.327,58.28 +536829,14.119,61.328 +536830,15.464,60.332 +536831,16.788,59.322 +536832,18.093,58.3 +536833,12.738,61.254 +536834,14.132,60.29 +536835,15.505,59.311 +536836,16.858,58.32 +536837,11.357,61.18 +536838,12.801,60.247 +536839,14.222,59.3 +536840,15.621,58.341 +536841,9.9776,61.105 +536842,11.47,60.204 +536843,12.938,59.289 +536844,14.384,58.363 +536845,8.599,61.029 +536846,10.14,60.16 +536847,11.654,59.278 +536848,13.145,58.385 +536849,7.2213,60.952 +536850,8.8097,60.116 +536851,10.37,59.268 +536852,11.906,58.409 +536853,5.8446,60.875 +536854,7.4801,60.072 +536855,9.0856,59.258 +536856,10.664,58.433 +536857,4.4691,60.797 +536858,6.1508,60.028 +536859,7.8007,59.248 +536860,9.4221,58.457 +536861,3.0946,60.718 +536862,4.822,59.984 +536863,6.5153,59.238 +536864,8.1783,58.483 +536865,1.7212,60.638 +536866,3.4936,59.939 +536867,5.2296,59.229 +536868,6.9332,58.508 +536869,0.34907,60.558 +536870,2.1657,59.894 +536871,3.9435,59.219 +536872,5.6867,58.535 +536873,358.98,60.477 +536874,0.83827,59.849 +536875,2.6569,59.21 +536876,4.4387,58.562 +536877,357.61,60.395 +536878,359.51,59.804 +536879,1.3699,59.201 +536880,3.1893,58.59 +536881,356.24,60.313 +536882,358.18,59.758 +536883,0.082474,59.192 +536884,1.9385,58.618 +536885,354.87,60.23 +536886,356.86,59.712 +536887,358.79,59.184 +536888,0.6861,58.646 +536889,353.51,60.147 +536890,355.53,59.666 +536891,357.51,59.175 +536892,359.43,58.675 +536893,352.14,60.063 +536894,354.21,59.62 +536895,356.22,59.167 +536896,358.18,58.705 +536897,350.78,59.979 +536898,352.88,59.574 +536899,354.93,59.158 +536900,356.92,58.734 +536901,349.42,59.894 +536902,351.56,59.527 +536903,353.64,59.15 +536904,355.66,58.765 +536905,348.06,59.809 +536906,350.24,59.481 +536907,352.35,59.142 +536908,354.4,58.795 +536909,346.7,59.723 +536910,348.91,59.434 +536911,351.06,59.134 +536912,353.14,58.826 +536913,345.34,59.637 +536914,347.59,59.387 +536915,349.77,59.126 +536916,351.88,58.857 +536917,343.99,59.551 +536918,346.27,59.34 +536919,348.47,59.119 +536920,350.61,58.888 +536921,342.63,59.465 +536922,344.95,59.293 +536923,347.18,59.111 +536924,349.34,58.919 +536925,341.28,59.378 +536926,343.63,59.246 +536927,345.89,59.103 +536928,348.08,58.951 +536929,339.93,59.291 +536930,342.31,59.199 +536931,344.6,59.096 +536932,346.81,58.983 +536933,338.58,59.204 +536934,340.99,59.152 +536935,343.3,59.088 +536936,345.53,59.015 +536937,337.24,59.116 +536938,339.67,59.105 +536939,342.01,59.081 +536940,344.26,59.047 +536941,335.89,59.029 +536942,338.35,59.057 +536943,340.71,59.073 +536944,342.98,59.078 +536945,334.55,58.941 +536946,337.04,59.01 +536947,339.42,59.065 +536948,341.71,59.11 +536949,333.21,58.854 +536950,335.72,58.962 +536951,338.12,59.058 +536952,340.43,59.142 +536953,331.87,58.766 +536954,334.4,58.915 +536955,336.82,59.05 +536956,339.15,59.174 +536957,330.53,58.678 +536958,333.09,58.867 +536959,335.53,59.043 +536960,337.86,59.206 +536961,329.19,58.59 +536962,331.77,58.82 +536963,334.23,59.035 +536964,336.58,59.238 +536965,327.86,58.503 +536966,330.46,58.773 +536967,332.93,59.027 +536968,335.29,59.269 +536969,326.53,58.415 +536970,329.14,58.725 +536971,331.63,59.019 +536972,334.01,59.301 +536973,325.2,58.328 +536974,327.83,58.678 +536975,330.33,59.012 +536976,332.72,59.332 +536977,323.87,58.241 +536978,326.52,58.631 +536979,329.03,59.004 +536980,331.43,59.363 +536981,322.54,58.154 +536982,325.21,58.583 +536983,327.73,58.996 +536984,330.13,59.393 +536985,321.22,58.067 +536986,323.9,58.536 +536987,326.43,58.988 +536988,328.84,59.424 +536989,319.89,57.98 +536990,322.59,58.489 +536991,325.13,58.979 +536992,327.54,59.454 +536993,318.57,57.894 +536994,321.28,58.442 +536995,323.83,58.971 +536996,326.24,59.483 +536997,317.26,57.808 +536998,319.97,58.395 +536999,322.52,58.962 +537000,324.94,59.512 +537001,315.94,57.722 +537002,318.66,58.348 +537003,321.22,58.954 +537004,323.64,59.541 +537005,314.63,57.637 +537006,317.35,58.302 +537007,319.91,58.945 +537008,322.33,59.57 +537009,313.31,57.552 +537010,316.05,58.255 +537011,318.61,58.936 +537012,321.03,59.597 +537013,312,57.468 +537014,314.74,58.209 +537015,317.3,58.927 +537016,319.72,59.625 +537017,310.7,57.384 +537018,313.44,58.163 +537019,316,58.918 +537020,318.41,59.652 +537021,309.39,57.301 +537022,312.13,58.116 +537023,314.69,58.908 +537024,317.1,59.678 +537025,308.09,57.218 +537026,310.83,58.071 +537027,313.38,58.898 +537028,315.79,59.704 +537029,306.79,57.136 +537030,309.52,58.025 +537031,312.08,58.888 +537032,314.47,59.729 +537033,305.49,57.054 +537034,308.22,57.979 +537035,310.77,58.878 +537036,313.16,59.753 +537037,304.19,56.973 +537038,306.92,57.934 +537039,309.46,58.868 +537040,311.84,59.777 +537041,302.9,56.893 +537042,305.62,57.889 +537043,308.15,58.857 +537044,310.52,59.8 +537045,301.6,56.813 +537046,304.32,57.844 +537047,306.84,58.846 +537048,309.2,59.822 +537049,300.31,56.734 +537050,303.02,57.8 +537051,305.53,58.835 +537052,307.87,59.844 +537053,299.02,56.656 +537054,301.72,57.755 +537055,304.22,58.824 +537056,306.55,59.864 +537057,297.74,56.579 +537058,300.42,57.711 +537059,302.91,58.812 +537060,305.22,59.884 +537061,296.45,56.502 +537062,299.13,57.667 +537063,301.59,58.8 +537064,303.89,59.903 +537065,295.17,56.427 +537066,297.83,57.624 +537067,300.28,58.788 +537068,302.56,59.922 +537069,293.89,56.352 +537070,296.53,57.58 +537071,298.97,58.775 +537072,301.23,59.939 +537073,292.62,56.278 +537074,295.24,57.537 +537075,297.65,58.762 +537076,299.89,59.955 +537077,291.34,56.205 +537078,293.94,57.495 +537079,296.34,58.749 +537080,298.56,59.971 +537081,290.07,56.133 +537082,292.65,57.452 +537083,295.02,58.735 +537084,297.22,59.985 +537085,288.79,56.062 +537086,291.36,57.41 +537087,293.71,58.721 +537088,295.88,59.999 +537089,287.53,55.992 +537090,290.06,57.368 +537091,292.39,58.707 +537092,294.54,60.012 +537093,286.26,55.923 +537094,288.77,57.327 +537095,291.07,58.692 +537096,293.2,60.023 +537097,284.99,55.855 +537098,287.48,57.286 +537099,289.76,58.678 +537100,291.86,60.034 +537101,283.73,55.788 +537102,286.19,57.245 +537103,288.44,58.662 +537104,290.51,60.043 +537105,282.47,55.722 +537106,284.9,57.204 +537107,287.12,58.646 +537108,289.17,60.051 +537109,281.21,55.657 +537110,283.61,57.164 +537111,285.8,58.63 +537112,287.82,60.059 +537113,279.95,55.594 +537114,282.32,57.125 +537115,284.48,58.614 +537116,286.47,60.065 +537117,278.7,55.532 +537118,281.03,57.085 +537119,283.16,58.597 +537120,285.12,60.07 +537121,277.44,55.47 +537122,279.74,57.046 +537123,281.84,58.58 +537124,283.77,60.074 +537125,276.19,55.41 +537126,278.46,57.008 +537127,280.52,58.562 +537128,282.41,60.076 +537129,274.94,55.352 +537130,277.17,56.97 +537131,279.2,58.544 +537132,281.06,60.078 +537133,273.69,55.294 +537134,275.89,56.932 +537135,277.88,58.526 +537136,279.7,60.078 +537137,272.45,55.238 +537138,274.6,56.895 +537139,276.56,58.507 +537140,278.35,60.077 +537141,271.2,55.183 +537142,273.32,56.858 +537143,275.23,58.487 +537144,276.99,60.075 +537145,269.96,55.13 +537146,272.03,56.821 +537147,273.91,58.468 +537148,275.63,60.072 +537149,268.72,55.077 +537150,270.75,56.785 +537151,272.59,58.447 +537152,274.27,60.067 +537153,267.48,55.026 +537154,269.46,56.749 +537155,271.26,58.427 +537156,272.9,60.061 +537157,266.24,54.977 +537158,268.18,56.714 +537159,269.94,58.406 +537160,271.54,60.054 +537161,265.01,54.928 +537162,266.9,56.679 +537163,268.61,58.384 +537164,270.18,60.045 +537165,263.77,54.881 +537166,265.62,56.645 +537167,267.29,58.362 +537168,268.81,60.035 +537169,262.54,54.836 +537170,264.34,56.611 +537171,265.96,58.34 +537172,267.44,60.024 +537173,261.31,54.792 +537174,263.06,56.578 +537175,264.64,58.317 +537176,266.07,60.012 +537177,260.08,54.749 +537178,261.78,56.545 +537179,263.31,58.293 +537180,264.7,59.998 +537181,258.85,54.708 +537182,260.5,56.512 +537183,261.98,58.269 +537184,263.33,59.983 +537185,257.62,54.668 +537186,259.22,56.48 +537187,260.66,58.245 +537188,261.96,59.966 +537189,256.39,54.629 +537190,257.94,56.448 +537191,259.33,58.22 +537192,260.59,59.948 +537193,255.17,54.592 +537194,256.66,56.417 +537195,258,58.195 +537196,259.22,59.929 +537197,253.94,54.557 +537198,255.38,56.386 +537199,256.68,58.169 +537200,257.84,59.908 +537201,252.72,54.523 +537202,254.11,56.356 +537203,255.35,58.143 +537204,256.47,59.886 +537205,251.5,54.49 +537206,252.83,56.326 +537207,254.02,58.116 +537208,255.09,59.862 +537209,250.28,54.459 +537210,251.55,56.297 +537211,252.69,58.089 +537212,253.72,59.837 +537213,249.06,54.429 +537214,250.28,56.268 +537215,251.36,58.061 +537216,252.34,59.811 +537217,247.84,54.401 +537218,249,56.24 +537219,250.03,58.033 +537220,250.96,59.783 +537221,246.62,54.374 +537222,247.72,56.212 +537223,248.7,58.004 +537224,249.58,59.754 +537225,245.4,54.349 +537226,246.45,56.184 +537227,247.38,57.975 +537228,248.2,59.724 +537229,244.19,54.325 +537230,245.17,56.157 +537231,246.05,57.946 +537232,246.82,59.692 +537233,242.97,54.302 +537234,243.9,56.131 +537235,244.72,57.916 +537236,245.44,59.658 +537237,241.76,54.281 +537238,242.62,56.105 +537239,243.39,57.885 +537240,244.06,59.623 +537241,240.54,54.262 +537242,241.35,56.079 +537243,242.06,57.854 +537244,242.68,59.587 +537245,239.33,54.244 +537246,240.08,56.054 +537247,240.73,57.822 +537248,241.29,59.55 +537249,238.12,54.227 +537250,238.8,56.03 +537251,239.4,57.79 +537252,239.91,59.511 +537253,236.91,54.212 +537254,237.53,56.006 +537255,238.07,57.758 +537256,238.53,59.47 +537257,235.69,54.198 +537258,236.25,55.982 +537259,236.73,57.725 +537260,237.14,59.428 +537261,234.48,54.186 +537262,234.98,55.959 +537263,235.4,57.691 +537264,235.76,59.385 +537265,233.27,54.175 +537266,233.71,55.936 +537267,234.07,57.657 +537268,234.37,59.341 +537269,232.06,54.166 +537270,232.44,55.914 +537271,232.74,57.623 +537272,232.99,59.295 +537273,230.85,54.158 +537274,231.16,55.892 +537275,231.41,57.588 +537276,231.6,59.247 +537277,229.64,54.151 +537278,229.89,55.87 +537279,230.08,57.552 +537280,230.22,59.198 +537281,228.43,54.146 +537282,228.62,55.849 +537283,228.75,57.517 +537284,228.83,59.148 +537285,227.22,54.142 +537286,227.34,55.829 +537287,227.42,57.48 +537288,227.45,59.097 +537289,226.01,54.14 +537290,226.07,55.809 +537291,226.09,57.444 +537292,226.06,59.044 +537293,224.8,54.139 +537294,224.8,55.789 +537295,224.76,57.406 +537296,224.67,58.99 +537297,223.58,54.139 +537298,223.53,55.77 +537299,223.43,57.369 +537300,223.29,58.935 +537301,222.37,54.14 +537302,222.25,55.751 +537303,222.1,57.331 +537304,221.9,58.878 +537305,221.16,54.143 +537306,220.98,55.733 +537307,220.77,57.292 +537308,220.52,58.82 +537309,219.95,54.147 +537310,219.71,55.715 +537311,219.44,57.253 +537312,219.13,58.76 +537313,218.74,54.152 +537314,218.44,55.698 +537315,218.1,57.214 +537316,217.74,58.7 +537317,217.53,54.159 +537318,217.16,55.681 +537319,216.77,57.174 +537320,216.36,58.638 +537321,216.31,54.167 +537322,215.89,55.664 +537323,215.44,57.133 +537324,214.97,58.575 +537325,215.1,54.176 +537326,214.62,55.648 +537327,214.11,57.093 +537328,213.59,58.51 +537329,213.89,54.186 +537330,213.35,55.632 +537331,212.78,57.052 +537332,212.2,58.445 +537333,212.67,54.198 +537334,212.07,55.616 +537335,211.45,57.01 +537336,210.82,58.378 +537337,211.46,54.21 +537338,210.8,55.601 +537339,210.12,56.968 +537340,209.43,58.31 +537341,210.25,54.224 +537342,209.53,55.587 +537343,208.8,56.926 +537344,208.05,58.241 +537345,209.03,54.238 +537346,208.25,55.572 +537347,207.47,56.883 +537348,206.66,58.171 +537349,207.81,54.254 +537350,206.98,55.558 +537351,206.14,56.84 +537352,205.28,58.099 +537353,206.6,54.271 +537354,205.71,55.544 +537355,204.81,56.797 +537356,203.9,58.027 +537357,205.38,54.289 +537358,204.43,55.531 +537359,203.48,56.753 +537360,202.51,57.953 +537361,204.16,54.308 +537362,203.16,55.518 +537363,202.15,56.709 +537364,201.13,57.879 +537365,202.94,54.328 +537366,201.89,55.505 +537367,200.82,56.664 +537368,199.75,57.803 +537369,201.72,54.349 +537370,200.61,55.493 +537371,199.5,56.619 +537372,198.37,57.726 +537373,200.49,54.371 +537374,199.34,55.481 +537375,198.17,56.574 +537376,196.99,57.648 +537377,199.27,54.393 +537378,198.06,55.469 +537379,196.84,56.529 +537380,195.61,57.57 +537381,198.05,54.417 +537382,196.79,55.458 +537383,195.52,56.483 +537384,194.23,57.49 +537385,196.82,54.441 +537386,195.51,55.447 +537387,194.19,56.437 +537388,192.85,57.41 +537389,195.6,54.467 +537390,194.24,55.436 +537391,192.86,56.39 +537392,191.48,57.328 +537393,194.37,54.493 +537394,192.96,55.425 +537395,191.54,56.343 +537396,190.1,57.246 +537397,193.14,54.52 +537398,191.68,55.415 +537399,190.21,56.296 +537400,188.73,57.163 +537401,191.91,54.547 +537402,190.41,55.405 +537403,188.89,56.249 +537404,187.35,57.078 +537405,190.68,54.575 +537406,189.13,55.395 +537407,187.56,56.202 +537408,185.98,56.994 +537409,189.45,54.604 +537410,187.85,55.385 +537411,186.24,56.154 +537412,184.61,56.908 +537413,188.21,54.634 +537414,186.57,55.376 +537415,184.92,56.106 +537416,183.23,56.822 +537417,186.98,54.664 +537418,185.3,55.367 +537419,183.59,56.057 +537420,181.86,56.735 +537421,185.74,54.695 +537422,184.02,55.358 +537423,182.27,56.009 +537424,180.5,56.647 +537425,184.5,54.726 +537426,182.74,55.349 +537427,180.95,55.96 +537428,179.13,56.559 +537429,183.26,54.758 +537430,181.46,55.34 +537431,179.63,55.911 +537432,177.76,56.47 +537433,182.02,54.79 +537434,180.18,55.332 +537435,178.3,55.862 +537436,176.4,56.38 +537437,180.78,54.823 +537438,178.9,55.323 +537439,176.98,55.813 +537440,175.03,56.29 +537441,179.53,54.856 +537442,177.62,55.315 +537443,175.66,55.764 +537444,173.67,56.199 +537445,178.29,54.889 +537446,176.34,55.307 +537447,174.34,55.714 +537448,172.31,56.108 +537449,177.04,54.923 +537450,175.05,55.299 +537451,173.03,55.664 +537452,170.95,56.016 +537453,175.79,54.957 +537454,173.77,55.291 +537455,171.71,55.614 +537456,169.59,55.924 +537457,174.54,54.992 +537458,172.49,55.284 +537459,170.39,55.564 +537460,168.23,55.831 +537461,173.29,55.027 +537462,171.21,55.276 +537463,169.07,55.514 +537464,166.88,55.738 +537465,172.03,55.062 +537466,169.92,55.268 +537467,167.75,55.464 +537468,165.52,55.645 +537469,170.78,55.097 +537470,168.64,55.261 +537471,166.44,55.413 +537472,164.17,55.552 +537473,169.52,55.132 +537474,167.35,55.254 +537475,165.12,55.363 +537476,162.82,55.458 +537477,168.26,55.167 +537478,166.07,55.246 +537479,163.81,55.312 +537480,161.47,55.364 +537481,167,55.203 +537482,164.78,55.239 +537483,162.49,55.262 +537484,160.12,55.269 +537485,165.74,55.239 +537486,163.5,55.232 +537487,161.18,55.211 +537488,158.77,55.175 +537489,164.47,55.274 +537490,162.21,55.224 +537491,159.87,55.161 +537492,157.43,55.08 +537493,163.21,55.31 +537494,160.92,55.217 +537495,158.55,55.11 +537496,156.09,54.986 +537497,161.94,55.345 +537498,159.64,55.21 +537499,157.24,55.059 +537500,154.75,54.891 +537501,160.67,55.381 +537502,158.35,55.202 +537503,155.93,55.009 +537504,153.41,54.796 +537505,159.4,55.416 +537506,157.06,55.195 +537507,154.62,54.958 +537508,152.07,54.702 +537509,158.12,55.451 +537510,155.77,55.188 +537511,153.31,54.907 +537512,150.73,54.607 +537513,156.85,55.486 +537514,154.48,55.18 +537515,152,54.857 +537516,149.4,54.512 +537517,155.57,55.521 +537518,153.19,55.173 +537519,150.69,54.806 +537520,148.07,54.418 +537521,154.29,55.555 +537522,151.9,55.165 +537523,149.38,54.755 +537524,146.74,54.323 +537525,153.01,55.59 +537526,150.6,55.157 +537527,148.08,54.705 +537528,145.41,54.229 +537529,151.73,55.624 +537530,149.31,55.15 +537531,146.77,54.655 +537532,144.09,54.135 +537533,150.45,55.657 +537534,148.02,55.142 +537535,145.47,54.604 +537536,142.76,54.041 +537537,149.16,55.69 +537538,146.73,55.134 +537539,144.16,54.554 +537540,141.44,53.948 +537541,147.87,55.723 +537542,145.43,55.126 +537543,142.86,54.504 +537544,140.12,53.855 +537545,146.58,55.756 +537546,144.14,55.117 +537547,141.55,54.454 +537548,138.8,53.762 +537549,145.29,55.787 +537550,142.84,55.109 +537551,140.25,54.404 +537552,137.49,53.67 +537553,144,55.819 +537554,141.55,55.1 +537555,138.95,54.355 +537556,136.17,53.578 +537557,142.7,55.85 +537558,140.25,55.092 +537559,137.65,54.305 +537560,134.86,53.486 +537561,141.4,55.88 +537562,138.95,55.083 +537563,136.35,54.256 +537564,133.55,53.395 +537565,140.11,55.91 +537566,137.65,55.073 +537567,135.05,54.207 +537568,132.25,53.305 +537569,138.8,55.939 +537570,136.36,55.064 +537571,133.75,54.158 +537572,130.94,53.215 +537573,137.5,55.967 +537574,135.06,55.055 +537575,132.45,54.109 +537576,129.64,53.126 +537577,136.2,55.995 +537578,133.76,55.045 +537579,131.15,54.06 +537580,128.34,53.038 +537581,134.89,56.022 +537582,132.46,55.035 +537583,129.85,54.012 +537584,127.04,52.95 +537585,133.58,56.048 +537586,131.16,55.024 +537587,128.56,53.964 +537588,125.75,52.863 +537589,132.27,56.074 +537590,129.86,55.014 +537591,127.26,53.916 +537592,124.45,52.776 +537593,130.96,56.098 +537594,128.55,55.003 +537595,125.97,53.869 +537596,123.16,52.691 +537597,129.65,56.122 +537598,127.25,54.992 +537599,124.67,53.821 +537600,121.87,52.606 +537601,128.33,56.145 +537602,125.95,54.98 +537603,123.38,53.774 +537604,120.58,52.522 +537605,127.02,56.167 +537606,124.65,54.969 +537607,122.09,53.728 +537608,119.3,52.439 +537609,125.7,56.189 +537610,123.34,54.957 +537611,120.8,53.681 +537612,118.02,52.357 +537613,124.38,56.209 +537614,122.04,54.944 +537615,119.5,53.635 +537616,116.74,52.275 +537617,123.06,56.228 +537618,120.73,54.932 +537619,118.21,53.589 +537620,115.46,52.195 +537621,121.73,56.247 +537622,119.43,54.919 +537623,116.93,53.544 +537624,114.18,52.116 +537625,120.41,56.264 +537626,118.12,54.906 +537627,115.64,53.499 +537628,112.91,52.038 +537629,119.08,56.28 +537630,116.81,54.892 +537631,114.35,53.454 +537632,111.64,51.961 +537633,117.75,56.296 +537634,115.51,54.878 +537635,113.06,53.41 +537636,110.37,51.885 +537637,116.42,56.31 +537638,114.2,54.864 +537639,111.77,53.366 +537640,109.1,51.81 +537641,115.09,56.323 +537642,112.89,54.849 +537643,110.49,53.322 +537644,107.84,51.736 +537645,113.76,56.335 +537646,111.58,54.834 +537647,109.2,53.279 +537648,106.58,51.663 +537649,112.42,56.346 +537650,110.27,54.818 +537651,107.92,53.236 +537652,105.32,51.592 +537653,111.08,56.356 +537654,108.96,54.802 +537655,106.63,53.193 +537656,104.06,51.522 +537657,109.75,56.364 +537658,107.65,54.786 +537659,105.35,53.151 +537660,102.8,51.453 +537661,108.41,56.371 +537662,106.34,54.769 +537663,104.07,53.11 +537664,101.55,51.386 +537665,107.07,56.377 +537666,105.03,54.752 +537667,102.79,53.068 +537668,100.3,51.319 +537669,105.72,56.382 +537670,103.72,54.734 +537671,101.51,53.028 +537672,99.046,51.254 +537673,104.38,56.386 +537674,102.4,54.716 +537675,100.23,52.987 +537676,97.799,51.191 +537677,103.04,56.388 +537678,101.09,54.698 +537679,98.945,52.947 +537680,96.553,51.129 +537681,101.69,56.389 +537682,99.777,54.679 +537683,97.666,52.908 +537684,95.309,51.068 +537685,100.34,56.389 +537686,98.463,54.66 +537687,96.388,52.869 +537688,94.068,51.008 +537689,98.992,56.387 +537690,97.149,54.64 +537691,95.11,52.83 +537692,92.828,50.95 +537693,97.641,56.384 +537694,95.834,54.62 +537695,93.832,52.792 +537696,91.59,50.894 +537697,96.29,56.38 +537698,94.519,54.599 +537699,92.556,52.755 +537700,90.354,50.839 +537701,94.937,56.374 +537702,93.203,54.578 +537703,91.28,52.718 +537704,89.12,50.785 +537705,93.582,56.367 +537706,91.887,54.556 +537707,90.004,52.681 +537708,87.888,50.733 +537709,92.227,56.358 +537710,90.571,54.534 +537711,88.729,52.645 +537712,86.657,50.683 +537713,90.87,56.348 +537714,89.254,54.511 +537715,87.455,52.609 +537716,85.428,50.634 +537717,89.513,56.337 +537718,87.937,54.488 +537719,86.181,52.574 +537720,84.201,50.586 +537721,88.154,56.324 +537722,86.62,54.465 +537723,84.907,52.539 +537724,82.975,50.541 +537725,86.794,56.31 +537726,85.302,54.441 +537727,83.635,52.505 +537728,81.752,50.496 +537729,85.433,56.294 +537730,83.984,54.416 +537731,82.362,52.472 +537732,80.529,50.454 +537733,84.071,56.277 +537734,82.665,54.391 +537735,81.091,52.439 +537736,79.308,50.412 +537737,82.708,56.259 +537738,81.346,54.365 +537739,79.819,52.406 +537740,78.089,50.373 +537741,81.344,56.238 +537742,80.027,54.339 +537743,78.548,52.374 +537744,76.871,50.335 +537745,79.979,56.217 +537746,78.708,54.313 +537747,77.278,52.342 +537748,75.654,50.299 +537749,78.613,56.194 +537750,77.388,54.286 +537751,76.008,52.311 +537752,74.439,50.264 +537753,77.246,56.169 +537754,76.068,54.258 +537755,74.739,52.281 +537756,73.225,50.231 +537757,75.879,56.143 +537758,74.748,54.23 +537759,73.47,52.251 +537760,72.013,50.2 +537761,74.51,56.116 +537762,73.427,54.201 +537763,72.201,52.221 +537764,70.801,50.17 +537765,73.141,56.087 +537766,72.106,54.172 +537767,70.933,52.193 +537768,69.591,50.142 +537769,71.771,56.056 +537770,70.785,54.142 +537771,69.665,52.164 +537772,68.381,50.115 +537773,70.401,56.024 +537774,69.464,54.112 +537775,68.398,52.136 +537776,67.173,50.09 +537777,69.029,55.99 +537778,68.143,54.081 +537779,67.13,52.109 +537780,65.966,50.067 +537781,67.657,55.955 +537782,66.821,54.05 +537783,65.864,52.082 +537784,64.759,50.046 +537785,66.285,55.919 +537786,65.499,54.018 +537787,64.597,52.056 +537788,63.554,50.026 +537789,64.911,55.881 +537790,64.177,53.986 +537791,63.331,52.03 +537792,62.349,50.007 +537793,63.538,55.841 +537794,62.855,53.953 +537795,62.065,52.005 +537796,61.145,49.991 +537797,62.163,55.8 +537798,61.533,53.92 +537799,60.8,51.981 +537800,59.942,49.976 +537801,60.788,55.757 +537802,60.211,53.886 +537803,59.534,51.956 +537804,58.739,49.962 +537805,59.413,55.713 +537806,58.888,53.852 +537807,58.269,51.933 +537808,57.537,49.95 +537809,58.038,55.667 +537810,57.566,53.817 +537811,57.004,51.91 +537812,56.335,49.94 +537813,56.661,55.62 +537814,56.243,53.782 +537815,55.74,51.887 +537816,55.134,49.932 +537817,55.285,55.572 +537818,54.921,53.746 +537819,54.475,51.865 +537820,53.933,49.924 +537821,53.908,55.522 +537822,53.598,53.71 +537823,53.211,51.844 +537824,52.733,49.919 +537825,52.531,55.47 +537826,52.275,53.673 +537827,51.947,51.823 +537828,51.533,49.915 +537829,51.154,55.417 +537830,50.952,53.636 +537831,50.683,51.802 +537832,50.333,49.913 +537833,49.776,55.363 +537834,49.63,53.598 +537835,49.419,51.782 +537836,49.133,49.912 +537837,48.399,55.307 +537838,48.307,53.56 +537839,48.155,51.763 +537840,47.934,49.912 +537841,47.021,55.249 +537842,46.984,53.521 +537843,46.891,51.744 +537844,46.734,49.914 +537845,45.643,55.191 +537846,45.661,53.482 +537847,45.628,51.725 +537848,45.535,49.918 +537849,44.265,55.13 +537850,44.339,53.442 +537851,44.364,51.707 +537852,44.335,49.923 +537853,42.887,55.069 +537854,43.016,53.402 +537855,43.101,51.689 +537856,43.135,49.929 +537857,41.509,55.006 +537858,41.693,53.361 +537859,41.838,51.672 +537860,41.936,49.937 +537861,40.131,54.942 +537862,40.371,53.32 +537863,40.574,51.656 +537864,40.735,49.947 +537865,38.753,54.876 +537866,39.049,53.279 +537867,39.311,51.64 +537868,39.535,49.957 +537869,37.375,54.809 +537870,37.726,53.237 +537871,38.047,51.624 +537872,38.334,49.969 +537873,35.998,54.741 +537874,36.404,53.194 +537875,36.784,51.609 +537876,37.133,49.983 +537877,34.62,54.671 +537878,35.082,53.151 +537879,35.52,51.594 +537880,35.932,49.998 +537881,33.243,54.6 +537882,33.76,53.108 +537883,34.257,51.58 +537884,34.73,50.014 +537885,31.866,54.528 +537886,32.439,53.064 +537887,32.993,51.566 +537888,33.527,50.031 +537889,30.49,54.454 +537890,31.117,53.02 +537891,31.73,51.552 +537892,32.324,50.049 +537893,29.113,54.379 +537894,29.796,52.976 +537895,30.466,51.539 +537896,31.121,50.069 +537897,27.737,54.303 +537898,28.475,52.931 +537899,29.202,51.526 +537900,29.916,50.09 +537901,26.362,54.226 +537902,27.154,52.885 +537903,27.938,51.514 +537904,28.711,50.112 +537905,24.987,54.148 +537906,25.834,52.84 +537907,26.673,51.502 +537908,27.505,50.135 +537909,23.612,54.068 +537910,24.514,52.794 +537911,25.409,51.491 +537912,26.298,50.16 +537913,22.238,53.988 +537914,23.194,52.747 +537915,24.144,51.48 +537916,25.09,50.185 +537917,20.865,53.906 +537918,21.874,52.7 +537919,22.88,51.469 +537920,23.882,50.212 +537921,19.492,53.823 +537922,20.554,52.653 +537923,21.614,51.458 +537924,22.672,50.239 +537925,18.119,53.739 +537926,19.235,52.606 +537927,20.349,51.448 +537928,21.461,50.268 +537929,16.748,53.655 +537930,17.917,52.558 +537931,19.084,51.438 +537932,20.25,50.297 +537933,15.377,53.569 +537934,16.598,52.51 +537935,17.818,51.429 +537936,19.037,50.327 +537937,14.007,53.482 +537938,15.28,52.461 +537939,16.552,51.42 +537940,17.823,50.359 +537941,12.638,53.394 +537942,13.962,52.413 +537943,15.286,51.411 +537944,16.608,50.391 +537945,11.269,53.305 +537946,12.645,52.363 +537947,14.019,51.403 +537948,15.392,50.424 +537949,9.9014,53.215 +537950,11.328,52.314 +537951,12.752,51.394 +537952,14.174,50.457 +537953,8.5347,53.125 +537954,10.012,52.265 +537955,11.485,51.386 +537956,12.955,50.492 +537957,7.169,53.034 +537958,8.6957,52.215 +537959,10.217,51.379 +537960,11.735,50.527 +537961,5.8042,52.941 +537962,7.3801,52.165 +537963,8.9494,51.371 +537964,10.513,50.563 +537965,4.4404,52.848 +537966,6.0649,52.114 +537967,7.6811,51.364 +537968,9.2903,50.6 +537969,3.0777,52.755 +537970,4.7502,52.064 +537971,6.4124,51.357 +537972,8.0659,50.637 +537973,1.7161,52.66 +537974,3.436,52.013 +537975,5.1434,51.35 +537976,6.84,50.675 +537977,0.35563,52.565 +537978,2.1222,51.962 +537979,3.874,51.344 +537980,5.6127,50.713 +537981,359,52.469 +537982,0.80898,51.91 +537983,2.6041,51.338 +537984,4.3838,50.752 +537985,357.64,52.373 +537986,359.5,51.859 +537987,1.3339,51.331 +537988,3.1534,50.791 +537989,356.28,52.276 +537990,358.18,51.807 +537991,0.063217,51.325 +537992,1.9214,50.831 +537993,354.93,52.178 +537994,356.87,51.756 +537995,358.79,51.32 +537996,0.68786,50.872 +537997,353.57,52.08 +537998,355.56,51.704 +537999,357.52,51.314 +538000,359.45,50.912 +538001,352.22,51.981 +538002,354.25,51.652 +538003,356.25,51.308 +538004,358.22,50.953 +538005,350.87,51.882 +538006,352.94,51.6 +538007,354.98,51.303 +538008,356.98,50.994 +538009,349.52,51.783 +538010,351.63,51.547 +538011,353.7,51.298 +538012,355.74,51.036 +538013,348.17,51.683 +538014,350.32,51.495 +538015,352.43,51.293 +538016,354.5,51.078 +538017,346.82,51.583 +538018,349.01,51.442 +538019,351.16,51.288 +538020,353.25,51.12 +538021,345.48,51.482 +538022,347.71,51.39 +538023,349.88,51.283 +538024,352.01,51.162 +538025,344.13,51.381 +538026,346.4,51.337 +538027,348.61,51.278 +538028,350.76,51.204 +538029,342.79,51.28 +538030,345.09,51.285 +538031,347.33,51.273 +538032,349.51,51.247 +538033,341.45,51.179 +538034,343.79,51.232 +538035,346.06,51.268 +538036,348.26,51.289 +538037,340.11,51.078 +538038,342.48,51.179 +538039,344.78,51.263 +538040,347.01,51.331 +538041,338.77,50.976 +538042,341.18,51.127 +538043,343.5,51.258 +538044,345.75,51.374 +538045,337.44,50.875 +538046,339.87,51.074 +538047,342.22,51.253 +538048,344.5,51.416 +538049,336.1,50.773 +538050,338.57,51.021 +538051,340.95,51.249 +538052,343.24,51.458 +538053,334.77,50.671 +538054,337.27,50.968 +538055,339.67,51.244 +538056,341.98,51.5 +538057,333.44,50.57 +538058,335.97,50.916 +538059,338.39,51.239 +538060,340.72,51.542 +538061,332.11,50.468 +538062,334.67,50.863 +538063,337.11,51.234 +538064,339.45,51.584 +538065,330.78,50.367 +538066,333.37,50.811 +538067,335.83,51.229 +538068,338.19,51.626 +538069,329.46,50.266 +538070,332.07,50.758 +538071,334.55,51.224 +538072,336.92,51.667 +538073,328.14,50.165 +538074,330.77,50.706 +538075,333.27,51.219 +538076,335.65,51.708 +538077,326.82,50.064 +538078,329.47,50.653 +538079,331.98,51.214 +538080,334.38,51.749 +538081,325.5,49.963 +538082,328.17,50.601 +538083,330.7,51.209 +538084,333.11,51.789 +538085,324.18,49.863 +538086,326.87,50.549 +538087,329.42,51.203 +538088,331.84,51.829 +538089,322.87,49.763 +538090,325.58,50.497 +538091,328.13,51.198 +538092,330.56,51.868 +538093,321.55,49.664 +538094,324.28,50.445 +538095,326.85,51.192 +538096,329.28,51.907 +538097,320.24,49.564 +538098,322.99,50.394 +538099,325.57,51.186 +538100,328,51.945 +538101,318.94,49.466 +538102,321.69,50.343 +538103,324.28,51.18 +538104,326.72,51.983 +538105,317.63,49.368 +538106,320.4,50.291 +538107,322.99,51.174 +538108,325.43,52.02 +538109,316.33,49.27 +538110,319.11,50.24 +538111,321.71,51.168 +538112,324.15,52.057 +538113,315.02,49.173 +538114,317.82,50.19 +538115,320.42,51.161 +538116,322.86,52.093 +538117,313.72,49.077 +538118,316.53,50.139 +538119,319.13,51.154 +538120,321.57,52.128 +538121,312.43,48.981 +538122,315.24,50.089 +538123,317.84,51.147 +538124,320.28,52.163 +538125,311.13,48.886 +538126,313.95,50.039 +538127,316.56,51.14 +538128,318.99,52.197 +538129,309.84,48.792 +538130,312.66,49.989 +538131,315.27,51.133 +538132,317.69,52.23 +538133,308.55,48.699 +538134,311.37,49.939 +538135,313.98,51.125 +538136,316.4,52.262 +538137,307.26,48.606 +538138,310.09,49.89 +538139,312.68,51.117 +538140,315.1,52.293 +538141,305.97,48.514 +538142,308.8,49.841 +538143,311.39,51.109 +538144,313.8,52.324 +538145,304.69,48.424 +538146,307.51,49.793 +538147,310.1,51.1 +538148,312.5,52.354 +538149,303.41,48.334 +538150,306.23,49.744 +538151,308.81,51.091 +538152,311.19,52.383 +538153,302.13,48.245 +538154,304.95,49.696 +538155,307.52,51.082 +538156,309.89,52.41 +538157,300.85,48.157 +538158,303.66,49.649 +538159,306.22,51.073 +538160,308.58,52.437 +538161,299.58,48.07 +538162,302.38,49.601 +538163,304.93,51.063 +538164,307.27,52.463 +538165,298.3,47.984 +538166,301.1,49.555 +538167,303.63,51.053 +538168,305.96,52.488 +538169,297.03,47.9 +538170,299.82,49.508 +538171,302.34,51.042 +538172,304.65,52.512 +538173,295.77,47.816 +538174,298.54,49.462 +538175,301.04,51.031 +538176,303.33,52.534 +538177,294.5,47.734 +538178,297.26,49.416 +538179,299.75,51.02 +538180,302.02,52.556 +538181,293.24,47.653 +538182,295.98,49.371 +538183,298.45,51.009 +538184,300.7,52.576 +538185,291.98,47.573 +538186,294.7,49.326 +538187,297.15,50.997 +538188,299.38,52.596 +538189,290.72,47.495 +538190,293.43,49.282 +538191,295.86,50.984 +538192,298.06,52.614 +538193,289.46,47.418 +538194,292.15,49.238 +538195,294.56,50.972 +538196,296.74,52.631 +538197,288.21,47.342 +538198,290.87,49.194 +538199,293.26,50.958 +538200,295.42,52.646 +538201,286.96,47.267 +538202,289.6,49.151 +538203,291.96,50.945 +538204,294.09,52.661 +538205,285.71,47.194 +538206,288.33,49.109 +538207,290.66,50.931 +538208,292.76,52.674 +538209,284.46,47.123 +538210,287.05,49.066 +538211,289.36,50.917 +538212,291.44,52.686 +538213,283.22,47.053 +538214,285.78,49.025 +538215,288.06,50.902 +538216,290.11,52.696 +538217,281.97,46.984 +538218,284.51,48.984 +538219,286.76,50.886 +538220,288.78,52.705 +538221,280.73,46.917 +538222,283.24,48.943 +538223,285.45,50.871 +538224,287.44,52.713 +538225,279.49,46.851 +538226,281.97,48.903 +538227,284.15,50.854 +538228,286.11,52.72 +538229,278.26,46.787 +538230,280.7,48.863 +538231,282.85,50.838 +538232,284.78,52.725 +538233,277.02,46.725 +538234,279.43,48.824 +538235,281.55,50.821 +538236,283.44,52.729 +538237,275.79,46.664 +538238,278.16,48.786 +538239,280.24,50.803 +538240,282.1,52.731 +538241,274.56,46.605 +538242,276.89,48.748 +538243,278.94,50.785 +538244,280.76,52.732 +538245,273.33,46.548 +538246,275.62,48.71 +538247,277.63,50.766 +538248,279.42,52.731 +538249,272.11,46.492 +538250,274.36,48.673 +538251,276.33,50.747 +538252,278.08,52.729 +538253,270.88,46.438 +538254,273.09,48.637 +538255,275.02,50.728 +538256,276.74,52.725 +538257,269.66,46.386 +538258,271.83,48.601 +538259,273.72,50.708 +538260,275.39,52.72 +538261,268.44,46.335 +538262,270.56,48.566 +538263,272.41,50.687 +538264,274.05,52.714 +538265,267.22,46.286 +538266,269.3,48.531 +538267,271.11,50.666 +538268,272.7,52.706 +538269,266,46.239 +538270,268.03,48.497 +538271,269.8,50.644 +538272,271.36,52.696 +538273,264.79,46.194 +538274,266.77,48.464 +538275,268.49,50.622 +538276,270.01,52.685 +538277,263.58,46.151 +538278,265.51,48.431 +538279,267.18,50.6 +538280,268.66,52.672 +538281,262.36,46.109 +538282,264.25,48.398 +538283,265.88,50.576 +538284,267.31,52.658 +538285,261.15,46.069 +538286,262.99,48.367 +538287,264.57,50.553 +538288,265.96,52.642 +538289,259.95,46.031 +538290,261.73,48.336 +538291,263.26,50.528 +538292,264.6,52.624 +538293,258.74,45.995 +538294,260.47,48.305 +538295,261.95,50.504 +538296,263.25,52.605 +538297,257.53,45.961 +538298,259.21,48.275 +538299,260.64,50.478 +538300,261.9,52.585 +538301,256.33,45.928 +538302,257.95,48.246 +538303,259.33,50.452 +538304,260.54,52.563 +538305,255.13,45.897 +538306,256.69,48.217 +538307,258.02,50.426 +538308,259.19,52.539 +538309,253.93,45.869 +538310,255.43,48.189 +538311,256.71,50.399 +538312,257.83,52.513 +538313,252.73,45.842 +538314,254.17,48.162 +538315,255.4,50.372 +538316,256.47,52.486 +538317,251.53,45.817 +538318,252.91,48.135 +538319,254.09,50.344 +538320,255.11,52.458 +538321,250.33,45.794 +538322,251.66,48.108 +538323,252.78,50.315 +538324,253.76,52.427 +538325,249.13,45.772 +538326,250.4,48.083 +538327,251.47,50.286 +538328,252.4,52.395 +538329,247.94,45.753 +538330,249.14,48.058 +538331,250.16,50.256 +538332,251.04,52.362 +538333,246.74,45.735 +538334,247.89,48.033 +538335,248.85,50.226 +538336,249.68,52.327 +538337,245.55,45.72 +538338,246.63,48.01 +538339,247.54,50.195 +538340,248.31,52.29 +538341,244.36,45.706 +538342,245.38,47.986 +538343,246.23,50.164 +538344,246.95,52.252 +538345,243.16,45.694 +538346,244.12,47.964 +538347,244.92,50.132 +538348,245.59,52.212 +538349,241.97,45.684 +538350,242.87,47.942 +538351,243.61,50.1 +538352,244.23,52.17 +538353,240.78,45.675 +538354,241.61,47.92 +538355,242.3,50.067 +538356,242.86,52.127 +538357,239.59,45.669 +538358,240.36,47.9 +538359,240.98,50.034 +538360,241.5,52.082 +538361,238.4,45.664 +538362,239.1,47.879 +538363,239.67,50 +538364,240.14,52.036 +538365,237.21,45.661 +538366,237.85,47.86 +538367,238.36,49.965 +538368,238.77,51.988 +538369,236.02,45.66 +538370,236.6,47.841 +538371,237.05,49.93 +538372,237.41,51.938 +538373,234.84,45.661 +538374,235.34,47.822 +538375,235.74,49.895 +538376,236.04,51.887 +538377,233.65,45.663 +538378,234.09,47.805 +538379,234.43,49.859 +538380,234.68,51.834 +538381,232.46,45.667 +538382,232.84,47.787 +538383,233.11,49.822 +538384,233.31,51.78 +538385,231.27,45.673 +538386,231.58,47.771 +538387,231.8,49.785 +538388,231.95,51.724 +538389,230.09,45.681 +538390,230.33,47.755 +538391,230.49,49.747 +538392,230.58,51.666 +538393,228.9,45.69 +538394,229.08,47.739 +538395,229.18,49.709 +538396,229.22,51.607 +538397,227.71,45.701 +538398,227.83,47.724 +538399,227.87,49.671 +538400,227.85,51.547 +538401,226.52,45.713 +538402,226.57,47.71 +538403,226.56,49.632 +538404,226.49,51.485 +538405,225.34,45.727 +538406,225.32,47.696 +538407,225.25,49.592 +538408,225.12,51.421 +538409,224.15,45.743 +538410,224.07,47.683 +538411,223.93,49.552 +538412,223.75,51.356 +538413,222.96,45.76 +538414,222.82,47.67 +538415,222.62,49.511 +538416,222.39,51.29 +538417,221.77,45.779 +538418,221.56,47.658 +538419,221.31,49.47 +538420,221.02,51.222 +538421,220.58,45.8 +538422,220.31,47.646 +538423,220,49.429 +538424,219.66,51.153 +538425,219.39,45.821 +538426,219.06,47.635 +538427,218.69,49.387 +538428,218.29,51.082 +538429,218.2,45.845 +538430,217.81,47.624 +538431,217.38,49.344 +538432,216.93,51.01 +538433,217.01,45.87 +538434,216.55,47.614 +538435,216.07,49.302 +538436,215.56,50.936 +538437,215.82,45.896 +538438,215.3,47.604 +538439,214.76,49.258 +538440,214.2,50.861 +538441,214.63,45.923 +538442,214.05,47.595 +538443,213.45,49.215 +538444,212.84,50.785 +538445,213.44,45.952 +538446,212.8,47.586 +538447,212.14,49.171 +538448,211.47,50.708 +538449,212.25,45.982 +538450,211.54,47.578 +538451,210.83,49.126 +538452,210.11,50.629 +538453,211.05,46.014 +538454,210.29,47.57 +538455,209.52,49.081 +538456,208.75,50.549 +538457,209.86,46.047 +538458,209.04,47.563 +538459,208.21,49.036 +538460,207.39,50.467 +538461,208.66,46.081 +538462,207.78,47.556 +538463,206.9,48.99 +538464,206.02,50.385 +538465,207.47,46.116 +538466,206.53,47.549 +538467,205.6,48.944 +538468,204.66,50.301 +538469,206.27,46.152 +538470,205.28,47.543 +538471,204.29,48.898 +538472,203.3,50.216 +538473,205.07,46.19 +538474,204.02,47.538 +538475,202.98,48.851 +538476,201.94,50.129 +538477,203.87,46.228 +538478,202.77,47.532 +538479,201.67,48.804 +538480,200.58,50.042 +538481,202.67,46.268 +538482,201.51,47.528 +538483,200.37,48.756 +538484,199.23,49.954 +538485,201.47,46.309 +538486,200.26,47.523 +538487,199.06,48.708 +538488,197.87,49.864 +538489,200.27,46.35 +538490,199,47.519 +538491,197.75,48.66 +538492,196.51,49.773 +538493,199.06,46.393 +538494,197.75,47.515 +538495,196.45,48.612 +538496,195.16,49.682 +538497,197.86,46.436 +538498,196.49,47.512 +538499,195.14,48.563 +538500,193.8,49.589 +538501,196.65,46.48 +538502,195.24,47.509 +538503,193.84,48.514 +538504,192.45,49.496 +538505,195.44,46.525 +538506,193.98,47.506 +538507,192.53,48.464 +538508,191.09,49.401 +538509,194.23,46.571 +538510,192.72,47.503 +538511,191.23,48.415 +538512,189.74,49.306 +538513,193.02,46.618 +538514,191.47,47.501 +538515,189.92,48.365 +538516,188.39,49.209 +538517,191.81,46.665 +538518,190.21,47.499 +538519,188.62,48.315 +538520,187.04,49.112 +538521,190.59,46.713 +538522,188.95,47.497 +538523,187.32,48.265 +538524,185.69,49.014 +538525,189.38,46.762 +538526,187.69,47.496 +538527,186.02,48.214 +538528,184.34,48.915 +538529,188.16,46.811 +538530,186.43,47.495 +538531,184.71,48.163 +538532,183,48.816 +538533,186.94,46.861 +538534,185.18,47.494 +538535,183.41,48.113 +538536,181.65,48.716 +538537,185.72,46.911 +538538,183.92,47.493 +538539,182.11,48.062 +538540,180.31,48.615 +538541,184.5,46.962 +538542,182.66,47.493 +538543,180.81,48.01 +538544,178.96,48.513 +538545,183.27,47.014 +538546,181.4,47.493 +538547,179.51,47.959 +538548,177.62,48.411 +538549,182.05,47.065 +538550,180.14,47.492 +538551,178.21,47.907 +538552,176.28,48.309 +538553,180.82,47.117 +538554,178.87,47.492 +538555,176.92,47.856 +538556,174.94,48.205 +538557,179.59,47.169 +538558,177.61,47.493 +538559,175.62,47.804 +538560,173.6,48.102 +538561,178.36,47.222 +538562,176.35,47.493 +538563,174.32,47.752 +538564,172.27,47.998 +538565,177.13,47.275 +538566,175.09,47.493 +538567,173.02,47.7 +538568,170.93,47.893 +538569,175.89,47.328 +538570,173.83,47.494 +538571,171.73,47.648 +538572,169.6,47.788 +538573,174.66,47.381 +538574,172.56,47.495 +538575,170.43,47.596 +538576,168.27,47.683 +538577,173.42,47.434 +538578,171.3,47.496 +538579,169.14,47.544 +538580,166.94,47.577 +538581,172.18,47.487 +538582,170.03,47.496 +538583,167.84,47.492 +538584,165.61,47.472 +538585,170.94,47.541 +538586,168.77,47.497 +538587,166.55,47.44 +538588,164.28,47.366 +538589,169.69,47.594 +538590,167.5,47.498 +538591,165.26,47.387 +538592,162.96,47.26 +538593,168.45,47.647 +538594,166.24,47.499 +538595,163.97,47.335 +538596,161.63,47.153 +538597,167.2,47.701 +538598,164.97,47.5 +538599,162.68,47.283 +538600,160.31,47.047 +538601,165.95,47.754 +538602,163.7,47.501 +538603,161.38,47.231 +538604,158.99,46.94 +538605,164.7,47.806 +538606,162.43,47.502 +538607,160.09,47.179 +538608,157.67,46.834 +538609,163.45,47.859 +538610,161.17,47.503 +538611,158.81,47.127 +538612,156.36,46.728 +538613,162.19,47.912 +538614,159.9,47.504 +538615,157.52,47.075 +538616,155.04,46.621 +538617,160.94,47.964 +538618,158.63,47.505 +538619,156.23,47.023 +538620,153.73,46.515 +538621,159.68,48.016 +538622,157.36,47.506 +538623,154.94,46.972 +538624,152.42,46.409 +538625,158.42,48.067 +538626,156.09,47.507 +538627,153.66,46.92 +538628,151.11,46.303 +538629,157.15,48.118 +538630,154.82,47.508 +538631,152.37,46.869 +538632,149.8,46.198 +538633,155.89,48.169 +538634,153.54,47.508 +538635,151.09,46.817 +538636,148.5,46.093 +538637,154.62,48.219 +538638,152.27,47.509 +538639,149.8,46.766 +538640,147.19,45.988 +538641,153.36,48.269 +538642,151,47.509 +538643,148.52,46.715 +538644,145.89,45.883 +538645,152.09,48.318 +538646,149.73,47.509 +538647,147.24,46.665 +538648,144.6,45.779 +538649,150.81,48.366 +538650,148.45,47.509 +538651,145.95,46.614 +538652,143.3,45.676 +538653,149.54,48.414 +538654,147.18,47.509 +538655,144.67,46.564 +538656,142,45.573 +538657,148.27,48.462 +538658,145.9,47.509 +538659,143.39,46.514 +538660,140.71,45.47 +538661,146.99,48.508 +538662,144.63,47.508 +538663,142.11,46.464 +538664,139.42,45.369 +538665,145.71,48.554 +538666,143.35,47.508 +538667,140.83,46.414 +538668,138.13,45.268 +538669,144.43,48.599 +538670,142.07,47.507 +538671,139.56,46.365 +538672,136.85,45.167 +538673,143.15,48.643 +538674,140.8,47.506 +538675,138.28,46.316 +538676,135.56,45.067 +538677,141.86,48.687 +538678,139.52,47.505 +538679,137,46.268 +538680,134.28,44.968 +538681,140.57,48.73 +538682,138.24,47.503 +538683,135.73,46.219 +538684,133,44.87 +538685,139.29,48.771 +538686,136.96,47.501 +538687,134.45,46.171 +538688,131.73,44.773 +538689,138,48.812 +538690,135.68,47.499 +538691,133.18,46.124 +538692,130.45,44.677 +538693,136.71,48.852 +538694,134.4,47.497 +538695,131.91,46.076 +538696,129.18,44.582 +538697,135.41,48.891 +538698,133.12,47.494 +538699,130.63,46.029 +538700,127.91,44.487 +538701,134.12,48.929 +538702,131.84,47.491 +538703,129.36,45.983 +538704,126.64,44.394 +538705,132.82,48.966 +538706,130.56,47.488 +538707,128.09,45.937 +538708,125.38,44.302 +538709,131.52,49.001 +538710,129.27,47.484 +538711,126.82,45.891 +538712,124.11,44.211 +538713,130.22,49.036 +538714,127.99,47.48 +538715,125.55,45.846 +538716,122.85,44.121 +538717,128.92,49.07 +538718,126.71,47.476 +538719,124.28,45.801 +538720,121.6,44.033 +538721,127.62,49.102 +538722,125.42,47.471 +538723,123.02,45.756 +538724,120.34,43.945 +538725,126.31,49.133 +538726,124.14,47.466 +538727,121.75,45.713 +538728,119.09,43.859 +538729,125,49.163 +538730,122.85,47.46 +538731,120.48,45.669 +538732,117.83,43.775 +538733,123.7,49.192 +538734,121.57,47.455 +538735,119.22,45.626 +538736,116.59,43.691 +538737,122.39,49.22 +538738,120.28,47.448 +538739,117.95,45.584 +538740,115.34,43.61 +538741,121.08,49.246 +538742,118.99,47.442 +538743,116.69,45.542 +538744,114.09,43.529 +538745,119.76,49.271 +538746,117.71,47.435 +538747,115.42,45.5 +538748,112.85,43.45 +538749,118.45,49.295 +538750,116.42,47.427 +538751,114.16,45.459 +538752,111.61,43.373 +538753,117.13,49.317 +538754,115.13,47.419 +538755,112.9,45.419 +538756,110.37,43.297 +538757,115.82,49.338 +538758,113.84,47.411 +538759,111.64,45.379 +538760,109.14,43.223 +538761,114.5,49.357 +538762,112.55,47.402 +538763,110.38,45.34 +538764,107.91,43.15 +538765,113.18,49.375 +538766,111.26,47.393 +538767,109.12,45.301 +538768,106.67,43.079 +538769,111.86,49.392 +538770,109.97,47.383 +538771,107.86,45.263 +538772,105.45,43.01 +538773,110.53,49.407 +538774,108.68,47.373 +538775,106.6,45.225 +538776,104.22,42.943 +538777,109.21,49.421 +538778,107.39,47.362 +538779,105.34,45.188 +538780,103,42.877 +538781,107.89,49.433 +538782,106.1,47.351 +538783,104.09,45.152 +538784,101.77,42.813 +538785,106.56,49.444 +538786,104.81,47.339 +538787,102.83,45.116 +538788,100.55,42.751 +538789,105.23,49.453 +538790,103.52,47.327 +538791,101.58,45.081 +538792,99.334,42.691 +538793,103.9,49.461 +538794,102.22,47.315 +538795,100.32,45.046 +538796,98.118,42.632 +538797,102.57,49.467 +538798,100.93,47.302 +538799,99.066,45.012 +538800,96.904,42.576 +538801,101.24,49.471 +538802,99.639,47.288 +538803,97.813,44.979 +538804,95.692,42.521 +538805,99.911,49.474 +538806,98.345,47.274 +538807,96.56,44.947 +538808,94.482,42.468 +538809,98.578,49.475 +538810,97.051,47.259 +538811,95.307,44.915 +538812,93.273,42.418 +538813,97.244,49.475 +538814,95.757,47.244 +538815,94.055,44.883 +538816,92.067,42.369 +538817,95.909,49.473 +538818,94.463,47.228 +538819,92.804,44.853 +538820,90.862,42.322 +538821,94.573,49.47 +538822,93.168,47.212 +538823,91.553,44.823 +538824,89.659,42.277 +538825,93.236,49.464 +538826,91.873,47.195 +538827,90.303,44.793 +538828,88.458,42.235 +538829,91.898,49.457 +538830,90.577,47.177 +538831,89.053,44.765 +538832,87.258,42.194 +538833,90.559,49.449 +538834,89.281,47.159 +538835,87.804,44.737 +538836,86.06,42.155 +538837,89.22,49.439 +538838,87.985,47.141 +538839,86.555,44.71 +538840,84.864,42.119 +538841,87.879,49.427 +538842,86.689,47.122 +538843,85.307,44.683 +538844,83.669,42.085 +538845,86.538,49.413 +538846,85.393,47.102 +538847,84.06,44.657 +538848,82.475,42.052 +538849,85.196,49.398 +538850,84.096,47.082 +538851,82.812,44.632 +538852,81.283,42.022 +538853,83.853,49.381 +538854,82.799,47.061 +538855,81.566,44.607 +538856,80.092,41.994 +538857,82.51,49.362 +538858,81.502,47.04 +538859,80.319,44.584 +538860,78.903,41.968 +538861,81.166,49.342 +538862,80.204,47.018 +538863,79.073,44.561 +538864,77.715,41.944 +538865,79.821,49.32 +538866,78.907,46.995 +538867,77.828,44.538 +538868,76.528,41.922 +538869,78.476,49.296 +538870,77.609,46.972 +538871,76.583,44.516 +538872,75.342,41.903 +538873,77.13,49.27 +538874,76.311,46.949 +538875,75.338,44.495 +538876,74.157,41.885 +538877,75.783,49.243 +538878,75.013,46.925 +538879,74.093,44.475 +538880,72.974,41.87 +538881,74.436,49.214 +538882,73.715,46.9 +538883,72.849,44.456 +538884,71.791,41.857 +538885,73.089,49.183 +538886,72.417,46.875 +538887,71.605,44.437 +538888,70.609,41.845 +538889,71.741,49.151 +538890,71.119,46.849 +538891,70.362,44.419 +538892,69.427,41.836 +538893,70.393,49.116 +538894,69.82,46.822 +538895,69.119,44.401 +538896,68.247,41.83 +538897,69.045,49.08 +538898,68.522,46.795 +538899,67.876,44.384 +538900,67.067,41.825 +538901,67.696,49.043 +538902,67.223,46.768 +538903,66.633,44.368 +538904,65.888,41.822 +538905,66.347,49.004 +538906,65.925,46.74 +538907,65.391,44.353 +538908,64.709,41.821 +538909,64.998,48.963 +538910,64.626,46.711 +538911,64.148,44.338 +538912,63.531,41.823 +538913,63.648,48.92 +538914,63.327,46.682 +538915,62.906,44.324 +538916,62.354,41.826 +538917,62.298,48.875 +538918,62.029,46.652 +538919,61.665,44.311 +538920,61.176,41.832 +538921,60.949,48.829 +538922,60.73,46.622 +538923,60.423,44.298 +538924,59.999,41.839 +538925,59.599,48.781 +538926,59.431,46.591 +538927,59.181,44.286 +538928,58.822,41.849 +538929,58.249,48.732 +538930,58.133,46.559 +538931,57.94,44.275 +538932,57.645,41.86 +538933,56.898,48.681 +538934,56.834,46.527 +538935,56.698,44.264 +538936,56.469,41.874 +538937,55.548,48.628 +538938,55.536,46.495 +538939,55.457,44.254 +538940,55.292,41.889 +538941,54.198,48.574 +538942,54.238,46.462 +538943,54.216,44.245 +538944,54.115,41.907 +538945,52.848,48.518 +538946,52.939,46.428 +538947,52.975,44.236 +538948,52.939,41.926 +538949,51.498,48.46 +538950,51.641,46.394 +538951,51.734,44.228 +538952,51.762,41.947 +538953,50.149,48.401 +538954,50.343,46.36 +538955,50.493,44.221 +538956,50.584,41.97 +538957,48.799,48.34 +538958,49.045,46.325 +538959,49.252,44.214 +538960,49.407,41.995 +538961,47.45,48.277 +538962,47.748,46.289 +538963,48.011,44.208 +538964,48.229,42.021 +538965,46.101,48.213 +538966,46.45,46.253 +538967,46.77,44.203 +538968,47.05,42.05 +538969,44.752,48.148 +538970,45.153,46.217 +538971,45.528,44.198 +538972,45.872,42.08 +538973,43.403,48.081 +538974,43.856,46.18 +538975,44.287,44.194 +538976,44.692,42.112 +538977,42.055,48.012 +538978,42.559,46.142 +538979,43.046,44.19 +538980,43.512,42.145 +538981,40.708,47.942 +538982,41.262,46.104 +538983,41.805,44.187 +538984,42.331,42.18 +538985,39.36,47.871 +538986,39.965,46.066 +538987,40.563,44.184 +538988,41.15,42.217 +538989,38.013,47.798 +538990,38.669,46.027 +538991,39.321,44.182 +538992,39.968,42.256 +538993,36.667,47.724 +538994,37.373,45.988 +538995,38.08,44.181 +538996,38.785,42.295 +538997,35.321,47.648 +538998,36.078,45.948 +538999,36.838,44.18 +539000,37.601,42.337 +539001,33.976,47.571 +539002,34.782,45.908 +539003,35.595,44.18 +539004,36.416,42.38 +539005,32.631,47.492 +539006,33.487,45.867 +539007,34.353,44.18 +539008,35.23,42.424 +539009,31.287,47.412 +539010,32.192,45.826 +539011,33.111,44.181 +539012,34.043,42.47 +539013,29.944,47.331 +539014,30.898,45.785 +539015,31.868,44.182 +539016,32.855,42.517 +539017,28.601,47.248 +539018,29.604,45.743 +539019,30.625,44.184 +539020,31.666,42.565 +539021,27.259,47.165 +539022,28.31,45.701 +539023,29.381,44.186 +539024,30.475,42.615 +539025,25.918,47.08 +539026,27.017,45.659 +539027,28.138,44.189 +539028,29.284,42.666 +539029,24.578,46.994 +539030,25.724,45.616 +539031,26.894,44.192 +539032,28.091,42.718 +539033,23.238,46.906 +539034,24.431,45.573 +539035,25.65,44.195 +539036,26.897,42.771 +539037,21.9,46.818 +539038,23.139,45.529 +539039,24.405,44.199 +539040,25.701,42.825 +539041,20.562,46.728 +539042,21.848,45.485 +539043,23.161,44.204 +539044,24.504,42.881 +539045,19.225,46.637 +539046,20.556,45.441 +539047,21.915,44.208 +539048,23.306,42.937 +539049,17.89,46.545 +539050,19.266,45.397 +539051,20.67,44.214 +539052,22.106,42.995 +539053,16.555,46.453 +539054,17.975,45.352 +539055,19.424,44.219 +539056,20.904,43.053 +539057,15.221,46.359 +539058,16.685,45.307 +539059,18.178,44.225 +539060,19.702,43.112 +539061,13.889,46.264 +539062,15.396,45.262 +539063,16.931,44.232 +539064,18.497,43.173 +539065,12.558,46.168 +539066,14.107,45.217 +539067,15.684,44.238 +539068,17.291,43.234 +539069,11.227,46.072 +539070,12.819,45.171 +539071,14.437,44.245 +539072,16.083,43.295 +539073,9.8983,45.974 +539074,11.531,45.125 +539075,13.189,44.253 +539076,14.874,43.358 +539077,8.5705,45.876 +539078,10.244,45.079 +539079,11.941,44.26 +539080,13.663,43.421 +539081,7.244,45.777 +539082,8.9571,45.032 +539083,10.692,44.268 +539084,12.45,43.485 +539085,5.9188,45.677 +539086,7.6709,44.986 +539087,9.4426,44.277 +539088,11.235,43.549 +539089,4.5949,45.576 +539090,6.3853,44.939 +539091,8.1929,44.285 +539092,10.019,43.614 +539093,3.2724,45.475 +539094,5.1003,44.892 +539095,6.9427,44.294 +539096,8.8007,43.68 +539097,1.9513,45.373 +539098,3.8159,44.845 +539099,5.6921,44.303 +539100,7.5809,43.746 +539101,0.6316,45.27 +539102,2.5321,44.798 +539103,4.4409,44.312 +539104,6.3591,43.812 +539105,359.31,45.167 +539106,1.2488,44.751 +539107,3.1893,44.321 +539108,5.1356,43.879 +539109,358,45.063 +539110,359.97,44.704 +539111,1.9372,44.331 +539112,3.9102,43.946 +539113,356.68,44.959 +539114,358.68,44.656 +539115,0.68449,44.341 +539116,2.683,44.013 +539117,355.37,44.855 +539118,357.4,44.609 +539119,359.43,44.35 +539120,1.4539,44.081 +539121,354.06,44.75 +539122,356.12,44.561 +539123,358.18,44.361 +539124,0.22292,44.148 +539125,352.75,44.644 +539126,354.84,44.514 +539127,356.92,44.371 +539128,358.99,44.216 +539129,351.44,44.539 +539130,353.56,44.466 +539131,355.67,44.381 +539132,357.76,44.284 +539133,350.13,44.433 +539134,352.28,44.419 +539135,354.41,44.391 +539136,356.52,44.352 +539137,348.82,44.327 +539138,351.01,44.371 +539139,353.16,44.402 +539140,355.28,44.42 +539141,347.52,44.22 +539142,349.73,44.323 +539143,351.9,44.412 +539144,354.04,44.488 +539145,346.22,44.114 +539146,348.45,44.276 +539147,350.64,44.423 +539148,352.8,44.556 +539149,344.92,44.007 +539150,347.18,44.228 +539151,349.39,44.434 +539152,351.55,44.624 +539153,343.62,43.901 +539154,345.9,44.181 +539155,348.13,44.444 +539156,350.31,44.692 +539157,342.32,43.794 +539158,344.63,44.134 +539159,346.87,44.455 +539160,349.06,44.759 +539161,341.03,43.687 +539162,343.35,44.086 +539163,345.61,44.466 +539164,347.81,44.827 +539165,339.74,43.581 +539166,342.08,44.039 +539167,344.35,44.476 +539168,346.56,44.894 +539169,338.45,43.474 +539170,340.81,43.992 +539171,343.09,44.487 +539172,345.3,44.96 +539173,337.16,43.368 +539174,339.54,43.945 +539175,341.83,44.498 +539176,344.05,45.027 +539177,335.87,43.262 +539178,338.26,43.899 +539179,340.57,44.508 +539180,342.79,45.092 +539181,334.59,43.156 +539182,336.99,43.852 +539183,339.31,44.519 +539184,341.53,45.158 +539185,333.3,43.051 +539186,335.72,43.806 +539187,338.04,44.529 +539188,340.27,45.223 +539189,332.02,42.946 +539190,334.46,43.76 +539191,336.78,44.539 +539192,339,45.287 +539193,330.74,42.841 +539194,333.19,43.714 +539195,335.51,44.55 +539196,337.74,45.351 +539197,329.47,42.737 +539198,331.92,43.668 +539199,334.25,44.56 +539200,336.47,45.414 +539201,328.19,42.634 +539202,330.65,43.623 +539203,332.99,44.569 +539204,335.2,45.477 +539205,326.92,42.53 +539206,329.39,43.578 +539207,331.72,44.579 +539208,333.93,45.539 +539209,325.65,42.428 +539210,328.12,43.533 +539211,330.45,44.589 +539212,332.66,45.6 +539213,324.38,42.326 +539214,326.86,43.488 +539215,329.19,44.598 +539216,331.39,45.661 +539217,323.12,42.225 +539218,325.6,43.444 +539219,327.92,44.607 +539220,330.11,45.72 +539221,321.85,42.125 +539222,324.33,43.4 +539223,326.65,44.616 +539224,328.83,45.779 +539225,320.59,42.025 +539226,323.07,43.357 +539227,325.38,44.625 +539228,327.55,45.837 +539229,319.33,41.927 +539230,321.81,43.313 +539231,324.11,44.634 +539232,326.27,45.894 +539233,318.07,41.829 +539234,320.55,43.271 +539235,322.84,44.642 +539236,324.99,45.951 +539237,316.82,41.732 +539238,319.29,43.228 +539239,321.57,44.65 +539240,323.7,46.006 +539241,315.56,41.636 +539242,318.03,43.186 +539243,320.3,44.658 +539244,322.42,46.06 +539245,314.31,41.542 +539246,316.77,43.144 +539247,319.03,44.665 +539248,321.13,46.113 +539249,313.07,41.448 +539250,315.52,43.103 +539251,317.76,44.672 +539252,319.84,46.165 +539253,311.82,41.355 +539254,314.26,43.063 +539255,316.49,44.679 +539256,318.55,46.216 +539257,310.58,41.264 +539258,313,43.022 +539259,315.21,44.685 +539260,317.25,46.266 +539261,309.33,41.174 +539262,311.75,42.982 +539263,313.94,44.692 +539264,315.96,46.315 +539265,308.09,41.085 +539266,310.49,42.943 +539267,312.67,44.697 +539268,314.66,46.363 +539269,306.86,40.998 +539270,309.24,42.904 +539271,311.39,44.703 +539272,313.37,46.409 +539273,305.62,40.912 +539274,307.99,42.866 +539275,310.12,44.708 +539276,312.07,46.454 +539277,304.39,40.827 +539278,306.73,42.828 +539279,308.84,44.713 +539280,310.77,46.498 +539281,303.16,40.744 +539282,305.48,42.791 +539283,307.57,44.717 +539284,309.46,46.541 +539285,301.93,40.662 +539286,304.23,42.754 +539287,306.29,44.721 +539288,308.16,46.582 +539289,300.7,40.582 +539290,302.98,42.718 +539291,305.01,44.725 +539292,306.86,46.622 +539293,299.48,40.503 +539294,301.73,42.682 +539295,303.74,44.728 +539296,305.55,46.661 +539297,298.26,40.426 +539298,300.48,42.647 +539299,302.46,44.73 +539300,304.24,46.698 +539301,297.04,40.351 +539302,299.23,42.613 +539303,301.18,44.733 +539304,302.93,46.733 +539305,295.82,40.278 +539306,297.99,42.579 +539307,299.9,44.735 +539308,301.62,46.768 +539309,294.6,40.206 +539310,296.74,42.546 +539311,298.62,44.736 +539312,300.31,46.801 +539313,293.39,40.136 +539314,295.49,42.513 +539315,297.34,44.737 +539316,299,46.832 +539317,292.18,40.068 +539318,294.25,42.481 +539319,296.06,44.737 +539320,297.68,46.862 +539321,290.97,40.001 +539322,293,42.45 +539323,294.78,44.737 +539324,296.37,46.89 +539325,289.76,39.937 +539326,291.76,42.419 +539327,293.5,44.737 +539328,295.05,46.917 +539329,288.55,39.875 +539330,290.51,42.39 +539331,292.22,44.736 +539332,293.73,46.942 +539333,287.35,39.814 +539334,289.27,42.36 +539335,290.94,44.734 +539336,292.42,46.966 +539337,286.15,39.756 +539338,288.03,42.332 +539339,289.66,44.732 +539340,291.1,46.988 +539341,284.95,39.699 +539342,286.79,42.304 +539343,288.37,44.73 +539344,289.78,47.008 +539345,283.75,39.645 +539346,285.54,42.277 +539347,287.09,44.727 +539348,288.45,47.027 +539349,282.55,39.592 +539350,284.3,42.25 +539351,285.81,44.723 +539352,287.13,47.044 +539353,281.35,39.542 +539354,283.06,42.224 +539355,284.52,44.719 +539356,285.81,47.06 +539357,280.16,39.494 +539358,281.82,42.199 +539359,283.24,44.714 +539360,284.48,47.074 +539361,278.97,39.448 +539362,280.58,42.175 +539363,281.96,44.709 +539364,283.16,47.086 +539365,277.78,39.405 +539366,279.34,42.151 +539367,280.67,44.703 +539368,281.83,47.096 +539369,276.59,39.363 +539370,278.1,42.128 +539371,279.39,44.697 +539372,280.51,47.105 +539373,275.4,39.324 +539374,276.87,42.106 +539375,278.1,44.69 +539376,279.18,47.112 +539377,274.22,39.287 +539378,275.63,42.085 +539379,276.82,44.683 +539380,277.85,47.117 +539381,273.03,39.252 +539382,274.39,42.064 +539383,275.53,44.675 +539384,276.52,47.121 +539385,271.85,39.22 +539386,273.15,42.045 +539387,274.25,44.666 +539388,275.19,47.123 +539389,270.67,39.189 +539390,271.92,42.026 +539391,272.96,44.657 +539392,273.86,47.123 +539393,269.49,39.162 +539394,270.68,42.007 +539395,271.68,44.648 +539396,272.53,47.121 +539397,268.31,39.136 +539398,269.45,41.99 +539399,270.39,44.637 +539400,271.2,47.117 +539401,267.13,39.113 +539402,268.21,41.973 +539403,269.11,44.627 +539404,269.87,47.112 +539405,265.95,39.092 +539406,266.98,41.957 +539407,267.82,44.615 +539408,268.53,47.105 +539409,264.77,39.073 +539410,265.74,41.942 +539411,266.53,44.603 +539412,267.2,47.096 +539413,263.6,39.057 +539414,264.51,41.927 +539415,265.25,44.591 +539416,265.87,47.086 +539417,262.42,39.043 +539418,263.27,41.914 +539419,263.96,44.578 +539420,264.53,47.073 +539421,261.25,39.032 +539422,262.04,41.901 +539423,262.67,44.564 +539424,263.2,47.059 +539425,260.08,39.023 +539426,260.8,41.889 +539427,261.39,44.55 +539428,261.86,47.043 +539429,258.9,39.016 +539430,259.57,41.878 +539431,260.1,44.535 +539432,260.53,47.025 +539433,257.73,39.012 +539434,258.34,41.867 +539435,258.81,44.519 +539436,259.19,47.005 +539437,256.56,39.01 +539438,257.1,41.857 +539439,257.53,44.503 +539440,257.86,46.984 +539441,255.39,39.01 +539442,255.87,41.849 +539443,256.24,44.487 +539444,256.52,46.961 +539445,254.22,39.012 +539446,254.64,41.84 +539447,254.95,44.469 +539448,255.19,46.935 +539449,253.04,39.017 +539450,253.41,41.833 +539451,253.67,44.452 +539452,253.85,46.909 +539453,251.87,39.025 +539454,252.17,41.826 +539455,252.38,44.433 +539456,252.52,46.88 +539457,250.7,39.034 +539458,250.94,41.821 +539459,251.09,44.414 +539460,251.18,46.85 +539461,249.53,39.046 +539462,249.71,41.816 +539463,249.8,44.395 +539464,249.85,46.817 +539465,248.36,39.06 +539466,248.48,41.811 +539467,248.52,44.375 +539468,248.51,46.784 +539469,247.19,39.076 +539470,247.24,41.808 +539471,247.23,44.354 +539472,247.17,46.748 +539473,246.02,39.095 +539474,246.01,41.805 +539475,245.94,44.333 +539476,245.84,46.71 +539477,244.85,39.116 +539478,244.78,41.803 +539479,244.66,44.311 +539480,244.5,46.671 +539481,243.68,39.139 +539482,243.55,41.802 +539483,243.37,44.289 +539484,243.17,46.63 +539485,242.51,39.164 +539486,242.31,41.801 +539487,242.08,44.266 +539488,241.83,46.588 +539489,241.34,39.191 +539490,241.08,41.801 +539491,240.8,44.243 +539492,240.5,46.543 +539493,240.16,39.221 +539494,239.85,41.802 +539495,239.51,44.219 +539496,239.16,46.497 +539497,238.99,39.252 +539498,238.62,41.804 +539499,238.23,44.194 +539500,237.83,46.449 +539501,237.82,39.286 +539502,237.38,41.806 +539503,236.94,44.169 +539504,236.5,46.4 +539505,236.64,39.321 +539506,236.15,41.809 +539507,235.66,44.144 +539508,235.16,46.349 +539509,235.47,39.359 +539510,234.92,41.813 +539511,234.37,44.118 +539512,233.83,46.296 +539513,234.29,39.399 +539514,233.68,41.818 +539515,233.09,44.091 +539516,232.5,46.242 +539517,233.12,39.44 +539518,232.45,41.823 +539519,231.8,44.064 +539520,231.17,46.186 +539521,231.94,39.484 +539522,231.22,41.829 +539523,230.52,44.037 +539524,229.83,46.128 +539525,230.76,39.529 +539526,229.98,41.835 +539527,229.23,44.009 +539528,228.5,46.069 +539529,229.58,39.576 +539530,228.75,41.842 +539531,227.95,43.98 +539532,227.17,46.008 +539533,228.4,39.625 +539534,227.52,41.85 +539535,226.66,43.951 +539536,225.84,45.946 +539537,227.22,39.676 +539538,226.28,41.859 +539539,225.38,43.922 +539540,224.51,45.882 +539541,226.04,39.729 +539542,225.05,41.868 +539543,224.1,43.892 +539544,223.19,45.817 +539545,224.86,39.783 +539546,223.81,41.877 +539547,222.81,43.862 +539548,221.86,45.75 +539549,223.67,39.838 +539550,222.58,41.888 +539551,221.53,43.831 +539552,220.53,45.682 +539553,222.49,39.896 +539554,221.34,41.899 +539555,220.25,43.8 +539556,219.21,45.612 +539557,221.3,39.955 +539558,220.1,41.91 +539559,218.97,43.768 +539560,217.88,45.541 +539561,220.11,40.015 +539562,218.87,41.922 +539563,217.69,43.736 +539564,216.56,45.468 +539565,218.92,40.077 +539566,217.63,41.935 +539567,216.41,43.704 +539568,215.23,45.395 +539569,217.73,40.141 +539570,216.4,41.948 +539571,215.13,43.671 +539572,213.91,45.319 +539573,216.53,40.205 +539574,215.16,41.962 +539575,213.85,43.638 +539576,212.59,45.243 +539577,215.34,40.272 +539578,213.92,41.976 +539579,212.57,43.605 +539580,211.27,45.165 +539581,214.14,40.339 +539582,212.68,41.991 +539583,211.29,43.571 +539584,209.95,45.086 +539585,212.95,40.408 +539586,211.44,42.006 +539587,210.01,43.536 +539588,208.63,45.006 +539589,211.75,40.478 +539590,210.2,42.021 +539591,208.73,43.502 +539592,207.31,44.924 +539593,210.54,40.549 +539594,208.96,42.038 +539595,207.45,43.467 +539596,206,44.842 +539597,209.34,40.621 +539598,207.72,42.054 +539599,206.17,43.432 +539600,204.68,44.758 +539601,208.14,40.694 +539602,206.48,42.071 +539603,204.9,43.397 +539604,203.37,44.673 +539605,206.93,40.768 +539606,205.24,42.089 +539607,203.62,43.361 +539608,202.06,44.587 +539609,205.72,40.843 +539610,204,42.107 +539611,202.35,43.325 +539612,200.75,44.5 +539613,204.51,40.92 +539614,202.76,42.125 +539615,201.07,43.289 +539616,199.44,44.412 +539617,203.3,40.997 +539618,201.52,42.144 +539619,199.8,43.252 +539620,198.13,44.324 +539621,202.09,41.074 +539622,200.27,42.163 +539623,198.52,43.215 +539624,196.82,44.234 +539625,200.87,41.153 +539626,199.03,42.182 +539627,197.25,43.178 +539628,195.52,44.143 +539629,199.65,41.232 +539630,197.79,42.202 +539631,195.98,43.141 +539632,194.21,44.051 +539633,198.43,41.312 +539634,196.54,42.222 +539635,194.7,43.104 +539636,192.91,43.959 +539637,197.21,41.393 +539638,195.3,42.242 +539639,193.43,43.066 +539640,191.61,43.866 +539641,195.99,41.474 +539642,194.05,42.263 +539643,192.16,43.029 +539644,190.31,43.772 +539645,194.76,41.556 +539646,192.81,42.284 +539647,190.89,42.991 +539648,189.01,43.677 +539649,193.54,41.638 +539650,191.56,42.305 +539651,189.62,42.953 +539652,187.71,43.582 +539653,192.31,41.721 +539654,190.31,42.327 +539655,188.35,42.915 +539656,186.42,43.486 +539657,191.08,41.804 +539658,189.06,42.348 +539659,187.08,42.877 +539660,185.12,43.389 +539661,189.84,41.887 +539662,187.82,42.37 +539663,185.81,42.839 +539664,183.83,43.292 +539665,188.61,41.971 +539666,186.57,42.392 +539667,184.54,42.8 +539668,182.54,43.194 +539669,187.37,42.055 +539670,185.32,42.415 +539671,183.28,42.762 +539672,181.25,43.096 +539673,186.13,42.139 +539674,184.07,42.437 +539675,182.01,42.724 +539676,179.97,42.998 +539677,184.89,42.223 +539678,182.82,42.46 +539679,180.75,42.685 +539680,178.68,42.899 +539681,183.65,42.307 +539682,181.56,42.483 +539683,179.48,42.647 +539684,177.4,42.8 +539685,182.41,42.392 +539686,180.31,42.506 +539687,178.22,42.609 +539688,176.12,42.7 +539689,181.16,42.476 +539690,179.06,42.528 +539691,176.95,42.57 +539692,174.84,42.6 +539693,179.91,42.56 +539694,177.81,42.552 +539695,175.69,42.532 +539696,173.56,42.501 +539697,178.66,42.645 +539698,176.55,42.575 +539699,174.43,42.494 +539700,172.29,42.4 +539701,177.41,42.729 +539702,175.3,42.598 +539703,173.17,42.455 +539704,171.01,42.3 +539705,176.15,42.813 +539706,174.04,42.621 +539707,171.9,42.417 +539708,169.74,42.2 +539709,174.9,42.896 +539710,172.79,42.645 +539711,170.64,42.379 +539712,168.47,42.1 +539713,173.64,42.98 +539714,171.53,42.668 +539715,169.38,42.341 +539716,167.2,42 +539717,172.38,43.063 +539718,170.27,42.691 +539719,168.13,42.303 +539720,165.93,41.899 +539721,171.12,43.146 +539722,169.02,42.714 +539723,166.87,42.266 +539724,164.67,41.799 +539725,169.85,43.228 +539726,167.76,42.738 +539727,165.61,42.228 +539728,163.41,41.7 +539729,168.59,43.31 +539730,166.5,42.761 +539731,164.35,42.191 +539732,162.15,41.6 +539733,167.32,43.391 +539734,165.24,42.784 +539735,163.1,42.154 +539736,160.89,41.501 +539737,166.05,43.472 +539738,163.98,42.807 +539739,161.84,42.117 +539740,159.63,41.402 +539741,164.78,43.553 +539742,162.72,42.83 +539743,160.59,42.081 +539744,158.38,41.303 +539745,163.51,43.632 +539746,161.46,42.853 +539747,159.33,42.044 +539748,157.13,41.205 +539749,162.23,43.711 +539750,160.19,42.876 +539751,158.08,42.008 +539752,155.88,41.107 +539753,160.96,43.79 +539754,158.93,42.898 +539755,156.83,41.972 +539756,154.63,41.01 +539757,159.68,43.868 +539758,157.67,42.921 +539759,155.57,41.937 +539760,153.38,40.913 +539761,158.4,43.944 +539762,156.41,42.943 +539763,154.32,41.902 +539764,152.14,40.817 +539765,157.12,44.021 +539766,155.14,42.965 +539767,153.07,41.867 +539768,150.9,40.722 +539769,155.83,44.096 +539770,153.88,42.987 +539771,151.82,41.832 +539772,149.66,40.628 +539773,154.55,44.17 +539774,152.61,43.009 +539775,150.57,41.798 +539776,148.42,40.534 +539777,153.26,44.244 +539778,151.34,43.03 +539779,149.32,41.764 +539780,147.18,40.441 +539781,151.97,44.316 +539782,150.08,43.051 +539783,148.08,41.731 +539784,145.95,40.349 +539785,150.68,44.388 +539786,148.81,43.072 +539787,146.83,41.698 +539788,144.72,40.258 +539789,149.39,44.458 +539790,147.54,43.093 +539791,145.58,41.665 +539792,143.49,40.168 +539793,148.1,44.528 +539794,146.28,43.113 +539795,144.34,41.633 +539796,142.26,40.079 +539797,146.81,44.596 +539798,145.01,43.134 +539799,143.09,41.601 +539800,141.04,39.99 +539801,145.51,44.664 +539802,143.74,43.153 +539803,141.85,41.57 +539804,139.81,39.904 +539805,144.21,44.73 +539806,142.47,43.173 +539807,140.6,41.539 +539808,138.59,39.818 +539809,142.92,44.795 +539810,141.2,43.192 +539811,139.36,41.509 +539812,137.37,39.733 +539813,141.62,44.858 +539814,139.93,43.211 +539815,138.12,41.479 +539816,136.15,39.65 +539817,140.31,44.921 +539818,138.66,43.23 +539819,136.87,41.45 +539820,134.94,39.568 +539821,139.01,44.982 +539822,137.38,43.248 +539823,135.63,41.421 +539824,133.73,39.488 +539825,137.71,45.042 +539826,136.11,43.266 +539827,134.39,41.393 +539828,132.51,39.409 +539829,136.4,45.101 +539830,134.84,43.283 +539831,133.15,41.365 +539832,131.3,39.331 +539833,135.1,45.158 +539834,133.57,43.3 +539835,131.91,41.338 +539836,130.1,39.255 +539837,133.79,45.214 +539838,132.29,43.317 +539839,130.67,41.312 +539840,128.89,39.181 +539841,132.48,45.269 +539842,131.02,43.333 +539843,129.43,41.286 +539844,127.69,39.108 +539845,131.17,45.322 +539846,129.74,43.349 +539847,128.19,41.261 +539848,126.48,39.037 +539849,129.86,45.373 +539850,128.47,43.364 +539851,126.96,41.236 +539852,125.28,38.967 +539853,128.55,45.423 +539854,127.19,43.379 +539855,125.72,41.212 +539856,124.09,38.9 +539857,127.23,45.472 +539858,125.92,43.394 +539859,124.48,41.189 +539860,122.89,38.834 +539861,125.92,45.519 +539862,124.64,43.408 +539863,123.25,41.166 +539864,121.69,38.77 +539865,124.6,45.565 +539866,123.37,43.421 +539867,122.01,41.144 +539868,120.5,38.707 +539869,123.29,45.609 +539870,122.09,43.434 +539871,120.77,41.123 +539872,119.31,38.647 +539873,121.97,45.651 +539874,120.81,43.447 +539875,119.54,41.102 +539876,118.12,38.588 +539877,120.65,45.692 +539878,119.53,43.459 +539879,118.31,41.082 +539880,116.93,38.532 +539881,119.33,45.732 +539882,118.26,43.471 +539883,117.07,41.063 +539884,115.74,38.477 +539885,118.01,45.769 +539886,116.98,43.482 +539887,115.84,41.044 +539888,114.56,38.425 +539889,116.69,45.805 +539890,115.7,43.492 +539891,114.6,41.026 +539892,113.37,38.375 +539893,115.37,45.84 +539894,114.42,43.502 +539895,113.37,41.009 +539896,112.19,38.327 +539897,114.05,45.872 +539898,113.14,43.512 +539899,112.14,40.993 +539900,111.01,38.281 +539901,112.73,45.903 +539902,111.86,43.521 +539903,110.91,40.977 +539904,109.82,38.237 +539905,111.4,45.932 +539906,110.58,43.529 +539907,109.68,40.963 +539908,108.65,38.195 +539909,110.08,45.96 +539910,109.3,43.537 +539911,108.44,40.949 +539912,107.47,38.156 +539913,108.75,45.986 +539914,108.02,43.545 +539915,107.21,40.935 +539916,106.29,38.118 +539917,107.43,46.01 +539918,106.74,43.551 +539919,105.98,40.923 +539920,105.11,38.084 +539921,106.1,46.032 +539922,105.46,43.558 +539923,104.75,40.911 +539924,103.94,38.051 +539925,104.78,46.052 +539926,104.18,43.563 +539927,103.52,40.9 +539928,102.76,38.021 +539929,103.45,46.071 +539930,102.9,43.569 +539931,102.29,40.89 +539932,101.59,37.993 +539933,102.12,46.088 +539934,101.62,43.573 +539935,101.06,40.88 +539936,100.42,37.967 +539937,100.8,46.103 +539938,100.34,43.577 +539939,99.83,40.872 +539940,99.245,37.944 +539941,99.468,46.116 +539942,99.059,43.581 +539943,98.601,40.864 +539944,98.073,37.924 +539945,98.14,46.128 +539946,97.778,43.583 +539947,97.371,40.857 +539948,96.902,37.905 +539949,96.812,46.138 +539950,96.497,43.586 +539951,96.142,40.851 +539952,95.732,37.889 +539953,95.483,46.146 +539954,95.216,43.587 +539955,94.913,40.846 +539956,94.562,37.876 +539957,94.155,46.152 +539958,93.934,43.588 +539959,93.684,40.841 +539960,93.392,37.865 +539961,92.826,46.156 +539962,92.653,43.589 +539963,92.455,40.837 +539964,92.223,37.856 +539965,91.497,46.158 +539966,91.371,43.589 +539967,91.226,40.835 +539968,91.054,37.85 +539969,90.168,46.159 +539970,90.089,43.588 +539971,89.997,40.833 +539972,89.885,37.846 +539973,88.839,46.158 +539974,88.808,43.587 +539975,88.768,40.831 +539976,88.716,37.845 +539977,87.509,46.155 +539978,87.526,43.585 +539979,87.539,40.831 +539980,87.547,37.847 +539981,86.18,46.15 +539982,86.245,43.583 +539983,86.311,40.831 +539984,86.378,37.85 +539985,84.851,46.143 +539986,84.963,43.58 +539987,85.082,40.833 +539988,85.21,37.857 +539989,83.522,46.134 +539990,83.682,43.576 +539991,83.853,40.835 +539992,84.041,37.865 +539993,82.193,46.124 +539994,82.4,43.572 +539995,82.624,40.837 +539996,82.871,37.876 +539997,80.865,46.112 +539998,81.119,43.567 +539999,81.395,40.841 +540000,81.702,37.89 +540001,79.536,46.098 +540002,79.837,43.562 +540003,80.166,40.846 +540004,80.532,37.906 +540005,78.208,46.082 +540006,78.556,43.556 +540007,78.937,40.851 +540008,79.361,37.924 +540009,76.88,46.064 +540010,77.275,43.549 +540011,77.707,40.857 +540012,78.191,37.945 +540013,75.552,46.045 +540014,75.994,43.542 +540015,76.478,40.864 +540016,77.019,37.968 +540017,74.225,46.024 +540018,74.713,43.535 +540019,75.248,40.872 +540020,75.847,37.994 +540021,72.898,46.001 +540022,73.432,43.526 +540023,74.018,40.88 +540024,74.674,38.021 +540025,71.572,45.976 +540026,72.152,43.518 +540027,72.788,40.889 +540028,73.501,38.052 +540029,70.245,45.949 +540030,70.871,43.508 +540031,71.558,40.899 +540032,72.326,38.084 +540033,68.92,45.921 +540034,69.591,43.498 +540035,70.327,40.91 +540036,71.151,38.119 +540037,67.595,45.891 +540038,68.311,43.488 +540039,69.097,40.922 +540040,69.975,38.156 +540041,66.27,45.859 +540042,67.032,43.477 +540043,67.866,40.934 +540044,68.798,38.195 +540045,64.946,45.826 +540046,65.752,43.465 +540047,66.634,40.947 +540048,67.62,38.237 +540049,63.623,45.791 +540050,64.473,43.453 +540051,65.403,40.961 +540052,66.44,38.281 +540053,62.3,45.754 +540054,63.194,43.441 +540055,64.171,40.976 +540056,65.26,38.326 +540057,60.978,45.715 +540058,61.915,43.428 +540059,62.939,40.991 +540060,64.078,38.374 +540061,59.657,45.675 +540062,60.637,43.414 +540063,61.706,41.007 +540064,62.895,38.424 +540065,58.337,45.633 +540066,59.358,43.4 +540067,60.473,41.024 +540068,61.711,38.477 +540069,57.017,45.59 +540070,58.08,43.385 +540071,59.24,41.042 +540072,60.525,38.531 +540073,55.698,45.545 +540074,56.803,43.37 +540075,58.006,41.06 +540076,59.338,38.587 +540077,54.38,45.498 +540078,55.526,43.355 +540079,56.772,41.079 +540080,58.15,38.645 +540081,53.063,45.45 +540082,54.249,43.338 +540083,55.537,41.098 +540084,56.96,38.705 +540085,51.747,45.4 +540086,52.972,43.322 +540087,54.302,41.119 +540088,55.768,38.767 +540089,50.432,45.349 +540090,51.696,43.305 +540091,53.067,41.14 +540092,54.575,38.83 +540093,49.118,45.296 +540094,50.42,43.287 +540095,51.831,41.161 +540096,53.38,38.896 +540097,47.805,45.242 +540098,49.145,43.27 +540099,50.594,41.183 +540100,52.183,38.963 +540101,46.493,45.186 +540102,47.87,43.251 +540103,49.358,41.206 +540104,50.985,39.032 +540105,45.182,45.129 +540106,46.596,43.232 +540107,48.12,41.23 +540108,49.785,39.103 +540109,43.872,45.07 +540110,45.321,43.213 +540111,46.882,41.254 +540112,48.584,39.175 +540113,42.563,45.01 +540114,44.048,43.194 +540115,45.644,41.278 +540116,47.38,39.249 +540117,41.256,44.949 +540118,42.774,43.174 +540119,44.405,41.303 +540120,46.175,39.324 +540121,39.95,44.886 +540122,41.502,43.153 +540123,43.165,41.329 +540124,44.968,39.401 +540125,38.645,44.822 +540126,40.229,43.133 +540127,41.925,41.356 +540128,43.759,39.479 +540129,37.341,44.757 +540130,38.957,43.111 +540131,40.685,41.382 +540132,42.548,39.559 +540133,36.038,44.691 +540134,37.686,43.09 +540135,39.444,41.41 +540136,41.335,39.639 +540137,34.737,44.623 +540138,36.415,43.068 +540139,38.202,41.438 +540140,40.12,39.722 +540141,33.438,44.554 +540142,35.145,43.046 +540143,36.959,41.466 +540144,38.904,39.805 +540145,32.139,44.484 +540146,33.875,43.024 +540147,35.716,41.495 +540148,37.685,39.89 +540149,30.842,44.413 +540150,32.606,43.001 +540151,34.473,41.524 +540152,36.464,39.976 +540153,29.547,44.341 +540154,31.337,42.978 +540155,33.229,41.554 +540156,35.242,40.063 +540157,28.253,44.267 +540158,30.069,42.955 +540159,31.984,41.584 +540160,34.017,40.15 +540161,26.961,44.193 +540162,28.801,42.931 +540163,30.738,41.615 +540164,32.79,40.239 +540165,25.67,44.118 +540166,27.534,42.907 +540167,29.492,41.646 +540168,31.562,40.329 +540169,24.38,44.041 +540170,26.267,42.883 +540171,28.246,41.678 +540172,30.331,40.42 +540173,23.092,43.964 +540174,25.001,42.859 +540175,26.998,41.709 +540176,29.098,40.512 +540177,21.806,43.886 +540178,23.735,42.834 +540179,25.75,41.742 +540180,27.863,40.604 +540181,20.522,43.807 +540182,22.47,42.81 +540183,24.502,41.774 +540184,26.627,40.697 +540185,19.239,43.727 +540186,21.206,42.785 +540187,23.252,41.807 +540188,25.388,40.791 +540189,17.958,43.647 +540190,19.942,42.76 +540191,22.002,41.84 +540192,24.147,40.885 +540193,16.678,43.565 +540194,18.679,42.735 +540195,20.752,41.874 +540196,22.904,40.98 +540197,15.4,43.483 +540198,17.417,42.709 +540199,19.5,41.907 +540200,21.659,41.076 +540201,14.124,43.401 +540202,16.155,42.684 +540203,18.248,41.941 +540204,20.412,41.172 +540205,12.85,43.317 +540206,14.893,42.658 +540207,16.996,41.976 +540208,19.163,41.269 +540209,11.578,43.234 +540210,13.633,42.633 +540211,15.742,42.01 +540212,17.911,41.365 +540213,10.307,43.149 +540214,12.372,42.607 +540215,14.488,42.045 +540216,16.658,41.463 +540217,9.0379,43.064 +540218,11.113,42.581 +540219,13.233,42.08 +540220,15.403,41.56 +540221,7.7708,42.979 +540222,9.8539,42.555 +540223,11.978,42.115 +540224,14.146,41.658 +540225,6.5056,42.893 +540226,8.5957,42.529 +540227,10.722,42.15 +540228,12.887,41.756 +540229,5.2422,42.807 +540230,7.338,42.504 +540231,9.4652,42.186 +540232,11.626,41.854 +540233,3.9808,42.721 +540234,6.081,42.478 +540235,8.2078,42.222 +540236,10.363,41.952 +540237,2.7212,42.634 +540238,4.8245,42.452 +540239,6.9497,42.257 +540240,9.0977,42.05 +540241,1.4635,42.547 +540242,3.5688,42.426 +540243,5.6909,42.293 +540244,7.8308,42.148 +540245,0.20774,42.46 +540246,2.3136,42.4 +540247,4.4315,42.329 +540248,6.5619,42.247 +540249,358.95,42.373 +540250,1.0591,42.374 +540251,3.1713,42.365 +540252,5.2912,42.345 +540253,357.7,42.285 +540254,359.81,42.349 +540255,1.9105,42.401 +540256,4.0185,42.442 +540257,356.45,42.198 +540258,358.55,42.323 +540259,0.64908,42.437 +540260,2.744,42.54 +540261,355.2,42.111 +540262,357.3,42.298 +540263,359.39,42.473 +540264,1.4677,42.638 +540265,353.96,42.023 +540266,356.05,42.272 +540267,358.12,42.51 +540268,0.18956,42.735 +540269,352.71,41.936 +540270,354.8,42.247 +540271,356.86,42.546 +540272,358.91,42.832 +540273,351.47,41.849 +540274,353.54,42.222 +540275,355.6,42.582 +540276,357.63,42.928 +540277,350.23,41.762 +540278,352.29,42.197 +540279,354.33,42.618 +540280,356.34,43.024 +540281,348.99,41.675 +540282,351.05,42.172 +540283,353.07,42.654 +540284,355.06,43.12 +540285,347.76,41.589 +540286,349.8,42.148 +540287,351.8,42.69 +540288,353.77,43.215 +540289,346.52,41.502 +540290,348.55,42.123 +540291,350.53,42.726 +540292,352.48,43.309 +540293,345.29,41.417 +540294,347.3,42.099 +540295,349.27,42.762 +540296,351.19,43.403 +540297,344.06,41.331 +540298,346.05,42.076 +540299,348,42.797 +540300,349.9,43.497 +540301,342.83,41.247 +540302,344.81,42.052 +540303,346.73,42.833 +540304,348.61,43.589 +540305,341.61,41.162 +540306,343.56,42.029 +540307,345.46,42.868 +540308,347.31,43.681 +540309,340.38,41.079 +540310,342.32,42.006 +540311,344.19,42.903 +540312,346.02,43.773 +540313,339.16,40.995 +540314,341.07,41.983 +540315,342.92,42.939 +540316,344.72,43.863 +540317,337.94,40.913 +540318,339.83,41.961 +540319,341.65,42.973 +540320,343.42,43.953 +540321,336.72,40.831 +540322,338.58,41.939 +540323,340.38,43.008 +540324,342.12,44.042 +540325,335.5,40.75 +540326,337.34,41.917 +540327,339.11,43.043 +540328,340.81,44.129 +540329,334.29,40.67 +540330,336.1,41.896 +540331,337.83,43.077 +540332,339.51,44.216 +540333,333.07,40.591 +540334,334.85,41.875 +540335,336.56,43.111 +540336,338.2,44.302 +540337,331.86,40.513 +540338,333.61,41.854 +540339,335.29,43.145 +540340,336.9,44.387 +540341,330.65,40.435 +540342,332.37,41.834 +540343,334.01,43.178 +540344,335.59,44.471 +540345,329.45,40.359 +540346,331.13,41.815 +540347,332.74,43.211 +540348,334.28,44.554 +540349,328.24,40.284 +540350,329.89,41.796 +540351,331.46,43.244 +540352,332.97,44.636 +540353,327.04,40.21 +540354,328.65,41.777 +540355,330.19,43.277 +540356,331.66,44.716 +540357,325.83,40.137 +540358,327.41,41.759 +540359,328.91,43.309 +540360,330.34,44.796 +540361,324.63,40.065 +540362,326.17,41.741 +540363,327.64,43.341 +540364,329.03,44.874 +540365,323.44,39.995 +540366,324.94,41.723 +540367,326.36,43.373 +540368,327.72,44.951 +540369,322.24,39.925 +540370,323.7,41.707 +540371,325.08,43.404 +540372,326.4,45.027 +540373,321.04,39.857 +540374,322.46,41.69 +540375,323.8,43.435 +540376,325.08,45.102 +540377,319.85,39.791 +540378,321.22,41.675 +540379,322.52,43.466 +540380,323.76,45.175 +540381,318.66,39.726 +540382,319.99,41.66 +540383,321.25,43.496 +540384,322.44,45.247 +540385,317.47,39.662 +540386,318.75,41.645 +540387,319.97,43.526 +540388,321.12,45.317 +540389,316.28,39.601 +540390,317.52,41.631 +540391,318.69,43.555 +540392,319.8,45.386 +540393,315.09,39.54 +540394,316.28,41.618 +540395,317.41,43.584 +540396,318.48,45.454 +540397,313.9,39.481 +540398,315.05,41.605 +540399,316.13,43.613 +540400,317.15,45.52 +540401,312.72,39.424 +540402,313.81,41.593 +540403,314.85,43.641 +540404,315.83,45.585 +540405,311.53,39.369 +540406,312.58,41.581 +540407,313.56,43.668 +540408,314.51,45.648 +540409,310.35,39.315 +540410,311.34,41.57 +540411,312.28,43.696 +540412,313.18,45.71 +540413,309.17,39.263 +540414,310.11,41.56 +540415,311,43.722 +540416,311.85,45.771 +540417,307.99,39.213 +540418,308.88,41.55 +540419,309.72,43.749 +540420,310.53,45.829 +540421,306.81,39.165 +540422,307.64,41.541 +540423,308.44,43.774 +540424,309.2,45.886 +540425,305.63,39.118 +540426,306.41,41.533 +540427,307.15,43.8 +540428,307.87,45.942 +540429,304.45,39.074 +540430,305.18,41.525 +540431,305.87,43.825 +540432,306.54,45.996 +540433,303.28,39.032 +540434,303.94,41.518 +540435,304.59,43.849 +540436,305.21,46.048 +540437,302.1,38.991 +540438,302.71,41.512 +540439,303.3,43.873 +540440,303.88,46.099 +540441,300.92,38.953 +540442,301.48,41.507 +540443,302.02,43.896 +540444,302.55,46.148 +540445,299.75,38.916 +540446,300.25,41.502 +540447,300.74,43.919 +540448,301.22,46.196 +540449,298.58,38.882 +540450,299.02,41.498 +540451,299.45,43.941 +540452,299.89,46.241 +540453,297.4,38.85 +540454,297.78,41.494 +540455,298.17,43.963 +540456,298.56,46.285 +540457,296.23,38.82 +540458,296.55,41.492 +540459,296.88,43.984 +540460,297.22,46.328 +540461,295.06,38.792 +540462,295.32,41.49 +540463,295.6,44.005 +540464,295.89,46.368 +540465,293.89,38.766 +540466,294.09,41.489 +540467,294.32,44.025 +540468,294.56,46.407 +540469,292.72,38.743 +540470,292.86,41.488 +540471,293.03,44.044 +540472,293.23,46.444 +540473,291.55,38.722 +540474,291.63,41.489 +540475,291.75,44.063 +540476,291.89,46.48 +540477,290.38,38.703 +540478,290.4,41.49 +540479,290.46,44.082 +540480,290.56,46.513 +540481,289.21,38.686 +540482,289.16,41.492 +540483,289.18,44.099 +540484,289.22,46.545 +540485,288.04,38.672 +540486,287.93,41.495 +540487,287.89,44.117 +540488,287.89,46.575 +540489,286.87,38.66 +540490,286.7,41.498 +540491,286.6,44.133 +540492,286.56,46.604 +540493,285.7,38.65 +540494,285.47,41.502 +540495,285.32,44.15 +540496,285.22,46.63 +540497,284.53,38.643 +540498,284.24,41.507 +540499,284.03,44.165 +540500,283.89,46.655 +540501,283.36,38.638 +540502,283.01,41.513 +540503,282.75,44.18 +540504,282.56,46.678 +540505,282.19,38.635 +540506,281.78,41.52 +540507,281.46,44.195 +540508,281.22,46.699 +540509,281.02,38.635 +540510,280.54,41.527 +540511,280.18,44.208 +540512,279.89,46.718 +540513,279.85,38.637 +540514,279.31,41.536 +540515,278.89,44.222 +540516,278.56,46.736 +540517,278.67,38.642 +540518,278.08,41.545 +540519,277.61,44.234 +540520,277.22,46.751 +540521,277.5,38.649 +540522,276.85,41.554 +540523,276.32,44.246 +540524,275.89,46.765 +540525,276.33,38.658 +540526,275.61,41.565 +540527,275.04,44.258 +540528,274.56,46.777 +540529,275.16,38.67 +540530,274.38,41.576 +540531,273.75,44.269 +540532,273.22,46.788 +540533,273.98,38.684 +540534,273.15,41.589 +540535,272.47,44.279 +540536,271.89,46.796 +540537,272.81,38.7 +540538,271.92,41.602 +540539,271.18,44.289 +540540,270.56,46.803 +540541,271.63,38.719 +540542,270.68,41.615 +540543,269.9,44.298 +540544,269.23,46.808 +540545,270.46,38.74 +540546,269.45,41.63 +540547,268.61,44.306 +540548,267.9,46.811 +540549,269.28,38.764 +540550,268.21,41.645 +540551,267.33,44.314 +540552,266.57,46.812 +540553,268.1,38.79 +540554,266.98,41.661 +540555,266.04,44.322 +540556,265.24,46.811 +540557,266.92,38.818 +540558,265.75,41.678 +540559,264.76,44.329 +540560,263.91,46.809 +540561,265.74,38.848 +540562,264.51,41.696 +540563,263.47,44.335 +540564,262.58,46.805 +540565,264.56,38.881 +540566,263.28,41.714 +540567,262.19,44.341 +540568,261.25,46.799 +540569,263.38,38.917 +540570,262.04,41.734 +540571,260.91,44.346 +540572,259.92,46.791 +540573,262.19,38.954 +540574,260.8,41.754 +540575,259.62,44.35 +540576,258.6,46.782 +540577,261.01,38.994 +540578,259.57,41.774 +540579,258.34,44.354 +540580,257.27,46.771 +540581,259.82,39.036 +540582,258.33,41.796 +540583,257.06,44.358 +540584,255.95,46.758 +540585,258.63,39.08 +540586,257.09,41.818 +540587,255.78,44.361 +540588,254.62,46.744 +540589,257.44,39.126 +540590,255.85,41.841 +540591,254.49,44.363 +540592,253.3,46.727 +540593,256.25,39.175 +540594,254.62,41.865 +540595,253.21,44.365 +540596,251.97,46.71 +540597,255.05,39.226 +540598,253.38,41.889 +540599,251.93,44.366 +540600,250.65,46.69 +540601,253.86,39.279 +540602,252.14,41.915 +540603,250.65,44.367 +540604,249.33,46.669 +540605,252.66,39.333 +540606,250.9,41.941 +540607,249.37,44.367 +540608,248.01,46.646 +540609,251.46,39.39 +540610,249.66,41.967 +540611,248.09,44.367 +540612,246.69,46.621 +540613,250.26,39.449 +540614,248.42,41.994 +540615,246.81,44.366 +540616,245.37,46.595 +540617,249.06,39.51 +540618,247.17,42.022 +540619,245.53,44.365 +540620,244.06,46.567 +540621,247.86,39.573 +540622,245.93,42.051 +540623,244.25,44.363 +540624,242.74,46.538 +540625,246.65,39.638 +540626,244.69,42.08 +540627,242.97,44.361 +540628,241.42,46.507 +540629,245.44,39.705 +540630,243.45,42.11 +540631,241.69,44.358 +540632,240.11,46.475 +540633,244.23,39.774 +540634,242.2,42.141 +540635,240.41,44.355 +540636,238.8,46.441 +540637,243.02,39.844 +540638,240.96,42.172 +540639,239.13,44.351 +540640,237.49,46.405 +540641,241.81,39.917 +540642,239.71,42.204 +540643,237.85,44.347 +540644,236.18,46.368 +540645,240.59,39.991 +540646,238.47,42.237 +540647,236.58,44.343 +540648,234.87,46.33 +540649,239.38,40.066 +540650,237.22,42.27 +540651,235.3,44.337 +540652,233.56,46.29 +540653,238.16,40.144 +540654,235.97,42.304 +540655,234.02,44.332 +540656,232.25,46.249 +540657,236.93,40.223 +540658,234.73,42.338 +540659,232.75,44.326 +540660,230.95,46.206 +540661,235.71,40.303 +540662,233.48,42.373 +540663,231.47,44.32 +540664,229.64,46.162 +540665,234.48,40.385 +540666,232.23,42.408 +540667,230.2,44.313 +540668,228.34,46.117 +540669,233.26,40.469 +540670,230.98,42.444 +540671,228.92,44.306 +540672,227.04,46.07 +540673,232.02,40.554 +540674,229.73,42.481 +540675,227.65,44.299 +540676,225.74,46.022 +540677,230.79,40.64 +540678,228.48,42.518 +540679,226.37,44.291 +540680,224.44,45.973 +540681,229.56,40.728 +540682,227.23,42.556 +540683,225.1,44.283 +540684,223.14,45.923 +540685,228.32,40.817 +540686,225.97,42.594 +540687,223.83,44.274 +540688,221.85,45.871 +540689,227.08,40.907 +540690,224.72,42.632 +540691,222.56,44.265 +540692,220.56,45.818 +540693,225.84,40.999 +540694,223.47,42.671 +540695,221.29,44.256 +540696,219.26,45.764 +540697,224.6,41.091 +540698,222.21,42.711 +540699,220.01,44.247 +540700,217.97,45.709 +540701,223.35,41.185 +540702,220.96,42.75 +540703,218.74,44.237 +540704,216.68,45.653 +540705,222.1,41.28 +540706,219.7,42.791 +540707,217.47,44.227 +540708,215.4,45.596 +540709,220.85,41.376 +540710,218.44,42.832 +540711,216.21,44.216 +540712,214.11,45.538 +540713,219.6,41.473 +540714,217.18,42.873 +540715,214.94,44.206 +540716,212.83,45.479 +540717,218.35,41.571 +540718,215.93,42.914 +540719,213.67,44.195 +540720,211.55,45.419 +540721,217.09,41.669 +540722,214.67,42.956 +540723,212.4,44.184 +540724,210.27,45.358 +540725,215.83,41.769 +540726,213.41,42.998 +540727,211.13,44.172 +540728,208.99,45.296 +540729,214.57,41.869 +540730,212.15,43.041 +540731,209.87,44.161 +540732,207.71,45.233 +540733,213.31,41.97 +540734,210.89,43.084 +540735,208.6,44.149 +540736,206.43,45.17 +540737,212.04,42.071 +540738,209.62,43.127 +540739,207.34,44.137 +540740,205.16,45.106 +540741,210.77,42.174 +540742,208.36,43.17 +540743,206.07,44.125 +540744,203.89,45.041 +540745,209.5,42.276 +540746,207.1,43.214 +540747,204.81,44.113 +540748,202.62,44.975 +540749,208.23,42.38 +540750,205.83,43.258 +540751,203.54,44.1 +540752,201.35,44.909 +540753,206.96,42.484 +540754,204.57,43.303 +540755,202.28,44.088 +540756,200.09,44.842 +540757,205.68,42.588 +540758,203.3,43.347 +540759,201.02,44.075 +540760,198.82,44.774 +540761,204.41,42.692 +540762,202.04,43.392 +540763,199.76,44.062 +540764,197.56,44.706 +540765,203.13,42.797 +540766,200.77,43.437 +540767,198.49,44.049 +540768,196.3,44.637 +540769,201.85,42.903 +540770,199.5,43.482 +540771,197.23,44.036 +540772,195.04,44.568 +540773,200.56,43.008 +540774,198.23,43.527 +540775,195.97,44.023 +540776,193.78,44.499 +540777,199.28,43.114 +540778,196.96,43.572 +540779,194.71,44.01 +540780,192.53,44.429 +540781,197.99,43.219 +540782,195.69,43.618 +540783,193.46,43.997 +540784,191.28,44.359 +540785,196.7,43.325 +540786,194.42,43.664 +540787,192.2,43.984 +540788,190.02,44.288 +540789,195.41,43.431 +540790,193.15,43.709 +540791,190.94,43.971 +540792,188.78,44.218 +540793,194.11,43.537 +540794,191.88,43.755 +540795,189.68,43.958 +540796,187.53,44.147 +540797,192.82,43.643 +540798,190.6,43.801 +540799,188.43,43.945 +540800,186.28,44.076 +540801,191.52,43.749 +540802,189.33,43.847 +540803,187.17,43.932 +540804,185.04,44.004 +540805,190.22,43.854 +540806,188.06,43.893 +540807,185.91,43.919 +540808,183.8,43.933 +540809,188.92,43.96 +540810,186.78,43.939 +540811,184.66,43.906 +540812,182.56,43.862 +540813,187.62,44.065 +540814,185.51,43.985 +540815,183.41,43.894 +540816,181.32,43.79 +540817,186.32,44.17 +540818,184.23,44.031 +540819,182.15,43.881 +540820,180.08,43.719 +540821,185.01,44.274 +540822,182.95,44.077 +540823,180.9,43.868 +540824,178.85,43.648 +540825,183.7,44.379 +540826,181.67,44.123 +540827,179.65,43.856 +540828,177.62,43.577 +540829,182.4,44.483 +540830,180.4,44.169 +540831,178.39,43.844 +540832,176.39,43.506 +540833,181.09,44.586 +540834,179.12,44.215 +540835,177.14,43.832 +540836,175.16,43.435 +540837,179.77,44.689 +540838,177.84,44.261 +540839,175.89,43.82 +540840,173.93,43.365 +540841,178.46,44.791 +540842,176.56,44.307 +540843,174.64,43.808 +540844,172.71,43.295 +540845,177.15,44.893 +540846,175.28,44.353 +540847,173.39,43.796 +540848,171.49,43.225 +540849,175.83,44.994 +540850,173.99,44.398 +540851,172.14,43.785 +540852,170.27,43.156 +540853,174.51,45.095 +540854,172.71,44.443 +540855,170.89,43.774 +540856,169.05,43.087 +540857,173.19,45.195 +540858,171.43,44.489 +540859,169.64,43.763 +540860,167.83,43.019 +540861,171.87,45.294 +540862,170.15,44.534 +540863,168.4,43.753 +540864,166.62,42.951 +540865,170.55,45.392 +540866,168.86,44.579 +540867,167.15,43.743 +540868,165.4,42.884 +540869,169.23,45.49 +540870,167.58,44.623 +540871,165.9,43.733 +540872,164.19,42.818 +540873,167.9,45.586 +540874,166.29,44.668 +540875,164.65,43.723 +540876,162.98,42.752 +540877,166.58,45.682 +540878,165.01,44.712 +540879,163.41,43.714 +540880,161.77,42.687 +540881,165.25,45.777 +540882,163.72,44.756 +540883,162.16,43.705 +540884,160.57,42.622 +540885,163.92,45.871 +540886,162.43,44.8 +540887,160.92,43.696 +540888,159.36,42.559 +540889,162.59,45.964 +540890,161.15,44.843 +540891,159.67,43.688 +540892,158.16,42.496 +540893,161.26,46.056 +540894,159.86,44.886 +540895,158.43,43.68 +540896,156.96,42.435 +540897,159.93,46.147 +540898,158.57,44.929 +540899,157.18,43.672 +540900,155.76,42.374 +540901,158.6,46.237 +540902,157.28,44.972 +540903,155.94,43.665 +540904,154.56,42.314 +540905,157.26,46.326 +540906,156,45.014 +540907,154.7,43.658 +540908,153.36,42.256 +540909,155.93,46.414 +540910,154.71,45.056 +540911,153.45,43.652 +540912,152.16,42.198 +540913,154.59,46.5 +540914,153.42,45.098 +540915,152.21,43.646 +540916,150.97,42.141 +540917,153.26,46.585 +540918,152.13,45.14 +540919,150.97,43.641 +540920,149.78,42.086 +540921,151.92,46.67 +540922,150.84,45.181 +540923,149.73,43.636 +540924,148.59,42.032 +540925,150.58,46.752 +540926,149.54,45.221 +540927,148.48,43.632 +540928,147.4,41.979 +540929,149.24,46.834 +540930,148.25,45.261 +540931,147.24,43.628 +540932,146.21,41.928 +540933,147.9,46.914 +540934,146.96,45.301 +540935,146,43.624 +540936,145.02,41.877 +540937,146.56,46.993 +540938,145.67,45.341 +540939,144.76,43.622 +540940,143.83,41.829 +540941,145.22,47.071 +540942,144.38,45.38 +540943,143.52,43.619 +540944,142.65,41.781 +540945,143.88,47.147 +540946,143.08,45.419 +540947,142.28,43.617 +540948,141.46,41.735 +540949,142.54,47.222 +540950,141.79,45.457 +540951,141.04,43.616 +540952,140.28,41.691 +540953,141.2,47.295 +540954,140.5,45.495 +540955,139.8,43.615 +540956,139.1,41.648 +540957,139.85,47.367 +540958,139.2,45.532 +540959,138.56,43.615 +540960,137.91,41.607 +540961,138.51,47.438 +540962,137.91,45.569 +540963,137.32,43.616 +540964,136.73,41.567 +540965,137.17,47.507 +540966,136.62,45.605 +540967,136.08,43.617 +540968,135.55,41.529 +540969,135.82,47.574 +540970,135.32,45.641 +540971,134.84,43.618 +540972,134.37,41.492 +540973,134.48,47.64 +540974,134.03,45.677 +540975,133.6,43.621 +540976,133.19,41.458 +540977,133.13,47.705 +540978,132.73,45.712 +540979,132.36,43.623 +540980,132.02,41.425 +540981,131.78,47.768 +540982,131.44,45.747 +540983,131.12,43.627 +540984,130.84,41.394 +540985,130.44,47.829 +540986,130.14,45.781 +540987,129.88,43.631 +540988,129.66,41.364 +540989,129.09,47.889 +540990,128.85,45.814 +540991,128.64,43.636 +540992,128.49,41.337 +540993,127.75,47.947 +540994,127.55,45.847 +540995,127.4,43.641 +540996,127.31,41.311 +540997,126.4,48.003 +540998,126.26,45.88 +540999,126.16,43.647 +541000,126.13,41.287 +541001,125.05,48.058 +541002,124.96,45.912 +541003,124.92,43.654 +541004,124.96,41.265 +541005,123.71,48.112 +541006,123.66,45.943 +541007,123.68,43.661 +541008,123.78,41.245 +541009,122.36,48.163 +541010,122.37,45.974 +541011,122.45,43.669 +541012,122.61,41.227 +541013,121.01,48.213 +541014,121.07,46.005 +541015,121.21,43.678 +541016,121.43,41.211 +541017,119.66,48.261 +541018,119.78,46.035 +541019,119.97,43.687 +541020,120.26,41.197 +541021,118.32,48.308 +541022,118.48,46.064 +541023,118.73,43.697 +541024,119.08,41.185 +541025,116.97,48.353 +541026,117.18,46.093 +541027,117.49,43.708 +541028,117.91,41.175 +541029,115.62,48.396 +541030,115.89,46.121 +541031,116.25,43.719 +541032,116.73,41.168 +541033,114.28,48.438 +541034,114.59,46.149 +541035,115.01,43.731 +541036,115.55,41.162 +541037,112.93,48.477 +541038,113.3,46.176 +541039,113.77,43.744 +541040,114.38,41.158 +541041,111.58,48.515 +541042,112,46.203 +541043,112.53,43.758 +541044,113.2,41.157 +541045,110.24,48.552 +541046,110.7,46.229 +541047,111.29,43.772 +541048,112.02,41.157 +541049,108.89,48.586 +541050,109.41,46.254 +541051,110.05,43.787 +541052,110.85,41.16 +541053,107.55,48.619 +541054,108.11,46.279 +541055,108.8,43.803 +541056,109.67,41.165 +541057,106.2,48.65 +541058,106.81,46.303 +541059,107.56,43.819 +541060,108.49,41.172 +541061,104.85,48.68 +541062,105.52,46.327 +541063,106.32,43.836 +541064,107.31,41.181 +541065,103.51,48.707 +541066,104.22,46.35 +541067,105.08,43.854 +541068,106.13,41.192 +541069,102.17,48.733 +541070,102.93,46.373 +541071,103.84,43.873 +541072,104.95,41.206 +541073,100.82,48.757 +541074,101.63,46.395 +541075,102.59,43.892 +541076,103.77,41.221 +541077,99.48,48.78 +541078,100.34,46.416 +541079,101.35,43.912 +541080,102.58,41.239 +541081,98.137,48.8 +541082,99.041,46.437 +541083,100.11,43.933 +541084,101.4,41.259 +541085,96.795,48.819 +541086,97.746,46.457 +541087,98.865,43.954 +541088,100.21,41.282 +541089,95.454,48.836 +541090,96.451,46.477 +541091,97.621,43.977 +541092,99.025,41.306 +541093,94.113,48.852 +541094,95.156,46.496 +541095,96.376,43.999 +541096,97.837,41.332 +541097,92.773,48.866 +541098,93.861,46.515 +541099,95.132,44.023 +541100,96.648,41.361 +541101,91.434,48.878 +541102,92.567,46.533 +541103,93.886,44.047 +541104,95.457,41.392 +541105,90.095,48.888 +541106,91.273,46.55 +541107,92.64,44.072 +541108,94.265,41.425 +541109,88.758,48.897 +541110,89.979,46.567 +541111,91.394,44.098 +541112,93.071,41.46 +541113,87.421,48.903 +541114,88.685,46.584 +541115,90.147,44.125 +541116,91.876,41.497 +541117,86.085,48.909 +541118,87.392,46.6 +541119,88.9,44.152 +541120,90.68,41.537 +541121,84.749,48.912 +541122,86.099,46.615 +541123,87.653,44.18 +541124,89.481,41.578 +541125,83.415,48.914 +541126,84.806,46.629 +541127,86.404,44.208 +541128,88.281,41.622 +541129,82.082,48.914 +541130,83.513,46.644 +541131,85.155,44.237 +541132,87.08,41.667 +541133,80.749,48.913 +541134,82.221,46.657 +541135,83.906,44.267 +541136,85.876,41.715 +541137,79.418,48.91 +541138,80.929,46.67 +541139,82.656,44.298 +541140,84.671,41.765 +541141,78.087,48.905 +541142,79.638,46.683 +541143,81.406,44.329 +541144,83.464,41.817 +541145,76.758,48.899 +541146,78.347,46.695 +541147,80.154,44.361 +541148,82.255,41.87 +541149,75.43,48.891 +541150,77.056,46.706 +541151,78.903,44.393 +541152,81.044,41.926 +541153,74.103,48.881 +541154,75.765,46.717 +541155,77.65,44.427 +541156,79.831,41.984 +541157,72.777,48.87 +541158,74.475,46.728 +541159,76.397,44.46 +541160,78.616,42.043 +541161,71.452,48.858 +541162,73.185,46.738 +541163,75.144,44.495 +541164,77.399,42.104 +541165,70.128,48.843 +541166,71.896,46.747 +541167,73.889,44.53 +541168,76.18,42.168 +541169,68.806,48.828 +541170,70.607,46.756 +541171,72.634,44.566 +541172,74.959,42.233 +541173,67.485,48.811 +541174,69.319,46.765 +541175,71.379,44.602 +541176,73.736,42.3 +541177,66.165,48.792 +541178,68.031,46.773 +541179,70.123,44.639 +541180,72.511,42.368 +541181,64.846,48.772 +541182,66.743,46.78 +541183,68.866,44.676 +541184,71.283,42.439 +541185,63.529,48.75 +541186,65.456,46.788 +541187,67.608,44.714 +541188,70.053,42.511 +541189,62.213,48.727 +541190,64.169,46.794 +541191,66.35,44.753 +541192,68.821,42.585 +541193,60.899,48.703 +541194,62.883,46.8 +541195,65.09,44.792 +541196,67.587,42.66 +541197,59.586,48.677 +541198,61.597,46.806 +541199,63.831,44.832 +541200,66.351,42.737 +541201,58.274,48.65 +541202,60.312,46.811 +541203,62.57,44.872 +541204,65.112,42.816 +541205,56.964,48.622 +541206,59.027,46.816 +541207,61.309,44.913 +541208,63.871,42.896 +541209,55.656,48.592 +541210,57.743,46.821 +541211,60.047,44.955 +541212,62.628,42.977 +541213,54.349,48.561 +541214,56.459,46.825 +541215,58.784,44.997 +541216,61.383,43.06 +541217,53.043,48.529 +541218,55.176,46.829 +541219,57.521,45.039 +541220,60.135,43.145 +541221,51.739,48.495 +541222,53.893,46.832 +541223,56.256,45.082 +541224,58.885,43.231 +541225,50.437,48.461 +541226,52.611,46.835 +541227,54.991,45.125 +541228,57.633,43.318 +541229,49.136,48.425 +541230,51.329,46.837 +541231,53.726,45.169 +541232,56.378,43.406 +541233,47.837,48.388 +541234,50.048,46.84 +541235,52.459,45.213 +541236,55.121,43.496 +541237,46.539,48.35 +541238,48.767,46.842 +541239,51.192,45.258 +541240,53.862,43.587 +541241,45.244,48.31 +541242,47.487,46.843 +541243,49.924,45.303 +541244,52.6,43.679 +541245,43.949,48.27 +541246,46.207,46.844 +541247,48.655,45.349 +541248,51.336,43.772 +541249,42.657,48.229 +541250,44.928,46.845 +541251,47.385,45.394 +541252,50.07,43.867 +541253,41.366,48.186 +541254,43.65,46.846 +541255,46.115,45.441 +541256,48.802,43.962 +541257,40.077,48.143 +541258,42.372,46.846 +541259,44.843,45.487 +541260,47.531,44.058 +541261,38.79,48.099 +541262,41.095,46.846 +541263,43.572,45.535 +541264,46.258,44.156 +541265,37.504,48.054 +541266,39.818,46.846 +541267,42.299,45.582 +541268,44.983,44.254 +541269,36.221,48.008 +541270,38.541,46.846 +541271,41.025,45.63 +541272,43.705,44.353 +541273,34.939,47.961 +541274,37.266,46.845 +541275,39.751,45.678 +541276,42.425,44.453 +541277,33.658,47.913 +541278,35.991,46.844 +541279,38.476,45.726 +541280,41.143,44.553 +541281,32.38,47.865 +541282,34.716,46.843 +541283,37.2,45.775 +541284,39.859,44.655 +541285,31.104,47.816 +541286,33.442,46.841 +541287,35.923,45.824 +541288,38.573,44.757 +541289,29.829,47.766 +541290,32.169,46.84 +541291,34.646,45.873 +541292,37.284,44.859 +541293,28.556,47.715 +541294,30.896,46.838 +541295,33.368,45.922 +541296,35.994,44.963 +541297,27.285,47.664 +541298,29.624,46.836 +541299,32.089,45.972 +541300,34.701,45.066 +541301,26.016,47.612 +541302,28.352,46.834 +541303,30.809,46.022 +541304,33.406,45.171 +541305,24.749,47.56 +541306,27.081,46.832 +541307,29.529,46.072 +541308,32.109,45.275 +541309,23.484,47.507 +541310,25.811,46.83 +541311,28.247,46.122 +541312,30.81,45.381 +541313,22.22,47.454 +541314,24.541,46.827 +541315,26.965,46.173 +541316,29.509,45.486 +541317,20.959,47.4 +541318,23.271,46.825 +541319,25.683,46.223 +541320,28.206,45.592 +541321,19.699,47.345 +541322,22.002,46.822 +541323,24.399,46.274 +541324,26.901,45.698 +541325,18.441,47.291 +541326,20.734,46.82 +541327,23.115,46.325 +541328,25.594,45.804 +541329,17.185,47.236 +541330,19.467,46.817 +541331,21.83,46.376 +541332,24.285,45.911 +541333,15.931,47.181 +541334,18.199,46.814 +541335,20.544,46.427 +541336,22.974,46.017 +541337,14.679,47.125 +541338,16.933,46.811 +541339,19.258,46.478 +541340,21.662,46.124 +541341,13.429,47.069 +541342,15.667,46.808 +541343,17.971,46.53 +541344,20.347,46.231 +541345,12.181,47.014 +541346,14.402,46.806 +541347,16.683,46.581 +541348,19.031,46.338 +541349,10.934,46.957 +541350,13.137,46.803 +541351,15.394,46.632 +541352,17.713,46.444 +541353,9.6895,46.901 +541354,11.872,46.8 +541355,14.105,46.684 +541356,16.393,46.551 +541357,8.4468,46.845 +541358,10.609,46.797 +541359,12.815,46.735 +541360,15.071,46.657 +541361,7.206,46.789 +541362,9.3453,46.795 +541363,11.525,46.787 +541364,13.748,46.764 +541365,5.967,46.733 +541366,8.0825,46.792 +541367,10.234,46.838 +541368,12.423,46.87 +541369,4.7299,46.677 +541370,6.8203,46.789 +541371,8.9417,46.89 +541372,11.097,46.976 +541373,3.4946,46.621 +541374,5.5586,46.787 +541375,7.6492,46.941 +541376,9.7686,47.081 +541377,2.2611,46.565 +541378,4.2974,46.784 +541379,6.356,46.992 +541380,8.4389,47.187 +541381,1.0294,46.509 +541382,3.0367,46.782 +541383,5.0622,47.043 +541384,7.1077,47.292 +541385,359.8,46.453 +541386,1.7765,46.78 +541387,3.7678,47.095 +541388,5.775,47.396 +541389,358.57,46.398 +541390,0.51676,46.778 +541391,2.4728,47.146 +541392,4.4409,47.5 +541393,357.35,46.343 +541394,359.26,46.776 +541395,1.1772,47.197 +541396,3.1053,47.604 +541397,356.12,46.289 +541398,358,46.775 +541399,359.88,47.248 +541400,1.7684,47.707 +541401,354.9,46.235 +541402,356.74,46.773 +541403,358.58,47.298 +541404,0.43011,47.809 +541405,353.68,46.181 +541406,355.48,46.772 +541407,357.29,47.349 +541408,359.09,47.911 +541409,352.46,46.128 +541410,354.23,46.771 +541411,355.99,47.399 +541412,357.75,48.012 +541413,351.24,46.075 +541414,352.97,46.77 +541415,354.69,47.449 +541416,356.41,48.112 +541417,350.02,46.023 +541418,351.71,46.769 +541419,353.39,47.499 +541420,355.06,48.212 +541421,348.81,45.971 +541422,350.46,46.769 +541423,352.09,47.549 +541424,353.72,48.311 +541425,347.59,45.92 +541426,349.2,46.769 +541427,350.79,47.599 +541428,352.37,48.41 +541429,346.38,45.87 +541430,347.94,46.769 +541431,349.49,47.648 +541432,351.03,48.507 +541433,345.17,45.82 +541434,346.69,46.77 +541435,348.19,47.698 +541436,349.68,48.604 +541437,343.96,45.771 +541438,345.43,46.77 +541439,346.89,47.746 +541440,348.33,48.699 +541441,342.76,45.723 +541442,344.18,46.771 +541443,345.59,47.795 +541444,346.98,48.794 +541445,341.55,45.676 +541446,342.93,46.773 +541447,344.28,47.843 +541448,345.63,48.888 +541449,340.35,45.63 +541450,341.67,46.775 +541451,342.98,47.892 +541452,344.28,48.981 +541453,339.14,45.584 +541454,340.42,46.777 +541455,341.68,47.939 +541456,342.93,49.072 +541457,337.94,45.54 +541458,339.17,46.779 +541459,340.38,47.987 +541460,341.57,49.163 +541461,336.74,45.497 +541462,337.91,46.782 +541463,339.07,48.034 +541464,340.22,49.253 +541465,335.54,45.454 +541466,336.66,46.785 +541467,337.77,48.081 +541468,338.86,49.342 +541469,334.35,45.413 +541470,335.41,46.789 +541471,336.46,48.127 +541472,337.51,49.429 +541473,333.15,45.372 +541474,334.16,46.793 +541475,335.16,48.174 +541476,336.15,49.515 +541477,331.95,45.333 +541478,332.9,46.797 +541479,333.85,48.219 +541480,334.79,49.601 +541481,330.76,45.295 +541482,331.65,46.802 +541483,332.55,48.265 +541484,333.44,49.685 +541485,329.56,45.259 +541486,330.4,46.808 +541487,331.24,48.31 +541488,332.08,49.767 +541489,328.37,45.223 +541490,329.15,46.813 +541491,329.93,48.354 +541492,330.72,49.849 +541493,327.18,45.189 +541494,327.9,46.82 +541495,328.63,48.399 +541496,329.36,49.929 +541497,325.99,45.156 +541498,326.65,46.826 +541499,327.32,48.443 +541500,328,50.008 +541501,324.8,45.124 +541502,325.4,46.834 +541503,326.01,48.486 +541504,326.64,50.086 +541505,323.61,45.094 +541506,324.15,46.841 +541507,324.7,48.529 +541508,325.28,50.162 +541509,322.42,45.066 +541510,322.9,46.849 +541511,323.4,48.572 +541512,323.92,50.237 +541513,321.23,45.038 +541514,321.65,46.858 +541515,322.09,48.614 +541516,322.56,50.31 +541517,320.04,45.012 +541518,320.4,46.867 +541519,320.78,48.655 +541520,321.19,50.382 +541521,318.86,44.988 +541522,319.15,46.877 +541523,319.47,48.697 +541524,319.83,50.453 +541525,317.67,44.965 +541526,317.9,46.887 +541527,318.16,48.737 +541528,318.47,50.522 +541529,316.48,44.944 +541530,316.65,46.898 +541531,316.86,48.778 +541532,317.11,50.59 +541533,315.3,44.924 +541534,315.39,46.909 +541535,315.55,48.818 +541536,315.74,50.656 +541537,314.11,44.906 +541538,314.14,46.921 +541539,314.24,48.857 +541540,314.38,50.721 +541541,312.93,44.89 +541542,312.89,46.933 +541543,312.93,48.896 +541544,313.02,50.785 +541545,311.74,44.875 +541546,311.64,46.946 +541547,311.62,48.934 +541548,311.66,50.846 +541549,310.55,44.862 +541550,310.39,46.96 +541551,310.31,48.972 +541552,310.29,50.907 +541553,309.37,44.85 +541554,309.14,46.974 +541555,309,49.009 +541556,308.93,50.965 +541557,308.18,44.84 +541558,307.89,46.989 +541559,307.69,49.046 +541560,307.57,51.023 +541561,307,44.832 +541562,306.64,47.004 +541563,306.38,49.083 +541564,306.2,51.078 +541565,305.81,44.826 +541566,305.39,47.02 +541567,305.07,49.119 +541568,304.84,51.132 +541569,304.63,44.822 +541570,304.14,47.037 +541571,303.76,49.154 +541572,303.48,51.185 +541573,303.44,44.819 +541574,302.89,47.054 +541575,302.46,49.189 +541576,302.12,51.236 +541577,302.26,44.818 +541578,301.64,47.071 +541579,301.15,49.223 +541580,300.76,51.285 +541581,301.07,44.819 +541582,300.39,47.09 +541583,299.84,49.257 +541584,299.39,51.333 +541585,299.88,44.822 +541586,299.13,47.109 +541587,298.53,49.29 +541588,298.03,51.379 +541589,298.69,44.827 +541590,297.88,47.128 +541591,297.22,49.322 +541592,296.67,51.423 +541593,297.51,44.833 +541594,296.63,47.148 +541595,295.91,49.355 +541596,295.31,51.466 +541597,296.32,44.842 +541598,295.38,47.169 +541599,294.6,49.386 +541600,293.95,51.507 +541601,295.13,44.852 +541602,294.12,47.191 +541603,293.29,49.417 +541604,292.59,51.547 +541605,293.94,44.864 +541606,292.87,47.213 +541607,291.98,49.448 +541608,291.23,51.584 +541609,292.75,44.879 +541610,291.62,47.235 +541611,290.67,49.478 +541612,289.87,51.621 +541613,291.55,44.895 +541614,290.36,47.258 +541615,289.36,49.507 +541616,288.51,51.655 +541617,290.36,44.913 +541618,289.11,47.282 +541619,288.06,49.536 +541620,287.16,51.688 +541621,289.17,44.932 +541622,287.86,47.307 +541623,286.75,49.564 +541624,285.8,51.72 +541625,287.97,44.954 +541626,286.6,47.332 +541627,285.44,49.592 +541628,284.44,51.749 +541629,286.77,44.978 +541630,285.35,47.358 +541631,284.13,49.619 +541632,283.09,51.777 +541633,285.58,45.003 +541634,284.09,47.384 +541635,282.82,49.646 +541636,281.73,51.804 +541637,284.38,45.031 +541638,282.83,47.411 +541639,281.52,49.672 +541640,280.38,51.829 +541641,283.18,45.06 +541642,281.58,47.439 +541643,280.21,49.697 +541644,279.02,51.852 +541645,281.98,45.092 +541646,280.32,47.467 +541647,278.9,49.722 +541648,277.67,51.873 +541649,280.77,45.125 +541650,279.06,47.496 +541651,277.6,49.747 +541652,276.32,51.893 +541653,279.57,45.16 +541654,277.8,47.526 +541655,276.29,49.771 +541656,274.97,51.911 +541657,278.36,45.197 +541658,276.55,47.556 +541659,274.98,49.794 +541660,273.62,51.928 +541661,277.16,45.236 +541662,275.29,47.587 +541663,273.68,49.817 +541664,272.27,51.943 +541665,275.95,45.277 +541666,274.03,47.618 +541667,272.37,49.839 +541668,270.92,51.956 +541669,274.74,45.32 +541670,272.77,47.65 +541671,271.07,49.861 +541672,269.57,51.968 +541673,273.52,45.364 +541674,271.51,47.683 +541675,269.76,49.882 +541676,268.23,51.979 +541677,272.31,45.41 +541678,270.25,47.716 +541679,268.46,49.903 +541680,266.88,51.987 +541681,271.09,45.459 +541682,268.98,47.75 +541683,267.15,49.923 +541684,265.54,51.994 +541685,269.88,45.508 +541686,267.72,47.784 +541687,265.85,49.943 +541688,264.2,52 +541689,268.66,45.56 +541690,266.46,47.819 +541691,264.55,49.962 +541692,262.85,52.004 +541693,267.43,45.614 +541694,265.19,47.855 +541695,263.24,49.98 +541696,261.51,52.007 +541697,266.21,45.669 +541698,263.93,47.891 +541699,261.94,49.998 +541700,260.17,52.008 +541701,264.98,45.726 +541702,262.67,47.928 +541703,260.64,50.016 +541704,258.83,52.007 +541705,263.76,45.785 +541706,261.4,47.965 +541707,259.34,50.033 +541708,257.5,52.005 +541709,262.53,45.845 +541710,260.13,48.003 +541711,258.03,50.05 +541712,256.16,52.002 +541713,261.3,45.907 +541714,258.87,48.041 +541715,256.73,50.066 +541716,254.83,51.997 +541717,260.06,45.971 +541718,257.6,48.08 +541719,255.43,50.082 +541720,253.49,51.991 +541721,258.83,46.037 +541722,256.33,48.12 +541723,254.13,50.097 +541724,252.16,51.983 +541725,257.59,46.103 +541726,255.06,48.16 +541727,252.83,50.112 +541728,250.83,51.974 +541729,256.35,46.172 +541730,253.79,48.2 +541731,251.53,50.126 +541732,249.5,51.964 +541733,255.11,46.242 +541734,252.52,48.241 +541735,250.23,50.14 +541736,248.17,51.952 +541737,253.86,46.314 +541738,251.25,48.283 +541739,248.94,50.153 +541740,246.85,51.939 +541741,252.61,46.387 +541742,249.98,48.325 +541743,247.64,50.166 +541744,245.52,51.924 +541745,251.36,46.461 +541746,248.71,48.367 +541747,246.34,50.179 +541748,244.2,51.908 +541749,250.11,46.537 +541750,247.43,48.41 +541751,245.04,50.191 +541752,242.88,51.891 +541753,248.86,46.615 +541754,246.16,48.454 +541755,243.75,50.202 +541756,241.56,51.873 +541757,247.6,46.693 +541758,244.89,48.498 +541759,242.45,50.214 +541760,240.24,51.853 +541761,246.34,46.773 +541762,243.61,48.542 +541763,241.16,50.225 +541764,238.92,51.833 +541765,245.08,46.855 +541766,242.33,48.587 +541767,239.86,50.235 +541768,237.61,51.811 +541769,243.82,46.937 +541770,241.06,48.632 +541771,238.57,50.245 +541772,236.29,51.788 +541773,242.55,47.021 +541774,239.78,48.678 +541775,237.27,50.255 +541776,234.98,51.763 +541777,241.29,47.106 +541778,238.5,48.724 +541779,235.98,50.264 +541780,233.67,51.738 +541781,240.02,47.192 +541782,237.22,48.77 +541783,234.69,50.273 +541784,232.36,51.712 +541785,238.74,47.28 +541786,235.94,48.817 +541787,233.4,50.282 +541788,231.05,51.684 +541789,237.47,47.368 +541790,234.66,48.864 +541791,232.1,50.29 +541792,229.75,51.656 +541793,236.19,47.457 +541794,233.38,48.912 +541795,230.81,50.298 +541796,228.44,51.626 +541797,234.91,47.548 +541798,232.1,48.96 +541799,229.52,50.306 +541800,227.14,51.596 +541801,233.63,47.639 +541802,230.82,49.008 +541803,228.23,50.314 +541804,225.84,51.564 +541805,232.35,47.731 +541806,229.53,49.056 +541807,226.94,50.321 +541808,224.54,51.532 +541809,231.06,47.825 +541810,228.25,49.105 +541811,225.65,50.328 +541812,223.25,51.499 +541813,229.77,47.919 +541814,226.96,49.154 +541815,224.37,50.334 +541816,221.95,51.465 +541817,228.48,48.014 +541818,225.68,49.204 +541819,223.08,50.341 +541820,220.66,51.43 +541821,227.19,48.109 +541822,224.39,49.254 +541823,221.79,50.347 +541824,219.37,51.394 +541825,225.89,48.206 +541826,223.1,49.304 +541827,220.51,50.352 +541828,218.08,51.358 +541829,224.6,48.303 +541830,221.81,49.354 +541831,219.22,50.358 +541832,216.79,51.321 +541833,223.3,48.4 +541834,220.52,49.405 +541835,217.93,50.364 +541836,215.5,51.283 +541837,222,48.499 +541838,219.23,49.455 +541839,216.65,50.369 +541840,214.22,51.244 +541841,220.69,48.598 +541842,217.94,49.506 +541843,215.37,50.374 +541844,212.94,51.205 +541845,219.39,48.697 +541846,216.65,49.557 +541847,214.08,50.379 +541848,211.66,51.165 +541849,218.08,48.797 +541850,215.36,49.609 +541851,212.8,50.383 +541852,210.38,51.125 +541853,216.77,48.898 +541854,214.06,49.66 +541855,211.52,50.388 +541856,209.1,51.084 +541857,215.45,48.998 +541858,212.77,49.712 +541859,210.24,50.392 +541860,207.83,51.043 +541861,214.14,49.099 +541862,211.48,49.764 +541863,208.95,50.396 +541864,206.55,51.001 +541865,212.82,49.201 +541866,210.18,49.816 +541867,207.67,50.401 +541868,205.28,50.959 +541869,211.51,49.303 +541870,208.89,49.868 +541871,206.39,50.405 +541872,204.01,50.916 +541873,210.18,49.405 +541874,207.59,49.92 +541875,205.11,50.408 +541876,202.75,50.873 +541877,208.86,49.507 +541878,206.29,49.972 +541879,203.84,50.412 +541880,201.48,50.829 +541881,207.54,49.609 +541882,204.99,50.025 +541883,202.56,50.416 +541884,200.22,50.786 +541885,206.21,49.712 +541886,203.69,50.077 +541887,201.28,50.42 +541888,198.95,50.742 +541889,204.88,49.814 +541890,202.39,50.13 +541891,200,50.423 +541892,197.69,50.698 +541893,203.55,49.917 +541894,201.09,50.182 +541895,198.73,50.427 +541896,196.44,50.654 +541897,202.22,50.02 +541898,199.79,50.235 +541899,197.45,50.431 +541900,195.18,50.609 +541901,200.89,50.122 +541902,198.49,50.288 +541903,196.17,50.434 +541904,193.93,50.565 +541905,199.55,50.225 +541906,197.19,50.34 +541907,194.9,50.438 +541908,192.67,50.52 +541909,198.22,50.327 +541910,195.89,50.393 +541911,193.62,50.442 +541912,191.42,50.475 +541913,196.88,50.429 +541914,194.58,50.445 +541915,192.35,50.445 +541916,190.17,50.431 +541917,195.54,50.531 +541918,193.28,50.498 +541919,191.08,50.449 +541920,188.93,50.386 +541921,194.2,50.633 +541922,191.97,50.551 +541923,189.8,50.453 +541924,187.68,50.342 +541925,192.85,50.735 +541926,190.67,50.603 +541927,188.53,50.456 +541928,186.44,50.297 +541929,191.51,50.836 +541930,189.36,50.655 +541931,187.26,50.46 +541932,185.2,50.253 +541933,190.16,50.937 +541934,188.05,50.708 +541935,185.99,50.464 +541936,183.96,50.209 +541937,188.81,51.037 +541938,186.75,50.76 +541939,184.72,50.468 +541940,182.72,50.165 +541941,187.46,51.137 +541942,185.44,50.812 +541943,183.45,50.473 +541944,181.48,50.121 +541945,186.11,51.237 +541946,184.13,50.864 +541947,182.18,50.477 +541948,180.25,50.078 +541949,184.76,51.336 +541950,182.82,50.916 +541951,180.91,50.482 +541952,179.01,50.035 +541953,183.41,51.435 +541954,181.51,50.967 +541955,179.64,50.486 +541956,177.78,49.993 +541957,182.05,51.533 +541958,180.2,51.019 +541959,178.37,50.491 +541960,176.55,49.951 +541961,180.7,51.63 +541962,178.89,51.07 +541963,177.1,50.496 +541964,175.32,49.909 +541965,179.34,51.727 +541966,177.58,51.121 +541967,175.83,50.501 +541968,174.1,49.868 +541969,177.98,51.823 +541970,176.27,51.172 +541971,174.57,50.507 +541972,172.87,49.827 +541973,176.62,51.919 +541974,174.96,51.223 +541975,173.3,50.512 +541976,171.65,49.787 +541977,175.26,52.013 +541978,173.64,51.274 +541979,172.03,50.518 +541980,170.42,49.747 +541981,173.9,52.107 +541982,172.33,51.324 +541983,170.77,50.524 +541984,169.2,49.708 +541985,172.54,52.2 +541986,171.02,51.374 +541987,169.5,50.53 +541988,167.98,49.67 +541989,171.17,52.293 +541990,169.7,51.424 +541991,168.23,50.537 +541992,166.76,49.633 +541993,169.81,52.384 +541994,168.39,51.474 +541995,166.97,50.544 +541996,165.55,49.596 +541997,168.44,52.475 +541998,167.07,51.523 +541999,165.7,50.551 +542000,164.33,49.56 +542001,167.08,52.565 +542002,165.76,51.572 +542003,164.44,50.558 +542004,163.12,49.524 +542005,165.71,52.653 +542006,164.44,51.621 +542007,163.17,50.566 +542008,161.9,49.49 +542009,164.34,52.741 +542010,163.13,51.669 +542011,161.91,50.574 +542012,160.69,49.457 +542013,162.97,52.828 +542014,161.81,51.717 +542015,160.65,50.582 +542016,159.48,49.424 +542017,161.6,52.914 +542018,160.49,51.765 +542019,159.38,50.591 +542020,158.27,49.392 +542021,160.23,52.998 +542022,159.18,51.812 +542023,158.12,50.6 +542024,157.06,49.362 +542025,158.86,53.082 +542026,157.86,51.859 +542027,156.86,50.609 +542028,155.86,49.332 +542029,157.49,53.165 +542030,156.54,51.906 +542031,155.59,50.619 +542032,154.65,49.303 +542033,156.12,53.246 +542034,155.22,51.953 +542035,154.33,50.629 +542036,153.44,49.276 +542037,154.75,53.326 +542038,153.91,51.999 +542039,153.07,50.64 +542040,152.24,49.249 +542041,153.37,53.405 +542042,152.59,52.044 +542043,151.81,50.65 +542044,151.04,49.224 +542045,152,53.483 +542046,151.27,52.09 +542047,150.54,50.662 +542048,149.83,49.199 +542049,150.63,53.56 +542050,149.95,52.134 +542051,149.28,50.673 +542052,148.63,49.176 +542053,149.25,53.636 +542054,148.63,52.179 +542055,148.02,50.685 +542056,147.43,49.155 +542057,147.88,53.71 +542058,147.31,52.223 +542059,146.76,50.698 +542060,146.23,49.134 +542061,146.5,53.783 +542062,145.99,52.267 +542063,145.5,50.711 +542064,145.03,49.115 +542065,145.13,53.854 +542066,144.67,52.31 +542067,144.24,50.724 +542068,143.83,49.097 +542069,143.75,53.925 +542070,143.35,52.353 +542071,142.97,50.738 +542072,142.63,49.08 +542073,142.38,53.994 +542074,142.03,52.395 +542075,141.71,50.752 +542076,141.43,49.064 +542077,141,54.061 +542078,140.71,52.437 +542079,140.45,50.767 +542080,140.23,49.05 +542081,139.63,54.128 +542082,139.39,52.478 +542083,139.19,50.782 +542084,139.03,49.038 +542085,138.25,54.193 +542086,138.07,52.519 +542087,137.93,50.798 +542088,137.84,49.027 +542089,136.87,54.256 +542090,136.75,52.56 +542091,136.67,50.814 +542092,136.64,49.017 +542093,135.5,54.318 +542094,135.43,52.6 +542095,135.41,50.831 +542096,135.44,49.008 +542097,134.12,54.379 +542098,134.11,52.639 +542099,134.14,50.848 +542100,134.25,49.002 +542101,132.75,54.438 +542102,132.79,52.678 +542103,132.88,50.866 +542104,133.05,48.996 +542105,131.37,54.496 +542106,131.47,52.717 +542107,131.62,50.884 +542108,131.85,48.992 +542109,130,54.553 +542110,130.14,52.755 +542111,130.36,50.902 +542112,130.65,48.99 +542113,128.62,54.608 +542114,128.82,52.793 +542115,129.1,50.922 +542116,129.46,48.989 +542117,127.24,54.661 +542118,127.5,52.83 +542119,127.84,50.941 +542120,128.26,48.99 +542121,125.87,54.713 +542122,126.18,52.867 +542123,126.57,50.961 +542124,127.06,48.992 +542125,124.49,54.763 +542126,124.86,52.903 +542127,125.31,50.982 +542128,125.86,48.996 +542129,123.12,54.812 +542130,123.54,52.939 +542131,124.05,51.003 +542132,124.66,49.002 +542133,121.75,54.86 +542134,122.22,52.974 +542135,122.79,51.025 +542136,123.47,49.009 +542137,120.37,54.906 +542138,120.9,53.008 +542139,121.52,51.048 +542140,122.27,49.018 +542141,119,54.95 +542142,119.58,53.042 +542143,120.26,51.07 +542144,121.07,49.028 +542145,117.63,54.993 +542146,118.26,53.076 +542147,119,51.094 +542148,119.87,49.04 +542149,116.25,55.035 +542150,116.94,53.109 +542151,117.73,51.118 +542152,118.67,49.054 +542153,114.88,55.074 +542154,115.62,53.142 +542155,116.47,51.142 +542156,117.46,49.069 +542157,113.51,55.113 +542158,114.3,53.174 +542159,115.21,51.167 +542160,116.26,49.086 +542161,112.14,55.15 +542162,112.98,53.205 +542163,113.94,51.193 +542164,115.06,49.105 +542165,110.77,55.185 +542166,111.66,53.236 +542167,112.68,51.219 +542168,113.85,49.125 +542169,109.4,55.219 +542170,110.34,53.267 +542171,111.41,51.246 +542172,112.65,49.147 +542173,108.03,55.251 +542174,109.02,53.297 +542175,110.14,51.273 +542176,111.44,49.171 +542177,106.66,55.281 +542178,107.7,53.326 +542179,108.88,51.301 +542180,110.24,49.197 +542181,105.3,55.311 +542182,106.38,53.355 +542183,107.61,51.329 +542184,109.03,49.224 +542185,103.93,55.338 +542186,105.06,53.384 +542187,106.35,51.358 +542188,107.82,49.252 +542189,102.56,55.364 +542190,103.74,53.411 +542191,105.08,51.387 +542192,106.61,49.283 +542193,101.2,55.389 +542194,102.43,53.439 +542195,103.81,51.417 +542196,105.4,49.315 +542197,99.835,55.412 +542198,101.11,53.466 +542199,102.54,51.447 +542200,104.18,49.349 +542201,98.472,55.433 +542202,99.79,53.492 +542203,101.27,51.479 +542204,102.97,49.384 +542205,97.11,55.453 +542206,98.472,53.518 +542207,100.01,51.51 +542208,101.75,49.422 +542209,95.749,55.472 +542210,97.155,53.543 +542211,98.736,51.542 +542212,100.53,49.46 +542213,94.389,55.489 +542214,95.839,53.568 +542215,97.467,51.575 +542216,99.316,49.501 +542217,93.03,55.504 +542218,94.522,53.592 +542219,96.196,51.608 +542220,98.096,49.543 +542221,91.671,55.518 +542222,93.206,53.616 +542223,94.925,51.642 +542224,96.874,49.587 +542225,90.314,55.531 +542226,91.89,53.639 +542227,93.654,51.676 +542228,95.65,49.632 +542229,88.958,55.542 +542230,90.575,53.662 +542231,92.382,51.711 +542232,94.425,49.679 +542233,87.604,55.552 +542234,89.26,53.684 +542235,91.109,51.746 +542236,93.198,49.727 +542237,86.25,55.56 +542238,87.946,53.706 +542239,89.836,51.782 +542240,91.969,49.778 +542241,84.898,55.567 +542242,86.631,53.727 +542243,88.562,51.818 +542244,90.739,49.829 +542245,83.546,55.572 +542246,85.318,53.748 +542247,87.288,51.855 +542248,89.506,49.883 +542249,82.196,55.576 +542250,84.004,53.768 +542251,86.013,51.892 +542252,88.272,49.937 +542253,80.848,55.579 +542254,82.691,53.788 +542255,84.738,51.93 +542256,87.036,49.994 +542257,79.5,55.58 +542258,81.379,53.808 +542259,83.461,51.968 +542260,85.798,50.051 +542261,78.154,55.58 +542262,80.067,53.827 +542263,82.185,52.007 +542264,84.558,50.111 +542265,76.809,55.579 +542266,78.755,53.845 +542267,80.907,52.046 +542268,83.316,50.171 +542269,75.466,55.576 +542270,77.444,53.863 +542271,79.629,52.085 +542272,82.072,50.234 +542273,74.124,55.572 +542274,76.133,53.881 +542275,78.35,52.125 +542276,80.826,50.297 +542277,72.783,55.566 +542278,74.823,53.898 +542279,77.071,52.166 +542280,79.578,50.362 +542281,71.444,55.56 +542282,73.513,53.915 +542283,75.791,52.207 +542284,78.328,50.429 +542285,70.107,55.552 +542286,72.204,53.931 +542287,74.51,52.249 +542288,77.076,50.496 +542289,68.771,55.543 +542290,70.895,53.947 +542291,73.229,52.29 +542292,75.821,50.565 +542293,67.436,55.533 +542294,69.587,53.962 +542295,71.947,52.333 +542296,74.565,50.636 +542297,66.103,55.521 +542298,68.279,53.977 +542299,70.664,52.375 +542300,73.306,50.707 +542301,64.771,55.508 +542302,66.972,53.992 +542303,69.38,52.419 +542304,72.045,50.78 +542305,63.441,55.495 +542306,65.665,54.006 +542307,68.096,52.462 +542308,70.782,50.854 +542309,62.113,55.48 +542310,64.359,54.02 +542311,66.811,52.506 +542312,69.516,50.93 +542313,60.786,55.463 +542314,63.054,54.034 +542315,65.525,52.55 +542316,68.249,51.006 +542317,59.461,55.446 +542318,61.748,54.047 +542319,64.239,52.595 +542320,66.979,51.084 +542321,58.137,55.428 +542322,60.444,54.06 +542323,62.952,52.64 +542324,65.707,51.162 +542325,56.815,55.409 +542326,59.14,54.072 +542327,61.664,52.685 +542328,64.432,51.242 +542329,55.495,55.389 +542330,57.836,54.084 +542331,60.375,52.731 +542332,63.156,51.323 +542333,54.176,55.368 +542334,56.534,54.096 +542335,59.086,52.777 +542336,61.877,51.405 +542337,52.86,55.345 +542338,55.231,54.107 +542339,57.796,52.824 +542340,60.596,51.487 +542341,51.544,55.322 +542342,53.93,54.119 +542343,56.505,52.87 +542344,59.312,51.571 +542345,50.231,55.298 +542346,52.628,54.129 +542347,55.213,52.917 +542348,58.027,51.656 +542349,48.919,55.273 +542350,51.328,54.14 +542351,53.921,52.965 +542352,56.739,51.741 +542353,47.61,55.248 +542354,50.028,54.15 +542355,52.628,53.012 +542356,55.448,51.828 +542357,46.301,55.221 +542358,48.728,54.16 +542359,51.334,53.06 +542360,54.156,51.915 +542361,44.995,55.194 +542362,47.43,54.17 +542363,50.04,53.108 +542364,52.861,52.003 +542365,43.691,55.166 +542366,46.131,54.179 +542367,48.744,53.156 +542368,51.564,52.092 +542369,42.388,55.137 +542370,44.834,54.189 +542371,47.448,53.205 +542372,50.265,52.181 +542373,41.087,55.107 +542374,43.537,54.198 +542375,46.151,53.254 +542376,48.964,52.271 +542377,39.788,55.077 +542378,42.24,54.206 +542379,44.854,53.303 +542380,47.66,52.362 +542381,38.49,55.046 +542382,40.944,54.215 +542383,43.556,53.352 +542384,46.355,52.453 +542385,37.195,55.014 +542386,39.649,54.223 +542387,42.256,53.402 +542388,45.047,52.545 +542389,35.901,54.982 +542390,38.354,54.232 +542391,40.957,53.451 +542392,43.737,52.637 +542393,34.609,54.95 +542394,37.06,54.24 +542395,39.656,53.501 +542396,42.425,52.73 +542397,33.319,54.917 +542398,35.766,54.247 +542399,38.355,53.551 +542400,41.11,52.824 +542401,32.031,54.883 +542402,34.473,54.255 +542403,37.053,53.601 +542404,39.794,52.917 +542405,30.745,54.849 +542406,33.181,54.262 +542407,35.75,53.651 +542408,38.475,53.012 +542409,29.461,54.814 +542410,31.889,54.27 +542411,34.447,53.702 +542412,37.155,53.106 +542413,28.178,54.779 +542414,30.598,54.277 +542415,33.143,53.752 +542416,35.832,53.201 +542417,26.897,54.744 +542418,29.308,54.284 +542419,31.838,53.803 +542420,34.507,53.296 +542421,25.618,54.708 +542422,28.018,54.291 +542423,30.532,53.853 +542424,33.181,53.391 +542425,24.341,54.672 +542426,26.728,54.298 +542427,29.226,53.904 +542428,31.852,53.487 +542429,23.066,54.636 +542430,25.439,54.305 +542431,27.919,53.955 +542432,30.521,53.583 +542433,21.793,54.6 +542434,24.151,54.312 +542435,26.611,54.006 +542436,29.189,53.679 +542437,20.521,54.563 +542438,22.863,54.319 +542439,25.303,54.057 +542440,27.855,53.775 +542441,19.251,54.526 +542442,21.576,54.325 +542443,23.994,54.108 +542444,26.518,53.871 +542445,17.983,54.489 +542446,20.289,54.332 +542447,22.684,54.158 +542448,25.18,53.967 +542449,16.717,54.452 +542450,19.003,54.338 +542451,21.374,54.209 +542452,23.84,54.063 +542453,15.453,54.415 +542454,17.718,54.345 +542455,20.063,54.26 +542456,22.499,54.158 +542457,14.19,54.378 +542458,16.433,54.352 +542459,18.751,54.311 +542460,21.155,54.254 +542461,12.93,54.341 +542462,15.148,54.358 +542463,17.439,54.362 +542464,19.81,54.35 +542465,11.671,54.304 +542466,13.864,54.365 +542467,16.126,54.413 +542468,18.463,54.446 +542469,10.413,54.267 +542470,12.581,54.372 +542471,14.812,54.464 +542472,17.115,54.541 +542473,9.1579,54.23 +542474,11.298,54.378 +542475,13.498,54.514 +542476,15.765,54.636 +542477,7.9041,54.193 +542478,10.016,54.385 +542479,12.183,54.565 +542480,14.413,54.731 +542481,6.6521,54.157 +542482,8.734,54.392 +542483,10.868,54.616 +542484,13.06,54.825 +542485,5.4017,54.12 +542486,7.4527,54.399 +542487,9.5519,54.666 +542488,11.705,54.92 +542489,4.1529,54.084 +542490,6.1718,54.406 +542491,8.2354,54.716 +542492,10.349,55.013 +542493,2.9059,54.048 +542494,4.8914,54.413 +542495,6.9183,54.767 +542496,8.9913,55.107 +542497,1.6604,54.013 +542498,3.6115,54.42 +542499,5.6006,54.817 +542500,7.6322,55.2 +542501,0.41656,53.977 +542502,2.3321,54.428 +542503,4.2824,54.867 +542504,6.2718,55.292 +542505,359.17,53.943 +542506,1.0531,54.435 +542507,2.9637,54.916 +542508,4.91,55.385 +542509,357.93,53.908 +542510,359.77,54.443 +542511,1.6445,54.966 +542512,3.5469,55.476 +542513,356.69,53.874 +542514,358.5,54.451 +542515,0.32472,55.015 +542516,2.1825,55.567 +542517,355.46,53.841 +542518,357.22,54.459 +542519,359,55.065 +542520,0.81692,55.657 +542521,354.22,53.808 +542522,355.94,54.467 +542523,357.68,55.114 +542524,359.45,55.747 +542525,352.99,53.775 +542526,354.66,54.475 +542527,356.36,55.163 +542528,358.08,55.836 +542529,351.75,53.743 +542530,353.39,54.484 +542531,355.04,55.211 +542532,356.71,55.924 +542533,350.52,53.712 +542534,352.11,54.492 +542535,353.72,55.26 +542536,355.34,56.012 +542537,349.29,53.682 +542538,350.84,54.501 +542539,352.4,55.308 +542540,353.97,56.099 +542541,348.06,53.652 +542542,349.56,54.511 +542543,351.07,55.356 +542544,352.6,56.185 +542545,346.83,53.622 +542546,348.29,54.52 +542547,349.75,55.403 +542548,351.23,56.27 +542549,345.61,53.594 +542550,347.01,54.53 +542551,348.43,55.451 +542552,349.85,56.355 +542553,344.38,53.566 +542554,345.74,54.54 +542555,347.1,55.498 +542556,348.48,56.438 +542557,343.16,53.539 +542558,344.46,54.55 +542559,345.78,55.544 +542560,347.1,56.521 +542561,341.93,53.513 +542562,343.19,54.56 +542563,344.45,55.591 +542564,345.72,56.603 +542565,340.71,53.488 +542566,341.92,54.571 +542567,343.13,55.637 +542568,344.35,56.684 +542569,339.49,53.463 +542570,340.64,54.582 +542571,341.8,55.683 +542572,342.97,56.764 +542573,338.27,53.44 +542574,339.37,54.594 +542575,340.48,55.728 +542576,341.59,56.843 +542577,337.05,53.417 +542578,338.1,54.605 +542579,339.15,55.774 +542580,340.21,56.921 +542581,335.83,53.396 +542582,336.82,54.617 +542583,337.82,55.818 +542584,338.83,56.998 +542585,334.62,53.375 +542586,335.55,54.63 +542587,336.5,55.863 +542588,337.45,57.074 +542589,333.4,53.355 +542590,334.28,54.642 +542591,335.17,55.907 +542592,336.07,57.148 +542593,332.19,53.337 +542594,333.01,54.655 +542595,333.84,55.951 +542596,334.69,57.222 +542597,330.97,53.319 +542598,331.74,54.669 +542599,332.51,55.994 +542600,333.3,57.295 +542601,329.76,53.303 +542602,330.46,54.683 +542603,331.19,56.037 +542604,331.92,57.366 +542605,328.55,53.288 +542606,329.19,54.697 +542607,329.86,56.08 +542608,330.54,57.436 +542609,327.33,53.273 +542610,327.92,54.711 +542611,328.53,56.122 +542612,329.16,57.505 +542613,326.12,53.26 +542614,326.65,54.726 +542615,327.2,56.164 +542616,327.77,57.573 +542617,324.91,53.249 +542618,325.38,54.741 +542619,325.87,56.205 +542620,326.39,57.64 +542621,323.7,53.238 +542622,324.11,54.757 +542623,324.54,56.246 +542624,325,57.705 +542625,322.49,53.229 +542626,322.84,54.773 +542627,323.22,56.287 +542628,323.62,57.77 +542629,321.28,53.221 +542630,321.57,54.79 +542631,321.89,56.327 +542632,322.23,57.833 +542633,320.07,53.214 +542634,320.3,54.807 +542635,320.56,56.367 +542636,320.85,57.894 +542637,318.86,53.208 +542638,319.03,54.824 +542639,319.23,56.406 +542640,319.47,57.955 +542641,317.65,53.204 +542642,317.76,54.842 +542643,317.9,56.445 +542644,318.08,58.014 +542645,316.44,53.201 +542646,316.48,54.86 +542647,316.57,56.483 +542648,316.7,58.071 +542649,315.24,53.199 +542650,315.21,54.879 +542651,315.24,56.521 +542652,315.31,58.128 +542653,314.03,53.199 +542654,313.94,54.898 +542655,313.91,56.559 +542656,313.93,58.183 +542657,312.82,53.2 +542658,312.67,54.917 +542659,312.58,56.596 +542660,312.54,58.237 +542661,311.61,53.203 +542662,311.4,54.937 +542663,311.25,56.632 +542664,311.16,58.289 +542665,310.4,53.207 +542666,310.13,54.958 +542667,309.92,56.668 +542668,309.77,58.34 +542669,309.19,53.212 +542670,308.86,54.979 +542671,308.59,56.704 +542672,308.39,58.39 +542673,307.98,53.219 +542674,307.59,55 +542675,307.26,56.739 +542676,307,58.438 +542677,306.78,53.227 +542678,306.32,55.022 +542679,305.93,56.774 +542680,305.62,58.485 +542681,305.57,53.236 +542682,305.04,55.044 +542683,304.61,56.808 +542684,304.24,58.53 +542685,304.36,53.247 +542686,303.77,55.067 +542687,303.28,56.842 +542688,302.85,58.574 +542689,303.15,53.26 +542690,302.5,55.09 +542691,301.95,56.875 +542692,301.47,58.617 +542693,301.94,53.274 +542694,301.23,55.114 +542695,300.62,56.908 +542696,300.09,58.658 +542697,300.73,53.289 +542698,299.96,55.138 +542699,299.29,56.94 +542700,298.71,58.698 +542701,299.51,53.306 +542702,298.68,55.163 +542703,297.96,56.972 +542704,297.33,58.736 +542705,298.3,53.325 +542706,297.41,55.188 +542707,296.63,57.003 +542708,295.95,58.773 +542709,297.09,53.345 +542710,296.14,55.214 +542711,295.3,57.034 +542712,294.57,58.809 +542713,295.88,53.366 +542714,294.87,55.24 +542715,293.97,57.064 +542716,293.19,58.843 +542717,294.66,53.389 +542718,293.59,55.266 +542719,292.65,57.094 +542720,291.81,58.875 +542721,293.45,53.414 +542722,292.32,55.294 +542723,291.32,57.123 +542724,290.43,58.906 +542725,292.23,53.439 +542726,291.04,55.321 +542727,289.99,57.152 +542728,289.05,58.936 +542729,291.01,53.467 +542730,289.77,55.349 +542731,288.66,57.181 +542732,287.67,58.964 +542733,289.8,53.496 +542734,288.49,55.378 +542735,287.34,57.208 +542736,286.3,58.991 +542737,288.58,53.526 +542738,287.22,55.407 +542739,286.01,57.236 +542740,284.92,59.017 +542741,287.36,53.558 +542742,285.94,55.436 +542743,284.68,57.263 +542744,283.55,59.041 +542745,286.14,53.592 +542746,284.67,55.466 +542747,283.36,57.289 +542748,282.17,59.064 +542749,284.91,53.626 +542750,283.39,55.497 +542751,282.03,57.315 +542752,280.8,59.085 +542753,283.69,53.663 +542754,282.11,55.528 +542755,280.7,57.34 +542756,279.43,59.105 +542757,282.47,53.701 +542758,280.84,55.559 +542759,279.38,57.365 +542760,278.06,59.123 +542761,281.24,53.74 +542762,279.56,55.591 +542763,278.05,57.39 +542764,276.69,59.14 +542765,280.01,53.781 +542766,278.28,55.623 +542767,276.73,57.414 +542768,275.32,59.156 +542769,278.78,53.823 +542770,277,55.656 +542771,275.4,57.437 +542772,273.95,59.17 +542773,277.55,53.867 +542774,275.72,55.689 +542775,274.08,57.46 +542776,272.59,59.183 +542777,276.32,53.912 +542778,274.44,55.723 +542779,272.75,57.483 +542780,271.22,59.194 +542781,275.09,53.958 +542782,273.16,55.757 +542783,271.43,57.505 +542784,269.86,59.204 +542785,273.85,54.006 +542786,271.88,55.792 +542787,270.11,57.526 +542788,268.49,59.213 +542789,272.62,54.056 +542790,270.6,55.827 +542791,268.78,57.548 +542792,267.13,59.221 +542793,271.38,54.106 +542794,269.32,55.863 +542795,267.46,57.568 +542796,265.77,59.227 +542797,270.14,54.158 +542798,268.04,55.899 +542799,266.14,57.588 +542800,264.41,59.232 +542801,268.9,54.212 +542802,266.76,55.935 +542803,264.82,57.608 +542804,263.05,59.235 +542805,267.66,54.267 +542806,265.47,55.972 +542807,263.5,57.628 +542808,261.69,59.238 +542809,266.41,54.323 +542810,264.19,56.009 +542811,262.18,57.647 +542812,260.34,59.239 +542813,265.16,54.38 +542814,262.9,56.047 +542815,260.86,57.665 +542816,258.98,59.238 +542817,263.91,54.439 +542818,261.62,56.085 +542819,259.54,57.683 +542820,257.63,59.237 +542821,262.66,54.499 +542822,260.33,56.124 +542823,258.22,57.701 +542824,256.28,59.234 +542825,261.41,54.56 +542826,259.05,56.163 +542827,256.9,57.718 +542828,254.93,59.23 +542829,260.16,54.622 +542830,257.76,56.202 +542831,255.58,57.735 +542832,253.58,59.225 +542833,258.9,54.686 +542834,256.47,56.242 +542835,254.26,57.751 +542836,252.23,59.219 +542837,257.64,54.751 +542838,255.18,56.282 +542839,252.94,57.767 +542840,250.88,59.212 +542841,256.38,54.817 +542842,253.9,56.322 +542843,251.63,57.783 +542844,249.54,59.203 +542845,255.12,54.884 +542846,252.61,56.363 +542847,250.31,57.798 +542848,248.19,59.194 +542849,253.86,54.952 +542850,251.32,56.404 +542851,248.99,57.813 +542852,246.85,59.183 +542853,252.59,55.021 +542854,250.03,56.446 +542855,247.68,57.828 +542856,245.51,59.171 +542857,251.32,55.092 +542858,248.73,56.487 +542859,246.36,57.842 +542860,244.17,59.159 +542861,250.05,55.163 +542862,247.44,56.53 +542863,245.05,57.856 +542864,242.84,59.145 +542865,248.78,55.236 +542866,246.15,56.572 +542867,243.74,57.869 +542868,241.5,59.13 +542869,247.5,55.309 +542870,244.86,56.615 +542871,242.42,57.882 +542872,240.17,59.114 +542873,246.23,55.383 +542874,243.56,56.658 +542875,241.11,57.895 +542876,238.84,59.097 +542877,244.95,55.459 +542878,242.27,56.702 +542879,239.8,57.907 +542880,237.51,59.08 +542881,243.67,55.535 +542882,240.97,56.745 +542883,238.49,57.92 +542884,236.18,59.061 +542885,242.38,55.612 +542886,239.67,56.789 +542887,237.17,57.931 +542888,234.85,59.042 +542889,241.1,55.69 +542890,238.38,56.834 +542891,235.86,57.943 +542892,233.52,59.021 +542893,239.81,55.769 +542894,237.08,56.878 +542895,234.55,57.954 +542896,232.2,59 +542897,238.52,55.848 +542898,235.78,56.923 +542899,233.25,57.965 +542900,230.88,58.978 +542901,237.23,55.928 +542902,234.48,56.968 +542903,231.94,57.976 +542904,229.56,58.956 +542905,235.93,56.009 +542906,233.18,57.013 +542907,230.63,57.986 +542908,228.24,58.932 +542909,234.64,56.091 +542910,231.88,57.059 +542911,229.32,57.997 +542912,226.92,58.908 +542913,233.34,56.174 +542914,230.58,57.105 +542915,228.01,58.007 +542916,225.61,58.883 +542917,232.04,56.257 +542918,229.28,57.151 +542919,226.71,58.016 +542920,224.29,58.857 +542921,230.74,56.34 +542922,227.98,57.197 +542923,225.4,58.026 +542924,222.98,58.831 +542925,229.43,56.424 +542926,226.67,57.243 +542927,224.1,58.035 +542928,221.67,58.804 +542929,228.12,56.509 +542930,225.37,57.29 +542931,222.79,58.044 +542932,220.36,58.777 +542933,226.81,56.594 +542934,224.06,57.336 +542935,221.49,58.053 +542936,219.06,58.749 +542937,225.5,56.68 +542938,222.76,57.383 +542939,220.18,58.062 +542940,217.75,58.72 +542941,224.19,56.766 +542942,221.45,57.43 +542943,218.88,58.071 +542944,216.45,58.691 +542945,222.87,56.853 +542946,220.15,57.477 +542947,217.58,58.079 +542948,215.15,58.661 +542949,221.56,56.94 +542950,218.84,57.524 +542951,216.28,58.087 +542952,213.85,58.631 +542953,220.24,57.027 +542954,217.53,57.572 +542955,214.98,58.095 +542956,212.56,58.601 +542957,218.91,57.115 +542958,216.22,57.619 +542959,213.68,58.103 +542960,211.26,58.57 +542961,217.59,57.203 +542962,214.91,57.667 +542963,212.38,58.111 +542964,209.97,58.539 +542965,216.26,57.291 +542966,213.6,57.714 +542967,211.08,58.119 +542968,208.68,58.508 +542969,214.94,57.379 +542970,212.29,57.762 +542971,209.78,58.127 +542972,207.39,58.476 +542973,213.61,57.468 +542974,210.98,57.81 +542975,208.48,58.134 +542976,206.1,58.444 +542977,212.27,57.556 +542978,209.66,57.857 +542979,207.18,58.142 +542980,204.81,58.412 +542981,210.94,57.645 +542982,208.35,57.905 +542983,205.89,58.149 +542984,203.53,58.379 +542985,209.61,57.734 +542986,207.04,57.953 +542987,204.59,58.156 +542988,202.24,58.347 +542989,208.27,57.823 +542990,205.72,58.001 +542991,203.29,58.164 +542992,200.96,58.314 +542993,206.93,57.912 +542994,204.41,58.049 +542995,202,58.171 +542996,199.68,58.281 +542997,205.59,58.001 +542998,203.09,58.096 +542999,200.7,58.178 +543000,198.41,58.248 +543001,204.24,58.089 +543002,201.78,58.144 +543003,199.41,58.185 +543004,197.13,58.215 +543005,202.9,58.178 +543006,200.46,58.192 +543007,198.12,58.193 +543008,195.86,58.182 +543009,201.55,58.267 +543010,199.14,58.24 +543011,196.82,58.2 +543012,194.59,58.149 +543013,200.2,58.355 +543014,197.82,58.288 +543015,195.53,58.207 +543016,193.32,58.116 +543017,198.85,58.443 +543018,196.5,58.335 +543019,194.24,58.214 +543020,192.05,58.084 +543021,197.5,58.532 +543022,195.18,58.383 +543023,192.95,58.222 +543024,190.78,58.051 +543025,196.15,58.619 +543026,193.86,58.43 +543027,191.66,58.229 +543028,189.52,58.018 +543029,194.79,58.707 +543030,192.54,58.478 +543031,190.37,58.237 +543032,188.25,57.986 +543033,193.44,58.794 +543034,191.22,58.525 +543035,189.08,58.244 +543036,186.99,57.954 +543037,192.08,58.881 +543038,189.9,58.572 +543039,187.79,58.252 +543040,185.73,57.922 +543041,190.72,58.967 +543042,188.58,58.619 +543043,186.5,58.259 +543044,184.47,57.89 +543045,189.36,59.053 +543046,187.26,58.666 +543047,185.21,58.267 +543048,183.22,57.859 +543049,188,59.139 +543050,185.93,58.713 +543051,183.92,58.275 +543052,181.96,57.828 +543053,186.63,59.224 +543054,184.61,58.759 +543055,182.64,58.283 +543056,180.71,57.797 +543057,185.27,59.309 +543058,183.28,58.806 +543059,181.35,58.291 +543060,179.46,57.767 +543061,183.9,59.393 +543062,181.96,58.852 +543063,180.06,58.299 +543064,178.21,57.737 +543065,182.53,59.477 +543066,180.63,58.898 +543067,178.78,58.308 +543068,176.96,57.708 +543069,181.16,59.56 +543070,179.31,58.944 +543071,177.49,58.316 +543072,175.71,57.679 +543073,179.79,59.642 +543074,177.98,58.99 +543075,176.21,58.325 +543076,174.46,57.651 +543077,178.42,59.724 +543078,176.65,59.035 +543079,174.92,58.334 +543080,173.22,57.623 +543081,177.05,59.805 +543082,175.33,59.08 +543083,173.64,58.343 +543084,171.98,57.596 +543085,175.67,59.885 +543086,174,59.125 +543087,172.35,58.353 +543088,170.73,57.57 +543089,174.3,59.965 +543090,172.67,59.17 +543091,171.07,58.362 +543092,169.49,57.544 +543093,172.92,60.044 +543094,171.34,59.214 +543095,169.79,58.372 +543096,168.25,57.518 +543097,171.54,60.122 +543098,170.01,59.259 +543099,168.5,58.382 +543100,167.02,57.494 +543101,170.17,60.199 +543102,168.68,59.303 +543103,167.22,58.392 +543104,165.78,57.47 +543105,168.79,60.276 +543106,167.35,59.346 +543107,165.94,58.403 +543108,164.54,57.447 +543109,167.41,60.351 +543110,166.02,59.39 +543111,164.66,58.413 +543112,163.31,57.424 +543113,166.03,60.426 +543114,164.69,59.433 +543115,163.38,58.425 +543116,162.08,57.403 +543117,164.64,60.5 +543118,163.36,59.476 +543119,162.09,58.436 +543120,160.84,57.382 +543121,163.26,60.573 +543122,162.03,59.518 +543123,160.81,58.447 +543124,159.61,57.362 +543125,161.88,60.645 +543126,160.7,59.56 +543127,159.53,58.459 +543128,158.38,57.343 +543129,160.49,60.716 +543130,159.37,59.602 +543131,158.25,58.471 +543132,157.16,57.325 +543133,159.11,60.786 +543134,158.03,59.643 +543135,156.97,58.484 +543136,155.93,57.308 +543137,157.72,60.855 +543138,156.7,59.685 +543139,155.69,58.497 +543140,154.7,57.292 +543141,156.34,60.923 +543142,155.37,59.725 +543143,154.41,58.51 +543144,153.47,57.277 +543145,154.95,60.99 +543146,154.03,59.766 +543147,153.13,58.523 +543148,152.25,57.263 +543149,153.56,61.056 +543150,152.7,59.806 +543151,151.85,58.537 +543152,151.03,57.249 +543153,152.18,61.121 +543154,151.37,59.846 +543155,150.58,58.551 +543156,149.8,57.237 +543157,150.79,61.184 +543158,150.03,59.885 +543159,149.3,58.565 +543160,148.58,57.226 +543161,149.4,61.247 +543162,148.7,59.924 +543163,148.02,58.58 +543164,147.36,57.216 +543165,148.01,61.309 +543166,147.37,59.962 +543167,146.74,58.595 +543168,146.13,57.207 +543169,146.62,61.369 +543170,146.03,60.001 +543171,145.46,58.611 +543172,144.91,57.199 +543173,145.23,61.428 +543174,144.7,60.038 +543175,144.18,58.626 +543176,143.69,57.193 +543177,143.84,61.486 +543178,143.36,60.076 +543179,142.91,58.643 +543180,142.47,57.187 +543181,142.45,61.543 +543182,142.03,60.113 +543183,141.63,58.659 +543184,141.25,57.183 +543185,141.07,61.598 +543186,140.69,60.149 +543187,140.35,58.676 +543188,140.03,57.18 +543189,139.68,61.653 +543190,139.36,60.185 +543191,139.07,58.694 +543192,138.82,57.178 +543193,138.28,61.706 +543194,138.02,60.221 +543195,137.79,58.712 +543196,137.6,57.177 +543197,136.89,61.758 +543198,136.69,60.256 +543199,136.52,58.73 +543200,136.38,57.178 +543201,135.5,61.808 +543202,135.35,60.291 +543203,135.24,58.748 +543204,135.16,57.18 +543205,134.11,61.858 +543206,134.02,60.326 +543207,133.96,58.767 +543208,133.94,57.183 +543209,132.72,61.906 +543210,132.68,60.36 +543211,132.68,58.787 +543212,132.73,57.187 +543213,131.33,61.952 +543214,131.35,60.393 +543215,131.4,58.807 +543216,131.51,57.193 +543217,129.94,61.998 +543218,130.01,60.426 +543219,130.13,58.827 +543220,130.29,57.2 +543221,128.56,62.042 +543222,128.68,60.459 +543223,128.85,58.848 +543224,129.07,57.208 +543225,127.17,62.085 +543226,127.34,60.491 +543227,127.57,58.869 +543228,127.85,57.217 +543229,125.78,62.126 +543230,126.01,60.523 +543231,126.29,58.89 +543232,126.64,57.228 +543233,124.39,62.167 +543234,124.67,60.554 +543235,125.01,58.912 +543236,125.42,57.241 +543237,123,62.205 +543238,123.34,60.585 +543239,123.74,58.935 +543240,124.2,57.254 +543241,121.61,62.243 +543242,122,60.615 +543243,122.46,58.957 +543244,122.98,57.269 +543245,120.22,62.279 +543246,120.67,60.645 +543247,121.18,58.981 +543248,121.76,57.285 +543249,118.84,62.314 +543250,119.33,60.675 +543251,119.9,59.004 +543252,120.54,57.303 +543253,117.45,62.348 +543254,118,60.704 +543255,118.62,59.028 +543256,119.32,57.322 +543257,116.06,62.38 +543258,116.66,60.732 +543259,117.34,59.053 +543260,118.1,57.342 +543261,114.68,62.411 +543262,115.33,60.76 +543263,116.06,59.078 +543264,116.88,57.364 +543265,113.29,62.44 +543266,114,60.788 +543267,114.78,59.104 +543268,115.66,57.387 +543269,111.91,62.468 +543270,112.66,60.815 +543271,113.5,59.129 +543272,114.44,57.412 +543273,110.52,62.495 +543274,111.33,60.841 +543275,112.22,59.156 +543276,113.21,57.437 +543277,109.14,62.521 +543278,109.99,60.868 +543279,110.94,59.183 +543280,111.99,57.465 +543281,107.75,62.545 +543282,108.66,60.893 +543283,109.66,59.21 +543284,110.77,57.493 +543285,106.37,62.568 +543286,107.33,60.919 +543287,108.38,59.237 +543288,109.54,57.523 +543289,104.99,62.589 +543290,106,60.943 +543291,107.1,59.266 +543292,108.31,57.555 +543293,103.61,62.609 +543294,104.66,60.968 +543295,105.82,59.294 +543296,107.09,57.587 +543297,102.23,62.628 +543298,103.33,60.992 +543299,104.53,59.323 +543300,105.86,57.621 +543301,100.85,62.645 +543302,102,61.015 +543303,103.25,59.353 +543304,104.63,57.657 +543305,99.474,62.662 +543306,100.67,61.038 +543307,101.97,59.382 +543308,103.4,57.693 +543309,98.097,62.676 +543310,99.335,61.061 +543311,100.69,59.413 +543312,102.17,57.731 +543313,96.721,62.69 +543314,98.003,61.083 +543315,99.402,59.443 +543316,100.94,57.771 +543317,95.346,62.702 +543318,96.672,61.104 +543319,98.118,59.474 +543320,99.703,57.812 +543321,93.972,62.713 +543322,95.342,61.125 +543323,96.834,59.506 +543324,98.468,57.854 +543325,92.599,62.723 +543326,94.012,61.146 +543327,95.549,59.538 +543328,97.232,57.897 +543329,91.227,62.731 +543330,92.682,61.167 +543331,94.264,59.57 +543332,95.994,57.942 +543333,89.856,62.739 +543334,91.352,61.186 +543335,92.978,59.603 +543336,94.755,57.987 +543337,88.486,62.744 +543338,90.023,61.206 +543339,91.692,59.636 +543340,93.515,58.035 +543341,87.118,62.749 +543342,88.694,61.225 +543343,90.405,59.67 +543344,92.273,58.083 +543345,85.75,62.753 +543346,87.366,61.243 +543347,89.118,59.704 +543348,91.03,58.133 +543349,84.384,62.755 +543350,86.038,61.262 +543351,87.83,59.738 +543352,89.785,58.184 +543353,83.019,62.756 +543354,84.711,61.279 +543355,86.542,59.773 +543356,88.539,58.236 +543357,81.655,62.756 +543358,83.384,61.297 +543359,85.254,59.808 +543360,87.291,58.289 +543361,80.293,62.755 +543362,82.057,61.314 +543363,83.964,59.844 +543364,86.041,58.344 +543365,78.932,62.752 +543366,80.731,61.33 +543367,82.675,59.88 +543368,84.79,58.399 +543369,77.572,62.749 +543370,79.405,61.346 +543371,81.384,59.916 +543372,83.537,58.456 +543373,76.213,62.744 +543374,78.079,61.362 +543375,80.094,59.953 +543376,82.282,58.514 +543377,74.856,62.738 +543378,76.755,61.378 +543379,78.802,59.99 +543380,81.026,58.573 +543381,73.501,62.732 +543382,75.43,61.393 +543383,77.51,60.027 +543384,79.768,58.633 +543385,72.146,62.724 +543386,74.106,61.407 +543387,76.218,60.065 +543388,78.508,58.694 +543389,70.794,62.715 +543390,72.783,61.421 +543391,74.924,60.103 +543392,77.246,58.757 +543393,69.442,62.705 +543394,71.46,61.435 +543395,73.631,60.141 +543396,75.982,58.82 +543397,68.092,62.694 +543398,70.138,61.449 +543399,72.336,60.18 +543400,74.717,58.884 +543401,66.744,62.682 +543402,68.816,61.462 +543403,71.041,60.219 +543404,73.449,58.949 +543405,65.397,62.669 +543406,67.494,61.475 +543407,69.746,60.258 +543408,72.18,59.016 +543409,64.052,62.655 +543410,66.173,61.488 +543411,68.45,60.297 +543412,70.908,59.083 +543413,62.708,62.64 +543414,64.853,61.5 +543415,67.153,60.337 +543416,69.635,59.151 +543417,61.366,62.624 +543418,63.533,61.512 +543419,65.855,60.377 +543420,68.36,59.22 +543421,60.025,62.608 +543422,62.214,61.524 +543423,64.557,60.418 +543424,67.083,59.29 +543425,58.686,62.59 +543426,60.895,61.535 +543427,63.258,60.459 +543428,65.803,59.36 +543429,57.349,62.572 +543430,59.577,61.546 +543431,61.959,60.5 +543432,64.522,59.432 +543433,56.013,62.553 +543434,58.26,61.557 +543435,60.659,60.541 +543436,63.239,59.504 +543437,54.679,62.533 +543438,56.943,61.567 +543439,59.358,60.582 +543440,61.953,59.577 +543441,53.347,62.512 +543442,55.626,61.577 +543443,58.057,60.624 +543444,60.666,59.651 +543445,52.016,62.491 +543446,54.31,61.587 +543447,56.755,60.666 +543448,59.376,59.725 +543449,50.687,62.469 +543450,52.995,61.597 +543451,55.452,60.708 +543452,58.085,59.8 +543453,49.36,62.446 +543454,51.68,61.607 +543455,54.148,60.75 +543456,56.791,59.876 +543457,48.034,62.422 +543458,50.366,61.616 +543459,52.844,60.793 +543460,55.496,59.952 +543461,46.711,62.398 +543462,49.052,61.625 +543463,51.539,60.836 +543464,54.198,60.029 +543465,45.389,62.374 +543466,47.739,61.634 +543467,50.234,60.879 +543468,52.898,60.107 +543469,44.068,62.348 +543470,46.427,61.642 +543471,48.928,60.922 +543472,51.596,60.185 +543473,42.75,62.322 +543474,45.115,61.651 +543475,47.621,60.965 +543476,50.292,60.264 +543477,41.433,62.296 +543478,43.804,61.659 +543479,46.314,61.008 +543480,48.986,60.343 +543481,40.118,62.269 +543482,42.493,61.667 +543483,45.005,61.052 +543484,47.678,60.422 +543485,38.804,62.242 +543486,41.183,61.675 +543487,43.697,61.096 +543488,46.368,60.502 +543489,37.493,62.214 +543490,39.874,61.683 +543491,42.387,61.139 +543492,45.055,60.583 +543493,36.183,62.186 +543494,38.565,61.69 +543495,41.077,61.183 +543496,43.741,60.663 +543497,34.875,62.157 +543498,37.257,61.698 +543499,39.766,61.227 +543500,42.425,60.744 +543501,33.569,62.128 +543502,35.949,61.705 +543503,38.454,61.271 +543504,41.106,60.826 +543505,32.265,62.099 +543506,34.642,61.712 +543507,37.142,61.316 +543508,39.786,60.907 +543509,30.962,62.069 +543510,33.336,61.719 +543511,35.829,61.36 +543512,38.463,60.989 +543513,29.661,62.039 +543514,32.03,61.726 +543515,34.516,61.404 +543516,37.139,61.071 +543517,28.362,62.009 +543518,30.724,61.733 +543519,33.201,61.449 +543520,35.812,61.153 +543521,27.065,61.978 +543522,29.42,61.74 +543523,31.886,61.493 +543524,34.484,61.236 +543525,25.769,61.948 +543526,28.116,61.747 +543527,30.571,61.537 +543528,33.154,61.318 +543529,24.476,61.917 +543530,26.812,61.754 +543531,29.255,61.582 +543532,31.821,61.4 +543533,23.184,61.886 +543534,25.509,61.76 +543535,27.938,61.626 +543536,30.487,61.483 +543537,21.894,61.855 +543538,24.207,61.767 +543539,26.62,61.671 +543540,29.151,61.566 +543541,20.605,61.824 +543542,22.905,61.773 +543543,25.302,61.715 +543544,27.813,61.648 +543545,19.319,61.793 +543546,21.604,61.78 +543547,23.983,61.76 +543548,26.473,61.731 +543549,18.034,61.762 +543550,20.303,61.787 +543551,22.664,61.804 +543552,25.131,61.813 +543553,16.751,61.731 +543554,19.003,61.793 +543555,21.344,61.849 +543556,23.788,61.896 +543557,15.47,61.7 +543558,17.703,61.8 +543559,20.023,61.893 +543560,22.442,61.978 +543561,14.19,61.669 +543562,16.404,61.806 +543563,18.702,61.937 +543564,21.095,62.06 +543565,12.912,61.639 +543566,15.106,61.813 +543567,17.38,61.981 +543568,19.747,62.142 +543569,11.636,61.608 +543570,13.808,61.82 +543571,16.058,62.025 +543572,18.396,62.223 +543573,10.361,61.578 +543574,12.511,61.827 +543575,14.734,62.07 +543576,17.044,62.305 +543577,9.0884,61.547 +543578,11.214,61.833 +543579,13.411,62.113 +543580,15.69,62.386 +543581,7.8172,61.517 +543582,9.9176,61.84 +543583,12.087,62.157 +543584,14.334,62.467 +543585,6.5476,61.487 +543586,8.6218,61.847 +543587,10.762,62.201 +543588,12.977,62.547 +543589,5.2797,61.458 +543590,7.3265,61.854 +543591,9.4364,62.245 +543592,11.619,62.627 +543593,4.0133,61.429 +543594,6.0318,61.861 +543595,8.1105,62.288 +543596,10.258,62.707 +543597,2.7486,61.4 +543598,4.7375,61.869 +543599,6.7841,62.331 +543600,8.8966,62.786 +543601,1.4854,61.372 +543602,3.4438,61.876 +543603,5.4571,62.374 +543604,7.5333,62.865 +543605,0.22382,61.344 +543606,2.1505,61.884 +543607,4.1296,62.417 +543608,6.1686,62.943 +543609,358.96,61.316 +543610,0.85767,61.891 +543611,2.8016,62.46 +543612,4.8025,63.021 +543613,357.71,61.289 +543614,359.57,61.899 +543615,1.4731,62.503 +543616,3.435,63.098 +543617,356.45,61.262 +543618,358.27,61.907 +543619,0.14409,62.545 +543620,2.0662,63.175 +543621,355.19,61.236 +543622,356.98,61.915 +543623,358.81,62.587 +543624,0.69604,63.251 +543625,353.94,61.211 +543626,355.69,61.924 +543627,357.48,62.629 +543628,359.32,63.326 +543629,352.69,61.186 +543630,354.4,61.932 +543631,356.15,62.671 +543632,357.95,63.401 +543633,351.43,61.161 +543634,353.11,61.941 +543635,354.82,62.713 +543636,356.58,63.475 +543637,350.18,61.138 +543638,351.82,61.95 +543639,353.49,62.754 +543640,355.2,63.548 +543641,348.94,61.115 +543642,350.53,61.959 +543643,352.16,62.795 +543644,353.83,63.621 +543645,347.69,61.092 +543646,349.24,61.968 +543647,350.83,62.836 +543648,352.45,63.693 +543649,346.44,61.071 +543650,347.95,61.978 +543651,349.5,62.876 +543652,351.07,63.764 +543653,345.2,61.05 +543654,346.67,61.988 +543655,348.16,62.917 +543656,349.69,63.835 +543657,343.95,61.029 +543658,345.38,61.998 +543659,346.83,62.957 +543660,348.31,63.904 +543661,342.71,61.01 +543662,344.09,62.008 +543663,345.5,62.996 +543664,346.93,63.973 +543665,341.47,60.991 +543666,342.8,62.019 +543667,344.16,63.036 +543668,345.55,64.041 +543669,340.23,60.974 +543670,341.52,62.03 +543671,342.83,63.075 +543672,344.16,64.108 +543673,338.99,60.957 +543674,340.23,62.041 +543675,341.49,63.114 +543676,342.78,64.174 +543677,337.75,60.941 +543678,338.94,62.052 +543679,340.16,63.152 +543680,341.4,64.239 +543681,336.52,60.926 +543682,337.66,62.064 +543683,338.82,63.19 +543684,340.01,64.304 +543685,335.28,60.911 +543686,336.37,62.076 +543687,337.49,63.228 +543688,338.62,64.367 +543689,334.04,60.898 +543690,335.09,62.088 +543691,336.15,63.266 +543692,337.24,64.429 +543693,332.81,60.886 +543694,333.8,62.101 +543695,334.81,63.303 +543696,335.85,64.49 +543697,331.58,60.875 +543698,332.52,62.114 +543699,333.48,63.34 +543700,334.46,64.551 +543701,330.34,60.864 +543702,331.23,62.127 +543703,332.14,63.376 +543704,333.07,64.61 +543705,329.11,60.855 +543706,329.95,62.141 +543707,330.8,63.412 +543708,331.68,64.668 +543709,327.88,60.847 +543710,328.66,62.155 +543711,329.47,63.448 +543712,330.29,64.725 +543713,326.65,60.839 +543714,327.38,62.169 +543715,328.13,63.483 +543716,328.9,64.781 +543717,325.42,60.833 +543718,326.09,62.183 +543719,326.79,63.518 +543720,327.51,64.836 +543721,324.19,60.828 +543722,324.81,62.198 +543723,325.45,63.553 +543724,326.12,64.89 +543725,322.96,60.824 +543726,323.53,62.214 +543727,324.12,63.587 +543728,324.73,64.943 +543729,321.73,60.822 +543730,322.24,62.229 +543731,322.78,63.621 +543732,323.34,64.994 +543733,320.51,60.82 +543734,320.96,62.246 +543735,321.44,63.654 +543736,321.94,65.045 +543737,319.28,60.819 +543738,319.68,62.262 +543739,320.1,63.687 +543740,320.55,65.094 +543741,318.05,60.82 +543742,318.39,62.279 +543743,318.76,63.72 +543744,319.16,65.142 +543745,316.83,60.822 +543746,317.11,62.296 +543747,317.42,63.752 +543748,317.77,65.189 +543749,315.6,60.825 +543750,315.83,62.314 +543751,316.09,63.784 +543752,316.37,65.235 +543753,314.38,60.829 +543754,314.54,62.332 +543755,314.75,63.815 +543756,314.98,65.279 +543757,313.15,60.835 +543758,313.26,62.35 +543759,313.41,63.846 +543760,313.59,65.323 +543761,311.92,60.841 +543762,311.98,62.369 +543763,312.07,63.877 +543764,312.2,65.365 +543765,310.7,60.849 +543766,310.7,62.388 +543767,310.73,63.907 +543768,310.8,65.406 +543769,309.47,60.858 +543770,309.41,62.407 +543771,309.39,63.937 +543772,309.41,65.445 +543773,308.25,60.869 +543774,308.13,62.427 +543775,308.05,63.966 +543776,308.02,65.483 +543777,307.02,60.88 +543778,306.85,62.448 +543779,306.71,63.995 +543780,306.62,65.521 +543781,305.8,60.893 +543782,305.56,62.468 +543783,305.38,64.023 +543784,305.23,65.556 +543785,304.57,60.908 +543786,304.28,62.49 +543787,304.04,64.051 +543788,303.84,65.591 +543789,303.35,60.923 +543790,303,62.511 +543791,302.7,64.079 +543792,302.45,65.624 +543793,302.12,60.94 +543794,301.71,62.533 +543795,301.36,64.106 +543796,301.06,65.656 +543797,300.9,60.958 +543798,300.43,62.556 +543799,300.02,64.132 +543800,299.67,65.687 +543801,299.67,60.977 +543802,299.15,62.578 +543803,298.68,64.159 +543804,298.28,65.717 +543805,298.44,60.998 +543806,297.86,62.602 +543807,297.35,64.184 +543808,296.88,65.745 +543809,297.22,61.02 +543810,296.58,62.625 +543811,296.01,64.21 +543812,295.49,65.772 +543813,295.99,61.043 +543814,295.29,62.649 +543815,294.67,64.235 +543816,294.11,65.797 +543817,294.76,61.067 +543818,294.01,62.674 +543819,293.33,64.259 +543820,292.72,65.822 +543821,293.53,61.093 +543822,292.73,62.699 +543823,291.99,64.283 +543824,291.33,65.845 +543825,292.3,61.12 +543826,291.44,62.724 +543827,290.66,64.307 +543828,289.94,65.867 +543829,291.07,61.148 +543830,290.16,62.75 +543831,289.32,64.33 +543832,288.55,65.887 +543833,289.84,61.178 +543834,288.87,62.776 +543835,287.98,64.352 +543836,287.17,65.907 +543837,288.61,61.209 +543838,287.58,62.803 +543839,286.64,64.375 +543840,285.78,65.925 +543841,287.38,61.241 +543842,286.3,62.83 +543843,285.31,64.397 +543844,284.4,65.942 +543845,286.15,61.275 +543846,285.01,62.857 +543847,283.97,64.418 +543848,283.01,65.957 +543849,284.91,61.309 +543850,283.73,62.885 +543851,282.64,64.439 +543852,281.63,65.971 +543853,283.68,61.345 +543854,282.44,62.913 +543855,281.3,64.46 +543856,280.24,65.984 +543857,282.44,61.382 +543858,281.15,62.942 +543859,279.96,64.48 +543860,278.86,65.996 +543861,281.21,61.421 +543862,279.87,62.971 +543863,278.63,64.499 +543864,277.48,66.007 +543865,279.97,61.461 +543866,278.58,63 +543867,277.29,64.519 +543868,276.1,66.016 +543869,278.73,61.501 +543870,277.29,63.03 +543871,275.96,64.538 +543872,274.72,66.024 +543873,277.49,61.544 +543874,276,63.06 +543875,274.62,64.556 +543876,273.34,66.031 +543877,276.25,61.587 +543878,274.71,63.09 +543879,273.29,64.574 +543880,271.97,66.037 +543881,275.01,61.631 +543882,273.42,63.121 +543883,271.96,64.592 +543884,270.59,66.042 +543885,273.77,61.677 +543886,272.13,63.153 +543887,270.62,64.609 +543888,269.22,66.045 +543889,272.52,61.724 +543890,270.84,63.184 +543891,269.29,64.626 +543892,267.84,66.047 +543893,271.28,61.772 +543894,269.55,63.216 +543895,267.96,64.642 +543896,266.47,66.049 +543897,270.03,61.821 +543898,268.26,63.249 +543899,266.62,64.658 +543900,265.1,66.048 +543901,268.78,61.871 +543902,266.97,63.282 +543903,265.29,64.674 +543904,263.73,66.047 +543905,267.53,61.923 +543906,265.68,63.315 +543907,263.96,64.689 +543908,262.36,66.045 +543909,266.28,61.975 +543910,264.39,63.348 +543911,262.63,64.704 +543912,260.99,66.042 +543913,265.03,62.029 +543914,263.09,63.382 +543915,261.3,64.719 +543916,259.62,66.037 +543917,263.77,62.083 +543918,261.8,63.416 +543919,259.97,64.733 +543920,258.26,66.032 +543921,262.52,62.139 +543922,260.51,63.451 +543923,258.64,64.747 +543924,256.89,66.025 +543925,261.26,62.196 +543926,259.21,63.486 +543927,257.31,64.76 +543928,255.53,66.018 +543929,260,62.253 +543930,257.92,63.521 +543931,255.98,64.773 +543932,254.17,66.009 +543933,258.74,62.312 +543934,256.62,63.557 +543935,254.65,64.786 +543936,252.81,66 +543937,257.48,62.372 +543938,255.33,63.592 +543939,253.32,64.798 +543940,251.45,65.989 +543941,256.21,62.432 +543942,254.03,63.628 +543943,252,64.81 +543944,250.09,65.978 +543945,254.95,62.494 +543946,252.73,63.665 +543947,250.67,64.822 +543948,248.73,65.965 +543949,253.68,62.556 +543950,251.44,63.702 +543951,249.34,64.834 +543952,247.38,65.952 +543953,252.41,62.619 +543954,250.14,63.739 +543955,248.02,64.845 +543956,246.03,65.938 +543957,251.14,62.684 +543958,248.84,63.776 +543959,246.69,64.856 +543960,244.67,65.922 +543961,249.86,62.749 +543962,247.54,63.813 +543963,245.37,64.866 +543964,243.32,65.906 +543965,248.59,62.814 +543966,246.24,63.851 +543967,244.04,64.876 +543968,241.98,65.89 +543969,247.31,62.881 +543970,244.94,63.889 +543971,242.72,64.886 +543972,240.63,65.872 +543973,246.03,62.948 +543974,243.64,63.928 +543975,241.39,64.896 +543976,239.28,65.853 +543977,244.75,63.016 +543978,242.34,63.966 +543979,240.07,64.905 +543980,237.94,65.834 +543981,243.47,63.085 +543982,241.03,64.005 +543983,238.75,64.915 +543984,236.6,65.814 +543985,242.19,63.155 +543986,239.73,64.044 +543987,237.43,64.923 +543988,235.26,65.794 +543989,240.9,63.225 +543990,238.43,64.083 +543991,236.11,64.932 +543992,233.92,65.772 +543993,239.61,63.295 +543994,237.12,64.122 +543995,234.78,64.941 +543996,232.58,65.75 +543997,238.32,63.367 +543998,235.82,64.162 +543999,233.46,64.949 +544000,231.24,65.727 +544001,237.03,63.439 +544002,234.51,64.202 +544003,232.14,64.957 +544004,229.91,65.704 +544005,235.74,63.511 +544006,233.21,64.242 +544007,230.83,64.965 +544008,228.58,65.68 +544009,234.44,63.584 +544010,231.9,64.282 +544011,229.51,64.972 +544012,227.24,65.656 +544013,233.14,63.658 +544014,230.59,64.322 +544015,228.19,64.98 +544016,225.92,65.631 +544017,231.84,63.732 +544018,229.28,64.363 +544019,226.87,64.987 +544020,224.59,65.605 +544021,230.54,63.806 +544022,227.97,64.403 +544023,225.55,64.994 +544024,223.26,65.579 +544025,229.24,63.881 +544026,226.66,64.444 +544027,224.24,65.001 +544028,221.94,65.552 +544029,227.93,63.957 +544030,225.35,64.485 +544031,222.92,65.008 +544032,220.62,65.525 +544033,226.62,64.032 +544034,224.04,64.526 +544035,221.61,65.014 +544036,219.3,65.498 +544037,225.31,64.108 +544038,222.73,64.567 +544039,220.29,65.021 +544040,217.98,65.47 +544041,224,64.185 +544042,221.42,64.608 +544043,218.98,65.027 +544044,216.66,65.442 +544045,222.69,64.261 +544046,220.11,64.649 +544047,217.67,65.033 +544048,215.34,65.413 +544049,221.37,64.338 +544050,218.79,64.691 +544051,216.35,65.039 +544052,214.03,65.385 +544053,220.05,64.415 +544054,217.48,64.732 +544055,215.04,65.045 +544056,212.72,65.355 +544057,218.73,64.492 +544058,216.17,64.774 +544059,213.73,65.051 +544060,211.41,65.326 +544061,217.41,64.57 +544062,214.85,64.815 +544063,212.42,65.057 +544064,210.1,65.296 +544065,216.09,64.647 +544066,213.53,64.857 +544067,211.11,65.063 +544068,208.79,65.267 +544069,214.76,64.725 +544070,212.22,64.898 +544071,209.8,65.069 +544072,207.49,65.237 +544073,213.43,64.802 +544074,210.9,64.94 +544075,208.49,65.074 +544076,206.18,65.207 +544077,212.11,64.88 +544078,209.58,64.981 +544079,207.18,65.08 +544080,204.88,65.176 +544081,210.77,64.958 +544082,208.26,65.023 +544083,205.87,65.086 +544084,203.58,65.146 +544085,209.44,65.036 +544086,206.95,65.065 +544087,204.57,65.091 +544088,202.29,65.116 +544089,208.11,65.113 +544090,205.63,65.106 +544091,203.26,65.097 +544092,200.99,65.085 +544093,206.77,65.191 +544094,204.31,65.148 +544095,201.95,65.102 +544096,199.7,65.055 +544097,205.43,65.268 +544098,202.98,65.189 +544099,200.65,65.108 +544100,198.4,65.025 +544101,204.09,65.346 +544102,201.66,65.231 +544103,199.34,65.113 +544104,197.11,64.995 +544105,202.75,65.423 +544106,200.34,65.272 +544107,198.04,65.119 +544108,195.82,64.964 +544109,201.4,65.5 +544110,199.02,65.314 +544111,196.73,65.125 +544112,194.53,64.934 +544113,200.06,65.577 +544114,197.7,65.355 +544115,195.43,65.13 +544116,193.25,64.905 +544117,198.71,65.653 +544118,196.37,65.396 +544119,194.13,65.136 +544120,191.96,64.875 +544121,197.36,65.73 +544122,195.05,65.437 +544123,192.83,65.142 +544124,190.68,64.845 +544125,196.01,65.806 +544126,193.72,65.478 +544127,191.52,65.148 +544128,189.4,64.816 +544129,194.65,65.881 +544130,192.4,65.519 +544131,190.22,65.154 +544132,188.12,64.787 +544133,193.3,65.957 +544134,191.07,65.56 +544135,188.92,65.16 +544136,186.84,64.758 +544137,191.94,66.031 +544138,189.74,65.6 +544139,187.62,65.166 +544140,185.57,64.73 +544141,190.59,66.106 +544142,188.42,65.641 +544143,186.32,65.172 +544144,184.29,64.702 +544145,189.23,66.18 +544146,187.09,65.681 +544147,185.02,65.179 +544148,183.02,64.674 +544149,187.87,66.254 +544150,185.76,65.721 +544151,183.72,65.185 +544152,181.75,64.647 +544153,186.5,66.327 +544154,184.43,65.761 +544155,182.43,65.192 +544156,180.48,64.62 +544157,185.14,66.399 +544158,183.1,65.801 +544159,181.13,65.199 +544160,179.21,64.594 +544161,183.77,66.471 +544162,181.77,65.841 +544163,179.83,65.206 +544164,177.95,64.568 +544165,182.41,66.543 +544166,180.44,65.88 +544167,178.53,65.213 +544168,176.68,64.543 +544169,181.04,66.614 +544170,179.11,65.919 +544171,177.24,65.22 +544172,175.42,64.518 +544173,179.67,66.684 +544174,177.78,65.959 +544175,175.94,65.228 +544176,174.15,64.494 +544177,178.3,66.754 +544178,176.45,65.997 +544179,174.65,65.236 +544180,172.89,64.47 +544181,176.93,66.823 +544182,175.11,66.036 +544183,173.35,65.243 +544184,171.63,64.447 +544185,175.55,66.891 +544186,173.78,66.074 +544187,172.06,65.252 +544188,170.38,64.425 +544189,174.18,66.959 +544190,172.45,66.112 +544191,170.76,65.26 +544192,169.12,64.403 +544193,172.8,67.026 +544194,171.11,66.15 +544195,169.47,65.268 +544196,167.86,64.382 +544197,171.43,67.092 +544198,169.78,66.188 +544199,168.18,65.277 +544200,166.61,64.361 +544201,170.05,67.157 +544202,168.44,66.225 +544203,166.88,65.286 +544204,165.36,64.342 +544205,168.67,67.221 +544206,167.11,66.262 +544207,165.59,65.296 +544208,164.11,64.323 +544209,167.29,67.285 +544210,165.77,66.299 +544211,164.3,65.305 +544212,162.85,64.305 +544213,165.91,67.348 +544214,164.44,66.336 +544215,163.01,65.315 +544216,161.61,64.288 +544217,164.53,67.41 +544218,163.1,66.372 +544219,161.71,65.325 +544220,160.36,64.271 +544221,163.14,67.471 +544222,161.77,66.408 +544223,160.42,65.335 +544224,159.11,64.256 +544225,161.76,67.531 +544226,160.43,66.443 +544227,159.13,65.346 +544228,157.86,64.241 +544229,160.37,67.591 +544230,159.09,66.478 +544231,157.84,65.357 +544232,156.62,64.227 +544233,158.99,67.649 +544234,157.75,66.513 +544235,156.55,65.368 +544236,155.38,64.215 +544237,157.6,67.706 +544238,156.42,66.548 +544239,155.26,65.38 +544240,154.13,64.203 +544241,156.22,67.763 +544242,155.08,66.582 +544243,153.97,65.392 +544244,152.89,64.192 +544245,154.83,67.818 +544246,153.74,66.616 +544247,152.68,65.404 +544248,151.65,64.182 +544249,153.44,67.873 +544250,152.4,66.65 +544251,151.39,65.416 +544252,150.41,64.173 +544253,152.05,67.926 +544254,151.06,66.683 +544255,150.1,65.429 +544256,149.17,64.165 +544257,150.66,67.978 +544258,149.72,66.716 +544259,148.82,65.442 +544260,147.93,64.158 +544261,149.27,68.03 +544262,148.39,66.749 +544263,147.53,65.456 +544264,146.69,64.152 +544265,147.88,68.08 +544266,147.05,66.781 +544267,146.24,65.469 +544268,145.46,64.147 +544269,146.49,68.129 +544270,145.71,66.813 +544271,144.95,65.484 +544272,144.22,64.143 +544273,145.1,68.177 +544274,144.37,66.844 +544275,143.66,65.498 +544276,142.98,64.14 +544277,143.7,68.224 +544278,143.03,66.875 +544279,142.38,65.513 +544280,141.75,64.139 +544281,142.31,68.27 +544282,141.69,66.906 +544283,141.09,65.528 +544284,140.51,64.138 +544285,140.92,68.315 +544286,140.35,66.936 +544287,139.8,65.544 +544288,139.28,64.139 +544289,139.53,68.358 +544290,139.01,66.966 +544291,138.51,65.56 +544292,138.05,64.141 +544293,138.13,68.401 +544294,137.67,66.996 +544295,137.23,65.576 +544296,136.81,64.144 +544297,136.74,68.442 +544298,136.32,67.025 +544299,135.94,65.593 +544300,135.58,64.148 +544301,135.35,68.482 +544302,134.98,67.054 +544303,134.65,65.61 +544304,134.35,64.153 +544305,133.95,68.521 +544306,133.64,67.082 +544307,133.36,65.628 +544308,133.12,64.16 +544309,132.56,68.559 +544310,132.3,67.11 +544311,132.08,65.645 +544312,131.88,64.167 +544313,131.16,68.596 +544314,130.96,67.137 +544315,130.79,65.664 +544316,130.65,64.176 +544317,129.77,68.631 +544318,129.62,67.164 +544319,129.5,65.682 +544320,129.42,64.186 +544321,128.38,68.665 +544322,128.28,67.191 +544323,128.22,65.701 +544324,128.19,64.197 +544325,126.98,68.698 +544326,126.94,67.217 +544327,126.93,65.721 +544328,126.96,64.21 +544329,125.59,68.73 +544330,125.6,67.243 +544331,125.64,65.741 +544332,125.73,64.224 +544333,124.19,68.761 +544334,124.26,67.269 +544335,124.36,65.761 +544336,124.5,64.239 +544337,122.8,68.79 +544338,122.91,67.294 +544339,123.07,65.782 +544340,123.26,64.255 +544341,121.41,68.818 +544342,121.57,67.318 +544343,121.78,65.803 +544344,122.03,64.272 +544345,120.01,68.845 +544346,120.23,67.343 +544347,120.49,65.824 +544348,120.8,64.291 +544349,118.62,68.871 +544350,118.89,67.366 +544351,119.21,65.846 +544352,119.57,64.311 +544353,117.23,68.895 +544354,117.55,67.39 +544355,117.92,65.868 +544356,118.34,64.332 +544357,115.84,68.919 +544358,116.21,67.413 +544359,116.63,65.891 +544360,117.11,64.354 +544361,114.44,68.941 +544362,114.87,67.435 +544363,115.35,65.914 +544364,115.87,64.378 +544365,113.05,68.961 +544366,113.53,67.457 +544367,114.06,65.937 +544368,114.64,64.403 +544369,111.66,68.981 +544370,112.19,67.479 +544371,112.77,65.961 +544372,113.41,64.429 +544373,110.27,68.999 +544374,110.85,67.5 +544375,111.48,65.986 +544376,112.17,64.456 +544377,108.88,69.017 +544378,109.51,67.521 +544379,110.19,66.01 +544380,110.94,64.485 +544381,107.49,69.033 +544382,108.17,67.542 +544383,108.91,66.035 +544384,109.7,64.515 +544385,106.1,69.047 +544386,106.83,67.562 +544387,107.62,66.061 +544388,108.47,64.546 +544389,104.72,69.061 +544390,105.49,67.581 +544391,106.33,66.087 +544392,107.23,64.578 +544393,103.33,69.073 +544394,104.15,67.601 +544395,105.04,66.113 +544396,106,64.611 +544397,101.94,69.084 +544398,102.81,67.619 +544399,103.75,66.14 +544400,104.76,64.646 +544401,100.56,69.094 +544402,101.47,67.638 +544403,102.46,66.167 +544404,103.52,64.682 +544405,99.17,69.103 +544406,100.13,67.656 +544407,101.17,66.194 +544408,102.28,64.719 +544409,97.786,69.111 +544410,98.796,67.673 +544411,99.88,66.222 +544412,101.04,64.757 +544413,96.402,69.117 +544414,97.458,67.691 +544415,98.589,66.25 +544416,99.802,64.797 +544417,95.019,69.123 +544418,96.121,67.707 +544419,97.298,66.279 +544420,98.56,64.837 +544421,93.638,69.127 +544422,94.783,67.724 +544423,96.007,66.308 +544424,97.318,64.879 +544425,92.257,69.13 +544426,93.446,67.74 +544427,94.716,66.337 +544428,96.074,64.922 +544429,90.877,69.132 +544430,92.109,67.755 +544431,93.424,66.367 +544432,94.83,64.966 +544433,89.498,69.132 +544434,90.773,67.771 +544435,92.132,66.397 +544436,93.584,65.011 +544437,88.12,69.132 +544438,89.436,67.786 +544439,90.839,66.427 +544440,92.338,65.058 +544441,86.743,69.131 +544442,88.101,67.8 +544443,89.546,66.458 +544444,91.09,65.105 +544445,85.367,69.128 +544446,86.765,67.814 +544447,88.253,66.489 +544448,89.841,65.154 +544449,83.992,69.125 +544450,85.43,67.828 +544451,86.959,66.52 +544452,88.59,65.203 +544453,82.619,69.12 +544454,84.095,67.842 +544455,85.665,66.552 +544456,87.339,65.254 +544457,81.246,69.115 +544458,82.761,67.855 +544459,84.37,66.584 +544460,86.086,65.305 +544461,79.875,69.108 +544462,81.427,67.867 +544463,83.075,66.617 +544464,84.832,65.358 +544465,78.505,69.1 +544466,80.093,67.88 +544467,81.78,66.65 +544468,83.576,65.411 +544469,77.136,69.092 +544470,78.76,67.892 +544471,80.484,66.683 +544472,82.319,65.466 +544473,75.768,69.082 +544474,77.427,67.904 +544475,79.187,66.716 +544476,81.061,65.522 +544477,74.402,69.072 +544478,76.095,67.915 +544479,77.89,66.75 +544480,79.801,65.578 +544481,73.037,69.06 +544482,74.763,67.926 +544483,76.593,66.784 +544484,78.54,65.636 +544485,71.673,69.048 +544486,73.432,67.937 +544487,75.295,66.818 +544488,77.277,65.694 +544489,70.311,69.035 +544490,72.101,67.947 +544491,73.997,66.853 +544492,76.013,65.753 +544493,68.95,69.02 +544494,70.77,67.957 +544495,72.698,66.888 +544496,74.747,65.813 +544497,67.59,69.005 +544498,69.44,67.967 +544499,71.398,66.923 +544500,73.479,65.874 +544501,66.232,68.99 +544502,68.111,67.977 +544503,70.098,66.959 +544504,72.21,65.936 +544505,64.875,68.973 +544506,66.781,67.986 +544507,68.798,66.994 +544508,70.939,65.998 +544509,63.52,68.955 +544510,65.453,67.995 +544511,67.497,67.03 +544512,69.667,66.062 +544513,62.166,68.937 +544514,64.125,68.004 +544515,66.195,67.066 +544516,68.393,66.126 +544517,60.813,68.918 +544518,62.797,68.013 +544519,64.893,67.103 +544520,67.117,66.191 +544521,59.462,68.899 +544522,61.47,68.021 +544523,63.59,67.14 +544524,65.839,66.256 +544525,58.113,68.878 +544526,60.144,68.029 +544527,62.287,67.177 +544528,64.56,66.322 +544529,56.765,68.857 +544530,58.817,68.037 +544531,60.983,67.214 +544532,63.278,66.389 +544533,55.419,68.835 +544534,57.492,68.044 +544535,59.679,67.251 +544536,61.995,66.457 +544537,54.074,68.813 +544538,56.167,68.052 +544539,58.373,67.289 +544540,60.711,66.525 +544541,52.731,68.79 +544542,54.842,68.059 +544543,57.068,67.326 +544544,59.424,66.593 +544545,51.39,68.766 +544546,53.519,68.066 +544547,55.762,67.364 +544548,58.136,66.663 +544549,50.05,68.742 +544550,52.195,68.072 +544551,54.455,67.402 +544552,56.845,66.732 +544553,48.711,68.717 +544554,50.872,68.079 +544555,53.147,67.441 +544556,55.553,66.803 +544557,47.375,68.692 +544558,49.55,68.085 +544559,51.839,67.479 +544560,54.259,66.874 +544561,46.04,68.666 +544562,48.228,68.092 +544563,50.53,67.517 +544564,52.963,66.945 +544565,44.706,68.64 +544566,46.907,68.098 +544567,49.221,67.556 +544568,51.665,67.016 +544569,43.374,68.613 +544570,45.587,68.104 +544571,47.911,67.595 +544572,50.366,67.088 +544573,42.044,68.586 +544574,44.267,68.109 +544575,46.601,67.634 +544576,49.064,67.161 +544577,40.716,68.559 +544578,42.947,68.115 +544579,45.29,67.673 +544580,47.761,67.233 +544581,39.389,68.531 +544582,41.628,68.12 +544583,43.978,67.712 +544584,46.455,67.306 +544585,38.064,68.503 +544586,40.31,68.126 +544587,42.665,67.751 +544588,45.148,67.38 +544589,36.741,68.474 +544590,38.992,68.131 +544591,41.352,67.791 +544592,43.839,67.453 +544593,35.419,68.445 +544594,37.675,68.136 +544595,40.039,67.83 +544596,42.527,67.527 +544597,34.099,68.416 +544598,36.358,68.142 +544599,38.724,67.87 +544600,41.214,67.601 +544601,32.781,68.387 +544602,35.042,68.147 +544603,37.409,67.909 +544604,39.899,67.675 +544605,31.465,68.357 +544606,33.727,68.152 +544607,36.094,67.949 +544608,38.582,67.75 +544609,30.15,68.328 +544610,32.412,68.156 +544611,34.778,67.988 +544612,37.263,67.824 +544613,28.837,68.298 +544614,31.098,68.161 +544615,33.461,68.028 +544616,35.943,67.899 +544617,27.525,68.268 +544618,29.784,68.166 +544619,32.143,68.068 +544620,34.62,67.973 +544621,26.216,68.238 +544622,28.471,68.171 +544623,30.825,68.108 +544624,33.295,68.048 +544625,24.908,68.208 +544626,27.158,68.176 +544627,29.507,68.147 +544628,31.969,68.123 +544629,23.602,68.178 +544630,25.846,68.18 +544631,28.187,68.187 +544632,30.641,68.197 +544633,22.297,68.148 +544634,24.535,68.185 +544635,26.868,68.227 +544636,29.311,68.272 +544637,20.994,68.118 +544638,23.224,68.19 +544639,25.547,68.266 +544640,27.979,68.346 +544641,19.693,68.088 +544642,21.914,68.195 +544643,24.226,68.306 +544644,26.645,68.421 +544645,18.394,68.058 +544646,20.604,68.2 +544647,22.904,68.345 +544648,25.309,68.495 +544649,17.096,68.028 +544650,19.295,68.204 +544651,21.582,68.385 +544652,23.972,68.569 +544653,15.8,67.998 +544654,17.986,68.209 +544655,20.259,68.424 +544656,22.632,68.643 +544657,14.505,67.969 +544658,16.678,68.214 +544659,18.935,68.464 +544660,21.291,68.717 +544661,13.213,67.939 +544662,15.37,68.219 +544663,17.611,68.503 +544664,19.948,68.79 +544665,11.922,67.91 +544666,14.063,68.224 +544667,16.286,68.542 +544668,18.604,68.863 +544669,10.632,67.881 +544670,12.757,68.23 +544671,14.961,68.581 +544672,17.258,68.936 +544673,9.3445,67.853 +544674,11.451,68.235 +544675,13.635,68.62 +544676,15.91,69.009 +544677,8.0583,67.825 +544678,10.146,68.24 +544679,12.309,68.659 +544680,14.56,69.081 +544681,6.7737,67.797 +544682,8.8409,68.246 +544683,10.982,68.698 +544684,13.208,69.153 +544685,5.4908,67.769 +544686,7.5366,68.251 +544687,9.6543,68.737 +544688,11.855,69.224 +544689,4.2094,67.742 +544690,6.2328,68.257 +544691,8.3262,68.775 +544692,10.501,69.295 +544693,2.9295,67.715 +544694,4.9295,68.263 +544695,6.9976,68.813 +544696,9.1446,69.366 +544697,1.6513,67.689 +544698,3.6267,68.269 +544699,5.6684,68.852 +544700,7.7869,69.436 +544701,0.37453,67.663 +544702,2.3244,68.275 +544703,4.3387,68.889 +544704,6.4275,69.505 +544705,359.1,67.637 +544706,1.0226,68.281 +544707,3.0085,68.927 +544708,5.0667,69.574 +544709,357.83,67.612 +544710,359.72,68.288 +544711,1.6777,68.965 +544712,3.7044,69.643 +544713,356.55,67.588 +544714,358.42,68.294 +544715,0.3465,69.002 +544716,2.3406,69.711 +544717,355.28,67.564 +544718,357.12,68.301 +544719,359.01,69.04 +544720,0.97535,69.778 +544721,354.01,67.541 +544722,355.82,68.308 +544723,357.68,69.077 +544724,359.61,69.845 +544725,352.75,67.518 +544726,354.52,68.316 +544727,356.35,69.113 +544728,358.24,69.911 +544729,351.48,67.496 +544730,353.22,68.323 +544731,355.02,69.15 +544732,356.87,69.976 +544733,350.21,67.475 +544734,351.92,68.331 +544735,353.68,69.186 +544736,355.5,70.041 +544737,348.95,67.455 +544738,350.62,68.339 +544739,352.35,69.222 +544740,354.13,70.105 +544741,347.69,67.435 +544742,349.33,68.347 +544743,351.01,69.258 +544744,352.76,70.168 +544745,346.43,67.416 +544746,348.03,68.355 +544747,349.68,69.294 +544748,351.38,70.23 +544749,345.17,67.397 +544750,346.73,68.364 +544751,348.34,69.329 +544752,350.01,70.292 +544753,343.91,67.38 +544754,345.44,68.373 +544755,347.01,69.364 +544756,348.63,70.353 +544757,342.65,67.363 +544758,344.14,68.382 +544759,345.67,69.399 +544760,347.25,70.413 +544761,341.39,67.347 +544762,342.84,68.391 +544763,344.34,69.433 +544764,345.87,70.472 +544765,340.14,67.332 +544766,341.55,68.401 +544767,343,69.468 +544768,344.49,70.53 +544769,338.88,67.318 +544770,340.25,68.411 +544771,341.66,69.502 +544772,343.11,70.587 +544773,337.63,67.304 +544774,338.96,68.421 +544775,340.32,69.535 +544776,341.73,70.644 +544777,336.38,67.292 +544778,337.66,68.432 +544779,338.99,69.568 +544780,340.35,70.7 +544781,335.13,67.28 +544782,336.37,68.443 +544783,337.65,69.601 +544784,338.96,70.754 +544785,333.88,67.27 +544786,335.08,68.454 +544787,336.31,69.634 +544788,337.58,70.808 +544789,332.63,67.26 +544790,333.78,68.466 +544791,334.97,69.666 +544792,336.19,70.861 +544793,331.38,67.251 +544794,332.49,68.477 +544795,333.63,69.698 +544796,334.81,70.913 +544797,330.14,67.244 +544798,331.2,68.49 +544799,332.29,69.73 +544800,333.42,70.963 +544801,328.89,67.237 +544802,329.9,68.502 +544803,330.95,69.761 +544804,332.03,71.013 +544805,327.64,67.232 +544806,328.61,68.515 +544807,329.61,69.792 +544808,330.64,71.062 +544809,326.4,67.227 +544810,327.32,68.528 +544811,328.27,69.823 +544812,329.25,71.11 +544813,325.16,67.223 +544814,326.03,68.542 +544815,326.93,69.853 +544816,327.86,71.156 +544817,323.91,67.221 +544818,324.74,68.556 +544819,325.59,69.883 +544820,326.47,71.202 +544821,322.67,67.22 +544822,323.44,68.57 +544823,324.25,69.913 +544824,325.08,71.247 +544825,321.43,67.219 +544826,322.15,68.585 +544827,322.91,69.942 +544828,323.69,71.29 +544829,320.19,67.22 +544830,320.86,68.6 +544831,321.57,69.971 +544832,322.3,71.332 +544833,318.95,67.222 +544834,319.57,68.615 +544835,320.22,69.999 +544836,320.91,71.374 +544837,317.71,67.226 +544838,318.28,68.631 +544839,318.88,70.027 +544840,319.51,71.414 +544841,316.47,67.23 +544842,316.99,68.647 +544843,317.54,70.055 +544844,318.12,71.453 +544845,315.23,67.235 +544846,315.7,68.663 +544847,316.2,70.082 +544848,316.73,71.491 +544849,313.99,67.242 +544850,314.41,68.68 +544851,314.86,70.109 +544852,315.33,71.527 +544853,312.75,67.25 +544854,313.12,68.697 +544855,313.51,70.135 +544856,313.94,71.563 +544857,311.51,67.259 +544858,311.83,68.715 +544859,312.17,70.162 +544860,312.55,71.597 +544861,310.28,67.269 +544862,310.54,68.733 +544863,310.83,70.187 +544864,311.15,71.631 +544865,309.04,67.28 +544866,309.25,68.751 +544867,309.49,70.213 +544868,309.76,71.663 +544869,307.8,67.293 +544870,307.96,68.77 +544871,308.14,70.238 +544872,308.36,71.694 +544873,306.57,67.306 +544874,306.67,68.789 +544875,306.8,70.262 +544876,306.97,71.724 +544877,305.33,67.321 +544878,305.38,68.809 +544879,305.46,70.286 +544880,305.57,71.752 +544881,304.09,67.338 +544882,304.09,68.829 +544883,304.12,70.31 +544884,304.18,71.78 +544885,302.86,67.355 +544886,302.8,68.849 +544887,302.77,70.333 +544888,302.78,71.806 +544889,301.62,67.374 +544890,301.51,68.87 +544891,301.43,70.356 +544892,301.39,71.831 +544893,300.38,67.393 +544894,300.22,68.891 +544895,300.09,70.379 +544896,300,71.855 +544897,299.15,67.415 +544898,298.93,68.913 +544899,298.75,70.401 +544900,298.6,71.877 +544901,297.91,67.437 +544902,297.64,68.935 +544903,297.4,70.423 +544904,297.21,71.899 +544905,296.67,67.46 +544906,296.35,68.957 +544907,296.06,70.444 +544908,295.82,71.919 +544909,295.43,67.485 +544910,295.06,68.98 +544911,294.72,70.465 +544912,294.42,71.938 +544913,294.2,67.511 +544914,293.76,69.003 +544915,293.38,70.485 +544916,293.03,71.956 +544917,292.96,67.538 +544918,292.47,69.027 +544919,292.03,70.505 +544920,291.64,71.973 +544921,291.72,67.567 +544922,291.18,69.051 +544923,290.69,70.525 +544924,290.25,71.988 +544925,290.48,67.596 +544926,289.89,69.075 +544927,289.35,70.544 +544928,288.85,72.003 +544929,289.24,67.627 +544930,288.6,69.1 +544931,288.01,70.563 +544932,287.46,72.016 +544933,288,67.659 +544934,287.31,69.125 +544935,286.67,70.582 +544936,286.07,72.028 +544937,286.76,67.692 +544938,286.02,69.151 +544939,285.33,70.6 +544940,284.68,72.039 +544941,285.52,67.727 +544942,284.73,69.176 +544943,283.98,70.618 +544944,283.29,72.049 +544945,284.28,67.762 +544946,283.43,69.203 +544947,282.64,70.635 +544948,281.9,72.057 +544949,283.04,67.799 +544950,282.14,69.23 +544951,281.3,70.652 +544952,280.52,72.065 +544953,281.8,67.837 +544954,280.85,69.257 +544955,279.96,70.669 +544956,279.13,72.071 +544957,280.56,67.876 +544958,279.56,69.284 +544959,278.62,70.685 +544960,277.74,72.076 +544961,279.31,67.916 +544962,278.26,69.312 +544963,277.28,70.7 +544964,276.36,72.08 +544965,278.07,67.957 +544966,276.97,69.34 +544967,275.94,70.716 +544968,274.97,72.083 +544969,276.82,68 +544970,275.68,69.369 +544971,274.6,70.731 +544972,273.59,72.085 +544973,275.58,68.043 +544974,274.38,69.398 +544975,273.26,70.746 +544976,272.2,72.086 +544977,274.33,68.088 +544978,273.09,69.427 +544979,271.92,70.76 +544980,270.82,72.085 +544981,273.08,68.134 +544982,271.8,69.457 +544983,270.58,70.774 +544984,269.44,72.084 +544985,271.83,68.181 +544986,270.5,69.487 +544987,269.24,70.788 +544988,268.06,72.081 +544989,270.58,68.229 +544990,269.21,69.517 +544991,267.91,70.801 +544992,266.68,72.078 +544993,269.33,68.278 +544994,267.91,69.548 +544995,266.57,70.814 +544996,265.3,72.073 +544997,268.08,68.327 +544998,266.61,69.579 +544999,265.23,70.826 +545000,263.92,72.068 +545001,266.83,68.378 +545002,265.32,69.61 +545003,263.89,70.839 +545004,262.54,72.061 +545005,265.57,68.43 +545006,264.02,69.642 +545007,262.56,70.85 +545008,261.17,72.054 +545009,264.32,68.483 +545010,262.72,69.674 +545011,261.22,70.862 +545012,259.79,72.045 +545013,263.06,68.537 +545014,261.43,69.706 +545015,259.88,70.873 +545016,258.42,72.036 +545017,261.8,68.592 +545018,260.13,69.739 +545019,258.55,70.884 +545020,257.05,72.026 +545021,260.54,68.648 +545022,258.83,69.772 +545023,257.21,70.895 +545024,255.67,72.014 +545025,259.28,68.705 +545026,257.53,69.805 +545027,255.88,70.905 +545028,254.3,72.002 +545029,258.02,68.762 +545030,256.23,69.839 +545031,254.54,70.915 +545032,252.94,71.989 +545033,256.75,68.821 +545034,254.93,69.873 +545035,253.21,70.925 +545036,251.57,71.975 +545037,255.49,68.88 +545038,253.63,69.907 +545039,251.87,70.934 +545040,250.2,71.96 +545041,254.22,68.94 +545042,252.33,69.941 +545043,250.54,70.944 +545044,248.84,71.945 +545045,252.96,69.001 +545046,251.03,69.976 +545047,249.21,70.952 +545048,247.47,71.928 +545049,251.69,69.063 +545050,249.73,70.011 +545051,247.88,70.961 +545052,246.11,71.911 +545053,250.42,69.125 +545054,248.43,70.046 +545055,246.54,70.97 +545056,244.75,71.893 +545057,249.14,69.188 +545058,247.13,70.082 +545059,245.21,70.978 +545060,243.39,71.874 +545061,247.87,69.252 +545062,245.82,70.117 +545063,243.88,70.986 +545064,242.03,71.855 +545065,246.59,69.317 +545066,244.52,70.153 +545067,242.55,70.993 +545068,240.68,71.835 +545069,245.32,69.382 +545070,243.21,70.189 +545071,241.22,71.001 +545072,239.32,71.814 +545073,244.04,69.448 +545074,241.91,70.226 +545075,239.89,71.008 +545076,237.97,71.793 +545077,242.76,69.514 +545078,240.61,70.262 +545079,238.56,71.015 +545080,236.61,71.77 +545081,241.48,69.581 +545082,239.3,70.299 +545083,237.23,71.022 +545084,235.26,71.748 +545085,240.19,69.649 +545086,237.99,70.336 +545087,235.9,71.028 +545088,233.91,71.724 +545089,238.91,69.717 +545090,236.69,70.373 +545091,234.58,71.035 +545092,232.56,71.701 +545093,237.62,69.786 +545094,235.38,70.41 +545095,233.25,71.041 +545096,231.22,71.676 +545097,236.33,69.855 +545098,234.07,70.448 +545099,231.92,71.047 +545100,229.87,71.651 +545101,235.04,69.925 +545102,232.76,70.485 +545103,230.6,71.053 +545104,228.53,71.626 +545105,233.75,69.995 +545106,231.45,70.523 +545107,229.27,71.059 +545108,227.19,71.6 +545109,232.45,70.065 +545110,230.14,70.561 +545111,227.95,71.064 +545112,225.85,71.573 +545113,231.16,70.136 +545114,228.83,70.599 +545115,226.62,71.07 +545116,224.51,71.547 +545117,229.86,70.207 +545118,227.52,70.637 +545119,225.3,71.075 +545120,223.17,71.52 +545121,228.56,70.279 +545122,226.21,70.675 +545123,223.97,71.08 +545124,221.84,71.492 +545125,227.26,70.351 +545126,224.9,70.714 +545127,222.65,71.085 +545128,220.5,71.464 +545129,225.95,70.423 +545130,223.59,70.752 +545131,221.33,71.09 +545132,219.17,71.436 +545133,224.65,70.495 +545134,222.27,70.791 +545135,220.01,71.095 +545136,217.84,71.407 +545137,223.34,70.568 +545138,220.96,70.829 +545139,218.69,71.1 +545140,216.51,71.379 +545141,222.03,70.641 +545142,219.64,70.868 +545143,217.37,71.105 +545144,215.18,71.35 +545145,220.72,70.714 +545146,218.33,70.907 +545147,216.05,71.109 +545148,213.86,71.321 +545149,219.41,70.787 +545150,217.01,70.946 +545151,214.73,71.114 +545152,212.54,71.291 +545153,218.1,70.86 +545154,215.7,70.984 +545155,213.41,71.119 +545156,211.21,71.262 +545157,216.78,70.933 +545158,214.38,71.023 +545159,212.09,71.123 +545160,209.89,71.232 +545161,215.46,71.007 +545162,213.06,71.062 +545163,210.77,71.128 +545164,208.57,71.202 +545165,214.14,71.08 +545166,211.74,71.101 +545167,209.45,71.132 +545168,207.26,71.173 +545169,212.82,71.154 +545170,210.43,71.14 +545171,208.14,71.137 +545172,205.94,71.143 +545173,211.5,71.227 +545174,209.11,71.179 +545175,206.82,71.141 +545176,204.63,71.113 +545177,210.17,71.3 +545178,207.79,71.218 +545179,205.51,71.146 +545180,203.31,71.083 +545181,208.84,71.373 +545182,206.47,71.257 +545183,204.19,71.15 +545184,202,71.053 +545185,207.52,71.446 +545186,205.14,71.295 +545187,202.88,71.155 +545188,200.7,71.024 +545189,206.18,71.519 +545190,203.82,71.334 +545191,201.56,71.159 +545192,199.39,70.994 +545193,204.85,71.592 +545194,202.5,71.373 +545195,200.25,71.164 +545196,198.08,70.964 +545197,203.52,71.665 +545198,201.18,71.412 +545199,198.94,71.169 +545200,196.78,70.935 +545201,202.18,71.737 +545202,199.85,71.45 +545203,197.62,71.173 +545204,195.48,70.906 +545205,200.84,71.809 +545206,198.53,71.489 +545207,196.31,71.178 +545208,194.18,70.877 +545209,199.5,71.881 +545210,197.21,71.527 +545211,195,71.183 +545212,192.88,70.848 +545213,198.16,71.953 +545214,195.88,71.565 +545215,193.69,71.188 +545216,191.58,70.82 +545217,196.82,72.024 +545218,194.55,71.604 +545219,192.38,71.193 +545220,190.28,70.792 +545221,195.47,72.095 +545222,193.23,71.642 +545223,191.07,71.198 +545224,188.99,70.764 +545225,194.13,72.165 +545226,191.9,71.68 +545227,189.76,71.204 +545228,187.7,70.736 +545229,192.78,72.235 +545230,190.57,71.718 +545231,188.45,71.209 +545232,186.41,70.709 +545233,191.43,72.305 +545234,189.24,71.755 +545235,187.14,71.215 +545236,185.12,70.682 +545237,190.08,72.374 +545238,187.92,71.793 +545239,185.84,71.22 +545240,183.83,70.656 +545241,188.73,72.442 +545242,186.59,71.83 +545243,184.53,71.226 +545244,182.54,70.63 +545245,187.37,72.511 +545246,185.26,71.868 +545247,183.22,71.232 +545248,181.26,70.605 +545249,186.02,72.578 +545250,183.93,71.905 +545251,181.92,71.238 +545252,179.97,70.58 +545253,184.66,72.645 +545254,182.6,71.942 +545255,180.61,71.245 +545256,178.69,70.555 +545257,183.3,72.712 +545258,181.26,71.978 +545259,179.31,71.251 +545260,177.41,70.532 +545261,181.94,72.778 +545262,179.93,72.015 +545263,178,71.258 +545264,176.13,70.508 +545265,180.58,72.843 +545266,178.6,72.051 +545267,176.7,71.265 +545268,174.86,70.486 +545269,179.21,72.908 +545270,177.27,72.087 +545271,175.39,71.272 +545272,173.58,70.464 +545273,177.85,72.972 +545274,175.93,72.123 +545275,174.09,71.28 +545276,172.3,70.442 +545277,176.48,73.035 +545278,174.6,72.159 +545279,172.79,71.287 +545280,171.03,70.422 +545281,175.11,73.097 +545282,173.27,72.194 +545283,171.49,71.295 +545284,169.76,70.402 +545285,173.74,73.159 +545286,171.93,72.229 +545287,170.18,71.303 +545288,168.49,70.382 +545289,172.37,73.22 +545290,170.6,72.264 +545291,168.88,71.312 +545292,167.22,70.364 +545293,171,73.28 +545294,169.26,72.299 +545295,167.58,71.32 +545296,165.95,70.346 +545297,169.63,73.34 +545298,167.93,72.333 +545299,166.28,71.329 +545300,164.68,70.329 +545301,168.25,73.399 +545302,166.59,72.367 +545303,164.98,71.338 +545304,163.42,70.313 +545305,166.88,73.456 +545306,165.25,72.401 +545307,163.68,71.348 +545308,162.16,70.297 +545309,165.5,73.513 +545310,163.91,72.435 +545311,162.38,71.358 +545312,160.89,70.283 +545313,164.12,73.569 +545314,162.58,72.468 +545315,161.08,71.368 +545316,159.63,70.269 +545317,162.75,73.625 +545318,161.24,72.501 +545319,159.78,71.378 +545320,158.37,70.257 +545321,161.37,73.679 +545322,159.9,72.534 +545323,158.48,71.388 +545324,157.11,70.245 +545325,159.98,73.732 +545326,158.56,72.566 +545327,157.19,71.399 +545328,155.85,70.234 +545329,158.6,73.785 +545330,157.22,72.598 +545331,155.89,71.411 +545332,154.59,70.224 +545333,157.22,73.836 +545334,155.88,72.63 +545335,154.59,71.422 +545336,153.34,70.215 +545337,155.84,73.887 +545338,154.54,72.661 +545339,153.29,71.434 +545340,152.08,70.207 +545341,154.45,73.936 +545342,153.2,72.692 +545343,152,71.446 +545344,150.83,70.2 +545345,153.07,73.985 +545346,151.86,72.723 +545347,150.7,71.459 +545348,149.57,70.194 +545349,151.68,74.032 +545350,150.52,72.753 +545351,149.4,71.472 +545352,148.32,70.189 +545353,150.29,74.079 +545354,149.18,72.783 +545355,148.11,71.485 +545356,147.07,70.185 +545357,148.91,74.124 +545358,147.84,72.813 +545359,146.81,71.499 +545360,145.82,70.182 +545361,147.52,74.168 +545362,146.5,72.842 +545363,145.52,71.513 +545364,144.57,70.18 +545365,146.13,74.212 +545366,145.16,72.871 +545367,144.22,71.527 +545368,143.32,70.18 +545369,144.74,74.254 +545370,143.81,72.9 +545371,142.93,71.542 +545372,142.07,70.18 +545373,143.35,74.295 +545374,142.47,72.928 +545375,141.63,71.557 +545376,140.82,70.182 +545377,141.96,74.335 +545378,141.13,72.956 +545379,140.34,71.572 +545380,139.57,70.184 +545381,140.57,74.374 +545382,139.79,72.984 +545383,139.04,71.588 +545384,138.33,70.188 +545385,139.17,74.412 +545386,138.44,73.011 +545387,137.75,71.604 +545388,137.08,70.193 +545389,137.78,74.449 +545390,137.1,73.038 +545391,136.45,71.621 +545392,135.84,70.199 +545393,136.39,74.484 +545394,135.76,73.064 +545395,135.16,71.638 +545396,134.59,70.206 +545397,135,74.519 +545398,134.42,73.09 +545399,133.87,71.655 +545400,133.35,70.215 +545401,133.6,74.552 +545402,133.07,73.116 +545403,132.57,71.673 +545404,132.1,70.224 +545405,132.21,74.584 +545406,131.73,73.141 +545407,131.28,71.691 +545408,130.86,70.235 +545409,130.82,74.615 +545410,130.38,73.166 +545411,129.98,71.709 +545412,129.61,70.247 +545413,129.42,74.645 +545414,129.04,73.19 +545415,128.69,71.728 +545416,128.37,70.26 +545417,128.03,74.674 +545418,127.7,73.214 +545419,127.4,71.747 +545420,127.13,70.275 +545421,126.63,74.701 +545422,126.35,73.238 +545423,126.1,71.767 +545424,125.89,70.29 +545425,125.24,74.728 +545426,125.01,73.261 +545427,124.81,71.787 +545428,124.64,70.307 +545429,123.84,74.753 +545430,123.67,73.284 +545431,123.52,71.808 +545432,123.4,70.325 +545433,122.45,74.777 +545434,122.32,73.307 +545435,122.22,71.829 +545436,122.16,70.345 +545437,121.06,74.8 +545438,120.98,73.329 +545439,120.93,71.85 +545440,120.92,70.365 +545441,119.66,74.822 +545442,119.63,73.351 +545443,119.64,71.872 +545444,119.68,70.387 +545445,118.27,74.842 +545446,118.29,73.372 +545447,118.34,71.894 +545448,118.43,70.41 +545449,116.87,74.861 +545450,116.94,73.393 +545451,117.05,71.916 +545452,117.19,70.434 +545453,115.48,74.88 +545454,115.6,73.413 +545455,115.76,71.939 +545456,115.95,70.459 +545457,114.08,74.897 +545458,114.26,73.434 +545459,114.46,71.963 +545460,114.71,70.486 +545461,112.69,74.912 +545462,112.91,73.453 +545463,113.17,71.986 +545464,113.46,70.513 +545465,111.3,74.927 +545466,111.57,73.473 +545467,111.88,72.011 +545468,112.22,70.542 +545469,109.9,74.941 +545470,110.22,73.492 +545471,110.58,72.035 +545472,110.98,70.573 +545473,108.51,74.953 +545474,108.88,73.51 +545475,109.29,72.06 +545476,109.74,70.604 +545477,107.12,74.964 +545478,107.54,73.528 +545479,107.99,72.085 +545480,108.49,70.637 +545481,105.73,74.974 +545482,106.19,73.546 +545483,106.7,72.111 +545484,107.25,70.67 +545485,104.34,74.983 +545486,104.85,73.564 +545487,105.41,72.137 +545488,106.01,70.705 +545489,102.95,74.991 +545490,103.51,73.581 +545491,104.11,72.164 +545492,104.76,70.742 +545493,101.55,74.998 +545494,102.16,73.597 +545495,102.82,72.191 +545496,103.52,70.779 +545497,100.16,75.003 +545498,100.82,73.614 +545499,101.52,72.218 +545500,102.27,70.817 +545501,98.775,75.008 +545502,99.479,73.63 +545503,100.23,72.245 +545504,101.02,70.857 +545505,97.387,75.011 +545506,98.136,73.645 +545507,98.932,72.273 +545508,99.777,70.898 +545509,95.999,75.014 +545510,96.794,73.66 +545511,97.637,72.302 +545512,98.53,70.94 +545513,94.611,75.015 +545514,95.452,73.675 +545515,96.341,72.331 +545516,97.282,70.983 +545517,93.225,75.015 +545518,94.11,73.69 +545519,95.045,72.36 +545520,96.033,71.027 +545521,91.839,75.014 +545522,92.768,73.704 +545523,93.749,72.389 +545524,94.783,71.072 +545525,90.454,75.012 +545526,91.427,73.718 +545527,92.452,72.419 +545528,93.533,71.118 +545529,89.069,75.009 +545530,90.086,73.731 +545531,91.155,72.449 +545532,92.282,71.166 +545533,87.686,75.005 +545534,88.745,73.744 +545535,89.858,72.48 +545536,91.03,71.214 +545537,86.303,75 +545538,87.404,73.757 +545539,88.561,72.511 +545540,89.777,71.264 +545541,84.922,74.994 +545542,86.064,73.769 +545543,87.263,72.542 +545544,88.523,71.314 +545545,83.541,74.987 +545546,84.724,73.781 +545547,85.965,72.574 +545548,87.269,71.366 +545549,82.161,74.979 +545550,83.384,73.793 +545551,84.666,72.606 +545552,86.013,71.418 +545553,80.782,74.97 +545554,82.045,73.805 +545555,83.368,72.638 +545556,84.756,71.472 +545557,79.404,74.96 +545558,80.705,73.816 +545559,82.068,72.671 +545560,83.499,71.526 +545561,78.028,74.949 +545562,79.367,73.827 +545563,80.769,72.703 +545564,82.24,71.582 +545565,76.652,74.938 +545566,78.028,73.837 +545567,79.469,72.737 +545568,80.98,71.638 +545569,75.277,74.925 +545570,76.69,73.847 +545571,78.169,72.77 +545572,79.718,71.695 +545573,73.904,74.912 +545574,75.353,73.857 +545575,76.868,72.804 +545576,78.456,71.753 +545577,72.532,74.898 +545578,74.015,73.867 +545579,75.567,72.838 +545580,77.192,71.812 +545581,71.16,74.882 +545582,72.678,73.876 +545583,74.265,72.872 +545584,75.928,71.872 +545585,69.79,74.867 +545586,71.342,73.886 +545587,72.963,72.907 +545588,74.662,71.933 +545589,68.422,74.85 +545590,70.006,73.895 +545591,71.661,72.942 +545592,73.394,71.994 +545593,67.054,74.832 +545594,68.67,73.903 +545595,70.358,72.977 +545596,72.125,72.056 +545597,65.688,74.814 +545598,67.335,73.912 +545599,69.055,73.012 +545600,70.855,72.119 +545601,64.323,74.795 +545602,66,73.92 +545603,67.751,73.048 +545604,69.584,72.183 +545605,62.959,74.776 +545606,64.665,73.928 +545607,66.447,73.084 +545608,68.311,72.247 +545609,61.597,74.755 +545610,63.331,73.935 +545611,65.142,73.12 +545612,67.036,72.312 +545613,60.236,74.735 +545614,61.998,73.943 +545615,63.837,73.156 +545616,65.761,72.378 +545617,58.876,74.713 +545618,60.665,73.95 +545619,62.531,73.193 +545620,64.483,72.445 +545621,57.518,74.691 +545622,59.332,73.957 +545623,61.225,73.23 +545624,63.204,72.511 +545625,56.161,74.668 +545626,58,73.964 +545627,59.918,73.267 +545628,61.924,72.579 +545629,54.806,74.644 +545630,56.668,73.97 +545631,58.61,73.304 +545632,60.642,72.647 +545633,53.452,74.621 +545634,55.337,73.977 +545635,57.303,73.341 +545636,59.359,72.716 +545637,52.099,74.596 +545638,54.006,73.983 +545639,55.994,73.379 +545640,58.074,72.785 +545641,50.748,74.571 +545642,52.676,73.989 +545643,54.685,73.417 +545644,56.787,72.855 +545645,49.399,74.546 +545646,51.346,73.995 +545647,53.376,73.454 +545648,55.499,72.925 +545649,48.05,74.52 +545650,50.017,74.001 +545651,52.066,73.492 +545652,54.209,72.995 +545653,46.704,74.494 +545654,48.688,74.007 +545655,50.756,73.531 +545656,52.917,73.066 +545657,45.359,74.467 +545658,47.36,74.013 +545659,49.444,73.569 +545660,51.624,73.138 +545661,44.015,74.44 +545662,46.032,74.018 +545663,48.133,73.607 +545664,50.329,73.209 +545665,42.673,74.412 +545666,44.704,74.023 +545667,46.821,73.646 +545668,49.032,73.281 +545669,41.333,74.385 +545670,43.378,74.029 +545671,45.508,73.684 +545672,47.734,73.354 +545673,39.994,74.357 +545674,42.051,74.034 +545675,44.194,73.723 +545676,46.434,73.426 +545677,38.656,74.328 +545678,40.726,74.039 +545679,42.881,73.762 +545680,45.132,73.499 +545681,37.321,74.3 +545682,39.401,74.044 +545683,41.566,73.801 +545684,43.828,73.572 +545685,35.986,74.271 +545686,38.076,74.049 +545687,40.251,73.84 +545688,42.523,73.645 +545689,34.654,74.242 +545690,36.752,74.054 +545691,38.935,73.879 +545692,41.216,73.719 +545693,33.323,74.213 +545694,35.428,74.059 +545695,37.619,73.918 +545696,39.907,73.792 +545697,31.993,74.184 +545698,34.105,74.064 +545699,36.302,73.957 +545700,38.597,73.866 +545701,30.665,74.154 +545702,32.783,74.068 +545703,34.985,73.996 +545704,37.284,73.94 +545705,29.339,74.125 +545706,31.461,74.073 +545707,33.667,74.035 +545708,35.97,74.013 +545709,28.015,74.095 +545710,30.139,74.078 +545711,32.348,74.074 +545712,34.654,74.087 +545713,26.692,74.066 +545714,28.818,74.083 +545715,31.029,74.114 +545716,33.336,74.161 +545717,25.37,74.036 +545718,27.498,74.087 +545719,29.709,74.153 +545720,32.017,74.235 +545721,24.05,74.007 +545722,26.178,74.092 +545723,28.389,74.192 +545724,30.696,74.308 +545725,22.732,73.977 +545726,24.859,74.097 +545727,27.068,74.231 +545728,29.373,74.382 +545729,21.416,73.948 +545730,23.54,74.102 +545731,25.747,74.27 +545732,28.048,74.455 +545733,20.101,73.919 +545734,22.222,74.107 +545735,24.425,74.309 +545736,26.722,74.529 +545737,18.788,73.89 +545738,20.904,74.112 +545739,23.102,74.348 +545740,25.393,74.602 +545741,17.476,73.861 +545742,19.587,74.117 +545743,21.779,74.387 +545744,24.063,74.675 +545745,16.166,73.832 +545746,18.27,74.122 +545747,20.455,74.426 +545748,22.732,74.747 +545749,14.857,73.803 +545750,16.954,74.127 +545751,19.13,74.465 +545752,21.398,74.82 +545753,13.55,73.775 +545754,15.639,74.132 +545755,17.805,74.504 +545756,20.063,74.892 +545757,12.245,73.747 +545758,14.323,74.137 +545759,16.48,74.542 +545760,18.726,74.964 +545761,10.941,73.719 +545762,13.009,74.143 +545763,15.154,74.581 +545764,17.387,75.035 +545765,9.6389,73.692 +545766,11.695,74.148 +545767,13.827,74.619 +545768,16.047,75.106 +545769,8.3383,73.665 +545770,10.381,74.154 +545771,12.5,74.658 +545772,14.705,75.177 +545773,7.0392,73.638 +545774,9.0684,74.16 +545775,11.172,74.696 +545776,13.361,75.247 +545777,5.7417,73.612 +545778,7.7559,74.166 +545779,9.8433,74.734 +545780,12.016,75.317 +545781,4.4456,73.586 +545782,6.4439,74.172 +545783,8.5143,74.772 +545784,10.669,75.386 +545785,3.1511,73.561 +545786,5.1325,74.178 +545787,7.1849,74.809 +545788,9.3201,75.455 +545789,1.8581,73.536 +545790,3.8215,74.185 +545791,5.8548,74.847 +545792,7.9698,75.524 +545793,0.56665,73.512 +545794,2.511,74.191 +545795,4.5243,74.884 +545796,6.618,75.592 +545797,359.28,73.488 +545798,1.2009,74.198 +545799,3.1932,74.922 +545800,5.2646,75.659 +545801,357.99,73.465 +545802,359.89,74.205 +545803,1.8616,74.959 +545804,3.9097,75.726 +545805,356.7,73.442 +545806,358.58,74.212 +545807,0.52943,74.995 +545808,2.5532,75.792 +545809,355.42,73.42 +545810,357.27,74.22 +545811,359.2,75.032 +545812,1.1952,75.857 +545813,354.13,73.399 +545814,355.97,74.228 +545815,357.86,75.068 +545816,359.84,75.922 +545817,352.85,73.378 +545818,354.66,74.235 +545819,356.53,75.105 +545820,358.47,75.986 +545821,351.57,73.358 +545822,353.35,74.244 +545823,355.2,75.141 +545824,357.11,76.049 +545825,350.29,73.339 +545826,352.04,74.252 +545827,353.86,75.176 +545828,355.75,76.112 +545829,349.01,73.32 +545830,350.74,74.261 +545831,352.53,75.212 +545832,354.38,76.174 +545833,347.73,73.302 +545834,349.43,74.269 +545835,351.19,75.247 +545836,353.02,76.235 +545837,346.45,73.285 +545838,348.13,74.279 +545839,349.85,75.282 +545840,351.65,76.295 +545841,345.18,73.269 +545842,346.82,74.288 +545843,348.52,75.317 +545844,350.28,76.355 +545845,343.91,73.254 +545846,345.52,74.298 +545847,347.18,75.351 +545848,348.91,76.414 +545849,342.63,73.239 +545850,344.21,74.308 +545851,345.84,75.385 +545852,347.54,76.472 +545853,341.36,73.225 +545854,342.91,74.318 +545855,344.51,75.419 +545856,346.16,76.529 +545857,340.09,73.212 +545858,341.6,74.328 +545859,343.17,75.453 +545860,344.79,76.585 +545861,338.82,73.201 +545862,340.3,74.339 +545863,341.83,75.486 +545864,343.42,76.64 +545865,337.56,73.189 +545866,339,74.351 +545867,340.49,75.519 +545868,342.04,76.694 +545869,336.29,73.179 +545870,337.7,74.362 +545871,339.15,75.552 +545872,340.66,76.748 +545873,335.02,73.17 +545874,336.39,74.374 +545875,337.81,75.584 +545876,339.28,76.8 +545877,333.76,73.162 +545878,335.09,74.386 +545879,336.47,75.616 +545880,337.9,76.852 +545881,332.5,73.155 +545882,333.79,74.398 +545883,335.13,75.648 +545884,336.52,76.902 +545885,331.23,73.149 +545886,332.49,74.411 +545887,333.79,75.679 +545888,335.14,76.952 +545889,329.97,73.144 +545890,331.19,74.424 +545891,332.45,75.71 +545892,333.76,77 +545893,328.71,73.14 +545894,329.89,74.438 +545895,331.11,75.741 +545896,332.37,77.048 +545897,327.45,73.137 +545898,328.59,74.452 +545899,329.77,75.771 +545900,330.99,77.094 +545901,326.19,73.135 +545902,327.29,74.466 +545903,328.42,75.801 +545904,329.6,77.14 +545905,324.93,73.134 +545906,325.99,74.481 +545907,327.08,75.831 +545908,328.22,77.184 +545909,323.68,73.134 +545910,324.69,74.496 +545911,325.74,75.86 +545912,326.83,77.227 +545913,322.42,73.135 +545914,323.39,74.511 +545915,324.4,75.889 +545916,325.44,77.269 +545917,321.17,73.138 +545918,322.09,74.527 +545919,323.05,75.918 +545920,324.06,77.311 +545921,319.91,73.141 +545922,320.79,74.543 +545923,321.71,75.946 +545924,322.67,77.351 +545925,318.66,73.146 +545926,319.49,74.559 +545927,320.36,75.974 +545928,321.28,77.389 +545929,317.4,73.152 +545930,318.19,74.576 +545931,319.02,76.002 +545932,319.89,77.427 +545933,316.15,73.159 +545934,316.9,74.593 +545935,317.68,76.029 +545936,318.5,77.464 +545937,314.9,73.167 +545938,315.6,74.611 +545939,316.33,76.055 +545940,317.1,77.499 +545941,313.65,73.177 +545942,314.3,74.629 +545943,314.99,76.082 +545944,315.71,77.534 +545945,312.4,73.187 +545946,313,74.648 +545947,313.64,76.108 +545948,314.32,77.567 +545949,311.14,73.199 +545950,311.7,74.666 +545951,312.3,76.133 +545952,312.93,77.599 +545953,309.89,73.212 +545954,310.41,74.686 +545955,310.95,76.159 +545956,311.53,77.63 +545957,308.64,73.226 +545958,309.11,74.705 +545959,309.61,76.183 +545960,310.14,77.66 +545961,307.39,73.242 +545962,307.81,74.725 +545963,308.26,76.208 +545964,308.75,77.688 +545965,306.15,73.258 +545966,306.52,74.746 +545967,306.92,76.232 +545968,307.35,77.716 +545969,304.9,73.276 +545970,305.22,74.767 +545971,305.57,76.256 +545972,305.96,77.742 +545973,303.65,73.295 +545974,303.92,74.788 +545975,304.23,76.279 +545976,304.56,77.767 +545977,302.4,73.316 +545978,302.62,74.81 +545979,302.88,76.302 +545980,303.17,77.791 +545981,301.15,73.337 +545982,301.33,74.832 +545983,301.54,76.324 +545984,301.78,77.814 +545985,299.9,73.36 +545986,300.03,74.854 +545987,300.19,76.346 +545988,300.38,77.835 +545989,298.66,73.384 +545990,298.73,74.877 +545991,298.84,76.368 +545992,298.99,77.856 +545993,297.41,73.409 +545994,297.44,74.9 +545995,297.5,76.389 +545996,297.59,77.875 +545997,296.16,73.436 +545998,296.14,74.924 +545999,296.15,76.41 +546000,296.2,77.893 +546001,294.91,73.463 +546002,294.84,74.948 +546003,294.81,76.431 +546004,294.8,77.91 +546005,293.66,73.492 +546006,293.55,74.973 +546007,293.46,76.451 +546008,293.41,77.925 +546009,292.42,73.522 +546010,292.25,74.998 +546011,292.11,76.471 +546012,292.01,77.94 +546013,291.17,73.554 +546014,290.95,75.023 +546015,290.77,76.49 +546016,290.62,77.953 +546017,289.92,73.586 +546018,289.65,75.049 +546019,289.42,76.509 +546020,289.22,77.965 +546021,288.67,73.62 +546022,288.36,75.075 +546023,288.08,76.528 +546024,287.83,77.976 +546025,287.42,73.655 +546026,287.06,75.102 +546027,286.73,76.546 +546028,286.44,77.986 +546029,286.17,73.691 +546030,285.76,75.129 +546031,285.39,76.564 +546032,285.04,77.995 +546033,284.92,73.729 +546034,284.46,75.156 +546035,284.04,76.581 +546036,283.65,78.003 +546037,283.67,73.767 +546038,283.17,75.184 +546039,282.69,76.598 +546040,282.26,78.009 +546041,282.42,73.807 +546042,281.87,75.212 +546043,281.35,76.615 +546044,280.87,78.015 +546045,281.17,73.848 +546046,280.57,75.24 +546047,280,76.631 +546048,279.48,78.019 +546049,279.92,73.89 +546050,279.27,75.269 +546051,278.66,76.647 +546052,278.08,78.022 +546053,278.67,73.933 +546054,277.97,75.299 +546055,277.31,76.663 +546056,276.69,78.024 +546057,277.42,73.978 +546058,276.67,75.328 +546059,275.97,76.678 +546060,275.3,78.025 +546061,276.17,74.023 +546062,275.38,75.358 +546063,274.63,76.693 +546064,273.91,78.025 +546065,274.91,74.07 +546066,274.08,75.389 +546067,273.28,76.707 +546068,272.53,78.024 +546069,273.66,74.117 +546070,272.78,75.419 +546071,271.94,76.722 +546072,271.14,78.022 +546073,272.41,74.166 +546074,271.48,75.451 +546075,270.59,76.735 +546076,269.75,78.019 +546077,271.15,74.216 +546078,270.18,75.482 +546079,269.25,76.749 +546080,268.36,78.015 +546081,269.89,74.267 +546082,268.88,75.514 +546083,267.91,76.762 +546084,266.98,78.01 +546085,268.64,74.319 +546086,267.58,75.546 +546087,266.56,76.775 +546088,265.59,78.003 +546089,267.38,74.372 +546090,266.28,75.579 +546091,265.22,76.787 +546092,264.21,77.996 +546093,266.12,74.426 +546094,264.98,75.611 +546095,263.88,76.8 +546096,262.82,77.988 +546097,264.86,74.481 +546098,263.67,75.645 +546099,262.53,76.812 +546100,261.44,77.979 +546101,263.6,74.536 +546102,262.37,75.678 +546103,261.19,76.823 +546104,260.06,77.969 +546105,262.34,74.593 +546106,261.07,75.712 +546107,259.85,76.834 +546108,258.68,77.958 +546109,261.08,74.651 +546110,259.77,75.746 +546111,258.51,76.845 +546112,257.3,77.947 +546113,259.82,74.71 +546114,258.47,75.781 +546115,257.17,76.856 +546116,255.92,77.934 +546117,258.55,74.769 +546118,257.16,75.815 +546119,255.83,76.866 +546120,254.54,77.92 +546121,257.29,74.83 +546122,255.86,75.85 +546123,254.49,76.877 +546124,253.17,77.906 +546125,256.02,74.891 +546126,254.56,75.886 +546127,253.15,76.886 +546128,251.79,77.891 +546129,254.75,74.953 +546130,253.25,75.921 +546131,251.81,76.896 +546132,250.41,77.875 +546133,253.49,75.016 +546134,251.95,75.957 +546135,250.47,76.905 +546136,249.04,77.858 +546137,252.22,75.08 +546138,250.64,75.993 +546139,249.13,76.914 +546140,247.67,77.841 +546141,250.95,75.145 +546142,249.34,76.03 +546143,247.79,76.923 +546144,246.3,77.822 +546145,249.67,75.21 +546146,248.03,76.067 +546147,246.45,76.932 +546148,244.93,77.803 +546149,248.4,75.276 +546150,246.72,76.103 +546151,245.11,76.94 +546152,243.56,77.784 +546153,247.13,75.342 +546154,245.42,76.141 +546155,243.77,76.948 +546156,242.19,77.763 +546157,245.85,75.41 +546158,244.11,76.178 +546159,242.44,76.956 +546160,240.82,77.742 +546161,244.57,75.478 +546162,242.8,76.216 +546163,241.1,76.964 +546164,239.46,77.721 +546165,243.29,75.546 +546166,241.49,76.253 +546167,239.76,76.972 +546168,238.09,77.698 +546169,242.01,75.616 +546170,240.19,76.291 +546171,238.43,76.979 +546172,236.73,77.676 +546173,240.73,75.685 +546174,238.88,76.33 +546175,237.09,76.986 +546176,235.37,77.652 +546177,239.45,75.756 +546178,237.57,76.368 +546179,235.76,76.993 +546180,234.01,77.628 +546181,238.16,75.827 +546182,236.26,76.407 +546183,234.42,77 +546184,232.65,77.604 +546185,236.88,75.898 +546186,234.95,76.445 +546187,233.09,77.006 +546188,231.29,77.579 +546189,235.59,75.97 +546190,233.64,76.484 +546191,231.75,77.013 +546192,229.94,77.553 +546193,234.3,76.042 +546194,232.32,76.523 +546195,230.42,77.019 +546196,228.58,77.528 +546197,233.01,76.115 +546198,231.01,76.563 +546199,229.09,77.026 +546200,227.23,77.501 +546201,231.72,76.188 +546202,229.7,76.602 +546203,227.76,77.032 +546204,225.88,77.475 +546205,230.43,76.261 +546206,228.39,76.641 +546207,226.42,77.038 +546208,224.53,77.448 +546209,229.13,76.335 +546210,227.07,76.681 +546211,225.09,77.044 +546212,223.18,77.42 +546213,227.84,76.409 +546214,225.76,76.721 +546215,223.76,77.049 +546216,221.83,77.393 +546217,226.54,76.483 +546218,224.44,76.76 +546219,222.43,77.055 +546220,220.49,77.365 +546221,225.24,76.558 +546222,223.13,76.8 +546223,221.1,77.061 +546224,219.14,77.336 +546225,223.94,76.633 +546226,221.81,76.84 +546227,219.77,77.066 +546228,217.8,77.308 +546229,222.63,76.708 +546230,220.5,76.88 +546231,218.44,77.072 +546232,216.46,77.279 +546233,221.33,76.783 +546234,219.18,76.92 +546235,217.11,77.077 +546236,215.12,77.25 +546237,220.02,76.858 +546238,217.86,76.961 +546239,215.79,77.083 +546240,213.78,77.221 +546241,218.71,76.933 +546242,216.54,77.001 +546243,214.46,77.088 +546244,212.44,77.192 +546245,217.4,77.009 +546246,215.23,77.041 +546247,213.13,77.093 +546248,211.11,77.163 +546249,216.09,77.084 +546250,213.91,77.081 +546251,211.8,77.099 +546252,209.77,77.134 +546253,214.78,77.16 +546254,212.59,77.121 +546255,210.48,77.104 +546256,208.44,77.104 +546257,213.46,77.235 +546258,211.27,77.162 +546259,209.15,77.109 +546260,207.11,77.075 +546261,212.15,77.311 +546262,209.95,77.202 +546263,207.83,77.114 +546264,205.78,77.046 +546265,210.83,77.386 +546266,208.62,77.242 +546267,206.5,77.12 +546268,204.46,77.016 +546269,209.51,77.461 +546270,207.3,77.283 +546271,205.18,77.125 +546272,203.13,76.987 +546273,208.19,77.536 +546274,205.98,77.323 +546275,203.86,77.131 +546276,201.81,76.958 +546277,206.86,77.611 +546278,204.66,77.363 +546279,202.53,77.136 +546280,200.48,76.929 +546281,205.54,77.686 +546282,203.33,77.403 +546283,201.21,77.142 +546284,199.16,76.9 +546285,204.21,77.761 +546286,202.01,77.443 +546287,199.89,77.147 +546288,197.84,76.871 +546289,202.88,77.835 +546290,200.68,77.483 +546291,198.57,77.153 +546292,196.52,76.843 +546293,201.55,77.909 +546294,199.36,77.523 +546295,197.25,77.159 +546296,195.21,76.814 +546297,200.22,77.983 +546298,198.03,77.563 +546299,195.93,77.165 +546300,193.89,76.786 +546301,198.89,78.057 +546302,196.71,77.602 +546303,194.61,77.171 +546304,192.58,76.759 +546305,197.55,78.13 +546306,195.38,77.642 +546307,193.29,77.177 +546308,191.27,76.731 +546309,196.22,78.203 +546310,194.05,77.682 +546311,191.97,77.183 +546312,189.95,76.704 +546313,194.88,78.275 +546314,192.72,77.721 +546315,190.65,77.189 +546316,188.65,76.677 +546317,193.54,78.347 +546318,191.39,77.76 +546319,189.33,77.196 +546320,187.34,76.651 +546321,192.2,78.419 +546322,190.06,77.799 +546323,188.01,77.202 +546324,186.03,76.625 +546325,190.85,78.49 +546326,188.73,77.838 +546327,186.7,77.209 +546328,184.73,76.6 +546329,189.51,78.56 +546330,187.4,77.877 +546331,185.38,77.216 +546332,183.42,76.575 +546333,188.16,78.63 +546334,186.07,77.916 +546335,184.06,77.223 +546336,182.12,76.55 +546337,186.81,78.699 +546338,184.74,77.954 +546339,182.75,77.23 +546340,180.82,76.526 +546341,185.46,78.768 +546342,183.41,77.992 +546343,181.43,77.238 +546344,179.52,76.503 +546345,184.11,78.837 +546346,182.08,78.031 +546347,180.12,77.246 +546348,178.23,76.48 +546349,182.76,78.904 +546350,180.74,78.068 +546351,178.8,77.254 +546352,176.93,76.458 +546353,181.41,78.971 +546354,179.41,78.106 +546355,177.49,77.262 +546356,175.64,76.436 +546357,180.05,79.037 +546358,178.08,78.144 +546359,176.18,77.27 +546360,174.34,76.415 +546361,178.69,79.103 +546362,176.74,78.181 +546363,174.87,77.279 +546364,173.05,76.395 +546365,177.33,79.168 +546366,175.41,78.218 +546367,173.55,77.287 +546368,171.76,76.375 +546369,175.97,79.232 +546370,174.07,78.255 +546371,172.24,77.297 +546372,170.47,76.356 +546373,174.61,79.295 +546374,172.73,78.291 +546375,170.93,77.306 +546376,169.19,76.338 +546377,173.25,79.358 +546378,171.4,78.327 +546379,169.62,77.315 +546380,167.9,76.321 +546381,171.88,79.42 +546382,170.06,78.363 +546383,168.31,77.325 +546384,166.61,76.304 +546385,170.52,79.481 +546386,168.72,78.399 +546387,167,77.335 +546388,165.33,76.289 +546389,169.15,79.541 +546390,167.39,78.435 +546391,165.69,77.346 +546392,164.05,76.274 +546393,167.78,79.6 +546394,166.05,78.47 +546395,164.38,77.357 +546396,162.77,76.26 +546397,166.41,79.658 +546398,164.71,78.505 +546399,163.07,77.368 +546400,161.49,76.246 +546401,165.04,79.716 +546402,163.37,78.539 +546403,161.76,77.379 +546404,160.21,76.234 +546405,163.67,79.772 +546406,162.03,78.573 +546407,160.45,77.391 +546408,158.93,76.223 +546409,162.3,79.828 +546410,160.69,78.607 +546411,159.15,77.403 +546412,157.65,76.212 +546413,160.92,79.882 +546414,159.35,78.641 +546415,157.84,77.415 +546416,156.38,76.203 +546417,159.55,79.936 +546418,158.01,78.675 +546419,156.53,77.427 +546420,155.1,76.194 +546421,158.17,79.989 +546422,156.67,78.708 +546423,155.22,77.44 +546424,153.83,76.187 +546425,156.79,80.0403 +546426,155.32,78.74 +546427,153.92,77.454 +546428,152.56,76.18 +546429,155.41,80.091 +546430,153.98,78.773 +546431,152.61,77.467 +546432,151.29,76.175 +546433,154.03,80.1406 +546434,152.64,78.805 +546435,151.31,77.481 +546436,150.02,76.17 +546437,152.65,80.1891 +546438,151.3,78.836 +546439,150,77.496 +546440,148.75,76.167 +546441,151.27,80.2366 +546442,149.95,78.868 +546443,148.69,77.51 +546444,147.48,76.164 +546445,149.89,80.283 +546446,148.61,78.899 +546447,147.39,77.525 +546448,146.21,76.163 +546449,148.5,80.3283 +546450,147.27,78.929 +546451,146.08,77.541 +546452,144.95,76.163 +546453,147.12,80.3726 +546454,145.92,78.96 +546455,144.78,77.557 +546456,143.68,76.164 +546457,145.73,80.4157 +546458,144.58,78.99 +546459,143.48,77.573 +546460,142.42,76.166 +546461,144.34,80.4577 +546462,143.23,79.019 +546463,142.17,77.59 +546464,141.15,76.169 +546465,142.96,80.4986 +546466,141.89,79.048 +546467,140.87,77.606 +546468,139.89,76.173 +546469,141.57,80.5383 +546470,140.54,79.077 +546471,139.56,77.624 +546472,138.63,76.179 +546473,140.18,80.5769 +546474,139.2,79.105 +546475,138.26,77.642 +546476,137.37,76.186 +546477,138.79,80.6144 +546478,137.85,79.133 +546479,136.96,77.66 +546480,136.1,76.194 +546481,137.4,80.6506 +546482,136.51,79.161 +546483,135.66,77.678 +546484,134.84,76.203 +546485,136.01,80.6858 +546486,135.16,79.188 +546487,134.35,77.697 +546488,133.58,76.213 +546489,134.62,80.7197 +546490,133.81,79.215 +546491,133.05,77.717 +546492,132.32,76.224 +546493,133.23,80.7525 +546494,132.47,79.242 +546495,131.75,77.736 +546496,131.07,76.237 +546497,131.84,80.7841 +546498,131.12,79.268 +546499,130.45,77.757 +546500,129.81,76.251 +546501,130.44,80.8144 +546502,129.77,79.293 +546503,129.14,77.777 +546504,128.55,76.266 +546505,129.05,80.8436 +546506,128.43,79.319 +546507,127.84,77.798 +546508,127.29,76.283 +546509,127.66,80.8717 +546510,127.08,79.344 +546511,126.54,77.82 +546512,126.04,76.3 +546513,126.26,80.8985 +546514,125.73,79.368 +546515,125.24,77.841 +546516,124.78,76.319 +546517,124.87,80.9241 +546518,124.38,79.392 +546519,123.94,77.864 +546520,123.52,76.339 +546521,123.47,80.9485 +546522,123.04,79.416 +546523,122.63,77.886 +546524,122.27,76.36 +546525,122.08,80.9717 +546526,121.69,79.439 +546527,121.33,77.909 +546528,121.01,76.383 +546529,120.68,80.9937 +546530,120.34,79.462 +546531,120.03,77.933 +546532,119.76,76.407 +546533,119.29,81.0145 +546534,118.99,79.485 +546535,118.73,77.957 +546536,118.5,76.432 +546537,117.89,81.0341 +546538,117.64,79.507 +546539,117.43,77.981 +546540,117.25,76.458 +546541,116.5,81.0525 +546542,116.3,79.528 +546543,116.13,78.006 +546544,115.99,76.486 +546545,115.1,81.0697 +546546,114.95,79.55 +546547,114.83,78.031 +546548,114.74,76.515 +546549,113.71,81.0858 +546550,113.6,79.571 +546551,113.52,78.057 +546552,113.48,76.545 +546553,112.31,81.1006 +546554,112.25,79.591 +546555,112.22,78.083 +546556,112.23,76.576 +546557,110.92,81.1143 +546558,110.9,79.611 +546559,110.92,78.109 +546560,110.97,76.609 +546561,109.52,81.1267 +546562,109.55,79.631 +546563,109.62,78.136 +546564,109.72,76.643 +546565,108.13,81.138 +546566,108.21,79.65 +546567,108.32,78.163 +546568,108.46,76.678 +546569,106.73,81.1482 +546570,106.86,79.669 +546571,107.02,78.191 +546572,107.21,76.714 +546573,105.34,81.1571 +546574,105.51,79.688 +546575,105.71,78.219 +546576,105.95,76.752 +546577,103.94,81.165 +546578,104.16,79.706 +546579,104.41,78.247 +546580,104.7,76.79 +546581,102.55,81.1716 +546582,102.81,79.724 +546583,103.11,78.276 +546584,103.44,76.83 +546585,101.15,81.1772 +546586,101.47,79.741 +546587,101.81,78.305 +546588,102.18,76.872 +546589,99.76,81.1816 +546590,100.12,79.758 +546591,100.51,78.335 +546592,100.93,76.914 +546593,98.366,81.1849 +546594,98.769,79.775 +546595,99.204,78.365 +546596,99.672,76.957 +546597,96.973,81.1871 +546598,97.422,79.791 +546599,97.902,78.396 +546600,98.415,77.002 +546601,95.581,81.1882 +546602,96.074,79.807 +546603,96.599,78.426 +546604,97.158,77.048 +546605,94.189,81.1882 +546606,94.726,79.823 +546607,95.296,78.458 +546608,95.9,77.095 +546609,92.797,81.1871 +546610,93.379,79.838 +546611,93.993,78.489 +546612,94.642,77.143 +546613,91.406,81.1849 +546614,92.032,79.853 +546615,92.69,78.521 +546616,93.383,77.192 +546617,90.015,81.1818 +546618,90.684,79.867 +546619,91.387,78.553 +546620,92.124,77.243 +546621,88.626,81.1775 +546622,89.338,79.881 +546623,90.083,78.586 +546624,90.864,77.294 +546625,87.236,81.1723 +546626,87.991,79.895 +546627,88.78,78.619 +546628,89.603,77.347 +546629,85.848,81.166 +546630,86.644,79.908 +546631,87.475,78.653 +546632,88.342,77.4 +546633,84.46,81.1588 +546634,85.298,79.922 +546635,86.171,78.686 +546636,87.081,77.455 +546637,83.072,81.1506 +546638,83.952,79.934 +546639,84.867,78.72 +546640,85.818,77.51 +546641,81.686,81.1414 +546642,82.606,79.947 +546643,83.562,78.755 +546644,84.555,77.567 +546645,80.3,81.1313 +546646,81.26,79.959 +546647,82.257,78.79 +546648,83.291,77.625 +546649,78.915,81.1202 +546650,79.915,79.971 +546651,80.951,78.825 +546652,82.026,77.683 +546653,77.531,81.1083 +546654,78.569,79.982 +546655,79.645,78.86 +546656,80.761,77.743 +546657,76.148,81.0954 +546658,77.224,79.994 +546659,78.339,78.896 +546660,79.494,77.804 +546661,74.765,81.0817 +546662,75.88,80.0046 +546663,77.033,78.932 +546664,78.227,77.865 +546665,73.384,81.0671 +546666,74.535,80.0153 +546667,75.726,78.968 +546668,76.958,77.928 +546669,72.003,81.0517 +546670,73.191,80.0257 +546671,74.419,79.005 +546672,75.689,77.991 +546673,70.624,81.0355 +546674,71.847,80.0358 +546675,73.112,79.042 +546676,74.419,78.055 +546677,69.245,81.0184 +546678,70.504,80.0457 +546679,71.804,79.079 +546680,73.148,78.12 +546681,67.868,81.0006 +546682,69.161,80.0553 +546683,70.496,79.116 +546684,71.875,78.186 +546685,66.491,80.9821 +546686,67.818,80.0647 +546687,69.187,79.154 +546688,70.602,78.252 +546689,65.116,80.9628 +546690,66.475,80.0738 +546691,67.878,79.192 +546692,69.328,78.32 +546693,63.741,80.9428 +546694,65.133,80.0827 +546695,66.569,79.23 +546696,68.052,78.388 +546697,62.368,80.9221 +546698,63.791,80.0913 +546699,65.259,79.269 +546700,66.775,78.457 +546701,60.996,80.9007 +546702,62.45,80.0997 +546703,63.949,79.307 +546704,65.497,78.526 +546705,59.625,80.8787 +546706,61.109,80.108 +546707,62.639,79.346 +546708,64.218,78.596 +546709,58.255,80.8561 +546710,59.768,80.116 +546711,61.328,79.386 +546712,62.938,78.667 +546713,56.886,80.8329 +546714,58.427,80.1238 +546715,60.016,79.425 +546716,61.656,78.739 +546717,55.519,80.8091 +546718,57.087,80.1314 +546719,58.705,79.464 +546720,60.374,78.811 +546721,54.153,80.7847 +546722,55.748,80.1389 +546723,57.392,79.504 +546724,59.089,78.883 +546725,52.788,80.7599 +546726,54.409,80.1461 +546727,56.08,79.544 +546728,57.804,78.956 +546729,51.424,80.7345 +546730,53.07,80.1533 +546731,54.766,79.584 +546732,56.517,79.03 +546733,50.062,80.7087 +546734,51.731,80.1602 +546735,53.453,79.625 +546736,55.229,79.104 +546737,48.701,80.6824 +546738,50.393,80.167 +546739,52.138,79.665 +546740,53.94,79.179 +546741,47.341,80.6557 +546742,49.056,80.1737 +546743,50.824,79.706 +546744,52.649,79.254 +546745,45.983,80.6286 +546746,47.719,80.1803 +546747,49.509,79.746 +546748,51.356,79.329 +546749,44.626,80.6011 +546750,46.382,80.1867 +546751,48.193,79.787 +546752,50.063,79.405 +546753,43.27,80.5733 +546754,45.046,80.193 +546755,46.877,79.828 +546756,48.767,79.481 +546757,41.915,80.5451 +546758,43.71,80.1992 +546759,45.56,79.869 +546760,47.471,79.558 +546761,40.562,80.5167 +546762,42.375,80.2053 +546763,44.243,79.91 +546764,46.173,79.635 +546765,39.211,80.488 +546766,41.04,80.2114 +546767,42.925,79.952 +546768,44.873,79.712 +546769,37.861,80.459 +546770,39.705,80.2173 +546771,41.607,79.993 +546772,43.572,79.789 +546773,36.512,80.4299 +546774,38.371,80.2232 +546775,40.289,80.0346 +546776,42.269,79.866 +546777,35.165,80.4005 +546778,37.038,80.2291 +546779,38.969,80.0761 +546780,40.965,79.944 +546781,33.819,80.371 +546782,35.705,80.2349 +546783,37.65,80.1176 +546784,39.659,80.0219 +546785,32.474,80.3414 +546786,34.372,80.2407 +546787,36.329,80.1592 +546788,38.352,80.0999 +546789,31.131,80.3117 +546790,33.04,80.2464 +546791,35.008,80.2009 +546792,37.043,80.1779 +546793,29.79,80.2819 +546794,31.708,80.2521 +546795,33.687,80.2425 +546796,35.733,80.256 +546797,28.45,80.252 +546798,30.377,80.2578 +546799,32.365,80.2842 +546800,34.421,80.3341 +546801,27.111,80.2222 +546802,29.046,80.2635 +546803,31.043,80.3259 +546804,33.107,80.4122 +546805,25.774,80.1923 +546806,27.716,80.2692 +546807,29.72,80.3676 +546808,31.792,80.4903 +546809,24.438,80.1625 +546810,26.386,80.275 +546811,28.396,80.4093 +546812,30.476,80.5683 +546813,23.104,80.1327 +546814,25.057,80.2807 +546815,27.072,80.4509 +546816,29.157,80.6462 +546817,21.771,80.1031 +546818,23.728,80.2866 +546819,25.747,80.4926 +546820,27.837,80.724 +546821,20.44,80.0735 +546822,22.4,80.2924 +546823,24.422,80.5341 +546824,26.516,80.8016 +546825,19.111,80.0441 +546826,21.072,80.2983 +546827,23.096,80.5757 +546828,25.192,80.8791 +546829,17.782,80.0149 +546830,19.744,80.3043 +546831,21.77,80.6171 +546832,23.868,80.9564 +546833,16.456,79.986 +546834,18.418,80.3103 +546835,20.443,80.6585 +546836,22.541,81.0334 +546837,15.13,79.957 +546838,17.091,80.3165 +546839,19.116,80.6998 +546840,21.213,81.1101 +546841,13.807,79.929 +546842,15.765,80.3227 +546843,17.788,80.7411 +546844,19.883,81.1866 +546845,12.484,79.9 +546846,14.44,80.3291 +546847,16.459,80.7822 +546848,18.552,81.2627 +546849,11.163,79.872 +546850,13.115,80.3355 +546851,15.13,80.8232 +546852,17.219,81.3385 +546853,9.844,79.845 +546854,11.79,80.3421 +546855,13.801,80.8641 +546856,15.885,81.4139 +546857,8.5261,79.818 +546858,10.466,80.3488 +546859,12.471,80.9049 +546860,14.549,81.4889 +546861,7.2096,79.791 +546862,9.1428,80.3556 +546863,11.14,80.9455 +546864,13.211,81.5635 +546865,5.8946,79.764 +546866,7.8197,80.3626 +546867,9.8088,80.986 +546868,11.872,81.6376 +546869,4.5811,79.739 +546870,6.4971,80.3698 +546871,8.477,81.0264 +546872,10.531,81.7112 +546873,3.269,79.713 +546874,5.1749,80.3771 +546875,7.1447,81.0665 +546876,9.1883,81.7843 +546877,1.9583,79.688 +546878,3.8533,80.3846 +546879,5.8119,81.1065 +546880,7.8443,81.8569 +546881,0.64905,79.664 +546882,2.532,80.3923 +546883,4.4785,81.1463 +546884,6.4987,81.9289 +546885,359.34,79.64 +546886,1.2113,80.4001 +546887,3.1446,81.186 +546888,5.1515,82.0002 +546889,358.03,79.617 +546890,359.89,80.4082 +546891,1.8102,81.2254 +546892,3.8028,82.071 +546893,356.73,79.594 +546894,358.57,80.4165 +546895,0.47529,81.2646 +546896,2.4526,82.1411 +546897,355.43,79.572 +546898,357.25,80.425 +546899,359.14,81.3037 +546900,1.1009,82.2106 +546901,354.12,79.55 +546902,355.93,80.4337 +546903,357.8,81.3424 +546904,359.75,82.2793 +546905,352.82,79.53 +546906,354.61,80.4427 +546907,356.47,81.381 +546908,358.39,82.3474 +546909,351.52,79.51 +546910,353.3,80.4519 +546911,355.13,81.4193 +546912,357.04,82.4147 +546913,350.22,79.49 +546914,351.98,80.4614 +546915,353.79,81.4574 +546916,355.68,82.4812 +546917,348.93,79.472 +546918,350.66,80.4711 +546919,352.46,81.4952 +546920,354.32,82.5469 +546921,347.63,79.454 +546922,349.34,80.4811 +546923,351.12,81.5328 +546924,352.96,82.6118 +546925,346.34,79.437 +546926,348.03,80.4913 +546927,349.78,81.57 +546928,351.6,82.6759 +546929,345.04,79.421 +546930,346.71,80.5019 +546931,348.44,81.6071 +546932,350.23,82.7392 +546933,343.75,79.406 +546934,345.4,80.5127 +546935,347.1,81.6438 +546936,348.87,82.8015 +546937,342.46,79.391 +546938,344.08,80.5238 +546939,345.76,81.6802 +546940,347.5,82.863 +546941,341.17,79.378 +546942,342.77,80.5352 +546943,344.42,81.7163 +546944,346.14,82.9235 +546945,339.88,79.365 +546946,341.45,80.5469 +546947,343.08,81.7522 +546948,344.77,82.9831 +546949,338.6,79.353 +546950,340.14,80.559 +546951,341.73,81.7877 +546952,343.4,83.0418 +546953,337.31,79.343 +546954,338.82,80.5713 +546955,340.39,81.8229 +546956,342.03,83.0994 +546957,336.03,79.333 +546958,337.51,80.584 +546959,339.05,81.8578 +546960,340.65,83.1561 +546961,334.74,79.324 +546962,336.2,80.5971 +546963,337.71,81.8923 +546964,339.28,83.2118 +546965,333.46,79.316 +546966,334.88,80.6104 +546967,336.36,81.9265 +546968,337.91,83.2664 +546969,332.18,79.309 +546970,333.57,80.6241 +546971,335.02,81.9604 +546972,336.53,83.32 +546973,330.9,79.304 +546974,332.26,80.6382 +546975,333.68,81.9939 +546976,335.15,83.3726 +546977,329.62,79.299 +546978,330.95,80.6526 +546979,332.33,82.0271 +546980,333.78,83.4241 +546981,328.34,79.295 +546982,329.64,80.6674 +546983,330.99,82.0599 +546984,332.4,83.4745 +546985,327.06,79.293 +546986,328.33,80.6826 +546987,329.64,82.0924 +546988,331.02,83.5237 +546989,325.78,79.291 +546990,327.01,80.6981 +546991,328.3,82.1245 +546992,329.63,83.5719 +546993,324.51,79.291 +546994,325.7,80.714 +546995,326.95,82.1562 +546996,328.25,83.619 +546997,323.23,79.292 +546998,324.39,80.7302 +546999,325.6,82.1875 +547000,326.87,83.6649 +547001,321.96,79.294 +547002,323.08,80.7469 +547003,324.26,82.2185 +547004,325.49,83.7096 +547005,320.68,79.297 +547006,321.77,80.764 +547007,322.91,82.249 +547008,324.1,83.7532 +547009,319.41,79.301 +547010,320.46,80.7814 +547011,321.56,82.2792 +547012,322.71,83.7956 +547013,318.14,79.306 +547014,319.15,80.7992 +547015,320.21,82.309 +547016,321.33,83.8368 +547017,316.87,79.313 +547018,317.85,80.8175 +547019,318.87,82.3384 +547020,319.94,83.8769 +547021,315.6,79.321 +547022,316.54,80.8361 +547023,317.52,82.3674 +547024,318.55,83.9157 +547025,314.33,79.33 +547026,315.23,80.8552 +547027,316.17,82.396 +547028,317.16,83.9534 +547029,313.06,79.34 +547030,313.92,80.8746 +547031,314.82,82.4243 +547032,315.77,83.9898 +547033,311.79,79.352 +547034,312.61,80.8945 +547035,313.47,82.452 +547036,314.38,84.025 +547037,310.52,79.364 +547038,311.3,80.9148 +547039,312.12,82.4794 +547040,312.99,84.0589 +547041,309.26,79.378 +547042,309.99,80.9355 +547043,310.77,82.5064 +547044,311.6,84.0917 +547045,307.99,79.394 +547046,308.69,80.9566 +547047,309.42,82.533 +547048,310.21,84.1232 +547049,306.72,79.41 +547050,307.38,80.9781 +547051,308.08,82.5591 +547052,308.82,84.1534 +547053,305.46,79.428 +547054,306.07,81.0001 +547055,306.73,82.5849 +547056,307.42,84.1825 +547057,304.19,79.447 +547058,304.76,81.0225 +547059,305.37,82.6102 +547060,306.03,84.2102 +547061,302.93,79.467 +547062,303.46,81.0453 +547063,304.02,82.6351 +547064,304.63,84.2368 +547065,301.66,79.489 +547066,302.15,81.0685 +547067,302.67,82.6596 +547068,303.24,84.262 +547069,300.4,79.512 +547070,300.84,81.0922 +547071,301.32,82.6837 +547072,301.85,84.286 +547073,299.13,79.536 +547074,299.54,81.1162 +547075,299.97,82.7073 +547076,300.45,84.3088 +547077,297.87,79.561 +547078,298.23,81.1408 +547079,298.62,82.7306 +547080,299.05,84.3303 +547081,296.61,79.588 +547082,296.92,81.1657 +547083,297.27,82.7534 +547084,297.66,84.3506 +547085,295.34,79.616 +547086,295.61,81.191 +547087,295.92,82.7758 +547088,296.26,84.3696 +547089,294.08,79.645 +547090,294.31,81.2168 +547091,294.57,82.7978 +547092,294.87,84.3874 +547093,292.82,79.676 +547094,293,81.243 +547095,293.22,82.8194 +547096,293.47,84.4039 +547097,291.55,79.707 +547098,291.69,81.2697 +547099,291.87,82.8405 +547100,292.07,84.4192 +547101,290.29,79.74 +547102,290.39,81.2967 +547103,290.51,82.8612 +547104,290.68,84.4333 +547105,289.03,79.775 +547106,289.08,81.3242 +547107,289.16,82.8816 +547108,289.28,84.4461 +547109,287.77,79.81 +547110,287.77,81.3521 +547111,287.81,82.9015 +547112,287.88,84.4578 +547113,286.5,79.847 +547114,286.47,81.3804 +547115,286.46,82.921 +547116,286.49,84.4682 +547117,285.24,79.885 +547118,285.16,81.4091 +547119,285.11,82.9401 +547120,285.09,84.4773 +547121,283.98,79.925 +547122,283.85,81.4383 +547123,283.76,82.9588 +547124,283.69,84.4853 +547125,282.71,79.965 +547126,282.54,81.4678 +547127,282.41,82.9771 +547128,282.3,84.4921 +547129,281.45,80.0073 +547130,281.24,81.4978 +547131,281.05,82.995 +547132,280.9,84.4977 +547133,280.19,80.0504 +547134,279.93,81.5282 +547135,279.7,83.0125 +547136,279.51,84.5021 +547137,278.92,80.0947 +547138,278.62,81.5589 +547139,278.35,83.0296 +547140,278.11,84.5054 +547141,277.66,80.1402 +547142,277.31,81.5901 +547143,277,83.0463 +547144,276.72,84.5075 +547145,276.39,80.1869 +547146,276.01,81.6216 +547147,275.65,83.0626 +547148,275.32,84.5085 +547149,275.13,80.2348 +547150,274.7,81.6536 +547151,274.3,83.0786 +547152,273.93,84.5083 +547153,273.86,80.2838 +547154,273.39,81.6859 +547155,272.95,83.0941 +547156,272.53,84.507 +547157,272.6,80.3341 +547158,272.08,81.7186 +547159,271.6,83.1093 +547160,271.14,84.5046 +547161,271.33,80.3854 +547162,270.77,81.7517 +547163,270.24,83.1241 +547164,269.74,84.5011 +547165,270.07,80.4379 +547166,269.47,81.7852 +547167,268.89,83.1386 +547168,268.35,84.4965 +547169,268.8,80.4915 +547170,268.16,81.8191 +547171,267.54,83.1527 +547172,266.96,84.4909 +547173,267.53,80.5463 +547174,266.85,81.8533 +547175,266.19,83.1664 +547176,265.57,84.4842 +547177,266.27,80.6021 +547178,265.54,81.8878 +547179,264.84,83.1798 +547180,264.17,84.4765 +547181,265,80.659 +547182,264.23,81.9227 +547183,263.49,83.1929 +547184,262.78,84.4677 +547185,263.73,80.7169 +547186,262.92,81.958 +547187,262.14,83.2056 +547188,261.39,84.458 +547189,262.46,80.7759 +547190,261.61,81.9936 +547191,260.79,83.218 +547192,260,84.4472 +547193,261.19,80.8359 +547194,260.3,82.0295 +547195,259.44,83.23 +547196,258.61,84.4355 +547197,259.92,80.8969 +547198,258.99,82.0658 +547199,258.09,83.2417 +547200,257.22,84.4229 +547201,258.64,80.9589 +547202,257.68,82.1024 +547203,256.74,83.2531 +547204,255.84,84.4093 +547205,257.37,81.0218 +547206,256.37,82.1393 +547207,255.39,83.2642 +547208,254.45,84.3948 +547209,256.1,81.0857 +547210,255.06,82.1765 +547211,254.05,83.275 +547212,253.06,84.3794 +547213,254.82,81.1505 +547214,253.75,82.214 +547215,252.7,83.2855 +547216,251.68,84.3631 +547217,253.55,81.2162 +547218,252.43,82.2519 +547219,251.35,83.2957 +547220,250.29,84.346 +547221,252.27,81.2828 +547222,251.12,82.29 +547223,250,83.3057 +547224,248.91,84.328 +547225,251,81.3503 +547226,249.81,82.3283 +547227,248.65,83.3153 +547228,247.53,84.3092 +547229,249.72,81.4186 +547230,248.5,82.367 +547231,247.31,83.3247 +547232,246.15,84.2897 +547233,248.44,81.4877 +547234,247.18,82.4059 +547235,245.96,83.3338 +547236,244.77,84.2693 +547237,247.16,81.5575 +547238,245.87,82.4451 +547239,244.61,83.3427 +547240,243.39,84.2483 +547241,245.88,81.6282 +547242,244.56,82.4845 +547243,243.26,83.3513 +547244,242.01,84.2265 +547245,244.6,81.6996 +547246,243.24,82.5242 +547247,241.92,83.3597 +547248,240.63,84.204 +547249,243.31,81.7717 +547250,241.93,82.5641 +547251,240.57,83.3678 +547252,239.25,84.1808 +547253,242.03,81.8444 +547254,240.61,82.6043 +547255,239.23,83.3758 +547256,237.88,84.1569 +547257,240.75,81.9179 +547258,239.3,82.6446 +547259,237.88,83.3835 +547260,236.5,84.1325 +547261,239.46,81.992 +547262,237.98,82.6852 +547263,236.54,83.391 +547264,235.13,84.1074 +547265,238.17,82.0667 +547266,236.66,82.7259 +547267,235.19,83.3983 +547268,233.76,84.0818 +547269,236.88,82.1419 +547270,235.35,82.7669 +547271,233.85,83.4054 +547272,232.39,84.0556 +547273,235.59,82.2178 +547274,234.03,82.808 +547275,232.5,83.4124 +547276,231.01,84.0288 +547277,234.3,82.2941 +547278,232.71,82.8493 +547279,231.16,83.4192 +547280,229.65,84.0016 +547281,233.01,82.371 +547282,231.39,82.8908 +547283,229.82,83.4258 +547284,228.28,83.9739 +547285,231.72,82.4483 +547286,230.08,82.9324 +547287,228.47,83.4323 +547288,226.91,83.9457 +547289,230.42,82.5261 +547290,228.76,82.9742 +547291,227.13,83.4386 +547292,225.55,83.9171 +547293,229.13,82.6043 +547294,227.44,83.0161 +547295,225.79,83.4448 +547296,224.18,83.8881 +547297,227.83,82.6828 +547298,226.12,83.0581 +547299,224.45,83.4508 +547300,222.82,83.8588 +547301,226.53,82.7617 +547302,224.8,83.1002 +547303,223.11,83.4568 +547304,221.46,83.8291 +547305,225.23,82.841 +547306,223.48,83.1425 +547307,221.77,83.4626 +547308,220.1,83.799 +547309,223.93,82.9205 +547310,222.15,83.1848 +547311,220.43,83.4683 +547312,218.74,83.7687 +547313,222.63,83.0003 +547314,220.83,83.2273 +547315,219.09,83.474 +547316,217.38,83.7382 +547317,221.32,83.0804 +547318,219.51,83.2698 +547319,217.75,83.4796 +547320,216.02,83.7073 +547321,220.02,83.1606 +547322,218.19,83.3124 +547323,216.41,83.4851 +547324,214.67,83.6763 +547325,218.71,83.2411 +547326,216.86,83.355 +547327,215.07,83.4905 +547328,213.32,83.6451 +547329,217.4,83.3216 +547330,215.54,83.3977 +547331,213.73,83.4959 +547332,211.96,83.6138 +547333,216.09,83.4023 +547334,214.22,83.4404 +547335,212.39,83.5012 +547336,210.61,83.5823 +547337,214.78,83.4831 +547338,212.89,83.4831 +547339,211.05,83.5066 +547340,209.26,83.5508 +547341,213.47,83.5639 +547342,211.57,83.5259 +547343,209.72,83.5119 +547344,207.92,83.5191 +547345,212.15,83.6448 +547346,210.24,83.5687 +547347,208.38,83.5171 +547348,206.57,83.4875 +547349,210.84,83.7256 +547350,208.91,83.6115 +547351,207.04,83.5224 +547352,205.22,83.4558 +547353,209.52,83.8064 +547354,207.59,83.6542 +547355,205.71,83.5277 +547356,203.88,83.4241 +547357,208.2,83.8871 +547358,206.26,83.6969 +547359,204.37,83.533 +547360,202.54,83.3925 +547361,206.88,83.9677 +547362,204.93,83.7397 +547363,203.04,83.5383 +547364,201.2,83.361 +547365,205.56,84.0482 +547366,203.6,83.7823 +547367,201.7,83.5437 +547368,199.86,83.3296 +547369,204.23,84.1286 +547370,202.27,83.8249 +547371,200.37,83.5491 +547372,198.52,83.2983 +547373,202.91,84.2087 +547374,200.95,83.8675 +547375,199.04,83.5546 +547376,197.18,83.2672 +547377,201.58,84.2886 +547378,199.62,83.9099 +547379,197.7,83.5601 +547380,195.84,83.2362 +547381,200.26,84.3683 +547382,198.28,83.9523 +547383,196.37,83.5658 +547384,194.51,83.2055 +547385,198.93,84.4477 +547386,196.95,83.9946 +547387,195.04,83.5714 +547388,193.18,83.175 +547389,197.6,84.5267 +547390,195.62,84.0368 +547391,193.71,83.5772 +547392,191.85,83.1449 +547393,196.26,84.6054 +547394,194.29,84.0789 +547395,192.38,83.5831 +547396,190.52,83.115 +547397,194.93,84.6838 +547398,192.96,84.1209 +547399,191.05,83.5891 +547400,189.19,83.0854 +547401,193.59,84.7617 +547402,191.62,84.1627 +547403,189.72,83.5953 +547404,187.86,83.0562 +547405,192.26,84.8392 +547406,190.29,84.2044 +547407,188.39,83.6015 +547408,186.54,83.0274 +547409,190.92,84.9163 +547410,188.96,84.2459 +547411,187.06,83.6079 +547412,185.21,82.999 +547413,189.58,84.9928 +547414,187.62,84.2873 +547415,185.73,83.6145 +547416,183.89,82.971 +547417,188.24,85.0689 +547418,186.29,84.3285 +547419,184.4,83.6212 +547420,182.57,82.9436 +547421,186.89,85.1444 +547422,184.95,84.3695 +547423,183.07,83.6281 +547424,181.25,82.9166 +547425,185.55,85.2193 +547426,183.61,84.4103 +547427,181.74,83.6351 +547428,179.93,82.8901 +547429,184.2,85.2936 +547430,182.28,84.451 +547431,180.42,83.6424 +547432,178.61,82.8642 +547433,182.85,85.3673 +547434,180.94,84.4914 +547435,179.09,83.6498 +547436,177.29,82.8389 +547437,181.51,85.4403 +547438,179.6,84.5316 +547439,177.76,83.6574 +547440,175.98,82.8141 +547441,180.15,85.5126 +547442,178.26,84.5716 +547443,176.44,83.6653 +547444,174.67,82.79 +547445,178.8,85.5842 +547446,176.92,84.6114 +547447,175.11,83.6734 +547448,173.35,82.7666 +547449,177.45,85.6551 +547450,175.58,84.6509 +547451,173.79,83.6817 +547452,172.04,82.7438 +547453,176.09,85.7253 +547454,174.24,84.6902 +547455,172.46,83.6902 +547456,170.73,82.7217 +547457,174.74,85.7946 +547458,172.9,84.7292 +547459,171.14,83.699 +547460,169.43,82.7003 +547461,173.38,85.8631 +547462,171.56,84.7679 +547463,169.81,83.708 +547464,168.12,82.6797 +547465,172.02,85.9308 +547466,170.22,84.8064 +547467,168.49,83.7173 +547468,166.81,82.6599 +547469,170.66,85.9977 +547470,168.88,84.8446 +547471,167.17,83.7269 +547472,165.51,82.6409 +547473,169.3,86.0636 +547474,167.54,84.8825 +547475,165.84,83.7367 +547476,164.21,82.6227 +547477,167.93,86.1286 +547478,166.2,84.9201 +547479,164.52,83.7469 +547480,162.9,82.6053 +547481,166.57,86.1928 +547482,164.85,84.9574 +547483,163.2,83.7573 +547484,161.6,82.5889 +547485,165.2,86.2559 +547486,163.51,84.9943 +547487,161.88,83.768 +547488,160.3,82.5733 +547489,163.84,86.3181 +547490,162.16,85.031 +547491,160.56,83.779 +547492,159,82.5586 +547493,162.47,86.3793 +547494,160.82,85.0673 +547495,159.24,83.7904 +547496,157.71,82.5448 +547497,161.1,86.4395 +547498,159.47,85.1033 +547499,157.92,83.802 +547500,156.41,82.532 +547501,159.73,86.4987 +547502,158.13,85.139 +547503,156.6,83.814 +547504,155.12,82.5202 +547505,158.36,86.5568 +547506,156.78,85.1743 +547507,155.28,83.8263 +547508,153.82,82.5093 +547509,156.98,86.6138 +547510,155.44,85.2092 +547511,153.96,83.839 +547512,152.53,82.4995 +547513,155.61,86.6697 +547514,154.09,85.2438 +547515,152.64,83.852 +547516,151.24,82.4907 +547517,154.23,86.7246 +547518,152.74,85.2781 +547519,151.32,83.8653 +547520,149.95,82.4829 +547521,152.85,86.7783 +547522,151.4,85.3119 +547523,150,83.879 +547524,148.66,82.4762 +547525,151.48,86.8309 +547526,150.05,85.3454 +547527,148.68,83.8931 +547528,147.37,82.4706 +547529,150.1,86.8823 +547530,148.7,85.3785 +547531,147.36,83.9075 +547532,146.08,82.4661 +547533,148.72,86.9326 +547534,147.35,85.4112 +547535,146.05,83.9223 +547536,144.79,82.4627 +547537,147.34,86.9817 +547538,146,85.4436 +547539,144.73,83.9375 +547540,143.51,82.4604 +547541,145.95,87.0296 +547542,144.65,85.4755 +547543,143.41,83.9531 +547544,142.22,82.4593 +547545,144.57,87.0763 +547546,143.3,85.507 +547547,142.09,83.969 +547548,140.94,82.4593 +547549,143.19,87.1217 +547550,141.95,85.5381 +547551,140.78,83.9854 +547552,139.65,82.4605 +547553,141.8,87.1659 +547554,140.6,85.5688 +547555,139.46,84.0021 +547556,138.37,82.4629 +547557,140.42,87.2089 +547558,139.25,85.5991 +547559,138.15,84.0192 +547560,137.09,82.4665 +547561,139.03,87.2507 +547562,137.9,85.629 +547563,136.83,84.0368 +547564,135.81,82.4713 +547565,137.64,87.2911 +547566,136.55,85.6585 +547567,135.51,84.0547 +547568,134.53,82.4773 +547569,136.25,87.3303 +547570,135.2,85.6875 +547571,134.2,84.0731 +547572,133.25,82.4846 +547573,134.86,87.3682 +547574,133.85,85.7161 +547575,132.88,84.0918 +547576,131.97,82.4931 +547577,133.47,87.4049 +547578,132.49,85.7443 +547579,131.57,84.111 +547580,130.69,82.5028 +547581,132.08,87.4402 +547582,131.14,85.772 +547583,130.25,84.1306 +547584,129.41,82.5138 +547585,130.69,87.4743 +547586,129.79,85.7993 +547587,128.94,84.1506 +547588,128.13,82.5261 +547589,129.3,87.507 +547590,128.44,85.8262 +547591,127.62,84.1711 +547592,126.86,82.5397 +547593,127.91,87.5384 +547594,127.08,85.8526 +547595,126.31,84.1919 +547596,125.58,82.5545 +547597,126.51,87.5685 +547598,125.73,85.8786 +547599,125,84.2132 +547600,124.3,82.5706 +547601,125.12,87.5973 +547602,124.38,85.9042 +547603,123.68,84.235 +547604,123.03,82.5881 +547605,123.72,87.6248 +547606,123.02,85.9293 +547607,122.37,84.2571 +547608,121.75,82.6068 +547609,122.33,87.6509 +547610,121.67,85.9539 +547611,121.05,84.2797 +547612,120.48,82.6268 +547613,120.93,87.6757 +547614,120.31,85.9781 +547615,119.74,84.3027 +547616,119.2,82.6481 +547617,119.54,87.6992 +547618,118.96,86.0019 +547619,118.43,84.3261 +547620,117.93,82.6708 +547621,118.14,87.7214 +547622,117.61,86.0252 +547623,117.11,84.35 +547624,116.66,82.6947 +547625,116.75,87.7422 +547626,116.25,86.0481 +547627,115.8,84.3743 +547628,115.38,82.72 +547629,115.35,87.7618 +547630,114.9,86.0705 +547631,114.49,84.3991 +547632,114.11,82.7466 +547633,113.95,87.78 +547634,113.54,86.0925 +547635,113.17,84.4242 +547636,112.84,82.7745 +547637,112.55,87.7969 +547638,112.19,86.114 +547639,111.86,84.4498 +547640,111.57,82.8037 +547641,111.16,87.8124 +547642,110.83,86.1351 +547643,110.55,84.4759 +547644,110.29,82.8342 +547645,109.76,87.8267 +547646,109.48,86.1558 +547647,109.23,84.5023 +547648,109.02,82.866 +547649,108.36,87.8396 +547650,108.12,86.176 +547651,107.92,84.5292 +547652,107.75,82.8992 +547653,106.96,87.8513 +547654,106.77,86.1957 +547655,106.6,84.5566 +547656,106.48,82.9336 +547657,105.57,87.8617 +547658,105.41,86.2151 +547659,105.29,84.5843 +547660,105.21,82.9693 +547661,104.17,87.8707 +547662,104.06,86.2339 +547663,103.98,84.6125 +547664,103.93,83.0064 +547665,102.77,87.8785 +547666,102.7,86.2524 +547667,102.66,84.6411 +547668,102.66,83.0447 +547669,101.37,87.8851 +547670,101.34,86.2704 +547671,101.35,84.6701 +547672,101.39,83.0843 +547673,99.972,87.8903 +547674,99.989,86.288 +547675,100.04,84.6995 +547676,100.12,83.1252 +547677,98.574,87.8943 +547678,98.633,86.3052 +547679,98.724,84.7294 +547680,98.845,83.1673 +547681,97.176,87.8971 +547682,97.278,86.3219 +547683,97.41,84.7596 +547684,97.573,83.2108 +547685,95.779,87.8986 +547686,95.922,86.3382 +547687,96.097,84.7903 +547688,96.3,83.2554 +547689,94.381,87.899 +547690,94.567,86.3541 +547691,94.783,84.8213 +547692,95.027,83.3013 +547693,92.983,87.8981 +547694,93.211,86.3696 +547695,93.469,84.8528 +547696,93.754,83.3484 +547697,91.586,87.896 +547698,91.856,86.3847 +547699,92.154,84.8847 +547700,92.481,83.3968 +547701,90.189,87.8927 +547702,90.501,86.3993 +547703,90.84,84.9169 +547704,91.207,83.4464 +547705,88.793,87.8883 +547706,89.145,86.4136 +547707,89.526,84.9496 +547708,89.933,83.4971 +547709,87.397,87.8827 +547710,87.79,86.4275 +547711,88.211,84.9826 +547712,88.659,83.5491 +547713,86.001,87.8759 +547714,86.435,86.441 +547715,86.896,85.016 +547716,87.384,83.6022 +547717,84.605,87.868 +547718,85.08,86.454 +547719,85.581,85.0498 +547720,86.109,83.6564 +547721,83.21,87.8591 +547722,83.725,86.4668 +547723,84.266,85.0839 +547724,84.833,83.7118 +547725,81.816,87.849 +547726,82.371,86.4791 +547727,82.951,85.1185 +547728,83.557,83.7684 +547729,80.422,87.8378 +547730,81.016,86.491 +547731,81.636,85.1533 +547732,82.28,83.826 +547733,79.028,87.8256 +547734,79.661,86.5026 +547735,80.32,85.1886 +547736,81.003,83.8847 +547737,77.635,87.8124 +547738,78.307,86.5139 +547739,79.004,85.2241 +547740,79.725,83.9445 +547741,76.243,87.7981 +547742,76.953,86.5248 +547743,77.688,85.26 +547744,78.447,84.0054 +547745,74.851,87.7829 +547746,75.599,86.5353 +547747,76.371,85.2963 +547748,77.167,84.0673 +547749,73.46,87.7666 +547750,74.245,86.5455 +547751,75.055,85.3328 +547752,75.888,84.1302 +547753,72.069,87.7494 +547754,72.892,86.5553 +547755,73.738,85.3697 +547756,74.607,84.1941 +547757,70.68,87.7312 +547758,71.538,86.5649 +547759,72.42,85.4069 +547760,73.326,84.259 +547761,69.29,87.7121 +547762,70.185,86.5741 +547763,71.103,85.4445 +547764,72.044,84.3249 +547765,67.902,87.6922 +547766,68.832,86.583 +547767,69.785,85.4823 +547768,70.762,84.3916 +547769,66.515,87.6713 +547770,67.479,86.5916 +547771,68.467,85.5204 +547772,69.478,84.4593 +547773,65.128,87.6496 +547774,66.127,86.5998 +547775,67.149,85.5587 +547776,68.194,84.5279 +547777,63.742,87.627 +547778,64.774,86.6078 +547779,65.83,85.5974 +547780,66.909,84.5974 +547781,62.357,87.6037 +547782,63.422,86.6155 +547783,64.511,85.6363 +547784,65.623,84.6677 +547785,60.973,87.5795 +547786,62.07,86.623 +547787,63.192,85.6755 +547788,64.336,84.7388 +547789,59.59,87.5546 +547790,60.719,86.6302 +547791,61.872,85.715 +547792,63.048,84.8107 +547793,58.208,87.5289 +547794,59.368,86.6371 +547795,60.552,85.7547 +547796,61.76,84.8834 +547797,56.826,87.5026 +547798,58.017,86.6437 +547799,59.231,85.7946 +547800,60.47,84.9568 +547801,55.446,87.4755 +547802,56.666,86.6501 +547803,57.911,85.8347 +547804,59.179,85.031 +547805,54.066,87.4478 +547806,55.316,86.6563 +547807,56.59,85.8751 +547808,57.888,85.1058 +547809,52.688,87.4194 +547810,53.966,86.6623 +547811,55.268,85.9157 +547812,56.595,85.1813 +547813,51.311,87.3905 +547814,52.616,86.668 +547815,53.946,85.9564 +547816,55.301,85.2575 +547817,49.935,87.3609 +547818,51.266,86.6735 +547819,52.624,85.9974 +547820,54.006,85.3342 +547821,48.559,87.3308 +547822,49.917,86.6788 +547823,51.301,86.0385 +547824,52.71,85.4116 +547825,47.185,87.3001 +547826,48.569,86.684 +547827,49.978,86.0799 +547828,51.413,85.4895 +547829,45.812,87.269 +547830,47.22,86.6889 +547831,48.654,86.1213 +547832,50.115,85.5679 +547833,44.44,87.2373 +547834,45.872,86.6937 +547835,47.33,86.163 +547836,48.816,85.6469 +547837,43.07,87.2052 +547838,44.524,86.6983 +547839,46.006,86.2047 +547840,47.515,85.7263 +547841,41.7,87.1727 +547842,43.177,86.7028 +547843,44.681,86.2466 +547844,46.213,85.8061 +547845,40.332,87.1398 +547846,41.83,86.7071 +547847,43.356,86.2887 +547848,44.91,85.8863 +547849,38.964,87.1066 +547850,40.483,86.7113 +547851,42.03,86.3308 +547852,43.606,85.967 +547853,37.598,87.0729 +547854,39.137,86.7154 +547855,40.704,86.3731 +547856,42.301,86.0479 +547857,36.234,87.039 +547858,37.791,86.7193 +547859,39.378,86.4154 +547860,40.994,86.1292 +547861,34.87,87.0048 +547862,36.445,86.7231 +547863,38.051,86.4578 +547864,39.686,86.2108 +547865,33.508,86.9704 +547866,35.1,86.7269 +547867,36.723,86.5003 +547868,38.377,86.2927 +547869,32.147,86.9357 +547870,33.755,86.7305 +547871,35.395,86.5429 +547872,37.066,86.3747 +547873,30.787,86.9008 +547874,32.411,86.7341 +547875,34.067,86.5855 +547876,35.755,86.457 +547877,29.428,86.8658 +547878,31.067,86.7376 +547879,32.738,86.6282 +547880,34.441,86.5394 +547881,28.071,86.8306 +547882,29.723,86.7411 +547883,31.408,86.6709 +547884,33.127,86.622 +547885,26.715,86.7953 +547886,28.38,86.7445 +547887,30.078,86.7136 +547888,31.811,86.7046 +547889,25.361,86.7599 +547890,27.037,86.7479 +547891,28.748,86.7563 +547892,30.494,86.7873 +547893,24.007,86.7245 +547894,25.695,86.7512 +547895,27.417,86.799 +547896,29.175,86.8701 +547897,22.655,86.6891 +547898,24.353,86.7545 +547899,26.086,86.8417 +547900,27.855,86.9529 +547901,21.305,86.6537 +547902,23.011,86.7579 +547903,24.754,86.8844 +547904,26.534,87.0356 +547905,19.955,86.6183 +547906,21.67,86.7612 +547907,23.422,86.9271 +547908,25.211,87.1183 +547909,18.607,86.583 +547910,20.33,86.7645 +547911,22.089,86.9697 +547912,23.887,87.2008 +547913,17.26,86.5478 +547914,18.989,86.7679 +547915,20.755,87.0123 +547916,22.561,87.2833 +547917,15.915,86.5127 +547918,17.649,86.7713 +547919,19.422,87.0548 +547920,21.234,87.3656 +547921,14.571,86.4777 +547922,16.31,86.7747 +547923,18.087,87.0972 +547924,19.906,87.4477 +547925,13.228,86.443 +547926,14.971,86.7782 +547927,16.752,87.1395 +547928,18.576,87.5296 +547929,11.887,86.4085 +547930,13.632,86.7818 +547931,15.417,87.1818 +547932,17.244,87.6112 +547933,10.547,86.3742 +547934,12.294,86.7854 +547935,14.081,87.224 +547936,15.912,87.6926 +547937,9.2079,86.3402 +547938,10.956,86.7891 +547939,12.745,87.266 +547940,14.578,87.7736 +547941,7.8706,86.3065 +547942,9.6188,86.793 +547943,11.408,87.3079 +547944,13.242,87.8543 +547945,6.5345,86.2731 +547946,8.2819,86.7969 +547947,10.071,87.3497 +547948,11.905,87.9346 +547949,5.1998,86.2401 +547950,6.9453,86.8009 +547951,8.7328,87.3913 +547952,10.566,88.0145 +547953,3.8664,86.2075 +547954,5.6092,86.805 +547955,7.3944,87.4328 +547956,9.2266,88.0939 +547957,2.5344,86.1753 +547958,4.2735,86.8093 +547959,6.0555,87.4741 +547960,7.8852,88.1729 +547961,1.2036,86.1435 +547962,2.9382,86.8137 +547963,4.7162,87.5152 +547964,6.5424,88.2514 +547965,359.87,86.1123 +547966,1.6033,86.8183 +547967,3.3763,87.5562 +547968,5.1982,88.3293 +547969,358.55,86.0815 +547970,0.26889,86.823 +547971,2.0359,87.5969 +547972,3.8526,88.4067 +547973,357.22,86.0512 +547974,358.93,86.8279 +547975,0.69501,87.6375 +547976,2.5055,88.4835 +547977,355.89,86.0215 +547978,357.6,86.833 +547979,359.35,87.6778 +547980,1.157,88.5596 +547981,354.57,85.9924 +547982,356.27,86.8383 +547983,358.01,87.7179 +547984,359.81,88.6352 +547985,353.25,85.9639 +547986,354.94,86.8437 +547987,356.67,87.7578 +547988,358.46,88.71 +547989,351.92,85.936 +547990,353.6,86.8494 +547991,355.33,87.7974 +547992,357.1,88.7841 +547993,350.6,85.9088 +547994,352.27,86.8553 +547995,353.98,87.8368 +547996,355.75,88.8575 +547997,349.29,85.8823 +547998,350.94,86.8614 +547999,352.64,87.8759 +548000,354.39,88.9301 +548001,347.97,85.8565 +548002,349.61,86.8677 +548003,351.3,87.9148 +548004,353.04,89.00192 +548005,346.65,85.8314 +548006,348.28,86.8743 +548007,349.95,87.9534 +548008,351.68,89.07292 +548009,345.34,85.8071 +548010,346.95,86.8811 +548011,348.61,87.9916 +548012,350.32,89.14307 +548013,344.02,85.7836 +548014,345.62,86.8882 +548015,347.26,88.0296 +548016,348.96,89.21236 +548017,342.71,85.7609 +548018,344.29,86.8955 +548019,345.91,88.0673 +548020,347.6,89.28074 +548021,341.4,85.739 +548022,342.96,86.9031 +548023,344.57,88.1047 +548024,346.23,89.3482 +548025,340.08,85.718 +548026,341.63,86.911 +548027,343.22,88.1417 +548028,344.87,89.41471 +548029,338.78,85.6978 +548030,340.3,86.9192 +548031,341.87,88.1785 +548032,343.5,89.48025 +548033,337.47,85.6786 +548034,338.97,86.9277 +548035,340.52,88.2148 +548036,342.13,89.54479 +548037,336.16,85.6603 +548038,337.64,86.9365 +548039,339.18,88.2509 +548040,340.76,89.60831 +548041,334.85,85.6429 +548042,336.32,86.9456 +548043,337.83,88.2866 +548044,339.4,89.67079 +548045,333.55,85.6265 +548046,334.99,86.955 +548047,336.48,88.3219 +548048,338.02,89.73221 +548049,332.24,85.6111 +548050,333.66,86.9647 +548051,335.13,88.3569 +548052,336.65,89.79254 +548053,330.94,85.5967 +548054,332.33,86.9747 +548055,333.78,88.3915 +548056,335.28,89.85176 +548057,329.64,85.5834 +548058,331.01,86.9851 +548059,332.43,88.4257 +548060,333.9,89.909861 +548061,328.34,85.571 +548062,329.68,86.9959 +548063,331.08,88.4595 +548064,332.53,89.966812 +548065,327.04,85.5598 +548066,328.36,87.007 +548067,329.73,88.4929 +548068,331.15,90.022599 +548069,325.74,85.5496 +548070,327.03,87.0184 +548071,328.37,88.526 +548072,329.77,90.077201 +548073,324.44,85.5405 +548074,325.71,87.0302 +548075,327.02,88.5586 +548076,328.39,90.1306 +548077,323.14,85.5326 +548078,324.38,87.0424 +548079,325.67,88.5908 +548080,327.01,90.18279 +548081,321.85,85.5258 +548082,323.06,87.0549 +548083,324.32,88.6226 +548084,325.63,90.23373 +548085,320.55,85.5201 +548086,321.73,87.0678 +548087,322.96,88.654 +548088,324.25,90.28343 +548089,319.26,85.5156 +548090,320.41,87.0811 +548091,321.61,88.6849 +548092,322.87,90.33186 +548093,317.96,85.5123 +548094,319.08,87.0948 +548095,320.26,88.7154 +548096,321.48,90.37901 +548097,316.67,85.5102 +548098,317.76,87.1089 +548099,318.9,88.7455 +548100,320.1,90.42487 +548101,315.38,85.5093 +548102,316.44,87.1234 +548103,317.55,88.7752 +548104,318.71,90.46942 +548105,314.08,85.5096 +548106,315.11,87.1382 +548107,316.19,88.8044 +548108,317.32,90.51265 +548109,312.79,85.5112 +548110,313.79,87.1535 +548111,314.84,88.8331 +548112,315.94,90.55455 +548113,311.5,85.514 +548114,312.47,87.1692 +548115,313.48,88.8614 +548116,314.55,90.59511 +548117,310.21,85.518 +548118,311.15,87.1853 +548119,312.13,88.8892 +548120,313.16,90.63432 +548121,308.92,85.5234 +548122,309.82,87.2018 +548123,310.77,88.9166 +548124,311.77,90.67216 +548125,307.64,85.53 +548126,308.5,87.2187 +548127,309.41,88.9435 +548128,310.38,90.70864 +548129,306.35,85.5378 +548130,307.18,87.2361 +548131,308.06,88.97 +548132,308.98,90.74374 +548133,305.06,85.547 +548134,305.86,87.2539 +548135,306.7,88.996 +548136,307.59,90.77745 +548137,303.78,85.5575 +548138,304.54,87.2721 +548139,305.34,89.02146 +548140,306.2,90.80977 +548141,302.49,85.5693 +548142,303.22,87.2907 +548143,303.99,89.0465 +548144,304.8,90.8407 +548145,301.2,85.5825 +548146,301.89,87.3097 +548147,302.63,89.07105 +548148,303.41,90.87022 +548149,299.92,85.5969 +548150,300.57,87.3292 +548151,301.27,89.09513 +548152,302.02,90.89834 +548153,298.63,85.6127 +548154,299.25,87.3491 +548155,299.91,89.11873 +548156,300.62,90.92505 +548157,297.35,85.6298 +548158,297.93,87.3695 +548159,298.55,89.14185 +548160,299.22,90.95034 +548161,296.07,85.6482 +548162,296.61,87.3903 +548163,297.2,89.16449 +548164,297.83,90.97422 +548165,294.78,85.668 +548166,295.29,87.4115 +548167,295.84,89.18664 +548168,296.43,90.99669 +548169,293.5,85.6892 +548170,293.97,87.4331 +548171,294.48,89.20832 +548172,295.03,91.0177 +548173,292.22,85.7117 +548174,292.65,87.4552 +548175,293.12,89.22951 +548176,293.63,91.0374 +548177,290.93,85.7355 +548178,291.33,87.4778 +548179,291.76,89.25021 +548180,292.24,91.0556 +548181,289.65,85.7607 +548182,290.01,87.5007 +548183,290.4,89.27044 +548184,290.84,91.0724 +548185,288.37,85.7872 +548186,288.69,87.5241 +548187,289.04,89.29018 +548188,289.44,91.0878 +548189,287.09,85.815 +548190,287.37,87.548 +548191,287.68,89.30944 +548192,288.04,91.1018 +548193,285.8,85.8443 +548194,286.05,87.5722 +548195,286.32,89.32822 +548196,286.64,91.1144 +548197,284.52,85.8748 +548198,284.73,87.5969 +548199,284.96,89.34652 +548200,285.24,91.1256 +548201,283.24,85.9067 +548202,283.41,87.6221 +548203,283.6,89.36434 +548204,283.84,91.1354 +548205,281.96,85.9399 +548206,282.09,87.6477 +548207,282.25,89.38169 +548208,282.44,91.1438 +548209,280.68,85.9745 +548210,280.76,87.6737 +548211,280.89,89.39856 +548212,281.04,91.1508 +548213,279.4,86.0104 +548214,279.44,87.7001 +548215,279.53,89.41495 +548216,279.64,91.1564 +548217,278.11,86.0476 +548218,278.12,87.7269 +548219,278.17,89.43088 +548220,278.24,91.1607 +548221,276.83,86.0861 +548222,276.8,87.7542 +548223,276.81,89.44634 +548224,276.84,91.1637 +548225,275.55,86.126 +548226,275.48,87.7819 +548227,275.45,89.46133 +548228,275.44,91.1653 +548229,274.27,86.1671 +548230,274.16,87.81 +548231,274.09,89.47586 +548232,274.04,91.1655 +548233,272.99,86.2095 +548234,272.84,87.8385 +548235,272.73,89.48993 +548236,272.64,91.1645 +548237,271.7,86.2532 +548238,271.52,87.8675 +548239,271.37,89.50355 +548240,271.24,91.1621 +548241,270.42,86.2982 +548242,270.2,87.8968 +548243,270.01,89.51672 +548244,269.84,91.1584 +548245,269.14,86.3444 +548246,268.88,87.9265 +548247,268.65,89.52943 +548248,268.44,91.1534 +548249,267.85,86.3919 +548250,267.56,87.9567 +548251,267.29,89.54171 +548252,267.04,91.1472 +548253,266.57,86.4406 +548254,266.24,87.9872 +548255,265.93,89.55354 +548256,265.64,91.1397 +548257,265.29,86.4906 +548258,264.91,88.0181 +548259,264.57,89.56494 +548260,264.25,91.131 +548261,264,86.5417 +548262,263.59,88.0494 +548263,263.21,89.57591 +548264,262.85,91.121 +548265,262.72,86.5941 +548266,262.27,88.0811 +548267,261.85,89.58645 +548268,261.45,91.1098 +548269,261.43,86.6476 +548270,260.95,88.1132 +548271,260.49,89.59658 +548272,260.05,91.0974 +548273,260.15,86.7023 +548274,259.63,88.1456 +548275,259.13,89.60629 +548276,258.66,91.0839 +548277,258.86,86.7582 +548278,258.3,88.1784 +548279,257.77,89.61559 +548280,257.26,91.0692 +548281,257.58,86.8152 +548282,256.98,88.2116 +548283,256.41,89.62449 +548284,255.86,91.0533 +548285,256.29,86.8733 +548286,255.66,88.2451 +548287,255.05,89.63299 +548288,254.47,91.0363 +548289,255,86.9325 +548290,254.34,88.2789 +548291,253.69,89.6411 +548292,253.07,91.0182 +548293,253.71,86.9928 +548294,253.01,88.3131 +548295,252.33,89.64883 +548296,251.68,90.99906 +548297,252.42,87.0541 +548298,251.69,88.3476 +548299,250.98,89.65618 +548300,250.28,90.97882 +548301,251.14,87.1165 +548302,250.37,88.3825 +548303,249.62,89.66315 +548304,248.89,90.95755 +548305,249.85,87.18 +548306,249.04,88.4177 +548307,248.26,89.66977 +548308,247.5,90.93525 +548309,248.55,87.2444 +548310,247.72,88.4531 +548311,246.9,89.67602 +548312,246.1,90.91196 +548313,247.26,87.3098 +548314,246.39,88.4889 +548315,245.54,89.68193 +548316,244.71,90.88769 +548317,245.97,87.3762 +548318,245.07,88.525 +548319,244.19,89.6875 +548320,243.32,90.86247 +548321,244.68,87.4435 +548322,243.74,88.5614 +548323,242.83,89.69273 +548324,241.93,90.83632 +548325,243.38,87.5117 +548326,242.42,88.598 +548327,241.47,89.69763 +548328,240.54,90.80926 +548329,242.09,87.5808 +548330,241.09,88.6349 +548331,240.11,89.70221 +548332,239.15,90.78132 +548333,240.8,87.6507 +548334,239.77,88.6721 +548335,238.76,89.70649 +548336,237.77,90.75253 +548337,239.5,87.7216 +548338,238.44,88.7096 +548339,237.4,89.71046 +548340,236.38,90.7229 +548341,238.2,87.7932 +548342,237.12,88.7473 +548343,236.04,89.71413 +548344,234.99,90.69247 +548345,236.9,87.8656 +548346,235.79,88.7852 +548347,234.69,89.71752 +548348,233.61,90.66126 +548349,235.61,87.9388 +548350,234.46,88.8234 +548351,233.33,89.72064 +548352,232.22,90.62929 +548353,234.31,88.0127 +548354,233.13,88.8617 +548355,231.98,89.72348 +548356,230.84,90.5966 +548357,233,88.0874 +548358,231.81,88.9003 +548359,230.62,89.72607 +548360,229.46,90.56321 +548361,231.7,88.1627 +548362,230.48,88.9391 +548363,229.27,89.7284 +548364,228.08,90.52914 +548365,230.4,88.2387 +548366,229.15,88.9781 +548367,227.91,89.7305 +548368,226.69,90.49443 +548369,229.1,88.3153 +548370,227.82,89.01729 +548371,226.56,89.73236 +548372,225.32,90.4591 +548373,227.79,88.3925 +548374,226.49,89.05664 +548375,225.2,89.734 +548376,223.94,90.42318 +548377,226.49,88.4703 +548378,225.16,89.09616 +548379,223.85,89.73543 +548380,222.56,90.3867 +548381,225.18,88.5486 +548382,223.83,89.13583 +548383,222.5,89.73665 +548384,221.18,90.34969 +548385,223.87,88.6275 +548386,222.5,89.17565 +548387,221.14,89.73768 +548388,219.81,90.31217 +548389,222.56,88.7068 +548390,221.17,89.2156 +548391,219.79,89.73852 +548392,218.43,90.27418 +548393,221.25,88.7866 +548394,219.84,89.25567 +548395,218.44,89.73919 +548396,217.06,90.23574 +548397,219.94,88.8668 +548398,218.51,89.29586 +548399,217.09,89.73969 +548400,215.69,90.19689 +548401,218.63,88.9474 +548402,217.17,89.33616 +548403,215.74,89.74004 +548404,214.32,90.15765 +548405,217.31,89.02832 +548406,215.84,89.37654 +548407,214.38,89.74025 +548408,212.95,90.11805 +548409,216,89.1096 +548410,214.51,89.41702 +548411,213.03,89.74032 +548412,211.58,90.078124 +548413,214.68,89.19118 +548414,213.17,89.45756 +548415,211.68,89.74027 +548416,210.21,90.037903 +548417,213.37,89.27302 +548418,211.84,89.49817 +548419,210.33,89.7401 +548420,208.85,89.9974155 +548421,212.05,89.3551 +548422,210.51,89.53883 +548423,208.98,89.73983 +548424,207.48,89.956691 +548425,210.73,89.43738 +548426,209.17,89.57953 +548427,207.63,89.73946 +548428,206.12,89.915762 +548429,209.41,89.51982 +548430,207.84,89.62026 +548431,206.28,89.73901 +548432,204.75,89.87466 +548433,208.09,89.60241 +548434,206.5,89.661 +548435,204.94,89.73849 +548436,203.39,89.83341 +548437,206.76,89.68509 +548438,205.16,89.70176 +548439,203.59,89.73791 +548440,202.03,89.79204 +548441,205.44,89.76785 +548442,203.83,89.74252 +548443,202.24,89.73727 +548444,200.67,89.75059 +548445,204.11,89.85064 +548446,202.49,89.78326 +548447,200.89,89.73659 +548448,199.32,89.70909 +548449,202.78,89.933441 +548450,201.15,89.82398 +548451,199.54,89.73588 +548452,197.96,89.66757 +548453,201.45,90.01621 +548454,199.81,89.86466 +548455,198.2,89.73515 +548456,196.6,89.62606 +548457,200.12,90.098916 +548458,198.48,89.905298 +548459,196.85,89.73441 +548460,195.25,89.58458 +548461,198.79,90.18153 +548462,197.14,89.945878 +548463,195.51,89.73367 +548464,193.9,89.54317 +548465,197.46,90.26401 +548466,195.8,89.986391 +548467,194.16,89.73293 +548468,192.55,89.50187 +548469,196.13,90.34633 +548470,194.46,90.026824 +548471,192.81,89.73222 +548472,191.2,89.46069 +548473,194.79,90.42845 +548474,193.12,90.067168 +548475,191.47,89.73154 +548476,189.85,89.41968 +548477,193.45,90.51035 +548478,191.78,90.10741 +548479,190.12,89.7309 +548480,188.5,89.37886 +548481,192.12,90.59198 +548482,190.43,90.14754 +548483,188.78,89.73032 +548484,187.15,89.33826 +548485,190.78,90.67332 +548486,189.09,90.18755 +548487,187.44,89.72979 +548488,185.81,89.29791 +548489,189.44,90.75433 +548490,187.75,90.22743 +548491,186.09,89.72934 +548492,184.46,89.25785 +548493,188.1,90.83498 +548494,186.41,90.26716 +548495,184.75,89.72896 +548496,183.12,89.21809 +548497,186.75,90.91523 +548498,185.06,90.30674 +548499,183.41,89.72869 +548500,181.78,89.17868 +548501,185.41,90.99506 +548502,183.72,90.34616 +548503,182.07,89.72851 +548504,180.44,89.13964 +548505,184.06,91.0744 +548506,182.38,90.38539 +548507,180.72,89.72844 +548508,179.1,89.10099 +548509,182.71,91.1533 +548510,181.03,90.42445 +548511,179.38,89.7285 +548512,177.76,89.06278 +548513,181.37,91.2316 +548514,179.69,90.4633 +548515,178.04,89.72869 +548516,176.43,89.02503 +548517,180.02,91.3094 +548518,178.34,90.50195 +548519,176.7,89.72902 +548520,175.09,88.9878 +548521,178.66,91.3867 +548522,177,90.54038 +548523,175.36,89.72951 +548524,173.76,88.951 +548525,177.31,91.4632 +548526,175.65,90.57859 +548527,174.02,89.73015 +548528,172.43,88.9148 +548529,175.96,91.5392 +548530,174.3,90.61655 +548531,172.68,89.73097 +548532,171.1,88.8792 +548533,174.6,91.6144 +548534,172.95,90.65427 +548535,171.34,89.73196 +548536,169.77,88.8441 +548537,173.25,91.689 +548538,171.61,90.69173 +548539,170,89.73315 +548540,168.44,88.8097 +548541,171.89,91.7628 +548542,170.26,90.72893 +548543,168.67,89.73453 +548544,167.11,88.776 +548545,170.53,91.8358 +548546,168.91,90.76585 +548547,167.33,89.73613 +548548,165.78,88.7429 +548549,169.17,91.908 +548550,167.56,90.80248 +548551,165.99,89.73793 +548552,164.46,88.7105 +548553,167.81,91.9794 +548554,166.21,90.83881 +548555,164.65,89.73997 +548556,163.13,88.6789 +548557,166.44,92.05 +548558,164.86,90.87484 +548559,163.32,89.74224 +548560,161.81,88.648 +548561,165.08,92.1196 +548562,163.51,90.91056 +548563,161.98,89.74475 +548564,160.49,88.6179 +548565,163.71,92.1884 +548566,162.16,90.94595 +548567,160.64,89.74751 +548568,159.17,88.5886 +548569,162.35,92.2562 +548570,160.81,90.98102 +548571,159.31,89.75053 +548572,157.85,88.5602 +548573,160.98,92.323 +548574,159.45,91.0157 +548575,157.97,89.75382 +548576,156.53,88.5326 +548577,159.61,92.3888 +548578,158.1,91.0501 +548579,156.64,89.75739 +548580,155.21,88.5058 +548581,158.24,92.4536 +548582,156.75,91.0841 +548583,155.3,89.76124 +548584,153.9,88.48 +548585,156.87,92.5174 +548586,155.4,91.1178 +548587,153.97,89.76538 +548588,152.58,88.4551 +548589,155.49,92.5801 +548590,154.04,91.151 +548591,152.64,89.76982 +548592,151.27,88.4312 +548593,154.12,92.6417 +548594,152.69,91.1839 +548595,151.3,89.77457 +548596,149.95,88.4082 +548597,152.74,92.7021 +548598,151.33,91.2164 +548599,149.97,89.77963 +548600,148.64,88.3863 +548601,151.37,92.7615 +548602,149.98,91.2486 +548603,148.64,89.78501 +548604,147.33,88.3653 +548605,149.99,92.8196 +548606,148.62,91.2803 +548607,147.3,89.79072 +548608,146.02,88.3454 +548609,148.61,92.8766 +548610,147.27,91.3115 +548611,145.97,89.79676 +548612,144.71,88.3265 +548613,147.23,92.9323 +548614,145.91,91.3424 +548615,144.64,89.80315 +548616,143.4,88.3087 +548617,145.85,92.9869 +548618,144.56,91.3729 +548619,143.31,89.80988 +548620,142.09,88.292 +548621,144.47,93.0402 +548622,143.2,91.4029 +548623,141.97,89.81696 +548624,140.79,88.2764 +548625,143.09,93.0922 +548626,141.84,91.4325 +548627,140.64,89.8244 +548628,139.48,88.262 +548629,141.7,93.1429 +548630,140.48,91.4616 +548631,139.31,89.83221 +548632,138.18,88.2487 +548633,140.32,93.1923 +548634,139.13,91.4903 +548635,137.98,89.84039 +548636,136.87,88.2365 +548637,138.93,93.2404 +548638,137.77,91.5185 +548639,136.65,89.84895 +548640,135.57,88.2255 +548641,137.55,93.2872 +548642,136.41,91.5463 +548643,135.32,89.85788 +548644,134.27,88.2158 +548645,136.16,93.3326 +548646,135.05,91.5736 +548647,133.99,89.86721 +548648,132.97,88.2072 +548649,134.77,93.3766 +548650,133.69,91.6004 +548651,132.66,89.87692 +548652,131.66,88.1998 +548653,133.38,93.4192 +548654,132.33,91.6268 +548655,131.33,89.88703 +548656,130.36,88.1937 +548657,131.99,93.4605 +548658,130.97,91.6526 +548659,130,89.89753 +548660,129.06,88.1889 +548661,130.6,93.5003 +548662,129.61,91.678 +548663,128.67,89.908445 +548664,127.77,88.1853 +548665,129.21,93.5387 +548666,128.25,91.7029 +548667,127.34,89.919764 +548668,126.47,88.183 +548669,127.82,93.5757 +548670,126.89,91.7273 +548671,126.01,89.931495 +548672,125.17,88.1819 +548673,126.43,93.6112 +548674,125.53,91.7512 +548675,124.68,89.94364 +548676,123.87,88.1822 +548677,125.03,93.6453 +548678,124.17,91.7746 +548679,123.36,89.956202 +548680,122.58,88.1838 +548681,123.64,93.6779 +548682,122.81,91.7975 +548683,122.03,89.969186 +548684,121.28,88.1867 +548685,122.24,93.709 +548686,121.45,91.8199 +548687,120.7,89.982593 +548688,119.98,88.1909 +548689,120.85,93.7386 +548690,120.09,91.8418 +548691,119.37,89.9964262 +548692,118.69,88.1964 +548693,119.45,93.7668 +548694,118.73,91.8632 +548695,118.04,90.010688 +548696,117.4,88.2033 +548697,118.06,93.7935 +548698,117.36,91.8841 +548699,116.71,90.02538 +548700,116.1,88.2115 +548701,116.66,93.8187 +548702,116,91.9044 +548703,115.39,90.040504 +548704,114.81,88.2211 +548705,115.26,93.8423 +548706,114.64,91.9242 +548707,114.06,90.056062 +548708,113.51,88.2321 +548709,113.86,93.8645 +548710,113.28,91.9436 +548711,112.73,90.072056 +548712,112.22,88.2444 +548713,112.46,93.8852 +548714,111.91,91.9623 +548715,111.4,90.088485 +548716,110.93,88.2581 +548717,111.06,93.9043 +548718,110.55,91.9806 +548719,110.08,90.10535 +548720,109.64,88.2731 +548721,109.67,93.9219 +548722,109.19,91.9984 +548723,108.75,90.12266 +548724,108.34,88.2896 +548725,108.27,93.9381 +548726,107.82,92.0156 +548727,107.42,90.1404 +548728,107.05,88.3074 +548729,106.87,93.9527 +548730,106.46,92.0323 +548731,106.09,90.15858 +548732,105.76,88.3265 +548733,105.46,93.9658 +548734,105.1,92.0485 +548735,104.77,90.1772 +548736,104.47,88.3471 +548737,104.06,93.9774 +548738,103.73,92.0642 +548739,103.44,90.19626 +548740,103.18,88.369 +548741,102.66,93.9875 +548742,102.37,92.0793 +548743,102.11,90.21575 +548744,101.89,88.3923 +548745,101.26,93.9961 +548746,101.01,92.0939 +548747,100.79,90.23568 +548748,100.6,88.417 +548749,99.861,94.0032 +548750,99.643,92.108 +548751,99.459,90.25605 +548752,99.305,88.4431 +548753,98.46,94.0088 +548754,98.279,92.1216 +548755,98.132,90.27685 +548756,98.014,88.4705 +548757,97.058,94.013 +548758,96.915,92.1347 +548759,96.805,90.29808 +548760,96.723,88.4993 +548761,95.657,94.0156 +548762,95.551,92.1472 +548763,95.477,90.31974 +548764,95.432,88.5295 +548765,94.255,94.0168 +548766,94.187,92.1593 +548767,94.15,90.34184 +548768,94.141,88.561 +548769,92.854,94.0166 +548770,92.823,92.1708 +548771,92.823,90.36436 +548772,92.85,88.5938 +548773,91.452,94.0149 +548774,91.459,92.1819 +548775,91.496,90.3873 +548776,91.559,88.628 +548777,90.051,94.0117 +548778,90.095,92.1924 +548779,90.168,90.41066 +548780,90.267,88.6636 +548781,88.649,94.0071 +548782,88.731,92.2024 +548783,88.841,90.43445 +548784,88.976,88.7004 +548785,87.248,94.0011 +548786,87.367,92.2119 +548787,87.513,90.45864 +548788,87.684,88.7386 +548789,85.847,93.9937 +548790,86.003,92.221 +548791,86.185,90.48325 +548792,86.392,88.7781 +548793,84.446,93.9849 +548794,84.639,92.2295 +548795,84.858,90.50827 +548796,85.1,88.8189 +548797,83.045,93.9747 +548798,83.275,92.2376 +548799,83.53,90.53369 +548800,83.808,88.861 +548801,81.644,93.9632 +548802,81.911,92.2451 +548803,82.202,90.55951 +548804,82.515,88.9044 +548805,80.244,93.9503 +548806,80.547,92.2522 +548807,80.874,90.58573 +548808,81.222,88.9491 +548809,78.844,93.936 +548810,79.183,92.2588 +548811,79.545,90.61234 +548812,79.929,88.995 +548813,77.444,93.9205 +548814,77.819,92.265 +548815,78.217,90.63933 +548816,78.635,89.04209 +548817,76.045,93.9037 +548818,76.456,92.2707 +548819,76.888,90.6667 +548820,77.341,89.09046 +548821,74.646,93.8855 +548822,75.092,92.2759 +548823,75.56,90.69446 +548824,76.046,89.14004 +548825,73.247,93.8661 +548826,73.729,92.2807 +548827,74.231,90.72258 +548828,74.751,89.19082 +548829,71.849,93.8455 +548830,72.366,92.285 +548831,72.902,90.75106 +548832,73.456,89.24278 +548833,70.452,93.8236 +548834,71.002,92.2889 +548835,71.572,90.77991 +548836,72.16,89.2959 +548837,69.054,93.8006 +548838,69.639,92.2924 +548839,70.243,90.8091 +548840,70.863,89.35017 +548841,67.658,93.7763 +548842,68.276,92.2954 +548843,68.913,90.83865 +548844,69.566,89.40558 +548845,66.262,93.7509 +548846,66.914,92.2981 +548847,67.583,90.86853 +548848,68.269,89.46209 +548849,64.866,93.7243 +548850,65.551,92.3003 +548851,66.253,90.89875 +548852,66.97,89.5197 +548853,63.471,93.6966 +548854,64.189,92.302 +548855,64.922,90.92929 +548856,65.671,89.57838 +548857,62.077,93.6679 +548858,62.826,92.3034 +548859,63.592,90.96015 +548860,64.372,89.63811 +548861,60.683,93.638 +548862,61.464,92.3044 +548863,62.261,90.99133 +548864,63.072,89.69888 +548865,59.29,93.6071 +548866,60.103,92.3051 +548867,60.93,91.0228 +548868,61.771,89.76066 +548869,57.898,93.5752 +548870,58.741,92.3053 +548871,59.598,91.0546 +548872,60.469,89.82343 +548873,56.506,93.5423 +548874,57.379,92.3052 +548875,58.266,91.0866 +548876,59.167,89.88716 +548877,55.116,93.5084 +548878,56.018,92.3047 +548879,56.934,91.119 +548880,57.863,89.95184 +548881,53.726,93.4735 +548882,54.657,92.3038 +548883,55.602,91.1516 +548884,56.559,90.017439 +548885,52.336,93.4377 +548886,53.296,92.3027 +548887,54.269,91.1845 +548888,55.255,90.083933 +548889,50.948,93.4011 +548890,51.936,92.3011 +548891,52.937,91.2176 +548892,53.949,90.1513 +548893,49.56,93.3635 +548894,50.576,92.2993 +548895,51.603,91.251 +548896,52.642,90.21951 +548897,48.174,93.3251 +548898,49.216,92.2971 +548899,50.27,91.2846 +548900,51.335,90.28855 +548901,46.788,93.2859 +548902,47.856,92.2946 +548903,48.936,91.3185 +548904,50.027,90.35837 +548905,45.403,93.2459 +548906,46.497,92.2919 +548907,47.602,91.3526 +548908,48.718,90.42897 +548909,44.019,93.2052 +548910,45.137,92.2888 +548911,46.267,91.3868 +548912,47.407,90.50031 +548913,42.636,93.1637 +548914,43.778,92.2854 +548915,44.932,91.4213 +548916,46.096,90.57236 +548917,41.254,93.1216 +548918,42.42,92.2818 +548919,43.597,91.456 +548920,44.784,90.6451 +548921,39.873,93.0787 +548922,41.061,92.2779 +548923,42.261,91.4909 +548924,43.471,90.71849 +548925,38.492,93.0352 +548926,39.703,92.2738 +548927,40.925,91.5259 +548928,42.157,90.79252 +548929,37.113,92.9911 +548930,38.346,92.2694 +548931,39.589,91.5611 +548932,40.842,90.86714 +548933,35.735,92.9465 +548934,36.988,92.2648 +548935,38.252,91.5964 +548936,39.526,90.94233 +548937,34.358,92.9012 +548938,35.631,92.26 +548939,36.915,91.6319 +548940,38.209,91.0181 +548941,32.982,92.8555 +548942,34.275,92.2549 +548943,35.578,91.6675 +548944,36.891,91.0943 +548945,31.607,92.8092 +548946,32.918,92.2497 +548947,34.24,91.7033 +548948,35.571,91.171 +548949,30.233,92.7625 +548950,31.562,92.2442 +548951,32.902,91.7391 +548952,34.251,91.2482 +548953,28.861,92.7154 +548954,30.206,92.2386 +548955,31.563,91.7751 +548956,32.929,91.3258 +548957,27.489,92.6679 +548958,28.851,92.2328 +548959,30.224,91.8111 +548960,31.607,91.4038 +548961,26.118,92.62 +548962,27.496,92.2268 +548963,28.884,91.8472 +548964,30.283,91.4821 +548965,24.749,92.5718 +548966,26.141,92.2207 +548967,27.545,91.8834 +548968,28.958,91.5608 +548969,23.381,92.5233 +548970,24.787,92.2145 +548971,26.204,91.9196 +548972,27.632,91.6397 +548973,22.013,92.4745 +548974,23.433,92.2081 +548975,24.864,91.9559 +548976,26.305,91.7189 +548977,20.648,92.4255 +548978,22.079,92.2016 +548979,23.522,91.9923 +548980,24.976,91.7983 +548981,19.283,92.3762 +548982,20.726,92.195 +548983,22.181,92.0286 +548984,23.647,91.8779 +548985,17.919,92.3268 +548986,19.373,92.1883 +548987,20.839,92.065 +548988,22.316,91.9577 +548989,16.557,92.2773 +548990,18.02,92.1815 +548991,19.496,92.1013 +548992,20.984,92.0376 +548993,15.195,92.2276 +548994,16.668,92.1747 +548995,18.154,92.1377 +548996,19.651,92.1176 +548997,13.835,92.1779 +548998,15.316,92.1677 +548999,16.81,92.174 +549000,18.316,92.1977 +549001,12.477,92.1281 +549002,13.965,92.1607 +549003,15.467,92.2103 +549004,16.981,92.2777 +549005,11.119,92.0783 +549006,12.614,92.1537 +549007,14.122,92.2466 +549008,15.644,92.3578 +549009,9.7624,92.0285 +549010,11.263,92.1467 +549011,12.778,92.2828 +549012,14.306,92.4378 +549013,8.4072,91.9788 +549014,9.9128,92.1396 +549015,11.433,92.3189 +549016,12.966,92.5178 +549017,7.0532,91.9291 +549018,8.5629,92.1325 +549019,10.087,92.355 +549020,11.625,92.5976 +549021,5.7003,91.8796 +549022,7.2134,92.1254 +549023,8.7413,92.391 +549024,10.284,92.6773 +549025,4.3488,91.8302 +549026,5.8642,92.1183 +549027,7.395,92.4268 +549028,8.9404,92.7568 +549029,2.9984,91.781 +549030,4.5154,92.1113 +549031,6.0481,92.4626 +549032,7.596,92.8361 +549033,1.6492,91.732 +549034,3.1671,92.1043 +549035,4.7009,92.4982 +549036,6.2503,92.9151 +549037,0.30127,91.6832 +549038,1.8191,92.0973 +549039,3.3532,92.5338 +549040,4.9034,92.9938 +549041,358.95,91.6347 +549042,0.47143,92.0904 +549043,2.005,92.5691 +549044,3.5552,93.0723 +549045,357.61,91.5866 +549046,359.12,92.0835 +549047,0.65643,92.6043 +549048,2.2057,93.1504 +549049,356.26,91.5387 +549050,357.78,92.0767 +549051,359.31,92.6394 +549052,0.855,93.2281 +549053,354.92,91.4912 +549054,356.43,92.07 +549055,357.96,92.6742 +549056,359.5,93.3054 +549057,353.58,91.4441 +549058,355.08,92.0634 +549059,356.61,92.7089 +549060,358.15,93.3822 +549061,352.24,91.3974 +549062,353.74,92.0569 +549063,355.26,92.7434 +549064,356.8,93.4585 +549065,350.9,91.3512 +549066,352.39,92.0506 +549067,353.91,92.7777 +549068,355.44,93.5344 +549069,349.56,91.3054 +549070,351.05,92.0443 +549071,352.56,92.8117 +549072,354.08,93.6096 +549073,348.22,91.2602 +549074,349.7,92.0382 +549075,351.2,92.8455 +549076,352.72,93.6843 +549077,346.89,91.2155 +549078,348.36,92.0322 +549079,349.85,92.8791 +549080,351.36,93.7584 +549081,345.55,91.1714 +549082,347.02,92.0264 +549083,348.5,92.9125 +549084,350,93.8318 +549085,344.22,91.1279 +549086,345.67,92.0208 +549087,347.15,92.9455 +549088,348.64,93.9046 +549089,342.89,91.085 +549090,344.33,92.0153 +549091,345.79,92.9783 +549092,347.28,93.9766 +549093,341.56,91.0427 +549094,342.99,92.01 +549095,344.44,93.0108 +549096,345.91,94.0479 +549097,340.23,91.0012 +549098,341.64,92.0049 +549099,343.08,93.043 +549100,344.55,94.1183 +549101,338.9,90.96032 +549102,340.3,92 +549103,341.73,93.0749 +549104,343.18,94.188 +549105,337.57,90.92021 +549106,338.96,91.9954 +549107,340.38,93.1065 +549108,341.81,94.2569 +549109,336.24,90.88085 +549110,337.62,91.9909 +549111,339.02,93.1378 +549112,340.45,94.3249 +549113,334.91,90.84229 +549114,336.28,91.9867 +549115,337.66,93.1687 +549116,339.08,94.392 +549117,333.59,90.80454 +549118,334.94,91.9827 +549119,336.31,93.1993 +549120,337.7,94.4581 +549121,332.27,90.76763 +549122,333.6,91.979 +549123,334.95,93.2296 +549124,336.33,94.5233 +549125,330.94,90.73159 +549126,332.26,91.9755 +549127,333.59,93.2595 +549128,334.96,94.5875 +549129,329.62,90.69643 +549130,330.92,91.9723 +549131,332.24,93.289 +549132,333.58,94.6507 +549133,328.3,90.66219 +549134,329.58,91.9694 +549135,330.88,93.3181 +549136,332.21,94.7128 +549137,326.98,90.62888 +549138,328.24,91.9667 +549139,329.52,93.3469 +549140,330.83,94.7739 +549141,325.66,90.59653 +549142,326.9,91.9644 +549143,328.16,93.3753 +549144,329.45,94.8339 +549145,324.34,90.56516 +549146,325.56,91.9623 +549147,326.8,93.4032 +549148,328.07,94.8928 +549149,323.03,90.5348 +549150,324.22,91.9606 +549151,325.44,93.4308 +549152,326.69,94.9505 +549153,321.71,90.50546 +549154,322.89,91.9591 +549155,324.08,93.4579 +549156,325.31,95.007 +549157,320.4,90.47717 +549158,321.55,91.958 +549159,322.72,93.4846 +549160,323.93,95.0624 +549161,319.08,90.44994 +549162,320.21,91.9572 +549163,321.36,93.5109 +549164,322.55,95.1165 +549165,317.77,90.4238 +549166,318.87,91.9567 +549167,320,93.5367 +549168,321.16,95.1694 +549169,316.46,90.39876 +549170,317.54,91.9566 +549171,318.64,93.5621 +549172,319.78,95.221 +549173,315.14,90.37485 +549174,316.2,91.9568 +549175,317.28,93.587 +549176,318.39,95.2713 +549177,313.83,90.35208 +549178,314.86,91.9574 +549179,315.92,93.6114 +549180,317.01,95.3203 +549181,312.52,90.33047 +549182,313.53,91.9584 +549183,314.56,93.6354 +549184,315.62,95.368 +549185,311.21,90.31004 +549186,312.19,91.9597 +549187,313.2,93.6589 +549188,314.23,95.4144 +549189,309.91,90.2908 +549190,310.86,91.9613 +549191,311.83,93.682 +549192,312.84,95.4593 +549193,308.6,90.27278 +549194,309.52,91.9634 +549195,310.47,93.7045 +549196,311.45,95.5029 +549197,307.29,90.25598 +549198,308.19,91.9658 +549199,309.11,93.7266 +549200,310.06,95.5451 +549201,305.98,90.24041 +549202,306.85,91.9686 +549203,307.74,93.7481 +549204,308.67,95.5859 +549205,304.68,90.22611 +549206,305.52,91.9718 +549207,306.38,93.7692 +549208,307.27,95.6252 +549209,303.37,90.21307 +549210,304.18,91.9754 +549211,305.02,93.7897 +549212,305.88,95.6631 +549213,302.07,90.20131 +549214,302.85,91.9794 +549215,303.65,93.8098 +549216,304.49,95.6995 +549217,300.76,90.19084 +549218,301.51,91.9839 +549219,302.29,93.8293 +549220,303.09,95.7344 +549221,299.46,90.18168 +549222,300.18,91.9887 +549223,300.92,93.8483 +549224,301.7,95.7678 +549225,298.16,90.17383 +549226,298.85,91.9939 +549227,299.56,93.8667 +549228,300.3,95.7997 +549229,296.85,90.16731 +549230,297.51,91.9995 +549231,298.19,93.8847 +549232,298.91,95.8301 +549233,295.55,90.16213 +549234,296.18,92.0056 +549235,296.83,93.9021 +549236,297.51,95.859 +549237,294.25,90.15829 +549238,294.84,92.0121 +549239,295.46,93.9189 +549240,296.11,95.8863 +549241,292.95,90.1558 +549242,293.51,92.019 +549243,294.1,93.9352 +549244,294.71,95.9121 +549245,291.65,90.15467 +549246,292.18,92.0263 +549247,292.73,93.951 +549248,293.31,95.9364 +549249,290.35,90.15491 +549250,290.84,92.0341 +549251,291.37,93.9663 +549252,291.91,95.959 +549253,289.05,90.15653 +549254,289.51,92.0423 +549255,290,93.981 +549256,290.52,95.9802 +549257,287.75,90.15952 +549258,288.18,92.0509 +549259,288.63,93.9951 +549260,289.12,95.9997 +549261,286.45,90.1639 +549262,286.85,92.0599 +549263,287.27,94.0087 +549264,287.72,96.0176 +549265,285.15,90.16966 +549266,285.51,92.0694 +549267,285.9,94.0218 +549268,286.31,96.034 +549269,283.85,90.17682 +549270,284.18,92.0794 +549271,284.53,94.0342 +549272,284.91,96.0488 +549273,282.55,90.18537 +549274,282.85,92.0897 +549275,283.17,94.0462 +549276,283.51,96.062 +549277,281.25,90.19532 +549278,281.52,92.1005 +549279,281.8,94.0576 +549280,282.11,96.0736 +549281,279.95,90.20667 +549282,280.18,92.1118 +549283,280.43,94.0684 +549284,280.71,96.0836 +549285,278.66,90.21942 +549286,278.85,92.1235 +549287,279.07,94.0787 +549288,279.31,96.0921 +549289,277.36,90.23356 +549290,277.52,92.1356 +549291,277.7,94.0884 +549292,277.91,96.0989 +549293,276.06,90.24911 +549294,276.19,92.1481 +549295,276.33,94.0976 +549296,276.5,96.1042 +549297,274.76,90.26605 +549298,274.85,92.1611 +549299,274.97,94.1062 +549300,275.1,96.1078 +549301,273.46,90.28439 +549302,273.52,92.1745 +549303,273.6,94.1142 +549304,273.7,96.1099 +549305,272.17,90.30412 +549306,272.19,92.1884 +549307,272.23,94.1218 +549308,272.3,96.1105 +549309,270.87,90.32523 +549310,270.86,92.2027 +549311,270.86,94.1287 +549312,270.89,96.1094 +549313,269.57,90.34774 +549314,269.52,92.2174 +549315,269.5,94.1351 +549316,269.49,96.1068 +549317,268.27,90.37162 +549318,268.19,92.2326 +549319,268.13,94.141 +549320,268.09,96.1027 +549321,266.97,90.39688 +549322,266.86,92.2482 +549323,266.76,94.1463 +549324,266.69,96.097 +549325,265.67,90.4235 +549326,265.53,92.2642 +549327,265.39,94.1511 +549328,265.28,96.0897 +549329,264.37,90.45149 +549330,264.19,92.2806 +549331,264.03,94.1554 +549332,263.88,96.081 +549333,263.08,90.48083 +549334,262.86,92.2975 +549335,262.66,94.1591 +549336,262.48,96.0707 +549337,261.78,90.51152 +549338,261.53,92.3147 +549339,261.29,94.1622 +549340,261.08,96.0589 +549341,260.48,90.54354 +549342,260.19,92.3324 +549343,259.93,94.1649 +549344,259.68,96.0456 +549345,259.18,90.57689 +549346,258.86,92.3505 +549347,258.56,94.167 +549348,258.27,96.0309 +549349,257.88,90.61155 +549350,257.53,92.369 +549351,257.19,94.1686 +549352,256.87,96.0147 +549353,256.58,90.64752 +549354,256.19,92.3879 +549355,255.82,94.1697 +549356,255.47,95.997 +549357,255.28,90.68478 +549358,254.86,92.4072 +549359,254.46,94.1703 +549360,254.07,95.9779 +549361,253.97,90.72333 +549362,253.53,92.4269 +549363,253.09,94.1704 +549364,252.67,95.9573 +549365,252.67,90.76314 +549366,252.19,92.447 +549367,251.72,94.1699 +549368,251.27,95.9354 +549369,251.37,90.80421 +549370,250.86,92.4675 +549371,250.36,94.169 +549372,249.87,95.9121 +549373,250.07,90.84651 +549374,249.52,92.4883 +549375,248.99,94.1676 +549376,248.47,95.8874 +549377,248.76,90.89004 +549378,248.19,92.5095 +549379,247.63,94.1657 +549380,247.07,95.8613 +549381,247.46,90.93478 +549382,246.85,92.5311 +549383,246.26,94.1633 +549384,245.68,95.834 +549385,246.16,90.98071 +549386,245.52,92.553 +549387,244.89,94.1604 +549388,244.28,95.8053 +549389,244.85,91.0278 +549390,244.19,92.5753 +549391,243.53,94.1571 +549392,242.88,95.7753 +549393,243.55,91.0761 +549394,242.85,92.598 +549395,242.16,94.1533 +549396,241.49,95.744 +549397,242.24,91.1255 +549398,241.51,92.621 +549399,240.8,94.149 +549400,240.09,95.7115 +549401,240.94,91.176 +549402,240.18,92.6443 +549403,239.43,94.1443 +549404,238.69,95.6778 +549405,239.63,91.2277 +549406,238.84,92.668 +549407,238.07,94.1392 +549408,237.3,95.6429 +549409,238.32,91.2804 +549410,237.51,92.692 +549411,236.7,94.1336 +549412,235.91,95.6068 +549413,237.01,91.3341 +549414,236.17,92.7163 +549415,235.34,94.1277 +549416,234.51,95.5695 +549417,235.7,91.389 +549418,234.83,92.7409 +549419,233.97,94.1212 +549420,233.12,95.5311 +549421,234.39,91.4448 +549422,233.5,92.7658 +549423,232.61,94.1144 +549424,231.73,95.4917 +549425,233.08,91.5016 +549426,232.16,92.791 +549427,231.24,94.1072 +549428,230.34,95.4511 +549429,231.77,91.5594 +549430,230.82,92.8164 +549431,229.88,94.0996 +549432,228.95,95.4095 +549433,230.46,91.6182 +549434,229.48,92.8422 +549435,228.52,94.0916 +549436,227.56,95.3668 +549437,229.14,91.6779 +549438,228.15,92.8682 +549439,227.15,94.0832 +549440,226.17,95.3232 +549441,227.83,91.7384 +549442,226.81,92.8945 +549443,225.79,94.0745 +549444,224.78,95.2786 +549445,226.52,91.7999 +549446,225.47,92.921 +549447,224.43,94.0653 +549448,223.39,95.233 +549449,225.2,91.8622 +549450,224.13,92.9478 +549451,223.07,94.0559 +549452,222.01,95.1865 +549453,223.88,91.9254 +549454,222.79,92.9748 +549455,221.7,94.0461 +549456,220.62,95.1392 +549457,222.57,91.9893 +549458,221.45,93.002 +549459,220.34,94.036 +549460,219.24,95.091 +549461,221.25,92.054 +549462,220.11,93.0295 +549463,218.98,94.0255 +549464,217.86,95.0419 +549465,219.93,92.1195 +549466,218.77,93.0571 +549467,217.62,94.0148 +549468,216.47,94.9921 +549469,218.61,92.1857 +549470,217.43,93.085 +549471,216.26,94.0037 +549472,215.09,94.9415 +549473,217.29,92.2525 +549474,216.09,93.113 +549475,214.9,93.9923 +549476,213.71,94.8901 +549477,215.96,92.3201 +549478,214.75,93.1412 +549479,213.54,93.9807 +549480,212.33,94.8381 +549481,214.64,92.3882 +549482,213.41,93.1696 +549483,212.18,93.9688 +549484,210.95,94.7854 +549485,213.32,92.457 +549486,212.07,93.1981 +549487,210.82,93.9566 +549488,209.58,94.732 +549489,211.99,92.5263 +549490,210.72,93.2268 +549491,209.46,93.9442 +549492,208.2,94.678 +549493,210.66,92.5962 +549494,209.38,93.2556 +549495,208.1,93.9315 +549496,206.83,94.6235 +549497,209.34,92.6666 +549498,208.04,93.2845 +549499,206.74,93.9186 +549500,205.45,94.5684 +549501,208.01,92.7375 +549502,206.69,93.3136 +549503,205.38,93.9055 +549504,204.08,94.5128 +549505,206.68,92.8088 +549506,205.35,93.3427 +549507,204.03,93.8922 +549508,202.71,94.4567 +549509,205.35,92.8806 +549510,204.01,93.372 +549511,202.67,93.8787 +549512,201.33,94.4001 +549513,204.01,92.9527 +549514,202.66,93.4013 +549515,201.31,93.8649 +549516,199.97,94.3432 +549517,202.68,93.0252 +549518,201.32,93.4307 +549519,199.95,93.851 +549520,198.6,94.2858 +549521,201.35,93.098 +549522,199.97,93.4601 +549523,198.6,93.837 +549524,197.23,94.2281 +549525,200.01,93.1712 +549526,198.62,93.4896 +549527,197.24,93.8228 +549528,195.86,94.1701 +549529,198.68,93.2445 +549530,197.28,93.5192 +549531,195.89,93.8084 +549532,194.5,94.1118 +549533,197.34,93.3181 +549534,195.93,93.5487 +549535,194.53,93.7939 +549536,193.13,94.0533 +549537,196,93.3919 +549538,194.58,93.5783 +549539,193.17,93.7793 +549540,191.77,93.9945 +549541,194.66,93.4659 +549542,193.24,93.6079 +549543,191.82,93.7646 +549544,190.41,93.9355 +549545,193.32,93.54 +549546,191.89,93.6375 +549547,190.47,93.7498 +549548,189.05,93.8764 +549549,191.97,93.6141 +549550,190.54,93.667 +549551,189.11,93.7349 +549552,187.69,93.8172 +549553,190.63,93.6884 +549554,189.19,93.6965 +549555,187.76,93.7199 +549556,186.33,93.7579 +549557,189.29,93.7626 +549558,187.84,93.726 +549559,186.41,93.7048 +549560,184.97,93.6985 +549561,187.94,93.8369 +549562,186.49,93.7555 +549563,185.05,93.6897 +549564,183.62,93.6392 +549565,186.59,93.9111 +549566,185.14,93.7848 +549567,183.7,93.6745 +549568,182.26,93.5798 +549569,185.24,93.9852 +549570,183.79,93.8141 +549571,182.35,93.6594 +549572,180.91,93.5205 +549573,183.9,94.0592 +549574,182.44,93.8433 +549575,181,93.6441 +549576,179.56,93.4612 +549577,182.54,94.1331 +549578,181.09,93.8724 +549579,179.65,93.6289 +549580,178.21,93.4021 +549581,181.19,94.2067 +549582,179.74,93.9014 +549583,178.29,93.6137 +549584,176.86,93.3431 +549585,179.84,94.2802 +549586,178.39,93.9303 +549587,176.94,93.5985 +549588,175.51,93.2844 +549589,178.48,94.3534 +549590,177.04,93.9591 +549591,175.59,93.5833 +549592,174.16,93.2258 +549593,177.13,94.4264 +549594,175.68,93.9877 +549595,174.24,93.5682 +549596,172.81,93.1674 +549597,175.77,94.499 +549598,174.33,94.0161 +549599,172.89,93.5531 +549600,171.47,93.1093 +549601,174.41,94.5712 +549602,172.98,94.0444 +549603,171.55,93.538 +549604,170.12,93.0516 +549605,173.06,94.6431 +549606,171.62,94.0725 +549607,170.2,93.523 +549608,168.78,92.9942 +549609,171.69,94.7146 +549610,170.27,94.1004 +549611,168.85,93.5081 +549612,167.44,92.9371 +549613,170.33,94.7856 +549614,168.91,94.1281 +549615,167.5,93.4933 +549616,166.1,92.8805 +549617,168.97,94.8561 +549618,167.56,94.1556 +549619,166.15,93.4786 +549620,164.76,92.8242 +549621,167.61,94.9261 +549622,166.2,94.1829 +549623,164.81,93.464 +549624,163.42,92.7685 +549625,166.24,94.9955 +549626,164.85,94.21 +549627,163.46,93.4495 +549628,162.08,92.7132 +549629,164.88,95.0643 +549630,163.49,94.2368 +549631,162.11,93.4351 +549632,160.75,92.6585 +549633,163.51,95.1326 +549634,162.13,94.2633 +549635,160.77,93.4209 +549636,159.41,92.6043 +549637,162.14,95.2001 +549638,160.78,94.2896 +549639,159.42,93.4068 +549640,158.08,92.5507 +549641,160.77,95.267 +549642,159.42,94.3156 +549643,158.08,93.3929 +549644,156.74,92.4977 +549645,159.4,95.3331 +549646,158.06,94.3413 +549647,156.73,93.3792 +549648,155.41,92.4453 +549649,158.03,95.3986 +549650,156.7,94.3668 +549651,155.39,93.3656 +549652,154.08,92.3937 +549653,156.65,95.4632 +549654,155.34,94.3919 +549655,154.04,93.3523 +549656,152.75,92.3427 +549657,155.28,95.527 +549658,153.98,94.4167 +549659,152.7,93.3391 +549660,151.42,92.2924 +549661,153.91,95.5899 +549662,152.62,94.4412 +549663,151.36,93.3261 +549664,150.1,92.2429 +549665,152.53,95.652 +549666,151.26,94.4653 +549667,150.01,93.3134 +549668,148.77,92.1942 +549669,151.15,95.7132 +549670,149.9,94.4891 +549671,148.67,93.3009 +549672,147.44,92.1462 +549673,149.77,95.7734 +549674,148.54,94.5125 +549675,147.33,93.2886 +549676,146.12,92.0991 +549677,148.39,95.8326 +549678,147.18,94.5356 +549679,145.98,93.2766 +549680,144.8,92.0529 +549681,147.01,95.8909 +549682,145.82,94.5583 +549683,144.64,93.2648 +549684,143.47,92.0075 +549685,145.63,95.9481 +549686,144.46,94.5806 +549687,143.3,93.2533 +549688,142.15,91.9631 +549689,144.25,96.0043 +549690,143.1,94.6025 +549691,141.96,93.242 +549692,140.83,91.9195 +549693,142.87,96.0594 +549694,141.74,94.6241 +549695,140.62,93.231 +549696,139.51,91.877 +549697,141.48,96.1134 +549698,140.37,94.6452 +549699,139.28,93.2204 +549700,138.19,91.8354 +549701,140.1,96.1663 +549702,139.01,94.6659 +549703,137.94,93.21 +549704,136.87,91.7948 +549705,138.71,96.218 +549706,137.65,94.6861 +549707,136.6,93.1999 +549708,135.56,91.7552 +549709,137.32,96.2685 +549710,136.28,94.706 +549711,135.26,93.1901 +549712,134.24,91.7167 +549713,135.94,96.3178 +549714,134.92,94.7254 +549715,133.92,93.1807 +549716,132.93,91.6792 +549717,134.55,96.3658 +549718,133.56,94.7443 +549719,132.58,93.1715 +549720,131.61,91.6428 +549721,133.16,96.4126 +549722,132.19,94.7628 +549723,131.24,93.1627 +549724,130.3,91.6075 +549725,131.77,96.4581 +549726,130.83,94.7808 +549727,129.9,93.1543 +549728,128.98,91.5734 +549729,130.38,96.5023 +549730,129.46,94.7984 +549731,128.56,93.1461 +549732,127.67,91.5404 +549733,128.99,96.5452 +549734,128.1,94.8155 +549735,127.22,93.1384 +549736,126.36,91.5085 +549737,127.59,96.5867 +549738,126.73,94.832 +549739,125.88,93.131 +549740,125.05,91.4778 +549741,126.2,96.6268 +549742,125.37,94.8481 +549743,124.55,93.1239 +549744,123.74,91.4484 +549745,124.81,96.6656 +549746,124,94.8637 +549747,123.21,93.1172 +549748,122.43,91.4201 +549749,123.41,96.7029 +549750,122.64,94.8788 +549751,121.87,93.1109 +549752,121.12,91.3931 +549753,122.02,96.7388 +549754,121.27,94.8934 +549755,120.53,93.105 +549756,119.81,91.3673 +549757,120.62,96.7733 +549758,119.9,94.9075 +549759,119.2,93.0995 +549760,118.5,91.3427 +549761,119.22,96.8063 +549762,118.54,94.921 +549763,117.86,93.0943 +549764,117.19,91.3195 +549765,117.83,96.8378 +549766,117.17,94.9341 +549767,116.52,93.0896 +549768,115.89,91.2975 +549769,116.43,96.8679 +549770,115.8,94.9466 +549771,115.19,93.0852 +549772,114.58,91.2768 +549773,115.03,96.8964 +549774,114.44,94.9585 +549775,113.85,93.0813 +549776,113.27,91.2574 +549777,113.63,96.9234 +549778,113.07,94.97 +549779,112.51,93.0777 +549780,111.97,91.2394 +549781,112.23,96.9489 +549782,111.7,94.9808 +549783,111.18,93.0746 +549784,110.66,91.2226 +549785,110.83,96.9728 +549786,110.33,94.9912 +549787,109.84,93.0719 +549788,109.36,91.2072 +549789,109.43,96.9951 +549790,108.96,95.001 +549791,108.51,93.0696 +549792,108.06,91.1932 +549793,108.03,97.0159 +549794,107.6,95.0102 +549795,107.17,93.0677 +549796,106.75,91.1805 +549797,106.63,97.0351 +549798,106.23,95.0189 +549799,105.83,93.0662 +549800,105.45,91.1692 +549801,105.23,97.0527 +549802,104.86,95.027 +549803,104.5,93.0652 +549804,104.14,91.1593 +549805,103.83,97.0687 +549806,103.49,95.0346 +549807,103.16,93.0646 +549808,102.84,91.1508 +549809,102.43,97.0831 +549810,102.12,95.0416 +549811,101.83,93.0644 +549812,101.54,91.1436 +549813,101.03,97.0959 +549814,100.76,95.048 +549815,100.49,93.0647 +549816,100.24,91.1378 +549817,99.626,97.1071 +549818,99.387,95.0538 +549819,99.156,93.0654 +549820,98.933,91.1335 +549821,98.223,97.1167 +549822,98.018,95.0591 +549823,97.821,93.0665 +549824,97.631,91.1305 +549825,96.821,97.1246 +549826,96.649,95.0639 +549827,96.486,93.0681 +549828,96.329,91.1289 +549829,95.418,97.1309 +549830,95.281,95.068 +549831,95.151,93.0701 +549832,95.027,91.1288 +549833,94.016,97.1356 +549834,93.912,95.0716 +549835,93.815,93.0725 +549836,93.725,91.13 +549837,92.613,97.1386 +549838,92.543,95.0746 +549839,92.48,93.0754 +549840,92.423,91.1327 +549841,91.21,97.1401 +549842,91.174,95.077 +549843,91.145,93.0787 +549844,91.121,91.1368 +549845,89.807,97.1399 +549846,89.805,95.0789 +549847,89.81,93.0824 +549848,89.819,91.1422 +549849,88.404,97.138 +549850,88.437,95.0802 +549851,88.475,93.0866 +549852,88.518,91.1491 +549853,87.002,97.1346 +549854,87.068,95.0809 +549855,87.139,93.0912 +549856,87.216,91.1574 +549857,85.599,97.1295 +549858,85.699,95.0811 +549859,85.804,93.0963 +549860,85.914,91.1671 +549861,84.196,97.1228 +549862,84.33,95.0807 +549863,84.469,93.1018 +549864,84.612,91.1782 +549865,82.794,97.1145 +549866,82.961,95.0797 +549867,83.133,93.1077 +549868,83.309,91.1907 +549869,81.391,97.1046 +549870,81.593,95.0782 +549871,81.798,93.114 +549872,82.007,91.2046 +549873,79.989,97.093 +549874,80.224,95.076 +549875,80.463,93.1208 +549876,80.704,91.2199 +549877,78.587,97.0799 +549878,78.855,95.0734 +549879,79.127,93.128 +549880,79.402,91.2366 +549881,77.185,97.0653 +549882,77.487,95.0702 +549883,77.791,93.1357 +549884,78.099,91.2546 +549885,75.784,97.049 +549886,76.119,95.0664 +549887,76.456,93.1437 +549888,76.795,91.274 +549889,74.383,97.0312 +549890,74.75,95.062 +549891,75.12,93.1522 +549892,75.492,91.2948 +549893,72.982,97.0118 +549894,73.382,95.0572 +549895,73.784,93.1611 +549896,74.188,91.3169 +549897,71.581,96.9909 +549898,72.014,95.0517 +549899,72.448,93.1704 +549900,72.884,91.3404 +549901,70.181,96.9684 +549902,70.646,95.0458 +549903,71.112,93.1801 +549904,71.579,91.3652 +549905,68.781,96.9445 +549906,69.278,95.0393 +549907,69.775,93.1903 +549908,70.274,91.3913 +549909,67.382,96.919 +549910,67.91,95.0322 +549911,68.439,93.2008 +549912,68.969,91.4187 +549913,65.983,96.8921 +549914,66.543,95.0247 +549915,67.102,93.2117 +549916,67.663,91.4474 +549917,64.585,96.8637 +549918,65.175,95.0166 +549919,65.766,93.223 +549920,66.356,91.4774 +549921,63.187,96.8338 +549922,63.808,95.008 +549923,64.429,93.2347 +549924,65.05,91.5087 +549925,61.79,96.8026 +549926,62.441,94.9989 +549927,63.092,93.2468 +549928,63.742,91.5412 +549929,60.393,96.7699 +549930,61.074,94.9892 +549931,61.754,93.2593 +549932,62.434,91.575 +549933,58.996,96.7358 +549934,59.707,94.9791 +549935,60.417,93.2721 +549936,61.126,91.61 +549937,57.601,96.7003 +549938,58.341,94.9685 +549939,59.079,93.2853 +549940,59.817,91.6463 +549941,56.206,96.6635 +549942,56.974,94.9574 +549943,57.741,93.2989 +549944,58.507,91.6837 +549945,54.812,96.6253 +549946,55.608,94.9458 +549947,56.403,93.3128 +549948,57.197,91.7223 +549949,53.418,96.5858 +549950,54.242,94.9337 +549951,55.065,93.3271 +549952,55.886,91.762 +549953,52.025,96.545 +549954,52.877,94.9211 +549955,53.726,93.3417 +549956,54.574,91.8029 +549957,50.633,96.503 +549958,51.511,94.9081 +549959,52.387,93.3566 +549960,53.262,91.8449 +549961,49.241,96.4597 +549962,50.146,94.8947 +549963,51.048,93.3719 +549964,51.949,91.8881 +549965,47.85,96.4152 +549966,48.781,94.8808 +549967,49.709,93.3875 +549968,50.635,91.9323 +549969,46.461,96.3695 +549970,47.416,94.8664 +549971,48.369,93.4034 +549972,49.32,91.9776 +549973,45.071,96.3226 +549974,46.052,94.8517 +549975,47.03,93.4196 +549976,48.005,92.0239 +549977,43.683,96.2746 +549978,44.688,94.8364 +549979,45.689,93.4361 +549980,46.689,92.0712 +549981,42.296,96.2255 +549982,43.324,94.8208 +549983,44.349,93.4529 +549984,45.372,92.1195 +549985,40.909,96.1753 +549986,41.96,94.8048 +549987,43.008,93.47 +549988,44.054,92.1688 +549989,39.523,96.124 +549990,40.597,94.7884 +549991,41.668,93.4874 +549992,42.735,92.2191 +549993,38.139,96.0717 +549994,39.234,94.7716 +549995,40.326,93.505 +549996,41.416,92.2703 +549997,36.755,96.0183 +549998,37.871,94.7544 +549999,38.985,93.5229 +550000,40.095,92.3224 +550001,35.372,95.964 +550002,36.509,94.7368 +550003,37.643,93.5411 +550004,38.774,92.3754 +550005,33.99,95.9088 +550006,35.147,94.7189 +550007,36.301,93.5594 +550008,37.451,92.4292 +550009,32.609,95.8526 +550010,33.785,94.7006 +550011,34.958,93.5781 +550012,36.128,92.4839 +550013,31.229,95.7955 +550014,32.424,94.682 +550015,33.615,93.5969 +550016,34.804,92.5393 +550017,29.85,95.7376 +550018,31.063,94.663 +550019,32.272,93.6159 +550020,33.479,92.5955 +550021,28.472,95.6788 +550022,29.702,94.6437 +550023,30.929,93.6352 +550024,32.152,92.6525 +550025,27.095,95.6193 +550026,28.341,94.6241 +550027,29.585,93.6546 +550028,30.825,92.7102 +550029,25.719,95.559 +550030,26.981,94.6042 +550031,28.241,93.6743 +550032,29.497,92.7686 +550033,24.344,95.4979 +550034,25.622,94.584 +550035,26.896,93.6941 +550036,28.168,92.8277 +550037,22.971,95.4362 +550038,24.262,94.5635 +550039,25.551,93.7141 +550040,26.837,92.8874 +550041,21.598,95.3737 +550042,22.903,94.5428 +550043,24.206,93.7342 +550044,25.506,92.9477 +550045,20.226,95.3107 +550046,21.545,94.5218 +550047,22.861,93.7545 +550048,24.173,93.0085 +550049,18.856,95.247 +550050,20.186,94.5005 +550051,21.515,93.7749 +550052,22.84,93.0699 +550053,17.486,95.1828 +550054,18.828,94.479 +550055,20.168,93.7954 +550056,21.505,93.1319 +550057,16.118,95.118 +550058,17.471,94.4573 +550059,18.822,93.8161 +550060,20.169,93.1943 +550061,14.751,95.0527 +550062,16.114,94.4353 +550063,17.475,93.8368 +550064,18.832,93.2572 +550065,13.385,94.987 +550066,14.757,94.4131 +550067,16.127,93.8577 +550068,17.494,93.3205 +550069,12.02,94.9208 +550070,13.401,94.3908 +550071,14.779,93.8786 +550072,16.155,93.3842 +550073,10.656,94.8542 +550074,12.045,94.3682 +550075,13.431,93.8996 +550076,14.815,93.4482 +550077,9.2939,94.7872 +550078,10.689,94.3455 +550079,12.083,93.9206 +550080,13.474,93.5126 +550081,7.9325,94.7199 +550082,9.3338,94.3226 +550083,10.734,93.9417 +550084,12.131,93.5773 +550085,6.5723,94.6523 +550086,7.9789,94.2996 +550087,9.3844,93.9629 +550088,10.787,93.6423 +550089,5.2133,94.5845 +550090,6.6245,94.2764 +550091,8.0347,93.9841 +550092,9.4424,93.7074 +550093,3.8554,94.5164 +550094,5.2704,94.2531 +550095,6.6846,94.0052 +550096,8.0963,93.7728 +550097,2.4987,94.4481 +550098,3.9168,94.2297 +550099,5.3341,94.0264 +550100,6.7491,93.8384 +550101,1.1432,94.3796 +550102,2.5635,94.2061 +550103,3.9832,94.0476 +550104,5.4007,93.9041 +550105,359.79,94.311 +550106,1.2106,94.1825 +550107,2.632,94.0688 +550108,4.0512,93.9698 +550109,358.44,94.2423 +550110,359.86,94.1588 +550111,1.2803,94.0899 +550112,2.7004,94.0357 +550113,357.08,94.1736 +550114,358.51,94.135 +550115,359.93,94.111 +550116,1.3485,94.1016 +550117,355.73,94.1048 +550118,357.15,94.1111 +550119,358.58,94.132 +550120,360,94.1674 +550121,354.38,94.036 +550122,355.8,94.0872 +550123,357.22,94.153 +550124,358.64,94.2333 +550125,353.03,93.9673 +550126,354.45,94.0633 +550127,355.87,94.1739 +550128,357.29,94.2991 +550129,351.69,93.8986 +550130,353.1,94.0393 +550131,354.52,94.1947 +550132,355.93,94.3647 +550133,350.34,93.8301 +550134,351.75,94.0153 +550135,353.16,94.2155 +550136,354.57,94.4303 +550137,349,93.7616 +550138,350.4,93.9914 +550139,351.81,94.2361 +550140,353.21,94.4956 +550141,347.65,93.6934 +550142,349.05,93.9674 +550143,350.45,94.2566 +550144,351.85,94.5608 +550145,346.31,93.6254 +550146,347.7,93.9434 +550147,349.1,94.2769 +550148,350.49,94.6257 +550149,344.97,93.5576 +550150,346.36,93.9195 +550151,347.74,94.2971 +550152,349.13,94.6904 +550153,343.63,93.49 +550154,345.01,93.8956 +550155,346.39,94.3172 +550156,347.76,94.7547 +550157,342.29,93.4228 +550158,343.66,93.8717 +550159,345.03,94.3371 +550160,346.4,94.8187 +550161,340.95,93.3559 +550162,342.31,93.8479 +550163,343.67,94.3568 +550164,345.03,94.8824 +550165,339.61,93.2894 +550166,340.97,93.8242 +550167,342.32,94.3764 +550168,343.67,94.9456 +550169,338.28,93.2233 +550170,339.62,93.8006 +550171,340.96,94.3957 +550172,342.3,95.0084 +550173,336.94,93.1576 +550174,338.27,93.7771 +550175,339.6,94.4148 +550176,340.93,95.0707 +550177,335.61,93.0924 +550178,336.93,93.7537 +550179,338.24,94.4337 +550180,339.56,95.1325 +550181,334.28,93.0276 +550182,335.58,93.7303 +550183,336.88,94.4524 +550184,338.19,95.1938 +550185,332.95,92.9634 +550186,334.24,93.7072 +550187,335.53,94.4708 +550188,336.82,95.2545 +550189,331.62,92.8998 +550190,332.89,93.6841 +550191,334.17,94.489 +550192,335.44,95.3146 +550193,330.29,92.8367 +550194,331.55,93.6612 +550195,332.81,94.5069 +550196,334.07,95.374 +550197,328.96,92.7743 +550198,330.2,93.6385 +550199,331.45,94.5246 +550200,332.69,95.4328 +550201,327.63,92.7124 +550202,328.86,93.6159 +550203,330.09,94.5419 +550204,331.31,95.4909 +550205,326.31,92.6513 +550206,327.52,93.5935 +550207,328.73,94.559 +550208,329.94,95.5482 +550209,324.98,92.5909 +550210,326.17,93.5713 +550211,327.37,94.5758 +550212,328.56,95.6048 +550213,323.66,92.5312 +550214,324.83,93.5493 +550215,326,94.5922 +550216,327.18,95.6606 +550217,322.33,92.4722 +550218,323.49,93.5275 +550219,324.64,94.6084 +550220,325.8,95.7155 +550221,321.01,92.414 +550222,322.15,93.5059 +550223,323.28,94.6241 +550224,324.41,95.7696 +550225,319.69,92.3567 +550226,320.8,93.4845 +550227,321.92,94.6396 +550228,323.03,95.8228 +550229,318.37,92.3001 +550230,319.46,93.4634 +550231,320.56,94.6547 +550232,321.65,95.8751 +550233,317.05,92.2445 +550234,318.12,93.4425 +550235,319.19,94.6694 +550236,320.26,95.9265 +550237,315.73,92.1897 +550238,316.78,93.4218 +550239,317.83,94.6838 +550240,318.88,95.9768 +550241,314.41,92.1358 +550242,315.44,93.4015 +550243,316.47,94.6978 +550244,317.49,96.0262 +550245,313.1,92.0829 +550246,314.1,93.3814 +550247,315.1,94.7113 +550248,316.1,96.0745 +550249,311.78,92.0309 +550250,312.76,93.3615 +550251,313.74,94.7245 +550252,314.72,96.1218 +550253,310.47,91.9799 +550254,311.42,93.342 +550255,312.37,94.7373 +550256,313.33,96.1679 +550257,309.15,91.9299 +550258,310.08,93.3227 +550259,311.01,94.7497 +550260,311.94,96.213 +550261,307.84,91.881 +550262,308.74,93.3038 +550263,309.65,94.7616 +550264,310.55,96.2569 +550265,306.53,91.8331 +550266,307.4,93.2851 +550267,308.28,94.7732 +550268,309.16,96.2997 +550269,305.21,91.7862 +550270,306.07,93.2668 +550271,306.92,94.7842 +550272,307.76,96.3412 +550273,303.9,91.7405 +550274,304.73,93.2488 +550275,305.55,94.7949 +550276,306.37,96.3816 +550277,302.59,91.6958 +550278,303.39,93.2312 +550279,304.18,94.805 +550280,304.98,96.4207 +550281,301.28,91.6523 +550282,302.05,93.2138 +550283,302.82,94.8148 +550284,303.58,96.4585 +550285,299.97,91.6099 +550286,300.71,93.1968 +550287,301.45,94.824 +550288,302.19,96.4951 +550289,298.66,91.5687 +550290,299.38,93.1802 +550291,300.09,94.8328 +550292,300.79,96.5303 +550293,297.36,91.5287 +550294,298.04,93.1639 +550295,298.72,94.8411 +550296,299.4,96.5642 +550297,296.05,91.4899 +550298,296.7,93.148 +550299,297.35,94.8489 +550300,298,96.5968 +550301,294.74,91.4523 +550302,295.37,93.1324 +550303,295.99,94.8562 +550304,296.6,96.628 +550305,293.44,91.416 +550306,294.03,93.1173 +550307,294.62,94.863 +550308,295.2,96.6578 +550309,292.13,91.3808 +550310,292.69,93.1025 +550311,293.25,94.8693 +550312,293.81,96.6862 +550313,290.82,91.347 +550314,291.36,93.0881 +550315,291.88,94.8751 +550316,292.41,96.7131 +550317,289.52,91.3144 +550318,290.02,93.074 +550319,290.52,94.8804 +550320,291.01,96.7387 +550321,288.21,91.2831 +550322,288.68,93.0604 +550323,289.15,94.8851 +550324,289.61,96.7627 +550325,286.91,91.2531 +550326,287.35,93.0472 +550327,287.78,94.8894 +550328,288.21,96.7853 +550329,285.61,91.2245 +550330,286.01,93.0344 +550331,286.41,94.8931 +550332,286.81,96.8064 +550333,284.3,91.1971 +550334,284.68,93.0219 +550335,285.05,94.8962 +550336,285.41,96.826 +550337,283,91.1711 +550338,283.34,93.0099 +550339,283.68,94.8989 +550340,284.01,96.8441 +550341,281.7,91.1464 +550342,282.01,92.9983 +550343,282.31,94.9009 +550344,282.6,96.8606 +550345,280.4,91.1231 +550346,280.67,92.9872 +550347,280.94,94.9025 +550348,281.2,96.8756 +550349,279.09,91.1011 +550350,279.34,92.9764 +550351,279.57,94.9035 +550352,279.8,96.889 +550353,277.79,91.0805 +550354,278,92.9661 +550355,278.21,94.9039 +550356,278.4,96.9009 +550357,276.49,91.0613 +550358,276.67,92.9562 +550359,276.84,94.9038 +550360,277,96.9112 +550361,275.19,91.0435 +550362,275.33,92.9467 +550363,275.47,94.9031 +550364,275.59,96.9199 +550365,273.89,91.0271 +550366,274,92.9377 +550367,274.1,94.9019 +550368,274.19,96.9271 +550369,272.59,91.012 +550370,272.66,92.929 +550371,272.73,94.9001 +550372,272.79,96.9326 +550373,271.28,90.99837 +550374,271.33,92.9209 +550375,271.36,94.8977 +550376,271.39,96.9365 +550377,269.98,90.98612 +550378,269.99,92.9131 +550379,269.99,94.8948 +550380,269.98,96.9388 +550381,268.68,90.97527 +550382,268.66,92.9058 +550383,268.63,94.8913 +550384,268.58,96.9395 +550385,267.38,90.96584 +550386,267.32,92.8989 +550387,267.26,94.8872 +550388,267.18,96.9386 +550389,266.08,90.95781 +550390,265.99,92.8925 +550391,265.89,94.8826 +550392,265.78,96.9361 +550393,264.78,90.95118 +550394,264.66,92.8865 +550395,264.52,94.8774 +550396,264.37,96.9319 +550397,263.48,90.94597 +550398,263.32,92.8809 +550399,263.15,94.8716 +550400,262.97,96.9262 +550401,262.18,90.94216 +550402,261.99,92.8758 +550403,261.78,94.8653 +550404,261.57,96.9188 +550405,260.88,90.93976 +550406,260.65,92.8711 +550407,260.42,94.8584 +550408,260.17,96.9097 +550409,259.57,90.93877 +550410,259.32,92.8669 +550411,259.05,94.851 +550412,258.76,96.8991 +550413,258.27,90.93917 +550414,257.98,92.8631 +550415,257.68,94.8429 +550416,257.36,96.8868 +550417,256.97,90.94098 +550418,256.65,92.8597 +550419,256.31,94.8343 +550420,255.96,96.873 +550421,255.67,90.94417 +550422,255.31,92.8567 +550423,254.94,94.8252 +550424,254.56,96.8575 +550425,254.37,90.94876 +550426,253.98,92.8542 +550427,253.58,94.8154 +550428,253.16,96.8404 +550429,253.06,90.95473 +550430,252.64,92.8522 +550431,252.21,94.8052 +550432,251.76,96.8218 +550433,251.76,90.96208 +550434,251.31,92.8505 +550435,250.84,94.7943 +550436,250.36,96.8015 +550437,250.46,90.97079 +550438,249.97,92.8493 +550439,249.47,94.7829 +550440,248.96,96.7797 +550441,249.15,90.98087 +550442,248.64,92.8485 +550443,248.11,94.771 +550444,247.56,96.7563 +550445,247.85,90.9923 +550446,247.3,92.8481 +550447,246.74,94.7585 +550448,246.16,96.7313 +550449,246.54,91.0051 +550450,245.97,92.8481 +550451,245.37,94.7455 +550452,244.76,96.7048 +550453,245.24,91.0192 +550454,244.63,92.8486 +550455,244.01,94.7319 +550456,243.36,96.6767 +550457,243.93,91.0346 +550458,243.29,92.8494 +550459,242.64,94.7178 +550460,241.97,96.6471 +550461,242.63,91.0514 +550462,241.96,92.8507 +550463,241.27,94.7031 +550464,240.57,96.616 +550465,241.32,91.0694 +550466,240.62,92.8523 +550467,239.91,94.688 +550468,239.17,96.5834 +550469,240.01,91.0888 +550470,239.29,92.8544 +550471,238.54,94.6723 +550472,237.78,96.5493 +550473,238.71,91.1094 +550474,237.95,92.8569 +550475,237.17,94.656 +550476,236.38,96.5137 +550477,237.4,91.1313 +550478,236.61,92.8597 +550479,235.81,94.6393 +550480,234.99,96.4767 +550481,236.09,91.1545 +550482,235.27,92.8629 +550483,234.44,94.6221 +550484,233.59,96.4382 +550485,234.78,91.1788 +550486,233.94,92.8666 +550487,233.08,94.6043 +550488,232.2,96.3983 +550489,233.47,91.2044 +550490,232.6,92.8705 +550491,231.71,94.5861 +550492,230.81,96.357 +550493,232.16,91.2312 +550494,231.26,92.8749 +550495,230.35,94.5673 +550496,229.42,96.3144 +550497,230.85,91.2592 +550498,229.92,92.8796 +550499,228.99,94.5481 +550500,228.03,96.2703 +550501,229.54,91.2884 +550502,228.59,92.8847 +550503,227.62,94.5284 +550504,226.64,96.2249 +550505,228.22,91.3187 +550506,227.25,92.8901 +550507,226.26,94.5082 +550508,225.25,96.1782 +550509,226.91,91.3501 +550510,225.91,92.8959 +550511,224.89,94.4875 +550512,223.86,96.1302 +550513,225.6,91.3827 +550514,224.57,92.902 +550515,223.53,94.4664 +550516,222.47,96.081 +550517,224.28,91.4163 +550518,223.23,92.9084 +550519,222.17,94.4449 +550520,221.09,96.0304 +550521,222.97,91.451 +550522,221.89,92.9152 +550523,220.81,94.4229 +550524,219.7,95.9787 +550525,221.65,91.4868 +550526,220.55,92.9223 +550527,219.44,94.4004 +550528,218.32,95.9257 +550529,220.33,91.5236 +550530,219.21,92.9296 +550531,218.08,94.3776 +550532,216.93,95.8716 +550533,219.01,91.5615 +550534,217.87,92.9373 +550535,216.72,94.3543 +550536,215.55,95.8163 +550537,217.69,91.6003 +550538,216.53,92.9453 +550539,215.36,94.3306 +550540,214.17,95.7598 +550541,216.37,91.6401 +550542,215.19,92.9536 +550543,214,94.3065 +550544,212.79,95.7023 +550545,215.05,91.6808 +550546,213.85,92.9621 +550547,212.64,94.282 +550548,211.41,95.6437 +550549,213.73,91.7224 +550550,212.51,92.9709 +550551,211.28,94.2571 +550552,210.03,95.5841 +550553,212.41,91.765 +550554,211.17,92.98 +550555,209.92,94.2318 +550556,208.65,95.5234 +550557,211.08,91.8084 +550558,209.83,92.9894 +550559,208.56,94.2062 +550560,207.27,95.4617 +550561,209.76,91.8526 +550562,208.48,92.9989 +550563,207.2,94.1802 +550564,205.9,95.3991 +550565,208.43,91.8977 +550566,207.14,93.0087 +550567,205.84,94.1539 +550568,204.52,95.3356 +550569,207.1,91.9436 +550570,205.8,93.0188 +550571,204.48,94.1272 +550572,203.15,95.2711 +550573,205.77,91.9902 +550574,204.46,93.029 +550575,203.12,94.1002 +550576,201.78,95.2058 +550577,204.44,92.0376 +550578,203.11,93.0395 +550579,201.76,94.0728 +550580,200.4,95.1396 +550581,203.11,92.0857 +550582,201.77,93.0502 +550583,200.41,94.0452 +550584,199.03,95.0727 +550585,201.78,92.1345 +550586,200.42,93.061 +550587,199.05,94.0173 +550588,197.66,95.0049 +550589,200.45,92.1839 +550590,199.08,93.0721 +550591,197.69,93.989 +550592,196.3,94.9364 +550593,199.12,92.234 +550594,197.73,93.0833 +550595,196.34,93.9605 +550596,194.93,94.8672 +550597,197.78,92.2847 +550598,196.39,93.0946 +550599,194.98,93.9317 +550600,193.56,94.7973 +550601,196.45,92.3359 +550602,195.04,93.1061 +550603,193.63,93.9027 +550604,192.2,94.7268 +550605,195.11,92.3877 +550606,193.7,93.1178 +550607,192.27,93.8734 +550608,190.84,94.6557 +550609,193.77,92.44 +550610,192.35,93.1296 +550611,190.92,93.8438 +550612,189.47,94.5839 +550613,192.43,92.4928 +550614,191,93.1415 +550615,189.56,93.8141 +550616,188.11,94.5117 +550617,191.09,92.546 +550618,189.66,93.1535 +550619,188.21,93.7841 +550620,186.75,94.4389 +550621,189.75,92.5997 +550622,188.31,93.1656 +550623,186.86,93.7539 +550624,185.39,94.3656 +550625,188.41,92.6537 +550626,186.96,93.1778 +550627,185.5,93.7236 +550628,184.04,94.2919 +550629,187.06,92.7082 +550630,185.61,93.1901 +550631,184.15,93.693 +550632,182.68,94.2178 +550633,185.72,92.7629 +550634,184.26,93.2024 +550635,182.8,93.6623 +550636,181.33,94.1433 +550637,184.37,92.8179 +550638,182.91,93.2148 +550639,181.45,93.6314 +550640,179.97,94.0684 +550641,183.02,92.8733 +550642,181.56,93.2272 +550643,180.1,93.6004 +550644,178.62,93.9932 +550645,181.67,92.9288 +550646,180.22,93.2397 +550647,178.75,93.5692 +550648,177.27,93.9178 +550649,180.32,92.9845 +550650,178.86,93.2522 +550651,177.4,93.5379 +550652,175.92,93.8421 +550653,178.97,93.0405 +550654,177.51,93.2647 +550655,176.05,93.5065 +550656,174.57,93.7662 +550657,177.62,93.0965 +550658,176.16,93.2772 +550659,174.7,93.4749 +550660,173.22,93.6902 +550661,176.27,93.1527 +550662,174.81,93.2897 +550663,173.35,93.4433 +550664,171.88,93.614 +550665,174.91,93.2089 +550666,173.46,93.3022 +550667,172,93.4116 +550668,170.53,93.5377 +550669,173.56,93.2652 +550670,172.11,93.3147 +550671,170.65,93.3799 +550672,169.19,93.4613 +550673,172.2,93.3215 +550674,170.76,93.3271 +550675,169.3,93.348 +550676,167.84,93.3849 +550677,170.84,93.3778 +550678,169.4,93.3394 +550679,167.96,93.3162 +550680,166.5,93.3085 +550681,169.48,93.434 +550682,168.05,93.3517 +550683,166.61,93.2842 +550684,165.16,93.2321 +550685,168.12,93.4901 +550686,166.7,93.3639 +550687,165.26,93.2523 +550688,163.82,93.1558 +550689,166.76,93.5461 +550690,165.34,93.3761 +550691,163.92,93.2204 +550692,162.48,93.0796 +550693,165.4,93.6019 +550694,163.99,93.3881 +550695,162.57,93.1884 +550696,161.15,93.0035 +550697,164.03,93.6576 +550698,162.63,93.4 +550699,161.23,93.1565 +550700,159.81,92.9276 +550701,162.67,93.713 +550702,161.28,93.4118 +550703,159.88,93.1246 +550704,158.48,92.8519 +550705,161.3,93.7681 +550706,159.92,93.4235 +550707,158.54,93.0927 +550708,157.14,92.7765 +550709,159.93,93.823 +550710,158.57,93.435 +550711,157.19,93.0608 +550712,155.81,92.7013 +550713,158.57,93.8776 +550714,157.21,93.4464 +550715,155.85,93.0291 +550716,154.48,92.6264 +550717,157.2,93.9318 +550718,155.85,93.4576 +550719,154.5,92.9973 +550720,153.15,92.5518 +550721,155.82,93.9856 +550722,154.5,93.4686 +550723,153.16,92.9657 +550724,151.82,92.4776 +550725,154.45,94.039 +550726,153.14,93.4794 +550727,151.82,92.9341 +550728,150.49,92.4038 +550729,153.08,94.092 +550730,151.78,93.4901 +550731,150.48,92.9027 +550732,149.17,92.3304 +550733,151.71,94.1445 +550734,150.42,93.5005 +550735,149.14,92.8713 +550736,147.84,92.2575 +550737,150.33,94.1964 +550738,149.07,93.5108 +550739,147.79,92.8401 +550740,146.52,92.185 +550741,148.95,94.2478 +550742,147.71,93.5208 +550743,146.45,92.809 +550744,145.19,92.1131 +550745,147.58,94.2987 +550746,146.35,93.5305 +550747,145.11,92.778 +550748,143.87,92.0418 +550749,146.2,94.3489 +550750,144.99,93.54 +550751,143.77,92.7472 +550752,142.55,91.971 +550753,144.82,94.3985 +550754,143.63,93.5493 +550755,142.43,92.7165 +550756,141.23,91.9008 +550757,143.44,94.4474 +550758,142.27,93.5583 +550759,141.09,92.686 +550760,139.91,91.8313 +550761,142.06,94.4956 +550762,140.91,93.567 +550763,139.75,92.6557 +550764,138.59,91.7624 +550765,140.67,94.5431 +550766,139.55,93.5754 +550767,138.42,92.6256 +550768,137.28,91.6943 +550769,139.29,94.5898 +550770,138.19,93.5835 +550771,137.08,92.5957 +550772,135.96,91.6268 +550773,137.91,94.6358 +550774,136.83,93.5913 +550775,135.74,92.566 +550776,134.64,91.5602 +550777,136.52,94.6809 +550778,135.47,93.5988 +550779,134.4,92.5365 +550780,133.33,91.4943 +550781,135.14,94.7251 +550782,134.1,93.606 +550783,133.06,92.5072 +550784,132.02,91.4292 +550785,133.75,94.7685 +550786,132.74,93.6128 +550787,131.73,92.4782 +550788,130.7,91.3649 +550789,132.36,94.811 +550790,131.38,93.6193 +550791,130.39,92.4494 +550792,129.39,91.3015 +550793,130.97,94.8525 +550794,130.02,93.6254 +550795,129.05,92.4209 +550796,128.08,91.239 +550797,129.58,94.8931 +550798,128.65,93.6312 +550799,127.72,92.3926 +550800,126.77,91.1774 +550801,128.19,94.9327 +550802,127.29,93.6366 +550803,126.38,92.3647 +550804,125.46,91.1167 +550805,126.8,94.9712 +550806,125.93,93.6416 +550807,125.05,92.337 +550808,124.15,91.0569 +550809,125.41,95.0088 +550810,124.57,93.6462 +550811,123.71,92.3095 +550812,122.85,90.9982 +550813,124.02,95.0452 +550814,123.2,93.6505 +550815,122.38,92.2824 +550816,121.54,90.94045 +550817,122.62,95.0806 +550818,121.84,93.6543 +550819,121.04,92.2556 +550820,120.23,90.88373 +550821,121.23,95.1148 +550822,120.47,93.6577 +550823,119.71,92.2291 +550824,118.93,90.82805 +550825,119.84,95.1479 +550826,119.11,93.6607 +550827,118.37,92.2029 +550828,117.62,90.77344 +550829,118.44,95.1799 +550830,117.75,93.6633 +550831,117.04,92.177 +550832,116.32,90.71991 +550833,117.05,95.2106 +550834,116.38,93.6654 +550835,115.7,92.1515 +550836,115.01,90.66749 +550837,115.65,95.2401 +550838,115.02,93.6671 +550839,114.37,92.1263 +550840,113.71,90.6162 +550841,114.25,95.2684 +550842,113.65,93.6683 +550843,113.04,92.1014 +550844,112.41,90.56605 +550845,112.85,95.2955 +550846,112.29,93.6691 +550847,111.7,92.077 +550848,111.11,90.51706 +550849,111.46,95.3213 +550850,110.92,93.6694 +550851,110.37,92.0528 +550852,109.81,90.46925 +550853,110.06,95.3457 +550854,109.56,93.6693 +550855,109.04,92.029 +550856,108.5,90.42263 +550857,108.66,95.3689 +550858,108.19,93.6687 +550859,107.71,92.0056 +550860,107.2,90.37723 +550861,107.26,95.3907 +550862,106.82,93.6676 +550863,106.37,91.9826 +550864,105.9,90.33305 +550865,105.86,95.4112 +550866,105.46,93.666 +550867,105.04,91.96 +550868,104.61,90.29011 +550869,104.46,95.4303 +550870,104.09,93.664 +550871,103.71,91.9377 +550872,103.31,90.24843 +550873,103.06,95.448 +550874,102.73,93.6614 +550875,102.38,91.9159 +550876,102.01,90.20802 +550877,101.66,95.4643 +550878,101.36,93.6584 +550879,101.04,91.8944 +550880,100.71,90.16889 +550881,100.26,95.4791 +550882,99.996,93.6548 +550883,99.713,91.8733 +550884,99.411,90.13105 +550885,98.857,95.4926 +550886,98.63,93.6507 +550887,98.381,91.8526 +550888,98.114,90.09452 +550889,97.456,95.5046 +550890,97.263,93.6461 +550891,97.05,91.8324 +550892,96.816,90.059305 +550893,96.054,95.5151 +550894,95.897,93.641 +550895,95.718,91.8125 +550896,95.519,90.025415 +550897,94.652,95.5242 +550898,94.531,93.6354 +550899,94.387,91.7931 +550900,94.223,89.992861 +550901,93.251,95.5318 +550902,93.165,93.6293 +550903,93.056,91.7741 +550904,92.926,89.961651 +550905,91.849,95.5379 +550906,91.799,93.6226 +550907,91.725,91.7555 +550908,91.629,89.931793 +550909,90.446,95.5424 +550910,90.432,93.6154 +550911,90.394,91.7374 +550912,90.333,89.903295 +550913,89.044,95.5455 +550914,89.066,93.6077 +550915,89.063,91.7196 +550916,89.037,89.87616 +550917,87.642,95.547 +550918,87.7,93.5994 +550919,87.732,91.7023 +550920,87.741,89.8504 +550921,86.24,95.547 +550922,86.334,93.5906 +550923,86.401,91.6854 +550924,86.445,89.82602 +550925,84.838,95.5455 +550926,84.967,93.5812 +550927,85.07,91.669 +550928,85.149,89.80302 +550929,83.436,95.5424 +550930,83.601,93.5714 +550931,83.739,91.653 +550932,83.853,89.7814 +550933,82.034,95.5378 +550934,82.235,93.5609 +550935,82.408,91.6374 +550936,82.556,89.76118 +550937,80.632,95.5316 +550938,80.869,93.55 +550939,81.077,91.6223 +550940,81.26,89.74234 +550941,79.231,95.5238 +550942,79.503,93.5385 +550943,79.746,91.6076 +550944,79.964,89.7249 +550945,77.829,95.5145 +550946,78.137,93.5264 +550947,78.415,91.5933 +550948,78.668,89.70885 +550949,76.428,95.5036 +550950,76.772,93.5138 +550951,77.084,91.5795 +550952,77.371,89.69419 +550953,75.027,95.4912 +550954,75.406,93.5007 +550955,75.754,91.5661 +550956,76.075,89.68093 +550957,73.627,95.4772 +550958,74.04,93.487 +550959,74.423,91.5532 +550960,74.778,89.66907 +550961,72.226,95.4616 +550962,72.675,93.4727 +550963,73.091,91.5407 +550964,73.481,89.65859 +550965,70.826,95.4444 +550966,71.309,93.458 +550967,71.76,91.5286 +550968,72.184,89.6495 +550969,69.427,95.4257 +550970,69.944,93.4426 +550971,70.429,91.517 +550972,70.886,89.6418 +550973,68.027,95.4055 +550974,68.579,93.4268 +550975,69.098,91.5058 +550976,69.589,89.63548 +550977,66.629,95.3836 +550978,67.214,93.4104 +550979,67.767,91.495 +550980,68.29,89.63053 +550981,65.23,95.3603 +550982,65.85,93.3934 +550983,66.435,91.4847 +550984,66.992,89.62696 +550985,63.832,95.3353 +550986,64.485,93.376 +550987,65.104,91.4748 +550988,65.693,89.62475 +550989,62.435,95.3089 +550990,63.121,93.3579 +550991,63.772,91.4654 +550992,64.394,89.62391 +550993,61.038,95.2809 +550994,61.757,93.3394 +550995,62.44,91.4563 +550996,63.094,89.62441 +550997,59.642,95.2514 +550998,60.393,93.3203 +550999,61.108,91.4477 +551000,61.794,89.62626 +551001,58.246,95.2203 +551002,59.029,93.3007 +551003,59.776,91.4395 +551004,60.493,89.62945 +551005,56.851,95.1878 +551006,57.665,93.2806 +551007,58.444,91.4317 +551008,59.192,89.63396 +551009,55.457,95.1538 +551010,56.302,93.26 +551011,57.111,91.4244 +551012,57.891,89.63978 +551013,54.063,95.1183 +551014,54.939,93.2388 +551015,55.779,91.4174 +551016,56.588,89.64692 +551017,52.67,95.0813 +551018,53.576,93.2172 +551019,54.446,91.4109 +551020,55.286,89.65534 +551021,51.278,95.0428 +551022,52.214,93.195 +551023,53.113,91.4047 +551024,53.982,89.66505 +551025,49.887,95.0029 +551026,50.851,93.1723 +551027,51.78,91.399 +551028,52.678,89.67603 +551029,48.496,94.9616 +551030,49.489,93.1492 +551031,50.447,91.3937 +551032,51.373,89.68827 +551033,47.106,94.9189 +551034,48.128,93.1255 +551035,49.113,91.3887 +551036,50.068,89.70175 +551037,45.717,94.8748 +551038,46.766,93.1014 +551039,47.779,91.3842 +551040,48.762,89.71645 +551041,44.329,94.8292 +551042,45.405,93.0767 +551043,46.445,91.38 +551044,47.455,89.73238 +551045,42.941,94.7824 +551046,44.044,93.0516 +551047,45.111,91.3762 +551048,46.148,89.7495 +551049,41.555,94.7341 +551050,42.684,93.0261 +551051,43.777,91.3727 +551052,44.839,89.7678 +551053,40.169,94.6846 +551054,41.323,93 +551055,42.442,91.3696 +551056,43.53,89.78727 +551057,38.784,94.6337 +551058,39.964,92.9735 +551059,41.107,91.3669 +551060,42.22,89.80788 +551061,37.401,94.5815 +551062,38.604,92.9466 +551063,39.772,91.3646 +551064,40.91,89.82963 +551065,36.018,94.5281 +551066,37.245,92.9192 +551067,38.436,91.3626 +551068,39.598,89.85249 +551069,34.636,94.4735 +551070,35.886,92.8913 +551071,37.101,91.3609 +551072,38.286,89.87643 +551073,33.255,94.4176 +551074,34.527,92.8631 +551075,35.765,91.3595 +551076,36.972,89.901458 +551077,31.876,94.3605 +551078,33.169,92.8344 +551079,34.428,91.3585 +551080,35.658,89.927534 +551081,30.497,94.3022 +551082,31.811,92.8053 +551083,33.092,91.3578 +551084,34.343,89.954642 +551085,29.119,94.2428 +551086,30.454,92.7758 +551087,31.755,91.3574 +551088,33.027,89.982761 +551089,27.743,94.1823 +551090,29.097,92.7459 +551091,30.418,91.3574 +551092,31.709,90.011871 +551093,26.367,94.1206 +551094,27.74,92.7156 +551095,29.08,91.3576 +551096,30.391,90.041948 +551097,24.993,94.0579 +551098,26.384,92.6849 +551099,27.742,91.3581 +551100,29.072,90.07297 +551101,23.62,93.9941 +551102,25.028,92.6538 +551103,26.404,91.3589 +551104,27.752,90.10491 +551105,22.248,93.9293 +551106,23.673,92.6224 +551107,25.066,91.3599 +551108,26.431,90.13776 +551109,20.877,93.8635 +551110,22.317,92.5906 +551111,23.727,91.3613 +551112,25.109,90.17147 +551113,19.507,93.7968 +551114,20.963,92.5585 +551115,22.388,91.3628 +551116,23.785,90.20604 +551117,18.138,93.7291 +551118,19.608,92.526 +551119,21.048,91.3647 +551120,22.461,90.24143 +551121,16.771,93.6604 +551122,18.255,92.4932 +551123,19.708,91.3667 +551124,21.136,90.27763 +551125,15.405,93.591 +551126,16.901,92.46 +551127,18.368,91.3691 +551128,19.809,90.31459 +551129,14.04,93.5206 +551130,15.548,92.4266 +551131,17.028,91.3716 +551132,18.482,90.35231 +551133,12.676,93.4494 +551134,14.195,92.3929 +551135,15.687,91.3743 +551136,17.153,90.39075 +551137,11.313,93.3775 +551138,12.843,92.3588 +551139,14.346,91.3773 +551140,15.823,90.42988 +551141,9.9521,93.3048 +551142,11.492,92.3245 +551143,13.004,91.3804 +551144,14.492,90.46968 +551145,8.592,93.2313 +551146,10.14,92.2899 +551147,11.662,91.3837 +551148,13.16,90.51012 +551149,7.2332,93.1572 +551150,8.7894,92.2551 +551151,10.32,91.3872 +551152,11.826,90.55118 +551153,5.8756,93.0824 +551154,7.439,92.2199 +551155,8.9771,91.3909 +551156,10.492,90.59282 +551157,4.5193,93.0069 +551158,6.089,92.1846 +551159,7.634,91.3947 +551160,9.1559,90.63501 +551161,3.1643,92.9309 +551162,4.7395,92.149 +551163,6.2906,91.3987 +551164,7.8189,90.67774 +551165,1.8105,92.8543 +551166,3.3904,92.1132 +551167,4.9468,91.4028 +551168,6.4808,90.72096 +551169,0.45801,92.7771 +551170,2.0417,92.0772 +551171,3.6026,91.407 +551172,5.1415,90.76465 +551173,359.11,92.6995 +551174,0.69355,92.041 +551175,2.258,91.4114 +551176,3.8009,90.80879 +551177,357.76,92.6213 +551178,359.35,92.0046 +551179,0.91302,91.4159 +551180,2.4591,90.85333 +551181,356.41,92.5428 +551182,358,91.968 +551183,359.57,91.4204 +551184,1.1162,90.89826 +551185,355.06,92.4638 +551186,356.65,91.9313 +551187,358.22,91.425 +551188,359.77,90.94353 +551189,353.71,92.3845 +551190,355.31,91.8944 +551191,356.88,91.4298 +551192,358.43,90.98912 +551193,352.37,92.3048 +551194,353.96,91.8573 +551195,355.53,91.4345 +551196,357.08,91.035 +551197,351.03,92.2248 +551198,352.61,91.8201 +551199,354.18,91.4394 +551200,355.73,91.0812 +551201,349.68,92.1446 +551202,351.27,91.7828 +551203,352.84,91.4443 +551204,354.38,91.1275 +551205,348.34,92.0641 +551206,349.92,91.7454 +551207,351.49,91.4492 +551208,353.03,91.1741 +551209,347,91.9834 +551210,348.58,91.7079 +551211,350.14,91.4541 +551212,351.68,91.2208 +551213,345.67,91.9026 +551214,347.24,91.6703 +551215,348.79,91.4591 +551216,350.33,91.2677 +551217,344.33,91.8216 +551218,345.89,91.6326 +551219,347.44,91.464 +551220,348.97,91.3147 +551221,342.99,91.7405 +551222,344.55,91.5949 +551223,346.09,91.469 +551224,347.62,91.3617 +551225,341.66,91.6594 +551226,343.21,91.557 +551227,344.74,91.4739 +551228,346.26,91.4088 +551229,340.32,91.5782 +551230,341.87,91.5192 +551231,343.39,91.4788 +551232,344.9,91.4559 +551233,338.99,91.497 +551234,340.53,91.4813 +551235,342.04,91.4836 +551236,343.55,91.503 +551237,337.66,91.4159 +551238,339.18,91.4434 +551239,340.69,91.4884 +551240,342.19,91.55 +551241,336.33,91.3348 +551242,337.84,91.4055 +551243,339.34,91.4932 +551244,340.82,91.5969 +551245,335,91.2539 +551246,336.5,91.3675 +551247,337.99,91.4978 +551248,339.46,91.6437 +551249,333.68,91.1731 +551250,335.16,91.3296 +551251,336.64,91.5024 +551252,338.1,91.6904 +551253,332.35,91.0924 +551254,333.82,91.2917 +551255,335.29,91.5069 +551256,336.73,91.7369 +551257,331.03,91.012 +551258,332.49,91.2539 +551259,333.93,91.5113 +551260,335.37,91.7831 +551261,329.7,90.93175 +551262,331.15,91.2161 +551263,332.58,91.5156 +551264,334,91.8292 +551265,328.38,90.85181 +551266,329.81,91.1783 +551267,331.23,91.5197 +551268,332.63,91.8749 +551269,327.06,90.77216 +551270,328.47,91.1406 +551271,329.87,91.5237 +551272,331.26,91.9204 +551273,325.74,90.69285 +551274,327.14,91.103 +551275,328.52,91.5276 +551276,329.89,91.9655 +551277,324.42,90.6139 +551278,325.8,91.0654 +551279,327.17,91.5313 +551280,328.52,92.0102 +551281,323.1,90.53535 +551282,324.46,91.028 +551283,325.81,91.5348 +551284,327.15,92.0546 +551285,321.78,90.45723 +551286,323.13,90.99068 +551287,324.46,91.5381 +551288,325.77,92.0985 +551289,320.47,90.37956 +551290,321.79,90.95347 +551291,323.1,91.5413 +551292,324.4,92.1419 +551293,319.15,90.30239 +551294,320.46,90.91639 +551295,321.74,91.5443 +551296,323.02,92.1849 +551297,317.84,90.22573 +551298,319.12,90.87945 +551299,320.39,91.547 +551300,321.64,92.2273 +551301,316.53,90.14962 +551302,317.79,90.84266 +551303,319.03,91.5496 +551304,320.27,92.2692 +551305,315.22,90.074094 +551306,316.45,90.80603 +551307,317.68,91.5519 +551308,318.89,92.3105 +551309,313.91,89.99917443 +551310,315.12,90.76956 +551311,316.32,91.554 +551312,317.51,92.3512 +551313,312.6,89.924892 +551314,313.79,90.73328 +551315,314.96,91.5558 +551316,316.13,92.3913 +551317,311.29,89.85127 +551318,312.45,90.69718 +551319,313.6,91.5573 +551320,314.74,92.4307 +551321,309.98,89.77835 +551322,311.12,90.66128 +551323,312.25,91.5586 +551324,313.36,92.4694 +551325,308.68,89.70615 +551326,309.79,90.62559 +551327,310.89,91.5597 +551328,311.98,92.5073 +551329,307.37,89.6347 +551330,308.46,90.59012 +551331,309.53,91.5604 +551332,310.59,92.5445 +551333,306.07,89.56402 +551334,307.13,90.55487 +551335,308.17,91.5609 +551336,309.2,92.581 +551337,304.76,89.49414 +551338,305.79,90.51986 +551339,306.81,91.561 +551340,307.82,92.6166 +551341,303.46,89.42509 +551342,304.46,90.48509 +551343,305.45,91.5608 +551344,306.43,92.6514 +551345,302.16,89.35689 +551346,303.13,90.45057 +551347,304.09,91.5603 +551348,305.04,92.6853 +551349,300.86,89.28957 +551350,301.8,90.41632 +551351,302.74,91.5595 +551352,303.65,92.7183 +551353,299.56,89.22316 +551354,300.47,90.38234 +551355,301.38,91.5584 +551356,302.26,92.7505 +551357,298.26,89.15766 +551358,299.14,90.34863 +551359,300.02,91.5569 +551360,300.87,92.7816 +551361,296.96,89.09312 +551362,297.81,90.31521 +551363,298.66,91.555 +551364,299.48,92.8118 +551365,295.66,89.02955 +551366,296.48,90.28209 +551367,297.29,91.5528 +551368,298.09,92.8411 +551369,294.36,88.967 +551370,295.16,90.24926 +551371,295.93,91.5502 +551372,296.7,92.8693 +551373,293.07,88.9054 +551374,293.83,90.21675 +551375,294.57,91.5472 +551376,295.3,92.8964 +551377,291.77,88.8449 +551378,292.5,90.18455 +551379,293.21,91.5439 +551380,293.91,92.9226 +551381,290.47,88.7854 +551382,291.17,90.15268 +551383,291.85,91.5401 +551384,292.51,92.9476 +551385,289.18,88.727 +551386,289.84,90.12114 +551387,290.49,91.536 +551388,291.12,92.9715 +551389,287.88,88.6697 +551390,288.52,90.089932 +551391,289.13,91.5315 +551392,289.72,92.9943 +551393,286.59,88.6135 +551394,287.19,90.059071 +551395,287.77,91.5265 +551396,288.33,93.0159 +551397,285.3,88.5585 +551398,285.86,90.028561 +551399,286.41,91.5211 +551400,286.93,93.0364 +551401,284.01,88.5046 +551402,284.53,89.9984075 +551403,285.04,91.5153 +551404,285.53,93.0557 +551405,282.71,88.4518 +551406,283.21,89.968617 +551407,283.68,91.5091 +551408,284.13,93.0738 +551409,281.42,88.4003 +551410,281.88,89.939195 +551411,282.32,91.5024 +551412,282.73,93.0906 +551413,280.13,88.3499 +551414,280.55,89.910147 +551415,280.96,91.4953 +551416,281.34,93.1062 +551417,278.84,88.3008 +551418,279.23,89.88148 +551419,279.59,91.4877 +551420,279.94,93.1205 +551421,277.55,88.2529 +551422,277.9,89.85319 +551423,278.23,91.4797 +551424,278.54,93.1336 +551425,276.26,88.2062 +551426,276.58,89.8253 +551427,276.87,91.4713 +551428,277.14,93.1453 +551429,274.97,88.1608 +551430,275.25,89.7978 +551431,275.51,91.4623 +551432,275.74,93.1558 +551433,273.68,88.1167 +551434,273.93,89.7707 +551435,274.14,91.4529 +551436,274.34,93.1649 +551437,272.39,88.0738 +551438,272.6,89.744 +551439,272.78,91.4431 +551440,272.94,93.1727 +551441,271.1,88.0322 +551442,271.27,89.71771 +551443,271.42,91.4327 +551444,271.54,93.1791 +551445,269.81,87.9919 +551446,269.95,89.69183 +551447,270.06,91.4219 +551448,270.14,93.1841 +551449,268.53,87.9529 +551450,268.62,89.66636 +551451,268.69,91.4106 +551452,268.74,93.1878 +551453,267.24,87.9153 +551454,267.3,89.64131 +551455,267.33,91.3988 +551456,267.33,93.19 +551457,265.95,87.879 +551458,265.97,89.61668 +551459,265.97,91.3865 +551460,265.93,93.1909 +551461,264.66,87.844 +551462,264.65,89.59247 +551463,264.61,91.3737 +551464,264.53,93.1903 +551465,263.37,87.8103 +551466,263.32,89.56869 +551467,263.24,91.3604 +551468,263.13,93.1884 +551469,262.08,87.778 +551470,262,89.54534 +551471,261.88,91.3466 +551472,261.73,93.185 +551473,260.8,87.747 +551474,260.67,89.52242 +551475,260.52,91.3324 +551476,260.33,93.1801 +551477,259.51,87.7174 +551478,259.35,89.49993 +551479,259.16,91.3176 +551480,258.93,93.1738 +551481,258.22,87.6892 +551482,258.02,89.47788 +551483,257.79,91.3023 +551484,257.53,93.166 +551485,256.93,87.6623 +551486,256.7,89.45626 +551487,256.43,91.2865 +551488,256.13,93.1568 +551489,255.64,87.6368 +551490,255.37,89.43507 +551491,255.07,91.2702 +551492,254.73,93.1461 +551493,254.36,87.6127 +551494,254.05,89.41433 +551495,253.71,91.2534 +551496,253.33,93.134 +551497,253.07,87.5899 +551498,252.72,89.39402 +551499,252.35,91.2361 +551500,251.93,93.1203 +551501,251.78,87.5685 +551502,251.4,89.37416 +551503,250.98,91.2183 +551504,250.53,93.1052 +551505,250.49,87.5484 +551506,250.07,89.35473 +551507,249.62,91.2 +551508,249.13,93.0886 +551509,249.2,87.5298 +551510,248.75,89.33574 +551511,248.26,91.1811 +551512,247.73,93.0705 +551513,247.91,87.5125 +551514,247.42,89.31719 +551515,246.9,91.1618 +551516,246.33,93.051 +551517,246.62,87.4965 +551518,246.1,89.29907 +551519,245.54,91.1419 +551520,244.94,93.03 +551521,245.33,87.482 +551522,244.77,89.2814 +551523,244.18,91.1216 +551524,243.54,93.0074 +551525,244.04,87.4687 +551526,243.45,89.26416 +551527,242.82,91.1007 +551528,242.14,92.9834 +551529,242.75,87.4569 +551530,242.12,89.24736 +551531,241.46,91.0793 +551532,240.74,92.958 +551533,241.46,87.4464 +551534,240.8,89.23099 +551535,240.09,91.0574 +551536,239.35,92.931 +551537,240.17,87.4372 +551538,239.47,89.21505 +551539,238.73,91.0351 +551540,237.95,92.9026 +551541,238.87,87.4294 +551542,238.14,89.19954 +551543,237.37,91.0122 +551544,236.56,92.8728 +551545,237.58,87.4229 +551546,236.82,89.18446 +551547,236.01,90.9888 +551548,235.16,92.8414 +551549,236.29,87.4177 +551550,235.49,89.16981 +551551,234.65,90.96493 +551552,233.77,92.8087 +551553,235,87.4138 +551554,234.17,89.15558 +551555,233.3,90.94056 +551556,232.38,92.7745 +551557,233.7,87.4112 +551558,232.84,89.14177 +551559,231.94,90.91571 +551560,230.99,92.7388 +551561,232.41,87.41 +551562,231.51,89.12838 +551563,230.58,90.89037 +551564,229.59,92.7017 +551565,231.11,87.41 +551566,230.19,89.1154 +551567,229.22,90.86454 +551568,228.2,92.6632 +551569,229.81,87.4113 +551570,228.86,89.10283 +551571,227.86,90.83824 +551572,226.81,92.6234 +551573,228.52,87.4138 +551574,227.53,89.09067 +551575,226.5,90.81146 +551576,225.42,92.5821 +551577,227.22,87.4176 +551578,226.2,89.07891 +551579,225.14,90.78421 +551580,224.04,92.5394 +551581,225.92,87.4227 +551582,224.88,89.06755 +551583,223.79,90.75649 +551584,222.65,92.4954 +551585,224.62,87.4289 +551586,223.55,89.05659 +551587,222.43,90.72831 +551588,221.26,92.45 +551589,223.32,87.4364 +551590,222.22,89.04601 +551591,221.07,90.69967 +551592,219.88,92.4033 +551593,222.02,87.4451 +551594,220.89,89.03582 +551595,219.72,90.67058 +551596,218.49,92.3552 +551597,220.72,87.4549 +551598,219.56,89.02601 +551599,218.36,90.64105 +551600,217.11,92.3058 +551601,219.42,87.4659 +551602,218.23,89.01657 +551603,217.01,90.61107 +551604,215.73,92.2552 +551605,218.12,87.4781 +551606,216.9,89.0075 +551607,215.65,90.58066 +551608,214.35,92.2033 +551609,216.81,87.4913 +551610,215.58,88.9988 +551611,214.29,90.54981 +551612,212.96,92.1501 +551613,215.51,87.5057 +551614,214.25,88.9905 +551615,212.94,90.51855 +551616,211.59,92.0957 +551617,214.2,87.5212 +551618,212.92,88.9825 +551619,211.59,90.48686 +551620,210.21,92.04 +551621,212.9,87.5378 +551622,211.58,88.9748 +551623,210.23,90.45476 +551624,208.83,91.9832 +551625,211.59,87.5554 +551626,210.25,88.9675 +551627,208.88,90.42226 +551628,207.45,91.9251 +551629,210.28,87.5741 +551630,208.92,88.9605 +551631,207.53,90.38937 +551632,206.08,91.866 +551633,208.97,87.5938 +551634,207.59,88.9539 +551635,206.17,90.35608 +551636,204.7,91.8056 +551637,207.66,87.6144 +551638,206.26,88.9475 +551639,204.82,90.32241 +551640,203.33,91.7442 +551641,206.35,87.6361 +551642,204.93,88.9415 +551643,203.47,90.28837 +551644,201.96,91.6817 +551645,205.03,87.6587 +551646,203.6,88.9358 +551647,202.12,90.25395 +551648,200.59,91.6181 +551649,203.72,87.6822 +551650,202.26,88.9304 +551651,200.77,90.21918 +551652,199.22,91.5535 +551653,202.41,87.7066 +551654,200.93,88.9253 +551655,199.41,90.18405 +551656,197.85,91.4878 +551657,201.09,87.732 +551658,199.6,88.9204 +551659,198.06,90.14859 +551660,196.48,91.4212 +551661,199.77,87.7582 +551662,198.26,88.9158 +551663,196.71,90.11278 +551664,195.12,91.3535 +551665,198.45,87.7852 +551666,196.93,88.9115 +551667,195.37,90.076653 +551668,193.76,91.285 +551669,197.14,87.813 +551670,195.6,88.9075 +551671,194.02,90.040205 +551672,192.39,91.2155 +551673,195.81,87.8417 +551674,194.26,88.9037 +551675,192.67,90.0034478 +551676,191.03,91.1451 +551677,194.49,87.8711 +551678,192.93,88.9001 +551679,191.32,89.96639 +551680,189.67,91.0739 +551681,193.17,87.9012 +551682,191.59,88.8968 +551683,189.97,89.929041 +551684,188.31,91.0019 +551685,191.85,87.9321 +551686,190.25,88.8937 +551687,188.63,89.89141 +551688,186.95,90.92901 +551689,190.52,87.9636 +551690,188.92,88.8908 +551691,187.28,89.85351 +551692,185.6,90.85538 +551693,189.19,87.9958 +551694,187.58,88.8881 +551695,185.93,89.81534 +551696,184.24,90.781 +551697,187.87,88.0286 +551698,186.25,88.8857 +551699,184.59,89.77692 +551700,182.89,90.7059 +551701,186.54,88.0621 +551702,184.91,88.8834 +551703,183.24,89.73825 +551704,181.54,90.63012 +551705,185.21,88.0961 +551706,183.57,88.8813 +551707,181.9,89.69935 +551708,180.18,90.55368 +551709,183.88,88.1307 +551710,182.23,88.8793 +551711,180.55,89.66023 +551712,178.83,90.47662 +551713,182.54,88.1658 +551714,180.89,88.8775 +551715,179.21,89.62089 +551716,177.49,90.39896 +551717,181.21,88.2014 +551718,179.55,88.8759 +551719,177.87,89.58135 +551720,176.14,90.32074 +551721,179.87,88.2375 +551722,178.22,88.8744 +551723,176.52,89.54162 +551724,174.79,90.24198 +551725,178.54,88.274 +551726,176.88,88.873 +551727,175.18,89.5017 +551728,173.45,90.16272 +551729,177.2,88.3109 +551730,175.54,88.8718 +551731,173.84,89.46161 +551732,172.11,90.083 +551733,175.86,88.3482 +551734,174.2,88.8707 +551735,172.5,89.42135 +551736,170.76,90.0028387 +551737,174.52,88.3859 +551738,172.85,88.8696 +551739,171.16,89.38094 +551740,169.42,89.922273 +551741,173.18,88.4238 +551742,171.51,88.8687 +551743,169.82,89.34039 +551744,168.09,89.84133 +551745,171.84,88.4621 +551746,170.17,88.8678 +551747,168.48,89.29971 +551748,166.75,89.76006 +551749,170.49,88.5007 +551750,168.83,88.8671 +551751,167.14,89.25891 +551752,165.41,89.67847 +551753,169.15,88.5394 +551754,167.49,88.8663 +551755,165.8,89.218 +551756,164.08,89.59661 +551757,167.8,88.5784 +551758,166.14,88.8657 +551759,164.46,89.17699 +551760,162.74,89.51451 +551761,166.45,88.6176 +551762,164.8,88.865 +551763,163.12,89.13589 +551764,161.41,89.4322 +551765,165.1,88.6569 +551766,163.46,88.8644 +551767,161.78,89.09471 +551768,160.08,89.34972 +551769,163.75,88.6963 +551770,162.11,88.8638 +551771,160.45,89.05347 +551772,158.75,89.26709 +551773,162.4,88.7358 +551774,160.77,88.8633 +551775,159.11,89.01216 +551776,157.42,89.18435 +551777,161.05,88.7754 +551778,159.42,88.8627 +551779,157.77,88.9708 +551780,156.1,89.10154 +551781,159.69,88.8149 +551782,158.08,88.8621 +551783,156.44,88.9294 +551784,154.77,89.01868 +551785,158.34,88.8545 +551786,156.73,88.8615 +551787,155.1,88.888 +551788,153.45,88.9358 +551789,156.98,88.8941 +551790,155.39,88.8609 +551791,153.77,88.8466 +551792,152.13,88.853 +551793,155.62,88.9335 +551794,154.04,88.8602 +551795,152.44,88.8052 +551796,150.81,88.7702 +551797,154.26,88.9729 +551798,152.69,88.8595 +551799,151.1,88.7638 +551800,149.49,88.6875 +551801,152.9,89.01218 +551802,151.35,88.8587 +551803,149.77,88.7224 +551804,148.17,88.6049 +551805,151.54,89.05127 +551806,150,88.8578 +551807,148.44,88.681 +551808,146.85,88.5225 +551809,150.17,89.09018 +551810,148.65,88.8569 +551811,147.1,88.6397 +551812,145.53,88.4402 +551813,148.81,89.12887 +551814,147.3,88.8558 +551815,145.77,88.5984 +551816,144.22,88.3582 +551817,147.44,89.16732 +551818,145.95,88.8547 +551819,144.44,88.5572 +551820,142.9,88.2764 +551821,146.08,89.20549 +551822,144.6,88.8535 +551823,143.11,88.5161 +551824,141.59,88.1949 +551825,144.71,89.24335 +551826,143.25,88.8521 +551827,141.78,88.475 +551828,140.28,88.1137 +551829,143.34,89.28088 +551830,141.9,88.8506 +551831,140.45,88.4341 +551832,138.97,88.0329 +551833,141.97,89.31804 +551834,140.55,88.8489 +551835,139.12,88.3932 +551836,137.66,87.9524 +551837,140.6,89.3548 +551838,139.2,88.8471 +551839,137.79,88.3525 +551840,136.35,87.8723 +551841,139.23,89.39115 +551842,137.85,88.8452 +551843,136.46,88.3119 +551844,135.05,87.7927 +551845,137.85,89.42704 +551846,136.5,88.843 +551847,135.13,88.2714 +551848,133.74,87.7136 +551849,136.48,89.46244 +551850,135.15,88.8407 +551851,133.8,88.231 +551852,132.44,87.6349 +551853,135.1,89.49734 +551854,133.8,88.8382 +551855,132.48,88.1908 +551856,131.13,87.5567 +551857,133.72,89.53171 +551858,132.45,88.8355 +551859,131.15,88.1508 +551860,129.83,87.4792 +551861,132.35,89.5655 +551862,131.09,88.8326 +551863,129.82,88.111 +551864,128.53,87.4022 +551865,130.97,89.5987 +551866,129.74,88.8294 +551867,128.5,88.0713 +551868,127.23,87.3258 +551869,129.59,89.63129 +551870,128.39,88.8261 +551871,127.17,88.0318 +551872,125.93,87.25 +551873,128.21,89.66322 +551874,127.04,88.8225 +551875,125.84,87.9925 +551876,124.63,87.1749 +551877,126.82,89.69448 +551878,125.68,88.8186 +551879,124.52,87.9535 +551880,123.34,87.1006 +551881,125.44,89.72504 +551882,124.33,88.8145 +551883,123.19,87.9146 +551884,122.04,87.0269 +551885,124.06,89.75487 +551886,122.97,88.8101 +551887,121.87,87.876 +551888,120.75,86.954 +551889,122.67,89.78394 +551890,121.62,88.8055 +551891,120.54,87.8376 +551892,119.45,86.8818 +551893,121.29,89.81224 +551894,120.26,88.8006 +551895,119.22,87.7995 +551896,118.16,86.8105 +551897,119.9,89.83973 +551898,118.91,88.7954 +551899,117.9,87.7616 +551900,116.87,86.74 +551901,118.51,89.86639 +551902,117.55,88.7898 +551903,116.57,87.724 +551904,115.58,86.6703 +551905,117.13,89.89221 +551906,116.2,88.784 +551907,115.25,87.6867 +551908,114.28,86.6015 +551909,115.74,89.917138 +551910,114.84,88.7779 +551911,113.93,87.6496 +551912,112.99,86.5336 +551913,114.35,89.94117 +551914,113.49,88.7715 +551915,112.61,87.6128 +551916,111.71,86.4667 +551917,112.96,89.964278 +551918,112.13,88.7647 +551919,111.28,87.5764 +551920,110.42,86.4006 +551921,111.57,89.986439 +551922,110.77,88.7576 +551923,109.96,87.5402 +551924,109.13,86.3356 +551925,110.17,90.0076313 +551926,109.42,88.7501 +551927,108.64,87.5043 +551928,107.84,86.2715 +551929,108.78,90.027833 +551930,108.06,88.7423 +551931,107.32,87.4688 +551932,106.56,86.2084 +551933,107.39,90.047022 +551934,106.7,88.7341 +551935,106,87.4335 +551936,105.27,86.1464 +551937,106,90.065178 +551938,105.35,88.7256 +551939,104.68,87.3986 +551940,103.99,86.0854 +551941,104.6,90.08228 +551942,103.99,88.7167 +551943,103.36,87.3641 +551944,102.7,86.0254 +551945,103.21,90.098309 +551946,102.63,88.7074 +551947,102.04,87.3299 +551948,101.42,85.9666 +551949,101.81,90.11325 +551950,101.28,88.6977 +551951,100.72,87.296 +551952,100.13,85.9089 +551953,100.42,90.12707 +551954,99.918,88.6877 +551955,99.396,87.2625 +551956,98.851,85.8522 +551957,99.019,90.13977 +551958,98.56,88.6773 +551959,98.076,87.2294 +551960,97.569,85.7968 +551961,97.622,90.15132 +551962,97.202,88.6664 +551963,96.757,87.1966 +551964,96.287,85.7424 +551965,96.225,90.1617 +551966,95.844,88.6552 +551967,95.437,87.1642 +551968,95.005,85.6893 +551969,94.828,90.1709 +551970,94.486,88.6435 +551971,94.118,87.1321 +551972,93.724,85.6373 +551973,93.43,90.17891 +551974,93.128,88.6314 +551975,92.799,87.1005 +551976,92.443,85.5865 +551977,92.032,90.1857 +551978,91.77,88.6189 +551979,91.48,87.0692 +551980,91.163,85.5369 +551981,90.634,90.19127 +551982,90.412,88.606 +551983,90.161,87.0384 +551984,89.883,85.4886 +551985,89.236,90.1956 +551986,89.054,88.5926 +551987,88.842,87.0079 +551988,88.603,85.4415 +551989,87.837,90.19867 +551990,87.695,88.5788 +551991,87.524,86.9779 +551992,87.324,85.3956 +551993,86.438,90.20047 +551994,86.337,88.5646 +551995,86.205,86.9482 +551996,86.045,85.351 +551997,85.039,90.20099 +551998,84.979,88.5499 +551999,84.887,86.9189 +552000,84.766,85.3077 +552001,83.64,90.20022 +552002,83.621,88.5348 +552003,83.569,86.8901 +552004,83.487,85.2656 +552005,82.241,90.19815 +552006,82.262,88.5192 +552007,82.25,86.8617 +552008,82.208,85.2249 +552009,80.841,90.19476 +552010,80.904,88.5032 +552011,80.932,86.8337 +552012,80.929,85.1854 +552013,79.442,90.19005 +552014,79.546,88.4868 +552015,79.614,86.8061 +552016,79.651,85.1472 +552017,78.043,90.18401 +552018,78.187,88.4698 +552019,78.296,86.7789 +552020,78.372,85.1104 +552021,76.644,90.17663 +552022,76.829,88.4524 +552023,76.978,86.7522 +552024,77.094,85.0748 +552025,75.245,90.1679 +552026,75.471,88.4346 +552027,75.66,86.7259 +552028,75.815,85.0406 +552029,73.846,90.15781 +552030,74.113,88.4163 +552031,74.342,86.7 +552032,74.537,85.0077 +552033,72.447,90.14636 +552034,72.755,88.3975 +552035,73.024,86.6746 +552036,73.258,84.9761 +552037,71.048,90.13355 +552038,71.397,88.3782 +552039,71.706,86.6496 +552040,71.979,84.9459 +552041,69.65,90.11936 +552042,70.039,88.3585 +552043,70.388,86.625 +552044,70.7,84.917 +552045,68.252,90.1038 +552046,68.682,88.3383 +552047,69.07,86.6009 +552048,69.421,84.8894 +552049,66.854,90.086859 +552050,67.324,88.3177 +552051,67.752,86.5772 +552052,68.142,84.8632 +552053,65.456,90.068534 +552054,65.967,88.2966 +552055,66.434,86.5539 +552056,66.863,84.8383 +552057,64.059,90.048825 +552058,64.61,88.275 +552059,65.116,86.5311 +552060,65.583,84.8148 +552061,62.662,90.02773 +552062,63.252,88.2529 +552063,63.797,86.5087 +552064,64.303,84.7925 +552065,61.266,90.0052488 +552066,61.896,88.2304 +552067,62.479,86.4867 +552068,63.022,84.7717 +552069,59.87,89.981381 +552070,60.539,88.2074 +552071,61.161,86.4652 +552072,61.742,84.7521 +552073,58.475,89.956128 +552074,59.182,88.1839 +552075,59.842,86.4441 +552076,60.461,84.7339 +552077,57.08,89.929491 +552078,57.826,88.1599 +552079,58.524,86.4235 +552080,59.179,84.717 +552081,55.685,89.901473 +552082,56.47,88.1355 +552083,57.205,86.4032 +552084,57.897,84.7015 +552085,54.292,89.87208 +552086,55.114,88.1107 +552087,55.886,86.3835 +552088,56.615,84.6872 +552089,52.898,89.8413 +552090,53.758,88.0853 +552091,54.567,86.3641 +552092,55.332,84.6743 +552093,51.506,89.80916 +552094,52.402,88.0595 +552095,53.248,86.3452 +552096,54.049,84.6626 +552097,50.114,89.77566 +552098,51.047,88.0333 +552099,51.928,86.3267 +552100,52.765,84.6523 +552101,48.723,89.74079 +552102,49.692,88.0065 +552103,50.609,86.3086 +552104,51.481,84.6433 +552105,47.332,89.70457 +552106,48.337,87.9794 +552107,49.289,86.2909 +552108,50.195,84.6355 +552109,45.942,89.66701 +552110,46.983,87.9517 +552111,47.969,86.2737 +552112,48.91,84.629 +552113,44.553,89.62811 +552114,45.629,87.9237 +552115,46.649,86.2569 +552116,47.623,84.6238 +552117,43.165,89.58788 +552118,44.275,87.8951 +552119,45.329,86.2404 +552120,46.336,84.6198 +552121,41.778,89.54634 +552122,42.921,87.8662 +552123,44.009,86.2244 +552124,45.049,84.6171 +552125,40.392,89.50349 +552126,41.568,87.8368 +552127,42.688,86.2088 +552128,43.76,84.6156 +552129,39.006,89.45934 +552130,40.215,87.8069 +552131,41.367,86.1936 +552132,42.471,84.6153 +552133,37.621,89.4139 +552134,38.862,87.7766 +552135,40.046,86.1788 +552136,41.181,84.6163 +552137,36.238,89.36719 +552138,37.51,87.7459 +552139,38.725,86.1644 +552140,39.89,84.6184 +552141,34.855,89.31923 +552142,36.158,87.7148 +552143,37.403,86.1504 +552144,38.599,84.6217 +552145,33.473,89.27001 +552146,34.806,87.6833 +552147,36.081,86.1368 +552148,37.306,84.6261 +552149,32.093,89.21957 +552150,33.455,87.6513 +552151,34.759,86.1235 +552152,36.013,84.6317 +552153,30.713,89.16791 +552154,32.104,87.619 +552155,33.436,86.1106 +552156,34.719,84.6385 +552157,29.335,89.11505 +552158,30.754,87.5862 +552159,32.114,86.0981 +552160,33.423,84.6463 +552161,27.957,89.061 +552162,29.404,87.553 +552163,30.791,86.086 +552164,32.127,84.6553 +552165,26.581,89.00579 +552166,28.054,87.5195 +552167,29.467,86.0742 +552168,30.83,84.6653 +552169,25.206,88.9494 +552170,26.704,87.4856 +552171,28.144,86.0627 +552172,29.532,84.6764 +552173,23.832,88.8919 +552174,25.356,87.4513 +552175,26.82,86.0517 +552176,28.233,84.6886 +552177,22.459,88.8333 +552178,24.007,87.4166 +552179,25.495,86.0409 +552180,26.933,84.7018 +552181,21.087,88.7736 +552182,22.659,87.3815 +552183,24.171,86.0305 +552184,25.632,84.7159 +552185,19.717,88.7129 +552186,21.311,87.3461 +552187,22.846,86.0204 +552188,24.329,84.7311 +552189,18.347,88.651 +552190,19.964,87.3104 +552191,21.52,86.0106 +552192,23.026,84.7473 +552193,16.98,88.5882 +552194,18.617,87.2743 +552195,20.195,86.0011 +552196,21.722,84.7643 +552197,15.613,88.5243 +552198,17.271,87.2378 +552199,18.869,85.992 +552200,20.416,84.7824 +552201,14.248,88.4595 +552202,15.925,87.201 +552203,17.542,85.9831 +552204,19.109,84.8013 +552205,12.883,88.3937 +552206,14.579,87.164 +552207,16.216,85.9745 +552208,17.801,84.8211 +552209,11.521,88.3269 +552210,13.234,87.1266 +552211,14.889,85.9663 +552212,16.492,84.8417 +552213,10.159,88.2593 +552214,11.89,87.0888 +552215,13.561,85.9582 +552216,15.182,84.8632 +552217,8.7992,88.1907 +552218,10.546,87.0508 +552219,12.233,85.9505 +552220,13.871,84.8855 +552221,7.4405,88.1213 +552222,9.202,87.0125 +552223,10.905,85.943 +552224,12.558,84.9086 +552225,6.0832,88.0511 +552226,7.8588,86.974 +552227,9.5766,85.9358 +552228,11.244,84.9325 +552229,4.7272,87.98 +552230,6.5162,86.9351 +552231,8.2476,85.9288 +552232,9.9291,84.957 +552233,3.3727,87.9081 +552234,5.174,86.896 +552235,6.9182,85.9221 +552236,8.6127,84.9824 +552237,2.0195,87.8355 +552238,3.8323,86.8566 +552239,5.5884,85.9155 +552240,7.2951,85.0084 +552241,0.66779,87.7622 +552242,2.4911,86.817 +552243,4.2582,85.9092 +552244,5.9762,85.035 +552245,359.32,87.6881 +552246,1.1504,86.7771 +552247,2.9276,85.9031 +552248,4.656,85.0623 +552249,357.97,87.6134 +552250,359.81,86.737 +552251,1.5966,85.8972 +552252,3.3345,85.0902 +552253,356.62,87.538 +552254,358.47,86.6967 +552255,0.26513,85.8915 +552256,2.0117,85.1187 +552257,355.28,87.462 +552258,357.13,86.6562 +552259,358.93,85.886 +552260,0.68755,85.1478 +552261,353.93,87.3853 +552262,355.79,86.6155 +552263,357.6,85.8807 +552264,359.36,85.1774 +552265,352.59,87.3082 +552266,354.45,86.5746 +552267,356.27,85.8755 +552268,358.04,85.2075 +552269,351.25,87.2305 +552270,353.12,86.5335 +552271,354.94,85.8705 +552272,356.71,85.238 +552273,349.91,87.1523 +552274,351.78,86.4923 +552275,353.6,85.8656 +552276,355.38,85.2691 +552277,348.57,87.0736 +552278,350.44,86.4508 +552279,352.27,85.8609 +552280,354.05,85.3005 +552281,347.23,86.9945 +552282,349.11,86.4093 +552283,350.93,85.8563 +552284,352.71,85.3324 +552285,345.89,86.9149 +552286,347.77,86.3675 +552287,349.6,85.8518 +552288,351.38,85.3646 +552289,344.56,86.835 +552290,346.44,86.3257 +552291,348.26,85.8474 +552292,350.05,85.3971 +552293,343.23,86.7547 +552294,345.1,86.2837 +552295,346.93,85.8431 +552296,348.71,85.43 +552297,341.9,86.6741 +552298,343.77,86.2416 +552299,345.59,85.8389 +552300,347.37,85.4631 +552301,340.57,86.5933 +552302,342.43,86.1995 +552303,344.26,85.8348 +552304,346.03,85.4965 +552305,339.24,86.5121 +552306,341.1,86.1572 +552307,342.92,85.8308 +552308,344.69,85.5301 +552309,337.91,86.4308 +552310,339.77,86.1148 +552311,341.58,85.8268 +552312,343.35,85.5639 +552313,336.58,86.3492 +552314,338.44,86.0724 +552315,340.24,85.8228 +552316,342.01,85.5978 +552317,335.26,86.2675 +552318,337.1,86.0299 +552319,338.9,85.8189 +552320,340.66,85.6319 +552321,333.94,86.1856 +552322,335.77,85.9874 +552323,337.57,85.8151 +552324,339.32,85.6662 +552325,332.62,86.1037 +552326,334.44,85.9448 +552327,336.23,85.8112 +552328,337.97,85.7004 +552329,331.3,86.0216 +552330,333.11,85.9022 +552331,334.89,85.8074 +552332,336.62,85.7348 +552333,329.98,85.9396 +552334,331.78,85.8596 +552335,333.55,85.8036 +552336,335.27,85.7691 +552337,328.66,85.8575 +552338,330.45,85.817 +552339,332.21,85.7997 +552340,333.92,85.8035 +552341,327.35,85.7755 +552342,329.13,85.7743 +552343,330.87,85.7959 +552344,332.57,85.8378 +552345,326.03,85.6935 +552346,327.8,85.7317 +552347,329.53,85.792 +552348,331.22,85.872 +552349,324.72,85.6116 +552350,326.47,85.6891 +552351,328.18,85.788 +552352,329.86,85.9062 +552353,323.41,85.5298 +552354,325.14,85.6466 +552355,326.84,85.7841 +552356,328.5,85.9402 +552357,322.1,85.4482 +552358,323.82,85.6041 +552359,325.5,85.78 +552360,327.15,85.974 +552361,320.79,85.3668 +552362,322.49,85.5616 +552363,324.16,85.7759 +552364,325.79,86.0077 +552365,319.48,85.2856 +552366,321.16,85.5192 +552367,322.81,85.7717 +552368,324.43,86.0412 +552369,318.18,85.2046 +552370,319.84,85.4769 +552371,321.47,85.7675 +552372,323.07,86.0744 +552373,316.87,85.1239 +552374,318.51,85.4346 +552375,320.13,85.7631 +552376,321.7,86.1073 +552377,315.57,85.0435 +552378,317.19,85.3925 +552379,318.78,85.7586 +552380,320.34,86.14 +552381,314.26,84.9635 +552382,315.87,85.3504 +552383,317.44,85.754 +552384,318.97,86.1723 +552385,312.96,84.8838 +552386,314.54,85.3085 +552387,316.09,85.7493 +552388,317.61,86.2043 +552389,311.66,84.8045 +552390,313.22,85.2667 +552391,314.75,85.7444 +552392,316.24,86.2359 +552393,310.37,84.7257 +552394,311.9,85.225 +552395,313.4,85.7394 +552396,314.87,86.2671 +552397,309.07,84.6473 +552398,310.58,85.1835 +552399,312.05,85.7343 +552400,313.5,86.2978 +552401,307.77,84.5693 +552402,309.25,85.1421 +552403,310.71,85.729 +552404,312.13,86.3281 +552405,306.48,84.4919 +552406,307.93,85.1009 +552407,309.36,85.7235 +552408,310.76,86.3579 +552409,305.18,84.4151 +552410,306.61,85.0598 +552411,308.01,85.7178 +552412,309.38,86.3871 +552413,303.89,84.3388 +552414,305.29,85.019 +552415,306.67,85.7119 +552416,308.01,86.4159 +552417,302.6,84.2631 +552418,303.97,84.9783 +552419,305.32,85.7059 +552420,306.63,86.444 +552421,301.31,84.1881 +552422,302.65,84.9378 +552423,303.97,85.6996 +552424,305.26,86.4716 +552425,300.02,84.1137 +552426,301.33,84.8976 +552427,302.62,85.6931 +552428,303.88,86.4985 +552429,298.73,84.0399 +552430,300.01,84.8575 +552431,301.27,85.6864 +552432,302.5,86.5248 +552433,297.44,83.9669 +552434,298.7,84.8177 +552435,299.92,85.6794 +552436,301.12,86.5504 +552437,296.16,83.8946 +552438,297.38,84.7781 +552439,298.57,85.6722 +552440,299.74,86.5753 +552441,294.87,83.8231 +552442,296.06,84.7387 +552443,297.22,85.6648 +552444,298.36,86.5995 +552445,293.59,83.7524 +552446,294.74,84.6996 +552447,295.87,85.6571 +552448,296.98,86.623 +552449,292.3,83.6824 +552450,293.43,84.6608 +552451,294.52,85.6491 +552452,295.59,86.6457 +552453,291.02,83.6133 +552454,292.11,84.6222 +552455,293.17,85.6409 +552456,294.21,86.6676 +552457,289.74,83.5451 +552458,290.79,84.5839 +552459,291.82,85.6324 +552460,292.82,86.6886 +552461,288.46,83.4777 +552462,289.48,84.5459 +552463,290.47,85.6235 +552464,291.44,86.7089 +552465,287.18,83.4112 +552466,288.16,84.5082 +552467,289.12,85.6144 +552468,290.05,86.7283 +552469,285.9,83.3457 +552470,286.85,84.4708 +552471,287.77,85.605 +552472,288.66,86.7468 +552473,284.62,83.2811 +552474,285.53,84.4337 +552475,286.42,85.5953 +552476,287.27,86.7644 +552477,283.34,83.2174 +552478,284.22,84.3968 +552479,285.06,85.5852 +552480,285.89,86.781 +552481,282.07,83.1548 +552482,282.9,84.3604 +552483,283.71,85.5749 +552484,284.5,86.7968 +552485,280.79,83.0931 +552486,281.59,84.3242 +552487,282.36,85.5642 +552488,283.11,86.8115 +552489,279.51,83.0325 +552490,280.27,84.2884 +552491,281.01,85.5531 +552492,281.71,86.8253 +552493,278.24,82.9729 +552494,278.96,84.2529 +552495,279.65,85.5418 +552496,280.32,86.8381 +552497,276.96,82.9144 +552498,277.65,84.2177 +552499,278.3,85.53 +552500,278.93,86.8499 +552501,275.69,82.857 +552502,276.33,84.1829 +552503,276.95,85.5179 +552504,277.54,86.8606 +552505,274.42,82.8006 +552506,275.02,84.1485 +552507,275.59,85.5055 +552508,276.14,86.8703 +552509,273.14,82.7454 +552510,273.71,84.1144 +552511,274.24,85.4927 +552512,274.75,86.8789 +552513,271.87,82.6913 +552514,272.39,84.0807 +552515,272.89,85.4795 +552516,273.36,86.8864 +552517,270.6,82.6383 +552518,271.08,84.0473 +552519,271.53,85.4659 +552520,271.96,86.8928 +552521,269.33,82.5865 +552522,269.77,84.0144 +552523,270.18,85.452 +552524,270.57,86.8981 +552525,268.06,82.5359 +552526,268.46,83.9818 +552527,268.83,85.4377 +552528,269.17,86.9023 +552529,266.79,82.4864 +552530,267.14,83.9496 +552531,267.47,85.4229 +552532,267.77,86.9053 +552533,265.52,82.4381 +552534,265.83,83.9178 +552535,266.12,85.4078 +552536,266.38,86.9072 +552537,264.25,82.3911 +552538,264.52,83.8864 +552539,264.77,85.3923 +552540,264.98,86.9078 +552541,262.98,82.3453 +552542,263.21,83.8554 +552543,263.41,85.3764 +552544,263.58,86.9073 +552545,261.71,82.3007 +552546,261.9,83.8248 +552547,262.06,85.36 +552548,262.19,86.9056 +552549,260.44,82.2573 +552550,260.59,83.7946 +552551,260.7,85.3433 +552552,260.79,86.9027 +552553,259.17,82.2152 +552554,259.27,83.7648 +552555,259.35,85.3261 +552556,259.39,86.8986 +552557,257.9,82.1743 +552558,257.96,83.7354 +552559,258,85.3086 +552560,258,86.8933 +552561,256.63,82.1348 +552562,256.65,83.7065 +552563,256.64,85.2906 +552564,256.6,86.8867 +552565,255.36,82.0964 +552566,255.34,83.6779 +552567,255.29,85.2722 +552568,255.2,86.8788 +552569,254.09,82.0594 +552570,254.03,83.6498 +552571,253.93,85.2533 +552572,253.8,86.8697 +552573,252.82,82.0236 +552574,252.72,83.6221 +552575,252.58,85.2341 +552576,252.41,86.8594 +552577,251.55,81.9892 +552578,251.41,83.5948 +552579,251.23,85.2144 +552580,251.01,86.8477 +552581,250.28,81.956 +552582,250.1,83.568 +552583,249.87,85.1942 +552584,249.61,86.8348 +552585,249.02,81.9241 +552586,248.78,83.5415 +552587,248.52,85.1737 +552588,248.21,86.8207 +552589,247.75,81.8936 +552590,247.47,83.5155 +552591,247.16,85.1527 +552592,246.82,86.8052 +552593,246.48,81.8643 +552594,246.16,83.49 +552595,245.81,85.1313 +552596,245.42,86.7884 +552597,245.21,81.8363 +552598,244.85,83.4648 +552599,244.46,85.1094 +552600,244.02,86.7704 +552601,243.94,81.8097 +552602,243.54,83.4401 +552603,243.1,85.0871 +552604,242.63,86.751 +552605,242.67,81.7843 +552606,242.23,83.4159 +552607,241.75,85.0644 +552608,241.23,86.7304 +552609,241.4,81.7602 +552610,240.92,83.392 +552611,240.4,85.0412 +552612,239.84,86.7084 +552613,240.13,81.7375 +552614,239.61,83.3686 +552615,239.05,85.0176 +552616,238.44,86.6852 +552617,238.85,81.716 +552618,238.29,83.3456 +552619,237.69,84.9935 +552620,237.05,86.6607 +552621,237.58,81.6959 +552622,236.98,83.3231 +552623,236.34,84.969 +552624,235.65,86.6348 +552625,236.31,81.677 +552626,235.67,83.301 +552627,234.99,84.9441 +552628,234.26,86.6077 +552629,235.04,81.6595 +552630,234.36,83.2793 +552631,233.64,84.9188 +552632,232.86,86.5792 +552633,233.77,81.6432 +552634,233.05,83.258 +552635,232.28,84.893 +552636,231.47,86.5495 +552637,232.49,81.6282 +552638,231.73,83.2372 +552639,230.93,84.8668 +552640,230.08,86.5185 +552641,231.22,81.6145 +552642,230.42,83.2168 +552643,229.58,84.8401 +552644,228.69,86.4862 +552645,229.95,81.602 +552646,229.11,83.1968 +552647,228.23,84.8131 +552648,227.3,86.4526 +552649,228.67,81.5908 +552650,227.8,83.1772 +552651,226.88,84.7856 +552652,225.91,86.4177 +552653,227.4,81.5809 +552654,226.48,83.158 +552655,225.53,84.7576 +552656,224.52,86.3816 +552657,226.12,81.5722 +552658,225.17,83.1393 +552659,224.18,84.7293 +552660,223.13,86.3441 +552661,224.84,81.5647 +552662,223.86,83.121 +552663,222.83,84.7005 +552664,221.74,86.3055 +552665,223.57,81.5585 +552666,222.54,83.103 +552667,221.48,84.6714 +552668,220.35,86.2656 +552669,222.29,81.5535 +552670,221.23,83.0855 +552671,220.13,84.6418 +552672,218.97,86.2244 +552673,221.01,81.5496 +552674,219.92,83.0684 +552675,218.78,84.6118 +552676,217.58,86.182 +552677,219.73,81.547 +552678,218.6,83.0517 +552679,217.43,84.5814 +552680,216.2,86.1384 +552681,218.45,81.5456 +552682,217.29,83.0354 +552683,216.08,84.5505 +552684,214.81,86.0936 +552685,217.17,81.5453 +552686,215.97,83.0195 +552687,214.73,84.5193 +552688,213.43,86.0476 +552689,215.88,81.5462 +552690,214.66,83.0039 +552691,213.38,84.4877 +552692,212.05,86.0003 +552693,214.6,81.5482 +552694,213.34,82.9888 +552695,212.03,84.4558 +552696,210.67,85.952 +552697,213.32,81.5513 +552698,212.03,82.974 +552699,210.69,84.4234 +552700,209.29,85.9024 +552701,212.03,81.5556 +552702,210.71,82.9596 +552703,209.34,84.3906 +552704,207.91,85.8517 +552705,210.75,81.5609 +552706,209.4,82.9455 +552707,207.99,84.3575 +552708,206.53,85.7999 +552709,209.46,81.5673 +552710,208.08,82.9318 +552711,206.65,84.324 +552712,205.15,85.7469 +552713,208.17,81.5748 +552714,206.76,82.9185 +552715,205.3,84.2902 +552716,203.78,85.6929 +552717,206.88,81.5833 +552718,205.45,82.9055 +552719,203.96,84.2559 +552720,202.4,85.6377 +552721,205.59,81.5929 +552722,204.13,82.8929 +552723,202.61,84.2214 +552724,201.03,85.5815 +552725,204.3,81.6034 +552726,202.81,82.8806 +552727,201.27,84.1865 +552728,199.66,85.5243 +552729,203.01,81.6149 +552730,201.49,82.8686 +552731,199.92,84.1512 +552732,198.29,85.466 +552733,201.72,81.6274 +552734,200.18,82.857 +552735,198.58,84.1156 +552736,196.92,85.4066 +552737,200.42,81.6409 +552738,198.86,82.8457 +552739,197.24,84.0797 +552740,195.55,85.3463 +552741,199.13,81.6553 +552742,197.54,82.8347 +552743,195.89,84.0435 +552744,194.18,85.285 +552745,197.83,81.6705 +552746,196.22,82.824 +552747,194.55,84.0069 +552748,192.82,85.2228 +552749,196.53,81.6867 +552750,194.9,82.8136 +552751,193.21,83.9701 +552752,191.45,85.1596 +552753,195.23,81.7037 +552754,193.58,82.8035 +552755,191.87,83.9329 +552756,190.09,85.0955 +552757,193.93,81.7216 +552758,192.26,82.7937 +552759,190.53,83.8955 +552760,188.73,85.0305 +552761,192.63,81.7403 +552762,190.94,82.7841 +552763,189.19,83.8577 +552764,187.37,84.9646 +552765,191.33,81.7598 +552766,189.62,82.7749 +552767,187.85,83.8197 +552768,186.01,84.8979 +552769,190.02,81.78 +552770,188.29,82.7658 +552771,186.51,83.7815 +552772,184.65,84.8304 +552773,188.72,81.801 +552774,186.97,82.7571 +552775,185.17,83.7429 +552776,183.29,84.762 +552777,187.41,81.8228 +552778,185.65,82.7486 +552779,183.83,83.7041 +552780,181.94,84.6929 +552781,186.1,81.8452 +552782,184.33,82.7403 +552783,182.49,83.6651 +552784,180.59,84.623 +552785,184.79,81.8683 +552786,183,82.7323 +552787,181.15,83.6258 +552788,179.23,84.5524 +552789,183.48,81.8921 +552790,181.68,82.7245 +552791,179.82,83.5863 +552792,177.88,84.4811 +552793,182.17,81.9165 +552794,180.35,82.7169 +552795,178.48,83.5466 +552796,176.54,84.4091 +552797,180.86,81.9414 +552798,179.03,82.7095 +552799,177.14,83.5067 +552800,175.19,84.3365 +552801,179.54,81.967 +552802,177.7,82.7023 +552803,175.81,83.4665 +552804,173.84,84.2632 +552805,178.23,81.9931 +552806,176.38,82.6952 +552807,174.47,83.4262 +552808,172.5,84.1894 +552809,176.91,82.0197 +552810,175.05,82.6884 +552811,173.14,83.3857 +552812,171.16,84.115 +552813,175.59,82.0469 +552814,173.73,82.6817 +552815,171.8,83.345 +552816,169.81,84.04 +552817,174.27,82.0744 +552818,172.4,82.6752 +552819,170.47,83.3042 +552820,168.48,83.9645 +552821,172.95,82.1025 +552822,171.07,82.6689 +552823,169.14,83.2632 +552824,167.14,83.8885 +552825,171.63,82.1309 +552826,169.74,82.6627 +552827,167.8,83.222 +552828,165.8,83.8121 +552829,170.3,82.1598 +552830,168.42,82.6566 +552831,166.47,83.1807 +552832,164.47,83.7353 +552833,168.98,82.189 +552834,167.09,82.6507 +552835,165.14,83.1393 +552836,163.13,83.658 +552837,167.65,82.2185 +552838,165.76,82.6448 +552839,163.81,83.0977 +552840,161.8,83.5804 +552841,166.32,82.2483 +552842,164.43,82.6391 +552843,162.48,83.0561 +552844,160.47,83.5024 +552845,164.99,82.2784 +552846,163.1,82.6335 +552847,161.15,83.0143 +552848,159.14,83.4241 +552849,163.66,82.3088 +552850,161.77,82.6279 +552851,159.82,82.9725 +552852,157.81,83.3455 +552853,162.32,82.3393 +552854,160.44,82.6225 +552855,158.49,82.9306 +552856,156.49,83.2667 +552857,160.99,82.3701 +552858,159.1,82.6171 +552859,157.16,82.8886 +552860,155.16,83.1877 +552861,159.65,82.401 +552862,157.77,82.6117 +552863,155.84,82.8465 +552864,153.84,83.1084 +552865,158.32,82.4321 +552866,156.44,82.6064 +552867,154.51,82.8044 +552868,152.52,83.029 +552869,156.98,82.4633 +552870,155.11,82.6012 +552871,153.18,82.7623 +552872,151.2,82.9495 +552873,155.64,82.4945 +552874,153.77,82.5959 +552875,151.86,82.7201 +552876,149.88,82.8699 +552877,154.3,82.5258 +552878,152.44,82.5907 +552879,150.53,82.6779 +552880,148.57,82.7902 +552881,152.95,82.5571 +552882,151.11,82.5856 +552883,149.21,82.6357 +552884,147.25,82.7104 +552885,151.61,82.5885 +552886,149.77,82.5804 +552887,147.88,82.5935 +552888,145.94,82.6307 +552889,150.26,82.6197 +552890,148.44,82.5752 +552891,146.56,82.5513 +552892,144.63,82.5509 +552893,148.91,82.651 +552894,147.1,82.5699 +552895,145.24,82.5092 +552896,143.32,82.4712 +552897,147.57,82.6821 +552898,145.76,82.5647 +552899,143.91,82.467 +552900,142.01,82.3916 +552901,146.22,82.7131 +552902,144.43,82.5594 +552903,142.59,82.4249 +552904,140.7,82.3121 +552905,144.86,82.744 +552906,143.09,82.5541 +552907,141.27,82.3829 +552908,139.4,82.2327 +552909,143.51,82.7746 +552910,141.75,82.5487 +552911,139.95,82.3409 +552912,138.09,82.1535 +552913,142.16,82.8051 +552914,140.42,82.5433 +552915,138.63,82.2989 +552916,136.79,82.0746 +552917,140.8,82.8354 +552918,139.08,82.5377 +552919,137.31,82.2571 +552920,135.49,81.9958 +552921,139.45,82.8654 +552922,137.74,82.5321 +552923,135.99,82.2153 +552924,134.19,81.9173 +552925,138.09,82.8951 +552926,136.4,82.5264 +552927,134.67,82.1736 +552928,132.89,81.8391 +552929,136.73,82.9245 +552930,135.06,82.5206 +552931,133.35,82.1321 +552932,131.59,81.7612 +552933,135.37,82.9535 +552934,133.72,82.5147 +552935,132.03,82.0906 +552936,130.29,81.6837 +552937,134,82.9822 +552938,132.38,82.5086 +552939,130.71,82.0493 +552940,129,81.6065 +552941,132.64,83.0105 +552942,131.04,82.5025 +552943,129.39,82.0081 +552944,127.71,81.5297 +552945,131.28,83.0384 +552946,129.7,82.4962 +552947,128.08,81.9671 +552948,126.41,81.4534 +552949,129.91,83.0658 +552950,128.36,82.4897 +552951,126.76,81.9262 +552952,125.12,81.3776 +552953,128.54,83.0928 +552954,127.01,82.4831 +552955,125.45,81.8855 +552956,123.83,81.3022 +552957,127.17,83.1193 +552958,125.67,82.4763 +552959,124.13,81.8449 +552960,122.55,81.2273 +552961,125.81,83.1452 +552962,124.33,82.4693 +552963,122.81,81.8046 +552964,121.26,81.153 +552965,124.43,83.1706 +552966,122.99,82.4622 +552967,121.5,81.7644 +552968,119.97,81.0793 +552969,123.06,83.1954 +552970,121.64,82.4548 +552971,120.19,81.7244 +552972,118.69,81.0062 +552973,121.69,83.2196 +552974,120.3,82.4473 +552975,118.87,81.6846 +552976,117.4,80.9337 +552977,120.32,83.2432 +552978,118.96,82.4396 +552979,117.56,81.6451 +552980,116.12,80.8618 +552981,118.94,83.2662 +552982,117.61,82.4316 +552983,116.25,81.6058 +552984,114.84,80.7907 +552985,117.56,83.2885 +552986,116.27,82.4234 +552987,114.93,81.5667 +552988,113.56,80.7202 +552989,116.19,83.3101 +552990,114.92,82.415 +552991,113.62,81.5278 +552992,112.28,80.6505 +552993,114.81,83.331 +552994,113.58,82.4063 +552995,112.31,81.4892 +552996,111,80.5815 +552997,113.43,83.3511 +552998,112.23,82.3974 +552999,111,81.4509 +553000,109.73,80.5133 +553001,112.05,83.3705 +553002,110.88,82.3883 +553003,109.69,81.4128 +553004,108.45,80.4459 +553005,110.67,83.3891 +553006,109.54,82.3789 +553007,108.37,81.375 +553008,107.18,80.3793 +553009,109.29,83.4069 +553010,108.19,82.3692 +553011,107.06,81.3374 +553012,105.9,80.3136 +553013,107.9,83.4239 +553014,106.84,82.3592 +553015,105.75,81.3002 +553016,104.63,80.2488 +553017,106.52,83.44 +553018,105.5,82.3489 +553019,104.44,81.2632 +553020,103.36,80.1848 +553021,105.13,83.4553 +553022,104.15,82.3384 +553023,103.13,81.2266 +553024,102.09,80.1217 +553025,103.75,83.4697 +553026,102.8,82.3275 +553027,101.83,81.1902 +553028,100.82,80.0596 +553029,102.36,83.4832 +553030,101.46,82.3164 +553031,100.52,81.1542 +553032,99.546,79.998 +553033,100.98,83.4957 +553034,100.11,82.3049 +553035,99.208,81.1185 +553036,98.277,79.938 +553037,99.588,83.5074 +553038,98.759,82.2932 +553039,97.899,81.0831 +553040,97.008,79.879 +553041,98.199,83.518 +553042,97.41,82.2811 +553043,96.591,81.0481 +553044,95.741,79.821 +553045,96.81,83.5277 +553046,96.062,82.2686 +553047,95.283,81.0134 +553048,94.474,79.764 +553049,95.42,83.5364 +553050,94.713,82.2559 +553051,93.976,80.979 +553052,93.208,79.708 +553053,94.029,83.5441 +553054,93.364,82.2428 +553055,92.668,80.945 +553056,91.942,79.653 +553057,92.638,83.5508 +553058,92.015,82.2293 +553059,91.361,80.9114 +553060,90.677,79.599 +553061,91.247,83.5564 +553062,90.665,82.2156 +553063,90.054,80.8781 +553064,89.412,79.546 +553065,89.855,83.561 +553066,89.316,82.2014 +553067,88.747,80.8452 +553068,88.148,79.494 +553069,88.462,83.5645 +553070,87.966,82.1869 +553071,87.441,80.8126 +553072,86.885,79.443 +553073,87.069,83.567 +553074,86.616,82.172 +553075,86.134,80.7805 +553076,85.622,79.394 +553077,85.675,83.5683 +553078,85.267,82.1568 +553079,84.828,80.7487 +553080,84.359,79.345 +553081,84.281,83.5685 +553082,83.917,82.1412 +553083,83.522,80.7173 +553084,83.097,79.298 +553085,82.887,83.5676 +553086,82.567,82.1252 +553087,82.216,80.6863 +553088,81.835,79.252 +553089,81.492,83.5656 +553090,81.217,82.1088 +553091,80.91,80.6556 +553092,80.574,79.207 +553093,80.097,83.5625 +553094,79.866,82.0921 +553095,79.605,80.6254 +553096,79.312,79.164 +553097,78.702,83.5582 +553098,78.516,82.0749 +553099,78.299,80.5956 +553100,78.051,79.121 +553101,77.307,83.5527 +553102,77.166,82.0574 +553103,76.994,80.5662 +553104,76.79,79.08 +553105,75.911,83.546 +553106,75.816,82.0395 +553107,75.688,80.5371 +553108,75.53,79.04 +553109,74.516,83.5382 +553110,74.465,82.0212 +553111,74.383,80.5085 +553112,74.269,79.001 +553113,73.12,83.5292 +553114,73.115,82.0025 +553115,73.078,80.4803 +553116,73.009,78.964 +553117,71.724,83.519 +553118,71.765,81.9833 +553119,71.772,80.4526 +553120,71.749,78.928 +553121,70.328,83.5076 +553122,70.414,81.9638 +553123,70.467,80.4252 +553124,70.488,78.893 +553125,68.932,83.495 +553126,69.064,81.9439 +553127,69.162,80.3982 +553128,69.228,78.859 +553129,67.536,83.4812 +553130,67.714,81.9236 +553131,67.857,80.3717 +553132,67.968,78.826 +553133,66.14,83.4661 +553134,66.363,81.9028 +553135,66.552,80.3456 +553136,66.707,78.795 +553137,64.744,83.4499 +553138,65.013,81.8817 +553139,65.247,80.3199 +553140,65.447,78.765 +553141,63.348,83.4324 +553142,63.663,81.8601 +553143,63.942,80.2946 +553144,64.187,78.737 +553145,61.953,83.4137 +553146,62.313,81.8382 +553147,62.637,80.2698 +553148,62.926,78.709 +553149,60.557,83.3937 +553150,60.963,81.8158 +553151,61.332,80.2453 +553152,61.665,78.683 +553153,59.162,83.3726 +553154,59.614,81.793 +553155,60.027,80.2213 +553156,60.404,78.658 +553157,57.767,83.3501 +553158,58.264,81.7698 +553159,58.721,80.1978 +553160,59.143,78.635 +553161,56.373,83.3265 +553162,56.914,81.7462 +553163,57.416,80.1746 +553164,57.881,78.612 +553165,54.979,83.3016 +553166,55.565,81.7221 +553167,56.111,80.1519 +553168,56.619,78.591 +553169,53.585,83.2755 +553170,54.216,81.6977 +553171,54.805,80.1296 +553172,55.357,78.571 +553173,52.191,83.2482 +553174,52.867,81.6729 +553175,53.499,80.1077 +553176,54.094,78.553 +553177,50.798,83.2196 +553178,51.518,81.6476 +553179,52.194,80.0862 +553180,52.831,78.536 +553181,49.406,83.1898 +553182,50.169,81.6219 +553183,50.888,80.0652 +553184,51.567,78.519 +553185,48.014,83.1588 +553186,48.82,81.5959 +553187,49.582,80.0446 +553188,50.303,78.505 +553189,46.622,83.1265 +553190,47.472,81.5694 +553191,48.276,80.0244 +553192,49.038,78.491 +553193,45.232,83.093 +553194,46.124,81.5425 +553195,46.969,80.0046 +553196,47.773,78.479 +553197,43.841,83.0584 +553198,44.776,81.5152 +553199,45.663,79.985 +553200,46.508,78.468 +553201,42.452,83.0225 +553202,43.428,81.4875 +553203,44.356,79.966 +553204,45.241,78.458 +553205,41.063,82.9854 +553206,42.081,81.4595 +553207,43.049,79.948 +553208,43.974,78.449 +553209,39.675,82.9471 +553210,40.734,81.431 +553211,41.742,79.929 +553212,42.707,78.442 +553213,38.287,82.9077 +553214,39.387,81.4021 +553215,40.435,79.912 +553216,41.438,78.436 +553217,36.901,82.8671 +553218,38.04,81.3729 +553219,39.128,79.894 +553220,40.169,78.431 +553221,35.515,82.8253 +553222,36.694,81.3432 +553223,37.82,79.877 +553224,38.899,78.427 +553225,34.13,82.7823 +553226,35.348,81.3132 +553227,36.512,79.861 +553228,37.629,78.424 +553229,32.746,82.7382 +553230,34.002,81.2828 +553231,35.204,79.845 +553232,36.357,78.423 +553233,31.362,82.693 +553234,32.657,81.252 +553235,33.895,79.829 +553236,35.085,78.422 +553237,29.98,82.6466 +553238,31.312,81.2209 +553239,32.587,79.813 +553240,33.812,78.423 +553241,28.599,82.5992 +553242,29.967,81.1894 +553243,31.278,79.798 +553244,32.538,78.425 +553245,27.219,82.5506 +553246,28.623,81.1575 +553247,29.968,79.784 +553248,31.262,78.428 +553249,25.839,82.501 +553250,27.279,81.1253 +553251,28.659,79.769 +553252,29.986,78.432 +553253,24.461,82.4502 +553254,25.936,81.0927 +553255,27.349,79.755 +553256,28.71,78.437 +553257,23.084,82.3984 +553258,24.592,81.0598 +553259,26.039,79.742 +553260,27.432,78.443 +553261,21.708,82.3456 +553262,23.249,81.0265 +553263,24.728,79.728 +553264,26.153,78.45 +553265,20.333,82.2918 +553266,21.907,80.9929 +553267,23.417,79.716 +553268,24.872,78.458 +553269,18.96,82.2369 +553270,20.565,80.959 +553271,22.106,79.703 +553272,23.591,78.467 +553273,17.587,82.181 +553274,19.223,80.9247 +553275,20.794,79.691 +553276,22.309,78.477 +553277,16.216,82.1242 +553278,17.882,80.8901 +553279,19.482,79.679 +553280,21.026,78.488 +553281,14.846,82.0664 +553282,16.542,80.8552 +553283,18.17,79.667 +553284,19.741,78.5 +553285,13.477,82.0076 +553286,15.201,80.82 +553287,16.857,79.656 +553288,18.456,78.513 +553289,12.11,81.948 +553290,13.861,80.7845 +553291,15.544,79.645 +553292,17.169,78.527 +553293,10.744,81.8874 +553294,12.522,80.7487 +553295,14.231,79.634 +553296,15.881,78.542 +553297,9.379,81.8259 +553298,11.183,80.7127 +553299,12.917,79.624 +553300,14.591,78.557 +553301,8.0155,81.7636 +553302,9.8445,80.6763 +553303,11.603,79.614 +553304,13.301,78.574 +553305,6.6535,81.7004 +553306,8.5064,80.6397 +553307,10.288,79.604 +553308,12.009,78.591 +553309,5.2929,81.6364 +553310,7.1689,80.6028 +553311,8.973,79.594 +553312,10.716,78.609 +553313,3.9337,81.5717 +553314,5.8318,80.5656 +553315,7.6575,79.585 +553316,9.4213,78.628 +553317,2.5759,81.5061 +553318,4.4953,80.5282 +553319,6.3416,79.576 +553320,8.1256,78.647 +553321,1.2196,81.4398 +553322,3.1592,80.4906 +553323,5.0253,79.567 +553324,6.8285,78.668 +553325,359.86,81.3727 +553326,1.8236,80.4527 +553327,3.7085,79.559 +553328,5.5301,78.689 +553329,358.51,81.3049 +553330,0.48856,80.4146 +553331,2.3913,79.551 +553332,4.2303,78.71 +553333,357.16,81.2365 +553334,359.15,80.3762 +553335,1.0736,79.542 +553336,2.9292,78.732 +553337,355.81,81.1673 +553338,357.82,80.3377 +553339,359.76,79.535 +553340,1.6266,78.755 +553341,354.46,81.0976 +553342,356.49,80.2989 +553343,358.44,79.527 +553344,0.32267,78.779 +553345,353.11,81.0272 +553346,355.15,80.26 +553347,357.12,79.519 +553348,359.02,78.803 +553349,351.77,80.9563 +553350,353.82,80.2209 +553351,355.8,79.512 +553352,357.71,78.828 +553353,350.42,80.8847 +553354,352.49,80.1816 +553355,354.48,79.505 +553356,356.4,78.853 +553357,349.08,80.8127 +553358,351.16,80.1421 +553359,353.16,79.498 +553360,355.09,78.878 +553361,347.74,80.7401 +553362,349.83,80.1025 +553363,351.84,79.491 +553364,353.78,78.904 +553365,346.4,80.6671 +553366,348.5,80.0627 +553367,350.52,79.485 +553368,352.47,78.931 +553369,345.06,80.5936 +553370,347.17,80.0228 +553371,349.19,79.478 +553372,351.15,78.958 +553373,343.73,80.5196 +553374,345.84,79.983 +553375,347.87,79.472 +553376,349.84,78.985 +553377,342.39,80.4453 +553378,344.51,79.943 +553379,346.55,79.466 +553380,348.52,79.013 +553381,341.06,80.3706 +553382,343.18,79.902 +553383,345.23,79.46 +553384,347.2,79.041 +553385,339.73,80.2955 +553386,341.85,79.862 +553387,343.9,79.454 +553388,345.88,79.07 +553389,338.4,80.2201 +553390,340.53,79.821 +553391,342.58,79.448 +553392,344.56,79.098 +553393,337.07,80.1445 +553394,339.2,79.781 +553395,341.25,79.443 +553396,343.24,79.127 +553397,335.74,80.0685 +553398,337.87,79.74 +553399,339.93,79.437 +553400,341.91,79.156 +553401,334.42,79.992 +553402,336.55,79.699 +553403,338.6,79.431 +553404,340.59,79.186 +553405,333.1,79.916 +553406,335.22,79.658 +553407,337.28,79.426 +553408,339.26,79.215 +553409,331.78,79.839 +553410,333.9,79.618 +553411,335.95,79.42 +553412,337.93,79.245 +553413,330.46,79.763 +553414,332.58,79.577 +553415,334.62,79.415 +553416,336.6,79.275 +553417,329.14,79.686 +553418,331.25,79.536 +553419,333.29,79.41 +553420,335.27,79.305 +553421,327.82,79.609 +553422,329.93,79.495 +553423,331.97,79.404 +553424,333.94,79.334 +553425,326.51,79.532 +553426,328.61,79.454 +553427,330.64,79.399 +553428,332.6,79.364 +553429,325.19,79.455 +553430,327.29,79.413 +553431,329.31,79.394 +553432,331.26,79.394 +553433,323.88,79.378 +553434,325.97,79.372 +553435,327.98,79.388 +553436,329.93,79.424 +553437,322.57,79.301 +553438,324.65,79.331 +553439,326.65,79.383 +553440,328.59,79.454 +553441,321.26,79.224 +553442,323.33,79.29 +553443,325.32,79.378 +553444,327.25,79.484 +553445,319.96,79.147 +553446,322.01,79.249 +553447,323.99,79.372 +553448,325.9,79.514 +553449,318.65,79.071 +553450,320.69,79.209 +553451,322.65,79.367 +553452,324.56,79.543 +553453,317.35,78.994 +553454,319.37,79.168 +553455,321.32,79.362 +553456,323.21,79.573 +553457,316.05,78.918 +553458,318.05,79.127 +553459,319.99,79.356 +553460,321.87,79.602 +553461,314.75,78.842 +553462,316.73,79.086 +553463,318.66,79.351 +553464,320.52,79.631 +553465,313.45,78.766 +553466,315.42,79.046 +553467,317.32,79.345 +553468,319.17,79.66 +553469,312.15,78.69 +553470,314.1,79.005 +553471,315.99,79.339 +553472,317.82,79.689 +553473,310.85,78.615 +553474,312.79,78.965 +553475,314.66,79.333 +553476,316.47,79.717 +553477,309.56,78.54 +553478,311.47,78.925 +553479,313.32,79.327 +553480,315.11,79.745 +553481,308.27,78.465 +553482,310.16,78.885 +553483,311.99,79.321 +553484,313.76,79.772 +553485,306.97,78.39 +553486,308.84,78.845 +553487,310.65,79.315 +553488,312.4,79.799 +553489,305.68,78.316 +553490,307.53,78.805 +553491,309.31,79.309 +553492,311.04,79.826 +553493,304.39,78.243 +553494,306.22,78.765 +553495,307.98,79.303 +553496,309.68,79.853 +553497,303.11,78.17 +553498,304.9,78.726 +553499,306.64,79.296 +553500,308.32,79.879 +553501,301.82,78.097 +553502,303.59,78.686 +553503,305.3,79.289 +553504,306.96,79.904 +553505,300.54,78.025 +553506,302.28,78.647 +553507,303.96,79.283 +553508,305.6,79.929 +553509,299.25,77.954 +553510,300.97,78.608 +553511,302.63,79.276 +553512,304.23,79.953 +553513,297.97,77.883 +553514,299.66,78.569 +553515,301.29,79.268 +553516,302.87,79.977 +553517,296.69,77.812 +553518,298.35,78.531 +553519,299.95,79.261 +553520,301.5,80.0005 +553521,295.41,77.743 +553522,297.04,78.492 +553523,298.61,79.253 +553524,300.13,80.0232 +553525,294.13,77.673 +553526,295.73,78.454 +553527,297.27,79.245 +553528,298.76,80.0453 +553529,292.86,77.605 +553530,294.42,78.416 +553531,295.93,79.237 +553532,297.39,80.0668 +553533,291.58,77.537 +553534,293.11,78.378 +553535,294.59,79.229 +553536,296.02,80.0875 +553537,290.31,77.47 +553538,291.8,78.341 +553539,293.25,79.221 +553540,294.65,80.1076 +553541,289.03,77.404 +553542,290.49,78.304 +553543,291.91,79.212 +553544,293.27,80.127 +553545,287.76,77.338 +553546,289.19,78.267 +553547,290.56,79.203 +553548,291.9,80.1457 +553549,286.49,77.274 +553550,287.88,78.23 +553551,289.22,79.194 +553552,290.52,80.1636 +553553,285.22,77.21 +553554,286.57,78.194 +553555,287.88,79.185 +553556,289.14,80.1807 +553557,283.95,77.147 +553558,285.27,78.157 +553559,286.54,79.175 +553560,287.76,80.197 +553561,282.68,77.084 +553562,283.96,78.121 +553563,285.19,79.165 +553564,286.39,80.2125 +553565,281.42,77.023 +553566,282.66,78.086 +553567,283.85,79.155 +553568,285.01,80.2272 +553569,280.15,76.963 +553570,281.35,78.051 +553571,282.51,79.144 +553572,283.62,80.2411 +553573,278.89,76.903 +553574,280.05,78.016 +553575,281.16,79.133 +553576,282.24,80.254 +553577,277.62,76.844 +553578,278.74,77.981 +553579,279.82,79.122 +553580,280.86,80.2661 +553581,276.36,76.787 +553582,277.44,77.947 +553583,278.48,79.111 +553584,279.47,80.2773 +553585,275.1,76.73 +553586,276.13,77.913 +553587,277.13,79.099 +553588,278.09,80.2875 +553589,273.84,76.674 +553590,274.83,77.879 +553591,275.79,79.087 +553592,276.7,80.2968 +553593,272.57,76.62 +553594,273.53,77.845 +553595,274.44,79.075 +553596,275.32,80.3052 +553597,271.31,76.566 +553598,272.22,77.812 +553599,273.1,79.062 +553600,273.93,80.3125 +553601,270.05,76.513 +553602,270.92,77.78 +553603,271.75,79.049 +553604,272.54,80.3189 +553605,268.8,76.462 +553606,269.62,77.747 +553607,270.4,79.036 +553608,271.16,80.3243 +553609,267.54,76.411 +553610,268.32,77.715 +553611,269.06,79.022 +553612,269.77,80.3287 +553613,266.28,76.362 +553614,267.01,77.684 +553615,267.71,79.008 +553616,268.38,80.332 +553617,265.02,76.313 +553618,265.71,77.653 +553619,266.37,78.994 +553620,266.99,80.3343 +553621,263.77,76.266 +553622,264.41,77.622 +553623,265.02,78.979 +553624,265.6,80.3355 +553625,262.51,76.22 +553626,263.11,77.591 +553627,263.67,78.964 +553628,264.2,80.3357 +553629,261.26,76.175 +553630,261.81,77.561 +553631,262.33,78.948 +553632,262.81,80.3348 +553633,260,76.131 +553634,260.51,77.531 +553635,260.98,78.932 +553636,261.42,80.3328 +553637,258.75,76.089 +553638,259.21,77.502 +553639,259.63,78.916 +553640,260.03,80.3297 +553641,257.49,76.047 +553642,257.91,77.473 +553643,258.29,78.9 +553644,258.63,80.3255 +553645,256.24,76.007 +553646,256.6,77.445 +553647,256.94,78.883 +553648,257.24,80.3201 +553649,254.98,75.968 +553650,255.3,77.416 +553651,255.59,78.865 +553652,255.85,80.3136 +553653,253.73,75.93 +553654,254,77.389 +553655,254.24,78.848 +553656,254.45,80.306 +553657,252.48,75.894 +553658,252.7,77.361 +553659,252.9,78.83 +553660,253.06,80.2973 +553661,251.22,75.858 +553662,251.4,77.334 +553663,251.55,78.811 +553664,251.66,80.2874 +553665,249.97,75.824 +553666,250.1,77.308 +553667,250.2,78.792 +553668,250.27,80.2763 +553669,248.72,75.791 +553670,248.8,77.282 +553671,248.86,78.773 +553672,248.87,80.2641 +553673,247.47,75.759 +553674,247.5,77.256 +553675,247.51,78.754 +553676,247.48,80.2507 +553677,246.21,75.729 +553678,246.2,77.231 +553679,246.16,78.734 +553680,246.08,80.2361 +553681,244.96,75.699 +553682,244.9,77.206 +553683,244.81,78.713 +553684,244.69,80.2203 +553685,243.71,75.671 +553686,243.6,77.181 +553687,243.47,78.692 +553688,243.29,80.2034 +553689,242.46,75.644 +553690,242.3,77.157 +553691,242.12,78.671 +553692,241.9,80.1852 +553693,241.2,75.619 +553694,241,77.133 +553695,240.77,78.649 +553696,240.5,80.1659 +553697,239.95,75.595 +553698,239.7,77.11 +553699,239.42,78.627 +553700,239.11,80.1454 +553701,238.7,75.572 +553702,238.4,77.087 +553703,238.08,78.605 +553704,237.72,80.1237 +553705,237.44,75.55 +553706,237.1,77.065 +553707,236.73,78.582 +553708,236.32,80.1008 +553709,236.19,75.529 +553710,235.8,77.043 +553711,235.38,78.559 +553712,234.93,80.0767 +553713,234.93,75.51 +553714,234.5,77.021 +553715,234.04,78.535 +553716,233.53,80.0515 +553717,233.68,75.492 +553718,233.2,77 +553719,232.69,78.512 +553720,232.14,80.025 +553721,232.43,75.475 +553722,231.9,76.979 +553723,231.34,78.487 +553724,230.75,79.997 +553725,231.17,75.459 +553726,230.6,76.959 +553727,230,78.462 +553728,229.35,79.969 +553729,229.92,75.445 +553730,229.3,76.939 +553731,228.65,78.437 +553732,227.96,79.938 +553733,228.66,75.432 +553734,228,76.919 +553735,227.3,78.412 +553736,226.57,79.907 +553737,227.4,75.42 +553738,226.7,76.9 +553739,225.96,78.386 +553740,225.18,79.875 +553741,226.15,75.409 +553742,225.4,76.882 +553743,224.61,78.359 +553744,223.78,79.841 +553745,224.89,75.399 +553746,224.1,76.863 +553747,223.27,78.333 +553748,222.39,79.807 +553749,223.63,75.391 +553750,222.79,76.845 +553751,221.92,78.305 +553752,221,79.771 +553753,222.37,75.384 +553754,221.49,76.828 +553755,220.58,78.278 +553756,219.61,79.734 +553757,221.11,75.378 +553758,220.19,76.811 +553759,219.23,78.25 +553760,218.23,79.696 +553761,219.85,75.373 +553762,218.89,76.794 +553763,217.89,78.222 +553764,216.84,79.656 +553765,218.59,75.369 +553766,217.59,76.778 +553767,216.54,78.193 +553768,215.45,79.616 +553769,217.33,75.367 +553770,216.28,76.762 +553771,215.2,78.164 +553772,214.06,79.574 +553773,216.07,75.365 +553774,214.98,76.746 +553775,213.85,78.135 +553776,212.68,79.532 +553777,214.8,75.365 +553778,213.68,76.731 +553779,212.51,78.105 +553780,211.29,79.488 +553781,213.54,75.366 +553782,212.38,76.716 +553783,211.17,78.075 +553784,209.91,79.443 +553785,212.27,75.368 +553786,211.07,76.701 +553787,209.82,78.045 +553788,208.52,79.397 +553789,211.01,75.371 +553790,209.77,76.687 +553791,208.48,78.014 +553792,207.14,79.35 +553793,209.74,75.375 +553794,208.46,76.674 +553795,207.14,77.983 +553796,205.76,79.302 +553797,208.47,75.38 +553798,207.16,76.66 +553799,205.8,77.951 +553800,204.38,79.253 +553801,207.2,75.386 +553802,205.86,76.647 +553803,204.46,77.919 +553804,203,79.203 +553805,205.93,75.393 +553806,204.55,76.634 +553807,203.12,77.887 +553808,201.62,79.152 +553809,204.66,75.401 +553810,203.24,76.622 +553811,201.77,77.855 +553812,200.25,79.1 +553813,203.39,75.41 +553814,201.94,76.61 +553815,200.43,77.822 +553816,198.87,79.047 +553817,202.12,75.42 +553818,200.63,76.598 +553819,199.09,77.789 +553820,197.49,78.993 +553821,200.84,75.431 +553822,199.33,76.587 +553823,197.75,77.756 +553824,196.12,78.938 +553825,199.57,75.443 +553826,198.02,76.576 +553827,196.42,77.722 +553828,194.75,78.882 +553829,198.29,75.456 +553830,196.71,76.565 +553831,195.08,77.688 +553832,193.38,78.825 +553833,197.02,75.47 +553834,195.41,76.555 +553835,193.74,77.654 +553836,192.01,78.767 +553837,195.74,75.485 +553838,194.1,76.544 +553839,192.4,77.619 +553840,190.64,78.709 +553841,194.46,75.5 +553842,192.79,76.535 +553843,191.06,77.584 +553844,189.27,78.649 +553845,193.17,75.516 +553846,191.48,76.525 +553847,189.73,77.549 +553848,187.9,78.589 +553849,191.89,75.533 +553850,190.17,76.516 +553851,188.39,77.514 +553852,186.54,78.528 +553853,190.61,75.551 +553854,188.86,76.507 +553855,187.05,77.478 +553856,185.17,78.466 +553857,189.32,75.57 +553858,187.55,76.498 +553859,185.72,77.442 +553860,183.81,78.403 +553861,188.04,75.589 +553862,186.24,76.489 +553863,184.38,77.406 +553864,182.45,78.34 +553865,186.75,75.609 +553866,184.93,76.481 +553867,183.05,77.369 +553868,181.09,78.276 +553869,185.46,75.63 +553870,183.62,76.473 +553871,181.71,77.333 +553872,179.73,78.211 +553873,184.17,75.652 +553874,182.31,76.465 +553875,180.38,77.296 +553876,178.38,78.145 +553877,182.88,75.674 +553878,180.99,76.458 +553879,179.05,77.259 +553880,177.02,78.079 +553881,181.58,75.696 +553882,179.68,76.45 +553883,177.72,77.222 +553884,175.67,78.012 +553885,180.29,75.72 +553886,178.37,76.443 +553887,176.38,77.184 +553888,174.32,77.945 +553889,178.99,75.743 +553890,177.06,76.436 +553891,175.05,77.146 +553892,172.97,77.877 +553893,177.69,75.768 +553894,175.74,76.429 +553895,173.72,77.109 +553896,171.62,77.808 +553897,176.39,75.793 +553898,174.43,76.423 +553899,172.39,77.071 +553900,170.27,77.739 +553901,175.09,75.818 +553902,173.11,76.416 +553903,171.06,77.032 +553904,168.93,77.669 +553905,173.79,75.844 +553906,171.8,76.41 +553907,169.73,76.994 +553908,167.58,77.599 +553909,172.49,75.87 +553910,170.48,76.404 +553911,168.4,76.956 +553912,166.24,77.528 +553913,171.18,75.897 +553914,169.16,76.398 +553915,167.07,76.917 +553916,164.9,77.457 +553917,169.87,75.924 +553918,167.85,76.392 +553919,165.75,76.878 +553920,163.56,77.385 +553921,168.56,75.952 +553922,166.53,76.386 +553923,164.42,76.839 +553924,162.22,77.313 +553925,167.25,75.979 +553926,165.21,76.381 +553927,163.09,76.8 +553928,160.89,77.241 +553929,165.94,76.008 +553930,163.89,76.375 +553931,161.77,76.761 +553932,159.56,77.168 +553933,164.63,76.036 +553934,162.57,76.37 +553935,160.44,76.722 +553936,158.22,77.095 +553937,163.32,76.065 +553938,161.25,76.364 +553939,159.12,76.683 +553940,156.89,77.022 +553941,162,76.093 +553942,159.93,76.359 +553943,157.79,76.643 +553944,155.56,76.948 +553945,160.68,76.123 +553946,158.61,76.354 +553947,156.47,76.604 +553948,154.24,76.875 +553949,159.36,76.152 +553950,157.29,76.349 +553951,155.15,76.565 +553952,152.91,76.801 +553953,158.04,76.181 +553954,155.97,76.344 +553955,153.82,76.525 +553956,151.59,76.727 +553957,156.72,76.211 +553958,154.65,76.339 +553959,152.5,76.485 +553960,150.27,76.652 +553961,155.39,76.24 +553962,153.33,76.334 +553963,151.18,76.446 +553964,148.95,76.578 +553965,154.07,76.27 +553966,152,76.329 +553967,149.86,76.406 +553968,147.63,76.503 +553969,152.74,76.299 +553970,150.68,76.324 +553971,148.54,76.367 +553972,146.31,76.429 +553973,151.41,76.329 +553974,149.35,76.32 +553975,147.22,76.327 +553976,145,76.354 +553977,150.08,76.359 +553978,148.03,76.315 +553979,145.9,76.287 +553980,143.68,76.279 +553981,148.75,76.388 +553982,146.7,76.31 +553983,144.58,76.248 +553984,142.37,76.205 +553985,147.42,76.418 +553986,145.38,76.305 +553987,143.26,76.208 +553988,141.06,76.13 +553989,146.08,76.447 +553990,144.05,76.3 +553991,141.95,76.169 +553992,139.75,76.056 +553993,144.75,76.477 +553994,142.72,76.295 +553995,140.63,76.129 +553996,138.45,75.981 +553997,143.41,76.506 +553998,141.4,76.29 +553999,139.31,76.09 +554000,137.14,75.907 +554001,142.07,76.535 +554002,140.07,76.285 +554003,138,76.05 +554004,135.84,75.833 +554005,140.73,76.563 +554006,138.74,76.28 +554007,136.68,76.011 +554008,134.54,75.759 +554009,139.38,76.592 +554010,137.41,76.275 +554011,135.37,75.972 +554012,133.24,75.685 +554013,138.04,76.62 +554014,136.08,76.269 +554015,134.05,75.933 +554016,131.94,75.612 +554017,136.69,76.648 +554018,134.75,76.264 +554019,132.74,75.893 +554020,130.64,75.539 +554021,135.35,76.676 +554022,133.42,76.259 +554023,131.43,75.855 +554024,129.35,75.466 +554025,134,76.703 +554026,132.09,76.253 +554027,130.11,75.816 +554028,128.05,75.393 +554029,132.65,76.73 +554030,130.76,76.247 +554031,128.8,75.777 +554032,126.76,75.321 +554033,131.3,76.756 +554034,129.43,76.242 +554035,127.49,75.738 +554036,125.47,75.249 +554037,129.94,76.782 +554038,128.1,76.236 +554039,126.18,75.7 +554040,124.18,75.178 +554041,128.59,76.808 +554042,126.76,76.229 +554043,124.87,75.662 +554044,122.9,75.107 +554045,127.23,76.833 +554046,125.43,76.223 +554047,123.56,75.624 +554048,121.61,75.037 +554049,125.88,76.858 +554050,124.1,76.217 +554051,122.25,75.586 +554052,120.33,74.967 +554053,124.52,76.882 +554054,122.76,76.21 +554055,120.94,75.548 +554056,119.04,74.897 +554057,123.16,76.905 +554058,121.43,76.203 +554059,119.63,75.51 +554060,117.76,74.828 +554061,121.8,76.928 +554062,120.09,76.197 +554063,118.33,75.473 +554064,116.48,74.76 +554065,120.43,76.951 +554066,118.76,76.189 +554067,117.02,75.436 +554068,115.21,74.692 +554069,119.07,76.973 +554070,117.42,76.182 +554071,115.71,75.399 +554072,113.93,74.625 +554073,117.7,76.994 +554074,116.09,76.175 +554075,114.4,75.362 +554076,112.65,74.559 +554077,116.34,77.014 +554078,114.75,76.167 +554079,113.1,75.326 +554080,111.38,74.493 +554081,114.97,77.034 +554082,113.41,76.159 +554083,111.79,75.289 +554084,110.11,74.428 +554085,113.6,77.053 +554086,112.07,76.151 +554087,110.49,75.253 +554088,108.84,74.363 +554089,112.23,77.072 +554090,110.74,76.142 +554091,109.18,75.217 +554092,107.57,74.3 +554093,110.86,77.089 +554094,109.4,76.133 +554095,107.88,75.182 +554096,106.3,74.237 +554097,109.49,77.106 +554098,108.06,76.125 +554099,106.58,75.147 +554100,105.03,74.175 +554101,108.11,77.122 +554102,106.72,76.115 +554103,105.27,75.112 +554104,103.76,74.114 +554105,106.74,77.138 +554106,105.38,76.106 +554107,103.97,75.077 +554108,102.5,74.053 +554109,105.36,77.152 +554110,104.04,76.096 +554111,102.67,75.043 +554112,101.23,73.994 +554113,103.99,77.166 +554114,102.7,76.086 +554115,101.36,75.008 +554116,99.969,73.935 +554117,102.61,77.178 +554118,101.36,76.076 +554119,100.06,74.975 +554120,98.707,73.877 +554121,101.23,77.19 +554122,100.02,76.065 +554123,98.761,74.941 +554124,97.446,73.82 +554125,99.849,77.201 +554126,98.68,76.054 +554127,97.46,74.908 +554128,96.186,73.764 +554129,98.468,77.211 +554130,97.339,76.043 +554131,96.159,74.875 +554132,94.927,73.709 +554133,97.086,77.221 +554134,95.997,76.032 +554135,94.859,74.842 +554136,93.669,73.655 +554137,95.704,77.229 +554138,94.655,76.02 +554139,93.559,74.81 +554140,92.411,73.602 +554141,94.32,77.236 +554142,93.313,76.008 +554143,92.259,74.778 +554144,91.155,73.55 +554145,92.936,77.242 +554146,91.971,75.995 +554147,90.959,74.747 +554148,89.9,73.499 +554149,91.551,77.247 +554150,90.628,75.982 +554151,89.66,74.715 +554152,88.645,73.449 +554153,90.165,77.252 +554154,89.285,75.969 +554155,88.361,74.684 +554156,87.391,73.4 +554157,88.778,77.255 +554158,87.942,75.956 +554159,87.063,74.654 +554160,86.138,73.352 +554161,87.391,77.257 +554162,86.599,75.942 +554163,85.764,74.624 +554164,84.885,73.305 +554165,86.002,77.258 +554166,85.255,75.928 +554167,84.466,74.594 +554168,83.634,73.259 +554169,84.614,77.258 +554170,83.911,75.913 +554171,83.168,74.564 +554172,82.382,73.214 +554173,83.224,77.258 +554174,82.567,75.898 +554175,81.87,74.535 +554176,81.132,73.171 +554177,81.834,77.256 +554178,81.223,75.883 +554179,80.573,74.507 +554180,79.882,73.129 +554181,80.444,77.252 +554182,79.879,75.867 +554183,79.275,74.478 +554184,78.632,73.087 +554185,79.053,77.248 +554186,78.534,75.851 +554187,77.978,74.45 +554188,77.383,73.047 +554189,77.661,77.243 +554190,77.19,75.835 +554191,76.681,74.423 +554192,76.134,73.008 +554193,76.269,77.236 +554194,75.845,75.818 +554195,75.385,74.396 +554196,74.886,72.97 +554197,74.877,77.229 +554198,74.5,75.801 +554199,74.088,74.369 +554200,73.638,72.934 +554201,73.484,77.22 +554202,73.155,75.784 +554203,72.791,74.343 +554204,72.391,72.898 +554205,72.091,77.21 +554206,71.81,75.766 +554207,71.495,74.317 +554208,71.144,72.864 +554209,70.698,77.199 +554210,70.465,75.748 +554211,70.199,74.291 +554212,69.897,72.831 +554213,69.304,77.187 +554214,69.12,75.729 +554215,68.902,74.266 +554216,68.65,72.799 +554217,67.91,77.174 +554218,67.775,75.71 +554219,67.606,74.241 +554220,67.403,72.769 +554221,66.516,77.16 +554222,66.43,75.691 +554223,66.31,74.217 +554224,66.157,72.739 +554225,65.122,77.144 +554226,65.084,75.671 +554227,65.014,74.193 +554228,64.911,72.711 +554229,63.727,77.127 +554230,63.739,75.651 +554231,63.718,74.169 +554232,63.664,72.684 +554233,62.333,77.109 +554234,62.394,75.63 +554235,62.422,74.146 +554236,62.418,72.659 +554237,60.938,77.09 +554238,61.048,75.609 +554239,61.126,74.123 +554240,61.172,72.634 +554241,59.544,77.07 +554242,59.703,75.588 +554243,59.83,74.101 +554244,59.926,72.611 +554245,58.149,77.048 +554246,58.358,75.566 +554247,58.535,74.079 +554248,58.679,72.589 +554249,56.754,77.026 +554250,57.013,75.544 +554251,57.239,74.057 +554252,57.433,72.568 +554253,55.36,77.002 +554254,55.668,75.521 +554255,55.943,74.036 +554256,56.186,72.548 +554257,53.966,76.977 +554258,54.322,75.498 +554259,54.647,74.015 +554260,54.939,72.53 +554261,52.571,76.951 +554262,52.977,75.475 +554263,53.351,73.995 +554264,53.692,72.513 +554265,51.177,76.924 +554266,51.633,75.451 +554267,52.054,73.975 +554268,52.444,72.497 +554269,49.784,76.895 +554270,50.288,75.427 +554271,50.758,73.956 +554272,51.197,72.482 +554273,48.39,76.865 +554274,48.943,75.403 +554275,49.462,73.937 +554276,49.949,72.469 +554277,46.997,76.835 +554278,47.599,75.378 +554279,48.166,73.918 +554280,48.7,72.456 +554281,45.604,76.803 +554282,46.254,75.352 +554283,46.869,73.9 +554284,47.451,72.445 +554285,44.212,76.77 +554286,44.91,75.327 +554287,45.572,73.882 +554288,46.202,72.435 +554289,42.82,76.735 +554290,43.566,75.301 +554291,44.276,73.864 +554292,44.952,72.427 +554293,41.429,76.7 +554294,42.222,75.274 +554295,42.979,73.847 +554296,43.701,72.419 +554297,40.038,76.664 +554298,40.878,75.248 +554299,41.682,73.83 +554300,42.45,72.413 +554301,38.647,76.626 +554302,39.535,75.22 +554303,40.384,73.814 +554304,41.199,72.407 +554305,37.257,76.587 +554306,38.191,75.193 +554307,39.087,73.798 +554308,39.947,72.403 +554309,35.868,76.547 +554310,36.848,75.165 +554311,37.789,73.782 +554312,38.694,72.4 +554313,34.479,76.506 +554314,35.505,75.137 +554315,36.491,73.767 +554316,37.44,72.399 +554317,33.091,76.464 +554318,34.163,75.108 +554319,35.193,73.752 +554320,36.186,72.398 +554321,31.704,76.421 +554322,32.821,75.079 +554323,33.895,73.738 +554324,34.93,72.398 +554325,30.318,76.377 +554326,31.479,75.05 +554327,32.596,73.724 +554328,33.674,72.4 +554329,28.932,76.332 +554330,30.137,75.02 +554331,31.297,73.71 +554332,32.418,72.402 +554333,27.547,76.286 +554334,28.795,74.99 +554335,29.998,73.696 +554336,31.16,72.406 +554337,26.163,76.238 +554338,27.454,74.959 +554339,28.699,73.683 +554340,29.901,72.411 +554341,24.78,76.19 +554342,26.113,74.929 +554343,27.399,73.671 +554344,28.642,72.416 +554345,23.398,76.141 +554346,24.773,74.898 +554347,26.099,73.658 +554348,27.381,72.423 +554349,22.016,76.09 +554350,23.433,74.866 +554351,24.799,73.646 +554352,26.12,72.431 +554353,20.636,76.039 +554354,22.093,74.835 +554355,23.498,73.635 +554356,24.857,72.44 +554357,19.257,75.987 +554358,20.754,74.803 +554359,22.197,73.623 +554360,23.594,72.449 +554361,17.879,75.934 +554362,19.415,74.77 +554363,20.896,73.612 +554364,22.329,72.46 +554365,16.502,75.879 +554366,18.076,74.738 +554367,19.594,73.601 +554368,21.063,72.472 +554369,15.126,75.824 +554370,16.738,74.705 +554371,18.292,73.591 +554372,19.796,72.484 +554373,13.751,75.768 +554374,15.4,74.671 +554375,16.99,73.581 +554376,18.528,72.497 +554377,12.377,75.712 +554378,14.062,74.638 +554379,15.687,73.571 +554380,17.259,72.512 +554381,11.005,75.654 +554382,12.725,74.604 +554383,14.384,73.561 +554384,15.989,72.527 +554385,9.6339,75.596 +554386,11.389,74.57 +554387,13.08,73.552 +554388,14.717,72.543 +554389,8.2641,75.536 +554390,10.052,74.535 +554391,11.776,73.543 +554392,13.444,72.56 +554393,6.8955,75.476 +554394,8.7166,74.501 +554395,10.472,73.535 +554396,12.17,72.577 +554397,5.5283,75.415 +554398,7.3814,74.466 +554399,9.1669,73.526 +554400,10.894,72.595 +554401,4.1624,75.354 +554402,6.0465,74.431 +554403,7.8617,73.518 +554404,9.6174,72.614 +554405,2.798,75.291 +554406,4.7122,74.395 +554407,6.556,73.51 +554408,8.3392,72.634 +554409,1.4349,75.228 +554410,3.3783,74.36 +554411,5.2499,73.502 +554412,7.0596,72.655 +554413,0.073251,75.164 +554414,2.045,74.324 +554415,3.9433,73.495 +554416,5.7787,72.676 +554417,358.71,75.1 +554418,0.71209,74.288 +554419,2.6363,73.487 +554420,4.4963,72.698 +554421,357.35,75.035 +554422,359.38,74.252 +554423,1.3288,73.48 +554424,3.2125,72.72 +554425,356,74.969 +554426,358.05,74.215 +554427,0.020886,73.474 +554428,1.9273,72.743 +554429,354.64,74.902 +554430,356.72,74.178 +554431,358.71,73.467 +554432,0.64063,72.767 +554433,353.29,74.835 +554434,355.39,74.142 +554435,357.4,73.46 +554436,359.35,72.791 +554437,351.93,74.768 +554438,354.06,74.105 +554439,356.09,73.454 +554440,358.06,72.816 +554441,350.58,74.7 +554442,352.73,74.067 +554443,354.78,73.448 +554444,356.77,72.841 +554445,349.23,74.631 +554446,351.4,74.03 +554447,353.47,73.442 +554448,355.48,72.867 +554449,347.89,74.562 +554450,350.07,73.992 +554451,352.16,73.436 +554452,354.18,72.893 +554453,346.54,74.493 +554454,348.74,73.955 +554455,350.85,73.431 +554456,352.89,72.92 +554457,345.2,74.423 +554458,347.41,73.917 +554459,349.54,73.425 +554460,351.59,72.947 +554461,343.85,74.352 +554462,346.08,73.879 +554463,348.23,73.42 +554464,350.29,72.974 +554465,342.51,74.281 +554466,344.76,73.841 +554467,346.91,73.415 +554468,348.99,73.002 +554469,341.17,74.21 +554470,343.43,73.803 +554471,345.6,73.41 +554472,347.69,73.03 +554473,339.84,74.139 +554474,342.11,73.764 +554475,344.29,73.405 +554476,346.39,73.058 +554477,338.5,74.067 +554478,340.78,73.726 +554479,342.97,73.4 +554480,345.08,73.087 +554481,337.17,73.995 +554482,339.46,73.687 +554483,341.66,73.395 +554484,343.78,73.116 +554485,335.83,73.923 +554486,338.13,73.649 +554487,340.34,73.39 +554488,342.47,73.145 +554489,334.5,73.85 +554490,336.81,73.61 +554491,339.03,73.385 +554492,341.16,73.174 +554493,333.17,73.778 +554494,335.49,73.572 +554495,337.71,73.381 +554496,339.85,73.203 +554497,331.85,73.705 +554498,334.17,73.533 +554499,336.39,73.376 +554500,338.53,73.233 +554501,330.52,73.632 +554502,332.85,73.494 +554503,335.07,73.372 +554504,337.22,73.262 +554505,329.2,73.559 +554506,331.53,73.455 +554507,333.76,73.367 +554508,335.9,73.292 +554509,327.88,73.485 +554510,330.21,73.416 +554511,332.44,73.363 +554512,334.58,73.322 +554513,326.56,73.412 +554514,328.89,73.378 +554515,331.12,73.358 +554516,333.26,73.352 +554517,325.24,73.339 +554518,327.57,73.339 +554519,329.8,73.354 +554520,331.94,73.381 +554521,323.92,73.265 +554522,326.25,73.3 +554523,328.48,73.349 +554524,330.62,73.411 +554525,322.61,73.192 +554526,324.93,73.261 +554527,327.16,73.345 +554528,329.29,73.441 +554529,321.29,73.119 +554530,323.61,73.222 +554531,325.83,73.34 +554532,327.97,73.47 +554533,319.98,73.046 +554534,322.3,73.184 +554535,324.51,73.336 +554536,326.64,73.5 +554537,318.67,72.972 +554538,320.98,73.145 +554539,323.19,73.331 +554540,325.31,73.529 +554541,317.37,72.899 +554542,319.67,73.106 +554543,321.87,73.326 +554544,323.98,73.558 +554545,316.06,72.827 +554546,318.35,73.067 +554547,320.54,73.322 +554548,322.65,73.587 +554549,314.76,72.754 +554550,317.04,73.029 +554551,319.22,73.317 +554552,321.31,73.616 +554553,313.45,72.682 +554554,315.72,72.99 +554555,317.89,73.312 +554556,319.98,73.645 +554557,312.15,72.61 +554558,314.41,72.952 +554559,316.57,73.307 +554560,318.64,73.673 +554561,310.85,72.538 +554562,313.1,72.914 +554563,315.24,73.302 +554564,317.3,73.701 +554565,309.56,72.466 +554566,311.79,72.876 +554567,313.92,73.297 +554568,315.96,73.728 +554569,308.26,72.395 +554570,310.48,72.837 +554571,312.59,73.292 +554572,314.62,73.755 +554573,306.97,72.324 +554574,309.16,72.8 +554575,311.26,73.286 +554576,313.27,73.782 +554577,305.68,72.254 +554578,307.85,72.762 +554579,309.93,73.281 +554580,311.93,73.809 +554581,304.39,72.183 +554582,306.55,72.724 +554583,308.61,73.275 +554584,310.58,73.835 +554585,303.1,72.114 +554586,305.24,72.687 +554587,307.28,73.269 +554588,309.23,73.86 +554589,301.81,72.045 +554590,303.93,72.649 +554591,305.95,73.263 +554592,307.88,73.885 +554593,300.53,71.976 +554594,302.62,72.612 +554595,304.62,73.257 +554596,306.53,73.91 +554597,299.24,71.908 +554598,301.31,72.575 +554599,303.29,73.251 +554600,305.18,73.934 +554601,297.96,71.84 +554602,300.01,72.538 +554603,301.96,73.245 +554604,303.82,73.957 +554605,296.68,71.773 +554606,298.7,72.501 +554607,300.63,73.238 +554608,302.47,73.98 +554609,295.4,71.706 +554610,297.39,72.465 +554611,299.29,73.231 +554612,301.11,74.002 +554613,294.12,71.641 +554614,296.09,72.429 +554615,297.96,73.224 +554616,299.75,74.024 +554617,292.85,71.575 +554618,294.78,72.393 +554619,296.63,73.217 +554620,298.39,74.045 +554621,291.57,71.511 +554622,293.48,72.357 +554623,295.3,73.209 +554624,297.03,74.065 +554625,290.3,71.447 +554626,292.17,72.321 +554627,293.96,73.201 +554628,295.67,74.085 +554629,289.03,71.384 +554630,290.87,72.286 +554631,292.63,73.193 +554632,294.31,74.104 +554633,287.76,71.321 +554634,289.57,72.251 +554635,291.29,73.185 +554636,292.94,74.122 +554637,286.49,71.259 +554638,288.27,72.216 +554639,289.96,73.177 +554640,291.57,74.139 +554641,285.22,71.199 +554642,286.96,72.181 +554643,288.62,73.168 +554644,290.21,74.156 +554645,283.96,71.138 +554646,285.66,72.147 +554647,287.29,73.159 +554648,288.84,74.172 +554649,282.69,71.079 +554650,284.36,72.113 +554651,285.95,73.15 +554652,287.47,74.187 +554653,281.43,71.021 +554654,283.06,72.079 +554655,284.61,73.14 +554656,286.1,74.201 +554657,280.17,70.963 +554658,281.76,72.046 +554659,283.28,73.13 +554660,284.72,74.215 +554661,278.91,70.906 +554662,280.46,72.013 +554663,281.94,73.12 +554664,283.35,74.227 +554665,277.65,70.851 +554666,279.16,71.98 +554667,280.6,73.11 +554668,281.98,74.239 +554669,276.39,70.796 +554670,277.86,71.947 +554671,279.26,73.099 +554672,280.6,74.249 +554673,275.13,70.742 +554674,276.56,71.915 +554675,277.93,73.088 +554676,279.22,74.259 +554677,273.88,70.689 +554678,275.27,71.883 +554679,276.59,73.077 +554680,277.84,74.268 +554681,272.62,70.637 +554682,273.97,71.851 +554683,275.25,73.065 +554684,276.47,74.276 +554685,271.37,70.586 +554686,272.67,71.82 +554687,273.91,73.053 +554688,275.09,74.283 +554689,270.11,70.536 +554690,271.37,71.789 +554691,272.57,73.041 +554692,273.7,74.289 +554693,268.86,70.487 +554694,270.08,71.759 +554695,271.23,73.028 +554696,272.32,74.294 +554697,267.61,70.439 +554698,268.78,71.728 +554699,269.89,73.015 +554700,270.94,74.297 +554701,266.36,70.392 +554702,267.48,71.698 +554703,268.55,73.002 +554704,269.56,74.3 +554705,265.11,70.346 +554706,266.19,71.669 +554707,267.21,72.988 +554708,268.17,74.302 +554709,263.86,70.301 +554710,264.89,71.64 +554711,265.87,72.974 +554712,266.79,74.303 +554713,262.62,70.258 +554714,263.6,71.611 +554715,264.52,72.96 +554716,265.4,74.303 +554717,261.37,70.215 +554718,262.3,71.582 +554719,263.18,72.945 +554720,264.01,74.301 +554721,260.12,70.174 +554722,261.01,71.554 +554723,261.84,72.93 +554724,262.63,74.299 +554725,258.88,70.133 +554726,259.71,71.526 +554727,260.5,72.914 +554728,261.24,74.295 +554729,257.63,70.094 +554730,258.42,71.499 +554731,259.16,72.898 +554732,259.85,74.291 +554733,256.39,70.056 +554734,257.12,71.472 +554735,257.81,72.882 +554736,258.46,74.285 +554737,255.14,70.019 +554738,255.83,71.445 +554739,256.47,72.865 +554740,257.07,74.278 +554741,253.9,69.984 +554742,254.54,71.419 +554743,255.13,72.848 +554744,255.68,74.27 +554745,252.66,69.949 +554746,253.24,71.393 +554747,253.79,72.831 +554748,254.29,74.261 +554749,251.41,69.916 +554750,251.95,71.368 +554751,252.44,72.813 +554752,252.9,74.251 +554753,250.17,69.884 +554754,250.66,71.343 +554755,251.1,72.795 +554756,251.5,74.239 +554757,248.93,69.853 +554758,249.36,71.318 +554759,249.76,72.777 +554760,250.11,74.227 +554761,247.69,69.823 +554762,248.07,71.294 +554763,248.41,72.758 +554764,248.72,74.213 +554765,246.45,69.795 +554766,246.78,71.27 +554767,247.07,72.738 +554768,247.33,74.198 +554769,245.2,69.768 +554770,245.48,71.247 +554771,245.73,72.719 +554772,245.93,74.182 +554773,243.96,69.741 +554774,244.19,71.224 +554775,244.38,72.698 +554776,244.54,74.165 +554777,242.72,69.717 +554778,242.9,71.201 +554779,243.04,72.678 +554780,243.15,74.146 +554781,241.48,69.693 +554782,241.61,71.179 +554783,241.7,72.657 +554784,241.75,74.127 +554785,240.24,69.671 +554786,240.31,71.157 +554787,240.35,72.636 +554788,240.36,74.106 +554789,239,69.649 +554790,239.02,71.135 +554791,239.01,72.614 +554792,238.96,74.084 +554793,237.76,69.629 +554794,237.73,71.114 +554795,237.66,72.592 +554796,237.57,74.061 +554797,236.52,69.611 +554798,236.44,71.094 +554799,236.32,72.569 +554800,236.17,74.037 +554801,235.28,69.593 +554802,235.14,71.073 +554803,234.98,72.546 +554804,234.78,74.011 +554805,234.04,69.577 +554806,233.85,71.053 +554807,233.63,72.523 +554808,233.38,73.985 +554809,232.8,69.562 +554810,232.56,71.034 +554811,232.29,72.499 +554812,231.99,73.957 +554813,231.56,69.548 +554814,231.27,71.015 +554815,230.95,72.475 +554816,230.6,73.928 +554817,230.31,69.535 +554818,229.97,70.996 +554819,229.6,72.451 +554820,229.2,73.898 +554821,229.07,69.523 +554822,228.68,70.978 +554823,228.26,72.426 +554824,227.81,73.866 +554825,227.83,69.513 +554826,227.39,70.96 +554827,226.92,72.401 +554828,226.41,73.834 +554829,226.59,69.504 +554830,226.1,70.942 +554831,225.57,72.375 +554832,225.02,73.8 +554833,225.34,69.496 +554834,224.8,70.925 +554835,224.23,72.349 +554836,223.63,73.766 +554837,224.1,69.489 +554838,223.51,70.909 +554839,222.89,72.323 +554840,222.23,73.73 +554841,222.86,69.483 +554842,222.22,70.892 +554843,221.54,72.296 +554844,220.84,73.693 +554845,221.61,69.479 +554846,220.92,70.876 +554847,220.2,72.269 +554848,219.45,73.655 +554849,220.37,69.476 +554850,219.63,70.861 +554851,218.86,72.241 +554852,218.06,73.615 +554853,219.12,69.473 +554854,218.33,70.845 +554855,217.52,72.213 +554856,216.67,73.575 +554857,217.87,69.472 +554858,217.04,70.831 +554859,216.18,72.185 +554860,215.28,73.534 +554861,216.63,69.472 +554862,215.75,70.816 +554863,214.83,72.156 +554864,213.89,73.491 +554865,215.38,69.473 +554866,214.45,70.802 +554867,213.49,72.127 +554868,212.5,73.448 +554869,214.13,69.475 +554870,213.16,70.788 +554871,212.15,72.098 +554872,211.11,73.403 +554873,212.88,69.479 +554874,211.86,70.775 +554875,210.81,72.068 +554876,209.72,73.357 +554877,211.63,69.483 +554878,210.57,70.762 +554879,209.47,72.038 +554880,208.33,73.31 +554881,210.38,69.488 +554882,209.27,70.749 +554883,208.13,72.008 +554884,206.95,73.263 +554885,209.13,69.495 +554886,207.98,70.737 +554887,206.79,71.977 +554888,205.56,73.214 +554889,207.88,69.502 +554890,206.68,70.725 +554891,205.45,71.946 +554892,204.18,73.164 +554893,206.62,69.511 +554894,205.38,70.713 +554895,204.11,71.914 +554896,202.79,73.113 +554897,205.37,69.52 +554898,204.09,70.702 +554899,202.77,71.883 +554900,201.41,73.062 +554901,204.11,69.53 +554902,202.79,70.69 +554903,201.43,71.85 +554904,200.03,73.009 +554905,202.85,69.541 +554906,201.49,70.68 +554907,200.09,71.818 +554908,198.64,72.955 +554909,201.6,69.554 +554910,200.2,70.669 +554911,198.75,71.785 +554912,197.26,72.901 +554913,200.34,69.567 +554914,198.9,70.659 +554915,197.42,71.752 +554916,195.88,72.845 +554917,199.08,69.581 +554918,197.6,70.649 +554919,196.08,71.719 +554920,194.51,72.789 +554921,197.82,69.596 +554922,196.3,70.64 +554923,194.74,71.685 +554924,193.13,72.732 +554925,196.55,69.611 +554926,195,70.63 +554927,193.4,71.651 +554928,191.75,72.674 +554929,195.29,69.628 +554930,193.7,70.621 +554931,192.07,71.617 +554932,190.38,72.615 +554933,194.02,69.645 +554934,192.4,70.613 +554935,190.73,71.583 +554936,189,72.555 +554937,192.76,69.663 +554938,191.1,70.604 +554939,189.4,71.548 +554940,187.63,72.494 +554941,191.49,69.682 +554942,189.8,70.596 +554943,188.06,71.513 +554944,186.26,72.433 +554945,190.22,69.702 +554946,188.5,70.588 +554947,186.73,71.478 +554948,184.89,72.371 +554949,188.95,69.722 +554950,187.2,70.58 +554951,185.39,71.443 +554952,183.52,72.308 +554953,187.68,69.743 +554954,185.9,70.573 +554955,184.06,71.407 +554956,182.15,72.245 +554957,186.41,69.764 +554958,184.6,70.565 +554959,182.73,71.371 +554960,180.79,72.181 +554961,185.13,69.787 +554962,183.29,70.558 +554963,181.39,71.335 +554964,179.42,72.116 +554965,183.86,69.81 +554966,181.99,70.551 +554967,180.06,71.298 +554968,178.06,72.05 +554969,182.58,69.833 +554970,180.69,70.545 +554971,178.73,71.262 +554972,176.7,71.984 +554973,181.3,69.857 +554974,179.38,70.538 +554975,177.4,71.225 +554976,175.34,71.917 +554977,180.02,69.882 +554978,178.08,70.532 +554979,176.07,71.188 +554980,173.98,71.85 +554981,178.74,69.907 +554982,176.77,70.526 +554983,174.74,71.151 +554984,172.62,71.782 +554985,177.46,69.933 +554986,175.47,70.52 +554987,173.41,71.114 +554988,171.27,71.714 +554989,176.17,69.959 +554990,174.16,70.514 +554991,172.08,71.076 +554992,169.91,71.645 +554993,174.89,69.985 +554994,172.85,70.508 +554995,170.75,71.038 +554996,168.56,71.575 +554997,173.6,70.012 +554998,171.55,70.503 +554999,169.42,71.001 +555000,167.21,71.506 +555001,172.31,70.04 +555002,170.24,70.497 +555003,168.1,70.963 +555004,165.86,71.435 +555005,171.02,70.067 +555006,168.93,70.492 +555007,166.77,70.925 +555008,164.51,71.365 +555009,169.73,70.095 +555010,167.62,70.487 +555011,165.44,70.886 +555012,163.17,71.294 +555013,168.43,70.124 +555014,166.31,70.482 +555015,164.12,70.848 +555016,161.83,71.222 +555017,167.14,70.152 +555018,165,70.477 +555019,162.79,70.81 +555020,160.48,71.151 +555021,165.84,70.181 +555022,163.69,70.472 +555023,161.47,70.771 +555024,159.14,71.078 +555025,164.54,70.21 +555026,162.38,70.467 +555027,160.14,70.733 +555028,157.8,71.006 +555029,163.24,70.24 +555030,161.07,70.463 +555031,158.82,70.694 +555032,156.47,70.934 +555033,161.94,70.269 +555034,159.76,70.458 +555035,157.5,70.655 +555036,155.13,70.861 +555037,160.63,70.299 +555038,158.45,70.453 +555039,156.17,70.616 +555040,153.8,70.788 +555041,159.33,70.328 +555042,157.13,70.449 +555043,154.85,70.577 +555044,152.47,70.715 +555045,158.02,70.358 +555046,155.82,70.444 +555047,153.53,70.538 +555048,151.14,70.642 +555049,156.71,70.388 +555050,154.51,70.44 +555051,152.21,70.5 +555052,149.81,70.568 +555053,155.4,70.418 +555054,153.19,70.435 +555055,150.89,70.461 +555056,148.48,70.495 +555057,154.09,70.448 +555058,151.88,70.431 +555059,149.57,70.422 +555060,147.16,70.421 +555061,152.77,70.478 +555062,150.56,70.426 +555063,148.25,70.383 +555064,145.84,70.348 +555065,151.46,70.508 +555066,149.24,70.422 +555067,146.94,70.344 +555068,144.51,70.274 +555069,150.14,70.537 +555070,147.93,70.417 +555071,145.62,70.305 +555072,143.2,70.201 +555073,148.82,70.567 +555074,146.61,70.413 +555075,144.3,70.266 +555076,141.88,70.127 +555077,147.5,70.597 +555078,145.29,70.408 +555079,142.98,70.227 +555080,140.56,70.054 +555081,146.18,70.626 +555082,143.97,70.403 +555083,141.67,70.188 +555084,139.25,69.981 +555085,144.85,70.655 +555086,142.65,70.399 +555087,140.35,70.149 +555088,137.94,69.908 +555089,143.53,70.684 +555090,141.33,70.394 +555091,139.04,70.11 +555092,136.63,69.835 +555093,142.2,70.713 +555094,140.01,70.389 +555095,137.73,70.071 +555096,135.32,69.762 +555097,140.87,70.741 +555098,138.69,70.384 +555099,136.41,70.033 +555100,134.02,69.689 +555101,139.54,70.769 +555102,137.37,70.379 +555103,135.1,69.994 +555104,132.71,69.617 +555105,138.21,70.797 +555106,136.05,70.374 +555107,133.79,69.956 +555108,131.41,69.545 +555109,136.88,70.825 +555110,134.73,70.368 +555111,132.48,69.917 +555112,130.11,69.474 +555113,135.54,70.852 +555114,133.4,70.363 +555115,131.17,69.879 +555116,128.81,69.402 +555117,134.2,70.878 +555118,132.08,70.357 +555119,129.86,69.841 +555120,127.52,69.331 +555121,132.86,70.905 +555122,130.76,70.352 +555123,128.55,69.803 +555124,126.22,69.261 +555125,131.52,70.93 +555126,129.43,70.346 +555127,127.24,69.765 +555128,124.93,69.19 +555129,130.18,70.956 +555130,128.11,70.34 +555131,125.93,69.728 +555132,123.64,69.121 +555133,128.84,70.981 +555134,126.78,70.334 +555135,124.62,69.69 +555136,122.35,69.051 +555137,127.49,71.005 +555138,125.45,70.327 +555139,123.31,69.653 +555140,121.06,68.983 +555141,126.15,71.029 +555142,124.13,70.321 +555143,122.01,69.615 +555144,119.77,68.914 +555145,124.8,71.052 +555146,122.8,70.314 +555147,120.7,69.578 +555148,118.49,68.847 +555149,123.45,71.074 +555150,121.47,70.307 +555151,119.4,69.542 +555152,117.21,68.78 +555153,122.1,71.096 +555154,120.14,70.3 +555155,118.09,69.505 +555156,115.93,68.713 +555157,120.74,71.118 +555158,118.81,70.293 +555159,116.79,69.468 +555160,114.65,68.647 +555161,119.39,71.138 +555162,117.49,70.285 +555163,115.48,69.432 +555164,113.37,68.582 +555165,118.03,71.158 +555166,116.16,70.277 +555167,114.18,69.396 +555168,112.09,68.517 +555169,116.68,71.177 +555170,114.82,70.269 +555171,112.88,69.361 +555172,110.82,68.453 +555173,115.32,71.196 +555174,113.49,70.261 +555175,111.57,69.325 +555176,109.55,68.39 +555177,113.96,71.213 +555178,112.16,70.252 +555179,110.27,69.29 +555180,108.28,68.328 +555181,112.6,71.23 +555182,110.83,70.243 +555183,108.97,69.255 +555184,107.01,68.266 +555185,111.23,71.247 +555186,109.5,70.234 +555187,107.67,69.22 +555188,105.74,68.205 +555189,109.87,71.262 +555190,108.17,70.225 +555191,106.37,69.185 +555192,104.47,68.145 +555193,108.5,71.276 +555194,106.83,70.215 +555195,105.07,69.151 +555196,103.21,68.086 +555197,107.14,71.29 +555198,105.5,70.205 +555199,103.77,69.117 +555200,101.95,68.027 +555201,105.77,71.303 +555202,104.17,70.195 +555203,102.47,69.083 +555204,100.68,67.97 +555205,104.4,71.315 +555206,102.83,70.185 +555207,101.18,69.05 +555208,99.423,67.913 +555209,103.03,71.325 +555210,101.5,70.174 +555211,99.877,69.017 +555212,98.164,67.857 +555213,101.66,71.335 +555214,100.16,70.162 +555215,98.58,68.984 +555216,96.906,67.803 +555217,100.29,71.345 +555218,98.826,70.151 +555219,97.283,68.952 +555220,95.649,67.749 +555221,98.912,71.353 +555222,97.49,70.139 +555223,95.986,68.92 +555224,94.394,67.696 +555225,97.537,71.36 +555226,96.153,70.127 +555227,94.69,68.888 +555228,93.14,67.644 +555229,96.161,71.366 +555230,94.816,70.115 +555231,93.394,68.856 +555232,91.887,67.593 +555233,94.784,71.371 +555234,93.479,70.102 +555235,92.099,68.825 +555236,90.635,67.543 +555237,93.406,71.375 +555238,92.142,70.089 +555239,90.804,68.794 +555240,89.384,67.494 +555241,92.027,71.378 +555242,90.804,70.075 +555243,89.509,68.764 +555244,88.134,67.446 +555245,90.647,71.38 +555246,89.466,70.061 +555247,88.215,68.734 +555248,86.886,67.4 +555249,89.265,71.381 +555250,88.128,70.047 +555251,86.921,68.704 +555252,85.638,67.354 +555253,87.883,71.381 +555254,86.789,70.032 +555255,85.628,68.674 +555256,84.392,67.309 +555257,86.5,71.38 +555258,85.45,70.017 +555259,84.334,68.645 +555260,83.146,67.266 +555261,85.117,71.377 +555262,84.111,70.002 +555263,83.041,68.617 +555264,81.901,67.223 +555265,83.732,71.374 +555266,82.772,69.986 +555267,81.749,68.588 +555268,80.658,67.182 +555269,82.347,71.369 +555270,81.432,69.97 +555271,80.456,68.56 +555272,79.415,67.142 +555273,80.96,71.364 +555274,80.092,69.954 +555275,79.164,68.533 +555276,78.172,67.103 +555277,79.573,71.357 +555278,78.752,69.937 +555279,77.872,68.506 +555280,76.931,67.065 +555281,78.186,71.349 +555282,77.411,69.919 +555283,76.581,68.479 +555284,75.69,67.029 +555285,76.797,71.34 +555286,76.071,69.902 +555287,75.289,68.452 +555288,74.45,66.993 +555289,75.408,71.33 +555290,74.73,69.884 +555291,73.998,68.426 +555292,73.21,66.959 +555293,74.019,71.318 +555294,73.389,69.865 +555295,72.707,68.401 +555296,71.971,66.926 +555297,72.629,71.306 +555298,72.047,69.846 +555299,71.417,68.375 +555300,70.733,66.894 +555301,71.238,71.292 +555302,70.706,69.827 +555303,70.126,68.35 +555304,69.495,66.863 +555305,69.847,71.277 +555306,69.365,69.807 +555307,68.836,68.326 +555308,68.257,66.834 +555309,68.455,71.261 +555310,68.023,69.787 +555311,67.546,68.302 +555312,67.02,66.805 +555313,67.063,71.243 +555314,66.681,69.767 +555315,66.256,68.278 +555316,65.783,66.778 +555317,65.671,71.225 +555318,65.339,69.746 +555319,64.966,68.255 +555320,64.547,66.753 +555321,64.278,71.205 +555322,63.997,69.725 +555323,63.676,68.232 +555324,63.311,66.728 +555325,62.885,71.184 +555326,62.655,69.703 +555327,62.386,68.209 +555328,62.075,66.705 +555329,61.491,71.162 +555330,61.313,69.681 +555331,61.096,68.187 +555332,60.839,66.682 +555333,60.098,71.139 +555334,59.971,69.659 +555335,59.807,68.166 +555336,59.604,66.661 +555337,58.704,71.114 +555338,58.629,69.636 +555339,58.517,68.144 +555340,58.368,66.642 +555341,57.31,71.089 +555342,57.286,69.612 +555343,57.228,68.123 +555344,57.133,66.623 +555345,55.916,71.062 +555346,55.944,69.589 +555347,55.939,68.103 +555348,55.898,66.606 +555349,54.521,71.034 +555350,54.602,69.564 +555351,54.649,68.083 +555352,54.662,66.59 +555353,53.127,71.004 +555354,53.26,69.54 +555355,53.36,68.063 +555356,53.427,66.575 +555357,51.733,70.974 +555358,51.917,69.515 +555359,52.07,68.044 +555360,52.191,66.561 +555361,50.338,70.942 +555362,50.575,69.49 +555363,50.781,68.025 +555364,50.955,66.549 +555365,48.944,70.91 +555366,49.233,69.464 +555367,49.492,68.006 +555368,49.72,66.538 +555369,47.55,70.876 +555370,47.891,69.438 +555371,48.202,67.988 +555372,48.483,66.528 +555373,46.156,70.84 +555374,46.549,69.411 +555375,46.913,67.97 +555376,47.247,66.519 +555377,44.762,70.804 +555378,45.207,69.384 +555379,45.623,67.953 +555380,46.01,66.511 +555381,43.368,70.767 +555382,43.865,69.357 +555383,44.333,67.936 +555384,44.773,66.505 +555385,41.974,70.728 +555386,42.523,69.329 +555387,43.044,67.919 +555388,43.536,66.5 +555389,40.581,70.688 +555390,41.182,69.301 +555391,41.754,67.903 +555392,42.298,66.495 +555393,39.188,70.647 +555394,39.84,69.273 +555395,40.464,67.887 +555396,41.059,66.492 +555397,37.796,70.605 +555398,38.499,69.244 +555399,39.173,67.872 +555400,39.82,66.491 +555401,36.404,70.562 +555402,37.158,69.214 +555403,37.883,67.856 +555404,38.581,66.49 +555405,35.012,70.518 +555406,35.817,69.185 +555407,36.593,67.842 +555408,37.341,66.49 +555409,33.621,70.473 +555410,34.476,69.155 +555411,35.302,67.827 +555412,36.1,66.492 +555413,32.23,70.426 +555414,33.135,69.124 +555415,34.011,67.813 +555416,34.859,66.494 +555417,30.84,70.379 +555418,31.795,69.094 +555419,32.72,67.8 +555420,33.617,66.498 +555421,29.45,70.33 +555422,30.455,69.063 +555423,31.429,67.786 +555424,32.374,66.502 +555425,28.061,70.281 +555426,29.115,69.031 +555427,30.137,67.773 +555428,31.13,66.508 +555429,26.673,70.23 +555430,27.775,68.999 +555431,28.845,67.76 +555432,29.886,66.515 +555433,25.285,70.179 +555434,26.436,68.967 +555435,27.553,67.748 +555436,28.64,66.523 +555437,23.898,70.126 +555438,25.097,68.935 +555439,26.261,67.736 +555440,27.394,66.531 +555441,22.512,70.072 +555442,23.758,68.902 +555443,24.968,67.724 +555444,26.147,66.541 +555445,21.127,70.018 +555446,22.419,68.869 +555447,23.675,67.713 +555448,24.899,66.552 +555449,19.743,69.962 +555450,21.081,68.835 +555451,22.382,67.702 +555452,23.65,66.564 +555453,18.359,69.906 +555454,19.743,68.801 +555455,21.089,67.691 +555456,22.4,66.576 +555457,16.977,69.848 +555458,18.406,68.767 +555459,19.795,67.681 +555460,21.148,66.59 +555461,15.595,69.79 +555462,17.069,68.733 +555463,18.501,67.67 +555464,19.896,66.604 +555465,14.214,69.731 +555466,15.732,68.698 +555467,17.206,67.66 +555468,18.643,66.619 +555469,12.835,69.671 +555470,14.395,68.663 +555471,15.912,67.651 +555472,17.388,66.635 +555473,11.456,69.61 +555474,13.059,68.628 +555475,14.616,67.641 +555476,16.132,66.652 +555477,10.078,69.549 +555478,11.724,68.592 +555479,13.321,67.632 +555480,14.876,66.67 +555481,8.7021,69.486 +555482,10.388,68.557 +555483,12.025,67.623 +555484,13.617,66.688 +555485,7.327,69.423 +555486,9.0536,68.52 +555487,10.728,67.615 +555488,12.358,66.707 +555489,5.953,69.359 +555490,7.7192,68.484 +555491,9.4316,67.606 +555492,11.097,66.727 +555493,4.5803,69.294 +555494,6.3852,68.447 +555495,8.1344,67.598 +555496,9.8351,66.748 +555497,3.2088,69.229 +555498,5.0517,68.411 +555499,6.8368,67.59 +555500,8.5716,66.769 +555501,1.8386,69.163 +555502,3.7186,68.373 +555503,5.5388,67.583 +555504,7.3069,66.791 +555505,0.46976,69.096 +555506,2.386,68.336 +555507,4.2403,67.575 +555508,6.0407,66.814 +555509,359.1,69.028 +555510,1.0539,68.299 +555511,2.9413,67.568 +555512,4.7731,66.837 +555513,357.74,68.96 +555514,359.72,68.261 +555515,1.6419,67.561 +555516,3.5041,66.861 +555517,356.37,68.891 +555518,358.39,68.223 +555519,0.34205,67.554 +555520,2.2336,66.885 +555521,355.01,68.822 +555522,357.06,68.185 +555523,359.04,67.547 +555524,0.96166,66.91 +555525,353.65,68.752 +555526,355.73,68.146 +555527,357.74,67.541 +555528,359.69,66.936 +555529,352.29,68.682 +555530,354.4,68.108 +555531,356.44,67.534 +555532,358.41,66.962 +555533,350.93,68.611 +555534,353.07,68.069 +555535,355.14,67.528 +555536,357.14,66.988 +555537,349.57,68.54 +555538,351.74,68.03 +555539,353.84,67.522 +555540,355.86,67.015 +555541,348.21,68.468 +555542,350.41,67.991 +555543,352.53,67.516 +555544,354.58,67.042 +555545,346.86,68.395 +555546,349.09,67.952 +555547,351.23,67.51 +555548,353.3,67.07 +555549,345.51,68.323 +555550,347.76,67.913 +555551,349.93,67.504 +555552,352.02,67.098 +555553,344.16,68.25 +555554,346.43,67.873 +555555,348.62,67.499 +555556,350.73,67.126 +555557,342.81,68.176 +555558,345.11,67.834 +555559,347.32,67.493 +555560,349.44,67.155 +555561,341.46,68.103 +555562,343.78,67.794 +555563,346.01,67.487 +555564,348.16,67.183 +555565,340.12,68.029 +555566,342.46,67.754 +555567,344.7,67.482 +555568,346.87,67.212 +555569,338.77,67.954 +555570,341.13,67.715 +555571,343.4,67.477 +555572,345.58,67.242 +555573,337.43,67.88 +555574,339.81,67.675 +555575,342.09,67.472 +555576,344.28,67.271 +555577,336.09,67.805 +555578,338.49,67.635 +555579,340.78,67.466 +555580,342.99,67.301 +555581,334.75,67.73 +555582,337.17,67.595 +555583,339.48,67.461 +555584,341.69,67.331 +555585,333.41,67.655 +555586,335.84,67.554 +555587,338.17,67.456 +555588,340.4,67.36 +555589,332.08,67.58 +555590,334.52,67.514 +555591,336.86,67.451 +555592,339.1,67.39 +555593,330.75,67.505 +555594,333.2,67.474 +555595,335.55,67.446 +555596,337.8,67.42 +555597,329.42,67.429 +555598,331.88,67.434 +555599,334.24,67.441 +555600,336.49,67.45 +555601,328.09,67.354 +555602,330.56,67.394 +555603,332.93,67.436 +555604,335.19,67.48 +555605,326.76,67.278 +555606,329.25,67.353 +555607,331.61,67.43 +555608,333.88,67.51 +555609,325.43,67.203 +555610,327.93,67.313 +555611,330.3,67.425 +555612,332.57,67.54 +555613,324.11,67.128 +555614,326.61,67.273 +555615,328.99,67.42 +555616,331.26,67.57 +555617,322.79,67.052 +555618,325.29,67.233 +555619,327.68,67.415 +555620,329.95,67.599 +555621,321.47,66.977 +555622,323.98,67.192 +555623,326.36,67.41 +555624,328.64,67.629 +555625,320.15,66.902 +555626,322.66,67.152 +555627,325.05,67.404 +555628,327.32,67.658 +555629,318.84,66.827 +555630,321.35,67.112 +555631,323.73,67.399 +555632,326.01,67.687 +555633,317.52,66.752 +555634,320.03,67.072 +555635,322.42,67.393 +555636,324.69,67.716 +555637,316.21,66.678 +555638,318.72,67.032 +555639,321.1,67.388 +555640,323.37,67.744 +555641,314.9,66.603 +555642,317.41,66.992 +555643,319.78,67.382 +555644,322.05,67.773 +555645,313.59,66.529 +555646,316.09,66.952 +555647,318.47,67.376 +555648,320.72,67.8 +555649,312.28,66.456 +555650,314.78,66.913 +555651,317.15,67.37 +555652,319.4,67.828 +555653,310.98,66.382 +555654,313.47,66.873 +555655,315.83,67.364 +555656,318.07,67.855 +555657,309.68,66.309 +555658,312.16,66.833 +555659,314.51,67.358 +555660,316.74,67.882 +555661,308.38,66.236 +555662,310.85,66.794 +555663,313.19,67.352 +555664,315.41,67.908 +555665,307.08,66.164 +555666,309.54,66.755 +555667,311.87,67.345 +555668,314.08,67.934 +555669,305.78,66.092 +555670,308.23,66.716 +555671,310.55,67.339 +555672,312.75,67.96 +555673,304.49,66.021 +555674,306.93,66.677 +555675,309.23,67.332 +555676,311.41,67.985 +555677,303.19,65.95 +555678,305.62,66.638 +555679,307.91,67.325 +555680,310.08,68.009 +555681,301.9,65.879 +555682,304.31,66.599 +555683,306.58,67.317 +555684,308.74,68.033 +555685,300.61,65.809 +555686,303.01,66.561 +555687,305.26,67.31 +555688,307.4,68.056 +555689,299.33,65.74 +555690,301.7,66.523 +555691,303.94,67.302 +555692,306.06,68.079 +555693,298.04,65.671 +555694,300.4,66.484 +555695,302.61,67.295 +555696,304.71,68.101 +555697,296.76,65.603 +555698,299.09,66.447 +555699,301.29,67.287 +555700,303.37,68.122 +555701,295.48,65.536 +555702,297.79,66.409 +555703,299.96,67.278 +555704,302.02,68.143 +555705,294.2,65.469 +555706,296.48,66.371 +555707,298.64,67.27 +555708,300.67,68.163 +555709,292.92,65.403 +555710,295.18,66.334 +555711,297.31,67.261 +555712,299.32,68.182 +555713,291.64,65.338 +555714,293.88,66.297 +555715,295.98,67.252 +555716,297.97,68.201 +555717,290.37,65.273 +555718,292.58,66.26 +555719,294.66,67.243 +555720,296.62,68.218 +555721,289.1,65.209 +555722,291.28,66.224 +555723,293.33,67.233 +555724,295.27,68.235 +555725,287.82,65.146 +555726,289.98,66.188 +555727,292,67.223 +555728,293.91,68.252 +555729,286.56,65.084 +555730,288.68,66.152 +555731,290.67,67.213 +555732,292.55,68.267 +555733,285.29,65.022 +555734,287.38,66.116 +555735,289.34,67.203 +555736,291.2,68.281 +555737,284.02,64.961 +555738,286.08,66.08 +555739,288.01,67.192 +555740,289.84,68.295 +555741,282.76,64.902 +555742,284.78,66.045 +555743,286.68,67.181 +555744,288.47,68.308 +555745,281.49,64.843 +555746,283.49,66.01 +555747,285.35,67.17 +555748,287.11,68.319 +555749,280.23,64.785 +555750,282.19,65.976 +555751,284.02,67.158 +555752,285.75,68.33 +555753,278.97,64.728 +555754,280.89,65.941 +555755,282.69,67.146 +555756,284.38,68.34 +555757,277.71,64.672 +555758,279.6,65.908 +555759,281.36,67.134 +555760,283.02,68.349 +555761,276.46,64.617 +555762,278.3,65.874 +555763,280.03,67.121 +555764,281.65,68.357 +555765,275.2,64.563 +555766,277.01,65.841 +555767,278.69,67.108 +555768,280.28,68.364 +555769,273.95,64.51 +555770,275.71,65.807 +555771,277.36,67.095 +555772,278.91,68.37 +555773,272.7,64.458 +555774,274.42,65.775 +555775,276.03,67.081 +555776,277.54,68.375 +555777,271.44,64.406 +555778,273.12,65.742 +555779,274.69,67.067 +555780,276.17,68.379 +555781,270.19,64.357 +555782,271.83,65.71 +555783,273.36,67.053 +555784,274.79,68.382 +555785,268.95,64.308 +555786,270.54,65.679 +555787,272.02,67.038 +555788,273.42,68.383 +555789,267.7,64.26 +555790,269.24,65.648 +555791,270.69,67.023 +555792,272.04,68.384 +555793,266.45,64.213 +555794,267.95,65.617 +555795,269.35,67.007 +555796,270.66,68.384 +555797,265.21,64.168 +555798,266.66,65.586 +555799,268.02,66.991 +555800,269.29,68.382 +555801,263.96,64.123 +555802,265.37,65.556 +555803,266.68,66.975 +555804,267.91,68.379 +555805,262.72,64.08 +555806,264.08,65.526 +555807,265.34,66.958 +555808,266.53,68.376 +555809,261.48,64.038 +555810,262.79,65.496 +555811,264.01,66.941 +555812,265.15,68.371 +555813,260.24,63.997 +555814,261.5,65.467 +555815,262.67,66.924 +555816,263.76,68.364 +555817,259,63.957 +555818,260.21,65.439 +555819,261.33,66.906 +555820,262.38,68.357 +555821,257.76,63.918 +555822,258.92,65.41 +555823,260,66.887 +555824,261,68.349 +555825,256.52,63.881 +555826,257.63,65.382 +555827,258.66,66.869 +555828,259.61,68.339 +555829,255.28,63.845 +555830,256.34,65.355 +555831,257.32,66.85 +555832,258.23,68.328 +555833,254.05,63.81 +555834,255.05,65.328 +555835,255.98,66.83 +555836,256.84,68.316 +555837,252.81,63.776 +555838,253.76,65.301 +555839,254.64,66.81 +555840,255.46,68.303 +555841,251.58,63.743 +555842,252.47,65.274 +555843,253.3,66.79 +555844,254.07,68.288 +555845,250.34,63.712 +555846,251.19,65.249 +555847,251.96,66.769 +555848,252.68,68.273 +555849,249.11,63.682 +555850,249.9,65.223 +555851,250.62,66.748 +555852,251.29,68.256 +555853,247.87,63.653 +555854,248.61,65.198 +555855,249.29,66.726 +555856,249.9,68.238 +555857,246.64,63.626 +555858,247.32,65.173 +555859,247.95,66.704 +555860,248.51,68.218 +555861,245.41,63.599 +555862,246.04,65.149 +555863,246.61,66.682 +555864,247.12,68.198 +555865,244.18,63.574 +555866,244.75,65.125 +555867,245.27,66.659 +555868,245.73,68.176 +555869,242.95,63.55 +555870,243.46,65.101 +555871,243.93,66.636 +555872,244.34,68.153 +555873,241.71,63.528 +555874,242.18,65.078 +555875,242.59,66.612 +555876,242.95,68.129 +555877,240.48,63.506 +555878,240.89,65.055 +555879,241.25,66.588 +555880,241.56,68.103 +555881,239.25,63.486 +555882,239.6,65.033 +555883,239.91,66.563 +555884,240.16,68.076 +555885,238.02,63.467 +555886,238.32,65.011 +555887,238.57,66.538 +555888,238.77,68.048 +555889,236.79,63.45 +555890,237.03,64.989 +555891,237.22,66.513 +555892,237.38,68.019 +555893,235.56,63.433 +555894,235.74,64.968 +555895,235.88,66.487 +555896,235.98,67.989 +555897,234.33,63.418 +555898,234.46,64.947 +555899,234.54,66.461 +555900,234.59,67.957 +555901,233.1,63.404 +555902,233.17,64.927 +555903,233.2,66.434 +555904,233.2,67.924 +555905,231.87,63.392 +555906,231.89,64.907 +555907,231.86,66.407 +555908,231.8,67.89 +555909,230.64,63.38 +555910,230.6,64.888 +555911,230.52,66.379 +555912,230.41,67.855 +555913,229.41,63.37 +555914,229.31,64.868 +555915,229.18,66.352 +555916,229.02,67.818 +555917,228.18,63.361 +555918,228.03,64.85 +555919,227.84,66.323 +555920,227.62,67.78 +555921,226.95,63.353 +555922,226.74,64.831 +555923,226.5,66.294 +555924,226.23,67.741 +555925,225.72,63.347 +555926,225.46,64.813 +555927,225.16,66.265 +555928,224.83,67.701 +555929,224.49,63.341 +555930,224.17,64.796 +555931,223.82,66.236 +555932,223.44,67.66 +555933,223.26,63.337 +555934,222.88,64.778 +555935,222.48,66.206 +555936,222.05,67.618 +555937,222.03,63.334 +555938,221.6,64.762 +555939,221.14,66.175 +555940,220.65,67.574 +555941,220.8,63.332 +555942,220.31,64.745 +555943,219.8,66.145 +555944,219.26,67.529 +555945,219.57,63.331 +555946,219.03,64.729 +555947,218.46,66.113 +555948,217.87,67.483 +555949,218.33,63.332 +555950,217.74,64.713 +555951,217.12,66.082 +555952,216.48,67.436 +555953,217.1,63.333 +555954,216.45,64.698 +555955,215.78,66.05 +555956,215.08,67.388 +555957,215.86,63.336 +555958,215.16,64.683 +555959,214.44,66.017 +555960,213.69,67.338 +555961,214.63,63.34 +555962,213.88,64.668 +555963,213.1,65.985 +555964,212.3,67.288 +555965,213.39,63.344 +555966,212.59,64.654 +555967,211.76,65.952 +555968,210.91,67.236 +555969,212.16,63.35 +555970,211.3,64.64 +555971,210.42,65.918 +555972,209.52,67.184 +555973,210.92,63.357 +555974,210.02,64.626 +555975,209.08,65.884 +555976,208.13,67.13 +555977,209.68,63.365 +555978,208.73,64.613 +555979,207.75,65.85 +555980,206.74,67.075 +555981,208.45,63.374 +555982,207.44,64.6 +555983,206.41,65.816 +555984,205.35,67.02 +555985,207.21,63.384 +555986,206.15,64.587 +555987,205.07,65.781 +555988,203.96,66.963 +555989,205.97,63.395 +555990,204.86,64.575 +555991,203.73,65.746 +555992,202.58,66.905 +555993,204.73,63.407 +555994,203.57,64.563 +555995,202.4,65.71 +555996,201.19,66.846 +555997,203.48,63.419 +555998,202.28,64.551 +555999,201.06,65.674 +556000,199.8,66.787 +556001,202.24,63.433 +556002,201,64.54 +556003,199.72,65.638 +556004,198.42,66.726 +556005,201,63.448 +556006,199.71,64.529 +556007,198.39,65.601 +556008,197.03,66.664 +556009,199.75,63.463 +556010,198.42,64.518 +556011,197.05,65.565 +556012,195.65,66.602 +556013,198.51,63.48 +556014,197.13,64.507 +556015,195.71,65.528 +556016,194.27,66.539 +556017,197.26,63.497 +556018,195.83,64.497 +556019,194.38,65.49 +556020,192.89,66.474 +556021,196.01,63.515 +556022,194.54,64.487 +556023,193.04,65.452 +556024,191.5,66.409 +556025,194.76,63.533 +556026,193.25,64.477 +556027,191.71,65.414 +556028,190.13,66.343 +556029,193.51,63.553 +556030,191.96,64.468 +556031,190.37,65.376 +556032,188.75,66.277 +556033,192.26,63.573 +556034,190.67,64.458 +556035,189.04,65.337 +556036,187.37,66.209 +556037,191,63.594 +556038,189.38,64.449 +556039,187.71,65.299 +556040,185.99,66.141 +556041,189.75,63.616 +556042,188.08,64.44 +556043,186.37,65.26 +556044,184.62,66.072 +556045,188.49,63.638 +556046,186.79,64.432 +556047,185.04,65.22 +556048,183.24,66.002 +556049,187.24,63.661 +556050,185.5,64.423 +556051,183.71,65.181 +556052,181.87,65.932 +556053,185.98,63.685 +556054,184.2,64.415 +556055,182.38,65.141 +556056,180.5,65.861 +556057,184.72,63.709 +556058,182.91,64.407 +556059,181.05,65.101 +556060,179.13,65.789 +556061,183.46,63.734 +556062,181.61,64.399 +556063,179.72,65.061 +556064,177.76,65.717 +556065,182.19,63.759 +556066,180.32,64.391 +556067,178.39,65.02 +556068,176.39,65.644 +556069,180.93,63.785 +556070,179.02,64.384 +556071,177.06,64.98 +556072,175.03,65.57 +556073,179.66,63.811 +556074,177.72,64.377 +556075,175.73,64.939 +556076,173.66,65.496 +556077,178.39,63.838 +556078,176.43,64.369 +556079,174.4,64.898 +556080,172.3,65.421 +556081,177.13,63.865 +556082,175.13,64.362 +556083,173.07,64.857 +556084,170.94,65.346 +556085,175.85,63.892 +556086,173.83,64.355 +556087,171.74,64.815 +556088,169.58,65.271 +556089,174.58,63.92 +556090,172.53,64.349 +556091,170.41,64.774 +556092,168.22,65.195 +556093,173.31,63.948 +556094,171.23,64.342 +556095,169.09,64.732 +556096,166.86,65.119 +556097,172.03,63.977 +556098,169.93,64.335 +556099,167.76,64.691 +556100,165.51,65.042 +556101,170.76,64.006 +556102,168.63,64.329 +556103,166.44,64.649 +556104,164.15,64.965 +556105,169.48,64.035 +556106,167.33,64.322 +556107,165.11,64.607 +556108,162.8,64.887 +556109,168.2,64.064 +556110,166.03,64.316 +556111,163.79,64.565 +556112,161.45,64.809 +556113,166.91,64.094 +556114,164.73,64.309 +556115,162.46,64.522 +556116,160.1,64.731 +556117,165.63,64.124 +556118,163.43,64.303 +556119,161.14,64.48 +556120,158.75,64.653 +556121,164.34,64.153 +556122,162.12,64.297 +556123,159.82,64.438 +556124,157.41,64.575 +556125,163.06,64.183 +556126,160.82,64.291 +556127,158.5,64.395 +556128,156.07,64.496 +556129,161.77,64.214 +556130,159.52,64.285 +556131,157.17,64.353 +556132,154.72,64.417 +556133,160.48,64.244 +556134,158.21,64.279 +556135,155.85,64.31 +556136,153.38,64.338 +556137,159.19,64.274 +556138,156.91,64.272 +556139,154.53,64.268 +556140,152.05,64.259 +556141,157.89,64.304 +556142,155.6,64.266 +556143,153.21,64.225 +556144,150.71,64.18 +556145,156.6,64.334 +556146,154.3,64.26 +556147,151.9,64.183 +556148,149.38,64.101 +556149,155.3,64.364 +556150,152.99,64.254 +556151,150.58,64.14 +556152,148.04,64.022 +556153,154,64.394 +556154,151.68,64.248 +556155,149.26,64.097 +556156,146.71,63.943 +556157,152.7,64.424 +556158,150.37,64.241 +556159,147.94,64.055 +556160,145.38,63.864 +556161,151.39,64.454 +556162,149.07,64.235 +556163,146.63,64.012 +556164,144.06,63.785 +556165,150.09,64.483 +556166,147.76,64.229 +556167,145.31,63.97 +556168,142.73,63.706 +556169,148.78,64.512 +556170,146.45,64.222 +556171,144,63.927 +556172,141.41,63.627 +556173,147.48,64.541 +556174,145.14,64.216 +556175,142.68,63.885 +556176,140.09,63.548 +556177,146.17,64.57 +556178,143.83,64.209 +556179,141.37,63.842 +556180,138.77,63.47 +556181,144.85,64.599 +556182,142.51,64.202 +556183,140.05,63.8 +556184,137.45,63.392 +556185,143.54,64.627 +556186,141.2,64.195 +556187,138.74,63.758 +556188,136.14,63.314 +556189,142.23,64.655 +556190,139.89,64.188 +556191,137.43,63.716 +556192,134.83,63.236 +556193,140.91,64.682 +556194,138.58,64.181 +556195,136.12,63.674 +556196,133.52,63.159 +556197,139.59,64.709 +556198,137.26,64.174 +556199,134.81,63.632 +556200,132.21,63.082 +556201,138.27,64.736 +556202,135.95,64.167 +556203,133.5,63.59 +556204,130.9,63.005 +556205,136.95,64.762 +556206,134.63,64.159 +556207,132.19,63.548 +556208,129.6,62.929 +556209,135.62,64.788 +556210,133.32,64.151 +556211,130.88,63.507 +556212,128.29,62.853 +556213,134.3,64.813 +556214,132,64.143 +556215,129.57,63.465 +556216,126.99,62.778 +556217,132.97,64.838 +556218,130.69,64.135 +556219,128.27,63.424 +556220,125.69,62.703 +556221,131.64,64.862 +556222,129.37,64.127 +556223,126.96,63.383 +556224,124.4,62.629 +556225,130.31,64.885 +556226,128.05,64.118 +556227,125.66,63.342 +556228,123.1,62.555 +556229,128.98,64.908 +556230,126.73,64.11 +556231,124.35,63.301 +556232,121.81,62.482 +556233,127.64,64.93 +556234,125.41,64.101 +556235,123.05,63.261 +556236,120.52,62.409 +556237,126.31,64.952 +556238,124.09,64.092 +556239,121.74,63.22 +556240,119.23,62.337 +556241,124.97,64.973 +556242,122.77,64.082 +556243,120.44,63.18 +556244,117.94,62.266 +556245,123.63,64.993 +556246,121.45,64.073 +556247,119.14,63.14 +556248,116.66,62.195 +556249,122.29,65.012 +556250,120.13,64.063 +556251,117.83,63.1 +556252,115.38,62.125 +556253,120.95,65.031 +556254,118.81,64.052 +556255,116.53,63.061 +556256,114.1,62.056 +556257,119.61,65.049 +556258,117.49,64.042 +556259,115.23,63.022 +556260,112.82,61.987 +556261,118.26,65.066 +556262,116.16,64.031 +556263,113.93,62.983 +556264,111.54,61.92 +556265,116.91,65.082 +556266,114.84,64.02 +556267,112.63,62.944 +556268,110.26,61.853 +556269,115.56,65.097 +556270,113.52,64.009 +556271,111.33,62.905 +556272,108.99,61.787 +556273,114.21,65.112 +556274,112.19,63.997 +556275,110.04,62.867 +556276,107.72,61.721 +556277,112.86,65.126 +556278,110.87,63.985 +556279,108.74,62.829 +556280,106.45,61.657 +556281,111.51,65.138 +556282,109.54,63.973 +556283,107.44,62.792 +556284,105.18,61.594 +556285,110.15,65.15 +556286,108.22,63.961 +556287,106.14,62.754 +556288,103.92,61.531 +556289,108.8,65.161 +556290,106.89,63.948 +556291,104.85,62.717 +556292,102.65,61.469 +556293,107.44,65.171 +556294,105.56,63.935 +556295,103.55,62.681 +556296,101.39,61.409 +556297,106.08,65.179 +556298,104.24,63.921 +556299,102.26,62.644 +556300,100.13,61.349 +556301,104.72,65.187 +556302,102.91,63.907 +556303,100.96,62.608 +556304,98.869,61.29 +556305,103.36,65.194 +556306,101.58,63.893 +556307,99.67,62.572 +556308,97.612,61.233 +556309,102,65.2 +556310,100.25,63.878 +556311,98.377,62.537 +556312,96.356,61.176 +556313,100.63,65.204 +556314,98.922,63.863 +556315,97.084,62.502 +556316,95.102,61.121 +556317,99.269,65.208 +556318,97.592,63.848 +556319,95.792,62.467 +556320,93.849,61.066 +556321,97.902,65.211 +556322,96.262,63.832 +556323,94.501,62.433 +556324,92.598,61.013 +556325,96.534,65.212 +556326,94.932,63.816 +556327,93.209,62.399 +556328,91.348,60.96 +556329,95.165,65.212 +556330,93.601,63.799 +556331,91.919,62.365 +556332,90.1,60.909 +556333,93.795,65.211 +556334,92.27,63.782 +556335,90.628,62.332 +556336,88.854,60.859 +556337,92.423,65.209 +556338,90.938,63.765 +556339,89.339,62.299 +556340,87.608,60.81 +556341,91.05,65.206 +556342,89.606,63.747 +556343,88.049,62.266 +556344,86.364,60.763 +556345,89.677,65.202 +556346,88.273,63.729 +556347,86.761,62.234 +556348,85.122,60.716 +556349,88.302,65.196 +556350,86.941,63.711 +556351,85.472,62.202 +556352,83.88,60.671 +556353,86.926,65.19 +556354,85.608,63.692 +556355,84.184,62.171 +556356,82.64,60.627 +556357,85.549,65.182 +556358,84.274,63.672 +556359,82.896,62.14 +556360,81.401,60.584 +556361,84.171,65.172 +556362,82.94,63.653 +556363,81.609,62.109 +556364,80.164,60.542 +556365,82.792,65.162 +556366,81.606,63.632 +556367,80.322,62.079 +556368,78.927,60.502 +556369,81.412,65.15 +556370,80.272,63.612 +556371,79.036,62.049 +556372,77.692,60.463 +556373,80.032,65.137 +556374,78.937,63.591 +556375,77.75,62.02 +556376,76.457,60.425 +556377,78.65,65.123 +556378,77.602,63.569 +556379,76.464,61.991 +556380,75.224,60.388 +556381,77.268,65.108 +556382,76.267,63.547 +556383,75.179,61.962 +556384,73.991,60.353 +556385,75.885,65.091 +556386,74.932,63.525 +556387,73.893,61.934 +556388,72.759,60.319 +556389,74.501,65.073 +556390,73.596,63.502 +556391,72.609,61.906 +556392,71.529,60.286 +556393,73.116,65.054 +556394,72.26,63.479 +556395,71.324,61.879 +556396,70.299,60.255 +556397,71.731,65.034 +556398,70.924,63.455 +556399,70.04,61.852 +556400,69.069,60.225 +556401,70.344,65.012 +556402,69.587,63.431 +556403,68.756,61.825 +556404,67.841,60.196 +556405,68.958,64.989 +556406,68.251,63.406 +556407,67.472,61.799 +556408,66.613,60.168 +556409,67.57,64.964 +556410,66.914,63.381 +556411,66.189,61.774 +556412,65.386,60.142 +556413,66.182,64.939 +556414,65.577,63.356 +556415,64.905,61.748 +556416,64.159,60.117 +556417,64.794,64.912 +556418,64.24,63.33 +556419,63.622,61.723 +556420,62.933,60.093 +556421,63.405,64.884 +556422,62.903,63.303 +556423,62.339,61.699 +556424,61.708,60.071 +556425,62.015,64.854 +556426,61.565,63.277 +556427,61.057,61.675 +556428,60.483,60.05 +556429,60.626,64.823 +556430,60.228,63.249 +556431,59.774,61.651 +556432,59.258,60.03 +556433,59.235,64.791 +556434,58.89,63.222 +556435,58.492,61.628 +556436,58.034,60.012 +556437,57.845,64.758 +556438,57.553,63.193 +556439,57.209,61.605 +556440,56.809,59.995 +556441,56.454,64.723 +556442,56.215,63.165 +556443,55.927,61.583 +556444,55.586,59.979 +556445,55.062,64.687 +556446,54.877,63.136 +556447,54.645,61.561 +556448,54.362,59.964 +556449,53.671,64.65 +556450,53.539,63.106 +556451,53.363,61.54 +556452,53.138,59.951 +556453,52.279,64.611 +556454,52.201,63.076 +556455,52.081,61.519 +556456,51.915,59.939 +556457,50.887,64.572 +556458,50.863,63.046 +556459,50.799,61.498 +556460,50.692,59.928 +556461,49.495,64.531 +556462,49.525,63.015 +556463,49.518,61.478 +556464,49.468,59.919 +556465,48.103,64.488 +556466,48.188,62.984 +556467,48.236,61.458 +556468,48.245,59.911 +556469,46.711,64.445 +556470,46.85,62.952 +556471,46.954,61.438 +556472,47.022,59.904 +556473,45.319,64.4 +556474,45.512,62.92 +556475,45.672,61.419 +556476,45.798,59.898 +556477,43.926,64.354 +556478,44.174,62.888 +556479,44.39,61.401 +556480,44.574,59.894 +556481,42.534,64.307 +556482,42.836,62.855 +556483,43.109,61.382 +556484,43.35,59.89 +556485,41.142,64.258 +556486,41.498,62.821 +556487,41.827,61.364 +556488,42.126,59.888 +556489,39.75,64.208 +556490,40.161,62.788 +556491,40.545,61.347 +556492,40.901,59.887 +556493,38.358,64.158 +556494,38.823,62.753 +556495,39.263,61.33 +556496,39.676,59.888 +556497,36.966,64.106 +556498,37.486,62.719 +556499,37.981,61.313 +556500,38.451,59.889 +556501,35.575,64.052 +556502,36.149,62.684 +556503,36.699,61.297 +556504,37.225,59.892 +556505,34.184,63.998 +556506,34.811,62.648 +556507,35.417,61.281 +556508,35.999,59.896 +556509,32.793,63.943 +556510,33.475,62.613 +556511,34.134,61.265 +556512,34.772,59.9 +556513,31.403,63.886 +556514,32.138,62.577 +556515,32.852,61.25 +556516,33.544,59.906 +556517,30.012,63.828 +556518,30.801,62.54 +556519,31.569,61.235 +556520,32.316,59.914 +556521,28.623,63.769 +556522,29.465,62.503 +556523,30.286,61.22 +556524,31.088,59.922 +556525,27.234,63.709 +556526,28.128,62.466 +556527,29.003,61.206 +556528,29.858,59.931 +556529,25.845,63.648 +556530,26.792,62.428 +556531,27.72,61.192 +556532,28.628,59.941 +556533,24.457,63.586 +556534,25.457,62.39 +556535,26.436,61.178 +556536,27.397,59.952 +556537,23.069,63.523 +556538,24.121,62.352 +556539,25.153,61.165 +556540,26.165,59.965 +556541,21.682,63.459 +556542,22.786,62.313 +556543,23.869,61.152 +556544,24.932,59.978 +556545,20.296,63.394 +556546,21.451,62.274 +556547,22.585,61.139 +556548,23.698,59.992 +556549,18.91,63.328 +556550,20.116,62.235 +556551,21.3,61.127 +556552,22.464,60.007 +556553,17.526,63.261 +556554,18.782,62.195 +556555,20.015,61.115 +556556,21.228,60.023 +556557,16.142,63.193 +556558,17.448,62.155 +556559,18.73,61.103 +556560,19.991,60.04 +556561,14.758,63.124 +556562,16.114,62.114 +556563,17.445,61.092 +556564,18.754,60.058 +556565,13.376,63.055 +556566,14.781,62.074 +556567,16.16,61.08 +556568,17.515,60.076 +556569,11.994,62.984 +556570,13.448,62.033 +556571,14.874,61.069 +556572,16.275,60.096 +556573,10.614,62.913 +556574,12.115,61.992 +556575,13.587,61.059 +556576,15.034,60.116 +556577,9.2343,62.84 +556578,10.783,61.95 +556579,12.301,61.048 +556580,13.791,60.137 +556581,7.8558,62.767 +556582,9.4509,61.908 +556583,11.014,61.038 +556584,12.548,60.159 +556585,6.4782,62.693 +556586,8.1194,61.866 +556587,9.7264,61.028 +556588,11.303,60.181 +556589,5.1018,62.619 +556590,6.7883,61.824 +556591,8.4387,61.018 +556592,10.057,60.204 +556593,3.7264,62.543 +556594,5.4577,61.781 +556595,7.1506,61.009 +556596,8.8095,60.228 +556597,2.3522,62.467 +556598,4.1275,61.738 +556599,5.8621,60.999 +556600,7.5607,60.252 +556601,0.97921,62.391 +556602,2.7977,61.695 +556603,4.5731,60.99 +556604,6.3105,60.277 +556605,359.61,62.313 +556606,1.4684,61.652 +556607,3.2838,60.981 +556608,5.0589,60.303 +556609,358.24,62.235 +556610,0.13953,61.609 +556611,1.994,60.973 +556612,3.8059,60.329 +556613,356.87,62.157 +556614,358.81,61.565 +556615,0.70372,60.964 +556616,2.5514,60.355 +556617,355.5,62.077 +556618,357.48,61.521 +556619,359.41,60.955 +556620,1.2955,60.383 +556621,354.13,61.998 +556622,356.16,61.477 +556623,358.12,60.947 +556624,0.038003,60.41 +556625,352.77,61.917 +556626,354.83,61.433 +556627,356.83,60.939 +556628,358.78,60.438 +556629,351.4,61.837 +556630,353.5,61.388 +556631,355.54,60.931 +556632,357.52,60.467 +556633,350.04,61.755 +556634,352.18,61.344 +556635,354.25,60.923 +556636,356.26,60.495 +556637,348.68,61.674 +556638,350.85,61.299 +556639,352.95,60.915 +556640,354.99,60.525 +556641,347.32,61.592 +556642,349.53,61.254 +556643,351.66,60.908 +556644,353.73,60.554 +556645,345.96,61.509 +556646,348.2,61.209 +556647,350.36,60.9 +556648,352.46,60.584 +556649,344.61,61.427 +556650,346.88,61.164 +556651,349.07,60.892 +556652,351.19,60.614 +556653,343.25,61.343 +556654,345.56,61.119 +556655,347.78,60.885 +556656,349.92,60.644 +556657,341.9,61.26 +556658,344.23,61.073 +556659,346.48,60.878 +556660,348.65,60.675 +556661,340.55,61.176 +556662,342.91,61.028 +556663,345.18,60.87 +556664,347.38,60.705 +556665,339.2,61.093 +556666,341.59,60.983 +556667,343.89,60.863 +556668,346.1,60.736 +556669,337.85,61.008 +556670,340.27,60.937 +556671,342.59,60.856 +556672,344.82,60.767 +556673,336.51,60.924 +556674,338.95,60.891 +556675,341.29,60.848 +556676,343.55,60.798 +556677,335.16,60.84 +556678,337.63,60.846 +556679,339.99,60.841 +556680,342.26,60.829 +556681,333.82,60.755 +556682,336.31,60.8 +556683,338.69,60.834 +556684,340.98,60.86 +556685,332.48,60.671 +556686,334.99,60.754 +556687,337.39,60.827 +556688,339.7,60.891 +556689,331.14,60.586 +556690,333.68,60.708 +556691,336.09,60.82 +556692,338.41,60.922 +556693,329.8,60.502 +556694,332.36,60.663 +556695,334.79,60.812 +556696,337.13,60.953 +556697,328.47,60.417 +556698,331.04,60.617 +556699,333.49,60.805 +556700,335.84,60.983 +556701,327.14,60.333 +556702,329.73,60.571 +556703,332.19,60.798 +556704,334.54,61.014 +556705,325.81,60.248 +556706,328.41,60.525 +556707,330.89,60.79 +556708,333.25,61.045 +556709,324.48,60.164 +556710,327.1,60.48 +556711,329.59,60.783 +556712,331.96,61.075 +556713,323.15,60.08 +556714,325.78,60.434 +556715,328.28,60.775 +556716,330.66,61.105 +556717,321.82,59.996 +556718,324.47,60.388 +556719,326.98,60.767 +556720,329.36,61.135 +556721,320.5,59.912 +556722,323.16,60.343 +556723,325.67,60.76 +556724,328.06,61.164 +556725,319.18,59.828 +556726,321.85,60.297 +556727,324.37,60.752 +556728,326.76,61.194 +556729,317.86,59.745 +556730,320.54,60.252 +556731,323.06,60.744 +556732,325.46,61.222 +556733,316.54,59.662 +556734,319.23,60.207 +556735,321.76,60.736 +556736,324.15,61.251 +556737,315.23,59.58 +556738,317.92,60.162 +556739,320.45,60.727 +556740,322.84,61.279 +556741,313.92,59.497 +556742,316.61,60.116 +556743,319.14,60.719 +556744,321.54,61.307 +556745,312.61,59.416 +556746,315.3,60.072 +556747,317.83,60.71 +556748,320.22,61.334 +556749,311.3,59.334 +556750,313.99,60.027 +556751,316.52,60.702 +556752,318.91,61.361 +556753,309.99,59.253 +556754,312.69,59.982 +556755,315.21,60.693 +556756,317.6,61.387 +556757,308.69,59.173 +556758,311.38,59.938 +556759,313.9,60.683 +556760,316.28,61.412 +556761,307.38,59.093 +556762,310.08,59.893 +556763,312.59,60.674 +556764,314.96,61.437 +556765,306.08,59.013 +556766,308.77,59.849 +556767,311.28,60.665 +556768,313.64,61.462 +556769,304.78,58.935 +556770,307.47,59.805 +556771,309.97,60.655 +556772,312.32,61.486 +556773,303.49,58.856 +556774,306.16,59.761 +556775,308.66,60.645 +556776,311,61.509 +556777,302.19,58.779 +556778,304.86,59.718 +556779,307.34,60.635 +556780,309.68,61.531 +556781,300.9,58.702 +556782,303.56,59.674 +556783,306.03,60.624 +556784,308.35,61.553 +556785,299.61,58.626 +556786,302.26,59.631 +556787,304.72,60.614 +556788,307.02,61.574 +556789,298.32,58.55 +556790,300.96,59.588 +556791,303.4,60.603 +556792,305.69,61.595 +556793,297.04,58.475 +556794,299.66,59.546 +556795,302.09,60.591 +556796,304.36,61.614 +556797,295.76,58.401 +556798,298.36,59.503 +556799,300.77,60.58 +556800,303.03,61.633 +556801,294.47,58.328 +556802,297.06,59.461 +556803,299.46,60.568 +556804,301.69,61.651 +556805,293.19,58.256 +556806,295.76,59.419 +556807,298.14,60.556 +556808,300.35,61.668 +556809,291.92,58.185 +556810,294.46,59.378 +556811,296.82,60.543 +556812,299.02,61.684 +556813,290.64,58.114 +556814,293.17,59.336 +556815,295.5,60.531 +556816,297.68,61.699 +556817,289.37,58.044 +556818,291.87,59.295 +556819,294.18,60.518 +556820,296.33,61.714 +556821,288.1,57.976 +556822,290.58,59.254 +556823,292.86,60.504 +556824,294.99,61.727 +556825,286.83,57.908 +556826,289.28,59.214 +556827,291.55,60.491 +556828,293.65,61.74 +556829,285.56,57.841 +556830,287.99,59.174 +556831,290.22,60.477 +556832,292.3,61.751 +556833,284.29,57.775 +556834,286.69,59.134 +556835,288.9,60.462 +556836,290.95,61.761 +556837,283.03,57.71 +556838,285.4,59.095 +556839,287.58,60.447 +556840,289.6,61.771 +556841,281.77,57.647 +556842,284.11,59.055 +556843,286.26,60.432 +556844,288.25,61.779 +556845,280.51,57.584 +556846,282.82,59.017 +556847,284.94,60.417 +556848,286.9,61.787 +556849,279.25,57.523 +556850,281.53,58.978 +556851,283.62,60.401 +556852,285.55,61.793 +556853,278,57.462 +556854,280.24,58.94 +556855,282.29,60.385 +556856,284.19,61.798 +556857,276.74,57.403 +556858,278.95,58.902 +556859,280.97,60.368 +556860,282.84,61.802 +556861,275.49,57.345 +556862,277.66,58.865 +556863,279.65,60.351 +556864,281.48,61.805 +556865,274.24,57.288 +556866,276.37,58.828 +556867,278.32,60.334 +556868,280.12,61.806 +556869,272.99,57.232 +556870,275.08,58.791 +556871,277,60.316 +556872,278.76,61.807 +556873,271.74,57.178 +556874,273.79,58.755 +556875,275.67,60.298 +556876,277.4,61.806 +556877,270.5,57.124 +556878,272.51,58.719 +556879,274.34,60.279 +556880,276.04,61.804 +556881,269.25,57.072 +556882,271.22,58.684 +556883,273.02,60.26 +556884,274.67,61.801 +556885,268.01,57.021 +556886,269.93,58.649 +556887,271.69,60.24 +556888,273.31,61.797 +556889,266.77,56.972 +556890,268.65,58.614 +556891,270.36,60.22 +556892,271.94,61.792 +556893,265.53,56.923 +556894,267.36,58.58 +556895,269.04,60.2 +556896,270.57,61.785 +556897,264.29,56.876 +556898,266.08,58.546 +556899,267.71,60.179 +556900,269.2,61.777 +556901,263.05,56.831 +556902,264.8,58.513 +556903,266.38,60.158 +556904,267.83,61.767 +556905,261.82,56.786 +556906,263.51,58.48 +556907,265.05,60.136 +556908,266.46,61.757 +556909,260.59,56.743 +556910,262.23,58.448 +556911,263.72,60.114 +556912,265.09,61.745 +556913,259.35,56.702 +556914,260.95,58.416 +556915,262.39,60.092 +556916,263.72,61.732 +556917,258.12,56.662 +556918,259.66,58.384 +556919,261.06,60.069 +556920,262.34,61.717 +556921,256.89,56.623 +556922,258.38,58.353 +556923,259.73,60.045 +556924,260.97,61.701 +556925,255.66,56.585 +556926,257.1,58.322 +556927,258.4,60.021 +556928,259.59,61.684 +556929,254.44,56.549 +556930,255.82,58.292 +556931,257.07,59.997 +556932,258.21,61.666 +556933,253.21,56.514 +556934,254.54,58.262 +556935,255.74,59.972 +556936,256.84,61.646 +556937,251.98,56.48 +556938,253.26,58.232 +556939,254.41,59.946 +556940,255.46,61.625 +556941,250.76,56.448 +556942,251.98,58.203 +556943,253.08,59.921 +556944,254.08,61.602 +556945,249.53,56.418 +556946,250.7,58.175 +556947,251.75,59.894 +556948,252.7,61.578 +556949,248.31,56.389 +556950,249.42,58.147 +556951,250.42,59.868 +556952,251.32,61.553 +556953,247.09,56.361 +556954,248.14,58.119 +556955,249.09,59.84 +556956,249.94,61.526 +556957,245.87,56.334 +556958,246.86,58.092 +556959,247.75,59.813 +556960,248.55,61.498 +556961,244.65,56.309 +556962,245.59,58.065 +556963,246.42,59.784 +556964,247.17,61.469 +556965,243.43,56.286 +556966,244.31,58.039 +556967,245.09,59.756 +556968,245.79,61.438 +556969,242.21,56.263 +556970,243.03,58.013 +556971,243.76,59.727 +556972,244.4,61.406 +556973,240.99,56.242 +556974,241.75,57.987 +556975,242.42,59.697 +556976,243.02,61.372 +556977,239.77,56.223 +556978,240.47,57.962 +556979,241.09,59.667 +556980,241.63,61.337 +556981,238.56,56.205 +556982,239.2,57.938 +556983,239.76,59.636 +556984,240.25,61.301 +556985,237.34,56.188 +556986,237.92,57.914 +556987,238.42,59.605 +556988,238.86,61.264 +556989,236.12,56.173 +556990,236.64,57.89 +556991,237.09,59.574 +556992,237.47,61.225 +556993,234.91,56.159 +556994,235.37,57.867 +556995,235.76,59.542 +556996,236.09,61.184 +556997,233.69,56.147 +556998,234.09,57.844 +556999,234.42,59.51 +557000,234.7,61.143 +557001,232.48,56.135 +557002,232.81,57.822 +557003,233.09,59.477 +557004,233.31,61.1 +557005,231.26,56.126 +557006,231.54,57.8 +557007,231.76,59.443 +557008,231.92,61.055 +557009,230.04,56.117 +557010,230.26,57.779 +557011,230.42,59.41 +557012,230.53,61.01 +557013,228.83,56.11 +557014,228.98,57.758 +557015,229.09,59.375 +557016,229.15,60.963 +557017,227.61,56.104 +557018,227.71,57.737 +557019,227.76,59.341 +557020,227.76,60.914 +557021,226.4,56.1 +557022,226.43,57.717 +557023,226.42,59.306 +557024,226.37,60.865 +557025,225.18,56.097 +557026,225.16,57.698 +557027,225.09,59.27 +557028,224.98,60.814 +557029,223.97,56.095 +557030,223.88,57.678 +557031,223.75,59.234 +557032,223.59,60.762 +557033,222.75,56.094 +557034,222.6,57.659 +557035,222.42,59.198 +557036,222.2,60.708 +557037,221.54,56.095 +557038,221.33,57.641 +557039,221.09,59.161 +557040,220.81,60.653 +557041,220.32,56.097 +557042,220.05,57.623 +557043,219.75,59.123 +557044,219.43,60.597 +557045,219.1,56.1 +557046,218.78,57.605 +557047,218.42,59.086 +557048,218.04,60.54 +557049,217.89,56.104 +557050,217.5,57.588 +557051,217.09,59.047 +557052,216.65,60.482 +557053,216.67,56.11 +557054,216.22,57.571 +557055,215.75,59.009 +557056,215.26,60.422 +557057,215.45,56.117 +557058,214.95,57.555 +557059,214.42,58.97 +557060,213.87,60.361 +557061,214.23,56.124 +557062,213.67,57.539 +557063,213.09,58.93 +557064,212.48,60.299 +557065,213.02,56.133 +557066,212.4,57.523 +557067,211.76,58.891 +557068,211.1,60.236 +557069,211.8,56.144 +557070,211.12,57.508 +557071,210.42,58.85 +557072,209.71,60.171 +557073,210.58,56.155 +557074,209.84,57.493 +557075,209.09,58.81 +557076,208.32,60.105 +557077,209.36,56.167 +557078,208.57,57.478 +557079,207.76,58.769 +557080,206.94,60.039 +557081,208.13,56.181 +557082,207.29,57.464 +557083,206.43,58.727 +557084,205.55,59.971 +557085,206.91,56.195 +557086,206.01,57.45 +557087,205.1,58.686 +557088,204.16,59.902 +557089,205.69,56.211 +557090,204.73,57.436 +557091,203.76,58.644 +557092,202.78,59.832 +557093,204.47,56.227 +557094,203.46,57.423 +557095,202.43,58.601 +557096,201.39,59.761 +557097,203.24,56.244 +557098,202.18,57.41 +557099,201.1,58.558 +557100,200.01,59.689 +557101,202.02,56.263 +557102,200.9,57.397 +557103,199.77,58.515 +557104,198.63,59.616 +557105,200.79,56.282 +557106,199.62,57.385 +557107,198.44,58.472 +557108,197.25,59.542 +557109,199.56,56.302 +557110,198.34,57.373 +557111,197.11,58.428 +557112,195.86,59.467 +557113,198.33,56.323 +557114,197.06,57.361 +557115,195.78,58.384 +557116,194.48,59.391 +557117,197.1,56.345 +557118,195.78,57.349 +557119,194.45,58.339 +557120,193.1,59.314 +557121,195.87,56.368 +557122,194.51,57.338 +557123,193.12,58.295 +557124,191.72,59.236 +557125,194.64,56.391 +557126,193.23,57.327 +557127,191.79,58.25 +557128,190.34,59.158 +557129,193.41,56.416 +557130,191.95,57.316 +557131,190.47,58.205 +557132,188.97,59.078 +557133,192.17,56.441 +557134,190.66,57.306 +557135,189.14,58.159 +557136,187.59,58.998 +557137,190.94,56.466 +557138,189.38,57.296 +557139,187.81,58.113 +557140,186.21,58.917 +557141,189.7,56.493 +557142,188.1,57.286 +557143,186.48,58.067 +557144,184.84,58.835 +557145,188.46,56.52 +557146,186.82,57.276 +557147,185.16,58.021 +557148,183.47,58.753 +557149,187.22,56.547 +557150,185.54,57.266 +557151,183.83,57.974 +557152,182.09,58.669 +557153,185.98,56.576 +557154,184.26,57.257 +557155,182.51,57.927 +557156,180.72,58.585 +557157,184.74,56.604 +557158,182.97,57.248 +557159,181.18,57.88 +557160,179.35,58.501 +557161,183.49,56.634 +557162,181.69,57.239 +557163,179.86,57.833 +557164,177.98,58.415 +557165,182.25,56.664 +557166,180.41,57.23 +557167,178.53,57.786 +557168,176.62,58.33 +557169,181,56.694 +557170,179.12,57.221 +557171,177.21,57.738 +557172,175.25,58.243 +557173,179.75,56.725 +557174,177.84,57.212 +557175,175.88,57.69 +557176,173.88,58.156 +557177,178.5,56.756 +557178,176.55,57.204 +557179,174.56,57.642 +557180,172.52,58.069 +557181,177.25,56.787 +557182,175.27,57.196 +557183,173.24,57.594 +557184,171.16,57.981 +557185,175.99,56.819 +557186,173.98,57.188 +557187,171.92,57.546 +557188,169.8,57.892 +557189,174.74,56.851 +557190,172.7,57.179 +557191,170.6,57.498 +557192,168.44,57.804 +557193,173.48,56.884 +557194,171.41,57.171 +557195,169.28,57.449 +557196,167.08,57.714 +557197,172.22,56.916 +557198,170.12,57.164 +557199,167.96,57.4 +557200,165.72,57.625 +557201,170.96,56.949 +557202,168.83,57.156 +557203,166.64,57.352 +557204,164.37,57.535 +557205,169.7,56.982 +557206,167.54,57.148 +557207,165.32,57.303 +557208,163.02,57.445 +557209,168.44,57.015 +557210,166.26,57.14 +557211,164,57.254 +557212,161.66,57.354 +557213,167.17,57.049 +557214,164.97,57.133 +557215,162.68,57.205 +557216,160.31,57.264 +557217,165.91,57.082 +557218,163.68,57.125 +557219,161.37,57.156 +557220,158.97,57.173 +557221,164.64,57.116 +557222,162.39,57.117 +557223,160.05,57.107 +557224,157.62,57.082 +557225,163.37,57.149 +557226,161.09,57.11 +557227,158.73,57.058 +557228,156.27,56.991 +557229,162.1,57.183 +557230,159.8,57.102 +557231,157.42,57.008 +557232,154.93,56.899 +557233,160.82,57.216 +557234,158.51,57.094 +557235,156.1,56.959 +557236,153.59,56.808 +557237,159.55,57.249 +557238,157.22,57.087 +557239,154.79,56.91 +557240,152.25,56.717 +557241,158.27,57.283 +557242,155.92,57.079 +557243,153.48,56.861 +557244,150.91,56.626 +557245,156.99,57.316 +557246,154.63,57.071 +557247,152.16,56.812 +557248,149.58,56.534 +557249,155.71,57.349 +557250,153.34,57.063 +557251,150.85,56.763 +557252,148.24,56.443 +557253,154.43,57.381 +557254,152.04,57.056 +557255,149.54,56.713 +557256,146.91,56.352 +557257,153.14,57.414 +557258,150.75,57.048 +557259,148.23,56.664 +557260,145.58,56.261 +557261,151.86,57.446 +557262,149.45,57.04 +557263,146.92,56.615 +557264,144.25,56.171 +557265,150.57,57.478 +557266,148.15,57.031 +557267,145.61,56.566 +557268,142.93,56.08 +557269,149.28,57.51 +557270,146.86,57.023 +557271,144.3,56.518 +557272,141.6,55.99 +557273,147.99,57.541 +557274,145.56,57.015 +557275,143,56.469 +557276,140.28,55.9 +557277,146.69,57.572 +557278,144.26,57.006 +557279,141.69,56.42 +557280,138.96,55.81 +557281,145.4,57.602 +557282,142.96,56.998 +557283,140.38,56.372 +557284,137.64,55.721 +557285,144.1,57.632 +557286,141.66,56.989 +557287,139.08,56.323 +557288,136.33,55.632 +557289,142.8,57.661 +557290,140.36,56.98 +557291,137.77,56.275 +557292,135.01,55.543 +557293,141.5,57.69 +557294,139.06,56.971 +557295,136.47,56.227 +557296,133.7,55.455 +557297,140.2,57.719 +557298,137.76,56.961 +557299,135.17,56.179 +557300,132.39,55.368 +557301,138.89,57.747 +557302,136.45,56.952 +557303,133.86,56.131 +557304,131.09,55.281 +557305,137.58,57.774 +557306,135.15,56.942 +557307,132.56,56.084 +557308,129.78,55.194 +557309,136.28,57.8 +557310,133.85,56.932 +557311,131.26,56.036 +557312,128.48,55.108 +557313,134.97,57.826 +557314,132.54,56.922 +557315,129.96,55.989 +557316,127.18,55.023 +557317,133.65,57.852 +557318,131.24,56.912 +557319,128.66,55.942 +557320,125.88,54.939 +557321,132.34,57.876 +557322,129.94,56.901 +557323,127.36,55.895 +557324,124.58,54.855 +557325,131.02,57.9 +557326,128.63,56.89 +557327,126.06,55.849 +557328,123.29,54.771 +557329,129.71,57.923 +557330,127.32,56.879 +557331,124.77,55.802 +557332,122,54.689 +557333,128.39,57.945 +557334,126.02,56.868 +557335,123.47,55.756 +557336,120.71,54.607 +557337,127.07,57.967 +557338,124.71,56.856 +557339,122.17,55.711 +557340,119.42,54.526 +557341,125.75,57.987 +557342,123.4,56.844 +557343,120.88,55.665 +557344,118.14,54.446 +557345,124.42,58.007 +557346,122.09,56.832 +557347,119.58,55.62 +557348,116.85,54.367 +557349,123.1,58.026 +557350,120.78,56.819 +557351,118.29,55.575 +557352,115.57,54.289 +557353,121.77,58.043 +557354,119.47,56.806 +557355,116.99,55.53 +557356,114.29,54.212 +557357,120.44,58.06 +557358,118.16,56.793 +557359,115.7,55.486 +557360,113.02,54.135 +557361,119.11,58.076 +557362,116.85,56.779 +557363,114.41,55.442 +557364,111.74,54.06 +557365,117.78,58.091 +557366,115.54,56.765 +557367,113.12,55.398 +557368,110.47,53.985 +557369,116.44,58.105 +557370,114.23,56.751 +557371,111.83,55.355 +557372,109.2,53.912 +557373,115.11,58.118 +557374,112.92,56.736 +557375,110.54,55.312 +557376,107.93,53.84 +557377,113.77,58.13 +557378,111.6,56.721 +557379,109.25,55.269 +557380,106.67,53.769 +557381,112.43,58.14 +557382,110.29,56.706 +557383,107.96,55.227 +557384,105.4,53.699 +557385,111.09,58.15 +557386,108.98,56.69 +557387,106.67,55.185 +557388,104.14,53.63 +557389,109.75,58.158 +557390,107.66,56.674 +557391,105.39,55.144 +557392,102.88,53.562 +557393,108.41,58.166 +557394,106.35,56.658 +557395,104.1,55.103 +557396,101.62,53.496 +557397,107.06,58.172 +557398,105.03,56.641 +557399,102.81,55.062 +557400,100.37,53.43 +557401,105.72,58.177 +557402,103.72,56.623 +557403,101.53,55.022 +557404,99.115,53.366 +557405,104.37,58.18 +557406,102.4,56.606 +557407,100.25,54.982 +557408,97.864,53.303 +557409,103.02,58.183 +557410,101.08,56.587 +557411,98.961,54.942 +557412,96.614,53.242 +557413,101.67,58.184 +557414,99.765,56.569 +557415,97.678,54.903 +557416,95.366,53.182 +557417,100.32,58.184 +557418,98.448,56.55 +557419,96.396,54.864 +557420,94.121,53.123 +557421,98.964,58.183 +557422,97.129,56.53 +557423,95.114,54.826 +557424,92.877,53.065 +557425,97.609,58.18 +557426,95.811,56.51 +557427,93.832,54.788 +557428,91.635,53.009 +557429,96.254,58.177 +557430,94.491,56.49 +557431,92.552,54.751 +557432,90.395,52.954 +557433,94.897,58.171 +557434,93.172,56.469 +557435,91.271,54.714 +557436,89.157,52.901 +557437,93.539,58.165 +557438,91.852,56.448 +557439,89.992,54.678 +557440,87.92,52.849 +557441,92.179,58.157 +557442,90.532,56.426 +557443,88.713,54.642 +557444,86.685,52.798 +557445,90.819,58.148 +557446,89.211,56.404 +557447,87.434,54.606 +557448,85.452,52.749 +557449,89.457,58.137 +557450,87.89,56.381 +557451,86.156,54.571 +557452,84.22,52.702 +557453,88.094,58.126 +557454,86.568,56.358 +557455,84.878,54.536 +557456,82.99,52.655 +557457,86.73,58.112 +557458,85.246,56.334 +557459,83.601,54.502 +557460,81.762,52.611 +557461,85.365,58.098 +557462,83.924,56.31 +557463,82.325,54.469 +557464,80.535,52.567 +557465,83.999,58.081 +557466,82.601,56.286 +557467,81.049,54.435 +557468,79.309,52.526 +557469,82.632,58.064 +557470,81.278,56.261 +557471,79.773,54.403 +557472,78.085,52.486 +557473,81.264,58.045 +557474,79.955,56.235 +557475,78.498,54.371 +557476,76.863,52.447 +557477,79.895,58.025 +557478,78.632,56.209 +557479,77.224,54.339 +557480,75.641,52.41 +557481,78.525,58.003 +557482,77.308,56.182 +557483,75.95,54.308 +557484,74.421,52.374 +557485,77.154,57.98 +557486,75.984,56.155 +557487,74.676,54.277 +557488,73.202,52.34 +557489,75.782,57.955 +557490,74.659,56.128 +557491,73.402,54.247 +557492,71.985,52.307 +557493,74.41,57.929 +557494,73.335,56.1 +557495,72.129,54.217 +557496,70.768,52.276 +557497,73.037,57.901 +557498,72.01,56.071 +557499,70.857,54.188 +557500,69.552,52.247 +557501,71.662,57.872 +557502,70.685,56.042 +557503,69.585,54.159 +557504,68.338,52.219 +557505,70.288,57.842 +557506,69.359,56.013 +557507,68.313,54.131 +557508,67.125,52.192 +557509,68.912,57.81 +557510,68.034,55.983 +557511,67.041,54.103 +557512,65.912,52.167 +557513,67.536,57.776 +557514,66.708,55.952 +557515,65.77,54.076 +557516,64.7,52.144 +557517,66.159,57.741 +557518,65.382,55.921 +557519,64.499,54.049 +557520,63.489,52.122 +557521,64.781,57.705 +557522,64.056,55.89 +557523,63.228,54.023 +557524,62.279,52.102 +557525,63.403,57.667 +557526,62.73,55.857 +557527,61.958,53.997 +557528,61.07,52.084 +557529,62.025,57.628 +557530,61.404,55.825 +557531,60.688,53.972 +557532,59.861,52.066 +557533,60.646,57.587 +557534,60.077,55.792 +557535,59.418,53.947 +557536,58.653,52.051 +557537,59.266,57.545 +557538,58.75,55.758 +557539,58.149,53.923 +557540,57.446,52.037 +557541,57.886,57.501 +557542,57.424,55.724 +557543,56.879,53.9 +557544,56.239,52.024 +557545,56.506,57.456 +557546,56.097,55.69 +557547,55.61,53.876 +557548,55.032,52.013 +557549,55.125,57.41 +557550,54.77,55.655 +557551,54.341,53.854 +557552,53.826,52.003 +557553,53.744,57.362 +557554,53.443,55.619 +557555,53.072,53.831 +557556,52.62,51.995 +557557,52.363,57.312 +557558,52.116,55.583 +557559,51.803,53.809 +557560,51.414,51.989 +557561,50.981,57.262 +557562,50.789,55.547 +557563,50.535,53.788 +557564,50.209,51.984 +557565,49.599,57.209 +557566,49.462,55.51 +557567,49.266,53.767 +557568,49.004,51.98 +557569,48.217,57.156 +557570,48.135,55.472 +557571,47.998,53.747 +557572,47.798,51.978 +557573,46.835,57.101 +557574,46.808,55.435 +557575,46.73,53.727 +557576,46.593,51.977 +557577,45.452,57.045 +557578,45.481,55.396 +557579,45.462,53.708 +557580,45.388,51.978 +557581,44.07,56.987 +557582,44.154,55.357 +557583,44.194,53.689 +557584,44.183,51.98 +557585,42.688,56.928 +557586,42.827,55.318 +557587,42.925,53.67 +557588,42.978,51.983 +557589,41.305,56.867 +557590,41.5,55.278 +557591,41.657,53.652 +557592,41.772,51.988 +557593,39.923,56.805 +557594,40.173,55.238 +557595,40.389,53.635 +557596,40.567,51.994 +557597,38.54,56.742 +557598,38.846,55.198 +557599,39.121,53.617 +557600,39.361,52.001 +557601,37.158,56.678 +557602,37.52,55.156 +557603,37.853,53.601 +557604,38.155,52.01 +557605,35.776,56.612 +557606,36.193,55.115 +557607,36.585,53.584 +557608,36.948,52.02 +557609,34.394,56.545 +557610,34.867,55.073 +557611,35.317,53.568 +557612,35.741,52.031 +557613,33.012,56.477 +557614,33.541,55.031 +557615,34.049,53.553 +557616,34.534,52.044 +557617,31.631,56.408 +557618,32.215,54.988 +557619,32.78,53.538 +557620,33.326,52.057 +557621,30.25,56.337 +557622,30.889,54.945 +557623,31.512,53.523 +557624,32.117,52.072 +557625,28.869,56.265 +557626,29.563,54.901 +557627,30.243,53.509 +557628,30.908,52.088 +557629,27.488,56.192 +557630,28.238,54.857 +557631,28.975,53.495 +557632,29.698,52.106 +557633,26.108,56.118 +557634,26.913,54.813 +557635,27.706,53.482 +557636,28.487,52.124 +557637,24.729,56.042 +557638,25.588,54.768 +557639,26.437,53.468 +557640,27.276,52.144 +557641,23.349,55.966 +557642,24.263,54.723 +557643,25.168,53.456 +557644,26.064,52.164 +557645,21.971,55.888 +557646,22.939,54.678 +557647,23.898,53.443 +557648,24.85,52.186 +557649,20.593,55.809 +557650,21.614,54.632 +557651,22.629,53.431 +557652,23.636,52.208 +557653,19.215,55.73 +557654,20.291,54.586 +557655,21.359,53.419 +557656,22.422,52.232 +557657,17.838,55.649 +557658,18.967,54.539 +557659,20.089,53.408 +557660,21.206,52.257 +557661,16.462,55.567 +557662,17.644,54.492 +557663,18.819,53.397 +557664,19.989,52.282 +557665,15.087,55.484 +557666,16.321,54.445 +557667,17.548,53.386 +557668,18.771,52.309 +557669,13.712,55.4 +557670,14.998,54.397 +557671,16.278,53.376 +557672,17.551,52.336 +557673,12.338,55.316 +557674,13.676,54.35 +557675,15.007,53.365 +557676,16.331,52.364 +557677,10.965,55.23 +557678,12.354,54.302 +557679,13.735,53.355 +557680,15.11,52.393 +557681,9.5929,55.144 +557682,11.033,54.253 +557683,12.464,53.346 +557684,13.887,52.423 +557685,8.2216,55.056 +557686,9.7115,54.205 +557687,11.192,53.336 +557688,12.663,52.453 +557689,6.8513,54.968 +557690,8.3909,54.156 +557691,9.9192,53.327 +557692,11.438,52.484 +557693,5.4819,54.879 +557694,7.0707,54.107 +557695,8.6465,53.318 +557696,10.211,52.516 +557697,4.1135,54.789 +557698,5.7509,54.057 +557699,7.3735,53.31 +557700,8.9832,52.549 +557701,2.7462,54.699 +557702,4.4315,54.007 +557703,6.1001,53.301 +557704,7.7539,52.582 +557705,1.38,54.608 +557706,3.1127,53.958 +557707,4.8263,53.293 +557708,6.5231,52.616 +557709,0.014932,54.516 +557710,1.7943,53.908 +557711,3.5521,53.285 +557712,5.2908,52.65 +557713,358.65,54.423 +557714,0.47634,53.857 +557715,2.2775,53.277 +557716,4.0571,52.685 +557717,357.29,54.33 +557718,359.16,53.807 +557719,1.0025,53.27 +557720,2.8219,52.721 +557721,355.93,54.237 +557722,357.84,53.756 +557723,359.73,53.262 +557724,1.5851,52.756 +557725,354.57,54.142 +557726,356.53,53.705 +557727,358.45,53.255 +557728,0.34681,52.793 +557729,353.21,54.047 +557730,355.21,53.654 +557731,357.17,53.248 +557732,359.11,52.829 +557733,351.85,53.952 +557734,353.89,53.603 +557735,355.9,53.241 +557736,357.87,52.866 +557737,350.49,53.856 +557738,352.58,53.552 +557739,354.62,53.234 +557740,356.62,52.904 +557741,349.14,53.76 +557742,351.27,53.5 +557743,353.34,53.227 +557744,355.38,52.941 +557745,347.79,53.664 +557746,349.95,53.449 +557747,352.06,53.22 +557748,354.13,52.979 +557749,346.43,53.567 +557750,348.64,53.397 +557751,350.79,53.213 +557752,352.88,53.017 +557753,345.08,53.47 +557754,347.33,53.346 +557755,349.51,53.207 +557756,351.63,53.055 +557757,343.74,53.372 +557758,346.01,53.294 +557759,348.23,53.2 +557760,350.38,53.094 +557761,342.39,53.274 +557762,344.7,53.242 +557763,346.95,53.194 +557764,349.13,53.132 +557765,341.04,53.176 +557766,343.39,53.19 +557767,345.67,53.188 +557768,347.87,53.171 +557769,339.7,53.078 +557770,342.08,53.138 +557771,344.39,53.181 +557772,346.62,53.21 +557773,338.36,52.98 +557774,340.77,53.086 +557775,343.1,53.175 +557776,345.36,53.248 +557777,337.02,52.882 +557778,339.46,53.034 +557779,341.82,53.168 +557780,344.1,53.287 +557781,335.68,52.783 +557782,338.16,52.982 +557783,340.54,53.162 +557784,342.83,53.325 +557785,334.34,52.685 +557786,336.85,52.93 +557787,339.25,53.156 +557788,341.57,53.364 +557789,333.01,52.586 +557790,335.54,52.878 +557791,337.97,53.149 +557792,340.3,53.402 +557793,331.67,52.488 +557794,334.24,52.826 +557795,336.69,53.143 +557796,339.04,53.44 +557797,330.34,52.39 +557798,332.93,52.775 +557799,335.4,53.136 +557800,337.77,53.478 +557801,329.01,52.292 +557802,331.63,52.723 +557803,334.12,53.13 +557804,336.5,53.516 +557805,327.69,52.194 +557806,330.32,52.671 +557807,332.83,53.123 +557808,335.22,53.553 +557809,326.36,52.096 +557810,329.02,52.619 +557811,331.54,53.116 +557812,333.95,53.591 +557813,325.04,51.998 +557814,327.72,52.568 +557815,330.26,53.11 +557816,332.67,53.627 +557817,323.72,51.901 +557818,326.42,52.516 +557819,328.97,53.103 +557820,331.39,53.664 +557821,322.4,51.804 +557822,325.11,52.465 +557823,327.68,53.096 +557824,330.11,53.7 +557825,321.08,51.707 +557826,323.81,52.414 +557827,326.39,53.088 +557828,328.83,53.736 +557829,319.76,51.611 +557830,322.52,52.363 +557831,325.1,53.081 +557832,327.54,53.771 +557833,318.45,51.515 +557834,321.22,52.312 +557835,323.81,53.074 +557836,326.26,53.805 +557837,317.14,51.42 +557838,319.92,52.261 +557839,322.52,53.066 +557840,324.97,53.839 +557841,315.83,51.325 +557842,318.62,52.21 +557843,321.23,53.058 +557844,323.68,53.873 +557845,314.52,51.231 +557846,317.32,52.16 +557847,319.94,53.05 +557848,322.39,53.906 +557849,313.22,51.137 +557850,316.03,52.11 +557851,318.64,53.042 +557852,321.1,53.938 +557853,311.92,51.044 +557854,314.73,52.06 +557855,317.35,53.033 +557856,319.8,53.97 +557857,310.62,50.951 +557858,313.44,52.01 +557859,316.06,53.025 +557860,318.5,54.001 +557861,309.32,50.86 +557862,312.15,51.96 +557863,314.76,53.016 +557864,317.2,54.031 +557865,308.02,50.769 +557866,310.85,51.911 +557867,313.47,53.007 +557868,315.9,54.061 +557869,306.73,50.678 +557870,309.56,51.862 +557871,312.17,52.997 +557872,314.6,54.089 +557873,305.44,50.589 +557874,308.27,51.813 +557875,310.88,52.988 +557876,313.3,54.117 +557877,304.15,50.5 +557878,306.98,51.765 +557879,309.58,52.978 +557880,311.99,54.144 +557881,302.86,50.412 +557882,305.69,51.717 +557883,308.28,52.967 +557884,310.68,54.17 +557885,301.58,50.326 +557886,304.4,51.669 +557887,306.98,52.957 +557888,309.37,54.196 +557889,300.3,50.24 +557890,303.11,51.622 +557891,305.69,52.946 +557892,308.06,54.22 +557893,299.02,50.155 +557894,301.82,51.574 +557895,304.39,52.935 +557896,306.75,54.243 +557897,297.74,50.071 +557898,300.54,51.527 +557899,303.09,52.923 +557900,305.43,54.266 +557901,296.47,49.988 +557902,299.25,51.481 +557903,301.79,52.912 +557904,304.12,54.287 +557905,295.19,49.906 +557906,297.97,51.435 +557907,300.49,52.899 +557908,302.8,54.308 +557909,293.92,49.825 +557910,296.68,51.389 +557911,299.18,52.887 +557912,301.48,54.327 +557913,292.65,49.746 +557914,295.4,51.344 +557915,297.88,52.874 +557916,300.16,54.345 +557917,291.39,49.667 +557918,294.12,51.299 +557919,296.58,52.861 +557920,298.83,54.363 +557921,290.12,49.59 +557922,292.83,51.254 +557923,295.28,52.847 +557924,297.51,54.379 +557925,288.86,49.514 +557926,291.55,51.21 +557927,293.97,52.833 +557928,296.18,54.394 +557929,287.6,49.439 +557930,290.27,51.166 +557931,292.67,52.819 +557932,294.86,54.407 +557933,286.35,49.366 +557934,288.99,51.123 +557935,291.37,52.804 +557936,293.53,54.42 +557937,285.09,49.294 +557938,287.71,51.08 +557939,290.06,52.789 +557940,292.2,54.431 +557941,283.84,49.223 +557942,286.43,51.037 +557943,288.76,52.773 +557944,290.86,54.441 +557945,282.59,49.153 +557946,285.15,50.995 +557947,287.45,52.757 +557948,289.53,54.45 +557949,281.34,49.085 +557950,283.88,50.953 +557951,286.14,52.741 +557952,288.19,54.458 +557953,280.09,49.019 +557954,282.6,50.912 +557955,284.84,52.724 +557956,286.86,54.464 +557957,278.85,48.954 +557958,281.32,50.872 +557959,283.53,52.707 +557960,285.52,54.469 +557961,277.61,48.89 +557962,280.05,50.831 +557963,282.22,52.689 +557964,284.18,54.473 +557965,276.37,48.828 +557966,278.78,50.792 +557967,280.91,52.671 +557968,282.84,54.475 +557969,275.13,48.767 +557970,277.5,50.752 +557971,279.6,52.652 +557972,281.5,54.476 +557973,273.89,48.708 +557974,276.23,50.714 +557975,278.3,52.633 +557976,280.15,54.476 +557977,272.66,48.65 +557978,274.96,50.676 +557979,276.99,52.613 +557980,278.81,54.474 +557981,271.43,48.594 +557982,273.68,50.638 +557983,275.68,52.593 +557984,277.46,54.471 +557985,270.2,48.54 +557986,272.41,50.601 +557987,274.37,52.572 +557988,276.11,54.466 +557989,268.97,48.487 +557990,271.14,50.564 +557991,273.05,52.551 +557992,274.76,54.46 +557993,267.74,48.436 +557994,269.87,50.528 +557995,271.74,52.53 +557996,273.41,54.452 +557997,266.52,48.386 +557998,268.6,50.492 +557999,270.43,52.508 +558000,272.06,54.443 +558001,265.3,48.338 +558002,267.33,50.457 +558003,269.12,52.485 +558004,270.71,54.433 +558005,264.08,48.292 +558006,266.06,50.423 +558007,267.81,52.462 +558008,269.36,54.421 +558009,262.86,48.248 +558010,264.8,50.389 +558011,266.5,52.438 +558012,268,54.407 +558013,261.64,48.205 +558014,263.53,50.355 +558015,265.18,52.414 +558016,266.65,54.392 +558017,260.42,48.164 +558018,262.26,50.322 +558019,263.87,52.39 +558020,265.29,54.376 +558021,259.21,48.124 +558022,261,50.29 +558023,262.56,52.364 +558024,263.93,54.358 +558025,257.99,48.086 +558026,259.73,50.258 +558027,261.24,52.339 +558028,262.58,54.338 +558029,256.78,48.05 +558030,258.46,50.227 +558031,259.93,52.313 +558032,261.22,54.317 +558033,255.57,48.016 +558034,257.2,50.197 +558035,258.61,52.286 +558036,259.86,54.294 +558037,254.36,47.984 +558038,255.93,50.167 +558039,257.3,52.259 +558040,258.5,54.27 +558041,253.16,47.953 +558042,254.67,50.137 +558043,255.98,52.231 +558044,257.13,54.244 +558045,251.95,47.924 +558046,253.41,50.108 +558047,254.67,52.202 +558048,255.77,54.217 +558049,250.75,47.897 +558050,252.14,50.08 +558051,253.35,52.174 +558052,254.41,54.188 +558053,249.54,47.871 +558054,250.88,50.052 +558055,252.04,52.144 +558056,253.04,54.158 +558057,248.34,47.847 +558058,249.62,50.025 +558059,250.72,52.114 +558060,251.68,54.126 +558061,247.14,47.825 +558062,248.36,49.998 +558063,249.4,52.084 +558064,250.31,54.092 +558065,245.94,47.805 +558066,247.1,49.972 +558067,248.09,52.053 +558068,248.95,54.057 +558069,244.74,47.786 +558070,245.83,49.947 +558071,246.77,52.022 +558072,247.58,54.02 +558073,243.54,47.77 +558074,244.57,49.922 +558075,245.45,51.99 +558076,246.21,53.982 +558077,242.34,47.754 +558078,243.31,49.897 +558079,244.14,51.957 +558080,244.84,53.942 +558081,241.14,47.741 +558082,242.05,49.874 +558083,242.82,51.924 +558084,243.47,53.901 +558085,239.94,47.73 +558086,240.79,49.85 +558087,241.5,51.89 +558088,242.11,53.858 +558089,238.75,47.72 +558090,239.53,49.828 +558091,240.19,51.856 +558092,240.74,53.814 +558093,237.55,47.711 +558094,238.27,49.806 +558095,238.87,51.822 +558096,239.37,53.767 +558097,236.36,47.705 +558098,237.01,49.784 +558099,237.55,51.787 +558100,238,53.72 +558101,235.16,47.7 +558102,235.75,49.763 +558103,236.24,51.751 +558104,236.63,53.671 +558105,233.97,47.697 +558106,234.5,49.743 +558107,234.92,51.715 +558108,235.25,53.62 +558109,232.77,47.695 +558110,233.24,49.723 +558111,233.6,51.678 +558112,233.88,53.568 +558113,231.58,47.696 +558114,231.98,49.703 +558115,232.28,51.641 +558116,232.51,53.514 +558117,230.39,47.697 +558118,230.72,49.685 +558119,230.97,51.603 +558120,231.14,53.459 +558121,229.19,47.701 +558122,229.46,49.666 +558123,229.65,51.565 +558124,229.77,53.402 +558125,228,47.706 +558126,228.2,49.649 +558127,228.33,51.526 +558128,228.4,53.344 +558129,226.81,47.712 +558130,226.95,49.631 +558131,227.01,51.487 +558132,227.02,53.284 +558133,225.61,47.72 +558134,225.69,49.615 +558135,225.7,51.447 +558136,225.65,53.223 +558137,224.42,47.73 +558138,224.43,49.598 +558139,224.38,51.407 +558140,224.28,53.161 +558141,223.23,47.741 +558142,223.17,49.583 +558143,223.06,51.367 +558144,222.91,53.096 +558145,222.03,47.754 +558146,221.91,49.568 +558147,221.74,51.326 +558148,221.54,53.031 +558149,220.84,47.768 +558150,220.66,49.553 +558151,220.43,51.284 +558152,220.16,52.964 +558153,219.65,47.783 +558154,219.4,49.539 +558155,219.11,51.242 +558156,218.79,52.896 +558157,218.45,47.8 +558158,218.14,49.525 +558159,217.79,51.2 +558160,217.42,52.826 +558161,217.26,47.818 +558162,216.88,49.512 +558163,216.48,51.157 +558164,216.05,52.755 +558165,216.06,47.838 +558166,215.62,49.499 +558167,215.16,51.113 +558168,214.68,52.683 +558169,214.86,47.859 +558170,214.37,49.487 +558171,213.85,51.07 +558172,213.31,52.609 +558173,213.67,47.882 +558174,213.11,49.475 +558175,212.53,51.025 +558176,211.94,52.534 +558177,212.47,47.905 +558178,211.85,49.464 +558179,211.21,50.981 +558180,210.57,52.458 +558181,211.27,47.93 +558182,210.59,49.453 +558183,209.9,50.936 +558184,209.2,52.38 +558185,210.07,47.956 +558186,209.33,49.442 +558187,208.58,50.89 +558188,207.83,52.302 +558189,208.87,47.984 +558190,208.07,49.432 +558191,207.27,50.844 +558192,206.46,52.221 +558193,207.67,48.012 +558194,206.81,49.422 +558195,205.95,50.798 +558196,205.09,52.14 +558197,206.47,48.042 +558198,205.56,49.413 +558199,204.64,50.752 +558200,203.72,52.058 +558201,205.27,48.073 +558202,204.3,49.404 +558203,203.32,50.705 +558204,202.35,51.974 +558205,204.07,48.105 +558206,203.04,49.396 +558207,202.01,50.657 +558208,200.98,51.89 +558209,202.86,48.138 +558210,201.78,49.388 +558211,200.7,50.61 +558212,199.62,51.804 +558213,201.66,48.172 +558214,200.52,49.38 +558215,199.38,50.562 +558216,198.25,51.717 +558217,200.45,48.206 +558218,199.26,49.373 +558219,198.07,50.514 +558220,196.89,51.629 +558221,199.24,48.242 +558222,198,49.365 +558223,196.76,50.465 +558224,195.52,51.54 +558225,198.03,48.279 +558226,196.74,49.359 +558227,195.45,50.416 +558228,194.16,51.45 +558229,196.82,48.317 +558230,195.48,49.352 +558231,194.13,50.367 +558232,192.8,51.359 +558233,195.61,48.355 +558234,194.21,49.346 +558235,192.82,50.317 +558236,191.44,51.267 +558237,194.4,48.394 +558238,192.95,49.34 +558239,191.51,50.267 +558240,190.08,51.174 +558241,193.18,48.434 +558242,191.69,49.335 +558243,190.2,50.217 +558244,188.72,51.081 +558245,191.97,48.475 +558246,190.43,49.33 +558247,188.89,50.167 +558248,187.36,50.986 +558249,190.75,48.517 +558250,189.17,49.325 +558251,187.58,50.116 +558252,186,50.891 +558253,189.53,48.559 +558254,187.9,49.32 +558255,186.27,50.066 +558256,184.64,50.795 +558257,188.31,48.602 +558258,186.64,49.315 +558259,184.96,50.015 +558260,183.29,50.698 +558261,187.09,48.645 +558262,185.38,49.311 +558263,183.66,49.963 +558264,181.93,50.6 +558265,185.87,48.689 +558266,184.11,49.307 +558267,182.35,49.912 +558268,180.58,50.502 +558269,184.64,48.733 +558270,182.85,49.303 +558271,181.04,49.86 +558272,179.23,50.403 +558273,183.42,48.778 +558274,181.58,49.3 +558275,179.74,49.809 +558276,177.87,50.303 +558277,182.19,48.823 +558278,180.32,49.296 +558279,178.43,49.757 +558280,176.52,50.203 +558281,180.96,48.869 +558282,179.05,49.293 +558283,177.12,49.705 +558284,175.18,50.102 +558285,179.73,48.915 +558286,177.79,49.29 +558287,175.82,49.652 +558288,173.83,50.001 +558289,178.5,48.961 +558290,176.52,49.287 +558291,174.51,49.6 +558292,172.48,49.899 +558293,177.26,49.008 +558294,175.25,49.284 +558295,173.21,49.547 +558296,171.14,49.797 +558297,176.03,49.055 +558298,173.98,49.281 +558299,171.91,49.495 +558300,169.8,49.695 +558301,174.79,49.102 +558302,172.72,49.278 +558303,170.61,49.442 +558304,168.45,49.592 +558305,173.55,49.149 +558306,171.45,49.276 +558307,169.3,49.39 +558308,167.11,49.488 +558309,172.31,49.197 +558310,170.18,49.273 +558311,168,49.337 +558312,165.78,49.385 +558313,171.06,49.244 +558314,168.91,49.271 +558315,166.7,49.284 +558316,164.44,49.281 +558317,169.82,49.292 +558318,167.64,49.269 +558319,165.4,49.231 +558320,163.1,49.177 +558321,168.57,49.339 +558322,166.37,49.266 +558323,164.1,49.178 +558324,161.77,49.073 +558325,167.32,49.387 +558326,165.1,49.264 +558327,162.8,49.125 +558328,160.44,48.968 +558329,166.07,49.434 +558330,163.82,49.262 +558331,161.51,49.073 +558332,159.11,48.864 +558333,164.82,49.482 +558334,162.55,49.26 +558335,160.21,49.02 +558336,157.78,48.759 +558337,163.57,49.529 +558338,161.28,49.257 +558339,158.91,48.967 +558340,156.45,48.655 +558341,162.31,49.576 +558342,160.01,49.255 +558343,157.62,48.914 +558344,155.13,48.55 +558345,161.05,49.623 +558346,158.73,49.253 +558347,156.32,48.861 +558348,153.81,48.446 +558349,159.79,49.669 +558350,157.46,49.25 +558351,155.03,48.809 +558352,152.49,48.342 +558353,158.53,49.715 +558354,156.18,49.248 +558355,153.73,48.756 +558356,151.17,48.238 +558357,157.27,49.761 +558358,154.91,49.245 +558359,152.44,48.704 +558360,149.85,48.134 +558361,156,49.807 +558362,153.63,49.243 +558363,151.15,48.652 +558364,148.53,48.03 +558365,154.73,49.852 +558366,152.35,49.24 +558367,149.86,48.599 +558368,147.22,47.926 +558369,153.46,49.897 +558370,151.08,49.237 +558371,148.56,48.547 +558372,145.91,47.823 +558373,152.19,49.941 +558374,149.8,49.234 +558375,147.27,48.495 +558376,144.6,47.721 +558377,150.92,49.985 +558378,148.52,49.231 +558379,145.98,48.444 +558380,143.29,47.618 +558381,149.65,50.028 +558382,147.24,49.228 +558383,144.7,48.392 +558384,141.99,47.516 +558385,148.37,50.071 +558386,145.96,49.225 +558387,143.41,48.341 +558388,140.69,47.415 +558389,147.09,50.113 +558390,144.68,49.221 +558391,142.12,48.29 +558392,139.39,47.314 +558393,145.81,50.154 +558394,143.4,49.217 +558395,140.83,48.239 +558396,138.09,47.214 +558397,144.53,50.195 +558398,142.12,49.213 +558399,139.55,48.188 +558400,136.79,47.114 +558401,143.24,50.235 +558402,140.84,49.209 +558403,138.26,48.138 +558404,135.5,47.015 +558405,141.96,50.275 +558406,139.55,49.205 +558407,136.98,48.088 +558408,134.21,46.917 +558409,140.67,50.313 +558410,138.27,49.2 +558411,135.7,48.038 +558412,132.92,46.819 +558413,139.38,50.351 +558414,136.99,49.195 +558415,134.42,47.988 +558416,131.63,46.722 +558417,138.09,50.388 +558418,135.7,49.19 +558419,133.13,47.939 +558420,130.34,46.626 +558421,136.8,50.424 +558422,134.42,49.185 +558423,131.85,47.89 +558424,129.06,46.531 +558425,135.5,50.459 +558426,133.13,49.179 +558427,130.57,47.842 +558428,127.78,46.437 +558429,134.2,50.493 +558430,131.85,49.173 +558431,129.29,47.793 +558432,126.5,46.344 +558433,132.91,50.526 +558434,130.56,49.167 +558435,128.01,47.745 +558436,125.23,46.252 +558437,131.61,50.558 +558438,129.27,49.161 +558439,126.74,47.698 +558440,123.95,46.16 +558441,130.3,50.59 +558442,127.98,49.154 +558443,125.46,47.651 +558444,122.68,46.07 +558445,129,50.62 +558446,126.7,49.147 +558447,124.18,47.604 +558448,121.41,45.981 +558449,127.7,50.649 +558450,125.41,49.139 +558451,122.91,47.557 +558452,120.14,45.893 +558453,126.39,50.677 +558454,124.12,49.131 +558455,121.63,47.512 +558456,118.88,45.807 +558457,125.08,50.704 +558458,122.83,49.123 +558459,120.36,47.466 +558460,117.62,45.721 +558461,123.77,50.73 +558462,121.54,49.114 +558463,119.09,47.421 +558464,116.36,45.637 +558465,122.46,50.754 +558466,120.25,49.105 +558467,117.81,47.376 +558468,115.1,45.554 +558469,121.15,50.778 +558470,118.96,49.096 +558471,116.54,47.332 +558472,113.85,45.472 +558473,119.83,50.8 +558474,117.66,49.086 +558475,115.27,47.288 +558476,112.59,45.392 +558477,118.51,50.821 +558478,116.37,49.076 +558479,114,47.245 +558480,111.34,45.313 +558481,117.2,50.84 +558482,115.08,49.065 +558483,112.73,47.202 +558484,110.09,45.236 +558485,115.88,50.858 +558486,113.79,49.054 +558487,111.46,47.16 +558488,108.85,45.16 +558489,114.56,50.875 +558490,112.49,49.043 +558491,110.2,47.118 +558492,107.61,45.085 +558493,113.23,50.891 +558494,111.2,49.031 +558495,108.93,47.077 +558496,106.36,45.013 +558497,111.91,50.905 +558498,109.9,49.019 +558499,107.66,47.036 +558500,105.12,44.941 +558501,110.58,50.918 +558502,108.61,49.006 +558503,106.4,46.996 +558504,103.89,44.872 +558505,109.26,50.93 +558506,107.31,48.993 +558507,105.13,46.956 +558508,102.65,44.803 +558509,107.93,50.94 +558510,106.01,48.979 +558511,103.87,46.917 +558512,101.42,44.737 +558513,106.6,50.948 +558514,104.72,48.965 +558515,102.6,46.879 +558516,100.19,44.672 +558517,105.27,50.956 +558518,103.42,48.95 +558519,101.34,46.841 +558520,98.962,44.609 +558521,103.94,50.961 +558522,102.12,48.935 +558523,100.08,46.803 +558524,97.736,44.548 +558525,102.6,50.966 +558526,100.83,48.919 +558527,98.818,46.766 +558528,96.512,44.488 +558529,101.27,50.968 +558530,99.527,48.903 +558531,97.557,46.73 +558532,95.29,44.43 +558533,99.935,50.969 +558534,98.228,48.886 +558535,96.296,46.695 +558536,94.07,44.374 +558537,98.598,50.969 +558538,96.929,48.869 +558539,95.037,46.659 +558540,92.852,44.32 +558541,97.261,50.967 +558542,95.63,48.852 +558543,93.778,46.625 +558544,91.636,44.268 +558545,95.922,50.964 +558546,94.33,48.833 +558547,92.519,46.591 +558548,90.421,44.217 +558549,94.582,50.959 +558550,93.03,48.815 +558551,91.261,46.558 +558552,89.209,44.169 +558553,93.241,50.952 +558554,91.729,48.795 +558555,90.004,46.525 +558556,87.999,44.122 +558557,91.898,50.944 +558558,90.428,48.776 +558559,88.747,46.493 +558560,86.79,44.077 +558561,90.555,50.934 +558562,89.127,48.755 +558563,87.491,46.462 +558564,85.583,44.034 +558565,89.211,50.923 +558566,87.826,48.734 +558567,86.235,46.431 +558568,84.377,43.993 +558569,87.866,50.91 +558570,86.524,48.713 +558571,84.98,46.401 +558572,83.174,43.954 +558573,86.52,50.895 +558574,85.222,48.691 +558575,83.726,46.372 +558576,81.971,43.917 +558577,85.174,50.879 +558578,83.919,48.669 +558579,82.472,46.343 +558580,80.771,43.882 +558581,83.826,50.861 +558582,82.617,48.646 +558583,81.218,46.315 +558584,79.572,43.849 +558585,82.478,50.841 +558586,81.314,48.622 +558587,79.965,46.288 +558588,78.374,43.818 +558589,81.129,50.82 +558590,80.011,48.598 +558591,78.712,46.261 +558592,77.178,43.789 +558593,79.779,50.797 +558594,78.708,48.573 +558595,77.46,46.235 +558596,75.983,43.761 +558597,78.428,50.772 +558598,77.404,48.548 +558599,76.209,46.209 +558600,74.789,43.736 +558601,77.077,50.746 +558602,76.1,48.522 +558603,74.957,46.184 +558604,73.596,43.713 +558605,75.725,50.718 +558606,74.796,48.496 +558607,73.706,46.16 +558608,72.405,43.692 +558609,74.372,50.688 +558610,73.492,48.469 +558611,72.456,46.137 +558612,71.215,43.673 +558613,73.019,50.657 +558614,72.188,48.441 +558615,71.205,46.114 +558616,70.025,43.656 +558617,71.665,50.624 +558618,70.884,48.413 +558619,69.956,46.092 +558620,68.837,43.64 +558621,70.311,50.589 +558622,69.579,48.385 +558623,68.706,46.07 +558624,67.65,43.627 +558625,68.956,50.553 +558626,68.275,48.355 +558627,67.457,46.049 +558628,66.463,43.616 +558629,67.601,50.515 +558630,66.97,48.326 +558631,66.208,46.029 +558632,65.277,43.607 +558633,66.246,50.475 +558634,65.665,48.296 +558635,64.959,46.009 +558636,64.092,43.6 +558637,64.89,50.434 +558638,64.36,48.265 +558639,63.711,45.99 +558640,62.908,43.594 +558641,63.534,50.391 +558642,63.055,48.233 +558643,62.463,45.972 +558644,61.724,43.591 +558645,62.177,50.346 +558646,61.75,48.202 +558647,61.215,45.954 +558648,60.54,43.59 +558649,60.82,50.3 +558650,60.445,48.169 +558651,59.967,45.937 +558652,59.358,43.59 +558653,59.463,50.252 +558654,59.14,48.136 +558655,58.72,45.921 +558656,58.175,43.592 +558657,58.106,50.202 +558658,57.835,48.103 +558659,57.473,45.905 +558660,56.993,43.597 +558661,56.748,50.151 +558662,56.53,48.069 +558663,56.226,45.89 +558664,55.811,43.603 +558665,55.391,50.098 +558666,55.225,48.034 +558667,54.979,45.876 +558668,54.629,43.611 +558669,54.033,50.044 +558670,53.92,47.999 +558671,53.732,45.862 +558672,53.448,43.621 +558673,52.675,49.988 +558674,52.615,47.963 +558675,52.485,45.849 +558676,52.266,43.633 +558677,51.317,49.93 +558678,51.31,47.927 +558679,51.239,45.836 +558680,51.085,43.646 +558681,49.96,49.871 +558682,50.006,47.89 +558683,49.992,45.824 +558684,49.904,43.661 +558685,48.602,49.81 +558686,48.701,47.853 +558687,48.746,45.813 +558688,48.722,43.678 +558689,47.244,49.748 +558690,47.396,47.816 +558691,47.499,45.802 +558692,47.54,43.697 +558693,45.887,49.684 +558694,46.092,47.778 +558695,46.253,45.792 +558696,46.358,43.718 +558697,44.529,49.619 +558698,44.788,47.739 +558699,45.006,45.782 +558700,45.176,43.74 +558701,43.172,49.552 +558702,43.483,47.7 +558703,43.76,45.773 +558704,43.993,43.764 +558705,41.815,49.484 +558706,42.179,47.66 +558707,42.513,45.765 +558708,42.81,43.789 +558709,40.458,49.414 +558710,40.876,47.62 +558711,41.267,45.757 +558712,41.626,43.816 +558713,39.102,49.342 +558714,39.572,47.58 +558715,40.02,45.749 +558716,40.442,43.845 +558717,37.746,49.27 +558718,38.269,47.539 +558719,38.774,45.742 +558720,39.257,43.875 +558721,36.39,49.196 +558722,36.965,47.497 +558723,37.527,45.736 +558724,38.072,43.907 +558725,35.034,49.12 +558726,35.662,47.455 +558727,36.28,45.73 +558728,36.886,43.94 +558729,33.68,49.043 +558730,34.36,47.413 +558731,35.033,45.725 +558732,35.699,43.974 +558733,32.325,48.965 +558734,33.057,47.37 +558735,33.786,45.72 +558736,34.511,44.01 +558737,30.971,48.885 +558738,31.755,47.327 +558739,32.539,45.716 +558740,33.322,44.048 +558741,29.618,48.804 +558742,30.453,47.284 +558743,31.292,45.712 +558744,32.133,44.086 +558745,28.265,48.722 +558746,29.152,47.24 +558747,30.044,45.709 +558748,30.942,44.126 +558749,26.913,48.639 +558750,27.85,47.196 +558751,28.796,45.706 +558752,29.751,44.168 +558753,25.561,48.554 +558754,26.549,47.151 +558755,27.548,45.704 +558756,28.558,44.21 +558757,24.21,48.468 +558758,25.249,47.106 +558759,26.3,45.702 +558760,27.365,44.254 +558761,22.86,48.381 +558762,23.949,47.06 +558763,25.051,45.7 +558764,26.17,44.299 +558765,21.511,48.293 +558766,22.649,47.015 +558767,23.803,45.699 +558768,24.974,44.344 +558769,20.162,48.203 +558770,21.349,46.969 +558771,22.554,45.698 +558772,23.776,44.392 +558773,18.814,48.113 +558774,20.05,46.922 +558775,21.304,45.698 +558776,22.578,44.44 +558777,17.467,48.021 +558778,18.752,46.876 +558779,20.055,45.698 +558780,21.378,44.489 +558781,16.121,47.929 +558782,17.454,46.829 +558783,18.805,45.699 +558784,20.176,44.539 +558785,14.776,47.835 +558786,16.156,46.781 +558787,17.554,45.7 +558788,18.974,44.59 +558789,13.432,47.74 +558790,14.859,46.734 +558791,16.304,45.701 +558792,17.77,44.641 +558793,12.089,47.645 +558794,13.562,46.686 +558795,15.053,45.702 +558796,16.564,44.694 +558797,10.747,47.548 +558798,12.265,46.638 +558799,13.801,45.704 +558800,15.357,44.748 +558801,9.4064,47.451 +558802,10.97,46.589 +558803,12.55,45.706 +558804,14.148,44.802 +558805,8.0666,47.353 +558806,9.6742,46.541 +558807,11.297,45.709 +558808,12.938,44.857 +558809,6.7279,47.254 +558810,8.3794,46.492 +558811,10.045,45.711 +558812,11.726,44.912 +558813,5.3905,47.154 +558814,7.0851,46.443 +558815,8.792,45.714 +558816,10.512,44.968 +558817,4.0542,47.053 +558818,5.7913,46.394 +558819,7.5386,45.718 +558820,9.2972,45.025 +558821,2.7193,46.952 +558822,4.4981,46.345 +558823,6.2848,45.721 +558824,8.0804,45.083 +558825,1.3856,46.85 +558826,3.2054,46.295 +558827,5.0305,45.725 +558828,6.8619,45.14 +558829,0.053265,46.748 +558830,1.9133,46.246 +558831,3.7758,45.729 +558832,5.6416,45.199 +558833,358.72,46.644 +558834,0.62183,46.196 +558835,2.5206,45.733 +558836,4.4196,45.257 +558837,357.39,46.541 +558838,359.33,46.146 +558839,1.2649,45.737 +558840,3.1958,45.317 +558841,356.06,46.437 +558842,358.04,46.096 +558843,0.0088063,45.742 +558844,1.9702,45.376 +558845,354.74,46.332 +558846,356.75,46.046 +558847,358.75,45.747 +558848,0.74289,45.436 +558849,353.41,46.227 +558850,355.46,45.995 +558851,357.5,45.751 +558852,359.51,45.496 +558853,352.09,46.121 +558854,354.17,45.945 +558855,356.24,45.756 +558856,358.28,45.556 +558857,350.77,46.015 +558858,352.89,45.895 +558859,354.98,45.762 +558860,357.05,45.616 +558861,349.45,45.909 +558862,351.6,45.845 +558863,353.72,45.767 +558864,355.82,45.677 +558865,348.13,45.802 +558866,350.31,45.794 +558867,352.46,45.772 +558868,354.58,45.737 +558869,346.81,45.696 +558870,349.03,45.744 +558871,351.2,45.777 +558872,353.34,45.798 +558873,345.49,45.589 +558874,347.74,45.693 +558875,349.94,45.783 +558876,352.1,45.858 +558877,344.18,45.482 +558878,346.46,45.643 +558879,348.68,45.788 +558880,350.86,45.919 +558881,342.87,45.374 +558882,345.17,45.593 +558883,347.42,45.794 +558884,349.61,45.979 +558885,341.56,45.267 +558886,343.89,45.542 +558887,346.16,45.799 +558888,348.37,46.039 +558889,340.25,45.16 +558890,342.61,45.492 +558891,344.89,45.805 +558892,347.12,46.1 +558893,338.94,45.053 +558894,341.33,45.442 +558895,343.63,45.81 +558896,345.87,46.159 +558897,337.64,44.945 +558898,340.04,45.392 +558899,342.37,45.816 +558900,344.62,46.219 +558901,336.34,44.838 +558902,338.76,45.342 +558903,341.1,45.821 +558904,343.36,46.278 +558905,335.04,44.732 +558906,337.49,45.292 +558907,339.84,45.827 +558908,342.11,46.337 +558909,333.74,44.625 +558910,336.21,45.243 +558911,338.57,45.832 +558912,340.85,46.396 +558913,332.44,44.518 +558914,334.93,45.193 +558915,337.31,45.838 +558916,339.59,46.454 +558917,331.14,44.412 +558918,333.65,45.144 +558919,336.04,45.843 +558920,338.33,46.512 +558921,329.85,44.307 +558922,332.37,45.095 +558923,334.77,45.848 +558924,337.07,46.569 +558925,328.56,44.201 +558926,331.1,45.046 +558927,333.51,45.853 +558928,335.8,46.626 +558929,327.27,44.096 +558930,329.82,44.997 +558931,332.24,45.858 +558932,334.54,46.682 +558933,325.99,43.992 +558934,328.55,44.949 +558935,330.97,45.863 +558936,333.27,46.738 +558937,324.7,43.888 +558938,327.28,44.9 +558939,329.7,45.867 +558940,332,46.793 +558941,323.42,43.785 +558942,326,44.852 +558943,328.43,45.872 +558944,330.72,46.847 +558945,322.14,43.682 +558946,324.73,44.805 +558947,327.16,45.876 +558948,329.45,46.901 +558949,320.86,43.58 +558950,323.46,44.757 +558951,325.89,45.88 +558952,328.17,46.954 +558953,319.58,43.479 +558954,322.19,44.71 +558955,324.62,45.884 +558956,326.9,47.006 +558957,318.31,43.378 +558958,320.92,44.663 +558959,323.35,45.887 +558960,325.62,47.057 +558961,317.04,43.278 +558962,319.65,44.617 +558963,322.07,45.891 +558964,324.34,47.107 +558965,315.77,43.179 +558966,318.38,44.57 +558967,320.8,45.894 +558968,323.05,47.157 +558969,314.5,43.081 +558970,317.12,44.525 +558971,319.53,45.896 +558972,321.77,47.205 +558973,313.24,42.984 +558974,315.85,44.479 +558975,318.25,45.899 +558976,320.48,47.253 +558977,311.97,42.888 +558978,314.58,44.434 +558979,316.98,45.901 +558980,319.19,47.3 +558981,310.71,42.794 +558982,313.32,44.39 +558983,315.7,45.903 +558984,317.9,47.345 +558985,309.46,42.7 +558986,312.05,44.345 +558987,314.43,45.905 +558988,316.61,47.39 +558989,308.2,42.607 +558990,310.79,44.302 +558991,313.15,45.906 +558992,315.32,47.433 +558993,306.95,42.515 +558994,309.53,44.258 +558995,311.87,45.908 +558996,314.02,47.476 +558997,305.69,42.425 +558998,308.27,44.215 +558999,310.59,45.908 +559000,312.73,47.517 +559001,304.45,42.336 +559002,307.01,44.173 +559003,309.32,45.909 +559004,311.43,47.557 +559005,303.2,42.248 +559006,305.75,44.131 +559007,308.04,45.909 +559008,310.13,47.596 +559009,301.95,42.162 +559010,304.49,44.089 +559011,306.76,45.908 +559012,308.83,47.634 +559013,300.71,42.077 +559014,303.23,44.049 +559015,305.48,45.907 +559016,307.52,47.67 +559017,299.47,41.994 +559018,301.97,44.008 +559019,304.2,45.906 +559020,306.22,47.706 +559021,298.23,41.911 +559022,300.71,43.968 +559023,302.92,45.905 +559024,304.91,47.739 +559025,297,41.831 +559026,299.45,43.929 +559027,301.64,45.903 +559028,303.61,47.772 +559029,295.77,41.752 +559030,298.2,43.89 +559031,300.35,45.901 +559032,302.3,47.803 +559033,294.54,41.675 +559034,296.94,43.852 +559035,299.07,45.898 +559036,300.99,47.833 +559037,293.31,41.599 +559038,295.69,43.814 +559039,297.79,45.894 +559040,299.67,47.862 +559041,292.08,41.525 +559042,294.43,43.777 +559043,296.51,45.891 +559044,298.36,47.889 +559045,290.86,41.452 +559046,293.18,43.74 +559047,295.22,45.887 +559048,297.05,47.914 +559049,289.63,41.382 +559050,291.93,43.704 +559051,293.94,45.882 +559052,295.73,47.938 +559053,288.41,41.313 +559054,290.68,43.669 +559055,292.65,45.877 +559056,294.41,47.961 +559057,287.2,41.246 +559058,289.43,43.634 +559059,291.37,45.871 +559060,293.1,47.982 +559061,285.98,41.181 +559062,288.17,43.6 +559063,290.08,45.865 +559064,291.78,48.002 +559065,284.77,41.118 +559066,286.92,43.567 +559067,288.8,45.859 +559068,290.46,48.02 +559069,283.55,41.056 +559070,285.68,43.534 +559071,287.51,45.852 +559072,289.14,48.037 +559073,282.34,40.997 +559074,284.43,43.502 +559075,286.23,45.844 +559076,287.81,48.052 +559077,281.14,40.939 +559078,283.18,43.471 +559079,284.94,45.836 +559080,286.49,48.065 +559081,279.93,40.884 +559082,281.93,43.44 +559083,283.65,45.828 +559084,285.16,48.077 +559085,278.73,40.831 +559086,280.68,43.41 +559087,282.36,45.819 +559088,283.84,48.087 +559089,277.52,40.779 +559090,279.44,43.38 +559091,281.08,45.809 +559092,282.51,48.096 +559093,276.32,40.73 +559094,278.19,43.352 +559095,279.79,45.799 +559096,281.18,48.102 +559097,275.12,40.683 +559098,276.95,43.324 +559099,278.5,45.788 +559100,279.85,48.108 +559101,273.93,40.637 +559102,275.7,43.296 +559103,277.21,45.777 +559104,278.52,48.111 +559105,272.73,40.594 +559106,274.46,43.27 +559107,275.92,45.765 +559108,277.19,48.113 +559109,271.54,40.554 +559110,273.22,43.244 +559111,274.63,45.753 +559112,275.86,48.113 +559113,270.35,40.515 +559114,271.97,43.219 +559115,273.34,45.74 +559116,274.53,48.112 +559117,269.15,40.478 +559118,270.73,43.194 +559119,272.05,45.727 +559120,273.19,48.109 +559121,267.97,40.444 +559122,269.49,43.171 +559123,270.76,45.713 +559124,271.86,48.104 +559125,266.78,40.412 +559126,268.25,43.148 +559127,269.47,45.698 +559128,270.53,48.097 +559129,265.59,40.382 +559130,267,43.125 +559131,268.18,45.683 +559132,269.19,48.089 +559133,264.41,40.355 +559134,265.76,43.104 +559135,266.89,45.667 +559136,267.85,48.078 +559137,263.22,40.329 +559138,264.52,43.083 +559139,265.6,45.651 +559140,266.52,48.067 +559141,262.04,40.306 +559142,263.28,43.063 +559143,264.31,45.634 +559144,265.18,48.053 +559145,260.86,40.285 +559146,262.04,43.044 +559147,263.02,45.617 +559148,263.84,48.037 +559149,259.68,40.266 +559150,260.8,43.025 +559151,261.73,45.599 +559152,262.5,48.02 +559153,258.5,40.25 +559154,259.56,43.007 +559155,260.44,45.58 +559156,261.16,48.001 +559157,257.32,40.236 +559158,258.33,42.99 +559159,259.14,45.561 +559160,259.83,47.981 +559161,256.14,40.224 +559162,257.09,42.974 +559163,257.85,45.542 +559164,258.49,47.958 +559165,254.96,40.214 +559166,255.85,42.959 +559167,256.56,45.521 +559168,257.15,47.934 +559169,253.79,40.207 +559170,254.61,42.944 +559171,255.27,45.5 +559172,255.8,47.908 +559173,252.61,40.202 +559174,253.37,42.93 +559175,253.98,45.479 +559176,254.46,47.88 +559177,251.44,40.199 +559178,252.14,42.916 +559179,252.68,45.457 +559180,253.12,47.851 +559181,250.26,40.198 +559182,250.9,42.904 +559183,251.39,45.434 +559184,251.78,47.819 +559185,249.09,40.199 +559186,249.66,42.892 +559187,250.1,45.411 +559188,250.44,47.786 +559189,247.91,40.203 +559190,248.42,42.881 +559191,248.81,45.388 +559192,249.1,47.752 +559193,246.74,40.209 +559194,247.19,42.871 +559195,247.52,45.363 +559196,247.76,47.715 +559197,245.57,40.217 +559198,245.95,42.861 +559199,246.22,45.338 +559200,246.41,47.677 +559201,244.39,40.227 +559202,244.72,42.852 +559203,244.93,45.313 +559204,245.07,47.637 +559205,243.22,40.24 +559206,243.48,42.844 +559207,243.64,45.287 +559208,243.73,47.595 +559209,242.05,40.254 +559210,242.24,42.837 +559211,242.35,45.261 +559212,242.39,47.552 +559213,240.88,40.271 +559214,241.01,42.83 +559215,241.06,45.234 +559216,241.05,47.506 +559217,239.7,40.29 +559218,239.77,42.824 +559219,239.76,45.206 +559220,239.7,47.459 +559221,238.53,40.31 +559222,238.53,42.819 +559223,238.47,45.178 +559224,238.36,47.411 +559225,237.36,40.333 +559226,237.3,42.814 +559227,237.18,45.149 +559228,237.02,47.361 +559229,236.18,40.358 +559230,236.06,42.81 +559231,235.89,45.12 +559232,235.68,47.309 +559233,235.01,40.385 +559234,234.83,42.807 +559235,234.6,45.09 +559236,234.34,47.255 +559237,233.84,40.414 +559238,233.59,42.804 +559239,233.31,45.06 +559240,233,47.2 +559241,232.66,40.444 +559242,232.35,42.802 +559243,232.02,45.029 +559244,231.66,47.143 +559245,231.49,40.477 +559246,231.12,42.801 +559247,230.73,44.998 +559248,230.31,47.085 +559249,230.31,40.511 +559250,229.88,42.801 +559251,229.43,44.966 +559252,228.97,47.025 +559253,229.13,40.548 +559254,228.65,42.801 +559255,228.14,44.934 +559256,227.63,46.963 +559257,227.96,40.586 +559258,227.41,42.802 +559259,226.85,44.901 +559260,226.3,46.9 +559261,226.78,40.626 +559262,226.17,42.803 +559263,225.56,44.868 +559264,224.96,46.835 +559265,225.6,40.668 +559266,224.94,42.805 +559267,224.27,44.834 +559268,223.62,46.769 +559269,224.42,40.711 +559270,223.7,42.808 +559271,222.99,44.8 +559272,222.28,46.701 +559273,223.24,40.756 +559274,222.46,42.811 +559275,221.7,44.765 +559276,220.94,46.632 +559277,222.06,40.803 +559278,221.22,42.815 +559279,220.41,44.73 +559280,219.61,46.561 +559281,220.88,40.851 +559282,219.99,42.819 +559283,219.12,44.695 +559284,218.27,46.489 +559285,219.69,40.901 +559286,218.75,42.824 +559287,217.83,44.659 +559288,216.93,46.415 +559289,218.51,40.952 +559290,217.51,42.83 +559291,216.54,44.623 +559292,215.6,46.34 +559293,217.32,41.005 +559294,216.27,42.836 +559295,215.26,44.586 +559296,214.27,46.264 +559297,216.13,41.059 +559298,215.03,42.842 +559299,213.97,44.549 +559300,212.93,46.186 +559301,214.95,41.115 +559302,213.79,42.849 +559303,212.68,44.511 +559304,211.6,46.107 +559305,213.76,41.172 +559306,212.56,42.857 +559307,211.4,44.473 +559308,210.27,46.026 +559309,212.56,41.23 +559310,211.32,42.865 +559311,210.11,44.435 +559312,208.94,45.945 +559313,211.37,41.29 +559314,210.08,42.874 +559315,208.82,44.396 +559316,207.61,45.862 +559317,210.18,41.351 +559318,208.84,42.883 +559319,207.54,44.357 +559320,206.28,45.778 +559321,208.98,41.413 +559322,207.59,42.893 +559323,206.25,44.318 +559324,204.95,45.693 +559325,207.78,41.476 +559326,206.35,42.903 +559327,204.97,44.278 +559328,203.63,45.606 +559329,206.59,41.54 +559330,205.11,42.913 +559331,203.69,44.238 +559332,202.3,45.518 +559333,205.39,41.606 +559334,203.87,42.924 +559335,202.4,44.198 +559336,200.98,45.43 +559337,204.18,41.672 +559338,202.63,42.936 +559339,201.12,44.158 +559340,199.65,45.34 +559341,202.98,41.739 +559342,201.39,42.947 +559343,199.84,44.117 +559344,198.33,45.249 +559345,201.78,41.807 +559346,200.14,42.959 +559347,198.56,44.076 +559348,197.01,45.157 +559349,200.57,41.876 +559350,198.9,42.972 +559351,197.27,44.034 +559352,195.69,45.065 +559353,199.36,41.946 +559354,197.65,42.985 +559355,195.99,43.993 +559356,194.37,44.971 +559357,198.15,42.017 +559358,196.41,42.998 +559359,194.71,43.951 +559360,193.05,44.876 +559361,196.94,42.088 +559362,195.17,43.012 +559363,193.43,43.909 +559364,191.74,44.781 +559365,195.72,42.16 +559366,193.92,43.025 +559367,192.15,43.867 +559368,190.42,44.685 +559369,194.51,42.233 +559370,192.67,43.04 +559371,190.88,43.825 +559372,189.11,44.588 +559373,193.29,42.306 +559374,191.43,43.054 +559375,189.6,43.782 +559376,187.8,44.49 +559377,192.07,42.38 +559378,190.18,43.069 +559379,188.32,43.739 +559380,186.49,44.391 +559381,190.85,42.454 +559382,188.93,43.084 +559383,187.04,43.697 +559384,185.18,44.292 +559385,189.63,42.528 +559386,187.69,43.099 +559387,185.77,43.654 +559388,183.87,44.192 +559389,188.4,42.604 +559390,186.44,43.114 +559391,184.49,43.611 +559392,182.56,44.092 +559393,187.17,42.679 +559394,185.19,43.13 +559395,183.22,43.567 +559396,181.26,43.991 +559397,185.94,42.755 +559398,183.94,43.146 +559399,181.94,43.524 +559400,179.96,43.889 +559401,184.71,42.831 +559402,182.69,43.162 +559403,180.67,43.481 +559404,178.66,43.787 +559405,183.48,42.907 +559406,181.44,43.178 +559407,179.4,43.438 +559408,177.36,43.685 +559409,182.25,42.983 +559410,180.19,43.194 +559411,178.12,43.394 +559412,176.06,43.582 +559413,181.01,43.06 +559414,178.93,43.211 +559415,176.85,43.351 +559416,174.76,43.479 +559417,179.77,43.136 +559418,177.68,43.227 +559419,175.58,43.307 +559420,173.47,43.376 +559421,178.53,43.213 +559422,176.43,43.244 +559423,174.31,43.264 +559424,172.18,43.272 +559425,177.29,43.289 +559426,175.17,43.261 +559427,173.04,43.221 +559428,170.88,43.168 +559429,176.04,43.365 +559430,173.92,43.278 +559431,171.77,43.177 +559432,169.6,43.064 +559433,174.8,43.442 +559434,172.67,43.294 +559435,170.5,43.134 +559436,168.31,42.96 +559437,173.55,43.518 +559438,171.41,43.311 +559439,169.24,43.091 +559440,167.02,42.856 +559441,172.3,43.594 +559442,170.15,43.328 +559443,167.97,43.048 +559444,165.74,42.752 +559445,171.05,43.67 +559446,168.9,43.345 +559447,166.7,43.005 +559448,164.46,42.647 +559449,169.79,43.745 +559450,167.64,43.362 +559451,165.44,42.962 +559452,163.18,42.543 +559453,168.54,43.82 +559454,166.38,43.379 +559455,164.17,42.919 +559456,161.9,42.439 +559457,167.28,43.895 +559458,165.12,43.396 +559459,162.91,42.877 +559460,160.63,42.335 +559461,166.02,43.969 +559462,163.87,43.413 +559463,161.65,42.834 +559464,159.35,42.232 +559465,164.76,44.043 +559466,162.61,43.43 +559467,160.38,42.792 +559468,158.08,42.128 +559469,163.49,44.117 +559470,161.35,43.447 +559471,159.12,42.75 +559472,156.81,42.025 +559473,162.23,44.189 +559474,160.09,43.463 +559475,157.86,42.708 +559476,155.54,41.922 +559477,160.96,44.262 +559478,158.82,43.48 +559479,156.6,42.667 +559480,154.28,41.82 +559481,159.69,44.333 +559482,157.56,43.496 +559483,155.34,42.625 +559484,153.01,41.718 +559485,158.42,44.404 +559486,156.3,43.512 +559487,154.08,42.584 +559488,151.75,41.617 +559489,157.15,44.475 +559490,155.04,43.529 +559491,152.82,42.544 +559492,150.49,41.516 +559493,155.88,44.544 +559494,153.77,43.545 +559495,151.56,42.503 +559496,149.23,41.416 +559497,154.6,44.613 +559498,152.51,43.56 +559499,150.31,42.463 +559500,147.98,41.316 +559501,153.32,44.681 +559502,151.24,43.576 +559503,149.05,42.423 +559504,146.73,41.218 +559505,152.04,44.748 +559506,149.98,43.591 +559507,147.8,42.384 +559508,145.47,41.12 +559509,150.76,44.814 +559510,148.71,43.607 +559511,146.54,42.344 +559512,144.23,41.022 +559513,149.48,44.88 +559514,147.45,43.621 +559515,145.29,42.306 +559516,142.98,40.926 +559517,148.19,44.944 +559518,146.18,43.636 +559519,144.03,42.267 +559520,141.73,40.83 +559521,146.91,45.008 +559522,144.91,43.651 +559523,142.78,42.229 +559524,140.49,40.736 +559525,145.62,45.07 +559526,143.64,43.665 +559527,141.53,42.192 +559528,139.25,40.642 +559529,144.33,45.131 +559530,142.37,43.679 +559531,140.28,42.155 +559532,138.01,40.55 +559533,143.04,45.192 +559534,141.1,43.692 +559535,139.03,42.118 +559536,136.78,40.459 +559537,141.75,45.251 +559538,139.83,43.706 +559539,137.78,42.082 +559540,135.54,40.369 +559541,140.45,45.309 +559542,138.56,43.719 +559543,136.53,42.046 +559544,134.31,40.28 +559545,139.16,45.366 +559546,137.29,43.731 +559547,135.28,42.011 +559548,133.08,40.192 +559549,137.86,45.421 +559550,136.02,43.743 +559551,134.03,41.976 +559552,131.85,40.106 +559553,136.56,45.476 +559554,134.75,43.755 +559555,132.79,41.942 +559556,130.63,40.02 +559557,135.26,45.529 +559558,133.48,43.767 +559559,131.54,41.908 +559560,129.41,39.937 +559561,133.96,45.581 +559562,132.21,43.778 +559563,130.29,41.875 +559564,128.18,39.855 +559565,132.66,45.631 +559566,130.93,43.789 +559567,129.05,41.842 +559568,126.96,39.774 +559569,131.35,45.68 +559570,129.66,43.799 +559571,127.8,41.81 +559572,125.75,39.695 +559573,130.05,45.728 +559574,128.38,43.809 +559575,126.56,41.779 +559576,124.53,39.617 +559577,128.74,45.775 +559578,127.11,43.819 +559579,125.32,41.748 +559580,123.32,39.541 +559581,127.43,45.82 +559582,125.83,43.828 +559583,124.07,41.718 +559584,122.11,39.467 +559585,126.12,45.863 +559586,124.56,43.837 +559587,122.83,41.688 +559588,120.9,39.394 +559589,124.81,45.905 +559590,123.28,43.845 +559591,121.59,41.659 +559592,119.69,39.323 +559593,123.5,45.946 +559594,122.01,43.853 +559595,120.35,41.631 +559596,118.49,39.254 +559597,122.19,45.985 +559598,120.73,43.86 +559599,119.11,41.603 +559600,117.28,39.187 +559601,120.88,46.023 +559602,119.45,43.867 +559603,117.87,41.576 +559604,116.08,39.122 +559605,119.56,46.059 +559606,118.17,43.874 +559607,116.63,41.55 +559608,114.88,39.058 +559609,118.25,46.093 +559610,116.9,43.88 +559611,115.39,41.524 +559612,113.68,38.997 +559613,116.93,46.126 +559614,115.62,43.885 +559615,114.15,41.499 +559616,112.49,38.937 +559617,115.61,46.157 +559618,114.34,43.89 +559619,112.92,41.475 +559620,111.29,38.88 +559621,114.29,46.187 +559622,113.06,43.894 +559623,111.68,41.451 +559624,110.1,38.824 +559625,112.97,46.215 +559626,111.78,43.898 +559627,110.44,41.428 +559628,108.91,38.771 +559629,111.65,46.241 +559630,110.5,43.902 +559631,109.21,41.406 +559632,107.72,38.72 +559633,110.33,46.266 +559634,109.22,43.905 +559635,107.97,41.385 +559636,106.53,38.67 +559637,109.01,46.289 +559638,107.94,43.907 +559639,106.74,41.364 +559640,105.34,38.623 +559641,107.69,46.31 +559642,106.66,43.909 +559643,105.5,41.344 +559644,104.16,38.579 +559645,106.36,46.329 +559646,105.38,43.91 +559647,104.27,41.325 +559648,102.97,38.536 +559649,105.04,46.347 +559650,104.1,43.911 +559651,103.03,41.306 +559652,101.79,38.496 +559653,103.71,46.363 +559654,102.82,43.911 +559655,101.8,41.289 +559656,100.61,38.458 +559657,102.39,46.378 +559658,101.54,43.91 +559659,100.57,41.272 +559660,99.427,38.422 +559661,101.06,46.39 +559662,100.26,43.909 +559663,99.332,41.256 +559664,98.248,38.389 +559665,99.735,46.401 +559666,98.974,43.908 +559667,98.099,41.241 +559668,97.07,38.358 +559669,98.408,46.41 +559670,97.692,43.906 +559671,96.867,41.226 +559672,95.893,38.329 +559673,97.08,46.417 +559674,96.409,43.903 +559675,95.635,41.212 +559676,94.717,38.303 +559677,95.752,46.423 +559678,95.127,43.9 +559679,94.403,41.199 +559680,93.542,38.279 +559681,94.423,46.426 +559682,93.845,43.896 +559683,93.172,41.187 +559684,92.368,38.257 +559685,93.094,46.428 +559686,92.562,43.892 +559687,91.94,41.176 +559688,91.194,38.238 +559689,91.765,46.428 +559690,91.279,43.886 +559691,90.709,41.165 +559692,90.021,38.221 +559693,90.435,46.426 +559694,89.997,43.881 +559695,89.478,41.156 +559696,88.849,38.207 +559697,89.105,46.423 +559698,88.714,43.875 +559699,88.248,41.147 +559700,87.678,38.195 +559701,87.775,46.417 +559702,87.431,43.868 +559703,87.017,41.139 +559704,86.507,38.186 +559705,86.444,46.41 +559706,86.148,43.861 +559707,85.787,41.131 +559708,85.336,38.178 +559709,85.114,46.401 +559710,84.865,43.853 +559711,84.557,41.125 +559712,84.166,38.174 +559713,83.783,46.39 +559714,83.581,43.844 +559715,83.327,41.119 +559716,82.997,38.172 +559717,82.452,46.377 +559718,82.298,43.835 +559719,82.097,41.114 +559720,81.827,38.172 +559721,81.121,46.363 +559722,81.015,43.825 +559723,80.867,41.11 +559724,80.658,38.175 +559725,79.79,46.346 +559726,79.732,43.815 +559727,79.637,41.107 +559728,79.489,38.18 +559729,78.459,46.328 +559730,78.449,43.804 +559731,78.407,41.104 +559732,78.32,38.187 +559733,77.128,46.308 +559734,77.166,43.793 +559735,77.177,41.103 +559736,77.15,38.197 +559737,75.797,46.287 +559738,75.883,43.781 +559739,75.947,41.102 +559740,75.981,38.209 +559741,74.466,46.263 +559742,74.6,43.768 +559743,74.718,41.102 +559744,74.812,38.224 +559745,73.135,46.238 +559746,73.317,43.755 +559747,73.488,41.103 +559748,73.642,38.241 +559749,71.805,46.21 +559750,72.034,43.741 +559751,72.258,41.104 +559752,72.473,38.26 +559753,70.475,46.182 +559754,70.752,43.727 +559755,71.028,41.107 +559756,71.302,38.282 +559757,69.145,46.151 +559758,69.469,43.712 +559759,69.798,41.11 +559760,70.132,38.306 +559761,67.815,46.118 +559762,68.187,43.697 +559763,68.568,41.114 +559764,68.961,38.332 +559765,66.486,46.084 +559766,66.904,43.681 +559767,67.338,41.118 +559768,67.789,38.361 +559769,65.157,46.048 +559770,65.622,43.664 +559771,66.107,41.124 +559772,66.617,38.392 +559773,63.828,46.01 +559774,64.34,43.647 +559775,64.877,41.13 +559776,65.444,38.425 +559777,62.5,45.971 +559778,63.059,43.63 +559779,63.646,41.137 +559780,64.27,38.46 +559781,61.172,45.93 +559782,61.777,43.612 +559783,62.415,41.144 +559784,63.096,38.497 +559785,59.845,45.887 +559786,60.496,43.593 +559787,61.184,41.153 +559788,61.92,38.537 +559789,58.518,45.843 +559790,59.215,43.574 +559791,59.953,41.162 +559792,60.744,38.578 +559793,57.192,45.796 +559794,57.934,43.554 +559795,58.721,41.172 +559796,59.567,38.622 +559797,55.866,45.749 +559798,56.654,43.534 +559799,57.49,41.182 +559800,58.389,38.668 +559801,54.541,45.699 +559802,55.373,43.513 +559803,56.257,41.194 +559804,57.209,38.716 +559805,53.217,45.648 +559806,54.093,43.492 +559807,55.025,41.206 +559808,56.029,38.765 +559809,51.894,45.595 +559810,52.814,43.47 +559811,53.792,41.218 +559812,54.847,38.817 +559813,50.571,45.541 +559814,51.534,43.448 +559815,52.56,41.232 +559816,53.664,38.871 +559817,49.249,45.485 +559818,50.255,43.425 +559819,51.326,41.246 +559820,52.48,38.926 +559821,47.928,45.428 +559822,48.976,43.402 +559823,50.093,41.261 +559824,51.295,38.983 +559825,46.608,45.369 +559826,47.698,43.378 +559827,48.859,41.276 +559828,50.108,39.042 +559829,45.288,45.309 +559830,46.42,43.354 +559831,47.624,41.292 +559832,48.92,39.103 +559833,43.97,45.247 +559834,45.142,43.33 +559835,46.389,41.308 +559836,47.73,39.166 +559837,42.652,45.184 +559838,43.865,43.305 +559839,45.154,41.326 +559840,46.539,39.23 +559841,41.335,45.119 +559842,42.588,43.28 +559843,43.919,41.343 +559844,45.346,39.296 +559845,40.02,45.053 +559846,41.312,43.254 +559847,42.683,41.362 +559848,44.151,39.363 +559849,38.705,44.985 +559850,40.036,43.228 +559851,41.446,41.381 +559852,42.955,39.432 +559853,37.392,44.917 +559854,38.76,43.201 +559855,40.209,41.4 +559856,41.758,39.502 +559857,36.08,44.847 +559858,37.485,43.174 +559859,38.972,41.42 +559860,40.558,39.574 +559861,34.769,44.775 +559862,36.21,43.147 +559863,37.734,41.441 +559864,39.357,39.647 +559865,33.459,44.702 +559866,34.936,43.12 +559867,36.495,41.462 +559868,38.154,39.722 +559869,32.15,44.628 +559870,33.662,43.092 +559871,35.257,41.484 +559872,36.95,39.797 +559873,30.842,44.553 +559874,32.389,43.063 +559875,34.017,41.506 +559876,35.743,39.874 +559877,29.536,44.477 +559878,31.116,43.035 +559879,32.777,41.529 +559880,34.535,39.953 +559881,28.231,44.4 +559882,29.844,43.006 +559883,31.537,41.552 +559884,33.325,40.032 +559885,26.927,44.321 +559886,28.572,42.977 +559887,30.296,41.576 +559888,32.113,40.112 +559889,25.625,44.241 +559890,27.301,42.947 +559891,29.054,41.6 +559892,30.899,40.194 +559893,24.324,44.161 +559894,26.03,42.917 +559895,27.812,41.624 +559896,29.684,40.277 +559897,23.025,44.079 +559898,24.76,42.887 +559899,26.569,41.649 +559900,28.466,40.36 +559901,21.727,43.996 +559902,23.49,42.857 +559903,25.326,41.674 +559904,27.246,40.444 +559905,20.43,43.913 +559906,22.221,42.827 +559907,24.082,41.7 +559908,26.025,40.53 +559909,19.135,43.828 +559910,20.952,42.796 +559911,22.838,41.726 +559912,24.801,40.616 +559913,17.842,43.743 +559914,19.684,42.765 +559915,21.593,41.752 +559916,23.576,40.703 +559917,16.55,43.656 +559918,18.417,42.734 +559919,20.347,41.779 +559920,22.348,40.79 +559921,15.259,43.569 +559922,17.15,42.703 +559923,19.101,41.806 +559924,21.119,40.878 +559925,13.971,43.481 +559926,15.884,42.671 +559927,17.854,41.833 +559928,19.888,40.967 +559929,12.684,43.393 +559930,14.618,42.64 +559931,16.607,41.861 +559932,18.654,41.056 +559933,11.398,43.304 +559934,13.353,42.608 +559935,15.359,41.889 +559936,17.419,41.146 +559937,10.114,43.214 +559938,12.089,42.576 +559939,14.11,41.917 +559940,16.181,41.236 +559941,8.8322,43.123 +559942,10.825,42.544 +559943,12.861,41.945 +559944,14.942,41.327 +559945,7.5518,43.032 +559946,9.562,42.512 +559947,11.611,41.974 +559948,13.701,41.418 +559949,6.2732,42.941 +559950,8.2994,42.48 +559951,10.36,42.003 +559952,12.457,41.509 +559953,4.9964,42.849 +559954,7.0375,42.448 +559955,9.1088,42.032 +559956,11.212,41.601 +559957,3.7213,42.757 +559958,5.7763,42.416 +559959,7.8569,42.061 +559960,9.9646,41.693 +559961,2.4481,42.664 +559962,4.5156,42.384 +559963,6.6044,42.091 +559964,8.7152,41.785 +559965,1.1767,42.571 +559966,3.2557,42.351 +559967,5.3512,42.12 +559968,7.4639,41.877 +559969,359.91,42.477 +559970,1.9963,42.319 +559971,4.0973,42.15 +559972,6.2107,41.969 +559973,358.64,42.383 +559974,0.73763,42.287 +559975,2.8429,42.18 +559976,4.9555,42.061 +559977,357.37,42.289 +559978,359.48,42.255 +559979,1.5877,42.209 +559980,3.6983,42.153 +559981,356.11,42.195 +559982,358.22,42.223 +559983,0.33195,42.239 +559984,2.4392,42.245 +559985,354.85,42.101 +559986,356.97,42.191 +559987,359.08,42.269 +559988,1.1782,42.337 +559989,353.59,42.007 +559990,355.71,42.159 +559991,357.82,42.299 +559992,359.92,42.428 +559993,352.33,41.913 +559994,354.45,42.127 +559995,356.56,42.33 +559996,358.65,42.52 +559997,351.07,41.818 +559998,353.2,42.095 +559999,355.3,42.36 +560000,357.38,42.611 +560001,349.82,41.724 +560002,351.95,42.064 +560003,354.04,42.39 +560004,356.12,42.702 +560005,348.57,41.63 +560006,350.69,42.032 +560007,352.78,42.42 +560008,354.84,42.793 +560009,347.32,41.536 +560010,349.44,42.001 +560011,351.52,42.45 +560012,353.57,42.883 +560013,346.07,41.442 +560014,348.19,41.97 +560015,350.26,42.48 +560016,352.3,42.972 +560017,344.82,41.349 +560018,346.94,41.939 +560019,349,42.51 +560020,351.02,43.062 +560021,343.58,41.256 +560022,345.68,41.909 +560023,347.74,42.54 +560024,349.75,43.15 +560025,342.34,41.163 +560026,344.43,41.878 +560027,346.48,42.57 +560028,348.47,43.238 +560029,341.1,41.071 +560030,343.18,41.848 +560031,345.21,42.599 +560032,347.19,43.326 +560033,339.86,40.979 +560034,341.94,41.818 +560035,343.95,42.629 +560036,345.9,43.413 +560037,338.62,40.888 +560038,340.69,41.789 +560039,342.68,42.658 +560040,344.62,43.499 +560041,337.39,40.797 +560042,339.44,41.759 +560043,341.42,42.688 +560044,343.33,43.584 +560045,336.15,40.707 +560046,338.19,41.73 +560047,340.15,42.717 +560048,342.04,43.669 +560049,334.92,40.617 +560050,336.95,41.701 +560051,338.89,42.746 +560052,340.75,43.753 +560053,333.7,40.528 +560054,335.7,41.673 +560055,337.62,42.775 +560056,339.46,43.836 +560057,332.47,40.44 +560058,334.46,41.645 +560059,336.35,42.803 +560060,338.17,43.918 +560061,331.25,40.353 +560062,333.21,41.618 +560063,335.08,42.832 +560064,336.88,43.999 +560065,330.02,40.267 +560066,331.97,41.59 +560067,333.82,42.86 +560068,335.58,44.08 +560069,328.8,40.182 +560070,330.72,41.563 +560071,332.55,42.888 +560072,334.29,44.159 +560073,327.58,40.097 +560074,329.48,41.537 +560075,331.28,42.915 +560076,332.99,44.237 +560077,326.37,40.014 +560078,328.24,41.511 +560079,330.01,42.943 +560080,331.69,44.314 +560081,325.15,39.931 +560082,327,41.486 +560083,328.74,42.97 +560084,330.39,44.391 +560085,323.94,39.85 +560086,325.76,41.46 +560087,327.46,42.996 +560088,329.08,44.466 +560089,322.73,39.77 +560090,324.52,41.436 +560091,326.19,43.023 +560092,327.78,44.539 +560093,321.52,39.691 +560094,323.28,41.412 +560095,324.92,43.049 +560096,326.47,44.612 +560097,320.31,39.614 +560098,322.04,41.388 +560099,323.65,43.075 +560100,325.17,44.684 +560101,319.11,39.537 +560102,320.8,41.365 +560103,322.37,43.1 +560104,323.86,44.754 +560105,317.91,39.463 +560106,319.56,41.343 +560107,321.1,43.125 +560108,322.55,44.823 +560109,316.7,39.389 +560110,318.32,41.321 +560111,319.83,43.15 +560112,321.24,44.89 +560113,315.5,39.317 +560114,317.08,41.299 +560115,318.55,43.174 +560116,319.93,44.957 +560117,314.31,39.246 +560118,315.85,41.278 +560119,317.28,43.198 +560120,318.62,45.022 +560121,313.11,39.177 +560122,314.61,41.258 +560123,316,43.222 +560124,317.3,45.085 +560125,311.91,39.11 +560126,313.37,41.238 +560127,314.73,43.245 +560128,315.99,45.147 +560129,310.72,39.044 +560130,312.14,41.219 +560131,313.45,43.268 +560132,314.67,45.208 +560133,309.53,38.98 +560134,310.9,41.201 +560135,312.17,43.29 +560136,313.36,45.267 +560137,308.34,38.918 +560138,309.67,41.183 +560139,310.9,43.312 +560140,312.04,45.325 +560141,307.15,38.857 +560142,308.43,41.166 +560143,309.62,43.333 +560144,310.72,45.382 +560145,305.96,38.798 +560146,307.2,41.149 +560147,308.34,43.354 +560148,309.4,45.436 +560149,304.78,38.741 +560150,305.97,41.133 +560151,307.06,43.375 +560152,308.08,45.49 +560153,303.59,38.686 +560154,304.73,41.118 +560155,305.78,43.395 +560156,306.76,45.541 +560157,302.41,38.633 +560158,303.5,41.104 +560159,304.5,43.414 +560160,305.44,45.591 +560161,301.23,38.582 +560162,302.27,41.09 +560163,303.23,43.433 +560164,304.12,45.64 +560165,300.05,38.533 +560166,301.04,41.077 +560167,301.95,43.452 +560168,302.79,45.687 +560169,298.87,38.486 +560170,299.81,41.064 +560171,300.67,43.47 +560172,301.47,45.732 +560173,297.69,38.441 +560174,298.57,41.053 +560175,299.39,43.487 +560176,300.14,45.776 +560177,296.51,38.398 +560178,297.34,41.042 +560179,298.11,43.504 +560180,298.82,45.817 +560181,295.34,38.357 +560182,296.11,41.031 +560183,296.83,43.521 +560184,297.49,45.858 +560185,294.16,38.318 +560186,294.88,41.022 +560187,295.55,43.537 +560188,296.17,45.896 +560189,292.99,38.281 +560190,293.65,41.013 +560191,294.26,43.552 +560192,294.84,45.933 +560193,291.81,38.247 +560194,292.42,41.005 +560195,292.98,43.567 +560196,293.51,45.968 +560197,290.64,38.215 +560198,291.19,40.998 +560199,291.7,43.581 +560200,292.19,46.001 +560201,289.47,38.185 +560202,289.96,40.992 +560203,290.42,43.595 +560204,290.86,46.033 +560205,288.29,38.158 +560206,288.73,40.986 +560207,289.14,43.608 +560208,289.53,46.063 +560209,287.12,38.132 +560210,287.5,40.981 +560211,287.86,43.621 +560212,288.2,46.091 +560213,285.95,38.11 +560214,286.27,40.977 +560215,286.58,43.633 +560216,286.87,46.117 +560217,284.78,38.089 +560218,285.04,40.974 +560219,285.29,43.644 +560220,285.54,46.142 +560221,283.61,38.071 +560222,283.81,40.971 +560223,284.01,43.655 +560224,284.21,46.165 +560225,282.44,38.055 +560226,282.58,40.97 +560227,282.73,43.666 +560228,282.88,46.185 +560229,281.27,38.042 +560230,281.35,40.969 +560231,281.45,43.675 +560232,281.55,46.205 +560233,280.1,38.031 +560234,280.12,40.969 +560235,280.16,43.685 +560236,280.22,46.222 +560237,278.94,38.022 +560238,278.89,40.969 +560239,278.88,43.693 +560240,278.89,46.237 +560241,277.77,38.016 +560242,277.66,40.971 +560243,277.6,43.701 +560244,277.56,46.251 +560245,276.6,38.012 +560246,276.43,40.973 +560247,276.32,43.709 +560248,276.23,46.263 +560249,275.43,38.011 +560250,275.2,40.976 +560251,275.03,43.716 +560252,274.9,46.273 +560253,274.26,38.012 +560254,273.98,40.98 +560255,273.75,43.722 +560256,273.57,46.281 +560257,273.09,38.016 +560258,272.75,40.985 +560259,272.47,43.728 +560260,272.24,46.288 +560261,271.92,38.022 +560262,271.52,40.991 +560263,271.19,43.733 +560264,270.91,46.292 +560265,270.75,38.03 +560266,270.29,40.997 +560267,269.91,43.737 +560268,269.58,46.295 +560269,269.58,38.041 +560270,269.06,41.004 +560271,268.62,43.741 +560272,268.25,46.296 +560273,268.41,38.055 +560274,267.83,41.012 +560275,267.34,43.744 +560276,266.92,46.295 +560277,267.24,38.071 +560278,266.6,41.021 +560279,266.06,43.747 +560280,265.59,46.292 +560281,266.06,38.089 +560282,265.37,41.031 +560283,264.78,43.749 +560284,264.27,46.287 +560285,264.89,38.109 +560286,264.13,41.041 +560287,263.49,43.751 +560288,262.94,46.281 +560289,263.72,38.132 +560290,262.9,41.053 +560291,262.21,43.752 +560292,261.61,46.273 +560293,262.54,38.158 +560294,261.67,41.065 +560295,260.93,43.752 +560296,260.28,46.263 +560297,261.37,38.186 +560298,260.44,41.078 +560299,259.65,43.752 +560300,258.96,46.251 +560301,260.19,38.216 +560302,259.21,41.091 +560303,258.37,43.752 +560304,257.63,46.238 +560305,259.01,38.248 +560306,257.98,41.106 +560307,257.09,43.75 +560308,256.3,46.222 +560309,257.83,38.283 +560310,256.74,41.121 +560311,255.81,43.748 +560312,254.98,46.205 +560313,256.65,38.32 +560314,255.51,41.137 +560315,254.53,43.746 +560316,253.65,46.187 +560317,255.47,38.36 +560318,254.28,41.154 +560319,253.25,43.743 +560320,252.33,46.166 +560321,254.29,38.402 +560322,253.05,41.171 +560323,251.97,43.74 +560324,251.01,46.144 +560325,253.11,38.446 +560326,251.81,41.19 +560327,250.69,43.736 +560328,249.68,46.12 +560329,251.92,38.492 +560330,250.58,41.209 +560331,249.41,43.731 +560332,248.36,46.094 +560333,250.74,38.54 +560334,249.34,41.229 +560335,248.13,43.726 +560336,247.04,46.067 +560337,249.55,38.59 +560338,248.11,41.249 +560339,246.85,43.72 +560340,245.72,46.037 +560341,248.36,38.643 +560342,246.87,41.27 +560343,245.57,43.714 +560344,244.4,46.007 +560345,247.17,38.698 +560346,245.64,41.292 +560347,244.29,43.707 +560348,243.08,45.974 +560349,245.98,38.754 +560350,244.4,41.315 +560351,243.01,43.7 +560352,241.76,45.94 +560353,244.78,38.813 +560354,243.16,41.338 +560355,241.73,43.693 +560356,240.45,45.905 +560357,243.59,38.874 +560358,241.93,41.363 +560359,240.46,43.684 +560360,239.13,45.867 +560361,242.39,38.936 +560362,240.69,41.387 +560363,239.18,43.676 +560364,237.81,45.829 +560365,241.19,39.001 +560366,239.45,41.413 +560367,237.9,43.667 +560368,236.5,45.788 +560369,239.99,39.067 +560370,238.21,41.439 +560371,236.63,43.657 +560372,235.19,45.746 +560373,238.79,39.136 +560374,236.97,41.466 +560375,235.35,43.647 +560376,233.88,45.703 +560377,237.58,39.206 +560378,235.73,41.493 +560379,234.07,43.636 +560380,232.57,45.658 +560381,236.38,39.277 +560382,234.49,41.521 +560383,232.8,43.625 +560384,231.26,45.612 +560385,235.17,39.351 +560386,233.25,41.55 +560387,231.52,43.614 +560388,229.95,45.564 +560389,233.96,39.426 +560390,232.01,41.579 +560391,230.25,43.602 +560392,228.64,45.515 +560393,232.74,39.503 +560394,230.77,41.609 +560395,228.98,43.59 +560396,227.33,45.464 +560397,231.53,39.581 +560398,229.52,41.639 +560399,227.7,43.577 +560400,226.03,45.412 +560401,230.31,39.661 +560402,228.28,41.67 +560403,226.43,43.564 +560404,224.73,45.359 +560405,229.1,39.743 +560406,227.04,41.702 +560407,225.16,43.551 +560408,223.42,45.304 +560409,227.88,39.825 +560410,225.79,41.734 +560411,223.89,43.537 +560412,222.12,45.248 +560413,226.65,39.91 +560414,224.55,41.767 +560415,222.61,43.523 +560416,220.83,45.191 +560417,225.43,39.995 +560418,223.3,41.8 +560419,221.34,43.508 +560420,219.53,45.132 +560421,224.2,40.082 +560422,222.05,41.834 +560423,220.07,43.493 +560424,218.23,45.073 +560425,222.97,40.17 +560426,220.81,41.868 +560427,218.8,43.478 +560428,216.94,45.012 +560429,221.74,40.259 +560430,219.56,41.902 +560431,217.53,43.463 +560432,215.64,44.95 +560433,220.51,40.35 +560434,218.31,41.938 +560435,216.26,43.447 +560436,214.35,44.887 +560437,219.28,40.441 +560438,217.06,41.973 +560439,215,43.431 +560440,213.06,44.822 +560441,218.04,40.534 +560442,215.81,42.009 +560443,213.73,43.414 +560444,211.77,44.757 +560445,216.8,40.627 +560446,214.56,42.045 +560447,212.46,43.398 +560448,210.49,44.691 +560449,215.56,40.722 +560450,213.31,42.082 +560451,211.19,43.381 +560452,209.2,44.624 +560453,214.32,40.817 +560454,212.05,42.119 +560455,209.93,43.364 +560456,207.92,44.555 +560457,213.07,40.914 +560458,210.8,42.157 +560459,208.66,43.346 +560460,206.63,44.486 +560461,211.82,41.011 +560462,209.55,42.195 +560463,207.4,43.329 +560464,205.35,44.416 +560465,210.57,41.109 +560466,208.29,42.233 +560467,206.13,43.311 +560468,204.07,44.346 +560469,209.32,41.207 +560470,207.04,42.272 +560471,204.87,43.293 +560472,202.8,44.274 +560473,208.07,41.306 +560474,205.78,42.311 +560475,203.61,43.275 +560476,201.52,44.202 +560477,206.81,41.406 +560478,204.53,42.35 +560479,202.34,43.256 +560480,200.25,44.128 +560481,205.55,41.506 +560482,203.27,42.389 +560483,201.08,43.238 +560484,198.98,44.055 +560485,204.29,41.607 +560486,202.01,42.429 +560487,199.82,43.219 +560488,197.71,43.98 +560489,203.03,41.708 +560490,200.75,42.469 +560491,198.56,43.201 +560492,196.44,43.905 +560493,201.77,41.81 +560494,199.49,42.509 +560495,197.3,43.182 +560496,195.17,43.829 +560497,200.5,41.912 +560498,198.23,42.55 +560499,196.04,43.163 +560500,193.91,43.753 +560501,199.23,42.014 +560502,196.97,42.59 +560503,194.78,43.144 +560504,192.65,43.677 +560505,197.96,42.117 +560506,195.71,42.631 +560507,193.52,43.125 +560508,191.38,43.599 +560509,196.69,42.22 +560510,194.45,42.672 +560511,192.26,43.106 +560512,190.13,43.522 +560513,195.42,42.323 +560514,193.19,42.713 +560515,191.01,43.087 +560516,188.87,43.444 +560517,194.14,42.426 +560518,191.92,42.755 +560519,189.75,43.068 +560520,187.61,43.366 +560521,192.86,42.529 +560522,190.66,42.796 +560523,188.49,43.049 +560524,186.36,43.287 +560525,191.58,42.632 +560526,189.39,42.838 +560527,187.24,43.03 +560528,185.11,43.209 +560529,190.3,42.735 +560530,188.13,42.879 +560531,185.98,43.011 +560532,183.86,43.13 +560533,189.02,42.838 +560534,186.86,42.921 +560535,184.73,42.992 +560536,182.61,43.051 +560537,187.73,42.94 +560538,185.6,42.962 +560539,183.47,42.973 +560540,181.37,42.971 +560541,186.45,43.043 +560542,184.33,43.004 +560543,182.22,42.954 +560544,180.12,42.892 +560545,185.16,43.145 +560546,183.06,43.046 +560547,180.97,42.935 +560548,178.88,42.813 +560549,183.87,43.248 +560550,181.79,43.088 +560551,179.72,42.916 +560552,177.64,42.734 +560553,182.57,43.349 +560554,180.52,43.13 +560555,178.46,42.898 +560556,176.4,42.655 +560557,181.28,43.451 +560558,179.25,43.171 +560559,177.21,42.879 +560560,175.17,42.576 +560561,179.98,43.552 +560562,177.98,43.213 +560563,175.96,42.861 +560564,173.94,42.497 +560565,178.69,43.653 +560566,176.71,43.255 +560567,174.71,42.843 +560568,172.7,42.418 +560569,177.39,43.753 +560570,175.44,43.296 +560571,173.46,42.825 +560572,171.47,42.34 +560573,176.09,43.852 +560574,174.16,43.338 +560575,172.22,42.808 +560576,170.25,42.262 +560577,174.78,43.951 +560578,172.89,43.379 +560579,170.97,42.79 +560580,169.02,42.184 +560581,173.48,44.05 +560582,171.61,43.421 +560583,169.72,42.773 +560584,167.8,42.107 +560585,172.17,44.148 +560586,170.34,43.462 +560587,168.47,42.756 +560588,166.57,42.03 +560589,170.87,44.245 +560590,169.06,43.503 +560591,167.23,42.739 +560592,165.35,41.954 +560593,169.56,44.341 +560594,167.79,43.544 +560595,165.98,42.723 +560596,164.13,41.878 +560597,168.25,44.437 +560598,166.51,43.585 +560599,164.74,42.707 +560600,162.92,41.803 +560601,166.94,44.532 +560602,165.23,43.625 +560603,163.49,42.691 +560604,161.7,41.728 +560605,165.62,44.625 +560606,163.96,43.665 +560607,162.25,42.675 +560608,160.49,41.655 +560609,164.31,44.719 +560610,162.68,43.706 +560611,161,42.66 +560612,159.28,41.582 +560613,163,44.811 +560614,161.4,43.745 +560615,159.76,42.645 +560616,158.07,41.509 +560617,161.68,44.902 +560618,160.12,43.785 +560619,158.52,42.631 +560620,156.86,41.438 +560621,160.36,44.992 +560622,158.84,43.825 +560623,157.27,42.617 +560624,155.66,41.367 +560625,159.04,45.081 +560626,157.56,43.864 +560627,156.03,42.603 +560628,154.45,41.298 +560629,157.72,45.17 +560630,156.28,43.903 +560631,154.79,42.59 +560632,153.25,41.229 +560633,156.4,45.257 +560634,155,43.941 +560635,153.55,42.577 +560636,152.05,41.161 +560637,155.08,45.343 +560638,153.72,43.979 +560639,152.31,42.565 +560640,150.85,41.095 +560641,153.75,45.427 +560642,152.43,44.017 +560643,151.07,42.553 +560644,149.65,41.029 +560645,152.43,45.511 +560646,151.15,44.055 +560647,149.83,42.541 +560648,148.45,40.965 +560649,151.1,45.594 +560650,149.87,44.092 +560651,148.59,42.53 +560652,147.26,40.902 +560653,149.78,45.675 +560654,148.58,44.129 +560655,147.35,42.52 +560656,146.07,40.84 +560657,148.45,45.755 +560658,147.3,44.166 +560659,146.11,42.51 +560660,144.87,40.78 +560661,147.12,45.833 +560662,146.02,44.202 +560663,144.87,42.5 +560664,143.68,40.721 +560665,145.79,45.911 +560666,144.73,44.238 +560667,143.63,42.491 +560668,142.5,40.663 +560669,144.46,45.987 +560670,143.45,44.273 +560671,142.4,42.483 +560672,141.31,40.606 +560673,143.13,46.061 +560674,142.16,44.308 +560675,141.16,42.475 +560676,140.12,40.551 +560677,141.8,46.135 +560678,140.87,44.343 +560679,139.92,42.468 +560680,138.94,40.498 +560681,140.47,46.206 +560682,139.59,44.377 +560683,138.69,42.461 +560684,137.75,40.446 +560685,139.13,46.277 +560686,138.3,44.411 +560687,137.45,42.455 +560688,136.57,40.396 +560689,137.8,46.346 +560690,137.01,44.444 +560691,136.21,42.449 +560692,135.39,40.347 +560693,136.46,46.413 +560694,135.73,44.477 +560695,134.98,42.444 +560696,134.21,40.3 +560697,135.13,46.479 +560698,134.44,44.51 +560699,133.74,42.44 +560700,133.03,40.255 +560701,133.79,46.544 +560702,133.15,44.542 +560703,132.5,42.436 +560704,131.85,40.212 +560705,132.46,46.606 +560706,131.86,44.573 +560707,131.27,42.433 +560708,130.67,40.17 +560709,131.12,46.668 +560710,130.58,44.604 +560711,130.03,42.431 +560712,129.49,40.13 +560713,129.78,46.728 +560714,129.29,44.635 +560715,128.8,42.429 +560716,128.32,40.092 +560717,128.45,46.786 +560718,128,44.665 +560719,127.56,42.428 +560720,127.14,40.056 +560721,127.11,46.842 +560722,126.71,44.694 +560723,126.33,42.427 +560724,125.97,40.021 +560725,125.77,46.897 +560726,125.42,44.723 +560727,125.09,42.428 +560728,124.79,39.989 +560729,124.43,46.95 +560730,124.13,44.752 +560731,123.86,42.429 +560732,123.62,39.959 +560733,123.09,47.002 +560734,122.84,44.78 +560735,122.62,42.43 +560736,122.45,39.93 +560737,121.75,47.052 +560738,121.55,44.807 +560739,121.39,42.433 +560740,121.27,39.904 +560741,120.41,47.1 +560742,120.26,44.834 +560743,120.15,42.436 +560744,120.1,39.88 +560745,119.07,47.147 +560746,118.97,44.86 +560747,118.92,42.439 +560748,118.93,39.857 +560749,117.73,47.192 +560750,117.68,44.886 +560751,117.68,42.444 +560752,117.76,39.837 +560753,116.39,47.235 +560754,116.39,44.911 +560755,116.45,42.449 +560756,116.58,39.819 +560757,115.05,47.276 +560758,115.1,44.936 +560759,115.21,42.455 +560760,115.41,39.804 +560761,113.71,47.316 +560762,113.81,44.96 +560763,113.98,42.461 +560764,114.24,39.79 +560765,112.37,47.354 +560766,112.52,44.984 +560767,112.74,42.469 +560768,113.07,39.778 +560769,111.03,47.39 +560770,111.23,45.007 +560771,111.51,42.477 +560772,111.9,39.769 +560773,109.69,47.424 +560774,109.94,45.03 +560775,110.27,42.486 +560776,110.72,39.762 +560777,108.35,47.457 +560778,108.65,45.051 +560779,109.04,42.495 +560780,109.55,39.757 +560781,107.01,47.488 +560782,107.36,45.073 +560783,107.8,42.506 +560784,108.38,39.755 +560785,105.68,47.517 +560786,106.07,45.094 +560787,106.57,42.517 +560788,107.2,39.754 +560789,104.34,47.544 +560790,104.78,45.114 +560791,105.33,42.529 +560792,106.03,39.756 +560793,103,47.57 +560794,103.49,45.133 +560795,104.09,42.541 +560796,104.86,39.761 +560797,101.66,47.594 +560798,102.2,45.152 +560799,102.86,42.555 +560800,103.68,39.767 +560801,100.32,47.616 +560802,100.91,45.171 +560803,101.62,42.569 +560804,102.51,39.776 +560805,98.982,47.636 +560806,99.618,45.189 +560807,100.38,42.584 +560808,101.33,39.787 +560809,97.644,47.655 +560810,98.328,45.206 +560811,99.147,42.599 +560812,100.15,39.8 +560813,96.307,47.671 +560814,97.038,45.223 +560815,97.909,42.616 +560816,98.973,39.816 +560817,94.971,47.686 +560818,95.748,45.239 +560819,96.671,42.633 +560820,97.794,39.834 +560821,93.634,47.699 +560822,94.458,45.254 +560823,95.433,42.651 +560824,96.614,39.854 +560825,92.299,47.711 +560826,93.169,45.269 +560827,94.194,42.67 +560828,95.433,39.877 +560829,90.963,47.72 +560830,91.88,45.284 +560831,92.956,42.689 +560832,94.25,39.901 +560833,89.629,47.728 +560834,90.591,45.298 +560835,91.716,42.709 +560836,93.067,39.928 +560837,88.295,47.734 +560838,89.302,45.311 +560839,90.477,42.73 +560840,91.882,39.958 +560841,86.962,47.739 +560842,88.013,45.324 +560843,89.236,42.752 +560844,90.696,39.989 +560845,85.629,47.741 +560846,86.725,45.336 +560847,87.996,42.774 +560848,89.508,40.023 +560849,84.297,47.742 +560850,85.436,45.347 +560851,86.755,42.798 +560852,88.319,40.059 +560853,82.966,47.741 +560854,84.148,45.358 +560855,85.514,42.822 +560856,87.129,40.097 +560857,81.636,47.739 +560858,82.861,45.369 +560859,84.272,42.846 +560860,85.937,40.138 +560861,80.307,47.734 +560862,81.573,45.379 +560863,83.029,42.872 +560864,84.743,40.18 +560865,78.978,47.728 +560866,80.286,45.388 +560867,81.786,42.898 +560868,83.548,40.225 +560869,77.65,47.721 +560870,78.999,45.397 +560871,80.543,42.924 +560872,82.352,40.272 +560873,76.324,47.711 +560874,77.712,45.405 +560875,79.299,42.952 +560876,81.153,40.321 +560877,74.998,47.7 +560878,76.426,45.413 +560879,78.054,42.98 +560880,79.953,40.372 +560881,73.673,47.688 +560882,75.14,45.42 +560883,76.809,43.009 +560884,78.751,40.425 +560885,72.349,47.674 +560886,73.855,45.427 +560887,75.564,43.039 +560888,77.547,40.481 +560889,71.026,47.658 +560890,72.569,45.433 +560891,74.317,43.069 +560892,76.341,40.538 +560893,69.705,47.64 +560894,71.284,45.438 +560895,73.071,43.1 +560896,75.134,40.597 +560897,68.384,47.621 +560898,70,45.444 +560899,71.823,43.132 +560900,73.924,40.658 +560901,67.065,47.601 +560902,68.716,45.448 +560903,70.575,43.164 +560904,72.712,40.721 +560905,65.747,47.578 +560906,67.432,45.452 +560907,69.327,43.197 +560908,71.499,40.786 +560909,64.429,47.555 +560910,66.149,45.456 +560911,68.077,43.23 +560912,70.283,40.853 +560913,63.114,47.529 +560914,64.866,45.459 +560915,66.827,43.265 +560916,69.065,40.922 +560917,61.799,47.503 +560918,63.583,45.462 +560919,65.577,43.3 +560920,67.846,40.993 +560921,60.486,47.475 +560922,62.301,45.464 +560923,64.325,43.335 +560924,66.624,41.065 +560925,59.174,47.445 +560926,61.019,45.466 +560927,63.073,43.371 +560928,65.4,41.139 +560929,57.863,47.414 +560930,59.738,45.467 +560931,61.821,43.408 +560932,64.173,41.214 +560933,56.554,47.382 +560934,58.457,45.468 +560935,60.567,43.445 +560936,62.945,41.292 +560937,55.246,47.348 +560938,57.177,45.469 +560939,59.313,43.483 +560940,61.714,41.371 +560941,53.94,47.313 +560942,55.897,45.469 +560943,58.059,43.521 +560944,60.482,41.451 +560945,52.635,47.276 +560946,54.618,45.468 +560947,56.803,43.56 +560948,59.247,41.533 +560949,51.331,47.238 +560950,53.339,45.467 +560951,55.547,43.599 +560952,58.009,41.617 +560953,50.029,47.199 +560954,52.061,45.466 +560955,54.29,43.639 +560956,56.77,41.702 +560957,48.728,47.159 +560958,50.783,45.465 +560959,53.032,43.68 +560960,55.528,41.788 +560961,47.429,47.117 +560962,49.506,45.463 +560963,51.774,43.721 +560964,54.284,41.876 +560965,46.132,47.075 +560966,48.229,45.461 +560967,50.515,43.762 +560968,53.038,41.965 +560969,44.836,47.031 +560970,46.953,45.458 +560971,49.255,43.804 +560972,51.789,42.056 +560973,43.542,46.986 +560974,45.677,45.455 +560975,47.994,43.846 +560976,50.538,42.147 +560977,42.249,46.939 +560978,44.402,45.452 +560979,46.733,43.889 +560980,49.285,42.24 +560981,40.958,46.892 +560982,43.127,45.448 +560983,45.471,43.932 +560984,48.03,42.334 +560985,39.669,46.844 +560986,41.853,45.444 +560987,44.208,43.976 +560988,46.773,42.429 +560989,38.381,46.795 +560990,40.579,45.44 +560991,42.944,44.02 +560992,45.513,42.525 +560993,37.096,46.744 +560994,39.306,45.436 +560995,41.68,44.064 +560996,44.251,42.622 +560997,35.811,46.693 +560998,38.034,45.431 +560999,40.415,44.109 +561000,42.986,42.72 +561001,34.529,46.641 +561002,36.762,45.426 +561003,39.149,44.154 +561004,41.72,42.819 +561005,33.248,46.588 +561006,35.491,45.421 +561007,37.882,44.2 +561008,40.451,42.918 +561009,31.969,46.534 +561010,34.22,45.415 +561011,36.614,44.246 +561012,39.18,43.019 +561013,30.692,46.479 +561014,32.95,45.41 +561015,35.346,44.292 +561016,37.907,43.12 +561017,29.417,46.424 +561018,31.68,45.404 +561019,34.077,44.339 +561020,36.632,43.222 +561021,28.143,46.367 +561022,30.411,45.398 +561023,32.807,44.385 +561024,35.354,43.325 +561025,26.872,46.31 +561026,29.143,45.392 +561027,31.537,44.432 +561028,34.075,43.428 +561029,25.602,46.253 +561030,27.875,45.385 +561031,30.265,44.48 +561032,32.793,43.532 +561033,24.334,46.194 +561034,26.607,45.379 +561035,28.993,44.527 +561036,31.509,43.637 +561037,23.068,46.136 +561038,25.341,45.372 +561039,27.72,44.575 +561040,30.224,43.742 +561041,21.804,46.076 +561042,24.074,45.365 +561043,26.447,44.623 +561044,28.936,43.847 +561045,20.541,46.016 +561046,22.809,45.358 +561047,25.173,44.671 +561048,27.646,43.953 +561049,19.281,45.956 +561050,21.544,45.351 +561051,23.897,44.72 +561052,26.354,44.059 +561053,18.022,45.895 +561054,20.279,45.344 +561055,22.622,44.768 +561056,25.06,44.165 +561057,16.766,45.833 +561058,19.015,45.337 +561059,21.345,44.817 +561060,23.764,44.272 +561061,15.511,45.772 +561062,17.752,45.329 +561063,20.068,44.866 +561064,22.466,44.379 +561065,14.258,45.71 +561066,16.489,45.322 +561067,18.79,44.915 +561068,21.166,44.486 +561069,13.007,45.647 +561070,15.227,45.315 +561071,17.511,44.964 +561072,19.864,44.593 +561073,11.758,45.585 +561074,13.966,45.307 +561075,16.231,45.013 +561076,18.561,44.7 +561077,10.511,45.522 +561078,12.705,45.3 +561079,14.951,45.062 +561080,17.255,44.807 +561081,9.2653,45.459 +561082,11.444,45.293 +561083,13.67,45.112 +561084,15.948,44.914 +561085,8.022,45.396 +561086,10.184,45.286 +561087,12.389,45.161 +561088,14.639,45.021 +561089,6.7805,45.333 +561090,8.9249,45.278 +561091,11.106,45.21 +561092,13.328,45.128 +561093,5.5409,45.27 +561094,7.666,45.271 +561095,9.8235,45.26 +561096,12.016,45.235 +561097,4.3032,45.206 +561098,6.4078,45.264 +561099,8.5398,45.309 +561100,10.701,45.341 +561101,3.0674,45.143 +561102,5.15,45.257 +561103,7.2555,45.359 +561104,9.3856,45.447 +561105,1.8335,45.08 +561106,3.8928,45.25 +561107,5.9705,45.408 +561108,8.0681,45.553 +561109,0.60143,45.017 +561110,2.6361,45.243 +561111,4.6849,45.457 +561112,6.7491,45.659 +561113,359.37,44.954 +561114,1.3799,45.236 +561115,3.3986,45.507 +561116,5.4284,45.764 +561117,358.14,44.892 +561118,0.12426,45.23 +561119,2.1117,45.556 +561120,4.1062,45.869 +561121,356.92,44.83 +561122,358.87,45.224 +561123,0.82419,45.605 +561124,2.7825,45.974 +561125,355.69,44.768 +561126,357.61,45.217 +561127,359.54,45.654 +561128,1.4573,46.077 +561129,354.47,44.706 +561130,356.36,45.211 +561131,358.25,45.703 +561132,0.13072,46.181 +561133,353.25,44.645 +561134,355.11,45.205 +561135,356.96,45.752 +561136,358.8,46.284 +561137,352.03,44.584 +561138,353.85,45.2 +561139,355.67,45.801 +561140,357.47,46.386 +561141,350.81,44.524 +561142,352.6,45.194 +561143,354.38,45.849 +561144,356.14,46.487 +561145,349.59,44.464 +561146,351.35,45.189 +561147,353.09,45.898 +561148,354.81,46.588 +561149,348.38,44.405 +561150,350.1,45.184 +561151,351.79,45.946 +561152,353.48,46.688 +561153,347.17,44.346 +561154,348.84,45.18 +561155,350.5,45.994 +561156,352.14,46.787 +561157,345.96,44.288 +561158,347.59,45.175 +561159,349.21,46.042 +561160,350.81,46.886 +561161,344.75,44.231 +561162,346.34,45.171 +561163,347.92,46.089 +561164,349.47,46.984 +561165,343.54,44.174 +561166,345.09,45.168 +561167,346.62,46.136 +561168,348.13,47.08 +561169,342.33,44.118 +561170,343.84,45.164 +561171,345.33,46.184 +561172,346.79,47.176 +561173,341.13,44.063 +561174,342.59,45.161 +561175,344.03,46.23 +561176,345.45,47.271 +561177,339.93,44.009 +561178,341.34,45.158 +561179,342.74,46.277 +561180,344.11,47.365 +561181,338.72,43.956 +561182,340.1,45.156 +561183,341.44,46.323 +561184,342.77,47.458 +561185,337.52,43.904 +561186,338.85,45.154 +561187,340.15,46.369 +561188,341.43,47.55 +561189,336.33,43.852 +561190,337.6,45.152 +561191,338.85,46.415 +561192,340.08,47.641 +561193,335.13,43.802 +561194,336.35,45.151 +561195,337.55,46.46 +561196,338.74,47.731 +561197,333.93,43.753 +561198,335.1,45.15 +561199,336.26,46.505 +561200,337.39,47.82 +561201,332.74,43.705 +561202,333.86,45.15 +561203,334.96,46.55 +561204,336.04,47.907 +561205,331.54,43.658 +561206,332.61,45.15 +561207,333.66,46.594 +561208,334.7,47.993 +561209,330.35,43.612 +561210,331.36,45.15 +561211,332.36,46.638 +561212,333.35,48.079 +561213,329.16,43.567 +561214,330.12,45.151 +561215,331.06,46.682 +561216,332,48.162 +561217,327.97,43.524 +561218,328.87,45.153 +561219,329.76,46.725 +561220,330.65,48.245 +561221,326.78,43.482 +561222,327.62,45.155 +561223,328.47,46.768 +561224,329.3,48.327 +561225,325.59,43.441 +561226,326.38,45.157 +561227,327.17,46.811 +561228,327.95,48.407 +561229,324.4,43.402 +561230,325.13,45.16 +561231,325.87,46.853 +561232,326.6,48.485 +561233,323.22,43.364 +561234,323.89,45.163 +561235,324.56,46.894 +561236,325.25,48.563 +561237,322.03,43.328 +561238,322.64,45.167 +561239,323.26,46.935 +561240,323.89,48.639 +561241,320.85,43.293 +561242,321.4,45.172 +561243,321.96,46.976 +561244,322.54,48.713 +561245,319.66,43.259 +561246,320.15,45.177 +561247,320.66,47.017 +561248,321.19,48.786 +561249,318.48,43.227 +561250,318.91,45.182 +561251,319.36,47.056 +561252,319.84,48.858 +561253,317.3,43.197 +561254,317.66,45.188 +561255,318.06,47.096 +561256,318.48,48.929 +561257,316.11,43.168 +561258,316.42,45.195 +561259,316.76,47.135 +561260,317.13,48.997 +561261,314.93,43.141 +561262,315.17,45.202 +561263,315.46,47.173 +561264,315.77,49.065 +561265,313.75,43.116 +561266,313.93,45.21 +561267,314.15,47.211 +561268,314.42,49.13 +561269,312.57,43.092 +561270,312.68,45.218 +561271,312.85,47.249 +561272,313.06,49.195 +561273,311.39,43.07 +561274,311.44,45.227 +561275,311.55,47.286 +561276,311.71,49.257 +561277,310.21,43.05 +561278,310.19,45.237 +561279,310.25,47.322 +561280,310.35,49.319 +561281,309.03,43.031 +561282,308.95,45.247 +561283,308.94,47.358 +561284,309,49.378 +561285,307.85,43.015 +561286,307.7,45.258 +561287,307.64,47.394 +561288,307.64,49.436 +561289,306.67,43 +561290,306.46,45.269 +561291,306.34,47.429 +561292,306.29,49.493 +561293,305.49,42.987 +561294,305.21,45.281 +561295,305.04,47.463 +561296,304.93,49.548 +561297,304.31,42.976 +561298,303.97,45.294 +561299,303.73,47.497 +561300,303.58,49.601 +561301,303.13,42.966 +561302,302.72,45.307 +561303,302.43,47.531 +561304,302.22,49.652 +561305,301.95,42.959 +561306,301.48,45.321 +561307,301.13,47.564 +561308,300.87,49.702 +561309,300.77,42.954 +561310,300.23,45.336 +561311,299.82,47.596 +561312,299.51,49.751 +561313,299.59,42.95 +561314,298.99,45.351 +561315,298.52,47.628 +561316,298.16,49.797 +561317,298.41,42.948 +561318,297.74,45.367 +561319,297.22,47.659 +561320,296.8,49.842 +561321,297.22,42.949 +561322,296.5,45.384 +561323,295.91,47.69 +561324,295.45,49.886 +561325,296.04,42.951 +561326,295.25,45.401 +561327,294.61,47.72 +561328,294.09,49.927 +561329,294.86,42.956 +561330,294,45.419 +561331,293.31,47.75 +561332,292.74,49.967 +561333,293.68,42.962 +561334,292.76,45.437 +561335,292.01,47.779 +561336,291.39,50.005 +561337,292.49,42.97 +561338,291.51,45.456 +561339,290.7,47.807 +561340,290.03,50.042 +561341,291.31,42.981 +561342,290.26,45.476 +561343,289.4,47.835 +561344,288.68,50.077 +561345,290.12,42.993 +561346,289.01,45.497 +561347,288.1,47.862 +561348,287.33,50.11 +561349,288.93,43.008 +561350,287.76,45.518 +561351,286.8,47.889 +561352,285.98,50.142 +561353,287.75,43.024 +561354,286.52,45.54 +561355,285.49,47.915 +561356,284.63,50.171 +561357,286.56,43.043 +561358,285.27,45.563 +561359,284.19,47.941 +561360,283.28,50.2 +561361,285.37,43.063 +561362,284.02,45.586 +561363,282.89,47.966 +561364,281.93,50.226 +561365,284.18,43.086 +561366,282.77,45.61 +561367,281.59,47.991 +561368,280.58,50.251 +561369,282.99,43.111 +561370,281.52,45.635 +561371,280.29,48.015 +561372,279.23,50.274 +561373,281.79,43.137 +561374,280.27,45.66 +561375,278.98,48.038 +561376,277.88,50.295 +561377,280.6,43.166 +561378,279.02,45.686 +561379,277.68,48.061 +561380,276.53,50.315 +561381,279.4,43.197 +561382,277.77,45.712 +561383,276.38,48.084 +561384,275.19,50.333 +561385,278.2,43.23 +561386,276.51,45.74 +561387,275.08,48.105 +561388,273.84,50.349 +561389,277,43.265 +561390,275.26,45.768 +561391,273.78,48.127 +561392,272.5,50.364 +561393,275.8,43.301 +561394,274.01,45.796 +561395,272.48,48.147 +561396,271.15,50.377 +561397,274.6,43.34 +561398,272.76,45.825 +561399,271.18,48.167 +561400,269.81,50.388 +561401,273.4,43.381 +561402,271.5,45.855 +561403,269.88,48.187 +561404,268.47,50.398 +561405,272.19,43.424 +561406,270.25,45.886 +561407,268.58,48.206 +561408,267.13,50.406 +561409,270.99,43.469 +561410,268.99,45.917 +561411,267.28,48.224 +561412,265.79,50.413 +561413,269.78,43.515 +561414,267.74,45.949 +561415,265.98,48.242 +561416,264.45,50.417 +561417,268.57,43.564 +561418,266.48,45.981 +561419,264.69,48.26 +561420,263.11,50.421 +561421,267.35,43.615 +561422,265.22,46.015 +561423,263.39,48.277 +561424,261.77,50.422 +561425,266.14,43.667 +561426,263.97,46.048 +561427,262.09,48.293 +561428,260.44,50.422 +561429,264.92,43.721 +561430,262.71,46.083 +561431,260.79,48.309 +561432,259.1,50.421 +561433,263.7,43.777 +561434,261.45,46.118 +561435,259.5,48.324 +561436,257.77,50.418 +561437,262.48,43.835 +561438,260.19,46.153 +561439,258.2,48.339 +561440,256.44,50.413 +561441,261.26,43.895 +561442,258.93,46.189 +561443,256.9,48.353 +561444,255.11,50.407 +561445,260.04,43.957 +561446,257.67,46.226 +561447,255.61,48.367 +561448,253.78,50.4 +561449,258.81,44.02 +561450,256.41,46.264 +561451,254.31,48.381 +561452,252.45,50.391 +561453,257.58,44.085 +561454,255.15,46.302 +561455,253.02,48.394 +561456,251.12,50.38 +561457,256.35,44.152 +561458,253.89,46.34 +561459,251.72,48.406 +561460,249.79,50.368 +561461,255.12,44.221 +561462,252.62,46.379 +561463,250.43,48.418 +561464,248.47,50.355 +561465,253.88,44.291 +561466,251.36,46.419 +561467,249.14,48.429 +561468,247.15,50.34 +561469,252.64,44.362 +561470,250.09,46.459 +561471,247.84,48.44 +561472,245.82,50.324 +561473,251.4,44.436 +561474,248.83,46.5 +561475,246.55,48.451 +561476,244.5,50.306 +561477,250.16,44.511 +561478,247.56,46.541 +561479,245.26,48.461 +561480,243.18,50.287 +561481,248.92,44.587 +561482,246.3,46.583 +561483,243.97,48.471 +561484,241.87,50.267 +561485,247.67,44.665 +561486,245.03,46.625 +561487,242.68,48.48 +561488,240.55,50.245 +561489,246.42,44.744 +561490,243.76,46.668 +561491,241.39,48.489 +561492,239.24,50.222 +561493,245.17,44.825 +561494,242.49,46.711 +561495,240.1,48.497 +561496,237.92,50.198 +561497,243.92,44.907 +561498,241.22,46.754 +561499,238.81,48.505 +561500,236.61,50.173 +561501,242.66,44.991 +561502,239.95,46.799 +561503,237.52,48.513 +561504,235.3,50.146 +561505,241.4,45.075 +561506,238.68,46.843 +561507,236.23,48.52 +561508,233.99,50.118 +561509,240.14,45.161 +561510,237.41,46.888 +561511,234.94,48.527 +561512,232.69,50.089 +561513,238.88,45.249 +561514,236.14,46.934 +561515,233.65,48.533 +561516,231.38,50.059 +561517,237.62,45.337 +561518,234.86,46.98 +561519,232.37,48.54 +561520,230.08,50.028 +561521,236.35,45.427 +561522,233.59,47.026 +561523,231.08,48.546 +561524,228.78,49.996 +561525,235.08,45.518 +561526,232.31,47.073 +561527,229.79,48.551 +561528,227.48,49.962 +561529,233.81,45.61 +561530,231.04,47.12 +561531,228.51,48.556 +561532,226.18,49.928 +561533,232.53,45.703 +561534,229.76,47.167 +561535,227.22,48.561 +561536,224.88,49.893 +561537,231.25,45.796 +561538,228.48,47.215 +561539,225.94,48.566 +561540,223.59,49.856 +561541,229.98,45.891 +561542,227.2,47.263 +561543,224.66,48.57 +561544,222.29,49.819 +561545,228.69,45.987 +561546,225.92,47.312 +561547,223.37,48.574 +561548,221,49.781 +561549,227.41,46.084 +561550,224.64,47.361 +561551,222.09,48.578 +561552,219.71,49.742 +561553,226.13,46.181 +561554,223.36,47.41 +561555,220.81,48.581 +561556,218.42,49.702 +561557,224.84,46.279 +561558,222.08,47.459 +561559,219.53,48.584 +561560,217.14,49.661 +561561,223.55,46.378 +561562,220.8,47.509 +561563,218.25,48.587 +561564,215.85,49.62 +561565,222.25,46.478 +561566,219.52,47.559 +561567,216.97,48.59 +561568,214.57,49.578 +561569,220.96,46.578 +561570,218.23,47.609 +561571,215.69,48.593 +561572,213.29,49.535 +561573,219.66,46.679 +561574,216.95,47.66 +561575,214.41,48.595 +561576,212.01,49.491 +561577,218.36,46.781 +561578,215.66,47.711 +561579,213.13,48.597 +561580,210.73,49.447 +561581,217.06,46.883 +561582,214.38,47.761 +561583,211.85,48.6 +561584,209.46,49.402 +561585,215.76,46.986 +561586,213.09,47.813 +561587,210.57,48.601 +561588,208.19,49.356 +561589,214.45,47.089 +561590,211.8,47.864 +561591,209.3,48.603 +561592,206.92,49.31 +561593,213.15,47.192 +561594,210.52,47.915 +561595,208.02,48.605 +561596,205.65,49.264 +561597,211.84,47.296 +561598,209.23,47.967 +561599,206.75,48.606 +561600,204.38,49.217 +561601,210.53,47.4 +561602,207.94,48.019 +561603,205.47,48.608 +561604,203.11,49.169 +561605,209.21,47.504 +561606,206.65,48.071 +561607,204.2,48.609 +561608,201.85,49.122 +561609,207.9,47.609 +561610,205.35,48.123 +561611,202.92,48.61 +561612,200.59,49.073 +561613,206.58,47.714 +561614,204.06,48.175 +561615,201.65,48.611 +561616,199.33,49.025 +561617,205.26,47.819 +561618,202.77,48.227 +561619,200.38,48.612 +561620,198.07,48.976 +561621,203.94,47.924 +561622,201.48,48.28 +561623,199.1,48.613 +561624,196.81,48.927 +561625,202.62,48.029 +561626,200.18,48.332 +561627,197.83,48.614 +561628,195.56,48.878 +561629,201.29,48.134 +561630,198.89,48.384 +561631,196.56,48.615 +561632,194.31,48.829 +561633,199.96,48.239 +561634,197.59,48.437 +561635,195.29,48.616 +561636,193.06,48.779 +561637,198.64,48.344 +561638,196.3,48.489 +561639,194.02,48.617 +561640,191.81,48.729 +561641,197.31,48.449 +561642,195,48.542 +561643,192.75,48.618 +561644,190.56,48.68 +561645,195.97,48.553 +561646,193.7,48.594 +561647,191.48,48.619 +561648,189.32,48.63 +561649,194.64,48.658 +561650,192.4,48.647 +561651,190.21,48.62 +561652,188.07,48.58 +561653,193.31,48.762 +561654,191.1,48.699 +561655,188.95,48.622 +561656,186.83,48.531 +561657,191.97,48.866 +561658,189.8,48.752 +561659,187.68,48.623 +561660,185.59,48.481 +561661,190.63,48.97 +561662,188.5,48.804 +561663,186.41,48.624 +561664,184.35,48.432 +561665,189.29,49.073 +561666,187.2,48.856 +561667,185.15,48.625 +561668,183.12,48.382 +561669,187.95,49.176 +561670,185.9,48.909 +561671,183.88,48.627 +561672,181.88,48.333 +561673,186.61,49.279 +561674,184.6,48.961 +561675,182.61,48.629 +561676,180.65,48.284 +561677,185.27,49.381 +561678,183.3,49.013 +561679,181.35,48.63 +561680,179.42,48.236 +561681,183.92,49.483 +561682,181.99,49.064 +561683,180.09,48.632 +561684,178.19,48.188 +561685,182.57,49.584 +561686,180.69,49.116 +561687,178.82,48.634 +561688,176.96,48.14 +561689,181.23,49.684 +561690,179.39,49.168 +561691,177.56,48.637 +561692,175.74,48.093 +561693,179.88,49.784 +561694,178.08,49.219 +561695,176.29,48.639 +561696,174.51,48.046 +561697,178.53,49.884 +561698,176.78,49.27 +561699,175.03,48.642 +561700,173.29,47.999 +561701,177.17,49.982 +561702,175.47,49.321 +561703,173.77,48.645 +561704,172.07,47.953 +561705,175.82,50.08 +561706,174.16,49.372 +561707,172.51,48.648 +561708,170.85,47.908 +561709,174.47,50.177 +561710,172.86,49.423 +561711,171.25,48.651 +561712,169.63,47.863 +561713,173.11,50.274 +561714,171.55,49.473 +561715,169.98,48.655 +561716,168.42,47.819 +561717,171.76,50.369 +561718,170.24,49.523 +561719,168.72,48.659 +561720,167.2,47.776 +561721,170.4,50.464 +561722,168.93,49.573 +561723,167.46,48.663 +561724,165.99,47.733 +561725,169.04,50.558 +561726,167.63,49.623 +561727,166.2,48.667 +561728,164.77,47.691 +561729,167.68,50.651 +561730,166.32,49.672 +561731,164.94,48.672 +561732,163.56,47.65 +561733,166.32,50.743 +561734,165.01,49.721 +561735,163.68,48.677 +561736,162.35,47.609 +561737,164.96,50.834 +561738,163.7,49.77 +561739,162.43,48.682 +561740,161.15,47.57 +561741,163.6,50.924 +561742,162.39,49.819 +561743,161.17,48.688 +561744,159.94,47.531 +561745,162.24,51.013 +561746,161.08,49.867 +561747,159.91,48.694 +561748,158.73,47.494 +561749,160.88,51.101 +561750,159.76,49.915 +561751,158.65,48.7 +561752,157.53,47.457 +561753,159.51,51.188 +561754,158.45,49.962 +561755,157.39,48.707 +561756,156.33,47.421 +561757,158.15,51.273 +561758,157.14,50.01 +561759,156.13,48.714 +561760,155.12,47.386 +561761,156.78,51.358 +561762,155.83,50.056 +561763,154.88,48.722 +561764,153.92,47.353 +561765,155.42,51.442 +561766,154.52,50.103 +561767,153.62,48.729 +561768,152.72,47.32 +561769,154.05,51.524 +561770,153.2,50.149 +561771,152.36,48.738 +561772,151.52,47.289 +561773,152.68,51.605 +561774,151.89,50.195 +561775,151.1,48.746 +561776,150.32,47.259 +561777,151.32,51.685 +561778,150.58,50.24 +561779,149.85,48.756 +561780,149.13,47.23 +561781,149.95,51.764 +561782,149.26,50.285 +561783,148.59,48.765 +561784,147.93,47.202 +561785,148.58,51.841 +561786,147.95,50.33 +561787,147.33,48.775 +561788,146.73,47.176 +561789,147.21,51.917 +561790,146.64,50.374 +561791,146.08,48.786 +561792,145.54,47.15 +561793,145.84,51.992 +561794,145.32,50.417 +561795,144.82,48.796 +561796,144.34,47.126 +561797,144.47,52.065 +561798,144.01,50.461 +561799,143.56,48.808 +561800,143.15,47.104 +561801,143.11,52.138 +561802,142.69,50.504 +561803,142.31,48.82 +561804,141.95,47.083 +561805,141.74,52.208 +561806,141.38,50.546 +561807,141.05,48.832 +561808,140.76,47.063 +561809,140.37,52.278 +561810,140.06,50.588 +561811,139.8,48.845 +561812,139.57,47.045 +561813,139,52.346 +561814,138.75,50.629 +561815,138.54,48.858 +561816,138.38,47.028 +561817,137.63,52.412 +561818,137.43,50.67 +561819,137.28,48.872 +561820,137.18,47.012 +561821,136.26,52.477 +561822,136.12,50.711 +561823,136.03,48.886 +561824,135.99,46.999 +561825,134.89,52.541 +561826,134.8,50.751 +561827,134.77,48.901 +561828,134.8,46.986 +561829,133.52,52.603 +561830,133.49,50.791 +561831,133.52,48.916 +561832,133.61,46.975 +561833,132.15,52.664 +561834,132.17,50.83 +561835,132.26,48.932 +561836,132.42,46.966 +561837,130.78,52.723 +561838,130.86,50.868 +561839,131,48.949 +561840,131.23,46.958 +561841,129.41,52.781 +561842,129.54,50.906 +561843,129.75,48.966 +561844,130.04,46.952 +561845,128.04,52.837 +561846,128.23,50.944 +561847,128.49,48.983 +561848,128.84,46.948 +561849,126.67,52.892 +561850,126.91,50.981 +561851,127.23,49.001 +561852,127.65,46.945 +561853,125.3,52.945 +561854,125.59,51.018 +561855,125.98,49.02 +561856,126.46,46.944 +561857,123.93,52.997 +561858,124.28,51.054 +561859,124.72,49.039 +561860,125.27,46.945 +561861,122.56,53.047 +561862,122.96,51.089 +561863,123.46,49.059 +561864,124.08,46.947 +561865,121.19,53.095 +561866,121.65,51.125 +561867,122.2,49.079 +561868,122.88,46.951 +561869,119.82,53.142 +561870,120.33,51.159 +561871,120.95,49.1 +561872,121.69,46.957 +561873,118.45,53.188 +561874,119.02,51.193 +561875,119.69,49.122 +561876,120.5,46.964 +561877,117.09,53.231 +561878,117.7,51.227 +561879,118.43,49.144 +561880,119.3,46.973 +561881,115.72,53.274 +561882,116.39,51.259 +561883,117.17,49.166 +561884,118.11,46.984 +561885,114.35,53.314 +561886,115.07,51.292 +561887,115.91,49.189 +561888,116.91,46.997 +561889,112.99,53.353 +561890,113.76,51.324 +561891,114.65,49.213 +561892,115.71,47.011 +561893,111.62,53.391 +561894,112.44,51.355 +561895,113.39,49.238 +561896,114.52,47.028 +561897,110.26,53.427 +561898,111.13,51.386 +561899,112.13,49.262 +561900,113.32,47.046 +561901,108.89,53.461 +561902,109.81,51.416 +561903,110.87,49.288 +561904,112.12,47.065 +561905,107.53,53.494 +561906,108.5,51.446 +561907,109.61,49.314 +561908,110.92,47.087 +561909,106.17,53.525 +561910,107.18,51.475 +561911,108.35,49.341 +561912,109.72,47.11 +561913,104.8,53.555 +561914,105.87,51.504 +561915,107.09,49.368 +561916,108.52,47.136 +561917,103.44,53.583 +561918,104.56,51.532 +561919,105.83,49.396 +561920,107.31,47.163 +561921,102.08,53.609 +561922,103.24,51.56 +561923,104.57,49.424 +561924,106.11,47.191 +561925,100.72,53.634 +561926,101.93,51.587 +561927,103.31,49.453 +561928,104.9,47.222 +561929,99.363,53.657 +561930,100.62,51.613 +561931,102.04,49.483 +561932,103.69,47.254 +561933,98.004,53.679 +561934,99.303,51.639 +561935,100.78,49.513 +561936,102.48,47.288 +561937,96.647,53.699 +561938,97.99,51.665 +561939,99.517,49.544 +561940,101.27,47.324 +561941,95.291,53.718 +561942,96.678,51.69 +561943,98.253,49.575 +561944,100.06,47.362 +561945,93.935,53.735 +561946,95.367,51.714 +561947,96.988,49.607 +561948,98.85,47.401 +561949,92.581,53.75 +561950,94.055,51.738 +561951,95.722,49.64 +561952,97.635,47.442 +561953,91.227,53.764 +561954,92.744,51.761 +561955,94.457,49.673 +561956,96.419,47.485 +561957,89.875,53.777 +561958,91.433,51.784 +561959,93.19,49.706 +561960,95.2,47.53 +561961,88.524,53.787 +561962,90.122,51.807 +561963,91.923,49.74 +561964,93.981,47.576 +561965,87.174,53.797 +561966,88.812,51.828 +561967,90.656,49.775 +561968,92.759,47.624 +561969,85.825,53.805 +561970,87.502,51.85 +561971,89.388,49.81 +561972,91.536,47.674 +561973,84.477,53.811 +561974,86.193,51.871 +561975,88.119,49.846 +561976,90.311,47.725 +561977,83.13,53.816 +561978,84.884,51.891 +561979,86.85,49.883 +561980,89.084,47.778 +561981,81.785,53.82 +561982,83.575,51.911 +561983,85.58,49.919 +561984,87.855,47.833 +561985,80.44,53.822 +561986,82.267,51.93 +561987,84.309,49.957 +561988,86.624,47.89 +561989,79.097,53.822 +561990,80.959,51.949 +561991,83.038,49.995 +561992,85.391,47.947 +561993,77.756,53.822 +561994,79.652,51.967 +561995,81.766,50.033 +561996,84.156,48.007 +561997,76.415,53.819 +561998,78.345,51.985 +561999,80.494,50.072 +562000,82.919,48.068 +562001,75.076,53.816 +562002,77.039,52.003 +562003,79.221,50.112 +562004,81.68,48.131 +562005,73.739,53.811 +562006,75.733,52.02 +562007,77.947,50.152 +562008,80.439,48.195 +562009,72.403,53.805 +562010,74.427,52.036 +562011,76.672,50.192 +562012,79.196,48.261 +562013,71.068,53.797 +562014,73.122,52.052 +562015,75.397,50.233 +562016,77.95,48.328 +562017,69.734,53.788 +562018,71.817,52.068 +562019,74.121,50.274 +562020,76.703,48.396 +562021,68.403,53.778 +562022,70.513,52.083 +562023,72.845,50.316 +562024,75.453,48.466 +562025,67.072,53.767 +562026,69.21,52.098 +562027,71.567,50.359 +562028,74.201,48.538 +562029,65.743,53.754 +562030,67.907,52.112 +562031,70.289,50.401 +562032,72.947,48.61 +562033,64.416,53.74 +562034,66.604,52.126 +562035,69.011,50.445 +562036,71.691,48.685 +562037,63.09,53.725 +562038,65.302,52.14 +562039,67.731,50.488 +562040,70.432,48.76 +562041,61.766,53.709 +562042,64,52.153 +562043,66.451,50.532 +562044,69.171,48.837 +562045,60.443,53.691 +562046,62.699,52.166 +562047,65.17,50.577 +562048,67.908,48.915 +562049,59.122,53.672 +562050,61.399,52.178 +562051,63.889,50.622 +562052,66.643,48.994 +562053,57.803,53.653 +562054,60.099,52.19 +562055,62.606,50.667 +562056,65.375,49.074 +562057,56.485,53.632 +562058,58.8,52.202 +562059,61.323,50.713 +562060,64.105,49.156 +562061,55.169,53.61 +562062,57.501,52.213 +562063,60.039,50.759 +562064,62.833,49.238 +562065,53.854,53.587 +562066,56.202,52.224 +562067,58.754,50.805 +562068,61.558,49.322 +562069,52.542,53.563 +562070,54.905,52.235 +562071,57.469,50.852 +562072,60.281,49.407 +562073,51.231,53.538 +562074,53.607,52.245 +562075,56.183,50.899 +562076,59.002,49.493 +562077,49.921,53.512 +562078,52.311,52.255 +562079,54.896,50.947 +562080,57.72,49.579 +562081,48.614,53.486 +562082,51.015,52.265 +562083,53.608,50.994 +562084,56.437,49.667 +562085,47.308,53.458 +562086,49.719,52.274 +562087,52.32,51.042 +562088,55.151,49.756 +562089,46.004,53.429 +562090,48.424,52.283 +562091,51.031,51.091 +562092,53.862,49.845 +562093,44.702,53.4 +562094,47.13,52.292 +562095,49.741,51.14 +562096,52.572,49.936 +562097,43.401,53.37 +562098,45.836,52.301 +562099,48.45,51.188 +562100,51.279,50.027 +562101,42.102,53.339 +562102,44.543,52.309 +562103,47.158,51.238 +562104,49.984,50.119 +562105,40.806,53.307 +562106,43.251,52.317 +562107,45.866,51.287 +562108,48.686,50.212 +562109,39.51,53.274 +562110,41.959,52.325 +562111,44.573,51.337 +562112,47.387,50.305 +562113,38.217,53.241 +562114,40.667,52.332 +562115,43.279,51.387 +562116,46.085,50.399 +562117,36.926,53.207 +562118,39.376,52.34 +562119,41.985,51.437 +562120,44.781,50.494 +562121,35.636,53.173 +562122,38.086,52.347 +562123,40.689,51.487 +562124,43.475,50.589 +562125,34.349,53.137 +562126,36.796,52.354 +562127,39.393,51.538 +562128,42.166,50.685 +562129,33.063,53.102 +562130,35.507,52.361 +562131,38.096,51.589 +562132,40.856,50.781 +562133,31.779,53.065 +562134,34.219,52.368 +562135,36.799,51.64 +562136,39.543,50.878 +562137,30.496,53.029 +562138,32.931,52.374 +562139,35.501,51.691 +562140,38.228,50.975 +562141,29.216,52.991 +562142,31.644,52.38 +562143,34.202,51.742 +562144,36.912,51.073 +562145,27.938,52.954 +562146,30.357,52.387 +562147,32.902,51.793 +562148,35.593,51.171 +562149,26.661,52.916 +562150,29.071,52.393 +562151,31.601,51.845 +562152,34.272,51.269 +562153,25.386,52.877 +562154,27.785,52.399 +562155,30.3,51.896 +562156,32.949,51.367 +562157,24.113,52.838 +562158,26.5,52.405 +562159,28.998,51.948 +562160,31.624,51.466 +562161,22.842,52.799 +562162,25.216,52.41 +562163,27.696,52 +562164,30.297,51.565 +562165,21.573,52.76 +562166,23.932,52.416 +562167,26.392,52.052 +562168,28.969,51.664 +562169,20.306,52.72 +562170,22.649,52.422 +562171,25.088,52.104 +562172,27.638,51.763 +562173,19.04,52.681 +562174,21.366,52.427 +562175,23.783,52.156 +562176,26.305,51.863 +562177,17.777,52.641 +562178,20.084,52.433 +562179,22.478,52.208 +562180,24.971,51.962 +562181,16.515,52.601 +562182,18.802,52.438 +562183,21.172,52.26 +562184,23.635,52.061 +562185,15.255,52.56 +562186,17.521,52.444 +562187,19.865,52.312 +562188,22.297,52.161 +562189,13.997,52.52 +562190,16.241,52.45 +562191,18.558,52.364 +562192,20.957,52.26 +562193,12.74,52.48 +562194,14.961,52.455 +562195,17.25,52.416 +562196,19.616,52.359 +562197,11.486,52.44 +562198,13.681,52.461 +562199,15.941,52.468 +562200,18.273,52.458 +562201,10.233,52.399 +562202,12.402,52.466 +562203,14.632,52.52 +562204,16.928,52.557 +562205,8.9816,52.359 +562206,11.124,52.472 +562207,13.322,52.571 +562208,15.582,52.656 +562209,7.7322,52.319 +562210,9.8459,52.478 +562211,12.011,52.623 +562212,14.234,52.754 +562213,6.4846,52.279 +562214,8.5685,52.483 +562215,10.7,52.675 +562216,12.884,52.852 +562217,5.2387,52.24 +562218,7.2916,52.489 +562219,9.388,52.727 +562220,11.533,52.95 +562221,3.9945,52.2 +562222,6.0152,52.495 +562223,8.0757,52.778 +562224,10.181,53.047 +562225,2.7519,52.161 +562226,4.7392,52.501 +562227,6.7627,52.83 +562228,8.8266,53.144 +562229,1.511,52.122 +562230,3.4637,52.507 +562231,5.4492,52.881 +562232,7.4712,53.241 +562233,0.2718,52.083 +562234,2.1887,52.514 +562235,4.1351,52.932 +562236,6.1145,53.337 +562237,359.03,52.045 +562238,0.9141,52.52 +562239,2.8205,52.983 +562240,4.7564,53.432 +562241,357.8,52.007 +562242,359.64,52.527 +562243,1.5054,53.034 +562244,3.3971,53.527 +562245,356.56,51.97 +562246,358.37,52.533 +562247,0.1897,53.085 +562248,2.0364,53.622 +562249,355.33,51.933 +562250,357.09,52.54 +562251,358.87,53.135 +562252,0.67459,53.716 +562253,354.1,51.897 +562254,355.82,52.547 +562255,357.56,53.185 +562256,359.31,53.809 +562257,352.87,51.861 +562258,354.55,52.555 +562259,356.24,53.235 +562260,357.95,53.901 +562261,351.64,51.825 +562262,353.28,52.562 +562263,354.92,53.285 +562264,356.58,53.993 +562265,350.41,51.791 +562266,352,52.57 +562267,353.6,53.335 +562268,355.22,54.085 +562269,349.19,51.757 +562270,350.73,52.578 +562271,352.29,53.384 +562272,353.85,54.175 +562273,347.96,51.723 +562274,349.46,52.586 +562275,350.97,53.433 +562276,352.48,54.264 +562277,346.74,51.69 +562278,348.19,52.594 +562279,349.65,53.482 +562280,351.11,54.353 +562281,345.52,51.658 +562282,346.92,52.603 +562283,348.33,53.531 +562284,349.74,54.441 +562285,344.3,51.627 +562286,345.65,52.612 +562287,347.01,53.579 +562288,348.37,54.528 +562289,343.08,51.597 +562290,344.38,52.621 +562291,345.69,53.627 +562292,347,54.614 +562293,341.86,51.567 +562294,343.11,52.631 +562295,344.37,53.675 +562296,345.62,54.7 +562297,340.64,51.539 +562298,341.84,52.641 +562299,343.04,53.723 +562300,344.25,54.784 +562301,339.43,51.511 +562302,340.57,52.651 +562303,341.72,53.77 +562304,342.88,54.867 +562305,338.21,51.484 +562306,339.31,52.661 +562307,340.4,53.817 +562308,341.5,54.95 +562309,337,51.458 +562310,338.04,52.672 +562311,339.08,53.863 +562312,340.13,55.031 +562313,335.79,51.433 +562314,336.77,52.683 +562315,337.76,53.909 +562316,338.75,55.111 +562317,334.58,51.409 +562318,335.5,52.694 +562319,336.43,53.955 +562320,337.37,55.19 +562321,333.37,51.386 +562322,334.23,52.706 +562323,335.11,54 +562324,335.99,55.268 +562325,332.16,51.364 +562326,332.97,52.718 +562327,333.79,54.045 +562328,334.62,55.345 +562329,330.95,51.344 +562330,331.7,52.731 +562331,332.46,54.09 +562332,333.24,55.421 +562333,329.74,51.324 +562334,330.43,52.744 +562335,331.14,54.134 +562336,331.86,55.495 +562337,328.53,51.306 +562338,329.16,52.757 +562339,329.81,54.178 +562340,330.48,55.569 +562341,327.32,51.288 +562342,327.9,52.771 +562343,328.49,54.222 +562344,329.1,55.641 +562345,326.12,51.272 +562346,326.63,52.785 +562347,327.17,54.265 +562348,327.72,55.712 +562349,324.91,51.257 +562350,325.36,52.8 +562351,325.84,54.308 +562352,326.34,55.782 +562353,323.7,51.244 +562354,324.1,52.815 +562355,324.52,54.35 +562356,324.96,55.85 +562357,322.5,51.232 +562358,322.83,52.83 +562359,323.19,54.392 +562360,323.58,55.917 +562361,321.3,51.22 +562362,321.56,52.846 +562363,321.87,54.433 +562364,322.2,55.983 +562365,320.09,51.211 +562366,320.3,52.862 +562367,320.54,54.474 +562368,320.82,56.048 +562369,318.89,51.202 +562370,319.03,52.879 +562371,319.22,54.515 +562372,319.44,56.111 +562373,317.68,51.195 +562374,317.76,52.896 +562375,317.89,54.555 +562376,318.06,56.173 +562377,316.48,51.19 +562378,316.5,52.913 +562379,316.56,54.594 +562380,316.67,56.234 +562381,315.28,51.185 +562382,315.23,52.931 +562383,315.24,54.633 +562384,315.29,56.293 +562385,314.07,51.183 +562386,313.96,52.95 +562387,313.91,54.672 +562388,313.91,56.351 +562389,312.87,51.181 +562390,312.7,52.969 +562391,312.59,54.71 +562392,312.53,56.407 +562393,311.67,51.181 +562394,311.43,52.988 +562395,311.26,54.748 +562396,311.15,56.462 +562397,310.46,51.183 +562398,310.16,53.008 +562399,309.94,54.785 +562400,309.77,56.516 +562401,309.26,51.185 +562402,308.9,53.029 +562403,308.61,54.822 +562404,308.39,56.568 +562405,308.06,51.19 +562406,307.63,53.05 +562407,307.28,54.858 +562408,307.01,56.619 +562409,306.85,51.196 +562410,306.36,53.071 +562411,305.96,54.894 +562412,305.63,56.668 +562413,305.65,51.203 +562414,305.1,53.093 +562415,304.63,54.929 +562416,304.25,56.716 +562417,304.44,51.212 +562418,303.83,53.115 +562419,303.31,54.964 +562420,302.87,56.762 +562421,303.24,51.223 +562422,302.56,53.138 +562423,301.98,54.999 +562424,301.49,56.807 +562425,302.03,51.235 +562426,301.29,53.162 +562427,300.66,55.032 +562428,300.11,56.851 +562429,300.83,51.248 +562430,300.02,53.185 +562431,299.33,55.066 +562432,298.74,56.893 +562433,299.62,51.263 +562434,298.76,53.21 +562435,298.01,55.099 +562436,297.36,56.934 +562437,298.42,51.28 +562438,297.49,53.235 +562439,296.68,55.131 +562440,295.98,56.973 +562441,297.21,51.298 +562442,296.22,53.26 +562443,295.36,55.163 +562444,294.6,57.01 +562445,296,51.318 +562446,294.95,53.286 +562447,294.03,55.194 +562448,293.23,57.046 +562449,294.79,51.339 +562450,293.68,53.313 +562451,292.71,55.225 +562452,291.85,57.081 +562453,293.58,51.362 +562454,292.41,53.34 +562455,291.38,55.255 +562456,290.48,57.114 +562457,292.37,51.387 +562458,291.14,53.367 +562459,290.06,55.285 +562460,289.1,57.146 +562461,291.16,51.413 +562462,289.87,53.395 +562463,288.74,55.314 +562464,287.73,57.176 +562465,289.94,51.441 +562466,288.6,53.423 +562467,287.41,55.343 +562468,286.36,57.205 +562469,288.73,51.47 +562470,287.33,53.452 +562471,286.09,55.371 +562472,284.99,57.232 +562473,287.51,51.501 +562474,286.05,53.482 +562475,284.76,55.399 +562476,283.62,57.258 +562477,286.3,51.533 +562478,284.78,53.512 +562479,283.44,55.426 +562480,282.25,57.282 +562481,285.08,51.567 +562482,283.51,53.542 +562483,282.12,55.453 +562484,280.88,57.305 +562485,283.86,51.603 +562486,282.24,53.573 +562487,280.8,55.479 +562488,279.51,57.326 +562489,282.64,51.64 +562490,280.96,53.605 +562491,279.47,55.505 +562492,278.14,57.346 +562493,281.42,51.679 +562494,279.69,53.637 +562495,278.15,55.53 +562496,276.78,57.365 +562497,280.19,51.719 +562498,278.41,53.67 +562499,276.83,55.555 +562500,275.41,57.382 +562501,278.97,51.761 +562502,277.14,53.703 +562503,275.51,55.579 +562504,274.05,57.398 +562505,277.74,51.804 +562506,275.86,53.736 +562507,274.19,55.603 +562508,272.68,57.412 +562509,276.52,51.849 +562510,274.59,53.77 +562511,272.87,55.627 +562512,271.32,57.425 +562513,275.29,51.896 +562514,273.31,53.805 +562515,271.55,55.649 +562516,269.96,57.436 +562517,274.06,51.943 +562518,272.04,53.84 +562519,270.23,55.672 +562520,268.6,57.446 +562521,272.82,51.993 +562522,270.76,53.875 +562523,268.91,55.694 +562524,267.24,57.455 +562525,271.59,52.044 +562526,269.48,53.911 +562527,267.59,55.715 +562528,265.88,57.462 +562529,270.35,52.096 +562530,268.2,53.947 +562531,266.27,55.736 +562532,264.53,57.468 +562533,269.12,52.149 +562534,266.92,53.984 +562535,264.95,55.756 +562536,263.17,57.472 +562537,267.88,52.205 +562538,265.64,54.022 +562539,263.64,55.776 +562540,261.82,57.475 +562541,266.64,52.261 +562542,264.36,54.059 +562543,262.32,55.796 +562544,260.47,57.477 +562545,265.39,52.319 +562546,263.08,54.098 +562547,261,55.815 +562548,259.11,57.478 +562549,264.15,52.378 +562550,261.8,54.136 +562551,259.69,55.834 +562552,257.76,57.477 +562553,262.9,52.439 +562554,260.52,54.175 +562555,258.37,55.852 +562556,256.42,57.475 +562557,261.65,52.501 +562558,259.24,54.215 +562559,257.06,55.87 +562560,255.07,57.472 +562561,260.4,52.564 +562562,257.95,54.255 +562563,255.74,55.887 +562564,253.72,57.467 +562565,259.15,52.629 +562566,256.67,54.295 +562567,254.43,55.904 +562568,252.38,57.462 +562569,257.89,52.695 +562570,255.38,54.336 +562571,253.11,55.921 +562572,251.04,57.455 +562573,256.63,52.762 +562574,254.1,54.377 +562575,251.8,55.937 +562576,249.69,57.447 +562577,255.37,52.83 +562578,252.81,54.419 +562579,250.49,55.952 +562580,248.35,57.438 +562581,254.11,52.9 +562582,251.52,54.461 +562583,249.17,55.968 +562584,247.02,57.427 +562585,252.85,52.97 +562586,250.24,54.503 +562587,247.86,55.983 +562588,245.68,57.416 +562589,251.58,53.042 +562590,248.95,54.546 +562591,246.55,55.997 +562592,244.34,57.403 +562593,250.32,53.115 +562594,247.66,54.589 +562595,245.24,56.012 +562596,243.01,57.389 +562597,249.05,53.189 +562598,246.37,54.632 +562599,243.93,56.025 +562600,241.68,57.375 +562601,247.77,53.264 +562602,245.08,54.676 +562603,242.62,56.039 +562604,240.35,57.359 +562605,246.5,53.34 +562606,243.79,54.72 +562607,241.31,56.052 +562608,239.02,57.342 +562609,245.22,53.417 +562610,242.5,54.764 +562611,240,56.065 +562612,237.69,57.324 +562613,243.94,53.495 +562614,241.21,54.809 +562615,238.69,56.077 +562616,236.37,57.305 +562617,242.66,53.574 +562618,239.91,54.854 +562619,237.39,56.09 +562620,235.04,57.286 +562621,241.38,53.654 +562622,238.62,54.899 +562623,236.08,56.101 +562624,233.72,57.265 +562625,240.1,53.735 +562626,237.32,54.945 +562627,234.77,56.113 +562628,232.4,57.244 +562629,238.81,53.817 +562630,236.03,54.991 +562631,233.47,56.124 +562632,231.08,57.221 +562633,237.52,53.9 +562634,234.73,55.037 +562635,232.16,56.135 +562636,229.77,57.198 +562637,236.23,53.983 +562638,233.44,55.084 +562639,230.86,56.146 +562640,228.45,57.174 +562641,234.93,54.067 +562642,232.14,55.13 +562643,229.55,56.156 +562644,227.14,57.149 +562645,233.64,54.152 +562646,230.84,55.177 +562647,228.25,56.167 +562648,225.83,57.124 +562649,232.34,54.237 +562650,229.54,55.224 +562651,226.95,56.176 +562652,224.52,57.098 +562653,231.04,54.323 +562654,228.24,55.272 +562655,225.64,56.186 +562656,223.21,57.071 +562657,229.73,54.41 +562658,226.94,55.319 +562659,224.34,56.196 +562660,221.9,57.043 +562661,228.43,54.498 +562662,225.64,55.367 +562663,223.04,56.205 +562664,220.6,57.015 +562665,227.12,54.586 +562666,224.34,55.415 +562667,221.74,56.214 +562668,219.3,56.986 +562669,225.81,54.674 +562670,223.04,55.463 +562671,220.44,56.223 +562672,217.99,56.956 +562673,224.5,54.763 +562674,221.73,55.512 +562675,219.14,56.231 +562676,216.7,56.926 +562677,223.19,54.853 +562678,220.43,55.56 +562679,217.84,56.24 +562680,215.4,56.896 +562681,221.87,54.943 +562682,219.12,55.609 +562683,216.54,56.248 +562684,214.1,56.865 +562685,220.55,55.033 +562686,217.82,55.657 +562687,215.25,56.256 +562688,212.81,56.833 +562689,219.23,55.124 +562690,216.51,55.706 +562691,213.95,56.264 +562692,211.52,56.801 +562693,217.91,55.214 +562694,215.21,55.755 +562695,212.65,56.272 +562696,210.23,56.769 +562697,216.58,55.306 +562698,213.9,55.804 +562699,211.36,56.28 +562700,208.94,56.736 +562701,215.26,55.397 +562702,212.59,55.853 +562703,210.06,56.288 +562704,207.65,56.703 +562705,213.93,55.489 +562706,211.28,55.903 +562707,208.77,56.295 +562708,206.37,56.67 +562709,212.6,55.581 +562710,209.97,55.952 +562711,207.47,56.303 +562712,205.09,56.636 +562713,211.27,55.673 +562714,208.66,56.001 +562715,206.18,56.31 +562716,203.81,56.603 +562717,209.93,55.765 +562718,207.35,56.051 +562719,204.89,56.318 +562720,202.53,56.569 +562721,208.6,55.857 +562722,206.04,56.1 +562723,203.59,56.325 +562724,201.25,56.534 +562725,207.26,55.95 +562726,204.73,56.15 +562727,202.3,56.332 +562728,199.98,56.5 +562729,205.92,56.042 +562730,203.41,56.199 +562731,201.01,56.339 +562732,198.7,56.465 +562733,204.58,56.134 +562734,202.1,56.248 +562735,199.72,56.346 +562736,197.43,56.431 +562737,203.24,56.226 +562738,200.79,56.298 +562739,198.43,56.354 +562740,196.16,56.396 +562741,201.89,56.319 +562742,199.47,56.347 +562743,197.14,56.361 +562744,194.89,56.362 +562745,200.54,56.411 +562746,198.15,56.397 +562747,195.85,56.368 +562748,193.63,56.327 +562749,199.2,56.502 +562750,196.84,56.446 +562751,194.56,56.375 +562752,192.36,56.292 +562753,197.85,56.594 +562754,195.52,56.495 +562755,193.28,56.382 +562756,191.1,56.258 +562757,196.49,56.685 +562758,194.2,56.544 +562759,191.99,56.39 +562760,189.84,56.224 +562761,195.14,56.777 +562762,192.89,56.593 +562763,190.7,56.397 +562764,188.58,56.189 +562765,193.79,56.867 +562766,191.57,56.642 +562767,189.42,56.404 +562768,187.32,56.155 +562769,192.43,56.958 +562770,190.25,56.691 +562771,188.13,56.412 +562772,186.07,56.122 +562773,191.07,57.048 +562774,188.93,56.74 +562775,186.84,56.419 +562776,184.81,56.088 +562777,189.71,57.138 +562778,187.61,56.789 +562779,185.56,56.427 +562780,183.56,56.055 +562781,188.35,57.227 +562782,186.29,56.837 +562783,184.27,56.435 +562784,182.31,56.022 +562785,186.99,57.316 +562786,184.97,56.885 +562787,182.99,56.443 +562788,181.06,55.989 +562789,185.62,57.404 +562790,183.64,56.934 +562791,181.71,56.45 +562792,179.81,55.957 +562793,184.26,57.492 +562794,182.32,56.982 +562795,180.42,56.459 +562796,178.56,55.925 +562797,182.89,57.58 +562798,181,57.029 +562799,179.14,56.467 +562800,177.32,55.894 +562801,181.53,57.666 +562802,179.68,57.077 +562803,177.86,56.475 +562804,176.07,55.863 +562805,180.16,57.752 +562806,178.35,57.125 +562807,176.58,56.484 +562808,174.83,55.832 +562809,178.79,57.838 +562810,177.03,57.172 +562811,175.3,56.493 +562812,173.59,55.802 +562813,177.42,57.923 +562814,175.7,57.219 +562815,174.02,56.502 +562816,172.35,55.773 +562817,176.04,58.007 +562818,174.38,57.266 +562819,172.74,56.511 +562820,171.12,55.744 +562821,174.67,58.09 +562822,173.05,57.312 +562823,171.46,56.52 +562824,169.88,55.716 +562825,173.3,58.173 +562826,171.72,57.358 +562827,170.18,56.53 +562828,168.64,55.689 +562829,171.92,58.255 +562830,170.4,57.405 +562831,168.9,56.54 +562832,167.41,55.662 +562833,170.54,58.336 +562834,169.07,57.45 +562835,167.62,56.55 +562836,166.18,55.636 +562837,169.17,58.416 +562838,167.74,57.496 +562839,166.34,56.56 +562840,164.95,55.611 +562841,167.79,58.495 +562842,166.42,57.541 +562843,165.06,56.571 +562844,163.72,55.586 +562845,166.41,58.574 +562846,165.09,57.586 +562847,163.78,56.582 +562848,162.49,55.563 +562849,165.03,58.651 +562850,163.76,57.631 +562851,162.5,56.593 +562852,161.26,55.54 +562853,163.65,58.728 +562854,162.43,57.675 +562855,161.23,56.604 +562856,160.03,55.518 +562857,162.27,58.804 +562858,161.1,57.719 +562859,159.95,56.616 +562860,158.81,55.496 +562861,160.88,58.879 +562862,159.77,57.762 +562863,158.67,56.628 +562864,157.58,55.476 +562865,159.5,58.952 +562866,158.44,57.806 +562867,157.4,56.64 +562868,156.36,55.457 +562869,158.12,59.025 +562870,157.11,57.849 +562871,156.12,56.653 +562872,155.14,55.439 +562873,156.73,59.097 +562874,155.78,57.891 +562875,154.84,56.666 +562876,153.92,55.421 +562877,155.35,59.167 +562878,154.45,57.934 +562879,153.57,56.679 +562880,152.7,55.405 +562881,153.97,59.237 +562882,153.12,57.976 +562883,152.29,56.693 +562884,151.48,55.389 +562885,152.58,59.305 +562886,151.79,58.017 +562887,151.02,56.707 +562888,150.26,55.375 +562889,151.19,59.373 +562890,150.46,58.058 +562891,149.74,56.721 +562892,149.04,55.362 +562893,149.81,59.439 +562894,149.13,58.099 +562895,148.46,56.736 +562896,147.82,55.35 +562897,148.42,59.504 +562898,147.8,58.139 +562899,147.19,56.751 +562900,146.6,55.339 +562901,147.03,59.568 +562902,146.46,58.179 +562903,145.91,56.766 +562904,145.39,55.329 +562905,145.65,59.63 +562906,145.13,58.219 +562907,144.64,56.782 +562908,144.17,55.32 +562909,144.26,59.692 +562910,143.8,58.258 +562911,143.36,56.798 +562912,142.96,55.313 +562913,142.87,59.752 +562914,142.47,58.297 +562915,142.09,56.815 +562916,141.74,55.306 +562917,141.48,59.811 +562918,141.14,58.335 +562919,140.81,56.832 +562920,140.53,55.301 +562921,140.1,59.869 +562922,139.8,58.373 +562923,139.54,56.849 +562924,139.31,55.297 +562925,138.71,59.925 +562926,138.47,58.41 +562927,138.27,56.867 +562928,138.1,55.295 +562929,137.32,59.98 +562930,137.14,58.447 +562931,136.99,56.885 +562932,136.88,55.294 +562933,135.93,60.034 +562934,135.81,58.484 +562935,135.72,56.904 +562936,135.67,55.293 +562937,134.54,60.087 +562938,134.47,58.52 +562939,134.44,56.923 +562940,134.46,55.295 +562941,133.16,60.138 +562942,133.14,58.556 +562943,133.17,56.942 +562944,133.24,55.297 +562945,131.77,60.188 +562946,131.81,58.591 +562947,131.89,56.962 +562948,132.03,55.301 +562949,130.38,60.237 +562950,130.47,58.626 +562951,130.62,56.983 +562952,130.81,55.306 +562953,128.99,60.284 +562954,129.14,58.66 +562955,129.34,57.003 +562956,129.6,55.313 +562957,127.61,60.33 +562958,127.81,58.694 +562959,128.07,57.025 +562960,128.39,55.321 +562961,126.22,60.375 +562962,126.48,58.727 +562963,126.79,57.046 +562964,127.17,55.33 +562965,124.83,60.418 +562966,125.14,58.76 +562967,125.52,57.068 +562968,125.96,55.341 +562969,123.45,60.46 +562970,123.81,58.793 +562971,124.24,57.091 +562972,124.75,55.353 +562973,122.06,60.5 +562974,122.48,58.825 +562975,122.97,57.114 +562976,123.53,55.366 +562977,120.68,60.539 +562978,121.15,58.856 +562979,121.69,57.137 +562980,122.32,55.381 +562981,119.29,60.577 +562982,119.81,58.887 +562983,120.41,57.161 +562984,121.1,55.397 +562985,117.91,60.614 +562986,118.48,58.918 +562987,119.14,57.186 +562988,119.88,55.415 +562989,116.52,60.649 +562990,117.15,58.948 +562991,117.86,57.21 +562992,118.67,55.434 +562993,115.14,60.682 +562994,115.82,58.978 +562995,116.59,57.236 +562996,117.45,55.455 +562997,113.75,60.715 +562998,114.49,59.007 +562999,115.31,57.261 +563000,116.23,55.477 +563001,112.37,60.745 +563002,113.16,59.036 +563003,114.03,57.288 +563004,115.02,55.5 +563005,110.99,60.775 +563006,111.82,59.064 +563007,112.75,57.314 +563008,113.8,55.525 +563009,109.61,60.803 +563010,110.49,59.091 +563011,111.48,57.341 +563012,112.58,55.551 +563013,108.23,60.83 +563014,109.16,59.119 +563015,110.2,57.369 +563016,111.36,55.579 +563017,106.85,60.855 +563018,107.83,59.145 +563019,108.92,57.397 +563020,110.13,55.608 +563021,105.47,60.879 +563022,106.5,59.172 +563023,107.64,57.426 +563024,108.91,55.638 +563025,104.09,60.902 +563026,105.17,59.198 +563027,106.36,57.454 +563028,107.69,55.67 +563029,102.71,60.923 +563030,103.84,59.223 +563031,105.08,57.484 +563032,106.46,55.704 +563033,101.34,60.943 +563034,102.51,59.248 +563035,103.8,57.514 +563036,105.24,55.738 +563037,99.962,60.961 +563038,101.18,59.272 +563039,102.52,57.544 +563040,104.01,55.774 +563041,98.587,60.978 +563042,99.853,59.296 +563043,101.24,57.575 +563044,102.78,55.812 +563045,97.214,60.994 +563046,98.524,59.32 +563047,99.963,57.606 +563048,101.55,55.851 +563049,95.841,61.008 +563050,97.195,59.343 +563051,98.681,57.638 +563052,100.32,55.891 +563053,94.469,61.022 +563054,95.867,59.365 +563055,97.4,57.67 +563056,99.091,55.933 +563057,93.099,61.033 +563058,94.539,59.387 +563059,96.118,57.702 +563060,97.858,55.976 +563061,91.729,61.044 +563062,93.212,59.409 +563063,94.835,57.735 +563064,96.623,56.021 +563065,90.36,61.053 +563066,91.885,59.43 +563067,93.552,57.769 +563068,95.387,56.066 +563069,88.993,61.061 +563070,90.558,59.451 +563071,92.268,57.802 +563072,94.15,56.113 +563073,87.627,61.068 +563074,89.232,59.471 +563075,90.984,57.837 +563076,92.911,56.162 +563077,86.262,61.073 +563078,87.906,59.491 +563079,89.7,57.871 +563080,91.671,56.212 +563081,84.898,61.077 +563082,86.581,59.51 +563083,88.415,57.906 +563084,90.429,56.263 +563085,83.536,61.08 +563086,85.256,59.529 +563087,87.129,57.942 +563088,89.185,56.315 +563089,82.174,61.081 +563090,83.931,59.548 +563091,85.843,57.978 +563092,87.94,56.369 +563093,80.814,61.082 +563094,82.607,59.566 +563095,84.556,58.014 +563096,86.692,56.423 +563097,79.456,61.081 +563098,81.283,59.584 +563099,83.269,58.051 +563100,85.444,56.48 +563101,78.098,61.079 +563102,79.96,59.601 +563103,81.981,58.088 +563104,84.193,56.537 +563105,76.742,61.076 +563106,78.637,59.618 +563107,80.692,58.125 +563108,82.941,56.595 +563109,75.388,61.071 +563110,77.314,59.635 +563111,79.403,58.163 +563112,81.687,56.655 +563113,74.034,61.066 +563114,75.992,59.651 +563115,78.114,58.201 +563116,80.431,56.716 +563117,72.683,61.059 +563118,74.671,59.666 +563119,76.824,58.24 +563120,79.173,56.778 +563121,71.332,61.052 +563122,73.35,59.682 +563123,75.533,58.279 +563124,77.913,56.841 +563125,69.983,61.043 +563126,72.029,59.697 +563127,74.241,58.318 +563128,76.651,56.905 +563129,68.636,61.033 +563130,70.71,59.711 +563131,72.949,58.358 +563132,75.388,56.97 +563133,67.29,61.022 +563134,69.39,59.726 +563135,71.657,58.398 +563136,74.122,57.036 +563137,65.946,61.011 +563138,68.071,59.739 +563139,70.363,58.438 +563140,72.855,57.104 +563141,64.603,60.998 +563142,66.753,59.753 +563143,69.069,58.479 +563144,71.585,57.172 +563145,63.262,60.984 +563146,65.435,59.766 +563147,67.775,58.52 +563148,70.314,57.241 +563149,61.922,60.969 +563150,64.118,59.779 +563151,66.479,58.561 +563152,69.04,57.312 +563153,60.584,60.953 +563154,62.801,59.792 +563155,65.184,58.602 +563156,67.764,57.383 +563157,59.248,60.937 +563158,61.485,59.804 +563159,63.887,58.644 +563160,66.487,57.455 +563161,57.913,60.919 +563162,60.169,59.816 +563163,62.59,58.686 +563164,65.207,57.528 +563165,56.58,60.901 +563166,58.854,59.828 +563167,61.292,58.729 +563168,63.925,57.602 +563169,55.248,60.881 +563170,57.539,59.839 +563171,59.993,58.771 +563172,62.641,57.676 +563173,53.919,60.861 +563174,56.225,59.85 +563175,58.694,58.814 +563176,61.355,57.752 +563177,52.591,60.84 +563178,54.912,59.861 +563179,57.394,58.857 +563180,60.067,57.828 +563181,51.264,60.819 +563182,53.599,59.871 +563183,56.093,58.901 +563184,58.776,57.905 +563185,49.94,60.796 +563186,52.287,59.882 +563187,54.792,58.944 +563188,57.484,57.982 +563189,48.617,60.773 +563190,50.975,59.892 +563191,53.49,58.988 +563192,56.189,58.061 +563193,47.295,60.75 +563194,49.664,59.901 +563195,52.187,59.032 +563196,54.893,58.14 +563197,45.976,60.725 +563198,48.353,59.911 +563199,50.883,59.076 +563200,53.594,58.219 +563201,44.658,60.7 +563202,47.044,59.92 +563203,49.579,59.121 +563204,52.293,58.299 +563205,43.342,60.674 +563206,45.734,59.929 +563207,48.274,59.165 +563208,50.99,58.38 +563209,42.028,60.648 +563210,44.426,59.938 +563211,46.969,59.21 +563212,49.685,58.461 +563213,40.716,60.621 +563214,43.117,59.947 +563215,45.663,59.255 +563216,48.378,58.543 +563217,39.405,60.594 +563218,41.81,59.956 +563219,44.356,59.3 +563220,47.068,58.625 +563221,38.097,60.566 +563222,40.503,59.964 +563223,43.048,59.345 +563224,45.757,58.708 +563225,36.79,60.538 +563226,39.197,59.972 +563227,41.74,59.391 +563228,44.443,58.791 +563229,35.484,60.509 +563230,37.891,59.98 +563231,40.431,59.436 +563232,43.128,58.875 +563233,34.181,60.48 +563234,36.586,59.988 +563235,39.121,59.482 +563236,41.81,58.958 +563237,32.879,60.45 +563238,35.281,59.996 +563239,37.811,59.527 +563240,40.49,59.042 +563241,31.58,60.42 +563242,33.977,60.004 +563243,36.499,59.573 +563244,39.168,59.127 +563245,30.282,60.39 +563246,32.674,60.011 +563247,35.188,59.619 +563248,37.845,59.211 +563249,28.985,60.36 +563250,31.371,60.019 +563251,33.875,59.665 +563252,36.519,59.296 +563253,27.691,60.329 +563254,30.069,60.026 +563255,32.562,59.711 +563256,35.191,59.381 +563257,26.398,60.298 +563258,28.767,60.033 +563259,31.248,59.757 +563260,33.861,59.467 +563261,25.108,60.267 +563262,27.466,60.04 +563263,29.934,59.803 +563264,32.529,59.552 +563265,23.819,60.235 +563266,26.166,60.047 +563267,28.619,59.849 +563268,31.196,59.637 +563269,22.531,60.204 +563270,24.866,60.055 +563271,27.303,59.895 +563272,29.86,59.723 +563273,21.246,60.172 +563274,23.566,60.062 +563275,25.987,59.941 +563276,28.523,59.808 +563277,19.962,60.141 +563278,22.268,60.069 +563279,24.67,59.987 +563280,27.183,59.894 +563281,18.681,60.109 +563282,20.97,60.076 +563283,23.352,60.033 +563284,25.842,59.979 +563285,17.4,60.077 +563286,19.672,60.083 +563287,22.033,60.079 +563288,24.499,60.065 +563289,16.122,60.045 +563290,18.375,60.09 +563291,20.715,60.125 +563292,23.154,60.15 +563293,14.845,60.014 +563294,17.078,60.097 +563295,19.395,60.171 +563296,21.808,60.235 +563297,13.571,59.982 +563298,15.783,60.104 +563299,18.075,60.217 +563300,20.459,60.32 +563301,12.297,59.95 +563302,14.487,60.111 +563303,16.754,60.263 +563304,19.109,60.405 +563305,11.026,59.919 +563306,13.192,60.118 +563307,15.432,60.309 +563308,17.757,60.489 +563309,9.7562,59.888 +563310,11.898,60.125 +563311,14.11,60.354 +563312,16.404,60.573 +563313,8.4881,59.857 +563314,10.604,60.132 +563315,12.788,60.4 +563316,15.049,60.657 +563317,7.2217,59.826 +563318,9.311,60.139 +563319,11.465,60.445 +563320,13.692,60.741 +563321,5.9569,59.795 +563322,8.0182,60.147 +563323,10.141,60.491 +563324,12.334,60.824 +563325,4.6937,59.765 +563326,6.726,60.154 +563327,8.8167,60.536 +563328,10.974,60.907 +563329,3.4322,59.735 +563330,5.4342,60.162 +563331,7.4919,60.581 +563332,9.613,60.99 +563333,2.1722,59.706 +563334,4.143,60.17 +563335,6.1665,60.626 +563336,8.2502,61.072 +563337,0.91384,59.676 +563338,2.8522,60.177 +563339,4.8406,60.67 +563340,6.886,61.154 +563341,359.66,59.648 +563342,1.5619,60.185 +563343,3.5142,60.715 +563344,5.5204,61.235 +563345,358.4,59.619 +563346,0.27206,60.193 +563347,2.1873,60.759 +563348,4.1534,61.315 +563349,357.15,59.591 +563350,358.98,60.202 +563351,0.85986,60.804 +563352,2.7851,61.395 +563353,355.9,59.564 +563354,357.69,60.21 +563355,359.53,60.848 +563356,1.4154,61.475 +563357,354.64,59.537 +563358,356.41,60.219 +563359,358.2,60.891 +563360,0.044518,61.554 +563361,353.4,59.511 +563362,355.12,60.227 +563363,356.87,60.935 +563364,358.67,61.632 +563365,352.15,59.485 +563366,353.83,60.236 +563367,355.55,60.978 +563368,357.3,61.71 +563369,350.9,59.46 +563370,352.54,60.245 +563371,354.22,61.022 +563372,355.92,61.787 +563373,349.66,59.435 +563374,351.26,60.255 +563375,352.89,61.064 +563376,354.55,61.863 +563377,348.41,59.412 +563378,349.97,60.264 +563379,351.55,61.107 +563380,353.17,61.938 +563381,347.17,59.388 +563382,348.68,60.274 +563383,350.22,61.149 +563384,351.79,62.013 +563385,345.93,59.366 +563386,347.4,60.284 +563387,348.89,61.192 +563388,350.42,62.087 +563389,344.69,59.344 +563390,346.11,60.294 +563391,347.56,61.233 +563392,349.04,62.16 +563393,343.45,59.324 +563394,344.83,60.305 +563395,346.23,61.275 +563396,347.65,62.232 +563397,342.21,59.303 +563398,343.54,60.316 +563399,344.9,61.316 +563400,346.27,62.304 +563401,340.97,59.284 +563402,342.26,60.327 +563403,343.56,61.357 +563404,344.89,62.374 +563405,339.74,59.266 +563406,340.97,60.338 +563407,342.23,61.398 +563408,343.51,62.444 +563409,338.5,59.248 +563410,339.69,60.35 +563411,340.9,61.438 +563412,342.12,62.512 +563413,337.27,59.231 +563414,338.41,60.361 +563415,339.56,61.478 +563416,340.74,62.58 +563417,336.04,59.216 +563418,337.12,60.374 +563419,338.23,61.518 +563420,339.35,62.647 +563421,334.81,59.201 +563422,335.84,60.386 +563423,336.89,61.557 +563424,337.97,62.713 +563425,333.57,59.187 +563426,334.56,60.399 +563427,335.56,61.596 +563428,336.58,62.777 +563429,332.34,59.174 +563430,333.28,60.412 +563431,334.22,61.635 +563432,335.19,62.841 +563433,331.12,59.162 +563434,331.99,60.425 +563435,332.89,61.673 +563436,333.8,62.904 +563437,329.89,59.151 +563438,330.71,60.439 +563439,331.55,61.711 +563440,332.42,62.966 +563441,328.66,59.141 +563442,329.43,60.453 +563443,330.22,61.749 +563444,331.03,63.026 +563445,327.43,59.133 +563446,328.15,60.468 +563447,328.88,61.786 +563448,329.64,63.086 +563449,326.21,59.125 +563450,326.87,60.483 +563451,327.55,61.823 +563452,328.25,63.144 +563453,324.98,59.118 +563454,325.58,60.498 +563455,326.21,61.859 +563456,326.86,63.201 +563457,323.76,59.113 +563458,324.3,60.513 +563459,324.87,61.895 +563460,325.47,63.257 +563461,322.53,59.109 +563462,323.02,60.529 +563463,323.54,61.931 +563464,324.08,63.312 +563465,321.31,59.105 +563466,321.74,60.545 +563467,322.2,61.966 +563468,322.68,63.366 +563469,320.08,59.103 +563470,320.46,60.562 +563471,320.86,62.001 +563472,321.29,63.419 +563473,318.86,59.102 +563474,319.18,60.579 +563475,319.53,62.035 +563476,319.9,63.47 +563477,317.64,59.103 +563478,317.9,60.596 +563479,318.19,62.069 +563480,318.51,63.521 +563481,316.42,59.104 +563482,316.62,60.614 +563483,316.85,62.103 +563484,317.12,63.57 +563485,315.19,59.107 +563486,315.34,60.632 +563487,315.52,62.136 +563488,315.73,63.617 +563489,313.97,59.111 +563490,314.06,60.651 +563491,314.18,62.169 +563492,314.33,63.664 +563493,312.75,59.116 +563494,312.78,60.67 +563495,312.84,62.201 +563496,312.94,63.709 +563497,311.53,59.123 +563498,311.49,60.689 +563499,311.5,62.233 +563500,311.55,63.753 +563501,310.31,59.131 +563502,310.21,60.709 +563503,310.17,62.264 +563504,310.16,63.796 +563505,309.08,59.14 +563506,308.93,60.729 +563507,308.83,62.295 +563508,308.77,63.838 +563509,307.86,59.15 +563510,307.65,60.75 +563511,307.49,62.326 +563512,307.38,63.878 +563513,306.64,59.161 +563514,306.37,60.771 +563515,306.15,62.356 +563516,305.99,63.917 +563517,305.42,59.174 +563518,305.09,60.792 +563519,304.82,62.386 +563520,304.59,63.954 +563521,304.2,59.189 +563522,303.81,60.814 +563523,303.48,62.415 +563524,303.2,63.991 +563525,302.97,59.204 +563526,302.53,60.836 +563527,302.14,62.444 +563528,301.81,64.026 +563529,301.75,59.221 +563530,301.25,60.859 +563531,300.81,62.472 +563532,300.42,64.06 +563533,300.53,59.239 +563534,299.97,60.882 +563535,299.47,62.5 +563536,299.03,64.092 +563537,299.3,59.258 +563538,298.68,60.906 +563539,298.13,62.528 +563540,297.64,64.123 +563541,298.08,59.279 +563542,297.4,60.93 +563543,296.8,62.555 +563544,296.26,64.153 +563545,296.86,59.301 +563546,296.12,60.954 +563547,295.46,62.581 +563548,294.87,64.182 +563549,295.63,59.325 +563550,294.84,60.979 +563551,294.12,62.607 +563552,293.48,64.209 +563553,294.41,59.349 +563554,293.55,61.004 +563555,292.79,62.633 +563556,292.09,64.235 +563557,293.18,59.375 +563558,292.27,61.03 +563559,291.45,62.658 +563560,290.71,64.26 +563561,291.95,59.403 +563562,290.99,61.056 +563563,290.12,62.683 +563564,289.32,64.283 +563565,290.72,59.431 +563566,289.71,61.083 +563567,288.78,62.707 +563568,287.94,64.305 +563569,289.5,59.462 +563570,288.42,61.109 +563571,287.44,62.731 +563572,286.55,64.326 +563573,288.27,59.493 +563574,287.14,61.137 +563575,286.11,62.754 +563576,285.17,64.345 +563577,287.04,59.525 +563578,285.85,61.165 +563579,284.77,62.777 +563580,283.78,64.363 +563581,285.81,59.559 +563582,284.57,61.193 +563583,283.44,62.8 +563584,282.4,64.38 +563585,284.58,59.595 +563586,283.29,61.221 +563587,282.11,62.822 +563588,281.02,64.396 +563589,283.34,59.631 +563590,282,61.251 +563591,280.77,62.843 +563592,279.64,64.41 +563593,282.11,59.669 +563594,280.72,61.28 +563595,279.44,62.865 +563596,278.26,64.423 +563597,280.87,59.708 +563598,279.43,61.31 +563599,278.1,62.885 +563600,276.88,64.435 +563601,279.64,59.749 +563602,278.14,61.34 +563603,276.77,62.906 +563604,275.5,64.446 +563605,278.4,59.79 +563606,276.86,61.371 +563607,275.44,62.926 +563608,274.13,64.455 +563609,277.16,59.833 +563610,275.57,61.402 +563611,274.11,62.945 +563612,272.75,64.463 +563613,275.92,59.877 +563614,274.28,61.433 +563615,272.77,62.964 +563616,271.38,64.47 +563617,274.68,59.923 +563618,272.99,61.465 +563619,271.44,62.983 +563620,270,64.475 +563621,273.44,59.969 +563622,271.71,61.498 +563623,270.11,63.001 +563624,268.63,64.48 +563625,272.2,60.017 +563626,270.42,61.53 +563627,268.78,63.019 +563628,267.26,64.483 +563629,270.95,60.066 +563630,269.13,61.563 +563631,267.45,63.036 +563632,265.89,64.485 +563633,269.7,60.116 +563634,267.84,61.597 +563635,266.12,63.053 +563636,264.52,64.486 +563637,268.46,60.167 +563638,266.55,61.63 +563639,264.79,63.07 +563640,263.15,64.486 +563641,267.21,60.22 +563642,265.26,61.665 +563643,263.46,63.086 +563644,261.79,64.484 +563645,265.96,60.273 +563646,263.97,61.699 +563647,262.13,63.102 +563648,260.42,64.482 +563649,264.7,60.328 +563650,262.68,61.734 +563651,260.8,63.117 +563652,259.06,64.478 +563653,263.45,60.384 +563654,261.38,61.769 +563655,259.47,63.132 +563656,257.69,64.474 +563657,262.19,60.441 +563658,260.09,61.805 +563659,258.14,63.147 +563660,256.33,64.468 +563661,260.94,60.498 +563662,258.8,61.841 +563663,256.82,63.161 +563664,254.97,64.461 +563665,259.68,60.557 +563666,257.5,61.877 +563667,255.49,63.175 +563668,253.61,64.453 +563669,258.42,60.617 +563670,256.21,61.913 +563671,254.16,63.189 +563672,252.26,64.444 +563673,257.15,60.678 +563674,254.92,61.95 +563675,252.84,63.202 +563676,250.9,64.434 +563677,255.89,60.74 +563678,253.62,61.987 +563679,251.51,63.215 +563680,249.55,64.423 +563681,254.62,60.803 +563682,252.32,62.025 +563683,250.19,63.228 +563684,248.19,64.412 +563685,253.36,60.867 +563686,251.03,62.063 +563687,248.86,63.24 +563688,246.84,64.399 +563689,252.09,60.932 +563690,249.73,62.101 +563691,247.54,63.252 +563692,245.49,64.385 +563693,250.81,60.997 +563694,248.43,62.139 +563695,246.22,63.263 +563696,244.14,64.37 +563697,249.54,61.064 +563698,247.13,62.178 +563699,244.89,63.275 +563700,242.8,64.355 +563701,248.27,61.131 +563702,245.83,62.217 +563703,243.57,63.286 +563704,241.45,64.338 +563705,246.99,61.199 +563706,244.53,62.256 +563707,242.25,63.296 +563708,240.11,64.321 +563709,245.71,61.268 +563710,243.23,62.295 +563711,240.93,63.307 +563712,238.76,64.303 +563713,244.43,61.338 +563714,241.93,62.335 +563715,239.61,63.317 +563716,237.42,64.284 +563717,243.14,61.408 +563718,240.63,62.375 +563719,238.29,63.327 +563720,236.08,64.265 +563721,241.86,61.479 +563722,239.33,62.415 +563723,236.97,63.337 +563724,234.75,64.244 +563725,240.57,61.551 +563726,238.03,62.456 +563727,235.65,63.346 +563728,233.41,64.223 +563729,239.28,61.624 +563730,236.72,62.496 +563731,234.33,63.355 +563732,232.08,64.201 +563733,237.99,61.697 +563734,235.42,62.537 +563735,233.01,63.364 +563736,230.74,64.179 +563737,236.7,61.771 +563738,234.11,62.578 +563739,231.7,63.373 +563740,229.41,64.156 +563741,235.4,61.845 +563742,232.81,62.619 +563743,230.38,63.381 +563744,228.09,64.132 +563745,234.1,61.92 +563746,231.5,62.66 +563747,229.06,63.389 +563748,226.76,64.108 +563749,232.81,61.995 +563750,230.2,62.702 +563751,227.75,63.397 +563752,225.43,64.083 +563753,231.5,62.071 +563754,228.89,62.744 +563755,226.43,63.405 +563756,224.11,64.057 +563757,230.2,62.147 +563758,227.58,62.785 +563759,225.12,63.413 +563760,222.79,64.031 +563761,228.89,62.224 +563762,226.27,62.827 +563763,223.8,63.421 +563764,221.47,64.005 +563765,227.59,62.302 +563766,224.96,62.869 +563767,222.49,63.428 +563768,220.15,63.978 +563769,226.28,62.379 +563770,223.65,62.912 +563771,221.18,63.435 +563772,218.83,63.95 +563773,224.97,62.457 +563774,222.34,62.954 +563775,219.87,63.442 +563776,217.52,63.922 +563777,223.65,62.535 +563778,221.03,62.996 +563779,218.55,63.449 +563780,216.2,63.894 +563781,222.34,62.614 +563782,219.72,63.039 +563783,217.24,63.456 +563784,214.89,63.866 +563785,221.02,62.693 +563786,218.41,63.082 +563787,215.93,63.463 +563788,213.58,63.837 +563789,219.7,62.772 +563790,217.09,63.124 +563791,214.62,63.469 +563792,212.27,63.808 +563793,218.38,62.851 +563794,215.78,63.167 +563795,213.31,63.476 +563796,210.97,63.778 +563797,217.05,62.931 +563798,214.46,63.21 +563799,212.01,63.482 +563800,209.66,63.748 +563801,215.73,63.01 +563802,213.15,63.253 +563803,210.7,63.488 +563804,208.36,63.718 +563805,214.4,63.09 +563806,211.83,63.295 +563807,209.39,63.495 +563808,207.06,63.688 +563809,213.07,63.17 +563810,210.52,63.338 +563811,208.08,63.501 +563812,205.76,63.658 +563813,211.74,63.249 +563814,209.2,63.381 +563815,206.78,63.507 +563816,204.46,63.628 +563817,210.41,63.329 +563818,207.88,63.424 +563819,205.47,63.513 +563820,203.17,63.597 +563821,209.07,63.409 +563822,206.56,63.467 +563823,204.17,63.519 +563824,201.87,63.567 +563825,207.73,63.489 +563826,205.24,63.51 +563827,202.86,63.525 +563828,200.58,63.536 +563829,206.4,63.569 +563830,203.92,63.553 +563831,201.56,63.531 +563832,199.29,63.506 +563833,205.06,63.648 +563834,202.6,63.596 +563835,200.26,63.537 +563836,198,63.475 +563837,203.71,63.728 +563838,201.28,63.638 +563839,198.95,63.543 +563840,196.71,63.444 +563841,202.37,63.807 +563842,199.96,63.681 +563843,197.65,63.549 +563844,195.43,63.414 +563845,201.02,63.887 +563846,198.64,63.724 +563847,196.35,63.556 +563848,194.14,63.384 +563849,199.67,63.966 +563850,197.31,63.766 +563851,195.05,63.562 +563852,192.86,63.353 +563853,198.32,64.044 +563854,195.99,63.809 +563855,193.75,63.568 +563856,191.58,63.323 +563857,196.97,64.123 +563858,194.67,63.851 +563859,192.45,63.574 +563860,190.3,63.294 +563861,195.62,64.201 +563862,193.34,63.893 +563863,191.15,63.581 +563864,189.03,63.264 +563865,194.27,64.279 +563866,192.02,63.936 +563867,189.85,63.587 +563868,187.75,63.235 +563869,192.91,64.356 +563870,190.69,63.978 +563871,188.55,63.594 +563872,186.48,63.206 +563873,191.55,64.434 +563874,189.36,64.02 +563875,187.25,63.6 +563876,185.21,63.177 +563877,190.19,64.51 +563878,188.04,64.061 +563879,185.96,63.607 +563880,183.94,63.148 +563881,188.83,64.587 +563882,186.71,64.103 +563883,184.66,63.614 +563884,182.67,63.12 +563885,187.47,64.662 +563886,185.38,64.145 +563887,183.36,63.621 +563888,181.4,63.093 +563889,186.1,64.738 +563890,184.05,64.186 +563891,182.07,63.628 +563892,180.13,63.065 +563893,184.74,64.812 +563894,182.72,64.227 +563895,180.77,63.635 +563896,178.87,63.039 +563897,183.37,64.887 +563898,181.39,64.268 +563899,179.48,63.643 +563900,177.61,63.012 +563901,182,64.96 +563902,180.06,64.309 +563903,178.18,63.65 +563904,176.35,62.987 +563905,180.63,65.034 +563906,178.73,64.349 +563907,176.89,63.658 +563908,175.09,62.961 +563909,179.26,65.106 +563910,177.4,64.389 +563911,175.59,63.666 +563912,173.83,62.937 +563913,177.89,65.178 +563914,176.07,64.43 +563915,174.3,63.674 +563916,172.57,62.913 +563917,176.52,65.249 +563918,174.74,64.469 +563919,173.01,63.682 +563920,171.32,62.889 +563921,175.14,65.319 +563922,173.41,64.509 +563923,171.72,63.691 +563924,170.06,62.866 +563925,173.77,65.389 +563926,172.07,64.548 +563927,170.42,63.7 +563928,168.81,62.844 +563929,172.39,65.458 +563930,170.74,64.588 +563931,169.13,63.708 +563932,167.56,62.823 +563933,171.01,65.526 +563934,169.41,64.626 +563935,167.84,63.718 +563936,166.31,62.802 +563937,169.63,65.594 +563938,168.07,64.665 +563939,166.55,63.727 +563940,165.06,62.782 +563941,168.25,65.66 +563942,166.74,64.703 +563943,165.26,63.737 +563944,163.81,62.763 +563945,166.87,65.726 +563946,165.4,64.741 +563947,163.97,63.747 +563948,162.57,62.744 +563949,165.49,65.791 +563950,164.07,64.779 +563951,162.68,63.757 +563952,161.32,62.726 +563953,164.11,65.855 +563954,162.73,64.817 +563955,161.39,63.767 +563956,160.08,62.71 +563957,162.72,65.919 +563958,161.4,64.854 +563959,160.1,63.778 +563960,158.83,62.694 +563961,161.34,65.981 +563962,160.06,64.891 +563963,158.81,63.789 +563964,157.59,62.679 +563965,159.95,66.042 +563966,158.73,64.927 +563967,157.53,63.801 +563968,156.35,62.664 +563969,158.57,66.103 +563970,157.39,64.963 +563971,156.24,63.812 +563972,155.11,62.651 +563973,157.18,66.162 +563974,156.05,64.999 +563975,154.95,63.824 +563976,153.87,62.639 +563977,155.79,66.22 +563978,154.71,65.035 +563979,153.66,63.836 +563980,152.63,62.627 +563981,154.4,66.278 +563982,153.38,65.07 +563983,152.37,63.849 +563984,151.39,62.617 +563985,153.02,66.334 +563986,152.04,65.105 +563987,151.09,63.862 +563988,150.16,62.608 +563989,151.63,66.39 +563990,150.7,65.139 +563991,149.8,63.875 +563992,148.92,62.599 +563993,150.24,66.444 +563994,149.36,65.173 +563995,148.51,63.889 +563996,147.69,62.592 +563997,148.85,66.497 +563998,148.02,65.207 +563999,147.23,63.903 +564000,146.45,62.586 +564001,147.45,66.549 +564002,146.69,65.24 +564003,145.94,63.917 +564004,145.22,62.58 +564005,146.06,66.6 +564006,145.35,65.273 +564007,144.66,63.931 +564008,143.99,62.576 +564009,144.67,66.65 +564010,144.01,65.306 +564011,143.37,63.946 +564012,142.75,62.573 +564013,143.28,66.699 +564014,142.67,65.338 +564015,142.08,63.962 +564016,141.52,62.571 +564017,141.89,66.747 +564018,141.33,65.37 +564019,140.8,63.977 +564020,140.29,62.57 +564021,140.49,66.794 +564022,139.99,65.401 +564023,139.51,63.993 +564024,139.06,62.571 +564025,139.1,66.839 +564026,138.65,65.432 +564027,138.23,64.01 +564028,137.83,62.572 +564029,137.71,66.883 +564030,137.31,65.463 +564031,136.94,64.027 +564032,136.6,62.575 +564033,136.31,66.926 +564034,135.97,65.493 +564035,135.66,64.044 +564036,135.37,62.579 +564037,134.92,66.968 +564038,134.63,65.523 +564039,134.37,64.061 +564040,134.14,62.584 +564041,133.53,67.009 +564042,133.29,65.553 +564043,133.09,64.079 +564044,132.91,62.59 +564045,132.13,67.048 +564046,131.95,65.582 +564047,131.8,64.098 +564048,131.68,62.597 +564049,130.74,67.087 +564050,130.61,65.61 +564051,130.52,64.116 +564052,130.46,62.606 +564053,129.35,67.124 +564054,129.27,65.638 +564055,129.23,64.135 +564056,129.23,62.616 +564057,127.95,67.16 +564058,127.93,65.666 +564059,127.95,64.155 +564060,128,62.627 +564061,126.56,67.194 +564062,126.59,65.694 +564063,126.66,64.175 +564064,126.77,62.639 +564065,125.17,67.228 +564066,125.25,65.721 +564067,125.37,64.195 +564068,125.54,62.653 +564069,123.77,67.26 +564070,123.91,65.747 +564071,124.09,64.216 +564072,124.31,62.668 +564073,122.38,67.291 +564074,122.57,65.773 +564075,122.8,64.237 +564076,123.08,62.684 +564077,120.99,67.32 +564078,121.23,65.799 +564079,121.52,64.259 +564080,121.86,62.701 +564081,119.59,67.349 +564082,119.89,65.824 +564083,120.23,64.281 +564084,120.63,62.72 +564085,118.2,67.376 +564086,118.55,65.849 +564087,118.95,64.303 +564088,119.4,62.739 +564089,116.81,67.402 +564090,117.21,65.873 +564091,117.66,64.326 +564092,118.17,62.76 +564093,115.42,67.427 +564094,115.87,65.897 +564095,116.38,64.349 +564096,116.94,62.783 +564097,114.03,67.45 +564098,114.53,65.921 +564099,115.09,64.372 +564100,115.71,62.806 +564101,112.64,67.472 +564102,113.19,65.944 +564103,113.8,64.396 +564104,114.48,62.831 +564105,111.25,67.493 +564106,111.85,65.966 +564107,112.52,64.421 +564108,113.25,62.857 +564109,109.86,67.513 +564110,110.51,65.989 +564111,111.23,64.446 +564112,112.01,62.885 +564113,108.47,67.532 +564114,109.18,66.01 +564115,109.94,64.471 +564116,110.78,62.913 +564117,107.08,67.549 +564118,107.84,66.032 +564119,108.66,64.496 +564120,109.55,62.943 +564121,105.7,67.565 +564122,106.5,66.053 +564123,107.37,64.522 +564124,108.32,62.975 +564125,104.31,67.58 +564126,105.16,66.073 +564127,106.08,64.549 +564128,107.08,63.007 +564129,102.92,67.593 +564130,103.82,66.093 +564131,104.79,64.576 +564132,105.85,63.041 +564133,101.54,67.606 +564134,102.49,66.113 +564135,103.51,64.603 +564136,104.61,63.075 +564137,100.15,67.617 +564138,101.15,66.132 +564139,102.22,64.63 +564140,103.37,63.112 +564141,98.771,67.627 +564142,99.81,66.151 +564143,100.93,64.658 +564144,102.14,63.149 +564145,97.388,67.635 +564146,98.473,66.17 +564147,99.641,64.687 +564148,100.9,63.187 +564149,96.006,67.643 +564150,97.137,66.188 +564151,98.351,64.715 +564152,99.659,63.227 +564153,94.625,67.649 +564154,95.8,66.205 +564155,97.062,64.745 +564156,98.419,63.268 +564157,93.245,67.655 +564158,94.464,66.223 +564159,95.772,64.774 +564160,97.178,63.31 +564161,91.866,67.659 +564162,93.128,66.239 +564163,94.481,64.804 +564164,95.935,63.353 +564165,90.488,67.662 +564166,91.793,66.256 +564167,93.191,64.834 +564168,94.692,63.398 +564169,89.111,67.663 +564170,90.458,66.272 +564171,91.899,64.865 +564172,93.447,63.443 +564173,87.735,67.664 +564174,89.123,66.288 +564175,90.608,64.896 +564176,92.201,63.49 +564177,86.36,67.664 +564178,87.789,66.303 +564179,89.316,64.927 +564180,90.954,63.538 +564181,84.986,67.662 +564182,86.455,66.318 +564183,88.024,64.959 +564184,89.706,63.587 +564185,83.613,67.659 +564186,85.121,66.332 +564187,86.731,64.991 +564188,88.456,63.637 +564189,82.242,67.656 +564190,83.788,66.347 +564191,85.438,65.024 +564192,87.205,63.688 +564193,80.871,67.651 +564194,82.455,66.36 +564195,84.144,65.056 +564196,85.952,63.74 +564197,79.502,67.645 +564198,81.123,66.374 +564199,82.85,65.089 +564200,84.699,63.793 +564201,78.135,67.638 +564202,79.791,66.387 +564203,81.555,65.123 +564204,83.443,63.847 +564205,76.768,67.631 +564206,78.459,66.4 +564207,80.26,65.157 +564208,82.186,63.902 +564209,75.403,67.622 +564210,77.128,66.412 +564211,78.964,65.191 +564212,80.928,63.958 +564213,74.039,67.612 +564214,75.797,66.424 +564215,77.668,65.225 +564216,79.668,64.015 +564217,72.676,67.601 +564218,74.467,66.436 +564219,76.372,65.26 +564220,78.407,64.074 +564221,71.315,67.589 +564222,73.137,66.448 +564223,75.075,65.295 +564224,77.144,64.133 +564225,69.955,67.577 +564226,71.808,66.459 +564227,73.777,65.33 +564228,75.879,64.192 +564229,68.596,67.563 +564230,70.479,66.469 +564231,72.479,65.366 +564232,74.613,64.253 +564233,67.239,67.549 +564234,69.151,66.48 +564235,71.18,65.402 +564236,73.345,64.315 +564237,65.884,67.534 +564238,67.823,66.49 +564239,69.881,65.438 +564240,72.076,64.377 +564241,64.529,67.518 +564242,66.495,66.5 +564243,68.581,65.474 +564244,70.804,64.441 +564245,63.177,67.501 +564246,65.168,66.51 +564247,67.28,65.511 +564248,69.531,64.505 +564249,61.826,67.483 +564250,63.842,66.519 +564251,65.979,65.548 +564252,68.256,64.57 +564253,60.476,67.464 +564254,62.516,66.528 +564255,64.678,65.585 +564256,66.98,64.635 +564257,59.128,67.445 +564258,61.191,66.537 +564259,63.376,65.622 +564260,65.701,64.702 +564261,57.781,67.425 +564262,59.866,66.546 +564263,62.073,65.66 +564264,64.421,64.769 +564265,56.436,67.404 +564266,58.542,66.554 +564267,60.77,65.698 +564268,63.139,64.836 +564269,55.093,67.383 +564270,57.218,66.562 +564271,59.466,65.736 +564272,61.855,64.905 +564273,53.751,67.361 +564274,55.895,66.57 +564275,58.161,65.774 +564276,60.569,64.974 +564277,52.411,67.338 +564278,54.572,66.578 +564279,56.856,65.813 +564280,59.281,65.043 +564281,51.072,67.315 +564282,53.25,66.585 +564283,55.55,65.851 +564284,57.991,65.114 +564285,49.735,67.291 +564286,51.928,66.592 +564287,54.244,65.89 +564288,56.7,65.184 +564289,48.4,67.267 +564290,50.607,66.6 +564291,52.937,65.929 +564292,55.406,65.256 +564293,47.066,67.242 +564294,49.287,66.606 +564295,51.629,65.968 +564296,54.111,65.327 +564297,45.734,67.216 +564298,47.967,66.613 +564299,50.321,66.007 +564300,52.814,65.4 +564301,44.404,67.19 +564302,46.648,66.62 +564303,49.012,66.047 +564304,51.515,65.472 +564305,43.075,67.163 +564306,45.329,66.626 +564307,47.702,66.086 +564308,50.213,65.545 +564309,41.748,67.137 +564310,44.011,66.632 +564311,46.392,66.126 +564312,48.91,65.619 +564313,40.423,67.109 +564314,42.694,66.638 +564315,45.081,66.166 +564316,47.605,65.693 +564317,39.099,67.081 +564318,41.377,66.644 +564319,43.77,66.206 +564320,46.298,65.767 +564321,37.778,67.053 +564322,40.06,66.65 +564323,42.458,66.246 +564324,44.989,65.841 +564325,36.458,67.025 +564326,38.744,66.656 +564327,41.145,66.286 +564328,43.678,65.916 +564329,35.139,66.996 +564330,37.429,66.661 +564331,39.832,66.326 +564332,42.365,65.991 +564333,33.823,66.967 +564334,36.114,66.667 +564335,38.518,66.367 +564336,41.05,66.066 +564337,32.508,66.938 +564338,34.8,66.672 +564339,37.203,66.407 +564340,39.733,66.141 +564341,31.195,66.909 +564342,33.487,66.678 +564343,35.888,66.447 +564344,38.415,66.217 +564345,29.883,66.879 +564346,32.174,66.683 +564347,34.572,66.488 +564348,37.094,66.293 +564349,28.573,66.849 +564350,30.862,66.688 +564351,33.255,66.528 +564352,35.771,66.368 +564353,27.265,66.819 +564354,29.55,66.693 +564355,31.938,66.569 +564356,34.447,66.444 +564357,25.959,66.789 +564358,28.239,66.699 +564359,30.62,66.609 +564360,33.12,66.52 +564361,24.655,66.759 +564362,26.928,66.704 +564363,29.302,66.65 +564364,31.792,66.596 +564365,23.352,66.729 +564366,25.618,66.709 +564367,27.983,66.69 +564368,30.462,66.672 +564369,22.051,66.699 +564370,24.309,66.714 +564371,26.663,66.731 +564372,29.13,66.748 +564373,20.752,66.668 +564374,23,66.719 +564375,25.343,66.771 +564376,27.796,66.824 +564377,19.454,66.638 +564378,21.691,66.724 +564379,24.022,66.811 +564380,26.46,66.899 +564381,18.158,66.608 +564382,20.384,66.729 +564383,22.7,66.852 +564384,25.122,66.975 +564385,16.864,66.578 +564386,19.076,66.734 +564387,21.378,66.892 +564388,23.783,67.05 +564389,15.571,66.548 +564390,17.77,66.74 +564391,20.055,66.932 +564392,22.442,67.126 +564393,14.28,66.519 +564394,16.464,66.745 +564395,18.732,66.972 +564396,21.098,67.201 +564397,12.991,66.489 +564398,15.158,66.75 +564399,17.408,67.013 +564400,19.754,67.276 +564401,11.704,66.46 +564402,13.853,66.756 +564403,16.083,67.053 +564404,18.407,67.35 +564405,10.418,66.431 +564406,12.549,66.761 +564407,14.758,67.092 +564408,17.059,67.424 +564409,9.1337,66.402 +564410,11.245,66.766 +564411,13.433,67.132 +564412,15.709,67.498 +564413,7.8512,66.373 +564414,9.9415,66.772 +564415,12.106,67.172 +564416,14.357,67.572 +564417,6.5702,66.345 +564418,8.6387,66.778 +564419,10.779,67.212 +564420,13.004,67.645 +564421,5.2909,66.317 +564422,7.3364,66.784 +564423,9.4521,67.251 +564424,11.649,67.718 +564425,4.0131,66.29 +564426,6.0346,66.79 +564427,8.1242,67.29 +564428,10.293,67.79 +564429,2.7369,66.262 +564430,4.7333,66.796 +564431,6.7957,67.329 +564432,8.9345,67.862 +564433,1.4623,66.236 +564434,3.4325,66.802 +564435,5.4667,67.368 +564436,7.5749,67.934 +564437,0.18919,66.209 +564438,2.1322,66.808 +564439,4.1372,67.407 +564440,6.2137,68.005 +564441,358.92,66.184 +564442,0.83244,66.815 +564443,2.8072,67.446 +564444,4.8511,68.075 +564445,357.65,66.158 +564446,359.53,66.822 +564447,1.4766,67.484 +564448,3.4869,68.145 +564449,356.38,66.134 +564450,358.23,66.828 +564451,0.1456,67.522 +564452,2.1214,68.214 +564453,355.11,66.11 +564454,356.94,66.835 +564455,358.81,67.56 +564456,0.75443,68.283 +564457,353.85,66.086 +564458,355.64,66.843 +564459,357.48,67.598 +564460,359.39,68.351 +564461,352.58,66.063 +564462,354.34,66.85 +564463,356.15,67.636 +564464,358.02,68.418 +564465,351.32,66.041 +564466,353.04,66.858 +564467,354.82,67.673 +564468,356.65,68.485 +564469,350.06,66.019 +564470,351.75,66.866 +564471,353.48,67.71 +564472,355.27,68.551 +564473,348.8,65.998 +564474,350.45,66.874 +564475,352.15,67.747 +564476,353.9,68.616 +564477,347.54,65.978 +564478,349.15,66.882 +564479,350.82,67.784 +564480,352.52,68.681 +564481,346.28,65.958 +564482,347.86,66.891 +564483,349.48,67.82 +564484,351.15,68.745 +564485,345.02,65.939 +564486,346.56,66.9 +564487,348.15,67.856 +564488,349.77,68.808 +564489,343.77,65.921 +564490,345.27,66.909 +564491,346.81,67.892 +564492,348.39,68.87 +564493,342.52,65.904 +564494,343.98,66.918 +564495,345.47,67.928 +564496,347.01,68.932 +564497,341.26,65.888 +564498,342.68,66.928 +564499,344.14,67.963 +564500,345.63,68.992 +564501,340.01,65.872 +564502,341.39,66.937 +564503,342.8,67.998 +564504,344.25,69.052 +564505,338.76,65.857 +564506,340.1,66.948 +564507,341.46,68.033 +564508,342.87,69.111 +564509,337.51,65.844 +564510,338.8,66.958 +564511,340.13,68.067 +564512,341.49,69.169 +564513,336.26,65.831 +564514,337.51,66.969 +564515,338.79,68.101 +564516,340.1,69.226 +564517,335.02,65.819 +564518,336.22,66.98 +564519,337.45,68.135 +564520,338.72,69.282 +564521,333.77,65.808 +564522,334.93,66.991 +564523,336.11,68.168 +564524,337.33,69.337 +564525,332.52,65.798 +564526,333.63,67.003 +564527,334.77,68.201 +564528,335.95,69.391 +564529,331.28,65.789 +564530,332.34,67.015 +564531,333.44,68.234 +564532,334.56,69.444 +564533,330.04,65.78 +564534,331.05,67.027 +564535,332.1,68.266 +564536,333.17,69.496 +564537,328.79,65.773 +564538,329.76,67.04 +564539,330.76,68.298 +564540,331.78,69.548 +564541,327.55,65.767 +564542,328.47,67.053 +564543,329.42,68.33 +564544,330.39,69.598 +564545,326.31,65.762 +564546,327.18,67.066 +564547,328.08,68.361 +564548,329,69.647 +564549,325.07,65.758 +564550,325.89,67.08 +564551,326.74,68.392 +564552,327.61,69.695 +564553,323.83,65.755 +564554,324.6,67.094 +564555,325.4,68.423 +564556,326.22,69.742 +564557,322.59,65.754 +564558,323.31,67.108 +564559,324.06,68.453 +564560,324.83,69.788 +564561,321.35,65.753 +564562,322.02,67.123 +564563,322.72,68.483 +564564,323.44,69.832 +564565,320.11,65.753 +564566,320.73,67.138 +564567,321.37,68.513 +564568,322.05,69.876 +564569,318.88,65.755 +564570,319.44,67.154 +564571,320.03,68.542 +564572,320.65,69.919 +564573,317.64,65.758 +564574,318.15,67.169 +564575,318.69,68.571 +564576,319.26,69.96 +564577,316.4,65.761 +564578,316.86,67.186 +564579,317.35,68.599 +564580,317.87,70 +564581,315.17,65.766 +564582,315.57,67.202 +564583,316.01,68.627 +564584,316.47,70.039 +564585,313.93,65.773 +564586,314.29,67.219 +564587,314.67,68.655 +564588,315.08,70.077 +564589,312.7,65.78 +564590,313,67.237 +564591,313.33,68.682 +564592,313.68,70.114 +564593,311.46,65.788 +564594,311.71,67.254 +564595,311.98,68.709 +564596,312.29,70.15 +564597,310.23,65.798 +564598,310.42,67.272 +564599,310.64,68.735 +564600,310.9,70.184 +564601,308.99,65.809 +564602,309.13,67.291 +564603,309.3,68.761 +564604,309.5,70.218 +564605,307.76,65.821 +564606,307.84,67.31 +564607,307.96,68.787 +564608,308.11,70.25 +564609,306.52,65.835 +564610,306.55,67.329 +564611,306.62,68.812 +564612,306.71,70.281 +564613,305.29,65.849 +564614,305.26,67.349 +564615,305.28,68.836 +564616,305.32,70.311 +564617,304.06,65.865 +564618,303.98,67.369 +564619,303.93,68.861 +564620,303.93,70.339 +564621,302.82,65.882 +564622,302.69,67.389 +564623,302.59,68.885 +564624,302.53,70.367 +564625,301.59,65.9 +564626,301.4,67.41 +564627,301.25,68.908 +564628,301.14,70.393 +564629,300.35,65.92 +564630,300.11,67.432 +564631,299.91,68.931 +564632,299.74,70.418 +564633,299.12,65.94 +564634,298.82,67.453 +564635,298.57,68.954 +564636,298.35,70.441 +564637,297.88,65.962 +564638,297.53,67.475 +564639,297.22,68.977 +564640,296.96,70.464 +564641,296.65,65.985 +564642,296.24,67.498 +564643,295.88,68.998 +564644,295.56,70.485 +564645,295.42,66.01 +564646,294.95,67.521 +564647,294.54,69.02 +564648,294.17,70.506 +564649,294.18,66.035 +564650,293.67,67.544 +564651,293.2,69.041 +564652,292.78,70.524 +564653,292.94,66.062 +564654,292.38,67.568 +564655,291.86,69.062 +564656,291.39,70.542 +564657,291.71,66.09 +564658,291.09,67.592 +564659,290.52,69.082 +564660,290,70.559 +564661,290.47,66.119 +564662,289.8,67.616 +564663,289.18,69.102 +564664,288.61,70.574 +564665,289.23,66.15 +564666,288.51,67.641 +564667,287.84,69.121 +564668,287.22,70.588 +564669,288,66.182 +564670,287.22,67.667 +564671,286.49,69.14 +564672,285.83,70.601 +564673,286.76,66.214 +564674,285.93,67.692 +564675,285.15,69.159 +564676,284.44,70.613 +564677,285.52,66.249 +564678,284.64,67.718 +564679,283.81,69.177 +564680,283.05,70.624 +564681,284.28,66.284 +564682,283.35,67.745 +564683,282.47,69.195 +564684,281.66,70.633 +564685,283.04,66.32 +564686,282.05,67.772 +564687,281.13,69.213 +564688,280.27,70.642 +564689,281.8,66.358 +564690,280.76,67.799 +564691,279.79,69.23 +564692,278.89,70.649 +564693,280.56,66.397 +564694,279.47,67.827 +564695,278.45,69.246 +564696,277.5,70.655 +564697,279.32,66.437 +564698,278.18,67.855 +564699,277.12,69.263 +564700,276.12,70.66 +564701,278.07,66.478 +564702,276.89,67.883 +564703,275.78,69.279 +564704,274.73,70.663 +564705,276.83,66.52 +564706,275.59,67.912 +564707,274.44,69.294 +564708,273.35,70.666 +564709,275.58,66.563 +564710,274.3,67.941 +564711,273.1,69.309 +564712,271.97,70.668 +564713,274.34,66.608 +564714,273.01,67.97 +564715,271.76,69.324 +564716,270.59,70.668 +564717,273.09,66.654 +564718,271.72,68 +564719,270.42,69.338 +564720,269.21,70.667 +564721,271.84,66.7 +564722,270.42,68.03 +564723,269.09,69.353 +564724,267.83,70.666 +564725,270.59,66.748 +564726,269.13,68.061 +564727,267.75,69.366 +564728,266.45,70.663 +564729,269.34,66.797 +564730,267.83,68.092 +564731,266.41,69.38 +564732,265.07,70.659 +564733,268.09,66.847 +564734,266.54,68.123 +564735,265.08,69.393 +564736,263.7,70.654 +564737,266.84,66.897 +564738,265.24,68.154 +564739,263.74,69.405 +564740,262.32,70.648 +564741,265.59,66.949 +564742,263.95,68.186 +564743,262.4,69.418 +564744,260.95,70.642 +564745,264.33,67.002 +564746,262.65,68.218 +564747,261.07,69.429 +564748,259.57,70.634 +564749,263.07,67.056 +564750,261.35,68.251 +564751,259.73,69.441 +564752,258.2,70.625 +564753,261.82,67.111 +564754,260.06,68.284 +564755,258.4,69.452 +564756,256.83,70.615 +564757,260.56,67.166 +564758,258.76,68.317 +564759,257.07,69.463 +564760,255.46,70.604 +564761,259.3,67.223 +564762,257.46,68.35 +564763,255.73,69.474 +564764,254.09,70.593 +564765,258.03,67.281 +564766,256.16,68.384 +564767,254.4,69.485 +564768,252.73,70.58 +564769,256.77,67.339 +564770,254.86,68.418 +564771,253.07,69.495 +564772,251.36,70.567 +564773,255.51,67.398 +564774,253.57,68.452 +564775,251.73,69.504 +564776,250,70.553 +564777,254.24,67.458 +564778,252.27,68.487 +564779,250.4,69.514 +564780,248.63,70.538 +564781,252.97,67.519 +564782,250.97,68.522 +564783,249.07,69.523 +564784,247.27,70.522 +564785,251.7,67.581 +564786,249.66,68.557 +564787,247.74,69.532 +564788,245.91,70.505 +564789,250.43,67.643 +564790,248.36,68.592 +564791,246.41,69.541 +564792,244.55,70.487 +564793,249.16,67.707 +564794,247.06,68.628 +564795,245.08,69.549 +564796,243.2,70.469 +564797,247.88,67.771 +564798,245.76,68.664 +564799,243.75,69.557 +564800,241.84,70.45 +564801,246.61,67.835 +564802,244.46,68.7 +564803,242.42,69.565 +564804,240.49,70.43 +564805,245.33,67.901 +564806,243.15,68.736 +564807,241.09,69.573 +564808,239.13,70.41 +564809,244.05,67.967 +564810,241.85,68.773 +564811,239.76,69.581 +564812,237.78,70.388 +564813,242.77,68.033 +564814,240.54,68.809 +564815,238.44,69.588 +564816,236.43,70.367 +564817,241.49,68.1 +564818,239.24,68.846 +564819,237.11,69.595 +564820,235.08,70.344 +564821,240.2,68.168 +564822,237.93,68.883 +564823,235.78,69.602 +564824,233.74,70.321 +564825,238.92,68.237 +564826,236.63,68.921 +564827,234.46,69.608 +564828,232.39,70.298 +564829,237.63,68.305 +564830,235.32,68.958 +564831,233.13,69.615 +564832,231.05,70.273 +564833,236.34,68.375 +564834,234.01,68.996 +564835,231.81,69.621 +564836,229.7,70.249 +564837,235.05,68.445 +564838,232.7,69.034 +564839,230.48,69.627 +564840,228.36,70.223 +564841,233.75,68.515 +564842,231.39,69.072 +564843,229.16,69.633 +564844,227.03,70.198 +564845,232.46,68.586 +564846,230.08,69.11 +564847,227.83,69.639 +564848,225.69,70.171 +564849,231.16,68.657 +564850,228.77,69.148 +564851,226.51,69.644 +564852,224.35,70.145 +564853,229.86,68.728 +564854,227.46,69.186 +564855,225.19,69.65 +564856,223.02,70.118 +564857,228.56,68.8 +564858,226.15,69.225 +564859,223.87,69.655 +564860,221.69,70.09 +564861,227.26,68.872 +564862,224.84,69.263 +564863,222.55,69.661 +564864,220.35,70.062 +564865,225.95,68.945 +564866,223.53,69.302 +564867,221.23,69.666 +564868,219.03,70.034 +564869,224.65,69.017 +564870,222.22,69.341 +564871,219.91,69.671 +564872,217.7,70.006 +564873,223.34,69.09 +564874,220.9,69.38 +564875,218.59,69.676 +564876,216.37,69.977 +564877,222.03,69.163 +564878,219.59,69.419 +564879,217.27,69.681 +564880,215.05,69.948 +564881,220.72,69.237 +564882,218.27,69.458 +564883,215.95,69.685 +564884,213.73,69.919 +564885,219.4,69.31 +564886,216.96,69.497 +564887,214.63,69.69 +564888,212.4,69.89 +564889,218.09,69.384 +564890,215.64,69.536 +564891,213.31,69.695 +564892,211.09,69.86 +564893,216.77,69.457 +564894,214.33,69.575 +564895,212,69.699 +564896,209.77,69.831 +564897,215.45,69.531 +564898,213.01,69.614 +564899,210.68,69.704 +564900,208.45,69.801 +564901,214.13,69.605 +564902,211.69,69.653 +564903,209.37,69.709 +564904,207.14,69.771 +564905,212.8,69.679 +564906,210.37,69.692 +564907,208.05,69.713 +564908,205.83,69.741 +564909,211.48,69.752 +564910,209.05,69.731 +564911,206.74,69.718 +564912,204.51,69.711 +564913,210.15,69.826 +564914,207.73,69.771 +564915,205.42,69.722 +564916,203.21,69.681 +564917,208.82,69.9 +564918,206.41,69.81 +564919,204.11,69.727 +564920,201.9,69.651 +564921,207.49,69.973 +564922,205.09,69.849 +564923,202.8,69.731 +564924,200.59,69.621 +564925,206.16,70.047 +564926,203.77,69.888 +564927,201.48,69.736 +564928,199.29,69.591 +564929,204.82,70.12 +564930,202.45,69.927 +564931,200.17,69.741 +564932,197.99,69.562 +564933,203.49,70.193 +564934,201.12,69.966 +564935,198.86,69.745 +564936,196.69,69.532 +564937,202.15,70.266 +564938,199.8,70.005 +564939,197.55,69.75 +564940,195.39,69.503 +564941,200.81,70.338 +564942,198.48,70.043 +564943,196.24,69.755 +564944,194.09,69.473 +564945,199.47,70.411 +564946,197.15,70.082 +564947,194.93,69.76 +564948,192.79,69.444 +564949,198.13,70.483 +564950,195.83,70.121 +564951,193.62,69.765 +564952,191.5,69.416 +564953,196.78,70.555 +564954,194.5,70.159 +564955,192.32,69.77 +564956,190.21,69.387 +564957,195.43,70.626 +564958,193.18,70.197 +564959,191.01,69.775 +564960,188.92,69.359 +564961,194.09,70.697 +564962,191.85,70.236 +564963,189.7,69.78 +564964,187.63,69.331 +564965,192.74,70.768 +564966,190.52,70.274 +564967,188.39,69.786 +564968,186.34,69.304 +564969,191.38,70.838 +564970,189.19,70.312 +564971,187.09,69.791 +564972,185.05,69.277 +564973,190.03,70.907 +564974,187.87,70.35 +564975,185.78,69.797 +564976,183.77,69.25 +564977,188.68,70.977 +564978,186.54,70.387 +564979,184.48,69.803 +564980,182.49,69.224 +564981,187.32,71.045 +564982,185.21,70.425 +564983,183.17,69.809 +564984,181.21,69.198 +564985,185.96,71.114 +564986,183.88,70.462 +564987,181.87,69.815 +564988,179.93,69.172 +564989,184.6,71.181 +564990,182.55,70.499 +564991,180.56,69.821 +564992,178.65,69.148 +564993,183.24,71.249 +564994,181.21,70.536 +564995,179.26,69.828 +564996,177.37,69.123 +564997,181.88,71.315 +564998,179.88,70.573 +564999,177.96,69.834 +565000,176.1,69.1 +565001,180.51,71.381 +565002,178.55,70.61 +565003,176.66,69.841 +565004,174.82,69.077 +565005,179.15,71.446 +565006,177.22,70.646 +565007,175.35,69.848 +565008,173.55,69.054 +565009,177.78,71.511 +565010,175.89,70.682 +565011,174.05,69.856 +565012,172.28,69.032 +565013,176.41,71.575 +565014,174.55,70.718 +565015,172.75,69.863 +565016,171.01,69.011 +565017,175.04,71.638 +565018,173.22,70.754 +565019,171.45,69.871 +565020,169.74,68.991 +565021,173.67,71.7 +565022,171.88,70.789 +565023,170.15,69.879 +565024,168.47,68.971 +565025,172.3,71.762 +565026,170.55,70.824 +565027,168.85,69.887 +565028,167.21,68.952 +565029,170.93,71.823 +565030,169.21,70.859 +565031,167.55,69.896 +565032,165.94,68.933 +565033,169.55,71.883 +565034,167.88,70.894 +565035,166.25,69.904 +565036,164.68,68.916 +565037,168.18,71.942 +565038,166.54,70.928 +565039,164.96,69.913 +565040,163.42,68.899 +565041,166.8,72.001 +565042,165.2,70.962 +565043,163.66,69.923 +565044,162.16,68.883 +565045,165.42,72.059 +565046,163.87,70.996 +565047,162.36,69.932 +565048,160.9,68.868 +565049,164.04,72.115 +565050,162.53,71.03 +565051,161.06,69.942 +565052,159.64,68.854 +565053,162.66,72.171 +565054,161.19,71.063 +565055,159.77,69.952 +565056,158.38,68.841 +565057,161.28,72.226 +565058,159.85,71.096 +565059,158.47,69.963 +565060,157.13,68.828 +565061,159.9,72.28 +565062,158.52,71.128 +565063,157.17,69.973 +565064,155.87,68.817 +565065,158.52,72.334 +565066,157.18,71.161 +565067,155.88,69.984 +565068,154.62,68.806 +565069,157.13,72.386 +565070,155.84,71.193 +565071,154.58,69.996 +565072,153.36,68.797 +565073,155.75,72.437 +565074,154.5,71.224 +565075,153.29,70.008 +565076,152.11,68.788 +565077,154.36,72.487 +565078,153.16,71.256 +565079,151.99,70.02 +565080,150.86,68.781 +565081,152.98,72.536 +565082,151.82,71.286 +565083,150.7,70.032 +565084,149.61,68.774 +565085,151.59,72.585 +565086,150.48,71.317 +565087,149.4,70.045 +565088,148.36,68.768 +565089,150.2,72.632 +565090,149.14,71.347 +565091,148.11,70.058 +565092,147.11,68.764 +565093,148.81,72.678 +565094,147.8,71.377 +565095,146.81,70.071 +565096,145.86,68.76 +565097,147.42,72.723 +565098,146.46,71.407 +565099,145.52,70.085 +565100,144.62,68.758 +565101,146.03,72.767 +565102,145.11,71.436 +565103,144.23,70.099 +565104,143.37,68.757 +565105,144.64,72.81 +565106,143.77,71.465 +565107,142.93,70.113 +565108,142.13,68.756 +565109,143.25,72.852 +565110,142.43,71.494 +565111,141.64,70.128 +565112,140.88,68.757 +565113,141.86,72.893 +565114,141.09,71.522 +565115,140.35,70.143 +565116,139.64,68.759 +565117,140.47,72.932 +565118,139.75,71.549 +565119,139.06,70.159 +565120,138.39,68.762 +565121,139.08,72.971 +565122,138.4,71.577 +565123,137.76,70.175 +565124,137.15,68.767 +565125,137.68,73.008 +565126,137.06,71.604 +565127,136.47,70.191 +565128,135.91,68.772 +565129,136.29,73.045 +565130,135.72,71.63 +565131,135.18,70.208 +565132,134.67,68.779 +565133,134.9,73.08 +565134,134.38,71.657 +565135,133.89,70.225 +565136,133.42,68.786 +565137,133.5,73.114 +565138,133.03,71.683 +565139,132.59,70.243 +565140,132.18,68.795 +565141,132.11,73.147 +565142,131.69,71.708 +565143,131.3,70.26 +565144,130.94,68.805 +565145,130.72,73.179 +565146,130.35,71.733 +565147,130.01,70.279 +565148,129.7,68.817 +565149,129.32,73.209 +565150,129,71.758 +565151,128.72,70.297 +565152,128.46,68.829 +565153,127.93,73.239 +565154,127.66,71.782 +565155,127.43,70.316 +565156,127.22,68.843 +565157,126.53,73.267 +565158,126.32,71.806 +565159,126.13,70.336 +565160,125.98,68.858 +565161,125.14,73.294 +565162,124.97,71.83 +565163,124.84,70.356 +565164,124.74,68.874 +565165,123.74,73.32 +565166,123.63,71.853 +565167,123.55,70.376 +565168,123.5,68.891 +565169,122.35,73.344 +565170,122.29,71.875 +565171,122.26,70.397 +565172,122.26,68.91 +565173,120.96,73.368 +565174,120.94,71.898 +565175,120.97,70.418 +565176,121.02,68.93 +565177,119.56,73.39 +565178,119.6,71.92 +565179,119.68,70.439 +565180,119.78,68.951 +565181,118.17,73.412 +565182,118.26,71.941 +565183,118.38,70.461 +565184,118.55,68.973 +565185,116.77,73.432 +565186,116.91,71.962 +565187,117.09,70.483 +565188,117.31,68.996 +565189,115.38,73.45 +565190,115.57,71.983 +565191,115.8,70.506 +565192,116.07,69.021 +565193,113.99,73.468 +565194,114.23,72.003 +565195,114.51,70.529 +565196,114.83,69.047 +565197,112.59,73.485 +565198,112.88,72.023 +565199,113.22,70.552 +565200,113.59,69.074 +565201,111.2,73.5 +565202,111.54,72.043 +565203,111.92,70.576 +565204,112.35,69.102 +565205,109.81,73.514 +565206,110.2,72.062 +565207,110.63,70.6 +565208,111.11,69.132 +565209,108.41,73.527 +565210,108.86,72.081 +565211,109.34,70.625 +565212,109.86,69.162 +565213,107.02,73.539 +565214,107.51,72.099 +565215,108.05,70.65 +565216,108.62,69.194 +565217,105.63,73.55 +565218,106.17,72.117 +565219,106.75,70.676 +565220,107.38,69.227 +565221,104.24,73.559 +565222,104.83,72.134 +565223,105.46,70.701 +565224,106.14,69.261 +565225,102.85,73.567 +565226,103.49,72.152 +565227,104.17,70.728 +565228,104.9,69.297 +565229,101.46,73.575 +565230,102.14,72.169 +565231,102.87,70.754 +565232,103.65,69.334 +565233,100.07,73.581 +565234,100.8,72.185 +565235,101.58,70.781 +565236,102.41,69.371 +565237,98.684,73.586 +565238,99.46,72.201 +565239,100.29,70.809 +565240,101.17,69.41 +565241,97.297,73.59 +565242,98.119,72.217 +565243,98.992,70.836 +565244,99.921,69.45 +565245,95.91,73.593 +565246,96.777,72.232 +565247,97.698,70.864 +565248,98.675,69.492 +565249,94.524,73.594 +565250,95.436,72.247 +565251,96.403,70.893 +565252,97.429,69.534 +565253,93.138,73.595 +565254,94.096,72.262 +565255,95.109,70.922 +565256,96.182,69.577 +565257,91.753,73.595 +565258,92.755,72.276 +565259,93.814,70.951 +565260,94.934,69.622 +565261,90.37,73.593 +565262,91.415,72.29 +565263,92.518,70.981 +565264,93.685,69.668 +565265,88.987,73.591 +565266,90.075,72.303 +565267,91.223,71.01 +565268,92.435,69.714 +565269,87.605,73.587 +565270,88.735,72.316 +565271,89.927,71.041 +565272,91.185,69.762 +565273,86.223,73.582 +565274,87.396,72.329 +565275,88.63,71.071 +565276,89.933,69.811 +565277,84.843,73.577 +565278,86.056,72.342 +565279,87.334,71.102 +565280,88.68,69.861 +565281,83.464,73.57 +565282,84.718,72.354 +565283,86.037,71.134 +565284,87.427,69.912 +565285,82.086,73.563 +565286,83.379,72.366 +565287,84.739,71.165 +565288,86.172,69.963 +565289,80.709,73.554 +565290,82.041,72.377 +565291,83.441,71.197 +565292,84.916,70.016 +565293,79.333,73.545 +565294,80.703,72.388 +565295,82.143,71.229 +565296,83.659,70.07 +565297,77.958,73.534 +565298,79.366,72.399 +565299,80.845,71.262 +565300,82.401,70.125 +565301,76.584,73.523 +565302,78.029,72.41 +565303,79.546,71.295 +565304,81.142,70.181 +565305,75.211,73.511 +565306,76.692,72.42 +565307,78.247,71.328 +565308,79.882,70.237 +565309,73.839,73.498 +565310,75.356,72.43 +565311,76.947,71.362 +565312,78.62,70.295 +565313,72.469,73.484 +565314,74.02,72.44 +565315,75.647,71.395 +565316,77.357,70.353 +565317,71.1,73.469 +565318,72.684,72.449 +565319,74.346,71.429 +565320,76.092,70.412 +565321,69.732,73.454 +565322,71.349,72.458 +565323,73.045,71.464 +565324,74.827,70.472 +565325,68.365,73.437 +565326,70.014,72.467 +565327,71.743,71.498 +565328,73.56,70.533 +565329,67,73.42 +565330,68.68,72.476 +565331,70.441,71.533 +565332,72.291,70.594 +565333,65.636,73.402 +565334,67.346,72.484 +565335,69.139,71.568 +565336,71.021,70.657 +565337,64.273,73.384 +565338,66.013,72.492 +565339,67.836,71.604 +565340,69.75,70.72 +565341,62.911,73.364 +565342,64.68,72.5 +565343,66.532,71.639 +565344,68.477,70.784 +565345,61.551,73.344 +565346,63.348,72.508 +565347,65.228,71.675 +565348,67.203,70.848 +565349,60.193,73.323 +565350,62.015,72.515 +565351,63.924,71.711 +565352,65.927,70.913 +565353,58.835,73.302 +565354,60.684,72.523 +565355,62.619,71.748 +565356,64.649,70.979 +565357,57.479,73.28 +565358,59.353,72.53 +565359,61.313,71.784 +565360,63.37,71.046 +565361,56.125,73.257 +565362,58.022,72.536 +565363,60.007,71.821 +565364,62.09,71.113 +565365,54.772,73.234 +565366,56.692,72.543 +565367,58.701,71.858 +565368,60.808,71.18 +565369,53.42,73.21 +565370,55.363,72.549 +565371,57.393,71.895 +565372,59.524,71.248 +565373,52.07,73.186 +565374,54.033,72.556 +565375,56.086,71.932 +565376,58.238,71.317 +565377,50.722,73.161 +565378,52.705,72.562 +565379,54.777,71.969 +565380,56.951,71.386 +565381,49.375,73.136 +565382,51.377,72.568 +565383,53.469,72.007 +565384,55.662,71.456 +565385,48.029,73.11 +565386,50.049,72.574 +565387,52.159,72.045 +565388,54.372,71.526 +565389,46.686,73.084 +565390,48.722,72.579 +565391,50.849,72.083 +565392,53.079,71.596 +565393,45.343,73.057 +565394,47.395,72.585 +565395,49.539,72.121 +565396,51.785,71.667 +565397,44.002,73.03 +565398,46.069,72.59 +565399,48.228,72.159 +565400,50.49,71.738 +565401,42.663,73.003 +565402,44.744,72.595 +565403,46.916,72.197 +565404,49.192,71.81 +565405,41.325,72.975 +565406,43.419,72.6 +565407,45.604,72.235 +565408,47.893,71.882 +565409,39.989,72.947 +565410,42.094,72.605 +565411,44.291,72.274 +565412,46.592,71.954 +565413,38.655,72.919 +565414,40.771,72.61 +565415,42.978,72.312 +565416,45.289,72.026 +565417,37.322,72.89 +565418,39.447,72.615 +565419,41.664,72.351 +565420,43.985,72.099 +565421,35.991,72.861 +565422,38.124,72.62 +565423,40.349,72.39 +565424,42.678,72.171 +565425,34.661,72.832 +565426,36.802,72.625 +565427,39.034,72.428 +565428,41.37,72.244 +565429,33.333,72.803 +565430,35.48,72.63 +565431,37.718,72.467 +565432,40.06,72.318 +565433,32.007,72.774 +565434,34.159,72.634 +565435,36.402,72.506 +565436,38.748,72.391 +565437,30.682,72.744 +565438,32.838,72.639 +565439,35.085,72.545 +565440,37.435,72.464 +565441,29.359,72.715 +565442,31.518,72.643 +565443,33.767,72.584 +565444,36.119,72.537 +565445,28.037,72.685 +565446,30.199,72.648 +565447,32.449,72.623 +565448,34.802,72.611 +565449,26.718,72.655 +565450,28.88,72.653 +565451,31.131,72.662 +565452,33.483,72.684 +565453,25.399,72.626 +565454,27.561,72.657 +565455,29.811,72.701 +565456,32.162,72.757 +565457,24.083,72.596 +565458,26.243,72.662 +565459,28.491,72.739 +565460,30.84,72.831 +565461,22.768,72.566 +565462,24.926,72.666 +565463,27.171,72.778 +565464,29.515,72.904 +565465,21.455,72.537 +565466,23.609,72.671 +565467,25.85,72.817 +565468,28.189,72.977 +565469,20.143,72.507 +565470,22.293,72.676 +565471,24.528,72.856 +565472,26.861,73.05 +565473,18.833,72.478 +565474,20.977,72.68 +565475,23.206,72.895 +565476,25.531,73.123 +565477,17.525,72.449 +565478,19.662,72.685 +565479,21.883,72.933 +565480,24.2,73.195 +565481,16.218,72.42 +565482,18.347,72.69 +565483,20.559,72.972 +565484,22.867,73.268 +565485,14.913,72.391 +565486,17.033,72.695 +565487,19.235,73.011 +565488,21.531,73.34 +565489,13.609,72.363 +565490,15.72,72.7 +565491,17.911,73.049 +565492,20.195,73.412 +565493,12.307,72.334 +565494,14.407,72.705 +565495,16.585,73.088 +565496,18.856,73.483 +565497,11.007,72.306 +565498,13.094,72.71 +565499,15.259,73.126 +565500,17.516,73.555 +565501,9.7083,72.279 +565502,11.782,72.715 +565503,13.933,73.164 +565504,16.174,73.626 +565505,8.4111,72.251 +565506,10.471,72.721 +565507,12.606,73.202 +565508,14.83,73.696 +565509,7.1155,72.224 +565510,9.1597,72.726 +565511,11.279,73.24 +565512,13.485,73.766 +565513,5.8215,72.198 +565514,7.8492,72.732 +565515,9.9507,73.278 +565516,12.138,73.836 +565517,4.529,72.171 +565518,6.5393,72.738 +565519,8.6221,73.316 +565520,10.789,73.905 +565521,3.2381,72.146 +565522,5.2299,72.744 +565523,7.2929,73.353 +565524,9.439,73.974 +565525,1.9487,72.12 +565526,3.9209,72.75 +565527,5.9632,73.39 +565528,8.0871,74.042 +565529,0.66075,72.096 +565530,2.6125,72.756 +565531,4.633,73.428 +565532,6.7336,74.11 +565533,359.37,72.072 +565534,1.3045,72.763 +565535,3.3023,73.465 +565536,5.3786,74.177 +565537,358.09,72.048 +565538,360,72.77 +565539,1.971,73.501 +565540,4.022,74.243 +565541,356.81,72.025 +565542,358.69,72.776 +565543,0.63922,73.538 +565544,2.6639,74.309 +565545,355.52,72.002 +565546,357.38,72.784 +565547,359.31,73.574 +565548,1.3044,74.375 +565549,354.24,71.98 +565550,356.08,72.791 +565551,357.97,73.611 +565552,359.94,74.439 +565553,352.96,71.959 +565554,354.77,72.798 +565555,356.64,73.646 +565556,358.58,74.503 +565557,351.69,71.939 +565558,353.47,72.806 +565559,355.31,73.682 +565560,357.22,74.567 +565561,350.41,71.919 +565562,352.16,72.814 +565563,353.97,73.718 +565564,355.85,74.629 +565565,349.13,71.9 +565566,350.86,72.822 +565567,352.64,73.753 +565568,354.48,74.691 +565569,347.86,71.881 +565570,349.55,72.831 +565571,351.3,73.788 +565572,353.12,74.752 +565573,346.59,71.864 +565574,348.25,72.84 +565575,349.97,73.823 +565576,351.75,74.813 +565577,345.32,71.847 +565578,346.95,72.849 +565579,348.63,73.857 +565580,350.38,74.872 +565581,344.05,71.831 +565582,345.64,72.858 +565583,347.29,73.892 +565584,349,74.931 +565585,342.78,71.816 +565586,344.34,72.868 +565587,345.96,73.926 +565588,347.63,74.989 +565589,341.51,71.801 +565590,343.04,72.878 +565591,344.62,73.959 +565592,346.26,75.046 +565593,340.24,71.788 +565594,341.74,72.888 +565595,343.28,73.993 +565596,344.88,75.102 +565597,338.98,71.775 +565598,340.44,72.898 +565599,341.94,74.026 +565600,343.51,75.157 +565601,337.72,71.764 +565602,339.14,72.909 +565603,340.61,74.059 +565604,342.13,75.212 +565605,336.45,71.753 +565606,337.84,72.92 +565607,339.27,74.091 +565608,340.75,75.265 +565609,335.19,71.743 +565610,336.54,72.931 +565611,337.93,74.123 +565612,339.37,75.318 +565613,333.93,71.734 +565614,335.24,72.943 +565615,336.59,74.155 +565616,337.99,75.369 +565617,332.67,71.726 +565618,333.94,72.955 +565619,335.25,74.187 +565620,336.61,75.42 +565621,331.41,71.72 +565622,332.64,72.968 +565623,333.91,74.218 +565624,335.22,75.47 +565625,330.15,71.714 +565626,331.34,72.98 +565627,332.57,74.249 +565628,333.84,75.518 +565629,328.9,71.709 +565630,330.04,72.993 +565631,331.23,74.279 +565632,332.45,75.566 +565633,327.64,71.705 +565634,328.74,73.007 +565635,329.88,74.309 +565636,331.07,75.613 +565637,326.39,71.703 +565638,327.45,73.021 +565639,328.54,74.339 +565640,329.68,75.658 +565641,325.13,71.701 +565642,326.15,73.035 +565643,327.2,74.369 +565644,328.3,75.703 +565645,323.88,71.7 +565646,324.85,73.049 +565647,325.86,74.398 +565648,326.91,75.746 +565649,322.62,71.701 +565650,323.55,73.064 +565651,324.52,74.427 +565652,325.52,75.788 +565653,321.37,71.703 +565654,322.26,73.079 +565655,323.17,74.455 +565656,324.13,75.83 +565657,320.12,71.706 +565658,320.96,73.095 +565659,321.83,74.483 +565660,322.74,75.87 +565661,318.87,71.71 +565662,319.66,73.111 +565663,320.49,74.511 +565664,321.35,75.909 +565665,317.62,71.715 +565666,318.37,73.127 +565667,319.15,74.538 +565668,319.96,75.947 +565669,316.37,71.721 +565670,317.07,73.144 +565671,317.8,74.565 +565672,318.57,75.984 +565673,315.12,71.728 +565674,315.77,73.161 +565675,316.46,74.592 +565676,317.18,76.019 +565677,313.87,71.737 +565678,314.48,73.179 +565679,315.11,74.618 +565680,315.78,76.054 +565681,312.63,71.747 +565682,313.18,73.197 +565683,313.77,74.644 +565684,314.39,76.088 +565685,311.38,71.758 +565686,311.89,73.215 +565687,312.43,74.669 +565688,313,76.12 +565689,310.13,71.77 +565690,310.59,73.234 +565691,311.08,74.695 +565692,311.61,76.151 +565693,308.89,71.783 +565694,309.3,73.253 +565695,309.74,74.719 +565696,310.21,76.181 +565697,307.64,71.798 +565698,308,73.272 +565699,308.39,74.743 +565700,308.82,76.21 +565701,306.39,71.814 +565702,306.7,73.292 +565703,307.05,74.767 +565704,307.42,76.238 +565705,305.15,71.831 +565706,305.41,73.313 +565707,305.7,74.791 +565708,306.03,76.264 +565709,303.9,71.849 +565710,304.11,73.333 +565711,304.36,74.814 +565712,304.63,76.289 +565713,302.66,71.868 +565714,302.82,73.355 +565715,303.01,74.837 +565716,303.24,76.314 +565717,301.41,71.889 +565718,301.52,73.376 +565719,301.67,74.859 +565720,301.85,76.337 +565721,300.17,71.911 +565722,300.23,73.398 +565723,300.32,74.881 +565724,300.45,76.358 +565725,298.92,71.934 +565726,298.93,73.42 +565727,298.98,74.903 +565728,299.06,76.379 +565729,297.68,71.958 +565730,297.64,73.443 +565731,297.63,74.924 +565732,297.66,76.399 +565733,296.43,71.984 +565734,296.34,73.466 +565735,296.29,74.944 +565736,296.27,76.417 +565737,295.19,72.011 +565738,295.05,73.49 +565739,294.94,74.965 +565740,294.87,76.434 +565741,293.94,72.039 +565742,293.75,73.514 +565743,293.6,74.985 +565744,293.48,76.45 +565745,292.7,72.068 +565746,292.46,73.538 +565747,292.25,75.004 +565748,292.08,76.465 +565749,291.45,72.098 +565750,291.16,73.563 +565751,290.91,75.024 +565752,290.69,76.479 +565753,290.21,72.13 +565754,289.87,73.588 +565755,289.56,75.042 +565756,289.3,76.491 +565757,288.96,72.163 +565758,288.57,73.614 +565759,288.22,75.061 +565760,287.9,76.502 +565761,287.71,72.197 +565762,287.28,73.64 +565763,286.88,75.079 +565764,286.51,76.513 +565765,286.47,72.232 +565766,285.98,73.666 +565767,285.53,75.097 +565768,285.12,76.522 +565769,285.22,72.269 +565770,284.68,73.693 +565771,284.19,75.114 +565772,283.73,76.53 +565773,283.97,72.306 +565774,283.39,73.72 +565775,282.84,75.131 +565776,282.34,76.537 +565777,282.73,72.345 +565778,282.09,73.748 +565779,281.5,75.147 +565780,280.94,76.542 +565781,281.48,72.385 +565782,280.79,73.776 +565783,280.15,75.164 +565784,279.55,76.547 +565785,280.23,72.426 +565786,279.5,73.804 +565787,278.81,75.179 +565788,278.16,76.55 +565789,278.98,72.468 +565790,278.2,73.833 +565791,277.47,75.195 +565792,276.77,76.553 +565793,277.73,72.511 +565794,276.9,73.862 +565795,276.12,75.21 +565796,275.39,76.554 +565797,276.48,72.556 +565798,275.61,73.891 +565799,274.78,75.225 +565800,274,76.555 +565801,275.23,72.602 +565802,274.31,73.921 +565803,273.44,75.239 +565804,272.61,76.554 +565805,273.98,72.648 +565806,273.01,73.951 +565807,272.09,75.253 +565808,271.22,76.552 +565809,272.72,72.696 +565810,271.71,73.982 +565811,270.75,75.267 +565812,269.84,76.549 +565813,271.47,72.745 +565814,270.42,74.013 +565815,269.41,75.28 +565816,268.45,76.545 +565817,270.22,72.795 +565818,269.12,74.044 +565819,268.07,75.293 +565820,267.07,76.54 +565821,268.96,72.845 +565822,267.82,74.075 +565823,266.73,75.306 +565824,265.68,76.535 +565825,267.71,72.897 +565826,266.52,74.107 +565827,265.38,75.318 +565828,264.3,76.528 +565829,266.45,72.95 +565830,265.22,74.14 +565831,264.04,75.33 +565832,262.92,76.52 +565833,265.19,73.004 +565834,263.92,74.172 +565835,262.7,75.342 +565836,261.54,76.511 +565837,263.93,73.059 +565838,262.62,74.205 +565839,261.36,75.353 +565840,260.16,76.501 +565841,262.68,73.115 +565842,261.32,74.238 +565843,260.02,75.364 +565844,258.78,76.491 +565845,261.41,73.172 +565846,260.02,74.272 +565847,258.68,75.375 +565848,257.4,76.479 +565849,260.15,73.229 +565850,258.72,74.306 +565851,257.34,75.386 +565852,256.02,76.467 +565853,258.89,73.288 +565854,257.41,74.34 +565855,256,75.396 +565856,254.65,76.454 +565857,257.63,73.347 +565858,256.11,74.374 +565859,254.66,75.406 +565860,253.27,76.44 +565861,256.36,73.407 +565862,254.81,74.409 +565863,253.32,75.415 +565864,251.9,76.425 +565865,255.1,73.469 +565866,253.51,74.444 +565867,251.98,75.425 +565868,250.52,76.409 +565869,253.83,73.53 +565870,252.2,74.479 +565871,250.65,75.434 +565872,249.15,76.393 +565873,252.56,73.593 +565874,250.9,74.515 +565875,249.31,75.443 +565876,247.78,76.375 +565877,251.29,73.657 +565878,249.6,74.551 +565879,247.97,75.451 +565880,246.41,76.357 +565881,250.02,73.721 +565882,248.29,74.587 +565883,246.64,75.46 +565884,245.05,76.338 +565885,248.75,73.786 +565886,246.99,74.623 +565887,245.3,75.468 +565888,243.68,76.319 +565889,247.47,73.851 +565890,245.68,74.659 +565891,243.96,75.476 +565892,242.31,76.299 +565893,246.2,73.918 +565894,244.37,74.696 +565895,242.63,75.484 +565896,240.95,76.278 +565897,244.92,73.985 +565898,243.07,74.733 +565899,241.29,75.491 +565900,239.59,76.257 +565901,243.64,74.052 +565902,241.76,74.77 +565903,239.96,75.499 +565904,238.22,76.235 +565905,242.36,74.12 +565906,240.45,74.808 +565907,238.62,75.506 +565908,236.86,76.212 +565909,241.08,74.189 +565910,239.15,74.845 +565911,237.29,75.513 +565912,235.51,76.189 +565913,239.8,74.258 +565914,237.84,74.883 +565915,235.96,75.519 +565916,234.15,76.165 +565917,238.51,74.328 +565918,236.53,74.921 +565919,234.62,75.526 +565920,232.79,76.141 +565921,237.23,74.398 +565922,235.22,74.959 +565923,233.29,75.532 +565924,231.44,76.116 +565925,235.94,74.469 +565926,233.91,74.997 +565927,231.96,75.539 +565928,230.08,76.09 +565929,234.65,74.54 +565930,232.6,75.036 +565931,230.63,75.545 +565932,228.73,76.065 +565933,233.36,74.612 +565934,231.29,75.074 +565935,229.3,75.551 +565936,227.38,76.039 +565937,232.07,74.684 +565938,229.98,75.113 +565939,227.97,75.557 +565940,226.03,76.012 +565941,230.78,74.756 +565942,228.66,75.152 +565943,226.64,75.562 +565944,224.69,75.985 +565945,229.48,74.829 +565946,227.35,75.191 +565947,225.31,75.568 +565948,223.34,75.958 +565949,228.18,74.902 +565950,226.04,75.23 +565951,223.98,75.574 +565952,222,75.93 +565953,226.89,74.975 +565954,224.72,75.269 +565955,222.65,75.579 +565956,220.65,75.902 +565957,225.59,75.049 +565958,223.41,75.308 +565959,221.32,75.584 +565960,219.31,75.874 +565961,224.28,75.123 +565962,222.09,75.348 +565963,219.99,75.59 +565964,217.97,75.846 +565965,222.98,75.197 +565966,220.78,75.387 +565967,218.67,75.595 +565968,216.63,75.817 +565969,221.67,75.271 +565970,219.46,75.427 +565971,217.34,75.6 +565972,215.3,75.788 +565973,220.37,75.345 +565974,218.15,75.466 +565975,216.01,75.605 +565976,213.96,75.759 +565977,219.06,75.419 +565978,216.83,75.506 +565979,214.69,75.61 +565980,212.63,75.73 +565981,217.75,75.494 +565982,215.51,75.545 +565983,213.36,75.615 +565984,211.3,75.701 +565985,216.44,75.568 +565986,214.19,75.585 +565987,212.04,75.62 +565988,209.96,75.672 +565989,215.12,75.643 +565990,212.87,75.625 +565991,210.72,75.625 +565992,208.64,75.642 +565993,213.81,75.717 +565994,211.55,75.664 +565995,209.39,75.63 +565996,207.31,75.613 +565997,212.49,75.792 +565998,210.23,75.704 +565999,208.07,75.635 +566000,205.98,75.583 +566001,211.17,75.866 +566002,208.91,75.744 +566003,206.75,75.641 +566004,204.66,75.554 +566005,209.85,75.94 +566006,207.59,75.783 +566007,205.43,75.646 +566008,203.34,75.525 +566009,208.53,76.015 +566010,206.27,75.823 +566011,204.1,75.651 +566012,202.02,75.496 +566013,207.2,76.089 +566014,204.95,75.863 +566015,202.78,75.656 +566016,200.7,75.466 +566017,205.88,76.163 +566018,203.63,75.902 +566019,201.46,75.661 +566020,199.38,75.437 +566021,204.55,76.236 +566022,202.3,75.942 +566023,200.14,75.666 +566024,198.06,75.409 +566025,203.22,76.31 +566026,200.98,75.981 +566027,198.82,75.672 +566028,196.75,75.38 +566029,201.89,76.383 +566030,199.65,76.02 +566031,197.51,75.677 +566032,195.43,75.352 +566033,200.56,76.456 +566034,198.33,76.06 +566035,196.19,75.683 +566036,194.12,75.323 +566037,199.22,76.529 +566038,197,76.099 +566039,194.87,75.688 +566040,192.81,75.296 +566041,197.89,76.601 +566042,195.68,76.138 +566043,193.55,75.694 +566044,191.5,75.268 +566045,196.55,76.673 +566046,194.35,76.177 +566047,192.24,75.7 +566048,190.2,75.241 +566049,195.21,76.744 +566050,193.02,76.216 +566051,190.92,75.706 +566052,188.89,75.214 +566053,193.87,76.815 +566054,191.69,76.254 +566055,189.6,75.712 +566056,187.59,75.187 +566057,192.52,76.886 +566058,190.36,76.293 +566059,188.29,75.718 +566060,186.29,75.161 +566061,191.18,76.956 +566062,189.04,76.331 +566063,186.97,75.725 +566064,184.99,75.135 +566065,189.83,77.026 +566066,187.71,76.369 +566067,185.66,75.731 +566068,183.69,75.11 +566069,188.49,77.095 +566070,186.38,76.407 +566071,184.35,75.738 +566072,182.39,75.086 +566073,187.14,77.164 +566074,185.04,76.445 +566075,183.03,75.745 +566076,181.09,75.061 +566077,185.79,77.232 +566078,183.71,76.483 +566079,181.72,75.752 +566080,179.8,75.038 +566081,184.43,77.299 +566082,182.38,76.521 +566083,180.41,75.759 +566084,178.5,75.015 +566085,183.08,77.366 +566086,181.05,76.558 +566087,179.1,75.767 +566088,177.21,74.992 +566089,181.72,77.433 +566090,179.72,76.595 +566091,177.79,75.775 +566092,175.92,74.97 +566093,180.37,77.498 +566094,178.38,76.632 +566095,176.48,75.783 +566096,174.63,74.949 +566097,179.01,77.563 +566098,177.05,76.669 +566099,175.16,75.791 +566100,173.34,74.928 +566101,177.65,77.627 +566102,175.71,76.705 +566103,173.85,75.799 +566104,172.06,74.908 +566105,176.29,77.691 +566106,174.38,76.742 +566107,172.55,75.808 +566108,170.77,74.889 +566109,174.92,77.754 +566110,173.04,76.778 +566111,171.24,75.817 +566112,169.49,74.871 +566113,173.56,77.815 +566114,171.71,76.813 +566115,169.93,75.826 +566116,168.21,74.853 +566117,172.19,77.877 +566118,170.37,76.849 +566119,168.62,75.836 +566120,166.93,74.836 +566121,170.83,77.937 +566122,169.04,76.884 +566123,167.31,75.845 +566124,165.65,74.82 +566125,169.46,77.997 +566126,167.7,76.919 +566127,166,75.855 +566128,164.37,74.804 +566129,168.09,78.055 +566130,166.36,76.954 +566131,164.7,75.866 +566132,163.09,74.79 +566133,166.72,78.113 +566134,165.02,76.988 +566135,163.39,75.876 +566136,161.82,74.776 +566137,165.34,78.17 +566138,163.68,77.022 +566139,162.09,75.887 +566140,160.54,74.764 +566141,163.97,78.226 +566142,162.34,77.056 +566143,160.78,75.898 +566144,159.27,74.752 +566145,162.6,78.281 +566146,161.01,77.09 +566147,159.47,75.91 +566148,157.99,74.741 +566149,161.22,78.335 +566150,159.67,77.123 +566151,158.17,75.922 +566152,156.72,74.731 +566153,159.84,78.388 +566154,158.33,77.156 +566155,156.86,75.934 +566156,155.45,74.722 +566157,158.47,78.441 +566158,156.98,77.188 +566159,155.56,75.946 +566160,154.18,74.714 +566161,157.09,78.492 +566162,155.64,77.221 +566163,154.26,75.959 +566164,152.92,74.707 +566165,155.71,78.542 +566166,154.3,77.253 +566167,152.95,75.972 +566168,151.65,74.701 +566169,154.33,78.591 +566170,152.96,77.284 +566171,151.65,75.986 +566172,150.38,74.696 +566173,152.94,78.639 +566174,151.62,77.315 +566175,150.35,75.999 +566176,149.12,74.692 +566177,151.56,78.687 +566178,150.28,77.346 +566179,149.04,76.014 +566180,147.85,74.689 +566181,150.18,78.733 +566182,148.93,77.377 +566183,147.74,76.028 +566184,146.59,74.687 +566185,148.79,78.778 +566186,147.59,77.407 +566187,146.44,76.043 +566188,145.33,74.686 +566189,147.41,78.822 +566190,146.25,77.437 +566191,145.14,76.059 +566192,144.07,74.687 +566193,146.02,78.865 +566194,144.9,77.467 +566195,143.83,76.074 +566196,142.81,74.688 +566197,144.63,78.906 +566198,143.56,77.496 +566199,142.53,76.09 +566200,141.55,74.691 +566201,143.25,78.947 +566202,142.22,77.524 +566203,141.23,76.107 +566204,140.29,74.694 +566205,141.86,78.986 +566206,140.87,77.553 +566207,139.93,76.124 +566208,139.03,74.699 +566209,140.47,79.025 +566210,139.53,77.581 +566211,138.63,76.141 +566212,137.77,74.705 +566213,139.08,79.062 +566214,138.18,77.609 +566215,137.33,76.158 +566216,136.51,74.713 +566217,137.69,79.098 +566218,136.84,77.636 +566219,136.03,76.176 +566220,135.26,74.721 +566221,136.3,79.133 +566222,135.49,77.663 +566223,134.73,76.195 +566224,134,74.731 +566225,134.9,79.167 +566226,134.15,77.689 +566227,133.43,76.214 +566228,132.74,74.741 +566229,133.51,79.2 +566230,132.8,77.715 +566231,132.13,76.233 +566232,131.49,74.753 +566233,132.12,79.231 +566234,131.46,77.741 +566235,130.83,76.253 +566236,130.24,74.767 +566237,130.73,79.262 +566238,130.11,77.766 +566239,129.53,76.273 +566240,128.98,74.781 +566241,129.33,79.291 +566242,128.76,77.791 +566243,128.23,76.293 +566244,127.73,74.797 +566245,127.94,79.319 +566246,127.42,77.816 +566247,126.93,76.314 +566248,126.47,74.813 +566249,126.55,79.345 +566250,126.07,77.84 +566251,125.63,76.335 +566252,125.22,74.832 +566253,125.15,79.371 +566254,124.72,77.864 +566255,124.33,76.357 +566256,123.97,74.851 +566257,123.76,79.395 +566258,123.38,77.887 +566259,123.03,76.379 +566260,122.72,74.871 +566261,122.36,79.419 +566262,122.03,77.91 +566263,121.73,76.401 +566264,121.47,74.893 +566265,120.97,79.441 +566266,120.68,77.933 +566267,120.43,76.424 +566268,120.21,74.916 +566269,119.57,79.462 +566270,119.34,77.955 +566271,119.13,76.448 +566272,118.96,74.941 +566273,118.18,79.481 +566274,117.99,77.977 +566275,117.83,76.471 +566276,117.71,74.966 +566277,116.78,79.5 +566278,116.64,77.998 +566279,116.53,76.496 +566280,116.46,74.993 +566281,115.39,79.517 +566282,115.3,78.019 +566283,115.24,76.52 +566284,115.21,75.021 +566285,113.99,79.533 +566286,113.95,78.04 +566287,113.94,76.545 +566288,113.96,75.05 +566289,112.6,79.548 +566290,112.6,78.06 +566291,112.64,76.57 +566292,112.71,75.081 +566293,111.2,79.562 +566294,111.25,78.08 +566295,111.34,76.596 +566296,111.45,75.112 +566297,109.81,79.575 +566298,109.91,78.099 +566299,110.04,76.622 +566300,110.2,75.145 +566301,108.41,79.586 +566302,108.56,78.118 +566303,108.74,76.649 +566304,108.95,75.18 +566305,107.02,79.596 +566306,107.21,78.137 +566307,107.44,76.676 +566308,107.7,75.215 +566309,105.63,79.605 +566310,105.87,78.155 +566311,106.14,76.704 +566312,106.45,75.251 +566313,104.23,79.613 +566314,104.52,78.173 +566315,104.84,76.731 +566316,105.19,75.289 +566317,102.84,79.62 +566318,103.17,78.191 +566319,103.54,76.76 +566320,103.94,75.328 +566321,101.45,79.626 +566322,101.83,78.208 +566323,102.24,76.788 +566324,102.69,75.368 +566325,100.05,79.631 +566326,100.48,78.225 +566327,100.94,76.817 +566328,101.44,75.41 +566329,98.66,79.634 +566330,99.133,78.241 +566331,99.641,76.847 +566332,100.18,75.452 +566333,97.268,79.637 +566334,97.787,78.257 +566335,98.34,76.876 +566336,98.929,75.496 +566337,95.877,79.638 +566338,96.441,78.273 +566339,97.04,76.907 +566340,97.675,75.541 +566341,94.486,79.638 +566342,95.095,78.288 +566343,95.739,76.937 +566344,96.42,75.587 +566345,93.095,79.638 +566346,93.749,78.303 +566347,94.438,76.968 +566348,95.164,75.634 +566349,91.706,79.636 +566350,92.403,78.318 +566351,93.137,76.999 +566352,93.909,75.682 +566353,90.316,79.633 +566354,91.058,78.332 +566355,91.836,77.031 +566356,92.652,75.731 +566357,88.928,79.629 +566358,89.712,78.346 +566359,90.534,77.063 +566360,91.395,75.782 +566361,87.54,79.624 +566362,88.367,78.36 +566363,89.232,77.095 +566364,90.137,75.833 +566365,86.153,79.618 +566366,87.022,78.373 +566367,87.93,77.128 +566368,88.878,75.886 +566369,84.766,79.611 +566370,85.677,78.386 +566371,86.628,77.161 +566372,87.619,75.939 +566373,83.381,79.603 +566374,84.333,78.398 +566375,85.325,77.195 +566376,86.359,75.994 +566377,81.996,79.594 +566378,82.989,78.411 +566379,84.022,77.228 +566380,85.098,76.05 +566381,80.612,79.585 +566382,81.645,78.423 +566383,82.719,77.262 +566384,83.837,76.106 +566385,79.229,79.574 +566386,80.301,78.434 +566387,81.416,77.297 +566388,82.574,76.164 +566389,77.846,79.562 +566390,78.958,78.446 +566391,80.112,77.332 +566392,81.311,76.222 +566393,76.465,79.55 +566394,77.614,78.457 +566395,78.808,77.367 +566396,80.047,76.282 +566397,75.084,79.537 +566398,76.272,78.467 +566399,77.503,77.402 +566400,78.781,76.342 +566401,73.705,79.522 +566402,74.929,78.478 +566403,76.198,77.438 +566404,77.515,76.403 +566405,72.326,79.507 +566406,73.587,78.488 +566407,74.893,77.473 +566408,76.248,76.465 +566409,70.949,79.491 +566410,72.245,78.498 +566411,73.587,77.51 +566412,74.98,76.528 +566413,69.572,79.475 +566414,70.903,78.508 +566415,72.281,77.546 +566416,73.71,76.592 +566417,68.197,79.457 +566418,69.562,78.517 +566419,70.975,77.583 +566420,72.44,76.656 +566421,66.823,79.439 +566422,68.221,78.526 +566423,69.668,77.62 +566424,71.168,76.722 +566425,65.45,79.42 +566426,66.88,78.535 +566427,68.361,77.657 +566428,69.895,76.788 +566429,64.078,79.401 +566430,65.54,78.544 +566431,67.054,77.695 +566432,68.621,76.855 +566433,62.707,79.38 +566434,64.2,78.553 +566435,65.746,77.733 +566436,67.346,76.922 +566437,61.337,79.36 +566438,62.861,78.561 +566439,64.437,77.771 +566440,66.07,76.991 +566441,59.968,79.338 +566442,61.522,78.569 +566443,63.128,77.809 +566444,64.792,77.06 +566445,58.601,79.316 +566446,60.183,78.577 +566447,61.819,77.847 +566448,63.513,77.129 +566449,57.235,79.293 +566450,58.845,78.584 +566451,60.509,77.886 +566452,62.233,77.199 +566453,55.87,79.27 +566454,57.507,78.592 +566455,59.199,77.925 +566456,60.951,77.27 +566457,54.507,79.246 +566458,56.169,78.599 +566459,57.888,77.964 +566460,59.668,77.341 +566461,53.144,79.221 +566462,54.832,78.606 +566463,56.577,78.003 +566464,58.384,77.413 +566465,51.784,79.196 +566466,53.495,78.613 +566467,55.266,78.042 +566468,57.098,77.486 +566469,50.424,79.171 +566470,52.159,78.62 +566471,53.953,78.082 +566472,55.811,77.559 +566473,49.066,79.145 +566474,50.823,78.627 +566475,52.641,78.122 +566476,54.523,77.632 +566477,47.709,79.119 +566478,49.488,78.633 +566479,51.328,78.162 +566480,53.233,77.706 +566481,46.353,79.092 +566482,48.153,78.64 +566483,50.014,78.202 +566484,51.941,77.78 +566485,44.999,79.065 +566486,46.819,78.646 +566487,48.7,78.242 +566488,50.648,77.854 +566489,43.647,79.037 +566490,45.485,78.652 +566491,47.385,78.282 +566492,49.354,77.929 +566493,42.295,79.01 +566494,44.151,78.658 +566495,46.07,78.322 +566496,48.058,78.004 +566497,40.945,78.982 +566498,42.818,78.664 +566499,44.754,78.363 +566500,46.76,78.08 +566501,39.597,78.953 +566502,41.486,78.67 +566503,43.438,78.403 +566504,45.461,78.156 +566505,38.25,78.925 +566506,40.153,78.676 +566507,42.122,78.444 +566508,44.161,78.232 +566509,36.904,78.896 +566510,38.822,78.682 +566511,40.804,78.485 +566512,42.858,78.308 +566513,35.56,78.867 +566514,37.491,78.688 +566515,39.486,78.526 +566516,41.555,78.384 +566517,34.218,78.838 +566518,36.16,78.693 +566519,38.168,78.567 +566520,40.249,78.461 +566521,32.877,78.809 +566522,34.83,78.699 +566523,36.849,78.607 +566524,38.942,78.537 +566525,31.537,78.779 +566526,33.5,78.704 +566527,35.53,78.648 +566528,37.634,78.614 +566529,30.199,78.75 +566530,32.171,78.71 +566531,34.21,78.689 +566532,36.323,78.691 +566533,28.862,78.72 +566534,30.842,78.716 +566535,32.889,78.73 +566536,35.011,78.767 +566537,27.527,78.691 +566538,29.514,78.721 +566539,31.568,78.771 +566540,33.698,78.844 +566541,26.194,78.661 +566542,28.186,78.727 +566543,30.246,78.812 +566544,32.383,78.921 +566545,24.862,78.632 +566546,26.859,78.732 +566547,28.924,78.853 +566548,31.066,78.998 +566549,23.531,78.603 +566550,25.532,78.738 +566551,27.601,78.894 +566552,29.748,79.074 +566553,22.202,78.573 +566554,24.206,78.744 +566555,26.278,78.935 +566556,28.427,79.151 +566557,20.874,78.544 +566558,22.88,78.749 +566559,24.954,78.976 +566560,27.106,79.227 +566561,19.548,78.515 +566562,21.555,78.755 +566563,23.63,79.017 +566564,25.782,79.303 +566565,18.224,78.486 +566566,20.23,78.761 +566567,22.304,79.058 +566568,24.457,79.379 +566569,16.901,78.457 +566570,18.906,78.767 +566571,20.979,79.099 +566572,23.13,79.455 +566573,15.579,78.429 +566574,17.582,78.773 +566575,19.653,79.139 +566576,21.802,79.53 +566577,14.259,78.401 +566578,16.258,78.779 +566579,18.326,79.18 +566580,20.472,79.606 +566581,12.941,78.373 +566582,14.936,78.785 +566583,16.999,79.22 +566584,19.14,79.68 +566585,11.624,78.345 +566586,13.613,78.792 +566587,15.671,79.261 +566588,17.807,79.755 +566589,10.309,78.318 +566590,12.291,78.798 +566591,14.343,79.301 +566592,16.472,79.829 +566593,8.9946,78.291 +566594,10.97,78.805 +566595,13.014,79.341 +566596,15.135,79.903 +566597,7.6822,78.264 +566598,9.6493,78.811 +566599,11.684,79.381 +566600,13.797,79.976 +566601,6.3712,78.238 +566602,8.3289,78.818 +566603,10.354,79.421 +566604,12.457,80.049 +566605,5.0617,78.213 +566606,7.009,78.825 +566607,9.0235,79.461 +566608,11.116,80.1214 +566609,3.7536,78.187 +566610,5.6896,78.832 +566611,7.6924,79.5 +566612,9.7728,80.1933 +566613,2.447,78.163 +566614,4.3706,78.84 +566615,6.3607,79.54 +566616,8.4281,80.2647 +566617,1.1419,78.138 +566618,3.0521,78.847 +566619,5.0285,79.579 +566620,7.0819,80.3355 +566621,359.84,78.115 +566622,1.7341,78.855 +566623,3.6958,79.618 +566624,5.7341,80.4058 +566625,358.54,78.092 +566626,0.41654,78.863 +566627,2.3626,79.657 +566628,4.3847,80.4754 +566629,357.24,78.069 +566630,359.1,78.871 +566631,1.0288,79.695 +566632,3.0338,80.5444 +566633,355.94,78.047 +566634,357.78,78.879 +566635,359.69,79.734 +566636,1.6814,80.6127 +566637,354.64,78.026 +566638,356.47,78.888 +566639,358.36,79.772 +566640,0.32747,80.6804 +566641,353.34,78.006 +566642,355.15,78.897 +566643,357.02,79.81 +566644,358.97,80.7473 +566645,352.05,77.986 +566646,353.84,78.906 +566647,355.69,79.848 +566648,357.62,80.8135 +566649,350.75,77.967 +566650,352.52,78.915 +566651,354.35,79.885 +566652,356.26,80.879 +566653,349.46,77.948 +566654,351.21,78.925 +566655,353.02,79.922 +566656,354.9,80.9437 +566657,348.17,77.931 +566658,349.89,78.934 +566659,351.68,79.959 +566660,353.54,81.0076 +566661,346.88,77.914 +566662,348.58,78.944 +566663,350.34,79.996 +566664,352.17,81.0707 +566665,345.59,77.898 +566666,347.27,78.955 +566667,349,80.0326 +566668,350.81,81.133 +566669,344.3,77.883 +566670,345.95,78.965 +566671,347.66,80.0688 +566672,349.44,81.1944 +566673,343.01,77.868 +566674,344.64,78.976 +566675,346.32,80.1047 +566676,348.08,81.2549 +566677,341.73,77.855 +566678,343.33,78.988 +566679,344.98,80.1403 +566680,346.71,81.3146 +566681,340.45,77.842 +566682,342.02,78.999 +566683,343.64,80.1756 +566684,345.34,81.3733 +566685,339.16,77.831 +566686,340.71,79.011 +566687,342.3,80.2107 +566688,343.97,81.4311 +566689,337.88,77.82 +566690,339.39,79.023 +566691,340.96,80.2454 +566692,342.6,81.4879 +566693,336.6,77.81 +566694,338.08,79.036 +566695,339.62,80.2798 +566696,341.22,81.5438 +566697,335.32,77.801 +566698,336.77,79.049 +566699,338.28,80.3138 +566700,339.85,81.5986 +566701,334.04,77.794 +566702,335.46,79.062 +566703,336.94,80.3476 +566704,338.47,81.6525 +566705,332.77,77.787 +566706,334.15,79.075 +566707,335.6,80.381 +566708,337.1,81.7054 +566709,331.49,77.781 +566710,332.84,79.089 +566711,334.25,80.4141 +566712,335.72,81.7572 +566713,330.21,77.776 +566714,331.54,79.103 +566715,332.91,80.4468 +566716,334.34,81.8079 +566717,328.94,77.773 +566718,330.23,79.118 +566719,331.57,80.4792 +566720,332.96,81.8577 +566721,327.67,77.77 +566722,328.92,79.133 +566723,330.22,80.5112 +566724,331.58,81.9063 +566725,326.39,77.769 +566726,327.61,79.148 +566727,328.88,80.5429 +566728,330.2,81.9538 +566729,325.12,77.768 +566730,326.3,79.164 +566731,327.53,80.5742 +566732,328.82,82.0003 +566733,323.85,77.769 +566734,325,79.18 +566735,326.19,80.6051 +566736,327.43,82.0456 +566737,322.58,77.771 +566738,323.69,79.196 +566739,324.84,80.6357 +566740,326.05,82.0898 +566741,321.31,77.774 +566742,322.38,79.213 +566743,323.5,80.6659 +566744,324.66,82.1329 +566745,320.04,77.778 +566746,321.08,79.23 +566747,322.15,80.6957 +566748,323.28,82.1748 +566749,318.78,77.783 +566750,319.77,79.248 +566751,320.8,80.7252 +566752,321.89,82.2156 +566753,317.51,77.79 +566754,318.46,79.266 +566755,319.46,80.7542 +566756,320.5,82.2552 +566757,316.24,77.797 +566758,317.16,79.284 +566759,318.11,80.7829 +566760,319.11,82.2936 +566761,314.98,77.806 +566762,315.85,79.303 +566763,316.76,80.8112 +566764,317.72,82.3308 +566765,313.71,77.816 +566766,314.54,79.322 +566767,315.42,80.839 +566768,316.33,82.3669 +566769,312.45,77.828 +566770,313.24,79.342 +566771,314.07,80.8665 +566772,314.94,82.4018 +566773,311.19,77.84 +566774,311.93,79.362 +566775,312.72,80.8936 +566776,313.55,82.4354 +566777,309.92,77.854 +566778,310.63,79.382 +566779,311.37,80.9203 +566780,312.16,82.4679 +566781,308.66,77.869 +566782,309.32,79.403 +566783,310.02,80.9466 +566784,310.77,82.4991 +566785,307.4,77.885 +566786,308.02,79.424 +566787,308.68,80.9725 +566788,309.38,82.5292 +566789,306.14,77.903 +566790,306.71,79.446 +566791,307.33,80.9979 +566792,307.98,82.558 +566793,304.88,77.922 +566794,305.41,79.468 +566795,305.98,81.023 +566796,306.59,82.5856 +566797,303.62,77.942 +566798,304.11,79.491 +566799,304.63,81.0477 +566800,305.19,82.612 +566801,302.36,77.963 +566802,302.8,79.514 +566803,303.28,81.0719 +566804,303.8,82.6371 +566805,301.1,77.986 +566806,301.5,79.537 +566807,301.93,81.0958 +566808,302.41,82.6611 +566809,299.84,78.009 +566810,300.19,79.561 +566811,300.58,81.1192 +566812,301.01,82.6838 +566813,298.58,78.034 +566814,298.89,79.585 +566815,299.23,81.1423 +566816,299.62,82.7053 +566817,297.32,78.061 +566818,297.58,79.61 +566819,297.88,81.1649 +566820,298.22,82.7255 +566821,296.06,78.088 +566822,296.28,79.635 +566823,296.53,81.1871 +566824,296.82,82.7446 +566825,294.8,78.117 +566826,294.98,79.66 +566827,295.18,81.2089 +566828,295.43,82.7624 +566829,293.54,78.147 +566830,293.67,79.686 +566831,293.83,81.2303 +566832,294.03,82.779 +566833,292.28,78.179 +566834,292.37,79.712 +566835,292.49,81.2513 +566836,292.64,82.7944 +566837,291.02,78.212 +566838,291.06,79.739 +566839,291.14,81.2719 +566840,291.24,82.8086 +566841,289.76,78.245 +566842,289.76,79.766 +566843,289.79,81.2921 +566844,289.85,82.8216 +566845,288.51,78.281 +566846,288.45,79.794 +566847,288.44,81.3119 +566848,288.45,82.8334 +566849,287.25,78.317 +566850,287.15,79.822 +566851,287.09,81.3313 +566852,287.05,82.844 +566853,285.99,78.355 +566854,285.85,79.85 +566855,285.74,81.3503 +566856,285.66,82.8534 +566857,284.73,78.394 +566858,284.54,79.879 +566859,284.39,81.3689 +566860,284.26,82.8617 +566861,283.47,78.434 +566862,283.24,79.908 +566863,283.04,81.3871 +566864,282.87,82.8687 +566865,282.21,78.475 +566866,281.93,79.938 +566867,281.69,81.4049 +566868,281.47,82.8747 +566869,280.95,78.518 +566870,280.63,79.968 +566871,280.34,81.4224 +566872,280.08,82.8794 +566873,279.69,78.561 +566874,279.32,79.998 +566875,278.99,81.4394 +566876,278.68,82.883 +566877,278.43,78.606 +566878,278.02,80.0292 +566879,277.64,81.4561 +566880,277.29,82.8855 +566881,277.17,78.652 +566882,276.71,80.0604 +566883,276.29,81.4724 +566884,275.89,82.8869 +566885,275.91,78.7 +566886,275.41,80.0919 +566887,274.94,81.4883 +566888,274.5,82.8871 +566889,274.65,78.748 +566890,274.1,80.1239 +566891,273.59,81.5039 +566892,273.11,82.8863 +566893,273.38,78.798 +566894,272.8,80.1563 +566895,272.24,81.519 +566896,271.71,82.8844 +566897,272.12,78.848 +566898,271.49,80.189 +566899,270.89,81.5339 +566900,270.32,82.8814 +566901,270.86,78.9 +566902,270.19,80.2221 +566903,269.54,81.5483 +566904,268.93,82.8773 +566905,269.6,78.953 +566906,268.88,80.2555 +566907,268.19,81.5625 +566908,267.54,82.8722 +566909,268.33,79.007 +566910,267.57,80.2894 +566911,266.84,81.5762 +566912,266.15,82.8661 +566913,267.07,79.062 +566914,266.27,80.3235 +566915,265.5,81.5897 +566916,264.76,82.8589 +566917,265.8,79.118 +566918,264.96,80.358 +566919,264.15,81.6028 +566920,263.37,82.8508 +566921,264.54,79.176 +566922,263.65,80.3929 +566923,262.8,81.6155 +566924,261.98,82.8416 +566925,263.27,79.234 +566926,262.34,80.4281 +566927,261.45,81.628 +566928,260.59,82.8315 +566929,262,79.293 +566930,261.04,80.4637 +566931,260.1,81.6401 +566932,259.2,82.8205 +566933,260.73,79.353 +566934,259.73,80.4995 +566935,258.76,81.6519 +566936,257.82,82.8085 +566937,259.47,79.414 +566938,258.42,80.5357 +566939,257.41,81.6634 +566940,256.43,82.7956 +566941,258.2,79.476 +566942,257.11,80.5722 +566943,256.06,81.6746 +566944,255.05,82.7818 +566945,256.93,79.54 +566946,255.8,80.609 +566947,254.72,81.6855 +566948,253.66,82.7671 +566949,255.65,79.603 +566950,254.49,80.6461 +566951,253.37,81.6961 +566952,252.28,82.7516 +566953,254.38,79.668 +566954,253.19,80.6835 +566955,252.02,81.7065 +566956,250.9,82.7352 +566957,253.11,79.734 +566958,251.88,80.7212 +566959,250.68,81.7166 +566960,249.52,82.718 +566961,251.84,79.801 +566962,250.57,80.7592 +566963,249.33,81.7264 +566964,248.14,82.7001 +566965,250.56,79.868 +566966,249.25,80.7974 +566967,247.99,81.7359 +566968,246.76,82.6813 +566969,249.28,79.936 +566970,247.94,80.8359 +566971,246.64,81.7452 +566972,245.38,82.6618 +566973,248.01,80.0049 +566974,246.63,80.8747 +566975,245.3,81.7542 +566976,244,82.6416 +566977,246.73,80.0746 +566978,245.32,80.9137 +566979,243.95,81.763 +566980,242.62,82.6206 +566981,245.45,80.145 +566982,244.01,80.9529 +566983,242.61,81.7716 +566984,241.25,82.599 +566985,244.17,80.2161 +566986,242.7,80.9924 +566987,241.27,81.7799 +566988,239.87,82.5767 +566989,242.89,80.2878 +566990,241.38,81.0321 +566991,239.92,81.7881 +566992,238.5,82.5537 +566993,241.6,80.3602 +566994,240.07,81.072 +566995,238.58,81.796 +566996,237.13,82.5302 +566997,240.32,80.4333 +566998,238.76,81.1121 +566999,237.24,81.8038 +567000,235.76,82.506 +567001,239.03,80.5069 +567002,237.44,81.1524 +567003,235.89,81.8113 +567004,234.39,82.4813 +567005,237.75,80.5811 +567006,236.13,81.1929 +567007,234.55,81.8187 +567008,233.02,82.456 +567009,236.46,80.6558 +567010,234.81,81.2336 +567011,233.21,81.8259 +567012,231.65,82.4303 +567013,235.17,80.731 +567014,233.5,81.2745 +567015,231.87,81.8329 +567016,230.29,82.404 +567017,233.88,80.8068 +567018,232.18,81.3155 +567019,230.53,81.8398 +567020,228.92,82.3772 +567021,232.59,80.8829 +567022,230.87,81.3567 +567023,229.19,81.8465 +567024,227.56,82.3501 +567025,231.3,80.9596 +567026,229.55,81.398 +567027,227.85,81.8531 +567028,226.2,82.3225 +567029,230,81.0366 +567030,228.23,81.4395 +567031,226.51,81.8595 +567032,224.84,82.2945 +567033,228.71,81.114 +567034,226.91,81.481 +567035,225.17,81.8659 +567036,223.48,82.2661 +567037,227.41,81.1917 +567038,225.6,81.5227 +567039,223.83,81.8721 +567040,222.12,82.2374 +567041,226.11,81.2698 +567042,224.28,81.5645 +567043,222.49,81.8782 +567044,220.76,82.2084 +567045,224.81,81.3481 +567046,222.96,81.6064 +567047,221.16,81.8843 +567048,219.4,82.1791 +567049,223.51,81.4267 +567050,221.64,81.6484 +567051,219.82,81.8902 +567052,218.05,82.1496 +567053,222.21,81.5055 +567054,220.32,81.6905 +567055,218.48,81.8961 +567056,216.7,82.1198 +567057,220.9,81.5845 +567058,219,81.7326 +567059,217.15,81.9019 +567060,215.34,82.0899 +567061,219.6,81.6637 +567062,217.68,81.7748 +567063,215.81,81.9077 +567064,213.99,82.0597 +567065,218.29,81.743 +567066,216.35,81.8171 +567067,214.47,81.9134 +567068,212.65,82.0294 +567069,216.98,81.8224 +567070,215.03,81.8594 +567071,213.14,81.9191 +567072,211.3,81.999 +567073,215.67,81.9019 +567074,213.71,81.9017 +567075,211.8,81.9248 +567076,209.95,81.9685 +567077,214.36,81.9815 +567078,212.39,81.944 +567079,210.47,81.9304 +567080,208.61,81.938 +567081,213.05,82.061 +567082,211.06,81.9863 +567083,209.14,81.9361 +567084,207.26,81.9074 +567085,211.73,82.1406 +567086,209.74,82.0287 +567087,207.8,81.9417 +567088,205.92,81.8768 +567089,210.42,82.2201 +567090,208.41,82.071 +567091,206.47,81.9473 +567092,204.58,81.8462 +567093,209.1,82.2995 +567094,207.09,82.1133 +567095,205.14,81.953 +567096,203.24,81.8157 +567097,207.78,82.3788 +567098,205.76,82.1556 +567099,203.81,81.9587 +567100,201.91,81.7853 +567101,206.46,82.458 +567102,204.43,82.1978 +567103,202.47,81.9645 +567104,200.57,81.7549 +567105,205.13,82.537 +567106,203.11,82.24 +567107,201.14,81.9703 +567108,199.24,81.7247 +567109,203.81,82.6159 +567110,201.78,82.2822 +567111,199.81,81.9761 +567112,197.9,81.6947 +567113,202.48,82.6945 +567114,200.45,82.3242 +567115,198.48,81.982 +567116,196.57,81.6649 +567117,201.16,82.7728 +567118,199.12,82.3662 +567119,197.15,81.988 +567120,195.24,81.6353 +567121,199.83,82.8509 +567122,197.79,82.4081 +567123,195.82,81.9941 +567124,193.91,81.6059 +567125,198.5,82.9286 +567126,196.46,82.4499 +567127,194.49,82.0003 +567128,192.58,81.5768 +567129,197.17,83.0061 +567130,195.13,82.4916 +567131,193.17,82.0066 +567132,191.26,81.548 +567133,195.83,83.0831 +567134,193.8,82.5331 +567135,191.84,82.013 +567136,189.93,81.5195 +567137,194.5,83.1597 +567138,192.47,82.5746 +567139,190.51,82.0195 +567140,188.61,81.4914 +567141,193.16,83.236 +567142,191.14,82.6159 +567143,189.18,82.0262 +567144,187.29,81.4637 +567145,191.82,83.3117 +567146,189.81,82.6571 +567147,187.86,82.033 +567148,185.97,81.4364 +567149,190.48,83.387 +567150,188.47,82.6981 +567151,186.53,82.04 +567152,184.65,81.4096 +567153,189.14,83.4617 +567154,187.14,82.7389 +567155,185.21,82.0471 +567156,183.33,81.3832 +567157,187.8,83.536 +567158,185.81,82.7796 +567159,183.88,82.0544 +567160,182.02,81.3573 +567161,186.45,83.6096 +567162,184.47,82.8201 +567163,182.56,82.0619 +567164,180.7,81.3319 +567165,185.11,83.6827 +567166,183.14,82.8603 +567167,181.23,82.0696 +567168,179.39,81.3071 +567169,183.76,83.7551 +567170,181.8,82.9004 +567171,179.91,82.0774 +567172,178.08,81.2828 +567173,182.41,83.8269 +567174,180.46,82.9403 +567175,178.59,82.0855 +567176,176.77,81.2592 +567177,181.06,83.898 +567178,179.13,82.98 +567179,177.26,82.0938 +567180,175.46,81.2361 +567181,179.71,83.9685 +567182,177.79,83.0194 +567183,175.94,82.1023 +567184,174.15,81.2137 +567185,178.35,84.0382 +567186,176.45,83.0586 +567187,174.62,82.111 +567188,172.84,81.192 +567189,177,84.1071 +567190,175.11,83.0976 +567191,173.3,82.12 +567192,171.54,81.171 +567193,175.64,84.1753 +567194,173.77,83.1363 +567195,171.98,82.1292 +567196,170.24,81.1507 +567197,174.29,84.2427 +567198,172.44,83.1748 +567199,170.65,82.1387 +567200,168.93,81.1312 +567201,172.93,84.3092 +567202,171.1,83.213 +567203,169.33,82.1484 +567204,167.63,81.1124 +567205,171.57,84.3749 +567206,169.76,83.2509 +567207,168.01,82.1585 +567208,166.33,81.0944 +567209,170.2,84.4398 +567210,168.42,83.2885 +567211,166.7,82.1687 +567212,165.03,81.0772 +567213,168.84,84.5038 +567214,167.07,83.3259 +567215,165.38,82.1793 +567216,163.74,81.0609 +567217,167.48,84.5668 +567218,165.73,83.3629 +567219,164.06,82.1902 +567220,162.44,81.0455 +567221,166.11,84.629 +567222,164.39,83.3997 +567223,162.74,82.2013 +567224,161.14,81.0309 +567225,164.74,84.6901 +567226,163.05,83.4361 +567227,161.42,82.2128 +567228,159.85,81.0172 +567229,163.37,84.7504 +567230,161.71,83.4722 +567231,160.1,82.2246 +567232,158.56,81.0044 +567233,162,84.8096 +567234,160.36,83.508 +567235,158.79,82.2367 +567236,157.27,80.9926 +567237,160.63,84.8678 +567238,159.02,83.5435 +567239,157.47,82.2491 +567240,155.98,80.9818 +567241,159.26,84.925 +567242,157.67,83.5786 +567243,156.15,82.2619 +567244,154.69,80.9719 +567245,157.89,84.9811 +567246,156.33,83.6134 +567247,154.84,82.275 +567248,153.4,80.9631 +567249,156.51,85.0362 +567250,154.98,83.6478 +567251,153.52,82.2884 +567252,152.11,80.9552 +567253,155.14,85.0902 +567254,153.64,83.6819 +567255,152.2,82.3022 +567256,150.82,80.9484 +567257,153.76,85.1432 +567258,152.29,83.7156 +567259,150.89,82.3164 +567260,149.54,80.9427 +567261,152.38,85.195 +567262,150.95,83.749 +567263,149.57,82.3309 +567264,148.26,80.938 +567265,151,85.2456 +567266,149.6,83.782 +567267,148.26,82.3457 +567268,146.97,80.9344 +567269,149.62,85.2952 +567270,148.25,83.8146 +567271,146.95,82.361 +567272,145.69,80.9319 +567273,148.24,85.3436 +567274,146.91,83.8468 +567275,145.63,82.3766 +567276,144.41,80.9306 +567277,146.86,85.3908 +567278,145.56,83.8787 +567279,144.32,82.3926 +567280,143.13,80.9303 +567281,145.47,85.4369 +567282,144.21,83.9101 +567283,143,82.409 +567284,141.85,80.9313 +567285,144.09,85.4817 +567286,142.86,83.9412 +567287,141.69,82.4258 +567288,140.57,80.9334 +567289,142.7,85.5254 +567290,141.51,83.9719 +567291,140.38,82.4429 +567292,139.29,80.9366 +567293,141.32,85.5679 +567294,140.16,84.0021 +567295,139.07,82.4605 +567296,138.01,80.9411 +567297,139.93,85.6091 +567298,138.81,84.032 +567299,137.75,82.4785 +567300,136.74,80.9467 +567301,138.54,85.6491 +567302,137.47,84.0614 +567303,136.44,82.4968 +567304,135.46,80.9536 +567305,137.16,85.6879 +567306,136.12,84.0905 +567307,135.13,82.5156 +567308,134.19,80.9616 +567309,135.77,85.7254 +567310,134.77,84.1191 +567311,133.82,82.5348 +567312,132.91,80.9709 +567313,134.38,85.7617 +567314,133.41,84.1473 +567315,132.5,82.5544 +567316,131.64,80.9815 +567317,132.99,85.7967 +567318,132.06,84.1751 +567319,131.19,82.5744 +567320,130.37,80.9933 +567321,131.59,85.8304 +567322,130.71,84.2025 +567323,129.88,82.5949 +567324,129.09,81.0063 +567325,130.2,85.8629 +567326,129.36,84.2295 +567327,128.57,82.6157 +567328,127.82,81.0206 +567329,128.81,85.8941 +567330,128.01,84.256 +567331,127.26,82.637 +567332,126.55,81.0362 +567333,127.42,85.9241 +567334,126.66,84.2821 +567335,125.95,82.6587 +567336,125.28,81.0531 +567337,126.02,85.9527 +567338,125.31,84.3077 +567339,124.64,82.6809 +567340,124.01,81.0712 +567341,124.63,85.9801 +567342,123.96,84.333 +567343,123.33,82.7034 +567344,122.74,81.0906 +567345,123.23,86.0062 +567346,122.6,84.3578 +567347,122.02,82.7264 +567348,121.47,81.1114 +567349,121.84,86.031 +567350,121.25,84.3822 +567351,120.71,82.7498 +567352,120.2,81.1334 +567353,120.44,86.0545 +567354,119.9,84.4061 +567355,119.39,82.7737 +567356,118.93,81.1567 +567357,119.05,86.0767 +567358,118.55,84.4296 +567359,118.08,82.7979 +567360,117.66,81.1813 +567361,117.65,86.0977 +567362,117.19,84.4527 +567363,116.77,82.8226 +567364,116.39,81.2071 +567365,116.26,86.1173 +567366,115.84,84.4754 +567367,115.46,82.8478 +567368,115.12,81.2343 +567369,114.86,86.1357 +567370,114.49,84.4976 +567371,114.15,82.8733 +567372,113.86,81.2628 +567373,113.46,86.1528 +567374,113.13,84.5194 +567375,112.84,82.8993 +567376,112.59,81.2926 +567377,112.07,86.1686 +567378,111.78,84.5407 +567379,111.53,82.9257 +567380,111.32,81.3237 +567381,110.67,86.1832 +567382,110.43,84.5617 +567383,110.22,82.9526 +567384,110.05,81.3561 +567385,109.27,86.1964 +567386,109.07,84.5822 +567387,108.91,82.9798 +567388,108.79,81.3897 +567389,107.87,86.2085 +567390,107.72,84.6023 +567391,107.6,83.0075 +567392,107.52,81.4247 +567393,106.48,86.2192 +567394,106.37,84.6219 +567395,106.29,83.0356 +567396,106.25,81.4609 +567397,105.08,86.2288 +567398,105.01,84.6412 +567399,104.98,83.0642 +567400,104.98,81.4984 +567401,103.68,86.237 +567402,103.66,84.66 +567403,103.67,83.0931 +567404,103.72,81.5372 +567405,102.28,86.2441 +567406,102.31,84.6784 +567407,102.36,83.1225 +567408,102.45,81.5772 +567409,100.89,86.2499 +567410,100.95,84.6964 +567411,101.05,83.1523 +567412,101.18,81.6185 +567413,99.491,86.2545 +567414,99.6,84.7139 +567415,99.741,83.1825 +567416,99.912,81.661 +567417,98.094,86.2579 +567418,98.247,84.7311 +567419,98.431,83.2131 +567420,98.644,81.7048 +567421,96.697,86.2601 +567422,96.893,84.7479 +567423,97.12,83.2441 +567424,97.376,81.7498 +567425,95.3,86.2611 +567426,95.54,84.7642 +567427,95.809,83.2755 +567428,96.107,81.7961 +567429,93.904,86.261 +567430,94.187,84.7802 +567431,94.498,83.3073 +567432,94.839,81.8435 +567433,92.508,86.2597 +567434,92.833,84.7957 +567435,93.187,83.3395 +567436,93.569,81.8922 +567437,91.113,86.2572 +567438,91.48,84.8109 +567439,91.876,83.3721 +567440,92.3,81.942 +567441,89.717,86.2537 +567442,90.127,84.8257 +567443,90.565,83.4051 +567444,91.03,81.993 +567445,88.322,86.2489 +567446,88.774,84.8401 +567447,89.253,83.4384 +567448,89.76,82.0452 +567449,86.928,86.2431 +567450,87.421,84.8541 +567451,87.942,83.4721 +567452,88.489,82.0985 +567453,85.534,86.2362 +567454,86.068,84.8678 +567455,86.63,83.5062 +567456,87.218,82.153 +567457,84.14,86.2283 +567458,84.716,84.8811 +567459,85.318,83.5407 +567460,85.947,82.2086 +567461,82.747,86.2192 +567462,83.363,84.894 +567463,84.005,83.5755 +567464,84.675,82.2652 +567465,81.355,86.2091 +567466,82.011,84.9066 +567467,82.693,83.6107 +567468,83.402,82.323 +567469,79.963,86.198 +567470,80.658,84.9188 +567471,81.38,83.6462 +567472,82.129,82.3818 +567473,78.572,86.1859 +567474,79.306,84.9307 +567475,80.067,83.6821 +567476,80.855,82.4417 +567477,77.181,86.1728 +567478,77.954,84.9422 +567479,78.754,83.7183 +567480,79.58,82.5026 +567481,75.791,86.1588 +567482,76.603,84.9534 +567483,77.441,83.7548 +567484,78.305,82.5645 +567485,74.402,86.1437 +567486,75.251,84.9643 +567487,76.127,83.7917 +567488,77.029,82.6275 +567489,73.013,86.1278 +567490,73.9,84.9749 +567491,74.813,83.8288 +567492,75.753,82.6914 +567493,71.625,86.1109 +567494,72.549,84.9851 +567495,73.499,83.8663 +567496,74.475,82.7562 +567497,70.238,86.0932 +567498,71.198,84.9951 +567499,72.184,83.9041 +567500,73.197,82.822 +567501,68.852,86.0746 +567502,69.847,85.0047 +567503,70.869,83.9422 +567504,71.918,82.8887 +567505,67.466,86.0551 +567506,68.497,85.0141 +567507,69.554,83.9805 +567508,70.638,82.9563 +567509,66.082,86.0348 +567510,67.147,85.0231 +567511,68.239,84.0192 +567512,69.358,83.0248 +567513,64.698,86.0137 +567514,65.797,85.0319 +567515,66.923,84.0581 +567516,68.076,83.0941 +567517,63.315,85.9918 +567518,64.447,85.0404 +567519,65.607,84.0973 +567520,66.793,83.1642 +567521,61.933,85.9692 +567522,63.098,85.0487 +567523,64.29,84.1367 +567524,65.51,83.2351 +567525,60.553,85.9458 +567526,61.749,85.0567 +567527,62.973,84.1764 +567528,64.226,83.3068 +567529,59.173,85.9217 +567530,60.4,85.0645 +567531,61.656,84.2164 +567532,62.94,83.3793 +567533,57.794,85.8969 +567534,59.052,85.072 +567535,60.338,84.2565 +567536,61.654,83.4524 +567537,56.416,85.8715 +567538,57.704,85.0793 +567539,59.02,84.2969 +567540,60.366,83.5263 +567541,55.039,85.8454 +567542,56.356,85.0863 +567543,57.702,84.3375 +567544,59.078,83.6008 +567545,53.663,85.8187 +567546,55.008,85.0932 +567547,56.383,84.3783 +567548,57.788,83.676 +567549,52.288,85.7914 +567550,53.661,85.0999 +567551,55.064,84.4194 +567552,56.497,83.7518 +567553,50.915,85.7636 +567554,52.314,85.1063 +567555,53.745,84.4606 +567556,55.206,83.8282 +567557,49.542,85.7352 +567558,50.968,85.1126 +567559,52.425,84.5019 +567560,53.913,83.9051 +567561,48.171,85.7063 +567562,49.622,85.1187 +567563,51.104,84.5435 +567564,52.619,83.9826 +567565,46.8,85.677 +567566,48.276,85.1246 +567567,49.783,84.5852 +567568,51.323,84.0606 +567569,45.431,85.6471 +567570,46.93,85.1304 +567571,48.462,84.627 +567572,50.027,84.1391 +567573,44.063,85.6169 +567574,45.585,85.136 +567575,47.14,84.669 +567576,48.729,84.218 +567577,42.697,85.5862 +567578,44.241,85.1415 +567579,45.818,84.7112 +567580,47.43,84.2973 +567581,41.331,85.5552 +567582,42.896,85.1468 +567583,44.495,84.7534 +567584,46.129,84.377 +567585,39.967,85.5238 +567586,41.552,85.152 +567587,43.172,84.7958 +567588,44.828,84.4571 +567589,38.604,85.4921 +567590,40.209,85.1571 +567591,41.849,84.8383 +567592,43.525,84.5375 +567593,37.242,85.4601 +567594,38.866,85.1622 +567595,40.525,84.8808 +567596,42.221,84.6182 +567597,35.882,85.4279 +567598,37.523,85.1671 +567599,39.2,84.9235 +567600,40.915,84.6992 +567601,34.523,85.3954 +567602,36.181,85.1719 +567603,37.875,84.9662 +567604,39.609,84.7804 +567605,33.165,85.3627 +567606,34.839,85.1766 +567607,36.55,85.009 +567608,38.3,84.8618 +567609,31.808,85.3298 +567610,33.497,85.1813 +567611,35.224,85.0518 +567612,36.991,84.9434 +567613,30.453,85.2968 +567614,32.156,85.186 +567615,33.898,85.0947 +567616,35.68,85.0251 +567617,29.099,85.2636 +567618,30.815,85.1906 +567619,32.571,85.1376 +567620,34.367,85.107 +567621,27.746,85.2304 +567622,29.475,85.1951 +567623,31.243,85.1805 +567624,33.054,85.1889 +567625,26.395,85.1971 +567626,28.135,85.1996 +567627,29.915,85.2234 +567628,31.739,85.2709 +567629,25.045,85.1638 +567630,26.796,85.2041 +567631,28.587,85.2664 +567632,30.422,85.3529 +567633,23.696,85.1304 +567634,25.457,85.2086 +567635,27.258,85.3093 +567636,29.104,85.4349 +567637,22.349,85.0971 +567638,24.118,85.2132 +567639,25.929,85.3522 +567640,27.784,85.5169 +567641,21.003,85.0639 +567642,22.78,85.2177 +567643,24.599,85.3951 +567644,26.464,85.5987 +567645,19.659,85.0307 +567646,21.442,85.2222 +567647,23.268,85.4379 +567648,25.141,85.6805 +567649,18.316,84.9976 +567650,20.105,85.2268 +567651,21.937,85.4807 +567652,23.817,85.7621 +567653,16.974,84.9647 +567654,18.768,85.2314 +567655,20.606,85.5235 +567656,22.492,85.8436 +567657,15.633,84.9319 +567658,17.431,85.2361 +567659,19.274,85.5661 +567660,21.165,85.9249 +567661,14.294,84.8994 +567662,16.095,85.2408 +567663,17.941,85.6087 +567664,19.837,86.0059 +567665,12.957,84.867 +567666,14.76,85.2456 +567667,16.608,85.6512 +567668,18.507,86.0867 +567669,11.62,84.835 +567670,13.425,85.2505 +567671,15.275,85.6936 +567672,17.176,86.1671 +567673,10.286,84.8032 +567674,12.09,85.2555 +567675,13.941,85.7359 +567676,15.844,86.2473 +567677,8.952,84.7717 +567678,10.756,85.2606 +567679,12.606,85.778 +567680,14.509,86.3271 +567681,7.6198,84.7405 +567682,9.4217,85.2658 +567683,11.271,85.82 +567684,13.174,86.4065 +567685,6.289,84.7098 +567686,8.0883,85.2711 +567687,9.9356,85.8619 +567688,11.837,86.4855 +567689,4.9596,84.6794 +567690,6.7553,85.2766 +567691,8.5995,85.9037 +567692,10.498,86.564 +567693,3.6315,84.6494 +567694,5.4228,85.2821 +567695,7.2629,85.9452 +567696,9.1579,86.6421 +567697,2.3048,84.6199 +567698,4.0906,85.2879 +567699,5.9257,85.9866 +567700,7.8163,86.7197 +567701,0.97939,84.5909 +567702,2.7589,85.2938 +567703,4.588,86.0279 +567704,6.4733,86.7967 +567705,359.66,84.5624 +567706,1.4276,85.2998 +567707,3.2499,86.0689 +567708,5.1288,86.8731 +567709,358.33,84.5344 +567710,0.096794,85.3061 +567711,1.9112,86.1097 +567712,3.7828,86.949 +567713,357.01,84.507 +567714,358.77,85.3125 +567715,0.57202,86.1503 +567716,2.4354,87.0243 +567717,355.69,84.4801 +567718,357.44,85.3191 +567719,359.23,86.1907 +567720,1.0865,87.0989 +567721,354.37,84.4539 +567722,356.11,85.3259 +567723,357.89,86.2309 +567724,359.74,87.1728 +567725,353.05,84.4283 +567726,354.78,85.333 +567727,356.55,86.2709 +567728,358.38,87.246 +567729,351.74,84.4034 +567730,353.45,85.3402 +567731,355.21,86.3106 +567732,357.03,87.3185 +567733,350.42,84.3792 +567734,352.12,85.3477 +567735,353.87,86.35 +567736,355.68,87.3902 +567737,349.11,84.3557 +567738,350.79,85.3554 +567739,352.53,86.3892 +567740,354.32,87.4611 +567741,347.8,84.3329 +567742,349.46,85.3634 +567743,351.18,86.4281 +567744,352.96,87.5312 +567745,346.49,84.3109 +567746,348.14,85.3716 +567747,349.84,86.4667 +567748,351.6,87.6005 +567749,345.18,84.2897 +567750,346.81,85.3801 +567751,348.5,86.5051 +567752,350.24,87.6689 +567753,343.87,84.2693 +567754,345.48,85.3888 +567755,347.15,86.5431 +567756,348.88,87.7365 +567757,342.56,84.2497 +567758,344.16,85.3978 +567759,345.81,86.5809 +567760,347.52,87.8031 +567761,341.25,84.231 +567762,342.83,85.4071 +567763,344.46,86.6183 +567764,346.16,87.8688 +567765,339.95,84.2132 +567766,341.51,85.4167 +567767,343.12,86.6554 +567768,344.79,87.9335 +567769,338.64,84.1962 +567770,340.18,85.4266 +567771,341.77,86.6922 +567772,343.42,87.9973 +567773,337.34,84.1802 +567774,338.86,85.4368 +567775,340.43,86.7287 +567776,342.06,88.06 +567777,336.04,84.1652 +567778,337.53,85.4474 +567779,339.08,86.7648 +567780,340.69,88.1217 +567781,334.74,84.1511 +567782,336.21,85.4582 +567783,337.73,86.8005 +567784,339.32,88.1824 +567785,333.44,84.1379 +567786,334.89,85.4694 +567787,336.38,86.8359 +567788,337.94,88.242 +567789,332.14,84.1258 +567790,333.56,85.4809 +567791,335.04,86.871 +567792,336.57,88.3006 +567793,330.84,84.1148 +567794,332.24,85.4927 +567795,333.69,86.9057 +567796,335.2,88.358 +567797,329.55,84.1047 +567798,330.92,85.5049 +567799,332.34,86.94 +567800,333.82,88.4143 +567801,328.25,84.0958 +567802,329.59,85.5174 +567803,330.99,86.9739 +567804,332.44,88.4694 +567805,326.96,84.0879 +567806,328.27,85.5303 +567807,329.64,87.0074 +567808,331.07,88.5234 +567809,325.66,84.0811 +567810,326.95,85.5436 +567811,328.29,87.0406 +567812,329.69,88.5763 +567813,324.37,84.0754 +567814,325.63,85.5572 +567815,326.94,87.0733 +567816,328.31,88.6279 +567817,323.08,84.0708 +567818,324.31,85.5712 +567819,325.59,87.1057 +567820,326.93,88.6783 +567821,321.79,84.0674 +567822,322.99,85.5856 +567823,324.24,87.1376 +567824,325.55,88.7276 +567825,320.5,84.0652 +567826,321.67,85.6003 +567827,322.89,87.1691 +567828,324.16,88.7755 +567829,319.21,84.0641 +567830,320.35,85.6155 +567831,321.53,87.2002 +567832,322.78,88.8223 +567833,317.92,84.0642 +567834,319.03,85.631 +567835,320.18,87.2309 +567836,321.39,88.8677 +567837,316.63,84.0656 +567838,317.71,85.647 +567839,318.83,87.2612 +567840,320.01,88.9119 +567841,315.35,84.0681 +567842,316.39,85.6633 +567843,317.48,87.291 +567844,318.62,88.9548 +567845,314.06,84.0719 +567846,315.07,85.6801 +567847,316.12,87.3204 +567848,317.23,88.9964 +567849,312.77,84.0769 +567850,313.75,85.6972 +567851,314.77,87.3493 +567852,315.85,89.03673 +567853,311.49,84.0831 +567854,312.43,85.7148 +567855,313.42,87.3778 +567856,314.46,89.07572 +567857,310.21,84.0906 +567858,311.11,85.7328 +567859,312.06,87.4059 +567860,313.07,89.11339 +567861,308.92,84.0994 +567862,309.79,85.7512 +567863,310.71,87.4335 +567864,311.68,89.14972 +567865,307.64,84.1094 +567866,308.47,85.77 +567867,309.35,87.4607 +567868,310.29,89.18472 +567869,306.36,84.1208 +567870,307.16,85.7892 +567871,308,87.4874 +567872,308.89,89.21837 +567873,305.08,84.1334 +567874,305.84,85.8089 +567875,306.64,87.5136 +567876,307.5,89.25067 +567877,303.79,84.1473 +567878,304.52,85.829 +567879,305.29,87.5394 +567880,306.11,89.28162 +567881,302.51,84.1626 +567882,303.2,85.8495 +567883,303.93,87.5648 +567884,304.71,89.31121 +567885,301.23,84.1791 +567886,301.88,85.8704 +567887,302.58,87.5897 +567888,303.32,89.33943 +567889,299.95,84.197 +567890,300.57,85.8918 +567891,301.22,87.6141 +567892,301.92,89.36629 +567893,298.67,84.2162 +567894,299.25,85.9136 +567895,299.87,87.6381 +567896,300.53,89.39178 +567897,297.39,84.2367 +567898,297.93,85.9359 +567899,298.51,87.6615 +567900,299.13,89.4159 +567901,296.12,84.2585 +567902,296.61,85.9586 +567903,297.15,87.6846 +567904,297.74,89.43865 +567905,294.84,84.2817 +567906,295.3,85.9817 +567907,295.8,87.7071 +567908,296.34,89.46003 +567909,293.56,84.3062 +567910,293.98,86.0052 +567911,294.44,87.7292 +567912,294.94,89.48004 +567913,292.28,84.332 +567914,292.66,86.0292 +567915,293.08,87.7509 +567916,293.54,89.49868 +567917,291,84.3592 +567918,291.35,86.0537 +567919,291.73,87.7721 +567920,292.15,89.51596 +567921,289.73,84.3877 +567922,290.03,86.0785 +567923,290.37,87.7928 +567924,290.75,89.53187 +567925,288.45,84.4175 +567926,288.71,86.1038 +567927,289.01,87.813 +567928,289.35,89.54642 +567929,287.17,84.4486 +567930,287.39,86.1295 +567931,287.65,87.8328 +567932,287.95,89.55962 +567933,285.89,84.4811 +567934,286.08,86.1557 +567935,286.3,87.8521 +567936,286.55,89.57147 +567937,284.62,84.5149 +567938,284.76,86.1823 +567939,284.94,87.871 +567940,285.15,89.58197 +567941,283.34,84.55 +567942,283.44,86.2093 +567943,283.58,87.8894 +567944,283.75,89.59114 +567945,282.06,84.5864 +567946,282.13,86.2367 +567947,282.22,87.9073 +567948,282.36,89.59897 +567949,280.79,84.6242 +567950,280.81,86.2646 +567951,280.87,87.9248 +567952,280.96,89.60548 +567953,279.51,84.6632 +567954,279.49,86.2929 +567955,279.51,87.9419 +567956,279.56,89.61068 +567957,278.23,84.7035 +567958,278.18,86.3216 +567959,278.15,87.9585 +567960,278.16,89.61457 +567961,276.95,84.7451 +567962,276.86,86.3507 +567963,276.79,87.9746 +567964,276.76,89.61717 +567965,275.68,84.788 +567966,275.54,86.3802 +567967,275.43,87.9904 +567968,275.36,89.61848 +567969,274.4,84.8322 +567970,274.22,86.4102 +567971,274.08,88.0056 +567972,273.96,89.61851 +567973,273.12,84.8776 +567974,272.91,86.4405 +567975,272.72,88.0205 +567976,272.56,89.61728 +567977,271.84,84.9243 +567978,271.59,86.4713 +567979,271.36,88.0349 +567980,271.16,89.61481 +567981,270.57,84.9722 +567982,270.27,86.5024 +567983,270,88.0489 +567984,269.77,89.61109 +567985,269.29,85.0213 +567986,268.95,86.534 +567987,268.65,88.0624 +567988,268.37,89.60615 +567989,268.01,85.0717 +567990,267.64,86.5659 +567991,267.29,88.0755 +567992,266.97,89.6 +567993,266.73,85.1232 +567994,266.32,86.5983 +567995,265.93,88.0883 +567996,265.57,89.59265 +567997,265.45,85.1759 +567998,265,86.631 +567999,264.57,88.1006 +568000,264.17,89.58413 +568001,264.17,85.2298 +568002,263.68,86.664 +568003,263.22,88.1125 +568004,262.78,89.57444 +568005,262.89,85.2849 +568006,262.36,86.6975 +568007,261.86,88.124 +568008,261.38,89.5636 +568009,261.61,85.3411 +568010,261.04,86.7313 +568011,260.5,88.1351 +568012,259.99,89.55164 +568013,260.33,85.3985 +568014,259.72,86.7655 +568015,259.15,88.1458 +568016,258.59,89.53856 +568017,259.04,85.4569 +568018,258.4,86.8 +568019,257.79,88.1562 +568020,257.2,89.52438 +568021,257.76,85.5164 +568022,257.09,86.8349 +568023,256.43,88.1662 +568024,255.8,89.50913 +568025,256.48,85.577 +568026,255.77,86.8701 +568027,255.07,88.1757 +568028,254.41,89.49283 +568029,255.19,85.6387 +568030,254.45,86.9057 +568031,253.72,88.185 +568032,253.01,89.47548 +568033,253.91,85.7014 +568034,253.13,86.9415 +568035,252.36,88.1939 +568036,251.62,89.45712 +568037,252.62,85.7651 +568038,251.8,86.9777 +568039,251.01,88.2024 +568040,250.23,89.43776 +568041,251.34,85.8298 +568042,250.48,87.0143 +568043,249.65,88.2106 +568044,248.84,89.41743 +568045,250.05,85.8955 +568046,249.16,87.0511 +568047,248.29,88.2184 +568048,247.45,89.39615 +568049,248.77,85.9622 +568050,247.84,87.0882 +568051,246.94,88.2259 +568052,246.06,89.37393 +568053,247.48,86.0298 +568054,246.52,87.1256 +568055,245.58,88.2331 +568056,244.67,89.3508 +568057,246.19,86.0982 +568058,245.2,87.1633 +568059,244.23,88.24 +568060,243.28,89.32679 +568061,244.9,86.1676 +568062,243.88,87.2013 +568063,242.87,88.2466 +568064,241.89,89.30192 +568065,243.61,86.2378 +568066,242.55,87.2395 +568067,241.52,88.2528 +568068,240.51,89.27621 +568069,242.32,86.3089 +568070,241.23,87.278 +568071,240.17,88.2588 +568072,239.12,89.24968 +568073,241.03,86.3808 +568074,239.91,87.3168 +568075,238.81,88.2645 +568076,237.73,89.22237 +568077,239.73,86.4535 +568078,238.58,87.3558 +568079,237.46,88.2699 +568080,236.35,89.19429 +568081,238.44,86.5269 +568082,237.26,87.395 +568083,236.1,88.2751 +568084,234.97,89.16547 +568085,237.14,86.601 +568086,235.94,87.4345 +568087,234.75,88.28 +568088,233.58,89.13594 +568089,235.85,86.6759 +568090,234.61,87.4742 +568091,233.4,88.2846 +568092,232.2,89.10572 +568093,234.55,86.7515 +568094,233.29,87.5141 +568095,232.04,88.289 +568096,230.82,89.07484 +568097,233.25,86.8277 +568098,231.96,87.5542 +568099,230.69,88.2932 +568100,229.44,89.04332 +568101,231.95,86.9045 +568102,230.64,87.5944 +568103,229.34,88.2972 +568104,228.06,89.0112 +568105,230.65,86.982 +568106,229.31,87.6349 +568107,227.99,88.3009 +568108,226.69,88.9785 +568109,229.35,87.06 +568110,227.98,87.6755 +568111,226.64,88.3045 +568112,225.31,88.9452 +568113,228.05,87.1386 +568114,226.66,87.7163 +568115,225.29,88.3078 +568116,223.94,88.9115 +568117,226.75,87.2176 +568118,225.33,87.7573 +568119,223.94,88.311 +568120,222.56,88.8772 +568121,225.44,87.2972 +568122,224,87.7983 +568123,222.58,88.3139 +568124,221.19,88.8424 +568125,224.14,87.3772 +568126,222.67,87.8396 +568127,221.23,88.3168 +568128,219.82,88.8072 +568129,222.83,87.4576 +568130,221.35,87.8809 +568131,219.89,88.3194 +568132,218.45,88.7716 +568133,221.52,87.5384 +568134,220.02,87.9223 +568135,218.54,88.3219 +568136,217.08,88.7356 +568137,220.21,87.6196 +568138,218.69,87.9639 +568139,217.19,88.3243 +568140,215.71,88.6993 +568141,218.9,87.7011 +568142,217.36,88.0055 +568143,215.84,88.3266 +568144,214.34,88.6626 +568145,217.59,87.7829 +568146,216.03,88.0472 +568147,214.49,88.3287 +568148,212.98,88.6257 +568149,216.28,87.865 +568150,214.7,88.089 +568151,213.14,88.3307 +568152,211.61,88.5885 +568153,214.96,87.9474 +568154,213.37,88.1309 +568155,211.79,88.3326 +568156,210.25,88.551 +568157,213.65,88.0299 +568158,212.03,88.1728 +568159,210.45,88.3345 +568160,208.88,88.5133 +568161,212.33,88.1126 +568162,210.7,88.2147 +568163,209.1,88.3363 +568164,207.52,88.4755 +568165,211.01,88.1954 +568166,209.37,88.2567 +568167,207.75,88.338 +568168,206.16,88.4375 +568169,209.69,88.2784 +568170,208.04,88.2987 +568171,206.41,88.3396 +568172,204.8,88.3994 +568173,208.37,88.3614 +568174,206.7,88.3406 +568175,205.06,88.3412 +568176,203.45,88.3612 +568177,207.05,88.4445 +568178,205.37,88.3826 +568179,203.72,88.3427 +568180,202.09,88.3229 +568181,205.73,88.5275 +568182,204.04,88.4246 +568183,202.37,88.3443 +568184,200.74,88.2847 +568185,204.4,88.6106 +568186,202.7,88.4665 +568187,201.03,88.3458 +568188,199.38,88.2464 +568189,203.08,88.6936 +568190,201.37,88.5085 +568191,199.68,88.3473 +568192,198.03,88.2081 +568193,201.75,88.7765 +568194,200.03,88.5503 +568195,198.34,88.3488 +568196,196.68,88.17 +568197,200.42,88.8593 +568198,198.69,88.5921 +568199,197,88.3503 +568200,195.33,88.1319 +568201,199.09,88.942 +568202,197.36,88.6339 +568203,195.65,88.3519 +568204,193.98,88.0939 +568205,197.76,89.02443 +568206,196.02,88.6755 +568207,194.31,88.3535 +568208,192.63,88.0561 +568209,196.43,89.10667 +568210,194.68,88.7171 +568211,192.97,88.3551 +568212,191.29,88.0185 +568213,195.09,89.18866 +568214,193.34,88.7585 +568215,191.63,88.3568 +568216,189.94,87.9811 +568217,193.76,89.27037 +568218,192,88.7999 +568219,190.29,88.3586 +568220,188.6,87.9439 +568221,192.42,89.35176 +568222,190.67,88.8411 +568223,188.94,88.3604 +568224,187.26,87.907 +568225,191.08,89.43281 +568226,189.33,88.8822 +568227,187.6,88.3623 +568228,185.92,87.8704 +568229,189.74,89.51347 +568230,187.99,88.9232 +568231,186.26,88.3643 +568232,184.58,87.8341 +568233,188.4,89.59372 +568234,186.64,88.964 +568235,184.92,88.3664 +568236,183.24,87.7982 +568237,187.06,89.67353 +568238,185.3,89.00465 +568239,183.59,88.3687 +568240,181.9,87.7627 +568241,185.72,89.75286 +568242,183.96,89.04512 +568243,182.25,88.371 +568244,180.57,87.7276 +568245,184.37,89.83168 +568246,182.62,89.08541 +568247,180.91,88.3735 +568248,179.23,87.6929 +568249,183.02,89.909967 +568250,181.28,89.1255 +568251,179.57,88.3762 +568252,177.9,87.6587 +568253,181.68,89.987681 +568254,179.93,89.16539 +568255,178.23,88.3789 +568256,176.57,87.6251 +568257,180.33,90.064795 +568258,178.59,89.20506 +568259,176.9,88.3819 +568260,175.24,87.5919 +568261,178.98,90.14128 +568262,177.25,89.24451 +568263,175.56,88.385 +568264,173.91,87.5593 +568265,177.62,90.2171 +568266,175.9,89.28372 +568267,174.22,88.3883 +568268,172.58,87.5273 +568269,176.27,90.29223 +568270,174.56,89.32269 +568271,172.89,88.3918 +568272,171.26,87.4959 +568273,174.92,90.36664 +568274,173.21,89.36141 +568275,171.55,88.3955 +568276,169.93,87.4651 +568277,173.56,90.4403 +568278,171.86,89.39987 +568279,170.22,88.3994 +568280,168.61,87.4351 +568281,172.2,90.51318 +568282,170.52,89.43805 +568283,168.88,88.4036 +568284,167.28,87.4057 +568285,170.84,90.58525 +568286,169.17,89.47595 +568287,167.55,88.4079 +568288,165.96,87.377 +568289,169.48,90.65649 +568290,167.82,89.51357 +568291,166.21,88.4125 +568292,164.64,87.349 +568293,168.12,90.72687 +568294,166.48,89.55088 +568295,164.88,88.4173 +568296,163.32,87.3219 +568297,166.76,90.79636 +568298,165.13,89.58788 +568299,163.54,88.4224 +568300,162,87.2955 +568301,165.4,90.86493 +568302,163.78,89.62457 +568303,162.21,88.4278 +568304,160.69,87.2699 +568305,164.03,90.93255 +568306,162.43,89.66094 +568307,160.88,88.4334 +568308,159.37,87.2452 +568309,162.66,90.99921 +568310,161.08,89.69696 +568311,159.55,88.4393 +568312,158.06,87.2213 +568313,161.3,91.0649 +568314,159.73,89.73265 +568315,158.21,88.4454 +568316,156.74,87.1984 +568317,159.93,91.1295 +568318,158.38,89.76799 +568319,156.88,88.4519 +568320,155.43,87.1763 +568321,158.56,91.1931 +568322,157.03,89.80297 +568323,155.55,88.4587 +568324,154.12,87.1552 +568325,157.18,91.2557 +568326,155.68,89.83758 +568327,154.22,88.4657 +568328,152.81,87.135 +568329,155.81,91.3171 +568330,154.33,89.87182 +568331,152.89,88.4731 +568332,151.5,87.1158 +568333,154.44,91.3774 +568334,152.97,89.905682 +568335,151.56,88.4808 +568336,150.19,87.0976 +568337,153.06,91.4367 +568338,151.62,89.939155 +568339,150.23,88.4889 +568340,148.88,87.0804 +568341,151.69,91.4947 +568342,150.27,89.972232 +568343,148.9,88.4972 +568344,147.58,87.0643 +568345,150.31,91.5516 +568346,148.91,90.0049083 +568347,147.57,88.5059 +568348,146.27,87.0492 +568349,148.93,91.6072 +568350,147.56,90.037176 +568351,146.24,88.515 +568352,144.97,87.0352 +568353,147.55,91.6617 +568354,146.21,90.06903 +568355,144.91,88.5244 +568356,143.66,87.0223 +568357,146.17,91.7149 +568358,144.85,90.10046 +568359,143.58,88.5342 +568360,142.36,87.0105 +568361,144.79,91.7669 +568362,143.5,90.13147 +568363,142.26,88.5443 +568364,141.06,86.9998 +568365,143.41,91.8176 +568366,142.14,90.16204 +568367,140.93,88.5548 +568368,139.76,86.9903 +568369,142.02,91.867 +568370,140.79,90.19218 +568371,139.6,88.5657 +568372,138.46,86.9819 +568373,140.64,91.9152 +568374,139.43,90.22187 +568375,138.27,88.5769 +568376,137.16,86.9747 +568377,139.25,91.962 +568378,138.07,90.25111 +568379,136.95,88.5886 +568380,135.86,86.9688 +568381,137.87,92.0074 +568382,136.72,90.2799 +568383,135.62,88.6006 +568384,134.56,86.964 +568385,136.48,92.0516 +568386,135.36,90.30823 +568387,134.29,88.613 +568388,133.27,86.9604 +568389,135.09,92.0943 +568390,134,90.3361 +568391,132.97,88.6259 +568392,131.97,86.9581 +568393,133.7,92.1357 +568394,132.65,90.3635 +568395,131.64,88.6391 +568396,130.67,86.957 +568397,132.31,92.1757 +568398,131.29,90.39043 +568399,130.31,88.6527 +568400,129.38,86.9572 +568401,130.92,92.2144 +568402,129.93,90.41688 +568403,128.99,88.6668 +568404,128.09,86.9586 +568405,129.53,92.2516 +568406,128.57,90.44286 +568407,127.66,88.6813 +568408,126.79,86.9613 +568409,128.14,92.2874 +568410,127.21,90.46835 +568411,126.34,88.6961 +568412,125.5,86.9654 +568413,126.75,92.3218 +568414,125.85,90.49336 +568415,125.01,88.7114 +568416,124.21,86.9707 +568417,125.35,92.3547 +568418,124.49,90.51788 +568419,123.68,88.7272 +568420,122.92,86.9773 +568421,123.96,92.3862 +568422,123.14,90.54192 +568423,122.36,88.7433 +568424,121.62,86.9853 +568425,122.56,92.4163 +568426,121.78,90.56545 +568427,121.03,88.7599 +568428,120.33,86.9946 +568429,121.17,92.4449 +568430,120.42,90.5885 +568431,119.71,88.7769 +568432,119.04,87.0052 +568433,119.77,92.4721 +568434,119.06,90.61104 +568435,118.38,88.7943 +568436,117.75,87.0171 +568437,118.38,92.4978 +568438,117.7,90.63309 +568439,117.06,88.8122 +568440,116.46,87.0304 +568441,116.98,92.522 +568442,116.34,90.65464 +568443,115.74,88.8305 +568444,115.17,87.045 +568445,115.58,92.5448 +568446,114.97,90.67568 +568447,114.41,88.8492 +568448,113.89,87.061 +568449,114.18,92.5662 +568450,113.61,90.69623 +568451,113.09,88.8684 +568452,112.6,87.0784 +568453,112.79,92.586 +568454,112.25,90.71627 +568455,111.76,88.888 +568456,111.31,87.0971 +568457,111.39,92.6044 +568458,110.89,90.73581 +568459,110.44,88.9081 +568460,110.02,87.1172 +568461,109.99,92.6213 +568462,109.53,90.75484 +568463,109.11,88.9286 +568464,108.73,87.1386 +568465,108.59,92.6368 +568466,108.17,90.77338 +568467,107.79,88.9495 +568468,107.45,87.1614 +568469,107.19,92.6508 +568470,106.81,90.79141 +568471,106.47,88.9709 +568472,106.16,87.1856 +568473,105.79,92.6633 +568474,105.45,90.80893 +568475,105.14,88.9927 +568476,104.87,87.2111 +568477,104.39,92.6744 +568478,104.08,90.82596 +568479,103.82,89.01491 +568480,103.59,87.238 +568481,102.99,92.6841 +568482,102.72,90.84248 +568483,102.49,89.03758 +568484,102.3,87.2662 +568485,101.59,92.6923 +568486,101.36,90.85851 +568487,101.17,89.06069 +568488,101.01,87.2958 +568489,100.19,92.699 +568490,99.999,90.87404 +568491,99.847,89.08423 +568492,99.726,87.3268 +568493,98.786,92.7044 +568494,98.637,90.88907 +568495,98.523,89.1082 +568496,98.439,87.3591 +568497,97.385,92.7083 +568498,97.275,90.90361 +568499,97.198,89.1326 +568500,97.153,87.3928 +568501,95.984,92.7108 +568502,95.913,90.91766 +568503,95.874,89.15742 +568504,95.866,87.4277 +568505,94.583,92.7118 +568506,94.551,90.93121 +568507,94.55,89.18267 +568508,94.579,87.4641 +568509,93.182,92.7115 +568510,93.189,90.94429 +568511,93.226,89.20834 +568512,93.292,87.5017 +568513,91.782,92.7098 +568514,91.826,90.95688 +568515,91.902,89.23443 +568516,92.005,87.5407 +568517,90.381,92.7067 +568518,90.464,90.96899 +568519,90.577,89.26094 +568520,90.718,87.5809 +568521,88.98,92.7023 +568522,89.102,90.98062 +568523,89.253,89.28785 +568524,89.431,87.6225 +568525,87.58,92.6965 +568526,87.74,90.99178 +568527,87.928,89.31518 +568528,88.143,87.6654 +568529,86.18,92.6894 +568530,86.378,91.0025 +568531,86.604,89.34291 +568532,86.855,87.7095 +568533,84.779,92.6809 +568534,85.016,91.0127 +568535,85.279,89.37104 +568536,85.567,87.7549 +568537,83.38,92.6712 +568538,83.654,91.0225 +568539,83.954,89.39956 +568540,84.279,87.8016 +568541,81.98,92.6601 +568542,82.292,91.0318 +568543,82.629,89.42848 +568544,82.99,87.8495 +568545,80.581,92.6478 +568546,80.93,91.0406 +568547,81.304,89.45779 +568548,81.701,87.8986 +568549,79.182,92.6342 +568550,79.568,91.049 +568551,79.979,89.48747 +568552,80.411,87.949 +568553,77.783,92.6193 +568554,78.207,91.057 +568555,78.653,89.51754 +568556,79.121,88.0006 +568557,76.385,92.6033 +568558,76.845,91.0646 +568559,77.327,89.54797 +568560,77.831,88.0533 +568561,74.987,92.586 +568562,75.484,91.0717 +568563,76.002,89.57877 +568564,76.54,88.1072 +568565,73.59,92.5675 +568566,74.122,91.0783 +568567,74.676,89.60993 +568568,75.249,88.1623 +568569,72.193,92.5479 +568570,72.761,91.0846 +568571,73.349,89.64144 +568572,73.957,88.2185 +568573,70.797,92.5271 +568574,71.4,91.0905 +568575,72.023,89.67331 +568576,72.665,88.2759 +568577,69.401,92.5052 +568578,70.039,91.0959 +568579,70.696,89.70551 +568580,71.372,88.3343 +568581,68.006,92.4822 +568582,68.678,91.101 +568583,69.369,89.73805 +568584,70.078,88.3938 +568585,66.611,92.4581 +568586,67.317,91.1056 +568587,68.042,89.77091 +568588,68.784,88.4544 +568589,65.217,92.4329 +568590,65.957,91.1099 +568591,66.715,89.8041 +568592,67.489,88.5161 +568593,63.824,92.4067 +568594,64.597,91.1138 +568595,65.387,89.8376 +568596,66.194,88.5787 +568597,62.431,92.3794 +568598,63.237,91.1173 +568599,64.059,89.8714 +568600,64.898,88.6424 +568601,61.039,92.3512 +568602,61.877,91.1205 +568603,62.731,89.905508 +568604,63.601,88.707 +568605,59.648,92.322 +568606,60.517,91.1233 +568607,61.402,89.939904 +568608,62.303,88.7726 +568609,58.258,92.2918 +568610,59.158,91.1258 +568611,60.074,89.974583 +568612,61.005,88.8392 +568613,56.868,92.2608 +568614,57.798,91.1279 +568615,58.745,90.009536 +568616,59.706,88.9066 +568617,55.479,92.2288 +568618,56.439,91.1297 +568619,57.415,90.044756 +568620,58.406,88.9749 +568621,54.091,92.1959 +568622,55.081,91.1312 +568623,56.086,90.080234 +568624,57.105,89.04415 +568625,52.703,92.1623 +568626,53.722,91.1323 +568627,54.756,90.11596 +568628,55.803,89.11419 +568629,51.317,92.1277 +568630,52.364,91.1332 +568631,53.425,90.15193 +568632,54.501,89.18504 +568633,49.931,92.0925 +568634,51.006,91.1338 +568635,52.095,90.18813 +568636,53.197,89.25669 +568637,48.546,92.0564 +568638,49.648,91.134 +568639,50.764,90.22455 +568640,51.893,89.32909 +568641,47.163,92.0196 +568642,48.29,91.134 +568643,49.432,90.26119 +568644,50.587,89.40223 +568645,45.78,91.9821 +568646,46.933,91.1338 +568647,48.101,90.29803 +568648,49.281,89.47607 +568649,44.398,91.9439 +568650,45.576,91.1332 +568651,46.769,90.33507 +568652,47.974,89.5506 +568653,43.017,91.9051 +568654,44.22,91.1325 +568655,45.436,90.37229 +568656,46.666,89.62578 +568657,41.637,91.8656 +568658,42.863,91.1314 +568659,44.104,90.40969 +568660,45.356,89.70158 +568661,40.258,91.8256 +568662,41.507,91.1302 +568663,42.77,90.44725 +568664,44.046,89.77797 +568665,38.88,91.7849 +568666,40.152,91.1287 +568667,41.437,90.48497 +568668,42.735,89.85493 +568669,37.504,91.7438 +568670,38.796,91.127 +568671,40.103,90.52283 +568672,41.422,89.932427 +568673,36.128,91.7021 +568674,37.441,91.1251 +568675,38.769,90.56084 +568676,40.109,90.010426 +568677,34.753,91.66 +568678,36.087,91.1231 +568679,37.434,90.59896 +568680,38.794,90.0889 +568681,33.38,91.6174 +568682,34.732,91.1208 +568683,36.099,90.6372 +568684,37.479,90.16782 +568685,32.007,91.5744 +568686,33.378,91.1184 +568687,34.763,90.67555 +568688,36.162,90.24715 +568689,30.636,91.531 +568690,32.024,91.1158 +568691,33.427,90.71399 +568692,34.844,90.32686 +568693,29.266,91.4873 +568694,30.671,91.113 +568695,32.091,90.75251 +568696,33.525,90.40692 +568697,27.897,91.4433 +568698,29.318,91.1101 +568699,30.754,90.7911 +568700,32.205,90.4873 +568701,26.529,91.3989 +568702,27.965,91.1071 +568703,29.417,90.82976 +568704,30.883,90.56797 +568705,25.162,91.3543 +568706,26.613,91.104 +568707,28.08,90.86847 +568708,29.561,90.64889 +568709,23.796,91.3095 +568710,25.261,91.1008 +568711,26.742,90.90722 +568712,28.237,90.73003 +568713,22.432,91.2645 +568714,23.909,91.0974 +568715,25.403,90.946 +568716,26.912,90.81136 +568717,21.069,91.2193 +568718,22.558,91.094 +568719,24.064,90.9848 +568720,25.585,90.89285 +568721,19.707,91.1739 +568722,21.207,91.0905 +568723,22.725,91.0236 +568724,24.258,90.97445 +568725,18.346,91.1285 +568726,19.857,91.0869 +568727,21.385,91.0624 +568728,22.929,91.0561 +568729,16.986,91.083 +568730,18.507,91.0833 +568731,20.045,91.1012 +568732,21.599,91.1379 +568733,15.628,91.0374 +568734,17.157,91.0796 +568735,18.704,91.1399 +568736,20.268,91.2197 +568737,14.271,90.99185 +568738,15.808,91.0759 +568739,17.363,91.1787 +568740,18.935,91.3014 +568741,12.915,90.94631 +568742,14.459,91.0722 +568743,16.021,91.2173 +568744,17.602,91.3832 +568745,11.56,90.90082 +568746,13.11,91.0684 +568747,14.679,91.256 +568748,16.267,91.4648 +568749,10.207,90.85542 +568750,11.762,91.0647 +568751,13.337,91.2945 +568752,14.93,91.5463 +568753,8.8544,90.81013 +568754,10.414,91.0609 +568755,11.994,91.333 +568756,13.593,91.6277 +568757,7.5035,90.76498 +568758,9.0669,91.0572 +568759,10.65,91.3714 +568760,12.254,91.7089 +568761,6.1537,90.72001 +568762,7.7198,91.0535 +568763,9.3064,91.4096 +568764,10.914,91.7899 +568765,4.8052,90.67525 +568766,6.3732,91.0498 +568767,7.9621,91.4478 +568768,9.5722,91.8706 +568769,3.458,90.63073 +568770,5.0269,91.0462 +568771,6.6173,91.4858 +568772,8.2294,91.9511 +568773,2.1119,90.58648 +568774,3.6811,91.0427 +568775,5.272,91.5237 +568776,6.8853,92.0312 +568777,0.76714,90.54253 +568778,2.3356,91.0392 +568779,3.9263,91.5614 +568780,5.5399,92.111 +568781,359.42,90.4989 +568782,0.9905,91.0358 +568783,2.5801,91.599 +568784,4.1933,92.1904 +568785,358.08,90.45564 +568786,359.65,91.0325 +568787,1.2335,91.6364 +568788,2.8453,92.2694 +568789,356.74,90.41277 +568790,358.3,91.0293 +568791,359.89,91.6737 +568792,1.496,92.348 +568793,355.4,90.37031 +568794,356.96,91.0262 +568795,358.54,91.7107 +568796,0.14544,92.426 +568797,354.06,90.32831 +568798,355.61,91.0232 +568799,357.19,91.7476 +568800,358.79,92.5036 +568801,352.72,90.28678 +568802,354.27,91.0204 +568803,355.84,91.7842 +568804,357.44,92.5806 +568805,351.39,90.24576 +568806,352.93,91.0177 +568807,354.49,91.8206 +568808,356.09,92.657 +568809,350.05,90.20528 +568810,351.59,91.0152 +568811,353.14,91.8568 +568812,354.73,92.7328 +568813,348.72,90.16536 +568814,350.24,91.0128 +568815,351.79,91.8927 +568816,353.37,92.808 +568817,347.39,90.12603 +568818,348.9,91.0106 +568819,350.44,91.9284 +568820,352.02,92.8824 +568821,346.05,90.087328 +568822,347.56,91.0085 +568823,349.09,91.9638 +568824,350.66,92.9562 +568825,344.72,90.04927 +568826,346.22,91.0067 +568827,347.74,91.999 +568828,349.29,93.0293 +568829,343.4,90.011887 +568830,344.88,91.0051 +568831,346.39,92.0338 +568832,347.93,93.1015 +568833,342.07,89.975207 +568834,343.54,91.0036 +568835,345.04,92.0684 +568836,346.57,93.173 +568837,340.74,89.939255 +568838,342.2,91.0024 +568839,343.69,92.1027 +568840,345.2,93.2436 +568841,339.41,89.904058 +568842,340.86,91.0014 +568843,342.33,92.1366 +568844,343.84,93.3134 +568845,338.09,89.86964 +568846,339.52,91.0007 +568847,340.98,92.1702 +568848,342.47,93.3823 +568849,336.77,89.83603 +568850,338.18,91.0001 +568851,339.63,92.2035 +568852,341.1,93.4503 +568853,335.44,89.80325 +568854,336.84,90.99987 +568855,338.27,92.2365 +568856,339.73,93.5173 +568857,334.12,89.77133 +568858,335.5,90.99987 +568859,336.92,92.2691 +568860,338.36,93.5834 +568861,332.8,89.74028 +568862,334.17,91.0001 +568863,335.56,92.3013 +568864,336.99,93.6484 +568865,331.48,89.71014 +568866,332.83,91.0007 +568867,334.21,92.3332 +568868,335.62,93.7124 +568869,330.16,89.68093 +568870,331.49,91.0015 +568871,332.85,92.3647 +568872,334.25,93.7754 +568873,328.85,89.65266 +568874,330.16,91.0026 +568875,331.5,92.3958 +568876,332.87,93.8373 +568877,327.53,89.62537 +568878,328.82,91.0041 +568879,330.14,92.4266 +568880,331.49,93.8981 +568881,326.22,89.59907 +568882,327.48,91.0058 +568883,328.78,92.4569 +568884,330.12,93.9577 +568885,324.9,89.57378 +568886,326.15,91.0078 +568887,327.42,92.4868 +568888,328.74,94.0162 +568889,323.59,89.54953 +568890,324.81,91.0102 +568891,326.07,92.5163 +568892,327.36,94.0735 +568893,322.28,89.52634 +568894,323.48,91.0129 +568895,324.71,92.5454 +568896,325.98,94.1296 +568897,320.96,89.50422 +568898,322.14,91.0159 +568899,323.35,92.5741 +568900,324.6,94.1845 +568901,319.65,89.4832 +568902,320.81,91.0193 +568903,321.99,92.6023 +568904,323.22,94.2381 +568905,318.34,89.4633 +568906,319.47,91.023 +568907,320.63,92.6301 +568908,321.83,94.2905 +568909,317.03,89.44452 +568910,318.14,91.0271 +568911,319.27,92.6574 +568912,320.45,94.3416 +568913,315.73,89.4269 +568914,316.8,91.0315 +568915,317.91,92.6843 +568916,319.06,94.3914 +568917,314.42,89.41044 +568918,315.47,91.0363 +568919,316.55,92.7107 +568920,317.68,94.4398 +568921,313.11,89.39516 +568922,314.14,91.0415 +568923,315.19,92.7366 +568924,316.29,94.4869 +568925,311.81,89.38109 +568926,312.8,91.0471 +568927,313.83,92.7621 +568928,314.9,94.5326 +568929,310.5,89.36823 +568930,311.47,91.053 +568931,312.47,92.787 +568932,313.51,94.577 +568933,309.2,89.3566 +568934,310.14,91.0593 +568935,311.11,92.8115 +568936,312.12,94.62 +568937,307.89,89.34621 +568938,308.8,91.0661 +568939,309.75,92.8355 +568940,310.73,94.6615 +568941,306.59,89.33708 +568942,307.47,91.0732 +568943,308.39,92.8591 +568944,309.34,94.7016 +568945,305.29,89.32923 +568946,306.14,91.0807 +568947,307.02,92.8821 +568948,307.95,94.7403 +568949,303.99,89.32265 +568950,304.81,91.0886 +568951,305.66,92.9046 +568952,306.55,94.7775 +568953,302.68,89.31737 +568954,303.48,91.0969 +568955,304.3,92.9266 +568956,305.16,94.8133 +568957,301.38,89.31339 +568958,302.14,91.1057 +568959,302.94,92.9481 +568960,303.77,94.8476 +568961,300.08,89.31073 +568962,300.81,91.1148 +568963,301.57,92.969 +568964,302.37,94.8803 +568965,298.78,89.30939 +568966,299.48,91.1244 +568967,300.21,92.9895 +568968,300.98,94.9116 +568969,297.48,89.30939 +568970,298.15,91.1344 +568971,298.85,93.0094 +568972,299.58,94.9414 +568973,296.19,89.31073 +568974,296.82,91.1448 +568975,297.48,93.0288 +568976,298.18,94.9697 +568977,294.89,89.31342 +568978,295.49,91.1557 +568979,296.12,93.0477 +568980,296.79,94.9964 +568981,293.59,89.31746 +568982,294.16,91.1669 +568983,294.75,93.066 +568984,295.39,95.0216 +568985,292.29,89.32288 +568986,292.83,91.1786 +568987,293.39,93.0838 +568988,293.99,95.0453 +568989,291,89.32966 +568990,291.5,91.1908 +568991,292.03,93.1011 +568992,292.59,95.0674 +568993,289.7,89.33781 +568994,290.17,91.2033 +568995,290.66,93.1179 +568996,291.19,95.088 +568997,288.4,89.34734 +568998,288.83,91.2164 +568999,289.3,93.1341 +569000,289.79,95.1071 +569001,287.11,89.35826 +569002,287.5,91.2298 +569003,287.93,93.1497 +569004,288.39,95.1246 +569005,285.81,89.37056 +569006,286.17,91.2437 +569007,286.57,93.1649 +569008,286.99,95.1405 +569009,284.51,89.38425 +569010,284.84,91.258 +569011,285.2,93.1795 +569012,285.59,95.1549 +569013,283.22,89.39933 +569014,283.51,91.2728 +569015,283.84,93.1935 +569016,284.19,95.1677 +569017,281.92,89.41579 +569018,282.18,91.288 +569019,282.47,93.207 +569020,282.79,95.179 +569021,280.63,89.43365 +569022,280.85,91.3036 +569023,281.11,93.22 +569024,281.39,95.1887 +569025,279.33,89.45289 +569026,279.52,91.3197 +569027,279.74,93.2324 +569028,279.99,95.1969 +569029,278.04,89.47353 +569030,278.19,91.3362 +569031,278.37,93.2443 +569032,278.59,95.2035 +569033,276.74,89.49555 +569034,276.86,91.3531 +569035,277.01,93.2557 +569036,277.18,95.2086 +569037,275.45,89.51895 +569038,275.53,91.3705 +569039,275.64,93.2665 +569040,275.78,95.2121 +569041,274.15,89.54374 +569042,274.2,91.3883 +569043,274.28,93.2768 +569044,274.38,95.2141 +569045,272.86,89.5699 +569046,272.87,91.4066 +569047,272.91,93.2865 +569048,272.98,95.2146 +569049,271.56,89.59743 +569050,271.54,91.4253 +569051,271.55,93.2957 +569052,271.58,95.2136 +569053,270.27,89.62632 +569054,270.21,91.4444 +569055,270.18,93.3044 +569056,270.17,95.211 +569057,268.97,89.65658 +569058,268.88,91.4639 +569059,268.81,93.3126 +569060,268.77,95.207 +569061,267.68,89.68819 +569062,267.55,91.4838 +569063,267.45,93.3202 +569064,267.37,95.2015 +569065,266.38,89.72114 +569066,266.22,91.5042 +569067,266.08,93.3273 +569068,265.97,95.1945 +569069,265.08,89.75543 +569070,264.89,91.525 +569071,264.72,93.3339 +569072,264.57,95.186 +569073,263.79,89.79105 +569074,263.56,91.5462 +569075,263.35,93.34 +569076,263.16,95.1761 +569077,262.49,89.82799 +569078,262.23,91.5678 +569079,261.98,93.3456 +569080,261.76,95.1647 +569081,261.2,89.86623 +569082,260.9,91.5898 +569083,260.62,93.3506 +569084,260.36,95.1519 +569085,259.9,89.905774 +569086,259.57,91.6123 +569087,259.25,93.3552 +569088,258.96,95.1376 +569089,258.6,89.946601 +569090,258.23,91.6351 +569091,257.89,93.3593 +569092,257.56,95.122 +569093,257.3,89.988702 +569094,256.9,91.6583 +569095,256.52,93.3629 +569096,256.16,95.105 +569097,256.01,90.032062 +569098,255.57,91.6819 +569099,255.16,93.3659 +569100,254.76,95.0866 +569101,254.71,90.076669 +569102,254.24,91.7059 +569103,253.79,93.3685 +569104,253.36,95.0669 +569105,253.41,90.12251 +569106,252.91,91.7303 +569107,252.43,93.3707 +569108,251.96,95.0458 +569109,252.11,90.16956 +569110,251.58,91.755 +569111,251.06,93.3723 +569112,250.56,95.0234 +569113,250.81,90.21782 +569114,250.24,91.7801 +569115,249.7,93.3735 +569116,249.16,94.9998 +569117,249.51,90.26726 +569118,248.91,91.8056 +569119,248.33,93.3742 +569120,247.76,94.9748 +569121,248.21,90.31787 +569122,247.58,91.8314 +569123,246.97,93.3745 +569124,246.37,94.9486 +569125,246.91,90.36964 +569126,246.25,91.8576 +569127,245.6,93.3743 +569128,244.97,94.9211 +569129,245.6,90.42253 +569130,244.91,91.8841 +569131,244.24,93.3737 +569132,243.57,94.8925 +569133,244.3,90.47654 +569134,243.58,91.9109 +569135,242.87,93.3726 +569136,242.18,94.8626 +569137,243,90.53164 +569138,242.25,91.9381 +569139,241.51,93.3712 +569140,240.78,94.8316 +569141,241.69,90.58782 +569142,240.91,91.9656 +569143,240.14,93.3693 +569144,239.39,94.7994 +569145,240.39,90.64506 +569146,239.58,91.9934 +569147,238.78,93.367 +569148,237.99,94.7661 +569149,239.09,90.70332 +569150,238.25,92.0216 +569151,237.42,93.3642 +569152,236.6,94.7317 +569153,237.78,90.7626 +569154,236.91,92.05 +569155,236.05,93.3611 +569156,235.21,94.6963 +569157,236.47,90.82287 +569158,235.58,92.0787 +569159,234.69,93.3576 +569160,233.82,94.6597 +569161,235.16,90.8841 +569162,234.24,92.1077 +569163,233.33,93.3537 +569164,232.43,94.6222 +569165,233.86,90.94628 +569166,232.91,92.137 +569167,231.97,93.3495 +569168,231.04,94.5837 +569169,232.55,91.0094 +569170,231.57,92.1665 +569171,230.6,93.3449 +569172,229.65,94.5442 +569173,231.24,91.0734 +569174,230.23,92.1963 +569175,229.24,93.3399 +569176,228.26,94.5037 +569177,229.93,91.1382 +569178,228.9,92.2264 +569179,227.88,93.3346 +569180,226.87,94.4623 +569181,228.61,91.2039 +569182,227.56,92.2567 +569183,226.52,93.3289 +569184,225.48,94.4201 +569185,227.3,91.2705 +569186,226.23,92.2872 +569187,225.16,93.3229 +569188,224.1,94.377 +569189,225.99,91.3378 +569190,224.89,92.318 +569191,223.8,93.3166 +569192,222.71,94.333 +569193,224.67,91.4059 +569194,223.55,92.349 +569195,222.43,93.31 +569196,221.33,94.2883 +569197,223.36,91.4747 +569198,222.21,92.3801 +569199,221.07,93.303 +569200,219.94,94.2428 +569201,222.04,91.5442 +569202,220.87,92.4115 +569203,219.71,93.2958 +569204,218.56,94.1965 +569205,220.73,91.6144 +569206,219.54,92.4431 +569207,218.35,93.2883 +569208,217.18,94.1495 +569209,219.41,91.6853 +569210,218.2,92.4748 +569211,216.99,93.2806 +569212,215.8,94.1019 +569213,218.09,91.7568 +569214,216.86,92.5067 +569215,215.64,93.2725 +569216,214.42,94.0536 +569217,216.77,91.8289 +569218,215.52,92.5388 +569219,214.28,93.2643 +569220,213.04,94.0046 +569221,215.45,91.9016 +569222,214.18,92.571 +569223,212.92,93.2557 +569224,211.66,93.9551 +569225,214.12,91.9748 +569226,212.84,92.6033 +569227,211.56,93.247 +569228,210.29,93.905 +569229,212.8,92.0485 +569230,211.5,92.6358 +569231,210.2,93.238 +569232,208.91,93.8544 +569233,211.48,92.1226 +569234,210.16,92.6683 +569235,208.84,93.2288 +569236,207.54,93.8033 +569237,210.15,92.1973 +569238,208.82,92.701 +569239,207.49,93.2194 +569240,206.17,93.7517 +569241,208.82,92.2723 +569242,207.47,92.7338 +569243,206.13,93.2099 +569244,204.79,93.6997 +569245,207.5,92.3477 +569246,206.13,92.7667 +569247,204.77,93.2001 +569248,203.42,93.6473 +569249,206.17,92.4235 +569250,204.79,92.7996 +569251,203.42,93.1902 +569252,202.05,93.5946 +569253,204.84,92.4996 +569254,203.45,92.8326 +569255,202.06,93.1801 +569256,200.68,93.5415 +569257,203.5,92.5759 +569258,202.1,92.8656 +569259,200.71,93.1699 +569260,199.32,93.4881 +569261,202.17,92.6525 +569262,200.76,92.8987 +569263,199.35,93.1595 +569264,197.95,93.4344 +569265,200.84,92.7294 +569266,199.41,92.9318 +569267,198,93.1491 +569268,196.59,93.3805 +569269,199.5,92.8064 +569270,198.07,92.9649 +569271,196.64,93.1385 +569272,195.22,93.3263 +569273,198.17,92.8836 +569274,196.72,92.9981 +569275,195.29,93.1278 +569276,193.86,93.272 +569277,196.83,92.9609 +569278,195.38,93.0312 +569279,193.93,93.117 +569280,192.5,93.2176 +569281,195.49,93.0382 +569282,194.03,93.0643 +569283,192.58,93.1061 +569284,191.14,93.1631 +569285,194.15,93.1157 +569286,192.69,93.0974 +569287,191.23,93.0952 +569288,189.78,93.1085 +569289,192.81,93.1931 +569290,191.34,93.1304 +569291,189.87,93.0842 +569292,188.42,93.0538 +569293,191.47,93.2705 +569294,189.99,93.1634 +569295,188.52,93.0731 +569296,187.06,92.9991 +569297,190.13,93.3479 +569298,188.64,93.1963 +569299,187.17,93.062 +569300,185.71,92.9445 +569301,188.78,93.4252 +569302,187.3,93.2291 +569303,185.82,93.0509 +569304,184.35,92.8899 +569305,187.44,93.5023 +569306,185.95,93.2619 +569307,184.47,93.0398 +569308,183,92.8354 +569309,186.09,93.5793 +569310,184.6,93.2946 +569311,183.12,93.0287 +569312,181.65,92.781 +569313,184.74,93.6562 +569314,183.25,93.3271 +569315,181.77,93.0176 +569316,180.3,92.7268 +569317,183.39,93.7328 +569318,181.9,93.3596 +569319,180.42,93.0065 +569320,178.95,92.6728 +569321,182.04,93.8091 +569322,180.55,93.3919 +569323,179.07,92.9954 +569324,177.6,92.6189 +569325,180.69,93.8852 +569326,179.2,93.424 +569327,177.72,92.9844 +569328,176.25,92.5654 +569329,179.34,93.9609 +569330,177.85,93.456 +569331,176.37,92.9734 +569332,174.9,92.5121 +569333,177.98,94.0362 +569334,176.5,93.4879 +569335,175.02,92.9625 +569336,173.56,92.4591 +569337,176.63,94.1112 +569338,175.14,93.5196 +569339,173.67,92.9516 +569340,172.21,92.4064 +569341,175.27,94.1858 +569342,173.79,93.551 +569343,172.33,92.9409 +569344,170.87,92.3542 +569345,173.91,94.2598 +569346,172.44,93.5823 +569347,170.98,92.9302 +569348,169.53,92.3023 +569349,172.55,94.3334 +569350,171.09,93.6134 +569351,169.63,92.9196 +569352,168.19,92.2509 +569353,171.19,94.4065 +569354,169.73,93.6443 +569355,168.29,92.9092 +569356,166.85,92.1999 +569357,169.83,94.4789 +569358,168.38,93.6749 +569359,166.94,92.8988 +569360,165.51,92.1494 +569361,168.47,94.5508 +569362,167.02,93.7053 +569363,165.59,92.8887 +569364,164.18,92.0995 +569365,167.11,94.6221 +569366,165.67,93.7354 +569367,164.25,92.8786 +569368,162.84,92.0501 +569369,165.74,94.6927 +569370,164.31,93.7653 +569371,162.9,92.8687 +569372,161.51,92.0013 +569373,164.37,94.7626 +569374,162.96,93.7949 +569375,161.56,92.859 +569376,160.17,91.9531 +569377,163.01,94.8318 +569378,161.6,93.8242 +569379,160.21,92.8494 +569380,158.84,91.9056 +569381,161.64,94.9002 +569382,160.25,93.8532 +569383,158.87,92.8401 +569384,157.51,91.8587 +569385,160.27,94.9678 +569386,158.89,93.8819 +569387,157.53,92.8309 +569388,156.18,91.8125 +569389,158.9,95.0346 +569390,157.53,93.9103 +569391,156.18,92.8219 +569392,154.85,91.767 +569393,157.53,95.1006 +569394,156.17,93.9384 +569395,154.84,92.8132 +569396,153.52,91.7223 +569397,156.15,95.1656 +569398,154.82,93.9661 +569399,153.5,92.8046 +569400,152.19,91.6784 +569401,154.78,95.2298 +569402,153.46,93.9936 +569403,152.15,92.7963 +569404,150.87,91.6352 +569405,153.4,95.293 +569406,152.1,94.0206 +569407,150.81,92.7883 +569408,149.54,91.5929 +569409,152.03,95.3552 +569410,150.74,94.0473 +569411,149.47,92.7805 +569412,148.22,91.5515 +569413,150.65,95.4165 +569414,149.38,94.0736 +569415,148.13,92.7729 +569416,146.9,91.5109 +569417,149.27,95.4767 +569418,148.02,94.0995 +569419,146.79,92.7656 +569420,145.57,91.4712 +569421,147.89,95.5358 +569422,146.66,94.1251 +569423,145.45,92.7586 +569424,144.25,91.4325 +569425,146.51,95.5939 +569426,145.3,94.1502 +569427,144.11,92.7519 +569428,142.93,91.3947 +569429,145.13,95.6508 +569430,143.94,94.175 +569431,142.77,92.7454 +569432,141.61,91.3579 +569433,143.75,95.7066 +569434,142.58,94.1993 +569435,141.43,92.7393 +569436,140.3,91.3221 +569437,142.36,95.7613 +569438,141.22,94.2232 +569439,140.09,92.7334 +569440,138.98,91.2873 +569441,140.98,95.8147 +569442,139.85,94.2467 +569443,138.75,92.7279 +569444,137.66,91.2535 +569445,139.59,95.867 +569446,138.49,94.2697 +569447,137.41,92.7227 +569448,136.35,91.2208 +569449,138.21,95.918 +569450,137.13,94.2923 +569451,136.07,92.7178 +569452,135.03,91.1892 +569453,136.82,95.9677 +569454,135.77,94.3145 +569455,134.73,92.7133 +569456,133.72,91.1587 +569457,135.43,96.0162 +569458,134.4,94.3362 +569459,133.39,92.709 +569460,132.4,91.1293 +569461,134.04,96.0633 +569462,133.04,94.3574 +569463,132.06,92.7052 +569464,131.09,91.101 +569465,132.66,96.1092 +569466,131.68,94.3781 +569467,130.72,92.7017 +569468,129.78,91.0739 +569469,131.26,96.1536 +569470,130.31,94.3984 +569471,129.38,92.6985 +569472,128.47,91.048 +569473,129.87,96.1967 +569474,128.95,94.4181 +569475,128.04,92.6957 +569476,127.16,91.0233 +569477,128.48,96.2384 +569478,127.58,94.4374 +569479,126.71,92.6933 +569480,125.85,90.99972 +569481,127.09,96.2787 +569482,126.22,94.4562 +569483,125.37,92.6913 +569484,124.54,90.97742 +569485,125.7,96.3176 +569486,124.85,94.4745 +569487,124.03,92.6896 +569488,123.23,90.95635 +569489,124.3,96.355 +569490,123.49,94.4922 +569491,122.7,92.6884 +569492,121.92,90.93654 +569493,122.91,96.391 +569494,122.12,94.5095 +569495,121.36,92.6875 +569496,120.62,90.91799 +569497,121.51,96.4255 +569498,120.76,94.5262 +569499,120.02,92.687 +569500,119.31,90.90073 +569501,120.12,96.4585 +569502,119.39,94.5424 +569503,118.69,92.6869 +569504,118,90.88476 +569505,118.72,96.49 +569506,118.03,94.5581 +569507,117.35,92.6872 +569508,116.7,90.87009 +569509,117.32,96.52 +569510,116.66,94.5732 +569511,116.02,92.688 +569512,115.39,90.85674 +569513,115.92,96.5485 +569514,115.29,94.5878 +569515,114.68,92.6891 +569516,114.09,90.84472 +569517,114.53,96.5754 +569518,113.93,94.6019 +569519,113.35,92.6907 +569520,112.79,90.83403 +569521,113.13,96.6008 +569522,112.56,94.6154 +569523,112.01,92.6926 +569524,111.48,90.82469 +569525,111.73,96.6246 +569526,111.19,94.6284 +569527,110.68,92.695 +569528,110.18,90.81671 +569529,110.33,96.6468 +569530,109.83,94.6408 +569531,109.34,92.6979 +569532,108.88,90.81009 +569533,108.93,96.6674 +569534,108.46,94.6526 +569535,108.01,92.7011 +569536,107.57,90.80484 +569537,107.53,96.6865 +569538,107.09,94.664 +569539,106.67,92.7048 +569540,106.27,90.80097 +569541,106.13,96.704 +569542,105.72,94.6747 +569543,105.34,92.7089 +569544,104.97,90.79848 +569545,104.73,96.7198 +569546,104.36,94.6849 +569547,104,92.7134 +569548,103.67,90.79738 +569549,103.32,96.7341 +569550,102.99,94.6945 +569551,102.67,92.7184 +569552,102.37,90.79768 +569553,101.92,96.7467 +569554,101.62,94.7036 +569555,101.33,92.7238 +569556,101.06,90.79937 +569557,100.52,96.7578 +569558,100.25,94.7121 +569559,100,92.7296 +569560,99.763,90.80246 +569561,99.119,96.7672 +569562,98.884,94.72 +569563,98.666,92.7359 +569564,98.462,90.80696 +569565,97.716,96.775 +569566,97.515,94.7274 +569567,97.331,92.7426 +569568,97.161,90.81286 +569569,96.314,96.7812 +569570,96.147,94.7342 +569571,95.997,92.7498 +569572,95.86,90.82016 +569573,94.911,96.7858 +569574,94.779,94.7405 +569575,94.663,92.7574 +569576,94.56,90.82887 +569577,93.509,96.7888 +569578,93.411,94.7461 +569579,93.328,92.7654 +569580,93.259,90.83899 +569581,92.106,96.7901 +569582,92.043,94.7512 +569583,91.994,92.7739 +569584,91.959,90.85052 +569585,90.703,96.7899 +569586,90.674,94.7558 +569587,90.66,92.7828 +569588,90.658,90.86344 +569589,89.301,96.788 +569590,89.306,94.7598 +569591,89.325,92.7921 +569592,89.357,90.87777 +569593,87.898,96.7846 +569594,87.938,94.7632 +569595,87.991,92.8019 +569596,88.057,90.8935 +569597,86.495,96.7795 +569598,86.569,94.7661 +569599,86.657,92.8121 +569600,86.756,90.91062 +569601,85.093,96.7729 +569602,85.201,94.7684 +569603,85.322,92.8228 +569604,85.455,90.92913 +569605,83.69,96.7646 +569606,83.833,94.7701 +569607,83.988,92.8338 +569608,84.154,90.94902 +569609,82.288,96.7548 +569610,82.465,94.7713 +569611,82.653,92.8453 +569612,82.853,90.97029 +569613,80.886,96.7435 +569614,81.096,94.7719 +569615,81.319,92.8572 +569616,81.551,90.99294 +569617,79.484,96.7306 +569618,79.728,94.772 +569619,79.984,92.8696 +569620,80.25,91.0169 +569621,78.082,96.7161 +569622,78.36,94.7716 +569623,78.649,92.8823 +569624,78.948,91.0423 +569625,76.68,96.7001 +569626,76.992,94.7706 +569627,77.314,92.8955 +569628,77.646,91.069 +569629,75.279,96.6826 +569630,75.624,94.769 +569631,75.979,92.9091 +569632,76.343,91.0971 +569633,73.878,96.6636 +569634,74.256,94.767 +569635,74.644,92.9231 +569636,75.04,91.1265 +569637,72.478,96.6431 +569638,72.889,94.7644 +569639,73.309,92.9375 +569640,73.737,91.1572 +569641,71.077,96.6211 +569642,71.521,94.7612 +569643,71.973,92.9523 +569644,72.434,91.1892 +569645,69.678,96.5977 +569646,70.154,94.7576 +569647,70.638,92.9675 +569648,71.13,91.2225 +569649,68.278,96.5728 +569650,68.786,94.7534 +569651,69.302,92.9831 +569652,69.825,91.2571 +569653,66.879,96.5464 +569654,67.419,94.7488 +569655,67.966,92.9991 +569656,68.52,91.2929 +569657,65.481,96.5187 +569658,66.052,94.7436 +569659,66.63,93.0154 +569660,67.215,91.33 +569661,64.083,96.4896 +569662,64.685,94.7379 +569663,65.294,93.0322 +569664,65.909,91.3684 +569665,62.685,96.4591 +569666,63.318,94.7317 +569667,63.958,93.0493 +569668,64.603,91.4079 +569669,61.288,96.4272 +569670,61.952,94.725 +569671,62.621,93.0667 +569672,63.296,91.4487 +569673,59.892,96.394 +569674,60.585,94.7179 +569675,61.284,93.0846 +569676,61.988,91.4907 +569677,58.496,96.3595 +569678,59.219,94.7103 +569679,59.947,93.1028 +569680,60.68,91.5339 +569681,57.101,96.3237 +569682,57.853,94.7022 +569683,58.61,93.1213 +569684,59.372,91.5782 +569685,55.707,96.2867 +569686,56.487,94.6936 +569687,57.273,93.1402 +569688,58.062,91.6236 +569689,54.313,96.2483 +569690,55.122,94.6846 +569691,55.935,93.1594 +569692,56.752,91.6702 +569693,52.92,96.2088 +569694,53.756,94.6751 +569695,54.597,93.1789 +569696,55.441,91.7178 +569697,51.527,96.1681 +569698,52.391,94.6652 +569699,53.259,93.1988 +569700,54.13,91.7666 +569701,50.136,96.1262 +569702,51.026,94.6549 +569703,51.92,93.2189 +569704,52.818,91.8164 +569705,48.745,96.0831 +569706,49.662,94.6441 +569707,50.582,93.2394 +569708,51.505,91.8673 +569709,47.355,96.0389 +569710,48.297,94.6329 +569711,49.243,93.2602 +569712,50.191,91.9191 +569713,45.965,95.9936 +569714,46.933,94.6213 +569715,47.903,93.2813 +569716,48.876,91.972 +569717,44.577,95.9473 +569718,45.569,94.6093 +569719,46.564,93.3026 +569720,47.561,92.0258 +569721,43.189,95.8999 +569722,44.205,94.5969 +569723,45.224,93.3242 +569724,46.245,92.0806 +569725,41.802,95.8515 +569726,42.842,94.5842 +569727,43.884,93.3461 +569728,44.928,92.1363 +569729,40.416,95.8021 +569730,41.479,94.571 +569731,42.543,93.3683 +569732,43.61,92.1929 +569733,39.031,95.7517 +569734,40.116,94.5575 +569735,41.203,93.3906 +569736,42.291,92.2504 +569737,37.647,95.7004 +569738,38.754,94.5436 +569739,39.862,93.4133 +569740,40.971,92.3087 +569741,36.264,95.6483 +569742,37.391,94.5294 +569743,38.52,93.4361 +569744,39.65,92.3678 +569745,34.882,95.5952 +569746,36.03,94.5149 +569747,37.179,93.4592 +569748,38.329,92.4278 +569749,33.501,95.5413 +569750,34.668,94.5 +569751,35.837,93.4825 +569752,37.006,92.4885 +569753,32.121,95.4866 +569754,33.307,94.4848 +569755,34.494,93.506 +569756,35.683,92.55 +569757,30.741,95.4311 +569758,31.946,94.4693 +569759,33.152,93.5297 +569760,34.358,92.6121 +569761,29.363,95.3749 +569762,30.585,94.4535 +569763,31.809,93.5535 +569764,33.033,92.675 +569765,27.986,95.318 +569766,29.225,94.4374 +569767,30.465,93.5776 +569768,31.706,92.7385 +569769,26.61,95.2603 +569770,27.865,94.421 +569771,29.122,93.6018 +569772,30.378,92.8027 +569773,25.235,95.2021 +569774,26.505,94.4044 +569775,27.777,93.6261 +569776,29.05,92.8674 +569777,23.861,95.1432 +569778,25.146,94.3875 +569779,26.433,93.6506 +569780,27.72,92.9327 +569781,22.488,95.0837 +569782,23.787,94.3704 +569783,25.088,93.6753 +569784,26.389,92.9986 +569785,21.116,95.0236 +569786,22.429,94.353 +569787,23.743,93.7 +569788,25.057,93.0649 +569789,19.745,94.9631 +569790,21.071,94.3354 +569791,22.397,93.7249 +569792,23.724,93.1318 +569793,18.376,94.902 +569794,19.713,94.3176 +569795,21.051,93.7498 +569796,22.39,93.1991 +569797,17.007,94.8405 +569798,18.355,94.2995 +569799,19.705,93.7749 +569800,21.055,93.2668 +569801,15.64,94.7786 +569802,16.998,94.2813 +569803,18.358,93.8 +569804,19.719,93.3349 +569805,14.273,94.7163 +569806,15.641,94.2629 +569807,17.011,93.8252 +569808,18.382,93.4034 +569809,12.908,94.6536 +569810,14.285,94.2444 +569811,15.664,93.8505 +569812,17.043,93.4721 +569813,11.544,94.5906 +569814,12.929,94.2257 +569815,14.316,93.8758 +569816,15.703,93.5412 +569817,10.181,94.5273 +569818,11.574,94.2068 +569819,12.968,93.9011 +569820,14.362,93.6105 +569821,8.8197,94.4638 +569822,10.218,94.1878 +569823,11.619,93.9265 +569824,13.02,93.68 +569825,7.4592,94.4 +569826,8.8636,94.1687 +569827,10.27,93.9518 +569828,11.677,93.7498 +569829,6.0999,94.3361 +569830,7.5091,94.1494 +569831,8.9207,93.9772 +569832,10.333,93.8197 +569833,4.7417,94.272 +569834,6.1551,94.1301 +569835,7.5709,94.0026 +569836,8.9874,93.8897 +569837,3.3847,94.2078 +569838,4.8014,94.1106 +569839,6.2206,94.0279 +569840,7.6407,93.9598 +569841,2.0289,94.1435 +569842,3.4481,94.0911 +569843,4.87,94.0532 +569844,6.2929,94.0299 +569845,0.67427,94.0791 +569846,2.0952,94.0715 +569847,3.519,94.0785 +569848,4.9439,94.1001 +569849,359.32,94.0148 +569850,0.74272,94.0519 +569851,2.1675,94.1037 +569852,3.5936,94.1703 +569853,357.97,93.9504 +569854,359.39,94.0322 +569855,0.81571,94.1288 +569856,2.2422,94.2404 +569857,356.62,93.8861 +569858,358.04,94.0125 +569859,359.46,94.1539 +569860,0.88964,94.3104 +569861,355.27,93.8219 +569862,356.69,93.9927 +569863,358.11,94.1789 +569864,359.54,94.3804 +569865,353.92,93.7578 +569866,355.34,93.973 +569867,356.76,94.2037 +569868,358.18,94.4501 +569869,352.57,93.6938 +569870,353.99,93.9532 +569871,355.4,94.2285 +569872,356.82,94.5197 +569873,351.22,93.6301 +569874,352.64,93.9334 +569875,354.05,94.2531 +569876,355.47,94.5891 +569877,349.88,93.5665 +569878,351.29,93.9137 +569879,352.7,94.2776 +569880,354.11,94.6582 +569881,348.54,93.5032 +569882,349.94,93.894 +569883,351.34,94.302 +569884,352.75,94.7271 +569885,347.19,93.4402 +569886,348.59,93.8744 +569887,349.99,94.3261 +569888,351.39,94.7956 +569889,345.85,93.3775 +569890,347.24,93.8548 +569891,348.63,94.3502 +569892,350.03,94.8638 +569893,344.51,93.3151 +569894,345.89,93.8352 +569895,347.28,94.374 +569896,348.66,94.9316 +569897,343.17,93.2531 +569898,344.54,93.8158 +569899,345.92,94.3977 +569900,347.3,94.9989 +569901,341.83,93.1915 +569902,343.2,93.7964 +569903,344.56,94.4211 +569904,345.93,95.0658 +569905,340.49,93.1304 +569906,341.85,93.7771 +569907,343.21,94.4443 +569908,344.57,95.1322 +569909,339.16,93.0697 +569910,340.5,93.758 +569911,341.85,94.4674 +569912,343.2,95.1981 +569913,337.82,93.0095 +569914,339.16,93.7389 +569915,340.49,94.4901 +569916,341.83,95.2635 +569917,336.49,92.9498 +569918,337.81,93.72 +569919,339.13,94.5127 +569920,340.46,95.3282 +569921,335.16,92.8908 +569922,336.46,93.7012 +569923,337.77,94.5349 +569924,339.09,95.3924 +569925,333.83,92.8323 +569926,335.12,93.6826 +569927,336.42,94.5569 +569928,337.72,95.4558 +569929,332.49,92.7744 +569930,333.77,93.6641 +569931,335.06,94.5786 +569932,336.34,95.5186 +569933,331.16,92.7171 +569934,332.43,93.6458 +569935,333.7,94.6001 +569936,334.97,95.5807 +569937,329.84,92.6606 +569938,331.08,93.6277 +569939,332.34,94.6212 +569940,333.59,95.642 +569941,328.51,92.6047 +569942,329.74,93.6098 +569943,330.98,94.642 +569944,332.22,95.7025 +569945,327.18,92.5496 +569946,328.4,93.5921 +569947,329.62,94.6626 +569948,330.84,95.7622 +569949,325.86,92.4952 +569950,327.05,93.5745 +569951,328.26,94.6827 +569952,329.46,95.8211 +569953,324.53,92.4417 +569954,325.71,93.5572 +569955,326.89,94.7026 +569956,328.08,95.8791 +569957,323.21,92.3889 +569958,324.37,93.5402 +569959,325.53,94.7221 +569960,326.7,95.9362 +569961,321.89,92.337 +569962,323.03,93.5233 +569963,324.17,94.7412 +569964,325.32,95.9923 +569965,320.56,92.2859 +569966,321.68,93.5067 +569967,322.81,94.76 +569968,323.94,96.0475 +569969,319.24,92.2358 +569970,320.34,93.4904 +569971,321.45,94.7784 +569972,322.55,96.1017 +569973,317.92,92.1865 +569974,319,93.4743 +569975,320.08,94.7964 +569976,321.17,96.1549 +569977,316.6,92.1382 +569978,317.66,93.4585 +569979,318.72,94.814 +569980,319.78,96.207 +569981,315.29,92.0908 +569982,316.32,93.443 +569983,317.36,94.8312 +569984,318.4,96.258 +569985,313.97,92.0445 +569986,314.98,93.4278 +569987,315.99,94.848 +569988,317.01,96.3079 +569989,312.65,91.9991 +569990,313.64,93.4128 +569991,314.63,94.8643 +569992,315.62,96.3567 +569993,311.34,91.9548 +569994,312.3,93.3982 +569995,313.26,94.8803 +569996,314.23,96.4043 +569997,310.02,91.9115 +569998,310.96,93.3838 +569999,311.9,94.8958 +570000,312.84,96.4508 +570001,308.71,91.8693 +570002,309.62,93.3698 +570003,310.53,94.9109 +570004,311.45,96.496 +570005,307.39,91.8282 +570006,308.28,93.3562 +570007,309.17,94.9255 +570008,310.06,96.54 +570009,306.08,91.7882 +570010,306.94,93.3428 +570011,307.8,94.9396 +570012,308.67,96.5827 +570013,304.77,91.7493 +570014,305.6,93.3298 +570015,306.44,94.9533 +570016,307.28,96.6242 +570017,303.46,91.7116 +570018,304.26,93.3171 +570019,305.07,94.9665 +570020,305.89,96.6643 +570021,302.15,91.675 +570022,302.93,93.3048 +570023,303.71,94.9793 +570024,304.49,96.7032 +570025,300.84,91.6397 +570026,301.59,93.2928 +570027,302.34,94.9915 +570028,303.1,96.7406 +570029,299.53,91.6055 +570030,300.25,93.2812 +570031,300.97,95.0033 +570032,301.7,96.7767 +570033,298.22,91.5726 +570034,298.91,93.27 +570035,299.61,95.0145 +570036,300.31,96.8114 +570037,296.91,91.5409 +570038,297.57,93.2592 +570039,298.24,95.0253 +570040,298.91,96.8447 +570041,295.6,91.5104 +570042,296.24,93.2487 +570043,296.87,95.0355 +570044,297.51,96.8766 +570045,294.3,91.4812 +570046,294.9,93.2386 +570047,295.51,95.0452 +570048,296.11,96.9071 +570049,292.99,91.4533 +570050,293.56,93.2289 +570051,294.14,95.0545 +570052,294.72,96.936 +570053,291.68,91.4267 +570054,292.23,93.2196 +570055,292.77,95.0631 +570056,293.32,96.9635 +570057,290.38,91.4013 +570058,290.89,93.2107 +570059,291.4,95.0713 +570060,291.92,96.9895 +570061,289.07,91.3773 +570062,289.55,93.2022 +570063,290.04,95.0789 +570064,290.52,97.014 +570065,287.77,91.3546 +570066,288.22,93.1941 +570067,288.67,95.0859 +570068,289.12,97.037 +570069,286.46,91.3333 +570070,286.88,93.1864 +570071,287.3,95.0925 +570072,287.72,97.0584 +570073,285.16,91.3133 +570074,285.55,93.1792 +570075,285.93,95.0985 +570076,286.32,97.0783 +570077,283.86,91.2946 +570078,284.21,93.1723 +570079,284.56,95.1039 +570080,284.92,97.0966 +570081,282.55,91.2774 +570082,282.87,93.1659 +570083,283.19,95.1088 +570084,283.51,97.1134 +570085,281.25,91.2615 +570086,281.54,93.1599 +570087,281.83,95.1131 +570088,282.11,97.1285 +570089,279.95,91.2469 +570090,280.2,93.1543 +570091,280.46,95.1168 +570092,280.71,97.1421 +570093,278.64,91.2338 +570094,278.87,93.1492 +570095,279.09,95.12 +570096,279.31,97.1541 +570097,277.34,91.222 +570098,277.53,93.1445 +570099,277.72,95.1226 +570100,277.91,97.1645 +570101,276.04,91.2117 +570102,276.2,93.1402 +570103,276.35,95.1247 +570104,276.5,97.1732 +570105,274.74,91.2027 +570106,274.86,93.1363 +570107,274.98,95.1262 +570108,275.1,97.1804 +570109,273.43,91.1951 +570110,273.52,93.1329 +570111,273.61,95.1271 +570112,273.7,97.1859 +570113,272.13,91.189 +570114,272.19,93.1299 +570115,272.24,95.1275 +570116,272.3,97.1898 +570117,270.83,91.1842 +570118,270.85,93.1274 +570119,270.88,95.1273 +570120,270.89,97.1921 +570121,269.53,91.1809 +570122,269.52,93.1253 +570123,269.51,95.1265 +570124,269.49,97.1927 +570125,268.23,91.179 +570126,268.18,93.1236 +570127,268.14,95.1251 +570128,268.09,97.1917 +570129,266.92,91.1785 +570130,266.85,93.1224 +570131,266.77,95.1232 +570132,266.69,97.1891 +570133,265.62,91.1794 +570134,265.51,93.1216 +570135,265.4,95.1207 +570136,265.28,97.1849 +570137,264.32,91.1817 +570138,264.18,93.1212 +570139,264.03,95.1176 +570140,263.88,97.179 +570141,263.02,91.1854 +570142,262.84,93.1213 +570143,262.66,95.1139 +570144,262.48,97.1715 +570145,261.72,91.1905 +570146,261.51,93.1218 +570147,261.29,95.1097 +570148,261.07,97.1624 +570149,260.41,91.197 +570150,260.17,93.1228 +570151,259.92,95.1049 +570152,259.67,97.1516 +570153,259.11,91.205 +570154,258.84,93.1242 +570155,258.56,95.0996 +570156,258.27,97.1392 +570157,257.81,91.2143 +570158,257.5,93.126 +570159,257.19,95.0936 +570160,256.87,97.1253 +570161,256.5,91.225 +570162,256.16,93.1282 +570163,255.82,95.0872 +570164,255.47,97.1097 +570165,255.2,91.237 +570166,254.83,93.1309 +570167,254.45,95.0801 +570168,254.07,97.0925 +570169,253.9,91.2505 +570170,253.49,93.134 +570171,253.08,95.0725 +570172,252.67,97.0737 +570173,252.59,91.2653 +570174,252.16,93.1375 +570175,251.71,95.0644 +570176,251.27,97.0534 +570177,251.29,91.2815 +570178,250.82,93.1414 +570179,250.35,95.0556 +570180,249.87,97.0315 +570181,249.98,91.299 +570182,249.48,93.1458 +570183,248.98,95.0464 +570184,248.47,97.008 +570185,248.68,91.3178 +570186,248.15,93.1506 +570187,247.61,95.0366 +570188,247.07,96.983 +570189,247.37,91.338 +570190,246.81,93.1557 +570191,246.24,95.0262 +570192,245.67,96.9565 +570193,246.07,91.3595 +570194,245.48,93.1613 +570195,244.88,95.0153 +570196,244.27,96.9284 +570197,244.76,91.3823 +570198,244.14,93.1673 +570199,243.51,95.0039 +570200,242.87,96.8989 +570201,243.45,91.4064 +570202,242.8,93.1737 +570203,242.14,94.992 +570204,241.47,96.8678 +570205,242.15,91.4318 +570206,241.46,93.1804 +570207,240.78,94.9795 +570208,240.08,96.8353 +570209,240.84,91.4584 +570210,240.13,93.1876 +570211,239.41,94.9665 +570212,238.68,96.8014 +570213,239.53,91.4863 +570214,238.79,93.1951 +570215,238.04,94.953 +570216,237.29,96.7659 +570217,238.22,91.5155 +570218,237.45,93.203 +570219,236.68,94.939 +570220,235.89,96.7291 +570221,236.91,91.5458 +570222,236.11,93.2113 +570223,235.31,94.9245 +570224,234.5,96.6909 +570225,235.6,91.5774 +570226,234.78,93.22 +570227,233.94,94.9095 +570228,233.1,96.6513 +570229,234.29,91.6102 +570230,233.44,93.229 +570231,232.58,94.894 +570232,231.71,96.6103 +570233,232.98,91.6441 +570234,232.1,93.2384 +570235,231.21,94.878 +570236,230.32,96.568 +570237,231.66,91.6792 +570238,230.76,93.2481 +570239,229.85,94.8616 +570240,228.93,96.5243 +570241,230.35,91.7154 +570242,229.42,93.2582 +570243,228.48,94.8447 +570244,227.54,96.4794 +570245,229.04,91.7527 +570246,228.08,93.2686 +570247,227.12,94.8273 +570248,226.15,96.4332 +570249,227.72,91.7912 +570250,226.74,93.2793 +570251,225.75,94.8095 +570252,224.76,96.3857 +570253,226.41,91.8307 +570254,225.4,93.2903 +570255,224.39,94.7912 +570256,223.37,96.3371 +570257,225.09,91.8713 +570258,224.06,93.3017 +570259,223.03,94.7725 +570260,221.98,96.2872 +570261,223.77,91.9129 +570262,222.72,93.3134 +570263,221.66,94.7533 +570264,220.6,96.2361 +570265,222.45,91.9555 +570266,221.38,93.3253 +570267,220.3,94.7337 +570268,219.21,96.1839 +570269,221.14,91.9991 +570270,220.04,93.3376 +570271,218.94,94.7137 +570272,217.83,96.1306 +570273,219.82,92.0437 +570274,218.7,93.3501 +570275,217.58,94.6933 +570276,216.44,96.0762 +570277,218.49,92.0892 +570278,217.36,93.3629 +570279,216.21,94.6725 +570280,215.06,96.0207 +570281,217.17,92.1356 +570282,216.02,93.376 +570283,214.85,94.6514 +570284,213.68,95.9641 +570285,215.85,92.183 +570286,214.67,93.3893 +570287,213.49,94.6298 +570288,212.3,95.9066 +570289,214.53,92.2312 +570290,213.33,93.4029 +570291,212.13,94.6079 +570292,210.92,95.8481 +570293,213.2,92.2802 +570294,211.99,93.4168 +570295,210.77,94.5856 +570296,209.54,95.7886 +570297,211.88,92.3301 +570298,210.65,93.4308 +570299,209.41,94.5629 +570300,208.16,95.7282 +570301,210.55,92.3808 +570302,209.3,93.4451 +570303,208.05,94.5399 +570304,206.78,95.6669 +570305,209.22,92.4322 +570306,207.96,93.4596 +570307,206.69,94.5166 +570308,205.41,95.6047 +570309,207.89,92.4844 +570310,206.62,93.4743 +570311,205.33,94.493 +570312,204.03,95.5417 +570313,206.56,92.5373 +570314,205.27,93.4892 +570315,203.97,94.469 +570316,202.66,95.4779 +570317,205.23,92.5909 +570318,203.93,93.5043 +570319,202.61,94.4448 +570320,201.29,95.4134 +570321,203.9,92.6451 +570322,202.58,93.5196 +570323,201.25,94.4202 +570324,199.92,95.3481 +570325,202.57,92.7 +570326,201.24,93.535 +570327,199.89,94.3954 +570328,198.55,95.2821 +570329,201.24,92.7554 +570330,199.89,93.5506 +570331,198.54,94.3703 +570332,197.18,95.2154 +570333,199.9,92.8115 +570334,198.54,93.5663 +570335,197.18,94.3449 +570336,195.81,95.1481 +570337,198.56,92.868 +570338,197.2,93.5821 +570339,195.82,94.3193 +570340,194.44,95.0802 +570341,197.23,92.9251 +570342,195.85,93.5981 +570343,194.47,94.2934 +570344,193.08,95.0117 +570345,195.89,92.9827 +570346,194.5,93.6142 +570347,193.11,94.2674 +570348,191.71,94.9427 +570349,194.55,93.0407 +570350,193.16,93.6304 +570351,191.76,94.2411 +570352,190.35,94.8731 +570353,193.21,93.0992 +570354,191.81,93.6467 +570355,190.4,94.2146 +570356,188.99,94.8031 +570357,191.87,93.158 +570358,190.46,93.6631 +570359,189.05,94.1879 +570360,187.63,94.7327 +570361,190.52,93.2172 +570362,189.11,93.6795 +570363,187.69,94.161 +570364,186.27,94.6618 +570365,189.18,93.2767 +570366,187.76,93.696 +570367,186.34,94.1339 +570368,184.91,94.5906 +570369,187.84,93.3365 +570370,186.41,93.7126 +570371,184.98,94.1067 +570372,183.55,94.519 +570373,186.49,93.3965 +570374,185.06,93.7292 +570375,183.63,94.0793 +570376,182.19,94.4472 +570377,185.14,93.4568 +570378,183.71,93.7458 +570379,182.28,94.0518 +570380,180.84,94.3751 +570381,183.79,93.5173 +570382,182.36,93.7625 +570383,180.93,94.0242 +570384,179.48,94.3027 +570385,182.44,93.5779 +570386,181.01,93.7791 +570387,179.57,93.9964 +570388,178.13,94.2301 +570389,181.09,93.6387 +570390,179.66,93.7958 +570391,178.22,93.9686 +570392,176.78,94.1574 +570393,179.74,93.6996 +570394,178.31,93.8124 +570395,176.87,93.9406 +570396,175.43,94.0846 +570397,178.39,93.7605 +570398,176.96,93.829 +570399,175.52,93.9126 +570400,174.08,94.0116 +570401,177.03,93.8215 +570402,175.6,93.8455 +570403,174.17,93.8845 +570404,172.73,93.9386 +570405,175.68,93.8825 +570406,174.25,93.8621 +570407,172.82,93.8563 +570408,171.39,93.8656 +570409,174.32,93.9434 +570410,172.9,93.8785 +570411,171.47,93.8281 +570412,170.04,93.7926 +570413,172.96,94.0043 +570414,171.54,93.8949 +570415,170.12,93.7999 +570416,168.7,93.7196 +570417,171.6,94.065 +570418,170.19,93.9112 +570419,168.77,93.7716 +570420,167.35,93.6467 +570421,170.24,94.1257 +570422,168.83,93.9274 +570423,167.42,93.7433 +570424,166.01,93.5739 +570425,168.88,94.1861 +570426,167.48,93.9435 +570427,166.08,93.715 +570428,164.67,93.5012 +570429,167.52,94.2464 +570430,166.12,93.9594 +570431,164.73,93.6867 +570432,163.33,93.4287 +570433,166.15,94.3064 +570434,164.77,93.9753 +570435,163.38,93.6585 +570436,161.99,93.3565 +570437,164.79,94.3662 +570438,163.41,93.991 +570439,162.04,93.6302 +570440,160.65,93.2844 +570441,163.42,94.4256 +570442,162.06,94.0065 +570443,160.69,93.6021 +570444,159.32,93.2127 +570445,162.05,94.4847 +570446,160.7,94.0219 +570447,159.34,93.5739 +570448,157.98,93.1412 +570449,160.69,94.5435 +570450,159.34,94.0371 +570451,158,93.5459 +570452,156.65,93.0701 +570453,159.32,94.6018 +570454,157.99,94.0522 +570455,156.65,93.5179 +570456,155.32,92.9994 +570457,157.95,94.6597 +570458,156.63,94.067 +570459,155.31,93.49 +570460,153.98,92.9291 +570461,156.57,94.7172 +570462,155.27,94.0816 +570463,153.96,93.4622 +570464,152.65,92.8592 +570465,155.2,94.7741 +570466,153.91,94.0961 +570467,152.62,93.4345 +570468,151.32,92.7897 +570469,153.83,94.8305 +570470,152.55,94.1103 +570471,151.28,93.4069 +570472,150,92.7208 +570473,152.45,94.8864 +570474,151.19,94.1242 +570475,149.93,93.3794 +570476,148.67,92.6524 +570477,151.08,94.9416 +570478,149.83,94.1379 +570479,148.59,93.3521 +570480,147.34,92.5846 +570481,149.7,94.9962 +570482,148.47,94.1514 +570483,147.25,93.3249 +570484,146.02,92.5173 +570485,148.32,95.0502 +570486,147.11,94.1645 +570487,145.91,93.2979 +570488,144.69,92.4507 +570489,146.94,95.1035 +570490,145.75,94.1774 +570491,144.56,93.2711 +570492,143.37,92.3847 +570493,145.56,95.156 +570494,144.39,94.19 +570495,143.22,93.2444 +570496,142.05,92.3194 +570497,144.18,95.2078 +570498,143.03,94.2023 +570499,141.88,93.218 +570500,140.73,92.2548 +570501,142.8,95.2588 +570502,141.67,94.2143 +570503,140.54,93.1917 +570504,139.41,92.1909 +570505,141.41,95.309 +570506,140.31,94.226 +570507,139.2,93.1657 +570508,138.09,92.1278 +570509,140.03,95.3583 +570510,138.95,94.2374 +570511,137.86,93.1398 +570512,136.77,92.0654 +570513,138.65,95.4067 +570514,137.59,94.2484 +570515,136.52,93.1142 +570516,135.45,92.0039 +570517,137.26,95.4543 +570518,136.22,94.2591 +570519,135.18,93.0888 +570520,134.13,91.9432 +570521,135.87,95.5009 +570522,134.86,94.2694 +570523,133.84,93.0637 +570524,132.82,91.8834 +570525,134.48,95.5466 +570526,133.5,94.2793 +570527,132.5,93.0388 +570528,131.5,91.8245 +570529,133.1,95.5913 +570530,132.13,94.2889 +570531,131.16,93.0142 +570532,130.19,91.7665 +570533,131.71,95.6349 +570534,130.77,94.2981 +570535,129.83,92.9899 +570536,128.88,91.7094 +570537,130.32,95.6775 +570538,129.41,94.3069 +570539,128.49,92.9658 +570540,127.56,91.6533 +570541,128.93,95.719 +570542,128.04,94.3153 +570543,127.15,92.942 +570544,126.25,91.5982 +570545,127.53,95.7595 +570546,126.68,94.3232 +570547,125.81,92.9186 +570548,124.94,91.5441 +570549,126.14,95.7988 +570550,125.31,94.3308 +570551,124.48,92.8954 +570552,123.63,91.491 +570553,124.75,95.837 +570554,123.95,94.338 +570555,123.14,92.8725 +570556,122.32,91.439 +570557,123.36,95.8739 +570558,122.58,94.3447 +570559,121.8,92.85 +570560,121.01,91.388 +570561,121.96,95.9097 +570562,121.22,94.351 +570563,120.47,92.8278 +570564,119.71,91.3381 +570565,120.57,95.9443 +570566,119.85,94.3568 +570567,119.13,92.8059 +570568,118.4,91.2894 +570569,119.17,95.9776 +570570,118.49,94.3622 +570571,117.79,92.7843 +570572,117.09,91.2418 +570573,117.77,96.0097 +570574,117.12,94.3671 +570575,116.46,92.7631 +570576,115.79,91.1953 +570577,116.38,96.0405 +570578,115.75,94.3715 +570579,115.12,92.7423 +570580,114.48,91.15 +570581,114.98,96.0699 +570582,114.39,94.3755 +570583,113.79,92.7218 +570584,113.18,91.1059 +570585,113.58,96.0981 +570586,113.02,94.379 +570587,112.45,92.7017 +570588,111.87,91.0629 +570589,112.18,96.1249 +570590,111.66,94.382 +570591,111.12,92.6819 +570592,110.57,91.0212 +570593,110.78,96.1503 +570594,110.29,94.3845 +570595,109.78,92.6625 +570596,109.26,90.98078 +570597,109.39,96.1743 +570598,108.92,94.3865 +570599,108.45,92.6436 +570600,107.96,90.94156 +570601,107.99,96.1969 +570602,107.56,94.388 +570603,107.11,92.6249 +570604,106.66,90.9036 +570605,106.59,96.2182 +570606,106.19,94.389 +570607,105.78,92.6067 +570608,105.36,90.86693 +570609,105.18,96.2379 +570610,104.82,94.3895 +570611,104.45,92.5889 +570612,104.06,90.83154 +570613,103.78,96.2562 +570614,103.45,94.3895 +570615,103.11,92.5715 +570616,102.75,90.79745 +570617,102.38,96.2731 +570618,102.09,94.389 +570619,101.78,92.5545 +570620,101.45,90.76467 +570621,100.98,96.2884 +570622,100.72,94.3879 +570623,100.44,92.5378 +570624,100.15,90.73321 +570625,99.58,96.3023 +570626,99.353,94.3863 +570627,99.11,92.5216 +570628,98.853,90.70309 +570629,98.178,96.3147 +570630,97.986,94.3841 +570631,97.777,92.5059 +570632,97.553,90.67432 +570633,96.776,96.3255 +570634,96.618,94.3815 +570635,96.443,92.4905 +570636,96.253,90.64689 +570637,95.374,96.3348 +570638,95.251,94.3783 +570639,95.11,92.4756 +570640,94.953,90.62082 +570641,93.972,96.3426 +570642,93.883,94.3745 +570643,93.777,92.461 +570644,93.654,90.59612 +570645,92.57,96.3488 +570646,92.516,94.3702 +570647,92.443,92.4469 +570648,92.355,90.5728 +570649,91.167,96.3535 +570650,91.148,94.3653 +570651,91.11,92.4333 +570652,91.055,90.55085 +570653,89.765,96.3565 +570654,89.781,94.3599 +570655,89.777,92.42 +570656,89.756,90.53029 +570657,88.362,96.3581 +570658,88.413,94.354 +570659,88.444,92.4072 +570660,88.457,90.51111 +570661,86.96,96.358 +570662,87.046,94.3475 +570663,87.111,92.3949 +570664,87.158,90.49334 +570665,85.557,96.3564 +570666,85.678,94.3404 +570667,85.778,92.3829 +570668,85.86,90.47695 +570669,84.155,96.3531 +570670,84.311,94.3328 +570671,84.445,92.3715 +570672,84.561,90.46197 +570673,82.753,96.3483 +570674,82.943,94.3246 +570675,83.112,92.3604 +570676,83.262,90.44839 +570677,81.351,96.3419 +570678,81.576,94.3159 +570679,81.779,92.3498 +570680,81.963,90.43621 +570681,79.949,96.3338 +570682,80.209,94.3066 +570683,80.446,92.3396 +570684,80.663,90.42543 +570685,78.547,96.3242 +570686,78.841,94.2968 +570687,79.113,92.3299 +570688,79.364,90.41606 +570689,77.145,96.313 +570690,77.474,94.2864 +570691,77.78,92.3206 +570692,78.065,90.40809 +570693,75.744,96.3002 +570694,76.107,94.2754 +570695,76.446,92.3117 +570696,76.765,90.40151 +570697,74.343,96.2858 +570698,74.74,94.2639 +570699,75.113,92.3033 +570700,75.465,90.39633 +570701,72.942,96.2698 +570702,73.374,94.2518 +570703,73.78,92.2953 +570704,74.165,90.39255 +570705,71.542,96.2522 +570706,72.007,94.2392 +570707,72.447,92.2877 +570708,72.865,90.39016 +570709,70.142,96.233 +570710,70.64,94.226 +570711,71.113,92.2806 +570712,71.564,90.38915 +570713,68.742,96.2122 +570714,69.274,94.2122 +570715,69.78,92.2739 +570716,70.264,90.38953 +570717,67.343,96.1899 +570718,67.908,94.198 +570719,68.446,92.2677 +570720,68.962,90.39128 +570721,65.945,96.166 +570722,66.542,94.1831 +570723,67.112,92.2618 +570724,67.661,90.39439 +570725,64.546,96.1405 +570726,65.176,94.1678 +570727,65.779,92.2564 +570728,66.359,90.39887 +570729,63.149,96.1135 +570730,63.81,94.1518 +570731,64.445,92.2515 +570732,65.057,90.4047 +570733,61.751,96.085 +570734,62.445,94.1354 +570735,63.11,92.2469 +570736,63.754,90.41188 +570737,60.355,96.0549 +570738,61.079,94.1184 +570739,61.776,92.2427 +570740,62.45,90.42039 +570741,58.959,96.0233 +570742,59.714,94.1009 +570743,60.442,92.239 +570744,61.147,90.43023 +570745,57.563,95.9902 +570746,58.349,94.0828 +570747,59.107,92.2357 +570748,59.842,90.44138 +570749,56.169,95.9555 +570750,56.984,94.0643 +570751,57.773,92.2328 +570752,58.538,90.45383 +570753,54.774,95.9195 +570754,55.62,94.0452 +570755,56.438,92.2303 +570756,57.232,90.46758 +570757,53.381,95.8819 +570758,54.256,94.0256 +570759,55.103,92.2282 +570760,55.926,90.4826 +570761,51.988,95.8429 +570762,52.892,94.0055 +570763,53.767,92.2264 +570764,54.62,90.4989 +570765,50.596,95.8024 +570766,51.528,93.9848 +570767,52.432,92.2251 +570768,53.312,90.51644 +570769,49.205,95.7606 +570770,50.165,93.9637 +570771,51.096,92.2242 +570772,52.004,90.53522 +570773,47.815,95.7173 +570774,48.801,93.9421 +570775,49.76,92.2236 +570776,50.696,90.55523 +570777,46.425,95.6726 +570778,47.438,93.92 +570779,48.424,92.2234 +570780,49.387,90.57644 +570781,45.036,95.6266 +570782,46.076,93.8974 +570783,47.088,92.2236 +570784,48.077,90.59884 +570785,43.648,95.5792 +570786,44.714,93.8744 +570787,45.751,92.2241 +570788,46.766,90.62242 +570789,42.261,95.5305 +570790,43.351,93.8509 +570791,44.415,92.225 +570792,45.454,90.64716 +570793,40.875,95.4805 +570794,41.99,93.8269 +570795,43.077,92.2263 +570796,44.142,90.67303 +570797,39.489,95.4292 +570798,40.628,93.8024 +570799,41.74,92.2279 +570800,42.829,90.70003 +570801,38.105,95.3767 +570802,39.267,93.7775 +570803,40.403,92.2298 +570804,41.515,90.72813 +570805,36.722,95.3229 +570806,37.906,93.7522 +570807,39.065,92.2321 +570808,40.2,90.7573 +570809,35.339,95.2679 +570810,36.546,93.7264 +570811,37.727,92.2347 +570812,38.884,90.78754 +570813,33.958,95.2117 +570814,35.186,93.7002 +570815,36.388,92.2376 +570816,37.568,90.81882 +570817,32.577,95.1544 +570818,33.826,93.6736 +570819,35.049,92.2408 +570820,36.25,90.85113 +570821,31.198,95.0959 +570822,32.467,93.6466 +570823,33.71,92.2443 +570824,34.932,90.88442 +570825,29.819,95.0363 +570826,31.108,93.6192 +570827,32.371,92.2481 +570828,33.612,90.9187 +570829,28.442,94.9756 +570830,29.749,93.5914 +570831,31.031,92.2522 +570832,32.292,90.95393 +570833,27.066,94.9138 +570834,28.391,93.5632 +570835,29.692,92.2566 +570836,30.971,90.99008 +570837,25.69,94.851 +570838,27.033,93.5346 +570839,28.351,92.2612 +570840,29.648,91.0271 +570841,24.316,94.7872 +570842,25.675,93.5056 +570843,27.011,92.2661 +570844,28.325,91.0651 +570845,22.943,94.7224 +570846,24.318,93.4763 +570847,25.67,92.2713 +570848,27.001,91.1039 +570849,21.571,94.6567 +570850,22.962,93.4467 +570851,24.329,92.2767 +570852,25.675,91.1435 +570853,20.201,94.59 +570854,21.605,93.4167 +570855,22.987,92.2823 +570856,24.349,91.184 +570857,18.831,94.5225 +570858,20.249,93.3863 +570859,21.645,92.2882 +570860,23.021,91.2252 +570861,17.463,94.4541 +570862,18.894,93.3557 +570863,20.303,92.2943 +570864,21.693,91.2672 +570865,16.095,94.3849 +570866,17.538,93.3247 +570867,18.96,92.3006 +570868,20.363,91.3099 +570869,14.729,94.3149 +570870,16.184,93.2935 +570871,17.618,92.3071 +570872,19.032,91.3533 +570873,13.364,94.2441 +570874,14.829,93.2619 +570875,16.274,92.3138 +570876,17.7,91.3974 +570877,12.001,94.1726 +570878,13.475,93.2301 +570879,14.931,92.3206 +570880,16.367,91.4421 +570881,10.638,94.1003 +570882,12.122,93.198 +570883,13.587,92.3277 +570884,15.033,91.4874 +570885,9.2767,94.0275 +570886,10.769,93.1656 +570887,12.242,92.3349 +570888,13.698,91.5334 +570889,7.9166,93.9539 +570890,9.4162,93.133 +570891,10.898,92.3422 +570892,12.361,91.5799 +570893,6.5577,93.8798 +570894,8.064,93.1001 +570895,9.5524,92.3497 +570896,11.024,91.6269 +570897,5.2001,93.8051 +570898,6.7122,93.067 +570899,8.2069,92.3574 +570900,9.6848,91.6744 +570901,3.8436,93.7298 +570902,5.3608,93.0337 +570903,6.8611,92.3651 +570904,8.3448,91.7224 +570905,2.4885,93.6541 +570906,4.0099,93.0002 +570907,5.5149,92.373 +570908,7.0036,91.7709 +570909,1.1345,93.5779 +570910,2.6594,92.9665 +570911,4.1683,92.3809 +570912,5.6613,91.8197 +570913,359.78,93.5012 +570914,1.3093,92.9326 +570915,2.8213,92.389 +570916,4.3177,91.869 +570917,358.43,93.4241 +570918,359.96,92.8986 +570919,1.474,92.3971 +570920,2.973,91.9186 +570921,357.08,93.3467 +570922,358.61,92.8643 +570923,0.12625,92.4053 +570924,1.6271,91.9685 +570925,355.73,93.2689 +570926,357.26,92.83 +570927,358.78,92.4136 +570928,0.27993,92.0187 +570929,354.38,93.1908 +570930,355.91,92.7954 +570931,357.43,92.4219 +570932,358.93,92.0691 +570933,353.04,93.1125 +570934,354.57,92.7608 +570935,356.08,92.4302 +570936,357.58,92.1198 +570937,351.69,93.0339 +570938,353.22,92.726 +570939,354.73,92.4386 +570940,356.23,92.1707 +570941,350.35,92.9551 +570942,351.87,92.6911 +570943,353.38,92.447 +570944,354.88,92.2218 +570945,349.01,92.8762 +570946,350.52,92.6562 +570947,352.03,92.4554 +570948,353.53,92.273 +570949,347.66,92.7971 +570950,349.18,92.6211 +570951,350.68,92.4638 +570952,352.17,92.3242 +570953,346.32,92.718 +570954,347.83,92.586 +570955,349.33,92.4721 +570956,350.82,92.3756 +570957,344.98,92.6387 +570958,346.49,92.5508 +570959,347.98,92.4805 +570960,349.46,92.427 +570961,343.65,92.5595 +570962,345.14,92.5156 +570963,346.63,92.4888 +570964,348.1,92.4784 +570965,342.31,92.4802 +570966,343.8,92.4803 +570967,345.28,92.497 +570968,346.74,92.5297 +570969,340.97,92.401 +570970,342.45,92.445 +570971,343.92,92.5052 +570972,345.38,92.581 +570973,339.64,92.3218 +570974,341.11,92.4096 +570975,342.57,92.5134 +570976,344.02,92.6322 +570977,338.31,92.2428 +570978,339.77,92.3743 +570979,341.22,92.5214 +570980,342.66,92.6833 +570981,336.98,92.1639 +570982,338.43,92.339 +570983,339.86,92.5294 +570984,341.29,92.7342 +570985,335.65,92.0852 +570986,337.08,92.3037 +570987,338.51,92.5372 +570988,339.93,92.785 +570989,334.32,92.0067 +570990,335.74,92.2684 +570991,337.16,92.5449 +570992,338.56,92.8355 +570993,332.99,91.9284 +570994,334.4,92.2331 +570995,335.8,92.5526 +570996,337.19,92.8858 +570997,331.66,91.8504 +570998,333.06,92.1979 +570999,334.45,92.56 +571000,335.83,92.9358 +571001,330.34,91.7727 +571002,331.72,92.1628 +571003,333.09,92.5673 +571004,334.46,92.9854 +571005,329.01,91.6953 +571006,330.38,92.1277 +571007,331.74,92.5745 +571008,333.09,93.0347 +571009,327.69,91.6183 +571010,329.04,92.0928 +571011,330.38,92.5815 +571012,331.71,93.0837 +571013,326.36,91.5417 +571014,327.7,92.0579 +571015,329.02,92.5883 +571016,330.34,93.1322 +571017,325.04,91.4656 +571018,326.36,92.0231 +571019,327.67,92.595 +571020,328.97,93.1803 +571021,323.72,91.3899 +571022,325.02,91.9884 +571023,326.31,92.6014 +571024,327.59,93.2278 +571025,322.4,91.3147 +571026,323.68,91.9539 +571027,324.95,92.6076 +571028,326.22,93.2749 +571029,321.09,91.24 +571030,322.35,91.9195 +571031,323.6,92.6136 +571032,324.84,93.3215 +571033,319.77,91.1659 +571034,321.01,91.8852 +571035,322.24,92.6194 +571036,323.46,93.3675 +571037,318.45,91.0924 +571038,319.67,91.8511 +571039,320.88,92.6249 +571040,322.08,93.4129 +571041,317.14,91.0194 +571042,318.33,91.8172 +571043,319.52,92.6302 +571044,320.7,93.4576 +571045,315.82,90.94716 +571046,317,91.7834 +571047,318.16,92.6352 +571048,319.32,93.5017 +571049,314.51,90.87556 +571050,315.66,91.7498 +571051,316.8,92.64 +571052,317.94,93.5451 +571053,313.2,90.80465 +571054,314.33,91.7165 +571055,315.45,92.6445 +571056,316.55,93.5878 +571057,311.89,90.73448 +571058,312.99,91.6833 +571059,314.09,92.6486 +571060,315.17,93.6298 +571061,310.58,90.66506 +571062,311.66,91.6503 +571063,312.73,92.6525 +571064,313.78,93.6709 +571065,309.27,90.59642 +571066,310.32,91.6176 +571067,311.37,92.6561 +571068,312.4,93.7113 +571069,307.96,90.52859 +571070,308.99,91.5851 +571071,310,92.6594 +571072,311.01,93.7508 +571073,306.65,90.46159 +571074,307.65,91.5528 +571075,308.64,92.6623 +571076,309.62,93.7895 +571077,305.34,90.39546 +571078,306.32,91.5208 +571079,307.28,92.6649 +571080,308.23,93.8273 +571081,304.04,90.33021 +571082,304.99,91.489 +571083,305.92,92.6672 +571084,306.85,93.8641 +571085,302.73,90.26587 +571086,303.65,91.4576 +571087,304.56,92.6691 +571088,305.46,93.9 +571089,301.43,90.20246 +571090,302.32,91.4263 +571091,303.2,92.6706 +571092,304.06,93.935 +571093,300.13,90.14001 +571094,300.99,91.3954 +571095,301.84,92.6718 +571096,302.67,93.969 +571097,298.82,90.078534 +571098,299.66,91.3648 +571099,300.48,92.6726 +571100,301.28,94.0019 +571101,297.52,90.018063 +571102,298.32,91.3345 +571103,299.11,92.673 +571104,299.89,94.0338 +571105,296.22,89.958616 +571106,296.99,91.3044 +571107,297.75,92.673 +571108,298.49,94.0646 +571109,294.92,89.900214 +571110,295.66,91.2747 +571111,296.39,92.6727 +571112,297.1,94.0943 +571113,293.62,89.84288 +571114,294.33,91.2453 +571115,295.02,92.6719 +571116,295.7,94.1229 +571117,292.32,89.78662 +571118,293,91.2163 +571119,293.66,92.6707 +571120,294.31,94.1504 +571121,291.02,89.73148 +571122,291.67,91.1875 +571123,292.3,92.6691 +571124,292.91,94.1767 +571125,289.72,89.67745 +571126,290.34,91.1592 +571127,290.94,92.667 +571128,291.52,94.2018 +571129,288.42,89.62457 +571130,289.01,91.1311 +571131,289.57,92.6646 +571132,290.12,94.2258 +571133,287.13,89.57285 +571134,287.68,91.1035 +571135,288.21,92.6616 +571136,288.72,94.2485 +571137,285.83,89.5223 +571138,286.35,91.0761 +571139,286.84,92.6583 +571140,287.32,94.2699 +571141,284.53,89.47295 +571142,285.02,91.0492 +571143,285.48,92.6544 +571144,285.92,94.2901 +571145,283.24,89.4248 +571146,283.69,91.0226 +571147,284.12,92.6502 +571148,284.53,94.309 +571149,281.94,89.37788 +571150,282.36,90.99643 +571151,282.75,92.6454 +571152,283.13,94.3266 +571153,280.65,89.33219 +571154,281.03,90.97062 +571155,281.39,92.6402 +571156,281.73,94.3429 +571157,279.35,89.28776 +571158,279.7,90.9452 +571159,280.02,92.6345 +571160,280.33,94.3578 +571161,278.06,89.24459 +571162,278.37,90.92018 +571163,278.66,92.6283 +571164,278.93,94.3714 +571165,276.77,89.20269 +571166,277.04,90.89555 +571167,277.3,92.6217 +571168,277.53,94.3836 +571169,275.47,89.16209 +571170,275.71,90.87132 +571171,275.93,92.6146 +571172,276.12,94.3944 +571173,274.18,89.12278 +571174,274.38,90.8475 +571175,274.57,92.6069 +571176,274.72,94.4039 +571177,272.89,89.08479 +571178,273.06,90.82409 +571179,273.2,92.5988 +571180,273.32,94.4119 +571181,271.59,89.04811 +571182,271.73,90.80109 +571183,271.84,92.5901 +571184,271.92,94.4185 +571185,270.3,89.01276 +571186,270.4,90.77851 +571187,270.47,92.581 +571188,270.52,94.4237 +571189,269.01,88.9788 +571190,269.07,90.75635 +571191,269.11,92.5714 +571192,269.12,94.4274 +571193,267.72,88.9461 +571194,267.74,90.73461 +571195,267.74,92.5612 +571196,267.72,94.4296 +571197,266.42,88.9148 +571198,266.41,90.7133 +571199,266.38,92.5505 +571200,266.31,94.4304 +571201,265.13,88.8848 +571202,265.09,90.69242 +571203,265.02,92.5394 +571204,264.91,94.4297 +571205,263.84,88.8562 +571206,263.76,90.67197 +571207,263.65,92.5276 +571208,263.51,94.4276 +571209,262.55,88.829 +571210,262.43,90.65195 +571211,262.29,92.5154 +571212,262.11,94.4239 +571213,261.25,88.8032 +571214,261.1,90.63236 +571215,260.92,92.5027 +571216,260.71,94.4187 +571217,259.96,88.7787 +571218,259.77,90.61321 +571219,259.56,92.4894 +571220,259.31,94.4121 +571221,258.67,88.7556 +571222,258.45,90.5945 +571223,258.19,92.4756 +571224,257.91,94.4039 +571225,257.38,88.7339 +571226,257.12,90.57622 +571227,256.83,92.4613 +571228,256.51,94.3942 +571229,256.08,88.7135 +571230,255.79,90.55839 +571231,255.47,92.4465 +571232,255.1,94.383 +571233,254.79,88.6946 +571234,254.46,90.54099 +571235,254.1,92.4311 +571236,253.7,94.3702 +571237,253.5,88.677 +571238,253.13,90.52403 +571239,252.74,92.4152 +571240,252.3,94.356 +571241,252.21,88.6608 +571242,251.81,90.50751 +571243,251.37,92.3988 +571244,250.9,94.3402 +571245,250.91,88.646 +571246,250.48,90.49143 +571247,250.01,92.3818 +571248,249.5,94.3229 +571249,249.62,88.6326 +571250,249.15,90.47579 +571251,248.65,92.3643 +571252,248.11,94.3041 +571253,248.33,88.6205 +571254,247.82,90.46058 +571255,247.28,92.3463 +571256,246.71,94.2837 +571257,247.03,88.6099 +571258,246.49,90.44581 +571259,245.92,92.3278 +571260,245.31,94.2618 +571261,245.74,88.6005 +571262,245.16,90.43148 +571263,244.56,92.3087 +571264,243.91,94.2384 +571265,244.44,88.5926 +571266,243.84,90.41759 +571267,243.2,92.2891 +571268,242.51,94.2135 +571269,243.15,88.586 +571270,242.51,90.40412 +571271,241.83,92.269 +571272,241.12,94.1871 +571273,241.85,88.5808 +571274,241.18,90.39109 +571275,240.47,92.2484 +571276,239.72,94.1592 +571277,240.55,88.5769 +571278,239.85,90.37848 +571279,239.11,92.2273 +571280,238.33,94.1298 +571281,239.26,88.5743 +571282,238.52,90.3663 +571283,237.75,92.2057 +571284,236.93,94.0988 +571285,237.96,88.5731 +571286,237.19,90.35454 +571287,236.38,92.1835 +571288,235.54,94.0664 +571289,236.66,88.5731 +571290,235.86,90.34321 +571291,235.02,92.1608 +571292,234.14,94.0326 +571293,235.36,88.5745 +571294,234.53,90.33229 +571295,233.66,92.1377 +571296,232.75,93.9972 +571297,234.07,88.5772 +571298,233.2,90.32179 +571299,232.3,92.114 +571300,231.36,93.9605 +571301,232.77,88.5812 +571302,231.87,90.31169 +571303,230.94,92.0898 +571304,229.97,93.9222 +571305,231.47,88.5865 +571306,230.54,90.30201 +571307,229.58,92.0652 +571308,228.58,93.8826 +571309,230.17,88.593 +571310,229.21,90.29272 +571311,228.22,92.04 +571312,227.19,93.8415 +571313,228.86,88.6008 +571314,227.88,90.28384 +571315,226.86,92.0144 +571316,225.8,93.799 +571317,227.56,88.6098 +571318,226.55,90.27535 +571319,225.5,91.9883 +571320,224.41,93.7551 +571321,226.26,88.62 +571322,225.22,90.26725 +571323,224.14,91.9617 +571324,223.02,93.7098 +571325,224.96,88.6315 +571326,223.89,90.25953 +571327,222.78,91.9347 +571328,221.63,93.6632 +571329,223.65,88.6441 +571330,222.56,90.2522 +571331,221.42,91.9072 +571332,220.25,93.6153 +571333,222.35,88.6579 +571334,221.22,90.24524 +571335,220.07,91.8792 +571336,218.86,93.566 +571337,221.04,88.6729 +571338,219.89,90.23864 +571339,218.71,91.8508 +571340,217.48,93.5154 +571341,219.73,88.6891 +571342,218.56,90.23242 +571343,217.35,91.8219 +571344,216.1,93.4635 +571345,218.43,88.7063 +571346,217.23,90.22655 +571347,215.99,91.7926 +571348,214.72,93.4103 +571349,217.12,88.7247 +571350,215.9,90.22103 +571351,214.64,91.7628 +571352,213.33,93.3559 +571353,215.81,88.7441 +571354,214.56,90.21585 +571355,213.28,91.7326 +571356,211.95,93.3002 +571357,214.5,88.7647 +571358,213.23,90.21102 +571359,211.92,91.702 +571360,210.58,93.2434 +571361,213.19,88.7863 +571362,211.9,90.20652 +571363,210.57,91.671 +571364,209.2,93.1853 +571365,211.87,88.8089 +571366,210.56,90.20234 +571367,209.21,91.6396 +571368,207.82,93.1261 +571369,210.56,88.8325 +571370,209.23,90.19848 +571371,207.86,91.6078 +571372,206.45,93.0657 +571373,209.25,88.8571 +571374,207.89,90.19494 +571375,206.5,91.5756 +571376,205.07,93.0042 +571377,207.93,88.8827 +571378,206.56,90.19169 +571379,205.15,91.543 +571380,203.7,92.9417 +571381,206.61,88.9092 +571382,205.22,90.18875 +571383,203.8,91.51 +571384,202.33,92.878 +571385,205.3,88.9367 +571386,203.89,90.18609 +571387,202.44,91.4767 +571388,200.96,92.8133 +571389,203.98,88.9651 +571390,202.55,90.18371 +571391,201.09,91.443 +571392,199.59,92.7476 +571393,202.66,88.9943 +571394,201.21,90.18161 +571395,199.74,91.409 +571396,198.22,92.6809 +571397,201.34,89.02439 +571398,199.88,90.17977 +571399,198.38,91.3746 +571400,196.85,92.6132 +571401,200.02,89.05531 +571402,198.54,90.17819 +571403,197.03,91.3399 +571404,195.49,92.5446 +571405,198.69,89.08704 +571406,197.2,90.17686 +571407,195.68,91.3049 +571408,194.12,92.4751 +571409,197.37,89.11954 +571410,195.87,90.17577 +571411,194.33,91.2695 +571412,192.76,92.4047 +571413,196.04,89.1528 +571414,194.53,90.1749 +571415,192.98,91.2339 +571416,191.4,92.3334 +571417,194.72,89.18678 +571418,193.19,90.17426 +571419,191.63,91.1979 +571420,190.03,92.2613 +571421,193.39,89.22147 +571422,191.85,90.17384 +571423,190.28,91.1617 +571424,188.67,92.1885 +571425,192.06,89.25683 +571426,190.51,90.17362 +571427,188.93,91.1252 +571428,187.32,92.1148 +571429,190.73,89.29284 +571430,189.17,90.17359 +571431,187.58,91.0884 +571432,185.96,92.0404 +571433,189.4,89.32947 +571434,187.83,90.17375 +571435,186.24,91.0513 +571436,184.6,91.9653 +571437,188.07,89.36669 +571438,186.49,90.17408 +571439,184.89,91.0141 +571440,183.25,91.8896 +571441,186.74,89.40448 +571442,185.15,90.17458 +571443,183.54,90.97653 +571444,181.9,91.8132 +571445,185.4,89.44281 +571446,183.81,90.17524 +571447,182.19,90.93879 +571448,180.54,91.7362 +571449,184.06,89.48164 +571450,182.47,90.17605 +571451,180.85,90.90082 +571452,179.19,91.6586 +571453,182.73,89.52096 +571454,181.13,90.17699 +571455,179.5,90.86265 +571456,177.84,91.5804 +571457,181.39,89.56073 +571458,179.79,90.17806 +571459,178.16,90.82428 +571460,176.5,91.5018 +571461,180.05,89.60091 +571462,178.44,90.17926 +571463,176.81,90.78573 +571464,175.15,91.4226 +571465,178.71,89.6415 +571466,177.1,90.18055 +571467,175.47,90.747 +571468,173.8,91.3431 +571469,177.37,89.68244 +571470,175.76,90.18195 +571471,174.12,90.70811 +571472,172.46,91.263 +571473,176.02,89.72372 +571474,174.41,90.18343 +571475,172.78,90.66907 +571476,171.12,91.1827 +571477,174.68,89.7653 +571478,173.07,90.18499 +571479,171.44,90.62989 +571480,169.78,91.1019 +571481,173.33,89.80716 +571482,171.73,90.18662 +571483,170.09,90.59057 +571484,168.44,91.0209 +571485,171.99,89.84925 +571486,170.38,90.18831 +571487,168.75,90.55113 +571488,167.1,90.93952 +571489,170.64,89.89157 +571490,169.04,90.19004 +571491,167.41,90.51158 +571492,165.76,90.85793 +571493,169.29,89.934059 +571494,167.69,90.19181 +571495,166.07,90.47194 +571496,164.43,90.77612 +571497,167.94,89.976705 +571498,166.34,90.1936 +571499,164.73,90.4322 +571500,163.09,90.69412 +571501,166.58,90.019472 +571502,165,90.19541 +571503,163.39,90.39239 +571504,161.76,90.61198 +571505,165.23,90.062329 +571506,163.65,90.19723 +571507,162.05,90.35251 +571508,160.43,90.52972 +571509,163.88,90.10525 +571510,162.3,90.19904 +571511,160.71,90.31258 +571512,159.09,90.44737 +571513,162.52,90.14819 +571514,160.96,90.20083 +571515,159.37,90.27261 +571516,157.76,90.36498 +571517,161.16,90.19114 +571518,159.61,90.2026 +571519,158.03,90.2326 +571520,156.44,90.28257 +571521,159.8,90.23405 +571522,158.26,90.20432 +571523,156.69,90.19257 +571524,155.11,90.20017 +571525,158.44,90.27689 +571526,156.91,90.20601 +571527,155.36,90.15253 +571528,153.78,90.11783 +571529,157.08,90.31965 +571530,155.56,90.20763 +571531,154.02,90.11248 +571532,152.46,90.035565 +571533,155.72,90.36227 +571534,154.21,90.20919 +571535,152.68,90.072455 +571536,151.14,89.95342 +571537,154.36,90.40474 +571538,152.86,90.21066 +571539,151.35,90.032446 +571540,149.82,89.87142 +571541,152.99,90.44703 +571542,151.51,90.21205 +571543,150.01,89.9924702 +571544,148.49,89.78961 +571545,151.63,90.48909 +571546,150.16,90.21334 +571547,148.68,89.952538 +571548,147.18,89.70801 +571549,150.26,90.53091 +571550,148.81,90.21451 +571551,147.34,89.91266 +571552,145.86,89.62666 +571553,148.89,90.57245 +571554,147.46,90.21557 +571555,146.01,89.87285 +571556,144.54,89.54558 +571557,147.52,90.61367 +571558,146.11,90.2165 +571559,144.67,89.83311 +571560,143.22,89.46482 +571561,146.15,90.65456 +571562,144.76,90.21728 +571563,143.34,89.79346 +571564,141.91,89.3844 +571565,144.78,90.69508 +571566,143.4,90.21792 +571567,142.01,89.7539 +571568,140.6,89.30435 +571569,143.41,90.7352 +571570,142.05,90.21839 +571571,140.68,89.71446 +571572,139.28,89.22471 +571573,142.04,90.77489 +571574,140.7,90.21869 +571575,139.34,89.67513 +571576,137.97,89.1455 +571577,140.66,90.81411 +571578,139.34,90.21882 +571579,138.01,89.63592 +571580,136.66,89.06676 +571581,139.29,90.85285 +571582,137.99,90.21875 +571583,136.68,89.59686 +571584,135.35,88.9885 +571585,137.91,90.89108 +571586,136.64,90.21848 +571587,135.35,89.55794 +571588,134.05,88.9108 +571589,136.53,90.92875 +571590,135.28,90.218 +571591,134.02,89.51918 +571592,132.74,88.8336 +571593,135.15,90.96585 +571594,133.93,90.2173 +571595,132.69,89.48059 +571596,131.43,88.7571 +571597,133.77,91.0023 +571598,132.57,90.21637 +571599,131.36,89.44218 +571600,130.13,88.6811 +571601,132.39,91.0382 +571602,131.22,90.2152 +571603,130.03,89.40396 +571604,128.82,88.6058 +571605,131.01,91.0734 +571606,129.86,90.21378 +571607,128.7,89.36593 +571608,127.52,88.5312 +571609,129.63,91.1079 +571610,128.51,90.21211 +571611,127.37,89.3281 +571612,126.22,88.4572 +571613,128.24,91.1417 +571614,127.15,90.21017 +571615,126.04,89.2905 +571616,124.92,88.384 +571617,126.86,91.1748 +571618,125.79,90.20795 +571619,124.71,89.25311 +571620,123.62,88.3115 +571621,125.47,91.207 +571622,124.44,90.20545 +571623,123.39,89.21596 +571624,122.32,88.2398 +571625,124.09,91.2385 +571626,123.08,90.20266 +571627,122.06,89.17905 +571628,121.02,88.1689 +571629,122.7,91.2692 +571630,121.72,90.19957 +571631,120.73,89.1424 +571632,119.72,88.0989 +571633,121.31,91.299 +571634,120.37,90.19617 +571635,119.41,89.106 +571636,118.43,88.0297 +571637,119.92,91.3279 +571638,119.01,90.19245 +571639,118.08,89.06987 +571640,117.13,87.9614 +571641,118.53,91.356 +571642,117.65,90.1884 +571643,116.75,89.03402 +571644,115.84,87.8939 +571645,117.14,91.3831 +571646,116.29,90.18402 +571647,115.43,88.9984 +571648,114.54,87.8275 +571649,115.75,91.4093 +571650,114.93,90.1793 +571651,114.1,88.9632 +571652,113.25,87.7619 +571653,114.36,91.4345 +571654,113.58,90.17423 +571655,112.78,88.9282 +571656,111.96,87.6973 +571657,112.96,91.4587 +571658,112.22,90.1688 +571659,111.45,88.8935 +571660,110.67,87.6338 +571661,111.57,91.4819 +571662,110.86,90.163 +571663,110.13,88.8592 +571664,109.37,87.5712 +571665,110.18,91.5041 +571666,109.5,90.15684 +571667,108.8,88.8251 +571668,108.08,87.5097 +571669,108.78,91.5251 +571670,108.14,90.1503 +571671,107.48,88.7914 +571672,106.79,87.4492 +571673,107.39,91.5452 +571674,106.78,90.14337 +571675,106.15,88.7581 +571676,105.51,87.3898 +571677,105.99,91.5641 +571678,105.42,90.13605 +571679,104.83,88.725 +571680,104.22,87.3315 +571681,104.6,91.5819 +571682,104.06,90.12834 +571683,103.51,88.6923 +571684,102.93,87.2743 +571685,103.2,91.5985 +571686,102.7,90.12022 +571687,102.18,88.66 +571688,101.64,87.2183 +571689,101.8,91.614 +571690,101.34,90.11169 +571691,100.86,88.6281 +571692,100.35,87.1634 +571693,100.41,91.6283 +571694,99.983,90.10274 +571695,99.536,88.5965 +571696,99.066,87.1096 +571697,99.008,91.6414 +571698,98.623,90.093373 +571699,98.213,88.5652 +571700,97.78,87.057 +571701,97.61,91.6533 +571702,97.263,90.083578 +571703,96.891,88.5344 +571704,96.494,87.0056 +571705,96.211,91.664 +571706,95.903,90.073352 +571707,95.568,88.5039 +571708,95.209,86.9555 +571709,94.812,91.6734 +571710,94.542,90.062688 +571711,94.246,88.4738 +571712,93.923,86.9065 +571713,93.413,91.6816 +571714,93.182,90.051583 +571715,92.923,88.4442 +571716,92.639,86.8588 +571717,92.014,91.6885 +571718,91.822,90.040031 +571719,91.601,88.4149 +571720,91.354,86.8123 +571721,90.615,91.6941 +571722,90.461,90.028029 +571723,90.279,88.386 +571724,90.07,86.7671 +571725,89.215,91.6984 +571726,89.101,90.015572 +571727,88.957,88.3575 +571728,88.786,86.7232 +571729,87.815,91.7013 +571730,87.741,90.0026562 +571731,87.635,88.3294 +571732,87.502,86.6805 +571733,86.415,91.703 +571734,86.38,89.989278 +571735,86.314,88.3017 +571736,86.218,86.6392 +571737,85.015,91.7033 +571738,85.02,89.975434 +571739,84.992,88.2745 +571740,84.935,86.5991 +571741,83.615,91.7022 +571742,83.659,89.961122 +571743,83.67,88.2477 +571744,83.651,86.5603 +571745,82.215,91.6998 +571746,82.299,89.946337 +571747,82.349,88.2213 +571748,82.368,86.5229 +571749,80.815,91.696 +571750,80.939,89.931078 +571751,81.027,88.1953 +571752,81.085,86.4868 +571753,79.415,91.6908 +571754,79.578,89.915342 +571755,79.706,88.1697 +571756,79.802,86.452 +571757,78.015,91.6842 +571758,78.218,89.89913 +571759,78.385,88.1446 +571760,78.518,86.4185 +571761,76.615,91.6763 +571762,76.858,89.88243 +571763,77.063,88.1199 +571764,77.235,86.3864 +571765,75.215,91.6669 +571766,75.498,89.86525 +571767,75.742,88.0956 +571768,75.952,86.3556 +571769,73.816,91.6561 +571770,74.138,89.84758 +571771,74.42,88.0718 +571772,74.669,86.3262 +571773,72.416,91.6439 +571774,72.778,89.82943 +571775,73.099,88.0484 +571776,73.385,86.2981 +571777,71.017,91.6303 +571778,71.418,89.81079 +571779,71.778,88.0254 +571780,72.102,86.2714 +571781,69.618,91.6152 +571782,70.058,89.79167 +571783,70.456,88.0029 +571784,70.818,86.246 +571785,68.22,91.5988 +571786,68.698,89.77205 +571787,69.135,87.9808 +571788,69.534,86.222 +571789,66.822,91.5809 +571790,67.339,89.75195 +571791,67.813,87.9592 +571792,68.25,86.1993 +571793,65.424,91.5616 +571794,65.98,89.73135 +571795,66.492,87.938 +571796,66.965,86.178 +571797,64.026,91.5408 +571798,64.621,89.71027 +571799,65.17,87.9172 +571800,65.68,86.158 +571801,62.629,91.5186 +571802,63.262,89.6887 +571803,63.848,87.8969 +571804,64.395,86.1394 +571805,61.233,91.495 +571806,61.903,89.66664 +571807,62.526,87.877 +571808,63.11,86.1222 +571809,59.837,91.4699 +571810,60.544,89.6441 +571811,61.204,87.8575 +571812,61.824,86.1062 +571813,58.441,91.4434 +571814,59.186,89.62107 +571815,59.882,87.8385 +571816,60.538,86.0917 +571817,57.046,91.4155 +571818,57.827,89.59755 +571819,58.56,87.8199 +571820,59.251,86.0784 +571821,55.652,91.3862 +571822,56.469,89.57355 +571823,57.238,87.8018 +571824,57.964,86.0665 +571825,54.258,91.3555 +571826,55.112,89.54907 +571827,55.915,87.784 +571828,56.677,86.0559 +571829,52.865,91.3233 +571830,53.754,89.52411 +571831,54.593,87.7667 +571832,55.389,86.0466 +571833,51.473,91.2897 +571834,52.397,89.49867 +571835,53.27,87.7499 +571836,54.1,86.0387 +571837,50.081,91.2548 +571838,51.04,89.47276 +571839,51.947,87.7334 +571840,52.811,86.032 +571841,48.69,91.2184 +571842,49.683,89.44638 +571843,50.624,87.7174 +571844,51.521,86.0266 +571845,47.3,91.1807 +571846,48.326,89.41953 +571847,49.301,87.7018 +571848,50.231,86.0225 +571849,45.91,91.1416 +571850,46.97,89.39222 +571851,47.977,87.6866 +571852,48.94,86.0197 +571853,44.522,91.1011 +571854,45.614,89.36444 +571855,46.654,87.6718 +571856,47.648,86.0182 +571857,43.134,91.0593 +571858,44.259,89.33621 +571859,45.33,87.6574 +571860,46.356,86.0179 +571861,41.747,91.0161 +571862,42.903,89.30752 +571863,44.006,87.6434 +571864,45.063,86.0188 +571865,40.361,90.97163 +571866,41.548,89.27838 +571867,42.682,87.6298 +571868,43.769,86.0209 +571869,38.976,90.92582 +571870,40.194,89.24879 +571871,41.357,87.6167 +571872,42.474,86.0243 +571873,37.591,90.8787 +571874,38.839,89.21877 +571875,40.032,87.6039 +571876,41.179,86.0289 +571877,36.208,90.83029 +571878,37.485,89.18831 +571879,38.707,87.5915 +571880,39.883,86.0346 +571881,34.826,90.78061 +571882,36.132,89.15742 +571883,37.382,87.5795 +571884,38.585,86.0416 +571885,33.445,90.72967 +571886,34.778,89.1261 +571887,36.056,87.5678 +571888,37.288,86.0496 +571889,32.065,90.67748 +571890,33.425,89.09436 +571891,34.73,87.5565 +571892,35.989,86.0588 +571893,30.685,90.62407 +571894,32.073,89.06221 +571895,33.404,87.5456 +571896,34.689,86.0692 +571897,29.307,90.56945 +571898,30.72,89.02965 +571899,32.078,87.5351 +571900,33.388,86.0806 +571901,27.93,90.51364 +571902,29.369,88.9967 +571903,30.751,87.5249 +571904,32.087,86.0931 +571905,26.555,90.45666 +571906,28.017,88.9633 +571907,29.424,87.5151 +571908,30.784,86.1067 +571909,25.18,90.39852 +571910,26.666,88.9296 +571911,28.097,87.5055 +571912,29.48,86.1214 +571913,23.806,90.33925 +571914,25.316,88.8954 +571915,26.769,87.4964 +571916,28.176,86.137 +571917,22.434,90.27887 +571918,23.965,88.8609 +571919,25.441,87.4875 +571920,26.87,86.1537 +571921,21.063,90.2174 +571922,22.616,88.8261 +571923,24.113,87.479 +571924,25.564,86.1714 +571925,19.693,90.15486 +571926,21.266,88.7908 +571927,22.784,87.4708 +571928,24.256,86.19 +571929,18.324,90.091278 +571930,19.917,88.7552 +571931,21.456,87.4629 +571932,22.947,86.2096 +571933,16.957,90.02667 +571934,18.569,88.7193 +571935,20.126,87.4554 +571936,21.637,86.2301 +571937,15.591,89.961063 +571938,17.221,88.683 +571939,18.797,87.4481 +571940,20.326,86.2515 +571941,14.226,89.89448 +571942,15.873,88.6464 +571943,17.467,87.441 +571944,19.014,86.2738 +571945,12.862,89.82695 +571946,14.526,88.6095 +571947,16.136,87.4343 +571948,17.7,86.297 +571949,11.5,89.75849 +571950,13.179,88.5722 +571951,14.806,87.4279 +571952,16.386,86.3209 +571953,10.139,89.68913 +571954,11.833,88.5347 +571955,13.474,87.4217 +571956,15.07,86.3457 +571957,8.7794,89.6189 +571958,10.487,88.4968 +571959,12.143,87.4157 +571960,13.753,86.3713 +571961,7.421,89.54782 +571962,9.1419,88.4587 +571963,10.811,87.41 +571964,12.435,86.3976 +571965,6.0641,89.47592 +571966,7.7971,88.4202 +571967,9.4789,87.4045 +571968,11.116,86.4247 +571969,4.7085,89.40323 +571970,6.4527,88.3816 +571971,8.1463,87.3993 +571972,9.7956,86.4525 +571973,3.3543,89.32977 +571974,5.1088,88.3426 +571975,6.8133,87.3943 +571976,8.4738,86.481 +571977,2.0014,89.25557 +571978,3.7654,88.3034 +571979,5.4799,87.3895 +571980,7.1508,86.5101 +571981,0.64996,89.18067 +571982,2.4224,88.2639 +571983,4.1461,87.3849 +571984,5.8265,86.5399 +571985,359.3,89.10509 +571986,1.08,88.2242 +571987,2.8119,87.3805 +571988,4.501,86.5702 +571989,357.95,89.02886 +571990,359.74,88.1843 +571991,1.4773,87.3763 +571992,3.1742,86.6012 +571993,356.6,88.952 +571994,358.4,88.1442 +571995,0.14231,87.3723 +571996,1.8461,86.6327 +571997,355.26,88.8746 +571998,357.06,88.1039 +571999,358.81,87.3684 +572000,0.51672,86.6647 +572001,353.91,88.7966 +572002,355.72,88.0633 +572003,357.47,87.3647 +572004,359.19,86.6973 +572005,352.57,88.718 +572006,354.38,88.0226 +572007,356.13,87.3611 +572008,357.85,86.7303 +572009,351.23,88.639 +572010,353.04,87.9817 +572011,354.8,87.3577 +572012,356.52,86.7637 +572013,349.89,88.5595 +572014,351.7,87.9407 +572015,353.46,87.3544 +572016,355.19,86.7975 +572017,348.55,88.4796 +572018,350.36,87.8995 +572019,352.12,87.3512 +572020,353.85,86.8318 +572021,347.21,88.3992 +572022,349.02,87.8581 +572023,350.79,87.3481 +572024,352.51,86.8664 +572025,345.88,88.3185 +572026,347.68,87.8166 +572027,349.45,87.3451 +572028,351.17,86.9013 +572029,344.54,88.2375 +572030,346.35,87.775 +572031,348.11,87.3422 +572032,349.83,86.9365 +572033,343.21,88.1561 +572034,345.01,87.7333 +572035,346.77,87.3394 +572036,348.49,86.972 +572037,341.88,88.0744 +572038,343.67,87.6914 +572039,345.43,87.3367 +572040,347.15,87.0077 +572041,340.55,87.9926 +572042,342.34,87.6495 +572043,344.09,87.334 +572044,345.81,87.0437 +572045,339.22,87.9105 +572046,341,87.6075 +572047,342.75,87.3314 +572048,344.46,87.0798 +572049,337.89,87.8282 +572050,339.67,87.5654 +572051,341.41,87.3288 +572052,343.12,87.1161 +572053,336.56,87.7457 +572054,338.33,87.5233 +572055,340.07,87.3263 +572056,341.77,87.1525 +572057,335.24,87.6632 +572058,337,87.4811 +572059,338.73,87.3237 +572060,340.42,87.1889 +572061,333.92,87.5805 +572062,335.67,87.4388 +572063,337.38,87.3212 +572064,339.07,87.2255 +572065,332.6,87.4979 +572066,334.34,87.3966 +572067,336.04,87.3187 +572068,337.72,87.2621 +572069,331.27,87.4151 +572070,333,87.3543 +572071,334.7,87.3161 +572072,336.36,87.2987 +572073,329.96,87.3324 +572074,331.67,87.312 +572075,333.36,87.3136 +572076,335.01,87.3352 +572077,328.64,87.2498 +572078,330.34,87.2697 +572079,332.01,87.311 +572080,333.65,87.3717 +572081,327.32,87.1672 +572082,329.01,87.2274 +572083,330.67,87.3084 +572084,332.3,87.4082 +572085,326.01,87.0848 +572086,327.68,87.1851 +572087,329.32,87.3057 +572088,330.94,87.4445 +572089,324.69,87.0024 +572090,326.35,87.1429 +572091,327.98,87.3029 +572092,329.58,87.4806 +572093,323.38,86.9203 +572094,325.02,87.1007 +572095,326.63,87.3001 +572096,328.22,87.5166 +572097,322.07,86.8383 +572098,323.69,87.0586 +572099,325.29,87.2972 +572100,326.86,87.5524 +572101,320.76,86.7566 +572102,322.36,87.0165 +572103,323.94,87.2942 +572104,325.49,87.5879 +572105,319.45,86.6752 +572106,321.04,86.9745 +572107,322.6,87.2912 +572108,324.13,87.6232 +572109,318.14,86.594 +572110,319.71,86.9326 +572111,321.25,87.288 +572112,322.76,87.6582 +572113,316.84,86.5132 +572114,318.38,86.8908 +572115,319.9,87.2846 +572116,321.39,87.6929 +572117,315.53,86.4328 +572118,317.06,86.8491 +572119,318.55,87.2812 +572120,320.03,87.7273 +572121,314.23,86.3527 +572122,315.73,86.8075 +572123,317.21,87.2776 +572124,318.66,87.7612 +572125,312.92,86.273 +572126,314.4,86.7661 +572127,315.86,87.2739 +572128,317.29,87.7948 +572129,311.62,86.1938 +572130,313.08,86.7247 +572131,314.51,87.27 +572132,315.92,87.8279 +572133,310.32,86.1151 +572134,311.75,86.6836 +572135,313.16,87.2659 +572136,314.54,87.8605 +572137,309.02,86.0369 +572138,310.43,86.6425 +572139,311.81,87.2617 +572140,313.17,87.8927 +572141,307.73,85.9593 +572142,309.11,86.6017 +572143,310.46,87.2573 +572144,311.79,87.9244 +572145,306.43,85.8822 +572146,307.78,86.561 +572147,309.11,87.2526 +572148,310.42,87.9555 +572149,305.13,85.8057 +572150,306.46,86.5205 +572151,307.76,87.2478 +572152,309.04,87.986 +572153,303.84,85.7298 +572154,305.14,86.4802 +572155,306.41,87.2428 +572156,307.66,88.016 +572157,302.55,85.6545 +572158,303.81,86.44 +572159,305.06,87.2375 +572160,306.28,88.0453 +572161,301.25,85.58 +572162,302.49,86.4001 +572163,303.71,87.232 +572164,304.9,88.0739 +572165,299.96,85.5061 +572166,301.17,86.3605 +572167,302.36,87.2263 +572168,303.52,88.1019 +572169,298.67,85.433 +572170,299.85,86.321 +572171,301.01,87.2203 +572172,302.14,88.1292 +572173,297.38,85.3607 +572174,298.53,86.2818 +572175,299.65,87.214 +572176,300.76,88.1558 +572177,296.09,85.2891 +572178,297.21,86.2428 +572179,298.3,87.2075 +572180,299.37,88.1816 +572181,294.8,85.2183 +572182,295.89,86.2041 +572183,296.95,87.2008 +572184,297.99,88.2066 +572185,293.52,85.1484 +572186,294.57,86.1657 +572187,295.6,87.1937 +572188,296.6,88.2309 +572189,292.23,85.0793 +572190,293.25,86.1275 +572191,294.24,87.1863 +572192,295.22,88.2543 +572193,290.95,85.0111 +572194,291.93,86.0896 +572195,292.89,87.1787 +572196,293.83,88.2769 +572197,289.66,84.9438 +572198,290.61,86.052 +572199,291.54,87.1707 +572200,292.44,88.2986 +572201,288.38,84.8774 +572202,289.29,86.0146 +572203,290.18,87.1625 +572204,291.05,88.3194 +572205,287.09,84.812 +572206,287.97,85.9776 +572207,288.83,87.1539 +572208,289.66,88.3393 +572209,285.81,84.7475 +572210,286.65,85.9409 +572211,287.48,87.145 +572212,288.27,88.3582 +572213,284.53,84.684 +572214,285.34,85.9045 +572215,286.12,87.1357 +572216,286.88,88.3762 +572217,283.25,84.6216 +572218,284.02,85.8684 +572219,284.77,87.1261 +572220,285.49,88.3933 +572221,281.97,84.5601 +572222,282.7,85.8327 +572223,283.41,87.1162 +572224,284.1,88.4093 +572225,280.69,84.4997 +572226,281.39,85.7973 +572227,282.06,87.1059 +572228,282.71,88.4243 +572229,279.41,84.4404 +572230,280.07,85.7622 +572231,280.7,87.0953 +572232,281.31,88.4383 +572233,278.13,84.3822 +572234,278.75,85.7275 +572235,279.35,87.0842 +572236,279.92,88.4512 +572237,276.85,84.325 +572238,277.44,85.6931 +572239,277.99,87.0729 +572240,278.52,88.463 +572241,275.58,84.269 +572242,276.12,85.6591 +572243,276.64,87.0611 +572244,277.13,88.4738 +572245,274.3,84.2141 +572246,274.8,85.6255 +572247,275.28,87.0489 +572248,275.73,88.4834 +572249,273.02,84.1604 +572250,273.49,85.5922 +572251,273.93,87.0364 +572252,274.34,88.492 +572253,271.75,84.1078 +572254,272.17,85.5593 +572255,272.57,87.0235 +572256,272.94,88.4993 +572257,270.47,84.0564 +572258,270.86,85.5268 +572259,271.21,87.0101 +572260,271.55,88.5056 +572261,269.19,84.0062 +572262,269.54,85.4947 +572263,269.86,86.9964 +572264,270.15,88.5106 +572265,267.92,83.9572 +572266,268.23,85.463 +572267,268.5,86.9823 +572268,268.75,88.5145 +572269,266.64,83.9095 +572270,266.91,85.4316 +572271,267.15,86.9677 +572272,267.35,88.5171 +572273,265.37,83.8629 +572274,265.6,85.4007 +572275,265.79,86.9528 +572276,265.96,88.5186 +572277,264.1,83.8176 +572278,264.28,85.3702 +572279,264.43,86.9374 +572280,264.56,88.5188 +572281,262.82,83.7735 +572282,262.97,85.34 +572283,263.08,86.9216 +572284,263.16,88.5178 +572285,261.55,83.7308 +572286,261.65,85.3103 +572287,261.72,86.9053 +572288,261.76,88.5156 +572289,260.27,83.6892 +572290,260.34,85.281 +572291,260.37,86.8887 +572292,260.36,88.5121 +572293,259,83.649 +572294,259.02,85.2521 +572295,259.01,86.8716 +572296,258.97,88.5073 +572297,257.73,83.61 +572298,257.71,85.2237 +572299,257.65,86.854 +572300,257.57,88.5012 +572301,256.45,83.5723 +572302,256.39,85.1956 +572303,256.3,86.836 +572304,256.17,88.4939 +572305,255.18,83.536 +572306,255.08,85.168 +572307,254.94,86.8176 +572308,254.77,88.4852 +572309,253.91,83.5009 +572310,253.76,85.1408 +572311,253.59,86.7988 +572312,253.37,88.4753 +572313,252.63,83.4671 +572314,252.45,85.114 +572315,252.23,86.7795 +572316,251.98,88.464 +572317,251.36,83.4347 +572318,251.13,85.0877 +572319,250.88,86.7597 +572320,250.58,88.4515 +572321,250.09,83.4035 +572322,249.82,85.0618 +572323,249.52,86.7395 +572324,249.18,88.4376 +572325,248.81,83.3737 +572326,248.51,85.0363 +572327,248.16,86.7189 +572328,247.78,88.4224 +572329,247.54,83.3452 +572330,247.19,85.0112 +572331,246.81,86.6978 +572332,246.38,88.4058 +572333,246.26,83.318 +572334,245.88,84.9866 +572335,245.45,86.6762 +572336,244.99,88.3879 +572337,244.99,83.2921 +572338,244.56,84.9625 +572339,244.1,86.6542 +572340,243.59,88.3687 +572341,243.71,83.2676 +572342,243.25,84.9387 +572343,242.74,86.6318 +572344,242.19,88.3482 +572345,242.44,83.2444 +572346,241.93,84.9154 +572347,241.39,86.6089 +572348,240.8,88.3263 +572349,241.16,83.2225 +572350,240.62,84.8925 +572351,240.03,86.5855 +572352,239.4,88.303 +572353,239.89,83.2019 +572354,239.3,84.8701 +572355,238.68,86.5617 +572356,238.01,88.2785 +572357,238.61,83.1826 +572358,237.99,84.8481 +572359,237.32,86.5374 +572360,236.61,88.2526 +572361,237.34,83.1647 +572362,236.67,84.8265 +572363,235.97,86.5127 +572364,235.22,88.2253 +572365,236.06,83.148 +572366,235.36,84.8053 +572367,234.62,86.4875 +572368,233.82,88.1967 +572369,234.78,83.1326 +572370,234.04,84.7846 +572371,233.26,86.4619 +572372,232.43,88.1668 +572373,233.5,83.1186 +572374,232.73,84.7643 +572375,231.91,86.4359 +572376,231.04,88.1356 +572377,232.22,83.1058 +572378,231.41,84.7445 +572379,230.56,86.4094 +572380,229.65,88.103 +572381,230.95,83.0943 +572382,230.1,84.725 +572383,229.2,86.3824 +572384,228.26,88.0691 +572385,229.67,83.0841 +572386,228.78,84.706 +572387,227.85,86.3551 +572388,226.87,88.0339 +572389,228.39,83.0751 +572390,227.46,84.6874 +572391,226.5,86.3272 +572392,225.48,87.9974 +572393,227.1,83.0675 +572394,226.15,84.6692 +572395,225.14,86.299 +572396,224.09,87.9595 +572397,225.82,83.061 +572398,224.83,84.6515 +572399,223.79,86.2703 +572400,222.7,87.9204 +572401,224.54,83.0558 +572402,223.51,84.6341 +572403,222.44,86.2412 +572404,221.31,87.88 +572405,223.26,83.0518 +572406,222.2,84.6172 +572407,221.09,86.2116 +572408,219.92,87.8384 +572409,221.97,83.049 +572410,220.88,84.6006 +572411,219.74,86.1817 +572412,218.54,87.7954 +572413,220.69,83.0475 +572414,219.56,84.5845 +572415,218.39,86.1513 +572416,217.15,87.7513 +572417,219.4,83.0471 +572418,218.25,84.5687 +572419,217.04,86.1205 +572420,215.77,87.7058 +572421,218.12,83.0479 +572422,216.93,84.5533 +572423,215.69,86.0893 +572424,214.39,87.6592 +572425,216.83,83.0499 +572426,215.61,84.5384 +572427,214.34,86.0577 +572428,213,87.6113 +572429,215.54,83.053 +572430,214.29,84.5238 +572431,212.99,86.0257 +572432,211.62,87.5622 +572433,214.25,83.0572 +572434,212.97,84.5096 +572435,211.64,85.9932 +572436,210.24,87.5119 +572437,212.97,83.0626 +572438,211.65,84.4957 +572439,210.29,85.9604 +572440,208.87,87.4604 +572441,211.67,83.069 +572442,210.33,84.4822 +572443,208.94,85.9273 +572444,207.49,87.4078 +572445,210.38,83.0766 +572446,209.01,84.4691 +572447,207.59,85.8937 +572448,206.11,87.354 +572449,209.09,83.0852 +572450,207.69,84.4564 +572451,206.25,85.8597 +572452,204.74,87.2991 +572453,207.8,83.0949 +572454,206.37,84.444 +572455,204.9,85.8254 +572456,203.36,87.2431 +572457,206.5,83.1056 +572458,205.05,84.4319 +572459,203.55,85.7908 +572460,201.99,87.186 +572461,205.21,83.1173 +572462,203.73,84.4202 +572463,202.21,85.7557 +572464,200.62,87.1278 +572465,203.91,83.13 +572466,202.41,84.4088 +572467,200.86,85.7203 +572468,199.24,87.0685 +572469,202.61,83.1437 +572470,201.09,84.3977 +572471,199.51,85.6846 +572472,197.88,87.0082 +572473,201.31,83.1583 +572474,199.77,84.387 +572475,198.17,85.6485 +572476,196.51,86.9469 +572477,200.01,83.1739 +572478,198.45,84.3766 +572479,196.83,85.6122 +572480,195.14,86.8846 +572481,198.71,83.1904 +572482,197.12,84.3664 +572483,195.48,85.5754 +572484,193.77,86.8213 +572485,197.41,83.2077 +572486,195.8,84.3566 +572487,194.14,85.5384 +572488,192.41,86.7571 +572489,196.11,83.226 +572490,194.48,84.3471 +572491,192.79,85.5011 +572492,191.05,86.6919 +572493,194.8,83.245 +572494,193.15,84.3378 +572495,191.45,85.4634 +572496,189.69,86.6258 +572497,193.49,83.265 +572498,191.83,84.3288 +572499,190.11,85.4255 +572500,188.32,86.5588 +572501,192.19,83.2857 +572502,190.5,84.3201 +572503,188.77,85.3873 +572504,186.97,86.491 +572505,190.88,83.3071 +572506,189.18,84.3117 +572507,187.43,85.3488 +572508,185.61,86.4223 +572509,189.57,83.3294 +572510,187.85,84.3035 +572511,186.09,85.31 +572512,184.25,86.3528 +572513,188.26,83.3524 +572514,186.53,84.2955 +572515,184.74,85.271 +572516,182.9,86.2825 +572517,186.95,83.376 +572518,185.2,84.2878 +572519,183.41,85.2317 +572520,181.54,86.2114 +572521,185.63,83.4004 +572522,183.88,84.2803 +572523,182.07,85.1922 +572524,180.19,86.1396 +572525,184.32,83.4254 +572526,182.55,84.2731 +572527,180.73,85.1524 +572528,178.84,86.0671 +572529,183,83.451 +572530,181.22,84.266 +572531,179.39,85.1124 +572532,177.49,85.9939 +572533,181.68,83.4772 +572534,179.89,84.2591 +572535,178.05,85.0722 +572536,176.15,85.92 +572537,180.36,83.504 +572538,178.57,84.2525 +572539,176.71,85.0318 +572540,174.8,85.8455 +572541,179.04,83.5314 +572542,177.24,84.246 +572543,175.38,84.9912 +572544,173.46,85.7704 +572545,177.72,83.5593 +572546,175.91,84.2397 +572547,174.04,84.9504 +572548,172.11,85.6948 +572549,176.4,83.5877 +572550,174.58,84.2336 +572551,172.7,84.9094 +572552,170.77,85.6185 +572553,175.08,83.6165 +572554,173.25,84.2276 +572555,171.37,84.8682 +572556,169.43,85.5418 +572557,173.75,83.6458 +572558,171.92,84.2218 +572559,170.03,84.8269 +572560,168.09,85.4645 +572561,172.42,83.6755 +572562,170.59,84.2161 +572563,168.7,84.7855 +572564,166.76,85.3868 +572565,171.09,83.7056 +572566,169.26,84.2105 +572567,167.37,84.7438 +572568,165.42,85.3087 +572569,169.76,83.736 +572570,167.92,84.2051 +572571,166.03,84.7021 +572572,164.09,85.2302 +572573,168.43,83.7668 +572574,166.59,84.1998 +572575,164.7,84.6602 +572576,162.75,85.1513 +572577,167.1,83.7979 +572578,165.26,84.1946 +572579,163.37,84.6183 +572580,161.42,85.072 +572581,165.77,83.8292 +572582,163.93,84.1894 +572583,162.04,84.5762 +572584,160.09,84.9925 +572585,164.43,83.8608 +572586,162.59,84.1844 +572587,160.71,84.534 +572588,158.77,84.9126 +572589,163.09,83.8926 +572590,161.26,84.1794 +572591,159.38,84.4917 +572592,157.44,84.8325 +572593,161.76,83.9246 +572594,159.92,84.1745 +572595,158.05,84.4494 +572596,156.11,84.7522 +572597,160.42,83.9568 +572598,158.59,84.1696 +572599,156.72,84.407 +572600,154.79,84.6717 +572601,159.07,83.9891 +572602,157.25,84.1648 +572603,155.39,84.3646 +572604,153.47,84.591 +572605,157.73,84.0215 +572606,155.92,84.1601 +572607,154.06,84.3221 +572608,152.15,84.5102 +572609,156.39,84.054 +572610,154.58,84.1553 +572611,152.73,84.2795 +572612,150.83,84.4294 +572613,155.04,84.0865 +572614,153.25,84.1506 +572615,151.4,84.237 +572616,149.51,84.3484 +572617,153.7,84.1191 +572618,151.91,84.1458 +572619,150.08,84.1944 +572620,148.2,84.2674 +572621,152.35,84.1516 +572622,150.57,84.1411 +572623,148.75,84.1519 +572624,146.88,84.1864 +572625,151,84.1841 +572626,149.23,84.1363 +572627,147.42,84.1093 +572628,145.57,84.1055 +572629,149.65,84.2165 +572630,147.89,84.1316 +572631,146.1,84.0668 +572632,144.26,84.0245 +572633,148.3,84.2488 +572634,146.56,84.1268 +572635,144.77,84.0243 +572636,142.95,83.9437 +572637,146.94,84.281 +572638,145.22,84.1219 +572639,143.45,83.9818 +572640,141.64,83.863 +572641,145.59,84.313 +572642,143.88,84.117 +572643,142.13,83.9394 +572644,140.33,83.7825 +572645,144.23,84.3449 +572646,142.54,84.112 +572647,140.8,83.897 +572648,139.02,83.7021 +572649,142.87,84.3765 +572650,141.2,84.107 +572651,139.48,83.8547 +572652,137.72,83.622 +572653,141.52,84.408 +572654,139.86,84.1019 +572655,138.16,83.8125 +572656,136.42,83.542 +572657,140.16,84.4391 +572658,138.51,84.0966 +572659,136.83,83.7703 +572660,135.11,83.4624 +572661,138.79,84.4699 +572662,137.17,84.0913 +572663,135.51,83.7283 +572664,133.81,83.3831 +572665,137.43,84.5005 +572666,135.83,84.0859 +572667,134.19,83.6864 +572668,132.51,83.3041 +572669,136.07,84.5306 +572670,134.49,84.0803 +572671,132.87,83.6446 +572672,131.22,83.2254 +572673,134.7,84.5604 +572674,133.15,84.0747 +572675,131.55,83.6029 +572676,129.92,83.1472 +572677,133.34,84.5898 +572678,131.8,84.0689 +572679,130.23,83.5613 +572680,128.63,83.0693 +572681,131.97,84.6188 +572682,130.46,84.0629 +572683,128.91,83.5199 +572684,127.33,82.992 +572685,130.6,84.6473 +572686,129.11,84.0568 +572687,127.59,83.4787 +572688,126.04,82.915 +572689,129.23,84.6753 +572690,127.77,84.0505 +572691,126.28,83.4376 +572692,124.75,82.8387 +572693,127.86,84.7028 +572694,126.43,84.044 +572695,124.96,83.3967 +572696,123.46,82.7628 +572697,126.49,84.7298 +572698,125.08,84.0374 +572699,123.64,83.356 +572700,122.17,82.6875 +572701,125.11,84.7562 +572702,123.74,84.0306 +572703,122.32,83.3154 +572704,120.88,82.6128 +572705,123.74,84.7821 +572706,122.39,84.0235 +572707,121.01,83.2751 +572708,119.59,82.5387 +572709,122.36,84.8073 +572710,121.04,84.0163 +572711,119.69,83.235 +572712,118.31,82.4652 +572713,120.99,84.8319 +572714,119.7,84.0088 +572715,118.38,83.1951 +572716,117.02,82.3925 +572717,119.61,84.8558 +572718,118.35,84.0012 +572719,117.06,83.1554 +572720,115.74,82.3204 +572721,118.23,84.879 +572722,117,83.9932 +572723,115.74,83.1159 +572724,114.46,82.249 +572725,116.85,84.9016 +572726,115.66,83.9851 +572727,114.43,83.0767 +572728,113.17,82.1784 +572729,115.47,84.9234 +572730,114.31,83.9767 +572731,113.12,83.0378 +572732,111.89,82.1086 +572733,114.09,84.9444 +572734,112.96,83.968 +572735,111.8,82.9991 +572736,110.61,82.0395 +572737,112.71,84.9647 +572738,111.61,83.9591 +572739,110.49,82.9607 +572740,109.33,81.9713 +572741,111.32,84.9842 +572742,110.26,83.9499 +572743,109.17,82.9225 +572744,108.06,81.9039 +572745,109.94,85.0028 +572746,108.91,83.9404 +572747,107.86,82.8847 +572748,106.78,81.8374 +572749,108.55,85.0206 +572750,107.57,83.9306 +572751,106.55,82.8471 +572752,105.5,81.7718 +572753,107.17,85.0376 +572754,106.22,83.9206 +572755,105.24,82.8098 +572756,104.23,81.707 +572757,105.78,85.0536 +572758,104.87,83.9102 +572759,103.92,82.7728 +572760,102.95,81.6433 +572761,104.39,85.0688 +572762,103.52,83.8995 +572763,102.61,82.7362 +572764,101.68,81.5804 +572765,103.01,85.083 +572766,102.17,83.8886 +572767,101.3,82.6998 +572768,100.41,81.5186 +572769,101.62,85.0963 +572770,100.82,83.8773 +572771,99.99,82.6638 +572772,99.135,81.4577 +572773,100.23,85.1086 +572774,99.467,83.8656 +572775,98.679,82.6281 +572776,97.864,81.3978 +572777,98.837,85.12 +572778,98.117,83.8537 +572779,97.369,82.5928 +572780,96.593,81.339 +572781,97.446,85.1304 +572782,96.766,83.8414 +572783,96.058,82.5578 +572784,95.322,81.2812 +572785,96.055,85.1397 +572786,95.415,83.8287 +572787,94.748,82.5231 +572788,94.053,81.2245 +572789,94.663,85.148 +572790,94.064,83.8157 +572791,93.438,82.4888 +572792,92.784,81.1688 +572793,93.27,85.1553 +572794,92.713,83.8024 +572795,92.128,82.4549 +572796,91.515,81.1143 +572797,91.877,85.1615 +572798,91.362,83.7887 +572799,90.819,82.4213 +572800,90.247,81.0608 +572801,90.483,85.1666 +572802,90.011,83.7746 +572803,89.509,82.3881 +572804,88.98,81.0085 +572805,89.089,85.1707 +572806,88.659,83.7602 +572807,88.2,82.3553 +572808,87.712,80.9574 +572809,87.695,85.1736 +572810,87.308,83.7454 +572811,86.891,82.3228 +572812,86.446,80.9074 +572813,86.3,85.1754 +572814,85.956,83.7302 +572815,85.582,82.2908 +572816,85.179,80.8585 +572817,84.905,85.1761 +572818,84.604,83.7146 +572819,84.273,82.2591 +572820,83.913,80.8109 +572821,83.51,85.1757 +572822,83.252,83.6986 +572823,82.965,82.2278 +572824,82.648,80.7644 +572825,82.114,85.174 +572826,81.9,83.6823 +572827,81.656,82.1969 +572828,81.382,80.7191 +572829,80.718,85.1713 +572830,80.548,83.6655 +572831,80.348,82.1664 +572832,80.117,80.6751 +572833,79.322,85.1673 +572834,79.196,83.6484 +572835,79.039,82.1363 +572836,78.852,80.6323 +572837,77.926,85.1622 +572838,77.844,83.6308 +572839,77.731,82.1067 +572840,77.588,80.5907 +572841,76.529,85.1558 +572842,76.492,83.6129 +572843,76.423,82.0774 +572844,76.323,80.5503 +572845,75.133,85.1483 +572846,75.14,83.5945 +572847,75.115,82.0485 +572848,75.058,80.5112 +572849,73.736,85.1395 +572850,73.788,83.5757 +572851,73.807,82.0201 +572852,73.794,80.4734 +572853,72.34,85.1295 +572854,72.436,83.5566 +572855,72.499,81.9921 +572856,72.53,80.4368 +572857,70.943,85.1183 +572858,71.084,83.537 +572859,71.191,81.9645 +572860,71.265,80.4015 +572861,69.546,85.1058 +572862,69.732,83.517 +572863,69.883,81.9373 +572864,70.001,80.3674 +572865,68.15,85.0921 +572866,68.38,83.4965 +572867,68.575,81.9105 +572868,68.737,80.3347 +572869,66.753,85.0772 +572870,67.029,83.4757 +572871,67.268,81.8842 +572872,67.472,80.3032 +572873,65.357,85.061 +572874,65.677,83.4544 +572875,65.96,81.8583 +572876,66.208,80.273 +572877,63.961,85.0436 +572878,64.325,83.4327 +572879,64.652,81.8328 +572880,64.943,80.244 +572881,62.565,85.0249 +572882,62.974,83.4106 +572883,63.344,81.8077 +572884,63.678,80.2164 +572885,61.169,85.0049 +572886,61.622,83.3881 +572887,62.036,81.7831 +572888,62.413,80.1901 +572889,59.774,84.9837 +572890,60.271,83.3652 +572891,60.728,81.7589 +572892,61.147,80.165 +572893,58.379,84.9612 +572894,58.92,83.3418 +572895,59.42,81.7351 +572896,59.882,80.1412 +572897,56.984,84.9375 +572898,57.569,83.318 +572899,58.111,81.7118 +572900,58.616,80.1188 +572901,55.59,84.9125 +572902,56.218,83.2938 +572903,56.803,81.6889 +572904,57.35,80.0976 +572905,54.196,84.8862 +572906,54.867,83.2691 +572907,55.495,81.6664 +572908,56.083,80.0776 +572909,52.802,84.8587 +572910,53.517,83.2441 +572911,54.186,81.6443 +572912,54.816,80.059 +572913,51.409,84.8299 +572914,52.166,83.2186 +572915,52.878,81.6227 +572916,53.548,80.0416 +572917,50.017,84.7998 +572918,50.816,83.1927 +572919,51.569,81.6015 +572920,52.28,80.0255 +572921,48.625,84.7685 +572922,49.466,83.1664 +572923,50.26,81.5807 +572924,51.012,80.0107 +572925,47.233,84.736 +572926,48.116,83.1396 +572927,48.951,81.5603 +572928,49.743,79.997 +572929,45.843,84.7022 +572930,46.767,83.1125 +572931,47.642,81.5403 +572932,48.473,79.985 +572933,44.452,84.6671 +572934,45.418,83.0849 +572935,46.332,81.5208 +572936,47.203,79.974 +572937,43.063,84.6309 +572938,44.068,83.0569 +572939,45.023,81.5016 +572940,45.932,79.964 +572941,41.674,84.5934 +572942,42.72,83.0286 +572943,43.713,81.4829 +572944,44.661,79.955 +572945,40.286,84.5547 +572946,41.371,82.9998 +572947,42.403,81.4646 +572948,43.389,79.948 +572949,38.899,84.5147 +572950,40.023,82.9706 +572951,41.093,81.4467 +572952,42.116,79.942 +572953,37.513,84.4736 +572954,38.675,82.941 +572955,39.783,81.4292 +572956,40.842,79.937 +572957,36.128,84.4313 +572958,37.328,82.9111 +572959,38.472,81.4121 +572960,39.568,79.933 +572961,34.743,84.3878 +572962,35.98,82.8807 +572963,37.161,81.3954 +572964,38.293,79.93 +572965,33.359,84.3431 +572966,34.633,82.8499 +572967,35.85,81.379 +572968,37.017,79.929 +572969,31.976,84.2972 +572970,33.287,82.8188 +572971,34.539,81.3631 +572972,35.74,79.928 +572973,30.595,84.2502 +572974,31.94,82.7873 +572975,33.227,81.3476 +572976,34.463,79.929 +572977,29.214,84.2021 +572978,30.594,82.7554 +572979,31.915,81.3324 +572980,33.184,79.931 +572981,27.834,84.1528 +572982,29.249,82.7231 +572983,30.603,81.3176 +572984,31.905,79.934 +572985,26.455,84.1025 +572986,27.904,82.6905 +572987,29.29,81.3031 +572988,30.624,79.938 +572989,25.078,84.051 +572990,26.559,82.6575 +572991,27.977,81.289 +572992,29.343,79.943 +572993,23.701,83.9985 +572994,25.214,82.6242 +572995,26.664,81.2753 +572996,28.06,79.95 +572997,22.326,83.9448 +572998,23.87,82.5905 +572999,25.351,81.262 +573000,26.777,79.957 +573001,20.952,83.8902 +573002,22.527,82.5564 +573003,24.037,81.2489 +573004,25.492,79.965 +573005,19.579,83.8344 +573006,21.183,82.522 +573007,22.723,81.2363 +573008,24.207,79.975 +573009,18.207,83.7777 +573010,19.84,82.4873 +573011,21.408,81.2239 +573012,22.92,79.985 +573013,16.836,83.72 +573014,18.498,82.4523 +573015,20.094,81.2119 +573016,21.632,79.996 +573017,15.467,83.6613 +573018,17.156,82.4169 +573019,18.778,81.2002 +573020,20.343,80.0085 +573021,14.099,83.6016 +573022,15.815,82.3812 +573023,17.463,81.1888 +573024,19.053,80.0217 +573025,12.732,83.541 +573026,14.473,82.3453 +573027,16.147,81.1778 +573028,17.762,80.0358 +573029,11.366,83.4794 +573030,13.133,82.309 +573031,14.831,81.167 +573032,16.47,80.0507 +573033,10.002,83.417 +573034,11.793,82.2724 +573035,13.514,81.1565 +573036,15.176,80.0665 +573037,8.6396,83.3536 +573038,10.453,82.2355 +573039,12.197,81.1463 +573040,13.881,80.0832 +573041,7.2782,83.2894 +573042,9.1137,82.1984 +573043,10.879,81.1364 +573044,12.585,80.1007 +573045,5.9182,83.2244 +573046,7.7749,82.161 +573047,9.5613,81.1268 +573048,11.288,80.119 +573049,4.5597,83.1585 +573050,6.4367,82.1233 +573051,8.243,81.1175 +573052,9.9889,80.1381 +573053,3.2025,83.0918 +573054,5.0989,82.0853 +573055,6.9242,81.1083 +573056,8.6889,80.1579 +573057,1.8469,83.0244 +573058,3.7616,82.0471 +573059,5.6051,81.0995 +573060,7.3876,80.1785 +573061,0.49265,82.9562 +573062,2.4248,82.0087 +573063,4.2855,81.0909 +573064,6.0849,80.1997 +573065,359.14,82.8873 +573066,1.0885,81.97 +573067,2.9655,81.0825 +573068,4.7809,80.2217 +573069,357.79,82.8177 +573070,359.75,81.9312 +573071,1.645,81.0744 +573072,3.4756,80.2443 +573073,356.44,82.7474 +573074,358.42,81.892 +573075,0.32414,81.0664 +573076,2.1689,80.2675 +573077,355.09,82.6765 +573078,357.08,81.8527 +573079,359,81.0587 +573080,0.86083,80.2914 +573081,353.74,82.6049 +573082,355.75,81.8132 +573083,357.68,81.0512 +573084,359.55,80.3158 +573085,352.4,82.5327 +573086,354.41,81.7735 +573087,356.36,81.0439 +573088,358.24,80.3408 +573089,351.06,82.46 +573090,353.08,81.7336 +573091,355.04,81.0367 +573092,356.93,80.3663 +573093,349.71,82.3867 +573094,351.75,81.6935 +573095,353.71,81.0298 +573096,355.61,80.3924 +573097,348.37,82.3129 +573098,350.42,81.6533 +573099,352.39,81.023 +573100,354.3,80.4189 +573101,347.03,82.2386 +573102,349.09,81.6129 +573103,351.07,81.0164 +573104,352.98,80.4458 +573105,345.7,82.1638 +573106,347.75,81.5724 +573107,349.74,81.0099 +573108,351.66,80.4732 +573109,344.36,82.0886 +573110,346.42,81.5317 +573111,348.42,81.0035 +573112,350.35,80.501 +573113,343.03,82.013 +573114,345.09,81.4909 +573115,347.09,80.9973 +573116,349.02,80.5291 +573117,341.69,81.937 +573118,343.76,81.45 +573119,345.76,80.9912 +573120,347.7,80.5576 +573121,340.36,81.8606 +573122,342.44,81.409 +573123,344.44,80.9852 +573124,346.38,80.5865 +573125,339.03,81.784 +573126,341.11,81.3678 +573127,343.11,80.9793 +573128,345.05,80.6156 +573129,337.71,81.707 +573130,339.78,81.3266 +573131,341.78,80.9736 +573132,343.73,80.6449 +573133,336.38,81.6297 +573134,338.45,81.2853 +573135,340.46,80.9679 +573136,342.4,80.6745 +573137,335.06,81.5523 +573138,337.13,81.2439 +573139,339.13,80.9622 +573140,341.07,80.7043 +573141,333.73,81.4746 +573142,335.8,81.2025 +573143,337.8,80.9567 +573144,339.74,80.7343 +573145,332.41,81.3967 +573146,334.47,81.161 +573147,336.47,80.9512 +573148,338.4,80.7644 +573149,331.09,81.3187 +573150,333.15,81.1194 +573151,335.14,80.9457 +573152,337.07,80.7947 +573153,329.77,81.2405 +573154,331.82,81.0779 +573155,333.81,80.9403 +573156,335.73,80.825 +573157,328.46,81.1623 +573158,330.5,81.0363 +573159,332.48,80.9349 +573160,334.4,80.8555 +573161,327.14,81.084 +573162,329.18,80.9947 +573163,331.15,80.9296 +573164,333.06,80.8859 +573165,325.83,81.0057 +573166,327.85,80.9531 +573167,329.82,80.9242 +573168,331.72,80.9164 +573169,324.52,80.9274 +573170,326.53,80.9115 +573171,328.48,80.9189 +573172,330.38,80.9468 +573173,323.21,80.8491 +573174,325.21,80.8699 +573175,327.15,80.9135 +573176,329.03,80.9772 +573177,321.9,80.7708 +573178,323.89,80.8283 +573179,325.82,80.9081 +573180,327.69,81.0075 +573181,320.59,80.6927 +573182,322.57,80.7868 +573183,324.48,80.9027 +573184,326.34,81.0377 +573185,319.28,80.6147 +573186,321.25,80.7453 +573187,323.15,80.8972 +573188,325,81.0678 +573189,317.98,80.5368 +573190,319.93,80.7039 +573191,321.82,80.8917 +573192,323.65,81.0978 +573193,316.68,80.4591 +573194,318.61,80.6625 +573195,320.48,80.8862 +573196,322.3,81.1275 +573197,315.38,80.3816 +573198,317.29,80.6212 +573199,319.15,80.8806 +573200,320.95,81.1571 +573201,314.08,80.3043 +573202,315.97,80.58 +573203,317.81,80.8749 +573204,319.59,81.1863 +573205,312.78,80.2273 +573206,314.65,80.5389 +573207,316.47,80.8691 +573208,318.24,81.2154 +573209,311.48,80.1506 +573210,313.34,80.4979 +573211,315.14,80.8632 +573212,316.88,81.2441 +573213,310.19,80.0742 +573214,312.02,80.457 +573215,313.8,80.8572 +573216,315.53,81.2725 +573217,308.89,79.998 +573218,310.7,80.4162 +573219,312.46,80.8511 +573220,314.17,81.3006 +573221,307.6,79.923 +573222,309.39,80.3755 +573223,311.12,80.8449 +573224,312.81,81.3283 +573225,306.31,79.847 +573226,308.07,80.335 +573227,309.79,80.8386 +573228,311.45,81.3556 +573229,305.02,79.772 +573230,306.76,80.2947 +573231,308.45,80.8321 +573232,310.09,81.3825 +573233,303.73,79.698 +573234,305.44,80.2544 +573235,307.11,80.8255 +573236,308.72,81.4089 +573237,302.44,79.624 +573238,304.13,80.2144 +573239,305.77,80.8187 +573240,307.36,81.4348 +573241,301.16,79.551 +573242,302.82,80.1745 +573243,304.43,80.8118 +573244,305.99,81.4603 +573245,299.87,79.478 +573246,301.5,80.1349 +573247,303.09,80.8046 +573248,304.63,81.4852 +573249,298.59,79.406 +573250,300.19,80.0954 +573251,301.75,80.7973 +573252,303.26,81.5096 +573253,297.31,79.334 +573254,298.88,80.0561 +573255,300.41,80.7898 +573256,301.89,81.5334 +573257,296.03,79.263 +573258,297.57,80.017 +573259,299.06,80.7821 +573260,300.52,81.5566 +573261,294.75,79.193 +573262,296.26,79.978 +573263,297.72,80.7742 +573264,299.15,81.5791 +573265,293.47,79.123 +573266,294.95,79.94 +573267,296.38,80.7661 +573268,297.77,81.6011 +573269,292.19,79.054 +573270,293.64,79.901 +573271,295.04,80.7578 +573272,296.4,81.6223 +573273,290.92,78.986 +573274,292.33,79.863 +573275,293.7,80.7492 +573276,295.02,81.6429 +573277,289.64,78.919 +573278,291.02,79.825 +573279,292.35,80.7404 +573280,293.65,81.6627 +573281,288.37,78.852 +573282,289.71,79.787 +573283,291.01,80.7314 +573284,292.27,81.6819 +573285,287.09,78.786 +573286,288.4,79.75 +573287,289.66,80.7221 +573288,290.89,81.7002 +573289,285.82,78.721 +573290,287.09,79.713 +573291,288.32,80.7125 +573292,289.51,81.7178 +573293,284.55,78.657 +573294,285.78,79.676 +573295,286.98,80.7027 +573296,288.13,81.7346 +573297,283.28,78.593 +573298,284.48,79.64 +573299,285.63,80.6926 +573300,286.75,81.7505 +573301,282.01,78.531 +573302,283.17,79.603 +573303,284.29,80.6822 +573304,285.37,81.7656 +573305,280.74,78.469 +573306,281.86,79.567 +573307,282.94,80.6716 +573308,283.98,81.7799 +573309,279.48,78.409 +573310,280.55,79.532 +573311,281.6,80.6606 +573312,282.6,81.7933 +573313,278.21,78.349 +573314,279.25,79.496 +573315,280.25,80.6494 +573316,281.22,81.8058 +573317,276.94,78.29 +573318,277.94,79.461 +573319,278.9,80.6378 +573320,279.83,81.8174 +573321,275.68,78.232 +573322,276.64,79.427 +573323,277.56,80.6259 +573324,278.44,81.828 +573325,274.42,78.176 +573326,275.33,79.392 +573327,276.21,80.6137 +573328,277.06,81.8377 +573329,273.15,78.12 +573330,274.02,79.358 +573331,274.86,80.6012 +573332,275.67,81.8464 +573333,271.89,78.065 +573334,272.72,79.325 +573335,273.52,80.5884 +573336,274.28,81.8542 +573337,270.63,78.012 +573338,271.42,79.292 +573339,272.17,80.5752 +573340,272.89,81.8609 +573341,269.37,77.959 +573342,270.11,79.259 +573343,270.82,80.5617 +573344,271.5,81.8667 +573345,268.1,77.908 +573346,268.81,79.226 +573347,269.47,80.5478 +573348,270.11,81.8714 +573349,266.84,77.857 +573350,267.5,79.194 +573351,268.13,80.5336 +573352,268.72,81.875 +573353,265.58,77.808 +573354,266.2,79.162 +573355,266.78,80.5191 +573356,267.33,81.8776 +573357,264.33,77.76 +573358,264.89,79.13 +573359,265.43,80.5041 +573360,265.94,81.8792 +573361,263.07,77.713 +573362,263.59,79.099 +573363,264.08,80.4889 +573364,264.54,81.8796 +573365,261.81,77.667 +573366,262.29,79.069 +573367,262.73,80.4732 +573368,263.15,81.879 +573369,260.55,77.622 +573370,260.98,79.038 +573371,261.39,80.4572 +573372,261.76,81.8773 +573373,259.29,77.579 +573374,259.68,79.008 +573375,260.04,80.4408 +573376,260.36,81.8744 +573377,258.03,77.536 +573378,258.38,78.979 +573379,258.69,80.424 +573380,258.97,81.8705 +573381,256.78,77.495 +573382,257.07,78.95 +573383,257.34,80.4069 +573384,257.58,81.8653 +573385,255.52,77.455 +573386,255.77,78.921 +573387,255.99,80.3894 +573388,256.18,81.8591 +573389,254.26,77.417 +573390,254.47,78.893 +573391,254.64,80.3714 +573392,254.79,81.8517 +573393,253.01,77.379 +573394,253.17,78.865 +573395,253.3,80.3531 +573396,253.39,81.8431 +573397,251.75,77.343 +573398,251.86,78.837 +573399,251.95,80.3344 +573400,252,81.8334 +573401,250.49,77.308 +573402,250.56,78.81 +573403,250.6,80.3153 +573404,250.6,81.8225 +573405,249.24,77.274 +573406,249.26,78.783 +573407,249.25,80.2959 +573408,249.21,81.8104 +573409,247.98,77.241 +573410,247.96,78.757 +573411,247.9,80.276 +573412,247.81,81.7971 +573413,246.73,77.21 +573414,246.65,78.731 +573415,246.55,80.2557 +573416,246.41,81.7827 +573417,245.47,77.18 +573418,245.35,78.706 +573419,245.2,80.235 +573420,245.02,81.767 +573421,244.21,77.151 +573422,244.05,78.681 +573423,243.85,80.2139 +573424,243.62,81.7501 +573425,242.96,77.124 +573426,242.75,78.656 +573427,242.51,80.1925 +573428,242.23,81.7321 +573429,241.7,77.097 +573430,241.45,78.632 +573431,241.16,80.1706 +573432,240.83,81.7128 +573433,240.44,77.072 +573434,240.14,78.608 +573435,239.81,80.1483 +573436,239.44,81.6923 +573437,239.19,77.049 +573438,238.84,78.585 +573439,238.46,80.1256 +573440,238.04,81.6706 +573441,237.93,77.026 +573442,237.54,78.562 +573443,237.11,80.1025 +573444,236.65,81.6477 +573445,236.67,77.005 +573446,236.24,78.539 +573447,235.76,80.079 +573448,235.25,81.6236 +573449,235.41,76.985 +573450,234.93,78.517 +573451,234.42,80.0551 +573452,233.86,81.5983 +573453,234.16,76.966 +573454,233.63,78.495 +573455,233.07,80.0308 +573456,232.47,81.5718 +573457,232.9,76.948 +573458,232.33,78.474 +573459,231.72,80.0061 +573460,231.07,81.5441 +573461,231.64,76.932 +573462,231.02,78.453 +573463,230.37,79.981 +573464,229.68,81.5152 +573465,230.38,76.917 +573466,229.72,78.433 +573467,229.03,79.955 +573468,228.29,81.485 +573469,229.12,76.903 +573470,228.42,78.413 +573471,227.68,79.93 +573472,226.9,81.4537 +573473,227.86,76.891 +573474,227.11,78.393 +573475,226.33,79.903 +573476,225.51,81.4212 +573477,226.6,76.879 +573478,225.81,78.374 +573479,224.98,79.877 +573480,224.11,81.3875 +573481,225.34,76.869 +573482,224.51,78.355 +573483,223.64,79.85 +573484,222.72,81.3526 +573485,224.07,76.86 +573486,223.2,78.337 +573487,222.29,79.822 +573488,221.33,81.3165 +573489,222.81,76.853 +573490,221.9,78.319 +573491,220.95,79.794 +573492,219.95,81.2793 +573493,221.55,76.846 +573494,220.6,78.301 +573495,219.6,79.766 +573496,218.56,81.2409 +573497,220.28,76.841 +573498,219.29,78.284 +573499,218.25,79.737 +573500,217.17,81.2013 +573501,219.02,76.837 +573502,217.99,78.267 +573503,216.91,79.708 +573504,215.78,81.1606 +573505,217.75,76.834 +573506,216.68,78.251 +573507,215.56,79.679 +573508,214.4,81.1188 +573509,216.49,76.832 +573510,215.38,78.235 +573511,214.22,79.649 +573512,213.01,81.0758 +573513,215.22,76.831 +573514,214.07,78.219 +573515,212.88,79.619 +573516,211.63,81.0317 +573517,213.95,76.831 +573518,212.77,78.204 +573519,211.53,79.589 +573520,210.24,80.9866 +573521,212.68,76.833 +573522,211.46,78.189 +573523,210.19,79.558 +573524,208.86,80.9403 +573525,211.41,76.835 +573526,210.15,78.174 +573527,208.84,79.527 +573528,207.48,80.8929 +573529,210.14,76.839 +573530,208.85,78.16 +573531,207.5,79.495 +573532,206.1,80.8445 +573533,208.87,76.843 +573534,207.54,78.146 +573535,206.16,79.463 +573536,204.72,80.795 +573537,207.6,76.849 +573538,206.23,78.133 +573539,204.82,79.431 +573540,203.34,80.7445 +573541,206.32,76.856 +573542,204.92,78.12 +573543,203.47,79.398 +573544,201.96,80.6929 +573545,205.05,76.864 +573546,203.62,78.107 +573547,202.13,79.365 +573548,200.59,80.6403 +573549,203.77,76.872 +573550,202.31,78.094 +573551,200.79,79.332 +573552,199.21,80.5868 +573553,202.5,76.882 +573554,201,78.082 +573555,199.45,79.299 +573556,197.84,80.5322 +573557,201.22,76.893 +573558,199.69,78.07 +573559,198.11,79.265 +573560,196.47,80.4767 +573561,199.94,76.904 +573562,198.38,78.059 +573563,196.77,79.23 +573564,195.09,80.4202 +573565,198.66,76.917 +573566,197.07,78.048 +573567,195.43,79.196 +573568,193.72,80.3628 +573569,197.38,76.93 +573570,195.76,78.037 +573571,194.09,79.161 +573572,192.35,80.3045 +573573,196.09,76.945 +573574,194.45,78.026 +573575,192.75,79.126 +573576,190.99,80.2453 +573577,194.81,76.96 +573578,193.14,78.016 +573579,191.42,79.091 +573580,189.62,80.1852 +573581,193.52,76.976 +573582,191.83,78.006 +573583,190.08,79.055 +573584,188.25,80.1243 +573585,192.24,76.993 +573586,190.52,77.997 +573587,188.74,79.019 +573588,186.89,80.0625 +573589,190.95,77.01 +573590,189.21,77.987 +573591,187.4,78.983 +573592,185.53,80 +573593,189.66,77.029 +573594,187.89,77.978 +573595,186.07,78.947 +573596,184.17,79.937 +573597,188.37,77.048 +573598,186.58,77.969 +573599,184.73,78.91 +573600,182.81,79.872 +573601,187.08,77.068 +573602,185.27,77.96 +573603,183.4,78.873 +573604,181.45,79.808 +573605,185.78,77.088 +573606,183.95,77.952 +573607,182.06,78.836 +573608,180.09,79.742 +573609,184.49,77.11 +573610,182.64,77.944 +573611,180.73,78.799 +573612,178.74,79.676 +573613,183.19,77.131 +573614,181.33,77.936 +573615,179.39,78.761 +573616,177.38,79.609 +573617,181.89,77.154 +573618,180.01,77.928 +573619,178.06,78.723 +573620,176.03,79.541 +573621,180.6,77.177 +573622,178.69,77.921 +573623,176.73,78.685 +573624,174.68,79.473 +573625,179.3,77.201 +573626,177.38,77.913 +573627,175.39,78.647 +573628,173.33,79.404 +573629,177.99,77.225 +573630,176.06,77.906 +573631,174.06,78.609 +573632,171.99,79.334 +573633,176.69,77.25 +573634,174.75,77.899 +573635,172.73,78.57 +573636,170.64,79.264 +573637,175.39,77.275 +573638,173.43,77.893 +573639,171.4,78.531 +573640,169.3,79.193 +573641,174.08,77.301 +573642,172.11,77.886 +573643,170.07,78.492 +573644,167.95,79.122 +573645,172.77,77.327 +573646,170.79,77.88 +573647,168.74,78.453 +573648,166.61,79.051 +573649,171.46,77.354 +573650,169.47,77.873 +573651,167.41,78.414 +573652,165.27,78.979 +573653,170.15,77.381 +573654,168.15,77.867 +573655,166.08,78.375 +573656,163.93,78.906 +573657,168.84,77.408 +573658,166.83,77.861 +573659,164.76,78.335 +573660,162.6,78.833 +573661,167.53,77.436 +573662,165.51,77.855 +573663,163.43,78.296 +573664,161.26,78.76 +573665,166.21,77.464 +573666,164.19,77.85 +573667,162.1,78.256 +573668,159.93,78.686 +573669,164.89,77.492 +573670,162.87,77.844 +573671,160.78,78.216 +573672,158.6,78.612 +573673,163.58,77.521 +573674,161.55,77.838 +573675,159.45,78.177 +573676,157.27,78.538 +573677,162.26,77.55 +573678,160.23,77.833 +573679,158.13,78.137 +573680,155.94,78.464 +573681,160.94,77.579 +573682,158.9,77.827 +573683,156.8,78.097 +573684,154.62,78.389 +573685,159.61,77.608 +573686,157.58,77.822 +573687,155.48,78.057 +573688,153.29,78.314 +573689,158.29,77.637 +573690,156.26,77.817 +573691,154.15,78.016 +573692,151.97,78.239 +573693,156.96,77.667 +573694,154.93,77.812 +573695,152.83,77.976 +573696,150.65,78.163 +573697,155.63,77.697 +573698,153.61,77.806 +573699,151.51,77.936 +573700,149.33,78.088 +573701,154.31,77.726 +573702,152.28,77.801 +573703,150.19,77.896 +573704,148.01,78.012 +573705,152.97,77.756 +573706,150.96,77.796 +573707,148.87,77.856 +573708,146.69,77.937 +573709,151.64,77.786 +573710,149.63,77.791 +573711,147.54,77.815 +573712,145.38,77.861 +573713,150.31,77.815 +573714,148.3,77.786 +573715,146.22,77.775 +573716,144.07,77.785 +573717,148.97,77.845 +573718,146.98,77.781 +573719,144.91,77.735 +573720,142.76,77.71 +573721,147.64,77.875 +573722,145.65,77.776 +573723,143.59,77.695 +573724,141.45,77.634 +573725,146.3,77.904 +573726,144.32,77.771 +573727,142.27,77.655 +573728,140.14,77.559 +573729,144.96,77.934 +573730,142.99,77.765 +573731,140.95,77.614 +573732,138.83,77.483 +573733,143.62,77.963 +573734,141.66,77.76 +573735,139.63,77.574 +573736,137.53,77.408 +573737,142.28,77.992 +573738,140.33,77.755 +573739,138.32,77.534 +573740,136.23,77.333 +573741,140.93,78.021 +573742,139,77.75 +573743,137,77.494 +573744,134.92,77.258 +573745,139.59,78.049 +573746,137.67,77.744 +573747,135.68,77.455 +573748,133.63,77.183 +573749,138.24,78.078 +573750,136.34,77.739 +573751,134.37,77.415 +573752,132.33,77.108 +573753,136.89,78.106 +573754,135.01,77.733 +573755,133.06,77.375 +573756,131.03,77.034 +573757,135.54,78.134 +573758,133.67,77.728 +573759,131.74,77.336 +573760,129.74,76.96 +573761,134.19,78.161 +573762,132.34,77.722 +573763,130.43,77.296 +573764,128.44,76.887 +573765,132.84,78.188 +573766,131.01,77.716 +573767,129.11,77.257 +573768,127.15,76.813 +573769,131.48,78.215 +573770,129.67,77.71 +573771,127.8,77.218 +573772,125.86,76.741 +573773,130.13,78.241 +573774,128.34,77.704 +573775,126.49,77.179 +573776,124.57,76.668 +573777,128.77,78.267 +573778,127.01,77.697 +573779,125.18,77.14 +573780,123.28,76.596 +573781,127.41,78.292 +573782,125.67,77.691 +573783,123.87,77.101 +573784,122,76.525 +573785,126.05,78.317 +573786,124.33,77.684 +573787,122.56,77.062 +573788,120.71,76.453 +573789,124.69,78.341 +573790,123,77.678 +573791,121.25,77.024 +573792,119.43,76.383 +573793,123.33,78.365 +573794,121.66,77.671 +573795,119.94,76.986 +573796,118.15,76.313 +573797,121.96,78.389 +573798,120.33,77.664 +573799,118.63,76.948 +573800,116.87,76.244 +573801,120.6,78.411 +573802,118.99,77.656 +573803,117.32,76.91 +573804,115.59,76.175 +573805,119.23,78.433 +573806,117.65,77.649 +573807,116.01,76.872 +573808,114.31,76.107 +573809,117.86,78.455 +573810,116.31,77.641 +573811,114.71,76.835 +573812,113.04,76.039 +573813,116.5,78.476 +573814,114.97,77.633 +573815,113.4,76.798 +573816,111.76,75.972 +573817,115.13,78.496 +573818,113.64,77.625 +573819,112.09,76.761 +573820,110.49,75.906 +573821,113.75,78.515 +573822,112.3,77.617 +573823,110.78,76.724 +573824,109.22,75.84 +573825,112.38,78.534 +573826,110.96,77.608 +573827,109.48,76.688 +573828,107.94,75.776 +573829,111.01,78.552 +573830,109.62,77.599 +573831,108.17,76.652 +573832,106.67,75.712 +573833,109.63,78.569 +573834,108.28,77.59 +573835,106.87,76.616 +573836,105.41,75.649 +573837,108.26,78.585 +573838,106.94,77.581 +573839,105.56,76.58 +573840,104.14,75.586 +573841,106.88,78.601 +573842,105.6,77.571 +573843,104.26,76.545 +573844,102.87,75.525 +573845,105.5,78.616 +573846,104.25,77.561 +573847,102.96,76.51 +573848,101.61,75.464 +573849,104.13,78.63 +573850,102.91,77.551 +573851,101.65,76.475 +573852,100.34,75.404 +573853,102.75,78.643 +573854,101.57,77.541 +573855,100.35,76.441 +573856,99.077,75.346 +573857,101.37,78.655 +573858,100.23,77.53 +573859,99.046,76.407 +573860,97.815,75.288 +573861,99.984,78.666 +573862,98.886,77.519 +573863,97.743,76.373 +573864,96.553,75.231 +573865,98.601,78.677 +573866,97.543,77.507 +573867,96.441,76.339 +573868,95.292,75.174 +573869,97.218,78.686 +573870,96.2,77.496 +573871,95.139,76.306 +573872,94.033,75.119 +573873,95.834,78.695 +573874,94.857,77.484 +573875,93.838,76.273 +573876,92.774,75.065 +573877,94.449,78.702 +573878,93.513,77.471 +573879,92.536,76.241 +573880,91.515,75.012 +573881,93.063,78.709 +573882,92.17,77.459 +573883,91.235,76.209 +573884,90.258,74.96 +573885,91.676,78.714 +573886,90.826,77.446 +573887,89.935,76.177 +573888,89.001,74.909 +573889,90.289,78.719 +573890,89.481,77.432 +573891,88.634,76.145 +573892,87.745,74.859 +573893,88.901,78.722 +573894,88.137,77.419 +573895,87.334,76.114 +573896,86.49,74.81 +573897,87.513,78.725 +573898,86.792,77.405 +573899,86.034,76.083 +573900,85.236,74.762 +573901,86.123,78.727 +573902,85.448,77.391 +573903,84.734,76.053 +573904,83.982,74.716 +573905,84.734,78.727 +573906,84.102,77.376 +573907,83.434,76.023 +573908,82.728,74.67 +573909,83.343,78.726 +573910,82.757,77.361 +573911,82.135,75.993 +573912,81.475,74.625 +573913,81.952,78.725 +573914,81.412,77.345 +573915,80.836,75.964 +573916,80.223,74.582 +573917,80.561,78.722 +573918,80.067,77.33 +573919,79.537,75.935 +573920,78.971,74.54 +573921,79.169,78.718 +573922,78.721,77.314 +573923,78.238,75.907 +573924,77.719,74.499 +573925,77.777,78.713 +573926,77.375,77.297 +573927,76.939,75.879 +573928,76.468,74.459 +573929,76.384,78.707 +573930,76.029,77.28 +573931,75.641,75.851 +573932,75.218,74.42 +573933,74.991,78.7 +573934,74.683,77.263 +573935,74.342,75.823 +573936,73.967,74.383 +573937,73.597,78.691 +573938,73.337,77.245 +573939,73.044,75.797 +573940,72.717,74.346 +573941,72.204,78.682 +573942,71.991,77.227 +573943,71.746,75.77 +573944,71.467,74.311 +573945,70.81,78.671 +573946,70.645,77.209 +573947,70.448,75.744 +573948,70.217,74.277 +573949,69.415,78.659 +573950,69.299,77.19 +573951,69.15,75.718 +573952,68.968,74.245 +573953,68.021,78.646 +573954,67.953,77.171 +573955,67.852,75.693 +573956,67.718,74.213 +573957,66.626,78.632 +573958,66.607,77.151 +573959,66.554,75.668 +573960,66.469,74.183 +573961,65.232,78.617 +573962,65.26,77.131 +573963,65.256,75.643 +573964,65.22,74.154 +573965,63.837,78.6 +573966,63.914,77.111 +573967,63.959,75.619 +573968,63.971,74.126 +573969,62.442,78.583 +573970,62.568,77.09 +573971,62.661,75.596 +573972,62.721,74.099 +573973,61.048,78.564 +573974,61.222,77.069 +573975,61.363,75.572 +573976,61.472,74.074 +573977,59.653,78.544 +573978,59.875,77.048 +573979,60.065,75.549 +573980,60.223,74.05 +573981,58.258,78.523 +573982,58.529,77.026 +573983,58.767,75.527 +573984,58.973,74.027 +573985,56.864,78.5 +573986,57.183,77.004 +573987,57.47,75.505 +573988,57.724,74.005 +573989,55.469,78.477 +573990,55.837,76.981 +573991,56.172,75.483 +573992,56.474,73.985 +573993,54.075,78.452 +573994,54.491,76.958 +573995,54.874,75.462 +573996,55.224,73.966 +573997,52.681,78.426 +573998,53.146,76.934 +573999,53.576,75.441 +574000,53.973,73.948 +574001,51.287,78.399 +574002,51.8,76.91 +574003,52.278,75.421 +574004,52.722,73.931 +574005,49.894,78.371 +574006,50.454,76.886 +574007,50.98,75.401 +574008,51.471,73.916 +574009,48.501,78.341 +574010,49.109,76.861 +574011,49.681,75.381 +574012,50.22,73.901 +574013,47.108,78.311 +574014,47.764,76.836 +574015,48.383,75.362 +574016,48.968,73.888 +574017,45.715,78.279 +574018,46.418,76.811 +574019,47.084,75.343 +574020,47.716,73.876 +574021,44.323,78.246 +574022,45.073,76.785 +574023,45.786,75.325 +574024,46.463,73.866 +574025,42.932,78.212 +574026,43.729,76.759 +574027,44.487,75.307 +574028,45.21,73.856 +574029,41.541,78.177 +574030,42.384,76.732 +574031,43.188,75.289 +574032,43.956,73.848 +574033,40.151,78.141 +574034,41.04,76.705 +574035,41.889,75.272 +574036,42.701,73.841 +574037,38.761,78.103 +574038,39.696,76.678 +574039,40.589,75.255 +574040,41.446,73.835 +574041,37.371,78.065 +574042,38.352,76.65 +574043,39.29,75.239 +574044,40.19,73.83 +574045,35.983,78.025 +574046,37.008,76.622 +574047,37.99,75.223 +574048,38.934,73.826 +574049,34.595,77.984 +574050,35.665,76.594 +574051,36.69,75.207 +574052,37.677,73.824 +574053,33.208,77.942 +574054,34.321,76.565 +574055,35.39,75.192 +574056,36.419,73.823 +574057,31.822,77.899 +574058,32.979,76.536 +574059,34.09,75.177 +574060,35.16,73.822 +574061,30.436,77.855 +574062,31.636,76.506 +574063,32.789,75.162 +574064,33.9,73.823 +574065,29.051,77.81 +574066,30.294,76.476 +574067,31.488,75.148 +574068,32.64,73.825 +574069,27.667,77.764 +574070,28.952,76.446 +574071,30.187,75.134 +574072,31.379,73.828 +574073,26.284,77.717 +574074,27.61,76.416 +574075,28.885,75.121 +574076,30.116,73.832 +574077,24.902,77.668 +574078,26.269,76.385 +574079,27.584,75.108 +574080,28.853,73.837 +574081,23.521,77.619 +574082,24.928,76.353 +574083,26.281,75.095 +574084,27.589,73.843 +574085,22.141,77.569 +574086,23.587,76.322 +574087,24.979,75.082 +574088,26.324,73.851 +574089,20.762,77.517 +574090,22.247,76.29 +574091,23.676,75.07 +574092,25.058,73.859 +574093,19.384,77.465 +574094,20.907,76.258 +574095,22.373,75.059 +574096,23.79,73.868 +574097,18.007,77.412 +574098,19.567,76.225 +574099,21.07,75.047 +574100,22.522,73.878 +574101,16.631,77.358 +574102,18.228,76.192 +574103,19.766,75.036 +574104,21.253,73.889 +574105,15.257,77.303 +574106,16.889,76.159 +574107,18.462,75.025 +574108,19.982,73.901 +574109,13.883,77.247 +574110,15.551,76.126 +574111,17.157,75.015 +574112,18.71,73.914 +574113,12.511,77.19 +574114,14.213,76.092 +574115,15.852,75.004 +574116,17.437,73.928 +574117,11.14,77.132 +574118,12.876,76.058 +574119,14.547,74.995 +574120,16.163,73.942 +574121,9.7704,77.074 +574122,11.539,76.024 +574123,13.242,74.985 +574124,14.888,73.958 +574125,8.402,77.014 +574126,10.202,75.989 +574127,11.935,74.976 +574128,13.611,73.974 +574129,7.0349,76.954 +574130,8.866,75.954 +574131,10.629,74.967 +574132,12.333,73.991 +574133,5.6691,76.893 +574134,7.5303,75.919 +574135,9.322,74.958 +574136,11.054,74.009 +574137,4.3048,76.831 +574138,6.1951,75.884 +574139,8.0147,74.949 +574140,9.7736,74.028 +574141,2.9418,76.769 +574142,4.8604,75.848 +574143,6.707,74.941 +574144,8.4917,74.047 +574145,1.5803,76.705 +574146,3.5262,75.812 +574147,5.3987,74.933 +574148,7.2085,74.067 +574149,0.22016,76.641 +574150,2.1924,75.776 +574151,4.0901,74.925 +574152,5.9239,74.088 +574153,358.86,76.577 +574154,0.85913,75.74 +574155,2.781,74.918 +574156,4.6379,74.109 +574157,357.5,76.511 +574158,359.53,75.703 +574159,1.4714,74.91 +574160,3.3505,74.131 +574161,356.15,76.445 +574162,358.19,75.667 +574163,0.16139,74.903 +574164,2.0617,74.154 +574165,354.79,76.379 +574166,356.86,75.63 +574167,358.85,74.896 +574168,0.7714,74.177 +574169,353.44,76.312 +574170,355.53,75.593 +574171,357.54,74.889 +574172,359.48,74.201 +574173,352.09,76.244 +574174,354.2,75.555 +574175,356.23,74.883 +574176,358.19,74.225 +574177,350.74,76.176 +574178,352.87,75.518 +574179,354.92,74.876 +574180,356.89,74.25 +574181,349.39,76.107 +574182,351.54,75.48 +574183,353.6,74.87 +574184,355.6,74.276 +574185,348.05,76.037 +574186,350.21,75.442 +574187,352.29,74.864 +574188,354.3,74.302 +574189,346.7,75.968 +574190,348.88,75.404 +574191,350.98,74.858 +574192,353,74.328 +574193,345.36,75.897 +574194,347.56,75.366 +574195,349.66,74.853 +574196,351.7,74.355 +574197,344.02,75.827 +574198,346.23,75.328 +574199,348.35,74.847 +574200,350.4,74.382 +574201,342.68,75.756 +574202,344.9,75.29 +574203,347.03,74.842 +574204,349.09,74.409 +574205,341.34,75.684 +574206,343.57,75.251 +574207,345.72,74.836 +574208,347.79,74.437 +574209,340.01,75.612 +574210,342.25,75.213 +574211,344.4,74.831 +574212,346.48,74.465 +574213,338.67,75.54 +574214,340.92,75.174 +574215,343.09,74.826 +574216,345.17,74.494 +574217,337.34,75.468 +574218,339.6,75.135 +574219,341.77,74.821 +574220,343.86,74.522 +574221,336.01,75.395 +574222,338.28,75.097 +574223,340.45,74.816 +574224,342.55,74.551 +574225,334.68,75.322 +574226,336.95,75.058 +574227,339.13,74.811 +574228,341.24,74.58 +574229,333.35,75.249 +574230,335.63,75.019 +574231,337.81,74.806 +574232,339.92,74.61 +574233,332.03,75.176 +574234,334.31,74.98 +574235,336.5,74.801 +574236,338.6,74.639 +574237,330.7,75.102 +574238,332.99,74.941 +574239,335.18,74.797 +574240,337.29,74.668 +574241,329.38,75.029 +574242,331.66,74.902 +574243,333.86,74.792 +574244,335.97,74.698 +574245,328.06,74.955 +574246,330.34,74.862 +574247,332.54,74.787 +574248,334.65,74.728 +574249,326.74,74.881 +574250,329.02,74.823 +574251,331.21,74.783 +574252,333.32,74.757 +574253,325.42,74.808 +574254,327.7,74.784 +574255,329.89,74.778 +574256,332,74.787 +574257,324.11,74.734 +574258,326.39,74.745 +574259,328.57,74.773 +574260,330.67,74.817 +574261,322.79,74.66 +574262,325.07,74.706 +574263,327.25,74.769 +574264,329.34,74.846 +574265,321.48,74.586 +574266,323.75,74.667 +574267,325.92,74.764 +574268,328.01,74.876 +574269,320.17,74.513 +574270,322.43,74.628 +574271,324.6,74.759 +574272,326.68,74.905 +574273,318.86,74.439 +574274,321.12,74.589 +574275,323.28,74.755 +574276,325.35,74.935 +574277,317.56,74.365 +574278,319.8,74.55 +574279,321.95,74.75 +574280,324.02,74.964 +574281,316.25,74.292 +574282,318.49,74.511 +574283,320.62,74.745 +574284,322.68,74.993 +574285,314.95,74.219 +574286,317.17,74.472 +574287,319.3,74.74 +574288,321.34,75.022 +574289,313.65,74.146 +574290,315.86,74.433 +574291,317.97,74.735 +574292,320.01,75.05 +574293,312.35,74.073 +574294,314.54,74.395 +574295,316.64,74.73 +574296,318.67,75.078 +574297,311.05,74.001 +574298,313.23,74.356 +574299,315.32,74.725 +574300,317.32,75.106 +574301,309.75,73.929 +574302,311.92,74.317 +574303,313.99,74.72 +574304,315.98,75.134 +574305,308.46,73.857 +574306,310.61,74.279 +574307,312.66,74.715 +574308,314.64,75.161 +574309,307.17,73.786 +574310,309.29,74.241 +574311,311.33,74.709 +574312,313.29,75.188 +574313,305.88,73.715 +574314,307.98,74.203 +574315,310,74.704 +574316,311.94,75.215 +574317,304.59,73.644 +574318,306.67,74.165 +574319,308.67,74.698 +574320,310.59,75.241 +574321,303.3,73.574 +574322,305.36,74.127 +574323,307.34,74.692 +574324,309.24,75.267 +574325,302.01,73.504 +574326,304.05,74.089 +574327,306.01,74.686 +574328,307.89,75.292 +574329,300.73,73.435 +574330,302.75,74.052 +574331,304.68,74.68 +574332,306.53,75.317 +574333,299.44,73.366 +574334,301.44,74.014 +574335,303.35,74.674 +574336,305.18,75.341 +574337,298.16,73.298 +574338,300.13,73.977 +574339,302.01,74.667 +574340,303.82,75.365 +574341,296.88,73.23 +574342,298.82,73.94 +574343,300.68,74.66 +574344,302.46,75.388 +574345,295.6,73.163 +574346,297.52,73.904 +574347,299.35,74.653 +574348,301.11,75.41 +574349,294.33,73.096 +574350,296.21,73.867 +574351,298.01,74.646 +574352,299.74,75.432 +574353,293.05,73.03 +574354,294.9,73.831 +574355,296.68,74.639 +574356,298.38,75.453 +574357,291.78,72.965 +574358,293.6,73.794 +574359,295.34,74.632 +574360,297.02,75.474 +574361,290.5,72.901 +574362,292.29,73.759 +574363,294.01,74.624 +574364,295.65,75.494 +574365,289.23,72.837 +574366,290.99,73.723 +574367,292.67,74.616 +574368,294.29,75.513 +574369,287.96,72.774 +574370,289.69,73.688 +574371,291.34,74.608 +574372,292.92,75.532 +574373,286.69,72.711 +574374,288.38,73.652 +574375,290,74.599 +574376,291.55,75.549 +574377,285.42,72.65 +574378,287.08,73.618 +574379,288.66,74.59 +574380,290.18,75.566 +574381,284.16,72.589 +574382,285.78,73.583 +574383,287.33,74.582 +574384,288.81,75.583 +574385,282.89,72.529 +574386,284.48,73.549 +574387,285.99,74.572 +574388,287.44,75.598 +574389,281.63,72.47 +574390,283.17,73.514 +574391,284.65,74.563 +574392,286.07,75.613 +574393,280.37,72.412 +574394,281.87,73.481 +574395,283.31,74.553 +574396,284.69,75.626 +574397,279.1,72.354 +574398,280.57,73.447 +574399,281.98,74.543 +574400,283.32,75.639 +574401,277.84,72.298 +574402,279.27,73.414 +574403,280.64,74.533 +574404,281.94,75.651 +574405,276.59,72.242 +574406,277.97,73.381 +574407,279.3,74.522 +574408,280.56,75.662 +574409,275.33,72.187 +574410,276.67,73.349 +574411,277.96,74.511 +574412,279.18,75.672 +574413,274.07,72.134 +574414,275.37,73.316 +574415,276.62,74.5 +574416,277.8,75.682 +574417,272.81,72.081 +574418,274.07,73.284 +574419,275.28,74.488 +574420,276.42,75.69 +574421,271.56,72.029 +574422,272.78,73.253 +574423,273.94,74.476 +574424,275.04,75.697 +574425,270.3,71.979 +574426,271.48,73.222 +574427,272.6,74.464 +574428,273.66,75.704 +574429,269.05,71.929 +574430,270.18,73.191 +574431,271.25,74.451 +574432,272.28,75.709 +574433,267.8,71.88 +574434,268.88,73.16 +574435,269.91,74.438 +574436,270.89,75.714 +574437,266.55,71.833 +574438,267.58,73.13 +574439,268.57,74.425 +574440,269.51,75.717 +574441,265.3,71.786 +574442,266.29,73.1 +574443,267.23,74.412 +574444,268.12,75.719 +574445,264.05,71.741 +574446,264.99,73.07 +574447,265.89,74.398 +574448,266.74,75.721 +574449,262.8,71.697 +574450,263.69,73.041 +574451,264.54,74.383 +574452,265.35,75.721 +574453,261.55,71.653 +574454,262.4,73.012 +574455,263.2,74.369 +574456,263.96,75.72 +574457,260.3,71.611 +574458,261.1,72.984 +574459,261.86,74.354 +574460,262.57,75.718 +574461,259.05,71.57 +574462,259.81,72.956 +574463,260.52,74.338 +574464,261.18,75.715 +574465,257.8,71.53 +574466,258.51,72.928 +574467,259.17,74.323 +574468,259.79,75.711 +574469,256.56,71.492 +574470,257.21,72.901 +574471,257.83,74.306 +574472,258.4,75.706 +574473,255.31,71.454 +574474,255.92,72.874 +574475,256.49,74.29 +574476,257.01,75.7 +574477,254.07,71.418 +574478,254.62,72.848 +574479,255.14,74.273 +574480,255.62,75.692 +574481,252.82,71.383 +574482,253.33,72.822 +574483,253.8,74.256 +574484,254.23,75.684 +574485,251.58,71.349 +574486,252.03,72.796 +574487,252.45,74.238 +574488,252.84,75.674 +574489,250.33,71.316 +574490,250.74,72.77 +574491,251.11,74.22 +574492,251.44,75.663 +574493,249.09,71.284 +574494,249.45,72.746 +574495,249.77,74.202 +574496,250.05,75.651 +574497,247.84,71.254 +574498,248.15,72.721 +574499,248.42,74.183 +574500,248.66,75.638 +574501,246.6,71.225 +574502,246.86,72.697 +574503,247.08,74.164 +574504,247.26,75.624 +574505,245.36,71.197 +574506,245.56,72.673 +574507,245.73,74.144 +574508,245.87,75.608 +574509,244.11,71.17 +574510,244.27,72.65 +574511,244.39,74.124 +574512,244.48,75.592 +574513,242.87,71.144 +574514,242.97,72.627 +574515,243.04,74.104 +574516,243.08,75.574 +574517,241.63,71.12 +574518,241.68,72.604 +574519,241.7,74.083 +574520,241.69,75.555 +574521,240.38,71.097 +574522,240.39,72.582 +574523,240.36,74.062 +574524,240.29,75.535 +574525,239.14,71.075 +574526,239.09,72.56 +574527,239.01,74.04 +574528,238.9,75.514 +574529,237.9,71.054 +574530,237.8,72.539 +574531,237.67,74.019 +574532,237.5,75.491 +574533,236.65,71.035 +574534,236.5,72.518 +574535,236.32,73.996 +574536,236.11,75.468 +574537,235.41,71.017 +574538,235.21,72.498 +574539,234.98,73.974 +574540,234.72,75.443 +574541,234.17,71 +574542,233.92,72.478 +574543,233.63,73.95 +574544,233.32,75.417 +574545,232.92,70.984 +574546,232.62,72.458 +574547,232.29,73.927 +574548,231.93,75.39 +574549,231.68,70.969 +574550,231.33,72.438 +574551,230.95,73.903 +574552,230.53,75.362 +574553,230.43,70.956 +574554,230.03,72.42 +574555,229.6,73.879 +574556,229.14,75.332 +574557,229.19,70.944 +574558,228.74,72.401 +574559,228.26,73.854 +574560,227.74,75.301 +574561,227.94,70.933 +574562,227.44,72.383 +574563,226.91,73.829 +574564,226.35,75.27 +574565,226.7,70.923 +574566,226.15,72.365 +574567,225.57,73.804 +574568,224.96,75.237 +574569,225.45,70.914 +574570,224.85,72.348 +574571,224.23,73.778 +574572,223.57,75.203 +574573,224.2,70.907 +574574,223.56,72.331 +574575,222.88,73.752 +574576,222.17,75.168 +574577,222.96,70.901 +574578,222.26,72.314 +574579,221.54,73.725 +574580,220.78,75.131 +574581,221.71,70.895 +574582,220.97,72.298 +574583,220.2,73.698 +574584,219.39,75.094 +574585,220.46,70.892 +574586,219.67,72.282 +574587,218.85,73.671 +574588,218,75.055 +574589,219.21,70.889 +574590,218.38,72.267 +574591,217.51,73.643 +574592,216.61,75.016 +574593,217.96,70.887 +574594,217.08,72.252 +574595,216.17,73.615 +574596,215.22,74.975 +574597,216.71,70.886 +574598,215.79,72.237 +574599,214.83,73.586 +574600,213.83,74.933 +574601,215.46,70.887 +574602,214.49,72.223 +574603,213.48,73.558 +574604,212.44,74.89 +574605,214.21,70.888 +574606,213.19,72.209 +574607,212.14,73.528 +574608,211.05,74.846 +574609,212.96,70.891 +574610,211.9,72.195 +574611,210.8,73.499 +574612,209.67,74.801 +574613,211.7,70.895 +574614,210.6,72.182 +574615,209.46,73.469 +574616,208.28,74.755 +574617,210.45,70.9 +574618,209.3,72.169 +574619,208.12,73.439 +574620,206.89,74.708 +574621,209.19,70.905 +574622,208.01,72.157 +574623,206.78,73.408 +574624,205.51,74.66 +574625,207.94,70.912 +574626,206.71,72.144 +574627,205.44,73.377 +574628,204.13,74.611 +574629,206.68,70.92 +574630,205.41,72.132 +574631,204.1,73.346 +574632,202.74,74.56 +574633,205.42,70.929 +574634,204.11,72.121 +574635,202.76,73.315 +574636,201.36,74.509 +574637,204.16,70.939 +574638,202.81,72.11 +574639,201.42,73.283 +574640,199.98,74.457 +574641,202.9,70.949 +574642,201.51,72.099 +574643,200.08,73.251 +574644,198.6,74.404 +574645,201.64,70.961 +574646,200.21,72.088 +574647,198.74,73.218 +574648,197.22,74.35 +574649,200.38,70.974 +574650,198.91,72.078 +574651,197.4,73.185 +574652,195.84,74.296 +574653,199.11,70.987 +574654,197.61,72.068 +574655,196.07,73.152 +574656,194.47,74.24 +574657,197.85,71.001 +574658,196.31,72.058 +574659,194.73,73.119 +574660,193.09,74.183 +574661,196.58,71.017 +574662,195.01,72.049 +574663,193.39,73.085 +574664,191.71,74.126 +574665,195.32,71.033 +574666,193.71,72.04 +574667,192.06,73.051 +574668,190.34,74.067 +574669,194.05,71.05 +574670,192.41,72.031 +574671,190.72,73.017 +574672,188.97,74.008 +574673,192.78,71.067 +574674,191.11,72.022 +574675,189.38,72.983 +574676,187.6,73.948 +574677,191.51,71.086 +574678,189.81,72.014 +574679,188.05,72.948 +574680,186.23,73.888 +574681,190.23,71.105 +574682,188.5,72.006 +574683,186.71,72.913 +574684,184.86,73.826 +574685,188.96,71.125 +574686,187.2,71.998 +574687,185.38,72.878 +574688,183.49,73.764 +574689,187.69,71.145 +574690,185.9,71.99 +574691,184.05,72.842 +574692,182.13,73.701 +574693,186.41,71.166 +574694,184.59,71.983 +574695,182.71,72.806 +574696,180.76,73.637 +574697,185.13,71.188 +574698,183.29,71.976 +574699,181.38,72.771 +574700,179.4,73.573 +574701,183.85,71.211 +574702,181.98,71.969 +574703,180.05,72.734 +574704,178.04,73.508 +574705,182.57,71.234 +574706,180.68,71.962 +574707,178.72,72.698 +574708,176.68,73.442 +574709,181.29,71.258 +574710,179.37,71.955 +574711,177.38,72.661 +574712,175.32,73.376 +574713,180.01,71.282 +574714,178.06,71.949 +574715,176.05,72.625 +574716,173.96,73.309 +574717,178.72,71.307 +574718,176.76,71.943 +574719,174.72,72.588 +574720,172.61,73.242 +574721,177.43,71.332 +574722,175.45,71.937 +574723,173.39,72.551 +574724,171.26,73.174 +574725,176.15,71.358 +574726,174.14,71.931 +574727,172.06,72.513 +574728,169.9,73.106 +574729,174.86,71.384 +574730,172.83,71.925 +574731,170.74,72.476 +574732,168.55,73.037 +574733,173.57,71.411 +574734,171.52,71.92 +574735,169.41,72.438 +574736,167.2,72.967 +574737,172.27,71.438 +574738,170.21,71.914 +574739,168.08,72.401 +574740,165.86,72.898 +574741,170.98,71.466 +574742,168.9,71.909 +574743,166.75,72.363 +574744,164.51,72.827 +574745,169.68,71.493 +574746,167.59,71.904 +574747,165.43,72.325 +574748,163.17,72.757 +574749,168.38,71.522 +574750,166.28,71.899 +574751,164.1,72.287 +574752,161.83,72.686 +574753,167.09,71.55 +574754,164.97,71.894 +574755,162.77,72.249 +574756,160.48,72.615 +574757,165.79,71.579 +574758,163.66,71.889 +574759,161.45,72.21 +574760,159.15,72.543 +574761,164.48,71.608 +574762,162.35,71.884 +574763,160.13,72.172 +574764,157.81,72.471 +574765,163.18,71.637 +574766,161.03,71.88 +574767,158.8,72.133 +574768,156.47,72.399 +574769,161.87,71.666 +574770,159.72,71.875 +574771,157.48,72.095 +574772,155.14,72.327 +574773,160.57,71.696 +574774,158.4,71.87 +574775,156.16,72.056 +574776,153.81,72.254 +574777,159.26,71.725 +574778,157.09,71.866 +574779,154.83,72.018 +574780,152.48,72.181 +574781,157.95,71.755 +574782,155.77,71.861 +574783,153.51,71.979 +574784,151.15,72.108 +574785,156.63,71.785 +574786,154.46,71.857 +574787,152.19,71.94 +574788,149.82,72.035 +574789,155.32,71.814 +574790,153.14,71.853 +574791,150.87,71.901 +574792,148.5,71.962 +574793,154.01,71.844 +574794,151.82,71.848 +574795,149.55,71.863 +574796,147.18,71.889 +574797,152.69,71.874 +574798,150.51,71.844 +574799,148.23,71.824 +574800,145.86,71.816 +574801,151.37,71.904 +574802,149.19,71.839 +574803,146.92,71.785 +574804,144.54,71.742 +574805,150.05,71.934 +574806,147.87,71.835 +574807,145.6,71.746 +574808,143.22,71.669 +574809,148.73,71.963 +574810,146.55,71.83 +574811,144.28,71.707 +574812,141.91,71.596 +574813,147.4,71.993 +574814,145.23,71.826 +574815,142.96,71.669 +574816,140.59,71.523 +574817,146.08,72.022 +574818,143.91,71.821 +574819,141.65,71.63 +574820,139.28,71.45 +574821,144.75,72.052 +574822,142.59,71.817 +574823,140.33,71.591 +574824,137.97,71.377 +574825,143.42,72.081 +574826,141.27,71.812 +574827,139.02,71.553 +574828,136.66,71.304 +574829,142.09,72.109 +574830,139.95,71.807 +574831,137.71,71.514 +574832,135.36,71.232 +574833,140.76,72.138 +574834,138.62,71.803 +574835,136.39,71.476 +574836,134.05,71.16 +574837,139.43,72.166 +574838,137.3,71.798 +574839,135.08,71.438 +574840,132.75,71.088 +574841,138.09,72.194 +574842,135.98,71.793 +574843,133.77,71.399 +574844,131.45,71.016 +574845,136.75,72.222 +574846,134.65,71.788 +574847,132.45,71.361 +574848,130.15,70.944 +574849,135.42,72.249 +574850,133.33,71.782 +574851,131.14,71.323 +574852,128.85,70.873 +574853,134.08,72.276 +574854,132,71.777 +574855,129.83,71.285 +574856,127.56,70.802 +574857,132.73,72.302 +574858,130.68,71.771 +574859,128.52,71.247 +574860,126.26,70.732 +574861,131.39,72.328 +574862,129.35,71.766 +574863,127.21,71.21 +574864,124.97,70.662 +574865,130.05,72.354 +574866,128.02,71.76 +574867,125.91,71.172 +574868,123.68,70.592 +574869,128.7,72.379 +574870,126.7,71.754 +574871,124.6,71.135 +574872,122.39,70.523 +574873,127.35,72.404 +574874,125.37,71.748 +574875,123.29,71.097 +574876,121.11,70.454 +574877,126,72.428 +574878,124.04,71.742 +574879,121.98,71.06 +574880,119.82,70.386 +574881,124.65,72.451 +574882,122.71,71.735 +574883,120.68,71.024 +574884,118.54,70.318 +574885,123.3,72.474 +574886,121.38,71.729 +574887,119.37,70.987 +574888,117.26,70.251 +574889,121.95,72.496 +574890,120.05,71.722 +574891,118.06,70.95 +574892,115.98,70.185 +574893,120.59,72.518 +574894,118.72,71.715 +574895,116.76,70.914 +574896,114.7,70.119 +574897,119.23,72.539 +574898,117.39,71.707 +574899,115.45,70.878 +574900,113.42,70.054 +574901,117.88,72.559 +574902,116.06,71.7 +574903,114.15,70.842 +574904,112.15,69.989 +574905,116.52,72.579 +574906,114.73,71.692 +574907,112.85,70.807 +574908,110.87,69.925 +574909,115.16,72.598 +574910,113.39,71.684 +574911,111.54,70.771 +574912,109.6,69.862 +574913,113.79,72.616 +574914,112.06,71.676 +574915,110.24,70.736 +574916,108.33,69.799 +574917,112.43,72.634 +574918,110.73,71.667 +574919,108.94,70.701 +574920,107.06,69.738 +574921,111.07,72.65 +574922,109.39,71.658 +574923,107.64,70.667 +574924,105.79,69.677 +574925,109.7,72.666 +574926,108.06,71.649 +574927,106.34,70.632 +574928,104.53,69.617 +574929,108.33,72.681 +574930,106.73,71.64 +574931,105.04,70.598 +574932,103.26,69.557 +574933,106.96,72.695 +574934,105.39,71.63 +574935,103.74,70.564 +574936,102,69.499 +574937,105.59,72.709 +574938,104.06,71.621 +574939,102.44,70.531 +574940,100.73,69.441 +574941,104.22,72.721 +574942,102.72,71.61 +574943,101.14,70.498 +574944,99.474,69.384 +574945,102.85,72.733 +574946,101.38,71.6 +574947,99.841,70.465 +574948,98.214,69.328 +574949,101.48,72.743 +574950,100.05,71.589 +574951,98.543,70.432 +574952,96.956,69.274 +574953,100.1,72.753 +574954,98.71,71.578 +574955,97.245,70.4 +574956,95.699,69.219 +574957,98.727,72.762 +574958,97.373,71.567 +574959,95.947,70.368 +574960,94.443,69.166 +574961,97.35,72.769 +574962,96.035,71.555 +574963,94.65,70.336 +574964,93.188,69.114 +574965,95.972,72.776 +574966,94.697,71.543 +574967,93.354,70.305 +574968,91.934,69.063 +574969,94.593,72.782 +574970,93.359,71.53 +574971,92.057,70.274 +574972,90.682,69.013 +574973,93.214,72.787 +574974,92.021,71.518 +574975,90.761,70.243 +574976,89.43,68.964 +574977,91.833,72.791 +574978,90.682,71.505 +574979,89.466,70.212 +574980,88.18,68.916 +574981,90.451,72.793 +574982,89.343,71.491 +574983,88.171,70.182 +574984,86.93,68.869 +574985,89.069,72.795 +574986,88.003,71.477 +574987,86.876,70.153 +574988,85.681,68.823 +574989,87.685,72.796 +574990,86.663,71.463 +574991,85.581,70.124 +574992,84.434,68.778 +574993,86.301,72.795 +574994,85.323,71.449 +574995,84.287,70.095 +574996,83.187,68.735 +574997,84.916,72.794 +574998,83.983,71.434 +574999,82.993,70.066 +575000,81.941,68.692 +575001,83.53,72.791 +575002,82.642,71.419 +575003,81.699,70.038 +575004,80.696,68.65 +575005,82.143,72.788 +575006,81.302,71.403 +575007,80.406,70.01 +575008,79.451,68.61 +575009,80.756,72.783 +575010,79.96,71.387 +575011,79.112,69.982 +575012,78.207,68.571 +575013,79.368,72.777 +575014,78.619,71.371 +575015,77.819,69.955 +575016,76.964,68.533 +575017,77.979,72.77 +575018,77.278,71.354 +575019,76.527,69.929 +575020,75.722,68.496 +575021,76.59,72.762 +575022,75.936,71.337 +575023,75.234,69.902 +575024,74.48,68.46 +575025,75.2,72.753 +575026,74.594,71.319 +575027,73.942,69.876 +575028,73.239,68.426 +575029,73.809,72.742 +575030,73.252,71.301 +575031,72.65,69.851 +575032,71.998,68.392 +575033,72.418,72.73 +575034,71.91,71.283 +575035,71.358,69.826 +575036,70.758,68.36 +575037,71.027,72.718 +575038,70.568,71.264 +575039,70.066,69.801 +575040,69.518,68.329 +575041,69.635,72.704 +575042,69.226,71.245 +575043,68.774,69.776 +575044,68.278,68.299 +575045,68.243,72.689 +575046,67.883,71.226 +575047,67.483,69.753 +575048,67.039,68.27 +575049,66.85,72.672 +575050,66.541,71.206 +575051,66.191,69.729 +575052,65.8,68.243 +575053,65.457,72.655 +575054,65.198,71.186 +575055,64.9,69.706 +575056,64.562,68.217 +575057,64.064,72.636 +575058,63.855,71.165 +575059,63.609,69.683 +575060,63.323,68.192 +575061,62.67,72.616 +575062,62.512,71.144 +575063,62.318,69.661 +575064,62.085,68.168 +575065,61.276,72.595 +575066,61.169,71.122 +575067,61.027,69.639 +575068,60.847,68.146 +575069,59.882,72.573 +575070,59.826,71.1 +575071,59.736,69.617 +575072,59.609,68.124 +575073,58.488,72.55 +575074,58.483,71.078 +575075,58.445,69.596 +575076,58.371,68.104 +575077,57.094,72.525 +575078,57.14,71.055 +575079,57.154,69.575 +575080,57.133,68.085 +575081,55.699,72.499 +575082,55.797,71.032 +575083,55.863,69.555 +575084,55.895,68.068 +575085,54.305,72.472 +575086,54.454,71.009 +575087,54.572,69.535 +575088,54.657,68.051 +575089,52.91,72.444 +575090,53.112,70.985 +575091,53.281,69.515 +575092,53.419,68.036 +575093,51.516,72.415 +575094,51.769,70.96 +575095,51.99,69.496 +575096,52.181,68.022 +575097,50.122,72.384 +575098,50.426,70.936 +575099,50.699,69.477 +575100,50.942,68.009 +575101,48.727,72.353 +575102,49.083,70.911 +575103,49.408,69.458 +575104,49.704,67.998 +575105,47.333,72.32 +575106,47.74,70.885 +575107,48.117,69.44 +575108,48.465,67.987 +575109,45.939,72.286 +575110,46.398,70.859 +575111,46.826,69.423 +575112,47.225,67.978 +575113,44.546,72.251 +575114,45.055,70.833 +575115,45.535,69.405 +575116,45.986,67.97 +575117,43.152,72.215 +575118,43.713,70.806 +575119,44.244,69.389 +575120,44.746,67.963 +575121,41.759,72.177 +575122,42.37,70.779 +575123,42.952,69.372 +575124,43.505,67.957 +575125,40.366,72.139 +575126,41.028,70.752 +575127,41.661,69.356 +575128,42.264,67.953 +575129,38.974,72.099 +575130,39.686,70.724 +575131,40.369,69.34 +575132,41.023,67.949 +575133,37.582,72.058 +575134,38.345,70.696 +575135,39.077,69.325 +575136,39.78,67.947 +575137,36.19,72.017 +575138,37.003,70.667 +575139,37.785,69.31 +575140,38.538,67.946 +575141,34.799,71.974 +575142,35.661,70.638 +575143,36.493,69.295 +575144,37.295,67.946 +575145,33.408,71.93 +575146,34.32,70.609 +575147,35.2,69.281 +575148,36.051,67.947 +575149,32.018,71.884 +575150,32.979,70.579 +575151,33.908,69.267 +575152,34.806,67.949 +575153,30.629,71.838 +575154,31.638,70.549 +575155,32.615,69.253 +575156,33.561,67.952 +575157,29.24,71.791 +575158,30.298,70.519 +575159,31.322,69.24 +575160,32.314,67.956 +575161,27.852,71.743 +575162,28.958,70.488 +575163,30.028,69.227 +575164,31.067,67.962 +575165,26.465,71.694 +575166,27.618,70.457 +575167,28.735,69.215 +575168,29.82,67.968 +575169,25.078,71.643 +575170,26.278,70.426 +575171,27.441,69.203 +575172,28.571,67.975 +575173,23.692,71.592 +575174,24.938,70.394 +575175,26.147,69.191 +575176,27.321,67.984 +575177,22.307,71.54 +575178,23.599,70.362 +575179,24.852,69.179 +575180,26.071,67.993 +575181,20.923,71.486 +575182,22.26,70.329 +575183,23.558,69.168 +575184,24.819,68.003 +575185,19.54,71.432 +575186,20.922,70.297 +575187,22.263,69.157 +575188,23.567,68.015 +575189,18.157,71.377 +575190,19.584,70.264 +575191,20.967,69.146 +575192,22.313,68.027 +575193,16.776,71.321 +575194,18.246,70.23 +575195,19.672,69.136 +575196,21.058,68.04 +575197,15.396,71.264 +575198,16.909,70.197 +575199,18.376,69.126 +575200,19.802,68.054 +575201,14.016,71.206 +575202,15.571,70.163 +575203,17.079,69.116 +575204,18.546,68.069 +575205,12.638,71.148 +575206,14.235,70.128 +575207,15.783,69.107 +575208,17.287,68.084 +575209,11.261,71.088 +575210,12.898,70.094 +575211,14.485,69.098 +575212,16.028,68.101 +575213,9.8848,71.028 +575214,11.563,70.059 +575215,13.188,69.089 +575216,14.768,68.118 +575217,8.51,70.967 +575218,10.227,70.024 +575219,11.89,69.08 +575220,13.506,68.136 +575221,7.1363,70.905 +575222,8.892,69.989 +575223,10.592,69.072 +575224,12.243,68.155 +575225,5.7639,70.842 +575226,7.5574,69.953 +575227,9.2931,69.063 +575228,10.979,68.175 +575229,4.3928,70.779 +575230,6.2232,69.917 +575231,7.994,69.055 +575232,9.7129,68.195 +575233,3.023,70.715 +575234,4.8895,69.881 +575235,6.6944,69.048 +575236,8.4458,68.216 +575237,1.6545,70.65 +575238,3.5562,69.845 +575239,5.3944,69.04 +575240,7.1775,68.238 +575241,0.28735,70.584 +575242,2.2234,69.808 +575243,4.094,69.033 +575244,5.9077,68.26 +575245,358.92,70.518 +575246,0.89114,69.771 +575247,2.7931,69.026 +575248,4.6365,68.283 +575249,357.56,70.451 +575250,359.56,69.734 +575251,1.4917,69.019 +575252,3.3639,68.306 +575253,356.19,70.384 +575254,358.23,69.697 +575255,0.18988,69.012 +575256,2.0898,68.331 +575257,354.83,70.316 +575258,356.9,69.66 +575259,358.89,69.006 +575260,0.81427,68.355 +575261,353.47,70.248 +575262,355.57,69.622 +575263,357.58,69 +575264,359.54,68.38 +575265,352.11,70.179 +575266,354.24,69.584 +575267,356.28,68.993 +575268,358.26,68.406 +575269,350.76,70.109 +575270,352.91,69.546 +575271,354.98,68.987 +575272,356.98,68.432 +575273,349.4,70.039 +575274,351.58,69.508 +575275,353.67,68.981 +575276,355.7,68.459 +575277,348.05,69.968 +575278,350.25,69.47 +575279,352.37,68.976 +575280,354.41,68.486 +575281,346.7,69.897 +575282,348.92,69.432 +575283,351.06,68.97 +575284,353.13,68.513 +575285,345.35,69.826 +575286,347.6,69.393 +575287,349.76,68.965 +575288,351.84,68.541 +575289,344,69.754 +575290,346.27,69.355 +575291,348.45,68.959 +575292,350.55,68.569 +575293,342.65,69.682 +575294,344.94,69.316 +575295,347.14,68.954 +575296,349.27,68.597 +575297,341.31,69.61 +575298,343.62,69.277 +575299,345.84,68.949 +575300,347.97,68.626 +575301,339.96,69.537 +575302,342.29,69.238 +575303,344.53,68.944 +575304,346.68,68.655 +575305,338.62,69.464 +575306,340.97,69.199 +575307,343.22,68.939 +575308,345.39,68.684 +575309,337.28,69.391 +575310,339.65,69.16 +575311,341.91,68.934 +575312,344.09,68.713 +575313,335.94,69.317 +575314,338.32,69.12 +575315,340.6,68.929 +575316,342.79,68.743 +575317,334.61,69.243 +575318,337,69.081 +575319,339.29,68.924 +575320,341.49,68.773 +575321,333.27,69.17 +575322,335.68,69.042 +575323,337.98,68.919 +575324,340.19,68.802 +575325,331.94,69.096 +575326,334.36,69.002 +575327,336.67,68.915 +575328,338.89,68.832 +575329,330.61,69.021 +575330,333.04,68.963 +575331,335.36,68.91 +575332,337.58,68.862 +575333,329.28,68.947 +575334,331.72,68.923 +575335,334.05,68.905 +575336,336.28,68.892 +575337,327.95,68.873 +575338,330.4,68.884 +575339,332.73,68.9 +575340,334.97,68.922 +575341,326.62,68.799 +575342,329.08,68.844 +575343,331.42,68.896 +575344,333.66,68.952 +575345,325.3,68.724 +575346,327.76,68.805 +575347,330.1,68.891 +575348,332.35,68.982 +575349,323.98,68.65 +575350,326.44,68.765 +575351,328.79,68.886 +575352,331.04,69.012 +575353,322.66,68.576 +575354,325.13,68.726 +575355,327.47,68.881 +575356,329.72,69.041 +575357,321.34,68.502 +575358,323.81,68.686 +575359,326.16,68.876 +575360,328.41,69.071 +575361,320.03,68.428 +575362,322.49,68.647 +575363,324.84,68.871 +575364,327.09,69.1 +575365,318.71,68.354 +575366,321.18,68.608 +575367,323.53,68.866 +575368,325.77,69.129 +575369,317.4,68.28 +575370,319.86,68.568 +575371,322.21,68.861 +575372,324.45,69.158 +575373,316.09,68.207 +575374,318.55,68.529 +575375,320.89,68.856 +575376,323.12,69.187 +575377,314.78,68.133 +575378,317.24,68.49 +575379,319.57,68.851 +575380,321.8,69.215 +575381,313.47,68.06 +575382,315.92,68.451 +575383,318.25,68.846 +575384,320.47,69.244 +575385,312.17,67.988 +575386,314.61,68.412 +575387,316.93,68.84 +575388,319.14,69.271 +575389,310.87,67.915 +575390,313.3,68.373 +575391,315.61,68.834 +575392,317.81,69.299 +575393,309.57,67.843 +575394,311.99,68.334 +575395,314.29,68.829 +575396,316.48,69.326 +575397,308.27,67.771 +575398,310.68,68.295 +575399,312.97,68.823 +575400,315.15,69.352 +575401,306.97,67.7 +575402,309.37,68.257 +575403,311.65,68.817 +575404,313.81,69.379 +575405,305.67,67.629 +575406,308.06,68.219 +575407,310.32,68.811 +575408,312.48,69.404 +575409,304.38,67.558 +575410,306.75,68.18 +575411,309,68.804 +575412,311.14,69.43 +575413,303.09,67.488 +575414,305.45,68.142 +575415,307.68,68.798 +575416,309.8,69.454 +575417,301.8,67.419 +575418,304.14,68.104 +575419,306.35,68.791 +575420,308.46,69.479 +575421,300.51,67.35 +575422,302.83,68.066 +575423,305.03,68.784 +575424,307.11,69.502 +575425,299.23,67.281 +575426,301.53,68.029 +575427,303.7,68.777 +575428,305.77,69.525 +575429,297.94,67.213 +575430,300.22,67.991 +575431,302.38,68.77 +575432,304.42,69.548 +575433,296.66,67.146 +575434,298.92,67.954 +575435,301.05,68.763 +575436,303.08,69.57 +575437,295.38,67.079 +575438,297.61,67.917 +575439,299.72,68.755 +575440,301.73,69.591 +575441,294.1,67.013 +575442,296.31,67.88 +575443,298.4,68.747 +575444,300.38,69.611 +575445,292.82,66.948 +575446,295.01,67.844 +575447,297.07,68.739 +575448,299.02,69.631 +575449,291.55,66.883 +575450,293.7,67.808 +575451,295.74,68.73 +575452,297.67,69.65 +575453,290.27,66.819 +575454,292.4,67.771 +575455,294.41,68.722 +575456,296.31,69.669 +575457,289,66.756 +575458,291.1,67.736 +575459,293.08,68.713 +575460,294.96,69.686 +575461,287.73,66.694 +575462,289.8,67.7 +575463,291.75,68.704 +575464,293.6,69.703 +575465,286.46,66.632 +575466,288.5,67.665 +575467,290.42,68.694 +575468,292.24,69.719 +575469,285.19,66.571 +575470,287.2,67.63 +575471,289.09,68.684 +575472,290.88,69.734 +575473,283.93,66.511 +575474,285.9,67.595 +575475,287.76,68.674 +575476,289.52,69.748 +575477,282.66,66.452 +575478,284.6,67.56 +575479,286.43,68.664 +575480,288.15,69.762 +575481,281.4,66.394 +575482,283.3,67.526 +575483,285.1,68.653 +575484,286.79,69.774 +575485,280.14,66.336 +575486,282.01,67.492 +575487,283.76,68.642 +575488,285.42,69.786 +575489,278.88,66.28 +575490,280.71,67.458 +575491,282.43,68.631 +575492,284.06,69.796 +575493,277.62,66.224 +575494,279.41,67.425 +575495,281.1,68.619 +575496,282.69,69.806 +575497,276.36,66.17 +575498,278.12,67.392 +575499,279.76,68.608 +575500,281.32,69.815 +575501,275.11,66.116 +575502,276.82,67.359 +575503,278.43,68.595 +575504,279.95,69.823 +575505,273.85,66.064 +575506,275.52,67.327 +575507,277.09,68.583 +575508,278.57,69.83 +575509,272.6,66.012 +575510,274.23,67.295 +575511,275.76,68.57 +575512,277.2,69.835 +575513,271.35,65.961 +575514,272.93,67.263 +575515,274.42,68.556 +575516,275.82,69.84 +575517,270.1,65.912 +575518,271.64,67.232 +575519,273.09,68.543 +575520,274.45,69.844 +575521,268.85,65.863 +575522,270.35,67.201 +575523,271.75,68.529 +575524,273.07,69.847 +575525,267.6,65.816 +575526,269.05,67.17 +575527,270.41,68.514 +575528,271.69,69.848 +575529,266.35,65.77 +575530,267.76,67.139 +575531,269.08,68.5 +575532,270.32,69.849 +575533,265.11,65.724 +575534,266.47,67.109 +575535,267.74,68.485 +575536,268.94,69.848 +575537,263.86,65.68 +575538,265.17,67.08 +575539,266.4,68.469 +575540,267.56,69.847 +575541,262.62,65.637 +575542,263.88,67.051 +575543,265.06,68.453 +575544,266.17,69.844 +575545,261.38,65.595 +575546,262.59,67.022 +575547,263.73,68.437 +575548,264.79,69.84 +575549,260.13,65.554 +575550,261.3,66.993 +575551,262.39,68.42 +575552,263.41,69.835 +575553,258.89,65.515 +575554,260.01,66.965 +575555,261.05,68.403 +575556,262.02,69.829 +575557,257.65,65.476 +575558,258.72,66.937 +575559,259.71,68.386 +575560,260.64,69.822 +575561,256.41,65.439 +575562,257.43,66.91 +575563,258.37,68.368 +575564,259.25,69.813 +575565,255.17,65.403 +575566,256.14,66.883 +575567,257.03,68.35 +575568,257.87,69.804 +575569,253.94,65.368 +575570,254.85,66.856 +575571,255.69,68.331 +575572,256.48,69.793 +575573,252.7,65.335 +575574,253.56,66.83 +575575,254.35,68.312 +575576,255.09,69.781 +575577,251.46,65.302 +575578,252.27,66.804 +575579,253.01,68.293 +575580,253.7,69.768 +575581,250.22,65.271 +575582,250.98,66.779 +575583,251.67,68.273 +575584,252.31,69.753 +575585,248.99,65.241 +575586,249.69,66.753 +575587,250.33,68.253 +575588,250.92,69.738 +575589,247.75,65.212 +575590,248.4,66.729 +575591,248.99,68.232 +575592,249.53,69.721 +575593,246.52,65.185 +575594,247.11,66.705 +575595,247.65,68.211 +575596,248.14,69.703 +575597,245.28,65.158 +575598,245.82,66.681 +575599,246.31,68.19 +575600,246.75,69.684 +575601,244.05,65.133 +575602,244.53,66.657 +575603,244.97,68.168 +575604,245.36,69.664 +575605,242.82,65.109 +575606,243.25,66.634 +575607,243.63,68.145 +575608,243.97,69.642 +575609,241.58,65.087 +575610,241.96,66.612 +575611,242.29,68.123 +575612,242.57,69.619 +575613,240.35,65.065 +575614,240.67,66.589 +575615,240.95,68.1 +575616,241.18,69.595 +575617,239.12,65.045 +575618,239.38,66.567 +575619,239.6,68.076 +575620,239.79,69.57 +575621,237.88,65.026 +575622,238.09,66.546 +575623,238.26,68.052 +575624,238.39,69.543 +575625,236.65,65.009 +575626,236.81,66.525 +575627,236.92,68.028 +575628,237,69.516 +575629,235.42,64.992 +575630,235.52,66.504 +575631,235.58,68.003 +575632,235.61,69.487 +575633,234.19,64.977 +575634,234.23,66.484 +575635,234.24,67.978 +575636,234.21,69.457 +575637,232.95,64.963 +575638,232.94,66.464 +575639,232.9,67.952 +575640,232.82,69.425 +575641,231.72,64.95 +575642,231.66,66.445 +575643,231.56,67.926 +575644,231.42,69.393 +575645,230.49,64.938 +575646,230.37,66.425 +575647,230.21,67.9 +575648,230.03,69.359 +575649,229.26,64.928 +575650,229.08,66.407 +575651,228.87,67.873 +575652,228.63,69.324 +575653,228.02,64.919 +575654,227.79,66.388 +575655,227.53,67.845 +575656,227.24,69.288 +575657,226.79,64.911 +575658,226.5,66.371 +575659,226.19,67.818 +575660,225.85,69.251 +575661,225.56,64.904 +575662,225.22,66.353 +575663,224.85,67.79 +575664,224.45,69.213 +575665,224.32,64.898 +575666,223.93,66.336 +575667,223.51,67.761 +575668,223.06,69.173 +575669,223.09,64.894 +575670,222.64,66.319 +575671,222.17,67.732 +575672,221.67,69.132 +575673,221.85,64.891 +575674,221.35,66.303 +575675,220.83,67.703 +575676,220.27,69.09 +575677,220.62,64.889 +575678,220.06,66.287 +575679,219.49,67.673 +575680,218.88,69.047 +575681,219.38,64.888 +575682,218.78,66.271 +575683,218.14,67.643 +575684,217.49,69.003 +575685,218.15,64.888 +575686,217.49,66.256 +575687,216.8,67.613 +575688,216.09,68.958 +575689,216.91,64.889 +575690,216.2,66.241 +575691,215.46,67.582 +575692,214.7,68.911 +575693,215.67,64.891 +575694,214.91,66.226 +575695,214.12,67.551 +575696,213.31,68.864 +575697,214.43,64.895 +575698,213.62,66.212 +575699,212.78,67.519 +575700,211.92,68.815 +575701,213.19,64.899 +575702,212.33,66.198 +575703,211.44,67.487 +575704,210.53,68.766 +575705,211.95,64.905 +575706,211.04,66.185 +575707,210.1,67.455 +575708,209.14,68.715 +575709,210.71,64.911 +575710,209.75,66.171 +575711,208.77,67.423 +575712,207.75,68.663 +575713,209.47,64.919 +575714,208.46,66.159 +575715,207.43,67.39 +575716,206.36,68.61 +575717,208.23,64.927 +575718,207.17,66.146 +575719,206.09,67.356 +575720,204.97,68.557 +575721,206.99,64.937 +575722,205.88,66.134 +575723,204.75,67.323 +575724,203.58,68.502 +575725,205.74,64.948 +575726,204.59,66.122 +575727,203.41,67.289 +575728,202.2,68.446 +575729,204.5,64.959 +575730,203.3,66.11 +575731,202.07,67.254 +575732,200.81,68.389 +575733,203.25,64.971 +575734,202.01,66.099 +575735,200.74,67.22 +575736,199.43,68.332 +575737,202.01,64.985 +575738,200.72,66.088 +575739,199.4,67.185 +575740,198.04,68.273 +575741,200.76,64.999 +575742,199.43,66.077 +575743,198.06,67.149 +575744,196.66,68.213 +575745,199.51,65.014 +575746,198.13,66.067 +575747,196.72,67.114 +575748,195.28,68.153 +575749,198.26,65.03 +575750,196.84,66.057 +575751,195.39,67.078 +575752,193.9,68.092 +575753,197.01,65.047 +575754,195.55,66.047 +575755,194.05,67.042 +575756,192.51,68.029 +575757,195.76,65.065 +575758,194.26,66.037 +575759,192.72,67.005 +575760,191.14,67.966 +575761,194.5,65.083 +575762,192.96,66.028 +575763,191.38,66.968 +575764,189.76,67.903 +575765,193.25,65.102 +575766,191.67,66.019 +575767,190.05,66.931 +575768,188.38,67.838 +575769,191.99,65.122 +575770,190.37,66.01 +575771,188.71,66.894 +575772,187,67.772 +575773,190.74,65.143 +575774,189.08,66.001 +575775,187.38,66.856 +575776,185.63,67.706 +575777,189.48,65.164 +575778,187.78,65.993 +575779,186.04,66.819 +575780,184.25,67.639 +575781,188.22,65.186 +575782,186.49,65.985 +575783,184.71,66.78 +575784,182.88,67.572 +575785,186.96,65.208 +575786,185.19,65.977 +575787,183.38,66.742 +575788,181.51,67.503 +575789,185.69,65.232 +575790,183.9,65.969 +575791,182.05,66.704 +575792,180.14,67.434 +575793,184.43,65.256 +575794,182.6,65.961 +575795,180.72,66.665 +575796,178.77,67.365 +575797,183.16,65.28 +575798,181.3,65.954 +575799,179.38,66.626 +575800,177.4,67.295 +575801,181.9,65.305 +575802,180,65.947 +575803,178.05,66.587 +575804,176.04,67.224 +575805,180.63,65.33 +575806,178.7,65.94 +575807,176.72,66.547 +575808,174.67,67.152 +575809,179.36,65.356 +575810,177.41,65.933 +575811,175.39,66.508 +575812,173.31,67.08 +575813,178.09,65.383 +575814,176.11,65.926 +575815,174.06,66.468 +575816,171.95,67.008 +575817,176.81,65.41 +575818,174.81,65.919 +575819,172.74,66.428 +575820,170.59,66.935 +575821,175.54,65.437 +575822,173.51,65.913 +575823,171.41,66.388 +575824,169.23,66.862 +575825,174.26,65.464 +575826,172.21,65.907 +575827,170.08,66.348 +575828,167.87,66.788 +575829,172.98,65.492 +575830,170.9,65.9 +575831,168.75,66.308 +575832,166.52,66.714 +575833,171.7,65.521 +575834,169.6,65.894 +575835,167.43,66.267 +575836,165.17,66.639 +575837,170.42,65.549 +575838,168.3,65.888 +575839,166.1,66.227 +575840,163.81,66.564 +575841,169.14,65.578 +575842,167,65.882 +575843,164.78,66.186 +575844,162.46,66.489 +575845,167.86,65.607 +575846,165.69,65.876 +575847,163.45,66.145 +575848,161.11,66.413 +575849,166.57,65.637 +575850,164.39,65.871 +575851,162.13,66.104 +575852,159.77,66.337 +575853,165.28,65.666 +575854,163.09,65.865 +575855,160.8,66.063 +575856,158.42,66.261 +575857,163.99,65.696 +575858,161.78,65.859 +575859,159.48,66.022 +575860,157.08,66.184 +575861,162.7,65.726 +575862,160.47,65.853 +575863,158.16,65.981 +575864,155.74,66.108 +575865,161.41,65.755 +575866,159.17,65.848 +575867,156.84,65.94 +575868,154.4,66.031 +575869,160.11,65.785 +575870,157.86,65.842 +575871,155.52,65.899 +575872,153.06,65.954 +575873,158.82,65.815 +575874,156.55,65.837 +575875,154.2,65.857 +575876,151.72,65.877 +575877,157.52,65.845 +575878,155.25,65.831 +575879,152.88,65.816 +575880,150.39,65.8 +575881,156.22,65.875 +575882,153.94,65.825 +575883,151.56,65.775 +575884,149.06,65.723 +575885,154.92,65.905 +575886,152.63,65.82 +575887,150.24,65.733 +575888,147.73,65.646 +575889,153.61,65.935 +575890,151.32,65.814 +575891,148.92,65.692 +575892,146.4,65.569 +575893,152.31,65.965 +575894,150.01,65.808 +575895,147.6,65.651 +575896,145.07,65.492 +575897,151,65.995 +575898,148.7,65.803 +575899,146.29,65.609 +575900,143.75,65.415 +575901,149.69,66.024 +575902,147.39,65.797 +575903,144.97,65.568 +575904,142.42,65.338 +575905,148.38,66.053 +575906,146.07,65.791 +575907,143.65,65.527 +575908,141.1,65.261 +575909,147.07,66.083 +575910,144.76,65.785 +575911,142.34,65.486 +575912,139.78,65.184 +575913,145.76,66.111 +575914,143.45,65.779 +575915,141.02,65.444 +575916,138.47,65.108 +575917,144.44,66.14 +575918,142.14,65.773 +575919,139.71,65.403 +575920,137.15,65.031 +575921,143.13,66.168 +575922,140.82,65.767 +575923,138.4,65.362 +575924,135.84,64.955 +575925,141.81,66.196 +575926,139.51,65.76 +575927,137.09,65.321 +575928,134.53,64.88 +575929,140.49,66.224 +575930,138.19,65.754 +575931,135.77,65.281 +575932,133.22,64.804 +575933,139.16,66.251 +575934,136.87,65.747 +575935,134.46,65.24 +575936,131.91,64.729 +575937,137.84,66.278 +575938,135.56,65.74 +575939,133.15,65.199 +575940,130.61,64.654 +575941,136.51,66.304 +575942,134.24,65.733 +575943,131.84,65.159 +575944,129.3,64.58 +575945,135.19,66.33 +575946,132.92,65.726 +575947,130.54,65.118 +575948,128,64.506 +575949,133.86,66.355 +575950,131.6,65.719 +575951,129.23,65.078 +575952,126.7,64.432 +575953,132.53,66.38 +575954,130.29,65.712 +575955,127.92,65.038 +575956,125.41,64.359 +575957,131.19,66.404 +575958,128.97,65.704 +575959,126.61,64.998 +575960,124.11,64.287 +575961,129.86,66.428 +575962,127.65,65.696 +575963,125.31,64.958 +575964,122.82,64.215 +575965,128.52,66.451 +575966,126.33,65.688 +575967,124,64.919 +575968,121.53,64.143 +575969,127.19,66.474 +575970,125,65.68 +575971,122.69,64.879 +575972,120.24,64.072 +575973,125.85,66.496 +575974,123.68,65.672 +575975,121.39,64.84 +575976,118.95,64.002 +575977,124.51,66.517 +575978,122.36,65.663 +575979,120.09,64.801 +575980,117.66,63.932 +575981,123.16,66.538 +575982,121.04,65.654 +575983,118.78,64.762 +575984,116.38,63.863 +575985,121.82,66.558 +575986,119.71,65.645 +575987,117.48,64.724 +575988,115.1,63.794 +575989,120.47,66.577 +575990,118.39,65.636 +575991,116.18,64.685 +575992,113.82,63.727 +575993,119.13,66.595 +575994,117.07,65.626 +575995,114.88,64.647 +575996,112.54,63.66 +575997,117.78,66.613 +575998,115.74,65.616 +575999,113.58,64.609 +576000,111.26,63.593 +576001,116.43,66.629 +576002,114.42,65.606 +576003,112.28,64.572 +576004,109.99,63.528 +576005,115.08,66.645 +576006,113.09,65.595 +576007,110.98,64.534 +576008,108.72,63.463 +576009,113.72,66.66 +576010,111.76,65.585 +576011,109.68,64.497 +576012,107.45,63.399 +576013,112.37,66.675 +576014,110.44,65.573 +576015,108.38,64.461 +576016,106.18,63.336 +576017,111.01,66.688 +576018,109.11,65.562 +576019,107.08,64.424 +576020,104.91,63.274 +576021,109.66,66.7 +576022,107.78,65.55 +576023,105.78,64.388 +576024,103.64,63.213 +576025,108.3,66.712 +576026,106.45,65.538 +576027,104.49,64.352 +576028,102.38,63.153 +576029,106.94,66.722 +576030,105.12,65.526 +576031,103.19,64.316 +576032,101.12,63.093 +576033,105.57,66.732 +576034,103.79,65.513 +576035,101.89,64.281 +576036,99.856,63.035 +576037,104.21,66.741 +576038,102.46,65.5 +576039,100.6,64.246 +576040,98.597,62.977 +576041,102.85,66.748 +576042,101.13,65.487 +576043,99.303,64.211 +576044,97.339,62.921 +576045,101.48,66.755 +576046,99.802,65.473 +576047,98.008,64.177 +576048,96.083,62.865 +576049,100.11,66.76 +576050,98.471,65.459 +576051,96.715,64.142 +576052,94.829,62.811 +576053,98.747,66.765 +576054,97.14,65.445 +576055,95.421,64.109 +576056,93.576,62.757 +576057,97.377,66.768 +576058,95.808,65.43 +576059,94.128,64.075 +576060,92.324,62.705 +576061,96.007,66.771 +576062,94.475,65.415 +576063,92.836,64.042 +576064,91.074,62.654 +576065,94.635,66.772 +576066,93.142,65.399 +576067,91.544,64.01 +576068,89.825,62.604 +576069,93.262,66.772 +576070,91.809,65.383 +576071,90.253,63.977 +576072,88.578,62.554 +576073,91.888,66.771 +576074,90.476,65.367 +576075,88.962,63.945 +576076,87.332,62.507 +576077,90.513,66.769 +576078,89.142,65.35 +576079,87.671,63.914 +576080,86.087,62.46 +576081,89.136,66.766 +576082,87.807,65.333 +576083,86.381,63.882 +576084,84.843,62.414 +576085,87.759,66.761 +576086,86.473,65.316 +576087,85.091,63.851 +576088,83.601,62.369 +576089,86.381,66.756 +576090,85.138,65.298 +576091,83.802,63.821 +576092,82.36,62.326 +576093,85.002,66.749 +576094,83.803,65.279 +576095,82.512,63.791 +576096,81.12,62.284 +576097,83.621,66.741 +576098,82.467,65.261 +576099,81.224,63.761 +576100,79.88,62.243 +576101,82.24,66.732 +576102,81.131,65.242 +576103,79.935,63.732 +576104,78.642,62.203 +576105,80.858,66.722 +576106,79.795,65.222 +576107,78.647,63.703 +576108,77.405,62.165 +576109,79.475,66.71 +576110,78.458,65.202 +576111,77.36,63.674 +576112,76.169,62.128 +576113,78.092,66.697 +576114,77.122,65.182 +576115,76.072,63.646 +576116,74.934,62.091 +576117,76.707,66.683 +576118,75.785,65.161 +576119,74.785,63.618 +576120,73.7,62.057 +576121,75.322,66.668 +576122,74.448,65.14 +576123,73.499,63.591 +576124,72.466,62.023 +576125,73.936,66.651 +576126,73.11,65.118 +576127,72.212,63.564 +576128,71.233,61.991 +576129,72.549,66.634 +576130,71.773,65.096 +576131,70.926,63.538 +576132,70.001,61.96 +576133,71.162,66.615 +576134,70.435,65.073 +576135,69.64,63.511 +576136,68.77,61.93 +576137,69.774,66.594 +576138,69.097,65.05 +576139,68.354,63.486 +576140,67.539,61.901 +576141,68.385,66.573 +576142,67.758,65.027 +576143,67.068,63.46 +576144,66.309,61.874 +576145,66.996,66.55 +576146,66.42,65.003 +576147,65.783,63.436 +576148,65.08,61.848 +576149,65.607,66.526 +576150,65.081,64.979 +576151,64.498,63.411 +576152,63.85,61.823 +576153,64.217,66.501 +576154,63.743,64.954 +576155,63.213,63.387 +576156,62.622,61.8 +576157,62.826,66.474 +576158,62.404,64.929 +576159,61.928,63.363 +576160,61.394,61.778 +576161,61.435,66.446 +576162,61.065,64.903 +576163,60.644,63.34 +576164,60.166,61.757 +576165,60.044,66.417 +576166,59.726,64.877 +576167,59.359,63.317 +576168,58.938,61.737 +576169,58.652,66.387 +576170,58.387,64.851 +576171,58.075,63.295 +576172,57.711,61.719 +576173,57.26,66.355 +576174,57.048,64.824 +576175,56.79,63.273 +576176,56.484,61.702 +576177,55.868,66.323 +576178,55.708,64.797 +576179,55.506,63.251 +576180,55.257,61.686 +576181,54.475,66.288 +576182,54.369,64.769 +576183,54.222,63.23 +576184,54.03,61.672 +576185,53.082,66.253 +576186,53.03,64.741 +576187,52.938,63.209 +576188,52.804,61.658 +576189,51.689,66.217 +576190,51.69,64.712 +576191,51.654,63.189 +576192,51.577,61.646 +576193,50.296,66.179 +576194,50.351,64.683 +576195,50.37,63.169 +576196,50.35,61.636 +576197,48.903,66.14 +576198,49.012,64.654 +576199,49.086,63.149 +576200,49.124,61.626 +576201,47.51,66.099 +576202,47.672,64.624 +576203,47.802,63.13 +576204,47.897,61.618 +576205,46.117,66.058 +576206,46.333,64.594 +576207,46.518,63.111 +576208,46.67,61.611 +576209,44.724,66.015 +576210,44.994,64.563 +576211,45.234,63.093 +576212,45.443,61.605 +576213,43.33,65.971 +576214,43.655,64.532 +576215,43.95,63.074 +576216,44.215,61.6 +576217,41.937,65.926 +576218,42.316,64.5 +576219,42.666,63.057 +576220,42.988,61.597 +576221,40.545,65.88 +576222,40.977,64.468 +576223,41.382,63.04 +576224,41.76,61.594 +576225,39.152,65.832 +576226,39.638,64.436 +576227,40.098,63.023 +576228,40.531,61.593 +576229,37.759,65.783 +576230,38.299,64.403 +576231,38.813,63.006 +576232,39.302,61.593 +576233,36.367,65.734 +576234,36.96,64.37 +576235,37.529,62.99 +576236,38.073,61.595 +576237,34.975,65.683 +576238,35.622,64.337 +576239,36.244,62.974 +576240,36.843,61.597 +576241,33.584,65.631 +576242,34.283,64.303 +576243,34.96,62.959 +576244,35.613,61.6 +576245,32.192,65.577 +576246,32.945,64.268 +576247,33.675,62.944 +576248,34.382,61.605 +576249,30.801,65.523 +576250,31.607,64.234 +576251,32.39,62.929 +576252,33.151,61.61 +576253,29.411,65.468 +576254,30.269,64.199 +576255,31.105,62.915 +576256,31.918,61.617 +576257,28.021,65.411 +576258,28.932,64.163 +576259,29.819,62.901 +576260,30.685,61.625 +576261,26.632,65.354 +576262,27.594,64.127 +576263,28.534,62.887 +576264,29.452,61.634 +576265,25.243,65.295 +576266,26.257,64.091 +576267,27.248,62.873 +576268,28.217,61.643 +576269,23.855,65.236 +576270,24.92,64.055 +576271,25.962,62.86 +576272,26.982,61.654 +576273,22.467,65.175 +576274,23.583,64.018 +576275,24.676,62.848 +576276,25.746,61.666 +576277,21.08,65.113 +576278,22.247,63.981 +576279,23.389,62.835 +576280,24.509,61.679 +576281,19.694,65.051 +576282,20.911,63.943 +576283,22.102,62.823 +576284,23.27,61.692 +576285,18.309,64.987 +576286,19.575,63.905 +576287,20.815,62.811 +576288,22.031,61.707 +576289,16.924,64.923 +576290,18.24,63.867 +576291,19.528,62.8 +576292,20.791,61.722 +576293,15.54,64.857 +576294,16.905,63.829 +576295,18.24,62.788 +576296,19.55,61.738 +576297,14.158,64.791 +576298,15.57,63.79 +576299,16.952,62.777 +576300,18.308,61.756 +576301,12.776,64.724 +576302,14.235,63.751 +576303,15.664,62.767 +576304,17.065,61.774 +576305,11.394,64.656 +576306,12.901,63.711 +576307,14.375,62.756 +576308,15.82,61.792 +576309,10.014,64.587 +576310,11.568,63.672 +576311,13.086,62.746 +576312,14.574,61.812 +576313,8.6354,64.518 +576314,10.234,63.632 +576315,11.797,62.736 +576316,13.328,61.832 +576317,7.2574,64.447 +576318,8.9013,63.591 +576319,10.507,62.726 +576320,12.079,61.853 +576321,5.8805,64.376 +576322,7.5688,63.551 +576323,9.2171,62.717 +576324,10.83,61.875 +576325,4.5047,64.304 +576326,6.2367,63.51 +576327,7.9266,62.707 +576328,9.5792,61.898 +576329,3.1301,64.231 +576330,4.9051,63.469 +576331,6.6357,62.698 +576332,8.3271,61.921 +576333,1.7567,64.158 +576334,3.5738,63.428 +576335,5.3443,62.69 +576336,7.0737,61.944 +576337,0.38455,64.084 +576338,2.2431,63.387 +576339,4.0526,62.681 +576340,5.8189,61.969 +576341,359.01,64.01 +576342,0.91279,63.345 +576343,2.7604,62.672 +576344,4.5626,61.994 +576345,357.64,63.934 +576346,359.58,63.303 +576347,1.4677,62.664 +576348,3.3049,62.019 +576349,356.28,63.858 +576350,358.25,63.261 +576351,0.17462,62.656 +576352,2.0458,62.045 +576353,354.91,63.782 +576354,356.92,63.219 +576355,358.88,62.648 +576356,0.78513,62.072 +576357,353.54,63.705 +576358,355.6,63.176 +576359,357.59,62.64 +576360,359.52,62.098 +576361,352.18,63.628 +576362,354.27,63.134 +576363,356.29,62.632 +576364,358.26,62.126 +576365,350.82,63.55 +576366,352.94,63.091 +576367,355,62.625 +576368,356.99,62.154 +576369,349.46,63.471 +576370,351.61,63.048 +576371,353.7,62.617 +576372,355.73,62.182 +576373,348.1,63.392 +576374,350.29,63.005 +576375,352.41,62.61 +576376,354.46,62.21 +576377,346.74,63.313 +576378,348.96,62.961 +576379,351.11,62.603 +576380,353.19,62.239 +576381,345.38,63.234 +576382,347.64,62.918 +576383,349.81,62.596 +576384,351.92,62.268 +576385,344.03,63.154 +576386,346.31,62.875 +576387,348.52,62.589 +576388,350.64,62.298 +576389,342.67,63.073 +576390,344.99,62.831 +576391,347.22,62.582 +576392,349.37,62.327 +576393,341.32,62.993 +576394,343.67,62.787 +576395,345.92,62.575 +576396,348.09,62.357 +576397,339.97,62.912 +576398,342.34,62.743 +576399,344.62,62.568 +576400,346.81,62.387 +576401,338.62,62.831 +576402,341.02,62.7 +576403,343.32,62.561 +576404,345.53,62.417 +576405,337.28,62.75 +576406,339.7,62.656 +576407,342.02,62.554 +576408,344.25,62.448 +576409,335.93,62.669 +576410,338.38,62.612 +576411,340.72,62.548 +576412,342.97,62.478 +576413,334.59,62.587 +576414,337.06,62.568 +576415,339.42,62.541 +576416,341.68,62.508 +576417,333.25,62.505 +576418,335.74,62.523 +576419,338.12,62.534 +576420,340.4,62.539 +576421,331.91,62.424 +576422,334.42,62.479 +576423,336.81,62.527 +576424,339.11,62.569 +576425,330.57,62.342 +576426,333.1,62.435 +576427,335.51,62.521 +576428,337.82,62.6 +576429,329.24,62.26 +576430,331.78,62.391 +576431,334.21,62.514 +576432,336.53,62.63 +576433,327.91,62.178 +576434,330.47,62.347 +576435,332.9,62.507 +576436,335.23,62.66 +576437,326.57,62.097 +576438,329.15,62.303 +576439,331.6,62.5 +576440,333.94,62.691 +576441,325.24,62.015 +576442,327.83,62.258 +576443,330.29,62.493 +576444,332.64,62.721 +576445,323.92,61.934 +576446,326.52,62.214 +576447,328.99,62.486 +576448,331.34,62.75 +576449,322.59,61.852 +576450,325.2,62.17 +576451,327.68,62.479 +576452,330.04,62.78 +576453,321.27,61.771 +576454,323.89,62.126 +576455,326.37,62.472 +576456,328.74,62.809 +576457,319.95,61.69 +576458,322.58,62.082 +576459,325.06,62.465 +576460,327.43,62.838 +576461,318.63,61.609 +576462,321.26,62.038 +576463,323.76,62.457 +576464,326.13,62.867 +576465,317.31,61.528 +576466,319.95,61.995 +576467,322.45,62.45 +576468,324.82,62.896 +576469,315.99,61.448 +576470,318.64,61.951 +576471,321.14,62.442 +576472,323.51,62.924 +576473,314.68,61.368 +576474,317.33,61.907 +576475,319.83,62.435 +576476,322.2,62.952 +576477,313.37,61.289 +576478,316.02,61.864 +576479,318.52,62.427 +576480,320.88,62.979 +576481,312.06,61.209 +576482,314.71,61.82 +576483,317.21,62.419 +576484,319.57,63.006 +576485,310.75,61.131 +576486,313.4,61.777 +576487,315.89,62.411 +576488,318.25,63.032 +576489,309.45,61.052 +576490,312.09,61.734 +576491,314.58,62.402 +576492,316.93,63.058 +576493,308.14,60.974 +576494,310.79,61.691 +576495,313.27,62.394 +576496,315.61,63.084 +576497,306.84,60.897 +576498,309.48,61.648 +576499,311.95,62.385 +576500,314.29,63.109 +576501,305.54,60.82 +576502,308.17,61.605 +576503,310.64,62.376 +576504,312.96,63.133 +576505,304.24,60.744 +576506,306.87,61.563 +576507,309.33,62.367 +576508,311.64,63.157 +576509,302.95,60.668 +576510,305.56,61.521 +576511,308.01,62.357 +576512,310.31,63.18 +576513,301.66,60.593 +576514,304.26,61.479 +576515,306.69,62.348 +576516,308.98,63.202 +576517,300.37,60.518 +576518,302.96,61.437 +576519,305.38,62.338 +576520,307.65,63.224 +576521,299.08,60.444 +576522,301.66,61.395 +576523,304.06,62.328 +576524,306.32,63.245 +576525,297.79,60.371 +576526,300.35,61.353 +576527,302.74,62.318 +576528,304.99,63.265 +576529,296.5,60.299 +576530,299.05,61.312 +576531,301.42,62.307 +576532,303.65,63.285 +576533,295.22,60.227 +576534,297.75,61.271 +576535,300.11,62.296 +576536,302.31,63.303 +576537,293.94,60.156 +576538,296.45,61.23 +576539,298.79,62.285 +576540,300.97,63.321 +576541,292.66,60.086 +576542,295.15,61.19 +576543,297.47,62.274 +576544,299.63,63.338 +576545,291.39,60.017 +576546,293.85,61.15 +576547,296.15,62.262 +576548,298.29,63.355 +576549,290.11,59.948 +576550,292.56,61.11 +576551,294.83,62.25 +576552,296.95,63.37 +576553,288.84,59.881 +576554,291.26,61.07 +576555,293.5,62.238 +576556,295.6,63.385 +576557,287.57,59.814 +576558,289.96,61.031 +576559,292.18,62.225 +576560,294.25,63.398 +576561,286.3,59.748 +576562,288.67,60.992 +576563,290.86,62.212 +576564,292.91,63.411 +576565,285.03,59.683 +576566,287.37,60.953 +576567,289.54,62.199 +576568,291.56,63.423 +576569,283.76,59.62 +576570,286.08,60.914 +576571,288.21,62.185 +576572,290.2,63.433 +576573,282.5,59.557 +576574,284.78,60.876 +576575,286.89,62.171 +576576,288.85,63.443 +576577,281.24,59.495 +576578,283.49,60.838 +576579,285.56,62.157 +576580,287.5,63.452 +576581,279.98,59.434 +576582,282.19,60.801 +576583,284.24,62.142 +576584,286.14,63.46 +576585,278.72,59.374 +576586,280.9,60.763 +576587,282.91,62.127 +576588,284.78,63.466 +576589,277.46,59.316 +576590,279.61,60.727 +576591,281.59,62.112 +576592,283.42,63.472 +576593,276.21,59.258 +576594,278.32,60.69 +576595,280.26,62.096 +576596,282.06,63.476 +576597,274.96,59.201 +576598,277.03,60.654 +576599,278.93,62.08 +576600,280.7,63.48 +576601,273.7,59.146 +576602,275.74,60.618 +576603,277.61,62.063 +576604,279.34,63.482 +576605,272.46,59.092 +576606,274.45,60.583 +576607,276.28,62.046 +576608,277.98,63.483 +576609,271.21,59.039 +576610,273.16,60.548 +576611,274.95,62.029 +576612,276.61,63.483 +576613,269.96,58.987 +576614,271.87,60.513 +576615,273.62,62.011 +576616,275.25,63.482 +576617,268.72,58.936 +576618,270.58,60.479 +576619,272.29,61.993 +576620,273.88,63.479 +576621,267.47,58.887 +576622,269.29,60.445 +576623,270.96,61.974 +576624,272.51,63.476 +576625,266.23,58.838 +576626,268,60.411 +576627,269.63,61.955 +576628,271.14,63.471 +576629,264.99,58.791 +576630,266.72,60.378 +576631,268.3,61.936 +576632,269.77,63.465 +576633,263.75,58.745 +576634,265.43,60.345 +576635,266.97,61.916 +576636,268.4,63.458 +576637,262.51,58.701 +576638,264.15,60.313 +576639,265.64,61.896 +576640,267.02,63.45 +576641,261.27,58.658 +576642,262.86,60.281 +576643,264.31,61.875 +576644,265.65,63.44 +576645,260.04,58.616 +576646,261.57,60.25 +576647,262.98,61.854 +576648,264.27,63.429 +576649,258.8,58.575 +576650,260.29,60.219 +576651,261.65,61.832 +576652,262.9,63.417 +576653,257.57,58.535 +576654,259.01,60.188 +576655,260.32,61.81 +576656,261.52,63.403 +576657,256.34,58.497 +576658,257.72,60.158 +576659,258.98,61.788 +576660,260.14,63.388 +576661,255.11,58.461 +576662,256.44,60.128 +576663,257.65,61.765 +576664,258.76,63.372 +576665,253.88,58.425 +576666,255.15,60.099 +576667,256.32,61.742 +576668,257.38,63.355 +576669,252.65,58.391 +576670,253.87,60.07 +576671,254.98,61.718 +576672,256,63.336 +576673,251.42,58.358 +576674,252.59,60.041 +576675,253.65,61.694 +576676,254.62,63.316 +576677,250.19,58.327 +576678,251.31,60.013 +576679,252.32,61.669 +576680,253.24,63.295 +576681,248.97,58.297 +576682,250.03,59.985 +576683,250.98,61.644 +576684,251.85,63.272 +576685,247.74,58.268 +576686,248.74,59.958 +576687,249.65,61.618 +576688,250.47,63.248 +576689,246.52,58.24 +576690,247.46,59.931 +576691,248.31,61.592 +576692,249.08,63.223 +576693,245.29,58.214 +576694,246.18,59.905 +576695,246.98,61.565 +576696,247.7,63.196 +576697,244.07,58.19 +576698,244.9,59.879 +576699,245.64,61.538 +576700,246.31,63.169 +576701,242.85,58.166 +576702,243.62,59.853 +576703,244.31,61.511 +576704,244.93,63.139 +576705,241.62,58.144 +576706,242.34,59.828 +576707,242.97,61.483 +576708,243.54,63.109 +576709,240.4,58.124 +576710,241.06,59.803 +576711,241.64,61.454 +576712,242.15,63.077 +576713,239.18,58.104 +576714,239.78,59.779 +576715,240.3,61.426 +576716,240.76,63.043 +576717,237.96,58.086 +576718,238.5,59.755 +576719,238.97,61.396 +576720,239.38,63.009 +576721,236.74,58.07 +576722,237.22,59.732 +576723,237.63,61.367 +576724,237.99,62.973 +576725,235.52,58.054 +576726,235.94,59.709 +576727,236.3,61.336 +576728,236.6,62.936 +576729,234.3,58.041 +576730,234.66,59.687 +576731,234.96,61.306 +576732,235.21,62.897 +576733,233.08,58.028 +576734,233.38,59.665 +576735,233.62,61.275 +576736,233.82,62.857 +576737,231.86,58.017 +576738,232.1,59.643 +576739,232.29,61.243 +576740,232.43,62.816 +576741,230.64,58.007 +576742,230.82,59.622 +576743,230.95,61.211 +576744,231.04,62.774 +576745,229.42,57.998 +576746,229.54,59.601 +576747,229.62,61.178 +576748,229.65,62.73 +576749,228.2,57.99 +576750,228.26,59.581 +576751,228.28,61.146 +576752,228.26,62.685 +576753,226.98,57.984 +576754,226.98,59.561 +576755,226.94,61.112 +576756,226.87,62.639 +576757,225.76,57.979 +576758,225.71,59.541 +576759,225.61,61.078 +576760,225.48,62.591 +576761,224.54,57.976 +576762,224.43,59.522 +576763,224.27,61.044 +576764,224.09,62.542 +576765,223.32,57.973 +576766,223.15,59.503 +576767,222.94,61.009 +576768,222.69,62.492 +576769,222.1,57.972 +576770,221.87,59.485 +576771,221.6,60.974 +576772,221.3,62.441 +576773,220.88,57.972 +576774,220.59,59.467 +576775,220.27,60.939 +576776,219.91,62.388 +576777,219.66,57.974 +576778,219.31,59.449 +576779,218.93,60.903 +576780,218.52,62.334 +576781,218.44,57.976 +576782,218.03,59.432 +576783,217.59,60.867 +576784,217.13,62.279 +576785,217.22,57.98 +576786,216.75,59.415 +576787,216.26,60.83 +576788,215.74,62.223 +576789,216,57.985 +576790,215.47,59.399 +576791,214.92,60.793 +576792,214.35,62.166 +576793,214.78,57.991 +576794,214.19,59.383 +576795,213.59,60.755 +576796,212.96,62.107 +576797,213.55,57.998 +576798,212.91,59.367 +576799,212.25,60.717 +576800,211.57,62.047 +576801,212.33,58.006 +576802,211.63,59.352 +576803,210.92,60.679 +576804,210.18,61.987 +576805,211.11,58.015 +576806,210.35,59.337 +576807,209.58,60.64 +576808,208.8,61.925 +576809,209.88,58.025 +576810,209.07,59.322 +576811,208.25,60.601 +576812,207.41,61.861 +576813,208.66,58.037 +576814,207.79,59.308 +576815,206.92,60.562 +576816,206.02,61.797 +576817,207.43,58.049 +576818,206.51,59.294 +576819,205.58,60.522 +576820,204.63,61.732 +576821,206.2,58.063 +576822,205.23,59.28 +576823,204.25,60.482 +576824,203.25,61.666 +576825,204.97,58.077 +576826,203.95,59.267 +576827,202.91,60.441 +576828,201.86,61.598 +576829,203.74,58.093 +576830,202.67,59.254 +576831,201.58,60.4 +576832,200.47,61.53 +576833,202.51,58.109 +576834,201.39,59.241 +576835,200.25,60.359 +576836,199.09,61.461 +576837,201.28,58.126 +576838,200.11,59.229 +576839,198.92,60.317 +576840,197.7,61.39 +576841,200.05,58.144 +576842,198.83,59.217 +576843,197.58,60.275 +576844,196.32,61.319 +576845,198.82,58.163 +576846,197.54,59.205 +576847,196.25,60.233 +576848,194.94,61.247 +576849,197.58,58.183 +576850,196.26,59.193 +576851,194.92,60.191 +576852,193.56,61.174 +576853,196.35,58.204 +576854,194.98,59.182 +576855,193.59,60.148 +576856,192.18,61.1 +576857,195.11,58.225 +576858,193.7,59.171 +576859,192.26,60.105 +576860,190.8,61.025 +576861,193.88,58.248 +576862,192.41,59.16 +576863,190.93,60.061 +576864,189.42,60.949 +576865,192.64,58.27 +576866,191.13,59.15 +576867,189.6,60.018 +576868,188.04,60.873 +576869,191.4,58.294 +576870,189.84,59.139 +576871,188.27,59.974 +576872,186.66,60.796 +576873,190.16,58.319 +576874,188.56,59.129 +576875,186.94,59.929 +576876,185.29,60.718 +576877,188.91,58.344 +576878,187.28,59.119 +576879,185.61,59.885 +576880,183.91,60.639 +576881,187.67,58.369 +576882,185.99,59.11 +576883,184.28,59.84 +576884,182.54,60.559 +576885,186.42,58.395 +576886,184.7,59.1 +576887,182.95,59.795 +576888,181.16,60.479 +576889,185.18,58.422 +576890,183.42,59.091 +576891,181.62,59.75 +576892,179.79,60.398 +576893,183.93,58.45 +576894,182.13,59.082 +576895,180.3,59.705 +576896,178.42,60.317 +576897,182.68,58.478 +576898,180.84,59.073 +576899,178.97,59.659 +576900,177.05,60.235 +576901,181.43,58.506 +576902,179.56,59.064 +576903,177.64,59.613 +576904,175.68,60.152 +576905,180.17,58.535 +576906,178.27,59.056 +576907,176.32,59.568 +576908,174.32,60.069 +576909,178.92,58.564 +576910,176.98,59.047 +576911,174.99,59.521 +576912,172.95,59.985 +576913,177.66,58.594 +576914,175.69,59.039 +576915,173.67,59.475 +576916,171.59,59.901 +576917,176.41,58.624 +576918,174.4,59.031 +576919,172.35,59.429 +576920,170.23,59.816 +576921,175.15,58.654 +576922,173.11,59.022 +576923,171.02,59.382 +576924,168.87,59.731 +576925,173.89,58.685 +576926,171.82,59.014 +576927,169.7,59.335 +576928,167.51,59.645 +576929,172.63,58.716 +576930,170.53,59.007 +576931,168.38,59.288 +576932,166.15,59.559 +576933,171.36,58.747 +576934,169.24,58.999 +576935,167.05,59.241 +576936,164.79,59.473 +576937,170.1,58.778 +576938,167.95,58.991 +576939,165.73,59.194 +576940,163.44,59.387 +576941,168.83,58.81 +576942,166.66,58.983 +576943,164.41,59.147 +576944,162.08,59.3 +576945,167.56,58.842 +576946,165.36,58.976 +576947,163.09,59.1 +576948,160.73,59.213 +576949,166.29,58.874 +576950,164.07,58.968 +576951,161.77,59.053 +576952,159.38,59.125 +576953,165.02,58.906 +576954,162.78,58.96 +576955,160.45,59.005 +576956,158.04,59.038 +576957,163.74,58.938 +576958,161.48,58.953 +576959,159.14,58.958 +576960,156.69,58.95 +576961,162.47,58.97 +576962,160.19,58.945 +576963,157.82,58.91 +576964,155.34,58.862 +576965,161.19,59.002 +576966,158.89,58.938 +576967,156.5,58.863 +576968,154,58.775 +576969,159.91,59.034 +576970,157.6,58.93 +576971,155.18,58.815 +576972,152.66,58.687 +576973,158.63,59.066 +576974,156.3,58.922 +576975,153.87,58.768 +576976,151.32,58.599 +576977,157.35,59.097 +576978,155,58.915 +576979,152.55,58.72 +576980,149.99,58.511 +576981,156.06,59.129 +576982,153.7,58.907 +576983,151.24,58.672 +576984,148.65,58.423 +576985,154.78,59.161 +576986,152.41,58.899 +576987,149.93,58.625 +576988,147.32,58.335 +576989,153.49,59.192 +576990,151.11,58.891 +576991,148.61,58.577 +576992,145.99,58.247 +576993,152.2,59.223 +576994,149.81,58.884 +576995,147.3,58.53 +576996,144.66,58.16 +576997,150.9,59.254 +576998,148.51,58.876 +576999,145.99,58.483 +577000,143.33,58.072 +577001,149.61,59.284 +577002,147.21,58.868 +577003,144.68,58.435 +577004,142,57.985 +577005,148.32,59.315 +577006,145.91,58.859 +577007,143.37,58.388 +577008,140.68,57.898 +577009,147.02,59.345 +577010,144.6,58.851 +577011,142.06,58.341 +577012,139.36,57.812 +577013,145.72,59.374 +577014,143.3,58.843 +577015,140.75,58.294 +577016,138.04,57.725 +577017,144.42,59.403 +577018,142,58.834 +577019,139.44,58.247 +577020,136.72,57.639 +577021,143.12,59.432 +577022,140.69,58.825 +577023,138.13,58.2 +577024,135.41,57.554 +577025,141.81,59.46 +577026,139.39,58.816 +577027,136.83,58.153 +577028,134.09,57.468 +577029,140.5,59.488 +577030,138.08,58.807 +577031,135.52,58.107 +577032,132.78,57.384 +577033,139.2,59.515 +577034,136.78,58.798 +577035,134.21,58.06 +577036,131.47,57.299 +577037,137.89,59.542 +577038,135.47,58.789 +577039,132.91,58.014 +577040,130.17,57.215 +577041,136.57,59.568 +577042,134.17,58.779 +577043,131.61,57.968 +577044,128.86,57.132 +577045,135.26,59.593 +577046,132.86,58.769 +577047,130.3,57.922 +577048,127.56,57.049 +577049,133.95,59.618 +577050,131.55,58.759 +577051,129,57.876 +577052,126.26,56.967 +577053,132.63,59.642 +577054,130.24,58.749 +577055,127.7,57.831 +577056,124.96,56.885 +577057,131.31,59.666 +577058,128.93,58.738 +577059,126.4,57.785 +577060,123.67,56.805 +577061,129.99,59.688 +577062,127.62,58.727 +577063,125.1,57.74 +577064,122.37,56.724 +577065,128.67,59.71 +577066,126.31,58.716 +577067,123.8,57.696 +577068,121.08,56.645 +577069,127.34,59.731 +577070,125,58.705 +577071,122.5,57.651 +577072,119.79,56.566 +577073,126.02,59.752 +577074,123.69,58.693 +577075,121.2,57.607 +577076,118.5,56.488 +577077,124.69,59.772 +577078,122.38,58.682 +577079,119.9,57.562 +577080,117.22,56.411 +577081,123.36,59.79 +577082,121.07,58.669 +577083,118.6,57.519 +577084,115.93,56.335 +577085,122.03,59.808 +577086,119.75,58.657 +577087,117.31,57.475 +577088,114.65,56.259 +577089,120.7,59.825 +577090,118.44,58.644 +577091,116.01,57.432 +577092,113.38,56.185 +577093,119.36,59.841 +577094,117.13,58.631 +577095,114.72,57.389 +577096,112.1,56.111 +577097,118.03,59.856 +577098,115.81,58.618 +577099,113.42,57.346 +577100,110.82,56.038 +577101,116.69,59.87 +577102,114.5,58.604 +577103,112.13,57.304 +577104,109.55,55.966 +577105,115.35,59.884 +577106,113.18,58.59 +577107,110.84,57.262 +577108,108.28,55.896 +577109,114.01,59.896 +577110,111.87,58.575 +577111,109.54,57.22 +577112,107.01,55.826 +577113,112.67,59.907 +577114,110.55,58.561 +577115,108.25,57.179 +577116,105.75,55.757 +577117,111.33,59.917 +577118,109.23,58.546 +577119,106.96,57.137 +577120,104.48,55.69 +577121,109.98,59.926 +577122,107.91,58.53 +577123,105.67,57.097 +577124,103.22,55.623 +577125,108.63,59.934 +577126,106.59,58.514 +577127,104.38,57.056 +577128,101.96,55.558 +577129,107.29,59.941 +577130,105.28,58.498 +577131,103.09,57.016 +577132,100.7,55.493 +577133,105.94,59.946 +577134,103.96,58.481 +577135,101.8,56.977 +577136,99.444,55.43 +577137,104.59,59.951 +577138,102.64,58.464 +577139,100.52,56.938 +577140,98.19,55.368 +577141,103.23,59.954 +577142,101.32,58.447 +577143,99.229,56.899 +577144,96.937,55.307 +577145,101.88,59.956 +577146,99.996,58.429 +577147,97.943,56.86 +577148,95.686,55.248 +577149,100.52,59.957 +577150,98.675,58.41 +577151,96.657,56.822 +577152,94.437,55.19 +577153,99.168,59.957 +577154,97.353,58.392 +577155,95.372,56.785 +577156,93.19,55.133 +577157,97.81,59.956 +577158,96.031,58.373 +577159,94.087,56.747 +577160,91.945,55.077 +577161,96.451,59.953 +577162,94.708,58.353 +577163,92.803,56.711 +577164,90.701,55.022 +577165,95.09,59.949 +577166,93.385,58.333 +577167,91.519,56.674 +577168,89.46,54.969 +577169,93.729,59.944 +577170,92.062,58.312 +577171,90.236,56.638 +577172,88.219,54.917 +577173,92.366,59.937 +577174,90.738,58.292 +577175,88.953,56.603 +577176,86.981,54.867 +577177,91.002,59.929 +577178,89.414,58.27 +577179,87.671,56.568 +577180,85.744,54.818 +577181,89.637,59.92 +577182,88.089,58.248 +577183,86.39,56.533 +577184,84.508,54.77 +577185,88.271,59.91 +577186,86.764,58.226 +577187,85.108,56.499 +577188,83.275,54.724 +577189,86.903,59.898 +577190,85.439,58.203 +577191,83.828,56.465 +577192,82.042,54.679 +577193,85.535,59.885 +577194,84.113,58.18 +577195,82.548,56.432 +577196,80.811,54.635 +577197,84.165,59.87 +577198,82.787,58.157 +577199,81.268,56.399 +577200,79.582,54.593 +577201,82.795,59.854 +577202,81.461,58.133 +577203,79.989,56.366 +577204,78.353,54.552 +577205,81.423,59.837 +577206,80.134,58.108 +577207,78.71,56.334 +577208,77.126,54.513 +577209,80.051,59.818 +577210,78.807,58.083 +577211,77.432,56.303 +577212,75.901,54.475 +577213,78.678,59.798 +577214,77.48,58.057 +577215,76.154,56.272 +577216,74.676,54.439 +577217,77.303,59.777 +577218,76.152,58.031 +577219,74.877,56.241 +577220,73.453,54.404 +577221,75.928,59.754 +577222,74.825,58.005 +577223,73.6,56.211 +577224,72.231,54.37 +577225,74.552,59.73 +577226,73.496,57.978 +577227,72.323,56.181 +577228,71.01,54.338 +577229,73.175,59.704 +577230,72.168,57.95 +577231,71.046,56.152 +577232,69.79,54.307 +577233,71.798,59.677 +577234,70.84,57.922 +577235,69.77,56.124 +577236,68.571,54.278 +577237,70.419,59.649 +577238,69.511,57.894 +577239,68.495,56.095 +577240,67.353,54.251 +577241,69.04,59.619 +577242,68.182,57.865 +577243,67.219,56.068 +577244,66.136,54.225 +577245,67.661,59.588 +577246,66.852,57.836 +577247,65.944,56.04 +577248,64.919,54.2 +577249,66.28,59.555 +577250,65.523,57.806 +577251,64.67,56.014 +577252,63.704,54.177 +577253,64.899,59.521 +577254,64.193,57.775 +577255,63.395,55.987 +577256,62.489,54.155 +577257,63.518,59.485 +577258,62.864,57.744 +577259,62.121,55.961 +577260,61.275,54.135 +577261,62.136,59.448 +577262,61.534,57.713 +577263,60.847,55.936 +577264,60.061,54.116 +577265,60.753,59.41 +577266,60.204,57.681 +577267,59.573,55.911 +577268,58.848,54.098 +577269,59.37,59.37 +577270,58.874,57.649 +577271,58.3,55.887 +577272,57.636,54.082 +577273,57.987,59.329 +577274,57.543,57.616 +577275,57.026,55.863 +577276,56.424,54.068 +577277,56.603,59.287 +577278,56.213,57.583 +577279,55.753,55.839 +577280,55.212,54.055 +577281,55.219,59.243 +577282,54.883,57.549 +577283,54.48,55.816 +577284,54.001,54.043 +577285,53.834,59.198 +577286,53.552,57.515 +577287,53.207,55.794 +577288,52.79,54.033 +577289,52.449,59.151 +577290,52.222,57.48 +577291,51.935,55.772 +577292,51.579,54.024 +577293,51.064,59.103 +577294,50.891,57.445 +577295,50.662,55.75 +577296,50.369,54.017 +577297,49.678,59.053 +577298,49.561,57.409 +577299,49.39,55.729 +577300,49.158,54.011 +577301,48.293,59.002 +577302,48.23,57.373 +577303,48.117,55.708 +577304,47.948,54.007 +577305,46.907,58.95 +577306,46.899,57.336 +577307,46.845,55.688 +577308,46.738,54.003 +577309,45.521,58.897 +577310,45.569,57.299 +577311,45.573,55.668 +577312,45.528,54.002 +577313,44.135,58.842 +577314,44.238,57.262 +577315,44.3,55.648 +577316,44.317,54.001 +577317,42.749,58.786 +577318,42.908,57.224 +577319,43.028,55.629 +577320,43.107,54.002 +577321,41.363,58.728 +577322,41.577,57.186 +577323,41.756,55.611 +577324,41.896,54.004 +577325,39.977,58.67 +577326,40.247,57.147 +577327,40.484,55.593 +577328,40.685,54.007 +577329,38.592,58.61 +577330,38.916,57.107 +577331,39.212,55.575 +577332,39.474,54.012 +577333,37.206,58.548 +577334,37.586,57.068 +577335,37.94,55.558 +577336,38.263,54.018 +577337,35.82,58.486 +577338,36.256,57.028 +577339,36.667,55.541 +577340,37.051,54.025 +577341,34.435,58.422 +577342,34.926,56.987 +577343,35.395,55.524 +577344,35.839,54.034 +577345,33.05,58.357 +577346,33.596,56.946 +577347,34.123,55.508 +577348,34.626,54.044 +577349,31.665,58.29 +577350,32.267,56.905 +577351,32.85,55.493 +577352,33.413,54.054 +577353,30.28,58.223 +577354,30.937,56.863 +577355,31.577,55.477 +577356,32.199,54.066 +577357,28.896,58.154 +577358,29.608,56.821 +577359,30.305,55.462 +577360,30.985,54.08 +577361,27.512,58.085 +577362,28.279,56.778 +577363,29.032,55.448 +577364,29.77,54.094 +577365,26.128,58.014 +577366,26.95,56.735 +577367,27.759,55.433 +577368,28.554,54.109 +577369,24.745,57.942 +577370,25.621,56.692 +577371,26.486,55.42 +577372,27.337,54.126 +577373,23.362,57.868 +577374,24.293,56.648 +577375,25.212,55.406 +577376,26.12,54.143 +577377,21.98,57.794 +577378,22.965,56.604 +577379,23.939,55.393 +577380,24.902,54.162 +577381,20.599,57.719 +577382,21.637,56.56 +577383,22.665,55.38 +577384,23.683,54.181 +577385,19.218,57.643 +577386,20.31,56.515 +577387,21.391,55.368 +577388,22.462,54.202 +577389,17.838,57.565 +577390,18.982,56.47 +577391,20.117,55.355 +577392,21.241,54.223 +577393,16.458,57.487 +577394,17.655,56.424 +577395,18.842,55.344 +577396,20.019,54.245 +577397,15.079,57.408 +577398,16.329,56.379 +577399,17.567,55.332 +577400,18.796,54.269 +577401,13.701,57.327 +577402,15.002,56.333 +577403,16.292,55.321 +577404,17.572,54.293 +577405,12.324,57.246 +577406,13.676,56.286 +577407,15.017,55.31 +577408,16.347,54.318 +577409,10.947,57.164 +577410,12.351,56.24 +577411,13.741,55.299 +577412,15.12,54.343 +577413,9.5715,57.081 +577414,11.026,56.193 +577415,12.465,55.288 +577416,13.893,54.37 +577417,8.1968,56.997 +577418,9.7007,56.145 +577419,11.189,55.278 +577420,12.664,54.397 +577421,6.8231,56.913 +577422,8.3763,56.098 +577423,9.9125,55.268 +577424,11.434,54.425 +577425,5.4503,56.827 +577426,7.0523,56.05 +577427,8.6355,55.259 +577428,10.202,54.454 +577429,4.0785,56.741 +577430,5.7287,56.002 +577431,7.3582,55.249 +577432,8.9694,54.483 +577433,2.7079,56.654 +577434,4.4055,55.954 +577435,6.0805,55.24 +577436,7.7353,54.513 +577437,1.3383,56.567 +577438,3.0829,55.906 +577439,4.8024,55.231 +577440,6.4997,54.544 +577441,359.97,56.479 +577442,1.7606,55.857 +577443,3.5239,55.222 +577444,5.2627,54.575 +577445,358.6,56.39 +577446,0.43889,55.808 +577447,2.245,55.213 +577448,4.0242,54.607 +577449,357.24,56.3 +577450,359.12,55.759 +577451,0.96566,55.204 +577452,2.7842,54.639 +577453,355.87,56.21 +577454,357.8,55.71 +577455,359.69,55.196 +577456,1.5428,54.671 +577457,354.51,56.119 +577458,356.48,55.66 +577459,358.41,55.188 +577460,0.29975,54.705 +577461,353.15,56.028 +577462,355.16,55.61 +577463,357.13,55.18 +577464,359.06,54.738 +577465,351.79,55.937 +577466,353.84,55.561 +577467,355.84,55.172 +577468,357.81,54.772 +577469,350.43,55.844 +577470,352.52,55.511 +577471,354.56,55.164 +577472,356.56,54.806 +577473,349.07,55.752 +577474,351.2,55.461 +577475,353.28,55.156 +577476,355.31,54.841 +577477,347.71,55.659 +577478,349.88,55.41 +577479,352,55.149 +577480,354.06,54.875 +577481,346.36,55.566 +577482,348.57,55.36 +577483,350.71,55.141 +577484,352.81,54.91 +577485,345,55.472 +577486,347.25,55.31 +577487,349.43,55.134 +577488,351.55,54.946 +577489,343.65,55.378 +577490,345.93,55.259 +577491,348.15,55.126 +577492,350.3,54.981 +577493,342.3,55.284 +577494,344.62,55.209 +577495,346.86,55.119 +577496,349.04,55.016 +577497,340.95,55.19 +577498,343.3,55.158 +577499,345.58,55.111 +577500,347.78,55.052 +577501,339.6,55.095 +577502,341.99,55.107 +577503,344.29,55.104 +577504,346.52,55.088 +577505,338.26,55 +577506,340.68,55.057 +577507,343.01,55.097 +577508,345.26,55.123 +577509,336.92,54.905 +577510,339.36,55.006 +577511,341.72,55.09 +577512,343.99,55.159 +577513,335.57,54.81 +577514,338.05,54.955 +577515,340.43,55.082 +577516,342.72,55.195 +577517,334.23,54.715 +577518,336.74,54.904 +577519,339.14,55.075 +577520,341.46,55.231 +577521,332.9,54.62 +577522,335.43,54.854 +577523,337.86,55.068 +577524,340.19,55.266 +577525,331.56,54.525 +577526,334.12,54.803 +577527,336.57,55.061 +577528,338.91,55.302 +577529,330.22,54.43 +577530,332.81,54.752 +577531,335.28,55.053 +577532,337.64,55.337 +577533,328.89,54.336 +577534,331.5,54.701 +577535,333.99,55.046 +577536,336.36,55.372 +577537,327.56,54.241 +577538,330.19,54.651 +577539,332.7,55.038 +577540,335.09,55.407 +577541,326.23,54.146 +577542,328.89,54.6 +577543,331.41,55.031 +577544,333.81,55.441 +577545,324.91,54.052 +577546,327.58,54.55 +577547,330.11,55.023 +577548,332.53,55.476 +577549,323.58,53.958 +577550,326.27,54.499 +577551,328.82,55.015 +577552,331.24,55.51 +577553,322.26,53.864 +577554,324.97,54.449 +577555,327.53,55.007 +577556,329.96,55.543 +577557,320.94,53.771 +577558,323.67,54.399 +577559,326.24,54.999 +577560,328.67,55.576 +577561,319.62,53.677 +577562,322.36,54.348 +577563,324.94,54.991 +577564,327.38,55.609 +577565,318.3,53.585 +577566,321.06,54.298 +577567,323.65,54.983 +577568,326.09,55.641 +577569,316.99,53.492 +577570,319.76,54.249 +577571,322.35,54.974 +577572,324.8,55.673 +577573,315.68,53.4 +577574,318.45,54.199 +577575,321.06,54.966 +577576,323.51,55.705 +577577,314.37,53.309 +577578,317.15,54.149 +577579,319.76,54.957 +577580,322.21,55.735 +577581,313.06,53.218 +577582,315.85,54.1 +577583,318.46,54.948 +577584,320.91,55.766 +577585,311.75,53.128 +577586,314.55,54.051 +577587,317.16,54.939 +577588,319.61,55.795 +577589,310.45,53.038 +577590,313.26,54.002 +577591,315.87,54.929 +577592,318.31,55.824 +577593,309.15,52.949 +577594,311.96,53.953 +577595,314.57,54.92 +577596,317.01,55.852 +577597,307.85,52.86 +577598,310.66,53.905 +577599,313.27,54.91 +577600,315.71,55.88 +577601,306.55,52.772 +577602,309.36,53.857 +577603,311.97,54.9 +577604,314.4,55.907 +577605,305.26,52.685 +577606,308.07,53.808 +577607,310.67,54.889 +577608,313.09,55.933 +577609,303.96,52.599 +577610,306.77,53.761 +577611,309.37,54.879 +577612,311.78,55.958 +577613,302.67,52.514 +577614,305.48,53.713 +577615,308.07,54.868 +577616,310.47,55.983 +577617,301.39,52.429 +577618,304.19,53.666 +577619,306.76,54.857 +577620,309.15,56.006 +577621,300.1,52.345 +577622,302.89,53.619 +577623,305.46,54.845 +577624,307.84,56.029 +577625,298.82,52.262 +577626,301.6,53.572 +577627,304.16,54.833 +577628,306.52,56.051 +577629,297.53,52.18 +577630,300.31,53.526 +577631,302.85,54.821 +577632,305.2,56.072 +577633,296.26,52.099 +577634,299.02,53.48 +577635,301.55,54.809 +577636,303.88,56.092 +577637,294.98,52.019 +577638,297.73,53.434 +577639,300.24,54.796 +577640,302.56,56.111 +577641,293.7,51.94 +577642,296.44,53.389 +577643,298.94,54.783 +577644,301.24,56.129 +577645,292.43,51.863 +577646,295.15,53.344 +577647,297.63,54.77 +577648,299.91,56.146 +577649,291.16,51.786 +577650,293.87,53.299 +577651,296.32,54.756 +577652,298.58,56.162 +577653,289.89,51.71 +577654,292.58,53.255 +577655,295.02,54.742 +577656,297.25,56.177 +577657,288.63,51.636 +577658,291.29,53.211 +577659,293.71,54.727 +577660,295.92,56.191 +577661,287.36,51.562 +577662,290.01,53.167 +577663,292.4,54.712 +577664,294.59,56.203 +577665,286.1,51.49 +577666,288.72,53.124 +577667,291.09,54.697 +577668,293.26,56.215 +577669,284.84,51.419 +577670,287.44,53.082 +577671,289.78,54.681 +577672,291.92,56.226 +577673,283.59,51.349 +577674,286.16,53.039 +577675,288.47,54.665 +577676,290.59,56.235 +577677,282.33,51.281 +577678,284.87,52.997 +577679,287.16,54.649 +577680,289.25,56.243 +577681,281.08,51.214 +577682,283.59,52.956 +577683,285.85,54.632 +577684,287.91,56.25 +577685,279.83,51.148 +577686,282.31,52.915 +577687,284.54,54.615 +577688,286.57,56.255 +577689,278.58,51.083 +577690,281.03,52.874 +577691,283.23,54.597 +577692,285.22,56.26 +577693,277.33,51.02 +577694,279.75,52.834 +577695,281.92,54.579 +577696,283.88,56.263 +577697,276.09,50.959 +577698,278.47,52.794 +577699,280.6,54.56 +577700,282.54,56.264 +577701,274.85,50.898 +577702,277.19,52.755 +577703,279.29,54.541 +577704,281.19,56.265 +577705,273.6,50.839 +577706,275.91,52.716 +577707,277.98,54.522 +577708,279.84,56.264 +577709,272.37,50.782 +577710,274.64,52.678 +577711,276.66,54.502 +577712,278.49,56.262 +577713,271.13,50.726 +577714,273.36,52.64 +577715,275.35,54.481 +577716,277.14,56.258 +577717,269.89,50.671 +577718,272.08,52.602 +577719,274.03,54.46 +577720,275.79,56.254 +577721,268.66,50.618 +577722,270.81,52.565 +577723,272.72,54.439 +577724,274.44,56.247 +577725,267.43,50.567 +577726,269.53,52.529 +577727,271.4,54.417 +577728,273.08,56.24 +577729,266.2,50.517 +577730,268.26,52.493 +577731,270.08,54.395 +577732,271.73,56.231 +577733,264.97,50.469 +577734,266.98,52.457 +577735,268.77,54.372 +577736,270.37,56.22 +577737,263.75,50.422 +577738,265.71,52.423 +577739,267.45,54.349 +577740,269.01,56.208 +577741,262.52,50.377 +577742,264.44,52.388 +577743,266.13,54.325 +577744,267.65,56.195 +577745,261.3,50.333 +577746,263.17,52.354 +577747,264.82,54.301 +577748,266.29,56.18 +577749,260.08,50.291 +577750,261.89,52.321 +577751,263.5,54.276 +577752,264.93,56.164 +577753,258.86,50.251 +577754,260.62,52.288 +577755,262.18,54.25 +577756,263.57,56.146 +577757,257.64,50.212 +577758,259.35,52.256 +577759,260.86,54.225 +577760,262.21,56.127 +577761,256.42,50.175 +577762,258.08,52.224 +577763,259.54,54.198 +577764,260.84,56.106 +577765,255.21,50.139 +577766,256.81,52.192 +577767,258.22,54.172 +577768,259.48,56.084 +577769,253.99,50.105 +577770,255.54,52.162 +577771,256.9,54.144 +577772,258.11,56.06 +577773,252.78,50.073 +577774,254.27,52.131 +577775,255.58,54.116 +577776,256.74,56.035 +577777,251.57,50.042 +577778,253,52.102 +577779,254.26,54.088 +577780,255.38,56.008 +577781,250.36,50.013 +577782,251.74,52.072 +577783,252.94,54.059 +577784,254.01,55.98 +577785,249.15,49.986 +577786,250.47,52.044 +577787,251.62,54.03 +577788,252.64,55.95 +577789,247.94,49.96 +577790,249.2,52.016 +577791,250.3,54 +577792,251.27,55.919 +577793,246.73,49.936 +577794,247.93,51.988 +577795,248.98,53.969 +577796,249.9,55.886 +577797,245.52,49.913 +577798,246.67,51.961 +577799,247.66,53.939 +577800,248.53,55.852 +577801,244.32,49.892 +577802,245.4,51.934 +577803,246.34,53.907 +577804,247.16,55.816 +577805,243.11,49.873 +577806,244.13,51.909 +577807,245.02,53.875 +577808,245.78,55.779 +577809,241.91,49.856 +577810,242.87,51.883 +577811,243.69,53.843 +577812,244.41,55.74 +577813,240.71,49.84 +577814,241.6,51.858 +577815,242.37,53.81 +577816,243.04,55.7 +577817,239.5,49.826 +577818,240.34,51.834 +577819,241.05,53.776 +577820,241.66,55.658 +577821,238.3,49.813 +577822,239.07,51.81 +577823,239.73,53.742 +577824,240.29,55.615 +577825,237.1,49.802 +577826,237.81,51.787 +577827,238.41,53.708 +577828,238.91,55.57 +577829,235.9,49.792 +577830,236.54,51.764 +577831,237.08,53.673 +577832,237.54,55.524 +577833,234.7,49.785 +577834,235.28,51.741 +577835,235.76,53.637 +577836,236.16,55.476 +577837,233.5,49.778 +577838,234.02,51.72 +577839,234.44,53.601 +577840,234.78,55.427 +577841,232.3,49.774 +577842,232.75,51.698 +577843,233.12,53.565 +577844,233.41,55.376 +577845,231.1,49.77 +577846,231.49,51.678 +577847,231.8,53.528 +577848,232.03,55.324 +577849,229.9,49.769 +577850,230.22,51.657 +577851,230.47,53.49 +577852,230.65,55.27 +577853,228.7,49.769 +577854,228.96,51.638 +577855,229.15,53.452 +577856,229.28,55.215 +577857,227.5,49.77 +577858,227.7,51.618 +577859,227.83,53.414 +577860,227.9,55.158 +577861,226.3,49.773 +577862,226.43,51.6 +577863,226.51,53.375 +577864,226.52,55.1 +577865,225.1,49.777 +577866,225.17,51.581 +577867,225.18,53.335 +577868,225.14,55.041 +577869,223.9,49.783 +577870,223.91,51.564 +577871,223.86,53.295 +577872,223.77,54.98 +577873,222.7,49.79 +577874,222.65,51.546 +577875,222.54,53.255 +577876,222.39,54.918 +577877,221.5,49.799 +577878,221.38,51.53 +577879,221.22,53.214 +577880,221.01,54.854 +577881,220.3,49.809 +577882,220.12,51.513 +577883,219.89,53.173 +577884,219.63,54.789 +577885,219.1,49.821 +577886,218.86,51.497 +577887,218.57,53.131 +577888,218.26,54.723 +577889,217.9,49.833 +577890,217.59,51.482 +577891,217.25,53.089 +577892,216.88,54.655 +577893,216.7,49.848 +577894,216.33,51.467 +577895,215.93,53.046 +577896,215.5,54.586 +577897,215.5,49.863 +577898,215.07,51.452 +577899,214.61,53.003 +577900,214.12,54.516 +577901,214.3,49.88 +577902,213.8,51.438 +577903,213.29,52.959 +577904,212.75,54.444 +577905,213.1,49.898 +577906,212.54,51.425 +577907,211.96,52.916 +577908,211.37,54.371 +577909,211.89,49.917 +577910,211.28,51.411 +577911,210.64,52.871 +577912,210,54.297 +577913,210.69,49.938 +577914,210.01,51.399 +577915,209.32,52.827 +577916,208.62,54.222 +577917,209.49,49.959 +577918,208.75,51.386 +577919,208,52.781 +577920,207.24,54.145 +577921,208.28,49.982 +577922,207.49,51.374 +577923,206.68,52.736 +577924,205.87,54.067 +577925,207.08,50.006 +577926,206.22,51.363 +577927,205.36,52.69 +577928,204.49,53.988 +577929,205.87,50.031 +577930,204.96,51.351 +577931,204.04,52.644 +577932,203.12,53.908 +577933,204.66,50.057 +577934,203.69,51.34 +577935,202.72,52.597 +577936,201.75,53.827 +577937,203.45,50.084 +577938,202.43,51.33 +577939,201.4,52.55 +577940,200.37,53.745 +577941,202.24,50.112 +577942,201.16,51.32 +577943,200.08,52.503 +577944,199,53.661 +577945,201.03,50.142 +577946,199.9,51.31 +577947,198.77,52.455 +577948,197.63,53.577 +577949,199.82,50.172 +577950,198.63,51.3 +577951,197.45,52.407 +577952,196.26,53.491 +577953,198.61,50.203 +577954,197.37,51.291 +577955,196.13,52.359 +577956,194.89,53.405 +577957,197.39,50.235 +577958,196.1,51.282 +577959,194.81,52.31 +577960,193.52,53.317 +577961,196.18,50.267 +577962,194.84,51.274 +577963,193.49,52.261 +577964,192.15,53.229 +577965,194.96,50.301 +577966,193.57,51.265 +577967,192.18,52.212 +577968,190.78,53.14 +577969,193.74,50.335 +577970,192.3,51.257 +577971,190.86,52.163 +577972,189.42,53.049 +577973,192.52,50.37 +577974,191.04,51.25 +577975,189.55,52.113 +577976,188.05,52.958 +577977,191.3,50.406 +577978,189.77,51.242 +577979,188.23,52.063 +577980,186.68,52.866 +577981,190.08,50.443 +577982,188.5,51.235 +577983,186.91,52.012 +577984,185.32,52.774 +577985,188.86,50.48 +577986,187.23,51.228 +577987,185.6,51.962 +577988,183.96,52.68 +577989,187.63,50.518 +577990,185.96,51.221 +577991,184.29,51.911 +577992,182.6,52.586 +577993,186.41,50.556 +577994,184.7,51.215 +577995,182.97,51.86 +577996,181.24,52.491 +577997,185.18,50.595 +577998,183.43,51.208 +577999,181.66,51.809 +578000,179.88,52.395 +578001,183.95,50.634 +578002,182.16,51.202 +578003,180.35,51.758 +578004,178.52,52.299 +578005,182.72,50.674 +578006,180.89,51.196 +578007,179.03,51.706 +578008,177.16,52.202 +578009,181.49,50.714 +578010,179.62,51.191 +578011,177.72,51.655 +578012,175.8,52.105 +578013,180.26,50.755 +578014,178.35,51.185 +578015,176.41,51.603 +578016,174.45,52.007 +578017,179.02,50.796 +578018,177.07,51.179 +578019,175.1,51.551 +578020,173.1,51.908 +578021,177.78,50.838 +578022,175.8,51.174 +578023,173.79,51.499 +578024,171.74,51.809 +578025,176.54,50.879 +578026,174.53,51.169 +578027,172.48,51.446 +578028,170.39,51.71 +578029,175.3,50.921 +578030,173.26,51.164 +578031,171.17,51.394 +578032,169.04,51.61 +578033,174.06,50.963 +578034,171.98,51.159 +578035,169.86,51.342 +578036,167.7,51.51 +578037,172.82,51.006 +578038,170.71,51.154 +578039,168.56,51.289 +578040,166.35,51.409 +578041,171.57,51.048 +578042,169.44,51.149 +578043,167.25,51.236 +578044,165.01,51.308 +578045,170.32,51.091 +578046,168.16,51.144 +578047,165.94,51.184 +578048,163.66,51.207 +578049,169.07,51.134 +578050,166.89,51.14 +578051,164.64,51.131 +578052,162.32,51.106 +578053,167.82,51.176 +578054,165.61,51.135 +578055,163.33,51.078 +578056,160.98,51.005 +578057,166.57,51.219 +578058,164.33,51.13 +578059,162.03,51.026 +578060,159.64,50.903 +578061,165.32,51.262 +578062,163.06,51.125 +578063,160.72,50.973 +578064,158.31,50.801 +578065,164.06,51.304 +578066,161.78,51.121 +578067,159.42,50.92 +578068,156.97,50.699 +578069,162.8,51.347 +578070,160.5,51.116 +578071,158.12,50.867 +578072,155.64,50.598 +578073,161.54,51.389 +578074,159.22,51.111 +578075,156.82,50.815 +578076,154.31,50.496 +578077,160.28,51.431 +578078,157.94,51.107 +578079,155.52,50.762 +578080,152.98,50.394 +578081,159.02,51.473 +578082,156.66,51.102 +578083,154.21,50.709 +578084,151.65,50.292 +578085,157.75,51.515 +578086,155.38,51.097 +578087,152.91,50.657 +578088,150.33,50.191 +578089,156.48,51.556 +578090,154.1,51.092 +578091,151.62,50.604 +578092,149,50.089 +578093,155.21,51.597 +578094,152.82,51.087 +578095,150.32,50.552 +578096,147.68,49.988 +578097,153.94,51.638 +578098,151.54,51.082 +578099,149.02,50.5 +578100,146.36,49.887 +578101,152.67,51.679 +578102,150.26,51.077 +578103,147.72,50.447 +578104,145.04,49.787 +578105,151.39,51.718 +578106,148.98,51.072 +578107,146.43,50.395 +578108,143.73,49.686 +578109,150.12,51.758 +578110,147.69,51.066 +578111,145.13,50.344 +578112,142.41,49.586 +578113,148.84,51.797 +578114,146.41,51.061 +578115,143.84,50.292 +578116,141.1,49.487 +578117,147.56,51.835 +578118,145.12,51.055 +578119,142.54,50.24 +578120,139.79,49.388 +578121,146.28,51.873 +578122,143.84,51.049 +578123,141.25,50.189 +578124,138.49,49.289 +578125,144.99,51.91 +578126,142.55,51.043 +578127,139.96,50.138 +578128,137.18,49.191 +578129,143.7,51.947 +578130,141.26,51.036 +578131,138.67,50.087 +578132,135.88,49.094 +578133,142.42,51.983 +578134,139.98,51.03 +578135,137.38,50.036 +578136,134.58,48.997 +578137,141.13,52.018 +578138,138.69,51.023 +578139,136.09,49.986 +578140,133.28,48.9 +578141,139.84,52.053 +578142,137.4,51.016 +578143,134.8,49.936 +578144,131.98,48.805 +578145,138.54,52.087 +578146,136.11,51.009 +578147,133.51,49.886 +578148,130.69,48.71 +578149,137.25,52.12 +578150,134.82,51.002 +578151,132.22,49.836 +578152,129.4,48.616 +578153,135.95,52.152 +578154,133.53,50.994 +578155,130.93,49.787 +578156,128.11,48.523 +578157,134.65,52.183 +578158,132.24,50.986 +578159,129.65,49.737 +578160,126.82,48.43 +578161,133.35,52.214 +578162,130.95,50.978 +578163,128.36,49.689 +578164,125.54,48.339 +578165,132.05,52.243 +578166,129.66,50.969 +578167,127.08,49.64 +578168,124.25,48.248 +578169,130.74,52.272 +578170,128.37,50.96 +578171,125.79,49.592 +578172,122.97,48.159 +578173,129.44,52.3 +578174,127.08,50.951 +578175,124.51,49.544 +578176,121.7,48.07 +578177,128.13,52.326 +578178,125.78,50.942 +578179,123.23,49.497 +578180,120.42,47.982 +578181,126.82,52.352 +578182,124.49,50.932 +578183,121.95,49.45 +578184,119.15,47.896 +578185,125.51,52.377 +578186,123.19,50.922 +578187,120.67,49.403 +578188,117.88,47.81 +578189,124.2,52.4 +578190,121.9,50.911 +578191,119.39,49.357 +578192,116.61,47.726 +578193,122.88,52.423 +578194,120.6,50.901 +578195,118.11,49.311 +578196,115.34,47.643 +578197,121.57,52.444 +578198,119.31,50.889 +578199,116.83,49.265 +578200,114.08,47.561 +578201,120.25,52.464 +578202,118.01,50.878 +578203,115.55,49.22 +578204,112.81,47.481 +578205,118.93,52.483 +578206,116.71,50.866 +578207,114.27,49.175 +578208,111.55,47.401 +578209,117.61,52.501 +578210,115.42,50.853 +578211,113,49.131 +578212,110.3,47.323 +578213,116.29,52.518 +578214,114.12,50.841 +578215,111.72,49.087 +578216,109.04,47.246 +578217,114.96,52.533 +578218,112.82,50.827 +578219,110.45,49.044 +578220,107.79,47.171 +578221,113.64,52.547 +578222,111.52,50.814 +578223,109.17,49.001 +578224,106.54,47.097 +578225,112.31,52.56 +578226,110.22,50.8 +578227,107.9,48.959 +578228,105.29,47.024 +578229,110.98,52.571 +578230,108.92,50.785 +578231,106.63,48.917 +578232,104.05,46.953 +578233,109.65,52.581 +578234,107.62,50.77 +578235,105.35,48.876 +578236,102.8,46.884 +578237,108.32,52.59 +578238,106.32,50.755 +578239,104.08,48.835 +578240,101.56,46.816 +578241,106.99,52.598 +578242,105.02,50.739 +578243,102.81,48.794 +578244,100.32,46.749 +578245,105.66,52.604 +578246,103.71,50.723 +578247,101.54,48.754 +578248,99.084,46.684 +578249,104.32,52.609 +578250,102.41,50.706 +578251,100.27,48.715 +578252,97.849,46.621 +578253,102.99,52.612 +578254,101.11,50.689 +578255,99.006,48.676 +578256,96.616,46.559 +578257,101.65,52.614 +578258,99.805,50.671 +578259,97.738,48.638 +578260,95.385,46.499 +578261,100.31,52.614 +578262,98.501,50.653 +578263,96.471,48.6 +578264,94.156,46.441 +578265,98.968,52.613 +578266,97.197,50.635 +578267,95.204,48.563 +578268,92.929,46.384 +578269,97.626,52.611 +578270,95.892,50.615 +578271,93.939,48.527 +578272,91.704,46.329 +578273,96.284,52.607 +578274,94.587,50.596 +578275,92.673,48.49 +578276,90.481,46.275 +578277,94.94,52.601 +578278,93.281,50.576 +578279,91.409,48.455 +578280,89.26,46.224 +578281,93.595,52.594 +578282,91.976,50.555 +578283,90.145,48.42 +578284,88.041,46.174 +578285,92.248,52.585 +578286,90.67,50.534 +578287,88.881,48.386 +578288,86.824,46.126 +578289,90.901,52.575 +578290,89.363,50.512 +578291,87.618,48.352 +578292,85.608,46.08 +578293,89.553,52.564 +578294,88.056,50.49 +578295,86.356,48.319 +578296,84.394,46.035 +578297,88.203,52.55 +578298,86.749,50.467 +578299,85.094,48.286 +578300,83.182,45.992 +578301,86.853,52.535 +578302,85.442,50.444 +578303,83.833,48.254 +578304,81.971,45.952 +578305,85.502,52.519 +578306,84.134,50.42 +578307,82.572,48.223 +578308,80.762,45.913 +578309,84.15,52.501 +578310,82.826,50.396 +578311,81.312,48.192 +578312,79.555,45.875 +578313,82.796,52.482 +578314,81.517,50.371 +578315,80.053,48.162 +578316,78.349,45.84 +578317,81.442,52.46 +578318,80.209,50.345 +578319,78.793,48.132 +578320,77.145,45.807 +578321,80.087,52.438 +578322,78.9,50.319 +578323,77.535,48.103 +578324,75.942,45.775 +578325,78.732,52.413 +578326,77.591,50.293 +578327,76.276,48.075 +578328,74.74,45.745 +578329,77.375,52.387 +578330,76.281,50.266 +578331,75.019,48.047 +578332,73.54,45.717 +578333,76.018,52.36 +578334,74.972,50.238 +578335,73.761,48.02 +578336,72.341,45.691 +578337,74.66,52.33 +578338,73.662,50.21 +578339,72.504,47.994 +578340,71.143,45.667 +578341,73.302,52.3 +578342,72.352,50.181 +578343,71.248,47.968 +578344,69.946,45.645 +578345,71.942,52.267 +578346,71.042,50.152 +578347,69.991,47.943 +578348,68.75,45.625 +578349,70.583,52.233 +578350,69.732,50.122 +578351,68.736,47.918 +578352,67.555,45.606 +578353,69.222,52.197 +578354,68.421,50.092 +578355,67.48,47.894 +578356,66.361,45.589 +578357,67.861,52.16 +578358,67.111,50.061 +578359,66.225,47.87 +578360,65.168,45.575 +578361,66.5,52.121 +578362,65.8,50.03 +578363,64.97,47.848 +578364,63.976,45.562 +578365,65.138,52.08 +578366,64.489,49.998 +578367,63.716,47.825 +578368,62.785,45.551 +578369,63.775,52.038 +578370,63.178,49.965 +578371,62.461,47.804 +578372,61.594,45.541 +578373,62.412,51.994 +578374,61.867,49.932 +578375,61.207,47.783 +578376,60.404,45.534 +578377,61.049,51.949 +578378,60.556,49.899 +578379,59.954,47.762 +578380,59.215,45.528 +578381,59.685,51.902 +578382,59.245,49.865 +578383,58.7,47.743 +578384,58.026,45.525 +578385,58.322,51.853 +578386,57.933,49.83 +578387,57.447,47.723 +578388,56.837,45.523 +578389,56.957,51.803 +578390,56.622,49.795 +578391,56.194,47.705 +578392,55.649,45.523 +578393,55.593,51.751 +578394,55.311,49.759 +578395,54.941,47.687 +578396,54.462,45.524 +578397,54.228,51.698 +578398,54,49.723 +578399,53.688,47.669 +578400,53.274,45.527 +578401,52.863,51.643 +578402,52.688,49.686 +578403,52.436,47.653 +578404,52.087,45.533 +578405,51.499,51.587 +578406,51.377,49.649 +578407,51.183,47.636 +578408,50.9,45.539 +578409,50.133,51.529 +578410,50.066,49.611 +578411,49.931,47.621 +578412,49.713,45.548 +578413,48.768,51.469 +578414,48.755,49.573 +578415,48.679,47.605 +578416,48.526,45.558 +578417,47.403,51.408 +578418,47.443,49.535 +578419,47.426,47.591 +578420,47.339,45.57 +578421,46.038,51.345 +578422,46.132,49.495 +578423,46.174,47.577 +578424,46.152,45.583 +578425,44.673,51.281 +578426,44.822,49.456 +578427,44.922,47.563 +578428,44.965,45.598 +578429,43.308,51.216 +578430,43.511,49.415 +578431,43.67,47.551 +578432,43.777,45.615 +578433,41.943,51.149 +578434,42.2,49.375 +578435,42.418,47.538 +578436,42.589,45.633 +578437,40.578,51.08 +578438,40.889,49.334 +578439,41.166,47.526 +578440,41.401,45.653 +578441,39.214,51.01 +578442,39.579,49.292 +578443,39.914,47.515 +578444,40.213,45.674 +578445,37.849,50.939 +578446,38.269,49.25 +578447,38.662,47.504 +578448,39.024,45.697 +578449,36.485,50.866 +578450,36.959,49.208 +578451,37.41,47.494 +578452,37.834,45.722 +578453,35.121,50.792 +578454,35.649,49.165 +578455,36.158,47.484 +578456,36.644,45.747 +578457,33.758,50.717 +578458,34.339,49.121 +578459,34.906,47.475 +578460,35.454,45.774 +578461,32.395,50.64 +578462,33.03,49.077 +578463,33.653,47.466 +578464,34.262,45.803 +578465,31.032,50.562 +578466,31.721,49.033 +578467,32.401,47.458 +578468,33.07,45.833 +578469,29.67,50.482 +578470,30.412,48.989 +578471,31.148,47.45 +578472,31.877,45.864 +578473,28.308,50.402 +578474,29.103,48.944 +578475,29.895,47.442 +578476,30.684,45.896 +578477,26.947,50.32 +578478,27.795,48.898 +578479,28.642,47.435 +578480,29.489,45.93 +578481,25.586,50.236 +578482,26.487,48.852 +578483,27.389,47.429 +578484,28.293,45.965 +578485,24.226,50.152 +578486,25.179,48.806 +578487,26.136,47.423 +578488,27.097,46.001 +578489,22.866,50.067 +578490,23.872,48.76 +578491,24.882,47.417 +578492,25.899,46.038 +578493,21.507,49.98 +578494,22.564,48.713 +578495,23.629,47.412 +578496,24.701,46.076 +578497,20.149,49.892 +578498,21.258,48.666 +578499,22.375,47.407 +578500,23.501,46.116 +578501,18.792,49.803 +578502,19.951,48.618 +578503,21.12,47.402 +578504,22.3,46.156 +578505,17.435,49.713 +578506,18.645,48.57 +578507,19.866,47.398 +578508,21.098,46.197 +578509,16.079,49.622 +578510,17.34,48.522 +578511,18.611,47.394 +578512,19.895,46.24 +578513,14.724,49.53 +578514,16.034,48.473 +578515,17.356,47.391 +578516,18.69,46.283 +578517,13.37,49.437 +578518,14.73,48.425 +578519,16.101,47.388 +578520,17.484,46.327 +578521,12.017,49.343 +578522,13.425,48.376 +578523,14.845,47.385 +578524,16.277,46.372 +578525,10.664,49.248 +578526,12.121,48.326 +578527,13.589,47.383 +578528,15.068,46.418 +578529,9.313,49.152 +578530,10.818,48.277 +578531,12.333,47.381 +578532,13.858,46.465 +578533,7.9627,49.055 +578534,9.5149,48.227 +578535,11.076,47.379 +578536,12.647,46.512 +578537,6.6135,48.958 +578538,8.2124,48.177 +578539,9.8187,47.377 +578540,11.433,46.56 +578541,5.2654,48.859 +578542,6.9104,48.126 +578543,8.5612,47.376 +578544,10.219,46.609 +578545,3.9184,48.76 +578546,5.6089,48.076 +578547,7.3033,47.375 +578548,9.0026,46.658 +578549,2.5726,48.66 +578550,4.3079,48.025 +578551,6.0449,47.374 +578552,7.7849,46.708 +578553,1.228,48.56 +578554,3.0074,47.974 +578555,4.7862,47.373 +578556,6.5655,46.759 +578557,359.88,48.459 +578558,1.7075,47.923 +578559,3.5271,47.373 +578560,5.3445,46.81 +578561,358.54,48.357 +578562,0.40818,47.872 +578563,2.2675,47.373 +578564,4.1218,46.861 +578565,357.2,48.254 +578566,359.11,47.821 +578567,1.0075,47.373 +578568,2.8974,46.913 +578569,355.86,48.151 +578570,357.81,47.769 +578571,359.75,47.373 +578572,1.6714,46.965 +578573,354.52,48.048 +578574,356.51,47.717 +578575,358.49,47.374 +578576,0.44357,47.018 +578577,353.19,47.944 +578578,355.22,47.666 +578579,357.22,47.374 +578580,359.21,47.07 +578581,351.85,47.84 +578582,353.92,47.614 +578583,355.96,47.375 +578584,357.98,47.124 +578585,350.52,47.735 +578586,352.62,47.562 +578587,354.7,47.375 +578588,356.75,47.177 +578589,349.19,47.63 +578590,351.33,47.51 +578591,353.44,47.376 +578592,355.51,47.23 +578593,347.86,47.524 +578594,350.03,47.458 +578595,352.17,47.377 +578596,354.28,47.284 +578597,346.53,47.418 +578598,348.74,47.406 +578599,350.91,47.378 +578600,353.04,47.338 +578601,345.2,47.312 +578602,347.45,47.354 +578603,349.65,47.38 +578604,351.8,47.391 +578605,343.87,47.206 +578606,346.15,47.302 +578607,348.38,47.381 +578608,350.56,47.445 +578609,342.55,47.1 +578610,344.86,47.25 +578611,347.12,47.382 +578612,349.31,47.499 +578613,341.23,46.994 +578614,343.57,47.198 +578615,345.85,47.383 +578616,348.07,47.553 +578617,339.91,46.887 +578618,342.28,47.145 +578619,344.58,47.385 +578620,346.82,47.606 +578621,338.59,46.781 +578622,340.99,47.093 +578623,343.32,47.386 +578624,345.57,47.66 +578625,337.27,46.674 +578626,339.7,47.042 +578627,342.05,47.387 +578628,344.32,47.713 +578629,335.96,46.568 +578630,338.41,46.99 +578631,340.78,47.388 +578632,343.06,47.766 +578633,334.64,46.461 +578634,337.13,46.938 +578635,339.51,47.39 +578636,341.81,47.819 +578637,333.33,46.355 +578638,335.84,46.886 +578639,338.24,47.391 +578640,340.55,47.871 +578641,332.02,46.249 +578642,334.55,46.835 +578643,336.97,47.392 +578644,339.29,47.923 +578645,330.72,46.143 +578646,333.27,46.783 +578647,335.7,47.393 +578648,338.03,47.975 +578649,329.41,46.038 +578650,331.98,46.732 +578651,334.43,47.394 +578652,336.77,48.026 +578653,328.11,45.933 +578654,330.7,46.681 +578655,333.16,47.395 +578656,335.5,48.077 +578657,326.81,45.828 +578658,329.42,46.63 +578659,331.89,47.395 +578660,334.24,48.128 +578661,325.51,45.724 +578662,328.13,46.579 +578663,330.61,47.396 +578664,332.97,48.177 +578665,324.21,45.62 +578666,326.85,46.529 +578667,329.34,47.396 +578668,331.7,48.227 +578669,322.91,45.516 +578670,325.57,46.478 +578671,328.07,47.397 +578672,330.43,48.275 +578673,321.62,45.413 +578674,324.29,46.428 +578675,326.79,47.397 +578676,329.15,48.324 +578677,320.33,45.311 +578678,323.01,46.378 +578679,325.52,47.397 +578680,327.88,48.371 +578681,319.04,45.209 +578682,321.73,46.329 +578683,324.24,47.396 +578684,326.6,48.418 +578685,317.76,45.109 +578686,320.45,46.28 +578687,322.97,47.396 +578688,325.32,48.464 +578689,316.47,45.008 +578690,319.18,46.23 +578691,321.69,47.395 +578692,324.04,48.509 +578693,315.19,44.909 +578694,317.9,46.182 +578695,320.41,47.394 +578696,322.75,48.553 +578697,313.91,44.81 +578698,316.63,46.133 +578699,319.13,47.393 +578700,321.47,48.597 +578701,312.63,44.712 +578702,315.35,46.085 +578703,317.85,47.392 +578704,320.18,48.639 +578705,311.36,44.616 +578706,314.08,46.038 +578707,316.58,47.39 +578708,318.89,48.681 +578709,310.08,44.52 +578710,312.8,45.99 +578711,315.3,47.388 +578712,317.6,48.722 +578713,308.81,44.425 +578714,311.53,45.943 +578715,314.02,47.386 +578716,316.31,48.762 +578717,307.54,44.331 +578718,310.26,45.897 +578719,312.73,47.383 +578720,315.02,48.801 +578721,306.28,44.238 +578722,308.99,45.85 +578723,311.45,47.38 +578724,313.72,48.839 +578725,305.01,44.146 +578726,307.72,45.804 +578727,310.17,47.377 +578728,312.42,48.876 +578729,303.75,44.056 +578730,306.45,45.759 +578731,308.89,47.374 +578732,311.13,48.911 +578733,302.49,43.966 +578734,305.18,45.714 +578735,307.61,47.37 +578736,309.83,48.946 +578737,301.24,43.878 +578738,303.91,45.67 +578739,306.32,47.366 +578740,308.52,48.979 +578741,299.98,43.791 +578742,302.65,45.625 +578743,305.04,47.361 +578744,307.22,49.012 +578745,298.73,43.706 +578746,301.38,45.582 +578747,303.75,47.356 +578748,305.91,49.043 +578749,297.48,43.622 +578750,300.11,45.539 +578751,302.47,47.351 +578752,304.61,49.073 +578753,296.23,43.539 +578754,298.85,45.496 +578755,301.18,47.345 +578756,303.3,49.101 +578757,294.99,43.458 +578758,297.59,45.454 +578759,299.9,47.339 +578760,301.99,49.129 +578761,293.74,43.378 +578762,296.32,45.412 +578763,298.61,47.332 +578764,300.68,49.155 +578765,292.5,43.3 +578766,295.06,45.371 +578767,297.32,47.325 +578768,299.36,49.18 +578769,291.27,43.223 +578770,293.8,45.331 +578771,296.04,47.318 +578772,298.05,49.203 +578773,290.03,43.148 +578774,292.54,45.291 +578775,294.75,47.31 +578776,296.73,49.225 +578777,288.8,43.074 +578778,291.28,45.251 +578779,293.46,47.302 +578780,295.42,49.246 +578781,287.56,43.002 +578782,290.02,45.212 +578783,292.17,47.293 +578784,294.1,49.265 +578785,286.33,42.932 +578786,288.76,45.174 +578787,290.88,47.284 +578788,292.78,49.283 +578789,285.11,42.863 +578790,287.5,45.136 +578791,289.59,47.274 +578792,291.46,49.299 +578793,283.88,42.797 +578794,286.24,45.099 +578795,288.3,47.264 +578796,290.13,49.314 +578797,282.66,42.732 +578798,284.99,45.062 +578799,287.01,47.254 +578800,288.81,49.328 +578801,281.44,42.668 +578802,283.73,45.026 +578803,285.72,47.242 +578804,287.48,49.339 +578805,280.22,42.607 +578806,282.47,44.991 +578807,284.43,47.231 +578808,286.16,49.35 +578809,279,42.548 +578810,281.22,44.956 +578811,283.14,47.219 +578812,284.83,49.359 +578813,277.79,42.49 +578814,279.96,44.922 +578815,281.85,47.206 +578816,283.5,49.366 +578817,276.57,42.434 +578818,278.71,44.889 +578819,280.55,47.193 +578820,282.17,49.372 +578821,275.36,42.381 +578822,277.46,44.856 +578823,279.26,47.179 +578824,280.84,49.376 +578825,274.15,42.329 +578826,276.21,44.824 +578827,277.97,47.165 +578828,279.51,49.379 +578829,272.95,42.279 +578830,274.95,44.792 +578831,276.67,47.151 +578832,278.18,49.38 +578833,271.74,42.231 +578834,273.7,44.761 +578835,275.38,47.135 +578836,276.84,49.379 +578837,270.54,42.185 +578838,272.45,44.731 +578839,274.08,47.12 +578840,275.51,49.377 +578841,269.34,42.142 +578842,271.2,44.702 +578843,272.79,47.103 +578844,274.17,49.373 +578845,268.14,42.1 +578846,269.95,44.673 +578847,271.5,47.086 +578848,272.83,49.367 +578849,266.94,42.06 +578850,268.7,44.645 +578851,270.2,47.069 +578852,271.5,49.36 +578853,265.74,42.023 +578854,267.45,44.617 +578855,268.9,47.051 +578856,270.16,49.351 +578857,264.55,41.987 +578858,266.21,44.59 +578859,267.61,47.033 +578860,268.82,49.34 +578861,263.35,41.954 +578862,264.96,44.564 +578863,266.31,47.013 +578864,267.48,49.328 +578865,262.16,41.922 +578866,263.71,44.539 +578867,265.02,46.994 +578868,266.14,49.314 +578869,260.97,41.893 +578870,262.47,44.514 +578871,263.72,46.974 +578872,264.79,49.298 +578873,259.78,41.866 +578874,261.22,44.49 +578875,262.42,46.953 +578876,263.45,49.281 +578877,258.59,41.841 +578878,259.97,44.467 +578879,261.13,46.932 +578880,262.11,49.262 +578881,257.4,41.818 +578882,258.73,44.444 +578883,259.83,46.91 +578884,260.76,49.241 +578885,256.22,41.798 +578886,257.48,44.423 +578887,258.53,46.887 +578888,259.42,49.218 +578889,255.03,41.779 +578890,256.24,44.401 +578891,257.24,46.864 +578892,258.07,49.194 +578893,253.85,41.763 +578894,254.99,44.381 +578895,255.94,46.841 +578896,256.73,49.168 +578897,252.66,41.749 +578898,253.75,44.361 +578899,254.64,46.817 +578900,255.38,49.14 +578901,251.48,41.736 +578902,252.51,44.342 +578903,253.34,46.792 +578904,254.04,49.11 +578905,250.3,41.726 +578906,251.26,44.324 +578907,252.04,46.767 +578908,252.69,49.079 +578909,249.12,41.718 +578910,250.02,44.306 +578911,250.75,46.741 +578912,251.34,49.046 +578913,247.94,41.713 +578914,248.78,44.289 +578915,249.45,46.714 +578916,249.99,49.012 +578917,246.76,41.709 +578918,247.54,44.273 +578919,248.15,46.687 +578920,248.65,48.975 +578921,245.58,41.707 +578922,246.29,44.257 +578923,246.85,46.66 +578924,247.3,48.937 +578925,244.41,41.708 +578926,245.05,44.243 +578927,245.55,46.632 +578928,245.95,48.897 +578929,243.23,41.71 +578930,243.81,44.228 +578931,244.26,46.603 +578932,244.6,48.856 +578933,242.05,41.715 +578934,242.57,44.215 +578935,242.96,46.574 +578936,243.25,48.813 +578937,240.87,41.722 +578938,241.33,44.202 +578939,241.66,46.544 +578940,241.9,48.768 +578941,239.7,41.73 +578942,240.09,44.19 +578943,240.36,46.514 +578944,240.55,48.721 +578945,238.52,41.741 +578946,238.84,44.179 +578947,239.06,46.483 +578948,239.2,48.673 +578949,237.34,41.754 +578950,237.6,44.168 +578951,237.77,46.452 +578952,237.85,48.623 +578953,236.17,41.768 +578954,236.36,44.158 +578955,236.47,46.42 +578956,236.5,48.571 +578957,234.99,41.785 +578958,235.12,44.149 +578959,235.17,46.387 +578960,235.15,48.518 +578961,233.81,41.803 +578962,233.88,44.14 +578963,233.87,46.354 +578964,233.8,48.463 +578965,232.64,41.824 +578966,232.64,44.132 +578967,232.57,46.321 +578968,232.45,48.407 +578969,231.46,41.846 +578970,231.4,44.124 +578971,231.28,46.287 +578972,231.11,48.349 +578973,230.28,41.87 +578974,230.16,44.117 +578975,229.98,46.252 +578976,229.76,48.289 +578977,229.11,41.896 +578978,228.92,44.111 +578979,228.68,46.217 +578980,228.41,48.228 +578981,227.93,41.924 +578982,227.68,44.106 +578983,227.38,46.182 +578984,227.06,48.165 +578985,226.75,41.953 +578986,226.44,44.101 +578987,226.09,46.146 +578988,225.71,48.1 +578989,225.57,41.985 +578990,225.2,44.096 +578991,224.79,46.109 +578992,224.36,48.035 +578993,224.39,42.018 +578994,223.95,44.093 +578995,223.49,46.072 +578996,223.01,47.967 +578997,223.21,42.052 +578998,222.71,44.09 +578999,222.2,46.035 +579000,221.67,47.898 +579001,222.03,42.088 +579002,221.47,44.087 +579003,220.9,45.997 +579004,220.32,47.828 +579005,220.85,42.126 +579006,220.23,44.085 +579007,219.6,45.959 +579008,218.97,47.756 +579009,219.67,42.166 +579010,218.99,44.084 +579011,218.31,45.92 +579012,217.63,47.682 +579013,218.48,42.207 +579014,217.75,44.083 +579015,217.01,45.881 +579016,216.28,47.608 +579017,217.3,42.249 +579018,216.51,44.082 +579019,215.72,45.841 +579020,214.94,47.531 +579021,216.11,42.293 +579022,215.26,44.083 +579023,214.42,45.801 +579024,213.59,47.454 +579025,214.93,42.338 +579026,214.02,44.083 +579027,213.13,45.76 +579028,212.25,47.375 +579029,213.74,42.385 +579030,212.78,44.085 +579031,211.84,45.719 +579032,210.91,47.295 +579033,212.55,42.433 +579034,211.54,44.086 +579035,210.54,45.678 +579036,209.56,47.213 +579037,211.36,42.483 +579038,210.29,44.089 +579039,209.25,45.636 +579040,208.22,47.13 +579041,210.17,42.533 +579042,209.05,44.091 +579043,207.96,45.594 +579044,206.88,47.046 +579045,208.98,42.585 +579046,207.81,44.095 +579047,206.66,45.552 +579048,205.54,46.961 +579049,207.79,42.638 +579050,206.56,44.098 +579051,205.37,45.509 +579052,204.2,46.874 +579053,206.59,42.692 +579054,205.32,44.102 +579055,204.08,45.466 +579056,202.86,46.787 +579057,205.4,42.748 +579058,204.08,44.107 +579059,202.79,45.423 +579060,201.53,46.698 +579061,204.2,42.804 +579062,202.83,44.112 +579063,201.5,45.379 +579064,200.19,46.608 +579065,203,42.861 +579066,201.59,44.117 +579067,200.21,45.335 +579068,198.85,46.517 +579069,201.8,42.92 +579070,200.34,44.123 +579071,198.92,45.291 +579072,197.52,46.425 +579073,200.6,42.979 +579074,199.1,44.129 +579075,197.63,45.246 +579076,196.19,46.331 +579077,199.39,43.039 +579078,197.85,44.136 +579079,196.34,45.201 +579080,194.85,46.237 +579081,198.19,43.1 +579082,196.6,44.142 +579083,195.05,45.156 +579084,193.52,46.142 +579085,196.98,43.162 +579086,195.36,44.15 +579087,193.76,45.111 +579088,192.19,46.046 +579089,195.77,43.225 +579090,194.11,44.157 +579091,192.47,45.065 +579092,190.86,45.949 +579093,194.56,43.288 +579094,192.86,44.165 +579095,191.19,45.02 +579096,189.53,45.852 +579097,193.35,43.352 +579098,191.61,44.173 +579099,189.9,44.974 +579100,188.21,45.753 +579101,192.14,43.417 +579102,190.36,44.181 +579103,188.61,44.927 +579104,186.88,45.654 +579105,190.92,43.482 +579106,189.11,44.19 +579107,187.33,44.881 +579108,185.56,45.554 +579109,189.71,43.547 +579110,187.87,44.199 +579111,186.04,44.834 +579112,184.24,45.453 +579113,188.49,43.614 +579114,186.61,44.208 +579115,184.76,44.788 +579116,182.92,45.351 +579117,187.27,43.68 +579118,185.36,44.218 +579119,183.47,44.741 +579120,181.6,45.249 +579121,186.04,43.747 +579122,184.11,44.227 +579123,182.19,44.694 +579124,180.28,45.147 +579125,184.82,43.815 +579126,182.86,44.237 +579127,180.91,44.647 +579128,178.96,45.043 +579129,183.59,43.882 +579130,181.61,44.247 +579131,179.63,44.6 +579132,177.64,44.94 +579133,182.37,43.95 +579134,180.36,44.257 +579135,178.35,44.553 +579136,176.33,44.835 +579137,181.14,44.018 +579138,179.1,44.268 +579139,177.07,44.505 +579140,175.02,44.731 +579141,179.9,44.087 +579142,177.85,44.278 +579143,175.79,44.458 +579144,173.71,44.626 +579145,178.67,44.155 +579146,176.6,44.289 +579147,174.51,44.411 +579148,172.4,44.52 +579149,177.43,44.224 +579150,175.34,44.299 +579151,173.23,44.363 +579152,171.09,44.415 +579153,176.2,44.292 +579154,174.09,44.31 +579155,171.95,44.316 +579156,169.79,44.309 +579157,174.96,44.361 +579158,172.83,44.321 +579159,170.67,44.269 +579160,168.48,44.203 +579161,173.72,44.429 +579162,171.57,44.332 +579163,169.4,44.221 +579164,167.18,44.096 +579165,172.47,44.498 +579166,170.32,44.343 +579167,168.12,44.174 +579168,165.88,43.99 +579169,171.23,44.566 +579170,169.06,44.354 +579171,166.84,44.127 +579172,164.58,43.883 +579173,169.98,44.634 +579174,167.8,44.365 +579175,165.57,44.08 +579176,163.28,43.777 +579177,168.73,44.702 +579178,166.54,44.376 +579179,164.3,44.033 +579180,161.99,43.67 +579181,167.48,44.77 +579182,165.28,44.387 +579183,163.02,43.986 +579184,160.7,43.564 +579185,166.23,44.837 +579186,164.02,44.398 +579187,161.75,43.939 +579188,159.41,43.457 +579189,164.97,44.905 +579190,162.76,44.409 +579191,160.48,43.892 +579192,158.12,43.351 +579193,163.72,44.971 +579194,161.5,44.42 +579195,159.21,43.846 +579196,156.83,43.245 +579197,162.46,45.037 +579198,160.24,44.431 +579199,157.94,43.799 +579200,155.54,43.139 +579201,161.2,45.103 +579202,158.98,44.442 +579203,156.67,43.753 +579204,154.26,43.034 +579205,159.94,45.168 +579206,157.71,44.453 +579207,155.4,43.707 +579208,152.98,42.929 +579209,158.67,45.233 +579210,156.45,44.463 +579211,154.13,43.661 +579212,151.7,42.824 +579213,157.41,45.297 +579214,155.19,44.474 +579215,152.87,43.616 +579216,150.42,42.72 +579217,156.14,45.361 +579218,153.92,44.484 +579219,151.6,43.571 +579220,149.15,42.616 +579221,154.87,45.424 +579222,152.66,44.495 +579223,150.33,43.525 +579224,147.88,42.512 +579225,153.6,45.486 +579226,151.39,44.505 +579227,149.07,43.481 +579228,146.61,42.41 +579229,152.32,45.547 +579230,150.13,44.515 +579231,147.8,43.436 +579232,145.34,42.308 +579233,151.05,45.608 +579234,148.86,44.524 +579235,146.54,43.392 +579236,144.07,42.206 +579237,149.77,45.668 +579238,147.59,44.534 +579239,145.28,43.348 +579240,142.81,42.106 +579241,148.49,45.727 +579242,146.32,44.543 +579243,144.02,43.305 +579244,141.54,42.006 +579245,147.21,45.785 +579246,145.05,44.552 +579247,142.76,43.261 +579248,140.28,41.907 +579249,145.93,45.842 +579250,143.79,44.561 +579251,141.49,43.219 +579252,139.03,41.808 +579253,144.65,45.899 +579254,142.52,44.569 +579255,140.24,43.176 +579256,137.77,41.711 +579257,143.36,45.954 +579258,141.25,44.578 +579259,138.98,43.134 +579260,136.52,41.615 +579261,142.07,46.008 +579262,139.98,44.586 +579263,137.72,43.093 +579264,135.27,41.52 +579265,140.78,46.062 +579266,138.7,44.593 +579267,136.46,43.051 +579268,134.02,41.425 +579269,139.49,46.114 +579270,137.43,44.601 +579271,135.2,43.011 +579272,132.77,41.332 +579273,138.2,46.165 +579274,136.16,44.608 +579275,133.95,42.97 +579276,131.53,41.24 +579277,136.91,46.215 +579278,134.89,44.615 +579279,132.69,42.931 +579280,130.28,41.15 +579281,135.61,46.264 +579282,133.61,44.621 +579283,131.44,42.891 +579284,129.04,41.06 +579285,134.32,46.311 +579286,132.34,44.627 +579287,130.18,42.852 +579288,127.81,40.972 +579289,133.02,46.358 +579290,131.06,44.633 +579291,128.93,42.814 +579292,126.57,40.885 +579293,131.72,46.403 +579294,129.79,44.638 +579295,127.68,42.776 +579296,125.34,40.8 +579297,130.42,46.447 +579298,128.51,44.643 +579299,126.43,42.739 +579300,124.1,40.716 +579301,129.11,46.489 +579302,127.24,44.648 +579303,125.18,42.702 +579304,122.88,40.633 +579305,127.81,46.53 +579306,125.96,44.652 +579307,123.93,42.666 +579308,121.65,40.553 +579309,126.5,46.57 +579310,124.69,44.656 +579311,122.68,42.63 +579312,120.42,40.473 +579313,125.2,46.609 +579314,123.41,44.659 +579315,121.43,42.595 +579316,119.2,40.395 +579317,123.89,46.646 +579318,122.13,44.662 +579319,120.18,42.561 +579320,117.98,40.319 +579321,122.58,46.681 +579322,120.85,44.664 +579323,118.93,42.527 +579324,116.76,40.245 +579325,121.27,46.716 +579326,119.57,44.667 +579327,117.69,42.493 +579328,115.55,40.172 +579329,119.96,46.748 +579330,118.29,44.668 +579331,116.44,42.461 +579332,114.33,40.101 +579333,118.64,46.78 +579334,117.01,44.669 +579335,115.19,42.429 +579336,113.12,40.032 +579337,117.33,46.809 +579338,115.73,44.67 +579339,113.95,42.397 +579340,111.91,39.965 +579341,116.01,46.838 +579342,114.45,44.67 +579343,112.7,42.367 +579344,110.7,39.9 +579345,114.7,46.864 +579346,113.17,44.67 +579347,111.46,42.337 +579348,109.49,39.836 +579349,113.38,46.889 +579350,111.89,44.669 +579351,110.22,42.307 +579352,108.29,39.775 +579353,112.06,46.913 +579354,110.61,44.667 +579355,108.97,42.278 +579356,107.09,39.715 +579357,110.74,46.935 +579358,109.33,44.666 +579359,107.73,42.25 +579360,105.89,39.658 +579361,109.42,46.955 +579362,108.05,44.663 +579363,106.49,42.223 +579364,104.69,39.602 +579365,108.1,46.973 +579366,106.76,44.66 +579367,105.25,42.197 +579368,103.49,39.549 +579369,106.78,46.99 +579370,105.48,44.657 +579371,104.01,42.171 +579372,102.29,39.498 +579373,105.45,47.006 +579374,104.2,44.653 +579375,102.77,42.146 +579376,101.1,39.449 +579377,104.13,47.019 +579378,102.92,44.649 +579379,101.53,42.121 +579380,99.907,39.402 +579381,102.8,47.031 +579382,101.63,44.644 +579383,100.29,42.097 +579384,98.717,39.357 +579385,101.48,47.041 +579386,100.35,44.638 +579387,99.052,42.074 +579388,97.527,39.314 +579389,100.15,47.05 +579390,99.063,44.632 +579391,97.814,42.052 +579392,96.34,39.274 +579393,98.821,47.056 +579394,97.779,44.625 +579395,96.576,42.031 +579396,95.153,39.236 +579397,97.493,47.061 +579398,96.494,44.618 +579399,95.339,42.01 +579400,93.969,39.2 +579401,96.164,47.065 +579402,95.209,44.61 +579403,94.102,41.99 +579404,92.785,39.166 +579405,94.834,47.066 +579406,93.924,44.602 +579407,92.866,41.971 +579408,91.603,39.135 +579409,93.503,47.066 +579410,92.639,44.593 +579411,91.63,41.952 +579412,90.422,39.106 +579413,92.173,47.064 +579414,91.353,44.583 +579415,90.394,41.935 +579416,89.242,39.079 +579417,90.841,47.06 +579418,90.067,44.573 +579419,89.159,41.918 +579420,88.063,39.055 +579421,89.509,47.054 +579422,88.782,44.563 +579423,87.924,41.902 +579424,86.885,39.033 +579425,88.177,47.047 +579426,87.496,44.551 +579427,86.689,41.887 +579428,85.708,39.013 +579429,86.844,47.038 +579430,86.209,44.54 +579431,85.455,41.872 +579432,84.532,38.996 +579433,85.51,47.027 +579434,84.923,44.527 +579435,84.22,41.858 +579436,83.357,38.981 +579437,84.177,47.014 +579438,83.637,44.514 +579439,82.987,41.845 +579440,82.183,38.969 +579441,82.843,46.999 +579442,82.35,44.501 +579443,81.753,41.833 +579444,81.009,38.958 +579445,81.508,46.983 +579446,81.064,44.486 +579447,80.519,41.822 +579448,79.836,38.95 +579449,80.174,46.965 +579450,79.777,44.472 +579451,79.286,41.811 +579452,78.664,38.945 +579453,78.839,46.945 +579454,78.491,44.456 +579455,78.053,41.801 +579456,77.492,38.942 +579457,77.504,46.923 +579458,77.204,44.44 +579459,76.82,41.792 +579460,76.32,38.941 +579461,76.169,46.899 +579462,75.918,44.424 +579463,75.588,41.784 +579464,75.149,38.943 +579465,74.834,46.874 +579466,74.631,44.407 +579467,74.355,41.777 +579468,73.978,38.947 +579469,73.498,46.847 +579470,73.344,44.389 +579471,73.123,41.77 +579472,72.808,38.953 +579473,72.163,46.818 +579474,72.058,44.371 +579475,71.89,41.764 +579476,71.637,38.961 +579477,70.827,46.787 +579478,70.771,44.352 +579479,70.658,41.759 +579480,70.467,38.972 +579481,69.492,46.755 +579482,69.484,44.333 +579483,69.426,41.754 +579484,69.297,38.985 +579485,68.157,46.72 +579486,68.198,44.313 +579487,68.194,41.751 +579488,68.126,39.001 +579489,66.822,46.684 +579490,66.912,44.293 +579491,66.962,41.748 +579492,66.956,39.018 +579493,65.487,46.647 +579494,65.625,44.272 +579495,65.73,41.746 +579496,65.785,39.038 +579497,64.152,46.607 +579498,64.339,44.25 +579499,64.497,41.745 +579500,64.615,39.06 +579501,62.817,46.566 +579502,63.053,44.228 +579503,63.265,41.744 +579504,63.444,39.084 +579505,61.482,46.523 +579506,61.767,44.205 +579507,62.033,41.744 +579508,62.272,39.111 +579509,60.148,46.478 +579510,60.481,44.182 +579511,60.801,41.745 +579512,61.1,39.14 +579513,58.814,46.432 +579514,59.196,44.158 +579515,59.568,41.747 +579516,59.928,39.17 +579517,57.481,46.384 +579518,57.91,44.134 +579519,58.336,41.749 +579520,58.755,39.203 +579521,56.148,46.334 +579522,56.625,44.109 +579523,57.103,41.752 +579524,57.581,39.238 +579525,54.815,46.283 +579526,55.34,44.084 +579527,55.871,41.756 +579528,56.407,39.275 +579529,53.483,46.229 +579530,54.055,44.058 +579531,54.638,41.76 +579532,55.232,39.314 +579533,52.151,46.175 +579534,52.771,44.032 +579535,53.405,41.765 +579536,54.056,39.354 +579537,50.819,46.119 +579538,51.486,44.005 +579539,52.171,41.771 +579540,52.879,39.397 +579541,49.489,46.061 +579542,50.202,43.977 +579543,50.938,41.778 +579544,51.702,39.442 +579545,48.159,46.001 +579546,48.918,43.95 +579547,49.704,41.785 +579548,50.523,39.488 +579549,46.829,45.94 +579550,47.635,43.921 +579551,48.471,41.793 +579552,49.343,39.537 +579553,45.5,45.878 +579554,46.352,43.893 +579555,47.236,41.801 +579556,48.163,39.587 +579557,44.172,45.814 +579558,45.069,43.863 +579559,46.002,41.81 +579560,46.981,39.639 +579561,42.845,45.748 +579562,43.786,43.834 +579563,44.767,41.82 +579564,45.798,39.693 +579565,41.518,45.681 +579566,42.504,43.804 +579567,43.532,41.83 +579568,44.613,39.748 +579569,40.192,45.613 +579570,41.222,43.773 +579571,42.297,41.841 +579572,43.428,39.805 +579573,38.867,45.543 +579574,39.94,43.742 +579575,41.061,41.853 +579576,42.241,39.863 +579577,37.543,45.471 +579578,38.659,43.711 +579579,39.826,41.865 +579580,41.053,39.923 +579581,36.22,45.399 +579582,37.378,43.679 +579583,38.589,41.878 +579584,39.863,39.985 +579585,34.898,45.325 +579586,36.098,43.647 +579587,37.353,41.891 +579588,38.672,40.048 +579589,33.576,45.249 +579590,34.818,43.614 +579591,36.115,41.905 +579592,37.479,40.112 +579593,32.256,45.173 +579594,33.539,43.581 +579595,34.878,41.919 +579596,36.285,40.178 +579597,30.937,45.095 +579598,32.259,43.548 +579599,33.64,41.934 +579600,35.089,40.245 +579601,29.619,45.015 +579602,30.981,43.514 +579603,32.402,41.949 +579604,33.892,40.314 +579605,28.301,44.935 +579606,29.703,43.48 +579607,31.163,41.965 +579608,32.693,40.384 +579609,26.986,44.854 +579610,28.425,43.446 +579611,29.924,41.981 +579612,31.492,40.454 +579613,25.671,44.771 +579614,27.148,43.411 +579615,28.684,41.998 +579616,30.29,40.526 +579617,24.357,44.687 +579618,25.871,43.377 +579619,27.444,42.015 +579620,29.086,40.599 +579621,23.045,44.602 +579622,24.595,43.341 +579623,26.204,42.033 +579624,27.88,40.674 +579625,21.734,44.516 +579626,23.319,43.306 +579627,24.963,42.051 +579628,26.673,40.749 +579629,20.424,44.429 +579630,22.044,43.27 +579631,23.721,42.07 +579632,25.463,40.825 +579633,19.115,44.341 +579634,20.769,43.234 +579635,22.479,42.089 +579636,24.252,40.902 +579637,17.808,44.252 +579638,19.495,43.198 +579639,21.236,42.108 +579640,23.039,40.98 +579641,16.503,44.162 +579642,18.222,43.162 +579643,19.993,42.128 +579644,21.824,41.058 +579645,15.198,44.071 +579646,16.948,43.125 +579647,18.75,42.147 +579648,20.607,41.138 +579649,13.895,43.98 +579650,15.676,43.088 +579651,17.505,42.168 +579652,19.389,41.218 +579653,12.594,43.887 +579654,14.404,43.051 +579655,16.261,42.188 +579656,18.168,41.299 +579657,11.294,43.794 +579658,13.133,43.014 +579659,15.015,42.209 +579660,16.946,41.38 +579661,9.9959,43.7 +579662,11.862,42.977 +579663,13.77,42.231 +579664,15.721,41.462 +579665,8.6991,43.606 +579666,10.592,42.939 +579667,12.523,42.252 +579668,14.495,41.544 +579669,7.4039,43.51 +579670,9.3227,42.902 +579671,11.276,42.274 +579672,13.267,41.627 +579673,6.1104,43.414 +579674,8.0539,42.864 +579675,10.029,42.296 +579676,12.036,41.711 +579677,4.8184,43.318 +579678,6.7857,42.826 +579679,8.7804,42.318 +579680,10.804,41.794 +579681,3.5281,43.221 +579682,5.5181,42.788 +579683,7.5316,42.341 +579684,9.5701,41.878 +579685,2.2396,43.124 +579686,4.2511,42.75 +579687,6.2823,42.363 +579688,8.334,41.963 +579689,0.95271,43.026 +579690,2.9848,42.712 +579691,5.0323,42.386 +579692,7.0959,42.047 +579693,359.67,42.927 +579694,1.7192,42.674 +579695,3.7817,42.409 +579696,5.8559,42.132 +579697,358.38,42.829 +579698,0.45416,42.636 +579699,2.5306,42.432 +579700,4.6139,42.217 +579701,357.1,42.73 +579702,359.19,42.598 +579703,1.2788,42.455 +579704,3.3699,42.301 +579705,355.82,42.63 +579706,357.93,42.56 +579707,0.02637,42.479 +579708,2.124,42.386 +579709,354.54,42.531 +579710,356.66,42.522 +579711,358.77,42.502 +579712,0.87616,42.471 +579713,353.27,42.431 +579714,355.4,42.484 +579715,357.52,42.526 +579716,359.63,42.556 +579717,351.99,42.331 +579718,354.14,42.446 +579719,356.27,42.549 +579720,358.37,42.641 +579721,350.72,42.232 +579722,352.88,42.409 +579723,355.01,42.573 +579724,357.12,42.725 +579725,349.45,42.132 +579726,351.62,42.371 +579727,353.76,42.597 +579728,355.87,42.81 +579729,348.18,42.032 +579730,350.36,42.333 +579731,352.5,42.62 +579732,354.61,42.894 +579733,346.92,41.932 +579734,349.1,42.296 +579735,351.24,42.644 +579736,353.35,42.978 +579737,345.65,41.832 +579738,347.84,42.258 +579739,349.98,42.668 +579740,352.09,43.061 +579741,344.39,41.732 +579742,346.58,42.221 +579743,348.73,42.692 +579744,350.82,43.144 +579745,343.13,41.633 +579746,345.33,42.184 +579747,347.47,42.715 +579748,349.56,43.227 +579749,341.87,41.534 +579750,344.07,42.147 +579751,346.21,42.739 +579752,348.29,43.309 +579753,340.61,41.435 +579754,342.81,42.111 +579755,344.95,42.763 +579756,347.02,43.391 +579757,339.36,41.336 +579758,341.56,42.074 +579759,343.69,42.786 +579760,345.75,43.472 +579761,338.11,41.238 +579762,340.31,42.038 +579763,342.43,42.809 +579764,344.48,43.553 +579765,336.86,41.141 +579766,339.05,42.002 +579767,341.17,42.833 +579768,343.21,43.633 +579769,335.61,41.044 +579770,337.8,41.967 +579771,339.9,42.856 +579772,341.93,43.712 +579773,334.36,40.947 +579774,336.55,41.932 +579775,338.64,42.879 +579776,340.65,43.791 +579777,333.12,40.851 +579778,335.3,41.897 +579779,337.38,42.902 +579780,339.37,43.869 +579781,331.87,40.756 +579782,334.05,41.862 +579783,336.11,42.924 +579784,338.09,43.946 +579785,330.63,40.661 +579786,332.8,41.827 +579787,334.85,42.947 +579788,336.81,44.022 +579789,329.4,40.567 +579790,331.55,41.793 +579791,333.58,42.969 +579792,335.53,44.098 +579793,328.16,40.474 +579794,330.3,41.76 +579795,332.32,42.991 +579796,334.24,44.172 +579797,326.93,40.382 +579798,329.05,41.727 +579799,331.05,43.013 +579800,332.95,44.246 +579801,325.69,40.29 +579802,327.8,41.694 +579803,329.79,43.034 +579804,331.66,44.318 +579805,324.46,40.2 +579806,326.56,41.661 +579807,328.52,43.056 +579808,330.37,44.39 +579809,323.24,40.111 +579810,325.31,41.629 +579811,327.25,43.077 +579812,329.08,44.461 +579813,322.01,40.022 +579814,324.06,41.598 +579815,325.98,43.098 +579816,327.79,44.53 +579817,320.79,39.935 +579818,322.82,41.566 +579819,324.71,43.118 +579820,326.49,44.599 +579821,319.56,39.849 +579822,321.57,41.536 +579823,323.44,43.138 +579824,325.19,44.666 +579825,318.34,39.764 +579826,320.33,41.506 +579827,322.17,43.158 +579828,323.9,44.732 +579829,317.13,39.681 +579830,319.09,41.476 +579831,320.9,43.178 +579832,322.6,44.797 +579833,315.91,39.598 +579834,317.85,41.447 +579835,319.63,43.197 +579836,321.3,44.861 +579837,314.7,39.517 +579838,316.6,41.418 +579839,318.36,43.216 +579840,319.99,44.924 +579841,313.49,39.438 +579842,315.36,41.39 +579843,317.09,43.234 +579844,318.69,44.985 +579845,312.28,39.36 +579846,314.12,41.362 +579847,315.82,43.252 +579848,317.39,45.045 +579849,311.07,39.283 +579850,312.88,41.335 +579851,314.54,43.27 +579852,316.08,45.103 +579853,309.86,39.208 +579854,311.64,41.309 +579855,313.27,43.287 +579856,314.77,45.16 +579857,308.66,39.134 +579858,310.4,41.283 +579859,312,43.304 +579860,313.46,45.216 +579861,307.45,39.063 +579862,309.17,41.258 +579863,310.72,43.321 +579864,312.15,45.271 +579865,306.25,38.992 +579866,307.93,41.233 +579867,309.45,43.337 +579868,310.84,45.324 +579869,305.05,38.924 +579870,306.69,41.209 +579871,308.17,43.352 +579872,309.53,45.375 +579873,303.86,38.857 +579874,305.45,41.186 +579875,306.9,43.368 +579876,308.22,45.425 +579877,302.66,38.792 +579878,304.22,41.163 +579879,305.62,43.382 +579880,306.9,45.474 +579881,301.47,38.729 +579882,302.98,41.141 +579883,304.34,43.397 +579884,305.59,45.521 +579885,300.28,38.668 +579886,301.75,41.12 +579887,303.07,43.41 +579888,304.27,45.566 +579889,299.08,38.609 +579890,300.51,41.099 +579891,301.79,43.424 +579892,302.96,45.61 +579893,297.9,38.552 +579894,299.28,41.079 +579895,300.51,43.437 +579896,301.64,45.653 +579897,296.71,38.496 +579898,298.04,41.06 +579899,299.24,43.449 +579900,300.32,45.693 +579901,295.52,38.443 +579902,296.81,41.041 +579903,297.96,43.461 +579904,299,45.732 +579905,294.34,38.392 +579906,295.58,41.024 +579907,296.68,43.472 +579908,297.68,45.77 +579909,293.15,38.343 +579910,294.34,41.006 +579911,295.4,43.483 +579912,296.36,45.806 +579913,291.97,38.296 +579914,293.11,40.99 +579915,294.12,43.493 +579916,295.04,45.84 +579917,290.79,38.251 +579918,291.88,40.974 +579919,292.84,43.503 +579920,293.72,45.872 +579921,289.61,38.208 +579922,290.65,40.959 +579923,291.56,43.512 +579924,292.39,45.903 +579925,288.43,38.168 +579926,289.41,40.945 +579927,290.28,43.521 +579928,291.07,45.932 +579929,287.25,38.13 +579930,288.18,40.932 +579931,289,43.529 +579932,289.74,45.959 +579933,286.08,38.094 +579934,286.95,40.919 +579935,287.72,43.537 +579936,288.42,45.985 +579937,284.9,38.06 +579938,285.72,40.908 +579939,286.44,43.544 +579940,287.09,46.008 +579941,283.73,38.029 +579942,284.49,40.897 +579943,285.16,43.55 +579944,285.77,46.03 +579945,282.55,38 +579946,283.26,40.886 +579947,283.88,43.556 +579948,284.44,46.051 +579949,281.38,37.973 +579950,282.03,40.877 +579951,282.6,43.561 +579952,283.11,46.069 +579953,280.21,37.949 +579954,280.8,40.868 +579955,281.32,43.566 +579956,281.79,46.086 +579957,279.04,37.927 +579958,279.57,40.86 +579959,280.04,43.57 +579960,280.46,46.101 +579961,277.86,37.908 +579962,278.34,40.853 +579963,278.76,43.574 +579964,279.13,46.114 +579965,276.69,37.891 +579966,277.11,40.847 +579967,277.48,43.577 +579968,277.8,46.125 +579969,275.52,37.876 +579970,275.88,40.842 +579971,276.2,43.58 +579972,276.48,46.134 +579973,274.35,37.864 +579974,274.65,40.837 +579975,274.92,43.581 +579976,275.15,46.142 +579977,273.18,37.854 +579978,273.43,40.833 +579979,273.63,43.583 +579980,273.82,46.148 +579981,272.02,37.847 +579982,272.2,40.83 +579983,272.35,43.583 +579984,272.49,46.152 +579985,270.85,37.842 +579986,270.97,40.828 +579987,271.07,43.584 +579988,271.16,46.154 +579989,269.68,37.84 +579990,269.74,40.827 +579991,269.79,43.583 +579992,269.83,46.154 +579993,268.51,37.84 +579994,268.51,40.826 +579995,268.51,43.582 +579996,268.5,46.153 +579997,267.34,37.843 +579998,267.28,40.827 +579999,267.23,43.58 +580000,267.17,46.149 +580001,266.17,37.848 +580002,266.05,40.828 +580003,265.94,43.578 +580004,265.84,46.144 +580005,265,37.856 +580006,264.82,40.83 +580007,264.66,43.575 +580008,264.51,46.137 +580009,263.83,37.866 +580010,263.6,40.833 +580011,263.38,43.572 +580012,263.19,46.128 +580013,262.66,37.878 +580014,262.37,40.836 +580015,262.1,43.568 +580016,261.86,46.118 +580017,261.49,37.893 +580018,261.14,40.841 +580019,260.82,43.563 +580020,260.53,46.105 +580021,260.32,37.91 +580022,259.91,40.846 +580023,259.54,43.558 +580024,259.2,46.091 +580025,259.15,37.93 +580026,258.68,40.852 +580027,258.26,43.553 +580028,257.87,46.075 +580029,257.98,37.952 +580030,257.45,40.859 +580031,256.98,43.546 +580032,256.54,46.057 +580033,256.81,37.976 +580034,256.22,40.866 +580035,255.69,43.539 +580036,255.22,46.037 +580037,255.64,38.003 +580038,254.99,40.875 +580039,254.41,43.532 +580040,253.89,46.016 +580041,254.46,38.032 +580042,253.76,40.884 +580043,253.13,43.524 +580044,252.56,45.993 +580045,253.29,38.064 +580046,252.53,40.894 +580047,251.85,43.515 +580048,251.24,45.968 +580049,252.12,38.098 +580050,251.3,40.905 +580051,250.57,43.506 +580052,249.91,45.941 +580053,250.94,38.134 +580054,250.07,40.916 +580055,249.29,43.497 +580056,248.59,45.912 +580057,249.76,38.172 +580058,248.84,40.929 +580059,248.01,43.486 +580060,247.26,45.882 +580061,248.58,38.213 +580062,247.61,40.942 +580063,246.73,43.476 +580064,245.94,45.85 +580065,247.41,38.255 +580066,246.37,40.956 +580067,245.45,43.464 +580068,244.61,45.816 +580069,246.23,38.3 +580070,245.14,40.97 +580071,244.17,43.453 +580072,243.29,45.781 +580073,245.04,38.347 +580074,243.91,40.985 +580075,242.9,43.44 +580076,241.97,45.744 +580077,243.86,38.397 +580078,242.68,41.002 +580079,241.62,43.427 +580080,240.65,45.705 +580081,242.68,38.448 +580082,241.45,41.018 +580083,240.34,43.414 +580084,239.33,45.665 +580085,241.49,38.501 +580086,240.21,41.036 +580087,239.06,43.4 +580088,238.01,45.623 +580089,240.3,38.556 +580090,238.98,41.054 +580091,237.78,43.386 +580092,236.69,45.579 +580093,239.12,38.614 +580094,237.74,41.073 +580095,236.51,43.371 +580096,235.37,45.534 +580097,237.93,38.673 +580098,236.51,41.093 +580099,235.23,43.355 +580100,234.05,45.487 +580101,236.74,38.734 +580102,235.27,41.113 +580103,233.95,43.34 +580104,232.74,45.439 +580105,235.54,38.797 +580106,234.04,41.134 +580107,232.68,43.323 +580108,231.42,45.389 +580109,234.35,38.862 +580110,232.8,41.155 +580111,231.4,43.307 +580112,230.11,45.337 +580113,233.15,38.928 +580114,231.57,41.178 +580115,230.12,43.289 +580116,228.79,45.285 +580117,231.95,38.997 +580118,230.33,41.2 +580119,228.85,43.272 +580120,227.48,45.23 +580121,230.76,39.067 +580122,229.09,41.224 +580123,227.57,43.254 +580124,226.17,45.174 +580125,229.55,39.138 +580126,227.86,41.248 +580127,226.3,43.235 +580128,224.86,45.117 +580129,228.35,39.211 +580130,226.62,41.273 +580131,225.03,43.216 +580132,223.55,45.058 +580133,227.15,39.286 +580134,225.38,41.298 +580135,223.75,43.197 +580136,222.24,44.998 +580137,225.94,39.362 +580138,224.14,41.324 +580139,222.48,43.177 +580140,220.94,44.937 +580141,224.73,39.44 +580142,222.9,41.35 +580143,221.21,43.157 +580144,219.63,44.874 +580145,223.52,39.519 +580146,221.66,41.377 +580147,219.94,43.137 +580148,218.33,44.81 +580149,222.31,39.6 +580150,220.42,41.405 +580151,218.66,43.116 +580152,217.02,44.745 +580153,221.09,39.682 +580154,219.18,41.433 +580155,217.39,43.095 +580156,215.72,44.679 +580157,219.88,39.765 +580158,217.93,41.461 +580159,216.12,43.073 +580160,214.42,44.611 +580161,218.66,39.849 +580162,216.69,41.49 +580163,214.85,43.051 +580164,213.12,44.542 +580165,217.44,39.935 +580166,215.45,41.52 +580167,213.58,43.029 +580168,211.83,44.472 +580169,216.22,40.021 +580170,214.2,41.549 +580171,212.31,43.007 +580172,210.53,44.401 +580173,214.99,40.109 +580174,212.96,41.58 +580175,211.05,42.984 +580176,209.24,44.329 +580177,213.77,40.198 +580178,211.71,41.611 +580179,209.78,42.961 +580180,207.94,44.255 +580181,212.54,40.287 +580182,210.47,41.642 +580183,208.51,42.938 +580184,206.65,44.181 +580185,211.31,40.378 +580186,209.22,41.673 +580187,207.24,42.915 +580188,205.36,44.106 +580189,210.08,40.469 +580190,207.97,41.706 +580191,205.98,42.891 +580192,204.07,44.03 +580193,208.84,40.562 +580194,206.72,41.738 +580195,204.71,42.867 +580196,202.79,43.953 +580197,207.6,40.655 +580198,205.48,41.771 +580199,203.45,42.843 +580200,201.5,43.875 +580201,206.37,40.748 +580202,204.23,41.804 +580203,202.18,42.819 +580204,200.22,43.796 +580205,205.13,40.843 +580206,202.98,41.837 +580207,200.92,42.794 +580208,198.94,43.716 +580209,203.88,40.938 +580210,201.73,41.871 +580211,199.65,42.769 +580212,197.66,43.636 +580213,202.64,41.034 +580214,200.48,41.905 +580215,198.39,42.745 +580216,196.38,43.555 +580217,201.39,41.13 +580218,199.22,41.939 +580219,197.13,42.72 +580220,195.1,43.473 +580221,200.14,41.226 +580222,197.97,41.974 +580223,195.87,42.695 +580224,193.83,43.391 +580225,198.89,41.323 +580226,196.72,42.008 +580227,194.61,42.67 +580228,192.55,43.308 +580229,197.64,41.421 +580230,195.46,42.043 +580231,193.35,42.644 +580232,191.28,43.224 +580233,196.38,41.518 +580234,194.21,42.079 +580235,192.09,42.619 +580236,190.01,43.14 +580237,195.13,41.616 +580238,192.95,42.114 +580239,190.83,42.594 +580240,188.75,43.055 +580241,193.87,41.715 +580242,191.7,42.15 +580243,189.57,42.568 +580244,187.48,42.97 +580245,192.61,41.813 +580246,190.44,42.186 +580247,188.31,42.543 +580248,186.22,42.885 +580249,191.35,41.911 +580250,189.18,42.221 +580251,187.05,42.517 +580252,184.95,42.799 +580253,190.08,42.01 +580254,187.93,42.257 +580255,185.8,42.492 +580256,183.69,42.713 +580257,188.81,42.109 +580258,186.67,42.294 +580259,184.54,42.466 +580260,182.43,42.627 +580261,187.55,42.207 +580262,185.41,42.33 +580263,183.28,42.441 +580264,181.18,42.54 +580265,186.28,42.306 +580266,184.15,42.366 +580267,182.03,42.416 +580268,179.92,42.454 +580269,185,42.404 +580270,182.89,42.403 +580271,180.78,42.39 +580272,178.67,42.367 +580273,183.73,42.502 +580274,181.62,42.439 +580275,179.52,42.365 +580276,177.42,42.28 +580277,182.45,42.6 +580278,180.36,42.476 +580279,178.27,42.34 +580280,176.17,42.193 +580281,181.17,42.698 +580282,179.1,42.512 +580283,177.02,42.315 +580284,174.93,42.106 +580285,179.89,42.795 +580286,177.84,42.549 +580287,175.77,42.29 +580288,173.68,42.019 +580289,178.61,42.892 +580290,176.57,42.585 +580291,174.51,42.265 +580292,172.44,41.933 +580293,177.33,42.989 +580294,175.31,42.622 +580295,173.26,42.241 +580296,171.2,41.846 +580297,176.05,43.085 +580298,174.04,42.658 +580299,172.01,42.216 +580300,169.96,41.76 +580301,174.76,43.181 +580302,172.78,42.695 +580303,170.76,42.192 +580304,168.72,41.674 +580305,173.47,43.276 +580306,171.51,42.731 +580307,169.52,42.168 +580308,167.49,41.588 +580309,172.18,43.371 +580310,170.24,42.767 +580311,168.27,42.144 +580312,166.25,41.502 +580313,170.89,43.465 +580314,168.97,42.803 +580315,167.02,42.121 +580316,165.02,41.417 +580317,169.6,43.559 +580318,167.71,42.839 +580319,165.77,42.098 +580320,163.79,41.333 +580321,168.3,43.651 +580322,166.44,42.875 +580323,164.53,42.075 +580324,162.57,41.249 +580325,167,43.743 +580326,165.17,42.911 +580327,163.28,42.052 +580328,161.34,41.165 +580329,165.71,43.835 +580330,163.9,42.947 +580331,162.04,42.029 +580332,160.12,41.082 +580333,164.41,43.925 +580334,162.63,42.982 +580335,160.79,42.007 +580336,158.9,41 +580337,163.1,44.015 +580338,161.35,43.017 +580339,159.55,41.986 +580340,157.68,40.918 +580341,161.8,44.104 +580342,160.08,43.052 +580343,158.3,41.964 +580344,156.46,40.837 +580345,160.5,44.191 +580346,158.81,43.087 +580347,157.06,41.943 +580348,155.25,40.757 +580349,159.19,44.278 +580350,157.54,43.122 +580351,155.82,41.922 +580352,154.03,40.678 +580353,157.89,44.364 +580354,156.26,43.156 +580355,154.58,41.902 +580356,152.82,40.6 +580357,156.58,44.449 +580358,154.99,43.19 +580359,153.34,41.882 +580360,151.61,40.522 +580361,155.27,44.533 +580362,153.71,43.224 +580363,152.1,41.863 +580364,150.4,40.446 +580365,153.96,44.616 +580366,152.44,43.257 +580367,150.86,41.844 +580368,149.2,40.37 +580369,152.65,44.698 +580370,151.16,43.29 +580371,149.62,41.825 +580372,147.99,40.296 +580373,151.33,44.778 +580374,149.89,43.323 +580375,148.38,41.807 +580376,146.79,40.223 +580377,150.02,44.858 +580378,148.61,43.356 +580379,147.14,41.789 +580380,145.59,40.151 +580381,148.7,44.936 +580382,147.33,43.388 +580383,145.9,41.772 +580384,144.39,40.08 +580385,147.39,45.013 +580386,146.06,43.42 +580387,144.66,41.756 +580388,143.19,40.01 +580389,146.07,45.088 +580390,144.78,43.452 +580391,143.42,41.739 +580392,141.99,39.942 +580393,144.75,45.163 +580394,143.5,43.483 +580395,142.19,41.724 +580396,140.8,39.876 +580397,143.43,45.236 +580398,142.22,43.514 +580399,140.95,41.709 +580400,139.61,39.81 +580401,142.11,45.307 +580402,140.94,43.544 +580403,139.71,41.694 +580404,138.41,39.746 +580405,140.79,45.378 +580406,139.66,43.574 +580407,138.48,41.68 +580408,137.22,39.684 +580409,139.47,45.447 +580410,138.38,43.604 +580411,137.24,41.667 +580412,136.04,39.623 +580413,138.14,45.514 +580414,137.1,43.633 +580415,136.01,41.654 +580416,134.85,39.564 +580417,136.82,45.58 +580418,135.82,43.662 +580419,134.77,41.642 +580420,133.66,39.506 +580421,135.49,45.645 +580422,134.54,43.69 +580423,133.54,41.631 +580424,132.48,39.45 +580425,134.17,45.708 +580426,133.26,43.718 +580427,132.3,41.62 +580428,131.3,39.396 +580429,132.84,45.77 +580430,131.98,43.745 +580431,131.07,41.609 +580432,130.11,39.343 +580433,131.51,45.83 +580434,130.69,43.772 +580435,129.83,41.6 +580436,128.93,39.292 +580437,130.19,45.888 +580438,129.41,43.799 +580439,128.6,41.591 +580440,127.75,39.243 +580441,128.86,45.945 +580442,128.13,43.825 +580443,127.37,41.582 +580444,126.57,39.196 +580445,127.53,46 +580446,126.84,43.85 +580447,126.14,41.575 +580448,125.4,39.151 +580449,126.2,46.054 +580450,125.56,43.875 +580451,124.9,41.568 +580452,124.22,39.108 +580453,124.87,46.106 +580454,124.28,43.9 +580455,123.67,41.562 +580456,123.04,39.067 +580457,123.54,46.157 +580458,122.99,43.924 +580459,122.44,41.556 +580460,121.87,39.028 +580461,122.21,46.205 +580462,121.71,43.947 +580463,121.21,41.551 +580464,120.69,38.99 +580465,120.87,46.253 +580466,120.43,43.97 +580467,119.97,41.547 +580468,119.52,38.955 +580469,119.54,46.298 +580470,119.14,43.993 +580471,118.74,41.544 +580472,118.35,38.922 +580473,118.21,46.342 +580474,117.86,44.014 +580475,117.51,41.541 +580476,117.17,38.891 +580477,116.88,46.384 +580478,116.57,44.036 +580479,116.28,41.539 +580480,116,38.863 +580481,115.54,46.424 +580482,115.29,44.057 +580483,115.05,41.538 +580484,114.83,38.836 +580485,114.21,46.463 +580486,114,44.077 +580487,113.82,41.537 +580488,113.66,38.812 +580489,112.88,46.499 +580490,112.72,44.096 +580491,112.58,41.538 +580492,112.49,38.79 +580493,111.54,46.535 +580494,111.43,44.116 +580495,111.35,41.539 +580496,111.32,38.77 +580497,110.21,46.568 +580498,110.15,44.134 +580499,110.12,41.541 +580500,110.15,38.752 +580501,108.88,46.599 +580502,108.86,44.152 +580503,108.89,41.543 +580504,108.98,38.737 +580505,107.54,46.629 +580506,107.57,44.17 +580507,107.66,41.547 +580508,107.81,38.724 +580509,106.21,46.657 +580510,106.29,44.187 +580511,106.43,41.551 +580512,106.64,38.713 +580513,104.87,46.683 +580514,105,44.203 +580515,105.19,41.556 +580516,105.47,38.705 +580517,103.54,46.708 +580518,103.72,44.219 +580519,103.96,41.562 +580520,104.3,38.699 +580521,102.21,46.73 +580522,102.43,44.234 +580523,102.73,41.568 +580524,103.13,38.695 +580525,100.87,46.751 +580526,101.15,44.248 +580527,101.5,41.576 +580528,101.96,38.694 +580529,99.537,46.77 +580530,99.861,44.262 +580531,100.27,41.584 +580532,100.79,38.695 +580533,98.204,46.787 +580534,98.575,44.276 +580535,99.034,41.593 +580536,99.615,38.698 +580537,96.87,46.803 +580538,97.29,44.288 +580539,97.802,41.602 +580540,98.443,38.704 +580541,95.537,46.816 +580542,96.004,44.301 +580543,96.569,41.613 +580544,97.271,38.712 +580545,94.204,46.828 +580546,94.719,44.312 +580547,95.336,41.624 +580548,96.098,38.723 +580549,92.872,46.838 +580550,93.434,44.323 +580551,94.103,41.636 +580552,94.924,38.736 +580553,91.54,46.846 +580554,92.148,44.334 +580555,92.87,41.649 +580556,93.749,38.751 +580557,90.208,46.852 +580558,90.863,44.344 +580559,91.636,41.663 +580560,92.574,38.769 +580561,88.877,46.857 +580562,89.578,44.353 +580563,90.403,41.677 +580564,91.398,38.789 +580565,87.546,46.86 +580566,88.293,44.362 +580567,89.168,41.692 +580568,90.221,38.811 +580569,86.215,46.861 +580570,87.009,44.37 +580571,87.934,41.708 +580572,89.042,38.836 +580573,84.885,46.86 +580574,85.724,44.377 +580575,86.699,41.725 +580576,87.863,38.863 +580577,83.556,46.857 +580578,84.44,44.384 +580579,85.464,41.743 +580580,86.683,38.893 +580581,82.227,46.853 +580582,83.156,44.391 +580583,84.228,41.761 +580584,85.501,38.924 +580585,80.899,46.847 +580586,81.872,44.397 +580587,82.993,41.78 +580588,84.318,38.959 +580589,79.572,46.839 +580590,80.588,44.402 +580591,81.756,41.8 +580592,83.134,38.995 +580593,78.245,46.829 +580594,79.304,44.407 +580595,80.52,41.821 +580596,81.949,39.034 +580597,76.919,46.818 +580598,78.021,44.411 +580599,79.282,41.842 +580600,80.762,39.074 +580601,75.594,46.805 +580602,76.738,44.415 +580603,78.045,41.864 +580604,79.574,39.118 +580605,74.269,46.79 +580606,75.455,44.418 +580607,76.807,41.887 +580608,78.384,39.163 +580609,72.946,46.774 +580610,74.173,44.42 +580611,75.568,41.911 +580612,77.193,39.21 +580613,71.623,46.755 +580614,72.891,44.422 +580615,74.329,41.935 +580616,76,39.26 +580617,70.301,46.736 +580618,71.609,44.424 +580619,73.09,41.96 +580620,74.805,39.312 +580621,68.98,46.714 +580622,70.327,44.425 +580623,71.85,41.986 +580624,73.609,39.366 +580625,67.66,46.691 +580626,69.046,44.425 +580627,70.609,42.013 +580628,72.411,39.422 +580629,66.341,46.666 +580630,67.765,44.425 +580631,69.368,42.04 +580632,71.211,39.48 +580633,65.023,46.64 +580634,66.485,44.425 +580635,68.127,42.068 +580636,70.009,39.54 +580637,63.706,46.612 +580638,65.205,44.423 +580639,66.884,42.096 +580640,68.806,39.602 +580641,62.391,46.582 +580642,63.925,44.422 +580643,65.642,42.126 +580644,67.6,39.666 +580645,61.076,46.551 +580646,62.646,44.42 +580647,64.398,42.155 +580648,66.393,39.732 +580649,59.762,46.519 +580650,61.367,44.417 +580651,63.154,42.186 +580652,65.184,39.799 +580653,58.45,46.485 +580654,60.088,44.414 +580655,61.91,42.217 +580656,63.973,39.869 +580657,57.139,46.449 +580658,58.81,44.411 +580659,60.664,42.249 +580660,62.759,39.94 +580661,55.829,46.412 +580662,57.532,44.407 +580663,59.419,42.282 +580664,61.544,40.014 +580665,54.52,46.374 +580666,56.255,44.402 +580667,58.172,42.315 +580668,60.327,40.088 +580669,53.213,46.334 +580670,54.978,44.398 +580671,56.925,42.348 +580672,59.108,40.165 +580673,51.907,46.292 +580674,53.702,44.392 +580675,55.677,42.383 +580676,57.886,40.243 +580677,50.602,46.25 +580678,52.426,44.387 +580679,54.429,42.417 +580680,56.663,40.323 +580681,49.299,46.206 +580682,51.15,44.381 +580683,53.18,42.453 +580684,55.437,40.404 +580685,47.997,46.16 +580686,49.875,44.374 +580687,51.93,42.489 +580688,54.209,40.487 +580689,46.697,46.113 +580690,48.601,44.367 +580691,50.679,42.525 +580692,52.979,40.571 +580693,45.398,46.066 +580694,47.327,44.36 +580695,49.428,42.562 +580696,51.747,40.657 +580697,44.1,46.016 +580698,46.053,44.353 +580699,48.176,42.6 +580700,50.513,40.744 +580701,42.804,45.966 +580702,44.78,44.345 +580703,46.924,42.638 +580704,49.276,40.833 +580705,41.51,45.914 +580706,43.508,44.336 +580707,45.671,42.677 +580708,48.038,40.922 +580709,40.217,45.862 +580710,42.236,44.328 +580711,44.417,42.716 +580712,46.797,41.013 +580713,38.926,45.808 +580714,40.965,44.319 +580715,43.162,42.755 +580716,45.554,41.106 +580717,37.636,45.753 +580718,39.694,44.31 +580719,41.906,42.795 +580720,44.309,41.199 +580721,36.348,45.697 +580722,38.423,44.3 +580723,40.65,42.835 +580724,43.061,41.293 +580725,35.062,45.64 +580726,37.154,44.29 +580727,39.393,42.876 +580728,41.812,41.389 +580729,33.777,45.582 +580730,35.884,44.28 +580731,38.136,42.917 +580732,40.56,41.485 +580733,32.494,45.523 +580734,34.616,44.27 +580735,36.877,42.959 +580736,39.306,41.582 +580737,31.212,45.463 +580738,33.348,44.259 +580739,35.618,43.001 +580740,38.05,41.681 +580741,29.933,45.402 +580742,32.08,44.249 +580743,34.358,43.043 +580744,36.791,41.78 +580745,28.655,45.34 +580746,30.813,44.238 +580747,33.098,43.086 +580748,35.531,41.88 +580749,27.379,45.278 +580750,29.546,44.226 +580751,31.836,43.129 +580752,34.268,41.98 +580753,26.104,45.215 +580754,28.281,44.215 +580755,30.574,43.172 +580756,33.003,42.082 +580757,24.832,45.151 +580758,27.015,44.203 +580759,29.311,43.216 +580760,31.737,42.184 +580761,23.561,45.086 +580762,25.751,44.192 +580763,28.048,43.26 +580764,30.467,42.286 +580765,22.292,45.02 +580766,24.487,44.18 +580767,26.783,43.304 +580768,29.196,42.389 +580769,21.025,44.954 +580770,23.223,44.167 +580771,25.518,43.348 +580772,27.923,42.493 +580773,19.759,44.888 +580774,21.96,44.155 +580775,24.252,43.393 +580776,26.648,42.597 +580777,18.496,44.82 +580778,20.698,44.143 +580779,22.986,43.438 +580780,25.371,42.702 +580781,17.234,44.753 +580782,19.436,44.131 +580783,21.718,43.483 +580784,24.091,42.807 +580785,15.975,44.684 +580786,18.175,44.118 +580787,20.45,43.528 +580788,22.81,42.912 +580789,14.717,44.616 +580790,16.914,44.106 +580791,19.181,43.573 +580792,21.527,43.017 +580793,13.461,44.547 +580794,15.654,44.093 +580795,17.912,43.619 +580796,20.241,43.123 +580797,12.207,44.477 +580798,14.395,44.08 +580799,16.642,43.665 +580800,18.954,43.229 +580801,10.955,44.407 +580802,13.136,44.068 +580803,15.371,43.71 +580804,17.665,43.335 +580805,9.7049,44.337 +580806,11.877,44.055 +580807,14.099,43.756 +580808,16.374,43.441 +580809,8.4566,44.267 +580810,10.62,44.042 +580811,12.827,43.803 +580812,15.081,43.547 +580813,7.2103,44.196 +580814,9.3626,44.03 +580815,11.554,43.849 +580816,13.786,43.653 +580817,5.9659,44.126 +580818,8.1061,44.017 +580819,10.28,43.895 +580820,12.489,43.759 +580821,4.7235,44.055 +580822,6.8501,44.004 +580823,9.0053,43.941 +580824,11.191,43.865 +580825,3.4829,43.984 +580826,5.5947,43.992 +580827,7.7301,43.987 +580828,9.8907,43.97 +580829,2.2443,43.914 +580830,4.3398,43.979 +580831,6.4542,44.034 +580832,8.5887,44.076 +580833,1.0075,43.843 +580834,3.0855,43.967 +580835,5.1777,44.08 +580836,7.2851,44.181 +580837,359.77,43.772 +580838,1.8318,43.955 +580839,3.9005,44.126 +580840,5.9797,44.286 +580841,358.54,43.701 +580842,0.5786,43.943 +580843,2.6226,44.173 +580844,4.6727,44.39 +580845,357.31,43.631 +580846,359.33,43.931 +580847,1.3441,44.219 +580848,3.364,44.495 +580849,356.08,43.561 +580850,358.07,43.919 +580851,0.06496,44.265 +580852,2.0538,44.598 +580853,354.85,43.491 +580854,356.82,43.907 +580855,358.79,44.311 +580856,0.74198,44.702 +580857,353.63,43.421 +580858,355.57,43.896 +580859,357.5,44.357 +580860,359.43,44.805 +580861,352.4,43.352 +580862,354.32,43.885 +580863,356.22,44.403 +580864,358.11,44.907 +580865,351.18,43.283 +580866,353.07,43.874 +580867,354.94,44.449 +580868,356.8,45.009 +580869,349.96,43.214 +580870,351.82,43.863 +580871,353.66,44.495 +580872,355.48,45.11 +580873,348.74,43.146 +580874,350.57,43.852 +580875,352.38,44.54 +580876,354.16,45.21 +580877,347.53,43.079 +580878,349.32,43.842 +580879,351.09,44.586 +580880,352.84,45.31 +580881,346.31,43.012 +580882,348.08,43.832 +580883,349.81,44.631 +580884,351.52,45.409 +580885,345.1,42.945 +580886,346.83,43.822 +580887,348.52,44.676 +580888,350.19,45.507 +580889,343.89,42.88 +580890,345.58,43.813 +580891,347.24,44.721 +580892,348.87,45.604 +580893,342.68,42.815 +580894,344.33,43.803 +580895,345.95,44.765 +580896,347.54,45.701 +580897,341.47,42.75 +580898,343.09,43.795 +580899,344.67,44.81 +580900,346.22,45.797 +580901,340.27,42.687 +580902,341.84,43.786 +580903,343.38,44.854 +580904,344.89,45.891 +580905,339.06,42.624 +580906,340.6,43.778 +580907,342.09,44.898 +580908,343.56,45.985 +580909,337.86,42.563 +580910,339.35,43.77 +580911,340.81,44.942 +580912,342.23,46.078 +580913,336.66,42.502 +580914,338.11,43.763 +580915,339.52,44.985 +580916,340.9,46.17 +580917,335.46,42.442 +580918,336.86,43.756 +580919,338.23,45.028 +580920,339.57,46.26 +580921,334.26,42.383 +580922,335.62,43.749 +580923,336.94,45.071 +580924,338.23,46.35 +580925,333.06,42.325 +580926,334.37,43.743 +580927,335.65,45.113 +580928,336.9,46.438 +580929,331.87,42.269 +580930,333.13,43.738 +580931,334.36,45.156 +580932,335.56,46.526 +580933,330.68,42.213 +580934,331.89,43.732 +580935,333.07,45.197 +580936,334.23,46.612 +580937,329.48,42.159 +580938,330.65,43.727 +580939,331.78,45.239 +580940,332.89,46.697 +580941,328.29,42.106 +580942,329.4,43.723 +580943,330.49,45.28 +580944,331.55,46.781 +580945,327.1,42.054 +580946,328.16,43.719 +580947,329.2,45.321 +580948,330.21,46.863 +580949,325.91,42.004 +580950,326.92,43.716 +580951,327.91,45.361 +580952,328.87,46.945 +580953,324.73,41.954 +580954,325.68,43.713 +580955,326.61,45.401 +580956,327.53,47.025 +580957,323.54,41.907 +580958,324.44,43.711 +580959,325.32,45.441 +580960,326.19,47.103 +580961,322.35,41.86 +580962,323.2,43.709 +580963,324.03,45.48 +580964,324.85,47.18 +580965,321.17,41.815 +580966,321.96,43.708 +580967,322.73,45.519 +580968,323.51,47.256 +580969,319.99,41.772 +580970,320.72,43.707 +580971,321.44,45.557 +580972,322.16,47.331 +580973,318.8,41.73 +580974,319.47,43.707 +580975,320.15,45.595 +580976,320.82,47.404 +580977,317.62,41.69 +580978,318.23,43.707 +580979,318.85,45.632 +580980,319.47,47.475 +580981,316.44,41.651 +580982,316.99,43.708 +580983,317.56,45.669 +580984,318.13,47.545 +580985,315.26,41.614 +580986,315.75,43.71 +580987,316.26,45.706 +580988,316.78,47.614 +580989,314.08,41.579 +580990,314.51,43.712 +580991,314.97,45.742 +580992,315.44,47.681 +580993,312.91,41.545 +580994,313.27,43.715 +580995,313.67,45.777 +580996,314.09,47.747 +580997,311.73,41.514 +580998,312.04,43.718 +580999,312.38,45.812 +581000,312.75,47.811 +581001,310.55,41.484 +581002,310.8,43.722 +581003,311.08,45.847 +581004,311.4,47.873 +581005,309.37,41.455 +581006,309.56,43.727 +581007,309.79,45.881 +581008,310.05,47.934 +581009,308.2,41.429 +581010,308.32,43.732 +581011,308.49,45.915 +581012,308.71,47.994 +581013,307.02,41.404 +581014,307.08,43.738 +581015,307.19,45.948 +581016,307.36,48.051 +581017,305.84,41.382 +581018,305.84,43.745 +581019,305.9,45.981 +581020,306.01,48.107 +581021,304.67,41.361 +581022,304.6,43.752 +581023,304.6,46.013 +581024,304.67,48.162 +581025,303.49,41.342 +581026,303.36,43.76 +581027,303.31,46.044 +581028,303.32,48.215 +581029,302.32,41.325 +581030,302.12,43.768 +581031,302.01,46.075 +581032,301.97,48.266 +581033,301.14,41.311 +581034,300.88,43.778 +581035,300.71,46.106 +581036,300.62,48.315 +581037,299.97,41.298 +581038,299.64,43.787 +581039,299.42,46.136 +581040,299.27,48.363 +581041,298.79,41.287 +581042,298.4,43.798 +581043,298.12,46.165 +581044,297.93,48.409 +581045,297.62,41.278 +581046,297.16,43.809 +581047,296.82,46.194 +581048,296.58,48.454 +581049,296.44,41.272 +581050,295.92,43.821 +581051,295.53,46.222 +581052,295.23,48.496 +581053,295.26,41.267 +581054,294.68,43.834 +581055,294.23,46.25 +581056,293.88,48.537 +581057,294.09,41.264 +581058,293.44,43.848 +581059,292.93,46.277 +581060,292.54,48.577 +581061,292.91,41.264 +581062,292.2,43.862 +581063,291.64,46.304 +581064,291.19,48.614 +581065,291.73,41.266 +581066,290.96,43.877 +581067,290.34,46.33 +581068,289.84,48.65 +581069,290.55,41.27 +581070,289.71,43.892 +581071,289.04,46.355 +581072,288.5,48.684 +581073,289.37,41.276 +581074,288.47,43.908 +581075,287.75,46.38 +581076,287.15,48.717 +581077,288.19,41.284 +581078,287.23,43.925 +581079,286.45,46.404 +581080,285.81,48.747 +581081,287.01,41.294 +581082,285.99,43.943 +581083,285.15,46.428 +581084,284.46,48.776 +581085,285.83,41.307 +581086,284.75,43.961 +581087,283.86,46.451 +581088,283.12,48.804 +581089,284.65,41.321 +581090,283.5,43.981 +581091,282.56,46.474 +581092,281.77,48.829 +581093,283.47,41.338 +581094,282.26,44 +581095,281.27,46.496 +581096,280.43,48.853 +581097,282.28,41.357 +581098,281.02,44.021 +581099,279.97,46.518 +581100,279.09,48.875 +581101,281.1,41.378 +581102,279.77,44.042 +581103,278.67,46.538 +581104,277.74,48.895 +581105,279.91,41.401 +581106,278.53,44.064 +581107,277.38,46.559 +581108,276.4,48.913 +581109,278.72,41.427 +581110,277.28,44.087 +581111,276.08,46.579 +581112,275.06,48.93 +581113,277.53,41.454 +581114,276.04,44.11 +581115,274.79,46.598 +581116,273.72,48.945 +581117,276.34,41.484 +581118,274.79,44.135 +581119,273.49,46.616 +581120,272.38,48.959 +581121,275.15,41.516 +581122,273.55,44.159 +581123,272.2,46.635 +581124,271.04,48.97 +581125,273.96,41.55 +581126,272.3,44.185 +581127,270.9,46.652 +581128,269.7,48.98 +581129,272.76,41.586 +581130,271.05,44.211 +581131,269.61,46.669 +581132,268.36,48.988 +581133,271.57,41.625 +581134,269.81,44.238 +581135,268.32,46.685 +581136,267.03,48.995 +581137,270.37,41.665 +581138,268.56,44.266 +581139,267.02,46.701 +581140,265.69,49 +581141,269.17,41.707 +581142,267.31,44.294 +581143,265.73,46.717 +581144,264.35,49.003 +581145,267.97,41.752 +581146,266.06,44.323 +581147,264.44,46.731 +581148,263.02,49.004 +581149,266.77,41.799 +581150,264.81,44.353 +581151,263.14,46.746 +581152,261.69,49.004 +581153,265.56,41.847 +581154,263.56,44.383 +581155,261.85,46.759 +581156,260.35,49.002 +581157,264.35,41.898 +581158,262.31,44.414 +581159,260.56,46.772 +581160,259.02,48.999 +581161,263.15,41.95 +581162,261.06,44.446 +581163,259.27,46.785 +581164,257.69,48.994 +581165,261.94,42.005 +581166,259.81,44.478 +581167,257.98,46.797 +581168,256.36,48.987 +581169,260.72,42.062 +581170,258.56,44.511 +581171,256.68,46.809 +581172,255.04,48.979 +581173,259.51,42.12 +581174,257.3,44.545 +581175,255.39,46.82 +581176,253.71,48.969 +581177,258.29,42.18 +581178,256.05,44.579 +581179,254.1,46.83 +581180,252.38,48.958 +581181,257.07,42.243 +581182,254.8,44.614 +581183,252.81,46.84 +581184,251.06,48.945 +581185,255.85,42.307 +581186,253.54,44.65 +581187,251.52,46.85 +581188,249.73,48.931 +581189,254.63,42.372 +581190,252.28,44.686 +581191,250.24,46.859 +581192,248.41,48.915 +581193,253.41,42.44 +581194,251.03,44.722 +581195,248.95,46.868 +581196,247.09,48.897 +581197,252.18,42.51 +581198,249.77,44.76 +581199,247.66,46.876 +581200,245.77,48.878 +581201,250.95,42.581 +581202,248.51,44.798 +581203,246.37,46.883 +581204,244.45,48.858 +581205,249.72,42.653 +581206,247.26,44.836 +581207,245.08,46.89 +581208,243.14,48.836 +581209,248.49,42.728 +581210,246,44.875 +581211,243.8,46.897 +581212,241.82,48.813 +581213,247.25,42.804 +581214,244.74,44.915 +581215,242.51,46.903 +581216,240.51,48.788 +581217,246.01,42.882 +581218,243.48,44.955 +581219,241.22,46.909 +581220,239.19,48.763 +581221,244.77,42.961 +581222,242.21,44.996 +581223,239.94,46.915 +581224,237.88,48.735 +581225,243.53,43.042 +581226,240.95,45.037 +581227,238.65,46.92 +581228,236.57,48.707 +581229,242.29,43.124 +581230,239.69,45.079 +581231,237.37,46.924 +581232,235.27,48.677 +581233,241.04,43.207 +581234,238.43,45.121 +581235,236.09,46.929 +581236,233.96,48.646 +581237,239.79,43.292 +581238,237.16,45.164 +581239,234.8,46.932 +581240,232.65,48.613 +581241,238.54,43.379 +581242,235.9,45.207 +581243,233.52,46.936 +581244,231.35,48.58 +581245,237.28,43.467 +581246,234.63,45.251 +581247,232.24,46.939 +581248,230.05,48.545 +581249,236.03,43.555 +581250,233.36,45.295 +581251,230.95,46.942 +581252,228.75,48.509 +581253,234.77,43.646 +581254,232.1,45.339 +581255,229.67,46.944 +581256,227.45,48.472 +581257,233.51,43.737 +581258,230.83,45.384 +581259,228.39,46.946 +581260,226.15,48.434 +581261,232.25,43.83 +581262,229.56,45.43 +581263,227.11,46.948 +581264,224.86,48.395 +581265,230.98,43.923 +581266,228.29,45.475 +581267,225.83,46.949 +581268,223.56,48.354 +581269,229.71,44.018 +581270,227.02,45.522 +581271,224.55,46.95 +581272,222.27,48.313 +581273,228.44,44.114 +581274,225.75,45.568 +581275,223.27,46.951 +581276,220.98,48.271 +581277,227.17,44.21 +581278,224.48,45.615 +581279,222,46.952 +581280,219.69,48.227 +581281,225.9,44.308 +581282,223.2,45.663 +581283,220.72,46.952 +581284,218.41,48.183 +581285,224.62,44.406 +581286,221.93,45.71 +581287,219.44,46.952 +581288,217.12,48.138 +581289,223.34,44.506 +581290,220.66,45.758 +581291,218.17,46.951 +581292,215.84,48.092 +581293,222.06,44.606 +581294,219.38,45.807 +581295,216.89,46.951 +581296,214.56,48.045 +581297,220.78,44.707 +581298,218.1,45.855 +581299,215.61,46.95 +581300,213.28,47.998 +581301,219.49,44.808 +581302,216.83,45.904 +581303,214.34,46.949 +581304,212,47.949 +581305,218.2,44.91 +581306,215.55,45.953 +581307,213.07,46.948 +581308,210.72,47.9 +581309,216.91,45.013 +581310,214.27,46.003 +581311,211.79,46.947 +581312,209.45,47.851 +581313,215.62,45.117 +581314,212.99,46.052 +581315,210.52,46.945 +581316,208.18,47.8 +581317,214.33,45.221 +581318,211.71,46.102 +581319,209.25,46.944 +581320,206.91,47.749 +581321,213.03,45.325 +581322,210.43,46.152 +581323,207.98,46.942 +581324,205.64,47.698 +581325,211.73,45.43 +581326,209.15,46.202 +581327,206.7,46.94 +581328,204.37,47.646 +581329,210.43,45.535 +581330,207.87,46.253 +581331,205.43,46.938 +581332,203.11,47.593 +581333,209.13,45.641 +581334,206.59,46.304 +581335,204.16,46.936 +581336,201.84,47.54 +581337,207.82,45.746 +581338,205.3,46.354 +581339,202.89,46.933 +581340,200.58,47.486 +581341,206.52,45.853 +581342,204.02,46.405 +581343,201.63,46.931 +581344,199.32,47.432 +581345,205.21,45.959 +581346,202.73,46.456 +581347,200.36,46.929 +581348,198.07,47.378 +581349,203.9,46.065 +581350,201.45,46.508 +581351,199.09,46.926 +581352,196.81,47.323 +581353,202.59,46.172 +581354,200.16,46.559 +581355,197.82,46.924 +581356,195.56,47.268 +581357,201.27,46.279 +581358,198.87,46.61 +581359,196.56,46.921 +581360,194.31,47.213 +581361,199.96,46.385 +581362,197.59,46.662 +581363,195.29,46.919 +581364,193.06,47.158 +581365,198.64,46.492 +581366,196.3,46.713 +581367,194.02,46.916 +581368,191.81,47.102 +581369,197.32,46.599 +581370,195.01,46.765 +581371,192.76,46.913 +581372,190.56,47.047 +581373,196,46.705 +581374,193.72,46.816 +581375,191.49,46.911 +581376,189.32,46.991 +581377,194.67,46.811 +581378,192.43,46.868 +581379,190.23,46.908 +581380,188.08,46.935 +581381,193.35,46.918 +581382,191.14,46.919 +581383,188.97,46.906 +581384,186.84,46.879 +581385,192.02,47.024 +581386,189.85,46.971 +581387,187.7,46.904 +581388,185.6,46.824 +581389,190.7,47.129 +581390,188.55,47.022 +581391,186.44,46.901 +581392,184.36,46.768 +581393,189.37,47.235 +581394,187.26,47.074 +581395,185.18,46.899 +581396,183.13,46.713 +581397,188.04,47.34 +581398,185.97,47.125 +581399,183.92,46.897 +581400,181.89,46.657 +581401,186.7,47.444 +581402,184.67,47.176 +581403,182.66,46.895 +581404,180.66,46.602 +581405,185.37,47.549 +581406,183.38,47.228 +581407,181.4,46.893 +581408,179.43,46.547 +581409,184.03,47.652 +581410,182.08,47.279 +581411,180.14,46.892 +581412,178.2,46.492 +581413,182.7,47.756 +581414,180.78,47.33 +581415,178.88,46.89 +581416,176.98,46.438 +581417,181.36,47.858 +581418,179.49,47.381 +581419,177.62,46.889 +581420,175.75,46.384 +581421,180.02,47.961 +581422,178.19,47.431 +581423,176.36,46.888 +581424,174.53,46.331 +581425,178.68,48.062 +581426,176.89,47.482 +581427,175.1,46.887 +581428,173.31,46.278 +581429,177.34,48.163 +581430,175.59,47.533 +581431,173.84,46.886 +581432,172.09,46.225 +581433,175.99,48.263 +581434,174.29,47.583 +581435,172.59,46.886 +581436,170.88,46.173 +581437,174.65,48.362 +581438,172.99,47.633 +581439,171.33,46.885 +581440,169.66,46.121 +581441,173.3,48.461 +581442,171.69,47.683 +581443,170.07,46.885 +581444,168.44,46.07 +581445,171.96,48.559 +581446,170.39,47.732 +581447,168.82,46.886 +581448,167.23,46.02 +581449,170.61,48.656 +581450,169.09,47.782 +581451,167.56,46.886 +581452,166.02,45.971 +581453,169.26,48.752 +581454,167.79,47.831 +581455,166.31,46.887 +581456,164.81,45.922 +581457,167.91,48.847 +581458,166.49,47.88 +581459,165.05,46.888 +581460,163.6,45.874 +581461,166.56,48.942 +581462,165.19,47.928 +581463,163.8,46.89 +581464,162.4,45.826 +581465,165.21,49.035 +581466,163.88,47.977 +581467,162.54,46.892 +581468,161.19,45.78 +581469,163.86,49.128 +581470,162.58,48.025 +581471,161.29,46.894 +581472,159.99,45.734 +581473,162.5,49.219 +581474,161.28,48.073 +581475,160.04,46.896 +581476,158.78,45.69 +581477,161.15,49.309 +581478,159.97,48.12 +581479,158.78,46.899 +581480,157.58,45.646 +581481,159.79,49.399 +581482,158.67,48.167 +581483,157.53,46.902 +581484,156.38,45.604 +581485,158.44,49.487 +581486,157.36,48.214 +581487,156.28,46.906 +581488,155.18,45.562 +581489,157.08,49.574 +581490,156.06,48.26 +581491,155.02,46.91 +581492,153.99,45.521 +581493,155.72,49.66 +581494,154.75,48.307 +581495,153.77,46.914 +581496,152.79,45.482 +581497,154.36,49.744 +581498,153.44,48.352 +581499,152.52,46.919 +581500,151.59,45.444 +581501,153.01,49.828 +581502,152.14,48.398 +581503,151.27,46.925 +581504,150.4,45.407 +581505,151.65,49.91 +581506,150.83,48.443 +581507,150.02,46.93 +581508,149.2,45.371 +581509,150.29,49.991 +581510,149.52,48.487 +581511,148.77,46.936 +581512,148.01,45.336 +581513,148.93,50.071 +581514,148.22,48.531 +581515,147.51,46.943 +581516,146.82,45.303 +581517,147.57,50.149 +581518,146.91,48.575 +581519,146.26,46.95 +581520,145.63,45.271 +581521,146.21,50.226 +581522,145.6,48.619 +581523,145.01,46.958 +581524,144.44,45.24 +581525,144.84,50.302 +581526,144.29,48.661 +581527,143.76,46.966 +581528,143.25,45.211 +581529,143.48,50.376 +581530,142.99,48.704 +581531,142.51,46.974 +581532,142.06,45.183 +581533,142.12,50.449 +581534,141.68,48.746 +581535,141.26,46.984 +581536,140.87,45.157 +581537,140.76,50.521 +581538,140.37,48.788 +581539,140.01,46.993 +581540,139.68,45.132 +581541,139.39,50.591 +581542,139.06,48.829 +581543,138.76,47.003 +581544,138.5,45.109 +581545,138.03,50.66 +581546,137.75,48.87 +581547,137.51,47.014 +581548,137.31,45.087 +581549,136.67,50.727 +581550,136.44,48.91 +581551,136.26,47.025 +581552,136.12,45.066 +581553,135.31,50.793 +581554,135.13,48.949 +581555,135.01,47.037 +581556,134.94,45.048 +581557,133.94,50.857 +581558,133.82,48.989 +581559,133.76,47.049 +581560,133.75,45.03 +581561,132.58,50.92 +581562,132.51,49.028 +581563,132.5,47.062 +581564,132.56,45.015 +581565,131.22,50.981 +581566,131.2,49.066 +581567,131.25,47.075 +581568,131.38,45.001 +581569,129.85,51.041 +581570,129.89,49.104 +581571,130,47.089 +581572,130.19,44.989 +581573,128.49,51.099 +581574,128.59,49.141 +581575,128.75,47.104 +581576,129.01,44.979 +581577,127.13,51.155 +581578,127.28,49.178 +581579,127.5,47.119 +581580,127.82,44.97 +581581,125.76,51.21 +581582,125.97,49.214 +581583,126.25,47.135 +581584,126.64,44.963 +581585,124.4,51.264 +581586,124.66,49.25 +581587,125,47.151 +581588,125.45,44.958 +581589,123.04,51.316 +581590,123.35,49.285 +581591,123.75,47.168 +581592,124.26,44.954 +581593,121.67,51.366 +581594,122.04,49.32 +581595,122.5,47.185 +581596,123.08,44.952 +581597,120.31,51.415 +581598,120.73,49.354 +581599,121.24,47.204 +581600,121.89,44.953 +581601,118.95,51.462 +581602,119.42,49.387 +581603,119.99,47.222 +581604,120.7,44.955 +581605,117.59,51.507 +581606,118.11,49.42 +581607,118.74,47.242 +581608,119.52,44.958 +581609,116.23,51.551 +581610,116.8,49.453 +581611,117.49,47.262 +581612,118.33,44.964 +581613,114.87,51.593 +581614,115.49,49.485 +581615,116.23,47.282 +581616,117.14,44.972 +581617,113.51,51.634 +581618,114.18,49.516 +581619,114.98,47.303 +581620,115.95,44.981 +581621,112.15,51.673 +581622,112.87,49.547 +581623,113.73,47.325 +581624,114.76,44.992 +581625,110.79,51.71 +581626,111.56,49.578 +581627,112.47,47.348 +581628,113.57,45.005 +581629,109.43,51.746 +581630,110.25,49.608 +581631,111.22,47.371 +581632,112.38,45.021 +581633,108.07,51.78 +581634,108.94,49.637 +581635,109.97,47.394 +581636,111.18,45.038 +581637,106.71,51.812 +581638,107.63,49.666 +581639,108.71,47.419 +581640,109.99,45.056 +581641,105.35,51.843 +581642,106.32,49.694 +581643,107.46,47.444 +581644,108.79,45.077 +581645,104,51.872 +581646,105.02,49.721 +581647,106.2,47.469 +581648,107.6,45.1 +581649,102.64,51.9 +581650,103.71,49.748 +581651,104.94,47.495 +581652,106.4,45.124 +581653,101.29,51.926 +581654,102.4,49.775 +581655,103.69,47.522 +581656,105.2,45.151 +581657,99.931,51.95 +581658,101.09,49.801 +581659,102.43,47.55 +581660,104,45.179 +581661,98.578,51.972 +581662,99.785,49.826 +581663,101.17,47.578 +581664,102.8,45.21 +581665,97.225,51.993 +581666,98.478,49.851 +581667,99.917,47.606 +581668,101.6,45.242 +581669,95.873,52.013 +581670,97.171,49.876 +581671,98.659,47.636 +581672,100.39,45.276 +581673,94.522,52.03 +581674,95.864,49.899 +581675,97.401,47.666 +581676,99.189,45.312 +581677,93.171,52.047 +581678,94.557,49.923 +581679,96.141,47.696 +581680,97.982,45.35 +581681,91.822,52.061 +581682,93.251,49.945 +581683,94.882,47.727 +581684,96.773,45.39 +581685,90.474,52.074 +581686,91.945,49.968 +581687,93.622,47.759 +581688,95.563,45.431 +581689,89.127,52.085 +581690,90.64,49.989 +581691,92.361,47.791 +581692,94.351,45.475 +581693,87.78,52.095 +581694,89.335,50.01 +581695,91.1,47.824 +581696,93.138,45.52 +581697,86.435,52.103 +581698,88.03,50.031 +581699,89.838,47.858 +581700,91.922,45.567 +581701,85.091,52.11 +581702,86.725,50.051 +581703,88.576,47.892 +581704,90.705,45.616 +581705,83.748,52.115 +581706,85.421,50.071 +581707,87.313,47.927 +581708,89.486,45.667 +581709,82.406,52.119 +581710,84.117,50.09 +581711,86.049,47.962 +581712,88.265,45.719 +581713,81.066,52.121 +581714,82.814,50.108 +581715,84.785,47.998 +581716,87.042,45.774 +581717,79.726,52.122 +581718,81.511,50.126 +581719,83.52,48.034 +581720,85.817,45.83 +581721,78.388,52.121 +581722,80.208,50.144 +581723,82.254,48.071 +581724,84.591,45.887 +581725,77.051,52.118 +581726,78.906,50.161 +581727,80.988,48.109 +581728,83.362,45.947 +581729,75.715,52.115 +581730,77.605,50.178 +581731,79.721,48.147 +581732,82.131,46.008 +581733,74.381,52.109 +581734,76.303,50.194 +581735,78.454,48.186 +581736,80.898,46.07 +581737,73.048,52.103 +581738,75.002,50.209 +581739,77.186,48.225 +581740,79.663,46.135 +581741,71.716,52.095 +581742,73.702,50.224 +581743,75.917,48.265 +581744,78.425,46.201 +581745,70.386,52.085 +581746,72.402,50.239 +581747,74.647,48.305 +581748,77.186,46.268 +581749,69.057,52.074 +581750,71.102,50.253 +581751,73.377,48.346 +581752,75.944,46.337 +581753,67.73,52.062 +581754,69.803,50.267 +581755,72.106,48.387 +581756,74.701,46.408 +581757,66.404,52.049 +581758,68.505,50.281 +581759,70.835,48.429 +581760,73.454,46.48 +581761,65.079,52.034 +581762,67.207,50.293 +581763,69.562,48.471 +581764,72.206,46.554 +581765,63.756,52.018 +581766,65.909,50.306 +581767,68.289,48.514 +581768,70.956,46.629 +581769,62.435,52.001 +581770,64.612,50.318 +581771,67.015,48.557 +581772,69.703,46.705 +581773,61.115,51.982 +581774,63.316,50.33 +581775,65.741,48.601 +581776,68.448,46.783 +581777,59.796,51.962 +581778,62.02,50.341 +581779,64.465,48.645 +581780,67.19,46.862 +581781,58.479,51.941 +581782,60.724,50.352 +581783,63.189,48.689 +581784,65.93,46.943 +581785,57.164,51.919 +581786,59.429,50.362 +581787,61.912,48.734 +581788,64.668,47.024 +581789,55.851,51.896 +581790,58.135,50.372 +581791,60.635,48.78 +581792,63.404,47.107 +581793,54.539,51.871 +581794,56.841,50.382 +581795,59.356,48.826 +581796,62.137,47.192 +581797,53.228,51.846 +581798,55.548,50.392 +581799,58.077,48.872 +581800,60.868,47.277 +581801,51.92,51.819 +581802,54.255,50.401 +581803,56.797,48.919 +581804,59.597,47.363 +581805,50.613,51.792 +581806,52.963,50.409 +581807,55.517,48.966 +581808,58.323,47.451 +581809,49.308,51.763 +581810,51.671,50.418 +581811,54.235,49.013 +581812,57.047,47.54 +581813,48.004,51.733 +581814,50.38,50.426 +581815,52.953,49.061 +581816,55.769,47.629 +581817,46.702,51.703 +581818,49.089,50.434 +581819,51.67,49.109 +581820,54.488,47.72 +581821,45.402,51.671 +581822,47.799,50.441 +581823,50.386,49.157 +581824,53.205,47.812 +581825,44.104,51.639 +581826,46.51,50.448 +581827,49.102,49.206 +581828,51.92,47.904 +581829,42.808,51.605 +581830,45.221,50.455 +581831,47.816,49.255 +581832,50.633,47.998 +581833,41.513,51.571 +581834,43.933,50.462 +581835,46.53,49.304 +581836,49.343,48.092 +581837,40.22,51.536 +581838,42.645,50.468 +581839,45.243,49.354 +581840,48.051,48.187 +581841,38.929,51.501 +581842,41.358,50.474 +581843,43.956,49.404 +581844,46.757,48.283 +581845,37.64,51.464 +581846,40.071,50.48 +581847,42.667,49.454 +581848,45.46,48.379 +581849,36.353,51.427 +581850,38.786,50.486 +581851,41.378,49.504 +581852,44.162,48.476 +581853,35.067,51.389 +581854,37.5,50.491 +581855,40.088,49.555 +581856,42.861,48.574 +581857,33.784,51.351 +581858,36.215,50.497 +581859,38.798,49.606 +581860,41.558,48.673 +581861,32.502,51.311 +581862,34.931,50.502 +581863,37.506,49.657 +581864,40.252,48.772 +581865,31.222,51.272 +581866,33.648,50.507 +581867,36.214,49.708 +581868,38.945,48.871 +581869,29.944,51.231 +581870,32.365,50.511 +581871,34.921,49.759 +581872,37.636,48.971 +581873,28.667,51.191 +581874,31.082,50.516 +581875,33.627,49.811 +581876,36.324,49.071 +581877,27.393,51.149 +581878,29.8,50.52 +581879,32.333,49.863 +581880,35.01,49.172 +581881,26.12,51.108 +581882,28.519,50.525 +581883,31.037,49.914 +581884,33.695,49.273 +581885,24.85,51.066 +581886,27.238,50.529 +581887,29.741,49.967 +581888,32.377,49.375 +581889,23.581,51.023 +581890,25.958,50.533 +581891,28.445,50.019 +581892,31.057,49.476 +581893,22.314,50.98 +581894,24.679,50.537 +581895,27.147,50.071 +581896,29.736,49.578 +581897,21.049,50.937 +581898,23.4,50.541 +581899,25.849,50.123 +581900,28.412,49.68 +581901,19.786,50.894 +581902,22.121,50.545 +581903,24.55,50.176 +581904,27.087,49.783 +581905,18.524,50.85 +581906,20.843,50.549 +581907,23.251,50.228 +581908,25.759,49.885 +581909,17.265,50.806 +581910,19.566,50.553 +581911,21.951,50.281 +581912,24.43,49.987 +581913,16.007,50.762 +581914,18.289,50.557 +581915,20.65,50.333 +581916,23.099,50.09 +581917,14.751,50.718 +581918,17.013,50.56 +581919,19.348,50.386 +581920,21.766,50.192 +581921,13.498,50.674 +581922,15.737,50.564 +581923,18.046,50.438 +581924,20.432,50.294 +581925,12.245,50.629 +581926,14.462,50.568 +581927,16.743,50.491 +581928,19.095,50.397 +581929,10.995,50.585 +581930,13.187,50.572 +581931,15.439,50.544 +581932,17.757,50.499 +581933,9.7465,50.541 +581934,11.913,50.575 +581935,14.135,50.596 +581936,16.418,50.601 +581937,8.4998,50.496 +581938,10.64,50.579 +581939,12.83,50.649 +581940,15.077,50.703 +581941,7.2548,50.452 +581942,9.3665,50.583 +581943,11.524,50.701 +581944,13.734,50.804 +581945,6.0116,50.408 +581946,8.0939,50.587 +581947,10.218,50.754 +581948,12.389,50.905 +581949,4.7701,50.364 +581950,6.8218,50.591 +581951,8.9116,50.806 +581952,11.043,51.006 +581953,3.5304,50.321 +581954,5.5502,50.595 +581955,7.6042,50.858 +581956,9.696,51.107 +581957,2.2924,50.277 +581958,4.2791,50.6 +581959,6.2963,50.91 +581960,8.3472,51.207 +581961,1.056,50.234 +581962,3.0084,50.604 +581963,4.9878,50.962 +581964,6.9969,51.307 +581965,359.82,50.191 +581966,1.7382,50.609 +581967,3.6787,51.014 +581968,5.6453,51.406 +581969,358.59,50.149 +581970,0.46849,50.613 +581971,2.369,51.066 +581972,4.2923,51.505 +581973,357.36,50.107 +581974,359.2,50.618 +581975,1.0588,51.118 +581976,2.938,51.603 +581977,356.13,50.065 +581978,357.93,50.623 +581979,359.75,51.169 +581980,1.5824,51.7 +581981,354.9,50.024 +581982,356.66,50.629 +581983,358.44,51.22 +581984,0.22566,51.797 +581985,353.67,49.983 +581986,355.39,50.634 +581987,357.13,51.271 +581988,358.87,51.894 +581989,352.45,49.943 +581990,354.13,50.64 +581991,355.81,51.322 +581992,357.51,51.989 +581993,351.22,49.903 +581994,352.86,50.645 +581995,354.5,51.373 +581996,356.15,52.084 +581997,350,49.864 +581998,351.59,50.651 +581999,353.19,51.423 +582000,354.79,52.179 +582001,348.78,49.826 +582002,350.33,50.658 +582003,351.87,51.473 +582004,353.42,52.272 +582005,347.56,49.788 +582006,349.06,50.664 +582007,350.56,51.523 +582008,352.06,52.365 +582009,346.34,49.752 +582010,347.79,50.671 +582011,349.24,51.573 +582012,350.7,52.457 +582013,345.13,49.715 +582014,346.53,50.678 +582015,347.93,51.623 +582016,349.33,52.548 +582017,343.91,49.68 +582018,345.26,50.685 +582019,346.61,51.672 +582020,347.97,52.638 +582021,342.7,49.645 +582022,344,50.693 +582023,345.3,51.721 +582024,346.6,52.727 +582025,341.48,49.612 +582026,342.73,50.701 +582027,343.98,51.769 +582028,345.23,52.815 +582029,340.27,49.579 +582030,341.47,50.709 +582031,342.67,51.817 +582032,343.86,52.902 +582033,339.06,49.547 +582034,340.21,50.718 +582035,341.35,51.865 +582036,342.49,52.989 +582037,337.85,49.516 +582038,338.94,50.727 +582039,340.03,51.913 +582040,341.12,53.074 +582041,336.64,49.486 +582042,337.68,50.736 +582043,338.71,51.96 +582044,339.75,53.158 +582045,335.44,49.457 +582046,336.41,50.746 +582047,337.4,52.007 +582048,338.38,53.241 +582049,334.23,49.429 +582050,335.15,50.756 +582051,336.08,52.054 +582052,337.01,53.323 +582053,333.02,49.402 +582054,333.89,50.766 +582055,334.76,52.1 +582056,335.64,53.404 +582057,331.82,49.376 +582058,332.63,50.777 +582059,333.44,52.146 +582060,334.26,53.483 +582061,330.62,49.351 +582062,331.36,50.788 +582063,332.12,52.191 +582064,332.89,53.562 +582065,329.41,49.328 +582066,330.1,50.799 +582067,330.8,52.236 +582068,331.52,53.639 +582069,328.21,49.306 +582070,328.84,50.811 +582071,329.48,52.281 +582072,330.14,53.715 +582073,327.01,49.285 +582074,327.58,50.824 +582075,328.16,52.325 +582076,328.77,53.79 +582077,325.81,49.265 +582078,326.31,50.837 +582079,326.84,52.369 +582080,327.39,53.864 +582081,324.61,49.246 +582082,325.05,50.85 +582083,325.52,52.413 +582084,326.02,53.936 +582085,323.41,49.229 +582086,323.79,50.863 +582087,324.2,52.456 +582088,324.64,54.007 +582089,322.21,49.213 +582090,322.53,50.878 +582091,322.88,52.498 +582092,323.26,54.077 +582093,321.01,49.198 +582094,321.27,50.892 +582095,321.56,52.54 +582096,321.89,54.145 +582097,319.81,49.185 +582098,320.01,50.907 +582099,320.24,52.582 +582100,320.51,54.212 +582101,318.61,49.173 +582102,318.74,50.923 +582103,318.92,52.623 +582104,319.14,54.278 +582105,317.41,49.163 +582106,317.48,50.939 +582107,317.6,52.664 +582108,317.76,54.342 +582109,316.22,49.154 +582110,316.22,50.955 +582111,316.28,52.704 +582112,316.38,54.405 +582113,315.02,49.146 +582114,314.96,50.972 +582115,314.96,52.744 +582116,315.01,54.466 +582117,313.82,49.14 +582118,313.7,50.989 +582119,313.64,52.784 +582120,313.63,54.526 +582121,312.62,49.136 +582122,312.43,51.007 +582123,312.32,52.823 +582124,312.25,54.585 +582125,311.43,49.133 +582126,311.17,51.026 +582127,310.99,52.861 +582128,310.88,54.642 +582129,310.23,49.131 +582130,309.91,51.045 +582131,309.67,52.899 +582132,309.5,54.698 +582133,309.03,49.131 +582134,308.65,51.064 +582135,308.35,52.936 +582136,308.13,54.752 +582137,307.83,49.133 +582138,307.39,51.084 +582139,307.03,52.973 +582140,306.75,54.805 +582141,306.63,49.136 +582142,306.12,51.105 +582143,305.71,53.01 +582144,305.38,54.856 +582145,305.44,49.141 +582146,304.86,51.126 +582147,304.39,53.046 +582148,304,54.906 +582149,304.24,49.147 +582150,303.6,51.147 +582151,303.07,53.081 +582152,302.63,54.954 +582153,303.04,49.155 +582154,302.33,51.169 +582155,301.75,53.116 +582156,301.25,55.001 +582157,301.84,49.164 +582158,301.07,51.192 +582159,300.42,53.151 +582160,299.88,55.046 +582161,300.64,49.176 +582162,299.81,51.215 +582163,299.1,53.184 +582164,298.5,55.09 +582165,299.44,49.189 +582166,298.54,51.239 +582167,297.78,53.218 +582168,297.13,55.132 +582169,298.23,49.203 +582170,297.28,51.263 +582171,296.46,53.251 +582172,295.76,55.173 +582173,297.03,49.219 +582174,296.02,51.288 +582175,295.14,53.283 +582176,294.39,55.212 +582177,295.83,49.237 +582178,294.75,51.313 +582179,293.82,53.315 +582180,293.02,55.25 +582181,294.62,49.256 +582182,293.49,51.339 +582183,292.5,53.346 +582184,291.64,55.286 +582185,293.42,49.278 +582186,292.22,51.365 +582187,291.18,53.377 +582188,290.27,55.321 +582189,292.21,49.3 +582190,290.95,51.392 +582191,289.86,53.407 +582192,288.91,55.354 +582193,291.01,49.325 +582194,289.69,51.419 +582195,288.54,53.437 +582196,287.54,55.385 +582197,289.8,49.351 +582198,288.42,51.447 +582199,287.22,53.466 +582200,286.17,55.415 +582201,288.59,49.379 +582202,287.16,51.476 +582203,285.9,53.495 +582204,284.8,55.444 +582205,287.38,49.409 +582206,285.89,51.505 +582207,284.58,53.523 +582208,283.43,55.471 +582209,286.17,49.44 +582210,284.62,51.535 +582211,283.27,53.551 +582212,282.07,55.496 +582213,284.96,49.473 +582214,283.35,51.565 +582215,281.95,53.578 +582216,280.7,55.52 +582217,283.74,49.507 +582218,282.08,51.596 +582219,280.63,53.605 +582220,279.34,55.543 +582221,282.53,49.543 +582222,280.82,51.627 +582223,279.31,53.631 +582224,277.98,55.563 +582225,281.31,49.581 +582226,279.55,51.659 +582227,277.99,53.656 +582228,276.61,55.583 +582229,280.09,49.621 +582230,278.28,51.691 +582231,276.68,53.681 +582232,275.25,55.601 +582233,278.87,49.662 +582234,277.01,51.724 +582235,275.36,53.706 +582236,273.89,55.617 +582237,277.65,49.705 +582238,275.73,51.757 +582239,274.04,53.73 +582240,272.53,55.632 +582241,276.43,49.749 +582242,274.46,51.791 +582243,272.73,53.754 +582244,271.18,55.646 +582245,275.2,49.795 +582246,273.19,51.826 +582247,271.41,53.777 +582248,269.82,55.658 +582249,273.98,49.843 +582250,271.92,51.861 +582251,270.1,53.799 +582252,268.46,55.668 +582253,272.75,49.892 +582254,270.65,51.896 +582255,268.78,53.822 +582256,267.11,55.677 +582257,271.52,49.943 +582258,269.37,51.932 +582259,267.47,53.843 +582260,265.76,55.685 +582261,270.29,49.995 +582262,268.1,51.968 +582263,266.15,53.864 +582264,264.4,55.691 +582265,269.05,50.049 +582266,266.82,52.005 +582267,264.84,53.885 +582268,263.05,55.696 +582269,267.82,50.104 +582270,265.55,52.043 +582271,263.52,53.905 +582272,261.7,55.7 +582273,266.58,50.161 +582274,264.27,52.081 +582275,262.21,53.925 +582276,260.35,55.702 +582277,265.34,50.219 +582278,262.99,52.119 +582279,260.9,53.944 +582280,259.01,55.703 +582281,264.1,50.279 +582282,261.72,52.158 +582283,259.59,53.963 +582284,257.66,55.702 +582285,262.86,50.34 +582286,260.44,52.197 +582287,258.27,53.981 +582288,256.32,55.7 +582289,261.61,50.403 +582290,259.16,52.237 +582291,256.96,53.999 +582292,254.97,55.697 +582293,260.37,50.467 +582294,257.88,52.278 +582295,255.65,54.016 +582296,253.63,55.692 +582297,259.12,50.533 +582298,256.6,52.318 +582299,254.34,54.034 +582300,252.29,55.686 +582301,257.87,50.599 +582302,255.32,52.359 +582303,253.03,54.05 +582304,250.95,55.679 +582305,256.61,50.667 +582306,254.04,52.401 +582307,251.72,54.066 +582308,249.61,55.671 +582309,255.36,50.737 +582310,252.76,52.443 +582311,250.41,54.082 +582312,248.28,55.662 +582313,254.1,50.808 +582314,251.47,52.485 +582315,249.11,54.097 +582316,246.94,55.651 +582317,252.84,50.88 +582318,250.19,52.528 +582319,247.8,54.112 +582320,245.61,55.639 +582321,251.58,50.953 +582322,248.91,52.572 +582323,246.49,54.127 +582324,244.28,55.626 +582325,250.31,51.027 +582326,247.62,52.615 +582327,245.18,54.141 +582328,242.95,55.612 +582329,249.05,51.103 +582330,246.34,52.659 +582331,243.88,54.155 +582332,241.62,55.596 +582333,247.78,51.18 +582334,245.05,52.704 +582335,242.57,54.168 +582336,240.3,55.58 +582337,246.51,51.258 +582338,243.76,52.748 +582339,241.27,54.181 +582340,238.97,55.563 +582341,245.23,51.337 +582342,242.48,52.794 +582343,239.96,54.194 +582344,237.65,55.544 +582345,243.96,51.417 +582346,241.19,52.839 +582347,238.66,54.206 +582348,236.33,55.525 +582349,242.68,51.498 +582350,239.9,52.885 +582351,237.35,54.218 +582352,235.01,55.504 +582353,241.4,51.58 +582354,238.61,52.931 +582355,236.05,54.23 +582356,233.69,55.482 +582357,240.12,51.663 +582358,237.32,52.977 +582359,234.75,54.241 +582360,232.37,55.46 +582361,238.83,51.747 +582362,236.03,53.024 +582363,233.45,54.252 +582364,231.06,55.437 +582365,237.55,51.831 +582366,234.73,53.071 +582367,232.15,54.263 +582368,229.74,55.412 +582369,236.26,51.917 +582370,233.44,53.119 +582371,230.85,54.274 +582372,228.43,55.387 +582373,234.97,52.004 +582374,232.15,53.166 +582375,229.55,54.284 +582376,227.12,55.361 +582377,233.67,52.091 +582378,230.85,53.214 +582379,228.25,54.294 +582380,225.82,55.335 +582381,232.38,52.179 +582382,229.56,53.262 +582383,226.95,54.303 +582384,224.51,55.307 +582385,231.08,52.268 +582386,228.26,53.311 +582387,225.65,54.313 +582388,223.21,55.279 +582389,229.78,52.357 +582390,226.97,53.359 +582391,224.35,54.322 +582392,221.9,55.25 +582393,228.48,52.447 +582394,225.67,53.408 +582395,223.05,54.331 +582396,220.6,55.22 +582397,227.17,52.538 +582398,224.37,53.457 +582399,221.76,54.34 +582400,219.3,55.19 +582401,225.87,52.63 +582402,223.07,53.507 +582403,220.46,54.348 +582404,218.01,55.159 +582405,224.56,52.722 +582406,221.77,53.556 +582407,219.17,54.356 +582408,216.71,55.127 +582409,223.25,52.814 +582410,220.47,53.606 +582411,217.87,54.365 +582412,215.42,55.095 +582413,221.93,52.907 +582414,219.17,53.655 +582415,216.58,54.373 +582416,214.13,55.062 +582417,220.62,53 +582418,217.87,53.705 +582419,215.28,54.38 +582420,212.84,55.029 +582421,219.3,53.094 +582422,216.57,53.755 +582423,213.99,54.388 +582424,211.55,54.995 +582425,217.98,53.188 +582426,215.26,53.806 +582427,212.7,54.396 +582428,210.26,54.961 +582429,216.66,53.282 +582430,213.96,53.856 +582431,211.41,54.403 +582432,208.98,54.927 +582433,215.33,53.377 +582434,212.65,53.906 +582435,210.11,54.41 +582436,207.7,54.892 +582437,214.01,53.472 +582438,211.35,53.957 +582439,208.82,54.417 +582440,206.42,54.856 +582441,212.68,53.567 +582442,210.04,54.007 +582443,207.53,54.424 +582444,205.14,54.821 +582445,211.35,53.663 +582446,208.73,54.058 +582447,206.24,54.431 +582448,203.86,54.785 +582449,210.02,53.758 +582450,207.43,54.109 +582451,204.96,54.438 +582452,202.59,54.749 +582453,208.69,53.854 +582454,206.12,54.16 +582455,203.67,54.445 +582456,201.31,54.712 +582457,207.35,53.95 +582458,204.81,54.211 +582459,202.38,54.452 +582460,200.04,54.676 +582461,206.01,54.045 +582462,203.5,54.261 +582463,201.09,54.458 +582464,198.77,54.639 +582465,204.68,54.141 +582466,202.19,54.312 +582467,199.81,54.465 +582468,197.51,54.602 +582469,203.33,54.237 +582470,200.88,54.363 +582471,198.52,54.472 +582472,196.24,54.566 +582473,201.99,54.333 +582474,199.57,54.414 +582475,197.23,54.478 +582476,194.98,54.529 +582477,200.65,54.428 +582478,198.26,54.465 +582479,195.95,54.485 +582480,193.72,54.492 +582481,199.3,54.524 +582482,196.94,54.515 +582483,194.66,54.492 +582484,192.45,54.455 +582485,197.95,54.619 +582486,195.63,54.566 +582487,193.38,54.499 +582488,191.2,54.418 +582489,196.61,54.714 +582490,194.32,54.617 +582491,192.1,54.505 +582492,189.94,54.381 +582493,195.25,54.809 +582494,193,54.667 +582495,190.81,54.512 +582496,188.68,54.344 +582497,193.9,54.903 +582498,191.69,54.718 +582499,189.53,54.519 +582500,187.43,54.308 +582501,192.55,54.997 +582502,190.37,54.768 +582503,188.25,54.526 +582504,186.18,54.272 +582505,191.19,55.091 +582506,189.05,54.819 +582507,186.97,54.533 +582508,184.93,54.236 +582509,189.84,55.184 +582510,187.74,54.869 +582511,185.69,54.54 +582512,183.68,54.2 +582513,188.48,55.278 +582514,186.42,54.919 +582515,184.41,54.547 +582516,182.43,54.164 +582517,187.12,55.37 +582518,185.1,54.969 +582519,183.13,54.555 +582520,181.19,54.129 +582521,185.76,55.462 +582522,183.78,55.019 +582523,181.85,54.562 +582524,179.94,54.094 +582525,184.39,55.554 +582526,182.46,55.068 +582527,180.57,54.57 +582528,178.7,54.06 +582529,183.03,55.645 +582530,181.14,55.118 +582531,179.29,54.577 +582532,177.46,54.026 +582533,181.66,55.735 +582534,179.82,55.167 +582535,178.01,54.585 +582536,176.22,53.992 +582537,180.3,55.825 +582538,178.5,55.216 +582539,176.73,54.593 +582540,174.99,53.959 +582541,178.93,55.914 +582542,177.18,55.265 +582543,175.46,54.602 +582544,173.75,53.926 +582545,177.56,56.003 +582546,175.86,55.314 +582547,174.18,54.61 +582548,172.52,53.894 +582549,176.19,56.091 +582550,174.54,55.362 +582551,172.9,54.619 +582552,171.28,53.863 +582553,174.82,56.178 +582554,173.21,55.41 +582555,171.63,54.628 +582556,170.05,53.832 +582557,173.45,56.264 +582558,171.89,55.458 +582559,170.35,54.637 +582560,168.82,53.802 +582561,172.08,56.35 +582562,170.57,55.506 +582563,169.07,54.646 +582564,167.59,53.772 +582565,170.7,56.435 +582566,169.24,55.553 +582567,167.8,54.656 +582568,166.36,53.744 +582569,169.33,56.518 +582570,167.92,55.6 +582571,166.52,54.666 +582572,165.14,53.716 +582573,167.95,56.601 +582574,166.6,55.647 +582575,165.25,54.676 +582576,163.91,53.688 +582577,166.58,56.684 +582578,165.27,55.694 +582579,163.98,54.686 +582580,162.69,53.662 +582581,165.2,56.765 +582582,163.95,55.74 +582583,162.7,54.697 +582584,161.47,53.636 +582585,163.82,56.845 +582586,162.62,55.786 +582587,161.43,54.708 +582588,160.24,53.612 +582589,162.44,56.924 +582590,161.29,55.831 +582591,160.15,54.719 +582592,159.02,53.588 +582593,161.06,57.003 +582594,159.97,55.877 +582595,158.88,54.73 +582596,157.8,53.565 +582597,159.68,57.08 +582598,158.64,55.922 +582599,157.61,54.742 +582600,156.58,53.543 +582601,158.3,57.156 +582602,157.31,55.966 +582603,156.34,54.754 +582604,155.37,53.522 +582605,156.92,57.232 +582606,155.99,56.011 +582607,155.06,54.767 +582608,154.15,53.502 +582609,155.54,57.306 +582610,154.66,56.054 +582611,153.79,54.78 +582612,152.93,53.483 +582613,154.16,57.379 +582614,153.33,56.098 +582615,152.52,54.793 +582616,151.72,53.465 +582617,152.78,57.451 +582618,152,56.141 +582619,151.25,54.807 +582620,150.5,53.448 +582621,151.39,57.521 +582622,150.68,56.184 +582623,149.98,54.821 +582624,149.29,53.432 +582625,150.01,57.591 +582626,149.35,56.226 +582627,148.7,54.835 +582628,148.08,53.417 +582629,148.63,57.659 +582630,148.02,56.268 +582631,147.43,54.85 +582632,146.86,53.404 +582633,147.24,57.727 +582634,146.69,56.31 +582635,146.16,54.865 +582636,145.65,53.391 +582637,145.86,57.793 +582638,145.36,56.351 +582639,144.89,54.88 +582640,144.44,53.38 +582641,144.47,57.857 +582642,144.03,56.392 +582643,143.62,54.896 +582644,143.23,53.37 +582645,143.09,57.921 +582646,142.7,56.432 +582647,142.35,54.912 +582648,142.02,53.362 +582649,141.7,57.983 +582650,141.37,56.472 +582651,141.08,54.929 +582652,140.81,53.354 +582653,140.32,58.044 +582654,140.05,56.511 +582655,139.8,54.946 +582656,139.6,53.348 +582657,138.93,58.104 +582658,138.72,56.55 +582659,138.53,54.964 +582660,138.39,53.343 +582661,137.55,58.162 +582662,137.39,56.589 +582663,137.26,54.982 +582664,137.18,53.34 +582665,136.16,58.219 +582666,136.06,56.627 +582667,135.99,55 +582668,135.97,53.337 +582669,134.78,58.275 +582670,134.73,56.665 +582671,134.72,55.019 +582672,134.76,53.336 +582673,133.39,58.329 +582674,133.4,56.702 +582675,133.45,55.038 +582676,133.56,53.337 +582677,132.01,58.382 +582678,132.07,56.739 +582679,132.18,55.058 +582680,132.35,53.339 +582681,130.62,58.434 +582682,130.74,56.775 +582683,130.91,55.078 +582684,131.14,53.342 +582685,129.24,58.484 +582686,129.41,56.811 +582687,129.64,55.099 +582688,129.93,53.346 +582689,127.85,58.533 +582690,128.08,56.846 +582691,128.36,55.12 +582692,128.72,53.352 +582693,126.47,58.581 +582694,126.75,56.881 +582695,127.09,55.141 +582696,127.51,53.36 +582697,125.09,58.627 +582698,125.42,56.916 +582699,125.82,55.164 +582700,126.3,53.369 +582701,123.7,58.672 +582702,124.09,56.95 +582703,124.55,55.186 +582704,125.09,53.379 +582705,122.32,58.715 +582706,122.76,56.983 +582707,123.28,55.209 +582708,123.88,53.391 +582709,120.94,58.757 +582710,121.43,57.016 +582711,122.01,55.232 +582712,122.67,53.404 +582713,119.55,58.797 +582714,120.1,57.049 +582715,120.73,55.256 +582716,121.46,53.419 +582717,118.17,58.836 +582718,118.77,57.081 +582719,119.46,55.281 +582720,120.25,53.435 +582721,116.79,58.874 +582722,117.44,57.112 +582723,118.19,55.306 +582724,119.04,53.452 +582725,115.41,58.91 +582726,116.11,57.143 +582727,116.91,55.331 +582728,117.82,53.471 +582729,114.03,58.945 +582730,114.79,57.174 +582731,115.64,55.357 +582732,116.61,53.492 +582733,112.65,58.978 +582734,113.46,57.204 +582735,114.37,55.383 +582736,115.4,53.514 +582737,111.27,59.01 +582738,112.13,57.233 +582739,113.09,55.41 +582740,114.18,53.538 +582741,109.89,59.041 +582742,110.8,57.262 +582743,111.82,55.437 +582744,112.97,53.563 +582745,108.52,59.07 +582746,109.47,57.291 +582747,110.54,55.465 +582748,111.75,53.589 +582749,107.14,59.097 +582750,108.15,57.319 +582751,109.27,55.493 +582752,110.53,53.617 +582753,105.76,59.124 +582754,106.82,57.346 +582755,107.99,55.522 +582756,109.31,53.647 +582757,104.39,59.148 +582758,105.49,57.373 +582759,106.72,55.551 +582760,108.09,53.678 +582761,103.01,59.172 +582762,104.16,57.4 +582763,105.44,55.581 +582764,106.87,53.711 +582765,101.64,59.194 +582766,102.84,57.426 +582767,104.17,55.611 +582768,105.65,53.745 +582769,100.27,59.214 +582770,101.51,57.452 +582771,102.89,55.642 +582772,104.43,53.78 +582773,98.896,59.233 +582774,100.18,57.477 +582775,101.61,55.673 +582776,103.21,53.817 +582777,97.525,59.251 +582778,98.859,57.502 +582779,100.33,55.704 +582780,101.98,53.856 +582781,96.156,59.267 +582782,97.534,57.526 +582783,99.057,55.736 +582784,100.75,53.895 +582785,94.787,59.282 +582786,96.209,57.55 +582787,97.778,55.769 +582788,99.525,53.937 +582789,93.419,59.296 +582790,94.884,57.573 +582791,96.499,55.802 +582792,98.295,53.98 +582793,92.052,59.308 +582794,93.559,57.596 +582795,95.22,55.835 +582796,97.064,54.024 +582797,90.687,59.319 +582798,92.235,57.618 +582799,93.94,55.869 +582800,95.832,54.07 +582801,89.323,59.329 +582802,90.911,57.64 +582803,92.659,55.904 +582804,94.598,54.117 +582805,87.959,59.337 +582806,89.588,57.661 +582807,91.378,55.938 +582808,93.362,54.165 +582809,86.597,59.344 +582810,88.265,57.682 +582811,90.097,55.974 +582812,92.125,54.215 +582813,85.236,59.349 +582814,86.943,57.702 +582815,88.814,56.009 +582816,90.886,54.266 +582817,83.877,59.354 +582818,85.62,57.722 +582819,87.532,56.045 +582820,89.645,54.319 +582821,82.518,59.357 +582822,84.299,57.742 +582823,86.249,56.082 +582824,88.403,54.373 +582825,81.161,59.359 +582826,82.978,57.761 +582827,84.965,56.119 +582828,87.159,54.428 +582829,79.806,59.359 +582830,81.657,57.78 +582831,83.681,56.156 +582832,85.913,54.484 +582833,78.451,59.358 +582834,80.336,57.798 +582835,82.396,56.194 +582836,84.665,54.542 +582837,77.098,59.356 +582838,79.016,57.816 +582839,81.11,56.232 +582840,83.416,54.601 +582841,75.746,59.353 +582842,77.697,57.833 +582843,79.824,56.271 +582844,82.164,54.662 +582845,74.396,59.349 +582846,76.378,57.85 +582847,78.537,56.31 +582848,80.911,54.723 +582849,73.047,59.343 +582850,75.059,57.867 +582851,77.25,56.349 +582852,79.656,54.786 +582853,71.7,59.336 +582854,73.741,57.883 +582855,75.962,56.389 +582856,78.399,54.85 +582857,70.354,59.329 +582858,72.424,57.899 +582859,74.673,56.429 +582860,77.14,54.915 +582861,69.01,59.32 +582862,71.107,57.915 +582863,73.384,56.47 +582864,75.878,54.982 +582865,67.667,59.31 +582866,69.79,57.93 +582867,72.094,56.511 +582868,74.615,55.049 +582869,66.325,59.299 +582870,68.474,57.944 +582871,70.804,56.552 +582872,73.35,55.118 +582873,64.986,59.286 +582874,67.159,57.959 +582875,69.512,56.594 +582876,72.082,55.187 +582877,63.647,59.273 +582878,65.844,57.973 +582879,68.22,56.636 +582880,70.813,55.258 +582881,62.311,59.259 +582882,64.53,57.986 +582883,66.928,56.678 +582884,69.542,55.33 +582885,60.976,59.244 +582886,63.216,58 +582887,65.634,56.72 +582888,68.268,55.402 +582889,59.642,59.228 +582890,61.903,58.013 +582891,64.341,56.763 +582892,66.992,55.476 +582893,58.31,59.211 +582894,60.59,58.025 +582895,63.046,56.806 +582896,65.714,55.551 +582897,56.98,59.193 +582898,59.278,58.038 +582899,61.751,56.85 +582900,64.434,55.626 +582901,55.652,59.174 +582902,57.966,58.05 +582903,60.454,56.894 +582904,63.152,55.703 +582905,54.325,59.154 +582906,56.655,58.061 +582907,59.158,56.938 +582908,61.868,55.78 +582909,53,59.133 +582910,55.345,58.073 +582911,57.86,56.982 +582912,60.581,55.858 +582913,51.677,59.112 +582914,54.035,58.084 +582915,56.562,57.027 +582916,59.293,55.937 +582917,50.355,59.089 +582918,52.725,58.095 +582919,55.263,57.071 +582920,58.002,56.017 +582921,49.035,59.066 +582922,51.417,58.105 +582923,53.964,57.117 +582924,56.709,56.097 +582925,47.717,59.043 +582926,50.109,58.116 +582927,52.663,57.162 +582928,55.414,56.178 +582929,46.401,59.018 +582930,48.801,58.126 +582931,51.362,57.207 +582932,54.116,56.26 +582933,45.086,58.993 +582934,47.494,58.136 +582935,50.061,57.253 +582936,52.817,56.342 +582937,43.773,58.967 +582938,46.188,58.145 +582939,48.758,57.299 +582940,51.515,56.425 +582941,42.462,58.941 +582942,44.882,58.155 +582943,47.455,57.345 +582944,50.212,56.509 +582945,41.153,58.914 +582946,43.577,58.164 +582947,46.151,57.391 +582948,48.906,56.593 +582949,39.846,58.886 +582950,42.272,58.173 +582951,44.847,57.438 +582952,47.597,56.678 +582953,38.54,58.858 +582954,40.968,58.182 +582955,43.542,57.485 +582956,46.287,56.763 +582957,37.236,58.829 +582958,39.665,58.19 +582959,42.236,57.531 +582960,44.975,56.849 +582961,35.934,58.8 +582962,38.362,58.199 +582963,40.929,57.578 +582964,43.661,56.935 +582965,34.634,58.77 +582966,37.06,58.207 +582967,39.622,57.625 +582968,42.344,57.022 +582969,33.335,58.74 +582970,35.758,58.215 +582971,38.313,57.672 +582972,41.025,57.109 +582973,32.039,58.71 +582974,34.457,58.223 +582975,37.005,57.72 +582976,39.705,57.196 +582977,30.744,58.679 +582978,33.156,58.231 +582979,35.695,57.767 +582980,38.382,57.283 +582981,29.451,58.648 +582982,31.857,58.239 +582983,34.385,57.814 +582984,37.057,57.371 +582985,28.16,58.616 +582986,30.557,58.247 +582987,33.074,57.862 +582988,35.731,57.459 +582989,26.871,58.584 +582990,29.259,58.254 +582991,31.763,57.91 +582992,34.402,57.547 +582993,25.583,58.552 +582994,27.961,58.262 +582995,30.45,57.957 +582996,33.071,57.636 +582997,24.297,58.52 +582998,26.663,58.269 +582999,29.137,58.005 +583000,31.738,57.724 +583001,23.013,58.488 +583002,25.366,58.277 +583003,27.824,58.053 +583004,30.404,57.813 +583005,21.731,58.455 +583006,24.07,58.284 +583007,26.51,58.1 +583008,29.067,57.901 +583009,20.451,58.422 +583010,22.774,58.291 +583011,25.195,58.148 +583012,27.729,57.99 +583013,19.172,58.389 +583014,21.479,58.299 +583015,23.879,58.196 +583016,26.389,58.079 +583017,17.896,58.357 +583018,20.184,58.306 +583019,22.563,58.244 +583020,25.047,58.167 +583021,16.621,58.324 +583022,18.89,58.313 +583023,21.246,58.291 +583024,23.703,58.256 +583025,15.348,58.291 +583026,17.596,58.32 +583027,19.929,58.339 +583028,22.357,58.344 +583029,14.076,58.258 +583030,16.304,58.327 +583031,18.611,58.386 +583032,21.01,58.433 +583033,12.806,58.225 +583034,15.011,58.335 +583035,17.292,58.434 +583036,19.66,58.521 +583037,11.538,58.193 +583038,13.719,58.342 +583039,15.973,58.482 +583040,18.31,58.609 +583041,10.272,58.16 +583042,12.428,58.349 +583043,14.653,58.529 +583044,16.957,58.697 +583045,9.0075,58.128 +583046,11.137,58.357 +583047,13.332,58.576 +583048,15.603,58.784 +583049,7.7446,58.096 +583050,9.8466,58.364 +583051,12.011,58.623 +583052,14.247,58.871 +583053,6.4834,58.064 +583054,8.5568,58.372 +583055,10.69,58.671 +583056,12.89,58.958 +583057,5.2238,58.032 +583058,7.2675,58.379 +583059,9.3674,58.718 +583060,11.531,59.044 +583061,3.9658,58.001 +583062,5.9786,58.387 +583063,8.0446,58.764 +583064,10.171,59.13 +583065,2.7094,57.969 +583066,4.6903,58.395 +583067,6.7213,58.811 +583068,8.809,59.216 +583069,1.4546,57.939 +583070,3.4024,58.403 +583071,5.3974,58.858 +583072,7.4458,59.301 +583073,0.20143,57.908 +583074,2.1151,58.411 +583075,4.073,58.904 +583076,6.0811,59.386 +583077,358.95,57.878 +583078,0.82814,58.419 +583079,2.7481,58.95 +583080,4.7151,59.47 +583081,357.7,57.849 +583082,359.54,58.427 +583083,1.4227,58.996 +583084,3.3478,59.554 +583085,356.45,57.82 +583086,358.26,58.436 +583087,0.096821,59.042 +583088,1.9791,59.637 +583089,355.2,57.791 +583090,356.97,58.445 +583091,358.77,59.088 +583092,0.60924,59.72 +583093,353.96,57.764 +583094,355.68,58.453 +583095,357.44,59.133 +583096,359.24,59.801 +583097,352.71,57.736 +583098,354.4,58.462 +583099,356.12,59.179 +583100,357.87,59.883 +583101,351.47,57.709 +583102,353.12,58.472 +583103,354.79,59.224 +583104,356.49,59.963 +583105,350.23,57.683 +583106,351.83,58.481 +583107,353.46,59.268 +583108,355.12,60.043 +583109,348.99,57.658 +583110,350.55,58.491 +583111,352.13,59.313 +583112,353.74,60.122 +583113,347.75,57.633 +583114,349.27,58.501 +583115,350.8,59.357 +583116,352.37,60.201 +583117,346.51,57.608 +583118,347.98,58.511 +583119,349.47,59.401 +583120,350.99,60.278 +583121,345.28,57.585 +583122,346.7,58.521 +583123,348.14,59.445 +583124,349.61,60.355 +583125,344.04,57.562 +583126,345.42,58.532 +583127,346.81,59.488 +583128,348.23,60.431 +583129,342.81,57.54 +583130,344.14,58.542 +583131,345.48,59.531 +583132,346.85,60.506 +583133,341.57,57.519 +583134,342.85,58.554 +583135,344.15,59.574 +583136,345.47,60.58 +583137,340.34,57.499 +583138,341.57,58.565 +583139,342.82,59.617 +583140,344.09,60.653 +583141,339.11,57.48 +583142,340.29,58.577 +583143,341.49,59.659 +583144,342.7,60.726 +583145,337.88,57.461 +583146,339.01,58.589 +583147,340.16,59.701 +583148,341.32,60.797 +583149,336.65,57.444 +583150,337.73,58.601 +583151,338.82,59.742 +583152,339.93,60.867 +583153,335.43,57.427 +583154,336.45,58.613 +583155,337.49,59.784 +583156,338.55,60.937 +583157,334.2,57.411 +583158,335.17,58.626 +583159,336.16,59.825 +583160,337.16,61.005 +583161,332.97,57.397 +583162,333.89,58.639 +583163,334.83,59.865 +583164,335.78,61.073 +583165,331.75,57.383 +583166,332.61,58.653 +583167,333.49,59.905 +583168,334.39,61.139 +583169,330.52,57.37 +583170,331.33,58.667 +583171,332.16,59.945 +583172,333,61.204 +583173,329.3,57.359 +583174,330.05,58.681 +583175,330.83,59.985 +583176,331.62,61.268 +583177,328.08,57.348 +583178,328.77,58.696 +583179,329.49,60.024 +583180,330.23,61.331 +583181,326.85,57.339 +583182,327.5,58.71 +583183,328.16,60.062 +583184,328.84,61.393 +583185,325.63,57.33 +583186,326.22,58.726 +583187,326.82,60.101 +583188,327.45,61.454 +583189,324.41,57.323 +583190,324.94,58.741 +583191,325.49,60.138 +583192,326.06,61.514 +583193,323.19,57.317 +583194,323.66,58.757 +583195,324.15,60.176 +583196,324.67,61.572 +583197,321.97,57.312 +583198,322.38,58.774 +583199,322.82,60.213 +583200,323.28,61.629 +583201,320.75,57.308 +583202,321.1,58.79 +583203,321.48,60.25 +583204,321.89,61.686 +583205,319.53,57.306 +583206,319.83,58.808 +583207,320.15,60.286 +583208,320.5,61.74 +583209,318.31,57.305 +583210,318.55,58.825 +583211,318.81,60.322 +583212,319.11,61.794 +583213,317.09,57.304 +583214,317.27,58.843 +583215,317.48,60.357 +583216,317.72,61.846 +583217,315.88,57.306 +583218,315.99,58.861 +583219,316.14,60.392 +583220,316.33,61.898 +583221,314.66,57.308 +583222,314.71,58.88 +583223,314.81,60.427 +583224,314.94,61.947 +583225,313.44,57.312 +583226,313.44,58.899 +583227,313.47,60.461 +583228,313.55,61.996 +583229,312.22,57.317 +583230,312.16,58.919 +583231,312.14,60.495 +583232,312.16,62.043 +583233,311,57.323 +583234,310.88,58.939 +583235,310.8,60.528 +583236,310.77,62.089 +583237,309.79,57.33 +583238,309.6,58.959 +583239,309.47,60.561 +583240,309.38,62.134 +583241,308.57,57.339 +583242,308.32,58.98 +583243,308.13,60.593 +583244,307.99,62.178 +583245,307.35,57.349 +583246,307.04,59.001 +583247,306.8,60.625 +583248,306.6,62.22 +583249,306.13,57.361 +583250,305.77,59.023 +583251,305.46,60.656 +583252,305.21,62.261 +583253,304.91,57.374 +583254,304.49,59.045 +583255,304.13,60.687 +583256,303.82,62.3 +583257,303.69,57.388 +583258,303.21,59.068 +583259,302.79,60.718 +583260,302.43,62.338 +583261,302.47,57.403 +583262,301.93,59.091 +583263,301.46,60.748 +583264,301.05,62.375 +583265,301.25,57.42 +583266,300.65,59.114 +583267,300.12,60.778 +583268,299.66,62.411 +583269,300.03,57.438 +583270,299.37,59.138 +583271,298.79,60.807 +583272,298.27,62.445 +583273,298.81,57.458 +583274,298.09,59.162 +583275,297.45,60.835 +583276,296.88,62.478 +583277,297.59,57.479 +583278,296.81,59.187 +583279,296.12,60.864 +583280,295.5,62.509 +583281,296.37,57.501 +583282,295.53,59.212 +583283,294.78,60.891 +583284,294.11,62.539 +583285,295.15,57.525 +583286,294.25,59.238 +583287,293.45,60.919 +583288,292.73,62.568 +583289,293.93,57.55 +583290,292.97,59.264 +583291,292.12,60.945 +583292,291.34,62.595 +583293,292.7,57.577 +583294,291.69,59.29 +583295,290.78,60.972 +583296,289.96,62.622 +583297,291.48,57.604 +583298,290.41,59.317 +583299,289.45,60.998 +583300,288.57,62.646 +583301,290.25,57.634 +583302,289.13,59.345 +583303,288.11,61.023 +583304,287.19,62.67 +583305,289.03,57.664 +583306,287.85,59.372 +583307,286.78,61.048 +583308,285.81,62.692 +583309,287.8,57.696 +583310,286.57,59.401 +583311,285.45,61.073 +583312,284.43,62.713 +583313,286.57,57.729 +583314,285.29,59.429 +583315,284.12,61.097 +583316,283.05,62.732 +583317,285.35,57.764 +583318,284,59.458 +583319,282.78,61.12 +583320,281.67,62.75 +583321,284.12,57.8 +583322,282.72,59.488 +583323,281.45,61.143 +583324,280.29,62.767 +583325,282.89,57.837 +583326,281.44,59.518 +583327,280.12,61.166 +583328,278.91,62.783 +583329,281.65,57.876 +583330,280.15,59.548 +583331,278.79,61.188 +583332,277.54,62.797 +583333,280.42,57.916 +583334,278.87,59.579 +583335,277.46,61.21 +583336,276.16,62.81 +583337,279.19,57.957 +583338,277.59,59.61 +583339,276.13,61.232 +583340,274.78,62.821 +583341,277.95,57.999 +583342,276.3,59.642 +583343,274.8,61.253 +583344,273.41,62.832 +583345,276.71,58.043 +583346,275.02,59.674 +583347,273.46,61.273 +583348,272.04,62.841 +583349,275.47,58.088 +583350,273.73,59.707 +583351,272.13,61.293 +583352,270.67,62.849 +583353,274.24,58.135 +583354,272.44,59.74 +583355,270.81,61.313 +583356,269.3,62.855 +583357,272.99,58.182 +583358,271.16,59.773 +583359,269.48,61.332 +583360,267.93,62.86 +583361,271.75,58.231 +583362,269.87,59.807 +583363,268.15,61.351 +583364,266.56,62.865 +583365,270.51,58.281 +583366,268.58,59.841 +583367,266.82,61.369 +583368,265.19,62.867 +583369,269.26,58.333 +583370,267.3,59.875 +583371,265.49,61.387 +583372,263.82,62.869 +583373,268.01,58.385 +583374,266.01,59.91 +583375,264.16,61.404 +583376,262.46,62.87 +583377,266.77,58.439 +583378,264.72,59.945 +583379,262.84,61.421 +583380,261.1,62.869 +583381,265.52,58.494 +583382,263.43,59.981 +583383,261.51,61.438 +583384,259.73,62.867 +583385,264.26,58.55 +583386,262.14,60.017 +583387,260.18,61.455 +583388,258.37,62.864 +583389,263.01,58.607 +583390,260.85,60.053 +583391,258.86,61.47 +583392,257.01,62.86 +583393,261.75,58.666 +583394,259.56,60.09 +583395,257.53,61.486 +583396,255.66,62.855 +583397,260.5,58.725 +583398,258.26,60.127 +583399,256.21,61.501 +583400,254.3,62.849 +583401,259.24,58.785 +583402,256.97,60.164 +583403,254.88,61.516 +583404,252.94,62.841 +583405,257.98,58.847 +583406,255.68,60.202 +583407,253.56,61.53 +583408,251.59,62.833 +583409,256.71,58.91 +583410,254.39,60.24 +583411,252.24,61.544 +583412,250.24,62.824 +583413,255.45,58.973 +583414,253.09,60.279 +583415,250.91,61.558 +583416,248.89,62.813 +583417,254.18,59.038 +583418,251.8,60.317 +583419,249.59,61.572 +583420,247.54,62.802 +583421,252.92,59.103 +583422,250.5,60.356 +583423,248.27,61.585 +583424,246.19,62.789 +583425,251.65,59.17 +583426,249.21,60.396 +583427,246.95,61.597 +583428,244.84,62.776 +583429,250.37,59.237 +583430,247.91,60.435 +583431,245.63,61.61 +583432,243.5,62.761 +583433,249.1,59.306 +583434,246.61,60.475 +583435,244.31,61.622 +583436,242.16,62.746 +583437,247.82,59.375 +583438,245.31,60.515 +583439,242.99,61.633 +583440,240.81,62.73 +583441,246.54,59.445 +583442,244.02,60.556 +583443,241.67,61.645 +583444,239.47,62.713 +583445,245.26,59.516 +583446,242.72,60.597 +583447,240.35,61.656 +583448,238.13,62.695 +583449,243.98,59.587 +583450,241.42,60.638 +583451,239.03,61.667 +583452,236.8,62.677 +583453,242.7,59.66 +583454,240.12,60.679 +583455,237.71,61.678 +583456,235.46,62.657 +583457,241.41,59.733 +583458,238.82,60.72 +583459,236.4,61.688 +583460,234.13,62.637 +583461,240.12,59.807 +583462,237.51,60.762 +583463,235.08,61.698 +583464,232.8,62.616 +583465,238.83,59.882 +583466,236.21,60.804 +583467,233.76,61.708 +583468,231.47,62.594 +583469,237.54,59.957 +583470,234.91,60.846 +583471,232.45,61.717 +583472,230.14,62.572 +583473,236.25,60.033 +583474,233.6,60.888 +583475,231.13,61.727 +583476,228.81,62.549 +583477,234.95,60.109 +583478,232.3,60.931 +583479,229.82,61.736 +583480,227.49,62.525 +583481,233.65,60.186 +583482,230.99,60.974 +583483,228.51,61.745 +583484,226.16,62.5 +583485,232.35,60.264 +583486,229.69,61.017 +583487,227.19,61.753 +583488,224.84,62.475 +583489,231.05,60.342 +583490,228.38,61.06 +583491,225.88,61.762 +583492,223.52,62.45 +583493,229.74,60.421 +583494,227.07,61.103 +583495,224.57,61.77 +583496,222.2,62.424 +583497,228.44,60.5 +583498,225.77,61.146 +583499,223.26,61.778 +583500,220.89,62.397 +583501,227.13,60.579 +583502,224.46,61.19 +583503,221.95,61.786 +583504,219.57,62.37 +583505,225.82,60.659 +583506,223.15,61.233 +583507,220.64,61.794 +583508,218.26,62.342 +583509,224.5,60.74 +583510,221.84,61.277 +583511,219.33,61.802 +583512,216.95,62.314 +583513,223.19,60.82 +583514,220.53,61.321 +583515,218.02,61.809 +583516,215.64,62.286 +583517,221.87,60.901 +583518,219.22,61.365 +583519,216.71,61.816 +583520,214.33,62.257 +583521,220.55,60.983 +583522,217.91,61.409 +583523,215.4,61.824 +583524,213.03,62.228 +583525,219.23,61.064 +583526,216.59,61.453 +583527,214.1,61.831 +583528,211.72,62.199 +583529,217.91,61.146 +583530,215.28,61.497 +583531,212.79,61.838 +583532,210.42,62.169 +583533,216.58,61.228 +583534,213.97,61.542 +583535,211.48,61.845 +583536,209.12,62.139 +583537,215.25,61.31 +583538,212.65,61.586 +583539,210.18,61.852 +583540,207.82,62.109 +583541,213.93,61.392 +583542,211.34,61.63 +583543,208.87,61.858 +583544,206.52,62.078 +583545,212.59,61.474 +583546,210.02,61.674 +583547,207.57,61.865 +583548,205.23,62.048 +583549,211.26,61.557 +583550,208.7,61.719 +583551,206.27,61.872 +583552,203.94,62.017 +583553,209.93,61.639 +583554,207.39,61.763 +583555,204.96,61.878 +583556,202.65,61.986 +583557,208.59,61.721 +583558,206.07,61.808 +583559,203.66,61.885 +583560,201.36,61.955 +583561,207.25,61.804 +583562,204.75,61.852 +583563,202.36,61.891 +583564,200.07,61.924 +583565,205.91,61.886 +583566,203.43,61.896 +583567,201.06,61.898 +583568,198.78,61.893 +583569,204.57,61.968 +583570,202.11,61.941 +583571,199.76,61.905 +583572,197.5,61.862 +583573,203.22,62.05 +583574,200.79,61.985 +583575,198.46,61.911 +583576,196.21,61.831 +583577,201.88,62.132 +583578,199.47,62.029 +583579,197.16,61.918 +583580,194.93,61.8 +583581,200.53,62.214 +583582,198.15,62.073 +583583,195.86,61.924 +583584,193.65,61.769 +583585,199.18,62.296 +583586,196.83,62.117 +583587,194.56,61.931 +583588,192.38,61.739 +583589,197.83,62.377 +583590,195.5,62.161 +583591,193.26,61.938 +583592,191.1,61.708 +583593,196.48,62.458 +583594,194.18,62.205 +583595,191.97,61.944 +583596,189.83,61.678 +583597,195.12,62.539 +583598,192.86,62.249 +583599,190.67,61.951 +583600,188.55,61.648 +583601,193.77,62.619 +583602,191.53,62.293 +583603,189.37,61.958 +583604,187.28,61.618 +583605,192.41,62.699 +583606,190.21,62.336 +583607,188.08,61.965 +583608,186.02,61.588 +583609,191.05,62.779 +583610,188.88,62.38 +583611,186.78,61.972 +583612,184.75,61.559 +583613,189.69,62.858 +583614,187.55,62.423 +583615,185.49,61.979 +583616,183.48,61.53 +583617,188.33,62.937 +583618,186.23,62.466 +583619,184.19,61.987 +583620,182.22,61.501 +583621,186.96,63.016 +583622,184.9,62.509 +583623,182.9,61.994 +583624,180.95,61.473 +583625,185.6,63.093 +583626,183.57,62.552 +583627,181.61,62.002 +583628,179.69,61.446 +583629,184.23,63.171 +583630,182.24,62.594 +583631,180.31,62.009 +583632,178.43,61.418 +583633,182.86,63.248 +583634,180.91,62.637 +583635,179.02,62.017 +583636,177.18,61.391 +583637,181.49,63.324 +583638,179.59,62.679 +583639,177.73,62.025 +583640,175.92,61.365 +583641,180.12,63.399 +583642,178.26,62.721 +583643,176.44,62.034 +583644,174.66,61.339 +583645,178.75,63.474 +583646,176.93,62.763 +583647,175.15,62.042 +583648,173.41,61.314 +583649,177.38,63.549 +583650,175.59,62.804 +583651,173.86,62.05 +583652,172.16,61.289 +583653,176,63.622 +583654,174.26,62.846 +583655,172.57,62.059 +583656,170.91,61.265 +583657,174.63,63.695 +583658,172.93,62.887 +583659,171.28,62.068 +583660,169.66,61.242 +583661,173.25,63.767 +583662,171.6,62.927 +583663,169.99,62.077 +583664,168.41,61.219 +583665,171.87,63.839 +583666,170.27,62.968 +583667,168.7,62.087 +583668,167.16,61.197 +583669,170.49,63.91 +583670,168.93,63.008 +583671,167.41,62.097 +583672,165.91,61.176 +583673,169.11,63.979 +583674,167.6,63.048 +583675,166.12,62.106 +583676,164.67,61.155 +583677,167.73,64.048 +583678,166.27,63.088 +583679,164.83,62.117 +583680,163.43,61.136 +583681,166.35,64.117 +583682,164.93,63.128 +583683,163.55,62.127 +583684,162.18,61.117 +583685,164.97,64.184 +583686,163.6,63.167 +583687,162.26,62.138 +583688,160.94,61.098 +583689,163.58,64.25 +583690,162.27,63.206 +583691,160.97,62.149 +583692,159.7,61.081 +583693,162.2,64.316 +583694,160.93,63.244 +583695,159.69,62.16 +583696,158.46,61.065 +583697,160.81,64.381 +583698,159.6,63.282 +583699,158.4,62.171 +583700,157.23,61.049 +583701,159.43,64.444 +583702,158.26,63.32 +583703,157.11,62.183 +583704,155.99,61.034 +583705,158.04,64.507 +583706,156.92,63.358 +583707,155.83,62.195 +583708,154.75,61.021 +583709,156.65,64.569 +583710,155.59,63.395 +583711,154.54,62.208 +583712,153.52,61.008 +583713,155.27,64.629 +583714,154.25,63.432 +583715,153.26,62.22 +583716,152.28,60.996 +583717,153.88,64.689 +583718,152.91,63.469 +583719,151.97,62.233 +583720,151.05,60.985 +583721,152.49,64.748 +583722,151.58,63.505 +583723,150.69,62.247 +583724,149.82,60.975 +583725,151.1,64.805 +583726,150.24,63.541 +583727,149.4,62.261 +583728,148.59,60.966 +583729,149.71,64.862 +583730,148.9,63.576 +583731,148.12,62.275 +583732,147.36,60.959 +583733,148.32,64.917 +583734,147.57,63.611 +583735,146.83,62.289 +583736,146.13,60.952 +583737,146.93,64.971 +583738,146.23,63.646 +583739,145.55,62.304 +583740,144.9,60.946 +583741,145.54,65.025 +583742,144.89,63.68 +583743,144.27,62.319 +583744,143.67,60.942 +583745,144.14,65.077 +583746,143.55,63.714 +583747,142.98,62.334 +583748,142.44,60.938 +583749,142.75,65.128 +583750,142.21,63.748 +583751,141.7,62.35 +583752,141.21,60.936 +583753,141.36,65.177 +583754,140.88,63.781 +583755,140.42,62.366 +583756,139.98,60.935 +583757,139.97,65.226 +583758,139.54,63.814 +583759,139.13,62.383 +583760,138.75,60.935 +583761,138.58,65.273 +583762,138.2,63.846 +583763,137.85,62.4 +583764,137.53,60.936 +583765,137.18,65.32 +583766,136.86,63.878 +583767,136.57,62.417 +583768,136.3,60.939 +583769,135.79,65.365 +583770,135.52,63.909 +583771,135.28,62.435 +583772,135.08,60.942 +583773,134.4,65.408 +583774,134.18,63.94 +583775,134,62.453 +583776,133.85,60.947 +583777,133,65.451 +583778,132.84,63.971 +583779,132.72,62.472 +583780,132.62,60.953 +583781,131.61,65.492 +583782,131.5,64.001 +583783,131.43,62.49 +583784,131.4,60.96 +583785,130.22,65.532 +583786,130.17,64.031 +583787,130.15,62.51 +583788,130.17,60.969 +583789,128.83,65.571 +583790,128.83,64.061 +583791,128.87,62.529 +583792,128.95,60.979 +583793,127.43,65.609 +583794,127.49,64.09 +583795,127.58,62.55 +583796,127.72,60.989 +583797,126.04,65.645 +583798,126.15,64.118 +583799,126.3,62.57 +583800,126.5,61.002 +583801,124.65,65.681 +583802,124.81,64.146 +583803,125.02,62.591 +583804,125.27,61.015 +583805,123.26,65.714 +583806,123.47,64.174 +583807,123.73,62.612 +583808,124.05,61.03 +583809,121.86,65.747 +583810,122.13,64.201 +583811,122.45,62.634 +583812,122.82,61.046 +583813,120.47,65.778 +583814,120.79,64.228 +583815,121.17,62.656 +583816,121.59,61.063 +583817,119.08,65.809 +583818,119.46,64.254 +583819,119.88,62.679 +583820,120.37,61.082 +583821,117.69,65.837 +583822,118.12,64.28 +583823,118.6,62.702 +583824,119.14,61.102 +583825,116.3,65.865 +583826,116.78,64.306 +583827,117.31,62.725 +583828,117.91,61.123 +583829,114.91,65.891 +583830,115.44,64.331 +583831,116.03,62.749 +583832,116.69,61.145 +583833,113.52,65.916 +583834,114.1,64.356 +583835,114.75,62.773 +583836,115.46,61.169 +583837,112.13,65.94 +583838,112.76,64.38 +583839,113.46,62.798 +583840,114.23,61.194 +583841,110.74,65.962 +583842,111.43,64.404 +583843,112.18,62.823 +583844,113,61.221 +583845,109.36,65.983 +583846,110.09,64.427 +583847,110.89,62.848 +583848,111.77,61.248 +583849,107.97,66.003 +583850,108.75,64.45 +583851,109.61,62.874 +583852,110.54,61.277 +583853,106.58,66.022 +583854,107.41,64.472 +583855,108.32,62.9 +583856,109.31,61.307 +583857,105.2,66.039 +583858,106.08,64.494 +583859,107.04,62.927 +583860,108.08,61.339 +583861,103.81,66.056 +583862,104.74,64.516 +583863,105.75,62.954 +583864,106.85,61.371 +583865,102.43,66.07 +583866,103.4,64.537 +583867,104.46,62.982 +583868,105.61,61.405 +583869,101.05,66.084 +583870,102.07,64.558 +583871,103.18,63.01 +583872,104.38,61.441 +583873,99.663,66.097 +583874,100.73,64.578 +583875,101.89,63.038 +583876,103.14,61.477 +583877,98.281,66.108 +583878,99.397,64.598 +583879,100.6,63.067 +583880,101.91,61.515 +583881,96.9,66.118 +583882,98.061,64.617 +583883,99.315,63.096 +583884,100.67,61.554 +583885,95.52,66.126 +583886,96.726,64.636 +583887,98.027,63.125 +583888,99.434,61.594 +583889,94.142,66.134 +583890,95.392,64.655 +583891,96.738,63.155 +583892,98.195,61.635 +583893,92.764,66.14 +583894,94.057,64.673 +583895,95.45,63.185 +583896,96.954,61.678 +583897,91.387,66.145 +583898,92.723,64.691 +583899,94.16,63.216 +583900,95.713,61.722 +583901,90.011,66.149 +583902,91.389,64.708 +583903,92.871,63.247 +583904,94.471,61.767 +583905,88.636,66.152 +583906,90.056,64.725 +583907,91.581,63.279 +583908,93.227,61.813 +583909,87.262,66.154 +583910,88.723,64.742 +583911,90.291,63.31 +583912,91.982,61.86 +583913,85.89,66.154 +583914,87.39,64.758 +583915,89,63.343 +583916,90.735,61.909 +583917,84.518,66.154 +583918,86.058,64.774 +583919,87.709,63.375 +583920,89.487,61.958 +583921,83.148,66.152 +583922,84.726,64.789 +583923,86.417,63.408 +583924,88.238,62.009 +583925,81.779,66.149 +583926,83.394,64.804 +583927,85.125,63.441 +583928,86.988,62.061 +583929,80.411,66.145 +583930,82.063,64.819 +583931,83.832,63.475 +583932,85.736,62.114 +583933,79.044,66.141 +583934,80.733,64.833 +583935,82.539,63.509 +583936,84.482,62.168 +583937,77.679,66.135 +583938,79.402,64.847 +583939,81.245,63.543 +583940,83.227,62.223 +583941,76.315,66.127 +583942,78.072,64.861 +583943,79.951,63.578 +583944,81.97,62.279 +583945,74.952,66.119 +583946,76.743,64.874 +583947,78.657,63.613 +583948,80.712,62.336 +583949,73.591,66.11 +583950,75.414,64.887 +583951,77.362,63.648 +583952,79.452,62.394 +583953,72.231,66.1 +583954,74.086,64.899 +583955,76.066,63.683 +583956,78.191,62.453 +583957,70.873,66.089 +583958,72.758,64.912 +583959,74.77,63.719 +583960,76.927,62.513 +583961,69.515,66.077 +583962,71.43,64.923 +583963,73.473,63.756 +583964,75.662,62.574 +583965,68.16,66.064 +583966,70.103,64.935 +583967,72.175,63.792 +583968,74.396,62.636 +583969,66.805,66.051 +583970,68.777,64.946 +583971,70.877,63.829 +583972,73.127,62.698 +583973,65.453,66.036 +583974,67.451,64.957 +583975,69.579,63.866 +583976,71.857,62.762 +583977,64.101,66.02 +583978,66.125,64.968 +583979,68.28,63.903 +583980,70.585,62.826 +583981,62.752,66.004 +583982,64.8,64.978 +583983,66.98,63.941 +583984,69.312,62.892 +583985,61.403,65.987 +583986,63.476,64.988 +583987,65.68,63.979 +583988,68.036,62.958 +583989,60.057,65.969 +583990,62.152,64.998 +583991,64.379,64.017 +583992,66.759,63.024 +583993,58.712,65.95 +583994,60.829,65.008 +583995,63.077,64.055 +583996,65.479,63.092 +583997,57.368,65.93 +583998,59.506,65.017 +583999,61.775,64.094 +584000,64.198,63.16 +584001,56.026,65.91 +584002,58.184,65.026 +584003,60.473,64.132 +584004,62.915,63.229 +584005,54.686,65.889 +584006,56.862,65.035 +584007,59.169,64.171 +584008,61.63,63.299 +584009,53.347,65.867 +584010,55.541,65.043 +584011,57.865,64.211 +584012,60.343,63.369 +584013,52.01,65.845 +584014,54.22,65.052 +584015,56.561,64.25 +584016,59.054,63.44 +584017,50.675,65.822 +584018,52.9,65.06 +584019,55.256,64.29 +584020,57.763,63.512 +584021,49.341,65.798 +584022,51.58,65.067 +584023,53.95,64.329 +584024,56.47,63.584 +584025,48.009,65.774 +584026,50.261,65.075 +584027,52.643,64.369 +584028,55.175,63.656 +584029,46.678,65.749 +584030,48.943,65.083 +584031,51.336,64.409 +584032,53.879,63.73 +584033,45.35,65.724 +584034,47.625,65.09 +584035,50.028,64.45 +584036,52.58,63.803 +584037,44.023,65.698 +584038,46.308,65.097 +584039,48.72,64.49 +584040,51.279,63.877 +584041,42.698,65.672 +584042,44.991,65.104 +584043,47.411,64.531 +584044,49.976,63.952 +584045,41.374,65.645 +584046,43.675,65.111 +584047,46.101,64.571 +584048,48.672,64.027 +584049,40.052,65.618 +584050,42.36,65.117 +584051,44.791,64.612 +584052,47.365,64.102 +584053,38.732,65.59 +584054,41.045,65.124 +584055,43.48,64.653 +584056,46.056,64.178 +584057,37.414,65.562 +584058,39.731,65.13 +584059,42.168,64.694 +584060,44.745,64.254 +584061,36.097,65.534 +584062,38.417,65.136 +584063,40.856,64.735 +584064,43.433,64.33 +584065,34.782,65.505 +584066,37.104,65.143 +584067,39.543,64.777 +584068,42.118,64.407 +584069,33.469,65.476 +584070,35.791,65.149 +584071,38.229,64.818 +584072,40.801,64.484 +584073,32.158,65.447 +584074,34.479,65.155 +584075,36.915,64.859 +584076,39.483,64.561 +584077,30.848,65.417 +584078,33.168,65.16 +584079,35.6,64.901 +584080,38.162,64.638 +584081,29.54,65.388 +584082,31.857,65.166 +584083,34.284,64.942 +584084,36.84,64.715 +584085,28.234,65.358 +584086,30.547,65.172 +584087,32.968,64.984 +584088,35.515,64.792 +584089,26.93,65.328 +584090,29.237,65.178 +584091,31.651,65.025 +584092,34.189,64.87 +584093,25.627,65.298 +584094,27.928,65.183 +584095,30.334,65.067 +584096,32.86,64.948 +584097,24.326,65.268 +584098,26.62,65.189 +584099,29.015,65.108 +584100,31.53,65.025 +584101,23.027,65.237 +584102,25.312,65.194 +584103,27.697,65.15 +584104,30.198,65.103 +584105,21.73,65.207 +584106,24.005,65.2 +584107,26.377,65.191 +584108,28.864,65.18 +584109,20.434,65.177 +584110,22.698,65.205 +584111,25.057,65.233 +584112,27.528,65.258 +584113,19.14,65.146 +584114,21.392,65.211 +584115,23.737,65.274 +584116,26.19,65.335 +584117,17.848,65.116 +584118,20.086,65.216 +584119,22.415,65.316 +584120,24.851,65.413 +584121,16.558,65.086 +584122,18.781,65.222 +584123,21.094,65.357 +584124,23.509,65.49 +584125,15.269,65.056 +584126,17.477,65.228 +584127,19.771,65.398 +584128,22.166,65.567 +584129,13.982,65.026 +584130,16.173,65.233 +584131,18.448,65.44 +584132,20.821,65.644 +584133,12.696,64.996 +584134,14.869,65.239 +584135,17.124,65.481 +584136,19.474,65.72 +584137,11.413,64.966 +584138,13.567,65.245 +584139,15.8,65.522 +584140,18.126,65.796 +584141,10.131,64.937 +584142,12.264,65.251 +584143,14.475,65.563 +584144,16.776,65.872 +584145,8.8501,64.908 +584146,10.963,65.256 +584147,13.15,65.604 +584148,15.424,65.948 +584149,7.5713,64.879 +584150,9.6613,65.262 +584151,11.824,65.644 +584152,14.07,66.024 +584153,6.2942,64.851 +584154,8.3607,65.269 +584155,10.497,65.685 +584156,12.715,66.099 +584157,5.0186,64.822 +584158,7.0605,65.275 +584159,9.1702,65.725 +584160,11.358,66.173 +584161,3.7447,64.795 +584162,5.7608,65.281 +584163,7.8426,65.766 +584164,10,66.247 +584165,2.4723,64.767 +584166,4.4617,65.287 +584167,6.5144,65.806 +584168,8.6401,66.321 +584169,1.2015,64.74 +584170,3.163,65.294 +584171,5.1857,65.846 +584172,7.2787,66.394 +584173,359.93,64.713 +584174,1.8649,65.301 +584175,3.8565,65.886 +584176,5.9158,66.467 +584177,358.66,64.687 +584178,0.56721,65.308 +584179,2.5267,65.925 +584180,4.5514,66.539 +584181,357.4,64.662 +584182,359.27,65.315 +584183,1.1965,65.965 +584184,3.1856,66.611 +584185,356.13,64.637 +584186,357.97,65.322 +584187,359.87,66.004 +584188,1.8184,66.682 +584189,354.87,64.612 +584190,356.68,65.329 +584191,358.53,66.043 +584192,0.44984,66.753 +584193,353.61,64.588 +584194,355.38,65.337 +584195,357.2,66.082 +584196,359.08,66.822 +584197,352.35,64.565 +584198,354.09,65.345 +584199,355.87,66.121 +584200,357.71,66.892 +584201,351.09,64.542 +584202,352.79,65.353 +584203,354.54,66.159 +584204,356.34,66.96 +584205,349.83,64.52 +584206,351.5,65.361 +584207,353.2,66.197 +584208,354.96,67.028 +584209,348.57,64.499 +584210,350.2,65.369 +584211,351.87,66.235 +584212,353.59,67.095 +584213,347.32,64.478 +584214,348.91,65.378 +584215,350.54,66.273 +584216,352.21,67.162 +584217,346.07,64.458 +584218,347.62,65.387 +584219,349.2,66.31 +584220,350.83,67.227 +584221,344.81,64.439 +584222,346.32,65.396 +584223,347.87,66.347 +584224,349.46,67.292 +584225,343.56,64.42 +584226,345.03,65.405 +584227,346.53,66.384 +584228,348.08,67.356 +584229,342.31,64.403 +584230,343.74,65.415 +584231,345.2,66.421 +584232,346.7,67.419 +584233,341.06,64.386 +584234,342.45,65.425 +584235,343.86,66.457 +584236,345.31,67.481 +584237,339.81,64.37 +584238,341.15,65.435 +584239,342.53,66.493 +584240,343.93,67.543 +584241,338.57,64.355 +584242,339.86,65.445 +584243,341.19,66.529 +584244,342.55,67.604 +584245,337.32,64.34 +584246,338.57,65.456 +584247,339.85,66.564 +584248,341.16,67.663 +584249,336.08,64.327 +584250,337.28,65.467 +584251,338.51,66.599 +584252,339.78,67.722 +584253,334.83,64.315 +584254,335.99,65.479 +584255,337.18,66.634 +584256,338.39,67.78 +584257,333.59,64.303 +584258,334.7,65.49 +584259,335.84,66.668 +584260,337.01,67.837 +584261,332.35,64.293 +584262,333.41,65.502 +584263,334.5,66.703 +584264,335.62,67.892 +584265,331.11,64.283 +584266,332.12,65.514 +584267,333.16,66.736 +584268,334.23,67.947 +584269,329.87,64.275 +584270,330.83,65.527 +584271,331.82,66.77 +584272,332.84,68.001 +584273,328.63,64.267 +584274,329.54,65.54 +584275,330.49,66.803 +584276,331.45,68.054 +584277,327.39,64.261 +584278,328.26,65.553 +584279,329.15,66.835 +584280,330.06,68.106 +584281,326.15,64.255 +584282,326.97,65.567 +584283,327.81,66.868 +584284,328.67,68.156 +584285,324.92,64.251 +584286,325.68,65.581 +584287,326.47,66.9 +584288,327.28,68.206 +584289,323.68,64.248 +584290,324.39,65.595 +584291,325.13,66.931 +584292,325.89,68.255 +584293,322.44,64.246 +584294,323.1,65.61 +584295,323.79,66.962 +584296,324.5,68.302 +584297,321.21,64.244 +584298,321.81,65.625 +584299,322.45,66.993 +584300,323.11,68.348 +584301,319.97,64.244 +584302,320.53,65.64 +584303,321.11,67.024 +584304,321.71,68.394 +584305,318.74,64.246 +584306,319.24,65.656 +584307,319.77,67.054 +584308,320.32,68.438 +584309,317.51,64.248 +584310,317.95,65.672 +584311,318.43,67.083 +584312,318.93,68.481 +584313,316.27,64.251 +584314,316.66,65.689 +584315,317.09,67.113 +584316,317.53,68.523 +584317,315.04,64.256 +584318,315.38,65.705 +584319,315.74,67.142 +584320,316.14,68.563 +584321,313.81,64.262 +584322,314.09,65.723 +584323,314.4,67.17 +584324,314.75,68.603 +584325,312.57,64.269 +584326,312.8,65.74 +584327,313.06,67.198 +584328,313.35,68.641 +584329,311.34,64.277 +584330,311.52,65.758 +584331,311.72,67.226 +584332,311.96,68.678 +584333,310.11,64.287 +584334,310.23,65.777 +584335,310.38,67.253 +584336,310.56,68.714 +584337,308.88,64.297 +584338,308.94,65.796 +584339,309.04,67.28 +584340,309.17,68.749 +584341,307.65,64.309 +584342,307.66,65.815 +584343,307.7,67.306 +584344,307.78,68.783 +584345,306.42,64.322 +584346,306.37,65.834 +584347,306.36,67.332 +584348,306.38,68.815 +584349,305.18,64.336 +584350,305.08,65.854 +584351,305.02,67.358 +584352,304.99,68.846 +584353,303.95,64.352 +584354,303.79,65.875 +584355,303.68,67.383 +584356,303.59,68.876 +584357,302.72,64.369 +584358,302.51,65.896 +584359,302.33,67.408 +584360,302.2,68.905 +584361,301.49,64.387 +584362,301.22,65.917 +584363,300.99,67.432 +584364,300.81,68.932 +584365,300.26,64.406 +584366,299.93,65.938 +584367,299.65,67.456 +584368,299.41,68.959 +584369,299.03,64.426 +584370,298.65,65.96 +584371,298.31,67.48 +584372,298.02,68.984 +584373,297.79,64.448 +584374,297.36,65.983 +584375,296.97,67.503 +584376,296.63,69.007 +584377,296.56,64.471 +584378,296.07,66.006 +584379,295.63,67.526 +584380,295.24,69.03 +584381,295.33,64.495 +584382,294.78,66.029 +584383,294.29,67.548 +584384,293.85,69.052 +584385,294.1,64.521 +584386,293.49,66.052 +584387,292.95,67.57 +584388,292.45,69.072 +584389,292.86,64.547 +584390,292.21,66.077 +584391,291.61,67.591 +584392,291.06,69.091 +584393,291.63,64.575 +584394,290.92,66.101 +584395,290.27,67.612 +584396,289.67,69.108 +584397,290.39,64.604 +584398,289.63,66.126 +584399,288.93,67.633 +584400,288.28,69.125 +584401,289.16,64.635 +584402,288.34,66.151 +584403,287.59,67.653 +584404,286.89,69.14 +584405,287.92,64.666 +584406,287.05,66.177 +584407,286.25,67.673 +584408,285.51,69.154 +584409,286.69,64.699 +584410,285.76,66.203 +584411,284.91,67.692 +584412,284.12,69.167 +584413,285.45,64.733 +584414,284.47,66.229 +584415,283.57,67.711 +584416,282.73,69.179 +584417,284.21,64.768 +584418,283.18,66.256 +584419,282.23,67.73 +584420,281.34,69.19 +584421,282.97,64.805 +584422,281.9,66.283 +584423,280.89,67.748 +584424,279.96,69.199 +584425,281.73,64.842 +584426,280.6,66.311 +584427,279.55,67.766 +584428,278.57,69.207 +584429,280.49,64.881 +584430,279.31,66.339 +584431,278.22,67.783 +584432,277.19,69.214 +584433,279.25,64.921 +584434,278.02,66.367 +584435,276.88,67.8 +584436,275.81,69.22 +584437,278.01,64.962 +584438,276.73,66.396 +584439,275.54,67.817 +584440,274.42,69.225 +584441,276.77,65.005 +584442,275.44,66.425 +584443,274.2,67.833 +584444,273.04,69.228 +584445,275.52,65.048 +584446,274.15,66.454 +584447,272.87,67.849 +584448,271.66,69.231 +584449,274.28,65.092 +584450,272.86,66.484 +584451,271.53,67.864 +584452,270.28,69.232 +584453,273.03,65.138 +584454,271.57,66.514 +584455,270.19,67.879 +584456,268.9,69.232 +584457,271.79,65.185 +584458,270.27,66.545 +584459,268.86,67.894 +584460,267.53,69.232 +584461,270.54,65.233 +584462,268.98,66.576 +584463,267.52,67.908 +584464,266.15,69.23 +584465,269.29,65.282 +584466,267.69,66.607 +584467,266.18,67.922 +584468,264.77,69.227 +584469,268.04,65.332 +584470,266.39,66.638 +584471,264.85,67.936 +584472,263.4,69.223 +584473,266.78,65.383 +584474,265.1,66.67 +584475,263.52,67.949 +584476,262.03,69.217 +584477,265.53,65.435 +584478,263.8,66.703 +584479,262.18,67.962 +584480,260.65,69.211 +584481,264.28,65.488 +584482,262.51,66.735 +584483,260.85,67.974 +584484,259.28,69.204 +584485,263.02,65.542 +584486,261.21,66.768 +584487,259.51,67.987 +584488,257.91,69.196 +584489,261.76,65.597 +584490,259.92,66.801 +584491,258.18,67.999 +584492,256.55,69.187 +584493,260.5,65.653 +584494,258.62,66.835 +584495,256.85,68.01 +584496,255.18,69.177 +584497,259.24,65.71 +584498,257.32,66.869 +584499,255.52,68.021 +584500,253.81,69.166 +584501,257.98,65.767 +584502,256.02,66.903 +584503,254.18,68.032 +584504,252.45,69.154 +584505,256.72,65.826 +584506,254.73,66.937 +584507,252.85,68.043 +584508,251.08,69.141 +584509,255.45,65.886 +584510,253.43,66.972 +584511,251.52,68.053 +584512,249.72,69.128 +584513,254.19,65.946 +584514,252.13,67.007 +584515,250.19,68.063 +584516,248.36,69.113 +584517,252.92,66.007 +584518,250.83,67.042 +584519,248.86,68.073 +584520,247,69.098 +584521,251.65,66.07 +584522,249.53,67.078 +584523,247.53,68.082 +584524,245.64,69.081 +584525,250.38,66.132 +584526,248.23,67.114 +584527,246.2,68.091 +584528,244.29,69.064 +584529,249.1,66.196 +584530,246.93,67.15 +584531,244.87,68.1 +584532,242.93,69.046 +584533,247.83,66.26 +584534,245.62,67.186 +584535,243.55,68.109 +584536,241.58,69.028 +584537,246.55,66.325 +584538,244.32,67.222 +584539,242.22,68.117 +584540,240.23,69.008 +584541,245.27,66.391 +584542,243.02,67.259 +584543,240.89,68.125 +584544,238.88,68.988 +584545,243.99,66.458 +584546,241.71,67.296 +584547,239.57,68.133 +584548,237.53,68.968 +584549,242.71,66.525 +584550,240.41,67.333 +584551,238.24,68.141 +584552,236.18,68.946 +584553,241.43,66.593 +584554,239.11,67.371 +584555,236.91,68.148 +584556,234.84,68.924 +584557,240.14,66.661 +584558,237.8,67.408 +584559,235.59,68.156 +584560,233.49,68.901 +584561,238.85,66.73 +584562,236.49,67.446 +584563,234.26,68.163 +584564,232.15,68.878 +584565,237.56,66.799 +584566,235.19,67.484 +584567,232.94,68.169 +584568,230.81,68.854 +584569,236.27,66.869 +584570,233.88,67.522 +584571,231.62,68.176 +584572,229.47,68.83 +584573,234.98,66.939 +584574,232.57,67.56 +584575,230.29,68.183 +584576,228.13,68.805 +584577,233.69,67.01 +584578,231.26,67.599 +584579,228.97,68.189 +584580,226.79,68.779 +584581,232.39,67.082 +584582,229.96,67.637 +584583,227.65,68.195 +584584,225.46,68.753 +584585,231.09,67.153 +584586,228.65,67.676 +584587,226.33,68.201 +584588,224.13,68.727 +584589,229.79,67.226 +584590,227.34,67.715 +584591,225.01,68.207 +584592,222.8,68.7 +584593,228.49,67.298 +584594,226.02,67.754 +584595,223.69,68.212 +584596,221.47,68.672 +584597,227.18,67.371 +584598,224.71,67.793 +584599,222.37,68.218 +584600,220.14,68.645 +584601,225.88,67.444 +584602,223.4,67.832 +584603,221.05,68.223 +584604,218.81,68.617 +584605,224.57,67.517 +584606,222.09,67.871 +584607,219.73,68.229 +584608,217.49,68.588 +584609,223.26,67.591 +584610,220.77,67.911 +584611,218.42,68.234 +584612,216.16,68.56 +584613,221.95,67.665 +584614,219.46,67.95 +584615,217.1,68.239 +584616,214.84,68.531 +584617,220.63,67.739 +584618,218.15,67.99 +584619,215.78,68.244 +584620,213.52,68.502 +584621,219.32,67.813 +584622,216.83,68.029 +584623,214.47,68.249 +584624,212.21,68.472 +584625,218,67.887 +584626,215.52,68.069 +584627,213.15,68.254 +584628,210.89,68.443 +584629,216.68,67.962 +584630,214.2,68.108 +584631,211.84,68.259 +584632,209.58,68.413 +584633,215.36,68.036 +584634,212.88,68.148 +584635,210.52,68.264 +584636,208.26,68.383 +584637,214.04,68.111 +584638,211.56,68.188 +584639,209.21,68.269 +584640,206.95,68.353 +584641,212.71,68.186 +584642,210.25,68.227 +584643,207.9,68.273 +584644,205.64,68.323 +584645,211.38,68.26 +584646,208.93,68.267 +584647,206.58,68.278 +584648,204.34,68.293 +584649,210.05,68.335 +584650,207.61,68.307 +584651,205.27,68.283 +584652,203.03,68.263 +584653,208.72,68.409 +584654,206.29,68.346 +584655,203.96,68.288 +584656,201.73,68.233 +584657,207.39,68.484 +584658,204.97,68.386 +584659,202.65,68.292 +584660,200.42,68.203 +584661,206.06,68.558 +584662,203.64,68.425 +584663,201.34,68.297 +584664,199.12,68.173 +584665,204.72,68.632 +584666,202.32,68.465 +584667,200.03,68.302 +584668,197.83,68.143 +584669,203.38,68.706 +584670,201,68.504 +584671,198.72,68.307 +584672,196.53,68.113 +584673,202.04,68.78 +584674,199.68,68.544 +584675,197.41,68.312 +584676,195.23,68.084 +584677,200.7,68.853 +584678,198.35,68.583 +584679,196.1,68.317 +584680,193.94,68.054 +584681,199.36,68.926 +584682,197.03,68.622 +584683,194.8,68.322 +584684,192.65,68.025 +584685,198.01,68.999 +584686,195.7,68.661 +584687,193.49,68.327 +584688,191.36,67.996 +584689,196.66,69.072 +584690,194.38,68.7 +584691,192.18,68.332 +584692,190.07,67.967 +584693,195.32,69.144 +584694,193.05,68.739 +584695,190.88,68.337 +584696,188.78,67.939 +584697,193.97,69.216 +584698,191.73,68.778 +584699,189.57,68.343 +584700,187.49,67.911 +584701,192.61,69.288 +584702,190.4,68.817 +584703,188.27,68.348 +584704,186.21,67.883 +584705,191.26,69.359 +584706,189.07,68.855 +584707,186.96,68.354 +584708,184.93,67.856 +584709,189.9,69.43 +584710,187.74,68.893 +584711,185.66,68.36 +584712,183.65,67.829 +584713,188.55,69.5 +584714,186.41,68.932 +584715,184.36,68.365 +584716,182.37,67.802 +584717,187.19,69.57 +584718,185.08,68.97 +584719,183.05,68.371 +584720,181.09,67.776 +584721,185.83,69.639 +584722,183.75,69.008 +584723,181.75,68.378 +584724,179.81,67.75 +584725,184.47,69.708 +584726,182.42,69.045 +584727,180.45,68.384 +584728,178.54,67.725 +584729,183.11,69.776 +584730,181.09,69.083 +584731,179.15,68.391 +584732,177.26,67.7 +584733,181.74,69.843 +584734,179.76,69.12 +584735,177.85,68.397 +584736,175.99,67.676 +584737,180.38,69.91 +584738,178.43,69.157 +584739,176.55,68.404 +584740,174.72,67.653 +584741,179.01,69.976 +584742,177.1,69.194 +584743,175.25,68.411 +584744,173.45,67.63 +584745,177.64,70.042 +584746,175.76,69.231 +584747,173.95,68.419 +584748,172.19,67.608 +584749,176.27,70.107 +584750,174.43,69.267 +584751,172.65,68.426 +584752,170.92,67.586 +584753,174.9,70.171 +584754,173.1,69.303 +584755,171.35,68.434 +584756,169.65,67.565 +584757,173.53,70.235 +584758,171.76,69.339 +584759,170.05,68.442 +584760,168.39,67.545 +584761,172.15,70.297 +584762,170.43,69.375 +584763,168.75,68.45 +584764,167.13,67.525 +584765,170.78,70.359 +584766,169.09,69.41 +584767,167.46,68.459 +584768,165.87,67.507 +584769,169.4,70.421 +584770,167.76,69.445 +584771,166.16,68.468 +584772,164.61,67.489 +584773,168.02,70.481 +584774,166.42,69.48 +584775,164.86,68.477 +584776,163.35,67.471 +584777,166.65,70.54 +584778,165.08,69.515 +584779,163.57,68.486 +584780,162.09,67.455 +584781,165.27,70.599 +584782,163.75,69.549 +584783,162.27,68.496 +584784,160.84,67.439 +584785,163.89,70.657 +584786,162.41,69.583 +584787,160.98,68.505 +584788,159.58,67.425 +584789,162.51,70.714 +584790,161.07,69.617 +584791,159.68,68.516 +584792,158.33,67.411 +584793,161.12,70.77 +584794,159.73,69.65 +584795,158.39,68.526 +584796,157.08,67.398 +584797,159.74,70.825 +584798,158.4,69.683 +584799,157.09,68.537 +584800,155.82,67.386 +584801,158.36,70.879 +584802,157.06,69.716 +584803,155.8,68.548 +584804,154.57,67.375 +584805,156.97,70.932 +584806,155.72,69.749 +584807,154.51,68.559 +584808,153.32,67.365 +584809,155.58,70.985 +584810,154.38,69.781 +584811,153.21,68.571 +584812,152.08,67.356 +584813,154.2,71.036 +584814,153.04,69.813 +584815,151.92,68.583 +584816,150.83,67.348 +584817,152.81,71.086 +584818,151.7,69.844 +584819,150.63,68.595 +584820,149.58,67.34 +584821,151.42,71.135 +584822,150.36,69.875 +584823,149.33,68.608 +584824,148.33,67.334 +584825,150.03,71.184 +584826,149.02,69.906 +584827,148.04,68.621 +584828,147.09,67.329 +584829,148.64,71.231 +584830,147.68,69.936 +584831,146.75,68.634 +584832,145.85,67.325 +584833,147.25,71.277 +584834,146.34,69.967 +584835,145.46,68.648 +584836,144.6,67.322 +584837,145.86,71.322 +584838,145,69.996 +584839,144.16,68.662 +584840,143.36,67.32 +584841,144.47,71.366 +584842,143.66,70.026 +584843,142.87,68.676 +584844,142.12,67.319 +584845,143.08,71.409 +584846,142.32,70.055 +584847,141.58,68.691 +584848,140.87,67.32 +584849,141.69,71.451 +584850,140.97,70.083 +584851,140.29,68.706 +584852,139.63,67.321 +584853,140.3,71.491 +584854,139.63,70.111 +584855,139,68.722 +584856,138.39,67.324 +584857,138.9,71.531 +584858,138.29,70.139 +584859,137.71,68.738 +584860,137.15,67.327 +584861,137.51,71.569 +584862,136.95,70.167 +584863,136.42,68.754 +584864,135.91,67.332 +584865,136.12,71.607 +584866,135.61,70.194 +584867,135.13,68.77 +584868,134.68,67.338 +584869,134.72,71.643 +584870,134.26,70.22 +584871,133.84,68.787 +584872,133.44,67.345 +584873,133.33,71.678 +584874,132.92,70.247 +584875,132.55,68.805 +584876,132.2,67.354 +584877,131.93,71.712 +584878,131.58,70.273 +584879,131.26,68.823 +584880,130.96,67.363 +584881,130.54,71.744 +584882,130.24,70.298 +584883,129.96,68.841 +584884,129.72,67.374 +584885,129.15,71.776 +584886,128.9,70.323 +584887,128.67,68.859 +584888,128.49,67.386 +584889,127.75,71.806 +584890,127.55,70.348 +584891,127.38,68.878 +584892,127.25,67.399 +584893,126.36,71.835 +584894,126.21,70.372 +584895,126.09,68.898 +584896,126.01,67.413 +584897,124.96,71.863 +584898,124.87,70.396 +584899,124.8,68.918 +584900,124.77,67.429 +584901,123.57,71.89 +584902,123.52,70.42 +584903,123.51,68.938 +584904,123.54,67.446 +584905,122.17,71.916 +584906,122.18,70.443 +584907,122.22,68.958 +584908,122.3,67.464 +584909,120.78,71.94 +584910,120.84,70.465 +584911,120.93,68.979 +584912,121.06,67.483 +584913,119.39,71.964 +584914,119.5,70.488 +584915,119.64,69.001 +584916,119.83,67.503 +584917,117.99,71.986 +584918,118.15,70.51 +584919,118.35,69.022 +584920,118.59,67.525 +584921,116.6,72.006 +584922,116.81,70.531 +584923,117.06,69.045 +584924,117.35,67.548 +584925,115.21,72.026 +584926,115.47,70.552 +584927,115.77,69.067 +584928,116.12,67.572 +584929,113.81,72.045 +584930,114.13,70.573 +584931,114.48,69.09 +584932,114.88,67.597 +584933,112.42,72.062 +584934,112.78,70.593 +584935,113.19,69.113 +584936,113.64,67.624 +584937,111.03,72.078 +584938,111.44,70.613 +584939,111.9,69.137 +584940,112.4,67.652 +584941,109.64,72.093 +584942,110.1,70.633 +584943,110.61,69.161 +584944,111.16,67.68 +584945,108.24,72.107 +584946,108.76,70.652 +584947,109.32,69.186 +584948,109.93,67.711 +584949,106.85,72.119 +584950,107.42,70.67 +584951,108.03,69.211 +584952,108.69,67.742 +584953,105.46,72.131 +584954,106.07,70.689 +584955,106.73,69.236 +584956,107.45,67.775 +584957,104.07,72.141 +584958,104.73,70.707 +584959,105.44,69.262 +584960,106.21,67.808 +584961,102.68,72.15 +584962,103.39,70.724 +584963,104.15,69.288 +584964,104.97,67.843 +584965,101.3,72.158 +584966,102.05,70.741 +584967,102.86,69.315 +584968,103.72,67.879 +584969,99.908,72.165 +584970,100.71,70.758 +584971,101.57,69.341 +584972,102.48,67.917 +584973,98.521,72.171 +584974,99.369,70.774 +584975,100.27,69.369 +584976,101.24,67.955 +584977,97.134,72.176 +584978,98.029,70.79 +584979,98.981,69.396 +584980,99.996,67.995 +584981,95.748,72.179 +584982,96.688,70.806 +584983,97.688,69.424 +584984,98.752,68.035 +584985,94.363,72.181 +584986,95.348,70.821 +584987,96.394,69.453 +584988,97.507,68.077 +584989,92.979,72.183 +584990,94.009,70.836 +584991,95.101,69.481 +584992,96.261,68.12 +584993,91.596,72.183 +584994,92.669,70.851 +584995,93.807,69.511 +584996,95.014,68.164 +584997,90.213,72.182 +584998,91.33,70.865 +584999,92.512,69.54 +585000,93.766,68.21 +585001,88.832,72.18 +585002,89.991,70.879 +585003,91.218,69.57 +585004,92.518,68.256 +585005,87.451,72.177 +585006,88.653,70.892 +585007,89.923,69.6 +585008,91.268,68.303 +585009,86.071,72.173 +585010,87.314,70.905 +585011,88.628,69.631 +585012,90.018,68.352 +585013,84.693,72.168 +585014,85.976,70.918 +585015,87.332,69.661 +585016,88.766,68.401 +585017,83.315,72.162 +585018,84.639,70.93 +585019,86.036,69.693 +585020,87.513,68.451 +585021,81.939,72.155 +585022,83.302,70.942 +585023,84.739,69.724 +585024,86.259,68.503 +585025,80.563,72.147 +585026,81.965,70.954 +585027,83.443,69.756 +585028,85.004,68.555 +585029,79.189,72.138 +585030,80.628,70.965 +585031,82.145,69.788 +585032,83.748,68.609 +585033,77.816,72.128 +585034,79.292,70.976 +585035,80.848,69.821 +585036,82.491,68.663 +585037,76.444,72.118 +585038,77.956,70.987 +585039,79.55,69.854 +585040,81.232,68.718 +585041,75.073,72.106 +585042,76.621,70.998 +585043,78.251,69.887 +585044,79.972,68.775 +585045,73.703,72.093 +585046,75.286,71.008 +585047,76.952,69.92 +585048,78.711,68.832 +585049,72.335,72.08 +585050,73.951,71.018 +585051,75.653,69.954 +585052,77.448,68.89 +585053,70.967,72.065 +585054,72.617,71.027 +585055,74.353,69.988 +585056,76.184,68.948 +585057,69.601,72.05 +585058,71.284,71.037 +585059,73.053,70.022 +585060,74.918,69.008 +585061,68.237,72.034 +585062,69.95,71.046 +585063,71.752,70.057 +585064,73.651,69.069 +585065,66.874,72.017 +585066,68.617,71.055 +585067,70.45,70.091 +585068,72.383,69.13 +585069,65.512,72 +585070,67.285,71.063 +585071,69.149,70.126 +585072,71.113,69.192 +585073,64.151,71.982 +585074,65.953,71.071 +585075,67.846,70.162 +585076,69.841,69.255 +585077,62.792,71.962 +585078,64.622,71.079 +585079,66.544,70.197 +585080,68.568,69.318 +585081,61.434,71.943 +585082,63.291,71.087 +585083,65.24,70.233 +585084,67.294,69.382 +585085,60.078,71.922 +585086,61.96,71.095 +585087,63.936,70.269 +585088,66.018,69.447 +585089,58.723,71.901 +585090,60.63,71.102 +585091,62.632,70.305 +585092,64.74,69.513 +585093,57.369,71.879 +585094,59.301,71.109 +585095,61.327,70.342 +585096,63.46,69.579 +585097,56.017,71.857 +585098,57.972,71.116 +585099,60.022,70.378 +585100,62.179,69.646 +585101,54.667,71.834 +585102,56.643,71.123 +585103,58.716,70.415 +585104,60.897,69.713 +585105,53.318,71.81 +585106,55.315,71.129 +585107,57.409,70.452 +585108,59.612,69.781 +585109,51.97,71.786 +585110,53.988,71.135 +585111,56.102,70.489 +585112,58.326,69.849 +585113,50.624,71.761 +585114,52.661,71.142 +585115,54.794,70.527 +585116,57.038,69.918 +585117,49.28,71.736 +585118,51.334,71.148 +585119,53.486,70.564 +585120,55.748,69.988 +585121,47.937,71.711 +585122,50.008,71.153 +585123,52.177,70.602 +585124,54.457,70.058 +585125,46.596,71.684 +585126,48.683,71.159 +585127,50.867,70.64 +585128,53.164,70.128 +585129,45.256,71.658 +585130,47.358,71.165 +585131,49.557,70.678 +585132,51.869,70.199 +585133,43.918,71.631 +585134,46.033,71.17 +585135,48.247,70.716 +585136,50.572,70.27 +585137,42.582,71.604 +585138,44.71,71.175 +585139,46.936,70.754 +585140,49.274,70.341 +585141,41.247,71.576 +585142,43.386,71.18 +585143,45.624,70.792 +585144,47.973,70.413 +585145,39.914,71.548 +585146,42.064,71.185 +585147,44.311,70.83 +585148,46.671,70.485 +585149,38.582,71.52 +585150,40.742,71.19 +585151,42.998,70.869 +585152,45.367,70.557 +585153,37.252,71.491 +585154,39.42,71.195 +585155,41.685,70.908 +585156,44.061,70.629 +585157,35.924,71.462 +585158,38.099,71.2 +585159,40.371,70.946 +585160,42.754,70.702 +585161,34.597,71.433 +585162,36.778,71.205 +585163,39.056,70.985 +585164,41.444,70.775 +585165,33.272,71.404 +585166,35.458,71.209 +585167,37.74,71.024 +585168,40.133,70.848 +585169,31.949,71.374 +585170,34.139,71.214 +585171,36.424,71.062 +585172,38.82,70.921 +585173,30.627,71.345 +585174,32.82,71.219 +585175,35.108,71.101 +585176,37.505,70.994 +585177,29.307,71.315 +585178,31.502,71.223 +585179,33.791,71.14 +585180,36.188,71.068 +585181,27.989,71.286 +585182,30.184,71.228 +585183,32.473,71.179 +585184,34.869,71.141 +585185,26.672,71.256 +585186,28.867,71.232 +585187,31.154,71.218 +585188,33.548,71.214 +585189,25.357,71.226 +585190,27.55,71.237 +585191,29.835,71.257 +585192,32.226,71.288 +585193,24.044,71.196 +585194,26.234,71.241 +585195,28.516,71.296 +585196,30.902,71.361 +585197,22.732,71.166 +585198,24.919,71.246 +585199,27.195,71.335 +585200,29.576,71.434 +585201,21.422,71.136 +585202,23.604,71.25 +585203,25.874,71.373 +585204,28.248,71.507 +585205,20.114,71.107 +585206,22.29,71.255 +585207,24.553,71.412 +585208,26.918,71.58 +585209,18.807,71.077 +585210,20.976,71.259 +585211,23.231,71.451 +585212,25.587,71.653 +585213,17.502,71.048 +585214,19.662,71.264 +585215,21.908,71.49 +585216,24.254,71.726 +585217,16.198,71.019 +585218,18.35,71.269 +585219,20.585,71.528 +585220,22.919,71.798 +585221,14.897,70.989 +585222,17.037,71.273 +585223,19.261,71.567 +585224,21.582,71.871 +585225,13.597,70.961 +585226,15.726,71.278 +585227,17.937,71.605 +585228,20.243,71.943 +585229,12.298,70.932 +585230,14.415,71.283 +585231,16.612,71.644 +585232,18.903,72.014 +585233,11.001,70.904 +585234,13.104,71.288 +585235,15.286,71.682 +585236,17.561,72.086 +585237,9.7058,70.876 +585238,11.794,71.293 +585239,13.96,71.72 +585240,16.217,72.157 +585241,8.412,70.848 +585242,10.485,71.299 +585243,12.634,71.758 +585244,14.872,72.227 +585245,7.1199,70.821 +585246,9.1755,71.304 +585247,11.306,71.796 +585248,13.525,72.298 +585249,5.8293,70.794 +585250,7.867,71.31 +585251,9.9785,71.834 +585252,12.176,72.367 +585253,4.5403,70.767 +585254,6.559,71.315 +585255,8.6501,71.872 +585256,10.825,72.437 +585257,3.2529,70.741 +585258,5.2516,71.321 +585259,7.3212,71.909 +585260,9.4733,72.506 +585261,1.967,70.715 +585262,3.9446,71.327 +585263,5.9917,71.946 +585264,8.1197,72.574 +585265,0.68255,70.69 +585266,2.6382,71.333 +585267,4.6618,71.984 +585268,6.7645,72.642 +585269,359.4,70.666 +585270,1.3322,71.339 +585271,3.3313,72.021 +585272,5.4077,72.709 +585273,358.12,70.641 +585274,0.026693,71.346 +585275,2.0002,72.057 +585276,4.0494,72.776 +585277,356.84,70.618 +585278,358.72,71.352 +585279,0.66868,72.094 +585280,2.6896,72.842 +585281,355.56,70.595 +585282,357.42,71.359 +585283,359.34,72.13 +585284,1.3283,72.908 +585285,354.28,70.573 +585286,356.11,71.366 +585287,358,72.167 +585288,359.97,72.973 +585289,353.01,70.551 +585290,354.81,71.374 +585291,356.67,72.203 +585292,358.6,73.037 +585293,351.73,70.53 +585294,353.51,71.381 +585295,355.34,72.238 +585296,357.24,73.101 +585297,350.46,70.51 +585298,352.2,71.389 +585299,354,72.274 +585300,355.87,73.164 +585301,349.19,70.49 +585302,350.9,71.397 +585303,352.67,72.309 +585304,354.5,73.226 +585305,347.92,70.471 +585306,349.6,71.405 +585307,351.33,72.344 +585308,353.13,73.287 +585309,346.65,70.453 +585310,348.3,71.414 +585311,350,72.379 +585312,351.76,73.348 +585313,345.38,70.435 +585314,347,71.422 +585315,348.66,72.414 +585316,350.39,73.408 +585317,344.12,70.419 +585318,345.7,71.432 +585319,347.33,72.448 +585320,349.01,73.467 +585321,342.85,70.403 +585322,344.4,71.441 +585323,345.99,72.482 +585324,347.64,73.525 +585325,341.59,70.388 +585326,343.1,71.45 +585327,344.65,72.515 +585328,346.26,73.582 +585329,340.32,70.374 +585330,341.8,71.46 +585331,343.32,72.549 +585332,344.89,73.639 +585333,339.06,70.361 +585334,340.5,71.47 +585335,341.98,72.582 +585336,343.51,73.695 +585337,337.8,70.349 +585338,339.2,71.481 +585339,340.64,72.615 +585340,342.13,73.749 +585341,336.54,70.337 +585342,337.9,71.492 +585343,339.3,72.647 +585344,340.75,73.803 +585345,335.28,70.327 +585346,336.6,71.503 +585347,337.96,72.679 +585348,339.37,73.856 +585349,334.03,70.317 +585350,335.3,71.514 +585351,336.62,72.711 +585352,337.99,73.908 +585353,332.77,70.309 +585354,334.01,71.526 +585355,335.28,72.743 +585356,336.6,73.959 +585357,331.51,70.301 +585358,332.71,71.538 +585359,333.94,72.774 +585360,335.22,74.009 +585361,330.26,70.295 +585362,331.41,71.55 +585363,332.6,72.805 +585364,333.83,74.058 +585365,329.01,70.289 +585366,330.12,71.563 +585367,331.26,72.836 +585368,332.45,74.106 +585369,327.75,70.285 +585370,328.82,71.576 +585371,329.92,72.866 +585372,331.06,74.153 +585373,326.5,70.282 +585374,327.52,71.589 +585375,328.58,72.896 +585376,329.68,74.199 +585377,325.25,70.279 +585378,326.23,71.603 +585379,327.24,72.925 +585380,328.29,74.244 +585381,324,70.278 +585382,324.93,71.617 +585383,325.9,72.954 +585384,326.9,74.288 +585385,322.75,70.278 +585386,323.64,71.632 +585387,324.56,72.983 +585388,325.51,74.331 +585389,321.5,70.279 +585390,322.34,71.647 +585391,323.21,73.012 +585392,324.12,74.372 +585393,320.26,70.281 +585394,321.05,71.662 +585395,321.87,73.04 +585396,322.73,74.413 +585397,319.01,70.284 +585398,319.75,71.678 +585399,320.53,73.068 +585400,321.34,74.453 +585401,317.76,70.288 +585402,318.46,71.694 +585403,319.19,73.095 +585404,319.95,74.491 +585405,316.52,70.294 +585406,317.16,71.71 +585407,317.84,73.122 +585408,318.55,74.528 +585409,315.27,70.301 +585410,315.87,71.727 +585411,316.5,73.148 +585412,317.16,74.564 +585413,314.03,70.308 +585414,314.58,71.744 +585415,315.16,73.175 +585416,315.77,74.6 +585417,312.78,70.317 +585418,313.28,71.761 +585419,313.81,73.201 +585420,314.38,74.633 +585421,311.54,70.328 +585422,311.99,71.779 +585423,312.47,73.226 +585424,312.98,74.666 +585425,310.29,70.339 +585426,310.69,71.798 +585427,311.13,73.251 +585428,311.59,74.698 +585429,309.05,70.352 +585430,309.4,71.816 +585431,309.78,73.276 +585432,310.2,74.728 +585433,307.81,70.365 +585434,308.11,71.836 +585435,308.44,73.3 +585436,308.8,74.758 +585437,306.56,70.38 +585438,306.81,71.855 +585439,307.09,73.324 +585440,307.41,74.786 +585441,305.32,70.397 +585442,305.52,71.875 +585443,305.75,73.347 +585444,306.01,74.813 +585445,304.08,70.414 +585446,304.23,71.895 +585447,304.41,73.371 +585448,304.62,74.839 +585449,302.84,70.433 +585450,302.93,71.916 +585451,303.06,73.393 +585452,303.22,74.863 +585453,301.59,70.452 +585454,301.64,71.937 +585455,301.72,73.416 +585456,301.83,74.887 +585457,300.35,70.474 +585458,300.35,71.959 +585459,300.37,73.438 +585460,300.43,74.909 +585461,299.11,70.496 +585462,299.05,71.981 +585463,299.03,73.459 +585464,299.04,74.93 +585465,297.87,70.519 +585466,297.76,72.003 +585467,297.69,73.48 +585468,297.65,74.95 +585469,296.62,70.544 +585470,296.47,72.026 +585471,296.34,73.501 +585472,296.25,74.969 +585473,295.38,70.57 +585474,295.17,72.049 +585475,295,73.521 +585476,294.86,74.986 +585477,294.14,70.597 +585478,293.88,72.072 +585479,293.65,73.541 +585480,293.46,75.003 +585481,292.9,70.626 +585482,292.58,72.096 +585483,292.31,73.561 +585484,292.07,75.018 +585485,291.65,70.655 +585486,291.29,72.121 +585487,290.97,73.58 +585488,290.68,75.032 +585489,290.41,70.686 +585490,290,72.145 +585491,289.62,73.599 +585492,289.28,75.045 +585493,289.17,70.718 +585494,288.7,72.17 +585495,288.28,73.617 +585496,287.89,75.057 +585497,287.92,70.751 +585498,287.41,72.196 +585499,286.93,73.635 +585500,286.5,75.068 +585501,286.68,70.785 +585502,286.11,72.222 +585503,285.59,73.653 +585504,285.11,75.077 +585505,285.44,70.821 +585506,284.82,72.248 +585507,284.25,73.67 +585508,283.72,75.086 +585509,284.19,70.858 +585510,283.52,72.275 +585511,282.9,73.687 +585512,282.33,75.093 +585513,282.94,70.896 +585514,282.23,72.302 +585515,281.56,73.704 +585516,280.94,75.099 +585517,281.7,70.935 +585518,280.94,72.329 +585519,280.22,73.72 +585520,279.55,75.104 +585521,280.45,70.975 +585522,279.64,72.357 +585523,278.88,73.736 +585524,278.16,75.108 +585525,279.21,71.016 +585526,278.34,72.386 +585527,277.53,73.751 +585528,276.77,75.111 +585529,277.96,71.059 +585530,277.05,72.414 +585531,276.19,73.766 +585532,275.38,75.113 +585533,276.71,71.102 +585534,275.75,72.443 +585535,274.85,73.781 +585536,273.99,75.113 +585537,275.46,71.147 +585538,274.46,72.472 +585539,273.51,73.795 +585540,272.61,75.113 +585541,274.21,71.193 +585542,273.16,72.502 +585543,272.16,73.809 +585544,271.22,75.112 +585545,272.96,71.24 +585546,271.86,72.532 +585547,270.82,73.823 +585548,269.84,75.109 +585549,271.71,71.288 +585550,270.57,72.563 +585551,269.48,73.836 +585552,268.45,75.106 +585553,270.46,71.337 +585554,269.27,72.593 +585555,268.14,73.849 +585556,267.07,75.101 +585557,269.2,71.387 +585558,267.97,72.624 +585559,266.8,73.861 +585560,265.69,75.096 +585561,267.95,71.438 +585562,266.67,72.656 +585563,265.46,73.874 +585564,264.31,75.089 +585565,266.69,71.49 +585566,265.38,72.688 +585567,264.12,73.886 +585568,262.92,75.082 +585569,265.44,71.543 +585570,264.08,72.72 +585571,262.78,73.897 +585572,261.55,75.073 +585573,264.18,71.597 +585574,262.78,72.752 +585575,261.44,73.909 +585576,260.17,75.064 +585577,262.92,71.652 +585578,261.48,72.785 +585579,260.1,73.92 +585580,258.79,75.054 +585581,261.66,71.707 +585582,260.18,72.818 +585583,258.76,73.93 +585584,257.41,75.042 +585585,260.4,71.764 +585586,258.88,72.851 +585587,257.43,73.941 +585588,256.04,75.03 +585589,259.14,71.822 +585590,257.58,72.885 +585591,256.09,73.951 +585592,254.66,75.017 +585593,257.88,71.88 +585594,256.28,72.919 +585595,254.75,73.961 +585596,253.29,75.004 +585597,256.61,71.94 +585598,254.98,72.953 +585599,253.41,73.97 +585600,251.92,74.989 +585601,255.35,72 +585602,253.67,72.988 +585603,252.08,73.98 +585604,250.55,74.974 +585605,254.08,72.061 +585606,252.37,73.022 +585607,250.74,73.989 +585608,249.18,74.957 +585609,252.81,72.123 +585610,251.07,73.057 +585611,249.4,73.997 +585612,247.81,74.94 +585613,251.54,72.185 +585614,249.77,73.093 +585615,248.07,74.006 +585616,246.44,74.922 +585617,250.27,72.249 +585618,248.46,73.128 +585619,246.73,74.014 +585620,245.08,74.904 +585621,249,72.313 +585622,247.16,73.164 +585623,245.4,74.022 +585624,243.71,74.885 +585625,247.73,72.378 +585626,245.85,73.2 +585627,244.06,74.03 +585628,242.35,74.865 +585629,246.45,72.443 +585630,244.55,73.236 +585631,242.73,74.038 +585632,240.99,74.844 +585633,245.17,72.509 +585634,243.24,73.273 +585635,241.4,74.045 +585636,239.63,74.823 +585637,243.9,72.576 +585638,241.94,73.31 +585639,240.06,74.052 +585640,238.27,74.801 +585641,242.62,72.643 +585642,240.63,73.346 +585643,238.73,74.059 +585644,236.91,74.778 +585645,241.34,72.711 +585646,239.32,73.384 +585647,237.4,74.066 +585648,235.55,74.755 +585649,240.05,72.779 +585650,238.02,73.421 +585651,236.07,74.072 +585652,234.2,74.732 +585653,238.77,72.848 +585654,236.71,73.458 +585655,234.74,74.079 +585656,232.84,74.708 +585657,237.48,72.918 +585658,235.4,73.496 +585659,233.4,74.085 +585660,231.49,74.683 +585661,236.2,72.988 +585662,234.09,73.534 +585663,232.07,74.091 +585664,230.14,74.658 +585665,234.91,73.058 +585666,232.78,73.572 +585667,230.74,74.097 +585668,228.79,74.632 +585669,233.62,73.129 +585670,231.47,73.61 +585671,229.42,74.103 +585672,227.45,74.606 +585673,232.32,73.2 +585674,230.16,73.648 +585675,228.09,74.109 +585676,226.1,74.579 +585677,231.03,73.272 +585678,228.85,73.686 +585679,226.76,74.114 +585680,224.75,74.553 +585681,229.73,73.344 +585682,227.54,73.725 +585683,225.43,74.12 +585684,223.41,74.525 +585685,228.44,73.416 +585686,226.22,73.763 +585687,224.1,74.125 +585688,222.07,74.498 +585689,227.14,73.488 +585690,224.91,73.802 +585691,222.78,74.13 +585692,220.73,74.47 +585693,225.84,73.561 +585694,223.6,73.841 +585695,221.45,74.135 +585696,219.39,74.442 +585697,224.53,73.634 +585698,222.28,73.88 +585699,220.13,74.14 +585700,218.05,74.413 +585701,223.23,73.707 +585702,220.97,73.919 +585703,218.8,74.145 +585704,216.72,74.385 +585705,221.92,73.78 +585706,219.65,73.958 +585707,217.48,74.15 +585708,215.39,74.356 +585709,220.62,73.854 +585710,218.34,73.997 +585711,216.15,74.155 +585712,214.05,74.327 +585713,219.31,73.928 +585714,217.02,74.036 +585715,214.83,74.16 +585716,212.72,74.298 +585717,217.99,74.001 +585718,215.7,74.075 +585719,213.51,74.165 +585720,211.39,74.268 +585721,216.68,74.075 +585722,214.38,74.114 +585723,212.18,74.17 +585724,210.07,74.239 +585725,215.37,74.149 +585726,213.07,74.154 +585727,210.86,74.174 +585728,208.74,74.209 +585729,214.05,74.223 +585730,211.75,74.193 +585731,209.54,74.179 +585732,207.42,74.18 +585733,212.73,74.296 +585734,210.43,74.232 +585735,208.22,74.184 +585736,206.09,74.15 +585737,211.41,74.37 +585738,209.11,74.271 +585739,206.9,74.189 +585740,204.77,74.121 +585741,210.09,74.444 +585742,207.79,74.31 +585743,205.58,74.194 +585744,203.45,74.091 +585745,208.77,74.517 +585746,206.47,74.349 +585747,204.26,74.198 +585748,202.14,74.062 +585749,207.44,74.591 +585750,205.14,74.389 +585751,202.94,74.203 +585752,200.82,74.033 +585753,206.11,74.664 +585754,203.82,74.428 +585755,201.62,74.208 +585756,199.51,74.004 +585757,204.78,74.737 +585758,202.5,74.467 +585759,200.31,74.213 +585760,198.19,73.975 +585761,203.45,74.81 +585762,201.17,74.506 +585763,198.99,74.218 +585764,196.88,73.946 +585765,202.12,74.882 +585766,199.85,74.545 +585767,197.67,74.223 +585768,195.57,73.917 +585769,200.79,74.955 +585770,198.53,74.583 +585771,196.36,74.229 +585772,194.26,73.889 +585773,199.45,75.027 +585774,197.2,74.622 +585775,195.04,74.234 +585776,192.96,73.861 +585777,198.11,75.098 +585778,195.87,74.661 +585779,193.73,74.239 +585780,191.65,73.833 +585781,196.77,75.17 +585782,194.55,74.699 +585783,192.41,74.245 +585784,190.35,73.805 +585785,195.43,75.241 +585786,193.22,74.738 +585787,191.1,74.25 +585788,189.05,73.778 +585789,194.09,75.311 +585790,191.89,74.776 +585791,189.78,74.256 +585792,187.75,73.751 +585793,192.75,75.381 +585794,190.57,74.814 +585795,188.47,74.262 +585796,186.45,73.725 +585797,191.4,75.451 +585798,189.24,74.852 +585799,187.16,74.268 +585800,185.15,73.699 +585801,190.05,75.52 +585802,187.91,74.89 +585803,185.85,74.274 +585804,183.86,73.673 +585805,188.7,75.589 +585806,186.58,74.927 +585807,184.53,74.281 +585808,182.56,73.648 +585809,187.35,75.657 +585810,185.25,74.965 +585811,183.22,74.287 +585812,181.27,73.624 +585813,186,75.725 +585814,183.92,75.002 +585815,181.91,74.294 +585816,179.98,73.599 +585817,184.65,75.792 +585818,182.59,75.039 +585819,180.6,74.301 +585820,178.69,73.576 +585821,183.29,75.858 +585822,181.25,75.076 +585823,179.29,74.308 +585824,177.4,73.553 +585825,181.93,75.924 +585826,179.92,75.113 +585827,177.99,74.316 +585828,176.11,73.531 +585829,180.58,75.989 +585830,178.59,75.15 +585831,176.68,74.323 +585832,174.83,73.509 +585833,179.22,76.054 +585834,177.26,75.186 +585835,175.37,74.331 +585836,173.55,73.488 +585837,177.85,76.118 +585838,175.92,75.222 +585839,174.06,74.339 +585840,172.26,73.468 +585841,176.49,76.181 +585842,174.59,75.258 +585843,172.75,74.347 +585844,170.98,73.448 +585845,175.13,76.243 +585846,173.25,75.294 +585847,171.45,74.356 +585848,169.7,73.429 +585849,173.76,76.305 +585850,171.92,75.329 +585851,170.14,74.364 +585852,168.42,73.411 +585853,172.39,76.365 +585854,170.58,75.364 +585855,168.83,74.373 +585856,167.15,73.393 +585857,171.03,76.425 +585858,169.24,75.399 +585859,167.53,74.383 +585860,165.87,73.377 +585861,169.66,76.485 +585862,167.91,75.434 +585863,166.22,74.392 +585864,164.6,73.361 +585865,168.28,76.543 +585866,166.57,75.468 +585867,164.92,74.402 +585868,163.32,73.346 +585869,166.91,76.601 +585870,165.23,75.502 +585871,163.62,74.412 +585872,162.05,73.332 +585873,165.54,76.657 +585874,163.9,75.536 +585875,162.31,74.423 +585876,160.78,73.318 +585877,164.16,76.713 +585878,162.56,75.569 +585879,161.01,74.433 +585880,159.51,73.306 +585881,162.79,76.768 +585882,161.22,75.602 +585883,159.7,74.444 +585884,158.24,73.294 +585885,161.41,76.822 +585886,159.88,75.635 +585887,158.4,74.456 +585888,156.97,73.284 +585889,160.03,76.875 +585890,158.54,75.668 +585891,157.1,74.467 +585892,155.71,73.274 +585893,158.65,76.927 +585894,157.2,75.7 +585895,155.8,74.479 +585896,154.44,73.266 +585897,157.27,76.978 +585898,155.86,75.732 +585899,154.5,74.492 +585900,153.18,73.258 +585901,155.89,77.028 +585902,154.52,75.764 +585903,153.19,74.504 +585904,151.91,73.251 +585905,154.51,77.077 +585906,153.18,75.795 +585907,151.89,74.517 +585908,150.65,73.246 +585909,153.13,77.125 +585910,151.84,75.826 +585911,150.59,74.531 +585912,149.39,73.241 +585913,151.74,77.172 +585914,150.49,75.856 +585915,149.29,74.545 +585916,148.13,73.237 +585917,150.36,77.218 +585918,149.15,75.887 +585919,147.99,74.559 +585920,146.87,73.235 +585921,148.97,77.263 +585922,147.81,75.916 +585923,146.69,74.573 +585924,145.61,73.233 +585925,147.59,77.307 +585926,146.47,75.946 +585927,145.39,74.588 +585928,144.35,73.233 +585929,146.2,77.35 +585930,145.12,75.975 +585931,144.09,74.603 +585932,143.1,73.234 +585933,144.81,77.391 +585934,143.78,76.004 +585935,142.79,74.619 +585936,141.84,73.236 +585937,143.42,77.432 +585938,142.44,76.032 +585939,141.49,74.634 +585940,140.59,73.239 +585941,142.03,77.471 +585942,141.09,76.061 +585943,140.19,74.651 +585944,139.33,73.243 +585945,140.64,77.51 +585946,139.75,76.088 +585947,138.9,74.667 +585948,138.08,73.248 +585949,139.25,77.547 +585950,138.41,76.116 +585951,137.6,74.685 +585952,136.82,73.255 +585953,137.86,77.583 +585954,137.06,76.143 +585955,136.3,74.702 +585956,135.57,73.262 +585957,136.47,77.618 +585958,135.72,76.169 +585959,135,74.72 +585960,134.32,73.271 +585961,135.08,77.652 +585962,134.37,76.195 +585963,133.7,74.738 +585964,133.07,73.281 +585965,133.69,77.685 +585966,133.03,76.221 +585967,132.41,74.757 +585968,131.82,73.292 +585969,132.29,77.716 +585970,131.68,76.247 +585971,131.11,74.776 +585972,130.56,73.305 +585973,130.9,77.747 +585974,130.34,76.272 +585975,129.81,74.795 +585976,129.31,73.318 +585977,129.51,77.776 +585978,128.99,76.296 +585979,128.51,74.815 +585980,128.06,73.333 +585981,128.11,77.804 +585982,127.65,76.321 +585983,127.21,74.835 +585984,126.81,73.349 +585985,126.72,77.831 +585986,126.3,76.345 +585987,125.92,74.856 +585988,125.57,73.366 +585989,125.33,77.856 +585990,124.96,76.368 +585991,124.62,74.877 +585992,124.32,73.385 +585993,123.93,77.881 +585994,123.61,76.391 +585995,123.32,74.899 +585996,123.07,73.405 +585997,122.54,77.904 +585998,122.27,76.414 +585999,122.03,74.921 +586000,121.82,73.426 +586001,121.14,77.926 +586002,120.92,76.436 +586003,120.73,74.943 +586004,120.57,73.448 +586005,119.75,77.947 +586006,119.57,76.458 +586007,119.43,74.966 +586008,119.32,73.471 +586009,118.35,77.967 +586010,118.23,76.48 +586011,118.13,74.989 +586012,118.07,73.496 +586013,116.96,77.986 +586014,116.88,76.501 +586015,116.84,75.012 +586016,116.83,73.522 +586017,115.56,78.003 +586018,115.54,76.522 +586019,115.54,75.036 +586020,115.58,73.549 +586021,114.17,78.02 +586022,114.19,76.542 +586023,114.24,75.061 +586024,114.33,73.577 +586025,112.77,78.035 +586026,112.84,76.562 +586027,112.95,75.085 +586028,113.08,73.607 +586029,111.38,78.049 +586030,111.5,76.582 +586031,111.65,75.111 +586032,111.83,73.637 +586033,109.99,78.062 +586034,110.15,76.601 +586035,110.35,75.136 +586036,110.58,73.669 +586037,108.59,78.073 +586038,108.81,76.62 +586039,109.05,75.162 +586040,109.34,73.702 +586041,107.2,78.084 +586042,107.46,76.638 +586043,107.76,75.188 +586044,108.09,73.737 +586045,105.8,78.093 +586046,106.11,76.656 +586047,106.46,75.215 +586048,106.84,73.773 +586049,104.41,78.102 +586050,104.77,76.674 +586051,105.16,75.242 +586052,105.59,73.809 +586053,103.02,78.109 +586054,103.42,76.691 +586055,103.86,75.27 +586056,104.34,73.847 +586057,101.63,78.115 +586058,102.08,76.708 +586059,102.57,75.298 +586060,103.09,73.886 +586061,100.23,78.12 +586062,100.73,76.725 +586063,101.27,75.326 +586064,101.84,73.927 +586065,98.843,78.123 +586066,99.388,76.741 +586067,99.969,75.355 +586068,100.59,73.968 +586069,97.452,78.126 +586070,98.043,76.757 +586071,98.67,75.384 +586072,99.337,74.011 +586073,96.062,78.128 +586074,96.698,76.772 +586075,97.372,75.414 +586076,98.085,74.055 +586077,94.672,78.128 +586078,95.353,76.787 +586079,96.073,75.444 +586080,96.833,74.1 +586081,93.283,78.128 +586082,94.008,76.802 +586083,94.774,75.474 +586084,95.58,74.146 +586085,91.894,78.126 +586086,92.664,76.816 +586087,93.474,75.504 +586088,94.327,74.193 +586089,90.506,78.124 +586090,91.32,76.83 +586091,92.175,75.535 +586092,93.072,74.241 +586093,89.119,78.12 +586094,89.976,76.844 +586095,90.875,75.567 +586096,91.818,74.29 +586097,87.732,78.115 +586098,88.632,76.857 +586099,89.575,75.599 +586100,90.562,74.341 +586101,86.347,78.11 +586102,87.289,76.87 +586103,88.275,75.631 +586104,89.306,74.392 +586105,84.962,78.103 +586106,85.946,76.883 +586107,86.974,75.663 +586108,88.049,74.445 +586109,83.578,78.095 +586110,84.603,76.895 +586111,85.673,75.696 +586112,86.791,74.498 +586113,82.194,78.087 +586114,83.26,76.908 +586115,84.372,75.729 +586116,85.532,74.553 +586117,80.812,78.077 +586118,81.918,76.919 +586119,83.07,75.762 +586120,84.272,74.608 +586121,79.431,78.067 +586122,80.576,76.931 +586123,81.768,75.796 +586124,83.012,74.664 +586125,78.05,78.056 +586126,79.234,76.942 +586127,80.466,75.83 +586128,81.75,74.722 +586129,76.67,78.044 +586130,77.892,76.953 +586131,79.164,75.864 +586132,80.488,74.78 +586133,75.292,78.03 +586134,76.551,76.963 +586135,77.861,75.899 +586136,79.224,74.839 +586137,73.914,78.017 +586138,75.21,76.974 +586139,76.557,75.934 +586140,77.959,74.899 +586141,72.538,78.002 +586142,73.869,76.984 +586143,75.254,75.969 +586144,76.694,74.96 +586145,71.162,77.986 +586146,72.529,76.993 +586147,73.95,76.005 +586148,75.427,75.022 +586149,69.788,77.97 +586150,71.189,77.003 +586151,72.645,76.04 +586152,74.159,75.085 +586153,68.415,77.953 +586154,69.85,77.012 +586155,71.34,76.076 +586156,72.89,75.148 +586157,67.042,77.935 +586158,68.511,77.021 +586159,70.035,76.113 +586160,71.62,75.212 +586161,65.671,77.916 +586162,67.172,77.03 +586163,68.729,76.149 +586164,70.348,75.277 +586165,64.302,77.897 +586166,65.833,77.038 +586167,67.423,76.186 +586168,69.075,75.343 +586169,62.933,77.877 +586170,64.495,77.047 +586171,66.117,76.223 +586172,67.801,75.409 +586173,61.566,77.856 +586174,63.158,77.055 +586175,64.81,76.26 +586176,66.526,75.476 +586177,60.2,77.835 +586178,61.821,77.062 +586179,63.502,76.298 +586180,65.249,75.544 +586181,58.835,77.813 +586182,60.484,77.07 +586183,62.194,76.336 +586184,63.971,75.612 +586185,57.471,77.791 +586186,59.147,77.078 +586187,60.886,76.374 +586188,62.692,75.681 +586189,56.109,77.767 +586190,57.811,77.085 +586191,59.577,76.412 +586192,61.411,75.751 +586193,54.748,77.744 +586194,56.476,77.092 +586195,58.268,76.45 +586196,60.129,75.821 +586197,53.388,77.72 +586198,55.141,77.099 +586199,56.958,76.489 +586200,58.846,75.892 +586201,52.03,77.695 +586202,53.806,77.106 +586203,55.648,76.527 +586204,57.561,75.963 +586205,50.673,77.67 +586206,52.472,77.112 +586207,54.337,76.566 +586208,56.274,76.034 +586209,49.318,77.644 +586210,51.138,77.119 +586211,53.026,76.605 +586212,54.986,76.106 +586213,47.964,77.618 +586214,49.805,77.125 +586215,51.714,76.644 +586216,53.696,76.179 +586217,46.611,77.592 +586218,48.472,77.131 +586219,50.401,76.684 +586220,52.405,76.252 +586221,45.26,77.565 +586222,47.14,77.137 +586223,49.088,76.723 +586224,51.113,76.325 +586225,43.91,77.537 +586226,45.808,77.143 +586227,47.775,76.763 +586228,49.819,76.399 +586229,42.562,77.51 +586230,44.476,77.149 +586231,46.461,76.802 +586232,48.523,76.473 +586233,41.215,77.482 +586234,43.146,77.155 +586235,45.147,76.842 +586236,47.225,76.547 +586237,39.87,77.454 +586238,41.815,77.161 +586239,43.832,76.882 +586240,45.927,76.622 +586241,38.526,77.426 +586242,40.485,77.166 +586243,42.516,76.922 +586244,44.626,76.696 +586245,37.183,77.397 +586246,39.156,77.172 +586247,41.2,76.962 +586248,43.324,76.771 +586249,35.842,77.368 +586250,37.827,77.177 +586251,39.883,77.002 +586252,42.02,76.846 +586253,34.503,77.339 +586254,36.498,77.183 +586255,38.566,77.042 +586256,40.714,76.922 +586257,33.165,77.31 +586258,35.17,77.188 +586259,37.248,77.083 +586260,39.407,76.997 +586261,31.829,77.281 +586262,33.843,77.193 +586263,35.93,77.123 +586264,38.098,77.072 +586265,30.494,77.252 +586266,32.516,77.199 +586267,34.611,77.163 +586268,36.788,77.148 +586269,29.161,77.222 +586270,31.189,77.204 +586271,33.291,77.204 +586272,35.476,77.224 +586273,27.829,77.193 +586274,29.864,77.209 +586275,31.971,77.244 +586276,34.162,77.299 +586277,26.499,77.164 +586278,28.538,77.215 +586279,30.651,77.284 +586280,32.846,77.375 +586281,25.17,77.134 +586282,27.213,77.22 +586283,29.329,77.324 +586284,31.529,77.45 +586285,23.843,77.105 +586286,25.889,77.225 +586287,28.008,77.365 +586288,30.21,77.526 +586289,22.518,77.076 +586290,24.565,77.231 +586291,26.685,77.405 +586292,28.89,77.601 +586293,21.194,77.047 +586294,23.241,77.236 +586295,25.362,77.445 +586296,27.567,77.676 +586297,19.871,77.018 +586298,21.919,77.242 +586299,24.039,77.485 +586300,26.243,77.751 +586301,18.551,76.989 +586302,20.596,77.247 +586303,22.715,77.526 +586304,24.918,77.826 +586305,17.231,76.96 +586306,19.274,77.253 +586307,21.39,77.566 +586308,23.59,77.901 +586309,15.913,76.932 +586310,17.953,77.259 +586311,20.065,77.606 +586312,22.261,77.975 +586313,14.597,76.904 +586314,16.632,77.265 +586315,18.739,77.646 +586316,20.93,78.049 +586317,13.282,76.876 +586318,15.312,77.271 +586319,17.413,77.685 +586320,19.598,78.123 +586321,11.969,76.848 +586322,13.992,77.277 +586323,16.086,77.725 +586324,18.264,78.196 +586325,10.658,76.821 +586326,12.673,77.283 +586327,14.759,77.765 +586328,16.928,78.269 +586329,9.3476,76.794 +586330,11.354,77.289 +586331,13.431,77.804 +586332,15.591,78.342 +586333,8.039,76.768 +586334,10.035,77.295 +586335,12.102,77.844 +586336,14.251,78.414 +586337,6.7319,76.741 +586338,8.7174,77.302 +586339,10.773,77.883 +586340,12.911,78.486 +586341,5.4263,76.716 +586342,7.4001,77.309 +586343,9.4437,77.922 +586344,11.568,78.557 +586345,4.1221,76.691 +586346,6.0832,77.316 +586347,8.1135,77.961 +586348,10.224,78.628 +586349,2.8195,76.666 +586350,4.7668,77.323 +586351,6.7828,78 +586352,8.8787,78.698 +586353,1.5183,76.642 +586354,3.4508,77.33 +586355,5.4515,78.038 +586356,7.5315,78.768 +586357,0.21862,76.618 +586358,2.1354,77.337 +586359,4.1197,78.077 +586360,6.1827,78.837 +586361,358.92,76.595 +586362,0.82041,77.345 +586363,2.7874,78.115 +586364,4.8324,78.906 +586365,357.62,76.572 +586366,359.51,77.353 +586367,1.4545,78.153 +586368,3.4805,78.974 +586369,356.33,76.55 +586370,358.19,77.361 +586371,0.12118,78.191 +586372,2.1271,79.042 +586373,355.03,76.529 +586374,356.88,77.369 +586375,358.79,78.228 +586376,0.77216,79.108 +586377,353.74,76.508 +586378,355.57,77.378 +586379,357.45,78.266 +586380,359.42,79.174 +586381,352.45,76.488 +586382,354.25,77.386 +586383,356.12,78.303 +586384,358.06,79.24 +586385,351.16,76.469 +586386,352.94,77.395 +586387,354.78,78.34 +586388,356.7,79.304 +586389,349.87,76.45 +586390,351.63,77.404 +586391,353.45,78.376 +586392,355.34,79.368 +586393,348.58,76.433 +586394,350.32,77.414 +586395,352.11,78.413 +586396,353.98,79.431 +586397,347.3,76.416 +586398,349.01,77.424 +586399,350.77,78.449 +586400,352.61,79.493 +586401,346.01,76.4 +586402,347.7,77.434 +586403,349.44,78.485 +586404,351.25,79.555 +586405,344.73,76.384 +586406,346.39,77.444 +586407,348.1,78.521 +586408,349.88,79.615 +586409,343.45,76.37 +586410,345.08,77.455 +586411,346.76,78.556 +586412,348.51,79.675 +586413,342.17,76.356 +586414,343.77,77.465 +586415,345.42,78.591 +586416,347.14,79.734 +586417,340.89,76.343 +586418,342.46,77.477 +586419,344.08,78.626 +586420,345.77,79.792 +586421,339.61,76.331 +586422,341.15,77.488 +586423,342.74,78.66 +586424,344.4,79.849 +586425,338.33,76.32 +586426,339.84,77.5 +586427,341.4,78.695 +586428,343.03,79.905 +586429,337.06,76.31 +586430,338.53,77.512 +586431,340.06,78.728 +586432,341.66,79.96 +586433,335.78,76.301 +586434,337.22,77.525 +586435,338.72,78.762 +586436,340.28,80.0146 +586437,334.51,76.293 +586438,335.92,77.537 +586439,337.38,78.795 +586440,338.9,80.0678 +586441,333.23,76.286 +586442,334.61,77.55 +586443,336.04,78.828 +586444,337.53,80.1201 +586445,331.96,76.28 +586446,333.3,77.564 +586447,334.7,78.861 +586448,336.15,80.1713 +586449,330.69,76.275 +586450,332,77.578 +586451,333.35,78.893 +586452,334.77,80.2215 +586453,329.42,76.271 +586454,330.69,77.592 +586455,332.01,78.925 +586456,333.39,80.2706 +586457,328.15,76.268 +586458,329.39,77.606 +586459,330.67,78.957 +586460,332.01,80.3187 +586461,326.88,76.266 +586462,328.08,77.621 +586463,329.33,78.988 +586464,330.62,80.3658 +586465,325.62,76.266 +586466,326.78,77.637 +586467,327.98,79.019 +586468,329.24,80.4117 +586469,324.35,76.266 +586470,325.47,77.652 +586471,326.64,79.049 +586472,327.86,80.4566 +586473,323.08,76.267 +586474,324.17,77.668 +586475,325.29,79.079 +586476,326.47,80.5004 +586477,321.82,76.27 +586478,322.86,77.685 +586479,323.95,79.109 +586480,325.09,80.543 +586481,320.56,76.274 +586482,321.56,77.702 +586483,322.6,79.138 +586484,323.7,80.5845 +586485,319.29,76.279 +586486,320.25,77.719 +586487,321.26,79.167 +586488,322.31,80.6249 +586489,318.03,76.285 +586490,318.95,77.736 +586491,319.91,79.196 +586492,320.92,80.6642 +586493,316.77,76.292 +586494,317.65,77.754 +586495,318.57,79.224 +586496,319.53,80.7023 +586497,315.51,76.301 +586498,316.34,77.773 +586499,317.22,79.252 +586500,318.14,80.7392 +586501,314.25,76.31 +586502,315.04,77.791 +586503,315.88,79.28 +586504,316.75,80.775 +586505,312.99,76.321 +586506,313.74,77.811 +586507,314.53,79.307 +586508,315.36,80.8096 +586509,311.73,76.333 +586510,312.44,77.83 +586511,313.18,79.334 +586512,313.97,80.843 +586513,310.47,76.346 +586514,311.13,77.85 +586515,311.84,79.36 +586516,312.58,80.8753 +586517,309.21,76.361 +586518,309.83,77.871 +586519,310.49,79.386 +586520,311.19,80.9063 +586521,307.95,76.377 +586522,308.53,77.891 +586523,309.14,79.411 +586524,309.79,80.9362 +586525,306.69,76.394 +586526,307.23,77.913 +586527,307.79,79.437 +586528,308.4,80.9649 +586529,305.44,76.412 +586530,305.92,77.934 +586531,306.45,79.461 +586532,307.01,80.9924 +586533,304.18,76.431 +586534,304.62,77.956 +586535,305.1,79.486 +586536,305.61,81.0186 +586537,302.92,76.452 +586538,303.32,77.979 +586539,303.75,79.51 +586540,304.22,81.0437 +586541,301.67,76.474 +586542,302.02,78.002 +586543,302.4,79.533 +586544,302.82,81.0676 +586545,300.41,76.497 +586546,300.72,78.025 +586547,301.06,79.556 +586548,301.43,81.0902 +586549,299.16,76.522 +586550,299.42,78.049 +586551,299.71,79.579 +586552,300.03,81.1117 +586553,297.9,76.547 +586554,298.11,78.073 +586555,298.36,79.601 +586556,298.64,81.132 +586557,296.65,76.574 +586558,296.81,78.097 +586559,297.01,79.623 +586560,297.24,81.1511 +586561,295.39,76.603 +586562,295.51,78.122 +586563,295.66,79.645 +586564,295.85,81.1689 +586565,294.14,76.632 +586566,294.21,78.148 +586567,294.31,79.666 +586568,294.45,81.1856 +586569,292.88,76.663 +586570,292.91,78.174 +586571,292.97,79.687 +586572,293.06,81.2011 +586573,291.63,76.695 +586574,291.61,78.2 +586575,291.62,79.707 +586576,291.66,81.2154 +586577,290.37,76.728 +586578,290.3,78.226 +586579,290.27,79.727 +586580,290.27,81.2285 +586581,289.12,76.762 +586582,289,78.253 +586583,288.92,79.747 +586584,288.87,81.2404 +586585,287.86,76.798 +586586,287.7,78.281 +586587,287.57,79.766 +586588,287.48,81.2512 +586589,286.61,76.835 +586590,286.4,78.309 +586591,286.22,79.785 +586592,286.08,81.2608 +586593,285.35,76.873 +586594,285.1,78.337 +586595,284.88,79.803 +586596,284.69,81.2693 +586597,284.09,76.912 +586598,283.8,78.366 +586599,283.53,79.821 +586600,283.29,81.2766 +586601,282.84,76.953 +586602,282.49,78.395 +586603,282.18,79.839 +586604,281.9,81.2827 +586605,281.58,76.995 +586606,281.19,78.424 +586607,280.83,79.856 +586608,280.5,81.2877 +586609,280.33,77.038 +586610,279.89,78.454 +586611,279.48,79.873 +586612,279.11,81.2916 +586613,279.07,77.082 +586614,278.59,78.484 +586615,278.14,79.889 +586616,277.72,81.2944 +586617,277.81,77.127 +586618,277.28,78.515 +586619,276.79,79.905 +586620,276.32,81.2961 +586621,276.55,77.173 +586622,275.98,78.546 +586623,275.44,79.921 +586624,274.93,81.2966 +586625,275.3,77.221 +586626,274.68,78.578 +586627,274.09,79.936 +586628,273.54,81.2961 +586629,274.04,77.27 +586630,273.37,78.609 +586631,272.74,79.951 +586632,272.15,81.2946 +586633,272.78,77.32 +586634,272.07,78.641 +586635,271.4,79.966 +586636,270.76,81.2919 +586637,271.52,77.37 +586638,270.77,78.674 +586639,270.05,79.981 +586640,269.37,81.2883 +586641,270.26,77.422 +586642,269.46,78.707 +586643,268.7,79.995 +586644,267.98,81.2835 +586645,269,77.476 +586646,268.16,78.74 +586647,267.36,80.0082 +586648,266.59,81.2778 +586649,267.74,77.53 +586650,266.85,78.774 +586651,266.01,80.0215 +586652,265.2,81.2711 +586653,266.47,77.585 +586654,265.55,78.808 +586655,264.66,80.0345 +586656,263.81,81.2634 +586657,265.21,77.641 +586658,264.25,78.842 +586659,263.32,80.0471 +586660,262.42,81.2547 +586661,263.95,77.698 +586662,262.94,78.877 +586663,261.97,80.0595 +586664,261.04,81.2451 +586665,262.68,77.756 +586666,261.63,78.912 +586667,260.63,80.0715 +586668,259.65,81.2345 +586669,261.42,77.816 +586670,260.33,78.947 +586671,259.28,80.0832 +586672,258.27,81.223 +586673,260.15,77.876 +586674,259.02,78.982 +586675,257.94,80.0947 +586676,256.88,81.2106 +586677,258.88,77.937 +586678,257.72,79.018 +586679,256.59,80.1058 +586680,255.5,81.1974 +586681,257.62,77.999 +586682,256.41,79.055 +586683,255.25,80.1166 +586684,254.12,81.1832 +586685,256.35,78.062 +586686,255.1,79.091 +586687,253.9,80.1272 +586688,252.74,81.1682 +586689,255.08,78.125 +586690,253.8,79.128 +586691,252.56,80.1375 +586692,251.36,81.1524 +586693,253.81,78.19 +586694,252.49,79.165 +586695,251.21,80.1475 +586696,249.98,81.1358 +586697,252.53,78.255 +586698,251.18,79.202 +586699,249.87,80.1573 +586700,248.6,81.1184 +586701,251.26,78.322 +586702,249.87,79.24 +586703,248.53,80.1668 +586704,247.22,81.1002 +586705,249.99,78.389 +586706,248.56,79.278 +586707,247.18,80.176 +586708,245.85,81.0813 +586709,248.71,78.456 +586710,247.25,79.316 +586711,245.84,80.185 +586712,244.47,81.0616 +586713,247.44,78.525 +586714,245.94,79.354 +586715,244.5,80.1938 +586716,243.1,81.0413 +586717,246.16,78.594 +586718,244.63,79.393 +586719,243.16,80.2024 +586720,241.72,81.0202 +586721,244.88,78.664 +586722,243.32,79.432 +586723,241.82,80.2107 +586724,240.35,80.9986 +586725,243.6,78.735 +586726,242.01,79.471 +586727,240.47,80.2188 +586728,238.98,80.9762 +586729,242.32,78.806 +586730,240.7,79.51 +586731,239.13,80.2268 +586732,237.61,80.9533 +586733,241.04,78.878 +586734,239.39,79.55 +586735,237.79,80.2345 +586736,236.24,80.9298 +586737,239.75,78.95 +586738,238.08,79.589 +586739,236.45,80.2421 +586740,234.88,80.9057 +586741,238.47,79.023 +586742,236.77,79.629 +586743,235.11,80.2494 +586744,233.51,80.8811 +586745,237.18,79.096 +586746,235.45,79.669 +586747,233.77,80.2566 +586748,232.15,80.856 +586749,235.9,79.17 +586750,234.14,79.71 +586751,232.44,80.2637 +586752,230.78,80.8304 +586753,234.61,79.245 +586754,232.82,79.75 +586755,231.1,80.2706 +586756,229.42,80.8043 +586757,233.32,79.32 +586758,231.51,79.791 +586759,229.76,80.2774 +586760,228.06,80.7778 +586761,232.02,79.395 +586762,230.19,79.831 +586763,228.42,80.284 +586764,226.7,80.7509 +586765,230.73,79.471 +586766,228.88,79.872 +586767,227.08,80.2905 +586768,225.34,80.7235 +586769,229.44,79.547 +586770,227.56,79.913 +586771,225.75,80.2969 +586772,223.99,80.6959 +586773,228.14,79.623 +586774,226.25,79.954 +586775,224.41,80.3031 +586776,222.63,80.6679 +586777,226.84,79.7 +586778,224.93,79.995 +586779,223.08,80.3093 +586780,221.28,80.6395 +586781,225.54,79.777 +586782,223.61,80.0366 +586783,221.74,80.3154 +586784,219.93,80.6109 +586785,224.24,79.854 +586786,222.29,80.0779 +586787,220.41,80.3214 +586788,218.57,80.5821 +586789,222.94,79.932 +586790,220.98,80.1194 +586791,219.07,80.3273 +586792,217.22,80.553 +586793,221.64,80.0095 +586794,219.66,80.1609 +586795,217.74,80.3332 +586796,215.88,80.5237 +586797,220.33,80.0873 +586798,218.34,80.2025 +586799,216.4,80.339 +586800,214.53,80.4943 +586801,219.03,80.1653 +586802,217.02,80.2441 +586803,215.07,80.3448 +586804,213.18,80.4647 +586805,217.72,80.2433 +586806,215.7,80.2858 +586807,213.74,80.3506 +586808,211.84,80.435 +586809,216.41,80.3215 +586810,214.38,80.3275 +586811,212.41,80.3563 +586812,210.5,80.4052 +586813,215.1,80.3997 +586814,213.05,80.3692 +586815,211.07,80.362 +586816,209.16,80.3753 +586817,213.79,80.4779 +586818,211.73,80.411 +586819,209.74,80.3677 +586820,207.82,80.3454 +586821,212.47,80.5561 +586822,210.41,80.4527 +586823,208.41,80.3735 +586824,206.48,80.3155 +586825,211.16,80.6342 +586826,209.09,80.4944 +586827,207.08,80.3792 +586828,205.14,80.2856 +586829,209.84,80.7123 +586830,207.76,80.5361 +586831,205.75,80.3849 +586832,203.81,80.2558 +586833,208.52,80.7902 +586834,206.44,80.5778 +586835,204.42,80.3907 +586836,202.47,80.2261 +586837,207.2,80.868 +586838,205.11,80.6195 +586839,203.09,80.3966 +586840,201.14,80.1964 +586841,205.88,80.9457 +586842,203.79,80.6611 +586843,201.77,80.4024 +586844,199.81,80.1669 +586845,204.55,81.0232 +586846,202.46,80.7026 +586847,200.44,80.4084 +586848,198.48,80.1375 +586849,203.23,81.1004 +586850,201.13,80.7441 +586851,199.11,80.4144 +586852,197.15,80.1084 +586853,201.9,81.1774 +586854,199.81,80.7855 +586855,197.78,80.4205 +586856,195.83,80.0794 +586857,200.57,81.2542 +586858,198.48,80.8268 +586859,196.46,80.4267 +586860,194.5,80.0507 +586861,199.24,81.3306 +586862,197.15,80.868 +586863,195.13,80.4329 +586864,193.18,80.0223 +586865,197.91,81.4066 +586866,195.82,80.9092 +586867,193.81,80.4393 +586868,191.86,79.994 +586869,196.58,81.4824 +586870,194.49,80.9502 +586871,192.48,80.4458 +586872,190.54,79.966 +586873,195.24,81.5577 +586874,193.16,80.9911 +586875,191.16,80.4525 +586876,189.22,79.939 +586877,193.9,81.6326 +586878,191.83,81.0318 +586879,189.83,80.4592 +586880,187.9,79.912 +586881,192.57,81.707 +586882,190.5,81.0724 +586883,188.51,80.4662 +586884,186.58,79.885 +586885,191.23,81.781 +586886,189.17,81.1129 +586887,187.19,80.4732 +586888,185.27,79.859 +586889,189.88,81.8545 +586890,187.84,81.1532 +586891,185.86,80.4805 +586892,183.95,79.833 +586893,188.54,81.9274 +586894,186.5,81.1933 +586895,184.54,80.4879 +586896,182.64,79.808 +586897,187.2,81.9998 +586898,185.17,81.2333 +586899,183.22,80.4954 +586900,181.33,79.783 +586901,185.85,82.0716 +586902,183.84,81.2731 +586903,181.9,80.5032 +586904,180.02,79.759 +586905,184.5,82.1428 +586906,182.5,81.3127 +586907,180.58,80.5112 +586908,178.72,79.735 +586909,183.15,82.2134 +586910,181.17,81.352 +586911,179.26,80.5193 +586912,177.41,79.712 +586913,181.8,82.2833 +586914,179.83,81.3912 +586915,177.94,80.5277 +586916,176.11,79.69 +586917,180.45,82.3525 +586918,178.5,81.4302 +586919,176.62,80.5363 +586920,174.8,79.668 +586921,179.1,82.421 +586922,177.16,81.4689 +586923,175.3,80.5452 +586924,173.5,79.647 +586925,177.74,82.4888 +586926,175.82,81.5074 +586927,173.98,80.5542 +586928,172.2,79.627 +586929,176.38,82.5558 +586930,174.49,81.5456 +586931,172.66,80.5636 +586932,170.9,79.607 +586933,175.02,82.6221 +586934,173.15,81.5836 +586935,171.35,80.5731 +586936,169.6,79.588 +586937,173.67,82.6875 +586938,171.81,81.6214 +586939,170.03,80.583 +586940,168.31,79.57 +586941,172.3,82.7521 +586942,170.47,81.6588 +586943,168.71,80.5931 +586944,167.01,79.552 +586945,170.94,82.8159 +586946,169.13,81.696 +586947,167.39,80.6035 +586948,165.72,79.536 +586949,169.58,82.8788 +586950,167.79,81.7329 +586951,166.08,80.6141 +586952,164.42,79.52 +586953,168.21,82.9409 +586954,166.45,81.7696 +586955,164.76,80.6251 +586956,163.13,79.505 +586957,166.85,83.002 +586958,165.11,81.8059 +586959,163.45,80.6363 +586960,161.84,79.491 +586961,165.48,83.0622 +586962,163.77,81.8419 +586963,162.13,80.6479 +586964,160.55,79.478 +586965,164.11,83.1214 +586966,162.43,81.8777 +586967,160.82,80.6598 +586968,159.26,79.465 +586969,162.74,83.1797 +586970,161.09,81.9131 +586971,159.5,80.672 +586972,157.98,79.454 +586973,161.37,83.237 +586974,159.75,81.9482 +586975,158.19,80.6845 +586976,156.69,79.444 +586977,159.99,83.2933 +586978,158.4,81.9829 +586979,156.88,80.6973 +586980,155.41,79.434 +586981,158.62,83.3485 +586982,157.06,82.0173 +586983,155.56,80.7105 +586984,154.12,79.426 +586985,157.25,83.4028 +586986,155.72,82.0514 +586987,154.25,80.724 +586988,152.84,79.419 +586989,155.87,83.456 +586990,154.37,82.0852 +586991,152.94,80.7379 +586992,151.56,79.412 +586993,154.49,83.5081 +586994,153.03,82.1186 +586995,151.63,80.7521 +586996,150.28,79.407 +586997,153.11,83.5591 +586998,151.68,82.1516 +586999,150.31,80.7667 +587000,149,79.403 +587001,151.73,83.6091 +587002,150.34,82.1843 +587003,149,80.7817 +587004,147.72,79.399 +587005,150.35,83.6579 +587006,148.99,82.2166 +587007,147.69,80.797 +587008,146.44,79.397 +587009,148.97,83.7056 +587010,147.65,82.2485 +587011,146.38,80.8127 +587012,145.16,79.396 +587013,147.59,83.7522 +587014,146.3,82.2801 +587015,145.07,80.8288 +587016,143.89,79.397 +587017,146.2,83.7976 +587018,144.95,82.3113 +587019,143.76,80.8452 +587020,142.61,79.398 +587021,144.82,83.8419 +587022,143.61,82.3421 +587023,142.45,80.8621 +587024,141.34,79.4 +587025,143.43,83.885 +587026,142.26,82.3725 +587027,141.14,80.8793 +587028,140.07,79.404 +587029,142.05,83.9269 +587030,140.91,82.4026 +587031,139.83,80.8969 +587032,138.79,79.409 +587033,140.66,83.9676 +587034,139.56,82.4322 +587035,138.52,80.9149 +587036,137.52,79.415 +587037,139.27,84.0072 +587038,138.22,82.4615 +587039,137.21,80.9334 +587040,136.25,79.422 +587041,137.89,84.0455 +587042,136.87,82.4903 +587043,135.9,80.9522 +587044,134.98,79.43 +587045,136.5,84.0826 +587046,135.52,82.5188 +587047,134.59,80.9714 +587048,133.71,79.44 +587049,135.11,84.1185 +587050,134.17,82.5468 +587051,133.28,80.9911 +587052,132.44,79.451 +587053,133.72,84.1532 +587054,132.82,82.5744 +587055,131.98,81.0112 +587056,131.17,79.463 +587057,132.32,84.1866 +587058,131.47,82.6017 +587059,130.67,81.0316 +587060,129.9,79.476 +587061,130.93,84.2188 +587062,130.12,82.6285 +587063,129.36,81.0525 +587064,128.64,79.491 +587065,129.54,84.2498 +587066,128.77,82.6549 +587067,128.05,81.0738 +587068,127.37,79.506 +587069,128.15,84.2795 +587070,127.42,82.6808 +587071,126.74,81.0956 +587072,126.1,79.523 +587073,126.75,84.308 +587074,126.07,82.7064 +587075,125.44,81.1177 +587076,124.84,79.542 +587077,125.36,84.3352 +587078,124.72,82.7316 +587079,124.13,81.1403 +587080,123.57,79.561 +587081,123.97,84.3612 +587082,123.37,82.7563 +587083,122.82,81.1633 +587084,122.31,79.582 +587085,122.57,84.3859 +587086,122.02,82.7806 +587087,121.51,81.1868 +587088,121.04,79.604 +587089,121.18,84.4094 +587090,120.67,82.8045 +587091,120.21,81.2106 +587092,119.78,79.628 +587093,119.78,84.4316 +587094,119.32,82.828 +587095,118.9,81.2349 +587096,118.51,79.653 +587097,118.38,84.4525 +587098,117.97,82.8511 +587099,117.59,81.2596 +587100,117.25,79.679 +587101,116.99,84.4722 +587102,116.62,82.8737 +587103,116.28,81.2847 +587104,115.99,79.706 +587105,115.59,84.4907 +587106,115.27,82.8959 +587107,114.98,81.3103 +587108,114.72,79.734 +587109,114.2,84.5079 +587110,113.91,82.9177 +587111,113.67,81.3363 +587112,113.46,79.764 +587113,112.8,84.5239 +587114,112.56,82.9391 +587115,112.36,81.3627 +587116,112.2,79.795 +587117,111.4,84.5386 +587118,111.21,82.9601 +587119,111.06,81.3895 +587120,110.93,79.828 +587121,110.01,84.5521 +587122,109.86,82.9806 +587123,109.75,81.4168 +587124,109.67,79.861 +587125,108.61,84.5644 +587126,108.51,83.0008 +587127,108.44,81.4445 +587128,108.41,79.896 +587129,107.21,84.5755 +587130,107.16,83.0205 +587131,107.13,81.4726 +587132,107.14,79.932 +587133,105.82,84.5853 +587134,105.81,83.0398 +587135,105.83,81.5011 +587136,105.88,79.97 +587137,104.42,84.5939 +587138,104.45,83.0588 +587139,104.52,81.53 +587140,104.62,80.0087 +587141,103.02,84.6013 +587142,103.1,83.0773 +587143,103.21,81.5593 +587144,103.35,80.0486 +587145,101.63,84.6076 +587146,101.75,83.0954 +587147,101.9,81.5891 +587148,102.09,80.0898 +587149,100.23,84.6126 +587150,100.4,83.1131 +587151,100.6,81.6193 +587152,100.83,80.1323 +587153,98.835,84.6165 +587154,99.047,83.1304 +587155,99.29,81.6498 +587156,99.562,80.1759 +587157,97.44,84.6192 +587158,97.696,83.1473 +587159,97.982,81.6808 +587160,98.298,80.2208 +587161,96.044,84.6208 +587162,96.344,83.1639 +587163,96.674,81.7121 +587164,97.034,80.2668 +587165,94.649,84.6212 +587166,94.993,83.18 +587167,95.366,81.7439 +587168,95.769,80.3141 +587169,93.255,84.6205 +587170,93.642,83.1958 +587171,94.058,81.776 +587172,94.504,80.3625 +587173,91.86,84.6187 +587174,92.29,83.2112 +587175,92.75,81.8085 +587176,93.238,80.4121 +587177,90.466,84.6157 +587178,90.939,83.2262 +587179,91.441,81.8414 +587180,91.972,80.4629 +587181,89.073,84.6117 +587182,89.588,83.2409 +587183,90.133,81.8747 +587184,90.706,80.5148 +587185,87.68,84.6066 +587186,88.237,83.2552 +587187,88.824,81.9084 +587188,89.439,80.5679 +587189,86.287,84.6005 +587190,86.887,83.2691 +587191,87.515,81.9424 +587192,88.172,80.622 +587193,84.895,84.5933 +587194,85.536,83.2827 +587195,86.206,81.9768 +587196,86.904,80.6773 +587197,83.504,84.585 +587198,84.186,83.2959 +587199,84.896,82.0115 +587200,85.636,80.7336 +587201,82.113,84.5758 +587202,82.835,83.3088 +587203,83.587,82.0466 +587204,84.367,80.791 +587205,80.723,84.5655 +587206,81.485,83.3213 +587207,82.277,82.082 +587208,83.097,80.8494 +587209,79.333,84.5543 +587210,80.135,83.3335 +587211,80.967,82.1178 +587212,81.827,80.9089 +587213,77.944,84.5421 +587214,78.786,83.3454 +587215,79.656,82.1539 +587216,80.556,80.9694 +587217,76.556,84.529 +587218,77.436,83.357 +587219,78.345,82.1904 +587220,79.284,81.0309 +587221,75.169,84.5149 +587222,76.087,83.3682 +587223,77.035,82.2271 +587224,78.012,81.0934 +587225,73.782,84.4999 +587226,74.738,83.3792 +587227,75.723,82.2642 +587228,76.739,81.1568 +587229,72.396,84.4841 +587230,73.389,83.3898 +587231,74.412,82.3015 +587232,75.465,81.2211 +587233,71.011,84.4674 +587234,72.04,83.4002 +587235,73.1,82.3392 +587236,74.19,81.2864 +587237,69.627,84.4498 +587238,70.692,83.4102 +587239,71.788,82.3772 +587240,72.914,81.3526 +587241,68.244,84.4314 +587242,69.344,83.42 +587243,70.475,82.4154 +587244,71.637,81.4196 +587245,66.861,84.4122 +587246,67.996,83.4295 +587247,69.162,82.454 +587248,70.36,81.4875 +587249,65.48,84.3922 +587250,66.649,83.4387 +587251,67.849,82.4928 +587252,69.081,81.5562 +587253,64.099,84.3715 +587254,65.302,83.4477 +587255,66.536,82.5318 +587256,67.802,81.6257 +587257,62.72,84.35 +587258,63.955,83.4565 +587259,65.222,82.5711 +587260,66.522,81.696 +587261,61.341,84.3278 +587262,62.608,83.465 +587263,63.907,82.6107 +587264,65.24,81.767 +587265,59.964,84.3049 +587266,61.262,83.4732 +587267,62.593,82.6505 +587268,63.958,81.8388 +587269,58.587,84.2814 +587270,59.916,83.4812 +587271,61.278,82.6905 +587272,62.674,81.9113 +587273,57.212,84.2572 +587274,58.57,83.4891 +587275,59.962,82.7308 +587276,61.389,81.9844 +587277,55.837,84.2324 +587278,57.225,83.4967 +587279,58.646,82.7713 +587280,60.104,82.0582 +587281,54.464,84.207 +587282,55.88,83.5041 +587283,57.33,82.8119 +587284,58.817,82.1326 +587285,53.092,84.181 +587286,54.535,83.5113 +587287,56.014,82.8528 +587288,57.529,82.2076 +587289,51.721,84.1545 +587290,53.191,83.5183 +587291,54.696,82.8939 +587292,56.239,82.2832 +587293,50.351,84.1275 +587294,51.847,83.5251 +587295,53.379,82.9351 +587296,54.949,82.3594 +587297,48.983,84.0999 +587298,50.503,83.5318 +587299,52.061,82.9765 +587300,53.657,82.436 +587301,47.615,84.0719 +587302,49.16,83.5383 +587303,50.743,83.018 +587304,52.364,82.5132 +587305,46.249,84.0435 +587306,47.817,83.5447 +587307,49.424,83.0597 +587308,51.07,82.5908 +587309,44.884,84.0146 +587310,46.475,83.5509 +587311,48.104,83.1016 +587312,49.775,82.6688 +587313,43.521,83.9854 +587314,45.133,83.557 +587315,46.785,83.1436 +587316,48.478,82.7472 +587317,42.158,83.9558 +587318,43.791,83.563 +587319,45.464,83.1857 +587320,47.18,82.826 +587321,40.797,83.9258 +587322,42.45,83.5689 +587323,44.144,83.2279 +587324,45.88,82.9052 +587325,39.437,83.8956 +587326,41.109,83.5746 +587327,42.822,83.2702 +587328,44.58,82.9846 +587329,38.079,83.8651 +587330,39.769,83.5803 +587331,41.501,83.3126 +587332,43.277,83.0644 +587333,36.721,83.8343 +587334,38.429,83.5859 +587335,40.179,83.3551 +587336,41.974,83.1444 +587337,35.365,83.8033 +587338,37.089,83.5914 +587339,38.856,83.3977 +587340,40.669,83.2246 +587341,34.011,83.7721 +587342,35.75,83.5968 +587343,37.533,83.4403 +587344,39.363,83.305 +587345,32.657,83.7408 +587346,34.411,83.6022 +587347,36.209,83.483 +587348,38.055,83.3856 +587349,31.306,83.7093 +587350,33.073,83.6075 +587351,34.885,83.5257 +587352,36.746,83.4663 +587353,29.955,83.6777 +587354,31.735,83.6128 +587355,33.56,83.5685 +587356,35.435,83.5471 +587357,28.606,83.646 +587358,30.397,83.6181 +587359,32.235,83.6112 +587360,34.123,83.628 +587361,27.258,83.6143 +587362,29.06,83.6234 +587363,30.91,83.654 +587364,32.809,83.7089 +587365,25.912,83.5825 +587366,27.724,83.6286 +587367,29.583,83.6968 +587368,31.494,83.7898 +587369,24.567,83.5507 +587370,26.388,83.6338 +587371,28.257,83.7396 +587372,30.178,83.8707 +587373,23.223,83.519 +587374,25.052,83.6391 +587375,26.929,83.7824 +587376,28.86,83.9516 +587377,21.881,83.4873 +587378,23.717,83.6444 +587379,25.602,83.8251 +587380,27.54,84.0323 +587381,20.54,83.4558 +587382,22.382,83.6497 +587383,24.273,83.8678 +587384,26.219,84.113 +587385,19.201,83.4243 +587386,21.048,83.655 +587387,22.945,83.9105 +587388,24.897,84.1935 +587389,17.863,83.393 +587390,19.714,83.6604 +587391,21.615,83.9531 +587392,23.573,84.2738 +587393,16.526,83.3619 +587394,18.38,83.6659 +587395,20.285,83.9956 +587396,22.247,84.354 +587397,15.191,83.3309 +587398,17.047,83.6714 +587399,18.955,84.0381 +587400,20.92,84.4339 +587401,13.857,83.3002 +587402,15.715,83.677 +587403,17.624,84.0804 +587404,19.591,84.5135 +587405,12.525,83.2698 +587406,14.382,83.6827 +587407,16.293,84.1227 +587408,18.261,84.5928 +587409,11.194,83.2396 +587410,13.051,83.6885 +587411,14.961,84.1649 +587412,16.929,84.6718 +587413,9.8642,83.2098 +587414,11.72,83.6944 +587415,13.628,84.2069 +587416,15.596,84.7505 +587417,8.536,83.1803 +587418,10.389,83.7005 +587419,12.295,84.2488 +587420,14.262,84.8287 +587421,7.2093,83.1512 +587422,9.0585,83.7066 +587423,10.962,84.2906 +587424,12.925,84.9065 +587425,5.8839,83.1225 +587426,7.7286,83.7129 +587427,9.6275,84.3323 +587428,11.587,84.9839 +587429,4.5599,83.0942 +587430,6.3992,83.7193 +587431,8.2928,84.3737 +587432,10.248,85.0608 +587433,3.2373,83.0663 +587434,5.0702,83.7259 +587435,6.9577,84.4151 +587436,8.9074,85.1373 +587437,1.9161,83.039 +587438,3.7417,83.7326 +587439,5.622,84.4562 +587440,7.565,85.2131 +587441,0.59628,83.0121 +587442,2.4135,83.7395 +587443,4.2859,84.4972 +587444,6.2212,85.2885 +587445,359.28,82.9858 +587446,1.0859,83.7466 +587447,2.9492,84.5379 +587448,4.8759,85.3632 +587449,357.96,82.96 +587450,359.76,83.7539 +587451,1.612,84.5785 +587452,3.529,85.4373 +587453,356.64,82.9349 +587454,358.43,83.7614 +587455,0.27424,84.6188 +587456,2.1807,85.5108 +587457,355.33,82.9103 +587458,357.11,83.7691 +587459,358.94,84.659 +587460,0.83094,85.5836 +587461,354.02,82.8864 +587462,355.78,83.777 +587463,357.6,84.6989 +587464,359.48,85.6557 +587465,352.71,82.8632 +587466,354.45,83.7851 +587467,356.26,84.7385 +587468,358.13,85.7271 +587469,351.39,82.8406 +587470,353.13,83.7935 +587471,354.92,84.7779 +587472,356.77,85.7977 +587473,350.09,82.8187 +587474,351.8,83.8021 +587475,353.58,84.8171 +587476,355.42,85.8675 +587477,348.78,82.7976 +587478,350.48,83.811 +587479,352.24,84.856 +587480,354.06,85.9366 +587481,347.47,82.7773 +587482,349.16,83.8201 +587483,350.9,84.8946 +587484,352.7,86.0048 +587485,346.17,82.7577 +587486,347.83,83.8294 +587487,349.55,84.933 +587488,351.34,86.0722 +587489,344.86,82.739 +587490,346.51,83.8391 +587491,348.21,84.9711 +587492,349.98,86.1387 +587493,343.56,82.7211 +587494,345.19,83.849 +587495,346.87,85.0088 +587496,348.62,86.2043 +587497,342.26,82.704 +587498,343.86,83.8592 +587499,345.53,85.0463 +587500,347.25,86.269 +587501,340.96,82.6878 +587502,342.54,83.8697 +587503,344.18,85.0835 +587504,345.89,86.3328 +587505,339.66,82.6725 +587506,341.22,83.8805 +587507,342.84,85.1203 +587508,344.52,86.3956 +587509,338.36,82.6582 +587510,339.9,83.8917 +587511,341.49,85.1568 +587512,343.15,86.4574 +587513,337.06,82.6447 +587514,338.58,83.9031 +587515,340.15,85.193 +587516,341.79,86.5182 +587517,335.77,82.6323 +587518,337.26,83.9148 +587519,338.8,85.2289 +587520,340.42,86.578 +587521,334.47,82.6208 +587522,335.94,83.9269 +587523,337.46,85.2644 +587524,339.04,86.6368 +587525,333.18,82.6103 +587526,334.62,83.9394 +587527,336.11,85.2995 +587528,337.67,86.6945 +587529,331.88,82.6008 +587530,333.3,83.9521 +587531,334.77,85.3343 +587532,336.3,86.7511 +587533,330.59,82.5924 +587534,331.98,83.9652 +587535,333.42,85.3688 +587536,334.92,86.8066 +587537,329.3,82.585 +587538,330.66,83.9787 +587539,332.07,85.4028 +587540,333.55,86.861 +587541,328.01,82.5787 +587542,329.34,83.9925 +587543,330.72,85.4365 +587544,332.17,86.9143 +587545,326.72,82.5735 +587546,328.02,84.0067 +587547,329.38,85.4698 +587548,330.79,86.9664 +587549,325.43,82.5694 +587550,326.7,84.0212 +587551,328.03,85.5028 +587552,329.41,87.0173 +587553,324.15,82.5665 +587554,325.39,84.0362 +587555,326.68,85.5353 +587556,328.03,87.0671 +587557,322.86,82.5646 +587558,324.07,84.0515 +587559,325.33,85.5674 +587560,326.65,87.1157 +587561,321.58,82.5639 +587562,322.75,84.0672 +587563,323.98,85.5992 +587564,325.26,87.1631 +587565,320.29,82.5644 +587566,321.44,84.0832 +587567,322.63,85.6305 +587568,323.88,87.2093 +587569,319.01,82.566 +587570,320.12,84.0997 +587571,321.28,85.6615 +587572,322.5,87.2542 +587573,317.73,82.5689 +587574,318.8,84.1166 +587575,319.93,85.692 +587576,321.11,87.2979 +587577,316.44,82.5729 +587578,317.49,84.1338 +587579,318.58,85.7221 +587580,319.72,87.3404 +587581,315.16,82.5782 +587582,316.17,84.1515 +587583,317.23,85.7517 +587584,318.34,87.3816 +587585,313.88,82.5847 +587586,314.85,84.1696 +587587,315.87,85.781 +587588,316.95,87.4215 +587589,312.6,82.5924 +587590,313.54,84.1881 +587591,314.52,85.8098 +587592,315.56,87.4602 +587593,311.32,82.6014 +587594,312.22,84.207 +587595,313.17,85.8382 +587596,314.17,87.4976 +587597,310.04,82.6117 +587598,310.91,84.2263 +587599,311.82,85.8662 +587600,312.78,87.5336 +587601,308.77,82.6232 +587602,309.59,84.2461 +587603,310.47,85.8937 +587604,311.39,87.5684 +587605,307.49,82.6359 +587606,308.28,84.2662 +587607,309.11,85.9208 +587608,310,87.6019 +587609,306.21,82.65 +587610,306.96,84.2868 +587611,307.76,85.9475 +587612,308.61,87.634 +587613,304.93,82.6653 +587614,305.65,84.3078 +587615,306.41,85.9737 +587616,307.21,87.6649 +587617,303.66,82.682 +587618,304.33,84.3293 +587619,305.05,85.9995 +587620,305.82,87.6944 +587621,302.38,82.6999 +587622,303.02,84.3511 +587623,303.7,86.0248 +587624,304.42,87.7226 +587625,301.11,82.7191 +587626,301.71,84.3734 +587627,302.34,86.0497 +587628,303.03,87.7495 +587629,299.83,82.7397 +587630,300.39,84.3962 +587631,300.99,86.0741 +587632,301.64,87.775 +587633,298.56,82.7615 +587634,299.08,84.4193 +587635,299.64,86.0981 +587636,300.24,87.7992 +587637,297.29,82.7847 +587638,297.76,84.4429 +587639,298.28,86.1217 +587640,298.84,87.8221 +587641,296.01,82.8092 +587642,296.45,84.4669 +587643,296.93,86.1448 +587644,297.45,87.8437 +587645,294.74,82.835 +587646,295.14,84.4914 +587647,295.57,86.1674 +587648,296.05,87.864 +587649,293.47,82.8621 +587650,293.82,84.5163 +587651,294.22,86.1896 +587652,294.65,87.8829 +587653,292.19,82.8905 +587654,292.51,84.5416 +587655,292.86,86.2114 +587656,293.26,87.9005 +587657,290.92,82.9202 +587658,291.2,84.5674 +587659,291.51,86.2327 +587660,291.86,87.9167 +587661,289.65,82.9513 +587662,289.88,84.5935 +587663,290.15,86.2535 +587664,290.46,87.9317 +587665,288.37,82.9836 +587666,288.57,84.6202 +587667,288.8,86.2739 +587668,289.06,87.9454 +587669,287.1,83.0173 +587670,287.25,84.6472 +587671,287.44,86.2939 +587672,287.67,87.9577 +587673,285.83,83.0522 +587674,285.94,84.6747 +587675,286.09,86.3134 +587676,286.27,87.9687 +587677,284.56,83.0885 +587678,284.63,84.7026 +587679,284.73,86.3325 +587680,284.87,87.9785 +587681,283.29,83.1261 +587682,283.31,84.7309 +587683,283.37,86.3512 +587684,283.47,87.987 +587685,282.01,83.1649 +587686,282,84.7596 +587687,282.02,86.3694 +587688,282.07,87.9941 +587689,280.74,83.205 +587690,280.69,84.7888 +587691,280.66,86.3872 +587692,280.67,88.0001 +587693,279.47,83.2464 +587694,279.37,84.8184 +587695,279.31,86.4046 +587696,279.28,88.0047 +587697,278.2,83.2891 +587698,278.06,84.8484 +587699,277.95,86.4215 +587700,277.88,88.0081 +587701,276.92,83.333 +587702,276.74,84.8787 +587703,276.6,86.438 +587704,276.48,88.0103 +587705,275.65,83.3782 +587706,275.43,84.9096 +587707,275.24,86.4541 +587708,275.08,88.0112 +587709,274.38,83.4246 +587710,274.12,84.9408 +587711,273.89,86.4698 +587712,273.68,88.0109 +587713,273.1,83.4723 +587714,272.8,84.9724 +587715,272.53,86.485 +587716,272.29,88.0094 +587717,271.83,83.5211 +587718,271.49,85.0044 +587719,271.17,86.4999 +587720,270.89,88.0068 +587721,270.55,83.5712 +587722,270.17,85.0368 +587723,269.82,86.5143 +587724,269.49,88.0029 +587725,269.28,83.6224 +587726,268.86,85.0695 +587727,268.46,86.5283 +587728,268.1,87.9979 +587729,268.01,83.6749 +587730,267.54,85.1027 +587731,267.11,86.542 +587732,266.7,87.9917 +587733,266.73,83.7285 +587734,266.23,85.1362 +587735,265.75,86.5552 +587736,265.3,87.9843 +587737,265.45,83.7832 +587738,264.91,85.1701 +587739,264.4,86.5681 +587740,263.91,87.9759 +587741,264.18,83.8391 +587742,263.6,85.2044 +587743,263.04,86.5806 +587744,262.51,87.9663 +587745,262.9,83.8961 +587746,262.28,85.2391 +587747,261.69,86.5927 +587748,261.12,87.9557 +587749,261.62,83.9542 +587750,260.97,85.274 +587751,260.33,86.6044 +587752,259.73,87.944 +587753,260.35,84.0134 +587754,259.65,85.3094 +587755,258.98,86.6158 +587756,258.33,87.9312 +587757,259.07,84.0736 +587758,258.33,85.3451 +587759,257.62,86.6268 +587760,256.94,87.9174 +587761,257.79,84.1349 +587762,257.02,85.3811 +587763,256.27,86.6375 +587764,255.55,87.9026 +587765,256.51,84.1972 +587766,255.7,85.4175 +587767,254.92,86.6478 +587768,254.16,87.8868 +587769,255.23,84.2606 +587770,254.38,85.4541 +587771,253.56,86.6578 +587772,252.76,87.87 +587773,253.95,84.3249 +587774,253.07,85.4911 +587775,252.21,86.6674 +587776,251.37,87.8523 +587777,252.67,84.3902 +587778,251.75,85.5284 +587779,250.86,86.6767 +587780,249.98,87.8336 +587781,251.38,84.4565 +587782,250.43,85.566 +587783,249.5,86.6857 +587784,248.6,87.814 +587785,250.1,84.5237 +587786,249.11,85.604 +587787,248.15,86.6944 +587788,247.21,87.7935 +587789,248.82,84.5917 +587790,247.79,85.6421 +587791,246.8,86.7028 +587792,245.82,87.7722 +587793,247.53,84.6607 +587794,246.48,85.6806 +587795,245.44,86.7109 +587796,244.43,87.75 +587797,246.25,84.7305 +587798,245.16,85.7194 +587799,244.09,86.7187 +587800,243.05,87.7269 +587801,244.96,84.8012 +587802,243.84,85.7584 +587803,242.74,86.7262 +587804,241.66,87.7031 +587805,243.67,84.8727 +587806,242.52,85.7976 +587807,241.39,86.7335 +587808,240.28,87.6785 +587809,242.38,84.9449 +587810,241.2,85.8372 +587811,240.04,86.7404 +587812,238.9,87.6531 +587813,241.09,85.018 +587814,239.88,85.8769 +587815,238.68,86.7472 +587816,237.51,87.627 +587817,239.8,85.0917 +587818,238.56,85.9169 +587819,237.33,86.7536 +587820,236.13,87.6002 +587821,238.51,85.1662 +587822,237.24,85.9571 +587823,235.98,86.7599 +587824,234.75,87.5727 +587825,237.22,85.2413 +587826,235.91,85.9976 +587827,234.63,86.7659 +587828,233.37,87.5446 +587829,235.93,85.3171 +587830,234.59,86.0382 +587831,233.28,86.7716 +587832,232,87.5158 +587833,234.63,85.3936 +587834,233.27,86.079 +587835,231.93,86.7772 +587836,230.62,87.4864 +587837,233.34,85.4706 +587838,231.95,86.12 +587839,230.58,86.7826 +587840,229.24,87.4565 +587841,232.04,85.5482 +587842,230.62,86.1612 +587843,229.23,86.7877 +587844,227.87,87.426 +587845,230.74,85.6264 +587846,229.3,86.2026 +587847,227.88,86.7927 +587848,226.49,87.395 +587849,229.44,85.705 +587850,227.98,86.2441 +587851,226.54,86.7975 +587852,225.12,87.3635 +587853,228.14,85.7842 +587854,226.65,86.2858 +587855,225.19,86.8021 +587856,223.75,87.3315 +587857,226.84,85.8638 +587858,225.33,86.3276 +587859,223.84,86.8066 +587860,222.38,87.2991 +587861,225.54,85.9439 +587862,224,86.3695 +587863,222.49,86.8109 +587864,221.01,87.2662 +587865,224.24,86.0243 +587866,222.68,86.4115 +587867,221.15,86.815 +587868,219.64,87.233 +587869,222.93,86.1051 +587870,221.35,86.4537 +587871,219.8,86.8191 +587872,218.28,87.1994 +587873,221.62,86.1863 +587874,220.02,86.496 +587875,218.45,86.823 +587876,216.91,87.1655 +587877,220.32,86.2677 +587878,218.7,86.5383 +587879,217.11,86.8268 +587880,215.55,87.1313 +587881,219.01,86.3494 +587882,217.37,86.5807 +587883,215.76,86.8305 +587884,214.18,87.0968 +587885,217.7,86.4314 +587886,216.04,86.6232 +587887,214.42,86.8341 +587888,212.82,87.0621 +587889,216.39,86.5136 +587890,214.71,86.6658 +587891,213.07,86.8376 +587892,211.46,87.0272 +587893,215.07,86.596 +587894,213.38,86.7084 +587895,211.73,86.8411 +587896,210.1,86.9921 +587897,213.76,86.6785 +587898,212.06,86.751 +587899,210.38,86.8445 +587900,208.74,86.9568 +587901,212.44,86.7611 +587902,210.73,86.7937 +587903,209.04,86.8478 +587904,207.39,86.9214 +587905,211.13,86.8438 +587906,209.4,86.8364 +587907,207.7,86.8511 +587908,206.03,86.8859 +587909,209.81,86.9266 +587910,208.06,86.8791 +587911,206.35,86.8544 +587912,204.68,86.8504 +587913,208.49,87.0094 +587914,206.73,86.9218 +587915,205.01,86.8576 +587916,203.32,86.8148 +587917,207.17,87.0922 +587918,205.4,86.9645 +587919,203.67,86.8609 +587920,201.97,86.7792 +587921,205.85,87.1749 +587922,204.07,87.0071 +587923,202.33,86.8641 +587924,200.62,86.7436 +587925,204.52,87.2576 +587926,202.74,87.0497 +587927,200.99,86.8673 +587928,199.27,86.7081 +587929,203.2,87.3402 +587930,201.4,87.0923 +587931,199.65,86.8706 +587932,197.92,86.6727 +587933,201.87,87.4226 +587934,200.07,87.1348 +587935,198.31,86.8738 +587936,196.58,86.6373 +587937,200.55,87.5049 +587938,198.74,87.1772 +587939,196.97,86.8772 +587940,195.23,86.6022 +587941,199.22,87.5869 +587942,197.4,87.2196 +587943,195.63,86.8805 +587944,193.89,86.5671 +587945,197.89,87.6688 +587946,196.07,87.2619 +587947,194.29,86.8839 +587948,192.55,86.5323 +587949,196.55,87.7503 +587950,194.73,87.304 +587951,192.95,86.8874 +587952,191.21,86.4977 +587953,195.22,87.8316 +587954,193.39,87.3461 +587955,191.61,86.891 +587956,189.87,86.4634 +587957,193.88,87.9125 +587958,192.06,87.3881 +587959,190.27,86.8946 +587960,188.53,86.4293 +587961,192.55,87.9931 +587962,190.72,87.4299 +587963,188.93,86.8984 +587964,187.19,86.3956 +587965,191.21,88.0732 +587966,189.38,87.4716 +587967,187.6,86.9022 +587968,185.85,86.3622 +587969,189.87,88.153 +587970,188.04,87.5131 +587971,186.26,86.9062 +587972,184.52,86.3292 +587973,188.53,88.2323 +587974,186.7,87.5545 +587975,184.92,86.9103 +587976,183.19,86.2966 +587977,187.19,88.3111 +587978,185.37,87.5957 +587979,183.59,86.9145 +587980,181.86,86.2644 +587981,185.85,88.3894 +587982,184.03,87.6367 +587983,182.25,86.9189 +587984,180.53,86.2327 +587985,184.5,88.4671 +587986,182.69,87.6775 +587987,180.92,86.9234 +587988,179.2,86.2014 +587989,183.15,88.5443 +587990,181.34,87.7181 +587991,179.58,86.9281 +587992,177.87,86.1707 +587993,181.81,88.6209 +587994,180,87.7586 +587995,178.25,86.933 +587996,176.54,86.1405 +587997,180.46,88.6968 +587998,178.66,87.7988 +587999,176.92,86.938 +588000,175.22,86.1109 +588001,179.11,88.772 +588002,177.32,87.8387 +588003,175.58,86.9433 +588004,173.89,86.0819 +588005,177.75,88.8466 +588006,175.98,87.8785 +588007,174.25,86.9487 +588008,172.57,86.0535 +588009,176.4,88.9205 +588010,174.63,87.9179 +588011,172.92,86.9544 +588012,171.25,86.0257 +588013,175.05,88.9935 +588014,173.29,87.9572 +588015,171.59,86.9602 +588016,169.93,85.9986 +588017,173.69,89.06586 +588018,171.95,87.9961 +588019,170.25,86.9663 +588020,168.61,85.9722 +588021,172.33,89.13737 +588022,170.6,88.0348 +588023,168.92,86.9726 +588024,167.29,85.9466 +588025,170.97,89.20805 +588026,169.26,88.0732 +588027,167.59,86.9792 +588028,165.98,85.9216 +588029,169.61,89.27786 +588030,167.91,88.1114 +588031,166.26,86.986 +588032,164.66,85.8975 +588033,168.25,89.34679 +588034,166.56,88.1492 +588035,164.93,86.9931 +588036,163.35,85.8741 +588037,166.89,89.41482 +588038,165.22,88.1867 +588039,163.6,87.0004 +588040,162.03,85.8516 +588041,165.52,89.4819 +588042,163.87,88.2239 +588043,162.27,87.0081 +588044,160.72,85.8299 +588045,164.16,89.54803 +588046,162.52,88.2607 +588047,160.94,87.016 +588048,159.41,85.8091 +588049,162.79,89.61317 +588050,161.18,88.2973 +588051,159.61,87.0242 +588052,158.1,85.7892 +588053,161.42,89.6773 +588054,159.83,88.3334 +588055,158.29,87.0327 +588056,156.79,85.7702 +588057,160.05,89.7404 +588058,158.48,88.3693 +588059,156.96,87.0415 +588060,155.49,85.7521 +588061,158.68,89.80245 +588062,157.13,88.4048 +588063,155.63,87.0506 +588064,154.18,85.735 +588065,157.31,89.86343 +588066,155.78,88.4399 +588067,154.3,87.06 +588068,152.87,85.7189 +588069,155.94,89.923308 +588070,154.43,88.4746 +588071,152.98,87.0698 +588072,151.57,85.7037 +588073,154.57,89.98207 +588074,153.08,88.509 +588075,151.65,87.0798 +588076,150.27,85.6896 +588077,153.19,90.039695 +588078,151.73,88.543 +588079,150.32,87.0903 +588080,148.97,85.6765 +588081,151.81,90.096164 +588082,150.38,88.5766 +588083,149,87.101 +588084,147.66,85.6645 +588085,150.44,90.15146 +588086,149.03,88.6098 +588087,147.67,87.1122 +588088,146.36,85.6536 +588089,149.06,90.20556 +588090,147.67,88.6426 +588091,146.35,87.1237 +588092,145.07,85.6437 +588093,147.68,90.25845 +588094,146.32,88.675 +588095,145.02,87.1355 +588096,143.77,85.6349 +588097,146.3,90.31011 +588098,144.97,88.707 +588099,143.69,87.1477 +588100,142.47,85.6273 +588101,144.92,90.36052 +588102,143.61,88.7385 +588103,142.37,87.1603 +588104,141.17,85.6208 +588105,143.53,90.40968 +588106,142.26,88.7697 +588107,141.05,87.1733 +588108,139.88,85.6155 +588109,142.15,90.45757 +588110,140.91,88.8004 +588111,139.72,87.1866 +588112,138.58,85.6114 +588113,140.76,90.50416 +588114,139.55,88.8306 +588115,138.4,87.2004 +588116,137.29,85.6084 +588117,139.38,90.54945 +588118,138.2,88.8605 +588119,137.07,87.2145 +588120,136,85.6067 +588121,137.99,90.59343 +588122,136.84,88.8899 +588123,135.75,87.229 +588124,134.7,85.6061 +588125,136.6,90.63608 +588126,135.49,88.9188 +588127,134.43,87.2439 +588128,133.41,85.6068 +588129,135.22,90.6774 +588130,134.13,88.9473 +588131,133.1,87.2593 +588132,132.12,85.6087 +588133,133.83,90.71736 +588134,132.78,88.9753 +588135,131.78,87.275 +588136,130.83,85.6119 +588137,132.44,90.75597 +588138,131.42,89.00288 +588139,130.46,87.2912 +588140,129.54,85.6164 +588141,131.05,90.79321 +588142,130.07,89.02999 +588143,129.14,87.3078 +588144,128.25,85.6221 +588145,129.65,90.82907 +588146,128.71,89.05663 +588147,127.81,87.3247 +588148,126.96,85.6291 +588149,128.26,90.86355 +588150,127.35,89.0828 +588151,126.49,87.3422 +588152,125.68,85.6374 +588153,126.87,90.89663 +588154,126,89.1085 +588155,125.17,87.36 +588156,124.39,85.647 +588157,125.48,90.92832 +588158,124.64,89.13373 +588159,123.85,87.3783 +588160,123.1,85.6579 +588161,124.08,90.95861 +588162,123.28,89.15848 +588163,122.53,87.397 +588164,121.82,85.6701 +588165,122.69,90.9875 +588166,121.92,89.18275 +588167,121.21,87.4161 +588168,120.53,85.6837 +588169,121.29,91.015 +588170,120.56,89.20655 +588171,119.88,87.4356 +588172,119.25,85.6985 +588173,119.9,91.041 +588174,119.21,89.22986 +588175,118.56,87.4556 +588176,117.96,85.7147 +588177,118.5,91.0657 +588178,117.85,89.25269 +588179,117.24,87.476 +588180,116.68,85.7323 +588181,117.1,91.0889 +588182,116.49,89.27504 +588183,115.92,87.4969 +588184,115.39,85.7512 +588185,115.71,91.1107 +588186,115.13,89.2969 +588187,114.6,87.5182 +588188,114.11,85.7714 +588189,114.31,91.1311 +588190,113.77,89.31828 +588191,113.28,87.5399 +588192,112.83,85.7929 +588193,112.91,91.15 +588194,112.41,89.33918 +588195,111.96,87.5621 +588196,111.54,85.8159 +588197,111.51,91.1676 +588198,111.05,89.35959 +588199,110.64,87.5847 +588200,110.26,85.8401 +588201,110.11,91.1837 +588202,109.69,89.37952 +588203,109.32,87.6077 +588204,108.98,85.8657 +588205,108.71,91.1984 +588206,108.34,89.39896 +588207,108,87.6312 +588208,107.69,85.8927 +588209,107.31,91.2118 +588210,106.98,89.41792 +588211,106.68,87.6551 +588212,106.41,85.921 +588213,105.92,91.2237 +588214,105.62,89.4364 +588215,105.36,87.6795 +588216,105.13,85.9507 +588217,104.52,91.2342 +588218,104.26,89.4544 +588219,104.03,87.7042 +588220,103.85,85.9817 +588221,103.12,91.2433 +588222,102.9,89.47192 +588223,102.71,87.7294 +588224,102.56,86.014 +588225,101.72,91.251 +588226,101.54,89.48896 +588227,101.39,87.7551 +588228,101.28,86.0477 +588229,100.32,91.2574 +588230,100.18,89.50553 +588231,100.07,87.7812 +588232,100,86.0827 +588233,98.916,91.2624 +588234,98.817,89.52162 +588235,98.752,87.8077 +588236,98.719,86.119 +588237,97.516,91.266 +588238,97.457,89.53725 +588239,97.431,87.8346 +588240,97.437,86.1567 +588241,96.116,91.2682 +588242,96.097,89.5524 +588243,96.11,87.8619 +588244,96.154,86.1956 +588245,94.716,91.2691 +588246,94.737,89.56709 +588247,94.789,87.8897 +588248,94.872,86.2359 +588249,93.316,91.2687 +588250,93.376,89.58132 +588251,93.469,87.9178 +588252,93.59,86.2774 +588253,91.916,91.267 +588254,92.016,89.59509 +588255,92.147,87.9464 +588256,92.307,86.3203 +588257,90.516,91.2639 +588258,90.656,89.6084 +588259,90.826,87.9754 +588260,91.024,86.3644 +588261,89.117,91.2596 +588262,89.296,89.62126 +588263,89.505,88.0048 +588264,89.741,86.4098 +588265,87.717,91.2539 +588266,87.936,89.63368 +588267,88.184,88.0346 +588268,88.458,86.4565 +588269,86.318,91.247 +588270,86.576,89.64565 +588271,86.862,88.0648 +588272,87.174,86.5044 +588273,84.919,91.2389 +588274,85.217,89.65718 +588275,85.541,88.0954 +588276,85.89,86.5535 +588277,83.521,91.2295 +588278,83.857,89.66828 +588279,84.219,88.1264 +588280,84.606,86.6038 +588281,82.122,91.2189 +588282,82.497,89.67895 +588283,82.897,88.1578 +588284,83.321,86.6554 +588285,80.724,91.207 +588286,81.137,89.6892 +588287,81.575,88.1895 +588288,82.036,86.7082 +588289,79.327,91.194 +588290,79.778,89.69902 +588291,80.253,88.2216 +588292,80.751,86.7621 +588293,77.93,91.1798 +588294,78.418,89.70843 +588295,78.93,88.2541 +588296,79.465,86.8172 +588297,76.533,91.1644 +588298,77.059,89.71744 +588299,77.608,88.2869 +588300,78.178,86.8734 +588301,75.137,91.1479 +588302,75.7,89.72604 +588303,76.285,88.3201 +588304,76.891,86.9308 +588305,73.741,91.1303 +588306,74.341,89.73425 +588307,74.962,88.3537 +588308,75.604,86.9893 +588309,72.346,91.1116 +588310,72.982,89.74207 +588311,73.639,88.3875 +588312,74.316,87.0488 +588313,70.952,91.0918 +588314,71.623,89.74951 +588315,72.315,88.4218 +588316,73.027,87.1095 +588317,69.558,91.071 +588318,70.264,89.75657 +588319,70.991,88.4563 +588320,71.738,87.1712 +588321,68.164,91.0491 +588322,68.906,89.76326 +588323,69.667,88.4912 +588324,70.448,87.2339 +588325,66.772,91.0262 +588326,67.548,89.76958 +588327,68.343,88.5264 +588328,69.158,87.2977 +588329,65.379,91.0023 +588330,66.19,89.77556 +588331,67.019,88.5619 +588332,67.866,87.3624 +588333,63.988,90.97749 +588334,64.832,89.78118 +588335,65.694,88.5977 +588336,66.574,87.4282 +588337,62.597,90.95169 +588338,63.474,89.78646 +588339,64.369,88.6338 +588340,65.282,87.4948 +588341,61.208,90.92497 +588342,62.117,89.79142 +588343,63.044,88.6702 +588344,63.988,87.5624 +588345,59.818,90.89735 +588346,60.759,89.79604 +588347,61.718,88.7068 +588348,62.694,87.6309 +588349,58.43,90.86885 +588350,59.402,89.80035 +588351,60.392,88.7438 +588352,61.399,87.7003 +588353,57.043,90.83951 +588354,58.045,89.80435 +588355,59.066,88.7809 +588356,60.103,87.7706 +588357,55.656,90.80935 +588358,56.689,89.80806 +588359,57.739,88.8184 +588360,58.806,87.8417 +588361,54.27,90.77839 +588362,55.333,89.81146 +588363,56.412,88.8561 +588364,57.509,87.9136 +588365,52.885,90.74666 +588366,53.977,89.81459 +588367,55.085,88.894 +588368,56.21,87.9862 +588369,51.501,90.71418 +588370,52.621,89.81744 +588371,53.758,88.9322 +588372,54.911,88.0597 +588373,50.118,90.68099 +588374,51.265,89.82003 +588375,52.43,88.9705 +588376,53.61,88.1338 +588377,48.736,90.6471 +588378,49.91,89.82236 +588379,51.101,89.00909 +588380,52.309,88.2087 +588381,47.355,90.61255 +588382,48.555,89.82444 +588383,49.773,89.04787 +588384,51.006,88.2842 +588385,45.975,90.57736 +588386,47.201,89.82628 +588387,48.444,89.08684 +588388,49.703,88.3604 +588389,44.595,90.54157 +588390,45.846,89.82789 +588391,47.114,89.12598 +588392,48.398,88.4372 +588393,43.217,90.50519 +588394,44.492,89.82929 +588395,45.785,89.1653 +588396,47.093,88.5146 +588397,41.84,90.46827 +588398,43.139,89.83047 +588399,44.454,89.20477 +588400,45.786,88.5926 +588401,40.464,90.43082 +588402,41.785,89.83145 +588403,43.124,89.2444 +588404,44.479,88.671 +588405,39.089,90.39288 +588406,40.432,89.83224 +588407,41.793,89.28417 +588408,43.17,88.75 +588409,37.715,90.35447 +588410,39.08,89.83285 +588411,40.461,89.32407 +588412,41.86,88.8295 +588413,36.343,90.31563 +588414,37.727,89.83329 +588415,39.13,89.36409 +588416,40.549,88.9094 +588417,34.971,90.27639 +588418,36.375,89.83357 +588419,37.798,89.40422 +588420,39.237,88.9897 +588421,33.6,90.23677 +588422,35.023,89.83369 +588423,36.465,89.44445 +588424,37.924,89.0704 +588425,32.231,90.1968 +588426,33.672,89.83368 +588427,35.132,89.48477 +588428,36.61,89.15144 +588429,30.863,90.15651 +588430,32.321,89.83353 +588431,33.798,89.52517 +588432,35.294,89.23279 +588433,29.496,90.11594 +588434,30.97,89.83326 +588435,32.464,89.56563 +588436,33.977,89.31444 +588437,28.13,90.07512 +588438,29.62,89.83288 +588439,31.13,89.60616 +588440,32.659,89.39633 +588441,26.765,90.034071 +588442,28.27,89.8324 +588443,29.795,89.64673 +588444,31.34,89.47845 +588445,25.402,89.9928269 +588446,26.921,89.83183 +588447,28.46,89.68734 +588448,30.019,89.56075 +588449,24.04,89.951419 +588450,25.572,89.83118 +588451,27.124,89.72797 +588452,28.698,89.64321 +588453,22.679,89.909878 +588454,24.223,89.83046 +588455,25.788,89.76862 +588456,27.375,89.7258 +588457,21.319,89.86824 +588458,22.874,89.82968 +588459,24.452,89.80927 +588460,26.05,89.80847 +588461,19.96,89.82652 +588462,21.526,89.82886 +588463,23.115,89.84992 +588464,24.725,89.89121 +588465,18.603,89.78476 +588466,20.179,89.82799 +588467,21.777,89.89054 +588468,23.398,89.973963 +588469,17.247,89.743 +588470,18.832,89.8271 +588471,20.439,89.931143 +588472,22.07,90.056711 +588473,15.892,89.70125 +588474,17.485,89.82618 +588475,19.101,89.971702 +588476,20.74,90.13942 +588477,14.539,89.65955 +588478,16.138,89.82527 +588479,17.762,90.01221 +588480,19.409,90.22205 +588481,13.186,89.61794 +588482,14.792,89.82435 +588483,16.422,90.052656 +588484,18.077,90.30457 +588485,11.835,89.57644 +588486,13.447,89.82345 +588487,15.083,90.09303 +588488,16.744,90.38695 +588489,10.486,89.53508 +588490,12.101,89.82257 +588491,13.742,90.13332 +588492,15.409,90.46915 +588493,9.1371,89.49389 +588494,10.756,89.82173 +588495,12.401,90.17352 +588496,14.073,90.55115 +588497,7.7898,89.45291 +588498,9.4118,89.82093 +588499,11.06,90.21361 +588500,12.736,90.6329 +588501,6.4439,89.41216 +588502,8.0677,89.82019 +588503,9.7184,90.25358 +588504,11.397,90.71438 +588505,5.0992,89.37168 +588506,6.724,89.81951 +588507,8.3762,90.29343 +588508,10.057,90.79555 +588509,3.7558,89.33149 +588510,5.3807,89.81891 +588511,7.0335,90.33314 +588512,8.7156,90.87638 +588513,2.4136,89.29162 +588514,4.0378,89.81839 +588515,5.6903,90.3727 +588516,7.3728,90.95683 +588517,1.0727,89.25211 +588518,2.6953,89.81797 +588519,4.3467,90.4121 +588520,6.0287,91.0369 +588521,359.73,89.21298 +588522,1.3532,89.81766 +588523,3.0026,90.45133 +588524,4.6833,91.1165 +588525,358.39,89.17426 +588526,0.01144,89.81746 +588527,1.658,90.49038 +588528,3.3365,91.1956 +588529,357.06,89.13598 +588530,358.67,89.81739 +588531,0.31289,90.52924 +588532,1.9884,91.2742 +588533,355.72,89.09817 +588534,357.33,89.81745 +588535,358.97,90.5679 +588536,0.63898,91.3523 +588537,354.39,89.06086 +588538,355.99,89.81766 +588539,357.62,90.60635 +588540,359.29,91.4299 +588541,353.05,89.02408 +588542,354.65,89.81802 +588543,356.27,90.64457 +588544,357.94,91.5068 +588545,351.72,88.9878 +588546,353.31,89.81855 +588547,354.93,90.68257 +588548,356.58,91.5831 +588549,350.39,88.9522 +588550,351.97,89.81925 +588551,353.58,90.72032 +588552,355.23,91.6587 +588553,349.06,88.9172 +588554,350.63,89.82014 +588555,352.23,90.75782 +588556,353.87,91.7336 +588557,347.73,88.8828 +588558,349.29,89.82122 +588559,350.88,90.79506 +588560,352.51,91.8078 +588561,346.4,88.849 +588562,347.95,89.8225 +588563,349.54,90.83202 +588564,351.16,91.8813 +588565,345.08,88.816 +588566,346.62,89.82399 +588567,348.19,90.86871 +588568,349.8,91.954 +588569,343.75,88.7837 +588570,345.28,89.8257 +588571,346.84,90.9051 +588572,348.43,92.0258 +588573,342.43,88.7521 +588574,343.94,89.82764 +588575,345.49,90.94119 +588576,347.07,92.0968 +588577,341.11,88.7213 +588578,342.6,89.82982 +588579,344.14,90.97698 +588580,345.71,92.167 +588581,339.79,88.6913 +588582,341.27,89.83224 +588583,342.78,91.0124 +588584,344.34,92.2362 +588585,338.47,88.6621 +588586,339.93,89.83492 +588587,341.43,91.0476 +588588,342.98,92.3045 +588589,337.15,88.6337 +588590,338.6,89.83786 +588591,340.08,91.0824 +588592,341.61,92.3719 +588593,335.83,88.6062 +588594,337.26,89.84108 +588595,338.73,91.1168 +588596,340.24,92.4382 +588597,334.51,88.5796 +588598,335.92,89.84457 +588599,337.38,91.1509 +588600,338.87,92.5036 +588601,333.19,88.5539 +588602,334.59,89.84834 +588603,336.02,91.1847 +588604,337.5,92.568 +588605,331.88,88.5292 +588606,333.26,89.85242 +588607,334.67,91.2181 +588608,336.13,92.6312 +588609,330.57,88.5054 +588610,331.92,89.85679 +588611,333.32,91.251 +588612,334.75,92.6934 +588613,329.25,88.4826 +588614,330.59,89.86147 +588615,331.96,91.2837 +588616,333.38,92.7545 +588617,327.94,88.4608 +588618,329.25,89.86647 +588619,330.61,91.3159 +588620,332,92.8145 +588621,326.63,88.44 +588622,327.92,89.87179 +588623,329.25,91.3477 +588624,330.63,92.8733 +588625,325.32,88.4203 +588626,326.59,89.87745 +588627,327.9,91.3791 +588628,329.25,92.9309 +588629,324.01,88.4016 +588630,325.26,89.88343 +588631,326.54,91.4101 +588632,327.87,92.9873 +588633,322.7,88.384 +588634,323.92,89.88977 +588635,325.18,91.4407 +588636,326.49,93.0425 +588637,321.39,88.3675 +588638,322.59,89.89645 +588639,323.83,91.4708 +588640,325.11,93.0965 +588641,320.09,88.3521 +588642,321.26,89.903485 +588643,322.47,91.5005 +588644,323.73,93.1492 +588645,318.78,88.3379 +588646,319.93,89.910884 +588647,321.11,91.5298 +588648,322.34,93.2006 +588649,317.48,88.3248 +588650,318.6,89.91865 +588651,319.76,91.5586 +588652,320.96,93.2507 +588653,316.17,88.3129 +588654,317.27,89.926788 +588655,318.4,91.5869 +588656,319.57,93.2995 +588657,314.87,88.3022 +588658,315.94,89.935304 +588659,317.04,91.6148 +588660,318.19,93.347 +588661,313.57,88.2926 +588662,314.6,89.944203 +588663,315.68,91.6423 +588664,316.8,93.3932 +588665,312.27,88.2843 +588666,313.27,89.953491 +588667,314.32,91.6693 +588668,315.41,93.4379 +588669,310.97,88.2772 +588670,311.94,89.96317 +588671,312.96,91.6957 +588672,314.03,93.4813 +588673,309.67,88.2714 +588674,310.61,89.973247 +588675,311.6,91.7218 +588676,312.64,93.5233 +588677,308.37,88.2668 +588678,309.28,89.983724 +588679,310.24,91.7473 +588680,311.25,93.5639 +588681,307.07,88.2635 +588682,307.96,89.9946073 +588683,308.88,91.7723 +588684,309.85,93.6031 +588685,305.77,88.2615 +588686,306.63,90.0058992 +588687,307.52,91.7969 +588688,308.46,93.6408 +588689,304.47,88.2607 +588690,305.3,90.017604 +588691,306.16,91.821 +588692,307.07,93.6771 +588693,303.17,88.2613 +588694,303.97,90.029724 +588695,304.8,91.8445 +588696,305.68,93.712 +588697,301.88,88.2632 +588698,302.64,90.042263 +588699,303.44,91.8676 +588700,304.28,93.7453 +588701,300.58,88.2664 +588702,301.31,90.055225 +588703,302.08,91.8901 +588704,302.89,93.7772 +588705,299.29,88.2709 +588706,299.98,90.068611 +588707,300.72,91.9122 +588708,301.49,93.8077 +588709,297.99,88.2768 +588710,298.65,90.082424 +588711,299.35,91.9337 +588712,300.1,93.8366 +588713,296.7,88.284 +588714,297.33,90.096666 +588715,297.99,91.9547 +588716,298.7,93.8641 +588717,295.4,88.2925 +588718,296,90.11134 +588719,296.63,91.9752 +588720,297.3,93.89 +588721,294.11,88.3025 +588722,294.67,90.12645 +588723,295.27,91.9952 +588724,295.91,93.9145 +588725,292.81,88.3137 +588726,293.34,90.14199 +588727,293.9,92.0146 +588728,294.51,93.9374 +588729,291.52,88.3264 +588730,292.01,90.15796 +588731,292.54,92.0336 +588732,293.11,93.9589 +588733,290.23,88.3404 +588734,290.69,90.17437 +588735,291.18,92.052 +588736,291.71,93.9788 +588737,288.94,88.3558 +588738,289.36,90.19122 +588739,289.82,92.0699 +588740,290.31,93.9972 +588741,287.64,88.3725 +588742,288.03,90.20851 +588743,288.45,92.0873 +588744,288.91,94.0141 +588745,286.35,88.3907 +588746,286.7,90.22624 +588747,287.09,92.1041 +588748,287.51,94.0295 +588749,285.06,88.4102 +588750,285.38,90.2444 +588751,285.73,92.1205 +588752,286.11,94.0434 +588753,283.77,88.4311 +588754,284.05,90.26301 +588755,284.36,92.1363 +588756,284.71,94.0558 +588757,282.48,88.4534 +588758,282.72,90.28205 +588759,283,92.1516 +588760,283.31,94.0666 +588761,281.19,88.477 +588762,281.39,90.30153 +588763,281.63,92.1663 +588764,281.91,94.076 +588765,279.89,88.5021 +588766,280.07,90.32144 +588767,280.27,92.1806 +588768,280.51,94.0838 +588769,278.6,88.5284 +588770,278.74,90.34179 +588771,278.91,92.1943 +588772,279.11,94.0902 +588773,277.31,88.5562 +588774,277.41,90.36257 +588775,277.54,92.2075 +588776,277.71,94.0951 +588777,276.02,88.5853 +588778,276.09,90.38378 +588779,276.18,92.2202 +588780,276.3,94.0984 +588781,274.73,88.6158 +588782,274.76,90.40543 +588783,274.81,92.2324 +588784,274.9,94.1003 +588785,273.44,88.6477 +588786,273.43,90.4275 +588787,273.45,92.244 +588788,273.5,94.1008 +588789,272.15,88.6809 +588790,272.1,90.45 +588791,272.09,92.2552 +588792,272.1,94.0998 +588793,270.85,88.7154 +588794,270.78,90.47292 +588795,270.72,92.2658 +588796,270.7,94.0973 +588797,269.56,88.7513 +588798,269.45,90.49626 +588799,269.36,92.276 +588800,269.3,94.0934 +588801,268.27,88.7885 +588802,268.12,90.52002 +588803,267.99,92.2856 +588804,267.89,94.0881 +588805,266.98,88.827 +588806,266.79,90.54419 +588807,266.63,92.2948 +588808,266.49,94.0813 +588809,265.69,88.8668 +588810,265.46,90.56877 +588811,265.27,92.3034 +588812,265.09,94.0732 +588813,264.39,88.908 +588814,264.14,90.59376 +588815,263.9,92.3116 +588816,263.69,94.0636 +588817,263.1,88.9504 +588818,262.81,90.61915 +588819,262.54,92.3192 +588820,262.29,94.0527 +588821,261.81,88.9941 +588822,261.48,90.64494 +588823,261.17,92.3264 +588824,260.89,94.0404 +588825,260.52,89.03902 +588826,260.15,90.67112 +588827,259.81,92.3331 +588828,259.49,94.0268 +588829,259.22,89.08522 +588830,258.82,90.69769 +588831,258.44,92.3394 +588832,258.09,94.0118 +588833,257.93,89.13266 +588834,257.49,90.72465 +588835,257.08,92.3452 +588836,256.69,93.9956 +588837,256.63,89.18132 +588838,256.17,90.75199 +588839,255.72,92.3505 +588840,255.29,93.978 +588841,255.34,89.23119 +588842,254.84,90.7797 +588843,254.35,92.3553 +588844,253.89,93.9591 +588845,254.04,89.28225 +588846,253.51,90.80777 +588847,252.99,92.3597 +588848,252.49,93.939 +588849,252.75,89.33449 +588850,252.18,90.83621 +588851,251.63,92.3637 +588852,251.1,93.9177 +588853,251.45,89.38789 +588854,250.85,90.86501 +588855,250.26,92.3672 +588856,249.7,93.8951 +588857,250.15,89.44243 +588858,249.52,90.89416 +588859,248.9,92.3703 +588860,248.3,93.8713 +588861,248.85,89.49809 +588862,248.19,90.92365 +588863,247.54,92.373 +588864,246.9,93.8464 +588865,247.56,89.55486 +588866,246.86,90.95347 +588867,246.17,92.3752 +588868,245.51,93.8203 +588869,246.26,89.61272 +588870,245.53,90.98363 +588871,244.81,92.377 +588872,244.11,93.793 +588873,244.96,89.67164 +588874,244.2,91.0141 +588875,243.45,92.3785 +588876,242.72,93.7647 +588877,243.66,89.73161 +588878,242.87,91.0449 +588879,242.09,92.3795 +588880,241.32,93.7352 +588881,242.36,89.7926 +588882,241.53,91.076 +588883,240.73,92.3801 +588884,239.93,93.7047 +588885,241.06,89.8546 +588886,240.2,91.1074 +588887,239.36,92.3804 +588888,238.54,93.6732 +588889,239.75,89.917578 +588890,238.87,91.1391 +588891,238,92.3803 +588892,237.15,93.6406 +588893,238.45,89.981515 +588894,237.54,91.1711 +588895,236.64,92.3798 +588896,235.76,93.607 +588897,237.15,90.046387 +588898,236.21,91.2034 +588899,235.28,92.3789 +588900,234.36,93.5725 +588901,235.84,90.11217 +588902,234.87,91.2359 +588903,233.92,92.3777 +588904,232.98,93.537 +588905,234.54,90.17884 +588906,233.54,91.2687 +588907,232.56,92.3762 +588908,231.59,93.5006 +588909,233.23,90.24638 +588910,232.21,91.3018 +588911,231.2,92.3743 +588912,230.2,93.4633 +588913,231.92,90.31475 +588914,230.87,91.335 +588915,229.84,92.3721 +588916,228.81,93.4252 +588917,230.62,90.38393 +588918,229.54,91.3686 +588919,228.48,92.3696 +588920,227.42,93.3862 +588921,229.31,90.4539 +588922,228.21,91.4023 +588923,227.12,92.3668 +588924,226.04,93.3465 +588925,228,90.52463 +588926,226.87,91.4363 +588927,225.76,92.3637 +588928,224.65,93.3059 +588929,226.69,90.59609 +588930,225.54,91.4705 +588931,224.4,92.3603 +588932,223.27,93.2646 +588933,225.37,90.66825 +588934,224.2,91.5048 +588935,223.04,92.3566 +588936,221.89,93.2226 +588937,224.06,90.74109 +588938,222.87,91.5394 +588939,221.68,92.3526 +588940,220.51,93.1798 +588941,222.75,90.81457 +588942,221.53,91.5741 +588943,220.32,92.3484 +588944,219.13,93.1365 +588945,221.43,90.88868 +588946,220.19,91.609 +588947,218.96,92.344 +588948,217.75,93.0925 +588949,220.12,90.96337 +588950,218.86,91.6441 +588951,217.61,92.3393 +588952,216.37,93.0479 +588953,218.8,91.0386 +588954,217.52,91.6793 +588955,216.25,92.3343 +588956,214.99,93.0027 +588957,217.48,91.1144 +588958,216.18,91.7147 +588959,214.89,92.3292 +588960,213.61,92.9569 +588961,216.16,91.1907 +588962,214.84,91.7501 +588963,213.54,92.3238 +588964,212.24,92.9107 +588965,214.84,91.2674 +588966,213.51,91.7857 +588967,212.18,92.3183 +588968,210.86,92.864 +588969,213.52,91.3446 +588970,212.17,91.8214 +588971,210.82,92.3125 +588972,209.49,92.8168 +588973,212.2,91.4222 +588974,210.83,91.8572 +588975,209.47,92.3066 +588976,208.12,92.7693 +588977,210.88,91.5002 +588978,209.49,91.8931 +588979,208.11,92.3005 +588980,206.75,92.7213 +588981,209.55,91.5785 +588982,208.15,91.9291 +588983,206.76,92.2942 +588984,205.38,92.673 +588985,208.23,91.6571 +588986,206.81,91.9651 +588987,205.4,92.2878 +588988,204.01,92.6244 +588989,206.9,91.736 +588990,205.47,92.0012 +588991,204.05,92.2813 +588992,202.64,92.5754 +588993,205.57,91.8151 +588994,204.13,92.0373 +588995,202.69,92.2746 +588996,201.27,92.5263 +588997,204.24,91.8945 +588998,202.79,92.0734 +588999,201.34,92.2678 +589000,199.91,92.4768 +589001,202.91,91.974 +589002,201.44,92.1096 +589003,199.99,92.261 +589004,198.54,92.4272 +589005,201.58,92.0537 +589006,200.1,92.1458 +589007,198.63,92.254 +589008,197.18,92.3775 +589009,200.25,92.1335 +589010,198.76,92.1819 +589011,197.28,92.2469 +589012,195.82,92.3276 +589013,198.91,92.2134 +589014,197.42,92.2181 +589015,195.93,92.2398 +589016,194.46,92.2776 +589017,197.58,92.2933 +589018,196.07,92.2542 +589019,194.58,92.2326 +589020,193.1,92.2275 +589021,196.24,92.3732 +589022,194.73,92.2903 +589023,193.23,92.2254 +589024,191.74,92.1774 +589025,194.9,92.4531 +589026,193.38,92.3264 +589027,191.88,92.2181 +589028,190.38,92.1273 +589029,193.56,92.533 +589030,192.04,92.3624 +589031,190.52,92.2108 +589032,189.02,92.0772 +589033,192.22,92.6127 +589034,190.69,92.3983 +589035,189.17,92.2034 +589036,187.67,92.0272 +589037,190.88,92.6924 +589038,189.35,92.4341 +589039,187.82,92.1961 +589040,186.32,91.9773 +589041,189.54,92.7718 +589042,188,92.4699 +589043,186.48,92.1888 +589044,184.96,91.9275 +589045,188.2,92.8511 +589046,186.65,92.5055 +589047,185.13,92.1815 +589048,183.61,91.8779 +589049,186.85,92.9302 +589050,185.31,92.541 +589051,183.78,92.1742 +589052,182.26,91.8285 +589053,185.51,93.009 +589054,183.96,92.5764 +589055,182.43,92.1669 +589056,180.91,91.7792 +589057,184.16,93.0875 +589058,182.61,92.6117 +589059,181.08,92.1597 +589060,179.57,91.7303 +589061,182.81,93.1656 +589062,181.26,92.6468 +589063,179.73,92.1526 +589064,178.22,91.6816 +589065,181.46,93.2434 +589066,179.91,92.6818 +589067,178.39,92.1455 +589068,176.88,91.6332 +589069,180.11,93.3208 +589070,178.56,92.7166 +589071,177.04,92.1385 +589072,175.53,91.5852 +589073,178.75,93.3978 +589074,177.21,92.7512 +589075,175.69,92.1316 +589076,174.19,91.5375 +589077,177.4,93.4743 +589078,175.86,92.7856 +589079,174.35,92.1247 +589080,172.85,91.4902 +589081,176.04,93.5503 +589082,174.51,92.8198 +589083,173,92.118 +589084,171.51,91.4434 +589085,174.69,93.6258 +589086,173.16,92.8538 +589087,171.66,92.1115 +589088,170.17,91.3971 +589089,173.33,93.7007 +589090,171.81,92.8875 +589091,170.31,92.105 +589092,168.83,91.3512 +589093,171.97,93.775 +589094,170.46,92.9211 +589095,168.97,92.0987 +589096,167.49,91.3059 +589097,170.61,93.8487 +589098,169.11,92.9543 +589099,167.62,92.0925 +589100,166.16,91.2611 +589101,169.25,93.9217 +589102,167.75,92.9874 +589103,166.28,92.0865 +589104,164.82,91.2169 +589105,167.89,93.9941 +589106,166.4,93.0201 +589107,164.93,92.0807 +589108,163.49,91.1733 +589109,166.52,94.0657 +589110,165.05,93.0526 +589111,163.59,92.075 +589112,162.16,91.1303 +589113,165.16,94.1365 +589114,163.69,93.0848 +589115,162.25,92.0696 +589116,160.83,91.088 +589117,163.79,94.2066 +589118,162.34,93.1167 +589119,160.91,92.0643 +589120,159.5,91.0465 +589121,162.43,94.2758 +589122,160.98,93.1483 +589123,159.56,92.0592 +589124,158.17,91.0056 +589125,161.06,94.3442 +589126,159.63,93.1796 +589127,158.22,92.0544 +589128,156.84,90.96544 +589129,159.69,94.4117 +589130,158.27,93.2105 +589131,156.88,92.0498 +589132,155.51,90.92608 +589133,158.32,94.4782 +589134,156.92,93.2411 +589135,155.54,92.0454 +589136,154.19,90.88752 +589137,156.94,94.5439 +589138,155.56,93.2714 +589139,154.2,92.0412 +589140,152.86,90.84979 +589141,155.57,94.6086 +589142,154.2,93.3013 +589143,152.86,92.0374 +589144,151.54,90.8129 +589145,154.2,94.6722 +589146,152.84,93.3308 +589147,151.52,92.0337 +589148,150.22,90.77689 +589149,152.82,94.7349 +589150,151.49,93.36 +589151,150.18,92.0304 +589152,148.9,90.74178 +589153,151.44,94.7965 +589154,150.13,93.3888 +589155,148.84,92.0273 +589156,147.58,90.70759 +589157,150.07,94.857 +589158,148.77,93.4172 +589159,147.5,92.0245 +589160,146.26,90.67434 +589161,148.69,94.9164 +589162,147.41,93.4452 +589163,146.16,92.022 +589164,144.94,90.64206 +589165,147.31,94.9747 +589166,146.05,93.4728 +589167,144.82,92.0198 +589168,143.62,90.61077 +589169,145.93,95.0318 +589170,144.69,93.5 +589171,143.49,92.0179 +589172,142.3,90.5805 +589173,144.55,95.0878 +589174,143.33,93.5267 +589175,142.15,92.0163 +589176,140.99,90.55125 +589177,143.16,95.1425 +589178,141.97,93.5531 +589179,140.81,92.0151 +589180,139.67,90.52306 +589181,141.78,95.196 +589182,140.61,93.5789 +589183,139.47,92.0141 +589184,138.36,90.49595 +589185,140.4,95.2482 +589186,139.25,93.6044 +589187,138.14,92.0135 +589188,137.05,90.46993 +589189,139.01,95.2992 +589190,137.89,93.6294 +589191,136.8,92.0133 +589192,135.73,90.44502 +589193,137.62,95.3489 +589194,136.53,93.6539 +589195,135.46,92.0134 +589196,134.42,90.42125 +589197,136.24,95.3973 +589198,135.17,93.678 +589199,134.13,92.0138 +589200,133.11,90.39862 +589201,134.85,95.4443 +589202,133.8,93.7016 +589203,132.79,92.0147 +589204,131.8,90.37717 +589205,133.46,95.4899 +589206,132.44,93.7247 +589207,131.45,92.0158 +589208,130.49,90.35689 +589209,132.07,95.5342 +589210,131.08,93.7473 +589211,130.12,92.0174 +589212,129.18,90.33782 +589213,130.68,95.5771 +589214,129.72,93.7695 +589215,128.78,92.0193 +589216,127.88,90.31997 +589217,129.29,95.6186 +589218,128.35,93.7911 +589219,127.45,92.0217 +589220,126.57,90.30334 +589221,127.9,95.6586 +589222,126.99,93.8122 +589223,126.11,92.0244 +589224,125.26,90.28796 +589225,126.5,95.6972 +589226,125.63,93.8329 +589227,124.78,92.0275 +589228,123.96,90.27385 +589229,125.11,95.7344 +589230,124.26,93.853 +589231,123.44,92.031 +589232,122.65,90.261 +589233,123.71,95.7701 +589234,122.9,93.8726 +589235,122.11,92.0348 +589236,121.35,90.24944 +589237,122.32,95.8042 +589238,121.53,93.8917 +589239,120.77,92.0392 +589240,120.04,90.23918 +589241,120.92,95.8369 +589242,120.17,93.9103 +589243,119.44,92.0439 +589244,118.74,90.23023 +589245,119.53,95.8681 +589246,118.8,93.9283 +589247,118.11,92.049 +589248,117.44,90.2226 +589249,118.13,95.8977 +589250,117.44,93.9458 +589251,116.77,92.0545 +589252,116.13,90.2163 +589253,116.73,95.9259 +589254,116.07,93.9628 +589255,115.44,92.0605 +589256,114.83,90.21134 +589257,115.34,95.9524 +589258,114.71,93.9792 +589259,114.11,92.0669 +589260,113.53,90.20772 +589261,113.94,95.9774 +589262,113.34,93.9951 +589263,112.77,92.0737 +589264,112.23,90.20547 +589265,112.54,96.0009 +589266,111.97,94.0105 +589267,111.44,92.0809 +589268,110.93,90.20457 +589269,111.14,96.0228 +589270,110.61,94.0253 +589271,110.11,92.0886 +589272,109.63,90.20505 +589273,109.74,96.0431 +589274,109.24,94.0395 +589275,108.77,92.0967 +589276,108.33,90.20691 +589277,108.34,96.0619 +589278,107.88,94.0533 +589279,107.44,92.1052 +589280,107.03,90.21014 +589281,106.94,96.079 +589282,106.51,94.0664 +589283,106.11,92.1142 +589284,105.73,90.21476 +589285,105.54,96.0946 +589286,105.14,94.079 +589287,104.77,92.1235 +589288,104.43,90.22078 +589289,104.14,96.1086 +589290,103.78,94.0911 +589291,103.44,92.1334 +589292,103.13,90.22818 +589293,102.74,96.121 +589294,102.41,94.1026 +589295,102.11,92.1437 +589296,101.83,90.23698 +589297,101.33,96.1318 +589298,101.04,94.1135 +589299,100.78,92.1544 +589300,100.53,90.24718 +589301,99.932,96.141 +589302,99.675,94.1239 +589303,99.444,92.1655 +589304,99.233,90.25878 +589305,98.53,96.1486 +589306,98.308,94.1337 +589307,98.111,92.1771 +589308,97.934,90.27178 +589309,97.128,96.1547 +589310,96.941,94.143 +589311,96.778,92.1891 +589312,96.636,90.28618 +589313,95.726,96.1591 +589314,95.574,94.1517 +589315,95.446,92.2016 +589316,95.337,90.30198 +589317,94.323,96.162 +589318,94.207,94.1599 +589319,94.113,92.2145 +589320,94.039,90.31918 +589321,92.921,96.1633 +589322,92.839,94.1675 +589323,92.78,92.2278 +589324,92.741,90.33777 +589325,91.518,96.163 +589326,91.472,94.1746 +589327,91.448,92.2416 +589328,91.442,90.35775 +589329,90.116,96.1612 +589330,90.105,94.1811 +589331,90.115,92.2558 +589332,90.144,90.37912 +589333,88.713,96.1578 +589334,88.737,94.187 +589335,88.782,92.2704 +589336,88.845,90.40187 +589337,87.311,96.1528 +589338,87.37,94.1924 +589339,87.45,92.2855 +589340,87.547,90.426 +589341,85.908,96.1463 +589342,86.003,94.1973 +589343,86.117,92.3009 +589344,86.248,90.45151 +589345,84.506,96.1382 +589346,84.635,94.2017 +589347,84.784,92.3169 +589348,84.949,90.47838 +589349,83.104,96.1287 +589350,83.268,94.2055 +589351,83.451,92.3332 +589352,83.65,90.50661 +589353,81.702,96.1176 +589354,81.901,94.2087 +589355,82.118,92.3499 +589356,82.351,90.53619 +589357,80.3,96.105 +589358,80.534,94.2114 +589359,80.785,92.3671 +589360,81.051,90.56711 +589361,78.898,96.0909 +589362,79.166,94.2136 +589363,79.451,92.3847 +589364,79.751,90.59936 +589365,77.497,96.0754 +589366,77.799,94.2153 +589367,78.118,92.4027 +589368,78.451,90.63294 +589369,76.096,96.0584 +589370,76.432,94.2165 +589371,76.784,92.4211 +589372,77.151,90.66783 +589373,74.695,96.0399 +589374,75.065,94.2171 +589375,75.451,92.4399 +589376,75.85,90.70402 +589377,73.295,96.02 +589378,73.699,94.2173 +589379,74.117,92.459 +589380,74.549,90.74151 +589381,71.895,95.9987 +589382,72.332,94.2169 +589383,72.783,92.4786 +589384,73.247,90.78026 +589385,70.495,95.976 +589386,70.965,94.216 +589387,71.449,92.4986 +589388,71.945,90.82029 +589389,69.096,95.9519 +589390,69.599,94.2146 +589391,70.115,92.5189 +589392,70.643,90.86156 +589393,67.697,95.9264 +589394,68.232,94.2128 +589395,68.78,92.5397 +589396,69.34,90.90406 +589397,66.299,95.8996 +589398,66.866,94.2104 +589399,67.446,92.5608 +589400,68.036,90.94778 +589401,64.901,95.8715 +589402,65.5,94.2076 +589403,66.111,92.5822 +589404,66.732,90.99271 +589405,63.504,95.842 +589406,64.134,94.2043 +589407,64.776,92.604 +589408,65.428,91.0388 +589409,62.107,95.8113 +589410,62.769,94.2005 +589411,63.441,92.6262 +589412,64.123,91.0861 +589413,60.711,95.7793 +589414,61.403,94.1963 +589415,62.105,92.6487 +589416,62.817,91.1345 +589417,59.315,95.7461 +589418,60.038,94.1916 +589419,60.77,92.6716 +589420,61.511,91.1841 +589421,57.921,95.7116 +589422,58.672,94.1865 +589423,59.434,92.6948 +589424,60.204,91.2348 +589425,56.526,95.676 +589426,57.307,94.1809 +589427,58.098,92.7183 +589428,58.896,91.2866 +589429,55.133,95.6392 +589430,55.943,94.1749 +589431,56.761,92.7421 +589432,57.588,91.3394 +589433,53.74,95.6012 +589434,54.578,94.1685 +589435,55.425,92.7663 +589436,56.279,91.3933 +589437,52.348,95.5621 +589438,53.214,94.1617 +589439,54.088,92.7908 +589440,54.969,91.4483 +589441,50.956,95.5219 +589442,51.85,94.1544 +589443,52.751,92.8155 +589444,53.659,91.5042 +589445,49.566,95.4807 +589446,50.486,94.1468 +589447,51.413,92.8406 +589448,52.347,91.5612 +589449,48.176,95.4384 +589450,49.122,94.1388 +589451,50.075,92.8659 +589452,51.035,91.6191 +589453,46.787,95.3951 +589454,47.759,94.1304 +589455,48.737,92.8915 +589456,49.722,91.6779 +589457,45.398,95.3508 +589458,46.396,94.1216 +589459,47.399,92.9173 +589460,48.409,91.7377 +589461,44.011,95.3055 +589462,45.033,94.1124 +589463,46.061,92.9435 +589464,47.094,91.7984 +589465,42.625,95.2593 +589466,43.67,94.1029 +589467,44.722,92.9698 +589468,45.778,91.8599 +589469,41.239,95.2122 +589470,42.308,94.0931 +589471,43.383,92.9964 +589472,44.462,91.9223 +589473,39.854,95.1642 +589474,40.946,94.0829 +589475,42.043,93.0233 +589476,43.145,91.9855 +589477,38.47,95.1154 +589478,39.584,94.0723 +589479,40.703,93.0503 +589480,41.827,92.0494 +589481,37.088,95.0657 +589482,38.223,94.0615 +589483,39.363,93.0776 +589484,40.508,92.1142 +589485,35.706,95.0153 +589486,36.862,94.0503 +589487,38.022,93.105 +589488,39.187,92.1797 +589489,34.325,94.9641 +589490,35.501,94.0389 +589491,36.682,93.1327 +589492,37.866,92.2459 +589493,32.945,94.9122 +589494,34.14,94.0272 +589495,35.34,93.1605 +589496,36.544,92.3127 +589497,31.566,94.8596 +589498,32.78,94.0151 +589499,33.999,93.1885 +589500,35.221,92.3802 +589501,30.188,94.8063 +589502,31.42,94.0028 +589503,32.657,93.2167 +589504,33.897,92.4484 +589505,28.811,94.7524 +589506,30.061,93.9903 +589507,31.315,93.245 +589508,32.572,92.5171 +589509,27.435,94.6979 +589510,28.701,93.9775 +589511,29.972,93.2735 +589512,31.246,92.5864 +589513,26.061,94.6429 +589514,27.343,93.9645 +589515,28.629,93.3021 +589516,29.919,92.6563 +589517,24.687,94.5872 +589518,25.984,93.9512 +589519,27.286,93.3308 +589520,28.59,92.7266 +589521,23.314,94.5311 +589522,24.626,93.9377 +589523,25.942,93.3596 +589524,27.261,92.7974 +589525,21.943,94.4746 +589526,23.268,93.924 +589527,24.598,93.3886 +589528,25.93,92.8686 +589529,20.573,94.4175 +589530,21.91,93.9102 +589531,23.253,93.4176 +589532,24.599,92.9403 +589533,19.203,94.3601 +589534,20.553,93.8961 +589535,21.908,93.4467 +589536,23.266,93.0123 +589537,17.835,94.3023 +589538,19.197,93.8819 +589539,20.563,93.4758 +589540,21.932,93.0847 +589541,16.468,94.2442 +589542,17.84,93.8675 +589543,19.217,93.505 +589544,20.597,93.1574 +589545,15.102,94.1857 +589546,16.484,93.8529 +589547,17.871,93.5343 +589548,19.261,93.2304 +589549,13.738,94.127 +589550,15.129,93.8382 +589551,16.524,93.5636 +589552,17.924,93.3036 +589553,12.374,94.0681 +589554,13.773,93.8234 +589555,15.178,93.5929 +589556,16.585,93.377 +589557,11.012,94.0089 +589558,12.418,93.8085 +589559,13.83,93.6222 +589560,15.246,93.4506 +589561,9.6503,93.9496 +589562,11.064,93.7934 +589563,12.482,93.6515 +589564,13.905,93.5244 +589565,8.2902,93.8901 +589566,9.7096,93.7783 +589567,11.134,93.6808 +589568,12.563,93.5982 +589569,6.9313,93.8305 +589570,8.3558,93.763 +589571,9.7858,93.7101 +589572,11.22,93.6722 +589573,5.5736,93.7708 +589574,7.0024,93.7477 +589575,8.4369,93.7394 +589576,9.8755,93.7462 +589577,4.2171,93.7111 +589578,5.6494,93.7324 +589579,7.0875,93.7686 +589580,8.53,93.8202 +589581,2.8617,93.6514 +589582,4.2967,93.7169 +589583,5.7377,93.7977 +589584,7.1832,93.8942 +589585,1.5075,93.5918 +589586,2.9444,93.7015 +589587,4.3875,93.8268 +589588,5.8353,93.9681 +589589,0.15451,93.5321 +589590,1.5926,93.686 +589591,3.0369,93.8558 +589592,4.4862,94.042 +589593,358.8,93.4726 +589594,0.24106,93.6705 +589595,1.6859,93.8847 +589596,3.1359,94.1157 +589597,357.45,93.4132 +589598,358.89,93.655 +589599,0.33451,93.9135 +589600,1.7844,94.1892 +589601,356.1,93.354 +589602,357.54,93.6395 +589603,358.98,93.9422 +589604,0.43168,94.2626 +589605,354.75,93.2949 +589606,356.19,93.624 +589607,357.63,93.9708 +589608,359.08,94.3358 +589609,353.41,93.2361 +589610,354.84,93.6085 +589611,356.28,93.9992 +589612,357.72,94.4086 +589613,352.06,93.1775 +589614,353.49,93.5931 +589615,354.92,94.0275 +589616,356.37,94.4812 +589617,350.72,93.1192 +589618,352.14,93.5777 +589619,353.57,94.0556 +589620,355.01,94.5535 +589621,349.37,93.0613 +589622,350.79,93.5624 +589623,352.22,94.0836 +589624,353.65,94.6253 +589625,348.03,93.0037 +589626,349.44,93.5472 +589627,350.86,94.1114 +589628,352.29,94.6968 +589629,346.69,92.9464 +589630,348.09,93.532 +589631,349.51,94.139 +589632,350.93,94.7679 +589633,345.35,92.8896 +589634,346.75,93.5169 +589635,348.15,94.1663 +589636,349.57,94.8385 +589637,344.01,92.8332 +589638,345.4,93.5019 +589639,346.8,94.1935 +589640,348.2,94.9085 +589641,342.67,92.7773 +589642,344.05,93.4871 +589643,345.44,94.2204 +589644,346.84,94.9781 +589645,341.34,92.7219 +589646,342.71,93.4723 +589647,344.09,94.2471 +589648,345.47,95.0471 +589649,340,92.667 +589650,341.36,93.4577 +589651,342.73,94.2736 +589652,344.11,95.1154 +589653,338.67,92.6127 +589654,340.01,93.4433 +589655,341.37,94.2998 +589656,342.74,95.1832 +589657,337.33,92.559 +589658,338.67,93.429 +589659,340.01,94.3257 +589660,341.37,95.2503 +589661,336,92.5059 +589662,337.32,93.4148 +589663,338.66,94.3513 +589664,340,95.3166 +589665,334.67,92.4535 +589666,335.98,93.4009 +589667,337.3,94.3767 +589668,338.63,95.3823 +589669,333.34,92.4017 +589670,334.63,93.3871 +589671,335.94,94.4017 +589672,337.26,95.4472 +589673,332.01,92.3507 +589674,333.29,93.3735 +589675,334.58,94.4265 +589676,335.88,95.5112 +589677,330.68,92.3004 +589678,331.95,93.3601 +589679,333.22,94.4509 +589680,334.51,95.5745 +589681,329.35,92.2508 +589682,330.6,93.3469 +589683,331.86,94.475 +589684,333.13,95.6369 +589685,328.03,92.2021 +589686,329.26,93.334 +589687,330.5,94.4987 +589688,331.75,95.6984 +589689,326.7,92.1541 +589690,327.92,93.3212 +589691,329.14,94.5221 +589692,330.38,95.759 +589693,325.38,92.107 +589694,326.57,93.3088 +589695,327.78,94.5452 +589696,329,95.8186 +589697,324.06,92.0607 +589698,325.23,93.2965 +589699,326.42,94.5678 +589700,327.62,95.8773 +589701,322.73,92.0154 +589702,323.89,93.2845 +589703,325.06,94.5901 +589704,326.24,95.9349 +589705,321.41,91.971 +589706,322.55,93.2728 +589707,323.7,94.612 +589708,324.86,95.9916 +589709,320.09,91.9275 +589710,321.21,93.2614 +589711,322.33,94.6335 +589712,323.47,96.0471 +589713,318.77,91.8849 +589714,319.87,93.2502 +589715,320.97,94.6547 +589716,322.09,96.1016 +589717,317.45,91.8434 +589718,318.53,93.2394 +589719,319.61,94.6753 +589720,320.7,96.1549 +589721,316.14,91.8028 +589722,317.19,93.2288 +589723,318.25,94.6956 +589724,319.32,96.2071 +589725,314.82,91.7633 +589726,315.85,93.2185 +589727,316.88,94.7155 +589728,317.93,96.2581 +589729,313.5,91.7248 +589730,314.51,93.2086 +589731,315.52,94.7349 +589732,316.54,96.308 +589733,312.19,91.6874 +589734,313.17,93.1989 +589735,314.16,94.7538 +589736,315.16,96.3566 +589737,310.87,91.6511 +589738,311.83,93.1896 +589739,312.79,94.7723 +589740,313.77,96.4039 +589741,309.56,91.616 +589742,310.49,93.1806 +589743,311.43,94.7904 +589744,312.38,96.45 +589745,308.25,91.5819 +589746,309.15,93.172 +589747,310.06,94.808 +589748,310.99,96.4948 +589749,306.93,91.549 +589750,307.81,93.1637 +589751,308.7,94.8251 +589752,309.6,96.5383 +589753,305.62,91.5172 +589754,306.47,93.1558 +589755,307.33,94.8417 +589756,308.2,96.5804 +589757,304.31,91.4867 +589758,305.13,93.1482 +589759,305.97,94.8579 +589760,306.81,96.6212 +589761,303,91.4573 +589762,303.8,93.141 +589763,304.6,94.8735 +589764,305.42,96.6606 +589765,301.69,91.4292 +589766,302.46,93.1342 +589767,303.23,94.8886 +589768,304.02,96.6986 +589769,300.38,91.4023 +589770,301.12,93.1277 +589771,301.87,94.9033 +589772,302.63,96.7352 +589773,299.08,91.3767 +589774,299.78,93.1216 +589775,300.5,94.9174 +589776,301.23,96.7704 +589777,297.77,91.3523 +589778,298.45,93.116 +589779,299.14,94.931 +589780,299.84,96.8041 +589781,296.46,91.3291 +589782,297.11,93.1107 +589783,297.77,94.9441 +589784,298.44,96.8363 +589785,295.15,91.3073 +589786,295.77,93.1058 +589787,296.4,94.9567 +589788,297.04,96.867 +589789,293.85,91.2868 +589790,294.44,93.1012 +589791,295.03,94.9687 +589792,295.64,96.8963 +589793,292.54,91.2676 +589794,293.1,93.0972 +589795,293.67,94.9802 +589796,294.24,96.924 +589797,291.24,91.2497 +589798,291.76,93.0935 +589799,292.3,94.9912 +589800,292.85,96.9502 +589801,289.93,91.2332 +589802,290.43,93.0902 +589803,290.93,95.0016 +589804,291.45,96.9749 +589805,288.63,91.218 +589806,289.09,93.0873 +589807,289.56,95.0114 +589808,290.05,96.998 +589809,287.32,91.2041 +589810,287.76,93.0849 +589811,288.2,95.0208 +589812,288.65,97.0195 +589813,286.02,91.1916 +589814,286.42,93.0829 +589815,286.83,95.0295 +589816,287.25,97.0395 +589817,284.71,91.1805 +589818,285.08,93.0813 +589819,285.46,95.0377 +589820,285.85,97.0579 +589821,283.41,91.1708 +589822,283.75,93.0801 +589823,284.09,95.0454 +589824,284.44,97.0746 +589825,282.11,91.1624 +589826,282.41,93.0793 +589827,282.72,95.0524 +589828,283.04,97.0898 +589829,280.81,91.1555 +589830,281.08,93.079 +589831,281.35,95.059 +589832,281.64,97.1034 +589833,279.5,91.1499 +589834,279.74,93.0791 +589835,279.99,95.0649 +589836,280.24,97.1154 +589837,278.2,91.1457 +589838,278.41,93.0797 +589839,278.62,95.0703 +589840,278.84,97.1257 +589841,276.9,91.143 +589842,277.07,93.0807 +589843,277.25,95.0751 +589844,277.43,97.1345 +589845,275.6,91.1416 +589846,275.74,93.0821 +589847,275.88,95.0793 +589848,276.03,97.1416 +589849,274.29,91.1417 +589850,274.4,93.084 +589851,274.51,95.083 +589852,274.63,97.147 +589853,272.99,91.1431 +589854,273.06,93.0863 +589855,273.14,95.0861 +589856,273.23,97.1509 +589857,271.69,91.146 +589858,271.73,93.089 +589859,271.77,95.0886 +589860,271.82,97.1531 +589861,270.39,91.1503 +589862,270.39,93.0922 +589863,270.4,95.0906 +589864,270.42,97.1537 +589865,269.09,91.156 +589866,269.06,93.0958 +589867,269.04,95.092 +589868,269.02,97.1526 +589869,267.79,91.1631 +589870,267.72,93.0998 +589871,267.67,95.0928 +589872,267.62,97.15 +589873,266.48,91.1716 +589874,266.39,93.1043 +589875,266.3,95.093 +589876,266.21,97.1457 +589877,265.18,91.1815 +589878,265.05,93.1092 +589879,264.93,95.0927 +589880,264.81,97.1397 +589881,263.88,91.1928 +589882,263.72,93.1146 +589883,263.56,95.0918 +589884,263.41,97.1322 +589885,262.58,91.2055 +589886,262.38,93.1204 +589887,262.19,95.0903 +589888,262,97.1231 +589889,261.27,91.2196 +589890,261.05,93.1266 +589891,260.82,95.0883 +589892,260.6,97.1123 +589893,259.97,91.2351 +589894,259.71,93.1332 +589895,259.45,95.0857 +589896,259.2,97.1 +589897,258.67,91.2519 +589898,258.38,93.1403 +589899,258.09,95.0826 +589900,257.8,97.086 +589901,257.37,91.2701 +589902,257.04,93.1478 +589903,256.72,95.0789 +589904,256.4,97.0705 +589905,256.06,91.2897 +589906,255.7,93.1557 +589907,255.35,95.0746 +589908,255,97.0534 +589909,254.76,91.3107 +589910,254.37,93.1641 +589911,253.98,95.0698 +589912,253.59,97.0348 +589913,253.45,91.333 +589914,253.03,93.1728 +589915,252.61,95.0644 +589916,252.19,97.0146 +589917,252.15,91.3566 +589918,251.7,93.182 +589919,251.24,95.0585 +589920,250.79,96.9929 +589921,250.84,91.3816 +589922,250.36,93.1915 +589923,249.88,95.0521 +589924,249.39,96.9696 +589925,249.54,91.4079 +589926,249.02,93.2015 +589927,248.51,95.0451 +589928,247.99,96.9449 +589929,248.23,91.4355 +589930,247.69,93.2119 +589931,247.14,95.0376 +589932,246.59,96.9186 +589933,246.93,91.4644 +589934,246.35,93.2227 +589935,245.77,95.0296 +589936,245.2,96.8909 +589937,245.62,91.4945 +589938,245.01,93.2338 +589939,244.41,95.021 +589940,243.8,96.8617 +589941,244.31,91.526 +589942,243.68,93.2454 +589943,243.04,95.0119 +589944,242.4,96.8311 +589945,243.01,91.5587 +589946,242.34,93.2573 +589947,241.67,95.0024 +589948,241,96.799 +589949,241.7,91.5926 +589950,241,93.2696 +589951,240.31,94.9923 +589952,239.61,96.7655 +589953,240.39,91.6277 +589954,239.66,93.2823 +589955,238.94,94.9817 +589956,238.21,96.7307 +589957,239.08,91.6641 +589958,238.33,93.2953 +589959,237.57,94.9706 +589960,236.82,96.6944 +589961,237.77,91.7016 +589962,236.99,93.3087 +589963,236.21,94.959 +589964,235.42,96.6568 +589965,236.46,91.7403 +589966,235.65,93.3225 +589967,234.84,94.947 +589968,234.03,96.6179 +589969,235.15,91.7802 +589970,234.31,93.3366 +589971,233.47,94.9344 +589972,232.63,96.5777 +589973,233.84,91.8212 +589974,232.97,93.351 +589975,232.11,94.9215 +589976,231.24,96.5362 +589977,232.52,91.8633 +589978,231.63,93.3658 +589979,230.74,94.908 +589980,229.85,96.4934 +589981,231.21,91.9065 +589982,230.29,93.3809 +589983,229.38,94.8941 +589984,228.46,96.4494 +589985,229.9,91.9508 +589986,228.96,93.3963 +589987,228.01,94.8797 +589988,227.07,96.4042 +589989,228.58,91.9962 +589990,227.62,93.412 +589991,226.65,94.865 +589992,225.68,96.3578 +589993,227.26,92.0426 +589994,226.28,93.428 +589995,225.28,94.8497 +589996,224.29,96.3103 +589997,225.95,92.0899 +589998,224.94,93.4444 +589999,223.92,94.8341 +590000,222.9,96.2616 +590001,224.63,92.1383 +590002,223.59,93.461 +590003,222.56,94.818 +590004,221.52,96.2118 +590005,223.31,92.1877 +590006,222.25,93.4779 +590007,221.19,94.8016 +590008,220.13,96.1609 +590009,221.99,92.238 +590010,220.91,93.4951 +590011,219.83,94.7847 +590012,218.74,96.109 +590013,220.67,92.2892 +590014,219.57,93.5125 +590015,218.47,94.7675 +590016,217.36,96.056 +590017,219.35,92.3413 +590018,218.23,93.5302 +590019,217.1,94.7499 +590020,215.98,96.002 +590021,218.03,92.3943 +590022,216.89,93.5481 +590023,215.74,94.7319 +590024,214.59,95.9471 +590025,216.71,92.4481 +590026,215.55,93.5663 +590027,214.38,94.7136 +590028,213.21,95.8912 +590029,215.38,92.5027 +590030,214.2,93.5847 +590031,213.02,94.6949 +590032,211.83,95.8344 +590033,214.06,92.5582 +590034,212.86,93.6033 +590035,211.66,94.6758 +590036,210.45,95.7768 +590037,212.73,92.6144 +590038,211.52,93.6221 +590039,210.3,94.6565 +590040,209.07,95.7183 +590041,211.41,92.6713 +590042,210.17,93.6412 +590043,208.94,94.6368 +590044,207.7,95.6589 +590045,210.08,92.7289 +590046,208.83,93.6604 +590047,207.58,94.6168 +590048,206.32,95.5988 +590049,208.75,92.7873 +590050,207.48,93.6798 +590051,206.22,94.5965 +590052,204.95,95.5379 +590053,207.42,92.8463 +590054,206.14,93.6994 +590055,204.86,94.5759 +590056,203.57,95.4763 +590057,206.09,92.9059 +590058,204.79,93.7191 +590059,203.5,94.5551 +590060,202.2,95.4141 +590061,204.76,92.9661 +590062,203.45,93.739 +590063,202.14,94.5339 +590064,200.83,95.3511 +590065,203.42,93.0268 +590066,202.1,93.759 +590067,200.78,94.5125 +590068,199.45,95.2875 +590069,202.09,93.0881 +590070,200.76,93.7792 +590071,199.42,94.4909 +590072,198.08,95.2234 +590073,200.75,93.1499 +590074,199.41,93.7995 +590075,198.06,94.469 +590076,196.72,95.1587 +590077,199.42,93.2122 +590078,198.06,93.8199 +590079,196.71,94.4469 +590080,195.35,95.0934 +590081,198.08,93.2749 +590082,196.72,93.8404 +590083,195.35,94.4246 +590084,193.98,95.0277 +590085,196.74,93.3381 +590086,195.37,93.861 +590087,193.99,94.4021 +590088,192.62,94.9615 +590089,195.4,93.4016 +590090,194.02,93.8816 +590091,192.64,94.3794 +590092,191.25,94.8949 +590093,194.06,93.4655 +590094,192.67,93.9023 +590095,191.28,94.3565 +590096,189.89,94.8278 +590097,192.72,93.5297 +590098,191.32,93.9231 +590099,189.93,94.3334 +590100,188.53,94.7605 +590101,191.38,93.5941 +590102,189.98,93.9439 +590103,188.57,94.3102 +590104,187.17,94.6928 +590105,190.03,93.6589 +590106,188.63,93.9648 +590107,187.22,94.2868 +590108,185.81,94.6248 +590109,188.69,93.7238 +590110,187.28,93.9857 +590111,185.86,94.2633 +590112,184.45,94.5565 +590113,187.34,93.7889 +590114,185.93,94.0066 +590115,184.51,94.2396 +590116,183.09,94.4881 +590117,185.99,93.8542 +590118,184.57,94.0275 +590119,183.16,94.2159 +590120,181.74,94.4194 +590121,184.64,93.9196 +590122,183.22,94.0484 +590123,181.8,94.192 +590124,180.38,94.3506 +590125,183.29,93.9851 +590126,181.87,94.0692 +590127,180.45,94.1681 +590128,179.03,94.2817 +590129,181.94,94.0507 +590130,180.52,94.0901 +590131,179.1,94.144 +590132,177.67,94.2127 +590133,180.59,94.1163 +590134,179.17,94.1108 +590135,177.75,94.1199 +590136,176.32,94.1436 +590137,179.23,94.1818 +590138,177.82,94.1316 +590139,176.39,94.0958 +590140,174.97,94.0745 +590141,177.88,94.2473 +590142,176.46,94.1522 +590143,175.04,94.0716 +590144,173.62,94.0055 +590145,176.52,94.3128 +590146,175.11,94.1728 +590147,173.69,94.0473 +590148,172.28,93.9365 +590149,175.17,94.3781 +590150,173.76,94.1933 +590151,172.34,94.0231 +590152,170.93,93.8676 +590153,173.81,94.4433 +590154,172.4,94.2137 +590155,170.99,93.9988 +590156,169.58,93.7988 +590157,172.45,94.5083 +590158,171.05,94.234 +590159,169.64,93.9745 +590160,168.24,93.7301 +590161,171.09,94.573 +590162,169.69,94.2541 +590163,168.29,93.9503 +590164,166.9,93.6616 +590165,169.73,94.6376 +590166,168.34,94.2741 +590167,166.95,93.926 +590168,165.56,93.5934 +590169,168.36,94.7018 +590170,166.98,94.294 +590171,165.6,93.9018 +590172,164.21,93.5254 +590173,167,94.7657 +590174,165.62,94.3137 +590175,164.25,93.8776 +590176,162.87,93.4577 +590177,165.63,94.8293 +590178,164.27,94.3333 +590179,162.9,93.8535 +590180,161.54,93.3903 +590181,164.27,94.8925 +590182,162.91,94.3526 +590183,161.55,93.8295 +590184,160.2,93.3232 +590185,162.9,94.9553 +590186,161.55,94.3718 +590187,160.21,93.8055 +590188,158.86,93.2566 +590189,161.53,95.0176 +590190,160.2,94.3908 +590191,158.86,93.7816 +590192,157.53,93.1903 +590193,160.16,95.0794 +590194,158.84,94.4095 +590195,157.52,93.7579 +590196,156.19,93.1245 +590197,158.79,95.1407 +590198,157.48,94.4281 +590199,156.17,93.7342 +590200,154.86,93.0591 +590201,157.42,95.2015 +590202,156.12,94.4464 +590203,154.82,93.7106 +590204,153.53,92.9943 +590205,156.04,95.2617 +590206,154.76,94.4644 +590207,153.48,93.6872 +590208,152.2,92.93 +590209,154.67,95.3212 +590210,153.4,94.4822 +590211,152.14,93.6639 +590212,150.87,92.8663 +590213,153.29,95.3801 +590214,152.04,94.4998 +590215,150.79,93.6408 +590216,149.54,92.8031 +590217,151.92,95.4384 +590218,150.68,94.517 +590219,149.45,93.6178 +590220,148.21,92.7406 +590221,150.54,95.4959 +590222,149.32,94.534 +590223,148.1,93.595 +590224,146.89,92.6788 +590225,149.16,95.5527 +590226,147.96,94.5507 +590227,146.76,93.5724 +590228,145.56,92.6176 +590229,147.78,95.6086 +590230,146.6,94.567 +590231,145.42,93.55 +590232,144.24,92.5571 +590233,146.4,95.6638 +590234,145.24,94.5831 +590235,144.08,93.5278 +590236,142.91,92.4974 +590237,145.02,95.7182 +590238,143.88,94.5988 +590239,142.73,93.5057 +590240,141.59,92.4384 +590241,143.64,95.7717 +590242,142.52,94.6142 +590243,141.39,93.4839 +590244,140.27,92.3802 +590245,142.26,95.8242 +590246,141.15,94.6292 +590247,140.05,93.4624 +590248,138.95,92.3229 +590249,140.87,95.8759 +590250,139.79,94.6439 +590251,138.71,93.441 +590252,137.63,92.2664 +590253,139.49,95.9266 +590254,138.43,94.6582 +590255,137.37,93.42 +590256,136.31,92.2107 +590257,138.1,95.9763 +590258,137.06,94.6721 +590259,136.03,93.3991 +590260,134.99,92.156 +590261,136.71,96.025 +590262,135.7,94.6857 +590263,134.69,93.3786 +590264,133.67,92.1022 +590265,135.33,96.0727 +590266,134.34,94.6988 +590267,133.35,93.3583 +590268,132.36,92.0493 +590269,133.94,96.1192 +590270,132.97,94.7116 +590271,132.01,93.3383 +590272,131.04,91.9974 +590273,132.55,96.1647 +590274,131.61,94.724 +590275,130.67,93.3185 +590276,129.73,91.9465 +590277,131.16,96.2091 +590278,130.24,94.7359 +590279,129.33,93.2991 +590280,128.41,91.8965 +590281,129.77,96.2523 +590282,128.88,94.7474 +590283,127.99,93.28 +590284,127.1,91.8477 +590285,128.37,96.2944 +590286,127.51,94.7585 +590287,126.65,93.2612 +590288,125.79,91.7999 +590289,126.98,96.3352 +590290,126.15,94.7691 +590291,125.31,93.2427 +590292,124.48,91.7531 +590293,125.59,96.3748 +590294,124.78,94.7793 +590295,123.98,93.2245 +590296,123.17,91.7075 +590297,124.19,96.4132 +590298,123.42,94.789 +590299,122.64,93.2067 +590300,121.86,91.663 +590301,122.8,96.4503 +590302,122.05,94.7983 +590303,121.3,93.1892 +590304,120.55,91.6196 +590305,121.4,96.4861 +590306,120.69,94.8071 +590307,119.96,93.172 +590308,119.24,91.5773 +590309,120.01,96.5206 +590310,119.32,94.8154 +590311,118.63,93.1553 +590312,117.93,91.5363 +590313,118.61,96.5537 +590314,117.95,94.8233 +590315,117.29,93.1388 +590316,116.62,91.4964 +590317,117.22,96.5855 +590318,116.59,94.8306 +590319,115.95,93.1227 +590320,115.31,91.4577 +590321,115.82,96.6159 +590322,115.22,94.8375 +590323,114.62,93.107 +590324,114.01,91.4203 +590325,114.42,96.645 +590326,113.85,94.8438 +590327,113.28,93.0917 +590328,112.7,91.3841 +590329,113.02,96.6726 +590330,112.49,94.8496 +590331,111.94,93.0768 +590332,111.4,91.3491 +590333,111.62,96.6988 +590334,111.12,94.855 +590335,110.61,93.0622 +590336,110.09,91.3155 +590337,110.22,96.7235 +590338,109.75,94.8598 +590339,109.27,93.0481 +590340,108.79,91.2831 +590341,108.82,96.7468 +590342,108.38,94.8641 +590343,107.94,93.0343 +590344,107.48,91.252 +590345,107.42,96.7685 +590346,107.01,94.8678 +590347,106.6,93.0209 +590348,106.18,91.2221 +590349,106.02,96.7888 +590350,105.65,94.8711 +590351,105.26,93.008 +590352,104.87,91.1937 +590353,104.62,96.8076 +590354,104.28,94.8738 +590355,103.93,92.9954 +590356,103.57,91.1665 +590357,103.22,96.8249 +590358,102.91,94.8759 +590359,102.59,92.9833 +590360,102.27,91.1407 +590361,101.82,96.8406 +590362,101.54,94.8775 +590363,101.26,92.9715 +590364,100.97,91.1162 +590365,100.42,96.8548 +590366,100.17,94.8786 +590367,99.924,92.9602 +590368,99.664,91.0931 +590369,99.015,96.8674 +590370,98.807,94.8791 +590371,98.589,92.9494 +590372,98.362,91.0713 +590373,97.613,96.8784 +590374,97.438,94.8791 +590375,97.254,92.9389 +590376,97.06,91.051 +590377,96.21,96.8879 +590378,96.07,94.8785 +590379,95.919,92.9289 +590380,95.759,91.032 +590381,94.808,96.8958 +590382,94.702,94.8773 +590383,94.584,92.9193 +590384,94.458,91.0143 +590385,93.405,96.9021 +590386,93.333,94.8756 +590387,93.25,92.9101 +590388,93.156,90.99812 +590389,92.002,96.9068 +590390,91.965,94.8733 +590391,91.915,92.9013 +590392,91.855,90.98329 +590393,90.6,96.9099 +590394,90.596,94.8705 +590395,90.58,92.893 +590396,90.554,90.96986 +590397,89.197,96.9114 +590398,89.228,94.8671 +590399,89.246,92.8852 +590400,89.253,90.95783 +590401,87.794,96.9112 +590402,87.859,94.8631 +590403,87.911,92.8777 +590404,87.952,90.9472 +590405,86.392,96.9095 +590406,86.491,94.8586 +590407,86.577,92.8707 +590408,86.651,90.93798 +590409,84.989,96.9061 +590410,85.123,94.8535 +590411,85.242,92.8642 +590412,85.35,90.93017 +590413,83.587,96.9011 +590414,83.754,94.8478 +590415,83.908,92.858 +590416,84.049,90.92376 +590417,82.184,96.8945 +590418,82.386,94.8416 +590419,82.573,92.8523 +590420,82.748,90.91877 +590421,80.782,96.8863 +590422,81.018,94.8348 +590423,81.239,92.8471 +590424,81.447,90.91518 +590425,79.38,96.8765 +590426,79.65,94.8274 +590427,79.904,92.8423 +590428,80.146,90.913 +590429,77.978,96.865 +590430,78.282,94.8195 +590431,78.569,92.8379 +590432,78.844,90.91222 +590433,76.577,96.8519 +590434,76.914,94.811 +590435,77.235,92.834 +590436,77.542,90.91284 +590437,75.175,96.8373 +590438,75.546,94.8019 +590439,75.9,92.8305 +590440,76.24,90.91485 +590441,73.774,96.821 +590442,74.178,94.7923 +590443,74.565,92.8274 +590444,74.938,90.91826 +590445,72.374,96.8031 +590446,72.81,94.7821 +590447,73.23,92.8248 +590448,73.636,90.92305 +590449,70.973,96.7836 +590450,71.443,94.7714 +590451,71.895,92.8226 +590452,72.333,90.92923 +590453,69.573,96.7625 +590454,70.075,94.7601 +590455,70.56,92.8208 +590456,71.03,90.93678 +590457,68.174,96.7399 +590458,68.708,94.7482 +590459,69.225,92.8194 +590460,69.727,90.94569 +590461,66.775,96.7157 +590462,67.341,94.7358 +590463,67.889,92.8185 +590464,68.423,90.95597 +590465,65.376,96.6899 +590466,65.974,94.7229 +590467,66.554,92.818 +590468,67.119,90.96759 +590469,63.978,96.6626 +590470,64.607,94.7094 +590471,65.218,92.8179 +590472,65.814,90.98056 +590473,62.58,96.6338 +590474,63.241,94.6953 +590475,63.883,92.8182 +590476,64.509,90.99486 +590477,61.183,96.6034 +590478,61.874,94.6808 +590479,62.547,92.8189 +590480,63.204,91.0105 +590481,59.787,96.5715 +590482,60.508,94.6657 +590483,61.211,92.82 +590484,61.898,91.0274 +590485,58.391,96.5381 +590486,59.142,94.65 +590487,59.874,92.8216 +590488,60.591,91.0456 +590489,56.996,96.5033 +590490,57.776,94.6339 +590491,58.538,92.8235 +590492,59.284,91.0651 +590493,55.601,96.4669 +590494,56.411,94.6172 +590495,57.201,92.8258 +590496,57.976,91.0859 +590497,54.207,96.4292 +590498,55.045,94.6 +590499,55.865,92.8285 +590500,56.668,91.108 +590501,52.814,96.39 +590502,53.68,94.5823 +590503,54.528,92.8316 +590504,55.359,91.1313 +590505,51.421,96.3493 +590506,52.315,94.5642 +590507,53.191,92.835 +590508,54.05,91.1558 +590509,50.029,96.3073 +590510,50.951,94.5455 +590511,51.853,92.8389 +590512,52.74,91.1815 +590513,48.638,96.2639 +590514,49.586,94.5263 +590515,50.516,92.8431 +590516,51.429,91.2084 +590517,47.248,96.2192 +590518,48.222,94.5066 +590519,49.178,92.8477 +590520,50.117,91.2365 +590521,45.858,96.1731 +590522,46.858,94.4865 +590523,47.84,92.8526 +590524,48.805,91.2658 +590525,44.47,96.1257 +590526,45.495,94.4659 +590527,46.501,92.8578 +590528,47.492,91.2962 +590529,43.082,96.077 +590530,44.132,94.4448 +590531,45.163,92.8634 +590532,46.178,91.3278 +590533,41.695,96.0271 +590534,42.769,94.4233 +590535,43.824,92.8694 +590536,44.863,91.3604 +590537,40.309,95.9759 +590538,41.406,94.4013 +590539,42.485,92.8757 +590540,43.548,91.3942 +590541,38.924,95.9235 +590542,40.044,94.3789 +590543,41.146,92.8823 +590544,42.231,91.429 +590545,37.54,95.8699 +590546,38.682,94.3561 +590547,39.806,92.8892 +590548,40.914,91.4648 +590549,36.156,95.8151 +590550,37.32,94.3328 +590551,38.466,92.8964 +590552,39.596,91.5017 +590553,34.774,95.7592 +590554,35.959,94.3091 +590555,37.126,92.9039 +590556,38.277,91.5396 +590557,33.393,95.7021 +590558,34.598,94.285 +590559,35.785,92.9117 +590560,36.958,91.5784 +590561,32.012,95.644 +590562,33.237,94.2605 +590563,34.445,92.9198 +590564,35.637,91.6182 +590565,30.633,95.5848 +590566,31.877,94.2356 +590567,33.103,92.9281 +590568,34.315,91.659 +590569,29.255,95.5245 +590570,30.517,94.2104 +590571,31.762,92.9368 +590572,32.992,91.7006 +590573,27.877,95.4633 +590574,29.157,94.1847 +590575,30.42,92.9457 +590576,31.669,91.7432 +590577,26.501,95.4011 +590578,27.798,94.1587 +590579,29.078,92.9548 +590580,30.344,91.7866 +590581,25.126,95.3379 +590582,26.439,94.1323 +590583,27.736,92.9642 +590584,29.019,91.8308 +590585,23.752,95.2738 +590586,25.08,94.1056 +590587,26.393,92.9738 +590588,27.692,91.8759 +590589,22.379,95.2088 +590590,23.722,94.0786 +590591,25.05,92.9836 +590592,26.364,91.9217 +590593,21.007,95.143 +590594,22.364,94.0512 +590595,23.707,92.9937 +590596,25.035,91.9683 +590597,19.636,95.0763 +590598,21.007,94.0235 +590599,22.363,93.0039 +590600,23.706,92.0157 +590601,18.267,95.0089 +590602,19.65,93.9955 +590603,21.019,93.0144 +590604,22.375,92.0637 +590605,16.898,94.9406 +590606,18.293,93.9672 +590607,19.675,93.025 +590608,21.043,92.1124 +590609,15.531,94.8717 +590610,16.937,93.9386 +590611,18.33,93.0358 +590612,19.71,92.1618 +590613,14.165,94.802 +590614,15.581,93.9098 +590615,16.985,93.0468 +590616,18.376,92.2117 +590617,12.8,94.7317 +590618,14.226,93.8806 +590619,15.64,93.058 +590620,17.04,92.2623 +590621,11.436,94.6607 +590622,12.871,93.8512 +590623,14.294,93.0692 +590624,15.704,92.3134 +590625,10.073,94.5891 +590626,11.516,93.8216 +590627,12.948,93.0807 +590628,14.366,92.3651 +590629,8.7119,94.517 +590630,10.162,93.7918 +590631,11.601,93.0922 +590632,13.028,92.4173 +590633,7.3516,94.4443 +590634,8.8085,93.7617 +590635,10.254,93.1039 +590636,11.688,92.4699 +590637,5.9926,94.3711 +590638,7.4552,93.7314 +590639,8.9068,93.1156 +590640,10.347,92.523 +590641,4.6347,94.2975 +590642,6.1022,93.7009 +590643,7.5591,93.1275 +590644,9.0047,92.5764 +590645,3.2781,94.2234 +590646,4.7497,93.6702 +590647,6.211,93.1395 +590648,7.6614,92.6303 +590649,1.9226,94.1489 +590650,3.3976,93.6394 +590651,4.8626,93.1515 +590652,6.3169,92.6845 +590653,0.56843,94.0741 +590654,2.046,93.6083 +590655,3.5138,93.1636 +590656,4.9712,92.7391 +590657,359.22,93.9989 +590658,0.69471,93.5771 +590659,2.1647,93.1757 +590660,3.6243,92.7939 +590661,357.86,93.9234 +590662,359.34,93.5458 +590663,0.8151,93.1879 +590664,2.2763,92.849 +590665,356.51,93.8477 +590666,357.99,93.5144 +590667,359.47,93.2001 +590668,0.92705,92.9043 +590669,355.16,93.7717 +590670,356.64,93.4828 +590671,358.11,93.2123 +590672,359.58,92.9598 +590673,353.82,93.6956 +590674,355.29,93.4511 +590675,356.76,93.2245 +590676,358.23,93.0154 +590677,352.47,93.6192 +590678,353.94,93.4193 +590679,355.41,93.2368 +590680,356.87,93.0712 +590681,351.12,93.5428 +590682,352.6,93.3874 +590683,354.06,93.249 +590684,355.52,93.1271 +590685,349.78,93.4663 +590686,351.25,93.3554 +590687,352.71,93.2612 +590688,354.16,93.183 +590689,348.44,93.3897 +590690,349.9,93.3234 +590691,351.36,93.2734 +590692,352.81,93.239 +590693,347.09,93.313 +590694,348.55,93.2913 +590695,350,93.2855 +590696,351.45,93.2949 +590697,345.75,93.2364 +590698,347.21,93.2592 +590699,348.65,93.2975 +590700,350.09,93.3509 +590701,344.41,93.1599 +590702,345.86,93.227 +590703,347.3,93.3095 +590704,348.73,93.4067 +590705,343.07,93.0834 +590706,344.51,93.1949 +590707,345.94,93.3214 +590708,347.37,93.4625 +590709,341.74,93.007 +590710,343.17,93.1627 +590711,344.59,93.3332 +590712,346.01,93.5181 +590713,340.4,92.9308 +590714,341.82,93.1305 +590715,343.24,93.345 +590716,344.64,93.5735 +590717,339.07,92.8547 +590718,340.48,93.0983 +590719,341.88,93.3566 +590720,343.28,93.6288 +590721,337.73,92.7789 +590722,339.13,93.0662 +590723,340.53,93.368 +590724,341.91,93.6838 +590725,336.4,92.7033 +590726,337.79,93.0341 +590727,339.17,93.3794 +590728,340.55,93.7385 +590729,335.07,92.628 +590730,336.44,93.002 +590731,337.81,93.3906 +590732,339.18,93.793 +590733,333.74,92.553 +590734,335.1,92.97 +590735,336.46,93.4016 +590736,337.81,93.8471 +590737,332.41,92.4784 +590738,333.76,92.9381 +590739,335.1,93.4125 +590740,336.44,93.9009 +590741,331.08,92.4041 +590742,332.42,92.9062 +590743,333.75,93.4232 +590744,335.07,93.9542 +590745,329.75,92.3302 +590746,331.07,92.8745 +590747,332.39,93.4337 +590748,333.7,94.0072 +590749,328.43,92.2568 +590750,329.73,92.8428 +590751,331.03,93.444 +590752,332.32,94.0596 +590753,327.1,92.1839 +590754,328.39,92.8113 +590755,329.67,93.4541 +590756,330.95,94.1116 +590757,325.78,92.1114 +590758,327.05,92.7799 +590759,328.31,93.464 +590760,329.57,94.1631 +590761,324.46,92.0395 +590762,325.71,92.7486 +590763,326.96,93.4736 +590764,328.19,94.214 +590765,323.14,91.9681 +590766,324.37,92.7174 +590767,325.6,93.483 +590768,326.82,94.2643 +590769,321.81,91.8974 +590770,323.03,92.6864 +590771,324.24,93.4922 +590772,325.44,94.314 +590773,320.49,91.8272 +590774,321.69,92.6556 +590775,322.88,93.5011 +590776,324.06,94.363 +590777,319.18,91.7577 +590778,320.35,92.6249 +590779,321.52,93.5097 +590780,322.68,94.4114 +590781,317.86,91.6889 +590782,319.01,92.5945 +590783,320.16,93.518 +590784,321.3,94.459 +590785,316.54,91.6208 +590786,317.67,92.5642 +590787,318.8,93.5261 +590788,319.91,94.5059 +590789,315.23,91.5534 +590790,316.33,92.5341 +590791,317.44,93.5338 +590792,318.53,94.552 +590793,313.91,91.4868 +590794,315,92.5043 +590795,316.07,93.5413 +590796,317.14,94.5974 +590797,312.6,91.421 +590798,313.66,92.4746 +590799,314.71,93.5484 +590800,315.76,94.6419 +590801,311.29,91.356 +590802,312.32,92.4452 +590803,313.35,93.5551 +590804,314.37,94.6855 +590805,309.97,91.2918 +590806,310.99,92.4161 +590807,311.99,93.5616 +590808,312.98,94.7283 +590809,308.66,91.2285 +590810,309.65,92.3871 +590811,310.63,93.5677 +590812,311.6,94.7701 +590813,307.35,91.1661 +590814,308.31,92.3585 +590815,309.27,93.5734 +590816,310.21,94.811 +590817,306.04,91.1046 +590818,306.98,92.3301 +590819,307.9,93.5788 +590820,308.82,94.8509 +590821,304.73,91.0441 +590822,305.64,92.302 +590823,306.54,93.5838 +590824,307.43,94.8898 +590825,303.43,90.9845 +590826,304.31,92.2741 +590827,305.18,93.5884 +590828,306.04,94.9277 +590829,302.12,90.9259 +590830,302.97,92.2466 +590831,303.81,93.5927 +590832,304.64,94.9646 +590833,300.81,90.86832 +590834,301.64,92.2194 +590835,302.45,93.5965 +590836,303.25,95.0003 +590837,299.51,90.81176 +590838,300.3,92.1924 +590839,301.09,93.5999 +590840,301.86,95.035 +590841,298.2,90.75626 +590842,298.97,92.1658 +590843,299.72,93.6029 +590844,300.46,95.0686 +590845,296.9,90.70183 +590846,297.63,92.1395 +590847,298.36,93.6055 +590848,299.07,95.101 +590849,295.59,90.64849 +590850,296.3,92.1135 +590851,296.99,93.6077 +590852,297.67,95.1322 +590853,294.29,90.59627 +590854,294.97,92.0879 +590855,295.63,93.6094 +590856,296.28,95.1622 +590857,292.99,90.54518 +590858,293.63,92.0626 +590859,294.26,93.6107 +590860,294.88,95.191 +590861,291.69,90.49524 +590862,292.3,92.0376 +590863,292.9,93.6115 +590864,293.48,95.2186 +590865,290.38,90.44646 +590866,290.97,92.013 +590867,291.53,93.6119 +590868,292.09,95.2449 +590869,289.08,90.39887 +590870,289.63,91.9888 +590871,290.17,93.6118 +590872,290.69,95.2699 +590873,287.78,90.35248 +590874,288.3,91.9649 +590875,288.8,93.6112 +590876,289.29,95.2936 +590877,286.48,90.30731 +590878,286.97,91.9415 +590879,287.44,93.6102 +590880,287.89,95.316 +590881,285.18,90.26337 +590882,285.64,91.9183 +590883,286.07,93.6087 +590884,286.49,95.3371 +590885,283.88,90.22067 +590886,284.3,91.8956 +590887,284.71,93.6067 +590888,285.09,95.3568 +590889,282.59,90.17924 +590890,282.97,91.8733 +590891,283.34,93.6042 +590892,283.69,95.3751 +590893,281.29,90.13908 +590894,281.64,91.8513 +590895,281.98,93.6012 +590896,282.29,95.3921 +590897,279.99,90.1002 +590898,280.31,91.8298 +590899,280.61,93.5977 +590900,280.89,95.4076 +590901,278.69,90.062624 +590902,278.98,91.8086 +590903,279.24,93.5938 +590904,279.49,95.4217 +590905,277.4,90.026355 +590906,277.65,91.7879 +590907,277.88,93.5893 +590908,278.09,95.4344 +590909,276.1,89.9914047 +590910,276.31,91.7675 +590911,276.51,93.5843 +590912,276.69,95.4456 +590913,274.8,89.957784 +590914,274.98,91.7476 +590915,275.15,93.5787 +590916,275.28,95.4554 +590917,273.51,89.925501 +590918,273.65,91.7281 +590919,273.78,93.5727 +590920,273.88,95.4636 +590921,272.21,89.89457 +590922,272.32,91.709 +590923,272.41,93.5661 +590924,272.48,95.4704 +590925,270.91,89.86498 +590926,270.99,91.6904 +590927,271.05,93.559 +590928,271.08,95.4757 +590929,269.62,89.83676 +590930,269.66,91.6721 +590931,269.68,93.5514 +590932,269.68,95.4795 +590933,268.32,89.80991 +590934,268.33,91.6543 +590935,268.31,93.5432 +590936,268.27,95.4818 +590937,267.02,89.78443 +590938,267,91.637 +590939,266.95,93.5345 +590940,266.87,95.4825 +590941,265.73,89.76033 +590942,265.67,91.62 +590943,265.58,93.5253 +590944,265.47,95.4817 +590945,264.43,89.73761 +590946,264.34,91.6035 +590947,264.22,93.5155 +590948,264.07,95.4794 +590949,263.14,89.71628 +590950,263.01,91.5874 +590951,262.85,93.5052 +590952,262.67,95.4755 +590953,261.84,89.69634 +590954,261.68,91.5718 +590955,261.48,93.4944 +590956,261.26,95.4701 +590957,260.55,89.67779 +590958,260.34,91.5566 +590959,260.12,93.483 +590960,259.86,95.4631 +590961,259.25,89.66063 +590962,259.01,91.5418 +590963,258.75,93.471 +590964,258.46,95.4546 +590965,257.95,89.64487 +590966,257.68,91.5275 +590967,257.39,93.4586 +590968,257.06,95.4445 +590969,256.66,89.6305 +590970,256.35,91.5136 +590971,256.02,93.4455 +590972,255.66,95.4328 +590973,255.36,89.61752 +590974,255.02,91.5002 +590975,254.66,93.432 +590976,254.26,95.4196 +590977,254.06,89.60593 +590978,253.69,91.4872 +590979,253.29,93.4179 +590980,252.86,95.4048 +590981,252.77,89.59573 +590982,252.36,91.4746 +590983,251.93,93.4032 +590984,251.46,95.3885 +590985,251.47,89.58692 +590986,251.03,91.4625 +590987,250.56,93.388 +590988,250.06,95.3705 +590989,250.17,89.5795 +590990,249.7,91.4508 +590991,249.19,93.3723 +590992,248.66,95.3511 +590993,248.87,89.57345 +590994,248.37,91.4395 +590995,247.83,93.356 +590996,247.26,95.33 +590997,247.58,89.56877 +590998,247.04,91.4287 +590999,246.47,93.3392 +591000,245.86,95.3075 +591001,246.28,89.56547 +591002,245.7,91.4183 +591003,245.1,93.3219 +591004,244.46,95.2833 +591005,244.98,89.56353 +591006,244.37,91.4083 +591007,243.74,93.304 +591008,243.07,95.2577 +591009,243.68,89.56294 +591010,243.04,91.3988 +591011,242.37,93.2856 +591012,241.67,95.2304 +591013,242.38,89.5637 +591014,241.71,91.3897 +591015,241.01,93.2666 +591016,240.27,95.2017 +591017,241.08,89.56581 +591018,240.38,91.381 +591019,239.64,93.2471 +591020,238.88,95.1715 +591021,239.78,89.56924 +591022,239.05,91.3727 +591023,238.28,93.2272 +591024,237.48,95.1397 +591025,238.48,89.574 +591026,237.71,91.3649 +591027,236.92,93.2066 +591028,236.09,95.1064 +591029,237.18,89.58006 +591030,236.38,91.3574 +591031,235.55,93.1856 +591032,234.69,95.0717 +591033,235.87,89.58743 +591034,235.05,91.3504 +591035,234.19,93.1641 +591036,233.3,95.0355 +591037,234.57,89.59609 +591038,233.72,91.3438 +591039,232.83,93.142 +591040,231.91,94.9978 +591041,233.27,89.60602 +591042,232.38,91.3376 +591043,231.47,93.1195 +591044,230.51,94.9586 +591045,231.96,89.61722 +591046,231.05,91.3318 +591047,230.11,93.0964 +591048,229.12,94.9181 +591049,230.66,89.62967 +591050,229.72,91.3263 +591051,228.74,93.0729 +591052,227.73,94.8761 +591053,229.35,89.64336 +591054,228.38,91.3213 +591055,227.38,93.0488 +591056,226.34,94.8326 +591057,228.05,89.65827 +591058,227.05,91.3166 +591059,226.02,93.0243 +591060,224.96,94.7878 +591061,226.74,89.67438 +591062,225.72,91.3124 +591063,224.66,92.9993 +591064,223.57,94.7417 +591065,225.43,89.69169 +591066,224.38,91.3085 +591067,223.3,92.9738 +591068,222.18,94.6941 +591069,224.12,89.71017 +591070,223.05,91.3049 +591071,221.94,92.9479 +591072,220.79,94.6453 +591073,222.82,89.72981 +591074,221.71,91.3018 +591075,220.58,92.9215 +591076,219.41,94.5951 +591077,221.51,89.75059 +591078,220.38,91.299 +591079,219.22,92.8946 +591080,218.03,94.5436 +591081,220.19,89.7725 +591082,219.04,91.2965 +591083,217.86,92.8673 +591084,216.64,94.4908 +591085,218.88,89.7955 +591086,217.71,91.2944 +591087,216.5,92.8396 +591088,215.26,94.4368 +591089,217.57,89.8196 +591090,216.37,91.2926 +591091,215.14,92.8114 +591092,213.88,94.3815 +591093,216.26,89.84475 +591094,215.04,91.2912 +591095,213.78,92.7828 +591096,212.5,94.3251 +591097,214.94,89.87095 +591098,213.7,91.29 +591099,212.43,92.7537 +591100,211.12,94.2674 +591101,213.63,89.89818 +591102,212.36,91.2892 +591103,211.07,92.7243 +591104,209.74,94.2086 +591105,212.31,89.926407 +591106,211.03,91.2887 +591107,209.71,92.6945 +591108,208.36,94.1486 +591109,210.99,89.955615 +591110,209.69,91.2885 +591111,208.36,92.6642 +591112,206.99,94.0875 +591113,209.67,89.985781 +591114,208.35,91.2886 +591115,207,92.6336 +591116,205.61,94.0253 +591117,208.35,90.016883 +591118,207.01,91.289 +591119,205.64,92.6026 +591120,204.24,93.9621 +591121,207.03,90.048898 +591122,205.68,91.2897 +591123,204.29,92.5712 +591124,202.87,93.8978 +591125,205.71,90.081801 +591126,204.34,91.2906 +591127,202.93,92.5394 +591128,201.5,93.8325 +591129,204.39,90.11557 +591130,203,91.2918 +591131,201.58,92.5073 +591132,200.13,93.7662 +591133,203.07,90.15018 +591134,201.66,91.2933 +591135,200.22,92.4749 +591136,198.76,93.699 +591137,201.74,90.1856 +591138,200.32,91.295 +591139,198.87,92.4421 +591140,197.39,93.6308 +591141,200.42,90.22181 +591142,198.98,91.2969 +591143,197.52,92.409 +591144,196.02,93.5618 +591145,199.09,90.25879 +591146,197.64,91.299 +591147,196.16,92.3756 +591148,194.66,93.4918 +591149,197.76,90.29651 +591150,196.3,91.3014 +591151,194.81,92.3419 +591152,193.29,93.4211 +591153,196.43,90.33493 +591154,194.96,91.304 +591155,193.46,92.3078 +591156,191.93,93.3495 +591157,195.1,90.37405 +591158,193.62,91.3068 +591159,192.11,92.2735 +591160,190.57,93.2771 +591161,193.77,90.41381 +591162,192.28,91.3098 +591163,190.75,92.2389 +591164,189.21,93.204 +591165,192.44,90.45421 +591166,190.93,91.313 +591167,189.4,92.2041 +591168,187.85,93.1302 +591169,191.1,90.49521 +591170,189.59,91.3163 +591171,188.05,92.1689 +591172,186.49,93.0557 +591173,189.77,90.53679 +591174,188.25,91.3198 +591175,186.7,92.1336 +591176,185.13,92.9805 +591177,188.43,90.57891 +591178,186.91,91.3235 +591179,185.35,92.098 +591180,183.78,92.9047 +591181,187.1,90.62154 +591182,185.56,91.3273 +591183,184,92.0621 +591184,182.42,92.8284 +591185,185.76,90.66467 +591186,184.22,91.3312 +591187,182.66,92.0261 +591188,181.07,92.7514 +591189,184.42,90.70825 +591190,182.87,91.3352 +591191,181.31,91.9898 +591192,179.72,92.674 +591193,183.08,90.75226 +591194,181.53,91.3394 +591195,179.96,91.9534 +591196,178.37,92.596 +591197,181.73,90.79667 +591198,180.18,91.3437 +591199,178.61,91.9168 +591200,177.02,92.5176 +591201,180.39,90.84145 +591202,178.84,91.3481 +591203,177.26,91.8799 +591204,175.67,92.4388 +591205,179.05,90.88656 +591206,177.49,91.3525 +591207,175.92,91.843 +591208,174.32,92.3596 +591209,177.7,90.93199 +591210,176.15,91.357 +591211,174.57,91.8059 +591212,172.98,92.28 +591213,176.35,90.97769 +591214,174.8,91.3616 +591215,173.23,91.7686 +591216,171.63,92.2001 +591217,175.01,91.0236 +591218,173.45,91.3662 +591219,171.88,91.7312 +591220,170.29,92.1199 +591221,173.66,91.0698 +591222,172.11,91.3709 +591223,170.54,91.6937 +591224,168.95,92.0395 +591225,172.31,91.1162 +591226,170.76,91.3756 +591227,169.19,91.6561 +591228,167.61,91.9588 +591229,170.95,91.1627 +591230,169.41,91.3803 +591231,167.85,91.6184 +591232,166.27,91.878 +591233,169.6,91.2093 +591234,168.06,91.3851 +591235,166.51,91.5806 +591236,164.93,91.797 +591237,168.25,91.256 +591238,166.71,91.3898 +591239,165.16,91.5427 +591240,163.6,91.7159 +591241,166.89,91.3028 +591242,165.36,91.3945 +591243,163.82,91.5047 +591244,162.26,91.6346 +591245,165.53,91.3496 +591246,164.01,91.3992 +591247,162.48,91.4668 +591248,160.93,91.5534 +591249,164.18,91.3964 +591250,162.66,91.4039 +591251,161.14,91.4287 +591252,159.6,91.4721 +591253,162.82,91.4432 +591254,161.31,91.4085 +591255,159.8,91.3907 +591256,158.26,91.3908 +591257,161.46,91.4899 +591258,159.96,91.4131 +591259,158.46,91.3526 +591260,156.93,91.3096 +591261,160.09,91.5365 +591262,158.61,91.4175 +591263,157.12,91.3145 +591264,155.61,91.2285 +591265,158.73,91.583 +591266,157.26,91.422 +591267,155.78,91.2764 +591268,154.28,91.1475 +591269,157.37,91.6293 +591270,155.91,91.4263 +591271,154.44,91.2384 +591272,152.95,91.0666 +591273,156,91.6754 +591274,154.56,91.4305 +591275,153.1,91.2003 +591276,151.63,90.98593 +591277,154.63,91.7213 +591278,153.2,91.4347 +591279,151.76,91.1623 +591280,150.3,90.90546 +591281,153.27,91.767 +591282,151.85,91.4387 +591283,150.42,91.1244 +591284,148.98,90.82524 +591285,151.9,91.8123 +591286,150.5,91.4425 +591287,149.08,91.0865 +591288,147.66,90.7453 +591289,150.53,91.8574 +591290,149.14,91.4463 +591291,147.75,91.0487 +591292,146.34,90.66567 +591293,149.16,91.9021 +591294,147.79,91.4499 +591295,146.41,91.0109 +591296,145.02,90.58638 +591297,147.78,91.9464 +591298,146.44,91.4533 +591299,145.07,90.97328 +591300,143.7,90.50748 +591301,146.41,91.9903 +591302,145.08,91.4565 +591303,143.74,90.93573 +591304,142.38,90.42898 +591305,145.04,92.0338 +591306,143.73,91.4596 +591307,142.4,90.89829 +591308,141.07,90.35092 +591309,143.66,92.0768 +591310,142.37,91.4625 +591311,141.07,90.86098 +591312,139.75,90.27333 +591313,142.29,92.1192 +591314,141.02,91.4652 +591315,139.73,90.8238 +591316,138.44,90.19624 +591317,140.91,92.1612 +591318,139.66,91.4677 +591319,138.4,90.78676 +591320,137.13,90.11968 +591321,139.53,92.2026 +591322,138.3,91.4699 +591323,137.06,90.74987 +591324,135.81,90.043677 +591325,138.15,92.2434 +591326,136.95,91.4719 +591327,135.73,90.71315 +591328,134.5,89.968267 +591329,136.77,92.2836 +591330,135.59,91.4737 +591331,134.4,90.6766 +591332,133.19,89.89348 +591333,135.39,92.3232 +591334,134.23,91.4752 +591335,133.06,90.64023 +591336,131.88,89.81933 +591337,134,92.362 +591338,132.88,91.4765 +591339,131.73,90.60406 +591340,130.58,89.74587 +591341,132.62,92.4002 +591342,131.52,91.4775 +591343,130.4,90.56809 +591344,129.27,89.6731 +591345,131.24,92.4376 +591346,130.16,91.4782 +591347,129.07,90.53233 +591348,127.96,89.60107 +591349,129.85,92.4743 +591350,128.8,91.4786 +591351,127.74,90.49679 +591352,126.66,89.5298 +591353,128.47,92.5101 +591354,127.44,91.4788 +591355,126.41,90.46148 +591356,125.36,89.45931 +591357,127.08,92.5452 +591358,126.08,91.4786 +591359,125.08,90.42641 +591360,124.05,89.38963 +591361,125.69,92.5794 +591362,124.72,91.4781 +591363,123.74,90.39159 +591364,122.75,89.32079 +591365,124.3,92.6127 +591366,123.37,91.4773 +591367,122.41,90.35702 +591368,121.45,89.25281 +591369,122.91,92.6451 +591370,122.01,91.4761 +591371,121.08,90.32272 +591372,120.15,89.18571 +591373,121.52,92.6767 +591374,120.65,91.4747 +591375,119.76,90.28869 +591376,118.85,89.11953 +591377,120.13,92.7072 +591378,119.29,91.4728 +591379,118.43,90.25495 +591380,117.55,89.05428 +591381,118.74,92.7368 +591382,117.93,91.4707 +591383,117.1,90.22149 +591384,116.25,88.99 +591385,117.35,92.7654 +591386,116.57,91.4681 +591387,115.77,90.18833 +591388,114.95,88.9267 +591389,115.95,92.793 +591390,115.21,91.4652 +591391,114.44,90.15547 +591392,113.66,88.8644 +591393,114.56,92.8195 +591394,113.84,91.4619 +591395,113.11,90.12293 +591396,112.36,88.8031 +591397,113.17,92.845 +591398,112.48,91.4582 +591399,111.78,90.090705 +591400,111.07,88.7428 +591401,111.77,92.8693 +591402,111.12,91.4541 +591403,110.46,90.058808 +591404,109.77,88.6836 +591405,110.37,92.8926 +591406,109.76,91.4496 +591407,109.13,90.027245 +591408,108.48,88.6255 +591409,108.98,92.9147 +591410,108.4,91.4447 +591411,107.8,89.9960221 +591412,107.18,88.5685 +591413,107.58,92.9357 +591414,107.04,91.4394 +591415,106.47,89.965146 +591416,105.89,88.5127 +591417,106.18,92.9555 +591418,105.68,91.4337 +591419,105.15,89.934623 +591420,104.6,88.4579 +591421,104.79,92.9741 +591422,104.31,91.4276 +591423,103.82,89.904459 +591424,103.31,88.4044 +591425,103.39,92.9915 +591426,102.95,91.421 +591427,102.49,89.87466 +591428,102.01,88.3519 +591429,101.99,93.0076 +591430,101.59,91.414 +591431,101.17,89.84523 +591432,100.72,88.3007 +591433,100.59,93.0225 +591434,100.23,91.4065 +591435,99.842,89.81618 +591436,99.432,88.2507 +591437,99.193,93.0362 +591438,98.867,91.3986 +591439,98.516,89.78751 +591440,98.142,88.2019 +591441,97.794,93.0485 +591442,97.505,91.3903 +591443,97.19,89.75923 +591444,96.852,88.1543 +591445,96.394,93.0596 +591446,96.142,91.3814 +591447,95.864,89.73133 +591448,95.563,88.108 +591449,94.994,93.0693 +591450,94.78,91.3722 +591451,94.539,89.70384 +591452,94.273,88.063 +591453,93.594,93.0777 +591454,93.417,91.3624 +591455,93.214,89.67674 +591456,92.984,88.0192 +591457,92.193,93.0848 +591458,92.055,91.3522 +591459,91.888,89.65005 +591460,91.696,87.9767 +591461,90.793,93.0905 +591462,90.692,91.3415 +591463,90.563,89.62376 +591464,90.407,87.9354 +591465,89.392,93.0948 +591466,89.33,91.3303 +591467,89.238,89.59789 +591468,89.119,87.8955 +591469,87.991,93.0977 +591470,87.967,91.3186 +591471,87.913,89.57243 +591472,87.831,87.8569 +591473,86.59,93.0993 +591474,86.605,91.3065 +591475,86.588,89.5474 +591476,86.543,87.8196 +591477,85.19,93.0994 +591478,85.243,91.2938 +591479,85.263,89.52278 +591480,85.255,87.7837 +591481,83.789,93.0981 +591482,83.88,91.2807 +591483,83.938,89.49859 +591484,83.967,87.749 +591485,82.388,93.0954 +591486,82.518,91.2671 +591487,82.614,89.47482 +591488,82.679,87.7158 +591489,80.987,93.0913 +591490,81.155,91.253 +591491,81.289,89.45149 +591492,81.392,87.6838 +591493,79.586,93.0857 +591494,79.793,91.2383 +591495,79.964,89.42858 +591496,80.104,87.6533 +591497,78.186,93.0787 +591498,78.431,91.2232 +591499,78.639,89.40611 +591500,78.816,87.624 +591501,76.785,93.0702 +591502,77.069,91.2076 +591503,77.315,89.38408 +591504,77.528,87.5962 +591505,75.385,93.0602 +591506,75.706,91.1914 +591507,75.99,89.36248 +591508,76.241,87.5697 +591509,73.985,93.0488 +591510,74.344,91.1748 +591511,74.665,89.34131 +591512,74.953,87.5445 +591513,72.585,93.036 +591514,72.983,91.1576 +591515,73.341,89.32059 +591516,73.664,87.5208 +591517,71.186,93.0216 +591518,71.621,91.14 +591519,72.016,89.3003 +591520,72.376,87.4984 +591521,69.786,93.0058 +591522,70.259,91.1218 +591523,70.691,89.28045 +591524,71.088,87.4773 +591525,68.388,92.9885 +591526,68.898,91.1032 +591527,69.366,89.26104 +591528,69.799,87.4577 +591529,66.989,92.9697 +591530,67.536,91.084 +591531,68.041,89.24207 +591532,68.51,87.4394 +591533,65.591,92.9494 +591534,66.175,91.0643 +591535,66.716,89.22354 +591536,67.221,87.4225 +591537,64.193,92.9277 +591538,64.814,91.0441 +591539,65.391,89.20544 +591540,65.931,87.4069 +591541,62.796,92.9045 +591542,63.453,91.0234 +591543,64.066,89.18779 +591544,64.641,87.3927 +591545,61.399,92.8798 +591546,62.092,91.0022 +591547,62.741,89.17057 +591548,63.351,87.3799 +591549,60.003,92.8536 +591550,60.732,90.98048 +591551,61.415,89.15378 +591552,62.06,87.3684 +591553,58.608,92.826 +591554,59.372,90.95827 +591555,60.09,89.13743 +591556,60.769,87.3582 +591557,57.213,92.7969 +591558,58.012,90.93556 +591559,58.764,89.12151 +591560,59.478,87.3494 +591561,55.818,92.7664 +591562,56.652,90.91236 +591563,57.439,89.10601 +591564,58.186,87.3419 +591565,54.424,92.7344 +591566,55.292,90.88865 +591567,56.113,89.09095 +591568,56.893,87.3358 +591569,53.031,92.701 +591570,53.933,90.86446 +591571,54.787,89.07631 +591572,55.6,87.3309 +591573,51.639,92.6661 +591574,52.574,90.83977 +591575,53.46,89.06209 +591576,54.306,87.3274 +591577,50.247,92.6298 +591578,51.215,90.8146 +591579,52.134,89.04829 +591580,53.012,87.3252 +591581,48.856,92.5921 +591582,49.856,90.78894 +591583,50.807,89.03491 +591584,51.717,87.3242 +591585,47.466,92.5529 +591586,48.498,90.7628 +591587,49.481,89.02194 +591588,50.422,87.3246 +591589,46.077,92.5124 +591590,47.14,90.73619 +591591,48.154,89.00938 +591592,49.126,87.3262 +591593,44.688,92.4705 +591594,45.782,90.7091 +591595,46.826,88.9972 +591596,47.829,87.329 +591597,43.3,92.4272 +591598,44.425,90.68155 +591599,45.499,88.9855 +591600,46.531,87.3332 +591601,41.913,92.3826 +591602,43.068,90.65353 +591603,44.171,88.9741 +591604,45.233,87.3385 +591605,40.527,92.3366 +591606,41.711,90.62505 +591607,42.844,88.9631 +591608,43.934,87.345 +591609,39.142,92.2893 +591610,40.354,90.59612 +591611,41.516,88.9526 +591612,42.634,87.3528 +591613,37.758,92.2407 +591614,38.998,90.56674 +591615,40.187,88.9424 +591616,41.334,87.3618 +591617,36.375,92.1907 +591618,37.642,90.53691 +591619,38.859,88.9326 +591620,40.032,87.3719 +591621,34.993,92.1395 +591622,36.287,90.50665 +591623,37.53,88.9231 +591624,38.73,87.3831 +591625,33.612,92.087 +591626,34.932,90.47595 +591627,36.201,88.914 +591628,37.427,87.3956 +591629,32.232,92.0333 +591630,33.577,90.44483 +591631,34.871,88.9053 +591632,36.123,87.4091 +591633,30.853,91.9783 +591634,32.223,90.41329 +591635,33.542,88.897 +591636,34.818,87.4237 +591637,29.475,91.9222 +591638,30.869,90.38133 +591639,32.212,88.8889 +591640,33.512,87.4395 +591641,28.099,91.8648 +591642,29.515,90.34897 +591643,30.881,88.8813 +591644,32.205,87.4563 +591645,26.723,91.8063 +591646,28.162,90.31621 +591647,29.551,88.8739 +591648,30.898,87.4741 +591649,25.348,91.7466 +591650,26.809,90.28305 +591651,28.22,88.8669 +591652,29.589,87.493 +591653,23.975,91.6858 +591654,25.457,90.24951 +591655,26.889,88.8603 +591656,28.279,87.5128 +591657,22.603,91.6239 +591658,24.105,90.21558 +591659,25.557,88.8539 +591660,26.968,87.5337 +591661,21.232,91.5609 +591662,22.753,90.18129 +591663,24.226,88.8479 +591664,25.656,87.5555 +591665,19.862,91.4968 +591666,21.402,90.14663 +591667,22.893,88.8421 +591668,24.343,87.5783 +591669,18.493,91.4318 +591670,20.051,90.11162 +591671,21.561,88.8366 +591672,23.029,87.602 +591673,17.126,91.3657 +591674,18.701,90.076261 +591675,20.228,88.8315 +591676,21.714,87.6266 +591677,15.76,91.2986 +591678,17.351,90.040562 +591679,18.895,88.8266 +591680,20.398,87.6521 +591681,14.395,91.2306 +591682,16.002,90.0045314 +591683,17.561,88.822 +591684,19.081,87.6784 +591685,13.031,91.1617 +591686,14.653,89.968178 +591687,16.227,88.8176 +591688,17.762,87.7056 +591689,11.669,91.0918 +591690,13.304,89.931512 +591691,14.893,88.8135 +591692,16.443,87.7335 +591693,10.308,91.0211 +591694,11.956,89.89454 +591695,13.559,88.8097 +591696,15.122,87.7623 +591697,8.9484,90.94949 +591698,10.608,89.85727 +591699,12.224,88.806 +591700,13.8,87.7917 +591701,7.59,90.87709 +591702,9.2611,89.81972 +591703,10.888,88.8027 +591704,12.477,87.822 +591705,6.2329,90.8039 +591706,7.9144,89.78189 +591707,9.5525,88.7995 +591708,11.152,87.8529 +591709,4.8772,90.72994 +591710,6.5682,89.74379 +591711,8.2164,88.7965 +591712,9.8266,87.8845 +591713,3.5228,90.65526 +591714,5.2224,89.70543 +591715,6.8799,88.7938 +591716,8.4998,87.9167 +591717,2.1697,90.57987 +591718,3.8771,89.66682 +591719,5.543,88.7912 +591720,7.1718,87.9496 +591721,0.81803,90.5038 +591722,2.5323,89.62797 +591723,4.2057,88.7889 +591724,5.8425,87.9831 +591725,359.47,90.4271 +591726,1.1879,89.5889 +591727,2.8681,88.7867 +591728,4.512,88.0171 +591729,358.12,90.34978 +591730,359.84,89.5496 +591731,1.53,88.7846 +591732,3.1802,88.0517 +591733,356.77,90.27188 +591734,358.5,89.5101 +591735,0.19156,88.7828 +591736,1.8472,88.0868 +591737,355.42,90.19343 +591738,357.16,89.47039 +591739,358.85,88.781 +591740,0.51289,88.1224 +591741,354.08,90.11446 +591742,355.82,89.4305 +591743,357.51,88.7794 +591744,359.18,88.1584 +591745,352.74,90.034997 +591746,354.47,89.39043 +591747,356.17,88.778 +591748,357.84,88.1949 +591749,351.39,89.955083 +591750,353.13,89.35019 +591751,354.83,88.7766 +591752,356.5,88.2318 +591753,350.05,89.87475 +591754,351.79,89.30979 +591755,353.49,88.7754 +591756,355.16,88.269 +591757,348.71,89.79402 +591758,350.45,89.26924 +591759,352.15,88.7742 +591760,353.82,88.3066 +591761,347.38,89.71293 +591762,349.11,89.22855 +591763,350.81,88.7732 +591764,352.48,88.3445 +591765,346.04,89.63152 +591766,347.77,89.18774 +591767,349.47,88.7722 +591768,351.14,88.3826 +591769,344.7,89.54981 +591770,346.43,89.14682 +591771,348.13,88.7713 +591772,349.79,88.4211 +591773,343.37,89.46784 +591774,345.09,89.10579 +591775,346.78,88.7705 +591776,348.45,88.4597 +591777,342.04,89.38564 +591778,343.76,89.06466 +591779,345.44,88.7697 +591780,347.1,88.4986 +591781,340.71,89.30325 +591782,342.42,89.02345 +591783,344.1,88.7689 +591784,345.75,88.5376 +591785,339.38,89.2207 +591786,341.08,88.9822 +591787,342.76,88.7682 +591788,344.4,88.5767 +591789,338.05,89.13801 +591790,339.74,88.9408 +591791,341.41,88.7674 +591792,343.05,88.616 +591793,336.72,89.05523 +591794,338.41,88.8994 +591795,340.07,88.7667 +591796,341.7,88.6553 +591797,335.4,88.9724 +591798,337.07,88.858 +591799,338.72,88.766 +591800,340.34,88.6946 +591801,334.07,88.8895 +591802,335.74,88.8165 +591803,337.38,88.7653 +591804,338.99,88.734 +591805,332.75,88.8066 +591806,334.4,88.775 +591807,336.03,88.7645 +591808,337.63,88.7734 +591809,331.43,88.7238 +591810,333.07,88.7335 +591811,334.68,88.7637 +591812,336.28,88.8127 +591813,330.11,88.641 +591814,331.73,88.692 +591815,333.34,88.7629 +591816,334.92,88.8519 +591817,328.79,88.5584 +591818,330.4,88.6506 +591819,331.99,88.762 +591820,333.56,88.891 +591821,327.47,88.4758 +591822,329.07,88.6091 +591823,330.64,88.761 +591824,332.2,88.93 +591825,326.15,88.3935 +591826,327.74,88.5677 +591827,329.3,88.76 +591828,330.83,88.9688 +591829,324.84,88.3113 +591830,326.4,88.5263 +591831,327.95,88.7589 +591832,329.47,89.00743 +591833,323.52,88.2293 +591834,325.07,88.485 +591835,326.6,88.7577 +591836,328.11,89.04582 +591837,322.21,88.1477 +591838,323.74,88.4437 +591839,325.25,88.7564 +591840,326.74,89.08395 +591841,320.9,88.0663 +591842,322.41,88.4026 +591843,323.9,88.7549 +591844,325.37,89.12179 +591845,319.59,87.9852 +591846,321.08,88.3615 +591847,322.55,88.7534 +591848,324,89.15931 +591849,318.28,87.9045 +591850,319.75,88.3205 +591851,321.2,88.7517 +591852,322.63,89.19649 +591853,316.97,87.8242 +591854,318.42,88.2796 +591855,319.85,88.7498 +591856,321.26,89.23329 +591857,315.66,87.7443 +591858,317.09,88.2388 +591859,318.5,88.7478 +591860,319.89,89.26969 +591861,314.36,87.6648 +591862,315.76,88.1982 +591863,317.15,88.7456 +591864,318.52,89.30565 +591865,313.05,87.5858 +591866,314.44,88.1577 +591867,315.8,88.7433 +591868,317.14,89.34115 +591869,311.75,87.5074 +591870,313.11,88.1173 +591871,314.45,88.7408 +591872,315.77,89.37615 +591873,310.45,87.4294 +591874,311.78,88.0772 +591875,313.1,88.7381 +591876,314.39,89.41064 +591877,309.15,87.352 +591878,310.45,88.0371 +591879,311.75,88.7351 +591880,313.02,89.44458 +591881,307.84,87.2753 +591882,309.13,87.9973 +591883,310.39,88.732 +591884,311.64,89.47794 +591885,306.55,87.1991 +591886,307.8,87.9576 +591887,309.04,88.7286 +591888,310.26,89.5107 +591889,305.25,87.1236 +591890,306.48,87.9182 +591891,307.69,88.7251 +591892,308.88,89.54283 +591893,303.95,87.0488 +591894,305.15,87.8789 +591895,306.33,88.7212 +591896,307.5,89.5743 +591897,302.65,86.9747 +591898,303.83,87.8398 +591899,304.98,88.7172 +591900,306.11,89.60509 +591901,301.36,86.9013 +591902,302.5,87.801 +591903,303.63,88.7128 +591904,304.73,89.63516 +591905,300.06,86.8286 +591906,301.18,87.7624 +591907,302.27,88.7082 +591908,303.35,89.6645 +591909,298.77,86.7568 +591910,299.85,87.7241 +591911,300.92,88.7033 +591912,301.96,89.69308 +591913,297.48,86.6858 +591914,298.53,87.686 +591915,299.56,88.6982 +591916,300.58,89.72087 +591917,296.19,86.6156 +591918,297.21,87.6482 +591919,298.21,88.6927 +591920,299.19,89.74785 +591921,294.9,86.5462 +591922,295.88,87.6106 +591923,296.85,88.687 +591924,297.8,89.77399 +591925,293.61,86.4778 +591926,294.56,87.5733 +591927,295.5,88.6809 +591928,296.41,89.79927 +591929,292.32,86.4102 +591930,293.24,87.5363 +591931,294.14,88.6745 +591932,295.02,89.82366 +591933,291.03,86.3436 +591934,291.92,87.4995 +591935,292.79,88.6678 +591936,293.63,89.84715 +591937,289.74,86.2779 +591938,290.59,87.4631 +591939,291.43,88.6608 +591940,292.24,89.8697 +591941,288.45,86.2132 +591942,289.27,87.427 +591943,290.07,88.6534 +591944,290.85,89.8913 +591945,287.17,86.1495 +591946,287.95,87.3912 +591947,288.72,88.6457 +591948,289.46,89.911929 +591949,285.88,86.0868 +591950,286.63,87.3557 +591951,287.36,88.6377 +591952,288.07,89.931556 +591953,284.6,86.0252 +591954,285.31,87.3205 +591955,286,88.6292 +591956,286.68,89.950164 +591957,283.31,85.9645 +591958,283.99,87.2857 +591959,284.65,88.6204 +591960,285.28,89.967734 +591961,282.03,85.905 +591962,282.67,87.2512 +591963,283.29,88.6113 +591964,283.89,89.984244 +591965,280.74,85.8466 +591966,281.35,87.2171 +591967,281.93,88.6017 +591968,282.49,89.99967532 +591969,279.46,85.7893 +591970,280.03,87.1833 +591971,280.58,88.5918 +591972,281.1,90.014009 +591973,278.18,85.7331 +591974,278.71,87.1498 +591975,279.22,88.5815 +591976,279.7,90.027226 +591977,276.9,85.678 +591978,277.39,87.1168 +591979,277.86,88.5708 +591980,278.3,90.039309 +591981,275.62,85.6241 +591982,276.07,87.0841 +591983,276.5,88.5597 +591984,276.91,90.05024 +591985,274.33,85.5714 +591986,274.75,87.0518 +591987,275.14,88.5481 +591988,275.51,90.060002 +591989,273.05,85.5198 +591990,273.43,87.0198 +591991,273.79,88.5362 +591992,274.11,90.06858 +591993,271.77,85.4695 +591994,272.11,86.9883 +591995,272.43,88.5239 +591996,272.72,90.075956 +591997,270.49,85.4204 +591998,270.8,86.9571 +591999,271.07,88.5111 +592000,271.32,90.082117 +592001,269.21,85.3725 +592002,269.48,86.9263 +592003,269.71,88.4979 +592004,269.92,90.087048 +592005,267.93,85.3258 +592006,268.16,86.896 +592007,268.35,88.4843 +592008,268.52,90.090734 +592009,266.66,85.2804 +592010,266.84,86.866 +592011,267,88.4702 +592012,267.12,90.093162 +592013,265.38,85.2363 +592014,265.52,86.8364 +592015,265.64,88.4557 +592016,265.72,90.094321 +592017,264.1,85.1934 +592018,264.2,86.8073 +592019,264.28,88.4407 +592020,264.32,90.094197 +592021,262.82,85.1518 +592022,262.89,86.7785 +592023,262.92,88.4254 +592024,262.93,90.092779 +592025,261.54,85.1115 +592026,261.57,86.7502 +592027,261.56,88.4095 +592028,261.53,90.090057 +592029,260.26,85.0725 +592030,260.25,86.7223 +592031,260.21,88.3932 +592032,260.13,90.086021 +592033,258.98,85.0348 +592034,258.93,86.6948 +592035,258.85,88.3765 +592036,258.73,90.080661 +592037,257.71,84.9984 +592038,257.61,86.6678 +592039,257.49,88.3593 +592040,257.33,90.073968 +592041,256.43,84.9634 +592042,256.3,86.6411 +592043,256.13,88.3416 +592044,255.93,90.065934 +592045,255.15,84.9296 +592046,254.98,86.6149 +592047,254.77,88.3235 +592048,254.53,90.056552 +592049,253.87,84.8972 +592050,253.66,86.5892 +592051,253.42,88.3049 +592052,253.13,90.045815 +592053,252.59,84.8661 +592054,252.34,86.5638 +592055,252.06,88.2859 +592056,251.73,90.033718 +592057,251.32,84.8363 +592058,251.03,86.5389 +592059,250.7,88.2663 +592060,250.33,90.020254 +592061,250.04,84.8079 +592062,249.71,86.5145 +592063,249.34,88.2464 +592064,248.94,90.0054196 +592065,248.76,84.7808 +592066,248.39,86.4904 +592067,247.99,88.2259 +592068,247.54,89.989211 +592069,247.48,84.7551 +592070,247.07,86.4668 +592071,246.63,88.205 +592072,246.14,89.971624 +592073,246.2,84.7307 +592074,245.75,86.4437 +592075,245.27,88.1836 +592076,244.74,89.952656 +592077,244.92,84.7076 +592078,244.44,86.4209 +592079,243.91,88.1617 +592080,243.35,89.932307 +592081,243.64,84.6858 +592082,243.12,86.3987 +592083,242.56,88.1394 +592084,241.95,89.910575 +592085,242.36,84.6654 +592086,241.8,86.3768 +592087,241.2,88.1166 +592088,240.55,89.88746 +592089,241.08,84.6464 +592090,240.48,86.3554 +592091,239.84,88.0933 +592092,239.16,89.86296 +592093,239.8,84.6286 +592094,239.16,86.3344 +592095,238.49,88.0696 +592096,237.76,89.83708 +592097,238.52,84.6122 +592098,237.85,86.3139 +592099,237.13,88.0454 +592100,236.37,89.80982 +592101,237.24,84.5971 +592102,236.53,86.2937 +592103,235.78,88.0207 +592104,234.97,89.78118 +592105,235.95,84.5833 +592106,235.21,86.2741 +592107,234.42,87.9956 +592108,233.58,89.75117 +592109,234.67,84.5708 +592110,233.89,86.2548 +592111,233.06,87.97 +592112,232.19,89.71979 +592113,233.39,84.5596 +592114,232.57,86.236 +592115,231.71,87.944 +592116,230.8,89.68704 +592117,232.1,84.5497 +592118,231.25,86.2176 +592119,230.35,87.9175 +592120,229.4,89.65294 +592121,230.82,84.5411 +592122,229.93,86.1996 +592123,229,87.8905 +592124,228.01,89.61748 +592125,229.53,84.5338 +592126,228.61,86.182 +592127,227.64,87.8631 +592128,226.62,89.58067 +592129,228.25,84.5277 +592130,227.29,86.1649 +592131,226.29,87.8352 +592132,225.23,89.54253 +592133,226.96,84.5229 +592134,225.97,86.1481 +592135,224.94,87.8069 +592136,223.84,89.50305 +592137,225.68,84.5194 +592138,224.65,86.1318 +592139,223.58,87.7781 +592140,222.46,89.46226 +592141,224.39,84.5171 +592142,223.33,86.1159 +592143,222.23,87.7489 +592144,221.07,89.42015 +592145,223.1,84.516 +592146,222.01,86.1004 +592147,220.88,87.7193 +592148,219.68,89.37674 +592149,221.81,84.5161 +592150,220.69,86.0853 +592151,219.52,87.6892 +592152,218.3,89.33205 +592153,220.52,84.5174 +592154,219.37,86.0706 +592155,218.17,87.6587 +592156,216.91,89.28607 +592157,219.23,84.5199 +592158,218.05,86.0563 +592159,216.82,87.6278 +592160,215.53,89.23883 +592161,217.94,84.5236 +592162,216.73,86.0423 +592163,215.47,87.5964 +592164,214.15,89.19034 +592165,216.64,84.5284 +592166,215.41,86.0288 +592167,214.12,87.5647 +592168,212.77,89.14062 +592169,215.35,84.5344 +592170,214.08,86.0156 +592171,212.77,87.5325 +592172,211.39,89.08966 +592173,214.06,84.5415 +592174,212.76,86.0028 +592175,211.41,87.5 +592176,210.01,89.03751 +592177,212.76,84.5497 +592178,211.44,85.9903 +592179,210.06,87.467 +592180,208.63,88.9842 +592181,211.47,84.559 +592182,210.12,85.9783 +592183,208.71,87.4336 +592184,207.25,88.9296 +592185,210.17,84.5694 +592186,208.79,85.9665 +592187,207.37,87.3999 +592188,205.88,88.874 +592189,208.87,84.5808 +592190,207.47,85.9552 +592191,206.02,87.3658 +592192,204.5,88.8171 +592193,207.57,84.5933 +592194,206.14,85.9441 +592195,204.67,87.3313 +592196,203.13,88.7592 +592197,206.27,84.6068 +592198,204.82,85.9334 +592199,203.32,87.2964 +592200,201.76,88.7002 +592201,204.97,84.6212 +592202,203.5,85.9231 +592203,201.97,87.2612 +592204,200.39,88.64 +592205,203.67,84.6367 +592206,202.17,85.913 +592207,200.62,87.2256 +592208,199.02,88.5788 +592209,202.36,84.6531 +592210,200.85,85.9033 +592211,199.28,87.1896 +592212,197.65,88.5166 +592213,201.06,84.6705 +592214,199.52,85.8939 +592215,197.93,87.1534 +592216,196.28,88.4534 +592217,199.75,84.6888 +592218,198.19,85.8848 +592219,196.58,87.1168 +592220,194.92,88.3891 +592221,198.45,84.7079 +592222,196.87,85.8759 +592223,195.24,87.0798 +592224,193.55,88.3239 +592225,197.14,84.728 +592226,195.54,85.8674 +592227,193.89,87.0426 +592228,192.19,88.2577 +592229,195.83,84.7488 +592230,194.21,85.8592 +592231,192.55,87.005 +592232,190.82,88.1906 +592233,194.52,84.7705 +592234,192.89,85.8512 +592235,191.2,86.9671 +592236,189.46,88.1226 +592237,193.21,84.7931 +592238,191.56,85.8435 +592239,189.86,86.929 +592240,188.1,88.0538 +592241,191.89,84.8163 +592242,190.23,85.836 +592243,188.52,86.8905 +592244,186.75,87.984 +592245,190.58,84.8404 +592246,188.9,85.8288 +592247,187.18,86.8518 +592248,185.39,87.9135 +592249,189.26,84.8652 +592250,187.57,85.8219 +592251,185.83,86.8128 +592252,184.03,87.8421 +592253,187.95,84.8906 +592254,186.24,85.8151 +592255,184.49,86.7736 +592256,182.68,87.77 +592257,186.63,84.9168 +592258,184.91,85.8086 +592259,183.15,86.7341 +592260,181.33,87.6971 +592261,185.31,84.9436 +592262,183.58,85.8023 +592263,181.81,86.6943 +592264,179.98,87.6235 +592265,183.99,84.971 +592266,182.25,85.7962 +592267,180.47,86.6544 +592268,178.63,87.5492 +592269,182.67,84.9991 +592270,180.92,85.7904 +592271,179.13,86.6142 +592272,177.28,87.4742 +592273,181.34,85.0277 +592274,179.59,85.7847 +592275,177.79,86.5738 +592276,175.93,87.3986 +592277,180.02,85.0568 +592278,178.26,85.7791 +592279,176.45,86.5331 +592280,174.59,87.3224 +592281,178.69,85.0865 +592282,176.93,85.7738 +592283,175.11,86.4923 +592284,173.24,87.2456 +592285,177.37,85.1167 +592286,175.59,85.7686 +592287,173.77,86.4513 +592288,171.9,87.1683 +592289,176.04,85.1473 +592290,174.26,85.7636 +592291,172.44,86.4101 +592292,170.56,87.0904 +592293,174.71,85.1784 +592294,172.93,85.7587 +592295,171.1,86.3688 +592296,169.22,87.0121 +592297,173.38,85.2099 +592298,171.59,85.7539 +592299,169.76,86.3273 +592300,167.88,86.9332 +592301,172.05,85.2417 +592302,170.26,85.7493 +592303,168.43,86.2857 +592304,166.55,86.854 +592305,170.71,85.2739 +592306,168.92,85.7447 +592307,167.09,86.2439 +592308,165.21,86.7744 +592309,169.38,85.3065 +592310,167.59,85.7403 +592311,165.76,86.202 +592312,163.88,86.6943 +592313,168.04,85.3393 +592314,166.25,85.736 +592315,164.42,86.1599 +592316,162.55,86.614 +592317,166.7,85.3724 +592318,164.92,85.7318 +592319,163.09,86.1178 +592320,161.22,86.5333 +592321,165.36,85.4058 +592322,163.58,85.7276 +592323,161.76,86.0756 +592324,159.89,86.4524 +592325,164.02,85.4393 +592326,162.24,85.7235 +592327,160.42,86.0332 +592328,158.56,86.3712 +592329,162.68,85.4731 +592330,160.91,85.7195 +592331,159.09,85.9908 +592332,157.23,86.2898 +592333,161.34,85.507 +592334,159.57,85.7155 +592335,157.76,85.9484 +592336,155.91,86.2082 +592337,159.99,85.541 +592338,158.23,85.7115 +592339,156.43,85.9059 +592340,154.58,86.1265 +592341,158.65,85.5751 +592342,156.89,85.7076 +592343,155.1,85.8633 +592344,153.26,86.0447 +592345,157.3,85.6093 +592346,155.55,85.7037 +592347,153.77,85.8207 +592348,151.94,85.9627 +592349,155.95,85.6435 +592350,154.21,85.6998 +592351,152.44,85.7781 +592352,150.62,85.8808 +592353,154.6,85.6777 +592354,152.87,85.6959 +592355,151.11,85.7355 +592356,149.3,85.7988 +592357,153.25,85.7119 +592358,151.53,85.692 +592359,149.78,85.6928 +592360,147.99,85.7168 +592361,151.9,85.746 +592362,150.19,85.688 +592363,148.45,85.6502 +592364,146.67,85.6348 +592365,150.54,85.7801 +592366,148.85,85.684 +592367,147.13,85.6076 +592368,145.36,85.5529 +592369,149.19,85.8141 +592370,147.51,85.68 +592371,145.8,85.565 +592372,144.05,85.4711 +592373,147.83,85.8479 +592374,146.17,85.6759 +592375,144.47,85.5224 +592376,142.74,85.3895 +592377,146.47,85.8815 +592378,144.83,85.6718 +592379,143.15,85.4799 +592380,141.43,85.308 +592381,145.11,85.915 +592382,143.48,85.6676 +592383,141.82,85.4375 +592384,140.12,85.2267 +592385,143.75,85.9482 +592386,142.14,85.6633 +592387,140.49,85.3951 +592388,138.81,85.1456 +592389,142.39,85.9812 +592390,140.8,85.6589 +592391,139.17,85.3528 +592392,137.51,85.0648 +592393,141.03,86.0139 +592394,139.45,85.6545 +592395,137.85,85.3106 +592396,136.2,84.9843 +592397,139.66,86.0463 +592398,138.11,85.6499 +592399,136.52,85.2685 +592400,134.9,84.9041 +592401,138.3,86.0783 +592402,136.76,85.6452 +592403,135.2,85.2265 +592404,133.6,84.8243 +592405,136.93,86.11 +592406,135.42,85.6403 +592407,133.87,85.1846 +592408,132.3,84.7448 +592409,135.56,86.1413 +592410,134.07,85.6353 +592411,132.55,85.1428 +592412,131,84.6658 +592413,134.19,86.1722 +592414,132.73,85.6302 +592415,131.23,85.1012 +592416,129.7,84.5872 +592417,132.82,86.2026 +592418,131.38,85.6249 +592419,129.91,85.0598 +592420,128.41,84.509 +592421,131.45,86.2325 +592422,130.03,85.6195 +592423,128.59,85.0184 +592424,127.11,84.4314 +592425,130.08,86.262 +592426,128.69,85.6138 +592427,127.27,84.9773 +592428,125.82,84.3542 +592429,128.7,86.2909 +592430,127.34,85.608 +592431,125.95,84.9363 +592432,124.52,84.2777 +592433,127.33,86.3193 +592434,125.99,85.602 +592435,124.63,84.8955 +592436,123.23,84.2017 +592437,125.95,86.3471 +592438,124.64,85.5958 +592439,123.31,84.8549 +592440,121.94,84.1263 +592441,124.58,86.3742 +592442,123.3,85.5894 +592443,121.99,84.8145 +592444,120.65,84.0516 +592445,123.2,86.4008 +592446,121.95,85.5827 +592447,120.67,84.7744 +592448,119.36,83.9775 +592449,121.82,86.4267 +592450,120.6,85.5758 +592451,119.35,84.7344 +592452,118.08,83.9041 +592453,120.44,86.4519 +592454,119.25,85.5687 +592455,118.03,84.6947 +592456,116.79,83.8314 +592457,119.06,86.4764 +592458,117.9,85.5614 +592459,116.71,84.6552 +592460,115.5,83.7595 +592461,117.68,86.5001 +592462,116.55,85.5538 +592463,115.4,84.6159 +592464,114.22,83.6884 +592465,116.29,86.5232 +592466,115.2,85.5459 +592467,114.08,84.5769 +592468,112.93,83.618 +592469,114.91,86.5454 +592470,113.85,85.5378 +592471,112.76,84.5382 +592472,111.65,83.5485 +592473,113.53,86.5668 +592474,112.5,85.5293 +592475,111.45,84.4997 +592476,110.37,83.4797 +592477,112.14,86.5874 +592478,111.15,85.5206 +592479,110.13,84.4616 +592480,109.09,83.4119 +592481,110.75,86.6072 +592482,109.8,85.5116 +592483,108.82,84.4237 +592484,107.81,83.3449 +592485,109.37,86.6261 +592486,108.45,85.5024 +592487,107.5,84.3861 +592488,106.53,83.2789 +592489,107.98,86.6441 +592490,107.09,85.4928 +592491,106.19,84.3488 +592492,105.25,83.2138 +592493,106.59,86.6612 +592494,105.74,85.4828 +592495,104.87,84.3118 +592496,103.97,83.1496 +592497,105.2,86.6774 +592498,104.39,85.4726 +592499,103.56,84.2751 +592500,102.7,83.0864 +592501,103.81,86.6926 +592502,103.04,85.4621 +592503,102.24,84.2387 +592504,101.42,83.0242 +592505,102.42,86.7069 +592506,101.69,85.4512 +592507,100.93,84.2027 +592508,100.14,82.963 +592509,101.03,86.7202 +592510,100.33,85.4399 +592511,99.614,84.167 +592512,98.868,82.9029 +592513,99.637,86.7324 +592514,98.982,85.4284 +592515,98.3,84.1317 +592516,97.593,82.8438 +592517,98.245,86.7437 +592518,97.629,85.4164 +592519,96.987,84.0966 +592520,96.319,82.7857 +592521,96.851,86.7538 +592522,96.276,85.4042 +592523,95.674,84.062 +592524,95.046,82.7288 +592525,95.458,86.763 +592526,94.923,85.3915 +592527,94.361,84.0277 +592528,93.773,82.6729 +592529,94.064,86.771 +592530,93.57,85.3785 +592531,93.048,83.9938 +592532,92.5,82.6182 +592533,92.669,86.778 +592534,92.216,85.3651 +592535,91.736,83.9602 +592536,91.229,82.5646 +592537,91.275,86.7839 +592538,90.863,85.3513 +592539,90.424,83.927 +592540,89.957,82.5121 +592541,89.879,86.7886 +592542,89.509,85.3372 +592543,89.111,83.8942 +592544,88.686,82.4608 +592545,88.484,86.7922 +592546,88.156,85.3227 +592547,87.799,83.8618 +592548,87.415,82.4107 +592549,87.088,86.7946 +592550,86.802,85.3077 +592551,86.488,83.8298 +592552,86.145,82.3618 +592553,85.691,86.7959 +592554,85.448,85.2924 +592555,85.176,83.7981 +592556,84.875,82.314 +592557,84.295,86.796 +592558,84.095,85.2767 +592559,83.864,83.7669 +592560,83.605,82.2675 +592561,82.898,86.795 +592562,82.741,85.2605 +592563,82.553,83.736 +592564,82.336,82.2222 +592565,81.501,86.7927 +592566,81.387,85.244 +592567,81.242,83.7056 +592568,81.066,82.1782 +592569,80.104,86.7892 +592570,80.033,85.2271 +592571,79.93,83.6755 +592572,79.797,82.1354 +592573,78.707,86.7845 +592574,78.679,85.2097 +592575,78.619,83.6459 +592576,78.528,82.0938 +592577,77.309,86.7785 +592578,77.325,85.1919 +592579,77.308,83.6167 +592580,77.259,82.0535 +592581,75.912,86.7713 +592582,75.971,85.1737 +592583,75.997,83.5879 +592584,75.991,82.0144 +592585,74.515,86.7629 +592586,74.617,85.1551 +592587,74.686,83.5595 +592588,74.722,81.9767 +592589,73.117,86.7532 +592590,73.264,85.136 +592591,73.375,83.5316 +592592,73.453,81.9402 +592593,71.72,86.7423 +592594,71.91,85.1166 +592595,72.064,83.5041 +592596,72.185,81.905 +592597,70.323,86.7301 +592598,70.556,85.0967 +592599,70.753,83.477 +592600,70.916,81.8711 +592601,68.925,86.7166 +592602,69.202,85.0763 +592603,69.442,83.4503 +592604,69.647,81.8384 +592605,67.528,86.7018 +592606,67.849,85.0556 +592607,68.131,83.424 +592608,68.378,81.8071 +592609,66.132,86.6857 +592610,66.495,85.0344 +592611,66.82,83.3982 +592612,67.109,81.7771 +592613,64.735,86.6684 +592614,65.142,85.0127 +592615,65.509,83.3728 +592616,65.84,81.7484 +592617,63.338,86.6498 +592618,63.789,84.9907 +592619,64.198,83.3479 +592620,64.571,81.721 +592621,61.942,86.6298 +592622,62.436,84.9681 +592623,62.887,83.3233 +592624,63.301,81.6948 +592625,60.547,86.6086 +592626,61.083,84.9452 +592627,61.576,83.2992 +592628,62.031,81.67 +592629,59.151,86.5861 +592630,59.73,84.9218 +592631,60.265,83.2756 +592632,60.761,81.6465 +592633,57.756,86.5623 +592634,58.377,84.898 +592635,58.954,83.2523 +592636,59.49,81.6243 +592637,56.362,86.5371 +592638,57.024,84.8738 +592639,57.642,83.2295 +592640,58.22,81.6034 +592641,54.967,86.5107 +592642,55.672,84.8491 +592643,56.331,83.2071 +592644,56.948,81.5838 +592645,53.574,86.483 +592646,54.32,84.824 +592647,55.019,83.1852 +592648,55.677,81.5655 +592649,52.181,86.454 +592650,52.968,84.7984 +592651,53.707,83.1637 +592652,54.405,81.5485 +592653,50.788,86.4237 +592654,51.616,84.7724 +592655,52.396,83.1426 +592656,53.132,81.5327 +592657,49.396,86.3921 +592658,50.264,84.746 +592659,51.084,83.1219 +592660,51.859,81.5182 +592661,48.005,86.3593 +592662,48.913,84.7192 +592663,49.771,83.1017 +592664,50.585,81.505 +592665,46.614,86.3251 +592666,47.562,84.6919 +592667,48.459,83.0818 +592668,49.311,81.4931 +592669,45.224,86.2897 +592670,46.211,84.6642 +592671,47.147,83.0624 +592672,48.036,81.4824 +592673,43.834,86.253 +592674,44.861,84.6361 +592675,45.834,83.0434 +592676,46.761,81.473 +592677,42.446,86.2151 +592678,43.51,84.6076 +592679,44.521,83.0248 +592680,45.485,81.4648 +592681,41.058,86.1759 +592682,42.16,84.5787 +592683,43.208,83.0067 +592684,44.208,81.4579 +592685,39.671,86.1354 +592686,40.811,84.5493 +592687,41.895,82.9889 +592688,42.931,81.4521 +592689,38.285,86.0938 +592690,39.461,84.5195 +592691,40.581,82.9716 +592692,41.653,81.4476 +592693,36.9,86.0509 +592694,38.112,84.4894 +592695,39.267,82.9546 +592696,40.374,81.4442 +592697,35.515,86.0067 +592698,36.763,84.4588 +592699,37.953,82.938 +592700,39.094,81.4421 +592701,34.132,85.9614 +592702,35.415,84.4278 +592703,36.639,82.9219 +592704,37.813,81.4411 +592705,32.749,85.9149 +592706,34.067,84.3964 +592707,35.325,82.9061 +592708,36.532,81.4413 +592709,31.368,85.8672 +592710,32.719,84.3647 +592711,34.01,82.8907 +592712,35.25,81.4426 +592713,29.987,85.8184 +592714,31.371,84.3325 +592715,32.695,82.8757 +592716,33.966,81.4451 +592717,28.608,85.7684 +592718,30.024,84.3 +592719,31.379,82.861 +592720,32.682,81.4487 +592721,27.229,85.7172 +592722,28.678,84.2671 +592723,30.064,82.8468 +592724,31.397,81.4534 +592725,25.852,85.6649 +592726,27.331,84.2338 +592727,28.748,82.8329 +592728,30.111,81.4591 +592729,24.476,85.6115 +592730,25.985,84.2002 +592731,27.432,82.8193 +592732,28.824,81.466 +592733,23.101,85.557 +592734,24.64,84.1662 +592735,26.115,82.8061 +592736,27.536,81.4739 +592737,21.727,85.5015 +592738,23.295,84.1318 +592739,24.798,82.7933 +592740,26.247,81.4828 +592741,20.354,85.4449 +592742,21.95,84.0971 +592743,23.481,82.7808 +592744,24.957,81.4927 +592745,18.983,85.3872 +592746,20.606,84.062 +592747,22.163,82.7686 +592748,23.666,81.5036 +592749,17.612,85.3285 +592750,19.262,84.0267 +592751,20.846,82.7568 +592752,22.373,81.5156 +592753,16.243,85.2688 +592754,17.918,83.9909 +592755,19.527,82.7452 +592756,21.08,81.5284 +592757,14.876,85.2081 +592758,16.575,83.9549 +592759,18.209,82.734 +592760,19.785,81.5422 +592761,13.509,85.1465 +592762,15.233,83.9185 +592763,16.89,82.7232 +592764,18.49,81.5569 +592765,12.144,85.0839 +592766,13.891,83.8819 +592767,15.57,82.7126 +592768,17.193,81.5726 +592769,10.78,85.0203 +592770,12.549,83.8449 +592771,14.251,82.7023 +592772,15.895,81.5891 +592773,9.4179,84.9559 +592774,11.208,83.8076 +592775,12.93,82.6923 +592776,14.595,81.6064 +592777,8.0568,84.8906 +592778,9.8672,83.7701 +592779,11.61,82.6826 +592780,13.295,81.6246 +592781,6.6972,84.8244 +592782,8.527,83.7323 +592783,10.289,82.6731 +592784,11.993,81.6436 +592785,5.3389,84.7574 +592786,7.1872,83.6942 +592787,8.9676,82.6639 +592788,10.69,81.6633 +592789,3.9821,84.6896 +592790,5.848,83.6558 +592791,7.6458,82.655 +592792,9.3854,81.6839 +592793,2.6267,84.621 +592794,4.5092,83.6172 +592795,6.3237,82.6464 +592796,8.0798,81.7051 +592797,1.2728,84.5516 +592798,3.171,83.5783 +592799,5.0011,82.6379 +592800,6.7728,81.7271 +592801,359.92,84.4815 +592802,1.8332,83.5392 +592803,3.6781,82.6297 +592804,5.4645,81.7498 +592805,358.57,84.4106 +592806,0.49594,83.4998 +592807,2.3547,82.6218 +592808,4.1549,81.7731 +592809,357.22,84.3391 +592810,359.16,83.4602 +592811,1.0309,82.614 +592812,2.844,81.7971 +592813,355.87,84.2669 +592814,357.82,83.4204 +592815,359.71,82.6065 +592816,1.5317,81.8217 +592817,354.53,84.1941 +592818,356.49,83.3804 +592819,358.38,82.5992 +592820,0.218,81.8469 +592821,353.18,84.1207 +592822,355.15,83.3403 +592823,357.06,82.592 +592824,358.9,81.8726 +592825,351.84,84.0466 +592826,353.82,83.2999 +592827,355.73,82.5851 +592828,357.59,81.8989 +592829,350.49,83.972 +592830,352.48,83.2593 +592831,354.41,82.5783 +592832,356.27,81.9257 +592833,349.15,83.8969 +592834,351.15,83.2186 +592835,353.08,82.5717 +592836,354.95,81.9529 +592837,347.82,83.8213 +592838,349.82,83.1777 +592839,351.75,82.5652 +592840,353.63,81.9807 +592841,346.48,83.7452 +592842,348.48,83.1366 +592843,350.42,82.5589 +592844,352.31,82.0088 +592845,345.14,83.6687 +592846,347.15,83.0954 +592847,349.1,82.5527 +592848,350.98,82.0374 +592849,343.81,83.5918 +592850,345.82,83.0541 +592851,347.77,82.5467 +592852,349.66,82.0663 +592853,342.48,83.5144 +592854,344.49,83.0127 +592855,346.44,82.5408 +592856,348.33,82.0956 +592857,341.14,83.4367 +592858,343.16,82.9711 +592859,345.11,82.535 +592860,347,82.1252 +592861,339.81,83.3587 +592862,341.83,82.9295 +592863,343.78,82.5293 +592864,345.68,82.155 +592865,338.49,83.2804 +592866,340.5,82.8877 +592867,342.45,82.5237 +592868,344.34,82.1852 +592869,337.16,83.2018 +592870,339.17,82.8459 +592871,341.12,82.5181 +592872,343.01,82.2156 +592873,335.84,83.1229 +592874,337.84,82.8039 +592875,339.79,82.5127 +592876,341.68,82.2462 +592877,334.51,83.0439 +592878,336.51,82.7619 +592879,338.46,82.5073 +592880,340.34,82.277 +592881,333.19,82.9647 +592882,335.19,82.7199 +592883,337.12,82.5019 +592884,339.01,82.3079 +592885,331.87,82.8853 +592886,333.86,82.6778 +592887,335.79,82.4966 +592888,337.67,82.3389 +592889,330.55,82.8058 +592890,332.53,82.6357 +592891,334.46,82.4914 +592892,336.33,82.3701 +592893,329.23,82.7262 +592894,331.21,82.5935 +592895,333.13,82.4862 +592896,334.99,82.4013 +592897,327.92,82.6466 +592898,329.88,82.5514 +592899,331.79,82.4809 +592900,333.65,82.4325 +592901,326.6,82.5669 +592902,328.56,82.5092 +592903,330.46,82.4757 +592904,332.3,82.4638 +592905,325.29,82.4873 +592906,327.24,82.467 +592907,329.12,82.4705 +592908,330.96,82.495 +592909,323.98,82.4076 +592910,325.91,82.4249 +592911,327.79,82.4653 +592912,329.61,82.5262 +592913,322.67,82.3281 +592914,324.59,82.3828 +592915,326.45,82.46 +592916,328.27,82.5573 +592917,321.36,82.2486 +592918,323.27,82.3407 +592919,325.12,82.4548 +592920,326.92,82.5883 +592921,320.06,82.1692 +592922,321.94,82.2986 +592923,323.78,82.4494 +592924,325.57,82.6192 +592925,318.75,82.09 +592926,320.62,82.2566 +592927,322.44,82.4441 +592928,324.21,82.6499 +592929,317.45,82.011 +592930,319.3,82.2147 +592931,321.11,82.4386 +592932,322.86,82.6804 +592933,316.15,81.9322 +592934,317.98,82.1728 +592935,319.77,82.4331 +592936,321.51,82.7108 +592937,314.85,81.8536 +592938,316.66,82.131 +592939,318.43,82.4276 +592940,320.15,82.7408 +592941,313.55,81.7753 +592942,315.34,82.0893 +592943,317.09,82.4219 +592944,318.79,82.7706 +592945,312.25,81.6974 +592946,314.02,82.0477 +592947,315.75,82.4161 +592948,317.43,82.8002 +592949,310.95,81.6197 +592950,312.71,82.0063 +592951,314.41,82.4102 +592952,316.07,82.8293 +592953,309.66,81.5424 +592954,311.39,81.9649 +592955,313.07,82.4043 +592956,314.71,82.8582 +592957,308.36,81.4655 +592958,310.07,81.9237 +592959,311.73,82.3981 +592960,313.35,82.8866 +592961,307.07,81.389 +592962,308.75,81.8826 +592963,310.39,82.3919 +592964,311.99,82.9147 +592965,305.78,81.313 +592966,307.44,81.8417 +592967,309.05,82.3855 +592968,310.62,82.9423 +592969,304.49,81.2374 +592970,306.12,81.8009 +592971,307.71,82.379 +592972,309.26,82.9695 +592973,303.2,81.1624 +592974,304.8,81.7603 +592975,306.37,82.3723 +592976,307.89,82.9961 +592977,301.91,81.0878 +592978,303.49,81.7198 +592979,305.02,82.3654 +592980,306.52,83.0223 +592981,300.63,81.0139 +592982,302.17,81.6796 +592983,303.68,82.3583 +592984,305.15,83.0479 +592985,299.34,80.9405 +592986,300.86,81.6395 +592987,302.34,82.3511 +592988,303.78,83.073 +592989,298.06,80.8677 +592990,299.55,81.5997 +592991,301,82.3436 +592992,302.41,83.0975 +592993,296.77,80.7956 +592994,298.23,81.56 +592995,299.65,82.336 +592996,301.03,83.1214 +592997,295.49,80.7241 +592998,296.92,81.5206 +592999,298.31,82.3282 +593000,299.66,83.1447 +593001,294.21,80.6533 +593002,295.61,81.4814 +593003,296.96,82.3201 +593004,298.28,83.1673 +593005,292.93,80.5833 +593006,294.29,81.4425 +593007,295.62,82.3118 +593008,296.91,83.1892 +593009,291.65,80.5139 +593010,292.98,81.4038 +593011,294.27,82.3033 +593012,295.53,83.2104 +593013,290.38,80.4454 +593014,291.67,81.3653 +593015,292.93,82.2945 +593016,294.15,83.2309 +593017,289.1,80.3776 +593018,290.36,81.3271 +593019,291.58,82.2855 +593020,292.77,83.2507 +593021,287.82,80.3106 +593022,289.05,81.2892 +593023,290.24,82.2762 +593024,291.39,83.2697 +593025,286.55,80.2445 +593026,287.74,81.2515 +593027,288.89,82.2666 +593028,290.01,83.2879 +593029,285.28,80.1792 +593030,286.43,81.2141 +593031,287.54,82.2568 +593032,288.63,83.3053 +593033,284,80.1148 +593034,285.12,81.1771 +593035,286.2,82.2467 +593036,287.24,83.3218 +593037,282.73,80.0513 +593038,283.81,81.1403 +593039,284.85,82.2363 +593040,285.86,83.3375 +593041,281.46,79.989 +593042,282.5,81.1038 +593043,283.5,82.2256 +593044,284.47,83.3524 +593045,280.19,79.927 +593046,281.19,81.0676 +593047,282.15,82.2146 +593048,283.09,83.3663 +593049,278.92,79.866 +593050,279.88,81.0318 +593051,280.81,82.2033 +593052,281.7,83.3793 +593053,277.65,79.807 +593054,278.57,80.9963 +593055,279.46,82.1917 +593056,280.31,83.3914 +593057,276.39,79.748 +593058,277.26,80.9611 +593059,278.11,82.1798 +593060,278.93,83.4026 +593061,275.12,79.69 +593062,275.96,80.9262 +593063,276.76,82.1676 +593064,277.54,83.4128 +593065,273.85,79.634 +593066,274.65,80.8917 +593067,275.41,82.155 +593068,276.15,83.422 +593069,272.59,79.578 +593070,273.34,80.8575 +593071,274.07,82.1421 +593072,274.76,83.4302 +593073,271.32,79.524 +593074,272.03,80.8237 +593075,272.72,82.1288 +593076,273.37,83.4374 +593077,270.06,79.47 +593078,270.73,80.7902 +593079,271.37,82.1152 +593080,271.98,83.4436 +593081,268.79,79.418 +593082,269.42,80.7571 +593083,270.02,82.1013 +593084,270.58,83.4487 +593085,267.53,79.367 +593086,268.11,80.7244 +593087,268.67,82.087 +593088,269.19,83.4528 +593089,266.27,79.317 +593090,266.81,80.6921 +593091,267.32,82.0723 +593092,267.8,83.4558 +593093,265,79.268 +593094,265.5,80.6601 +593095,265.97,82.0573 +593096,266.41,83.4577 +593097,263.74,79.22 +593098,264.2,80.6285 +593099,264.62,82.0419 +593100,265.01,83.4585 +593101,262.48,79.173 +593102,262.89,80.5973 +593103,263.27,82.0261 +593104,263.62,83.4582 +593105,261.22,79.128 +593106,261.58,80.5665 +593107,261.92,82.01 +593108,262.22,83.4568 +593109,259.96,79.084 +593110,260.28,80.5361 +593111,260.57,81.9934 +593112,260.83,83.4543 +593113,258.7,79.041 +593114,258.97,80.5061 +593115,259.22,81.9765 +593116,259.43,83.4506 +593117,257.44,78.999 +593118,257.67,80.4764 +593119,257.87,81.9592 +593120,258.04,83.4457 +593121,256.18,78.958 +593122,256.36,80.4472 +593123,256.52,81.9415 +593124,256.64,83.4397 +593125,254.92,78.919 +593126,255.06,80.4184 +593127,255.17,81.9234 +593128,255.25,83.4325 +593129,253.65,78.881 +593130,253.75,80.39 +593131,253.82,81.9049 +593132,253.85,83.4242 +593133,252.39,78.844 +593134,252.45,80.362 +593135,252.47,81.886 +593136,252.46,83.4146 +593137,251.13,78.808 +593138,251.14,80.3344 +593139,251.12,81.8668 +593140,251.06,83.4038 +593141,249.87,78.774 +593142,249.84,80.3073 +593143,249.77,81.8471 +593144,249.67,83.3919 +593145,248.61,78.74 +593146,248.53,80.2805 +593147,248.42,81.827 +593148,248.27,83.3787 +593149,247.35,78.708 +593150,247.23,80.2542 +593151,247.07,81.8065 +593152,246.87,83.3644 +593153,246.09,78.678 +593154,245.92,80.2283 +593155,245.72,81.7856 +593156,245.48,83.3488 +593157,244.83,78.648 +593158,244.62,80.2028 +593159,244.37,81.7643 +593160,244.08,83.332 +593161,243.57,78.62 +593162,243.31,80.1778 +593163,243.02,81.7425 +593164,242.69,83.3139 +593165,242.31,78.594 +593166,242.01,80.1532 +593167,241.67,81.7204 +593168,241.29,83.2947 +593169,241.05,78.568 +593170,240.7,80.1289 +593171,240.32,81.6978 +593172,239.9,83.2742 +593173,239.79,78.544 +593174,239.4,80.1052 +593175,238.97,81.6749 +593176,238.5,83.2524 +593177,238.53,78.521 +593178,238.09,80.0818 +593179,237.62,81.6515 +593180,237.11,83.2295 +593181,237.27,78.499 +593182,236.79,80.0588 +593183,236.27,81.6277 +593184,235.71,83.2053 +593185,236.01,78.479 +593186,235.48,80.0363 +593187,234.92,81.6035 +593188,234.32,83.1799 +593189,234.75,78.459 +593190,234.18,80.0142 +593191,233.57,81.5789 +593192,232.92,83.1532 +593193,233.48,78.441 +593194,232.87,79.993 +593195,232.22,81.5539 +593196,231.53,83.1253 +593197,232.22,78.425 +593198,231.57,79.971 +593199,230.87,81.5285 +593200,230.14,83.0962 +593201,230.96,78.409 +593202,230.26,79.95 +593203,229.53,81.5027 +593204,228.75,83.0659 +593205,229.69,78.395 +593206,228.95,79.93 +593207,228.18,81.4764 +593208,227.35,83.0343 +593209,228.43,78.382 +593210,227.65,79.91 +593211,226.83,81.4498 +593212,225.96,83.0015 +593213,227.16,78.37 +593214,226.34,79.89 +593215,225.48,81.4228 +593216,224.57,82.9676 +593217,225.9,78.36 +593218,225.04,79.871 +593219,224.13,81.3953 +593220,223.18,82.9324 +593221,224.63,78.351 +593222,223.73,79.852 +593223,222.79,81.3675 +593224,221.79,82.896 +593225,223.36,78.343 +593226,222.42,79.834 +593227,221.44,81.3392 +593228,220.4,82.8584 +593229,222.1,78.336 +593230,221.12,79.816 +593231,220.09,81.3106 +593232,219.02,82.8196 +593233,220.83,78.33 +593234,219.81,79.799 +593235,218.74,81.2816 +593236,217.63,82.7797 +593237,219.56,78.325 +593238,218.5,79.781 +593239,217.4,81.2522 +593240,216.24,82.7386 +593241,218.29,78.322 +593242,217.19,79.765 +593243,216.05,81.2224 +593244,214.86,82.6963 +593245,217.02,78.32 +593246,215.89,79.748 +593247,214.71,81.1923 +593248,213.47,82.6529 +593249,215.75,78.319 +593250,214.58,79.732 +593251,213.36,81.1617 +593252,212.09,82.6083 +593253,214.47,78.319 +593254,213.27,79.717 +593255,212.02,81.1308 +593256,210.71,82.5626 +593257,213.2,78.32 +593258,211.96,79.701 +593259,210.67,81.0995 +593260,209.32,82.5158 +593261,211.93,78.323 +593262,210.65,79.687 +593263,209.33,81.0679 +593264,207.94,82.4679 +593265,210.65,78.326 +593266,209.34,79.672 +593267,207.98,81.0359 +593268,206.56,82.4188 +593269,209.38,78.33 +593270,208.03,79.658 +593271,206.64,81.0035 +593272,205.18,82.3688 +593273,208.1,78.336 +593274,206.72,79.644 +593275,205.3,80.9708 +593276,203.81,82.3176 +593277,206.82,78.343 +593278,205.41,79.631 +593279,203.95,80.9378 +593280,202.43,82.2654 +593281,205.54,78.35 +593282,204.1,79.618 +593283,202.61,80.9044 +593284,201.05,82.2122 +593285,204.26,78.359 +593286,202.79,79.605 +593287,201.27,80.8707 +593288,199.68,82.1579 +593289,202.98,78.368 +593290,201.48,79.592 +593291,199.93,80.8366 +593292,198.31,82.1026 +593293,201.7,78.379 +593294,200.17,79.58 +593295,198.58,80.8022 +593296,196.93,82.0464 +593297,200.41,78.39 +593298,198.86,79.569 +593299,197.24,80.7676 +593300,195.56,81.9892 +593301,199.13,78.403 +593302,197.54,79.557 +593303,195.9,80.7326 +593304,194.19,81.931 +593305,197.84,78.416 +593306,196.23,79.546 +593307,194.56,80.6973 +593308,192.83,81.8719 +593309,196.56,78.43 +593310,194.92,79.535 +593311,193.22,80.6617 +593312,191.46,81.8119 +593313,195.27,78.445 +593314,193.61,79.525 +593315,191.88,80.6258 +593316,190.09,81.751 +593317,193.98,78.461 +593318,192.29,79.514 +593319,190.55,80.5896 +593320,188.73,81.6892 +593321,192.69,78.478 +593322,190.98,79.504 +593323,189.21,80.5532 +593324,187.37,81.6265 +593325,191.39,78.496 +593326,189.66,79.495 +593327,187.87,80.5165 +593328,186.01,81.5631 +593329,190.1,78.514 +593330,188.35,79.485 +593331,186.53,80.4795 +593332,184.65,81.4988 +593333,188.81,78.533 +593334,187.03,79.476 +593335,185.2,80.4423 +593336,183.29,81.4337 +593337,187.51,78.553 +593338,185.72,79.467 +593339,183.86,80.4048 +593340,181.93,81.3679 +593341,186.21,78.574 +593342,184.4,79.459 +593343,182.52,80.3671 +593344,180.57,81.3013 +593345,184.91,78.595 +593346,183.08,79.45 +593347,181.19,80.3291 +593348,179.22,81.234 +593349,183.61,78.617 +593350,181.77,79.442 +593351,179.85,80.2909 +593352,177.87,81.166 +593353,182.31,78.639 +593354,180.45,79.434 +593355,178.52,80.2526 +593356,176.52,81.0973 +593357,181.01,78.662 +593358,179.13,79.426 +593359,177.19,80.214 +593360,175.17,81.028 +593361,179.71,78.686 +593362,177.81,79.419 +593363,175.85,80.1752 +593364,173.82,80.958 +593365,178.4,78.71 +593366,176.49,79.411 +593367,174.52,80.1362 +593368,172.47,80.8874 +593369,177.09,78.735 +593370,175.17,79.404 +593371,173.19,80.097 +593372,171.13,80.8163 +593373,175.78,78.761 +593374,173.85,79.397 +593375,171.86,80.0577 +593376,169.78,80.7446 +593377,174.47,78.786 +593378,172.53,79.39 +593379,170.53,80.0182 +593380,168.44,80.6724 +593381,173.16,78.813 +593382,171.21,79.384 +593383,169.19,79.979 +593384,167.1,80.5997 +593385,171.85,78.84 +593386,169.89,79.377 +593387,167.86,79.939 +593388,165.76,80.5265 +593389,170.53,78.867 +593390,168.57,79.371 +593391,166.54,79.899 +593392,164.43,80.4529 +593393,169.22,78.894 +593394,167.25,79.365 +593395,165.21,79.859 +593396,163.09,80.3789 +593397,167.9,78.922 +593398,165.92,79.359 +593399,163.88,79.818 +593400,161.76,80.3045 +593401,166.58,78.95 +593402,164.6,79.353 +593403,162.55,79.778 +593404,160.42,80.2297 +593405,165.26,78.979 +593406,163.28,79.347 +593407,161.22,79.738 +593408,159.09,80.1545 +593409,163.94,79.008 +593410,161.95,79.341 +593411,159.9,79.697 +593412,157.76,80.0791 +593413,162.62,79.037 +593414,160.63,79.335 +593415,158.57,79.657 +593416,156.44,80.0034 +593417,161.29,79.066 +593418,159.3,79.33 +593419,157.24,79.616 +593420,155.11,79.927 +593421,159.97,79.095 +593422,157.98,79.324 +593423,155.92,79.575 +593424,153.79,79.851 +593425,158.64,79.125 +593426,156.65,79.319 +593427,154.6,79.535 +593428,152.47,79.775 +593429,157.31,79.154 +593430,155.32,79.313 +593431,153.27,79.494 +593432,151.15,79.698 +593433,155.98,79.184 +593434,154,79.308 +593435,151.95,79.453 +593436,149.83,79.622 +593437,154.64,79.214 +593438,152.67,79.303 +593439,150.63,79.412 +593440,148.51,79.545 +593441,153.31,79.244 +593442,151.34,79.297 +593443,149.3,79.371 +593444,147.19,79.468 +593445,151.98,79.274 +593446,150.01,79.292 +593447,147.98,79.33 +593448,145.88,79.391 +593449,150.64,79.304 +593450,148.68,79.287 +593451,146.66,79.289 +593452,144.57,79.314 +593453,149.3,79.334 +593454,147.35,79.281 +593455,145.34,79.248 +593456,143.26,79.237 +593457,147.96,79.364 +593458,146.02,79.276 +593459,144.02,79.208 +593460,141.95,79.161 +593461,146.62,79.394 +593462,144.69,79.271 +593463,142.7,79.167 +593464,140.64,79.084 +593465,145.28,79.423 +593466,143.36,79.265 +593467,141.38,79.126 +593468,139.33,79.007 +593469,143.93,79.453 +593470,142.03,79.26 +593471,140.06,79.085 +593472,138.03,78.931 +593473,142.59,79.482 +593474,140.7,79.255 +593475,138.74,79.044 +593476,136.72,78.854 +593477,141.24,79.511 +593478,139.36,79.249 +593479,137.43,79.004 +593480,135.42,78.778 +593481,139.89,79.54 +593482,138.03,79.244 +593483,136.11,78.963 +593484,134.12,78.702 +593485,138.54,79.569 +593486,136.7,79.238 +593487,134.79,78.923 +593488,132.83,78.626 +593489,137.19,79.597 +593490,135.36,79.232 +593491,133.48,78.882 +593492,131.53,78.551 +593493,135.83,79.625 +593494,134.03,79.226 +593495,132.16,78.842 +593496,130.23,78.476 +593497,134.48,79.653 +593498,132.69,79.22 +593499,130.85,78.802 +593500,128.94,78.401 +593501,133.12,79.68 +593502,131.36,79.214 +593503,129.53,78.762 +593504,127.65,78.326 +593505,131.77,79.707 +593506,130.02,79.208 +593507,128.22,78.722 +593508,126.36,78.252 +593509,130.41,79.734 +593510,128.69,79.202 +593511,126.91,78.683 +593512,125.07,78.179 +593513,129.05,79.76 +593514,127.35,79.195 +593515,125.59,78.643 +593516,123.78,78.105 +593517,127.69,79.786 +593518,126.01,79.189 +593519,124.28,78.604 +593520,122.49,78.033 +593521,126.33,79.811 +593522,124.68,79.182 +593523,122.97,78.564 +593524,121.21,77.96 +593525,124.96,79.836 +593526,123.34,79.175 +593527,121.66,78.525 +593528,119.92,77.889 +593529,123.6,79.86 +593530,122,79.168 +593531,120.35,78.486 +593532,118.64,77.817 +593533,122.23,79.883 +593534,120.66,79.161 +593535,119.04,78.448 +593536,117.36,77.747 +593537,120.86,79.906 +593538,119.32,79.153 +593539,117.73,78.409 +593540,116.08,77.677 +593541,119.49,79.929 +593542,117.98,79.145 +593543,116.42,78.371 +593544,114.8,77.607 +593545,118.12,79.951 +593546,116.64,79.138 +593547,115.11,78.333 +593548,113.52,77.539 +593549,116.75,79.972 +593550,115.3,79.129 +593551,113.8,78.295 +593552,112.25,77.471 +593553,115.38,79.992 +593554,113.96,79.121 +593555,112.49,78.257 +593556,110.97,77.403 +593557,114.01,80.0118 +593558,112.62,79.113 +593559,111.18,78.22 +593560,109.7,77.337 +593561,112.63,80.0309 +593562,111.28,79.104 +593563,109.88,78.183 +593564,108.43,77.271 +593565,111.26,80.0491 +593566,109.94,79.095 +593567,108.57,78.146 +593568,107.15,77.206 +593569,109.88,80.0667 +593570,108.6,79.086 +593571,107.26,78.11 +593572,105.88,77.141 +593573,108.5,80.0834 +593574,107.25,79.076 +593575,105.96,78.073 +593576,104.62,77.078 +593577,107.13,80.0994 +593578,105.91,79.066 +593579,104.65,78.037 +593580,103.35,77.015 +593581,105.75,80.1145 +593582,104.57,79.056 +593583,103.35,78.002 +593584,102.08,76.953 +593585,104.37,80.1288 +593586,103.22,79.046 +593587,102.04,77.966 +593588,100.81,76.892 +593589,102.98,80.1422 +593590,101.88,79.035 +593591,100.74,77.931 +593592,99.548,76.832 +593593,101.6,80.1547 +593594,100.54,79.024 +593595,99.431,77.896 +593596,98.283,76.773 +593597,100.22,80.1664 +593598,99.193,79.013 +593599,98.127,77.862 +593600,97.02,76.715 +593601,98.834,80.1771 +593602,97.848,79.001 +593603,96.823,77.828 +593604,95.757,76.658 +593605,97.449,80.1869 +593606,96.504,78.99 +593607,95.519,77.794 +593608,94.495,76.602 +593609,96.064,80.1958 +593610,95.159,78.977 +593611,94.216,77.76 +593612,93.234,76.547 +593613,94.677,80.2037 +593614,93.814,78.965 +593615,92.913,77.727 +593616,91.974,76.493 +593617,93.29,80.2106 +593618,92.468,78.952 +593619,91.61,77.694 +593620,90.714,76.439 +593621,91.902,80.2165 +593622,91.123,78.939 +593623,90.308,77.662 +593624,89.455,76.387 +593625,90.513,80.2214 +593626,89.777,78.925 +593627,89.005,77.63 +593628,88.197,76.336 +593629,89.124,80.2253 +593630,88.431,78.912 +593631,87.703,77.598 +593632,86.939,76.286 +593633,87.734,80.2281 +593634,87.085,78.897 +593635,86.402,77.567 +593636,85.682,76.237 +593637,86.344,80.2299 +593638,85.739,78.883 +593639,85.1,77.536 +593640,84.426,76.19 +593641,84.953,80.2307 +593642,84.393,78.868 +593643,83.799,77.505 +593644,83.17,76.143 +593645,83.561,80.2303 +593646,83.046,78.853 +593647,82.497,77.475 +593648,81.914,76.098 +593649,82.169,80.2289 +593650,81.7,78.837 +593651,81.196,77.445 +593652,80.659,76.053 +593653,80.777,80.2264 +593654,80.353,78.821 +593655,79.895,77.415 +593656,79.404,76.01 +593657,79.384,80.2228 +593658,79.006,78.805 +593659,78.595,77.386 +593660,78.15,75.968 +593661,77.991,80.218 +593662,77.659,78.788 +593663,77.294,77.357 +593664,76.896,75.927 +593665,76.597,80.2122 +593666,76.312,78.771 +593667,75.994,77.329 +593668,75.643,75.888 +593669,75.204,80.2052 +593670,74.965,78.754 +593671,74.693,77.301 +593672,74.389,75.849 +593673,73.809,80.197 +593674,73.617,78.736 +593675,73.393,77.274 +593676,73.136,75.812 +593677,72.415,80.1878 +593678,72.27,78.718 +593679,72.093,77.246 +593680,71.883,75.776 +593681,71.021,80.1773 +593682,70.923,78.699 +593683,70.793,77.22 +593684,70.631,75.741 +593685,69.626,80.1657 +593686,69.575,78.68 +593687,69.493,77.193 +593688,69.378,75.707 +593689,68.231,80.1529 +593690,68.228,78.661 +593691,68.193,77.167 +593692,68.125,75.675 +593693,66.836,80.139 +593694,66.881,78.641 +593695,66.893,77.142 +593696,66.873,75.644 +593697,65.441,80.1239 +593698,65.533,78.621 +593699,65.593,77.117 +593700,65.62,75.614 +593701,64.046,80.1076 +593702,64.186,78.6 +593703,64.293,77.092 +593704,64.368,75.585 +593705,62.651,80.0901 +593706,62.839,78.579 +593707,62.993,77.068 +593708,63.116,75.558 +593709,61.256,80.0714 +593710,61.491,78.558 +593711,61.693,77.044 +593712,61.863,75.532 +593713,59.861,80.0516 +593714,60.144,78.536 +593715,60.394,77.021 +593716,60.61,75.507 +593717,58.466,80.0305 +593718,58.797,78.514 +593719,59.094,76.998 +593720,59.357,75.483 +593721,57.072,80.0083 +593722,57.45,78.491 +593723,57.794,76.975 +593724,58.104,75.46 +593725,55.677,79.985 +593726,56.103,78.468 +593727,56.494,76.953 +593728,56.851,75.439 +593729,54.283,79.96 +593730,54.756,78.445 +593731,55.194,76.931 +593732,55.597,75.419 +593733,52.889,79.934 +593734,53.41,78.421 +593735,53.894,76.91 +593736,54.343,75.401 +593737,51.496,79.907 +593738,52.063,78.397 +593739,52.593,76.889 +593740,53.089,75.383 +593741,50.102,79.879 +593742,50.716,78.372 +593743,51.293,76.868 +593744,51.835,75.367 +593745,48.709,79.85 +593746,49.37,78.348 +593747,49.993,76.848 +593748,50.579,75.352 +593749,47.317,79.819 +593750,48.024,78.322 +593751,48.692,76.828 +593752,49.324,75.338 +593753,45.925,79.788 +593754,46.678,78.296 +593755,47.391,76.809 +593756,48.068,75.325 +593757,44.533,79.755 +593758,45.332,78.27 +593759,46.09,76.79 +593760,46.812,75.314 +593761,43.142,79.721 +593762,43.987,78.244 +593763,44.789,76.771 +593764,45.555,75.304 +593765,41.752,79.685 +593766,42.641,78.217 +593767,43.488,76.753 +593768,44.297,75.295 +593769,40.362,79.649 +593770,41.296,78.19 +593771,42.187,76.736 +593772,43.039,75.287 +593773,38.973,79.612 +593774,39.951,78.162 +593775,40.885,76.718 +593776,41.78,75.28 +593777,37.584,79.573 +593778,38.606,78.134 +593779,39.584,76.701 +593780,40.52,75.275 +593781,36.196,79.533 +593782,37.262,78.106 +593783,38.282,76.685 +593784,39.26,75.271 +593785,34.809,79.492 +593786,35.918,78.077 +593787,36.98,76.669 +593788,37.999,75.268 +593789,33.423,79.45 +593790,34.574,78.048 +593791,35.677,76.653 +593792,36.738,75.266 +593793,32.037,79.407 +593794,33.23,78.018 +593795,34.374,76.637 +593796,35.475,75.265 +593797,30.653,79.363 +593798,31.887,77.988 +593799,33.071,76.622 +593800,34.212,75.265 +593801,29.269,79.318 +593802,30.544,77.958 +593803,31.768,76.608 +593804,32.947,75.266 +593805,27.886,79.271 +593806,29.201,77.928 +593807,30.465,76.594 +593808,31.682,75.269 +593809,26.504,79.224 +593810,27.859,77.897 +593811,29.161,76.58 +593812,30.416,75.272 +593813,25.123,79.175 +593814,26.517,77.866 +593815,27.857,76.566 +593816,29.149,75.277 +593817,23.743,79.126 +593818,25.176,77.834 +593819,26.553,76.553 +593820,27.881,75.282 +593821,22.364,79.075 +593822,23.834,77.802 +593823,25.248,76.54 +593824,26.612,75.289 +593825,20.986,79.024 +593826,22.493,77.77 +593827,23.943,76.527 +593828,25.342,75.297 +593829,19.609,78.971 +593830,21.153,77.737 +593831,22.638,76.515 +593832,24.071,75.305 +593833,18.233,78.918 +593834,19.813,77.704 +593835,21.332,76.503 +593836,22.799,75.315 +593837,16.858,78.863 +593838,18.473,77.671 +593839,20.026,76.492 +593840,21.526,75.325 +593841,15.485,78.808 +593842,17.134,77.638 +593843,18.719,76.481 +593844,20.251,75.337 +593845,14.113,78.752 +593846,15.795,77.604 +593847,17.413,76.47 +593848,18.976,75.349 +593849,12.742,78.695 +593850,14.456,77.57 +593851,16.106,76.459 +593852,17.699,75.362 +593853,11.372,78.636 +593854,13.118,77.535 +593855,14.798,76.449 +593856,16.421,75.377 +593857,10.004,78.578 +593858,11.781,77.501 +593859,13.49,76.439 +593860,15.142,75.392 +593861,8.6365,78.518 +593862,10.443,77.466 +593863,12.182,76.429 +593864,13.861,75.407 +593865,7.2707,78.457 +593866,9.1067,77.43 +593867,10.873,76.42 +593868,12.579,75.424 +593869,5.9063,78.396 +593870,7.7705,77.395 +593871,9.5638,76.41 +593872,11.296,75.442 +593873,4.5433,78.334 +593874,6.4347,77.359 +593875,8.2542,76.402 +593876,10.012,75.46 +593877,3.1817,78.271 +593878,5.0995,77.323 +593879,6.9442,76.393 +593880,8.7265,75.479 +593881,1.8216,78.207 +593882,3.7647,77.287 +593883,5.6338,76.385 +593884,7.4395,75.499 +593885,0.46285,78.142 +593886,2.4304,77.25 +593887,4.3229,76.376 +593888,6.1511,75.519 +593889,359.11,78.077 +593890,1.0966,77.214 +593891,3.0115,76.368 +593892,4.8614,75.54 +593893,357.75,78.011 +593894,359.76,77.177 +593895,1.6997,76.361 +593896,3.5703,75.562 +593897,356.4,77.945 +593898,358.43,77.14 +593899,0.38746,76.353 +593900,2.2777,75.584 +593901,355.04,77.878 +593902,357.1,77.102 +593903,359.07,76.346 +593904,0.98371,75.607 +593905,353.69,77.81 +593906,355.77,77.065 +593907,357.76,76.339 +593908,359.69,75.631 +593909,352.34,77.742 +593910,354.44,77.027 +593911,356.45,76.332 +593912,358.39,75.655 +593913,350.99,77.673 +593914,353.1,76.989 +593915,355.13,76.325 +593916,357.09,75.68 +593917,349.65,77.603 +593918,351.77,76.951 +593919,353.82,76.319 +593920,355.79,75.705 +593921,348.3,77.534 +593922,350.44,76.913 +593923,352.5,76.312 +593924,354.49,75.73 +593925,346.96,77.463 +593926,349.12,76.875 +593927,351.19,76.306 +593928,353.19,75.756 +593929,345.62,77.392 +593930,347.79,76.836 +593931,349.87,76.3 +593932,351.88,75.783 +593933,344.28,77.321 +593934,346.46,76.797 +593935,348.56,76.294 +593936,350.58,75.81 +593937,342.94,77.249 +593938,345.13,76.759 +593939,347.24,76.289 +593940,349.27,75.837 +593941,341.6,77.177 +593942,343.81,76.72 +593943,345.92,76.283 +593944,347.96,75.865 +593945,340.27,77.105 +593946,342.48,76.681 +593947,344.6,76.277 +593948,346.65,75.893 +593949,338.94,77.032 +593950,341.15,76.642 +593951,343.28,76.272 +593952,345.34,75.921 +593953,337.6,76.959 +593954,339.83,76.602 +593955,341.96,76.267 +593956,344.03,75.949 +593957,336.27,76.885 +593958,338.5,76.563 +593959,340.65,76.261 +593960,342.71,75.978 +593961,334.95,76.812 +593962,337.18,76.524 +593963,339.32,76.256 +593964,341.39,76.007 +593965,333.62,76.738 +593966,335.86,76.484 +593967,338,76.251 +593968,340.08,76.036 +593969,332.3,76.664 +593970,334.53,76.445 +593971,336.68,76.246 +593972,338.76,76.066 +593973,330.97,76.59 +593974,333.21,76.405 +593975,335.36,76.241 +593976,337.43,76.095 +593977,329.65,76.516 +593978,331.89,76.366 +593979,334.04,76.236 +593980,336.11,76.125 +593981,328.33,76.441 +593982,330.57,76.326 +593983,332.72,76.231 +593984,334.79,76.154 +593985,327.01,76.367 +593986,329.25,76.287 +593987,331.39,76.227 +593988,333.46,76.184 +593989,325.7,76.292 +593990,327.93,76.247 +593991,330.07,76.222 +593992,332.13,76.213 +593993,324.38,76.217 +593994,326.61,76.208 +593995,328.74,76.217 +593996,330.8,76.243 +593997,323.07,76.143 +593998,325.29,76.168 +593999,327.42,76.212 +594000,329.47,76.273 +594001,321.76,76.068 +594002,323.97,76.128 +594003,326.09,76.207 +594004,328.14,76.302 +594005,320.45,75.994 +594006,322.65,76.089 +594007,324.77,76.202 +594008,326.81,76.332 +594009,319.14,75.92 +594010,321.34,76.049 +594011,323.44,76.197 +594012,325.47,76.361 +594013,317.84,75.845 +594014,320.02,76.01 +594015,322.12,76.192 +594016,324.13,76.39 +594017,316.53,75.771 +594018,318.7,75.971 +594019,320.79,76.187 +594020,322.8,76.419 +594021,315.23,75.697 +594022,317.39,75.931 +594023,319.46,76.182 +594024,321.46,76.448 +594025,313.93,75.623 +594026,316.07,75.892 +594027,318.13,76.177 +594028,320.11,76.477 +594029,312.63,75.55 +594030,314.76,75.853 +594031,316.8,76.172 +594032,318.77,76.505 +594033,311.33,75.477 +594034,313.45,75.814 +594035,315.47,76.167 +594036,317.43,76.533 +594037,310.04,75.404 +594038,312.13,75.775 +594039,314.14,76.161 +594040,316.08,76.561 +594041,308.74,75.331 +594042,310.82,75.736 +594043,312.81,76.156 +594044,314.73,76.588 +594045,307.45,75.259 +594046,309.51,75.697 +594047,311.48,76.15 +594048,313.38,76.615 +594049,306.16,75.187 +594050,308.2,75.659 +594051,310.15,76.144 +594052,312.03,76.642 +594053,304.87,75.115 +594054,306.88,75.62 +594055,308.82,76.139 +594056,310.68,76.668 +594057,303.58,75.044 +594058,305.57,75.582 +594059,307.49,76.133 +594060,309.33,76.694 +594061,302.3,74.974 +594062,304.26,75.544 +594063,306.15,76.126 +594064,307.97,76.72 +594065,301.01,74.903 +594066,302.95,75.506 +594067,304.82,76.12 +594068,306.62,76.745 +594069,299.73,74.834 +594070,301.65,75.468 +594071,303.49,76.114 +594072,305.26,76.769 +594073,298.45,74.765 +594074,300.34,75.43 +594075,302.15,76.107 +594076,303.9,76.793 +594077,297.17,74.696 +594078,299.03,75.393 +594079,300.82,76.1 +594080,302.54,76.816 +594081,295.89,74.628 +594082,297.72,75.355 +594083,299.48,76.093 +594084,301.18,76.839 +594085,294.61,74.561 +594086,296.41,75.318 +594087,298.15,76.086 +594088,299.81,76.861 +594089,293.33,74.494 +594090,295.11,75.282 +594091,296.81,76.079 +594092,298.45,76.883 +594093,292.06,74.428 +594094,293.8,75.245 +594095,295.47,76.071 +594096,297.08,76.903 +594097,290.79,74.362 +594098,292.5,75.209 +594099,294.14,76.063 +594100,295.72,76.924 +594101,289.51,74.298 +594102,291.19,75.172 +594103,292.8,76.055 +594104,294.35,76.943 +594105,288.24,74.234 +594106,289.89,75.137 +594107,291.46,76.047 +594108,292.98,76.962 +594109,286.97,74.17 +594110,288.58,75.101 +594111,290.13,76.038 +594112,291.61,76.98 +594113,285.71,74.108 +594114,287.28,75.066 +594115,288.79,76.029 +594116,290.24,76.997 +594117,284.44,74.046 +594118,285.97,75.03 +594119,287.45,76.02 +594120,288.86,77.014 +594121,283.17,73.985 +594122,284.67,74.996 +594123,286.11,76.011 +594124,287.49,77.03 +594125,281.91,73.925 +594126,283.37,74.961 +594127,284.77,76.001 +594128,286.12,77.044 +594129,280.64,73.866 +594130,282.07,74.927 +594131,283.43,75.992 +594132,284.74,77.058 +594133,279.38,73.808 +594134,280.76,74.893 +594135,282.09,75.981 +594136,283.36,77.072 +594137,278.12,73.751 +594138,279.46,74.859 +594139,280.75,75.971 +594140,281.98,77.084 +594141,276.86,73.694 +594142,278.16,74.826 +594143,279.41,75.96 +594144,280.6,77.096 +594145,275.6,73.639 +594146,276.86,74.793 +594147,278.07,75.949 +594148,279.22,77.106 +594149,274.34,73.584 +594150,275.56,74.76 +594151,276.73,75.938 +594152,277.84,77.116 +594153,273.08,73.531 +594154,274.26,74.728 +594155,275.38,75.926 +594156,276.46,77.124 +594157,271.83,73.478 +594158,272.96,74.696 +594159,274.04,75.914 +594160,275.08,77.132 +594161,270.57,73.426 +594162,271.66,74.664 +594163,272.7,75.902 +594164,273.69,77.139 +594165,269.32,73.376 +594166,270.36,74.632 +594167,271.36,75.889 +594168,272.31,77.145 +594169,268.06,73.326 +594170,269.06,74.601 +594171,270.02,75.876 +594172,270.92,77.15 +594173,266.81,73.278 +594174,267.76,74.571 +594175,268.67,75.863 +594176,269.54,77.153 +594177,265.56,73.231 +594178,266.47,74.54 +594179,267.33,75.85 +594180,268.15,77.156 +594181,264.3,73.184 +594182,265.17,74.51 +594183,265.99,75.836 +594184,266.76,77.158 +594185,263.05,73.139 +594186,263.87,74.481 +594187,264.64,75.821 +594188,265.38,77.158 +594189,261.8,73.095 +594190,262.57,74.452 +594191,263.3,75.807 +594192,263.99,77.158 +594193,260.55,73.052 +594194,261.27,74.423 +594195,261.96,75.791 +594196,262.6,77.157 +594197,259.3,73.01 +594198,259.98,74.394 +594199,260.61,75.776 +594200,261.21,77.154 +594201,258.05,72.97 +594202,258.68,74.366 +594203,259.27,75.76 +594204,259.82,77.15 +594205,256.8,72.93 +594206,257.38,74.338 +594207,257.92,75.744 +594208,258.42,77.146 +594209,255.56,72.892 +594210,256.09,74.311 +594211,256.58,75.728 +594212,257.03,77.14 +594213,254.31,72.855 +594214,254.79,74.284 +594215,255.23,75.711 +594216,255.64,77.133 +594217,253.06,72.818 +594218,253.49,74.258 +594219,253.89,75.693 +594220,254.25,77.125 +594221,251.81,72.784 +594222,252.2,74.231 +594223,252.54,75.676 +594224,252.86,77.116 +594225,250.57,72.75 +594226,250.9,74.206 +594227,251.2,75.658 +594228,251.46,77.105 +594229,249.32,72.718 +594230,249.6,74.18 +594231,249.85,75.639 +594232,250.07,77.094 +594233,248.07,72.686 +594234,248.31,74.155 +594235,248.51,75.621 +594236,248.67,77.081 +594237,246.83,72.656 +594238,247.01,74.131 +594239,247.16,75.601 +594240,247.28,77.067 +594241,245.58,72.628 +594242,245.72,74.106 +594243,245.82,75.582 +594244,245.89,77.052 +594245,244.33,72.6 +594246,244.42,74.083 +594247,244.47,75.562 +594248,244.49,77.036 +594249,243.09,72.574 +594250,243.12,74.059 +594251,243.13,75.542 +594252,243.1,77.019 +594253,241.84,72.549 +594254,241.83,74.036 +594255,241.78,75.521 +594256,241.7,77 +594257,240.6,72.525 +594258,240.53,74.014 +594259,240.44,75.5 +594260,240.31,76.981 +594261,239.35,72.502 +594262,239.24,73.992 +594263,239.09,75.478 +594264,238.91,76.96 +594265,238.1,72.481 +594266,237.94,73.97 +594267,237.75,75.456 +594268,237.52,76.938 +594269,236.86,72.46 +594270,236.64,73.949 +594271,236.4,75.434 +594272,236.13,76.915 +594273,235.61,72.441 +594274,235.35,73.928 +594275,235.06,75.411 +594276,234.73,76.89 +594277,234.36,72.424 +594278,234.05,73.907 +594279,233.71,75.388 +594280,233.34,76.865 +594281,233.12,72.407 +594282,232.76,73.887 +594283,232.37,75.365 +594284,231.94,76.838 +594285,231.87,72.392 +594286,231.46,73.867 +594287,231.02,75.341 +594288,230.55,76.81 +594289,230.62,72.378 +594290,230.17,73.848 +594291,229.68,75.316 +594292,229.15,76.781 +594293,229.37,72.365 +594294,228.87,73.829 +594295,228.33,75.292 +594296,227.76,76.751 +594297,228.12,72.353 +594298,227.57,73.811 +594299,226.99,75.267 +594300,226.37,76.72 +594301,226.88,72.342 +594302,226.28,73.793 +594303,225.64,75.241 +594304,224.98,76.687 +594305,225.63,72.333 +594306,224.98,73.775 +594307,224.3,75.215 +594308,223.58,76.654 +594309,224.38,72.325 +594310,223.68,73.758 +594311,222.96,75.189 +594312,222.19,76.619 +594313,223.13,72.318 +594314,222.39,73.741 +594315,221.61,75.163 +594316,220.8,76.583 +594317,221.88,72.312 +594318,221.09,73.724 +594319,220.27,75.136 +594320,219.41,76.546 +594321,220.62,72.307 +594322,219.79,73.708 +594323,218.92,75.108 +594324,218.02,76.508 +594325,219.37,72.304 +594326,218.49,73.692 +594327,217.58,75.081 +594328,216.63,76.468 +594329,218.12,72.302 +594330,217.2,73.677 +594331,216.24,75.053 +594332,215.24,76.428 +594333,216.86,72.3 +594334,215.9,73.662 +594335,214.9,75.024 +594336,213.85,76.387 +594337,215.61,72.3 +594338,214.6,73.647 +594339,213.55,74.995 +594340,212.46,76.344 +594341,214.35,72.301 +594342,213.3,73.633 +594343,212.21,74.966 +594344,211.08,76.301 +594345,213.1,72.303 +594346,212,73.619 +594347,210.87,74.937 +594348,209.69,76.256 +594349,211.84,72.306 +594350,210.7,73.605 +594351,209.53,74.907 +594352,208.31,76.21 +594353,210.58,72.31 +594354,209.41,73.592 +594355,208.19,74.877 +594356,206.92,76.163 +594357,209.33,72.316 +594358,208.11,73.579 +594359,206.85,74.846 +594360,205.54,76.116 +594361,208.07,72.322 +594362,206.81,73.567 +594363,205.5,74.815 +594364,204.15,76.067 +594365,206.8,72.329 +594366,205.51,73.554 +594367,204.16,74.784 +594368,202.77,76.017 +594369,205.54,72.337 +594370,204.21,73.543 +594371,202.82,74.752 +594372,201.39,75.966 +594373,204.28,72.346 +594374,202.91,73.531 +594375,201.49,74.721 +594376,200.01,75.915 +594377,203.02,72.357 +594378,201.6,73.52 +594379,200.15,74.688 +594380,198.63,75.862 +594381,201.75,72.368 +594382,200.3,73.509 +594383,198.81,74.656 +594384,197.26,75.808 +594385,200.49,72.38 +594386,199,73.498 +594387,197.47,74.623 +594388,195.88,75.754 +594389,199.22,72.393 +594390,197.7,73.488 +594391,196.13,74.59 +594392,194.5,75.698 +594393,197.95,72.407 +594394,196.4,73.478 +594395,194.79,74.557 +594396,193.13,75.642 +594397,196.68,72.421 +594398,195.09,73.468 +594399,193.46,74.523 +594400,191.76,75.585 +594401,195.41,72.437 +594402,193.79,73.459 +594403,192.12,74.489 +594404,190.38,75.527 +594405,194.14,72.453 +594406,192.49,73.45 +594407,190.78,74.455 +594408,189.01,75.468 +594409,192.86,72.47 +594410,191.18,73.441 +594411,189.45,74.42 +594412,187.64,75.408 +594413,191.59,72.488 +594414,189.88,73.433 +594415,188.11,74.386 +594416,186.28,75.348 +594417,190.31,72.507 +594418,188.57,73.424 +594419,186.78,74.351 +594420,184.91,75.286 +594421,189.04,72.526 +594422,187.27,73.416 +594423,185.44,74.315 +594424,183.54,75.224 +594425,187.76,72.546 +594426,185.96,73.408 +594427,184.11,74.28 +594428,182.18,75.162 +594429,186.48,72.567 +594430,184.66,73.401 +594431,182.77,74.244 +594432,180.82,75.098 +594433,185.2,72.589 +594434,183.35,73.393 +594435,181.44,74.208 +594436,179.46,75.034 +594437,183.91,72.611 +594438,182.04,73.386 +594439,180.11,74.172 +594440,178.1,74.969 +594441,182.63,72.634 +594442,180.74,73.379 +594443,178.78,74.136 +594444,176.74,74.904 +594445,181.34,72.657 +594446,179.43,73.372 +594447,177.44,74.099 +594448,175.38,74.838 +594449,180.06,72.681 +594450,178.12,73.366 +594451,176.11,74.062 +594452,174.03,74.771 +594453,178.77,72.705 +594454,176.81,73.36 +594455,174.78,74.026 +594456,172.67,74.704 +594457,177.48,72.73 +594458,175.5,73.353 +594459,173.45,73.988 +594460,171.32,74.636 +594461,176.19,72.756 +594462,174.19,73.347 +594463,172.12,73.951 +594464,169.97,74.568 +594465,174.89,72.782 +594466,172.88,73.342 +594467,170.79,73.914 +594468,168.62,74.499 +594469,173.6,72.808 +594470,171.57,73.336 +594471,169.47,73.876 +594472,167.28,74.43 +594473,172.3,72.835 +594474,170.26,73.33 +594475,168.14,73.838 +594476,165.93,74.36 +594477,171.01,72.862 +594478,168.95,73.325 +594479,166.81,73.8 +594480,164.59,74.29 +594481,169.71,72.89 +594482,167.63,73.32 +594483,165.48,73.762 +594484,163.24,74.219 +594485,168.41,72.918 +594486,166.32,73.314 +594487,164.16,73.724 +594488,161.9,74.149 +594489,167.1,72.946 +594490,165.01,73.309 +594491,162.83,73.686 +594492,160.56,74.077 +594493,165.8,72.974 +594494,163.69,73.304 +594495,161.51,73.648 +594496,159.23,74.006 +594497,164.49,73.003 +594498,162.38,73.3 +594499,160.18,73.609 +594500,157.89,73.934 +594501,163.19,73.032 +594502,161.06,73.295 +594503,158.86,73.571 +594504,156.56,73.862 +594505,161.88,73.061 +594506,159.75,73.29 +594507,157.53,73.532 +594508,155.23,73.789 +594509,160.57,73.091 +594510,158.43,73.285 +594511,156.21,73.494 +594512,153.9,73.717 +594513,159.25,73.12 +594514,157.11,73.281 +594515,154.89,73.455 +594516,152.57,73.644 +594517,157.94,73.15 +594518,155.8,73.276 +594519,153.57,73.416 +594520,151.24,73.571 +594521,156.63,73.179 +594522,154.48,73.272 +594523,152.25,73.377 +594524,149.92,73.498 +594525,155.31,73.209 +594526,153.16,73.267 +594527,150.93,73.339 +594528,148.6,73.425 +594529,153.99,73.239 +594530,151.84,73.263 +594531,149.61,73.3 +594532,147.27,73.351 +594533,152.67,73.269 +594534,150.52,73.258 +594535,148.29,73.261 +594536,145.95,73.278 +594537,151.35,73.298 +594538,149.2,73.254 +594539,146.97,73.222 +594540,144.64,73.205 +594541,150.02,73.328 +594542,147.88,73.249 +594543,145.65,73.183 +594544,143.32,73.131 +594545,148.7,73.358 +594546,146.56,73.245 +594547,144.33,73.144 +594548,142.01,73.058 +594549,147.37,73.387 +594550,145.24,73.24 +594551,143.02,73.106 +594552,140.7,72.985 +594553,146.04,73.417 +594554,143.92,73.236 +594555,141.7,73.067 +594556,139.38,72.912 +594557,144.71,73.446 +594558,142.59,73.231 +594559,140.39,73.028 +594560,138.08,72.839 +594561,143.38,73.475 +594562,141.27,73.227 +594563,139.07,72.99 +594564,136.77,72.766 +594565,142.05,73.504 +594566,139.95,73.222 +594567,137.76,72.951 +594568,135.46,72.693 +594569,140.71,73.532 +594570,138.62,73.217 +594571,136.44,72.912 +594572,134.16,72.621 +594573,139.38,73.561 +594574,137.3,73.212 +594575,135.13,72.874 +594576,132.86,72.549 +594577,138.04,73.589 +594578,135.97,73.207 +594579,133.82,72.836 +594580,131.56,72.477 +594581,136.7,73.617 +594582,134.65,73.202 +594583,132.5,72.798 +594584,130.26,72.405 +594585,135.36,73.644 +594586,133.32,73.197 +594587,131.19,72.759 +594588,128.97,72.334 +594589,134.02,73.671 +594590,131.99,73.192 +594591,129.88,72.721 +594592,127.67,72.262 +594593,132.67,73.698 +594594,130.67,73.186 +594595,128.57,72.684 +594596,126.38,72.192 +594597,131.33,73.724 +594598,129.34,73.181 +594599,127.26,72.646 +594600,125.09,72.121 +594601,129.98,73.75 +594602,128.01,73.175 +594603,125.95,72.608 +594604,123.8,72.052 +594605,128.63,73.775 +594606,126.68,73.169 +594607,124.64,72.571 +594608,122.51,71.982 +594609,127.28,73.8 +594610,125.35,73.163 +594611,123.34,72.533 +594612,121.22,71.913 +594613,125.93,73.824 +594614,124.02,73.157 +594615,122.03,72.496 +594616,119.94,71.845 +594617,124.57,73.848 +594618,122.69,73.15 +594619,120.72,72.459 +594620,118.66,71.777 +594621,123.22,73.871 +594622,121.36,73.144 +594623,119.41,72.423 +594624,117.38,71.709 +594625,121.86,73.894 +594626,120.03,73.137 +594627,118.11,72.386 +594628,116.1,71.643 +594629,120.51,73.916 +594630,118.7,73.13 +594631,116.8,72.35 +594632,114.82,71.576 +594633,119.15,73.937 +594634,117.36,73.123 +594635,115.5,72.314 +594636,113.54,71.511 +594637,117.79,73.958 +594638,116.03,73.116 +594639,114.19,72.278 +594640,112.27,71.446 +594641,116.43,73.978 +594642,114.7,73.108 +594643,112.89,72.242 +594644,110.99,71.382 +594645,115.06,73.997 +594646,113.36,73.1 +594647,111.59,72.207 +594648,109.72,71.318 +594649,113.7,74.015 +594650,112.03,73.092 +594651,110.28,72.171 +594652,108.45,71.255 +594653,112.33,74.033 +594654,110.69,73.084 +594655,108.98,72.136 +594656,107.18,71.193 +594657,110.97,74.05 +594658,109.36,73.075 +594659,107.68,72.102 +594660,105.91,71.132 +594661,109.6,74.067 +594662,108.02,73.066 +594663,106.38,72.067 +594664,104.65,71.071 +594665,108.23,74.082 +594666,106.69,73.057 +594667,105.07,72.033 +594668,103.38,71.012 +594669,106.86,74.097 +594670,105.35,73.048 +594671,103.77,71.999 +594672,102.12,70.953 +594673,105.49,74.11 +594674,104.01,73.038 +594675,102.47,71.965 +594676,100.85,70.895 +594677,104.11,74.123 +594678,102.68,73.028 +594679,101.17,71.932 +594680,99.593,70.838 +594681,102.74,74.135 +594682,101.34,73.018 +594683,99.874,71.899 +594684,98.333,70.781 +594685,101.36,74.147 +594686,100,73.007 +594687,98.575,71.866 +594688,97.074,70.726 +594689,99.987,74.157 +594690,98.665,72.996 +594691,97.276,71.834 +594692,95.816,70.672 +594693,98.61,74.166 +594694,97.326,72.985 +594695,95.978,71.802 +594696,94.559,70.618 +594697,97.232,74.174 +594698,95.987,72.974 +594699,94.68,71.77 +594700,93.304,70.566 +594701,95.853,74.182 +594702,94.648,72.962 +594703,93.382,71.739 +594704,92.049,70.514 +594705,94.472,74.188 +594706,93.309,72.95 +594707,92.085,71.707 +594708,90.796,70.464 +594709,93.091,74.194 +594710,91.969,72.937 +594711,90.788,71.677 +594712,89.543,70.414 +594713,91.709,74.198 +594714,90.629,72.924 +594715,89.491,71.646 +594716,88.291,70.366 +594717,90.326,74.202 +594718,89.289,72.911 +594719,88.195,71.616 +594720,87.041,70.318 +594721,88.942,74.204 +594722,87.948,72.898 +594723,86.899,71.586 +594724,85.791,70.272 +594725,87.557,74.205 +594726,86.607,72.884 +594727,85.603,71.557 +594728,84.542,70.226 +594729,86.172,74.206 +594730,85.266,72.87 +594731,84.308,71.528 +594732,83.294,70.182 +594733,84.785,74.205 +594734,83.925,72.855 +594735,83.013,71.499 +594736,82.046,70.139 +594737,83.398,74.203 +594738,82.583,72.84 +594739,81.718,71.471 +594740,80.8,70.097 +594741,82.01,74.2 +594742,81.241,72.825 +594743,80.423,71.443 +594744,79.554,70.056 +594745,80.622,74.196 +594746,79.899,72.809 +594747,79.129,71.415 +594748,78.308,70.017 +594749,79.233,74.191 +594750,78.557,72.793 +594751,77.835,71.388 +594752,77.063,69.978 +594753,77.843,74.184 +594754,77.215,72.777 +594755,76.541,71.361 +594756,75.819,69.941 +594757,76.453,74.177 +594758,75.872,72.76 +594759,75.247,71.335 +594760,74.575,69.904 +594761,75.062,74.168 +594762,74.529,72.743 +594763,73.953,71.309 +594764,73.332,69.869 +594765,73.671,74.159 +594766,73.186,72.725 +594767,72.66,71.283 +594768,72.09,69.835 +594769,72.279,74.148 +594770,71.843,72.707 +594771,71.367,71.258 +594772,70.847,69.803 +594773,70.887,74.136 +594774,70.5,72.689 +594775,70.074,71.233 +594776,69.605,69.771 +594777,69.495,74.123 +594778,69.157,72.67 +594779,68.781,71.209 +594780,68.364,69.741 +594781,68.102,74.108 +594782,67.814,72.651 +594783,67.488,71.185 +594784,67.122,69.712 +594785,66.709,74.093 +594786,66.47,72.631 +594787,66.195,71.161 +594788,65.881,69.684 +594789,65.315,74.076 +594790,65.127,72.611 +594791,64.902,71.138 +594792,64.64,69.657 +594793,63.921,74.058 +594794,63.783,72.591 +594795,63.61,71.115 +594796,63.4,69.631 +594797,62.527,74.04 +594798,62.44,72.57 +594799,62.317,71.092 +594800,62.159,69.607 +594801,61.133,74.019 +594802,61.096,72.549 +594803,61.025,71.07 +594804,60.918,69.584 +594805,59.739,73.998 +594806,59.752,72.528 +594807,59.732,71.049 +594808,59.678,69.562 +594809,58.345,73.976 +594810,58.409,72.506 +594811,58.44,71.027 +594812,58.438,69.542 +594813,56.95,73.952 +594814,57.065,72.484 +594815,57.147,71.007 +594816,57.197,69.522 +594817,55.556,73.927 +594818,55.721,72.461 +594819,55.855,70.986 +594820,55.956,69.504 +594821,54.161,73.901 +594822,54.378,72.438 +594823,54.563,70.966 +594824,54.716,69.487 +594825,52.767,73.874 +594826,53.034,72.414 +594827,53.27,70.946 +594828,53.475,69.471 +594829,51.372,73.845 +594830,51.691,72.39 +594831,51.978,70.927 +594832,52.234,69.457 +594833,49.978,73.816 +594834,50.347,72.366 +594835,50.685,70.908 +594836,50.993,69.443 +594837,48.584,73.785 +594838,49.004,72.341 +594839,49.393,70.89 +594840,49.751,69.431 +594841,47.19,73.753 +594842,47.661,72.316 +594843,48.1,70.872 +594844,48.509,69.42 +594845,45.797,73.72 +594846,46.317,72.291 +594847,46.807,70.854 +594848,47.267,69.411 +594849,44.403,73.686 +594850,44.974,72.265 +594851,45.514,70.837 +594852,46.024,69.402 +594853,43.01,73.651 +594854,43.631,72.239 +594855,44.221,70.82 +594856,44.781,69.395 +594857,41.618,73.614 +594858,42.289,72.212 +594859,42.928,70.803 +594860,43.538,69.388 +594861,40.225,73.577 +594862,40.946,72.185 +594863,41.635,70.787 +594864,42.294,69.383 +594865,38.833,73.538 +594866,39.604,72.158 +594867,40.342,70.771 +594868,41.049,69.379 +594869,37.442,73.498 +594870,38.261,72.13 +594871,39.048,70.756 +594872,39.804,69.376 +594873,36.051,73.457 +594874,36.919,72.102 +594875,37.754,70.741 +594876,38.558,69.375 +594877,34.661,73.415 +594878,35.577,72.073 +594879,36.46,70.726 +594880,37.312,69.374 +594881,33.271,73.372 +594882,34.236,72.045 +594883,35.166,70.712 +594884,36.064,69.375 +594885,31.882,73.328 +594886,32.894,72.015 +594887,33.872,70.698 +594888,34.816,69.376 +594889,30.493,73.283 +594890,31.553,71.986 +594891,32.577,70.684 +594892,33.568,69.379 +594893,29.105,73.237 +594894,30.212,71.956 +594895,31.282,70.671 +594896,32.318,69.383 +594897,27.718,73.19 +594898,28.872,71.926 +594899,29.987,70.658 +594900,31.068,69.388 +594901,26.332,73.141 +594902,27.531,71.895 +594903,28.692,70.645 +594904,29.817,69.393 +594905,24.946,73.092 +594906,26.191,71.864 +594907,27.396,70.633 +594908,28.565,69.4 +594909,23.561,73.042 +594910,24.852,71.833 +594911,26.1,70.621 +594912,27.312,69.408 +594913,22.177,72.99 +594914,23.512,71.801 +594915,24.804,70.61 +594916,26.058,69.417 +594917,20.794,72.938 +594918,22.173,71.769 +594919,23.508,70.598 +594920,24.803,69.427 +594921,19.412,72.885 +594922,20.834,71.737 +594923,22.211,70.588 +594924,23.547,69.438 +594925,18.031,72.831 +594926,19.496,71.704 +594927,20.913,70.577 +594928,22.29,69.449 +594929,16.651,72.776 +594930,18.158,71.672 +594931,19.616,70.567 +594932,21.032,69.462 +594933,15.272,72.72 +594934,16.82,71.638 +594935,18.318,70.557 +594936,19.772,69.476 +594937,13.894,72.663 +594938,15.483,71.605 +594939,17.02,70.547 +594940,18.512,69.49 +594941,12.518,72.606 +594942,14.146,71.571 +594943,15.721,70.537 +594944,17.25,69.505 +594945,11.142,72.547 +594946,12.809,71.537 +594947,14.422,70.528 +594948,15.988,69.521 +594949,9.7674,72.488 +594950,11.473,71.503 +594951,13.123,70.519 +594952,14.724,69.538 +594953,8.3941,72.428 +594954,10.138,71.468 +594955,11.823,70.511 +594956,13.458,69.556 +594957,7.0221,72.367 +594958,8.8023,71.433 +594959,10.523,70.502 +594960,12.192,69.574 +594961,5.6513,72.305 +594962,7.4675,71.398 +594963,9.2224,70.494 +594964,10.924,69.593 +594965,4.2818,72.242 +594966,6.1332,71.363 +594967,7.9213,70.486 +594968,9.6549,69.613 +594969,2.9137,72.179 +594970,4.7993,71.327 +594971,6.6199,70.479 +594972,8.3843,69.634 +594973,1.5469,72.115 +594974,3.4658,71.292 +594975,5.318,70.471 +594976,7.1124,69.655 +594977,0.18151,72.051 +594978,2.1329,71.255 +594979,4.0156,70.464 +594980,5.8392,69.677 +594981,358.82,71.986 +594982,0.80043,71.219 +594983,2.7128,70.457 +594984,4.5645,69.7 +594985,357.46,71.92 +594986,359.47,71.183 +594987,1.4096,70.45 +594988,3.2883,69.723 +594989,356.09,71.853 +594990,358.14,71.146 +594991,0.10583,70.444 +594992,2.0107,69.747 +594993,354.73,71.786 +594994,356.81,71.109 +594995,358.8,70.437 +594996,0.73168,69.771 +594997,353.38,71.719 +594998,355.48,71.072 +594999,357.5,70.431 +595000,359.45,69.796 +595001,352.02,71.651 +595002,354.15,71.035 +595003,356.19,70.425 +595004,358.17,69.822 +595005,350.66,71.582 +595006,352.82,70.997 +595007,354.89,70.419 +595008,356.89,69.847 +595009,349.31,71.513 +595010,351.49,70.96 +595011,353.58,70.413 +595012,355.6,69.874 +595013,347.96,71.443 +595014,350.16,70.922 +595015,352.27,70.408 +595016,354.31,69.901 +595017,346.61,71.373 +595018,348.83,70.884 +595019,350.97,70.402 +595020,353.03,69.928 +595021,345.26,71.303 +595022,347.5,70.846 +595023,349.66,70.397 +595024,351.74,69.955 +595025,343.91,71.232 +595026,346.18,70.808 +595027,348.35,70.392 +595028,350.44,69.983 +595029,342.57,71.16 +595030,344.85,70.77 +595031,347.04,70.387 +595032,349.15,70.011 +595033,341.23,71.089 +595034,343.53,70.731 +595035,345.73,70.382 +595036,347.86,70.04 +595037,339.88,71.017 +595038,342.2,70.693 +595039,344.42,70.377 +595040,346.56,70.069 +595041,338.54,70.945 +595042,340.88,70.654 +595043,343.11,70.372 +595044,345.26,70.098 +595045,337.21,70.872 +595046,339.55,70.616 +595047,341.8,70.367 +595048,343.96,70.127 +595049,335.87,70.8 +595050,338.23,70.577 +595051,340.49,70.362 +595052,342.66,70.156 +595053,334.54,70.727 +595054,336.91,70.538 +595055,339.18,70.358 +595056,341.36,70.186 +595057,333.2,70.654 +595058,335.59,70.499 +595059,337.86,70.353 +595060,340.05,70.215 +595061,331.87,70.58 +595062,334.26,70.46 +595063,336.55,70.349 +595064,338.75,70.245 +595065,330.54,70.507 +595066,332.94,70.421 +595067,335.24,70.344 +595068,337.44,70.275 +595069,329.22,70.434 +595070,331.62,70.382 +595071,333.92,70.34 +595072,336.13,70.305 +595073,327.89,70.36 +595074,330.3,70.343 +595075,332.61,70.335 +595076,334.82,70.335 +595077,326.57,70.287 +595078,328.98,70.304 +595079,331.29,70.331 +595080,333.51,70.365 +595081,325.24,70.213 +595082,327.67,70.265 +595083,329.98,70.326 +595084,332.19,70.395 +595085,323.92,70.139 +595086,326.35,70.226 +595087,328.66,70.321 +595088,330.88,70.424 +595089,322.61,70.066 +595090,325.03,70.187 +595091,327.34,70.317 +595092,329.56,70.454 +595093,321.29,69.993 +595094,323.71,70.148 +595095,326.03,70.312 +595096,328.24,70.484 +595097,319.98,69.919 +595098,322.4,70.109 +595099,324.71,70.308 +595100,326.92,70.513 +595101,318.66,69.846 +595102,321.08,70.07 +595103,323.39,70.303 +595104,325.59,70.542 +595105,317.35,69.773 +595106,319.77,70.032 +595107,322.07,70.298 +595108,324.27,70.571 +595109,316.04,69.7 +595110,318.45,69.993 +595111,320.75,70.293 +595112,322.94,70.6 +595113,314.74,69.627 +595114,317.14,69.954 +595115,319.43,70.288 +595116,321.62,70.629 +595117,313.43,69.555 +595118,315.83,69.915 +595119,318.11,70.283 +595120,320.29,70.657 +595121,312.13,69.483 +595122,314.52,69.877 +595123,316.79,70.278 +595124,318.95,70.685 +595125,310.83,69.411 +595126,313.2,69.838 +595127,315.46,70.273 +595128,317.62,70.713 +595129,309.53,69.339 +595130,311.89,69.8 +595131,314.14,70.268 +595132,316.29,70.74 +595133,308.23,69.268 +595134,310.58,69.762 +595135,312.82,70.262 +595136,314.95,70.767 +595137,306.93,69.197 +595138,309.27,69.724 +595139,311.49,70.256 +595140,313.61,70.793 +595141,305.64,69.127 +595142,307.96,69.686 +595143,310.17,70.251 +595144,312.27,70.819 +595145,304.35,69.057 +595146,306.66,69.648 +595147,308.85,70.245 +595148,310.93,70.845 +595149,303.06,68.987 +595150,305.35,69.61 +595151,307.52,70.239 +595152,309.59,70.87 +595153,301.77,68.918 +595154,304.04,69.573 +595155,306.19,70.232 +595156,308.25,70.895 +595157,300.48,68.85 +595158,302.73,69.536 +595159,304.87,70.226 +595160,306.9,70.919 +595161,299.2,68.782 +595162,301.43,69.498 +595163,303.54,70.219 +595164,305.55,70.942 +595165,297.91,68.714 +595166,300.12,69.462 +595167,302.21,70.212 +595168,304.2,70.965 +595169,296.63,68.647 +595170,298.82,69.425 +595171,300.89,70.205 +595172,302.85,70.987 +595173,295.35,68.581 +595174,297.51,69.388 +595175,299.56,70.198 +595176,301.5,71.009 +595177,294.07,68.515 +595178,296.21,69.352 +595179,298.23,70.191 +595180,300.15,71.03 +595181,292.8,68.45 +595182,294.9,69.316 +595183,296.9,70.183 +595184,298.79,71.05 +595185,291.52,68.386 +595186,293.6,69.28 +595187,295.57,70.175 +595188,297.44,71.07 +595189,290.25,68.323 +595190,292.3,69.244 +595191,294.24,70.167 +595192,296.08,71.089 +595193,288.98,68.26 +595194,291,69.209 +595195,292.91,70.158 +595196,294.72,71.107 +595197,287.71,68.198 +595198,289.69,69.173 +595199,291.58,70.15 +595200,293.36,71.124 +595201,286.44,68.136 +595202,288.39,69.138 +595203,290.24,70.141 +595204,292,71.14 +595205,285.17,68.076 +595206,287.09,69.104 +595207,288.91,70.131 +595208,290.64,71.156 +595209,283.91,68.016 +595210,285.79,69.069 +595211,287.58,70.122 +595212,289.27,71.171 +595213,282.64,67.957 +595214,284.49,69.035 +595215,286.25,70.112 +595216,287.91,71.185 +595217,281.38,67.899 +595218,283.19,69.001 +595219,284.91,70.102 +595220,286.54,71.198 +595221,280.12,67.842 +595222,281.9,68.968 +595223,283.58,70.091 +595224,285.17,71.211 +595225,278.86,67.786 +595226,280.6,68.935 +595227,282.24,70.081 +595228,283.8,71.222 +595229,277.6,67.73 +595230,279.3,68.902 +595231,280.91,70.07 +595232,282.43,71.233 +595233,276.34,67.676 +595234,278,68.869 +595235,279.57,70.058 +595236,281.06,71.242 +595237,275.09,67.622 +595238,276.71,68.837 +595239,278.24,70.047 +595240,279.69,71.251 +595241,273.83,67.57 +595242,275.41,68.805 +595243,276.9,70.035 +595244,278.31,71.258 +595245,272.58,67.518 +595246,274.11,68.773 +595247,275.56,70.022 +595248,276.94,71.265 +595249,271.32,67.468 +595250,272.82,68.742 +595251,274.23,70.01 +595252,275.56,71.27 +595253,270.07,67.418 +595254,271.52,68.711 +595255,272.89,69.997 +595256,274.18,71.275 +595257,268.82,67.37 +595258,270.23,68.68 +595259,271.55,69.983 +595260,272.8,71.279 +595261,267.57,67.323 +595262,268.93,68.649 +595263,270.22,69.97 +595264,271.42,71.281 +595265,266.33,67.276 +595266,267.64,68.619 +595267,268.88,69.955 +595268,270.04,71.283 +595269,265.08,67.231 +595270,266.35,68.59 +595271,267.54,69.941 +595272,268.66,71.283 +595273,263.83,67.187 +595274,265.05,68.561 +595275,266.2,69.926 +595276,267.28,71.282 +595277,262.59,67.144 +595278,263.76,68.532 +595279,264.86,69.911 +595280,265.9,71.281 +595281,261.34,67.102 +595282,262.47,68.503 +595283,263.52,69.895 +595284,264.51,71.278 +595285,260.1,67.062 +595286,261.18,68.475 +595287,262.18,69.879 +595288,263.13,71.274 +595289,258.86,67.022 +595290,259.88,68.447 +595291,260.84,69.863 +595292,261.74,71.269 +595293,257.62,66.984 +595294,258.59,68.42 +595295,259.5,69.846 +595296,260.36,71.262 +595297,256.37,66.946 +595298,257.3,68.393 +595299,258.16,69.829 +595300,258.97,71.255 +595301,255.13,66.91 +595302,256.01,68.366 +595303,256.82,69.812 +595304,257.58,71.246 +595305,253.89,66.875 +595306,254.72,68.34 +595307,255.48,69.794 +595308,256.19,71.237 +595309,252.66,66.841 +595310,253.43,68.314 +595311,254.14,69.776 +595312,254.8,71.226 +595313,251.42,66.809 +595314,252.14,68.288 +595315,252.8,69.757 +595316,253.41,71.214 +595317,250.18,66.778 +595318,250.84,68.263 +595319,251.46,69.738 +595320,252.02,71.201 +595321,248.94,66.747 +595322,249.55,68.238 +595323,250.12,69.718 +595324,250.63,71.186 +595325,247.7,66.719 +595326,248.26,68.214 +595327,248.78,69.699 +595328,249.24,71.171 +595329,246.47,66.691 +595330,246.97,68.19 +595331,247.43,69.678 +595332,247.85,71.154 +595333,245.23,66.664 +595334,245.68,68.167 +595335,246.09,69.658 +595336,246.46,71.136 +595337,243.99,66.639 +595338,244.39,68.143 +595339,244.75,69.636 +595340,245.06,71.117 +595341,242.76,66.615 +595342,243.1,68.121 +595343,243.41,69.615 +595344,243.67,71.097 +595345,241.52,66.592 +595346,241.82,68.098 +595347,242.07,69.593 +595348,242.28,71.075 +595349,240.29,66.571 +595350,240.53,68.076 +595351,240.72,69.571 +595352,240.88,71.052 +595353,239.05,66.55 +595354,239.24,68.055 +595355,239.38,69.548 +595356,239.49,71.028 +595357,237.82,66.531 +595358,237.95,68.034 +595359,238.04,69.525 +595360,238.1,71.003 +595361,236.58,66.513 +595362,236.66,68.013 +595363,236.7,69.501 +595364,236.7,70.977 +595365,235.35,66.496 +595366,235.37,67.993 +595367,235.36,69.477 +595368,235.31,70.95 +595369,234.11,66.481 +595370,234.08,67.973 +595371,234.01,69.453 +595372,233.91,70.921 +595373,232.88,66.467 +595374,232.79,67.953 +595375,232.67,69.428 +595376,232.52,70.891 +595377,231.64,66.454 +595378,231.5,67.934 +595379,231.33,69.403 +595380,231.13,70.86 +595381,230.4,66.442 +595382,230.21,67.915 +595383,229.99,69.377 +595384,229.73,70.828 +595385,229.17,66.431 +595386,228.92,67.897 +595387,228.64,69.351 +595388,228.34,70.794 +595389,227.93,66.422 +595390,227.63,67.879 +595391,227.3,69.325 +595392,226.94,70.76 +595393,226.7,66.413 +595394,226.34,67.861 +595395,225.96,69.298 +595396,225.55,70.724 +595397,225.46,66.406 +595398,225.05,67.844 +595399,224.62,69.271 +595400,224.15,70.687 +595401,224.22,66.4 +595402,223.76,67.827 +595403,223.28,69.244 +595404,222.76,70.649 +595405,222.99,66.396 +595406,222.47,67.811 +595407,221.94,69.216 +595408,221.37,70.61 +595409,221.75,66.392 +595410,221.18,67.794 +595411,220.59,69.187 +595412,219.97,70.569 +595413,220.51,66.39 +595414,219.89,67.779 +595415,219.25,69.159 +595416,218.58,70.528 +595417,219.27,66.388 +595418,218.6,67.763 +595419,217.91,69.129 +595420,217.19,70.485 +595421,218.03,66.388 +595422,217.31,67.748 +595423,216.57,69.1 +595424,215.8,70.441 +595425,216.79,66.389 +595426,216.02,67.734 +595427,215.23,69.07 +595428,214.41,70.396 +595429,215.55,66.391 +595430,214.73,67.719 +595431,213.89,69.04 +595432,213.01,70.351 +595433,214.31,66.394 +595434,213.44,67.706 +595435,212.55,69.009 +595436,211.62,70.304 +595437,213.07,66.398 +595438,212.15,67.692 +595439,211.21,68.978 +595440,210.23,70.256 +595441,211.82,66.403 +595442,210.86,67.679 +595443,209.87,68.947 +595444,208.84,70.206 +595445,210.58,66.409 +595446,209.57,67.666 +595447,208.53,68.915 +595448,207.46,70.156 +595449,209.33,66.417 +595450,208.28,67.653 +595451,207.19,68.883 +595452,206.07,70.105 +595453,208.09,66.425 +595454,206.98,67.641 +595455,205.85,68.851 +595456,204.68,70.053 +595457,206.84,66.434 +595458,205.69,67.629 +595459,204.51,68.818 +595460,203.29,70 +595461,205.6,66.444 +595462,204.4,67.618 +595463,203.17,68.785 +595464,201.91,69.946 +595465,204.35,66.456 +595466,203.11,67.606 +595467,201.83,68.752 +595468,200.52,69.891 +595469,203.1,66.468 +595470,201.81,67.595 +595471,200.5,68.718 +595472,199.14,69.835 +595473,201.85,66.481 +595474,200.52,67.585 +595475,199.16,68.684 +595476,197.76,69.778 +595477,200.6,66.494 +595478,199.23,67.574 +595479,197.82,68.65 +595480,196.37,69.72 +595481,199.34,66.509 +595482,197.93,67.564 +595483,196.48,68.615 +595484,194.99,69.661 +595485,198.09,66.525 +595486,196.64,67.554 +595487,195.15,68.58 +595488,193.61,69.602 +595489,196.83,66.541 +595490,195.34,67.545 +595491,193.81,68.545 +595492,192.23,69.541 +595493,195.58,66.559 +595494,194.05,67.536 +595495,192.47,68.51 +595496,190.85,69.48 +595497,194.32,66.577 +595498,192.75,67.527 +595499,191.14,68.474 +595500,189.48,69.418 +595501,193.06,66.595 +595502,191.46,67.518 +595503,189.8,68.438 +595504,188.1,69.355 +595505,191.8,66.615 +595506,190.16,67.509 +595507,188.47,68.402 +595508,186.73,69.291 +595509,190.54,66.635 +595510,188.86,67.501 +595511,187.14,68.365 +595512,185.35,69.227 +595513,189.28,66.656 +595514,187.57,67.493 +595515,185.8,68.328 +595516,183.98,69.161 +595517,188.02,66.678 +595518,186.27,67.485 +595519,184.47,68.291 +595520,182.61,69.095 +595521,186.75,66.7 +595522,184.97,67.477 +595523,183.14,68.254 +595524,181.24,69.029 +595525,185.48,66.723 +595526,183.67,67.47 +595527,181.8,68.217 +595528,179.87,68.962 +595529,184.22,66.747 +595530,182.37,67.463 +595531,180.47,68.179 +595532,178.51,68.894 +595533,182.95,66.771 +595534,181.07,67.456 +595535,179.14,68.141 +595536,177.14,68.825 +595537,181.68,66.795 +595538,179.77,67.449 +595539,177.81,68.103 +595540,175.78,68.756 +595541,180.4,66.821 +595542,178.47,67.442 +595543,176.48,68.065 +595544,174.41,68.687 +595545,179.13,66.846 +595546,177.17,67.436 +595547,175.15,68.026 +595548,173.05,68.616 +595549,177.85,66.873 +595550,175.87,67.429 +595551,173.82,67.987 +595552,171.69,68.546 +595553,176.58,66.899 +595554,174.57,67.423 +595555,172.49,67.949 +595556,170.33,68.474 +595557,175.3,66.926 +595558,173.27,67.417 +595559,171.16,67.91 +595560,168.98,68.403 +595561,174.02,66.954 +595562,171.96,67.411 +595563,169.83,67.87 +595564,167.62,68.331 +595565,172.74,66.981 +595566,170.66,67.405 +595567,168.51,67.831 +595568,166.27,68.258 +595569,171.45,67.009 +595570,169.35,67.399 +595571,167.18,67.792 +595572,164.92,68.185 +595573,170.17,67.038 +595574,168.05,67.394 +595575,165.85,67.752 +595576,163.57,68.112 +595577,168.88,67.067 +595578,166.75,67.388 +595579,164.53,67.712 +595580,162.22,68.038 +595581,167.59,67.095 +595582,165.44,67.383 +595583,163.2,67.673 +595584,160.87,67.964 +595585,166.3,67.125 +595586,164.13,67.378 +595587,161.88,67.633 +595588,159.53,67.89 +595589,165.01,67.154 +595590,162.83,67.372 +595591,160.56,67.593 +595592,158.18,67.816 +595593,163.72,67.184 +595594,161.52,67.367 +595595,159.23,67.553 +595596,156.84,67.741 +595597,162.43,67.213 +595598,160.21,67.362 +595599,157.91,67.513 +595600,155.5,67.666 +595601,161.13,67.243 +595602,158.9,67.357 +595603,156.59,67.473 +595604,154.17,67.591 +595605,159.83,67.273 +595606,157.59,67.351 +595607,155.27,67.432 +595608,152.83,67.516 +595609,158.53,67.303 +595610,156.29,67.346 +595611,153.95,67.392 +595612,151.49,67.44 +595613,157.23,67.333 +595614,154.98,67.341 +595615,152.63,67.352 +595616,150.16,67.365 +595617,155.93,67.363 +595618,153.66,67.336 +595619,151.31,67.312 +595620,148.83,67.289 +595621,154.62,67.393 +595622,152.35,67.331 +595623,149.99,67.271 +595624,147.5,67.214 +595625,153.31,67.423 +595626,151.04,67.326 +595627,148.67,67.231 +595628,146.18,67.138 +595629,152.01,67.452 +595630,149.73,67.32 +595631,147.35,67.191 +595632,144.85,67.063 +595633,150.69,67.482 +595634,148.42,67.315 +595635,146.03,67.15 +595636,143.53,66.987 +595637,149.38,67.512 +595638,147.1,67.31 +595639,144.72,67.11 +595640,142.21,66.912 +595641,148.07,67.541 +595642,145.79,67.305 +595643,143.4,67.07 +595644,140.89,66.837 +595645,146.75,67.57 +595646,144.47,67.299 +595647,142.09,67.03 +595648,139.57,66.761 +595649,145.44,67.599 +595650,143.16,67.294 +595651,140.77,66.989 +595652,138.26,66.687 +595653,144.12,67.628 +595654,141.84,67.288 +595655,139.46,66.949 +595656,136.94,66.612 +595657,142.8,67.656 +595658,140.53,67.282 +595659,138.15,66.909 +595660,135.63,66.537 +595661,141.47,67.684 +595662,139.21,67.277 +595663,136.83,66.869 +595664,134.32,66.463 +595665,140.15,67.712 +595666,137.89,67.271 +595667,135.52,66.83 +595668,133.02,66.389 +595669,138.83,67.739 +595670,136.57,67.265 +595671,134.21,66.79 +595672,131.71,66.315 +595673,137.5,67.766 +595674,135.26,67.259 +595675,132.9,66.75 +595676,130.41,66.242 +595677,136.17,67.793 +595678,133.94,67.252 +595679,131.59,66.711 +595680,129.11,66.169 +595681,134.84,67.819 +595682,132.62,67.246 +595683,130.28,66.671 +595684,127.81,66.096 +595685,133.51,67.845 +595686,131.3,67.239 +595687,128.97,66.632 +595688,126.51,66.024 +595689,132.17,67.87 +595690,129.98,67.232 +595691,127.66,66.593 +595692,125.21,65.952 +595693,130.84,67.895 +595694,128.65,67.225 +595695,126.35,66.554 +595696,123.92,65.881 +595697,129.5,67.919 +595698,127.33,67.218 +595699,125.05,66.515 +595700,122.63,65.81 +595701,128.16,67.942 +595702,126.01,67.211 +595703,123.74,66.477 +595704,121.34,65.74 +595705,126.82,67.965 +595706,124.69,67.203 +595707,122.44,66.438 +595708,120.05,65.67 +595709,125.48,67.988 +595710,123.36,67.196 +595711,121.13,66.4 +595712,118.76,65.601 +595713,124.13,68.009 +595714,122.04,67.188 +595715,119.83,66.362 +595716,117.48,65.533 +595717,122.79,68.03 +595718,120.71,67.18 +595719,118.52,66.324 +595720,116.19,65.465 +595721,121.44,68.051 +595722,119.39,67.171 +595723,117.22,66.286 +595724,114.91,65.397 +595725,120.09,68.07 +595726,118.06,67.162 +595727,115.92,66.249 +595728,113.63,65.331 +595729,118.74,68.089 +595730,116.74,67.153 +595731,114.61,66.212 +595732,112.36,65.265 +595733,117.39,68.107 +595734,115.41,67.144 +595735,113.31,66.175 +595736,111.08,65.2 +595737,116.04,68.125 +595738,114.08,67.135 +595739,112.01,66.138 +595740,109.81,65.135 +595741,114.68,68.141 +595742,112.75,67.125 +595743,110.71,66.102 +595744,108.54,65.072 +595745,113.33,68.157 +595746,111.43,67.115 +595747,109.41,66.065 +595748,107.26,65.009 +595749,111.97,68.172 +595750,110.1,67.105 +595751,108.11,66.029 +595752,106,64.947 +595753,110.61,68.186 +595754,108.77,67.094 +595755,106.81,65.994 +595756,104.73,64.886 +595757,109.25,68.199 +595758,107.44,67.083 +595759,105.51,65.958 +595760,103.46,64.826 +595761,107.89,68.211 +595762,106.11,67.072 +595763,104.22,65.923 +595764,102.2,64.766 +595765,106.53,68.223 +595766,104.78,67.06 +595767,102.92,65.888 +595768,100.94,64.708 +595769,105.16,68.233 +595770,103.45,67.049 +595771,101.62,65.854 +595772,99.677,64.65 +595773,103.8,68.242 +595774,102.11,67.036 +595775,100.33,65.82 +595776,98.418,64.594 +595777,102.43,68.251 +595778,100.78,67.024 +595779,99.031,65.786 +595780,97.16,64.538 +595781,101.06,68.258 +595782,99.45,67.011 +595783,97.735,65.752 +595784,95.904,64.483 +595785,99.691,68.265 +595786,98.117,66.998 +595787,96.441,65.719 +595788,94.649,64.429 +595789,98.321,68.27 +595790,96.783,66.984 +595791,95.146,65.686 +595792,93.396,64.377 +595793,96.949,68.275 +595794,95.45,66.97 +595795,93.852,65.654 +595796,92.144,64.325 +595797,95.576,68.278 +595798,94.116,66.956 +595799,92.559,65.621 +595800,90.893,64.275 +595801,94.202,68.28 +595802,92.781,66.942 +595803,91.266,65.589 +595804,89.644,64.225 +595805,92.827,68.281 +595806,91.446,66.927 +595807,89.973,65.558 +595808,88.396,64.177 +595809,91.45,68.282 +595810,90.111,66.911 +595811,88.681,65.527 +595812,87.149,64.129 +595813,90.073,68.281 +595814,88.776,66.895 +595815,87.389,65.496 +595816,85.903,64.083 +595817,88.695,68.278 +595818,87.44,66.879 +595819,86.098,65.465 +595820,84.659,64.038 +595821,87.315,68.275 +595822,86.104,66.863 +595823,84.807,65.435 +595824,83.415,63.994 +595825,85.935,68.271 +595826,84.767,66.846 +595827,83.516,65.406 +595828,82.173,63.951 +595829,84.554,68.265 +595830,83.43,66.828 +595831,82.226,65.376 +595832,80.932,63.91 +595833,83.172,68.258 +595834,82.093,66.811 +595835,80.936,65.347 +595836,79.691,63.869 +595837,81.789,68.25 +595838,80.756,66.793 +595839,79.646,65.319 +595840,78.452,63.83 +595841,80.405,68.241 +595842,79.418,66.774 +595843,78.357,65.29 +595844,77.213,63.792 +595845,79.02,68.231 +595846,78.08,66.755 +595847,77.068,65.263 +595848,75.976,63.755 +595849,77.635,68.22 +595850,76.742,66.736 +595851,75.779,65.235 +595852,74.739,63.719 +595853,76.249,68.207 +595854,75.404,66.716 +595855,74.491,65.208 +595856,73.503,63.685 +595857,74.862,68.193 +595858,74.065,66.696 +595859,73.202,65.182 +595860,72.267,63.651 +595861,73.474,68.178 +595862,72.726,66.675 +595863,71.914,65.155 +595864,71.033,63.619 +595865,72.086,68.162 +595866,71.387,66.654 +595867,70.627,65.129 +595868,69.799,63.589 +595869,70.697,68.144 +595870,70.048,66.633 +595871,69.339,65.104 +595872,68.565,63.559 +595873,69.308,68.125 +595874,68.708,66.611 +595875,68.052,65.079 +595876,67.332,63.531 +595877,67.918,68.105 +595878,67.369,66.589 +595879,66.765,65.054 +595880,66.1,63.504 +595881,66.527,68.084 +595882,66.029,66.566 +595883,65.478,65.03 +595884,64.868,63.478 +595885,65.136,68.062 +595886,64.689,66.543 +595887,64.191,65.006 +595888,63.637,63.453 +595889,63.745,68.038 +595890,63.349,66.519 +595891,62.904,64.983 +595892,62.406,63.43 +595893,62.353,68.013 +595894,62.009,66.495 +595895,61.618,64.96 +595896,61.175,63.408 +595897,60.961,67.987 +595898,60.669,66.471 +595899,60.332,64.937 +595900,59.945,63.387 +595901,59.568,67.959 +595902,59.329,66.446 +595903,59.045,64.915 +595904,58.715,63.368 +595905,58.176,67.931 +595906,57.988,66.421 +595907,57.759,64.893 +595908,57.485,63.349 +595909,56.782,67.901 +595910,56.648,66.395 +595911,56.473,64.872 +595912,56.255,63.332 +595913,55.389,67.87 +595914,55.308,66.369 +595915,55.187,64.851 +595916,55.025,63.317 +595917,53.996,67.837 +595918,53.967,66.342 +595919,53.901,64.83 +595920,53.795,63.302 +595921,52.602,67.804 +595922,52.627,66.315 +595923,52.615,64.81 +595924,52.566,63.289 +595925,51.208,67.769 +595926,51.286,66.288 +595927,51.329,64.79 +595928,51.336,63.277 +595929,49.815,67.733 +595930,49.946,66.26 +595931,50.044,64.771 +595932,50.106,63.266 +595933,48.421,67.696 +595934,48.605,66.232 +595935,48.758,64.752 +595936,48.877,63.256 +595937,47.027,67.657 +595938,47.265,66.203 +595939,47.472,64.733 +595940,47.647,63.248 +595941,45.633,67.618 +595942,45.924,66.174 +595943,46.186,64.715 +595944,46.416,63.24 +595945,44.24,67.577 +595946,44.584,66.145 +595947,44.9,64.697 +595948,45.186,63.234 +595949,42.846,67.535 +595950,43.244,66.115 +595951,43.614,64.68 +595952,43.955,63.23 +595953,41.453,67.492 +595954,41.904,66.085 +595955,42.328,64.662 +595956,42.724,63.226 +595957,40.059,67.448 +595958,40.564,66.054 +595959,41.042,64.646 +595960,41.493,63.223 +595961,38.666,67.402 +595962,39.224,66.023 +595963,39.755,64.629 +595964,40.261,63.222 +595965,37.274,67.355 +595966,37.884,65.992 +595967,38.469,64.613 +595968,39.028,63.222 +595969,35.881,67.308 +595970,36.544,65.96 +595971,37.182,64.598 +595972,37.795,63.223 +595973,34.489,67.259 +595974,35.205,65.928 +595975,35.896,64.583 +595976,36.562,63.225 +595977,33.098,67.209 +595978,33.866,65.895 +595979,34.609,64.568 +595980,35.328,63.228 +595981,31.706,67.158 +595982,32.526,65.862 +595983,33.322,64.553 +595984,34.093,63.232 +595985,30.316,67.106 +595986,31.188,65.829 +595987,32.035,64.539 +595988,32.858,63.237 +595989,28.925,67.052 +595990,29.849,65.795 +595991,30.747,64.525 +595992,31.622,63.244 +595993,27.536,66.998 +595994,28.51,65.761 +595995,29.46,64.512 +595996,30.385,63.251 +595997,26.147,66.943 +595998,27.172,65.727 +595999,28.172,64.498 +596000,29.147,63.259 +596001,24.758,66.886 +596002,25.834,65.692 +596003,26.884,64.486 +596004,27.909,63.269 +596005,23.37,66.829 +596006,24.496,65.657 +596007,25.595,64.473 +596008,26.67,63.279 +596009,21.983,66.771 +596010,23.159,65.621 +596011,24.307,64.461 +596012,25.429,63.291 +596013,20.597,66.711 +596014,21.822,65.586 +596015,23.018,64.449 +596016,24.188,63.303 +596017,19.211,66.651 +596018,20.485,65.549 +596019,21.729,64.437 +596020,22.946,63.316 +596021,17.826,66.59 +596022,19.148,65.513 +596023,20.44,64.426 +596024,21.703,63.33 +596025,16.442,66.528 +596026,17.812,65.476 +596027,19.15,64.415 +596028,20.459,63.345 +596029,15.059,66.465 +596030,16.476,65.439 +596031,17.86,64.404 +596032,19.214,63.361 +596033,13.677,66.401 +596034,15.14,65.402 +596035,16.569,64.394 +596036,17.967,63.378 +596037,12.296,66.336 +596038,13.805,65.364 +596039,15.279,64.383 +596040,16.72,63.395 +596041,10.915,66.27 +596042,12.47,65.326 +596043,13.988,64.373 +596044,15.471,63.414 +596045,9.5363,66.204 +596046,11.136,65.288 +596047,12.696,64.364 +596048,14.221,63.433 +596049,8.1581,66.137 +596050,9.802,65.249 +596051,11.404,64.354 +596052,12.97,63.453 +596053,6.7811,66.069 +596054,8.4683,65.211 +596055,10.112,64.345 +596056,11.718,63.473 +596057,5.4053,66 +596058,7.1351,65.172 +596059,8.8195,64.336 +596060,10.464,63.495 +596061,4.0306,65.931 +596062,5.8023,65.132 +596063,7.5265,64.327 +596064,9.2088,63.517 +596065,2.6571,65.86 +596066,4.47,65.093 +596067,6.2331,64.319 +596068,7.9525,63.539 +596069,1.2848,65.79 +596070,3.1381,65.053 +596071,4.9393,64.31 +596072,6.6947,63.563 +596073,359.91,65.718 +596074,1.8067,65.013 +596075,3.645,64.302 +596076,5.4356,63.586 +596077,358.54,65.646 +596078,0.4757,64.973 +596079,2.3503,64.294 +596080,4.175,63.611 +596081,357.18,65.573 +596082,359.15,64.933 +596083,1.0551,64.286 +596084,2.913,63.636 +596085,355.81,65.5 +596086,357.82,64.892 +596087,359.76,64.279 +596088,1.6495,63.661 +596089,354.44,65.426 +596090,356.49,64.851 +596091,358.46,64.271 +596092,0.38457,63.687 +596093,353.08,65.351 +596094,355.16,64.81 +596095,357.17,64.264 +596096,359.12,63.714 +596097,351.72,65.276 +596098,353.83,64.769 +596099,355.87,64.257 +596100,357.85,63.741 +596101,350.36,65.201 +596102,352.5,64.728 +596103,354.57,64.25 +596104,356.58,63.768 +596105,349,65.125 +596106,351.17,64.686 +596107,353.27,64.243 +596108,355.31,63.796 +596109,347.64,65.049 +596110,349.85,64.645 +596111,351.98,64.236 +596112,354.04,63.824 +596113,346.28,64.972 +596114,348.52,64.603 +596115,350.68,64.229 +596116,352.76,63.852 +596117,344.93,64.895 +596118,347.19,64.561 +596119,349.38,64.222 +596120,351.49,63.881 +596121,343.57,64.818 +596122,345.87,64.519 +596123,348.08,64.216 +596124,350.21,63.91 +596125,342.22,64.74 +596126,344.54,64.477 +596127,346.78,64.209 +596128,348.93,63.939 +596129,340.87,64.662 +596130,343.22,64.435 +596131,345.47,64.203 +596132,347.65,63.969 +596133,339.52,64.583 +596134,341.9,64.392 +596135,344.17,64.197 +596136,346.37,63.999 +596137,338.18,64.505 +596138,340.57,64.35 +596139,342.87,64.19 +596140,345.08,64.028 +596141,336.83,64.426 +596142,339.25,64.307 +596143,341.57,64.184 +596144,343.8,64.058 +596145,335.49,64.347 +596146,337.93,64.265 +596147,340.26,64.178 +596148,342.51,64.088 +596149,334.15,64.268 +596150,336.61,64.222 +596151,338.96,64.172 +596152,341.22,64.118 +596153,332.81,64.189 +596154,335.29,64.18 +596155,337.66,64.166 +596156,339.93,64.149 +596157,331.47,64.11 +596158,333.97,64.137 +596159,336.35,64.159 +596160,338.63,64.179 +596161,330.14,64.031 +596162,332.65,64.094 +596163,335.05,64.153 +596164,337.34,64.209 +596165,328.8,63.951 +596166,331.33,64.052 +596167,333.74,64.147 +596168,336.04,64.239 +596169,327.47,63.872 +596170,330.01,64.009 +596171,332.43,64.141 +596172,334.75,64.269 +596173,326.14,63.793 +596174,328.7,63.966 +596175,331.12,64.135 +596176,333.45,64.299 +596177,324.81,63.713 +596178,327.38,63.923 +596179,329.82,64.128 +596180,332.14,64.329 +596181,323.49,63.634 +596182,326.06,63.881 +596183,328.51,64.122 +596184,330.84,64.358 +596185,322.17,63.555 +596186,324.75,63.838 +596187,327.2,64.115 +596188,329.54,64.388 +596189,320.84,63.477 +596190,323.43,63.796 +596191,325.89,64.109 +596192,328.23,64.417 +596193,319.52,63.398 +596194,322.12,63.753 +596195,324.58,64.102 +596196,326.92,64.446 +596197,318.21,63.319 +596198,320.81,63.711 +596199,323.27,64.095 +596200,325.61,64.475 +596201,316.89,63.241 +596202,319.49,63.668 +596203,321.96,64.089 +596204,324.3,64.503 +596205,315.58,63.163 +596206,318.18,63.626 +596207,320.64,64.082 +596208,322.98,64.531 +596209,314.26,63.086 +596210,316.87,63.584 +596211,319.33,64.074 +596212,321.67,64.559 +596213,312.95,63.008 +596214,315.56,63.542 +596215,318.02,64.067 +596216,320.35,64.586 +596217,311.65,62.931 +596218,314.25,63.5 +596219,316.7,64.06 +596220,319.03,64.613 +596221,310.34,62.855 +596222,312.94,63.458 +596223,315.39,64.052 +596224,317.71,64.639 +596225,309.04,62.779 +596226,311.63,63.416 +596227,314.07,64.045 +596228,316.39,64.665 +596229,307.73,62.703 +596230,310.32,63.374 +596231,312.76,64.037 +596232,315.06,64.691 +596233,306.43,62.628 +596234,309.02,63.333 +596235,311.44,64.029 +596236,313.74,64.716 +596237,305.14,62.553 +596238,307.71,63.292 +596239,310.13,64.021 +596240,312.41,64.74 +596241,303.84,62.479 +596242,306.4,63.251 +596243,308.81,64.012 +596244,311.08,64.764 +596245,302.55,62.405 +596246,305.1,63.21 +596247,307.49,64.003 +596248,309.75,64.787 +596249,301.25,62.332 +596250,303.79,63.169 +596251,306.17,63.995 +596252,308.42,64.809 +596253,299.96,62.259 +596254,302.49,63.128 +596255,304.85,63.986 +596256,307.08,64.831 +596257,298.68,62.188 +596258,301.19,63.088 +596259,303.53,63.976 +596260,305.74,64.853 +596261,297.39,62.116 +596262,299.88,63.048 +596263,302.21,63.967 +596264,304.41,64.873 +596265,296.11,62.046 +596266,298.58,63.008 +596267,300.89,63.957 +596268,303.07,64.893 +596269,294.82,61.976 +596270,297.28,62.968 +596271,299.57,63.947 +596272,301.73,64.912 +596273,293.54,61.907 +596274,295.98,62.929 +596275,298.25,63.936 +596276,300.38,64.93 +596277,292.27,61.839 +596278,294.68,62.889 +596279,296.93,63.926 +596280,299.04,64.948 +596281,290.99,61.771 +596282,293.38,62.851 +596283,295.6,63.915 +596284,297.69,64.964 +596285,289.72,61.705 +596286,292.08,62.812 +596287,294.28,63.904 +596288,296.35,64.98 +596289,288.44,61.639 +596290,290.78,62.773 +596291,292.96,63.892 +596292,295,64.995 +596293,287.17,61.574 +596294,289.48,62.735 +596295,291.63,63.88 +596296,293.65,65.009 +596297,285.9,61.51 +596298,288.19,62.697 +596299,290.31,63.868 +596300,292.29,65.022 +596301,284.64,61.447 +596302,286.89,62.66 +596303,288.98,63.856 +596304,290.94,65.035 +596305,283.37,61.384 +596306,285.59,62.623 +596307,287.66,63.843 +596308,289.59,65.046 +596309,282.11,61.323 +596310,284.3,62.586 +596311,286.33,63.83 +596312,288.23,65.056 +596313,280.85,61.263 +596314,283,62.549 +596315,285,63.816 +596316,286.87,65.066 +596317,279.59,61.204 +596318,281.71,62.513 +596319,283.68,63.803 +596320,285.51,65.074 +596321,278.33,61.145 +596322,280.41,62.477 +596323,282.35,63.788 +596324,284.15,65.081 +596325,277.07,61.088 +596326,279.12,62.441 +596327,281.02,63.774 +596328,282.79,65.087 +596329,275.82,61.032 +596330,277.83,62.405 +596331,279.69,63.759 +596332,281.43,65.093 +596333,274.56,60.977 +596334,276.53,62.37 +596335,278.36,63.744 +596336,280.06,65.097 +596337,273.31,60.923 +596338,275.24,62.336 +596339,277.03,63.728 +596340,278.7,65.1 +596341,272.06,60.87 +596342,273.95,62.302 +596343,275.7,63.712 +596344,277.33,65.102 +596345,270.81,60.818 +596346,272.66,62.268 +596347,274.37,63.696 +596348,275.96,65.103 +596349,269.56,60.767 +596350,271.37,62.234 +596351,273.04,63.679 +596352,274.59,65.102 +596353,268.32,60.717 +596354,270.08,62.201 +596355,271.71,63.662 +596356,273.22,65.101 +596357,267.07,60.669 +596358,268.79,62.168 +596359,270.38,63.644 +596360,271.85,65.098 +596361,265.83,60.622 +596362,267.5,62.135 +596363,269.04,63.626 +596364,270.48,65.094 +596365,264.59,60.576 +596366,266.21,62.103 +596367,267.71,63.608 +596368,269.1,65.09 +596369,263.35,60.531 +596370,264.93,62.072 +596371,266.38,63.589 +596372,267.73,65.083 +596373,262.11,60.487 +596374,263.64,62.04 +596375,265.05,63.57 +596376,266.35,65.076 +596377,260.87,60.445 +596378,262.35,62.01 +596379,263.71,63.55 +596380,264.97,65.067 +596381,259.63,60.404 +596382,261.06,61.979 +596383,262.38,63.53 +596384,263.6,65.058 +596385,258.4,60.364 +596386,259.78,61.949 +596387,261.05,63.51 +596388,262.22,65.047 +596389,257.16,60.325 +596390,258.49,61.919 +596391,259.71,63.489 +596392,260.84,65.034 +596393,255.93,60.288 +596394,257.2,61.89 +596395,258.38,63.468 +596396,259.46,65.021 +596397,254.69,60.252 +596398,255.92,61.861 +596399,257.04,63.446 +596400,258.07,65.006 +596401,253.46,60.217 +596402,254.63,61.833 +596403,255.71,63.424 +596404,256.69,64.99 +596405,252.23,60.184 +596406,253.35,61.804 +596407,254.37,63.401 +596408,255.31,64.973 +596409,251,60.151 +596410,252.06,61.777 +596411,253.03,63.378 +596412,253.92,64.954 +596413,249.77,60.12 +596414,250.78,61.75 +596415,251.7,63.354 +596416,252.54,64.934 +596417,248.54,60.091 +596418,249.5,61.723 +596419,250.36,63.33 +596420,251.15,64.913 +596421,247.32,60.063 +596422,248.21,61.696 +596423,249.03,63.306 +596424,249.77,64.89 +596425,246.09,60.035 +596426,246.93,61.67 +596427,247.69,63.281 +596428,248.38,64.867 +596429,244.86,60.01 +596430,245.65,61.645 +596431,246.35,63.256 +596432,246.99,64.842 +596433,243.64,59.985 +596434,244.36,61.62 +596435,245.02,63.23 +596436,245.6,64.815 +596437,242.41,59.962 +596438,243.08,61.595 +596439,243.68,63.204 +596440,244.22,64.788 +596441,241.18,59.941 +596442,241.8,61.571 +596443,242.34,63.177 +596444,242.83,64.759 +596445,239.96,59.92 +596446,240.51,61.547 +596447,241,63.15 +596448,241.44,64.729 +596449,238.74,59.901 +596450,239.23,61.523 +596451,239.67,63.122 +596452,240.05,64.697 +596453,237.51,59.883 +596454,237.95,61.5 +596455,238.33,63.094 +596456,238.66,64.664 +596457,236.29,59.867 +596458,236.67,61.478 +596459,236.99,63.066 +596460,237.27,64.63 +596461,235.06,59.851 +596462,235.39,61.456 +596463,235.65,63.037 +596464,235.87,64.595 +596465,233.84,59.837 +596466,234.1,61.434 +596467,234.32,63.008 +596468,234.48,64.558 +596469,232.62,59.825 +596470,232.82,61.412 +596471,232.98,62.978 +596472,233.09,64.52 +596473,231.39,59.813 +596474,231.54,61.391 +596475,231.64,62.948 +596476,231.7,64.481 +596477,230.17,59.803 +596478,230.26,61.371 +596479,230.3,62.917 +596480,230.31,64.44 +596481,228.95,59.794 +596482,228.98,61.351 +596483,228.97,62.886 +596484,228.92,64.399 +596485,227.72,59.787 +596486,227.7,61.331 +596487,227.63,62.854 +596488,227.52,64.356 +596489,226.5,59.78 +596490,226.41,61.312 +596491,226.29,62.822 +596492,226.13,64.311 +596493,225.28,59.775 +596494,225.13,61.293 +596495,224.95,62.79 +596496,224.74,64.266 +596497,224.05,59.771 +596498,223.85,61.274 +596499,223.61,62.757 +596500,223.35,64.219 +596501,222.83,59.768 +596502,222.57,61.256 +596503,222.28,62.724 +596504,221.96,64.171 +596505,221.61,59.767 +596506,221.29,61.238 +596507,220.94,62.69 +596508,220.56,64.122 +596509,220.38,59.767 +596510,220.01,61.221 +596511,219.6,62.656 +596512,219.17,64.072 +596513,219.16,59.768 +596514,218.72,61.204 +596515,218.26,62.622 +596516,217.78,64.02 +596517,217.93,59.77 +596518,217.44,61.187 +596519,216.93,62.587 +596520,216.39,63.967 +596521,216.71,59.773 +596522,216.16,61.171 +596523,215.59,62.552 +596524,215,63.914 +596525,215.48,59.777 +596526,214.88,61.155 +596527,214.25,62.516 +596528,213.61,63.859 +596529,214.25,59.783 +596530,213.6,61.14 +596531,212.92,62.48 +596532,212.22,63.802 +596533,213.03,59.789 +596534,212.31,61.124 +596535,211.58,62.443 +596536,210.83,63.745 +596537,211.8,59.797 +596538,211.03,61.11 +596539,210.24,62.407 +596540,209.44,63.687 +596541,210.57,59.805 +596542,209.75,61.095 +596543,208.91,62.369 +596544,208.05,63.627 +596545,209.34,59.815 +596546,208.46,61.081 +596547,207.57,62.332 +596548,206.66,63.567 +596549,208.11,59.826 +596550,207.18,61.067 +596551,206.24,62.294 +596552,205.27,63.505 +596553,206.88,59.837 +596554,205.9,61.054 +596555,204.9,62.256 +596556,203.88,63.442 +596557,205.65,59.85 +596558,204.61,61.04 +596559,203.56,62.217 +596560,202.49,63.379 +596561,204.41,59.864 +596562,203.33,61.028 +596563,202.23,62.178 +596564,201.11,63.314 +596565,203.18,59.879 +596566,202.05,61.015 +596567,200.89,62.139 +596568,199.72,63.248 +596569,201.94,59.894 +596570,200.76,61.003 +596571,199.56,62.099 +596572,198.34,63.182 +596573,200.71,59.91 +596574,199.48,60.991 +596575,198.23,62.059 +596576,196.95,63.114 +596577,199.47,59.928 +596578,198.19,60.979 +596579,196.89,62.019 +596580,195.57,63.045 +596581,198.23,59.946 +596582,196.91,60.968 +596583,195.56,61.978 +596584,194.18,62.976 +596585,196.99,59.965 +596586,195.62,60.957 +596587,194.23,61.937 +596588,192.8,62.906 +596589,195.75,59.985 +596590,194.34,60.946 +596591,192.89,61.896 +596592,191.42,62.835 +596593,194.51,60.005 +596594,193.05,60.935 +596595,191.56,61.855 +596596,190.04,62.763 +596597,193.27,60.027 +596598,191.76,60.925 +596599,190.23,61.813 +596600,188.66,62.69 +596601,192.03,60.049 +596602,190.48,60.915 +596603,188.9,61.771 +596604,187.28,62.616 +596605,190.78,60.071 +596606,189.19,60.905 +596607,187.57,61.729 +596608,185.91,62.542 +596609,189.54,60.095 +596610,187.9,60.895 +596611,186.23,61.686 +596612,184.53,62.467 +596613,188.29,60.119 +596614,186.61,60.885 +596615,184.9,61.643 +596616,183.16,62.391 +596617,187.04,60.144 +596618,185.32,60.876 +596619,183.57,61.6 +596620,181.78,62.314 +596621,185.79,60.169 +596622,184.04,60.867 +596623,182.24,61.557 +596624,180.41,62.237 +596625,184.54,60.195 +596626,182.75,60.858 +596627,180.92,61.513 +596628,179.04,62.159 +596629,183.28,60.221 +596630,181.46,60.849 +596631,179.59,61.47 +596632,177.67,62.081 +596633,182.03,60.248 +596634,180.17,60.841 +596635,178.26,61.426 +596636,176.3,62.001 +596637,180.77,60.276 +596638,178.88,60.832 +596639,176.93,61.382 +596640,174.93,61.922 +596641,179.51,60.303 +596642,177.58,60.824 +596643,175.6,61.338 +596644,173.57,61.842 +596645,178.25,60.332 +596646,176.29,60.816 +596647,174.28,61.293 +596648,172.2,61.761 +596649,176.99,60.36 +596650,175,60.808 +596651,172.95,61.248 +596652,170.84,61.68 +596653,175.73,60.389 +596654,173.71,60.8 +596655,171.63,61.204 +596656,169.48,61.598 +596657,174.47,60.419 +596658,172.42,60.792 +596659,170.3,61.159 +596660,168.12,61.516 +596661,173.2,60.448 +596662,171.12,60.785 +596663,168.98,61.114 +596664,166.76,61.434 +596665,171.93,60.478 +596666,169.83,60.777 +596667,167.65,61.069 +596668,165.4,61.351 +596669,170.67,60.509 +596670,168.53,60.77 +596671,166.33,61.023 +596672,164.05,61.268 +596673,169.39,60.539 +596674,167.24,60.762 +596675,165.01,60.978 +596676,162.69,61.184 +596677,168.12,60.57 +596678,165.94,60.755 +596679,163.69,60.932 +596680,161.34,61.101 +596681,166.85,60.6 +596682,164.65,60.747 +596683,162.36,60.887 +596684,159.99,61.017 +596685,165.57,60.631 +596686,163.35,60.74 +596687,161.04,60.841 +596688,158.64,60.933 +596689,164.3,60.662 +596690,162.05,60.733 +596691,159.72,60.795 +596692,157.29,60.848 +596693,163.02,60.693 +596694,160.75,60.725 +596695,158.4,60.75 +596696,155.95,60.764 +596697,161.74,60.724 +596698,159.46,60.718 +596699,157.08,60.704 +596700,154.61,60.679 +596701,160.45,60.755 +596702,158.16,60.711 +596703,155.77,60.658 +596704,153.26,60.594 +596705,159.17,60.786 +596706,156.86,60.704 +596707,154.45,60.612 +596708,151.92,60.51 +596709,157.88,60.817 +596710,155.56,60.696 +596711,153.13,60.566 +596712,150.59,60.425 +596713,156.59,60.848 +596714,154.26,60.689 +596715,151.81,60.52 +596716,149.25,60.34 +596717,155.3,60.879 +596718,152.96,60.682 +596719,150.5,60.474 +596720,147.92,60.255 +596721,154.01,60.91 +596722,151.65,60.674 +596723,149.18,60.429 +596724,146.58,60.171 +596725,152.72,60.94 +596726,150.35,60.667 +596727,147.87,60.383 +596728,145.25,60.086 +596729,151.42,60.97 +596730,149.05,60.659 +596731,146.55,60.337 +596732,143.93,60.002 +596733,150.13,61 +596734,147.74,60.652 +596735,145.24,60.291 +596736,142.6,59.917 +596737,148.83,61.03 +596738,146.44,60.644 +596739,143.93,60.246 +596740,141.27,59.833 +596741,147.53,61.06 +596742,145.14,60.636 +596743,142.62,60.2 +596744,139.95,59.749 +596745,146.23,61.089 +596746,143.83,60.628 +596747,141.31,60.154 +596748,138.63,59.666 +596749,144.92,61.117 +596750,142.52,60.62 +596751,140,60.109 +596752,137.31,59.582 +596753,143.62,61.146 +596754,141.22,60.612 +596755,138.69,60.064 +596756,136,59.499 +596757,142.31,61.174 +596758,139.91,60.603 +596759,137.38,60.018 +596760,134.68,59.417 +596761,141,61.201 +596762,138.6,60.595 +596763,136.07,59.973 +596764,133.37,59.334 +596765,139.69,61.228 +596766,137.29,60.586 +596767,134.76,59.928 +596768,132.06,59.253 +596769,138.37,61.255 +596770,135.99,60.577 +596771,133.45,59.883 +596772,130.75,59.171 +596773,137.06,61.281 +596774,134.68,60.568 +596775,132.15,59.839 +596776,129.45,59.09 +596777,135.74,61.306 +596778,133.37,60.559 +596779,130.84,59.794 +596780,128.14,59.01 +596781,134.42,61.331 +596782,132.06,60.549 +596783,129.54,59.75 +596784,126.84,58.93 +596785,133.1,61.355 +596786,130.74,60.54 +596787,128.23,59.706 +596788,125.54,58.851 +596789,131.78,61.379 +596790,129.43,60.53 +596791,126.93,59.662 +596792,124.25,58.772 +596793,130.46,61.402 +596794,128.12,60.52 +596795,125.63,59.618 +596796,122.95,58.694 +596797,129.13,61.424 +596798,126.81,60.509 +596799,124.32,59.574 +596800,121.66,58.616 +596801,127.81,61.445 +596802,125.49,60.499 +596803,123.02,59.531 +596804,120.37,58.54 +596805,126.48,61.466 +596806,124.18,60.488 +596807,121.72,59.488 +596808,119.08,58.463 +596809,125.15,61.486 +596810,122.86,60.477 +596811,120.42,59.445 +596812,117.79,58.388 +596813,123.82,61.505 +596814,121.55,60.465 +596815,119.12,59.402 +596816,116.51,58.314 +596817,122.48,61.524 +596818,120.23,60.454 +596819,117.82,59.36 +596820,115.22,58.24 +596821,121.15,61.541 +596822,118.92,60.442 +596823,116.53,59.318 +596824,113.94,58.167 +596825,119.81,61.558 +596826,117.6,60.429 +596827,115.23,59.276 +596828,112.66,58.095 +596829,118.47,61.574 +596830,116.28,60.417 +596831,113.93,59.234 +596832,111.39,58.024 +596833,117.13,61.589 +596834,114.96,60.404 +596835,112.63,59.193 +596836,110.11,57.953 +596837,115.79,61.602 +596838,113.65,60.391 +596839,111.34,59.152 +596840,108.84,57.884 +596841,114.45,61.615 +596842,112.33,60.377 +596843,110.04,59.111 +596844,107.57,57.815 +596845,113.1,61.627 +596846,111.01,60.363 +596847,108.75,59.071 +596848,106.3,57.748 +596849,111.75,61.638 +596850,109.69,60.349 +596851,107.46,59.031 +596852,105.03,57.681 +596853,110.41,61.648 +596854,108.37,60.334 +596855,106.16,58.991 +596856,103.77,57.616 +596857,109.06,61.657 +596858,107.04,60.319 +596859,104.87,58.952 +596860,102.51,57.552 +596861,107.71,61.665 +596862,105.72,60.304 +596863,103.58,58.912 +596864,101.25,57.488 +596865,106.35,61.672 +596866,104.4,60.288 +596867,102.29,58.874 +596868,99.988,57.426 +596869,105,61.678 +596870,103.08,60.272 +596871,101,58.835 +596872,98.731,57.365 +596873,103.64,61.682 +596874,101.75,60.256 +596875,99.708,58.797 +596876,97.475,57.305 +596877,102.29,61.686 +596878,100.43,60.239 +596879,98.419,58.76 +596880,96.222,57.246 +596881,100.93,61.688 +596882,99.107,60.222 +596883,97.13,58.722 +596884,94.97,57.188 +596885,99.57,61.689 +596886,97.782,60.204 +596887,95.842,58.686 +596888,93.72,57.132 +596889,98.21,61.689 +596890,96.457,60.186 +596891,94.554,58.649 +596892,92.472,57.076 +596893,96.848,61.688 +596894,95.132,60.168 +596895,93.267,58.613 +596896,91.226,57.022 +596897,95.485,61.686 +596898,93.806,60.149 +596899,91.98,58.577 +596900,89.981,56.969 +596901,94.12,61.682 +596902,92.48,60.129 +596903,90.694,58.542 +596904,88.738,56.918 +596905,92.755,61.677 +596906,91.153,60.11 +596907,89.409,58.507 +596908,87.496,56.867 +596909,91.388,61.671 +596910,89.826,60.089 +596911,88.124,58.472 +596912,86.256,56.818 +596913,90.02,61.663 +596914,88.499,60.069 +596915,86.839,58.438 +596916,85.017,56.77 +596917,88.651,61.655 +596918,87.171,60.048 +596919,85.555,58.405 +596920,83.78,56.724 +596921,87.281,61.645 +596922,85.843,60.026 +596923,84.272,58.371 +596924,82.544,56.679 +596925,85.909,61.634 +596926,84.514,60.004 +596927,82.988,58.339 +596928,81.31,56.635 +596929,84.537,61.621 +596930,83.185,59.982 +596931,81.706,58.306 +596932,80.077,56.592 +596933,83.164,61.607 +596934,81.856,59.959 +596935,80.424,58.274 +596936,78.845,56.551 +596937,81.789,61.592 +596938,80.526,59.936 +596939,79.142,58.243 +596940,77.614,56.512 +596941,80.414,61.575 +596942,79.197,59.912 +596943,77.86,58.212 +596944,76.385,56.473 +596945,79.038,61.558 +596946,77.866,59.888 +596947,76.579,58.181 +596948,75.157,56.436 +596949,77.661,61.538 +596950,76.536,59.863 +596951,75.299,58.151 +596952,73.93,56.401 +596953,76.283,61.518 +596954,75.205,59.838 +596955,74.018,58.121 +596956,72.704,56.366 +596957,74.904,61.496 +596958,73.874,59.812 +596959,72.738,58.092 +596960,71.479,56.333 +596961,73.524,61.473 +596962,72.543,59.786 +596963,71.459,58.063 +596964,70.255,56.302 +596965,72.144,61.448 +596966,71.212,59.76 +596967,70.18,58.035 +596968,69.032,56.272 +596969,70.763,61.422 +596970,69.88,59.732 +596971,68.901,58.007 +596972,67.81,56.243 +596973,69.381,61.395 +596974,68.548,59.705 +596975,67.622,57.979 +596976,66.588,56.216 +596977,67.998,61.366 +596978,67.216,59.677 +596979,66.344,57.952 +596980,65.368,56.19 +596981,66.615,61.336 +596982,65.884,59.649 +596983,65.066,57.925 +596984,64.148,56.166 +596985,65.232,61.305 +596986,64.551,59.62 +596987,63.788,57.899 +596988,62.929,56.143 +596989,63.847,61.272 +596990,63.219,59.59 +596991,62.51,57.874 +596992,61.71,56.121 +596993,62.462,61.238 +596994,61.886,59.56 +596995,61.233,57.848 +596996,60.492,56.101 +596997,61.077,61.202 +596998,60.553,59.53 +596999,59.956,57.824 +597000,59.275,56.082 +597001,59.691,61.165 +597002,59.22,59.499 +597003,58.679,57.799 +597004,58.058,56.065 +597005,58.305,61.127 +597006,57.887,59.468 +597007,57.402,57.775 +597008,56.842,56.049 +597009,56.918,61.087 +597010,56.554,59.436 +597011,56.126,57.752 +597012,55.625,56.034 +597013,55.531,61.046 +597014,55.22,59.404 +597015,54.849,57.729 +597016,54.41,56.021 +597017,54.144,61.004 +597018,53.887,59.371 +597019,53.573,57.706 +597020,53.194,56.009 +597021,52.756,60.96 +597022,52.554,59.338 +597023,52.297,57.684 +597024,51.979,55.998 +597025,51.368,60.915 +597026,51.22,59.304 +597027,51.021,57.663 +597028,50.764,55.989 +597029,49.98,60.868 +597030,49.887,59.27 +597031,49.745,57.641 +597032,49.549,55.981 +597033,48.592,60.821 +597034,48.553,59.236 +597035,48.469,57.62 +597036,48.334,55.975 +597037,47.203,60.772 +597038,47.22,59.201 +597039,47.193,57.6 +597040,47.119,55.97 +597041,45.815,60.721 +597042,45.886,59.165 +597043,45.917,57.58 +597044,45.904,55.966 +597045,44.426,60.67 +597046,44.553,59.129 +597047,44.641,57.561 +597048,44.689,55.963 +597049,43.038,60.617 +597050,43.219,59.093 +597051,43.366,57.541 +597052,43.474,55.962 +597053,41.649,60.563 +597054,41.886,59.056 +597055,42.09,57.523 +597056,42.259,55.962 +597057,40.26,60.507 +597058,40.552,59.019 +597059,40.814,57.504 +597060,41.043,55.963 +597061,38.872,60.45 +597062,39.219,58.982 +597063,39.538,57.487 +597064,39.827,55.966 +597065,37.483,60.392 +597066,37.886,58.944 +597067,38.263,57.469 +597068,38.611,55.969 +597069,36.095,60.333 +597070,36.553,58.905 +597071,36.987,57.452 +597072,37.394,55.974 +597073,34.707,60.273 +597074,35.22,58.866 +597075,35.711,57.435 +597076,36.177,55.98 +597077,33.319,60.211 +597078,33.888,58.827 +597079,34.435,57.419 +597080,34.96,55.988 +597081,31.931,60.148 +597082,32.555,58.787 +597083,33.159,57.403 +597084,33.742,55.996 +597085,30.544,60.084 +597086,31.223,58.747 +597087,31.882,57.387 +597088,32.523,56.006 +597089,29.157,60.019 +597090,29.89,58.707 +597091,30.606,57.372 +597092,31.304,56.017 +597093,27.771,59.953 +597094,28.558,58.666 +597095,29.329,57.357 +597096,30.084,56.028 +597097,26.385,59.886 +597098,27.226,58.625 +597099,28.053,57.343 +597100,28.863,56.041 +597101,24.999,59.817 +597102,25.895,58.583 +597103,26.776,57.329 +597104,27.642,56.055 +597105,23.614,59.747 +597106,24.563,58.541 +597107,25.499,57.315 +597108,26.42,56.07 +597109,22.229,59.677 +597110,23.232,58.499 +597111,24.221,57.301 +597112,25.197,56.086 +597113,20.845,59.605 +597114,21.901,58.456 +597115,22.944,57.288 +597116,23.973,56.103 +597117,19.462,59.532 +597118,20.571,58.413 +597119,21.666,57.275 +597120,22.748,56.121 +597121,18.079,59.459 +597122,19.241,58.369 +597123,20.388,57.263 +597124,21.523,56.14 +597125,16.697,59.384 +597126,17.911,58.326 +597127,19.11,57.251 +597128,20.296,56.16 +597129,15.315,59.309 +597130,16.581,58.282 +597131,17.832,57.239 +597132,19.068,56.181 +597133,13.935,59.232 +597134,15.252,58.237 +597135,16.553,57.227 +597136,17.839,56.202 +597137,12.555,59.155 +597138,13.923,58.193 +597139,15.274,57.216 +597140,16.609,56.224 +597141,11.176,59.076 +597142,12.594,58.148 +597143,13.994,57.204 +597144,15.378,56.248 +597145,9.7982,58.997 +597146,11.266,58.103 +597147,12.714,57.194 +597148,14.146,56.272 +597149,8.421,58.917 +597150,9.938,58.057 +597151,11.434,57.183 +597152,12.912,56.296 +597153,7.0449,58.836 +597154,8.6106,58.011 +597155,10.154,57.173 +597156,11.678,56.322 +597157,5.6698,58.755 +597158,7.2835,57.965 +597159,8.8733,57.162 +597160,10.442,56.348 +597161,4.2956,58.672 +597162,5.9569,57.919 +597163,7.5921,57.153 +597164,9.2043,56.375 +597165,2.9226,58.589 +597166,4.6307,57.872 +597167,6.3106,57.143 +597168,7.9655,56.402 +597169,1.5507,58.505 +597170,3.3049,57.826 +597171,5.0287,57.133 +597172,6.7254,56.43 +597173,0.17993,58.421 +597174,1.9796,57.779 +597175,3.7464,57.124 +597176,5.4839,56.459 +597177,358.81,58.336 +597178,0.65479,57.731 +597179,2.4637,57.115 +597180,4.241,56.488 +597181,357.44,58.25 +597182,359.33,57.684 +597183,1.1805,57.106 +597184,2.9965,56.517 +597185,356.07,58.164 +597186,358.01,57.636 +597187,359.9,57.097 +597188,1.7506,56.548 +597189,354.71,58.077 +597190,356.68,57.589 +597191,358.61,57.088 +597192,0.50321,56.578 +597193,353.34,57.989 +597194,355.36,57.541 +597195,357.33,57.08 +597196,359.25,56.609 +597197,351.98,57.901 +597198,354.04,57.492 +597199,356.04,57.072 +597200,358,56.641 +597201,350.62,57.813 +597202,352.72,57.444 +597203,354.76,57.063 +597204,356.75,56.672 +597205,349.26,57.724 +597206,351.4,57.396 +597207,353.47,57.055 +597208,355.5,56.705 +597209,347.9,57.635 +597210,350.07,57.347 +597211,352.19,57.047 +597212,354.24,56.737 +597213,346.54,57.545 +597214,348.75,57.299 +597215,350.9,57.039 +597216,352.99,56.77 +597217,345.19,57.455 +597218,347.43,57.25 +597219,349.61,57.031 +597220,351.73,56.802 +597221,343.83,57.365 +597222,346.12,57.201 +597223,348.32,57.024 +597224,350.47,56.836 +597225,342.48,57.275 +597226,344.8,57.152 +597227,347.04,57.016 +597228,349.2,56.869 +597229,341.13,57.184 +597230,343.48,57.103 +597231,345.75,57.008 +597232,347.94,56.902 +597233,339.78,57.093 +597234,342.16,57.054 +597235,344.46,57 +597236,346.68,56.936 +597237,338.43,57.002 +597238,340.85,57.004 +597239,343.17,56.993 +597240,345.41,56.969 +597241,337.09,56.91 +597242,339.53,56.955 +597243,341.88,56.985 +597244,344.14,57.003 +597245,335.74,56.819 +597246,338.21,56.906 +597247,340.59,56.978 +597248,342.87,57.036 +597249,334.4,56.728 +597250,336.9,56.857 +597251,339.29,56.97 +597252,341.6,57.07 +597253,333.06,56.636 +597254,335.59,56.807 +597255,338,56.962 +597256,340.32,57.104 +597257,331.72,56.544 +597258,334.27,56.758 +597259,336.71,56.955 +597260,339.05,57.137 +597261,330.39,56.453 +597262,332.96,56.709 +597263,335.42,56.947 +597264,337.77,57.17 +597265,329.05,56.361 +597266,331.65,56.659 +597267,334.12,56.939 +597268,336.49,57.203 +597269,327.72,56.27 +597270,330.34,56.61 +597271,332.83,56.931 +597272,335.21,57.236 +597273,326.39,56.179 +597274,329.03,56.561 +597275,331.53,56.923 +597276,333.92,57.269 +597277,325.06,56.088 +597278,327.72,56.512 +597279,330.24,56.916 +597280,332.64,57.302 +597281,323.73,55.997 +597282,326.41,56.463 +597283,328.94,56.907 +597284,331.35,57.334 +597285,322.41,55.906 +597286,325.1,56.414 +597287,327.64,56.899 +597288,330.06,57.366 +597289,321.08,55.816 +597290,323.79,56.365 +597291,326.35,56.891 +597292,328.77,57.397 +597293,319.76,55.726 +597294,322.48,56.316 +597295,325.05,56.883 +597296,327.48,57.428 +597297,318.44,55.636 +597298,321.18,56.267 +597299,323.75,56.874 +597300,326.19,57.459 +597301,317.13,55.547 +597302,319.87,56.219 +597303,322.45,56.865 +597304,324.89,57.49 +597305,315.81,55.458 +597306,318.57,56.17 +597307,321.15,56.856 +597308,323.59,57.519 +597309,314.5,55.369 +597310,317.26,56.122 +597311,319.85,56.847 +597312,322.29,57.549 +597313,313.19,55.281 +597314,315.96,56.074 +597315,318.55,56.838 +597316,320.99,57.578 +597317,311.88,55.194 +597318,314.66,56.026 +597319,317.25,56.829 +597320,319.69,57.606 +597321,310.57,55.107 +597322,313.35,55.978 +597323,315.95,56.819 +597324,318.38,57.633 +597325,309.27,55.02 +597326,312.05,55.93 +597327,314.64,56.809 +597328,317.08,57.661 +597329,307.97,54.934 +597330,310.75,55.883 +597331,313.34,56.799 +597332,315.77,57.687 +597333,306.67,54.849 +597334,309.45,55.836 +597335,312.04,56.789 +597336,314.46,57.713 +597337,305.37,54.765 +597338,308.15,55.789 +597339,310.73,56.779 +597340,313.14,57.738 +597341,304.08,54.681 +597342,306.85,55.742 +597343,309.43,56.768 +597344,311.83,57.762 +597345,302.78,54.598 +597346,305.56,55.696 +597347,308.12,56.757 +597348,310.51,57.785 +597349,301.49,54.515 +597350,304.26,55.649 +597351,306.82,56.746 +597352,309.2,57.808 +597353,300.2,54.434 +597354,302.96,55.603 +597355,305.51,56.734 +597356,307.88,57.83 +597357,298.92,54.353 +597358,301.67,55.558 +597359,304.2,56.722 +597360,306.56,57.851 +597361,297.63,54.273 +597362,300.37,55.512 +597363,302.89,56.71 +597364,305.23,57.872 +597365,296.35,54.194 +597366,299.08,55.467 +597367,301.58,56.698 +597368,303.91,57.891 +597369,295.07,54.116 +597370,297.78,55.422 +597371,300.28,56.685 +597372,302.58,57.909 +597373,293.79,54.039 +597374,296.49,55.378 +597375,298.97,56.672 +597376,301.25,57.927 +597377,292.52,53.963 +597378,295.2,55.333 +597379,297.66,56.658 +597380,299.93,57.943 +597381,291.24,53.888 +597382,293.91,55.289 +597383,296.35,56.645 +597384,298.59,57.959 +597385,289.97,53.814 +597386,292.62,55.246 +597387,295.03,56.631 +597388,297.26,57.973 +597389,288.7,53.741 +597390,291.33,55.202 +597391,293.72,56.616 +597392,295.93,57.987 +597393,287.44,53.669 +597394,290.04,55.16 +597395,292.41,56.601 +597396,294.59,57.999 +597397,286.17,53.598 +597398,288.75,55.117 +597399,291.1,56.586 +597400,293.25,58.011 +597401,284.91,53.528 +597402,287.46,55.075 +597403,289.78,56.571 +597404,291.91,58.021 +597405,283.65,53.46 +597406,286.17,55.033 +597407,288.47,56.555 +597408,290.57,58.03 +597409,282.39,53.393 +597410,284.89,54.992 +597411,287.16,56.538 +597412,289.23,58.038 +597413,281.13,53.326 +597414,283.6,54.951 +597415,285.84,56.522 +597416,287.89,58.045 +597417,279.88,53.262 +597418,282.32,54.91 +597419,284.52,56.505 +597420,286.54,58.051 +597421,278.63,53.198 +597422,281.03,54.87 +597423,283.21,56.487 +597424,285.2,58.055 +597425,277.38,53.136 +597426,279.75,54.83 +597427,281.89,56.469 +597428,283.85,58.058 +597429,276.13,53.074 +597430,278.47,54.791 +597431,280.58,56.451 +597432,282.5,58.06 +597433,274.88,53.015 +597434,277.18,54.752 +597435,279.26,56.432 +597436,281.15,58.061 +597437,273.64,52.956 +597438,275.9,54.713 +597439,277.94,56.413 +597440,279.8,58.061 +597441,272.39,52.899 +597442,274.62,54.675 +597443,276.62,56.393 +597444,278.44,58.059 +597445,271.15,52.844 +597446,273.34,54.637 +597447,275.3,56.373 +597448,277.09,58.056 +597449,269.91,52.789 +597450,272.06,54.6 +597451,273.98,56.352 +597452,275.73,58.051 +597453,268.68,52.736 +597454,270.78,54.563 +597455,272.67,56.331 +597456,274.38,58.046 +597457,267.44,52.685 +597458,269.5,54.527 +597459,271.35,56.31 +597460,273.02,58.039 +597461,266.21,52.635 +597462,268.22,54.491 +597463,270.03,56.288 +597464,271.66,58.03 +597465,264.97,52.586 +597466,266.94,54.456 +597467,268.7,56.265 +597468,270.3,58.02 +597469,263.74,52.539 +597470,265.66,54.421 +597471,267.38,56.242 +597472,268.94,58.009 +597473,262.51,52.494 +597474,264.39,54.386 +597475,266.06,56.219 +597476,267.57,57.997 +597477,261.29,52.45 +597478,263.11,54.353 +597479,264.74,56.195 +597480,266.21,57.983 +597481,260.06,52.407 +597482,261.83,54.319 +597483,263.42,56.171 +597484,264.84,57.967 +597485,258.84,52.366 +597486,260.56,54.286 +597487,262.1,56.146 +597488,263.48,57.951 +597489,257.61,52.326 +597490,259.28,54.254 +597491,260.77,56.121 +597492,262.11,57.933 +597493,256.39,52.288 +597494,258.01,54.222 +597495,259.45,56.095 +597496,260.74,57.913 +597497,255.17,52.251 +597498,256.74,54.19 +597499,258.13,56.069 +597500,259.37,57.892 +597501,253.95,52.216 +597502,255.46,54.159 +597503,256.8,56.042 +597504,258,57.87 +597505,252.73,52.183 +597506,254.19,54.129 +597507,255.48,56.015 +597508,256.63,57.846 +597509,251.52,52.151 +597510,252.92,54.099 +597511,254.15,55.987 +597512,255.26,57.82 +597513,250.3,52.121 +597514,251.64,54.069 +597515,252.83,55.958 +597516,253.89,57.793 +597517,249.09,52.092 +597518,250.37,54.04 +597519,251.51,55.93 +597520,252.51,57.765 +597521,247.87,52.065 +597522,249.1,54.012 +597523,250.18,55.9 +597524,251.14,57.735 +597525,246.66,52.039 +597526,247.83,53.984 +597527,248.86,55.871 +597528,249.77,57.704 +597529,245.45,52.015 +597530,246.56,53.956 +597531,247.53,55.84 +597532,248.39,57.672 +597533,244.24,51.992 +597534,245.29,53.929 +597535,246.2,55.809 +597536,247.01,57.638 +597537,243.03,51.971 +597538,244.01,53.902 +597539,244.88,55.778 +597540,245.64,57.602 +597541,241.82,51.952 +597542,242.74,53.876 +597543,243.55,55.746 +597544,244.26,57.565 +597545,240.61,51.934 +597546,241.47,53.851 +597547,242.23,55.714 +597548,242.88,57.526 +597549,239.4,51.917 +597550,240.2,53.826 +597551,240.9,55.681 +597552,241.5,57.486 +597553,238.19,51.902 +597554,238.94,53.801 +597555,239.57,55.648 +597556,240.12,57.445 +597557,236.98,51.889 +597558,237.67,53.777 +597559,238.25,55.614 +597560,238.74,57.402 +597561,235.78,51.877 +597562,236.4,53.754 +597563,236.92,55.58 +597564,237.36,57.358 +597565,234.57,51.867 +597566,235.13,53.731 +597567,235.59,55.545 +597568,235.98,57.312 +597569,233.37,51.858 +597570,233.86,53.708 +597571,234.27,55.51 +597572,234.6,57.265 +597573,232.16,51.85 +597574,232.59,53.686 +597575,232.94,55.474 +597576,233.22,57.216 +597577,230.96,51.845 +597578,231.32,53.665 +597579,231.61,55.438 +597580,231.84,57.166 +597581,229.75,51.84 +597582,230.05,53.644 +597583,230.29,55.401 +597584,230.46,57.115 +597585,228.55,51.837 +597586,228.79,53.623 +597587,228.96,55.364 +597588,229.08,57.062 +597589,227.34,51.836 +597590,227.52,53.603 +597591,227.63,55.326 +597592,227.7,57.007 +597593,226.14,51.836 +597594,226.25,53.583 +597595,226.31,55.288 +597596,226.31,56.952 +597597,224.93,51.837 +597598,224.98,53.564 +597599,224.98,55.249 +597600,224.93,56.895 +597601,223.73,51.84 +597602,223.71,53.545 +597603,223.65,55.21 +597604,223.55,56.836 +597605,222.52,51.844 +597606,222.45,53.527 +597607,222.33,55.171 +597608,222.17,56.776 +597609,221.32,51.849 +597610,221.18,53.509 +597611,221,55.131 +597612,220.79,56.715 +597613,220.11,51.856 +597614,219.91,53.492 +597615,219.67,55.09 +597616,219.4,56.653 +597617,218.91,51.864 +597618,218.64,53.475 +597619,218.35,55.05 +597620,218.02,56.589 +597621,217.7,51.874 +597622,217.38,53.458 +597623,217.02,55.008 +597624,216.64,56.524 +597625,216.49,51.884 +597626,216.11,53.442 +597627,215.7,54.967 +597628,215.26,56.457 +597629,215.29,51.896 +597630,214.84,53.427 +597631,214.37,54.924 +597632,213.88,56.39 +597633,214.08,51.909 +597634,213.57,53.411 +597635,213.04,54.882 +597636,212.5,56.321 +597637,212.87,51.924 +597638,212.3,53.396 +597639,211.72,54.839 +597640,211.11,56.251 +597641,211.66,51.939 +597642,211.04,53.382 +597643,210.39,54.795 +597644,209.73,56.179 +597645,210.45,51.956 +597646,209.77,53.368 +597647,209.07,54.752 +597648,208.35,56.107 +597649,209.24,51.974 +597650,208.5,53.354 +597651,207.74,54.707 +597652,206.97,56.033 +597653,208.03,51.993 +597654,207.23,53.341 +597655,206.42,54.663 +597656,205.59,55.958 +597657,206.82,52.013 +597658,205.96,53.328 +597659,205.09,54.618 +597660,204.21,55.882 +597661,205.61,52.035 +597662,204.69,53.315 +597663,203.77,54.572 +597664,202.84,55.805 +597665,204.4,52.057 +597666,203.42,53.303 +597667,202.44,54.527 +597668,201.46,55.727 +597669,203.18,52.08 +597670,202.15,53.291 +597671,201.12,54.481 +597672,200.08,55.647 +597673,201.97,52.104 +597674,200.89,53.28 +597675,199.8,54.434 +597676,198.7,55.567 +597677,200.75,52.129 +597678,199.62,53.269 +597679,198.47,54.388 +597680,197.33,55.486 +597681,199.53,52.156 +597682,198.35,53.258 +597683,197.15,54.341 +597684,195.95,55.403 +597685,198.32,52.183 +597686,197.08,53.247 +597687,195.83,54.293 +597688,194.58,55.32 +597689,197.1,52.21 +597690,195.8,53.237 +597691,194.51,54.245 +597692,193.2,55.235 +597693,195.88,52.239 +597694,194.53,53.227 +597695,193.18,54.198 +597696,191.83,55.15 +597697,194.66,52.269 +597698,193.26,53.217 +597699,191.86,54.149 +597700,190.46,55.064 +597701,193.43,52.299 +597702,191.99,53.208 +597703,190.54,54.101 +597704,189.08,54.977 +597705,192.21,52.33 +597706,190.72,53.198 +597707,189.22,54.052 +597708,187.71,54.889 +597709,190.98,52.362 +597710,189.45,53.189 +597711,187.9,54.003 +597712,186.34,54.8 +597713,189.76,52.394 +597714,188.17,53.181 +597715,186.58,53.953 +597716,184.98,54.711 +597717,188.53,52.427 +597718,186.9,53.172 +597719,185.26,53.904 +597720,183.61,54.621 +597721,187.3,52.461 +597722,185.63,53.164 +597723,183.94,53.854 +597724,182.24,54.53 +597725,186.07,52.495 +597726,184.36,53.156 +597727,182.63,53.804 +597728,180.88,54.438 +597729,184.84,52.53 +597730,183.08,53.148 +597731,181.31,53.754 +597732,179.51,54.345 +597733,183.6,52.565 +597734,181.81,53.14 +597735,179.99,53.703 +597736,178.15,54.252 +597737,182.37,52.601 +597738,180.53,53.133 +597739,178.67,53.653 +597740,176.79,54.159 +597741,181.13,52.637 +597742,179.26,53.125 +597743,177.36,53.602 +597744,175.43,54.065 +597745,179.89,52.674 +597746,177.98,53.118 +597747,176.04,53.551 +597748,174.07,53.97 +597749,178.65,52.711 +597750,176.7,53.111 +597751,174.73,53.5 +597752,172.71,53.875 +597753,177.41,52.748 +597754,175.43,53.104 +597755,173.41,53.448 +597756,171.35,53.779 +597757,176.16,52.786 +597758,174.15,53.098 +597759,172.1,53.397 +597760,170,53.683 +597761,174.92,52.824 +597762,172.87,53.091 +597763,170.78,53.346 +597764,168.64,53.586 +597765,173.67,52.862 +597766,171.6,53.084 +597767,169.47,53.294 +597768,167.29,53.489 +597769,172.42,52.901 +597770,170.32,53.078 +597771,168.16,53.242 +597772,165.94,53.392 +597773,171.17,52.939 +597774,169.04,53.071 +597775,166.84,53.19 +597776,164.59,53.295 +597777,169.92,52.978 +597778,167.76,53.065 +597779,165.53,53.139 +597780,163.24,53.197 +597781,168.67,53.017 +597782,166.48,53.059 +597783,164.22,53.087 +597784,161.9,53.099 +597785,167.41,53.056 +597786,165.2,53.052 +597787,162.91,53.035 +597788,160.55,53 +597789,166.16,53.094 +597790,163.92,53.046 +597791,161.6,52.983 +597792,159.21,52.902 +597793,164.9,53.133 +597794,162.63,53.04 +597795,160.29,52.931 +597796,157.87,52.803 +597797,163.64,53.172 +597798,161.35,53.033 +597799,158.99,52.879 +597800,156.53,52.705 +597801,162.37,53.211 +597802,160.07,53.027 +597803,157.68,52.826 +597804,155.19,52.606 +597805,161.11,53.249 +597806,158.79,53.021 +597807,156.37,52.774 +597808,153.85,52.508 +597809,159.84,53.288 +597810,157.5,53.014 +597811,155.07,52.722 +597812,152.52,52.409 +597813,158.57,53.326 +597814,156.22,53.008 +597815,153.76,52.67 +597816,151.19,52.31 +597817,157.3,53.364 +597818,154.93,53.002 +597819,152.46,52.619 +597820,149.86,52.212 +597821,156.03,53.402 +597822,153.65,52.995 +597823,151.15,52.567 +597824,148.53,52.113 +597825,154.76,53.44 +597826,152.36,52.989 +597827,149.85,52.515 +597828,147.2,52.015 +597829,153.48,53.477 +597830,151.07,52.982 +597831,148.55,52.463 +597832,145.88,51.917 +597833,152.21,53.514 +597834,149.79,52.975 +597835,147.24,52.412 +597836,144.56,51.82 +597837,150.93,53.55 +597838,148.5,52.968 +597839,145.94,52.36 +597840,143.24,51.722 +597841,149.65,53.586 +597842,147.21,52.961 +597843,144.64,52.309 +597844,141.92,51.625 +597845,148.36,53.622 +597846,145.92,52.954 +597847,143.34,52.257 +597848,140.6,51.529 +597849,147.08,53.657 +597850,144.63,52.947 +597851,142.04,52.206 +597852,139.29,51.432 +597853,145.79,53.692 +597854,143.34,52.939 +597855,140.75,52.155 +597856,137.98,51.336 +597857,144.5,53.726 +597858,142.05,52.932 +597859,139.45,52.105 +597860,136.67,51.241 +597861,143.21,53.759 +597862,140.76,52.924 +597863,138.15,52.054 +597864,135.36,51.146 +597865,141.92,53.792 +597866,139.47,52.916 +597867,136.86,52.004 +597868,134.05,51.052 +597869,140.63,53.825 +597870,138.18,52.907 +597871,135.56,51.954 +597872,132.75,50.958 +597873,139.33,53.856 +597874,136.88,52.899 +597875,134.27,51.904 +597876,131.45,50.865 +597877,138.03,53.887 +597878,135.59,52.89 +597879,132.97,51.854 +597880,130.15,50.773 +597881,136.73,53.917 +597882,134.3,52.881 +597883,131.68,51.805 +597884,128.85,50.681 +597885,135.43,53.946 +597886,133,52.872 +597887,130.39,51.755 +597888,127.56,50.59 +597889,134.13,53.975 +597890,131.7,52.863 +597891,129.1,51.706 +597892,126.27,50.5 +597893,132.83,54.003 +597894,130.41,52.853 +597895,127.81,51.658 +597896,124.98,50.411 +597897,131.52,54.03 +597898,129.11,52.843 +597899,126.52,51.609 +597900,123.69,50.322 +597901,130.21,54.056 +597902,127.82,52.833 +597903,125.23,51.561 +597904,122.4,50.235 +597905,128.9,54.081 +597906,126.52,52.822 +597907,123.94,51.514 +597908,121.12,50.148 +597909,127.59,54.105 +597910,125.22,52.811 +597911,122.65,51.466 +597912,119.84,50.062 +597913,126.28,54.128 +597914,123.92,52.8 +597915,121.36,51.419 +597916,118.56,49.978 +597917,124.96,54.15 +597918,122.62,52.789 +597919,120.08,51.372 +597920,117.28,49.894 +597921,123.64,54.171 +597922,121.32,52.777 +597923,118.79,51.326 +597924,116.01,49.811 +597925,122.33,54.192 +597926,120.02,52.765 +597927,117.51,51.28 +597928,114.74,49.73 +597929,121.01,54.211 +597930,118.72,52.752 +597931,116.22,51.234 +597932,113.47,49.649 +597933,119.68,54.229 +597934,117.42,52.739 +597935,114.94,51.189 +597936,112.2,49.57 +597937,118.36,54.246 +597938,116.12,52.726 +597939,113.66,51.144 +597940,110.94,49.492 +597941,117.04,54.261 +597942,114.81,52.712 +597943,112.38,51.1 +597944,109.67,49.415 +597945,115.71,54.276 +597946,113.51,52.698 +597947,111.1,51.056 +597948,108.41,49.339 +597949,114.38,54.289 +597950,112.21,52.684 +597951,109.82,51.012 +597952,107.16,49.265 +597953,113.05,54.302 +597954,110.9,52.669 +597955,108.54,50.969 +597956,105.9,49.192 +597957,111.72,54.313 +597958,109.6,52.653 +597959,107.26,50.926 +597960,104.65,49.12 +597961,110.39,54.322 +597962,108.29,52.638 +597963,105.98,50.884 +597964,103.39,49.05 +597965,109.05,54.331 +597966,106.99,52.622 +597967,104.7,50.842 +597968,102.15,48.981 +597969,107.72,54.338 +597970,105.68,52.605 +597971,103.43,50.8 +597972,100.9,48.914 +597973,106.38,54.344 +597974,104.37,52.588 +597975,102.15,50.759 +597976,99.653,48.847 +597977,105.04,54.348 +597978,103.07,52.571 +597979,100.87,50.719 +597980,98.41,48.783 +597981,103.7,54.352 +597982,101.76,52.553 +597983,99.599,50.679 +597984,97.169,48.72 +597985,102.36,54.353 +597986,100.45,52.534 +597987,98.325,50.639 +597988,95.93,48.658 +597989,101.02,54.354 +597990,99.141,52.515 +597991,97.052,50.6 +597992,94.694,48.598 +597993,99.674,54.353 +597994,97.833,52.496 +597995,95.779,50.562 +597996,93.459,48.539 +597997,98.329,54.351 +597998,96.523,52.476 +597999,94.507,50.524 +598000,92.226,48.482 +598001,96.982,54.347 +598002,95.213,52.456 +598003,93.236,50.486 +598004,90.995,48.427 +598005,95.635,54.342 +598006,93.903,52.435 +598007,91.965,50.45 +598008,89.766,48.373 +598009,94.286,54.335 +598010,92.593,52.414 +598011,90.695,50.413 +598012,88.539,48.321 +598013,92.936,54.327 +598014,91.282,52.392 +598015,89.425,50.377 +598016,87.314,48.27 +598017,91.585,54.317 +598018,89.97,52.37 +598019,88.156,50.342 +598020,86.091,48.222 +598021,90.232,54.306 +598022,88.658,52.347 +598023,86.888,50.307 +598024,84.869,48.174 +598025,88.879,54.294 +598026,87.346,52.324 +598027,85.62,50.273 +598028,83.649,48.129 +598029,87.525,54.28 +598030,86.034,52.3 +598031,84.353,50.239 +598032,82.431,48.085 +598033,86.169,54.264 +598034,84.721,52.276 +598035,83.086,50.206 +598036,81.214,48.043 +598037,84.813,54.247 +598038,83.408,52.251 +598039,81.819,50.173 +598040,79.999,48.002 +598041,83.455,54.229 +598042,82.095,52.226 +598043,80.554,50.141 +598044,78.786,47.964 +598045,82.097,54.208 +598046,80.781,52.2 +598047,79.288,50.11 +598048,77.574,47.927 +598049,80.738,54.187 +598050,79.467,52.174 +598051,78.024,50.079 +598052,76.363,47.891 +598053,79.377,54.164 +598054,78.153,52.147 +598055,76.759,50.049 +598056,75.154,47.858 +598057,78.016,54.139 +598058,76.838,52.119 +598059,75.495,50.019 +598060,73.946,47.826 +598061,76.654,54.112 +598062,75.524,52.092 +598063,74.232,49.99 +598064,72.739,47.796 +598065,75.292,54.085 +598066,74.209,52.063 +598067,72.969,49.961 +598068,71.534,47.768 +598069,73.928,54.055 +598070,72.893,52.034 +598071,71.706,49.933 +598072,70.33,47.741 +598073,72.564,54.024 +598074,71.578,52.005 +598075,70.444,49.906 +598076,69.127,47.717 +598077,71.199,53.991 +598078,70.262,51.975 +598079,69.182,49.879 +598080,67.925,47.694 +598081,69.834,53.957 +598082,68.946,51.944 +598083,67.921,49.852 +598084,66.724,47.673 +598085,68.467,53.921 +598086,67.63,51.913 +598087,66.66,49.827 +598088,65.524,47.653 +598089,67.101,53.884 +598090,66.314,51.881 +598091,65.399,49.801 +598092,64.324,47.635 +598093,65.733,53.845 +598094,64.998,51.849 +598095,64.138,49.777 +598096,63.126,47.619 +598097,64.365,53.805 +598098,63.681,51.816 +598099,62.878,49.753 +598100,61.928,47.605 +598101,62.997,53.763 +598102,62.365,51.783 +598103,61.618,49.729 +598104,60.732,47.593 +598105,61.628,53.719 +598106,61.048,51.749 +598107,60.359,49.706 +598108,59.536,47.582 +598109,60.259,53.674 +598110,59.731,51.715 +598111,59.1,49.684 +598112,58.34,47.573 +598113,58.889,53.627 +598114,58.415,51.68 +598115,57.84,49.662 +598116,57.145,47.566 +598117,57.519,53.579 +598118,57.098,51.645 +598119,56.582,49.641 +598120,55.95,47.56 +598121,56.149,53.529 +598122,55.781,51.609 +598123,55.323,49.62 +598124,54.756,47.556 +598125,54.778,53.478 +598126,54.464,51.573 +598127,54.064,49.6 +598128,53.563,47.554 +598129,53.407,53.425 +598130,53.147,51.536 +598131,52.806,49.581 +598132,52.369,47.553 +598133,52.036,53.371 +598134,51.83,51.498 +598135,51.548,49.562 +598136,51.176,47.554 +598137,50.665,53.315 +598138,50.512,51.461 +598139,50.29,49.543 +598140,49.983,47.557 +598141,49.294,53.258 +598142,49.195,51.422 +598143,49.032,49.525 +598144,48.79,47.561 +598145,47.922,53.199 +598146,47.878,51.383 +598147,47.774,49.508 +598148,47.597,47.567 +598149,46.55,53.138 +598150,46.561,51.344 +598151,46.516,49.491 +598152,46.404,47.574 +598153,45.179,53.077 +598154,45.245,51.304 +598155,45.259,49.475 +598156,45.211,47.583 +598157,43.807,53.013 +598158,43.928,51.264 +598159,44.001,49.459 +598160,44.018,47.594 +598161,42.435,52.949 +598162,42.611,51.223 +598163,42.744,49.443 +598164,42.825,47.606 +598165,41.063,52.883 +598166,41.294,51.182 +598167,41.486,49.429 +598168,41.632,47.619 +598169,39.692,52.815 +598170,39.978,51.14 +598171,40.229,49.414 +598172,40.438,47.634 +598173,38.321,52.746 +598174,38.662,51.098 +598175,38.971,49.4 +598176,39.244,47.65 +598177,36.949,52.676 +598178,37.345,51.055 +598179,37.714,49.387 +598180,38.049,47.668 +598181,35.578,52.604 +598182,36.029,51.012 +598183,36.456,49.374 +598184,36.854,47.687 +598185,34.207,52.531 +598186,34.713,50.969 +598187,35.198,49.362 +598188,35.659,47.708 +598189,32.837,52.457 +598190,33.398,50.925 +598191,33.941,49.35 +598192,34.463,47.73 +598193,31.467,52.381 +598194,32.082,50.88 +598195,32.683,49.338 +598196,33.266,47.753 +598197,30.097,52.304 +598198,30.767,50.836 +598199,31.425,49.327 +598200,32.069,47.778 +598201,28.728,52.226 +598202,29.452,50.791 +598203,30.167,49.317 +598204,30.871,47.803 +598205,27.359,52.147 +598206,28.137,50.745 +598207,28.909,49.306 +598208,29.672,47.83 +598209,25.99,52.066 +598210,26.822,50.699 +598211,27.65,49.297 +598212,28.473,47.858 +598213,24.622,51.984 +598214,25.508,50.653 +598215,26.392,49.287 +598216,27.272,47.888 +598217,23.255,51.901 +598218,24.194,50.606 +598219,25.133,49.278 +598220,26.071,47.918 +598221,21.888,51.817 +598222,22.881,50.559 +598223,23.874,49.27 +598224,24.868,47.95 +598225,20.521,51.732 +598226,21.567,50.511 +598227,22.615,49.262 +598228,23.665,47.982 +598229,19.156,51.646 +598230,20.254,50.464 +598231,21.356,49.254 +598232,22.461,48.016 +598233,17.791,51.558 +598234,18.942,50.416 +598235,20.096,49.246 +598236,21.255,48.051 +598237,16.427,51.47 +598238,17.629,50.367 +598239,18.836,49.239 +598240,20.048,48.086 +598241,15.063,51.38 +598242,16.317,50.318 +598243,17.576,49.232 +598244,18.841,48.123 +598245,13.7,51.29 +598246,15.006,50.269 +598247,16.316,49.226 +598248,17.632,48.16 +598249,12.339,51.198 +598250,13.695,50.22 +598251,15.055,49.22 +598252,16.421,48.199 +598253,10.978,51.106 +598254,12.384,50.17 +598255,13.794,49.214 +598256,15.21,48.238 +598257,9.6177,51.013 +598258,11.073,50.121 +598259,12.533,49.209 +598260,13.997,48.278 +598261,8.2587,50.919 +598262,9.7636,50.07 +598263,11.271,49.203 +598264,12.782,48.319 +598265,6.9006,50.824 +598266,8.4542,50.02 +598267,10.009,49.198 +598268,11.566,48.36 +598269,5.5436,50.728 +598270,7.1452,49.969 +598271,8.7467,49.194 +598272,10.349,48.402 +598273,4.1876,50.631 +598274,5.8367,49.918 +598275,7.484,49.189 +598276,9.1306,48.445 +598277,2.8327,50.534 +598278,4.5287,49.867 +598279,6.2209,49.185 +598280,7.9105,48.488 +598281,1.479,50.436 +598282,3.2212,49.816 +598283,4.9573,49.181 +598284,6.6888,48.532 +598285,0.12648,50.337 +598286,1.9142,49.765 +598287,3.6934,49.177 +598288,5.4655,48.577 +598289,358.78,50.238 +598290,0.60776,49.713 +598291,2.4291,49.174 +598292,4.2407,48.621 +598293,357.43,50.138 +598294,359.3,49.661 +598295,1.1643,49.17 +598296,3.0143,48.667 +598297,356.08,50.037 +598298,358,49.609 +598299,359.9,49.167 +598300,1.7862,48.713 +598301,354.73,49.936 +598302,356.69,49.557 +598303,358.63,49.164 +598304,0.55644,48.759 +598305,353.38,49.834 +598306,355.39,49.505 +598307,357.37,49.161 +598308,359.33,48.805 +598309,352.04,49.732 +598310,354.08,49.452 +598311,356.1,49.158 +598312,358.09,48.852 +598313,350.69,49.63 +598314,352.78,49.4 +598315,354.83,49.156 +598316,356.86,48.899 +598317,349.35,49.527 +598318,351.48,49.347 +598319,353.57,49.153 +598320,355.62,48.947 +598321,348.01,49.424 +598322,350.18,49.295 +598323,352.3,49.151 +598324,354.38,48.994 +598325,346.67,49.32 +598326,348.88,49.242 +598327,351.03,49.148 +598328,353.14,49.042 +598329,345.34,49.216 +598330,347.57,49.189 +598331,349.76,49.146 +598332,351.9,49.09 +598333,344,49.112 +598334,346.27,49.136 +598335,348.49,49.144 +598336,350.66,49.138 +598337,342.67,49.008 +598338,344.98,49.083 +598339,347.22,49.142 +598340,349.41,49.186 +598341,341.33,48.904 +598342,343.68,49.031 +598343,345.95,49.14 +598344,348.16,49.233 +598345,340,48.799 +598346,342.38,48.978 +598347,344.68,49.138 +598348,346.91,49.281 +598349,338.68,48.694 +598350,341.08,48.925 +598351,343.41,49.136 +598352,345.66,49.329 +598353,337.35,48.59 +598354,339.78,48.872 +598355,342.14,49.134 +598356,344.41,49.377 +598357,336.02,48.485 +598358,338.49,48.819 +598359,340.86,49.132 +598360,343.16,49.424 +598361,334.7,48.38 +598362,337.19,48.767 +598363,339.59,49.129 +598364,341.9,49.472 +598365,333.38,48.276 +598366,335.9,48.714 +598367,338.32,49.127 +598368,340.64,49.519 +598369,332.06,48.172 +598370,334.61,48.661 +598371,337.04,49.125 +598372,339.38,49.565 +598373,330.74,48.067 +598374,333.31,48.609 +598375,335.77,49.123 +598376,338.12,49.612 +598377,329.42,47.963 +598378,332.02,48.557 +598379,334.49,49.12 +598380,336.85,49.658 +598381,328.11,47.859 +598382,330.73,48.504 +598383,333.22,49.118 +598384,335.59,49.704 +598385,326.8,47.756 +598386,329.44,48.452 +598387,331.94,49.115 +598388,334.32,49.749 +598389,325.49,47.653 +598390,328.15,48.4 +598391,330.66,49.113 +598392,333.05,49.794 +598393,324.18,47.55 +598394,326.86,48.349 +598395,329.38,49.11 +598396,331.78,49.839 +598397,322.88,47.448 +598398,325.57,48.297 +598399,328.1,49.107 +598400,330.51,49.883 +598401,321.57,47.346 +598402,324.28,48.246 +598403,326.83,49.104 +598404,329.23,49.926 +598405,320.27,47.245 +598406,322.99,48.194 +598407,325.55,49.101 +598408,327.95,49.969 +598409,318.97,47.144 +598410,321.71,48.143 +598411,324.27,49.097 +598412,326.67,50.011 +598413,317.67,47.044 +598414,320.42,48.093 +598415,322.99,49.094 +598416,325.39,50.052 +598417,316.38,46.944 +598418,319.14,48.042 +598419,321.7,49.09 +598420,324.11,50.093 +598421,315.09,46.845 +598422,317.85,47.992 +598423,320.42,49.086 +598424,322.83,50.133 +598425,313.8,46.747 +598426,316.57,47.942 +598427,319.14,49.082 +598428,321.54,50.173 +598429,312.51,46.65 +598430,315.29,47.892 +598431,317.86,49.077 +598432,320.25,50.211 +598433,311.22,46.553 +598434,314.01,47.843 +598435,316.57,49.072 +598436,318.96,50.249 +598437,309.94,46.457 +598438,312.73,47.794 +598439,315.29,49.067 +598440,317.67,50.286 +598441,308.66,46.362 +598442,311.45,47.745 +598443,314,49.062 +598444,316.38,50.322 +598445,307.38,46.268 +598446,310.17,47.697 +598447,312.72,49.057 +598448,315.08,50.357 +598449,306.1,46.175 +598450,308.89,47.649 +598451,311.43,49.051 +598452,313.78,50.391 +598453,304.83,46.084 +598454,307.61,47.601 +598455,310.15,49.045 +598456,312.49,50.424 +598457,303.55,45.993 +598458,306.33,47.553 +598459,308.86,49.038 +598460,311.18,50.456 +598461,302.28,45.903 +598462,305.06,47.507 +598463,307.57,49.031 +598464,309.88,50.487 +598465,301.02,45.814 +598466,303.78,47.46 +598467,306.28,49.024 +598468,308.58,50.517 +598469,299.75,45.727 +598470,302.51,47.414 +598471,305,49.017 +598472,307.27,50.546 +598473,298.49,45.64 +598474,301.23,47.368 +598475,303.71,49.009 +598476,305.97,50.574 +598477,297.23,45.555 +598478,299.96,47.323 +598479,302.42,49.001 +598480,304.66,50.601 +598481,295.97,45.471 +598482,298.69,47.278 +598483,301.13,48.992 +598484,303.35,50.626 +598485,294.71,45.389 +598486,297.42,47.234 +598487,299.84,48.983 +598488,302.03,50.651 +598489,293.46,45.308 +598490,296.14,47.19 +598491,298.55,48.974 +598492,300.72,50.674 +598493,292.21,45.228 +598494,294.87,47.146 +598495,297.25,48.964 +598496,299.41,50.696 +598497,290.96,45.15 +598498,293.61,47.103 +598499,295.96,48.954 +598500,298.09,50.717 +598501,289.71,45.073 +598502,292.34,47.061 +598503,294.67,48.943 +598504,296.77,50.736 +598505,288.47,44.997 +598506,291.07,47.019 +598507,293.38,48.932 +598508,295.45,50.754 +598509,287.22,44.924 +598510,289.8,46.977 +598511,292.08,48.921 +598512,294.13,50.771 +598513,285.98,44.851 +598514,288.54,46.936 +598515,290.79,48.909 +598516,292.81,50.786 +598517,284.75,44.781 +598518,287.27,46.896 +598519,289.49,48.897 +598520,291.48,50.8 +598521,283.51,44.711 +598522,286,46.856 +598523,288.2,48.884 +598524,290.16,50.813 +598525,282.28,44.644 +598526,284.74,46.817 +598527,286.9,48.871 +598528,288.83,50.824 +598529,281.05,44.578 +598530,283.48,46.778 +598531,285.61,48.857 +598532,287.5,50.834 +598533,279.82,44.514 +598534,282.21,46.74 +598535,284.31,48.843 +598536,286.17,50.842 +598537,278.59,44.452 +598538,280.95,46.702 +598539,283.01,48.828 +598540,284.84,50.849 +598541,277.37,44.391 +598542,279.69,46.665 +598543,281.72,48.813 +598544,283.51,50.854 +598545,276.14,44.332 +598546,278.43,46.628 +598547,280.42,48.797 +598548,282.18,50.858 +598549,274.92,44.275 +598550,277.17,46.593 +598551,279.12,48.781 +598552,280.84,50.86 +598553,273.7,44.22 +598554,275.91,46.557 +598555,277.82,48.764 +598556,279.51,50.861 +598557,272.49,44.166 +598558,274.65,46.523 +598559,276.52,48.747 +598560,278.17,50.86 +598561,271.27,44.115 +598562,273.39,46.488 +598563,275.22,48.729 +598564,276.83,50.858 +598565,270.06,44.065 +598566,272.13,46.455 +598567,273.92,48.711 +598568,275.49,50.854 +598569,268.85,44.017 +598570,270.88,46.422 +598571,272.62,48.692 +598572,274.15,50.849 +598573,267.64,43.971 +598574,269.62,46.39 +598575,271.32,48.673 +598576,272.81,50.842 +598577,266.43,43.927 +598578,268.36,46.358 +598579,270.02,48.653 +598580,271.47,50.833 +598581,265.23,43.885 +598582,267.11,46.328 +598583,268.72,48.633 +598584,270.13,50.823 +598585,264.02,43.845 +598586,265.85,46.297 +598587,267.42,48.612 +598588,268.78,50.811 +598589,262.82,43.807 +598590,264.6,46.268 +598591,266.12,48.591 +598592,267.44,50.797 +598593,261.62,43.771 +598594,263.35,46.239 +598595,264.82,48.569 +598596,266.09,50.782 +598597,260.42,43.737 +598598,262.09,46.21 +598599,263.51,48.546 +598600,264.75,50.765 +598601,259.22,43.705 +598602,260.84,46.183 +598603,262.21,48.523 +598604,263.4,50.747 +598605,258.02,43.675 +598606,259.59,46.156 +598607,260.91,48.499 +598608,262.05,50.727 +598609,256.83,43.646 +598610,258.33,46.129 +598611,259.61,48.475 +598612,260.7,50.705 +598613,255.63,43.62 +598614,257.08,46.103 +598615,258.3,48.45 +598616,259.35,50.682 +598617,254.44,43.596 +598618,255.83,46.078 +598619,257,48.425 +598620,258,50.656 +598621,253.25,43.574 +598622,254.58,46.054 +598623,255.7,48.399 +598624,256.65,50.63 +598625,252.06,43.554 +598626,253.33,46.03 +598627,254.39,48.373 +598628,255.3,50.601 +598629,250.87,43.535 +598630,252.08,46.007 +598631,253.09,48.346 +598632,253.95,50.571 +598633,249.68,43.519 +598634,250.83,45.985 +598635,251.79,48.318 +598636,252.59,50.539 +598637,248.49,43.505 +598638,249.58,45.963 +598639,250.48,48.29 +598640,251.24,50.506 +598641,247.31,43.493 +598642,248.33,45.942 +598643,249.18,48.262 +598644,249.89,50.47 +598645,246.12,43.483 +598646,247.08,45.921 +598647,247.87,48.232 +598648,248.53,50.434 +598649,244.94,43.475 +598650,245.84,45.902 +598651,246.57,48.203 +598652,247.18,50.395 +598653,243.75,43.468 +598654,244.59,45.883 +598655,245.27,48.172 +598656,245.82,50.355 +598657,242.57,43.464 +598658,243.34,45.864 +598659,243.96,48.141 +598660,244.47,50.313 +598661,241.38,43.462 +598662,242.09,45.846 +598663,242.66,48.11 +598664,243.11,50.269 +598665,240.2,43.462 +598666,240.84,45.829 +598667,241.35,48.078 +598668,241.75,50.224 +598669,239.02,43.463 +598670,239.6,45.813 +598671,240.05,48.046 +598672,240.4,50.177 +598673,237.84,43.467 +598674,238.35,45.797 +598675,238.74,48.013 +598676,239.04,50.129 +598677,236.66,43.472 +598678,237.1,45.781 +598679,237.44,47.979 +598680,237.68,50.079 +598681,235.47,43.479 +598682,235.86,45.767 +598683,236.13,47.945 +598684,236.33,50.027 +598685,234.29,43.488 +598686,234.61,45.753 +598687,234.83,47.91 +598688,234.97,49.974 +598689,233.11,43.499 +598690,233.36,45.74 +598691,233.52,47.875 +598692,233.61,49.919 +598693,231.93,43.512 +598694,232.12,45.727 +598695,232.22,47.839 +598696,232.25,49.862 +598697,230.75,43.527 +598698,230.87,45.715 +598699,230.92,47.803 +598700,230.9,49.804 +598701,229.57,43.543 +598702,229.63,45.703 +598703,229.61,47.767 +598704,229.54,49.744 +598705,228.39,43.561 +598706,228.38,45.692 +598707,228.31,47.729 +598708,228.18,49.683 +598709,227.21,43.581 +598710,227.13,45.682 +598711,227,47.692 +598712,226.83,49.62 +598713,226.02,43.602 +598714,225.89,45.672 +598715,225.7,47.654 +598716,225.47,49.556 +598717,224.84,43.626 +598718,224.64,45.663 +598719,224.4,47.615 +598720,224.11,49.49 +598721,223.66,43.65 +598722,223.4,45.654 +598723,223.09,47.576 +598724,222.76,49.422 +598725,222.48,43.677 +598726,222.15,45.646 +598727,221.79,47.536 +598728,221.4,49.354 +598729,221.29,43.705 +598730,220.9,45.639 +598731,220.48,47.496 +598732,220.04,49.283 +598733,220.11,43.735 +598734,219.66,45.632 +598735,219.18,47.455 +598736,218.69,49.211 +598737,218.92,43.766 +598738,218.41,45.626 +598739,217.88,47.414 +598740,217.33,49.138 +598741,217.74,43.798 +598742,217.16,45.62 +598743,216.58,47.373 +598744,215.98,49.064 +598745,216.55,43.833 +598746,215.92,45.614 +598747,215.27,47.331 +598748,214.62,48.988 +598749,215.36,43.868 +598750,214.67,45.61 +598751,213.97,47.289 +598752,213.27,48.91 +598753,214.18,43.905 +598754,213.42,45.605 +598755,212.67,47.246 +598756,211.91,48.831 +598757,212.99,43.943 +598758,212.18,45.602 +598759,211.37,47.203 +598760,210.56,48.751 +598761,211.8,43.983 +598762,210.93,45.598 +598763,210.07,47.159 +598764,209.21,48.67 +598765,210.61,44.024 +598766,209.68,45.595 +598767,208.77,47.116 +598768,207.86,48.587 +598769,209.42,44.066 +598770,208.44,45.593 +598771,207.47,47.071 +598772,206.51,48.503 +598773,208.22,44.11 +598774,207.19,45.591 +598775,206.17,47.027 +598776,205.15,48.418 +598777,207.03,44.154 +598778,205.94,45.59 +598779,204.87,46.982 +598780,203.8,48.332 +598781,205.83,44.2 +598782,204.69,45.589 +598783,203.57,46.936 +598784,202.46,48.244 +598785,204.64,44.247 +598786,203.44,45.588 +598787,202.27,46.89 +598788,201.11,48.156 +598789,203.44,44.295 +598790,202.19,45.588 +598791,200.97,46.844 +598792,199.76,48.066 +598793,202.24,44.344 +598794,200.95,45.588 +598795,199.67,46.798 +598796,198.41,47.975 +598797,201.04,44.393 +598798,199.7,45.588 +598799,198.37,46.751 +598800,197.07,47.883 +598801,199.84,44.444 +598802,198.45,45.589 +598803,197.07,46.704 +598804,195.72,47.79 +598805,198.64,44.496 +598806,197.2,45.591 +598807,195.78,46.657 +598808,194.38,47.696 +598809,197.43,44.549 +598810,195.95,45.592 +598811,194.48,46.61 +598812,193.03,47.601 +598813,196.23,44.602 +598814,194.69,45.594 +598815,193.18,46.562 +598816,191.69,47.505 +598817,195.02,44.656 +598818,193.44,45.596 +598819,191.89,46.514 +598820,190.35,47.408 +598821,193.81,44.711 +598822,192.19,45.599 +598823,190.59,46.466 +598824,189.01,47.311 +598825,192.6,44.767 +598826,190.94,45.602 +598827,189.3,46.417 +598828,187.67,47.212 +598829,191.39,44.823 +598830,189.69,45.605 +598831,188,46.368 +598832,186.34,47.113 +598833,190.17,44.88 +598834,188.43,45.608 +598835,186.71,46.319 +598836,185,47.013 +598837,188.96,44.938 +598838,187.18,45.612 +598839,185.42,46.27 +598840,183.66,46.912 +598841,187.74,44.996 +598842,185.93,45.616 +598843,184.13,46.221 +598844,182.33,46.811 +598845,186.52,45.054 +598846,184.67,45.62 +598847,182.83,46.172 +598848,181,46.708 +598849,185.3,45.113 +598850,183.42,45.624 +598851,181.54,46.122 +598852,179.67,46.606 +598853,184.08,45.173 +598854,182.16,45.629 +598855,180.25,46.072 +598856,178.34,46.502 +598857,182.85,45.233 +598858,180.91,45.634 +598859,178.96,46.023 +598860,177.01,46.398 +598861,181.63,45.293 +598862,179.65,45.639 +598863,177.67,45.973 +598864,175.68,46.294 +598865,180.4,45.353 +598866,178.4,45.644 +598867,176.38,45.923 +598868,174.36,46.189 +598869,179.17,45.413 +598870,177.14,45.649 +598871,175.09,45.873 +598872,173.03,46.084 +598873,177.94,45.474 +598874,175.88,45.654 +598875,173.81,45.823 +598876,171.71,45.978 +598877,176.7,45.535 +598878,174.62,45.66 +598879,172.52,45.772 +598880,170.39,45.872 +598881,175.47,45.596 +598882,173.36,45.665 +598883,171.23,45.722 +598884,169.07,45.765 +598885,174.23,45.657 +598886,172.11,45.671 +598887,169.95,45.672 +598888,167.75,45.659 +598889,172.99,45.718 +598890,170.85,45.677 +598891,168.66,45.622 +598892,166.44,45.552 +598893,171.75,45.779 +598894,169.59,45.682 +598895,167.38,45.572 +598896,165.12,45.445 +598897,170.51,45.84 +598898,168.33,45.688 +598899,166.09,45.521 +598900,163.81,45.338 +598901,169.26,45.901 +598902,167.06,45.694 +598903,164.81,45.471 +598904,162.5,45.231 +598905,168.02,45.962 +598906,165.8,45.7 +598907,163.53,45.421 +598908,161.19,45.123 +598909,166.77,46.022 +598910,164.54,45.706 +598911,162.25,45.371 +598912,159.88,45.016 +598913,165.52,46.083 +598914,163.28,45.712 +598915,160.97,45.321 +598916,158.58,44.909 +598917,164.26,46.143 +598918,162.01,45.718 +598919,159.69,45.271 +598920,157.28,44.802 +598921,163.01,46.202 +598922,160.75,45.723 +598923,158.41,45.222 +598924,155.98,44.695 +598925,161.75,46.262 +598926,159.48,45.729 +598927,157.13,45.172 +598928,154.68,44.588 +598929,160.5,46.321 +598930,158.22,45.735 +598931,155.85,45.123 +598932,153.38,44.481 +598933,159.24,46.379 +598934,156.95,45.74 +598935,154.57,45.073 +598936,152.08,44.375 +598937,157.97,46.437 +598938,155.69,45.746 +598939,153.3,45.024 +598940,150.79,44.269 +598941,156.71,46.495 +598942,154.42,45.751 +598943,152.02,44.975 +598944,149.5,44.163 +598945,155.44,46.552 +598946,153.15,45.757 +598947,150.75,44.927 +598948,148.21,44.058 +598949,154.18,46.608 +598950,151.88,45.762 +598951,149.47,44.878 +598952,146.92,43.953 +598953,152.91,46.664 +598954,150.62,45.767 +598955,148.2,44.83 +598956,145.64,43.849 +598957,151.64,46.719 +598958,149.35,45.772 +598959,146.93,44.782 +598960,144.35,43.746 +598961,150.36,46.774 +598962,148.08,45.776 +598963,145.65,44.734 +598964,143.07,43.642 +598965,149.09,46.827 +598966,146.81,45.781 +598967,144.38,44.687 +598968,141.79,43.54 +598969,147.81,46.88 +598970,145.54,45.785 +598971,143.11,44.64 +598972,140.52,43.438 +598973,146.53,46.933 +598974,144.26,45.789 +598975,141.84,44.593 +598976,139.24,43.337 +598977,145.25,46.984 +598978,142.99,45.793 +598979,140.57,44.546 +598980,137.97,43.237 +598981,143.97,47.035 +598982,141.72,45.797 +598983,139.31,44.5 +598984,136.7,43.138 +598985,142.69,47.084 +598986,140.45,45.8 +598987,138.04,44.454 +598988,135.43,43.039 +598989,141.4,47.133 +598990,139.17,45.803 +598991,136.77,44.409 +598992,134.17,42.942 +598993,140.12,47.18 +598994,137.9,45.806 +598995,135.51,44.364 +598996,132.9,42.845 +598997,138.83,47.227 +598998,136.62,45.808 +598999,134.24,44.319 +599000,131.64,42.75 +599001,137.54,47.273 +599002,135.35,45.81 +599003,132.98,44.275 +599004,130.38,42.655 +599005,136.24,47.317 +599006,134.07,45.812 +599007,131.71,44.231 +599008,129.13,42.562 +599009,134.95,47.361 +599010,132.8,45.814 +599011,130.45,44.188 +599012,127.87,42.469 +599013,133.65,47.403 +599014,131.52,45.815 +599015,129.19,44.145 +599016,126.62,42.378 +599017,132.36,47.445 +599018,130.24,45.816 +599019,127.93,44.102 +599020,125.37,42.289 +599021,131.06,47.485 +599022,128.96,45.817 +599023,126.67,44.06 +599024,124.12,42.2 +599025,129.76,47.524 +599026,127.68,45.817 +599027,125.41,44.018 +599028,122.88,42.113 +599029,128.46,47.561 +599030,126.4,45.817 +599031,124.15,43.977 +599032,121.64,42.027 +599033,127.15,47.598 +599034,125.12,45.816 +599035,122.89,43.937 +599036,120.4,41.943 +599037,125.85,47.633 +599038,123.84,45.815 +599039,121.63,43.897 +599040,119.16,41.86 +599041,124.54,47.667 +599042,122.56,45.814 +599043,120.38,43.857 +599044,117.92,41.779 +599045,123.23,47.699 +599046,121.28,45.812 +599047,119.12,43.818 +599048,116.69,41.699 +599049,121.92,47.73 +599050,120,45.81 +599051,117.87,43.78 +599052,115.46,41.621 +599053,120.61,47.76 +599054,118.72,45.807 +599055,116.61,43.742 +599056,114.23,41.544 +599057,119.3,47.788 +599058,117.44,45.804 +599059,115.36,43.705 +599060,113,41.469 +599061,117.99,47.815 +599062,116.15,45.801 +599063,114.11,43.668 +599064,111.78,41.396 +599065,116.67,47.84 +599066,114.87,45.797 +599067,112.85,43.632 +599068,110.55,41.324 +599069,115.36,47.864 +599070,113.59,45.792 +599071,111.6,43.597 +599072,109.33,41.254 +599073,114.04,47.887 +599074,112.3,45.787 +599075,110.35,43.562 +599076,108.11,41.186 +599077,112.72,47.908 +599078,111.02,45.782 +599079,109.1,43.528 +599080,106.9,41.12 +599081,111.4,47.927 +599082,109.73,45.776 +599083,107.85,43.494 +599084,105.68,41.056 +599085,110.08,47.945 +599086,108.45,45.77 +599087,106.6,43.461 +599088,104.47,40.993 +599089,108.76,47.961 +599090,107.16,45.763 +599091,105.35,43.429 +599092,103.26,40.933 +599093,107.44,47.976 +599094,105.88,45.755 +599095,104.1,43.397 +599096,102.05,40.875 +599097,106.11,47.989 +599098,104.59,45.747 +599099,102.86,43.367 +599100,100.84,40.818 +599101,104.79,48.001 +599102,103.3,45.739 +599103,101.61,43.336 +599104,99.639,40.763 +599105,103.46,48.011 +599106,102.01,45.73 +599107,100.36,43.307 +599108,98.436,40.711 +599109,102.13,48.019 +599110,100.73,45.72 +599111,99.118,43.278 +599112,97.235,40.661 +599113,100.81,48.026 +599114,99.439,45.71 +599115,97.873,43.25 +599116,96.036,40.612 +599117,99.476,48.031 +599118,98.151,45.7 +599119,96.628,43.222 +599120,94.838,40.566 +599121,98.146,48.034 +599122,96.862,45.689 +599123,95.384,43.195 +599124,93.643,40.522 +599125,96.815,48.035 +599126,95.573,45.677 +599127,94.141,43.169 +599128,92.448,40.48 +599129,95.483,48.035 +599130,94.284,45.665 +599131,92.898,43.144 +599132,91.256,40.44 +599133,94.151,48.034 +599134,92.995,45.652 +599135,91.655,43.119 +599136,90.065,40.403 +599137,92.817,48.03 +599138,91.706,45.639 +599139,90.413,43.096 +599140,88.875,40.367 +599141,91.483,48.025 +599142,90.416,45.625 +599143,89.172,43.072 +599144,87.687,40.334 +599145,90.149,48.018 +599146,89.126,45.61 +599147,87.93,43.05 +599148,86.5,40.303 +599149,88.813,48.009 +599150,87.836,45.595 +599151,86.69,43.028 +599152,85.314,40.274 +599153,87.477,47.998 +599154,86.545,45.58 +599155,85.449,43.007 +599156,84.13,40.248 +599157,86.141,47.986 +599158,85.255,45.564 +599159,84.209,42.987 +599160,82.947,40.223 +599161,84.803,47.972 +599162,83.964,45.547 +599163,82.97,42.968 +599164,81.765,40.201 +599165,83.466,47.956 +599166,82.673,45.53 +599167,81.731,42.949 +599168,80.584,40.182 +599169,82.127,47.939 +599170,81.382,45.512 +599171,80.492,42.931 +599172,79.404,40.164 +599173,80.789,47.919 +599174,80.091,45.493 +599175,79.253,42.914 +599176,78.225,40.149 +599177,79.449,47.898 +599178,78.799,45.474 +599179,78.015,42.898 +599180,77.047,40.136 +599181,78.11,47.876 +599182,77.508,45.455 +599183,76.777,42.882 +599184,75.87,40.125 +599185,76.77,47.851 +599186,76.216,45.434 +599187,75.539,42.867 +599188,74.694,40.117 +599189,75.43,47.825 +599190,74.925,45.414 +599191,74.302,42.853 +599192,73.518,40.111 +599193,74.089,47.796 +599194,73.633,45.392 +599195,73.065,42.839 +599196,72.343,40.107 +599197,72.748,47.766 +599198,72.341,45.37 +599199,71.828,42.827 +599200,71.168,40.105 +599201,71.407,47.735 +599202,71.05,45.348 +599203,70.591,42.815 +599204,69.994,40.105 +599205,70.066,47.701 +599206,69.758,45.325 +599207,69.354,42.804 +599208,68.82,40.108 +599209,68.725,47.666 +599210,68.466,45.301 +599211,68.118,42.793 +599212,67.647,40.113 +599213,67.383,47.629 +599214,67.175,45.277 +599215,66.882,42.783 +599216,66.474,40.12 +599217,66.042,47.591 +599218,65.883,45.252 +599219,65.645,42.774 +599220,65.301,40.129 +599221,64.7,47.55 +599222,64.591,45.227 +599223,64.409,42.766 +599224,64.129,40.141 +599225,63.358,47.508 +599226,63.3,45.201 +599227,63.173,42.759 +599228,62.956,40.154 +599229,62.017,47.464 +599230,62.008,45.175 +599231,61.938,42.752 +599232,61.784,40.17 +599233,60.675,47.419 +599234,60.717,45.148 +599235,60.702,42.746 +599236,60.611,40.188 +599237,59.334,47.371 +599238,59.425,45.12 +599239,59.466,42.74 +599240,59.438,40.208 +599241,57.992,47.322 +599242,58.134,45.092 +599243,58.23,42.736 +599244,58.265,40.23 +599245,56.651,47.272 +599246,56.843,45.064 +599247,56.995,42.732 +599248,57.092,40.254 +599249,55.31,47.219 +599250,55.552,45.034 +599251,55.759,42.728 +599252,55.919,40.28 +599253,53.969,47.165 +599254,54.261,45.005 +599255,54.523,42.726 +599256,54.745,40.308 +599257,52.629,47.11 +599258,52.97,44.975 +599259,53.287,42.724 +599260,53.571,40.338 +599261,51.289,47.053 +599262,51.68,44.944 +599263,52.051,42.723 +599264,52.396,40.37 +599265,49.949,46.994 +599266,50.39,44.913 +599267,50.815,42.722 +599268,51.221,40.404 +599269,48.61,46.933 +599270,49.099,44.881 +599271,49.579,42.722 +599272,50.045,40.44 +599273,47.271,46.871 +599274,47.81,44.849 +599275,48.343,42.723 +599276,48.868,40.477 +599277,45.932,46.808 +599278,46.52,44.816 +599279,47.107,42.724 +599280,47.691,40.516 +599281,44.594,46.743 +599282,45.231,44.783 +599283,45.87,42.726 +599284,46.512,40.557 +599285,43.256,46.676 +599286,43.941,44.75 +599287,44.634,42.729 +599288,45.333,40.6 +599289,41.919,46.608 +599290,42.653,44.716 +599291,43.397,42.732 +599292,44.153,40.645 +599293,40.583,46.538 +599294,41.364,44.681 +599295,42.16,42.736 +599296,42.972,40.691 +599297,39.247,46.467 +599298,40.076,44.646 +599299,40.922,42.74 +599300,41.79,40.739 +599301,37.912,46.395 +599302,38.788,44.611 +599303,39.685,42.745 +599304,40.607,40.788 +599305,36.578,46.321 +599306,37.5,44.575 +599307,38.447,42.751 +599308,39.423,40.839 +599309,35.244,46.246 +599310,36.213,44.539 +599311,37.209,42.757 +599312,38.238,40.892 +599313,33.911,46.169 +599314,34.926,44.502 +599315,35.971,42.764 +599316,37.051,40.946 +599317,32.579,46.091 +599318,33.639,44.465 +599319,34.732,42.771 +599320,35.863,41.001 +599321,31.248,46.012 +599322,32.353,44.428 +599323,33.494,42.779 +599324,34.674,41.058 +599325,29.917,45.931 +599326,31.068,44.39 +599327,32.254,42.787 +599328,33.484,41.116 +599329,28.588,45.849 +599330,29.782,44.352 +599331,31.015,42.796 +599332,32.292,41.175 +599333,27.259,45.766 +599334,28.497,44.314 +599335,29.775,42.805 +599336,31.098,41.236 +599337,25.931,45.682 +599338,27.213,44.275 +599339,28.535,42.815 +599340,29.904,41.298 +599341,24.605,45.596 +599342,25.929,44.236 +599343,27.294,42.825 +599344,28.707,41.361 +599345,23.279,45.509 +599346,24.645,44.196 +599347,26.053,42.836 +599348,27.509,41.425 +599349,21.955,45.422 +599350,23.362,44.156 +599351,24.812,42.847 +599352,26.31,41.49 +599353,20.631,45.333 +599354,22.079,44.116 +599355,23.57,42.858 +599356,25.109,41.556 +599357,19.309,45.243 +599358,20.797,44.076 +599359,22.328,42.87 +599360,23.906,41.623 +599361,17.988,45.152 +599362,19.516,44.035 +599363,21.085,42.882 +599364,22.702,41.692 +599365,16.668,45.06 +599366,18.234,43.994 +599367,19.842,42.895 +599368,21.496,41.761 +599369,15.35,44.967 +599370,16.954,43.953 +599371,18.598,42.908 +599372,20.288,41.83 +599373,14.032,44.873 +599374,15.674,43.912 +599375,17.354,42.922 +599376,19.078,41.901 +599377,12.716,44.778 +599378,14.394,43.87 +599379,16.11,42.935 +599380,17.867,41.973 +599381,11.402,44.683 +599382,13.115,43.829 +599383,14.865,42.949 +599384,16.654,42.045 +599385,10.088,44.587 +599386,11.837,43.787 +599387,13.619,42.964 +599388,15.439,42.118 +599389,8.7764,44.489 +599390,10.559,43.745 +599391,12.373,42.979 +599392,14.222,42.191 +599393,7.4659,44.392 +599394,9.2817,43.702 +599395,11.127,42.993 +599396,13.004,42.265 +599397,6.1569,44.293 +599398,8.005,43.66 +599399,9.8799,43.009 +599400,11.783,42.339 +599401,4.8494,44.194 +599402,6.729,43.617 +599403,8.6323,43.024 +599404,10.561,42.414 +599405,3.5433,44.094 +599406,5.4535,43.575 +599407,7.3842,43.04 +599408,9.3366,42.49 +599409,2.2389,43.993 +599410,4.1787,43.532 +599411,6.1356,43.056 +599412,8.1104,42.565 +599413,0.936,43.892 +599414,2.9045,43.489 +599415,4.8864,43.072 +599416,6.8824,42.642 +599417,359.63,43.791 +599418,1.631,43.446 +599419,3.6366,43.088 +599420,5.6525,42.718 +599421,358.34,43.689 +599422,0.35804,43.403 +599423,2.3863,43.105 +599424,4.4206,42.794 +599425,357.04,43.587 +599426,359.09,43.36 +599427,1.1355,43.121 +599428,3.1868,42.871 +599429,355.74,43.484 +599430,357.81,43.317 +599431,359.88,43.138 +599432,1.951,42.948 +599433,354.45,43.381 +599434,356.54,43.274 +599435,358.63,43.155 +599436,0.71336,43.025 +599437,353.15,43.278 +599438,355.27,43.231 +599439,357.38,43.172 +599440,359.47,43.102 +599441,351.86,43.174 +599442,354,43.188 +599443,356.13,43.189 +599444,358.23,43.179 +599445,350.57,43.071 +599446,352.73,43.145 +599447,354.87,43.207 +599448,356.99,43.256 +599449,349.29,42.967 +599450,351.47,43.102 +599451,353.62,43.224 +599452,355.74,43.333 +599453,348,42.863 +599454,350.2,43.059 +599455,352.36,43.241 +599456,354.5,43.41 +599457,346.72,42.759 +599458,348.93,43.016 +599459,351.11,43.259 +599460,353.25,43.487 +599461,345.43,42.655 +599462,347.67,42.973 +599463,349.85,43.276 +599464,352,43.563 +599465,344.15,42.551 +599466,346.4,42.931 +599467,348.59,43.293 +599468,350.74,43.639 +599469,342.88,42.447 +599470,345.14,42.888 +599471,347.34,43.311 +599472,349.49,43.715 +599473,341.6,42.343 +599474,343.87,42.846 +599475,346.08,43.328 +599476,348.23,43.791 +599477,340.33,42.239 +599478,342.61,42.804 +599479,344.82,43.345 +599480,346.97,43.866 +599481,339.05,42.136 +599482,341.35,42.762 +599483,343.56,43.363 +599484,345.71,43.941 +599485,337.78,42.033 +599486,340.08,42.72 +599487,342.3,43.38 +599488,344.45,44.015 +599489,336.52,41.93 +599490,338.82,42.678 +599491,341.04,43.397 +599492,343.18,44.089 +599493,335.25,41.828 +599494,337.56,42.637 +599495,339.78,43.414 +599496,341.92,44.162 +599497,333.99,41.726 +599498,336.3,42.596 +599499,338.52,43.431 +599500,340.65,44.234 +599501,332.72,41.625 +599502,335.04,42.555 +599503,337.26,43.448 +599504,339.38,44.306 +599505,331.46,41.524 +599506,333.79,42.514 +599507,335.99,43.464 +599508,338.11,44.377 +599509,330.21,41.423 +599510,332.53,42.474 +599511,334.73,43.481 +599512,336.83,44.448 +599513,328.95,41.324 +599514,331.27,42.434 +599515,333.47,43.497 +599516,335.56,44.518 +599517,327.7,41.225 +599518,330.01,42.394 +599519,332.2,43.513 +599520,334.28,44.587 +599521,326.45,41.126 +599522,328.76,42.355 +599523,330.94,43.529 +599524,333,44.655 +599525,325.2,41.029 +599526,327.5,42.316 +599527,329.67,43.545 +599528,331.72,44.722 +599529,323.95,40.932 +599530,326.25,42.277 +599531,328.41,43.561 +599532,330.44,44.789 +599533,322.7,40.836 +599534,325,42.239 +599535,327.14,43.576 +599536,329.16,44.854 +599537,321.46,40.742 +599538,323.74,42.201 +599539,325.87,43.591 +599540,327.87,44.919 +599541,320.22,40.648 +599542,322.49,42.164 +599543,324.6,43.606 +599544,326.58,44.982 +599545,318.98,40.555 +599546,321.24,42.126 +599547,323.34,43.62 +599548,325.3,45.045 +599549,317.75,40.463 +599550,319.99,42.09 +599551,322.07,43.634 +599552,324.01,45.106 +599553,316.51,40.372 +599554,318.74,42.054 +599555,320.8,43.648 +599556,322.71,45.167 +599557,315.28,40.283 +599558,317.49,42.018 +599559,319.53,43.662 +599560,321.42,45.226 +599561,314.05,40.195 +599562,316.24,41.983 +599563,318.26,43.675 +599564,320.13,45.284 +599565,312.82,40.108 +599566,315,41.948 +599567,316.99,43.688 +599568,318.83,45.341 +599569,311.59,40.022 +599570,313.75,41.914 +599571,315.72,43.701 +599572,317.53,45.396 +599573,310.37,39.938 +599574,312.5,41.88 +599575,314.44,43.713 +599576,316.23,45.451 +599577,309.15,39.855 +599578,311.26,41.847 +599579,313.17,43.725 +599580,314.93,45.504 +599581,307.93,39.774 +599582,310.01,41.815 +599583,311.9,43.736 +599584,313.63,45.556 +599585,306.71,39.694 +599586,308.77,41.783 +599587,310.62,43.747 +599588,312.33,45.606 +599589,305.5,39.616 +599590,307.52,41.751 +599591,309.35,43.758 +599592,311.02,45.655 +599593,304.28,39.539 +599594,306.28,41.72 +599595,308.08,43.768 +599596,309.71,45.703 +599597,303.07,39.464 +599598,305.04,41.69 +599599,306.8,43.778 +599600,308.41,45.749 +599601,301.86,39.39 +599602,303.8,41.66 +599603,305.53,43.787 +599604,307.1,45.794 +599605,300.65,39.319 +599606,302.55,41.631 +599607,304.25,43.796 +599608,305.79,45.838 +599609,299.45,39.249 +599610,301.31,41.603 +599611,302.97,43.805 +599612,304.48,45.88 +599613,298.24,39.181 +599614,300.07,41.575 +599615,301.7,43.813 +599616,303.17,45.92 +599617,297.04,39.115 +599618,298.83,41.548 +599619,300.42,43.821 +599620,301.85,45.959 +599621,295.84,39.05 +599622,297.59,41.522 +599623,299.14,43.828 +599624,300.54,45.997 +599625,294.64,38.988 +599626,296.36,41.496 +599627,297.87,43.834 +599628,299.22,46.033 +599629,293.45,38.927 +599630,295.12,41.471 +599631,296.59,43.841 +599632,297.91,46.067 +599633,292.25,38.869 +599634,293.88,41.446 +599635,295.31,43.846 +599636,296.59,46.1 +599637,291.06,38.812 +599638,292.64,41.423 +599639,294.03,43.851 +599640,295.27,46.131 +599641,289.87,38.758 +599642,291.41,41.4 +599643,292.75,43.856 +599644,293.95,46.16 +599645,288.67,38.706 +599646,290.17,41.378 +599647,291.47,43.86 +599648,292.63,46.188 +599649,287.49,38.656 +599650,288.93,41.356 +599651,290.19,43.864 +599652,291.31,46.214 +599653,286.3,38.608 +599654,287.7,41.335 +599655,288.91,43.867 +599656,289.99,46.238 +599657,285.11,38.562 +599658,286.46,41.315 +599659,287.63,43.869 +599660,288.67,46.261 +599661,283.93,38.518 +599662,285.23,41.296 +599663,286.35,43.871 +599664,287.35,46.282 +599665,282.75,38.477 +599666,284,41.278 +599667,285.07,43.873 +599668,286.02,46.301 +599669,281.56,38.438 +599670,282.76,41.26 +599671,283.79,43.874 +599672,284.7,46.319 +599673,280.38,38.401 +599674,281.53,41.243 +599675,282.51,43.874 +599676,283.37,46.335 +599677,279.2,38.367 +599678,280.3,41.227 +599679,281.23,43.874 +599680,282.05,46.349 +599681,278.03,38.335 +599682,279.06,41.211 +599683,279.95,43.873 +599684,280.72,46.361 +599685,276.85,38.305 +599686,277.83,41.197 +599687,278.67,43.872 +599688,279.39,46.372 +599689,275.67,38.277 +599690,276.6,41.183 +599691,277.38,43.87 +599692,278.07,46.38 +599693,274.5,38.252 +599694,275.37,41.17 +599695,276.1,43.867 +599696,276.74,46.387 +599697,273.32,38.23 +599698,274.14,41.158 +599699,274.82,43.864 +599700,275.41,46.393 +599701,272.15,38.209 +599702,272.91,41.146 +599703,273.54,43.861 +599704,274.08,46.396 +599705,270.98,38.191 +599706,271.67,41.136 +599707,272.25,43.856 +599708,272.75,46.397 +599709,269.8,38.176 +599710,270.44,41.126 +599711,270.97,43.852 +599712,271.42,46.397 +599713,268.63,38.163 +599714,269.21,41.117 +599715,269.69,43.846 +599716,270.09,46.395 +599717,267.46,38.152 +599718,267.98,41.109 +599719,268.41,43.84 +599720,268.76,46.391 +599721,266.29,38.144 +599722,266.75,41.101 +599723,267.12,43.834 +599724,267.43,46.386 +599725,265.12,38.138 +599726,265.52,41.095 +599727,265.84,43.827 +599728,266.1,46.378 +599729,263.95,38.135 +599730,264.29,41.089 +599731,264.56,43.819 +599732,264.77,46.369 +599733,262.78,38.134 +599734,263.06,41.084 +599735,263.28,43.81 +599736,263.44,46.357 +599737,261.61,38.136 +599738,261.83,41.08 +599739,261.99,43.802 +599740,262.11,46.344 +599741,260.44,38.14 +599742,260.6,41.076 +599743,260.71,43.792 +599744,260.78,46.33 +599745,259.27,38.146 +599746,259.37,41.074 +599747,259.43,43.782 +599748,259.45,46.313 +599749,258.1,38.155 +599750,258.14,41.072 +599751,258.14,43.771 +599752,258.12,46.295 +599753,256.94,38.166 +599754,256.91,41.071 +599755,256.86,43.76 +599756,256.79,46.274 +599757,255.77,38.18 +599758,255.68,41.071 +599759,255.58,43.748 +599760,255.46,46.252 +599761,254.6,38.196 +599762,254.45,41.072 +599763,254.3,43.736 +599764,254.13,46.228 +599765,253.43,38.214 +599766,253.22,41.073 +599767,253.01,43.723 +599768,252.8,46.203 +599769,252.26,38.235 +599770,251.99,41.075 +599771,251.73,43.709 +599772,251.47,46.175 +599773,251.09,38.258 +599774,250.76,41.078 +599775,250.45,43.695 +599776,250.14,46.146 +599777,249.92,38.283 +599778,249.53,41.082 +599779,249.17,43.681 +599780,248.81,46.115 +599781,248.74,38.311 +599782,248.3,41.087 +599783,247.88,43.665 +599784,247.48,46.082 +599785,247.57,38.341 +599786,247.07,41.092 +599787,246.6,43.65 +599788,246.15,46.048 +599789,246.4,38.373 +599790,245.84,41.098 +599791,245.32,43.633 +599792,244.82,46.012 +599793,245.23,38.407 +599794,244.61,41.105 +599795,244.04,43.616 +599796,243.49,45.974 +599797,244.05,38.444 +599798,243.38,41.113 +599799,242.76,43.599 +599800,242.16,45.934 +599801,242.88,38.482 +599802,242.15,41.121 +599803,241.47,43.581 +599804,240.84,45.893 +599805,241.7,38.523 +599806,240.92,41.13 +599807,240.19,43.563 +599808,239.51,45.849 +599809,240.52,38.566 +599810,239.69,41.14 +599811,238.91,43.544 +599812,238.18,45.805 +599813,239.35,38.611 +599814,238.46,41.151 +599815,237.63,43.524 +599816,236.86,45.758 +599817,238.17,38.658 +599818,237.23,41.162 +599819,236.35,43.504 +599820,235.53,45.71 +599821,236.99,38.707 +599822,235.99,41.174 +599823,235.07,43.484 +599824,234.21,45.661 +599825,235.81,38.758 +599826,234.76,41.187 +599827,233.79,43.463 +599828,232.88,45.609 +599829,234.62,38.811 +599830,233.53,41.2 +599831,232.51,43.441 +599832,231.56,45.556 +599833,233.44,38.865 +599834,232.29,41.214 +599835,231.23,43.419 +599836,230.24,45.502 +599837,232.25,38.922 +599838,231.06,41.229 +599839,229.96,43.397 +599840,228.92,45.446 +599841,231.07,38.98 +599842,229.83,41.244 +599843,228.68,43.374 +599844,227.6,45.388 +599845,229.88,39.041 +599846,228.59,41.26 +599847,227.4,43.35 +599848,226.28,45.329 +599849,228.69,39.102 +599850,227.36,41.277 +599851,226.12,43.327 +599852,224.96,45.269 +599853,227.5,39.166 +599854,226.12,41.294 +599855,224.84,43.302 +599856,223.64,45.207 +599857,226.31,39.231 +599858,224.89,41.312 +599859,223.57,43.278 +599860,222.33,45.144 +599861,225.11,39.298 +599862,223.65,41.331 +599863,222.29,43.253 +599864,221.01,45.079 +599865,223.92,39.366 +599866,222.42,41.35 +599867,221.02,43.227 +599868,219.7,45.013 +599869,222.72,39.436 +599870,221.18,41.369 +599871,219.74,43.201 +599872,218.38,44.945 +599873,221.52,39.508 +599874,219.94,41.39 +599875,218.46,43.175 +599876,217.07,44.876 +599877,220.32,39.581 +599878,218.7,41.41 +599879,217.19,43.148 +599880,215.76,44.806 +599881,219.12,39.655 +599882,217.47,41.432 +599883,215.92,43.121 +599884,214.45,44.734 +599885,217.92,39.73 +599886,216.23,41.453 +599887,214.64,43.094 +599888,213.14,44.662 +599889,216.71,39.807 +599890,214.99,41.476 +599891,213.37,43.066 +599892,211.83,44.588 +599893,215.5,39.885 +599894,213.75,41.498 +599895,212.1,43.038 +599896,210.53,44.512 +599897,214.29,39.964 +599898,212.51,41.522 +599899,210.82,43.01 +599900,209.22,44.436 +599901,213.08,40.044 +599902,211.27,41.546 +599903,209.55,42.982 +599904,207.92,44.359 +599905,211.87,40.126 +599906,210.03,41.57 +599907,208.28,42.953 +599908,206.61,44.28 +599909,210.65,40.208 +599910,208.78,41.594 +599911,207.01,42.923 +599912,205.31,44.2 +599913,209.43,40.292 +599914,207.54,41.619 +599915,205.74,42.894 +599916,204.01,44.12 +599917,208.22,40.376 +599918,206.3,41.645 +599919,204.47,42.864 +599920,202.71,44.038 +599921,206.99,40.461 +599922,205.06,41.671 +599923,203.2,42.834 +599924,201.42,43.955 +599925,205.77,40.547 +599926,203.81,41.697 +599927,201.93,42.804 +599928,200.12,43.872 +599929,204.55,40.634 +599930,202.57,41.724 +599931,200.66,42.774 +599932,198.83,43.787 +599933,203.32,40.721 +599934,201.32,41.751 +599935,199.4,42.743 +599936,197.54,43.702 +599937,202.09,40.81 +599938,200.07,41.778 +599939,198.13,42.713 +599940,196.25,43.616 +599941,200.86,40.899 +599942,198.83,41.805 +599943,196.86,42.682 +599944,194.96,43.529 +599945,199.63,40.988 +599946,197.58,41.833 +599947,195.6,42.651 +599948,193.67,43.441 +599949,198.39,41.078 +599950,196.33,41.861 +599951,194.33,42.619 +599952,192.38,43.353 +599953,197.16,41.168 +599954,195.08,41.89 +599955,193.07,42.588 +599956,191.1,43.264 +599957,195.92,41.259 +599958,193.84,41.919 +599959,191.8,42.557 +599960,189.82,43.174 +599961,194.68,41.351 +599962,192.59,41.947 +599963,190.54,42.525 +599964,188.54,43.084 +599965,193.43,41.442 +599966,191.33,41.977 +599967,189.28,42.494 +599968,187.26,42.993 +599969,192.19,41.534 +599970,190.08,42.006 +599971,188.02,42.462 +599972,185.98,42.902 +599973,190.94,41.626 +599974,188.83,42.036 +599975,186.75,42.43 +599976,184.71,42.81 +599977,189.69,41.719 +599978,187.58,42.065 +599979,185.49,42.398 +599980,183.43,42.718 +599981,188.44,41.811 +599982,186.33,42.095 +599983,184.23,42.367 +599984,182.16,42.625 +599985,187.19,41.903 +599986,185.07,42.125 +599987,182.97,42.335 +599988,180.89,42.533 +599989,185.93,41.996 +599990,183.82,42.155 +599991,181.71,42.303 +599992,179.62,42.439 +599993,184.68,42.089 +599994,182.56,42.186 +599995,180.46,42.271 +599996,178.36,42.346 +599997,183.42,42.181 +599998,181.31,42.216 +599999,179.2,42.24 +600000,177.09,42.253 +600001,182.16,42.274 +600002,180.05,42.246 +600003,177.94,42.208 +600004,175.83,42.159 +600005,180.9,42.366 +600006,178.8,42.277 +600007,176.69,42.176 +600008,174.57,42.065 +600009,179.63,42.458 +600010,177.54,42.307 +600011,175.43,42.145 +600012,173.31,41.971 +600013,178.36,42.55 +600014,176.28,42.338 +600015,174.18,42.114 +600016,172.05,41.877 +600017,177.1,42.641 +600018,175.02,42.368 +600019,172.92,42.082 +600020,170.8,41.784 +600021,175.83,42.732 +600022,173.76,42.399 +600023,171.67,42.051 +600024,169.55,41.69 +600025,174.56,42.823 +600026,172.5,42.429 +600027,170.41,42.02 +600028,168.29,41.596 +600029,173.28,42.914 +600030,171.24,42.46 +600031,169.16,41.99 +600032,167.05,41.503 +600033,172.01,43.004 +600034,169.98,42.49 +600035,167.91,41.959 +600036,165.8,41.41 +600037,170.73,43.093 +600038,168.72,42.521 +600039,166.66,41.929 +600040,164.55,41.317 +600041,169.45,43.182 +600042,167.45,42.551 +600043,165.41,41.899 +600044,163.31,41.224 +600045,168.17,43.27 +600046,166.19,42.581 +600047,164.16,41.869 +600048,162.07,41.132 +600049,166.89,43.358 +600050,164.93,42.611 +600051,162.91,41.839 +600052,160.83,41.04 +600053,165.6,43.445 +600054,163.66,42.641 +600055,161.66,41.81 +600056,159.6,40.949 +600057,164.32,43.531 +600058,162.4,42.671 +600059,160.41,41.781 +600060,158.36,40.859 +600061,163.03,43.617 +600062,161.13,42.701 +600063,159.17,41.752 +600064,157.13,40.768 +600065,161.74,43.702 +600066,159.87,42.73 +600067,157.92,41.723 +600068,155.9,40.679 +600069,160.45,43.786 +600070,158.6,42.76 +600071,156.67,41.695 +600072,154.67,40.59 +600073,159.16,43.869 +600074,157.33,42.789 +600075,155.43,41.668 +600076,153.44,40.502 +600077,157.86,43.951 +600078,156.06,42.818 +600079,154.18,41.64 +600080,152.22,40.415 +600081,156.57,44.033 +600082,154.79,42.846 +600083,152.94,41.613 +600084,150.99,40.329 +600085,155.27,44.113 +600086,153.53,42.875 +600087,151.7,41.586 +600088,149.77,40.243 +600089,153.97,44.192 +600090,152.26,42.903 +600091,150.45,41.56 +600092,148.55,40.158 +600093,152.67,44.271 +600094,150.99,42.931 +600095,149.21,41.534 +600096,147.34,40.075 +600097,151.37,44.348 +600098,149.72,42.959 +600099,147.97,41.509 +600100,146.12,39.992 +600101,150.07,44.424 +600102,148.44,42.986 +600103,146.73,41.484 +600104,144.91,39.911 +600105,148.77,44.499 +600106,147.17,43.013 +600107,145.49,41.46 +600108,143.7,39.831 +600109,147.46,44.573 +600110,145.9,43.04 +600111,144.25,41.436 +600112,142.49,39.751 +600113,146.16,44.645 +600114,144.63,43.066 +600115,143.01,41.412 +600116,141.28,39.673 +600117,144.85,44.717 +600118,143.35,43.092 +600119,141.77,41.389 +600120,140.08,39.597 +600121,143.54,44.787 +600122,142.08,43.118 +600123,140.53,41.367 +600124,138.87,39.522 +600125,142.23,44.856 +600126,140.81,43.144 +600127,139.29,41.345 +600128,137.67,39.448 +600129,140.92,44.923 +600130,139.53,43.169 +600131,138.06,41.323 +600132,136.47,39.375 +600133,139.61,44.99 +600134,138.26,43.193 +600135,136.82,41.303 +600136,135.27,39.304 +600137,138.29,45.054 +600138,136.98,43.217 +600139,135.58,41.282 +600140,134.07,39.235 +600141,136.98,45.118 +600142,135.71,43.241 +600143,134.35,41.263 +600144,132.88,39.167 +600145,135.66,45.18 +600146,134.43,43.265 +600147,133.11,41.244 +600148,131.69,39.1 +600149,134.35,45.241 +600150,133.15,43.288 +600151,131.87,41.225 +600152,130.49,39.036 +600153,133.03,45.3 +600154,131.88,43.31 +600155,130.64,41.208 +600156,129.3,38.973 +600157,131.71,45.357 +600158,130.6,43.332 +600159,129.41,41.19 +600160,128.11,38.911 +600161,130.39,45.413 +600162,129.32,43.354 +600163,128.17,41.174 +600164,126.93,38.852 +600165,129.07,45.468 +600166,128.04,43.375 +600167,126.94,41.158 +600168,125.74,38.794 +600169,127.75,45.521 +600170,126.76,43.396 +600171,125.7,41.143 +600172,124.55,38.739 +600173,126.43,45.573 +600174,125.48,43.416 +600175,124.47,41.128 +600176,123.37,38.685 +600177,125.11,45.623 +600178,124.21,43.436 +600179,123.24,41.115 +600180,122.19,38.633 +600181,123.78,45.671 +600182,122.93,43.455 +600183,122.01,41.101 +600184,121.01,38.583 +600185,122.46,45.717 +600186,121.65,43.474 +600187,120.77,41.089 +600188,119.83,38.535 +600189,121.14,45.762 +600190,120.37,43.492 +600191,119.54,41.077 +600192,118.65,38.489 +600193,119.81,45.806 +600194,119.09,43.51 +600195,118.31,41.066 +600196,117.47,38.445 +600197,118.49,45.848 +600198,117.81,43.527 +600199,117.08,41.056 +600200,116.29,38.403 +600201,117.16,45.887 +600202,116.53,43.544 +600203,115.85,41.047 +600204,115.12,38.364 +600205,115.83,45.926 +600206,115.24,43.56 +600207,114.62,41.038 +600208,113.94,38.326 +600209,114.5,45.962 +600210,113.96,43.575 +600211,113.39,41.03 +600212,112.77,38.291 +600213,113.18,45.997 +600214,112.68,43.59 +600215,112.16,41.023 +600216,111.6,38.258 +600217,111.85,46.03 +600218,111.4,43.605 +600219,110.93,41.016 +600220,110.42,38.227 +600221,110.52,46.062 +600222,110.12,43.619 +600223,109.7,41.01 +600224,109.25,38.198 +600225,109.19,46.091 +600226,108.84,43.632 +600227,108.47,41.005 +600228,108.08,38.172 +600229,107.86,46.119 +600230,107.55,43.645 +600231,107.24,41.001 +600232,106.91,38.148 +600233,106.53,46.145 +600234,106.27,43.657 +600235,106.01,40.998 +600236,105.74,38.127 +600237,105.2,46.169 +600238,104.99,43.669 +600239,104.78,40.995 +600240,104.57,38.108 +600241,103.87,46.192 +600242,103.71,43.68 +600243,103.55,40.994 +600244,103.4,38.091 +600245,102.54,46.212 +600246,102.43,43.691 +600247,102.32,40.993 +600248,102.23,38.076 +600249,101.21,46.231 +600250,101.14,43.701 +600251,101.09,40.993 +600252,101.06,38.064 +600253,99.883,46.248 +600254,99.861,43.71 +600255,99.861,40.993 +600256,99.893,38.055 +600257,98.552,46.263 +600258,98.578,43.719 +600259,98.631,40.995 +600260,98.724,38.047 +600261,97.222,46.277 +600262,97.296,43.727 +600263,97.402,40.997 +600264,97.555,38.042 +600265,95.892,46.288 +600266,96.013,43.735 +600267,96.172,41 +600268,96.386,38.04 +600269,94.562,46.298 +600270,94.731,43.742 +600271,94.943,41.004 +600272,95.216,38.04 +600273,93.231,46.306 +600274,93.448,43.748 +600275,93.713,41.009 +600276,94.047,38.043 +600277,91.901,46.312 +600278,92.165,43.754 +600279,92.483,41.014 +600280,92.877,38.048 +600281,90.571,46.316 +600282,90.883,43.759 +600283,91.253,41.02 +600284,91.707,38.055 +600285,89.242,46.319 +600286,89.601,43.764 +600287,90.023,41.028 +600288,90.536,38.065 +600289,87.912,46.319 +600290,88.318,43.768 +600291,88.793,41.036 +600292,89.365,38.077 +600293,86.583,46.318 +600294,87.036,43.772 +600295,87.563,41.044 +600296,88.194,38.092 +600297,85.254,46.315 +600298,85.754,43.775 +600299,86.332,41.054 +600300,87.021,38.109 +600301,83.926,46.31 +600302,84.472,43.777 +600303,85.101,41.064 +600304,85.848,38.128 +600305,82.598,46.304 +600306,83.19,43.779 +600307,83.871,41.075 +600308,84.675,38.15 +600309,81.27,46.295 +600310,81.908,43.78 +600311,82.639,41.087 +600312,83.5,38.175 +600313,79.943,46.285 +600314,80.626,43.781 +600315,81.408,41.1 +600316,82.325,38.202 +600317,78.616,46.273 +600318,79.345,43.781 +600319,80.176,41.114 +600320,81.148,38.231 +600321,77.289,46.259 +600322,78.064,43.78 +600323,78.944,41.128 +600324,79.971,38.262 +600325,75.964,46.244 +600326,76.782,43.779 +600327,77.712,41.143 +600328,78.793,38.296 +600329,74.639,46.227 +600330,75.502,43.778 +600331,76.479,41.159 +600332,77.613,38.332 +600333,73.314,46.207 +600334,74.221,43.775 +600335,75.246,41.176 +600336,76.433,38.37 +600337,71.99,46.187 +600338,72.941,43.773 +600339,74.012,41.193 +600340,75.251,38.411 +600341,70.667,46.164 +600342,71.66,43.769 +600343,72.779,41.212 +600344,74.067,38.454 +600345,69.344,46.14 +600346,70.38,43.766 +600347,71.544,41.231 +600348,72.883,38.499 +600349,68.023,46.114 +600350,69.101,43.761 +600351,70.31,41.25 +600352,71.697,38.546 +600353,66.702,46.086 +600354,67.821,43.756 +600355,69.075,41.271 +600356,70.51,38.596 +600357,65.382,46.057 +600358,66.542,43.751 +600359,67.839,41.292 +600360,69.321,38.647 +600361,64.062,46.026 +600362,65.264,43.745 +600363,66.603,41.314 +600364,68.13,38.701 +600365,62.744,45.994 +600366,63.985,43.738 +600367,65.367,41.337 +600368,66.938,38.757 +600369,61.427,45.959 +600370,62.707,43.732 +600371,64.13,41.36 +600372,65.745,38.815 +600373,60.11,45.924 +600374,61.429,43.724 +600375,62.893,41.384 +600376,64.549,38.874 +600377,58.795,45.886 +600378,60.152,43.716 +600379,61.655,41.409 +600380,63.352,38.936 +600381,57.48,45.847 +600382,58.875,43.708 +600383,60.417,41.434 +600384,62.154,39 +600385,56.167,45.807 +600386,57.598,43.699 +600387,59.178,41.46 +600388,60.953,39.065 +600389,54.855,45.765 +600390,56.322,43.689 +600391,57.938,41.487 +600392,59.751,39.133 +600393,53.543,45.721 +600394,55.046,43.68 +600395,56.699,41.514 +600396,58.547,39.202 +600397,52.233,45.676 +600398,53.771,43.669 +600399,55.458,41.542 +600400,57.341,39.273 +600401,50.925,45.63 +600402,52.495,43.659 +600403,54.217,41.571 +600404,56.133,39.346 +600405,49.617,45.582 +600406,51.221,43.647 +600407,52.975,41.6 +600408,54.923,39.42 +600409,48.311,45.532 +600410,49.947,43.636 +600411,51.733,41.63 +600412,53.711,39.497 +600413,47.005,45.482 +600414,48.673,43.624 +600415,50.49,41.661 +600416,52.498,39.574 +600417,45.702,45.43 +600418,47.4,43.612 +600419,49.246,41.692 +600420,51.282,39.653 +600421,44.399,45.376 +600422,46.127,43.599 +600423,48.002,41.723 +600424,50.064,39.734 +600425,43.098,45.322 +600426,44.855,43.586 +600427,46.758,41.756 +600428,48.844,39.816 +600429,41.798,45.266 +600430,43.583,43.572 +600431,45.512,41.788 +600432,47.623,39.9 +600433,40.5,45.208 +600434,42.311,43.558 +600435,44.266,41.821 +600436,46.399,39.985 +600437,39.203,45.15 +600438,41.041,43.544 +600439,43.019,41.855 +600440,45.173,40.071 +600441,37.907,45.09 +600442,39.77,43.529 +600443,41.772,41.889 +600444,43.945,40.159 +600445,36.613,45.03 +600446,38.5,43.515 +600447,40.524,41.924 +600448,42.714,40.248 +600449,35.321,44.968 +600450,37.231,43.499 +600451,39.275,41.959 +600452,41.482,40.338 +600453,34.03,44.905 +600454,35.962,43.484 +600455,38.026,41.995 +600456,40.248,40.429 +600457,32.741,44.84 +600458,34.694,43.468 +600459,36.776,42.031 +600460,39.011,40.521 +600461,31.453,44.775 +600462,33.426,43.452 +600463,35.525,42.067 +600464,37.773,40.614 +600465,30.167,44.709 +600466,32.159,43.436 +600467,34.273,42.104 +600468,36.532,40.709 +600469,28.882,44.642 +600470,30.893,43.419 +600471,33.021,42.142 +600472,35.289,40.804 +600473,27.599,44.574 +600474,29.627,43.402 +600475,31.768,42.179 +600476,34.044,40.9 +600477,26.318,44.505 +600478,28.361,43.385 +600479,30.515,42.217 +600480,32.797,40.997 +600481,25.039,44.435 +600482,27.096,43.368 +600483,29.26,42.256 +600484,31.548,41.094 +600485,23.761,44.365 +600486,25.832,43.351 +600487,28.005,42.295 +600488,30.297,41.193 +600489,22.485,44.293 +600490,24.568,43.333 +600491,26.75,42.334 +600492,29.043,41.292 +600493,21.21,44.221 +600494,23.305,43.315 +600495,25.493,42.373 +600496,27.788,41.391 +600497,19.938,44.148 +600498,22.043,43.297 +600499,24.236,42.413 +600500,26.53,41.492 +600501,18.667,44.075 +600502,20.781,43.279 +600503,22.978,42.453 +600504,25.27,41.592 +600505,17.398,44 +600506,19.519,43.261 +600507,21.72,42.493 +600508,24.009,41.694 +600509,16.131,43.926 +600510,18.258,43.243 +600511,20.46,42.533 +600512,22.745,41.795 +600513,14.866,43.85 +600514,16.998,43.224 +600515,19.2,42.574 +600516,21.479,41.897 +600517,13.602,43.775 +600518,15.739,43.206 +600519,17.939,42.615 +600520,20.211,42 +600521,12.341,43.698 +600522,14.48,43.187 +600523,16.678,42.656 +600524,18.941,42.102 +600525,11.081,43.621 +600526,13.221,43.169 +600527,15.416,42.697 +600528,17.67,42.205 +600529,9.8235,43.544 +600530,11.964,43.15 +600531,14.153,42.738 +600532,16.396,42.308 +600533,8.5676,43.467 +600534,10.706,43.131 +600535,12.889,42.78 +600536,15.12,42.412 +600537,7.3137,43.389 +600538,9.4497,43.113 +600539,11.625,42.822 +600540,13.843,42.515 +600541,6.0616,43.311 +600542,8.1937,43.094 +600543,10.36,42.863 +600544,12.563,42.618 +600545,4.8115,43.233 +600546,6.9383,43.075 +600547,9.0944,42.905 +600548,11.281,42.721 +600549,3.5633,43.154 +600550,5.6835,43.057 +600551,7.828,42.947 +600552,9.9981,42.825 +600553,2.317,43.076 +600554,4.4293,43.038 +600555,6.561,42.989 +600556,8.7129,42.928 +600557,1.0727,42.997 +600558,3.1757,43.02 +600559,5.2932,43.031 +600560,7.4259,43.031 +600561,359.83,42.918 +600562,1.9227,43.001 +600563,4.0248,43.073 +600564,6.1371,43.134 +600565,358.59,42.84 +600566,0.6703,42.983 +600567,2.7557,43.115 +600568,4.8465,43.236 +600569,357.35,42.761 +600570,359.42,42.965 +600571,1.4859,43.158 +600572,3.5541,43.338 +600573,356.11,42.682 +600574,358.17,42.947 +600575,0.21547,43.2 +600576,2.2601,43.44 +600577,354.88,42.604 +600578,356.92,42.929 +600579,358.94,43.242 +600580,0.96428,43.542 +600581,353.65,42.526 +600582,355.67,42.911 +600583,357.67,43.284 +600584,359.67,43.643 +600585,352.42,42.448 +600586,354.42,42.894 +600587,356.4,43.326 +600588,358.37,43.744 +600589,351.19,42.37 +600590,353.17,42.876 +600591,355.13,43.368 +600592,357.07,43.844 +600593,349.96,42.293 +600594,351.92,42.859 +600595,353.85,43.409 +600596,355.76,43.944 +600597,348.74,42.216 +600598,350.67,42.842 +600599,352.58,43.451 +600600,354.46,44.043 +600601,347.51,42.139 +600602,349.42,42.825 +600603,351.3,43.493 +600604,353.16,44.141 +600605,346.29,42.063 +600606,348.18,42.809 +600607,350.03,43.534 +600608,351.85,44.239 +600609,345.07,41.988 +600610,346.93,42.793 +600611,348.75,43.576 +600612,350.54,44.336 +600613,343.85,41.913 +600614,345.69,42.777 +600615,347.48,43.617 +600616,349.23,44.432 +600617,342.64,41.838 +600618,344.44,42.761 +600619,346.2,43.658 +600620,347.92,44.528 +600621,341.43,41.765 +600622,343.2,42.746 +600623,344.92,43.698 +600624,346.61,44.623 +600625,340.21,41.692 +600626,341.95,42.731 +600627,343.64,43.739 +600628,345.29,44.716 +600629,339,41.62 +600630,340.71,42.717 +600631,342.36,43.779 +600632,343.98,44.809 +600633,337.79,41.548 +600634,339.46,42.702 +600635,341.08,43.82 +600636,342.66,44.901 +600637,336.59,41.478 +600638,338.22,42.688 +600639,339.8,43.859 +600640,341.34,44.993 +600641,335.38,41.408 +600642,336.98,42.675 +600643,338.52,43.899 +600644,340.02,45.083 +600645,334.18,41.339 +600646,335.74,42.662 +600647,337.24,43.938 +600648,338.7,45.172 +600649,332.98,41.272 +600650,334.5,42.649 +600651,335.96,43.978 +600652,337.38,45.26 +600653,331.78,41.205 +600654,333.25,42.637 +600655,334.68,44.016 +600656,336.06,45.347 +600657,330.58,41.139 +600658,332.01,42.625 +600659,333.4,44.055 +600660,334.74,45.432 +600661,329.38,41.075 +600662,330.77,42.614 +600663,332.11,44.093 +600664,333.41,45.517 +600665,328.19,41.011 +600666,329.53,42.603 +600667,330.83,44.131 +600668,332.08,45.601 +600669,326.99,40.949 +600670,328.29,42.592 +600671,329.55,44.168 +600672,330.76,45.683 +600673,325.8,40.889 +600674,327.05,42.582 +600675,328.26,44.205 +600676,329.43,45.764 +600677,324.61,40.829 +600678,325.82,42.573 +600679,326.98,44.242 +600680,328.1,45.843 +600681,323.42,40.771 +600682,324.58,42.564 +600683,325.69,44.279 +600684,326.77,45.922 +600685,322.23,40.714 +600686,323.34,42.556 +600687,324.41,44.315 +600688,325.44,45.999 +600689,321.05,40.659 +600690,322.1,42.548 +600691,323.12,44.35 +600692,324.11,46.075 +600693,319.86,40.605 +600694,320.86,42.541 +600695,321.84,44.385 +600696,322.78,46.149 +600697,318.68,40.553 +600698,319.63,42.534 +600699,320.55,44.42 +600700,321.45,46.222 +600701,317.49,40.502 +600702,318.39,42.528 +600703,319.26,44.454 +600704,320.11,46.294 +600705,316.31,40.453 +600706,317.15,42.522 +600707,317.97,44.488 +600708,318.78,46.364 +600709,315.13,40.405 +600710,315.92,42.517 +600711,316.69,44.522 +600712,317.44,46.432 +600713,313.95,40.36 +600714,314.68,42.513 +600715,315.4,44.555 +600716,316.11,46.499 +600717,312.77,40.316 +600718,313.44,42.509 +600719,314.11,44.588 +600720,314.77,46.565 +600721,311.59,40.273 +600722,312.21,42.506 +600723,312.82,44.62 +600724,313.44,46.629 +600725,310.41,40.233 +600726,310.97,42.504 +600727,311.53,44.651 +600728,312.1,46.692 +600729,309.24,40.194 +600730,309.74,42.502 +600731,310.25,44.682 +600732,310.76,46.753 +600733,308.06,40.157 +600734,308.5,42.501 +600735,308.96,44.713 +600736,309.42,46.812 +600737,306.89,40.122 +600738,307.27,42.5 +600739,307.67,44.743 +600740,308.08,46.87 +600741,305.71,40.089 +600742,306.03,42.501 +600743,306.38,44.773 +600744,306.75,46.926 +600745,304.54,40.058 +600746,304.8,42.501 +600747,305.09,44.802 +600748,305.41,46.981 +600749,303.36,40.029 +600750,303.56,42.503 +600751,303.8,44.831 +600752,304.07,47.034 +600753,302.19,40.002 +600754,302.32,42.505 +600755,302.51,44.859 +600756,302.73,47.085 +600757,301.02,39.976 +600758,301.09,42.508 +600759,301.22,44.886 +600760,301.39,47.134 +600761,299.84,39.953 +600762,299.85,42.512 +600763,299.93,44.913 +600764,300.05,47.182 +600765,298.67,39.932 +600766,298.62,42.516 +600767,298.64,44.94 +600768,298.71,47.228 +600769,297.5,39.914 +600770,297.38,42.521 +600771,297.35,44.966 +600772,297.37,47.273 +600773,296.33,39.897 +600774,296.15,42.527 +600775,296.06,44.991 +600776,296.03,47.316 +600777,295.15,39.882 +600778,294.91,42.534 +600779,294.77,45.016 +600780,294.69,47.357 +600781,293.98,39.87 +600782,293.68,42.541 +600783,293.48,45.04 +600784,293.35,47.396 +600785,292.81,39.86 +600786,292.44,42.549 +600787,292.18,45.064 +600788,292.01,47.434 +600789,291.64,39.852 +600790,291.21,42.558 +600791,290.89,45.087 +600792,290.67,47.469 +600793,290.46,39.846 +600794,289.97,42.567 +600795,289.6,45.109 +600796,289.33,47.503 +600797,289.29,39.842 +600798,288.74,42.577 +600799,288.31,45.131 +600800,287.99,47.536 +600801,288.12,39.841 +600802,287.5,42.588 +600803,287.02,45.153 +600804,286.65,47.566 +600805,286.94,39.842 +600806,286.26,42.6 +600807,285.73,45.174 +600808,285.31,47.595 +600809,285.77,39.845 +600810,285.03,42.613 +600811,284.44,45.194 +600812,283.97,47.622 +600813,284.59,39.85 +600814,283.79,42.626 +600815,283.15,45.214 +600816,282.63,47.647 +600817,283.42,39.858 +600818,282.55,42.64 +600819,281.86,45.233 +600820,281.29,47.671 +600821,282.24,39.868 +600822,281.32,42.655 +600823,280.57,45.251 +600824,279.95,47.692 +600825,281.07,39.88 +600826,280.08,42.67 +600827,279.28,45.269 +600828,278.61,47.712 +600829,279.89,39.895 +600830,278.84,42.686 +600831,277.99,45.287 +600832,277.27,47.73 +600833,278.71,39.912 +600834,277.6,42.704 +600835,276.7,45.304 +600836,275.94,47.747 +600837,277.53,39.931 +600838,276.37,42.721 +600839,275.41,45.32 +600840,274.6,47.761 +600841,276.35,39.952 +600842,275.13,42.74 +600843,274.12,45.336 +600844,273.26,47.774 +600845,275.17,39.976 +600846,273.89,42.759 +600847,272.83,45.351 +600848,271.93,47.785 +600849,273.98,40.002 +600850,272.65,42.779 +600851,271.54,45.365 +600852,270.59,47.794 +600853,272.8,40.03 +600854,271.41,42.8 +600855,270.25,45.379 +600856,269.26,47.802 +600857,271.61,40.06 +600858,270.17,42.822 +600859,268.96,45.392 +600860,267.92,47.807 +600861,270.42,40.093 +600862,268.93,42.844 +600863,267.67,45.405 +600864,266.59,47.811 +600865,269.24,40.128 +600866,267.69,42.867 +600867,266.38,45.417 +600868,265.26,47.814 +600869,268.05,40.165 +600870,266.44,42.891 +600871,265.09,45.429 +600872,263.93,47.814 +600873,266.85,40.204 +600874,265.2,42.915 +600875,263.81,45.44 +600876,262.59,47.813 +600877,265.66,40.246 +600878,263.96,42.94 +600879,262.52,45.451 +600880,261.26,47.81 +600881,264.47,40.29 +600882,262.72,42.966 +600883,261.23,45.461 +600884,259.93,47.806 +600885,263.27,40.335 +600886,261.47,42.993 +600887,259.94,45.47 +600888,258.61,47.799 +600889,262.07,40.383 +600890,260.23,43.02 +600891,258.66,45.479 +600892,257.28,47.791 +600893,260.87,40.433 +600894,258.99,43.048 +600895,257.37,45.488 +600896,255.95,47.782 +600897,259.67,40.486 +600898,257.74,43.077 +600899,256.08,45.495 +600900,254.63,47.77 +600901,258.47,40.54 +600902,256.49,43.107 +600903,254.8,45.503 +600904,253.3,47.758 +600905,257.26,40.596 +600906,255.25,43.137 +600907,253.51,45.51 +600908,251.98,47.743 +600909,256.06,40.654 +600910,254,43.168 +600911,252.22,45.516 +600912,250.66,47.727 +600913,254.85,40.714 +600914,252.75,43.199 +600915,250.94,45.522 +600916,249.33,47.709 +600917,253.64,40.776 +600918,251.51,43.231 +600919,249.65,45.527 +600920,248.01,47.69 +600921,252.42,40.84 +600922,250.26,43.264 +600923,248.37,45.532 +600924,246.69,47.669 +600925,251.21,40.906 +600926,249.01,43.298 +600927,247.09,45.536 +600928,245.38,47.647 +600929,249.99,40.974 +600930,247.76,43.332 +600931,245.8,45.54 +600932,244.06,47.623 +600933,248.77,41.044 +600934,246.51,43.366 +600935,244.52,45.543 +600936,242.74,47.597 +600937,247.55,41.115 +600938,245.26,43.402 +600939,243.24,45.546 +600940,241.43,47.571 +600941,246.33,41.188 +600942,244,43.438 +600943,241.96,45.548 +600944,240.12,47.542 +600945,245.1,41.263 +600946,242.75,43.474 +600947,240.67,45.55 +600948,238.81,47.513 +600949,243.87,41.339 +600950,241.5,43.511 +600951,239.39,45.552 +600952,237.5,47.481 +600953,242.64,41.417 +600954,240.24,43.549 +600955,238.11,45.553 +600956,236.19,47.449 +600957,241.41,41.497 +600958,238.99,43.587 +600959,236.83,45.553 +600960,234.88,47.415 +600961,240.18,41.578 +600962,237.73,43.626 +600963,235.55,45.554 +600964,233.57,47.38 +600965,238.94,41.661 +600966,236.48,43.665 +600967,234.27,45.554 +600968,232.27,47.343 +600969,237.7,41.745 +600970,235.22,43.705 +600971,232.99,45.553 +600972,230.97,47.305 +600973,236.46,41.831 +600974,233.96,43.745 +600975,231.71,45.552 +600976,229.66,47.266 +600977,235.22,41.918 +600978,232.7,43.786 +600979,230.44,45.551 +600980,228.36,47.226 +600981,233.97,42.006 +600982,231.44,43.828 +600983,229.16,45.549 +600984,227.07,47.184 +600985,232.72,42.096 +600986,230.18,43.869 +600987,227.88,45.547 +600988,225.77,47.141 +600989,231.47,42.187 +600990,228.92,43.912 +600991,226.61,45.545 +600992,224.47,47.097 +600993,230.22,42.279 +600994,227.66,43.954 +600995,225.33,45.542 +600996,223.18,47.052 +600997,228.97,42.372 +600998,226.4,43.998 +600999,224.05,45.539 +601000,221.89,47.006 +601001,227.71,42.466 +601002,225.14,44.041 +601003,222.78,45.535 +601004,220.6,46.959 +601005,226.45,42.562 +601006,223.87,44.085 +601007,221.51,45.532 +601008,219.31,46.911 +601009,225.19,42.658 +601010,222.61,44.13 +601011,220.23,45.528 +601012,218.02,46.861 +601013,223.92,42.756 +601014,221.34,44.175 +601015,218.96,45.524 +601016,216.74,46.811 +601017,222.66,42.854 +601018,220.08,44.22 +601019,217.69,45.519 +601020,215.45,46.76 +601021,221.39,42.954 +601022,218.81,44.265 +601023,216.41,45.514 +601024,214.17,46.708 +601025,220.12,43.054 +601026,217.54,44.311 +601027,215.14,45.509 +601028,212.89,46.655 +601029,218.85,43.155 +601030,216.27,44.357 +601031,213.87,45.504 +601032,211.61,46.601 +601033,217.57,43.256 +601034,215.01,44.404 +601035,212.6,45.499 +601036,210.34,46.547 +601037,216.3,43.359 +601038,213.74,44.451 +601039,211.33,45.493 +601040,209.06,46.491 +601041,215.02,43.462 +601042,212.47,44.498 +601043,210.06,45.487 +601044,207.79,46.435 +601045,213.73,43.565 +601046,211.19,44.545 +601047,208.79,45.481 +601048,206.52,46.378 +601049,212.45,43.669 +601050,209.92,44.593 +601051,207.53,45.475 +601052,205.25,46.321 +601053,211.17,43.774 +601054,208.65,44.641 +601055,206.26,45.469 +601056,203.98,46.263 +601057,209.88,43.879 +601058,207.38,44.689 +601059,204.99,45.463 +601060,202.72,46.204 +601061,208.59,43.985 +601062,206.1,44.737 +601063,203.73,45.456 +601064,201.45,46.145 +601065,207.3,44.09 +601066,204.83,44.785 +601067,202.46,45.449 +601068,200.19,46.085 +601069,206,44.197 +601070,203.55,44.834 +601071,201.2,45.443 +601072,198.93,46.025 +601073,204.71,44.303 +601074,202.27,44.883 +601075,199.93,45.436 +601076,197.67,45.965 +601077,203.41,44.41 +601078,201,44.932 +601079,198.67,45.429 +601080,196.42,45.904 +601081,202.11,44.517 +601082,199.72,44.981 +601083,197.4,45.422 +601084,195.16,45.842 +601085,200.81,44.624 +601086,198.44,45.03 +601087,196.14,45.415 +601088,193.91,45.781 +601089,199.51,44.731 +601090,197.16,45.079 +601091,194.88,45.408 +601092,192.66,45.719 +601093,198.2,44.838 +601094,195.88,45.129 +601095,193.62,45.401 +601096,191.41,45.657 +601097,196.89,44.945 +601098,194.6,45.178 +601099,192.36,45.394 +601100,190.17,45.594 +601101,195.59,45.052 +601102,193.32,45.228 +601103,191.1,45.387 +601104,188.92,45.532 +601105,194.28,45.159 +601106,192.03,45.277 +601107,189.84,45.38 +601108,187.68,45.469 +601109,192.96,45.266 +601110,190.75,45.327 +601111,188.58,45.373 +601112,186.44,45.406 +601113,191.65,45.373 +601114,189.47,45.377 +601115,187.32,45.366 +601116,185.2,45.344 +601117,190.33,45.479 +601118,188.18,45.426 +601119,186.06,45.36 +601120,183.96,45.281 +601121,189.02,45.585 +601122,186.9,45.476 +601123,184.8,45.353 +601124,182.73,45.218 +601125,187.7,45.691 +601126,185.61,45.525 +601127,183.54,45.346 +601128,181.49,45.156 +601129,186.38,45.797 +601130,184.32,45.575 +601131,182.29,45.34 +601132,180.26,45.094 +601133,185.06,45.902 +601134,183.04,45.624 +601135,181.03,45.334 +601136,179.03,45.031 +601137,183.73,46.007 +601138,181.75,45.674 +601139,179.77,45.328 +601140,177.8,44.97 +601141,182.41,46.111 +601142,180.46,45.723 +601143,178.52,45.322 +601144,176.58,44.908 +601145,181.08,46.215 +601146,179.17,45.772 +601147,177.26,45.316 +601148,175.35,44.847 +601149,179.75,46.318 +601150,177.88,45.821 +601151,176.01,45.31 +601152,174.13,44.786 +601153,178.42,46.42 +601154,176.59,45.87 +601155,174.76,45.305 +601156,172.91,44.725 +601157,177.09,46.522 +601158,175.3,45.919 +601159,173.5,45.299 +601160,171.69,44.665 +601161,175.76,46.623 +601162,174.01,45.968 +601163,172.25,45.294 +601164,170.48,44.605 +601165,174.43,46.724 +601166,172.72,46.016 +601167,171,45.29 +601168,169.26,44.546 +601169,173.09,46.824 +601170,171.43,46.064 +601171,169.75,45.285 +601172,168.05,44.488 +601173,171.76,46.923 +601174,170.13,46.112 +601175,168.49,45.281 +601176,166.84,44.43 +601177,170.42,47.021 +601178,168.84,46.16 +601179,167.24,45.277 +601180,165.62,44.372 +601181,169.08,47.118 +601182,167.55,46.208 +601183,165.99,45.274 +601184,164.42,44.316 +601185,167.74,47.215 +601186,166.25,46.255 +601187,164.74,45.27 +601188,163.21,44.26 +601189,166.4,47.311 +601190,164.96,46.302 +601191,163.49,45.267 +601192,162,44.205 +601193,165.06,47.405 +601194,163.66,46.349 +601195,162.24,45.265 +601196,160.8,44.151 +601197,163.72,47.499 +601198,162.37,46.396 +601199,160.99,45.262 +601200,159.6,44.098 +601201,162.38,47.591 +601202,161.07,46.442 +601203,159.74,45.26 +601204,158.39,44.045 +601205,161.03,47.683 +601206,159.77,46.488 +601207,158.5,45.259 +601208,157.2,43.994 +601209,159.69,47.774 +601210,158.48,46.534 +601211,157.25,45.258 +601212,156,43.943 +601213,158.34,47.863 +601214,157.18,46.579 +601215,156,45.257 +601216,154.8,43.894 +601217,156.99,47.951 +601218,155.88,46.624 +601219,154.75,45.257 +601220,153.6,43.846 +601221,155.65,48.038 +601222,154.58,46.669 +601223,153.5,45.257 +601224,152.41,43.799 +601225,154.3,48.124 +601226,153.28,46.714 +601227,152.26,45.257 +601228,151.22,43.752 +601229,152.95,48.209 +601230,151.98,46.758 +601231,151.01,45.258 +601232,150.02,43.708 +601233,151.6,48.292 +601234,150.69,46.801 +601235,149.76,45.26 +601236,148.83,43.664 +601237,150.25,48.375 +601238,149.39,46.845 +601239,148.52,45.261 +601240,147.64,43.622 +601241,148.9,48.456 +601242,148.09,46.887 +601243,147.27,45.264 +601244,146.45,43.581 +601245,147.55,48.535 +601246,146.79,46.93 +601247,146.02,45.267 +601248,145.26,43.541 +601249,146.19,48.614 +601250,145.48,46.972 +601251,144.78,45.27 +601252,144.08,43.503 +601253,144.84,48.69 +601254,144.18,47.014 +601255,143.53,45.274 +601256,142.89,43.466 +601257,143.49,48.766 +601258,142.88,47.055 +601259,142.29,45.278 +601260,141.71,43.43 +601261,142.13,48.84 +601262,141.58,47.096 +601263,141.04,45.283 +601264,140.52,43.396 +601265,140.78,48.913 +601266,140.28,47.136 +601267,139.8,45.289 +601268,139.34,43.364 +601269,139.43,48.984 +601270,138.98,47.176 +601271,138.55,45.295 +601272,138.15,43.333 +601273,138.07,49.054 +601274,137.68,47.215 +601275,137.31,45.301 +601276,136.97,43.304 +601277,136.72,49.122 +601278,136.37,47.254 +601279,136.06,45.308 +601280,135.79,43.276 +601281,135.36,49.189 +601282,135.07,47.293 +601283,134.82,45.316 +601284,134.61,43.25 +601285,134.01,49.254 +601286,133.77,47.33 +601287,133.57,45.324 +601288,133.43,43.226 +601289,132.65,49.318 +601290,132.47,47.368 +601291,132.33,45.333 +601292,132.24,43.203 +601293,131.3,49.38 +601294,131.16,47.405 +601295,131.08,45.343 +601296,131.06,43.182 +601297,129.94,49.441 +601298,129.86,47.441 +601299,129.84,45.353 +601300,129.88,43.163 +601301,128.58,49.5 +601302,128.56,47.477 +601303,128.59,45.363 +601304,128.7,43.146 +601305,127.23,49.558 +601306,127.25,47.513 +601307,127.34,45.375 +601308,127.52,43.13 +601309,125.87,49.614 +601310,125.95,47.548 +601311,126.1,45.387 +601312,126.34,43.116 +601313,124.52,49.668 +601314,124.65,47.582 +601315,124.85,45.399 +601316,125.16,43.104 +601317,123.16,49.721 +601318,123.34,47.616 +601319,123.61,45.412 +601320,123.98,43.094 +601321,121.8,49.772 +601322,122.04,47.65 +601323,122.36,45.426 +601324,122.8,43.086 +601325,120.45,49.821 +601326,120.74,47.682 +601327,121.12,45.441 +601328,121.62,43.08 +601329,119.09,49.869 +601330,119.43,47.715 +601331,119.87,45.456 +601332,120.44,43.075 +601333,117.74,49.915 +601334,118.13,47.747 +601335,118.62,45.471 +601336,119.26,43.073 +601337,116.38,49.959 +601338,116.83,47.778 +601339,117.38,45.488 +601340,118.08,43.072 +601341,115.03,50.002 +601342,115.52,47.808 +601343,116.13,45.505 +601344,116.89,43.074 +601345,113.68,50.043 +601346,114.22,47.839 +601347,114.88,45.523 +601348,115.71,43.077 +601349,112.32,50.083 +601350,112.92,47.868 +601351,113.64,45.541 +601352,114.53,43.083 +601353,110.97,50.12 +601354,111.61,47.897 +601355,112.39,45.56 +601356,113.34,43.09 +601357,109.61,50.157 +601358,110.31,47.926 +601359,111.14,45.58 +601360,112.16,43.099 +601361,108.26,50.191 +601362,109.01,47.953 +601363,109.89,45.6 +601364,110.97,43.111 +601365,106.91,50.224 +601366,107.7,47.981 +601367,108.65,45.621 +601368,109.79,43.124 +601369,105.56,50.255 +601370,106.4,48.008 +601371,107.4,45.643 +601372,108.6,43.14 +601373,104.21,50.284 +601374,105.1,48.034 +601375,106.15,45.665 +601376,107.41,43.157 +601377,102.86,50.312 +601378,103.8,48.059 +601379,104.9,45.688 +601380,106.22,43.177 +601381,101.51,50.338 +601382,102.49,48.085 +601383,103.65,45.712 +601384,105.03,43.199 +601385,100.16,50.362 +601386,101.19,48.109 +601387,102.4,45.736 +601388,103.84,43.222 +601389,98.808,50.384 +601390,99.889,48.133 +601391,101.15,45.761 +601392,102.64,43.248 +601393,97.46,50.405 +601394,98.587,48.156 +601395,99.898,45.787 +601396,101.45,43.276 +601397,96.113,50.424 +601398,97.286,48.179 +601399,98.646,45.814 +601400,100.25,43.305 +601401,94.766,50.442 +601402,95.984,48.202 +601403,97.394,45.841 +601404,99.057,43.337 +601405,93.421,50.458 +601406,94.683,48.223 +601407,96.142,45.868 +601408,97.859,43.371 +601409,92.076,50.472 +601410,93.383,48.245 +601411,94.889,45.897 +601412,96.659,43.407 +601413,90.732,50.485 +601414,92.082,48.265 +601415,93.636,45.926 +601416,95.457,43.444 +601417,89.389,50.496 +601418,90.782,48.285 +601419,92.382,45.955 +601420,94.254,43.484 +601421,88.047,50.505 +601422,89.482,48.305 +601423,91.127,45.986 +601424,93.049,43.526 +601425,86.706,50.513 +601426,88.183,48.324 +601427,89.872,46.017 +601428,91.842,43.57 +601429,85.366,50.519 +601430,86.883,48.342 +601431,88.617,46.048 +601432,90.634,43.615 +601433,84.027,50.523 +601434,85.584,48.36 +601435,87.36,46.081 +601436,89.424,43.663 +601437,82.689,50.526 +601438,84.286,48.378 +601439,86.104,46.114 +601440,88.212,43.712 +601441,81.352,50.527 +601442,82.988,48.395 +601443,84.846,46.147 +601444,86.998,43.764 +601445,80.016,50.527 +601446,81.69,48.411 +601447,83.588,46.181 +601448,85.782,43.817 +601449,78.682,50.525 +601450,80.392,48.427 +601451,82.33,46.216 +601452,84.565,43.872 +601453,77.348,50.522 +601454,79.095,48.442 +601455,81.071,46.251 +601456,83.345,43.929 +601457,76.016,50.517 +601458,77.799,48.457 +601459,79.811,46.287 +601460,82.123,43.988 +601461,74.685,50.51 +601462,76.502,48.471 +601463,78.55,46.324 +601464,80.899,44.048 +601465,73.355,50.502 +601466,75.206,48.485 +601467,77.289,46.361 +601468,79.673,44.11 +601469,72.027,50.493 +601470,73.911,48.498 +601471,76.027,46.399 +601472,78.445,44.175 +601473,70.699,50.482 +601474,72.616,48.511 +601475,74.765,46.437 +601476,77.215,44.24 +601477,69.373,50.47 +601478,71.321,48.524 +601479,73.502,46.476 +601480,75.983,44.308 +601481,68.049,50.456 +601482,70.027,48.536 +601483,72.238,46.515 +601484,74.749,44.377 +601485,66.726,50.441 +601486,68.733,48.547 +601487,70.973,46.555 +601488,73.512,44.448 +601489,65.404,50.424 +601490,67.44,48.558 +601491,69.708,46.596 +601492,72.273,44.52 +601493,64.084,50.406 +601494,66.148,48.569 +601495,68.442,46.637 +601496,71.032,44.594 +601497,62.765,50.387 +601498,64.855,48.579 +601499,67.175,46.678 +601500,69.788,44.669 +601501,61.448,50.367 +601502,63.563,48.589 +601503,65.907,46.72 +601504,68.543,44.746 +601505,60.132,50.345 +601506,62.272,48.598 +601507,64.639,46.763 +601508,67.295,44.825 +601509,58.817,50.322 +601510,60.981,48.607 +601511,63.37,46.806 +601512,66.044,44.905 +601513,57.505,50.297 +601514,59.691,48.615 +601515,62.1,46.849 +601516,64.792,44.986 +601517,56.193,50.272 +601518,58.401,48.623 +601519,60.83,46.893 +601520,63.537,45.068 +601521,54.884,50.245 +601522,57.112,48.631 +601523,59.559,46.938 +601524,62.279,45.152 +601525,53.576,50.217 +601526,55.824,48.638 +601527,58.286,46.983 +601528,61.02,45.238 +601529,52.269,50.188 +601530,54.535,48.645 +601531,57.014,47.028 +601532,59.758,45.324 +601533,50.965,50.158 +601534,53.248,48.652 +601535,55.74,47.074 +601536,58.494,45.412 +601537,49.662,50.126 +601538,51.961,48.658 +601539,54.466,47.12 +601540,57.227,45.501 +601541,48.36,50.094 +601542,50.674,48.664 +601543,53.191,47.166 +601544,55.958,45.591 +601545,47.061,50.061 +601546,49.388,48.67 +601547,51.915,47.213 +601548,54.687,45.682 +601549,45.763,50.026 +601550,48.103,48.675 +601551,50.638,47.261 +601552,53.413,45.774 +601553,44.466,49.991 +601554,46.818,48.68 +601555,49.36,47.308 +601556,52.138,45.867 +601557,43.172,49.954 +601558,45.534,48.685 +601559,48.082,47.356 +601560,50.859,45.961 +601561,41.879,49.917 +601562,44.25,48.689 +601563,46.803,47.405 +601564,49.579,46.057 +601565,40.588,49.879 +601566,42.967,48.693 +601567,45.523,47.454 +601568,48.296,46.153 +601569,39.299,49.84 +601570,41.684,48.697 +601571,44.243,47.503 +601572,47.011,46.249 +601573,38.012,49.8 +601574,40.402,48.701 +601575,42.961,47.552 +601576,45.724,46.347 +601577,36.726,49.759 +601578,39.121,48.704 +601579,41.679,47.601 +601580,44.435,46.446 +601581,35.443,49.718 +601582,37.84,48.707 +601583,40.396,47.651 +601584,43.143,46.545 +601585,34.161,49.676 +601586,36.56,48.71 +601587,39.113,47.702 +601588,41.849,46.645 +601589,32.881,49.633 +601590,35.28,48.713 +601591,37.828,47.752 +601592,40.553,46.745 +601593,31.602,49.589 +601594,34.001,48.715 +601595,36.543,47.803 +601596,39.255,46.846 +601597,30.326,49.545 +601598,32.722,48.718 +601599,35.257,47.853 +601600,37.954,46.948 +601601,29.052,49.5 +601602,31.444,48.72 +601603,33.97,47.905 +601604,36.652,47.05 +601605,27.779,49.455 +601606,30.167,48.722 +601607,32.682,47.956 +601608,35.347,47.153 +601609,26.508,49.409 +601610,28.89,48.724 +601611,31.394,48.007 +601612,34.04,47.256 +601613,25.239,49.363 +601614,27.614,48.726 +601615,30.105,48.059 +601616,32.732,47.359 +601617,23.972,49.316 +601618,26.338,48.727 +601619,28.815,48.111 +601620,31.421,47.463 +601621,22.707,49.269 +601622,25.063,48.729 +601623,27.525,48.162 +601624,30.108,47.567 +601625,21.444,49.221 +601626,23.788,48.73 +601627,26.233,48.215 +601628,28.793,47.671 +601629,20.183,49.173 +601630,22.514,48.732 +601631,24.941,48.267 +601632,27.477,47.776 +601633,18.923,49.125 +601634,21.241,48.733 +601635,23.649,48.319 +601636,26.158,47.88 +601637,17.666,49.077 +601638,19.968,48.734 +601639,22.355,48.371 +601640,24.838,47.985 +601641,16.41,49.028 +601642,18.696,48.735 +601643,21.061,48.424 +601644,23.515,48.09 +601645,15.156,48.979 +601646,17.424,48.737 +601647,19.766,48.476 +601648,22.191,48.195 +601649,13.904,48.93 +601650,16.153,48.738 +601651,18.471,48.529 +601652,20.865,48.3 +601653,12.654,48.881 +601654,14.882,48.739 +601655,17.174,48.581 +601656,19.537,48.405 +601657,11.406,48.831 +601658,13.612,48.74 +601659,15.877,48.634 +601660,18.208,48.51 +601661,10.159,48.782 +601662,12.343,48.741 +601663,14.58,48.686 +601664,16.877,48.614 +601665,8.9147,48.733 +601666,11.074,48.743 +601667,13.282,48.739 +601668,15.544,48.719 +601669,7.6719,48.683 +601670,9.805,48.744 +601671,11.983,48.791 +601672,14.21,48.823 +601673,6.4309,48.634 +601674,8.5369,48.745 +601675,10.683,48.844 +601676,12.873,48.927 +601677,5.1917,48.585 +601678,7.2694,48.747 +601679,9.383,48.896 +601680,11.536,49.031 +601681,3.9543,48.536 +601682,6.0024,48.748 +601683,8.0822,48.948 +601684,10.197,49.134 +601685,2.7186,48.487 +601686,4.7359,48.75 +601687,6.7807,49.001 +601688,8.856,49.238 +601689,1.4847,48.439 +601690,3.4698,48.752 +601691,5.4787,49.053 +601692,7.5138,49.34 +601693,0.25249,48.39 +601694,2.2042,48.754 +601695,4.1761,49.105 +601696,6.1703,49.443 +601697,359.02,48.342 +601698,0.9391,48.756 +601699,2.8729,49.157 +601700,4.8253,49.544 +601701,357.79,48.295 +601702,359.67,48.758 +601703,1.5691,49.209 +601704,3.479,49.646 +601705,356.57,48.247 +601706,358.41,48.76 +601707,0.2648,49.26 +601708,2.1314,49.746 +601709,355.34,48.201 +601710,357.15,48.763 +601711,358.96,49.312 +601712,0.78248,49.847 +601713,354.12,48.154 +601714,355.88,48.766 +601715,357.65,49.363 +601716,359.43,49.946 +601717,352.89,48.108 +601718,354.62,48.769 +601719,356.35,49.414 +601720,358.08,50.045 +601721,351.67,48.063 +601722,353.36,48.772 +601723,355.04,49.465 +601724,356.73,50.143 +601725,350.45,48.018 +601726,352.1,48.775 +601727,353.74,49.516 +601728,355.37,50.241 +601729,349.24,47.974 +601730,350.83,48.779 +601731,352.43,49.567 +601732,354.02,50.337 +601733,348.02,47.931 +601734,349.57,48.783 +601735,351.12,49.617 +601736,352.66,50.433 +601737,346.81,47.888 +601738,348.31,48.787 +601739,349.81,49.667 +601740,351.31,50.528 +601741,345.59,47.846 +601742,347.05,48.791 +601743,348.5,49.717 +601744,349.95,50.623 +601745,344.38,47.805 +601746,345.79,48.796 +601747,347.19,49.767 +601748,348.59,50.716 +601749,343.17,47.764 +601750,344.53,48.801 +601751,345.88,49.816 +601752,347.23,50.808 +601753,341.96,47.724 +601754,343.27,48.806 +601755,344.57,49.865 +601756,345.87,50.9 +601757,340.75,47.686 +601758,342.01,48.812 +601759,343.26,49.914 +601760,344.51,50.99 +601761,339.55,47.648 +601762,340.75,48.818 +601763,341.95,49.962 +601764,343.15,51.08 +601765,338.34,47.611 +601766,339.49,48.824 +601767,340.64,50.01 +601768,341.78,51.168 +601769,337.14,47.575 +601770,338.23,48.831 +601771,339.33,50.058 +601772,340.42,51.256 +601773,335.93,47.54 +601774,336.98,48.838 +601775,338.02,50.105 +601776,339.06,51.342 +601777,334.73,47.506 +601778,335.72,48.845 +601779,336.7,50.152 +601780,337.69,51.428 +601781,333.53,47.473 +601782,334.46,48.853 +601783,335.39,50.199 +601784,336.32,51.512 +601785,332.33,47.441 +601786,333.2,48.861 +601787,334.08,50.245 +601788,334.96,51.595 +601789,331.13,47.411 +601790,331.95,48.87 +601791,332.77,50.291 +601792,333.59,51.676 +601793,329.93,47.381 +601794,330.69,48.879 +601795,331.45,50.337 +601796,332.22,51.757 +601797,328.73,47.353 +601798,329.43,48.888 +601799,330.14,50.382 +601800,330.86,51.836 +601801,327.54,47.326 +601802,328.17,48.898 +601803,328.82,50.427 +601804,329.49,51.914 +601805,326.34,47.301 +601806,326.92,48.909 +601807,327.51,50.472 +601808,328.12,51.991 +601809,325.14,47.276 +601810,325.66,48.919 +601811,326.2,50.515 +601812,326.75,52.067 +601813,323.95,47.253 +601814,324.4,48.931 +601815,324.88,50.559 +601816,325.38,52.141 +601817,322.76,47.232 +601818,323.15,48.942 +601819,323.57,50.602 +601820,324.01,52.214 +601821,321.56,47.211 +601822,321.89,48.955 +601823,322.25,50.645 +601824,322.64,52.285 +601825,320.37,47.192 +601826,320.63,48.967 +601827,320.94,50.687 +601828,321.27,52.355 +601829,319.17,47.175 +601830,319.38,48.98 +601831,319.62,50.729 +601832,319.9,52.424 +601833,317.98,47.159 +601834,318.12,48.994 +601835,318.31,50.77 +601836,318.53,52.491 +601837,316.79,47.144 +601838,316.86,49.008 +601839,316.99,50.811 +601840,317.16,52.557 +601841,315.6,47.131 +601842,315.61,49.023 +601843,315.67,50.851 +601844,315.79,52.622 +601845,314.41,47.12 +601846,314.35,49.038 +601847,314.36,50.891 +601848,314.42,52.685 +601849,313.21,47.11 +601850,313.09,49.054 +601851,313.04,50.931 +601852,313.05,52.746 +601853,312.02,47.102 +601854,311.84,49.07 +601855,311.73,50.97 +601856,311.68,52.806 +601857,310.83,47.095 +601858,310.58,49.087 +601859,310.41,51.008 +601860,310.31,52.865 +601861,309.64,47.09 +601862,309.32,49.104 +601863,309.09,51.046 +601864,308.94,52.922 +601865,308.45,47.086 +601866,308.07,49.122 +601867,307.78,51.084 +601868,307.57,52.978 +601869,307.25,47.084 +601870,306.81,49.14 +601871,306.46,51.121 +601872,306.2,53.032 +601873,306.06,47.084 +601874,305.55,49.159 +601875,305.15,51.157 +601876,304.83,53.084 +601877,304.87,47.086 +601878,304.29,49.179 +601879,303.83,51.193 +601880,303.46,53.135 +601881,303.68,47.089 +601882,303.04,49.199 +601883,302.51,51.228 +601884,302.09,53.185 +601885,302.48,47.094 +601886,301.78,49.22 +601887,301.2,51.263 +601888,300.72,53.233 +601889,301.29,47.1 +601890,300.52,49.241 +601891,299.88,51.298 +601892,299.35,53.279 +601893,300.09,47.109 +601894,299.26,49.263 +601895,298.57,51.331 +601896,297.98,53.324 +601897,298.9,47.119 +601898,298,49.285 +601899,297.25,51.365 +601900,296.62,53.367 +601901,297.7,47.13 +601902,296.74,49.308 +601903,295.94,51.398 +601904,295.25,53.409 +601905,296.51,47.144 +601906,295.49,49.332 +601907,294.62,51.43 +601908,293.88,53.449 +601909,295.31,47.159 +601910,294.23,49.356 +601911,293.3,51.462 +601912,292.52,53.487 +601913,294.11,47.176 +601914,292.97,49.38 +601915,291.99,51.493 +601916,291.15,53.524 +601917,292.91,47.195 +601918,291.71,49.406 +601919,290.67,51.523 +601920,289.78,53.559 +601921,291.71,47.216 +601922,290.45,49.431 +601923,289.36,51.554 +601924,288.42,53.593 +601925,290.51,47.238 +601926,289.18,49.458 +601927,288.05,51.583 +601928,287.06,53.625 +601929,289.31,47.263 +601930,287.92,49.485 +601931,286.73,51.612 +601932,285.69,53.656 +601933,288.11,47.289 +601934,286.66,49.512 +601935,285.42,51.641 +601936,284.33,53.685 +601937,286.9,47.316 +601938,285.4,49.541 +601939,284.1,51.669 +601940,282.97,53.712 +601941,285.7,47.346 +601942,284.14,49.569 +601943,282.79,51.696 +601944,281.61,53.738 +601945,284.49,47.377 +601946,282.87,49.599 +601947,281.48,51.723 +601948,280.25,53.762 +601949,283.28,47.41 +601950,281.61,49.629 +601951,280.16,51.749 +601952,278.89,53.785 +601953,282.07,47.445 +601954,280.35,49.659 +601955,278.85,51.775 +601956,277.53,53.806 +601957,280.86,47.482 +601958,279.08,49.69 +601959,277.54,51.801 +601960,276.17,53.826 +601961,279.65,47.52 +601962,277.82,49.722 +601963,276.22,51.825 +601964,274.82,53.844 +601965,278.43,47.561 +601966,276.55,49.754 +601967,274.91,51.85 +601968,273.46,53.86 +601969,277.22,47.602 +601970,275.29,49.787 +601971,273.6,51.873 +601972,272.11,53.875 +601973,276,47.646 +601974,274.02,49.82 +601975,272.29,51.897 +601976,270.75,53.888 +601977,274.78,47.691 +601978,272.75,49.854 +601979,270.98,51.919 +601980,269.4,53.9 +601981,273.56,47.738 +601982,271.49,49.888 +601983,269.67,51.942 +601984,268.05,53.911 +601985,272.34,47.787 +601986,270.22,49.923 +601987,268.36,51.963 +601988,266.7,53.92 +601989,271.11,47.838 +601990,268.95,49.959 +601991,267.05,51.984 +601992,265.35,53.927 +601993,269.89,47.89 +601994,267.68,49.995 +601995,265.74,52.005 +601996,264,53.933 +601997,268.66,47.943 +601998,266.41,50.031 +601999,264.43,52.025 +602000,262.66,53.937 +602001,267.43,47.999 +602002,265.14,50.068 +602003,263.12,52.045 +602004,261.31,53.94 +602005,266.2,48.056 +602006,263.87,50.106 +602007,261.81,52.064 +602008,259.97,53.942 +602009,264.96,48.114 +602010,262.6,50.144 +602011,260.5,52.083 +602012,258.63,53.942 +602013,263.73,48.174 +602014,261.32,50.183 +602015,259.19,52.101 +602016,257.28,53.941 +602017,262.49,48.236 +602018,260.05,50.222 +602019,257.89,52.119 +602020,255.94,53.938 +602021,261.25,48.299 +602022,258.78,50.262 +602023,256.58,52.136 +602024,254.61,53.934 +602025,260.01,48.364 +602026,257.5,50.302 +602027,255.28,52.153 +602028,253.27,53.929 +602029,258.76,48.43 +602030,256.23,50.343 +602031,253.97,52.17 +602032,251.93,53.922 +602033,257.51,48.498 +602034,254.95,50.384 +602035,252.66,52.186 +602036,250.6,53.914 +602037,256.27,48.567 +602038,253.67,50.425 +602039,251.36,52.201 +602040,249.26,53.905 +602041,255.02,48.637 +602042,252.4,50.468 +602043,250.06,52.216 +602044,247.93,53.895 +602045,253.76,48.709 +602046,251.12,50.51 +602047,248.75,52.231 +602048,246.6,53.883 +602049,252.51,48.782 +602050,249.84,50.553 +602051,247.45,52.245 +602052,245.27,53.87 +602053,251.25,48.857 +602054,248.56,50.596 +602055,246.15,52.259 +602056,243.95,53.855 +602057,249.99,48.933 +602058,247.28,50.64 +602059,244.84,52.273 +602060,242.62,53.84 +602061,248.73,49.01 +602062,246,50.684 +602063,243.54,52.286 +602064,241.3,53.823 +602065,247.46,49.088 +602066,244.72,50.729 +602067,242.24,52.299 +602068,239.97,53.805 +602069,246.2,49.167 +602070,243.44,50.774 +602071,240.94,52.311 +602072,238.65,53.787 +602073,244.93,49.248 +602074,242.15,50.82 +602075,239.64,52.323 +602076,237.34,53.767 +602077,243.66,49.33 +602078,240.87,50.865 +602079,238.34,52.335 +602080,236.02,53.745 +602081,242.38,49.413 +602082,239.59,50.912 +602083,237.04,52.346 +602084,234.7,53.723 +602085,241.11,49.497 +602086,238.3,50.958 +602087,235.74,52.357 +602088,233.39,53.7 +602089,239.83,49.582 +602090,237.01,51.005 +602091,234.44,52.367 +602092,232.08,53.676 +602093,238.55,49.668 +602094,235.73,51.052 +602095,233.15,52.378 +602096,230.76,53.651 +602097,237.27,49.755 +602098,234.44,51.1 +602099,231.85,52.387 +602100,229.46,53.625 +602101,235.98,49.843 +602102,233.15,51.148 +602103,230.55,52.397 +602104,228.15,53.598 +602105,234.69,49.932 +602106,231.86,51.196 +602107,229.26,52.406 +602108,226.84,53.57 +602109,233.4,50.022 +602110,230.57,51.244 +602111,227.96,52.416 +602112,225.54,53.541 +602113,232.11,50.112 +602114,229.28,51.293 +602115,226.67,52.424 +602116,224.24,53.512 +602117,230.82,50.203 +602118,227.99,51.342 +602119,225.38,52.433 +602120,222.94,53.481 +602121,229.52,50.295 +602122,226.7,51.392 +602123,224.08,52.441 +602124,221.64,53.45 +602125,228.22,50.388 +602126,225.41,51.441 +602127,222.79,52.449 +602128,220.34,53.418 +602129,226.92,50.482 +602130,224.11,51.491 +602131,221.5,52.457 +602132,219.05,53.386 +602133,225.62,50.576 +602134,222.82,51.541 +602135,220.21,52.465 +602136,217.76,53.352 +602137,224.31,50.671 +602138,221.52,51.591 +602139,218.92,52.472 +602140,216.46,53.318 +602141,223.01,50.766 +602142,220.23,51.641 +602143,217.62,52.479 +602144,215.18,53.284 +602145,221.7,50.862 +602146,218.93,51.692 +602147,216.34,52.486 +602148,213.89,53.249 +602149,220.39,50.958 +602150,217.63,51.743 +602151,215.05,52.493 +602152,212.6,53.213 +602153,219.07,51.055 +602154,216.33,51.794 +602155,213.76,52.5 +602156,211.32,53.177 +602157,217.76,51.152 +602158,215.04,51.845 +602159,212.47,52.506 +602160,210.04,53.14 +602161,216.44,51.249 +602162,213.74,51.896 +602163,211.18,52.513 +602164,208.76,53.103 +602165,215.12,51.347 +602166,212.44,51.948 +602167,209.9,52.519 +602168,207.48,53.065 +602169,213.8,51.445 +602170,211.13,51.999 +602171,208.61,52.525 +602172,206.2,53.027 +602173,212.47,51.544 +602174,209.83,52.051 +602175,207.32,52.531 +602176,204.93,52.989 +602177,211.15,51.642 +602178,208.53,52.102 +602179,206.04,52.537 +602180,203.66,52.95 +602181,209.82,51.741 +602182,207.23,52.154 +602183,204.75,52.543 +602184,202.39,52.911 +602185,208.49,51.84 +602186,205.92,52.206 +602187,203.47,52.549 +602188,201.12,52.872 +602189,207.16,51.939 +602190,204.62,52.258 +602191,202.19,52.555 +602192,199.85,52.832 +602193,205.82,52.038 +602194,203.31,52.31 +602195,200.9,52.56 +602196,198.58,52.793 +602197,204.49,52.137 +602198,202.01,52.362 +602199,199.62,52.566 +602200,197.32,52.753 +602201,203.15,52.237 +602202,200.7,52.414 +602203,198.34,52.572 +602204,196.06,52.713 +602205,201.81,52.336 +602206,199.39,52.465 +602207,197.06,52.577 +602208,194.8,52.673 +602209,200.47,52.435 +602210,198.08,52.517 +602211,195.78,52.583 +602212,193.54,52.633 +602213,199.13,52.534 +602214,196.78,52.569 +602215,194.5,52.588 +602216,192.29,52.593 +602217,197.79,52.632 +602218,195.47,52.621 +602219,193.22,52.594 +602220,191.03,52.553 +602221,196.44,52.731 +602222,194.16,52.673 +602223,191.94,52.6 +602224,189.78,52.513 +602225,195.09,52.829 +602226,192.85,52.725 +602227,190.66,52.606 +602228,188.53,52.473 +602229,193.74,52.927 +602230,191.54,52.777 +602231,189.38,52.611 +602232,187.28,52.434 +602233,192.39,53.025 +602234,190.22,52.828 +602235,188.1,52.617 +602236,186.03,52.394 +602237,191.04,53.122 +602238,188.91,52.88 +602239,186.83,52.623 +602240,184.79,52.355 +602241,189.69,53.219 +602242,187.6,52.931 +602243,185.55,52.629 +602244,183.54,52.315 +602245,188.33,53.316 +602246,186.28,52.982 +602247,184.28,52.635 +602248,182.3,52.277 +602249,186.98,53.412 +602250,184.97,53.034 +602251,183,52.642 +602252,181.06,52.238 +602253,185.62,53.508 +602254,183.66,53.085 +602255,181.72,52.648 +602256,179.82,52.2 +602257,184.26,53.603 +602258,182.34,53.136 +602259,180.45,52.655 +602260,178.58,52.162 +602261,182.9,53.697 +602262,181.03,53.186 +602263,179.18,52.661 +602264,177.35,52.125 +602265,181.54,53.791 +602266,179.71,53.237 +602267,177.9,52.668 +602268,176.11,52.088 +602269,180.18,53.885 +602270,178.39,53.287 +602271,176.63,52.675 +602272,174.88,52.051 +602273,178.81,53.977 +602274,177.08,53.337 +602275,175.35,52.683 +602276,173.65,52.015 +602277,177.45,54.069 +602278,175.76,53.387 +602279,174.08,52.69 +602280,172.42,51.98 +602281,176.08,54.161 +602282,174.44,53.437 +602283,172.81,52.698 +602284,171.19,51.945 +602285,174.71,54.251 +602286,173.12,53.486 +602287,171.54,52.706 +602288,169.97,51.911 +602289,173.35,54.341 +602290,171.8,53.536 +602291,170.27,52.714 +602292,168.74,51.877 +602293,171.98,54.43 +602294,170.48,53.585 +602295,169,52.722 +602296,167.52,51.844 +602297,170.61,54.519 +602298,169.16,53.633 +602299,167.72,52.731 +602300,166.29,51.812 +602301,169.24,54.606 +602302,167.84,53.682 +602303,166.45,52.74 +602304,165.07,51.781 +602305,167.86,54.693 +602306,166.52,53.73 +602307,165.18,52.749 +602308,163.85,51.75 +602309,166.49,54.778 +602310,165.2,53.778 +602311,163.91,52.758 +602312,162.63,51.72 +602313,165.12,54.863 +602314,163.88,53.825 +602315,162.64,52.768 +602316,161.41,51.691 +602317,163.74,54.946 +602318,162.56,53.873 +602319,161.38,52.778 +602320,160.2,51.663 +602321,162.37,55.029 +602322,161.24,53.92 +602323,160.11,52.788 +602324,158.98,51.636 +602325,160.99,55.111 +602326,159.91,53.966 +602327,158.84,52.799 +602328,157.77,51.61 +602329,159.62,55.192 +602330,158.59,54.013 +602331,157.57,52.81 +602332,156.55,51.584 +602333,158.24,55.271 +602334,157.27,54.058 +602335,156.3,52.821 +602336,155.34,51.56 +602337,156.86,55.35 +602338,155.94,54.104 +602339,155.03,52.833 +602340,154.13,51.537 +602341,155.49,55.427 +602342,154.62,54.149 +602343,153.76,52.845 +602344,152.92,51.515 +602345,154.11,55.503 +602346,153.3,54.194 +602347,152.5,52.857 +602348,151.71,51.493 +602349,152.73,55.578 +602350,151.97,54.238 +602351,151.23,52.87 +602352,150.5,51.473 +602353,151.35,55.652 +602354,150.65,54.283 +602355,149.96,52.883 +602356,149.29,51.455 +602357,149.97,55.725 +602358,149.32,54.326 +602359,148.69,52.897 +602360,148.08,51.437 +602361,148.59,55.797 +602362,148,54.37 +602363,147.43,52.911 +602364,146.87,51.42 +602365,147.21,55.867 +602366,146.67,54.412 +602367,146.16,52.925 +602368,145.67,51.405 +602369,145.83,55.936 +602370,145.35,54.455 +602371,144.89,52.94 +602372,144.46,51.391 +602373,144.45,56.004 +602374,144.02,54.497 +602375,143.63,52.955 +602376,143.26,51.378 +602377,143.07,56.07 +602378,142.7,54.538 +602379,142.36,52.971 +602380,142.05,51.366 +602381,141.69,56.136 +602382,141.37,54.58 +602383,141.09,52.987 +602384,140.85,51.356 +602385,140.3,56.199 +602386,140.05,54.62 +602387,139.83,53.003 +602388,139.64,51.347 +602389,138.92,56.262 +602390,138.72,54.661 +602391,138.56,53.02 +602392,138.44,51.339 +602393,137.54,56.323 +602394,137.4,54.7 +602395,137.29,53.037 +602396,137.23,51.333 +602397,136.16,56.383 +602398,136.07,54.74 +602399,136.02,53.055 +602400,136.03,51.328 +602401,134.78,56.442 +602402,134.74,54.779 +602403,134.76,53.073 +602404,134.83,51.324 +602405,133.4,56.499 +602406,133.42,54.817 +602407,133.49,53.092 +602408,133.62,51.322 +602409,132.02,56.554 +602410,132.09,54.855 +602411,132.22,53.111 +602412,132.42,51.321 +602413,130.64,56.609 +602414,130.77,54.893 +602415,130.96,53.131 +602416,131.22,51.322 +602417,129.25,56.662 +602418,129.44,54.93 +602419,129.69,53.151 +602420,130.01,51.324 +602421,127.87,56.713 +602422,128.11,54.966 +602423,128.42,53.172 +602424,128.81,51.328 +602425,126.49,56.763 +602426,126.79,55.002 +602427,127.15,53.193 +602428,127.6,51.333 +602429,125.11,56.812 +602430,125.46,55.038 +602431,125.89,53.215 +602432,126.4,51.34 +602433,123.73,56.859 +602434,124.14,55.073 +602435,124.62,53.237 +602436,125.2,51.348 +602437,122.35,56.905 +602438,122.81,55.107 +602439,123.35,53.259 +602440,123.99,51.358 +602441,120.98,56.949 +602442,121.49,55.141 +602443,122.08,53.283 +602444,122.79,51.369 +602445,119.6,56.992 +602446,120.16,55.175 +602447,120.81,53.306 +602448,121.58,51.382 +602449,118.22,57.033 +602450,118.83,55.208 +602451,119.55,53.33 +602452,120.37,51.396 +602453,116.84,57.073 +602454,117.51,55.241 +602455,118.28,53.355 +602456,119.17,51.412 +602457,115.46,57.112 +602458,116.18,55.273 +602459,117.01,53.38 +602460,117.96,51.429 +602461,114.09,57.148 +602462,114.86,55.304 +602463,115.74,53.406 +602464,116.75,51.448 +602465,112.71,57.184 +602466,113.53,55.335 +602467,114.47,53.432 +602468,115.54,51.469 +602469,111.34,57.218 +602470,112.21,55.366 +602471,113.2,53.458 +602472,114.33,51.491 +602473,109.96,57.25 +602474,110.88,55.396 +602475,111.93,53.486 +602476,113.12,51.514 +602477,108.59,57.281 +602478,109.56,55.426 +602479,110.66,53.513 +602480,111.91,51.54 +602481,107.21,57.311 +602482,108.24,55.455 +602483,109.39,53.542 +602484,110.69,51.567 +602485,105.84,57.339 +602486,106.91,55.483 +602487,108.12,53.57 +602488,109.48,51.595 +602489,104.47,57.366 +602490,105.59,55.511 +602491,106.84,53.599 +602492,108.27,51.625 +602493,103.1,57.391 +602494,104.27,55.539 +602495,105.57,53.629 +602496,107.05,51.656 +602497,101.73,57.414 +602498,102.94,55.566 +602499,104.3,53.659 +602500,105.83,51.69 +602501,100.36,57.437 +602502,101.62,55.592 +602503,103.03,53.69 +602504,104.61,51.724 +602505,98.992,57.457 +602506,100.3,55.618 +602507,101.75,53.721 +602508,103.39,51.761 +602509,97.625,57.477 +602510,98.975,55.644 +602511,100.48,53.753 +602512,102.17,51.798 +602513,96.259,57.494 +602514,97.653,55.669 +602515,99.205,53.785 +602516,100.95,51.838 +602517,94.894,57.511 +602518,96.331,55.693 +602519,97.93,53.818 +602520,99.726,51.879 +602521,93.53,57.526 +602522,95.01,55.717 +602523,96.655,53.851 +602524,98.501,51.921 +602525,92.166,57.54 +602526,93.689,55.741 +602527,95.379,53.885 +602528,97.274,51.965 +602529,90.804,57.552 +602530,92.368,55.764 +602531,94.103,53.919 +602532,96.045,52.01 +602533,89.444,57.562 +602534,91.048,55.787 +602535,92.826,53.954 +602536,94.815,52.057 +602537,88.084,57.572 +602538,89.728,55.809 +602539,91.549,53.989 +602540,93.584,52.106 +602541,86.725,57.58 +602542,88.409,55.831 +602543,90.271,54.024 +602544,92.35,52.156 +602545,85.368,57.587 +602546,87.09,55.852 +602547,88.992,54.061 +602548,91.115,52.207 +602549,84.012,57.592 +602550,85.771,55.872 +602551,87.713,54.097 +602552,89.878,52.26 +602553,82.657,57.596 +602554,84.453,55.893 +602555,86.434,54.134 +602556,88.64,52.314 +602557,81.303,57.598 +602558,83.135,55.912 +602559,85.153,54.172 +602560,87.399,52.37 +602561,79.951,57.6 +602562,81.818,55.932 +602563,83.873,54.209 +602564,86.157,52.427 +602565,78.6,57.6 +602566,80.501,55.951 +602567,82.591,54.248 +602568,84.912,52.485 +602569,77.25,57.599 +602570,79.185,55.969 +602571,81.309,54.287 +602572,83.666,52.545 +602573,75.902,57.596 +602574,77.869,55.987 +602575,80.027,54.326 +602576,82.418,52.606 +602577,74.555,57.592 +602578,76.553,56.005 +602579,78.743,54.365 +602580,81.168,52.668 +602581,73.21,57.587 +602582,75.238,56.022 +602583,77.459,54.406 +602584,79.916,52.732 +602585,71.866,57.581 +602586,73.924,56.039 +602587,76.175,54.446 +602588,78.662,52.797 +602589,70.524,57.574 +602590,72.61,56.055 +602591,74.889,54.487 +602592,77.406,52.863 +602593,69.183,57.565 +602594,71.296,56.071 +602595,73.604,54.528 +602596,76.147,52.931 +602597,67.843,57.556 +602598,69.983,56.087 +602599,72.317,54.57 +602600,74.887,52.999 +602601,66.505,57.545 +602602,68.671,56.102 +602603,71.03,54.612 +602604,73.625,53.069 +602605,65.169,57.533 +602606,67.359,56.117 +602607,69.742,54.654 +602608,72.36,53.14 +602609,63.834,57.52 +602610,66.047,56.131 +602611,68.453,54.697 +602612,71.094,53.212 +602613,62.501,57.506 +602614,64.736,56.145 +602615,67.164,54.74 +602616,69.825,53.286 +602617,61.169,57.491 +602618,63.426,56.159 +602619,65.874,54.784 +602620,68.554,53.36 +602621,59.839,57.475 +602622,62.116,56.172 +602623,64.583,54.828 +602624,67.28,53.435 +602625,58.511,57.457 +602626,60.807,56.185 +602627,63.292,54.872 +602628,66.005,53.512 +602629,57.184,57.439 +602630,59.498,56.198 +602631,61.999,54.916 +602632,64.728,53.589 +602633,55.859,57.42 +602634,58.19,56.21 +602635,60.707,54.961 +602636,63.448,53.667 +602637,54.536,57.4 +602638,56.883,56.222 +602639,59.413,55.006 +602640,62.166,53.747 +602641,53.214,57.379 +602642,55.576,56.234 +602643,58.119,55.051 +602644,60.882,53.827 +602645,51.894,57.358 +602646,54.269,56.246 +602647,56.824,55.097 +602648,59.595,53.908 +602649,50.576,57.335 +602650,52.963,56.257 +602651,55.528,55.143 +602652,58.307,53.99 +602653,49.26,57.312 +602654,51.658,56.268 +602655,54.231,55.189 +602656,57.016,54.072 +602657,47.945,57.287 +602658,50.353,56.278 +602659,52.934,55.236 +602660,55.723,54.156 +602661,46.632,57.262 +602662,49.049,56.288 +602663,51.636,55.282 +602664,54.428,54.24 +602665,45.321,57.237 +602666,47.746,56.299 +602667,50.338,55.329 +602668,53.13,54.325 +602669,44.012,57.21 +602670,46.443,56.308 +602671,49.038,55.377 +602672,51.83,54.411 +602673,42.704,57.183 +602674,45.14,56.318 +602675,47.738,55.424 +602676,50.529,54.497 +602677,41.398,57.155 +602678,43.839,56.327 +602679,46.437,55.472 +602680,49.225,54.584 +602681,40.094,57.127 +602682,42.537,56.337 +602683,45.136,55.519 +602684,47.918,54.671 +602685,38.792,57.098 +602686,41.237,56.346 +602687,43.833,55.567 +602688,46.61,54.759 +602689,37.492,57.068 +602690,39.937,56.354 +602691,42.53,55.615 +602692,45.3,54.848 +602693,36.193,57.038 +602694,38.637,56.363 +602695,41.226,55.664 +602696,43.987,54.937 +602697,34.897,57.007 +602698,37.339,56.371 +602699,39.922,55.712 +602700,42.672,55.026 +602701,33.602,56.976 +602702,36.04,56.38 +602703,38.617,55.761 +602704,41.355,55.116 +602705,32.309,56.945 +602706,34.743,56.388 +602707,37.311,55.809 +602708,40.036,55.206 +602709,31.018,56.913 +602710,33.446,56.396 +602711,36.004,55.858 +602712,38.715,55.297 +602713,29.728,56.88 +602714,32.149,56.404 +602715,34.697,55.907 +602716,37.392,55.388 +602717,28.441,56.848 +602718,30.854,56.411 +602719,33.389,55.956 +602720,36.067,55.479 +602721,27.155,56.815 +602722,29.558,56.419 +602723,32.08,56.005 +602724,34.74,55.57 +602725,25.871,56.781 +602726,28.264,56.427 +602727,30.771,56.054 +602728,33.411,55.662 +602729,24.589,56.748 +602730,26.97,56.434 +602731,29.461,56.104 +602732,32.08,55.753 +602733,23.309,56.714 +602734,25.676,56.441 +602735,28.15,56.153 +602736,30.747,55.845 +602737,22.031,56.68 +602738,24.383,56.449 +602739,26.838,56.202 +602740,29.412,55.937 +602741,20.754,56.646 +602742,23.091,56.456 +602743,25.526,56.251 +602744,28.075,56.029 +602745,19.479,56.611 +602746,21.799,56.463 +602747,24.213,56.301 +602748,26.737,56.121 +602749,18.206,56.577 +602750,20.508,56.47 +602751,22.9,56.35 +602752,25.396,56.213 +602753,16.935,56.542 +602754,19.217,56.478 +602755,21.586,56.399 +602756,24.054,56.305 +602757,15.666,56.508 +602758,17.927,56.485 +602759,20.271,56.449 +602760,22.71,56.397 +602761,14.398,56.474 +602762,16.637,56.492 +602763,18.956,56.498 +602764,21.364,56.489 +602765,13.132,56.439 +602766,15.348,56.499 +602767,17.64,56.547 +602768,20.016,56.581 +602769,11.868,56.405 +602770,14.06,56.506 +602771,16.323,56.596 +602772,18.667,56.672 +602773,10.605,56.37 +602774,12.772,56.514 +602775,15.006,56.645 +602776,17.316,56.764 +602777,9.3446,56.336 +602778,11.484,56.521 +602779,13.688,56.694 +602780,15.964,56.855 +602781,8.0856,56.302 +602782,10.197,56.528 +602783,12.369,56.743 +602784,14.61,56.945 +602785,6.8283,56.268 +602786,8.9109,56.536 +602787,11.05,56.792 +602788,13.254,57.036 +602789,5.5726,56.235 +602790,7.625,56.543 +602791,9.7307,56.841 +602792,11.897,57.126 +602793,4.3186,56.202 +602794,6.3396,56.551 +602795,8.4106,56.89 +602796,10.538,57.216 +602797,3.0662,56.169 +602798,5.0546,56.558 +602799,7.0898,56.938 +602800,9.1777,57.305 +602801,1.8154,56.136 +602802,3.7702,56.566 +602803,5.7686,56.986 +602804,7.8161,57.394 +602805,0.56618,56.104 +602806,2.4862,56.574 +602807,4.4468,57.035 +602808,6.4531,57.482 +602809,359.32,56.072 +602810,1.2026,56.582 +602811,3.1244,57.083 +602812,5.0887,57.57 +602813,358.07,56.04 +602814,359.92,56.59 +602815,1.8016,57.13 +602816,3.723,57.658 +602817,356.83,56.009 +602818,358.64,56.599 +602819,0.47825,57.178 +602820,2.356,57.745 +602821,355.58,55.978 +602822,357.35,56.607 +602823,359.15,57.225 +602824,0.98779,57.831 +602825,354.34,55.948 +602826,356.07,56.616 +602827,357.83,57.273 +602828,359.62,57.917 +602829,353.1,55.919 +602830,354.79,56.625 +602831,356.51,57.32 +602832,358.25,58.002 +602833,351.86,55.89 +602834,353.51,56.634 +602835,355.18,57.367 +602836,356.88,58.086 +602837,350.63,55.862 +602838,352.23,56.643 +602839,353.85,57.413 +602840,355.5,58.169 +602841,349.39,55.834 +602842,350.95,56.653 +602843,352.53,57.459 +602844,354.13,58.252 +602845,348.16,55.807 +602846,349.67,56.663 +602847,351.2,57.506 +602848,352.75,58.334 +602849,346.92,55.781 +602850,348.39,56.672 +602851,349.87,57.551 +602852,351.38,58.416 +602853,345.69,55.755 +602854,347.11,56.683 +602855,348.55,57.597 +602856,350,58.496 +602857,344.46,55.73 +602858,345.83,56.693 +602859,347.22,57.642 +602860,348.62,58.576 +602861,343.23,55.706 +602862,344.55,56.704 +602863,345.89,57.687 +602864,347.24,58.655 +602865,342,55.683 +602866,343.28,56.715 +602867,344.56,57.732 +602868,345.87,58.733 +602869,340.77,55.66 +602870,342,56.726 +602871,343.23,57.776 +602872,344.49,58.809 +602873,339.55,55.639 +602874,340.72,56.738 +602875,341.91,57.82 +602876,343.1,58.886 +602877,338.32,55.618 +602878,339.44,56.749 +602879,340.58,57.864 +602880,341.72,58.961 +602881,337.1,55.599 +602882,338.17,56.762 +602883,339.25,57.907 +602884,340.34,59.035 +602885,335.87,55.58 +602886,336.89,56.774 +602887,337.92,57.95 +602888,338.96,59.108 +602889,334.65,55.562 +602890,335.61,56.787 +602891,336.59,57.993 +602892,337.57,59.18 +602893,333.43,55.545 +602894,334.34,56.8 +602895,335.26,58.036 +602896,336.19,59.251 +602897,332.21,55.529 +602898,333.06,56.813 +602899,333.92,58.078 +602900,334.8,59.321 +602901,330.99,55.514 +602902,331.78,56.827 +602903,332.59,58.119 +602904,333.42,59.39 +602905,329.77,55.501 +602906,330.51,56.841 +602907,331.26,58.16 +602908,332.03,59.457 +602909,328.55,55.488 +602910,329.23,56.856 +602911,329.93,58.201 +602912,330.65,59.524 +602913,327.33,55.477 +602914,327.96,56.871 +602915,328.6,58.242 +602916,329.26,59.59 +602917,326.12,55.466 +602918,326.68,56.886 +602919,327.27,58.282 +602920,327.87,59.654 +602921,324.9,55.457 +602922,325.41,56.901 +602923,325.94,58.322 +602924,326.49,59.717 +602925,323.68,55.449 +602926,324.13,56.917 +602927,324.6,58.361 +602928,325.1,59.779 +602929,322.47,55.442 +602930,322.86,56.934 +602931,323.27,58.4 +602932,323.71,59.84 +602933,321.25,55.436 +602934,321.58,56.95 +602935,321.94,58.438 +602936,322.32,59.899 +602937,320.04,55.432 +602938,320.31,56.968 +602939,320.61,58.476 +602940,320.94,59.958 +602941,318.82,55.428 +602942,319.03,56.985 +602943,319.27,58.514 +602944,319.55,60.015 +602945,317.61,55.426 +602946,317.76,57.003 +602947,317.94,58.551 +602948,318.16,60.07 +602949,316.39,55.426 +602950,316.48,57.021 +602951,316.61,58.588 +602952,316.77,60.125 +602953,315.18,55.426 +602954,315.21,57.04 +602955,315.27,58.624 +602956,315.38,60.178 +602957,313.97,55.428 +602958,313.93,57.059 +602959,313.94,58.66 +602960,313.99,60.23 +602961,312.75,55.431 +602962,312.66,57.079 +602963,312.61,58.695 +602964,312.61,60.28 +602965,311.54,55.436 +602966,311.38,57.099 +602967,311.28,58.73 +602968,311.22,60.33 +602969,310.32,55.442 +602970,310.11,57.12 +602971,309.94,58.765 +602972,309.83,60.378 +602973,309.11,55.449 +602974,308.83,57.141 +602975,308.61,58.799 +602976,308.44,60.424 +602977,307.9,55.457 +602978,307.56,57.162 +602979,307.28,58.832 +602980,307.06,60.469 +602981,306.68,55.467 +602982,306.28,57.184 +602983,305.94,58.866 +602984,305.67,60.513 +602985,305.47,55.479 +602986,305,57.206 +602987,304.61,58.898 +602988,304.28,60.556 +602989,304.25,55.491 +602990,303.73,57.229 +602991,303.28,58.93 +602992,302.9,60.597 +602993,303.04,55.505 +602994,302.45,57.252 +602995,301.95,58.962 +602996,301.51,60.637 +602997,301.82,55.521 +602998,301.18,57.276 +602999,300.61,58.993 +603000,300.12,60.675 +603001,300.61,55.538 +603002,299.9,57.3 +603003,299.28,59.024 +603004,298.74,60.712 +603005,299.39,55.556 +603006,298.62,57.324 +603007,297.95,59.054 +603008,297.35,60.748 +603009,298.17,55.576 +603010,297.35,57.349 +603011,296.62,59.084 +603012,295.97,60.782 +603013,296.96,55.597 +603014,296.07,57.375 +603015,295.29,59.114 +603016,294.59,60.815 +603017,295.74,55.62 +603018,294.79,57.4 +603019,293.95,59.142 +603020,293.2,60.847 +603021,294.52,55.644 +603022,293.52,57.427 +603023,292.62,59.171 +603024,291.82,60.877 +603025,293.3,55.669 +603026,292.24,57.454 +603027,291.29,59.199 +603028,290.44,60.906 +603029,292.08,55.696 +603030,290.96,57.481 +603031,289.96,59.226 +603032,289.06,60.933 +603033,290.86,55.724 +603034,289.68,57.509 +603035,288.63,59.253 +603036,287.68,60.959 +603037,289.63,55.754 +603038,288.4,57.537 +603039,287.3,59.28 +603040,286.3,60.984 +603041,288.41,55.785 +603042,287.12,57.565 +603043,285.97,59.306 +603044,284.92,61.007 +603045,287.19,55.817 +603046,285.85,57.595 +603047,284.64,59.331 +603048,283.54,61.029 +603049,285.96,55.851 +603050,284.57,57.624 +603051,283.31,59.356 +603052,282.16,61.05 +603053,284.74,55.887 +603054,283.29,57.654 +603055,281.98,59.381 +603056,280.79,61.069 +603057,283.51,55.923 +603058,282.01,57.685 +603059,280.65,59.405 +603060,279.41,61.087 +603061,282.28,55.962 +603062,280.72,57.715 +603063,279.32,59.429 +603064,278.04,61.103 +603065,281.05,56.001 +603066,279.44,57.747 +603067,277.99,59.452 +603068,276.66,61.118 +603069,279.82,56.042 +603070,278.16,57.779 +603071,276.66,59.475 +603072,275.29,61.132 +603073,278.59,56.084 +603074,276.88,57.811 +603075,275.33,59.497 +603076,273.92,61.144 +603077,277.35,56.128 +603078,275.6,57.843 +603079,274,59.519 +603080,272.55,61.156 +603081,276.12,56.173 +603082,274.31,57.877 +603083,272.68,59.54 +603084,271.18,61.165 +603085,274.88,56.219 +603086,273.03,57.91 +603087,271.35,59.561 +603088,269.81,61.174 +603089,273.64,56.267 +603090,271.75,57.944 +603091,270.02,59.581 +603092,268.45,61.181 +603093,272.4,56.316 +603094,270.46,57.978 +603095,268.7,59.602 +603096,267.08,61.187 +603097,271.16,56.366 +603098,269.18,58.013 +603099,267.37,59.621 +603100,265.71,61.192 +603101,269.92,56.417 +603102,267.89,58.048 +603103,266.05,59.64 +603104,264.35,61.196 +603105,268.67,56.47 +603106,266.61,58.084 +603107,264.72,59.659 +603108,262.99,61.198 +603109,267.43,56.524 +603110,265.32,58.12 +603111,263.4,59.677 +603112,261.63,61.199 +603113,266.18,56.58 +603114,264.03,58.156 +603115,262.07,59.695 +603116,260.27,61.199 +603117,264.93,56.636 +603118,262.74,58.193 +603119,260.75,59.713 +603120,258.91,61.197 +603121,263.68,56.694 +603122,261.46,58.23 +603123,259.42,59.73 +603124,257.55,61.195 +603125,262.43,56.753 +603126,260.17,58.268 +603127,258.1,59.747 +603128,256.2,61.191 +603129,261.17,56.813 +603130,258.88,58.306 +603131,256.78,59.763 +603132,254.84,61.186 +603133,259.91,56.874 +603134,257.59,58.344 +603135,255.46,59.779 +603136,253.49,61.18 +603137,258.65,56.936 +603138,256.3,58.383 +603139,254.14,59.794 +603140,252.14,61.173 +603141,257.39,57 +603142,255.01,58.422 +603143,252.82,59.809 +603144,250.79,61.165 +603145,256.13,57.064 +603146,253.71,58.461 +603147,251.49,59.824 +603148,249.44,61.156 +603149,254.87,57.13 +603150,252.42,58.501 +603151,250.17,59.839 +603152,248.09,61.146 +603153,253.6,57.196 +603154,251.13,58.541 +603155,248.86,59.853 +603156,246.75,61.134 +603157,252.33,57.264 +603158,249.84,58.581 +603159,247.54,59.866 +603160,245.4,61.122 +603161,251.06,57.332 +603162,248.54,58.622 +603163,246.22,59.88 +603164,244.06,61.109 +603165,249.79,57.402 +603166,247.25,58.663 +603167,244.9,59.893 +603168,242.72,61.094 +603169,248.51,57.473 +603170,245.95,58.704 +603171,243.58,59.905 +603172,241.38,61.079 +603173,247.24,57.544 +603174,244.65,58.746 +603175,242.27,59.918 +603176,240.04,61.063 +603177,245.96,57.616 +603178,243.36,58.787 +603179,240.95,59.93 +603180,238.71,61.046 +603181,244.68,57.689 +603182,242.06,58.83 +603183,239.63,59.942 +603184,237.37,61.028 +603185,243.4,57.763 +603186,240.76,58.872 +603187,238.32,59.953 +603188,236.04,61.009 +603189,242.11,57.838 +603190,239.46,58.915 +603191,237,59.964 +603192,234.71,60.99 +603193,240.82,57.914 +603194,238.16,58.957 +603195,235.69,59.975 +603196,233.38,60.969 +603197,239.54,57.99 +603198,236.86,59.001 +603199,234.38,59.986 +603200,232.05,60.948 +603201,238.24,58.067 +603202,235.56,59.044 +603203,233.06,59.996 +603204,230.73,60.926 +603205,236.95,58.145 +603206,234.26,59.088 +603207,231.75,60.006 +603208,229.4,60.903 +603209,235.66,58.223 +603210,232.96,59.131 +603211,230.44,60.016 +603212,228.08,60.88 +603213,234.36,58.302 +603214,231.65,59.175 +603215,229.13,60.026 +603216,226.76,60.856 +603217,233.06,58.382 +603218,230.35,59.22 +603219,227.82,60.035 +603220,225.44,60.831 +603221,231.76,58.462 +603222,229.04,59.264 +603223,226.51,60.045 +603224,224.12,60.806 +603225,230.45,58.543 +603226,227.74,59.309 +603227,225.2,60.054 +603228,222.81,60.78 +603229,229.15,58.624 +603230,226.43,59.353 +603231,223.89,60.062 +603232,221.49,60.754 +603233,227.84,58.706 +603234,225.13,59.398 +603235,222.58,60.071 +603236,220.18,60.727 +603237,226.53,58.788 +603238,223.82,59.443 +603239,221.28,60.079 +603240,218.87,60.699 +603241,225.22,58.871 +603242,222.51,59.488 +603243,219.97,60.088 +603244,217.56,60.671 +603245,223.9,58.954 +603246,221.2,59.534 +603247,218.66,60.096 +603248,216.26,60.643 +603249,222.58,59.037 +603250,219.89,59.579 +603251,217.36,60.104 +603252,214.95,60.614 +603253,221.27,59.121 +603254,218.58,59.625 +603255,216.05,60.112 +603256,213.65,60.584 +603257,219.95,59.205 +603258,217.27,59.67 +603259,214.75,60.119 +603260,212.35,60.555 +603261,218.62,59.29 +603262,215.96,59.716 +603263,213.44,60.127 +603264,211.05,60.525 +603265,217.3,59.374 +603266,214.65,59.762 +603267,212.14,60.134 +603268,209.75,60.495 +603269,215.97,59.459 +603270,213.34,59.807 +603271,210.84,60.142 +603272,208.46,60.464 +603273,214.64,59.544 +603274,212.02,59.853 +603275,209.53,60.149 +603276,207.16,60.433 +603277,213.31,59.629 +603278,210.71,59.899 +603279,208.23,60.156 +603280,205.87,60.402 +603281,211.98,59.714 +603282,209.39,59.945 +603283,206.93,60.163 +603284,204.58,60.371 +603285,210.65,59.799 +603286,208.08,59.991 +603287,205.63,60.17 +603288,203.29,60.339 +603289,209.31,59.884 +603290,206.76,60.037 +603291,204.33,60.177 +603292,202,60.308 +603293,207.97,59.97 +603294,205.44,60.083 +603295,203.03,60.184 +603296,200.72,60.276 +603297,206.63,60.055 +603298,204.13,60.129 +603299,201.73,60.191 +603300,199.44,60.245 +603301,205.29,60.14 +603302,202.81,60.175 +603303,200.44,60.198 +603304,198.15,60.213 +603305,203.94,60.225 +603306,201.49,60.221 +603307,199.14,60.205 +603308,196.88,60.181 +603309,202.6,60.31 +603310,200.17,60.267 +603311,197.84,60.212 +603312,195.6,60.15 +603313,201.25,60.395 +603314,198.85,60.312 +603315,196.54,60.219 +603316,194.32,60.118 +603317,199.9,60.48 +603318,197.53,60.358 +603319,195.25,60.226 +603320,193.05,60.086 +603321,198.55,60.564 +603322,196.21,60.404 +603323,193.95,60.233 +603324,191.77,60.055 +603325,197.2,60.648 +603326,194.89,60.449 +603327,192.66,60.241 +603328,190.5,60.024 +603329,195.85,60.732 +603330,193.57,60.495 +603331,191.36,60.248 +603332,189.23,59.993 +603333,194.49,60.816 +603334,192.24,60.54 +603335,190.07,60.255 +603336,187.97,59.962 +603337,193.13,60.899 +603338,190.92,60.586 +603339,188.78,60.262 +603340,186.7,59.931 +603341,191.77,60.982 +603342,189.59,60.631 +603343,187.48,60.27 +603344,185.44,59.901 +603345,190.41,61.065 +603346,188.27,60.676 +603347,186.19,60.277 +603348,184.17,59.871 +603349,189.05,61.147 +603350,186.95,60.721 +603351,184.9,60.285 +603352,182.91,59.841 +603353,187.69,61.229 +603354,185.62,60.765 +603355,183.61,60.292 +603356,181.65,59.812 +603357,186.32,61.31 +603358,184.29,60.81 +603359,182.32,60.3 +603360,180.39,59.783 +603361,184.96,61.391 +603362,182.97,60.854 +603363,181.03,60.308 +603364,179.14,59.754 +603365,183.59,61.471 +603366,181.64,60.899 +603367,179.74,60.316 +603368,177.88,59.726 +603369,182.22,61.55 +603370,180.31,60.943 +603371,178.45,60.325 +603372,176.63,59.699 +603373,180.85,61.629 +603374,178.98,60.986 +603375,177.16,60.333 +603376,175.38,59.671 +603377,179.48,61.708 +603378,177.65,61.03 +603379,175.87,60.342 +603380,174.13,59.645 +603381,178.11,61.786 +603382,176.33,61.073 +603383,174.58,60.35 +603384,172.88,59.619 +603385,176.73,61.863 +603386,175,61.116 +603387,173.3,60.359 +603388,171.63,59.593 +603389,175.36,61.939 +603390,173.67,61.159 +603391,172.01,60.369 +603392,170.38,59.569 +603393,173.98,62.015 +603394,172.34,61.202 +603395,170.72,60.378 +603396,169.14,59.545 +603397,172.6,62.09 +603398,171,61.244 +603399,169.44,60.388 +603400,167.89,59.521 +603401,171.23,62.164 +603402,169.67,61.287 +603403,168.15,60.398 +603404,166.65,59.498 +603405,169.85,62.237 +603406,168.34,61.329 +603407,166.86,60.408 +603408,165.41,59.476 +603409,168.47,62.31 +603410,167.01,61.37 +603411,165.58,60.418 +603412,164.17,59.455 +603413,167.09,62.381 +603414,165.68,61.411 +603415,164.29,60.429 +603416,162.93,59.435 +603417,165.7,62.452 +603418,164.34,61.452 +603419,163.01,60.439 +603420,161.69,59.415 +603421,164.32,62.522 +603422,163.01,61.493 +603423,161.72,60.451 +603424,160.46,59.396 +603425,162.94,62.591 +603426,161.68,61.534 +603427,160.44,60.462 +603428,159.22,59.378 +603429,161.55,62.659 +603430,160.34,61.574 +603431,159.16,60.474 +603432,157.99,59.361 +603433,160.17,62.726 +603434,159.01,61.613 +603435,157.87,60.486 +603436,156.75,59.345 +603437,158.78,62.792 +603438,157.68,61.653 +603439,156.59,60.498 +603440,155.52,59.329 +603441,157.39,62.858 +603442,156.34,61.692 +603443,155.31,60.511 +603444,154.29,59.315 +603445,156.01,62.922 +603446,155.01,61.731 +603447,154.02,60.523 +603448,153.06,59.302 +603449,154.62,62.985 +603450,153.67,61.769 +603451,152.74,60.537 +603452,151.83,59.289 +603453,153.23,63.047 +603454,152.34,61.807 +603455,151.46,60.55 +603456,150.6,59.278 +603457,151.84,63.108 +603458,151,61.845 +603459,150.18,60.564 +603460,149.37,59.267 +603461,150.45,63.168 +603462,149.66,61.882 +603463,148.89,60.578 +603464,148.14,59.258 +603465,149.06,63.227 +603466,148.33,61.919 +603467,147.61,60.593 +603468,146.92,59.25 +603469,147.67,63.284 +603470,146.99,61.955 +603471,146.33,60.608 +603472,145.69,59.243 +603473,146.28,63.341 +603474,145.65,61.992 +603475,145.05,60.623 +603476,144.47,59.237 +603477,144.89,63.397 +603478,144.32,62.027 +603479,143.77,60.639 +603480,143.24,59.232 +603481,143.5,63.451 +603482,142.98,62.063 +603483,142.49,60.655 +603484,142.02,59.228 +603485,142.11,63.504 +603486,141.64,62.098 +603487,141.21,60.671 +603488,140.79,59.225 +603489,140.72,63.556 +603490,140.31,62.132 +603491,139.92,60.688 +603492,139.57,59.224 +603493,139.33,63.607 +603494,138.97,62.166 +603495,138.64,60.705 +603496,138.34,59.223 +603497,137.93,63.656 +603498,137.63,62.2 +603499,137.36,60.723 +603500,137.12,59.224 +603501,136.54,63.704 +603502,136.3,62.233 +603503,136.08,60.74 +603504,135.9,59.226 +603505,135.15,63.752 +603506,134.96,62.266 +603507,134.8,60.759 +603508,134.68,59.23 +603509,133.76,63.797 +603510,133.62,62.299 +603511,133.52,60.777 +603512,133.45,59.234 +603513,132.37,63.842 +603514,132.28,62.331 +603515,132.24,60.797 +603516,132.23,59.24 +603517,130.98,63.885 +603518,130.95,62.362 +603519,130.96,60.816 +603520,131.01,59.247 +603521,129.58,63.927 +603522,129.61,62.394 +603523,129.68,60.836 +603524,129.79,59.256 +603525,128.19,63.968 +603526,128.27,62.424 +603527,128.4,60.856 +603528,128.57,59.265 +603529,126.8,64.008 +603530,126.94,62.455 +603531,127.11,60.877 +603532,127.34,59.276 +603533,125.41,64.046 +603534,125.6,62.484 +603535,125.83,60.898 +603536,126.12,59.288 +603537,124.02,64.083 +603538,124.26,62.514 +603539,124.55,60.92 +603540,124.9,59.302 +603541,122.63,64.119 +603542,122.92,62.543 +603543,123.27,60.942 +603544,123.68,59.316 +603545,121.24,64.153 +603546,121.59,62.571 +603547,121.99,60.964 +603548,122.45,59.333 +603549,119.85,64.186 +603550,120.25,62.599 +603551,120.71,60.987 +603552,121.23,59.35 +603553,118.46,64.218 +603554,118.91,62.627 +603555,119.43,61.01 +603556,120.01,59.369 +603557,117.07,64.248 +603558,117.58,62.654 +603559,118.14,61.034 +603560,118.78,59.389 +603561,115.68,64.278 +603562,116.24,62.681 +603563,116.86,61.058 +603564,117.56,59.41 +603565,114.29,64.305 +603566,114.9,62.707 +603567,115.58,61.083 +603568,116.33,59.433 +603569,112.91,64.332 +603570,113.57,62.733 +603571,114.3,61.108 +603572,115.11,59.457 +603573,111.52,64.357 +603574,112.23,62.758 +603575,113.02,61.133 +603576,113.88,59.482 +603577,110.13,64.381 +603578,110.89,62.783 +603579,111.73,61.159 +603580,112.66,59.509 +603581,108.75,64.404 +603582,109.56,62.808 +603583,110.45,61.185 +603584,111.43,59.536 +603585,107.36,64.425 +603586,108.22,62.832 +603587,109.17,61.212 +603588,110.2,59.566 +603589,105.98,64.445 +603590,106.89,62.855 +603591,107.88,61.239 +603592,108.97,59.596 +603593,104.59,64.464 +603594,105.55,62.878 +603595,106.6,61.266 +603596,107.74,59.628 +603597,103.21,64.482 +603598,104.22,62.901 +603599,105.31,61.294 +603600,106.51,59.661 +603601,101.83,64.498 +603602,102.88,62.923 +603603,104.03,61.323 +603604,105.28,59.696 +603605,100.45,64.513 +603606,101.55,62.945 +603607,102.74,61.351 +603608,104.05,59.732 +603609,99.067,64.526 +603610,100.21,62.966 +603611,101.46,61.381 +603612,102.82,59.769 +603613,97.688,64.539 +603614,98.88,62.987 +603615,100.17,61.41 +603616,101.58,59.807 +603617,96.31,64.55 +603618,97.546,63.008 +603619,98.887,61.44 +603620,100.35,59.847 +603621,94.932,64.56 +603622,96.213,63.028 +603623,97.6,61.47 +603624,99.11,59.888 +603625,93.556,64.569 +603626,94.88,63.048 +603627,96.314,61.501 +603628,97.872,59.93 +603629,92.18,64.576 +603630,93.548,63.067 +603631,95.026,61.532 +603632,96.633,59.973 +603633,90.806,64.582 +603634,92.215,63.086 +603635,93.739,61.564 +603636,95.393,60.018 +603637,89.432,64.587 +603638,90.884,63.104 +603639,92.451,61.596 +603640,94.151,60.064 +603641,88.06,64.591 +603642,89.552,63.122 +603643,91.162,61.628 +603644,92.909,60.111 +603645,86.689,64.594 +603646,88.221,63.139 +603647,89.873,61.661 +603648,91.664,60.159 +603649,85.319,64.595 +603650,86.89,63.157 +603651,88.584,61.694 +603652,90.419,60.208 +603653,83.95,64.596 +603654,85.56,63.173 +603655,87.294,61.728 +603656,89.172,60.259 +603657,82.583,64.595 +603658,84.23,63.19 +603659,86.003,61.762 +603660,87.923,60.311 +603661,81.217,64.593 +603662,82.901,63.206 +603663,84.713,61.796 +603664,86.673,60.363 +603665,79.852,64.59 +603666,81.572,63.221 +603667,83.421,61.831 +603668,85.421,60.417 +603669,78.488,64.586 +603670,80.243,63.236 +603671,82.129,61.865 +603672,84.168,60.473 +603673,77.125,64.58 +603674,78.915,63.251 +603675,80.837,61.901 +603676,82.913,60.529 +603677,75.764,64.574 +603678,77.587,63.266 +603679,79.544,61.936 +603680,81.657,60.586 +603681,74.405,64.567 +603682,76.26,63.28 +603683,78.25,61.972 +603684,80.398,60.644 +603685,73.046,64.558 +603686,74.933,63.294 +603687,76.956,62.009 +603688,79.138,60.703 +603689,71.689,64.549 +603690,73.607,63.307 +603691,75.662,62.045 +603692,77.877,60.764 +603693,70.334,64.539 +603694,72.281,63.32 +603695,74.366,62.082 +603696,76.613,60.825 +603697,68.98,64.527 +603698,70.956,63.333 +603699,73.071,62.119 +603700,75.348,60.887 +603701,67.627,64.515 +603702,69.631,63.345 +603703,71.774,62.157 +603704,74.081,60.951 +603705,66.276,64.502 +603706,68.306,63.357 +603707,70.477,62.195 +603708,72.812,61.015 +603709,64.927,64.487 +603710,66.983,63.369 +603711,69.18,62.233 +603712,71.542,61.08 +603713,63.579,64.472 +603714,65.659,63.38 +603715,67.882,62.271 +603716,70.269,61.146 +603717,62.232,64.456 +603718,64.337,63.391 +603719,66.583,62.31 +603720,68.995,61.212 +603721,60.887,64.44 +603722,63.014,63.402 +603723,65.283,62.349 +603724,67.719,61.28 +603725,59.544,64.422 +603726,61.693,63.413 +603727,63.983,62.388 +603728,66.44,61.348 +603729,58.202,64.403 +603730,60.371,63.423 +603731,62.683,62.428 +603732,65.16,61.417 +603733,56.862,64.384 +603734,59.051,63.433 +603735,61.381,62.467 +603736,63.878,61.487 +603737,55.523,64.364 +603738,57.731,63.443 +603739,60.08,62.507 +603740,62.594,61.558 +603741,54.186,64.344 +603742,56.411,63.452 +603743,58.777,62.548 +603744,61.308,61.629 +603745,52.851,64.322 +603746,55.092,63.461 +603747,57.474,62.588 +603748,60.02,61.701 +603749,51.518,64.3 +603750,53.774,63.47 +603751,56.17,62.629 +603752,58.729,61.774 +603753,50.186,64.277 +603754,52.456,63.479 +603755,54.865,62.669 +603756,57.437,61.847 +603757,48.855,64.254 +603758,51.139,63.488 +603759,53.56,62.71 +603760,56.143,61.921 +603761,47.527,64.23 +603762,49.822,63.496 +603763,52.255,62.752 +603764,54.847,61.995 +603765,46.2,64.205 +603766,48.506,63.504 +603767,50.948,62.793 +603768,53.549,62.07 +603769,44.875,64.18 +603770,47.191,63.512 +603771,49.641,62.834 +603772,52.249,62.146 +603773,43.552,64.154 +603774,45.876,63.52 +603775,48.333,62.876 +603776,50.946,62.222 +603777,42.23,64.128 +603778,44.562,63.527 +603779,47.025,62.918 +603780,49.642,62.298 +603781,40.91,64.101 +603782,43.248,63.535 +603783,45.716,62.96 +603784,48.336,62.375 +603785,39.592,64.074 +603786,41.935,63.542 +603787,44.406,63.002 +603788,47.028,62.452 +603789,38.276,64.046 +603790,40.622,63.549 +603791,43.095,63.044 +603792,45.717,62.53 +603793,36.961,64.018 +603794,39.31,63.556 +603795,41.784,63.086 +603796,44.405,62.608 +603797,35.648,63.99 +603798,37.999,63.563 +603799,40.473,63.129 +603800,43.09,62.686 +603801,34.337,63.961 +603802,36.688,63.57 +603803,39.16,63.171 +603804,41.774,62.765 +603805,33.028,63.932 +603806,35.378,63.576 +603807,37.847,63.214 +603808,40.456,62.844 +603809,31.72,63.903 +603810,34.068,63.583 +603811,36.533,63.256 +603812,39.135,62.923 +603813,30.414,63.873 +603814,32.759,63.589 +603815,35.219,63.299 +603816,37.813,63.002 +603817,29.11,63.844 +603818,31.451,63.595 +603819,33.904,63.342 +603820,36.489,63.081 +603821,27.808,63.814 +603822,30.143,63.602 +603823,32.588,63.384 +603824,35.162,63.161 +603825,26.508,63.784 +603826,28.836,63.608 +603827,31.272,63.427 +603828,33.834,63.24 +603829,25.209,63.753 +603830,27.529,63.614 +603831,29.955,63.47 +603832,32.504,63.32 +603833,23.912,63.723 +603834,26.223,63.62 +603835,28.637,63.513 +603836,31.172,63.4 +603837,22.617,63.692 +603838,24.917,63.626 +603839,27.319,63.556 +603840,29.838,63.479 +603841,21.323,63.662 +603842,23.612,63.632 +603843,26,63.598 +603844,28.502,63.559 +603845,20.032,63.631 +603846,22.308,63.638 +603847,24.68,63.641 +603848,27.164,63.639 +603849,18.742,63.601 +603850,21.004,63.644 +603851,23.36,63.684 +603852,25.824,63.718 +603853,17.454,63.57 +603854,19.701,63.65 +603855,22.039,63.727 +603856,24.483,63.798 +603857,16.167,63.54 +603858,18.398,63.656 +603859,20.718,63.769 +603860,23.14,63.877 +603861,14.882,63.509 +603862,17.096,63.662 +603863,19.396,63.812 +603864,21.794,63.956 +603865,13.599,63.479 +603866,15.795,63.668 +603867,18.073,63.854 +603868,20.448,64.035 +603869,12.318,63.449 +603870,14.494,63.675 +603871,16.75,63.897 +603872,19.099,64.114 +603873,11.038,63.419 +603874,13.193,63.681 +603875,15.426,63.939 +603876,17.749,64.192 +603877,9.7603,63.389 +603878,11.894,63.687 +603879,14.102,63.981 +603880,16.397,64.27 +603881,8.4839,63.36 +603882,10.594,63.693 +603883,12.777,64.023 +603884,15.043,64.348 +603885,7.2092,63.331 +603886,9.2953,63.7 +603887,11.451,64.066 +603888,13.688,64.426 +603889,5.9361,63.302 +603890,7.997,63.706 +603891,10.125,64.107 +603892,12.331,64.503 +603893,4.6646,63.273 +603894,6.6991,63.713 +603895,8.7986,64.149 +603896,10.973,64.58 +603897,3.3947,63.245 +603898,5.4018,63.72 +603899,7.4714,64.191 +603900,9.6127,64.656 +603901,2.1264,63.217 +603902,4.105,63.727 +603903,6.1437,64.232 +603904,8.2512,64.732 +603905,0.8596,63.19 +603906,2.8087,63.734 +603907,4.8154,64.274 +603908,6.8882,64.808 +603909,359.59,63.163 +603910,1.5129,63.741 +603911,3.4866,64.315 +603912,5.5237,64.883 +603913,358.33,63.136 +603914,0.21753,63.748 +603915,2.1573,64.356 +603916,4.1578,64.957 +603917,357.07,63.11 +603918,358.92,63.756 +603919,0.82756,64.396 +603920,2.7904,65.031 +603921,355.81,63.085 +603922,357.63,63.763 +603923,359.5,64.437 +603924,1.4218,65.104 +603925,354.55,63.06 +603926,356.33,63.771 +603927,358.17,64.477 +603928,0.051748,65.177 +603929,353.29,63.035 +603930,355.04,63.779 +603931,356.84,64.517 +603932,358.68,65.249 +603933,352.03,63.011 +603934,353.75,63.787 +603935,355.5,64.557 +603936,357.31,65.32 +603937,350.78,62.988 +603938,352.45,63.796 +603939,354.17,64.597 +603940,355.93,65.391 +603941,349.53,62.966 +603942,351.16,63.804 +603943,352.84,64.636 +603944,354.56,65.461 +603945,348.27,62.944 +603946,349.87,63.813 +603947,351.51,64.676 +603948,353.18,65.53 +603949,347.02,62.923 +603950,348.58,63.822 +603951,350.17,64.715 +603952,351.81,65.598 +603953,345.77,62.902 +603954,347.29,63.831 +603955,348.84,64.753 +603956,350.43,65.666 +603957,344.52,62.883 +603958,346,63.841 +603959,347.5,64.792 +603960,349.05,65.733 +603961,343.28,62.864 +603962,344.71,63.851 +603963,346.17,64.83 +603964,347.67,65.799 +603965,342.03,62.846 +603966,343.42,63.861 +603967,344.83,64.867 +603968,346.29,65.865 +603969,340.78,62.829 +603970,342.13,63.871 +603971,343.5,64.905 +603972,344.9,65.929 +603973,339.54,62.812 +603974,340.84,63.882 +603975,342.16,64.942 +603976,343.52,65.992 +603977,338.3,62.797 +603978,339.55,63.892 +603979,340.83,64.979 +603980,342.14,66.055 +603981,337.06,62.782 +603982,338.26,63.904 +603983,339.49,65.016 +603984,340.75,66.117 +603985,335.81,62.768 +603986,336.97,63.915 +603987,338.15,65.052 +603988,339.36,66.178 +603989,334.57,62.755 +603990,335.68,63.927 +603991,336.82,65.088 +603992,337.98,66.237 +603993,333.34,62.743 +603994,334.4,63.939 +603995,335.48,65.124 +603996,336.59,66.296 +603997,332.1,62.733 +603998,333.11,63.951 +603999,334.14,65.159 +604000,335.2,66.354 +604001,330.86,62.723 +604002,331.82,63.964 +604003,332.81,65.194 +604004,333.81,66.411 +604005,329.62,62.714 +604006,330.53,63.977 +604007,331.47,65.228 +604008,332.43,66.467 +604009,328.39,62.706 +604010,329.25,63.99 +604011,330.13,65.263 +604012,331.04,66.521 +604013,327.15,62.699 +604014,327.96,64.004 +604015,328.79,65.296 +604016,329.65,66.575 +604017,325.92,62.693 +604018,326.67,64.018 +604019,327.45,65.33 +604020,328.25,66.628 +604021,324.69,62.688 +604022,325.39,64.032 +604023,326.11,65.363 +604024,326.86,66.679 +604025,323.45,62.685 +604026,324.1,64.047 +604027,324.77,65.396 +604028,325.47,66.73 +604029,322.22,62.682 +604030,322.82,64.062 +604031,323.44,65.428 +604032,324.08,66.779 +604033,320.99,62.681 +604034,321.53,64.077 +604035,322.1,65.46 +604036,322.69,66.827 +604037,319.76,62.681 +604038,320.24,64.093 +604039,320.76,65.492 +604040,321.29,66.874 +604041,318.53,62.681 +604042,318.96,64.109 +604043,319.42,65.523 +604044,319.9,66.92 +604045,317.3,62.683 +604046,317.67,64.126 +604047,318.08,65.554 +604048,318.51,66.965 +604049,316.07,62.687 +604050,316.39,64.143 +604051,316.74,65.584 +604052,317.11,67.009 +604053,314.84,62.691 +604054,315.1,64.16 +604055,315.4,65.614 +604056,315.72,67.051 +604057,313.61,62.697 +604058,313.82,64.178 +604059,314.06,65.644 +604060,314.33,67.092 +604061,312.38,62.703 +604062,312.53,64.196 +604063,312.72,65.673 +604064,312.93,67.132 +604065,311.15,62.711 +604066,311.25,64.215 +604067,311.38,65.701 +604068,311.54,67.171 +604069,309.92,62.721 +604070,309.96,64.233 +604071,310.04,65.73 +604072,310.15,67.209 +604073,308.69,62.731 +604074,308.68,64.253 +604075,308.7,65.758 +604076,308.75,67.245 +604077,307.46,62.743 +604078,307.39,64.272 +604079,307.36,65.785 +604080,307.36,67.28 +604081,306.23,62.755 +604082,306.11,64.292 +604083,306.02,65.812 +604084,305.97,67.314 +604085,305.01,62.77 +604086,304.82,64.313 +604087,304.68,65.839 +604088,304.57,67.347 +604089,303.78,62.785 +604090,303.53,64.334 +604091,303.34,65.865 +604092,303.18,67.379 +604093,302.55,62.802 +604094,302.25,64.355 +604095,302,65.891 +604096,301.79,67.409 +604097,301.32,62.819 +604098,300.96,64.377 +604099,300.66,65.916 +604100,300.39,67.438 +604101,300.09,62.839 +604102,299.68,64.399 +604103,299.32,65.941 +604104,299,67.466 +604105,298.86,62.859 +604106,298.39,64.421 +604107,297.98,65.966 +604108,297.61,67.492 +604109,297.63,62.881 +604110,297.11,64.444 +604111,296.64,65.99 +604112,296.22,67.517 +604113,296.4,62.904 +604114,295.82,64.467 +604115,295.3,66.014 +604116,294.83,67.542 +604117,295.17,62.928 +604118,294.53,64.491 +604119,293.96,66.037 +604120,293.44,67.564 +604121,293.94,62.953 +604122,293.25,64.515 +604123,292.62,66.06 +604124,292.05,67.586 +604125,292.71,62.98 +604126,291.96,64.54 +604127,291.28,66.082 +604128,290.66,67.606 +604129,291.48,63.008 +604130,290.67,64.565 +604131,289.94,66.104 +604132,289.27,67.625 +604133,290.24,63.037 +604134,289.39,64.59 +604135,288.6,66.126 +604136,287.88,67.643 +604137,289.01,63.068 +604138,288.1,64.616 +604139,287.26,66.147 +604140,286.49,67.66 +604141,287.78,63.099 +604142,286.81,64.642 +604143,285.92,66.167 +604144,285.11,67.675 +604145,286.54,63.132 +604146,285.52,64.668 +604147,284.59,66.188 +604148,283.72,67.689 +604149,285.31,63.166 +604150,284.24,64.695 +604151,283.25,66.208 +604152,282.33,67.702 +604153,284.07,63.202 +604154,282.95,64.723 +604155,281.91,66.227 +604156,280.95,67.714 +604157,282.83,63.238 +604158,281.66,64.75 +604159,280.57,66.246 +604160,279.56,67.724 +604161,281.59,63.276 +604162,280.37,64.779 +604163,279.24,66.265 +604164,278.18,67.734 +604165,280.36,63.315 +604166,279.08,64.807 +604167,277.9,66.283 +604168,276.8,67.742 +604169,279.12,63.355 +604170,277.79,64.836 +604171,276.56,66.301 +604172,275.42,67.749 +604173,277.88,63.397 +604174,276.5,64.865 +604175,275.23,66.318 +604176,274.04,67.755 +604177,276.63,63.439 +604178,275.21,64.895 +604179,273.89,66.335 +604180,272.66,67.759 +604181,275.39,63.483 +604182,273.92,64.925 +604183,272.55,66.352 +604184,271.28,67.763 +604185,274.15,63.528 +604186,272.63,64.955 +604187,271.22,66.368 +604188,269.9,67.765 +604189,272.9,63.574 +604190,271.34,64.986 +604191,269.88,66.384 +604192,268.52,67.766 +604193,271.65,63.621 +604194,270.05,65.017 +604195,268.55,66.399 +604196,267.15,67.767 +604197,270.41,63.669 +604198,268.76,65.049 +604199,267.21,66.414 +604200,265.77,67.766 +604201,269.16,63.719 +604202,267.46,65.081 +604203,265.88,66.429 +604204,264.4,67.763 +604205,267.91,63.769 +604206,266.17,65.113 +604207,264.55,66.443 +604208,263.03,67.76 +604209,266.66,63.821 +604210,264.88,65.145 +604211,263.21,66.457 +604212,261.66,67.756 +604213,265.4,63.873 +604214,263.58,65.178 +604215,261.88,66.471 +604216,260.29,67.751 +604217,264.15,63.927 +604218,262.29,65.211 +604219,260.55,66.484 +604220,258.92,67.744 +604221,262.89,63.981 +604222,260.99,65.245 +604223,259.22,66.497 +604224,257.55,67.737 +604225,261.63,64.037 +604226,259.7,65.279 +604227,257.89,66.51 +604228,256.18,67.729 +604229,260.38,64.093 +604230,258.4,65.313 +604231,256.55,66.522 +604232,254.82,67.719 +604233,259.11,64.151 +604234,257.11,65.347 +604235,255.22,66.534 +604236,253.46,67.709 +604237,257.85,64.209 +604238,255.81,65.382 +604239,253.89,66.545 +604240,252.09,67.698 +604241,256.59,64.269 +604242,254.51,65.417 +604243,252.56,66.557 +604244,250.73,67.686 +604245,255.32,64.329 +604246,253.21,65.453 +604247,251.23,66.568 +604248,249.37,67.673 +604249,254.06,64.39 +604250,251.91,65.488 +604251,249.91,66.578 +604252,248.01,67.659 +604253,252.79,64.452 +604254,250.62,65.524 +604255,248.58,66.589 +604256,246.66,67.644 +604257,251.52,64.515 +604258,249.32,65.56 +604259,247.25,66.599 +604260,245.3,67.628 +604261,250.25,64.578 +604262,248.02,65.597 +604263,245.92,66.608 +604264,243.95,67.612 +604265,248.97,64.643 +604266,246.71,65.634 +604267,244.6,66.618 +604268,242.6,67.594 +604269,247.7,64.708 +604270,245.41,65.671 +604271,243.27,66.627 +604272,241.25,67.576 +604273,246.42,64.774 +604274,244.11,65.708 +604275,241.94,66.636 +604276,239.9,67.557 +604277,245.14,64.84 +604278,242.81,65.745 +604279,240.62,66.645 +604280,238.55,67.538 +604281,243.86,64.908 +604282,241.51,65.783 +604283,239.29,66.653 +604284,237.2,67.517 +604285,242.58,64.976 +604286,240.2,65.821 +604287,237.97,66.661 +604288,235.86,67.496 +604289,241.29,65.044 +604290,238.9,65.859 +604291,236.65,66.669 +604292,234.52,67.475 +604293,240,65.113 +604294,237.59,65.897 +604295,235.32,66.677 +604296,233.17,67.452 +604297,238.72,65.183 +604298,236.29,65.936 +604299,234,66.685 +604300,231.83,67.429 +604301,237.43,65.254 +604302,234.98,65.974 +604303,232.68,66.692 +604304,230.5,67.406 +604305,236.13,65.324 +604306,233.67,66.013 +604307,231.36,66.699 +604308,229.16,67.381 +604309,234.84,65.396 +604310,232.37,66.052 +604311,230.04,66.706 +604312,227.83,67.357 +604313,233.54,65.468 +604314,231.06,66.091 +604315,228.72,66.713 +604316,226.49,67.331 +604317,232.24,65.54 +604318,229.75,66.131 +604319,227.4,66.719 +604320,225.16,67.306 +604321,230.94,65.613 +604322,228.44,66.17 +604323,226.08,66.726 +604324,223.83,67.279 +604325,229.64,65.686 +604326,227.13,66.21 +604327,224.76,66.732 +604328,222.5,67.253 +604329,228.34,65.76 +604330,225.82,66.249 +604331,223.44,66.738 +604332,221.18,67.226 +604333,227.03,65.833 +604334,224.51,66.289 +604335,222.12,66.744 +604336,219.85,67.198 +604337,225.72,65.908 +604338,223.2,66.329 +604339,220.81,66.75 +604340,218.53,67.17 +604341,224.42,65.982 +604342,221.89,66.369 +604343,219.49,66.756 +604344,217.21,67.142 +604345,223.1,66.057 +604346,220.57,66.409 +604347,218.17,66.761 +604348,215.89,67.113 +604349,221.79,66.132 +604350,219.26,66.449 +604351,216.86,66.767 +604352,214.57,67.084 +604353,220.47,66.207 +604354,217.95,66.49 +604355,215.54,66.772 +604356,213.25,67.055 +604357,219.16,66.282 +604358,216.63,66.53 +604359,214.23,66.778 +604360,211.94,67.026 +604361,217.84,66.358 +604362,215.31,66.57 +604363,212.92,66.783 +604364,210.63,66.996 +604365,216.52,66.434 +604366,214,66.611 +604367,211.6,66.788 +604368,209.32,66.967 +604369,215.19,66.509 +604370,212.68,66.651 +604371,210.29,66.793 +604372,208.01,66.937 +604373,213.87,66.585 +604374,211.36,66.691 +604375,208.98,66.799 +604376,206.7,66.907 +604377,212.54,66.661 +604378,210.05,66.732 +604379,207.67,66.804 +604380,205.39,66.877 +604381,211.21,66.737 +604382,208.73,66.772 +604383,206.36,66.809 +604384,204.09,66.847 +604385,209.88,66.812 +604386,207.41,66.813 +604387,205.05,66.814 +604388,202.79,66.817 +604389,208.55,66.888 +604390,206.09,66.853 +604391,203.74,66.819 +604392,201.49,66.786 +604393,207.21,66.964 +604394,204.77,66.893 +604395,202.43,66.824 +604396,200.19,66.756 +604397,205.88,67.039 +604398,203.45,66.934 +604399,201.12,66.829 +604400,198.89,66.726 +604401,204.54,67.115 +604402,202.12,66.974 +604403,199.82,66.834 +604404,197.6,66.696 +604405,203.2,67.19 +604406,200.8,67.014 +604407,198.51,66.839 +604408,196.3,66.666 +604409,201.86,67.265 +604410,199.48,67.054 +604411,197.2,66.845 +604412,195.01,66.636 +604413,200.51,67.34 +604414,198.15,67.094 +604415,195.9,66.85 +604416,193.72,66.607 +604417,199.17,67.415 +604418,196.83,67.134 +604419,194.59,66.855 +604420,192.43,66.577 +604421,197.82,67.489 +604422,195.51,67.174 +604423,193.29,66.86 +604424,191.14,66.548 +604425,196.47,67.563 +604426,194.18,67.214 +604427,191.98,66.866 +604428,189.86,66.519 +604429,195.12,67.637 +604430,192.85,67.254 +604431,190.68,66.871 +604432,188.58,66.49 +604433,193.77,67.71 +604434,191.53,67.293 +604435,189.37,66.877 +604436,187.29,66.462 +604437,192.41,67.783 +604438,190.2,67.333 +604439,188.07,66.883 +604440,186.01,66.434 +604441,191.06,67.855 +604442,188.87,67.372 +604443,186.77,66.889 +604444,184.73,66.406 +604445,189.7,67.927 +604446,187.55,67.411 +604447,185.47,66.895 +604448,183.46,66.379 +604449,188.34,67.999 +604450,186.22,67.45 +604451,184.17,66.901 +604452,182.18,66.352 +604453,186.98,68.07 +604454,184.89,67.489 +604455,182.87,66.907 +604456,180.91,66.325 +604457,185.62,68.141 +604458,183.56,67.528 +604459,181.57,66.914 +604460,179.63,66.299 +604461,184.26,68.211 +604462,182.23,67.566 +604463,180.27,66.92 +604464,178.36,66.274 +604465,182.89,68.28 +604466,180.9,67.604 +604467,178.97,66.927 +604468,177.09,66.249 +604469,181.53,68.349 +604470,179.57,67.643 +604471,177.67,66.934 +604472,175.82,66.224 +604473,180.16,68.417 +604474,178.23,67.68 +604475,176.37,66.941 +604476,174.56,66.2 +604477,178.79,68.485 +604478,176.9,67.718 +604479,175.07,66.948 +604480,173.29,66.177 +604481,177.42,68.552 +604482,175.57,67.755 +604483,173.77,66.956 +604484,172.03,66.155 +604485,176.05,68.618 +604486,174.24,67.793 +604487,172.48,66.964 +604488,170.77,66.133 +604489,174.68,68.684 +604490,172.9,67.83 +604491,171.18,66.972 +604492,169.51,66.111 +604493,173.3,68.749 +604494,171.57,67.866 +604495,169.88,66.98 +604496,168.25,66.091 +604497,171.93,68.813 +604498,170.23,67.903 +604499,168.59,66.988 +604500,166.99,66.071 +604501,170.55,68.877 +604502,168.9,67.939 +604503,167.29,66.997 +604504,165.73,66.051 +604505,169.17,68.939 +604506,167.56,67.975 +604507,166,67.006 +604508,164.47,66.033 +604509,167.79,69.001 +604510,166.23,68.011 +604511,164.7,67.015 +604512,163.22,66.015 +604513,166.41,69.062 +604514,164.89,68.046 +604515,163.41,67.024 +604516,161.96,65.998 +604517,165.03,69.122 +604518,163.55,68.081 +604519,162.12,67.034 +604520,160.71,65.982 +604521,163.65,69.181 +604522,162.22,68.116 +604523,160.82,67.044 +604524,159.46,65.967 +604525,162.27,69.239 +604526,160.88,68.15 +604527,159.53,67.054 +604528,158.21,65.953 +604529,160.89,69.297 +604530,159.54,68.184 +604531,158.24,67.065 +604532,156.96,65.94 +604533,159.5,69.353 +604534,158.21,68.218 +604535,156.94,67.076 +604536,155.71,65.927 +604537,158.12,69.409 +604538,156.87,68.252 +604539,155.65,67.087 +604540,154.47,65.916 +604541,156.73,69.463 +604542,155.53,68.285 +604543,154.36,67.098 +604544,153.22,65.905 +604545,155.34,69.517 +604546,154.19,68.318 +604547,153.07,67.11 +604548,151.98,65.895 +604549,153.96,69.57 +604550,152.85,68.35 +604551,151.78,67.122 +604552,150.73,65.887 +604553,152.57,69.621 +604554,151.51,68.383 +604555,150.49,67.135 +604556,149.49,65.879 +604557,151.18,69.672 +604558,150.17,68.414 +604559,149.19,67.148 +604560,148.24,65.873 +604561,149.79,69.721 +604562,148.83,68.446 +604563,147.9,67.161 +604564,147,65.867 +604565,148.4,69.77 +604566,147.49,68.477 +604567,146.61,67.174 +604568,145.76,65.863 +604569,147.01,69.817 +604570,146.15,68.508 +604571,145.32,67.188 +604572,144.52,65.859 +604573,145.62,69.864 +604574,144.81,68.538 +604575,144.03,67.202 +604576,143.28,65.857 +604577,144.23,69.909 +604578,143.47,68.568 +604579,142.74,67.217 +604580,142.04,65.855 +604581,142.83,69.953 +604582,142.13,68.598 +604583,141.45,67.232 +604584,140.8,65.855 +604585,141.44,69.996 +604586,140.79,68.627 +604587,140.16,67.247 +604588,139.57,65.856 +604589,140.05,70.038 +604590,139.45,68.656 +604591,138.87,67.262 +604592,138.33,65.858 +604593,138.65,70.079 +604594,138.11,68.685 +604595,137.59,67.278 +604596,137.09,65.862 +604597,137.26,70.119 +604598,136.76,68.713 +604599,136.3,67.295 +604600,135.86,65.866 +604601,135.87,70.157 +604602,135.42,68.741 +604603,135.01,67.311 +604604,134.62,65.871 +604605,134.47,70.195 +604606,134.08,68.768 +604607,133.72,67.329 +604608,133.38,65.878 +604609,133.08,70.231 +604610,132.74,68.795 +604611,132.43,67.346 +604612,132.15,65.886 +604613,131.69,70.266 +604614,131.4,68.821 +604615,131.14,67.364 +604616,130.91,65.895 +604617,130.29,70.3 +604618,130.06,68.848 +604619,129.85,67.382 +604620,129.68,65.905 +604621,128.9,70.333 +604622,128.71,68.873 +604623,128.56,67.401 +604624,128.44,65.917 +604625,127.5,70.364 +604626,127.37,68.899 +604627,127.27,67.42 +604628,127.21,65.93 +604629,126.11,70.394 +604630,126.03,68.924 +604631,125.99,67.44 +604632,125.98,65.944 +604633,124.71,70.424 +604634,124.69,68.948 +604635,124.7,67.459 +604636,124.74,65.959 +604637,123.32,70.452 +604638,123.35,68.972 +604639,123.41,67.48 +604640,123.51,65.975 +604641,121.93,70.478 +604642,122,68.996 +604643,122.12,67.5 +604644,122.27,65.993 +604645,120.53,70.504 +604646,120.66,69.019 +604647,120.83,67.521 +604648,121.04,66.011 +604649,119.14,70.528 +604650,119.32,69.042 +604651,119.54,67.543 +604652,119.8,66.031 +604653,117.75,70.551 +604654,117.98,69.065 +604655,118.25,67.565 +604656,118.57,66.053 +604657,116.35,70.573 +604658,116.64,69.087 +604659,116.96,67.587 +604660,117.34,66.075 +604661,114.96,70.594 +604662,115.3,69.109 +604663,115.67,67.61 +604664,116.1,66.099 +604665,113.57,70.613 +604666,113.95,69.13 +604667,114.39,67.633 +604668,114.86,66.124 +604669,112.18,70.632 +604670,112.61,69.151 +604671,113.1,67.656 +604672,113.63,66.15 +604673,110.78,70.649 +604674,111.27,69.171 +604675,111.81,67.68 +604676,112.39,66.177 +604677,109.39,70.665 +604678,109.93,69.191 +604679,110.52,67.704 +604680,111.16,66.206 +604681,108,70.68 +604682,108.59,69.211 +604683,109.23,67.729 +604684,109.92,66.236 +604685,106.61,70.693 +604686,107.25,69.23 +604687,107.94,67.754 +604688,108.68,66.267 +604689,105.22,70.706 +604690,105.91,69.249 +604691,106.65,67.78 +604692,107.44,66.299 +604693,103.83,70.717 +604694,104.57,69.267 +604695,105.36,67.805 +604696,106.21,66.333 +604697,102.45,70.727 +604698,103.23,69.285 +604699,104.07,67.832 +604700,104.97,66.367 +604701,101.06,70.736 +604702,101.89,69.303 +604703,102.77,67.858 +604704,103.73,66.403 +604705,99.672,70.744 +604706,100.55,69.32 +604707,101.48,67.885 +604708,102.49,66.44 +604709,98.285,70.75 +604710,99.207,69.337 +604711,100.19,67.913 +604712,101.25,66.478 +604713,96.9,70.756 +604714,97.868,69.354 +604715,98.9,67.94 +604716,100,66.518 +604717,95.516,70.76 +604718,96.529,69.37 +604719,97.608,67.969 +604720,98.761,66.558 +604721,94.132,70.763 +604722,95.19,69.385 +604723,96.316,67.997 +604724,97.517,66.6 +604725,92.749,70.765 +604726,93.851,69.401 +604727,95.023,68.026 +604728,96.273,66.642 +604729,91.367,70.766 +604730,92.513,69.416 +604731,93.73,68.055 +604732,95.027,66.686 +604733,89.986,70.766 +604734,91.175,69.43 +604735,92.437,68.085 +604736,93.78,66.731 +604737,88.606,70.765 +604738,89.837,69.444 +604739,91.143,68.115 +604740,92.533,66.777 +604741,87.227,70.763 +604742,88.5,69.458 +604743,89.849,68.145 +604744,91.284,66.825 +604745,85.849,70.759 +604746,87.163,69.472 +604747,88.555,68.176 +604748,90.034,66.873 +604749,84.472,70.755 +604750,85.826,69.485 +604751,87.26,68.207 +604752,88.784,66.922 +604753,83.096,70.75 +604754,84.49,69.498 +604755,85.965,68.238 +604756,87.532,66.972 +604757,81.722,70.743 +604758,83.154,69.51 +604759,84.67,68.27 +604760,86.278,67.024 +604761,80.348,70.736 +604762,81.818,69.522 +604763,83.374,68.302 +604764,85.024,67.076 +604765,78.975,70.728 +604766,80.483,69.534 +604767,82.077,68.334 +604768,83.768,67.129 +604769,77.604,70.718 +604770,79.148,69.546 +604771,80.78,68.367 +604772,82.511,67.183 +604773,76.234,70.708 +604774,77.814,69.557 +604775,79.483,68.4 +604776,81.253,67.239 +604777,74.865,70.697 +604778,76.48,69.568 +604779,78.185,68.433 +604780,79.993,67.295 +604781,73.497,70.685 +604782,75.146,69.578 +604783,76.887,68.466 +604784,78.732,67.352 +604785,72.131,70.672 +604786,73.813,69.588 +604787,75.589,68.5 +604788,77.469,67.41 +604789,70.766,70.658 +604790,72.48,69.598 +604791,74.289,68.534 +604792,76.205,67.468 +604793,69.402,70.643 +604794,71.148,69.608 +604795,72.99,68.569 +604796,74.939,67.528 +604797,68.04,70.628 +604798,69.816,69.617 +604799,71.69,68.604 +604800,73.672,67.589 +604801,66.679,70.612 +604802,68.485,69.626 +604803,70.389,68.638 +604804,72.404,67.65 +604805,65.319,70.594 +604806,67.154,69.635 +604807,69.088,68.674 +604808,71.133,67.712 +604809,63.961,70.576 +604810,65.823,69.644 +604811,67.786,68.709 +604812,69.862,67.775 +604813,62.604,70.558 +604814,64.493,69.652 +604815,66.484,68.745 +604816,68.588,67.838 +604817,61.248,70.538 +604818,63.164,69.66 +604819,65.181,68.781 +604820,67.313,67.902 +604821,59.894,70.518 +604822,61.835,69.668 +604823,63.878,68.817 +604824,66.037,67.967 +604825,58.542,70.497 +604826,60.507,69.675 +604827,62.574,68.853 +604828,64.758,68.033 +604829,57.191,70.476 +604830,59.179,69.683 +604831,61.27,68.89 +604832,63.478,68.099 +604833,55.842,70.454 +604834,57.851,69.69 +604835,59.965,68.927 +604836,62.196,68.166 +604837,54.494,70.431 +604838,56.524,69.697 +604839,58.659,68.964 +604840,60.913,68.234 +604841,53.147,70.408 +604842,55.198,69.704 +604843,57.353,69.001 +604844,59.628,68.302 +604845,51.802,70.384 +604846,53.872,69.71 +604847,56.046,69.038 +604848,58.34,68.37 +604849,50.459,70.359 +604850,52.547,69.716 +604851,54.739,69.076 +604852,57.052,68.439 +604853,49.117,70.334 +604854,51.222,69.723 +604855,53.431,69.114 +604856,55.761,68.509 +604857,47.777,70.309 +604858,49.897,69.729 +604859,52.123,69.151 +604860,54.469,68.579 +604861,46.439,70.283 +604862,48.574,69.734 +604863,50.814,69.189 +604864,53.174,68.649 +604865,45.102,70.257 +604866,47.25,69.74 +604867,49.504,69.228 +604868,51.878,68.72 +604869,43.767,70.23 +604870,45.928,69.746 +604871,48.194,69.266 +604872,50.58,68.791 +604873,42.433,70.202 +604874,44.606,69.751 +604875,46.883,69.304 +604876,49.28,68.863 +604877,41.101,70.175 +604878,43.284,69.756 +604879,45.572,69.343 +604880,47.979,68.935 +604881,39.771,70.147 +604882,41.963,69.762 +604883,44.259,69.381 +604884,46.675,69.007 +604885,38.442,70.119 +604886,40.643,69.767 +604887,42.947,69.42 +604888,45.37,69.08 +604889,37.115,70.09 +604890,39.323,69.772 +604891,41.634,69.459 +604892,44.063,69.153 +604893,35.79,70.061 +604894,38.004,69.777 +604895,40.32,69.498 +604896,42.753,69.225 +604897,34.466,70.032 +604898,36.685,69.781 +604899,39.005,69.537 +604900,41.442,69.299 +604901,33.144,70.003 +604902,35.367,69.786 +604903,37.69,69.576 +604904,40.13,69.372 +604905,31.824,69.974 +604906,34.049,69.791 +604907,36.374,69.615 +604908,38.815,69.445 +604909,30.505,69.944 +604910,32.732,69.796 +604911,35.058,69.654 +604912,37.498,69.519 +604913,29.188,69.914 +604914,31.416,69.8 +604915,33.741,69.693 +604916,36.18,69.593 +604917,27.873,69.884 +604918,30.1,69.805 +604919,32.423,69.732 +604920,34.859,69.666 +604921,26.56,69.854 +604922,28.784,69.809 +604923,31.105,69.771 +604924,33.537,69.74 +604925,25.248,69.824 +604926,27.47,69.814 +604927,29.786,69.81 +604928,32.213,69.814 +604929,23.938,69.795 +604930,26.155,69.818 +604931,28.467,69.849 +604932,30.887,69.888 +604933,22.629,69.765 +604934,24.842,69.823 +604935,27.147,69.888 +604936,29.559,69.961 +604937,21.322,69.735 +604938,23.529,69.827 +604939,25.826,69.927 +604940,28.229,70.035 +604941,20.017,69.705 +604942,22.216,69.832 +604943,24.505,69.966 +604944,26.898,70.108 +604945,18.714,69.675 +604946,20.904,69.837 +604947,23.183,70.005 +604948,25.565,70.181 +604949,17.412,69.645 +604950,19.593,69.841 +604951,21.86,70.044 +604952,24.23,70.255 +604953,16.112,69.616 +604954,18.282,69.846 +604955,20.537,70.083 +604956,22.893,70.328 +604957,14.814,69.587 +604958,16.972,69.851 +604959,19.214,70.122 +604960,21.554,70.4 +604961,13.517,69.557 +604962,15.662,69.856 +604963,17.89,70.161 +604964,20.214,70.473 +604965,12.222,69.529 +604966,14.353,69.861 +604967,16.565,70.199 +604968,18.871,70.545 +604969,10.928,69.5 +604970,13.044,69.866 +604971,15.239,70.238 +604972,17.528,70.617 +604973,9.6362,69.472 +604974,11.736,69.871 +604975,13.913,70.276 +604976,16.182,70.688 +604977,8.3459,69.444 +604978,10.428,69.876 +604979,12.587,70.314 +604980,14.835,70.759 +604981,7.0572,69.416 +604982,9.121,69.881 +604983,11.26,70.353 +604984,13.486,70.83 +604985,5.7701,69.389 +604986,7.8144,69.887 +604987,9.9321,70.391 +604988,12.135,70.9 +604989,4.4845,69.362 +604990,6.5084,69.892 +604991,8.6039,70.429 +604992,10.783,70.97 +604993,3.2005,69.335 +604994,5.2028,69.898 +604995,7.2752,70.466 +604996,9.4288,71.04 +604997,1.9181,69.309 +604998,3.8978,69.904 +604999,5.9459,70.504 +605000,8.0733,71.109 +605001,0.63719,69.284 +605002,2.5933,69.91 +605003,4.616,70.541 +605004,6.7163,71.177 +605005,359.36,69.259 +605006,1.2892,69.916 +605007,3.2857,70.579 +605008,5.3577,71.245 +605009,358.08,69.234 +605010,359.99,69.923 +605011,1.9548,70.616 +605012,3.9976,71.313 +605013,356.8,69.21 +605014,358.68,69.929 +605015,0.62348,70.652 +605016,2.636,71.379 +605017,355.53,69.187 +605018,357.38,69.936 +605019,359.29,70.689 +605020,1.2729,71.446 +605021,354.25,69.164 +605022,356.08,69.943 +605023,357.96,70.726 +605024,359.91,71.511 +605025,352.98,69.142 +605026,354.78,69.95 +605027,356.63,70.762 +605028,358.54,71.576 +605029,351.71,69.12 +605030,353.47,69.957 +605031,355.29,70.798 +605032,357.18,71.64 +605033,350.44,69.099 +605034,352.17,69.965 +605035,353.96,70.834 +605036,355.81,71.704 +605037,349.17,69.079 +605038,350.87,69.973 +605039,352.63,70.869 +605040,354.44,71.767 +605041,347.91,69.06 +605042,349.57,69.981 +605043,351.29,70.904 +605044,353.07,71.829 +605045,346.64,69.041 +605046,348.27,69.989 +605047,349.96,70.939 +605048,351.69,71.89 +605049,345.38,69.023 +605050,346.98,69.998 +605051,348.62,70.974 +605052,350.32,71.951 +605053,344.12,69.006 +605054,345.68,70.007 +605055,347.28,71.009 +605056,348.94,72.01 +605057,342.85,68.99 +605058,344.38,70.016 +605059,345.95,71.043 +605060,347.57,72.069 +605061,341.59,68.974 +605062,343.08,70.025 +605063,344.61,71.077 +605064,346.19,72.127 +605065,340.33,68.96 +605066,341.78,70.035 +605067,343.27,71.11 +605068,344.81,72.184 +605069,339.08,68.946 +605070,340.49,70.045 +605071,341.94,71.144 +605072,343.43,72.241 +605073,337.82,68.933 +605074,339.19,70.055 +605075,340.6,71.177 +605076,342.05,72.296 +605077,336.56,68.921 +605078,337.89,70.066 +605079,339.26,71.21 +605080,340.67,72.351 +605081,335.31,68.91 +605082,336.6,70.077 +605083,337.92,71.242 +605084,339.29,72.404 +605085,334.05,68.9 +605086,335.3,70.088 +605087,336.58,71.274 +605088,337.91,72.457 +605089,332.8,68.891 +605090,334,70.1 +605091,335.24,71.306 +605092,336.52,72.509 +605093,331.55,68.883 +605094,332.71,70.111 +605095,333.9,71.337 +605096,335.14,72.559 +605097,330.3,68.876 +605098,331.41,70.124 +605099,332.56,71.369 +605100,333.75,72.609 +605101,329.05,68.87 +605102,330.12,70.136 +605103,331.22,71.399 +605104,332.36,72.658 +605105,327.8,68.865 +605106,328.82,70.149 +605107,329.88,71.43 +605108,330.98,72.706 +605109,326.55,68.86 +605110,327.53,70.162 +605111,328.54,71.46 +605112,329.59,72.752 +605113,325.3,68.858 +605114,326.24,70.176 +605115,327.2,71.49 +605116,328.2,72.798 +605117,324.06,68.856 +605118,324.94,70.19 +605119,325.86,71.519 +605120,326.81,72.842 +605121,322.81,68.855 +605122,323.65,70.204 +605123,324.52,71.548 +605124,325.42,72.886 +605125,321.57,68.855 +605126,322.36,70.219 +605127,323.18,71.577 +605128,324.03,72.928 +605129,320.32,68.857 +605130,321.06,70.234 +605131,321.83,71.605 +605132,322.64,72.97 +605133,319.08,68.859 +605134,319.77,70.249 +605135,320.49,71.633 +605136,321.25,73.01 +605137,317.83,68.863 +605138,318.48,70.265 +605139,319.15,71.661 +605140,319.85,73.049 +605141,316.59,68.868 +605142,317.18,70.281 +605143,317.81,71.688 +605144,318.46,73.087 +605145,315.35,68.874 +605146,315.89,70.297 +605147,316.46,71.715 +605148,317.07,73.124 +605149,314.11,68.881 +605150,314.6,70.314 +605151,315.12,71.741 +605152,315.68,73.16 +605153,312.86,68.889 +605154,313.31,70.332 +605155,313.78,71.767 +605156,314.28,73.194 +605157,311.62,68.899 +605158,312.01,70.349 +605159,312.44,71.793 +605160,312.89,73.228 +605161,310.38,68.909 +605162,310.72,70.367 +605163,311.09,71.818 +605164,311.49,73.26 +605165,309.14,68.921 +605166,309.43,70.386 +605167,309.75,71.843 +605168,310.1,73.291 +605169,307.9,68.934 +605170,308.14,70.405 +605171,308.41,71.867 +605172,308.71,73.321 +605173,306.66,68.948 +605174,306.85,70.424 +605175,307.06,71.892 +605176,307.31,73.35 +605177,305.42,68.964 +605178,305.56,70.444 +605179,305.72,71.915 +605180,305.92,73.378 +605181,304.18,68.981 +605182,304.26,70.464 +605183,304.38,71.939 +605184,304.52,73.404 +605185,302.94,68.999 +605186,302.97,70.484 +605187,303.03,71.961 +605188,303.13,73.43 +605189,301.7,69.018 +605190,301.68,70.505 +605191,301.69,71.984 +605192,301.73,73.454 +605193,300.46,69.038 +605194,300.39,70.526 +605195,300.35,72.006 +605196,300.34,73.477 +605197,299.22,69.06 +605198,299.1,70.548 +605199,299,72.028 +605200,298.95,73.498 +605201,297.98,69.082 +605202,297.8,70.57 +605203,297.66,72.049 +605204,297.55,73.519 +605205,296.74,69.106 +605206,296.51,70.592 +605207,296.32,72.07 +605208,296.16,73.538 +605209,295.5,69.132 +605210,295.22,70.615 +605211,294.97,72.091 +605212,294.76,73.557 +605213,294.26,69.158 +605214,293.93,70.638 +605215,293.63,72.111 +605216,293.37,73.574 +605217,293.02,69.186 +605218,292.64,70.662 +605219,292.29,72.13 +605220,291.98,73.59 +605221,291.78,69.215 +605222,291.34,70.686 +605223,290.94,72.15 +605224,290.58,73.604 +605225,290.54,69.245 +605226,290.05,70.71 +605227,289.6,72.169 +605228,289.19,73.618 +605229,289.3,69.276 +605230,288.76,70.735 +605231,288.26,72.187 +605232,287.8,73.63 +605233,288.06,69.308 +605234,287.46,70.761 +605235,286.92,72.205 +605236,286.41,73.642 +605237,286.82,69.342 +605238,286.17,70.786 +605239,285.57,72.223 +605240,285.02,73.652 +605241,285.58,69.377 +605242,284.88,70.812 +605243,284.23,72.241 +605244,283.63,73.661 +605245,284.33,69.413 +605246,283.59,70.839 +605247,282.89,72.258 +605248,282.24,73.669 +605249,283.09,69.45 +605250,282.29,70.865 +605251,281.55,72.274 +605252,280.85,73.675 +605253,281.85,69.489 +605254,281,70.892 +605255,280.2,72.291 +605256,279.46,73.681 +605257,280.6,69.528 +605258,279.7,70.92 +605259,278.86,72.306 +605260,278.07,73.685 +605261,279.35,69.569 +605262,278.41,70.948 +605263,277.52,72.322 +605264,276.68,73.689 +605265,278.11,69.61 +605266,277.12,70.976 +605267,276.18,72.337 +605268,275.3,73.691 +605269,276.86,69.653 +605270,275.82,71.005 +605271,274.84,72.352 +605272,273.91,73.692 +605273,275.61,69.697 +605274,274.53,71.034 +605275,273.5,72.366 +605276,272.53,73.692 +605277,274.37,69.742 +605278,273.23,71.063 +605279,272.16,72.38 +605280,271.14,73.691 +605281,273.12,69.789 +605282,271.94,71.093 +605283,270.82,72.394 +605284,269.76,73.69 +605285,271.87,69.836 +605286,270.64,71.123 +605287,269.48,72.407 +605288,268.38,73.687 +605289,270.62,69.884 +605290,269.34,71.154 +605291,268.14,72.42 +605292,266.99,73.682 +605293,269.36,69.933 +605294,268.05,71.184 +605295,266.8,72.433 +605296,265.61,73.677 +605297,268.11,69.984 +605298,266.75,71.216 +605299,265.46,72.445 +605300,264.23,73.671 +605301,266.86,70.035 +605302,265.45,71.247 +605303,264.12,72.457 +605304,262.85,73.664 +605305,265.6,70.087 +605306,264.15,71.279 +605307,262.78,72.469 +605308,261.48,73.656 +605309,264.34,70.141 +605310,262.86,71.311 +605311,261.44,72.48 +605312,260.1,73.647 +605313,263.09,70.195 +605314,261.56,71.343 +605315,260.11,72.491 +605316,258.72,73.637 +605317,261.83,70.25 +605318,260.26,71.376 +605319,258.77,72.502 +605320,257.35,73.627 +605321,260.57,70.306 +605322,258.96,71.409 +605323,257.43,72.513 +605324,255.98,73.615 +605325,259.31,70.363 +605326,257.66,71.442 +605327,256.1,72.523 +605328,254.6,73.602 +605329,258.04,70.421 +605330,256.36,71.476 +605331,254.76,72.533 +605332,253.23,73.589 +605333,256.78,70.48 +605334,255.06,71.51 +605335,253.42,72.542 +605336,251.86,73.575 +605337,255.52,70.54 +605338,253.76,71.544 +605339,252.09,72.552 +605340,250.49,73.559 +605341,254.25,70.6 +605342,252.46,71.579 +605343,250.75,72.561 +605344,249.13,73.543 +605345,252.98,70.661 +605346,251.16,71.613 +605347,249.42,72.569 +605348,247.76,73.527 +605349,251.71,70.723 +605350,249.85,71.648 +605351,248.08,72.578 +605352,246.39,73.509 +605353,250.44,70.786 +605354,248.55,71.684 +605355,246.75,72.586 +605356,245.03,73.491 +605357,249.17,70.849 +605358,247.25,71.719 +605359,245.42,72.594 +605360,243.67,73.472 +605361,247.9,70.913 +605362,245.94,71.755 +605363,244.08,72.602 +605364,242.31,73.452 +605365,246.62,70.978 +605366,244.64,71.791 +605367,242.75,72.609 +605368,240.95,73.432 +605369,245.35,71.044 +605370,243.34,71.827 +605371,241.42,72.617 +605372,239.59,73.411 +605373,244.07,71.11 +605374,242.03,71.863 +605375,240.09,72.624 +605376,238.23,73.389 +605377,242.79,71.177 +605378,240.72,71.9 +605379,238.76,72.631 +605380,236.88,73.367 +605381,241.51,71.244 +605382,239.42,71.937 +605383,237.43,72.638 +605384,235.52,73.344 +605385,240.22,71.312 +605386,238.11,71.974 +605387,236.1,72.644 +605388,234.17,73.32 +605389,238.94,71.38 +605390,236.8,72.011 +605391,234.77,72.65 +605392,232.82,73.296 +605393,237.65,71.449 +605394,235.5,72.048 +605395,233.44,72.657 +605396,231.47,73.272 +605397,236.36,71.518 +605398,234.19,72.086 +605399,232.11,72.663 +605400,230.12,73.247 +605401,235.08,71.588 +605402,232.88,72.123 +605403,230.78,72.668 +605404,228.78,73.221 +605405,233.78,71.658 +605406,231.57,72.161 +605407,229.45,72.674 +605408,227.43,73.195 +605409,232.49,71.729 +605410,230.26,72.199 +605411,228.13,72.68 +605412,226.09,73.169 +605413,231.2,71.8 +605414,228.95,72.237 +605415,226.8,72.685 +605416,224.75,73.142 +605417,229.9,71.871 +605418,227.64,72.275 +605419,225.47,72.69 +605420,223.4,73.115 +605421,228.6,71.943 +605422,226.32,72.314 +605423,224.15,72.696 +605424,222.07,73.087 +605425,227.3,72.015 +605426,225.01,72.352 +605427,222.82,72.701 +605428,220.73,73.059 +605429,226,72.087 +605430,223.7,72.391 +605431,221.5,72.706 +605432,219.39,73.031 +605433,224.7,72.16 +605434,222.38,72.429 +605435,220.18,72.711 +605436,218.06,73.003 +605437,223.39,72.233 +605438,221.07,72.468 +605439,218.85,72.716 +605440,216.73,72.974 +605441,222.08,72.306 +605442,219.76,72.507 +605443,217.53,72.72 +605444,215.4,72.945 +605445,220.78,72.379 +605446,218.44,72.545 +605447,216.21,72.725 +605448,214.07,72.916 +605449,219.46,72.452 +605450,217.12,72.584 +605451,214.89,72.73 +605452,212.74,72.887 +605453,218.15,72.525 +605454,215.81,72.623 +605455,213.57,72.734 +605456,211.41,72.857 +605457,216.84,72.598 +605458,214.49,72.662 +605459,212.25,72.739 +605460,210.09,72.828 +605461,215.52,72.672 +605462,213.17,72.701 +605463,210.93,72.744 +605464,208.77,72.798 +605465,214.2,72.745 +605466,211.85,72.74 +605467,209.61,72.748 +605468,207.45,72.769 +605469,212.88,72.819 +605470,210.53,72.779 +605471,208.29,72.753 +605472,206.13,72.739 +605473,211.56,72.892 +605474,209.22,72.818 +605475,206.97,72.757 +605476,204.81,72.709 +605477,210.24,72.965 +605478,207.89,72.857 +605479,205.65,72.762 +605480,203.49,72.68 +605481,208.91,73.038 +605482,206.57,72.896 +605483,204.33,72.767 +605484,202.18,72.65 +605485,207.59,73.111 +605486,205.25,72.934 +605487,203.02,72.771 +605488,200.87,72.62 +605489,206.26,73.184 +605490,203.93,72.973 +605491,201.7,72.776 +605492,199.55,72.591 +605493,204.93,73.257 +605494,202.61,73.012 +605495,200.38,72.781 +605496,198.25,72.562 +605497,203.6,73.33 +605498,201.28,73.051 +605499,199.07,72.785 +605500,196.94,72.533 +605501,202.26,73.402 +605502,199.96,73.089 +605503,197.76,72.79 +605504,195.63,72.504 +605505,200.93,73.474 +605506,198.64,73.128 +605507,196.44,72.795 +605508,194.33,72.475 +605509,199.59,73.546 +605510,197.31,73.166 +605511,195.13,72.8 +605512,193.02,72.447 +605513,198.25,73.617 +605514,195.99,73.205 +605515,193.81,72.806 +605516,191.72,72.419 +605517,196.91,73.688 +605518,194.66,73.243 +605519,192.5,72.811 +605520,190.42,72.391 +605521,195.57,73.759 +605522,193.33,73.281 +605523,191.19,72.816 +605524,189.12,72.363 +605525,194.22,73.829 +605526,192.01,73.319 +605527,189.88,72.822 +605528,187.83,72.336 +605529,192.88,73.899 +605530,190.68,73.357 +605531,188.57,72.827 +605532,186.53,72.309 +605533,191.53,73.969 +605534,189.35,73.395 +605535,187.26,72.833 +605536,185.24,72.283 +605537,190.18,74.038 +605538,188.02,73.432 +605539,185.95,72.839 +605540,183.95,72.257 +605541,188.83,74.106 +605542,186.69,73.47 +605543,184.64,72.845 +605544,182.66,72.231 +605545,187.48,74.174 +605546,185.36,73.507 +605547,183.33,72.851 +605548,181.37,72.207 +605549,186.12,74.241 +605550,184.03,73.544 +605551,182.02,72.858 +605552,180.08,72.182 +605553,184.77,74.308 +605554,182.7,73.581 +605555,180.71,72.864 +605556,178.79,72.158 +605557,183.41,74.375 +605558,181.37,73.618 +605559,179.41,72.871 +605560,177.51,72.135 +605561,182.05,74.44 +605562,180.04,73.654 +605563,178.1,72.878 +605564,176.23,72.112 +605565,180.69,74.505 +605566,178.7,73.691 +605567,176.79,72.885 +605568,174.94,72.09 +605569,179.33,74.57 +605570,177.37,73.727 +605571,175.49,72.893 +605572,173.66,72.068 +605573,177.97,74.633 +605574,176.04,73.763 +605575,174.18,72.9 +605576,172.39,72.047 +605577,176.6,74.696 +605578,174.7,73.798 +605579,172.88,72.908 +605580,171.11,72.027 +605581,175.23,74.759 +605582,173.37,73.834 +605583,171.57,72.917 +605584,169.83,72.008 +605585,173.87,74.82 +605586,172.03,73.869 +605587,170.27,72.925 +605588,168.56,71.989 +605589,172.5,74.881 +605590,170.7,73.904 +605591,168.96,72.934 +605592,167.28,71.971 +605593,171.13,74.941 +605594,169.36,73.938 +605595,167.66,72.942 +605596,166.01,71.954 +605597,169.76,75 +605598,168.03,73.973 +605599,166.36,72.952 +605600,164.74,71.937 +605601,168.39,75.059 +605602,166.69,74.007 +605603,165.05,72.961 +605604,163.47,71.922 +605605,167.01,75.116 +605606,165.35,74.041 +605607,163.75,72.971 +605608,162.2,71.907 +605609,165.64,75.173 +605610,164.02,74.074 +605611,162.45,72.981 +605612,160.94,71.893 +605613,164.26,75.229 +605614,162.68,74.108 +605615,161.15,72.991 +605616,159.67,71.88 +605617,162.88,75.283 +605618,161.34,74.141 +605619,159.85,73.002 +605620,158.4,71.868 +605621,161.51,75.337 +605622,160,74.173 +605623,158.55,73.013 +605624,157.14,71.857 +605625,160.13,75.39 +605626,158.66,74.206 +605627,157.25,73.024 +605628,155.88,71.846 +605629,158.75,75.443 +605630,157.32,74.238 +605631,155.95,73.036 +605632,154.62,71.837 +605633,157.37,75.494 +605634,155.98,74.269 +605635,154.65,73.047 +605636,153.36,71.829 +605637,155.98,75.544 +605638,154.64,74.301 +605639,153.35,73.06 +605640,152.1,71.821 +605641,154.6,75.593 +605642,153.3,74.332 +605643,152.05,73.072 +605644,150.84,71.815 +605645,153.22,75.641 +605646,151.96,74.363 +605647,150.75,73.085 +605648,149.58,71.81 +605649,151.83,75.688 +605650,150.62,74.393 +605651,149.45,73.098 +605652,148.32,71.805 +605653,150.45,75.734 +605654,149.28,74.423 +605655,148.15,73.112 +605656,147.07,71.802 +605657,149.06,75.779 +605658,147.94,74.453 +605659,146.86,73.126 +605660,145.81,71.8 +605661,147.67,75.823 +605662,146.59,74.482 +605663,145.56,73.14 +605664,144.56,71.799 +605665,146.28,75.866 +605666,145.25,74.511 +605667,144.26,73.155 +605668,143.3,71.799 +605669,144.89,75.908 +605670,143.91,74.54 +605671,142.96,73.17 +605672,142.05,71.8 +605673,143.51,75.949 +605674,142.57,74.568 +605675,141.67,73.185 +605676,140.8,71.802 +605677,142.12,75.989 +605678,141.22,74.596 +605679,140.37,73.201 +605680,139.55,71.806 +605681,140.72,76.027 +605682,139.88,74.624 +605683,139.07,73.218 +605684,138.3,71.81 +605685,139.33,76.065 +605686,138.54,74.651 +605687,137.78,73.234 +605688,137.05,71.816 +605689,137.94,76.101 +605690,137.19,74.678 +605691,136.48,73.251 +605692,135.8,71.823 +605693,136.55,76.136 +605694,135.85,74.704 +605695,135.18,73.268 +605696,134.55,71.831 +605697,135.16,76.17 +605698,134.51,74.73 +605699,133.89,73.286 +605700,133.3,71.84 +605701,133.77,76.203 +605702,133.16,74.756 +605703,132.59,73.304 +605704,132.05,71.85 +605705,132.37,76.235 +605706,131.82,74.781 +605707,131.3,73.323 +605708,130.81,71.862 +605709,130.98,76.266 +605710,130.47,74.806 +605711,130,73.342 +605712,129.56,71.875 +605713,129.58,76.295 +605714,129.13,74.83 +605715,128.7,73.361 +605716,128.31,71.889 +605717,128.19,76.323 +605718,127.78,74.854 +605719,127.41,73.381 +605720,127.07,71.904 +605721,126.8,76.351 +605722,126.44,74.878 +605723,126.11,73.401 +605724,125.82,71.92 +605725,125.4,76.376 +605726,125.09,74.902 +605727,124.82,73.422 +605728,124.57,71.938 +605729,124.01,76.401 +605730,123.75,74.924 +605731,123.52,73.442 +605732,123.33,71.957 +605733,122.61,76.425 +605734,122.4,74.947 +605735,122.23,73.464 +605736,122.08,71.977 +605737,121.22,76.447 +605738,121.06,74.969 +605739,120.93,73.486 +605740,120.84,71.998 +605741,119.82,76.469 +605742,119.71,74.991 +605743,119.64,73.508 +605744,119.59,72.021 +605745,118.43,76.489 +605746,118.37,75.012 +605747,118.34,73.53 +605748,118.35,72.044 +605749,117.03,76.508 +605750,117.02,75.033 +605751,117.05,73.553 +605752,117.1,72.069 +605753,115.64,76.526 +605754,115.68,75.054 +605755,115.75,73.577 +605756,115.86,72.095 +605757,114.25,76.542 +605758,114.33,75.074 +605759,114.46,73.601 +605760,114.61,72.123 +605761,112.85,76.558 +605762,112.99,75.094 +605763,113.16,73.625 +605764,113.37,72.151 +605765,111.46,76.572 +605766,111.64,75.113 +605767,111.87,73.649 +605768,112.12,72.181 +605769,110.06,76.585 +605770,110.3,75.132 +605771,110.57,73.674 +605772,110.88,72.212 +605773,108.67,76.597 +605774,108.95,75.151 +605775,109.27,73.7 +605776,109.63,72.245 +605777,107.28,76.608 +605778,107.61,75.169 +605779,107.98,73.726 +605780,108.38,72.278 +605781,105.88,76.618 +605782,106.27,75.187 +605783,106.68,73.752 +605784,107.14,72.313 +605785,104.49,76.626 +605786,104.92,75.205 +605787,105.39,73.778 +605788,105.89,72.348 +605789,103.1,76.634 +605790,103.58,75.222 +605791,104.09,73.805 +605792,104.64,72.385 +605793,101.71,76.64 +605794,102.23,75.239 +605795,102.79,73.833 +605796,103.4,72.424 +605797,100.32,76.645 +605798,100.89,75.255 +605799,101.5,73.86 +605800,102.15,72.463 +605801,98.928,76.649 +605802,99.544,75.271 +605803,100.2,73.889 +605804,100.9,72.504 +605805,97.538,76.652 +605806,98.2,75.287 +605807,98.904,73.917 +605808,99.651,72.545 +605809,96.149,76.654 +605810,96.857,75.302 +605811,97.607,73.946 +605812,98.401,72.588 +605813,94.76,76.655 +605814,95.513,75.317 +605815,96.31,73.975 +605816,97.151,72.632 +605817,93.372,76.655 +605818,94.17,75.331 +605819,95.012,74.005 +605820,95.9,72.677 +605821,91.984,76.653 +605822,92.827,75.346 +605823,93.714,74.035 +605824,94.649,72.723 +605825,90.598,76.651 +605826,91.484,75.36 +605827,92.416,74.065 +605828,93.397,72.77 +605829,89.212,76.648 +605830,90.142,75.373 +605831,91.118,74.096 +605832,92.144,72.819 +605833,87.827,76.644 +605834,88.799,75.386 +605835,89.82,74.127 +605836,90.89,72.868 +605837,86.443,76.638 +605838,87.457,75.399 +605839,88.521,74.159 +605840,89.636,72.918 +605841,85.059,76.632 +605842,86.115,75.412 +605843,87.222,74.19 +605844,88.381,72.97 +605845,83.676,76.625 +605846,84.774,75.424 +605847,85.922,74.222 +605848,87.124,73.022 +605849,82.295,76.616 +605850,83.433,75.436 +605851,84.622,74.255 +605852,85.867,73.076 +605853,80.914,76.607 +605854,82.092,75.447 +605855,83.322,74.288 +605856,84.609,73.13 +605857,79.534,76.597 +605858,80.751,75.459 +605859,82.022,74.321 +605860,83.35,73.185 +605861,78.155,76.586 +605862,79.411,75.47 +605863,80.721,74.354 +605864,82.09,73.242 +605865,76.778,76.574 +605866,78.071,75.48 +605867,79.42,74.388 +605868,80.829,73.299 +605869,75.401,76.561 +605870,76.731,75.491 +605871,78.118,74.422 +605872,79.567,73.357 +605873,74.025,76.548 +605874,75.392,75.501 +605875,76.816,74.456 +605876,78.303,73.416 +605877,72.651,76.533 +605878,74.053,75.511 +605879,75.514,74.491 +605880,77.039,73.476 +605881,71.277,76.518 +605882,72.714,75.52 +605883,74.211,74.526 +605884,75.773,73.537 +605885,69.905,76.502 +605886,71.376,75.53 +605887,72.908,74.561 +605888,74.507,73.598 +605889,68.534,76.485 +605890,70.038,75.539 +605891,71.604,74.596 +605892,73.238,73.66 +605893,67.164,76.467 +605894,68.7,75.547 +605895,70.3,74.632 +605896,71.969,73.724 +605897,65.795,76.449 +605898,67.363,75.556 +605899,68.996,74.668 +605900,70.699,73.787 +605901,64.427,76.43 +605902,66.026,75.564 +605903,67.691,74.704 +605904,69.427,73.852 +605905,63.061,76.41 +605906,64.69,75.572 +605907,66.386,74.741 +605908,68.153,73.917 +605909,61.696,76.39 +605910,63.354,75.58 +605911,65.08,74.777 +605912,66.879,73.983 +605913,60.332,76.368 +605914,62.019,75.588 +605915,63.774,74.814 +605916,65.603,74.05 +605917,58.97,76.347 +605918,60.684,75.595 +605919,62.467,74.851 +605920,64.325,74.117 +605921,57.608,76.324 +605922,59.349,75.602 +605923,61.16,74.889 +605924,63.047,74.185 +605925,56.249,76.301 +605926,58.015,75.609 +605927,59.852,74.926 +605928,61.766,74.254 +605929,54.89,76.278 +605930,56.681,75.616 +605931,58.544,74.964 +605932,60.485,74.323 +605933,53.533,76.254 +605934,55.348,75.623 +605935,57.235,75.002 +605936,59.201,74.392 +605937,52.178,76.229 +605938,54.015,75.63 +605939,55.926,75.04 +605940,57.916,74.462 +605941,50.823,76.204 +605942,52.683,75.636 +605943,54.616,75.078 +605944,56.63,74.533 +605945,49.471,76.179 +605946,51.351,75.642 +605947,53.306,75.116 +605948,55.342,74.604 +605949,48.119,76.153 +605950,50.02,75.648 +605951,51.995,75.155 +605952,54.053,74.675 +605953,46.769,76.127 +605954,48.689,75.654 +605955,50.683,75.194 +605956,52.762,74.747 +605957,45.421,76.1 +605958,47.358,75.66 +605959,49.371,75.232 +605960,51.469,74.819 +605961,44.074,76.073 +605962,46.028,75.666 +605963,48.059,75.271 +605964,50.175,74.892 +605965,42.729,76.045 +605966,44.699,75.671 +605967,46.746,75.31 +605968,48.879,74.965 +605969,41.385,76.018 +605970,43.37,75.677 +605971,45.432,75.35 +605972,47.581,75.038 +605973,40.042,75.99 +605974,42.042,75.682 +605975,44.118,75.389 +605976,46.282,75.112 +605977,38.702,75.961 +605978,40.714,75.688 +605979,42.804,75.428 +605980,44.981,75.185 +605981,37.362,75.933 +605982,39.386,75.693 +605983,41.489,75.468 +605984,43.679,75.259 +605985,36.024,75.904 +605986,38.059,75.698 +605987,40.173,75.507 +605988,42.374,75.333 +605989,34.688,75.875 +605990,36.733,75.703 +605991,38.856,75.547 +605992,41.068,75.407 +605993,33.353,75.846 +605994,35.407,75.708 +605995,37.539,75.586 +605996,39.761,75.482 +605997,32.02,75.817 +605998,34.082,75.714 +605999,36.222,75.626 +606000,38.451,75.556 +606001,30.689,75.788 +606002,32.757,75.719 +606003,34.904,75.666 +606004,37.14,75.631 +606005,29.359,75.758 +606006,31.433,75.724 +606007,33.585,75.705 +606008,35.827,75.705 +606009,28.03,75.729 +606010,30.109,75.729 +606011,32.266,75.745 +606012,34.513,75.78 +606013,26.704,75.699 +606014,28.786,75.734 +606015,30.946,75.785 +606016,33.197,75.854 +606017,25.378,75.67 +606018,27.463,75.739 +606019,29.626,75.824 +606020,31.879,75.929 +606021,24.055,75.641 +606022,26.141,75.744 +606023,28.305,75.864 +606024,30.559,76.003 +606025,22.732,75.611 +606026,24.819,75.749 +606027,26.983,75.904 +606028,29.237,76.078 +606029,21.412,75.582 +606030,23.498,75.754 +606031,25.661,75.943 +606032,27.914,76.152 +606033,20.093,75.553 +606034,22.177,75.759 +606035,24.339,75.983 +606036,26.589,76.226 +606037,18.776,75.524 +606038,20.857,75.765 +606039,23.015,76.022 +606040,25.263,76.3 +606041,17.46,75.496 +606042,19.537,75.77 +606043,21.691,76.062 +606044,23.934,76.374 +606045,16.146,75.467 +606046,18.218,75.775 +606047,20.367,76.101 +606048,22.604,76.447 +606049,14.833,75.439 +606050,16.9,75.781 +606051,19.042,76.141 +606052,21.272,76.52 +606053,13.522,75.411 +606054,15.582,75.786 +606055,17.717,76.18 +606056,19.939,76.593 +606057,12.212,75.383 +606058,14.264,75.792 +606059,16.39,76.219 +606060,18.604,76.665 +606061,10.904,75.356 +606062,12.947,75.798 +606063,15.064,76.258 +606064,17.267,76.738 +606065,9.5981,75.329 +606066,11.63,75.804 +606067,13.736,76.297 +606068,15.928,76.809 +606069,8.2932,75.302 +606070,10.314,75.81 +606071,12.409,76.336 +606072,14.588,76.881 +606073,6.9898,75.276 +606074,8.9988,75.816 +606075,11.08,76.374 +606076,13.246,76.952 +606077,5.688,75.25 +606078,7.6838,75.823 +606079,9.7514,76.413 +606080,11.902,77.022 +606081,4.3877,75.224 +606082,6.3693,75.829 +606083,8.4219,76.451 +606084,10.557,77.092 +606085,3.0888,75.199 +606086,5.0553,75.836 +606087,7.0919,76.49 +606088,9.2103,77.162 +606089,1.7915,75.175 +606090,3.7417,75.843 +606091,5.7614,76.528 +606092,7.8619,77.231 +606093,0.49564,75.151 +606094,2.4286,75.85 +606095,4.4303,76.565 +606096,6.5119,77.299 +606097,359.2,75.127 +606098,1.116,75.857 +606099,3.0987,76.603 +606100,5.1603,77.367 +606101,357.91,75.105 +606102,359.8,75.864 +606103,1.7665,76.641 +606104,3.8072,77.435 +606105,356.62,75.082 +606106,358.49,75.872 +606107,0.43386,76.678 +606108,2.4525,77.501 +606109,355.33,75.061 +606110,357.18,75.88 +606111,359.1,76.715 +606112,1.0964,77.567 +606113,354.04,75.04 +606114,355.87,75.888 +606115,357.77,76.752 +606116,359.74,77.633 +606117,352.75,75.019 +606118,354.56,75.896 +606119,356.43,76.789 +606120,358.38,77.697 +606121,351.46,75 +606122,353.25,75.905 +606123,355.1,76.825 +606124,357.02,77.761 +606125,350.18,74.981 +606126,351.94,75.914 +606127,353.76,76.861 +606128,355.66,77.824 +606129,348.9,74.963 +606130,350.63,75.923 +606131,352.43,76.897 +606132,354.29,77.887 +606133,347.61,74.946 +606134,349.32,75.932 +606135,351.09,76.933 +606136,352.93,77.948 +606137,346.33,74.929 +606138,348.02,75.942 +606139,349.75,76.968 +606140,351.56,78.009 +606141,345.05,74.913 +606142,346.71,75.952 +606143,348.42,77.003 +606144,350.19,78.069 +606145,343.78,74.898 +606146,345.4,75.962 +606147,347.08,77.038 +606148,348.83,78.128 +606149,342.5,74.884 +606150,344.09,75.972 +606151,345.74,77.073 +606152,347.46,78.187 +606153,341.22,74.871 +606154,342.79,75.983 +606155,344.4,77.107 +606156,346.08,78.244 +606157,339.95,74.859 +606158,341.48,75.994 +606159,343.07,77.141 +606160,344.71,78.301 +606161,338.68,74.847 +606162,340.17,76.005 +606163,341.73,77.175 +606164,343.34,78.356 +606165,337.4,74.837 +606166,338.87,76.017 +606167,340.39,77.208 +606168,341.96,78.411 +606169,336.13,74.827 +606170,337.56,76.029 +606171,339.05,77.241 +606172,340.59,78.465 +606173,334.86,74.819 +606174,336.26,76.041 +606175,337.71,77.274 +606176,339.21,78.518 +606177,333.59,74.811 +606178,334.96,76.054 +606179,336.37,77.307 +606180,337.83,78.569 +606181,332.33,74.805 +606182,333.65,76.067 +606183,335.02,77.339 +606184,336.45,78.62 +606185,331.06,74.799 +606186,332.35,76.08 +606187,333.68,77.371 +606188,335.07,78.67 +606189,329.79,74.795 +606190,331.04,76.094 +606191,332.34,77.402 +606192,333.69,78.719 +606193,328.53,74.791 +606194,329.74,76.108 +606195,331,77.433 +606196,332.31,78.766 +606197,327.26,74.789 +606198,328.44,76.123 +606199,329.66,77.464 +606200,330.92,78.813 +606201,326,74.787 +606202,327.14,76.137 +606203,328.31,77.494 +606204,329.54,78.859 +606205,324.74,74.787 +606206,325.83,76.152 +606207,326.97,77.525 +606208,328.15,78.903 +606209,323.48,74.788 +606210,324.53,76.168 +606211,325.63,77.554 +606212,326.77,78.947 +606213,322.22,74.79 +606214,323.23,76.184 +606215,324.28,77.584 +606216,325.38,78.989 +606217,320.96,74.793 +606218,321.93,76.2 +606219,322.94,77.613 +606220,323.99,79.03 +606221,319.7,74.798 +606222,320.63,76.217 +606223,321.59,77.641 +606224,322.61,79.071 +606225,318.44,74.803 +606226,319.33,76.234 +606227,320.25,77.67 +606228,321.22,79.11 +606229,317.18,74.81 +606230,318.02,76.251 +606231,318.91,77.697 +606232,319.83,79.148 +606233,315.92,74.818 +606234,316.72,76.269 +606235,317.56,77.725 +606236,318.44,79.184 +606237,314.67,74.827 +606238,315.42,76.287 +606239,316.21,77.752 +606240,317.05,79.22 +606241,313.41,74.837 +606242,314.12,76.306 +606243,314.87,77.779 +606244,315.66,79.254 +606245,312.16,74.848 +606246,312.82,76.325 +606247,313.52,77.805 +606248,314.26,79.288 +606249,310.9,74.861 +606250,311.52,76.344 +606251,312.18,77.831 +606252,312.87,79.32 +606253,309.65,74.874 +606254,310.22,76.364 +606255,310.83,77.857 +606256,311.48,79.351 +606257,308.39,74.889 +606258,308.92,76.385 +606259,309.49,77.882 +606260,310.09,79.381 +606261,307.14,74.906 +606262,307.62,76.405 +606263,308.14,77.907 +606264,308.69,79.409 +606265,305.89,74.923 +606266,306.32,76.426 +606267,306.79,77.931 +606268,307.3,79.437 +606269,304.63,74.942 +606270,305.02,76.448 +606271,305.45,77.955 +606272,305.91,79.463 +606273,303.38,74.962 +606274,303.72,76.47 +606275,304.1,77.979 +606276,304.51,79.488 +606277,302.13,74.983 +606278,302.42,76.492 +606279,302.75,78.002 +606280,303.12,79.512 +606281,300.88,75.005 +606282,301.12,76.515 +606283,301.41,78.025 +606284,301.72,79.535 +606285,299.62,75.029 +606286,299.83,76.538 +606287,300.06,78.047 +606288,300.33,79.556 +606289,298.37,75.054 +606290,298.53,76.561 +606291,298.71,78.069 +606292,298.93,79.576 +606293,297.12,75.08 +606294,297.23,76.585 +606295,297.37,78.091 +606296,297.54,79.595 +606297,295.87,75.108 +606298,295.93,76.61 +606299,296.02,78.112 +606300,296.14,79.613 +606301,294.62,75.136 +606302,294.63,76.635 +606303,294.67,78.133 +606304,294.75,79.63 +606305,293.37,75.166 +606306,293.33,76.66 +606307,293.32,78.153 +606308,293.35,79.646 +606309,292.11,75.197 +606310,292.03,76.685 +606311,291.98,78.174 +606312,291.96,79.66 +606313,290.86,75.23 +606314,290.73,76.711 +606315,290.63,78.193 +606316,290.56,79.673 +606317,289.61,75.263 +606318,289.43,76.738 +606319,289.28,78.213 +606320,289.17,79.686 +606321,288.36,75.298 +606322,288.13,76.765 +606323,287.94,78.231 +606324,287.77,79.696 +606325,287.11,75.334 +606326,286.83,76.792 +606327,286.59,78.25 +606328,286.38,79.706 +606329,285.85,75.371 +606330,285.53,76.82 +606331,285.24,78.268 +606332,284.98,79.715 +606333,284.6,75.41 +606334,284.23,76.848 +606335,283.9,78.286 +606336,283.59,79.722 +606337,283.35,75.449 +606338,282.93,76.876 +606339,282.55,78.303 +606340,282.2,79.729 +606341,282.1,75.49 +606342,281.63,76.905 +606343,281.2,78.32 +606344,280.8,79.734 +606345,280.84,75.532 +606346,280.33,76.934 +606347,279.85,78.337 +606348,279.41,79.738 +606349,279.59,75.575 +606350,279.03,76.964 +606351,278.51,78.353 +606352,278.02,79.741 +606353,278.33,75.619 +606354,277.73,76.994 +606355,277.16,78.369 +606356,276.63,79.743 +606357,277.08,75.665 +606358,276.43,77.024 +606359,275.82,78.385 +606360,275.24,79.744 +606361,275.82,75.711 +606362,275.13,77.055 +606363,274.47,78.4 +606364,273.85,79.744 +606365,274.57,75.759 +606366,273.83,77.086 +606367,273.12,78.415 +606368,272.46,79.742 +606369,273.31,75.808 +606370,272.53,77.118 +606371,271.78,78.429 +606372,271.07,79.74 +606373,272.06,75.858 +606374,271.22,77.149 +606375,270.43,78.443 +606376,269.68,79.737 +606377,270.8,75.908 +606378,269.92,77.182 +606379,269.09,78.457 +606380,268.29,79.732 +606381,269.54,75.96 +606382,268.62,77.214 +606383,267.74,78.47 +606384,266.9,79.727 +606385,268.28,76.014 +606386,267.32,77.247 +606387,266.4,78.483 +606388,265.51,79.721 +606389,267.02,76.068 +606390,266.02,77.28 +606391,265.05,78.496 +606392,264.13,79.713 +606393,265.76,76.123 +606394,264.71,77.314 +606395,263.71,78.509 +606396,262.74,79.705 +606397,264.5,76.179 +606398,263.41,77.348 +606399,262.36,78.521 +606400,261.36,79.696 +606401,263.24,76.236 +606402,262.11,77.382 +606403,261.02,78.533 +606404,259.97,79.685 +606405,261.97,76.294 +606406,260.8,77.417 +606407,259.68,78.544 +606408,258.59,79.674 +606409,260.71,76.353 +606410,259.5,77.452 +606411,258.33,78.556 +606412,257.21,79.662 +606413,259.45,76.413 +606414,258.19,77.487 +606415,256.99,78.566 +606416,255.83,79.649 +606417,258.18,76.474 +606418,256.89,77.522 +606419,255.65,78.577 +606420,254.45,79.636 +606421,256.91,76.535 +606422,255.58,77.558 +606423,254.3,78.588 +606424,253.07,79.621 +606425,255.64,76.598 +606426,254.28,77.594 +606427,252.96,78.598 +606428,251.69,79.606 +606429,254.38,76.661 +606430,252.97,77.631 +606431,251.62,78.608 +606432,250.31,79.589 +606433,253.11,76.726 +606434,251.67,77.667 +606435,250.28,78.617 +606436,248.94,79.572 +606437,251.83,76.791 +606438,250.36,77.704 +606439,248.94,78.626 +606440,247.56,79.555 +606441,250.56,76.856 +606442,249.05,77.742 +606443,247.6,78.636 +606444,246.19,79.536 +606445,249.29,76.923 +606446,247.75,77.779 +606447,246.26,78.644 +606448,244.82,79.517 +606449,248.01,76.99 +606450,246.44,77.817 +606451,244.92,78.653 +606452,243.44,79.497 +606453,246.74,77.058 +606454,245.13,77.855 +606455,243.58,78.661 +606456,242.07,79.476 +606457,245.46,77.127 +606458,243.82,77.893 +606459,242.24,78.67 +606460,240.7,79.455 +606461,244.18,77.196 +606462,242.51,77.931 +606463,240.9,78.678 +606464,239.34,79.433 +606465,242.9,77.266 +606466,241.2,77.97 +606467,239.56,78.685 +606468,237.97,79.411 +606469,241.62,77.337 +606470,239.89,78.009 +606471,238.22,78.693 +606472,236.6,79.388 +606473,240.34,77.408 +606474,238.58,78.048 +606475,236.88,78.7 +606476,235.24,79.364 +606477,239.06,77.479 +606478,237.27,78.087 +606479,235.54,78.708 +606480,233.88,79.34 +606481,237.77,77.552 +606482,235.96,78.126 +606483,234.21,78.715 +606484,232.51,79.315 +606485,236.49,77.624 +606486,234.65,78.166 +606487,232.87,78.722 +606488,231.15,79.29 +606489,235.2,77.697 +606490,233.33,78.205 +606491,231.53,78.728 +606492,229.79,79.264 +606493,233.91,77.771 +606494,232.02,78.245 +606495,230.2,78.735 +606496,228.44,79.238 +606497,232.62,77.845 +606498,230.71,78.285 +606499,228.86,78.742 +606500,227.08,79.212 +606501,231.33,77.919 +606502,229.39,78.325 +606503,227.53,78.748 +606504,225.72,79.185 +606505,230.03,77.994 +606506,228.08,78.366 +606507,226.19,78.754 +606508,224.37,79.157 +606509,228.74,78.069 +606510,226.76,78.406 +606511,224.86,78.76 +606512,223.02,79.13 +606513,227.44,78.145 +606514,225.45,78.446 +606515,223.53,78.766 +606516,221.67,79.102 +606517,226.14,78.22 +606518,224.13,78.487 +606519,222.19,78.772 +606520,220.32,79.074 +606521,224.84,78.296 +606522,222.82,78.528 +606523,220.86,78.778 +606524,218.97,79.045 +606525,223.54,78.372 +606526,221.5,78.568 +606527,219.53,78.784 +606528,217.62,79.017 +606529,222.24,78.449 +606530,220.18,78.609 +606531,218.2,78.79 +606532,216.28,78.988 +606533,220.93,78.525 +606534,218.86,78.65 +606535,216.87,78.795 +606536,214.93,78.959 +606537,219.63,78.602 +606538,217.55,78.691 +606539,215.54,78.801 +606540,213.59,78.929 +606541,218.32,78.679 +606542,216.23,78.732 +606543,214.21,78.807 +606544,212.25,78.9 +606545,217.01,78.755 +606546,214.91,78.773 +606547,212.88,78.812 +606548,210.91,78.871 +606549,215.7,78.832 +606550,213.59,78.814 +606551,211.55,78.818 +606552,209.58,78.841 +606553,214.39,78.909 +606554,212.26,78.855 +606555,210.22,78.824 +606556,208.24,78.812 +606557,213.07,78.986 +606558,210.94,78.896 +606559,208.89,78.829 +606560,206.9,78.782 +606561,211.76,79.063 +606562,209.62,78.937 +606563,207.56,78.835 +606564,205.57,78.753 +606565,210.44,79.14 +606566,208.3,78.978 +606567,206.24,78.84 +606568,204.24,78.723 +606569,209.12,79.216 +606570,206.98,79.019 +606571,204.91,78.846 +606572,202.91,78.694 +606573,207.8,79.293 +606574,205.65,79.06 +606575,203.58,78.852 +606576,201.58,78.665 +606577,206.48,79.369 +606578,204.33,79.101 +606579,202.26,78.858 +606580,200.25,78.635 +606581,205.15,79.445 +606582,203,79.142 +606583,200.93,78.863 +606584,198.93,78.606 +606585,203.83,79.521 +606586,201.68,79.183 +606587,199.61,78.869 +606588,197.6,78.578 +606589,202.5,79.597 +606590,200.35,79.224 +606591,198.28,78.875 +606592,196.28,78.549 +606593,201.17,79.672 +606594,199.03,79.264 +606595,196.96,78.881 +606596,194.96,78.521 +606597,199.84,79.747 +606598,197.7,79.305 +606599,195.64,78.887 +606600,193.64,78.493 +606601,198.51,79.822 +606602,196.37,79.345 +606603,194.31,78.894 +606604,192.32,78.465 +606605,197.17,79.897 +606606,195.04,79.386 +606607,192.99,78.9 +606608,191.01,78.437 +606609,195.84,79.971 +606610,193.71,79.426 +606611,191.67,78.907 +606612,189.69,78.41 +606613,194.5,80.0444 +606614,192.38,79.466 +606615,190.35,78.913 +606616,188.38,78.383 +606617,193.16,80.1177 +606618,191.05,79.506 +606619,189.03,78.92 +606620,187.07,78.357 +606621,191.82,80.1904 +606622,189.72,79.546 +606623,187.71,78.927 +606624,185.75,78.331 +606625,190.48,80.2627 +606626,188.39,79.586 +606627,186.39,78.934 +606628,184.45,78.306 +606629,189.13,80.3344 +606630,187.06,79.625 +606631,185.07,78.941 +606632,183.14,78.281 +606633,187.79,80.4056 +606634,185.73,79.664 +606635,183.75,78.949 +606636,181.83,78.256 +606637,186.44,80.4762 +606638,184.4,79.704 +606639,182.43,78.956 +606640,180.53,78.232 +606641,185.09,80.5463 +606642,183.06,79.743 +606643,181.11,78.964 +606644,179.22,78.209 +606645,183.74,80.6157 +606646,181.73,79.781 +606647,179.79,78.972 +606648,177.92,78.186 +606649,182.39,80.6845 +606650,180.4,79.82 +606651,178.48,78.98 +606652,176.62,78.164 +606653,181.04,80.7526 +606654,179.06,79.858 +606655,177.16,78.989 +606656,175.32,78.142 +606657,179.68,80.82 +606658,177.73,79.896 +606659,175.84,78.998 +606660,174.02,78.121 +606661,178.33,80.8867 +606662,176.39,79.934 +606663,174.53,79.007 +606664,172.73,78.101 +606665,176.97,80.9527 +606666,175.06,79.972 +606667,173.21,79.016 +606668,171.43,78.081 +606669,175.61,81.0179 +606670,173.72,80.0095 +606671,171.9,79.025 +606672,170.14,78.063 +606673,174.25,81.0823 +606674,172.38,80.0467 +606675,170.58,79.035 +606676,168.85,78.045 +606677,172.89,81.1459 +606678,171.04,80.0836 +606679,169.27,79.045 +606680,167.56,78.027 +606681,171.53,81.2087 +606682,169.71,80.1203 +606683,167.96,79.055 +606684,166.27,78.011 +606685,170.16,81.2706 +606686,168.37,80.1567 +606687,166.64,79.066 +606688,164.98,77.995 +606689,168.8,81.3317 +606690,167.03,80.1928 +606691,165.33,79.076 +606692,163.69,77.98 +606693,167.43,81.3919 +606694,165.69,80.2286 +606695,164.02,79.087 +606696,162.4,77.966 +606697,166.06,81.4512 +606698,164.35,80.2641 +606699,162.71,79.099 +606700,161.12,77.953 +606701,164.69,81.5095 +606702,163.01,80.2993 +606703,161.39,79.11 +606704,159.84,77.941 +606705,163.32,81.5669 +606706,161.67,80.3343 +606707,160.08,79.122 +606708,158.55,77.93 +606709,161.95,81.6234 +606710,160.33,80.3689 +606711,158.77,79.135 +606712,157.27,77.92 +606713,160.57,81.6789 +606714,158.99,80.4032 +606715,157.46,79.148 +606716,155.99,77.91 +606717,159.2,81.7333 +606718,157.64,80.4371 +606719,156.15,79.161 +606720,154.71,77.902 +606721,157.82,81.7868 +606722,156.3,80.4707 +606723,154.84,79.174 +606724,153.43,77.895 +606725,156.45,81.8392 +606726,154.96,80.504 +606727,153.53,79.188 +606728,152.16,77.888 +606729,155.07,81.8906 +606730,153.62,80.537 +606731,152.22,79.202 +606732,150.88,77.883 +606733,153.69,81.941 +606734,152.27,80.5696 +606735,150.91,79.216 +606736,149.61,77.879 +606737,152.31,81.9903 +606738,150.93,80.6019 +606739,149.6,79.231 +606740,148.33,77.876 +606741,150.93,82.0384 +606742,149.58,80.6338 +606743,148.3,79.246 +606744,147.06,77.874 +606745,149.55,82.0855 +606746,148.24,80.6653 +606747,146.99,79.261 +606748,145.79,77.873 +606749,148.16,82.1315 +606750,146.89,80.6965 +606751,145.68,79.277 +606752,144.51,77.873 +606753,146.78,82.1764 +606754,145.55,80.7273 +606755,144.37,79.293 +606756,143.24,77.874 +606757,145.39,82.2201 +606758,144.2,80.7577 +606759,143.07,79.31 +606760,141.97,77.876 +606761,144.01,82.2627 +606762,142.86,80.7878 +606763,141.76,79.327 +606764,140.71,77.88 +606765,142.62,82.3041 +606766,141.51,80.8174 +606767,140.45,79.344 +606768,139.44,77.885 +606769,141.23,82.3444 +606770,140.16,80.8467 +606771,139.14,79.362 +606772,138.17,77.891 +606773,139.85,82.3835 +606774,138.82,80.8756 +606775,137.84,79.38 +606776,136.9,77.898 +606777,138.46,82.4214 +606778,137.47,80.9042 +606779,136.53,79.399 +606780,135.64,77.906 +606781,137.07,82.4582 +606782,136.12,80.9323 +606783,135.23,79.418 +606784,134.37,77.915 +606785,135.68,82.4937 +606786,134.78,80.96 +606787,133.92,79.437 +606788,133.11,77.926 +606789,134.29,82.5281 +606790,133.43,80.9873 +606791,132.62,79.457 +606792,131.84,77.938 +606793,132.89,82.5612 +606794,132.08,81.0143 +606795,131.31,79.478 +606796,130.58,77.951 +606797,131.5,82.5931 +606798,130.73,81.0408 +606799,130,79.498 +606800,129.32,77.965 +606801,130.11,82.6239 +606802,129.38,81.0669 +606803,128.7,79.519 +606804,128.05,77.981 +606805,128.72,82.6534 +606806,128.03,81.0927 +606807,127.39,79.541 +606808,126.79,77.998 +606809,127.32,82.6817 +606810,126.69,81.118 +606811,126.09,79.563 +606812,125.53,78.016 +606813,125.93,82.7087 +606814,125.34,81.1429 +606815,124.78,79.585 +606816,124.27,78.035 +606817,124.54,82.7346 +606818,123.99,81.1674 +606819,123.48,79.608 +606820,123.01,78.056 +606821,123.14,82.7592 +606822,122.64,81.1915 +606823,122.18,79.631 +606824,121.75,78.078 +606825,121.75,82.7826 +606826,121.29,81.2152 +606827,120.87,79.654 +606828,120.49,78.101 +606829,120.35,82.8047 +606830,119.94,81.2384 +606831,119.57,79.678 +606832,119.23,78.125 +606833,118.96,82.8257 +606834,118.59,81.2613 +606835,118.26,79.703 +606836,117.97,78.151 +606837,117.56,82.8454 +606838,117.24,81.2838 +606839,116.96,79.728 +606840,116.71,78.178 +606841,116.16,82.8639 +606842,115.89,81.3058 +606843,115.65,79.753 +606844,115.45,78.206 +606845,114.77,82.8812 +606846,114.54,81.3275 +606847,114.35,79.779 +606848,114.19,78.236 +606849,113.37,82.8972 +606850,113.19,81.3487 +606851,113.04,79.805 +606852,112.93,78.267 +606853,111.98,82.9121 +606854,111.84,81.3695 +606855,111.74,79.831 +606856,111.67,78.299 +606857,110.58,82.9257 +606858,110.49,81.39 +606859,110.44,79.858 +606860,110.41,78.332 +606861,109.19,82.9382 +606862,109.14,81.41 +606863,109.13,79.886 +606864,109.15,78.366 +606865,107.79,82.9494 +606866,107.79,81.4296 +606867,107.83,79.913 +606868,107.89,78.402 +606869,106.39,82.9595 +606870,106.44,81.4488 +606871,106.52,79.942 +606872,106.63,78.439 +606873,105,82.9684 +606874,105.09,81.4677 +606875,105.22,79.97 +606876,105.38,78.477 +606877,103.6,82.9761 +606878,103.74,81.4861 +606879,103.91,79.999 +606880,104.12,78.517 +606881,102.21,82.9826 +606882,102.39,81.5042 +606883,102.61,80.0287 +606884,102.86,78.558 +606885,100.81,82.988 +606886,101.04,81.5218 +606887,101.3,80.0585 +606888,101.6,78.599 +606889,99.417,82.9922 +606890,99.693,81.5391 +606891,99.999,80.0887 +606892,100.34,78.643 +606893,98.022,82.9953 +606894,98.343,81.556 +606895,98.694,80.1193 +606896,99.076,78.687 +606897,96.628,82.9973 +606898,96.993,81.5725 +606899,97.389,80.1504 +606900,97.816,78.732 +606901,95.234,82.9981 +606902,95.644,81.5886 +606903,96.084,80.1818 +606904,96.555,78.779 +606905,93.841,82.9978 +606906,94.294,81.6044 +606907,94.778,80.2136 +606908,95.293,78.827 +606909,92.447,82.9965 +606910,92.945,81.6198 +606911,93.473,80.2457 +606912,94.031,78.876 +606913,91.055,82.994 +606914,91.596,81.6348 +606915,92.167,80.2783 +606916,92.769,78.926 +606917,89.663,82.9905 +606918,90.246,81.6495 +606919,90.861,80.3112 +606920,91.506,78.977 +606921,88.271,82.986 +606922,88.898,81.6638 +606923,89.555,80.3445 +606924,90.243,79.03 +606925,86.88,82.9804 +606926,87.549,81.6778 +606927,88.248,80.3781 +606928,88.979,79.083 +606929,85.49,82.9737 +606930,86.2,81.6914 +606931,86.942,80.4122 +606932,87.715,79.138 +606933,84.1,82.9661 +606934,84.852,81.7047 +606935,85.635,80.4465 +606936,86.45,79.193 +606937,82.711,82.9575 +606938,83.503,81.7176 +606939,84.328,80.4812 +606940,85.184,79.25 +606941,81.322,82.9479 +606942,82.155,81.7302 +606943,83.02,80.5163 +606944,83.918,79.308 +606945,79.934,82.9373 +606946,80.807,81.7425 +606947,81.713,80.5517 +606948,82.651,79.367 +606949,78.547,82.9258 +606950,79.46,81.7545 +606951,80.405,80.5874 +606952,81.383,79.426 +606953,77.161,82.9133 +606954,78.112,81.7662 +606955,79.097,80.6234 +606956,80.114,79.487 +606957,75.775,82.9 +606958,76.765,81.7776 +606959,77.788,80.6598 +606960,78.845,79.549 +606961,74.391,82.8858 +606962,75.418,81.7886 +606963,76.479,80.6965 +606964,77.575,79.611 +606965,73.007,82.8707 +606966,74.071,81.7994 +606967,75.17,80.7335 +606968,76.304,79.675 +606969,71.624,82.8547 +606970,72.725,81.8099 +606971,73.861,80.7707 +606972,75.032,79.739 +606973,70.242,82.8379 +606974,71.379,81.8201 +606975,72.551,80.8083 +606976,73.759,79.804 +606977,68.861,82.8203 +606978,70.033,81.8301 +606979,71.241,80.8461 +606980,72.485,79.871 +606981,67.48,82.802 +606982,68.687,81.8397 +606983,69.93,80.8843 +606984,71.21,79.938 +606985,66.101,82.7828 +606986,67.342,81.8492 +606987,68.62,80.9227 +606988,69.934,80.0053 +606989,64.723,82.7629 +606990,65.997,81.8583 +606991,67.308,80.9613 +606992,68.658,80.0739 +606993,63.346,82.7423 +606994,64.653,81.8673 +606995,65.997,81.0002 +606996,67.38,80.1432 +606997,61.97,82.721 +606998,63.308,81.876 +606999,64.685,81.0394 +607000,66.101,80.2133 +607001,60.595,82.699 +607002,61.964,81.8844 +607003,63.372,81.0787 +607004,64.821,80.284 +607005,59.221,82.6764 +607006,60.621,81.8927 +607007,62.06,81.1184 +607008,63.54,80.3555 +607009,57.848,82.6531 +607010,59.277,81.9007 +607011,60.747,81.1582 +607012,62.257,80.4276 +607013,56.476,82.6292 +607014,57.934,81.9085 +607015,59.433,81.1982 +607016,60.974,80.5004 +607017,55.106,82.6048 +607018,56.592,81.9162 +607019,58.119,81.2385 +607020,59.689,80.5738 +607021,53.736,82.5797 +607022,55.249,81.9236 +607023,56.805,81.2789 +607024,58.403,80.6477 +607025,52.368,82.5542 +607026,53.908,81.9309 +607027,55.49,81.3195 +607028,57.116,80.7223 +607029,51.001,82.5281 +607030,52.566,81.938 +607031,54.174,81.3603 +607032,55.828,80.7973 +607033,49.635,82.5016 +607034,51.225,81.945 +607035,52.859,81.4013 +607036,54.538,80.8728 +607037,48.271,82.4746 +607038,49.884,81.9518 +607039,51.542,81.4425 +607040,53.247,80.9489 +607041,46.908,82.4471 +607042,48.544,81.9584 +607043,50.226,81.4837 +607044,51.955,81.0253 +607045,45.546,82.4193 +607046,47.204,81.965 +607047,48.908,81.5252 +607048,50.661,81.1022 +607049,44.185,82.3911 +607050,45.865,81.9714 +607051,47.591,81.5667 +607052,49.366,81.1795 +607053,42.826,82.3625 +607054,44.526,81.9776 +607055,46.273,81.6084 +607056,48.07,81.2571 +607057,41.468,82.3336 +607058,43.187,81.9838 +607059,44.954,81.6502 +607060,46.772,81.3351 +607061,40.111,82.3044 +607062,41.849,81.9899 +607063,43.635,81.692 +607064,45.473,81.4134 +607065,38.756,82.275 +607066,40.511,81.9959 +607067,42.315,81.734 +607068,44.172,81.4919 +607069,37.402,82.2453 +607070,39.174,82.0018 +607071,40.995,81.7761 +607072,42.87,81.5707 +607073,36.049,82.2154 +607074,37.837,82.0076 +607075,39.675,81.8182 +607076,41.567,81.6497 +607077,34.698,82.1852 +607078,36.5,82.0134 +607079,38.354,81.8604 +607080,40.262,81.7289 +607081,33.348,82.155 +607082,35.164,82.0191 +607083,37.032,81.9027 +607084,38.955,81.8082 +607085,31.999,82.1246 +607086,33.829,82.0248 +607087,35.71,81.945 +607088,37.647,81.8877 +607089,30.652,82.0941 +607090,32.493,82.0305 +607091,34.387,81.9873 +607092,36.338,81.9672 +607093,29.307,82.0635 +607094,31.159,82.0361 +607095,33.064,82.0297 +607096,35.027,82.0468 +607097,27.962,82.0328 +607098,29.824,82.0417 +607099,31.74,82.072 +607100,33.714,82.1265 +607101,26.62,82.0022 +607102,28.491,82.0474 +607103,30.416,82.1144 +607104,32.4,82.2061 +607105,25.278,81.9715 +607106,27.157,82.053 +607107,29.091,82.1568 +607108,31.085,82.2857 +607109,23.938,81.9409 +607110,25.824,82.0586 +607111,27.766,82.1991 +607112,29.768,82.3653 +607113,22.6,81.9104 +607114,24.492,82.0643 +607115,26.44,82.2415 +607116,28.449,82.4448 +607117,21.263,81.8799 +607118,23.16,82.07 +607119,25.113,82.2838 +607120,27.129,82.5241 +607121,19.927,81.8496 +607122,21.829,82.0758 +607123,23.787,82.326 +607124,25.807,82.6034 +607125,18.593,81.8194 +607126,20.498,82.0816 +607127,22.459,82.3682 +607128,24.484,82.6824 +607129,17.26,81.7894 +607130,19.167,82.0874 +607131,21.131,82.4104 +607132,23.159,82.7612 +607133,15.929,81.7596 +607134,17.837,82.0934 +607135,19.803,82.4524 +607136,21.832,82.8398 +607137,14.599,81.73 +607138,16.507,82.0994 +607139,18.473,82.4944 +607140,20.504,82.9181 +607141,13.271,81.7007 +607142,15.178,82.1055 +607143,17.144,82.5363 +607144,19.175,82.9961 +607145,11.944,81.6717 +607146,13.849,82.1117 +607147,15.814,82.5781 +607148,17.844,83.0738 +607149,10.618,81.643 +607150,12.521,82.1181 +607151,14.483,82.6197 +607152,16.511,83.1512 +607153,9.2939,81.6146 +607154,11.193,82.1245 +607155,13.152,82.6613 +607156,15.177,83.2282 +607157,7.9713,81.5866 +607158,9.8661,82.1311 +607159,11.82,82.7027 +607160,13.841,83.3047 +607161,6.65,81.559 +607162,8.5392,82.1378 +607163,10.488,82.744 +607164,12.503,83.3808 +607165,5.3302,81.5319 +607166,7.2128,82.1447 +607167,9.1547,82.7851 +607168,11.164,83.4564 +607169,4.0118,81.5052 +607170,5.8869,82.1517 +607171,7.8214,82.8261 +607172,9.8239,83.5316 +607173,2.6948,81.4789 +607174,4.5614,82.1589 +607175,6.4874,82.8669 +607176,8.4818,83.6062 +607177,1.3792,81.4532 +607178,3.2363,82.1662 +607179,5.153,82.9075 +607180,7.1382,83.6802 +607181,0.064994,81.428 +607182,1.9117,82.1738 +607183,3.818,82.9479 +607184,5.793,83.7537 +607185,358.75,81.4034 +607186,0.58758,82.1815 +607187,2.4826,82.9881 +607188,4.4464,83.8266 +607189,357.44,81.3793 +607190,359.26,82.1894 +607191,1.1466,83.0282 +607192,3.0982,83.8988 +607193,356.13,81.3559 +607194,357.94,82.1976 +607195,359.81,83.068 +607196,1.7485,83.9704 +607197,354.82,81.3331 +607198,356.62,82.206 +607199,358.47,83.1076 +607200,0.39734,84.0413 +607201,353.51,81.3109 +607202,355.3,82.2146 +607203,357.14,83.147 +607204,359.04,84.1115 +607205,352.21,81.2895 +607206,353.97,82.2234 +607207,355.8,83.1861 +607208,357.69,84.1809 +607209,350.9,81.2687 +607210,352.65,82.2324 +607211,354.46,83.225 +607212,356.33,84.2496 +607213,349.6,81.2487 +607214,351.33,82.2418 +607215,353.12,83.2636 +607216,354.98,84.3175 +607217,348.3,81.2294 +607218,350.01,82.2513 +607219,351.78,83.302 +607220,353.62,84.3846 +607221,347,81.211 +607222,348.69,82.2612 +607223,350.44,83.3401 +607224,352.26,84.4509 +607225,345.7,81.1933 +607226,347.37,82.2713 +607227,349.1,83.3779 +607228,350.9,84.5163 +607229,344.4,81.1764 +607230,346.05,82.2817 +607231,347.76,83.4154 +607232,349.54,84.5808 +607233,343.1,81.1604 +607234,344.73,82.2924 +607235,346.42,83.4526 +607236,348.17,84.6445 +607237,341.81,81.1453 +607238,343.41,82.3033 +607239,345.08,83.4896 +607240,346.81,84.7072 +607241,340.51,81.1311 +607242,342.09,82.3146 +607243,343.73,83.5262 +607244,345.44,84.769 +607245,339.22,81.1178 +607246,340.78,82.3262 +607247,342.39,83.5625 +607248,344.07,84.8298 +607249,337.92,81.1054 +607250,339.46,82.3381 +607251,341.05,83.5985 +607252,342.7,84.8896 +607253,336.63,81.0939 +607254,338.14,82.3503 +607255,339.7,83.6342 +607256,341.33,84.9485 +607257,335.34,81.0835 +607258,336.82,82.3629 +607259,338.36,83.6695 +607260,339.96,85.0063 +607261,334.05,81.074 +607262,335.51,82.3758 +607263,337.01,83.7045 +607264,338.59,85.0631 +607265,332.77,81.0656 +607266,334.19,82.389 +607267,335.67,83.7392 +607268,337.21,85.1188 +607269,331.48,81.0581 +607270,332.87,82.4026 +607271,334.32,83.7735 +607272,335.84,85.1735 +607273,330.19,81.0518 +607274,331.56,82.4165 +607275,332.98,83.8074 +607276,334.46,85.2271 +607277,328.91,81.0464 +607278,330.24,82.4308 +607279,331.63,83.841 +607280,333.08,85.2795 +607281,327.62,81.0422 +607282,328.93,82.4455 +607283,330.29,83.8742 +607284,331.71,85.3309 +607285,326.34,81.0391 +607286,327.61,82.4605 +607287,328.94,83.907 +607288,330.33,85.3811 +607289,325.06,81.037 +607290,326.3,82.4759 +607291,327.59,83.9395 +607292,328.95,85.4302 +607293,323.78,81.0361 +607294,324.99,82.4917 +607295,326.24,83.9716 +607296,327.56,85.4781 +607297,322.5,81.0364 +607298,323.67,82.5078 +607299,324.9,84.0032 +607300,326.18,85.5249 +607301,321.22,81.0378 +607302,322.36,82.5244 +607303,323.55,84.0345 +607304,324.8,85.5704 +607305,319.94,81.0404 +607306,321.04,82.5413 +607307,322.2,84.0654 +607308,323.41,85.6148 +607309,318.66,81.0441 +607310,319.73,82.5586 +607311,320.85,84.0959 +607312,322.03,85.658 +607313,317.38,81.0491 +607314,318.42,82.5764 +607315,319.5,84.126 +607316,320.64,85.6999 +607317,316.11,81.0552 +607318,317.11,82.5945 +607319,318.15,84.1557 +607320,319.25,85.7406 +607321,314.83,81.0626 +607322,315.79,82.613 +607323,316.8,84.185 +607324,317.87,85.7801 +607325,313.56,81.0712 +607326,314.48,82.632 +607327,315.45,84.2139 +607328,316.48,85.8184 +607329,312.28,81.081 +607330,313.17,82.6514 +607331,314.1,84.2423 +607332,315.09,85.8554 +607333,311.01,81.092 +607334,311.86,82.6711 +607335,312.75,84.2703 +607336,313.7,85.8911 +607337,309.73,81.1044 +607338,310.55,82.6913 +607339,311.4,84.2979 +607340,312.31,85.9256 +607341,308.46,81.1179 +607342,309.23,82.7119 +607343,310.05,84.3251 +607344,310.91,85.9588 +607345,307.19,81.1328 +607346,307.92,82.733 +607347,308.7,84.3519 +607348,309.52,85.9907 +607349,305.92,81.1489 +607350,306.61,82.7544 +607351,307.35,84.3782 +607352,308.13,86.0214 +607353,304.65,81.1663 +607354,305.3,82.7763 +607355,305.99,84.4041 +607356,306.74,86.0507 +607357,303.38,81.185 +607358,303.99,82.7986 +607359,304.64,84.4296 +607360,305.34,86.0788 +607361,302.11,81.205 +607362,302.68,82.8213 +607363,303.29,84.4546 +607364,303.95,86.1056 +607365,300.84,81.2262 +607366,301.37,82.8445 +607367,301.94,84.4793 +607368,302.55,86.1311 +607369,299.57,81.2488 +607370,300.06,82.8681 +607371,300.59,84.5034 +607372,301.16,86.1554 +607373,298.3,81.2726 +607374,298.75,82.8921 +607375,299.23,84.5272 +607376,299.76,86.1783 +607377,297.03,81.2978 +607378,297.44,82.9166 +607379,297.88,84.5505 +607380,298.37,86.2 +607381,295.76,81.3242 +607382,296.12,82.9414 +607383,296.53,84.5734 +607384,296.97,86.2203 +607385,294.49,81.352 +607386,294.81,82.9668 +607387,295.17,84.5958 +607388,295.57,86.2394 +607389,293.22,81.381 +607390,293.5,82.9925 +607391,293.82,84.6179 +607392,294.18,86.2572 +607393,291.95,81.4114 +607394,292.19,83.0187 +607395,292.47,84.6395 +607396,292.78,86.2737 +607397,290.69,81.443 +607398,290.88,83.0453 +607399,291.11,84.6606 +607400,291.38,86.2889 +607401,289.42,81.4759 +607402,289.57,83.0723 +607403,289.76,84.6813 +607404,289.99,86.3029 +607405,288.15,81.5101 +607406,288.26,83.0997 +607407,288.41,84.7016 +607408,288.59,86.3156 +607409,286.88,81.5457 +607410,286.95,83.1276 +607411,287.05,84.7215 +607412,287.19,86.327 +607413,285.61,81.5824 +607414,285.64,83.1559 +607415,285.7,84.741 +607416,285.79,86.3372 +607417,284.35,81.6205 +607418,284.33,83.1846 +607419,284.35,84.76 +607420,284.4,86.3462 +607421,283.08,81.6598 +607422,283.02,83.2137 +607423,282.99,84.7786 +607424,283,86.3538 +607425,281.81,81.7004 +607426,281.71,83.2433 +607427,281.64,84.7968 +607428,281.6,86.3603 +607429,280.54,81.7423 +607430,280.4,83.2732 +607431,280.29,84.8146 +607432,280.2,86.3656 +607433,279.28,81.7854 +607434,279.09,83.3036 +607435,278.93,84.832 +607436,278.81,86.3696 +607437,278.01,81.8297 +607438,277.78,83.3344 +607439,277.58,84.8489 +607440,277.41,86.3724 +607441,276.74,81.8753 +607442,276.47,83.3656 +607443,276.23,84.8655 +607444,276.01,86.374 +607445,275.47,81.922 +607446,275.16,83.3971 +607447,274.87,84.8816 +607448,274.62,86.3745 +607449,274.2,81.97 +607450,273.84,83.4291 +607451,273.52,84.8974 +607452,273.22,86.3738 +607453,272.93,82.0192 +607454,272.53,83.4615 +607455,272.16,84.9128 +607456,271.82,86.3719 +607457,271.66,82.0696 +607458,271.22,83.4942 +607459,270.81,84.9277 +607460,270.43,86.3689 +607461,270.39,82.1211 +607462,269.91,83.5273 +607463,269.46,84.9423 +607464,269.03,86.3648 +607465,269.12,82.1738 +607466,268.6,83.5609 +607467,268.11,84.9565 +607468,267.64,86.3595 +607469,267.85,82.2276 +607470,267.29,83.5947 +607471,266.75,84.9704 +607472,266.24,86.3531 +607473,266.58,82.2826 +607474,265.97,83.629 +607475,265.4,84.9838 +607476,264.85,86.3457 +607477,265.3,82.3387 +607478,264.66,83.6636 +607479,264.05,84.9969 +607480,263.46,86.3372 +607481,264.03,82.3958 +607482,263.35,83.6986 +607483,262.69,85.0097 +607484,262.06,86.3276 +607485,262.76,82.4541 +607486,262.04,83.7339 +607487,261.34,85.022 +607488,260.67,86.317 +607489,261.49,82.5134 +607490,260.72,83.7696 +607491,259.99,85.0341 +607492,259.28,86.3054 +607493,260.21,82.5738 +607494,259.41,83.8056 +607495,258.64,85.0458 +607496,257.89,86.2927 +607497,258.94,82.6351 +607498,258.1,83.8419 +607499,257.28,85.0571 +607500,256.5,86.2791 +607501,257.66,82.6975 +607502,256.78,83.8786 +607503,255.93,85.0682 +607504,255.11,86.2646 +607505,256.38,82.7609 +607506,255.47,83.9156 +607507,254.58,85.0789 +607508,253.72,86.2491 +607509,255.11,82.8253 +607510,254.16,83.9529 +607511,253.23,85.0892 +607512,252.33,86.2326 +607513,253.83,82.8906 +607514,252.84,83.9905 +607515,251.88,85.0993 +607516,250.94,86.2153 +607517,252.55,82.9568 +607518,251.53,84.0284 +607519,250.53,85.1091 +607520,249.56,86.197 +607521,251.27,83.0239 +607522,250.21,84.0666 +607523,249.18,85.1185 +607524,248.17,86.178 +607525,249.99,83.0919 +607526,248.89,84.1051 +607527,247.83,85.1277 +607528,246.79,86.158 +607529,248.71,83.1608 +607530,247.58,84.1439 +607531,246.48,85.1366 +607532,245.4,86.1373 +607533,247.43,83.2305 +607534,246.26,84.1829 +607535,245.13,85.1453 +607536,244.02,86.1157 +607537,246.14,83.301 +607538,244.95,84.2222 +607539,243.78,85.1536 +607540,242.64,86.0934 +607541,244.86,83.3723 +607542,243.63,84.2618 +607543,242.43,85.1617 +607544,241.25,86.0703 +607545,243.57,83.4444 +607546,242.31,84.3016 +607547,241.08,85.1696 +607548,239.87,86.0465 +607549,242.29,83.5172 +607550,240.99,84.3416 +607551,239.73,85.1772 +607552,238.49,86.022 +607553,241,83.5907 +607554,239.68,84.3819 +607555,238.38,85.1845 +607556,237.11,85.9969 +607557,239.71,83.6649 +607558,238.36,84.4224 +607559,237.03,85.1917 +607560,235.74,85.971 +607561,238.42,83.7398 +607562,237.04,84.463 +607563,235.69,85.1986 +607564,234.36,85.9446 +607565,237.13,83.8153 +607566,235.72,84.5039 +607567,234.34,85.2053 +607568,232.98,85.9175 +607569,235.84,83.8914 +607570,234.4,84.545 +607571,232.99,85.2118 +607572,231.61,85.8899 +607573,234.55,83.968 +607574,233.08,84.5863 +607575,231.64,85.2182 +607576,230.24,85.8617 +607577,233.26,84.0453 +607578,231.76,84.6278 +607579,230.3,85.2243 +607580,228.86,85.833 +607581,231.96,84.123 +607582,230.44,84.6694 +607583,228.95,85.2303 +607584,227.49,85.8038 +607585,230.66,84.2013 +607586,229.12,84.7112 +607587,227.61,85.2361 +607588,226.12,85.7741 +607589,229.37,84.28 +607590,227.8,84.7531 +607591,226.26,85.2417 +607592,224.76,85.7439 +607593,228.07,84.3591 +607594,226.47,84.7951 +607595,224.91,85.2472 +607596,223.39,85.7134 +607597,226.77,84.4387 +607598,225.15,84.8373 +607599,223.57,85.2526 +607600,222.02,85.6824 +607601,225.47,84.5186 +607602,223.83,84.8796 +607603,222.23,85.2578 +607604,220.66,85.6511 +607605,224.17,84.5989 +607606,222.51,84.922 +607607,220.88,85.2629 +607608,219.29,85.6195 +607609,222.86,84.6795 +607610,221.18,84.9645 +607611,219.54,85.2679 +607612,217.93,85.5875 +607613,221.56,84.7604 +607614,219.86,85.0071 +607615,218.2,85.2728 +607616,216.57,85.5553 +607617,220.25,84.8415 +607618,218.53,85.0498 +607619,216.85,85.2776 +607620,215.21,85.5228 +607621,218.94,84.9229 +607622,217.21,85.0926 +607623,215.51,85.2823 +607624,213.85,85.4901 +607625,217.63,85.0045 +607626,215.88,85.1354 +607627,214.17,85.287 +607628,212.49,85.4572 +607629,216.32,85.0862 +607630,214.56,85.1782 +607631,212.83,85.2916 +607632,211.14,85.4242 +607633,215.01,85.168 +607634,213.23,85.2211 +607635,211.49,85.2962 +607636,209.78,85.391 +607637,213.7,85.25 +607638,211.9,85.264 +607639,210.14,85.3007 +607640,208.43,85.3576 +607641,212.38,85.332 +607642,210.57,85.3069 +607643,208.8,85.3051 +607644,207.07,85.3242 +607645,211.07,85.4141 +607646,209.25,85.3499 +607647,207.46,85.3096 +607648,205.72,85.2908 +607649,209.75,85.4961 +607650,207.92,85.3928 +607651,206.12,85.314 +607652,204.37,85.2573 +607653,208.43,85.5782 +607654,206.59,85.4357 +607655,204.79,85.3185 +607656,203.03,85.2239 +607657,207.11,85.6602 +607658,205.26,85.4786 +607659,203.45,85.3229 +607660,201.68,85.1905 +607661,205.79,85.7421 +607662,203.93,85.5215 +607663,202.11,85.3274 +607664,200.33,85.1571 +607665,204.47,85.8238 +607666,202.6,85.5643 +607667,200.77,85.3319 +607668,198.99,85.1238 +607669,203.14,85.9055 +607670,201.26,85.6071 +607671,199.43,85.3364 +607672,197.65,85.0907 +607673,201.82,85.9869 +607674,199.93,85.6498 +607675,198.1,85.341 +607676,196.31,85.0577 +607677,200.49,86.0681 +607678,198.6,85.6924 +607679,196.76,85.3456 +607680,194.97,85.0249 +607681,199.16,86.1491 +607682,197.27,85.7349 +607683,195.42,85.3503 +607684,193.63,84.9923 +607685,197.83,86.2298 +607686,195.93,85.7774 +607687,194.09,85.3551 +607688,192.29,84.96 +607689,196.5,86.3102 +607690,194.6,85.8197 +607691,192.75,85.3599 +607692,190.95,84.9279 +607693,195.16,86.3903 +607694,193.27,85.8619 +607695,191.42,85.3649 +607696,189.62,84.8961 +607697,193.83,86.47 +607698,191.93,85.904 +607699,190.08,85.3699 +607700,188.29,84.8646 +607701,192.49,86.5493 +607702,190.6,85.946 +607703,188.75,85.3751 +607704,186.95,84.8335 +607705,191.15,86.6282 +607706,189.26,85.9878 +607707,187.42,85.3804 +607708,185.62,84.8028 +607709,189.82,86.7066 +607710,187.92,86.0294 +607711,186.08,85.3859 +607712,184.29,84.7724 +607713,188.47,86.7845 +607714,186.59,86.0709 +607715,184.75,85.3914 +607716,182.97,84.7425 +607717,187.13,86.8619 +607718,185.25,86.1123 +607719,183.42,85.3972 +607720,181.64,84.7131 +607721,185.79,86.9387 +607722,183.91,86.1534 +607723,182.09,85.4031 +607724,180.31,84.6842 +607725,184.44,87.015 +607726,182.57,86.1943 +607727,180.76,85.4091 +607728,178.99,84.6558 +607729,183.1,87.0907 +607730,181.23,86.2351 +607731,179.43,85.4154 +607732,177.67,84.6279 +607733,181.75,87.1657 +607734,179.89,86.2756 +607735,178.1,85.4218 +607736,176.35,84.6006 +607737,180.4,87.2401 +607738,178.55,86.3159 +607739,176.77,85.4284 +607740,175.03,84.5739 +607741,179.05,87.3137 +607742,177.21,86.3559 +607743,175.44,85.4353 +607744,173.71,84.5478 +607745,177.7,87.3867 +607746,175.87,86.3958 +607747,174.11,85.4423 +607748,172.39,84.5224 +607749,176.34,87.4589 +607750,174.53,86.4353 +607751,172.78,85.4496 +607752,171.08,84.4976 +607753,174.99,87.5304 +607754,173.19,86.4747 +607755,171.45,85.4571 +607756,169.76,84.4736 +607757,173.63,87.601 +607758,171.85,86.5137 +607759,170.12,85.4648 +607760,168.45,84.4503 +607761,172.27,87.6708 +607762,170.5,86.5525 +607763,168.79,85.4728 +607764,167.14,84.4277 +607765,170.91,87.7398 +607766,169.16,86.591 +607767,167.47,85.4811 +607768,165.83,84.4059 +607769,169.55,87.8079 +607770,167.82,86.6292 +607771,166.14,85.4896 +607772,164.52,84.3849 +607773,168.19,87.8751 +607774,166.47,86.6671 +607775,164.81,85.4984 +607776,163.21,84.3647 +607777,166.83,87.9413 +607778,165.13,86.7047 +607779,163.49,85.5074 +607780,161.9,84.3454 +607781,165.46,88.0067 +607782,163.78,86.7419 +607783,162.16,85.5168 +607784,160.59,84.3269 +607785,164.09,88.071 +607786,162.43,86.7789 +607787,160.84,85.5265 +607788,159.29,84.3094 +607789,162.73,88.1344 +607790,161.09,86.8155 +607791,159.51,85.5364 +607792,157.98,84.2927 +607793,161.36,88.1967 +607794,159.74,86.8518 +607795,158.19,85.5467 +607796,156.68,84.277 +607797,159.99,88.258 +607798,158.39,86.8877 +607799,156.86,85.5573 +607800,155.38,84.2622 +607801,158.62,88.3183 +607802,157.05,86.9233 +607803,155.54,85.5682 +607804,154.08,84.2484 +607805,157.25,88.3775 +607806,155.7,86.9586 +607807,154.21,85.5794 +607808,152.78,84.2356 +607809,155.87,88.4356 +607810,154.35,86.9934 +607811,152.89,85.591 +607812,151.48,84.2239 +607813,154.5,88.4925 +607814,153,87.0279 +607815,151.57,85.6029 +607816,150.18,84.2131 +607817,153.12,88.5484 +607818,151.65,87.062 +607819,150.24,85.6151 +607820,148.89,84.2034 +607821,151.74,88.6031 +607822,150.3,87.0957 +607823,148.92,85.6277 +607824,147.59,84.1948 +607825,150.37,88.6566 +607826,148.95,87.1291 +607827,147.6,85.6407 +607828,146.3,84.1873 +607829,148.99,88.7089 +607830,147.6,87.162 +607831,146.28,85.6541 +607832,145,84.1808 +607833,147.61,88.7601 +607834,146.25,87.1946 +607835,144.96,85.6678 +607836,143.71,84.1755 +607837,146.23,88.81 +607838,144.9,87.2267 +607839,143.64,85.6819 +607840,142.42,84.1713 +607841,144.84,88.8587 +607842,143.55,87.2584 +607843,142.31,85.6963 +607844,141.13,84.1683 +607845,143.46,88.9062 +607846,142.2,87.2897 +607847,140.99,85.7112 +607848,139.84,84.1665 +607849,142.08,88.9523 +607850,140.85,87.3206 +607851,139.67,85.7264 +607852,138.55,84.1658 +607853,140.69,88.9973 +607854,139.49,87.3511 +607855,138.35,85.7421 +607856,137.26,84.1663 +607857,139.3,89.04092 +607858,138.14,87.3811 +607859,137.03,85.7581 +607860,135.97,84.1681 +607861,137.92,89.08327 +607862,136.79,87.4107 +607863,135.71,85.7745 +607864,134.69,84.171 +607865,136.53,89.12432 +607866,135.43,87.4399 +607867,134.39,85.7914 +607868,133.4,84.1752 +607869,135.14,89.16406 +607870,134.08,87.4686 +607871,133.07,85.8086 +607872,132.12,84.1806 +607873,133.75,89.20248 +607874,132.73,87.4969 +607875,131.76,85.8263 +607876,130.83,84.1873 +607877,132.36,89.23956 +607878,131.37,87.5247 +607879,130.44,85.8444 +607880,129.55,84.1953 +607881,130.97,89.27531 +607882,130.02,87.5521 +607883,129.12,85.8629 +607884,128.26,84.2045 +607885,129.58,89.30972 +607886,128.66,87.579 +607887,127.8,85.8818 +607888,126.98,84.215 +607889,128.19,89.34277 +607890,127.31,87.6055 +607891,126.48,85.9012 +607892,125.7,84.2268 +607893,126.79,89.37447 +607894,125.95,87.6315 +607895,125.16,85.9209 +607896,124.42,84.2399 +607897,125.4,89.40481 +607898,124.6,87.657 +607899,123.84,85.9411 +607900,123.13,84.2543 +607901,124,89.43379 +607902,123.24,87.6821 +607903,122.53,85.9618 +607904,121.85,84.27 +607905,122.61,89.4614 +607906,121.89,87.7068 +607907,121.21,85.9828 +607908,120.57,84.287 +607909,121.21,89.48763 +607910,120.53,87.7309 +607911,119.89,86.0043 +607912,119.29,84.3053 +607913,119.82,89.5125 +607914,119.17,87.7546 +607915,118.57,86.0262 +607916,118.01,84.325 +607917,118.42,89.53599 +607918,117.82,87.7779 +607919,117.26,86.0486 +607920,116.73,84.346 +607921,117.03,89.55811 +607922,116.46,87.8006 +607923,115.94,86.0714 +607924,115.46,84.3683 +607925,115.63,89.57886 +607926,115.1,87.8229 +607927,114.62,86.0946 +607928,114.18,84.3919 +607929,114.23,89.59823 +607930,113.75,87.8448 +607931,113.3,86.1183 +607932,112.9,84.4169 +607933,112.83,89.61623 +607934,112.39,87.8662 +607935,111.99,86.1424 +607936,111.62,84.4432 +607937,111.44,89.63287 +607938,111.03,87.8871 +607939,110.67,86.1669 +607940,110.34,84.4709 +607941,110.04,89.64814 +607942,109.67,87.9075 +607943,109.35,86.1919 +607944,109.06,84.4998 +607945,108.64,89.66205 +607946,108.32,87.9275 +607947,108.03,86.2173 +607948,107.79,84.5301 +607949,107.24,89.6746 +607950,106.96,87.947 +607951,106.72,86.2432 +607952,106.51,84.5618 +607953,105.84,89.68581 +607954,105.6,87.9661 +607955,105.4,86.2694 +607956,105.23,84.5947 +607957,104.44,89.69567 +607958,104.24,87.9847 +607959,104.08,86.2961 +607960,103.95,84.629 +607961,103.04,89.70419 +607962,102.89,88.0028 +607963,102.77,86.3232 +607964,102.68,84.6646 +607965,101.64,89.71138 +607966,101.53,88.0205 +607967,101.45,86.3508 +607968,101.4,84.7015 +607969,100.24,89.71724 +607970,100.17,88.0377 +607971,100.13,86.3788 +607972,100.12,84.7397 +607973,98.845,89.72179 +607974,98.813,88.0545 +607975,98.813,86.4072 +607976,98.845,84.7792 +607977,97.446,89.72504 +607978,97.455,88.0709 +607979,97.496,86.436 +607980,97.568,84.82 +607981,96.047,89.727 +607982,96.097,88.0868 +607983,96.179,86.4652 +607984,96.29,84.8621 +607985,94.648,89.72767 +607986,94.739,88.1022 +607987,94.861,86.4948 +607988,95.012,84.9055 +607989,93.249,89.72706 +607990,93.381,88.1172 +607991,93.543,86.5249 +607992,93.734,84.9501 +607993,91.851,89.7252 +607994,92.023,88.1318 +607995,92.226,86.5553 +607996,92.456,84.996 +607997,90.452,89.72209 +607998,90.665,88.1459 +607999,90.908,86.5862 +608000,91.177,85.0431 +608001,89.054,89.71774 +608002,89.308,88.1596 +608003,89.59,86.6174 +608004,89.899,85.0915 +608005,87.656,89.71217 +608006,87.95,88.1729 +608007,88.272,86.6491 +608008,88.62,85.1411 +608009,86.258,89.7054 +608010,86.592,88.1858 +608011,86.953,86.6811 +608012,87.34,85.1919 +608013,84.861,89.69743 +608014,85.235,88.1983 +608015,85.635,86.7135 +608016,86.061,85.2439 +608017,83.464,89.68829 +608018,83.877,88.2103 +608019,84.316,86.7463 +608020,84.78,85.2971 +608021,82.067,89.67799 +608022,82.52,88.222 +608023,82.998,86.7795 +608024,83.5,85.3514 +608025,80.671,89.66654 +608026,81.162,88.2332 +608027,81.679,86.813 +608028,82.219,85.4069 +608029,79.275,89.65397 +608030,79.805,88.2441 +608031,80.359,86.8469 +608032,80.937,85.4636 +608033,77.88,89.64029 +608034,78.448,88.2545 +608035,79.04,86.8812 +608036,79.655,85.5213 +608037,76.485,89.62552 +608038,77.091,88.2646 +608039,77.721,86.9158 +608040,78.373,85.5802 +608041,75.09,89.60968 +608042,75.734,88.2743 +608043,76.401,86.9508 +608044,77.09,85.6401 +608045,73.697,89.59279 +608046,74.378,88.2837 +608047,75.081,86.9861 +608048,75.806,85.7011 +608049,72.304,89.57487 +608050,73.021,88.2926 +608051,73.761,87.0217 +608052,74.522,85.7632 +608053,70.911,89.55594 +608054,71.665,88.3013 +608055,72.44,87.0576 +608056,73.237,85.8263 +608057,69.519,89.53602 +608058,70.309,88.3095 +608059,71.119,87.0939 +608060,71.951,85.8904 +608061,68.128,89.51513 +608062,68.953,88.3175 +608063,69.798,87.1305 +608064,70.665,85.9555 +608065,66.738,89.4933 +608066,67.597,88.3251 +608067,68.477,87.1674 +608068,69.378,86.0215 +608069,65.348,89.47054 +608070,66.241,88.3324 +608071,67.155,87.2046 +608072,68.09,86.0885 +608073,63.959,89.44688 +608074,64.886,88.3393 +608075,65.834,87.242 +608076,66.801,86.1565 +608077,62.571,89.42234 +608078,63.531,88.3459 +608079,64.511,87.2798 +608080,65.512,86.2253 +608081,61.183,89.39695 +608082,62.176,88.3523 +608083,63.189,87.3178 +608084,64.222,86.295 +608085,59.797,89.37072 +608086,60.821,88.3583 +608087,61.866,87.3561 +608088,62.931,86.3656 +608089,58.411,89.3437 +608090,59.467,88.3641 +608091,60.543,87.3946 +608092,61.639,86.4369 +608093,57.026,89.31589 +608094,58.113,88.3695 +608095,59.22,87.4334 +608096,60.346,86.5091 +608097,55.642,89.28732 +608098,56.759,88.3747 +608099,57.896,87.4725 +608100,59.052,86.5821 +608101,54.259,89.25802 +608102,55.406,88.3797 +608103,56.572,87.5117 +608104,57.757,86.6558 +608105,52.877,89.22802 +608106,54.052,88.3843 +608107,55.247,87.5512 +608108,56.462,86.7303 +608109,51.496,89.19734 +608110,52.699,88.3888 +608111,53.922,87.5909 +608112,55.165,86.8054 +608113,50.116,89.16601 +608114,51.346,88.393 +608115,52.597,87.6308 +608116,53.867,86.8812 +608117,48.737,89.13406 +608118,49.994,88.3969 +608119,51.271,87.671 +608120,52.569,86.9577 +608121,47.359,89.1015 +608122,48.642,88.4007 +608123,49.945,87.7112 +608124,51.269,87.0348 +608125,45.982,89.06838 +608126,47.29,88.4042 +608127,48.619,87.7517 +608128,49.968,87.1124 +608129,44.606,89.03471 +608130,45.939,88.4075 +608131,47.292,87.7923 +608132,48.666,87.1907 +608133,43.231,89.00053 +608134,44.587,88.4107 +608135,45.965,87.8331 +608136,47.364,87.2694 +608137,41.857,88.9659 +608138,43.237,88.4136 +608139,44.638,87.8741 +608140,46.059,87.3487 +608141,40.485,88.9307 +608142,41.886,88.4164 +608143,43.31,87.9151 +608144,44.754,87.4284 +608145,39.113,88.8952 +608146,40.536,88.4191 +608147,41.981,87.9563 +608148,43.448,87.5086 +608149,37.743,88.8592 +608150,39.186,88.4215 +608151,40.652,87.9977 +608152,42.14,87.5892 +608153,36.373,88.8229 +608154,37.837,88.4239 +608155,39.323,88.0391 +608156,40.832,87.6701 +608157,35.005,88.7862 +608158,36.488,88.426 +608159,37.993,88.0806 +608160,39.522,87.7515 +608161,33.639,88.7492 +608162,35.139,88.4281 +608163,36.663,88.1222 +608164,38.211,87.8331 +608165,32.273,88.712 +608166,33.791,88.4301 +608167,35.332,88.1639 +608168,36.898,87.915 +608169,30.908,88.6744 +608170,32.443,88.4319 +608171,34.001,88.2056 +608172,35.585,87.9972 +608173,29.545,88.6367 +608174,31.095,88.4337 +608175,32.67,88.2474 +608176,34.27,88.0796 +608177,28.183,88.5987 +608178,29.748,88.4354 +608179,31.338,88.2893 +608180,32.953,88.1622 +608181,26.822,88.5606 +608182,28.401,88.437 +608183,30.006,88.3312 +608184,31.636,88.245 +608185,25.463,88.5224 +608186,27.054,88.4385 +608187,28.673,88.3731 +608188,30.317,88.3278 +608189,24.104,88.484 +608190,25.708,88.44 +608191,27.339,88.415 +608192,28.997,88.4108 +608193,22.747,88.4456 +608194,24.363,88.4414 +608195,26.005,88.4569 +608196,27.676,88.4939 +608197,21.391,88.4071 +608198,23.017,88.4428 +608199,24.671,88.4988 +608200,26.353,88.577 +608201,20.037,88.3686 +608202,21.673,88.4442 +608203,23.336,88.5407 +608204,25.029,88.66 +608205,18.684,88.3302 +608206,20.328,88.4456 +608207,22.001,88.5826 +608208,23.704,88.7431 +608209,17.332,88.2917 +608210,18.984,88.447 +608211,20.665,88.6244 +608212,22.377,88.826 +608213,15.981,88.2534 +608214,17.64,88.4484 +608215,19.329,88.6662 +608216,21.049,88.9089 +608217,14.632,88.2151 +608218,16.297,88.4498 +608219,17.992,88.7079 +608220,19.72,88.9917 +608221,13.284,88.177 +608222,14.954,88.4512 +608223,16.655,88.7495 +608224,18.389,89.07424 +608225,11.937,88.1391 +608226,13.612,88.4526 +608227,15.318,88.7911 +608228,17.057,89.15661 +608229,10.591,88.1013 +608230,12.269,88.4542 +608231,13.979,88.8325 +608232,15.723,89.23876 +608233,9.2473,88.0638 +608234,10.928,88.4557 +608235,12.641,88.8739 +608236,14.388,89.32064 +608237,7.9045,88.0265 +608238,9.5865,88.4574 +608239,11.302,88.9151 +608240,13.052,89.40222 +608241,6.5629,87.9895 +608242,8.2457,88.4591 +608243,9.962,88.9562 +608244,11.714,89.48348 +608245,5.2226,87.9529 +608246,6.9052,88.4609 +608247,8.6219,88.9972 +608248,10.375,89.56437 +608249,3.8837,87.9165 +608250,5.5652,88.4628 +608251,7.2813,89.03803 +608252,9.0349,89.64487 +608253,2.546,87.8806 +608254,4.2255,88.4648 +608255,5.9402,89.0787 +608256,7.6931,89.72494 +608257,1.2096,87.845 +608258,2.8863,88.467 +608259,4.5986,89.11919 +608260,6.3499,89.80456 +608261,359.87,87.8099 +608262,1.5474,88.4692 +608263,3.2565,89.15951 +608264,5.0053,89.88369 +608265,358.54,87.7752 +608266,0.20899,88.4716 +608267,1.9139,89.19964 +608268,3.6593,89.962292 +608269,357.21,87.741 +608270,358.87,88.4742 +608271,0.57089,89.23958 +608272,2.3119,90.040346 +608273,355.88,87.7073 +608274,357.53,88.4769 +608275,359.23,89.2793 +608276,0.96317,90.11782 +608277,354.55,87.6742 +608278,356.2,88.4798 +608279,357.88,89.31881 +608280,359.61,90.19467 +608281,353.22,87.6416 +608282,354.86,88.4828 +608283,356.54,89.35808 +608284,358.26,90.27089 +608285,351.89,87.6097 +608286,353.52,88.4861 +608287,355.19,89.39712 +608288,356.91,90.34643 +608289,350.56,87.5783 +608290,352.19,88.4895 +608291,353.85,89.43591 +608292,355.55,90.42126 +608293,349.24,87.5476 +608294,350.85,88.4931 +608295,352.5,89.47444 +608296,354.2,90.49536 +608297,347.92,87.5176 +608298,349.52,88.497 +608299,351.16,89.5127 +608300,352.84,90.5687 +608301,346.59,87.4883 +608302,348.18,88.5011 +608303,349.81,89.55069 +608304,351.48,90.64125 +608305,345.27,87.4597 +608306,346.85,88.5054 +608307,348.46,89.58839 +608308,350.12,90.71298 +608309,343.95,87.4319 +608310,345.51,88.5099 +608311,347.11,89.6258 +608312,348.76,90.78386 +608313,342.63,87.4048 +608314,344.18,88.5147 +608315,345.77,89.6629 +608316,347.4,90.85387 +608317,341.31,87.3786 +608318,342.84,88.5197 +608319,344.42,89.69969 +608320,346.04,90.92297 +608321,340,87.3531 +608322,341.51,88.525 +608323,343.07,89.73616 +608324,344.67,90.99114 +608325,338.68,87.3286 +608326,340.18,88.5306 +608327,341.72,89.7723 +608328,343.31,91.0584 +608329,337.37,87.3049 +608330,338.85,88.5365 +608331,340.37,89.8081 +608332,341.94,91.1246 +608333,336.05,87.2821 +608334,337.51,88.5426 +608335,339.02,89.84356 +608336,340.57,91.1898 +608337,334.74,87.2602 +608338,336.18,88.549 +608339,337.67,89.87866 +608340,339.2,91.254 +608341,333.43,87.2392 +608342,334.85,88.5558 +608343,336.32,89.913402 +608344,337.83,91.3172 +608345,332.12,87.2193 +608346,333.52,88.5628 +608347,334.96,89.947773 +608348,336.46,91.3793 +608349,330.81,87.2003 +608350,332.19,88.5702 +608351,333.61,89.981766 +608352,335.09,91.4402 +608353,329.5,87.1823 +608354,330.86,88.5779 +608355,332.26,90.015374 +608356,333.71,91.5001 +608357,328.2,87.1654 +608358,329.53,88.5859 +608359,330.91,90.048591 +608360,332.34,91.5588 +608361,326.89,87.1494 +608362,328.2,88.5943 +608363,329.55,90.08141 +608364,330.96,91.6163 +608365,325.58,87.1346 +608366,326.87,88.603 +608367,328.2,90.11382 +608368,329.58,91.6727 +608369,324.28,87.1208 +608370,325.54,88.612 +608371,326.85,90.14582 +608372,328.2,91.7279 +608373,322.98,87.1082 +608374,324.21,88.6214 +608375,325.49,90.17741 +608376,326.82,91.7818 +608377,321.67,87.0967 +608378,322.88,88.6312 +608379,324.14,90.20857 +608380,325.44,91.8345 +608381,320.37,87.0863 +608382,321.55,88.6413 +608383,322.78,90.2393 +608384,324.06,91.8859 +608385,319.07,87.077 +608386,320.23,88.6518 +608387,321.43,90.26959 +608388,322.68,91.936 +608389,317.77,87.0689 +608390,318.9,88.6627 +608391,320.07,90.29944 +608392,321.29,91.9849 +608393,316.47,87.062 +608394,317.57,88.674 +608395,318.71,90.32884 +608396,319.91,92.0324 +608397,315.17,87.0564 +608398,316.24,88.6856 +608399,317.36,90.3578 +608400,318.52,92.0786 +608401,313.88,87.0519 +608402,314.92,88.6976 +608403,316,90.38629 +608404,317.13,92.1235 +608405,312.58,87.0486 +608406,313.59,88.7101 +608407,314.64,90.41433 +608408,315.75,92.167 +608409,311.28,87.0466 +608410,312.26,88.7229 +608411,313.29,90.4419 +608412,314.36,92.2092 +608413,309.99,87.0459 +608414,310.94,88.7362 +608415,311.93,90.46899 +608416,312.97,92.2499 +608417,308.69,87.0464 +608418,309.61,88.7498 +608419,310.57,90.49562 +608420,311.58,92.2893 +608421,307.4,87.0482 +608422,308.28,88.7639 +608423,309.21,90.52177 +608424,310.19,92.3273 +608425,306.11,87.0512 +608426,306.96,88.7784 +608427,307.85,90.54743 +608428,308.8,92.3639 +608429,304.81,87.0556 +608430,305.63,88.7933 +608431,306.49,90.57261 +608432,307.4,92.399 +608433,303.52,87.0613 +608434,304.31,88.8086 +608435,305.13,90.59731 +608436,306.01,92.4328 +608437,302.23,87.0683 +608438,302.98,88.8243 +608439,303.77,90.62151 +608440,304.62,92.465 +608441,300.94,87.0766 +608442,301.66,88.8405 +608443,302.42,90.64522 +608444,303.22,92.4959 +608445,299.65,87.0862 +608446,300.33,88.8571 +608447,301.06,90.66844 +608448,301.83,92.5253 +608449,298.36,87.0972 +608450,299.01,88.8741 +608451,299.7,90.69116 +608452,300.43,92.5532 +608453,297.07,87.1095 +608454,297.68,88.8916 +608455,298.34,90.71338 +608456,299.03,92.5797 +608457,295.78,87.1232 +608458,296.36,88.9095 +608459,296.97,90.7351 +608460,297.64,92.6047 +608461,294.49,87.1382 +608462,295.03,88.9278 +608463,295.61,90.75632 +608464,296.24,92.6283 +608465,293.2,87.1546 +608466,293.71,88.9466 +608467,294.25,90.77703 +608468,294.84,92.6504 +608469,291.91,87.1723 +608470,292.38,88.9658 +608471,292.89,90.79725 +608472,293.44,92.671 +608473,290.62,87.1914 +608474,291.06,88.9854 +608475,291.53,90.81695 +608476,292.05,92.6902 +608477,289.33,87.2119 +608478,289.73,89.00551 +608479,290.17,90.83616 +608480,290.65,92.7079 +608481,288.05,87.2337 +608482,288.41,89.02603 +608483,288.81,90.85485 +608484,289.25,92.7241 +608485,286.76,87.2569 +608486,287.09,89.04698 +608487,287.45,90.87305 +608488,287.85,92.7388 +608489,285.47,87.2814 +608490,285.76,89.06838 +608491,286.09,90.89074 +608492,286.45,92.7521 +608493,284.18,87.3073 +608494,284.44,89.0902 +608495,284.72,90.90793 +608496,285.05,92.764 +608497,282.9,87.3346 +608498,283.11,89.11247 +608499,283.36,90.92461 +608500,283.65,92.7744 +608501,281.61,87.3633 +608502,281.79,89.13517 +608503,282,90.94079 +608504,282.25,92.7833 +608505,280.32,87.3933 +608506,280.46,89.1583 +608507,280.64,90.95648 +608508,280.85,92.7908 +608509,279.04,87.4246 +608510,279.14,89.18187 +608511,279.28,90.97166 +608512,279.45,92.7968 +608513,277.75,87.4573 +608514,277.82,89.20586 +608515,277.91,90.98635 +608516,278.05,92.8014 +608517,276.46,87.4913 +608518,276.49,89.23028 +608519,276.55,91.0005 +608520,276.64,92.8046 +608521,275.17,87.5267 +608522,275.17,89.25513 +608523,275.19,91.0142 +608524,275.24,92.8064 +608525,273.89,87.5634 +608526,273.84,89.2804 +608527,273.83,91.0275 +608528,273.84,92.8067 +608529,272.6,87.6014 +608530,272.52,89.30609 +608531,272.46,91.0402 +608532,272.44,92.8057 +608533,271.31,87.6408 +608534,271.19,89.3322 +608535,271.1,91.0524 +608536,271.04,92.8033 +608537,270.03,87.6814 +608538,269.87,89.35873 +608539,269.74,91.0642 +608540,269.64,92.7995 +608541,268.74,87.7234 +608542,268.54,89.38566 +608543,268.38,91.0755 +608544,268.24,92.7943 +608545,267.45,87.7666 +608546,267.22,89.413 +608547,267.02,91.0863 +608548,266.84,92.7878 +608549,266.16,87.8111 +608550,265.89,89.44074 +608551,265.65,91.0966 +608552,265.44,92.78 +608553,264.87,87.8569 +608554,264.57,89.46888 +608555,264.29,91.1065 +608556,264.04,92.7708 +608557,263.58,87.9039 +608558,263.24,89.49742 +608559,262.93,91.116 +608560,262.64,92.7604 +608561,262.29,87.9522 +608562,261.92,89.52635 +608563,261.57,91.1249 +608564,261.24,92.7486 +608565,261.01,88.0017 +608566,260.59,89.55566 +608567,260.2,91.1334 +608568,259.84,92.7356 +608569,259.72,88.0524 +608570,259.27,89.58535 +608571,258.84,91.1415 +608572,258.44,92.7213 +608573,258.42,88.1043 +608574,257.94,89.61541 +608575,257.48,91.1491 +608576,257.04,92.7058 +608577,257.13,88.1574 +608578,256.62,89.64585 +608579,256.12,91.1563 +608580,255.64,92.689 +608581,255.84,88.2116 +608582,255.29,89.67665 +608583,254.76,91.1631 +608584,254.25,92.6711 +608585,254.55,88.267 +608586,253.96,89.7078 +608587,253.4,91.1695 +608588,252.85,92.6519 +608589,253.26,88.3236 +608590,252.64,89.73931 +608591,252.04,91.1754 +608592,251.45,92.6316 +608593,251.97,88.3812 +608594,251.31,89.77116 +608595,250.67,91.1809 +608596,250.06,92.6102 +608597,250.67,88.44 +608598,249.98,89.80335 +608599,249.31,91.186 +608600,248.66,92.5876 +608601,249.38,88.4998 +608602,248.66,89.83588 +608603,247.95,91.1907 +608604,247.27,92.5639 +608605,248.08,88.5607 +608606,247.33,89.86873 +608607,246.59,91.1951 +608608,245.87,92.5392 +608609,246.79,88.6226 +608610,246,89.901892 +608611,245.23,91.199 +608612,244.48,92.5134 +608613,245.49,88.6855 +608614,244.67,89.935368 +608615,243.87,91.2026 +608616,243.09,92.4865 +608617,244.2,88.7494 +608618,243.34,89.969148 +608619,242.51,91.2058 +608620,241.69,92.4587 +608621,242.9,88.8144 +608622,242.02,90.0032238 +608623,241.15,91.2086 +608624,240.3,92.4298 +608625,241.6,88.8802 +608626,240.69,90.037587 +608627,239.79,91.2111 +608628,238.91,92.4 +608629,240.3,88.947 +608630,239.36,90.07223 +608631,238.43,91.2133 +608632,237.52,92.3692 +608633,239,89.01468 +608634,238.03,90.10714 +608635,237.07,91.2151 +608636,236.13,92.3376 +608637,237.7,89.08325 +608638,236.7,90.14232 +608639,235.71,91.2166 +608640,234.74,92.305 +608641,236.4,89.15267 +608642,235.37,90.17775 +608643,234.35,91.2177 +608644,233.35,92.2716 +608645,235.1,89.22292 +608646,234.04,90.21343 +608647,233,91.2186 +608648,231.97,92.2373 +608649,233.79,89.29398 +608650,232.71,90.24935 +608651,231.64,91.2191 +608652,230.58,92.2023 +608653,232.49,89.36581 +608654,231.38,90.28549 +608655,230.28,91.2194 +608656,229.19,92.1664 +608657,231.18,89.4384 +608658,230.05,90.32186 +608659,228.92,91.2194 +608660,227.81,92.1298 +608661,229.88,89.51171 +608662,228.71,90.35843 +608663,227.56,91.2191 +608664,226.43,92.0925 +608665,228.57,89.58572 +608666,227.38,90.3952 +608667,226.21,91.2185 +608668,225.04,92.0544 +608669,227.26,89.6604 +608670,226.05,90.43217 +608671,224.85,91.2177 +608672,223.66,92.0157 +608673,225.95,89.73572 +608674,224.72,90.46931 +608675,223.49,91.2166 +608676,222.28,91.9764 +608677,224.64,89.81165 +608678,223.38,90.50663 +608679,222.14,91.2153 +608680,220.9,91.9364 +608681,223.33,89.88817 +608682,222.05,90.54411 +608683,220.78,91.2138 +608684,219.52,91.8959 +608685,222.02,89.965237 +608686,220.72,90.58174 +608687,219.42,91.212 +608688,218.15,91.8548 +608689,220.71,90.04283 +608690,219.38,90.61952 +608691,218.07,91.21 +608692,216.77,91.8132 +608693,219.39,90.12092 +608694,218.05,90.65742 +608695,216.71,91.2079 +608696,215.4,91.7711 +608697,218.08,90.19947 +608698,216.71,90.69545 +608699,215.36,91.2055 +608700,214.02,91.7285 +608701,216.76,90.27845 +608702,215.38,90.73358 +608703,214.01,91.203 +608704,212.65,91.6855 +608705,215.44,90.35783 +608706,214.04,90.77182 +608707,212.65,91.2003 +608708,211.28,91.6421 +608709,214.13,90.43759 +608710,212.7,90.81014 +608711,211.3,91.1974 +608712,209.9,91.5983 +608713,212.81,90.51768 +608714,211.37,90.84855 +608715,209.94,91.1944 +608716,208.53,91.5542 +608717,211.48,90.59808 +608718,210.03,90.88702 +608719,208.59,91.1913 +608720,207.17,91.5097 +608721,210.16,90.67875 +608722,208.69,90.92555 +608723,207.24,91.188 +608724,205.8,91.465 +608725,208.84,90.75966 +608726,207.36,90.96413 +608727,205.89,91.1846 +608728,204.43,91.42 +608729,207.51,90.84078 +608730,206.02,91.0027 +608731,204.53,91.1811 +608732,203.07,91.3748 +608733,206.19,90.92208 +608734,204.68,91.0414 +608735,203.18,91.1776 +608736,201.7,91.3295 +608737,204.86,91.0035 +608738,203.34,91.08 +608739,201.83,91.1739 +608740,200.34,91.2839 +608741,203.53,91.0851 +608742,202,91.1187 +608743,200.48,91.1701 +608744,198.98,91.2383 +608745,202.2,91.1667 +608746,200.66,91.1573 +608747,199.13,91.1663 +608748,197.62,91.1925 +608749,200.87,91.2484 +608750,199.32,91.196 +608751,197.78,91.1625 +608752,196.26,91.1467 +608753,199.54,91.3301 +608754,197.98,91.2346 +608755,196.43,91.1586 +608756,194.9,91.1009 +608757,198.21,91.4117 +608758,196.64,91.2731 +608759,195.08,91.1546 +608760,193.54,91.055 +608761,196.87,91.4933 +608762,195.29,91.3116 +608763,193.73,91.1507 +608764,192.19,91.0092 +608765,195.54,91.5748 +608766,193.95,91.3501 +608767,192.38,91.1467 +608768,190.83,90.96349 +608769,194.2,91.6562 +608770,192.61,91.3884 +608771,191.04,91.1428 +608772,189.48,90.91784 +608773,192.86,91.7374 +608774,191.26,91.4267 +608775,189.69,91.1388 +608776,188.13,90.87232 +608777,191.52,91.8184 +608778,189.92,91.4649 +608779,188.34,91.1349 +608780,186.78,90.82696 +608781,190.18,91.8992 +608782,188.58,91.503 +608783,186.99,91.131 +608784,185.43,90.78179 +608785,188.84,91.9798 +608786,187.23,91.5409 +608787,185.65,91.1271 +608788,184.08,90.73684 +608789,187.5,92.06 +608790,185.89,91.5787 +608791,184.3,91.1233 +608792,182.73,90.69214 +608793,186.15,92.1399 +608794,184.54,91.6164 +608795,182.95,91.1196 +608796,181.39,90.64771 +608797,184.8,92.2195 +608798,183.2,91.6539 +608799,181.61,91.1159 +608800,180.04,90.6036 +608801,183.46,92.2987 +608802,181.85,91.6913 +608803,180.26,91.1123 +608804,178.7,90.55984 +608805,182.11,92.3774 +608806,180.5,91.7285 +608807,178.92,91.1088 +608808,177.36,90.51644 +608809,180.76,92.4557 +608810,179.15,91.7655 +608811,177.57,91.1055 +608812,176.02,90.47345 +608813,179.41,92.5334 +608814,177.81,91.8023 +608815,176.23,91.1022 +608816,174.68,90.43088 +608817,178.05,92.6107 +608818,176.46,91.8389 +608819,174.89,91.0991 +608820,173.34,90.38878 +608821,176.7,92.6874 +608822,175.11,91.8753 +608823,173.54,91.0961 +608824,172,90.34716 +608825,175.34,92.7635 +608826,173.76,91.9115 +608827,172.2,91.0932 +608828,170.67,90.30607 +608829,173.99,92.8389 +608830,172.41,91.9474 +608831,170.86,91.0905 +608832,169.33,90.26552 +608833,172.63,92.9137 +608834,171.06,91.9831 +608835,169.52,91.0879 +608836,168,90.22555 +608837,171.27,92.9879 +608838,169.71,92.0185 +608839,168.18,91.0856 +608840,166.67,90.18618 +608841,169.91,93.0613 +608842,168.36,92.0536 +608843,166.83,91.0834 +608844,165.34,90.14745 +608845,168.55,93.1339 +608846,167.01,92.0885 +608847,165.49,91.0814 +608848,164.01,90.10937 +608849,167.19,93.2058 +608850,165.65,92.1231 +608851,164.15,91.0796 +608852,162.68,90.071977 +608853,165.82,93.2768 +608854,164.3,92.1574 +608855,162.81,91.078 +608856,161.35,90.035298 +608857,164.46,93.347 +608858,162.95,92.1914 +608859,161.47,91.0767 +608860,160.02,89.99935894 +608861,163.09,93.4164 +608862,161.6,92.225 +608863,160.13,91.0756 +608864,158.7,89.964185 +608865,161.72,93.4848 +608866,160.24,92.2584 +608867,158.79,91.0747 +608868,157.37,89.929801 +608869,160.36,93.5523 +608870,158.89,92.2914 +608871,157.45,91.074 +608872,156.05,89.89623 +608873,158.99,93.6189 +608874,157.53,92.324 +608875,156.12,91.0736 +608876,154.73,89.86351 +608877,157.61,93.6844 +608878,156.18,92.3563 +608879,154.78,91.0735 +608880,153.41,89.83165 +608881,156.24,93.749 +608882,154.82,92.3882 +608883,153.44,91.0737 +608884,152.09,89.80068 +608885,154.87,93.8125 +608886,153.47,92.4198 +608887,152.1,91.0741 +608888,150.77,89.77062 +608889,153.49,93.875 +608890,152.11,92.451 +608891,150.77,91.0748 +608892,149.45,89.74149 +608893,152.12,93.9363 +608894,150.76,92.4818 +608895,149.43,91.0758 +608896,148.13,89.71333 +608897,150.74,93.9965 +608898,149.4,92.5122 +608899,148.09,91.0771 +608900,146.82,89.68615 +608901,149.36,94.0556 +608902,148.04,92.5422 +608903,146.76,91.0788 +608904,145.5,89.65997 +608905,147.98,94.1136 +608906,146.68,92.5718 +608907,145.42,91.0807 +608908,144.19,89.63481 +608909,146.6,94.1703 +608910,145.33,92.601 +608911,144.08,91.083 +608912,142.87,89.6107 +608913,145.22,94.2258 +608914,143.97,92.6297 +608915,142.75,91.0856 +608916,141.56,89.58765 +608917,143.84,94.2801 +608918,142.61,92.658 +608919,141.41,91.0885 +608920,140.25,89.56569 +608921,142.46,94.3331 +608922,141.25,92.6859 +608923,140.08,91.0918 +608924,138.94,89.54483 +608925,141.07,94.3849 +608926,139.89,92.7133 +608927,138.74,91.0954 +608928,137.63,89.52509 +608929,139.69,94.4354 +608930,138.53,92.7403 +608931,137.41,91.0994 +608932,136.32,89.50649 +608933,138.3,94.4845 +608934,137.17,92.7668 +608935,136.08,91.1038 +608936,135.01,89.48905 +608937,136.92,94.5323 +608938,135.81,92.7928 +608939,134.74,91.1085 +608940,133.71,89.47279 +608941,135.53,94.5788 +608942,134.45,92.8184 +608943,133.41,91.1136 +608944,132.4,89.45771 +608945,134.14,94.6238 +608946,133.09,92.8435 +608947,132.08,91.119 +608948,131.09,89.44384 +608949,132.75,94.6675 +608950,131.73,92.8681 +608951,130.74,91.1249 +608952,129.79,89.43119 +608953,131.36,94.7098 +608954,130.37,92.8922 +608955,129.41,91.1312 +608956,128.48,89.41978 +608957,129.97,94.7507 +608958,129,92.9159 +608959,128.08,91.1378 +608960,127.18,89.40962 +608961,128.58,94.7901 +608962,127.64,92.939 +608963,126.74,91.1448 +608964,125.88,89.40072 +608965,127.19,94.8281 +608966,126.28,92.9616 +608967,125.41,91.1523 +608968,124.58,89.39309 +608969,125.79,94.8646 +608970,124.92,92.9837 +608971,124.08,91.1601 +608972,123.27,89.38676 +608973,124.4,94.8996 +608974,123.55,93.0053 +608975,122.75,91.1684 +608976,121.97,89.38172 +608977,123,94.9332 +608978,122.19,93.0264 +608979,121.42,91.177 +608980,120.67,89.37799 +608981,121.61,94.9653 +608982,120.83,93.047 +608983,120.08,91.1861 +608984,119.37,89.37559 +608985,120.21,94.9958 +608986,119.46,93.0671 +608987,118.75,91.1956 +608988,118.07,89.37451 +608989,118.82,95.0249 +608990,118.1,93.0866 +608991,117.42,91.2056 +608992,116.77,89.37477 +608993,117.42,95.0524 +608994,116.74,93.1056 +608995,116.09,91.2159 +608996,115.47,89.37638 +608997,116.02,95.0784 +608998,115.37,93.1241 +608999,114.76,91.2267 +609000,114.18,89.37934 +609001,114.62,95.1029 +609002,114.01,93.142 +609003,113.43,91.2379 +609004,112.88,89.38366 +609005,113.23,95.1258 +609006,112.64,93.1594 +609007,112.1,91.2496 +609008,111.58,89.38934 +609009,111.83,95.1472 +609010,111.28,93.1763 +609011,110.77,91.2616 +609012,110.28,89.3964 +609013,110.43,95.167 +609014,109.91,93.1926 +609015,109.44,91.2742 +609016,108.99,89.40484 +609017,109.03,95.1853 +609018,108.55,93.2084 +609019,108.11,91.2871 +609020,107.69,89.41466 +609021,107.63,95.202 +609022,107.18,93.2237 +609023,106.77,91.3005 +609024,106.39,89.42586 +609025,106.23,95.2172 +609026,105.82,93.2384 +609027,105.44,91.3143 +609028,105.1,89.43845 +609029,104.83,95.2308 +609030,104.45,93.2526 +609031,104.11,91.3286 +609032,103.8,89.45243 +609033,103.42,95.2428 +609034,103.09,93.2662 +609035,102.78,91.3433 +609036,102.51,89.46779 +609037,102.02,95.2533 +609038,101.72,93.2793 +609039,101.45,91.3584 +609040,101.21,89.48455 +609041,100.62,95.2622 +609042,100.36,93.2919 +609043,100.12,91.374 +609044,99.915,89.5027 +609045,99.22,95.2696 +609046,98.991,93.3039 +609047,98.792,91.39 +609048,98.619,89.52224 +609049,97.818,95.2755 +609050,97.625,93.3154 +609051,97.462,91.4065 +609052,97.324,89.54316 +609053,96.416,95.2798 +609054,96.26,93.3263 +609055,96.131,91.4233 +609056,96.029,89.56548 +609057,95.014,95.2825 +609058,94.894,93.3367 +609059,94.801,91.4407 +609060,94.733,89.58917 +609061,93.612,95.2838 +609062,93.528,93.3465 +609063,93.471,91.4584 +609064,93.438,89.61425 +609065,92.21,95.2835 +609066,92.162,93.3559 +609067,92.14,91.4766 +609068,92.143,89.64069 +609069,90.808,95.2816 +609070,90.796,93.3647 +609071,90.81,91.4952 +609072,90.847,89.66851 +609073,89.406,95.2783 +609074,89.43,93.3729 +609075,89.479,91.5143 +609076,89.552,89.6977 +609077,88.004,95.2735 +609078,88.064,93.3807 +609079,88.149,91.5337 +609080,88.256,89.72824 +609081,86.602,95.2672 +609082,86.698,93.3879 +609083,86.818,91.5536 +609084,86.96,89.76013 +609085,85.2,95.2594 +609086,85.332,93.3946 +609087,85.487,91.5739 +609088,85.664,89.79336 +609089,83.798,95.2501 +609090,83.966,93.4008 +609091,84.157,91.5946 +609092,84.368,89.82793 +609093,82.396,95.2394 +609094,82.6,93.4064 +609095,82.826,91.6158 +609096,83.072,89.86382 +609097,80.995,95.2273 +609098,81.234,93.4116 +609099,81.495,91.6373 +609100,81.775,89.901032 +609101,79.594,95.2137 +609102,79.868,93.4162 +609103,80.164,91.6593 +609104,80.478,89.939545 +609105,78.193,95.1987 +609106,78.502,93.4204 +609107,78.832,91.6816 +609108,79.181,89.979351 +609109,76.792,95.1823 +609110,77.137,93.424 +609111,77.501,91.7043 +609112,77.883,90.020439 +609113,75.392,95.1645 +609114,75.771,93.4272 +609115,76.169,91.7275 +609116,76.585,90.062795 +609117,73.992,95.1454 +609118,74.406,93.4299 +609119,74.838,91.751 +609120,75.287,90.10641 +609121,72.593,95.1249 +609122,73.04,93.432 +609123,73.506,91.7749 +609124,73.988,90.15126 +609125,71.193,95.1031 +609126,71.675,93.4338 +609127,72.174,91.7992 +609128,72.689,90.19734 +609129,69.795,95.08 +609130,70.31,93.435 +609131,70.842,91.8238 +609132,71.389,90.24463 +609133,68.396,95.0556 +609134,68.945,93.4358 +609135,69.509,91.8489 +609136,70.088,90.29312 +609137,66.999,95.0299 +609138,67.58,93.4361 +609139,68.177,91.8742 +609140,68.788,90.34279 +609141,65.602,95.0029 +609142,66.215,93.4359 +609143,66.844,91.9 +609144,67.486,90.39362 +609145,64.205,94.9747 +609146,64.851,93.4354 +609147,65.511,91.926 +609148,66.184,90.4456 +609149,62.809,94.9454 +609150,63.486,93.4343 +609151,64.178,91.9525 +609152,64.882,90.4987 +609153,61.413,94.9148 +609154,62.122,93.4329 +609155,62.844,91.9792 +609156,63.579,90.5529 +609157,60.018,94.8831 +609158,60.758,93.431 +609159,61.51,92.0063 +609160,62.275,90.6082 +609161,58.624,94.8502 +609162,59.394,93.4287 +609163,60.176,92.0337 +609164,60.971,90.66457 +609165,57.23,94.8162 +609166,58.03,93.426 +609167,58.842,92.0614 +609168,59.665,90.72198 +609169,55.837,94.7811 +609170,56.667,93.4229 +609171,57.508,92.0894 +609172,58.36,90.78041 +609173,54.445,94.745 +609174,55.304,93.4194 +609175,56.173,92.1177 +609176,57.053,90.83985 +609177,53.054,94.7078 +609178,53.941,93.4155 +609179,54.838,92.1463 +609180,55.746,90.90028 +609181,51.663,94.6696 +609182,52.578,93.4112 +609183,53.503,92.1752 +609184,54.438,90.96166 +609185,50.273,94.6304 +609186,51.215,93.4065 +609187,52.167,92.2044 +609188,53.129,91.024 +609189,48.884,94.5902 +609190,49.853,93.4015 +609191,50.831,92.2338 +609192,51.819,91.0872 +609193,47.496,94.5492 +609194,48.491,93.3962 +609195,49.495,92.2635 +609196,50.508,91.1513 +609197,46.108,94.5072 +609198,47.129,93.3905 +609199,48.159,92.2934 +609200,49.197,91.2163 +609201,44.722,94.4643 +609202,45.767,93.3844 +609203,46.822,92.3236 +609204,47.885,91.2821 +609205,43.336,94.4206 +609206,44.406,93.3781 +609207,45.485,92.3539 +609208,46.571,91.3487 +609209,41.951,94.376 +609210,43.045,93.3714 +609211,44.147,92.3846 +609212,45.257,91.4161 +609213,40.568,94.3307 +609214,41.684,93.3644 +609215,42.81,92.4154 +609216,43.942,91.4843 +609217,39.185,94.2846 +609218,40.324,93.3571 +609219,41.472,92.4464 +609220,42.626,91.5532 +609221,37.803,94.2377 +609222,38.964,93.3495 +609223,40.133,92.4776 +609224,41.309,91.6228 +609225,36.422,94.1902 +609226,37.604,93.3417 +609227,38.794,92.509 +609228,39.991,91.693 +609229,35.042,94.142 +609230,36.245,93.3335 +609231,37.455,92.5406 +609232,38.672,91.7639 +609233,33.663,94.0931 +609234,34.885,93.3251 +609235,36.116,92.5723 +609236,37.352,91.8354 +609237,32.285,94.0437 +609238,33.527,93.3165 +609239,34.776,92.6042 +609240,36.031,91.9075 +609241,30.908,93.9936 +609242,32.168,93.3076 +609243,33.435,92.6362 +609244,34.709,91.9802 +609245,29.532,93.943 +609246,30.81,93.2985 +609247,32.095,92.6684 +609248,33.386,92.0534 +609249,28.157,93.8919 +609250,29.452,93.2892 +609251,30.754,92.7007 +609252,32.062,92.1271 +609253,26.784,93.8403 +609254,28.094,93.2797 +609255,29.412,92.7331 +609256,30.737,92.2012 +609257,25.411,93.7883 +609258,26.737,93.27 +609259,28.071,92.7656 +609260,29.41,92.2758 +609261,24.04,93.7358 +609262,25.38,93.2601 +609263,26.728,92.7981 +609264,28.083,92.3508 +609265,22.669,93.683 +609266,24.024,93.25 +609267,25.386,92.8308 +609268,26.754,92.4261 +609269,21.3,93.6298 +609270,22.667,93.2397 +609271,24.043,92.8635 +609272,25.424,92.5018 +609273,19.932,93.5762 +609274,21.312,93.2293 +609275,22.699,92.8963 +609276,24.093,92.5778 +609277,18.565,93.5224 +609278,19.956,93.2188 +609279,21.356,92.9291 +609280,22.761,92.6541 +609281,17.199,93.4683 +609282,18.601,93.2081 +609283,20.011,92.962 +609284,21.428,92.7306 +609285,15.834,93.414 +609286,17.246,93.1973 +609287,18.667,92.9949 +609288,20.094,92.8073 +609289,14.471,93.3595 +609290,15.892,93.1864 +609291,17.322,93.0278 +609292,18.758,92.8841 +609293,13.108,93.3048 +609294,14.538,93.1754 +609295,15.976,93.0607 +609296,17.422,92.9612 +609297,11.747,93.25 +609298,13.184,93.1643 +609299,14.63,93.0936 +609300,16.084,93.0383 +609301,10.387,93.1951 +609302,11.831,93.1532 +609303,13.284,93.1264 +609304,14.745,93.1155 +609305,9.0282,93.1402 +609306,10.478,93.1419 +609307,11.937,93.1592 +609308,13.404,93.1927 +609309,7.6706,93.0852 +609310,9.1258,93.1306 +609311,10.59,93.192 +609312,12.063,93.27 +609313,6.3141,93.0302 +609314,7.7737,93.1193 +609315,9.2428,93.2248 +609316,10.72,93.3472 +609317,4.9588,92.9752 +609318,6.422,93.1079 +609319,7.8948,93.2574 +609320,9.376,93.4243 +609321,3.6048,92.9203 +609322,5.0706,93.0965 +609323,6.5464,93.29 +609324,8.0308,93.5014 +609325,2.2519,92.8656 +609326,3.7197,93.0851 +609327,5.1975,93.3225 +609328,6.6844,93.5783 +609329,0.90021,92.8109 +609330,2.3691,93.0737 +609331,3.8483,93.3549 +609332,5.3368,93.655 +609333,359.55,92.7564 +609334,1.0188,93.0624 +609335,2.4986,93.3872 +609336,3.988,93.7316 +609337,358.2,92.7021 +609338,359.67,93.051 +609339,1.1485,93.4193 +609340,2.6379,93.8079 +609341,356.85,92.6481 +609342,358.32,93.0397 +609343,359.8,93.4514 +609344,1.2866,93.8839 +609345,355.51,92.5943 +609346,356.97,93.0284 +609347,358.45,93.4832 +609348,359.93,93.9597 +609349,354.16,92.5408 +609350,355.62,93.0171 +609351,357.1,93.515 +609352,358.58,94.0351 +609353,352.82,92.4876 +609354,354.27,93.006 +609355,355.74,93.5465 +609356,357.23,94.1101 +609357,351.47,92.4348 +609358,352.93,92.9949 +609359,354.39,93.5779 +609360,355.87,94.1847 +609361,350.13,92.3823 +609362,351.58,92.9839 +609363,353.04,93.609 +609364,354.51,94.2589 +609365,348.79,92.3303 +609366,350.23,92.973 +609367,351.69,93.64 +609368,353.15,94.3326 +609369,347.45,92.2787 +609370,348.88,92.9622 +609371,350.33,93.6708 +609372,351.79,94.4058 +609373,346.11,92.2276 +609374,347.54,92.9515 +609375,348.98,93.7013 +609376,350.43,94.4784 +609377,344.77,92.177 +609378,346.19,92.9409 +609379,347.62,93.7316 +609380,349.07,94.5505 +609381,343.44,92.1269 +609382,344.85,92.9305 +609383,346.27,93.7617 +609384,347.71,94.622 +609385,342.1,92.0774 +609386,343.5,92.9202 +609387,344.91,93.7915 +609388,346.34,94.6928 +609389,340.77,92.0285 +609390,342.16,92.9101 +609391,343.56,93.821 +609392,344.98,94.7629 +609393,339.43,91.9803 +609394,340.81,92.9002 +609395,342.2,93.8503 +609396,343.61,94.8324 +609397,338.1,91.9326 +609398,339.47,92.8904 +609399,340.85,93.8792 +609400,342.24,94.9011 +609401,336.77,91.8857 +609402,338.12,92.8809 +609403,339.49,93.9079 +609404,340.87,94.969 +609405,335.44,91.8394 +609406,336.78,92.8715 +609407,338.13,93.9363 +609408,339.5,95.0361 +609409,334.11,91.7939 +609410,335.44,92.8623 +609411,336.77,93.9643 +609412,338.13,95.1024 +609413,332.78,91.7492 +609414,334.09,92.8533 +609415,335.42,93.992 +609416,336.76,95.1679 +609417,331.46,91.7052 +609418,332.75,92.8446 +609419,334.06,94.0194 +609420,335.38,95.2324 +609421,330.13,91.6621 +609422,331.41,92.8361 +609423,332.7,94.0464 +609424,334.01,95.296 +609425,328.81,91.6198 +609426,330.07,92.8279 +609427,331.34,94.0731 +609428,332.63,95.3587 +609429,327.48,91.5783 +609430,328.72,92.8199 +609431,329.98,94.0994 +609432,331.26,95.4203 +609433,326.16,91.5378 +609434,327.38,92.8121 +609435,328.62,94.1254 +609436,329.88,95.481 +609437,324.84,91.4981 +609438,326.04,92.8046 +609439,327.26,94.1509 +609440,328.5,95.5406 +609441,323.52,91.4594 +609442,324.7,92.7975 +609443,325.9,94.1761 +609444,327.12,95.5992 +609445,322.2,91.4217 +609446,323.36,92.7905 +609447,324.54,94.2008 +609448,325.74,95.6566 +609449,320.88,91.3849 +609450,322.02,92.7839 +609451,323.18,94.2252 +609452,324.36,95.7129 +609453,319.56,91.3491 +609454,320.68,92.7776 +609455,321.82,94.2491 +609456,322.97,95.7681 +609457,318.25,91.3144 +609458,319.34,92.7716 +609459,320.46,94.2726 +609460,321.59,95.8221 +609461,316.93,91.2807 +609462,318,92.7659 +609463,319.09,94.2957 +609464,320.2,95.8749 +609465,315.61,91.2481 +609466,316.66,92.7605 +609467,317.73,94.3183 +609468,318.82,95.9265 +609469,314.3,91.2166 +609470,315.33,92.7555 +609471,316.37,94.3405 +609472,317.43,95.9769 +609473,312.99,91.1862 +609474,313.99,92.7508 +609475,315.01,94.3622 +609476,316.04,96.0259 +609477,311.67,91.1569 +609478,312.65,92.7464 +609479,313.64,94.3835 +609480,314.66,96.0737 +609481,310.36,91.1287 +609482,311.31,92.7424 +609483,312.28,94.4043 +609484,313.27,96.1202 +609485,309.05,91.1018 +609486,309.97,92.7387 +609487,310.91,94.4246 +609488,311.88,96.1653 +609489,307.74,91.076 +609490,308.64,92.7354 +609491,309.55,94.4444 +609492,310.49,96.209 +609493,306.43,91.0514 +609494,307.3,92.7325 +609495,308.19,94.4638 +609496,309.09,96.2514 +609497,305.12,91.028 +609498,305.96,92.73 +609499,306.82,94.4826 +609500,307.7,96.2924 +609501,303.81,91.0058 +609502,304.62,92.7278 +609503,305.46,94.5009 +609504,306.31,96.332 +609505,302.5,90.9849 +609506,303.29,92.726 +609507,304.09,94.5188 +609508,304.92,96.3701 +609509,301.19,90.96525 +609510,301.95,92.7246 +609511,302.73,94.5361 +609512,303.52,96.4068 +609513,299.89,90.94687 +609514,300.62,92.7236 +609515,301.36,94.5529 +609516,302.13,96.442 +609517,298.58,90.92977 +609518,299.28,92.7229 +609519,299.99,94.5692 +609520,300.73,96.4758 +609521,297.27,90.91398 +609522,297.94,92.7227 +609523,298.63,94.5849 +609524,299.33,96.508 +609525,295.97,90.89949 +609526,296.61,92.7229 +609527,297.26,94.6002 +609528,297.94,96.5387 +609529,294.66,90.88633 +609530,295.27,92.7235 +609531,295.9,94.6149 +609532,296.54,96.568 +609533,293.36,90.87449 +609534,293.94,92.7245 +609535,294.53,94.629 +609536,295.14,96.5956 +609537,292.06,90.864 +609538,292.6,92.7259 +609539,293.16,94.6426 +609540,293.74,96.6218 +609541,290.75,90.85486 +609542,291.27,92.7278 +609543,291.79,94.6557 +609544,292.34,96.6463 +609545,289.45,90.84708 +609546,289.93,92.7301 +609547,290.43,94.6682 +609548,290.94,96.6693 +609549,288.15,90.84066 +609550,288.6,92.7328 +609551,289.06,94.6801 +609552,289.54,96.6908 +609553,286.84,90.83562 +609554,287.26,92.7359 +609555,287.69,94.6915 +609556,288.14,96.7106 +609557,285.54,90.83196 +609558,285.93,92.7394 +609559,286.33,94.7024 +609560,286.74,96.7289 +609561,284.24,90.82969 +609562,284.59,92.7434 +609563,284.96,94.7127 +609564,285.34,96.7455 +609565,282.94,90.8288 +609566,283.26,92.7478 +609567,283.59,94.7224 +609568,283.94,96.7606 +609569,281.64,90.82931 +609570,281.92,92.7527 +609571,282.22,94.7316 +609572,282.54,96.774 +609573,280.34,90.83122 +609574,280.59,92.758 +609575,280.85,94.7402 +609576,281.14,96.7858 +609577,279.03,90.83453 +609578,279.25,92.7637 +609579,279.49,94.7482 +609580,279.74,96.7961 +609581,277.73,90.83925 +609582,277.92,92.7698 +609583,278.12,94.7557 +609584,278.33,96.8047 +609585,276.43,90.84537 +609586,276.58,92.7764 +609587,276.75,94.7626 +609588,276.93,96.8117 +609589,275.13,90.8529 +609590,275.25,92.7835 +609591,275.38,94.7689 +609592,275.53,96.817 +609593,273.83,90.86183 +609594,273.92,92.7909 +609595,274.01,94.7747 +609596,274.13,96.8208 +609597,272.53,90.87217 +609598,272.58,92.7988 +609599,272.65,94.7799 +609600,272.72,96.8229 +609601,271.23,90.88392 +609602,271.25,92.8072 +609603,271.28,94.7845 +609604,271.32,96.8234 +609605,269.93,90.89707 +609606,269.91,92.816 +609607,269.91,94.7886 +609608,269.92,96.8224 +609609,268.63,90.91162 +609610,268.58,92.8252 +609611,268.54,94.7921 +609612,268.52,96.8197 +609613,267.33,90.92756 +609614,267.24,92.8348 +609615,267.17,94.7951 +609616,267.11,96.8154 +609617,266.03,90.9449 +609618,265.91,92.8449 +609619,265.8,94.7974 +609620,265.71,96.8095 +609621,264.73,90.96363 +609622,264.57,92.8554 +609623,264.43,94.7993 +609624,264.31,96.802 +609625,263.42,90.98374 +609626,263.24,92.8664 +609627,263.07,94.8005 +609628,262.9,96.793 +609629,262.12,91.0052 +609630,261.91,92.8777 +609631,261.7,94.8013 +609632,261.5,96.7824 +609633,260.82,91.0281 +609634,260.57,92.8895 +609635,260.33,94.8014 +609636,260.1,96.7702 +609637,259.52,91.0523 +609638,259.24,92.9017 +609639,258.96,94.8011 +609640,258.7,96.7565 +609641,258.22,91.0779 +609642,257.9,92.9144 +609643,257.59,94.8001 +609644,257.3,96.7412 +609645,256.91,91.1048 +609646,256.57,92.9274 +609647,256.23,94.7987 +609648,255.9,96.7244 +609649,255.61,91.133 +609650,255.23,92.9409 +609651,254.86,94.7967 +609652,254.49,96.7061 +609653,254.31,91.1626 +609654,253.9,92.9547 +609655,253.49,94.7941 +609656,253.09,96.6862 +609657,253.01,91.1935 +609658,252.56,92.969 +609659,252.12,94.7911 +609660,251.69,96.6649 +609661,251.7,91.2257 +609662,251.22,92.9837 +609663,250.76,94.7875 +609664,250.29,96.6421 +609665,250.4,91.2592 +609666,249.89,92.9987 +609667,249.39,94.7833 +609668,248.89,96.6179 +609669,249.09,91.294 +609670,248.55,93.0142 +609671,248.02,94.7787 +609672,247.49,96.5922 +609673,247.79,91.33 +609674,247.22,93.03 +609675,246.65,94.7736 +609676,246.1,96.5651 +609677,246.48,91.3673 +609678,245.88,93.0462 +609679,245.29,94.7679 +609680,244.7,96.5366 +609681,245.18,91.4058 +609682,244.54,93.0628 +609683,243.92,94.7618 +609684,243.3,96.5067 +609685,243.87,91.4455 +609686,243.21,93.0798 +609687,242.55,94.7552 +609688,241.9,96.4754 +609689,242.56,91.4864 +609690,241.87,93.0971 +609691,241.19,94.748 +609692,240.51,96.4428 +609693,241.25,91.5286 +609694,240.53,93.1148 +609695,239.82,94.7404 +609696,239.11,96.4088 +609697,239.94,91.5718 +609698,239.2,93.1328 +609699,238.45,94.7323 +609700,237.71,96.3736 +609701,238.64,91.6163 +609702,237.86,93.1512 +609703,237.09,94.7238 +609704,236.32,96.337 +609705,237.33,91.6619 +609706,236.52,93.1699 +609707,235.72,94.7148 +609708,234.93,96.2992 +609709,236.01,91.7085 +609710,235.18,93.189 +609711,234.36,94.7053 +609712,233.53,96.2602 +609713,234.7,91.7563 +609714,233.85,93.2083 +609715,232.99,94.6954 +609716,232.14,96.2199 +609717,233.39,91.8052 +609718,232.51,93.228 +609719,231.63,94.6851 +609720,230.75,96.1785 +609721,232.08,91.8551 +609722,231.17,93.248 +609723,230.26,94.6743 +609724,229.36,96.1359 +609725,230.77,91.906 +609726,229.83,93.2683 +609727,228.9,94.6631 +609728,227.97,96.0921 +609729,229.45,91.958 +609730,228.49,93.2889 +609731,227.53,94.6515 +609732,226.58,96.0472 +609733,228.14,92.0109 +609734,227.15,93.3098 +609735,226.17,94.6394 +609736,225.19,96.0013 +609737,226.82,92.0648 +609738,225.81,93.331 +609739,224.8,94.627 +609740,223.8,95.9542 +609741,225.5,92.1196 +609742,224.47,93.3524 +609743,223.44,94.6142 +609744,222.41,95.9062 +609745,224.19,92.1754 +609746,223.13,93.3741 +609747,222.08,94.601 +609748,221.03,95.8571 +609749,222.87,92.232 +609750,221.79,93.3961 +609751,220.71,94.5875 +609752,219.64,95.8071 +609753,221.55,92.2895 +609754,220.45,93.4183 +609755,219.35,94.5735 +609756,218.26,95.7561 +609757,220.23,92.3478 +609758,219.11,93.4407 +609759,217.99,94.5592 +609760,216.87,95.7042 +609761,218.91,92.407 +609762,217.77,93.4633 +609763,216.63,94.5446 +609764,215.49,95.6514 +609765,217.58,92.4669 +609766,216.42,93.4862 +609767,215.27,94.5297 +609768,214.11,95.5977 +609769,216.26,92.5276 +609770,215.08,93.5093 +609771,213.9,94.5144 +609772,212.73,95.5432 +609773,214.94,92.5891 +609774,213.74,93.5326 +609775,212.54,94.4988 +609776,211.35,95.4879 +609777,213.61,92.6512 +609778,212.4,93.556 +609779,211.18,94.4829 +609780,209.97,95.4319 +609781,212.29,92.714 +609782,211.05,93.5797 +609783,209.82,94.4667 +609784,208.59,95.3751 +609785,210.96,92.7775 +609786,209.71,93.6035 +609787,208.46,94.4502 +609788,207.21,95.3176 +609789,209.63,92.8416 +609790,208.37,93.6275 +609791,207.1,94.4334 +609792,205.84,95.2594 +609793,208.3,92.9063 +609794,207.02,93.6516 +609795,205.74,94.4164 +609796,204.46,95.2006 +609797,206.97,92.9715 +609798,205.68,93.6759 +609799,204.38,94.3991 +609800,203.09,95.1412 +609801,205.64,93.0373 +609802,204.33,93.7003 +609803,203.02,94.3816 +609804,201.72,95.0812 +609805,204.31,93.1035 +609806,202.99,93.7248 +609807,201.67,94.3639 +609808,200.35,95.0206 +609809,202.97,93.1703 +609810,201.64,93.7494 +609811,200.31,94.3459 +609812,198.98,94.9596 +609813,201.64,93.2374 +609814,200.29,93.7741 +609815,198.95,94.3277 +609816,197.61,94.898 +609817,200.3,93.305 +609818,198.95,93.7989 +609819,197.59,94.3094 +609820,196.24,94.8361 +609821,198.97,93.3729 +609822,197.6,93.8238 +609823,196.24,94.2908 +609824,194.87,94.7737 +609825,197.63,93.4412 +609826,196.25,93.8487 +609827,194.88,94.272 +609828,193.51,94.7109 +609829,196.29,93.5098 +609830,194.91,93.8737 +609831,193.52,94.2531 +609832,192.14,94.6478 +609833,194.95,93.5787 +609834,193.56,93.8987 +609835,192.17,94.2341 +609836,190.78,94.5844 +609837,193.61,93.6478 +609838,192.21,93.9238 +609839,190.81,94.2148 +609840,189.42,94.5207 +609841,192.26,93.7171 +609842,190.86,93.9489 +609843,189.46,94.1955 +609844,188.06,94.4568 +609845,190.92,93.7867 +609846,189.51,93.974 +609847,188.1,94.176 +609848,186.7,94.3926 +609849,189.58,93.8563 +609850,188.16,93.9991 +609851,186.75,94.1565 +609852,185.34,94.3283 +609853,188.23,93.9261 +609854,186.81,94.0241 +609855,185.39,94.1368 +609856,183.98,94.2639 +609857,186.88,93.9959 +609858,185.46,94.0492 +609859,184.04,94.117 +609860,182.62,94.1993 +609861,185.53,94.0658 +609862,184.11,94.0742 +609863,182.69,94.0972 +609864,181.27,94.1347 +609865,184.18,94.1357 +609866,182.76,94.0991 +609867,181.34,94.0773 +609868,179.91,94.07 +609869,182.83,94.2056 +609870,181.41,94.124 +609871,179.98,94.0573 +609872,178.56,94.0053 +609873,181.48,94.2754 +609874,180.06,94.1489 +609875,178.63,94.0373 +609876,177.21,93.9407 +609877,180.13,94.3451 +609878,178.7,94.1736 +609879,177.28,94.0173 +609880,175.86,93.8761 +609881,178.77,94.4147 +609882,177.35,94.1983 +609883,175.93,93.9973 +609884,174.51,93.8116 +609885,177.42,94.4841 +609886,176,94.2228 +609887,174.58,93.9772 +609888,173.16,93.7472 +609889,176.06,94.5534 +609890,174.64,94.2472 +609891,173.23,93.9572 +609892,171.81,93.683 +609893,174.7,94.6224 +609894,173.29,94.2715 +609895,171.88,93.9371 +609896,170.47,93.619 +609897,173.34,94.6911 +609898,171.93,94.2957 +609899,170.53,93.9171 +609900,169.12,93.5552 +609901,171.98,94.7596 +609902,170.58,94.3197 +609903,169.18,93.8971 +609904,167.78,93.4917 +609905,170.62,94.8277 +609906,169.22,94.3436 +609907,167.83,93.8772 +609908,166.44,93.4285 +609909,169.26,94.8954 +609910,167.87,94.3672 +609911,166.48,93.8573 +609912,165.1,93.3656 +609913,167.9,94.9628 +609914,166.51,94.3907 +609915,165.13,93.8375 +609916,163.76,93.303 +609917,166.53,95.0297 +609918,165.16,94.414 +609919,163.79,93.8178 +609920,162.42,93.2408 +609921,165.16,95.0962 +609922,163.8,94.4371 +609923,162.44,93.7982 +609924,161.08,93.1791 +609925,163.8,95.1621 +609926,162.44,94.46 +609927,161.09,93.7786 +609928,159.74,93.1178 +609929,162.43,95.2275 +609930,161.08,94.4826 +609931,159.74,93.7592 +609932,158.41,93.057 +609933,161.06,95.2924 +609934,159.73,94.505 +609935,158.4,93.7399 +609936,157.07,92.9967 +609937,159.69,95.3566 +609938,158.37,94.5272 +609939,157.05,93.7208 +609940,155.74,92.9369 +609941,158.32,95.4203 +609942,157.01,94.5491 +609943,155.71,93.7017 +609944,154.41,92.8777 +609945,156.94,95.4832 +609946,155.65,94.5707 +609947,154.36,93.6829 +609948,153.08,92.8191 +609949,155.57,95.5455 +609950,154.29,94.592 +609951,153.02,93.6642 +609952,151.75,92.7611 +609953,154.19,95.607 +609954,152.93,94.6131 +609955,151.67,93.6456 +609956,150.42,92.7038 +609957,152.82,95.6677 +609958,151.57,94.6338 +609959,150.33,93.6273 +609960,149.09,92.6472 +609961,151.44,95.7277 +609962,150.21,94.6543 +609963,148.98,93.6091 +609964,147.76,92.5913 +609965,150.06,95.7868 +609966,148.85,94.6744 +609967,147.64,93.5912 +609968,146.44,92.5362 +609969,148.68,95.8451 +609970,147.49,94.6941 +609971,146.3,93.5735 +609972,145.11,92.4818 +609973,147.3,95.9025 +609974,146.13,94.7136 +609975,144.96,93.5559 +609976,143.79,92.4282 +609977,145.92,95.959 +609978,144.77,94.7327 +609979,143.61,93.5387 +609980,142.46,92.3754 +609981,144.54,96.0145 +609982,143.4,94.7514 +609983,142.27,93.5216 +609984,141.14,92.3235 +609985,143.16,96.0691 +609986,142.04,94.7697 +609987,140.93,93.5048 +609988,139.82,92.2724 +609989,141.77,96.1226 +609990,140.68,94.7877 +609991,139.59,93.4883 +609992,138.5,92.2223 +609993,140.39,96.1751 +609994,139.32,94.8053 +609995,138.25,93.472 +609996,137.18,92.173 +609997,139,96.2266 +609998,137.95,94.8225 +609999,136.91,93.456 +610000,135.86,92.1248 +610001,137.62,96.2769 +610002,136.59,94.8392 +610003,135.56,93.4403 +610004,134.54,92.0775 +610005,136.23,96.3262 +610006,135.22,94.8556 +610007,134.22,93.4248 +610008,133.23,92.0311 +610009,134.84,96.3743 +610010,133.86,94.8715 +610011,132.88,93.4097 +610012,131.91,91.9858 +610013,133.45,96.4212 +610014,132.5,94.887 +610015,131.54,93.3949 +610016,130.6,91.9416 +610017,132.06,96.467 +610018,131.13,94.9021 +610019,130.21,93.3804 +610020,129.28,91.8984 +610021,130.67,96.5115 +610022,129.77,94.9167 +610023,128.87,93.3662 +610024,127.97,91.8563 +610025,129.28,96.5548 +610026,128.4,94.9309 +610027,127.53,93.3523 +610028,126.66,91.8152 +610029,127.89,96.5968 +610030,127.04,94.9446 +610031,126.19,93.3388 +610032,125.34,91.7753 +610033,126.49,96.6375 +610034,125.67,94.9578 +610035,124.85,93.3256 +610036,124.03,91.7366 +610037,125.1,96.6769 +610038,124.3,94.9706 +610039,123.51,93.3128 +610040,122.72,91.699 +610041,123.71,96.715 +610042,122.94,94.9829 +610043,122.17,93.3003 +610044,121.41,91.6625 +610045,122.31,96.7517 +610046,121.57,94.9947 +610047,120.84,93.2882 +610048,120.1,91.6273 +610049,120.92,96.787 +610050,120.2,95.006 +610051,119.5,93.2764 +610052,118.79,91.5933 +610053,119.52,96.821 +610054,118.84,95.0168 +610055,118.16,93.265 +610056,117.48,91.5604 +610057,118.12,96.8535 +610058,117.47,95.027 +610059,116.82,93.254 +610060,116.18,91.5289 +610061,116.72,96.8846 +610062,116.1,95.0368 +610063,115.49,93.2434 +610064,114.87,91.4986 +610065,115.33,96.9142 +610066,114.74,95.0461 +610067,114.15,93.2331 +610068,113.56,91.4695 +610069,113.93,96.9424 +610070,113.37,95.0548 +610071,112.81,93.2233 +610072,112.26,91.4418 +610073,112.53,96.9691 +610074,112,95.063 +610075,111.48,93.2138 +610076,110.95,91.4153 +610077,111.13,96.9943 +610078,110.63,95.0707 +610079,110.14,93.2048 +610080,109.64,91.3902 +610081,109.73,97.018 +610082,109.27,95.0778 +610083,108.8,93.1961 +610084,108.34,91.3663 +610085,108.33,97.0402 +610086,107.9,95.0844 +610087,107.47,93.1879 +610088,107.03,91.3438 +610089,106.93,97.0608 +610090,106.53,95.0905 +610091,106.13,93.1801 +610092,105.73,91.3226 +610093,105.53,97.0798 +610094,105.16,95.096 +610095,104.79,93.1727 +610096,104.43,91.3028 +610097,104.13,97.0973 +610098,103.79,95.1009 +610099,103.46,93.1657 +610100,103.12,91.2844 +610101,102.73,97.1133 +610102,102.42,95.1053 +610103,102.12,93.1591 +610104,101.82,91.2673 +610105,101.32,97.1276 +610106,101.06,95.1091 +610107,100.79,93.153 +610108,100.52,91.2516 +610109,99.922,97.1404 +610110,99.687,95.1124 +610111,99.451,93.1473 +610112,99.213,91.2372 +610113,98.52,97.1515 +610114,98.319,95.1151 +610115,98.116,93.142 +610116,97.911,91.2243 +610117,97.117,97.161 +610118,96.95,95.1173 +610119,96.78,93.1371 +610120,96.608,91.2127 +610121,95.715,97.169 +610122,95.581,95.1188 +610123,95.445,93.1327 +610124,95.306,91.2026 +610125,94.312,97.1753 +610126,94.212,95.1198 +610127,94.109,93.1287 +610128,94.004,91.1938 +610129,92.91,97.18 +610130,92.843,95.1203 +610131,92.774,93.1251 +610132,92.702,91.1864 +610133,91.507,97.183 +610134,91.474,95.1201 +610135,91.439,93.122 +610136,91.4,91.1805 +610137,90.104,97.1845 +610138,90.106,95.1194 +610139,90.103,93.1193 +610140,90.098,91.176 +610141,88.701,97.1843 +610142,88.737,95.1182 +610143,88.768,93.1171 +610144,88.796,91.1728 +610145,87.298,97.1825 +610146,87.368,95.1163 +610147,87.433,93.1153 +610148,87.494,91.1711 +610149,85.896,97.179 +610150,85.999,95.1139 +610151,86.098,93.1139 +610152,86.192,91.1708 +610153,84.493,97.1739 +610154,84.63,95.1109 +610155,84.762,93.113 +610156,84.89,91.1719 +610157,83.09,97.1672 +610158,83.261,95.1073 +610159,83.427,93.1125 +610160,83.588,91.1744 +610161,81.688,97.1589 +610162,81.893,95.1032 +610163,82.091,93.1124 +610164,82.285,91.1783 +610165,80.286,97.1489 +610166,80.524,95.0985 +610167,80.756,93.1128 +610168,80.983,91.1837 +610169,78.884,97.1373 +610170,79.155,95.0932 +610171,79.421,93.1136 +610172,79.68,91.1904 +610173,77.482,97.1241 +610174,77.787,95.0874 +610175,78.085,93.1149 +610176,78.377,91.1985 +610177,76.08,97.1093 +610178,76.418,95.081 +610179,76.749,93.1166 +610180,77.074,91.208 +610181,74.679,97.0929 +610182,75.05,95.074 +610183,75.414,93.1187 +610184,75.771,91.2189 +610185,73.278,97.0749 +610186,73.682,95.0665 +610187,74.078,93.1212 +610188,74.468,91.2312 +610189,71.877,97.0553 +610190,72.314,95.0584 +610191,72.742,93.1241 +610192,73.164,91.2448 +610193,70.477,97.0342 +610194,70.946,95.0498 +610195,71.406,93.1275 +610196,71.86,91.2598 +610197,69.077,97.0115 +610198,69.578,95.0406 +610199,70.07,93.1313 +610200,70.555,91.2761 +610201,67.678,96.9872 +610202,68.21,95.0309 +610203,68.734,93.1355 +610204,69.25,91.2938 +610205,66.279,96.9614 +610206,66.843,95.0206 +610207,67.397,93.1401 +610208,67.945,91.3129 +610209,64.88,96.934 +610210,65.475,95.0098 +610211,66.061,93.1452 +610212,66.639,91.3332 +610213,63.482,96.9052 +610214,64.108,94.9984 +610215,64.724,93.1506 +610216,65.333,91.3549 +610217,62.085,96.8749 +610218,62.741,94.9865 +610219,63.387,93.1564 +610220,64.026,91.3778 +610221,60.688,96.843 +610222,61.374,94.9741 +610223,62.05,93.1626 +610224,62.719,91.4021 +610225,59.291,96.8097 +610226,60.007,94.9612 +610227,60.713,93.1693 +610228,61.411,91.4276 +610229,57.896,96.775 +610230,58.641,94.9478 +610231,59.376,93.1763 +610232,60.103,91.4544 +610233,56.501,96.7388 +610234,57.274,94.9338 +610235,58.038,93.1836 +610236,58.794,91.4825 +610237,55.106,96.7012 +610238,55.908,94.9193 +610239,56.7,93.1914 +610240,57.484,91.5117 +610241,53.712,96.6623 +610242,54.543,94.9044 +610243,55.363,93.1995 +610244,56.174,91.5422 +610245,52.319,96.6219 +610246,53.177,94.8889 +610247,54.024,93.208 +610248,54.863,91.5739 +610249,50.927,96.5802 +610250,51.812,94.873 +610251,52.686,93.2169 +610252,53.552,91.6068 +610253,49.535,96.5372 +610254,50.446,94.8566 +610255,51.347,93.2261 +610256,52.24,91.6408 +610257,48.144,96.4928 +610258,49.082,94.8397 +610259,50.009,93.2356 +610260,50.927,91.676 +610261,46.754,96.4472 +610262,47.717,94.8223 +610263,48.669,93.2455 +610264,49.613,91.7123 +610265,45.364,96.4003 +610266,46.353,94.8045 +610267,47.33,93.2557 +610268,48.299,91.7498 +610269,43.976,96.3521 +610270,44.989,94.7862 +610271,45.991,93.2663 +610272,46.983,91.7883 +610273,42.588,96.3027 +610274,43.625,94.7675 +610275,44.651,93.2771 +610276,45.668,91.8278 +610277,41.202,96.2522 +610278,42.261,94.7483 +610279,43.311,93.2883 +610280,44.351,91.8685 +610281,39.816,96.2005 +610282,40.898,94.7288 +610283,41.97,93.2998 +610284,43.033,91.9101 +610285,38.431,96.1476 +610286,39.535,94.7088 +610287,40.63,93.3116 +610288,41.715,91.9528 +610289,37.047,96.0936 +610290,38.173,94.6884 +610291,39.289,93.3236 +610292,40.395,91.9964 +610293,35.663,96.0386 +610294,36.81,94.6675 +610295,37.947,93.336 +610296,39.075,92.041 +610297,34.281,95.9824 +610298,35.448,94.6463 +610299,36.606,93.3486 +610300,37.754,92.0866 +610301,32.9,95.9253 +610302,34.087,94.6247 +610303,35.264,93.3615 +610304,36.432,92.133 +610305,31.52,95.8671 +610306,32.726,94.6028 +610307,33.922,93.3746 +610308,35.109,92.1804 +610309,30.141,95.808 +610310,31.365,94.5804 +610311,32.579,93.388 +610312,33.785,92.2286 +610313,28.762,95.7479 +610314,30.004,94.5577 +610315,31.236,93.4016 +610316,32.46,92.2776 +610317,27.385,95.687 +610318,28.644,94.5347 +610319,29.893,93.4155 +610320,31.134,92.3275 +610321,26.009,95.6251 +610322,27.284,94.5113 +610323,28.55,93.4295 +610324,29.807,92.3781 +610325,24.634,95.5624 +610326,25.924,94.4876 +610327,27.206,93.4438 +610328,28.479,92.4295 +610329,23.26,95.4989 +610330,24.565,94.4636 +610331,25.862,93.4583 +610332,27.15,92.4816 +610333,21.887,95.4345 +610334,23.207,94.4393 +610335,24.517,93.473 +610336,25.82,92.5344 +610337,20.515,95.3695 +610338,21.848,94.4146 +610339,23.173,93.4878 +610340,24.489,92.5879 +610341,19.145,95.3036 +610342,20.49,94.3897 +610343,21.827,93.5029 +610344,23.157,92.6421 +610345,17.775,95.2371 +610346,19.132,94.3645 +610347,20.482,93.518 +610348,21.823,92.6969 +610349,16.407,95.17 +610350,17.775,94.339 +610351,19.136,93.5334 +610352,20.489,92.7522 +610353,15.039,95.1022 +610354,16.418,94.3133 +610355,17.79,93.5489 +610356,19.153,92.8081 +610357,13.673,95.0338 +610358,15.062,94.2873 +610359,16.443,93.5645 +610360,17.817,92.8646 +610361,12.308,94.9649 +610362,13.706,94.2611 +610363,15.096,93.5802 +610364,16.479,92.9215 +610365,10.944,94.8954 +610366,12.35,94.2347 +610367,13.749,93.596 +610368,15.14,92.9789 +610369,9.5818,94.8254 +610370,10.995,94.2081 +610371,12.401,93.612 +610372,13.8,93.0368 +610373,8.2203,94.755 +610374,9.6397,94.1812 +610375,11.053,93.628 +610376,12.459,93.095 +610377,6.86,94.6842 +610378,8.2852,94.1542 +610379,9.7046,93.6441 +610380,11.117,93.1537 +610381,5.5008,94.6129 +610382,6.9311,94.127 +610383,8.3557,93.6603 +610384,9.7736,93.2126 +610385,4.1429,94.5413 +610386,5.5774,94.0996 +610387,7.0065,93.6765 +610388,8.429,93.2719 +610389,2.7861,94.4694 +610390,4.2241,94.072 +610391,5.6569,93.6928 +610392,7.0833,93.3315 +610393,1.4305,94.3972 +610394,2.8712,94.0443 +610395,4.3069,93.7091 +610396,5.7364,93.3913 +610397,0.076162,94.3247 +610398,1.5188,94.0165 +610399,2.9566,93.7255 +610400,4.3883,93.4514 +610401,358.72,94.252 +610402,0.16668,93.9886 +610403,1.6058,93.7418 +610404,3.039,93.5116 +610405,357.37,94.1792 +610406,358.82,93.9605 +610407,0.2547,93.7582 +610408,1.6886,93.572 +610409,356.02,94.1062 +610410,357.46,93.9324 +610411,358.9,93.7745 +610412,0.33695,93.6324 +610413,354.67,94.033 +610414,356.11,93.9041 +610415,357.55,93.7909 +610416,358.98,93.693 +610417,353.32,93.9598 +610418,354.76,93.8758 +610419,356.2,93.8072 +610420,357.63,93.7537 +610421,351.98,93.8865 +610422,353.41,93.8474 +610423,354.85,93.8234 +610424,356.28,93.8143 +610425,350.63,93.8132 +610426,352.06,93.8189 +610427,353.49,93.8396 +610428,354.92,93.875 +610429,349.28,93.74 +610430,350.71,93.7904 +610431,352.14,93.8558 +610432,353.56,93.9355 +610433,347.94,93.6667 +610434,349.36,93.7619 +610435,350.79,93.8718 +610436,352.2,93.9961 +610437,346.6,93.5936 +610438,348.02,93.7334 +610439,349.43,93.8878 +610440,350.84,94.0565 +610441,345.26,93.5206 +610442,346.67,93.7048 +610443,348.08,93.9037 +610444,349.48,94.1167 +610445,343.92,93.4478 +610446,345.32,93.6763 +610447,346.72,93.9194 +610448,348.12,94.1768 +610449,342.58,93.3751 +610450,343.97,93.6477 +610451,345.37,93.9351 +610452,346.76,94.2366 +610453,341.24,93.3027 +610454,342.63,93.6192 +610455,344.01,93.9506 +610456,345.39,94.2962 +610457,339.9,93.2305 +610458,341.28,93.5907 +610459,342.66,93.9659 +610460,344.03,94.3556 +610461,338.57,93.1586 +610462,339.93,93.5623 +610463,341.3,93.9811 +610464,342.66,94.4146 +610465,337.23,93.087 +610466,338.59,93.5339 +610467,339.94,93.9962 +610468,341.29,94.4733 +610469,335.9,93.0158 +610470,337.24,93.5056 +610471,338.59,94.011 +610472,339.92,94.5315 +610473,334.57,92.9449 +610474,335.9,93.4774 +610475,337.23,94.0257 +610476,338.55,94.5894 +610477,333.24,92.8745 +610478,334.55,93.4493 +610479,335.87,94.0402 +610480,337.18,94.6468 +610481,331.91,92.8045 +610482,333.21,93.4212 +610483,334.51,94.0545 +610484,335.81,94.7038 +610485,330.58,92.735 +610486,331.87,93.3933 +610487,333.15,94.0685 +610488,334.43,94.7602 +610489,329.25,92.666 +610490,330.52,93.3655 +610491,331.79,94.0824 +610492,333.06,94.8161 +610493,327.92,92.5975 +610494,329.18,93.3378 +610495,330.43,94.0959 +610496,331.68,94.8714 +610497,326.6,92.5297 +610498,327.84,93.3103 +610499,329.08,94.1093 +610500,330.31,94.9262 +610501,325.27,92.4624 +610502,326.5,93.2829 +610503,327.72,94.1223 +610504,328.93,94.9802 +610505,323.95,92.3957 +610506,325.15,93.2557 +610507,326.36,94.1351 +610508,327.55,95.0336 +610509,322.63,92.3297 +610510,323.81,93.2287 +610511,324.99,94.1476 +610512,326.17,95.0863 +610513,321.31,92.2644 +610514,322.47,93.2019 +610515,323.63,94.1599 +610516,324.79,95.1383 +610517,319.99,92.1998 +610518,321.13,93.1752 +610519,322.27,94.1718 +610520,323.41,95.1895 +610521,318.67,92.1359 +610522,319.79,93.1487 +610523,320.91,94.1834 +610524,322.03,95.2399 +610525,317.35,92.0729 +610526,318.45,93.1225 +610527,319.55,94.1947 +610528,320.64,95.2894 +610529,316.03,92.0106 +610530,317.11,93.0965 +610531,318.19,94.2056 +610532,319.26,95.3382 +610533,314.71,91.9491 +610534,315.77,93.0707 +610535,316.82,94.2162 +610536,317.87,95.386 +610537,313.4,91.8885 +610538,314.43,93.0451 +610539,315.46,94.2265 +610540,316.49,95.4329 +610541,312.08,91.8287 +610542,313.09,93.0198 +610543,314.1,94.2364 +610544,315.1,95.4789 +610545,310.77,91.7699 +610546,311.75,92.9948 +610547,312.74,94.2459 +610548,313.71,95.5239 +610549,309.45,91.7119 +610550,310.42,92.97 +610551,311.37,94.2551 +610552,312.32,95.5679 +610553,308.14,91.655 +610554,309.08,92.9455 +610555,310.01,94.2639 +610556,310.93,95.6109 +610557,306.83,91.599 +610558,307.74,92.9213 +610559,308.65,94.2722 +610560,309.54,95.6528 +610561,305.52,91.544 +610562,306.4,92.8974 +610563,307.28,94.2802 +610564,308.15,95.6936 +610565,304.21,91.49 +610566,305.07,92.8738 +610567,305.92,94.2878 +610568,306.76,95.7334 +610569,302.9,91.437 +610570,303.73,92.8504 +610571,304.55,94.2949 +610572,305.37,95.772 +610573,301.59,91.3851 +610574,302.39,92.8274 +610575,303.19,94.3016 +610576,303.97,95.8094 +610577,300.28,91.3343 +610578,301.06,92.8047 +610579,301.82,94.3079 +610580,302.58,95.8457 +610581,298.97,91.2846 +610582,299.72,92.7824 +610583,300.46,94.3138 +610584,301.19,95.8808 +610585,297.67,91.236 +610586,298.38,92.7604 +610587,299.09,94.3192 +610588,299.79,95.9146 +610589,296.36,91.1885 +610590,297.05,92.7387 +610591,297.73,94.3241 +610592,298.39,95.9472 +610593,295.06,91.1422 +610594,295.71,92.7173 +610595,296.36,94.3286 +610596,297,95.9785 +610597,293.75,91.0971 +610598,294.38,92.6964 +610599,294.99,94.3326 +610600,295.6,96.0085 +610601,292.45,91.0531 +610602,293.04,92.6757 +610603,293.63,94.3361 +610604,294.2,96.0373 +610605,291.14,91.0104 +610606,291.71,92.6555 +610607,292.26,94.3392 +610608,292.8,96.0646 +610609,289.84,90.96888 +610610,290.37,92.6356 +610611,290.9,94.3417 +610612,291.41,96.0906 +610613,288.54,90.92861 +610614,289.04,92.6161 +610615,289.53,94.3438 +610616,290.01,96.1153 +610617,287.23,90.8896 +610618,287.7,92.597 +610619,288.16,94.3454 +610620,288.61,96.1385 +610621,285.93,90.85185 +610622,286.37,92.5783 +610623,286.8,94.3464 +610624,287.21,96.1604 +610625,284.63,90.81538 +610626,285.04,92.5599 +610627,285.43,94.347 +610628,285.81,96.1808 +610629,283.33,90.7802 +610630,283.7,92.542 +610631,284.06,94.347 +610632,284.41,96.1998 +610633,282.03,90.74633 +610634,282.37,92.5245 +610635,282.69,94.3465 +610636,283.01,96.2173 +610637,280.73,90.71378 +610638,281.03,92.5073 +610639,281.33,94.3455 +610640,281.6,96.2334 +610641,279.43,90.68255 +610642,279.7,92.4906 +610643,279.96,94.344 +610644,280.2,96.2479 +610645,278.13,90.65266 +610646,278.37,92.4743 +610647,278.59,94.342 +610648,278.8,96.261 +610649,276.83,90.62411 +610650,277.03,92.4584 +610651,277.23,94.3394 +610652,277.4,96.2725 +610653,275.53,90.59692 +610654,275.7,92.4429 +610655,275.86,94.3363 +610656,276,96.2826 +610657,274.23,90.57109 +610658,274.37,92.4279 +610659,274.49,94.3326 +610660,274.6,96.2911 +610661,272.93,90.54663 +610662,273.03,92.4133 +610663,273.12,94.3284 +610664,273.19,96.298 +610665,271.63,90.52355 +610666,271.7,92.3991 +610667,271.76,94.3236 +610668,271.79,96.3034 +610669,270.33,90.50184 +610670,270.37,92.3853 +610671,270.39,94.3183 +610672,270.39,96.3073 +610673,269.03,90.48152 +610674,269.04,92.372 +610675,269.02,94.3125 +610676,268.99,96.3096 +610677,267.73,90.4626 +610678,267.7,92.3591 +610679,267.65,94.3061 +610680,267.58,96.3103 +610681,266.43,90.44507 +610682,266.37,92.3466 +610683,266.29,94.2991 +610684,266.18,96.3094 +610685,265.14,90.42893 +610686,265.04,92.3346 +610687,264.92,94.2916 +610688,264.78,96.3069 +610689,263.84,90.4142 +610690,263.7,92.323 +610691,263.55,94.2835 +610692,263.38,96.3029 +610693,262.54,90.40086 +610694,262.37,92.3118 +610695,262.18,94.2749 +610696,261.97,96.2972 +610697,261.24,90.38893 +610698,261.04,92.3011 +610699,260.82,94.2657 +610700,260.57,96.29 +610701,259.94,90.3784 +610702,259.7,92.2908 +610703,259.45,94.256 +610704,259.17,96.2812 +610705,258.64,90.36927 +610706,258.37,92.281 +610707,258.08,94.2457 +610708,257.77,96.2707 +610709,257.34,90.36154 +610710,257.04,92.2716 +610711,256.72,94.2348 +610712,256.37,96.2587 +610713,256.04,90.35521 +610714,255.71,92.2626 +610715,255.35,94.2234 +610716,254.97,96.2451 +610717,254.74,90.35028 +610718,254.37,92.2541 +610719,253.98,94.2114 +610720,253.56,96.2299 +610721,253.44,90.34673 +610722,253.04,92.246 +610723,252.61,94.1989 +610724,252.16,96.2131 +610725,252.14,90.34458 +610726,251.71,92.2384 +610727,251.25,94.1858 +610728,250.76,96.1947 +610729,250.84,90.34381 +610730,250.37,92.2311 +610731,249.88,94.1722 +610732,249.36,96.1747 +610733,249.54,90.34441 +610734,249.04,92.2243 +610735,248.52,94.158 +610736,247.97,96.1532 +610737,248.24,90.34639 +610738,247.71,92.218 +610739,247.15,94.1433 +610740,246.57,96.13 +610741,246.94,90.34974 +610742,246.37,92.212 +610743,245.78,94.128 +610744,245.17,96.1054 +610745,245.64,90.35444 +610746,245.04,92.2065 +610747,244.42,94.1122 +610748,243.77,96.0791 +610749,244.33,90.36049 +610750,243.7,92.2014 +610751,243.05,94.0959 +610752,242.37,96.0514 +610753,243.03,90.36788 +610754,242.37,92.1968 +610755,241.69,94.079 +610756,240.98,96.022 +610757,241.73,90.3766 +610758,241.04,92.1925 +610759,240.32,94.0616 +610760,239.58,95.9912 +610761,240.42,90.38665 +610762,239.7,92.1887 +610763,238.96,94.0436 +610764,238.18,95.9588 +610765,239.12,90.398 +610766,238.37,92.1853 +610767,237.59,94.0252 +610768,236.79,95.925 +610769,237.81,90.41065 +610770,237.03,92.1822 +610771,236.23,94.0062 +610772,235.39,95.8896 +610773,236.51,90.42459 +610774,235.7,92.1796 +610775,234.86,93.9867 +610776,234,95.8528 +610777,235.2,90.4398 +610778,234.36,92.1774 +610779,233.5,93.9666 +610780,232.61,95.8145 +610781,233.9,90.45627 +610782,233.03,92.1756 +610783,232.14,93.9461 +610784,231.22,95.7748 +610785,232.59,90.47399 +610786,231.69,92.1741 +610787,230.77,93.9251 +610788,229.82,95.7336 +610789,231.28,90.49294 +610790,230.36,92.173 +610791,229.41,93.9035 +610792,228.43,95.6911 +610793,229.97,90.51311 +610794,229.02,92.1724 +610795,228.05,93.8815 +610796,227.04,95.6471 +610797,228.66,90.53448 +610798,227.68,92.172 +610799,226.68,93.859 +610800,225.65,95.6017 +610801,227.35,90.55703 +610802,226.35,92.1721 +610803,225.32,93.836 +610804,224.27,95.555 +610805,226.04,90.58075 +610806,225.01,92.1725 +610807,223.96,93.8126 +610808,222.88,95.507 +610809,224.73,90.60562 +610810,223.68,92.1733 +610811,222.6,93.7887 +610812,221.49,95.4576 +610813,223.42,90.63163 +610814,222.34,92.1744 +610815,221.24,93.7643 +610816,220.11,95.407 +610817,222.1,90.65874 +610818,221,92.1759 +610819,219.87,93.7395 +610820,218.72,95.3551 +610821,220.79,90.68695 +610822,219.66,92.1776 +610823,218.51,93.7142 +610824,217.34,95.3019 +610825,219.47,90.71623 +610826,218.33,92.1798 +610827,217.15,93.6885 +610828,215.95,95.2475 +610829,218.16,90.74657 +610830,216.99,92.1822 +610831,215.79,93.6623 +610832,214.57,95.1919 +610833,216.84,90.77793 +610834,215.65,92.185 +610835,214.43,93.6357 +610836,213.19,95.1351 +610837,215.52,90.81031 +610838,214.31,92.188 +610839,213.07,93.6088 +610840,211.81,95.0771 +610841,214.2,90.84368 +610842,212.97,92.1914 +610843,211.71,93.5814 +610844,210.43,95.018 +610845,212.89,90.87802 +610846,211.63,92.1951 +610847,210.36,93.5536 +610848,209.05,94.9578 +610849,211.56,90.9133 +610850,210.29,92.199 +610851,209,93.5254 +610852,207.68,94.8966 +610853,210.24,90.9495 +610854,208.95,92.2032 +610855,207.64,93.4968 +610856,206.3,94.8343 +610857,208.92,90.98659 +610858,207.61,92.2077 +610859,206.28,93.4679 +610860,204.93,94.7709 +610861,207.6,91.0246 +610862,206.27,92.2124 +610863,204.92,93.4386 +610864,203.55,94.7066 +610865,206.27,91.0634 +610866,204.93,92.2174 +610867,203.57,93.4089 +610868,202.18,94.6413 +610869,204.95,91.103 +610870,203.59,92.2227 +610871,202.21,93.379 +610872,200.81,94.5751 +610873,203.62,91.1434 +610874,202.25,92.2281 +610875,200.86,93.3486 +610876,199.44,94.5079 +610877,202.29,91.1847 +610878,200.91,92.2338 +610879,199.5,93.318 +610880,198.07,94.4399 +610881,200.96,91.2266 +610882,199.56,92.2397 +610883,198.14,93.287 +610884,196.7,94.371 +610885,199.63,91.2693 +610886,198.22,92.2459 +610887,196.79,93.2557 +610888,195.34,94.3014 +610889,198.3,91.3126 +610890,196.88,92.2522 +610891,195.44,93.2241 +610892,193.97,94.2309 +610893,196.97,91.3567 +610894,195.53,92.2587 +610895,194.08,93.1922 +610896,192.61,94.1597 +610897,195.64,91.4013 +610898,194.19,92.2653 +610899,192.73,93.1601 +610900,191.24,94.0877 +610901,194.3,91.4466 +610902,192.85,92.2722 +610903,191.37,93.1277 +610904,189.88,94.0151 +610905,192.97,91.4924 +610906,191.5,92.2792 +610907,190.02,93.095 +610908,188.52,93.9418 +610909,191.63,91.5388 +610910,190.16,92.2863 +610911,188.67,93.0621 +610912,187.16,93.8679 +610913,190.29,91.5857 +610914,188.81,92.2936 +610915,187.32,93.029 +610916,185.8,93.7934 +610917,188.95,91.6331 +610918,187.47,92.3011 +610919,185.97,92.9956 +610920,184.45,93.7183 +610921,187.61,91.681 +610922,186.12,92.3086 +610923,184.62,92.962 +610924,183.09,93.6427 +610925,186.27,91.7293 +610926,184.77,92.3162 +610927,183.26,92.9282 +610928,181.74,93.5666 +610929,184.93,91.778 +610930,183.43,92.324 +610931,181.91,92.8942 +610932,180.38,93.4901 +610933,183.58,91.827 +610934,182.08,92.3318 +610935,180.56,92.8601 +610936,179.03,93.4131 +610937,182.24,91.8765 +610938,180.73,92.3397 +610939,179.22,92.8257 +610940,177.68,93.3357 +610941,180.89,91.9262 +610942,179.39,92.3477 +610943,177.87,92.7913 +610944,176.33,93.258 +610945,179.54,91.9762 +610946,178.04,92.3557 +610947,176.52,92.7566 +610948,174.98,93.18 +610949,178.19,92.0264 +610950,176.69,92.3638 +610951,175.17,92.7218 +610952,173.64,93.1016 +610953,176.84,92.0769 +610954,175.34,92.3719 +610955,173.82,92.6869 +610956,172.29,93.023 +610957,175.49,92.1275 +610958,173.99,92.38 +610959,172.48,92.6519 +610960,170.95,92.9442 +610961,174.14,92.1783 +610962,172.64,92.3882 +610963,171.13,92.6168 +610964,169.6,92.8652 +610965,172.79,92.2292 +610966,171.29,92.3963 +610967,169.78,92.5816 +610968,168.26,92.7861 +610969,171.43,92.2802 +610970,169.94,92.4044 +610971,168.44,92.5463 +610972,166.92,92.7068 +610973,170.08,92.3313 +610974,168.59,92.4125 +610975,167.09,92.511 +610976,165.58,92.6275 +610977,168.72,92.3824 +610978,167.24,92.4206 +610979,165.75,92.4756 +610980,164.24,92.5481 +610981,167.36,92.4334 +610982,165.89,92.4287 +610983,164.4,92.4401 +610984,162.91,92.4686 +610985,166,92.4845 +610986,164.54,92.4366 +610987,163.06,92.4046 +610988,161.57,92.3892 +610989,164.64,92.5354 +610990,163.18,92.4446 +610991,161.71,92.3691 +610992,160.24,92.3099 +610993,163.28,92.5863 +610994,161.83,92.4524 +610995,160.37,92.3336 +610996,158.9,92.2306 +610997,161.91,92.637 +610998,160.48,92.4602 +610999,159.03,92.298 +611000,157.57,92.1515 +611001,160.55,92.6876 +611002,159.12,92.4678 +611003,157.69,92.2625 +611004,156.24,92.0725 +611005,159.18,92.7379 +611006,157.77,92.4754 +611007,156.34,92.227 +611008,154.91,91.9937 +611009,157.82,92.7881 +611010,156.42,92.4828 +611011,155,92.1916 +611012,153.58,91.9151 +611013,156.45,92.8379 +611014,155.06,92.4902 +611015,153.66,92.1561 +611016,152.25,91.8367 +611017,155.08,92.8875 +611018,153.71,92.4973 +611019,152.32,92.1208 +611020,150.93,91.7587 +611021,153.71,92.9367 +611022,152.35,92.5044 +611023,150.98,92.0855 +611024,149.6,91.681 +611025,152.34,92.9856 +611026,151,92.5112 +611027,149.64,92.0502 +611028,148.28,91.6036 +611029,150.97,93.0341 +611030,149.64,92.5179 +611031,148.3,92.0151 +611032,146.96,91.5266 +611033,149.59,93.0821 +611034,148.28,92.5244 +611035,146.96,91.9801 +611036,145.63,91.45 +611037,148.22,93.1297 +611038,146.93,92.5307 +611039,145.62,91.9451 +611040,144.31,91.3738 +611041,146.84,93.1769 +611042,145.57,92.5369 +611043,144.29,91.9103 +611044,142.99,91.2982 +611045,145.47,93.2235 +611046,144.21,92.5428 +611047,142.95,91.8756 +611048,141.68,91.223 +611049,144.09,93.2695 +611050,142.86,92.5484 +611051,141.61,91.8411 +611052,140.36,91.1484 +611053,142.71,93.315 +611054,141.5,92.5539 +611055,140.27,91.8067 +611056,139.04,91.0743 +611057,141.33,93.3598 +611058,140.14,92.5591 +611059,138.94,91.7724 +611060,137.73,91.0008 +611061,139.95,93.4041 +611062,138.78,92.564 +611063,137.6,91.7384 +611064,136.41,90.928 +611065,138.57,93.4476 +611066,137.42,92.5687 +611067,136.26,91.7045 +611068,135.1,90.85581 +611069,137.19,93.4905 +611070,136.06,92.5731 +611071,134.93,91.6708 +611072,133.79,90.7843 +611073,135.8,93.5326 +611074,134.7,92.5773 +611075,133.59,91.6373 +611076,132.47,90.71351 +611077,134.42,93.574 +611078,133.34,92.5811 +611079,132.26,91.604 +611080,131.16,90.64345 +611081,133.03,93.6146 +611082,131.98,92.5847 +611083,130.92,91.5709 +611084,129.85,90.57416 +611085,131.65,93.6543 +611086,130.62,92.5879 +611087,129.59,91.5381 +611088,128.55,90.50566 +611089,130.26,93.6932 +611090,129.26,92.5908 +611091,128.26,91.5055 +611092,127.24,90.43797 +611093,128.87,93.7313 +611094,127.9,92.5934 +611095,126.92,91.4731 +611096,125.93,90.37113 +611097,127.48,93.7685 +611098,126.54,92.5956 +611099,125.59,91.441 +611100,124.62,90.30516 +611101,126.09,93.8047 +611102,125.18,92.5975 +611103,124.26,91.4092 +611104,123.32,90.24009 +611105,124.7,93.84 +611106,123.82,92.5991 +611107,122.92,91.3776 +611108,122.01,90.17593 +611109,123.31,93.8743 +611110,122.46,92.6003 +611111,121.59,91.3463 +611112,120.71,90.11271 +611113,121.92,93.9076 +611114,121.1,92.6011 +611115,120.26,91.3153 +611116,119.41,90.050458 +611117,120.53,93.9399 +611118,119.73,92.6015 +611119,118.93,91.2846 +611120,118.11,89.989193 +611121,119.13,93.9711 +611122,118.37,92.6016 +611123,117.59,91.2542 +611124,116.8,89.928937 +611125,117.74,94.0013 +611126,117.01,92.6012 +611127,116.26,91.2241 +611128,115.5,89.86971 +611129,116.34,94.0303 +611130,115.65,92.6005 +611131,114.93,91.1943 +611132,114.2,89.81154 +611133,114.95,94.0582 +611134,114.28,92.5993 +611135,113.6,91.1648 +611136,112.9,89.75444 +611137,113.55,94.085 +611138,112.92,92.5977 +611139,112.27,91.1357 +611140,111.61,89.69843 +611141,112.16,94.1106 +611142,111.56,92.5957 +611143,110.94,91.1069 +611144,110.31,89.64353 +611145,110.76,94.135 +611146,110.19,92.5933 +611147,109.61,91.0785 +611148,109.01,89.58977 +611149,109.36,94.1583 +611150,108.83,92.5905 +611151,108.28,91.0504 +611152,107.71,89.53715 +611153,107.96,94.1802 +611154,107.47,92.5872 +611155,106.95,91.0227 +611156,106.42,89.48569 +611157,106.57,94.201 +611158,106.1,92.5834 +611159,105.62,90.9953 +611160,105.12,89.43542 +611161,105.17,94.2204 +611162,104.74,92.5792 +611163,104.29,90.96831 +611164,103.82,89.38634 +611165,103.77,94.2386 +611166,103.38,92.5745 +611167,102.96,90.94169 +611168,102.53,89.33848 +611169,102.37,94.2555 +611170,102.01,92.5694 +611171,101.63,90.91545 +611172,101.23,89.29185 +611173,100.97,94.271 +611174,100.65,92.5638 +611175,100.3,90.88959 +611176,99.939,89.24645 +611177,99.569,94.2852 +611178,99.284,92.5577 +611179,98.975,90.86413 +611180,98.645,89.20232 +611181,98.169,94.2981 +611182,97.919,92.5512 +611183,97.646,90.83906 +611184,97.351,89.15945 +611185,96.768,94.3095 +611186,96.555,92.5441 +611187,96.318,90.81439 +611188,96.058,89.11786 +611189,95.367,94.3196 +611190,95.191,92.5366 +611191,94.989,90.79013 +611192,94.764,89.07757 +611193,93.966,94.3283 +611194,93.827,92.5286 +611195,93.661,90.76627 +611196,93.471,89.03858 +611197,92.565,94.3356 +611198,92.462,92.5201 +611199,92.333,90.74283 +611200,92.179,89.0009 +611201,91.163,94.3414 +611202,91.098,92.511 +611203,91.004,90.7198 +611204,90.886,88.9645 +611205,89.762,94.3459 +611206,89.733,92.5015 +611207,89.676,90.69719 +611208,89.594,88.9295 +611209,88.36,94.3488 +611210,88.369,92.4915 +611211,88.348,90.675 +611212,88.302,88.8958 +611213,86.959,94.3503 +611214,87.005,92.4809 +611215,87.02,90.65323 +611216,87.01,88.8635 +611217,85.557,94.3503 +611218,85.64,92.4699 +611219,85.693,90.63189 +611220,85.718,88.8325 +611221,84.156,94.3489 +611222,84.276,92.4583 +611223,84.365,90.61098 +611224,84.426,88.8029 +611225,82.754,94.346 +611226,82.912,92.4462 +611227,83.037,90.59051 +611228,83.134,88.7746 +611229,81.353,94.3416 +611230,81.547,92.4336 +611231,81.709,90.57046 +611232,81.842,88.7477 +611233,79.952,94.3356 +611234,80.183,92.4205 +611235,80.381,90.55085 +611236,80.55,88.7222 +611237,78.551,94.3282 +611238,78.819,92.4068 +611239,79.053,90.53167 +611240,79.258,88.6981 +611241,77.15,94.3193 +611242,77.455,92.3926 +611243,77.726,90.51294 +611244,77.966,88.6753 +611245,75.749,94.3088 +611246,76.091,92.3779 +611247,76.398,90.49464 +611248,76.674,88.6539 +611249,74.348,94.2969 +611250,74.727,92.3627 +611251,75.07,90.47678 +611252,75.382,88.6339 +611253,72.948,94.2834 +611254,73.364,92.3469 +611255,73.742,90.45935 +611256,74.089,88.6153 +611257,71.548,94.2684 +611258,72,92.3306 +611259,72.414,90.44237 +611260,72.796,88.5981 +611261,70.149,94.2518 +611262,70.636,92.3138 +611263,71.086,90.42583 +611264,71.503,88.5822 +611265,68.749,94.2338 +611266,69.273,92.2965 +611267,69.758,90.40972 +611268,70.21,88.5677 +611269,67.351,94.2142 +611270,67.91,92.2786 +611271,68.43,90.39406 +611272,68.917,88.5546 +611273,65.952,94.1931 +611274,66.547,92.2603 +611275,67.102,90.37883 +611276,67.623,88.5429 +611277,64.554,94.1705 +611278,65.184,92.2414 +611279,65.774,90.36404 +611280,66.329,88.5325 +611281,63.157,94.1464 +611282,63.821,92.2219 +611283,64.445,90.34968 +611284,65.035,88.5235 +611285,61.76,94.1208 +611286,62.459,92.202 +611287,63.117,90.33576 +611288,63.74,88.5159 +611289,60.364,94.0936 +611290,61.097,92.1815 +611291,61.788,90.32227 +611292,62.445,88.5096 +611293,58.968,94.065 +611294,59.735,92.1605 +611295,60.46,90.3092 +611296,61.149,88.5047 +611297,57.572,94.0349 +611298,58.373,92.139 +611299,59.131,90.29657 +611300,59.853,88.5011 +611301,56.178,94.0033 +611302,57.011,92.117 +611303,57.802,90.28436 +611304,58.556,88.4988 +611305,54.784,93.9702 +611306,55.65,92.0945 +611307,56.473,90.27257 +611308,57.259,88.4979 +611309,53.391,93.9356 +611310,54.289,92.0715 +611311,55.143,90.26121 +611312,55.961,88.4983 +611313,51.998,93.8996 +611314,52.928,92.048 +611315,53.814,90.25025 +611316,54.663,88.4999 +611317,50.606,93.8621 +611318,51.567,92.024 +611319,52.484,90.23972 +611320,53.364,88.5029 +611321,49.215,93.8232 +611322,50.207,91.9994 +611323,51.154,90.22959 +611324,52.065,88.5072 +611325,47.825,93.7829 +611326,48.846,91.9744 +611327,49.824,90.21986 +611328,50.765,88.5127 +611329,46.435,93.7412 +611330,47.487,91.9489 +611331,48.494,90.21054 +611332,49.464,88.5195 +611333,45.046,93.698 +611334,46.127,91.923 +611335,47.163,90.20162 +611336,48.162,88.5275 +611337,43.659,93.6535 +611338,44.768,91.8965 +611339,45.833,90.19309 +611340,46.86,88.5368 +611341,42.272,93.6076 +611342,43.409,91.8696 +611343,44.502,90.18494 +611344,45.557,88.5473 +611345,40.886,93.5604 +611346,42.05,91.8422 +611347,43.171,90.17718 +611348,44.254,88.559 +611349,39.501,93.5118 +611350,40.692,91.8144 +611351,41.839,90.1698 +611352,42.949,88.5718 +611353,38.116,93.4619 +611354,39.334,91.7861 +611355,40.508,90.16279 +611356,41.644,88.5859 +611357,36.733,93.4107 +611358,37.977,91.7573 +611359,39.176,90.15615 +611360,40.338,88.6011 +611361,35.351,93.3582 +611362,36.619,91.7281 +611363,37.844,90.14987 +611364,39.031,88.6174 +611365,33.97,93.3045 +611366,35.262,91.6985 +611367,36.511,90.14394 +611368,37.723,88.6349 +611369,32.59,93.2495 +611370,33.906,91.6684 +611371,35.179,90.13836 +611372,36.414,88.6535 +611373,31.21,93.1933 +611374,32.55,91.638 +611375,33.846,90.13313 +611376,35.104,88.6731 +611377,29.832,93.1359 +611378,31.194,91.6071 +611379,32.512,90.12823 +611380,33.794,88.6938 +611381,28.455,93.0773 +611382,29.839,91.5757 +611383,31.179,90.12366 +611384,32.482,88.7156 +611385,27.079,93.0175 +611386,28.484,91.544 +611387,29.845,90.11942 +611388,31.17,88.7384 +611389,25.705,92.9567 +611390,27.129,91.5119 +611391,28.511,90.11549 +611392,29.856,88.7621 +611393,24.331,92.8947 +611394,25.775,91.4794 +611395,27.176,90.11187 +611396,28.542,88.7869 +611397,22.959,92.8316 +611398,24.421,91.4466 +611399,25.841,90.10855 +611400,27.226,88.8126 +611401,21.587,92.7675 +611402,23.067,91.4133 +611403,24.506,90.10553 +611404,25.909,88.8393 +611405,20.217,92.7023 +611406,21.714,91.3797 +611407,23.171,90.10279 +611408,24.592,88.8669 +611409,18.848,92.6361 +611410,20.362,91.3457 +611411,21.835,90.10033 +611412,23.273,88.8953 +611413,17.481,92.569 +611414,19.01,91.3114 +611415,20.499,90.098138 +611416,21.953,88.9247 +611417,16.114,92.5009 +611418,17.658,91.2768 +611419,19.162,90.096209 +611420,20.632,88.9548 +611421,14.749,92.4318 +611422,16.306,91.2418 +611423,17.825,90.094535 +611424,19.31,88.9858 +611425,13.385,92.3619 +611426,14.956,91.2065 +611427,16.488,90.093105 +611428,17.987,89.01761 +611429,12.022,92.2911 +611430,13.605,91.1709 +611431,15.151,90.091912 +611432,16.663,89.05017 +611433,10.661,92.2194 +611434,12.255,91.135 +611435,13.813,90.090947 +611436,15.337,89.08347 +611437,9.3003,92.147 +611438,10.906,91.0988 +611439,12.474,90.090201 +611440,14.011,89.11749 +611441,7.9414,92.0737 +611442,9.5565,91.0624 +611443,11.136,90.089665 +611444,12.683,89.1522 +611445,6.5837,91.9997 +611446,8.2078,91.0256 +611447,9.7968,90.089331 +611448,11.354,89.18757 +611449,5.2274,91.925 +611450,6.8596,90.9886 +611451,8.4574,90.089187 +611452,10.024,89.22358 +611453,3.8723,91.8496 +611454,5.5119,90.95134 +611455,7.1176,90.089227 +611456,8.6926,89.2602 +611457,2.5186,91.7735 +611458,4.1646,90.91384 +611459,5.7775,90.089439 +611460,7.36,89.2974 +611461,1.1661,91.6968 +611462,2.8178,90.8761 +611463,4.4369,90.089814 +611464,6.0262,89.33515 +611465,359.82,91.6195 +611466,1.4714,90.83814 +611467,3.096,90.090344 +611468,4.6912,89.37343 +611469,358.47,91.5417 +611470,0.12556,90.79997 +611471,1.7547,90.091018 +611472,3.3549,89.41221 +611473,357.12,91.4633 +611474,358.78,90.7616 +611475,0.41301,90.091825 +611476,2.0174,89.45146 +611477,355.77,91.3844 +611478,357.44,90.72304 +611479,359.07,90.092758 +611480,0.67868,89.49115 +611481,354.42,91.305 +611482,356.09,90.68429 +611483,357.73,90.093805 +611484,359.34,89.53124 +611485,353.08,91.2252 +611486,354.75,90.64538 +611487,356.39,90.094956 +611488,358,89.57172 +611489,351.74,91.145 +611490,353.4,90.60631 +611491,355.04,90.096201 +611492,356.65,89.61255 +611493,350.39,91.0644 +611494,352.06,90.56709 +611495,353.7,90.097531 +611496,355.31,89.6537 +611497,349.05,90.98347 +611498,350.72,90.52773 +611499,352.35,90.098935 +611500,353.97,89.69514 +611501,347.71,90.90225 +611502,349.38,90.48825 +611503,351.01,90.1004 +611504,352.62,89.73685 +611505,346.38,90.82075 +611506,348.03,90.44865 +611507,349.67,90.10192 +611508,351.27,89.77878 +611509,345.04,90.73902 +611510,346.69,90.40894 +611511,348.32,90.10349 +611512,349.92,89.82092 +611513,343.71,90.65708 +611514,345.35,90.36914 +611515,346.97,90.10508 +611516,348.57,89.86323 +611517,342.37,90.57497 +611518,344.01,90.32926 +611519,345.63,90.1067 +611520,347.22,89.905676 +611521,341.04,90.49273 +611522,342.67,90.2893 +611523,344.28,90.10833 +611524,345.87,89.948233 +611525,339.71,90.41038 +611526,341.33,90.24929 +611527,342.94,90.10996 +611528,344.52,89.9908683 +611529,338.38,90.32796 +611530,339.99,90.20922 +611531,341.59,90.11159 +611532,343.16,90.033551 +611533,337.05,90.2455 +611534,338.66,90.16912 +611535,340.24,90.11319 +611536,341.8,90.076252 +611537,335.72,90.16304 +611538,337.32,90.12899 +611539,338.89,90.11476 +611540,340.45,90.11894 +611541,334.4,90.080605 +611542,335.98,90.088837 +611543,337.54,90.1163 +611544,339.09,90.16158 +611545,333.07,89.9982359 +611546,334.64,90.04868 +611547,336.2,90.11778 +611548,337.73,90.20415 +611549,331.75,89.915963 +611550,333.31,90.0085291 +611551,334.85,90.1192 +611552,336.37,90.2466 +611553,330.43,89.83382 +611554,331.97,89.968393 +611555,333.5,90.12055 +611556,335,90.28893 +611557,329.1,89.75184 +611558,330.63,89.928284 +611559,332.15,90.12181 +611560,333.64,90.33108 +611561,327.78,89.67005 +611562,329.3,89.88821 +611563,330.8,90.12299 +611564,332.28,90.37304 +611565,326.47,89.58849 +611566,327.96,89.84819 +611567,329.45,90.12406 +611568,330.91,90.41476 +611569,325.15,89.50718 +611570,326.63,89.80822 +611571,328.1,90.12501 +611572,329.54,90.45623 +611573,323.83,89.42617 +611574,325.3,89.76833 +611575,326.74,90.12585 +611576,328.17,90.49741 +611577,322.52,89.34548 +611578,323.96,89.72851 +611579,325.39,90.12655 +611580,326.8,90.53826 +611581,321.2,89.26515 +611582,322.63,89.68879 +611583,324.04,90.1271 +611584,325.43,90.57877 +611585,319.89,89.1852 +611586,321.3,89.64916 +611587,322.69,90.1275 +611588,324.06,90.61889 +611589,318.58,89.10567 +611590,319.97,89.60965 +611591,321.34,90.12774 +611592,322.69,90.6586 +611593,317.27,89.02659 +611594,318.63,89.57026 +611595,319.98,90.1278 +611596,321.31,90.69787 +611597,315.96,88.948 +611598,317.3,89.531 +611599,318.63,90.12768 +611600,319.94,90.73668 +611601,314.65,88.8699 +611602,315.97,89.49189 +611603,317.28,90.12736 +611604,318.56,90.77498 +611605,313.34,88.7923 +611606,314.64,89.45292 +611607,315.92,90.12685 +611608,317.19,90.81275 +611609,312.04,88.7153 +611610,313.31,89.41412 +611611,314.57,90.12611 +611612,315.81,90.84997 +611613,310.73,88.6389 +611614,311.98,89.37549 +611615,313.21,90.12516 +611616,314.43,90.8866 +611617,309.43,88.5632 +611618,310.65,89.33704 +611619,311.86,90.12397 +611620,313.05,90.92262 +611621,308.13,88.488 +611622,309.32,89.29878 +611623,310.5,90.12254 +611624,311.67,90.95799 +611625,306.82,88.4136 +611626,307.99,89.26072 +611627,309.15,90.12086 +611628,310.28,90.99269 +611629,305.52,88.3399 +611630,306.66,89.22288 +611631,307.79,90.11892 +611632,308.9,91.0267 +611633,304.22,88.2669 +611634,305.34,89.18525 +611635,306.44,90.11672 +611636,307.52,91.06 +611637,302.92,88.1947 +611638,304.01,89.14785 +611639,305.08,90.11423 +611640,306.13,91.0925 +611641,301.62,88.1232 +611642,302.68,89.11069 +611643,303.72,90.11146 +611644,304.75,91.1243 +611645,300.33,88.0526 +611646,301.35,89.07377 +611647,302.37,90.10839 +611648,303.36,91.1552 +611649,299.03,87.9828 +611650,300.03,89.03711 +611651,301.01,90.10502 +611652,301.97,91.1853 +611653,297.73,87.9139 +611654,298.7,89.00071 +611655,299.65,90.10134 +611656,300.58,91.2146 +611657,296.44,87.8458 +611658,297.38,88.9646 +611659,298.29,90.097334 +611660,299.19,91.2429 +611661,295.15,87.7787 +611662,296.05,88.9287 +611663,296.94,90.093003 +611664,297.8,91.2704 +611665,293.85,87.7125 +611666,294.72,88.8932 +611667,295.58,90.088336 +611668,296.41,91.297 +611669,292.56,87.6473 +611670,293.4,88.8579 +611671,294.22,90.083325 +611672,295.02,91.3225 +611673,291.27,87.583 +611674,292.07,88.8229 +611675,292.86,90.077963 +611676,293.63,91.3472 +611677,289.98,87.5198 +611678,290.75,88.7883 +611679,291.5,90.072242 +611680,292.24,91.3708 +611681,288.69,87.4576 +611682,289.42,88.7539 +611683,290.14,90.066156 +611684,290.84,91.3934 +611685,287.4,87.3964 +611686,288.1,88.7199 +611687,288.79,90.059696 +611688,289.45,91.4149 +611689,286.11,87.3362 +611690,286.78,88.6863 +611691,287.43,90.052857 +611692,288.06,91.4354 +611693,284.82,87.2772 +611694,285.45,88.6529 +611695,286.07,90.045632 +611696,286.66,91.4548 +611697,283.53,87.2193 +611698,284.13,88.6199 +611699,284.71,90.038013 +611700,285.26,91.473 +611701,282.24,87.1624 +611702,282.81,88.5873 +611703,283.35,90.029996 +611704,283.87,91.4902 +611705,280.95,87.1067 +611706,281.48,88.555 +611707,281.99,90.021573 +611708,282.47,91.5062 +611709,279.67,87.0522 +611710,280.16,88.523 +611711,280.63,90.012739 +611712,281.07,91.5211 +611713,278.38,86.9988 +611714,278.84,88.4915 +611715,279.27,90.003488 +611716,279.68,91.5347 +611717,277.1,86.9466 +611718,277.51,88.4603 +611719,277.91,89.9938147 +611720,278.28,91.5472 +611721,275.81,86.8956 +611722,276.19,88.4295 +611723,276.55,89.983714 +611724,276.88,91.5584 +611725,274.53,86.8459 +611726,274.87,88.3991 +611727,275.19,89.97318 +611728,275.48,91.5684 +611729,273.24,86.7973 +611730,273.55,88.369 +611731,273.83,89.962208 +611732,274.08,91.5772 +611733,271.96,86.75 +611734,272.23,88.3394 +611735,272.47,89.950794 +611736,272.68,91.5847 +611737,270.67,86.7039 +611738,270.9,88.3102 +611739,271.11,89.938933 +611740,271.29,91.5909 +611741,269.39,86.6591 +611742,269.58,88.2813 +611743,269.75,89.926621 +611744,269.89,91.5958 +611745,268.1,86.6156 +611746,268.26,88.2529 +611747,268.39,89.913854 +611748,268.49,91.5994 +611749,266.82,86.5734 +611750,266.94,88.2249 +611751,267.03,89.900628 +611752,267.09,91.6017 +611753,265.54,86.5324 +611754,265.62,88.1973 +611755,265.67,89.88694 +611756,265.69,91.6026 +611757,264.25,86.4928 +611758,264.3,88.1701 +611759,264.31,89.87279 +611760,264.29,91.6022 +611761,262.97,86.4544 +611762,262.97,88.1433 +611763,262.95,89.85816 +611764,262.89,91.6005 +611765,261.69,86.4174 +611766,261.65,88.117 +611767,261.59,89.84307 +611768,261.49,91.5974 +611769,260.41,86.3817 +611770,260.33,88.091 +611771,260.23,89.8275 +611772,260.09,91.5929 +611773,259.12,86.3474 +611774,259.01,88.0655 +611775,258.87,89.81145 +611776,258.69,91.587 +611777,257.84,86.3143 +611778,257.69,88.0405 +611779,257.51,89.79493 +611780,257.29,91.5798 +611781,256.56,86.2826 +611782,256.37,88.0158 +611783,256.15,89.77792 +611784,255.89,91.5711 +611785,255.27,86.2523 +611786,255.05,87.9916 +611787,254.79,89.76043 +611788,254.49,91.5611 +611789,253.99,86.2233 +611790,253.73,87.9679 +611791,253.43,89.74246 +611792,253.09,91.5496 +611793,252.71,86.1957 +611794,252.41,87.9445 +611795,252.07,89.724 +611796,251.69,91.5367 +611797,251.42,86.1694 +611798,251.08,87.9217 +611799,250.71,89.70506 +611800,250.29,91.5224 +611801,250.14,86.1444 +611802,249.76,87.8992 +611803,249.35,89.68563 +611804,248.89,91.5067 +611805,248.86,86.1208 +611806,248.44,87.8772 +611807,247.99,89.66571 +611808,247.49,91.4896 +611809,247.57,86.0986 +611810,247.12,87.8556 +611811,246.63,89.64531 +611812,246.09,91.471 +611813,246.29,86.0777 +611814,245.8,87.8345 +611815,245.27,89.62441 +611816,244.7,91.451 +611817,245,86.0582 +611818,244.48,87.8137 +611819,243.91,89.60303 +611820,243.3,91.4296 +611821,243.72,86.04 +611822,243.16,87.7935 +611823,242.55,89.58116 +611824,241.9,91.4067 +611825,242.43,86.0231 +611826,241.83,87.7736 +611827,241.19,89.55881 +611828,240.51,91.3824 +611829,241.15,86.0076 +611830,240.51,87.7543 +611831,239.84,89.53597 +611832,239.11,91.3567 +611833,239.86,85.9935 +611834,239.19,87.7353 +611835,238.48,89.51264 +611836,237.72,91.3296 +611837,238.58,85.9806 +611838,237.87,87.7168 +611839,237.12,89.48884 +611840,236.32,91.301 +611841,237.29,85.9691 +611842,236.55,87.6987 +611843,235.76,89.46455 +611844,234.93,91.271 +611845,236,85.9589 +611846,235.22,87.681 +611847,234.4,89.43978 +611848,233.53,91.2397 +611849,234.71,85.9501 +611850,233.9,87.6638 +611851,233.05,89.41454 +611852,232.14,91.2069 +611853,233.43,85.9425 +611854,232.58,87.6469 +611855,231.69,89.38882 +611856,230.75,91.1727 +611857,232.14,85.9362 +611858,231.26,87.6306 +611859,230.33,89.36263 +611860,229.36,91.1371 +611861,230.85,85.9312 +611862,229.93,87.6146 +611863,228.98,89.33597 +611864,227.97,91.1001 +611865,229.56,85.9275 +611866,228.61,87.599 +611867,227.62,89.30885 +611868,226.58,91.0618 +611869,228.26,85.9251 +611870,227.29,87.5839 +611871,226.26,89.28126 +611872,225.19,91.0221 +611873,226.97,85.9239 +611874,225.96,87.5691 +611875,224.91,89.25321 +611876,223.8,90.98102 +611877,225.68,85.924 +611878,224.64,87.5548 +611879,223.55,89.22471 +611880,222.41,90.93861 +611881,224.39,85.9253 +611882,223.32,87.5409 +611883,222.2,89.19576 +611884,221.03,90.89486 +611885,223.09,85.9278 +611886,221.99,87.5274 +611887,220.84,89.16636 +611888,219.64,90.84979 +611889,221.8,85.9315 +611890,220.67,87.5142 +611891,219.49,89.13651 +611892,218.26,90.80341 +611893,220.5,85.9364 +611894,219.34,87.5015 +611895,218.13,89.10624 +611896,216.87,90.75574 +611897,219.21,85.9425 +611898,218.02,87.4891 +611899,216.78,89.07552 +611900,215.49,90.70678 +611901,217.91,85.9497 +611902,216.69,87.4771 +611903,215.43,89.04438 +611904,214.11,90.65656 +611905,216.61,85.9581 +611906,215.37,87.4655 +611907,214.07,89.01282 +611908,212.73,90.60509 +611909,215.31,85.9676 +611910,214.04,87.4543 +611911,212.72,88.9808 +611912,211.35,90.55238 +611913,214.01,85.9783 +611914,212.72,87.4434 +611915,211.37,88.9485 +611916,209.97,90.49846 +611917,212.71,85.99 +611918,211.39,87.4329 +611919,210.02,88.9157 +611920,208.59,90.44334 +611921,211.41,86.0028 +611922,210.06,87.4227 +611923,208.67,88.8825 +611924,207.21,90.38703 +611925,210.11,86.0167 +611926,208.74,87.4129 +611927,207.32,88.8489 +611928,205.84,90.32957 +611929,208.8,86.0316 +611930,207.41,87.4035 +611931,205.96,88.8149 +611932,204.46,90.27096 +611933,207.5,86.0475 +611934,206.08,87.3943 +611935,204.61,88.7806 +611936,203.09,90.21123 +611937,206.19,86.0644 +611938,204.75,87.3855 +611939,203.26,88.7458 +611940,201.72,90.1504 +611941,204.89,86.0824 +611942,203.42,87.377 +611943,201.91,88.7107 +611944,200.35,90.088486 +611945,203.58,86.1012 +611946,202.1,87.3688 +611947,200.57,88.6753 +611948,198.98,90.025518 +611949,202.27,86.121 +611950,200.77,87.3609 +611951,199.22,88.6395 +611952,197.61,89.961515 +611953,200.96,86.1417 +611954,199.44,87.3533 +611955,197.87,88.6034 +611956,196.25,89.8965 +611957,199.65,86.1634 +611958,198.11,87.346 +611959,196.52,88.5669 +611960,194.88,89.8305 +611961,198.34,86.1858 +611962,196.78,87.339 +611963,195.17,88.5301 +611964,193.52,89.76353 +611965,197.02,86.2092 +611966,195.45,87.3323 +611967,193.83,88.493 +611968,192.15,89.69563 +611969,195.71,86.2333 +611970,194.12,87.3258 +611971,192.48,88.4555 +611972,190.79,89.62681 +611973,194.39,86.2583 +611974,192.79,87.3196 +611975,191.14,88.4178 +611976,189.43,89.5571 +611977,193.07,86.284 +611978,191.46,87.3137 +611979,189.79,88.3798 +611980,188.07,89.48653 +611981,191.76,86.3105 +611982,190.12,87.308 +611983,188.44,88.3414 +611984,186.71,89.41513 +611985,190.44,86.3377 +611986,188.79,87.3025 +611987,187.1,88.3029 +611988,185.36,89.34292 +611989,189.12,86.3656 +611990,187.46,87.2972 +611991,185.76,88.264 +611992,184,89.26993 +611993,187.79,86.3942 +611994,186.13,87.2922 +611995,184.41,88.2249 +611996,182.65,89.19619 +611997,186.47,86.4234 +611998,184.79,87.2874 +611999,183.07,88.1855 +612000,181.3,89.12172 +612001,185.15,86.4533 +612002,183.46,87.2827 +612003,181.73,88.1459 +612004,179.95,89.04656 +612005,183.82,86.4837 +612006,182.12,87.2783 +612007,180.39,88.1061 +612008,178.6,88.9707 +612009,182.49,86.5147 +612010,180.79,87.274 +612011,179.04,88.066 +612012,177.25,88.8943 +612013,181.16,86.5463 +612014,179.45,87.27 +612015,177.7,88.0258 +612016,175.9,88.8172 +612017,179.84,86.5783 +612018,178.12,87.266 +612019,176.36,87.9853 +612020,174.56,88.7395 +612021,178.5,86.6109 +612022,176.78,87.2623 +612023,175.02,87.9447 +612024,173.21,88.6613 +612025,177.17,86.6439 +612026,175.45,87.2586 +612027,173.68,87.9038 +612028,171.87,88.5826 +612029,175.84,86.6774 +612030,174.11,87.2552 +612031,172.34,87.8628 +612032,170.53,88.5034 +612033,174.5,86.7112 +612034,172.77,87.2518 +612035,171,87.8217 +612036,169.19,88.4238 +612037,173.17,86.7454 +612038,171.44,87.2486 +612039,169.67,87.7803 +612040,167.85,88.3437 +612041,171.83,86.78 +612042,170.1,87.2454 +612043,168.33,87.7389 +612044,166.52,88.2632 +612045,170.49,86.8148 +612046,168.76,87.2424 +612047,166.99,87.6973 +612048,165.18,88.1824 +612049,169.15,86.85 +612050,167.42,87.2394 +612051,165.66,87.6556 +612052,163.85,88.1012 +612053,167.81,86.8854 +612054,166.08,87.2365 +612055,164.32,87.6138 +612056,162.52,88.0198 +612057,166.47,86.9211 +612058,164.74,87.2337 +612059,162.98,87.5719 +612060,161.18,87.9381 +612061,165.12,86.9569 +612062,163.4,87.2309 +612063,161.65,87.5299 +612064,159.86,87.8561 +612065,163.78,86.9929 +612066,162.06,87.2282 +612067,160.31,87.4878 +612068,158.53,87.774 +612069,162.43,87.0291 +612070,160.72,87.2255 +612071,158.98,87.4456 +612072,157.2,87.6916 +612073,161.08,87.0653 +612074,159.38,87.2229 +612075,157.65,87.4034 +612076,155.88,87.6092 +612077,159.73,87.1017 +612078,158.04,87.2203 +612079,156.31,87.3612 +612080,154.55,87.5266 +612081,158.38,87.1381 +612082,156.7,87.2176 +612083,154.98,87.3189 +612084,153.23,87.444 +612085,157.03,87.1745 +612086,155.35,87.215 +612087,153.65,87.2766 +612088,151.91,87.3613 +612089,155.68,87.2109 +612090,154.01,87.2123 +612091,152.32,87.2342 +612092,150.59,87.2787 +612093,154.32,87.2473 +612094,152.67,87.2097 +612095,150.99,87.1919 +612096,149.27,87.196 +612097,152.96,87.2836 +612098,151.32,87.207 +612099,149.65,87.1496 +612100,147.95,87.1134 +612101,151.61,87.3198 +612102,149.98,87.2042 +612103,148.32,87.1073 +612104,146.64,87.0309 +612105,150.25,87.3559 +612106,148.64,87.2014 +612107,146.99,87.065 +612108,145.32,86.9485 +612109,148.89,87.3918 +612110,147.29,87.1985 +612111,145.67,87.0227 +612112,144.01,86.8663 +612113,147.53,87.4275 +612114,145.95,87.1956 +612115,144.34,86.9805 +612116,142.7,86.7842 +612117,146.16,87.4631 +612118,144.6,87.1925 +612119,143.01,86.9384 +612120,141.39,86.7024 +612121,144.8,87.4983 +612122,143.25,87.1894 +612123,141.68,86.8963 +612124,140.08,86.6208 +612125,143.44,87.5334 +612126,141.91,87.1862 +612127,140.35,86.8543 +612128,138.77,86.5395 +612129,142.07,87.5681 +612130,140.56,87.1828 +612131,139.03,86.8124 +612132,137.46,86.4586 +612133,140.7,87.6024 +612134,139.21,87.1794 +612135,137.7,86.7706 +612136,136.16,86.3779 +612137,139.33,87.6365 +612138,137.87,87.1758 +612139,136.37,86.7289 +612140,134.85,86.2976 +612141,137.97,87.6701 +612142,136.52,87.172 +612143,135.05,86.6874 +612144,133.55,86.2178 +612145,136.59,87.7033 +612146,135.17,87.1681 +612147,133.72,86.6459 +612148,132.25,86.1383 +612149,135.22,87.7361 +612150,133.82,87.1641 +612151,132.4,86.6046 +612152,130.95,86.0593 +612153,133.85,87.7684 +612154,132.47,87.1599 +612155,131.07,86.5635 +612156,129.65,85.9809 +612157,132.48,87.8002 +612158,131.12,87.1554 +612159,129.75,86.5225 +612160,128.35,85.9029 +612161,131.1,87.8314 +612162,129.78,87.1509 +612163,128.43,86.4816 +612164,127.05,85.8255 +612165,129.72,87.8621 +612166,128.43,87.1461 +612167,127.1,86.441 +612168,125.76,85.7486 +612169,128.35,87.8923 +612170,127.08,87.141 +612171,125.78,86.4005 +612172,124.46,85.6724 +612173,126.97,87.9218 +612174,125.72,87.1358 +612175,124.46,86.3603 +612176,123.17,85.5968 +612177,125.59,87.9507 +612178,124.37,87.1304 +612179,123.14,86.3202 +612180,121.88,85.5219 +612181,124.21,87.9789 +612182,123.02,87.1247 +612183,121.81,86.2804 +612184,120.58,85.4476 +612185,122.83,88.0065 +612186,121.67,87.1188 +612187,120.49,86.2407 +612188,119.29,85.3741 +612189,121.45,88.0333 +612190,120.32,87.1126 +612191,119.17,86.2014 +612192,118,85.3013 +612193,120.06,88.0595 +612194,118.97,87.1061 +612195,117.85,86.1622 +612196,116.71,85.2293 +612197,118.68,88.0848 +612198,117.62,87.0994 +612199,116.53,86.1233 +612200,115.42,85.158 +612201,117.29,88.1094 +612202,116.26,87.0925 +612203,115.21,86.0847 +612204,114.14,85.0876 +612205,115.91,88.1331 +612206,114.91,87.0852 +612207,113.89,86.0463 +612208,112.85,85.018 +612209,114.52,88.156 +612210,113.56,87.0776 +612211,112.57,86.0082 +612212,111.57,84.9493 +612213,113.13,88.1781 +612214,112.2,87.0698 +612215,111.25,85.9704 +612216,110.28,84.8815 +612217,111.74,88.1993 +612218,110.85,87.0616 +612219,109.94,85.9329 +612220,109,84.8146 +612221,110.36,88.2196 +612222,109.5,87.0531 +612223,108.62,85.8956 +612224,107.71,84.7486 +612225,108.97,88.239 +612226,108.14,87.0443 +612227,107.3,85.8587 +612228,106.43,84.6836 +612229,107.58,88.2574 +612230,106.79,87.0352 +612231,105.98,85.8221 +612232,105.15,84.6195 +612233,106.18,88.2749 +612234,105.44,87.0257 +612235,104.66,85.7858 +612236,103.87,84.5565 +612237,104.79,88.2914 +612238,104.08,87.0159 +612239,103.35,85.7498 +612240,102.59,84.4944 +612241,103.4,88.3068 +612242,102.73,87.0058 +612243,102.03,85.7142 +612244,101.31,84.4334 +612245,102.01,88.3213 +612246,101.37,86.9952 +612247,100.71,85.6789 +612248,100.03,84.3735 +612249,100.61,88.3347 +612250,100.02,86.9844 +612251,99.396,85.6439 +612252,98.751,84.3146 +612253,99.22,88.3471 +612254,98.662,86.9731 +612255,98.08,85.6093 +612256,97.473,84.2568 +612257,97.825,88.3583 +612258,97.307,86.9615 +612259,96.764,85.5751 +612260,96.195,84.2001 +612261,96.43,88.3685 +612262,95.952,86.9495 +612263,95.448,85.5412 +612264,94.918,84.1446 +612265,95.035,88.3776 +612266,94.597,86.9371 +612267,94.132,85.5077 +612268,93.642,84.0902 +612269,93.639,88.3855 +612270,93.241,86.9244 +612271,92.816,85.4745 +612272,92.366,84.0369 +612273,92.243,88.3923 +612274,91.886,86.9112 +612275,91.501,85.4418 +612276,91.09,83.9848 +612277,90.846,88.3979 +612278,90.53,86.8977 +612279,90.186,85.4094 +612280,89.815,83.9339 +612281,89.449,88.4024 +612282,89.174,86.8837 +612283,88.871,85.3774 +612284,88.54,83.8842 +612285,88.052,88.4057 +612286,87.818,86.8693 +612287,87.556,85.3458 +612288,87.265,83.8357 +612289,86.655,88.4077 +612290,86.463,86.8545 +612291,86.241,85.3146 +612292,85.991,83.7884 +612293,85.257,88.4086 +612294,85.107,86.8393 +612295,84.926,85.2838 +612296,84.717,83.7424 +612297,83.859,88.4082 +612298,83.751,86.8237 +612299,83.612,85.2534 +612300,83.443,83.6976 +612301,82.461,88.4066 +612302,82.395,86.8077 +612303,82.297,85.2234 +612304,82.169,83.654 +612305,81.063,88.4037 +612306,81.039,86.7912 +612307,80.983,85.1938 +612308,80.895,83.6117 +612309,79.665,88.3996 +612310,79.683,86.7743 +612311,79.668,85.1646 +612312,79.622,83.5707 +612313,78.267,88.3942 +612314,78.327,86.7569 +612315,78.354,85.1359 +612316,78.349,83.531 +612317,76.868,88.3875 +612318,76.971,86.7392 +612319,77.04,85.1076 +612320,77.075,83.4925 +612321,75.47,88.3795 +612322,75.616,86.721 +612323,75.725,85.0796 +612324,75.802,83.4554 +612325,74.072,88.3703 +612326,74.26,86.7023 +612327,74.411,85.0522 +612328,74.529,83.4195 +612329,72.674,88.3597 +612330,72.904,86.6832 +612331,73.097,85.0251 +612332,73.256,83.3849 +612333,71.276,88.3479 +612334,71.548,86.6637 +612335,71.783,84.9985 +612336,71.983,83.3517 +612337,69.878,88.3347 +612338,70.193,86.6437 +612339,70.469,84.9723 +612340,70.709,83.3198 +612341,68.48,88.3202 +612342,68.837,86.6232 +612343,69.155,84.9465 +612344,69.436,83.2891 +612345,67.083,88.3043 +612346,67.482,86.6024 +612347,67.84,84.9212 +612348,68.162,83.2598 +612349,65.686,88.2872 +612350,66.127,86.581 +612351,66.526,84.8963 +612352,66.888,83.2318 +612353,64.289,88.2687 +612354,64.771,86.5592 +612355,65.212,84.8718 +612356,65.614,83.2052 +612357,62.892,88.2488 +612358,63.416,86.537 +612359,63.897,84.8478 +612360,64.34,83.1798 +612361,61.496,88.2277 +612362,62.062,86.5143 +612363,62.583,84.8242 +612364,63.065,83.1558 +612365,60.1,88.2052 +612366,60.707,86.4912 +612367,61.269,84.801 +612368,61.79,83.1331 +612369,58.705,88.1814 +612370,59.352,86.4676 +612371,59.954,84.7783 +612372,60.515,83.1117 +612373,57.31,88.1562 +612374,57.998,86.4436 +612375,58.639,84.756 +612376,59.24,83.0916 +612377,55.915,88.1297 +612378,56.644,86.4191 +612379,57.325,84.7341 +612380,57.964,83.0729 +612381,54.521,88.1018 +612382,55.29,86.3941 +612383,56.01,84.7127 +612384,56.687,83.0554 +612385,53.128,88.0727 +612386,53.936,86.3688 +612387,54.695,84.6917 +612388,55.411,83.0393 +612389,51.735,88.0422 +612390,52.582,86.3429 +612391,53.38,84.6711 +612392,54.133,83.0244 +612393,50.343,88.0103 +612394,51.229,86.3167 +612395,52.064,84.6509 +612396,52.855,83.0108 +612397,48.951,87.9772 +612398,49.876,86.2899 +612399,50.749,84.6312 +612400,51.577,82.9985 +612401,47.56,87.9427 +612402,48.523,86.2628 +612403,49.433,84.6119 +612404,50.298,82.9875 +612405,46.17,87.9069 +612406,47.17,86.2352 +612407,48.118,84.593 +612408,49.019,82.9778 +612409,44.781,87.8699 +612410,45.818,86.2072 +612411,46.802,84.5746 +612412,47.738,82.9693 +612413,43.392,87.8315 +612414,44.466,86.1787 +612415,45.485,84.5565 +612416,46.458,82.9621 +612417,42.004,87.7918 +612418,43.114,86.1498 +612419,44.169,84.5389 +612420,45.176,82.9561 +612421,40.617,87.7509 +612422,41.763,86.1205 +612423,42.852,84.5216 +612424,43.894,82.9514 +612425,39.231,87.7087 +612426,40.412,86.0907 +612427,41.536,84.5048 +612428,42.611,82.9478 +612429,37.845,87.6652 +612430,39.061,86.0606 +612431,40.219,84.4884 +612432,41.327,82.9455 +612433,36.461,87.6205 +612434,37.71,86.03 +612435,38.901,84.4724 +612436,40.043,82.9444 +612437,35.078,87.5746 +612438,36.36,85.999 +612439,37.584,84.4567 +612440,38.757,82.9445 +612441,33.695,87.5274 +612442,35.01,85.9676 +612443,36.266,84.4415 +612444,37.471,82.9457 +612445,32.314,87.479 +612446,33.661,85.9358 +612447,34.948,84.4266 +612448,36.184,82.9481 +612449,30.933,87.4295 +612450,32.312,85.9036 +612451,33.63,84.4122 +612452,34.896,82.9516 +612453,29.554,87.3787 +612454,30.963,85.871 +612455,32.311,84.3981 +612456,33.607,82.9562 +612457,28.175,87.3268 +612458,29.615,85.838 +612459,30.992,84.3843 +612460,32.318,82.962 +612461,26.798,87.2737 +612462,28.267,85.8047 +612463,29.673,84.371 +612464,31.027,82.9689 +612465,25.422,87.2194 +612466,26.919,85.7709 +612467,28.354,84.358 +612468,29.735,82.9768 +612469,24.047,87.1641 +612470,25.572,85.7368 +612471,27.034,84.3453 +612472,28.443,82.9858 +612473,22.673,87.1076 +612474,24.225,85.7023 +612475,25.714,84.333 +612476,27.149,82.9958 +612477,21.3,87.0501 +612478,22.878,85.6675 +612479,24.393,84.321 +612480,25.854,83.0069 +612481,19.929,86.9915 +612482,21.532,85.6323 +612483,23.072,84.3094 +612484,24.558,83.0189 +612485,18.559,86.9318 +612486,20.187,85.5968 +612487,21.751,84.2981 +612488,23.261,83.032 +612489,17.19,86.8711 +612490,18.842,85.5609 +612491,20.43,84.2871 +612492,21.963,83.046 +612493,15.822,86.8094 +612494,17.497,85.5247 +612495,19.108,84.2765 +612496,20.664,83.061 +612497,14.456,86.7468 +612498,16.153,85.4881 +612499,17.786,84.2661 +612500,19.364,83.0768 +612501,13.091,86.6831 +612502,14.809,85.4513 +612503,16.463,84.2561 +612504,18.062,83.0936 +612505,11.727,86.6185 +612506,13.466,85.4141 +612507,15.14,84.2463 +612508,16.76,83.1113 +612509,10.365,86.553 +612510,12.123,85.3766 +612511,13.817,84.2369 +612512,15.456,83.1298 +612513,9.0035,86.4866 +612514,10.78,85.3389 +612515,12.493,84.2277 +612516,14.151,83.1491 +612517,7.6438,86.4193 +612518,9.4385,85.3008 +612519,11.169,84.2188 +612520,12.845,83.1693 +612521,6.2855,86.3511 +612522,8.0971,85.2625 +612523,9.8446,84.2101 +612524,11.537,83.1903 +612525,4.9286,86.2821 +612526,6.7561,85.2239 +612527,8.5197,84.2018 +612528,10.228,83.212 +612529,3.5732,86.2124 +612530,5.4156,85.185 +612531,7.1944,84.1936 +612532,8.9183,83.2345 +612533,2.2191,86.1418 +612534,4.0757,85.1459 +612535,5.8687,84.1857 +612536,7.607,83.2576 +612537,0.8665,86.0705 +612538,2.7362,85.1065 +612539,4.5426,84.1781 +612540,6.2943,83.2815 +612541,359.52,85.9984 +612542,1.3972,85.0668 +612543,3.2161,84.1706 +612544,4.9804,83.3061 +612545,358.17,85.9257 +612546,0.058701,85.027 +612547,1.8891,84.1634 +612548,3.6652,83.3312 +612549,356.82,85.8523 +612550,358.72,84.9869 +612551,0.56178,84.1564 +612552,2.3486,83.357 +612553,355.47,85.7782 +612554,357.38,84.9466 +612555,359.23,84.1496 +612556,1.0307,83.3834 +612557,354.13,85.7035 +612558,356.05,84.9061 +612559,357.91,84.143 +612560,359.71,83.4104 +612561,352.78,85.6282 +612562,354.71,84.8655 +612563,356.58,84.1365 +612564,358.39,83.4379 +612565,351.44,85.5524 +612566,353.37,84.8246 +612567,355.25,84.1302 +612568,357.07,83.4659 +612569,350.1,85.476 +612570,352.04,84.7835 +612571,353.92,84.1241 +612572,355.75,83.4944 +612573,348.76,85.3991 +612574,350.7,84.7423 +612575,352.59,84.1182 +612576,354.42,83.5233 +612577,347.42,85.3217 +612578,349.37,84.7009 +612579,351.26,84.1124 +612580,353.09,83.5527 +612581,346.09,85.2439 +612582,348.04,84.6594 +612583,349.93,84.1067 +612584,351.77,83.5825 +612585,344.75,85.1657 +612586,346.7,84.6178 +612587,348.6,84.1011 +612588,350.44,83.6126 +612589,343.42,85.0871 +612590,345.37,84.576 +612591,347.26,84.0957 +612592,349.11,83.6431 +612593,342.09,85.0081 +612594,344.04,84.5341 +612595,345.93,84.0904 +612596,347.78,83.6739 +612597,340.76,84.9288 +612598,342.71,84.4921 +612599,344.6,84.0852 +612600,346.44,83.705 +612601,339.43,84.8492 +612602,341.37,84.45 +612603,343.27,84.08 +612604,345.11,83.7364 +612605,338.1,84.7693 +612606,340.04,84.4078 +612607,341.93,84.075 +612608,343.77,83.768 +612609,336.77,84.6892 +612610,338.71,84.3655 +612611,340.6,84.07 +612612,342.44,83.7998 +612613,335.45,84.6089 +612614,337.38,84.3231 +612615,339.26,84.065 +612616,341.1,83.8318 +612617,334.13,84.5284 +612618,336.05,84.2807 +612619,337.93,84.0602 +612620,339.76,83.8639 +612621,332.81,84.4477 +612622,334.73,84.2383 +612623,336.59,84.0553 +612624,338.42,83.8961 +612625,331.49,84.367 +612626,333.4,84.1958 +612627,335.26,84.0505 +612628,337.07,83.9285 +612629,330.17,84.2861 +612630,332.07,84.1533 +612631,333.92,84.0457 +612632,335.73,83.9609 +612633,328.85,84.2052 +612634,330.74,84.1107 +612635,332.59,84.041 +612636,334.38,83.9933 +612637,327.54,84.1243 +612638,329.42,84.0682 +612639,331.25,84.0362 +612640,333.04,84.0258 +612641,326.22,84.0434 +612642,328.09,84.0256 +612643,329.91,84.0314 +612644,331.69,84.0582 +612645,324.91,83.9625 +612646,326.77,83.9831 +612647,328.57,84.0266 +612648,330.34,84.0905 +612649,323.6,83.8818 +612650,325.44,83.9406 +612651,327.24,84.0218 +612652,328.99,84.1228 +612653,322.29,83.8011 +612654,324.12,83.8981 +612655,325.9,84.0169 +612656,327.63,84.155 +612657,320.98,83.7205 +612658,322.79,83.8557 +612659,324.56,84.012 +612660,326.28,84.187 +612661,319.68,83.6401 +612662,321.47,83.8133 +612663,323.22,84.007 +612664,324.92,84.2189 +612665,318.37,83.5599 +612666,320.15,83.771 +612667,321.88,84.002 +612668,323.57,84.2506 +612669,317.07,83.4799 +612670,318.82,83.7287 +612671,320.54,83.9968 +612672,322.21,84.282 +612673,315.76,83.4002 +612674,317.5,83.6866 +612675,319.2,83.9916 +612676,320.85,84.3132 +612677,314.46,83.3208 +612678,316.18,83.6445 +612679,317.85,83.9863 +612680,319.49,84.3441 +612681,313.16,83.2416 +612682,314.86,83.6025 +612683,316.51,83.9809 +612684,318.13,84.3748 +612685,311.86,83.1629 +612686,313.54,83.5606 +612687,315.17,83.9754 +612688,316.77,84.405 +612689,310.57,83.0845 +612690,312.22,83.5189 +612691,313.83,83.9698 +612692,315.4,84.435 +612693,309.27,83.0065 +612694,310.9,83.4773 +612695,312.49,83.964 +612696,314.04,84.4645 +612697,307.98,82.9289 +612698,309.58,83.4358 +612699,311.14,83.9581 +612700,312.67,84.4936 +612701,306.68,82.8518 +612702,308.26,83.3945 +612703,309.8,83.952 +612704,311.3,84.5223 +612705,305.39,82.7752 +612706,306.94,83.3534 +612707,308.45,83.9458 +612708,309.93,84.5505 +612709,304.1,82.6991 +612710,305.62,83.3124 +612711,307.11,83.9394 +612712,308.56,84.5782 +612713,302.81,82.6235 +612714,304.31,83.2716 +612715,305.77,83.9328 +612716,307.19,84.6054 +612717,301.52,82.5485 +612718,302.99,83.2309 +612719,304.42,83.9261 +612720,305.82,84.632 +612721,300.23,82.4742 +612722,301.67,83.1905 +612723,303.08,83.9191 +612724,304.45,84.6581 +612725,298.95,82.4004 +612726,300.36,83.1503 +612727,301.73,83.912 +612728,303.07,84.6836 +612729,297.66,82.3273 +612730,299.04,83.1103 +612731,300.38,83.9046 +612732,301.7,84.7085 +612733,296.38,82.2549 +612734,297.72,83.0705 +612735,299.04,83.897 +612736,300.32,84.7327 +612737,295.1,82.1832 +612738,296.41,83.0309 +612739,297.69,83.8892 +612740,298.94,84.7562 +612741,293.81,82.1122 +612742,295.09,82.9916 +612743,296.34,83.8812 +612744,297.56,84.7791 +612745,292.53,82.042 +612746,293.78,82.9525 +612747,295,83.8729 +612748,296.18,84.8012 +612749,291.25,81.9726 +612750,292.47,82.9137 +612751,293.65,83.8643 +612752,294.8,84.8226 +612753,289.97,81.9039 +612754,291.15,82.8751 +612755,292.3,83.8555 +612756,293.42,84.8432 +612757,288.7,81.8361 +612758,289.84,82.8369 +612759,290.95,83.8465 +612760,292.04,84.8631 +612761,287.42,81.7692 +612762,288.53,82.7989 +612763,289.6,83.8371 +612764,290.65,84.8821 +612765,286.14,81.7031 +612766,287.21,82.7611 +612767,288.26,83.8275 +612768,289.27,84.9003 +612769,284.87,81.6379 +612770,285.9,82.7237 +612771,286.91,83.8176 +612772,287.88,84.9177 +612773,283.59,81.5737 +612774,284.59,82.6866 +612775,285.56,83.8073 +612776,286.5,84.9342 +612777,282.32,81.5103 +612778,283.28,82.6498 +612779,284.21,83.7968 +612780,285.11,84.9498 +612781,281.05,81.448 +612782,281.97,82.6133 +612783,282.86,83.786 +612784,283.72,84.9645 +612785,279.77,81.3866 +612786,280.65,82.5771 +612787,281.51,83.7749 +612788,282.33,84.9782 +612789,278.5,81.3262 +612790,279.34,82.5412 +612791,280.16,83.7634 +612792,280.94,84.991 +612793,277.23,81.2668 +612794,278.03,82.5057 +612795,278.81,83.7516 +612796,279.55,85.0029 +612797,275.96,81.2085 +612798,276.72,82.4705 +612799,277.46,83.7395 +612800,278.16,85.0137 +612801,274.69,81.1512 +612802,275.41,82.4357 +612803,276.11,83.727 +612804,276.77,85.0236 +612805,273.42,81.095 +612806,274.1,82.4012 +612807,274.76,83.7142 +612808,275.38,85.0324 +612809,272.15,81.0399 +612810,272.79,82.3671 +612811,273.41,83.701 +612812,273.99,85.0402 +612813,270.88,80.9858 +612814,271.48,82.3333 +612815,272.05,83.6875 +612816,272.6,85.047 +612817,269.62,80.9329 +612818,270.17,82.2999 +612819,270.7,83.6736 +612820,271.2,85.0527 +612821,268.35,80.8812 +612822,268.87,82.2669 +612823,269.35,83.6594 +612824,269.81,85.0573 +612825,267.08,80.8305 +612826,267.56,82.2342 +612827,268,83.6448 +612828,268.42,85.0608 +612829,265.82,80.7811 +612830,266.25,82.2019 +612831,266.65,83.6298 +612832,267.02,85.0632 +612833,264.55,80.7328 +612834,264.94,82.1701 +612835,265.3,83.6144 +612836,265.63,85.0644 +612837,263.29,80.6857 +612838,263.63,82.1386 +612839,263.95,83.5986 +612840,264.23,85.0646 +612841,262.02,80.6398 +612842,262.32,82.1075 +612843,262.59,83.5825 +612844,262.84,85.0636 +612845,260.76,80.5951 +612846,261.01,82.0768 +612847,261.24,83.5659 +612848,261.44,85.0614 +612849,259.49,80.5516 +612850,259.71,82.0465 +612851,259.89,83.549 +612852,260.04,85.0581 +612853,258.23,80.5093 +612854,258.4,82.0166 +612855,258.54,83.5317 +612856,258.65,85.0535 +612857,256.96,80.4683 +612858,257.09,81.9871 +612859,257.19,83.5139 +612860,257.25,85.0478 +612861,255.7,80.4285 +612862,255.78,81.958 +612863,255.83,83.4958 +612864,255.86,85.0409 +612865,254.43,80.39 +612866,254.47,81.9294 +612867,254.48,83.4773 +612868,254.46,85.0328 +612869,253.17,80.3527 +612870,253.17,81.9011 +612871,253.13,83.4583 +612872,253.06,85.0235 +612873,251.9,80.3167 +612874,251.86,81.8733 +612875,251.78,83.4389 +612876,251.67,85.0129 +612877,250.64,80.282 +612878,250.55,81.8459 +612879,250.43,83.4192 +612880,250.27,85.0012 +612881,249.38,80.2485 +612882,249.24,81.8189 +612883,249.08,83.399 +612884,248.87,84.9881 +612885,248.11,80.2163 +612886,247.94,81.7923 +612887,247.72,83.3784 +612888,247.48,84.9739 +612889,246.85,80.1854 +612890,246.63,81.7662 +612891,246.37,83.3573 +612892,246.08,84.9584 +612893,245.58,80.1558 +612894,245.32,81.7405 +612895,245.02,83.3359 +612896,244.68,84.9416 +612897,244.32,80.1275 +612898,244.01,81.7152 +612899,243.67,83.314 +612900,243.29,84.9236 +612901,243.05,80.1004 +612902,242.7,81.6903 +612903,242.32,83.2917 +612904,241.89,84.9043 +612905,241.79,80.0746 +612906,241.4,81.6659 +612907,240.97,83.269 +612908,240.5,84.8838 +612909,240.52,80.0502 +612910,240.09,81.6419 +612911,239.62,83.2459 +612912,239.1,84.862 +612913,239.26,80.027 +612914,238.78,81.6183 +612915,238.26,83.2223 +612916,237.71,84.839 +612917,237.99,80.0051 +612918,237.47,81.5952 +612919,236.91,83.1983 +612920,236.31,84.8147 +612921,236.73,79.984 +612922,236.16,81.5725 +612923,235.56,83.1739 +612924,234.92,84.7891 +612925,235.46,79.965 +612926,234.86,81.5502 +612927,234.21,83.1491 +612928,233.52,84.7623 +612929,234.19,79.947 +612930,233.55,81.5283 +612931,232.86,83.1239 +612932,232.13,84.7342 +612933,232.93,79.93 +612934,232.24,81.5068 +612935,231.51,83.0982 +612936,230.74,84.7049 +612937,231.66,79.915 +612938,230.93,81.4858 +612939,230.16,83.0721 +612940,229.35,84.6743 +612941,230.39,79.9 +612942,229.62,81.4652 +612943,228.81,83.0457 +612944,227.95,84.6424 +612945,229.12,79.887 +612946,228.31,81.445 +612947,227.46,83.0187 +612948,226.56,84.6094 +612949,227.85,79.876 +612950,227,81.4252 +612951,226.11,82.9914 +612952,225.17,84.575 +612953,226.58,79.865 +612954,225.69,81.4059 +612955,224.76,82.9637 +612956,223.78,84.5395 +612957,225.31,79.856 +612958,224.39,81.3869 +612959,223.42,82.9356 +612960,222.39,84.5027 +612961,224.04,79.848 +612962,223.08,81.3684 +612963,222.07,82.907 +612964,221,84.4647 +612965,222.77,79.841 +612966,221.77,81.3503 +612967,220.72,82.8781 +612968,219.62,84.4254 +612969,221.49,79.835 +612970,220.46,81.3326 +612971,219.37,82.8487 +612972,218.23,84.385 +612973,220.22,79.831 +612974,219.15,81.3152 +612975,218.02,82.819 +612976,216.84,84.3434 +612977,218.95,79.827 +612978,217.84,81.2983 +612979,216.68,82.7889 +612980,215.46,84.3006 +612981,217.67,79.825 +612982,216.52,81.2818 +612983,215.33,82.7583 +612984,214.08,84.2566 +612985,216.4,79.824 +612986,215.21,81.2656 +612987,213.98,82.7274 +612988,212.69,84.2114 +612989,215.12,79.824 +612990,213.9,81.2498 +612991,212.64,82.6962 +612992,211.31,84.1651 +612993,213.84,79.826 +612994,212.59,81.2345 +612995,211.29,82.6645 +612996,209.93,84.1176 +612997,212.56,79.828 +612998,211.28,81.2194 +612999,209.94,82.6325 +613000,208.55,84.069 +613001,211.28,79.832 +613002,209.97,81.2048 +613003,208.6,82.6 +613004,207.17,84.0193 +613005,210,79.836 +613006,208.65,81.1905 +613007,207.25,82.5673 +613008,205.79,83.9685 +613009,208.72,79.842 +613010,207.34,81.1766 +613011,205.91,82.5342 +613012,204.41,83.9166 +613013,207.44,79.849 +613014,206.03,81.163 +613015,204.56,82.5007 +613016,203.04,83.8636 +613017,206.15,79.856 +613018,204.71,81.1498 +613019,203.22,82.4669 +613020,201.66,83.8096 +613021,204.87,79.865 +613022,203.4,81.137 +613023,201.88,82.4327 +613024,200.29,83.7545 +613025,203.58,79.875 +613026,202.09,81.1244 +613027,200.53,82.3982 +613028,198.92,83.6984 +613029,202.3,79.885 +613030,200.77,81.1122 +613031,199.19,82.3634 +613032,197.54,83.6413 +613033,201.01,79.897 +613034,199.46,81.1004 +613035,197.85,82.3282 +613036,196.17,83.5832 +613037,199.72,79.91 +613038,198.14,81.0888 +613039,196.51,82.2927 +613040,194.81,83.5241 +613041,198.43,79.923 +613042,196.83,81.0776 +613043,195.17,82.2569 +613044,193.44,83.4641 +613045,197.14,79.938 +613046,195.51,81.0666 +613047,193.83,82.2209 +613048,192.07,83.4031 +613049,195.85,79.953 +613050,194.19,81.056 +613051,192.49,82.1845 +613052,190.71,83.3412 +613053,194.55,79.969 +613054,192.88,81.0457 +613055,191.15,82.1478 +613056,189.34,83.2784 +613057,193.26,79.986 +613058,191.56,81.0356 +613059,189.81,82.1108 +613060,187.98,83.2148 +613061,191.96,80.0041 +613062,190.24,81.0258 +613063,188.47,82.0736 +613064,186.62,83.1503 +613065,190.66,80.0227 +613066,188.93,81.0163 +613067,187.13,82.0361 +613068,185.26,83.0849 +613069,189.36,80.0421 +613070,187.61,81.0071 +613071,185.79,81.9983 +613072,183.9,83.0188 +613073,188.06,80.0622 +613074,186.29,80.9981 +613075,184.45,81.9603 +613076,182.55,82.9518 +613077,186.76,80.0831 +613078,184.97,80.9893 +613079,183.12,81.922 +613080,181.19,82.8841 +613081,185.46,80.1046 +613082,183.65,80.9808 +613083,181.78,81.8835 +613084,179.84,82.8157 +613085,184.15,80.1268 +613086,182.33,80.9726 +613087,180.44,81.8448 +613088,178.49,82.7466 +613089,182.85,80.1497 +613090,181.01,80.9645 +613091,179.11,81.8058 +613092,177.14,82.6767 +613093,181.54,80.1732 +613094,179.69,80.9567 +613095,177.77,81.7667 +613096,175.79,82.6062 +613097,180.23,80.1973 +613098,178.37,80.949 +613099,176.44,81.7273 +613100,174.44,82.5351 +613101,178.92,80.2219 +613102,177.05,80.9416 +613103,175.11,81.6877 +613104,173.09,82.4633 +613105,177.61,80.2471 +613106,175.72,80.9344 +613107,173.77,81.648 +613108,171.75,82.391 +613109,176.3,80.2728 +613110,174.4,80.9273 +613111,172.44,81.6081 +613112,170.41,82.3181 +613113,174.99,80.299 +613114,173.08,80.9204 +613115,171.11,81.5679 +613116,169.06,82.2447 +613117,173.67,80.3257 +613118,171.75,80.9137 +613119,169.77,81.5277 +613120,167.72,82.1707 +613121,172.35,80.3528 +613122,170.43,80.9071 +613123,168.44,81.4873 +613124,166.39,82.0963 +613125,171.03,80.3803 +613126,169.1,80.9007 +613127,167.11,81.4467 +613128,165.05,82.0214 +613129,169.71,80.4083 +613130,167.78,80.8944 +613131,165.78,81.406 +613132,163.71,81.9461 +613133,168.39,80.4365 +613134,166.45,80.8882 +613135,164.45,81.3652 +613136,162.38,81.8704 +613137,167.07,80.4651 +613138,165.13,80.8822 +613139,163.12,81.3243 +613140,161.05,81.7943 +613141,165.75,80.494 +613142,163.8,80.8763 +613143,161.8,81.2832 +613144,159.72,81.7179 +613145,164.42,80.5232 +613146,162.48,80.8704 +613147,160.47,81.2421 +613148,158.39,81.6412 +613149,163.09,80.5527 +613150,161.15,80.8647 +613151,159.14,81.2009 +613152,157.06,81.5642 +613153,161.76,80.5823 +613154,159.82,80.859 +613155,157.81,81.1596 +613156,155.74,81.4869 +613157,160.43,80.6122 +613158,158.49,80.8534 +613159,156.49,81.1182 +613160,154.41,81.4094 +613161,159.1,80.6422 +613162,157.16,80.8479 +613163,155.16,81.0768 +613164,153.09,81.3318 +613165,157.77,80.6723 +613166,155.83,80.8424 +613167,153.84,81.0353 +613168,151.77,81.2539 +613169,156.44,80.7026 +613170,154.5,80.837 +613171,152.51,80.9938 +613172,150.45,81.1759 +613173,155.1,80.7329 +613174,153.17,80.8316 +613175,151.19,80.9523 +613176,149.13,81.0978 +613177,153.76,80.7633 +613178,151.84,80.8262 +613179,149.86,80.9107 +613180,147.82,81.0197 +613181,152.42,80.7937 +613182,150.51,80.8208 +613183,148.54,80.8692 +613184,146.5,80.9415 +613185,151.08,80.8241 +613186,149.18,80.8155 +613187,147.22,80.8276 +613188,145.19,80.8632 +613189,149.74,80.8545 +613190,147.85,80.8101 +613191,145.9,80.786 +613192,143.88,80.785 +613193,148.4,80.8848 +613194,146.51,80.8047 +613195,144.57,80.7445 +613196,142.57,80.7068 +613197,147.05,80.9151 +613198,145.18,80.7993 +613199,143.25,80.703 +613200,141.26,80.6287 +613201,145.71,80.9452 +613202,143.85,80.7939 +613203,141.93,80.6615 +613204,139.96,80.5507 +613205,144.36,80.9752 +613206,142.51,80.7884 +613207,140.61,80.6201 +613208,138.65,80.4728 +613209,143.01,81.005 +613210,141.18,80.7829 +613211,139.29,80.5788 +613212,137.35,80.3951 +613213,141.66,81.0346 +613214,139.84,80.7773 +613215,137.98,80.5375 +613216,136.05,80.3176 +613217,140.31,81.064 +613218,138.51,80.7717 +613219,136.66,80.4963 +613220,134.75,80.2403 +613221,138.95,81.0931 +613222,137.17,80.7659 +613223,135.34,80.4551 +613224,133.45,80.1632 +613225,137.6,81.122 +613226,135.84,80.7601 +613227,134.02,80.4141 +613228,132.15,80.0864 +613229,136.24,81.1505 +613230,134.5,80.7542 +613231,132.7,80.3732 +613232,130.85,80.0099 +613233,134.89,81.1788 +613234,133.16,80.7482 +613235,131.39,80.3324 +613236,129.56,79.934 +613237,133.53,81.2066 +613238,131.83,80.742 +613239,130.07,80.2917 +613240,128.27,79.858 +613241,132.17,81.2341 +613242,130.49,80.7358 +613243,128.76,80.2511 +613244,126.97,79.783 +613245,130.81,81.2612 +613246,129.15,80.7294 +613247,127.44,80.2107 +613248,125.68,79.708 +613249,129.44,81.2878 +613250,127.81,80.7228 +613251,126.13,80.1705 +613252,124.39,79.633 +613253,128.08,81.314 +613254,126.47,80.7161 +613255,124.81,80.1304 +613256,123.11,79.559 +613257,126.72,81.3397 +613258,125.13,80.7093 +613259,123.5,80.0905 +613260,121.82,79.486 +613261,125.35,81.3648 +613262,123.79,80.7022 +613263,122.19,80.0507 +613264,120.53,79.413 +613265,123.98,81.3895 +613266,122.45,80.695 +613267,120.88,80.0112 +613268,119.25,79.34 +613269,122.61,81.4135 +613270,121.11,80.6877 +613271,119.56,79.972 +613272,117.97,79.268 +613273,121.24,81.437 +613274,119.77,80.6801 +613275,118.25,79.933 +613276,116.69,79.197 +613277,119.87,81.4599 +613278,118.43,80.6723 +613279,116.94,79.894 +613280,115.41,79.126 +613281,118.5,81.4822 +613282,117.09,80.6643 +613283,115.63,79.855 +613284,114.13,79.056 +613285,117.13,81.5037 +613286,115.74,80.6561 +613287,114.32,79.817 +613288,112.85,78.987 +613289,115.75,81.5247 +613290,114.4,80.6477 +613291,113.01,79.778 +613292,111.57,78.919 +613293,114.38,81.5449 +613294,113.06,80.639 +613295,111.7,79.74 +613296,110.3,78.851 +613297,113,81.5644 +613298,111.72,80.6301 +613299,110.39,79.703 +613300,109.02,78.784 +613301,111.62,81.5831 +613302,110.37,80.621 +613303,109.08,79.665 +613304,107.75,78.718 +613305,110.24,81.6011 +613306,109.03,80.6116 +613307,107.77,79.628 +613308,106.48,78.652 +613309,108.86,81.6183 +613310,107.68,80.6019 +613311,106.47,79.591 +613312,105.21,78.587 +613313,107.48,81.6346 +613314,106.34,80.5919 +613315,105.16,79.554 +613316,103.94,78.524 +613317,106.1,81.6502 +613318,104.99,80.5817 +613319,103.85,79.518 +613320,102.67,78.461 +613321,104.72,81.6649 +613322,103.65,80.5712 +613323,102.54,79.482 +613324,101.4,78.399 +613325,103.34,81.6787 +613326,102.3,80.5604 +613327,101.24,79.446 +613328,100.13,78.338 +613329,101.95,81.6917 +613330,100.96,80.5494 +613331,99.93,79.411 +613332,98.864,78.277 +613333,100.57,81.7037 +613334,99.612,80.538 +613335,98.623,79.376 +613336,97.598,78.218 +613337,99.18,81.7149 +613338,98.266,80.5263 +613339,97.318,79.341 +613340,96.333,78.16 +613341,97.794,81.7251 +613342,96.92,80.5143 +613343,96.012,79.306 +613344,95.069,78.103 +613345,96.406,81.7343 +613346,95.574,80.5019 +613347,94.707,79.272 +613348,93.805,78.047 +613349,95.018,81.7425 +613350,94.227,80.4893 +613351,93.402,79.238 +613352,92.542,77.991 +613353,93.63,81.7498 +613354,92.88,80.4763 +613355,92.097,79.205 +613356,91.28,77.937 +613357,92.24,81.7561 +613358,91.533,80.463 +613359,90.792,79.172 +613360,90.018,77.884 +613361,90.85,81.7613 +613362,90.185,80.4493 +613363,89.488,79.139 +613364,88.757,77.832 +613365,89.46,81.7656 +613366,88.838,80.4353 +613367,88.184,79.107 +613368,87.497,77.781 +613369,88.069,81.7687 +613370,87.49,80.421 +613371,86.88,79.075 +613372,86.237,77.731 +613373,86.677,81.7708 +613374,86.143,80.4063 +613375,85.576,79.043 +613376,84.977,77.683 +613377,85.285,81.7719 +613378,84.795,80.3912 +613379,84.273,79.012 +613380,83.719,77.635 +613381,83.892,81.7718 +613382,83.447,80.3758 +613383,82.969,78.981 +613384,82.46,77.589 +613385,82.499,81.7707 +613386,82.099,80.36 +613387,81.666,78.95 +613388,81.202,77.543 +613389,81.106,81.7684 +613390,80.75,80.3438 +613391,80.363,78.92 +613392,79.944,77.499 +613393,79.712,81.7651 +613394,79.402,80.3272 +613395,79.06,78.89 +613396,78.687,77.456 +613397,78.318,81.7606 +613398,78.054,80.3103 +613399,77.757,78.861 +613400,77.43,77.415 +613401,76.924,81.7549 +613402,76.705,80.293 +613403,76.455,78.832 +613404,76.173,77.374 +613405,75.529,81.7481 +613406,75.357,80.2753 +613407,75.152,78.804 +613408,74.916,77.335 +613409,74.134,81.7402 +613410,74.008,80.2572 +613411,73.85,78.776 +613412,73.66,77.297 +613413,72.739,81.7311 +613414,72.659,80.2388 +613415,72.547,78.748 +613416,72.404,77.26 +613417,71.344,81.7208 +613418,71.311,80.2199 +613419,71.245,78.721 +613420,71.148,77.224 +613421,69.949,81.7094 +613422,69.962,80.2007 +613423,69.943,78.694 +613424,69.892,77.19 +613425,68.553,81.6968 +613426,68.613,80.181 +613427,68.641,78.667 +613428,68.636,77.156 +613429,67.158,81.683 +613430,67.265,80.161 +613431,67.338,78.641 +613432,67.38,77.124 +613433,65.763,81.6679 +613434,65.916,80.1405 +613435,66.036,78.615 +613436,66.124,77.094 +613437,64.367,81.6517 +613438,64.568,80.1197 +613439,64.734,78.59 +613440,64.868,77.064 +613441,62.972,81.6343 +613442,63.219,80.0985 +613443,63.432,78.565 +613444,63.612,77.036 +613445,61.577,81.6157 +613446,61.871,80.0768 +613447,62.13,78.541 +613448,62.356,77.009 +613449,60.182,81.5959 +613450,60.522,80.0548 +613451,60.828,78.517 +613452,61.099,76.983 +613453,58.787,81.5749 +613454,59.174,80.0323 +613455,59.525,78.493 +613456,59.843,76.959 +613457,57.392,81.5527 +613458,57.826,80.0095 +613459,58.223,78.47 +613460,58.586,76.936 +613461,55.998,81.5292 +613462,56.478,79.986 +613463,56.921,78.448 +613464,57.329,76.914 +613465,54.603,81.5046 +613466,55.13,79.963 +613467,55.618,78.425 +613468,56.072,76.893 +613469,53.209,81.4788 +613470,53.782,79.938 +613471,54.316,78.403 +613472,54.814,76.874 +613473,51.816,81.4517 +613474,52.434,79.914 +613475,53.013,78.382 +613476,53.556,76.856 +613477,50.423,81.4234 +613478,51.087,79.889 +613479,51.711,78.361 +613480,52.297,76.839 +613481,49.03,81.394 +613482,49.739,79.864 +613483,50.408,78.34 +613484,51.039,76.823 +613485,47.638,81.3633 +613486,48.392,79.838 +613487,49.105,78.32 +613488,49.779,76.809 +613489,46.246,81.3315 +613490,47.045,79.812 +613491,47.802,78.3 +613492,48.519,76.795 +613493,44.855,81.2984 +613494,45.698,79.786 +613495,46.498,78.281 +613496,47.259,76.783 +613497,43.464,81.2642 +613498,44.352,79.759 +613499,45.195,78.262 +613500,45.998,76.773 +613501,42.074,81.2288 +613502,43.005,79.732 +613503,43.891,78.243 +613504,44.737,76.763 +613505,40.685,81.1922 +613506,41.659,79.704 +613507,42.588,78.225 +613508,43.475,76.755 +613509,39.296,81.1545 +613510,40.313,79.676 +613511,41.284,78.207 +613512,42.212,76.748 +613513,37.908,81.1156 +613514,38.968,79.648 +613515,39.979,78.19 +613516,40.948,76.742 +613517,36.521,81.0756 +613518,37.623,79.619 +613519,38.675,78.173 +613520,39.684,76.737 +613521,35.134,81.0344 +613522,36.277,79.59 +613523,37.37,78.156 +613524,38.419,76.733 +613525,33.749,80.9921 +613526,34.933,79.56 +613527,36.066,78.14 +613528,37.153,76.731 +613529,32.364,80.9486 +613530,33.588,79.53 +613531,34.76,78.124 +613532,35.887,76.729 +613533,30.98,80.9041 +613534,32.244,79.5 +613535,33.455,78.109 +613536,34.619,76.729 +613537,29.597,80.8584 +613538,30.9,79.469 +613539,32.149,78.093 +613540,33.351,76.73 +613541,28.215,80.8117 +613542,29.557,79.438 +613543,30.843,78.079 +613544,32.082,76.732 +613545,26.833,80.7639 +613546,28.214,79.407 +613547,29.537,78.064 +613548,30.812,76.735 +613549,25.453,80.715 +613550,26.871,79.375 +613551,28.231,78.05 +613552,29.541,76.739 +613553,24.074,80.6651 +613554,25.528,79.343 +613555,26.924,78.037 +613556,28.269,76.744 +613557,22.696,80.6141 +613558,24.186,79.311 +613559,25.617,78.023 +613560,26.996,76.75 +613561,21.319,80.5622 +613562,22.845,79.278 +613563,24.309,78.011 +613564,25.722,76.758 +613565,19.943,80.5092 +613566,21.503,79.245 +613567,23.001,77.998 +613568,24.447,76.766 +613569,18.568,80.4552 +613570,20.162,79.212 +613571,21.693,77.986 +613572,23.17,76.775 +613573,17.195,80.4003 +613574,18.822,79.178 +613575,20.385,77.974 +613576,21.893,76.785 +613577,15.823,80.3444 +613578,17.482,79.144 +613579,19.076,77.962 +613580,20.615,76.796 +613581,14.451,80.2875 +613582,16.142,79.11 +613583,17.767,77.951 +613584,19.335,76.808 +613585,13.082,80.2298 +613586,14.803,79.076 +613587,16.457,77.94 +613588,18.054,76.821 +613589,11.713,80.1711 +613590,13.464,79.041 +613591,15.147,77.929 +613592,16.772,76.835 +613593,10.346,80.1116 +613594,12.126,79.005 +613595,13.837,77.919 +613596,15.489,76.85 +613597,8.9797,80.0512 +613598,10.788,78.97 +613599,12.526,77.909 +613600,14.205,76.865 +613601,7.6151,79.99 +613602,9.4502,78.934 +613603,11.215,77.899 +613604,12.919,76.882 +613605,6.2519,79.928 +613606,8.1133,78.898 +613607,9.9032,77.889 +613608,11.632,76.899 +613609,4.89,79.865 +613610,6.7768,78.862 +613611,8.5912,77.88 +613612,10.344,76.917 +613613,3.5296,79.801 +613614,5.4407,78.826 +613615,7.2787,77.871 +613616,9.0541,76.936 +613617,2.1706,79.737 +613618,4.1052,78.789 +613619,5.9658,77.862 +613620,7.7632,76.955 +613621,0.81312,79.672 +613622,2.7702,78.752 +613623,4.6525,77.854 +613624,6.4709,76.975 +613625,359.46,79.606 +613626,1.4357,78.715 +613627,3.3388,77.845 +613628,5.1773,76.996 +613629,358.1,79.539 +613630,0.10165,78.677 +613631,2.0246,77.837 +613632,3.8822,77.018 +613633,356.75,79.472 +613634,358.77,78.64 +613635,0.70991,77.83 +613636,2.5858,77.04 +613637,355.4,79.404 +613638,357.44,78.602 +613639,359.39,77.822 +613640,1.288,77.063 +613641,354.05,79.335 +613642,356.1,78.564 +613643,358.08,77.815 +613644,359.99,77.086 +613645,352.7,79.266 +613646,354.77,78.525 +613647,356.76,77.807 +613648,358.69,77.11 +613649,351.35,79.197 +613650,353.44,78.487 +613651,355.45,77.8 +613652,357.39,77.135 +613653,350.01,79.126 +613654,352.11,78.448 +613655,354.13,77.794 +613656,356.08,77.16 +613657,348.66,79.056 +613658,350.78,78.41 +613659,352.81,77.787 +613660,354.78,77.185 +613661,347.32,78.984 +613662,349.45,78.371 +613663,351.49,77.78 +613664,353.47,77.211 +613665,345.98,78.913 +613666,348.12,78.332 +613667,350.18,77.774 +613668,352.16,77.238 +613669,344.64,78.84 +613670,346.79,78.292 +613671,348.86,77.768 +613672,350.85,77.264 +613673,343.31,78.768 +613674,345.46,78.253 +613675,347.54,77.762 +613676,349.54,77.292 +613677,341.97,78.695 +613678,344.13,78.214 +613679,346.22,77.756 +613680,348.23,77.319 +613681,340.64,78.621 +613682,342.81,78.174 +613683,344.9,77.75 +613684,346.92,77.347 +613685,339.3,78.548 +613686,341.48,78.134 +613687,343.58,77.744 +613688,345.6,77.375 +613689,337.97,78.474 +613690,340.16,78.095 +613691,342.25,77.739 +613692,344.28,77.404 +613693,336.65,78.399 +613694,338.83,78.055 +613695,340.93,77.733 +613696,342.96,77.432 +613697,335.32,78.325 +613698,337.51,78.015 +613699,339.61,77.728 +613700,341.64,77.461 +613701,333.99,78.25 +613702,336.18,77.975 +613703,338.29,77.723 +613704,340.32,77.49 +613705,332.67,78.175 +613706,334.86,77.935 +613707,336.96,77.717 +613708,339,77.52 +613709,331.35,78.1 +613710,333.53,77.895 +613711,335.64,77.712 +613712,337.67,77.549 +613713,330.03,78.025 +613714,332.21,77.855 +613715,334.32,77.707 +613716,336.35,77.579 +613717,328.71,77.949 +613718,330.89,77.814 +613719,332.99,77.702 +613720,335.02,77.608 +613721,327.39,77.874 +613722,329.57,77.774 +613723,331.66,77.697 +613724,333.69,77.638 +613725,326.08,77.798 +613726,328.25,77.734 +613727,330.34,77.692 +613728,332.36,77.668 +613729,324.76,77.722 +613730,326.93,77.694 +613731,329.01,77.686 +613732,331.03,77.698 +613733,323.45,77.647 +613734,325.61,77.654 +613735,327.69,77.681 +613736,329.69,77.727 +613737,322.14,77.571 +613738,324.29,77.614 +613739,326.36,77.676 +613740,328.36,77.757 +613741,320.83,77.496 +613742,322.97,77.573 +613743,325.03,77.671 +613744,327.02,77.786 +613745,319.52,77.42 +613746,321.65,77.533 +613747,323.7,77.666 +613748,325.68,77.816 +613749,318.22,77.345 +613750,320.33,77.493 +613751,322.37,77.661 +613752,324.34,77.845 +613753,316.91,77.27 +613754,319.02,77.453 +613755,321.04,77.656 +613756,323,77.874 +613757,315.61,77.195 +613758,317.7,77.413 +613759,319.71,77.65 +613760,321.66,77.903 +613761,314.31,77.12 +613762,316.39,77.373 +613763,318.38,77.645 +613764,320.31,77.932 +613765,313.01,77.046 +613766,315.07,77.334 +613767,317.05,77.64 +613768,318.97,77.961 +613769,311.72,76.971 +613770,313.76,77.294 +613771,315.72,77.634 +613772,317.62,77.989 +613773,310.42,76.897 +613774,312.44,77.254 +613775,314.39,77.628 +613776,316.27,78.017 +613777,309.13,76.823 +613778,311.13,77.215 +613779,313.06,77.623 +613780,314.92,78.044 +613781,307.83,76.75 +613782,309.81,77.176 +613783,311.72,77.617 +613784,313.57,78.072 +613785,306.54,76.677 +613786,308.5,77.136 +613787,310.39,77.611 +613788,312.21,78.098 +613789,305.25,76.605 +613790,307.19,77.097 +613791,309.06,77.605 +613792,310.86,78.125 +613793,303.96,76.532 +613794,305.88,77.058 +613795,307.72,77.599 +613796,309.5,78.151 +613797,302.68,76.461 +613798,304.57,77.02 +613799,306.39,77.592 +613800,308.14,78.177 +613801,301.39,76.389 +613802,303.26,76.981 +613803,305.05,77.586 +613804,306.79,78.202 +613805,300.11,76.319 +613806,301.95,76.943 +613807,303.72,77.579 +613808,305.43,78.226 +613809,298.83,76.248 +613810,300.64,76.904 +613811,302.38,77.572 +613812,304.06,78.25 +613813,297.55,76.179 +613814,299.33,76.866 +613815,301.04,77.565 +613816,302.7,78.274 +613817,296.27,76.11 +613818,298.02,76.828 +613819,299.71,77.558 +613820,301.34,78.297 +613821,294.99,76.041 +613822,296.71,76.791 +613823,298.37,77.551 +613824,299.97,78.319 +613825,293.71,75.973 +613826,295.4,76.753 +613827,297.03,77.543 +613828,298.6,78.341 +613829,292.44,75.906 +613830,294.1,76.716 +613831,295.69,77.536 +613832,297.24,78.362 +613833,291.16,75.84 +613834,292.79,76.679 +613835,294.36,77.527 +613836,295.87,78.383 +613837,289.89,75.774 +613838,291.48,76.642 +613839,293.02,77.519 +613840,294.5,78.403 +613841,288.62,75.709 +613842,290.18,76.606 +613843,291.68,77.511 +613844,293.13,78.422 +613845,287.35,75.645 +613846,288.87,76.57 +613847,290.34,77.502 +613848,291.75,78.44 +613849,286.08,75.581 +613850,287.57,76.534 +613851,289,77.493 +613852,290.38,78.458 +613853,284.81,75.518 +613854,286.26,76.498 +613855,287.66,77.484 +613856,289,78.474 +613857,283.54,75.457 +613858,284.96,76.462 +613859,286.32,77.474 +613860,287.63,78.49 +613861,282.27,75.395 +613862,283.65,76.427 +613863,284.98,77.465 +613864,286.25,78.506 +613865,281.01,75.335 +613866,282.35,76.392 +613867,283.64,77.455 +613868,284.87,78.52 +613869,279.75,75.276 +613870,281.04,76.358 +613871,282.29,77.444 +613872,283.49,78.533 +613873,278.48,75.218 +613874,279.74,76.324 +613875,280.95,77.434 +613876,282.11,78.546 +613877,277.22,75.16 +613878,278.44,76.29 +613879,279.61,77.423 +613880,280.73,78.558 +613881,275.96,75.104 +613882,277.14,76.256 +613883,278.27,77.412 +613884,279.35,78.569 +613885,274.7,75.048 +613886,275.83,76.223 +613887,276.92,77.4 +613888,277.97,78.579 +613889,273.44,74.993 +613890,274.53,76.19 +613891,275.58,77.388 +613892,276.59,78.588 +613893,272.18,74.94 +613894,273.23,76.157 +613895,274.24,77.376 +613896,275.2,78.596 +613897,270.92,74.887 +613898,271.93,76.125 +613899,272.89,77.364 +613900,273.82,78.603 +613901,269.67,74.836 +613902,270.63,76.093 +613903,271.55,77.351 +613904,272.43,78.609 +613905,268.41,74.785 +613906,269.33,76.061 +613907,270.21,77.338 +613908,271.04,78.614 +613909,267.16,74.736 +613910,268.03,76.03 +613911,268.86,77.325 +613912,269.66,78.618 +613913,265.9,74.687 +613914,266.73,75.999 +613915,267.52,77.311 +613916,268.27,78.621 +613917,264.65,74.64 +613918,265.43,75.968 +613919,266.17,77.297 +613920,266.88,78.624 +613921,263.39,74.594 +613922,264.13,75.938 +613923,264.83,77.282 +613924,265.49,78.625 +613925,262.14,74.549 +613926,262.83,75.908 +613927,263.48,77.267 +613928,264.1,78.624 +613929,260.89,74.505 +613930,261.53,75.879 +613931,262.14,77.252 +613932,262.71,78.623 +613933,259.64,74.462 +613934,260.23,75.85 +613935,260.79,77.237 +613936,261.32,78.621 +613937,258.38,74.421 +613938,258.93,75.821 +613939,259.45,77.221 +613940,259.93,78.618 +613941,257.13,74.38 +613942,257.64,75.793 +613943,258.1,77.204 +613944,258.53,78.613 +613945,255.88,74.341 +613946,256.34,75.765 +613947,256.76,77.188 +613948,257.14,78.608 +613949,254.63,74.303 +613950,255.04,75.737 +613951,255.41,77.171 +613952,255.75,78.601 +613953,253.38,74.266 +613954,253.74,75.71 +613955,254.06,77.153 +613956,254.36,78.594 +613957,252.13,74.23 +613958,252.44,75.684 +613959,252.72,77.136 +613960,252.96,78.585 +613961,250.88,74.196 +613962,251.14,75.657 +613963,251.37,77.117 +613964,251.57,78.575 +613965,249.63,74.162 +613966,249.85,75.631 +613967,250.03,77.099 +613968,250.17,78.563 +613969,248.38,74.13 +613970,248.55,75.606 +613971,248.68,77.08 +613972,248.78,78.551 +613973,247.13,74.099 +613974,247.25,75.581 +613975,247.33,77.061 +613976,247.39,78.537 +613977,245.88,74.07 +613978,245.95,75.556 +613979,245.99,77.041 +613980,245.99,78.523 +613981,244.64,74.041 +613982,244.65,75.532 +613983,244.64,77.021 +613984,244.6,78.507 +613985,243.39,74.014 +613986,243.36,75.508 +613987,243.3,77 +613988,243.2,78.49 +613989,242.14,73.988 +613990,242.06,75.484 +613991,241.95,76.979 +613992,241.81,78.472 +613993,240.89,73.963 +613994,240.76,75.461 +613995,240.6,76.958 +613996,240.41,78.452 +613997,239.64,73.94 +613998,239.46,75.439 +613999,239.26,76.936 +614000,239.02,78.432 +614001,238.39,73.917 +614002,238.17,75.416 +614003,237.91,76.914 +614004,237.62,78.41 +614005,237.14,73.896 +614006,236.87,75.395 +614007,236.57,76.892 +614008,236.23,78.387 +614009,235.89,73.877 +614010,235.57,75.373 +614011,235.22,76.869 +614012,234.83,78.363 +614013,234.64,73.858 +614014,234.27,75.352 +614015,233.87,76.846 +614016,233.44,78.338 +614017,233.39,73.841 +614018,232.98,75.332 +614019,232.53,76.822 +614020,232.05,78.311 +614021,232.14,73.825 +614022,231.68,75.311 +614023,231.18,76.798 +614024,230.65,78.284 +614025,230.89,73.81 +614026,230.38,75.292 +614027,229.84,76.774 +614028,229.26,78.255 +614029,229.64,73.796 +614030,229.08,75.272 +614031,228.49,76.749 +614032,227.87,78.225 +614033,228.39,73.784 +614034,227.78,75.253 +614035,227.15,76.724 +614036,226.47,78.194 +614037,227.13,73.772 +614038,226.48,75.235 +614039,225.8,76.698 +614040,225.08,78.162 +614041,225.88,73.762 +614042,225.19,75.216 +614043,224.46,76.672 +614044,223.69,78.128 +614045,224.63,73.753 +614046,223.89,75.199 +614047,223.11,76.646 +614048,222.3,78.094 +614049,223.37,73.746 +614050,222.59,75.181 +614051,221.77,76.619 +614052,220.91,78.058 +614053,222.12,73.739 +614054,221.29,75.164 +614055,220.42,76.592 +614056,219.52,78.021 +614057,220.86,73.734 +614058,219.99,75.148 +614059,219.08,76.564 +614060,218.13,77.983 +614061,219.61,73.729 +614062,218.69,75.131 +614063,217.74,76.537 +614064,216.74,77.944 +614065,218.35,73.726 +614066,217.39,75.116 +614067,216.39,76.508 +614068,215.35,77.904 +614069,217.09,73.724 +614070,216.09,75.1 +614071,215.05,76.48 +614072,213.96,77.863 +614073,215.84,73.724 +614074,214.79,75.085 +614075,213.71,76.451 +614076,212.58,77.82 +614077,214.58,73.724 +614078,213.49,75.07 +614079,212.36,76.421 +614080,211.19,77.777 +614081,213.32,73.725 +614082,212.19,75.056 +614083,211.02,76.392 +614084,209.8,77.732 +614085,212.06,73.728 +614086,210.89,75.042 +614087,209.68,76.362 +614088,208.42,77.687 +614089,210.8,73.731 +614090,209.59,75.028 +614091,208.34,76.331 +614092,207.04,77.64 +614093,209.53,73.736 +614094,208.29,75.015 +614095,207,76.301 +614096,205.65,77.592 +614097,208.27,73.741 +614098,206.98,75.002 +614099,205.65,76.27 +614100,204.27,77.543 +614101,207.01,73.748 +614102,205.68,74.99 +614103,204.31,76.238 +614104,202.89,77.494 +614105,205.74,73.756 +614106,204.38,74.977 +614107,202.97,76.206 +614108,201.51,77.443 +614109,204.47,73.764 +614110,203.08,74.965 +614111,201.63,76.174 +614112,200.13,77.391 +614113,203.21,73.774 +614114,201.77,74.954 +614115,200.29,76.142 +614116,198.75,77.339 +614117,201.94,73.784 +614118,200.47,74.943 +614119,198.95,76.109 +614120,197.38,77.285 +614121,200.67,73.796 +614122,199.17,74.932 +614123,197.61,76.076 +614124,196,77.231 +614125,199.4,73.808 +614126,197.86,74.921 +614127,196.28,76.043 +614128,194.63,77.175 +614129,198.12,73.822 +614130,196.56,74.911 +614131,194.94,76.01 +614132,193.26,77.119 +614133,196.85,73.836 +614134,195.25,74.901 +614135,193.6,75.976 +614136,191.88,77.061 +614137,195.58,73.851 +614138,193.95,74.891 +614139,192.26,75.942 +614140,190.51,77.003 +614141,194.3,73.867 +614142,192.64,74.881 +614143,190.93,75.907 +614144,189.14,76.944 +614145,193.02,73.883 +614146,191.34,74.872 +614147,189.59,75.872 +614148,187.78,76.885 +614149,191.75,73.901 +614150,190.03,74.863 +614151,188.25,75.838 +614152,186.41,76.824 +614153,190.47,73.919 +614154,188.72,74.855 +614155,186.92,75.802 +614156,185.04,76.763 +614157,189.19,73.938 +614158,187.42,74.846 +614159,185.58,75.767 +614160,183.68,76.701 +614161,187.9,73.958 +614162,186.11,74.838 +614163,184.25,75.731 +614164,182.32,76.638 +614165,186.62,73.978 +614166,184.8,74.83 +614167,182.92,75.695 +614168,180.96,76.574 +614169,185.34,73.999 +614170,183.49,74.822 +614171,181.58,75.659 +614172,179.6,76.51 +614173,184.05,74.021 +614174,182.18,74.815 +614175,180.25,75.623 +614176,178.24,76.445 +614177,182.76,74.043 +614178,180.87,74.808 +614179,178.92,75.586 +614180,176.88,76.379 +614181,181.47,74.066 +614182,179.56,74.801 +614183,177.58,75.549 +614184,175.53,76.313 +614185,180.18,74.09 +614186,178.25,74.794 +614187,176.25,75.512 +614188,174.17,76.246 +614189,178.89,74.114 +614190,176.94,74.787 +614191,174.92,75.475 +614192,172.82,76.179 +614193,177.6,74.139 +614194,175.63,74.781 +614195,173.59,75.438 +614196,171.47,76.111 +614197,176.3,74.164 +614198,174.32,74.775 +614199,172.26,75.4 +614200,170.12,76.042 +614201,175,74.19 +614202,173,74.768 +614203,170.93,75.363 +614204,168.78,75.973 +614205,173.71,74.216 +614206,171.69,74.763 +614207,169.6,75.325 +614208,167.43,75.904 +614209,172.41,74.242 +614210,170.38,74.757 +614211,168.28,75.287 +614212,166.09,75.834 +614213,171.1,74.269 +614214,169.06,74.751 +614215,166.95,75.249 +614216,164.74,75.763 +614217,169.8,74.296 +614218,167.75,74.746 +614219,165.62,75.21 +614220,163.4,75.693 +614221,168.5,74.324 +614222,166.43,74.74 +614223,164.29,75.172 +614224,162.07,75.621 +614225,167.19,74.352 +614226,165.12,74.735 +614227,162.97,75.134 +614228,160.73,75.55 +614229,165.88,74.38 +614230,163.8,74.73 +614231,161.64,75.095 +614232,159.39,75.478 +614233,164.58,74.409 +614234,162.49,74.725 +614235,160.32,75.056 +614236,158.06,75.406 +614237,163.26,74.438 +614238,161.17,74.72 +614239,158.99,75.018 +614240,156.73,75.333 +614241,161.95,74.467 +614242,159.85,74.715 +614243,157.67,74.979 +614244,155.4,75.26 +614245,160.64,74.496 +614246,158.53,74.71 +614247,156.35,74.94 +614248,154.07,75.187 +614249,159.32,74.525 +614250,157.21,74.705 +614251,155.02,74.901 +614252,152.74,75.114 +614253,158.01,74.555 +614254,155.89,74.7 +614255,153.7,74.862 +614256,151.42,75.041 +614257,156.69,74.584 +614258,154.57,74.696 +614259,152.38,74.823 +614260,150.09,74.967 +614261,155.37,74.614 +614262,153.25,74.691 +614263,151.06,74.784 +614264,148.77,74.894 +614265,154.05,74.643 +614266,151.93,74.686 +614267,149.74,74.745 +614268,147.45,74.82 +614269,152.72,74.673 +614270,150.61,74.682 +614271,148.42,74.706 +614272,146.13,74.747 +614273,151.4,74.703 +614274,149.29,74.677 +614275,147.1,74.666 +614276,144.82,74.673 +614277,150.07,74.733 +614278,147.97,74.673 +614279,145.78,74.627 +614280,143.5,74.599 +614281,148.74,74.762 +614282,146.64,74.668 +614283,144.46,74.588 +614284,142.19,74.525 +614285,147.41,74.792 +614286,145.32,74.663 +614287,143.15,74.549 +614288,140.88,74.452 +614289,146.08,74.821 +614290,144,74.659 +614291,141.83,74.51 +614292,139.57,74.378 +614293,144.75,74.85 +614294,142.67,74.654 +614295,140.51,74.471 +614296,138.26,74.304 +614297,143.41,74.879 +614298,141.35,74.649 +614299,139.2,74.432 +614300,136.96,74.231 +614301,142.08,74.908 +614302,140.02,74.644 +614303,137.88,74.393 +614304,135.65,74.158 +614305,140.74,74.937 +614306,138.7,74.639 +614307,136.57,74.355 +614308,134.35,74.085 +614309,139.4,74.965 +614310,137.37,74.634 +614311,135.26,74.316 +614312,133.05,74.012 +614313,138.06,74.994 +614314,136.04,74.629 +614315,133.94,74.277 +614316,131.75,73.94 +614317,136.72,75.021 +614318,134.71,74.624 +614319,132.63,74.239 +614320,130.45,73.867 +614321,135.37,75.049 +614322,133.39,74.619 +614323,131.32,74.2 +614324,129.16,73.796 +614325,134.03,75.076 +614326,132.06,74.614 +614327,130.01,74.162 +614328,127.86,73.724 +614329,132.68,75.103 +614330,130.73,74.608 +614331,128.7,74.124 +614332,126.57,73.653 +614333,131.33,75.129 +614334,129.4,74.602 +614335,127.38,74.086 +614336,125.28,73.582 +614337,129.98,75.155 +614338,128.07,74.597 +614339,126.07,74.048 +614340,123.99,73.511 +614341,128.63,75.181 +614342,126.74,74.591 +614343,124.77,74.01 +614344,122.71,73.441 +614345,127.28,75.206 +614346,125.41,74.585 +614347,123.46,73.973 +614348,121.42,73.372 +614349,125.92,75.23 +614350,124.07,74.579 +614351,122.15,73.935 +614352,120.14,73.303 +614353,124.57,75.254 +614354,122.74,74.572 +614355,120.84,73.898 +614356,118.85,73.234 +614357,123.21,75.277 +614358,121.41,74.566 +614359,119.53,73.861 +614360,117.57,73.166 +614361,121.85,75.3 +614362,120.08,74.559 +614363,118.23,73.824 +614364,116.29,73.099 +614365,120.49,75.322 +614366,118.74,74.552 +614367,116.92,73.788 +614368,115.01,73.032 +614369,119.13,75.344 +614370,117.41,74.545 +614371,115.61,73.751 +614372,113.74,72.966 +614373,117.77,75.365 +614374,116.08,74.537 +614375,114.31,73.715 +614376,112.46,72.9 +614377,116.41,75.385 +614378,114.74,74.53 +614379,113,73.679 +614380,111.19,72.836 +614381,115.04,75.405 +614382,113.41,74.522 +614383,111.7,73.643 +614384,109.92,72.771 +614385,113.67,75.424 +614386,112.07,74.514 +614387,110.4,73.608 +614388,108.65,72.708 +614389,112.31,75.442 +614390,110.73,74.505 +614391,109.09,73.572 +614392,107.38,72.645 +614393,110.94,75.459 +614394,109.4,74.497 +614395,107.79,73.537 +614396,106.11,72.583 +614397,109.57,75.476 +614398,108.06,74.488 +614399,106.49,73.503 +614400,104.84,72.522 +614401,108.2,75.492 +614402,106.72,74.479 +614403,105.18,73.468 +614404,103.57,72.462 +614405,106.82,75.507 +614406,105.39,74.47 +614407,103.88,73.434 +614408,102.31,72.402 +614409,105.45,75.521 +614410,104.05,74.46 +614411,102.58,73.4 +614412,101.05,72.344 +614413,104.08,75.534 +614414,102.71,74.45 +614415,101.28,73.366 +614416,99.785,72.286 +614417,102.7,75.547 +614418,101.37,74.44 +614419,99.98,73.333 +614420,98.524,72.229 +614421,101.32,75.558 +614422,100.03,74.429 +614423,98.68,73.3 +614424,97.264,72.173 +614425,99.945,75.569 +614426,98.692,74.418 +614427,97.38,73.267 +614428,96.005,72.118 +614429,98.566,75.579 +614430,97.352,74.407 +614431,96.08,73.235 +614432,94.748,72.064 +614433,97.186,75.588 +614434,96.012,74.396 +614435,94.781,73.203 +614436,93.491,72.01 +614437,95.805,75.595 +614438,94.671,74.384 +614439,93.483,73.171 +614440,92.235,71.958 +614441,94.423,75.602 +614442,93.331,74.372 +614443,92.184,73.14 +614444,90.98,71.907 +614445,93.041,75.608 +614446,91.99,74.36 +614447,90.886,73.109 +614448,89.727,71.857 +614449,91.657,75.613 +614450,90.649,74.347 +614451,89.589,73.078 +614452,88.474,71.808 +614453,90.273,75.617 +614454,89.307,74.334 +614455,88.291,73.047 +614456,87.222,71.759 +614457,88.888,75.62 +614458,87.965,74.321 +614459,86.994,73.017 +614460,85.97,71.712 +614461,87.502,75.622 +614462,86.623,74.307 +614463,85.697,72.988 +614464,84.72,71.666 +614465,86.115,75.623 +614466,85.281,74.293 +614467,84.4,72.958 +614468,83.47,71.622 +614469,84.727,75.622 +614470,83.939,74.278 +614471,83.104,72.929 +614472,82.221,71.578 +614473,83.339,75.621 +614474,82.596,74.263 +614475,81.808,72.901 +614476,80.973,71.535 +614477,81.951,75.619 +614478,81.253,74.248 +614479,80.512,72.873 +614480,79.725,71.494 +614481,80.561,75.615 +614482,79.91,74.233 +614483,79.216,72.845 +614484,78.478,71.453 +614485,79.171,75.611 +614486,78.567,74.217 +614487,77.921,72.817 +614488,77.231,71.414 +614489,77.781,75.605 +614490,77.224,74.201 +614491,76.626,72.79 +614492,75.985,71.376 +614493,76.39,75.598 +614494,75.88,74.184 +614495,75.33,72.764 +614496,74.739,71.339 +614497,74.998,75.59 +614498,74.536,74.167 +614499,74.035,72.737 +614500,73.494,71.303 +614501,73.606,75.581 +614502,73.193,74.149 +614503,72.741,72.711 +614504,72.249,71.268 +614505,72.214,75.571 +614506,71.849,74.132 +614507,71.446,72.686 +614508,71.004,71.235 +614509,70.821,75.559 +614510,70.505,74.113 +614511,70.151,72.661 +614512,69.76,71.203 +614513,69.428,75.547 +614514,69.161,74.095 +614515,68.857,72.636 +614516,68.516,71.172 +614517,68.035,75.533 +614518,67.816,74.076 +614519,67.563,72.612 +614520,67.273,71.142 +614521,66.641,75.518 +614522,66.472,74.056 +614523,66.269,72.588 +614524,66.029,71.113 +614525,65.247,75.502 +614526,65.128,74.037 +614527,64.974,72.564 +614528,64.786,71.086 +614529,63.853,75.485 +614530,63.784,74.017 +614531,63.68,72.541 +614532,63.543,71.06 +614533,62.459,75.467 +614534,62.439,73.996 +614535,62.386,72.518 +614536,62.3,71.035 +614537,61.064,75.447 +614538,61.095,73.975 +614539,61.092,72.496 +614540,61.056,71.011 +614541,59.67,75.427 +614542,59.75,73.954 +614543,59.798,72.474 +614544,59.813,70.989 +614545,58.276,75.405 +614546,58.406,73.932 +614547,58.504,72.452 +614548,58.57,70.967 +614549,56.881,75.382 +614550,57.062,73.91 +614551,57.21,72.431 +614552,57.327,70.947 +614553,55.486,75.358 +614554,55.717,73.887 +614555,55.916,72.411 +614556,56.084,70.929 +614557,54.092,75.332 +614558,54.373,73.865 +614559,54.622,72.39 +614560,54.84,70.911 +614561,52.698,75.306 +614562,53.029,73.841 +614563,53.328,72.37 +614564,53.596,70.894 +614565,51.304,75.278 +614566,51.685,73.818 +614567,52.034,72.351 +614568,52.353,70.879 +614569,49.909,75.249 +614570,50.341,73.794 +614571,50.74,72.332 +614572,51.108,70.865 +614573,48.516,75.219 +614574,48.997,73.769 +614575,49.446,72.313 +614576,49.864,70.852 +614577,47.122,75.188 +614578,47.653,73.744 +614579,48.151,72.295 +614580,48.619,70.841 +614581,45.729,75.156 +614582,46.309,73.719 +614583,46.857,72.277 +614584,47.374,70.83 +614585,44.336,75.122 +614586,44.966,73.693 +614587,45.562,72.259 +614588,46.128,70.821 +614589,42.943,75.088 +614590,43.622,73.667 +614591,44.268,72.242 +614592,44.882,70.813 +614593,41.551,75.052 +614594,42.279,73.641 +614595,42.973,72.225 +614596,43.635,70.806 +614597,40.159,75.015 +614598,40.936,73.614 +614599,41.678,72.209 +614600,42.388,70.801 +614601,38.768,74.977 +614602,39.593,73.587 +614603,40.383,72.193 +614604,41.14,70.796 +614605,37.377,74.938 +614606,38.25,73.56 +614607,39.087,72.177 +614608,39.892,70.793 +614609,35.987,74.898 +614610,36.908,73.532 +614611,37.792,72.162 +614612,38.643,70.79 +614613,34.598,74.857 +614614,35.565,73.503 +614615,36.496,72.147 +614616,37.393,70.789 +614617,33.209,74.814 +614618,34.223,73.475 +614619,35.2,72.133 +614620,36.143,70.789 +614621,31.82,74.771 +614622,32.881,73.446 +614623,33.904,72.119 +614624,34.891,70.79 +614625,30.433,74.726 +614626,31.54,73.416 +614627,32.608,72.105 +614628,33.639,70.792 +614629,29.046,74.681 +614630,30.199,73.387 +614631,31.311,72.091 +614632,32.387,70.795 +614633,27.66,74.634 +614634,28.858,73.357 +614635,30.014,72.078 +614636,31.133,70.8 +614637,26.274,74.586 +614638,27.517,73.326 +614639,28.717,72.066 +614640,29.878,70.805 +614641,24.89,74.538 +614642,26.177,73.296 +614643,27.419,72.053 +614644,28.623,70.811 +614645,23.506,74.488 +614646,24.837,73.265 +614647,26.122,72.041 +614648,27.367,70.819 +614649,22.124,74.438 +614650,23.497,73.233 +614651,24.824,72.029 +614652,26.109,70.827 +614653,20.742,74.386 +614654,22.157,73.202 +614655,23.525,72.018 +614656,24.851,70.836 +614657,19.361,74.334 +614658,20.818,73.17 +614659,22.226,72.007 +614660,23.591,70.846 +614661,17.981,74.28 +614662,19.48,73.137 +614663,20.927,71.996 +614664,22.331,70.858 +614665,16.603,74.226 +614666,18.141,73.105 +614667,19.628,71.986 +614668,21.069,70.87 +614669,15.225,74.17 +614670,16.803,73.072 +614671,18.328,71.976 +614672,19.806,70.883 +614673,13.848,74.114 +614674,15.466,73.038 +614675,17.028,71.966 +614676,18.543,70.897 +614677,12.473,74.057 +614678,14.129,73.005 +614679,15.728,71.956 +614680,17.277,70.911 +614681,11.099,73.999 +614682,12.792,72.971 +614683,14.427,71.947 +614684,16.011,70.927 +614685,9.726,73.941 +614686,11.456,72.937 +614687,13.125,71.938 +614688,14.744,70.943 +614689,8.3543,73.881 +614690,10.12,72.903 +614691,11.824,71.929 +614692,13.475,70.961 +614693,6.9838,73.821 +614694,8.7842,72.868 +614695,10.522,71.921 +614696,12.205,70.979 +614697,5.6147,73.76 +614698,7.4492,72.833 +614699,9.2192,71.912 +614700,10.934,70.998 +614701,4.2469,73.698 +614702,6.1146,72.798 +614703,7.9163,71.904 +614704,9.6609,71.017 +614705,2.8804,73.635 +614706,4.7805,72.763 +614707,6.6129,71.897 +614708,8.3869,71.037 +614709,1.5153,73.572 +614710,3.4469,72.727 +614711,5.3091,71.889 +614712,7.1115,71.058 +614713,0.15165,73.508 +614714,2.1138,72.691 +614715,4.0049,71.882 +614716,5.8347,71.08 +614717,358.79,73.443 +614718,0.78116,72.655 +614719,2.7001,71.875 +614720,4.5565,71.102 +614721,357.43,73.378 +614722,359.45,72.619 +614723,1.395,71.868 +614724,3.2769,71.125 +614725,356.07,73.312 +614726,358.12,72.583 +614727,0.089304,71.861 +614728,1.9958,71.148 +614729,354.71,73.246 +614730,356.79,72.546 +614731,358.78,71.855 +614732,0.71326,71.172 +614733,353.36,73.179 +614734,355.46,72.509 +614735,357.48,71.849 +614736,359.43,71.197 +614737,352,73.111 +614738,354.13,72.472 +614739,356.17,71.843 +614740,358.14,71.222 +614741,350.65,73.043 +614742,352.8,72.435 +614743,354.86,71.837 +614744,356.86,71.247 +614745,349.3,72.974 +614746,351.47,72.398 +614747,353.55,71.831 +614748,355.57,71.273 +614749,347.95,72.905 +614750,350.14,72.36 +614751,352.25,71.825 +614752,354.28,71.3 +614753,346.6,72.836 +614754,348.81,72.323 +614755,350.94,71.82 +614756,352.99,71.327 +614757,345.25,72.766 +614758,347.48,72.285 +614759,349.63,71.814 +614760,351.69,71.354 +614761,343.91,72.695 +614762,346.16,72.247 +614763,348.32,71.809 +614764,350.4,71.382 +614765,342.56,72.624 +614766,344.83,72.209 +614767,347.01,71.804 +614768,349.1,71.41 +614769,341.22,72.553 +614770,343.5,72.171 +614771,345.69,71.799 +614772,347.8,71.438 +614773,339.88,72.482 +614774,342.18,72.132 +614775,344.38,71.794 +614776,346.5,71.467 +614777,338.54,72.41 +614778,340.86,72.094 +614779,343.07,71.789 +614780,345.2,71.495 +614781,337.21,72.338 +614782,339.53,72.056 +614783,341.76,71.785 +614784,343.9,71.524 +614785,335.87,72.266 +614786,338.21,72.017 +614787,340.44,71.78 +614788,342.6,71.554 +614789,334.54,72.193 +614790,336.88,71.979 +614791,339.13,71.775 +614792,341.29,71.583 +614793,333.21,72.12 +614794,335.56,71.94 +614795,337.82,71.771 +614796,339.98,71.613 +614797,331.88,72.048 +614798,334.24,71.901 +614799,336.5,71.766 +614800,338.67,71.642 +614801,330.55,71.975 +614802,332.92,71.862 +614803,335.19,71.762 +614804,337.36,71.672 +614805,329.23,71.902 +614806,331.6,71.824 +614807,333.87,71.758 +614808,336.05,71.702 +614809,327.9,71.828 +614810,330.28,71.785 +614811,332.55,71.753 +614812,334.73,71.732 +614813,326.58,71.755 +614814,328.96,71.746 +614815,331.24,71.749 +614816,333.42,71.762 +614817,325.26,71.682 +614818,327.64,71.707 +614819,329.92,71.744 +614820,332.1,71.791 +614821,323.94,71.609 +614822,326.32,71.669 +614823,328.6,71.74 +614824,330.78,71.821 +614825,322.63,71.536 +614826,325.01,71.63 +614827,327.28,71.735 +614828,329.46,71.851 +614829,321.31,71.462 +614830,323.69,71.591 +614831,325.96,71.731 +614832,328.14,71.881 +614833,320,71.389 +614834,322.37,71.552 +614835,324.64,71.726 +614836,326.81,71.91 +614837,318.69,71.316 +614838,321.06,71.514 +614839,323.32,71.722 +614840,325.49,71.939 +614841,317.38,71.244 +614842,319.74,71.475 +614843,322,71.717 +614844,324.16,71.969 +614845,316.07,71.171 +614846,318.43,71.436 +614847,320.68,71.712 +614848,322.83,71.997 +614849,314.77,71.099 +614850,317.12,71.398 +614851,319.36,71.708 +614852,321.5,72.026 +614853,313.46,71.026 +614854,315.8,71.359 +614855,318.03,71.703 +614856,320.17,72.055 +614857,312.16,70.954 +614858,314.49,71.321 +614859,316.71,71.698 +614860,318.83,72.083 +614861,310.86,70.883 +614862,313.18,71.283 +614863,315.39,71.693 +614864,317.5,72.11 +614865,309.56,70.811 +614866,311.87,71.245 +614867,314.06,71.688 +614868,316.16,72.138 +614869,308.27,70.74 +614870,310.56,71.207 +614871,312.74,71.682 +614872,314.82,72.165 +614873,306.97,70.67 +614874,309.25,71.169 +614875,311.41,71.677 +614876,313.48,72.192 +614877,305.68,70.599 +614878,307.94,71.131 +614879,310.08,71.671 +614880,312.14,72.218 +614881,304.39,70.529 +614882,306.63,71.094 +614883,308.76,71.666 +614884,310.8,72.244 +614885,303.1,70.46 +614886,305.32,71.056 +614887,307.43,71.66 +614888,309.45,72.269 +614889,301.81,70.391 +614890,304.01,71.019 +614891,306.1,71.654 +614892,308.1,72.294 +614893,300.52,70.323 +614894,302.7,70.982 +614895,304.78,71.648 +614896,306.75,72.318 +614897,299.24,70.255 +614898,301.4,70.945 +614899,303.45,71.641 +614900,305.41,72.342 +614901,297.96,70.187 +614902,300.09,70.908 +614903,302.12,71.635 +614904,304.05,72.365 +614905,296.68,70.121 +614906,298.78,70.871 +614907,300.79,71.628 +614908,302.7,72.388 +614909,295.4,70.054 +614910,297.48,70.835 +614911,299.46,71.621 +614912,301.35,72.41 +614913,294.12,69.989 +614914,296.17,70.799 +614915,298.13,71.614 +614916,299.99,72.431 +614917,292.84,69.924 +614918,294.87,70.763 +614919,296.8,71.606 +614920,298.63,72.452 +614921,291.57,69.859 +614922,293.57,70.727 +614923,295.47,71.599 +614924,297.28,72.472 +614925,290.3,69.796 +614926,292.26,70.692 +614927,294.13,71.591 +614928,295.92,72.491 +614929,289.02,69.733 +614930,290.96,70.656 +614931,292.8,71.582 +614932,294.55,72.51 +614933,287.75,69.671 +614934,289.66,70.621 +614935,291.47,71.574 +614936,293.19,72.528 +614937,286.49,69.609 +614938,288.36,70.586 +614939,290.14,71.565 +614940,291.83,72.545 +614941,285.22,69.549 +614942,287.06,70.552 +614943,288.8,71.557 +614944,290.46,72.561 +614945,283.95,69.489 +614946,285.76,70.518 +614947,287.47,71.547 +614948,289.1,72.576 +614949,282.69,69.43 +614950,284.46,70.484 +614951,286.13,71.538 +614952,287.73,72.591 +614953,281.43,69.372 +614954,283.16,70.45 +614955,284.8,71.528 +614956,286.36,72.605 +614957,280.16,69.315 +614958,281.86,70.417 +614959,283.46,71.518 +614960,284.99,72.618 +614961,278.9,69.258 +614962,280.56,70.384 +614963,282.13,71.508 +614964,283.62,72.63 +614965,277.64,69.203 +614966,279.26,70.351 +614967,280.79,71.497 +614968,282.24,72.641 +614969,276.39,69.148 +614970,277.96,70.318 +614971,279.45,71.486 +614972,280.87,72.651 +614973,275.13,69.095 +614974,276.66,70.286 +614975,278.12,71.475 +614976,279.5,72.66 +614977,273.87,69.042 +614978,275.37,70.254 +614979,276.78,71.463 +614980,278.12,72.668 +614981,272.62,68.991 +614982,274.07,70.223 +614983,275.44,71.452 +614984,276.74,72.676 +614985,271.37,68.94 +614986,272.77,70.191 +614987,274.1,71.439 +614988,275.37,72.682 +614989,270.12,68.89 +614990,271.48,70.16 +614991,272.77,71.427 +614992,273.99,72.687 +614993,268.86,68.842 +614994,270.18,70.13 +614995,271.43,71.414 +614996,272.61,72.692 +614997,267.61,68.794 +614998,268.89,70.1 +614999,270.09,71.401 +615000,271.22,72.695 +615001,266.37,68.748 +615002,267.59,70.07 +615003,268.75,71.387 +615004,269.84,72.697 +615005,265.12,68.702 +615006,266.3,70.04 +615007,267.41,71.373 +615008,268.46,72.698 +615009,263.87,68.658 +615010,265,70.011 +615011,266.07,71.359 +615012,267.08,72.699 +615013,262.62,68.615 +615014,263.71,69.982 +615015,264.73,71.344 +615016,265.69,72.698 +615017,261.38,68.573 +615018,262.41,69.954 +615019,263.39,71.329 +615020,264.31,72.696 +615021,260.13,68.532 +615022,261.12,69.926 +615023,262.05,71.313 +615024,262.92,72.692 +615025,258.89,68.492 +615026,259.83,69.898 +615027,260.71,71.298 +615028,261.53,72.688 +615029,257.65,68.453 +615030,258.53,69.871 +615031,259.37,71.281 +615032,260.15,72.683 +615033,256.4,68.416 +615034,257.24,69.844 +615035,258.02,71.265 +615036,258.76,72.676 +615037,255.16,68.379 +615038,255.95,69.818 +615039,256.68,71.248 +615040,257.37,72.669 +615041,253.92,68.344 +615042,254.66,69.791 +615043,255.34,71.231 +615044,255.98,72.66 +615045,252.68,68.31 +615046,253.36,69.766 +615047,254,71.213 +615048,254.59,72.65 +615049,251.44,68.277 +615050,252.07,69.74 +615051,252.66,71.195 +615052,253.2,72.639 +615053,250.2,68.246 +615054,250.78,69.715 +615055,251.32,71.176 +615056,251.81,72.627 +615057,248.96,68.215 +615058,249.49,69.691 +615059,249.97,71.157 +615060,250.42,72.614 +615061,247.72,68.186 +615062,248.2,69.666 +615063,248.63,71.138 +615064,249.02,72.599 +615065,246.48,68.158 +615066,246.91,69.643 +615067,247.29,71.118 +615068,247.63,72.583 +615069,245.24,68.131 +615070,245.61,69.619 +615071,245.95,71.098 +615072,246.24,72.566 +615073,244,68.106 +615074,244.32,69.596 +615075,244.6,71.078 +615076,244.84,72.548 +615077,242.77,68.081 +615078,243.03,69.574 +615079,243.26,71.057 +615080,243.45,72.529 +615081,241.53,68.058 +615082,241.74,69.551 +615083,241.92,71.035 +615084,242.06,72.509 +615085,240.29,68.036 +615086,240.45,69.529 +615087,240.57,71.014 +615088,240.66,72.487 +615089,239.05,68.015 +615090,239.16,69.508 +615091,239.23,70.992 +615092,239.27,72.464 +615093,237.81,67.996 +615094,237.87,69.487 +615095,237.89,70.969 +615096,237.88,72.44 +615097,236.58,67.977 +615098,236.58,69.466 +615099,236.55,70.946 +615100,236.48,72.415 +615101,235.34,67.96 +615102,235.29,69.446 +615103,235.2,70.923 +615104,235.09,72.389 +615105,234.1,67.945 +615106,234,69.426 +615107,233.86,70.899 +615108,233.69,72.361 +615109,232.86,67.93 +615110,232.71,69.407 +615111,232.52,70.875 +615112,232.3,72.332 +615113,231.62,67.916 +615114,231.42,69.388 +615115,231.17,70.85 +615116,230.9,72.303 +615117,230.39,67.904 +615118,230.12,69.369 +615119,229.83,70.825 +615120,229.51,72.271 +615121,229.15,67.893 +615122,228.83,69.351 +615123,228.49,70.8 +615124,228.11,72.239 +615125,227.91,67.883 +615126,227.54,69.333 +615127,227.15,70.774 +615128,226.72,72.206 +615129,226.67,67.875 +615130,226.25,69.316 +615131,225.8,70.748 +615132,225.33,72.171 +615133,225.43,67.867 +615134,224.96,69.299 +615135,224.46,70.722 +615136,223.93,72.136 +615137,224.19,67.861 +615138,223.67,69.282 +615139,223.12,70.695 +615140,222.54,72.099 +615141,222.95,67.856 +615142,222.38,69.265 +615143,221.78,70.668 +615144,221.15,72.061 +615145,221.71,67.852 +615146,221.09,69.25 +615147,220.44,70.64 +615148,219.75,72.022 +615149,220.47,67.849 +615150,219.79,69.234 +615151,219.09,70.612 +615152,218.36,71.981 +615153,219.22,67.847 +615154,218.5,69.219 +615155,217.75,70.584 +615156,216.97,71.94 +615157,217.98,67.846 +615158,217.21,69.204 +615159,216.41,70.555 +615160,215.58,71.898 +615161,216.74,67.847 +615162,215.92,69.189 +615163,215.07,70.526 +615164,214.19,71.854 +615165,215.49,67.848 +615166,214.63,69.175 +615167,213.73,70.496 +615168,212.8,71.81 +615169,214.25,67.851 +615170,213.33,69.162 +615171,212.39,70.466 +615172,211.41,71.764 +615173,213,67.855 +615174,212.04,69.148 +615175,211.05,70.436 +615176,210.02,71.717 +615177,211.76,67.859 +615178,210.75,69.135 +615179,209.71,70.405 +615180,208.63,71.669 +615181,210.51,67.865 +615182,209.45,69.122 +615183,208.37,70.375 +615184,207.24,71.621 +615185,209.26,67.872 +615186,208.16,69.11 +615187,207.03,70.343 +615188,205.85,71.571 +615189,208.01,67.88 +615190,206.87,69.098 +615191,205.69,70.312 +615192,204.47,71.52 +615193,206.76,67.889 +615194,205.57,69.086 +615195,204.35,70.28 +615196,203.08,71.468 +615197,205.51,67.898 +615198,204.28,69.075 +615199,203.01,70.247 +615200,201.7,71.415 +615201,204.26,67.909 +615202,202.98,69.064 +615203,201.67,70.215 +615204,200.31,71.362 +615205,203.01,67.921 +615206,201.69,69.053 +615207,200.33,70.182 +615208,198.93,71.307 +615209,201.75,67.934 +615210,200.39,69.042 +615211,198.99,70.149 +615212,197.55,71.251 +615213,200.5,67.947 +615214,199.1,69.032 +615215,197.66,70.115 +615216,196.17,71.195 +615217,199.24,67.961 +615218,197.8,69.022 +615219,196.32,70.081 +615220,194.79,71.137 +615221,197.99,67.977 +615222,196.5,69.013 +615223,194.98,70.047 +615224,193.41,71.079 +615225,196.73,67.993 +615226,195.21,69.003 +615227,193.64,70.013 +615228,192.03,71.02 +615229,195.47,68.01 +615230,193.91,68.994 +615231,192.31,69.978 +615232,190.65,70.96 +615233,194.21,68.027 +615234,192.61,68.985 +615235,190.97,69.943 +615236,189.28,70.899 +615237,192.95,68.046 +615238,191.32,68.977 +615239,189.64,69.908 +615240,187.9,70.838 +615241,191.68,68.065 +615242,190.02,68.968 +615243,188.3,69.872 +615244,186.53,70.776 +615245,190.42,68.085 +615246,188.72,68.96 +615247,186.97,69.836 +615248,185.16,70.712 +615249,189.15,68.106 +615250,187.42,68.952 +615251,185.63,69.8 +615252,183.79,70.649 +615253,187.88,68.127 +615254,186.12,68.945 +615255,184.3,69.764 +615256,182.42,70.584 +615257,186.62,68.149 +615258,184.82,68.937 +615259,182.97,69.728 +615260,181.05,70.519 +615261,185.35,68.172 +615262,183.52,68.93 +615263,181.64,69.691 +615264,179.68,70.453 +615265,184.07,68.195 +615266,182.22,68.923 +615267,180.3,69.654 +615268,178.32,70.386 +615269,182.8,68.219 +615270,180.92,68.916 +615271,178.97,69.617 +615272,176.96,70.319 +615273,181.53,68.243 +615274,179.61,68.91 +615275,177.64,69.58 +615276,175.59,70.252 +615277,180.25,68.268 +615278,178.31,68.903 +615279,176.31,69.542 +615280,174.23,70.183 +615281,178.97,68.293 +615282,177.01,68.897 +615283,174.98,69.504 +615284,172.87,70.114 +615285,177.69,68.319 +615286,175.71,68.891 +615287,173.65,69.467 +615288,171.52,70.045 +615289,176.41,68.346 +615290,174.4,68.885 +615291,172.32,69.428 +615292,170.16,69.975 +615293,175.13,68.372 +615294,173.1,68.879 +615295,170.99,69.39 +615296,168.8,69.905 +615297,173.85,68.4 +615298,171.79,68.874 +615299,169.66,69.352 +615300,167.45,69.834 +615301,172.56,68.427 +615302,170.49,68.868 +615303,168.34,69.313 +615304,166.1,69.763 +615305,171.28,68.455 +615306,169.18,68.863 +615307,167.01,69.275 +615308,164.75,69.691 +615309,169.99,68.483 +615310,167.87,68.857 +615311,165.68,69.236 +615312,163.4,69.619 +615313,168.7,68.512 +615314,166.57,68.852 +615315,164.36,69.197 +615316,162.06,69.547 +615317,167.41,68.541 +615318,165.26,68.847 +615319,163.03,69.158 +615320,160.71,69.474 +615321,166.11,68.57 +615322,163.95,68.842 +615323,161.71,69.119 +615324,159.37,69.401 +615325,164.82,68.599 +615326,162.64,68.837 +615327,160.39,69.08 +615328,158.03,69.328 +615329,163.52,68.628 +615330,161.33,68.832 +615331,159.06,69.041 +615332,156.69,69.255 +615333,162.22,68.658 +615334,160.02,68.827 +615335,157.74,69.001 +615336,155.35,69.181 +615337,160.92,68.688 +615338,158.71,68.822 +615339,156.42,68.962 +615340,154.01,69.107 +615341,159.62,68.717 +615342,157.4,68.817 +615343,155.1,68.923 +615344,152.68,69.033 +615345,158.32,68.747 +615346,156.09,68.813 +615347,153.77,68.883 +615348,151.35,68.959 +615349,157.01,68.777 +615350,154.78,68.808 +615351,152.45,68.844 +615352,150.02,68.885 +615353,155.7,68.807 +615354,153.47,68.803 +615355,151.13,68.804 +615356,148.69,68.81 +615357,154.4,68.837 +615358,152.15,68.798 +615359,149.82,68.765 +615360,147.36,68.736 +615361,153.09,68.867 +615362,150.84,68.794 +615363,148.5,68.725 +615364,146.04,68.662 +615365,151.77,68.897 +615366,149.53,68.789 +615367,147.18,68.685 +615368,144.72,68.587 +615369,150.46,68.927 +615370,148.21,68.784 +615371,145.86,68.646 +615372,143.39,68.513 +615373,149.15,68.956 +615374,146.9,68.779 +615375,144.55,68.606 +615376,142.08,68.439 +615377,147.83,68.986 +615378,145.58,68.774 +615379,143.23,68.567 +615380,140.76,68.365 +615381,146.51,69.015 +615382,144.26,68.769 +615383,141.91,68.527 +615384,139.44,68.291 +615385,145.19,69.044 +615386,142.95,68.764 +615387,140.6,68.488 +615388,138.13,68.217 +615389,143.87,69.073 +615390,141.63,68.759 +615391,139.28,68.449 +615392,136.82,68.143 +615393,142.54,69.101 +615394,140.31,68.754 +615395,137.97,68.409 +615396,135.51,68.07 +615397,141.22,69.13 +615398,138.99,68.748 +615399,136.66,68.37 +615400,134.2,67.996 +615401,139.89,69.158 +615402,137.67,68.743 +615403,135.35,68.331 +615404,132.89,67.923 +615405,138.56,69.185 +615406,136.35,68.737 +615407,134.03,68.292 +615408,131.59,67.851 +615409,137.23,69.212 +615410,135.03,68.732 +615411,132.72,68.253 +615412,130.29,67.778 +615413,135.9,69.239 +615414,133.71,68.726 +615415,131.41,68.215 +615416,128.99,67.706 +615417,134.57,69.266 +615418,132.39,68.72 +615419,130.1,68.176 +615420,127.69,67.635 +615421,133.23,69.292 +615422,131.07,68.714 +615423,128.79,68.137 +615424,126.39,67.564 +615425,131.89,69.317 +615426,129.74,68.708 +615427,127.49,68.099 +615428,125.1,67.493 +615429,130.55,69.342 +615430,128.42,68.701 +615431,126.18,68.061 +615432,123.81,67.422 +615433,129.21,69.367 +615434,127.1,68.695 +615435,124.87,68.023 +615436,122.52,67.352 +615437,127.87,69.391 +615438,125.77,68.688 +615439,123.56,67.985 +615440,121.23,67.283 +615441,126.53,69.414 +615442,124.45,68.681 +615443,122.26,67.947 +615444,119.94,67.214 +615445,125.18,69.437 +615446,123.12,68.674 +615447,120.95,67.91 +615448,118.65,67.146 +615449,123.84,69.459 +615450,121.8,68.666 +615451,119.65,67.872 +615452,117.37,67.078 +615453,122.49,69.481 +615454,120.47,68.659 +615455,118.34,67.835 +615456,116.09,67.011 +615457,121.14,69.501 +615458,119.14,68.651 +615459,117.04,67.798 +615460,114.81,66.945 +615461,119.79,69.522 +615462,117.82,68.643 +615463,115.73,67.761 +615464,113.53,66.879 +615465,118.44,69.541 +615466,116.49,68.634 +615467,114.43,67.725 +615468,112.25,66.814 +615469,117.08,69.56 +615470,115.16,68.626 +615471,113.13,67.689 +615472,110.98,66.75 +615473,115.73,69.578 +615474,113.83,68.617 +615475,111.83,67.653 +615476,109.71,66.686 +615477,114.37,69.595 +615478,112.5,68.608 +615479,110.53,67.617 +615480,108.43,66.623 +615481,113.01,69.611 +615482,111.17,68.598 +615483,109.23,67.581 +615484,107.16,66.561 +615485,111.65,69.627 +615486,109.84,68.589 +615487,107.93,67.546 +615488,105.9,66.5 +615489,110.29,69.641 +615490,108.51,68.579 +615491,106.63,67.511 +615492,104.63,66.439 +615493,108.93,69.655 +615494,107.18,68.569 +615495,105.33,67.476 +615496,103.36,66.379 +615497,107.56,69.668 +615498,105.85,68.558 +615499,104.03,67.442 +615500,102.1,66.321 +615501,106.2,69.68 +615502,104.51,68.547 +615503,102.73,67.408 +615504,100.84,66.263 +615505,104.83,69.691 +615506,103.18,68.536 +615507,101.43,67.374 +615508,99.578,66.206 +615509,103.46,69.702 +615510,101.85,68.525 +615511,100.14,67.34 +615512,98.319,66.15 +615513,102.09,69.711 +615514,100.51,68.513 +615515,98.841,67.307 +615516,97.061,66.094 +615517,100.72,69.719 +615518,99.18,68.501 +615519,97.545,67.274 +615520,95.805,66.04 +615521,99.351,69.727 +615522,97.846,68.488 +615523,96.249,67.241 +615524,94.55,65.987 +615525,97.978,69.733 +615526,96.511,68.476 +615527,94.954,67.209 +615528,93.296,65.935 +615529,96.604,69.738 +615530,95.176,68.462 +615531,93.659,67.177 +615532,92.044,65.884 +615533,95.229,69.742 +615534,93.84,68.449 +615535,92.364,67.146 +615536,90.792,65.833 +615537,93.853,69.746 +615538,92.504,68.435 +615539,91.07,67.114 +615540,89.542,65.784 +615541,92.476,69.748 +615542,91.168,68.421 +615543,89.777,67.083 +615544,88.294,65.736 +615545,91.098,69.749 +615546,89.831,68.406 +615547,88.484,67.053 +615548,87.046,65.689 +615549,89.719,69.749 +615550,88.494,68.391 +615551,87.191,67.022 +615552,85.799,65.643 +615553,88.339,69.748 +615554,87.157,68.376 +615555,85.898,66.993 +615556,84.554,65.599 +615557,86.958,69.746 +615558,85.82,68.36 +615559,84.606,66.963 +615560,83.309,65.555 +615561,85.575,69.742 +615562,84.482,68.344 +615563,83.314,66.934 +615564,82.066,65.513 +615565,84.193,69.738 +615566,83.144,68.328 +615567,82.023,66.905 +615568,80.823,65.471 +615569,82.809,69.732 +615570,81.805,68.311 +615571,80.732,66.877 +615572,79.582,65.431 +615573,81.424,69.726 +615574,80.467,68.294 +615575,79.441,66.849 +615576,78.341,65.392 +615577,80.039,69.718 +615578,79.128,68.276 +615579,78.15,66.821 +615580,77.101,65.354 +615581,78.653,69.709 +615582,77.788,68.258 +615583,76.86,66.794 +615584,75.862,65.317 +615585,77.266,69.698 +615586,76.449,68.24 +615587,75.57,66.767 +615588,74.623,65.282 +615589,75.878,69.687 +615590,75.109,68.221 +615591,74.28,66.74 +615592,73.386,65.247 +615593,74.49,69.674 +615594,73.77,68.201 +615595,72.991,66.714 +615596,72.149,65.214 +615597,73.101,69.661 +615598,72.43,68.182 +615599,71.702,66.689 +615600,70.912,65.182 +615601,71.712,69.646 +615602,71.089,68.162 +615603,70.412,66.663 +615604,69.676,65.152 +615605,70.321,69.629 +615606,69.749,68.141 +615607,69.124,66.638 +615608,68.441,65.122 +615609,68.931,69.612 +615610,68.408,68.12 +615611,67.835,66.614 +615612,67.206,65.094 +615613,67.54,69.593 +615614,67.068,68.099 +615615,66.546,66.59 +615616,65.972,65.067 +615617,66.148,69.574 +615618,65.727,68.077 +615619,65.258,66.566 +615620,64.738,65.041 +615621,64.756,69.553 +615622,64.386,68.055 +615623,63.97,66.543 +615624,63.504,65.017 +615625,63.364,69.53 +615626,63.045,68.033 +615627,62.682,66.52 +615628,62.271,64.993 +615629,61.971,69.507 +615630,61.704,68.01 +615631,61.394,66.497 +615632,61.038,64.971 +615633,60.578,69.482 +615634,60.363,67.986 +615635,60.106,66.475 +615636,59.805,64.95 +615637,59.185,69.456 +615638,59.021,67.962 +615639,58.818,66.454 +615640,58.572,64.931 +615641,57.792,69.429 +615642,57.68,67.938 +615643,57.53,66.432 +615644,57.34,64.912 +615645,56.398,69.401 +615646,56.339,67.914 +615647,56.242,66.411 +615648,56.107,64.895 +615649,55.004,69.371 +615650,54.997,67.888 +615651,54.955,66.391 +615652,54.875,64.879 +615653,53.61,69.341 +615654,53.656,67.863 +615655,53.667,66.371 +615656,53.642,64.865 +615657,52.216,69.309 +615658,52.314,67.837 +615659,52.38,66.351 +615660,52.41,64.851 +615661,50.822,69.276 +615662,50.973,67.811 +615663,51.092,66.332 +615664,51.177,64.839 +615665,49.428,69.241 +615666,49.632,67.784 +615667,49.804,66.313 +615668,49.945,64.828 +615669,48.033,69.206 +615670,48.29,67.757 +615671,48.517,66.294 +615672,48.712,64.818 +615673,46.639,69.169 +615674,46.949,67.73 +615675,47.229,66.276 +615676,47.479,64.81 +615677,45.245,69.131 +615678,45.608,67.702 +615679,45.941,66.258 +615680,46.246,64.802 +615681,43.851,69.092 +615682,44.267,67.673 +615683,44.654,66.241 +615684,45.012,64.796 +615685,42.458,69.052 +615686,42.926,67.645 +615687,43.366,66.224 +615688,43.778,64.791 +615689,41.064,69.01 +615690,41.585,67.615 +615691,42.078,66.207 +615692,42.544,64.787 +615693,39.671,68.968 +615694,40.244,67.586 +615695,40.79,66.191 +615696,41.309,64.784 +615697,38.278,68.924 +615698,38.903,67.556 +615699,39.502,66.175 +615700,40.074,64.783 +615701,36.886,68.879 +615702,37.563,67.526 +615703,38.213,66.159 +615704,38.838,64.782 +615705,35.493,68.834 +615706,36.222,67.495 +615707,36.925,66.144 +615708,37.602,64.783 +615709,34.102,68.787 +615710,34.882,67.464 +615711,35.636,66.13 +615712,36.365,64.784 +615713,32.71,68.738 +615714,33.542,67.433 +615715,34.347,66.115 +615716,35.127,64.787 +615717,31.319,68.689 +615718,32.202,67.401 +615719,33.058,66.101 +615720,33.889,64.791 +615721,29.929,68.639 +615722,30.863,67.369 +615723,31.769,66.087 +615724,32.65,64.796 +615725,28.539,68.588 +615726,29.523,67.336 +615727,30.48,66.074 +615728,31.41,64.802 +615729,27.15,68.535 +615730,28.184,67.303 +615731,29.19,66.061 +615732,30.17,64.809 +615733,25.761,68.482 +615734,26.845,67.27 +615735,27.9,66.048 +615736,28.929,64.817 +615737,24.373,68.428 +615738,25.507,67.237 +615739,26.61,66.036 +615740,27.686,64.826 +615741,22.986,68.372 +615742,24.168,67.203 +615743,25.32,66.023 +615744,26.443,64.836 +615745,21.6,68.316 +615746,22.83,67.168 +615747,24.029,66.012 +615748,25.2,64.847 +615749,20.214,68.259 +615750,21.493,67.134 +615751,22.738,66 +615752,23.955,64.859 +615753,18.829,68.2 +615754,20.155,67.099 +615755,21.447,65.989 +615756,22.709,64.872 +615757,17.445,68.141 +615758,18.818,67.064 +615759,20.156,65.978 +615760,21.462,64.886 +615761,16.062,68.081 +615762,17.481,67.028 +615763,18.864,65.968 +615764,20.214,64.901 +615765,14.68,68.02 +615766,16.145,66.992 +615767,17.572,65.957 +615768,18.965,64.916 +615769,13.299,67.958 +615770,14.809,66.956 +615771,16.279,65.947 +615772,17.714,64.933 +615773,11.919,67.895 +615774,13.473,66.92 +615775,14.986,65.937 +615776,16.463,64.95 +615777,10.54,67.832 +615778,12.138,66.883 +615779,13.693,65.928 +615780,15.21,64.968 +615781,9.1616,67.768 +615782,10.803,66.846 +615783,12.399,65.919 +615784,13.956,64.986 +615785,7.7847,67.702 +615786,9.4682,66.809 +615787,11.105,65.91 +615788,12.701,65.006 +615789,6.4089,67.637 +615790,8.1341,66.771 +615791,9.8108,65.901 +615792,11.445,65.026 +615793,5.0344,67.57 +615794,6.8004,66.734 +615795,8.516,65.892 +615796,10.187,65.047 +615797,3.661,67.503 +615798,5.4671,66.696 +615799,7.2207,65.884 +615800,8.9283,65.069 +615801,2.2889,67.434 +615802,4.1343,66.657 +615803,5.925,65.876 +615804,7.6679,65.091 +615805,0.91811,67.366 +615806,2.802,66.619 +615807,4.6289,65.868 +615808,6.4062,65.114 +615809,359.55,67.296 +615810,1.4701,66.58 +615811,3.3324,65.86 +615812,5.143,65.138 +615813,358.18,67.226 +615814,0.13873,66.541 +615815,2.0354,65.853 +615816,3.8785,65.162 +615817,356.81,67.156 +615818,358.81,66.502 +615819,0.73796,65.845 +615820,2.6124,65.186 +615821,355.45,67.084 +615822,357.48,66.463 +615823,359.44,65.838 +615824,1.3449,65.212 +615825,354.08,67.013 +615826,356.15,66.423 +615827,358.14,65.831 +615828,0.075926,65.237 +615829,352.72,66.94 +615830,354.82,66.384 +615831,356.84,65.824 +615832,358.81,65.263 +615833,351.36,66.868 +615834,353.49,66.344 +615835,355.54,65.818 +615836,357.53,65.29 +615837,350,66.794 +615838,352.16,66.304 +615839,354.24,65.811 +615840,356.26,65.317 +615841,348.64,66.721 +615842,350.83,66.264 +615843,352.94,65.804 +615844,354.98,65.345 +615845,347.29,66.646 +615846,349.51,66.223 +615847,351.64,65.798 +615848,353.71,65.372 +615849,345.93,66.572 +615850,348.18,66.183 +615851,350.34,65.792 +615852,352.43,65.4 +615853,344.58,66.497 +615854,346.85,66.142 +615855,349.04,65.786 +615856,351.15,65.429 +615857,343.23,66.422 +615858,345.53,66.101 +615859,347.74,65.78 +615860,349.87,65.458 +615861,341.88,66.346 +615862,344.2,66.061 +615863,346.43,65.774 +615864,348.58,65.487 +615865,340.53,66.27 +615866,342.88,66.02 +615867,345.13,65.768 +615868,347.3,65.516 +615869,339.18,66.194 +615870,341.55,65.979 +615871,343.83,65.762 +615872,346.01,65.545 +615873,337.84,66.117 +615874,340.23,65.938 +615875,342.52,65.756 +615876,344.72,65.575 +615877,336.5,66.041 +615878,338.91,65.896 +615879,341.22,65.751 +615880,343.43,65.605 +615881,335.16,65.964 +615882,337.59,65.855 +615883,339.91,65.745 +615884,342.14,65.634 +615885,333.82,65.887 +615886,336.26,65.814 +615887,338.6,65.739 +615888,340.85,65.664 +615889,332.48,65.81 +615890,334.94,65.772 +615891,337.3,65.734 +615892,339.55,65.694 +615893,331.14,65.733 +615894,333.62,65.731 +615895,335.99,65.728 +615896,338.26,65.724 +615897,329.81,65.656 +615898,332.3,65.69 +615899,334.68,65.722 +615900,336.96,65.754 +615901,328.48,65.578 +615902,330.99,65.648 +615903,333.37,65.717 +615904,335.66,65.784 +615905,327.15,65.501 +615906,329.67,65.607 +615907,332.06,65.711 +615908,334.36,65.814 +615909,325.82,65.424 +615910,328.35,65.565 +615911,330.75,65.705 +615912,333.05,65.844 +615913,324.5,65.347 +615914,327.03,65.524 +615915,329.44,65.7 +615916,331.75,65.874 +615917,323.17,65.27 +615918,325.72,65.483 +615919,328.13,65.694 +615920,330.44,65.903 +615921,321.85,65.193 +615922,324.4,65.441 +615923,326.82,65.688 +615924,329.13,65.933 +615925,320.53,65.116 +615926,323.09,65.4 +615927,325.51,65.682 +615928,327.82,65.962 +615929,319.21,65.039 +615930,321.77,65.359 +615931,324.2,65.676 +615932,326.51,65.991 +615933,317.9,64.963 +615934,320.46,65.317 +615935,322.88,65.67 +615936,325.19,66.02 +615937,316.58,64.886 +615938,319.14,65.276 +615939,321.57,65.664 +615940,323.88,66.048 +615941,315.27,64.81 +615942,317.83,65.235 +615943,320.26,65.657 +615944,322.56,66.076 +615945,313.96,64.734 +615946,316.52,65.194 +615947,318.94,65.651 +615948,321.24,66.104 +615949,312.65,64.659 +615950,315.21,65.153 +615951,317.62,65.644 +615952,319.92,66.131 +615953,311.34,64.584 +615954,313.9,65.113 +615955,316.31,65.637 +615956,318.6,66.158 +615957,310.04,64.509 +615958,312.59,65.072 +615959,314.99,65.631 +615960,317.27,66.185 +615961,308.74,64.435 +615962,311.28,65.031 +615963,313.67,65.624 +615964,315.95,66.211 +615965,307.44,64.361 +615966,309.97,64.991 +615967,312.36,65.616 +615968,314.62,66.237 +615969,306.14,64.287 +615970,308.66,64.951 +615971,311.04,65.609 +615972,313.29,66.262 +615973,304.84,64.214 +615974,307.35,64.911 +615975,309.72,65.602 +615976,311.96,66.287 +615977,303.55,64.142 +615978,306.05,64.871 +615979,308.4,65.594 +615980,310.62,66.311 +615981,302.25,64.07 +615982,304.74,64.831 +615983,307.08,65.586 +615984,309.29,66.334 +615985,300.96,63.999 +615986,303.44,64.792 +615987,305.76,65.578 +615988,307.95,66.357 +615989,299.68,63.928 +615990,302.13,64.752 +615991,304.44,65.569 +615992,306.62,66.379 +615993,298.39,63.858 +615994,300.83,64.713 +615995,303.12,65.561 +615996,305.28,66.401 +615997,297.1,63.788 +615998,299.52,64.674 +615999,301.79,65.552 +616000,303.93,66.422 +616001,295.82,63.719 +616002,298.22,64.635 +616003,300.47,65.543 +616004,302.59,66.442 +616005,294.54,63.651 +616006,296.92,64.597 +616007,299.15,65.534 +616008,301.25,66.461 +616009,293.26,63.584 +616010,295.62,64.558 +616011,297.82,65.524 +616012,299.9,66.48 +616013,291.98,63.517 +616014,294.31,64.52 +616015,296.5,65.514 +616016,298.55,66.498 +616017,290.71,63.451 +616018,293.01,64.482 +616019,295.17,65.504 +616020,297.2,66.515 +616021,289.43,63.386 +616022,291.71,64.445 +616023,293.85,65.494 +616024,295.85,66.532 +616025,288.16,63.321 +616026,290.41,64.408 +616027,292.52,65.483 +616028,294.5,66.547 +616029,286.89,63.258 +616030,289.12,64.37 +616031,291.19,65.472 +616032,293.15,66.562 +616033,285.62,63.195 +616034,287.82,64.334 +616035,289.87,65.461 +616036,291.79,66.576 +616037,284.36,63.133 +616038,286.52,64.297 +616039,288.54,65.449 +616040,290.44,66.588 +616041,283.09,63.072 +616042,285.22,64.261 +616043,287.21,65.437 +616044,289.08,66.6 +616045,281.83,63.012 +616046,283.93,64.225 +616047,285.88,65.425 +616048,287.72,66.611 +616049,280.57,62.953 +616050,282.63,64.189 +616051,284.55,65.413 +616052,286.36,66.622 +616053,279.31,62.895 +616054,281.33,64.154 +616055,283.22,65.4 +616056,285,66.631 +616057,278.05,62.838 +616058,280.04,64.119 +616059,281.89,65.386 +616060,283.63,66.639 +616061,276.79,62.782 +616062,278.74,64.085 +616063,280.56,65.373 +616064,282.27,66.646 +616065,275.54,62.727 +616066,277.45,64.05 +616067,279.23,65.359 +616068,280.9,66.652 +616069,274.28,62.673 +616070,276.16,64.016 +616071,277.9,65.345 +616072,279.53,66.657 +616073,273.03,62.62 +616074,274.86,63.983 +616075,276.57,65.33 +616076,278.17,66.661 +616077,271.78,62.568 +616078,273.57,63.949 +616079,275.24,65.315 +616080,276.8,66.664 +616081,270.53,62.517 +616082,272.28,63.916 +616083,273.91,65.299 +616084,275.43,66.666 +616085,269.28,62.467 +616086,270.99,63.884 +616087,272.57,65.284 +616088,274.05,66.666 +616089,268.04,62.418 +616090,269.7,63.851 +616091,271.24,65.268 +616092,272.68,66.666 +616093,266.79,62.371 +616094,268.41,63.82 +616095,269.91,65.251 +616096,271.31,66.664 +616097,265.55,62.324 +616098,267.12,63.788 +616099,268.57,65.234 +616100,269.93,66.662 +616101,264.3,62.279 +616102,265.83,63.757 +616103,267.24,65.217 +616104,268.55,66.658 +616105,263.06,62.235 +616106,264.54,63.726 +616107,265.9,65.199 +616108,267.18,66.653 +616109,261.82,62.192 +616110,263.25,63.696 +616111,264.57,65.181 +616112,265.8,66.647 +616113,260.58,62.151 +616114,261.96,63.666 +616115,263.23,65.162 +616116,264.42,66.639 +616117,259.34,62.11 +616118,260.67,63.636 +616119,261.9,65.143 +616120,263.04,66.631 +616121,258.1,62.071 +616122,259.38,63.607 +616123,260.56,65.124 +616124,261.66,66.621 +616125,256.87,62.033 +616126,258.09,63.578 +616127,259.23,65.104 +616128,260.27,66.61 +616129,255.63,61.996 +616130,256.81,63.55 +616131,257.89,65.084 +616132,258.89,66.598 +616133,254.4,61.961 +616134,255.52,63.522 +616135,256.55,65.063 +616136,257.51,66.584 +616137,253.16,61.926 +616138,254.23,63.494 +616139,255.22,65.042 +616140,256.12,66.57 +616141,251.93,61.893 +616142,252.95,63.467 +616143,253.88,65.021 +616144,254.74,66.554 +616145,250.7,61.862 +616146,251.66,63.44 +616147,252.54,64.999 +616148,253.35,66.536 +616149,249.47,61.831 +616150,250.37,63.414 +616151,251.2,64.976 +616152,251.96,66.518 +616153,248.24,61.802 +616154,249.09,63.388 +616155,249.87,64.953 +616156,250.58,66.498 +616157,247.01,61.774 +616158,247.8,63.362 +616159,248.53,64.93 +616160,249.19,66.477 +616161,245.78,61.747 +616162,246.52,63.337 +616163,247.19,64.906 +616164,247.8,66.455 +616165,244.55,61.722 +616166,245.23,63.312 +616167,245.85,64.882 +616168,246.41,66.432 +616169,243.32,61.698 +616170,243.95,63.288 +616171,244.51,64.858 +616172,245.02,66.407 +616173,242.09,61.675 +616174,242.66,63.264 +616175,243.17,64.833 +616176,243.63,66.381 +616177,240.86,61.653 +616178,241.38,63.24 +616179,241.83,64.807 +616180,242.24,66.354 +616181,239.63,61.633 +616182,240.09,63.217 +616183,240.5,64.782 +616184,240.85,66.325 +616185,238.41,61.614 +616186,238.81,63.194 +616187,239.16,64.755 +616188,239.46,66.296 +616189,237.18,61.596 +616190,237.52,63.172 +616191,237.82,64.729 +616192,238.06,66.265 +616193,235.95,61.58 +616194,236.24,63.15 +616195,236.48,64.701 +616196,236.67,66.232 +616197,234.73,61.564 +616198,234.96,63.129 +616199,235.14,64.674 +616200,235.28,66.199 +616201,233.5,61.55 +616202,233.67,63.108 +616203,233.8,64.646 +616204,233.89,66.164 +616205,232.27,61.538 +616206,232.39,63.087 +616207,232.46,64.617 +616208,232.49,66.128 +616209,231.05,61.526 +616210,231.1,63.067 +616211,231.12,64.588 +616212,231.1,66.091 +616213,229.82,61.516 +616214,229.82,63.047 +616215,229.78,64.559 +616216,229.71,66.052 +616217,228.59,61.507 +616218,228.54,63.027 +616219,228.44,64.529 +616220,228.32,66.012 +616221,227.37,61.499 +616222,227.25,63.008 +616223,227.1,64.499 +616224,226.92,65.971 +616225,226.14,61.493 +616226,225.97,62.99 +616227,225.76,64.469 +616228,225.53,65.929 +616229,224.91,61.488 +616230,224.69,62.971 +616231,224.43,64.438 +616232,224.14,65.886 +616233,223.69,61.483 +616234,223.4,62.953 +616235,223.09,64.406 +616236,222.74,65.841 +616237,222.46,61.48 +616238,222.12,62.936 +616239,221.75,64.374 +616240,221.35,65.795 +616241,221.23,61.479 +616242,220.83,62.919 +616243,220.41,64.342 +616244,219.96,65.748 +616245,220,61.478 +616246,219.55,62.902 +616247,219.07,64.31 +616248,218.56,65.7 +616249,218.77,61.479 +616250,218.27,62.885 +616251,217.73,64.277 +616252,217.17,65.651 +616253,217.54,61.48 +616254,216.98,62.869 +616255,216.39,64.243 +616256,215.78,65.6 +616257,216.31,61.483 +616258,215.7,62.854 +616259,215.05,64.209 +616260,214.39,65.549 +616261,215.08,61.487 +616262,214.41,62.838 +616263,213.72,64.175 +616264,213,65.496 +616265,213.85,61.492 +616266,213.13,62.824 +616267,212.38,64.141 +616268,211.61,65.442 +616269,212.62,61.498 +616270,211.84,62.809 +616271,211.04,64.106 +616272,210.22,65.387 +616273,211.39,61.505 +616274,210.56,62.795 +616275,209.7,64.07 +616276,208.83,65.331 +616277,210.16,61.514 +616278,209.27,62.781 +616279,208.37,64.035 +616280,207.44,65.274 +616281,208.92,61.523 +616282,207.99,62.767 +616283,207.03,63.999 +616284,206.05,65.216 +616285,207.69,61.533 +616286,206.7,62.754 +616287,205.69,63.962 +616288,204.66,65.157 +616289,206.45,61.544 +616290,205.41,62.741 +616291,204.35,63.925 +616292,203.27,65.097 +616293,205.22,61.557 +616294,204.13,62.728 +616295,203.02,63.888 +616296,201.88,65.035 +616297,203.98,61.57 +616298,202.84,62.716 +616299,201.68,63.851 +616300,200.5,64.973 +616301,202.74,61.584 +616302,201.56,62.704 +616303,200.35,63.813 +616304,199.11,64.91 +616305,201.5,61.599 +616306,200.27,62.692 +616307,199.01,63.775 +616308,197.73,64.846 +616309,200.26,61.615 +616310,198.98,62.681 +616311,197.67,63.737 +616312,196.34,64.781 +616313,199.02,61.631 +616314,197.69,62.669 +616315,196.34,63.698 +616316,194.96,64.715 +616317,197.78,61.649 +616318,196.41,62.659 +616319,195.01,63.659 +616320,193.58,64.648 +616321,196.53,61.667 +616322,195.12,62.648 +616323,193.67,63.619 +616324,192.19,64.58 +616325,195.29,61.687 +616326,193.83,62.638 +616327,192.34,63.58 +616328,190.81,64.512 +616329,194.04,61.706 +616330,192.54,62.627 +616331,191,63.54 +616332,189.43,64.442 +616333,192.8,61.727 +616334,191.25,62.617 +616335,189.67,63.5 +616336,188.05,64.372 +616337,191.55,61.749 +616338,189.96,62.608 +616339,188.34,63.459 +616340,186.68,64.301 +616341,190.3,61.771 +616342,188.67,62.598 +616343,187.01,63.419 +616344,185.3,64.23 +616345,189.05,61.793 +616346,187.38,62.589 +616347,185.67,63.378 +616348,183.93,64.157 +616349,187.8,61.817 +616350,186.09,62.58 +616351,184.34,63.336 +616352,182.55,64.084 +616353,186.54,61.841 +616354,184.8,62.571 +616355,183.01,63.295 +616356,181.18,64.01 +616357,185.29,61.866 +616358,183.51,62.563 +616359,181.68,63.253 +616360,179.81,63.936 +616361,184.03,61.891 +616362,182.21,62.554 +616363,180.35,63.212 +616364,178.44,63.861 +616365,182.77,61.917 +616366,180.92,62.546 +616367,179.02,63.169 +616368,177.07,63.785 +616369,181.51,61.943 +616370,179.63,62.538 +616371,177.69,63.127 +616372,175.7,63.709 +616373,180.25,61.969 +616374,178.33,62.53 +616375,176.36,63.085 +616376,174.33,63.632 +616377,178.99,61.997 +616378,177.04,62.522 +616379,175.04,63.042 +616380,172.97,63.555 +616381,177.72,62.024 +616382,175.75,62.514 +616383,173.71,62.999 +616384,171.6,63.477 +616385,176.46,62.052 +616386,174.45,62.507 +616387,172.38,62.956 +616388,170.24,63.398 +616389,175.19,62.081 +616390,173.15,62.499 +616391,171.05,62.913 +616392,168.88,63.32 +616393,173.92,62.109 +616394,171.86,62.492 +616395,169.73,62.87 +616396,167.52,63.24 +616397,172.65,62.138 +616398,170.56,62.485 +616399,168.4,62.826 +616400,166.17,63.161 +616401,171.38,62.168 +616402,169.27,62.478 +616403,167.08,62.783 +616404,164.81,63.081 +616405,170.11,62.197 +616406,167.97,62.471 +616407,165.75,62.739 +616408,163.46,63.001 +616409,168.83,62.227 +616410,166.67,62.464 +616411,164.43,62.695 +616412,162.1,62.92 +616413,167.55,62.257 +616414,165.37,62.457 +616415,163.11,62.652 +616416,160.75,62.839 +616417,166.28,62.287 +616418,164.07,62.45 +616419,161.79,62.608 +616420,159.4,62.758 +616421,165,62.317 +616422,162.77,62.443 +616423,160.46,62.564 +616424,158.06,62.677 +616425,163.71,62.348 +616426,161.47,62.436 +616427,159.14,62.519 +616428,156.71,62.595 +616429,162.43,62.378 +616430,160.17,62.43 +616431,157.82,62.475 +616432,155.37,62.514 +616433,161.14,62.409 +616434,158.87,62.423 +616435,156.5,62.431 +616436,154.02,62.432 +616437,159.86,62.439 +616438,157.57,62.416 +616439,155.18,62.387 +616440,152.68,62.35 +616441,158.57,62.469 +616442,156.26,62.409 +616443,153.86,62.343 +616444,151.35,62.268 +616445,157.28,62.5 +616446,154.96,62.402 +616447,152.55,62.298 +616448,150.01,62.186 +616449,155.98,62.53 +616450,153.66,62.396 +616451,151.23,62.254 +616452,148.68,62.104 +616453,154.69,62.561 +616454,152.35,62.389 +616455,149.91,62.21 +616456,147.34,62.022 +616457,153.39,62.591 +616458,151.05,62.382 +616459,148.59,62.166 +616460,146.01,61.941 +616461,152.1,62.621 +616462,149.74,62.375 +616463,147.28,62.121 +616464,144.68,61.859 +616465,150.8,62.65 +616466,148.44,62.368 +616467,145.96,62.077 +616468,143.36,61.777 +616469,149.49,62.68 +616470,147.13,62.361 +616471,144.65,62.033 +616472,142.03,61.696 +616473,148.19,62.709 +616474,145.82,62.353 +616475,143.34,61.989 +616476,140.71,61.614 +616477,146.89,62.738 +616478,144.52,62.346 +616479,142.02,61.945 +616480,139.39,61.533 +616481,145.58,62.767 +616482,143.21,62.339 +616483,140.71,61.901 +616484,138.07,61.452 +616485,144.27,62.795 +616486,141.9,62.331 +616487,139.4,61.857 +616488,136.75,61.372 +616489,142.96,62.823 +616490,140.59,62.323 +616491,138.09,61.813 +616492,135.44,61.291 +616493,141.65,62.851 +616494,139.28,62.316 +616495,136.78,61.77 +616496,134.12,61.211 +616497,140.33,62.878 +616498,137.97,62.308 +616499,135.47,61.726 +616500,132.81,61.132 +616501,139.02,62.905 +616502,136.66,62.299 +616503,134.16,61.682 +616504,131.5,61.053 +616505,137.7,62.931 +616506,135.34,62.291 +616507,132.85,61.639 +616508,130.2,60.974 +616509,136.38,62.957 +616510,134.03,62.283 +616511,131.54,61.596 +616512,128.89,60.895 +616513,135.06,62.982 +616514,132.72,62.274 +616515,130.24,61.553 +616516,127.59,60.818 +616517,133.74,63.006 +616518,131.41,62.265 +616519,128.93,61.51 +616520,126.29,60.74 +616521,132.41,63.03 +616522,130.09,62.256 +616523,127.63,61.467 +616524,124.99,60.663 +616525,131.09,63.054 +616526,128.78,62.247 +616527,126.32,61.425 +616528,123.7,60.587 +616529,129.76,63.077 +616530,127.46,62.237 +616531,125.02,61.383 +616532,122.4,60.512 +616533,128.43,63.099 +616534,126.14,62.227 +616535,123.71,61.341 +616536,121.11,60.437 +616537,127.1,63.12 +616538,124.83,62.218 +616539,122.41,61.299 +616540,119.82,60.362 +616541,125.77,63.141 +616542,123.51,62.207 +616543,121.11,61.257 +616544,118.53,60.288 +616545,124.43,63.161 +616546,122.19,62.197 +616547,119.81,61.215 +616548,117.25,60.215 +616549,123.09,63.18 +616550,120.88,62.186 +616551,118.51,61.174 +616552,115.96,60.143 +616553,121.76,63.198 +616554,119.56,62.175 +616555,117.21,61.133 +616556,114.68,60.072 +616557,120.42,63.216 +616558,118.24,62.164 +616559,115.91,61.092 +616560,113.4,60.001 +616561,119.08,63.233 +616562,116.92,62.152 +616563,114.61,61.052 +616564,112.12,59.931 +616565,117.73,63.248 +616566,115.6,62.14 +616567,113.31,61.012 +616568,110.85,59.862 +616569,116.39,63.263 +616570,114.28,62.128 +616571,112.01,60.972 +616572,109.57,59.794 +616573,115.04,63.278 +616574,112.95,62.116 +616575,110.71,60.932 +616576,108.3,59.727 +616577,113.7,63.291 +616578,111.63,62.103 +616579,109.42,60.893 +616580,107.03,59.66 +616581,112.35,63.303 +616582,110.31,62.09 +616583,108.12,60.854 +616584,105.76,59.595 +616585,111,63.314 +616586,108.99,62.076 +616587,106.83,60.815 +616588,104.49,59.53 +616589,109.64,63.324 +616590,107.66,62.062 +616591,105.53,60.777 +616592,103.23,59.467 +616593,108.29,63.334 +616594,106.34,62.048 +616595,104.24,60.738 +616596,101.97,59.404 +616597,106.94,63.342 +616598,105.01,62.033 +616599,102.95,60.701 +616600,100.71,59.343 +616601,105.58,63.349 +616602,103.69,62.019 +616603,101.65,60.663 +616604,99.446,59.282 +616605,104.22,63.355 +616606,102.36,62.003 +616607,100.36,60.626 +616608,98.189,59.223 +616609,102.86,63.36 +616610,101.04,61.988 +616611,99.069,60.589 +616612,96.933,59.164 +616613,101.5,63.364 +616614,99.711,61.972 +616615,97.778,60.553 +616616,95.679,59.107 +616617,100.14,63.367 +616618,98.384,61.955 +616619,96.487,60.517 +616620,94.427,59.051 +616621,98.779,63.369 +616622,97.057,61.938 +616623,95.197,60.481 +616624,93.177,58.996 +616625,97.415,63.369 +616626,95.729,61.921 +616627,93.908,60.446 +616628,91.927,58.942 +616629,96.049,63.369 +616630,94.401,61.904 +616631,92.619,60.411 +616632,90.68,58.89 +616633,94.682,63.367 +616634,93.072,61.886 +616635,91.33,60.376 +616636,89.434,58.838 +616637,93.314,63.364 +616638,91.743,61.867 +616639,90.042,60.342 +616640,88.19,58.788 +616641,91.945,63.36 +616642,90.414,61.848 +616643,88.755,60.308 +616644,86.947,58.739 +616645,90.575,63.355 +616646,89.084,61.829 +616647,87.468,60.275 +616648,85.705,58.691 +616649,89.204,63.348 +616650,87.754,61.809 +616651,86.181,60.242 +616652,84.465,58.644 +616653,87.831,63.34 +616654,86.423,61.789 +616655,84.895,60.209 +616656,83.227,58.599 +616657,86.457,63.331 +616658,85.092,61.769 +616659,83.609,60.177 +616660,81.989,58.555 +616661,85.083,63.321 +616662,83.761,61.748 +616663,82.324,60.145 +616664,80.753,58.512 +616665,83.707,63.309 +616666,82.43,61.726 +616667,81.039,60.114 +616668,79.518,58.471 +616669,82.331,63.296 +616670,81.098,61.704 +616671,79.755,60.083 +616672,78.284,58.431 +616673,80.953,63.282 +616674,79.766,61.682 +616675,78.471,60.052 +616676,77.052,58.392 +616677,79.575,63.267 +616678,78.433,61.659 +616679,77.187,60.022 +616680,75.82,58.354 +616681,78.195,63.25 +616682,77.1,61.636 +616683,75.904,59.992 +616684,74.59,58.318 +616685,76.815,63.232 +616686,75.767,61.613 +616687,74.621,59.963 +616688,73.361,58.283 +616689,75.434,63.212 +616690,74.434,61.588 +616691,73.338,59.934 +616692,72.132,58.249 +616693,74.052,63.192 +616694,73.1,61.564 +616695,72.056,59.906 +616696,70.905,58.217 +616697,72.669,63.17 +616698,71.767,61.539 +616699,70.774,59.878 +616700,69.678,58.186 +616701,71.286,63.146 +616702,70.433,61.513 +616703,69.492,59.85 +616704,68.452,58.157 +616705,69.902,63.122 +616706,69.098,61.488 +616707,68.211,59.823 +616708,67.227,58.129 +616709,68.517,63.096 +616710,67.764,61.461 +616711,66.93,59.797 +616712,66.003,58.102 +616713,67.132,63.069 +616714,66.429,61.434 +616715,65.649,59.77 +616716,64.78,58.076 +616717,65.746,63.04 +616718,65.095,61.407 +616719,64.368,59.744 +616720,63.557,58.052 +616721,64.36,63.01 +616722,63.76,61.379 +616723,63.088,59.719 +616724,62.334,58.029 +616725,62.973,62.979 +616726,62.425,61.351 +616727,61.808,59.694 +616728,61.112,58.008 +616729,61.585,62.946 +616730,61.089,61.322 +616731,60.528,59.67 +616732,59.891,57.988 +616733,60.197,62.912 +616734,59.754,61.293 +616735,59.248,59.646 +616736,58.67,57.969 +616737,58.809,62.877 +616738,58.419,61.264 +616739,57.968,59.622 +616740,57.45,57.952 +616741,57.42,62.84 +616742,57.083,61.233 +616743,56.689,59.599 +616744,56.23,57.936 +616745,56.031,62.802 +616746,55.747,61.203 +616747,55.409,59.576 +616748,55.01,57.921 +616749,54.641,62.763 +616750,54.412,61.172 +616751,54.13,59.554 +616752,53.79,57.908 +616753,53.252,62.722 +616754,53.076,61.141 +616755,52.851,59.532 +616756,52.571,57.896 +616757,51.862,62.681 +616758,51.74,61.109 +616759,51.572,59.51 +616760,51.352,57.885 +616761,50.471,62.637 +616762,50.404,61.076 +616763,50.293,59.489 +616764,50.133,57.875 +616765,49.081,62.593 +616766,49.068,61.044 +616767,49.014,59.468 +616768,48.913,57.867 +616769,47.69,62.547 +616770,47.733,61.01 +616771,47.735,59.448 +616772,47.694,57.86 +616773,46.3,62.5 +616774,46.397,60.977 +616775,46.456,59.428 +616776,46.475,57.855 +616777,44.909,62.452 +616778,45.061,60.943 +616779,45.177,59.409 +616780,45.256,57.851 +616781,43.519,62.402 +616782,43.725,60.908 +616783,43.899,59.39 +616784,44.037,57.848 +616785,42.128,62.351 +616786,42.389,60.873 +616787,42.62,59.371 +616788,42.817,57.846 +616789,40.737,62.299 +616790,41.054,60.838 +616791,41.341,59.353 +616792,41.597,57.845 +616793,39.347,62.246 +616794,39.718,60.802 +616795,40.062,59.335 +616796,40.377,57.846 +616797,37.956,62.191 +616798,38.383,60.766 +616799,38.783,59.318 +616800,39.156,57.848 +616801,36.566,62.136 +616802,37.047,60.729 +616803,37.504,59.301 +616804,37.935,57.851 +616805,35.176,62.079 +616806,35.712,60.692 +616807,36.225,59.284 +616808,36.714,57.855 +616809,33.786,62.021 +616810,34.377,60.655 +616811,34.946,59.268 +616812,35.492,57.86 +616813,32.397,61.962 +616814,33.042,60.617 +616815,33.667,59.252 +616816,34.27,57.867 +616817,31.008,61.901 +616818,31.707,60.579 +616819,32.387,59.236 +616820,33.047,57.875 +616821,29.619,61.84 +616822,30.373,60.54 +616823,31.108,59.221 +616824,31.823,57.883 +616825,28.231,61.777 +616826,29.038,60.501 +616827,29.828,59.206 +616828,30.599,57.893 +616829,26.843,61.713 +616830,27.704,60.462 +616831,28.548,59.192 +616832,29.374,57.904 +616833,25.455,61.648 +616834,26.37,60.422 +616835,27.268,59.177 +616836,28.149,57.916 +616837,24.068,61.582 +616838,25.037,60.382 +616839,25.988,59.164 +616840,26.922,57.929 +616841,22.682,61.516 +616842,23.703,60.341 +616843,24.707,59.15 +616844,25.695,57.943 +616845,21.296,61.448 +616846,22.37,60.301 +616847,23.426,59.137 +616848,24.467,57.958 +616849,19.911,61.379 +616850,21.037,60.259 +616851,22.145,59.124 +616852,23.238,57.974 +616853,18.526,61.309 +616854,19.704,60.218 +616855,20.864,59.111 +616856,22.008,57.99 +616857,17.143,61.238 +616858,18.372,60.176 +616859,19.583,59.099 +616860,20.777,58.008 +616861,15.76,61.166 +616862,17.04,60.134 +616863,18.301,59.087 +616864,19.545,58.027 +616865,14.377,61.093 +616866,15.708,60.091 +616867,17.019,59.075 +616868,18.311,58.046 +616869,12.996,61.019 +616870,14.377,60.049 +616871,15.737,59.064 +616872,17.077,58.067 +616873,11.615,60.945 +616874,13.046,60.006 +616875,14.454,59.053 +616876,15.842,58.088 +616877,10.236,60.869 +616878,11.715,59.962 +616879,13.171,59.042 +616880,14.605,58.11 +616881,8.8569,60.793 +616882,10.385,59.919 +616883,11.888,59.031 +616884,13.368,58.132 +616885,7.4791,60.716 +616886,9.055,59.875 +616887,10.604,59.021 +616888,12.129,58.156 +616889,6.1024,60.638 +616890,7.7255,59.83 +616891,9.3198,59.01 +616892,10.888,58.18 +616893,4.7267,60.56 +616894,6.3964,59.786 +616895,8.0353,59 +616896,9.6468,58.204 +616897,3.3521,60.48 +616898,5.0678,59.741 +616899,6.7505,58.991 +616900,8.4039,58.23 +616901,1.9787,60.4 +616902,3.7396,59.696 +616903,5.4653,58.981 +616904,7.1597,58.256 +616905,0.60639,60.319 +616906,2.4119,59.651 +616907,4.1797,58.972 +616908,5.914,58.282 +616909,359.24,60.238 +616910,1.0846,59.606 +616911,2.8936,58.962 +616912,4.667,58.31 +616913,357.87,60.156 +616914,359.76,59.56 +616915,1.6072,58.953 +616916,3.4185,58.337 +616917,356.5,60.074 +616918,358.43,59.515 +616919,0.32028,58.945 +616920,2.1685,58.365 +616921,355.13,59.99 +616922,357.11,59.469 +616923,359.03,58.936 +616924,0.917,58.394 +616925,353.76,59.907 +616926,355.78,59.422 +616927,357.75,58.927 +616928,359.66,58.423 +616929,352.4,59.823 +616930,354.46,59.376 +616931,356.46,58.919 +616932,358.41,58.453 +616933,351.04,59.738 +616934,353.13,59.33 +616935,355.17,58.911 +616936,357.15,58.483 +616937,349.67,59.653 +616938,351.81,59.283 +616939,353.88,58.902 +616940,355.9,58.513 +616941,348.31,59.567 +616942,350.48,59.236 +616943,352.59,58.894 +616944,354.64,58.544 +616945,346.96,59.481 +616946,349.16,59.189 +616947,351.3,58.886 +616948,353.38,58.574 +616949,345.6,59.395 +616950,347.84,59.142 +616951,350.01,58.878 +616952,352.11,58.606 +616953,344.24,59.308 +616954,346.52,59.095 +616955,348.72,58.871 +616956,350.85,58.637 +616957,342.89,59.221 +616958,345.2,59.048 +616959,347.43,58.863 +616960,349.58,58.669 +616961,341.54,59.134 +616962,343.88,59.001 +616963,346.13,58.855 +616964,348.32,58.7 +616965,340.19,59.047 +616966,342.56,58.953 +616967,344.84,58.848 +616968,347.05,58.732 +616969,338.84,58.959 +616970,341.24,58.906 +616971,343.55,58.84 +616972,345.77,58.764 +616973,337.49,58.871 +616974,339.92,58.858 +616975,342.25,58.832 +616976,344.5,58.796 +616977,336.14,58.783 +616978,338.6,58.81 +616979,340.96,58.825 +616980,343.23,58.828 +616981,334.8,58.695 +616982,337.28,58.763 +616983,339.66,58.817 +616984,341.95,58.86 +616985,333.46,58.607 +616986,335.97,58.715 +616987,338.37,58.81 +616988,340.67,58.893 +616989,332.12,58.519 +616990,334.65,58.668 +616991,337.07,58.802 +616992,339.39,58.925 +616993,330.78,58.431 +616994,333.34,58.62 +616995,335.78,58.794 +616996,338.11,58.957 +616997,329.44,58.343 +616998,332.02,58.572 +616999,334.48,58.787 +617000,336.83,58.988 +617001,328.11,58.255 +617002,330.71,58.525 +617003,333.18,58.779 +617004,335.54,59.02 +617005,326.78,58.167 +617006,329.39,58.477 +617007,331.88,58.771 +617008,334.26,59.052 +617009,325.45,58.079 +617010,328.08,58.429 +617011,330.58,58.763 +617012,332.97,59.083 +617013,324.12,57.991 +617014,326.77,58.382 +617015,329.28,58.755 +617016,331.68,59.114 +617017,322.79,57.904 +617018,325.46,58.334 +617019,327.98,58.747 +617020,330.39,59.145 +617021,321.47,57.816 +617022,324.15,58.287 +617023,326.68,58.739 +617024,329.09,59.175 +617025,320.14,57.729 +617026,322.84,58.24 +617027,325.38,58.731 +617028,327.79,59.205 +617029,318.82,57.643 +617030,321.53,58.192 +617031,324.08,58.722 +617032,326.5,59.235 +617033,317.51,57.556 +617034,320.22,58.145 +617035,322.78,58.714 +617036,325.2,59.265 +617037,316.19,57.47 +617038,318.91,58.098 +617039,321.47,58.705 +617040,323.9,59.294 +617041,314.87,57.384 +617042,317.61,58.051 +617043,320.17,58.696 +617044,322.59,59.322 +617045,313.56,57.299 +617046,316.3,58.005 +617047,318.87,58.687 +617048,321.29,59.35 +617049,312.25,57.214 +617050,314.99,57.958 +617051,317.56,58.678 +617052,319.98,59.378 +617053,310.94,57.13 +617054,313.69,57.911 +617055,316.26,58.669 +617056,318.67,59.405 +617057,309.64,57.046 +617058,312.38,57.865 +617059,314.95,58.659 +617060,317.36,59.431 +617061,308.33,56.963 +617062,311.08,57.819 +617063,313.64,58.65 +617064,316.05,59.457 +617065,307.03,56.88 +617066,309.78,57.773 +617067,312.34,58.64 +617068,314.74,59.482 +617069,305.73,56.798 +617070,308.48,57.727 +617071,311.03,58.629 +617072,313.42,59.507 +617073,304.44,56.717 +617074,307.17,57.682 +617075,309.72,58.619 +617076,312.1,59.531 +617077,303.14,56.636 +617078,305.87,57.637 +617079,308.41,58.608 +617080,310.78,59.554 +617081,301.85,56.556 +617082,304.57,57.591 +617083,307.1,58.597 +617084,309.46,59.576 +617085,300.56,56.476 +617086,303.27,57.547 +617087,305.79,58.586 +617088,308.14,59.598 +617089,299.27,56.398 +617090,301.98,57.502 +617091,304.48,58.575 +617092,306.82,59.619 +617093,297.98,56.32 +617094,300.68,57.458 +617095,303.17,58.563 +617096,305.49,59.639 +617097,296.7,56.243 +617098,299.38,57.414 +617099,301.86,58.551 +617100,304.16,59.658 +617101,295.42,56.167 +617102,298.08,57.37 +617103,300.54,58.539 +617104,302.83,59.677 +617105,294.14,56.092 +617106,296.79,57.326 +617107,299.23,58.526 +617108,301.5,59.694 +617109,292.86,56.017 +617110,295.49,57.283 +617111,297.92,58.513 +617112,300.17,59.711 +617113,291.58,55.944 +617114,294.2,57.24 +617115,296.6,58.5 +617116,298.83,59.727 +617117,290.31,55.871 +617118,292.9,57.197 +617119,295.29,58.486 +617120,297.5,59.741 +617121,289.04,55.8 +617122,291.61,57.155 +617123,293.97,58.472 +617124,296.16,59.755 +617125,287.77,55.729 +617126,290.32,57.113 +617127,292.66,58.458 +617128,294.82,59.768 +617129,286.5,55.66 +617130,289.03,57.071 +617131,291.34,58.444 +617132,293.48,59.78 +617133,285.24,55.591 +617134,287.74,57.03 +617135,290.02,58.429 +617136,292.14,59.79 +617137,283.97,55.524 +617138,286.45,56.989 +617139,288.71,58.413 +617140,290.79,59.8 +617141,282.71,55.458 +617142,285.16,56.948 +617143,287.39,58.397 +617144,289.45,59.808 +617145,281.45,55.393 +617146,283.87,56.908 +617147,286.07,58.381 +617148,288.1,59.816 +617149,280.19,55.329 +617150,282.58,56.868 +617151,284.75,58.365 +617152,286.75,59.822 +617153,278.94,55.266 +617154,281.29,56.829 +617155,283.43,58.348 +617156,285.4,59.827 +617157,277.68,55.205 +617158,280,56.79 +617159,282.11,58.331 +617160,284.05,59.831 +617161,276.43,55.144 +617162,278.72,56.751 +617163,280.79,58.313 +617164,282.7,59.834 +617165,275.18,55.085 +617166,277.43,56.713 +617167,279.47,58.295 +617168,281.34,59.836 +617169,273.93,55.027 +617170,276.14,56.675 +617171,278.15,58.276 +617172,279.99,59.836 +617173,272.69,54.971 +617174,274.86,56.637 +617175,276.83,58.257 +617176,278.63,59.835 +617177,271.44,54.915 +617178,273.57,56.6 +617179,275.51,58.238 +617180,277.27,59.833 +617181,270.2,54.861 +617182,272.29,56.563 +617183,274.18,58.218 +617184,275.91,59.83 +617185,268.96,54.809 +617186,271.01,56.527 +617187,272.86,58.198 +617188,274.55,59.826 +617189,267.72,54.757 +617190,269.73,56.491 +617191,271.54,58.177 +617192,273.19,59.82 +617193,266.48,54.707 +617194,268.44,56.456 +617195,270.21,58.156 +617196,271.83,59.812 +617197,265.25,54.659 +617198,267.16,56.421 +617199,268.89,58.135 +617200,270.46,59.804 +617201,264.01,54.612 +617202,265.88,56.386 +617203,267.57,58.113 +617204,269.1,59.794 +617205,262.78,54.566 +617206,264.6,56.352 +617207,266.24,58.09 +617208,267.73,59.783 +617209,261.55,54.521 +617210,263.32,56.318 +617211,264.92,58.067 +617212,266.37,59.771 +617213,260.32,54.478 +617214,262.04,56.285 +617215,263.59,58.044 +617216,265,59.757 +617217,259.09,54.437 +617218,260.76,56.253 +617219,262.26,58.02 +617220,263.63,59.742 +617221,257.86,54.397 +617222,259.48,56.22 +617223,260.94,57.995 +617224,262.26,59.725 +617225,256.64,54.358 +617226,258.2,56.188 +617227,259.61,57.971 +617228,260.89,59.707 +617229,255.41,54.321 +617230,256.93,56.157 +617231,258.28,57.945 +617232,259.51,59.688 +617233,254.19,54.285 +617234,255.65,56.126 +617235,256.96,57.919 +617236,258.14,59.667 +617237,252.96,54.25 +617238,254.37,56.096 +617239,255.63,57.893 +617240,256.76,59.645 +617241,251.74,54.217 +617242,253.09,56.066 +617243,254.3,57.866 +617244,255.39,59.622 +617245,250.52,54.186 +617246,251.82,56.036 +617247,252.97,57.839 +617248,254.01,59.597 +617249,249.3,54.156 +617250,250.54,56.007 +617251,251.65,57.811 +617252,252.64,59.571 +617253,248.09,54.128 +617254,249.27,55.979 +617255,250.32,57.783 +617256,251.26,59.543 +617257,246.87,54.101 +617258,247.99,55.951 +617259,248.99,57.754 +617260,249.88,59.514 +617261,245.65,54.075 +617262,246.72,55.923 +617263,247.66,57.725 +617264,248.5,59.483 +617265,244.44,54.051 +617266,245.44,55.896 +617267,246.33,57.695 +617268,247.12,59.451 +617269,243.22,54.028 +617270,244.17,55.87 +617271,245,57.665 +617272,245.74,59.418 +617273,242.01,54.007 +617274,242.89,55.843 +617275,243.67,57.635 +617276,244.36,59.383 +617277,240.79,53.988 +617278,241.62,55.818 +617279,242.34,57.603 +617280,242.98,59.347 +617281,239.58,53.97 +617282,240.35,55.793 +617283,241.01,57.572 +617284,241.6,59.309 +617285,238.37,53.953 +617286,239.07,55.768 +617287,239.68,57.54 +617288,240.21,59.27 +617289,237.16,53.938 +617290,237.8,55.744 +617291,238.35,57.507 +617292,238.83,59.23 +617293,235.94,53.924 +617294,236.53,55.72 +617295,237.02,57.474 +617296,237.45,59.188 +617297,234.73,53.911 +617298,235.25,55.697 +617299,235.69,57.44 +617300,236.06,59.145 +617301,233.52,53.9 +617302,233.98,55.674 +617303,234.36,57.406 +617304,234.68,59.1 +617305,232.31,53.891 +617306,232.71,55.651 +617307,233.03,57.372 +617308,233.3,59.054 +617309,231.1,53.883 +617310,231.44,55.629 +617311,231.7,57.337 +617312,231.91,59.007 +617313,229.89,53.876 +617314,230.16,55.608 +617315,230.37,57.301 +617316,230.53,58.958 +617317,228.68,53.871 +617318,228.89,55.587 +617319,229.04,57.265 +617320,229.14,58.908 +617321,227.47,53.867 +617322,227.62,55.566 +617323,227.71,57.229 +617324,227.75,58.856 +617325,226.26,53.865 +617326,226.35,55.546 +617327,226.38,57.192 +617328,226.37,58.803 +617329,225.05,53.863 +617330,225.07,55.527 +617331,225.05,57.155 +617332,224.98,58.749 +617333,223.84,53.864 +617334,223.8,55.507 +617335,223.72,57.117 +617336,223.6,58.693 +617337,222.63,53.865 +617338,222.53,55.488 +617339,222.39,57.079 +617340,222.21,58.637 +617341,221.42,53.868 +617342,221.26,55.47 +617343,221.06,57.04 +617344,220.83,58.578 +617345,220.21,53.872 +617346,219.99,55.452 +617347,219.73,57.001 +617348,219.44,58.519 +617349,219,53.877 +617350,218.71,55.435 +617351,218.4,56.962 +617352,218.05,58.458 +617353,217.79,53.884 +617354,217.44,55.418 +617355,217.07,56.922 +617356,216.67,58.396 +617357,216.58,53.892 +617358,216.17,55.401 +617359,215.74,56.881 +617360,215.28,58.333 +617361,215.36,53.901 +617362,214.9,55.384 +617363,214.41,56.84 +617364,213.9,58.268 +617365,214.15,53.911 +617366,213.63,55.369 +617367,213.08,56.799 +617368,212.51,58.203 +617369,212.94,53.923 +617370,212.35,55.353 +617371,211.75,56.758 +617372,211.13,58.136 +617373,211.72,53.935 +617374,211.08,55.338 +617375,210.42,56.715 +617376,209.74,58.067 +617377,210.51,53.949 +617378,209.81,55.323 +617379,209.09,56.673 +617380,208.36,57.998 +617381,209.3,53.964 +617382,208.54,55.309 +617383,207.76,56.63 +617384,206.98,57.928 +617385,208.08,53.98 +617386,207.26,55.295 +617387,206.44,56.587 +617388,205.59,57.856 +617389,206.86,53.997 +617390,205.99,55.281 +617391,205.11,56.543 +617392,204.21,57.783 +617393,205.65,54.015 +617394,204.72,55.268 +617395,203.78,56.499 +617396,202.83,57.71 +617397,204.43,54.034 +617398,203.44,55.255 +617399,202.45,56.455 +617400,201.45,57.635 +617401,203.21,54.054 +617402,202.17,55.242 +617403,201.12,56.411 +617404,200.07,57.559 +617405,201.99,54.075 +617406,200.9,55.23 +617407,199.8,56.366 +617408,198.69,57.482 +617409,200.77,54.097 +617410,199.62,55.218 +617411,198.47,56.32 +617412,197.31,57.404 +617413,199.55,54.12 +617414,198.35,55.206 +617415,197.14,56.275 +617416,195.93,57.325 +617417,198.32,54.144 +617418,197.07,55.194 +617419,195.82,56.229 +617420,194.55,57.245 +617421,197.1,54.168 +617422,195.8,55.183 +617423,194.49,56.182 +617424,193.17,57.164 +617425,195.87,54.194 +617426,194.52,55.172 +617427,193.17,56.136 +617428,191.79,57.082 +617429,194.65,54.22 +617430,193.25,55.162 +617431,191.84,56.089 +617432,190.42,57 +617433,193.42,54.247 +617434,191.97,55.152 +617435,190.52,56.042 +617436,189.04,56.916 +617437,192.19,54.275 +617438,190.7,55.141 +617439,189.19,55.994 +617440,187.67,56.832 +617441,190.96,54.303 +617442,189.42,55.132 +617443,187.87,55.947 +617444,186.3,56.747 +617445,189.73,54.333 +617446,188.14,55.122 +617447,186.54,55.899 +617448,184.92,56.661 +617449,188.49,54.362 +617450,186.87,55.113 +617451,185.22,55.85 +617452,183.55,56.574 +617453,187.26,54.393 +617454,185.59,55.103 +617455,183.9,55.802 +617456,182.18,56.487 +617457,186.02,54.424 +617458,184.31,55.094 +617459,182.57,55.753 +617460,180.81,56.399 +617461,184.79,54.455 +617462,183.03,55.086 +617463,181.25,55.704 +617464,179.45,56.31 +617465,183.55,54.487 +617466,181.75,55.077 +617467,179.93,55.655 +617468,178.08,56.22 +617469,182.31,54.52 +617470,180.47,55.069 +617471,178.61,55.606 +617472,176.71,56.13 +617473,181.07,54.553 +617474,179.19,55.06 +617475,177.29,55.557 +617476,175.35,56.04 +617477,179.82,54.586 +617478,177.91,55.052 +617479,175.97,55.507 +617480,173.99,55.949 +617481,178.58,54.62 +617482,176.63,55.044 +617483,174.65,55.457 +617484,172.63,55.857 +617485,177.33,54.654 +617486,175.35,55.036 +617487,173.33,55.407 +617488,171.27,55.765 +617489,176.08,54.689 +617490,174.07,55.029 +617491,172.01,55.357 +617492,169.91,55.672 +617493,174.83,54.724 +617494,172.79,55.021 +617495,170.7,55.307 +617496,168.55,55.58 +617497,173.58,54.759 +617498,171.51,55.013 +617499,169.38,55.257 +617500,167.19,55.486 +617501,172.33,54.794 +617502,170.22,55.006 +617503,168.06,55.206 +617504,165.84,55.393 +617505,171.07,54.829 +617506,168.94,54.998 +617507,166.75,55.156 +617508,164.49,55.299 +617509,169.82,54.865 +617510,167.66,54.991 +617511,165.43,55.105 +617512,163.14,55.204 +617513,168.56,54.901 +617514,166.37,54.984 +617515,164.12,55.054 +617516,161.79,55.11 +617517,167.3,54.937 +617518,165.09,54.977 +617519,162.8,55.004 +617520,160.44,55.015 +617521,166.04,54.973 +617522,163.8,54.969 +617523,161.49,54.953 +617524,159.09,54.92 +617525,164.78,55.008 +617526,162.52,54.962 +617527,160.18,54.902 +617528,157.75,54.825 +617529,163.51,55.044 +617530,161.23,54.955 +617531,158.87,54.851 +617532,156.4,54.73 +617533,162.24,55.08 +617534,159.94,54.948 +617535,157.55,54.8 +617536,155.06,54.635 +617537,160.97,55.116 +617538,158.65,54.941 +617539,156.24,54.749 +617540,153.72,54.539 +617541,159.7,55.152 +617542,157.37,54.933 +617543,154.93,54.698 +617544,152.39,54.444 +617545,158.43,55.187 +617546,156.08,54.926 +617547,153.62,54.648 +617548,151.05,54.349 +617549,157.16,55.223 +617550,154.79,54.919 +617551,152.31,54.597 +617552,149.72,54.254 +617553,155.88,55.258 +617554,153.5,54.911 +617555,151.01,54.546 +617556,148.39,54.159 +617557,154.6,55.293 +617558,152.21,54.904 +617559,149.7,54.495 +617560,147.06,54.064 +617561,153.32,55.327 +617562,150.92,54.896 +617563,148.39,54.445 +617564,145.73,53.969 +617565,152.04,55.361 +617566,149.63,54.888 +617567,147.09,54.394 +617568,144.4,53.875 +617569,150.76,55.395 +617570,148.33,54.881 +617571,145.78,54.343 +617572,143.08,53.781 +617573,149.47,55.429 +617574,147.04,54.873 +617575,144.48,54.293 +617576,141.76,53.687 +617577,148.19,55.462 +617578,145.75,54.865 +617579,143.17,54.243 +617580,140.44,53.593 +617581,146.9,55.495 +617582,144.45,54.857 +617583,141.87,54.193 +617584,139.12,53.5 +617585,145.61,55.527 +617586,143.16,54.848 +617587,140.57,54.143 +617588,137.8,53.407 +617589,144.31,55.559 +617590,141.86,54.84 +617591,139.26,54.093 +617592,136.49,53.314 +617593,143.02,55.59 +617594,140.57,54.831 +617595,137.96,54.043 +617596,135.18,53.222 +617597,141.72,55.621 +617598,139.27,54.822 +617599,136.66,53.994 +617600,133.87,53.131 +617601,140.43,55.651 +617602,137.97,54.813 +617603,135.36,53.944 +617604,132.56,53.04 +617605,139.13,55.68 +617606,136.68,54.804 +617607,134.06,53.895 +617608,131.26,52.95 +617609,137.82,55.709 +617610,135.38,54.794 +617611,132.77,53.846 +617612,129.96,52.86 +617613,136.52,55.737 +617614,134.08,54.785 +617615,131.47,53.798 +617616,128.66,52.771 +617617,135.22,55.765 +617618,132.78,54.775 +617619,130.17,53.749 +617620,127.36,52.683 +617621,133.91,55.791 +617622,131.48,54.765 +617623,128.88,53.701 +617624,126.06,52.595 +617625,132.6,55.817 +617626,130.18,54.754 +617627,127.58,53.653 +617628,124.77,52.508 +617629,131.29,55.842 +617630,128.88,54.744 +617631,126.29,53.605 +617632,123.48,52.422 +617633,129.98,55.867 +617634,127.58,54.733 +617635,124.99,53.558 +617636,122.19,52.337 +617637,128.66,55.89 +617638,126.28,54.721 +617639,123.7,53.51 +617640,120.9,52.252 +617641,127.35,55.913 +617642,124.97,54.71 +617643,122.41,53.464 +617644,119.62,52.169 +617645,126.03,55.934 +617646,123.67,54.698 +617647,121.12,53.417 +617648,118.33,52.086 +617649,124.71,55.955 +617650,122.36,54.686 +617651,119.83,53.371 +617652,117.05,52.004 +617653,123.39,55.975 +617654,121.06,54.673 +617655,118.54,53.325 +617656,115.77,51.923 +617657,122.07,55.993 +617658,119.76,54.66 +617659,117.25,53.279 +617660,114.5,51.844 +617661,120.74,56.011 +617662,118.45,54.647 +617663,115.96,53.234 +617664,113.23,51.765 +617665,119.42,56.028 +617666,117.14,54.634 +617667,114.67,53.189 +617668,111.95,51.687 +617669,118.09,56.043 +617670,115.84,54.62 +617671,113.38,53.144 +617672,110.69,51.611 +617673,116.76,56.058 +617674,114.53,54.605 +617675,112.1,53.1 +617676,109.42,51.536 +617677,115.43,56.071 +617678,113.22,54.591 +617679,110.81,53.056 +617680,108.15,51.461 +617681,114.1,56.084 +617682,111.91,54.576 +617683,109.53,53.013 +617684,106.89,51.388 +617685,112.76,56.095 +617686,110.6,54.56 +617687,108.24,52.97 +617688,105.63,51.316 +617689,111.43,56.105 +617690,109.3,54.545 +617691,106.96,52.927 +617692,104.37,51.246 +617693,110.09,56.114 +617694,107.99,54.528 +617695,105.68,52.885 +617696,103.12,51.177 +617697,108.75,56.121 +617698,106.68,54.512 +617699,104.4,52.843 +617700,101.86,51.109 +617701,107.41,56.128 +617702,105.36,54.495 +617703,103.11,52.802 +617704,100.61,51.042 +617705,106.07,56.133 +617706,104.05,54.477 +617707,101.83,52.761 +617708,99.362,50.976 +617709,104.73,56.137 +617710,102.74,54.459 +617711,100.55,52.72 +617712,98.114,50.912 +617713,103.38,56.14 +617714,101.43,54.441 +617715,99.274,52.68 +617716,96.868,50.85 +617717,102.04,56.141 +617718,100.12,54.422 +617719,97.995,52.641 +617720,95.625,50.789 +617721,100.69,56.141 +617722,98.804,54.403 +617723,96.717,52.602 +617724,94.383,50.729 +617725,99.342,56.139 +617726,97.49,54.383 +617727,95.44,52.563 +617728,93.144,50.67 +617729,97.992,56.137 +617730,96.176,54.363 +617731,94.163,52.525 +617732,91.906,50.614 +617733,96.641,56.133 +617734,94.861,54.343 +617735,92.887,52.487 +617736,90.67,50.558 +617737,95.289,56.127 +617738,93.547,54.321 +617739,91.611,52.45 +617740,89.436,50.504 +617741,93.936,56.12 +617742,92.231,54.3 +617743,90.336,52.413 +617744,88.204,50.452 +617745,92.581,56.112 +617746,90.916,54.278 +617747,89.062,52.377 +617748,86.974,50.401 +617749,91.225,56.103 +617750,89.6,54.255 +617751,87.788,52.341 +617752,85.745,50.352 +617753,89.869,56.092 +617754,88.283,54.232 +617755,86.514,52.306 +617756,84.518,50.304 +617757,88.511,56.079 +617758,86.966,54.209 +617759,85.241,52.271 +617760,83.293,50.258 +617761,87.151,56.065 +617762,85.649,54.185 +617763,83.969,52.237 +617764,82.069,50.213 +617765,85.791,56.05 +617766,84.332,54.16 +617767,82.697,52.203 +617768,80.847,50.17 +617769,84.43,56.033 +617770,83.014,54.135 +617771,81.426,52.17 +617772,79.627,50.129 +617773,83.068,56.015 +617774,81.696,54.11 +617775,80.155,52.137 +617776,78.408,50.089 +617777,81.705,55.995 +617778,80.377,54.084 +617779,78.885,52.105 +617780,77.19,50.051 +617781,80.341,55.973 +617782,79.058,54.057 +617783,77.615,52.074 +617784,75.974,50.014 +617785,78.976,55.951 +617786,77.739,54.03 +617787,76.346,52.043 +617788,74.759,49.979 +617789,77.61,55.926 +617790,76.42,54.003 +617791,75.077,52.012 +617792,73.546,49.946 +617793,76.243,55.9 +617794,75.1,53.975 +617795,73.808,51.982 +617796,72.333,49.915 +617797,74.875,55.873 +617798,73.781,53.946 +617799,72.54,51.952 +617800,71.122,49.885 +617801,73.507,55.844 +617802,72.46,53.917 +617803,71.273,51.924 +617804,69.912,49.856 +617805,72.138,55.814 +617806,71.14,53.888 +617807,70.005,51.895 +617808,68.704,49.83 +617809,70.768,55.782 +617810,69.82,53.857 +617811,68.739,51.867 +617812,67.496,49.805 +617813,69.398,55.749 +617814,68.499,53.827 +617815,67.472,51.84 +617816,66.289,49.781 +617817,68.026,55.714 +617818,67.178,53.796 +617819,66.206,51.813 +617820,65.083,49.76 +617821,66.654,55.677 +617822,65.857,53.764 +617823,64.94,51.787 +617824,63.878,49.74 +617825,65.282,55.639 +617826,64.536,53.732 +617827,63.674,51.761 +617828,62.674,49.721 +617829,63.909,55.6 +617830,63.214,53.699 +617831,62.409,51.736 +617832,61.471,49.704 +617833,62.535,55.559 +617834,61.893,53.666 +617835,61.144,51.711 +617836,60.268,49.689 +617837,61.161,55.516 +617838,60.571,53.632 +617839,59.879,51.687 +617840,59.066,49.676 +617841,59.787,55.473 +617842,59.249,53.598 +617843,58.615,51.664 +617844,57.864,49.664 +617845,58.412,55.427 +617846,57.927,53.563 +617847,57.351,51.64 +617848,56.663,49.654 +617849,57.037,55.38 +617850,56.605,53.528 +617851,56.087,51.618 +617852,55.463,49.645 +617853,55.661,55.332 +617854,55.283,53.492 +617855,54.823,51.596 +617856,54.263,49.638 +617857,54.285,55.282 +617858,53.961,53.456 +617859,53.559,51.574 +617860,53.063,49.632 +617861,52.909,55.23 +617862,52.639,53.419 +617863,52.296,51.553 +617864,51.864,49.628 +617865,51.532,55.177 +617866,51.317,53.382 +617867,51.032,51.533 +617868,50.665,49.626 +617869,50.155,55.123 +617870,49.995,53.344 +617871,49.769,51.513 +617872,49.466,49.625 +617873,48.778,55.067 +617874,48.673,53.306 +617875,48.506,51.494 +617876,48.267,49.626 +617877,47.401,55.01 +617878,47.351,53.267 +617879,47.243,51.475 +617880,47.068,49.628 +617881,46.024,54.951 +617882,46.029,53.228 +617883,45.98,51.456 +617884,45.87,49.632 +617885,44.647,54.891 +617886,44.707,53.188 +617887,44.717,51.438 +617888,44.671,49.637 +617889,43.27,54.829 +617890,43.385,53.148 +617891,43.454,51.421 +617892,43.472,49.644 +617893,41.892,54.766 +617894,42.063,53.108 +617895,42.192,51.404 +617896,42.273,49.652 +617897,40.515,54.702 +617898,40.741,53.067 +617899,40.929,51.387 +617900,41.074,49.661 +617901,39.138,54.636 +617902,39.419,53.025 +617903,39.666,51.371 +617904,39.874,49.672 +617905,37.761,54.569 +617906,38.097,52.983 +617907,38.404,51.355 +617908,38.674,49.684 +617909,36.384,54.501 +617910,36.776,52.941 +617911,37.141,51.34 +617912,37.474,49.698 +617913,35.007,54.431 +617914,35.455,52.898 +617915,35.878,51.326 +617916,36.274,49.713 +617917,33.63,54.36 +617918,34.133,52.855 +617919,34.615,51.311 +617920,35.073,49.729 +617921,32.254,54.288 +617922,32.812,52.811 +617923,33.352,51.297 +617924,33.871,49.747 +617925,30.878,54.215 +617926,31.492,52.767 +617927,32.089,51.284 +617928,32.669,49.765 +617929,29.502,54.14 +617930,30.171,52.722 +617931,30.826,51.271 +617932,31.466,49.785 +617933,28.127,54.064 +617934,28.851,52.677 +617935,29.563,51.258 +617936,30.262,49.807 +617937,26.752,53.987 +617938,27.53,52.632 +617939,28.299,51.246 +617940,29.058,49.829 +617941,25.378,53.908 +617942,26.211,52.586 +617943,27.036,51.235 +617944,27.853,49.852 +617945,24.004,53.829 +617946,24.891,52.54 +617947,25.772,51.223 +617948,26.647,49.877 +617949,22.63,53.748 +617950,23.572,52.494 +617951,24.508,51.212 +617952,25.44,49.903 +617953,21.257,53.666 +617954,22.252,52.447 +617955,23.244,51.201 +617956,24.233,49.93 +617957,19.885,53.583 +617958,20.934,52.4 +617959,21.98,51.191 +617960,23.024,49.957 +617961,18.513,53.499 +617962,19.615,52.352 +617963,20.715,51.181 +617964,21.815,49.986 +617965,17.142,53.414 +617966,18.297,52.305 +617967,19.451,51.172 +617968,20.604,50.016 +617969,15.772,53.328 +617970,16.979,52.256 +617971,18.186,51.162 +617972,19.392,50.047 +617973,14.402,53.241 +617974,15.662,52.208 +617975,16.92,51.153 +617976,18.179,50.078 +617977,13.034,53.153 +617978,14.345,52.159 +617979,15.655,51.145 +617980,16.965,50.111 +617981,11.666,53.064 +617982,13.028,52.11 +617983,14.389,51.137 +617984,15.75,50.144 +617985,10.299,52.974 +617986,11.712,52.061 +617987,13.123,51.128 +617988,14.533,50.179 +617989,8.9323,52.883 +617990,10.396,52.011 +617991,11.856,51.121 +617992,13.315,50.213 +617993,7.5671,52.792 +617994,9.0803,51.961 +617995,10.59,51.113 +617996,12.096,50.249 +617997,6.2028,52.699 +617998,7.7653,51.911 +617999,9.3224,51.106 +618000,10.875,50.286 +618001,4.8395,52.606 +618002,6.4507,51.861 +618003,8.0549,51.099 +618004,9.6534,50.323 +618005,3.4773,52.512 +618006,5.1366,51.81 +618007,6.787,51.092 +618008,8.4301,50.36 +618009,2.1162,52.417 +618010,3.823,51.759 +618011,5.5188,51.086 +618012,7.2052,50.399 +618013,0.75617,52.322 +618014,2.5098,51.708 +618015,4.2501,51.079 +618016,5.9789,50.438 +618017,359.4,52.226 +618018,1.1971,51.657 +618019,2.9811,51.073 +618020,4.7511,50.477 +618021,358.04,52.129 +618022,359.88,51.605 +618023,1.7116,51.067 +618024,3.5217,50.517 +618025,356.68,52.032 +618026,358.57,51.554 +618027,0.44175,51.062 +618028,2.2908,50.557 +618029,355.33,51.934 +618030,357.26,51.502 +618031,359.17,51.056 +618032,1.0582,50.598 +618033,353.97,51.836 +618034,355.95,51.45 +618035,357.9,51.051 +618036,359.82,50.639 +618037,352.62,51.737 +618038,354.64,51.398 +618039,356.63,51.045 +618040,358.59,50.681 +618041,351.27,51.637 +618042,353.33,51.346 +618043,355.36,51.04 +618044,357.35,50.722 +618045,349.92,51.538 +618046,352.02,51.293 +618047,354.09,51.035 +618048,356.11,50.765 +618049,348.57,51.437 +618050,350.72,51.241 +618051,352.81,51.03 +618052,354.87,50.807 +618053,347.23,51.337 +618054,349.41,51.188 +618055,351.54,51.025 +618056,353.63,50.849 +618057,345.88,51.236 +618058,348.1,51.136 +618059,350.27,51.021 +618060,352.38,50.892 +618061,344.54,51.135 +618062,346.79,51.083 +618063,348.99,51.016 +618064,351.14,50.935 +618065,343.2,51.033 +618066,345.49,51.03 +618067,347.72,51.011 +618068,349.89,50.978 +618069,341.85,50.932 +618070,344.18,50.978 +618071,346.44,51.007 +618072,348.64,51.021 +618073,340.52,50.83 +618074,342.88,50.925 +618075,345.17,51.002 +618076,347.39,51.064 +618077,339.18,50.728 +618078,341.57,50.872 +618079,343.89,50.998 +618080,346.14,51.107 +618081,337.84,50.626 +618082,340.27,50.819 +618083,342.61,50.993 +618084,344.88,51.15 +618085,336.51,50.524 +618086,338.97,50.767 +618087,341.34,50.989 +618088,343.62,51.193 +618089,335.18,50.422 +618090,337.67,50.714 +618091,340.06,50.984 +618092,342.37,51.236 +618093,333.85,50.32 +618094,336.37,50.661 +618095,338.78,50.979 +618096,341.1,51.278 +618097,332.52,50.218 +618098,335.07,50.608 +618099,337.5,50.975 +618100,339.84,51.321 +618101,331.19,50.116 +618102,333.77,50.556 +618103,336.22,50.97 +618104,338.58,51.363 +618105,329.87,50.015 +618106,332.47,50.503 +618107,334.94,50.965 +618108,337.31,51.405 +618109,328.55,49.913 +618110,331.17,50.451 +618111,333.66,50.961 +618112,336.04,51.446 +618113,327.23,49.812 +618114,329.87,50.398 +618115,332.38,50.956 +618116,334.77,51.487 +618117,325.91,49.711 +618118,328.57,50.346 +618119,331.1,50.951 +618120,333.5,51.528 +618121,324.59,49.61 +618122,327.28,50.294 +618123,329.82,50.946 +618124,332.23,51.569 +618125,323.28,49.51 +618126,325.98,50.242 +618127,328.53,50.94 +618128,330.95,51.609 +618129,321.97,49.41 +618130,324.69,50.19 +618131,327.25,50.935 +618132,329.68,51.648 +618133,320.66,49.31 +618134,323.39,50.139 +618135,325.97,50.929 +618136,328.4,51.687 +618137,319.35,49.211 +618138,322.1,50.087 +618139,324.68,50.924 +618140,327.12,51.726 +618141,318.04,49.113 +618142,320.81,50.036 +618143,323.4,50.918 +618144,325.83,51.764 +618145,316.74,49.015 +618146,319.52,49.985 +618147,322.11,50.912 +618148,324.55,51.801 +618149,315.44,48.917 +618150,318.23,49.934 +618151,320.82,50.906 +618152,323.26,51.838 +618153,314.14,48.82 +618154,316.94,49.883 +618155,319.54,50.899 +618156,321.97,51.874 +618157,312.84,48.724 +618158,315.65,49.833 +618159,318.25,50.893 +618160,320.68,51.909 +618161,311.54,48.629 +618162,314.36,49.783 +618163,316.96,50.886 +618164,319.39,51.943 +618165,310.25,48.534 +618166,313.07,49.733 +618167,315.67,50.878 +618168,318.1,51.977 +618169,308.96,48.44 +618170,311.78,49.683 +618171,314.38,50.871 +618172,316.8,52.01 +618173,307.67,48.347 +618174,310.5,49.634 +618175,313.09,50.863 +618176,315.5,52.042 +618177,306.39,48.255 +618178,309.21,49.585 +618179,311.8,50.855 +618180,314.21,52.073 +618181,305.1,48.164 +618182,307.93,49.536 +618183,310.51,50.847 +618184,312.9,52.104 +618185,303.82,48.073 +618186,306.64,49.488 +618187,309.22,50.839 +618188,311.6,52.133 +618189,302.54,47.984 +618190,305.36,49.44 +618191,307.93,50.83 +618192,310.3,52.162 +618193,301.27,47.896 +618194,304.08,49.393 +618195,306.64,50.821 +618196,308.99,52.189 +618197,299.99,47.808 +618198,302.8,49.345 +618199,305.34,50.811 +618200,307.68,52.216 +618201,298.72,47.722 +618202,301.51,49.298 +618203,304.05,50.802 +618204,306.37,52.241 +618205,297.45,47.637 +618206,300.23,49.252 +618207,302.75,50.791 +618208,305.06,52.266 +618209,296.18,47.553 +618210,298.95,49.206 +618211,301.46,50.781 +618212,303.75,52.289 +618213,294.92,47.47 +618214,297.68,49.16 +618215,300.16,50.77 +618216,302.44,52.311 +618217,293.65,47.389 +618218,296.4,49.115 +618219,298.87,50.759 +618220,301.12,52.332 +618221,292.39,47.308 +618222,295.12,49.07 +618223,297.57,50.747 +618224,299.8,52.352 +618225,291.14,47.229 +618226,293.85,49.025 +618227,296.27,50.735 +618228,298.48,52.371 +618229,289.88,47.152 +618230,292.57,48.981 +618231,294.98,50.723 +618232,297.16,52.388 +618233,288.63,47.076 +618234,291.29,48.938 +618235,293.68,50.71 +618236,295.84,52.405 +618237,287.37,47.001 +618238,290.02,48.895 +618239,292.38,50.697 +618240,294.51,52.42 +618241,286.13,46.927 +618242,288.75,48.852 +618243,291.08,50.683 +618244,293.19,52.434 +618245,284.88,46.855 +618246,287.47,48.81 +618247,289.78,50.669 +618248,291.86,52.446 +618249,283.63,46.785 +618250,286.2,48.768 +618251,288.48,50.655 +618252,290.53,52.457 +618253,282.39,46.716 +618254,284.93,48.727 +618255,287.18,50.64 +618256,289.2,52.467 +618257,281.15,46.648 +618258,283.66,48.686 +618259,285.88,50.624 +618260,287.87,52.476 +618261,279.91,46.582 +618262,282.39,48.646 +618263,284.58,50.608 +618264,286.54,52.483 +618265,278.68,46.518 +618266,281.12,48.607 +618267,283.28,50.592 +618268,285.21,52.488 +618269,277.44,46.455 +618270,279.85,48.568 +618271,281.97,50.575 +618272,283.87,52.493 +618273,276.21,46.394 +618274,278.59,48.529 +618275,280.67,50.558 +618276,282.53,52.496 +618277,274.98,46.335 +618278,277.32,48.491 +618279,279.37,50.54 +618280,281.2,52.497 +618281,273.75,46.277 +618282,276.05,48.454 +618283,278.07,50.522 +618284,279.86,52.497 +618285,272.53,46.221 +618286,274.79,48.417 +618287,276.76,50.503 +618288,278.52,52.495 +618289,271.3,46.166 +618290,273.52,48.38 +618291,275.46,50.484 +618292,277.17,52.492 +618293,270.08,46.114 +618294,272.26,48.345 +618295,274.15,50.464 +618296,275.83,52.488 +618297,268.86,46.063 +618298,270.99,48.309 +618299,272.85,50.444 +618300,274.49,52.482 +618301,267.65,46.014 +618302,269.73,48.275 +618303,271.54,50.423 +618304,273.14,52.474 +618305,266.43,45.966 +618306,268.47,48.241 +618307,270.24,50.402 +618308,271.8,52.465 +618309,265.21,45.921 +618310,267.2,48.207 +618311,268.93,50.38 +618312,270.45,52.455 +618313,264,45.877 +618314,265.94,48.175 +618315,267.62,50.358 +618316,269.1,52.443 +618317,262.79,45.835 +618318,264.68,48.142 +618319,266.32,50.335 +618320,267.75,52.429 +618321,261.58,45.795 +618322,263.42,48.111 +618323,265.01,50.312 +618324,266.4,52.413 +618325,260.37,45.757 +618326,262.16,48.08 +618327,263.7,50.288 +618328,265.05,52.397 +618329,259.17,45.721 +618330,260.9,48.049 +618331,262.39,50.263 +618332,263.7,52.378 +618333,257.96,45.686 +618334,259.64,48.019 +618335,261.09,50.238 +618336,262.34,52.358 +618337,256.76,45.653 +618338,258.38,47.99 +618339,259.78,50.213 +618340,260.99,52.336 +618341,255.56,45.623 +618342,257.13,47.962 +618343,258.47,50.187 +618344,259.63,52.313 +618345,254.36,45.594 +618346,255.87,47.934 +618347,257.16,50.16 +618348,258.28,52.288 +618349,253.16,45.567 +618350,254.61,47.906 +618351,255.85,50.133 +618352,256.92,52.262 +618353,251.96,45.542 +618354,253.35,47.879 +618355,254.54,50.105 +618356,255.57,52.233 +618357,250.76,45.518 +618358,252.1,47.853 +618359,253.23,50.077 +618360,254.21,52.204 +618361,249.56,45.497 +618362,250.84,47.828 +618363,251.92,50.048 +618364,252.85,52.172 +618365,248.37,45.478 +618366,249.59,47.803 +618367,250.61,50.019 +618368,251.49,52.139 +618369,247.18,45.46 +618370,248.33,47.779 +618371,249.3,49.989 +618372,250.13,52.104 +618373,245.98,45.444 +618374,247.08,47.755 +618375,247.99,49.958 +618376,248.77,52.068 +618377,244.79,45.43 +618378,245.82,47.732 +618379,246.68,49.927 +618380,247.41,52.03 +618381,243.6,45.419 +618382,244.57,47.709 +618383,245.37,49.896 +618384,246.05,51.991 +618385,242.41,45.408 +618386,243.31,47.688 +618387,244.06,49.864 +618388,244.69,51.949 +618389,241.22,45.4 +618390,242.06,47.666 +618391,242.75,49.831 +618392,243.32,51.907 +618393,240.03,45.394 +618394,240.81,47.646 +618395,241.44,49.798 +618396,241.96,51.862 +618397,238.84,45.389 +618398,239.55,47.626 +618399,240.13,49.764 +618400,240.6,51.816 +618401,237.65,45.386 +618402,238.3,47.606 +618403,238.82,49.73 +618404,239.24,51.769 +618405,236.46,45.385 +618406,237.05,47.588 +618407,237.51,49.695 +618408,237.87,51.719 +618409,235.28,45.386 +618410,235.79,47.569 +618411,236.2,49.66 +618412,236.51,51.669 +618413,234.09,45.389 +618414,234.54,47.552 +618415,234.89,49.624 +618416,235.14,51.616 +618417,232.9,45.393 +618418,233.29,47.535 +618419,233.57,49.588 +618420,233.78,51.562 +618421,231.72,45.399 +618422,232.04,47.518 +618423,232.26,49.551 +618424,232.42,51.507 +618425,230.53,45.407 +618426,230.78,47.503 +618427,230.95,49.514 +618428,231.05,51.45 +618429,229.34,45.416 +618430,229.53,47.487 +618431,229.64,49.476 +618432,229.69,51.391 +618433,228.16,45.427 +618434,228.28,47.473 +618435,228.33,49.438 +618436,228.32,51.331 +618437,226.97,45.44 +618438,227.03,47.458 +618439,227.02,49.399 +618440,226.96,51.269 +618441,225.78,45.454 +618442,225.78,47.445 +618443,225.71,49.36 +618444,225.59,51.206 +618445,224.6,45.471 +618446,224.53,47.432 +618447,224.4,49.32 +618448,224.23,51.141 +618449,223.41,45.488 +618450,223.27,47.419 +618451,223.09,49.28 +618452,222.86,51.075 +618453,222.22,45.507 +618454,222.02,47.407 +618455,221.78,49.239 +618456,221.5,51.008 +618457,221.03,45.528 +618458,220.77,47.396 +618459,220.47,49.198 +618460,220.13,50.939 +618461,219.84,45.55 +618462,219.52,47.385 +618463,219.16,49.156 +618464,218.77,50.868 +618465,218.66,45.574 +618466,218.27,47.375 +618467,217.85,49.114 +618468,217.41,50.796 +618469,217.47,45.599 +618470,217.02,47.365 +618471,216.54,49.071 +618472,216.04,50.723 +618473,216.28,45.626 +618474,215.76,47.355 +618475,215.23,49.028 +618476,214.68,50.648 +618477,215.09,45.654 +618478,214.51,47.346 +618479,213.92,48.985 +618480,213.32,50.572 +618481,213.89,45.683 +618482,213.26,47.338 +618483,212.61,48.941 +618484,211.96,50.495 +618485,212.7,45.714 +618486,212.01,47.33 +618487,211.3,48.897 +618488,210.59,50.416 +618489,211.51,45.746 +618490,210.76,47.323 +618491,210,48.852 +618492,209.23,50.336 +618493,210.32,45.779 +618494,209.5,47.315 +618495,208.69,48.807 +618496,207.87,50.255 +618497,209.12,45.814 +618498,208.25,47.309 +618499,207.38,48.761 +618500,206.51,50.173 +618501,207.93,45.85 +618502,207,47.303 +618503,206.07,48.715 +618504,205.15,50.089 +618505,206.73,45.887 +618506,205.74,47.297 +618507,204.77,48.669 +618508,203.79,50.004 +618509,205.53,45.925 +618510,204.49,47.292 +618511,203.46,48.623 +618512,202.43,49.918 +618513,204.33,45.964 +618514,203.24,47.287 +618515,202.15,48.576 +618516,201.07,49.831 +618517,203.13,46.004 +618518,201.98,47.282 +618519,200.85,48.528 +618520,199.72,49.742 +618521,201.93,46.045 +618522,200.73,47.278 +618523,199.54,48.481 +618524,198.36,49.653 +618525,200.73,46.087 +618526,199.48,47.274 +618527,198.23,48.433 +618528,197,49.562 +618529,199.53,46.13 +618530,198.22,47.271 +618531,196.93,48.385 +618532,195.65,49.471 +618533,198.32,46.175 +618534,196.97,47.268 +618535,195.62,48.336 +618536,194.29,49.378 +618537,197.12,46.22 +618538,195.71,47.265 +618539,194.32,48.287 +618540,192.94,49.285 +618541,195.91,46.265 +618542,194.46,47.263 +618543,193.02,48.238 +618544,191.59,49.19 +618545,194.7,46.312 +618546,193.2,47.261 +618547,191.71,48.189 +618548,190.24,49.095 +618549,193.49,46.359 +618550,191.94,47.259 +618551,190.41,48.139 +618552,188.89,48.999 +618553,192.28,46.407 +618554,190.69,47.257 +618555,189.11,48.089 +618556,187.54,48.902 +618557,191.06,46.456 +618558,189.43,47.256 +618559,187.81,48.039 +618560,186.19,48.804 +618561,189.85,46.506 +618562,188.17,47.255 +618563,186.51,47.989 +618564,184.84,48.705 +618565,188.63,46.556 +618566,186.92,47.255 +618567,185.2,47.938 +618568,183.5,48.605 +618569,187.41,46.606 +618570,185.66,47.254 +618571,183.9,47.888 +618572,182.15,48.505 +618573,186.19,46.657 +618574,184.4,47.254 +618575,182.6,47.837 +618576,180.81,48.404 +618577,184.97,46.709 +618578,183.14,47.254 +618579,181.31,47.786 +618580,179.47,48.303 +618581,183.75,46.761 +618582,181.88,47.254 +618583,180.01,47.734 +618584,178.13,48.201 +618585,182.52,46.813 +618586,180.62,47.254 +618587,178.71,47.683 +618588,176.79,48.098 +618589,181.3,46.866 +618590,179.36,47.255 +618591,177.41,47.632 +618592,175.45,47.995 +618593,180.07,46.919 +618594,178.1,47.256 +618595,176.11,47.58 +618596,174.11,47.891 +618597,178.84,46.973 +618598,176.84,47.256 +618599,174.82,47.528 +618600,172.78,47.787 +618601,177.61,47.026 +618602,175.58,47.257 +618603,173.52,47.476 +618604,171.44,47.682 +618605,176.37,47.08 +618606,174.31,47.258 +618607,172.23,47.425 +618608,170.11,47.577 +618609,175.14,47.134 +618610,173.05,47.26 +618611,170.93,47.373 +618612,168.78,47.472 +618613,173.9,47.188 +618614,171.79,47.261 +618615,169.64,47.321 +618616,167.45,47.366 +618617,172.66,47.242 +618618,170.52,47.262 +618619,168.35,47.269 +618620,166.12,47.26 +618621,171.42,47.296 +618622,169.26,47.264 +618623,167.05,47.217 +618624,164.8,47.154 +618625,170.18,47.351 +618626,168,47.265 +618627,165.76,47.165 +618628,163.47,47.048 +618629,168.93,47.405 +618630,166.73,47.267 +618631,164.47,47.113 +618632,162.15,46.941 +618633,167.69,47.459 +618634,165.46,47.268 +618635,163.18,47.061 +618636,160.83,46.835 +618637,166.44,47.513 +618638,164.2,47.27 +618639,161.89,47.009 +618640,159.51,46.728 +618641,165.19,47.567 +618642,162.93,47.271 +618643,160.6,46.957 +618644,158.19,46.622 +618645,163.94,47.62 +618646,161.66,47.273 +618647,159.31,46.905 +618648,156.87,46.515 +618649,162.68,47.674 +618650,160.4,47.274 +618651,158.02,46.853 +618652,155.56,46.409 +618653,161.43,47.727 +618654,159.13,47.276 +618655,156.74,46.802 +618656,154.25,46.302 +618657,160.17,47.779 +618658,157.86,47.277 +618659,155.45,46.75 +618660,152.94,46.196 +618661,158.91,47.832 +618662,156.59,47.279 +618663,154.17,46.699 +618664,151.63,46.09 +618665,157.65,47.884 +618666,155.32,47.28 +618667,152.88,46.648 +618668,150.33,45.984 +618669,156.39,47.935 +618670,154.05,47.281 +618671,151.6,46.596 +618672,149.02,45.879 +618673,155.12,47.987 +618674,152.77,47.282 +618675,150.31,46.546 +618676,147.72,45.774 +618677,153.85,48.037 +618678,151.5,47.283 +618679,149.03,46.495 +618680,146.42,45.669 +618681,152.58,48.087 +618682,150.23,47.284 +618683,147.75,46.444 +618684,145.12,45.565 +618685,151.31,48.137 +618686,148.96,47.284 +618687,146.47,46.394 +618688,143.83,45.461 +618689,150.04,48.186 +618690,147.68,47.285 +618691,145.19,46.344 +618692,142.53,45.358 +618693,148.77,48.234 +618694,146.41,47.285 +618695,143.91,46.294 +618696,141.24,45.255 +618697,147.49,48.281 +618698,145.13,47.285 +618699,142.63,46.244 +618700,139.95,45.153 +618701,146.21,48.328 +618702,143.86,47.285 +618703,141.35,46.195 +618704,138.66,45.051 +618705,144.93,48.374 +618706,142.58,47.285 +618707,140.08,46.146 +618708,137.38,44.951 +618709,143.65,48.42 +618710,141.31,47.284 +618711,138.8,46.097 +618712,136.1,44.851 +618713,142.36,48.464 +618714,140.03,47.284 +618715,137.52,46.048 +618716,134.82,44.751 +618717,141.08,48.508 +618718,138.75,47.283 +618719,136.25,46 +618720,133.54,44.653 +618721,139.79,48.55 +618722,137.47,47.281 +618723,134.98,45.952 +618724,132.26,44.556 +618725,138.5,48.592 +618726,136.19,47.28 +618727,133.7,45.905 +618728,130.99,44.459 +618729,137.21,48.633 +618730,134.91,47.278 +618731,132.43,45.858 +618732,129.72,44.363 +618733,135.92,48.673 +618734,133.63,47.276 +618735,131.16,45.811 +618736,128.45,44.269 +618737,134.62,48.712 +618738,132.35,47.273 +618739,129.89,45.765 +618740,127.18,44.175 +618741,133.33,48.75 +618742,131.07,47.271 +618743,128.62,45.719 +618744,125.92,44.083 +618745,132.03,48.786 +618746,129.79,47.268 +618747,127.35,45.673 +618748,124.65,43.991 +618749,130.73,48.822 +618750,128.51,47.264 +618751,126.08,45.628 +618752,123.39,43.901 +618753,129.43,48.857 +618754,127.23,47.261 +618755,124.81,45.584 +618756,122.14,43.812 +618757,128.13,48.89 +618758,125.94,47.257 +618759,123.54,45.539 +618760,120.88,43.725 +618761,126.82,48.922 +618762,124.66,47.252 +618763,122.28,45.496 +618764,119.63,43.638 +618765,125.52,48.953 +618766,123.37,47.247 +618767,121.01,45.452 +618768,118.38,43.553 +618769,124.21,48.983 +618770,122.09,47.242 +618771,119.75,45.409 +618772,117.13,43.47 +618773,122.9,49.011 +618774,120.8,47.236 +618775,118.48,45.367 +618776,115.88,43.388 +618777,121.59,49.039 +618778,119.52,47.23 +618779,117.22,45.325 +618780,114.64,43.307 +618781,120.28,49.064 +618782,118.23,47.224 +618783,115.96,45.284 +618784,113.4,43.228 +618785,118.97,49.089 +618786,116.94,47.217 +618787,114.7,45.243 +618788,112.16,43.15 +618789,117.65,49.112 +618790,115.66,47.21 +618791,113.44,45.203 +618792,110.92,43.074 +618793,116.34,49.134 +618794,114.37,47.202 +618795,112.18,45.164 +618796,109.69,42.999 +618797,115.02,49.155 +618798,113.08,47.194 +618799,110.92,45.124 +618800,108.45,42.927 +618801,113.7,49.174 +618802,111.79,47.185 +618803,109.66,45.086 +618804,107.22,42.855 +618805,112.38,49.191 +618806,110.5,47.176 +618807,108.4,45.048 +618808,106,42.786 +618809,111.06,49.207 +618810,109.21,47.166 +618811,107.14,45.011 +618812,104.77,42.718 +618813,109.73,49.222 +618814,107.92,47.156 +618815,105.89,44.974 +618816,103.55,42.652 +618817,108.41,49.235 +618818,106.63,47.146 +618819,104.63,44.938 +618820,102.32,42.588 +618821,107.08,49.247 +618822,105.34,47.135 +618823,103.37,44.902 +618824,101.1,42.525 +618825,105.76,49.257 +618826,104.05,47.123 +618827,102.12,44.867 +618828,99.887,42.465 +618829,104.43,49.265 +618830,102.76,47.111 +618831,100.86,44.833 +618832,98.672,42.406 +618833,103.1,49.272 +618834,101.47,47.099 +618835,99.611,44.799 +618836,97.458,42.35 +618837,101.77,49.278 +618838,100.18,47.086 +618839,98.358,44.766 +618840,96.247,42.295 +618841,100.44,49.282 +618842,98.883,47.072 +618843,97.106,44.734 +618844,95.037,42.242 +618845,99.108,49.284 +618846,97.59,47.058 +618847,95.854,44.702 +618848,93.83,42.191 +618849,97.775,49.285 +618850,96.296,47.043 +618851,94.603,44.671 +618852,92.624,42.142 +618853,96.441,49.284 +618854,95.003,47.028 +618855,93.353,44.641 +618856,91.42,42.095 +618857,95.106,49.281 +618858,93.709,47.012 +618859,92.103,44.611 +618860,90.217,42.05 +618861,93.77,49.277 +618862,92.414,46.996 +618863,90.853,44.582 +618864,89.017,42.007 +618865,92.433,49.271 +618866,91.12,46.979 +618867,89.604,44.554 +618868,87.818,41.967 +618869,91.095,49.263 +618870,89.825,46.962 +618871,88.356,44.526 +618872,86.62,41.928 +618873,89.756,49.254 +618874,88.53,46.944 +618875,87.108,44.499 +618876,85.425,41.891 +618877,88.416,49.243 +618878,87.234,46.926 +618879,85.861,44.473 +618880,84.23,41.857 +618881,87.076,49.23 +618882,85.938,46.907 +618883,84.614,44.447 +618884,83.038,41.824 +618885,85.735,49.215 +618886,84.643,46.887 +618887,83.367,44.422 +618888,81.846,41.794 +618889,84.393,49.199 +618890,83.346,46.867 +618891,82.121,44.398 +618892,80.656,41.766 +618893,83.051,49.181 +618894,82.05,46.846 +618895,80.876,44.375 +618896,79.468,41.74 +618897,81.707,49.162 +618898,80.754,46.825 +618899,79.63,44.352 +618900,78.28,41.716 +618901,80.364,49.14 +618902,79.457,46.803 +618903,78.386,44.33 +618904,77.094,41.694 +618905,79.019,49.117 +618906,78.16,46.78 +618907,77.141,44.308 +618908,75.909,41.675 +618909,77.675,49.093 +618910,76.863,46.758 +618911,75.897,44.288 +618912,74.724,41.657 +618913,76.329,49.066 +618914,75.566,46.734 +618915,74.653,44.268 +618916,73.541,41.642 +618917,74.983,49.038 +618918,74.269,46.71 +618919,73.41,44.249 +618920,72.359,41.629 +618921,73.637,49.008 +618922,72.971,46.685 +618923,72.167,44.23 +618924,71.178,41.618 +618925,72.29,48.976 +618926,71.674,46.66 +618927,70.924,44.212 +618928,69.997,41.609 +618929,70.943,48.943 +618930,70.376,46.634 +618931,69.682,44.195 +618932,68.817,41.602 +618933,69.596,48.908 +618934,69.079,46.608 +618935,68.44,44.179 +618936,67.638,41.598 +618937,68.248,48.871 +618938,67.781,46.581 +618939,67.198,44.163 +618940,66.46,41.595 +618941,66.9,48.833 +618942,66.483,46.553 +618943,65.956,44.148 +618944,65.282,41.595 +618945,65.551,48.792 +618946,65.186,46.525 +618947,64.714,44.134 +618948,64.104,41.596 +618949,64.203,48.75 +618950,63.888,46.496 +618951,63.473,44.12 +618952,62.927,41.6 +618953,62.854,48.707 +618954,62.59,46.467 +618955,62.232,44.107 +618956,61.75,41.606 +618957,61.505,48.661 +618958,61.292,46.438 +618959,60.991,44.095 +618960,60.574,41.613 +618961,60.156,48.614 +618962,59.995,46.407 +618963,59.75,44.084 +618964,59.397,41.623 +618965,58.807,48.566 +618966,58.697,46.376 +618967,58.509,44.073 +618968,58.221,41.635 +618969,57.458,48.515 +618970,57.399,46.345 +618971,57.269,44.063 +618972,57.045,41.649 +618973,56.109,48.463 +618974,56.102,46.313 +618975,56.028,44.053 +618976,55.869,41.665 +618977,54.76,48.409 +618978,54.804,46.281 +618979,54.788,44.044 +618980,54.693,41.682 +618981,53.412,48.354 +618982,53.507,46.248 +618983,53.547,44.036 +618984,53.517,41.702 +618985,52.063,48.297 +618986,52.21,46.214 +618987,52.307,44.028 +618988,52.34,41.724 +618989,50.714,48.239 +618990,50.913,46.18 +618991,51.067,44.022 +618992,51.163,41.747 +618993,49.366,48.178 +618994,49.616,46.146 +618995,49.826,44.015 +618996,49.986,41.772 +618997,48.017,48.117 +618998,48.319,46.111 +618999,48.586,44.01 +619000,48.809,41.799 +619001,46.669,48.053 +619002,47.022,46.075 +619003,47.346,44.005 +619004,47.631,41.828 +619005,45.322,47.989 +619006,45.726,46.039 +619007,46.105,44 +619008,46.453,41.859 +619009,43.974,47.922 +619010,44.429,46.003 +619011,44.865,43.997 +619012,45.274,41.891 +619013,42.627,47.854 +619014,43.133,45.966 +619015,43.624,43.993 +619016,44.094,41.925 +619017,41.281,47.785 +619018,41.837,45.929 +619019,42.383,43.991 +619020,42.914,41.961 +619021,39.935,47.714 +619022,40.542,45.891 +619023,41.142,43.989 +619024,41.733,41.998 +619025,38.589,47.642 +619026,39.247,45.853 +619027,39.901,43.987 +619028,40.552,42.037 +619029,37.244,47.568 +619030,37.952,45.814 +619031,38.66,43.986 +619032,39.369,42.078 +619033,35.899,47.493 +619034,36.657,45.775 +619035,37.419,43.986 +619036,38.186,42.12 +619037,34.555,47.416 +619038,35.362,45.735 +619039,36.178,43.986 +619040,37.001,42.163 +619041,33.211,47.338 +619042,34.068,45.695 +619043,34.936,43.987 +619044,35.816,42.208 +619045,31.868,47.259 +619046,32.774,45.655 +619047,33.694,43.988 +619048,34.629,42.255 +619049,30.526,47.178 +619050,31.481,45.614 +619051,32.452,43.99 +619052,33.442,42.302 +619053,29.185,47.096 +619054,30.188,45.573 +619055,31.209,43.993 +619056,32.253,42.351 +619057,27.844,47.013 +619058,28.895,45.531 +619059,29.967,43.995 +619060,31.063,42.402 +619061,26.504,46.929 +619062,27.602,45.489 +619063,28.724,43.999 +619064,29.872,42.453 +619065,25.165,46.843 +619066,26.31,45.447 +619067,27.481,44.002 +619068,28.679,42.506 +619069,23.827,46.756 +619070,25.019,45.404 +619071,26.237,44.006 +619072,27.485,42.56 +619073,22.49,46.668 +619074,23.728,45.361 +619075,24.993,44.011 +619076,26.29,42.615 +619077,21.153,46.579 +619078,22.437,45.318 +619079,23.749,44.016 +619080,25.094,42.672 +619081,19.818,46.489 +619082,21.146,45.274 +619083,22.505,44.022 +619084,23.896,42.729 +619085,18.483,46.397 +619086,19.857,45.23 +619087,21.26,44.027 +619088,22.696,42.787 +619089,17.15,46.305 +619090,18.567,45.186 +619091,20.015,44.034 +619092,21.495,42.847 +619093,15.818,46.212 +619094,17.278,45.142 +619095,18.769,44.04 +619096,20.292,42.907 +619097,14.486,46.117 +619098,15.99,45.097 +619099,17.523,44.047 +619100,19.088,42.968 +619101,13.156,46.022 +619102,14.702,45.052 +619103,16.276,44.055 +619104,17.883,43.03 +619105,11.827,45.926 +619106,13.414,45.007 +619107,15.03,44.062 +619108,16.675,43.092 +619109,10.499,45.829 +619110,12.128,44.961 +619111,13.782,44.07 +619112,15.466,43.156 +619113,9.173,45.731 +619114,10.841,44.916 +619115,12.535,44.079 +619116,14.255,43.22 +619117,7.8478,45.632 +619118,9.5554,44.87 +619119,11.286,44.087 +619120,13.043,43.285 +619121,6.5238,45.532 +619122,8.2701,44.824 +619123,10.038,44.096 +619124,11.828,43.35 +619125,5.2012,45.432 +619126,6.9855,44.778 +619127,8.7887,44.105 +619128,10.612,43.416 +619129,3.88,45.331 +619130,5.7013,44.731 +619131,7.5391,44.115 +619132,9.3946,43.482 +619133,2.5602,45.23 +619134,4.4178,44.685 +619135,6.2891,44.124 +619136,8.175,43.549 +619137,1.2418,45.127 +619138,3.1349,44.638 +619139,5.0385,44.134 +619140,6.9536,43.617 +619141,359.92,45.025 +619142,1.8526,44.591 +619143,3.7875,44.144 +619144,5.7303,43.684 +619145,358.61,44.921 +619146,0.57091,44.545 +619147,2.5359,44.155 +619148,4.5052,43.752 +619149,357.3,44.817 +619150,359.29,44.498 +619151,1.2838,44.165 +619152,3.2783,43.821 +619153,355.98,44.713 +619154,358.01,44.451 +619155,0.031202,44.176 +619156,2.0494,43.889 +619157,354.67,44.608 +619158,356.73,44.404 +619159,358.78,44.187 +619160,0.81872,43.958 +619161,353.36,44.503 +619162,355.45,44.357 +619163,357.52,44.197 +619164,359.59,44.027 +619165,352.06,44.398 +619166,354.17,44.309 +619167,356.27,44.208 +619168,358.35,44.096 +619169,350.75,44.292 +619170,352.89,44.262 +619171,355.02,44.22 +619172,357.12,44.165 +619173,349.45,44.186 +619174,351.62,44.215 +619175,353.76,44.231 +619176,355.88,44.234 +619177,348.14,44.08 +619178,350.34,44.168 +619179,352.5,44.242 +619180,354.64,44.303 +619181,346.84,43.974 +619182,349.06,44.121 +619183,351.25,44.253 +619184,353.39,44.372 +619185,345.54,43.868 +619186,347.79,44.074 +619187,349.99,44.265 +619188,352.15,44.441 +619189,344.25,43.761 +619190,346.52,44.027 +619191,348.73,44.276 +619192,350.9,44.51 +619193,342.95,43.655 +619194,345.24,43.98 +619195,347.47,44.288 +619196,349.66,44.579 +619197,341.66,43.548 +619198,343.97,43.933 +619199,346.22,44.299 +619200,348.41,44.647 +619201,340.37,43.442 +619202,342.7,43.887 +619203,344.96,44.311 +619204,347.15,44.715 +619205,339.08,43.336 +619206,341.43,43.84 +619207,343.7,44.322 +619208,345.9,44.783 +619209,337.79,43.23 +619210,340.15,43.794 +619211,342.44,44.334 +619212,344.65,44.851 +619213,336.51,43.124 +619214,338.88,43.748 +619215,341.18,44.345 +619216,343.39,44.918 +619217,335.22,43.018 +619218,337.61,43.702 +619219,339.91,44.356 +619220,342.13,44.984 +619221,333.94,42.913 +619222,336.35,43.656 +619223,338.65,44.367 +619224,340.87,45.05 +619225,332.66,42.808 +619226,335.08,43.61 +619227,337.39,44.378 +619228,339.6,45.116 +619229,331.38,42.704 +619230,333.81,43.565 +619231,336.13,44.389 +619232,338.34,45.181 +619233,330.11,42.6 +619234,332.55,43.519 +619235,334.86,44.4 +619236,337.07,45.245 +619237,328.83,42.496 +619238,331.28,43.474 +619239,333.6,44.411 +619240,335.8,45.309 +619241,327.56,42.393 +619242,330.01,43.43 +619243,332.33,44.421 +619244,334.53,45.372 +619245,326.29,42.291 +619246,328.75,43.385 +619247,331.07,44.432 +619248,333.26,45.435 +619249,325.03,42.189 +619250,327.49,43.341 +619251,329.8,44.442 +619252,331.99,45.496 +619253,323.76,42.088 +619254,326.22,43.298 +619255,328.53,44.452 +619256,330.71,45.557 +619257,322.5,41.988 +619258,324.96,43.254 +619259,327.27,44.462 +619260,329.43,45.617 +619261,321.24,41.888 +619262,323.7,43.211 +619263,326,44.471 +619264,328.15,45.676 +619265,319.98,41.79 +619266,322.44,43.168 +619267,324.73,44.481 +619268,326.87,45.735 +619269,318.73,41.692 +619270,321.18,43.126 +619271,323.46,44.49 +619272,325.59,45.792 +619273,317.47,41.595 +619274,319.92,43.084 +619275,322.19,44.499 +619276,324.31,45.848 +619277,316.22,41.499 +619278,318.66,43.042 +619279,320.92,44.507 +619280,323.02,45.904 +619281,314.97,41.405 +619282,317.41,43.001 +619283,319.65,44.516 +619284,321.73,45.958 +619285,313.72,41.311 +619286,316.15,42.96 +619287,318.38,44.524 +619288,320.44,46.012 +619289,312.48,41.219 +619290,314.89,42.92 +619291,317.11,44.531 +619292,319.15,46.064 +619293,311.24,41.127 +619294,313.64,42.88 +619295,315.83,44.539 +619296,317.86,46.115 +619297,309.99,41.037 +619298,312.39,42.841 +619299,314.56,44.546 +619300,316.56,46.165 +619301,308.76,40.948 +619302,311.13,42.802 +619303,313.29,44.552 +619304,315.27,46.214 +619305,307.52,40.861 +619306,309.88,42.763 +619307,312.01,44.559 +619308,313.97,46.261 +619309,306.29,40.775 +619310,308.63,42.726 +619311,310.74,44.565 +619312,312.67,46.308 +619313,305.05,40.69 +619314,307.37,42.688 +619315,309.46,44.57 +619316,311.37,46.353 +619317,303.82,40.607 +619318,306.12,42.651 +619319,308.19,44.575 +619320,310.07,46.397 +619321,302.6,40.525 +619322,304.87,42.615 +619323,306.91,44.58 +619324,308.77,46.439 +619325,301.37,40.445 +619326,303.62,42.579 +619327,305.64,44.585 +619328,307.46,46.48 +619329,300.15,40.367 +619330,302.38,42.544 +619331,304.36,44.589 +619332,306.16,46.52 +619333,298.93,40.29 +619334,301.13,42.51 +619335,303.08,44.592 +619336,304.85,46.558 +619337,297.71,40.214 +619338,299.88,42.476 +619339,301.8,44.595 +619340,303.54,46.595 +619341,296.49,40.141 +619342,298.63,42.442 +619343,300.53,44.598 +619344,302.23,46.631 +619345,295.28,40.069 +619346,297.39,42.41 +619347,299.25,44.6 +619348,300.92,46.665 +619349,294.06,39.999 +619350,296.14,42.378 +619351,297.97,44.602 +619352,299.61,46.698 +619353,292.85,39.931 +619354,294.9,42.346 +619355,296.69,44.603 +619356,298.29,46.729 +619357,291.64,39.864 +619358,293.65,42.315 +619359,295.41,44.604 +619360,296.98,46.758 +619361,290.44,39.8 +619362,292.41,42.285 +619363,294.13,44.604 +619364,295.66,46.786 +619365,289.23,39.738 +619366,291.16,42.256 +619367,292.85,44.604 +619368,294.34,46.813 +619369,288.03,39.677 +619370,289.92,42.227 +619371,291.57,44.604 +619372,293.03,46.838 +619373,286.83,39.619 +619374,288.68,42.199 +619375,290.29,44.603 +619376,291.71,46.861 +619377,285.63,39.562 +619378,287.44,42.171 +619379,289,44.601 +619380,290.39,46.883 +619381,284.43,39.508 +619382,286.2,42.145 +619383,287.72,44.599 +619384,289.07,46.903 +619385,283.23,39.455 +619386,284.96,42.119 +619387,286.44,44.596 +619388,287.74,46.921 +619389,282.04,39.405 +619390,283.72,42.093 +619391,285.16,44.593 +619392,286.42,46.938 +619393,280.85,39.357 +619394,282.48,42.069 +619395,283.87,44.589 +619396,285.1,46.953 +619397,279.66,39.311 +619398,281.24,42.045 +619399,282.59,44.585 +619400,283.77,46.966 +619401,278.47,39.268 +619402,280,42.022 +619403,281.31,44.58 +619404,282.45,46.978 +619405,277.28,39.226 +619406,278.76,42 +619407,280.02,44.574 +619408,281.12,46.988 +619409,276.09,39.187 +619410,277.52,41.978 +619411,278.74,44.568 +619412,279.79,46.996 +619413,274.91,39.15 +619414,276.29,41.957 +619415,277.45,44.562 +619416,278.47,47.002 +619417,273.72,39.115 +619418,275.05,41.937 +619419,276.17,44.555 +619420,277.14,47.007 +619421,272.54,39.083 +619422,273.81,41.918 +619423,274.89,44.547 +619424,275.81,47.01 +619425,271.36,39.053 +619426,272.58,41.899 +619427,273.6,44.539 +619428,274.48,47.011 +619429,270.18,39.025 +619430,271.34,41.881 +619431,272.32,44.53 +619432,273.15,47.01 +619433,269,39 +619434,270.11,41.864 +619435,271.03,44.521 +619436,271.82,47.008 +619437,267.82,38.976 +619438,268.87,41.848 +619439,269.74,44.511 +619440,270.48,47.004 +619441,266.64,38.956 +619442,267.64,41.833 +619443,268.46,44.5 +619444,269.15,46.998 +619445,265.47,38.937 +619446,266.4,41.818 +619447,267.17,44.489 +619448,267.82,46.99 +619449,264.29,38.921 +619450,265.17,41.804 +619451,265.89,44.478 +619452,266.49,46.981 +619453,263.12,38.908 +619454,263.94,41.791 +619455,264.6,44.465 +619456,265.15,46.969 +619457,261.94,38.896 +619458,262.7,41.779 +619459,263.32,44.453 +619460,263.82,46.956 +619461,260.77,38.887 +619462,261.47,41.767 +619463,262.03,44.439 +619464,262.49,46.941 +619465,259.6,38.881 +619466,260.24,41.757 +619467,260.74,44.425 +619468,261.15,46.925 +619469,258.43,38.877 +619470,259,41.747 +619471,259.46,44.411 +619472,259.82,46.906 +619473,257.26,38.875 +619474,257.77,41.738 +619475,258.17,44.395 +619476,258.48,46.886 +619477,256.08,38.875 +619478,256.54,41.729 +619479,256.88,44.38 +619480,257.15,46.864 +619481,254.91,38.878 +619482,255.31,41.722 +619483,255.6,44.363 +619484,255.81,46.84 +619485,253.74,38.883 +619486,254.07,41.715 +619487,254.31,44.346 +619488,254.48,46.814 +619489,252.57,38.891 +619490,252.84,41.709 +619491,253.02,44.329 +619492,253.14,46.787 +619493,251.4,38.901 +619494,251.61,41.704 +619495,251.74,44.311 +619496,251.81,46.757 +619497,250.23,38.913 +619498,250.38,41.699 +619499,250.45,44.292 +619500,250.47,46.726 +619501,249.06,38.927 +619502,249.15,41.696 +619503,249.17,44.273 +619504,249.14,46.694 +619505,247.89,38.944 +619506,247.91,41.693 +619507,247.88,44.253 +619508,247.8,46.659 +619509,246.72,38.963 +619510,246.68,41.691 +619511,246.59,44.233 +619512,246.47,46.623 +619513,245.55,38.984 +619514,245.45,41.689 +619515,245.31,44.212 +619516,245.14,46.584 +619517,244.38,39.007 +619518,244.22,41.688 +619519,244.02,44.191 +619520,243.8,46.545 +619521,243.21,39.033 +619522,242.99,41.689 +619523,242.74,44.169 +619524,242.47,46.503 +619525,242.04,39.061 +619526,241.75,41.689 +619527,241.45,44.146 +619528,241.13,46.46 +619529,240.86,39.09 +619530,240.52,41.691 +619531,240.17,44.123 +619532,239.8,46.415 +619533,239.69,39.122 +619534,239.29,41.693 +619535,238.88,44.099 +619536,238.47,46.368 +619537,238.52,39.156 +619538,238.06,41.696 +619539,237.6,44.075 +619540,237.13,46.32 +619541,237.34,39.192 +619542,236.83,41.7 +619543,236.31,44.051 +619544,235.8,46.27 +619545,236.17,39.231 +619546,235.59,41.704 +619547,235.03,44.026 +619548,234.47,46.218 +619549,234.99,39.271 +619550,234.36,41.71 +619551,233.74,44 +619552,233.14,46.165 +619553,233.82,39.313 +619554,233.13,41.715 +619555,232.46,43.974 +619556,231.81,46.11 +619557,232.64,39.357 +619558,231.89,41.722 +619559,231.17,43.947 +619560,230.48,46.053 +619561,231.46,39.403 +619562,230.66,41.729 +619563,229.89,43.92 +619564,229.15,45.995 +619565,230.28,39.45 +619566,229.43,41.737 +619567,228.61,43.892 +619568,227.82,45.935 +619569,229.1,39.5 +619570,228.19,41.745 +619571,227.32,43.864 +619572,226.49,45.874 +619573,227.92,39.551 +619574,226.96,41.755 +619575,226.04,43.836 +619576,225.16,45.811 +619577,226.74,39.604 +619578,225.72,41.764 +619579,224.76,43.807 +619580,223.83,45.747 +619581,225.56,39.659 +619582,224.49,41.775 +619583,223.48,43.777 +619584,222.51,45.681 +619585,224.37,39.716 +619586,223.25,41.786 +619587,222.19,43.747 +619588,221.18,45.614 +619589,223.18,39.774 +619590,222.02,41.797 +619591,220.91,43.717 +619592,219.85,45.545 +619593,222,39.833 +619594,220.78,41.81 +619595,219.63,43.686 +619596,218.53,45.475 +619597,220.81,39.894 +619598,219.55,41.822 +619599,218.35,43.655 +619600,217.21,45.403 +619601,219.62,39.957 +619602,218.31,41.836 +619603,217.07,43.623 +619604,215.89,45.331 +619605,218.42,40.021 +619606,217.07,41.85 +619607,215.79,43.591 +619608,214.56,45.256 +619609,217.23,40.087 +619610,215.84,41.864 +619611,214.51,43.559 +619612,213.24,45.181 +619613,216.04,40.154 +619614,214.6,41.879 +619615,213.23,43.526 +619616,211.92,45.104 +619617,214.84,40.222 +619618,213.36,41.894 +619619,211.95,43.493 +619620,210.61,45.026 +619621,213.64,40.291 +619622,212.12,41.91 +619623,210.68,43.46 +619624,209.29,44.947 +619625,212.44,40.362 +619626,210.88,41.927 +619627,209.4,43.426 +619628,207.97,44.866 +619629,211.24,40.434 +619630,209.64,41.944 +619631,208.12,43.392 +619632,206.66,44.784 +619633,210.04,40.507 +619634,208.41,41.961 +619635,206.84,43.358 +619636,205.35,44.702 +619637,208.83,40.581 +619638,207.16,41.979 +619639,205.57,43.323 +619640,204.03,44.618 +619641,207.62,40.656 +619642,205.92,41.997 +619643,204.29,43.288 +619644,202.72,44.533 +619645,206.42,40.732 +619646,204.68,42.016 +619647,203.02,43.253 +619648,201.41,44.447 +619649,205.2,40.809 +619650,203.44,42.035 +619651,201.74,43.218 +619652,200.1,44.359 +619653,203.99,40.887 +619654,202.2,42.054 +619655,200.47,43.182 +619656,198.8,44.271 +619657,202.78,40.965 +619658,200.96,42.074 +619659,199.2,43.146 +619660,197.49,44.182 +619661,201.56,41.045 +619662,199.71,42.094 +619663,197.92,43.11 +619664,196.19,44.093 +619665,200.34,41.125 +619666,198.47,42.115 +619667,196.65,43.074 +619668,194.88,44.002 +619669,199.12,41.206 +619670,197.22,42.136 +619671,195.38,43.037 +619672,193.58,43.91 +619673,197.9,41.287 +619674,195.98,42.157 +619675,194.11,43 +619676,192.28,43.818 +619677,196.68,41.37 +619678,194.73,42.179 +619679,192.84,42.963 +619680,190.98,43.725 +619681,195.45,41.452 +619682,193.49,42.2 +619683,191.57,42.926 +619684,189.69,43.631 +619685,194.23,41.535 +619686,192.24,42.222 +619687,190.3,42.889 +619688,188.39,43.536 +619689,193,41.619 +619690,190.99,42.245 +619691,189.03,42.852 +619692,187.1,43.441 +619693,191.76,41.703 +619694,189.75,42.267 +619695,187.76,42.815 +619696,185.8,43.345 +619697,190.53,41.787 +619698,188.5,42.29 +619699,186.49,42.777 +619700,184.51,43.249 +619701,189.3,41.872 +619702,187.25,42.313 +619703,185.23,42.74 +619704,183.23,43.152 +619705,188.06,41.957 +619706,186,42.336 +619707,183.96,42.702 +619708,181.94,43.055 +619709,186.82,42.042 +619710,184.75,42.359 +619711,182.69,42.665 +619712,180.65,42.957 +619713,185.58,42.127 +619714,183.5,42.383 +619715,181.43,42.627 +619716,179.37,42.859 +619717,184.33,42.213 +619718,182.25,42.407 +619719,180.16,42.589 +619720,178.09,42.76 +619721,183.09,42.298 +619722,180.99,42.43 +619723,178.9,42.552 +619724,176.81,42.662 +619725,181.84,42.383 +619726,179.74,42.454 +619727,177.64,42.514 +619728,175.53,42.563 +619729,180.59,42.469 +619730,178.49,42.478 +619731,176.38,42.476 +619732,174.25,42.463 +619733,179.34,42.554 +619734,177.23,42.502 +619735,175.11,42.439 +619736,172.98,42.364 +619737,178.09,42.639 +619738,175.98,42.526 +619739,173.85,42.401 +619740,171.71,42.265 +619741,176.83,42.724 +619742,174.72,42.55 +619743,172.59,42.364 +619744,170.44,42.165 +619745,175.58,42.809 +619746,173.47,42.574 +619747,171.33,42.327 +619748,169.17,42.065 +619749,174.32,42.894 +619750,172.21,42.599 +619751,170.07,42.29 +619752,167.9,41.966 +619753,173.06,42.978 +619754,170.96,42.623 +619755,168.82,42.253 +619756,166.63,41.866 +619757,171.79,43.062 +619758,169.7,42.647 +619759,167.56,42.216 +619760,165.37,41.767 +619761,170.53,43.145 +619762,168.44,42.671 +619763,166.3,42.179 +619764,164.11,41.668 +619765,169.26,43.228 +619766,167.18,42.695 +619767,165.04,42.142 +619768,162.85,41.569 +619769,168,43.311 +619770,165.92,42.719 +619771,163.79,42.106 +619772,161.59,41.47 +619773,166.73,43.393 +619774,164.66,42.743 +619775,162.53,42.07 +619776,160.34,41.372 +619777,165.45,43.474 +619778,163.4,42.767 +619779,161.28,42.034 +619780,159.09,41.274 +619781,164.18,43.555 +619782,162.14,42.791 +619783,160.03,41.998 +619784,157.84,41.176 +619785,162.91,43.636 +619786,160.88,42.815 +619787,158.77,41.963 +619788,156.59,41.079 +619789,161.63,43.715 +619790,159.61,42.838 +619791,157.52,41.928 +619792,155.34,40.982 +619793,160.35,43.794 +619794,158.35,42.861 +619795,156.27,41.893 +619796,154.1,40.886 +619797,159.07,43.872 +619798,157.09,42.885 +619799,155.02,41.859 +619800,152.85,40.791 +619801,157.79,43.949 +619802,155.82,42.908 +619803,153.77,41.824 +619804,151.61,40.696 +619805,156.5,44.026 +619806,154.56,42.93 +619807,152.52,41.791 +619808,150.37,40.602 +619809,155.22,44.101 +619810,153.29,42.953 +619811,151.27,41.757 +619812,149.14,40.509 +619813,153.93,44.176 +619814,152.03,42.976 +619815,150.02,41.724 +619816,147.9,40.416 +619817,152.64,44.25 +619818,150.76,42.998 +619819,148.78,41.691 +619820,146.67,40.325 +619821,151.35,44.323 +619822,149.49,43.02 +619823,147.53,41.659 +619824,145.44,40.234 +619825,150.06,44.394 +619826,148.23,43.041 +619827,146.28,41.627 +619828,144.21,40.145 +619829,148.77,44.465 +619830,146.96,43.063 +619831,145.04,41.596 +619832,142.99,40.056 +619833,147.47,44.535 +619834,145.69,43.084 +619835,143.79,41.565 +619836,141.76,39.969 +619837,146.18,44.603 +619838,144.42,43.105 +619839,142.55,41.534 +619840,140.54,39.882 +619841,144.88,44.671 +619842,143.15,43.125 +619843,141.3,41.504 +619844,139.32,39.797 +619845,143.58,44.737 +619846,141.88,43.145 +619847,140.06,41.474 +619848,138.1,39.713 +619849,142.28,44.802 +619850,140.61,43.165 +619851,138.82,41.445 +619852,136.88,39.63 +619853,140.98,44.865 +619854,139.34,43.185 +619855,137.58,41.417 +619856,135.67,39.549 +619857,139.67,44.928 +619858,138.07,43.204 +619859,136.34,41.389 +619860,134.46,39.469 +619861,138.37,44.989 +619862,136.79,43.223 +619863,135.1,41.361 +619864,133.25,39.39 +619865,137.06,45.049 +619866,135.52,43.241 +619867,133.86,41.334 +619868,132.04,39.313 +619869,135.76,45.108 +619870,134.25,43.259 +619871,132.62,41.308 +619872,130.83,39.237 +619873,134.45,45.165 +619874,132.97,43.277 +619875,131.38,41.282 +619876,129.63,39.163 +619877,133.14,45.221 +619878,131.7,43.294 +619879,130.14,41.257 +619880,128.42,39.091 +619881,131.83,45.275 +619882,130.42,43.311 +619883,128.9,41.232 +619884,127.22,39.02 +619885,130.52,45.328 +619886,129.15,43.327 +619887,127.66,41.208 +619888,126.02,38.951 +619889,129.21,45.379 +619890,127.87,43.343 +619891,126.43,41.185 +619892,124.83,38.883 +619893,127.89,45.429 +619894,126.6,43.358 +619895,125.19,41.162 +619896,123.63,38.818 +619897,126.58,45.478 +619898,125.32,43.373 +619899,123.95,41.14 +619900,122.44,38.754 +619901,125.26,45.524 +619902,124.05,43.388 +619903,122.72,41.119 +619904,121.24,38.692 +619905,123.95,45.57 +619906,122.77,43.402 +619907,121.48,41.098 +619908,120.05,38.632 +619909,122.63,45.613 +619910,121.49,43.415 +619911,120.25,41.078 +619912,118.86,38.574 +619913,121.31,45.656 +619914,120.21,43.428 +619915,119.01,41.059 +619916,117.67,38.517 +619917,119.99,45.696 +619918,118.94,43.441 +619919,117.78,41.04 +619920,116.49,38.463 +619921,118.67,45.735 +619922,117.66,43.453 +619923,116.55,41.022 +619924,115.3,38.411 +619925,117.35,45.772 +619926,116.38,43.465 +619927,115.31,41.005 +619928,114.12,38.361 +619929,116.03,45.808 +619930,115.1,43.476 +619931,114.08,40.989 +619932,112.94,38.313 +619933,114.71,45.842 +619934,113.82,43.486 +619935,112.85,40.973 +619936,111.75,38.267 +619937,113.38,45.874 +619938,112.54,43.496 +619939,111.62,40.958 +619940,110.57,38.224 +619941,112.06,45.904 +619942,111.26,43.506 +619943,110.39,40.944 +619944,109.4,38.182 +619945,110.73,45.933 +619946,109.98,43.515 +619947,109.16,40.931 +619948,108.22,38.143 +619949,109.41,45.96 +619950,108.7,43.523 +619951,107.92,40.918 +619952,107.04,38.106 +619953,108.08,45.986 +619954,107.42,43.531 +619955,106.69,40.906 +619956,105.87,38.072 +619957,106.76,46.009 +619958,106.14,43.538 +619959,105.46,40.895 +619960,104.69,38.039 +619961,105.43,46.031 +619962,104.86,43.545 +619963,104.23,40.885 +619964,103.52,38.009 +619965,104.11,46.051 +619966,103.58,43.551 +619967,103,40.875 +619968,102.34,37.982 +619969,102.78,46.069 +619970,102.3,43.556 +619971,101.77,40.866 +619972,101.17,37.957 +619973,101.45,46.085 +619974,101.02,43.561 +619975,100.54,40.859 +619976,99.999,37.934 +619977,100.12,46.1 +619978,99.74,43.566 +619979,99.314,40.851 +619980,98.827,37.913 +619981,98.795,46.113 +619982,98.459,43.57 +619983,98.085,40.845 +619984,97.657,37.895 +619985,97.467,46.124 +619986,97.178,43.573 +619987,96.855,40.84 +619988,96.487,37.879 +619989,96.139,46.133 +619990,95.897,43.576 +619991,95.626,40.835 +619992,95.317,37.866 +619993,94.81,46.14 +619994,94.615,43.578 +619995,94.397,40.831 +619996,94.147,37.855 +619997,93.481,46.146 +619998,93.334,43.579 +619999,93.168,40.828 +620000,92.978,37.847 +620001,92.152,46.15 +620002,92.052,43.58 +620003,91.939,40.826 +620004,91.809,37.841 +620005,90.823,46.152 +620006,90.771,43.58 +620007,90.711,40.824 +620008,90.64,37.838 +620009,89.494,46.152 +620010,89.489,43.58 +620011,89.482,40.824 +620012,89.472,37.837 +620013,88.165,46.15 +620014,88.207,43.579 +620015,88.253,40.824 +620016,88.303,37.838 +620017,86.836,46.146 +620018,86.926,43.578 +620019,87.024,40.825 +620020,87.134,37.842 +620021,85.507,46.141 +620022,85.644,43.576 +620023,85.795,40.827 +620024,85.965,37.849 +620025,84.178,46.133 +620026,84.363,43.573 +620027,84.567,40.83 +620028,84.796,37.858 +620029,82.849,46.124 +620030,83.081,43.57 +620031,83.338,40.833 +620032,83.627,37.869 +620033,81.52,46.113 +620034,81.8,43.566 +620035,82.109,40.837 +620036,82.457,37.883 +620037,80.192,46.101 +620038,80.519,43.562 +620039,80.879,40.843 +620040,81.287,37.899 +620041,78.864,46.086 +620042,79.238,43.557 +620043,79.65,40.849 +620044,80.116,37.917 +620045,77.536,46.07 +620046,77.956,43.552 +620047,78.421,40.855 +620048,78.945,37.938 +620049,76.209,46.052 +620050,76.676,43.545 +620051,77.191,40.863 +620052,77.773,37.962 +620053,74.881,46.032 +620054,75.395,43.539 +620055,75.961,40.871 +620056,76.601,37.988 +620057,73.555,46.01 +620058,74.114,43.532 +620059,74.731,40.88 +620060,75.428,38.016 +620061,72.228,45.986 +620062,72.834,43.524 +620063,73.501,40.89 +620064,74.254,38.046 +620065,70.903,45.961 +620066,71.553,43.515 +620067,72.271,40.901 +620068,73.079,38.079 +620069,69.577,45.934 +620070,70.273,43.507 +620071,71.04,40.913 +620072,71.903,38.114 +620073,68.252,45.905 +620074,68.993,43.497 +620075,69.809,40.925 +620076,70.727,38.151 +620077,66.928,45.875 +620078,67.714,43.487 +620079,68.578,40.938 +620080,69.549,38.191 +620081,65.604,45.843 +620082,66.434,43.477 +620083,67.346,40.952 +620084,68.37,38.233 +620085,64.281,45.809 +620086,65.155,43.466 +620087,66.115,40.966 +620088,67.19,38.277 +620089,62.959,45.773 +620090,63.876,43.454 +620091,64.883,40.982 +620092,66.009,38.323 +620093,61.638,45.736 +620094,62.597,43.442 +620095,63.65,40.998 +620096,64.827,38.371 +620097,60.317,45.697 +620098,61.319,43.429 +620099,62.417,41.014 +620100,63.643,38.422 +620101,58.997,45.657 +620102,60.041,43.416 +620103,61.184,41.032 +620104,62.458,38.474 +620105,57.677,45.614 +620106,58.763,43.402 +620107,59.95,41.05 +620108,61.272,38.529 +620109,56.359,45.57 +620110,57.486,43.388 +620111,58.716,41.069 +620112,60.084,38.585 +620113,55.041,45.525 +620114,56.209,43.374 +620115,57.482,41.088 +620116,58.894,38.643 +620117,53.725,45.478 +620118,54.932,43.358 +620119,56.247,41.109 +620120,57.704,38.704 +620121,52.409,45.43 +620122,53.655,43.343 +620123,55.012,41.13 +620124,56.511,38.766 +620125,51.094,45.38 +620126,52.379,43.327 +620127,53.776,41.151 +620128,55.317,38.83 +620129,49.78,45.328 +620130,51.104,43.31 +620131,52.54,41.174 +620132,54.121,38.896 +620133,48.468,45.275 +620134,49.828,43.293 +620135,51.303,41.196 +620136,52.924,38.964 +620137,47.156,45.221 +620138,48.554,43.276 +620139,50.066,41.22 +620140,51.725,39.033 +620141,45.846,45.165 +620142,47.279,43.258 +620143,48.828,41.244 +620144,50.524,39.104 +620145,44.536,45.107 +620146,46.005,43.24 +620147,47.59,41.269 +620148,49.321,39.177 +620149,43.228,45.048 +620150,44.732,43.221 +620151,46.351,41.294 +620152,48.117,39.251 +620153,41.921,44.988 +620154,43.458,43.202 +620155,45.112,41.32 +620156,46.911,39.326 +620157,40.616,44.927 +620158,42.186,43.183 +620159,43.872,41.346 +620160,45.703,39.404 +620161,39.311,44.864 +620162,40.913,43.163 +620163,42.631,41.374 +620164,44.493,39.482 +620165,38.008,44.8 +620166,39.642,43.143 +620167,41.39,41.401 +620168,43.281,39.562 +620169,36.706,44.735 +620170,38.37,43.122 +620171,40.149,41.429 +620172,42.067,39.644 +620173,35.405,44.668 +620174,37.1,43.102 +620175,38.907,41.458 +620176,40.851,39.727 +620177,34.106,44.601 +620178,35.829,43.08 +620179,37.664,41.487 +620180,39.633,39.81 +620181,32.809,44.532 +620182,34.56,43.059 +620183,36.42,41.516 +620184,38.413,39.896 +620185,31.512,44.462 +620186,33.29,43.037 +620187,35.176,41.546 +620188,37.191,39.982 +620189,30.217,44.391 +620190,32.022,43.015 +620191,33.932,41.577 +620192,35.968,40.069 +620193,28.924,44.319 +620194,30.754,42.993 +620195,32.686,41.608 +620196,34.742,40.158 +620197,27.632,44.246 +620198,29.486,42.97 +620199,31.44,41.639 +620200,33.514,40.247 +620201,26.342,44.171 +620202,28.219,42.947 +620203,30.194,41.671 +620204,32.284,40.338 +620205,25.053,44.096 +620206,26.952,42.924 +620207,28.947,41.703 +620208,31.052,40.429 +620209,23.766,44.02 +620210,25.686,42.901 +620211,27.699,41.736 +620212,29.818,40.521 +620213,22.481,43.943 +620214,24.421,42.877 +620215,26.45,41.769 +620216,28.582,40.614 +620217,21.197,43.865 +620218,23.156,42.854 +620219,25.201,41.802 +620220,27.344,40.708 +620221,19.914,43.787 +620222,21.892,42.83 +620223,23.951,41.836 +620224,26.104,40.802 +620225,18.634,43.707 +620226,20.628,42.805 +620227,22.701,41.87 +620228,24.862,40.897 +620229,17.355,43.627 +620230,19.365,42.781 +620231,21.45,41.904 +620232,23.617,40.993 +620233,16.078,43.546 +620234,18.103,42.757 +620235,20.198,41.938 +620236,22.371,41.089 +620237,14.803,43.465 +620238,16.841,42.732 +620239,18.945,41.973 +620240,21.123,41.186 +620241,13.529,43.383 +620242,15.58,42.708 +620243,17.692,42.008 +620244,19.872,41.283 +620245,12.257,43.3 +620246,14.319,42.683 +620247,16.438,42.043 +620248,18.62,41.381 +620249,10.987,43.217 +620250,13.059,42.658 +620251,15.183,42.079 +620252,17.366,41.478 +620253,9.7189,43.133 +620254,11.799,42.633 +620255,13.928,42.115 +620256,16.109,41.577 +620257,8.4526,43.049 +620258,10.541,42.608 +620259,12.672,42.151 +620260,14.851,41.675 +620261,7.1881,42.964 +620262,9.2824,42.583 +620263,11.416,42.187 +620264,13.59,41.774 +620265,5.9254,42.879 +620266,8.0248,42.558 +620267,10.158,42.223 +620268,12.328,41.872 +620269,4.6646,42.794 +620270,6.7678,42.533 +620271,8.9003,42.259 +620272,11.064,41.971 +620273,3.4058,42.708 +620274,5.5115,42.508 +620275,7.6416,42.296 +620276,9.7972,42.07 +620277,2.1488,42.622 +620278,4.2558,42.483 +620279,6.3822,42.332 +620280,8.529,42.169 +620281,0.89375,42.536 +620282,3.0007,42.458 +620283,5.1222,42.369 +620284,7.2589,42.268 +620285,359.64,42.45 +620286,1.7462,42.433 +620287,3.8615,42.406 +620288,5.9868,42.367 +620289,358.39,42.364 +620290,0.49236,42.409 +620291,2.6001,42.443 +620292,4.7129,42.466 +620293,357.14,42.277 +620294,359.24,42.384 +620295,1.338,42.479 +620296,3.4372,42.564 +620297,355.89,42.191 +620298,357.99,42.359 +620299,0.075277,42.516 +620300,2.1595,42.662 +620301,354.65,42.104 +620302,356.73,42.335 +620303,358.81,42.553 +620304,0.88011,42.76 +620305,353.4,42.018 +620306,355.48,42.31 +620307,357.55,42.59 +620308,359.6,42.858 +620309,352.16,41.932 +620310,354.23,42.286 +620311,356.28,42.627 +620312,358.32,42.955 +620313,350.92,41.846 +620314,352.98,42.262 +620315,355.02,42.664 +620316,357.03,43.052 +620317,349.69,41.76 +620318,351.73,42.238 +620319,353.75,42.701 +620320,355.74,43.148 +620321,348.45,41.675 +620322,350.48,42.214 +620323,352.49,42.738 +620324,354.46,43.244 +620325,347.22,41.59 +620326,349.24,42.191 +620327,351.22,42.774 +620328,353.17,43.34 +620329,345.99,41.505 +620330,347.99,42.168 +620331,349.95,42.811 +620332,351.88,43.435 +620333,344.76,41.42 +620334,346.74,42.145 +620335,348.68,42.847 +620336,350.58,43.529 +620337,343.53,41.336 +620338,345.49,42.122 +620339,347.41,42.884 +620340,349.29,43.622 +620341,342.3,41.253 +620342,344.25,42.099 +620343,346.14,42.92 +620344,347.99,43.715 +620345,341.08,41.17 +620346,343,42.077 +620347,344.87,42.956 +620348,346.69,43.807 +620349,339.86,41.088 +620350,341.76,42.055 +620351,343.6,42.992 +620352,345.39,43.899 +620353,338.64,41.007 +620354,340.51,42.034 +620355,342.33,43.028 +620356,344.09,43.989 +620357,337.42,40.926 +620358,339.27,42.013 +620359,341.06,43.063 +620360,342.79,44.079 +620361,336.2,40.846 +620362,338.03,41.992 +620363,339.79,43.098 +620364,341.49,44.168 +620365,334.99,40.766 +620366,336.78,41.971 +620367,338.51,43.134 +620368,340.18,44.255 +620369,333.78,40.688 +620370,335.54,41.951 +620371,337.24,43.168 +620372,338.87,44.342 +620373,332.57,40.61 +620374,334.3,41.932 +620375,335.96,43.203 +620376,337.57,44.428 +620377,331.36,40.534 +620378,333.06,41.912 +620379,334.69,43.237 +620380,336.26,44.513 +620381,330.15,40.458 +620382,331.82,41.893 +620383,333.41,43.271 +620384,334.95,44.597 +620385,328.94,40.384 +620386,330.58,41.875 +620387,332.14,43.305 +620388,333.64,44.68 +620389,327.74,40.311 +620390,329.34,41.857 +620391,330.86,43.339 +620392,332.32,44.761 +620393,326.54,40.238 +620394,328.1,41.839 +620395,329.59,43.372 +620396,331.01,44.842 +620397,325.34,40.167 +620398,326.86,41.822 +620399,328.31,43.405 +620400,329.69,44.921 +620401,324.14,40.098 +620402,325.62,41.806 +620403,327.03,43.437 +620404,328.38,44.999 +620405,322.94,40.029 +620406,324.38,41.79 +620407,325.75,43.469 +620408,327.06,45.076 +620409,321.75,39.962 +620410,323.15,41.774 +620411,324.47,43.501 +620412,325.74,45.151 +620413,320.56,39.896 +620414,321.91,41.759 +620415,323.19,43.532 +620416,324.42,45.226 +620417,319.36,39.832 +620418,320.67,41.745 +620419,321.92,43.563 +620420,323.1,45.298 +620421,318.17,39.769 +620422,319.44,41.731 +620423,320.64,43.594 +620424,321.78,45.37 +620425,316.98,39.708 +620426,318.2,41.718 +620427,319.36,43.624 +620428,320.46,45.44 +620429,315.8,39.648 +620430,316.97,41.705 +620431,318.07,43.654 +620432,319.13,45.509 +620433,314.61,39.59 +620434,315.73,41.693 +620435,316.79,43.684 +620436,317.81,45.576 +620437,313.42,39.533 +620438,314.5,41.682 +620439,315.51,43.713 +620440,316.48,45.642 +620441,312.24,39.478 +620442,313.26,41.671 +620443,314.23,43.741 +620444,315.16,45.706 +620445,311.06,39.425 +620446,312.03,41.66 +620447,312.95,43.769 +620448,313.83,45.769 +620449,309.88,39.374 +620450,310.79,41.651 +620451,311.67,43.797 +620452,312.5,45.831 +620453,308.7,39.324 +620454,309.56,41.642 +620455,310.38,43.824 +620456,311.17,45.89 +620457,307.52,39.277 +620458,308.33,41.634 +620459,309.1,43.851 +620460,309.85,45.949 +620461,306.34,39.231 +620462,307.09,41.626 +620463,307.82,43.877 +620464,308.52,46.005 +620465,305.16,39.187 +620466,305.86,41.619 +620467,306.53,43.902 +620468,307.19,46.06 +620469,303.99,39.145 +620470,304.63,41.613 +620471,305.25,43.928 +620472,305.86,46.114 +620473,302.81,39.105 +620474,303.4,41.607 +620475,303.97,43.952 +620476,304.52,46.166 +620477,301.64,39.067 +620478,302.16,41.602 +620479,302.68,43.976 +620480,303.19,46.216 +620481,300.46,39.031 +620482,300.93,41.598 +620483,301.4,44 +620484,301.86,46.264 +620485,299.29,38.997 +620486,299.7,41.595 +620487,300.11,44.023 +620488,300.53,46.311 +620489,298.12,38.965 +620490,298.47,41.592 +620491,298.83,44.046 +620492,299.2,46.356 +620493,296.94,38.936 +620494,297.23,41.59 +620495,297.54,44.068 +620496,297.86,46.4 +620497,295.77,38.908 +620498,296,41.589 +620499,296.26,44.089 +620500,296.53,46.441 +620501,294.6,38.883 +620502,294.77,41.588 +620503,294.97,44.11 +620504,295.2,46.481 +620505,293.43,38.86 +620506,293.54,41.589 +620507,293.69,44.131 +620508,293.86,46.52 +620509,292.26,38.839 +620510,292.31,41.59 +620511,292.4,44.151 +620512,292.53,46.556 +620513,291.09,38.82 +620514,291.08,41.591 +620515,291.12,44.17 +620516,291.19,46.591 +620517,289.92,38.804 +620518,289.84,41.594 +620519,289.83,44.189 +620520,289.86,46.624 +620521,288.75,38.79 +620522,288.61,41.597 +620523,288.54,44.207 +620524,288.53,46.655 +620525,287.58,38.778 +620526,287.38,41.601 +620527,287.26,44.224 +620528,287.19,46.685 +620529,286.41,38.769 +620530,286.15,41.606 +620531,285.97,44.242 +620532,285.86,46.712 +620533,285.24,38.762 +620534,284.92,41.612 +620535,284.69,44.258 +620536,284.52,46.738 +620537,284.07,38.757 +620538,283.68,41.618 +620539,283.4,44.274 +620540,283.19,46.762 +620541,282.9,38.755 +620542,282.45,41.625 +620543,282.11,44.289 +620544,281.85,46.784 +620545,281.73,38.755 +620546,281.22,41.633 +620547,280.83,44.304 +620548,280.52,46.805 +620549,280.55,38.757 +620550,279.99,41.642 +620551,279.54,44.318 +620552,279.18,46.824 +620553,279.38,38.762 +620554,278.76,41.652 +620555,278.26,44.332 +620556,277.85,46.84 +620557,278.21,38.769 +620558,277.52,41.662 +620559,276.97,44.344 +620560,276.52,46.855 +620561,277.04,38.778 +620562,276.29,41.673 +620563,275.69,44.357 +620564,275.18,46.869 +620565,275.86,38.79 +620566,275.06,41.685 +620567,274.4,44.369 +620568,273.85,46.88 +620569,274.69,38.804 +620570,273.82,41.698 +620571,273.11,44.38 +620572,272.52,46.89 +620573,273.51,38.821 +620574,272.59,41.712 +620575,271.83,44.39 +620576,271.19,46.898 +620577,272.34,38.84 +620578,271.36,41.726 +620579,270.54,44.401 +620580,269.85,46.904 +620581,271.16,38.861 +620582,270.12,41.741 +620583,269.26,44.41 +620584,268.52,46.908 +620585,269.98,38.885 +620586,268.89,41.757 +620587,267.97,44.419 +620588,267.19,46.91 +620589,268.8,38.911 +620590,267.65,41.774 +620591,266.69,44.427 +620592,265.86,46.911 +620593,267.62,38.939 +620594,266.42,41.791 +620595,265.4,44.435 +620596,264.53,46.91 +620597,266.44,38.97 +620598,265.18,41.809 +620599,264.12,44.442 +620600,263.2,46.907 +620601,265.26,39.003 +620602,263.94,41.828 +620603,262.83,44.449 +620604,261.87,46.902 +620605,264.08,39.038 +620606,262.71,41.848 +620607,261.55,44.455 +620608,260.55,46.896 +620609,262.89,39.076 +620610,261.47,41.869 +620611,260.27,44.46 +620612,259.22,46.888 +620613,261.7,39.116 +620614,260.23,41.89 +620615,258.98,44.465 +620616,257.89,46.878 +620617,260.52,39.158 +620618,259,41.912 +620619,257.7,44.469 +620620,256.57,46.866 +620621,259.33,39.202 +620622,257.76,41.935 +620623,256.42,44.473 +620624,255.24,46.853 +620625,258.14,39.248 +620626,256.52,41.958 +620627,255.13,44.477 +620628,253.92,46.838 +620629,256.94,39.297 +620630,255.28,41.983 +620631,253.85,44.479 +620632,252.59,46.821 +620633,255.75,39.348 +620634,254.04,42.008 +620635,252.57,44.481 +620636,251.27,46.803 +620637,254.55,39.401 +620638,252.8,42.033 +620639,251.29,44.483 +620640,249.95,46.783 +620641,253.36,39.456 +620642,251.56,42.06 +620643,250.01,44.484 +620644,248.63,46.761 +620645,252.16,39.513 +620646,250.32,42.087 +620647,248.72,44.485 +620648,247.31,46.738 +620649,250.96,39.572 +620650,249.08,42.115 +620651,247.44,44.485 +620652,245.99,46.713 +620653,249.75,39.633 +620654,247.84,42.143 +620655,246.16,44.485 +620656,244.67,46.686 +620657,248.55,39.696 +620658,246.59,42.172 +620659,244.88,44.484 +620660,243.36,46.658 +620661,247.34,39.761 +620662,245.35,42.202 +620663,243.6,44.482 +620664,242.04,46.628 +620665,246.13,39.827 +620666,244.1,42.233 +620667,242.32,44.48 +620668,240.73,46.597 +620669,244.92,39.896 +620670,242.86,42.264 +620671,241.04,44.478 +620672,239.41,46.564 +620673,243.71,39.967 +620674,241.62,42.296 +620675,239.77,44.475 +620676,238.1,46.53 +620677,242.49,40.039 +620678,240.37,42.328 +620679,238.49,44.472 +620680,236.79,46.495 +620681,241.28,40.113 +620682,239.12,42.361 +620683,237.21,44.468 +620684,235.48,46.457 +620685,240.06,40.189 +620686,237.88,42.395 +620687,235.93,44.464 +620688,234.17,46.419 +620689,238.84,40.266 +620690,236.63,42.429 +620691,234.66,44.46 +620692,232.87,46.379 +620693,237.61,40.345 +620694,235.38,42.464 +620695,233.38,44.455 +620696,231.56,46.337 +620697,236.39,40.426 +620698,234.13,42.499 +620699,232.1,44.449 +620700,230.26,46.295 +620701,235.16,40.508 +620702,232.88,42.535 +620703,230.83,44.443 +620704,228.95,46.25 +620705,233.93,40.591 +620706,231.63,42.571 +620707,229.55,44.437 +620708,227.65,46.205 +620709,232.7,40.676 +620710,230.38,42.608 +620711,228.28,44.431 +620712,226.35,46.158 +620713,231.47,40.763 +620714,229.13,42.646 +620715,227,44.424 +620716,225.06,46.11 +620717,230.23,40.851 +620718,227.87,42.684 +620719,225.73,44.416 +620720,223.76,46.061 +620721,228.99,40.94 +620722,226.62,42.723 +620723,224.46,44.409 +620724,222.46,46.011 +620725,227.75,41.03 +620726,225.37,42.762 +620727,223.19,44.401 +620728,221.17,45.959 +620729,226.51,41.122 +620730,224.11,42.801 +620731,221.91,44.392 +620732,219.88,45.907 +620733,225.27,41.214 +620734,222.86,42.841 +620735,220.64,44.384 +620736,218.59,45.853 +620737,224.02,41.308 +620738,221.6,42.881 +620739,219.37,44.375 +620740,217.3,45.798 +620741,222.77,41.403 +620742,220.34,42.922 +620743,218.1,44.366 +620744,216.01,45.742 +620745,221.52,41.499 +620746,219.09,42.963 +620747,216.83,44.356 +620748,214.72,45.685 +620749,220.26,41.596 +620750,217.83,43.005 +620751,215.56,44.346 +620752,213.44,45.627 +620753,219.01,41.694 +620754,216.57,43.047 +620755,214.29,44.336 +620756,212.16,45.568 +620757,217.75,41.793 +620758,215.31,43.089 +620759,213.03,44.326 +620760,210.88,45.509 +620761,216.49,41.892 +620762,214.05,43.132 +620763,211.76,44.315 +620764,209.6,45.448 +620765,215.23,41.993 +620766,212.79,43.175 +620767,210.49,44.305 +620768,208.32,45.386 +620769,213.96,42.094 +620770,211.52,43.219 +620771,209.22,44.294 +620772,207.05,45.324 +620773,212.7,42.195 +620774,210.26,43.262 +620775,207.96,44.283 +620776,205.77,45.261 +620777,211.43,42.298 +620778,209,43.306 +620779,206.69,44.271 +620780,204.5,45.197 +620781,210.16,42.401 +620782,207.73,43.35 +620783,205.43,44.26 +620784,203.23,45.133 +620785,208.89,42.504 +620786,206.47,43.395 +620787,204.16,44.248 +620788,201.96,45.067 +620789,207.61,42.608 +620790,205.2,43.44 +620791,202.9,44.237 +620792,200.7,45.002 +620793,206.33,42.713 +620794,203.93,43.485 +620795,201.64,44.225 +620796,199.43,44.935 +620797,205.05,42.817 +620798,202.67,43.53 +620799,200.38,44.213 +620800,198.17,44.868 +620801,203.77,42.922 +620802,201.4,43.575 +620803,199.11,44.201 +620804,196.91,44.801 +620805,202.49,43.028 +620806,200.13,43.621 +620807,197.85,44.189 +620808,195.65,44.733 +620809,201.21,43.134 +620810,198.86,43.667 +620811,196.59,44.176 +620812,194.39,44.665 +620813,199.92,43.239 +620814,197.59,43.713 +620815,195.33,44.164 +620816,193.14,44.596 +620817,198.63,43.345 +620818,196.32,43.759 +620819,194.07,44.152 +620820,191.88,44.527 +620821,197.34,43.452 +620822,195.05,43.805 +620823,192.81,44.14 +620824,190.63,44.458 +620825,196.05,43.558 +620826,193.78,43.851 +620827,191.56,44.127 +620828,189.38,44.388 +620829,194.75,43.664 +620830,192.5,43.897 +620831,190.3,44.115 +620832,188.14,44.318 +620833,193.45,43.77 +620834,191.23,43.944 +620835,189.04,44.103 +620836,186.89,44.248 +620837,192.16,43.876 +620838,189.95,43.99 +620839,187.78,44.091 +620840,185.65,44.178 +620841,190.86,43.982 +620842,188.68,44.037 +620843,186.53,44.078 +620844,184.41,44.108 +620845,189.55,44.088 +620846,187.4,44.083 +620847,185.27,44.066 +620848,183.17,44.037 +620849,188.25,44.193 +620850,186.13,44.13 +620851,184.02,44.054 +620852,181.93,43.967 +620853,186.95,44.298 +620854,184.85,44.177 +620855,182.76,44.042 +620856,180.69,43.897 +620857,185.64,44.403 +620858,183.57,44.223 +620859,181.51,44.031 +620860,179.46,43.827 +620861,184.33,44.508 +620862,182.29,44.27 +620863,180.26,44.019 +620864,178.23,43.757 +620865,183.02,44.612 +620866,181.01,44.316 +620867,179,44.007 +620868,177,43.687 +620869,181.71,44.716 +620870,179.73,44.363 +620871,177.75,43.996 +620872,175.77,43.617 +620873,180.4,44.819 +620874,178.45,44.409 +620875,176.5,43.985 +620876,174.54,43.548 +620877,179.08,44.922 +620878,177.17,44.455 +620879,175.25,43.974 +620880,173.32,43.479 +620881,177.76,45.024 +620882,175.89,44.501 +620883,174,43.963 +620884,172.1,43.41 +620885,176.45,45.126 +620886,174.61,44.547 +620887,172.75,43.953 +620888,170.87,43.342 +620889,175.13,45.227 +620890,173.32,44.593 +620891,171.5,43.942 +620892,169.66,43.274 +620893,173.81,45.327 +620894,172.04,44.639 +620895,170.25,43.932 +620896,168.44,43.207 +620897,172.49,45.426 +620898,170.76,44.684 +620899,169,43.922 +620900,167.22,43.14 +620901,171.16,45.525 +620902,169.47,44.73 +620903,167.75,43.913 +620904,166.01,43.074 +620905,169.84,45.623 +620906,168.19,44.775 +620907,166.51,43.903 +620908,164.8,43.009 +620909,168.51,45.721 +620910,166.9,44.82 +620911,165.26,43.894 +620912,163.59,42.944 +620913,167.18,45.817 +620914,165.61,44.865 +620915,164.01,43.886 +620916,162.38,42.879 +620917,165.86,45.912 +620918,164.33,44.909 +620919,162.77,43.878 +620920,161.17,42.816 +620921,164.53,46.007 +620922,163.04,44.954 +620923,161.52,43.87 +620924,159.97,42.753 +620925,163.2,46.1 +620926,161.75,44.998 +620927,160.27,43.862 +620928,158.76,42.692 +620929,161.86,46.193 +620930,160.46,45.042 +620931,159.03,43.855 +620932,157.56,42.631 +620933,160.53,46.284 +620934,159.17,45.085 +620935,157.78,43.848 +620936,156.36,42.571 +620937,159.2,46.375 +620938,157.88,45.128 +620939,156.54,43.841 +620940,155.16,42.512 +620941,157.86,46.464 +620942,156.59,45.171 +620943,155.3,43.835 +620944,153.96,42.454 +620945,156.53,46.552 +620946,155.3,45.214 +620947,154.05,43.83 +620948,152.77,42.397 +620949,155.19,46.639 +620950,154.01,45.256 +620951,152.81,43.825 +620952,151.57,42.342 +620953,153.85,46.725 +620954,152.72,45.298 +620955,151.57,43.82 +620956,150.38,42.287 +620957,152.52,46.81 +620958,151.43,45.34 +620959,150.32,43.815 +620960,149.19,42.234 +620961,151.18,46.893 +620962,150.14,45.381 +620963,149.08,43.812 +620964,148,42.182 +620965,149.84,46.976 +620966,148.85,45.422 +620967,147.84,43.808 +620968,146.81,42.131 +620969,148.5,47.057 +620970,147.55,45.462 +620971,146.6,43.806 +620972,145.62,42.081 +620973,147.15,47.136 +620974,146.26,45.502 +620975,145.36,43.803 +620976,144.43,42.033 +620977,145.81,47.214 +620978,144.97,45.542 +620979,144.11,43.801 +620980,143.25,41.987 +620981,144.47,47.291 +620982,143.68,45.581 +620983,142.87,43.8 +620984,142.06,41.941 +620985,143.13,47.367 +620986,142.38,45.62 +620987,141.63,43.8 +620988,140.88,41.897 +620989,141.78,47.441 +620990,141.09,45.658 +620991,140.39,43.799 +620992,139.69,41.855 +620993,140.44,47.513 +620994,139.79,45.696 +620995,139.15,43.8 +620996,138.51,41.814 +620997,139.09,47.585 +620998,138.5,45.734 +620999,137.91,43.801 +621000,137.33,41.775 +621001,137.75,47.654 +621002,137.2,45.771 +621003,136.67,43.802 +621004,136.15,41.738 +621005,136.4,47.722 +621006,135.91,45.807 +621007,135.43,43.804 +621008,134.97,41.702 +621009,135.06,47.789 +621010,134.61,45.844 +621011,134.19,43.807 +621012,133.79,41.668 +621013,133.71,47.854 +621014,133.32,45.879 +621015,132.95,43.81 +621016,132.61,41.635 +621017,132.36,47.918 +621018,132.02,45.914 +621019,131.71,43.814 +621020,131.44,41.605 +621021,131.02,47.98 +621022,130.72,45.949 +621023,130.47,43.819 +621024,130.26,41.576 +621025,129.67,48.041 +621026,129.43,45.983 +621027,129.23,43.824 +621028,129.08,41.549 +621029,128.32,48.099 +621030,128.13,46.017 +621031,127.99,43.83 +621032,127.9,41.523 +621033,126.97,48.157 +621034,126.84,46.05 +621035,126.75,43.837 +621036,126.73,41.5 +621037,125.62,48.212 +621038,125.54,46.083 +621039,125.51,43.844 +621040,125.55,41.478 +621041,124.28,48.266 +621042,124.24,46.115 +621043,124.27,43.852 +621044,124.38,41.459 +621045,122.93,48.319 +621046,122.95,46.146 +621047,123.03,43.86 +621048,123.2,41.441 +621049,121.58,48.369 +621050,121.65,46.177 +621051,121.79,43.869 +621052,122.02,41.425 +621053,120.23,48.419 +621054,120.35,46.208 +621055,120.55,43.879 +621056,120.85,41.412 +621057,118.88,48.466 +621058,119.05,46.238 +621059,119.31,43.89 +621060,119.67,41.4 +621061,117.54,48.512 +621062,117.76,46.267 +621063,118.07,43.901 +621064,118.5,41.391 +621065,116.19,48.556 +621066,116.46,46.296 +621067,116.83,43.913 +621068,117.32,41.383 +621069,114.84,48.598 +621070,115.16,46.324 +621071,115.59,43.925 +621072,116.14,41.377 +621073,113.49,48.638 +621074,113.87,46.352 +621075,114.35,43.938 +621076,114.97,41.374 +621077,112.14,48.677 +621078,112.57,46.379 +621079,113.11,43.952 +621080,113.79,41.373 +621081,110.8,48.714 +621082,111.27,46.406 +621083,111.86,43.967 +621084,112.61,41.373 +621085,109.45,48.75 +621086,109.97,46.432 +621087,110.62,43.983 +621088,111.43,41.376 +621089,108.1,48.783 +621090,108.68,46.458 +621091,109.38,43.999 +621092,110.26,41.381 +621093,106.76,48.815 +621094,107.38,46.482 +621095,108.14,44.015 +621096,109.08,41.388 +621097,105.41,48.846 +621098,106.08,46.507 +621099,106.9,44.033 +621100,107.89,41.398 +621101,104.07,48.874 +621102,104.79,46.531 +621103,105.65,44.051 +621104,106.71,41.409 +621105,102.72,48.901 +621106,103.49,46.554 +621107,104.41,44.07 +621108,105.53,41.423 +621109,101.38,48.926 +621110,102.19,46.577 +621111,103.17,44.09 +621112,104.35,41.438 +621113,100.03,48.949 +621114,100.9,46.599 +621115,101.92,44.11 +621116,103.16,41.456 +621117,98.689,48.971 +621118,99.602,46.62 +621119,100.68,44.131 +621120,101.98,41.476 +621121,97.347,48.991 +621122,98.306,46.641 +621123,99.435,44.153 +621124,100.79,41.499 +621125,96.004,49.009 +621126,97.01,46.661 +621127,98.191,44.176 +621128,99.606,41.523 +621129,94.663,49.025 +621130,95.714,46.681 +621131,96.945,44.199 +621132,98.417,41.55 +621133,93.322,49.04 +621134,94.419,46.701 +621135,95.7,44.223 +621136,97.227,41.578 +621137,91.982,49.053 +621138,93.124,46.719 +621139,94.454,44.247 +621140,96.036,41.609 +621141,90.642,49.064 +621142,91.829,46.737 +621143,93.207,44.273 +621144,94.843,41.642 +621145,89.304,49.073 +621146,90.534,46.755 +621147,91.96,44.299 +621148,93.649,41.677 +621149,87.966,49.081 +621150,89.24,46.772 +621151,90.713,44.326 +621152,92.453,41.714 +621153,86.629,49.087 +621154,87.945,46.788 +621155,89.465,44.353 +621156,91.256,41.753 +621157,85.293,49.092 +621158,86.652,46.804 +621159,88.216,44.381 +621160,90.057,41.795 +621161,83.958,49.094 +621162,85.358,46.82 +621163,86.967,44.41 +621164,88.856,41.838 +621165,82.623,49.096 +621166,84.065,46.834 +621167,85.717,44.439 +621168,87.654,41.884 +621169,81.29,49.095 +621170,82.772,46.849 +621171,84.467,44.47 +621172,86.449,41.931 +621173,79.958,49.093 +621174,81.479,46.862 +621175,83.217,44.5 +621176,85.243,41.981 +621177,78.627,49.089 +621178,80.187,46.876 +621179,81.965,44.532 +621180,84.036,42.032 +621181,77.296,49.084 +621182,78.895,46.888 +621183,80.713,44.564 +621184,82.826,42.086 +621185,75.967,49.077 +621186,77.603,46.9 +621187,79.461,44.597 +621188,81.614,42.141 +621189,74.639,49.068 +621190,76.312,46.912 +621191,78.208,44.63 +621192,80.401,42.199 +621193,73.313,49.058 +621194,75.021,46.923 +621195,76.954,44.664 +621196,79.185,42.258 +621197,71.987,49.047 +621198,73.73,46.934 +621199,75.699,44.699 +621200,77.967,42.319 +621201,70.663,49.033 +621202,72.44,46.944 +621203,74.444,44.734 +621204,76.748,42.382 +621205,69.339,49.019 +621206,71.15,46.954 +621207,73.189,44.77 +621208,75.526,42.447 +621209,68.017,49.003 +621210,69.861,46.963 +621211,71.932,44.807 +621212,74.302,42.514 +621213,66.697,48.985 +621214,68.572,46.971 +621215,70.675,44.844 +621216,73.076,42.582 +621217,65.378,48.966 +621218,67.284,46.98 +621219,69.417,44.882 +621220,71.848,42.652 +621221,64.06,48.945 +621222,65.996,46.987 +621223,68.159,44.92 +621224,70.617,42.724 +621225,62.743,48.923 +621226,64.708,46.995 +621227,66.9,44.959 +621228,69.385,42.798 +621229,61.428,48.9 +621230,63.421,47.001 +621231,65.64,44.999 +621232,68.15,42.873 +621233,60.114,48.875 +621234,62.135,47.008 +621235,64.379,45.039 +621236,66.913,42.949 +621237,58.802,48.849 +621238,60.849,47.014 +621239,63.118,45.079 +621240,65.673,43.028 +621241,57.491,48.822 +621242,59.563,47.019 +621243,61.856,45.12 +621244,64.431,43.108 +621245,56.182,48.793 +621246,58.278,47.024 +621247,60.593,45.162 +621248,63.188,43.189 +621249,54.874,48.763 +621250,56.993,47.029 +621251,59.329,45.204 +621252,61.941,43.272 +621253,53.567,48.732 +621254,55.709,47.033 +621255,58.065,45.246 +621256,60.693,43.356 +621257,52.263,48.699 +621258,54.426,47.037 +621259,56.8,45.29 +621260,59.442,43.441 +621261,50.96,48.665 +621262,53.143,47.041 +621263,55.534,45.333 +621264,58.189,43.528 +621265,49.658,48.63 +621266,51.86,47.044 +621267,54.268,45.377 +621268,56.933,43.616 +621269,48.358,48.594 +621270,50.578,47.047 +621271,53,45.422 +621272,55.676,43.706 +621273,47.06,48.557 +621274,49.297,47.05 +621275,51.732,45.466 +621276,54.415,43.796 +621277,45.763,48.519 +621278,48.016,47.052 +621279,50.463,45.512 +621280,53.153,43.888 +621281,44.468,48.48 +621282,46.735,47.054 +621283,49.194,45.557 +621284,51.888,43.981 +621285,43.175,48.439 +621286,45.455,47.055 +621287,47.923,45.604 +621288,50.621,44.075 +621289,41.884,48.398 +621290,44.176,47.056 +621291,46.652,45.65 +621292,49.352,44.17 +621293,40.594,48.356 +621294,42.897,47.057 +621295,45.38,45.697 +621296,48.08,44.266 +621297,39.306,48.313 +621298,41.619,47.058 +621299,44.107,45.744 +621300,46.807,44.363 +621301,38.02,48.268 +621302,40.342,47.058 +621303,42.833,45.792 +621304,45.531,44.461 +621305,36.735,48.223 +621306,39.065,47.059 +621307,41.559,45.84 +621308,44.252,44.56 +621309,35.452,48.178 +621310,37.788,47.058 +621311,40.284,45.888 +621312,42.972,44.66 +621313,34.172,48.131 +621314,36.512,47.058 +621315,39.008,45.937 +621316,41.689,44.76 +621317,32.893,48.083 +621318,35.237,47.058 +621319,37.731,45.985 +621320,40.404,44.861 +621321,31.615,48.035 +621322,33.962,47.057 +621323,36.454,46.034 +621324,39.117,44.963 +621325,30.34,47.986 +621326,32.688,47.056 +621327,35.176,46.084 +621328,37.827,45.065 +621329,29.066,47.937 +621330,31.414,47.055 +621331,33.897,46.133 +621332,36.536,45.168 +621333,27.795,47.887 +621334,30.141,47.053 +621335,32.617,46.183 +621336,35.242,45.272 +621337,26.525,47.836 +621338,28.869,47.052 +621339,31.336,46.233 +621340,33.946,45.376 +621341,25.257,47.784 +621342,27.597,47.05 +621343,30.055,46.284 +621344,32.649,45.48 +621345,23.991,47.732 +621346,26.326,47.049 +621347,28.773,46.334 +621348,31.349,45.585 +621349,22.727,47.68 +621350,25.055,47.047 +621351,27.49,46.385 +621352,30.047,45.69 +621353,21.464,47.627 +621354,23.785,47.045 +621355,26.206,46.436 +621356,28.743,45.796 +621357,20.204,47.574 +621358,22.515,47.043 +621359,24.922,46.487 +621360,27.437,45.902 +621361,18.945,47.52 +621362,21.246,47.041 +621363,23.637,46.538 +621364,26.129,46.008 +621365,17.689,47.466 +621366,19.978,47.039 +621367,22.351,46.589 +621368,24.819,46.114 +621369,16.434,47.412 +621370,18.71,47.036 +621371,21.065,46.64 +621372,23.508,46.221 +621373,15.181,47.357 +621374,17.443,47.034 +621375,19.777,46.692 +621376,22.194,46.327 +621377,13.93,47.303 +621378,16.176,47.032 +621379,18.49,46.743 +621380,20.879,46.434 +621381,12.681,47.248 +621382,14.91,47.03 +621383,17.201,46.795 +621384,19.561,46.541 +621385,11.434,47.192 +621386,13.644,47.027 +621387,15.912,46.846 +621388,18.242,46.647 +621389,10.189,47.137 +621390,12.379,47.025 +621391,14.622,46.898 +621392,16.922,46.754 +621393,8.9451,47.082 +621394,11.114,47.023 +621395,13.331,46.949 +621396,15.599,46.86 +621397,7.7035,47.027 +621398,9.8502,47.021 +621399,12.039,47.001 +621400,14.275,46.966 +621401,6.4637,46.971 +621402,8.5867,47.019 +621403,10.747,47.053 +621404,12.949,47.072 +621405,5.2258,46.916 +621406,7.3237,47.017 +621407,9.4546,47.104 +621408,11.622,47.178 +621409,3.9898,46.861 +621410,6.0612,47.015 +621411,8.1613,47.156 +621412,10.292,47.284 +621413,2.7555,46.806 +621414,4.7992,47.013 +621415,6.8673,47.207 +621416,8.9619,47.389 +621417,1.523,46.751 +621418,3.5377,47.011 +621419,5.5726,47.259 +621420,7.6297,47.494 +621421,0.29237,46.696 +621422,2.2767,47.009 +621423,4.2774,47.31 +621424,6.2961,47.598 +621425,359.06,46.642 +621426,1.0162,47.008 +621427,2.9815,47.362 +621428,4.961,47.702 +621429,357.84,46.588 +621430,359.76,47.006 +621431,1.6851,47.413 +621432,3.6244,47.806 +621433,356.61,46.534 +621434,358.5,47.005 +621435,0.38801,47.464 +621436,2.2865,47.909 +621437,355.39,46.481 +621438,357.24,47.004 +621439,359.09,47.515 +621440,0.94728,48.011 +621441,354.17,46.428 +621442,355.98,47.004 +621443,357.79,47.566 +621444,359.61,48.113 +621445,352.94,46.375 +621446,354.72,47.003 +621447,356.49,47.616 +621448,358.26,48.214 +621449,351.73,46.323 +621450,353.46,47.003 +621451,355.19,47.667 +621452,356.92,48.314 +621453,350.51,46.272 +621454,352.21,47.002 +621455,353.89,47.717 +621456,355.58,48.414 +621457,349.29,46.221 +621458,350.95,47.003 +621459,352.59,47.767 +621460,354.23,48.513 +621461,348.08,46.171 +621462,349.69,47.003 +621463,351.29,47.817 +621464,352.89,48.612 +621465,346.87,46.121 +621466,348.44,47.004 +621467,349.99,47.866 +621468,351.54,48.709 +621469,345.66,46.073 +621470,347.18,47.005 +621471,348.69,47.916 +621472,350.19,48.806 +621473,344.45,46.024 +621474,345.92,47.006 +621475,347.39,47.965 +621476,348.84,48.902 +621477,343.24,45.977 +621478,344.67,47.007 +621479,346.08,48.014 +621480,347.49,48.996 +621481,342.03,45.931 +621482,343.41,47.009 +621483,344.78,48.062 +621484,346.14,49.09 +621485,340.83,45.885 +621486,342.16,47.011 +621487,343.48,48.111 +621488,344.78,49.183 +621489,339.62,45.84 +621490,340.91,47.014 +621491,342.17,48.159 +621492,343.43,49.275 +621493,338.42,45.796 +621494,339.65,47.017 +621495,340.87,48.207 +621496,342.08,49.366 +621497,337.22,45.754 +621498,338.4,47.02 +621499,339.56,48.254 +621500,340.72,49.456 +621501,336.02,45.712 +621502,337.15,47.024 +621503,338.26,48.301 +621504,339.36,49.545 +621505,334.82,45.671 +621506,335.89,47.028 +621507,336.95,48.348 +621508,338.01,49.633 +621509,333.62,45.631 +621510,334.64,47.032 +621511,335.65,48.394 +621512,336.65,49.719 +621513,332.43,45.593 +621514,333.39,47.037 +621515,334.34,48.44 +621516,335.29,49.804 +621517,331.23,45.555 +621518,332.13,47.042 +621519,333.03,48.486 +621520,333.93,49.889 +621521,330.04,45.519 +621522,330.88,47.048 +621523,331.73,48.531 +621524,332.57,49.972 +621525,328.84,45.484 +621526,329.63,47.054 +621527,330.42,48.576 +621528,331.21,50.053 +621529,327.65,45.451 +621530,328.38,47.061 +621531,329.11,48.621 +621532,329.85,50.134 +621533,326.46,45.418 +621534,327.13,47.068 +621535,327.81,48.665 +621536,328.49,50.213 +621537,325.27,45.387 +621538,325.88,47.075 +621539,326.5,48.709 +621540,327.13,50.291 +621541,324.08,45.357 +621542,324.62,47.083 +621543,325.19,48.752 +621544,325.77,50.367 +621545,322.89,45.329 +621546,323.37,47.092 +621547,323.88,48.795 +621548,324.41,50.443 +621549,321.7,45.302 +621550,322.12,47.101 +621551,322.57,48.837 +621552,323.04,50.516 +621553,320.51,45.277 +621554,320.87,47.11 +621555,321.26,48.879 +621556,321.68,50.589 +621557,319.32,45.253 +621558,319.62,47.12 +621559,319.95,48.921 +621560,320.32,50.66 +621561,318.13,45.23 +621562,318.37,47.131 +621563,318.64,48.962 +621564,318.96,50.729 +621565,316.95,45.209 +621566,317.12,47.142 +621567,317.34,49.002 +621568,317.59,50.797 +621569,315.76,45.19 +621570,315.87,47.153 +621571,316.03,49.042 +621572,316.23,50.864 +621573,314.57,45.172 +621574,314.61,47.165 +621575,314.72,49.082 +621576,314.87,50.929 +621577,313.39,45.156 +621578,313.36,47.178 +621579,313.41,49.121 +621580,313.5,50.993 +621581,312.2,45.142 +621582,312.11,47.191 +621583,312.1,49.16 +621584,312.14,51.055 +621585,311.01,45.129 +621586,310.86,47.205 +621587,310.79,49.198 +621588,310.77,51.116 +621589,309.83,45.117 +621590,309.61,47.22 +621591,309.48,49.236 +621592,309.41,51.175 +621593,308.64,45.108 +621594,308.36,47.234 +621595,308.17,49.273 +621596,308.05,51.233 +621597,307.46,45.1 +621598,307.11,47.25 +621599,306.86,49.31 +621600,306.68,51.289 +621601,306.27,45.094 +621602,305.86,47.266 +621603,305.55,49.346 +621604,305.32,51.343 +621605,305.08,45.09 +621606,304.6,47.283 +621607,304.24,49.381 +621608,303.96,51.396 +621609,303.9,45.088 +621610,303.35,47.3 +621611,302.93,49.416 +621612,302.59,51.447 +621613,302.71,45.087 +621614,302.1,47.318 +621615,301.61,49.451 +621616,301.23,51.497 +621617,301.52,45.088 +621618,300.85,47.337 +621619,300.3,49.485 +621620,299.87,51.545 +621621,300.34,45.091 +621622,299.6,47.356 +621623,298.99,49.519 +621624,298.5,51.592 +621625,299.15,45.096 +621626,298.34,47.376 +621627,297.68,49.552 +621628,297.14,51.636 +621629,297.96,45.102 +621630,297.09,47.396 +621631,296.37,49.584 +621632,295.78,51.68 +621633,296.77,45.111 +621634,295.84,47.417 +621635,295.06,49.616 +621636,294.42,51.721 +621637,295.58,45.121 +621638,294.58,47.438 +621639,293.75,49.647 +621640,293.06,51.761 +621641,294.39,45.133 +621642,293.33,47.461 +621643,292.45,49.678 +621644,291.7,51.8 +621645,293.19,45.148 +621646,292.07,47.483 +621647,291.14,49.708 +621648,290.34,51.836 +621649,292,45.164 +621650,290.82,47.507 +621651,289.83,49.738 +621652,288.98,51.872 +621653,290.81,45.181 +621654,289.57,47.531 +621655,288.52,49.767 +621656,287.62,51.905 +621657,289.61,45.201 +621658,288.31,47.556 +621659,287.21,49.796 +621660,286.26,51.937 +621661,288.42,45.223 +621662,287.05,47.581 +621663,285.9,49.824 +621664,284.91,51.967 +621665,287.22,45.247 +621666,285.8,47.607 +621667,284.59,49.851 +621668,283.55,51.996 +621669,286.02,45.272 +621670,284.54,47.633 +621671,283.28,49.878 +621672,282.19,52.023 +621673,284.82,45.299 +621674,283.29,47.661 +621675,281.97,49.905 +621676,280.84,52.048 +621677,283.62,45.329 +621678,282.03,47.688 +621679,280.67,49.931 +621680,279.48,52.072 +621681,282.42,45.36 +621682,280.77,47.717 +621683,279.36,49.956 +621684,278.13,52.094 +621685,281.22,45.393 +621686,279.51,47.746 +621687,278.05,49.981 +621688,276.78,52.114 +621689,280.01,45.428 +621690,278.25,47.776 +621691,276.74,50.005 +621692,275.42,52.133 +621693,278.81,45.465 +621694,276.99,47.806 +621695,275.44,50.029 +621696,274.07,52.15 +621697,277.6,45.504 +621698,275.73,47.837 +621699,274.13,50.052 +621700,272.72,52.166 +621701,276.39,45.544 +621702,274.47,47.868 +621703,272.82,50.075 +621704,271.37,52.18 +621705,275.18,45.587 +621706,273.21,47.9 +621707,271.52,50.097 +621708,270.03,52.192 +621709,273.96,45.631 +621710,271.95,47.933 +621711,270.21,50.118 +621712,268.68,52.203 +621713,272.75,45.677 +621714,270.69,47.966 +621715,268.91,50.139 +621716,267.33,52.212 +621717,271.53,45.725 +621718,269.43,48 +621719,267.6,50.16 +621720,265.99,52.22 +621721,270.31,45.774 +621722,268.16,48.035 +621723,266.3,50.18 +621724,264.64,52.226 +621725,269.09,45.826 +621726,266.9,48.07 +621727,264.99,50.199 +621728,263.3,52.231 +621729,267.87,45.879 +621730,265.64,48.105 +621731,263.69,50.218 +621732,261.96,52.234 +621733,266.65,45.934 +621734,264.37,48.141 +621735,262.38,50.237 +621736,260.62,52.236 +621737,265.42,45.991 +621738,263.11,48.178 +621739,261.08,50.255 +621740,259.28,52.236 +621741,264.19,46.049 +621742,261.84,48.216 +621743,259.78,50.272 +621744,257.94,52.235 +621745,262.96,46.109 +621746,260.57,48.253 +621747,258.48,50.289 +621748,256.6,52.232 +621749,261.73,46.171 +621750,259.31,48.292 +621751,257.17,50.306 +621752,255.27,52.228 +621753,260.5,46.234 +621754,258.04,48.331 +621755,255.87,50.322 +621756,253.93,52.222 +621757,259.26,46.299 +621758,256.77,48.37 +621759,254.57,50.337 +621760,252.6,52.215 +621761,258.02,46.366 +621762,255.5,48.41 +621763,253.27,50.353 +621764,251.27,52.207 +621765,256.78,46.434 +621766,254.23,48.451 +621767,251.97,50.367 +621768,249.94,52.197 +621769,255.54,46.504 +621770,252.96,48.492 +621771,250.67,50.381 +621772,248.61,52.186 +621773,254.29,46.575 +621774,251.69,48.533 +621775,249.37,50.395 +621776,247.28,52.173 +621777,253.05,46.647 +621778,250.41,48.575 +621779,248.07,50.408 +621780,245.96,52.159 +621781,251.8,46.722 +621782,249.14,48.618 +621783,246.77,50.421 +621784,244.63,52.144 +621785,250.54,46.797 +621786,247.87,48.661 +621787,245.48,50.434 +621788,243.31,52.128 +621789,249.29,46.874 +621790,246.59,48.704 +621791,244.18,50.446 +621792,241.99,52.11 +621793,248.03,46.952 +621794,245.32,48.748 +621795,242.88,50.457 +621796,240.67,52.091 +621797,246.78,47.032 +621798,244.04,48.793 +621799,241.59,50.469 +621800,239.35,52.071 +621801,245.51,47.113 +621802,242.77,48.837 +621803,240.29,50.48 +621804,238.03,52.05 +621805,244.25,47.195 +621806,241.49,48.883 +621807,239,50.49 +621808,236.72,52.028 +621809,242.98,47.278 +621810,240.21,48.928 +621811,237.7,50.5 +621812,235.41,52.004 +621813,241.72,47.363 +621814,238.93,48.974 +621815,236.41,50.51 +621816,234.1,51.98 +621817,240.45,47.448 +621818,237.65,49.021 +621819,235.11,50.519 +621820,232.79,51.954 +621821,239.17,47.535 +621822,236.37,49.067 +621823,233.82,50.528 +621824,231.48,51.927 +621825,237.9,47.623 +621826,235.09,49.115 +621827,232.53,50.537 +621828,230.17,51.899 +621829,236.62,47.712 +621830,233.81,49.162 +621831,231.24,50.545 +621832,228.87,51.87 +621833,235.34,47.802 +621834,232.52,49.21 +621835,229.95,50.554 +621836,227.56,51.841 +621837,234.06,47.893 +621838,231.24,49.258 +621839,228.65,50.561 +621840,226.26,51.81 +621841,232.78,47.985 +621842,229.96,49.307 +621843,227.36,50.569 +621844,224.96,51.778 +621845,231.49,48.077 +621846,228.67,49.356 +621847,226.07,50.576 +621848,223.66,51.746 +621849,230.2,48.171 +621850,227.38,49.405 +621851,224.79,50.583 +621852,222.37,51.712 +621853,228.91,48.265 +621854,226.1,49.454 +621855,223.5,50.59 +621856,221.07,51.678 +621857,227.62,48.361 +621858,224.81,49.504 +621859,222.21,50.596 +621860,219.78,51.643 +621861,226.32,48.457 +621862,223.52,49.554 +621863,220.92,50.602 +621864,218.49,51.608 +621865,225.02,48.553 +621866,222.23,49.604 +621867,219.64,50.608 +621868,217.2,51.571 +621869,223.72,48.65 +621870,220.94,49.655 +621871,218.35,50.614 +621872,215.91,51.534 +621873,222.42,48.748 +621874,219.65,49.705 +621875,217.06,50.62 +621876,214.63,51.496 +621877,221.12,48.847 +621878,218.36,49.756 +621879,215.78,50.625 +621880,213.35,51.458 +621881,219.81,48.946 +621882,217.07,49.807 +621883,214.49,50.63 +621884,212.07,51.418 +621885,218.5,49.045 +621886,215.78,49.859 +621887,213.21,50.635 +621888,210.79,51.379 +621889,217.19,49.145 +621890,214.48,49.91 +621891,211.93,50.64 +621892,209.51,51.339 +621893,215.88,49.245 +621894,213.19,49.962 +621895,210.65,50.645 +621896,208.23,51.298 +621897,214.56,49.346 +621898,211.89,50.014 +621899,209.36,50.649 +621900,206.96,51.257 +621901,213.25,49.447 +621902,210.6,50.066 +621903,208.08,50.654 +621904,205.69,51.215 +621905,211.93,49.549 +621906,209.3,50.118 +621907,206.8,50.658 +621908,204.42,51.173 +621909,210.61,49.65 +621910,208,50.17 +621911,205.52,50.662 +621912,203.15,51.131 +621913,209.28,49.752 +621914,206.7,50.222 +621915,204.24,50.666 +621916,201.88,51.088 +621917,207.96,49.854 +621918,205.41,50.274 +621919,202.96,50.67 +621920,200.62,51.045 +621921,206.63,49.956 +621922,204.11,50.327 +621923,201.68,50.675 +621924,199.35,51.002 +621925,205.3,50.058 +621926,202.81,50.379 +621927,200.41,50.678 +621928,198.09,50.958 +621929,203.97,50.16 +621930,201.5,50.432 +621931,199.13,50.682 +621932,196.83,50.915 +621933,202.64,50.263 +621934,200.2,50.484 +621935,197.85,50.686 +621936,195.58,50.871 +621937,201.31,50.365 +621938,198.9,50.537 +621939,196.57,50.69 +621940,194.32,50.827 +621941,199.97,50.467 +621942,197.6,50.59 +621943,195.3,50.694 +621944,193.07,50.783 +621945,198.64,50.569 +621946,196.29,50.642 +621947,194.02,50.698 +621948,191.82,50.739 +621949,197.3,50.671 +621950,194.99,50.695 +621951,192.75,50.702 +621952,190.57,50.695 +621953,195.96,50.772 +621954,193.69,50.747 +621955,191.47,50.706 +621956,189.32,50.651 +621957,194.61,50.874 +621958,192.38,50.8 +621959,190.2,50.71 +621960,188.07,50.607 +621961,193.27,50.975 +621962,191.07,50.852 +621963,188.93,50.714 +621964,186.83,50.563 +621965,191.92,51.076 +621966,189.77,50.904 +621967,187.65,50.718 +621968,185.58,50.52 +621969,190.58,51.177 +621970,188.46,50.957 +621971,186.38,50.723 +621972,184.34,50.476 +621973,189.23,51.277 +621974,187.15,51.009 +621975,185.11,50.727 +621976,183.1,50.433 +621977,187.88,51.377 +621978,185.84,51.061 +621979,183.84,50.731 +621980,181.87,50.39 +621981,186.53,51.476 +621982,184.53,51.113 +621983,182.57,50.736 +621984,180.63,50.347 +621985,185.18,51.575 +621986,183.22,51.165 +621987,181.3,50.741 +621988,179.4,50.305 +621989,183.82,51.673 +621990,181.91,51.216 +621991,180.03,50.746 +621992,178.16,50.263 +621993,182.47,51.771 +621994,180.6,51.268 +621995,178.76,50.751 +621996,176.93,50.221 +621997,181.11,51.868 +621998,179.29,51.319 +621999,177.49,50.756 +622000,175.7,50.18 +622001,179.75,51.965 +622002,177.98,51.37 +622003,176.22,50.761 +622004,174.47,50.139 +622005,178.39,52.061 +622006,176.67,51.421 +622007,174.95,50.767 +622008,173.25,50.099 +622009,177.03,52.156 +622010,175.35,51.472 +622011,173.69,50.773 +622012,172.02,50.06 +622013,175.67,52.25 +622014,174.04,51.523 +622015,172.42,50.779 +622016,170.8,50.021 +622017,174.31,52.344 +622018,172.73,51.573 +622019,171.15,50.785 +622020,169.58,49.982 +622021,172.95,52.437 +622022,171.41,51.623 +622023,169.88,50.792 +622024,168.36,49.944 +622025,171.58,52.529 +622026,170.1,51.673 +622027,168.62,50.798 +622028,167.14,49.907 +622029,170.22,52.62 +622030,168.78,51.722 +622031,167.35,50.805 +622032,165.92,49.871 +622033,168.85,52.711 +622034,167.47,51.772 +622035,166.09,50.813 +622036,164.7,49.835 +622037,167.48,52.8 +622038,166.15,51.821 +622039,164.82,50.82 +622040,163.49,49.801 +622041,166.12,52.889 +622042,164.84,51.869 +622043,163.56,50.828 +622044,162.27,49.767 +622045,164.75,52.977 +622046,163.52,51.918 +622047,162.29,50.836 +622048,161.06,49.734 +622049,163.38,53.063 +622050,162.2,51.966 +622051,161.03,50.845 +622052,159.85,49.701 +622053,162.01,53.149 +622054,160.89,52.014 +622055,159.76,50.854 +622056,158.64,49.67 +622057,160.64,53.234 +622058,159.57,52.061 +622059,158.5,50.863 +622060,157.43,49.64 +622061,159.27,53.317 +622062,158.25,52.108 +622063,157.23,50.873 +622064,156.22,49.61 +622065,157.9,53.4 +622066,156.93,52.155 +622067,155.97,50.882 +622068,155.01,49.582 +622069,156.52,53.481 +622070,155.61,52.201 +622071,154.71,50.893 +622072,153.81,49.555 +622073,155.15,53.561 +622074,154.29,52.247 +622075,153.44,50.903 +622076,152.6,49.529 +622077,153.78,53.64 +622078,152.97,52.293 +622079,152.18,50.914 +622080,151.4,49.504 +622081,152.4,53.718 +622082,151.65,52.338 +622083,150.92,50.926 +622084,150.19,49.48 +622085,151.03,53.795 +622086,150.34,52.383 +622087,149.66,50.938 +622088,148.99,49.457 +622089,149.65,53.87 +622090,149.02,52.428 +622091,148.39,50.95 +622092,147.79,49.435 +622093,148.28,53.945 +622094,147.7,52.472 +622095,147.13,50.962 +622096,146.59,49.415 +622097,146.9,54.018 +622098,146.37,52.516 +622099,145.87,50.975 +622100,145.38,49.396 +622101,145.53,54.089 +622102,145.05,52.559 +622103,144.61,50.989 +622104,144.18,49.378 +622105,144.15,54.16 +622106,143.73,52.602 +622107,143.34,51.003 +622108,142.98,49.362 +622109,142.77,54.229 +622110,142.41,52.644 +622111,142.08,51.017 +622112,141.78,49.346 +622113,141.4,54.296 +622114,141.09,52.686 +622115,140.82,51.032 +622116,140.58,49.333 +622117,140.02,54.363 +622118,139.77,52.727 +622119,139.56,51.047 +622120,139.39,49.32 +622121,138.64,54.428 +622122,138.45,52.769 +622123,138.3,51.063 +622124,138.19,49.309 +622125,137.27,54.491 +622126,137.13,52.809 +622127,137.03,51.079 +622128,136.99,49.3 +622129,135.89,54.553 +622130,135.81,52.849 +622131,135.77,51.096 +622132,135.79,49.291 +622133,134.51,54.614 +622134,134.49,52.889 +622135,134.51,51.113 +622136,134.59,49.285 +622137,133.14,54.674 +622138,133.16,52.928 +622139,133.25,51.131 +622140,133.39,49.279 +622141,131.76,54.732 +622142,131.84,52.967 +622143,131.98,51.149 +622144,132.2,49.276 +622145,130.38,54.788 +622146,130.52,53.005 +622147,130.72,51.168 +622148,131,49.273 +622149,129.01,54.843 +622150,129.2,53.043 +622151,129.46,51.187 +622152,129.8,49.273 +622153,127.63,54.897 +622154,127.88,53.08 +622155,128.2,51.207 +622156,128.6,49.273 +622157,126.26,54.949 +622158,126.56,53.117 +622159,126.93,51.227 +622160,127.4,49.276 +622161,124.88,54.999 +622162,125.23,53.153 +622163,125.67,51.248 +622164,126.21,49.28 +622165,123.51,55.048 +622166,123.91,53.189 +622167,124.41,51.269 +622168,125.01,49.285 +622169,122.13,55.096 +622170,122.59,53.224 +622171,123.14,51.291 +622172,123.81,49.292 +622173,120.76,55.142 +622174,121.27,53.259 +622175,121.88,51.313 +622176,122.61,49.301 +622177,119.38,55.187 +622178,119.95,53.293 +622179,120.62,51.336 +622180,121.41,49.312 +622181,118.01,55.23 +622182,118.63,53.326 +622183,119.35,51.36 +622184,120.21,49.324 +622185,116.64,55.272 +622186,117.31,53.36 +622187,118.09,51.384 +622188,119,49.337 +622189,115.26,55.312 +622190,115.99,53.392 +622191,116.82,51.408 +622192,117.8,49.353 +622193,113.89,55.35 +622194,114.67,53.424 +622195,115.56,51.433 +622196,116.6,49.37 +622197,112.52,55.387 +622198,113.34,53.456 +622199,114.29,51.459 +622200,115.39,49.388 +622201,111.15,55.423 +622202,112.02,53.487 +622203,113.03,51.485 +622204,114.19,49.408 +622205,109.78,55.457 +622206,110.7,53.518 +622207,111.76,51.511 +622208,112.98,49.43 +622209,108.41,55.489 +622210,109.38,53.548 +622211,110.5,51.539 +622212,111.78,49.454 +622213,107.04,55.52 +622214,108.06,53.577 +622215,109.23,51.566 +622216,110.57,49.479 +622217,105.67,55.549 +622218,106.74,53.606 +622219,107.96,51.595 +622220,109.36,49.506 +622221,104.3,55.577 +622222,105.43,53.635 +622223,106.7,51.623 +622224,108.15,49.535 +622225,102.94,55.603 +622226,104.11,53.663 +622227,105.43,51.653 +622228,106.94,49.565 +622229,101.57,55.628 +622230,102.79,53.69 +622231,104.16,51.683 +622232,105.73,49.597 +622233,100.21,55.651 +622234,101.47,53.717 +622235,102.89,51.713 +622236,104.51,49.631 +622237,98.843,55.673 +622238,100.15,53.744 +622239,101.62,51.744 +622240,103.3,49.666 +622241,97.48,55.694 +622242,98.832,53.77 +622243,100.35,51.775 +622244,102.08,49.703 +622245,96.118,55.712 +622246,97.515,53.795 +622247,99.083,51.807 +622248,100.87,49.741 +622249,94.757,55.73 +622250,96.197,53.82 +622251,97.813,51.84 +622252,99.646,49.781 +622253,93.397,55.745 +622254,94.88,53.844 +622255,96.542,51.873 +622256,98.426,49.823 +622257,92.038,55.76 +622258,93.563,53.868 +622259,95.271,51.907 +622260,97.204,49.867 +622261,90.68,55.773 +622262,92.247,53.892 +622263,93.999,51.941 +622264,95.98,49.912 +622265,89.323,55.784 +622266,90.931,53.915 +622267,92.726,51.975 +622268,94.754,49.958 +622269,87.967,55.794 +622270,89.615,53.937 +622271,91.453,52.011 +622272,93.527,50.007 +622273,86.613,55.803 +622274,88.3,53.959 +622275,90.179,52.046 +622276,92.298,50.056 +622277,85.26,55.81 +622278,86.985,53.98 +622279,88.905,52.082 +622280,91.067,50.108 +622281,83.907,55.816 +622282,85.671,54.001 +622283,87.63,52.119 +622284,89.835,50.161 +622285,82.557,55.82 +622286,84.356,54.022 +622287,86.355,52.156 +622288,88.6,50.215 +622289,81.207,55.823 +622290,83.043,54.042 +622291,85.079,52.194 +622292,87.364,50.271 +622293,79.859,55.825 +622294,81.73,54.061 +622295,83.802,52.232 +622296,86.126,50.328 +622297,78.512,55.825 +622298,80.417,54.08 +622299,82.525,52.271 +622300,84.886,50.387 +622301,77.166,55.824 +622302,79.104,54.099 +622303,81.247,52.31 +622304,83.644,50.447 +622305,75.822,55.821 +622306,77.793,54.117 +622307,79.969,52.349 +622308,82.4,50.509 +622309,74.479,55.818 +622310,76.481,54.135 +622311,78.689,52.389 +622312,81.153,50.572 +622313,73.137,55.813 +622314,75.17,54.152 +622315,77.41,52.43 +622316,79.905,50.637 +622317,71.797,55.806 +622318,73.86,54.169 +622319,76.129,52.471 +622320,78.655,50.703 +622321,70.459,55.799 +622322,72.55,54.185 +622323,74.848,52.512 +622324,77.403,50.77 +622325,69.122,55.79 +622326,71.24,54.201 +622327,73.566,52.554 +622328,76.148,50.839 +622329,67.786,55.78 +622330,69.931,54.217 +622331,72.283,52.596 +622332,74.891,50.909 +622333,66.452,55.769 +622334,68.623,54.232 +622335,71,52.638 +622336,73.633,50.98 +622337,65.119,55.757 +622338,67.315,54.247 +622339,69.716,52.681 +622340,72.372,51.052 +622341,63.789,55.743 +622342,66.007,54.261 +622343,68.432,52.725 +622344,71.108,51.126 +622345,62.459,55.729 +622346,64.701,54.276 +622347,67.146,52.768 +622348,69.843,51.201 +622349,61.131,55.713 +622350,63.394,54.289 +622351,65.86,52.813 +622352,68.575,51.276 +622353,59.805,55.696 +622354,62.088,54.302 +622355,64.573,52.857 +622356,67.306,51.354 +622357,58.481,55.679 +622358,60.783,54.315 +622359,63.286,52.902 +622360,66.033,51.432 +622361,57.158,55.66 +622362,59.478,54.328 +622363,61.997,52.947 +622364,64.759,51.511 +622365,55.837,55.64 +622366,58.174,54.34 +622367,60.708,52.993 +622368,63.483,51.591 +622369,54.517,55.619 +622370,56.871,54.352 +622371,59.419,53.039 +622372,62.204,51.673 +622373,53.199,55.597 +622374,55.568,54.364 +622375,58.128,53.085 +622376,60.923,51.755 +622377,51.883,55.575 +622378,54.265,54.375 +622379,56.837,53.131 +622380,59.639,51.838 +622381,50.569,55.551 +622382,52.963,54.386 +622383,55.545,53.178 +622384,58.354,51.922 +622385,49.256,55.527 +622386,51.662,54.397 +622387,54.252,53.225 +622388,57.066,52.007 +622389,47.945,55.501 +622390,50.361,54.407 +622391,52.959,53.273 +622392,55.776,52.093 +622393,46.636,55.475 +622394,49.061,54.417 +622395,51.664,53.32 +622396,54.483,52.18 +622397,45.329,55.448 +622398,47.762,54.427 +622399,50.369,53.368 +622400,53.189,52.267 +622401,44.023,55.421 +622402,46.463,54.437 +622403,49.074,53.417 +622404,51.892,52.355 +622405,42.72,55.392 +622406,45.164,54.446 +622407,47.777,53.465 +622408,50.593,52.444 +622409,41.418,55.363 +622410,43.866,54.455 +622411,46.48,53.514 +622412,49.292,52.534 +622413,40.118,55.333 +622414,42.569,54.464 +622415,45.182,53.563 +622416,47.988,52.624 +622417,38.819,55.303 +622418,41.272,54.473 +622419,43.883,53.612 +622420,46.682,52.715 +622421,37.523,55.271 +622422,39.976,54.481 +622423,42.584,53.661 +622424,45.375,52.806 +622425,36.228,55.24 +622426,38.681,54.49 +622427,41.284,53.71 +622428,44.065,52.898 +622429,34.935,55.208 +622430,37.386,54.498 +622431,39.983,53.76 +622432,42.752,52.99 +622433,33.644,55.175 +622434,36.092,54.506 +622435,38.681,53.81 +622436,41.438,53.083 +622437,32.355,55.142 +622438,34.798,54.513 +622439,37.379,53.86 +622440,40.122,53.176 +622441,31.068,55.108 +622442,33.505,54.521 +622443,36.076,53.91 +622444,38.803,53.27 +622445,29.783,55.074 +622446,32.213,54.529 +622447,34.772,53.96 +622448,37.483,53.364 +622449,28.499,55.039 +622450,30.921,54.536 +622451,33.467,54.01 +622452,36.16,53.458 +622453,27.217,55.004 +622454,29.629,54.543 +622455,32.162,54.061 +622456,34.836,53.553 +622457,25.937,54.969 +622458,28.339,54.55 +622459,30.856,54.111 +622460,33.509,53.648 +622461,24.659,54.933 +622462,27.048,54.557 +622463,29.55,54.162 +622464,32.181,53.743 +622465,23.383,54.898 +622466,25.759,54.564 +622467,28.242,54.212 +622468,30.85,53.838 +622469,22.109,54.862 +622470,24.47,54.571 +622471,26.934,54.263 +622472,29.518,53.934 +622473,20.836,54.825 +622474,23.181,54.578 +622475,25.625,54.314 +622476,28.183,54.029 +622477,19.565,54.789 +622478,21.893,54.585 +622479,24.316,54.364 +622480,26.847,54.124 +622481,18.296,54.752 +622482,20.606,54.592 +622483,23.006,54.415 +622484,25.509,54.22 +622485,17.029,54.716 +622486,19.319,54.598 +622487,21.695,54.466 +622488,24.169,54.316 +622489,15.764,54.679 +622490,18.033,54.605 +622491,20.384,54.517 +622492,22.827,54.411 +622493,14.5,54.642 +622494,16.747,54.612 +622495,19.072,54.567 +622496,21.484,54.506 +622497,13.238,54.605 +622498,15.462,54.618 +622499,17.759,54.618 +622500,20.139,54.602 +622501,11.978,54.569 +622502,14.178,54.625 +622503,16.446,54.669 +622504,18.792,54.697 +622505,10.72,54.532 +622506,12.894,54.632 +622507,15.132,54.719 +622508,17.444,54.792 +622509,9.4637,54.495 +622510,11.61,54.639 +622511,13.817,54.77 +622512,16.093,54.886 +622513,8.2089,54.459 +622514,10.327,54.646 +622515,12.502,54.82 +622516,14.742,54.981 +622517,6.9558,54.423 +622518,9.0445,54.653 +622519,11.186,54.871 +622520,13.388,55.075 +622521,5.7044,54.387 +622522,7.7625,54.66 +622523,9.8702,54.921 +622524,12.034,55.169 +622525,4.4546,54.351 +622526,6.4809,54.667 +622527,8.5533,54.971 +622528,10.677,55.262 +622529,3.2065,54.315 +622530,5.1998,54.674 +622531,7.2358,55.021 +622532,9.3196,55.355 +622533,1.9601,54.28 +622534,3.9192,54.681 +622535,5.9178,55.071 +622536,7.9605,55.448 +622537,0.71524,54.245 +622538,2.6391,54.689 +622539,4.5992,55.121 +622540,6.5999,55.54 +622541,359.47,54.211 +622542,1.3594,54.696 +622543,3.2801,55.17 +622544,5.238,55.632 +622545,358.23,54.177 +622546,0.080209,54.704 +622547,1.9605,55.22 +622548,3.8748,55.723 +622549,356.99,54.143 +622550,358.8,54.712 +622551,0.64037,55.269 +622552,2.5103,55.813 +622553,355.75,54.11 +622554,357.52,54.72 +622555,359.32,55.318 +622556,1.1446,55.903 +622557,354.51,54.077 +622558,356.25,54.728 +622559,358,55.367 +622560,359.78,55.993 +622561,353.28,54.045 +622562,354.97,54.736 +622563,356.68,55.416 +622564,358.41,56.081 +622565,352.04,54.013 +622566,353.69,54.745 +622567,355.35,55.464 +622568,357.04,56.169 +622569,350.81,53.982 +622570,352.41,54.754 +622571,354.03,55.512 +622572,355.67,56.257 +622573,349.58,53.952 +622574,351.14,54.763 +622575,352.71,55.56 +622576,354.3,56.343 +622577,348.35,53.922 +622578,349.86,54.772 +622579,351.39,55.608 +622580,352.93,56.429 +622581,347.12,53.893 +622582,348.59,54.782 +622583,350.06,55.656 +622584,351.55,56.514 +622585,345.89,53.865 +622586,347.31,54.791 +622587,348.74,55.703 +622588,350.18,56.598 +622589,344.67,53.838 +622590,346.04,54.801 +622591,347.41,55.75 +622592,348.8,56.682 +622593,343.44,53.811 +622594,344.76,54.812 +622595,346.09,55.796 +622596,347.43,56.764 +622597,342.22,53.785 +622598,343.49,54.822 +622599,344.76,55.843 +622600,346.05,56.846 +622601,341,53.76 +622602,342.21,54.833 +622603,343.44,55.889 +622604,344.67,56.926 +622605,339.77,53.736 +622606,340.94,54.844 +622607,342.11,55.935 +622608,343.29,57.006 +622609,338.55,53.712 +622610,339.66,54.855 +622611,340.79,55.98 +622612,341.92,57.085 +622613,337.33,53.69 +622614,338.39,54.867 +622615,339.46,56.025 +622616,340.54,57.162 +622617,336.11,53.668 +622618,337.12,54.879 +622619,338.13,56.07 +622620,339.15,57.239 +622621,334.9,53.648 +622622,335.85,54.892 +622623,336.8,56.114 +622624,337.77,57.315 +622625,333.68,53.628 +622626,334.57,54.904 +622627,335.48,56.158 +622628,336.39,57.389 +622629,332.46,53.61 +622630,333.3,54.917 +622631,334.15,56.202 +622632,335.01,57.463 +622633,331.25,53.593 +622634,332.03,54.931 +622635,332.82,56.245 +622636,333.63,57.535 +622637,330.03,53.576 +622638,330.76,54.944 +622639,331.49,56.288 +622640,332.24,57.606 +622641,328.82,53.561 +622642,329.48,54.959 +622643,330.16,56.33 +622644,330.86,57.676 +622645,327.61,53.547 +622646,328.21,54.973 +622647,328.84,56.373 +622648,329.48,57.745 +622649,326.39,53.534 +622650,326.94,54.988 +622651,327.51,56.414 +622652,328.09,57.813 +622653,325.18,53.523 +622654,325.67,55.003 +622655,326.18,56.456 +622656,326.71,57.88 +622657,323.97,53.512 +622658,324.4,55.019 +622659,324.85,56.496 +622660,325.32,57.945 +622661,322.76,53.503 +622662,323.13,55.035 +622663,323.52,56.537 +622664,323.94,58.009 +622665,321.55,53.495 +622666,321.85,55.051 +622667,322.19,56.577 +622668,322.55,58.072 +622669,320.34,53.488 +622670,320.58,55.068 +622671,320.86,56.617 +622672,321.17,58.133 +622673,319.13,53.482 +622674,319.31,55.086 +622675,319.53,56.656 +622676,319.78,58.194 +622677,317.92,53.478 +622678,318.04,55.103 +622679,318.2,56.695 +622680,318.4,58.253 +622681,316.71,53.475 +622682,316.77,55.121 +622683,316.87,56.733 +622684,317.01,58.31 +622685,315.5,53.474 +622686,315.5,55.14 +622687,315.54,56.771 +622688,315.63,58.367 +622689,314.29,53.473 +622690,314.23,55.159 +622691,314.21,56.808 +622692,314.24,58.422 +622693,313.08,53.475 +622694,312.96,55.179 +622695,312.88,56.845 +622696,312.86,58.475 +622697,311.87,53.477 +622698,311.68,55.199 +622699,311.55,56.882 +622700,311.47,58.528 +622701,310.66,53.481 +622702,310.41,55.219 +622703,310.22,56.918 +622704,310.09,58.578 +622705,309.46,53.486 +622706,309.14,55.24 +622707,308.89,56.953 +622708,308.7,58.628 +622709,308.25,53.493 +622710,307.87,55.261 +622711,307.56,56.988 +622712,307.32,58.676 +622713,307.04,53.501 +622714,306.6,55.283 +622715,306.23,57.023 +622716,305.93,58.723 +622717,305.83,53.51 +622718,305.32,55.305 +622719,304.9,57.057 +622720,304.55,58.768 +622721,304.62,53.521 +622722,304.05,55.328 +622723,303.57,57.091 +622724,303.17,58.812 +622725,303.41,53.534 +622726,302.78,55.351 +622727,302.24,57.124 +622728,301.78,58.855 +622729,302.19,53.548 +622730,301.51,55.375 +622731,300.91,57.157 +622732,300.4,58.896 +622733,300.98,53.563 +622734,300.24,55.399 +622735,299.58,57.189 +622736,299.02,58.936 +622737,299.77,53.58 +622738,298.96,55.423 +622739,298.26,57.221 +622740,297.64,58.974 +622741,298.56,53.598 +622742,297.69,55.448 +622743,296.93,57.252 +622744,296.26,59.011 +622745,297.35,53.618 +622746,296.42,55.474 +622747,295.6,57.283 +622748,294.88,59.047 +622749,296.13,53.639 +622750,295.14,55.5 +622751,294.27,57.313 +622752,293.49,59.081 +622753,294.92,53.662 +622754,293.87,55.526 +622755,292.94,57.343 +622756,292.12,59.113 +622757,293.7,53.686 +622758,292.59,55.553 +622759,291.61,57.372 +622760,290.74,59.145 +622761,292.49,53.712 +622762,291.32,55.581 +622763,290.28,57.401 +622764,289.36,59.174 +622765,291.27,53.739 +622766,290.04,55.609 +622767,288.96,57.429 +622768,287.98,59.203 +622769,290.05,53.768 +622770,288.77,55.637 +622771,287.63,57.457 +622772,286.6,59.23 +622773,288.83,53.798 +622774,287.49,55.666 +622775,286.3,57.484 +622776,285.23,59.255 +622777,287.61,53.83 +622778,286.22,55.695 +622779,284.97,57.511 +622780,283.85,59.279 +622781,286.39,53.863 +622782,284.94,55.725 +622783,283.65,57.537 +622784,282.48,59.302 +622785,285.17,53.898 +622786,283.66,55.756 +622787,282.32,57.563 +622788,281.11,59.323 +622789,283.94,53.934 +622790,282.39,55.786 +622791,280.99,57.588 +622792,279.73,59.343 +622793,282.72,53.971 +622794,281.11,55.818 +622795,279.67,57.613 +622796,278.36,59.362 +622797,281.49,54.01 +622798,279.83,55.849 +622799,278.34,57.638 +622800,276.99,59.379 +622801,280.26,54.051 +622802,278.55,55.882 +622803,277.01,57.662 +622804,275.62,59.395 +622805,279.04,54.093 +622806,277.27,55.914 +622807,275.69,57.685 +622808,274.25,59.409 +622809,277.81,54.136 +622810,275.99,55.947 +622811,274.36,57.708 +622812,272.88,59.422 +622813,276.57,54.181 +622814,274.71,55.981 +622815,273.04,57.731 +622816,271.52,59.434 +622817,275.34,54.227 +622818,273.43,56.015 +622819,271.72,57.753 +622820,270.15,59.444 +622821,274.11,54.275 +622822,272.15,56.05 +622823,270.39,57.774 +622824,268.79,59.453 +622825,272.87,54.324 +622826,270.87,56.084 +622827,269.07,57.795 +622828,267.43,59.46 +622829,271.63,54.374 +622830,269.59,56.12 +622831,267.75,57.816 +622832,266.06,59.467 +622833,270.39,54.426 +622834,268.31,56.156 +622835,266.42,57.836 +622836,264.7,59.472 +622837,269.15,54.479 +622838,267.02,56.192 +622839,265.1,57.856 +622840,263.34,59.475 +622841,267.91,54.533 +622842,265.74,56.229 +622843,263.78,57.875 +622844,261.99,59.478 +622845,266.66,54.589 +622846,264.46,56.266 +622847,262.46,57.894 +622848,260.63,59.479 +622849,265.41,54.646 +622850,263.17,56.303 +622851,261.14,57.913 +622852,259.27,59.479 +622853,264.17,54.704 +622854,261.89,56.341 +622855,259.82,57.931 +622856,257.92,59.478 +622857,262.92,54.764 +622858,260.6,56.379 +622859,258.5,57.949 +622860,256.57,59.475 +622861,261.66,54.825 +622862,259.31,56.418 +622863,257.18,57.966 +622864,255.22,59.471 +622865,260.41,54.887 +622866,258.03,56.457 +622867,255.86,57.983 +622868,253.87,59.467 +622869,259.15,54.95 +622870,256.74,56.497 +622871,254.54,57.999 +622872,252.52,59.461 +622873,257.89,55.014 +622874,255.45,56.537 +622875,253.22,58.015 +622876,251.17,59.453 +622877,256.63,55.08 +622878,254.16,56.577 +622879,251.9,58.031 +622880,249.82,59.445 +622881,255.37,55.146 +622882,252.87,56.617 +622883,250.59,58.046 +622884,248.48,59.436 +622885,254.11,55.214 +622886,251.58,56.658 +622887,249.27,58.061 +622888,247.14,59.425 +622889,252.84,55.283 +622890,250.29,56.7 +622891,247.95,58.075 +622892,245.8,59.414 +622893,251.57,55.353 +622894,249,56.741 +622895,246.64,58.089 +622896,244.46,59.401 +622897,250.3,55.424 +622898,247.71,56.783 +622899,245.32,58.103 +622900,243.12,59.387 +622901,249.03,55.496 +622902,246.41,56.826 +622903,244.01,58.117 +622904,241.78,59.373 +622905,247.76,55.569 +622906,245.12,56.868 +622907,242.7,58.13 +622908,240.45,59.357 +622909,246.48,55.643 +622910,243.82,56.911 +622911,241.38,58.143 +622912,239.12,59.341 +622913,245.2,55.718 +622914,242.53,56.954 +622915,240.07,58.155 +622916,237.78,59.323 +622917,243.92,55.793 +622918,241.23,56.998 +622919,238.76,58.167 +622920,236.45,59.305 +622921,242.64,55.87 +622922,239.94,57.042 +622923,237.45,58.179 +622924,235.13,59.286 +622925,241.35,55.947 +622926,238.64,57.086 +622927,236.13,58.191 +622928,233.8,59.265 +622929,240.06,56.026 +622930,237.34,57.13 +622931,234.82,58.202 +622932,232.48,59.244 +622933,238.77,56.105 +622934,236.04,57.175 +622935,233.51,58.213 +622936,231.15,59.223 +622937,237.48,56.185 +622938,234.74,57.22 +622939,232.2,58.224 +622940,229.83,59.2 +622941,236.19,56.265 +622942,233.44,57.265 +622943,230.9,58.234 +622944,228.51,59.177 +622945,234.89,56.346 +622946,232.14,57.31 +622947,229.59,58.244 +622948,227.19,59.153 +622949,233.59,56.428 +622950,230.84,57.355 +622951,228.28,58.254 +622952,225.88,59.128 +622953,232.29,56.511 +622954,229.54,57.401 +622955,226.97,58.264 +622956,224.56,59.103 +622957,230.99,56.594 +622958,228.24,57.447 +622959,225.67,58.274 +622960,223.25,59.077 +622961,229.69,56.678 +622962,226.93,57.493 +622963,224.36,58.283 +622964,221.94,59.05 +622965,228.38,56.762 +622966,225.63,57.539 +622967,223.06,58.292 +622968,220.63,59.023 +622969,227.07,56.847 +622970,224.32,57.586 +622971,221.75,58.301 +622972,219.33,58.995 +622973,225.76,56.932 +622974,223.02,57.633 +622975,220.45,58.31 +622976,218.02,58.967 +622977,224.45,57.018 +622978,221.71,57.679 +622979,219.14,58.318 +622980,216.72,58.938 +622981,223.13,57.104 +622982,220.4,57.726 +622983,217.84,58.327 +622984,215.42,58.908 +622985,221.81,57.19 +622986,219.1,57.773 +622987,216.54,58.335 +622988,214.12,58.879 +622989,220.49,57.277 +622990,217.79,57.82 +622991,215.24,58.343 +622992,212.82,58.848 +622993,219.17,57.364 +622994,216.48,57.867 +622995,213.94,58.351 +622996,211.52,58.818 +622997,217.85,57.452 +622998,215.17,57.915 +622999,212.64,58.359 +623000,210.23,58.787 +623001,216.52,57.539 +623002,213.86,57.962 +623003,211.34,58.367 +623004,208.93,58.756 +623005,215.2,57.627 +623006,212.55,58.009 +623007,210.04,58.374 +623008,207.64,58.724 +623009,213.87,57.715 +623010,211.24,58.057 +623011,208.74,58.382 +623012,206.35,58.692 +623013,212.53,57.803 +623014,209.92,58.105 +623015,207.44,58.389 +623016,205.07,58.66 +623017,211.2,57.892 +623018,208.61,58.152 +623019,206.14,58.397 +623020,203.78,58.628 +623021,209.87,57.98 +623022,207.3,58.2 +623023,204.85,58.404 +623024,202.5,58.596 +623025,208.53,58.068 +623026,205.98,58.247 +623027,203.55,58.411 +623028,201.22,58.563 +623029,207.19,58.157 +623030,204.67,58.295 +623031,202.25,58.419 +623032,199.94,58.53 +623033,205.85,58.245 +623034,203.35,58.343 +623035,200.96,58.426 +623036,198.66,58.498 +623037,204.51,58.334 +623038,202.03,58.39 +623039,199.66,58.433 +623040,197.38,58.465 +623041,203.16,58.422 +623042,200.72,58.438 +623043,198.37,58.44 +623044,196.11,58.432 +623045,201.81,58.51 +623046,199.4,58.485 +623047,197.08,58.448 +623048,194.84,58.399 +623049,200.47,58.598 +623050,198.08,58.533 +623051,195.78,58.455 +623052,193.56,58.367 +623053,199.12,58.686 +623054,196.76,58.58 +623055,194.49,58.462 +623056,192.3,58.334 +623057,197.76,58.774 +623058,195.44,58.627 +623059,193.2,58.469 +623060,191.03,58.301 +623061,196.41,58.861 +623062,194.12,58.675 +623063,191.91,58.477 +623064,189.76,58.269 +623065,195.06,58.948 +623066,192.8,58.722 +623067,190.62,58.484 +623068,188.5,58.237 +623069,193.7,59.035 +623070,191.48,58.769 +623071,189.33,58.492 +623072,187.24,58.205 +623073,192.34,59.121 +623074,190.16,58.816 +623075,188.04,58.499 +623076,185.97,58.173 +623077,190.98,59.207 +623078,188.83,58.863 +623079,186.75,58.507 +623080,184.72,58.142 +623081,189.62,59.293 +623082,187.51,58.909 +623083,185.46,58.515 +623084,183.46,58.111 +623085,188.26,59.378 +623086,186.19,58.956 +623087,184.17,58.522 +623088,182.2,58.08 +623089,186.9,59.463 +623090,184.86,59.002 +623091,182.88,58.53 +623092,180.95,58.049 +623093,185.53,59.547 +623094,183.54,59.049 +623095,181.59,58.538 +623096,179.69,58.019 +623097,184.16,59.631 +623098,182.21,59.095 +623099,180.31,58.547 +623100,178.44,57.99 +623101,182.8,59.714 +623102,180.89,59.14 +623103,179.02,58.555 +623104,177.19,57.96 +623105,181.43,59.797 +623106,179.56,59.186 +623107,177.73,58.564 +623108,175.94,57.932 +623109,180.06,59.879 +623110,178.23,59.232 +623111,176.45,58.572 +623112,174.7,57.903 +623113,178.68,59.96 +623114,176.91,59.277 +623115,175.16,58.581 +623116,173.45,57.876 +623117,177.31,60.041 +623118,175.58,59.322 +623119,173.88,58.59 +623120,172.21,57.849 +623121,175.94,60.121 +623122,174.25,59.367 +623123,172.59,58.6 +623124,170.97,57.822 +623125,174.56,60.2 +623126,172.92,59.411 +623127,171.31,58.609 +623128,169.72,57.797 +623129,173.19,60.279 +623130,171.59,59.455 +623131,170.03,58.619 +623132,168.48,57.771 +623133,171.81,60.357 +623134,170.26,59.499 +623135,168.74,58.629 +623136,167.25,57.747 +623137,170.43,60.434 +623138,168.93,59.543 +623139,167.46,58.639 +623140,166.01,57.723 +623141,169.05,60.51 +623142,167.6,59.587 +623143,166.18,58.649 +623144,164.77,57.7 +623145,167.67,60.585 +623146,166.27,59.63 +623147,164.9,58.66 +623148,163.54,57.678 +623149,166.29,60.66 +623150,164.94,59.673 +623151,163.61,58.671 +623152,162.3,57.656 +623153,164.91,60.733 +623154,163.61,59.715 +623155,162.33,58.682 +623156,161.07,57.636 +623157,163.53,60.806 +623158,162.28,59.758 +623159,161.05,58.694 +623160,159.84,57.616 +623161,162.14,60.878 +623162,160.95,59.8 +623163,159.77,58.706 +623164,158.61,57.597 +623165,160.76,60.948 +623166,159.62,59.841 +623167,158.49,58.718 +623168,157.38,57.579 +623169,159.37,61.018 +623170,158.28,59.883 +623171,157.21,58.73 +623172,156.15,57.562 +623173,157.99,61.087 +623174,156.95,59.924 +623175,155.93,58.743 +623176,154.92,57.546 +623177,156.6,61.155 +623178,155.62,59.964 +623179,154.65,58.756 +623180,153.7,57.531 +623181,155.22,61.222 +623182,154.28,60.004 +623183,153.37,58.769 +623184,152.47,57.516 +623185,153.83,61.287 +623186,152.95,60.044 +623187,152.09,58.783 +623188,151.24,57.503 +623189,152.44,61.352 +623190,151.62,60.084 +623191,150.81,58.797 +623192,150.02,57.491 +623193,151.05,61.415 +623194,150.28,60.123 +623195,149.53,58.811 +623196,148.8,57.48 +623197,149.67,61.478 +623198,148.95,60.162 +623199,148.25,58.826 +623200,147.57,57.47 +623201,148.28,61.539 +623202,147.61,60.2 +623203,146.97,58.841 +623204,146.35,57.461 +623205,146.89,61.599 +623206,146.28,60.238 +623207,145.69,58.856 +623208,145.13,57.453 +623209,145.5,61.658 +623210,144.95,60.276 +623211,144.42,58.872 +623212,143.91,57.447 +623213,144.11,61.716 +623214,143.61,60.313 +623215,143.14,58.888 +623216,142.69,57.441 +623217,142.72,61.772 +623218,142.28,60.35 +623219,141.86,58.904 +623220,141.47,57.437 +623221,141.33,61.828 +623222,140.94,60.386 +623223,140.58,58.921 +623224,140.25,57.434 +623225,139.94,61.882 +623226,139.61,60.422 +623227,139.3,58.939 +623228,139.03,57.432 +623229,138.55,61.935 +623230,138.27,60.458 +623231,138.02,58.956 +623232,137.81,57.431 +623233,137.16,61.987 +623234,136.94,60.493 +623235,136.74,58.974 +623236,136.59,57.431 +623237,135.77,62.037 +623238,135.6,60.528 +623239,135.47,58.993 +623240,135.37,57.433 +623241,134.38,62.086 +623242,134.26,60.562 +623243,134.19,59.012 +623244,134.15,57.436 +623245,132.99,62.134 +623246,132.93,60.596 +623247,132.91,59.031 +623248,132.93,57.44 +623249,131.6,62.181 +623250,131.59,60.629 +623251,131.63,59.051 +623252,131.72,57.446 +623253,130.21,62.226 +623254,130.26,60.662 +623255,130.35,59.071 +623256,130.5,57.453 +623257,128.82,62.27 +623258,128.92,60.695 +623259,129.08,59.092 +623260,129.28,57.461 +623261,127.43,62.313 +623262,127.59,60.727 +623263,127.8,59.112 +623264,128.06,57.47 +623265,126.04,62.354 +623266,126.25,60.758 +623267,126.52,59.134 +623268,126.84,57.481 +623269,124.65,62.394 +623270,124.92,60.789 +623271,125.24,59.156 +623272,125.62,57.493 +623273,123.26,62.433 +623274,123.58,60.82 +623275,123.96,59.178 +623276,124.4,57.507 +623277,121.87,62.471 +623278,122.25,60.85 +623279,122.68,59.201 +623280,123.19,57.521 +623281,120.48,62.507 +623282,120.91,60.88 +623283,121.4,59.224 +623284,121.97,57.538 +623285,119.09,62.541 +623286,119.58,60.909 +623287,120.12,59.247 +623288,120.75,57.555 +623289,117.71,62.575 +623290,118.24,60.938 +623291,118.84,59.271 +623292,119.53,57.574 +623293,116.32,62.607 +623294,116.91,60.967 +623295,117.56,59.296 +623296,118.31,57.594 +623297,114.93,62.638 +623298,115.57,60.995 +623299,116.28,59.321 +623300,117.08,57.616 +623301,113.55,62.667 +623302,114.24,61.022 +623303,115,59.346 +623304,115.86,57.639 +623305,112.16,62.695 +623306,112.9,61.049 +623307,113.72,59.372 +623308,114.64,57.663 +623309,110.78,62.722 +623310,111.57,61.076 +623311,112.44,59.398 +623312,113.42,57.689 +623313,109.39,62.747 +623314,110.23,61.102 +623315,111.16,59.425 +623316,112.19,57.716 +623317,108.01,62.772 +623318,108.9,61.127 +623319,109.88,59.452 +623320,110.97,57.744 +623321,106.63,62.794 +623322,107.57,61.152 +623323,108.6,59.479 +623324,109.74,57.774 +623325,105.25,62.816 +623326,106.23,61.177 +623327,107.32,59.507 +623328,108.52,57.805 +623329,103.87,62.836 +623330,104.9,61.201 +623331,106.04,59.535 +623332,107.29,57.837 +623333,102.49,62.855 +623334,103.57,61.225 +623335,104.75,59.564 +623336,106.06,57.871 +623337,101.11,62.872 +623338,102.24,61.249 +623339,103.47,59.594 +623340,104.83,57.906 +623341,99.727,62.888 +623342,100.9,61.271 +623343,102.19,59.623 +623344,103.6,57.943 +623345,98.35,62.903 +623346,99.572,61.294 +623347,100.91,59.653 +623348,102.37,57.98 +623349,96.973,62.917 +623350,98.24,61.316 +623351,99.622,59.684 +623352,101.14,58.02 +623353,95.597,62.929 +623354,96.909,61.337 +623355,98.338,59.715 +623356,99.903,58.06 +623357,94.223,62.94 +623358,95.578,61.358 +623359,97.053,59.746 +623360,98.667,58.102 +623361,92.849,62.95 +623362,94.247,61.379 +623363,95.768,59.778 +623364,97.431,58.145 +623365,91.477,62.958 +623366,92.917,61.399 +623367,94.483,59.81 +623368,96.194,58.189 +623369,90.105,62.965 +623370,91.587,61.419 +623371,93.197,59.843 +623372,94.955,58.235 +623373,88.735,62.971 +623374,90.258,61.438 +623375,91.91,59.876 +623376,93.714,58.282 +623377,87.366,62.976 +623378,88.929,61.457 +623379,90.623,59.909 +623380,92.472,58.33 +623381,85.998,62.979 +623382,87.6,61.476 +623383,89.336,59.943 +623384,91.229,58.379 +623385,84.631,62.982 +623386,86.271,61.494 +623387,88.048,59.977 +623388,89.984,58.43 +623389,83.265,62.983 +623390,84.944,61.512 +623391,86.76,60.012 +623392,88.738,58.482 +623393,81.901,62.983 +623394,83.616,61.529 +623395,85.471,60.047 +623396,87.49,58.535 +623397,80.538,62.982 +623398,82.289,61.546 +623399,84.182,60.082 +623400,86.241,58.589 +623401,79.176,62.979 +623402,80.962,61.562 +623403,82.892,60.118 +623404,84.99,58.644 +623405,77.815,62.976 +623406,79.636,61.578 +623407,81.601,60.154 +623408,83.737,58.701 +623409,76.456,62.971 +623410,78.31,61.594 +623411,80.31,60.19 +623412,82.482,58.758 +623413,75.099,62.965 +623414,76.985,61.609 +623415,79.019,60.227 +623416,81.226,58.817 +623417,73.742,62.959 +623418,75.66,61.624 +623419,77.727,60.264 +623420,79.968,58.877 +623421,72.387,62.951 +623422,74.336,61.639 +623423,76.434,60.302 +623424,78.708,58.938 +623425,71.034,62.942 +623426,73.012,61.653 +623427,75.141,60.339 +623428,77.446,58.999 +623429,69.682,62.932 +623430,71.689,61.667 +623431,73.847,60.378 +623432,76.183,59.062 +623433,68.331,62.921 +623434,70.366,61.68 +623435,72.552,60.416 +623436,74.918,59.126 +623437,66.982,62.909 +623438,69.044,61.694 +623439,71.257,60.455 +623440,73.65,59.191 +623441,65.635,62.896 +623442,67.722,61.706 +623443,69.961,60.494 +623444,72.381,59.257 +623445,64.289,62.882 +623446,66.4,61.719 +623447,68.665,60.533 +623448,71.11,59.324 +623449,62.944,62.868 +623450,65.08,61.731 +623451,67.368,60.573 +623452,69.837,59.392 +623453,61.601,62.852 +623454,63.759,61.743 +623455,66.07,60.613 +623456,68.562,59.46 +623457,60.26,62.835 +623458,62.44,61.755 +623459,64.772,60.653 +623460,67.285,59.53 +623461,58.921,62.818 +623462,61.121,61.766 +623463,63.473,60.694 +623464,66.006,59.6 +623465,57.582,62.8 +623466,59.802,61.777 +623467,62.174,60.734 +623468,64.725,59.671 +623469,56.246,62.781 +623470,58.484,61.788 +623471,60.874,60.775 +623472,63.442,59.743 +623473,54.911,62.761 +623474,57.167,61.798 +623475,59.573,60.817 +623476,62.157,59.815 +623477,53.578,62.74 +623478,55.85,61.808 +623479,58.271,60.858 +623480,60.87,59.889 +623481,52.247,62.719 +623482,54.533,61.818 +623483,56.969,60.9 +623484,59.581,59.963 +623485,50.917,62.697 +623486,53.218,61.828 +623487,55.666,60.942 +623488,58.29,60.038 +623489,49.589,62.674 +623490,51.902,61.837 +623491,54.363,60.984 +623492,56.996,60.113 +623493,48.263,62.651 +623494,50.588,61.846 +623495,53.058,61.026 +623496,55.701,60.189 +623497,46.938,62.627 +623498,49.274,61.855 +623499,51.754,61.069 +623500,54.404,60.266 +623501,45.615,62.602 +623502,47.96,61.864 +623503,50.448,61.111 +623504,53.104,60.343 +623505,44.294,62.577 +623506,46.647,61.873 +623507,49.142,61.154 +623508,51.803,60.421 +623509,42.975,62.551 +623510,45.335,61.881 +623511,47.835,61.197 +623512,50.499,60.499 +623513,41.657,62.525 +623514,44.023,61.889 +623515,46.527,61.24 +623516,49.193,60.577 +623517,40.341,62.498 +623518,42.712,61.897 +623519,45.219,61.284 +623520,47.886,60.657 +623521,39.027,62.471 +623522,41.402,61.905 +623523,43.91,61.327 +623524,46.576,60.736 +623525,37.715,62.443 +623526,40.092,61.913 +623527,42.601,61.371 +623528,45.264,60.816 +623529,36.404,62.415 +623530,38.783,61.92 +623531,41.29,61.415 +623532,43.95,60.896 +623533,35.096,62.386 +623534,37.474,61.928 +623535,39.979,61.458 +623536,42.634,60.977 +623537,33.789,62.357 +623538,36.166,61.935 +623539,38.668,61.502 +623540,41.316,61.058 +623541,32.484,62.328 +623542,34.858,61.942 +623543,37.355,61.546 +623544,39.996,61.139 +623545,31.18,62.298 +623546,33.551,61.949 +623547,36.042,61.59 +623548,38.674,61.221 +623549,29.879,62.269 +623550,32.245,61.956 +623551,34.729,61.634 +623552,37.35,61.302 +623553,28.579,62.238 +623554,30.939,61.963 +623555,33.414,61.678 +623556,36.024,61.384 +623557,27.281,62.208 +623558,29.634,61.97 +623559,32.1,61.723 +623560,34.696,61.466 +623561,25.985,62.178 +623562,28.329,61.976 +623563,30.784,61.767 +623564,33.366,61.548 +623565,24.69,62.147 +623566,27.026,61.983 +623567,29.468,61.811 +623568,32.034,61.63 +623569,23.397,62.116 +623570,25.722,61.99 +623571,28.151,61.855 +623572,30.7,61.712 +623573,22.106,62.085 +623574,24.419,61.996 +623575,26.833,61.9 +623576,29.364,61.795 +623577,20.817,62.054 +623578,23.117,62.003 +623579,25.515,61.944 +623580,28.027,61.877 +623581,19.53,62.024 +623582,21.815,62.009 +623583,24.196,61.988 +623584,26.687,61.959 +623585,18.244,61.993 +623586,20.514,62.016 +623587,22.877,62.032 +623588,25.346,62.041 +623589,16.96,61.962 +623590,19.214,62.022 +623591,21.556,62.077 +623592,24.003,62.123 +623593,15.678,61.931 +623594,17.914,62.029 +623595,20.236,62.121 +623596,22.658,62.205 +623597,14.398,61.9 +623598,16.614,62.035 +623599,18.914,62.165 +623600,21.311,62.286 +623601,13.119,61.869 +623602,15.315,62.042 +623603,17.592,62.209 +623604,19.963,62.368 +623605,11.842,61.839 +623606,14.017,62.049 +623607,16.27,62.253 +623608,18.613,62.449 +623609,10.567,61.808 +623610,12.719,62.055 +623611,14.947,62.297 +623612,17.261,62.53 +623613,9.293,61.778 +623614,11.422,62.062 +623615,13.623,62.34 +623616,15.907,62.611 +623617,8.021,61.748 +623618,10.125,62.069 +623619,12.299,62.384 +623620,14.552,62.691 +623621,6.7506,61.718 +623622,8.829,62.076 +623623,10.974,62.427 +623624,13.195,62.772 +623625,5.4819,61.689 +623626,7.5333,62.083 +623627,9.6485,62.471 +623628,11.837,62.851 +623629,4.2148,61.66 +623630,6.2381,62.09 +623631,8.3226,62.514 +623632,10.477,62.931 +623633,2.9493,61.631 +623634,4.9434,62.097 +623635,6.9961,62.557 +623636,9.1157,63.009 +623637,1.6853,61.603 +623638,3.6492,62.104 +623639,5.669,62.6 +623640,7.7528,63.088 +623641,0.42291,61.575 +623642,2.3555,62.112 +623643,4.3415,62.643 +623644,6.3884,63.166 +623645,359.16,61.547 +623646,1.0623,62.119 +623647,3.0134,62.685 +623648,5.0226,63.243 +623649,357.9,61.52 +623650,359.77,62.127 +623651,1.6848,62.728 +623652,3.6554,63.32 +623653,356.64,61.494 +623654,358.48,62.135 +623655,0.35575,62.77 +623656,2.2869,63.397 +623657,355.39,61.468 +623658,357.19,62.143 +623659,359.03,62.812 +623660,0.91697,63.472 +623661,354.13,61.442 +623662,355.89,62.151 +623663,357.7,62.854 +623664,359.55,63.547 +623665,352.88,61.417 +623666,354.6,62.16 +623667,356.37,62.895 +623668,358.17,63.622 +623669,351.63,61.393 +623670,353.31,62.168 +623671,355.03,62.937 +623672,356.8,63.696 +623673,350.38,61.369 +623674,352.02,62.177 +623675,353.7,62.978 +623676,355.42,63.769 +623677,349.13,61.346 +623678,350.73,62.186 +623679,352.37,63.019 +623680,354.05,63.841 +623681,347.88,61.324 +623682,349.44,62.196 +623683,351.04,63.059 +623684,352.67,63.913 +623685,346.63,61.302 +623686,348.15,62.205 +623687,349.71,63.1 +623688,351.29,63.984 +623689,345.39,61.281 +623690,346.87,62.215 +623691,348.37,63.14 +623692,349.91,64.054 +623693,344.14,61.261 +623694,345.58,62.225 +623695,347.04,63.18 +623696,348.53,64.123 +623697,342.9,61.241 +623698,344.29,62.235 +623699,345.71,63.219 +623700,347.15,64.192 +623701,341.66,61.223 +623702,343,62.246 +623703,344.37,63.258 +623704,345.77,64.26 +623705,340.42,61.205 +623706,341.71,62.256 +623707,343.04,63.297 +623708,344.39,64.326 +623709,339.18,61.188 +623710,340.43,62.267 +623711,341.7,63.336 +623712,343,64.392 +623713,337.94,61.172 +623714,339.14,62.279 +623715,340.37,63.374 +623716,341.62,64.457 +623717,336.7,61.157 +623718,337.85,62.29 +623719,339.03,63.412 +623720,340.23,64.521 +623721,335.46,61.143 +623722,336.57,62.302 +623723,337.7,63.45 +623724,338.85,64.584 +623725,334.23,61.129 +623726,335.28,62.314 +623727,336.36,63.487 +623728,337.46,64.646 +623729,332.99,61.117 +623730,334,62.327 +623731,335.02,63.524 +623732,336.07,64.707 +623733,331.76,61.106 +623734,332.71,62.34 +623735,333.69,63.561 +623736,334.68,64.767 +623737,330.52,61.095 +623738,331.43,62.353 +623739,332.35,63.597 +623740,333.3,64.827 +623741,329.29,61.086 +623742,330.14,62.366 +623743,331.01,63.633 +623744,331.91,64.885 +623745,328.06,61.078 +623746,328.86,62.38 +623747,329.68,63.669 +623748,330.52,64.941 +623749,326.83,61.071 +623750,327.57,62.394 +623751,328.34,63.704 +623752,329.13,64.997 +623753,325.6,61.064 +623754,326.29,62.409 +623755,327,63.739 +623756,327.74,65.052 +623757,324.37,61.059 +623758,325,62.424 +623759,325.66,63.773 +623760,326.34,65.106 +623761,323.14,61.055 +623762,323.72,62.439 +623763,324.32,63.807 +623764,324.95,65.158 +623765,321.91,61.052 +623766,322.44,62.455 +623767,322.99,63.841 +623768,323.56,65.21 +623769,320.68,61.051 +623770,321.15,62.471 +623771,321.65,63.874 +623772,322.17,65.26 +623773,319.46,61.05 +623774,319.87,62.487 +623775,320.31,63.907 +623776,320.78,65.309 +623777,318.23,61.051 +623778,318.59,62.504 +623779,318.97,63.939 +623780,319.38,65.357 +623781,317,61.052 +623782,317.3,62.521 +623783,317.63,63.971 +623784,317.99,65.404 +623785,315.78,61.055 +623786,316.02,62.538 +623787,316.29,64.003 +623788,316.6,65.449 +623789,314.55,61.06 +623790,314.74,62.556 +623791,314.96,64.034 +623792,315.21,65.494 +623793,313.32,61.065 +623794,313.45,62.574 +623795,313.62,64.065 +623796,313.81,65.537 +623797,312.1,61.071 +623798,312.17,62.593 +623799,312.28,64.096 +623800,312.42,65.579 +623801,310.87,61.079 +623802,310.89,62.612 +623803,310.94,64.126 +623804,311.03,65.619 +623805,309.65,61.088 +623806,309.6,62.631 +623807,309.6,64.155 +623808,309.63,65.659 +623809,308.42,61.099 +623810,308.32,62.651 +623811,308.26,64.184 +623812,308.24,65.697 +623813,307.19,61.11 +623814,307.04,62.671 +623815,306.92,64.213 +623816,306.85,65.734 +623817,305.97,61.123 +623818,305.75,62.692 +623819,305.58,64.241 +623820,305.46,65.77 +623821,304.74,61.137 +623822,304.47,62.713 +623823,304.24,64.269 +623824,304.06,65.804 +623825,303.52,61.152 +623826,303.19,62.735 +623827,302.9,64.297 +623828,302.67,65.837 +623829,302.29,61.169 +623830,301.9,62.756 +623831,301.57,64.323 +623832,301.28,65.869 +623833,301.07,61.187 +623834,300.62,62.779 +623835,300.23,64.35 +623836,299.89,65.9 +623837,299.84,61.206 +623838,299.33,62.801 +623839,298.89,64.376 +623840,298.5,65.929 +623841,298.61,61.226 +623842,298.05,62.825 +623843,297.55,64.402 +623844,297.11,65.957 +623845,297.38,61.248 +623846,296.77,62.848 +623847,296.21,64.427 +623848,295.72,65.984 +623849,296.16,61.271 +623850,295.48,62.872 +623851,294.87,64.452 +623852,294.33,66.01 +623853,294.93,61.295 +623854,294.2,62.896 +623855,293.54,64.476 +623856,292.94,66.034 +623857,293.7,61.321 +623858,292.91,62.921 +623859,292.2,64.5 +623860,291.55,66.057 +623861,292.47,61.348 +623862,291.63,62.946 +623863,290.86,64.524 +623864,290.16,66.079 +623865,291.24,61.376 +623866,290.34,62.972 +623867,289.52,64.547 +623868,288.77,66.1 +623869,290.01,61.406 +623870,289.06,62.998 +623871,288.18,64.569 +623872,287.39,66.119 +623873,288.78,61.436 +623874,287.77,63.024 +623875,286.85,64.591 +623876,286,66.137 +623877,287.55,61.468 +623878,286.48,63.051 +623879,285.51,64.613 +623880,284.61,66.154 +623881,286.31,61.502 +623882,285.2,63.078 +623883,284.17,64.634 +623884,283.23,66.169 +623885,285.08,61.536 +623886,283.91,63.106 +623887,282.84,64.655 +623888,281.85,66.183 +623889,283.84,61.572 +623890,282.63,63.134 +623891,281.5,64.676 +623892,280.46,66.196 +623893,282.61,61.609 +623894,281.34,63.162 +623895,280.17,64.696 +623896,279.08,66.208 +623897,281.37,61.647 +623898,280.05,63.191 +623899,278.83,64.715 +623900,277.7,66.219 +623901,280.14,61.687 +623902,278.76,63.221 +623903,277.49,64.735 +623904,276.32,66.228 +623905,278.9,61.727 +623906,277.47,63.25 +623907,276.16,64.753 +623908,274.94,66.236 +623909,277.66,61.769 +623910,276.19,63.28 +623911,274.82,64.772 +623912,273.56,66.243 +623913,276.42,61.812 +623914,274.9,63.311 +623915,273.49,64.79 +623916,272.18,66.249 +623917,275.17,61.857 +623918,273.61,63.341 +623919,272.16,64.807 +623920,270.81,66.253 +623921,273.93,61.902 +623922,272.32,63.373 +623923,270.82,64.824 +623924,269.43,66.257 +623925,272.69,61.949 +623926,271.03,63.404 +623927,269.49,64.841 +623928,268.06,66.259 +623929,271.44,61.996 +623930,269.74,63.436 +623931,268.16,64.857 +623932,266.68,66.26 +623933,270.19,62.045 +623934,268.45,63.468 +623935,266.82,64.873 +623936,265.31,66.26 +623937,268.95,62.095 +623938,267.15,63.501 +623939,265.49,64.889 +623940,263.94,66.259 +623941,267.7,62.147 +623942,265.86,63.534 +623943,264.16,64.904 +623944,262.57,66.257 +623945,266.44,62.199 +623946,264.57,63.567 +623947,262.83,64.919 +623948,261.2,66.253 +623949,265.19,62.252 +623950,263.28,63.601 +623951,261.5,64.933 +623952,259.83,66.249 +623953,263.94,62.306 +623954,261.98,63.635 +623955,260.17,64.947 +623956,258.47,66.243 +623957,262.68,62.362 +623958,260.69,63.669 +623959,258.84,64.961 +623960,257.1,66.237 +623961,261.42,62.418 +623962,259.4,63.704 +623963,257.51,64.975 +623964,255.74,66.229 +623965,260.17,62.476 +623966,258.1,63.739 +623967,256.18,64.988 +623968,254.38,66.221 +623969,258.9,62.534 +623970,256.8,63.774 +623971,254.85,65 +623972,253.01,66.211 +623973,257.64,62.594 +623974,255.51,63.81 +623975,253.52,65.013 +623976,251.66,66.201 +623977,256.38,62.654 +623978,254.21,63.846 +623979,252.19,65.025 +623980,250.3,66.189 +623981,255.11,62.715 +623982,252.92,63.882 +623983,250.86,65.036 +623984,248.94,66.177 +623985,253.85,62.777 +623986,251.62,63.919 +623987,249.54,65.048 +623988,247.59,66.163 +623989,252.58,62.84 +623990,250.32,63.956 +623991,248.21,65.059 +623992,246.23,66.149 +623993,251.31,62.904 +623994,249.02,63.993 +623995,246.89,65.069 +623996,244.88,66.134 +623997,250.03,62.969 +623998,247.72,64.03 +623999,245.56,65.08 +624000,243.53,66.118 +624001,248.76,63.034 +624002,246.42,64.068 +624003,244.23,65.09 +624004,242.18,66.101 +624005,247.48,63.101 +624006,245.12,64.106 +624007,242.91,65.1 +624008,240.83,66.083 +624009,246.2,63.168 +624010,243.82,64.144 +624011,241.59,65.11 +624012,239.49,66.065 +624013,244.92,63.235 +624014,242.52,64.182 +624015,240.26,65.119 +624016,238.14,66.046 +624017,243.64,63.304 +624018,241.21,64.221 +624019,238.94,65.128 +624020,236.8,66.026 +624021,242.36,63.373 +624022,239.91,64.26 +624023,237.62,65.137 +624024,235.46,66.005 +624025,241.07,63.443 +624026,238.61,64.299 +624027,236.3,65.146 +624028,234.12,65.984 +624029,239.78,63.514 +624030,237.3,64.338 +624031,234.98,65.154 +624032,232.78,65.962 +624033,238.49,63.585 +624034,236,64.377 +624035,233.66,65.162 +624036,231.44,65.939 +624037,237.2,63.656 +624038,234.69,64.417 +624039,232.34,65.17 +624040,230.11,65.916 +624041,235.91,63.729 +624042,233.39,64.457 +624043,231.02,65.178 +624044,228.77,65.892 +624045,234.61,63.801 +624046,232.08,64.497 +624047,229.7,65.185 +624048,227.44,65.867 +624049,233.32,63.875 +624050,230.77,64.537 +624051,228.38,65.193 +624052,226.11,65.842 +624053,232.02,63.948 +624054,229.46,64.577 +624055,227.06,65.2 +624056,224.78,65.817 +624057,230.71,64.023 +624058,228.16,64.617 +624059,225.74,65.207 +624060,223.46,65.791 +624061,229.41,64.097 +624062,226.85,64.658 +624063,224.43,65.214 +624064,222.13,65.764 +624065,228.11,64.172 +624066,225.54,64.699 +624067,223.11,65.22 +624068,220.81,65.737 +624069,226.8,64.248 +624070,224.23,64.739 +624071,221.8,65.227 +624072,219.49,65.71 +624073,225.49,64.323 +624074,222.91,64.78 +624075,220.48,65.233 +624076,218.17,65.682 +624077,224.18,64.399 +624078,221.6,64.821 +624079,219.17,65.24 +624080,216.85,65.654 +624081,222.86,64.476 +624082,220.29,64.863 +624083,217.85,65.246 +624084,215.53,65.625 +624085,221.55,64.552 +624086,218.98,64.904 +624087,216.54,65.252 +624088,214.22,65.597 +624089,220.23,64.629 +624090,217.66,64.945 +624091,215.23,65.258 +624092,212.91,65.568 +624093,218.91,64.706 +624094,216.35,64.986 +624095,213.92,65.264 +624096,211.6,65.538 +624097,217.59,64.783 +624098,215.03,65.028 +624099,212.6,65.269 +624100,210.29,65.509 +624101,216.27,64.86 +624102,213.72,65.069 +624103,211.29,65.275 +624104,208.98,65.479 +624105,214.94,64.938 +624106,212.4,65.11 +624107,209.98,65.281 +624108,207.68,65.449 +624109,213.61,65.015 +624110,211.08,65.152 +624111,208.67,65.286 +624112,206.37,65.419 +624113,212.29,65.092 +624114,209.77,65.193 +624115,207.37,65.292 +624116,205.07,65.389 +624117,210.95,65.17 +624118,208.45,65.235 +624119,206.06,65.297 +624120,203.77,65.358 +624121,209.62,65.247 +624122,207.13,65.276 +624123,204.75,65.303 +624124,202.47,65.328 +624125,208.29,65.325 +624126,205.81,65.318 +624127,203.44,65.308 +624128,201.17,65.298 +624129,206.95,65.402 +624130,204.49,65.359 +624131,202.14,65.314 +624132,199.88,65.268 +624133,205.61,65.479 +624134,203.17,65.4 +624135,200.83,65.319 +624136,198.58,65.237 +624137,204.27,65.556 +624138,201.85,65.442 +624139,199.52,65.325 +624140,197.29,65.207 +624141,202.93,65.633 +624142,200.52,65.483 +624143,198.22,65.33 +624144,196,65.177 +624145,201.59,65.71 +624146,199.2,65.524 +624147,196.91,65.336 +624148,194.71,65.147 +624149,200.24,65.787 +624150,197.88,65.565 +624151,195.61,65.342 +624152,193.43,65.117 +624153,198.89,65.863 +624154,196.55,65.606 +624155,194.31,65.347 +624156,192.14,65.087 +624157,197.54,65.939 +624158,195.23,65.647 +624159,193.01,65.353 +624160,190.86,65.058 +624161,196.19,66.015 +624162,193.9,65.688 +624163,191.7,65.359 +624164,189.58,65.029 +624165,194.84,66.09 +624166,192.58,65.729 +624167,190.4,65.365 +624168,188.3,65 +624169,193.49,66.165 +624170,191.25,65.769 +624171,189.1,65.371 +624172,187.02,64.971 +624173,192.13,66.24 +624174,189.92,65.81 +624175,187.8,65.377 +624176,185.74,64.943 +624177,190.77,66.314 +624178,188.6,65.85 +624179,186.5,65.383 +624180,184.47,64.915 +624181,189.41,66.388 +624182,187.27,65.89 +624183,185.2,65.39 +624184,183.2,64.887 +624185,188.05,66.462 +624186,185.94,65.93 +624187,183.9,65.396 +624188,181.92,64.86 +624189,186.69,66.534 +624190,184.61,65.97 +624191,182.6,65.403 +624192,180.65,64.833 +624193,185.33,66.607 +624194,183.28,66.01 +624195,181.3,65.409 +624196,179.38,64.806 +624197,183.96,66.679 +624198,181.95,66.049 +624199,180.01,65.416 +624200,178.12,64.781 +624201,182.6,66.75 +624202,180.62,66.089 +624203,178.71,65.423 +624204,176.85,64.755 +624205,181.23,66.821 +624206,179.29,66.128 +624207,177.41,65.431 +624208,175.59,64.73 +624209,179.86,66.891 +624210,177.96,66.167 +624211,176.12,65.438 +624212,174.32,64.706 +624213,178.49,66.96 +624214,176.63,66.205 +624215,174.82,65.446 +624216,173.06,64.683 +624217,177.12,67.029 +624218,175.3,66.244 +624219,173.53,65.454 +624220,171.8,64.659 +624221,175.74,67.097 +624222,173.96,66.282 +624223,172.23,65.462 +624224,170.54,64.637 +624225,174.37,67.164 +624226,172.63,66.32 +624227,170.94,65.47 +624228,169.29,64.615 +624229,173,67.231 +624230,171.3,66.358 +624231,169.64,65.478 +624232,168.03,64.594 +624233,171.62,67.297 +624234,169.96,66.395 +624235,168.35,65.487 +624236,166.77,64.574 +624237,170.24,67.362 +624238,168.63,66.433 +624239,167.05,65.496 +624240,165.52,64.554 +624241,168.86,67.427 +624242,167.29,66.469 +624243,165.76,65.505 +624244,164.27,64.535 +624245,167.48,67.49 +624246,165.96,66.506 +624247,164.47,65.515 +624248,163.02,64.517 +624249,166.1,67.553 +624250,164.62,66.542 +624251,163.18,65.524 +624252,161.77,64.5 +624253,164.72,67.615 +624254,163.28,66.579 +624255,161.89,65.534 +624256,160.52,64.484 +624257,163.34,67.675 +624258,161.95,66.614 +624259,160.59,65.545 +624260,159.27,64.468 +624261,161.95,67.735 +624262,160.61,66.65 +624263,159.3,65.555 +624264,158.02,64.454 +624265,160.57,67.795 +624266,159.27,66.685 +624267,158.01,65.566 +624268,156.78,64.44 +624269,159.18,67.853 +624270,157.94,66.72 +624271,156.72,65.577 +624272,155.53,64.427 +624273,157.8,67.91 +624274,156.6,66.754 +624275,155.43,65.589 +624276,154.29,64.415 +624277,156.41,67.966 +624278,155.26,66.788 +624279,154.14,65.6 +624280,153.05,64.404 +624281,155.02,68.022 +624282,153.92,66.822 +624283,152.85,65.613 +624284,151.81,64.394 +624285,153.63,68.076 +624286,152.58,66.856 +624287,151.56,65.625 +624288,150.57,64.385 +624289,152.25,68.129 +624290,151.25,66.889 +624291,150.27,65.638 +624292,149.33,64.377 +624293,150.86,68.181 +624294,149.91,66.922 +624295,148.98,65.651 +624296,148.09,64.37 +624297,149.47,68.233 +624298,148.57,66.954 +624299,147.7,65.664 +624300,146.85,64.364 +624301,148.07,68.283 +624302,147.23,66.986 +624303,146.41,65.678 +624304,145.61,64.359 +624305,146.68,68.332 +624306,145.89,67.018 +624307,145.12,65.692 +624308,144.37,64.355 +624309,145.29,68.38 +624310,144.55,67.049 +624311,143.83,65.706 +624312,143.14,64.352 +624313,143.9,68.427 +624314,143.21,67.08 +624315,142.54,65.721 +624316,141.9,64.351 +624317,142.51,68.472 +624318,141.87,67.111 +624319,141.25,65.736 +624320,140.67,64.35 +624321,141.11,68.517 +624322,140.53,67.141 +624323,139.97,65.752 +624324,139.43,64.351 +624325,139.72,68.56 +624326,139.19,67.171 +624327,138.68,65.768 +624328,138.2,64.352 +624329,138.33,68.603 +624330,137.85,67.2 +624331,137.39,65.784 +624332,136.96,64.355 +624333,136.93,68.644 +624334,136.51,67.229 +624335,136.1,65.801 +624336,135.73,64.359 +624337,135.54,68.684 +624338,135.16,67.258 +624339,134.82,65.818 +624340,134.5,64.364 +624341,134.15,68.723 +624342,133.82,67.286 +624343,133.53,65.835 +624344,133.27,64.371 +624345,132.75,68.761 +624346,132.48,67.314 +624347,132.24,65.853 +624348,132.03,64.378 +624349,131.36,68.797 +624350,131.14,67.342 +624351,130.95,65.871 +624352,130.8,64.387 +624353,129.96,68.832 +624354,129.8,67.369 +624355,129.67,65.89 +624356,129.57,64.397 +624357,128.57,68.867 +624358,128.46,67.395 +624359,128.38,65.909 +624360,128.34,64.408 +624361,127.18,68.899 +624362,127.12,67.421 +624363,127.09,65.928 +624364,127.11,64.421 +624365,125.78,68.931 +624366,125.78,67.447 +624367,125.81,65.948 +624368,125.87,64.434 +624369,124.39,68.962 +624370,124.44,67.473 +624371,124.52,65.968 +624372,124.64,64.449 +624373,123,68.991 +624374,123.09,67.497 +624375,123.23,65.988 +624376,123.41,64.465 +624377,121.6,69.019 +624378,121.75,67.522 +624379,121.94,66.009 +624380,122.18,64.482 +624381,120.21,69.046 +624382,120.41,67.546 +624383,120.66,66.031 +624384,120.95,64.501 +624385,118.82,69.072 +624386,119.07,67.57 +624387,119.37,66.053 +624388,119.72,64.521 +624389,117.42,69.096 +624390,117.73,67.593 +624391,118.08,66.075 +624392,118.48,64.542 +624393,116.03,69.119 +624394,116.39,67.616 +624395,116.8,66.097 +624396,117.25,64.564 +624397,114.64,69.141 +624398,115.05,67.638 +624399,115.51,66.12 +624400,116.02,64.588 +624401,113.25,69.162 +624402,113.71,67.661 +624403,114.22,66.144 +624404,114.78,64.612 +624405,111.86,69.181 +624406,112.37,67.682 +624407,112.93,66.167 +624408,113.55,64.638 +624409,110.47,69.2 +624410,111.03,67.703 +624411,111.64,66.192 +624412,112.32,64.666 +624413,109.08,69.217 +624414,109.69,67.724 +624415,110.35,66.216 +624416,111.08,64.694 +624417,107.69,69.233 +624418,108.35,67.745 +624419,109.07,66.241 +624420,109.85,64.724 +624421,106.3,69.247 +624422,107.01,67.764 +624423,107.78,66.266 +624424,108.61,64.755 +624425,104.91,69.261 +624426,105.67,67.784 +624427,106.49,66.292 +624428,107.38,64.787 +624429,103.52,69.273 +624430,104.33,67.803 +624431,105.2,66.318 +624432,106.14,64.82 +624433,102.13,69.284 +624434,102.99,67.822 +624435,103.91,66.345 +624436,104.9,64.855 +624437,100.75,69.294 +624438,101.65,67.84 +624439,102.62,66.372 +624440,103.66,64.89 +624441,99.362,69.303 +624442,100.31,67.858 +624443,101.33,66.399 +624444,102.42,64.927 +624445,97.977,69.311 +624446,98.973,67.876 +624447,100.04,66.427 +624448,101.18,64.966 +624449,96.593,69.317 +624450,97.635,67.893 +624451,98.749,66.455 +624452,99.944,65.005 +624453,95.21,69.322 +624454,96.297,67.91 +624455,97.458,66.484 +624456,98.702,65.045 +624457,93.828,69.327 +624458,94.959,67.926 +624459,96.167,66.512 +624460,97.46,65.087 +624461,92.447,69.33 +624462,93.622,67.942 +624463,94.875,66.542 +624464,96.216,65.13 +624465,91.067,69.331 +624466,92.285,67.958 +624467,93.584,66.571 +624468,94.972,65.174 +624469,89.687,69.332 +624470,90.948,67.973 +624471,92.291,66.601 +624472,93.726,65.219 +624473,88.309,69.332 +624474,89.612,67.988 +624475,90.999,66.631 +624476,92.48,65.265 +624477,86.932,69.331 +624478,88.276,68.002 +624479,89.706,66.662 +624480,91.232,65.312 +624481,85.556,69.328 +624482,86.94,68.016 +624483,88.412,66.693 +624484,89.983,65.36 +624485,84.181,69.325 +624486,85.604,68.03 +624487,87.118,66.725 +624488,88.733,65.41 +624489,82.806,69.32 +624490,84.269,68.043 +624491,85.824,66.756 +624492,87.481,65.46 +624493,81.434,69.314 +624494,82.935,68.056 +624495,84.529,66.788 +624496,86.228,65.512 +624497,80.062,69.308 +624498,81.601,68.069 +624499,83.234,66.821 +624500,84.974,65.564 +624501,78.691,69.3 +624502,80.267,68.081 +624503,81.939,66.853 +624504,83.719,65.618 +624505,77.322,69.292 +624506,78.933,68.093 +624507,80.643,66.886 +624508,82.462,65.672 +624509,75.954,69.282 +624510,77.6,68.105 +624511,79.346,66.92 +624512,81.204,65.728 +624513,74.587,69.271 +624514,76.268,68.116 +624515,78.049,66.953 +624516,79.944,65.784 +624517,73.222,69.26 +624518,74.936,68.127 +624519,76.752,66.987 +624520,78.683,65.841 +624521,71.858,69.248 +624522,73.604,68.138 +624523,75.454,67.022 +624524,77.42,65.899 +624525,70.495,69.234 +624526,72.273,68.149 +624527,74.155,67.056 +624528,76.156,65.958 +624529,69.133,69.22 +624530,70.942,68.159 +624531,72.856,67.091 +624532,74.89,66.018 +624533,67.773,69.205 +624534,69.612,68.168 +624535,71.557,67.126 +624536,73.623,66.079 +624537,66.414,69.189 +624538,68.282,68.178 +624539,70.257,67.161 +624540,72.354,66.141 +624541,65.057,69.173 +624542,66.952,68.187 +624543,68.956,67.197 +624544,71.083,66.203 +624545,63.701,69.155 +624546,65.624,68.196 +624547,67.655,67.233 +624548,69.811,66.266 +624549,62.347,69.137 +624550,64.295,68.205 +624551,66.354,67.269 +624552,68.537,66.33 +624553,60.994,69.118 +624554,62.967,68.213 +624555,65.051,67.305 +624556,67.262,66.395 +624557,59.642,69.098 +624558,61.64,68.222 +624559,63.749,67.342 +624560,65.984,66.46 +624561,58.293,69.078 +624562,60.313,68.23 +624563,62.445,67.379 +624564,64.705,66.526 +624565,56.944,69.057 +624566,58.987,68.237 +624567,61.141,67.416 +624568,63.424,66.593 +624569,55.597,69.035 +624570,57.661,68.245 +624571,59.837,67.453 +624572,62.142,66.66 +624573,54.252,69.013 +624574,56.336,68.252 +624575,58.532,67.49 +624576,60.857,66.728 +624577,52.908,68.99 +624578,55.011,68.259 +624579,57.226,67.528 +624580,59.571,66.797 +624581,51.566,68.966 +624582,53.687,68.266 +624583,55.92,67.566 +624584,58.283,66.866 +624585,50.226,68.942 +624586,52.363,68.273 +624587,54.613,67.604 +624588,56.993,66.935 +624589,48.887,68.917 +624590,51.04,68.28 +624591,53.306,67.642 +624592,55.701,67.005 +624593,47.55,68.892 +624594,49.717,68.286 +624595,51.998,67.68 +624596,54.407,67.076 +624597,46.214,68.866 +624598,48.395,68.292 +624599,50.689,67.719 +624600,53.112,67.147 +624601,44.88,68.84 +624602,47.074,68.298 +624603,49.38,67.757 +624604,51.814,67.219 +624605,43.548,68.813 +624606,45.753,68.304 +624607,48.07,67.796 +624608,50.515,67.29 +624609,42.217,68.786 +624610,44.433,68.31 +624611,46.759,67.835 +624612,49.214,67.363 +624613,40.888,68.759 +624614,43.113,68.315 +624615,45.448,67.874 +624616,47.911,67.435 +624617,39.561,68.731 +624618,41.794,68.321 +624619,44.136,67.913 +624620,46.606,67.508 +624621,38.235,68.703 +624622,40.475,68.326 +624623,42.824,67.952 +624624,45.299,67.581 +624625,36.911,68.674 +624626,39.157,68.331 +624627,41.511,67.991 +624628,43.99,67.655 +624629,35.589,68.645 +624630,37.839,68.337 +624631,40.197,68.031 +624632,42.679,67.728 +624633,34.268,68.616 +624634,36.522,68.342 +624635,38.883,68.07 +624636,41.367,67.802 +624637,32.95,68.587 +624638,35.206,68.347 +624639,37.568,68.11 +624640,40.052,67.876 +624641,31.632,68.558 +624642,33.89,68.352 +624643,36.252,68.149 +624644,38.735,67.951 +624645,30.317,68.528 +624646,32.575,68.356 +624647,34.936,68.189 +624648,37.417,68.025 +624649,29.003,68.498 +624650,31.261,68.361 +624651,33.62,68.228 +624652,36.097,68.099 +624653,27.691,68.468 +624654,29.946,68.366 +624655,32.302,68.268 +624656,34.775,68.174 +624657,26.381,68.438 +624658,28.633,68.371 +624659,30.984,68.307 +624660,33.45,68.248 +624661,25.072,68.408 +624662,27.32,68.376 +624663,29.666,68.347 +624664,32.125,68.323 +624665,23.766,68.378 +624666,26.008,68.38 +624667,28.346,68.387 +624668,30.797,68.397 +624669,22.46,68.348 +624670,24.696,68.385 +624671,27.026,68.426 +624672,29.467,68.472 +624673,21.157,68.318 +624674,23.385,68.39 +624675,25.706,68.466 +624676,28.135,68.546 +624677,19.855,68.288 +624678,22.074,68.394 +624679,24.385,68.505 +624680,26.802,68.62 +624681,18.555,68.258 +624682,20.764,68.399 +624683,23.063,68.545 +624684,25.467,68.694 +624685,17.257,68.228 +624686,19.455,68.404 +624687,21.741,68.584 +624688,24.13,68.768 +624689,15.96,68.199 +624690,18.146,68.409 +624691,20.418,68.623 +624692,22.791,68.842 +624693,14.665,68.169 +624694,16.837,68.414 +624695,19.094,68.663 +624696,21.45,68.916 +624697,13.372,68.14 +624698,15.529,68.419 +624699,17.77,68.702 +624700,20.108,68.989 +624701,12.08,68.111 +624702,14.222,68.424 +624703,16.446,68.741 +624704,18.764,69.062 +624705,10.79,68.082 +624706,12.915,68.429 +624707,15.12,68.78 +624708,17.418,69.135 +624709,9.5014,68.053 +624710,11.609,68.434 +624711,13.795,68.819 +624712,16.07,69.207 +624713,8.2145,68.025 +624714,10.303,68.44 +624715,12.468,68.858 +624716,14.721,69.279 +624717,6.9293,67.997 +624718,8.9982,68.445 +624719,11.141,68.897 +624720,13.37,69.351 +624721,5.6457,67.969 +624722,7.6936,68.451 +624723,9.8137,68.935 +624724,12.018,69.422 +624725,4.3637,67.942 +624726,6.3894,68.456 +624727,8.4856,68.973 +624728,10.664,69.493 +624729,3.0832,67.915 +624730,5.0858,68.462 +624731,7.157,69.012 +624732,9.3077,69.564 +624733,1.8043,67.889 +624734,3.7827,68.468 +624735,5.8279,69.05 +624736,7.9504,69.634 +624737,0.52687,67.863 +624738,2.4801,68.474 +624739,4.4982,69.088 +624740,6.5915,69.703 +624741,359.25,67.838 +624742,1.178,68.48 +624743,3.168,69.125 +624744,5.231,69.772 +624745,357.98,67.813 +624746,359.88,68.487 +624747,1.8373,69.163 +624748,3.8691,69.84 +624749,356.7,67.788 +624750,358.58,68.493 +624751,0.50611,69.2 +624752,2.5057,69.908 +624753,355.43,67.765 +624754,357.27,68.5 +624755,359.17,69.237 +624756,1.1409,69.975 +624757,354.16,67.741 +624758,355.97,68.507 +624759,357.84,69.274 +624760,359.77,70.042 +624761,352.89,67.719 +624762,354.67,68.514 +624763,356.51,69.311 +624764,358.41,70.108 +624765,351.63,67.697 +624766,353.38,68.522 +624767,355.18,69.348 +624768,357.04,70.173 +624769,350.36,67.676 +624770,352.08,68.53 +624771,353.84,69.384 +624772,355.67,70.237 +624773,349.1,67.655 +624774,350.78,68.537 +624775,352.51,69.42 +624776,354.3,70.301 +624777,347.83,67.635 +624778,349.48,68.546 +624779,351.17,69.456 +624780,352.92,70.364 +624781,346.57,67.616 +624782,348.18,68.554 +624783,349.84,69.491 +624784,351.55,70.427 +624785,345.31,67.598 +624786,346.88,68.563 +624787,348.5,69.527 +624788,350.17,70.488 +624789,344.05,67.58 +624790,345.59,68.571 +624791,347.17,69.562 +624792,348.8,70.549 +624793,342.79,67.563 +624794,344.29,68.581 +624795,345.83,69.596 +624796,347.42,70.609 +624797,341.54,67.547 +624798,343,68.59 +624799,344.5,69.631 +624800,346.04,70.668 +624801,340.28,67.532 +624802,341.7,68.6 +624803,343.16,69.665 +624804,344.66,70.726 +624805,339.03,67.518 +624806,340.4,68.61 +624807,341.82,69.699 +624808,343.28,70.784 +624809,337.77,67.504 +624810,339.11,68.62 +624811,340.48,69.732 +624812,341.9,70.84 +624813,336.52,67.492 +624814,337.81,68.63 +624815,339.15,69.765 +624816,340.52,70.896 +624817,335.27,67.48 +624818,336.52,68.641 +624819,337.81,69.798 +624820,339.13,70.95 +624821,334.02,67.47 +624822,335.23,68.652 +624823,336.47,69.831 +624824,337.75,71.004 +624825,332.77,67.46 +624826,333.93,68.664 +624827,335.13,69.863 +624828,336.36,71.057 +624829,331.52,67.451 +624830,332.64,68.676 +624831,333.79,69.895 +624832,334.98,71.108 +624833,330.27,67.444 +624834,331.35,68.688 +624835,332.45,69.927 +624836,333.59,71.159 +624837,329.03,67.437 +624838,330.05,68.7 +624839,331.11,69.958 +624840,332.2,71.209 +624841,327.78,67.431 +624842,328.76,68.713 +624843,329.77,69.989 +624844,330.81,71.257 +624845,326.54,67.427 +624846,327.47,68.726 +624847,328.43,70.02 +624848,329.42,71.305 +624849,325.29,67.423 +624850,326.18,68.74 +624851,327.09,70.05 +624852,328.03,71.352 +624853,324.05,67.421 +624854,324.88,68.754 +624855,325.75,70.08 +624856,326.64,71.397 +624857,322.8,67.42 +624858,323.59,68.768 +624859,324.41,70.109 +624860,325.25,71.442 +624861,321.56,67.419 +624862,322.3,68.782 +624863,323.07,70.138 +624864,323.86,71.485 +624865,320.32,67.42 +624866,321.01,68.797 +624867,321.73,70.167 +624868,322.47,71.528 +624869,319.08,67.422 +624870,319.72,68.813 +624871,320.38,70.195 +624872,321.08,71.569 +624873,317.84,67.425 +624874,318.43,68.828 +624875,319.04,70.223 +624876,319.69,71.609 +624877,316.6,67.429 +624878,317.14,68.844 +624879,317.7,70.251 +624880,318.29,71.648 +624881,315.36,67.435 +624882,315.84,68.861 +624883,316.36,70.278 +624884,316.9,71.686 +624885,314.12,67.441 +624886,314.55,68.878 +624887,315.02,70.305 +624888,315.51,71.722 +624889,312.88,67.449 +624890,313.26,68.895 +624891,313.67,70.332 +624892,314.11,71.758 +624893,311.64,67.458 +624894,311.97,68.912 +624895,312.33,70.358 +624896,312.72,71.792 +624897,310.41,67.468 +624898,310.68,68.93 +624899,310.99,70.383 +624900,311.32,71.826 +624901,309.17,67.479 +624902,309.39,68.949 +624903,309.65,70.409 +624904,309.93,71.858 +624905,307.93,67.492 +624906,308.1,68.968 +624907,308.3,70.434 +624908,308.54,71.889 +624909,306.69,67.506 +624910,306.81,68.987 +624911,306.96,70.458 +624912,307.14,71.918 +624913,305.46,67.521 +624914,305.52,69.006 +624915,305.62,70.482 +624916,305.75,71.947 +624917,304.22,67.537 +624918,304.23,69.026 +624919,304.27,70.506 +624920,304.35,71.974 +624921,302.98,67.554 +624922,302.94,69.047 +624923,302.93,70.529 +624924,302.96,72.001 +624925,301.75,67.573 +624926,301.65,69.067 +624927,301.59,70.552 +624928,301.56,72.026 +624929,300.51,67.592 +624930,300.36,69.088 +624931,300.25,70.575 +624932,300.17,72.049 +624933,299.27,67.613 +624934,299.07,69.11 +624935,298.9,70.597 +624936,298.78,72.072 +624937,298.03,67.636 +624938,297.78,69.132 +624939,297.56,70.618 +624940,297.38,72.093 +624941,296.8,67.659 +624942,296.49,69.154 +624943,296.22,70.64 +624944,295.99,72.114 +624945,295.56,67.684 +624946,295.2,69.177 +624947,294.88,70.661 +624948,294.6,72.133 +624949,294.32,67.71 +624950,293.91,69.2 +624951,293.53,70.681 +624952,293.2,72.151 +624953,293.08,67.737 +624954,292.62,69.224 +624955,292.19,70.701 +624956,291.81,72.167 +624957,291.85,67.765 +624958,291.32,69.248 +624959,290.85,70.721 +624960,290.42,72.183 +624961,290.61,67.795 +624962,290.03,69.272 +624963,289.51,70.74 +624964,289.03,72.197 +624965,289.37,67.825 +624966,288.74,69.297 +624967,288.17,70.759 +624968,287.64,72.211 +624969,288.13,67.857 +624970,287.45,69.322 +624971,286.82,70.777 +624972,286.24,72.223 +624973,286.89,67.89 +624974,286.16,69.347 +624975,285.48,70.796 +624976,284.85,72.234 +624977,285.65,67.925 +624978,284.87,69.373 +624979,284.14,70.813 +624980,283.46,72.243 +624981,284.41,67.96 +624982,283.57,69.4 +624983,282.8,70.831 +624984,282.08,72.252 +624985,283.16,67.997 +624986,282.28,69.426 +624987,281.46,70.847 +624988,280.69,72.259 +624989,281.92,68.035 +624990,280.99,69.453 +624991,280.12,70.864 +624992,279.3,72.266 +624993,280.68,68.074 +624994,279.7,69.481 +624995,278.78,70.88 +624996,277.91,72.271 +624997,279.44,68.114 +624998,278.4,69.508 +624999,277.44,70.896 +625000,276.53,72.275 +625001,278.19,68.155 +625002,277.11,69.537 +625003,276.1,70.911 +625004,275.14,72.278 +625005,276.94,68.197 +625006,275.82,69.565 +625007,274.76,70.926 +625008,273.76,72.28 +625009,275.7,68.241 +625010,274.52,69.594 +625011,273.42,70.941 +625012,272.37,72.28 +625013,274.45,68.286 +625014,273.23,69.623 +625015,272.08,70.955 +625016,270.99,72.28 +625017,273.2,68.331 +625018,271.93,69.653 +625019,270.74,70.969 +625020,269.61,72.279 +625021,271.95,68.378 +625022,270.64,69.683 +625023,269.4,70.983 +625024,268.23,72.276 +625025,270.7,68.426 +625026,269.34,69.713 +625027,268.06,70.996 +625028,266.85,72.273 +625029,269.45,68.475 +625030,268.05,69.744 +625031,266.72,71.009 +625032,265.47,72.268 +625033,268.2,68.525 +625034,266.75,69.775 +625035,265.38,71.022 +625036,264.09,72.263 +625037,266.95,68.576 +625038,265.46,69.806 +625039,264.05,71.034 +625040,262.71,72.256 +625041,265.69,68.627 +625042,264.16,69.838 +625043,262.71,71.046 +625044,261.33,72.249 +625045,264.44,68.68 +625046,262.86,69.87 +625047,261.37,71.057 +625048,259.96,72.24 +625049,263.18,68.734 +625050,261.57,69.902 +625051,260.04,71.069 +625052,258.59,72.231 +625053,261.92,68.789 +625054,260.27,69.935 +625055,258.7,71.08 +625056,257.21,72.221 +625057,260.66,68.845 +625058,258.97,69.968 +625059,257.36,71.09 +625060,255.84,72.209 +625061,259.4,68.901 +625062,257.67,70.001 +625063,256.03,71.101 +625064,254.47,72.197 +625065,258.14,68.959 +625066,256.37,70.035 +625067,254.69,71.111 +625068,253.1,72.184 +625069,256.88,69.017 +625070,255.07,70.069 +625071,253.36,71.12 +625072,251.73,72.17 +625073,255.61,69.076 +625074,253.77,70.103 +625075,252.03,71.13 +625076,250.37,72.155 +625077,254.35,69.136 +625078,252.47,70.137 +625079,250.69,71.139 +625080,249,72.14 +625081,253.08,69.197 +625082,251.17,70.172 +625083,249.36,71.148 +625084,247.64,72.124 +625085,251.81,69.259 +625086,249.87,70.207 +625087,248.03,71.156 +625088,246.27,72.106 +625089,250.54,69.321 +625090,248.57,70.242 +625091,246.69,71.165 +625092,244.91,72.088 +625093,249.27,69.384 +625094,247.26,70.277 +625095,245.36,71.173 +625096,243.55,72.07 +625097,247.99,69.448 +625098,245.96,70.313 +625099,244.03,71.181 +625100,242.19,72.05 +625101,246.72,69.513 +625102,244.66,70.349 +625103,242.7,71.189 +625104,240.84,72.03 +625105,245.44,69.578 +625106,243.35,70.385 +625107,241.37,71.196 +625108,239.48,72.009 +625109,244.16,69.644 +625110,242.05,70.421 +625111,240.04,71.203 +625112,238.13,71.988 +625113,242.88,69.71 +625114,240.74,70.458 +625115,238.71,71.21 +625116,236.77,71.966 +625117,241.6,69.777 +625118,239.44,70.494 +625119,237.38,71.217 +625120,235.42,71.943 +625121,240.32,69.845 +625122,238.13,70.531 +625123,236.05,71.224 +625124,234.07,71.92 +625125,239.03,69.913 +625126,236.82,70.568 +625127,234.73,71.23 +625128,232.72,71.896 +625129,237.75,69.982 +625130,235.52,70.606 +625131,233.4,71.236 +625132,231.38,71.872 +625133,236.46,70.051 +625134,234.21,70.643 +625135,232.07,71.242 +625136,230.03,71.847 +625137,235.17,70.12 +625138,232.9,70.681 +625139,230.74,71.248 +625140,228.69,71.821 +625141,233.87,70.19 +625142,231.59,70.718 +625143,229.42,71.254 +625144,227.34,71.795 +625145,232.58,70.261 +625146,230.28,70.756 +625147,228.09,71.259 +625148,226,71.769 +625149,231.28,70.332 +625150,228.97,70.794 +625151,226.77,71.265 +625152,224.66,71.742 +625153,229.99,70.403 +625154,227.66,70.832 +625155,225.44,71.27 +625156,223.33,71.715 +625157,228.69,70.475 +625158,226.35,70.871 +625159,224.12,71.276 +625160,221.99,71.688 +625161,227.39,70.546 +625162,225.04,70.909 +625163,222.8,71.281 +625164,220.66,71.66 +625165,226.08,70.618 +625166,223.72,70.947 +625167,221.48,71.286 +625168,219.32,71.632 +625169,224.78,70.691 +625170,222.41,70.986 +625171,220.15,71.291 +625172,217.99,71.603 +625173,223.47,70.763 +625174,221.1,71.024 +625175,218.83,71.295 +625176,216.66,71.575 +625177,222.16,70.836 +625178,219.78,71.063 +625179,217.51,71.3 +625180,215.34,71.546 +625181,220.85,70.909 +625182,218.47,71.102 +625183,216.19,71.305 +625184,214.01,71.516 +625185,219.54,70.982 +625186,217.15,71.141 +625187,214.87,71.309 +625188,212.69,71.487 +625189,218.23,71.055 +625190,215.84,71.179 +625191,213.55,71.314 +625192,211.36,71.458 +625193,216.91,71.129 +625194,214.52,71.218 +625195,212.23,71.319 +625196,210.04,71.428 +625197,215.59,71.202 +625198,213.2,71.257 +625199,210.91,71.323 +625200,208.72,71.398 +625201,214.28,71.275 +625202,211.88,71.296 +625203,209.6,71.328 +625204,207.4,71.369 +625205,212.95,71.349 +625206,210.56,71.335 +625207,208.28,71.332 +625208,206.09,71.339 +625209,211.63,71.422 +625210,209.24,71.374 +625211,206.96,71.337 +625212,204.77,71.309 +625213,210.31,71.495 +625214,207.92,71.413 +625215,205.65,71.341 +625216,203.46,71.279 +625217,208.98,71.568 +625218,206.6,71.452 +625219,204.33,71.346 +625220,202.15,71.249 +625221,207.65,71.642 +625222,205.28,71.49 +625223,203.02,71.35 +625224,200.84,71.22 +625225,206.32,71.714 +625226,203.96,71.529 +625227,201.7,71.355 +625228,199.53,71.19 +625229,204.99,71.787 +625230,202.64,71.568 +625231,200.39,71.359 +625232,198.23,71.161 +625233,203.65,71.86 +625234,201.32,71.607 +625235,199.08,71.364 +625236,196.92,71.131 +625237,202.32,71.932 +625238,199.99,71.645 +625239,197.76,71.369 +625240,195.62,71.102 +625241,200.98,72.004 +625242,198.67,71.684 +625243,196.45,71.373 +625244,194.32,71.073 +625245,199.64,72.076 +625246,197.34,71.722 +625247,195.14,71.378 +625248,193.02,71.044 +625249,198.3,72.148 +625250,196.02,71.76 +625251,193.83,71.383 +625252,191.72,71.016 +625253,196.96,72.219 +625254,194.69,71.799 +625255,192.52,71.388 +625256,190.42,70.988 +625257,195.61,72.29 +625258,193.37,71.837 +625259,191.21,71.394 +625260,189.13,70.96 +625261,194.27,72.36 +625262,192.04,71.875 +625263,189.9,71.399 +625264,187.83,70.932 +625265,192.92,72.43 +625266,190.71,71.913 +625267,188.59,71.404 +625268,186.54,70.905 +625269,191.57,72.5 +625270,189.38,71.95 +625271,187.28,71.41 +625272,185.25,70.878 +625273,190.22,72.569 +625274,188.05,71.988 +625275,185.97,71.416 +625276,183.96,70.852 +625277,188.87,72.637 +625278,186.73,72.025 +625279,184.67,71.422 +625280,182.68,70.826 +625281,187.51,72.706 +625282,185.4,72.063 +625283,183.36,71.428 +625284,181.39,70.801 +625285,186.16,72.773 +625286,184.07,72.1 +625287,182.05,71.434 +625288,180.11,70.776 +625289,184.8,72.84 +625290,182.74,72.137 +625291,180.75,71.44 +625292,178.83,70.752 +625293,183.44,72.907 +625294,181.4,72.173 +625295,179.44,71.447 +625296,177.54,70.728 +625297,182.08,72.973 +625298,180.07,72.21 +625299,178.14,71.454 +625300,176.26,70.704 +625301,180.72,73.038 +625302,178.74,72.246 +625303,176.83,71.461 +625304,174.99,70.682 +625305,179.36,73.103 +625306,177.41,72.282 +625307,175.53,71.468 +625308,173.71,70.66 +625309,177.99,73.167 +625310,176.07,72.318 +625311,174.22,71.475 +625312,172.43,70.638 +625313,176.62,73.23 +625314,174.74,72.354 +625315,172.92,71.483 +625316,171.16,70.618 +625317,175.26,73.292 +625318,173.41,72.389 +625319,171.62,71.491 +625320,169.89,70.598 +625321,173.89,73.354 +625322,172.07,72.424 +625323,170.32,71.499 +625324,168.62,70.578 +625325,172.52,73.415 +625326,170.74,72.459 +625327,169.02,71.507 +625328,167.35,70.56 +625329,171.15,73.475 +625330,169.4,72.494 +625331,167.71,71.516 +625332,166.08,70.542 +625333,169.77,73.535 +625334,168.06,72.528 +625335,166.41,71.525 +625336,164.81,70.525 +625337,168.4,73.594 +625338,166.73,72.562 +625339,165.11,71.534 +625340,163.55,70.509 +625341,167.03,73.651 +625342,165.39,72.596 +625343,163.81,71.543 +625344,162.28,70.494 +625345,165.65,73.708 +625346,164.05,72.63 +625347,162.51,71.553 +625348,161.02,70.479 +625349,164.27,73.765 +625350,162.72,72.663 +625351,161.21,71.563 +625352,159.75,70.465 +625353,162.89,73.82 +625354,161.38,72.696 +625355,159.91,71.573 +625356,158.49,70.453 +625357,161.51,73.874 +625358,160.04,72.729 +625359,158.61,71.584 +625360,157.23,70.441 +625361,160.13,73.927 +625362,158.7,72.761 +625363,157.32,71.595 +625364,155.97,70.43 +625365,158.75,73.98 +625366,157.36,72.793 +625367,156.02,71.606 +625368,154.72,70.42 +625369,157.37,74.031 +625370,156.02,72.825 +625371,154.72,71.618 +625372,153.46,70.411 +625373,155.99,74.082 +625374,154.68,72.856 +625375,153.42,71.63 +625376,152.2,70.403 +625377,154.6,74.131 +625378,153.34,72.887 +625379,152.13,71.642 +625380,150.95,70.396 +625381,153.22,74.18 +625382,152,72.918 +625383,150.83,71.654 +625384,149.69,70.39 +625385,151.83,74.228 +625386,150.66,72.948 +625387,149.53,71.667 +625388,148.44,70.385 +625389,150.44,74.274 +625390,149.32,72.978 +625391,148.24,71.68 +625392,147.19,70.381 +625393,149.06,74.319 +625394,147.98,73.008 +625395,146.94,71.694 +625396,145.94,70.378 +625397,147.67,74.364 +625398,146.64,73.038 +625399,145.64,71.708 +625400,144.69,70.376 +625401,146.28,74.407 +625402,145.3,73.067 +625403,144.35,71.722 +625404,143.44,70.376 +625405,144.89,74.45 +625406,143.95,73.095 +625407,143.05,71.737 +625408,142.19,70.376 +625409,143.5,74.491 +625410,142.61,73.124 +625411,141.76,71.752 +625412,140.94,70.378 +625413,142.11,74.531 +625414,141.27,73.151 +625415,140.46,71.768 +625416,139.69,70.38 +625417,140.72,74.57 +625418,139.93,73.179 +625419,139.17,71.783 +625420,138.44,70.384 +625421,139.33,74.608 +625422,138.58,73.206 +625423,137.87,71.8 +625424,137.2,70.389 +625425,137.93,74.644 +625426,137.24,73.233 +625427,136.58,71.816 +625428,135.95,70.395 +625429,136.54,74.68 +625430,135.9,73.259 +625431,135.29,71.833 +625432,134.7,70.402 +625433,135.15,74.715 +625434,134.55,73.285 +625435,133.99,71.85 +625436,133.46,70.411 +625437,133.76,74.748 +625438,133.21,73.311 +625439,132.7,71.868 +625440,132.21,70.42 +625441,132.36,74.78 +625442,131.87,73.336 +625443,131.4,71.886 +625444,130.97,70.431 +625445,130.97,74.811 +625446,130.52,73.361 +625447,130.11,71.905 +625448,129.73,70.443 +625449,129.57,74.841 +625450,129.18,73.386 +625451,128.82,71.924 +625452,128.48,70.456 +625453,128.18,74.87 +625454,127.84,73.41 +625455,127.52,71.943 +625456,127.24,70.471 +625457,126.79,74.897 +625458,126.49,73.434 +625459,126.23,71.963 +625460,126,70.486 +625461,125.39,74.924 +625462,125.15,73.457 +625463,124.93,71.983 +625464,124.75,70.503 +625465,124,74.949 +625466,123.8,73.48 +625467,123.64,72.003 +625468,123.51,70.521 +625469,122.6,74.973 +625470,122.46,73.502 +625471,122.35,72.024 +625472,122.27,70.54 +625473,121.21,74.996 +625474,121.11,73.525 +625475,121.05,72.046 +625476,121.03,70.561 +625477,119.81,75.018 +625478,119.77,73.546 +625479,119.76,72.067 +625480,119.78,70.582 +625481,118.42,75.038 +625482,118.43,73.568 +625483,118.47,72.089 +625484,118.54,70.605 +625485,117.02,75.058 +625486,117.08,73.589 +625487,117.17,72.112 +625488,117.3,70.629 +625489,115.63,75.076 +625490,115.74,73.609 +625491,115.88,72.135 +625492,116.06,70.655 +625493,114.24,75.093 +625494,114.39,73.629 +625495,114.59,72.158 +625496,114.81,70.681 +625497,112.84,75.109 +625498,113.05,73.649 +625499,113.29,72.182 +625500,113.57,70.709 +625501,111.45,75.124 +625502,111.71,73.669 +625503,112,72.206 +625504,112.33,70.738 +625505,110.06,75.137 +625506,110.36,73.688 +625507,110.7,72.231 +625508,111.09,70.768 +625509,108.66,75.15 +625510,109.02,73.706 +625511,109.41,72.256 +625512,109.84,70.8 +625513,107.27,75.161 +625514,107.67,73.724 +625515,108.12,72.281 +625516,108.6,70.832 +625517,105.88,75.171 +625518,106.33,73.742 +625519,106.82,72.307 +625520,107.35,70.866 +625521,104.49,75.18 +625522,104.99,73.76 +625523,105.53,72.333 +625524,106.11,70.901 +625525,103.1,75.188 +625526,103.64,73.777 +625527,104.23,72.359 +625528,104.86,70.937 +625529,101.71,75.195 +625530,102.3,73.794 +625531,102.94,72.386 +625532,103.62,70.974 +625533,100.32,75.2 +625534,100.96,73.81 +625535,101.64,72.414 +625536,102.37,71.013 +625537,98.926,75.205 +625538,99.614,73.826 +625539,100.35,72.441 +625540,101.13,71.052 +625541,97.537,75.208 +625542,98.272,73.842 +625543,99.052,72.469 +625544,99.88,71.093 +625545,96.149,75.211 +625546,96.929,73.857 +625547,97.756,72.498 +625548,98.633,71.135 +625549,94.761,75.212 +625550,95.587,73.872 +625551,96.46,72.526 +625552,97.385,71.178 +625553,93.374,75.212 +625554,94.245,73.886 +625555,95.164,72.556 +625556,96.136,71.222 +625557,91.988,75.211 +625558,92.903,73.9 +625559,93.868,72.585 +625560,94.886,71.268 +625561,90.603,75.209 +625562,91.561,73.914 +625563,92.571,72.615 +625564,93.636,71.314 +625565,89.218,75.206 +625566,90.22,73.928 +625567,91.274,72.645 +625568,92.385,71.361 +625569,87.834,75.202 +625570,88.879,73.941 +625571,89.977,72.676 +625572,91.132,71.41 +625573,86.451,75.197 +625574,87.538,73.953 +625575,88.679,72.707 +625576,89.88,71.459 +625577,85.069,75.191 +625578,86.197,73.966 +625579,87.382,72.738 +625580,88.626,71.51 +625581,83.688,75.184 +625582,84.857,73.978 +625583,86.083,72.77 +625584,87.371,71.561 +625585,82.308,75.176 +625586,83.517,73.99 +625587,84.785,72.802 +625588,86.115,71.614 +625589,80.929,75.168 +625590,82.178,74.001 +625591,83.486,72.834 +625592,84.858,71.667 +625593,79.551,75.158 +625594,80.838,74.013 +625595,82.187,72.867 +625596,83.601,71.722 +625597,78.174,75.147 +625598,79.499,74.023 +625599,80.887,72.899 +625600,82.342,71.777 +625601,76.798,75.135 +625602,78.161,74.034 +625603,79.587,72.933 +625604,81.082,71.833 +625605,75.423,75.123 +625606,76.822,74.044 +625607,78.287,72.966 +625608,79.82,71.891 +625609,74.049,75.11 +625610,75.485,74.054 +625611,76.986,73 +625612,78.558,71.949 +625613,72.676,75.095 +625614,74.147,74.064 +625615,75.684,73.034 +625616,77.295,72.008 +625617,71.305,75.08 +625618,72.81,74.073 +625619,74.383,73.068 +625620,76.03,72.068 +625621,69.934,75.065 +625622,71.473,74.083 +625623,73.081,73.103 +625624,74.764,72.128 +625625,68.565,75.048 +625626,70.137,74.092 +625627,71.778,73.138 +625628,73.496,72.19 +625629,67.197,75.031 +625630,68.801,74.1 +625631,70.475,73.173 +625632,72.228,72.252 +625633,65.831,75.012 +625634,67.465,74.109 +625635,69.172,73.209 +625636,70.958,72.315 +625637,64.465,74.994 +625638,66.13,74.117 +625639,67.868,73.244 +625640,69.686,72.379 +625641,63.101,74.974 +625642,64.795,74.125 +625643,66.564,73.28 +625644,68.413,72.443 +625645,61.738,74.954 +625646,63.461,74.132 +625647,65.259,73.316 +625648,67.139,72.508 +625649,60.377,74.933 +625650,62.127,74.14 +625651,63.953,73.353 +625652,65.863,72.574 +625653,59.017,74.911 +625654,60.794,74.147 +625655,62.648,73.389 +625656,64.586,72.64 +625657,57.658,74.889 +625658,59.461,74.154 +625659,61.341,73.426 +625660,63.308,72.707 +625661,56.301,74.866 +625662,58.128,74.161 +625663,60.034,73.463 +625664,62.027,72.775 +625665,54.945,74.843 +625666,56.796,74.168 +625667,58.727,73.501 +625668,60.746,72.843 +625669,53.59,74.819 +625670,55.465,74.174 +625671,57.419,73.538 +625672,59.462,72.912 +625673,52.237,74.795 +625674,54.134,74.181 +625675,56.111,73.575 +625676,58.177,72.981 +625677,50.886,74.77 +625678,52.803,74.187 +625679,54.802,73.613 +625680,56.891,73.051 +625681,49.536,74.744 +625682,51.473,74.193 +625683,53.492,73.651 +625684,55.603,73.121 +625685,48.187,74.718 +625686,50.144,74.199 +625687,52.182,73.689 +625688,54.313,73.192 +625689,46.84,74.692 +625690,48.814,74.205 +625691,50.872,73.727 +625692,53.022,73.263 +625693,45.494,74.665 +625694,47.486,74.21 +625695,49.561,73.766 +625696,51.729,73.334 +625697,44.15,74.638 +625698,46.158,74.216 +625699,48.249,73.804 +625700,50.434,73.406 +625701,42.807,74.611 +625702,44.83,74.221 +625703,46.937,73.843 +625704,49.138,73.478 +625705,41.466,74.583 +625706,43.503,74.226 +625707,45.624,73.881 +625708,47.84,73.55 +625709,40.127,74.555 +625710,42.177,74.232 +625711,44.311,73.92 +625712,46.54,73.623 +625713,38.789,74.527 +625714,40.851,74.237 +625715,42.997,73.959 +625716,45.238,73.696 +625717,37.453,74.498 +625718,39.525,74.242 +625719,41.682,73.998 +625720,43.935,73.769 +625721,36.118,74.47 +625722,38.2,74.247 +625723,40.367,74.037 +625724,42.63,73.842 +625725,34.785,74.441 +625726,36.876,74.252 +625727,39.051,74.076 +625728,41.323,73.916 +625729,33.453,74.412 +625730,35.552,74.257 +625731,37.735,74.115 +625732,40.015,73.989 +625733,32.123,74.382 +625734,34.228,74.261 +625735,36.418,74.154 +625736,38.704,74.063 +625737,30.795,74.353 +625738,32.906,74.266 +625739,35.101,74.193 +625740,37.392,74.137 +625741,29.468,74.324 +625742,31.583,74.271 +625743,33.783,74.233 +625744,36.079,74.21 +625745,28.143,74.294 +625746,30.261,74.276 +625747,32.464,74.272 +625748,34.763,74.284 +625749,26.819,74.265 +625750,28.94,74.281 +625751,31.145,74.311 +625752,33.446,74.358 +625753,25.497,74.235 +625754,27.62,74.285 +625755,29.825,74.35 +625756,32.127,74.432 +625757,24.177,74.206 +625758,26.299,74.29 +625759,28.505,74.39 +625760,30.806,74.506 +625761,22.858,74.176 +625762,24.98,74.295 +625763,27.184,74.429 +625764,29.483,74.579 +625765,21.541,74.147 +625766,23.661,74.3 +625767,25.863,74.468 +625768,28.159,74.653 +625769,20.225,74.118 +625770,22.342,74.305 +625771,24.541,74.507 +625772,26.833,74.726 +625773,18.911,74.089 +625774,21.024,74.31 +625775,23.218,74.546 +625776,25.505,74.799 +625777,17.599,74.06 +625778,19.707,74.315 +625779,21.895,74.585 +625780,24.175,74.872 +625781,16.288,74.031 +625782,18.39,74.32 +625783,20.571,74.624 +625784,22.844,74.945 +625785,14.979,74.002 +625786,17.073,74.325 +625787,19.246,74.663 +625788,21.511,75.018 +625789,13.671,73.974 +625790,15.757,74.33 +625791,17.921,74.702 +625792,20.176,75.09 +625793,12.365,73.946 +625794,14.442,74.336 +625795,16.596,74.74 +625796,18.839,75.162 +625797,11.061,73.919 +625798,13.127,74.341 +625799,15.269,74.779 +625800,17.501,75.233 +625801,9.758,73.891 +625802,11.813,74.347 +625803,13.943,74.818 +625804,16.161,75.305 +625805,8.4567,73.864 +625806,10.499,74.353 +625807,12.615,74.856 +625808,14.819,75.375 +625809,7.157,73.838 +625810,9.1853,74.358 +625811,11.288,74.894 +625812,13.476,75.446 +625813,5.8588,73.811 +625814,7.8725,74.364 +625815,9.9593,74.932 +625816,12.131,75.516 +625817,4.5621,73.786 +625818,6.5602,74.371 +625819,8.6303,74.97 +625820,10.784,75.585 +625821,3.267,73.76 +625822,5.2483,74.377 +625823,7.3008,75.008 +625824,9.4361,75.654 +625825,1.9733,73.735 +625826,3.937,74.383 +625827,5.9708,75.046 +625828,8.0863,75.723 +625829,0.68118,73.711 +625830,2.6262,74.39 +625831,4.6402,75.083 +625832,6.7348,75.791 +625833,359.39,73.687 +625834,1.3158,74.397 +625835,3.3091,75.12 +625836,5.3818,75.858 +625837,358.1,73.664 +625838,0.0059066,74.404 +625839,1.9775,75.157 +625840,4.0272,75.925 +625841,356.81,73.641 +625842,358.7,74.411 +625843,0.64538,75.194 +625844,2.6711,75.991 +625845,355.53,73.619 +625846,357.39,74.419 +625847,359.31,75.231 +625848,1.3135,76.057 +625849,354.24,73.598 +625850,356.08,74.426 +625851,357.98,75.267 +625852,359.95,76.121 +625853,352.96,73.577 +625854,354.77,74.434 +625855,356.65,75.304 +625856,358.59,76.186 +625857,351.68,73.557 +625858,353.46,74.443 +625859,355.31,75.34 +625860,357.23,76.249 +625861,350.4,73.538 +625862,352.16,74.451 +625863,353.98,75.375 +625864,355.87,76.312 +625865,349.12,73.519 +625866,350.85,74.46 +625867,352.64,75.411 +625868,354.5,76.374 +625869,347.84,73.502 +625870,349.54,74.468 +625871,351.31,75.446 +625872,353.14,76.435 +625873,346.56,73.485 +625874,348.24,74.478 +625875,349.97,75.481 +625876,351.77,76.496 +625877,345.29,73.468 +625878,346.93,74.487 +625879,348.63,75.516 +625880,350.4,76.555 +625881,344.01,73.453 +625882,345.63,74.497 +625883,347.3,75.551 +625884,349.03,76.614 +625885,342.74,73.438 +625886,344.32,74.507 +625887,345.96,75.585 +625888,347.66,76.672 +625889,341.47,73.424 +625890,343.02,74.517 +625891,344.62,75.619 +625892,346.29,76.729 +625893,340.2,73.412 +625894,341.71,74.528 +625895,343.28,75.652 +625896,344.91,76.786 +625897,338.93,73.4 +625898,340.41,74.539 +625899,341.95,75.686 +625900,343.54,76.841 +625901,337.66,73.389 +625902,339.11,74.55 +625903,340.61,75.719 +625904,342.16,76.895 +625905,336.39,73.378 +625906,337.8,74.561 +625907,339.27,75.752 +625908,340.78,76.949 +625909,335.12,73.369 +625910,336.5,74.573 +625911,337.93,75.784 +625912,339.41,77.002 +625913,333.86,73.361 +625914,335.2,74.585 +625915,336.59,75.816 +625916,338.03,77.053 +625917,332.6,73.354 +625918,333.9,74.598 +625919,335.25,75.848 +625920,336.65,77.104 +625921,331.33,73.348 +625922,332.6,74.611 +625923,333.91,75.879 +625924,335.26,77.153 +625925,330.07,73.343 +625926,331.3,74.624 +625927,332.56,75.91 +625928,333.88,77.202 +625929,328.81,73.339 +625930,329.99,74.637 +625931,331.22,75.941 +625932,332.5,77.25 +625933,327.55,73.336 +625934,328.69,74.651 +625935,329.88,75.972 +625936,331.11,77.296 +625937,326.29,73.334 +625938,327.39,74.666 +625939,328.54,76.002 +625940,329.73,77.342 +625941,325.03,73.333 +625942,326.09,74.68 +625943,327.2,76.032 +625944,328.34,77.386 +625945,323.77,73.333 +625946,324.79,74.695 +625947,325.85,76.061 +625948,326.96,77.429 +625949,322.52,73.334 +625950,323.49,74.711 +625951,324.51,76.09 +625952,325.57,77.472 +625953,321.26,73.337 +625954,322.2,74.726 +625955,323.17,76.119 +625956,324.18,77.513 +625957,320.01,73.34 +625958,320.9,74.742 +625959,321.82,76.147 +625960,322.79,77.553 +625961,318.75,73.345 +625962,319.6,74.759 +625963,320.48,76.175 +625964,321.4,77.592 +625965,317.5,73.351 +625966,318.3,74.776 +625967,319.14,76.203 +625968,320.01,77.63 +625969,316.24,73.358 +625970,317,74.793 +625971,317.79,76.23 +625972,318.62,77.667 +625973,314.99,73.366 +625974,315.7,74.811 +625975,316.45,76.257 +625976,317.23,77.702 +625977,313.74,73.375 +625978,314.4,74.829 +625979,315.1,76.283 +625980,315.84,77.737 +625981,312.49,73.386 +625982,313.11,74.847 +625983,313.76,76.309 +625984,314.45,77.77 +625985,311.23,73.398 +625986,311.81,74.866 +625987,312.41,76.335 +625988,313.05,77.802 +625989,309.98,73.411 +625990,310.51,74.886 +625991,311.07,76.36 +625992,311.66,77.833 +625993,308.73,73.425 +625994,309.21,74.905 +625995,309.72,76.385 +625996,310.27,77.863 +625997,307.48,73.44 +625998,307.91,74.925 +625999,308.38,76.41 +626000,308.87,77.892 +626001,306.23,73.457 +626002,306.62,74.946 +626003,307.03,76.434 +626004,307.48,77.919 +626005,304.98,73.475 +626006,305.32,74.967 +626007,305.69,76.457 +626008,306.09,77.946 +626009,303.74,73.494 +626010,304.02,74.988 +626011,304.34,76.481 +626012,304.69,77.971 +626013,302.49,73.514 +626014,302.72,75.01 +626015,302.99,76.504 +626016,303.3,77.995 +626017,301.24,73.536 +626018,301.43,75.032 +626019,301.65,76.526 +626020,301.9,78.018 +626021,299.99,73.559 +626022,300.13,75.054 +626023,300.3,76.548 +626024,300.51,78.039 +626025,298.74,73.583 +626026,298.83,75.077 +626027,298.96,76.57 +626028,299.11,78.06 +626029,297.49,73.608 +626030,297.54,75.101 +626031,297.61,76.592 +626032,297.72,78.079 +626033,296.24,73.634 +626034,296.24,75.124 +626035,296.26,76.613 +626036,296.32,78.097 +626037,295,73.662 +626038,294.94,75.149 +626039,294.92,76.633 +626040,294.93,78.114 +626041,293.75,73.691 +626042,293.64,75.173 +626043,293.57,76.653 +626044,293.53,78.13 +626045,292.5,73.721 +626046,292.35,75.198 +626047,292.23,76.673 +626048,292.14,78.144 +626049,291.25,73.753 +626050,291.05,75.224 +626051,290.88,76.693 +626052,290.75,78.158 +626053,290,73.785 +626054,289.75,75.249 +626055,289.53,76.712 +626056,289.35,78.17 +626057,288.75,73.819 +626058,288.45,75.276 +626059,288.19,76.73 +626060,287.96,78.181 +626061,287.5,73.854 +626062,287.16,75.302 +626063,286.84,76.749 +626064,286.56,78.191 +626065,286.25,73.89 +626066,285.86,75.329 +626067,285.5,76.766 +626068,285.17,78.2 +626069,285,73.928 +626070,284.56,75.357 +626071,284.15,76.784 +626072,283.78,78.208 +626073,283.75,73.966 +626074,283.26,75.384 +626075,282.81,76.801 +626076,282.39,78.215 +626077,282.5,74.006 +626078,281.96,75.413 +626079,281.46,76.818 +626080,280.99,78.22 +626081,281.25,74.047 +626082,280.67,75.441 +626083,280.12,76.834 +626084,279.6,78.224 +626085,280,74.089 +626086,279.37,75.47 +626087,278.77,76.85 +626088,278.21,78.228 +626089,278.75,74.132 +626090,278.07,75.499 +626091,277.43,76.866 +626092,276.82,78.23 +626093,277.5,74.177 +626094,276.77,75.529 +626095,276.08,76.881 +626096,275.43,78.231 +626097,276.25,74.222 +626098,275.47,75.559 +626099,274.74,76.896 +626100,274.04,78.231 +626101,274.99,74.269 +626102,274.17,75.59 +626103,273.39,76.911 +626104,272.65,78.23 +626105,273.74,74.316 +626106,272.87,75.621 +626107,272.05,76.925 +626108,271.26,78.228 +626109,272.48,74.365 +626110,271.57,75.652 +626111,270.7,76.939 +626112,269.87,78.225 +626113,271.23,74.415 +626114,270.27,75.683 +626115,269.36,76.953 +626116,268.49,78.221 +626117,269.97,74.466 +626118,268.97,75.715 +626119,268.02,76.966 +626120,267.1,78.216 +626121,268.72,74.518 +626122,267.67,75.747 +626123,266.67,76.979 +626124,265.72,78.21 +626125,267.46,74.571 +626126,266.37,75.78 +626127,265.33,76.991 +626128,264.33,78.202 +626129,266.2,74.625 +626130,265.07,75.813 +626131,263.99,77.003 +626132,262.95,78.194 +626133,264.94,74.68 +626134,263.77,75.846 +626135,262.64,77.015 +626136,261.56,78.185 +626137,263.68,74.736 +626138,262.47,75.88 +626139,261.3,77.027 +626140,260.18,78.176 +626141,262.42,74.793 +626142,261.16,75.914 +626143,259.96,77.038 +626144,258.8,78.165 +626145,261.16,74.851 +626146,259.86,75.948 +626147,258.62,77.049 +626148,257.42,78.153 +626149,259.89,74.909 +626150,258.56,75.982 +626151,257.28,77.06 +626152,256.04,78.14 +626153,258.63,74.969 +626154,257.26,76.017 +626155,255.93,77.071 +626156,254.66,78.127 +626157,257.36,75.03 +626158,255.95,76.052 +626159,254.59,77.081 +626160,253.29,78.113 +626161,256.1,75.091 +626162,254.65,76.088 +626163,253.25,77.091 +626164,251.91,78.098 +626165,254.83,75.153 +626166,253.34,76.123 +626167,251.91,77.1 +626168,250.53,78.082 +626169,253.56,75.216 +626170,252.04,76.159 +626171,250.57,77.11 +626172,249.16,78.065 +626173,252.29,75.28 +626174,250.73,76.196 +626175,249.23,77.119 +626176,247.79,78.047 +626177,251.02,75.345 +626178,249.43,76.232 +626179,247.89,77.128 +626180,246.42,78.029 +626181,249.75,75.41 +626182,248.12,76.269 +626183,246.56,77.136 +626184,245.05,78.01 +626185,248.48,75.476 +626186,246.82,76.306 +626187,245.22,77.145 +626188,243.68,77.991 +626189,247.2,75.543 +626190,245.51,76.343 +626191,243.88,77.153 +626192,242.31,77.97 +626193,245.93,75.61 +626194,244.2,76.381 +626195,242.54,77.161 +626196,240.94,77.949 +626197,244.65,75.678 +626198,242.89,76.418 +626199,241.2,77.169 +626200,239.57,77.928 +626201,243.37,75.747 +626202,241.59,76.456 +626203,239.87,77.176 +626204,238.21,77.905 +626205,242.09,75.816 +626206,240.28,76.494 +626207,238.53,77.184 +626208,236.85,77.883 +626209,240.81,75.886 +626210,238.97,76.532 +626211,237.2,77.191 +626212,235.49,77.859 +626213,239.53,75.957 +626214,237.66,76.571 +626215,235.86,77.198 +626216,234.12,77.835 +626217,238.24,76.028 +626218,236.35,76.61 +626219,234.52,77.205 +626220,232.77,77.811 +626221,236.96,76.099 +626222,235.04,76.648 +626223,233.19,77.212 +626224,231.41,77.786 +626225,235.67,76.171 +626226,233.73,76.687 +626227,231.86,77.218 +626228,230.05,77.761 +626229,234.38,76.243 +626230,232.41,76.727 +626231,230.52,77.224 +626232,228.7,77.735 +626233,233.09,76.316 +626234,231.1,76.766 +626235,229.19,77.231 +626236,227.34,77.708 +626237,231.8,76.389 +626238,229.79,76.805 +626239,227.86,77.237 +626240,225.99,77.682 +626241,230.5,76.463 +626242,228.48,76.845 +626243,226.52,77.243 +626244,224.64,77.655 +626245,229.21,76.537 +626246,227.16,76.884 +626247,225.19,77.249 +626248,223.29,77.627 +626249,227.91,76.611 +626250,225.85,76.924 +626251,223.86,77.255 +626252,221.94,77.6 +626253,226.61,76.685 +626254,224.53,76.964 +626255,222.53,77.26 +626256,220.6,77.572 +626257,225.32,76.76 +626258,223.22,77.004 +626259,221.2,77.266 +626260,219.25,77.544 +626261,224.01,76.835 +626262,221.9,77.044 +626263,219.87,77.272 +626264,217.91,77.515 +626265,222.71,76.91 +626266,220.59,77.084 +626267,218.54,77.277 +626268,216.57,77.486 +626269,221.41,76.985 +626270,219.27,77.124 +626271,217.21,77.283 +626272,215.23,77.458 +626273,220.1,77.061 +626274,217.95,77.165 +626275,215.88,77.288 +626276,213.89,77.429 +626277,218.79,77.136 +626278,216.63,77.205 +626279,214.56,77.294 +626280,212.55,77.399 +626281,217.48,77.212 +626282,215.31,77.245 +626283,213.23,77.299 +626284,211.21,77.37 +626285,216.17,77.287 +626286,214,77.286 +626287,211.9,77.304 +626288,209.88,77.341 +626289,214.86,77.363 +626290,212.68,77.326 +626291,210.57,77.31 +626292,208.55,77.312 +626293,213.54,77.439 +626294,211.36,77.366 +626295,209.25,77.315 +626296,207.22,77.282 +626297,212.23,77.514 +626298,210.03,77.407 +626299,207.92,77.32 +626300,205.89,77.253 +626301,210.91,77.59 +626302,208.71,77.447 +626303,206.6,77.326 +626304,204.56,77.223 +626305,209.59,77.665 +626306,207.39,77.487 +626307,205.27,77.331 +626308,203.23,77.194 +626309,208.27,77.741 +626310,206.07,77.528 +626311,203.95,77.337 +626312,201.91,77.165 +626313,206.95,77.816 +626314,204.74,77.568 +626315,202.63,77.342 +626316,200.58,77.136 +626317,205.62,77.891 +626318,203.42,77.608 +626319,201.3,77.348 +626320,199.26,77.107 +626321,204.29,77.966 +626322,202.1,77.648 +626323,199.98,77.353 +626324,197.94,77.078 +626325,202.97,78.04 +626326,200.77,77.688 +626327,198.66,77.359 +626328,196.62,77.05 +626329,201.64,78.115 +626330,199.45,77.728 +626331,197.34,77.365 +626332,195.3,77.021 +626333,200.31,78.189 +626334,198.12,77.768 +626335,196.02,77.371 +626336,193.99,76.993 +626337,198.97,78.262 +626338,196.79,77.808 +626339,194.7,77.377 +626340,192.67,76.966 +626341,197.64,78.336 +626342,195.47,77.848 +626343,193.38,77.383 +626344,191.36,76.938 +626345,196.3,78.408 +626346,194.14,77.887 +626347,192.06,77.389 +626348,190.05,76.911 +626349,194.96,78.481 +626350,192.81,77.927 +626351,190.74,77.395 +626352,188.74,76.884 +626353,193.62,78.553 +626354,191.48,77.966 +626355,189.42,77.402 +626356,187.43,76.858 +626357,192.28,78.625 +626358,190.15,78.005 +626359,188.1,77.409 +626360,186.12,76.832 +626361,190.94,78.696 +626362,188.82,78.044 +626363,186.79,77.415 +626364,184.82,76.807 +626365,189.59,78.767 +626366,187.49,78.083 +626367,185.47,77.422 +626368,183.52,76.782 +626369,188.25,78.837 +626370,186.16,78.122 +626371,184.15,77.43 +626372,182.21,76.757 +626373,186.9,78.907 +626374,184.83,78.161 +626375,182.84,77.437 +626376,180.91,76.733 +626377,185.55,78.976 +626378,183.5,78.199 +626379,181.52,77.444 +626380,179.61,76.71 +626381,184.2,79.044 +626382,182.16,78.237 +626383,180.21,77.452 +626384,178.32,76.687 +626385,182.85,79.112 +626386,180.83,78.275 +626387,178.89,77.46 +626388,177.02,76.665 +626389,181.49,79.179 +626390,179.5,78.313 +626391,177.58,77.468 +626392,175.72,76.643 +626393,180.14,79.245 +626394,178.16,78.351 +626395,176.26,77.477 +626396,174.43,76.622 +626397,178.78,79.311 +626398,176.83,78.388 +626399,174.95,77.485 +626400,173.14,76.602 +626401,177.42,79.376 +626402,175.49,78.425 +626403,173.64,77.494 +626404,171.85,76.582 +626405,176.06,79.441 +626406,174.16,78.462 +626407,172.33,77.503 +626408,170.56,76.563 +626409,174.7,79.504 +626410,172.82,78.498 +626411,171.01,77.513 +626412,169.27,76.545 +626413,173.34,79.567 +626414,171.49,78.535 +626415,169.7,77.522 +626416,167.98,76.527 +626417,171.97,79.629 +626418,170.15,78.571 +626419,168.39,77.532 +626420,166.7,76.511 +626421,170.61,79.69 +626422,168.81,78.607 +626423,167.08,77.542 +626424,165.41,76.495 +626425,169.24,79.75 +626426,167.47,78.642 +626427,165.77,77.553 +626428,164.13,76.48 +626429,167.87,79.81 +626430,166.13,78.678 +626431,164.46,77.563 +626432,162.85,76.466 +626433,166.5,79.868 +626434,164.8,78.713 +626435,163.15,77.574 +626436,161.57,76.453 +626437,165.13,79.926 +626438,163.46,78.747 +626439,161.84,77.586 +626440,160.29,76.44 +626441,163.76,79.982 +626442,162.12,78.782 +626443,160.53,77.598 +626444,159.01,76.429 +626445,162.39,80.0382 +626446,160.78,78.816 +626447,159.23,77.61 +626448,157.73,76.418 +626449,161.01,80.0929 +626450,159.44,78.85 +626451,157.92,77.622 +626452,156.46,76.409 +626453,159.64,80.1468 +626454,158.09,78.883 +626455,156.61,77.634 +626456,155.18,76.4 +626457,158.26,80.1996 +626458,156.75,78.916 +626459,155.3,77.647 +626460,153.91,76.393 +626461,156.88,80.2514 +626462,155.41,78.949 +626463,154,77.661 +626464,152.63,76.386 +626465,155.5,80.3022 +626466,154.07,78.981 +626467,152.69,77.674 +626468,151.36,76.38 +626469,154.12,80.352 +626470,152.73,79.014 +626471,151.38,77.688 +626472,150.09,76.376 +626473,152.74,80.4007 +626474,151.38,79.045 +626475,150.08,77.703 +626476,148.82,76.372 +626477,151.36,80.4484 +626478,150.04,79.077 +626479,148.77,77.718 +626480,147.55,76.37 +626481,149.98,80.4949 +626482,148.7,79.108 +626483,147.47,77.733 +626484,146.28,76.369 +626485,148.6,80.5404 +626486,147.35,79.139 +626487,146.16,77.748 +626488,145.02,76.369 +626489,147.21,80.5848 +626490,146.01,79.169 +626491,144.86,77.764 +626492,143.75,76.369 +626493,145.83,80.6281 +626494,144.66,79.199 +626495,143.55,77.78 +626496,142.49,76.371 +626497,144.44,80.6703 +626498,143.32,79.229 +626499,142.25,77.797 +626500,141.22,76.375 +626501,143.05,80.7113 +626502,141.97,79.258 +626503,140.94,77.814 +626504,139.96,76.379 +626505,141.66,80.7512 +626506,140.63,79.287 +626507,139.64,77.831 +626508,138.69,76.384 +626509,140.28,80.79 +626510,139.28,79.315 +626511,138.34,77.849 +626512,137.43,76.391 +626513,138.89,80.8276 +626514,137.94,79.343 +626515,137.03,77.867 +626516,136.17,76.399 +626517,137.5,80.864 +626518,136.59,79.371 +626519,135.73,77.886 +626520,134.91,76.408 +626521,136.11,80.8993 +626522,135.24,79.399 +626523,134.43,77.905 +626524,133.65,76.418 +626525,134.71,80.9334 +626526,133.9,79.425 +626527,133.12,77.924 +626528,132.39,76.43 +626529,133.32,80.9663 +626530,132.55,79.452 +626531,131.82,77.944 +626532,131.13,76.442 +626533,131.93,80.998 +626534,131.2,79.478 +626535,130.52,77.964 +626536,129.87,76.456 +626537,130.54,81.0286 +626538,129.86,79.504 +626539,129.22,77.985 +626540,128.61,76.471 +626541,129.15,81.0579 +626542,128.51,79.529 +626543,127.91,78.006 +626544,127.35,76.488 +626545,127.75,81.0861 +626546,127.16,79.554 +626547,126.61,78.027 +626548,126.1,76.505 +626549,126.36,81.113 +626550,125.81,79.579 +626551,125.31,78.049 +626552,124.84,76.524 +626553,124.96,81.1387 +626554,124.47,79.603 +626555,124.01,78.071 +626556,123.58,76.544 +626557,123.57,81.1633 +626558,123.12,79.627 +626559,122.71,78.094 +626560,122.33,76.565 +626561,122.17,81.1866 +626562,121.77,79.65 +626563,121.4,78.117 +626564,121.07,76.588 +626565,120.78,81.2087 +626566,120.42,79.673 +626567,120.1,78.141 +626568,119.81,76.612 +626569,119.38,81.2297 +626570,119.07,79.696 +626571,118.8,78.165 +626572,118.56,76.637 +626573,117.99,81.2494 +626574,117.73,79.718 +626575,117.5,78.189 +626576,117.3,76.663 +626577,116.59,81.2679 +626578,116.38,79.74 +626579,116.2,78.214 +626580,116.05,76.691 +626581,115.2,81.2853 +626582,115.03,79.761 +626583,114.89,78.239 +626584,114.79,76.72 +626585,113.8,81.3014 +626586,113.68,79.782 +626587,113.59,78.265 +626588,113.54,76.75 +626589,112.41,81.3164 +626590,112.33,79.803 +626591,112.29,78.291 +626592,112.28,76.781 +626593,111.01,81.3301 +626594,110.98,79.823 +626595,110.99,78.317 +626596,111.03,76.814 +626597,109.62,81.3427 +626598,109.64,79.843 +626599,109.69,78.344 +626600,109.77,76.847 +626601,108.22,81.3541 +626602,108.29,79.862 +626603,108.39,78.371 +626604,108.52,76.882 +626605,106.83,81.3643 +626606,106.94,79.881 +626607,107.08,78.399 +626608,107.26,76.919 +626609,105.43,81.3734 +626610,105.59,79.9 +626611,105.78,78.427 +626612,106,76.956 +626613,104.04,81.3813 +626614,104.24,79.918 +626615,104.48,78.455 +626616,104.75,76.995 +626617,102.64,81.3881 +626618,102.89,79.936 +626619,103.18,78.484 +626620,103.49,77.035 +626621,101.25,81.3937 +626622,101.55,79.953 +626623,101.87,78.514 +626624,102.24,77.076 +626625,99.854,81.3982 +626626,100.2,79.971 +626627,100.57,78.543 +626628,100.98,77.118 +626629,98.46,81.4016 +626630,98.849,79.987 +626631,99.27,78.573 +626632,99.722,77.162 +626633,97.067,81.4038 +626634,97.501,80.0036 +626635,97.967,78.604 +626636,98.465,77.207 +626637,95.674,81.405 +626638,96.153,80.0195 +626639,96.664,78.635 +626640,97.207,77.252 +626641,94.282,81.4051 +626642,94.805,80.0352 +626643,95.361,78.666 +626644,95.949,77.299 +626645,92.89,81.4041 +626646,93.458,80.0504 +626647,94.058,78.698 +626648,94.691,77.348 +626649,91.499,81.402 +626650,92.11,80.0653 +626651,92.754,78.73 +626652,93.432,77.397 +626653,90.108,81.3989 +626654,90.763,80.0798 +626655,91.451,78.762 +626656,92.172,77.447 +626657,88.718,81.3947 +626658,89.416,80.094 +626659,90.147,78.795 +626660,90.912,77.499 +626661,87.329,81.3895 +626662,88.069,80.1079 +626663,88.843,78.828 +626664,89.651,77.551 +626665,85.94,81.3833 +626666,86.722,80.1214 +626667,87.538,78.861 +626668,88.39,77.605 +626669,84.551,81.3761 +626670,85.375,80.1346 +626671,86.234,78.895 +626672,87.128,77.66 +626673,83.164,81.368 +626674,84.029,80.1474 +626675,84.929,78.929 +626676,85.865,77.715 +626677,81.777,81.3588 +626678,82.683,80.16 +626679,83.624,78.964 +626680,84.601,77.772 +626681,80.391,81.3487 +626682,81.337,80.1722 +626683,82.318,78.999 +626684,83.337,77.83 +626685,79.006,81.3377 +626686,79.991,80.1841 +626687,81.013,79.034 +626688,82.072,77.888 +626689,77.621,81.3258 +626690,78.645,80.1957 +626691,79.707,79.069 +626692,80.806,77.948 +626693,76.237,81.313 +626694,77.3,80.207 +626695,78.4,79.105 +626696,79.539,78.009 +626697,74.855,81.2993 +626698,75.955,80.218 +626699,77.094,79.141 +626700,78.272,78.07 +626701,73.473,81.2847 +626702,74.61,80.2287 +626703,75.787,79.177 +626704,77.003,78.133 +626705,72.092,81.2693 +626706,73.266,80.2392 +626707,74.479,79.214 +626708,75.734,78.196 +626709,70.712,81.2531 +626710,71.922,80.2494 +626711,73.172,79.251 +626712,74.463,78.26 +626713,69.333,81.2361 +626714,70.578,80.2593 +626715,71.864,79.288 +626716,73.192,78.325 +626717,67.955,81.2183 +626718,69.235,80.2689 +626719,70.555,79.326 +626720,71.92,78.391 +626721,66.578,81.1997 +626722,67.891,80.2783 +626723,69.247,79.364 +626724,70.646,78.458 +626725,65.202,81.1805 +626726,66.549,80.2875 +626727,67.938,79.402 +626728,69.371,78.525 +626729,63.827,81.1605 +626730,65.206,80.2964 +626731,66.628,79.44 +626732,68.096,78.593 +626733,62.454,81.1398 +626734,63.864,80.3051 +626735,65.318,79.479 +626736,66.819,78.662 +626737,61.081,81.1184 +626738,62.522,80.3135 +626739,64.008,79.517 +626740,65.541,78.732 +626741,59.71,81.0964 +626742,61.181,80.3218 +626743,62.697,79.556 +626744,64.262,78.802 +626745,58.339,81.0738 +626746,59.839,80.3298 +626747,61.386,79.596 +626748,62.981,78.873 +626749,56.97,81.0506 +626750,58.499,80.3377 +626751,60.074,79.635 +626752,61.7,78.945 +626753,55.602,81.0268 +626754,57.158,80.3453 +626755,58.762,79.675 +626756,60.417,79.017 +626757,54.236,81.0024 +626758,55.818,80.3528 +626759,57.45,79.714 +626760,59.132,79.09 +626761,52.87,80.9775 +626762,54.479,80.3601 +626763,56.137,79.754 +626764,57.847,79.163 +626765,51.506,80.9521 +626766,53.14,80.3673 +626767,54.823,79.795 +626768,56.56,79.237 +626769,50.143,80.9263 +626770,51.801,80.3742 +626771,53.51,79.835 +626772,55.272,79.311 +626773,48.782,80.8999 +626774,50.463,80.3811 +626775,52.195,79.876 +626776,53.982,79.386 +626777,47.421,80.8732 +626778,49.125,80.3878 +626779,50.88,79.916 +626780,52.692,79.461 +626781,46.062,80.8461 +626782,47.787,80.3943 +626783,49.565,79.957 +626784,51.399,79.537 +626785,44.705,80.8185 +626786,46.45,80.4008 +626787,48.249,79.998 +626788,50.106,79.613 +626789,43.348,80.7907 +626790,45.114,80.4071 +626791,46.933,80.039 +626792,48.81,79.689 +626793,41.993,80.7625 +626794,43.777,80.4134 +626795,45.616,80.0802 +626796,47.514,79.766 +626797,40.64,80.734 +626798,42.442,80.4195 +626799,44.299,80.1215 +626800,46.216,79.842 +626801,39.288,80.7053 +626802,41.106,80.4256 +626803,42.981,80.1629 +626804,44.916,79.92 +626805,37.937,80.6763 +626806,39.772,80.4315 +626807,41.663,80.2043 +626808,43.615,79.997 +626809,36.588,80.6471 +626810,38.437,80.4375 +626811,40.344,80.2458 +626812,42.312,80.0748 +626813,35.24,80.6177 +626814,37.103,80.4433 +626815,39.024,80.2874 +626816,41.008,80.1527 +626817,33.893,80.5881 +626818,35.77,80.4491 +626819,37.704,80.3291 +626820,39.703,80.2307 +626821,32.548,80.5584 +626822,34.437,80.4549 +626823,36.384,80.3708 +626824,38.396,80.3088 +626825,31.205,80.5286 +626826,33.104,80.4606 +626827,35.063,80.4125 +626828,37.087,80.387 +626829,29.862,80.4988 +626830,31.772,80.4664 +626831,33.741,80.4543 +626832,35.777,80.4652 +626833,28.522,80.4688 +626834,30.44,80.4721 +626835,32.419,80.496 +626836,34.465,80.5435 +626837,27.182,80.4389 +626838,29.109,80.4778 +626839,31.097,80.5378 +626840,33.151,80.6218 +626841,25.845,80.409 +626842,27.779,80.4835 +626843,29.774,80.5796 +626844,31.836,80.7001 +626845,24.508,80.3791 +626846,26.448,80.4892 +626847,28.45,80.6214 +626848,30.52,80.7783 +626849,23.174,80.3492 +626850,25.119,80.495 +626851,27.126,80.6631 +626852,29.201,80.8564 +626853,21.84,80.3195 +626854,23.79,80.5008 +626855,25.801,80.7048 +626856,27.882,80.9344 +626857,20.508,80.2899 +626858,22.461,80.5067 +626859,24.476,80.7465 +626860,26.56,81.0122 +626861,19.178,80.2604 +626862,21.133,80.5126 +626863,23.15,80.7881 +626864,25.237,81.0899 +626865,17.849,80.2311 +626866,19.805,80.5186 +626867,21.823,80.8297 +626868,23.912,81.1674 +626869,16.522,80.202 +626870,18.477,80.5246 +626871,20.496,80.8712 +626872,22.586,81.2446 +626873,15.196,80.1731 +626874,17.151,80.5307 +626875,19.169,80.9126 +626876,21.258,81.3216 +626877,13.871,80.1445 +626878,15.824,80.537 +626879,17.841,80.9539 +626880,19.929,81.3983 +626881,12.548,80.1162 +626882,14.498,80.5433 +626883,16.512,80.9951 +626884,18.598,81.4746 +626885,11.227,80.0881 +626886,13.173,80.5497 +626887,15.183,81.0362 +626888,17.265,81.5506 +626889,9.9065,80.0605 +626890,11.848,80.5563 +626891,13.853,81.0772 +626892,15.931,81.6263 +626893,8.5879,80.0332 +626894,10.524,80.563 +626895,12.523,81.1181 +626896,14.595,81.7015 +626897,7.2708,80.0062 +626898,9.1996,80.5698 +626899,11.192,81.1588 +626900,13.257,81.7763 +626901,5.9551,79.98 +626902,7.8761,80.5768 +626903,9.8607,81.1994 +626904,11.918,81.8506 +626905,4.6408,79.954 +626906,6.5531,80.584 +626907,8.5288,81.2399 +626908,10.578,81.9245 +626909,3.328,79.928 +626910,5.2305,80.5913 +626911,7.1963,81.2801 +626912,9.2354,81.9978 +626913,2.0166,79.903 +626914,3.9083,80.5987 +626915,5.8634,81.3202 +626916,7.8915,82.0706 +626917,0.7066,79.879 +626918,2.5867,80.6064 +626919,4.5299,81.3602 +626920,6.5462,82.1428 +626921,359.4,79.855 +626922,1.2655,80.6143 +626923,3.1959,81.3999 +626924,5.1993,82.2144 +626925,358.09,79.831 +626926,359.94,80.6223 +626927,1.8613,81.4394 +626928,3.8508,82.2854 +626929,356.79,79.808 +626930,358.62,80.6306 +626931,0.52625,81.4788 +626932,2.5008,82.3557 +626933,355.48,79.786 +626934,357.3,80.6391 +626935,359.19,81.5179 +626936,1.1493,82.4254 +626937,354.18,79.765 +626938,355.99,80.6478 +626939,357.85,81.5568 +626940,359.8,82.4944 +626941,352.88,79.744 +626942,354.67,80.6567 +626943,356.52,81.5954 +626944,358.44,82.5627 +626945,351.58,79.724 +626946,353.35,80.6659 +626947,355.18,81.6338 +626948,357.09,82.6302 +626949,350.28,79.704 +626950,352.03,80.6754 +626951,353.84,81.672 +626952,355.73,82.697 +626953,348.98,79.686 +626954,350.71,80.685 +626955,352.51,81.7099 +626956,354.37,82.7629 +626957,347.68,79.668 +626958,349.39,80.695 +626959,351.17,81.7476 +626960,353.01,82.8281 +626961,346.39,79.651 +626962,348.08,80.7052 +626963,349.83,81.785 +626964,351.65,82.8924 +626965,345.09,79.634 +626966,346.76,80.7158 +626967,348.49,81.8221 +626968,350.28,82.9559 +626969,343.8,79.619 +626970,345.44,80.7266 +626971,347.15,81.8589 +626972,348.92,83.0185 +626973,342.51,79.604 +626974,344.13,80.7376 +626975,345.81,81.8954 +626976,347.55,83.0801 +626977,341.22,79.591 +626978,342.81,80.749 +626979,344.47,81.9316 +626980,346.19,83.1409 +626981,339.93,79.578 +626982,341.5,80.7607 +626983,343.13,81.9676 +626984,344.82,83.2008 +626985,338.64,79.566 +626986,340.18,80.7728 +626987,341.78,82.0032 +626988,343.45,83.2596 +626989,337.35,79.555 +626990,338.87,80.7851 +626991,340.44,82.0385 +626992,342.08,83.3175 +626993,336.07,79.545 +626994,337.56,80.7978 +626995,339.1,82.0734 +626996,340.71,83.3744 +626997,334.78,79.536 +626998,336.24,80.8108 +626999,337.76,82.1081 +627000,339.33,83.4303 +627001,333.5,79.528 +627002,334.93,80.8241 +627003,336.41,82.1424 +627004,337.96,83.4852 +627005,332.22,79.521 +627006,333.62,80.8378 +627007,335.07,82.1764 +627008,336.58,83.539 +627009,330.94,79.515 +627010,332.3,80.8518 +627011,333.72,82.21 +627012,335.21,83.5918 +627013,329.66,79.511 +627014,330.99,80.8662 +627015,332.38,82.2432 +627016,333.83,83.6435 +627017,328.38,79.507 +627018,329.68,80.881 +627019,331.03,82.2761 +627020,332.45,83.6941 +627021,327.1,79.504 +627022,328.37,80.8961 +627023,329.69,82.3087 +627024,331.07,83.7436 +627025,325.82,79.502 +627026,327.06,80.9116 +627027,328.34,82.3409 +627028,329.69,83.792 +627029,324.54,79.502 +627030,325.75,80.9274 +627031,327,82.3727 +627032,328.31,83.8392 +627033,323.27,79.503 +627034,324.44,80.9437 +627035,325.65,82.4041 +627036,326.92,83.8853 +627037,321.99,79.504 +627038,323.12,80.9603 +627039,324.3,82.4351 +627040,325.54,83.9303 +627041,320.72,79.507 +627042,321.81,80.9774 +627043,322.96,82.4658 +627044,324.15,83.9741 +627045,319.45,79.512 +627046,320.5,80.9948 +627047,321.61,82.4961 +627048,322.77,84.0167 +627049,318.17,79.517 +627050,319.19,81.0126 +627051,320.26,82.5259 +627052,321.38,84.0581 +627053,316.9,79.523 +627054,317.88,81.0308 +627055,318.91,82.5554 +627056,319.99,84.0983 +627057,315.63,79.531 +627058,316.58,81.0494 +627059,317.57,82.5845 +627060,318.61,84.1373 +627061,314.36,79.54 +627062,315.27,81.0684 +627063,316.22,82.6132 +627064,317.22,84.1752 +627065,313.09,79.55 +627066,313.96,81.0879 +627067,314.87,82.6415 +627068,315.83,84.2118 +627069,311.82,79.561 +627070,312.65,81.1077 +627071,313.52,82.6694 +627072,314.44,84.2471 +627073,310.55,79.574 +627074,311.34,81.128 +627075,312.17,82.6968 +627076,313.05,84.2813 +627077,309.28,79.588 +627078,310.03,81.1486 +627079,310.82,82.7239 +627080,311.66,84.3142 +627081,308.02,79.603 +627082,308.72,81.1697 +627083,309.47,82.7505 +627084,310.26,84.3459 +627085,306.75,79.619 +627086,307.42,81.1912 +627087,308.12,82.7767 +627088,308.87,84.3763 +627089,305.48,79.637 +627090,306.11,81.2132 +627091,306.77,82.8026 +627092,307.48,84.4055 +627093,304.22,79.656 +627094,304.8,81.2355 +627095,305.42,82.8279 +627096,306.08,84.4334 +627097,302.95,79.676 +627098,303.49,81.2583 +627099,304.07,82.8529 +627100,304.69,84.46 +627101,301.69,79.698 +627102,302.18,81.2815 +627103,302.72,82.8775 +627104,303.29,84.4855 +627105,300.42,79.72 +627106,300.88,81.3051 +627107,301.37,82.9016 +627108,301.9,84.5096 +627109,299.16,79.744 +627110,299.57,81.3292 +627111,300.02,82.9253 +627112,300.5,84.5325 +627113,297.89,79.77 +627114,298.26,81.3537 +627115,298.67,82.9486 +627116,299.11,84.5542 +627117,296.63,79.796 +627118,296.95,81.3786 +627119,297.31,82.9715 +627120,297.71,84.5746 +627121,295.36,79.824 +627122,295.65,81.4039 +627123,295.96,82.994 +627124,296.32,84.5937 +627125,294.1,79.853 +627126,294.34,81.4297 +627127,294.61,83.016 +627128,294.92,84.6116 +627129,292.84,79.884 +627130,293.03,81.4559 +627131,293.26,83.0376 +627132,293.52,84.6283 +627133,291.57,79.915 +627134,291.72,81.4825 +627135,291.91,83.0588 +627136,292.13,84.6437 +627137,290.31,79.948 +627138,290.42,81.5095 +627139,290.56,83.0796 +627140,290.73,84.6579 +627141,289.05,79.982 +627142,289.11,81.537 +627143,289.21,83.1 +627144,289.34,84.6708 +627145,287.78,80.018 +627146,287.8,81.5649 +627147,287.85,83.12 +627148,287.94,84.6825 +627149,286.52,80.0548 +627150,286.49,81.5932 +627151,286.5,83.1395 +627152,286.54,84.693 +627153,285.26,80.0928 +627154,285.19,81.6219 +627155,285.15,83.1587 +627156,285.15,84.7023 +627157,283.99,80.1321 +627158,283.88,81.651 +627159,283.8,83.1774 +627160,283.75,84.7103 +627161,282.73,80.1727 +627162,282.57,81.6805 +627163,282.45,83.1957 +627164,282.35,84.7172 +627165,281.47,80.2144 +627166,281.26,81.7105 +627167,281.09,83.2137 +627168,280.96,84.7229 +627169,280.2,80.2574 +627170,279.96,81.7408 +627171,279.74,83.2312 +627172,279.56,84.7274 +627173,278.94,80.3016 +627174,278.65,81.7716 +627175,278.39,83.2483 +627176,278.16,84.7307 +627177,277.67,80.3471 +627178,277.34,81.8027 +627179,277.04,83.2651 +627180,276.77,84.7329 +627181,276.41,80.3937 +627182,276.03,81.8343 +627183,275.69,83.2814 +627184,275.37,84.7339 +627185,275.14,80.4415 +627186,274.72,81.8662 +627187,274.34,83.2974 +627188,273.98,84.7338 +627189,273.88,80.4905 +627190,273.42,81.8985 +627191,272.99,83.313 +627192,272.58,84.7325 +627193,272.61,80.5407 +627194,272.11,81.9313 +627195,271.63,83.3282 +627196,271.19,84.7301 +627197,271.34,80.592 +627198,270.8,81.9643 +627199,270.28,83.3431 +627200,269.8,84.7267 +627201,270.08,80.6444 +627202,269.49,81.9978 +627203,268.93,83.3575 +627204,268.4,84.7221 +627205,268.81,80.698 +627206,268.18,82.0316 +627207,267.58,83.3717 +627208,267.01,84.7165 +627209,267.54,80.7527 +627210,266.87,82.0658 +627211,266.23,83.3854 +627212,265.62,84.7098 +627213,266.27,80.8085 +627214,265.56,82.1004 +627215,264.88,83.3988 +627216,264.22,84.7021 +627217,265.01,80.8653 +627218,264.25,82.1353 +627219,263.53,83.4119 +627220,262.83,84.6934 +627221,263.74,80.9232 +627222,262.94,82.1706 +627223,262.18,83.4246 +627224,261.44,84.6836 +627225,262.47,80.9822 +627226,261.63,82.2062 +627227,260.83,83.437 +627228,260.05,84.6729 +627229,261.19,81.0422 +627230,260.32,82.2421 +627231,259.48,83.449 +627232,258.66,84.6612 +627233,259.92,81.1031 +627234,259.01,82.2784 +627235,258.13,83.4608 +627236,257.27,84.6485 +627237,258.65,81.1651 +627238,257.7,82.315 +627239,256.78,83.4722 +627240,255.89,84.6349 +627241,257.38,81.2281 +627242,256.39,82.3519 +627243,255.43,83.4833 +627244,254.5,84.6204 +627245,256.1,81.2919 +627246,255.08,82.3891 +627247,254.08,83.494 +627248,253.11,84.6049 +627249,254.83,81.3568 +627250,253.77,82.4266 +627251,252.73,83.5045 +627252,251.73,84.5886 +627253,253.55,81.4225 +627254,252.45,82.4645 +627255,251.38,83.5147 +627256,250.34,84.5715 +627257,252.28,81.4891 +627258,251.14,82.5026 +627259,250.03,83.5247 +627260,248.96,84.5535 +627261,251,81.5565 +627262,249.83,82.541 +627263,248.69,83.5343 +627264,247.58,84.5346 +627265,249.72,81.6249 +627266,248.52,82.5796 +627267,247.34,83.5437 +627268,246.19,84.515 +627269,248.44,81.694 +627270,247.2,82.6186 +627271,245.99,83.5528 +627272,244.81,84.4946 +627273,247.16,81.7639 +627274,245.89,82.6578 +627275,244.64,83.5616 +627276,243.43,84.4735 +627277,245.88,81.8346 +627278,244.57,82.6972 +627279,243.3,83.5702 +627280,242.05,84.4516 +627281,244.6,81.906 +627282,243.26,82.7369 +627283,241.95,83.5786 +627284,240.67,84.429 +627285,243.32,81.9781 +627286,241.94,82.7768 +627287,240.6,83.5867 +627288,239.3,84.4058 +627289,242.03,82.051 +627290,240.63,82.817 +627291,239.26,83.5946 +627292,237.92,84.3819 +627293,240.75,82.1245 +627294,239.31,82.8574 +627295,237.91,83.6023 +627296,236.55,84.3573 +627297,239.46,82.1986 +627298,238,82.8979 +627299,236.57,83.6098 +627300,235.17,84.3322 +627301,238.17,82.2734 +627302,236.68,82.9387 +627303,235.22,83.6171 +627304,233.8,84.3064 +627305,236.88,82.3487 +627306,235.36,82.9797 +627307,233.88,83.6242 +627308,232.43,84.2801 +627309,235.59,82.4246 +627310,234.05,83.0208 +627311,232.53,83.6311 +627312,231.06,84.2533 +627313,234.3,82.5011 +627314,232.73,83.0622 +627315,231.19,83.6378 +627316,229.69,84.2259 +627317,233.01,82.578 +627318,231.41,83.1037 +627319,229.85,83.6444 +627320,228.32,84.1981 +627321,231.72,82.6554 +627322,230.09,83.1453 +627323,228.5,83.6508 +627324,226.95,84.1698 +627325,230.42,82.7333 +627326,228.77,83.1871 +627327,227.16,83.6571 +627328,225.59,84.1411 +627329,229.13,82.8116 +627330,227.45,83.229 +627331,225.82,83.6632 +627332,224.22,84.112 +627333,227.83,82.8903 +627334,226.13,83.2711 +627335,224.47,83.6692 +627336,222.86,84.0825 +627337,226.53,82.9693 +627338,224.81,83.3133 +627339,223.13,83.6751 +627340,221.5,84.0527 +627341,225.23,83.0486 +627342,223.49,83.3555 +627343,221.79,83.6809 +627344,220.14,84.0225 +627345,223.93,83.1283 +627346,222.17,83.3979 +627347,220.45,83.6866 +627348,218.78,83.9921 +627349,222.63,83.2082 +627350,220.85,83.4404 +627351,219.11,83.6922 +627352,217.42,83.9613 +627353,221.32,83.2884 +627354,219.52,83.4829 +627355,217.77,83.6977 +627356,216.06,83.9304 +627357,220.02,83.3688 +627358,218.2,83.5255 +627359,216.43,83.7031 +627360,214.7,83.8992 +627361,218.71,83.4494 +627362,216.88,83.5682 +627363,215.09,83.7085 +627364,213.35,83.8678 +627365,217.4,83.5301 +627366,215.55,83.6109 +627367,213.75,83.7138 +627368,212,83.8363 +627369,216.09,83.6109 +627370,214.23,83.6537 +627371,212.41,83.7191 +627372,210.65,83.8047 +627373,214.78,83.6919 +627374,212.9,83.6965 +627375,211.08,83.7244 +627376,209.3,83.773 +627377,213.47,83.7728 +627378,211.58,83.7393 +627379,209.74,83.7296 +627380,207.95,83.7412 +627381,212.15,83.8538 +627382,210.25,83.7821 +627383,208.4,83.7348 +627384,206.6,83.7093 +627385,210.84,83.9348 +627386,208.93,83.8249 +627387,207.07,83.74 +627388,205.25,83.6775 +627389,209.52,84.0158 +627390,207.6,83.8677 +627391,205.73,83.7452 +627392,203.91,83.6456 +627393,208.2,84.0967 +627394,206.27,83.9105 +627395,204.39,83.7504 +627396,202.57,83.6138 +627397,206.88,84.1775 +627398,204.94,83.9532 +627399,203.06,83.7557 +627400,201.22,83.5821 +627401,205.56,84.2582 +627402,203.61,83.9959 +627403,201.72,83.761 +627404,199.88,83.5505 +627405,204.23,84.3387 +627406,202.28,84.0386 +627407,200.39,83.7663 +627408,198.54,83.519 +627409,202.91,84.4191 +627410,200.95,84.0812 +627411,199.06,83.7717 +627412,197.21,83.4876 +627413,201.58,84.4992 +627414,199.62,84.1237 +627415,197.72,83.7771 +627416,195.87,83.4565 +627417,200.26,84.579 +627418,198.29,84.1661 +627419,196.39,83.7827 +627420,194.54,83.4256 +627421,198.93,84.6586 +627422,196.96,84.2085 +627423,195.06,83.7883 +627424,193.2,83.3949 +627425,197.6,84.7379 +627426,195.63,84.2507 +627427,193.72,83.794 +627428,191.87,83.3645 +627429,196.26,84.8168 +627430,194.3,84.2929 +627431,192.39,83.7998 +627432,190.54,83.3344 +627433,194.93,84.8954 +627434,192.97,84.3349 +627435,191.06,83.8057 +627436,189.21,83.3046 +627437,193.59,84.9735 +627438,191.63,84.3767 +627439,189.73,83.8117 +627440,187.88,83.2752 +627441,192.26,85.0512 +627442,190.3,84.4185 +627443,188.4,83.8179 +627444,186.56,83.2461 +627445,190.92,85.1285 +627446,188.96,84.4601 +627447,187.07,83.8242 +627448,185.23,83.2175 +627449,189.58,85.2053 +627450,187.63,84.5015 +627451,185.74,83.8306 +627452,183.91,83.1893 +627453,188.24,85.2815 +627454,186.29,84.5427 +627455,184.41,83.8372 +627456,182.59,83.1616 +627457,186.89,85.3573 +627458,184.96,84.5838 +627459,183.08,83.844 +627460,181.26,83.1343 +627461,185.55,85.4324 +627462,183.62,84.6247 +627463,181.76,83.851 +627464,179.95,83.1076 +627465,184.2,85.5069 +627466,182.28,84.6654 +627467,180.43,83.8581 +627468,178.63,83.0815 +627469,182.86,85.5809 +627470,180.95,84.7059 +627471,179.1,83.8654 +627472,177.31,83.0559 +627473,181.51,85.6541 +627474,179.61,84.7461 +627475,177.77,83.8729 +627476,175.99,83.0309 +627477,180.16,85.7267 +627478,178.27,84.7862 +627479,176.45,83.8807 +627480,174.68,83.0065 +627481,178.8,85.7985 +627482,176.93,84.826 +627483,175.12,83.8886 +627484,173.37,82.9828 +627485,177.45,85.8697 +627486,175.59,84.8656 +627487,173.8,83.8968 +627488,172.06,82.9598 +627489,176.1,85.94 +627490,174.25,84.9049 +627491,172.47,83.9053 +627492,170.75,82.9374 +627493,174.74,86.0096 +627494,172.91,84.9439 +627495,171.15,83.9139 +627496,169.44,82.9158 +627497,173.38,86.0784 +627498,171.57,84.9827 +627499,169.82,83.9228 +627500,168.13,82.8949 +627501,172.02,86.1463 +627502,170.23,85.0212 +627503,168.5,83.932 +627504,166.82,82.8748 +627505,170.66,86.2134 +627506,168.89,85.0595 +627507,167.17,83.9415 +627508,165.52,82.8556 +627509,169.3,86.2796 +627510,167.54,85.0974 +627511,165.85,83.9512 +627512,164.21,82.8371 +627513,167.94,86.3448 +627514,166.2,85.1351 +627515,164.53,83.9612 +627516,162.91,82.8194 +627517,166.57,86.4092 +627518,164.86,85.1724 +627519,163.21,83.9715 +627520,161.61,82.8027 +627521,165.21,86.4726 +627522,163.51,85.2094 +627523,161.88,83.9821 +627524,160.31,82.7868 +627525,163.84,86.535 +627526,162.17,85.2461 +627527,160.56,83.993 +627528,159.01,82.7718 +627529,162.47,86.5965 +627530,160.82,85.2825 +627531,159.24,84.0042 +627532,157.71,82.7578 +627533,161.1,86.6569 +627534,159.48,85.3185 +627535,157.92,84.0157 +627536,156.41,82.7447 +627537,159.73,86.7163 +627538,158.13,85.3542 +627539,156.6,84.0276 +627540,155.12,82.7326 +627541,158.36,86.7746 +627542,156.79,85.3896 +627543,155.28,84.0398 +627544,153.82,82.7214 +627545,156.99,86.8319 +627546,155.44,85.4246 +627547,153.96,84.0523 +627548,152.53,82.7113 +627549,155.61,86.8881 +627550,154.09,85.4592 +627551,152.64,84.0652 +627552,151.24,82.7022 +627553,154.23,86.9431 +627554,152.75,85.4935 +627555,151.32,84.0784 +627556,149.95,82.6942 +627557,152.86,86.9971 +627558,151.4,85.5274 +627559,150,84.092 +627560,148.66,82.6872 +627561,151.48,87.0499 +627562,150.05,85.5609 +627563,148.68,84.1059 +627564,147.37,82.6813 +627565,150.1,87.1016 +627566,148.7,85.5941 +627567,147.36,84.1202 +627568,146.08,82.6765 +627569,148.72,87.152 +627570,147.35,85.6268 +627571,146.05,84.1349 +627572,144.79,82.6728 +627573,147.34,87.2013 +627574,146,85.6592 +627575,144.73,84.1499 +627576,143.5,82.6703 +627577,145.96,87.2494 +627578,144.65,85.6911 +627579,143.41,84.1653 +627580,142.22,82.6688 +627581,144.57,87.2963 +627582,143.3,85.7227 +627583,142.09,84.1812 +627584,140.93,82.6686 +627585,143.19,87.342 +627586,141.95,85.7538 +627587,140.78,84.1974 +627588,139.65,82.6695 +627589,141.81,87.3864 +627590,140.6,85.7846 +627591,139.46,84.214 +627592,138.36,82.6716 +627593,140.42,87.4296 +627594,139.25,85.8149 +627595,138.14,84.231 +627596,137.08,82.6749 +627597,139.03,87.4715 +627598,137.9,85.8448 +627599,136.83,84.2484 +627600,135.8,82.6794 +627601,137.65,87.5122 +627602,136.55,85.8743 +627603,135.51,84.2662 +627604,134.52,82.6852 +627605,136.26,87.5516 +627606,135.2,85.9033 +627607,134.19,84.2844 +627608,133.24,82.6921 +627609,134.87,87.5897 +627610,133.85,85.9319 +627611,132.88,84.303 +627612,131.96,82.7003 +627613,133.48,87.6265 +627614,132.49,85.9601 +627615,131.56,84.3221 +627616,130.68,82.7098 +627617,132.09,87.662 +627618,131.14,85.9879 +627619,130.25,84.3415 +627620,129.4,82.7205 +627621,130.7,87.6962 +627622,129.79,86.0152 +627623,128.93,84.3614 +627624,128.12,82.7325 +627625,129.3,87.7291 +627626,128.44,86.0421 +627627,127.62,84.3817 +627628,126.84,82.7458 +627629,127.91,87.7607 +627630,127.08,86.0685 +627631,126.3,84.4024 +627632,125.57,82.7603 +627633,126.52,87.791 +627634,125.73,86.0945 +627635,124.99,84.4236 +627636,124.29,82.7762 +627637,125.12,87.8199 +627638,124.37,86.1201 +627639,123.67,84.4452 +627640,123.01,82.7933 +627641,123.73,87.8475 +627642,123.02,86.1452 +627643,122.36,84.4672 +627644,121.74,82.8118 +627645,122.33,87.8738 +627646,121.67,86.1699 +627647,121.04,84.4896 +627648,120.46,82.8315 +627649,120.94,87.8987 +627650,120.31,86.1941 +627651,119.73,84.5125 +627652,119.19,82.8526 +627653,119.54,87.9224 +627654,118.96,86.2179 +627655,118.42,84.5358 +627656,117.91,82.8749 +627657,118.15,87.9447 +627658,117.6,86.2412 +627659,117.1,84.5596 +627660,116.64,82.8986 +627661,116.75,87.9656 +627662,116.25,86.264 +627663,115.79,84.5837 +627664,115.36,82.9236 +627665,115.35,87.9853 +627666,114.89,86.2865 +627667,114.47,84.6083 +627668,114.09,82.9499 +627669,113.96,88.0036 +627670,113.54,86.3084 +627671,113.16,84.6334 +627672,112.82,82.9775 +627673,112.56,88.0205 +627674,112.18,86.3299 +627675,111.85,84.6588 +627676,111.54,83.0065 +627677,111.16,88.0362 +627678,110.83,86.351 +627679,110.53,84.6847 +627680,110.27,83.0368 +627681,109.76,88.0506 +627682,109.47,86.3717 +627683,109.22,84.7111 +627684,109,83.0683 +627685,108.37,88.0636 +627686,108.12,86.3918 +627687,107.9,84.7378 +627688,107.73,83.1012 +627689,106.97,88.0753 +627690,106.76,86.4116 +627691,106.59,84.765 +627692,106.45,83.1354 +627693,105.57,88.0858 +627694,105.41,86.4309 +627695,105.28,84.7926 +627696,105.18,83.1709 +627697,104.17,88.0949 +627698,104.05,86.4497 +627699,103.96,84.8207 +627700,103.91,83.2077 +627701,102.77,88.1027 +627702,102.69,86.4682 +627703,102.65,84.8492 +627704,102.64,83.2458 +627705,101.37,88.1093 +627706,101.34,86.4861 +627707,101.33,84.878 +627708,101.36,83.2851 +627709,99.976,88.1146 +627710,99.982,86.5037 +627711,100.02,84.9073 +627712,100.09,83.3258 +627713,98.578,88.1187 +627714,98.626,86.5208 +627715,98.707,84.9371 +627716,98.817,83.3677 +627717,97.18,88.1215 +627718,97.27,86.5375 +627719,97.392,84.9672 +627720,97.544,83.4109 +627721,95.782,88.123 +627722,95.915,86.5538 +627723,96.078,84.9977 +627724,96.271,83.4553 +627725,94.384,88.1234 +627726,94.559,86.5697 +627727,94.764,85.0287 +627728,94.997,83.501 +627729,92.987,88.1225 +627730,93.203,86.5851 +627731,93.449,85.06 +627732,93.724,83.5479 +627733,91.589,88.1204 +627734,91.848,86.6001 +627735,92.135,85.0918 +627736,92.45,83.596 +627737,90.192,88.1171 +627738,90.492,86.6147 +627739,90.82,85.1239 +627740,91.175,83.6454 +627741,88.795,88.1126 +627742,89.136,86.6289 +627743,89.505,85.1564 +627744,89.901,83.696 +627745,87.399,88.107 +627746,87.781,86.6427 +627747,88.19,85.1893 +627748,88.626,83.7477 +627749,86.003,88.1002 +627750,86.425,86.6562 +627751,86.875,85.2226 +627752,87.351,83.8006 +627753,84.607,88.0923 +627754,85.07,86.6692 +627755,85.56,85.2563 +627756,86.075,83.8547 +627757,83.212,88.0833 +627758,83.715,86.6818 +627759,84.244,85.2903 +627760,84.799,83.9099 +627761,81.817,88.0732 +627762,82.36,86.6941 +627763,82.928,85.3247 +627764,83.522,83.9662 +627765,80.423,88.062 +627766,81.005,86.706 +627767,81.613,85.3595 +627768,82.245,84.0237 +627769,79.029,88.0497 +627770,79.65,86.7175 +627771,80.296,85.3946 +627772,80.967,84.0823 +627773,77.635,88.0364 +627774,78.296,86.7286 +627775,78.98,85.43 +627776,79.689,84.1419 +627777,76.243,88.022 +627778,76.941,86.7394 +627779,77.663,85.4658 +627780,78.41,84.2026 +627781,74.851,88.0067 +627782,75.587,86.7499 +627783,76.347,85.502 +627784,77.13,84.2643 +627785,73.459,87.9903 +627786,74.233,86.76 +627787,75.03,85.5384 +627788,75.85,84.3271 +627789,72.068,87.973 +627790,72.879,86.7698 +627791,73.712,85.5752 +627792,74.569,84.3909 +627793,70.678,87.9548 +627794,71.525,86.7792 +627795,72.395,85.6123 +627796,73.288,84.4556 +627797,69.289,87.9356 +627798,70.171,86.7883 +627799,71.077,85.6497 +627800,72.005,84.5213 +627801,67.9,87.9155 +627802,68.818,86.7971 +627803,69.759,85.6874 +627804,70.722,84.588 +627805,66.513,87.8945 +627806,67.465,86.8056 +627807,68.44,85.7254 +627808,69.438,84.6556 +627809,65.126,87.8726 +627810,66.112,86.8138 +627811,67.121,85.7637 +627812,68.154,84.724 +627813,63.739,87.8499 +627814,64.759,86.8216 +627815,65.802,85.8023 +627816,66.868,84.7934 +627817,62.354,87.8264 +627818,63.407,86.8292 +627819,64.483,85.8411 +627820,65.582,84.8636 +627821,60.969,87.8021 +627822,62.055,86.8366 +627823,63.163,85.8802 +627824,64.295,84.9346 +627825,59.586,87.777 +627826,60.703,86.8436 +627827,61.843,85.9195 +627828,63.006,85.0064 +627829,58.203,87.7512 +627830,59.351,86.8504 +627831,60.523,85.9591 +627832,61.717,85.079 +627833,56.821,87.7247 +627834,58,86.8569 +627835,59.202,85.9989 +627836,60.427,85.1524 +627837,55.441,87.6974 +627838,56.649,86.8632 +627839,57.881,86.039 +627840,59.136,85.2264 +627841,54.061,87.6695 +627842,55.298,86.8693 +627843,56.559,86.0793 +627844,57.844,85.3012 +627845,52.682,87.6409 +627846,53.947,86.8751 +627847,55.237,86.1198 +627848,56.551,85.3767 +627849,51.304,87.6118 +627850,52.597,86.8807 +627851,53.915,86.1604 +627852,55.257,85.4528 +627853,49.927,87.582 +627854,51.248,86.8861 +627855,52.592,86.2013 +627856,53.962,85.5295 +627857,48.552,87.5517 +627858,49.898,86.8913 +627859,51.269,86.2424 +627860,52.665,85.6068 +627861,47.177,87.5208 +627862,48.549,86.8962 +627863,49.946,86.2836 +627864,51.368,85.6846 +627865,45.804,87.4894 +627866,47.2,86.901 +627867,48.622,86.325 +627868,50.069,85.763 +627869,44.431,87.4575 +627870,45.851,86.9057 +627871,47.298,86.3666 +627872,48.77,85.8419 +627873,43.06,87.4252 +627874,44.503,86.9101 +627875,45.973,86.4083 +627876,47.469,85.9213 +627877,41.69,87.3925 +627878,43.155,86.9144 +627879,44.648,86.4501 +627880,46.167,86.0011 +627881,40.321,87.3593 +627882,41.808,86.9186 +627883,43.322,86.492 +627884,44.864,86.0814 +627885,38.953,87.3258 +627886,40.461,86.9226 +627887,41.996,86.5341 +627888,43.559,86.162 +627889,37.587,87.2919 +627890,39.114,86.9265 +627891,40.67,86.5763 +627892,42.254,86.243 +627893,36.222,87.2577 +627894,37.768,86.9303 +627895,39.343,86.6186 +627896,40.947,86.3243 +627897,34.858,87.2232 +627898,36.422,86.934 +627899,38.015,86.6609 +627900,39.638,86.4059 +627901,33.495,87.1885 +627902,35.076,86.9375 +627903,36.688,86.7033 +627904,38.329,86.4878 +627905,32.133,87.1535 +627906,33.731,86.941 +627907,35.359,86.7458 +627908,37.018,86.5699 +627909,30.773,87.1183 +627910,32.386,86.9444 +627911,34.03,86.7884 +627912,35.706,86.6522 +627913,29.414,87.083 +627914,31.042,86.9477 +627915,32.701,86.831 +627916,34.393,86.7346 +627917,28.056,87.0475 +627918,29.698,86.951 +627919,31.372,86.8736 +627920,33.078,86.8172 +627921,26.699,87.0119 +627922,28.354,86.9542 +627923,30.041,86.9162 +627924,31.762,86.9 +627925,25.344,86.9762 +627926,27.011,86.9574 +627927,28.711,86.9589 +627928,30.444,86.9827 +627929,23.99,86.9405 +627930,25.668,86.9606 +627931,27.379,87.0015 +627932,29.126,87.0656 +627933,22.638,86.9047 +627934,24.326,86.9637 +627935,26.048,87.0442 +627936,27.805,87.1484 +627937,21.286,86.8689 +627938,22.984,86.9668 +627939,24.716,87.0868 +627940,26.484,87.2312 +627941,19.936,86.8332 +627942,21.642,86.9699 +627943,23.383,87.1294 +627944,25.161,87.314 +627945,18.588,86.7976 +627946,20.301,86.9731 +627947,22.05,87.172 +627948,23.837,87.3966 +627949,17.24,86.762 +627950,18.96,86.9762 +627951,20.716,87.2145 +627952,22.511,87.4792 +627953,15.894,86.7266 +627954,17.62,86.9794 +627955,19.382,87.2569 +627956,21.184,87.5616 +627957,14.549,86.6913 +627958,16.28,86.9826 +627959,18.048,87.2993 +627960,19.855,87.6438 +627961,13.206,86.6562 +627962,14.94,86.9859 +627963,16.712,87.3416 +627964,18.525,87.7258 +627965,11.864,86.6213 +627966,13.601,86.9893 +627967,15.377,87.3838 +627968,17.194,87.8075 +627969,10.523,86.5866 +627970,12.263,86.9927 +627971,14.041,87.4259 +627972,15.861,87.889 +627973,9.184,86.5522 +627974,10.924,86.9962 +627975,12.704,87.4679 +627976,14.527,87.9702 +627977,7.846,86.5181 +627978,9.5864,86.9997 +627979,11.367,87.5097 +627980,13.191,88.051 +627981,6.5093,86.4844 +627982,8.249,87.0034 +627983,10.029,87.5515 +627984,11.854,88.1314 +627985,5.1739,86.451 +627986,6.912,87.0072 +627987,8.6911,87.593 +627988,10.515,88.2115 +627989,3.8398,86.4179 +627990,5.5754,87.0111 +627991,7.3525,87.6345 +627992,9.1754,88.2911 +627993,2.5071,86.3853 +627994,4.2392,87.0152 +627995,6.0133,87.6757 +627996,7.8339,88.3702 +627997,1.1757,86.3532 +627998,2.9035,87.0194 +627999,4.6737,87.7168 +628000,6.4911,88.4488 +628001,359.85,86.3215 +628002,1.5681,87.0237 +628003,3.3335,87.7577 +628004,5.1468,88.5269 +628005,358.52,86.2903 +628006,0.23317,87.0282 +628007,1.9929,87.7984 +628008,3.8011,88.6045 +628009,357.19,86.2596 +628010,358.9,87.0328 +628011,0.65171,87.8389 +628012,2.454,88.6814 +628013,355.86,86.2295 +628014,357.56,87.0377 +628015,359.31,87.8792 +628016,1.1055,88.7577 +628017,354.54,86.1999 +628018,356.23,87.0427 +628019,357.97,87.9193 +628020,359.76,88.8334 +628021,353.21,86.171 +628022,354.9,87.0479 +628023,356.63,87.9591 +628024,358.4,88.9084 +628025,351.89,86.1427 +628026,353.56,87.0533 +628027,355.28,87.9987 +628028,357.05,88.9827 +628029,350.57,86.115 +628030,352.23,87.0589 +628031,353.94,88.038 +628032,355.7,89.05629 +628033,349.25,86.0881 +628034,350.9,87.0648 +628035,352.59,88.0771 +628036,354.34,89.12908 +628037,347.93,86.0618 +628038,349.57,87.0709 +628039,351.25,88.1159 +628040,352.98,89.20109 +628041,346.62,86.0363 +628042,348.24,87.0772 +628043,349.9,88.1544 +628044,351.63,89.27228 +628045,345.3,86.0115 +628046,346.91,87.0837 +628047,348.56,88.1926 +628048,350.27,89.34262 +628049,343.98,85.9876 +628050,345.58,87.0905 +628051,347.21,88.2306 +628052,348.91,89.41209 +628053,342.67,85.9644 +628054,344.24,87.0976 +628055,345.87,88.2682 +628056,347.54,89.48067 +628057,341.36,85.9421 +628058,342.92,87.105 +628059,344.52,88.3055 +628060,346.18,89.54832 +628061,340.05,85.9206 +628062,341.59,87.1126 +628063,343.17,88.3425 +628064,344.82,89.61503 +628065,338.74,85.9 +628066,340.26,87.1205 +628067,341.83,88.3792 +628068,343.45,89.68076 +628069,337.43,85.8803 +628070,338.93,87.1287 +628071,340.48,88.4155 +628072,342.08,89.7455 +628073,336.12,85.8615 +628074,337.6,87.1372 +628075,339.13,88.4515 +628076,340.71,89.80922 +628077,334.81,85.8437 +628078,336.27,87.146 +628079,337.78,88.4872 +628080,339.34,89.87189 +628081,333.51,85.8268 +628082,334.94,87.1552 +628083,336.43,88.5224 +628084,337.97,89.933507 +628085,332.2,85.8109 +628086,333.62,87.1646 +628087,335.08,88.5574 +628088,336.6,89.9940342 +628089,330.9,85.7961 +628090,332.29,87.1744 +628091,333.73,88.5919 +628092,335.23,90.053454 +628093,329.59,85.7822 +628094,330.96,87.1845 +628095,332.38,88.626 +628096,333.85,90.11175 +628097,328.29,85.7694 +628098,329.64,87.195 +628099,331.03,88.6598 +628100,332.48,90.16889 +628101,326.99,85.7577 +628102,328.31,87.2058 +628103,329.68,88.6932 +628104,331.1,90.22487 +628105,325.69,85.747 +628106,326.98,87.2169 +628107,328.32,88.7262 +628108,329.72,90.27967 +628109,324.39,85.7375 +628110,325.66,87.2285 +628111,326.97,88.7587 +628112,328.34,90.33326 +628113,323.09,85.729 +628114,324.33,87.2404 +628115,325.62,88.7909 +628116,326.96,90.38563 +628117,321.8,85.7217 +628118,323.01,87.2526 +628119,324.27,88.8226 +628120,325.58,90.43676 +628121,320.5,85.7156 +628122,321.68,87.2652 +628123,322.91,88.8539 +628124,324.2,90.48664 +628125,319.2,85.7106 +628126,320.36,87.2783 +628127,321.56,88.8848 +628128,322.81,90.53526 +628129,317.91,85.7068 +628130,319.03,87.2917 +628131,320.2,88.9153 +628132,321.43,90.58259 +628133,316.62,85.7042 +628134,317.71,87.3054 +628135,318.85,88.9453 +628136,320.05,90.62862 +628137,315.32,85.7028 +628138,316.39,87.3196 +628139,317.5,88.9749 +628140,318.66,90.67334 +628141,314.03,85.7026 +628142,315.06,87.3342 +628143,316.14,89.00398 +628144,317.27,90.71674 +628145,312.74,85.7037 +628146,313.74,87.3492 +628147,314.78,89.03266 +628148,315.88,90.75881 +628149,311.45,85.706 +628150,312.42,87.3646 +628151,313.43,89.06088 +628152,314.5,90.79953 +628153,310.16,85.7096 +628154,311.09,87.3804 +628155,312.07,89.08864 +628156,313.11,90.8389 +628157,308.87,85.7144 +628158,309.77,87.3966 +628159,310.72,89.11594 +628160,311.72,90.8769 +628161,307.58,85.7205 +628162,308.45,87.4132 +628163,309.36,89.14277 +628164,310.32,90.91352 +628165,306.29,85.7279 +628166,307.13,87.4303 +628167,308,89.16913 +628168,308.93,90.94877 +628169,305,85.7366 +628170,305.8,87.4478 +628171,306.65,89.19503 +628172,307.54,90.98262 +628173,303.72,85.7466 +628174,304.48,87.4657 +628175,305.29,89.22045 +628176,306.15,91.0151 +628177,302.43,85.7579 +628178,303.16,87.484 +628179,303.93,89.24539 +628180,304.75,91.0461 +628181,301.14,85.7706 +628182,301.84,87.5028 +628183,302.57,89.26986 +628184,303.36,91.0758 +628185,299.86,85.7845 +628186,300.52,87.522 +628187,301.22,89.29384 +628188,301.96,91.104 +628189,298.57,85.7998 +628190,299.19,87.5416 +628191,299.86,89.31735 +628192,300.57,91.1308 +628193,297.29,85.8164 +628194,297.87,87.5616 +628195,298.5,89.34037 +628196,299.17,91.1562 +628197,296,85.8344 +628198,296.55,87.5821 +628199,297.14,89.36291 +628200,297.78,91.1802 +628201,294.72,85.8537 +628202,295.23,87.6031 +628203,295.78,89.38496 +628204,296.38,91.2028 +628205,293.43,85.8744 +628206,293.91,87.6244 +628207,294.42,89.40653 +628208,294.98,91.2239 +628209,292.15,85.8964 +628210,292.59,87.6462 +628211,293.06,89.42762 +628212,293.58,91.2436 +628213,290.87,85.9197 +628214,291.27,87.6684 +628215,291.7,89.44821 +628216,292.18,91.2619 +628217,289.58,85.9444 +628218,289.95,87.6911 +628219,290.35,89.46833 +628220,290.79,91.2788 +628221,288.3,85.9705 +628222,288.63,87.7142 +628223,288.99,89.48795 +628224,289.39,91.2943 +628225,287.02,85.9979 +628226,287.3,87.7378 +628227,287.63,89.5071 +628228,287.99,91.3083 +628229,285.74,86.0266 +628230,285.98,87.7618 +628231,286.27,89.52576 +628232,286.59,91.3209 +628233,284.45,86.0567 +628234,284.66,87.7862 +628235,284.91,89.54393 +628236,285.19,91.3322 +628237,283.17,86.0882 +628238,283.34,87.811 +628239,283.55,89.56163 +628240,283.79,91.342 +628241,281.89,86.1209 +628242,282.02,87.8363 +628243,282.19,89.57884 +628244,282.39,91.3504 +628245,280.61,86.155 +628246,280.7,87.862 +628247,280.83,89.59558 +628248,280.99,91.3575 +628249,279.32,86.1905 +628250,279.38,87.8881 +628251,279.47,89.61184 +628252,279.59,91.3632 +628253,278.04,86.2272 +628254,278.06,87.9147 +628255,278.11,89.62763 +628256,278.19,91.3674 +628257,276.76,86.2653 +628258,276.74,87.9417 +628259,276.75,89.64295 +628260,276.79,91.3704 +628261,275.48,86.3047 +628262,275.42,87.9691 +628263,275.39,89.6578 +628264,275.39,91.372 +628265,274.19,86.3454 +628266,274.09,87.9969 +628267,274.03,89.67218 +628268,273.99,91.3722 +628269,272.91,86.3874 +628270,272.77,88.0252 +628271,272.67,89.6861 +628272,272.59,91.3711 +628273,271.63,86.4307 +628274,271.45,88.0538 +628275,271.31,89.69957 +628276,271.19,91.3687 +628277,270.34,86.4752 +628278,270.13,88.0829 +628279,269.95,89.71257 +628280,269.79,91.365 +628281,269.06,86.521 +628282,268.81,88.1123 +628283,268.59,89.72513 +628284,268.39,91.3599 +628285,267.78,86.5681 +628286,267.49,88.1422 +628287,267.23,89.73724 +628288,266.99,91.3536 +628289,266.49,86.6164 +628290,266.17,88.1724 +628291,265.87,89.74891 +628292,265.59,91.3461 +628293,265.21,86.6659 +628294,264.84,88.2031 +628295,264.51,89.76014 +628296,264.19,91.3372 +628297,263.92,86.7167 +628298,263.52,88.2341 +628299,263.15,89.77093 +628300,262.79,91.3272 +628301,262.64,86.7686 +628302,262.2,88.2655 +628303,261.79,89.7813 +628304,261.4,91.3159 +628305,261.35,86.8218 +628306,260.88,88.2973 +628307,260.43,89.79124 +628308,260,91.3034 +628309,260.07,86.8761 +628310,259.56,88.3294 +628311,259.07,89.80077 +628312,258.6,91.2897 +628313,258.78,86.9316 +628314,258.23,88.362 +628315,257.71,89.80988 +628316,257.2,91.2749 +628317,257.49,86.9882 +628318,256.91,88.3948 +628319,256.35,89.81859 +628320,255.81,91.2589 +628321,256.21,87.0459 +628322,255.59,88.4281 +628323,254.99,89.82689 +628324,254.41,91.2418 +628325,254.92,87.1048 +628326,254.26,88.4617 +628327,253.63,89.83481 +628328,253.02,91.2235 +628329,253.63,87.1647 +628330,252.94,88.4956 +628331,252.27,89.84233 +628332,251.62,91.2042 +628333,252.34,87.2257 +628334,251.62,88.5298 +628335,250.91,89.84947 +628336,250.23,91.1838 +628337,251.05,87.2877 +628338,250.29,88.5644 +628339,249.55,89.85624 +628340,248.83,91.1623 +628341,249.76,87.3508 +628342,248.97,88.5993 +628343,248.19,89.86264 +628344,247.44,91.1399 +628345,248.47,87.4149 +628346,247.64,88.6345 +628347,246.83,89.86868 +628348,246.05,91.1164 +628349,247.18,87.48 +628350,246.32,88.67 +628351,245.48,89.87437 +628352,244.65,91.0919 +628353,245.88,87.546 +628354,244.99,88.7059 +628355,244.12,89.87971 +628356,243.26,91.0665 +628357,244.59,87.613 +628358,243.67,88.742 +628359,242.76,89.88471 +628360,241.87,91.0401 +628361,243.3,87.6809 +628362,242.34,88.7784 +628363,241.4,89.88938 +628364,240.48,91.0128 +628365,242,87.7497 +628366,241.02,88.815 +628367,240.05,89.89373 +628368,239.09,90.9846 +628369,240.71,87.8194 +628370,239.69,88.8519 +628371,238.69,89.89777 +628372,237.71,90.95556 +628373,239.41,87.8899 +628374,238.36,88.8891 +628375,237.33,89.901493 +628376,236.32,90.92567 +628377,238.11,87.9612 +628378,237.04,88.9266 +628379,235.98,89.904923 +628380,234.93,90.89497 +628381,236.81,88.0334 +628382,235.71,88.9643 +628383,234.62,89.908063 +628384,233.55,90.86348 +628385,235.51,88.1063 +628386,234.38,89.00217 +628387,233.26,89.910922 +628388,232.16,90.83123 +628389,234.21,88.18 +628390,233.05,89.0403 +628391,231.91,89.91351 +628392,230.78,90.79824 +628393,232.91,88.2543 +628394,231.72,89.07865 +628395,230.55,89.915834 +628396,229.4,90.76455 +628397,231.61,88.3294 +628398,230.4,89.1172 +628399,229.2,89.917904 +628400,228.01,90.73017 +628401,230.31,88.4052 +628402,229.07,89.15595 +628403,227.84,89.919729 +628404,226.63,90.69514 +628405,229,88.4815 +628406,227.74,89.19488 +628407,226.49,89.921318 +628408,225.25,90.65948 +628409,227.7,88.5585 +628410,226.41,89.23399 +628411,225.13,89.92268 +628412,223.87,90.62322 +628413,226.39,88.6361 +628414,225.08,89.27327 +628415,223.78,89.923826 +628416,222.5,90.58639 +628417,225.09,88.7142 +628418,223.75,89.3127 +628419,222.43,89.924765 +628420,221.12,90.54902 +628421,223.78,88.7928 +628422,222.42,89.35228 +628423,221.07,89.925505 +628424,219.74,90.51114 +628425,222.47,88.872 +628426,221.08,89.392 +628427,219.72,89.926058 +628428,218.37,90.47278 +628429,221.16,88.9516 +628430,219.75,89.43184 +628431,218.37,89.926432 +628432,217,90.43396 +628433,219.85,89.03157 +628434,218.42,89.4718 +628435,217.01,89.926638 +628436,215.62,90.39472 +628437,218.53,89.11198 +628438,217.09,89.51187 +628439,215.66,89.926686 +628440,214.25,90.35508 +628441,217.22,89.19276 +628442,215.76,89.55203 +628443,214.31,89.926585 +628444,212.88,90.31508 +628445,215.9,89.27388 +628446,214.42,89.59227 +628447,212.96,89.926347 +628448,211.51,90.27474 +628449,214.59,89.35531 +628450,213.09,89.6326 +628451,211.61,89.92598 +628452,210.15,90.2341 +628453,213.27,89.43701 +628454,211.75,89.67298 +628455,210.26,89.925495 +628456,208.78,90.19319 +628457,211.95,89.51895 +628458,210.42,89.71342 +628459,208.91,89.924903 +628460,207.41,90.15203 +628461,210.63,89.60109 +628462,209.08,89.7539 +628463,207.56,89.924214 +628464,206.05,90.11066 +628465,209.31,89.68342 +628466,207.75,89.79441 +628467,206.21,89.923437 +628468,204.69,90.069101 +628469,207.99,89.76588 +628470,206.41,89.83494 +628471,204.86,89.922584 +628472,203.32,90.027393 +628473,206.66,89.84846 +628474,205.08,89.87549 +628475,203.51,89.921665 +628476,201.96,89.985563 +628477,205.34,89.931117 +628478,203.74,89.916028 +628479,202.16,89.920691 +628480,200.6,89.943643 +628481,204.01,90.013817 +628482,202.4,89.956558 +628483,200.81,89.919671 +628484,199.25,89.901662 +628485,202.68,90.096529 +628486,201.06,89.9970661 +628487,199.47,89.918616 +628488,197.89,89.85965 +628489,201.35,90.17922 +628490,199.72,90.03754 +628491,198.12,89.917537 +628492,196.53,89.81764 +628493,200.02,90.26185 +628494,198.39,90.07797 +628495,196.77,89.916443 +628496,195.18,89.77567 +628497,198.69,90.3444 +628498,197.05,90.11834 +628499,195.42,89.915346 +628500,193.83,89.73375 +628501,197.36,90.42682 +628502,195.71,90.15865 +628503,194.08,89.914257 +628504,192.47,89.69193 +628505,196.03,90.50909 +628506,194.37,90.19888 +628507,192.73,89.913184 +628508,191.12,89.65024 +628509,194.69,90.59117 +628510,193.03,90.23902 +628511,191.39,89.912139 +628512,189.77,89.6087 +628513,193.35,90.67303 +628514,191.68,90.27907 +628515,190.04,89.911132 +628516,188.43,89.56734 +628517,192.02,90.75464 +628518,190.34,90.319 +628519,188.7,89.910174 +628520,187.08,89.5262 +628521,190.68,90.83595 +628522,189,90.35881 +628523,187.35,89.909275 +628524,185.73,89.48531 +628525,189.34,90.91695 +628526,187.66,90.39849 +628527,186.01,89.908444 +628528,184.39,89.44469 +628529,187.99,90.99758 +628530,186.32,90.43803 +628531,184.67,89.907692 +628532,183.05,89.40437 +628533,186.65,91.0778 +628534,184.97,90.47741 +628535,183.32,89.90703 +628536,181.7,89.36439 +628537,185.3,91.1577 +628538,183.63,90.51663 +628539,181.98,89.906468 +628540,180.36,89.32478 +628541,183.96,91.237 +628542,182.28,90.55567 +628543,180.64,89.906014 +628544,179.02,89.28556 +628545,182.61,91.3159 +628546,180.94,90.59453 +628547,179.3,89.905681 +628548,177.69,89.24677 +628549,181.26,91.3943 +628550,179.59,90.6332 +628551,177.96,89.905476 +628552,176.35,89.20843 +628553,179.91,91.4721 +628554,178.25,90.67166 +628555,176.62,89.905411 +628556,175.01,89.17056 +628557,178.56,91.5494 +628558,176.9,90.7099 +628559,175.27,89.905494 +628560,173.68,89.13321 +628561,177.21,91.626 +628562,175.55,90.74791 +628563,173.93,89.905736 +628564,172.35,89.0964 +628565,175.85,91.702 +628566,174.21,90.78569 +628567,172.59,89.906147 +628568,171.01,89.06016 +628569,174.5,91.7773 +628570,172.86,90.82322 +628571,171.26,89.906734 +628572,169.68,89.0245 +628573,173.14,91.8519 +628574,171.51,90.8605 +628575,169.92,89.907509 +628576,168.35,88.9895 +628577,171.78,91.9257 +628578,170.16,90.8975 +628579,168.58,89.90848 +628580,167.03,88.9551 +628581,170.42,91.9988 +628582,168.81,90.93424 +628583,167.24,89.909656 +628584,165.7,88.9214 +628585,169.06,92.0711 +628586,167.46,90.97068 +628587,165.9,89.911046 +628588,164.37,88.8884 +628589,167.7,92.1426 +628590,166.11,91.0068 +628591,164.56,89.912659 +628592,163.05,88.8561 +628593,166.34,92.2132 +628594,164.76,91.0427 +628595,163.23,89.914505 +628596,161.73,88.8246 +628597,164.97,92.283 +628598,163.41,91.0782 +628599,161.89,89.916591 +628600,160.4,88.7938 +628601,163.61,92.3518 +628602,162.06,91.1134 +628603,160.55,89.918926 +628604,159.08,88.7639 +628605,162.24,92.4197 +628606,160.71,91.1483 +628607,159.22,89.921518 +628608,157.76,88.7348 +628609,160.87,92.4866 +628610,159.36,91.1828 +628611,157.88,89.924376 +628612,156.44,88.7065 +628613,159.5,92.5525 +628614,158,91.217 +628615,156.55,89.927508 +628616,155.12,88.6792 +628617,158.13,92.6174 +628618,156.65,91.2509 +628619,155.21,89.930922 +628620,153.81,88.6527 +628621,156.76,92.6813 +628622,155.3,91.2843 +628623,153.88,89.934625 +628624,152.49,88.6271 +628625,155.39,92.744 +628626,153.94,91.3174 +628627,152.54,89.938625 +628628,151.18,88.6025 +628629,154.01,92.8057 +628630,152.59,91.3501 +628631,151.21,89.94293 +628632,149.86,88.5789 +628633,152.64,92.8663 +628634,151.23,91.3824 +628635,149.87,89.947547 +628636,148.55,88.5562 +628637,151.26,92.9257 +628638,149.88,91.4144 +628639,148.54,89.952482 +628640,147.24,88.5346 +628641,149.88,92.984 +628642,148.52,91.4459 +628643,147.21,89.957743 +628644,145.93,88.514 +628645,148.51,93.0411 +628646,147.17,91.477 +628647,145.87,89.963337 +628648,144.62,88.4944 +628649,147.13,93.097 +628650,145.81,91.5077 +628651,144.54,89.96927 +628652,143.31,88.476 +628653,145.75,93.1516 +628654,144.45,91.5379 +628655,143.21,89.975549 +628656,142,88.4586 +628657,144.36,93.205 +628658,143.1,91.5678 +628659,141.88,89.982179 +628660,140.69,88.4423 +628661,142.98,93.2571 +628662,141.74,91.5971 +628663,140.54,89.989167 +628664,139.39,88.4271 +628665,141.6,93.3079 +628666,140.38,91.6261 +628667,139.21,89.9965192 +628668,138.08,88.4131 +628669,140.21,93.3575 +628670,139.02,91.6546 +628671,137.88,90.0042402 +628672,136.78,88.4002 +628673,138.83,93.4057 +628674,137.67,91.6826 +628675,136.55,90.012336 +628676,135.47,88.3886 +628677,137.44,93.4525 +628678,136.31,91.7102 +628679,135.22,90.020811 +628680,134.17,88.3781 +628681,136.05,93.498 +628682,134.95,91.7373 +628683,133.89,90.029671 +628684,132.87,88.3688 +628685,134.67,93.5422 +628686,133.59,91.7639 +628687,132.56,90.038921 +628688,131.57,88.3608 +628689,133.28,93.5849 +628690,132.23,91.7901 +628691,131.23,90.048565 +628692,130.27,88.3539 +628693,131.89,93.6263 +628694,130.87,91.8158 +628695,129.9,90.058608 +628696,128.96,88.3484 +628697,130.5,93.6662 +628698,129.51,91.841 +628699,128.57,90.069053 +628700,127.67,88.3441 +628701,129.1,93.7047 +628702,128.15,91.8657 +628703,127.24,90.079906 +628704,126.37,88.341 +628705,127.71,93.7418 +628706,126.79,91.8899 +628707,125.91,90.091168 +628708,125.07,88.3393 +628709,126.32,93.7774 +628710,125.43,91.9136 +628711,124.58,90.10284 +628712,123.77,88.3388 +628713,124.93,93.8115 +628714,124.07,91.9368 +628715,123.25,90.11494 +628716,122.47,88.3397 +628717,123.53,93.8442 +628718,122.71,91.9595 +628719,121.92,90.12745 +628720,121.18,88.3419 +628721,122.14,93.8755 +628722,121.34,91.9817 +628723,120.59,90.14039 +628724,119.88,88.3454 +628725,120.74,93.9052 +628726,119.98,92.0033 +628727,119.27,90.15375 +628728,118.59,88.3502 +628729,119.34,93.9334 +628730,118.62,92.0245 +628731,117.94,90.16754 +628732,117.29,88.3564 +628733,117.95,93.9602 +628734,117.26,92.0452 +628735,116.61,90.18176 +628736,116,88.3639 +628737,116.55,93.9854 +628738,115.9,92.0653 +628739,115.28,90.19641 +628740,114.7,88.3728 +628741,115.15,94.0091 +628742,114.53,92.0849 +628743,113.95,90.2115 +628744,113.41,88.383 +628745,113.75,94.0314 +628746,113.17,92.104 +628747,112.62,90.22702 +628748,112.11,88.3946 +628749,112.36,94.0521 +628750,111.81,92.1226 +628751,111.3,90.24297 +628752,110.82,88.4076 +628753,110.96,94.0713 +628754,110.44,92.1406 +628755,109.97,90.25937 +628756,109.53,88.422 +628757,109.56,94.0889 +628758,109.08,92.1581 +628759,108.64,90.2762 +628760,108.23,88.4377 +628761,108.16,94.1051 +628762,107.72,92.1751 +628763,107.31,90.29347 +628764,106.94,88.4548 +628765,106.76,94.1197 +628766,106.35,92.1916 +628767,105.99,90.31117 +628768,105.65,88.4733 +628769,105.36,94.1329 +628770,104.99,92.2076 +628771,104.66,90.32932 +628772,104.36,88.4931 +628773,103.96,94.1445 +628774,103.63,92.223 +628775,103.33,90.3479 +628776,103.07,88.5143 +628777,102.56,94.1546 +628778,102.26,92.2379 +628779,102,90.36692 +628780,101.77,88.537 +628781,101.15,94.1632 +628782,100.9,92.2523 +628783,100.68,90.38638 +628784,100.48,88.5609 +628785,99.753,94.1703 +628786,99.534,92.2662 +628787,99.348,90.40628 +628788,99.191,88.5863 +628789,98.352,94.1759 +628790,98.169,92.2795 +628791,98.02,90.4266 +628792,97.9,88.613 +628793,96.95,94.18 +628794,96.805,92.2923 +628795,96.693,90.44737 +628796,96.608,88.6411 +628797,95.549,94.1827 +628798,95.441,92.3046 +628799,95.365,90.46856 +628800,95.317,88.6706 +628801,94.147,94.1838 +628802,94.077,92.3164 +628803,94.037,90.49018 +628804,94.025,88.7014 +628805,92.745,94.1835 +628806,92.712,92.3277 +628807,92.71,90.51223 +628808,92.734,88.7336 +628809,91.344,94.1817 +628810,91.348,92.3384 +628811,91.382,90.5347 +628812,91.442,88.7671 +628813,89.942,94.1785 +628814,89.984,92.3487 +628815,90.054,90.5576 +628816,90.15,88.802 +628817,88.54,94.1738 +628818,88.619,92.3585 +628819,88.726,90.58091 +628820,88.858,88.8382 +628821,87.139,94.1678 +628822,87.255,92.3677 +628823,87.398,90.60464 +628824,87.566,88.8757 +628825,85.738,94.1603 +628826,85.891,92.3765 +628827,86.07,90.62878 +628828,86.273,88.9146 +628829,84.337,94.1514 +628830,84.526,92.3847 +628831,84.742,90.65333 +628832,84.981,88.9547 +628833,82.936,94.1411 +628834,83.162,92.3925 +628835,83.414,90.67829 +628836,83.688,88.9962 +628837,81.535,94.1294 +628838,81.798,92.3998 +628839,82.085,90.70365 +628840,82.395,89.03889 +628841,80.135,94.1164 +628842,80.434,92.4066 +628843,80.757,90.7294 +628844,81.101,89.08289 +628845,78.734,94.102 +628846,79.07,92.4129 +628847,79.428,90.75555 +628848,79.807,89.12814 +628849,77.335,94.0863 +628850,77.706,92.4188 +628851,78.099,90.78208 +628852,78.513,89.17464 +628853,75.935,94.0693 +628854,76.342,92.4242 +628855,76.77,90.80899 +628856,77.218,89.22238 +628857,74.536,94.051 +628858,74.978,92.4291 +628859,75.441,90.83629 +628860,75.923,89.27133 +628861,73.137,94.0315 +628862,73.615,92.4336 +628863,74.112,90.86395 +628864,74.628,89.32148 +628865,71.739,94.0107 +628866,72.251,92.4376 +628867,72.782,90.89198 +628868,73.332,89.37282 +628869,70.341,93.9886 +628870,70.888,92.4412 +628871,71.453,90.92037 +628872,72.035,89.42534 +628873,68.944,93.9653 +628874,69.524,92.4444 +628875,70.123,90.94911 +628876,70.738,89.479 +628877,67.547,93.9409 +628878,68.161,92.4471 +628879,68.793,90.9782 +628880,69.441,89.5338 +628881,66.151,93.9152 +628882,66.798,92.4494 +628883,67.462,91.0076 +628884,68.142,89.58972 +628885,64.755,93.8884 +628886,65.435,92.4512 +628887,66.132,91.0374 +628888,66.844,89.64674 +628889,63.36,93.8605 +628890,64.073,92.4527 +628891,64.801,91.0675 +628892,65.544,89.70484 +628893,61.966,93.8315 +628894,62.71,92.4537 +628895,63.47,91.0979 +628896,64.244,89.764 +628897,60.572,93.8014 +628898,61.348,92.4544 +628899,62.139,91.1286 +628900,62.943,89.82419 +628901,59.179,93.7702 +628902,59.986,92.4547 +628903,60.807,91.1597 +628904,61.642,89.88541 +628905,57.786,93.738 +628906,58.624,92.4546 +628907,59.475,91.191 +628908,60.34,89.947618 +628909,56.395,93.7048 +628910,57.262,92.4541 +628911,58.143,91.2226 +628912,59.037,90.010801 +628913,55.004,93.6705 +628914,55.901,92.4532 +628915,56.811,91.2545 +628916,57.733,90.074934 +628917,53.613,93.6354 +628918,54.539,92.452 +628919,55.478,91.2867 +628920,56.429,90.13999 +628921,52.224,93.5993 +628922,53.178,92.4505 +628923,54.145,91.3192 +628924,55.124,90.20596 +628925,50.835,93.5623 +628926,51.817,92.4486 +628927,52.812,91.3519 +628928,53.818,90.2728 +628929,49.448,93.5244 +628930,50.457,92.4464 +628931,51.478,91.3848 +628932,52.511,90.3405 +628933,48.061,93.4857 +628934,49.097,92.4438 +628935,50.144,91.418 +628936,51.203,90.40902 +628937,46.675,93.4461 +628938,47.737,92.441 +628939,48.81,91.4515 +628940,49.894,90.47835 +628941,45.29,93.4057 +628942,46.377,92.4378 +628943,47.476,91.4851 +628944,48.585,90.54845 +628945,43.905,93.3646 +628946,45.017,92.4344 +628947,46.141,91.519 +628948,47.274,90.6193 +628949,42.522,93.3227 +628950,43.658,92.4306 +628951,44.805,91.553 +628952,45.963,90.69087 +628953,41.14,93.2802 +628954,42.299,92.4266 +628955,43.47,91.5873 +628956,44.65,90.76314 +628957,39.758,93.2369 +628958,40.941,92.4223 +628959,42.134,91.6217 +628960,43.337,90.83607 +628961,38.378,93.193 +628962,39.582,92.4178 +628963,40.798,91.6563 +628964,42.022,90.90964 +628965,36.999,93.1485 +628966,38.224,92.413 +628967,39.461,91.6911 +628968,40.707,90.98381 +628969,35.62,93.1033 +628970,36.867,92.408 +628971,38.124,91.726 +628972,39.39,91.0586 +628973,34.243,93.0577 +628974,35.509,92.4027 +628975,36.786,91.7611 +628976,38.073,91.1339 +628977,32.867,93.0114 +628978,34.152,92.3972 +628979,35.449,91.7963 +628980,36.754,91.2097 +628981,31.491,92.9647 +628982,32.796,92.3916 +628983,34.11,91.8317 +628984,35.434,91.286 +628985,30.117,92.9175 +628986,31.439,92.3857 +628987,32.772,91.8671 +628988,34.114,91.3628 +628989,28.744,92.8699 +628990,30.083,92.3796 +628991,31.433,91.9027 +628992,32.792,91.44 +628993,27.372,92.8219 +628994,28.728,92.3734 +628995,30.094,91.9383 +628996,31.469,91.5175 +628997,26.002,92.7735 +628998,27.372,92.367 +628999,28.754,91.974 +629000,30.145,91.5955 +629001,24.632,92.7248 +629002,26.017,92.3604 +629003,27.414,92.0098 +629004,28.819,91.6738 +629005,23.263,92.6757 +629006,24.663,92.3538 +629007,26.073,92.0457 +629008,27.493,91.7523 +629009,21.896,92.6264 +629010,23.308,92.3469 +629011,24.732,92.0816 +629012,26.165,91.8312 +629013,20.53,92.5768 +629014,21.954,92.34 +629015,23.39,92.1175 +629016,24.837,91.9103 +629017,19.165,92.527 +629018,20.601,92.3329 +629019,22.049,92.1535 +629020,23.507,91.9895 +629021,17.801,92.477 +629022,19.248,92.3257 +629023,20.706,92.1894 +629024,22.175,92.069 +629025,16.438,92.4269 +629026,17.895,92.3185 +629027,19.364,92.2254 +629028,20.843,92.1486 +629029,15.076,92.3767 +629030,16.542,92.3112 +629031,18.02,92.2614 +629032,19.51,92.2282 +629033,13.716,92.3263 +629034,15.19,92.3038 +629035,16.677,92.2973 +629036,18.175,92.308 +629037,12.357,92.276 +629038,13.838,92.2963 +629039,15.333,92.3333 +629040,16.839,92.3878 +629041,10.999,92.2255 +629042,12.487,92.2888 +629043,13.988,92.3692 +629044,15.502,92.4675 +629045,9.6421,92.1751 +629046,11.136,92.2812 +629047,12.643,92.405 +629048,14.163,92.5473 +629049,8.2866,92.1248 +629050,9.7855,92.2737 +629051,11.298,92.4408 +629052,12.823,92.627 +629053,6.9323,92.0745 +629054,8.4353,92.2661 +629055,9.9523,92.4765 +629056,11.482,92.7065 +629057,5.5791,92.0243 +629058,7.0855,92.2585 +629059,8.6061,92.5121 +629060,10.14,92.786 +629061,4.2272,91.9743 +629062,5.736,92.2509 +629063,7.2595,92.5476 +629064,8.7968,92.8652 +629065,2.8765,91.9244 +629066,4.387,92.2434 +629067,5.9124,92.583 +629068,7.4521,92.9443 +629069,1.527,91.8747 +629070,3.0383,92.2359 +629071,4.5648,92.6183 +629072,6.1061,93.0231 +629073,0.17874,91.8253 +629074,1.69,92.2284 +629075,3.2169,92.6534 +629076,4.7589,93.1016 +629077,358.83,91.7761 +629078,0.34208,92.2209 +629079,1.8684,92.6884 +629080,3.4105,93.1798 +629081,357.49,91.7272 +629082,358.99,92.2136 +629083,0.51958,92.7233 +629084,2.0608,93.2577 +629085,356.14,91.6787 +629086,357.65,92.2062 +629087,359.17,92.758 +629088,0.70979,93.3352 +629089,354.8,91.6305 +629090,356.3,92.199 +629091,357.82,92.7925 +629092,359.36,93.4123 +629093,353.46,91.5827 +629094,354.95,92.1919 +629095,356.47,92.8268 +629096,358,93.489 +629097,352.11,91.5353 +629098,353.61,92.1849 +629099,355.12,92.861 +629100,356.65,93.5652 +629101,350.77,91.4883 +629102,352.26,92.1779 +629103,353.77,92.8949 +629104,355.29,93.6408 +629105,349.44,91.4418 +629106,350.92,92.1712 +629107,352.42,92.9286 +629108,353.94,93.716 +629109,348.1,91.3959 +629110,349.57,92.1645 +629111,351.07,92.9621 +629112,352.58,93.7905 +629113,346.76,91.3504 +629114,348.23,92.158 +629115,349.71,92.9953 +629116,351.22,93.8644 +629117,345.43,91.3055 +629118,346.88,92.1516 +629119,348.36,93.0283 +629120,349.86,93.9377 +629121,344.09,91.2613 +629122,345.54,92.1454 +629123,347.01,93.061 +629124,348.5,94.0103 +629125,342.76,91.2176 +629126,344.2,92.1394 +629127,345.65,93.0935 +629128,347.13,94.0822 +629129,341.43,91.1746 +629130,342.85,92.1336 +629131,344.3,93.1256 +629132,345.77,94.1534 +629133,340.1,91.1322 +629134,341.51,92.1279 +629135,342.94,93.1575 +629136,344.4,94.2238 +629137,338.77,91.0906 +629138,340.17,92.1225 +629139,341.59,93.1891 +629140,343.03,94.2934 +629141,337.44,91.0497 +629142,338.83,92.1172 +629143,340.23,93.2204 +629144,341.67,94.3622 +629145,336.11,91.0096 +629146,337.48,92.1122 +629147,338.88,93.2513 +629148,340.3,94.4301 +629149,334.79,90.9702 +629150,336.14,92.1074 +629151,337.52,93.2819 +629152,338.93,94.4971 +629153,333.46,90.93165 +629154,334.8,92.1029 +629155,336.17,93.3122 +629156,337.56,94.5631 +629157,332.14,90.89393 +629158,333.46,92.0986 +629159,334.81,93.3421 +629160,336.18,94.6283 +629161,330.81,90.85706 +629162,332.12,92.0945 +629163,333.45,93.3717 +629164,334.81,94.6924 +629165,329.49,90.82109 +629166,330.78,92.0907 +629167,332.09,93.4009 +629168,333.43,94.7556 +629169,328.17,90.78602 +629170,329.44,92.0872 +629171,330.74,93.4297 +629172,332.06,94.8177 +629173,326.85,90.75188 +629174,328.1,92.084 +629175,329.38,93.4581 +629176,330.68,94.8787 +629177,325.53,90.7187 +629178,326.76,92.081 +629179,328.02,93.4862 +629180,329.3,94.9387 +629181,324.21,90.68649 +629182,325.42,92.0784 +629183,326.66,93.5138 +629184,327.92,94.9975 +629185,322.9,90.65528 +629186,324.09,92.076 +629187,325.3,93.541 +629188,326.54,95.0552 +629189,321.58,90.6251 +629190,322.75,92.074 +629191,323.94,93.5678 +629192,325.16,95.1117 +629193,320.26,90.59595 +629194,321.41,92.0723 +629195,322.58,93.5942 +629196,323.78,95.167 +629197,318.95,90.56787 +629198,320.07,92.0709 +629199,321.22,93.6202 +629200,322.4,95.2211 +629201,317.63,90.54087 +629202,318.73,92.0698 +629203,319.86,93.6457 +629204,321.01,95.274 +629205,316.32,90.51497 +629206,317.4,92.0691 +629207,318.5,93.6707 +629208,319.63,95.3256 +629209,315.01,90.49019 +629210,316.06,92.0687 +629211,317.14,93.6953 +629212,318.24,95.3759 +629213,313.7,90.46656 +629214,314.72,92.0687 +629215,315.77,93.7195 +629216,316.85,95.425 +629217,312.39,90.44408 +629218,313.39,92.069 +629219,314.41,93.7431 +629220,315.47,95.4727 +629221,311.08,90.42277 +629222,312.05,92.0697 +629223,313.05,93.7663 +629224,314.08,95.519 +629225,309.77,90.40266 +629226,310.72,92.0708 +629227,311.69,93.7891 +629228,312.69,95.564 +629229,308.46,90.38375 +629230,309.38,92.0722 +629231,310.32,93.8113 +629232,311.3,95.6076 +629233,307.15,90.36607 +629234,308.04,92.0741 +629235,308.96,93.833 +629236,309.91,95.6498 +629237,305.85,90.34962 +629238,306.71,92.0763 +629239,307.6,93.8542 +629240,308.52,95.6905 +629241,304.54,90.33443 +629242,305.37,92.0789 +629243,306.23,93.875 +629244,307.12,95.7299 +629245,303.23,90.3205 +629246,304.04,92.0818 +629247,304.87,93.8952 +629248,305.73,95.7677 +629249,301.93,90.30785 +629250,302.71,92.0852 +629251,303.51,93.9149 +629252,304.34,95.8042 +629253,300.62,90.29649 +629254,301.37,92.089 +629255,302.14,93.9341 +629256,302.94,95.8391 +629257,299.32,90.28644 +629258,300.04,92.0932 +629259,300.78,93.9528 +629260,301.55,95.8725 +629261,298.02,90.27769 +629262,298.7,92.0978 +629263,299.41,93.9709 +629264,300.15,95.9045 +629265,296.71,90.27028 +629266,297.37,92.1028 +629267,298.05,93.9885 +629268,298.75,95.9349 +629269,295.41,90.2642 +629270,296.03,92.1083 +629271,296.68,94.0056 +629272,297.36,95.9638 +629273,294.11,90.25946 +629274,294.7,92.1141 +629275,295.32,94.0221 +629276,295.96,95.9911 +629277,292.81,90.25607 +629278,293.37,92.1204 +629279,293.95,94.0381 +629280,294.56,96.0169 +629281,291.51,90.25404 +629282,292.03,92.1271 +629283,292.58,94.0536 +629284,293.16,96.0412 +629285,290.21,90.25338 +629286,290.7,92.1342 +629287,291.22,94.0685 +629288,291.76,96.0638 +629289,288.91,90.2541 +629290,289.37,92.1418 +629291,289.85,94.0829 +629292,290.36,96.085 +629293,287.61,90.25619 +629294,288.03,92.1498 +629295,288.48,94.0967 +629296,288.96,96.1045 +629297,286.31,90.25967 +629298,286.7,92.1582 +629299,287.12,94.11 +629300,287.56,96.1224 +629301,285.01,90.26453 +629302,285.37,92.1671 +629303,285.75,94.1227 +629304,286.16,96.1388 +629305,283.71,90.27079 +629306,284.03,92.1764 +629307,284.38,94.1348 +629308,284.76,96.1536 +629309,282.41,90.27844 +629310,282.7,92.1861 +629311,283.02,94.1464 +629312,283.36,96.1668 +629313,281.11,90.28749 +629314,281.37,92.1963 +629315,281.65,94.1575 +629316,281.96,96.1784 +629317,279.81,90.29794 +629318,280.04,92.2069 +629319,280.28,94.168 +629320,280.56,96.1884 +629321,278.51,90.30979 +629322,278.7,92.218 +629323,278.92,94.1779 +629324,279.15,96.1968 +629325,277.21,90.32304 +629326,277.37,92.2295 +629327,277.55,94.1873 +629328,277.75,96.2036 +629329,275.91,90.33769 +629330,276.04,92.2414 +629331,276.18,94.1961 +629332,276.35,96.2088 +629333,274.61,90.35374 +629334,274.71,92.2537 +629335,274.82,94.2044 +629336,274.95,96.2125 +629337,273.32,90.37119 +629338,273.37,92.2665 +629339,273.45,94.2121 +629340,273.55,96.2145 +629341,272.02,90.39003 +629342,272.04,92.2798 +629343,272.08,94.2193 +629344,272.14,96.215 +629345,270.72,90.41026 +629346,270.71,92.2934 +629347,270.71,94.2259 +629348,270.74,96.2139 +629349,269.42,90.43188 +629350,269.37,92.3075 +629351,269.35,94.232 +629352,269.34,96.2113 +629353,268.12,90.45488 +629354,268.04,92.3221 +629355,267.98,94.2375 +629356,267.93,96.207 +629357,266.82,90.47925 +629358,266.71,92.337 +629359,266.61,94.2424 +629360,266.53,96.2013 +629361,265.52,90.505 +629362,265.38,92.3524 +629363,265.24,94.2469 +629364,265.13,96.194 +629365,264.22,90.53211 +629366,264.04,92.3682 +629367,263.88,94.2507 +629368,263.73,96.1851 +629369,262.93,90.56058 +629370,262.71,92.3845 +629371,262.51,94.2541 +629372,262.33,96.1747 +629373,261.63,90.5904 +629374,261.38,92.4011 +629375,261.14,94.2569 +629376,260.92,96.1628 +629377,260.33,90.62155 +629378,260.04,92.4182 +629379,259.77,94.2592 +629380,259.52,96.1495 +629381,259.03,90.65404 +629382,258.71,92.4356 +629383,258.41,94.2609 +629384,258.12,96.1346 +629385,257.73,90.68784 +629386,257.38,92.4535 +629387,257.04,94.2622 +629388,256.72,96.1182 +629389,256.42,90.72296 +629390,256.04,92.4718 +629391,255.67,94.2629 +629392,255.32,96.1004 +629393,255.12,90.75937 +629394,254.71,92.4905 +629395,254.31,94.2631 +629396,253.92,96.0812 +629397,253.82,90.79706 +629398,253.37,92.5095 +629399,252.94,94.2627 +629400,252.52,96.0605 +629401,252.52,90.83603 +629402,252.04,92.529 +629403,251.57,94.2619 +629404,251.12,96.0384 +629405,251.22,90.87626 +629406,250.71,92.5489 +629407,250.21,94.2606 +629408,249.72,96.0149 +629409,249.91,90.91773 +629410,249.37,92.5691 +629411,248.84,94.2588 +629412,248.32,95.99 +629413,248.61,90.96043 +629414,248.04,92.5897 +629415,247.47,94.2565 +629416,246.92,95.9638 +629417,247.31,91.0043 +629418,246.7,92.6107 +629419,246.11,94.2537 +629420,245.52,95.9362 +629421,246,91.0495 +629422,245.37,92.632 +629423,244.74,94.2504 +629424,244.13,95.9073 +629425,244.7,91.0957 +629426,244.03,92.6537 +629427,243.37,94.2467 +629428,242.73,95.8771 +629429,243.39,91.1432 +629430,242.7,92.6757 +629431,242.01,94.2425 +629432,241.33,95.8457 +629433,242.09,91.1918 +629434,241.36,92.6981 +629435,240.64,94.2378 +629436,239.94,95.8129 +629437,240.78,91.2415 +629438,240.02,92.7209 +629439,239.28,94.2327 +629440,238.54,95.779 +629441,239.47,91.2924 +629442,238.69,92.7439 +629443,237.91,94.2272 +629444,237.15,95.7438 +629445,238.16,91.3443 +629446,237.35,92.7673 +629447,236.55,94.2212 +629448,235.75,95.7074 +629449,236.85,91.3973 +629450,236.02,92.791 +629451,235.18,94.2147 +629452,234.36,95.6699 +629453,235.55,91.4513 +629454,234.68,92.815 +629455,233.82,94.2079 +629456,232.97,95.6312 +629457,234.23,91.5064 +629458,233.34,92.8393 +629459,232.45,94.2007 +629460,231.57,95.5915 +629461,232.92,91.5625 +629462,232,92.8639 +629463,231.09,94.193 +629464,230.18,95.5506 +629465,231.61,91.6195 +629466,230.67,92.8888 +629467,229.73,94.1849 +629468,228.79,95.5087 +629469,230.3,91.6775 +629470,229.33,92.914 +629471,228.36,94.1765 +629472,227.4,95.4657 +629473,228.99,91.7364 +629474,227.99,92.9394 +629475,227,94.1677 +629476,226.02,95.4217 +629477,227.67,91.7963 +629478,226.65,92.9651 +629479,225.64,94.1585 +629480,224.63,95.3768 +629481,226.36,91.857 +629482,225.31,92.991 +629483,224.27,94.1489 +629484,223.24,95.3308 +629485,225.04,91.9186 +629486,223.97,93.0172 +629487,222.91,94.139 +629488,221.85,95.284 +629489,223.72,91.981 +629490,222.63,93.0437 +629491,221.55,94.1287 +629492,220.47,95.2363 +629493,222.41,92.0443 +629494,221.29,93.0703 +629495,220.19,94.1181 +629496,219.08,95.1877 +629497,221.09,92.1083 +629498,219.95,93.0972 +629499,218.83,94.1072 +629500,217.7,95.1382 +629501,219.77,92.173 +629502,218.61,93.1243 +629503,217.46,94.096 +629504,216.32,95.088 +629505,218.45,92.2385 +629506,217.27,93.1516 +629507,216.1,94.0844 +629508,214.94,95.037 +629509,217.12,92.3047 +629510,215.93,93.179 +629511,214.74,94.0726 +629512,213.56,94.9852 +629513,215.8,92.3716 +629514,214.59,93.2067 +629515,213.38,94.0605 +629516,212.18,94.9327 +629517,214.48,92.4391 +629518,213.25,93.2345 +629519,212.02,94.0481 +629520,210.8,94.8796 +629521,213.15,92.5072 +629522,211.91,93.2624 +629523,210.66,94.0354 +629524,209.42,94.8257 +629525,211.83,92.5759 +629526,210.56,93.2905 +629527,209.3,94.0225 +629528,208.05,94.7713 +629529,210.5,92.6452 +629530,209.22,93.3188 +629531,207.94,94.0093 +629532,206.67,94.7163 +629533,209.17,92.7149 +629534,207.88,93.3472 +629535,206.58,93.9959 +629536,205.3,94.6607 +629537,207.84,92.7852 +629538,206.53,93.3757 +629539,205.23,93.9823 +629540,203.92,94.6046 +629541,206.51,92.8559 +629542,205.19,93.4043 +629543,203.87,93.9685 +629544,202.55,94.548 +629545,205.18,92.9271 +629546,203.84,93.433 +629547,202.51,93.9544 +629548,201.18,94.4909 +629549,203.85,92.9986 +629550,202.5,93.4618 +629551,201.15,93.9402 +629552,199.81,94.4334 +629553,202.52,93.0705 +629554,201.15,93.4906 +629555,199.8,93.9258 +629556,198.44,94.3755 +629557,201.18,93.1428 +629558,199.81,93.5195 +629559,198.44,93.9112 +629560,197.07,94.3173 +629561,199.85,93.2153 +629562,198.46,93.5485 +629563,197.08,93.8965 +629564,195.71,94.2587 +629565,198.51,93.2881 +629566,197.12,93.5775 +629567,195.73,93.8816 +629568,194.34,94.1998 +629569,197.17,93.3612 +629570,195.77,93.6065 +629571,194.37,93.8665 +629572,192.98,94.1407 +629573,195.83,93.4344 +629574,194.42,93.6356 +629575,193.02,93.8514 +629576,191.61,94.0813 +629577,194.49,93.5078 +629578,193.08,93.6647 +629579,191.66,93.8361 +629580,190.25,94.0218 +629581,193.15,93.5814 +629582,191.73,93.6937 +629583,190.31,93.8207 +629584,188.89,93.9621 +629585,191.81,93.6551 +629586,190.38,93.7228 +629587,188.95,93.8053 +629588,187.53,93.9022 +629589,190.46,93.7288 +629590,189.03,93.7518 +629591,187.6,93.7897 +629592,186.17,93.8423 +629593,189.12,93.8026 +629594,187.68,93.7807 +629595,186.25,93.7741 +629596,184.82,93.7823 +629597,187.77,93.8763 +629598,186.33,93.8097 +629599,184.89,93.7584 +629600,183.46,93.7223 +629601,186.43,93.95 +629602,184.98,93.8385 +629603,183.54,93.7427 +629604,182.11,93.6622 +629605,185.08,94.0237 +629606,183.63,93.8673 +629607,182.19,93.727 +629608,180.75,93.6023 +629609,183.73,94.0973 +629610,182.28,93.896 +629611,180.84,93.7112 +629612,179.4,93.5423 +629613,182.38,94.1707 +629614,180.93,93.9246 +629615,179.49,93.6954 +629616,178.05,93.4825 +629617,181.02,94.2439 +629618,179.58,93.9531 +629619,178.13,93.6796 +629620,176.7,93.4229 +629621,179.67,94.317 +629622,178.22,93.9815 +629623,176.78,93.6638 +629624,175.35,93.3634 +629625,178.32,94.3898 +629626,176.87,94.0098 +629627,175.43,93.648 +629628,174,93.3041 +629629,176.96,94.4623 +629630,175.52,94.0379 +629631,174.08,93.6323 +629632,172.66,93.245 +629633,175.6,94.5345 +629634,174.17,94.0659 +629635,172.73,93.6166 +629636,171.31,93.1862 +629637,174.24,94.6064 +629638,172.81,94.0937 +629639,171.39,93.6009 +629640,169.97,93.1277 +629641,172.89,94.6779 +629642,171.46,94.1213 +629643,170.04,93.5853 +629644,168.62,93.0695 +629645,171.52,94.749 +629646,170.1,94.1487 +629647,168.69,93.5698 +629648,167.28,93.0117 +629649,170.16,94.8196 +629650,168.75,94.176 +629651,167.34,93.5544 +629652,165.94,92.9543 +629653,168.8,94.8898 +629654,167.39,94.203 +629655,165.99,93.5391 +629656,164.6,92.8973 +629657,167.44,94.9594 +629658,166.04,94.2298 +629659,164.65,93.5238 +629660,163.26,92.8408 +629661,166.07,95.0285 +629662,164.68,94.2564 +629663,163.3,93.5087 +629664,161.92,92.7847 +629665,164.7,95.097 +629666,163.32,94.2827 +629667,161.95,93.4937 +629668,160.59,92.7292 +629669,163.34,95.1649 +629670,161.97,94.3088 +629671,160.61,93.4789 +629672,159.25,92.6742 +629673,161.97,95.2322 +629674,160.61,94.3347 +629675,159.26,93.4642 +629676,157.92,92.6198 +629677,160.6,95.2988 +629678,159.25,94.3602 +629679,157.91,93.4497 +629680,156.59,92.566 +629681,159.23,95.3647 +629682,157.89,94.3855 +629683,156.57,93.4353 +629684,155.25,92.5128 +629685,157.86,95.4298 +629686,156.54,94.4105 +629687,155.23,93.4211 +629688,153.92,92.4603 +629689,156.48,95.4941 +629690,155.18,94.4351 +629691,153.88,93.4071 +629692,152.59,92.4085 +629693,155.11,95.5577 +629694,153.82,94.4595 +629695,152.54,93.3933 +629696,151.27,92.3573 +629697,153.73,95.6204 +629698,152.46,94.4835 +629699,151.19,93.3797 +629700,149.94,92.307 +629701,152.36,95.6822 +629702,151.1,94.5072 +629703,149.85,93.3663 +629704,148.61,92.2574 +629705,150.98,95.7432 +629706,149.74,94.5306 +629707,148.51,93.3531 +629708,147.29,92.2086 +629709,149.6,95.8032 +629710,148.38,94.5536 +629711,147.16,93.3402 +629712,145.96,92.1606 +629713,148.22,95.8622 +629714,147.02,94.5762 +629715,145.82,93.3275 +629716,144.64,92.1135 +629717,146.84,95.9203 +629718,145.65,94.5985 +629719,144.48,93.315 +629720,143.31,92.0673 +629721,145.46,95.9773 +629722,144.29,94.6204 +629723,143.14,93.3029 +629724,141.99,92.0219 +629725,144.08,96.0333 +629726,142.93,94.6419 +629727,141.8,93.2909 +629728,140.67,91.9775 +629729,142.69,96.0882 +629730,141.57,94.663 +629731,140.46,93.2793 +629732,139.35,91.934 +629733,141.31,96.142 +629734,140.21,94.6837 +629735,139.11,93.268 +629736,138.03,91.8915 +629737,139.92,96.1947 +629738,138.84,94.7039 +629739,137.77,93.2569 +629740,136.71,91.85 +629741,138.54,96.2462 +629742,137.48,94.7238 +629743,136.43,93.2461 +629744,135.4,91.8095 +629745,137.15,96.2966 +629746,136.12,94.7432 +629747,135.09,93.2357 +629748,134.08,91.7701 +629749,135.76,96.3457 +629750,134.75,94.7622 +629751,133.75,93.2256 +629752,132.77,91.7317 +629753,134.37,96.3936 +629754,133.39,94.7807 +629755,132.41,93.2158 +629756,131.45,91.6944 +629757,132.99,96.4403 +629758,132.02,94.7988 +629759,131.08,93.2063 +629760,130.14,91.6581 +629761,131.59,96.4857 +629762,130.66,94.8164 +629763,129.74,93.1971 +629764,128.82,91.6231 +629765,130.2,96.5298 +629766,129.29,94.8335 +629767,128.4,93.1883 +629768,127.51,91.5891 +629769,128.81,96.5725 +629770,127.93,94.8502 +629771,127.06,93.1799 +629772,126.2,91.5563 +629773,127.42,96.6139 +629774,126.56,94.8664 +629775,125.72,93.1718 +629776,124.89,91.5247 +629777,126.03,96.654 +629778,125.2,94.8821 +629779,124.38,93.164 +629780,123.58,91.4942 +629781,124.63,96.6926 +629782,123.83,94.8973 +629783,123.05,93.1567 +629784,122.27,91.465 +629785,123.24,96.7299 +629786,122.47,94.9119 +629787,121.71,93.1497 +629788,120.96,91.437 +629789,121.84,96.7657 +629790,121.1,94.9261 +629791,120.37,93.1431 +629792,119.65,91.4103 +629793,120.45,96.8001 +629794,119.73,94.9398 +629795,119.03,93.1368 +629796,118.34,91.3847 +629797,119.05,96.833 +629798,118.37,94.9529 +629799,117.7,93.131 +629800,117.03,91.3605 +629801,117.65,96.8645 +629802,117,94.9656 +629803,116.36,93.1255 +629804,115.73,91.3376 +629805,116.25,96.8944 +629806,115.63,94.9777 +629807,115.02,93.1205 +629808,114.42,91.3159 +629809,114.86,96.9229 +629810,114.27,94.9892 +629811,113.69,93.1158 +629812,113.11,91.2955 +629813,113.46,96.9498 +629814,112.9,95.0003 +629815,112.35,93.1116 +629816,111.81,91.2765 +629817,112.06,96.9752 +629818,111.53,95.0108 +629819,111.01,93.1077 +629820,110.5,91.2588 +629821,110.66,96.9991 +629822,110.16,95.0207 +629823,109.68,93.1043 +629824,109.2,91.2424 +629825,109.26,97.0214 +629826,108.8,95.0301 +629827,108.34,93.1013 +629828,107.89,91.2274 +629829,107.86,97.0421 +629830,107.43,95.0389 +629831,107,93.0987 +629832,106.59,91.2137 +629833,106.46,97.0612 +629834,106.06,95.0472 +629835,105.67,93.0966 +629836,105.29,91.2014 +629837,105.06,97.0788 +629838,104.69,95.0549 +629839,104.33,93.0948 +629840,103.98,91.1905 +629841,103.66,97.0948 +629842,103.32,95.0621 +629843,103,93.0935 +629844,102.68,91.181 +629845,102.25,97.1091 +629846,101.95,95.0687 +629847,101.66,93.0926 +629848,101.38,91.1728 +629849,100.85,97.1219 +629850,100.59,95.0747 +629851,100.33,93.0922 +629852,100.07,91.1661 +629853,99.45,97.133 +629854,99.217,95.0802 +629855,98.991,93.0922 +629856,98.771,91.1607 +629857,98.048,97.1425 +629858,97.848,95.0851 +629859,97.655,93.0926 +629860,97.469,91.1567 +629861,96.645,97.1504 +629862,96.479,95.0894 +629863,96.32,93.0934 +629864,96.166,91.1542 +629865,95.243,97.1567 +629866,95.11,95.0932 +629867,94.985,93.0947 +629868,94.864,91.153 +629869,93.84,97.1613 +629870,93.742,95.0964 +629871,93.649,93.0964 +629872,93.562,91.1533 +629873,92.437,97.1643 +629874,92.373,95.099 +629875,92.314,93.0986 +629876,92.26,91.1549 +629877,91.034,97.1657 +629878,91.004,95.101 +629879,90.979,93.1012 +629880,90.958,91.158 +629881,89.631,97.1655 +629882,89.635,95.1025 +629883,89.644,93.1042 +629884,89.656,91.1625 +629885,88.229,97.1636 +629886,88.266,95.1034 +629887,88.308,93.1077 +629888,88.355,91.1684 +629889,86.826,97.1601 +629890,86.897,95.1037 +629891,86.973,93.1116 +629892,87.053,91.1757 +629893,85.423,97.1549 +629894,85.529,95.1035 +629895,85.638,93.116 +629896,85.75,91.1844 +629897,84.021,97.1482 +629898,84.16,95.1027 +629899,84.302,93.1207 +629900,84.448,91.1945 +629901,82.618,97.1398 +629902,82.791,95.1013 +629903,82.967,93.126 +629904,83.146,91.206 +629905,81.216,97.1298 +629906,81.422,95.0993 +629907,81.632,93.1316 +629908,81.844,91.2189 +629909,79.813,97.1182 +629910,80.054,95.0968 +629911,80.296,93.1377 +629912,80.541,91.2332 +629913,78.412,97.1051 +629914,78.685,95.0938 +629915,78.96,93.1442 +629916,79.238,91.2489 +629917,77.01,97.0903 +629918,77.316,95.0901 +629919,77.625,93.1511 +629920,77.935,91.2659 +629921,75.608,97.074 +629922,75.948,95.0859 +629923,76.289,93.1585 +629924,76.632,91.2844 +629925,74.207,97.0561 +629926,74.58,95.0812 +629927,74.953,93.1662 +629928,75.328,91.3042 +629929,72.806,97.0366 +629930,73.211,95.0759 +629931,73.617,93.1744 +629932,74.024,91.3253 +629933,71.406,97.0156 +629934,71.843,95.0701 +629935,72.281,93.183 +629936,72.72,91.3478 +629937,70.006,96.9931 +629938,70.475,95.0637 +629939,70.945,93.1921 +629940,71.415,91.3716 +629941,68.606,96.969 +629942,69.107,95.0568 +629943,69.608,93.2015 +629944,70.11,91.3967 +629945,67.207,96.9434 +629946,67.74,95.0493 +629947,68.272,93.2113 +629948,68.804,91.4232 +629949,65.808,96.9164 +629950,66.372,95.0414 +629951,66.935,93.2215 +629952,67.498,91.451 +629953,64.409,96.8879 +629954,65.004,95.0329 +629955,65.598,93.2321 +629956,66.192,91.48 +629957,63.012,96.8579 +629958,63.637,95.0238 +629959,64.261,93.2431 +629960,64.885,91.5103 +629961,61.614,96.8265 +629962,62.27,95.0143 +629963,62.924,93.2545 +629964,63.578,91.5419 +629965,60.218,96.7936 +629966,60.903,95.0042 +629967,61.587,93.2663 +629968,62.27,91.5747 +629969,58.821,96.7594 +629970,59.536,94.9937 +629971,60.249,93.2785 +629972,60.961,91.6088 +629973,57.426,96.7238 +629974,58.17,94.9826 +629975,58.912,93.291 +629976,59.652,91.6441 +629977,56.031,96.6868 +629978,56.804,94.9711 +629979,57.574,93.3038 +629980,58.342,91.6806 +629981,54.637,96.6484 +629982,55.437,94.9591 +629983,56.236,93.3171 +629984,57.032,91.7182 +629985,53.243,96.6088 +629986,54.072,94.9466 +629987,54.897,93.3307 +629988,55.721,91.757 +629989,51.85,96.5678 +629990,52.706,94.9336 +629991,53.559,93.3446 +629992,54.409,91.797 +629993,50.458,96.5256 +629994,51.34,94.9201 +629995,52.22,93.3588 +629996,53.097,91.8381 +629997,49.067,96.4821 +629998,49.975,94.9062 +629999,50.881,93.3734 +630000,51.784,91.8803 +630001,47.676,96.4374 +630002,48.61,94.8919 +630003,49.541,93.3884 +630004,50.47,91.9236 +630005,46.286,96.3915 +630006,47.246,94.8771 +630007,48.202,93.4036 +630008,49.155,91.968 +630009,44.897,96.3444 +630010,45.881,94.8619 +630011,46.862,93.4191 +630012,47.84,92.0134 +630013,43.509,96.2962 +630014,44.517,94.8462 +630015,45.522,93.435 +630016,46.523,92.0599 +630017,42.121,96.2468 +630018,43.153,94.8301 +630019,44.181,93.4511 +630020,45.206,92.1073 +630021,40.735,96.1963 +630022,41.79,94.8137 +630023,42.841,93.4675 +630024,43.888,92.1557 +630025,39.349,96.1448 +630026,40.426,94.7968 +630027,41.5,93.4842 +630028,42.57,92.2051 +630029,37.965,96.0922 +630030,39.063,94.7795 +630031,40.158,93.5012 +630032,41.25,92.2555 +630033,36.581,96.0386 +630034,37.701,94.7618 +630035,38.817,93.5185 +630036,39.929,92.3067 +630037,35.198,95.984 +630038,36.338,94.7438 +630039,37.475,93.5359 +630040,38.608,92.3588 +630041,33.816,95.9284 +630042,34.976,94.7254 +630043,36.133,93.5537 +630044,37.285,92.4118 +630045,32.435,95.8719 +630046,33.615,94.7066 +630047,34.79,93.5716 +630048,35.962,92.4656 +630049,31.055,95.8145 +630050,32.253,94.6875 +630051,33.447,93.5898 +630052,34.638,92.5202 +630053,29.677,95.7563 +630054,30.892,94.6681 +630055,32.104,93.6082 +630056,33.312,92.5756 +630057,28.299,95.6972 +630058,29.532,94.6483 +630059,30.761,93.6268 +630060,31.986,92.6318 +630061,26.922,95.6373 +630062,28.171,94.6283 +630063,29.417,93.6456 +630064,30.659,92.6887 +630065,25.546,95.5766 +630066,26.811,94.6079 +630067,28.073,93.6646 +630068,29.33,92.7462 +630069,24.171,95.5152 +630070,25.451,94.5872 +630071,26.728,93.6838 +630072,28.001,92.8045 +630073,22.798,95.4531 +630074,24.092,94.5662 +630075,25.383,93.7032 +630076,26.671,92.8634 +630077,21.425,95.3903 +630078,22.733,94.545 +630079,24.038,93.7227 +630080,25.339,92.9229 +630081,20.054,95.3268 +630082,21.375,94.5235 +630083,22.693,93.7423 +630084,24.007,92.983 +630085,18.683,95.2628 +630086,20.016,94.5017 +630087,21.347,93.7621 +630088,22.673,93.0437 +630089,17.314,95.1981 +630090,18.659,94.4797 +630091,20,93.782 +630092,21.338,93.1048 +630093,15.946,95.1329 +630094,17.301,94.4574 +630095,18.654,93.802 +630096,20.002,93.1665 +630097,14.579,95.0672 +630098,15.944,94.435 +630099,17.307,93.8222 +630100,18.666,93.2287 +630101,13.213,95.001 +630102,14.587,94.4123 +630103,15.959,93.8424 +630104,17.327,93.2912 +630105,11.848,94.9343 +630106,13.231,94.3894 +630107,14.611,93.8627 +630108,15.988,93.3542 +630109,10.485,94.8673 +630110,11.875,94.3663 +630111,13.263,93.8831 +630112,14.648,93.4175 +630113,9.1223,94.7999 +630114,10.519,94.3431 +630115,11.915,93.9036 +630116,13.306,93.4812 +630117,7.7611,94.7321 +630118,9.1642,94.3197 +630119,10.566,93.9241 +630120,11.964,93.5452 +630121,6.401,94.664 +630122,7.8095,94.2961 +630123,9.2163,93.9446 +630124,10.62,93.6095 +630125,5.0421,94.5956 +630126,6.4551,94.2724 +630127,7.8666,93.9652 +630128,9.2751,93.674 +630129,3.6843,94.527 +630130,5.1011,94.2485 +630131,6.5165,93.9858 +630132,7.929,93.7387 +630133,2.3278,94.4582 +630134,3.7475,94.2246 +630135,5.166,94.0064 +630136,6.5817,93.8035 +630137,0.97243,94.3892 +630138,2.3943,94.2005 +630139,3.8151,94.027 +630140,5.2333,93.8686 +630141,359.62,94.32 +630142,1.0415,94.1763 +630143,2.4639,94.0476 +630144,3.8837,93.9337 +630145,358.27,94.2508 +630146,359.69,94.1521 +630147,1.1122,94.0681 +630148,2.5329,93.9989 +630149,356.91,94.1815 +630150,358.34,94.1277 +630151,359.76,94.0886 +630152,1.1809,94.0642 +630153,355.56,94.1121 +630154,356.99,94.1033 +630155,358.41,94.1091 +630156,359.83,94.1294 +630157,354.21,94.0427 +630158,355.63,94.0788 +630159,357.05,94.1295 +630160,358.47,94.1947 +630161,352.87,93.9734 +630162,354.28,94.0543 +630163,355.7,94.1499 +630164,357.12,94.2598 +630165,351.52,93.9041 +630166,352.93,94.0298 +630167,354.35,94.1701 +630168,355.76,94.3249 +630169,350.17,93.835 +630170,351.58,94.0053 +630171,352.99,94.1903 +630172,354.4,94.3899 +630173,348.83,93.7659 +630174,350.23,93.9807 +630175,351.64,94.2104 +630176,353.04,94.4547 +630177,347.48,93.697 +630178,348.88,93.9561 +630179,350.29,94.2303 +630180,351.68,94.5193 +630181,346.14,93.6284 +630182,347.54,93.9316 +630183,348.93,94.2501 +630184,350.32,94.5837 +630185,344.8,93.5599 +630186,346.19,93.9071 +630187,347.57,94.2698 +630188,348.96,94.6478 +630189,343.46,93.4917 +630190,344.84,93.8826 +630191,346.22,94.2893 +630192,347.6,94.7116 +630193,342.12,93.4238 +630194,343.49,93.8582 +630195,344.86,94.3087 +630196,346.23,94.7751 +630197,340.78,93.3563 +630198,342.14,93.8338 +630199,343.51,94.3279 +630200,344.87,94.8383 +630201,339.45,93.2891 +630202,340.8,93.8095 +630203,342.15,94.3469 +630204,343.5,94.901 +630205,338.11,93.2222 +630206,339.45,93.7853 +630207,340.79,94.3657 +630208,342.13,94.9633 +630209,336.78,93.1559 +630210,338.1,93.7611 +630211,339.43,94.3843 +630212,340.76,95.0251 +630213,335.44,93.0899 +630214,336.76,93.7371 +630215,338.08,94.4027 +630216,339.39,95.0865 +630217,334.11,93.0245 +630218,335.41,93.7132 +630219,336.72,94.4208 +630220,338.02,95.1473 +630221,332.78,92.9595 +630222,334.07,93.6894 +630223,335.36,94.4388 +630224,336.65,95.2075 +630225,331.45,92.8951 +630226,332.72,93.6658 +630227,334,94.4564 +630228,335.27,95.2672 +630229,330.12,92.8313 +630230,331.38,93.6422 +630231,332.64,94.4739 +630232,333.9,95.3262 +630233,328.79,92.7681 +630234,330.04,93.6189 +630235,331.28,94.491 +630236,332.52,95.3846 +630237,327.47,92.7056 +630238,328.69,93.5957 +630239,329.92,94.5079 +630240,331.15,95.4423 +630241,326.14,92.6437 +630242,327.35,93.5727 +630243,328.56,94.5244 +630244,329.77,95.4992 +630245,324.81,92.5824 +630246,326.01,93.5498 +630247,327.2,94.5407 +630248,328.39,95.5554 +630249,323.49,92.5219 +630250,324.66,93.5272 +630251,325.84,94.5567 +630252,327.01,95.6108 +630253,322.17,92.4622 +630254,323.32,93.5048 +630255,324.47,94.5723 +630256,325.63,95.6654 +630257,320.85,92.4032 +630258,321.98,93.4825 +630259,323.11,94.5876 +630260,324.25,95.7192 +630261,319.52,92.3451 +630262,320.64,93.4605 +630263,321.75,94.6026 +630264,322.86,95.772 +630265,318.2,92.2877 +630266,319.3,93.4388 +630267,320.39,94.6172 +630268,321.48,95.824 +630269,316.88,92.2312 +630270,317.96,93.4172 +630271,319.03,94.6315 +630272,320.09,95.875 +630273,315.57,92.1756 +630274,316.62,93.396 +630275,317.66,94.6454 +630276,318.71,95.925 +630277,314.25,92.1209 +630278,315.27,93.3749 +630279,316.3,94.6589 +630280,317.32,95.9741 +630281,312.93,92.0672 +630282,313.93,93.3542 +630283,314.94,94.672 +630284,315.93,96.0221 +630285,311.62,92.0143 +630286,312.6,93.3337 +630287,313.57,94.6848 +630288,314.55,96.0691 +630289,310.3,91.9625 +630290,311.26,93.3135 +630291,312.21,94.6971 +630292,313.16,96.115 +630293,308.99,91.9116 +630294,309.92,93.2936 +630295,310.84,94.709 +630296,311.77,96.1598 +630297,307.67,91.8618 +630298,308.58,93.274 +630299,309.48,94.7205 +630300,310.38,96.2035 +630301,306.36,91.813 +630302,307.24,93.2547 +630303,308.11,94.7316 +630304,308.99,96.246 +630305,305.05,91.7653 +630306,305.9,93.2357 +630307,306.75,94.7422 +630308,307.59,96.2873 +630309,303.74,91.7187 +630310,304.56,93.2171 +630311,305.38,94.7524 +630312,306.2,96.3274 +630313,302.43,91.6732 +630314,303.22,93.1988 +630315,304.02,94.7621 +630316,304.81,96.3663 +630317,301.12,91.6288 +630318,301.89,93.1808 +630319,302.65,94.7714 +630320,303.41,96.4039 +630321,299.81,91.5855 +630322,300.55,93.1631 +630323,301.29,94.7802 +630324,302.02,96.4403 +630325,298.5,91.5434 +630326,299.21,93.1458 +630327,299.92,94.7886 +630328,300.62,96.4754 +630329,297.19,91.5025 +630330,297.88,93.1289 +630331,298.55,94.7965 +630332,299.23,96.5091 +630333,295.89,91.4628 +630334,296.54,93.1123 +630335,297.19,94.8038 +630336,297.83,96.5415 +630337,294.58,91.4243 +630338,295.2,93.0961 +630339,295.82,94.8107 +630340,296.43,96.5725 +630341,293.27,91.387 +630342,293.87,93.0802 +630343,294.45,94.8171 +630344,295.03,96.6022 +630345,291.97,91.3509 +630346,292.53,93.0647 +630347,293.09,94.823 +630348,293.64,96.6304 +630349,290.66,91.3162 +630350,291.19,93.0497 +630351,291.72,94.8284 +630352,292.24,96.6572 +630353,289.36,91.2827 +630354,289.86,93.035 +630355,290.35,94.8333 +630356,290.84,96.6826 +630357,288.05,91.2504 +630358,288.52,93.0207 +630359,288.98,94.8376 +630360,289.44,96.7066 +630361,286.75,91.2195 +630362,287.19,93.0068 +630363,287.62,94.8414 +630364,288.04,96.729 +630365,285.45,91.1899 +630366,285.85,92.9932 +630367,286.25,94.8447 +630368,286.64,96.75 +630369,284.14,91.1616 +630370,284.52,92.9801 +630371,284.88,94.8475 +630372,285.24,96.7695 +630373,282.84,91.1346 +630374,283.18,92.9675 +630375,283.51,94.8497 +630376,283.84,96.7874 +630377,281.54,91.109 +630378,281.84,92.9552 +630379,282.14,94.8514 +630380,282.43,96.8039 +630381,280.23,91.0848 +630382,280.51,92.9433 +630383,280.78,94.8525 +630384,281.03,96.8188 +630385,278.93,91.0618 +630386,279.18,92.9319 +630387,279.41,94.8531 +630388,279.63,96.8322 +630389,277.63,91.0403 +630390,277.84,92.9209 +630391,278.04,94.8532 +630392,278.23,96.8439 +630393,276.33,91.0201 +630394,276.51,92.9103 +630395,276.67,94.8527 +630396,276.83,96.8542 +630397,275.03,91.0013 +630398,275.17,92.9001 +630399,275.3,94.8516 +630400,275.42,96.8628 +630401,273.73,90.98394 +630402,273.84,92.8904 +630403,273.93,94.85 +630404,274.02,96.8699 +630405,272.43,90.96793 +630406,272.5,92.8811 +630407,272.57,94.8478 +630408,272.62,96.8754 +630409,271.13,90.95332 +630410,271.17,92.8722 +630411,271.2,94.845 +630412,271.22,96.8792 +630413,269.82,90.9401 +630414,269.83,92.8638 +630415,269.83,94.8417 +630416,269.81,96.8815 +630417,268.52,90.92829 +630418,268.5,92.8558 +630419,268.46,94.8378 +630420,268.41,96.8821 +630421,267.22,90.91789 +630422,267.16,92.8482 +630423,267.09,94.8334 +630424,267.01,96.8812 +630425,265.92,90.90889 +630426,265.83,92.8411 +630427,265.72,94.8284 +630428,265.61,96.8786 +630429,264.62,90.9013 +630430,264.49,92.8344 +630431,264.36,94.8228 +630432,264.2,96.8744 +630433,263.32,90.89511 +630434,263.16,92.8282 +630435,262.99,94.8167 +630436,262.8,96.8686 +630437,262.02,90.89034 +630438,261.83,92.8224 +630439,261.62,94.81 +630440,261.4,96.8612 +630441,260.72,90.88697 +630442,260.49,92.817 +630443,260.25,94.8027 +630444,260,96.8521 +630445,259.42,90.885 +630446,259.16,92.8121 +630447,258.88,94.7948 +630448,258.59,96.8414 +630449,258.11,90.88444 +630450,257.82,92.8076 +630451,257.52,94.7864 +630452,257.19,96.8292 +630453,256.81,90.88527 +630454,256.49,92.8035 +630455,256.15,94.7775 +630456,255.79,96.8153 +630457,255.51,90.8875 +630458,255.15,92.7999 +630459,254.78,94.7679 +630460,254.39,96.7998 +630461,254.21,90.89112 +630462,253.82,92.7967 +630463,253.41,94.7578 +630464,252.99,96.7827 +630465,252.91,90.89612 +630466,252.48,92.7939 +630467,252.04,94.7472 +630468,251.59,96.764 +630469,251.6,90.9025 +630470,251.15,92.7916 +630471,250.68,94.736 +630472,250.19,96.7437 +630473,250.3,90.91025 +630474,249.81,92.7897 +630475,249.31,94.7242 +630476,248.79,96.7218 +630477,249,90.91936 +630478,248.48,92.7882 +630479,247.94,94.7119 +630480,247.39,96.6984 +630481,247.69,90.92983 +630482,247.14,92.7871 +630483,246.58,94.6991 +630484,245.99,96.6734 +630485,246.39,90.94165 +630486,245.81,92.7865 +630487,245.21,94.6856 +630488,244.59,96.6468 +630489,245.08,90.95481 +630490,244.47,92.7862 +630491,243.84,94.6717 +630492,243.19,96.6187 +630493,243.78,90.96929 +630494,243.14,92.7864 +630495,242.48,94.6572 +630496,241.8,96.5891 +630497,242.47,90.98509 +630498,241.8,92.787 +630499,241.11,94.6422 +630500,240.4,96.5579 +630501,241.17,91.0022 +630502,240.46,92.788 +630503,239.74,94.6266 +630504,239,96.5253 +630505,239.86,91.0206 +630506,239.13,92.7894 +630507,238.38,94.6106 +630508,237.61,96.4912 +630509,238.55,91.0403 +630510,237.79,92.7912 +630511,237.01,94.594 +630512,236.21,96.4555 +630513,237.25,91.0612 +630514,236.45,92.7933 +630515,235.65,94.5769 +630516,234.82,96.4185 +630517,235.94,91.0834 +630518,235.12,92.7959 +630519,234.28,94.5592 +630520,233.43,96.38 +630521,234.63,91.1068 +630522,233.78,92.7988 +630523,232.92,94.5411 +630524,232.03,96.34 +630525,233.32,91.1315 +630526,232.44,92.8022 +630527,231.55,94.5225 +630528,230.64,96.2987 +630529,232.01,91.1574 +630530,231.11,92.8058 +630531,230.19,94.5034 +630532,229.25,96.2559 +630533,230.7,91.1844 +630534,229.77,92.8099 +630535,228.82,94.4838 +630536,227.86,96.2118 +630537,229.39,91.2126 +630538,228.43,92.8143 +630539,227.46,94.4637 +630540,226.47,96.1664 +630541,228.07,91.242 +630542,227.09,92.8191 +630543,226.1,94.4431 +630544,225.08,96.1196 +630545,226.76,91.2726 +630546,225.75,92.8242 +630547,224.73,94.4221 +630548,223.69,96.0715 +630549,225.45,91.3042 +630550,224.42,92.8296 +630551,223.37,94.4006 +630552,222.3,96.0222 +630553,224.13,91.3369 +630554,223.08,92.8354 +630555,222.01,94.3787 +630556,220.92,95.9716 +630557,222.81,91.3708 +630558,221.74,92.8415 +630559,220.64,94.3563 +630560,219.53,95.9197 +630561,221.5,91.4056 +630562,220.4,92.8479 +630563,219.28,94.3335 +630564,218.15,95.8666 +630565,220.18,91.4415 +630566,219.06,92.8547 +630567,217.92,94.3102 +630568,216.76,95.8124 +630569,218.86,91.4785 +630570,217.72,92.8617 +630571,216.56,94.2865 +630572,215.38,95.757 +630573,217.54,91.5164 +630574,216.38,92.8691 +630575,215.2,94.2624 +630576,214,95.7004 +630577,216.22,91.5553 +630578,215.04,92.8767 +630579,213.84,94.238 +630580,212.62,95.6428 +630581,214.9,91.5952 +630582,213.7,92.8846 +630583,212.48,94.2131 +630584,211.24,95.584 +630585,213.58,91.6359 +630586,212.36,92.8928 +630587,211.12,94.1878 +630588,209.86,95.5242 +630589,212.26,91.6776 +630590,211.01,92.9012 +630591,209.76,94.1621 +630592,208.48,95.4634 +630593,210.93,91.7202 +630594,209.67,92.9099 +630595,208.4,94.1361 +630596,207.11,95.4016 +630597,209.61,91.7636 +630598,208.33,92.9189 +630599,207.04,94.1097 +630600,205.73,95.3388 +630601,208.28,91.8078 +630602,206.99,92.9281 +630603,205.68,94.083 +630604,204.36,95.2751 +630605,206.95,91.8528 +630606,205.65,92.9375 +630607,204.32,94.0559 +630608,202.98,95.2105 +630609,205.63,91.8986 +630610,204.3,92.9471 +630611,202.96,94.0285 +630612,201.61,95.145 +630613,204.3,91.9452 +630614,202.96,92.957 +630615,201.61,94.0007 +630616,200.24,95.0786 +630617,202.97,91.9924 +630618,201.62,92.967 +630619,200.25,93.9727 +630620,198.87,95.0115 +630621,201.64,92.0404 +630622,200.27,92.9772 +630623,198.89,93.9443 +630624,197.5,94.9435 +630625,200.3,92.089 +630626,198.93,92.9877 +630627,197.54,93.9157 +630628,196.13,94.8748 +630629,198.97,92.1383 +630630,197.58,92.9983 +630631,196.18,93.8868 +630632,194.77,94.8054 +630633,197.63,92.1882 +630634,196.24,93.009 +630635,194.83,93.8576 +630636,193.4,94.7353 +630637,196.3,92.2386 +630638,194.89,93.0199 +630639,193.47,93.8281 +630640,192.04,94.6645 +630641,194.96,92.2896 +630642,193.55,93.031 +630643,192.12,93.7984 +630644,190.67,94.5931 +630645,193.62,92.3412 +630646,192.2,93.0422 +630647,190.76,93.7684 +630648,189.31,94.5211 +630649,192.29,92.3932 +630650,190.85,93.0535 +630651,189.41,93.7383 +630652,187.95,94.4486 +630653,190.94,92.4457 +630654,189.51,93.0649 +630655,188.05,93.7079 +630656,186.59,94.3755 +630657,189.6,92.4986 +630658,188.16,93.0764 +630659,186.7,93.6772 +630660,185.23,94.3019 +630661,188.26,92.5519 +630662,186.81,93.0881 +630663,185.35,93.6464 +630664,183.88,94.2279 +630665,186.92,92.6056 +630666,185.46,93.0998 +630667,184,93.6155 +630668,182.52,94.1535 +630669,185.57,92.6596 +630670,184.11,93.1115 +630671,182.64,93.5843 +630672,181.16,94.0787 +630673,184.23,92.7139 +630674,182.76,93.1233 +630675,181.29,93.553 +630676,179.81,94.0035 +630677,182.88,92.7685 +630678,181.42,93.1352 +630679,179.94,93.5215 +630680,178.46,93.928 +630681,181.53,92.8233 +630682,180.07,93.1471 +630683,178.59,93.4899 +630684,177.11,93.8522 +630685,180.18,92.8784 +630686,178.72,93.1591 +630687,177.24,93.4581 +630688,175.76,93.7762 +630689,178.83,92.9336 +630690,177.37,93.171 +630691,175.89,93.4263 +630692,174.41,93.6999 +630693,177.48,92.989 +630694,176.01,93.183 +630695,174.54,93.3943 +630696,173.06,93.6235 +630697,176.12,93.0445 +630698,174.66,93.1949 +630699,173.19,93.3622 +630700,171.72,93.5469 +630701,174.77,93.1001 +630702,173.31,93.2069 +630703,171.85,93.3301 +630704,170.37,93.4702 +630705,173.41,93.1557 +630706,171.96,93.2188 +630707,170.5,93.2979 +630708,169.03,93.3935 +630709,172.06,93.2114 +630710,170.61,93.2307 +630711,169.15,93.2656 +630712,167.68,93.3166 +630713,170.7,93.267 +630714,169.25,93.2425 +630715,167.8,93.2332 +630716,166.34,93.2398 +630717,169.34,93.3226 +630718,167.9,93.2542 +630719,166.46,93.2009 +630720,165,93.163 +630721,167.98,93.3781 +630722,166.55,93.2659 +630723,165.11,93.1685 +630724,163.66,93.0863 +630725,166.62,93.4335 +630726,165.19,93.2775 +630727,163.76,93.1361 +630728,162.33,93.0096 +630729,165.25,93.4887 +630730,163.84,93.289 +630731,162.42,93.1036 +630732,160.99,92.9331 +630733,163.89,93.5438 +630734,162.49,93.3005 +630735,161.07,93.0712 +630736,159.65,92.8567 +630737,162.53,93.5986 +630738,161.13,93.3117 +630739,159.73,93.0388 +630740,158.32,92.7805 +630741,161.16,93.6532 +630742,159.78,93.3229 +630743,158.38,93.0065 +630744,156.99,92.7046 +630745,159.79,93.7075 +630746,158.42,93.3339 +630747,157.04,92.9741 +630748,155.66,92.6289 +630749,158.42,93.7616 +630750,157.06,93.3448 +630751,155.7,92.9419 +630752,154.33,92.5535 +630753,157.05,93.8152 +630754,155.71,93.3555 +630755,154.35,92.9097 +630756,153,92.4784 +630757,155.68,93.8685 +630758,154.35,93.3661 +630759,153.01,92.8775 +630760,151.67,92.4037 +630761,154.31,93.9214 +630762,152.99,93.3764 +630763,151.67,92.8455 +630764,150.34,92.3294 +630765,152.94,93.9739 +630766,151.64,93.3866 +630767,150.33,92.8135 +630768,149.01,92.2555 +630769,151.56,94.0259 +630770,150.28,93.3965 +630771,148.99,92.7817 +630772,147.69,92.182 +630773,150.19,94.0773 +630774,148.92,93.4063 +630775,147.65,92.7499 +630776,146.36,92.109 +630777,148.81,94.1283 +630778,147.56,93.4158 +630779,146.3,92.7183 +630780,145.04,92.0365 +630781,147.44,94.1786 +630782,146.2,93.4251 +630783,144.96,92.6869 +630784,143.72,91.9646 +630785,146.06,94.2284 +630786,144.84,93.4342 +630787,143.62,92.6556 +630788,142.4,91.8933 +630789,144.68,94.2776 +630790,143.49,93.443 +630791,142.29,92.6244 +630792,141.08,91.8225 +630793,143.3,94.326 +630794,142.13,93.4515 +630795,140.95,92.5934 +630796,139.76,91.7524 +630797,141.92,94.3738 +630798,140.77,93.4597 +630799,139.61,92.5626 +630800,138.44,91.6829 +630801,140.53,94.4209 +630802,139.41,93.4677 +630803,138.27,92.5319 +630804,137.12,91.6142 +630805,139.15,94.4672 +630806,138.04,93.4754 +630807,136.93,92.5015 +630808,135.81,91.5461 +630809,137.77,94.5128 +630810,136.68,93.4828 +630811,135.59,92.4713 +630812,134.49,91.4788 +630813,136.38,94.5575 +630814,135.32,93.4898 +630815,134.26,92.4413 +630816,133.18,91.4123 +630817,135,94.6014 +630818,133.96,93.4966 +630819,132.92,92.4115 +630820,131.87,91.3466 +630821,133.61,94.6444 +630822,132.6,93.503 +630823,131.58,92.382 +630824,130.55,91.2816 +630825,132.22,94.6865 +630826,131.24,93.509 +630827,130.24,92.3527 +630828,129.24,91.2176 +630829,130.83,94.7277 +630830,129.88,93.5147 +630831,128.91,92.3236 +630832,127.93,91.1544 +630833,129.44,94.768 +630834,128.51,93.5201 +630835,127.57,92.2948 +630836,126.62,91.0921 +630837,128.05,94.8072 +630838,127.15,93.5251 +630839,126.24,92.2663 +630840,125.31,91.0308 +630841,126.66,94.8455 +630842,125.79,93.5297 +630843,124.9,92.238 +630844,124.01,90.97037 +630845,125.27,94.8827 +630846,124.42,93.5339 +630847,123.57,92.2101 +630848,122.7,90.91093 +630849,123.88,94.9189 +630850,123.06,93.5377 +630851,122.23,92.1824 +630852,121.39,90.85249 +630853,122.49,94.954 +630854,121.7,93.5412 +630855,120.9,92.1551 +630856,120.09,90.79507 +630857,121.09,94.988 +630858,120.33,93.5442 +630859,119.56,92.128 +630860,118.78,90.73869 +630861,119.7,95.0208 +630862,118.97,93.5468 +630863,118.23,92.1013 +630864,117.48,90.68337 +630865,118.3,95.0525 +630866,117.61,93.549 +630867,116.9,92.0749 +630868,116.17,90.62913 +630869,116.91,95.083 +630870,116.24,93.5507 +630871,115.56,92.0488 +630872,114.87,90.57599 +630873,115.51,95.1123 +630874,114.88,93.552 +630875,114.23,92.0231 +630876,113.57,90.52397 +630877,114.11,95.1404 +630878,113.51,93.5529 +630879,112.9,91.9977 +630880,112.26,90.47308 +630881,112.72,95.1672 +630882,112.15,93.5533 +630883,111.56,91.9726 +630884,110.96,90.42335 +630885,111.32,95.1928 +630886,110.78,93.5533 +630887,110.23,91.9479 +630888,109.66,90.3748 +630889,109.92,95.2171 +630890,109.42,93.5528 +630891,108.9,91.9236 +630892,108.36,90.32744 +630893,108.52,95.2401 +630894,108.05,93.5518 +630895,107.56,91.8997 +630896,107.06,90.28128 +630897,107.12,95.2617 +630898,106.69,93.5504 +630899,106.23,91.8761 +630900,105.76,90.23634 +630901,105.72,95.282 +630902,105.32,93.5484 +630903,104.9,91.8529 +630904,104.46,90.19264 +630905,104.32,95.301 +630906,103.96,93.546 +630907,103.57,91.8301 +630908,103.17,90.15019 +630909,102.92,95.3185 +630910,102.59,93.5431 +630911,102.24,91.8076 +630912,101.87,90.10901 +630913,101.52,95.3347 +630914,101.22,93.5397 +630915,100.91,91.7856 +630916,100.57,90.069104 +630917,100.12,95.3495 +630918,99.858,93.5358 +630919,99.574,91.764 +630920,99.272,90.030488 +630921,98.72,95.3628 +630922,98.492,93.5314 +630923,98.243,91.7427 +630924,97.974,89.9931734 +630925,97.319,95.3747 +630926,97.126,93.5265 +630927,96.912,91.7219 +630928,96.678,89.957171 +630929,95.917,95.3851 +630930,95.76,93.521 +630931,95.581,91.7015 +630932,95.381,89.922491 +630933,94.516,95.3941 +630934,94.394,93.5151 +630935,94.25,91.6815 +630936,94.084,89.88914 +630937,93.114,95.4016 +630938,93.028,93.5086 +630939,92.919,91.662 +630940,92.788,89.85714 +630941,91.712,95.4076 +630942,91.662,93.5016 +630943,91.588,91.6428 +630944,91.492,89.82648 +630945,90.31,95.4121 +630946,90.296,93.4941 +630947,90.257,91.6241 +630948,90.196,89.79718 +630949,88.908,95.4151 +630950,88.93,93.4861 +630951,88.927,91.6058 +630952,88.901,89.76924 +630953,87.506,95.4166 +630954,87.564,93.4775 +630955,87.596,91.5879 +630956,87.605,89.74267 +630957,86.104,95.4166 +630958,86.198,93.4684 +630959,86.266,91.5704 +630960,86.309,89.71747 +630961,84.702,95.415 +630962,84.832,93.4587 +630963,84.935,91.5534 +630964,85.014,89.69366 +630965,83.3,95.4119 +630966,83.466,93.4485 +630967,83.604,91.5369 +630968,83.718,89.67123 +630969,81.898,95.4072 +630970,82.1,93.4378 +630971,82.274,91.5207 +630972,82.422,89.65019 +630973,80.496,95.401 +630974,80.735,93.4265 +630975,80.943,91.505 +630976,81.127,89.63053 +630977,79.095,95.3932 +630978,79.369,93.4147 +630979,79.613,91.4898 +630980,79.831,89.61227 +630981,77.693,95.3839 +630982,78.003,93.4023 +630983,78.282,91.4749 +630984,78.535,89.5954 +630985,76.292,95.373 +630986,76.638,93.3894 +630987,76.952,91.4605 +630988,77.239,89.57992 +630989,74.891,95.3606 +630990,75.272,93.376 +630991,75.621,91.4466 +630992,75.943,89.56583 +630993,73.491,95.3466 +630994,73.907,93.362 +630995,74.291,91.4331 +630996,74.647,89.55314 +630997,72.09,95.331 +630998,72.541,93.3475 +630999,72.96,91.42 +631000,73.35,89.54184 +631001,70.69,95.3139 +631002,71.176,93.3324 +631003,71.629,91.4074 +631004,72.054,89.53192 +631005,69.291,95.2952 +631006,69.811,93.3168 +631007,70.298,91.3952 +631008,70.757,89.52339 +631009,67.892,95.275 +631010,68.447,93.3007 +631011,68.967,91.3834 +631012,69.459,89.51624 +631013,66.493,95.2532 +631014,67.082,93.284 +631015,67.636,91.3721 +631016,68.162,89.51047 +631017,65.095,95.2298 +631018,65.717,93.2668 +631019,66.305,91.3612 +631020,66.864,89.50607 +631021,63.697,95.205 +631022,64.353,93.249 +631023,64.974,91.3507 +631024,65.565,89.50303 +631025,62.3,95.1785 +631026,62.989,93.2307 +631027,63.643,91.3407 +631028,64.266,89.50135 +631029,60.903,95.1506 +631030,61.625,93.2119 +631031,62.311,91.3311 +631032,62.967,89.50103 +631033,59.507,95.1211 +631034,60.261,93.1926 +631035,60.98,91.3219 +631036,61.668,89.50205 +631037,58.111,95.0901 +631038,58.898,93.1727 +631039,59.648,91.3132 +631040,60.367,89.50441 +631041,56.716,95.0577 +631042,57.534,93.1523 +631043,58.316,91.3048 +631044,59.067,89.50809 +631045,55.322,95.0237 +631046,56.171,93.1314 +631047,56.984,91.2969 +631048,57.766,89.51309 +631049,53.928,94.9882 +631050,54.809,93.11 +631051,55.652,91.2894 +631052,56.464,89.5194 +631053,52.536,94.9513 +631054,53.446,93.0881 +631055,54.319,91.2823 +631056,55.162,89.52701 +631057,51.143,94.9129 +631058,52.084,93.0656 +631059,52.987,91.2756 +631060,53.859,89.53589 +631061,49.752,94.8731 +631062,50.722,93.0427 +631063,51.654,91.2693 +631064,52.555,89.54605 +631065,48.361,94.8318 +631066,49.36,93.0193 +631067,50.321,91.2634 +631068,51.251,89.55747 +631069,46.971,94.7891 +631070,47.998,92.9953 +631071,48.988,91.2579 +631072,49.946,89.57013 +631073,45.582,94.745 +631074,46.637,92.9709 +631075,47.654,91.2528 +631076,48.64,89.58403 +631077,44.194,94.6996 +631078,45.276,92.946 +631079,46.321,91.2481 +631080,47.334,89.59914 +631081,42.807,94.6527 +631082,43.916,92.9206 +631083,44.987,91.2437 +631084,46.027,89.61545 +631085,41.421,94.6046 +631086,42.555,92.8948 +631087,43.653,91.2397 +631088,44.719,89.63294 +631089,40.035,94.5551 +631090,41.195,92.8685 +631091,42.319,91.2361 +631092,43.411,89.65161 +631093,38.65,94.5042 +631094,39.836,92.8417 +631095,40.984,91.2328 +631096,42.101,89.67142 +631097,37.267,94.4521 +631098,38.476,92.8145 +631099,39.649,91.2299 +631100,40.791,89.69237 +631101,35.884,94.3988 +631102,37.117,92.7869 +631103,38.314,91.2274 +631104,39.48,89.71443 +631105,34.502,94.3441 +631106,35.759,92.7588 +631107,36.979,91.2251 +631108,38.168,89.73758 +631109,33.122,94.2883 +631110,34.4,92.7302 +631111,35.643,91.2233 +631112,36.855,89.76182 +631113,31.742,94.2312 +631114,33.042,92.7013 +631115,34.307,91.2217 +631116,35.541,89.78711 +631117,30.364,94.173 +631118,31.685,92.6719 +631119,32.971,91.2205 +631120,34.226,89.81343 +631121,28.986,94.1136 +631122,30.328,92.6421 +631123,31.634,91.2196 +631124,32.911,89.84077 +631125,27.61,94.0531 +631126,28.971,92.612 +631127,30.297,91.219 +631128,31.594,89.86911 +631129,26.234,93.9915 +631130,27.614,92.5814 +631131,28.96,91.2186 +631132,30.276,89.89841 +631133,24.86,93.9288 +631134,26.258,92.5505 +631135,27.623,91.2186 +631136,28.958,89.928666 +631137,23.487,93.865 +631138,24.903,92.5191 +631139,26.285,91.2189 +631140,27.638,89.959847 +631141,22.115,93.8002 +631142,23.548,92.4874 +631143,24.947,91.2194 +631144,26.318,89.9919307 +631145,20.744,93.7344 +631146,22.193,92.4554 +631147,23.608,91.2202 +631148,24.996,90.024894 +631149,19.375,93.6677 +631150,20.838,92.423 +631151,22.27,91.2213 +631152,23.673,90.058711 +631153,18.006,93.6 +631154,19.484,92.3902 +631155,20.931,91.2226 +631156,22.349,90.093359 +631157,16.639,93.5314 +631158,18.131,92.3571 +631159,19.591,91.2242 +631160,21.024,90.12881 +631161,15.273,93.4619 +631162,16.777,92.3237 +631163,18.251,91.226 +631164,19.698,90.16504 +631165,13.908,93.3915 +631166,15.425,92.29 +631167,16.911,91.228 +631168,18.371,90.20203 +631169,12.545,93.3203 +631170,14.072,92.256 +631171,15.571,91.2302 +631172,17.043,90.23974 +631173,11.182,93.2483 +631174,12.72,92.2217 +631175,14.23,91.2327 +631176,15.713,90.27816 +631177,9.8212,93.1756 +631178,11.369,92.1871 +631179,12.889,91.2353 +631180,14.383,90.31725 +631181,8.4613,93.1021 +631182,10.018,92.1523 +631183,11.547,91.2382 +631184,13.051,90.35698 +631185,7.1027,93.0279 +631186,8.6673,92.1171 +631187,10.205,91.2412 +631188,11.718,90.39733 +631189,5.7453,92.953 +631190,7.3172,92.0817 +631191,8.8627,91.2443 +631192,10.384,90.43828 +631193,4.3892,92.8775 +631194,5.9675,92.0461 +631195,7.52,91.2477 +631196,9.0484,90.47978 +631197,3.0344,92.8014 +631198,4.6182,92.0103 +631199,6.1769,91.2512 +631200,7.7119,90.52182 +631201,1.6809,92.7247 +631202,3.2694,91.9742 +631203,4.8334,91.2548 +631204,6.3742,90.56437 +631205,0.32861,92.6475 +631206,1.921,91.9379 +631207,3.4896,91.2586 +631208,5.0353,90.60739 +631209,358.98,92.5697 +631210,0.57315,91.9014 +631211,2.1453,91.2624 +631212,3.6952,90.65086 +631213,357.63,92.4915 +631214,359.23,91.8647 +631215,0.80074,91.2664 +631216,2.3538,90.69474 +631217,356.28,92.4128 +631218,357.88,91.8278 +631219,359.46,91.2705 +631220,1.0113,90.73902 +631221,354.93,92.3337 +631222,356.53,91.7908 +631223,358.11,91.2747 +631224,359.67,90.78365 +631225,353.59,92.2543 +631226,355.19,91.7536 +631227,356.76,91.2789 +631228,358.32,90.8286 +631229,352.24,92.1745 +631230,353.84,91.7163 +631231,355.42,91.2833 +631232,356.98,90.87386 +631233,350.9,92.0944 +631234,352.5,91.6788 +631235,354.07,91.2876 +631236,355.63,90.91938 +631237,349.56,92.014 +631238,351.15,91.6412 +631239,352.73,91.2921 +631240,354.28,90.96513 +631241,348.22,91.9334 +631242,349.81,91.6035 +631243,351.38,91.2965 +631244,352.93,91.0111 +631245,346.88,91.8525 +631246,348.46,91.5657 +631247,350.03,91.301 +631248,351.58,91.0572 +631249,345.54,91.7715 +631250,347.12,91.5278 +631251,348.68,91.3055 +631252,350.23,91.1035 +631253,344.2,91.6903 +631254,345.78,91.4898 +631255,347.33,91.3101 +631256,348.87,91.1499 +631257,342.87,91.6091 +631258,344.43,91.4517 +631259,345.98,91.3146 +631260,347.52,91.1963 +631261,341.53,91.5278 +631262,343.09,91.4136 +631263,344.64,91.3191 +631264,346.16,91.2429 +631265,340.2,91.4464 +631266,341.75,91.3755 +631267,343.29,91.3235 +631268,344.8,91.2894 +631269,338.87,91.365 +631270,340.41,91.3373 +631271,341.94,91.328 +631272,343.45,91.3359 +631273,337.54,91.2837 +631274,339.07,91.2991 +631275,340.59,91.3323 +631276,342.09,91.3824 +631277,336.21,91.2024 +631278,337.73,91.2608 +631279,339.23,91.3367 +631280,340.73,91.4288 +631281,334.88,91.1212 +631282,336.39,91.2226 +631283,337.88,91.3409 +631284,339.36,91.475 +631285,333.55,91.0401 +631286,335.05,91.1844 +631287,336.53,91.3451 +631288,338,91.5212 +631289,332.23,90.9592 +631290,333.71,91.1462 +631291,335.18,91.3492 +631292,336.64,91.5672 +631293,330.9,90.87849 +631294,332.37,91.108 +631295,333.83,91.3532 +631296,335.27,91.6129 +631297,329.58,90.79801 +631298,331.03,91.0698 +631299,332.48,91.357 +631300,333.9,91.6585 +631301,328.26,90.71779 +631302,329.7,91.0318 +631303,331.12,91.3608 +631304,332.53,91.7037 +631305,326.94,90.63786 +631306,328.36,90.99374 +631307,329.77,91.3644 +631308,331.17,91.7487 +631309,325.62,90.55826 +631310,327.02,90.95579 +631311,328.42,91.3679 +631312,329.8,91.7933 +631313,324.3,90.47901 +631314,325.69,90.91793 +631315,327.06,91.3712 +631316,328.42,91.8376 +631317,322.98,90.40015 +631318,324.35,90.88017 +631319,325.71,91.3743 +631320,327.05,91.8815 +631321,321.66,90.32171 +631322,323.01,90.84251 +631323,324.35,91.3773 +631324,325.68,91.925 +631325,320.35,90.24372 +631326,321.68,90.80496 +631327,323,91.3801 +631328,324.3,91.968 +631329,319.04,90.16622 +631330,320.34,90.76755 +631331,321.64,91.3827 +631332,322.93,92.0105 +631333,317.72,90.08922 +631334,319.01,90.73027 +631335,320.29,91.3851 +631336,321.55,92.0526 +631337,316.41,90.012765 +631338,317.68,90.69314 +631339,318.93,91.3873 +631340,320.17,92.094 +631341,315.1,89.936881 +631342,316.34,90.65617 +631343,317.57,91.3892 +631344,318.79,92.135 +631345,313.79,89.8616 +631346,315.01,90.61936 +631347,316.22,91.391 +631348,317.41,92.1753 +631349,312.48,89.78694 +631350,313.68,90.58273 +631351,314.86,91.3924 +631352,316.03,92.2149 +631353,311.17,89.71295 +631354,312.34,90.54629 +631355,313.5,91.3937 +631356,314.65,92.254 +631357,309.87,89.63964 +631358,311.01,90.51004 +631359,312.15,91.3946 +631360,313.27,92.2923 +631361,308.56,89.56704 +631362,309.68,90.474 +631363,310.79,91.3953 +631364,311.88,92.3299 +631365,307.25,89.49519 +631366,308.35,90.43818 +631367,309.43,91.3957 +631368,310.5,92.3668 +631369,305.95,89.4241 +631370,307.02,90.40258 +631371,308.07,91.3959 +631372,309.11,92.4029 +631373,304.65,89.35381 +631374,305.69,90.36721 +631375,306.71,91.3957 +631376,307.73,92.4382 +631377,303.34,89.28434 +631378,304.36,90.33209 +631379,305.36,91.3952 +631380,306.34,92.4727 +631381,302.04,89.21571 +631382,303.03,90.29721 +631383,304,91.3944 +631384,304.95,92.5063 +631385,300.74,89.14795 +631386,301.7,90.2626 +631387,302.64,91.3933 +631388,303.56,92.539 +631389,299.44,89.08109 +631390,300.37,90.22825 +631391,301.28,91.3918 +631392,302.17,92.5709 +631393,298.14,89.01515 +631394,299.04,90.19419 +631395,299.92,91.39 +631396,300.78,92.6018 +631397,296.85,88.9501 +631398,297.71,90.1604 +631399,298.56,91.3878 +631400,299.39,92.6317 +631401,295.55,88.8861 +631402,296.38,90.12691 +631403,297.2,91.3853 +631404,298,92.6607 +631405,294.25,88.8231 +631406,295.05,90.09372 +631407,295.84,91.3825 +631408,296.61,92.6887 +631409,292.95,88.761 +631410,293.72,90.060837 +631411,294.48,91.3792 +631412,295.21,92.7156 +631413,291.66,88.7 +631414,292.4,90.028269 +631415,293.12,91.3756 +631416,293.82,92.7415 +631417,290.36,88.6401 +631418,291.07,89.9960229 +631419,291.76,91.3715 +631420,292.42,92.7663 +631421,289.07,88.5812 +631422,289.74,89.964107 +631423,290.39,91.3671 +631424,291.03,92.79 +631425,287.78,88.5234 +631426,288.41,89.932527 +631427,289.03,91.3623 +631428,289.63,92.8126 +631429,286.48,88.4667 +631430,287.09,89.90129 +631431,287.67,91.3571 +631432,288.24,92.8341 +631433,285.19,88.4111 +631434,285.76,89.8704 +631435,286.31,91.3515 +631436,286.84,92.8544 +631437,283.9,88.3567 +631438,284.43,89.83987 +631439,284.95,91.3454 +631440,285.44,92.8735 +631441,282.61,88.3034 +631442,283.11,89.8097 +631443,283.59,91.3389 +631444,284.05,92.8914 +631445,281.32,88.2514 +631446,281.78,89.7799 +631447,282.23,91.332 +631448,282.65,92.9081 +631449,280.03,88.2005 +631450,280.46,89.75046 +631451,280.86,91.3246 +631452,281.25,92.9236 +631453,278.74,88.1508 +631454,279.13,89.72141 +631455,279.5,91.3168 +631456,279.85,92.9378 +631457,277.45,88.1024 +631458,277.8,89.69274 +631459,278.14,91.3086 +631460,278.45,92.9507 +631461,276.16,88.0551 +631462,276.48,89.66446 +631463,276.78,91.2999 +631464,277.05,92.9624 +631465,274.87,88.0092 +631466,275.15,89.63658 +631467,275.42,91.2907 +631468,275.65,92.9727 +631469,273.58,87.9645 +631470,273.83,89.60909 +631471,274.05,91.2811 +631472,274.25,92.9818 +631473,272.29,87.921 +631474,272.5,89.582 +631475,272.69,91.271 +631476,272.85,92.9894 +631477,271,87.8789 +631478,271.18,89.55532 +631479,271.33,91.2604 +631480,271.45,92.9958 +631481,269.71,87.838 +631482,269.85,89.52904 +631483,269.97,91.2493 +631484,270.05,93.0008 +631485,268.43,87.7985 +631486,268.53,89.50319 +631487,268.6,91.2378 +631488,268.65,93.0044 +631489,267.14,87.7603 +631490,267.2,89.47774 +631491,267.24,91.2258 +631492,267.25,93.0066 +631493,265.85,87.7233 +631494,265.88,89.45272 +631495,265.88,91.2133 +631496,265.85,93.0074 +631497,264.56,87.6878 +631498,264.55,89.42812 +631499,264.52,91.2003 +631500,264.45,93.0068 +631501,263.27,87.6535 +631502,263.23,89.40395 +631503,263.15,91.1868 +631504,263.05,93.0048 +631505,261.99,87.6206 +631506,261.91,89.3802 +631507,261.79,91.1728 +631508,261.65,93.0014 +631509,260.7,87.5891 +631510,260.58,89.35689 +631511,260.43,91.1584 +631512,260.24,92.9966 +631513,259.41,87.5589 +631514,259.26,89.334 +631515,259.07,91.1434 +631516,258.84,92.9903 +631517,258.12,87.53 +631518,257.93,89.31155 +631519,257.71,91.1279 +631520,257.44,92.9825 +631521,256.84,87.5026 +631522,256.61,89.28954 +631523,256.34,91.1119 +631524,256.04,92.9733 +631525,255.55,87.4764 +631526,255.28,89.26796 +631527,254.98,91.0955 +631528,254.64,92.9626 +631529,254.26,87.4517 +631530,253.96,89.24681 +631531,253.62,91.0785 +631532,253.24,92.9505 +631533,252.97,87.4283 +631534,252.63,89.22611 +631535,252.26,91.061 +631536,251.84,92.9369 +631537,251.69,87.4063 +631538,251.31,89.20585 +631539,250.9,91.043 +631540,250.44,92.9219 +631541,250.4,87.3856 +631542,249.98,89.18602 +631543,249.54,91.0245 +631544,249.04,92.9053 +631545,249.11,87.3664 +631546,248.66,89.16663 +631547,248.17,91.0055 +631548,247.65,92.8873 +631549,247.82,87.3485 +631550,247.34,89.14768 +631551,246.81,90.98595 +631552,246.25,92.8678 +631553,246.53,87.3319 +631554,246.01,89.12917 +631555,245.45,90.96593 +631556,244.85,92.8469 +631557,245.24,87.3167 +631558,244.69,89.1111 +631559,244.09,90.9454 +631560,243.45,92.8244 +631561,243.95,87.3029 +631562,243.36,89.09347 +631563,242.73,90.92437 +631564,242.06,92.8005 +631565,242.66,87.2904 +631566,242.04,89.07627 +631567,241.37,90.90283 +631568,240.66,92.7751 +631569,241.37,87.2793 +631570,240.71,89.0595 +631571,240.01,90.8808 +631572,239.26,92.7483 +631573,240.08,87.2695 +631574,239.38,89.04317 +631575,238.65,90.85826 +631576,237.87,92.72 +631577,238.79,87.261 +631578,238.06,89.02726 +631579,237.29,90.83522 +631580,236.47,92.6902 +631581,237.5,87.2539 +631582,236.73,89.01179 +631583,235.93,90.81169 +631584,235.08,92.659 +631585,236.2,87.2481 +631586,235.41,88.9967 +631587,234.57,90.78767 +631588,233.69,92.6264 +631589,234.91,87.2436 +631590,234.08,88.9821 +631591,233.21,90.76315 +631592,232.29,92.5923 +631593,233.62,87.2404 +631594,232.76,88.9679 +631595,231.85,90.73815 +631596,230.9,92.5567 +631597,232.32,87.2385 +631598,231.43,88.9541 +631599,230.49,90.71266 +631600,229.51,92.5198 +631601,231.03,87.2379 +631602,230.1,88.9408 +631603,229.14,90.68669 +631604,228.12,92.4814 +631605,229.73,87.2386 +631606,228.78,88.9278 +631607,227.78,90.66025 +631608,226.73,92.4417 +631609,228.44,87.2405 +631610,227.45,88.9152 +631611,226.42,90.63333 +631612,225.34,92.4005 +631613,227.14,87.2437 +631614,226.12,88.9031 +631615,225.06,90.60594 +631616,223.95,92.358 +631617,225.84,87.2481 +631618,224.8,88.8913 +631619,223.71,90.57808 +631620,222.57,92.3141 +631621,224.54,87.2538 +631622,223.47,88.88 +631623,222.35,90.54977 +631624,221.18,92.2689 +631625,223.25,87.2606 +631626,222.14,88.869 +631627,220.99,90.52099 +631628,219.79,92.2223 +631629,221.95,87.2687 +631630,220.81,88.8585 +631631,219.64,90.49177 +631632,218.41,92.1744 +631633,220.65,87.2779 +631634,219.48,88.8483 +631635,218.28,90.4621 +631636,217.03,92.1252 +631637,219.34,87.2883 +631638,218.16,88.8384 +631639,216.92,90.43199 +631640,215.64,92.0747 +631641,218.04,87.2998 +631642,216.83,88.829 +631643,215.57,90.40145 +631644,214.26,92.0229 +631645,216.74,87.3125 +631646,215.5,88.8199 +631647,214.21,90.37047 +631648,212.88,91.9699 +631649,215.43,87.3263 +631650,214.17,88.8112 +631651,212.86,90.33908 +631652,211.5,91.9156 +631653,214.13,87.3412 +631654,212.84,88.8028 +631655,211.51,90.30726 +631656,210.12,91.8601 +631657,212.82,87.3571 +631658,211.51,88.7948 +631659,210.15,90.27504 +631660,208.75,91.8034 +631661,211.52,87.3742 +631662,210.18,88.7871 +631663,208.8,90.24241 +631664,207.37,91.7456 +631665,210.21,87.3922 +631666,208.85,88.7797 +631667,207.45,90.20939 +631668,205.99,91.6865 +631669,208.9,87.4113 +631670,207.52,88.7727 +631671,206.09,90.17598 +631672,204.62,91.6264 +631673,207.59,87.4314 +631674,206.19,88.766 +631675,204.74,90.14218 +631676,203.25,91.5651 +631677,206.28,87.4525 +631678,204.86,88.7596 +631679,203.39,90.10801 +631680,201.88,91.5027 +631681,204.97,87.4745 +631682,203.52,88.7535 +631683,202.04,90.073476 +631684,200.51,91.4393 +631685,203.65,87.4974 +631686,202.19,88.7478 +631687,200.69,90.03858 +631688,199.14,91.3748 +631689,202.34,87.5213 +631690,200.86,88.7423 +631691,199.34,90.0033318 +631692,197.77,91.3093 +631693,201.02,87.546 +631694,199.53,88.7371 +631695,197.99,89.96774 +631696,196.4,91.2428 +631697,199.71,87.5716 +631698,198.19,88.7321 +631699,196.64,89.931814 +631700,195.04,91.1753 +631701,198.39,87.5981 +631702,196.86,88.7275 +631703,195.29,89.89556 +631704,193.67,91.1069 +631705,197.07,87.6254 +631706,195.53,88.7231 +631707,193.94,89.85899 +631708,192.31,91.0375 +631709,195.75,87.6534 +631710,194.19,88.7189 +631711,192.59,89.82211 +631712,190.95,90.9673 +631713,194.43,87.6823 +631714,192.86,88.715 +631715,191.24,89.78493 +631716,189.59,90.8962 +631717,193.11,87.7119 +631718,191.52,88.7113 +631719,189.9,89.74746 +631720,188.23,90.82427 +631721,191.78,87.7422 +631722,190.19,88.7079 +631723,188.55,89.7097 +631724,186.87,90.75154 +631725,190.46,87.7732 +631726,188.85,88.7047 +631727,187.2,89.67167 +631728,185.51,90.67802 +631729,189.13,87.8048 +631730,187.51,88.7016 +631731,185.86,89.63338 +631732,184.16,90.60376 +631733,187.81,87.8371 +631734,186.18,88.6988 +631735,184.51,89.59484 +631736,182.81,90.52877 +631737,186.48,87.87 +631738,184.84,88.6962 +631739,183.17,89.55605 +631740,181.45,90.4531 +631741,185.15,87.9035 +631742,183.5,88.6937 +631743,181.82,89.51702 +631744,180.1,90.37676 +631745,183.82,87.9376 +631746,182.17,88.6914 +631747,180.48,89.47777 +631748,178.75,90.2998 +631749,182.49,87.9722 +631750,180.83,88.6893 +631751,179.14,89.43831 +631752,177.4,90.22223 +631753,181.15,88.0072 +631754,179.49,88.6874 +631755,177.79,89.39864 +631756,176.06,90.14409 +631757,179.82,88.0428 +631758,178.15,88.6855 +631759,176.45,89.35878 +631760,174.71,90.065421 +631761,178.48,88.0788 +631762,176.81,88.6839 +631763,175.11,89.31873 +631764,173.37,89.986243 +631765,177.14,88.1152 +631766,175.47,88.6823 +631767,173.77,89.27851 +631768,172.02,89.90659 +631769,175.81,88.152 +631770,174.13,88.6809 +631771,172.43,89.23812 +631772,170.68,89.8265 +631773,174.47,88.1892 +631774,172.79,88.6795 +631775,171.09,89.19758 +631776,169.34,89.74599 +631777,173.12,88.2267 +631778,171.45,88.6783 +631779,169.75,89.1569 +631780,168,89.66511 +631781,171.78,88.2645 +631782,170.11,88.6771 +631783,168.41,89.11609 +631784,166.67,89.58388 +631785,170.44,88.3026 +631786,168.77,88.676 +631787,167.07,89.07515 +631788,165.33,89.50234 +631789,169.09,88.3409 +631790,167.43,88.675 +631791,165.73,89.03411 +631792,164,89.42051 +631793,167.75,88.3794 +631794,166.08,88.674 +631795,164.39,88.993 +631796,162.66,89.33845 +631797,166.4,88.4181 +631798,164.74,88.6731 +631799,163.05,88.9517 +631800,161.33,89.25616 +631801,165.05,88.457 +631802,163.4,88.6722 +631803,161.72,88.9104 +631804,160,89.17369 +631805,163.7,88.4959 +631806,162.05,88.6713 +631807,160.38,88.869 +631808,158.67,89.09108 +631809,162.35,88.535 +631810,160.71,88.6704 +631811,159.04,88.8276 +631812,157.35,89.00835 +631813,161,88.5741 +631814,159.37,88.6696 +631815,157.71,88.7861 +631816,156.02,88.9255 +631817,159.64,88.6133 +631818,158.02,88.6687 +631819,156.37,88.7446 +631820,154.69,88.8427 +631821,158.29,88.6525 +631822,156.68,88.6678 +631823,155.04,88.703 +631824,153.37,88.7598 +631825,156.93,88.6916 +631826,155.33,88.6669 +631827,153.7,88.6615 +631828,152.05,88.6769 +631829,155.57,88.7307 +631830,153.98,88.666 +631831,152.37,88.6199 +631832,150.73,88.5941 +631833,154.21,88.7696 +631834,152.64,88.665 +631835,151.03,88.5783 +631836,149.41,88.5114 +631837,152.85,88.8085 +631838,151.29,88.6639 +631839,149.7,88.5368 +631840,148.09,88.4287 +631841,151.49,88.8472 +631842,149.94,88.6628 +631843,148.37,88.4953 +631844,146.77,88.3462 +631845,150.13,88.8857 +631846,148.6,88.6616 +631847,147.04,88.4538 +631848,145.46,88.2639 +631849,148.77,88.9241 +631850,147.25,88.6603 +631851,145.71,88.4124 +631852,144.14,88.1819 +631853,147.4,88.9621 +631854,145.9,88.6589 +631855,144.38,88.371 +631856,142.83,88.1 +631857,146.03,89 +631858,144.55,88.6574 +631859,143.04,88.3297 +631860,141.52,88.0184 +631861,144.67,89.03747 +631862,143.2,88.6558 +631863,141.71,88.2885 +631864,140.21,87.9372 +631865,143.3,89.07465 +631866,141.85,88.654 +631867,140.38,88.2474 +631868,138.9,87.8562 +631869,141.93,89.11148 +631870,140.5,88.6522 +631871,139.06,88.2064 +631872,137.59,87.7756 +631873,140.56,89.14792 +631874,139.15,88.6501 +631875,137.73,88.1655 +631876,136.28,87.6955 +631877,139.19,89.18394 +631878,137.8,88.6479 +631879,136.4,88.1247 +631880,134.97,87.6157 +631881,137.81,89.21952 +631882,136.45,88.6456 +631883,135.07,88.084 +631884,133.67,87.5365 +631885,136.44,89.25462 +631886,135.1,88.643 +631887,133.74,88.0435 +631888,132.36,87.4577 +631889,135.06,89.28922 +631890,133.75,88.6403 +631891,132.41,88.0032 +631892,131.06,87.3794 +631893,133.69,89.3233 +631894,132.4,88.6374 +631895,131.09,87.963 +631896,129.76,87.3017 +631897,132.31,89.35681 +631898,131.04,88.6342 +631899,129.76,87.9229 +631900,128.46,87.2245 +631901,130.93,89.38974 +631902,129.69,88.6309 +631903,128.44,87.8831 +631904,127.16,87.148 +631905,129.55,89.42205 +631906,128.34,88.6273 +631907,127.11,87.8435 +631908,125.86,87.0721 +631909,128.17,89.45373 +631910,126.99,88.6235 +631911,125.78,87.804 +631912,124.56,86.9968 +631913,126.79,89.48474 +631914,125.63,88.6194 +631915,124.46,87.7648 +631916,123.27,86.9222 +631917,125.4,89.51505 +631918,124.28,88.6151 +631919,123.13,87.7257 +631920,121.97,86.8484 +631921,124.02,89.54465 +631922,122.93,88.6106 +631923,121.81,87.6869 +631924,120.68,86.7753 +631925,122.64,89.5735 +631926,121.57,88.6057 +631927,120.49,87.6484 +631928,119.38,86.7029 +631929,121.25,89.60158 +631930,120.22,88.6006 +631931,119.16,87.6101 +631932,118.09,86.6314 +631933,119.87,89.62886 +631934,118.86,88.5952 +631935,117.84,87.572 +631936,116.8,86.5607 +631937,118.48,89.65532 +631938,117.51,88.5895 +631939,116.52,87.5342 +631940,115.51,86.4908 +631941,117.09,89.68094 +631942,116.15,88.5835 +631943,115.19,87.4967 +631944,114.22,86.4218 +631945,115.7,89.70568 +631946,114.8,88.5772 +631947,113.87,87.4594 +631948,112.93,86.3537 +631949,114.31,89.72954 +631950,113.44,88.5706 +631951,112.55,87.4225 +631952,111.64,86.2865 +631953,112.92,89.75248 +631954,112.09,88.5637 +631955,111.23,87.3858 +631956,110.35,86.2202 +631957,111.53,89.77448 +631958,110.73,88.5564 +631959,109.91,87.3494 +631960,109.06,86.1549 +631961,110.14,89.79552 +631962,109.37,88.5488 +631963,108.59,87.3134 +631964,107.78,86.0905 +631965,108.75,89.81557 +631966,108.02,88.5408 +631967,107.26,87.2776 +631968,106.49,86.0272 +631969,107.36,89.83463 +631970,106.66,88.5325 +631971,105.94,87.2422 +631972,105.21,85.9649 +631973,105.96,89.85265 +631974,105.3,88.5238 +631975,104.62,87.2071 +631976,103.92,85.9036 +631977,104.57,89.86964 +631978,103.95,88.5148 +631979,103.3,87.1723 +631980,102.64,85.8434 +631981,103.17,89.88555 +631982,102.59,88.5053 +631983,101.98,87.1379 +631984,101.35,85.7843 +631985,101.78,89.900388 +631986,101.23,88.4955 +631987,100.66,87.1039 +631988,100.07,85.7263 +631989,100.38,89.914119 +631990,99.876,88.4853 +631991,99.344,87.0702 +631992,98.789,85.6694 +631993,98.988,89.926728 +631994,98.519,88.4748 +631995,98.025,87.0368 +631996,97.507,85.6136 +631997,97.591,89.938198 +631998,97.161,88.4638 +631999,96.706,87.0038 +632000,96.226,85.559 +632001,96.195,89.948512 +632002,95.804,88.4524 +632003,95.387,86.9712 +632004,94.945,85.5055 +632005,94.797,89.957654 +632006,94.446,88.4406 +632007,94.068,86.939 +632008,93.665,85.4532 +632009,93.4,89.965606 +632010,93.088,88.4284 +632011,92.749,86.9071 +632012,92.385,85.4021 +632013,92.002,89.972354 +632014,91.73,88.4158 +632015,91.431,86.8757 +632016,91.105,85.3522 +632017,90.604,89.977883 +632018,90.373,88.4028 +632019,90.113,86.8446 +632020,89.825,85.3035 +632021,89.206,89.982179 +632022,89.015,88.3893 +632023,88.794,86.8139 +632024,88.546,85.2561 +632025,87.807,89.985227 +632026,87.657,88.3754 +632027,87.476,86.7836 +632028,87.267,85.2099 +632029,86.409,89.987016 +632030,86.299,88.3611 +632031,86.158,86.7538 +632032,85.989,85.165 +632033,85.01,89.987532 +632034,84.941,88.3463 +632035,84.84,86.7243 +632036,84.71,85.1213 +632037,83.611,89.986764 +632038,83.583,88.3311 +632039,83.522,86.6952 +632040,83.432,85.0789 +632041,82.212,89.984701 +632042,82.225,88.3154 +632043,82.205,86.6666 +632044,82.154,85.0378 +632045,80.813,89.981332 +632046,80.867,88.2993 +632047,80.887,86.6384 +632048,80.876,84.9979 +632049,79.413,89.976647 +632050,79.509,88.2827 +632051,79.569,86.6106 +632052,79.598,84.9594 +632053,78.014,89.970638 +632054,78.151,88.2657 +632055,78.252,86.5832 +632056,78.32,84.9222 +632057,76.615,89.963296 +632058,76.793,88.2483 +632059,76.934,86.5563 +632060,77.042,84.8863 +632061,75.216,89.954613 +632062,75.435,88.2303 +632063,75.617,86.5297 +632064,75.764,84.8517 +632065,73.817,89.944582 +632066,74.077,88.2119 +632067,74.299,86.5036 +632068,74.486,84.8184 +632069,72.419,89.933196 +632070,72.72,88.1931 +632071,72.982,86.478 +632072,73.208,84.7865 +632073,71.02,89.920451 +632074,71.362,88.1738 +632075,71.664,86.4527 +632076,71.93,84.7559 +632077,69.622,89.90634 +632078,70.004,88.154 +632079,70.347,86.4279 +632080,70.652,84.7266 +632081,68.224,89.89086 +632082,68.647,88.1337 +632083,69.029,86.4036 +632084,69.374,84.6986 +632085,66.826,89.87401 +632086,67.29,88.113 +632087,67.711,86.3797 +632088,68.095,84.672 +632089,65.428,89.85578 +632090,65.933,88.0918 +632091,66.394,86.3562 +632092,66.816,84.6468 +632093,64.031,89.83617 +632094,64.576,88.0702 +632095,65.076,86.3331 +632096,65.537,84.6228 +632097,62.635,89.81519 +632098,63.219,88.048 +632099,63.758,86.3105 +632100,64.258,84.6002 +632101,61.238,89.79282 +632102,61.862,88.0255 +632103,62.44,86.2883 +632104,62.978,84.579 +632105,59.842,89.76907 +632106,60.506,88.0024 +632107,61.122,86.2666 +632108,61.698,84.559 +632109,58.447,89.74395 +632110,59.149,87.9789 +632111,59.804,86.2453 +632112,60.418,84.5404 +632113,57.052,89.71744 +632114,57.793,87.9549 +632115,58.486,86.2244 +632116,59.137,84.5231 +632117,55.658,89.68956 +632118,56.437,87.9304 +632119,57.168,86.2039 +632120,57.856,84.5072 +632121,54.264,89.66031 +632122,55.082,87.9055 +632123,55.85,86.1839 +632124,56.574,84.4925 +632125,52.87,89.62969 +632126,53.726,87.8801 +632127,54.531,86.1644 +632128,55.292,84.4792 +632129,51.478,89.5977 +632130,52.371,87.8543 +632131,53.212,86.1452 +632132,54.01,84.4671 +632133,50.086,89.56435 +632134,51.016,87.828 +632135,51.894,86.1265 +632136,52.727,84.4564 +632137,48.695,89.52965 +632138,49.661,87.8012 +632139,50.575,86.1082 +632140,51.443,84.447 +632141,47.304,89.4936 +632142,48.306,87.774 +632143,49.255,86.0903 +632144,50.158,84.4388 +632145,45.914,89.45621 +632146,46.952,87.7464 +632147,47.936,86.0728 +632148,48.873,84.4319 +632149,44.525,89.41749 +632150,45.598,87.7182 +632151,46.616,86.0558 +632152,47.588,84.4263 +632153,43.137,89.37745 +632154,44.245,87.6897 +632155,45.297,86.0391 +632156,46.302,84.4219 +632157,41.75,89.33609 +632158,42.891,87.6607 +632159,43.977,86.0229 +632160,45.015,84.4188 +632161,40.364,89.29343 +632162,41.538,87.6313 +632163,42.657,86.0071 +632164,43.727,84.4169 +632165,38.978,89.24947 +632166,40.185,87.6014 +632167,41.336,85.9917 +632168,42.438,84.4162 +632169,37.593,89.20423 +632170,38.833,87.5711 +632171,40.015,85.9767 +632172,41.149,84.4167 +632173,36.21,89.15772 +632174,37.481,87.5404 +632175,38.695,85.962 +632176,39.859,84.4184 +632177,34.827,89.10996 +632178,36.129,87.5092 +632179,37.373,85.9478 +632180,38.568,84.4213 +632181,33.445,89.06095 +632182,34.778,87.4777 +632183,36.052,85.9339 +632184,37.276,84.4254 +632185,32.064,89.01071 +632186,33.427,87.4457 +632187,34.73,85.9205 +632188,35.984,84.4306 +632189,30.685,88.9593 +632190,32.076,87.4134 +632191,33.408,85.9074 +632192,34.69,84.4369 +632193,29.306,88.9066 +632194,30.726,87.3806 +632195,32.086,85.8946 +632196,33.396,84.4444 +632197,27.929,88.8528 +632198,29.376,87.3474 +632199,30.764,85.8823 +632200,32.1,84.4529 +632201,26.552,88.7978 +632202,28.026,87.3138 +632203,29.441,85.8703 +632204,30.804,84.4626 +632205,25.177,88.7416 +632206,26.677,87.2799 +632207,28.118,85.8586 +632208,29.507,84.4733 +632209,23.803,88.6844 +632210,25.329,87.2456 +632211,26.794,85.8473 +632212,28.208,84.485 +632213,22.43,88.626 +632214,23.98,87.2109 +632215,25.47,85.8363 +632216,26.909,84.4978 +632217,21.058,88.5665 +632218,22.632,87.1758 +632219,24.146,85.8257 +632220,25.609,84.5116 +632221,19.688,88.506 +632222,21.285,87.1404 +632223,22.822,85.8154 +632224,24.307,84.5264 +632225,18.319,88.4444 +632226,19.938,87.1047 +632227,21.497,85.8054 +632228,23.004,84.5421 +632229,16.951,88.3817 +632230,18.591,87.0686 +632231,20.172,85.7957 +632232,21.701,84.5588 +632233,15.584,88.3181 +632234,17.245,87.0321 +632235,18.846,85.7864 +632236,20.396,84.5765 +632237,14.218,88.2535 +632238,15.9,86.9953 +632239,17.52,85.7773 +632240,19.09,84.595 +632241,12.854,88.1879 +632242,14.554,86.9582 +632243,16.194,85.7685 +632244,17.783,84.6144 +632245,11.492,88.1214 +632246,13.21,86.9208 +632247,14.868,85.76 +632248,16.474,84.6347 +632249,10.13,88.0539 +632250,11.865,86.8831 +632251,13.541,85.7518 +632252,15.165,84.6558 +632253,8.7699,87.9856 +632254,10.521,86.8451 +632255,12.213,85.7439 +632256,13.854,84.6777 +632257,7.4112,87.9164 +632258,9.1779,86.8068 +632259,10.886,85.7362 +632260,12.542,84.7004 +632261,6.0538,87.8464 +632262,7.835,86.7682 +632263,9.5575,85.7288 +632264,11.229,84.7239 +632265,4.6978,87.7755 +632266,6.4926,86.7294 +632267,8.229,85.7216 +632268,9.9148,84.7482 +632269,3.3432,87.7039 +632270,5.1506,86.6903 +632271,6.9001,85.7147 +632272,8.5991,84.7731 +632273,1.99,87.6315 +632274,3.8092,86.6509 +632275,5.5708,85.708 +632276,7.2822,84.7987 +632277,0.63828,87.5583 +632278,2.4682,86.6113 +632279,4.241,85.7015 +632280,5.964,84.825 +632281,359.29,87.4845 +632282,1.1278,86.5714 +632283,2.9109,85.6952 +632284,4.6445,84.852 +632285,357.94,87.4099 +632286,359.79,86.5313 +632287,1.5804,85.6891 +632288,3.3237,84.8795 +632289,356.59,87.3348 +632290,358.45,86.491 +632291,0.24944,85.6832 +632292,2.0016,84.9077 +632293,355.25,87.2589 +632294,357.11,86.4505 +632295,358.92,85.6775 +632296,0.67822,84.9364 +632297,353.9,87.1825 +632298,355.77,86.4098 +632299,357.59,85.672 +632300,359.35,84.9657 +632301,352.56,87.1056 +632302,354.43,86.3689 +632303,356.25,85.6666 +632304,358.03,84.9954 +632305,351.22,87.0281 +632306,353.1,86.3278 +632307,354.92,85.6614 +632308,356.7,85.0257 +632309,349.88,86.95 +632310,351.76,86.2865 +632311,353.59,85.6564 +632312,355.37,85.0563 +632313,348.54,86.8715 +632314,350.42,86.2451 +632315,352.25,85.6515 +632316,354.04,85.0875 +632317,347.2,86.7926 +632318,349.09,86.2035 +632319,350.92,85.6467 +632320,352.71,85.119 +632321,345.86,86.7132 +632322,347.75,86.1618 +632323,349.59,85.642 +632324,351.38,85.1509 +632325,344.53,86.6335 +632326,346.42,86.1199 +632327,348.25,85.6375 +632328,350.04,85.1831 +632329,343.2,86.5534 +632330,345.08,86.078 +632331,346.92,85.633 +632332,348.71,85.2156 +632333,341.87,86.473 +632334,343.75,86.0359 +632335,345.58,85.6287 +632336,347.37,85.2485 +632337,340.54,86.3923 +632338,342.41,85.9937 +632339,344.24,85.6244 +632340,346.03,85.2815 +632341,339.21,86.3113 +632342,341.08,85.9514 +632343,342.91,85.6202 +632344,344.69,85.3148 +632345,337.88,86.2301 +632346,339.75,85.9091 +632347,341.57,85.6161 +632348,343.35,85.3483 +632349,336.56,86.1486 +632350,338.42,85.8666 +632351,340.23,85.612 +632352,342.01,85.382 +632353,335.23,86.0671 +632354,337.09,85.8241 +632355,338.9,85.6079 +632356,340.67,85.4158 +632357,333.91,85.9853 +632358,335.76,85.7816 +632359,337.56,85.6039 +632360,339.32,85.4498 +632361,332.59,85.9035 +632362,334.43,85.739 +632363,336.22,85.5999 +632364,337.97,85.4838 +632365,331.27,85.8216 +632366,333.1,85.6964 +632367,334.88,85.5959 +632368,336.63,85.5178 +632369,329.95,85.7397 +632370,331.77,85.6538 +632371,333.54,85.592 +632372,335.28,85.5519 +632373,328.63,85.6577 +632374,330.44,85.6111 +632375,332.2,85.588 +632376,333.93,85.586 +632377,327.32,85.5758 +632378,329.11,85.5685 +632379,330.86,85.584 +632380,332.57,85.6201 +632381,326,85.4939 +632382,327.78,85.5258 +632383,329.52,85.58 +632384,331.22,85.654 +632385,324.69,85.4122 +632386,326.45,85.4832 +632387,328.18,85.5759 +632388,329.87,85.6879 +632389,323.38,85.3305 +632390,325.13,85.4407 +632391,326.84,85.5718 +632392,328.51,85.7217 +632393,322.07,85.249 +632394,323.8,85.3981 +632395,325.5,85.5676 +632396,327.15,85.7553 +632397,320.76,85.1676 +632398,322.48,85.3556 +632399,324.15,85.5634 +632400,325.8,85.7888 +632401,319.45,85.0865 +632402,321.15,85.3132 +632403,322.81,85.5591 +632404,324.44,85.822 +632405,318.15,85.0056 +632406,319.82,85.2709 +632407,321.47,85.5547 +632408,323.07,85.855 +632409,316.84,84.9249 +632410,318.5,85.2286 +632411,320.12,85.5502 +632412,321.71,85.8877 +632413,315.54,84.8446 +632414,317.18,85.1864 +632415,318.78,85.5456 +632416,320.35,85.9202 +632417,314.24,84.7646 +632418,315.85,85.1444 +632419,317.44,85.5409 +632420,318.98,85.9523 +632421,312.94,84.685 +632422,314.53,85.1024 +632423,316.09,85.5361 +632424,317.62,85.9841 +632425,311.64,84.6058 +632426,313.21,85.0606 +632427,314.75,85.5311 +632428,316.25,86.0155 +632429,310.34,84.5269 +632430,311.89,85.0189 +632431,313.4,85.526 +632432,314.88,86.0464 +632433,309.04,84.4486 +632434,310.56,84.9773 +632435,312.05,85.5207 +632436,313.51,86.077 +632437,307.75,84.3707 +632438,309.24,84.9359 +632439,310.71,85.5153 +632440,312.14,86.1071 +632441,306.45,84.2933 +632442,307.92,84.8946 +632443,309.36,85.5097 +632444,310.77,86.1367 +632445,305.16,84.2165 +632446,306.6,84.8536 +632447,308.01,85.504 +632448,309.4,86.1658 +632449,303.87,84.1402 +632450,305.28,84.8127 +632451,306.67,85.498 +632452,308.02,86.1944 +632453,302.57,84.0645 +632454,303.96,84.7719 +632455,305.32,85.4918 +632456,306.65,86.2224 +632457,301.28,83.9895 +632458,302.64,84.7314 +632459,303.97,85.4855 +632460,305.27,86.2498 +632461,300,83.915 +632462,301.32,84.6911 +632463,302.62,85.4789 +632464,303.9,86.2766 +632465,298.71,83.8413 +632466,300,84.651 +632467,301.27,85.4721 +632468,302.52,86.3027 +632469,297.42,83.7683 +632470,298.69,84.6112 +632471,299.93,85.4651 +632472,301.14,86.3282 +632473,296.13,83.696 +632474,297.37,84.5715 +632475,298.58,85.4578 +632476,299.76,86.353 +632477,294.85,83.6244 +632478,296.05,84.5321 +632479,297.23,85.4503 +632480,298.38,86.3771 +632481,293.57,83.5536 +632482,294.73,84.493 +632483,295.88,85.4425 +632484,296.99,86.4004 +632485,292.28,83.4836 +632486,293.42,84.4541 +632487,294.53,85.4345 +632488,295.61,86.423 +632489,291,83.4145 +632490,292.1,84.4155 +632491,293.18,85.4262 +632492,294.23,86.4448 +632493,289.72,83.3462 +632494,290.79,84.3771 +632495,291.83,85.4176 +632496,292.84,86.4658 +632497,288.44,83.2787 +632498,289.47,84.3391 +632499,290.48,85.4087 +632500,291.46,86.4859 +632501,287.16,83.2122 +632502,288.15,84.3013 +632503,289.13,85.3995 +632504,290.07,86.5052 +632505,285.88,83.1466 +632506,286.84,84.2638 +632507,287.77,85.3901 +632508,288.68,86.5237 +632509,284.6,83.0819 +632510,285.53,84.2267 +632511,286.42,85.3803 +632512,287.3,86.5412 +632513,283.32,83.0182 +632514,284.21,84.1898 +632515,285.07,85.3702 +632516,285.91,86.5578 +632517,282.05,82.9554 +632518,282.9,84.1532 +632519,283.72,85.3598 +632520,284.52,86.5735 +632521,280.77,82.8937 +632522,281.58,84.117 +632523,282.37,85.349 +632524,283.13,86.5882 +632525,279.5,82.833 +632526,280.27,84.0811 +632527,281.02,85.338 +632528,281.74,86.6019 +632529,278.22,82.7733 +632530,278.96,84.0456 +632531,279.66,85.3265 +632532,280.34,86.6147 +632533,276.95,82.7147 +632534,277.64,84.0104 +632535,278.31,85.3148 +632536,278.95,86.6264 +632537,275.67,82.6571 +632538,276.33,83.9755 +632539,276.96,85.3027 +632540,277.56,86.6371 +632541,274.4,82.6006 +632542,275.02,83.941 +632543,275.6,85.2902 +632544,276.17,86.6468 +632545,273.13,82.5453 +632546,273.7,83.9069 +632547,274.25,85.2773 +632548,274.77,86.6554 +632549,271.86,82.4911 +632550,272.39,83.8731 +632551,272.9,85.2641 +632552,273.38,86.6629 +632553,270.59,82.438 +632554,271.08,83.8397 +632555,271.55,85.2505 +632556,271.98,86.6693 +632557,269.32,82.386 +632558,269.77,83.8066 +632559,270.19,85.2366 +632560,270.59,86.6746 +632561,268.04,82.3352 +632562,268.46,83.774 +632563,268.84,85.2222 +632564,269.19,86.6788 +632565,266.77,82.2856 +632566,267.14,83.7417 +632567,267.49,85.2075 +632568,267.8,86.6818 +632569,265.5,82.2372 +632570,265.83,83.7099 +632571,266.13,85.1923 +632572,266.4,86.6837 +632573,264.23,82.19 +632574,264.52,83.6784 +632575,264.78,85.1768 +632576,265.01,86.6844 +632577,262.97,82.1441 +632578,263.21,83.6473 +632579,263.42,85.1609 +632580,263.61,86.6839 +632581,261.7,82.0993 +632582,261.9,83.6166 +632583,262.07,85.1445 +632584,262.21,86.6823 +632585,260.43,82.0558 +632586,260.59,83.5863 +632587,260.72,85.1278 +632588,260.82,86.6794 +632589,259.16,82.0135 +632590,259.28,83.5565 +632591,259.36,85.1106 +632592,259.42,86.6753 +632593,257.89,81.9725 +632594,257.97,83.527 +632595,258.01,85.0931 +632596,258.02,86.67 +632597,256.62,81.9327 +632598,256.65,83.498 +632599,256.66,85.0751 +632600,256.62,86.6635 +632601,255.35,81.8942 +632602,255.34,83.4694 +632603,255.3,85.0567 +632604,255.23,86.6557 +632605,254.08,81.857 +632606,254.03,83.4412 +632607,253.95,85.0378 +632608,253.83,86.6467 +632609,252.82,81.8211 +632610,252.72,83.4134 +632611,252.59,85.0186 +632612,252.43,86.6364 +632613,251.55,81.7864 +632614,251.41,83.386 +632615,251.24,84.9989 +632616,251.03,86.6249 +632617,250.28,81.7531 +632618,250.1,83.3591 +632619,249.89,84.9788 +632620,249.64,86.6121 +632621,249.01,81.721 +632622,248.79,83.3326 +632623,248.53,84.9583 +632624,248.24,86.598 +632625,247.74,81.6902 +632626,247.48,83.3065 +632627,247.18,84.9373 +632628,246.84,86.5827 +632629,246.47,81.6608 +632630,246.17,83.2809 +632631,245.83,84.9159 +632632,245.45,86.566 +632633,245.2,81.6326 +632634,244.86,83.2556 +632635,244.47,84.894 +632636,244.05,86.5481 +632637,243.94,81.6057 +632638,243.55,83.2309 +632639,243.12,84.8718 +632640,242.65,86.5289 +632641,242.67,81.5802 +632642,242.24,83.2065 +632643,241.77,84.8491 +632644,241.26,86.5083 +632645,241.4,81.5559 +632646,240.92,83.1826 +632647,240.41,84.8259 +632648,239.86,86.4865 +632649,240.13,81.533 +632650,239.61,83.1591 +632651,239.06,84.8023 +632652,238.47,86.4634 +632653,238.86,81.5113 +632654,238.3,83.136 +632655,237.71,84.7783 +632656,237.07,86.439 +632657,237.59,81.4909 +632658,236.99,83.1134 +632659,236.36,84.7539 +632660,235.68,86.4133 +632661,236.31,81.4719 +632662,235.68,83.0912 +632663,235.01,84.729 +632664,234.28,86.3863 +632665,235.04,81.4541 +632666,234.37,83.0694 +632667,233.65,84.7037 +632668,232.89,86.3581 +632669,233.77,81.4376 +632670,233.06,83.0481 +632671,232.3,84.6779 +632672,231.5,86.3285 +632673,232.5,81.4224 +632674,231.75,83.0271 +632675,230.95,84.6518 +632676,230.11,86.2976 +632677,231.23,81.4084 +632678,230.43,83.0066 +632679,229.6,84.6252 +632680,228.71,86.2655 +632681,229.95,81.3958 +632682,229.12,82.9866 +632683,228.25,84.5981 +632684,227.32,86.2321 +632685,228.68,81.3844 +632686,227.81,82.9669 +632687,226.9,84.5707 +632688,225.93,86.1974 +632689,227.4,81.3742 +632690,226.5,82.9477 +632691,225.55,84.5428 +632692,224.54,86.1614 +632693,226.13,81.3653 +632694,225.18,82.9288 +632695,224.2,84.5145 +632696,223.15,86.1242 +632697,224.85,81.3576 +632698,223.87,82.9104 +632699,222.85,84.4858 +632700,221.76,86.0857 +632701,223.57,81.3511 +632702,222.56,82.8924 +632703,221.5,84.4567 +632704,220.38,86.046 +632705,222.3,81.3459 +632706,221.25,82.8748 +632707,220.15,84.4271 +632708,218.99,86.0051 +632709,221.02,81.3419 +632710,219.93,82.8576 +632711,218.8,84.3972 +632712,217.61,85.9629 +632713,219.74,81.339 +632714,218.62,82.8408 +632715,217.45,84.3669 +632716,216.22,85.9195 +632717,218.46,81.3373 +632718,217.3,82.8244 +632719,216.1,84.3361 +632720,214.84,85.8749 +632721,217.18,81.3368 +632722,215.99,82.8084 +632723,214.75,84.305 +632724,213.45,85.8291 +632725,215.9,81.3375 +632726,214.68,82.7927 +632727,213.4,84.2734 +632728,212.07,85.7821 +632729,214.62,81.3393 +632730,213.36,82.7775 +632731,212.06,84.2415 +632732,210.69,85.7339 +632733,213.33,81.3422 +632734,212.05,82.7626 +632735,210.71,84.2092 +632736,209.31,85.6846 +632737,212.05,81.3462 +632738,210.73,82.7481 +632739,209.36,84.1765 +632740,207.93,85.6341 +632741,210.76,81.3513 +632742,209.42,82.734 +632743,208.02,84.1434 +632744,206.55,85.5825 +632745,209.48,81.3575 +632746,208.1,82.7202 +632747,206.67,84.11 +632748,205.18,85.5298 +632749,208.19,81.3648 +632750,206.78,82.7068 +632751,205.32,84.0762 +632752,203.8,85.4759 +632753,206.9,81.3731 +632754,205.47,82.6938 +632755,203.98,84.0421 +632756,202.43,85.421 +632757,205.61,81.3824 +632758,204.15,82.681 +632759,202.63,84.0076 +632760,201.05,85.3651 +632761,204.32,81.3927 +632762,202.83,82.6687 +632763,201.29,83.9727 +632764,199.68,85.308 +632765,203.03,81.404 +632766,201.52,82.6566 +632767,199.95,83.9376 +632768,198.31,85.25 +632769,201.74,81.4163 +632770,200.2,82.6449 +632771,198.6,83.902 +632772,196.94,85.1909 +632773,200.44,81.4295 +632774,198.88,82.6335 +632775,197.26,83.8662 +632776,195.57,85.1308 +632777,199.15,81.4437 +632778,197.56,82.6224 +632779,195.92,83.83 +632780,194.2,85.0698 +632781,197.85,81.4588 +632782,196.24,82.6117 +632783,194.57,83.7936 +632784,192.84,85.0078 +632785,196.56,81.4747 +632786,194.92,82.6012 +632787,193.23,83.7568 +632788,191.47,84.9448 +632789,195.26,81.4915 +632790,193.6,82.591 +632791,191.89,83.7197 +632792,190.11,84.881 +632793,193.96,81.5092 +632794,192.28,82.5811 +632795,190.55,83.6823 +632796,188.75,84.8162 +632797,192.66,81.5277 +632798,190.96,82.5715 +632799,189.21,83.6447 +632800,187.39,84.7506 +632801,191.36,81.5469 +632802,189.64,82.5621 +632803,187.87,83.6067 +632804,186.03,84.6841 +632805,190.05,81.567 +632806,188.32,82.5531 +632807,186.53,83.5685 +632808,184.67,84.6168 +632809,188.75,81.5878 +632810,187,82.5442 +632811,185.19,83.5301 +632812,183.32,84.5487 +632813,187.44,81.6093 +632814,185.68,82.5357 +632815,183.85,83.4914 +632816,181.96,84.4798 +632817,186.13,81.6316 +632818,184.35,82.5273 +632819,182.51,83.4524 +632820,180.61,84.4102 +632821,184.83,81.6545 +632822,183.03,82.5192 +632823,181.18,83.4132 +632824,179.26,84.3398 +632825,183.52,81.678 +632826,181.71,82.5113 +632827,179.84,83.3738 +632828,177.91,84.2688 +632829,182.2,81.7022 +632830,180.38,82.5036 +632831,178.5,83.3341 +632832,176.56,84.197 +632833,180.89,81.727 +632834,179.06,82.4962 +632835,177.17,83.2943 +632836,175.21,84.1246 +632837,179.58,81.7524 +632838,177.73,82.4889 +632839,175.83,83.2542 +632840,173.86,84.0516 +632841,178.26,81.7783 +632842,176.41,82.4818 +632843,174.5,83.214 +632844,172.52,83.978 +632845,176.95,81.8047 +632846,175.08,82.4749 +632847,173.16,83.1735 +632848,171.18,83.9038 +632849,175.63,81.8317 +632850,173.76,82.4682 +632851,171.83,83.1329 +632852,169.83,83.8291 +632853,174.31,81.8591 +632854,172.43,82.4616 +632855,170.5,83.0921 +632856,168.5,83.7538 +632857,172.99,81.8869 +632858,171.1,82.4552 +632859,169.16,83.0512 +632860,167.16,83.6781 +632861,171.67,81.9152 +632862,169.78,82.449 +632863,167.83,83.0101 +632864,165.82,83.6019 +632865,170.34,81.9439 +632866,168.45,82.4428 +632867,166.5,82.9689 +632868,164.49,83.5253 +632869,169.02,81.9729 +632870,167.12,82.4368 +632871,165.17,82.9276 +632872,163.15,83.4482 +632873,167.69,82.0022 +632874,165.79,82.4309 +632875,163.84,82.8861 +632876,161.82,83.3708 +632877,166.36,82.0319 +632878,164.46,82.4252 +632879,162.51,82.8445 +632880,160.49,83.2931 +632881,165.03,82.0618 +632882,163.13,82.4195 +632883,161.18,82.8028 +632884,159.16,83.215 +632885,163.7,82.092 +632886,161.8,82.4139 +632887,159.85,82.7611 +632888,157.83,83.1366 +632889,162.37,82.1224 +632890,160.47,82.4084 +632891,158.52,82.7192 +632892,156.51,83.058 +632893,161.03,82.1531 +632894,159.14,82.4029 +632895,157.19,82.6773 +632896,155.18,82.9792 +632897,159.7,82.1838 +632898,157.81,82.3975 +632899,155.87,82.6353 +632900,153.86,82.9002 +632901,158.36,82.2147 +632902,156.48,82.3922 +632903,154.54,82.5933 +632904,152.54,82.821 +632905,157.02,82.2458 +632906,155.15,82.3869 +632907,153.21,82.5512 +632908,151.22,82.7416 +632909,155.68,82.2769 +632910,153.81,82.3816 +632911,151.89,82.5091 +632912,149.9,82.6622 +632913,154.34,82.308 +632914,152.48,82.3764 +632915,150.56,82.467 +632916,148.59,82.5827 +632917,153,82.3392 +632918,151.15,82.3712 +632919,149.24,82.4249 +632920,147.27,82.5031 +632921,151.66,82.3704 +632922,149.81,82.3659 +632923,147.91,82.3827 +632924,145.96,82.4235 +632925,150.31,82.4016 +632926,148.48,82.3607 +632927,146.59,82.3406 +632928,144.65,82.3439 +632929,148.97,82.4326 +632930,147.14,82.3554 +632931,145.27,82.2985 +632932,143.34,82.2644 +632933,147.62,82.4637 +632934,145.81,82.3502 +632935,143.94,82.2564 +632936,142.03,82.185 +632937,146.27,82.4945 +632938,144.47,82.3448 +632939,142.62,82.2144 +632940,140.72,82.1056 +632941,144.92,82.5253 +632942,143.13,82.3395 +632943,141.3,82.1724 +632944,139.41,82.0264 +632945,143.56,82.5559 +632946,141.8,82.3341 +632947,139.98,82.1304 +632948,138.11,81.9474 +632949,142.21,82.5862 +632950,140.46,82.3286 +632951,138.66,82.0886 +632952,136.81,81.8686 +632953,140.86,82.6164 +632954,139.12,82.323 +632955,137.34,82.0468 +632956,135.5,81.79 +632957,139.5,82.6463 +632958,137.78,82.3174 +632959,136.02,82.0051 +632960,134.2,81.7116 +632961,138.14,82.6759 +632962,136.44,82.3117 +632963,134.7,81.9634 +632964,132.91,81.6335 +632965,136.78,82.7052 +632966,135.1,82.3059 +632967,133.38,81.9219 +632968,131.61,81.5558 +632969,135.42,82.7342 +632970,133.76,82.2999 +632971,132.06,81.8805 +632972,130.31,81.4784 +632973,134.06,82.7628 +632974,132.42,82.2939 +632975,130.74,81.8393 +632976,129.02,81.4013 +632977,132.7,82.791 +632978,131.08,82.2877 +632979,129.43,81.7982 +632980,127.72,81.3247 +632981,131.33,82.8188 +632982,129.74,82.2813 +632983,128.11,81.7572 +632984,126.43,81.2485 +632985,129.97,82.8461 +632986,128.4,82.2749 +632987,126.79,81.7163 +632988,125.14,81.1727 +632989,128.6,82.873 +632990,127.06,82.2682 +632991,125.48,81.6757 +632992,123.85,81.0975 +632993,127.23,82.8994 +632994,125.72,82.2615 +632995,124.16,81.6352 +632996,122.57,81.0227 +632997,125.87,82.9253 +632998,124.38,82.2545 +632999,122.85,81.5948 +633000,121.28,80.9485 +633001,124.49,82.9506 +633002,123.03,82.2473 +633003,121.53,81.5547 +633004,119.99,80.8749 +633005,123.12,82.9754 +633006,121.69,82.24 +633007,120.22,81.5148 +633008,118.71,80.8018 +633009,121.75,82.9996 +633010,120.35,82.2325 +633011,118.91,81.4751 +633012,117.42,80.7294 +633013,120.38,83.0231 +633014,119,82.2247 +633015,117.59,81.4356 +633016,116.14,80.6577 +633017,119,83.046 +633018,117.66,82.2168 +633019,116.28,81.3963 +633020,114.86,80.5866 +633021,117.63,83.0683 +633022,116.32,82.2086 +633023,114.97,81.3572 +633024,113.58,80.5162 +633025,116.25,83.0899 +633026,114.97,82.2002 +633027,113.66,81.3184 +633028,112.3,80.4465 +633029,114.87,83.1107 +633030,113.63,82.1915 +633031,112.34,81.2798 +633032,111.03,80.3776 +633033,113.49,83.1308 +633034,112.28,82.1826 +633035,111.03,81.2415 +633036,109.75,80.3095 +633037,112.11,83.1502 +633038,110.93,82.1735 +633039,109.72,81.2035 +633040,108.47,80.2421 +633041,110.73,83.1688 +633042,109.59,82.1641 +633043,108.41,81.1657 +633044,107.2,80.1756 +633045,109.35,83.1866 +633046,108.24,82.1544 +633047,107.1,81.1282 +633048,105.92,80.1099 +633049,107.97,83.2035 +633050,106.9,82.1444 +633051,105.79,81.091 +633052,104.65,80.0451 +633053,106.58,83.2197 +633054,105.55,82.1342 +633055,104.48,81.0541 +633056,103.38,79.981 +633057,105.2,83.2349 +633058,104.2,82.1237 +633059,103.17,81.0175 +633060,102.11,79.918 +633061,103.82,83.2493 +633062,102.86,82.1129 +633063,101.86,80.9812 +633064,100.84,79.856 +633065,102.43,83.2628 +633066,101.51,82.1017 +633067,100.55,80.9452 +633068,99.569,79.795 +633069,101.04,83.2754 +633070,100.16,82.0903 +633071,99.246,80.9095 +633072,98.301,79.735 +633073,99.655,83.287 +633074,98.812,82.0786 +633075,97.938,80.8741 +633076,97.033,79.676 +633077,98.267,83.2977 +633078,97.464,82.0665 +633079,96.63,80.8391 +633080,95.765,79.617 +633081,96.878,83.3074 +633082,96.116,82.0541 +633083,95.323,80.8044 +633084,94.499,79.56 +633085,95.488,83.3162 +633086,94.767,82.0414 +633087,94.016,80.7701 +633088,93.233,79.504 +633089,94.098,83.3239 +633090,93.418,82.0283 +633091,92.708,80.7361 +633092,91.968,79.449 +633093,92.707,83.3306 +633094,92.069,82.0149 +633095,91.402,80.7025 +633096,90.703,79.395 +633097,91.316,83.3363 +633098,90.72,82.0012 +633099,90.095,80.6692 +633100,89.439,79.342 +633101,89.924,83.3409 +633102,89.371,81.9871 +633103,88.788,80.6363 +633104,88.175,79.29 +633105,88.531,83.3445 +633106,88.022,81.9726 +633107,87.482,80.6038 +633108,86.912,79.24 +633109,87.138,83.347 +633110,86.672,81.9578 +633111,86.176,80.5717 +633112,85.65,79.19 +633113,85.745,83.3483 +633114,85.323,81.9426 +633115,84.87,80.5399 +633116,84.387,79.142 +633117,84.351,83.3486 +633118,83.973,81.927 +633119,83.565,80.5085 +633120,83.126,79.095 +633121,82.957,83.3478 +633122,82.623,81.9111 +633123,82.259,80.4775 +633124,81.864,79.049 +633125,81.563,83.3459 +633126,81.273,81.8948 +633127,80.953,80.4469 +633128,80.603,79.004 +633129,80.168,83.3428 +633130,79.923,81.8781 +633131,79.648,80.4167 +633132,79.342,78.96 +633133,78.773,83.3386 +633134,78.573,81.861 +633135,78.343,80.3869 +633136,78.082,78.918 +633137,77.378,83.3332 +633138,77.223,81.8435 +633139,77.038,80.3575 +633140,76.821,78.876 +633141,75.982,83.3266 +633142,75.873,81.8256 +633143,75.733,80.3284 +633144,75.561,78.836 +633145,74.587,83.3189 +633146,74.523,81.8074 +633147,74.428,80.2998 +633148,74.301,78.797 +633149,73.191,83.31 +633150,73.173,81.7887 +633151,73.123,80.2717 +633152,73.041,78.76 +633153,71.795,83.2999 +633154,71.823,81.7697 +633155,71.818,80.2439 +633156,71.782,78.724 +633157,70.399,83.2886 +633158,70.473,81.7502 +633159,70.513,80.2165 +633160,70.522,78.689 +633161,69.003,83.2761 +633162,69.123,81.7304 +633163,69.209,80.1896 +633164,69.262,78.655 +633165,67.607,83.2624 +633166,67.773,81.7101 +633167,67.904,80.163 +633168,68.002,78.622 +633169,66.212,83.2474 +633170,66.423,81.6894 +633171,66.599,80.1369 +633172,66.743,78.591 +633173,64.816,83.2313 +633174,65.073,81.6683 +633175,65.295,80.1112 +633176,65.483,78.561 +633177,63.42,83.2139 +633178,63.723,81.6469 +633179,63.99,80.086 +633180,64.223,78.532 +633181,62.025,83.1953 +633182,62.373,81.625 +633183,62.685,80.0611 +633184,62.963,78.505 +633185,60.629,83.1755 +633186,61.023,81.6027 +633187,61.38,80.0367 +633188,61.703,78.478 +633189,59.234,83.1545 +633190,59.674,81.5799 +633191,60.076,80.0127 +633192,60.442,78.453 +633193,57.839,83.1322 +633194,58.324,81.5568 +633195,58.771,79.989 +633196,59.181,78.43 +633197,56.445,83.1087 +633198,56.975,81.5333 +633199,57.466,79.966 +633200,57.92,78.407 +633201,55.05,83.084 +633202,55.626,81.5093 +633203,56.161,79.943 +633204,56.659,78.386 +633205,53.657,83.058 +633206,54.277,81.485 +633207,54.856,79.921 +633208,55.397,78.366 +633209,52.263,83.0308 +633210,52.928,81.4602 +633211,53.55,79.899 +633212,54.135,78.348 +633213,50.87,83.0024 +633214,51.579,81.435 +633215,52.245,79.878 +633216,52.873,78.33 +633217,49.477,82.9727 +633218,50.23,81.4094 +633219,50.94,79.857 +633220,51.61,78.314 +633221,48.085,82.9419 +633222,48.882,81.3834 +633223,49.634,79.836 +633224,50.346,78.299 +633225,46.694,82.9098 +633226,47.534,81.3571 +633227,48.328,79.816 +633228,49.082,78.286 +633229,45.303,82.8765 +633230,46.186,81.3303 +633231,47.022,79.796 +633232,47.818,78.273 +633233,43.913,82.842 +633234,44.838,81.3031 +633235,45.716,79.777 +633236,46.553,78.262 +633237,42.523,82.8063 +633238,43.491,81.2755 +633239,44.41,79.758 +633240,45.287,78.252 +633241,41.134,82.7694 +633242,42.143,81.2475 +633243,43.104,79.739 +633244,44.021,78.243 +633245,39.746,82.7313 +633246,40.796,81.2191 +633247,41.797,79.721 +633248,42.754,78.236 +633249,38.358,82.692 +633250,39.45,81.1903 +633251,40.49,79.703 +633252,41.486,78.23 +633253,36.971,82.6516 +633254,38.103,81.1612 +633255,39.183,79.686 +633256,40.218,78.225 +633257,35.585,82.61 +633258,36.757,81.1316 +633259,37.876,79.669 +633260,38.948,78.221 +633261,34.2,82.5672 +633262,35.411,81.1017 +633263,36.568,79.652 +633264,37.678,78.218 +633265,32.816,82.5233 +633266,34.066,81.0714 +633267,35.26,79.636 +633268,36.408,78.216 +633269,31.432,82.4783 +633270,32.72,81.0407 +633271,33.952,79.62 +633272,35.136,78.216 +633273,30.05,82.4321 +633274,31.375,81.0096 +633275,32.644,79.605 +633276,33.863,78.216 +633277,28.669,82.3848 +633278,30.031,80.9782 +633279,31.335,79.59 +633280,32.59,78.218 +633281,27.288,82.3365 +633282,28.687,80.9465 +633283,30.027,79.575 +633284,31.316,78.221 +633285,25.909,82.287 +633286,27.343,80.9143 +633287,28.717,79.561 +633288,30.04,78.225 +633289,24.53,82.2365 +633290,25.999,80.8818 +633291,27.408,79.547 +633292,28.764,78.23 +633293,23.153,82.1849 +633294,24.656,80.849 +633295,26.098,79.533 +633296,27.487,78.236 +633297,21.777,82.1323 +633298,23.314,80.8158 +633299,24.788,79.52 +633300,26.209,78.243 +633301,20.402,82.0787 +633302,21.971,80.7823 +633303,23.477,79.507 +633304,24.929,78.251 +633305,19.028,82.024 +633306,20.629,80.7485 +633307,22.167,79.494 +633308,23.649,78.26 +633309,17.655,81.9683 +633310,19.288,80.7143 +633311,20.856,79.482 +633312,22.367,78.27 +633313,16.284,81.9117 +633314,17.947,80.6799 +633315,19.544,79.47 +633316,21.085,78.281 +633317,14.913,81.8541 +633318,16.606,80.6451 +633319,18.232,79.459 +633320,19.801,78.293 +633321,13.544,81.7956 +633322,15.266,80.61 +633323,16.92,79.447 +633324,18.516,78.305 +633325,12.177,81.7361 +633326,13.926,80.5746 +633327,15.607,79.436 +633328,17.23,78.319 +633329,10.81,81.6758 +633330,12.587,80.5389 +633331,14.294,79.426 +633332,15.942,78.334 +633333,9.4454,81.6145 +633334,11.248,80.5029 +633335,12.981,79.415 +633336,14.654,78.349 +633337,8.0817,81.5524 +633338,9.9096,80.4667 +633339,11.667,79.405 +633340,13.364,78.366 +633341,6.7195,81.4895 +633342,8.5717,80.4301 +633343,10.353,79.395 +633344,12.073,78.383 +633345,5.3586,81.4257 +633346,7.2343,80.3933 +633347,9.0381,79.386 +633348,10.78,78.401 +633349,3.9991,81.3611 +633350,5.8973,80.3563 +633351,7.723,79.376 +633352,9.4867,78.419 +633353,2.6411,81.2958 +633354,4.5609,80.319 +633355,6.4075,79.367 +633356,8.1917,78.439 +633357,1.2845,81.2297 +633358,3.2249,80.2814 +633359,5.0916,79.359 +633360,6.8953,78.459 +633361,359.93,81.1628 +633362,1.8894,80.2437 +633363,3.7752,79.35 +633364,5.5976,78.48 +633365,358.58,81.0953 +633366,0.55444,80.2056 +633367,2.4584,79.342 +633368,4.2985,78.501 +633369,357.22,81.0271 +633370,359.22,80.1674 +633371,1.1412,79.334 +633372,2.9981,78.523 +633373,355.87,80.9582 +633374,357.89,80.129 +633375,359.82,79.326 +633376,1.6962,78.546 +633377,354.52,80.8886 +633378,356.55,80.0903 +633379,358.51,79.318 +633380,0.39298,78.57 +633381,353.18,80.8185 +633382,355.22,80.0515 +633383,357.19,79.311 +633384,359.09,78.594 +633385,351.83,80.7477 +633386,353.89,80.0125 +633387,355.87,79.303 +633388,357.78,78.618 +633389,350.49,80.6764 +633390,352.56,79.973 +633391,354.55,79.296 +633392,356.47,78.643 +633393,349.14,80.6046 +633394,351.22,79.934 +633395,353.23,79.29 +633396,355.17,78.669 +633397,347.8,80.5322 +633398,349.89,79.894 +633399,351.91,79.283 +633400,353.86,78.695 +633401,346.46,80.4594 +633402,348.56,79.855 +633403,350.59,79.276 +633404,352.54,78.721 +633405,345.12,80.3861 +633406,347.23,79.815 +633407,349.27,79.27 +633408,351.23,78.748 +633409,343.79,80.3124 +633410,345.9,79.775 +633411,347.94,79.264 +633412,349.92,78.776 +633413,342.45,80.2382 +633414,344.58,79.735 +633415,346.62,79.257 +633416,348.6,78.803 +633417,341.12,80.1637 +633418,343.25,79.695 +633419,345.3,79.251 +633420,347.28,78.831 +633421,339.79,80.0889 +633422,341.92,79.654 +633423,343.97,79.245 +633424,345.96,78.86 +633425,338.46,80.0137 +633426,340.59,79.614 +633427,342.65,79.24 +633428,344.64,78.888 +633429,337.13,79.938 +633430,339.27,79.573 +633431,341.33,79.234 +633432,343.32,78.917 +633433,335.8,79.862 +633434,337.94,79.533 +633435,340,79.228 +633436,341.99,78.946 +633437,334.48,79.787 +633438,336.62,79.492 +633439,338.68,79.223 +633440,340.67,78.975 +633441,333.16,79.71 +633442,335.29,79.451 +633443,337.35,79.217 +633444,339.34,79.005 +633445,331.84,79.634 +633446,333.97,79.411 +633447,336.02,79.212 +633448,338.01,79.034 +633449,330.52,79.558 +633450,332.64,79.37 +633451,334.7,79.206 +633452,336.68,79.064 +633453,329.2,79.481 +633454,331.32,79.329 +633455,333.37,79.201 +633456,335.35,79.094 +633457,327.88,79.404 +633458,330,79.288 +633459,332.04,79.196 +633460,334.02,79.124 +633461,326.57,79.327 +633462,328.68,79.247 +633463,330.71,79.191 +633464,332.69,79.154 +633465,325.25,79.251 +633466,327.35,79.207 +633467,329.39,79.185 +633468,331.35,79.184 +633469,323.94,79.174 +633470,326.03,79.166 +633471,328.06,79.18 +633472,330.01,79.214 +633473,322.63,79.097 +633474,324.71,79.125 +633475,326.73,79.175 +633476,328.67,79.244 +633477,321.32,79.02 +633478,323.39,79.084 +633479,325.4,79.169 +633480,327.33,79.273 +633481,320.01,78.944 +633482,322.08,79.043 +633483,324.07,79.164 +633484,325.99,79.303 +633485,318.71,78.867 +633486,320.76,79.003 +633487,322.73,79.159 +633488,324.65,79.333 +633489,317.41,78.791 +633490,319.44,78.962 +633491,321.4,79.153 +633492,323.3,79.362 +633493,316.1,78.714 +633494,318.12,78.921 +633495,320.07,79.148 +633496,321.96,79.391 +633497,314.8,78.638 +633498,316.8,78.881 +633499,318.74,79.142 +633500,320.61,79.42 +633501,313.5,78.563 +633502,315.49,78.84 +633503,317.4,79.137 +633504,319.26,79.449 +633505,312.21,78.487 +633506,314.17,78.8 +633507,316.07,79.131 +633508,317.91,79.478 +633509,310.91,78.412 +633510,312.86,78.76 +633511,314.74,79.125 +633512,316.56,79.506 +633513,309.62,78.337 +633514,311.54,78.72 +633515,313.4,79.119 +633516,315.2,79.534 +633517,308.32,78.262 +633518,310.23,78.68 +633519,312.07,79.113 +633520,313.85,79.561 +633521,307.03,78.188 +633522,308.91,78.64 +633523,310.73,79.107 +633524,312.49,79.588 +633525,305.74,78.114 +633526,307.6,78.6 +633527,309.4,79.101 +633528,311.14,79.615 +633529,304.45,78.041 +633530,306.29,78.56 +633531,308.06,79.095 +633532,309.78,79.642 +633533,303.16,77.968 +633534,304.97,78.521 +633535,306.72,79.088 +633536,308.42,79.667 +633537,301.88,77.895 +633538,303.66,78.481 +633539,305.39,79.081 +633540,307.06,79.693 +633541,300.59,77.824 +633542,302.35,78.442 +633543,304.05,79.075 +633544,305.69,79.718 +633545,299.31,77.752 +633546,301.04,78.403 +633547,302.71,79.068 +633548,304.33,79.742 +633549,298.03,77.681 +633550,299.73,78.365 +633551,301.37,79.06 +633552,302.96,79.766 +633553,296.75,77.611 +633554,298.42,78.326 +633555,300.03,79.053 +633556,301.6,79.789 +633557,295.47,77.541 +633558,297.11,78.288 +633559,298.69,79.046 +633560,300.23,79.812 +633561,294.19,77.472 +633562,295.8,78.25 +633563,297.35,79.038 +633564,298.86,79.834 +633565,292.91,77.404 +633566,294.49,78.212 +633567,296.01,79.03 +633568,297.49,79.856 +633569,291.64,77.336 +633570,293.18,78.174 +633571,294.67,79.022 +633572,296.12,79.877 +633573,290.36,77.269 +633574,291.87,78.137 +633575,293.33,79.013 +633576,294.75,79.897 +633577,289.09,77.203 +633578,290.57,78.1 +633579,291.99,79.005 +633580,293.37,79.916 +633581,287.82,77.138 +633582,289.26,78.063 +633583,290.65,78.996 +633584,292,79.935 +633585,286.55,77.073 +633586,287.95,78.026 +633587,289.31,78.987 +633588,290.62,79.953 +633589,285.28,77.009 +633590,286.65,77.99 +633591,287.97,78.977 +633592,289.24,79.97 +633593,284.01,76.946 +633594,285.34,77.953 +633595,286.63,78.967 +633596,287.87,79.986 +633597,282.74,76.884 +633598,284.04,77.918 +633599,285.28,78.958 +633600,286.49,80.0017 +633601,281.48,76.823 +633602,282.73,77.882 +633603,283.94,78.947 +633604,285.11,80.0164 +633605,280.21,76.762 +633606,281.43,77.847 +633607,282.6,78.937 +633608,283.73,80.0303 +633609,278.95,76.703 +633610,280.12,77.812 +633611,281.25,78.926 +633612,282.34,80.0433 +633613,277.68,76.644 +633614,278.82,77.777 +633615,279.91,78.915 +633616,280.96,80.0554 +633617,276.42,76.587 +633618,277.51,77.743 +633619,278.57,78.904 +633620,279.58,80.0666 +633621,275.16,76.53 +633622,276.21,77.709 +633623,277.22,78.892 +633624,278.19,80.0769 +633625,273.89,76.474 +633626,274.91,77.675 +633627,275.88,78.88 +633628,276.81,80.0863 +633629,272.63,76.42 +633630,273.6,77.642 +633631,274.53,78.868 +633632,275.42,80.0947 +633633,271.37,76.366 +633634,272.3,77.609 +633635,273.19,78.855 +633636,274.04,80.1021 +633637,270.11,76.313 +633638,271,77.577 +633639,271.84,78.842 +633640,272.65,80.1086 +633641,268.86,76.262 +633642,269.69,77.544 +633643,270.5,78.829 +633644,271.26,80.114 +633645,267.6,76.211 +633646,268.39,77.512 +633647,269.15,78.815 +633648,269.87,80.1184 +633649,266.34,76.162 +633650,267.09,77.481 +633651,267.8,78.801 +633652,268.48,80.1218 +633653,265.08,76.114 +633654,265.79,77.45 +633655,266.46,78.787 +633656,267.09,80.1242 +633657,263.83,76.066 +633658,264.49,77.419 +633659,265.11,78.772 +633660,265.7,80.1255 +633661,262.57,76.02 +633662,263.19,77.388 +633663,263.77,78.757 +633664,264.31,80.1257 +633665,261.32,75.975 +633666,261.89,77.358 +633667,262.42,78.742 +633668,262.92,80.1249 +633669,260.06,75.932 +633670,260.58,77.329 +633671,261.07,78.726 +633672,261.53,80.123 +633673,258.81,75.889 +633674,259.28,77.299 +633675,259.73,78.71 +633676,260.13,80.1199 +633677,257.56,75.848 +633678,257.98,77.27 +633679,258.38,78.694 +633680,258.74,80.1158 +633681,256.3,75.807 +633682,256.68,77.242 +633683,257.03,78.677 +633684,257.35,80.1105 +633685,255.05,75.768 +633686,255.38,77.214 +633687,255.69,78.659 +633688,255.95,80.1042 +633689,253.8,75.731 +633690,254.08,77.186 +633691,254.34,78.642 +633692,254.56,80.0966 +633693,252.54,75.694 +633694,252.78,77.159 +633695,252.99,78.624 +633696,253.17,80.088 +633697,251.29,75.658 +633698,251.48,77.132 +633699,251.64,78.605 +633700,251.77,80.0782 +633701,250.04,75.624 +633702,250.18,77.105 +633703,250.3,78.587 +633704,250.38,80.0672 +633705,248.79,75.591 +633706,248.88,77.079 +633707,248.95,78.568 +633708,248.98,80.055 +633709,247.53,75.559 +633710,247.58,77.053 +633711,247.6,78.548 +633712,247.59,80.0417 +633713,246.28,75.529 +633714,246.28,77.028 +633715,246.25,78.528 +633716,246.19,80.0273 +633717,245.03,75.5 +633718,244.98,77.003 +633719,244.91,78.508 +633720,244.8,80.0116 +633721,243.78,75.472 +633722,243.68,76.979 +633723,243.56,78.487 +633724,243.4,79.995 +633725,242.52,75.445 +633726,242.38,76.955 +633727,242.21,78.466 +633728,242.01,79.977 +633729,241.27,75.419 +633730,241.08,76.931 +633731,240.87,78.444 +633732,240.61,79.958 +633733,240.02,75.395 +633734,239.79,76.908 +633735,239.52,78.422 +633736,239.22,79.937 +633737,238.77,75.372 +633738,238.49,76.885 +633739,238.17,78.4 +633740,237.82,79.916 +633741,237.51,75.35 +633742,237.19,76.863 +633743,236.82,78.377 +633744,236.43,79.893 +633745,236.26,75.329 +633746,235.89,76.841 +633747,235.48,78.354 +633748,235.03,79.869 +633749,235.01,75.31 +633750,234.59,76.819 +633751,234.13,78.331 +633752,233.64,79.844 +633753,233.75,75.292 +633754,233.29,76.798 +633755,232.78,78.307 +633756,232.25,79.817 +633757,232.5,75.275 +633758,231.99,76.777 +633759,231.44,78.283 +633760,230.85,79.79 +633761,231.24,75.259 +633762,230.69,76.757 +633763,230.09,78.258 +633764,229.46,79.761 +633765,229.99,75.245 +633766,229.38,76.737 +633767,228.75,78.233 +633768,228.07,79.731 +633769,228.73,75.232 +633770,228.08,76.718 +633771,227.4,78.207 +633772,226.68,79.7 +633773,227.48,75.22 +633774,226.78,76.698 +633775,226.05,78.181 +633776,225.28,79.668 +633777,226.22,75.209 +633778,225.48,76.68 +633779,224.71,78.155 +633780,223.89,79.634 +633781,224.96,75.199 +633782,224.18,76.661 +633783,223.36,78.129 +633784,222.5,79.6 +633785,223.71,75.191 +633786,222.88,76.644 +633787,222.02,78.102 +633788,221.11,79.564 +633789,222.45,75.184 +633790,221.58,76.626 +633791,220.67,78.074 +633792,219.72,79.527 +633793,221.19,75.177 +633794,220.28,76.609 +633795,219.33,78.046 +633796,218.33,79.489 +633797,219.93,75.173 +633798,218.98,76.592 +633799,217.98,78.018 +633800,216.94,79.45 +633801,218.67,75.169 +633802,217.67,76.576 +633803,216.64,77.99 +633804,215.56,79.41 +633805,217.41,75.166 +633806,216.37,76.56 +633807,215.29,77.961 +633808,214.17,79.368 +633809,216.15,75.165 +633810,215.07,76.544 +633811,213.95,77.931 +633812,212.78,79.326 +633813,214.88,75.164 +633814,213.77,76.529 +633815,212.61,77.902 +633816,211.4,79.282 +633817,213.62,75.165 +633818,212.46,76.514 +633819,211.26,77.872 +633820,210.01,79.238 +633821,212.36,75.167 +633822,211.16,76.5 +633823,209.92,77.841 +633824,208.63,79.192 +633825,211.09,75.17 +633826,209.86,76.486 +633827,208.58,77.811 +633828,207.25,79.145 +633829,209.82,75.174 +633830,208.55,76.472 +633831,207.24,77.78 +633832,205.87,79.097 +633833,208.56,75.179 +633834,207.25,76.459 +633835,205.9,77.748 +633836,204.49,79.048 +633837,207.29,75.185 +633838,205.95,76.446 +633839,204.55,77.717 +633840,203.11,78.998 +633841,206.02,75.192 +633842,204.64,76.433 +633843,203.21,77.685 +633844,201.73,78.947 +633845,204.75,75.2 +633846,203.34,76.421 +633847,201.87,77.652 +633848,200.35,78.895 +633849,203.48,75.21 +633850,202.03,76.409 +633851,200.53,77.62 +633852,198.97,78.843 +633853,202.21,75.22 +633854,200.73,76.397 +633855,199.19,77.587 +633856,197.6,78.789 +633857,200.93,75.231 +633858,199.42,76.386 +633859,197.85,77.553 +633860,196.22,78.734 +633861,199.66,75.242 +633862,198.11,76.375 +633863,196.51,77.52 +633864,194.85,78.678 +633865,198.38,75.255 +633866,196.81,76.364 +633867,195.17,77.486 +633868,193.48,78.621 +633869,197.11,75.269 +633870,195.5,76.353 +633871,193.84,77.451 +633872,192.11,78.564 +633873,195.83,75.284 +633874,194.19,76.343 +633875,192.5,77.417 +633876,190.74,78.505 +633877,194.55,75.299 +633878,192.88,76.333 +633879,191.16,77.382 +633880,189.37,78.446 +633881,193.27,75.315 +633882,191.58,76.324 +633883,189.82,77.347 +633884,188,78.386 +633885,191.98,75.332 +633886,190.27,76.315 +633887,188.49,77.312 +633888,186.64,78.325 +633889,190.7,75.35 +633890,188.96,76.305 +633891,187.15,77.276 +633892,185.28,78.263 +633893,189.42,75.369 +633894,187.65,76.297 +633895,185.82,77.24 +633896,183.91,78.201 +633897,188.13,75.388 +633898,186.34,76.288 +633899,184.48,77.204 +633900,182.55,78.138 +633901,186.84,75.408 +633902,185.03,76.28 +633903,183.15,77.168 +633904,181.19,78.074 +633905,185.55,75.429 +633906,183.72,76.272 +633907,181.81,77.131 +633908,179.83,78.009 +633909,184.26,75.45 +633910,182.4,76.264 +633911,180.48,77.095 +633912,178.48,77.943 +633913,182.97,75.472 +633914,181.09,76.257 +633915,179.15,77.058 +633916,177.12,77.877 +633917,181.68,75.495 +633918,179.78,76.249 +633919,177.81,77.021 +633920,175.77,77.811 +633921,180.39,75.518 +633922,178.47,76.242 +633923,176.48,76.983 +633924,174.42,77.743 +633925,179.09,75.542 +633926,177.15,76.235 +633927,175.15,76.946 +633928,173.07,77.675 +633929,177.79,75.566 +633930,175.84,76.228 +633931,173.82,76.908 +633932,171.72,77.607 +633933,176.49,75.591 +633934,174.53,76.222 +633935,172.49,76.87 +633936,170.37,77.538 +633937,175.19,75.617 +633938,173.21,76.215 +633939,171.16,76.832 +633940,169.02,77.468 +633941,173.89,75.643 +633942,171.9,76.209 +633943,169.83,76.794 +633944,167.68,77.398 +633945,172.59,75.669 +633946,170.58,76.203 +633947,168.5,76.755 +633948,166.34,77.327 +633949,171.28,75.696 +633950,169.26,76.197 +633951,167.17,76.717 +633952,165,77.256 +633953,169.98,75.723 +633954,167.95,76.191 +633955,165.85,76.678 +633956,163.66,77.185 +633957,168.67,75.75 +633958,166.63,76.185 +633959,164.52,76.639 +633960,162.32,77.113 +633961,167.36,75.778 +633962,165.31,76.18 +633963,163.19,76.6 +633964,160.98,77.041 +633965,166.05,75.806 +633966,164,76.174 +633967,161.87,76.561 +633968,159.65,76.968 +633969,164.74,75.834 +633970,162.68,76.169 +633971,160.54,76.522 +633972,158.32,76.896 +633973,163.42,75.863 +633974,161.36,76.164 +633975,159.22,76.483 +633976,156.99,76.822 +633977,162.11,75.892 +633978,160.04,76.159 +633979,157.89,76.444 +633980,155.66,76.749 +633981,160.79,75.921 +633982,158.72,76.154 +633983,156.57,76.404 +633984,154.33,76.675 +633985,159.47,75.95 +633986,157.4,76.149 +633987,155.24,76.365 +633988,153,76.602 +633989,158.15,75.98 +633990,156.07,76.144 +633991,153.92,76.325 +633992,151.68,76.527 +633993,156.83,76.009 +633994,154.75,76.139 +633995,152.6,76.286 +633996,150.36,76.453 +633997,155.51,76.039 +633998,153.43,76.134 +633999,151.28,76.246 +634000,149.04,76.379 +634001,154.18,76.068 +634002,152.11,76.129 +634003,149.96,76.207 +634004,147.72,76.305 +634005,152.85,76.098 +634006,150.78,76.124 +634007,148.64,76.167 +634008,146.4,76.23 +634009,151.53,76.128 +634010,149.46,76.119 +634011,147.32,76.128 +634012,145.09,76.156 +634013,150.2,76.157 +634014,148.14,76.114 +634015,146,76.088 +634016,143.77,76.081 +634017,148.86,76.187 +634018,146.81,76.11 +634019,144.68,76.049 +634020,142.46,76.007 +634021,147.53,76.216 +634022,145.49,76.105 +634023,143.36,76.009 +634024,141.15,75.932 +634025,146.2,76.246 +634026,144.16,76.1 +634027,142.04,75.97 +634028,139.84,75.858 +634029,144.86,76.275 +634030,142.83,76.095 +634031,140.73,75.93 +634032,138.54,75.784 +634033,143.52,76.304 +634034,141.51,76.09 +634035,139.41,75.891 +634036,137.23,75.709 +634037,142.18,76.333 +634038,140.18,76.085 +634039,138.1,75.852 +634040,135.93,75.635 +634041,140.84,76.362 +634042,138.85,76.08 +634043,136.78,75.812 +634044,134.63,75.562 +634045,139.5,76.39 +634046,137.52,76.075 +634047,135.47,75.773 +634048,133.33,75.488 +634049,138.16,76.419 +634050,136.19,76.069 +634051,134.15,75.734 +634052,132.03,75.415 +634053,136.81,76.446 +634054,134.86,76.064 +634055,132.84,75.695 +634056,130.73,75.342 +634057,135.47,76.474 +634058,133.53,76.059 +634059,131.53,75.656 +634060,129.44,75.269 +634061,134.12,76.501 +634062,132.2,76.053 +634063,130.21,75.617 +634064,128.14,75.197 +634065,132.77,76.528 +634066,130.87,76.048 +634067,128.9,75.579 +634068,126.85,75.124 +634069,131.42,76.555 +634070,129.54,76.042 +634071,127.59,75.54 +634072,125.56,75.053 +634073,130.07,76.581 +634074,128.21,76.036 +634075,126.28,75.502 +634076,124.27,74.981 +634077,128.71,76.606 +634078,126.88,76.03 +634079,124.97,75.464 +634080,122.98,74.911 +634081,127.36,76.632 +634082,125.54,76.024 +634083,123.66,75.426 +634084,121.7,74.84 +634085,126,76.656 +634086,124.21,76.017 +634087,122.35,75.388 +634088,120.41,74.77 +634089,124.64,76.68 +634090,122.88,76.011 +634091,121.04,75.35 +634092,119.13,74.701 +634093,123.28,76.704 +634094,121.54,76.004 +634095,119.73,75.313 +634096,117.85,74.632 +634097,121.92,76.727 +634098,120.21,75.997 +634099,118.43,75.275 +634100,116.57,74.564 +634101,120.56,76.75 +634102,118.87,75.99 +634103,117.12,75.238 +634104,115.29,74.496 +634105,119.2,76.771 +634106,117.54,75.983 +634107,115.81,75.201 +634108,114.02,74.429 +634109,117.83,76.793 +634110,116.2,75.975 +634111,114.51,75.165 +634112,112.74,74.363 +634113,116.46,76.813 +634114,114.86,75.968 +634115,113.2,75.128 +634116,111.47,74.297 +634117,115.1,76.833 +634118,113.53,75.96 +634119,111.89,75.092 +634120,110.19,74.232 +634121,113.73,76.852 +634122,112.19,75.951 +634123,110.59,75.056 +634124,108.92,74.168 +634125,112.36,76.871 +634126,110.85,75.943 +634127,109.28,75.02 +634128,107.65,74.104 +634129,110.99,76.888 +634130,109.51,75.934 +634131,107.98,74.985 +634132,106.38,74.041 +634133,109.62,76.905 +634134,108.18,75.925 +634135,106.68,74.949 +634136,105.11,73.979 +634137,108.24,76.921 +634138,106.84,75.916 +634139,105.37,74.914 +634140,103.85,73.918 +634141,106.87,76.937 +634142,105.5,75.907 +634143,104.07,74.88 +634144,102.58,73.858 +634145,105.49,76.951 +634146,104.16,75.897 +634147,102.77,74.845 +634148,101.32,73.798 +634149,104.12,76.965 +634150,102.82,75.887 +634151,101.47,74.811 +634152,100.06,73.739 +634153,102.74,76.978 +634154,101.48,75.877 +634155,100.16,74.778 +634156,98.794,73.682 +634157,101.36,76.99 +634158,100.14,75.866 +634159,98.864,74.744 +634160,97.533,73.625 +634161,99.98,77.001 +634162,98.797,75.855 +634163,97.563,74.711 +634164,96.273,73.569 +634165,98.6,77.011 +634166,97.456,75.844 +634167,96.262,74.678 +634168,95.014,73.514 +634169,97.218,77.02 +634170,96.115,75.833 +634171,94.962,74.645 +634172,93.756,73.46 +634173,95.836,77.028 +634174,94.773,75.821 +634175,93.662,74.613 +634176,92.499,73.407 +634177,94.453,77.036 +634178,93.431,75.809 +634179,92.362,74.581 +634180,91.242,73.355 +634181,93.069,77.042 +634182,92.089,75.797 +634183,91.063,74.55 +634184,89.987,73.304 +634185,91.684,77.047 +634186,90.747,75.784 +634187,89.764,74.519 +634188,88.733,73.254 +634189,90.298,77.051 +634190,89.404,75.771 +634191,88.465,74.488 +634192,87.479,73.205 +634193,88.912,77.055 +634194,88.061,75.757 +634195,87.167,74.457 +634196,86.226,73.157 +634197,87.524,77.057 +634198,86.718,75.743 +634199,85.868,74.427 +634200,84.973,73.11 +634201,86.137,77.058 +634202,85.375,75.729 +634203,84.57,74.397 +634204,83.722,73.064 +634205,84.748,77.058 +634206,84.031,75.715 +634207,83.273,74.368 +634208,82.471,73.019 +634209,83.359,77.058 +634210,82.687,75.7 +634211,81.975,74.339 +634212,81.221,72.976 +634213,81.969,77.056 +634214,81.343,75.685 +634215,80.678,74.31 +634216,79.971,72.934 +634217,80.579,77.053 +634218,79.999,75.669 +634219,79.381,74.282 +634220,78.721,72.892 +634221,79.188,77.048 +634222,78.655,75.653 +634223,78.084,74.254 +634224,77.473,72.852 +634225,77.797,77.043 +634226,77.31,75.637 +634227,76.787,74.226 +634228,76.224,72.813 +634229,76.405,77.037 +634230,75.966,75.62 +634231,75.49,74.199 +634232,74.976,72.775 +634233,75.013,77.029 +634234,74.621,75.603 +634235,74.194,74.173 +634236,73.729,72.739 +634237,73.62,77.021 +634238,73.276,75.586 +634239,72.897,74.146 +634240,72.482,72.703 +634241,72.227,77.011 +634242,71.932,75.568 +634243,71.601,74.12 +634244,71.235,72.669 +634245,70.834,77 +634246,70.587,75.55 +634247,70.305,74.095 +634248,69.988,72.636 +634249,69.44,76.988 +634250,69.242,75.531 +634251,69.009,74.07 +634252,68.742,72.604 +634253,68.046,76.975 +634254,67.897,75.512 +634255,67.713,74.045 +634256,67.496,72.574 +634257,66.652,76.96 +634258,66.551,75.493 +634259,66.417,74.02 +634260,66.249,72.544 +634261,65.258,76.945 +634262,65.206,75.473 +634263,65.122,73.997 +634264,65.004,72.516 +634265,63.864,76.928 +634266,63.861,75.453 +634267,63.826,73.973 +634268,63.758,72.489 +634269,62.469,76.91 +634270,62.516,75.433 +634271,62.53,73.95 +634272,62.512,72.463 +634273,61.074,76.891 +634274,61.171,75.412 +634275,61.235,73.927 +634276,61.266,72.439 +634277,59.68,76.871 +634278,59.826,75.39 +634279,59.939,73.905 +634280,60.02,72.416 +634281,58.285,76.85 +634282,58.48,75.369 +634283,58.643,73.883 +634284,58.774,72.394 +634285,56.891,76.827 +634286,57.135,75.346 +634287,57.348,73.861 +634288,57.528,72.373 +634289,55.496,76.803 +634290,55.79,75.324 +634291,56.052,73.84 +634292,56.282,72.353 +634293,54.102,76.778 +634294,54.445,75.301 +634295,54.756,73.819 +634296,55.035,72.335 +634297,52.708,76.752 +634298,53.1,75.278 +634299,53.46,73.799 +634300,53.789,72.318 +634301,51.314,76.725 +634302,51.756,75.254 +634303,52.164,73.779 +634304,52.542,72.302 +634305,49.92,76.697 +634306,50.411,75.23 +634307,50.868,73.76 +634308,51.294,72.287 +634309,48.526,76.667 +634310,49.066,75.206 +634311,49.572,73.741 +634312,50.047,72.273 +634313,47.133,76.636 +634314,47.722,75.181 +634315,48.276,73.722 +634316,48.799,72.261 +634317,45.74,76.605 +634318,46.377,75.156 +634319,46.98,73.704 +634320,47.55,72.25 +634321,44.348,76.572 +634322,45.033,75.13 +634323,45.684,73.686 +634324,46.301,72.24 +634325,42.956,76.537 +634326,43.689,75.104 +634327,44.387,73.668 +634328,45.052,72.231 +634329,41.564,76.502 +634330,42.345,75.078 +634331,43.091,73.651 +634332,43.802,72.224 +634333,40.173,76.466 +634334,41.002,75.051 +634335,41.794,73.634 +634336,42.552,72.217 +634337,38.782,76.428 +634338,39.658,75.024 +634339,40.497,73.618 +634340,41.3,72.212 +634341,37.392,76.389 +634342,38.315,74.996 +634343,39.199,73.602 +634344,40.049,72.208 +634345,36.003,76.35 +634346,36.972,74.968 +634347,37.902,73.587 +634348,38.796,72.205 +634349,34.614,76.309 +634350,35.629,74.94 +634351,36.604,73.571 +634352,37.543,72.203 +634353,33.226,76.267 +634354,34.287,74.912 +634355,35.307,73.556 +634356,36.289,72.202 +634357,31.838,76.224 +634358,32.944,74.883 +634359,34.009,73.542 +634360,35.035,72.203 +634361,30.452,76.18 +634362,31.602,74.853 +634363,32.71,73.528 +634364,33.779,72.204 +634365,29.066,76.135 +634366,30.261,74.824 +634367,31.412,73.514 +634368,32.523,72.207 +634369,27.681,76.088 +634370,28.919,74.794 +634371,30.113,73.501 +634372,31.266,72.21 +634373,26.296,76.041 +634374,27.578,74.763 +634375,28.814,73.488 +634376,30.008,72.215 +634377,24.913,75.993 +634378,26.237,74.733 +634379,27.514,73.475 +634380,28.749,72.221 +634381,23.531,75.944 +634382,24.897,74.702 +634383,26.215,73.463 +634384,27.489,72.228 +634385,22.149,75.893 +634386,23.557,74.67 +634387,24.915,73.451 +634388,26.228,72.235 +634389,20.769,75.842 +634390,22.217,74.639 +634391,23.614,73.439 +634392,24.966,72.244 +634393,19.389,75.79 +634394,20.878,74.607 +634395,22.314,73.428 +634396,23.703,72.254 +634397,18.011,75.737 +634398,19.539,74.574 +634399,21.013,73.417 +634400,22.439,72.264 +634401,16.633,75.683 +634402,18.2,74.542 +634403,19.711,73.406 +634404,21.174,72.276 +634405,15.257,75.628 +634406,16.862,74.509 +634407,18.41,73.395 +634408,19.908,72.288 +634409,13.882,75.572 +634410,15.524,74.476 +634411,17.107,73.385 +634412,18.64,72.302 +634413,12.508,75.515 +634414,14.186,74.442 +634415,15.805,73.376 +634416,17.372,72.316 +634417,11.135,75.458 +634418,12.849,74.408 +634419,14.502,73.366 +634420,16.102,72.331 +634421,9.7639,75.399 +634422,11.513,74.374 +634423,13.199,73.357 +634424,14.831,72.347 +634425,8.3937,75.34 +634426,10.177,74.34 +634427,11.895,73.348 +634428,13.559,72.364 +634429,7.0248,75.28 +634430,8.8408,74.305 +634431,10.591,73.339 +634432,12.285,72.381 +634433,5.6573,75.219 +634434,7.5055,74.271 +634435,9.2867,73.331 +634436,11.01,72.4 +634437,4.291,75.158 +634438,6.1707,74.235 +634439,7.9818,73.322 +634440,9.7339,72.419 +634441,2.9262,75.095 +634442,4.8364,74.2 +634443,6.6765,73.315 +634444,8.4564,72.438 +634445,1.5628,75.032 +634446,3.5025,74.165 +634447,5.3707,73.307 +634448,7.1774,72.459 +634449,0.20076,74.968 +634450,2.1691,74.129 +634451,4.0645,73.299 +634452,5.8971,72.48 +634453,358.84,74.904 +634454,0.83622,74.093 +634455,2.7578,73.292 +634456,4.6154,72.502 +634457,357.48,74.839 +634458,359.5,74.056 +634459,1.4506,73.285 +634460,3.3322,72.524 +634461,356.12,74.773 +634462,358.17,74.02 +634463,0.14301,73.278 +634464,2.0477,72.547 +634465,354.77,74.707 +634466,356.84,73.983 +634467,358.83,73.272 +634468,0.76162,72.571 +634469,353.41,74.64 +634470,355.51,73.947 +634471,357.53,73.265 +634472,359.47,72.595 +634473,352.06,74.573 +634474,354.18,73.91 +634475,356.22,73.259 +634476,358.19,72.62 +634477,350.71,74.505 +634478,352.85,73.872 +634479,354.91,73.253 +634480,356.89,72.645 +634481,349.36,74.436 +634482,351.52,73.835 +634483,353.6,73.247 +634484,355.6,72.671 +634485,348.01,74.367 +634486,350.19,73.797 +634487,352.29,73.241 +634488,354.31,72.697 +634489,346.66,74.298 +634490,348.86,73.76 +634491,350.98,73.235 +634492,353.01,72.724 +634493,345.32,74.228 +634494,347.54,73.722 +634495,349.66,73.23 +634496,351.72,72.751 +634497,343.98,74.157 +634498,346.21,73.684 +634499,348.35,73.225 +634500,350.42,72.778 +634501,342.63,74.087 +634502,344.88,73.646 +634503,347.04,73.219 +634504,349.12,72.806 +634505,341.3,74.016 +634506,343.56,73.608 +634507,345.73,73.214 +634508,347.82,72.834 +634509,339.96,73.944 +634510,342.23,73.57 +634511,344.41,73.209 +634512,346.52,72.862 +634513,338.62,73.872 +634514,340.91,73.531 +634515,343.1,73.204 +634516,345.21,72.891 +634517,337.29,73.8 +634518,339.58,73.493 +634519,341.78,73.2 +634520,343.9,72.92 +634521,335.95,73.728 +634522,338.26,73.454 +634523,340.47,73.195 +634524,342.6,72.949 +634525,334.62,73.656 +634526,336.94,73.416 +634527,339.15,73.19 +634528,341.29,72.978 +634529,333.29,73.583 +634530,335.61,73.377 +634531,337.84,73.186 +634532,339.98,73.007 +634533,331.97,73.51 +634534,334.29,73.338 +634535,336.52,73.181 +634536,338.66,73.037 +634537,330.64,73.437 +634538,332.97,73.3 +634539,335.2,73.177 +634540,337.35,73.067 +634541,329.32,73.364 +634542,331.65,73.261 +634543,333.88,73.172 +634544,336.03,73.096 +634545,327.99,73.291 +634546,330.33,73.222 +634547,332.57,73.168 +634548,334.72,73.126 +634549,326.67,73.218 +634550,329.01,73.183 +634551,331.25,73.163 +634552,333.4,73.156 +634553,325.35,73.144 +634554,327.69,73.144 +634555,329.93,73.159 +634556,332.08,73.186 +634557,324.04,73.071 +634558,326.37,73.105 +634559,328.61,73.154 +634560,330.75,73.215 +634561,322.72,72.998 +634562,325.06,73.067 +634563,327.29,73.15 +634564,329.43,73.245 +634565,321.41,72.925 +634566,323.74,73.028 +634567,325.97,73.145 +634568,328.1,73.275 +634569,320.1,72.851 +634570,322.42,72.989 +634571,324.64,73.141 +634572,326.78,73.304 +634573,318.79,72.778 +634574,321.11,72.95 +634575,323.32,73.136 +634576,325.45,73.333 +634577,317.48,72.705 +634578,319.79,72.912 +634579,322,73.131 +634580,324.12,73.363 +634581,316.17,72.633 +634582,318.48,72.873 +634583,320.67,73.127 +634584,322.78,73.392 +634585,314.87,72.56 +634586,317.16,72.835 +634587,319.35,73.122 +634588,321.45,73.42 +634589,313.57,72.488 +634590,315.85,72.796 +634591,318.03,73.117 +634592,320.12,73.449 +634593,312.27,72.416 +634594,314.53,72.758 +634595,316.7,73.112 +634596,318.78,73.477 +634597,310.97,72.344 +634598,313.22,72.719 +634599,315.38,73.107 +634600,317.44,73.505 +634601,309.67,72.272 +634602,311.91,72.681 +634603,314.05,73.102 +634604,316.1,73.533 +634605,308.38,72.201 +634606,310.6,72.643 +634607,312.72,73.097 +634608,314.76,73.56 +634609,307.08,72.13 +634610,309.29,72.605 +634611,311.4,73.092 +634612,313.42,73.587 +634613,305.79,72.06 +634614,307.98,72.568 +634615,310.07,73.086 +634616,312.07,73.613 +634617,304.5,71.99 +634618,306.67,72.53 +634619,308.74,73.08 +634620,310.72,73.639 +634621,303.21,71.92 +634622,305.36,72.492 +634623,307.41,73.075 +634624,309.38,73.665 +634625,301.92,71.851 +634626,304.05,72.455 +634627,306.08,73.069 +634628,308.03,73.69 +634629,300.64,71.782 +634630,302.74,72.418 +634631,304.75,73.063 +634632,306.68,73.714 +634633,299.35,71.714 +634634,301.44,72.381 +634635,303.42,73.056 +634636,305.32,73.738 +634637,298.07,71.646 +634638,300.13,72.344 +634639,302.09,73.05 +634640,303.97,73.762 +634641,296.79,71.579 +634642,298.82,72.307 +634643,300.76,73.043 +634644,302.62,73.785 +634645,295.51,71.513 +634646,297.52,72.271 +634647,299.43,73.036 +634648,301.26,73.807 +634649,294.23,71.447 +634650,296.21,72.235 +634651,298.1,73.029 +634652,299.9,73.829 +634653,292.96,71.381 +634654,294.91,72.199 +634655,296.77,73.022 +634656,298.54,73.85 +634657,291.68,71.317 +634658,293.6,72.163 +634659,295.43,73.015 +634660,297.18,73.87 +634661,290.41,71.253 +634662,292.3,72.127 +634663,294.1,73.007 +634664,295.82,73.89 +634665,289.14,71.19 +634666,291,72.092 +634667,292.76,72.999 +634668,294.46,73.909 +634669,287.87,71.127 +634670,289.69,72.057 +634671,291.43,72.991 +634672,293.09,73.927 +634673,286.6,71.066 +634674,288.39,72.022 +634675,290.1,72.982 +634676,291.72,73.944 +634677,285.33,71.005 +634678,287.09,71.987 +634679,288.76,72.973 +634680,290.36,73.961 +634681,284.07,70.945 +634682,285.79,71.953 +634683,287.43,72.964 +634684,288.99,73.977 +634685,282.8,70.885 +634686,284.49,71.919 +634687,286.09,72.955 +634688,287.62,73.992 +634689,281.54,70.827 +634690,283.19,71.885 +634691,284.75,72.946 +634692,286.25,74.006 +634693,280.28,70.769 +634694,281.89,71.852 +634695,283.42,72.936 +634696,284.88,74.02 +634697,279.02,70.712 +634698,280.59,71.819 +634699,282.08,72.926 +634700,283.5,74.032 +634701,277.76,70.657 +634702,279.29,71.786 +634703,280.74,72.915 +634704,282.13,74.044 +634705,276.5,70.602 +634706,277.99,71.753 +634707,279.4,72.905 +634708,280.75,74.054 +634709,275.24,70.548 +634710,276.69,71.721 +634711,278.07,72.894 +634712,279.38,74.064 +634713,273.99,70.495 +634714,275.39,71.689 +634715,276.73,72.882 +634716,278,74.073 +634717,272.73,70.443 +634718,274.09,71.657 +634719,275.39,72.871 +634720,276.62,74.081 +634721,271.48,70.392 +634722,272.8,71.626 +634723,274.05,72.859 +634724,275.24,74.088 +634725,270.22,70.342 +634726,271.5,71.595 +634727,272.71,72.846 +634728,273.86,74.094 +634729,268.97,70.293 +634730,270.2,71.564 +634731,271.37,72.834 +634732,272.48,74.099 +634733,267.72,70.245 +634734,268.91,71.534 +634735,270.03,72.821 +634736,271.1,74.103 +634737,266.47,70.198 +634738,267.61,71.504 +634739,268.69,72.807 +634740,269.71,74.106 +634741,265.22,70.152 +634742,266.31,71.475 +634743,267.35,72.794 +634744,268.33,74.107 +634745,263.97,70.107 +634746,265.02,71.445 +634747,266.01,72.78 +634748,266.94,74.108 +634749,262.72,70.063 +634750,263.72,71.416 +634751,264.67,72.765 +634752,265.56,74.108 +634753,261.48,70.021 +634754,262.43,71.388 +634755,263.32,72.75 +634756,264.17,74.107 +634757,260.23,69.979 +634758,261.13,71.36 +634759,261.98,72.735 +634760,262.78,74.104 +634761,258.99,69.939 +634762,259.84,71.332 +634763,260.64,72.72 +634764,261.4,74.101 +634765,257.74,69.9 +634766,258.55,71.305 +634767,259.3,72.704 +634768,260.01,74.096 +634769,256.5,69.862 +634770,257.25,71.278 +634771,257.96,72.688 +634772,258.62,74.09 +634773,255.25,69.825 +634774,255.96,71.251 +634775,256.61,72.671 +634776,257.23,74.084 +634777,254.01,69.789 +634778,254.66,71.225 +634779,255.27,72.654 +634780,255.84,74.076 +634781,252.77,69.755 +634782,253.37,71.199 +634783,253.93,72.637 +634784,254.45,74.066 +634785,251.52,69.721 +634786,252.08,71.174 +634787,252.59,72.619 +634788,253.05,74.056 +634789,250.28,69.689 +634790,250.78,71.148 +634791,251.24,72.601 +634792,251.66,74.045 +634793,249.04,69.658 +634794,249.49,71.124 +634795,249.9,72.582 +634796,250.27,74.032 +634797,247.8,69.629 +634798,248.2,71.1 +634799,248.56,72.563 +634800,248.88,74.019 +634801,246.56,69.6 +634802,246.91,71.076 +634803,247.21,72.544 +634804,247.48,74.004 +634805,245.32,69.573 +634806,245.61,71.052 +634807,245.87,72.524 +634808,246.09,73.988 +634809,244.08,69.547 +634810,244.32,71.029 +634811,244.53,72.504 +634812,244.7,73.97 +634813,242.84,69.522 +634814,243.03,71.006 +634815,243.18,72.484 +634816,243.3,73.952 +634817,241.6,69.498 +634818,241.74,70.984 +634819,241.84,72.463 +634820,241.91,73.932 +634821,240.36,69.476 +634822,240.44,70.962 +634823,240.5,72.441 +634824,240.52,73.912 +634825,239.12,69.454 +634826,239.15,70.941 +634827,239.15,72.42 +634828,239.12,73.89 +634829,237.87,69.434 +634830,237.86,70.92 +634831,237.81,72.398 +634832,237.73,73.867 +634833,236.63,69.415 +634834,236.57,70.899 +634835,236.47,72.375 +634836,236.33,73.842 +634837,235.39,69.398 +634838,235.27,70.879 +634839,235.12,72.352 +634840,234.94,73.817 +634841,234.15,69.381 +634842,233.98,70.859 +634843,233.78,72.329 +634844,233.54,73.79 +634845,232.91,69.366 +634846,232.69,70.839 +634847,232.43,72.305 +634848,232.15,73.763 +634849,231.67,69.352 +634850,231.4,70.82 +634851,231.09,72.281 +634852,230.75,73.734 +634853,230.43,69.339 +634854,230.1,70.801 +634855,229.75,72.257 +634856,229.36,73.704 +634857,229.19,69.328 +634858,228.81,70.783 +634859,228.4,72.232 +634860,227.97,73.672 +634861,227.95,69.318 +634862,227.52,70.765 +634863,227.06,72.206 +634864,226.57,73.64 +634865,226.71,69.308 +634866,226.23,70.748 +634867,225.72,72.181 +634868,225.18,73.606 +634869,225.46,69.3 +634870,224.93,70.731 +634871,224.38,72.155 +634872,223.79,73.572 +634873,224.22,69.293 +634874,223.64,70.714 +634875,223.03,72.128 +634876,222.39,73.536 +634877,222.98,69.288 +634878,222.35,70.697 +634879,221.69,72.102 +634880,221,73.499 +634881,221.73,69.283 +634882,221.05,70.681 +634883,220.35,72.074 +634884,219.61,73.461 +634885,220.49,69.28 +634886,219.76,70.666 +634887,219.01,72.047 +634888,218.22,73.421 +634889,219.24,69.278 +634890,218.47,70.651 +634891,217.66,72.019 +634892,216.83,73.381 +634893,218,69.276 +634894,217.17,70.636 +634895,216.32,71.991 +634896,215.43,73.34 +634897,216.75,69.276 +634898,215.88,70.621 +634899,214.98,71.962 +634900,214.04,73.297 +634901,215.5,69.277 +634902,214.59,70.607 +634903,213.64,71.933 +634904,212.65,73.253 +634905,214.25,69.28 +634906,213.29,70.593 +634907,212.3,71.903 +634908,211.27,73.209 +634909,213.01,69.283 +634910,212,70.58 +634911,210.96,71.874 +634912,209.88,73.163 +634913,211.76,69.287 +634914,210.7,70.567 +634915,209.61,71.844 +634916,208.49,73.116 +634917,210.51,69.292 +634918,209.41,70.554 +634919,208.27,71.813 +634920,207.1,73.069 +634921,209.25,69.299 +634922,208.11,70.542 +634923,206.93,71.782 +634924,205.72,73.02 +634925,208,69.306 +634926,206.82,70.53 +634927,205.59,71.751 +634928,204.33,72.97 +634929,206.75,69.314 +634930,205.52,70.518 +634931,204.25,71.72 +634932,202.95,72.919 +634933,205.49,69.324 +634934,204.22,70.506 +634935,202.92,71.688 +634936,201.56,72.867 +634937,204.24,69.334 +634938,202.93,70.495 +634939,201.58,71.656 +634940,200.18,72.815 +634941,202.98,69.345 +634942,201.63,70.485 +634943,200.24,71.624 +634944,198.8,72.761 +634945,201.73,69.357 +634946,200.33,70.474 +634947,198.9,71.591 +634948,197.42,72.706 +634949,200.47,69.37 +634950,199.04,70.464 +634951,197.56,71.558 +634952,196.04,72.651 +634953,199.21,69.384 +634954,197.74,70.454 +634955,196.22,71.524 +634956,194.66,72.595 +634957,197.95,69.399 +634958,196.44,70.444 +634959,194.89,71.491 +634960,193.28,72.537 +634961,196.69,69.415 +634962,195.14,70.435 +634963,193.55,71.457 +634964,191.91,72.479 +634965,195.42,69.431 +634966,193.84,70.426 +634967,192.21,71.423 +634968,190.53,72.42 +634969,194.16,69.449 +634970,192.54,70.417 +634971,190.88,71.388 +634972,189.16,72.361 +634973,192.89,69.467 +634974,191.24,70.409 +634975,189.54,71.354 +634976,187.78,72.3 +634977,191.63,69.486 +634978,189.94,70.401 +634979,188.21,71.319 +634980,186.41,72.239 +634981,190.36,69.505 +634982,188.64,70.393 +634983,186.87,71.283 +634984,185.04,72.177 +634985,189.09,69.525 +634986,187.34,70.385 +634987,185.54,71.248 +634988,183.67,72.114 +634989,187.82,69.546 +634990,186.04,70.377 +634991,184.21,71.212 +634992,182.31,72.05 +634993,186.54,69.568 +634994,184.74,70.37 +634995,182.87,71.176 +634996,180.94,71.986 +634997,185.27,69.59 +634998,183.43,70.363 +634999,181.54,71.14 +635000,179.57,71.921 +635001,184,69.613 +635002,182.13,70.356 +635003,180.21,71.104 +635004,178.21,71.855 +635005,182.72,69.637 +635006,180.83,70.349 +635007,178.88,71.067 +635008,176.85,71.789 +635009,181.44,69.661 +635010,179.52,70.343 +635011,177.54,71.03 +635012,175.49,71.723 +635013,180.16,69.685 +635014,178.22,70.336 +635015,176.21,70.993 +635016,174.13,71.655 +635017,178.88,69.711 +635018,176.92,70.33 +635019,174.88,70.956 +635020,172.77,71.587 +635021,177.6,69.736 +635022,175.61,70.324 +635023,173.55,70.919 +635024,171.42,71.519 +635025,176.31,69.762 +635026,174.3,70.318 +635027,172.22,70.881 +635028,170.06,71.45 +635029,175.03,69.789 +635030,173,70.313 +635031,170.9,70.843 +635032,168.71,71.38 +635033,173.74,69.816 +635034,171.69,70.307 +635035,169.57,70.805 +635036,167.36,71.311 +635037,172.45,69.843 +635038,170.38,70.302 +635039,168.24,70.768 +635040,166.01,71.24 +635041,171.16,69.871 +635042,169.08,70.296 +635043,166.91,70.729 +635044,164.66,71.17 +635045,169.87,69.899 +635046,167.77,70.291 +635047,165.59,70.691 +635048,163.31,71.098 +635049,168.58,69.927 +635050,166.46,70.286 +635051,164.26,70.653 +635052,161.97,71.027 +635053,167.28,69.956 +635054,165.15,70.281 +635055,162.94,70.614 +635056,160.63,70.955 +635057,165.99,69.985 +635058,163.84,70.276 +635059,161.61,70.576 +635060,159.29,70.883 +635061,164.69,70.014 +635062,162.53,70.272 +635063,160.29,70.537 +635064,157.95,70.811 +635065,163.39,70.043 +635066,161.22,70.267 +635067,158.96,70.498 +635068,156.61,70.738 +635069,162.08,70.073 +635070,159.91,70.262 +635071,157.64,70.46 +635072,155.27,70.665 +635073,160.78,70.102 +635074,158.59,70.258 +635075,156.32,70.421 +635076,153.94,70.592 +635077,159.48,70.132 +635078,157.28,70.253 +635079,155,70.382 +635080,152.61,70.519 +635081,158.17,70.162 +635082,155.97,70.248 +635083,153.68,70.343 +635084,151.28,70.446 +635085,156.86,70.192 +635086,154.65,70.244 +635087,152.36,70.304 +635088,149.95,70.372 +635089,155.55,70.222 +635090,153.34,70.239 +635091,151.04,70.265 +635092,148.62,70.299 +635093,154.24,70.251 +635094,152.03,70.235 +635095,149.72,70.226 +635096,147.3,70.225 +635097,152.93,70.281 +635098,150.71,70.23 +635099,148.4,70.187 +635100,145.98,70.152 +635101,151.61,70.311 +635102,149.39,70.226 +635103,147.08,70.148 +635104,144.65,70.078 +635105,150.29,70.341 +635106,148.08,70.221 +635107,145.76,70.109 +635108,143.33,70.005 +635109,148.98,70.371 +635110,146.76,70.217 +635111,144.45,70.07 +635112,142.02,69.931 +635113,147.66,70.4 +635114,145.44,70.212 +635115,143.13,70.031 +635116,140.7,69.858 +635117,146.33,70.429 +635118,144.12,70.207 +635119,141.81,69.992 +635120,139.39,69.784 +635121,145.01,70.459 +635122,142.8,70.202 +635123,140.5,69.953 +635124,138.08,69.711 +635125,143.69,70.488 +635126,141.49,70.198 +635127,139.18,69.914 +635128,136.77,69.638 +635129,142.36,70.516 +635130,140.17,70.193 +635131,137.87,69.875 +635132,135.46,69.565 +635133,141.03,70.545 +635134,138.84,70.188 +635135,136.56,69.837 +635136,134.15,69.493 +635137,139.7,70.573 +635138,137.52,70.183 +635139,135.24,69.798 +635140,132.85,69.42 +635141,138.37,70.601 +635142,136.2,70.177 +635143,133.93,69.759 +635144,131.55,69.348 +635145,137.03,70.628 +635146,134.88,70.172 +635147,132.62,69.721 +635148,130.25,69.277 +635149,135.7,70.655 +635150,133.56,70.167 +635151,131.31,69.683 +635152,128.95,69.205 +635153,134.36,70.682 +635154,132.23,70.161 +635155,130,69.645 +635156,127.65,69.134 +635157,133.02,70.708 +635158,130.91,70.155 +635159,128.69,69.607 +635160,126.35,69.063 +635161,131.69,70.734 +635162,129.59,70.149 +635163,127.38,69.569 +635164,125.06,68.993 +635165,130.34,70.759 +635166,128.26,70.143 +635167,126.07,69.531 +635168,123.77,68.923 +635169,129,70.784 +635170,126.93,70.137 +635171,124.77,69.493 +635172,122.48,68.854 +635173,127.66,70.809 +635174,125.61,70.131 +635175,123.46,69.456 +635176,121.19,68.785 +635177,126.31,70.832 +635178,124.28,70.124 +635179,122.15,69.419 +635180,119.91,68.717 +635181,124.96,70.855 +635182,122.95,70.117 +635183,120.85,69.381 +635184,118.62,68.649 +635185,123.61,70.878 +635186,121.63,70.111 +635187,119.54,69.345 +635188,117.34,68.582 +635189,122.26,70.9 +635190,120.3,70.103 +635191,118.24,69.308 +635192,116.06,68.515 +635193,120.91,70.921 +635194,118.97,70.096 +635195,116.93,69.271 +635196,114.78,68.449 +635197,119.56,70.942 +635198,117.64,70.088 +635199,115.63,69.235 +635200,113.5,68.384 +635201,118.2,70.962 +635202,116.31,70.08 +635203,114.32,69.199 +635204,112.23,68.319 +635205,116.84,70.981 +635206,114.98,70.072 +635207,113.02,69.163 +635208,110.95,68.255 +635209,115.49,70.999 +635210,113.65,70.064 +635211,111.72,69.128 +635212,109.68,68.192 +635213,114.13,71.017 +635214,112.32,70.055 +635215,110.42,69.092 +635216,108.41,68.129 +635217,112.77,71.034 +635218,110.99,70.047 +635219,109.12,69.057 +635220,107.14,68.067 +635221,111.4,71.05 +635222,109.66,70.037 +635223,107.82,69.022 +635224,105.87,68.006 +635225,110.04,71.066 +635226,108.32,70.028 +635227,106.52,68.988 +635228,104.6,67.946 +635229,108.67,71.08 +635230,106.99,70.018 +635231,105.22,68.953 +635232,103.34,67.887 +635233,107.31,71.094 +635234,105.66,70.008 +635235,103.92,68.919 +635236,102.07,67.828 +635237,105.94,71.106 +635238,104.32,69.998 +635239,102.62,68.886 +635240,100.81,67.771 +635241,104.57,71.118 +635242,102.99,69.988 +635243,101.32,68.852 +635244,99.552,67.714 +635245,103.2,71.129 +635246,101.66,69.977 +635247,100.02,68.819 +635248,98.292,67.658 +635249,101.83,71.139 +635250,100.32,69.965 +635251,98.724,68.786 +635252,97.034,67.603 +635253,100.46,71.148 +635254,98.985,69.954 +635255,97.428,68.754 +635256,95.777,67.549 +635257,99.086,71.156 +635258,97.649,69.942 +635259,96.131,68.721 +635260,94.522,67.496 +635261,97.711,71.164 +635262,96.313,69.93 +635263,94.835,68.69 +635264,93.268,67.444 +635265,96.335,71.17 +635266,94.977,69.917 +635267,93.539,68.658 +635268,92.015,67.393 +635269,94.958,71.175 +635270,93.64,69.905 +635271,92.244,68.627 +635272,90.763,67.343 +635273,93.581,71.179 +635274,92.303,69.891 +635275,90.949,68.596 +635276,89.512,67.294 +635277,92.202,71.182 +635278,90.965,69.878 +635279,89.655,68.565 +635280,88.263,67.246 +635281,90.822,71.184 +635282,89.627,69.864 +635283,88.36,68.535 +635284,87.014,67.199 +635285,89.441,71.185 +635286,88.289,69.85 +635287,87.067,68.505 +635288,85.767,67.153 +635289,88.059,71.185 +635290,86.951,69.835 +635291,85.773,68.476 +635292,84.52,67.109 +635293,86.677,71.183 +635294,85.612,69.82 +635295,84.48,68.447 +635296,83.275,67.065 +635297,85.293,71.181 +635298,84.273,69.804 +635299,83.187,68.418 +635300,82.03,67.023 +635301,83.909,71.178 +635302,82.934,69.789 +635303,81.895,68.389 +635304,80.786,66.981 +635305,82.524,71.173 +635306,81.594,69.773 +635307,80.602,68.361 +635308,79.543,66.941 +635309,81.138,71.167 +635310,80.254,69.756 +635311,79.31,68.334 +635312,78.301,66.902 +635313,79.751,71.161 +635314,78.914,69.739 +635315,78.019,68.306 +635316,77.06,66.864 +635317,78.363,71.153 +635318,77.574,69.722 +635319,76.727,68.279 +635320,75.819,66.827 +635321,76.975,71.144 +635322,76.233,69.704 +635323,75.436,68.253 +635324,74.579,66.792 +635325,75.587,71.133 +635326,74.893,69.686 +635327,74.145,68.227 +635328,73.34,66.757 +635329,74.197,71.122 +635330,73.552,69.667 +635331,72.854,68.201 +635332,72.101,66.724 +635333,72.807,71.109 +635334,72.211,69.649 +635335,71.564,68.176 +635336,70.862,66.692 +635337,71.417,71.095 +635338,70.869,69.629 +635339,70.273,68.151 +635340,69.625,66.661 +635341,70.026,71.08 +635342,69.528,69.61 +635343,68.983,68.126 +635344,68.387,66.632 +635345,68.634,71.064 +635346,68.187,69.589 +635347,67.693,68.102 +635348,67.151,66.604 +635349,67.242,71.047 +635350,66.845,69.569 +635351,66.403,68.078 +635352,65.914,66.576 +635353,65.85,71.028 +635354,65.503,69.548 +635355,65.113,68.055 +635356,64.678,66.55 +635357,64.457,71.009 +635358,64.161,69.527 +635359,63.824,68.032 +635360,63.442,66.526 +635361,63.064,70.988 +635362,62.819,69.505 +635363,62.534,68.009 +635364,62.207,66.502 +635365,61.671,70.965 +635366,61.477,69.483 +635367,61.245,67.987 +635368,60.971,66.48 +635369,60.278,70.942 +635370,60.135,69.46 +635371,59.955,67.965 +635372,59.736,66.459 +635373,58.884,70.918 +635374,58.793,69.437 +635375,58.666,67.944 +635376,58.501,66.439 +635377,57.49,70.892 +635378,57.451,69.414 +635379,57.377,67.923 +635380,57.266,66.421 +635381,56.096,70.865 +635382,56.109,69.39 +635383,56.088,67.902 +635384,56.031,66.403 +635385,54.701,70.837 +635386,54.767,69.366 +635387,54.799,67.882 +635388,54.796,66.387 +635389,53.307,70.807 +635390,53.425,69.341 +635391,53.509,67.862 +635392,53.561,66.372 +635393,51.913,70.777 +635394,52.082,69.316 +635395,52.22,67.843 +635396,52.325,66.358 +635397,50.518,70.745 +635398,50.74,69.291 +635399,50.931,67.824 +635400,51.09,66.346 +635401,49.124,70.712 +635402,49.398,69.265 +635403,49.642,67.805 +635404,49.855,66.335 +635405,47.73,70.678 +635406,48.056,69.239 +635407,48.353,67.787 +635408,48.619,66.325 +635409,46.336,70.643 +635410,46.714,69.212 +635411,47.063,67.769 +635412,47.383,66.316 +635413,44.942,70.607 +635414,45.372,69.185 +635415,45.774,67.752 +635416,46.147,66.308 +635417,43.548,70.569 +635418,44.03,69.158 +635419,44.484,67.735 +635420,44.91,66.301 +635421,42.154,70.53 +635422,42.689,69.13 +635423,43.195,67.718 +635424,43.673,66.296 +635425,40.761,70.491 +635426,41.347,69.102 +635427,41.905,67.702 +635428,42.435,66.292 +635429,39.368,70.45 +635430,40.006,69.073 +635431,40.615,67.686 +635432,41.198,66.289 +635433,37.975,70.408 +635434,38.665,69.044 +635435,39.326,67.67 +635436,39.959,66.287 +635437,36.583,70.364 +635438,37.323,69.015 +635439,38.035,67.655 +635440,38.72,66.286 +635441,35.191,70.32 +635442,35.982,68.985 +635443,36.745,67.64 +635444,37.481,66.286 +635445,33.8,70.275 +635446,34.642,68.955 +635447,35.455,67.626 +635448,36.24,66.288 +635449,32.409,70.228 +635450,33.301,68.925 +635451,34.164,67.612 +635452,34.999,66.29 +635453,31.019,70.181 +635454,31.961,68.894 +635455,32.873,67.598 +635456,33.758,66.294 +635457,29.629,70.132 +635458,30.621,68.863 +635459,31.582,67.584 +635460,32.516,66.298 +635461,28.24,70.082 +635462,29.281,68.831 +635463,30.291,67.571 +635464,31.273,66.304 +635465,26.851,70.032 +635466,27.941,68.799 +635467,29,67.559 +635468,30.029,66.311 +635469,25.464,69.98 +635470,26.602,68.767 +635471,27.708,67.546 +635472,28.784,66.319 +635473,24.076,69.927 +635474,25.263,68.734 +635475,26.416,67.534 +635476,27.538,66.327 +635477,22.69,69.874 +635478,23.924,68.702 +635479,25.123,67.522 +635480,26.292,66.337 +635481,21.305,69.819 +635482,22.586,68.668 +635483,23.831,67.511 +635484,25.044,66.348 +635485,19.92,69.763 +635486,21.247,68.635 +635487,22.538,67.5 +635488,23.796,66.359 +635489,18.536,69.707 +635490,19.91,68.601 +635491,21.245,67.489 +635492,22.546,66.372 +635493,17.153,69.649 +635494,18.572,68.567 +635495,19.951,67.478 +635496,21.295,66.385 +635497,15.771,69.591 +635498,17.235,68.532 +635499,18.657,67.468 +635500,20.044,66.399 +635501,14.39,69.532 +635502,15.898,68.497 +635503,17.363,67.458 +635504,18.791,66.415 +635505,13.01,69.471 +635506,14.562,68.462 +635507,16.069,67.448 +635508,17.537,66.431 +635509,11.632,69.411 +635510,13.226,68.427 +635511,14.774,67.439 +635512,16.282,66.447 +635513,10.254,69.349 +635514,11.89,68.391 +635515,13.479,67.43 +635516,15.026,66.465 +635517,8.8772,69.286 +635518,10.555,68.355 +635519,12.183,67.421 +635520,13.768,66.484 +635521,7.5017,69.223 +635522,9.2198,68.319 +635523,10.887,67.412 +635524,12.509,66.503 +635525,6.1274,69.159 +635526,7.8853,68.283 +635527,9.5904,67.404 +635528,11.249,66.523 +635529,4.7543,69.094 +635530,6.5514,68.246 +635531,8.2935,67.395 +635532,9.9877,66.543 +635533,3.3824,69.028 +635534,5.2178,68.209 +635535,6.9962,67.387 +635536,8.7249,66.565 +635537,2.0119,68.962 +635538,3.8847,68.172 +635539,5.6985,67.38 +635540,7.4608,66.587 +635541,0.6427,68.895 +635542,2.5521,68.134 +635543,4.4003,67.372 +635544,6.1953,66.609 +635545,359.27,68.827 +635546,1.2199,68.097 +635547,3.1017,67.365 +635548,4.9283,66.632 +635549,357.91,68.759 +635550,359.89,68.059 +635551,1.8026,67.358 +635552,3.66,66.656 +635553,356.54,68.69 +635554,358.56,68.021 +635555,0.50304,67.351 +635556,2.3902,66.681 +635557,355.18,68.621 +635558,357.23,67.983 +635559,359.2,67.344 +635560,1.1189,66.705 +635561,353.82,68.551 +635562,355.9,67.944 +635563,357.9,67.337 +635564,359.85,66.731 +635565,352.46,68.48 +635566,354.57,67.905 +635567,356.6,67.331 +635568,358.57,66.757 +635569,351.1,68.409 +635570,353.24,67.867 +635571,355.3,67.324 +635572,357.3,66.783 +635573,349.74,68.337 +635574,351.91,67.828 +635575,354,67.318 +635576,356.02,66.81 +635577,348.38,68.265 +635578,350.58,67.788 +635579,352.7,67.312 +635580,354.74,66.837 +635581,347.03,68.193 +635582,349.25,67.749 +635583,351.39,67.306 +635584,353.46,66.865 +635585,345.68,68.12 +635586,347.93,67.71 +635587,350.09,67.3 +635588,352.18,66.893 +635589,344.33,68.047 +635590,346.6,67.67 +635591,348.78,67.295 +635592,350.89,66.921 +635593,342.98,67.973 +635594,345.27,67.631 +635595,347.48,67.289 +635596,349.61,66.95 +635597,341.63,67.9 +635598,343.95,67.591 +635599,346.18,67.284 +635600,348.32,66.978 +635601,340.28,67.825 +635602,342.62,67.551 +635603,344.87,67.278 +635604,347.03,67.007 +635605,338.94,67.751 +635606,341.3,67.511 +635607,343.56,67.273 +635608,345.74,67.037 +635609,337.6,67.676 +635610,339.98,67.471 +635611,342.26,67.267 +635612,344.45,67.066 +635613,336.26,67.601 +635614,338.65,67.431 +635615,340.95,67.262 +635616,343.16,67.096 +635617,334.92,67.526 +635618,337.33,67.391 +635619,339.64,67.257 +635620,341.86,67.125 +635621,333.58,67.451 +635622,336.01,67.35 +635623,338.33,67.252 +635624,340.56,67.155 +635625,332.24,67.376 +635626,334.69,67.31 +635627,337.02,67.246 +635628,339.27,67.185 +635629,330.91,67.3 +635630,333.37,67.27 +635631,335.71,67.241 +635632,337.96,67.215 +635633,329.58,67.225 +635634,332.05,67.229 +635635,334.4,67.236 +635636,336.66,67.245 +635637,328.25,67.149 +635638,330.73,67.189 +635639,333.09,67.231 +635640,335.36,67.275 +635641,326.92,67.073 +635642,329.41,67.149 +635643,331.78,67.226 +635644,334.05,67.305 +635645,325.6,66.998 +635646,328.09,67.108 +635647,330.47,67.221 +635648,332.75,67.335 +635649,324.27,66.922 +635650,326.78,67.068 +635651,329.16,67.215 +635652,331.44,67.365 +635653,322.95,66.847 +635654,325.46,67.028 +635655,327.85,67.21 +635656,330.13,67.394 +635657,321.63,66.771 +635658,324.14,66.987 +635659,326.53,67.205 +635660,328.81,67.424 +635661,320.31,66.696 +635662,322.83,66.947 +635663,325.22,67.199 +635664,327.5,67.453 +635665,318.99,66.621 +635666,321.51,66.907 +635667,323.9,67.194 +635668,326.18,67.482 +635669,317.68,66.546 +635670,320.2,66.866 +635671,322.59,67.188 +635672,324.87,67.511 +635673,316.37,66.471 +635674,318.88,66.826 +635675,321.27,67.183 +635676,323.55,67.539 +635677,315.06,66.396 +635678,317.57,66.786 +635679,319.95,67.177 +635680,322.22,67.568 +635681,313.75,66.322 +635682,316.26,66.746 +635683,318.64,67.171 +635684,320.9,67.596 +635685,312.44,66.248 +635686,314.95,66.707 +635687,317.32,67.165 +635688,319.58,67.623 +635689,311.14,66.175 +635690,313.64,66.667 +635691,316,67.159 +635692,318.25,67.65 +635693,309.83,66.101 +635694,312.33,66.627 +635695,314.68,67.153 +635696,316.92,67.677 +635697,308.53,66.028 +635698,311.02,66.588 +635699,313.36,67.146 +635700,315.59,67.704 +635701,307.23,65.956 +635702,309.71,66.548 +635703,312.04,67.14 +635704,314.26,67.729 +635705,305.94,65.884 +635706,308.4,66.509 +635707,310.72,67.133 +635708,312.93,67.755 +635709,304.64,65.812 +635710,307.09,66.47 +635711,309.4,67.126 +635712,311.59,67.78 +635713,303.35,65.741 +635714,305.78,66.431 +635715,308.08,67.119 +635716,310.26,67.804 +635717,302.06,65.67 +635718,304.48,66.392 +635719,306.76,67.112 +635720,308.92,67.828 +635721,300.77,65.6 +635722,303.17,66.354 +635723,305.44,67.104 +635724,307.58,67.851 +635725,299.48,65.531 +635726,301.87,66.315 +635727,304.11,67.097 +635728,306.24,67.874 +635729,298.2,65.462 +635730,300.56,66.277 +635731,302.79,67.089 +635732,304.9,67.896 +635733,296.91,65.394 +635734,299.26,66.239 +635735,301.46,67.081 +635736,303.55,67.917 +635737,295.63,65.326 +635738,297.95,66.201 +635739,300.14,67.072 +635740,302.21,67.938 +635741,294.35,65.259 +635742,296.65,66.163 +635743,298.81,67.064 +635744,300.86,67.958 +635745,293.07,65.193 +635746,295.35,66.126 +635747,297.49,67.055 +635748,299.51,67.977 +635749,291.79,65.127 +635750,294.05,66.089 +635751,296.16,67.046 +635752,298.16,67.996 +635753,290.52,65.062 +635754,292.74,66.052 +635755,294.83,67.036 +635756,296.81,68.014 +635757,289.25,64.998 +635758,291.44,66.015 +635759,293.51,67.027 +635760,295.45,68.031 +635761,287.98,64.935 +635762,290.14,65.979 +635763,292.18,67.017 +635764,294.1,68.047 +635765,286.71,64.872 +635766,288.84,65.943 +635767,290.85,67.007 +635768,292.74,68.062 +635769,285.44,64.81 +635770,287.54,65.907 +635771,289.52,66.996 +635772,291.39,68.077 +635773,284.17,64.75 +635774,286.25,65.871 +635775,288.19,66.985 +635776,290.03,68.09 +635777,282.91,64.69 +635778,284.95,65.836 +635779,286.86,66.974 +635780,288.67,68.103 +635781,281.64,64.631 +635782,283.65,65.801 +635783,285.53,66.963 +635784,287.3,68.115 +635785,280.38,64.572 +635786,282.35,65.766 +635787,284.2,66.951 +635788,285.94,68.125 +635789,279.12,64.515 +635790,281.06,65.732 +635791,282.87,66.939 +635792,284.58,68.135 +635793,277.86,64.459 +635794,279.76,65.698 +635795,281.54,66.927 +635796,283.21,68.144 +635797,276.61,64.404 +635798,278.47,65.664 +635799,280.21,66.914 +635800,281.84,68.152 +635801,275.35,64.349 +635802,277.17,65.631 +635803,278.87,66.901 +635804,280.47,68.159 +635805,274.1,64.296 +635806,275.88,65.597 +635807,277.54,66.887 +635808,279.1,68.165 +635809,272.84,64.244 +635810,274.58,65.565 +635811,276.21,66.874 +635812,277.73,68.17 +635813,271.59,64.193 +635814,273.29,65.532 +635815,274.87,66.859 +635816,276.36,68.174 +635817,270.34,64.143 +635818,272,65.5 +635819,273.54,66.845 +635820,274.99,68.177 +635821,269.09,64.094 +635822,270.7,65.468 +635823,272.2,66.83 +635824,273.61,68.178 +635825,267.85,64.046 +635826,269.41,65.437 +635827,270.87,66.815 +635828,272.24,68.179 +635829,266.6,63.999 +635830,268.12,65.406 +635831,269.53,66.799 +635832,270.86,68.178 +635833,265.36,63.953 +635834,266.83,65.375 +635835,268.2,66.783 +635836,269.48,68.177 +635837,264.11,63.908 +635838,265.54,65.345 +635839,266.86,66.767 +635840,268.1,68.174 +635841,262.87,63.865 +635842,264.25,65.315 +635843,265.53,66.75 +635844,266.72,68.17 +635845,261.63,63.823 +635846,262.95,65.285 +635847,264.19,66.733 +635848,265.34,68.165 +635849,260.39,63.781 +635850,261.66,65.256 +635851,262.85,66.715 +635852,263.96,68.159 +635853,259.15,63.741 +635854,260.37,65.227 +635855,261.52,66.697 +635856,262.58,68.152 +635857,257.91,63.703 +635858,259.09,65.198 +635859,260.18,66.679 +635860,261.2,68.143 +635861,256.67,63.665 +635862,257.8,65.17 +635863,258.84,66.66 +635864,259.81,68.134 +635865,255.43,63.629 +635866,256.51,65.143 +635867,257.5,66.641 +635868,258.43,68.123 +635869,254.2,63.594 +635870,255.22,65.115 +635871,256.17,66.621 +635872,257.04,68.111 +635873,252.96,63.56 +635874,253.93,65.089 +635875,254.83,66.601 +635876,255.66,68.097 +635877,251.72,63.527 +635878,252.64,65.062 +635879,253.49,66.581 +635880,254.27,68.083 +635881,250.49,63.495 +635882,251.35,65.036 +635883,252.15,66.56 +635884,252.88,68.067 +635885,249.26,63.465 +635886,250.07,65.01 +635887,250.81,66.539 +635888,251.49,68.05 +635889,248.02,63.436 +635890,248.78,64.985 +635891,249.47,66.517 +635892,250.1,68.032 +635893,246.79,63.408 +635894,247.49,64.96 +635895,248.13,66.495 +635896,248.71,68.012 +635897,245.56,63.382 +635898,246.21,64.935 +635899,246.79,66.472 +635900,247.32,67.992 +635901,244.33,63.357 +635902,244.92,64.911 +635903,245.45,66.45 +635904,245.93,67.97 +635905,243.1,63.333 +635906,243.63,64.888 +635907,244.11,66.426 +635908,244.54,67.947 +635909,241.87,63.31 +635910,242.35,64.864 +635911,242.77,66.402 +635912,243.15,67.922 +635913,240.64,63.288 +635914,241.06,64.842 +635915,241.43,66.378 +635916,241.76,67.897 +635917,239.41,63.268 +635918,239.77,64.819 +635919,240.09,66.353 +635920,240.37,67.87 +635921,238.18,63.249 +635922,238.49,64.797 +635923,238.75,66.328 +635924,238.97,67.842 +635925,236.95,63.231 +635926,237.2,64.775 +635927,237.41,66.303 +635928,237.58,67.813 +635929,235.72,63.215 +635930,235.92,64.754 +635931,236.07,66.277 +635932,236.19,67.782 +635933,234.49,63.2 +635934,234.63,64.733 +635935,234.73,66.25 +635936,234.79,67.75 +635937,233.26,63.186 +635938,233.34,64.713 +635939,233.39,66.224 +635940,233.4,67.717 +635941,232.03,63.173 +635942,232.06,64.693 +635943,232.05,66.196 +635944,232.01,67.683 +635945,230.8,63.161 +635946,230.77,64.673 +635947,230.71,66.169 +635948,230.61,67.648 +635949,229.57,63.151 +635950,229.49,64.654 +635951,229.37,66.141 +635952,229.22,67.611 +635953,228.34,63.142 +635954,228.2,64.635 +635955,228.03,66.112 +635956,227.83,67.573 +635957,227.11,63.134 +635958,226.92,64.616 +635959,226.69,66.083 +635960,226.43,67.534 +635961,225.88,63.128 +635962,225.63,64.598 +635963,225.35,66.054 +635964,225.04,67.494 +635965,224.65,63.122 +635966,224.34,64.581 +635967,224.01,66.024 +635968,223.65,67.452 +635969,223.42,63.118 +635970,223.06,64.563 +635971,222.67,65.994 +635972,222.25,67.41 +635973,222.19,63.115 +635974,221.77,64.546 +635975,221.33,65.964 +635976,220.86,67.366 +635977,220.96,63.113 +635978,220.49,64.53 +635979,219.99,65.933 +635980,219.47,67.321 +635981,219.72,63.112 +635982,219.2,64.513 +635983,218.65,65.902 +635984,218.07,67.275 +635985,218.49,63.112 +635986,217.91,64.498 +635987,217.31,65.87 +635988,216.68,67.227 +635989,217.26,63.114 +635990,216.63,64.482 +635991,215.97,65.838 +635992,215.29,67.179 +635993,216.03,63.116 +635994,215.34,64.467 +635995,214.63,65.805 +635996,213.9,67.129 +635997,214.79,63.12 +635998,214.05,64.452 +635999,213.29,65.772 +636000,212.5,67.079 +636001,213.56,63.124 +636002,212.77,64.438 +636003,211.95,65.739 +636004,211.11,67.027 +636005,212.32,63.13 +636006,211.48,64.424 +636007,210.61,65.706 +636008,209.72,66.974 +636009,211.09,63.137 +636010,210.19,64.41 +636011,209.27,65.672 +636012,208.33,66.921 +636013,209.85,63.145 +636014,208.9,64.397 +636015,207.94,65.637 +636016,206.94,66.866 +636017,208.61,63.154 +636018,207.62,64.384 +636019,206.6,65.603 +636020,205.55,66.81 +636021,207.37,63.164 +636022,206.33,64.371 +636023,205.26,65.568 +636024,204.17,66.753 +636025,206.13,63.174 +636026,205.04,64.358 +636027,203.92,65.532 +636028,202.78,66.695 +636029,204.89,63.186 +636030,203.75,64.346 +636031,202.59,65.497 +636032,201.39,66.636 +636033,203.65,63.199 +636034,202.46,64.334 +636035,201.25,65.461 +636036,200.01,66.576 +636037,202.41,63.213 +636038,201.17,64.323 +636039,199.91,65.424 +636040,198.62,66.515 +636041,201.17,63.227 +636042,199.88,64.312 +636043,198.58,65.388 +636044,197.24,66.453 +636045,199.92,63.243 +636046,198.59,64.301 +636047,197.24,65.351 +636048,195.85,66.391 +636049,198.68,63.259 +636050,197.3,64.29 +636051,195.9,65.313 +636052,194.47,66.327 +636053,197.43,63.276 +636054,196.01,64.28 +636055,194.57,65.276 +636056,193.09,66.263 +636057,196.18,63.294 +636058,194.72,64.269 +636059,193.23,65.238 +636060,191.71,66.197 +636061,194.93,63.313 +636062,193.43,64.26 +636063,191.9,65.2 +636064,190.33,66.131 +636065,193.68,63.332 +636066,192.14,64.25 +636067,190.56,65.161 +636068,188.95,66.064 +636069,192.43,63.352 +636070,190.85,64.241 +636071,189.23,65.122 +636072,187.57,65.996 +636073,191.18,63.373 +636074,189.56,64.231 +636075,187.9,65.083 +636076,186.19,65.928 +636077,189.92,63.395 +636078,188.26,64.222 +636079,186.56,65.044 +636080,184.82,65.859 +636081,188.67,63.417 +636082,186.97,64.214 +636083,185.23,65.005 +636084,183.44,65.789 +636085,187.41,63.44 +636086,185.68,64.205 +636087,183.9,64.965 +636088,182.07,65.718 +636089,186.15,63.464 +636090,184.38,64.197 +636091,182.57,64.925 +636092,180.7,65.647 +636093,184.89,63.488 +636094,183.09,64.189 +636095,181.24,64.885 +636096,179.33,65.575 +636097,183.63,63.513 +636098,181.79,64.181 +636099,179.91,64.845 +636100,177.96,65.502 +636101,182.37,63.538 +636102,180.5,64.173 +636103,178.58,64.804 +636104,176.59,65.429 +636105,181.11,63.564 +636106,179.2,64.165 +636107,177.25,64.763 +636108,175.23,65.355 +636109,179.84,63.59 +636110,177.91,64.158 +636111,175.92,64.722 +636112,173.86,65.281 +636113,178.57,63.617 +636114,176.61,64.151 +636115,174.59,64.681 +636116,172.5,65.206 +636117,177.31,63.644 +636118,175.31,64.144 +636119,173.26,64.64 +636120,171.13,65.131 +636121,176.04,63.671 +636122,174.02,64.136 +636123,171.93,64.598 +636124,169.77,65.055 +636125,174.76,63.699 +636126,172.72,64.13 +636127,170.61,64.557 +636128,168.42,64.979 +636129,173.49,63.728 +636130,171.42,64.123 +636131,169.28,64.515 +636132,167.06,64.902 +636133,172.22,63.756 +636134,170.12,64.116 +636135,167.95,64.473 +636136,165.7,64.825 +636137,170.94,63.785 +636138,168.82,64.109 +636139,166.63,64.431 +636140,164.35,64.748 +636141,169.66,63.814 +636142,167.52,64.103 +636143,165.3,64.389 +636144,163,64.67 +636145,168.38,63.844 +636146,166.22,64.096 +636147,163.98,64.346 +636148,161.64,64.592 +636149,167.1,63.873 +636150,164.92,64.09 +636151,162.65,64.304 +636152,160.3,64.514 +636153,165.82,63.903 +636154,163.62,64.084 +636155,161.33,64.262 +636156,158.95,64.435 +636157,164.53,63.933 +636158,162.31,64.077 +636159,160.01,64.219 +636160,157.6,64.356 +636161,163.25,63.963 +636162,161.01,64.071 +636163,158.69,64.176 +636164,156.26,64.277 +636165,161.96,63.993 +636166,159.71,64.065 +636167,157.37,64.134 +636168,154.92,64.198 +636169,160.67,64.023 +636170,158.4,64.059 +636171,156.04,64.091 +636172,153.58,64.119 +636173,159.38,64.053 +636174,157.1,64.052 +636175,154.72,64.048 +636176,152.24,64.04 +636177,158.08,64.083 +636178,155.79,64.046 +636179,153.41,64.006 +636180,150.9,63.96 +636181,156.79,64.114 +636182,154.49,64.04 +636183,152.09,63.963 +636184,149.57,63.881 +636185,155.49,64.144 +636186,153.18,64.034 +636187,150.77,63.92 +636188,148.23,63.801 +636189,154.19,64.174 +636190,151.88,64.027 +636191,149.45,63.877 +636192,146.9,63.722 +636193,152.89,64.203 +636194,150.57,64.021 +636195,148.13,63.834 +636196,145.57,63.642 +636197,151.59,64.233 +636198,149.26,64.015 +636199,146.82,63.792 +636200,144.25,63.563 +636201,150.29,64.263 +636202,147.95,64.008 +636203,145.5,63.749 +636204,142.92,63.484 +636205,148.98,64.292 +636206,146.64,64.002 +636207,144.19,63.706 +636208,141.6,63.405 +636209,147.67,64.321 +636210,145.33,63.995 +636211,142.87,63.663 +636212,140.28,63.326 +636213,146.36,64.35 +636214,144.02,63.988 +636215,141.56,63.621 +636216,138.96,63.247 +636217,145.05,64.379 +636218,142.71,63.981 +636219,140.25,63.578 +636220,137.64,63.168 +636221,143.74,64.407 +636222,141.4,63.975 +636223,138.93,63.536 +636224,136.32,63.09 +636225,142.43,64.435 +636226,140.09,63.967 +636227,137.62,63.494 +636228,135.01,63.012 +636229,141.11,64.462 +636230,138.77,63.96 +636231,136.31,63.451 +636232,133.7,62.935 +636233,139.79,64.489 +636234,137.46,63.953 +636235,135,63.409 +636236,132.39,62.857 +636237,138.47,64.516 +636238,136.15,63.945 +636239,133.69,63.367 +636240,131.08,62.78 +636241,137.15,64.542 +636242,134.83,63.938 +636243,132.38,63.325 +636244,129.78,62.704 +636245,135.83,64.568 +636246,133.52,63.93 +636247,131.07,63.283 +636248,128.48,62.628 +636249,134.5,64.593 +636250,132.2,63.922 +636251,129.77,63.242 +636252,127.17,62.552 +636253,133.18,64.618 +636254,130.88,63.914 +636255,128.46,63.2 +636256,125.88,62.477 +636257,131.85,64.642 +636258,129.57,63.905 +636259,127.15,63.159 +636260,124.58,62.402 +636261,130.52,64.665 +636262,128.25,63.897 +636263,125.85,63.118 +636264,123.28,62.328 +636265,129.19,64.688 +636266,126.93,63.888 +636267,124.54,63.077 +636268,121.99,62.255 +636269,127.85,64.71 +636270,125.61,63.879 +636271,123.24,63.036 +636272,120.7,62.182 +636273,126.52,64.732 +636274,124.29,63.87 +636275,121.93,62.996 +636276,119.41,62.109 +636277,125.18,64.753 +636278,122.97,63.86 +636279,120.63,62.955 +636280,118.12,62.038 +636281,123.84,64.773 +636282,121.65,63.851 +636283,119.33,62.915 +636284,116.84,61.967 +636285,122.5,64.793 +636286,120.33,63.841 +636287,118.03,62.875 +636288,115.56,61.896 +636289,121.16,64.811 +636290,119.01,63.83 +636291,116.72,62.836 +636292,114.27,61.827 +636293,119.82,64.829 +636294,117.69,63.82 +636295,115.42,62.796 +636296,112.99,61.758 +636297,118.47,64.846 +636298,116.37,63.809 +636299,114.12,62.757 +636300,111.72,61.69 +636301,117.13,64.862 +636302,115.04,63.798 +636303,112.82,62.718 +636304,110.44,61.623 +636305,115.78,64.878 +636306,113.72,63.787 +636307,111.53,62.679 +636308,109.17,61.556 +636309,114.43,64.892 +636310,112.4,63.775 +636311,110.23,62.641 +636312,107.9,61.491 +636313,113.08,64.906 +636314,111.07,63.763 +636315,108.93,62.603 +636316,106.63,61.426 +636317,111.73,64.919 +636318,109.75,63.75 +636319,107.63,62.565 +636320,105.36,61.362 +636321,110.37,64.93 +636322,108.42,63.738 +636323,106.34,62.528 +636324,104.09,61.3 +636325,109.02,64.941 +636326,107.1,63.725 +636327,105.04,62.49 +636328,102.83,61.238 +636329,107.66,64.951 +636330,105.77,63.712 +636331,103.75,62.453 +636332,101.57,61.177 +636333,106.3,64.96 +636334,104.44,63.698 +636335,102.45,62.417 +636336,100.3,61.117 +636337,104.94,64.968 +636338,103.12,63.684 +636339,101.16,62.381 +636340,99.045,61.058 +636341,103.58,64.975 +636342,101.79,63.67 +636343,99.863,62.345 +636344,97.788,61 +636345,102.22,64.98 +636346,100.46,63.655 +636347,98.57,62.309 +636348,96.532,60.943 +636349,100.86,64.985 +636350,99.13,63.64 +636351,97.277,62.274 +636352,95.277,60.887 +636353,99.49,64.989 +636354,97.801,63.624 +636355,95.985,62.239 +636356,94.025,60.832 +636357,98.124,64.991 +636358,96.471,63.608 +636359,94.694,62.204 +636360,92.773,60.779 +636361,96.757,64.992 +636362,95.141,63.592 +636363,93.403,62.17 +636364,91.524,60.726 +636365,95.388,64.993 +636366,93.81,63.575 +636367,92.112,62.136 +636368,90.276,60.675 +636369,94.018,64.992 +636370,92.479,63.558 +636371,90.822,62.103 +636372,89.029,60.624 +636373,92.647,64.99 +636374,91.148,63.541 +636375,89.533,62.07 +636376,87.784,60.575 +636377,91.275,64.987 +636378,89.816,63.523 +636379,88.244,62.037 +636380,86.54,60.527 +636381,89.902,64.982 +636382,88.484,63.505 +636383,86.955,62.004 +636384,85.297,60.481 +636385,88.528,64.977 +636386,87.152,63.486 +636387,85.667,61.972 +636388,84.056,60.435 +636389,87.152,64.97 +636390,85.819,63.467 +636391,84.379,61.941 +636392,82.816,60.391 +636393,85.776,64.962 +636394,84.486,63.448 +636395,83.091,61.91 +636396,81.577,60.348 +636397,84.398,64.953 +636398,83.152,63.428 +636399,81.804,61.879 +636400,80.339,60.306 +636401,83.02,64.942 +636402,81.819,63.408 +636403,80.518,61.849 +636404,79.103,60.265 +636405,81.641,64.931 +636406,80.485,63.387 +636407,79.231,61.819 +636408,77.867,60.226 +636409,80.26,64.918 +636410,79.15,63.366 +636411,77.945,61.789 +636412,76.633,60.188 +636413,78.879,64.903 +636414,77.816,63.344 +636415,76.66,61.76 +636416,75.399,60.151 +636417,77.497,64.888 +636418,76.481,63.322 +636419,75.375,61.731 +636420,74.167,60.115 +636421,76.114,64.871 +636422,75.145,63.299 +636423,74.09,61.703 +636424,72.936,60.081 +636425,74.731,64.853 +636426,73.81,63.276 +636427,72.805,61.675 +636428,71.705,60.048 +636429,73.346,64.834 +636430,72.474,63.253 +636431,71.521,61.647 +636432,70.475,60.016 +636433,71.961,64.813 +636434,71.138,63.229 +636435,70.237,61.62 +636436,69.246,59.986 +636437,70.576,64.792 +636438,69.802,63.205 +636439,68.953,61.593 +636440,68.018,59.957 +636441,69.189,64.768 +636442,68.466,63.18 +636443,67.669,61.567 +636444,66.791,59.929 +636445,67.802,64.744 +636446,67.129,63.155 +636447,66.386,61.541 +636448,65.564,59.903 +636449,66.415,64.718 +636450,65.793,63.13 +636451,65.103,61.516 +636452,64.337,59.878 +636453,65.026,64.691 +636454,64.456,63.103 +636455,63.82,61.491 +636456,63.112,59.854 +636457,63.638,64.663 +636458,63.119,63.077 +636459,62.538,61.466 +636460,61.886,59.831 +636461,62.249,64.633 +636462,61.782,63.05 +636463,61.255,61.442 +636464,60.662,59.81 +636465,60.859,64.602 +636466,60.445,63.023 +636467,59.973,61.418 +636468,59.437,59.79 +636469,59.469,64.57 +636470,59.107,62.995 +636471,58.691,61.395 +636472,58.213,59.772 +636473,58.079,64.537 +636474,57.77,62.966 +636475,57.409,61.372 +636476,56.99,59.754 +636477,56.688,64.502 +636478,56.432,62.938 +636479,56.127,61.35 +636480,55.766,59.738 +636481,55.297,64.466 +636482,55.095,62.909 +636483,54.845,61.328 +636484,54.543,59.724 +636485,53.906,64.428 +636486,53.757,62.879 +636487,53.563,61.306 +636488,53.32,59.71 +636489,52.514,64.39 +636490,52.42,62.849 +636491,52.282,61.285 +636492,52.097,59.698 +636493,51.122,64.35 +636494,51.082,62.818 +636495,51,61.264 +636496,50.874,59.687 +636497,49.731,64.309 +636498,49.744,62.787 +636499,49.719,61.244 +636500,49.651,59.678 +636501,48.339,64.266 +636502,48.406,62.756 +636503,48.437,61.223 +636504,48.428,59.669 +636505,46.947,64.222 +636506,47.069,62.724 +636507,47.156,61.204 +636508,47.205,59.662 +636509,45.554,64.177 +636510,45.731,62.692 +636511,45.874,61.185 +636512,45.982,59.657 +636513,44.162,64.131 +636514,44.393,62.659 +636515,44.593,61.166 +636516,44.759,59.652 +636517,42.77,64.084 +636518,43.056,62.626 +636519,43.312,61.147 +636520,43.536,59.649 +636521,41.378,64.035 +636522,41.718,62.593 +636523,42.03,61.129 +636524,42.312,59.647 +636525,39.986,63.985 +636526,40.381,62.559 +636527,40.749,61.112 +636528,41.088,59.646 +636529,38.595,63.934 +636530,39.044,62.524 +636531,39.467,61.095 +636532,39.864,59.646 +636533,37.203,63.882 +636534,37.706,62.49 +636535,38.185,61.078 +636536,38.639,59.647 +636537,35.812,63.829 +636538,36.369,62.455 +636539,36.904,61.061 +636540,37.414,59.65 +636541,34.421,63.774 +636542,35.032,62.419 +636543,35.622,61.045 +636544,36.188,59.654 +636545,33.03,63.718 +636546,33.696,62.383 +636547,34.34,61.029 +636548,34.962,59.658 +636549,31.639,63.662 +636550,32.359,62.347 +636551,33.057,61.014 +636552,33.735,59.664 +636553,30.249,63.604 +636554,31.023,62.31 +636555,31.775,60.999 +636556,32.507,59.671 +636557,28.86,63.545 +636558,29.686,62.273 +636559,30.493,60.984 +636560,31.279,59.68 +636561,27.471,63.484 +636562,28.35,62.235 +636563,29.21,60.97 +636564,30.05,59.689 +636565,26.082,63.423 +636566,27.014,62.198 +636567,27.927,60.956 +636568,28.821,59.699 +636569,24.694,63.361 +636570,25.679,62.159 +636571,26.644,60.942 +636572,27.59,59.71 +636573,23.306,63.298 +636574,24.344,62.121 +636575,25.361,60.929 +636576,26.359,59.722 +636577,21.919,63.233 +636578,23.008,62.082 +636579,24.077,60.916 +636580,25.127,59.736 +636581,20.533,63.168 +636582,21.674,62.043 +636583,22.794,60.903 +636584,23.894,59.75 +636585,19.147,63.102 +636586,20.339,62.003 +636587,21.51,60.89 +636588,22.66,59.765 +636589,17.762,63.034 +636590,19.005,61.963 +636591,20.225,60.878 +636592,21.425,59.781 +636593,16.378,62.966 +636594,17.671,61.923 +636595,18.941,60.866 +636596,20.19,59.798 +636597,14.995,62.897 +636598,16.337,61.882 +636599,17.656,60.855 +636600,18.953,59.815 +636601,13.612,62.827 +636602,15.004,61.842 +636603,16.371,60.843 +636604,17.715,59.834 +636605,12.231,62.756 +636606,13.671,61.8 +636607,15.085,60.832 +636608,16.475,59.853 +636609,10.85,62.684 +636610,12.339,61.759 +636611,13.799,60.822 +636612,15.235,59.874 +636613,9.4704,62.612 +636614,11.007,61.717 +636615,12.513,60.811 +636616,13.993,59.895 +636617,8.0917,62.538 +636618,9.6748,61.675 +636619,11.227,60.801 +636620,12.751,59.916 +636621,6.714,62.464 +636622,8.3435,61.633 +636623,9.9398,60.791 +636624,11.507,59.939 +636625,5.3373,62.389 +636626,7.0125,61.591 +636627,8.6525,60.781 +636628,10.261,59.962 +636629,3.9618,62.314 +636630,5.682,61.548 +636631,7.3649,60.771 +636632,9.0147,59.986 +636633,2.5874,62.237 +636634,4.3519,61.505 +636635,6.0768,60.762 +636636,7.7667,60.01 +636637,1.2142,62.16 +636638,3.0222,61.461 +636639,4.7883,60.752 +636640,6.5173,60.035 +636641,359.84,62.083 +636642,1.693,61.418 +636643,3.4994,60.743 +636644,5.2666,60.061 +636645,358.47,62.004 +636646,0.3643,61.374 +636647,2.2101,60.735 +636648,4.0144,60.087 +636649,357.1,61.925 +636650,359.04,61.33 +636651,0.92033,60.726 +636652,2.7607,60.114 +636653,355.73,61.846 +636654,357.71,61.286 +636655,359.63,60.717 +636656,1.5056,60.141 +636657,354.37,61.766 +636658,356.38,61.242 +636659,358.34,60.709 +636660,0.24899,60.168 +636661,353,61.685 +636662,355.05,61.198 +636663,357.05,60.701 +636664,358.99,60.197 +636665,351.64,61.604 +636666,353.73,61.153 +636667,355.76,60.693 +636668,357.73,60.225 +636669,350.28,61.522 +636670,352.4,61.108 +636671,354.46,60.685 +636672,356.47,60.254 +636673,348.91,61.44 +636674,351.08,61.063 +636675,353.17,60.677 +636676,355.21,60.283 +636677,347.55,61.358 +636678,349.75,61.018 +636679,351.88,60.669 +636680,353.94,60.313 +636681,346.2,61.275 +636682,348.43,60.973 +636683,350.59,60.661 +636684,352.68,60.343 +636685,344.84,61.192 +636686,347.11,60.927 +636687,349.29,60.654 +636688,351.41,60.373 +636689,343.49,61.108 +636690,345.78,60.882 +636691,348,60.646 +636692,350.14,60.403 +636693,342.13,61.025 +636694,344.46,60.836 +636695,346.7,60.639 +636696,348.87,60.434 +636697,340.78,60.941 +636698,343.14,60.791 +636699,345.41,60.631 +636700,347.6,60.464 +636701,339.43,60.856 +636702,341.82,60.745 +636703,344.11,60.624 +636704,346.32,60.495 +636705,338.08,60.772 +636706,340.5,60.699 +636707,342.81,60.617 +636708,345.05,60.526 +636709,336.74,60.687 +636710,339.18,60.653 +636711,341.52,60.609 +636712,343.77,60.557 +636713,335.39,60.603 +636714,337.86,60.608 +636715,340.22,60.602 +636716,342.49,60.588 +636717,334.05,60.518 +636718,336.54,60.562 +636719,338.92,60.595 +636720,341.21,60.619 +636721,332.71,60.433 +636722,335.22,60.516 +636723,337.62,60.588 +636724,339.92,60.651 +636725,331.37,60.348 +636726,333.9,60.47 +636727,336.32,60.58 +636728,338.64,60.682 +636729,330.03,60.263 +636730,332.59,60.424 +636731,335.02,60.573 +636732,337.35,60.713 +636733,328.7,60.178 +636734,331.27,60.378 +636735,333.72,60.566 +636736,336.06,60.744 +636737,327.36,60.093 +636738,329.95,60.332 +636739,332.42,60.558 +636740,334.77,60.774 +636741,326.03,60.008 +636742,328.64,60.286 +636743,331.12,60.551 +636744,333.48,60.805 +636745,324.7,59.923 +636746,327.33,60.24 +636747,329.81,60.543 +636748,332.19,60.835 +636749,323.38,59.839 +636750,326.01,60.194 +636751,328.51,60.535 +636752,330.89,60.865 +636753,322.05,59.754 +636754,324.7,60.148 +636755,327.21,60.528 +636756,329.59,60.895 +636757,320.73,59.67 +636758,323.39,60.102 +636759,325.9,60.52 +636760,328.29,60.925 +636761,319.4,59.586 +636762,322.08,60.057 +636763,324.6,60.512 +636764,326.99,60.954 +636765,318.09,59.502 +636766,320.77,60.011 +636767,323.29,60.504 +636768,325.69,60.983 +636769,316.77,59.419 +636770,319.46,59.965 +636771,321.99,60.496 +636772,324.39,61.012 +636773,315.45,59.336 +636774,318.15,59.92 +636775,320.68,60.487 +636776,323.08,61.04 +636777,314.14,59.253 +636778,316.84,59.875 +636779,319.37,60.479 +636780,321.77,61.068 +636781,312.83,59.171 +636782,315.53,59.83 +636783,318.07,60.47 +636784,320.46,61.095 +636785,311.52,59.089 +636786,314.22,59.785 +636787,316.76,60.461 +636788,319.15,61.122 +636789,310.21,59.008 +636790,312.92,59.74 +636791,315.45,60.452 +636792,317.84,61.148 +636793,308.91,58.927 +636794,311.61,59.695 +636795,314.14,60.443 +636796,316.52,61.174 +636797,307.6,58.847 +636798,310.3,59.65 +636799,312.83,60.434 +636800,315.2,61.199 +636801,306.3,58.767 +636802,309,59.606 +636803,311.52,60.424 +636804,313.89,61.224 +636805,305,58.687 +636806,307.7,59.562 +636807,310.21,60.415 +636808,312.57,61.248 +636809,303.71,58.609 +636810,306.39,59.518 +636811,308.89,60.405 +636812,311.24,61.271 +636813,302.41,58.531 +636814,305.09,59.474 +636815,307.58,60.394 +636816,309.92,61.294 +636817,301.12,58.453 +636818,303.79,59.43 +636819,306.27,60.384 +636820,308.59,61.316 +636821,299.83,58.377 +636822,302.49,59.387 +636823,304.96,60.373 +636824,307.27,61.337 +636825,298.54,58.301 +636826,301.19,59.344 +636827,303.64,60.362 +636828,305.94,61.357 +636829,297.26,58.226 +636830,299.89,59.301 +636831,302.33,60.351 +636832,304.61,61.377 +636833,295.97,58.151 +636834,298.59,59.258 +636835,301.01,60.339 +636836,303.27,61.396 +636837,294.69,58.078 +636838,297.29,59.216 +636839,299.7,60.327 +636840,301.94,61.414 +636841,293.41,58.005 +636842,295.99,59.174 +636843,298.38,60.315 +636844,300.6,61.431 +636845,292.13,57.933 +636846,294.69,59.132 +636847,297.06,60.303 +636848,299.27,61.447 +636849,290.86,57.862 +636850,293.4,59.09 +636851,295.74,60.29 +636852,297.93,61.463 +636853,289.59,57.792 +636854,292.1,59.049 +636855,294.43,60.277 +636856,296.59,61.477 +636857,288.31,57.723 +636858,290.81,59.008 +636859,293.11,60.263 +636860,295.24,61.491 +636861,287.04,57.655 +636862,289.51,58.967 +636863,291.79,60.25 +636864,293.9,61.503 +636865,285.78,57.588 +636866,288.22,58.927 +636867,290.47,60.235 +636868,292.55,61.515 +636869,284.51,57.521 +636870,286.93,58.887 +636871,289.15,60.221 +636872,291.21,61.525 +636873,283.25,57.456 +636874,285.63,58.847 +636875,287.83,60.206 +636876,289.86,61.535 +636877,281.99,57.392 +636878,284.34,58.808 +636879,286.51,60.191 +636880,288.51,61.543 +636881,280.73,57.329 +636882,283.05,58.769 +636883,285.18,60.176 +636884,287.16,61.551 +636885,279.47,57.267 +636886,281.76,58.73 +636887,283.86,60.16 +636888,285.81,61.557 +636889,278.21,57.207 +636890,280.47,58.692 +636891,282.54,60.143 +636892,284.45,61.562 +636893,276.96,57.147 +636894,279.18,58.654 +636895,281.22,60.127 +636896,283.1,61.566 +636897,275.7,57.088 +636898,277.89,58.617 +636899,279.89,60.11 +636900,281.74,61.569 +636901,274.45,57.031 +636902,276.6,58.579 +636903,278.57,60.092 +636904,280.38,61.571 +636905,273.2,56.975 +636906,275.31,58.543 +636907,277.24,60.074 +636908,279.02,61.572 +636909,271.96,56.92 +636910,274.03,58.506 +636911,275.92,60.056 +636912,277.66,61.571 +636913,270.71,56.866 +636914,272.74,58.47 +636915,274.59,60.037 +636916,276.3,61.569 +636917,269.47,56.814 +636918,271.45,58.435 +636919,273.27,60.018 +636920,274.93,61.566 +636921,268.22,56.763 +636922,270.17,58.399 +636923,271.94,59.998 +636924,273.57,61.562 +636925,266.98,56.713 +636926,268.88,58.365 +636927,270.62,59.978 +636928,272.2,61.556 +636929,265.74,56.664 +636930,267.6,58.33 +636931,269.29,59.958 +636932,270.84,61.55 +636933,264.51,56.617 +636934,266.32,58.296 +636935,267.96,59.937 +636936,269.47,61.542 +636937,263.27,56.571 +636938,265.03,58.263 +636939,266.63,59.916 +636940,268.1,61.532 +636941,262.03,56.527 +636942,263.75,58.23 +636943,265.3,59.894 +636944,266.73,61.522 +636945,260.8,56.483 +636946,262.47,58.197 +636947,263.98,59.872 +636948,265.36,61.51 +636949,259.57,56.441 +636950,261.18,58.165 +636951,262.65,59.849 +636952,263.98,61.497 +636953,258.34,56.401 +636954,259.9,58.133 +636955,261.32,59.826 +636956,262.61,61.482 +636957,257.11,56.361 +636958,258.62,58.101 +636959,259.99,59.802 +636960,261.24,61.466 +636961,255.88,56.324 +636962,257.34,58.07 +636963,258.66,59.778 +636964,259.86,61.449 +636965,254.65,56.287 +636966,256.06,58.04 +636967,257.33,59.754 +636968,258.48,61.431 +636969,253.43,56.252 +636970,254.78,58.01 +636971,256,59.729 +636972,257.11,61.411 +636973,252.2,56.218 +636974,253.5,57.98 +636975,254.67,59.703 +636976,255.73,61.39 +636977,250.98,56.186 +636978,252.22,57.951 +636979,253.34,59.678 +636980,254.35,61.367 +636981,249.75,56.155 +636982,250.94,57.922 +636983,252.01,59.651 +636984,252.97,61.343 +636985,248.53,56.126 +636986,249.66,57.894 +636987,250.67,59.624 +636988,251.59,61.318 +636989,247.31,56.098 +636990,248.38,57.866 +636991,249.34,59.597 +636992,250.21,61.291 +636993,246.09,56.071 +636994,247.1,57.839 +636995,248.01,59.569 +636996,248.83,61.263 +636997,244.87,56.046 +636998,245.83,57.812 +636999,246.68,59.541 +637000,247.44,61.234 +637001,243.65,56.022 +637002,244.55,57.786 +637003,245.35,59.512 +637004,246.06,61.203 +637005,242.43,56 +637006,243.27,57.76 +637007,244.01,59.483 +637008,244.68,61.171 +637009,241.21,55.979 +637010,241.99,57.734 +637011,242.68,59.453 +637012,243.29,61.137 +637013,239.99,55.959 +637014,240.72,57.709 +637015,241.35,59.423 +637016,241.91,61.102 +637017,238.78,55.941 +637018,239.44,57.684 +637019,240.02,59.392 +637020,240.52,61.066 +637021,237.56,55.924 +637022,238.16,57.66 +637023,238.68,59.361 +637024,239.14,61.028 +637025,236.35,55.909 +637026,236.89,57.636 +637027,237.35,59.33 +637028,237.75,60.989 +637029,235.13,55.895 +637030,235.61,57.613 +637031,236.02,59.298 +637032,236.36,60.949 +637033,233.91,55.882 +637034,234.33,57.59 +637035,234.68,59.265 +637036,234.98,60.907 +637037,232.7,55.871 +637038,233.06,57.568 +637039,233.35,59.232 +637040,233.59,60.864 +637041,231.48,55.861 +637042,231.78,57.546 +637043,232.02,59.199 +637044,232.2,60.819 +637045,230.27,55.852 +637046,230.51,57.524 +637047,230.69,59.165 +637048,230.81,60.774 +637049,229.05,55.845 +637050,229.23,57.503 +637051,229.35,59.13 +637052,229.43,60.727 +637053,227.84,55.839 +637054,227.95,57.483 +637055,228.02,59.096 +637056,228.04,60.678 +637057,226.63,55.835 +637058,226.68,57.462 +637059,226.69,59.06 +637060,226.65,60.628 +637061,225.41,55.831 +637062,225.4,57.443 +637063,225.35,59.025 +637064,225.26,60.577 +637065,224.2,55.829 +637066,224.13,57.423 +637067,224.02,58.988 +637068,223.87,60.525 +637069,222.98,55.829 +637070,222.85,57.404 +637071,222.69,58.952 +637072,222.48,60.471 +637073,221.77,55.829 +637074,221.58,57.386 +637075,221.35,58.915 +637076,221.1,60.416 +637077,220.55,55.831 +637078,220.3,57.368 +637079,220.02,58.877 +637080,219.71,60.36 +637081,219.33,55.834 +637082,219.03,57.35 +637083,218.69,58.839 +637084,218.32,60.303 +637085,218.12,55.839 +637086,217.75,57.333 +637087,217.35,58.801 +637088,216.93,60.244 +637089,216.9,55.844 +637090,216.47,57.316 +637091,216.02,58.762 +637092,215.54,60.184 +637093,215.69,55.851 +637094,215.2,57.299 +637095,214.69,58.723 +637096,214.16,60.123 +637097,214.47,55.859 +637098,213.92,57.283 +637099,213.36,58.684 +637100,212.77,60.061 +637101,213.25,55.868 +637102,212.65,57.267 +637103,212.02,58.644 +637104,211.38,59.997 +637105,212.03,55.878 +637106,211.37,57.252 +637107,210.69,58.603 +637108,209.99,59.933 +637109,210.81,55.89 +637110,210.09,57.237 +637111,209.36,58.563 +637112,208.61,59.867 +637113,209.59,55.902 +637114,208.82,57.222 +637115,208.03,58.521 +637116,207.22,59.8 +637117,208.37,55.915 +637118,207.54,57.208 +637119,206.7,58.48 +637120,205.83,59.732 +637121,207.15,55.93 +637122,206.26,57.194 +637123,205.36,58.438 +637124,204.45,59.663 +637125,205.93,55.945 +637126,204.99,57.18 +637127,204.03,58.396 +637128,203.06,59.592 +637129,204.71,55.962 +637130,203.71,57.166 +637131,202.7,58.353 +637132,201.68,59.521 +637133,203.48,55.98 +637134,202.43,57.153 +637135,201.37,58.31 +637136,200.3,59.449 +637137,202.26,55.998 +637138,201.16,57.141 +637139,200.04,58.267 +637140,198.91,59.375 +637141,201.03,56.017 +637142,199.88,57.128 +637143,198.71,58.223 +637144,197.53,59.301 +637145,199.8,56.038 +637146,198.6,57.116 +637147,197.38,58.179 +637148,196.15,59.226 +637149,198.58,56.059 +637150,197.32,57.104 +637151,196.05,58.135 +637152,194.77,59.15 +637153,197.35,56.081 +637154,196.04,57.093 +637155,194.72,58.091 +637156,193.39,59.072 +637157,196.12,56.104 +637158,194.76,57.082 +637159,193.39,58.046 +637160,192.01,58.994 +637161,194.89,56.127 +637162,193.48,57.071 +637163,192.07,58 +637164,190.63,58.915 +637165,193.65,56.152 +637166,192.2,57.06 +637167,190.74,57.955 +637168,189.25,58.836 +637169,192.42,56.177 +637170,190.92,57.049 +637171,189.41,57.909 +637172,187.88,58.755 +637173,191.19,56.203 +637174,189.64,57.039 +637175,188.08,57.863 +637176,186.5,58.674 +637177,189.95,56.229 +637178,188.36,57.029 +637179,186.76,57.817 +637180,185.13,58.592 +637181,188.71,56.256 +637182,187.08,57.019 +637183,185.43,57.77 +637184,183.75,58.509 +637185,187.47,56.284 +637186,185.8,57.01 +637187,184.11,57.724 +637188,182.38,58.425 +637189,186.23,56.313 +637190,184.52,57 +637191,182.78,57.677 +637192,181.01,58.341 +637193,184.99,56.342 +637194,183.24,56.991 +637195,181.45,57.63 +637196,179.64,58.256 +637197,183.75,56.371 +637198,181.95,56.982 +637199,180.13,57.582 +637200,178.27,58.17 +637201,182.5,56.401 +637202,180.67,56.973 +637203,178.81,57.535 +637204,176.9,58.084 +637205,181.26,56.432 +637206,179.39,56.964 +637207,177.48,57.487 +637208,175.54,57.997 +637209,180.01,56.462 +637210,178.1,56.956 +637211,176.16,57.439 +637212,174.17,57.91 +637213,178.76,56.494 +637214,176.82,56.947 +637215,174.84,57.391 +637216,172.81,57.822 +637217,177.51,56.525 +637218,175.54,56.939 +637219,173.52,57.342 +637220,171.44,57.733 +637221,176.26,56.557 +637222,174.25,56.931 +637223,172.19,57.294 +637224,170.08,57.645 +637225,175,56.59 +637226,172.96,56.923 +637227,170.87,57.245 +637228,168.72,57.555 +637229,173.75,56.622 +637230,171.68,56.915 +637231,169.55,57.196 +637232,167.37,57.466 +637233,172.49,56.655 +637234,170.39,56.907 +637235,168.23,57.148 +637236,166.01,57.376 +637237,171.23,56.688 +637238,169.1,56.899 +637239,166.91,57.099 +637240,164.65,57.285 +637241,169.97,56.722 +637242,167.82,56.891 +637243,165.6,57.05 +637244,163.3,57.195 +637245,168.71,56.755 +637246,166.53,56.883 +637247,164.28,57 +637248,161.95,57.104 +637249,167.44,56.789 +637250,165.24,56.876 +637251,162.96,56.951 +637252,160.6,57.013 +637253,166.18,56.822 +637254,163.95,56.868 +637255,161.64,56.902 +637256,159.25,56.922 +637257,164.91,56.856 +637258,162.66,56.861 +637259,160.33,56.853 +637260,157.9,56.83 +637261,163.64,56.89 +637262,161.37,56.853 +637263,159.01,56.803 +637264,156.56,56.739 +637265,162.37,56.924 +637266,160.08,56.845 +637267,157.7,56.754 +637268,155.21,56.647 +637269,161.1,56.957 +637270,158.79,56.838 +637271,156.38,56.704 +637272,153.87,56.555 +637273,159.82,56.991 +637274,157.49,56.83 +637275,155.07,56.655 +637276,152.53,56.463 +637277,158.55,57.024 +637278,156.2,56.822 +637279,153.76,56.606 +637280,151.2,56.372 +637281,157.27,57.058 +637282,154.91,56.815 +637283,152.44,56.556 +637284,149.86,56.28 +637285,155.99,57.091 +637286,153.61,56.807 +637287,151.13,56.507 +637288,148.53,56.188 +637289,154.7,57.124 +637290,152.32,56.799 +637291,149.82,56.458 +637292,147.19,56.097 +637293,153.42,57.157 +637294,151.02,56.791 +637295,148.51,56.408 +637296,145.86,56.005 +637297,152.14,57.189 +637298,149.73,56.783 +637299,147.2,56.359 +637300,144.54,55.914 +637301,150.85,57.221 +637302,148.43,56.775 +637303,145.89,56.31 +637304,143.21,55.823 +637305,149.56,57.253 +637306,147.14,56.767 +637307,144.59,56.261 +637308,141.88,55.732 +637309,148.27,57.285 +637310,145.84,56.758 +637311,143.28,56.212 +637312,140.56,55.642 +637313,146.98,57.316 +637314,144.54,56.75 +637315,141.97,56.163 +637316,139.24,55.552 +637317,145.68,57.347 +637318,143.24,56.741 +637319,140.67,56.114 +637320,137.92,55.462 +637321,144.38,57.377 +637322,141.94,56.733 +637323,139.36,56.066 +637324,136.61,55.372 +637325,143.09,57.406 +637326,140.64,56.724 +637327,138.06,56.017 +637328,135.3,55.283 +637329,141.79,57.436 +637330,139.34,56.715 +637331,136.75,55.969 +637332,133.98,55.195 +637333,140.48,57.464 +637334,138.04,56.705 +637335,135.45,55.921 +637336,132.67,55.107 +637337,139.18,57.493 +637338,136.74,56.696 +637339,134.15,55.873 +637340,131.37,55.019 +637341,137.87,57.52 +637342,135.44,56.686 +637343,132.84,55.825 +637344,130.06,54.932 +637345,136.57,57.547 +637346,134.14,56.676 +637347,131.54,55.777 +637348,128.76,54.846 +637349,135.26,57.573 +637350,132.83,56.666 +637351,130.24,55.73 +637352,127.46,54.76 +637353,133.95,57.599 +637354,131.53,56.656 +637355,128.94,55.683 +637356,126.16,54.675 +637357,132.63,57.623 +637358,130.22,56.645 +637359,127.65,55.636 +637360,124.86,54.59 +637361,131.32,57.647 +637362,128.92,56.634 +637363,126.35,55.589 +637364,123.57,54.507 +637365,130,57.671 +637366,127.61,56.623 +637367,125.05,55.542 +637368,122.28,54.424 +637369,128.69,57.693 +637370,126.31,56.612 +637371,123.75,55.496 +637372,120.99,54.342 +637373,127.37,57.715 +637374,125,56.6 +637375,122.46,55.45 +637376,119.7,54.26 +637377,126.04,57.736 +637378,123.69,56.588 +637379,121.16,55.404 +637380,118.41,54.18 +637381,124.72,57.756 +637382,122.39,56.576 +637383,119.87,55.359 +637384,117.13,54.1 +637385,123.4,57.775 +637386,121.08,56.563 +637387,118.57,55.314 +637388,115.85,54.021 +637389,122.07,57.793 +637390,119.77,56.551 +637391,117.28,55.269 +637392,114.57,53.943 +637393,120.74,57.81 +637394,118.46,56.537 +637395,115.99,55.225 +637396,113.29,53.867 +637397,119.41,57.826 +637398,117.15,56.524 +637399,114.7,55.18 +637400,112.02,53.791 +637401,118.08,57.841 +637402,115.84,56.51 +637403,113.41,55.136 +637404,110.75,53.716 +637405,116.75,57.855 +637406,114.53,56.496 +637407,112.12,55.093 +637408,109.48,53.642 +637409,115.41,57.868 +637410,113.22,56.481 +637411,110.83,55.05 +637412,108.21,53.569 +637413,114.08,57.88 +637414,111.9,56.466 +637415,109.54,55.007 +637416,106.94,53.498 +637417,112.74,57.891 +637418,110.59,56.451 +637419,108.25,54.965 +637420,105.68,53.427 +637421,111.4,57.901 +637422,109.28,56.435 +637423,106.96,54.922 +637424,104.42,53.358 +637425,110.06,57.91 +637426,107.96,56.419 +637427,105.68,54.881 +637428,103.16,53.29 +637429,108.72,57.917 +637430,106.65,56.403 +637431,104.39,54.839 +637432,101.9,53.223 +637433,107.37,57.924 +637434,105.33,56.386 +637435,103.11,54.798 +637436,100.64,53.157 +637437,106.03,57.929 +637438,104.02,56.368 +637439,101.82,54.758 +637440,99.391,53.093 +637441,104.68,57.933 +637442,102.7,56.351 +637443,100.54,54.718 +637444,98.14,53.029 +637445,103.33,57.936 +637446,101.39,56.332 +637447,99.253,54.678 +637448,96.89,52.967 +637449,101.98,57.937 +637450,100.07,56.314 +637451,97.97,54.639 +637452,95.643,52.907 +637453,100.63,57.937 +637454,98.753,56.295 +637455,96.688,54.6 +637456,94.397,52.848 +637457,99.28,57.936 +637458,97.435,56.275 +637459,95.406,54.562 +637460,93.153,52.79 +637461,97.926,57.934 +637462,96.117,56.256 +637463,94.125,54.524 +637464,91.912,52.733 +637465,96.571,57.931 +637466,94.798,56.235 +637467,92.845,54.486 +637468,90.671,52.678 +637469,95.215,57.926 +637470,93.479,56.214 +637471,91.565,54.449 +637472,89.433,52.624 +637473,93.858,57.919 +637474,92.16,56.193 +637475,90.286,54.413 +637476,88.197,52.572 +637477,92.499,57.912 +637478,90.84,56.171 +637479,89.007,54.376 +637480,86.962,52.521 +637481,91.139,57.903 +637482,89.52,56.149 +637483,87.729,54.341 +637484,85.729,52.471 +637485,89.779,57.892 +637486,88.199,56.127 +637487,86.451,54.305 +637488,84.498,52.423 +637489,88.416,57.881 +637490,86.878,56.103 +637491,85.174,54.271 +637492,83.268,52.377 +637493,87.053,57.867 +637494,85.557,56.08 +637495,83.898,54.236 +637496,82.039,52.332 +637497,85.689,57.853 +637498,84.236,56.056 +637499,82.622,54.203 +637500,80.813,52.288 +637501,84.324,57.837 +637502,82.914,56.031 +637503,81.346,54.169 +637504,79.587,52.246 +637505,82.957,57.82 +637506,81.591,56.006 +637507,80.071,54.137 +637508,78.364,52.206 +637509,81.59,57.801 +637510,80.269,55.981 +637511,78.796,54.104 +637512,77.141,52.167 +637513,80.222,57.781 +637514,78.946,55.955 +637515,77.522,54.072 +637516,75.92,52.129 +637517,78.853,57.759 +637518,77.622,55.928 +637519,76.248,54.041 +637520,74.7,52.093 +637521,77.483,57.736 +637522,76.299,55.901 +637523,74.975,54.01 +637524,73.482,52.059 +637525,76.112,57.711 +637526,74.975,55.873 +637527,73.702,53.98 +637528,72.265,52.026 +637529,74.74,57.685 +637530,73.651,55.845 +637531,72.43,53.95 +637532,71.048,51.995 +637533,73.367,57.658 +637534,72.327,55.817 +637535,71.157,53.921 +637536,69.833,51.965 +637537,71.994,57.629 +637538,71.002,55.788 +637539,69.886,53.892 +637540,68.619,51.937 +637541,70.62,57.598 +637542,69.678,55.758 +637543,68.614,53.864 +637544,67.406,51.911 +637545,69.245,57.567 +637546,68.353,55.728 +637547,67.343,53.836 +637548,66.194,51.886 +637549,67.869,57.533 +637550,67.027,55.698 +637551,66.073,53.809 +637552,64.983,51.862 +637553,66.493,57.498 +637554,65.702,55.667 +637555,64.802,53.782 +637556,63.773,51.84 +637557,65.116,57.462 +637558,64.377,55.635 +637559,63.532,53.756 +637560,62.563,51.82 +637561,63.739,57.424 +637562,63.051,55.603 +637563,62.262,53.73 +637564,61.354,51.801 +637565,62.361,57.385 +637566,61.725,55.57 +637567,60.993,53.705 +637568,60.146,51.784 +637569,60.983,57.345 +637570,60.399,55.537 +637571,59.723,53.68 +637572,58.939,51.768 +637573,59.604,57.302 +637574,59.073,55.504 +637575,58.454,53.655 +637576,57.732,51.754 +637577,58.224,57.259 +637578,57.747,55.47 +637579,57.185,53.632 +637580,56.525,51.741 +637581,56.845,57.214 +637582,56.421,55.435 +637583,55.917,53.608 +637584,55.319,51.73 +637585,55.464,57.167 +637586,55.094,55.4 +637587,54.648,53.586 +637588,54.114,51.72 +637589,54.084,57.119 +637590,53.768,55.365 +637591,53.38,53.563 +637592,52.908,51.712 +637593,52.703,57.07 +637594,52.441,55.329 +637595,52.112,53.541 +637596,51.703,51.706 +637597,51.322,57.019 +637598,51.115,55.292 +637599,50.844,53.52 +637600,50.499,51.701 +637601,49.941,56.967 +637602,49.788,55.255 +637603,49.576,53.499 +637604,49.294,51.697 +637605,48.559,56.913 +637606,48.462,55.218 +637607,48.308,53.479 +637608,48.09,51.695 +637609,47.178,56.858 +637610,47.135,55.18 +637611,47.041,53.459 +637612,46.885,51.694 +637613,45.796,56.802 +637614,45.809,55.141 +637615,45.773,53.44 +637616,45.681,51.695 +637617,44.414,56.744 +637618,44.483,55.103 +637619,44.505,53.421 +637620,44.477,51.697 +637621,43.032,56.685 +637622,43.156,55.063 +637623,43.238,53.402 +637624,43.272,51.7 +637625,41.65,56.625 +637626,41.83,55.023 +637627,41.971,53.384 +637628,42.068,51.705 +637629,40.269,56.563 +637630,40.504,54.983 +637631,40.703,53.366 +637632,40.863,51.711 +637633,38.887,56.5 +637634,39.177,54.943 +637635,39.436,53.349 +637636,39.658,51.718 +637637,37.505,56.435 +637638,37.851,54.901 +637639,38.168,53.332 +637640,38.452,51.727 +637641,36.123,56.369 +637642,36.525,54.86 +637643,36.901,53.316 +637644,37.247,51.737 +637645,34.742,56.302 +637646,35.2,54.818 +637647,35.633,53.3 +637648,36.04,51.749 +637649,33.361,56.234 +637650,33.874,54.776 +637651,34.366,53.285 +637652,34.834,51.762 +637653,31.98,56.164 +637654,32.548,54.733 +637655,33.098,53.27 +637656,33.627,51.775 +637657,30.599,56.094 +637658,31.223,54.689 +637659,31.83,53.255 +637660,32.419,51.791 +637661,29.219,56.022 +637662,29.898,54.646 +637663,30.562,53.241 +637664,31.21,51.807 +637665,27.839,55.948 +637666,28.573,54.602 +637667,29.294,53.227 +637668,30.001,51.824 +637669,26.459,55.874 +637670,27.248,54.557 +637671,28.026,53.214 +637672,28.792,51.843 +637673,25.08,55.798 +637674,25.924,54.513 +637675,26.758,53.2 +637676,27.581,51.863 +637677,23.701,55.722 +637678,24.6,54.467 +637679,25.489,53.188 +637680,26.37,51.883 +637681,22.323,55.644 +637682,23.276,54.422 +637683,24.221,53.175 +637684,25.158,51.905 +637685,20.945,55.565 +637686,21.952,54.376 +637687,22.952,53.163 +637688,23.945,51.928 +637689,19.568,55.485 +637690,20.629,54.33 +637691,21.683,53.152 +637692,22.731,51.952 +637693,18.192,55.404 +637694,19.305,54.283 +637695,20.413,53.14 +637696,21.516,51.977 +637697,16.816,55.322 +637698,17.983,54.236 +637699,19.144,53.129 +637700,20.3,52.003 +637701,15.441,55.239 +637702,16.66,54.189 +637703,17.874,53.119 +637704,19.083,52.029 +637705,14.067,55.155 +637706,15.338,54.141 +637707,16.604,53.108 +637708,17.865,52.057 +637709,12.693,55.07 +637710,14.016,54.093 +637711,15.334,53.098 +637712,16.645,52.085 +637713,11.32,54.984 +637714,12.695,54.045 +637715,14.063,53.088 +637716,15.425,52.115 +637717,9.9485,54.897 +637718,11.374,53.997 +637719,12.792,53.079 +637720,14.203,52.145 +637721,8.5776,54.81 +637722,10.054,53.948 +637723,11.521,53.069 +637724,12.98,52.175 +637725,7.2075,54.721 +637726,8.7333,53.899 +637727,10.249,53.06 +637728,11.756,52.207 +637729,5.8385,54.632 +637730,7.4136,53.85 +637731,8.977,53.052 +637732,10.53,52.239 +637733,4.4704,54.542 +637734,6.0943,53.8 +637735,7.7047,53.043 +637736,9.3034,52.272 +637737,3.1034,54.451 +637738,4.7754,53.75 +637739,6.432,53.035 +637740,8.0751,52.306 +637741,1.7375,54.36 +637742,3.457,53.7 +637743,5.1589,53.027 +637744,6.8454,52.34 +637745,0.3727,54.268 +637746,2.1391,53.65 +637747,3.8855,53.019 +637748,5.6142,52.375 +637749,359.01,54.175 +637750,0.82165,53.6 +637751,2.6116,53.011 +637752,4.3815,52.41 +637753,357.65,54.081 +637754,359.5,53.549 +637755,1.3373,53.003 +637756,3.1473,52.446 +637757,356.29,53.987 +637758,358.19,53.499 +637759,0.062645,52.996 +637760,1.9116,52.482 +637761,354.93,53.893 +637762,356.87,53.448 +637763,358.79,52.989 +637764,0.67426,52.519 +637765,353.57,53.797 +637766,355.56,53.396 +637767,357.51,52.982 +637768,359.44,52.556 +637769,352.21,53.702 +637770,354.24,53.345 +637771,356.24,52.975 +637772,358.19,52.593 +637773,350.85,53.606 +637774,352.93,53.294 +637775,354.96,52.968 +637776,356.95,52.631 +637777,349.5,53.509 +637778,351.61,53.242 +637779,353.68,52.961 +637780,355.71,52.669 +637781,348.15,53.412 +637782,350.3,53.191 +637783,352.41,52.955 +637784,354.46,52.707 +637785,346.79,53.315 +637786,348.99,53.139 +637787,351.13,52.948 +637788,353.22,52.746 +637789,345.44,53.217 +637790,347.68,53.087 +637791,349.85,52.942 +637792,351.97,52.784 +637793,344.1,53.119 +637794,346.37,53.035 +637795,348.57,52.936 +637796,350.72,52.823 +637797,342.75,53.021 +637798,345.05,52.983 +637799,347.29,52.929 +637800,349.46,52.862 +637801,341.4,52.923 +637802,343.74,52.931 +637803,346.01,52.923 +637804,348.21,52.901 +637805,340.06,52.824 +637806,342.43,52.879 +637807,344.73,52.917 +637808,346.95,52.94 +637809,338.72,52.726 +637810,341.13,52.827 +637811,343.45,52.911 +637812,345.7,52.979 +637813,337.38,52.627 +637814,339.82,52.775 +637815,342.17,52.905 +637816,344.44,53.018 +637817,336.04,52.528 +637818,338.51,52.723 +637819,340.89,52.898 +637820,343.18,53.058 +637821,334.7,52.429 +637822,337.2,52.671 +637823,339.6,52.892 +637824,341.91,53.096 +637825,333.37,52.33 +637826,335.9,52.619 +637827,338.32,52.886 +637828,340.65,53.135 +637829,332.04,52.231 +637830,334.59,52.566 +637831,337.04,52.88 +637832,339.38,53.174 +637833,330.7,52.133 +637834,333.29,52.514 +637835,335.75,52.873 +637836,338.11,53.212 +637837,329.38,52.034 +637838,331.98,52.463 +637839,334.47,52.867 +637840,336.84,53.251 +637841,328.05,51.935 +637842,330.68,52.411 +637843,333.18,52.861 +637844,335.57,53.289 +637845,326.72,51.837 +637846,329.38,52.359 +637847,331.9,52.854 +637848,334.3,53.326 +637849,325.4,51.739 +637850,328.07,52.307 +637851,330.61,52.847 +637852,333.02,53.363 +637853,324.08,51.641 +637854,326.77,52.255 +637855,329.32,52.841 +637856,331.74,53.4 +637857,322.76,51.544 +637858,325.47,52.204 +637859,328.03,52.834 +637860,330.46,53.437 +637861,321.44,51.447 +637862,324.17,52.153 +637863,326.75,52.827 +637864,329.18,53.473 +637865,320.13,51.35 +637866,322.87,52.101 +637867,325.46,52.82 +637868,327.9,53.509 +637869,318.81,51.254 +637870,321.58,52.05 +637871,324.17,52.812 +637872,326.61,53.544 +637873,317.5,51.158 +637874,320.28,51.999 +637875,322.88,52.805 +637876,325.33,53.578 +637877,316.19,51.062 +637878,318.98,51.949 +637879,321.59,52.797 +637880,324.04,53.613 +637881,314.89,50.967 +637882,317.68,51.898 +637883,320.3,52.789 +637884,322.75,53.646 +637885,313.58,50.873 +637886,316.39,51.848 +637887,319,52.781 +637888,321.46,53.679 +637889,312.28,50.78 +637890,315.09,51.798 +637891,317.71,52.773 +637892,320.16,53.711 +637893,310.98,50.687 +637894,313.8,51.748 +637895,316.42,52.765 +637896,318.86,53.742 +637897,309.68,50.594 +637898,312.51,51.698 +637899,315.12,52.756 +637900,317.57,53.773 +637901,308.39,50.503 +637902,311.22,51.649 +637903,313.83,52.747 +637904,316.27,53.803 +637905,307.09,50.412 +637906,309.92,51.6 +637907,312.54,52.738 +637908,314.97,53.832 +637909,305.8,50.322 +637910,308.63,51.551 +637911,311.24,52.728 +637912,313.66,53.861 +637913,304.51,50.233 +637914,307.34,51.502 +637915,309.94,52.719 +637916,312.36,53.888 +637917,303.23,50.144 +637918,306.05,51.454 +637919,308.65,52.709 +637920,311.05,53.915 +637921,301.94,50.057 +637922,304.77,51.406 +637923,307.35,52.698 +637924,309.74,53.941 +637925,300.66,49.971 +637926,303.48,51.358 +637927,306.05,52.688 +637928,308.43,53.966 +637929,299.38,49.885 +637930,302.19,51.311 +637931,304.75,52.677 +637932,307.12,53.99 +637933,298.1,49.801 +637934,300.9,51.264 +637935,303.46,52.666 +637936,305.81,54.013 +637937,296.83,49.717 +637938,299.62,51.217 +637939,302.16,52.654 +637940,304.49,54.035 +637941,295.56,49.635 +637942,298.33,51.171 +637943,300.86,52.642 +637944,303.17,54.056 +637945,294.29,49.554 +637946,297.05,51.125 +637947,299.56,52.63 +637948,301.85,54.076 +637949,293.02,49.474 +637950,295.77,51.08 +637951,298.26,52.617 +637952,300.53,54.094 +637953,291.75,49.395 +637954,294.48,51.035 +637955,296.95,52.604 +637956,299.21,54.112 +637957,290.49,49.317 +637958,293.2,50.99 +637959,295.65,52.591 +637960,297.89,54.129 +637961,289.23,49.24 +637962,291.92,50.946 +637963,294.35,52.577 +637964,296.56,54.144 +637965,287.97,49.165 +637966,290.64,50.902 +637967,293.05,52.563 +637968,295.24,54.158 +637969,286.71,49.091 +637970,289.36,50.858 +637971,291.74,52.548 +637972,293.91,54.171 +637973,285.46,49.019 +637974,288.08,50.815 +637975,290.44,52.533 +637976,292.58,54.183 +637977,284.2,48.948 +637978,286.81,50.773 +637979,289.13,52.518 +637980,291.25,54.194 +637981,282.95,48.878 +637982,285.53,50.73 +637983,287.83,52.502 +637984,289.91,54.203 +637985,281.7,48.809 +637986,284.25,50.689 +637987,286.52,52.486 +637988,288.58,54.211 +637989,280.46,48.742 +637990,282.97,50.647 +637991,285.22,52.469 +637992,287.24,54.218 +637993,279.21,48.677 +637994,281.7,50.607 +637995,283.91,52.452 +637996,285.9,54.223 +637997,277.97,48.612 +637998,280.42,50.566 +637999,282.6,52.435 +638000,284.57,54.228 +638001,276.73,48.55 +638002,279.15,50.527 +638003,281.3,52.417 +638004,283.23,54.23 +638005,275.5,48.489 +638006,277.88,50.487 +638007,279.99,52.398 +638008,281.88,54.232 +638009,274.26,48.429 +638010,276.6,50.449 +638011,278.68,52.379 +638012,280.54,54.232 +638013,273.03,48.371 +638014,275.33,50.41 +638015,277.37,52.36 +638016,279.2,54.23 +638017,271.79,48.315 +638018,274.06,50.373 +638019,276.06,52.34 +638020,277.85,54.227 +638021,270.57,48.26 +638022,272.79,50.335 +638023,274.75,52.319 +638024,276.51,54.223 +638025,269.34,48.207 +638026,271.52,50.299 +638027,273.44,52.298 +638028,275.16,54.218 +638029,268.11,48.155 +638030,270.25,50.263 +638031,272.13,52.277 +638032,273.81,54.21 +638033,266.89,48.105 +638034,268.98,50.227 +638035,270.82,52.255 +638036,272.46,54.202 +638037,265.66,48.057 +638038,267.71,50.192 +638039,269.51,52.233 +638040,271.11,54.192 +638041,264.44,48.011 +638042,266.45,50.157 +638043,268.2,52.21 +638044,269.76,54.18 +638045,263.23,47.966 +638046,265.18,50.123 +638047,266.89,52.187 +638048,268.4,54.167 +638049,262.01,47.923 +638050,263.91,50.09 +638051,265.57,52.163 +638052,267.05,54.153 +638053,260.79,47.881 +638054,262.65,50.057 +638055,264.26,52.138 +638056,265.69,54.136 +638057,259.58,47.842 +638058,261.38,50.025 +638059,262.95,52.113 +638060,264.34,54.119 +638061,258.37,47.804 +638062,260.11,49.993 +638063,261.64,52.088 +638064,262.98,54.1 +638065,257.15,47.767 +638066,258.85,49.962 +638067,260.32,52.062 +638068,261.62,54.079 +638069,255.94,47.733 +638070,257.59,49.931 +638071,259.01,52.035 +638072,260.26,54.057 +638073,254.74,47.7 +638074,256.32,49.901 +638075,257.69,52.008 +638076,258.9,54.033 +638077,253.53,47.669 +638078,255.06,49.872 +638079,256.38,51.981 +638080,257.54,54.007 +638081,252.32,47.64 +638082,253.8,49.843 +638083,255.07,51.953 +638084,256.18,53.981 +638085,251.12,47.613 +638086,252.53,49.814 +638087,253.75,51.924 +638088,254.81,53.952 +638089,249.92,47.587 +638090,251.27,49.787 +638091,252.44,51.895 +638092,253.45,53.922 +638093,248.71,47.563 +638094,250.01,49.759 +638095,251.12,51.865 +638096,252.09,53.89 +638097,247.51,47.541 +638098,248.75,49.733 +638099,249.81,51.835 +638100,250.72,53.857 +638101,246.31,47.521 +638102,247.49,49.707 +638103,248.49,51.804 +638104,249.36,53.822 +638105,245.11,47.502 +638106,246.23,49.681 +638107,247.17,51.773 +638108,247.99,53.786 +638109,243.91,47.485 +638110,244.97,49.656 +638111,245.86,51.741 +638112,246.62,53.748 +638113,242.72,47.47 +638114,243.71,49.632 +638115,244.54,51.709 +638116,245.26,53.708 +638117,241.52,47.457 +638118,242.45,49.608 +638119,243.23,51.676 +638120,243.89,53.667 +638121,240.32,47.445 +638122,241.19,49.585 +638123,241.91,51.642 +638124,242.52,53.625 +638125,239.13,47.435 +638126,239.93,49.563 +638127,240.59,51.608 +638128,241.15,53.58 +638129,237.93,47.427 +638130,238.67,49.541 +638131,239.28,51.574 +638132,239.78,53.535 +638133,236.74,47.421 +638134,237.41,49.519 +638135,237.96,51.539 +638136,238.41,53.487 +638137,235.55,47.416 +638138,236.15,49.498 +638139,236.64,51.503 +638140,237.04,53.438 +638141,234.35,47.413 +638142,234.89,49.478 +638143,235.33,51.467 +638144,235.67,53.388 +638145,233.16,47.411 +638146,233.64,49.458 +638147,234.01,51.431 +638148,234.3,53.336 +638149,231.97,47.411 +638150,232.38,49.439 +638151,232.69,51.394 +638152,232.93,53.283 +638153,230.77,47.413 +638154,231.12,49.42 +638155,231.38,51.356 +638156,231.56,53.228 +638157,229.58,47.417 +638158,229.86,49.402 +638159,230.06,51.318 +638160,230.19,53.171 +638161,228.39,47.422 +638162,228.6,49.385 +638163,228.74,51.28 +638164,228.82,53.113 +638165,227.2,47.429 +638166,227.35,49.367 +638167,227.43,51.241 +638168,227.45,53.053 +638169,226,47.437 +638170,226.09,49.351 +638171,226.11,51.201 +638172,226.08,52.993 +638173,224.81,47.447 +638174,224.83,49.335 +638175,224.79,51.161 +638176,224.71,52.93 +638177,223.62,47.458 +638178,223.58,49.319 +638179,223.48,51.121 +638180,223.34,52.866 +638181,222.42,47.471 +638182,222.32,49.304 +638183,222.16,51.08 +638184,221.96,52.801 +638185,221.23,47.485 +638186,221.06,49.29 +638187,220.85,51.038 +638188,220.59,52.734 +638189,220.04,47.501 +638190,219.8,49.276 +638191,219.53,50.996 +638192,219.22,52.666 +638193,218.84,47.518 +638194,218.55,49.262 +638195,218.21,50.954 +638196,217.85,52.597 +638197,217.65,47.537 +638198,217.29,49.249 +638199,216.9,50.911 +638200,216.48,52.526 +638201,216.46,47.557 +638202,216.03,49.237 +638203,215.58,50.868 +638204,215.11,52.453 +638205,215.26,47.578 +638206,214.78,49.225 +638207,214.27,50.825 +638208,213.74,52.38 +638209,214.06,47.601 +638210,213.52,49.213 +638211,212.95,50.78 +638212,212.37,52.305 +638213,212.87,47.625 +638214,212.26,49.202 +638215,211.64,50.736 +638216,211,52.229 +638217,211.67,47.651 +638218,211,49.191 +638219,210.32,50.691 +638220,209.63,52.151 +638221,210.47,47.677 +638222,209.74,49.181 +638223,209.01,50.646 +638224,208.26,52.072 +638225,209.27,47.705 +638226,208.49,49.171 +638227,207.69,50.6 +638228,206.89,51.992 +638229,208.07,47.734 +638230,207.23,49.162 +638231,206.38,50.554 +638232,205.53,51.911 +638233,206.87,47.764 +638234,205.97,49.153 +638235,205.07,50.507 +638236,204.16,51.829 +638237,205.67,47.795 +638238,204.71,49.144 +638239,203.75,50.461 +638240,202.79,51.745 +638241,204.47,47.828 +638242,203.45,49.136 +638243,202.44,50.413 +638244,201.43,51.661 +638245,203.27,47.861 +638246,202.19,49.128 +638247,201.13,50.366 +638248,200.06,51.575 +638249,202.06,47.895 +638250,200.94,49.12 +638251,199.81,50.318 +638252,198.7,51.488 +638253,200.86,47.931 +638254,199.68,49.113 +638255,198.5,50.27 +638256,197.33,51.4 +638257,199.65,47.967 +638258,198.42,49.106 +638259,197.19,50.221 +638260,195.97,51.311 +638261,198.44,48.004 +638262,197.16,49.1 +638263,195.88,50.172 +638264,194.6,51.221 +638265,197.23,48.043 +638266,195.9,49.094 +638267,194.57,50.123 +638268,193.24,51.13 +638269,196.02,48.082 +638270,194.64,49.088 +638271,193.26,50.074 +638272,191.88,51.038 +638273,194.81,48.121 +638274,193.38,49.082 +638275,191.95,50.024 +638276,190.52,50.945 +638277,193.6,48.162 +638278,192.11,49.077 +638279,190.64,49.974 +638280,189.16,50.851 +638281,192.38,48.203 +638282,190.85,49.072 +638283,189.33,49.924 +638284,187.8,50.757 +638285,191.17,48.245 +638286,189.59,49.068 +638287,188.02,49.873 +638288,186.45,50.661 +638289,189.95,48.288 +638290,188.33,49.063 +638291,186.71,49.823 +638292,185.09,50.565 +638293,188.73,48.331 +638294,187.07,49.059 +638295,185.4,49.772 +638296,183.74,50.468 +638297,187.51,48.375 +638298,185.8,49.055 +638299,184.1,49.72 +638300,182.38,50.37 +638301,186.29,48.42 +638302,184.54,49.051 +638303,182.79,49.669 +638304,181.03,50.272 +638305,185.06,48.465 +638306,183.28,49.048 +638307,181.48,49.618 +638308,179.68,50.173 +638309,183.84,48.511 +638310,182.01,49.045 +638311,180.18,49.566 +638312,178.33,50.073 +638313,182.61,48.556 +638314,180.75,49.041 +638315,178.87,49.514 +638316,176.98,49.973 +638317,181.38,48.603 +638318,179.48,49.039 +638319,177.57,49.462 +638320,175.63,49.872 +638321,180.15,48.65 +638322,178.22,49.036 +638323,176.26,49.41 +638324,174.28,49.77 +638325,178.92,48.697 +638326,176.95,49.033 +638327,174.96,49.357 +638328,172.94,49.668 +638329,177.69,48.744 +638330,175.69,49.031 +638331,173.66,49.305 +638332,171.6,49.566 +638333,176.45,48.792 +638334,174.42,49.028 +638335,172.35,49.253 +638336,170.25,49.463 +638337,175.22,48.839 +638338,173.15,49.026 +638339,171.05,49.2 +638340,168.91,49.36 +638341,173.98,48.887 +638342,171.88,49.024 +638343,169.75,49.147 +638344,167.57,49.256 +638345,172.74,48.935 +638346,170.61,49.022 +638347,168.45,49.095 +638348,166.24,49.152 +638349,171.49,48.984 +638350,169.35,49.02 +638351,167.15,49.042 +638352,164.9,49.048 +638353,170.25,49.032 +638354,168.08,49.018 +638355,165.85,48.989 +638356,163.56,48.944 +638357,169,49.08 +638358,166.81,49.016 +638359,164.55,48.936 +638360,162.23,48.84 +638361,167.76,49.128 +638362,165.54,49.014 +638363,163.25,48.883 +638364,160.9,48.735 +638365,166.51,49.177 +638366,164.27,49.012 +638367,161.96,48.831 +638368,159.57,48.63 +638369,165.26,49.225 +638370,162.99,49.01 +638371,160.66,48.778 +638372,158.24,48.525 +638373,164,49.273 +638374,161.72,49.008 +638375,159.36,48.725 +638376,156.92,48.42 +638377,162.75,49.32 +638378,160.45,49.006 +638379,158.07,48.672 +638380,155.59,48.316 +638381,161.49,49.368 +638382,159.18,49.004 +638383,156.77,48.62 +638384,154.27,48.211 +638385,160.23,49.415 +638386,157.9,49.002 +638387,155.48,48.567 +638388,152.95,48.106 +638389,158.97,49.462 +638390,156.63,49 +638391,154.19,48.515 +638392,151.63,48.002 +638393,157.71,49.509 +638394,155.35,48.998 +638395,152.89,48.462 +638396,150.32,47.897 +638397,156.44,49.556 +638398,154.08,48.996 +638399,151.6,48.41 +638400,149,47.793 +638401,155.18,49.602 +638402,152.8,48.994 +638403,150.31,48.358 +638404,147.69,47.69 +638405,153.91,49.647 +638406,151.53,48.992 +638407,149.02,48.306 +638408,146.38,47.586 +638409,152.64,49.692 +638410,150.25,48.989 +638411,147.73,48.254 +638412,145.07,47.483 +638413,151.37,49.737 +638414,148.97,48.986 +638415,146.44,48.202 +638416,143.76,47.38 +638417,150.09,49.781 +638418,147.69,48.984 +638419,145.16,48.151 +638420,142.46,47.278 +638421,148.82,49.824 +638422,146.41,48.981 +638423,143.87,48.1 +638424,141.16,47.176 +638425,147.54,49.867 +638426,145.13,48.978 +638427,142.58,48.048 +638428,139.86,47.075 +638429,146.26,49.91 +638430,143.85,48.974 +638431,141.3,47.998 +638432,138.56,46.974 +638433,144.98,49.951 +638434,142.57,48.971 +638435,140.01,47.947 +638436,137.26,46.874 +638437,143.7,49.992 +638438,141.29,48.967 +638439,138.73,47.897 +638440,135.97,46.775 +638441,142.41,50.032 +638442,140.01,48.963 +638443,137.44,47.847 +638444,134.68,46.676 +638445,141.12,50.071 +638446,138.73,48.959 +638447,136.16,47.797 +638448,133.39,46.578 +638449,139.84,50.11 +638450,137.45,48.955 +638451,134.88,47.747 +638452,132.1,46.481 +638453,138.54,50.148 +638454,136.16,48.95 +638455,133.6,47.698 +638456,130.82,46.384 +638457,137.25,50.184 +638458,134.88,48.945 +638459,132.32,47.649 +638460,129.53,46.289 +638461,135.96,50.22 +638462,133.59,48.94 +638463,131.04,47.601 +638464,128.25,46.194 +638465,134.66,50.255 +638466,132.31,48.934 +638467,129.76,47.552 +638468,126.98,46.101 +638469,133.37,50.289 +638470,131.02,48.929 +638471,128.48,47.505 +638472,125.7,46.008 +638473,132.07,50.323 +638474,129.74,48.923 +638475,127.21,47.457 +638476,124.43,45.916 +638477,130.77,50.355 +638478,128.45,48.916 +638479,125.93,47.41 +638480,123.16,45.826 +638481,129.46,50.386 +638482,127.16,48.909 +638483,124.66,47.363 +638484,121.89,45.736 +638485,128.16,50.416 +638486,125.88,48.902 +638487,123.38,47.317 +638488,120.62,45.648 +638489,126.85,50.444 +638490,124.59,48.895 +638491,122.11,47.271 +638492,119.36,45.561 +638493,125.54,50.472 +638494,123.3,48.887 +638495,120.83,47.225 +638496,118.1,45.475 +638497,124.24,50.499 +638498,122.01,48.879 +638499,119.56,47.18 +638500,116.84,45.39 +638501,122.92,50.524 +638502,120.72,48.871 +638503,118.29,47.136 +638504,115.58,45.307 +638505,121.61,50.548 +638506,119.43,48.862 +638507,117.02,47.092 +638508,114.33,45.225 +638509,120.3,50.571 +638510,118.14,48.852 +638511,115.75,47.048 +638512,113.07,45.144 +638513,118.98,50.593 +638514,116.84,48.843 +638515,114.48,47.005 +638516,111.82,45.065 +638517,117.67,50.613 +638518,115.55,48.832 +638519,113.21,46.962 +638520,110.58,44.987 +638521,116.35,50.632 +638522,114.26,48.822 +638523,111.94,46.92 +638524,109.33,44.911 +638525,115.03,50.65 +638526,112.97,48.811 +638527,110.68,46.878 +638528,108.09,44.836 +638529,113.71,50.666 +638530,111.67,48.8 +638531,109.41,46.837 +638532,106.85,44.763 +638533,112.38,50.682 +638534,110.38,48.788 +638535,108.14,46.796 +638536,105.61,44.691 +638537,111.06,50.695 +638538,109.09,48.775 +638539,106.88,46.756 +638540,104.37,44.621 +638541,109.73,50.708 +638542,107.79,48.763 +638543,105.61,46.717 +638544,103.14,44.552 +638545,108.41,50.718 +638546,106.49,48.749 +638547,104.35,46.678 +638548,101.91,44.486 +638549,107.08,50.728 +638550,105.2,48.736 +638551,103.09,46.639 +638552,100.68,44.42 +638553,105.75,50.736 +638554,103.9,48.721 +638555,101.83,46.601 +638556,99.448,44.357 +638557,104.42,50.742 +638558,102.61,48.707 +638559,100.56,46.564 +638560,98.223,44.295 +638561,103.09,50.747 +638562,101.31,48.692 +638563,99.303,46.527 +638564,96.999,44.235 +638565,101.75,50.751 +638566,100.01,48.676 +638567,98.043,46.491 +638568,95.778,44.177 +638569,100.42,50.753 +638570,98.714,48.66 +638571,96.784,46.456 +638572,94.558,44.121 +638573,99.082,50.753 +638574,97.415,48.643 +638575,95.525,46.421 +638576,93.341,44.067 +638577,97.745,50.752 +638578,96.117,48.626 +638579,94.266,46.387 +638580,92.125,44.014 +638581,96.407,50.749 +638582,94.818,48.608 +638583,93.009,46.353 +638584,90.912,43.963 +638585,95.068,50.745 +638586,93.518,48.59 +638587,91.752,46.32 +638588,89.7,43.914 +638589,93.728,50.739 +638590,92.219,48.571 +638591,90.495,46.287 +638592,88.49,43.867 +638593,92.386,50.732 +638594,90.919,48.552 +638595,89.239,46.256 +638596,87.282,43.822 +638597,91.044,50.723 +638598,89.618,48.532 +638599,87.984,46.224 +638600,86.075,43.779 +638601,89.701,50.712 +638602,88.318,48.511 +638603,86.729,46.194 +638604,84.87,43.738 +638605,88.357,50.7 +638606,87.017,48.491 +638607,85.475,46.164 +638608,83.667,43.699 +638609,87.012,50.686 +638610,85.716,48.469 +638611,84.221,46.135 +638612,82.466,43.662 +638613,85.667,50.67 +638614,84.414,48.447 +638615,82.967,46.106 +638616,81.266,43.626 +638617,84.32,50.653 +638618,83.112,48.424 +638619,81.715,46.078 +638620,80.067,43.593 +638621,82.973,50.634 +638622,81.81,48.401 +638623,80.462,46.051 +638624,78.87,43.562 +638625,81.624,50.613 +638626,80.508,48.378 +638627,79.21,46.024 +638628,77.674,43.533 +638629,80.275,50.591 +638630,79.206,48.353 +638631,77.959,45.999 +638632,76.48,43.505 +638633,78.926,50.567 +638634,77.903,48.329 +638635,76.708,45.973 +638636,75.287,43.48 +638637,77.575,50.541 +638638,76.6,48.303 +638639,75.457,45.949 +638640,74.095,43.457 +638641,76.225,50.514 +638642,75.297,48.277 +638643,74.207,45.925 +638644,72.904,43.436 +638645,74.873,50.485 +638646,73.994,48.251 +638647,72.957,45.901 +638648,71.714,43.417 +638649,73.521,50.454 +638650,72.691,48.224 +638651,71.708,45.879 +638652,70.526,43.399 +638653,72.168,50.422 +638654,71.387,48.196 +638655,70.459,45.857 +638656,69.338,43.384 +638657,70.815,50.388 +638658,70.084,48.168 +638659,69.21,45.836 +638660,68.151,43.371 +638661,69.461,50.352 +638662,68.78,48.139 +638663,67.962,45.815 +638664,66.965,43.36 +638665,68.107,50.315 +638666,67.476,48.11 +638667,66.713,45.795 +638668,65.78,43.351 +638669,66.753,50.276 +638670,66.172,48.08 +638671,65.466,45.776 +638672,64.596,43.344 +638673,65.398,50.235 +638674,64.868,48.05 +638675,64.218,45.757 +638676,63.412,43.339 +638677,64.042,50.193 +638678,63.564,48.019 +638679,62.971,45.739 +638680,62.229,43.335 +638681,62.687,50.149 +638682,62.26,47.988 +638683,61.724,45.722 +638684,61.046,43.334 +638685,61.331,50.103 +638686,60.956,47.956 +638687,60.477,45.705 +638688,59.864,43.335 +638689,59.975,50.056 +638690,59.652,47.923 +638691,59.23,45.689 +638692,58.682,43.337 +638693,58.619,50.007 +638694,58.347,47.89 +638695,57.984,45.673 +638696,57.501,43.342 +638697,57.262,49.956 +638698,57.043,47.856 +638699,56.737,45.659 +638700,56.32,43.348 +638701,55.906,49.904 +638702,55.739,47.822 +638703,55.491,45.645 +638704,55.139,43.357 +638705,54.549,49.85 +638706,54.435,47.788 +638707,54.245,45.631 +638708,53.958,43.367 +638709,53.192,49.794 +638710,53.131,47.752 +638711,52.999,45.618 +638712,52.777,43.379 +638713,51.836,49.737 +638714,51.827,47.717 +638715,51.753,45.606 +638716,51.597,43.393 +638717,50.479,49.678 +638718,50.523,47.68 +638719,50.507,45.594 +638720,50.416,43.408 +638721,49.122,49.618 +638722,49.219,47.644 +638723,49.262,45.583 +638724,49.235,43.426 +638725,47.766,49.556 +638726,47.916,47.606 +638727,48.016,45.573 +638728,48.054,43.445 +638729,46.409,49.493 +638730,46.612,47.569 +638731,46.77,45.563 +638732,46.872,43.466 +638733,45.053,49.428 +638734,45.309,47.531 +638735,45.525,45.554 +638736,45.691,43.488 +638737,43.697,49.362 +638738,44.005,47.492 +638739,44.279,45.545 +638740,44.509,43.513 +638741,42.341,49.294 +638742,42.702,47.453 +638743,43.033,45.537 +638744,43.326,43.539 +638745,40.985,49.224 +638746,41.399,47.413 +638747,41.788,45.529 +638748,42.144,43.566 +638749,39.63,49.154 +638750,40.097,47.373 +638751,40.542,45.522 +638752,40.96,43.595 +638753,38.275,49.081 +638754,38.794,47.332 +638755,39.296,45.516 +638756,39.776,43.626 +638757,36.92,49.008 +638758,37.492,47.291 +638759,38.05,45.51 +638760,38.591,43.658 +638761,35.566,48.932 +638762,36.19,47.25 +638763,36.804,45.505 +638764,37.406,43.692 +638765,34.212,48.856 +638766,34.888,47.208 +638767,35.558,45.5 +638768,36.22,43.727 +638769,32.858,48.778 +638770,33.586,47.166 +638771,34.312,45.496 +638772,35.033,43.763 +638773,31.506,48.699 +638774,32.285,47.123 +638775,33.065,45.492 +638776,33.845,43.801 +638777,30.153,48.618 +638778,30.984,47.08 +638779,31.818,45.488 +638780,32.656,43.841 +638781,28.801,48.537 +638782,29.683,47.036 +638783,30.572,45.486 +638784,31.466,43.881 +638785,27.45,48.453 +638786,28.383,46.992 +638787,29.324,45.483 +638788,30.275,43.923 +638789,26.1,48.369 +638790,27.083,46.948 +638791,28.077,45.481 +638792,29.083,43.966 +638793,24.75,48.283 +638794,25.783,46.903 +638795,26.83,45.48 +638796,27.89,44.011 +638797,23.401,48.197 +638798,24.484,46.858 +638799,25.582,45.479 +638800,26.696,44.056 +638801,22.053,48.109 +638802,23.185,46.813 +638803,24.334,45.478 +638804,25.501,44.103 +638805,20.705,48.02 +638806,21.887,46.767 +638807,23.086,45.478 +638808,24.304,44.15 +638809,19.359,47.929 +638810,20.589,46.721 +638811,21.837,45.478 +638812,23.106,44.199 +638813,18.013,47.838 +638814,19.291,46.675 +638815,20.588,45.479 +638816,21.907,44.249 +638817,16.668,47.746 +638818,17.994,46.628 +638819,19.339,45.48 +638820,20.706,44.3 +638821,15.324,47.653 +638822,16.697,46.581 +638823,18.089,45.481 +638824,19.504,44.352 +638825,13.981,47.558 +638826,15.4,46.534 +638827,16.839,45.483 +638828,18.301,44.404 +638829,12.639,47.463 +638830,14.104,46.487 +638831,15.589,45.485 +638832,17.096,44.458 +638833,11.299,47.367 +638834,12.809,46.439 +638835,14.339,45.487 +638836,15.889,44.512 +638837,9.9587,47.27 +638838,11.514,46.391 +638839,13.088,45.49 +638840,14.681,44.567 +638841,8.6201,47.172 +638842,10.22,46.343 +638843,11.836,45.493 +638844,13.471,44.623 +638845,7.2826,47.073 +638846,8.9256,46.294 +638847,10.584,45.496 +638848,12.26,44.679 +638849,5.9463,46.973 +638850,7.6322,46.246 +638851,9.3321,45.5 +638852,11.047,44.736 +638853,4.6112,46.873 +638854,6.3393,46.197 +638855,8.0795,45.504 +638856,9.8328,44.794 +638857,3.2773,46.772 +638858,5.047,46.148 +638859,6.8264,45.508 +638860,8.6165,44.852 +638861,1.9448,46.67 +638862,3.7553,46.099 +638863,5.5729,45.512 +638864,7.3986,44.911 +638865,0.61362,46.567 +638866,2.4641,46.049 +638867,4.3189,45.517 +638868,6.179,44.97 +638869,359.28,46.464 +638870,1.1735,46 +638871,3.0644,45.521 +638872,4.9576,45.03 +638873,357.96,46.361 +638874,359.88,45.95 +638875,1.8095,45.526 +638876,3.7344,45.09 +638877,356.63,46.257 +638878,358.59,45.901 +638879,0.55409,45.531 +638880,2.5094,45.15 +638881,355.3,46.152 +638882,357.31,45.851 +638883,359.3,45.537 +638884,1.2827,45.211 +638885,353.98,46.047 +638886,356.02,45.801 +638887,358.04,45.542 +638888,0.054077,45.272 +638889,352.66,45.942 +638890,354.73,45.751 +638891,356.78,45.548 +638892,358.82,45.333 +638893,351.34,45.836 +638894,353.44,45.701 +638895,355.53,45.553 +638896,357.59,45.394 +638897,350.02,45.73 +638898,352.16,45.651 +638899,354.27,45.559 +638900,356.36,45.455 +638901,348.7,45.623 +638902,350.87,45.601 +638903,353.01,45.565 +638904,355.12,45.517 +638905,347.38,45.516 +638906,349.59,45.551 +638907,351.75,45.571 +638908,353.88,45.578 +638909,346.07,45.41 +638910,348.3,45.501 +638911,350.49,45.577 +638912,352.64,45.64 +638913,344.76,45.302 +638914,347.02,45.451 +638915,349.23,45.583 +638916,351.4,45.702 +638917,343.44,45.195 +638918,345.74,45.401 +638919,347.97,45.59 +638920,350.16,45.763 +638921,342.14,45.088 +638922,344.45,45.351 +638923,346.71,45.596 +638924,348.91,45.824 +638925,340.83,44.981 +638926,343.17,45.301 +638927,345.45,45.602 +638928,347.67,45.885 +638929,339.52,44.873 +638930,341.89,45.251 +638931,344.19,45.608 +638932,346.42,45.946 +638933,338.22,44.766 +638934,340.61,45.201 +638935,342.92,45.614 +638936,345.17,46.007 +638937,336.92,44.659 +638938,339.33,45.152 +638939,341.66,45.621 +638940,343.91,46.067 +638941,335.62,44.552 +638942,338.05,45.102 +638943,340.4,45.627 +638944,342.66,46.128 +638945,334.32,44.446 +638946,336.78,45.053 +638947,339.13,45.633 +638948,341.4,46.187 +638949,333.02,44.339 +638950,335.5,45.004 +638951,337.87,45.639 +638952,340.14,46.247 +638953,331.73,44.233 +638954,334.22,44.955 +638955,336.6,45.645 +638956,338.88,46.305 +638957,330.44,44.127 +638958,332.95,44.906 +638959,335.33,45.65 +638960,337.62,46.364 +638961,329.15,44.022 +638962,331.67,44.857 +638963,334.07,45.656 +638964,336.35,46.422 +638965,327.86,43.917 +638966,330.4,44.809 +638967,332.8,45.662 +638968,335.09,46.479 +638969,326.57,43.812 +638970,329.12,44.761 +638971,331.53,45.667 +638972,333.82,46.536 +638973,325.29,43.708 +638974,327.85,44.713 +638975,330.26,45.672 +638976,332.55,46.592 +638977,324.01,43.605 +638978,326.58,44.665 +638979,328.99,45.678 +638980,331.28,46.647 +638981,322.73,43.502 +638982,325.31,44.618 +638983,327.72,45.682 +638984,330,46.702 +638985,321.45,43.4 +638986,324.04,44.57 +638987,326.45,45.687 +638988,328.73,46.756 +638989,320.18,43.298 +638990,322.77,44.524 +638991,325.18,45.692 +638992,327.45,46.809 +638993,318.91,43.197 +638994,321.5,44.477 +638995,323.91,45.696 +638996,326.17,46.861 +638997,317.63,43.098 +638998,320.23,44.431 +638999,322.64,45.7 +639000,324.89,46.913 +639001,316.37,42.999 +639002,318.96,44.385 +639003,321.37,45.704 +639004,323.61,46.963 +639005,315.1,42.901 +639006,317.7,44.34 +639007,320.09,45.708 +639008,322.32,47.013 +639009,313.84,42.803 +639010,316.43,44.294 +639011,318.82,45.711 +639012,321.04,47.062 +639013,312.57,42.707 +639014,315.17,44.25 +639015,317.55,45.714 +639016,319.75,47.109 +639017,311.32,42.612 +639018,313.9,44.205 +639019,316.27,45.717 +639020,318.46,47.156 +639021,310.06,42.518 +639022,312.64,44.162 +639023,315,45.719 +639024,317.17,47.202 +639025,308.8,42.425 +639026,311.38,44.118 +639027,313.72,45.721 +639028,315.88,47.246 +639029,307.55,42.334 +639030,310.12,44.075 +639031,312.44,45.723 +639032,314.58,47.29 +639033,306.3,42.243 +639034,308.85,44.032 +639035,311.17,45.724 +639036,313.29,47.332 +639037,305.05,42.154 +639038,307.59,43.99 +639039,309.89,45.726 +639040,311.99,47.373 +639041,303.81,42.066 +639042,306.33,43.949 +639043,308.61,45.726 +639044,310.69,47.414 +639045,302.56,41.979 +639046,305.08,43.908 +639047,307.33,45.727 +639048,309.39,47.452 +639049,301.32,41.894 +639050,303.82,43.867 +639051,306.05,45.727 +639052,308.09,47.49 +639053,300.08,41.811 +639054,302.56,43.827 +639055,304.77,45.726 +639056,306.78,47.526 +639057,298.85,41.728 +639058,301.3,43.787 +639059,303.49,45.725 +639060,305.48,47.561 +639061,297.61,41.648 +639062,300.05,43.748 +639063,302.21,45.724 +639064,304.17,47.595 +639065,296.38,41.568 +639066,298.79,43.71 +639067,300.93,45.723 +639068,302.86,47.627 +639069,295.15,41.491 +639070,297.54,43.672 +639071,299.65,45.721 +639072,301.55,47.658 +639073,293.92,41.415 +639074,296.28,43.634 +639075,298.37,45.718 +639076,300.24,47.688 +639077,292.7,41.341 +639078,295.03,43.598 +639079,297.09,45.715 +639080,298.93,47.716 +639081,291.47,41.268 +639082,293.78,43.561 +639083,295.8,45.712 +639084,297.62,47.743 +639085,290.25,41.198 +639086,292.53,43.526 +639087,294.52,45.708 +639088,296.3,47.768 +639089,289.03,41.129 +639090,291.28,43.491 +639091,293.24,45.704 +639092,294.98,47.792 +639093,287.82,41.061 +639094,290.03,43.456 +639095,291.95,45.699 +639096,293.67,47.814 +639097,286.6,40.996 +639098,288.78,43.423 +639099,290.67,45.694 +639100,292.35,47.835 +639101,285.39,40.933 +639102,287.53,43.39 +639103,289.38,45.688 +639104,291.03,47.854 +639105,284.18,40.871 +639106,286.28,43.357 +639107,288.1,45.682 +639108,289.71,47.872 +639109,282.97,40.812 +639110,285.03,43.326 +639111,286.81,45.675 +639112,288.38,47.888 +639113,281.76,40.754 +639114,283.78,43.295 +639115,285.53,45.668 +639116,287.06,47.902 +639117,280.55,40.699 +639118,282.54,43.264 +639119,284.24,45.66 +639120,285.74,47.915 +639121,279.35,40.645 +639122,281.29,43.234 +639123,282.95,45.652 +639124,284.41,47.926 +639125,278.15,40.593 +639126,280.04,43.205 +639127,281.67,45.643 +639128,283.09,47.936 +639129,276.95,40.544 +639130,278.8,43.177 +639131,280.38,45.633 +639132,281.76,47.944 +639133,275.75,40.497 +639134,277.56,43.149 +639135,279.09,45.623 +639136,280.43,47.95 +639137,274.56,40.452 +639138,276.31,43.122 +639139,277.8,45.613 +639140,279.1,47.955 +639141,273.36,40.408 +639142,275.07,43.096 +639143,276.52,45.602 +639144,277.77,47.958 +639145,272.17,40.368 +639146,273.83,43.071 +639147,275.23,45.59 +639148,276.44,47.959 +639149,270.98,40.329 +639150,272.58,43.046 +639151,273.94,45.578 +639152,275.11,47.959 +639153,269.79,40.292 +639154,271.34,43.022 +639155,272.65,45.566 +639156,273.78,47.956 +639157,268.6,40.258 +639158,270.1,42.999 +639159,271.36,45.552 +639160,272.44,47.953 +639161,267.41,40.226 +639162,268.86,42.976 +639163,270.07,45.539 +639164,271.11,47.947 +639165,266.22,40.196 +639166,267.62,42.954 +639167,268.78,45.524 +639168,269.77,47.94 +639169,265.04,40.168 +639170,266.38,42.933 +639171,267.49,45.509 +639172,268.44,47.93 +639173,263.86,40.143 +639174,265.14,42.913 +639175,266.2,45.494 +639176,267.1,47.92 +639177,262.67,40.12 +639178,263.9,42.893 +639179,264.91,45.478 +639180,265.77,47.907 +639181,261.49,40.099 +639182,262.66,42.874 +639183,263.62,45.461 +639184,264.43,47.893 +639185,260.31,40.08 +639186,261.42,42.856 +639187,262.33,45.444 +639188,263.09,47.876 +639189,259.13,40.064 +639190,260.18,42.839 +639191,261.04,45.426 +639192,261.75,47.859 +639193,257.96,40.05 +639194,258.94,42.823 +639195,259.75,45.408 +639196,260.41,47.839 +639197,256.78,40.038 +639198,257.71,42.807 +639199,258.46,45.389 +639200,259.07,47.817 +639201,255.6,40.029 +639202,256.47,42.792 +639203,257.16,45.369 +639204,257.74,47.794 +639205,254.43,40.022 +639206,255.23,42.777 +639207,255.87,45.349 +639208,256.4,47.769 +639209,253.25,40.017 +639210,253.99,42.764 +639211,254.58,45.328 +639212,255.06,47.742 +639213,252.08,40.014 +639214,252.76,42.751 +639215,253.29,45.307 +639216,253.72,47.714 +639217,250.9,40.013 +639218,251.52,42.739 +639219,252,45.285 +639220,252.38,47.684 +639221,249.73,40.015 +639222,250.29,42.728 +639223,250.71,45.263 +639224,251.03,47.651 +639225,248.56,40.019 +639226,249.05,42.717 +639227,249.42,45.24 +639228,249.69,47.618 +639229,247.38,40.025 +639230,247.81,42.707 +639231,248.13,45.216 +639232,248.35,47.582 +639233,246.21,40.033 +639234,246.58,42.698 +639235,246.83,45.192 +639236,247.01,47.545 +639237,245.04,40.044 +639238,245.34,42.69 +639239,245.54,45.168 +639240,245.67,47.506 +639241,243.87,40.057 +639242,244.11,42.682 +639243,244.25,45.142 +639244,244.33,47.465 +639245,242.69,40.072 +639246,242.87,42.675 +639247,242.96,45.117 +639248,242.99,47.422 +639249,241.52,40.088 +639250,241.63,42.669 +639251,241.67,45.09 +639252,241.65,47.378 +639253,240.35,40.108 +639254,240.4,42.664 +639255,240.38,45.063 +639256,240.31,47.332 +639257,239.18,40.129 +639258,239.16,42.659 +639259,239.09,45.036 +639260,238.97,47.284 +639261,238,40.152 +639262,237.93,42.655 +639263,237.8,45.008 +639264,237.62,47.235 +639265,236.83,40.177 +639266,236.69,42.651 +639267,236.51,44.98 +639268,236.28,47.184 +639269,235.66,40.204 +639270,235.46,42.649 +639271,235.22,44.951 +639272,234.94,47.131 +639273,234.48,40.234 +639274,234.22,42.647 +639275,233.93,44.921 +639276,233.6,47.077 +639277,233.31,40.265 +639278,232.99,42.645 +639279,232.64,44.891 +639280,232.26,47.021 +639281,232.13,40.298 +639282,231.75,42.645 +639283,231.35,44.861 +639284,230.92,46.964 +639285,230.96,40.333 +639286,230.51,42.645 +639287,230.06,44.829 +639288,229.59,46.904 +639289,229.78,40.37 +639290,229.28,42.646 +639291,228.77,44.798 +639292,228.25,46.844 +639293,228.6,40.409 +639294,228.04,42.647 +639295,227.48,44.766 +639296,226.91,46.781 +639297,227.43,40.449 +639298,226.81,42.649 +639299,226.19,44.733 +639300,225.57,46.717 +639301,226.25,40.491 +639302,225.57,42.652 +639303,224.9,44.7 +639304,224.23,46.652 +639305,225.07,40.535 +639306,224.33,42.655 +639307,223.61,44.667 +639308,222.9,46.585 +639309,223.89,40.581 +639310,223.1,42.659 +639311,222.32,44.633 +639312,221.56,46.517 +639313,222.71,40.628 +639314,221.86,42.663 +639315,221.03,44.599 +639316,220.22,46.447 +639317,221.52,40.677 +639318,220.62,42.668 +639319,219.75,44.564 +639320,218.89,46.375 +639321,220.34,40.728 +639322,219.39,42.674 +639323,218.46,44.529 +639324,217.56,46.302 +639325,219.16,40.78 +639326,218.15,42.68 +639327,217.17,44.493 +639328,216.22,46.228 +639329,217.97,40.833 +639330,216.91,42.687 +639331,215.88,44.457 +639332,214.89,46.153 +639333,216.78,40.888 +639334,215.67,42.694 +639335,214.6,44.42 +639336,213.56,46.076 +639337,215.59,40.945 +639338,214.43,42.702 +639339,213.31,44.384 +639340,212.23,45.997 +639341,214.4,41.003 +639342,213.19,42.71 +639343,212.03,44.346 +639344,210.9,45.918 +639345,213.21,41.062 +639346,211.96,42.719 +639347,210.74,44.309 +639348,209.57,45.837 +639349,212.02,41.122 +639350,210.72,42.728 +639351,209.46,44.271 +639352,208.24,45.755 +639353,210.83,41.184 +639354,209.48,42.738 +639355,208.17,44.233 +639356,206.91,45.671 +639357,209.63,41.247 +639358,208.24,42.749 +639359,206.89,44.194 +639360,205.58,45.587 +639361,208.43,41.311 +639362,207,42.759 +639363,205.61,44.155 +639364,204.26,45.501 +639365,207.24,41.376 +639366,205.75,42.771 +639367,204.32,44.116 +639368,202.93,45.414 +639369,206.04,41.442 +639370,204.51,42.782 +639371,203.04,44.076 +639372,201.61,45.326 +639373,204.83,41.509 +639374,203.27,42.794 +639375,201.76,44.036 +639376,200.29,45.237 +639377,203.63,41.577 +639378,202.03,42.807 +639379,200.48,43.996 +639380,198.97,45.147 +639381,202.42,41.646 +639382,200.79,42.82 +639383,199.2,43.956 +639384,197.65,45.056 +639385,201.22,41.716 +639386,199.54,42.833 +639387,197.92,43.915 +639388,196.33,44.964 +639389,200.01,41.787 +639390,198.3,42.846 +639391,196.64,43.874 +639392,195.01,44.871 +639393,198.8,41.858 +639394,197.06,42.86 +639395,195.36,43.833 +639396,193.7,44.777 +639397,197.59,41.931 +639398,195.81,42.875 +639399,194.08,43.792 +639400,192.38,44.682 +639401,196.37,42.004 +639402,194.57,42.889 +639403,192.8,43.75 +639404,191.07,44.586 +639405,195.16,42.077 +639406,193.32,42.904 +639407,191.52,43.709 +639408,189.76,44.49 +639409,193.94,42.151 +639410,192.07,42.919 +639411,190.24,43.667 +639412,188.45,44.393 +639413,192.72,42.226 +639414,190.83,42.935 +639415,188.97,43.625 +639416,187.14,44.295 +639417,191.5,42.301 +639418,189.58,42.951 +639419,187.69,43.582 +639420,185.83,44.196 +639421,190.27,42.377 +639422,188.33,42.967 +639423,186.42,43.54 +639424,184.52,44.097 +639425,189.05,42.453 +639426,187.08,42.983 +639427,185.14,43.498 +639428,183.22,43.997 +639429,187.82,42.53 +639430,185.84,42.999 +639431,183.87,43.455 +639432,181.92,43.897 +639433,186.59,42.606 +639434,184.59,43.016 +639435,182.59,43.413 +639436,180.61,43.796 +639437,185.36,42.683 +639438,183.34,43.033 +639439,181.32,43.37 +639440,179.31,43.694 +639441,184.13,42.76 +639442,182.09,43.05 +639443,180.05,43.327 +639444,178.02,43.593 +639445,182.89,42.838 +639446,180.84,43.067 +639447,178.78,43.285 +639448,176.72,43.49 +639449,181.66,42.915 +639450,179.58,43.084 +639451,177.51,43.242 +639452,175.42,43.388 +639453,180.42,42.993 +639454,178.33,43.102 +639455,176.24,43.199 +639456,174.13,43.285 +639457,179.18,43.071 +639458,177.08,43.119 +639459,174.97,43.156 +639460,172.84,43.182 +639461,177.93,43.148 +639462,175.83,43.137 +639463,173.7,43.114 +639464,171.55,43.078 +639465,176.69,43.226 +639466,174.57,43.154 +639467,172.43,43.071 +639468,170.26,42.975 +639469,175.44,43.303 +639470,173.32,43.172 +639471,171.16,43.028 +639472,168.98,42.871 +639473,174.2,43.381 +639474,172.06,43.19 +639475,169.9,42.986 +639476,167.69,42.767 +639477,172.94,43.458 +639478,170.81,43.208 +639479,168.63,42.943 +639480,166.41,42.664 +639481,171.69,43.535 +639482,169.55,43.225 +639483,167.36,42.901 +639484,165.13,42.56 +639485,170.44,43.611 +639486,168.29,43.243 +639487,166.1,42.859 +639488,163.85,42.456 +639489,169.18,43.687 +639490,167.04,43.261 +639491,164.84,42.816 +639492,162.58,42.352 +639493,167.92,43.763 +639494,165.78,43.279 +639495,163.57,42.775 +639496,161.3,42.249 +639497,166.66,43.839 +639498,164.52,43.297 +639499,162.31,42.733 +639500,160.03,42.146 +639501,165.4,43.914 +639502,163.26,43.314 +639503,161.05,42.691 +639504,158.76,42.043 +639505,164.14,43.988 +639506,162,43.332 +639507,159.79,42.65 +639508,157.49,41.94 +639509,162.87,44.062 +639510,160.74,43.349 +639511,158.53,42.609 +639512,156.22,41.838 +639513,161.61,44.136 +639514,159.48,43.367 +639515,157.27,42.568 +639516,154.96,41.736 +639517,160.34,44.209 +639518,158.22,43.384 +639519,156.01,42.527 +639520,153.7,41.634 +639521,159.07,44.281 +639522,156.95,43.401 +639523,154.75,42.486 +639524,152.44,41.533 +639525,157.79,44.352 +639526,155.69,43.418 +639527,153.49,42.446 +639528,151.18,41.433 +639529,156.52,44.423 +639530,154.43,43.435 +639531,152.23,42.406 +639532,149.92,41.333 +639533,155.24,44.493 +639534,153.16,43.452 +639535,150.98,42.367 +639536,148.67,41.234 +639537,153.96,44.562 +639538,151.9,43.468 +639539,149.72,42.328 +639540,147.42,41.135 +639541,152.69,44.631 +639542,150.63,43.485 +639543,148.47,42.289 +639544,146.17,41.037 +639545,151.4,44.698 +639546,149.37,43.501 +639547,147.21,42.25 +639548,144.92,40.941 +639549,150.12,44.765 +639550,148.1,43.517 +639551,145.96,42.212 +639552,143.68,40.844 +639553,148.84,44.831 +639554,146.84,43.532 +639555,144.71,42.174 +639556,142.43,40.749 +639557,147.55,44.895 +639558,145.57,43.548 +639559,143.46,42.137 +639560,141.19,40.655 +639561,146.26,44.959 +639562,144.3,43.563 +639563,142.21,42.1 +639564,139.95,40.562 +639565,144.97,45.021 +639566,143.03,43.578 +639567,140.96,42.063 +639568,138.72,40.47 +639569,143.68,45.083 +639570,141.76,43.592 +639571,139.71,42.027 +639572,137.48,40.379 +639573,142.39,45.143 +639574,140.49,43.606 +639575,138.46,41.992 +639576,136.25,40.289 +639577,141.09,45.203 +639578,139.22,43.62 +639579,137.21,41.956 +639580,135.02,40.2 +639581,139.8,45.261 +639582,137.95,43.634 +639583,135.96,41.922 +639584,133.79,40.112 +639585,138.5,45.318 +639586,136.68,43.647 +639587,134.71,41.888 +639588,132.56,40.026 +639589,137.2,45.373 +639590,135.41,43.66 +639591,133.47,41.854 +639592,131.34,39.941 +639593,135.9,45.428 +639594,134.14,43.672 +639595,132.22,41.821 +639596,130.12,39.858 +639597,134.6,45.481 +639598,132.86,43.684 +639599,130.98,41.788 +639600,128.9,39.776 +639601,133.3,45.533 +639602,131.59,43.696 +639603,129.73,41.756 +639604,127.68,39.695 +639605,131.99,45.583 +639606,130.32,43.708 +639607,128.49,41.725 +639608,126.46,39.616 +639609,130.69,45.632 +639610,129.04,43.719 +639611,127.25,41.694 +639612,125.25,39.539 +639613,129.38,45.68 +639614,127.77,43.729 +639615,126,41.664 +639616,124.04,39.463 +639617,128.07,45.726 +639618,126.5,43.739 +639619,124.76,41.634 +639620,122.82,39.389 +639621,126.77,45.771 +639622,125.22,43.749 +639623,123.52,41.605 +639624,121.62,39.317 +639625,125.46,45.814 +639626,123.94,43.758 +639627,122.28,41.577 +639628,120.41,39.246 +639629,124.14,45.856 +639630,122.67,43.767 +639631,121.04,41.549 +639632,119.21,39.177 +639633,122.83,45.896 +639634,121.39,43.775 +639635,119.8,41.522 +639636,118,39.11 +639637,121.52,45.935 +639638,120.11,43.783 +639639,118.56,41.495 +639640,116.8,39.045 +639641,120.2,45.973 +639642,118.84,43.79 +639643,117.32,41.469 +639644,115.6,38.981 +639645,118.89,46.008 +639646,117.56,43.797 +639647,116.08,41.444 +639648,114.41,38.92 +639649,117.57,46.042 +639650,116.28,43.804 +639651,114.85,41.42 +639652,113.21,38.861 +639653,116.25,46.075 +639654,115,43.81 +639655,113.61,41.396 +639656,112.02,38.803 +639657,114.93,46.106 +639658,113.72,43.815 +639659,112.37,41.373 +639660,110.82,38.748 +639661,113.62,46.135 +639662,112.45,43.82 +639663,111.14,41.351 +639664,109.63,38.695 +639665,112.29,46.163 +639666,111.17,43.824 +639667,109.9,41.329 +639668,108.45,38.644 +639669,110.97,46.189 +639670,109.89,43.828 +639671,108.66,41.309 +639672,107.26,38.595 +639673,109.65,46.213 +639674,108.61,43.831 +639675,107.43,41.288 +639676,106.07,38.548 +639677,108.33,46.235 +639678,107.33,43.834 +639679,106.2,41.269 +639680,104.89,38.503 +639681,107.01,46.256 +639682,106.05,43.836 +639683,104.96,41.251 +639684,103.7,38.461 +639685,105.68,46.275 +639686,104.77,43.838 +639687,103.73,41.233 +639688,102.52,38.421 +639689,104.36,46.292 +639690,103.48,43.839 +639691,102.49,41.216 +639692,101.34,38.383 +639693,103.03,46.308 +639694,102.2,43.84 +639695,101.26,41.199 +639696,100.16,38.347 +639697,101.71,46.322 +639698,100.92,43.839 +639699,100.03,41.184 +639700,98.982,38.314 +639701,100.38,46.334 +639702,99.641,43.839 +639703,98.797,41.169 +639704,97.805,38.283 +639705,99.052,46.344 +639706,98.359,43.838 +639707,97.565,41.155 +639708,96.628,38.255 +639709,97.724,46.353 +639710,97.077,43.836 +639711,96.333,41.142 +639712,95.453,38.229 +639713,96.396,46.359 +639714,95.795,43.834 +639715,95.101,41.13 +639716,94.278,38.205 +639717,95.068,46.364 +639718,94.513,43.831 +639719,93.87,41.118 +639720,93.105,38.183 +639721,93.739,46.367 +639722,93.231,43.827 +639723,92.639,41.108 +639724,91.932,38.164 +639725,92.41,46.369 +639726,91.948,43.823 +639727,91.409,41.098 +639728,90.759,38.148 +639729,91.08,46.368 +639730,90.666,43.819 +639731,90.178,41.089 +639732,89.588,38.134 +639733,89.751,46.366 +639734,89.383,43.814 +639735,88.948,41.08 +639736,88.416,38.122 +639737,88.421,46.362 +639738,88.101,43.808 +639739,87.718,41.073 +639740,87.246,38.113 +639741,87.09,46.356 +639742,86.818,43.801 +639743,86.488,41.066 +639744,86.076,38.106 +639745,85.76,46.348 +639746,85.535,43.794 +639747,85.258,41.06 +639748,84.906,38.101 +639749,84.43,46.338 +639750,84.252,43.787 +639751,84.028,41.055 +639752,83.736,38.099 +639753,83.099,46.327 +639754,82.97,43.779 +639755,82.798,41.051 +639756,82.567,38.1 +639757,81.769,46.313 +639758,81.687,43.77 +639759,81.568,41.048 +639760,81.398,38.103 +639761,80.438,46.298 +639762,80.404,43.761 +639763,80.339,41.045 +639764,80.229,38.108 +639765,79.107,46.281 +639766,79.121,43.751 +639767,79.109,41.043 +639768,79.06,38.116 +639769,77.777,46.263 +639770,77.839,43.74 +639771,77.88,41.042 +639772,77.891,38.126 +639773,76.446,46.242 +639774,76.556,43.729 +639775,76.65,41.042 +639776,76.722,38.138 +639777,75.116,46.22 +639778,75.273,43.718 +639779,75.42,41.042 +639780,75.552,38.153 +639781,73.786,46.196 +639782,73.991,43.705 +639783,74.191,41.044 +639784,74.383,38.171 +639785,72.456,46.17 +639786,72.708,43.693 +639787,72.961,41.046 +639788,73.213,38.19 +639789,71.126,46.142 +639790,71.426,43.679 +639791,71.731,41.049 +639792,72.042,38.212 +639793,69.797,46.112 +639794,70.144,43.665 +639795,70.502,41.053 +639796,70.872,38.237 +639797,68.467,46.081 +639798,68.862,43.651 +639799,69.272,41.057 +639800,69.7,38.263 +639801,67.138,46.048 +639802,67.58,43.636 +639803,68.041,41.063 +639804,68.529,38.292 +639805,65.81,46.013 +639806,66.298,43.62 +639807,66.811,41.069 +639808,67.356,38.323 +639809,64.482,45.977 +639810,65.017,43.604 +639811,65.581,41.076 +639812,66.183,38.357 +639813,63.154,45.939 +639814,63.735,43.588 +639815,64.35,41.083 +639816,65.009,38.392 +639817,61.827,45.899 +639818,62.454,43.57 +639819,63.119,41.092 +639820,63.834,38.43 +639821,60.501,45.857 +639822,61.173,43.553 +639823,61.888,41.101 +639824,62.659,38.47 +639825,59.174,45.814 +639826,59.893,43.534 +639827,60.657,41.11 +639828,61.482,38.512 +639829,57.849,45.769 +639830,58.612,43.516 +639831,59.426,41.121 +639832,60.304,38.556 +639833,56.524,45.722 +639834,57.332,43.496 +639835,58.194,41.132 +639836,59.126,38.602 +639837,55.2,45.674 +639838,56.052,43.477 +639839,56.962,41.144 +639840,57.946,38.651 +639841,53.876,45.624 +639842,54.773,43.456 +639843,55.73,41.157 +639844,56.765,38.701 +639845,52.554,45.572 +639846,53.493,43.436 +639847,54.497,41.17 +639848,55.583,38.753 +639849,51.232,45.519 +639850,52.214,43.414 +639851,53.264,41.184 +639852,54.4,38.807 +639853,49.91,45.465 +639854,50.936,43.393 +639855,52.031,41.199 +639856,53.215,38.863 +639857,48.59,45.409 +639858,49.657,43.37 +639859,50.797,41.215 +639860,52.029,38.921 +639861,47.27,45.351 +639862,48.379,43.348 +639863,49.563,41.231 +639864,50.841,38.98 +639865,45.952,45.292 +639866,47.102,43.325 +639867,48.328,41.247 +639868,49.652,39.041 +639869,44.634,45.231 +639870,45.824,43.301 +639871,47.094,41.265 +639872,48.462,39.104 +639873,43.317,45.169 +639874,44.548,43.277 +639875,45.858,41.283 +639876,47.27,39.169 +639877,42.001,45.105 +639878,43.271,43.253 +639879,44.623,41.301 +639880,46.077,39.236 +639881,40.687,45.04 +639882,41.995,43.228 +639883,43.387,41.32 +639884,44.882,39.303 +639885,39.373,44.974 +639886,40.719,43.203 +639887,42.15,41.34 +639888,43.685,39.373 +639889,38.06,44.906 +639890,39.444,43.177 +639891,40.913,41.36 +639892,42.486,39.444 +639893,36.749,44.837 +639894,38.169,43.151 +639895,39.675,41.381 +639896,41.286,39.516 +639897,35.439,44.767 +639898,36.895,43.125 +639899,38.437,41.402 +639900,40.084,39.59 +639901,34.13,44.695 +639902,35.621,43.098 +639903,37.199,41.424 +639904,38.881,39.665 +639905,32.822,44.623 +639906,34.348,43.071 +639907,35.96,41.447 +639908,37.675,39.742 +639909,31.515,44.549 +639910,33.075,43.044 +639911,34.72,41.47 +639912,36.468,39.819 +639913,30.21,44.473 +639914,31.803,43.016 +639915,33.48,41.493 +639916,35.259,39.898 +639917,28.906,44.397 +639918,30.531,42.988 +639919,32.24,41.517 +639920,34.048,39.978 +639921,27.603,44.319 +639922,29.259,42.96 +639923,30.999,41.541 +639924,32.835,40.059 +639925,26.302,44.241 +639926,27.988,42.931 +639927,29.757,41.566 +639928,31.621,40.142 +639929,25.002,44.161 +639930,26.718,42.902 +639931,28.515,41.591 +639932,30.404,40.225 +639933,23.703,44.081 +639934,25.448,42.873 +639935,27.272,41.617 +639936,29.186,40.309 +639937,22.406,43.999 +639938,24.179,42.844 +639939,26.028,41.643 +639940,27.965,40.394 +639941,21.11,43.916 +639942,22.91,42.814 +639943,24.784,41.67 +639944,26.743,40.48 +639945,19.816,43.833 +639946,21.642,42.784 +639947,23.54,41.696 +639948,25.518,40.567 +639949,18.524,43.749 +639950,20.375,42.754 +639951,22.294,41.724 +639952,24.292,40.655 +639953,17.233,43.663 +639954,19.108,42.724 +639955,21.048,41.751 +639956,23.063,40.743 +639957,15.944,43.577 +639958,17.841,42.694 +639959,19.802,41.779 +639960,21.833,40.832 +639961,14.656,43.491 +639962,16.575,42.663 +639963,18.555,41.807 +639964,20.601,40.921 +639965,13.37,43.403 +639966,15.31,42.632 +639967,17.307,41.836 +639968,19.366,41.012 +639969,12.085,43.315 +639970,14.046,42.601 +639971,16.059,41.864 +639972,18.13,41.102 +639973,10.803,43.226 +639974,12.782,42.571 +639975,14.81,41.893 +639976,16.891,41.193 +639977,9.5215,43.136 +639978,11.518,42.54 +639979,13.56,41.922 +639980,15.651,41.285 +639981,8.2422,43.046 +639982,10.255,42.508 +639983,12.31,41.952 +639984,14.409,41.377 +639985,6.9646,42.956 +639986,8.9933,42.477 +639987,11.059,41.982 +639988,13.164,41.469 +639989,5.6888,42.865 +639990,7.7318,42.446 +639991,9.8075,42.011 +639992,11.918,41.561 +639993,4.4148,42.773 +639994,6.471,42.415 +639995,8.5553,42.041 +639996,10.669,41.654 +639997,3.1426,42.682 +639998,5.2107,42.383 +639999,7.3025,42.072 +640000,9.4191,41.747 +640001,1.8723,42.589 +640002,3.9511,42.352 +640003,6.049,42.102 +640004,8.1668,41.84 +640005,0.6038,42.497 +640006,2.6922,42.321 +640007,4.7949,42.132 +640008,6.9125,41.933 +640009,359.34,42.404 +640010,1.4339,42.289 +640011,3.5401,42.163 +640012,5.6563,42.026 +640013,358.07,42.311 +640014,0.17619,42.258 +640015,2.2846,42.194 +640016,4.3981,42.119 +640017,356.81,42.218 +640018,358.92,42.227 +640019,1.0285,42.225 +640020,3.138,42.212 +640021,355.55,42.125 +640022,357.66,42.196 +640023,359.77,42.255 +640024,1.876,42.304 +640025,354.29,42.031 +640026,356.41,42.164 +640027,358.51,42.286 +640028,0.61203,42.397 +640029,353.03,41.938 +640030,355.15,42.133 +640031,357.26,42.317 +640032,359.35,42.489 +640033,351.78,41.844 +640034,353.9,42.103 +640035,356,42.348 +640036,358.08,42.582 +640037,350.52,41.751 +640038,352.64,42.072 +640039,354.74,42.379 +640040,356.81,42.674 +640041,349.27,41.658 +640042,351.39,42.041 +640043,353.48,42.41 +640044,355.54,42.765 +640045,348.02,41.565 +640046,350.14,42.011 +640047,352.22,42.441 +640048,354.26,42.856 +640049,346.78,41.472 +640050,348.89,41.981 +640051,350.96,42.472 +640052,352.99,42.947 +640053,345.53,41.379 +640054,347.64,41.951 +640055,349.69,42.503 +640056,351.71,43.037 +640057,344.29,41.287 +640058,346.38,41.921 +640059,348.43,42.534 +640060,350.43,43.127 +640061,343.05,41.195 +640062,345.13,41.891 +640063,347.17,42.564 +640064,349.15,43.216 +640065,341.81,41.104 +640066,343.89,41.862 +640067,345.91,42.595 +640068,347.87,43.304 +640069,340.57,41.013 +640070,342.64,41.833 +640071,344.64,42.626 +640072,346.59,43.392 +640073,339.34,40.922 +640074,341.39,41.804 +640075,343.38,42.656 +640076,345.3,43.48 +640077,338.1,40.832 +640078,340.14,41.775 +640079,342.11,42.686 +640080,344.02,43.566 +640081,336.87,40.743 +640082,338.9,41.747 +640083,340.84,42.716 +640084,342.73,43.652 +640085,335.64,40.654 +640086,337.65,41.719 +640087,339.58,42.746 +640088,341.44,43.737 +640089,334.41,40.566 +640090,336.4,41.692 +640091,338.31,42.776 +640092,340.14,43.821 +640093,333.19,40.478 +640094,335.16,41.664 +640095,337.04,42.805 +640096,338.85,43.904 +640097,331.97,40.392 +640098,333.91,41.637 +640099,335.77,42.834 +640100,337.56,43.986 +640101,330.74,40.306 +640102,332.67,41.611 +640103,334.51,42.863 +640104,336.26,44.068 +640105,329.53,40.222 +640106,331.43,41.585 +640107,333.24,42.892 +640108,334.96,44.148 +640109,328.31,40.138 +640110,330.18,41.559 +640111,331.97,42.921 +640112,333.66,44.228 +640113,327.09,40.055 +640114,328.94,41.534 +640115,330.69,42.949 +640116,332.36,44.306 +640117,325.88,39.974 +640118,327.7,41.509 +640119,329.42,42.977 +640120,331.06,44.383 +640121,324.67,39.893 +640122,326.46,41.485 +640123,328.15,43.005 +640124,329.76,44.459 +640125,323.46,39.814 +640126,325.22,41.461 +640127,326.88,43.032 +640128,328.45,44.534 +640129,322.25,39.735 +640130,323.98,41.438 +640131,325.61,43.059 +640132,327.15,44.608 +640133,321.04,39.658 +640134,322.74,41.415 +640135,324.33,43.086 +640136,325.84,44.681 +640137,319.84,39.583 +640138,321.5,41.393 +640139,323.06,43.112 +640140,324.53,44.752 +640141,318.64,39.508 +640142,320.26,41.371 +640143,321.79,43.138 +640144,323.22,44.822 +640145,317.44,39.435 +640146,319.03,41.35 +640147,320.51,43.164 +640148,321.91,44.891 +640149,316.24,39.364 +640150,317.79,41.329 +640151,319.24,43.189 +640152,320.6,44.958 +640153,315.04,39.294 +640154,316.55,41.309 +640155,317.96,43.214 +640156,319.28,45.024 +640157,313.84,39.226 +640158,315.32,41.289 +640159,316.69,43.239 +640160,317.97,45.089 +640161,312.65,39.159 +640162,314.08,41.27 +640163,315.41,43.263 +640164,316.65,45.152 +640165,311.46,39.093 +640166,312.85,41.252 +640167,314.13,43.286 +640168,315.34,45.214 +640169,310.27,39.03 +640170,311.61,41.234 +640171,312.86,43.309 +640172,314.02,45.275 +640173,309.08,38.968 +640174,310.38,41.217 +640175,311.58,43.332 +640176,312.7,45.334 +640177,307.89,38.908 +640178,309.14,41.2 +640179,310.3,43.355 +640180,311.38,45.391 +640181,306.7,38.85 +640182,307.91,41.185 +640183,309.02,43.377 +640184,310.06,45.447 +640185,305.52,38.793 +640186,306.67,41.169 +640187,307.74,43.398 +640188,308.74,45.502 +640189,304.33,38.738 +640190,305.44,41.155 +640191,306.46,43.419 +640192,307.42,45.555 +640193,303.15,38.686 +640194,304.21,41.141 +640195,305.19,43.439 +640196,306.1,45.606 +640197,301.97,38.635 +640198,302.98,41.128 +640199,303.91,43.459 +640200,304.78,45.655 +640201,300.79,38.586 +640202,301.74,41.116 +640203,302.63,43.479 +640204,303.45,45.704 +640205,299.61,38.539 +640206,300.51,41.104 +640207,301.35,43.498 +640208,302.13,45.75 +640209,298.43,38.495 +640210,299.28,41.093 +640211,300.07,43.516 +640212,300.8,45.795 +640213,297.25,38.452 +640214,298.05,41.083 +640215,298.79,43.534 +640216,299.48,45.838 +640217,296.08,38.412 +640218,296.82,41.073 +640219,297.5,43.552 +640220,298.15,45.879 +640221,294.9,38.373 +640222,295.59,41.064 +640223,296.22,43.569 +640224,296.82,45.919 +640225,293.73,38.337 +640226,294.36,41.056 +640227,294.94,43.585 +640228,295.5,45.957 +640229,292.55,38.303 +640230,293.13,41.049 +640231,293.66,43.601 +640232,294.17,45.993 +640233,291.38,38.271 +640234,291.9,41.042 +640235,292.38,43.616 +640236,292.84,46.028 +640237,290.21,38.242 +640238,290.67,41.037 +640239,291.1,43.631 +640240,291.51,46.061 +640241,289.04,38.215 +640242,289.44,41.032 +640243,289.82,43.645 +640244,290.18,46.092 +640245,287.87,38.19 +640246,288.21,41.027 +640247,288.53,43.658 +640248,288.85,46.121 +640249,286.7,38.167 +640250,286.98,41.024 +640251,287.25,43.671 +640252,287.52,46.149 +640253,285.53,38.147 +640254,285.75,41.021 +640255,285.97,43.684 +640256,286.19,46.175 +640257,284.36,38.129 +640258,284.52,41.02 +640259,284.69,43.696 +640260,284.86,46.199 +640261,283.19,38.113 +640262,283.29,41.018 +640263,283.4,43.707 +640264,283.53,46.221 +640265,282.02,38.1 +640266,282.06,41.018 +640267,282.12,43.718 +640268,282.2,46.241 +640269,280.85,38.09 +640270,280.83,41.019 +640271,280.84,43.728 +640272,280.87,46.26 +640273,279.68,38.081 +640274,279.6,41.02 +640275,279.56,43.738 +640276,279.54,46.276 +640277,278.51,38.075 +640278,278.37,41.022 +640279,278.27,43.747 +640280,278.21,46.291 +640281,277.34,38.072 +640282,277.14,41.025 +640283,276.99,43.755 +640284,276.88,46.304 +640285,276.17,38.071 +640286,275.91,41.029 +640287,275.71,43.763 +640288,275.55,46.316 +640289,275,38.072 +640290,274.68,41.034 +640291,274.43,43.77 +640292,274.22,46.325 +640293,273.83,38.076 +640294,273.45,41.039 +640295,273.14,43.777 +640296,272.89,46.333 +640297,272.66,38.082 +640298,272.22,41.045 +640299,271.86,43.783 +640300,271.56,46.339 +640301,271.49,38.091 +640302,270.99,41.052 +640303,270.58,43.788 +640304,270.23,46.343 +640305,270.32,38.102 +640306,269.76,41.06 +640307,269.3,43.793 +640308,268.9,46.345 +640309,269.15,38.116 +640310,268.53,41.069 +640311,268.01,43.797 +640312,267.57,46.345 +640313,267.98,38.132 +640314,267.3,41.079 +640315,266.73,43.801 +640316,266.24,46.344 +640317,266.81,38.15 +640318,266.07,41.089 +640319,265.45,43.804 +640320,264.91,46.34 +640321,265.63,38.171 +640322,264.84,41.1 +640323,264.17,43.807 +640324,263.58,46.335 +640325,264.46,38.194 +640326,263.61,41.112 +640327,262.88,43.809 +640328,262.26,46.328 +640329,263.28,38.22 +640330,262.37,41.124 +640331,261.6,43.81 +640332,260.93,46.32 +640333,262.11,38.248 +640334,261.14,41.138 +640335,260.32,43.811 +640336,259.6,46.309 +640337,260.93,38.278 +640338,259.91,41.152 +640339,259.04,43.811 +640340,258.28,46.297 +640341,259.75,38.311 +640342,258.68,41.167 +640343,257.76,43.811 +640344,256.95,46.283 +640345,258.57,38.346 +640346,257.44,41.183 +640347,256.48,43.81 +640348,255.62,46.267 +640349,257.39,38.383 +640350,256.21,41.2 +640351,255.2,43.809 +640352,254.3,46.249 +640353,256.21,38.423 +640354,254.98,41.217 +640355,253.91,43.807 +640356,252.97,46.23 +640357,255.03,38.465 +640358,253.74,41.235 +640359,252.63,43.804 +640360,251.65,46.209 +640361,253.84,38.509 +640362,252.51,41.254 +640363,251.35,43.801 +640364,250.33,46.186 +640365,252.66,38.555 +640366,251.28,41.274 +640367,250.07,43.798 +640368,249.01,46.162 +640369,251.47,38.604 +640370,250.04,41.294 +640371,248.79,43.793 +640372,247.68,46.136 +640373,250.28,38.654 +640374,248.81,41.315 +640375,247.52,43.789 +640376,246.36,46.108 +640377,249.09,38.707 +640378,247.57,41.337 +640379,246.24,43.784 +640380,245.04,46.078 +640381,247.9,38.762 +640382,246.33,41.36 +640383,244.96,43.778 +640384,243.73,46.047 +640385,246.71,38.819 +640386,245.1,41.383 +640387,243.68,43.772 +640388,242.41,46.015 +640389,245.51,38.878 +640390,243.86,41.407 +640391,242.4,43.765 +640392,241.09,45.98 +640393,244.31,38.938 +640394,242.62,41.432 +640395,241.12,43.758 +640396,239.77,45.944 +640397,243.12,39.001 +640398,241.38,41.457 +640399,239.85,43.75 +640400,238.46,45.907 +640401,241.92,39.066 +640402,240.14,41.483 +640403,238.57,43.742 +640404,237.15,45.868 +640405,240.71,39.133 +640406,238.9,41.51 +640407,237.29,43.733 +640408,235.83,45.827 +640409,239.51,39.201 +640410,237.66,41.537 +640411,236.02,43.724 +640412,234.52,45.785 +640413,238.31,39.271 +640414,236.42,41.565 +640415,234.74,43.714 +640416,233.21,45.741 +640417,237.1,39.343 +640418,235.18,41.594 +640419,233.47,43.704 +640420,231.9,45.696 +640421,235.89,39.417 +640422,233.94,41.623 +640423,232.19,43.694 +640424,230.59,45.65 +640425,234.68,39.492 +640426,232.7,41.653 +640427,230.92,43.683 +640428,229.29,45.602 +640429,233.46,39.569 +640430,231.46,41.684 +640431,229.64,43.672 +640432,227.98,45.552 +640433,232.25,39.648 +640434,230.21,41.715 +640435,228.37,43.66 +640436,226.68,45.501 +640437,231.03,39.728 +640438,228.97,41.746 +640439,227.1,43.648 +640440,225.37,45.449 +640441,229.81,39.81 +640442,227.72,41.779 +640443,225.82,43.635 +640444,224.07,45.396 +640445,228.59,39.893 +640446,226.48,41.811 +640447,224.55,43.623 +640448,222.77,45.341 +640449,227.37,39.977 +640450,225.23,41.845 +640451,223.28,43.609 +640452,221.47,45.285 +640453,226.14,40.063 +640454,223.98,41.878 +640455,222.01,43.596 +640456,220.17,45.228 +640457,224.91,40.15 +640458,222.74,41.913 +640459,220.74,43.582 +640460,218.88,45.17 +640461,223.68,40.238 +640462,221.49,41.947 +640463,219.47,43.568 +640464,217.58,45.11 +640465,222.45,40.328 +640466,220.24,41.983 +640467,218.2,43.553 +640468,216.29,45.049 +640469,221.22,40.419 +640470,218.99,42.018 +640471,216.93,43.538 +640472,215,44.987 +640473,219.98,40.511 +640474,217.74,42.055 +640475,215.66,43.523 +640476,213.71,44.924 +640477,218.74,40.603 +640478,216.49,42.091 +640479,214.39,43.508 +640480,212.42,44.86 +640481,217.5,40.697 +640482,215.24,42.128 +640483,213.12,43.492 +640484,211.13,44.795 +640485,216.26,40.792 +640486,213.99,42.166 +640487,211.86,43.476 +640488,209.85,44.729 +640489,215.02,40.888 +640490,212.73,42.203 +640491,210.59,43.46 +640492,208.56,44.662 +640493,213.77,40.985 +640494,211.48,42.242 +640495,209.32,43.443 +640496,207.28,44.594 +640497,212.52,41.082 +640498,210.23,42.28 +640499,208.06,43.426 +640500,206,44.526 +640501,211.27,41.18 +640502,208.97,42.319 +640503,206.79,43.41 +640504,204.72,44.456 +640505,210.02,41.279 +640506,207.72,42.358 +640507,205.53,43.392 +640508,203.45,44.386 +640509,208.76,41.379 +640510,206.46,42.398 +640511,204.27,43.375 +640512,202.17,44.314 +640513,207.5,41.479 +640514,205.2,42.437 +640515,203,43.358 +640516,200.9,44.243 +640517,206.25,41.579 +640518,203.94,42.478 +640519,201.74,43.34 +640520,199.63,44.17 +640521,204.98,41.681 +640522,202.68,42.518 +640523,200.48,43.323 +640524,198.36,44.097 +640525,203.72,41.782 +640526,201.43,42.559 +640527,199.22,43.305 +640528,197.09,44.023 +640529,202.46,41.884 +640530,200.17,42.599 +640531,197.96,43.287 +640532,195.82,43.948 +640533,201.19,41.987 +640534,198.9,42.64 +640535,196.7,43.269 +640536,194.56,43.873 +640537,199.92,42.09 +640538,197.64,42.682 +640539,195.44,43.251 +640540,193.3,43.798 +640541,198.65,42.193 +640542,196.38,42.723 +640543,194.18,43.233 +640544,192.04,43.722 +640545,197.37,42.296 +640546,195.12,42.765 +640547,192.92,43.214 +640548,190.78,43.645 +640549,196.1,42.399 +640550,193.85,42.807 +640551,191.66,43.196 +640552,189.52,43.569 +640553,194.82,42.503 +640554,192.59,42.848 +640555,190.41,43.178 +640556,188.27,43.492 +640557,193.54,42.606 +640558,191.33,42.891 +640559,189.15,43.16 +640560,187.01,43.414 +640561,192.26,42.71 +640562,190.06,42.933 +640563,187.89,43.141 +640564,185.76,43.337 +640565,190.98,42.813 +640566,188.79,42.975 +640567,186.64,43.123 +640568,184.51,43.259 +640569,189.69,42.917 +640570,187.53,43.017 +640571,185.38,43.105 +640572,183.27,43.181 +640573,188.4,43.02 +640574,186.26,43.06 +640575,184.13,43.087 +640576,182.02,43.103 +640577,187.12,43.123 +640578,184.99,43.102 +640579,182.88,43.069 +640580,180.78,43.025 +640581,185.83,43.226 +640582,183.72,43.144 +640583,181.62,43.051 +640584,179.54,42.947 +640585,184.53,43.329 +640586,182.45,43.187 +640587,180.37,43.033 +640588,178.3,42.868 +640589,183.24,43.431 +640590,181.18,43.229 +640591,179.12,43.015 +640592,177.06,42.79 +640593,181.94,43.533 +640594,179.91,43.272 +640595,177.87,42.998 +640596,175.82,42.712 +640597,180.65,43.635 +640598,178.64,43.314 +640599,176.62,42.98 +640600,174.59,42.635 +640601,179.35,43.736 +640602,177.36,43.356 +640603,175.37,42.963 +640604,173.36,42.557 +640605,178.05,43.837 +640606,176.09,43.399 +640607,174.12,42.946 +640608,172.13,42.48 +640609,176.74,43.937 +640610,174.82,43.441 +640611,172.87,42.929 +640612,170.9,42.403 +640613,175.44,44.037 +640614,173.54,43.483 +640615,171.62,42.913 +640616,169.68,42.326 +640617,174.14,44.136 +640618,172.27,43.525 +640619,170.37,42.896 +640620,168.45,42.25 +640621,172.83,44.234 +640622,170.99,43.567 +640623,169.13,42.88 +640624,167.23,42.174 +640625,171.52,44.332 +640626,169.72,43.609 +640627,167.88,42.864 +640628,166.01,42.099 +640629,170.21,44.429 +640630,168.44,43.65 +640631,166.63,42.848 +640632,164.79,42.024 +640633,168.9,44.525 +640634,167.16,43.692 +640635,165.39,42.833 +640636,163.57,41.95 +640637,167.59,44.621 +640638,165.88,43.733 +640639,164.14,42.818 +640640,162.36,41.876 +640641,166.27,44.715 +640642,164.61,43.774 +640643,162.9,42.803 +640644,161.15,41.803 +640645,164.96,44.809 +640646,163.33,43.815 +640647,161.65,42.789 +640648,159.94,41.731 +640649,163.64,44.902 +640650,162.05,43.855 +640651,160.41,42.775 +640652,158.73,41.66 +640653,162.32,44.994 +640654,160.77,43.896 +640655,159.17,42.761 +640656,157.52,41.589 +640657,161,45.085 +640658,159.49,43.936 +640659,157.92,42.748 +640660,156.31,41.52 +640661,159.68,45.175 +640662,158.21,43.975 +640663,156.68,42.735 +640664,155.11,41.451 +640665,158.36,45.264 +640666,156.92,44.015 +640667,155.44,42.722 +640668,153.91,41.383 +640669,157.04,45.352 +640670,155.64,44.054 +640671,154.2,42.71 +640672,152.71,41.316 +640673,155.72,45.438 +640674,154.36,44.093 +640675,152.96,42.699 +640676,151.51,41.251 +640677,154.39,45.524 +640678,153.08,44.132 +640679,151.72,42.687 +640680,150.31,41.186 +640681,153.06,45.608 +640682,151.79,44.17 +640683,150.48,42.677 +640684,149.11,41.122 +640685,151.74,45.692 +640686,150.51,44.208 +640687,149.24,42.666 +640688,147.92,41.06 +640689,150.41,45.774 +640690,149.22,44.246 +640691,148,42.656 +640692,146.73,40.999 +640693,149.08,45.854 +640694,147.94,44.283 +640695,146.76,42.647 +640696,145.53,40.939 +640697,147.75,45.934 +640698,146.65,44.32 +640699,145.52,42.638 +640700,144.34,40.881 +640701,146.42,46.012 +640702,145.37,44.357 +640703,144.28,42.63 +640704,143.15,40.824 +640705,145.09,46.089 +640706,144.08,44.393 +640707,143.04,42.622 +640708,141.97,40.768 +640709,143.76,46.164 +640710,142.8,44.429 +640711,141.8,42.615 +640712,140.78,40.714 +640713,142.42,46.238 +640714,141.51,44.464 +640715,140.57,42.608 +640716,139.6,40.661 +640717,141.09,46.311 +640718,140.22,44.499 +640719,139.33,42.602 +640720,138.41,40.61 +640721,139.76,46.382 +640722,138.93,44.533 +640723,138.09,42.597 +640724,137.23,40.56 +640725,138.42,46.452 +640726,137.65,44.568 +640727,136.86,42.592 +640728,136.05,40.512 +640729,137.09,46.52 +640730,136.36,44.601 +640731,135.62,42.588 +640732,134.87,40.466 +640733,135.75,46.587 +640734,135.07,44.634 +640735,134.38,42.584 +640736,133.69,40.421 +640737,134.41,46.652 +640738,133.78,44.667 +640739,133.15,42.581 +640740,132.51,40.378 +640741,133.08,46.716 +640742,132.49,44.699 +640743,131.91,42.578 +640744,131.33,40.337 +640745,131.74,46.778 +640746,131.2,44.731 +640747,130.67,42.577 +640748,130.15,40.298 +640749,130.4,46.839 +640750,129.91,44.762 +640751,129.44,42.575 +640752,128.98,40.26 +640753,129.06,46.898 +640754,128.62,44.793 +640755,128.2,42.575 +640756,127.8,40.225 +640757,127.72,46.956 +640758,127.33,44.823 +640759,126.97,42.575 +640760,126.63,40.191 +640761,126.38,47.011 +640762,126.04,44.853 +640763,125.73,42.576 +640764,125.45,40.159 +640765,125.04,47.066 +640766,124.75,44.882 +640767,124.5,42.577 +640768,124.28,40.129 +640769,123.7,47.118 +640770,123.46,44.911 +640771,123.26,42.579 +640772,123.1,40.101 +640773,122.36,47.169 +640774,122.17,44.939 +640775,122.03,42.582 +640776,121.93,40.075 +640777,121.02,47.218 +640778,120.88,44.967 +640779,120.79,42.586 +640780,120.76,40.051 +640781,119.68,47.266 +640782,119.59,44.994 +640783,119.55,42.59 +640784,119.58,40.029 +640785,118.34,47.311 +640786,118.3,45.021 +640787,118.32,42.595 +640788,118.41,40.01 +640789,117,47.356 +640790,117.01,45.047 +640791,117.08,42.601 +640792,117.24,39.992 +640793,115.66,47.398 +640794,115.72,45.072 +640795,115.85,42.607 +640796,116.07,39.977 +640797,114.32,47.439 +640798,114.43,45.097 +640799,114.61,42.615 +640800,114.89,39.963 +640801,112.98,47.477 +640802,113.14,45.121 +640803,113.38,42.622 +640804,113.72,39.952 +640805,111.64,47.515 +640806,111.85,45.145 +640807,112.14,42.631 +640808,112.55,39.943 +640809,110.3,47.55 +640810,110.56,45.168 +640811,110.91,42.64 +640812,111.38,39.936 +640813,108.95,47.584 +640814,109.26,45.191 +640815,109.67,42.651 +640816,110.2,39.932 +640817,107.61,47.616 +640818,107.97,45.213 +640819,108.43,42.661 +640820,109.03,39.929 +640821,106.27,47.646 +640822,106.68,45.235 +640823,107.2,42.673 +640824,107.86,39.929 +640825,104.93,47.674 +640826,105.39,45.256 +640827,105.96,42.685 +640828,106.68,39.931 +640829,103.59,47.701 +640830,104.1,45.276 +640831,104.72,42.699 +640832,105.51,39.936 +640833,102.25,47.726 +640834,102.81,45.296 +640835,103.49,42.712 +640836,104.33,39.942 +640837,100.92,47.749 +640838,101.52,45.315 +640839,102.25,42.727 +640840,103.15,39.951 +640841,99.577,47.77 +640842,100.23,45.334 +640843,101.01,42.742 +640844,101.98,39.962 +640845,98.238,47.789 +640846,98.936,45.352 +640847,99.773,42.759 +640848,100.8,39.976 +640849,96.9,47.807 +640850,97.646,45.369 +640851,98.535,42.775 +640852,99.621,39.992 +640853,95.563,47.823 +640854,96.355,45.386 +640855,97.297,42.793 +640856,98.441,40.01 +640857,94.226,47.837 +640858,95.065,45.402 +640859,96.058,42.811 +640860,97.26,40.03 +640861,92.889,47.85 +640862,93.775,45.418 +640863,94.818,42.831 +640864,96.078,40.053 +640865,91.553,47.86 +640866,92.485,45.433 +640867,93.579,42.851 +640868,94.895,40.077 +640869,90.218,47.869 +640870,91.195,45.448 +640871,92.339,42.871 +640872,93.711,40.104 +640873,88.883,47.876 +640874,89.905,45.462 +640875,91.098,42.893 +640876,92.525,40.134 +640877,87.549,47.882 +640878,88.616,45.476 +640879,89.858,42.915 +640880,91.339,40.165 +640881,86.216,47.885 +640882,87.327,45.488 +640883,88.616,42.938 +640884,90.15,40.199 +640885,84.883,47.887 +640886,86.038,45.501 +640887,87.375,42.961 +640888,88.961,40.235 +640889,83.552,47.888 +640890,84.749,45.513 +640891,86.133,42.986 +640892,87.77,40.273 +640893,82.221,47.886 +640894,83.461,45.524 +640895,84.89,43.011 +640896,86.577,40.314 +640897,80.891,47.883 +640898,82.172,45.534 +640899,83.647,43.036 +640900,85.383,40.356 +640901,79.561,47.878 +640902,80.884,45.545 +640903,82.403,43.063 +640904,84.187,40.401 +640905,78.233,47.871 +640906,79.597,45.554 +640907,81.159,43.09 +640908,82.99,40.448 +640909,76.906,47.863 +640910,78.31,45.563 +640911,79.914,43.118 +640912,81.79,40.497 +640913,75.579,47.853 +640914,77.023,45.572 +640915,78.669,43.147 +640916,80.589,40.548 +640917,74.254,47.842 +640918,75.736,45.58 +640919,77.423,43.176 +640920,79.386,40.601 +640921,72.929,47.829 +640922,74.45,45.587 +640923,76.177,43.206 +640924,78.182,40.656 +640925,71.606,47.814 +640926,73.164,45.594 +640927,74.93,43.237 +640928,76.975,40.713 +640929,70.284,47.798 +640930,71.878,45.6 +640931,73.682,43.268 +640932,75.767,40.772 +640933,68.962,47.78 +640934,70.593,45.606 +640935,72.434,43.3 +640936,74.556,40.833 +640937,67.642,47.76 +640938,69.308,45.612 +640939,71.185,43.333 +640940,73.344,40.896 +640941,66.323,47.739 +640942,68.024,45.617 +640943,69.936,43.366 +640944,72.129,40.961 +640945,65.006,47.716 +640946,66.74,45.621 +640947,68.686,43.4 +640948,70.913,41.028 +640949,63.689,47.692 +640950,65.456,45.625 +640951,67.435,43.434 +640952,69.694,41.097 +640953,62.374,47.667 +640954,64.173,45.629 +640955,66.183,43.47 +640956,68.473,41.167 +640957,61.06,47.64 +640958,62.89,45.632 +640959,64.931,43.505 +640960,67.251,41.239 +640961,59.748,47.611 +640962,61.608,45.634 +640963,63.679,43.542 +640964,66.026,41.313 +640965,58.437,47.581 +640966,60.326,45.636 +640967,62.425,43.579 +640968,64.798,41.389 +640969,57.127,47.55 +640970,59.044,45.638 +640971,61.171,43.616 +640972,63.569,41.466 +640973,55.818,47.517 +640974,57.763,45.639 +640975,59.916,43.655 +640976,62.337,41.545 +640977,54.511,47.483 +640978,56.483,45.64 +640979,58.661,43.693 +640980,61.104,41.625 +640981,53.206,47.448 +640982,55.203,45.64 +640983,57.404,43.732 +640984,59.868,41.707 +640985,51.902,47.411 +640986,53.923,45.64 +640987,56.147,43.772 +640988,58.629,41.79 +640989,50.599,47.373 +640990,52.644,45.64 +640991,54.889,43.812 +640992,57.389,41.875 +640993,49.298,47.334 +640994,51.366,45.639 +640995,53.631,43.853 +640996,56.146,41.961 +640997,47.999,47.294 +640998,50.088,45.638 +640999,52.372,43.895 +641000,54.901,42.049 +641001,46.701,47.252 +641002,48.81,45.637 +641003,51.112,43.936 +641004,53.654,42.138 +641005,45.404,47.209 +641006,47.533,45.635 +641007,49.851,43.979 +641008,52.404,42.228 +641009,44.109,47.165 +641010,46.257,45.633 +641011,48.59,44.021 +641012,51.152,42.319 +641013,42.816,47.12 +641014,44.981,45.63 +641015,47.327,44.064 +641016,49.898,42.412 +641017,41.525,47.074 +641018,43.706,45.627 +641019,46.064,44.108 +641020,48.642,42.506 +641021,40.235,47.027 +641022,42.431,45.624 +641023,44.801,44.152 +641024,47.383,42.601 +641025,38.947,46.979 +641026,41.157,45.621 +641027,43.536,44.196 +641028,46.123,42.697 +641029,37.661,46.93 +641030,39.883,45.617 +641031,42.271,44.241 +641032,44.859,42.794 +641033,36.376,46.879 +641034,38.61,45.613 +641035,41.005,44.286 +641036,43.594,42.891 +641037,35.093,46.828 +641038,37.337,45.609 +641039,39.738,44.332 +641040,42.326,42.99 +641041,33.812,46.776 +641042,36.065,45.604 +641043,38.47,44.378 +641044,41.057,43.09 +641045,32.532,46.724 +641046,34.794,45.599 +641047,37.202,44.424 +641048,39.785,43.19 +641049,31.255,46.67 +641050,33.523,45.595 +641051,35.933,44.47 +641052,38.51,43.292 +641053,29.979,46.616 +641054,32.253,45.589 +641055,34.663,44.517 +641056,37.234,43.394 +641057,28.705,46.56 +641058,30.983,45.584 +641059,33.392,44.564 +641060,35.956,43.496 +641061,27.433,46.505 +641062,29.714,45.578 +641063,32.121,44.612 +641064,34.675,43.599 +641065,26.163,46.448 +641066,28.445,45.573 +641067,30.848,44.659 +641068,33.392,43.703 +641069,24.894,46.391 +641070,27.177,45.567 +641071,29.575,44.707 +641072,32.107,43.808 +641073,23.627,46.333 +641074,25.91,45.561 +641075,28.302,44.755 +641076,30.82,43.912 +641077,22.363,46.275 +641078,24.643,45.555 +641079,27.027,44.804 +641080,29.531,44.018 +641081,21.1,46.216 +641082,23.376,45.549 +641083,25.752,44.852 +641084,28.24,44.123 +641085,19.839,46.156 +641086,22.111,45.542 +641087,24.476,44.901 +641088,26.947,44.23 +641089,18.58,46.096 +641090,20.846,45.536 +641091,23.199,44.95 +641092,25.652,44.336 +641093,17.323,46.036 +641094,19.581,45.529 +641095,21.922,44.999 +641096,24.355,44.442 +641097,16.067,45.975 +641098,18.317,45.523 +641099,20.644,45.048 +641100,23.055,44.549 +641101,14.814,45.914 +641102,17.054,45.516 +641103,19.365,45.097 +641104,21.754,44.656 +641105,13.562,45.853 +641106,15.791,45.509 +641107,18.085,45.147 +641108,20.452,44.763 +641109,12.313,45.792 +641110,14.529,45.503 +641111,16.805,45.196 +641112,19.147,44.87 +641113,11.065,45.73 +641114,13.267,45.496 +641115,15.523,45.246 +641116,17.84,44.978 +641117,9.8194,45.668 +641118,12.006,45.489 +641119,14.242,45.296 +641120,16.532,45.085 +641121,8.5755,45.606 +641122,10.745,45.483 +641123,12.959,45.345 +641124,15.222,45.192 +641125,7.3335,45.544 +641126,9.485,45.476 +641127,11.676,45.395 +641128,13.91,45.299 +641129,6.0935,45.482 +641130,8.2255,45.47 +641131,10.392,45.445 +641132,12.596,45.406 +641133,4.8553,45.419 +641134,6.9665,45.463 +641135,9.1075,45.495 +641136,11.281,45.512 +641137,3.6189,45.357 +641138,5.708,45.457 +641139,7.8223,45.544 +641140,9.9637,45.618 +641141,2.3845,45.295 +641142,4.4501,45.451 +641143,6.5364,45.594 +641144,8.645,45.725 +641145,1.1519,45.233 +641146,3.1927,45.444 +641147,5.2499,45.644 +641148,7.3247,45.83 +641149,359.92,45.172 +641150,1.9359,45.438 +641151,3.9627,45.693 +641152,6.0029,45.936 +641153,358.69,45.11 +641154,0.6795,45.432 +641155,2.6749,45.743 +641156,4.6795,46.041 +641157,357.47,45.049 +641158,359.42,45.427 +641159,1.3864,45.793 +641160,3.3546,46.145 +641161,356.24,44.988 +641162,358.17,45.421 +641163,0.097399,45.842 +641164,2.0283,46.249 +641165,355.02,44.927 +641166,356.91,45.416 +641167,358.81,45.891 +641168,0.70051,46.353 +641169,353.79,44.867 +641170,355.66,45.41 +641171,357.52,45.94 +641172,359.37,46.456 +641173,352.57,44.807 +641174,354.41,45.405 +641175,356.23,45.989 +641176,358.04,46.558 +641177,351.36,44.747 +641178,353.15,45.401 +641179,354.94,46.038 +641180,356.71,46.66 +641181,350.14,44.688 +641182,351.9,45.396 +641183,353.64,46.087 +641184,355.38,46.761 +641185,348.93,44.63 +641186,350.65,45.392 +641187,352.35,46.136 +641188,354.04,46.861 +641189,347.71,44.572 +641190,349.39,45.388 +641191,351.06,46.184 +641192,352.71,46.961 +641193,346.5,44.515 +641194,348.14,45.384 +641195,349.76,46.232 +641196,351.37,47.059 +641197,345.29,44.458 +641198,346.89,45.38 +641199,348.47,46.28 +641200,350.03,47.157 +641201,344.08,44.403 +641202,345.64,45.377 +641203,347.18,46.328 +641204,348.69,47.254 +641205,342.88,44.348 +641206,344.39,45.374 +641207,345.88,46.375 +641208,347.35,47.35 +641209,341.67,44.294 +641210,343.14,45.372 +641211,344.58,46.422 +641212,346.01,47.446 +641213,340.47,44.24 +641214,341.89,45.37 +641215,343.29,46.469 +641216,344.67,47.54 +641217,339.26,44.188 +641218,340.64,45.368 +641219,341.99,46.516 +641220,343.32,47.633 +641221,338.06,44.136 +641222,339.39,45.366 +641223,340.7,46.562 +641224,341.98,47.726 +641225,336.86,44.086 +641226,338.14,45.365 +641227,339.4,46.608 +641228,340.63,47.817 +641229,335.67,44.036 +641230,336.89,45.364 +641231,338.1,46.654 +641232,339.29,47.907 +641233,334.47,43.988 +641234,335.64,45.364 +641235,336.8,46.7 +641236,337.94,47.996 +641237,333.27,43.94 +641238,334.4,45.364 +641239,335.5,46.745 +641240,336.59,48.084 +641241,332.08,43.894 +641242,333.15,45.365 +641243,334.2,46.79 +641244,335.25,48.171 +641245,330.89,43.849 +641246,331.9,45.366 +641247,332.9,46.834 +641248,333.9,48.256 +641249,329.69,43.805 +641250,330.65,45.367 +641251,331.61,46.878 +641252,332.55,48.34 +641253,328.5,43.762 +641254,329.41,45.369 +641255,330.31,46.922 +641256,331.2,48.423 +641257,327.31,43.721 +641258,328.16,45.371 +641259,329,46.965 +641260,329.84,48.505 +641261,326.12,43.681 +641262,326.91,45.374 +641263,327.7,47.008 +641264,328.49,48.586 +641265,324.94,43.642 +641266,325.67,45.378 +641267,326.4,47.05 +641268,327.14,48.665 +641269,323.75,43.605 +641270,324.42,45.381 +641271,325.1,47.092 +641272,325.79,48.743 +641273,322.56,43.569 +641274,323.18,45.386 +641275,323.8,47.134 +641276,324.43,48.819 +641277,321.38,43.535 +641278,321.93,45.391 +641279,322.5,47.175 +641280,323.08,48.894 +641281,320.19,43.502 +641282,320.68,45.396 +641283,321.2,47.216 +641284,321.73,48.968 +641285,319.01,43.47 +641286,319.44,45.402 +641287,319.89,47.256 +641288,320.37,49.04 +641289,317.83,43.44 +641290,318.19,45.409 +641291,318.59,47.296 +641292,319.02,49.111 +641293,316.64,43.412 +641294,316.95,45.416 +641295,317.29,47.335 +641296,317.66,49.18 +641297,315.46,43.386 +641298,315.7,45.423 +641299,315.99,47.374 +641300,316.31,49.248 +641301,314.28,43.361 +641302,314.46,45.431 +641303,314.68,47.413 +641304,314.95,49.314 +641305,313.1,43.337 +641306,313.21,45.44 +641307,313.38,47.451 +641308,313.59,49.379 +641309,311.92,43.316 +641310,311.97,45.449 +641311,312.08,47.488 +641312,312.24,49.442 +641313,310.73,43.296 +641314,310.72,45.459 +641315,310.77,47.525 +641316,310.88,49.504 +641317,309.55,43.278 +641318,309.47,45.47 +641319,309.47,47.562 +641320,309.52,49.564 +641321,308.37,43.261 +641322,308.23,45.481 +641323,308.17,47.598 +641324,308.17,49.623 +641325,307.19,43.247 +641326,306.98,45.493 +641327,306.86,47.633 +641328,306.81,49.68 +641329,306.01,43.234 +641330,305.74,45.505 +641331,305.56,47.668 +641332,305.46,49.735 +641333,304.83,43.223 +641334,304.49,45.518 +641335,304.25,47.702 +641336,304.1,49.789 +641337,303.65,43.214 +641338,303.25,45.532 +641339,302.95,47.736 +641340,302.74,49.841 +641341,302.47,43.207 +641342,302,45.546 +641343,301.65,47.769 +641344,301.39,49.892 +641345,301.29,43.202 +641346,300.75,45.561 +641347,300.34,47.802 +641348,300.03,49.94 +641349,300.11,43.198 +641350,299.51,45.577 +641351,299.04,47.835 +641352,298.67,49.988 +641353,298.92,43.197 +641354,298.26,45.593 +641355,297.74,47.866 +641356,297.32,50.033 +641357,297.74,43.198 +641358,297.01,45.61 +641359,296.43,47.897 +641360,295.96,50.077 +641361,296.56,43.2 +641362,295.77,45.627 +641363,295.13,47.928 +641364,294.61,50.12 +641365,295.38,43.205 +641366,294.52,45.646 +641367,293.82,47.958 +641368,293.25,50.16 +641369,294.19,43.211 +641370,293.27,45.664 +641371,292.52,47.988 +641372,291.9,50.199 +641373,293.01,43.22 +641374,292.02,45.684 +641375,291.22,48.017 +641376,290.55,50.236 +641377,291.82,43.23 +641378,290.77,45.704 +641379,289.91,48.045 +641380,289.19,50.272 +641381,290.63,43.242 +641382,289.53,45.725 +641383,288.61,48.073 +641384,287.84,50.306 +641385,289.45,43.257 +641386,288.28,45.747 +641387,287.31,48.1 +641388,286.49,50.338 +641389,288.26,43.274 +641390,287.03,45.769 +641391,286,48.127 +641392,285.14,50.368 +641393,287.07,43.292 +641394,285.78,45.792 +641395,284.7,48.153 +641396,283.78,50.397 +641397,285.88,43.313 +641398,284.53,45.815 +641399,283.4,48.179 +641400,282.43,50.424 +641401,284.69,43.335 +641402,283.28,45.839 +641403,282.09,48.204 +641404,281.08,50.45 +641405,283.49,43.36 +641406,282.03,45.864 +641407,280.79,48.228 +641408,279.73,50.474 +641409,282.3,43.387 +641410,280.78,45.89 +641411,279.49,48.252 +641412,278.38,50.496 +641413,281.11,43.415 +641414,279.52,45.916 +641415,278.19,48.275 +641416,277.04,50.516 +641417,279.91,43.446 +641418,278.27,45.943 +641419,276.89,48.298 +641420,275.69,50.535 +641421,278.71,43.479 +641422,277.02,45.97 +641423,275.58,48.321 +641424,274.34,50.552 +641425,277.51,43.513 +641426,275.77,45.998 +641427,274.28,48.342 +641428,273,50.567 +641429,276.31,43.55 +641430,274.51,46.027 +641431,272.98,48.363 +641432,271.65,50.581 +641433,275.11,43.589 +641434,273.26,46.056 +641435,271.68,48.384 +641436,270.31,50.593 +641437,273.9,43.629 +641438,272,46.087 +641439,270.38,48.404 +641440,268.97,50.604 +641441,272.7,43.672 +641442,270.75,46.117 +641443,269.08,48.424 +641444,267.62,50.612 +641445,271.49,43.716 +641446,269.49,46.149 +641447,267.78,48.443 +641448,266.28,50.62 +641449,270.28,43.763 +641450,268.24,46.181 +641451,266.48,48.461 +641452,264.94,50.625 +641453,269.07,43.811 +641454,266.98,46.213 +641455,265.18,48.479 +641456,263.6,50.629 +641457,267.85,43.862 +641458,265.72,46.247 +641459,263.88,48.496 +641460,262.27,50.632 +641461,266.64,43.914 +641462,264.47,46.281 +641463,262.59,48.513 +641464,260.93,50.633 +641465,265.42,43.968 +641466,263.21,46.315 +641467,261.29,48.53 +641468,259.59,50.632 +641469,264.2,44.024 +641470,261.95,46.35 +641471,259.99,48.545 +641472,258.26,50.63 +641473,262.98,44.081 +641474,260.69,46.386 +641475,258.69,48.561 +641476,256.93,50.626 +641477,261.76,44.141 +641478,259.43,46.422 +641479,257.4,48.576 +641480,255.59,50.621 +641481,260.53,44.202 +641482,258.17,46.459 +641483,256.1,48.59 +641484,254.26,50.614 +641485,259.31,44.265 +641486,256.9,46.497 +641487,254.8,48.604 +641488,252.93,50.606 +641489,258.08,44.33 +641490,255.64,46.535 +641491,253.51,48.617 +641492,251.6,50.596 +641493,256.85,44.396 +641494,254.38,46.573 +641495,252.21,48.63 +641496,250.28,50.585 +641497,255.61,44.465 +641498,253.11,46.612 +641499,250.92,48.642 +641500,248.95,50.572 +641501,254.38,44.534 +641502,251.85,46.652 +641503,249.62,48.654 +641504,247.63,50.558 +641505,253.14,44.606 +641506,250.58,46.692 +641507,248.33,48.666 +641508,246.3,50.543 +641509,251.9,44.679 +641510,249.32,46.733 +641511,247.04,48.677 +641512,244.98,50.526 +641513,250.66,44.753 +641514,248.05,46.775 +641515,245.74,48.688 +641516,243.66,50.508 +641517,249.41,44.829 +641518,246.78,46.816 +641519,244.45,48.698 +641520,242.34,50.488 +641521,248.16,44.907 +641522,245.52,46.859 +641523,243.16,48.707 +641524,241.03,50.467 +641525,246.91,44.986 +641526,244.25,46.902 +641527,241.87,48.717 +641528,239.71,50.445 +641529,245.66,45.066 +641530,242.98,46.945 +641531,240.58,48.726 +641532,238.4,50.422 +641533,244.41,45.148 +641534,241.71,46.989 +641535,239.29,48.734 +641536,237.09,50.397 +641537,243.15,45.231 +641538,240.44,47.033 +641539,238,48.742 +641540,235.77,50.372 +641541,241.89,45.315 +641542,239.16,47.078 +641543,236.71,48.75 +641544,234.47,50.345 +641545,240.63,45.401 +641546,237.89,47.123 +641547,235.42,48.758 +641548,233.16,50.317 +641549,239.37,45.488 +641550,236.62,47.168 +641551,234.13,48.765 +641552,231.85,50.287 +641553,238.1,45.576 +641554,235.34,47.214 +641555,232.84,48.771 +641556,230.55,50.257 +641557,236.84,45.665 +641558,234.07,47.261 +641559,231.55,48.778 +641560,229.24,50.226 +641561,235.57,45.755 +641562,232.79,47.308 +641563,230.27,48.784 +641564,227.94,50.193 +641565,234.29,45.847 +641566,231.51,47.355 +641567,228.98,48.789 +641568,226.64,50.16 +641569,233.02,45.939 +641570,230.24,47.402 +641571,227.7,48.795 +641572,225.35,50.125 +641573,231.74,46.033 +641574,228.96,47.45 +641575,226.41,48.8 +641576,224.05,50.09 +641577,230.46,46.127 +641578,227.68,47.498 +641579,225.13,48.804 +641580,222.76,50.053 +641581,229.18,46.223 +641582,226.4,47.547 +641583,223.84,48.809 +641584,221.46,50.016 +641585,227.89,46.319 +641586,225.12,47.596 +641587,222.56,48.813 +641588,220.17,49.978 +641589,226.61,46.416 +641590,223.84,47.645 +641591,221.28,48.817 +641592,218.89,49.939 +641593,225.32,46.514 +641594,222.56,47.695 +641595,219.99,48.821 +641596,217.6,49.899 +641597,224.03,46.612 +641598,221.27,47.744 +641599,218.71,48.824 +641600,216.31,49.858 +641601,222.74,46.712 +641602,219.99,47.794 +641603,217.43,48.828 +641604,215.03,49.817 +641605,221.44,46.812 +641606,218.71,47.845 +641607,216.15,48.831 +641608,213.75,49.774 +641609,220.14,46.912 +641610,217.42,47.895 +641611,214.87,48.833 +641612,212.47,49.732 +641613,218.84,47.013 +641614,216.13,47.946 +641615,213.59,48.836 +641616,211.19,49.688 +641617,217.54,47.115 +641618,214.85,47.997 +641619,212.31,48.839 +641620,209.92,49.644 +641621,216.24,47.217 +641622,213.56,48.048 +641623,211.03,48.841 +641624,208.64,49.6 +641625,214.93,47.32 +641626,212.27,48.1 +641627,209.76,48.843 +641628,207.37,49.554 +641629,213.62,47.423 +641630,210.98,48.151 +641631,208.48,48.845 +641632,206.1,49.509 +641633,212.31,47.526 +641634,209.69,48.203 +641635,207.2,48.847 +641636,204.83,49.463 +641637,211,47.63 +641638,208.4,48.255 +641639,205.93,48.849 +641640,203.56,49.416 +641641,209.69,47.734 +641642,207.11,48.307 +641643,204.65,48.851 +641644,202.3,49.369 +641645,208.37,47.838 +641646,205.82,48.359 +641647,203.38,48.852 +641648,201.04,49.322 +641649,207.05,47.943 +641650,204.53,48.411 +641651,202.1,48.854 +641652,199.78,49.274 +641653,205.73,48.047 +641654,203.23,48.463 +641655,200.83,48.855 +641656,198.52,49.226 +641657,204.41,48.152 +641658,201.94,48.516 +641659,199.56,48.857 +641660,197.26,49.178 +641661,203.09,48.257 +641662,200.64,48.568 +641663,198.29,48.858 +641664,196,49.129 +641665,201.76,48.362 +641666,199.35,48.621 +641667,197.01,48.86 +641668,194.75,49.081 +641669,200.44,48.467 +641670,198.05,48.673 +641671,195.74,48.861 +641672,193.5,49.032 +641673,199.11,48.571 +641674,196.75,48.726 +641675,194.47,48.862 +641676,192.25,48.983 +641677,197.78,48.676 +641678,195.46,48.778 +641679,193.2,48.864 +641680,191,48.934 +641681,196.44,48.78 +641682,194.16,48.831 +641683,191.93,48.865 +641684,189.76,48.885 +641685,195.11,48.885 +641686,192.86,48.884 +641687,190.66,48.867 +641688,188.51,48.836 +641689,193.77,48.989 +641690,191.56,48.936 +641691,189.39,48.868 +641692,187.27,48.787 +641693,192.44,49.093 +641694,190.26,48.989 +641695,188.13,48.87 +641696,186.03,48.738 +641697,191.1,49.196 +641698,188.96,49.041 +641699,186.86,48.872 +641700,184.79,48.69 +641701,189.76,49.299 +641702,187.66,49.093 +641703,185.59,48.873 +641704,183.55,48.641 +641705,188.42,49.402 +641706,186.36,49.146 +641707,184.32,48.875 +641708,182.32,48.593 +641709,187.07,49.504 +641710,185.05,49.198 +641711,183.06,48.877 +641712,181.08,48.545 +641713,185.73,49.606 +641714,183.75,49.25 +641715,181.79,48.879 +641716,179.85,48.497 +641717,184.38,49.708 +641718,182.45,49.302 +641719,180.53,48.882 +641720,178.62,48.45 +641721,183.04,49.809 +641722,181.14,49.353 +641723,179.26,48.884 +641724,177.39,48.402 +641725,181.69,49.909 +641726,179.84,49.405 +641727,178,48.887 +641728,176.17,48.356 +641729,180.34,50.009 +641730,178.53,49.457 +641731,176.73,48.89 +641732,174.94,48.309 +641733,178.99,50.108 +641734,177.22,49.508 +641735,175.47,48.893 +641736,173.72,48.264 +641737,177.63,50.207 +641738,175.92,49.559 +641739,174.21,48.896 +641740,172.5,48.218 +641741,176.28,50.304 +641742,174.61,49.61 +641743,172.94,48.899 +641744,171.28,48.174 +641745,174.93,50.401 +641746,173.3,49.661 +641747,171.68,48.903 +641748,170.06,48.13 +641749,173.57,50.498 +641750,172,49.711 +641751,170.42,48.907 +641752,168.84,48.086 +641753,172.21,50.593 +641754,170.69,49.761 +641755,169.16,48.911 +641756,167.62,48.043 +641757,170.86,50.688 +641758,169.38,49.811 +641759,167.9,48.915 +641760,166.41,48.001 +641761,169.5,50.782 +641762,168.07,49.861 +641763,166.64,48.92 +641764,165.2,47.96 +641765,168.14,50.874 +641766,166.76,49.911 +641767,165.38,48.925 +641768,163.98,47.919 +641769,166.78,50.966 +641770,165.45,49.96 +641771,164.11,48.931 +641772,162.77,47.879 +641773,165.42,51.057 +641774,164.14,50.009 +641775,162.85,48.936 +641776,161.57,47.84 +641777,164.05,51.147 +641778,162.83,50.057 +641779,161.6,48.942 +641780,160.36,47.802 +641781,162.69,51.236 +641782,161.52,50.106 +641783,160.34,48.948 +641784,159.15,47.765 +641785,161.33,51.324 +641786,160.2,50.154 +641787,159.08,48.955 +641788,157.95,47.729 +641789,159.96,51.411 +641790,158.89,50.201 +641791,157.82,48.962 +641792,156.74,47.694 +641793,158.6,51.497 +641794,157.58,50.249 +641795,156.56,48.969 +641796,155.54,47.659 +641797,157.23,51.582 +641798,156.27,50.296 +641799,155.3,48.977 +641800,154.34,47.626 +641801,155.86,51.665 +641802,154.95,50.342 +641803,154.04,48.985 +641804,153.13,47.594 +641805,154.5,51.748 +641806,153.64,50.388 +641807,152.78,48.994 +641808,151.93,47.563 +641809,153.13,51.829 +641810,152.33,50.434 +641811,151.53,49.003 +641812,150.73,47.534 +641813,151.76,51.909 +641814,151.01,50.48 +641815,150.27,49.012 +641816,149.54,47.505 +641817,150.39,51.988 +641818,149.7,50.525 +641819,149.01,49.022 +641820,148.34,47.478 +641821,149.02,52.065 +641822,148.38,50.57 +641823,147.75,49.032 +641824,147.14,47.451 +641825,147.65,52.141 +641826,147.07,50.614 +641827,146.5,49.043 +641828,145.94,47.427 +641829,146.29,52.216 +641830,145.75,50.658 +641831,145.24,49.054 +641832,144.75,47.403 +641833,144.92,52.29 +641834,144.44,50.701 +641835,143.98,49.066 +641836,143.55,47.381 +641837,143.55,52.362 +641838,143.12,50.744 +641839,142.73,49.078 +641840,142.36,47.36 +641841,142.17,52.433 +641842,141.81,50.787 +641843,141.47,49.09 +641844,141.17,47.341 +641845,140.8,52.502 +641846,140.49,50.829 +641847,140.21,49.103 +641848,139.97,47.323 +641849,139.43,52.571 +641850,139.18,50.87 +641851,138.95,49.117 +641852,138.78,47.306 +641853,138.06,52.637 +641854,137.86,50.911 +641855,137.7,49.131 +641856,137.59,47.291 +641857,136.69,52.703 +641858,136.54,50.952 +641859,136.44,49.145 +641860,136.39,47.277 +641861,135.32,52.766 +641862,135.23,50.992 +641863,135.18,49.16 +641864,135.2,47.265 +641865,133.95,52.829 +641866,133.91,51.032 +641867,133.93,49.176 +641868,134.01,47.254 +641869,132.58,52.89 +641870,132.59,51.071 +641871,132.67,49.192 +641872,132.82,47.245 +641873,131.21,52.949 +641874,131.28,51.11 +641875,131.41,49.208 +641876,131.62,47.238 +641877,129.84,53.007 +641878,129.96,51.148 +641879,130.16,49.225 +641880,130.43,47.232 +641881,128.47,53.064 +641882,128.65,51.186 +641883,128.9,49.243 +641884,129.24,47.228 +641885,127.1,53.119 +641886,127.33,51.224 +641887,127.64,49.261 +641888,128.05,47.225 +641889,125.73,53.172 +641890,126.01,51.26 +641891,126.38,49.28 +641892,126.85,47.224 +641893,124.36,53.224 +641894,124.7,51.297 +641895,125.13,49.299 +641896,125.66,47.225 +641897,122.99,53.274 +641898,123.38,51.332 +641899,123.87,49.319 +641900,124.47,47.227 +641901,121.62,53.323 +641902,122.06,51.368 +641903,122.61,49.34 +641904,123.28,47.231 +641905,120.25,53.37 +641906,120.75,51.402 +641907,121.35,49.361 +641908,122.08,47.237 +641909,118.88,53.416 +641910,119.43,51.437 +641911,120.09,49.382 +641912,120.89,47.245 +641913,117.51,53.46 +641914,118.12,51.47 +641915,118.83,49.404 +641916,119.69,47.254 +641917,116.14,53.503 +641918,116.8,51.503 +641919,117.57,49.427 +641920,118.5,47.265 +641921,114.77,53.544 +641922,115.48,51.536 +641923,116.32,49.45 +641924,117.3,47.277 +641925,113.41,53.583 +641926,114.17,51.568 +641927,115.06,49.474 +641928,116.1,47.292 +641929,112.04,53.621 +641930,112.85,51.6 +641931,113.8,49.499 +641932,114.9,47.308 +641933,110.68,53.657 +641934,111.54,51.631 +641935,112.54,49.524 +641936,113.7,47.326 +641937,109.31,53.692 +641938,110.22,51.661 +641939,111.27,49.549 +641940,112.51,47.346 +641941,107.95,53.725 +641942,108.91,51.691 +641943,110.01,49.575 +641944,111.3,47.367 +641945,106.58,53.757 +641946,107.59,51.72 +641947,108.75,49.602 +641948,110.1,47.39 +641949,105.22,53.787 +641950,106.28,51.749 +641951,107.49,49.629 +641952,108.9,47.415 +641953,103.86,53.815 +641954,104.96,51.778 +641955,106.23,49.657 +641956,107.7,47.442 +641957,102.49,53.842 +641958,103.65,51.805 +641959,104.97,49.686 +641960,106.49,47.471 +641961,101.13,53.867 +641962,102.33,51.833 +641963,103.7,49.715 +641964,105.28,47.501 +641965,99.774,53.891 +641966,101.02,51.86 +641967,102.44,49.744 +641968,104.08,47.533 +641969,98.415,53.913 +641970,99.706,51.886 +641971,101.17,49.774 +641972,102.87,47.567 +641973,97.057,53.933 +641974,98.393,51.911 +641975,99.911,49.805 +641976,101.66,47.603 +641977,95.699,53.952 +641978,97.08,51.937 +641979,98.646,49.837 +641980,100.44,47.64 +641981,94.343,53.97 +641982,95.768,51.961 +641983,97.38,49.868 +641984,99.23,47.679 +641985,92.988,53.986 +641986,94.455,51.985 +641987,96.114,49.901 +641988,98.015,47.72 +641989,91.633,54 +641990,93.143,52.009 +641991,94.848,49.934 +641992,96.798,47.763 +641993,90.28,54.013 +641994,91.832,52.032 +641995,93.581,49.968 +641996,95.579,47.807 +641997,88.928,54.024 +641998,90.52,52.055 +641999,92.313,50.002 +642000,94.359,47.853 +642001,87.577,54.034 +642002,89.21,52.077 +642003,91.045,50.036 +642004,93.137,47.901 +642005,86.227,54.042 +642006,87.899,52.098 +642007,89.776,50.072 +642008,91.914,47.95 +642009,84.878,54.049 +642010,86.589,52.119 +642011,88.507,50.107 +642012,90.688,48.002 +642013,83.53,54.055 +642014,85.279,52.14 +642015,87.237,50.144 +642016,89.461,48.054 +642017,82.184,54.059 +642018,83.97,52.16 +642019,85.967,50.181 +642020,88.231,48.109 +642021,80.839,54.061 +642022,82.661,52.18 +642023,84.696,50.218 +642024,87,48.165 +642025,79.495,54.062 +642026,81.352,52.199 +642027,83.424,50.256 +642028,85.767,48.222 +642029,78.152,54.062 +642030,80.044,52.217 +642031,82.151,50.294 +642032,84.532,48.281 +642033,76.811,54.06 +642034,78.736,52.235 +642035,80.878,50.333 +642036,83.295,48.342 +642037,75.471,54.057 +642038,77.429,52.253 +642039,79.605,50.372 +642040,82.055,48.404 +642041,74.132,54.053 +642042,76.122,52.27 +642043,78.33,50.412 +642044,80.814,48.468 +642045,72.795,54.047 +642046,74.816,52.287 +642047,77.055,50.453 +642048,79.571,48.533 +642049,71.459,54.04 +642050,73.51,52.303 +642051,75.78,50.494 +642052,78.325,48.6 +642053,70.125,54.032 +642054,72.205,52.319 +642055,74.503,50.535 +642056,77.077,48.668 +642057,68.792,54.022 +642058,70.9,52.335 +642059,73.226,50.577 +642060,75.827,48.738 +642061,67.461,54.011 +642062,69.595,52.35 +642063,71.948,50.619 +642064,74.575,48.808 +642065,66.131,53.999 +642066,68.291,52.364 +642067,70.67,50.662 +642068,73.321,48.881 +642069,64.803,53.985 +642070,66.988,52.379 +642071,69.39,50.705 +642072,72.064,48.954 +642073,63.476,53.971 +642074,65.685,52.392 +642075,68.11,50.748 +642076,70.806,49.029 +642077,62.151,53.955 +642078,64.383,52.406 +642079,66.83,50.792 +642080,69.545,49.106 +642081,60.827,53.938 +642082,63.081,52.419 +642083,65.548,50.837 +642084,68.281,49.183 +642085,59.505,53.92 +642086,61.78,52.432 +642087,64.266,50.882 +642088,67.016,49.262 +642089,58.185,53.901 +642090,60.479,52.444 +642091,62.983,50.927 +642092,65.748,49.341 +642093,56.866,53.881 +642094,59.179,52.456 +642095,61.7,50.972 +642096,64.478,49.422 +642097,55.549,53.859 +642098,57.879,52.467 +642099,60.415,51.018 +642100,63.205,49.505 +642101,54.233,53.837 +642102,56.58,52.478 +642103,59.13,51.065 +642104,61.931,49.588 +642105,52.92,53.813 +642106,55.281,52.489 +642107,57.844,51.111 +642108,60.654,49.672 +642109,51.608,53.789 +642110,53.983,52.5 +642111,56.557,51.158 +642112,59.374,49.757 +642113,50.297,53.764 +642114,52.686,52.51 +642115,55.27,51.206 +642116,58.093,49.844 +642117,48.989,53.737 +642118,51.389,52.52 +642119,53.982,51.253 +642120,56.809,49.931 +642121,47.682,53.71 +642122,50.093,52.53 +642123,52.693,51.301 +642124,55.523,50.019 +642125,46.377,53.682 +642126,48.797,52.539 +642127,51.403,51.35 +642128,54.234,50.108 +642129,45.074,53.653 +642130,47.502,52.548 +642131,50.113,51.398 +642132,52.944,50.198 +642133,43.772,53.624 +642134,46.208,52.557 +642135,48.821,51.447 +642136,51.651,50.289 +642137,42.473,53.593 +642138,44.914,52.565 +642139,47.529,51.496 +642140,50.356,50.38 +642141,41.175,53.562 +642142,43.62,52.574 +642143,46.237,51.545 +642144,49.058,50.472 +642145,39.879,53.53 +642146,42.327,52.582 +642147,44.943,51.595 +642148,47.758,50.565 +642149,38.584,53.497 +642150,41.035,52.589 +642151,43.649,51.645 +642152,46.457,50.659 +642153,37.292,53.464 +642154,39.744,52.597 +642155,42.354,51.695 +642156,45.152,50.753 +642157,36.001,53.43 +642158,38.453,52.604 +642159,41.058,51.745 +642160,43.846,50.848 +642161,34.713,53.395 +642162,37.162,52.612 +642163,39.761,51.796 +642164,42.538,50.943 +642165,33.426,53.36 +642166,35.872,52.619 +642167,38.464,51.846 +642168,41.227,51.039 +642169,32.141,53.324 +642170,34.583,52.626 +642171,37.166,51.897 +642172,39.914,51.135 +642173,30.857,53.288 +642174,33.294,52.632 +642175,35.867,51.948 +642176,38.6,51.232 +642177,29.576,53.251 +642178,32.006,52.639 +642179,34.568,51.999 +642180,37.283,51.329 +642181,28.297,53.214 +642182,30.719,52.645 +642183,33.268,52.05 +642184,35.964,51.426 +642185,27.019,53.177 +642186,29.432,52.652 +642187,31.967,52.102 +642188,34.643,51.524 +642189,25.743,53.139 +642190,28.146,52.658 +642191,30.665,52.153 +642192,33.32,51.622 +642193,24.469,53.1 +642194,26.86,52.664 +642195,29.362,52.205 +642196,31.995,51.72 +642197,23.197,53.062 +642198,25.575,52.67 +642199,28.059,52.256 +642200,30.668,51.819 +642201,21.927,53.023 +642202,24.29,52.676 +642203,26.755,52.308 +642204,29.339,51.917 +642205,20.659,52.984 +642206,23.006,52.682 +642207,25.451,52.36 +642208,28.008,52.016 +642209,19.392,52.945 +642210,21.722,52.687 +642211,24.146,52.412 +642212,26.675,52.115 +642213,18.127,52.905 +642214,20.439,52.693 +642215,22.84,52.464 +642216,25.341,52.214 +642217,16.865,52.866 +642218,19.157,52.699 +642219,21.533,52.516 +642220,24.005,52.313 +642221,15.603,52.826 +642222,17.875,52.705 +642223,20.226,52.567 +642224,22.667,52.412 +642225,14.344,52.786 +642226,16.594,52.71 +642227,18.918,52.619 +642228,21.327,52.511 +642229,13.087,52.746 +642230,15.313,52.716 +642231,17.61,52.671 +642232,19.985,52.609 +642233,11.831,52.707 +642234,14.033,52.722 +642235,16.3,52.723 +642236,18.642,52.708 +642237,10.577,52.667 +642238,12.753,52.728 +642239,14.991,52.775 +642240,17.297,52.806 +642241,9.3251,52.627 +642242,11.474,52.733 +642243,13.68,52.827 +642244,15.95,52.904 +642245,8.0747,52.588 +642246,10.195,52.739 +642247,12.369,52.878 +642248,14.602,53.002 +642249,6.826,52.548 +642250,8.9172,52.745 +642251,11.057,52.93 +642252,13.252,53.1 +642253,5.5791,52.509 +642254,7.6395,52.751 +642255,9.7451,52.981 +642256,11.901,53.197 +642257,4.3338,52.47 +642258,6.3623,52.757 +642259,8.4323,53.033 +642260,10.548,53.294 +642261,3.0903,52.431 +642262,5.0856,52.764 +642263,7.1188,53.084 +642264,9.1942,53.391 +642265,1.8484,52.393 +642266,3.8094,52.77 +642267,5.8048,53.135 +642268,7.8386,53.487 +642269,0.60808,52.354 +642270,2.5336,52.776 +642271,4.4903,53.186 +642272,6.4816,53.583 +642273,359.37,52.317 +642274,1.2583,52.783 +642275,3.1752,53.237 +642276,5.1232,53.678 +642277,358.13,52.279 +642278,359.98,52.79 +642279,1.8595,53.288 +642280,3.7636,53.773 +642281,356.9,52.242 +642282,358.71,52.796 +642283,0.54337,53.339 +642284,2.4027,53.867 +642285,355.66,52.206 +642286,357.43,52.803 +642287,359.23,53.389 +642288,1.0405,53.961 +642289,354.43,52.17 +642290,356.16,52.811 +642291,357.91,53.439 +642292,359.68,54.053 +642293,353.2,52.134 +642294,354.89,52.818 +642295,356.59,53.489 +642296,358.31,54.146 +642297,351.97,52.099 +642298,353.62,52.826 +642299,355.27,53.539 +642300,356.95,54.237 +642301,350.74,52.065 +642302,352.34,52.834 +642303,353.96,53.589 +642304,355.58,54.328 +642305,349.52,52.031 +642306,351.07,52.842 +642307,352.64,53.638 +642308,354.21,54.418 +642309,348.29,51.998 +642310,349.8,52.85 +642311,351.32,53.687 +642312,352.84,54.508 +642313,347.07,51.966 +642314,348.53,52.858 +642315,350,53.736 +642316,351.47,54.596 +642317,345.84,51.934 +642318,347.26,52.867 +642319,348.68,53.784 +642320,350.1,54.684 +642321,344.62,51.903 +642322,345.99,52.876 +642323,347.36,53.833 +642324,348.73,54.771 +642325,343.4,51.873 +642326,344.72,52.886 +642327,346.03,53.881 +642328,347.36,54.857 +642329,342.18,51.844 +642330,343.45,52.895 +642331,344.71,53.928 +642332,345.99,54.942 +642333,340.96,51.816 +642334,342.18,52.905 +642335,343.39,53.976 +642336,344.61,55.026 +642337,339.75,51.788 +642338,340.91,52.915 +642339,342.07,54.023 +642340,343.24,55.109 +642341,338.53,51.762 +642342,339.64,52.926 +642343,340.75,54.069 +642344,341.86,55.191 +642345,337.32,51.736 +642346,338.37,52.937 +642347,339.42,54.116 +642348,340.49,55.272 +642349,336.1,51.711 +642350,337.1,52.948 +642351,338.1,54.162 +642352,339.11,55.352 +642353,334.89,51.687 +642354,335.83,52.96 +642355,336.78,54.208 +642356,337.73,55.431 +642357,333.68,51.665 +642358,334.56,52.971 +642359,335.45,54.253 +642360,336.35,55.509 +642361,332.47,51.643 +642362,333.29,52.984 +642363,334.13,54.298 +642364,334.98,55.586 +642365,331.26,51.623 +642366,332.03,52.996 +642367,332.81,54.343 +642368,333.6,55.661 +642369,330.05,51.603 +642370,330.76,53.009 +642371,331.48,54.387 +642372,332.22,55.736 +642373,328.84,51.585 +642374,329.49,53.023 +642375,330.16,54.431 +642376,330.84,55.809 +642377,327.63,51.568 +642378,328.22,53.036 +642379,328.83,54.474 +642380,329.46,55.881 +642381,326.43,51.552 +642382,326.96,53.051 +642383,327.51,54.517 +642384,328.08,55.952 +642385,325.22,51.537 +642386,325.69,53.065 +642387,326.18,54.56 +642388,326.7,56.022 +642389,324.01,51.524 +642390,324.42,53.08 +642391,324.86,54.602 +642392,325.31,56.09 +642393,322.81,51.512 +642394,323.15,53.096 +642395,323.53,54.644 +642396,323.93,56.157 +642397,321.6,51.501 +642398,321.89,53.111 +642399,322.2,54.685 +642400,322.55,56.223 +642401,320.4,51.491 +642402,320.62,53.128 +642403,320.88,54.726 +642404,321.17,56.287 +642405,319.19,51.483 +642406,319.35,53.144 +642407,319.55,54.766 +642408,319.79,56.351 +642409,317.99,51.476 +642410,318.08,53.161 +642411,318.23,54.806 +642412,318.41,56.412 +642413,316.78,51.47 +642414,316.82,53.179 +642415,316.9,54.846 +642416,317.03,56.473 +642417,315.58,51.466 +642418,315.55,53.197 +642419,315.57,54.885 +642420,315.64,56.532 +642421,314.37,51.463 +642422,314.28,53.216 +642423,314.25,54.924 +642424,314.26,56.59 +642425,313.17,51.462 +642426,313.02,53.235 +642427,312.92,54.962 +642428,312.88,56.646 +642429,311.97,51.462 +642430,311.75,53.254 +642431,311.6,55 +642432,311.5,56.701 +642433,310.76,51.463 +642434,310.48,53.274 +642435,310.27,55.037 +642436,310.12,56.755 +642437,309.56,51.466 +642438,309.21,53.294 +642439,308.94,55.074 +642440,308.74,56.807 +642441,308.35,51.471 +642442,307.95,53.315 +642443,307.62,55.11 +642444,307.36,56.858 +642445,307.15,51.477 +642446,306.68,53.337 +642447,306.29,55.146 +642448,305.98,56.907 +642449,305.95,51.484 +642450,305.41,53.358 +642451,304.96,55.181 +642452,304.6,56.955 +642453,304.74,51.493 +642454,304.14,53.381 +642455,303.64,55.216 +642456,303.22,57.002 +642457,303.53,51.503 +642458,302.87,53.404 +642459,302.31,55.25 +642460,301.84,57.047 +642461,302.33,51.515 +642462,301.61,53.427 +642463,300.99,55.284 +642464,300.46,57.09 +642465,301.12,51.529 +642466,300.34,53.451 +642467,299.66,55.317 +642468,299.08,57.133 +642469,299.92,51.544 +642470,299.07,53.475 +642471,298.34,55.35 +642472,297.7,57.173 +642473,298.71,51.56 +642474,297.8,53.5 +642475,297.01,55.383 +642476,296.32,57.212 +642477,297.5,51.579 +642478,296.53,53.525 +642479,295.68,55.414 +642480,294.95,57.25 +642481,296.29,51.598 +642482,295.26,53.551 +642483,294.36,55.446 +642484,293.57,57.286 +642485,295.08,51.619 +642486,293.99,53.577 +642487,293.03,55.477 +642488,292.19,57.321 +642489,293.87,51.642 +642490,292.72,53.604 +642491,291.71,55.507 +642492,290.82,57.354 +642493,292.66,51.667 +642494,291.45,53.632 +642495,290.38,55.537 +642496,289.44,57.386 +642497,291.45,51.693 +642498,290.18,53.66 +642499,289.06,55.566 +642500,288.07,57.417 +642501,290.23,51.72 +642502,288.91,53.688 +642503,287.74,55.595 +642504,286.7,57.445 +642505,289.02,51.749 +642506,287.63,53.717 +642507,286.41,55.623 +642508,285.32,57.473 +642509,287.8,51.78 +642510,286.36,53.746 +642511,285.09,55.651 +642512,283.95,57.499 +642513,286.58,51.812 +642514,285.09,53.776 +642515,283.76,55.678 +642516,282.58,57.523 +642517,285.37,51.846 +642518,283.82,53.807 +642519,282.44,55.705 +642520,281.21,57.546 +642521,284.15,51.881 +642522,282.54,53.838 +642523,281.12,55.731 +642524,279.84,57.568 +642525,282.93,51.918 +642526,281.27,53.869 +642527,279.8,55.757 +642528,278.47,57.588 +642529,281.7,51.957 +642530,279.99,53.901 +642531,278.47,55.782 +642532,277.11,57.607 +642533,280.48,51.997 +642534,278.72,53.933 +642535,277.15,55.807 +642536,275.74,57.624 +642537,279.26,52.038 +642538,277.44,53.966 +642539,275.83,55.831 +642540,274.38,57.64 +642541,278.03,52.081 +642542,276.17,54 +642543,274.51,55.855 +642544,273.01,57.654 +642545,276.8,52.126 +642546,274.89,54.033 +642547,273.19,55.879 +642548,271.65,57.667 +642549,275.57,52.172 +642550,273.62,54.068 +642551,271.87,55.901 +642552,270.29,57.678 +642553,274.34,52.219 +642554,272.34,54.103 +642555,270.55,55.924 +642556,268.93,57.689 +642557,273.11,52.268 +642558,271.06,54.138 +642559,269.23,55.946 +642560,267.57,57.697 +642561,271.87,52.319 +642562,269.78,54.174 +642563,267.91,55.967 +642564,266.21,57.705 +642565,270.64,52.37 +642566,268.5,54.21 +642567,266.59,55.988 +642568,264.85,57.711 +642569,269.4,52.424 +642570,267.22,54.247 +642571,265.27,56.009 +642572,263.5,57.716 +642573,268.16,52.479 +642574,265.94,54.284 +642575,263.95,56.029 +642576,262.14,57.719 +642577,266.92,52.535 +642578,264.66,54.321 +642579,262.63,56.048 +642580,260.79,57.721 +642581,265.68,52.592 +642582,263.38,54.359 +642583,261.31,56.068 +642584,259.44,57.722 +642585,264.43,52.651 +642586,262.1,54.398 +642587,260,56.086 +642588,258.08,57.722 +642589,263.18,52.711 +642590,260.82,54.437 +642591,258.68,56.105 +642592,256.74,57.72 +642593,261.93,52.773 +642594,259.53,54.476 +642595,257.37,56.122 +642596,255.39,57.717 +642597,260.68,52.836 +642598,258.25,54.516 +642599,256.05,56.14 +642600,254.04,57.713 +642601,259.43,52.9 +642602,256.97,54.556 +642603,254.73,56.157 +642604,252.7,57.707 +642605,258.18,52.965 +642606,255.68,54.597 +642607,253.42,56.173 +642608,251.35,57.701 +642609,256.92,53.032 +642610,254.39,54.638 +642611,252.11,56.19 +642612,250.01,57.693 +642613,255.66,53.1 +642614,253.11,54.679 +642615,250.79,56.205 +642616,248.67,57.684 +642617,254.4,53.169 +642618,251.82,54.721 +642619,249.48,56.221 +642620,247.33,57.674 +642621,253.13,53.239 +642622,250.53,54.763 +642623,248.17,56.236 +642624,245.99,57.662 +642625,251.87,53.31 +642626,249.24,54.806 +642627,246.85,56.25 +642628,244.66,57.65 +642629,250.6,53.383 +642630,247.96,54.848 +642631,245.54,56.265 +642632,243.32,57.637 +642633,249.33,53.456 +642634,246.67,54.892 +642635,244.23,56.279 +642636,241.99,57.622 +642637,248.06,53.531 +642638,245.38,54.935 +642639,242.92,56.292 +642640,240.66,57.607 +642641,246.78,53.606 +642642,244.08,54.979 +642643,241.61,56.305 +642644,239.33,57.59 +642645,245.51,53.683 +642646,242.79,55.023 +642647,240.3,56.318 +642648,238,57.573 +642649,244.23,53.761 +642650,241.5,55.068 +642651,238.99,56.331 +642652,236.67,57.554 +642653,242.95,53.839 +642654,240.21,55.113 +642655,237.69,56.343 +642656,235.35,57.535 +642657,241.67,53.919 +642658,238.91,55.158 +642659,236.38,56.355 +642660,234.03,57.515 +642661,240.38,53.999 +642662,237.62,55.203 +642663,235.07,56.367 +642664,232.71,57.493 +642665,239.09,54.08 +642666,236.32,55.249 +642667,233.76,56.378 +642668,231.39,57.471 +642669,237.8,54.162 +642670,235.03,55.295 +642671,232.46,56.389 +642672,230.07,57.448 +642673,236.51,54.245 +642674,233.73,55.341 +642675,231.15,56.4 +642676,228.75,57.425 +642677,235.22,54.329 +642678,232.43,55.388 +642679,229.85,56.41 +642680,227.44,57.4 +642681,233.92,54.413 +642682,231.13,55.434 +642683,228.54,56.42 +642684,226.13,57.375 +642685,232.62,54.498 +642686,229.83,55.481 +642687,227.24,56.43 +642688,224.81,57.349 +642689,231.32,54.584 +642690,228.53,55.529 +642691,225.94,56.44 +642692,223.51,57.322 +642693,230.02,54.67 +642694,227.23,55.576 +642695,224.64,56.45 +642696,222.2,57.295 +642697,228.71,54.757 +642698,225.93,55.623 +642699,223.33,56.459 +642700,220.89,57.267 +642701,227.41,54.844 +642702,224.63,55.671 +642703,222.03,56.468 +642704,219.59,57.238 +642705,226.1,54.932 +642706,223.33,55.719 +642707,220.73,56.477 +642708,218.29,57.209 +642709,224.79,55.021 +642710,222.02,55.767 +642711,219.43,56.486 +642712,216.99,57.18 +642713,223.47,55.11 +642714,220.72,55.816 +642715,218.13,56.494 +642716,215.69,57.149 +642717,222.16,55.199 +642718,219.41,55.864 +642719,216.83,56.503 +642720,214.39,57.119 +642721,220.84,55.289 +642722,218.11,55.912 +642723,215.54,56.511 +642724,213.1,57.087 +642725,219.52,55.379 +642726,216.8,55.961 +642727,214.24,56.519 +642728,211.81,57.056 +642729,218.2,55.47 +642730,215.49,56.01 +642731,212.94,56.527 +642732,210.52,57.024 +642733,216.87,55.56 +642734,214.19,56.059 +642735,211.64,56.535 +642736,209.23,56.991 +642737,215.55,55.651 +642738,212.88,56.108 +642739,210.35,56.542 +642740,207.94,56.959 +642741,214.22,55.743 +642742,211.57,56.157 +642743,209.05,56.55 +642744,206.65,56.926 +642745,212.89,55.834 +642746,210.26,56.206 +642747,207.76,56.557 +642748,205.37,56.892 +642749,211.56,55.926 +642750,208.95,56.255 +642751,206.46,56.565 +642752,204.09,56.859 +642753,210.22,56.017 +642754,207.64,56.304 +642755,205.17,56.572 +642756,202.81,56.825 +642757,208.89,56.109 +642758,206.32,56.353 +642759,203.88,56.58 +642760,201.53,56.791 +642761,207.55,56.201 +642762,205.01,56.402 +642763,202.59,56.587 +642764,200.26,56.757 +642765,206.21,56.293 +642766,203.7,56.452 +642767,201.29,56.594 +642768,198.98,56.723 +642769,204.87,56.384 +642770,202.39,56.501 +642771,200,56.601 +642772,197.71,56.688 +642773,203.53,56.476 +642774,201.07,56.55 +642775,198.71,56.608 +642776,196.44,56.654 +642777,202.18,56.568 +642778,199.76,56.599 +642779,197.42,56.616 +642780,195.17,56.62 +642781,200.84,56.659 +642782,198.44,56.648 +642783,196.13,56.623 +642784,193.9,56.585 +642785,199.49,56.751 +642786,197.12,56.697 +642787,194.84,56.63 +642788,192.64,56.551 +642789,198.14,56.842 +642790,195.81,56.747 +642791,193.55,56.637 +642792,191.37,56.517 +642793,196.79,56.933 +642794,194.49,56.795 +642795,192.27,56.645 +642796,190.11,56.483 +642797,195.43,57.024 +642798,193.17,56.844 +642799,190.98,56.652 +642800,188.85,56.449 +642801,194.08,57.114 +642802,191.85,56.893 +642803,189.69,56.659 +642804,187.59,56.415 +642805,192.72,57.204 +642806,190.53,56.942 +642807,188.41,56.667 +642808,186.33,56.381 +642809,191.36,57.294 +642810,189.21,56.99 +642811,187.12,56.674 +642812,185.08,56.348 +642813,190,57.383 +642814,187.89,57.039 +642815,185.83,56.682 +642816,183.83,56.315 +642817,188.64,57.472 +642818,186.57,57.087 +642819,184.55,56.69 +642820,182.57,56.282 +642821,187.28,57.561 +642822,185.25,57.135 +642823,183.26,56.698 +642824,181.32,56.25 +642825,185.92,57.649 +642826,183.93,57.183 +642827,181.98,56.706 +642828,180.07,56.218 +642829,184.55,57.736 +642830,182.6,57.231 +642831,180.7,56.714 +642832,178.83,56.186 +642833,183.19,57.823 +642834,181.28,57.279 +642835,179.41,56.722 +642836,177.58,56.155 +642837,181.82,57.909 +642838,179.96,57.326 +642839,178.13,56.731 +642840,176.34,56.124 +642841,180.45,57.995 +642842,178.63,57.373 +642843,176.85,56.739 +642844,175.09,56.094 +642845,179.08,58.08 +642846,177.31,57.421 +642847,175.57,56.748 +642848,173.85,56.064 +642849,177.71,58.165 +642850,175.98,57.467 +642851,174.28,56.757 +642852,172.61,56.035 +642853,176.34,58.248 +642854,174.66,57.514 +642855,173,56.766 +642856,171.37,56.007 +642857,174.96,58.332 +642858,173.33,57.56 +642859,171.72,56.775 +642860,170.14,55.979 +642861,173.59,58.414 +642862,172,57.606 +642863,170.44,56.785 +642864,168.9,55.951 +642865,172.21,58.495 +642866,170.68,57.652 +642867,169.16,56.795 +642868,167.67,55.925 +642869,170.84,58.576 +642870,169.35,57.698 +642871,167.88,56.805 +642872,166.43,55.899 +642873,169.46,58.656 +642874,168.02,57.743 +642875,166.6,56.815 +642876,165.2,55.874 +642877,168.08,58.735 +642878,166.69,57.788 +642879,165.33,56.826 +642880,163.97,55.849 +642881,166.7,58.813 +642882,165.37,57.833 +642883,164.05,56.837 +642884,162.74,55.826 +642885,165.32,58.891 +642886,164.04,57.877 +642887,162.77,56.848 +642888,161.51,55.803 +642889,163.94,58.967 +642890,162.71,57.922 +642891,161.49,56.859 +642892,160.28,55.781 +642893,162.56,59.042 +642894,161.38,57.965 +642895,160.21,56.871 +642896,159.06,55.76 +642897,161.18,59.117 +642898,160.05,58.009 +642899,158.93,56.883 +642900,157.83,55.74 +642901,159.79,59.19 +642902,158.72,58.052 +642903,157.66,56.895 +642904,156.61,55.721 +642905,158.41,59.263 +642906,157.39,58.095 +642907,156.38,56.908 +642908,155.39,55.703 +642909,157.03,59.334 +642910,156.06,58.137 +642911,155.1,56.921 +642912,154.16,55.685 +642913,155.64,59.405 +642914,154.73,58.179 +642915,153.83,56.934 +642916,152.94,55.669 +642917,154.26,59.474 +642918,153.4,58.221 +642919,152.55,56.947 +642920,151.72,55.654 +642921,152.87,59.542 +642922,152.06,58.262 +642923,151.27,56.961 +642924,150.5,55.639 +642925,151.48,59.609 +642926,150.73,58.303 +642927,150,56.976 +642928,149.28,55.626 +642929,150.1,59.675 +642930,149.4,58.344 +642931,148.72,56.99 +642932,148.06,55.614 +642933,148.71,59.74 +642934,148.07,58.384 +642935,147.45,57.005 +642936,146.84,55.603 +642937,147.32,59.804 +642938,146.74,58.424 +642939,146.17,57.021 +642940,145.63,55.593 +642941,145.94,59.866 +642942,145.41,58.464 +642943,144.9,57.036 +642944,144.41,55.585 +642945,144.55,59.927 +642946,144.07,58.503 +642947,143.62,57.052 +642948,143.19,55.577 +642949,143.16,59.987 +642950,142.74,58.541 +642951,142.35,57.069 +642952,141.98,55.571 +642953,141.77,60.046 +642954,141.41,58.579 +642955,141.07,57.086 +642956,140.76,55.566 +642957,140.38,60.104 +642958,140.07,58.617 +642959,139.79,57.103 +642960,139.55,55.562 +642961,139,60.16 +642962,138.74,58.654 +642963,138.52,57.121 +642964,138.33,55.559 +642965,137.61,60.215 +642966,137.41,58.691 +642967,137.24,57.139 +642968,137.12,55.558 +642969,136.22,60.269 +642970,136.08,58.728 +642971,135.97,57.157 +642972,135.9,55.558 +642973,134.83,60.321 +642974,134.74,58.764 +642975,134.69,57.176 +642976,134.69,55.559 +642977,133.44,60.372 +642978,133.41,58.799 +642979,133.42,57.196 +642980,133.47,55.562 +642981,132.06,60.422 +642982,132.08,58.834 +642983,132.14,57.216 +642984,132.26,55.565 +642985,130.67,60.471 +642986,130.74,58.869 +642987,130.87,57.236 +642988,131.05,55.571 +642989,129.28,60.518 +642990,129.41,58.903 +642991,129.59,57.257 +642992,129.83,55.577 +642993,127.89,60.564 +642994,128.08,58.937 +642995,128.32,57.278 +642996,128.62,55.585 +642997,126.5,60.608 +642998,126.74,58.97 +642999,127.04,57.299 +643000,127.4,55.594 +643001,125.12,60.652 +643002,125.41,59.003 +643003,125.77,57.321 +643004,126.19,55.605 +643005,123.73,60.693 +643006,124.08,59.036 +643007,124.49,57.344 +643008,124.97,55.617 +643009,122.34,60.734 +643010,122.75,59.068 +643011,123.21,57.366 +643012,123.76,55.63 +643013,120.96,60.773 +643014,121.41,59.099 +643015,121.94,57.39 +643016,122.54,55.645 +643017,119.57,60.811 +643018,120.08,59.13 +643019,120.66,57.414 +643020,121.33,55.661 +643021,118.19,60.847 +643022,118.75,59.16 +643023,119.39,57.438 +643024,120.11,55.678 +643025,116.8,60.882 +643026,117.42,59.19 +643027,118.11,57.462 +643028,118.89,55.697 +643029,115.42,60.916 +643030,116.08,59.22 +643031,116.83,57.488 +643032,117.68,55.718 +643033,114.03,60.948 +643034,114.75,59.249 +643035,115.55,57.513 +643036,116.46,55.739 +643037,112.65,60.979 +643038,113.42,59.278 +643039,114.28,57.539 +643040,115.24,55.763 +643041,111.27,61.008 +643042,112.09,59.306 +643043,113,57.566 +643044,114.02,55.787 +643045,109.89,61.036 +643046,110.76,59.333 +643047,111.72,57.593 +643048,112.8,55.813 +643049,108.51,61.063 +643050,109.42,59.36 +643051,110.44,57.62 +643052,111.58,55.841 +643053,107.13,61.088 +643054,108.09,59.387 +643055,109.17,57.648 +643056,110.36,55.869 +643057,105.75,61.112 +643058,106.76,59.413 +643059,107.89,57.676 +643060,109.13,55.9 +643061,104.37,61.135 +643062,105.43,59.439 +643063,106.61,57.705 +643064,107.91,55.931 +643065,102.99,61.156 +643066,104.1,59.464 +643067,105.33,57.734 +643068,106.69,55.965 +643069,101.61,61.176 +643070,102.77,59.489 +643071,104.05,57.764 +643072,105.46,55.999 +643073,100.24,61.194 +643074,101.44,59.513 +643075,102.77,57.794 +643076,104.23,56.035 +643077,98.862,61.212 +643078,100.11,59.537 +643079,101.49,57.825 +643080,103,56.072 +643081,97.487,61.227 +643082,98.783,59.561 +643083,100.21,57.856 +643084,101.78,56.111 +643085,96.114,61.242 +643086,97.454,59.584 +643087,98.924,57.887 +643088,100.54,56.151 +643089,94.742,61.255 +643090,96.126,59.606 +643091,97.642,57.919 +643092,99.313,56.192 +643093,93.37,61.267 +643094,94.797,59.628 +643095,96.359,57.952 +643096,98.08,56.235 +643097,92,61.277 +643098,93.47,59.65 +643099,95.076,57.984 +643100,96.845,56.279 +643101,90.631,61.287 +643102,92.142,59.671 +643103,93.793,58.018 +643104,95.609,56.325 +643105,89.263,61.295 +643106,90.815,59.692 +643107,92.509,58.051 +643108,94.372,56.372 +643109,87.896,61.301 +643110,89.488,59.712 +643111,91.225,58.085 +643112,93.133,56.42 +643113,86.531,61.307 +643114,88.162,59.732 +643115,89.94,58.12 +643116,91.892,56.469 +643117,85.166,61.311 +643118,86.836,59.751 +643119,88.654,58.155 +643120,90.65,56.52 +643121,83.803,61.314 +643122,85.51,59.77 +643123,87.369,58.19 +643124,89.406,56.572 +643125,82.441,61.315 +643126,84.185,59.788 +643127,86.082,58.226 +643128,88.161,56.625 +643129,81.08,61.316 +643130,82.86,59.806 +643131,84.795,58.262 +643132,86.914,56.68 +643133,79.721,61.315 +643134,81.536,59.824 +643135,83.508,58.298 +643136,85.665,56.735 +643137,78.363,61.313 +643138,80.212,59.841 +643139,82.22,58.335 +643140,84.415,56.792 +643141,77.006,61.31 +643142,78.889,59.858 +643143,80.931,58.372 +643144,83.163,56.85 +643145,75.651,61.306 +643146,77.566,59.875 +643147,79.642,58.41 +643148,81.909,56.91 +643149,74.297,61.301 +643150,76.244,59.891 +643151,78.352,58.448 +643152,80.653,56.97 +643153,72.944,61.294 +643154,74.922,59.906 +643155,77.062,58.486 +643156,79.395,57.032 +643157,71.593,61.286 +643158,73.6,59.922 +643159,75.771,58.525 +643160,78.135,57.094 +643161,70.244,61.278 +643162,72.279,59.937 +643163,74.479,58.564 +643164,76.874,57.158 +643165,68.896,61.268 +643166,70.959,59.951 +643167,73.187,58.604 +643168,75.61,57.223 +643169,67.549,61.257 +643170,69.639,59.965 +643171,71.894,58.643 +643172,74.345,57.289 +643173,66.204,61.246 +643174,68.32,59.979 +643175,70.6,58.683 +643176,73.078,57.356 +643177,64.86,61.233 +643178,67.001,59.993 +643179,69.306,58.724 +643180,71.808,57.424 +643181,63.518,61.219 +643182,65.682,60.006 +643183,68.011,58.765 +643184,70.537,57.493 +643185,62.178,61.204 +643186,64.365,60.019 +643187,66.716,58.806 +643188,69.264,57.562 +643189,60.839,61.189 +643190,63.047,60.031 +643191,65.42,58.847 +643192,67.988,57.633 +643193,59.502,61.172 +643194,61.731,60.044 +643195,64.123,58.888 +643196,66.711,57.705 +643197,58.167,61.155 +643198,60.414,60.055 +643199,62.826,58.93 +643200,65.431,57.777 +643201,56.833,61.137 +643202,59.099,60.067 +643203,61.527,58.972 +643204,64.15,57.851 +643205,55.5,61.117 +643206,57.784,60.078 +643207,60.229,59.015 +643208,62.866,57.925 +643209,54.17,61.098 +643210,56.469,60.089 +643211,58.929,59.058 +643212,61.58,58 +643213,52.841,61.077 +643214,55.155,60.1 +643215,57.629,59.1 +643216,60.292,58.076 +643217,51.514,61.055 +643218,53.842,60.111 +643219,56.328,59.144 +643220,59.002,58.152 +643221,50.188,61.033 +643222,52.529,60.121 +643223,55.027,59.187 +643224,57.71,58.229 +643225,48.865,61.01 +643226,51.217,60.131 +643227,53.724,59.231 +643228,56.416,58.307 +643229,47.543,60.986 +643230,49.905,60.141 +643231,52.422,59.274 +643232,55.12,58.386 +643233,46.222,60.962 +643234,48.594,60.15 +643235,51.118,59.318 +643236,53.821,58.465 +643237,44.904,60.937 +643238,47.284,60.159 +643239,49.814,59.363 +643240,52.521,58.545 +643241,43.587,60.912 +643242,45.974,60.168 +643243,48.509,59.407 +643244,51.218,58.625 +643245,42.272,60.886 +643246,44.665,60.177 +643247,47.203,59.451 +643248,49.913,58.706 +643249,40.959,60.859 +643250,43.356,60.186 +643251,45.897,59.496 +643252,48.606,58.787 +643253,39.648,60.832 +643254,42.048,60.195 +643255,44.59,59.541 +643256,47.297,58.869 +643257,38.338,60.804 +643258,40.741,60.203 +643259,43.282,59.586 +643260,45.986,58.951 +643261,37.03,60.776 +643262,39.434,60.211 +643263,41.973,59.631 +643264,44.673,59.034 +643265,35.724,60.747 +643266,38.128,60.219 +643267,40.664,59.676 +643268,43.358,59.117 +643269,34.42,60.718 +643270,36.822,60.227 +643271,39.354,59.722 +643272,42.04,59.2 +643273,33.117,60.689 +643274,35.517,60.235 +643275,38.044,59.767 +643276,40.721,59.284 +643277,31.817,60.659 +643278,34.212,60.242 +643279,36.733,59.813 +643280,39.4,59.368 +643281,30.518,60.629 +643282,32.908,60.25 +643283,35.421,59.858 +643284,38.076,59.452 +643285,29.221,60.598 +643286,31.605,60.257 +643287,34.108,59.904 +643288,36.751,59.536 +643289,27.926,60.568 +643290,30.302,60.265 +643291,32.795,59.95 +643292,35.423,59.621 +643293,26.632,60.537 +643294,29,60.272 +643295,31.481,59.995 +643296,34.094,59.706 +643297,25.341,60.506 +643298,27.699,60.279 +643299,30.167,60.041 +643300,32.763,59.79 +643301,24.051,60.475 +643302,26.398,60.286 +643303,28.851,60.087 +643304,31.429,59.875 +643305,22.763,60.443 +643306,25.097,60.293 +643307,27.536,60.133 +643308,30.094,59.961 +643309,21.476,60.412 +643310,23.798,60.3 +643311,26.219,60.179 +643312,28.757,60.046 +643313,20.192,60.38 +643314,22.498,60.307 +643315,24.902,60.225 +643316,27.418,60.131 +643317,18.909,60.349 +643318,21.2,60.314 +643319,23.584,60.27 +643320,26.077,60.216 +643321,17.628,60.317 +643322,19.902,60.321 +643323,22.266,60.316 +643324,24.734,60.301 +643325,16.349,60.285 +643326,18.604,60.328 +643327,20.946,60.362 +643328,23.39,60.385 +643329,15.072,60.254 +643330,17.307,60.335 +643331,19.627,60.408 +643332,22.044,60.47 +643333,13.796,60.222 +643334,16.011,60.342 +643335,18.306,60.453 +643336,20.696,60.555 +643337,12.522,60.191 +643338,14.715,60.349 +643339,16.986,60.499 +643340,19.346,60.639 +643341,11.25,60.159 +643342,13.419,60.356 +643343,15.664,60.545 +643344,17.994,60.723 +643345,9.9789,60.128 +643346,12.125,60.363 +643347,14.342,60.59 +643348,16.641,60.807 +643349,8.71,60.097 +643350,10.83,60.37 +643351,13.019,60.635 +643352,15.286,60.891 +643353,7.4427,60.067 +643354,9.5366,60.377 +643355,11.696,60.681 +643356,13.93,60.974 +643357,6.1771,60.036 +643358,8.2434,60.385 +643359,10.372,60.726 +643360,12.572,61.057 +643361,4.9131,60.006 +643362,6.9506,60.392 +643363,9.0477,60.771 +643364,11.213,61.14 +643365,3.6507,59.976 +643366,5.6584,60.4 +643367,7.7227,60.815 +643368,9.8517,61.222 +643369,2.3899,59.947 +643370,4.3666,60.407 +643371,6.3973,60.86 +643372,8.4892,61.304 +643373,1.1306,59.918 +643374,3.0754,60.415 +643375,5.0712,60.905 +643376,7.1252,61.385 +643377,359.87,59.889 +643378,1.7846,60.423 +643379,3.7447,60.949 +643380,5.7599,61.466 +643381,358.62,59.861 +643382,0.49429,60.431 +643383,2.4177,60.993 +643384,4.3931,61.546 +643385,357.36,59.833 +643386,359.2,60.439 +643387,1.0901,61.037 +643388,3.025,61.626 +643389,356.11,59.805 +643390,357.92,60.447 +643391,359.76,61.081 +643392,1.6556,61.705 +643393,354.86,59.779 +643394,356.63,60.456 +643395,358.43,61.125 +643396,0.28486,61.783 +643397,353.61,59.752 +643398,355.34,60.464 +643399,357.1,61.168 +643400,358.91,61.861 +643401,352.36,59.727 +643402,354.05,60.473 +643403,355.78,61.211 +643404,357.54,61.938 +643405,351.11,59.702 +643406,352.76,60.482 +643407,354.45,61.254 +643408,356.17,62.015 +643409,349.86,59.677 +643410,351.47,60.492 +643411,353.11,61.297 +643412,354.79,62.091 +643413,348.62,59.653 +643414,350.19,60.501 +643415,351.78,61.339 +643416,353.41,62.166 +643417,347.38,59.63 +643418,348.9,60.511 +643419,350.45,61.381 +643420,352.04,62.24 +643421,346.13,59.608 +643422,347.61,60.521 +643423,349.12,61.423 +643424,350.66,62.314 +643425,344.89,59.586 +643426,346.33,60.531 +643427,347.79,61.465 +643428,349.28,62.387 +643429,343.65,59.565 +643430,345.04,60.541 +643431,346.46,61.506 +643432,347.9,62.459 +643433,342.41,59.545 +643434,343.76,60.552 +643435,345.12,61.547 +643436,346.52,62.53 +643437,341.18,59.526 +643438,342.47,60.563 +643439,343.79,61.588 +643440,345.13,62.6 +643441,339.94,59.508 +643442,341.19,60.574 +643443,342.46,61.629 +643444,343.75,62.669 +643445,338.71,59.49 +643446,339.9,60.586 +643447,341.12,61.669 +643448,342.37,62.738 +643449,337.47,59.473 +643450,338.62,60.598 +643451,339.79,61.709 +643452,340.98,62.805 +643453,336.24,59.458 +643454,337.34,60.61 +643455,338.46,61.748 +643456,339.6,62.872 +643457,335.01,59.443 +643458,336.05,60.622 +643459,337.12,61.787 +643460,338.21,62.937 +643461,333.77,59.429 +643462,334.77,60.635 +643463,335.79,61.826 +643464,336.82,63.002 +643465,332.54,59.416 +643466,333.49,60.648 +643467,334.45,61.865 +643468,335.43,63.065 +643469,331.31,59.404 +643470,332.21,60.661 +643471,333.12,61.903 +643472,334.05,63.128 +643473,330.08,59.393 +643474,330.92,60.675 +643475,331.78,61.941 +643476,332.66,63.189 +643477,328.86,59.383 +643478,329.64,60.689 +643479,330.44,61.978 +643480,331.27,63.25 +643481,327.63,59.375 +643482,328.36,60.703 +643483,329.11,62.015 +643484,329.88,63.309 +643485,326.4,59.367 +643486,327.08,60.718 +643487,327.77,62.052 +643488,328.49,63.367 +643489,325.18,59.36 +643490,325.79,60.733 +643491,326.44,62.088 +643492,327.1,63.424 +643493,323.95,59.355 +643494,324.51,60.748 +643495,325.1,62.124 +643496,325.71,63.48 +643497,322.72,59.35 +643498,323.23,60.764 +643499,323.76,62.159 +643500,324.32,63.535 +643501,321.5,59.347 +643502,321.95,60.78 +643503,322.43,62.194 +643504,322.93,63.589 +643505,320.28,59.345 +643506,320.67,60.797 +643507,321.09,62.229 +643508,321.53,63.641 +643509,319.05,59.344 +643510,319.39,60.814 +643511,319.75,62.263 +643512,320.14,63.692 +643513,317.83,59.344 +643514,318.11,60.831 +643515,318.41,62.297 +643516,318.75,63.742 +643517,316.61,59.346 +643518,316.83,60.848 +643519,317.08,62.33 +643520,317.36,63.791 +643521,315.38,59.348 +643522,315.54,60.866 +643523,315.74,62.364 +643524,315.97,63.839 +643525,314.16,59.352 +643526,314.26,60.885 +643527,314.4,62.396 +643528,314.58,63.885 +643529,312.94,59.358 +643530,312.98,60.904 +643531,313.07,62.428 +643532,313.18,63.93 +643533,311.72,59.364 +643534,311.7,60.923 +643535,311.73,62.46 +643536,311.79,63.974 +643537,310.49,59.372 +643538,310.42,60.943 +643539,310.39,62.491 +643540,310.4,64.017 +643541,309.27,59.38 +643542,309.14,60.963 +643543,309.05,62.522 +643544,309.01,64.058 +643545,308.05,59.391 +643546,307.86,60.983 +643547,307.72,62.553 +643548,307.62,64.098 +643549,306.83,59.402 +643550,306.58,61.004 +643551,306.38,62.583 +643552,306.22,64.137 +643553,305.6,59.415 +643554,305.3,61.025 +643555,305.04,62.612 +643556,304.83,64.175 +643557,304.38,59.429 +643558,304.01,61.047 +643559,303.7,62.641 +643560,303.44,64.211 +643561,303.16,59.444 +643562,302.73,61.069 +643563,302.37,62.67 +643564,302.05,64.246 +643565,301.93,59.461 +643566,301.45,61.092 +643567,301.03,62.698 +643568,300.66,64.28 +643569,300.71,59.479 +643570,300.17,61.115 +643571,299.69,62.726 +643572,299.27,64.312 +643573,299.49,59.498 +643574,298.89,61.138 +643575,298.35,62.753 +643576,297.88,64.343 +643577,298.26,59.519 +643578,297.6,61.162 +643579,297.02,62.78 +643580,296.49,64.373 +643581,297.04,59.541 +643582,296.32,61.186 +643583,295.68,62.807 +643584,295.11,64.401 +643585,295.81,59.564 +643586,295.04,61.211 +643587,294.34,62.833 +643588,293.72,64.429 +643589,294.59,59.588 +643590,293.76,61.236 +643591,293.01,62.858 +643592,292.33,64.454 +643593,293.36,59.614 +643594,292.47,61.262 +643595,291.67,62.883 +643596,290.94,64.479 +643597,292.13,59.642 +643598,291.19,61.288 +643599,290.34,62.908 +643600,289.56,64.502 +643601,290.91,59.67 +643602,289.91,61.314 +643603,289,62.932 +643604,288.17,64.524 +643605,289.68,59.7 +643606,288.62,61.341 +643607,287.66,62.956 +643608,286.79,64.545 +643609,288.45,59.731 +643610,287.34,61.368 +643611,286.33,62.979 +643612,285.4,64.564 +643613,287.22,59.763 +643614,286.06,61.396 +643615,284.99,63.002 +643616,284.02,64.582 +643617,285.99,59.797 +643618,284.77,61.424 +643619,283.66,63.024 +643620,282.64,64.599 +643621,284.76,59.832 +643622,283.49,61.452 +643623,282.32,63.046 +643624,281.25,64.615 +643625,283.52,59.869 +643626,282.2,61.481 +643627,280.99,63.068 +643628,279.87,64.629 +643629,282.29,59.906 +643630,280.92,61.51 +643631,279.66,63.089 +643632,278.49,64.642 +643633,281.05,59.945 +643634,279.63,61.54 +643635,278.32,63.11 +643636,277.11,64.654 +643637,279.82,59.985 +643638,278.34,61.57 +643639,276.99,63.13 +643640,275.74,64.664 +643641,278.58,60.027 +643642,277.06,61.601 +643643,275.65,63.15 +643644,274.36,64.674 +643645,277.34,60.069 +643646,275.77,61.631 +643647,274.32,63.169 +643648,272.98,64.682 +643649,276.1,60.113 +643650,274.48,61.663 +643651,272.99,63.188 +643652,271.61,64.689 +643653,274.86,60.158 +643654,273.19,61.694 +643655,271.66,63.206 +643656,270.23,64.694 +643657,273.62,60.204 +643658,271.91,61.727 +643659,270.33,63.225 +643660,268.86,64.699 +643661,272.38,60.252 +643662,270.62,61.759 +643663,268.99,63.242 +643664,267.49,64.702 +643665,271.13,60.301 +643666,269.33,61.792 +643667,267.66,63.26 +643668,266.12,64.704 +643669,269.89,60.351 +643670,268.04,61.825 +643671,266.33,63.276 +643672,264.75,64.705 +643673,268.64,60.402 +643674,266.75,61.859 +643675,265,63.293 +643676,263.38,64.705 +643677,267.39,60.454 +643678,265.46,61.893 +643679,263.67,63.309 +643680,262.01,64.703 +643681,266.14,60.507 +643682,264.17,61.927 +643683,262.34,63.325 +643684,260.65,64.701 +643685,264.88,60.561 +643686,262.87,61.962 +643687,261.01,63.34 +643688,259.28,64.697 +643689,263.63,60.617 +643690,261.58,61.997 +643691,259.68,63.355 +643692,257.92,64.692 +643693,262.38,60.673 +643694,260.29,62.032 +643695,258.36,63.37 +643696,256.56,64.687 +643697,261.12,60.731 +643698,259,62.068 +643699,257.03,63.384 +643700,255.2,64.68 +643701,259.86,60.79 +643702,257.7,62.104 +643703,255.7,63.398 +643704,253.84,64.672 +643705,258.6,60.849 +643706,256.41,62.14 +643707,254.38,63.411 +643708,252.48,64.663 +643709,257.34,60.91 +643710,255.11,62.177 +643711,253.05,63.425 +643712,251.12,64.653 +643713,256.07,60.972 +643714,253.82,62.214 +643715,251.72,63.437 +643716,249.77,64.642 +643717,254.81,61.034 +643718,252.52,62.251 +643719,250.4,63.45 +643720,248.41,64.63 +643721,253.54,61.098 +643722,251.22,62.289 +643723,249.07,63.462 +643724,247.06,64.618 +643725,252.27,61.162 +643726,249.93,62.327 +643727,247.75,63.474 +643728,245.71,64.604 +643729,251,61.227 +643730,248.63,62.365 +643731,246.43,63.485 +643732,244.36,64.589 +643733,249.72,61.294 +643734,247.33,62.403 +643735,245.1,63.497 +643736,243.01,64.574 +643737,248.45,61.361 +643738,246.03,62.442 +643739,243.78,63.508 +643740,241.67,64.557 +643741,247.17,61.428 +643742,244.73,62.481 +643743,242.46,63.518 +643744,240.32,64.54 +643745,245.89,61.497 +643746,243.43,62.52 +643747,241.14,63.529 +643748,238.98,64.522 +643749,244.61,61.566 +643750,242.13,62.56 +643751,239.81,63.539 +643752,237.64,64.503 +643753,243.33,61.636 +643754,240.83,62.6 +643755,238.49,63.549 +643756,236.3,64.484 +643757,242.04,61.707 +643758,239.53,62.64 +643759,237.17,63.558 +643760,234.96,64.463 +643761,240.76,61.779 +643762,238.22,62.68 +643763,235.85,63.567 +643764,233.63,64.442 +643765,239.47,61.851 +643766,236.92,62.72 +643767,234.54,63.576 +643768,232.29,64.421 +643769,238.18,61.924 +643770,235.62,62.761 +643771,233.22,63.585 +643772,230.96,64.398 +643773,236.88,61.997 +643774,234.31,62.801 +643775,231.9,63.594 +643776,229.63,64.375 +643777,235.59,62.071 +643778,233.01,62.842 +643779,230.58,63.602 +643780,228.3,64.351 +643781,234.29,62.146 +643782,231.7,62.884 +643783,229.27,63.61 +643784,226.97,64.327 +643785,232.99,62.221 +643786,230.39,62.925 +643787,227.95,63.618 +643788,225.64,64.302 +643789,231.69,62.296 +643790,229.08,62.966 +643791,226.63,63.626 +643792,224.32,64.277 +643793,230.39,62.372 +643794,227.78,63.008 +643795,225.32,63.634 +643796,222.99,64.251 +643797,229.08,62.449 +643798,226.47,63.05 +643799,224.01,63.641 +643800,221.67,64.224 +643801,227.78,62.526 +643802,225.16,63.092 +643803,222.69,63.649 +643804,220.35,64.197 +643805,226.47,62.603 +643806,223.85,63.134 +643807,221.38,63.656 +643808,219.04,64.17 +643809,225.16,62.681 +643810,222.54,63.176 +643811,220.07,63.663 +643812,217.72,64.142 +643813,223.84,62.759 +643814,221.23,63.218 +643815,218.75,63.67 +643816,216.41,64.114 +643817,222.53,62.837 +643818,219.91,63.26 +643819,217.44,63.676 +643820,215.09,64.086 +643821,221.21,62.915 +643822,218.6,63.303 +643823,216.13,63.683 +643824,213.78,64.057 +643825,219.89,62.994 +643826,217.29,63.345 +643827,214.82,63.689 +643828,212.47,64.028 +643829,218.57,63.073 +643830,215.97,63.388 +643831,213.51,63.696 +643832,211.17,63.998 +643833,217.25,63.152 +643834,214.66,63.43 +643835,212.2,63.702 +643836,209.86,63.968 +643837,215.92,63.231 +643838,213.34,63.473 +643839,210.9,63.708 +643840,208.56,63.939 +643841,214.59,63.311 +643842,212.03,63.516 +643843,209.59,63.715 +643844,207.26,63.909 +643845,213.27,63.39 +643846,210.71,63.558 +643847,208.28,63.721 +643848,205.96,63.878 +643849,211.93,63.47 +643850,209.39,63.601 +643851,206.97,63.727 +643852,204.66,63.848 +643853,210.6,63.549 +643854,208.08,63.644 +643855,205.67,63.733 +643856,203.36,63.818 +643857,209.27,63.629 +643858,206.76,63.687 +643859,204.36,63.739 +643860,202.07,63.787 +643861,207.93,63.708 +643862,205.44,63.729 +643863,203.06,63.745 +643864,200.78,63.757 +643865,206.59,63.788 +643866,204.12,63.772 +643867,201.75,63.751 +643868,199.48,63.726 +643869,205.25,63.867 +643870,202.8,63.815 +643871,200.45,63.757 +643872,198.19,63.695 +643873,203.91,63.946 +643874,201.48,63.857 +643875,199.15,63.763 +643876,196.91,63.665 +643877,202.57,64.025 +643878,200.15,63.9 +643879,197.84,63.769 +643880,195.62,63.635 +643881,201.22,64.104 +643882,198.83,63.942 +643883,196.54,63.775 +643884,194.34,63.604 +643885,199.87,64.183 +643886,197.51,63.984 +643887,195.24,63.781 +643888,193.05,63.574 +643889,198.52,64.262 +643890,196.19,64.027 +643891,193.94,63.787 +643892,191.77,63.544 +643893,197.17,64.34 +643894,194.86,64.069 +643895,192.64,63.793 +643896,190.49,63.514 +643897,195.82,64.418 +643898,193.54,64.111 +643899,191.34,63.8 +643900,189.22,63.485 +643901,194.47,64.495 +643902,192.21,64.153 +643903,190.04,63.806 +643904,187.94,63.455 +643905,193.11,64.572 +643906,190.89,64.195 +643907,188.74,63.812 +643908,186.67,63.426 +643909,191.75,64.649 +643910,189.56,64.237 +643911,187.44,63.819 +643912,185.39,63.398 +643913,190.39,64.726 +643914,188.23,64.278 +643915,186.15,63.826 +643916,184.12,63.369 +643917,189.03,64.802 +643918,186.91,64.32 +643919,184.85,63.832 +643920,182.85,63.341 +643921,187.67,64.877 +643922,185.58,64.361 +643923,183.55,63.839 +643924,181.58,63.314 +643925,186.31,64.952 +643926,184.25,64.402 +643927,182.26,63.846 +643928,180.32,63.286 +643929,184.94,65.027 +643930,182.92,64.443 +643931,180.96,63.854 +643932,179.05,63.26 +643933,183.58,65.101 +643934,181.59,64.484 +643935,179.66,63.861 +643936,177.79,63.233 +643937,182.21,65.174 +643938,180.26,64.525 +643939,178.37,63.868 +643940,176.53,63.208 +643941,180.84,65.247 +643942,178.93,64.565 +643943,177.07,63.876 +643944,175.27,63.182 +643945,179.47,65.319 +643946,177.6,64.605 +643947,175.78,63.884 +643948,174.01,63.158 +643949,178.1,65.391 +643950,176.27,64.645 +643951,174.49,63.892 +643952,172.75,63.134 +643953,176.72,65.462 +643954,174.93,64.685 +643955,173.19,63.9 +643956,171.5,63.11 +643957,175.35,65.532 +643958,173.6,64.724 +643959,171.9,63.909 +643960,170.24,63.087 +643961,173.97,65.601 +643962,172.27,64.763 +643963,170.61,63.917 +643964,168.99,63.065 +643965,172.6,65.67 +643966,170.94,64.802 +643967,169.32,63.926 +643968,167.74,63.044 +643969,171.22,65.738 +643970,169.6,64.841 +643971,168.03,63.935 +643972,166.48,63.023 +643973,169.84,65.805 +643974,168.27,64.879 +643975,166.74,63.945 +643976,165.23,63.003 +643977,168.46,65.872 +643978,166.93,64.918 +643979,165.44,63.954 +643980,163.99,62.983 +643981,167.08,65.937 +643982,165.6,64.956 +643983,164.15,63.964 +643984,162.74,62.965 +643985,165.7,66.002 +643986,164.26,64.993 +643987,162.86,63.974 +643988,161.49,62.947 +643989,164.31,66.066 +643990,162.93,65.03 +643991,161.57,63.985 +643992,160.25,62.93 +643993,162.93,66.129 +643994,161.59,65.067 +643995,160.29,63.995 +643996,159,62.914 +643997,161.55,66.191 +643998,160.26,65.104 +643999,159,64.006 +644000,157.76,62.899 +644001,160.16,66.252 +644002,158.92,65.14 +644003,157.71,64.018 +644004,156.52,62.885 +644005,158.78,66.312 +644006,157.58,65.176 +644007,156.42,64.029 +644008,155.28,62.872 +644009,157.39,66.372 +644010,156.25,65.212 +644011,155.13,64.041 +644012,154.04,62.859 +644013,156,66.43 +644014,154.91,65.248 +644015,153.84,64.053 +644016,152.8,62.848 +644017,154.61,66.487 +644018,153.57,65.283 +644019,152.56,64.066 +644020,151.56,62.838 +644021,153.22,66.543 +644022,152.23,65.317 +644023,151.27,64.078 +644024,150.33,62.828 +644025,151.83,66.599 +644026,150.9,65.352 +644027,149.98,64.092 +644028,149.09,62.82 +644029,150.44,66.653 +644030,149.56,65.386 +644031,148.69,64.105 +644032,147.85,62.812 +644033,149.05,66.706 +644034,148.22,65.419 +644035,147.41,64.119 +644036,146.62,62.806 +644037,147.66,66.758 +644038,146.88,65.452 +644039,146.12,64.133 +644040,145.39,62.801 +644041,146.27,66.809 +644042,145.54,65.485 +644043,144.83,64.147 +644044,144.15,62.796 +644045,144.88,66.859 +644046,144.2,65.518 +644047,143.55,64.162 +644048,142.92,62.793 +644049,143.49,66.907 +644050,142.86,65.55 +644051,142.26,64.177 +644052,141.69,62.791 +644053,142.09,66.955 +644054,141.52,65.582 +644055,140.98,64.193 +644056,140.45,62.79 +644057,140.7,67.001 +644058,140.18,65.613 +644059,139.69,64.209 +644060,139.22,62.791 +644061,139.31,67.046 +644062,138.84,65.644 +644063,138.4,64.225 +644064,137.99,62.792 +644065,137.92,67.091 +644066,137.5,65.674 +644067,137.12,64.242 +644068,136.76,62.795 +644069,136.52,67.134 +644070,136.16,65.704 +644071,135.83,64.259 +644072,135.53,62.798 +644073,135.13,67.175 +644074,134.82,65.734 +644075,134.55,64.276 +644076,134.3,62.803 +644077,133.73,67.216 +644078,133.48,65.763 +644079,133.26,64.294 +644080,133.07,62.809 +644081,132.34,67.255 +644082,132.14,65.792 +644083,131.98,64.313 +644084,131.84,62.817 +644085,130.95,67.293 +644086,130.8,65.821 +644087,130.69,64.331 +644088,130.61,62.825 +644089,129.55,67.33 +644090,129.46,65.849 +644091,129.41,64.35 +644092,129.39,62.835 +644093,128.16,67.366 +644094,128.12,65.877 +644095,128.12,64.37 +644096,128.16,62.846 +644097,126.77,67.401 +644098,126.78,65.904 +644099,126.84,64.389 +644100,126.93,62.858 +644101,125.37,67.434 +644102,125.44,65.931 +644103,125.55,64.41 +644104,125.7,62.872 +644105,123.98,67.466 +644106,124.1,65.957 +644107,124.26,64.43 +644108,124.47,62.886 +644109,122.59,67.497 +644110,122.76,65.983 +644111,122.98,64.451 +644112,123.24,62.902 +644113,121.19,67.526 +644114,121.42,66.009 +644115,121.69,64.473 +644116,122.01,62.92 +644117,119.8,67.555 +644118,120.08,66.034 +644119,120.41,64.494 +644120,120.78,62.938 +644121,118.41,67.582 +644122,118.74,66.058 +644123,119.12,64.517 +644124,119.55,62.958 +644125,117.02,67.608 +644126,117.4,66.083 +644127,117.84,64.539 +644128,118.32,62.979 +644129,115.63,67.632 +644130,116.06,66.106 +644131,116.55,64.562 +644132,117.09,63.001 +644133,114.24,67.656 +644134,114.72,66.13 +644135,115.26,64.586 +644136,115.86,63.024 +644137,112.85,67.678 +644138,113.38,66.153 +644139,113.98,64.61 +644140,114.63,63.049 +644141,111.46,67.699 +644142,112.04,66.175 +644143,112.69,64.634 +644144,113.4,63.075 +644145,110.07,67.719 +644146,110.7,66.198 +644147,111.4,64.659 +644148,112.17,63.102 +644149,108.68,67.737 +644150,109.37,66.219 +644151,110.12,64.684 +644152,110.94,63.131 +644153,107.29,67.754 +644154,108.03,66.241 +644155,108.83,64.709 +644156,109.7,63.161 +644157,105.9,67.77 +644158,106.69,66.261 +644159,107.54,64.735 +644160,108.47,63.192 +644161,104.51,67.785 +644162,105.35,66.282 +644163,106.25,64.761 +644164,107.24,63.224 +644165,103.13,67.798 +644166,104.01,66.302 +644167,104.97,64.788 +644168,106,63.257 +644169,101.74,67.811 +644170,102.67,66.322 +644171,103.68,64.815 +644172,104.76,63.292 +644173,100.36,67.822 +644174,101.34,66.341 +644175,102.39,64.842 +644176,103.53,63.328 +644177,98.974,67.832 +644178,99.998,66.36 +644179,101.1,64.87 +644180,102.29,63.365 +644181,97.591,67.84 +644182,98.661,66.378 +644183,99.812,64.899 +644184,101.05,63.403 +644185,96.208,67.848 +644186,97.324,66.396 +644187,98.522,64.927 +644188,99.812,63.443 +644189,94.827,67.854 +644190,95.988,66.413 +644191,97.233,64.956 +644192,98.572,63.484 +644193,93.447,67.86 +644194,94.651,66.431 +644195,95.942,64.986 +644196,97.33,63.526 +644197,92.067,67.864 +644198,93.315,66.447 +644199,94.652,65.015 +644200,96.088,63.569 +644201,90.689,67.866 +644202,91.98,66.464 +644203,93.361,65.046 +644204,94.844,63.613 +644205,89.311,67.868 +644206,90.644,66.48 +644207,92.07,65.076 +644208,93.6,63.658 +644209,87.935,67.869 +644210,89.309,66.495 +644211,90.778,65.107 +644212,92.354,63.705 +644213,86.56,67.868 +644214,87.975,66.511 +644215,89.486,65.138 +644216,91.107,63.752 +644217,85.186,67.867 +644218,86.641,66.525 +644219,88.194,65.17 +644220,89.858,63.801 +644221,83.812,67.864 +644222,85.307,66.54 +644223,86.901,65.202 +644224,88.609,63.851 +644225,82.44,67.861 +644226,83.973,66.554 +644227,85.608,65.234 +644228,87.358,63.902 +644229,81.07,67.856 +644230,82.64,66.568 +644231,84.314,65.267 +644232,86.105,63.954 +644233,79.7,67.85 +644234,81.307,66.581 +644235,83.02,65.3 +644236,84.851,64.006 +644237,78.332,67.843 +644238,79.975,66.594 +644239,81.725,65.333 +644240,83.596,64.06 +644241,76.965,67.835 +644242,78.643,66.607 +644243,80.43,65.367 +644244,82.34,64.115 +644245,75.599,67.826 +644246,77.312,66.619 +644247,79.134,65.401 +644248,81.081,64.171 +644249,74.235,67.817 +644250,75.981,66.631 +644251,77.838,65.435 +644252,79.822,64.228 +644253,72.871,67.806 +644254,74.65,66.643 +644255,76.541,65.469 +644256,78.561,64.286 +644257,71.51,67.794 +644258,73.32,66.654 +644259,75.244,65.504 +644260,77.298,64.345 +644261,70.149,67.782 +644262,71.99,66.665 +644263,73.946,65.539 +644264,76.033,64.405 +644265,68.79,67.768 +644266,70.661,66.676 +644267,72.648,65.575 +644268,74.767,64.465 +644269,67.433,67.754 +644270,69.333,66.687 +644271,71.349,65.611 +644272,73.5,64.527 +644273,66.077,67.738 +644274,68.004,66.697 +644275,70.05,65.647 +644276,72.23,64.589 +644277,64.722,67.722 +644278,66.677,66.707 +644279,68.75,65.683 +644280,70.959,64.652 +644281,63.369,67.705 +644282,65.35,66.716 +644283,67.45,65.719 +644284,69.686,64.716 +644285,62.017,67.688 +644286,64.023,66.725 +644287,66.149,65.756 +644288,68.412,64.781 +644289,60.667,67.669 +644290,62.697,66.735 +644291,64.847,65.793 +644292,67.135,64.846 +644293,59.318,67.65 +644294,61.371,66.743 +644295,63.545,65.83 +644296,65.857,64.912 +644297,57.971,67.63 +644298,60.046,66.752 +644299,62.242,65.868 +644300,64.577,64.979 +644301,56.625,67.609 +644302,58.721,66.76 +644303,60.939,65.906 +644304,63.295,65.046 +644305,55.281,67.588 +644306,57.397,66.768 +644307,59.635,65.944 +644308,62.012,65.115 +644309,53.939,67.566 +644310,56.074,66.776 +644311,58.33,65.982 +644312,60.726,65.183 +644313,52.598,67.543 +644314,54.751,66.784 +644315,57.025,66.02 +644316,59.439,65.253 +644317,51.259,67.52 +644318,53.428,66.791 +644319,55.719,66.059 +644320,58.15,65.323 +644321,49.921,67.496 +644322,52.107,66.798 +644323,54.413,66.097 +644324,56.858,65.393 +644325,48.585,67.471 +644326,50.785,66.805 +644327,53.106,66.136 +644328,55.565,65.464 +644329,47.251,67.446 +644330,49.465,66.812 +644331,51.798,66.175 +644332,54.27,65.536 +644333,45.918,67.421 +644334,48.144,66.819 +644335,50.49,66.214 +644336,52.973,65.608 +644337,44.588,67.395 +644338,46.825,66.825 +644339,49.181,66.254 +644340,51.675,65.68 +644341,43.258,67.368 +644342,45.506,66.832 +644343,47.871,66.293 +644344,50.374,65.753 +644345,41.931,67.342 +644346,44.187,66.838 +644347,46.561,66.333 +644348,49.071,65.827 +644349,40.605,67.314 +644350,42.869,66.844 +644351,45.25,66.372 +644352,47.766,65.9 +644353,39.281,67.287 +644354,41.552,66.85 +644355,43.939,66.412 +644356,46.46,65.974 +644357,37.958,67.258 +644358,40.235,66.855 +644359,42.627,66.452 +644360,45.151,66.048 +644361,36.638,67.23 +644362,38.919,66.861 +644363,41.314,66.492 +644364,43.841,66.123 +644365,35.319,67.201 +644366,37.604,66.867 +644367,40.001,66.532 +644368,42.528,66.198 +644369,34.001,67.172 +644370,36.289,66.872 +644371,38.687,66.572 +644372,41.214,66.273 +644373,32.686,67.143 +644374,34.974,66.878 +644375,37.372,66.612 +644376,39.897,66.348 +644377,31.372,67.114 +644378,33.66,66.883 +644379,36.057,66.653 +644380,38.579,66.423 +644381,30.06,67.084 +644382,32.347,66.888 +644383,34.741,66.693 +644384,37.259,66.499 +644385,28.749,67.054 +644386,31.034,66.893 +644387,33.424,66.733 +644388,35.937,66.574 +644389,27.441,67.024 +644390,29.722,66.898 +644391,32.107,66.774 +644392,34.613,66.65 +644393,26.134,66.994 +644394,28.411,66.903 +644395,30.789,66.814 +644396,33.287,66.726 +644397,24.829,66.964 +644398,27.1,66.909 +644399,29.471,66.854 +644400,31.959,66.801 +644401,23.525,66.934 +644402,25.789,66.914 +644403,28.152,66.895 +644404,30.629,66.877 +644405,22.224,66.904 +644406,24.48,66.919 +644407,26.832,66.935 +644408,29.297,66.953 +644409,20.924,66.874 +644410,23.17,66.924 +644411,25.512,66.975 +644412,27.964,67.028 +644413,19.625,66.844 +644414,21.862,66.929 +644415,24.191,67.016 +644416,26.628,67.104 +644417,18.329,66.814 +644418,20.554,66.934 +644419,22.87,67.056 +644420,25.291,67.179 +644421,17.034,66.784 +644422,19.246,66.939 +644423,21.547,67.096 +644424,23.952,67.254 +644425,15.741,66.754 +644426,17.939,66.944 +644427,20.225,67.136 +644428,22.611,67.329 +644429,14.449,66.724 +644430,16.633,66.949 +644431,18.901,67.176 +644432,21.269,67.404 +644433,13.159,66.694 +644434,15.327,66.954 +644435,17.578,67.216 +644436,19.925,67.479 +644437,11.871,66.665 +644438,14.022,66.96 +644439,16.253,67.256 +644440,18.578,67.553 +644441,10.585,66.636 +644442,12.717,66.965 +644443,14.928,67.296 +644444,17.231,67.627 +644445,9.2998,66.607 +644446,11.413,66.971 +644447,13.602,67.336 +644448,15.881,67.701 +644449,8.0166,66.579 +644450,10.109,66.976 +644451,12.276,67.375 +644452,14.53,67.774 +644453,6.7349,66.55 +644454,8.8057,66.982 +644455,10.949,67.415 +644456,13.177,67.847 +644457,5.4549,66.522 +644458,7.5031,66.988 +644459,9.6219,67.454 +644460,11.823,67.92 +644461,4.1765,66.495 +644462,6.2009,66.994 +644463,8.294,67.493 +644464,10.467,67.992 +644465,2.8996,66.468 +644466,4.8993,67 +644467,6.9656,67.532 +644468,9.1089,68.064 +644469,1.6243,66.441 +644470,3.5982,67.006 +644471,5.6366,67.571 +644472,7.7496,68.135 +644473,0.35053,66.415 +644474,2.2976,67.012 +644475,4.3071,67.61 +644476,6.3889,68.206 +644477,359.08,66.389 +644478,0.99744,67.019 +644479,2.9771,67.648 +644480,5.0266,68.276 +644481,357.81,66.364 +644482,359.7,67.025 +644483,1.6466,67.686 +644484,3.6629,68.346 +644485,356.54,66.339 +644486,358.4,67.032 +644487,0.31557,67.725 +644488,2.2977,68.415 +644489,355.27,66.315 +644490,357.1,67.039 +644491,358.98,67.762 +644492,0.93116,68.484 +644493,354,66.291 +644494,355.8,67.046 +644495,357.65,67.8 +644496,359.56,68.552 +644497,352.74,66.268 +644498,354.5,67.054 +644499,356.32,67.838 +644500,358.19,68.619 +644501,351.48,66.246 +644502,353.21,67.061 +644503,354.99,67.875 +644504,356.82,68.686 +644505,350.21,66.224 +644506,351.91,67.069 +644507,353.65,67.912 +644508,355.45,68.752 +644509,348.95,66.203 +644510,350.61,67.077 +644511,352.32,67.949 +644512,354.08,68.817 +644513,347.69,66.183 +644514,349.32,67.085 +644515,350.99,67.985 +644516,352.7,68.881 +644517,346.43,66.163 +644518,348.02,67.094 +644519,349.65,68.022 +644520,351.33,68.945 +644521,345.18,66.145 +644522,346.73,67.103 +644523,348.32,68.058 +644524,349.95,69.008 +644525,343.92,66.127 +644526,345.43,67.112 +644527,346.98,68.093 +644528,348.57,69.07 +644529,342.67,66.109 +644530,344.14,67.121 +644531,345.64,68.129 +644532,347.19,69.131 +644533,341.41,66.093 +644534,342.84,67.131 +644535,344.31,68.164 +644536,345.81,69.192 +644537,340.16,66.077 +644538,341.55,67.14 +644539,342.97,68.199 +644540,344.43,69.251 +644541,338.91,66.063 +644542,340.26,67.15 +644543,341.63,68.233 +644544,343.05,69.31 +644545,337.66,66.049 +644546,338.96,67.161 +644547,340.3,68.268 +644548,341.67,69.368 +644549,336.41,66.036 +644550,337.67,67.172 +644551,338.96,68.302 +644552,340.28,69.425 +644553,335.16,66.024 +644554,336.38,67.182 +644555,337.62,68.335 +644556,338.9,69.481 +644557,333.92,66.013 +644558,335.08,67.194 +644559,336.28,68.369 +644560,337.51,69.536 +644561,332.67,66.003 +644562,333.79,67.205 +644563,334.94,68.402 +644564,336.13,69.59 +644565,331.43,65.993 +644566,332.5,67.217 +644567,333.6,68.434 +644568,334.74,69.643 +644569,330.18,65.985 +644570,331.21,67.23 +644571,332.27,68.467 +644572,333.35,69.695 +644573,328.94,65.978 +644574,329.92,67.242 +644575,330.93,68.499 +644576,331.96,69.746 +644577,327.7,65.972 +644578,328.63,67.255 +644579,329.59,68.53 +644580,330.58,69.796 +644581,326.45,65.967 +644582,327.34,67.268 +644583,328.25,68.561 +644584,329.19,69.845 +644585,325.21,65.963 +644586,326.05,67.282 +644587,326.91,68.592 +644588,327.8,69.893 +644589,323.97,65.96 +644590,324.76,67.296 +644591,325.57,68.623 +644592,326.4,69.94 +644593,322.73,65.958 +644594,323.47,67.31 +644595,324.23,68.653 +644596,325.01,69.985 +644597,321.49,65.957 +644598,322.18,67.325 +644599,322.88,68.683 +644600,323.62,70.03 +644601,320.26,65.958 +644602,320.89,67.34 +644603,321.54,68.712 +644604,322.23,70.074 +644605,319.02,65.959 +644606,319.6,67.355 +644607,320.2,68.741 +644608,320.84,70.116 +644609,317.78,65.962 +644610,318.31,67.371 +644611,318.86,68.77 +644612,319.44,70.158 +644613,316.54,65.966 +644614,317.02,67.387 +644615,317.52,68.798 +644616,318.05,70.198 +644617,315.31,65.971 +644618,315.73,67.404 +644619,316.18,68.826 +644620,316.66,70.237 +644621,314.07,65.977 +644622,314.44,67.421 +644623,314.84,68.854 +644624,315.26,70.275 +644625,312.84,65.984 +644626,313.15,67.438 +644627,313.5,68.881 +644628,313.87,70.312 +644629,311.6,65.992 +644630,311.86,67.456 +644631,312.15,68.908 +644632,312.47,70.347 +644633,310.37,66.002 +644634,310.57,67.474 +644635,310.81,68.934 +644636,311.08,70.382 +644637,309.13,66.013 +644638,309.28,67.492 +644639,309.47,68.96 +644640,309.69,70.415 +644641,307.9,66.025 +644642,308,67.511 +644643,308.13,68.985 +644644,308.29,70.447 +644645,306.66,66.038 +644646,306.71,67.53 +644647,306.79,69.011 +644648,306.9,70.478 +644649,305.43,66.053 +644650,305.42,67.55 +644651,305.44,69.035 +644652,305.5,70.508 +644653,304.19,66.068 +644654,304.13,67.57 +644655,304.1,69.06 +644656,304.11,70.536 +644657,302.96,66.085 +644658,302.84,67.59 +644659,302.76,69.084 +644660,302.71,70.563 +644661,301.72,66.103 +644662,301.55,67.611 +644663,301.42,69.107 +644664,301.32,70.59 +644665,300.49,66.123 +644666,300.26,67.632 +644667,300.08,69.13 +644668,299.93,70.614 +644669,299.25,66.143 +644670,298.97,67.654 +644671,298.73,69.153 +644672,298.53,70.638 +644673,298.02,66.165 +644674,297.68,67.676 +644675,297.39,69.175 +644676,297.14,70.661 +644677,296.78,66.188 +644678,296.4,67.699 +644679,296.05,69.197 +644680,295.75,70.682 +644681,295.55,66.213 +644682,295.11,67.721 +644683,294.71,69.218 +644684,294.35,70.702 +644685,294.31,66.238 +644686,293.82,67.745 +644687,293.37,69.239 +644688,292.96,70.721 +644689,293.08,66.265 +644690,292.53,67.768 +644691,292.03,69.26 +644692,291.57,70.739 +644693,291.84,66.293 +644694,291.24,67.792 +644695,290.68,69.28 +644696,290.18,70.755 +644697,290.6,66.322 +644698,289.95,67.817 +644699,289.34,69.3 +644700,288.79,70.771 +644701,289.37,66.352 +644702,288.66,67.842 +644703,288,69.319 +644704,287.4,70.785 +644705,288.13,66.384 +644706,287.37,67.867 +644707,286.66,69.338 +644708,286.01,70.798 +644709,286.89,66.417 +644710,286.08,67.892 +644711,285.32,69.357 +644712,284.62,70.81 +644713,285.65,66.451 +644714,284.79,67.918 +644715,283.98,69.375 +644716,283.23,70.82 +644717,284.41,66.486 +644718,283.5,67.945 +644719,282.64,69.393 +644720,281.84,70.83 +644721,283.17,66.522 +644722,282.2,67.972 +644723,281.3,69.411 +644724,280.46,70.838 +644725,281.93,66.56 +644726,280.91,67.999 +644727,279.96,69.428 +644728,279.07,70.845 +644729,280.69,66.599 +644730,279.62,68.026 +644731,278.62,69.444 +644732,277.68,70.851 +644733,279.45,66.638 +644734,278.33,68.054 +644735,277.28,69.46 +644736,276.3,70.856 +644737,278.2,66.679 +644738,277.04,68.082 +644739,275.94,69.476 +644740,274.91,70.86 +644741,276.96,66.722 +644742,275.74,68.111 +644743,274.6,69.492 +644744,273.53,70.862 +644745,275.72,66.765 +644746,274.45,68.14 +644747,273.26,69.507 +644748,272.15,70.864 +644749,274.47,66.809 +644750,273.16,68.17 +644751,271.93,69.522 +644752,270.77,70.864 +644753,273.22,66.855 +644754,271.86,68.199 +644755,270.59,69.536 +644756,269.39,70.864 +644757,271.97,66.901 +644758,270.57,68.229 +644759,269.25,69.55 +644760,268.01,70.862 +644761,270.73,66.949 +644762,269.28,68.26 +644763,267.91,69.564 +644764,266.63,70.859 +644765,269.47,66.998 +644766,267.98,68.291 +644767,266.58,69.577 +644768,265.25,70.856 +644769,268.22,67.047 +644770,266.69,68.322 +644771,265.24,69.59 +644772,263.87,70.851 +644773,266.97,67.098 +644774,265.39,68.353 +644775,263.9,69.603 +644776,262.5,70.845 +644777,265.72,67.15 +644778,264.1,68.385 +644779,262.57,69.615 +644780,261.12,70.838 +644781,264.46,67.203 +644782,262.8,68.417 +644783,261.23,69.627 +644784,259.75,70.83 +644785,263.21,67.256 +644786,261.5,68.45 +644787,259.9,69.639 +644788,258.38,70.821 +644789,261.95,67.311 +644790,260.21,68.482 +644791,258.56,69.65 +644792,257.01,70.812 +644793,260.69,67.367 +644794,258.91,68.515 +644795,257.23,69.661 +644796,255.64,70.801 +644797,259.43,67.423 +644798,257.61,68.549 +644799,255.89,69.671 +644800,254.27,70.789 +644801,258.17,67.48 +644802,256.31,68.582 +644803,254.56,69.682 +644804,252.9,70.777 +644805,256.9,67.539 +644806,255.01,68.616 +644807,253.23,69.692 +644808,251.54,70.763 +644809,255.64,67.598 +644810,253.71,68.651 +644811,251.89,69.702 +644812,250.17,70.749 +644813,254.37,67.658 +644814,252.41,68.685 +644815,250.56,69.711 +644816,248.81,70.734 +644817,253.1,67.719 +644818,251.11,68.72 +644819,249.23,69.72 +644820,247.45,70.718 +644821,251.84,67.78 +644822,249.81,68.755 +644823,247.9,69.729 +644824,246.08,70.701 +644825,250.56,67.843 +644826,248.51,68.79 +644827,246.57,69.738 +644828,244.73,70.684 +644829,249.29,67.906 +644830,247.21,68.826 +644831,245.24,69.746 +644832,243.37,70.665 +644833,248.02,67.97 +644834,245.91,68.862 +644835,243.91,69.754 +644836,242.01,70.646 +644837,246.74,68.034 +644838,244.6,68.898 +644839,242.58,69.762 +644840,240.66,70.627 +644841,245.46,68.099 +644842,243.3,68.934 +644843,241.25,69.77 +644844,239.3,70.606 +644845,244.19,68.165 +644846,242,68.97 +644847,239.92,69.778 +644848,237.95,70.585 +644849,242.9,68.232 +644850,240.69,69.007 +644851,238.59,69.785 +644852,236.6,70.563 +644853,241.62,68.299 +644854,239.39,69.044 +644855,237.27,69.792 +644856,235.25,70.541 +644857,240.34,68.367 +644858,238.08,69.081 +644859,235.94,69.799 +644860,233.9,70.518 +644861,239.05,68.435 +644862,236.77,69.118 +644863,234.61,69.805 +644864,232.56,70.494 +644865,237.76,68.504 +644866,235.47,69.156 +644867,233.29,69.812 +644868,231.21,70.47 +644869,236.47,68.573 +644870,234.16,69.193 +644871,231.96,69.818 +644872,229.87,70.445 +644873,235.18,68.643 +644874,232.85,69.231 +644875,230.64,69.824 +644876,228.53,70.42 +644877,233.89,68.713 +644878,231.54,69.269 +644879,229.31,69.83 +644880,227.19,70.394 +644881,232.6,68.784 +644882,230.23,69.307 +644883,227.99,69.836 +644884,225.85,70.368 +644885,231.3,68.855 +644886,228.92,69.345 +644887,226.67,69.841 +644888,224.52,70.342 +644889,230,68.926 +644890,227.61,69.383 +644891,225.34,69.847 +644892,223.18,70.315 +644893,228.7,68.998 +644894,226.3,69.422 +644895,224.02,69.852 +644896,221.85,70.287 +644897,227.4,69.07 +644898,224.99,69.46 +644899,222.7,69.857 +644900,220.52,70.259 +644901,226.09,69.142 +644902,223.68,69.499 +644903,221.38,69.862 +644904,219.19,70.231 +644905,224.79,69.215 +644906,222.36,69.538 +644907,220.06,69.868 +644908,217.86,70.203 +644909,223.48,69.288 +644910,221.05,69.577 +644911,218.74,69.872 +644912,216.53,70.174 +644913,222.17,69.361 +644914,219.74,69.615 +644915,217.42,69.877 +644916,215.21,70.145 +644917,220.86,69.434 +644918,218.42,69.654 +644919,216.1,69.882 +644920,213.88,70.116 +644921,219.54,69.507 +644922,217.11,69.693 +644923,214.78,69.887 +644924,212.56,70.087 +644925,218.23,69.581 +644926,215.79,69.732 +644927,213.47,69.891 +644928,211.24,70.057 +644929,216.91,69.654 +644930,214.47,69.771 +644931,212.15,69.896 +644932,209.93,70.028 +644933,215.59,69.728 +644934,213.16,69.81 +644935,210.83,69.901 +644936,208.61,69.998 +644937,214.27,69.802 +644938,211.84,69.85 +644939,209.52,69.905 +644940,207.29,69.968 +644941,212.95,69.875 +644942,210.52,69.889 +644943,208.2,69.91 +644944,205.98,69.938 +644945,211.62,69.949 +644946,209.2,69.928 +644947,206.89,69.914 +644948,204.67,69.908 +644949,210.3,70.023 +644950,207.88,69.967 +644951,205.57,69.919 +644952,203.36,69.878 +644953,208.97,70.096 +644954,206.56,70.006 +644955,204.26,69.923 +644956,202.05,69.848 +644957,207.64,70.17 +644958,205.24,70.045 +644959,202.95,69.928 +644960,200.75,69.818 +644961,206.3,70.243 +644962,203.92,70.084 +644963,201.64,69.933 +644964,199.44,69.788 +644965,204.97,70.316 +644966,202.6,70.123 +644967,200.32,69.937 +644968,198.14,69.759 +644969,203.63,70.389 +644970,201.27,70.162 +644971,199.01,69.942 +644972,196.84,69.729 +644973,202.3,70.462 +644974,199.95,70.2 +644975,197.7,69.947 +644976,195.54,69.7 +644977,200.96,70.534 +644978,198.63,70.239 +644979,196.39,69.951 +644980,194.24,69.671 +644981,199.62,70.607 +644982,197.3,70.278 +644983,195.08,69.956 +644984,192.94,69.642 +644985,198.27,70.679 +644986,195.98,70.316 +644987,193.77,69.961 +644988,191.65,69.613 +644989,196.93,70.75 +644990,194.65,70.355 +644991,192.46,69.966 +644992,190.36,69.584 +644993,195.58,70.822 +644994,193.32,70.393 +644995,191.16,69.971 +644996,189.06,69.556 +644997,194.24,70.893 +644998,192,70.431 +644999,189.85,69.977 +645000,187.77,69.528 +645001,192.89,70.963 +645002,190.67,70.47 +645003,188.54,69.982 +645004,186.49,69.501 +645005,191.53,71.033 +645006,189.34,70.507 +645007,187.23,69.988 +645008,185.2,69.474 +645009,190.18,71.103 +645010,188.01,70.545 +645011,185.93,69.993 +645012,183.91,69.447 +645013,188.83,71.172 +645014,186.68,70.583 +645015,184.62,69.999 +645016,182.63,69.421 +645017,187.47,71.241 +645018,185.36,70.62 +645019,183.32,70.005 +645020,181.35,69.395 +645021,186.11,71.309 +645022,184.03,70.658 +645023,182.01,70.011 +645024,180.07,69.37 +645025,184.75,71.377 +645026,182.69,70.695 +645027,180.71,70.017 +645028,178.79,69.345 +645029,183.39,71.444 +645030,181.36,70.732 +645031,179.41,70.024 +645032,177.51,69.321 +645033,182.03,71.51 +645034,180.03,70.768 +645035,178.1,70.031 +645036,176.24,69.297 +645037,180.67,71.576 +645038,178.7,70.805 +645039,176.8,70.037 +645040,174.96,69.274 +645041,179.3,71.641 +645042,177.37,70.841 +645043,175.5,70.044 +645044,173.69,69.251 +645045,177.94,71.706 +645046,176.03,70.877 +645047,174.2,70.052 +645048,172.42,69.23 +645049,176.57,71.77 +645050,174.7,70.913 +645051,172.9,70.059 +645052,171.15,69.208 +645053,175.2,71.833 +645054,173.37,70.949 +645055,171.6,70.067 +645056,169.88,69.188 +645057,173.83,71.895 +645058,172.03,70.984 +645059,170.29,70.075 +645060,168.61,69.168 +645061,172.46,71.957 +645062,170.7,71.019 +645063,169,70.083 +645064,167.34,69.149 +645065,171.08,72.018 +645066,169.36,71.054 +645067,167.7,70.092 +645068,166.08,69.131 +645069,169.71,72.078 +645070,168.03,71.089 +645071,166.4,70.1 +645072,164.81,69.113 +645073,168.33,72.137 +645074,166.69,71.123 +645075,165.1,70.109 +645076,163.55,69.096 +645077,166.96,72.196 +645078,165.35,71.157 +645079,163.8,70.119 +645080,162.29,69.081 +645081,165.58,72.253 +645082,164.02,71.191 +645083,162.5,70.128 +645084,161.03,69.065 +645085,164.2,72.31 +645086,162.68,71.225 +645087,161.2,70.138 +645088,159.77,69.051 +645089,162.82,72.366 +645090,161.34,71.258 +645091,159.91,70.148 +645092,158.51,69.038 +645093,161.44,72.421 +645094,160,71.291 +645095,158.61,70.159 +645096,157.26,69.026 +645097,160.06,72.475 +645098,158.66,71.323 +645099,157.31,70.169 +645100,156,69.014 +645101,158.68,72.528 +645102,157.33,71.356 +645103,156.02,70.18 +645104,154.75,69.003 +645105,157.29,72.58 +645106,155.99,71.388 +645107,154.72,70.192 +645108,153.49,68.994 +645109,155.91,72.631 +645110,154.65,71.419 +645111,153.43,70.203 +645112,152.24,68.985 +645113,154.52,72.682 +645114,153.31,71.451 +645115,152.13,70.215 +645116,150.99,68.978 +645117,153.14,72.731 +645118,151.97,71.481 +645119,150.84,70.228 +645120,149.74,68.971 +645121,151.75,72.779 +645122,150.63,71.512 +645123,149.54,70.24 +645124,148.49,68.965 +645125,150.36,72.826 +645126,149.29,71.542 +645127,148.25,70.253 +645128,147.24,68.961 +645129,148.97,72.872 +645130,147.95,71.572 +645131,146.95,70.267 +645132,145.99,68.957 +645133,147.58,72.918 +645134,146.6,71.602 +645135,145.66,70.281 +645136,144.74,68.955 +645137,146.2,72.962 +645138,145.26,71.631 +645139,144.36,70.295 +645140,143.5,68.953 +645141,144.8,73.005 +645142,143.92,71.66 +645143,143.07,70.309 +645144,142.25,68.953 +645145,143.41,73.046 +645146,142.58,71.688 +645147,141.78,70.324 +645148,141.01,68.954 +645149,142.02,73.087 +645150,141.24,71.717 +645151,140.48,70.339 +645152,139.76,68.956 +645153,140.63,73.127 +645154,139.9,71.744 +645155,139.19,70.355 +645156,138.52,68.959 +645157,139.24,73.165 +645158,138.55,71.772 +645159,137.9,70.371 +645160,137.27,68.963 +645161,137.85,73.203 +645162,137.21,71.799 +645163,136.61,70.387 +645164,136.03,68.969 +645165,136.45,73.239 +645166,135.87,71.825 +645167,135.31,70.404 +645168,134.79,68.975 +645169,135.06,73.274 +645170,134.52,71.852 +645171,134.02,70.421 +645172,133.55,68.983 +645173,133.67,73.308 +645174,133.18,71.877 +645175,132.73,70.438 +645176,132.3,68.992 +645177,132.27,73.341 +645178,131.84,71.903 +645179,131.44,70.456 +645180,131.06,69.002 +645181,130.88,73.373 +645182,130.5,71.928 +645183,130.14,70.474 +645184,129.82,69.013 +645185,129.48,73.404 +645186,129.15,71.953 +645187,128.85,70.493 +645188,128.58,69.026 +645189,128.09,73.433 +645190,127.81,71.977 +645191,127.56,70.512 +645192,127.34,69.039 +645193,126.7,73.461 +645194,126.47,72.001 +645195,126.27,70.531 +645196,126.1,69.054 +645197,125.3,73.488 +645198,125.12,72.024 +645199,124.98,70.551 +645200,124.86,69.07 +645201,123.91,73.514 +645202,123.78,72.047 +645203,123.68,70.571 +645204,123.62,69.088 +645205,122.51,73.539 +645206,122.44,72.07 +645207,122.39,70.592 +645208,122.38,69.106 +645209,121.12,73.563 +645210,121.09,72.093 +645211,121.1,70.613 +645212,121.14,69.126 +645213,119.72,73.585 +645214,119.75,72.114 +645215,119.81,70.635 +645216,119.9,69.147 +645217,118.33,73.606 +645218,118.41,72.136 +645219,118.52,70.656 +645220,118.66,69.169 +645221,116.94,73.626 +645222,117.06,72.157 +645223,117.22,70.679 +645224,117.42,69.192 +645225,115.54,73.645 +645226,115.72,72.178 +645227,115.93,70.701 +645228,116.18,69.217 +645229,114.15,73.663 +645230,114.38,72.198 +645231,114.64,70.724 +645232,114.94,69.243 +645233,112.75,73.679 +645234,113.03,72.218 +645235,113.35,70.748 +645236,113.7,69.27 +645237,111.36,73.695 +645238,111.69,72.238 +645239,112.05,70.772 +645240,112.46,69.298 +645241,109.97,73.709 +645242,110.35,72.257 +645243,110.76,70.796 +645244,111.22,69.327 +645245,108.58,73.722 +645246,109,72.276 +645247,109.47,70.82 +645248,109.98,69.358 +645249,107.18,73.734 +645250,107.66,72.294 +645251,108.18,70.845 +645252,108.74,69.39 +645253,105.79,73.744 +645254,106.32,72.312 +645255,106.88,70.871 +645256,107.5,69.423 +645257,104.4,73.754 +645258,104.97,72.329 +645259,105.59,70.897 +645260,106.25,69.457 +645261,103.01,73.762 +645262,103.63,72.347 +645263,104.3,70.923 +645264,105.01,69.493 +645265,101.62,73.77 +645266,102.29,72.363 +645267,103,70.95 +645268,103.77,69.529 +645269,100.23,73.776 +645270,100.95,72.38 +645271,101.71,70.976 +645272,102.52,69.567 +645273,98.845,73.781 +645274,99.606,72.396 +645275,100.42,71.004 +645276,101.28,69.606 +645277,97.457,73.785 +645278,98.264,72.412 +645279,99.122,71.032 +645280,100.03,69.646 +645281,96.07,73.788 +645282,96.923,72.427 +645283,97.828,71.06 +645284,98.788,69.687 +645285,94.683,73.789 +645286,95.582,72.442 +645287,96.533,71.088 +645288,97.542,69.73 +645289,93.298,73.79 +645290,94.241,72.457 +645291,95.238,71.117 +645292,96.295,69.773 +645293,91.913,73.79 +645294,92.9,72.471 +645295,93.943,71.146 +645296,95.046,69.817 +645297,90.529,73.788 +645298,91.559,72.485 +645299,92.648,71.176 +645300,93.797,69.863 +645301,89.146,73.786 +645302,90.219,72.498 +645303,91.352,71.206 +645304,92.548,69.91 +645305,87.763,73.782 +645306,88.879,72.511 +645307,90.056,71.236 +645308,91.297,69.958 +645309,86.382,73.778 +645310,87.54,72.524 +645311,88.759,71.267 +645312,90.045,70.006 +645313,85.001,73.772 +645314,86.2,72.537 +645315,87.462,71.298 +645316,88.793,70.056 +645317,83.622,73.766 +645318,84.861,72.549 +645319,86.165,71.329 +645320,87.539,70.107 +645321,82.243,73.758 +645322,83.523,72.561 +645323,84.868,71.36 +645324,86.284,70.159 +645325,80.866,73.75 +645326,82.184,72.572 +645327,83.57,71.392 +645328,85.029,70.212 +645329,79.489,73.74 +645330,80.846,72.584 +645331,82.272,71.425 +645332,83.772,70.265 +645333,78.114,73.73 +645334,79.509,72.595 +645335,80.973,71.457 +645336,82.514,70.32 +645337,76.74,73.719 +645338,78.171,72.605 +645339,79.674,71.49 +645340,81.254,70.376 +645341,75.366,73.707 +645342,76.834,72.615 +645343,78.375,71.523 +645344,79.994,70.432 +645345,73.994,73.694 +645346,75.498,72.625 +645347,77.075,71.557 +645348,78.732,70.49 +645349,72.624,73.68 +645350,74.162,72.635 +645351,75.775,71.591 +645352,77.469,70.548 +645353,71.254,73.665 +645354,72.826,72.645 +645355,74.474,71.625 +645356,76.205,70.607 +645357,69.886,73.649 +645358,71.491,72.654 +645359,73.173,71.659 +645360,74.939,70.667 +645361,68.519,73.633 +645362,70.156,72.663 +645363,71.871,71.694 +645364,73.673,70.728 +645365,67.153,73.616 +645366,68.821,72.671 +645367,70.569,71.728 +645368,72.404,70.79 +645369,65.788,73.598 +645370,67.487,72.68 +645371,69.266,71.764 +645372,71.134,70.852 +645373,64.425,73.58 +645374,66.154,72.688 +645375,67.963,71.799 +645376,69.863,70.915 +645377,63.063,73.56 +645378,64.82,72.696 +645379,66.66,71.835 +645380,68.59,70.979 +645381,61.703,73.54 +645382,63.488,72.703 +645383,65.356,71.87 +645384,67.316,71.043 +645385,60.343,73.519 +645386,62.155,72.711 +645387,64.051,71.906 +645388,66.041,71.108 +645389,58.986,73.498 +645390,60.823,72.718 +645391,62.746,71.943 +645392,64.763,71.174 +645393,57.629,73.476 +645394,59.492,72.725 +645395,61.441,71.979 +645396,63.485,71.241 +645397,56.274,73.453 +645398,58.161,72.732 +645399,60.135,72.016 +645400,62.204,71.308 +645401,54.921,73.43 +645402,56.831,72.739 +645403,58.828,72.053 +645404,60.922,71.375 +645405,53.569,73.407 +645406,55.501,72.745 +645407,57.521,72.09 +645408,59.639,71.443 +645409,52.218,73.382 +645410,54.172,72.751 +645411,56.213,72.127 +645412,58.353,71.512 +645413,50.869,73.357 +645414,52.843,72.757 +645415,54.905,72.165 +645416,57.066,71.581 +645417,49.522,73.332 +645418,51.514,72.763 +645419,53.596,72.202 +645420,55.778,71.651 +645421,48.176,73.306 +645422,50.186,72.769 +645423,52.287,72.24 +645424,54.488,71.721 +645425,46.831,73.28 +645426,48.859,72.775 +645427,50.977,72.278 +645428,53.196,71.791 +645429,45.488,73.254 +645430,47.532,72.78 +645431,49.666,72.316 +645432,51.902,71.862 +645433,44.147,73.227 +645434,46.206,72.786 +645435,48.355,72.354 +645436,50.606,71.933 +645437,42.807,73.199 +645438,44.88,72.791 +645439,47.043,72.392 +645440,49.309,72.005 +645441,41.469,73.171 +645442,43.555,72.796 +645443,45.731,72.431 +645444,48.01,72.077 +645445,40.132,73.143 +645446,42.23,72.801 +645447,44.418,72.469 +645448,46.71,72.149 +645449,38.797,73.115 +645450,40.906,72.806 +645451,43.105,72.508 +645452,45.407,72.221 +645453,37.464,73.087 +645454,39.582,72.811 +645455,41.791,72.546 +645456,44.103,72.294 +645457,36.132,73.058 +645458,38.259,72.816 +645459,40.476,72.585 +645460,42.797,72.367 +645461,34.802,73.029 +645462,36.936,72.821 +645463,39.161,72.624 +645464,41.489,72.44 +645465,33.473,73 +645466,35.614,72.825 +645467,37.845,72.663 +645468,40.18,72.513 +645469,32.146,72.97 +645470,34.293,72.83 +645471,36.529,72.701 +645472,38.868,72.586 +645473,30.821,72.941 +645474,32.972,72.835 +645475,35.212,72.74 +645476,37.555,72.659 +645477,29.497,72.911 +645478,31.651,72.839 +645479,33.895,72.779 +645480,36.24,72.733 +645481,28.175,72.882 +645482,30.332,72.844 +645483,32.577,72.818 +645484,34.923,72.806 +645485,26.855,72.852 +645486,29.012,72.848 +645487,31.258,72.857 +645488,33.604,72.88 +645489,25.536,72.822 +645490,27.694,72.853 +645491,29.938,72.896 +645492,32.284,72.953 +645493,24.219,72.793 +645494,26.375,72.858 +645495,28.619,72.935 +645496,30.962,73.026 +645497,22.903,72.763 +645498,25.058,72.862 +645499,27.298,72.974 +645500,29.638,73.1 +645501,21.589,72.734 +645502,23.74,72.867 +645503,25.977,73.013 +645504,28.312,73.173 +645505,20.277,72.704 +645506,22.424,72.872 +645507,24.655,73.052 +645508,26.984,73.246 +645509,18.967,72.675 +645510,21.108,72.876 +645511,23.333,73.09 +645512,25.655,73.318 +645513,17.658,72.646 +645514,19.792,72.881 +645515,22.01,73.129 +645516,24.324,73.391 +645517,16.35,72.617 +645518,18.477,72.886 +645519,20.687,73.168 +645520,22.991,73.464 +645521,15.044,72.588 +645522,17.163,72.891 +645523,19.363,73.206 +645524,21.656,73.536 +645525,13.74,72.559 +645526,15.849,72.896 +645527,18.038,73.245 +645528,20.32,73.608 +645529,12.438,72.531 +645530,14.536,72.901 +645531,16.713,73.283 +645532,18.982,73.679 +645533,11.137,72.503 +645534,13.223,72.906 +645535,15.387,73.322 +645536,17.642,73.751 +645537,9.8374,72.475 +645538,11.91,72.912 +645539,14.061,73.36 +645540,16.3,73.821 +645541,8.5397,72.448 +645542,10.599,72.917 +645543,12.734,73.398 +645544,14.957,73.892 +645545,7.2434,72.421 +645546,9.2873,72.923 +645547,11.406,73.436 +645548,13.612,73.962 +645549,5.9488,72.395 +645550,7.9766,72.928 +645551,10.078,73.474 +645552,12.266,74.032 +645553,4.6556,72.368 +645554,6.6663,72.934 +645555,8.7496,73.512 +645556,10.917,74.101 +645557,3.3641,72.343 +645558,5.3565,72.94 +645559,7.4204,73.549 +645560,9.5675,74.17 +645561,2.074,72.317 +645562,4.0473,72.946 +645563,6.0908,73.586 +645564,8.216,74.238 +645565,0.78543,72.293 +645566,2.7385,72.953 +645567,4.7606,73.624 +645568,6.8629,74.306 +645569,359.5,72.269 +645570,1.4302,72.959 +645571,3.4298,73.661 +645572,5.5083,74.373 +645573,358.21,72.245 +645574,0.12244,72.966 +645575,2.0986,73.697 +645576,4.1521,74.44 +645577,356.93,72.222 +645578,358.82,72.973 +645579,0.76681,73.734 +645580,2.7944,74.506 +645581,355.65,72.199 +645582,357.51,72.98 +645583,359.43,73.771 +645584,1.4352,74.571 +645585,354.36,72.177 +645586,356.2,72.987 +645587,358.1,73.807 +645588,0.074539,74.636 +645589,353.08,72.156 +645590,354.9,72.995 +645591,356.77,73.843 +645592,358.71,74.7 +645593,351.81,72.136 +645594,353.59,73.003 +645595,355.43,73.879 +645596,357.35,74.763 +645597,350.53,72.116 +645598,352.29,73.011 +645599,354.1,73.914 +645600,355.98,74.826 +645601,349.25,72.097 +645602,350.98,73.019 +645603,352.77,73.949 +645604,354.62,74.888 +645605,347.98,72.078 +645606,349.68,73.027 +645607,351.43,73.985 +645608,353.25,74.949 +645609,346.71,72.061 +645610,348.37,73.036 +645611,350.09,74.019 +645612,351.88,75.01 +645613,345.43,72.044 +645614,347.07,73.045 +645615,348.76,74.054 +645616,350.51,75.069 +645617,344.16,72.028 +645618,345.77,73.055 +645619,347.42,74.088 +645620,349.14,75.128 +645621,342.89,72.013 +645622,344.46,73.064 +645623,346.09,74.122 +645624,347.77,75.186 +645625,341.63,71.998 +645626,343.16,73.074 +645627,344.75,74.156 +645628,346.39,75.243 +645629,340.36,71.985 +645630,341.86,73.084 +645631,343.41,74.189 +645632,345.02,75.3 +645633,339.09,71.972 +645634,340.56,73.095 +645635,342.07,74.222 +645636,343.64,75.355 +645637,337.83,71.961 +645638,339.26,73.106 +645639,340.73,74.255 +645640,342.26,75.409 +645641,336.57,71.95 +645642,337.96,73.117 +645643,339.39,74.288 +645644,340.88,75.463 +645645,335.3,71.94 +645646,336.66,73.128 +645647,338.06,74.32 +645648,339.5,75.516 +645649,334.04,71.931 +645650,335.36,73.14 +645651,336.72,74.352 +645652,338.12,75.567 +645653,332.78,71.923 +645654,334.06,73.152 +645655,335.38,74.384 +645656,336.74,75.618 +645657,331.52,71.917 +645658,332.76,73.164 +645659,334.04,74.415 +645660,335.36,75.668 +645661,330.26,71.911 +645662,331.46,73.177 +645663,332.69,74.446 +645664,333.98,75.716 +645665,329.01,71.906 +645666,330.16,73.19 +645667,331.35,74.476 +645668,332.59,75.764 +645669,327.75,71.902 +645670,328.86,73.204 +645671,330.01,74.507 +645672,331.21,75.811 +645673,326.49,71.899 +645674,327.56,73.217 +645675,328.67,74.537 +645676,329.82,75.856 +645677,325.24,71.898 +645678,326.26,73.232 +645679,327.33,74.566 +645680,328.43,75.901 +645681,323.98,71.897 +645682,324.97,73.246 +645683,325.99,74.595 +645684,327.05,75.944 +645685,322.73,71.898 +645686,323.67,73.261 +645687,324.64,74.624 +645688,325.66,75.987 +645689,321.48,71.9 +645690,322.37,73.276 +645691,323.3,74.653 +645692,324.27,76.028 +645693,320.23,71.902 +645694,321.08,73.292 +645695,321.96,74.681 +645696,322.88,76.068 +645697,318.98,71.906 +645698,319.78,73.308 +645699,320.62,74.709 +645700,321.49,76.107 +645701,317.73,71.911 +645702,318.48,73.324 +645703,319.27,74.736 +645704,320.1,76.146 +645705,316.48,71.918 +645706,317.19,73.341 +645707,317.93,74.763 +645708,318.71,76.182 +645709,315.23,71.925 +645710,315.89,73.358 +645711,316.58,74.79 +645712,317.32,76.218 +645713,313.98,71.934 +645714,314.59,73.376 +645715,315.24,74.816 +645716,315.92,76.253 +645717,312.73,71.943 +645718,313.3,73.394 +645719,313.9,74.842 +645720,314.53,76.286 +645721,311.48,71.954 +645722,312,73.412 +645723,312.55,74.867 +645724,313.14,76.319 +645725,310.23,71.967 +645726,310.7,73.431 +645727,311.21,74.892 +645728,311.74,76.35 +645729,308.99,71.98 +645730,309.41,73.45 +645731,309.86,74.917 +645732,310.35,76.38 +645733,307.74,71.994 +645734,308.11,73.47 +645735,308.52,74.942 +645736,308.96,76.409 +645737,306.49,72.01 +645738,306.82,73.49 +645739,307.17,74.965 +645740,307.56,76.437 +645741,305.25,72.027 +645742,305.52,73.51 +645743,305.83,74.989 +645744,306.17,76.463 +645745,304,72.045 +645746,304.23,73.531 +645747,304.48,75.012 +645748,304.77,76.489 +645749,302.76,72.065 +645750,302.93,73.552 +645751,303.14,75.035 +645752,303.38,76.513 +645753,301.51,72.086 +645754,301.64,73.573 +645755,301.79,75.057 +645756,301.99,76.536 +645757,300.26,72.107 +645758,300.34,73.595 +645759,300.45,75.079 +645760,300.59,76.558 +645761,299.02,72.131 +645762,299.05,73.618 +645763,299.1,75.101 +645764,299.2,76.579 +645765,297.77,72.155 +645766,297.75,73.641 +645767,297.76,75.122 +645768,297.8,76.598 +645769,296.53,72.18 +645770,296.45,73.664 +645771,296.41,75.143 +645772,296.41,76.617 +645773,295.28,72.207 +645774,295.16,73.687 +645775,295.07,75.163 +645776,295.01,76.634 +645777,294.04,72.235 +645778,293.86,73.711 +645779,293.72,75.183 +645780,293.62,76.65 +645781,292.79,72.265 +645782,292.57,73.736 +645783,292.38,75.203 +645784,292.22,76.665 +645785,291.55,72.295 +645786,291.27,73.761 +645787,291.03,75.222 +645788,290.83,76.679 +645789,290.3,72.327 +645790,289.98,73.786 +645791,289.69,75.241 +645792,289.44,76.691 +645793,289.05,72.359 +645794,288.68,73.811 +645795,288.34,75.26 +645796,288.04,76.703 +645797,287.81,72.394 +645798,287.39,73.837 +645799,287,75.278 +645800,286.65,76.713 +645801,286.56,72.429 +645802,286.09,73.864 +645803,285.66,75.296 +645804,285.26,76.722 +645805,285.31,72.465 +645806,284.79,73.891 +645807,284.31,75.313 +645808,283.87,76.73 +645809,284.07,72.503 +645810,283.5,73.918 +645811,282.97,75.33 +645812,282.47,76.737 +645813,282.82,72.542 +645814,282.2,73.945 +645815,281.62,75.347 +645816,281.08,76.743 +645817,281.57,72.582 +645818,280.9,73.973 +645819,280.28,75.363 +645820,279.69,76.748 +645821,280.32,72.623 +645822,279.61,74.002 +645823,278.93,75.379 +645824,278.3,76.751 +645825,279.07,72.665 +645826,278.31,74.031 +645827,277.59,75.394 +645828,276.91,76.754 +645829,277.82,72.708 +645830,277.01,74.06 +645831,276.25,75.409 +645832,275.52,76.755 +645833,276.57,72.753 +645834,275.71,74.089 +645835,274.9,75.424 +645836,274.13,76.756 +645837,275.32,72.798 +645838,274.42,74.119 +645839,273.56,75.438 +645840,272.75,76.755 +645841,274.07,72.845 +645842,273.12,74.149 +645843,272.22,75.453 +645844,271.36,76.753 +645845,272.82,72.893 +645846,271.82,74.18 +645847,270.87,75.466 +645848,269.97,76.75 +645849,271.56,72.942 +645850,270.52,74.211 +645851,269.53,75.48 +645852,268.59,76.746 +645853,270.31,72.991 +645854,269.22,74.242 +645855,268.19,75.493 +645856,267.2,76.742 +645857,269.05,73.042 +645858,267.92,74.274 +645859,266.85,75.505 +645860,265.82,76.736 +645861,267.8,73.094 +645862,266.62,74.306 +645863,265.51,75.518 +645864,264.44,76.729 +645865,266.54,73.147 +645866,265.33,74.338 +645867,264.16,75.53 +645868,263.05,76.721 +645869,265.28,73.201 +645870,264.03,74.37 +645871,262.82,75.542 +645872,261.67,76.713 +645873,264.02,73.256 +645874,262.72,74.403 +645875,261.48,75.553 +645876,260.29,76.703 +645877,262.76,73.312 +645878,261.42,74.437 +645879,260.14,75.564 +645880,258.91,76.692 +645881,261.5,73.369 +645882,260.12,74.47 +645883,258.8,75.575 +645884,257.53,76.681 +645885,260.24,73.426 +645886,258.82,74.504 +645887,257.46,75.586 +645888,256.16,76.669 +645889,258.98,73.485 +645890,257.52,74.538 +645891,256.12,75.596 +645892,254.78,76.655 +645893,257.72,73.544 +645894,256.22,74.573 +645895,254.78,75.606 +645896,253.4,76.641 +645897,256.45,73.605 +645898,254.91,74.608 +645899,253.44,75.616 +645900,252.03,76.627 +645901,255.18,73.666 +645902,253.61,74.643 +645903,252.1,75.625 +645904,250.66,76.611 +645905,253.92,73.728 +645906,252.31,74.678 +645907,250.77,75.634 +645908,249.28,76.594 +645909,252.65,73.791 +645910,251,74.714 +645911,249.43,75.643 +645912,247.91,76.577 +645913,251.38,73.854 +645914,249.7,74.749 +645915,248.09,75.652 +645916,246.54,76.559 +645917,250.11,73.918 +645918,248.4,74.786 +645919,246.75,75.66 +645920,245.18,76.541 +645921,248.83,73.983 +645922,247.09,74.822 +645923,245.42,75.669 +645924,243.81,76.521 +645925,247.56,74.049 +645926,245.78,74.858 +645927,244.08,75.677 +645928,242.44,76.501 +645929,246.29,74.115 +645930,244.48,74.895 +645931,242.74,75.684 +645932,241.08,76.48 +645933,245.01,74.182 +645934,243.17,74.932 +645935,241.41,75.692 +645936,239.71,76.459 +645937,243.73,74.25 +645938,241.87,74.97 +645939,240.07,75.699 +645940,238.35,76.437 +645941,242.45,74.318 +645942,240.56,75.007 +645943,238.74,75.706 +645944,236.99,76.414 +645945,241.17,74.387 +645946,239.25,75.045 +645947,237.41,75.713 +645948,235.63,76.391 +645949,239.89,74.456 +645950,237.94,75.082 +645951,236.07,75.72 +645952,234.27,76.367 +645953,238.6,74.526 +645954,236.63,75.12 +645955,234.74,75.727 +645956,232.92,76.343 +645957,237.32,74.597 +645958,235.32,75.159 +645959,233.41,75.733 +645960,231.56,76.318 +645961,236.03,74.668 +645962,234.01,75.197 +645963,232.07,75.74 +645964,230.21,76.293 +645965,234.74,74.739 +645966,232.7,75.236 +645967,230.74,75.746 +645968,228.86,76.267 +645969,233.45,74.811 +645970,231.39,75.274 +645971,229.41,75.752 +645972,227.51,76.241 +645973,232.16,74.883 +645974,230.08,75.313 +645975,228.08,75.758 +645976,226.16,76.215 +645977,230.87,74.955 +645978,228.77,75.352 +645979,226.75,75.764 +645980,224.81,76.188 +645981,229.57,75.028 +645982,227.45,75.391 +645983,225.42,75.769 +645984,223.46,76.16 +645985,228.28,75.101 +645986,226.14,75.43 +645987,224.09,75.775 +645988,222.12,76.133 +645989,226.98,75.174 +645990,224.83,75.469 +645991,222.76,75.78 +645992,220.77,76.105 +645993,225.68,75.248 +645994,223.51,75.509 +645995,221.43,75.786 +645996,219.43,76.077 +645997,224.38,75.322 +645998,222.2,75.548 +645999,220.11,75.791 +646000,218.09,76.048 +646001,223.07,75.396 +646002,220.88,75.588 +646003,218.78,75.796 +646004,216.75,76.02 +646005,221.77,75.47 +646006,219.57,75.627 +646007,217.45,75.802 +646008,215.42,75.991 +646009,220.46,75.544 +646010,218.25,75.667 +646011,216.13,75.807 +646012,214.08,75.962 +646013,219.15,75.619 +646014,216.93,75.706 +646015,214.8,75.812 +646016,212.75,75.933 +646017,217.84,75.693 +646018,215.61,75.746 +646019,213.47,75.817 +646020,211.41,75.904 +646021,216.53,75.768 +646022,214.3,75.786 +646023,212.15,75.822 +646024,210.08,75.874 +646025,215.22,75.843 +646026,212.98,75.825 +646027,210.83,75.827 +646028,208.75,75.845 +646029,213.9,75.917 +646030,211.66,75.865 +646031,209.5,75.832 +646032,207.42,75.816 +646033,212.59,75.992 +646034,210.34,75.905 +646035,208.18,75.837 +646036,206.1,75.786 +646037,211.27,76.066 +646038,209.02,75.945 +646039,206.86,75.842 +646040,204.77,75.757 +646041,209.95,76.141 +646042,207.7,75.984 +646043,205.53,75.847 +646044,203.45,75.728 +646045,208.62,76.215 +646046,206.37,76.024 +646047,204.21,75.853 +646048,202.13,75.698 +646049,207.3,76.289 +646050,205.05,76.064 +646051,202.89,75.858 +646052,200.81,75.669 +646053,205.97,76.364 +646054,203.73,76.103 +646055,201.57,75.863 +646056,199.49,75.64 +646057,204.65,76.437 +646058,202.4,76.143 +646059,200.25,75.868 +646060,198.17,75.611 +646061,203.32,76.511 +646062,201.08,76.182 +646063,198.93,75.874 +646064,196.86,75.583 +646065,201.99,76.584 +646066,199.76,76.222 +646067,197.61,75.879 +646068,195.54,75.554 +646069,200.65,76.657 +646070,198.43,76.261 +646071,196.29,75.885 +646072,194.23,75.526 +646073,199.32,76.73 +646074,197.1,76.3 +646075,194.98,75.89 +646076,192.92,75.498 +646077,197.98,76.803 +646078,195.78,76.339 +646079,193.66,75.896 +646080,191.61,75.471 +646081,196.65,76.875 +646082,194.45,76.379 +646083,192.34,75.902 +646084,190.3,75.444 +646085,195.31,76.946 +646086,193.12,76.417 +646087,191.02,75.908 +646088,189,75.417 +646089,193.97,77.018 +646090,191.8,76.456 +646091,189.71,75.914 +646092,187.69,75.39 +646093,192.62,77.088 +646094,190.47,76.495 +646095,188.39,75.921 +646096,186.39,75.364 +646097,191.28,77.159 +646098,189.14,76.533 +646099,187.08,75.927 +646100,185.09,75.338 +646101,189.93,77.229 +646102,187.81,76.572 +646103,185.76,75.934 +646104,183.79,75.313 +646105,188.59,77.298 +646106,186.48,76.61 +646107,184.45,75.94 +646108,182.49,75.288 +646109,187.24,77.367 +646110,185.15,76.648 +646111,183.14,75.947 +646112,181.19,75.264 +646113,185.89,77.435 +646114,183.82,76.686 +646115,181.82,75.955 +646116,179.9,75.24 +646117,184.53,77.503 +646118,182.48,76.723 +646119,180.51,75.962 +646120,178.61,75.217 +646121,183.18,77.57 +646122,181.15,76.761 +646123,179.2,75.97 +646124,177.31,75.195 +646125,181.83,77.636 +646126,179.82,76.798 +646127,177.89,75.977 +646128,176.02,75.173 +646129,180.47,77.702 +646130,178.48,76.835 +646131,176.58,75.985 +646132,174.73,75.152 +646133,179.11,77.767 +646134,177.15,76.872 +646135,175.27,75.993 +646136,173.44,75.131 +646137,177.75,77.831 +646138,175.82,76.908 +646139,173.95,76.002 +646140,172.16,75.111 +646141,176.39,77.895 +646142,174.48,76.945 +646143,172.65,76.011 +646144,170.87,75.092 +646145,175.03,77.958 +646146,173.15,76.981 +646147,171.34,76.02 +646148,169.59,75.073 +646149,173.66,78.02 +646150,171.81,77.017 +646151,170.03,76.029 +646152,168.3,75.055 +646153,172.3,78.081 +646154,170.47,77.052 +646155,168.72,76.038 +646156,167.02,75.039 +646157,170.93,78.142 +646158,169.14,77.088 +646159,167.41,76.048 +646160,165.74,75.022 +646161,169.56,78.201 +646162,167.8,77.123 +646163,166.1,76.058 +646164,164.46,75.007 +646165,168.19,78.26 +646166,166.46,77.157 +646167,164.8,76.068 +646168,163.18,74.992 +646169,166.82,78.318 +646170,165.12,77.192 +646171,163.49,76.079 +646172,161.91,74.979 +646173,165.45,78.375 +646174,163.79,77.226 +646175,162.18,76.09 +646176,160.63,74.966 +646177,164.08,78.431 +646178,162.45,77.26 +646179,160.88,76.101 +646180,159.36,74.954 +646181,162.7,78.487 +646182,161.11,77.294 +646183,159.57,76.113 +646184,158.09,74.943 +646185,161.33,78.541 +646186,159.77,77.327 +646187,158.26,76.125 +646188,156.81,74.933 +646189,159.95,78.594 +646190,158.43,77.36 +646191,156.96,76.137 +646192,155.54,74.924 +646193,158.57,78.647 +646194,157.09,77.393 +646195,155.65,76.149 +646196,154.27,74.916 +646197,157.2,78.698 +646198,155.74,77.425 +646199,154.35,76.162 +646200,153,74.909 +646201,155.82,78.748 +646202,154.4,77.457 +646203,153.05,76.175 +646204,151.74,74.903 +646205,154.44,78.798 +646206,153.06,77.489 +646207,151.74,76.189 +646208,150.47,74.898 +646209,153.05,78.846 +646210,151.72,77.52 +646211,150.44,76.203 +646212,149.2,74.894 +646213,151.67,78.893 +646214,150.38,77.551 +646215,149.14,76.217 +646216,147.94,74.891 +646217,150.29,78.94 +646218,149.03,77.582 +646219,147.83,76.232 +646220,146.67,74.889 +646221,148.9,78.985 +646222,147.69,77.612 +646223,146.53,76.247 +646224,145.41,74.888 +646225,147.52,79.029 +646226,146.35,77.642 +646227,145.23,76.262 +646228,144.15,74.889 +646229,146.13,79.072 +646230,145,77.672 +646231,143.93,76.278 +646232,142.89,74.89 +646233,144.74,79.114 +646234,143.66,77.701 +646235,142.62,76.294 +646236,141.63,74.893 +646237,143.36,79.155 +646238,142.32,77.73 +646239,141.32,76.31 +646240,140.37,74.896 +646241,141.97,79.194 +646242,140.97,77.758 +646243,140.02,76.327 +646244,139.11,74.901 +646245,140.58,79.233 +646246,139.63,77.786 +646247,138.72,76.344 +646248,137.85,74.907 +646249,139.19,79.27 +646250,138.28,77.814 +646251,137.42,76.362 +646252,136.59,74.915 +646253,137.8,79.306 +646254,136.94,77.841 +646255,136.12,76.38 +646256,135.34,74.923 +646257,136.41,79.342 +646258,135.59,77.868 +646259,134.82,76.399 +646260,134.08,74.933 +646261,135.02,79.375 +646262,134.25,77.895 +646263,133.52,76.417 +646264,132.82,74.943 +646265,133.62,79.408 +646266,132.9,77.921 +646267,132.22,76.437 +646268,131.57,74.955 +646269,132.23,79.44 +646270,131.55,77.947 +646271,130.92,76.456 +646272,130.31,74.968 +646273,130.84,79.47 +646274,130.21,77.972 +646275,129.62,76.476 +646276,129.06,74.983 +646277,129.45,79.5 +646278,128.86,77.998 +646279,128.32,76.497 +646280,127.8,74.998 +646281,128.05,79.528 +646282,127.52,78.022 +646283,127.02,76.518 +646284,126.55,75.015 +646285,126.66,79.555 +646286,126.17,78.046 +646287,125.72,76.539 +646288,125.3,75.033 +646289,125.26,79.58 +646290,124.82,78.07 +646291,124.42,76.561 +646292,124.04,75.053 +646293,123.87,79.605 +646294,123.48,78.094 +646295,123.12,76.583 +646296,122.79,75.073 +646297,122.48,79.628 +646298,122.13,78.117 +646299,121.82,76.605 +646300,121.54,75.095 +646301,121.08,79.65 +646302,120.78,78.139 +646303,120.52,76.628 +646304,120.29,75.118 +646305,119.69,79.671 +646306,119.44,78.162 +646307,119.22,76.652 +646308,119.03,75.142 +646309,118.29,79.691 +646310,118.09,78.184 +646311,117.92,76.675 +646312,117.78,75.168 +646313,116.9,79.71 +646314,116.74,78.205 +646315,116.62,76.7 +646316,116.53,75.195 +646317,115.5,79.727 +646318,115.39,78.226 +646319,115.32,76.724 +646320,115.28,75.223 +646321,114.11,79.743 +646322,114.05,78.247 +646323,114.02,76.749 +646324,114.03,75.252 +646325,112.71,79.758 +646326,112.7,78.267 +646327,112.72,76.775 +646328,112.77,75.282 +646329,111.32,79.772 +646330,111.35,78.287 +646331,111.42,76.801 +646332,111.52,75.314 +646333,109.92,79.785 +646334,110,78.307 +646335,110.12,76.827 +646336,110.27,75.347 +646337,108.53,79.797 +646338,108.66,78.326 +646339,108.82,76.854 +646340,109.02,75.381 +646341,107.13,79.807 +646342,107.31,78.345 +646343,107.52,76.881 +646344,107.77,75.417 +646345,105.74,79.816 +646346,105.96,78.363 +646347,106.22,76.908 +646348,106.51,75.453 +646349,104.34,79.824 +646350,104.62,78.381 +646351,104.92,76.936 +646352,105.26,75.491 +646353,102.95,79.831 +646354,103.27,78.398 +646355,103.62,76.964 +646356,104.01,75.53 +646357,101.56,79.837 +646358,101.92,78.416 +646359,102.32,76.993 +646360,102.76,75.57 +646361,100.16,79.842 +646362,100.58,78.433 +646363,101.02,77.022 +646364,101.5,75.612 +646365,98.771,79.845 +646366,99.229,78.449 +646367,99.722,77.051 +646368,100.25,75.654 +646369,97.378,79.848 +646370,97.883,78.465 +646371,98.421,77.081 +646372,98.994,75.698 +646373,95.987,79.849 +646374,96.536,78.481 +646375,97.12,77.111 +646376,97.74,75.743 +646377,94.596,79.85 +646378,95.19,78.496 +646379,95.819,77.142 +646380,96.485,75.789 +646381,93.205,79.849 +646382,93.844,78.511 +646383,94.518,77.173 +646384,95.229,75.836 +646385,91.815,79.847 +646386,92.498,78.526 +646387,93.217,77.204 +646388,93.973,75.884 +646389,90.426,79.844 +646390,91.152,78.54 +646391,91.915,77.236 +646392,92.716,75.934 +646393,89.037,79.841 +646394,89.807,78.554 +646395,90.614,77.268 +646396,91.458,75.984 +646397,87.649,79.836 +646398,88.461,78.568 +646399,89.311,77.301 +646400,90.2,76.035 +646401,86.261,79.83 +646402,87.116,78.581 +646403,88.009,77.333 +646404,88.942,76.088 +646405,84.874,79.823 +646406,85.771,78.594 +646407,86.707,77.366 +646408,87.682,76.142 +646409,83.488,79.815 +646410,84.426,78.607 +646411,85.404,77.4 +646412,86.422,76.196 +646413,82.103,79.806 +646414,83.082,78.619 +646415,84.101,77.434 +646416,85.161,76.252 +646417,80.719,79.797 +646418,81.738,78.631 +646419,82.797,77.468 +646420,83.899,76.308 +646421,79.335,79.786 +646422,80.394,78.643 +646423,81.493,77.502 +646424,82.636,76.366 +646425,77.953,79.775 +646426,79.05,78.654 +646427,80.189,77.537 +646428,81.373,76.425 +646429,76.571,79.762 +646430,77.707,78.666 +646431,78.885,77.572 +646432,80.108,76.484 +646433,75.19,79.749 +646434,76.363,78.676 +646435,77.58,77.608 +646436,78.843,76.545 +646437,73.81,79.735 +646438,75.021,78.687 +646439,76.275,77.643 +646440,77.576,76.606 +646441,72.431,79.72 +646442,73.678,78.697 +646443,74.97,77.679 +646444,76.309,76.668 +646445,71.054,79.704 +646446,72.336,78.707 +646447,73.664,77.716 +646448,75.04,76.731 +646449,69.677,79.687 +646450,70.994,78.717 +646451,72.358,77.752 +646452,73.771,76.795 +646453,68.301,79.67 +646454,69.652,78.727 +646455,71.051,77.789 +646456,72.5,76.86 +646457,66.926,79.652 +646458,68.311,78.736 +646459,69.744,77.826 +646460,71.229,76.925 +646461,65.553,79.633 +646462,66.97,78.745 +646463,68.437,77.863 +646464,69.956,76.991 +646465,64.18,79.613 +646466,65.63,78.754 +646467,67.129,77.901 +646468,68.682,77.058 +646469,62.809,79.593 +646470,64.289,78.762 +646471,65.821,77.939 +646472,67.407,77.126 +646473,61.439,79.572 +646474,62.95,78.77 +646475,64.512,77.977 +646476,66.13,77.194 +646477,60.07,79.55 +646478,61.61,78.779 +646479,63.203,78.015 +646480,64.852,77.263 +646481,58.702,79.528 +646482,60.271,78.786 +646483,61.894,78.054 +646484,63.573,77.333 +646485,57.335,79.506 +646486,58.933,78.794 +646487,60.584,78.093 +646488,62.293,77.403 +646489,55.97,79.482 +646490,57.594,78.802 +646491,59.274,78.132 +646492,61.012,77.474 +646493,54.606,79.458 +646494,56.257,78.809 +646495,57.963,78.171 +646496,59.729,77.546 +646497,53.243,79.434 +646498,54.919,78.816 +646499,56.652,78.21 +646500,58.444,77.617 +646501,51.882,79.409 +646502,53.582,78.823 +646503,55.34,78.249 +646504,57.159,77.69 +646505,50.522,79.383 +646506,52.246,78.83 +646507,54.027,78.289 +646508,55.872,77.763 +646509,49.163,79.358 +646510,50.91,78.837 +646511,52.715,78.329 +646512,54.583,77.836 +646513,47.805,79.331 +646514,49.574,78.843 +646515,51.401,78.369 +646516,53.293,77.91 +646517,46.449,79.305 +646518,48.239,78.85 +646519,50.088,78.409 +646520,52.002,77.985 +646521,45.095,79.277 +646522,46.904,78.856 +646523,48.773,78.449 +646524,50.709,78.059 +646525,43.741,79.25 +646526,45.569,78.862 +646527,47.459,78.49 +646528,49.414,78.134 +646529,42.39,79.222 +646530,44.236,78.868 +646531,46.143,78.53 +646532,48.119,78.21 +646533,41.039,79.194 +646534,42.902,78.874 +646535,44.828,78.571 +646536,46.821,78.285 +646537,39.69,79.166 +646538,41.569,78.88 +646539,43.511,78.611 +646540,45.522,78.361 +646541,38.343,79.137 +646542,40.237,78.886 +646543,42.194,78.652 +646544,44.222,78.437 +646545,36.997,79.109 +646546,38.905,78.892 +646547,40.877,78.693 +646548,42.92,78.514 +646549,35.652,79.08 +646550,37.573,78.898 +646551,39.559,78.734 +646552,41.616,78.59 +646553,34.309,79.05 +646554,36.242,78.904 +646555,38.24,78.775 +646556,40.311,78.667 +646557,32.967,79.021 +646558,34.911,78.909 +646559,36.921,78.816 +646560,39.004,78.744 +646561,31.627,78.992 +646562,33.581,78.915 +646563,35.602,78.857 +646564,37.695,78.82 +646565,30.288,78.962 +646566,32.252,78.92 +646567,34.282,78.898 +646568,36.385,78.897 +646569,28.951,78.933 +646570,30.923,78.926 +646571,32.961,78.939 +646572,35.074,78.974 +646573,27.615,78.903 +646574,29.594,78.932 +646575,31.64,78.98 +646576,33.76,79.051 +646577,26.281,78.874 +646578,28.266,78.937 +646579,30.318,79.021 +646580,32.445,79.128 +646581,24.948,78.844 +646582,26.938,78.943 +646583,28.996,79.062 +646584,31.129,79.205 +646585,23.617,78.815 +646586,25.611,78.949 +646587,27.673,79.103 +646588,29.81,79.282 +646589,22.287,78.785 +646590,24.284,78.954 +646591,26.349,79.144 +646592,28.491,79.358 +646593,20.959,78.756 +646594,22.958,78.96 +646595,25.025,79.185 +646596,27.169,79.435 +646597,19.632,78.727 +646598,21.633,78.966 +646599,23.701,79.226 +646600,25.846,79.511 +646601,18.307,78.698 +646602,20.307,78.972 +646603,22.376,79.267 +646604,24.521,79.587 +646605,16.983,78.669 +646606,18.983,78.978 +646607,21.05,79.308 +646608,23.194,79.663 +646609,15.661,78.641 +646610,17.658,78.984 +646611,19.724,79.349 +646612,21.866,79.739 +646613,14.341,78.613 +646614,16.335,78.99 +646615,18.397,79.389 +646616,20.537,79.814 +646617,13.022,78.585 +646618,15.012,78.996 +646619,17.069,79.43 +646620,19.205,79.89 +646621,11.704,78.557 +646622,13.689,79.002 +646623,15.742,79.471 +646624,17.872,79.964 +646625,10.388,78.53 +646626,12.367,79.009 +646627,14.413,79.511 +646628,16.537,80.0387 +646629,9.0731,78.503 +646630,11.045,79.015 +646631,13.084,79.551 +646632,15.201,80.1126 +646633,7.76,78.476 +646634,9.7235,79.022 +646635,11.754,79.591 +646636,13.863,80.1862 +646637,6.4483,78.45 +646638,8.4027,79.029 +646639,10.424,79.631 +646640,12.523,80.2593 +646641,5.1381,78.424 +646642,7.0824,79.036 +646643,9.0936,79.671 +646644,11.182,80.3319 +646645,3.8293,78.399 +646646,5.7626,79.043 +646647,7.7624,79.711 +646648,9.8394,80.404 +646649,2.522,78.374 +646650,4.4432,79.05 +646651,6.4307,79.75 +646652,8.495,80.4756 +646653,1.2162,78.35 +646654,3.1243,79.058 +646655,5.0984,79.789 +646656,7.149,80.5466 +646657,359.91,78.326 +646658,1.8059,79.066 +646659,3.7656,79.829 +646660,5.8015,80.617 +646661,358.61,78.303 +646662,0.48791,79.074 +646663,2.4322,79.868 +646664,4.4524,80.6869 +646665,357.31,78.28 +646666,359.17,79.082 +646667,1.0984,79.906 +646668,3.1018,80.7561 +646669,356.01,78.258 +646670,357.85,79.09 +646671,359.76,79.945 +646672,1.7497,80.8246 +646673,354.71,78.237 +646674,356.54,79.099 +646675,358.43,79.983 +646676,0.39599,80.8925 +646677,353.41,78.216 +646678,355.22,79.108 +646679,357.09,80.0212 +646680,359.04,80.9597 +646681,352.11,78.197 +646682,353.9,79.117 +646683,355.76,80.059 +646684,357.68,81.0261 +646685,350.82,78.177 +646686,352.59,79.126 +646687,354.42,80.0966 +646688,356.33,81.0918 +646689,349.53,78.159 +646690,351.27,79.135 +646691,353.08,80.134 +646692,354.97,81.1567 +646693,348.23,78.141 +646694,349.96,79.145 +646695,351.75,80.1711 +646696,353.61,81.2208 +646697,346.94,78.124 +646698,348.65,79.155 +646699,350.41,80.208 +646700,352.24,81.2842 +646701,345.65,78.108 +646702,347.33,79.166 +646703,349.07,80.2445 +646704,350.88,81.3466 +646705,344.37,78.093 +646706,346.02,79.176 +646707,347.73,80.2808 +646708,349.51,81.4082 +646709,343.08,78.078 +646710,344.71,79.187 +646711,346.39,80.3169 +646712,348.15,81.469 +646713,341.79,78.065 +646714,343.39,79.199 +646715,345.05,80.3526 +646716,346.78,81.5288 +646717,340.51,78.052 +646718,342.08,79.21 +646719,343.71,80.388 +646720,345.41,81.5878 +646721,339.22,78.041 +646722,340.77,79.222 +646723,342.37,80.4231 +646724,344.04,81.6458 +646725,337.94,78.03 +646726,339.46,79.234 +646727,341.03,80.458 +646728,342.67,81.7028 +646729,336.66,78.02 +646730,338.15,79.247 +646731,339.69,80.4925 +646732,341.3,81.7589 +646733,335.38,78.011 +646734,336.84,79.259 +646735,338.35,80.5266 +646736,339.92,81.8139 +646737,334.1,78.003 +646738,335.53,79.273 +646739,337.01,80.5605 +646740,338.55,81.868 +646741,332.82,77.996 +646742,334.22,79.286 +646743,335.66,80.594 +646744,337.17,81.9211 +646745,331.55,77.99 +646746,332.91,79.3 +646747,334.32,80.6272 +646748,335.79,81.9731 +646749,330.27,77.986 +646750,331.6,79.314 +646751,332.98,80.66 +646752,334.41,82.0241 +646753,329,77.982 +646754,330.29,79.329 +646755,331.63,80.6925 +646756,333.04,82.074 +646757,327.72,77.979 +646758,328.98,79.344 +646759,330.29,80.7246 +646760,331.65,82.1228 +646761,326.45,77.978 +646762,327.67,79.359 +646763,328.94,80.7564 +646764,330.27,82.1705 +646765,325.18,77.977 +646766,326.36,79.375 +646767,327.6,80.7878 +646768,328.89,82.2172 +646769,323.91,77.978 +646770,325.06,79.391 +646771,326.25,80.8188 +646772,327.51,82.2627 +646773,322.63,77.98 +646774,323.75,79.407 +646775,324.91,80.8495 +646776,326.12,82.3071 +646777,321.37,77.982 +646778,322.44,79.424 +646779,323.56,80.8798 +646780,324.74,82.3503 +646781,320.1,77.987 +646782,321.13,79.441 +646783,322.22,80.9097 +646784,323.35,82.3924 +646785,318.83,77.992 +646786,319.83,79.459 +646787,320.87,80.9392 +646788,321.96,82.4334 +646789,317.56,77.998 +646790,318.52,79.477 +646791,319.52,80.9684 +646792,320.58,82.4732 +646793,316.29,78.006 +646794,317.21,79.495 +646795,318.18,80.9971 +646796,319.19,82.5118 +646797,315.03,78.015 +646798,315.91,79.514 +646799,316.83,81.0255 +646800,317.8,82.5492 +646801,313.76,78.025 +646802,314.6,79.533 +646803,315.48,81.0535 +646804,316.41,82.5854 +646805,312.5,78.036 +646806,313.3,79.553 +646807,314.13,81.081 +646808,315.02,82.6204 +646809,311.23,78.048 +646810,311.99,79.573 +646811,312.79,81.1082 +646812,313.63,82.6543 +646813,309.97,78.062 +646814,310.68,79.593 +646815,311.44,81.135 +646816,312.24,82.6869 +646817,308.71,78.077 +646818,309.38,79.614 +646819,310.09,81.1614 +646820,310.84,82.7183 +646821,307.44,78.093 +646822,308.07,79.636 +646823,308.74,81.1873 +646824,309.45,82.7485 +646825,306.18,78.111 +646826,306.77,79.657 +646827,307.39,81.2129 +646828,308.06,82.7775 +646829,304.92,78.129 +646830,305.46,79.679 +646831,306.04,81.2381 +646832,306.66,82.8052 +646833,303.66,78.149 +646834,304.16,79.702 +646835,304.69,81.2628 +646836,305.27,82.8318 +646837,302.4,78.171 +646838,302.85,79.725 +646839,303.35,81.2871 +646840,303.88,82.8571 +646841,301.14,78.193 +646842,301.55,79.748 +646843,302,81.3111 +646844,302.48,82.8811 +646845,299.88,78.217 +646846,300.24,79.772 +646847,300.65,81.3346 +646848,301.09,82.904 +646849,298.62,78.242 +646850,298.94,79.796 +646851,299.3,81.3577 +646852,299.69,82.9256 +646853,297.36,78.268 +646854,297.64,79.821 +646855,297.95,81.3804 +646856,298.3,82.946 +646857,296.1,78.296 +646858,296.33,79.846 +646859,296.6,81.4027 +646860,296.9,82.9652 +646861,294.84,78.324 +646862,295.03,79.871 +646863,295.25,81.4246 +646864,295.5,82.9831 +646865,293.58,78.355 +646866,293.72,79.897 +646867,293.9,81.4461 +646868,294.11,82.9998 +646869,292.32,78.386 +646870,292.42,79.924 +646871,292.55,81.4671 +646872,292.71,83.0153 +646873,291.06,78.418 +646874,291.11,79.95 +646875,291.2,81.4878 +646876,291.32,83.0297 +646877,289.8,78.452 +646878,289.81,79.978 +646879,289.85,81.508 +646880,289.92,83.0428 +646881,288.54,78.487 +646882,288.5,80.0051 +646883,288.5,81.5279 +646884,288.52,83.0546 +646885,287.28,78.524 +646886,287.2,80.0331 +646887,287.15,81.5474 +646888,287.13,83.0654 +646889,286.02,78.561 +646890,285.89,80.0616 +646891,285.8,81.5664 +646892,285.73,83.0749 +646893,284.76,78.6 +646894,284.59,80.0904 +646895,284.45,81.5851 +646896,284.34,83.0832 +646897,283.5,78.64 +646898,283.28,80.1196 +646899,283.1,81.6034 +646900,282.94,83.0904 +646901,282.24,78.682 +646902,281.98,80.1492 +646903,281.75,81.6212 +646904,281.55,83.0964 +646905,280.98,78.724 +646906,280.67,80.1793 +646907,280.4,81.6387 +646908,280.15,83.1012 +646909,279.72,78.768 +646910,279.37,80.2097 +646911,279.05,81.6558 +646912,278.76,83.1049 +646913,278.46,78.813 +646914,278.06,80.2405 +646915,277.7,81.6726 +646916,277.36,83.1074 +646917,277.2,78.859 +646918,276.76,80.2718 +646919,276.35,81.6889 +646920,275.97,83.1089 +646921,275.94,78.906 +646922,275.45,80.3034 +646923,275,81.7049 +646924,274.57,83.1092 +646925,274.68,78.955 +646926,274.15,80.3354 +646927,273.65,81.7205 +646928,273.18,83.1084 +646929,273.42,79.004 +646930,272.84,80.3677 +646931,272.3,81.7357 +646932,271.79,83.1065 +646933,272.15,79.055 +646934,271.54,80.4005 +646935,270.95,81.7506 +646936,270.39,83.1036 +646937,270.89,79.107 +646938,270.23,80.4336 +646939,269.6,81.7651 +646940,269,83.0996 +646941,269.63,79.16 +646942,268.92,80.4671 +646943,268.25,81.7793 +646944,267.61,83.0945 +646945,268.36,79.214 +646946,267.62,80.5009 +646947,266.9,81.7931 +646948,266.22,83.0884 +646949,267.1,79.269 +646950,266.31,80.5351 +646951,265.55,81.8066 +646952,264.83,83.0813 +646953,265.83,79.325 +646954,265,80.5697 +646955,264.21,81.8197 +646956,263.44,83.0732 +646957,264.56,79.382 +646958,263.7,80.6046 +646959,262.86,81.8325 +646960,262.05,83.0641 +646961,263.3,79.44 +646962,262.39,80.6398 +646963,261.51,81.845 +646964,260.66,83.054 +646965,262.03,79.5 +646966,261.08,80.6754 +646967,260.16,81.8571 +646968,259.28,83.043 +646969,260.76,79.56 +646970,259.77,80.7113 +646971,258.81,81.869 +646972,257.89,83.031 +646973,259.49,79.621 +646974,258.46,80.7475 +646975,257.47,81.8805 +646976,256.5,83.0181 +646977,258.22,79.683 +646978,257.15,80.7841 +646979,256.12,81.8918 +646980,255.12,83.0043 +646981,256.95,79.746 +646982,255.84,80.8209 +646983,254.77,81.9027 +646984,253.73,82.9896 +646985,255.68,79.81 +646986,254.54,80.858 +646987,253.43,81.9133 +646988,252.35,82.9741 +646989,254.41,79.875 +646990,253.23,80.8955 +646991,252.08,81.9237 +646992,250.97,82.9577 +646993,253.13,79.941 +646994,251.92,80.9332 +646995,250.73,81.9338 +646996,249.58,82.9405 +646997,251.86,80.0074 +646998,250.61,80.9712 +646999,249.39,81.9436 +647000,248.2,82.9225 +647001,250.58,80.0748 +647002,249.29,81.0095 +647003,248.04,81.9532 +647004,246.82,82.9038 +647005,249.31,80.143 +647006,247.98,81.048 +647007,246.7,81.9625 +647008,245.45,82.8842 +647009,248.03,80.212 +647010,246.67,81.0868 +647011,245.35,81.9715 +647012,244.07,82.864 +647013,246.75,80.2817 +647014,245.36,81.1259 +647015,244.01,81.9803 +647016,242.69,82.843 +647017,245.47,80.3522 +647018,244.05,81.1652 +647019,242.66,81.9889 +647020,241.31,82.8213 +647021,244.19,80.4233 +647022,242.74,81.2047 +647023,241.32,81.9973 +647024,239.94,82.799 +647025,242.91,80.4952 +647026,241.42,81.2445 +647027,239.97,82.0054 +647028,238.57,82.776 +647029,241.63,80.5677 +647030,240.11,81.2844 +647031,238.63,82.0134 +647032,237.19,82.7524 +647033,240.34,80.6408 +647034,238.79,81.3246 +647035,237.29,82.0211 +647036,235.82,82.7282 +647037,239.06,80.7145 +647038,237.48,81.365 +647039,235.95,82.0287 +647040,234.45,82.7034 +647041,237.77,80.7888 +647042,236.17,81.4055 +647043,234.6,82.036 +647044,233.08,82.6781 +647045,236.48,80.8636 +647046,234.85,81.4463 +647047,233.26,82.0432 +647048,231.72,82.6523 +647049,235.19,80.939 +647050,233.53,81.4872 +647051,231.92,82.0502 +647052,230.35,82.6259 +647053,233.9,81.0148 +647054,232.22,81.5283 +647055,230.58,82.0571 +647056,228.98,82.5991 +647057,232.61,81.0912 +647058,230.9,81.5695 +647059,229.24,82.0638 +647060,227.62,82.5719 +647061,231.32,81.1679 +647062,229.58,81.6109 +647063,227.9,82.0704 +647064,226.26,82.5442 +647065,230.02,81.245 +647066,228.27,81.6524 +647067,226.56,82.0769 +647068,224.89,82.5161 +647069,228.73,81.3226 +647070,226.95,81.694 +647071,225.22,82.0832 +647072,223.53,82.4877 +647073,227.43,81.4004 +647074,225.63,81.7358 +647075,223.88,82.0894 +647076,222.18,82.4589 +647077,226.13,81.4786 +647078,224.31,81.7777 +647079,222.54,82.0955 +647080,220.82,82.4298 +647081,224.83,81.5571 +647082,222.99,81.8196 +647083,221.2,82.1016 +647084,219.46,82.4005 +647085,223.53,81.6359 +647086,221.67,81.8617 +647087,219.86,82.1075 +647088,218.11,82.3708 +647089,222.23,81.7148 +647090,220.35,81.9038 +647091,218.53,82.1134 +647092,216.75,82.341 +647093,220.92,81.794 +647094,219.03,81.946 +647095,217.19,82.1192 +647096,215.4,82.3109 +647097,219.62,81.8733 +647098,217.71,81.9883 +647099,215.85,82.1249 +647100,214.05,82.2806 +647101,218.31,81.9528 +647102,216.39,82.0306 +647103,214.52,82.1306 +647104,212.7,82.2502 +647105,217,82.0324 +647106,215.06,82.073 +647107,213.18,82.1363 +647108,211.35,82.2197 +647109,215.69,82.1121 +647110,213.74,82.1153 +647111,211.85,82.1419 +647112,210.01,82.1891 +647113,214.38,82.1918 +647114,212.42,82.1577 +647115,210.51,82.1475 +647116,208.66,82.1584 +647117,213.07,82.2716 +647118,211.09,82.2001 +647119,209.18,82.1531 +647120,207.32,82.1277 +647121,211.75,82.3513 +647122,209.77,82.2426 +647123,207.84,82.1587 +647124,205.97,82.097 +647125,210.44,82.431 +647126,208.44,82.285 +647127,206.51,82.1643 +647128,204.63,82.0663 +647129,209.12,82.5106 +647130,207.12,82.3273 +647131,205.18,82.17 +647132,203.29,82.0357 +647133,207.8,82.5901 +647134,205.79,82.3697 +647135,203.85,82.1756 +647136,201.96,82.0051 +647137,206.48,82.6695 +647138,204.47,82.412 +647139,202.51,82.1814 +647140,200.62,81.9746 +647141,205.16,82.7487 +647142,203.14,82.4543 +647143,201.18,82.1871 +647144,199.28,81.9443 +647145,203.83,82.8278 +647146,201.81,82.4965 +647147,199.85,82.1929 +647148,197.95,81.9141 +647149,202.51,82.9066 +647150,200.48,82.5386 +647151,198.52,82.1988 +647152,196.62,81.8841 +647153,201.18,82.9852 +647154,199.15,82.5807 +647155,197.19,82.2048 +647156,195.29,81.8544 +647157,199.85,83.0635 +647158,197.82,82.6226 +647159,195.86,82.2108 +647160,193.96,81.8248 +647161,198.52,83.1414 +647162,196.49,82.6645 +647163,194.53,82.2169 +647164,192.63,81.7956 +647165,197.19,83.2191 +647166,195.16,82.7063 +647167,193.2,82.2232 +647168,191.3,81.7666 +647169,195.86,83.2963 +647170,193.83,82.7479 +647171,191.88,82.2296 +647172,189.98,81.738 +647173,194.52,83.3732 +647174,192.5,82.7895 +647175,190.55,82.236 +647176,188.65,81.7098 +647177,193.18,83.4496 +647178,191.17,82.8308 +647179,189.22,82.2427 +647180,187.33,81.6819 +647181,191.85,83.5256 +647182,189.84,82.8721 +647183,187.89,82.2494 +647184,186.01,81.6544 +647185,190.51,83.6011 +647186,188.5,82.9132 +647187,186.57,82.2563 +647188,184.69,81.6274 +647189,189.16,83.6761 +647190,187.17,82.9541 +647191,185.24,82.2634 +647192,183.37,81.6008 +647193,187.82,83.7506 +647194,185.83,82.9948 +647195,183.92,82.2707 +647196,182.06,81.5748 +647197,186.48,83.8245 +647198,184.5,83.0354 +647199,182.59,82.2781 +647200,180.74,81.5492 +647201,185.13,83.8978 +647202,183.16,83.0758 +647203,181.27,82.2857 +647204,179.43,81.5242 +647205,183.78,83.9704 +647206,181.83,83.1159 +647207,179.94,82.2935 +647208,178.11,81.4998 +647209,182.44,84.0425 +647210,180.49,83.1559 +647211,178.62,82.3015 +647212,176.8,81.4759 +647213,181.09,84.1138 +647214,179.16,83.1957 +647215,177.29,82.3097 +647216,175.49,81.4527 +647217,179.73,84.1845 +647218,177.82,83.2352 +647219,175.97,82.3182 +647220,174.18,81.4301 +647221,178.38,84.2544 +647222,176.48,83.2745 +647223,174.65,82.3269 +647224,172.88,81.4082 +647225,177.03,84.3236 +647226,175.14,83.3135 +647227,173.33,82.3358 +647228,171.57,81.387 +647229,175.67,84.3921 +647230,173.8,83.3523 +647231,172.01,82.3449 +647232,170.27,81.3665 +647233,174.31,84.4597 +647234,172.46,83.3908 +647235,170.68,82.3543 +647236,168.96,81.3468 +647237,172.95,84.5265 +647238,171.12,83.4291 +647239,169.36,82.364 +647240,167.66,81.3278 +647241,171.59,84.5925 +647242,169.78,83.4671 +647243,168.04,82.374 +647244,166.36,81.3097 +647245,170.23,84.6575 +647246,168.44,83.5048 +647247,166.72,82.3842 +647248,165.06,81.2923 +647249,168.87,84.7218 +647250,167.1,83.5422 +647251,165.4,82.3947 +647252,163.76,81.2758 +647253,167.5,84.7851 +647254,165.76,83.5794 +647255,164.08,82.4055 +647256,162.47,81.2601 +647257,166.14,84.8474 +647258,164.42,83.6162 +647259,162.77,82.4166 +647260,161.17,81.2453 +647261,164.77,84.9089 +647262,163.07,83.6527 +647263,161.45,82.428 +647264,159.88,81.2314 +647265,163.4,84.9693 +647266,161.73,83.6889 +647267,160.13,82.4397 +647268,158.58,81.2185 +647269,162.03,85.0288 +647270,160.39,83.7248 +647271,158.81,82.4517 +647272,157.29,81.2065 +647273,160.66,85.0872 +647274,159.04,83.7603 +647275,157.49,82.4641 +647276,156,81.1954 +647277,159.29,85.1446 +647278,157.7,83.7955 +647279,156.18,82.4767 +647280,154.71,81.1853 +647281,157.91,85.201 +647282,156.36,83.8304 +647283,154.86,82.4898 +647284,153.42,81.1763 +647285,156.54,85.2563 +647286,155.01,83.8649 +647287,153.54,82.5031 +647288,152.13,81.1682 +647289,155.16,85.3106 +647290,153.66,83.899 +647291,152.23,82.5168 +647292,150.85,81.1612 +647293,153.79,85.3637 +647294,152.32,83.9328 +647295,150.91,82.5309 +647296,149.56,81.1553 +647297,152.41,85.4158 +647298,150.97,83.9663 +647299,149.6,82.5454 +647300,148.27,81.1504 +647301,151.03,85.4667 +647302,149.63,83.9993 +647303,148.28,82.5602 +647304,146.99,81.1466 +647305,149.65,85.5164 +647306,148.28,84.032 +647307,146.97,82.5753 +647308,145.71,81.1439 +647309,148.27,85.565 +647310,146.93,84.0643 +647311,145.65,82.5909 +647312,144.43,81.1423 +647313,146.89,85.6125 +647314,145.58,84.0962 +647315,144.34,82.6068 +647316,143.14,81.1419 +647317,145.5,85.6587 +647318,144.23,84.1277 +647319,143.02,82.6231 +647320,141.86,81.1426 +647321,144.12,85.7038 +647322,142.89,84.1588 +647323,141.71,82.6398 +647324,140.58,81.1445 +647325,142.73,85.7477 +647326,141.54,84.1896 +647327,140.4,82.6569 +647328,139.31,81.1475 +647329,141.35,85.7903 +647330,140.19,84.2199 +647331,139.08,82.6744 +647332,138.03,81.1518 +647333,139.96,85.8318 +647334,138.84,84.2498 +647335,137.77,82.6923 +647336,136.75,81.1572 +647337,138.57,85.872 +647338,137.49,84.2793 +647339,136.46,82.7106 +647340,135.47,81.1639 +647341,137.19,85.9109 +647342,136.14,84.3084 +647343,135.15,82.7293 +647344,134.2,81.1717 +647345,135.8,85.9487 +647346,134.79,84.3371 +647347,133.83,82.7484 +647348,132.92,81.1808 +647349,134.41,85.9851 +647350,133.44,84.3654 +647351,132.52,82.7679 +647352,131.65,81.1912 +647353,133.02,86.0203 +647354,132.09,84.3932 +647355,131.21,82.7879 +647356,130.37,81.2028 +647357,131.62,86.0542 +647358,130.74,84.4206 +647359,129.9,82.8082 +647360,129.1,81.2156 +647361,130.23,86.0869 +647362,129.38,84.4476 +647363,128.58,82.829 +647364,127.83,81.2297 +647365,128.84,86.1183 +647366,128.03,84.4742 +647367,127.27,82.8502 +647368,126.56,81.2451 +647369,127.45,86.1484 +647370,126.68,84.5004 +647371,125.96,82.8718 +647372,125.28,81.2618 +647373,126.05,86.1772 +647374,125.33,84.5261 +647375,124.65,82.8939 +647376,124.01,81.2797 +647377,124.66,86.2047 +647378,123.98,84.5513 +647379,123.34,82.9164 +647380,122.74,81.2989 +647381,123.27,86.2309 +647382,122.62,84.5762 +647383,122.03,82.9393 +647384,121.47,81.3194 +647385,121.87,86.2559 +647386,121.27,84.6006 +647387,120.72,82.9626 +647388,120.2,81.3412 +647389,120.47,86.2795 +647390,119.92,84.6246 +647391,119.41,82.9864 +647392,118.93,81.3644 +647393,119.08,86.3019 +647394,118.57,84.6481 +647395,118.1,83.0106 +647396,117.66,81.3888 +647397,117.68,86.3229 +647398,117.21,84.6713 +647399,116.78,83.0352 +647400,116.39,81.4145 +647401,116.29,86.3427 +647402,115.86,84.6939 +647403,115.47,83.0603 +647404,115.12,81.4415 +647405,114.89,86.3612 +647406,114.51,84.7162 +647407,114.16,83.0858 +647408,113.86,81.4698 +647409,113.49,86.3784 +647410,113.15,84.738 +647411,112.85,83.1117 +647412,112.59,81.4994 +647413,112.1,86.3943 +647414,111.8,84.7594 +647415,111.54,83.138 +647416,111.32,81.5303 +647417,110.7,86.409 +647418,110.45,84.7803 +647419,110.23,83.1648 +647420,110.05,81.5625 +647421,109.3,86.4224 +647422,109.09,84.8009 +647423,108.92,83.192 +647424,108.78,81.596 +647425,107.9,86.4345 +647426,107.74,84.821 +647427,107.61,83.2196 +647428,107.51,81.6307 +647429,106.51,86.4453 +647430,106.39,84.8406 +647431,106.3,83.2477 +647432,106.25,81.6668 +647433,105.11,86.4549 +647434,105.03,84.8599 +647435,104.99,83.2761 +647436,104.98,81.7041 +647437,103.71,86.4633 +647438,103.68,84.8787 +647439,103.68,83.305 +647440,103.71,81.7428 +647441,102.31,86.4704 +647442,102.32,84.8971 +647443,102.37,83.3343 +647444,102.44,81.7826 +647445,100.92,86.4763 +647446,100.97,84.9151 +647447,101.06,83.364 +647448,101.17,81.8238 +647449,99.52,86.4809 +647450,99.617,84.9327 +647451,99.746,83.3942 +647452,99.905,81.8662 +647453,98.122,86.4844 +647454,98.263,84.9499 +647455,98.435,83.4247 +647456,98.637,81.9098 +647457,96.726,86.4866 +647458,96.91,84.9666 +647459,97.124,83.4557 +647460,97.368,81.9547 +647461,95.329,86.4877 +647462,95.556,84.983 +647463,95.813,83.487 +647464,96.099,82.0008 +647465,93.932,86.4876 +647466,94.202,84.9989 +647467,94.502,83.5187 +647468,94.83,82.0481 +647469,92.536,86.4863 +647470,92.849,85.0145 +647471,93.19,83.5509 +647472,93.56,82.0966 +647473,91.14,86.4838 +647474,91.495,85.0296 +647475,91.879,83.5834 +647476,92.29,82.1463 +647477,89.745,86.4803 +647478,90.142,85.0444 +647479,90.567,83.6163 +647480,91.02,82.1972 +647481,88.35,86.4756 +647482,88.789,85.0588 +647483,89.255,83.6496 +647484,89.749,82.2493 +647485,86.955,86.4697 +647486,87.435,85.0728 +647487,87.943,83.6833 +647488,88.478,82.3025 +647489,85.561,86.4628 +647490,86.082,85.0864 +647491,86.631,83.7173 +647492,87.206,82.3568 +647493,84.167,86.4548 +647494,84.729,85.0997 +647495,85.318,83.7517 +647496,85.934,82.4123 +647497,82.774,86.4458 +647498,83.376,85.1126 +647499,84.006,83.7865 +647500,84.662,82.4688 +647501,81.381,86.4357 +647502,82.024,85.1252 +647503,82.693,83.8216 +647504,83.388,82.5265 +647505,79.989,86.4246 +647506,80.671,85.1374 +647507,81.38,83.8571 +647508,82.115,82.5852 +647509,78.597,86.4124 +647510,79.319,85.1492 +647511,80.067,83.8929 +647512,80.84,82.645 +647513,77.206,86.3993 +647514,77.967,85.1607 +647515,78.753,83.929 +647516,79.565,82.7059 +647517,75.816,86.3852 +647518,76.615,85.1719 +647519,77.439,83.9655 +647520,78.29,82.7677 +647521,74.426,86.3701 +647522,75.263,85.1827 +647523,76.125,84.0023 +647524,77.013,82.8306 +647525,73.037,86.3541 +647526,73.911,85.1932 +647527,74.811,84.0395 +647528,75.736,82.8944 +647529,71.649,86.3371 +647530,72.56,85.2034 +647531,73.496,84.0769 +647532,74.459,82.9592 +647533,70.262,86.3193 +647534,71.208,85.2133 +647535,72.181,84.1146 +647536,73.18,83.0249 +647537,68.875,86.3006 +647538,69.857,85.2229 +647539,70.866,84.1527 +647540,71.901,83.0916 +647541,67.489,86.2811 +647542,68.507,85.2322 +647543,69.55,84.191 +647544,70.62,83.1591 +647545,66.104,86.2607 +647546,67.156,85.2412 +647547,68.235,84.2296 +647548,69.339,83.2275 +647549,64.72,86.2395 +647550,65.806,85.25 +647551,66.918,84.2685 +647552,68.057,83.2968 +647553,63.337,86.2175 +647554,64.456,85.2584 +647555,65.602,84.3076 +647556,66.775,83.3669 +647557,61.955,86.1947 +647558,63.106,85.2666 +647559,64.285,84.347 +647560,65.491,83.4378 +647561,60.573,86.1712 +647562,61.757,85.2745 +647563,62.968,84.3867 +647564,64.206,83.5095 +647565,59.193,86.147 +647566,60.408,85.2822 +647567,61.65,84.4266 +647568,62.92,83.5819 +647569,57.813,86.1221 +647570,59.059,85.2897 +647571,60.332,84.4667 +647572,61.634,83.6551 +647573,56.435,86.0966 +647574,57.71,85.2969 +647575,59.014,84.5071 +647576,60.346,83.7289 +647577,55.058,86.0703 +647578,56.362,85.3039 +647579,57.695,84.5477 +647580,59.057,83.8035 +647581,53.681,86.0435 +647582,55.014,85.3107 +647583,56.376,84.5885 +647584,57.767,83.8787 +647585,52.306,86.0161 +647586,53.667,85.3172 +647587,55.057,84.6294 +647588,56.476,83.9545 +647589,50.932,85.9881 +647590,52.32,85.3236 +647591,53.737,84.6706 +647592,55.184,84.0309 +647593,49.559,85.9595 +647594,50.973,85.3298 +647595,52.416,84.712 +647596,53.891,84.1079 +647597,48.187,85.9305 +647598,49.626,85.3358 +647599,51.096,84.7535 +647600,52.596,84.1854 +647601,46.816,85.9009 +647602,48.28,85.3416 +647603,49.775,84.7952 +647604,51.301,84.2634 +647605,45.447,85.8709 +647606,46.934,85.3473 +647607,48.453,84.837 +647608,50.004,84.3419 +647609,44.078,85.8405 +647610,45.589,85.3528 +647611,47.131,84.879 +647612,48.706,84.4209 +647613,42.711,85.8096 +647614,44.244,85.3582 +647615,45.808,84.9211 +647616,47.407,84.5002 +647617,41.345,85.7784 +647618,42.899,85.3635 +647619,44.486,84.9633 +647620,46.106,84.58 +647621,39.98,85.7468 +647622,41.554,85.3686 +647623,43.162,85.0057 +647624,44.804,84.6602 +647625,38.617,85.7149 +647626,40.21,85.3736 +647627,41.838,85.0481 +647628,43.501,84.7406 +647629,37.254,85.6827 +647630,38.867,85.3785 +647631,40.514,85.0907 +647632,42.197,84.8214 +647633,35.893,85.6503 +647634,37.524,85.3833 +647635,39.189,85.1333 +647636,40.891,84.9025 +647637,34.534,85.6176 +647638,36.181,85.388 +647639,37.864,85.176 +647640,39.584,84.9838 +647641,33.175,85.5846 +647642,34.839,85.3926 +647643,36.538,85.2188 +647644,38.276,85.0653 +647645,31.818,85.5515 +647646,33.497,85.3972 +647647,35.212,85.2616 +647648,36.966,85.147 +647649,30.462,85.5183 +647650,32.155,85.4017 +647651,33.885,85.3045 +647652,35.655,85.2288 +647653,29.108,85.4849 +647654,30.814,85.4061 +647655,32.558,85.3473 +647656,34.343,85.3108 +647657,27.754,85.4514 +647658,29.473,85.4106 +647659,31.23,85.3903 +647660,33.029,85.3928 +647661,26.402,85.4179 +647662,28.133,85.415 +647663,29.902,85.4332 +647664,31.713,85.4749 +647665,25.052,85.3843 +647666,26.793,85.4193 +647667,28.574,85.4761 +647668,30.397,85.557 +647669,23.703,85.3507 +647670,25.453,85.4237 +647671,27.244,85.5191 +647672,29.079,85.6392 +647673,22.355,85.3171 +647674,24.114,85.4281 +647675,25.915,85.562 +647676,27.759,85.7213 +647677,21.008,85.2836 +647678,22.776,85.4325 +647679,24.585,85.6048 +647680,26.438,85.8033 +647681,19.663,85.2501 +647682,21.437,85.4369 +647683,23.254,85.6477 +647684,25.116,85.8852 +647685,18.319,85.2168 +647686,20.1,85.4413 +647687,21.923,85.6905 +647688,23.792,85.967 +647689,16.977,85.1836 +647690,18.762,85.4458 +647691,20.591,85.7332 +647692,22.466,86.0486 +647693,15.636,85.1505 +647694,17.425,85.4503 +647695,19.259,85.7759 +647696,21.14,86.13 +647697,14.296,85.1177 +647698,16.089,85.4549 +647699,17.926,85.8184 +647700,19.811,86.2112 +647701,12.958,85.0851 +647702,14.753,85.4596 +647703,16.593,85.8609 +647704,18.482,86.2921 +647705,11.621,85.0527 +647706,13.417,85.4643 +647707,15.259,85.9033 +647708,17.15,86.3728 +647709,10.285,85.0206 +647710,12.082,85.4691 +647711,13.925,85.9456 +647712,15.818,86.4531 +647713,8.9511,84.9888 +647714,10.747,85.474 +647715,12.59,85.9878 +647716,14.484,86.5331 +647717,7.6182,84.9574 +647718,9.413,85.4791 +647719,11.254,86.0298 +647720,13.148,86.6127 +647721,6.2867,84.9263 +647722,8.0791,85.4842 +647723,9.9186,86.0717 +647724,11.811,86.6918 +647725,4.9566,84.8956 +647726,6.7456,85.4895 +647727,8.5822,86.1134 +647728,10.472,86.7706 +647729,3.6278,84.8653 +647730,5.4126,85.4949 +647731,7.2454,86.155 +647732,9.132,86.8488 +647733,2.3004,84.8355 +647734,4.08,85.5005 +647735,5.908,86.1964 +647736,7.7905,86.9266 +647737,0.97427,84.8061 +647738,2.7478,85.5062 +647739,4.5701,86.2376 +647740,6.4475,87.0038 +647741,359.65,84.7773 +647742,1.416,85.5121 +647743,3.2317,86.2787 +647744,5.103,87.0805 +647745,358.33,84.749 +647746,0.084684,85.5182 +647747,1.8927,86.3195 +647748,3.757,87.1566 +647749,357,84.7212 +647750,358.75,85.5244 +647751,0.55333,86.3601 +647752,2.4096,87.232 +647753,355.68,84.694 +647754,357.42,85.5309 +647755,359.21,86.4005 +647756,1.0608,87.3068 +647757,354.36,84.6675 +647758,356.09,85.5375 +647759,357.87,86.4407 +647760,359.71,87.381 +647761,353.05,84.6415 +647762,354.76,85.5444 +647763,356.53,86.4807 +647764,358.36,87.4544 +647765,351.73,84.6163 +647766,353.43,85.5514 +647767,355.19,86.5204 +647768,357.01,87.5271 +647769,350.41,84.5917 +647770,352.11,85.5587 +647771,353.85,86.5598 +647772,355.65,87.599 +647773,349.1,84.5678 +647774,350.78,85.5663 +647775,352.51,86.599 +647776,354.3,87.6702 +647777,347.79,84.5447 +647778,349.45,85.574 +647779,351.16,86.6379 +647780,352.94,87.7405 +647781,346.47,84.5223 +647782,348.12,85.5821 +647783,349.82,86.6766 +647784,351.58,87.81 +647785,345.16,84.5008 +647786,346.79,85.5903 +647787,348.48,86.7149 +647788,350.22,87.8787 +647789,343.85,84.48 +647790,345.47,85.5989 +647791,347.13,86.753 +647792,348.86,87.9464 +647793,342.55,84.4601 +647794,344.14,85.6077 +647795,345.79,86.7907 +647796,347.49,88.0133 +647797,341.24,84.441 +647798,342.81,85.6168 +647799,344.44,86.8281 +647800,346.13,88.0792 +647801,339.93,84.4228 +647802,341.49,85.6262 +647803,343.1,86.8653 +647804,344.77,88.1441 +647805,338.63,84.4055 +647806,340.16,85.636 +647807,341.75,86.902 +647808,343.4,88.2081 +647809,337.32,84.3891 +647810,338.84,85.646 +647811,340.4,86.9385 +647812,342.03,88.2711 +647813,336.02,84.3736 +647814,337.51,85.6563 +647815,339.06,86.9746 +647816,340.66,88.333 +647817,334.72,84.3592 +647818,336.19,85.6669 +647819,337.71,87.0104 +647820,339.29,88.3939 +647821,333.42,84.3457 +647822,334.86,85.6779 +647823,336.36,87.0458 +647824,337.92,88.4538 +647825,332.12,84.3332 +647826,333.54,85.6892 +647827,335.01,87.0808 +647828,336.55,88.5125 +647829,330.82,84.3217 +647830,332.22,85.7008 +647831,333.66,87.1155 +647832,335.17,88.5701 +647833,329.52,84.3113 +647834,330.89,85.7128 +647835,332.32,87.1498 +647836,333.8,88.6267 +647837,328.23,84.302 +647838,329.57,85.7251 +647839,330.97,87.1837 +647840,332.42,88.682 +647841,326.93,84.2937 +647842,328.25,85.7378 +647843,329.62,87.2172 +647844,331.04,88.7363 +647845,325.64,84.2865 +647846,326.93,85.7509 +647847,328.27,87.2504 +647848,329.66,88.7893 +647849,324.34,84.2804 +647850,325.6,85.7643 +647851,326.91,87.2831 +647852,328.28,88.8411 +647853,323.05,84.2755 +647854,324.28,85.7781 +647855,325.56,87.3154 +647856,326.9,88.8918 +647857,321.76,84.2717 +647858,322.96,85.7923 +647859,324.21,87.3474 +647860,325.52,88.9412 +647861,320.47,84.2691 +647862,321.64,85.8068 +647863,322.86,87.3789 +647864,324.14,88.9894 +647865,319.18,84.2676 +647866,320.32,85.8218 +647867,321.51,87.41 +647868,322.76,89.03628 +647869,317.89,84.2674 +647870,319,85.8371 +647871,320.16,87.4406 +647872,321.37,89.08194 +647873,316.6,84.2683 +647874,317.68,85.8528 +647875,318.8,87.4709 +647876,319.98,89.12632 +647877,315.31,84.2704 +647878,316.36,85.869 +647879,317.45,87.5007 +647880,318.6,89.16942 +647881,314.03,84.2738 +647882,315.04,85.8855 +647883,316.1,87.53 +647884,317.21,89.21121 +647885,312.74,84.2784 +647886,313.72,85.9024 +647887,314.74,87.559 +647888,315.82,89.2517 +647889,311.46,84.2843 +647890,312.4,85.9198 +647891,313.39,87.5874 +647892,314.43,89.29086 +647893,310.17,84.2914 +647894,311.08,85.9375 +647895,312.04,87.6155 +647896,313.04,89.3287 +647897,308.89,84.2998 +647898,309.76,85.9557 +647899,310.68,87.6431 +647900,311.65,89.3652 +647901,307.6,84.3094 +647902,308.44,85.9743 +647903,309.33,87.6702 +647904,310.26,89.40036 +647905,306.32,84.3204 +647906,307.12,85.9934 +647907,307.97,87.6969 +647908,308.87,89.43417 +647909,305.04,84.3326 +647910,305.81,86.0128 +647911,306.62,87.7231 +647912,307.48,89.46663 +647913,303.76,84.3462 +647914,304.49,86.0327 +647915,305.26,87.7489 +647916,306.08,89.49772 +647917,302.47,84.361 +647918,303.17,86.053 +647919,303.9,87.7742 +647920,304.69,89.52745 +647921,301.19,84.3772 +647922,301.85,86.0737 +647923,302.55,87.799 +647924,303.3,89.55581 +647925,299.91,84.3947 +647926,300.53,86.0949 +647927,301.19,87.8234 +647928,301.9,89.58279 +647929,298.63,84.4135 +647930,299.21,86.1165 +647931,299.84,87.8473 +647932,300.5,89.60841 +647933,297.35,84.4336 +647934,297.9,86.1386 +647935,298.48,87.8708 +647936,299.11,89.63265 +647937,296.07,84.4551 +647938,296.58,86.161 +647939,297.12,87.8937 +647940,297.71,89.65551 +647941,294.79,84.4779 +647942,295.26,86.1839 +647943,295.77,87.9163 +647944,296.32,89.67699 +647945,293.52,84.502 +647946,293.94,86.2073 +647947,294.41,87.9383 +647948,294.92,89.6971 +647949,292.24,84.5275 +647950,292.63,86.2311 +647951,293.05,87.9599 +647952,293.52,89.71584 +647953,290.96,84.5543 +647954,291.31,86.2553 +647955,291.69,87.981 +647956,292.12,89.7332 +647957,289.68,84.5824 +647958,289.99,86.2799 +647959,290.34,88.0016 +647960,290.72,89.74919 +647961,288.4,84.6119 +647962,288.67,86.305 +647963,288.98,88.0218 +647964,289.33,89.76382 +647965,287.12,84.6426 +647966,287.36,86.3305 +647967,287.62,88.0415 +647968,287.93,89.77708 +647969,285.85,84.6748 +647970,286.04,86.3565 +647971,286.26,88.0608 +647972,286.53,89.78899 +647973,284.57,84.7082 +647974,284.72,86.3828 +647975,284.91,88.0796 +647976,285.13,89.79954 +647977,283.29,84.743 +647978,283.4,86.4096 +647979,283.55,88.0979 +647980,283.73,89.80875 +647981,282.01,84.779 +647982,282.09,86.4369 +647983,282.19,88.1158 +647984,282.33,89.81663 +647985,280.74,84.8164 +647986,280.77,86.4645 +647987,280.83,88.1332 +647988,280.93,89.82317 +647989,279.46,84.8551 +647990,279.45,86.4926 +647991,279.47,88.1502 +647992,279.53,89.82839 +647993,278.18,84.8951 +647994,278.13,86.5211 +647995,278.12,88.1667 +647996,278.13,89.83229 +647997,276.9,84.9364 +647998,276.82,86.55 +647999,276.76,88.1828 +648000,276.73,89.8349 +648001,275.62,84.9789 +648002,275.5,86.5794 +648003,275.4,88.1984 +648004,275.33,89.83621 +648005,274.35,85.0228 +648006,274.18,86.6091 +648007,274.04,88.2136 +648008,273.94,89.83623 +648009,273.07,85.0679 +648010,272.86,86.6392 +648011,272.68,88.2283 +648012,272.54,89.83499 +648013,271.79,85.1142 +648014,271.54,86.6698 +648015,271.33,88.2426 +648016,271.14,89.83249 +648017,270.51,85.1618 +648018,270.23,86.7007 +648019,269.97,88.2565 +648020,269.74,89.82874 +648021,269.23,85.2106 +648022,268.91,86.7321 +648023,268.61,88.2699 +648024,268.34,89.82376 +648025,267.95,85.2607 +648026,267.59,86.7638 +648027,267.25,88.2829 +648028,266.94,89.81757 +648029,266.67,85.3119 +648030,266.27,86.796 +648031,265.89,88.2955 +648032,265.55,89.81017 +648033,265.39,85.3644 +648034,264.95,86.8285 +648035,264.54,88.3077 +648036,264.15,89.80158 +648037,264.11,85.418 +648038,263.63,86.8613 +648039,263.18,88.3195 +648040,262.75,89.79182 +648041,262.83,85.4728 +648042,262.31,86.8946 +648043,261.82,88.3309 +648044,261.35,89.7809 +648045,261.55,85.5287 +648046,260.99,86.9282 +648047,260.46,88.3419 +648048,259.96,89.76885 +648049,260.27,85.5857 +648050,259.68,86.9622 +648051,259.11,88.3525 +648052,258.56,89.75567 +648053,258.98,85.6439 +648054,258.36,86.9965 +648055,257.75,88.3627 +648056,257.17,89.74139 +648057,257.7,85.7032 +648058,257.04,87.0312 +648059,256.39,88.3725 +648060,255.77,89.72603 +648061,256.42,85.7635 +648062,255.72,87.0663 +648063,255.04,88.382 +648064,254.38,89.70961 +648065,255.13,85.825 +648066,254.4,87.1016 +648067,253.68,88.3911 +648068,252.99,89.69213 +648069,253.85,85.8874 +648070,253.07,87.1373 +648071,252.32,88.3998 +648072,251.59,89.67364 +648073,252.56,85.9509 +648074,251.75,87.1733 +648075,250.97,88.4082 +648076,250.2,89.65414 +648077,251.28,86.0154 +648078,250.43,87.2097 +648079,249.61,88.4162 +648080,248.81,89.63365 +648081,249.99,86.0808 +648082,249.11,87.2463 +648083,248.25,88.4239 +648084,247.42,89.61221 +648085,248.7,86.1472 +648086,247.79,87.2833 +648087,246.9,88.4312 +648088,246.03,89.58982 +648089,247.41,86.2146 +648090,246.47,87.3205 +648091,245.54,88.4383 +648092,244.64,89.56652 +648093,246.12,86.2829 +648094,245.15,87.358 +648095,244.19,88.445 +648096,243.25,89.54232 +648097,244.83,86.352 +648098,243.82,87.3958 +648099,242.83,88.4514 +648100,241.86,89.51726 +648101,243.54,86.4221 +648102,242.5,87.4339 +648103,241.48,88.4575 +648104,240.47,89.49135 +648105,242.25,86.4929 +648106,241.18,87.4722 +648107,240.12,88.4633 +648108,239.09,89.46461 +648109,240.96,86.5646 +648110,239.85,87.5108 +648111,238.77,88.4688 +648112,237.7,89.43708 +648113,239.67,86.6371 +648114,238.53,87.5496 +648115,237.41,88.474 +648116,236.32,89.40878 +648117,238.37,86.7104 +648118,237.21,87.5887 +648119,236.06,88.479 +648120,234.93,89.37973 +648121,237.08,86.7844 +648122,235.88,87.628 +648123,234.71,88.4837 +648124,233.55,89.34995 +648125,235.78,86.8591 +648126,234.56,87.6675 +648127,233.35,88.4882 +648128,232.17,89.31948 +648129,234.48,86.9345 +648130,233.23,87.7072 +648131,232,88.4924 +648132,230.79,89.28835 +648133,233.18,87.0106 +648134,231.91,87.7472 +648135,230.65,88.4963 +648136,229.41,89.25657 +648137,231.88,87.0873 +648138,230.58,87.7873 +648139,229.29,88.5001 +648140,228.03,89.22417 +648141,230.58,87.1646 +648142,229.25,87.8276 +648143,227.94,88.5036 +648144,226.65,89.19119 +648145,229.28,87.2425 +648146,227.93,87.868 +648147,226.59,88.5069 +648148,225.28,89.15765 +648149,227.98,87.3209 +648150,226.6,87.9087 +648151,225.24,88.5101 +648152,223.9,89.12357 +648153,226.68,87.3998 +648154,225.27,87.9495 +648155,223.89,88.513 +648156,222.53,89.08899 +648157,225.37,87.4793 +648158,223.94,87.9904 +648159,222.54,88.5158 +648160,221.15,89.05393 +648161,224.06,87.5592 +648162,222.62,88.0314 +648163,221.19,88.5184 +648164,219.78,89.01843 +648165,222.76,87.6395 +648166,221.29,88.0726 +648167,219.84,88.5208 +648168,218.41,88.9825 +648169,221.45,87.7203 +648170,219.96,88.1139 +648171,218.49,88.5231 +648172,217.04,88.9462 +648173,220.14,87.8014 +648174,218.63,88.1553 +648175,217.14,88.5252 +648176,215.67,88.9095 +648177,218.83,87.8828 +648178,217.3,88.1968 +648179,215.79,88.5272 +648180,214.3,88.8725 +648181,217.52,87.9646 +648182,215.97,88.2384 +648183,214.44,88.5291 +648184,212.94,88.8352 +648185,216.2,88.0466 +648186,214.64,88.28 +648187,213.09,88.5309 +648188,211.57,88.7976 +648189,214.89,88.1289 +648190,213.3,88.3217 +648191,211.74,88.5326 +648192,210.21,88.7598 +648193,213.57,88.2114 +648194,211.97,88.3635 +648195,210.4,88.5342 +648196,208.84,88.7217 +648197,212.26,88.294 +648198,210.64,88.4053 +648199,209.05,88.5357 +648200,207.48,88.6835 +648201,210.94,88.3768 +648202,209.31,88.4471 +648203,207.7,88.5371 +648204,206.12,88.6451 +648205,209.62,88.4598 +648206,207.97,88.489 +648207,206.35,88.5385 +648208,204.76,88.6066 +648209,208.3,88.5428 +648210,206.64,88.5308 +648211,205.01,88.5398 +648212,203.4,88.5681 +648213,206.98,88.6258 +648214,205.31,88.5727 +648215,203.66,88.5411 +648216,202.05,88.5294 +648217,205.65,88.7089 +648218,203.97,88.6145 +648219,202.32,88.5424 +648220,200.69,88.4907 +648221,204.33,88.792 +648222,202.64,88.6563 +648223,200.97,88.5436 +648224,199.34,88.452 +648225,203,88.875 +648226,201.3,88.6981 +648227,199.63,88.5448 +648228,197.98,88.4133 +648229,201.67,88.9579 +648230,199.96,88.7398 +648231,198.28,88.5461 +648232,196.63,88.3747 +648233,200.35,89.04074 +648234,198.63,88.7815 +648235,196.94,88.5473 +648236,195.28,88.3362 +648237,199.02,89.12341 +648238,197.29,88.8231 +648239,195.6,88.5486 +648240,193.93,88.2978 +648241,197.68,89.20591 +648242,195.95,88.8646 +648243,194.25,88.5499 +648244,192.59,88.2595 +648245,196.35,89.28819 +648246,194.61,88.9061 +648247,192.91,88.5512 +648248,191.24,88.2215 +648249,195.02,89.37023 +648250,193.28,88.9474 +648251,191.57,88.5526 +648252,189.89,88.1836 +648253,193.68,89.45199 +648254,191.94,88.9886 +648255,190.23,88.5541 +648256,188.55,88.146 +648257,192.34,89.53345 +648258,190.6,89.02974 +648259,188.89,88.5556 +648260,187.21,88.1086 +648261,191.01,89.61456 +648262,189.26,89.07072 +648263,187.55,88.5572 +648264,185.87,88.0715 +648265,189.67,89.69529 +648266,187.92,89.11155 +648267,186.2,88.5589 +648268,184.53,88.0348 +648269,188.32,89.77562 +648270,186.58,89.15224 +648271,184.86,88.5607 +648272,183.19,87.9984 +648273,186.98,89.85551 +648274,185.23,89.19276 +648275,183.53,88.5627 +648276,181.85,87.9624 +648277,185.64,89.934925 +648278,183.89,89.23311 +648279,182.19,88.5647 +648280,180.51,87.9268 +648281,184.29,90.01384 +648282,182.55,89.27327 +648283,180.85,88.5669 +648284,179.18,87.8916 +648285,182.95,90.092221 +648286,181.21,89.31325 +648287,179.51,88.5692 +648288,177.85,87.8569 +648289,181.6,90.17004 +648290,179.86,89.35302 +648291,178.17,88.5717 +648292,176.51,87.8227 +648293,180.25,90.24726 +648294,178.52,89.39257 +648295,176.83,88.5743 +648296,175.18,87.789 +648297,178.9,90.32385 +648298,177.18,89.4319 +648299,175.5,88.5771 +648300,173.85,87.7559 +648301,177.55,90.39979 +648302,175.83,89.471 +648303,174.16,88.5801 +648304,172.53,87.7234 +648305,176.19,90.47504 +648306,174.49,89.50986 +648307,172.82,88.5832 +648308,171.2,87.6915 +648309,174.84,90.54957 +648310,173.14,89.54846 +648311,171.49,88.5866 +648312,169.87,87.6602 +648313,173.48,90.62335 +648314,171.79,89.5868 +648315,170.15,88.5902 +648316,168.55,87.6295 +648317,172.12,90.69637 +648318,170.45,89.62486 +648319,168.82,88.594 +648320,167.22,87.5996 +648321,170.76,90.76857 +648322,169.1,89.66265 +648323,167.48,88.598 +648324,165.9,87.5704 +648325,169.4,90.83995 +648326,167.75,89.70015 +648327,166.15,88.6022 +648328,164.58,87.5419 +648329,168.04,90.91046 +648330,166.4,89.73734 +648331,164.81,88.6067 +648332,163.26,87.5142 +648333,166.68,90.98009 +648334,165.05,89.77423 +648335,163.48,88.6114 +648336,161.94,87.4872 +648337,165.32,91.0488 +648338,163.71,89.81081 +648339,162.14,88.6164 +648340,160.62,87.4611 +648341,163.95,91.1166 +648342,162.36,89.84705 +648343,160.81,88.6217 +648344,159.31,87.4358 +648345,162.58,91.1834 +648346,161.01,89.88297 +648347,159.48,88.6272 +648348,157.99,87.4114 +648349,161.22,91.2492 +648350,159.66,89.918536 +648351,158.15,88.6331 +648352,156.68,87.3879 +648353,159.85,91.314 +648354,158.31,89.953757 +648355,156.81,88.6392 +648356,155.36,87.3652 +648357,158.48,91.3778 +648358,156.95,89.988619 +648359,155.48,88.6456 +648360,154.05,87.3435 +648361,157.1,91.4404 +648362,155.6,90.023115 +648363,154.15,88.6523 +648364,152.74,87.3228 +648365,155.73,91.502 +648366,154.25,90.057237 +648367,152.82,88.6593 +648368,151.43,87.303 +648369,154.36,91.5625 +648370,152.9,90.090978 +648371,151.49,88.6666 +648372,150.12,87.2842 +648373,152.98,91.6219 +648374,151.54,90.12433 +648375,150.16,88.6743 +648376,148.81,87.2665 +648377,151.61,91.6801 +648378,150.19,90.15729 +648379,148.83,88.6823 +648380,147.51,87.2497 +648381,150.23,91.7371 +648382,148.84,90.18984 +648383,147.5,88.6907 +648384,146.2,87.2341 +648385,148.85,91.793 +648386,147.48,90.22199 +648387,146.17,88.6993 +648388,144.9,87.2195 +648389,147.47,91.8476 +648390,146.13,90.25372 +648391,144.84,88.7084 +648392,143.59,87.206 +648393,146.09,91.901 +648394,144.77,90.28503 +648395,143.51,88.7178 +648396,142.29,87.1936 +648397,144.71,91.9531 +648398,143.42,90.31591 +648399,142.18,88.7275 +648400,140.99,87.1823 +648401,143.33,92.004 +648402,142.06,90.34636 +648403,140.85,88.7377 +648404,139.68,87.1722 +648405,141.94,92.0535 +648406,140.71,90.37637 +648407,139.52,88.7482 +648408,138.38,87.1632 +648409,140.56,92.1018 +648410,139.35,90.40593 +648411,138.2,88.759 +648412,137.08,87.1554 +648413,139.17,92.1487 +648414,138,90.43504 +648415,136.87,88.7703 +648416,135.78,87.1488 +648417,137.79,92.1944 +648418,136.64,90.4637 +648419,135.54,88.782 +648420,134.49,87.1434 +648421,136.4,92.2386 +648422,135.28,90.4919 +648423,134.21,88.794 +648424,133.19,87.1393 +648425,135.01,92.2815 +648426,133.92,90.51964 +648427,132.89,88.8065 +648428,131.89,87.1363 +648429,133.62,92.3231 +648430,132.57,90.5469 +648431,131.56,88.8193 +648432,130.6,87.1346 +648433,132.23,92.3632 +648434,131.21,90.57369 +648435,130.23,88.8326 +648436,129.3,87.1342 +648437,130.84,92.402 +648438,129.85,90.60001 +648439,128.91,88.8462 +648440,128.01,87.1351 +648441,129.45,92.4393 +648442,128.49,90.62585 +648443,127.58,88.8603 +648444,126.71,87.1372 +648445,128.06,92.4752 +648446,127.13,90.6512 +648447,126.25,88.8748 +648448,125.42,87.1406 +648449,126.67,92.5097 +648450,125.77,90.67606 +648451,124.93,88.8897 +648452,124.13,87.1453 +648453,125.27,92.5428 +648454,124.41,90.70044 +648455,123.6,88.9051 +648456,122.83,87.1513 +648457,123.88,92.5744 +648458,123.05,90.72432 +648459,122.28,88.9208 +648460,121.54,87.1587 +648461,122.48,92.6046 +648462,121.69,90.74771 +648463,120.95,88.937 +648464,120.25,87.1674 +648465,121.09,92.6333 +648466,120.33,90.7706 +648467,119.63,88.9536 +648468,118.96,87.1774 +648469,119.69,92.6606 +648470,118.97,90.79299 +648471,118.3,88.9707 +648472,117.67,87.1887 +648473,118.3,92.6864 +648474,117.61,90.81489 +648475,116.98,88.9882 +648476,116.38,87.2014 +648477,116.9,92.7107 +648478,116.25,90.83627 +648479,115.65,89.0061 +648480,115.09,87.2154 +648481,115.5,92.7336 +648482,114.89,90.85716 +648483,114.33,89.02445 +648484,113.8,87.2308 +648485,114.1,92.755 +648486,113.53,90.87754 +648487,113,89.04324 +648488,112.51,87.2476 +648489,112.7,92.7749 +648490,112.17,90.89742 +648491,111.68,89.06247 +648492,111.22,87.2657 +648493,111.31,92.7934 +648494,110.81,90.91679 +648495,110.35,89.08213 +648496,109.93,87.2852 +648497,109.91,92.8103 +648498,109.45,90.93565 +648499,109.03,89.10224 +648500,108.64,87.306 +648501,108.51,92.8258 +648502,108.09,90.95401 +648503,107.7,89.12278 +648504,107.36,87.3282 +648505,107.11,92.8399 +648506,106.72,90.97186 +648507,106.38,89.14376 +648508,106.07,87.3518 +648509,105.71,92.8525 +648510,105.36,90.98921 +648511,105.05,89.16517 +648512,104.78,87.3767 +648513,104.31,92.8636 +648514,104,91.0061 +648515,103.73,89.18703 +648516,103.49,87.403 +648517,102.91,92.8732 +648518,102.64,91.0224 +648519,102.41,89.20931 +648520,102.21,87.4307 +648521,101.51,92.8814 +648522,101.28,91.0382 +648523,101.08,89.23204 +648524,100.92,87.4597 +648525,100.11,92.8882 +648526,99.913,91.0536 +648527,99.757,89.25519 +648528,99.632,87.4901 +648529,98.704,92.8935 +648530,98.551,91.0684 +648531,98.432,89.27878 +648532,98.345,87.5218 +648533,97.303,92.8974 +648534,97.189,91.0828 +648535,97.108,89.30279 +648536,97.057,87.5549 +648537,95.902,92.8999 +648538,95.826,91.0966 +648539,95.783,89.32724 +648540,95.77,87.5893 +648541,94.501,92.9009 +648542,94.464,91.11 +648543,94.459,89.3521 +648544,94.483,87.6251 +648545,93.1,92.9006 +648546,93.101,91.1228 +648547,93.134,89.37739 +648548,93.195,87.6622 +648549,91.699,92.8988 +648550,91.739,91.1352 +648551,91.809,89.4031 +648552,91.907,87.7006 +648553,90.298,92.8957 +648554,90.377,91.1471 +648555,90.485,89.42923 +648556,90.62,87.7403 +648557,88.898,92.8912 +648558,89.014,91.1585 +648559,89.16,89.45576 +648560,89.332,87.7813 +648561,87.497,92.8853 +648562,87.652,91.1695 +648563,87.835,89.48271 +648564,88.044,87.8236 +648565,86.097,92.8781 +648566,86.289,91.1799 +648567,86.51,89.51006 +648568,86.755,87.8672 +648569,84.697,92.8696 +648570,84.927,91.1899 +648571,85.184,89.53782 +648572,85.466,87.9121 +648573,83.297,92.8597 +648574,83.565,91.1995 +648575,83.859,89.56597 +648576,84.177,87.9582 +648577,81.897,92.8485 +648578,82.203,91.2085 +648579,82.534,89.59451 +648580,82.888,88.0056 +648581,80.497,92.8361 +648582,80.841,91.2172 +648583,81.208,89.62344 +648584,81.599,88.0542 +648585,79.098,92.8224 +648586,79.478,91.2253 +648587,79.882,89.65275 +648588,80.308,88.104 +648589,77.7,92.8074 +648590,78.116,91.2331 +648591,78.556,89.68244 +648592,79.018,88.1551 +648593,76.301,92.7912 +648594,76.755,91.2403 +648595,77.23,89.71251 +648596,77.727,88.2073 +648597,74.903,92.7737 +648598,75.393,91.2472 +648599,75.904,89.74294 +648600,76.436,88.2607 +648601,73.506,92.7551 +648602,74.031,91.2536 +648603,74.578,89.77373 +648604,75.144,88.3153 +648605,72.109,92.7353 +648606,72.67,91.2596 +648607,73.251,89.80488 +648608,73.852,88.371 +648609,70.712,92.7143 +648610,71.308,91.2652 +648611,71.924,89.83638 +648612,72.559,88.4279 +648613,69.316,92.6922 +648614,69.947,91.2704 +648615,70.597,89.86822 +648616,71.265,88.4859 +648617,67.921,92.669 +648618,68.586,91.2752 +648619,69.27,89.90039 +648620,69.971,88.5449 +648621,66.526,92.6447 +648622,67.225,91.2796 +648623,67.942,89.932895 +648624,68.677,88.605 +648625,65.132,92.6193 +648626,65.864,91.2836 +648627,66.614,89.965721 +648628,67.381,88.6662 +648629,63.738,92.5928 +648630,64.504,91.2872 +648631,65.286,89.9988632 +648632,66.085,88.7284 +648633,62.345,92.5653 +648634,63.143,91.2904 +648635,63.958,90.032313 +648636,64.789,88.7916 +648637,60.953,92.5368 +648638,61.783,91.2933 +648639,62.629,90.066062 +648640,63.491,88.8558 +648641,59.562,92.5074 +648642,60.423,91.2958 +648643,61.3,90.1001 +648644,62.193,88.921 +648645,58.171,92.4769 +648646,59.063,91.298 +648647,59.971,90.13443 +648648,60.894,88.9871 +648649,56.781,92.4456 +648650,57.704,91.2998 +648651,58.642,90.16903 +648652,59.595,89.05408 +648653,55.392,92.4133 +648654,56.344,91.3013 +648655,57.312,90.20391 +648656,58.294,89.122 +648657,54.003,92.3802 +648658,54.985,91.3025 +648659,55.982,90.23904 +648660,56.993,89.19079 +648661,52.616,92.3462 +648662,53.626,91.3034 +648663,54.652,90.27442 +648664,55.691,89.26043 +648665,51.229,92.3114 +648666,52.268,91.3039 +648667,53.321,90.31004 +648668,54.388,89.33089 +648669,49.843,92.2757 +648670,50.909,91.3041 +648671,51.99,90.3459 +648672,53.084,89.40214 +648673,48.458,92.2393 +648674,49.551,91.3041 +648675,50.659,90.38199 +648676,51.779,89.47416 +648677,47.074,92.2022 +648678,48.194,91.3038 +648679,49.327,90.41828 +648680,50.473,89.54692 +648681,45.691,92.1643 +648682,46.836,91.3031 +648683,47.995,90.45479 +648684,49.166,89.6204 +648685,44.309,92.1258 +648686,45.479,91.3023 +648687,46.663,90.49149 +648688,47.859,89.69456 +648689,42.927,92.0865 +648690,44.122,91.3012 +648691,45.33,90.52838 +648692,46.55,89.76939 +648693,41.547,92.0467 +648694,42.765,91.2998 +648695,43.997,90.56545 +648696,45.24,89.84484 +648697,40.168,92.0062 +648698,41.409,91.2982 +648699,42.663,90.60268 +648700,43.93,89.920896 +648701,38.79,91.9652 +648702,40.053,91.2964 +648703,41.329,90.64007 +648704,42.618,89.9975241 +648705,37.413,91.9237 +648706,38.697,91.2943 +648707,39.995,90.67761 +648708,41.305,90.074695 +648709,36.037,91.8816 +648710,37.342,91.2921 +648711,38.66,90.71529 +648712,39.991,90.15238 +648713,34.662,91.839 +648714,35.987,91.2896 +648715,37.325,90.75309 +648716,38.676,90.23055 +648717,33.288,91.796 +648718,34.632,91.287 +648719,35.99,90.79101 +648720,37.36,90.30917 +648721,31.915,91.7525 +648722,33.278,91.2842 +648723,34.654,90.82904 +648724,36.043,90.3882 +648725,30.543,91.7087 +648726,31.923,91.2812 +648727,33.318,90.86716 +648728,34.725,90.46763 +648729,29.173,91.6645 +648730,30.57,91.2781 +648731,31.981,90.90537 +648732,33.405,90.54742 +648733,27.803,91.62 +648734,29.216,91.2748 +648735,30.644,90.94365 +648736,32.085,90.62753 +648737,26.435,91.5751 +648738,27.863,91.2714 +648739,29.306,90.982 +648740,30.763,90.70794 +648741,25.068,91.53 +648742,26.511,91.2679 +648743,27.968,91.0204 +648744,29.44,90.78861 +648745,23.702,91.4847 +648746,25.158,91.2643 +648747,26.63,91.0588 +648748,28.116,90.86951 +648749,22.337,91.4392 +648750,23.806,91.2605 +648751,25.291,91.0973 +648752,26.79,90.95061 +648753,20.974,91.3934 +648754,22.455,91.2567 +648755,23.952,91.1358 +648756,25.464,91.0319 +648757,19.611,91.3476 +648758,21.104,91.2528 +648759,22.612,91.1743 +648760,24.136,91.1133 +648761,18.25,91.3016 +648762,19.753,91.2488 +648763,21.272,91.2128 +648764,22.807,91.1947 +648765,16.89,91.2556 +648766,18.402,91.2448 +648767,19.932,91.2513 +648768,21.477,91.2763 +648769,15.531,91.2094 +648770,17.052,91.2407 +648771,18.591,91.2898 +648772,20.145,91.3579 +648773,14.174,91.1633 +648774,15.703,91.2365 +648775,17.249,91.3282 +648776,18.812,91.4395 +648777,12.817,91.1172 +648778,14.353,91.2324 +648779,15.907,91.3666 +648780,17.478,91.521 +648781,11.462,91.0711 +648782,13.004,91.2282 +648783,14.565,91.4049 +648784,16.143,91.6025 +648785,10.108,91.0252 +648786,11.656,91.224 +648787,13.222,91.4432 +648788,14.806,91.6838 +648789,8.7557,90.97928 +648790,10.308,91.2199 +648791,11.879,91.4813 +648792,13.468,91.7651 +648793,7.4043,90.93353 +648794,8.96,91.2157 +648795,10.535,91.5194 +648796,12.129,91.8461 +648797,6.0541,90.88796 +648798,7.6126,91.2116 +648799,9.1908,91.5574 +648800,10.789,91.927 +648801,4.7052,90.84259 +648802,6.2656,91.2074 +648803,7.8462,91.5953 +648804,9.447,92.0076 +648805,3.3575,90.79744 +648806,4.919,91.2034 +648807,6.501,91.633 +648808,8.1039,92.0879 +648809,2.011,90.75256 +648810,3.5727,91.1994 +648811,5.1555,91.6706 +648812,6.7596,92.1679 +648813,0.66577,90.70798 +648814,2.2269,91.1955 +648815,3.8095,91.7081 +648816,5.414,92.2476 +648817,359.32,90.66371 +648818,0.88145,91.1916 +648819,2.463,91.7454 +648820,4.067,92.3269 +648821,357.98,90.6198 +648822,359.54,91.1878 +648823,1.116,91.7826 +648824,2.7188,92.4058 +648825,356.64,90.57628 +648826,358.19,91.1842 +648827,359.77,91.8195 +648828,1.3693,92.4843 +648829,355.3,90.53316 +648830,356.85,91.1806 +648831,358.42,91.8563 +648832,0.018528,92.5623 +648833,353.96,90.49049 +648834,355.5,91.1772 +648835,357.07,91.8929 +648836,358.67,92.6397 +648837,352.62,90.44829 +648838,354.16,91.1739 +648839,355.72,91.9292 +648840,357.31,92.7167 +648841,351.28,90.40659 +648842,352.82,91.1707 +648843,354.37,91.9654 +648844,355.96,92.793 +648845,349.95,90.36542 +648846,351.47,91.1677 +648847,353.02,92.0013 +648848,354.6,92.8688 +648849,348.61,90.32481 +648850,350.13,91.1648 +648851,351.67,92.0369 +648852,353.25,92.9439 +648853,347.28,90.28479 +648854,348.79,91.1621 +648855,350.32,92.0724 +648856,351.89,93.0184 +648857,345.95,90.24538 +648858,347.45,91.1596 +648859,348.97,92.1075 +648860,350.53,93.0921 +648861,344.62,90.20662 +648862,346.11,91.1572 +648863,347.62,92.1424 +648864,349.17,93.1651 +648865,343.29,90.16852 +648866,344.77,91.1551 +648867,346.27,92.177 +648868,347.8,93.2374 +648869,341.96,90.13112 +648870,343.43,91.1532 +648871,344.92,92.2113 +648872,346.44,93.3088 +648873,340.63,90.094448 +648874,342.08,91.1514 +648875,343.56,92.2453 +648876,345.08,93.3795 +648877,339.31,90.058523 +648878,340.74,91.15 +648879,342.21,92.279 +648880,343.71,93.4492 +648881,337.98,90.023373 +648882,339.41,91.1487 +648883,340.86,92.3123 +648884,342.34,93.5181 +648885,336.66,89.989024 +648886,338.07,91.1477 +648887,339.5,92.3454 +648888,340.97,93.5861 +648889,335.33,89.955502 +648890,336.73,91.1469 +648891,338.15,92.3781 +648892,339.61,93.6532 +648893,334.01,89.922831 +648894,335.39,91.1464 +648895,336.79,92.4104 +648896,338.23,93.7192 +648897,332.69,89.89103 +648898,334.05,91.1461 +648899,335.44,92.4424 +648900,336.86,93.7843 +648901,331.37,89.86014 +648902,332.71,91.1462 +648903,334.08,92.474 +648904,335.49,93.8483 +648905,330.05,89.83016 +648906,331.38,91.1465 +648907,332.73,92.5053 +648908,334.12,93.9113 +648909,328.73,89.80113 +648910,330.04,91.1471 +648911,331.37,92.5361 +648912,332.74,93.9733 +648913,327.42,89.77307 +648914,328.7,91.148 +648915,330.01,92.5666 +648916,331.36,94.0341 +648917,326.1,89.746 +648918,327.36,91.1492 +648919,328.66,92.5967 +648920,329.99,94.0938 +648921,324.79,89.71994 +648922,326.03,91.1507 +648923,327.3,92.6263 +648924,328.61,94.1523 +648925,323.47,89.69491 +648926,324.69,91.1525 +648927,325.94,92.6556 +648928,327.23,94.2096 +648929,322.16,89.67094 +648930,323.36,91.1547 +648931,324.58,92.6844 +648932,325.85,94.2658 +648933,320.85,89.64804 +648934,322.02,91.1572 +648935,323.23,92.7128 +648936,324.47,94.3207 +648937,319.54,89.62623 +648938,320.69,91.16 +648939,321.87,92.7408 +648940,323.08,94.3744 +648941,318.23,89.60553 +648942,319.35,91.1632 +648943,320.51,92.7683 +648944,321.7,94.4268 +648945,316.92,89.58596 +648946,318.02,91.1668 +648947,319.15,92.7954 +648948,320.32,94.478 +648949,315.61,89.56754 +648950,316.68,91.1707 +648951,317.79,92.822 +648952,318.93,94.5278 +648953,314.3,89.55029 +648954,315.35,91.1749 +648955,316.43,92.8481 +648956,317.54,94.5763 +648957,312.99,89.53421 +648958,314.01,91.1796 +648959,315.07,92.8738 +648960,316.16,94.6235 +648961,311.69,89.51933 +648962,312.68,91.1846 +648963,313.71,92.899 +648964,314.77,94.6693 +648965,310.38,89.50567 +648966,311.35,91.19 +648967,312.34,92.9237 +648968,313.38,94.7137 +648969,309.08,89.49323 +648970,310.01,91.1957 +648971,310.98,92.948 +648972,311.99,94.7567 +648973,307.77,89.48204 +648974,308.68,91.2019 +648975,309.62,92.9717 +648976,310.6,94.7983 +648977,306.47,89.4721 +648978,307.35,91.2085 +648979,308.26,92.9949 +648980,309.21,94.8385 +648981,305.17,89.46343 +648982,306.02,91.2154 +648983,306.9,93.0177 +648984,307.82,94.8772 +648985,303.86,89.45604 +648986,304.68,91.2228 +648987,305.53,93.0399 +648988,306.42,94.9145 +648989,302.56,89.44994 +648990,303.35,91.2306 +648991,304.17,93.0617 +648992,305.03,94.9503 +648993,301.26,89.44515 +648994,302.02,91.2388 +648995,302.81,93.0829 +648996,303.63,94.9846 +648997,299.96,89.44167 +648998,300.69,91.2474 +648999,301.44,93.1036 +649000,302.24,95.0175 +649001,298.66,89.43952 +649002,299.36,91.2564 +649003,300.08,93.1238 +649004,300.84,95.0488 +649005,297.36,89.4387 +649006,298.02,91.2658 +649007,298.72,93.1434 +649008,299.45,95.0786 +649009,296.06,89.43922 +649010,296.69,91.2757 +649011,297.35,93.1626 +649012,298.05,95.107 +649013,294.76,89.44109 +649014,295.36,91.286 +649015,295.99,93.1812 +649016,296.65,95.1337 +649017,293.46,89.44432 +649018,294.03,91.2967 +649019,294.63,93.1992 +649020,295.26,95.159 +649021,292.17,89.44892 +649022,292.7,91.3078 +649023,293.26,93.2168 +649024,293.86,95.1827 +649025,290.87,89.45488 +649026,291.37,91.3194 +649027,291.9,93.2338 +649028,292.46,95.2049 +649029,289.57,89.46222 +649030,290.04,91.3314 +649031,290.53,93.2502 +649032,291.06,95.2255 +649033,288.27,89.47093 +649034,288.71,91.3439 +649035,289.17,93.2662 +649036,289.66,95.2445 +649037,286.98,89.48103 +649038,287.37,91.3568 +649039,287.8,93.2815 +649040,288.26,95.262 +649041,285.68,89.49252 +649042,286.04,91.3701 +649043,286.44,93.2964 +649044,286.86,95.278 +649045,284.38,89.50539 +649046,284.71,91.3838 +649047,285.07,93.3107 +649048,285.46,95.2924 +649049,283.09,89.51966 +649050,283.38,91.398 +649051,283.7,93.3245 +649052,284.06,95.3052 +649053,281.79,89.53531 +649054,282.05,91.4127 +649055,282.34,93.3377 +649056,282.66,95.3165 +649057,280.5,89.55236 +649058,280.72,91.4278 +649059,280.97,93.3503 +649060,281.26,95.3262 +649061,279.2,89.57079 +649062,279.39,91.4433 +649063,279.61,93.3625 +649064,279.85,95.3343 +649065,277.91,89.59062 +649066,278.06,91.4592 +649067,278.24,93.3741 +649068,278.45,95.3409 +649069,276.61,89.61184 +649070,276.73,91.4756 +649071,276.88,93.3851 +649072,277.05,95.346 +649073,275.31,89.63444 +649074,275.4,91.4924 +649075,275.51,93.3956 +649076,275.65,95.3495 +649077,274.02,89.65842 +649078,274.07,91.5097 +649079,274.14,93.4056 +649080,274.25,95.3515 +649081,272.72,89.68378 +649082,272.74,91.5274 +649083,272.78,93.415 +649084,272.84,95.3519 +649085,271.43,89.71052 +649086,271.41,91.5455 +649087,271.41,93.424 +649088,271.44,95.3508 +649089,270.13,89.73862 +649090,270.08,91.564 +649091,270.05,93.4323 +649092,270.04,95.3482 +649093,268.84,89.76809 +649094,268.75,91.583 +649095,268.68,93.4402 +649096,268.64,95.3441 +649097,267.54,89.79891 +649098,267.42,91.6024 +649099,267.31,93.4475 +649100,267.24,95.3385 +649101,266.24,89.83108 +649102,266.08,91.6222 +649103,265.95,93.4543 +649104,265.83,95.3314 +649105,264.95,89.86459 +649106,264.75,91.6425 +649107,264.58,93.4606 +649108,264.43,95.3229 +649109,263.65,89.89943 +649110,263.42,91.6631 +649111,263.22,93.4663 +649112,263.03,95.3128 +649113,262.35,89.935595 +649114,262.09,91.6842 +649115,261.85,93.4715 +649116,261.63,95.3013 +649117,261.06,89.973071 +649118,260.76,91.7056 +649119,260.48,93.4763 +649120,260.23,95.2884 +649121,259.76,90.011847 +649122,259.43,91.7275 +649123,259.12,93.4805 +649124,258.83,95.2741 +649125,258.46,90.051913 +649126,258.1,91.7498 +649127,257.75,93.4842 +649128,257.43,95.2583 +649129,257.16,90.093256 +649130,256.77,91.7724 +649131,256.39,93.4875 +649132,256.02,95.2411 +649133,255.87,90.13586 +649134,255.43,91.7955 +649135,255.02,93.4902 +649136,254.62,95.2226 +649137,254.57,90.17972 +649138,254.1,91.8189 +649139,253.65,93.4925 +649140,253.22,95.2027 +649141,253.27,90.22482 +649142,252.77,91.8428 +649143,252.29,93.4942 +649144,251.83,95.1815 +649145,251.97,90.27113 +649146,251.44,91.8669 +649147,250.92,93.4955 +649148,250.43,95.1589 +649149,250.67,90.31866 +649150,250.11,91.8915 +649151,249.56,93.4963 +649152,249.03,95.135 +649153,249.37,90.36737 +649154,248.77,91.9164 +649155,248.19,93.4967 +649156,247.63,95.1099 +649157,248.07,90.41726 +649158,247.44,91.9417 +649159,246.83,93.4966 +649160,246.23,95.0835 +649161,246.76,90.4683 +649162,246.11,91.9674 +649163,245.46,93.4961 +649164,244.84,95.0558 +649165,245.46,90.52049 +649166,244.77,91.9933 +649167,244.1,93.4951 +649168,243.44,95.0269 +649169,244.16,90.57379 +649170,243.44,92.0196 +649171,242.73,93.4936 +649172,242.04,94.9968 +649173,242.85,90.62819 +649174,242.11,92.0463 +649175,241.37,93.4918 +649176,240.65,94.9655 +649177,241.55,90.68367 +649178,240.77,92.0733 +649179,240.01,93.4895 +649180,239.25,94.9331 +649181,240.25,90.74022 +649182,239.44,92.1006 +649183,238.64,93.4868 +649184,237.86,94.8995 +649185,238.94,90.7978 +649186,238.1,92.1281 +649187,237.28,93.4837 +649188,236.47,94.8648 +649189,237.63,90.8564 +649190,236.77,92.156 +649191,235.92,93.4802 +649192,235.07,94.8291 +649193,236.33,90.916 +649194,235.43,92.1842 +649195,234.55,93.4762 +649196,233.68,94.7922 +649197,235.02,90.97657 +649198,234.1,92.2127 +649199,233.19,93.472 +649200,232.29,94.7544 +649201,233.71,91.0381 +649202,232.76,92.2415 +649203,231.83,93.4673 +649204,230.9,94.7155 +649205,232.4,91.1005 +649206,231.43,92.2705 +649207,230.46,93.4623 +649208,229.51,94.6757 +649209,231.09,91.1639 +649210,230.09,92.2998 +649211,229.1,93.4569 +649212,228.12,94.6349 +649213,229.78,91.2281 +649214,228.75,92.3293 +649215,227.74,93.4511 +649216,226.73,94.5932 +649217,228.47,91.2932 +649218,227.42,92.3591 +649219,226.38,93.445 +649220,225.35,94.5505 +649221,227.15,91.3591 +649222,226.08,92.3892 +649223,225.02,93.4386 +649224,223.96,94.507 +649225,225.84,91.4258 +649226,224.74,92.4194 +649227,223.66,93.4319 +649228,222.57,94.4627 +649229,224.52,91.4933 +649230,223.41,92.4499 +649231,222.29,93.4248 +649232,221.19,94.4176 +649233,223.21,91.5615 +649234,222.07,92.4805 +649235,220.93,93.4174 +649236,219.81,94.3716 +649237,221.89,91.6305 +649238,220.73,92.5114 +649239,219.57,93.4098 +649240,218.42,94.325 +649241,220.57,91.7001 +649242,219.39,92.5425 +649243,218.21,93.4018 +649244,217.04,94.2776 +649245,219.26,91.7704 +649246,218.05,92.5737 +649247,216.85,93.3936 +649248,215.66,94.2295 +649249,217.94,91.8413 +649250,216.71,92.6051 +649251,215.49,93.3851 +649252,214.28,94.1807 +649253,216.62,91.9129 +649254,215.37,92.6367 +649255,214.13,93.3764 +649256,212.9,94.1313 +649257,215.29,91.985 +649258,214.03,92.6684 +649259,212.78,93.3674 +649260,211.53,94.0813 +649261,213.97,92.0576 +649262,212.69,92.7002 +649263,211.42,93.3582 +649264,210.15,94.0308 +649265,212.65,92.1308 +649266,211.35,92.7322 +649267,210.06,93.3487 +649268,208.78,93.9797 +649269,211.32,92.2044 +649270,210.01,92.7643 +649271,208.7,93.3391 +649272,207.4,93.9281 +649273,210,92.2785 +649274,208.67,92.7965 +649275,207.34,93.3292 +649276,206.03,93.876 +649277,208.67,92.3531 +649278,207.33,92.8288 +649279,205.99,93.3192 +649280,204.66,93.8235 +649281,207.34,92.428 +649282,205.98,92.8612 +649283,204.63,93.3089 +649284,203.28,93.7705 +649285,206.01,92.5033 +649286,204.64,92.8936 +649287,203.27,93.2985 +649288,201.91,93.7172 +649289,204.68,92.5789 +649290,203.3,92.9261 +649291,201.92,93.2879 +649292,200.55,93.6636 +649293,203.35,92.6547 +649294,201.95,92.9587 +649295,200.56,93.2772 +649296,199.18,93.6096 +649297,202.02,92.7309 +649298,200.61,92.9913 +649299,199.21,93.2663 +649300,197.81,93.5553 +649301,200.68,92.8073 +649302,199.26,93.0239 +649303,197.85,93.2554 +649304,196.45,93.5008 +649305,199.35,92.8838 +649306,197.92,93.0566 +649307,196.5,93.2442 +649308,195.08,93.4461 +649309,198.01,92.9606 +649310,196.57,93.0893 +649311,195.14,93.233 +649312,193.72,93.3912 +649313,196.67,93.0374 +649314,195.23,93.1219 +649315,193.79,93.2217 +649316,192.36,93.3362 +649317,195.34,93.1144 +649318,193.88,93.1546 +649319,192.43,93.2103 +649320,191,93.281 +649321,194,93.1914 +649322,192.54,93.1872 +649323,191.08,93.1989 +649324,189.64,93.2258 +649325,192.65,93.2685 +649326,191.19,93.2198 +649327,189.73,93.1873 +649328,188.28,93.1705 +649329,191.31,93.3455 +649330,189.84,93.2523 +649331,188.38,93.1757 +649332,186.92,93.1152 +649333,189.97,93.4225 +649334,188.49,93.2848 +649335,187.02,93.1641 +649336,185.57,93.0599 +649337,188.62,93.4994 +649338,187.14,93.3172 +649339,185.67,93.1525 +649340,184.21,93.0046 +649341,187.28,93.5762 +649342,185.8,93.3495 +649343,184.32,93.1408 +649344,182.86,92.9495 +649345,185.93,93.6528 +649346,184.45,93.3817 +649347,182.97,93.1291 +649348,181.5,92.8944 +649349,184.58,93.7293 +649350,183.1,93.4139 +649351,181.62,93.1175 +649352,180.15,92.8395 +649353,183.23,93.8056 +649354,181.75,93.4459 +649355,180.27,93.1058 +649356,178.8,92.7847 +649357,181.88,93.8816 +649358,180.4,93.4777 +649359,178.92,93.0942 +649360,177.45,92.7302 +649361,180.53,93.9573 +649362,179.05,93.5095 +649363,177.57,93.0826 +649364,176.11,92.6759 +649365,179.18,94.0327 +649366,177.69,93.541 +649367,176.22,93.071 +649368,174.76,92.6219 +649369,177.82,94.1078 +649370,176.34,93.5725 +649371,174.87,93.0595 +649372,173.42,92.5682 +649373,176.47,94.1825 +649374,174.99,93.6037 +649375,173.53,93.0481 +649376,172.07,92.5148 +649377,175.11,94.2567 +649378,173.64,93.6348 +649379,172.18,93.0368 +649380,170.73,92.4618 +649381,173.75,94.3305 +649382,172.28,93.6656 +649383,170.83,93.0255 +649384,169.39,92.4092 +649385,172.39,94.4039 +649386,170.93,93.6963 +649387,169.48,93.0144 +649388,168.05,92.357 +649389,171.03,94.4767 +649390,169.58,93.7267 +649391,168.14,93.0033 +649392,166.71,92.3052 +649393,169.67,94.5489 +649394,168.22,93.757 +649395,166.79,92.9924 +649396,165.37,92.254 +649397,168.31,94.6205 +649398,166.87,93.7869 +649399,165.44,92.9816 +649400,164.03,92.2033 +649401,166.94,94.6916 +649402,165.51,93.8167 +649403,164.1,92.971 +649404,162.7,92.1531 +649405,165.58,94.762 +649406,164.16,93.8461 +649407,162.75,92.9605 +649408,161.36,92.1035 +649409,164.21,94.8316 +649410,162.8,93.8753 +649411,161.41,92.9502 +649412,160.03,92.0545 +649413,162.84,94.9006 +649414,161.45,93.9042 +649415,160.06,92.94 +649416,158.69,92.0061 +649417,161.48,94.9688 +649418,160.09,93.9328 +649419,158.72,92.93 +649420,157.36,91.9584 +649421,160.11,95.0363 +649422,158.73,93.9612 +649423,157.38,92.9203 +649424,156.03,91.9114 +649425,158.73,95.1029 +649426,157.38,93.9892 +649427,156.03,92.9107 +649428,154.7,91.8651 +649429,157.36,95.1687 +649430,156.02,94.0168 +649431,154.69,92.9013 +649432,153.37,91.8196 +649433,155.99,95.2336 +649434,154.66,94.0442 +649435,153.35,92.8921 +649436,152.05,91.7748 +649437,154.61,95.2976 +649438,153.3,94.0712 +649439,152,92.8832 +649440,150.72,91.7308 +649441,153.24,95.3606 +649442,151.94,94.0979 +649443,150.66,92.8745 +649444,149.4,91.6876 +649445,151.86,95.4227 +649446,150.58,94.1242 +649447,149.32,92.8661 +649448,148.07,91.6453 +649449,150.49,95.4838 +649450,149.22,94.1501 +649451,147.98,92.8579 +649452,146.75,91.6039 +649453,149.11,95.5439 +649454,147.86,94.1756 +649455,146.64,92.85 +649456,145.43,91.5634 +649457,147.73,95.6029 +649458,146.5,94.2008 +649459,145.3,92.8423 +649460,144.1,91.5237 +649461,146.35,95.6609 +649462,145.14,94.2256 +649463,143.95,92.8349 +649464,142.78,91.4851 +649465,144.97,95.7177 +649466,143.78,94.2499 +649467,142.61,92.8279 +649468,141.47,91.4474 +649469,143.58,95.7734 +649470,142.42,94.2739 +649471,141.27,92.8211 +649472,140.15,91.4107 +649473,142.2,95.828 +649474,141.06,94.2974 +649475,139.93,92.8146 +649476,138.83,91.375 +649477,140.81,95.8814 +649478,139.7,94.3205 +649479,138.6,92.8084 +649480,137.51,91.3403 +649481,139.43,95.9335 +649482,138.33,94.3432 +649483,137.26,92.8025 +649484,136.2,91.3067 +649485,138.04,95.9844 +649486,136.97,94.3654 +649487,135.92,92.797 +649488,134.88,91.2742 +649489,136.66,96.0341 +649490,135.61,94.3872 +649491,134.58,92.7918 +649492,133.57,91.2427 +649493,135.27,96.0825 +649494,134.24,94.4085 +649495,133.24,92.7869 +649496,132.25,91.2124 +649497,133.88,96.1296 +649498,132.88,94.4293 +649499,131.9,92.7824 +649500,130.94,91.1832 +649501,132.49,96.1753 +649502,131.52,94.4497 +649503,130.56,92.7782 +649504,129.63,91.1552 +649505,131.1,96.2197 +649506,130.15,94.4696 +649507,129.23,92.7744 +649508,128.32,91.1284 +649509,129.71,96.2628 +649510,128.79,94.489 +649511,127.89,92.771 +649512,127.01,91.1027 +649513,128.32,96.3044 +649514,127.42,94.5079 +649515,126.55,92.7679 +649516,125.7,91.0782 +649517,126.92,96.3447 +649518,126.06,94.5263 +649519,125.21,92.7652 +649520,124.39,91.055 +649521,125.53,96.3835 +649522,124.69,94.5442 +649523,123.88,92.7629 +649524,123.08,91.033 +649525,124.13,96.4209 +649526,123.33,94.5616 +649527,122.54,92.7609 +649528,121.77,91.0122 +649529,122.74,96.4569 +649530,121.96,94.5784 +649531,121.2,92.7594 +649532,120.46,90.99273 +649533,121.34,96.4913 +649534,120.6,94.5948 +649535,119.87,92.7582 +649536,119.16,90.97452 +649537,119.95,96.5243 +649538,119.23,94.6106 +649539,118.53,92.7575 +649540,117.85,90.9576 +649541,118.55,96.5558 +649542,117.86,94.6259 +649543,117.2,92.7571 +649544,116.55,90.94198 +649545,117.15,96.5857 +649546,116.5,94.6407 +649547,115.86,92.7572 +649548,115.24,90.92767 +649549,115.76,96.6142 +649550,115.13,94.6549 +649551,114.53,92.7577 +649552,113.94,90.9147 +649553,114.36,96.6411 +649554,113.76,94.6686 +649555,113.19,92.7585 +649556,112.63,90.90305 +649557,112.96,96.6664 +649558,112.4,94.6818 +649559,111.85,92.7598 +649560,111.33,90.89276 +649561,111.56,96.6902 +649562,111.03,94.6944 +649563,110.52,92.7616 +649564,110.02,90.88381 +649565,110.16,96.7124 +649566,109.66,94.7064 +649567,109.18,92.7637 +649568,108.72,90.87623 +649569,108.76,96.733 +649570,108.3,94.7179 +649571,107.85,92.7663 +649572,107.42,90.87002 +649573,107.36,96.752 +649574,106.93,94.7289 +649575,106.51,92.7693 +649576,106.12,90.86518 +649577,105.96,96.7695 +649578,105.56,94.7393 +649579,105.18,92.7727 +649580,104.81,90.86173 +649581,104.56,96.7853 +649582,104.19,94.7491 +649583,103.84,92.7765 +649584,103.51,90.85967 +649585,103.16,96.7996 +649586,102.82,94.7583 +649587,102.51,92.7808 +649588,102.21,90.859 +649589,101.75,96.8122 +649590,101.46,94.767 +649591,101.18,92.7856 +649592,100.91,90.85973 +649593,100.35,96.8232 +649594,100.09,94.7752 +649595,99.841,92.7907 +649596,99.607,90.86185 +649597,98.951,96.8326 +649598,98.72,94.7827 +649599,98.506,92.7963 +649600,98.305,90.86538 +649601,97.548,96.8404 +649602,97.352,94.7897 +649603,97.172,92.8024 +649604,97.004,90.87032 +649605,96.146,96.8465 +649606,95.984,94.7962 +649607,95.837,92.8088 +649608,95.703,90.87666 +649609,94.743,96.8511 +649610,94.616,94.802 +649611,94.503,92.8157 +649612,94.403,90.88441 +649613,93.341,96.854 +649614,93.247,94.8073 +649615,93.168,92.8231 +649616,93.102,90.89357 +649617,91.938,96.8553 +649618,91.879,94.812 +649619,91.834,92.8309 +649620,91.801,90.90413 +649621,90.535,96.855 +649622,90.511,94.8162 +649623,90.499,92.8391 +649624,90.5,90.91609 +649625,89.132,96.8531 +649626,89.142,94.8198 +649627,89.165,92.8478 +649628,89.199,90.92946 +649629,87.73,96.8496 +649630,87.774,94.8228 +649631,87.83,92.8568 +649632,87.898,90.94423 +649633,86.327,96.8445 +649634,86.405,94.8253 +649635,86.496,92.8664 +649636,86.597,90.9604 +649637,84.924,96.8377 +649638,85.037,94.8272 +649639,85.161,92.8763 +649640,85.296,90.97795 +649641,83.522,96.8294 +649642,83.669,94.8286 +649643,83.827,92.8867 +649644,83.995,90.99689 +649645,82.12,96.8196 +649646,82.3,94.8294 +649647,82.492,92.8975 +649648,82.693,91.0172 +649649,80.717,96.8081 +649650,80.932,94.8296 +649651,81.157,92.9088 +649652,81.392,91.0389 +649653,79.315,96.7951 +649654,79.564,94.8293 +649655,79.822,92.9204 +649656,80.09,91.062 +649657,77.914,96.7806 +649658,78.196,94.8285 +649659,78.487,92.9325 +649660,78.788,91.0864 +649661,76.512,96.7645 +649662,76.828,94.8271 +649663,77.152,92.945 +649664,77.485,91.1122 +649665,75.111,96.7469 +649666,75.46,94.8252 +649667,75.817,92.9579 +649668,76.183,91.1393 +649669,73.71,96.7277 +649670,74.092,94.8227 +649671,74.482,92.9712 +649672,74.88,91.1677 +649673,72.309,96.7071 +649674,72.724,94.8197 +649675,73.146,92.985 +649676,73.576,91.1975 +649677,70.909,96.685 +649678,71.356,94.8161 +649679,71.811,92.9991 +649680,72.273,91.2286 +649681,69.509,96.6614 +649682,69.989,94.8121 +649683,70.475,93.0136 +649684,70.968,91.261 +649685,68.11,96.6364 +649686,68.621,94.8075 +649687,69.139,93.0285 +649688,69.664,91.2946 +649689,66.711,96.6099 +649690,67.254,94.8024 +649691,67.803,93.0438 +649692,68.359,91.3296 +649693,65.312,96.582 +649694,65.887,94.7968 +649695,66.467,93.0595 +649696,67.053,91.3658 +649697,63.915,96.5527 +649698,64.52,94.7907 +649699,65.131,93.0756 +649700,65.747,91.4032 +649701,62.517,96.5221 +649702,63.153,94.7841 +649703,63.794,93.0921 +649704,64.44,91.4419 +649705,61.12,96.49 +649706,61.786,94.777 +649707,62.457,93.1089 +649708,63.133,91.4818 +649709,59.724,96.4566 +649710,60.42,94.7694 +649711,61.12,93.126 +649712,61.826,91.5228 +649713,58.328,96.4219 +649714,59.053,94.7614 +649715,59.783,93.1436 +649716,60.517,91.5651 +649717,56.933,96.3859 +649718,57.687,94.7528 +649719,58.446,93.1614 +649720,59.208,91.6085 +649721,55.539,96.3486 +649722,56.322,94.7439 +649723,57.108,93.1797 +649724,57.899,91.6531 +649725,54.145,96.3101 +649726,54.956,94.7344 +649727,55.77,93.1982 +649728,56.588,91.6988 +649729,52.752,96.2703 +649730,53.59,94.7245 +649731,54.432,93.2171 +649732,55.277,91.7456 +649733,51.359,96.2293 +649734,52.225,94.7141 +649735,53.094,93.2363 +649736,53.966,91.7935 +649737,49.968,96.1872 +649738,50.86,94.7033 +649739,51.755,93.2558 +649740,52.653,91.8424 +649741,48.577,96.1439 +649742,49.495,94.6921 +649743,50.417,93.2756 +649744,51.34,91.8924 +649745,47.187,96.0994 +649746,48.131,94.6805 +649747,49.078,93.2958 +649748,50.026,91.9434 +649749,45.797,96.0538 +649750,46.767,94.6684 +649751,47.738,93.3162 +649752,48.711,91.9955 +649753,44.409,96.0072 +649754,45.403,94.656 +649755,46.398,93.3369 +649756,47.396,92.0485 +649757,43.021,95.9595 +649758,44.039,94.6431 +649759,45.059,93.3579 +649760,46.079,92.1024 +649761,41.635,95.9108 +649762,42.676,94.6299 +649763,43.718,93.3791 +649764,44.762,92.1573 +649765,40.249,95.8611 +649766,41.313,94.6163 +649767,42.378,93.4006 +649768,43.444,92.2131 +649769,38.864,95.8104 +649770,39.95,94.6023 +649771,41.037,93.4224 +649772,42.125,92.2697 +649773,37.48,95.7588 +649774,38.587,94.588 +649775,39.696,93.4444 +649776,40.805,92.3273 +649777,36.097,95.7062 +649778,37.225,94.5733 +649779,38.354,93.4666 +649780,39.484,92.3856 +649781,34.714,95.6528 +649782,35.863,94.5582 +649783,37.012,93.4891 +649784,38.162,92.4448 +649785,33.333,95.5985 +649786,34.501,94.5429 +649787,35.67,93.5117 +649788,36.84,92.5047 +649789,31.953,95.5435 +649790,33.14,94.5272 +649791,34.328,93.5346 +649792,35.516,92.5654 +649793,30.574,95.4876 +649794,31.779,94.5112 +649795,32.985,93.5577 +649796,34.191,92.6268 +649797,29.196,95.4309 +649798,30.418,94.4949 +649799,31.642,93.5809 +649800,32.865,92.6889 +649801,27.819,95.3736 +649802,29.058,94.4783 +649803,30.298,93.6044 +649804,31.539,92.7517 +649805,26.442,95.3155 +649806,27.698,94.4614 +649807,28.955,93.628 +649808,30.211,92.8151 +649809,25.067,95.2568 +649810,26.338,94.4443 +649811,27.61,93.6517 +649812,28.882,92.8791 +649813,23.693,95.1975 +649814,24.979,94.4269 +649815,26.266,93.6756 +649816,27.552,92.9437 +649817,22.321,95.1375 +649818,23.62,94.4092 +649819,24.921,93.6996 +649820,26.221,93.0088 +649821,20.949,95.077 +649822,22.262,94.3913 +649823,23.576,93.7238 +649824,24.889,93.0745 +649825,19.578,95.016 +649826,20.903,94.3732 +649827,22.23,93.748 +649828,23.556,93.1407 +649829,18.208,94.9545 +649830,19.546,94.3549 +649831,20.884,93.7724 +649832,22.222,93.2073 +649833,16.84,94.8925 +649834,18.188,94.3363 +649835,19.537,93.7969 +649836,20.887,93.2743 +649837,15.473,94.83 +649838,16.831,94.3176 +649839,18.191,93.8214 +649840,19.55,93.3417 +649841,14.106,94.7672 +649842,15.474,94.2987 +649843,16.844,93.846 +649844,18.213,93.4095 +649845,12.741,94.704 +649846,14.118,94.2796 +649847,15.496,93.8707 +649848,16.874,93.4776 +649849,11.377,94.6405 +649850,12.762,94.2603 +649851,14.148,93.8954 +649852,15.534,93.546 +649853,10.014,94.5766 +649854,11.406,94.2409 +649855,12.8,93.9202 +649856,14.193,93.6147 +649857,8.6529,94.5125 +649858,10.051,94.2213 +649859,11.451,93.945 +649860,12.851,93.6836 +649861,7.2924,94.4482 +649862,8.6962,94.2017 +649863,10.102,93.9698 +649864,11.508,93.7527 +649865,5.9331,94.3837 +649866,7.3418,94.1819 +649867,8.7523,93.9946 +649868,10.163,93.822 +649869,4.575,94.319 +649870,5.9877,94.162 +649871,7.4023,94.0194 +649872,8.8174,93.8914 +649873,3.218,94.2542 +649874,4.634,94.142 +649875,6.052,94.0441 +649876,7.4705,93.9609 +649877,1.8623,94.1893 +649878,3.2807,94.1219 +649879,4.7013,94.0689 +649880,6.1225,94.0305 +649881,0.50767,94.1243 +649882,1.9278,94.1017 +649883,3.3502,94.0936 +649884,4.7733,94.1001 +649885,359.15,94.0593 +649886,0.57524,94.0815 +649887,1.9987,94.1183 +649888,3.4229,94.1697 +649889,357.8,93.9944 +649890,359.22,94.0612 +649891,0.64677,94.1429 +649892,2.0714,94.2393 +649893,356.45,93.9294 +649894,357.87,94.0409 +649895,359.29,94.1674 +649896,0.71865,94.3088 +649897,355.1,93.8645 +649898,356.52,94.0206 +649899,357.94,94.1918 +649900,359.36,94.3782 +649901,353.75,93.7998 +649902,355.17,94.0003 +649903,356.59,94.2161 +649904,358.01,94.4474 +649905,352.4,93.7351 +649906,353.82,93.9799 +649907,355.24,94.2404 +649908,356.65,94.5165 +649909,351.06,93.6707 +649910,352.47,93.9596 +649911,353.88,94.2645 +649912,355.3,94.5854 +649913,349.71,93.6064 +649914,351.12,93.9392 +649915,352.53,94.2884 +649916,353.94,94.654 +649917,348.37,93.5424 +649918,349.77,93.9189 +649919,351.17,94.3122 +649920,352.58,94.7224 +649921,347.03,93.4787 +649922,348.42,93.8987 +649923,349.82,94.3359 +649924,351.22,94.7904 +649925,345.68,93.4153 +649926,347.07,93.8785 +649927,348.46,94.3594 +649928,349.85,94.8582 +649929,344.34,93.3522 +649930,345.72,93.8583 +649931,347.11,94.3827 +649932,348.49,94.9255 +649933,343,93.2894 +649934,344.38,93.8383 +649935,345.75,94.4059 +649936,347.13,94.9924 +649937,341.67,93.2271 +649938,343.03,93.8183 +649939,344.39,94.4288 +649940,345.76,95.0589 +649941,340.33,93.1652 +649942,341.68,93.7984 +649943,343.04,94.4516 +649944,344.39,95.1249 +649945,338.99,93.1038 +649946,340.33,93.7786 +649947,341.68,94.4741 +649948,343.03,95.1904 +649949,337.66,93.0428 +649950,338.99,93.7589 +649951,340.32,94.4963 +649952,341.66,95.2553 +649953,336.32,92.9824 +649954,337.64,93.7394 +649955,338.96,94.5184 +649956,340.29,95.3196 +649957,334.99,92.9225 +649958,336.3,93.72 +649959,337.6,94.5401 +649960,338.92,95.3834 +649961,333.66,92.8632 +649962,334.95,93.7007 +649963,336.25,94.5616 +649964,337.54,95.4465 +649965,332.33,92.8045 +649966,333.61,93.6816 +649967,334.89,94.5829 +649968,336.17,95.5089 +649969,331,92.7465 +649970,332.26,93.6627 +649971,333.53,94.6038 +649972,334.8,95.5706 +649973,329.67,92.6891 +649974,330.92,93.6439 +649975,332.17,94.6245 +649976,333.42,95.6316 +649977,328.34,92.6324 +649978,329.57,93.6254 +649979,330.81,94.6448 +649980,332.04,95.6918 +649981,327.02,92.5765 +649982,328.23,93.607 +649983,329.45,94.6649 +649984,330.67,95.7512 +649985,325.69,92.5213 +649986,326.89,93.5888 +649987,328.08,94.6846 +649988,329.29,95.8097 +649989,324.37,92.4669 +649990,325.54,93.5709 +649991,326.72,94.7039 +649992,327.91,95.8674 +649993,323.04,92.4133 +649994,324.2,93.5531 +649995,325.36,94.723 +649996,326.53,95.9242 +649997,321.72,92.3605 +649998,322.86,93.5356 +649999,324,94.7416 +650000,325.15,95.9801 +650001,320.4,92.3086 +650002,321.52,93.5184 +650003,322.64,94.7599 +650004,323.76,96.035 +650005,319.08,92.2575 +650006,320.17,93.5014 +650007,321.27,94.7779 +650008,322.38,96.0889 +650009,317.76,92.2074 +650010,318.83,93.4846 +650011,319.91,94.7954 +650012,320.99,96.1418 +650013,316.44,92.1582 +650014,317.49,93.4682 +650015,318.55,94.8126 +650016,319.61,96.1937 +650017,315.12,92.11 +650018,316.15,93.452 +650019,317.19,94.8293 +650020,318.22,96.2445 +650021,313.8,92.0627 +650022,314.81,93.4361 +650023,315.82,94.8457 +650024,316.84,96.2941 +650025,312.49,92.0164 +650026,313.47,93.4204 +650027,314.46,94.8616 +650028,315.45,96.3427 +650029,311.17,91.9712 +650030,312.13,93.4051 +650031,313.09,94.8771 +650032,314.06,96.3901 +650033,309.86,91.927 +650034,310.79,93.3901 +650035,311.73,94.8922 +650036,312.67,96.4364 +650037,308.54,91.8839 +650038,309.45,93.3754 +650039,310.36,94.9068 +650040,311.28,96.4814 +650041,307.23,91.8419 +650042,308.11,93.3611 +650043,309,94.921 +650044,309.89,96.5252 +650045,305.92,91.8009 +650046,306.77,93.347 +650047,307.63,94.9347 +650048,308.5,96.5678 +650049,304.61,91.7611 +650050,305.43,93.3333 +650051,306.27,94.9479 +650052,307.1,96.609 +650053,303.29,91.7225 +650054,304.1,93.32 +650055,304.9,94.9607 +650056,305.71,96.649 +650057,301.98,91.685 +650058,302.76,93.307 +650059,303.54,94.973 +650060,304.32,96.6877 +650061,300.67,91.6487 +650062,301.42,93.2943 +650063,302.17,94.9848 +650064,302.92,96.725 +650065,299.36,91.6136 +650066,300.08,93.282 +650067,300.8,94.9962 +650068,301.53,96.761 +650069,298.06,91.5797 +650070,298.75,93.2701 +650071,299.44,95.007 +650072,300.13,96.7955 +650073,296.75,91.547 +650074,297.41,93.2586 +650075,298.07,95.0173 +650076,298.73,96.8287 +650077,295.44,91.5156 +650078,296.07,93.2474 +650079,296.7,95.0272 +650080,297.34,96.8605 +650081,294.13,91.4854 +650082,294.73,93.2366 +650083,295.33,95.0365 +650084,295.94,96.8908 +650085,292.83,91.4565 +650086,293.4,93.2262 +650087,293.97,95.0453 +650088,294.54,96.9196 +650089,291.52,91.4289 +650090,292.06,93.2162 +650091,292.6,95.0535 +650092,293.14,96.947 +650093,290.21,91.4026 +650094,290.72,93.2066 +650095,291.23,95.0612 +650096,291.74,96.9729 +650097,288.91,91.3777 +650098,289.39,93.1974 +650099,289.86,95.0684 +650100,290.34,96.9973 +650101,287.6,91.354 +650102,288.05,93.1886 +650103,288.5,95.0751 +650104,288.94,97.0202 +650105,286.3,91.3317 +650106,286.71,93.1802 +650107,287.13,95.0812 +650108,287.54,97.0415 +650109,285,91.3107 +650110,285.38,93.1723 +650111,285.76,95.0868 +650112,286.14,97.0613 +650113,283.69,91.2911 +650114,284.04,93.1647 +650115,284.39,95.0918 +650116,284.74,97.0796 +650117,282.39,91.2728 +650118,282.71,93.1576 +650119,283.02,95.0963 +650120,283.34,97.0962 +650121,281.09,91.2559 +650122,281.37,93.1509 +650123,281.65,95.1002 +650124,281.94,97.1113 +650125,279.78,91.2404 +650126,280.04,93.1446 +650127,280.29,95.1035 +650128,280.53,97.1249 +650129,278.48,91.2262 +650130,278.7,93.1387 +650131,278.92,95.1063 +650132,279.13,97.1368 +650133,277.18,91.2135 +650134,277.36,93.1333 +650135,277.55,95.1086 +650136,277.73,97.1471 +650137,275.88,91.2021 +650138,276.03,93.1283 +650139,276.18,95.1102 +650140,276.33,97.1558 +650141,274.57,91.1922 +650142,274.69,93.1237 +650143,274.81,95.1113 +650144,274.93,97.1629 +650145,273.27,91.1836 +650146,273.36,93.1196 +650147,273.44,95.1118 +650148,273.52,97.1684 +650149,271.97,91.1765 +650150,272.02,93.1159 +650151,272.07,95.1118 +650152,272.12,97.1722 +650153,270.67,91.1707 +650154,270.69,93.1127 +650155,270.7,95.1112 +650156,270.72,97.1745 +650157,269.37,91.1664 +650158,269.35,93.1098 +650159,269.34,95.11 +650160,269.31,97.1751 +650161,268.06,91.1635 +650162,268.02,93.1075 +650163,267.97,95.1082 +650164,267.91,97.174 +650165,266.76,91.162 +650166,266.68,93.1055 +650167,266.6,95.1059 +650168,266.51,97.1714 +650169,265.46,91.1619 +650170,265.35,93.104 +650171,265.23,95.103 +650172,265.11,97.1671 +650173,264.16,91.1632 +650174,264.01,93.1029 +650175,263.86,95.0995 +650176,263.7,97.1611 +650177,262.86,91.1659 +650178,262.68,93.1023 +650179,262.49,95.0955 +650180,262.3,97.1536 +650181,261.55,91.17 +650182,261.34,93.1021 +650183,261.12,95.0909 +650184,260.9,97.1444 +650185,260.25,91.1755 +650186,260.01,93.1024 +650187,259.75,95.0857 +650188,259.5,97.1336 +650189,258.95,91.1824 +650190,258.67,93.103 +650191,258.39,95.0799 +650192,258.09,97.1212 +650193,257.64,91.1908 +650194,257.33,93.1041 +650195,257.02,95.0736 +650196,256.69,97.1072 +650197,256.34,91.2005 +650198,256,93.1057 +650199,255.65,95.0667 +650200,255.29,97.0915 +650201,255.04,91.2115 +650202,254.66,93.1076 +650203,254.28,95.0593 +650204,253.89,97.0743 +650205,253.73,91.224 +650206,253.33,93.11 +650207,252.91,95.0513 +650208,252.49,97.0555 +650209,252.43,91.2378 +650210,251.99,93.1128 +650211,251.54,95.0427 +650212,251.09,97.0351 +650213,251.13,91.253 +650214,250.66,93.1161 +650215,250.18,95.0336 +650216,249.69,97.0131 +650217,249.82,91.2695 +650218,249.32,93.1197 +650219,248.81,95.0239 +650220,248.29,96.9896 +650221,248.52,91.2874 +650222,247.98,93.1238 +650223,247.44,95.0137 +650224,246.89,96.9645 +650225,247.21,91.3066 +650226,246.65,93.1282 +650227,246.07,95.003 +650228,245.49,96.9379 +650229,245.9,91.3271 +650230,245.31,93.1331 +650231,244.71,94.9917 +650232,244.09,96.9098 +650233,244.6,91.3489 +650234,243.97,93.1384 +650235,243.34,94.9799 +650236,242.7,96.8802 +650237,243.29,91.3721 +650238,242.64,93.1441 +650239,241.97,94.9675 +650240,241.3,96.849 +650241,241.98,91.3965 +650242,241.3,93.1502 +650243,240.61,94.9547 +650244,239.9,96.8164 +650245,240.68,91.4222 +650246,239.96,93.1566 +650247,239.24,94.9413 +650248,238.51,96.7824 +650249,239.37,91.4491 +650250,238.62,93.1635 +650251,237.87,94.9274 +650252,237.11,96.7469 +650253,238.06,91.4773 +650254,237.29,93.1707 +650255,236.51,94.913 +650256,235.72,96.7099 +650257,236.75,91.5067 +650258,235.95,93.1783 +650259,235.14,94.898 +650260,234.32,96.6716 +650261,235.44,91.5373 +650262,234.61,93.1862 +650263,233.78,94.8826 +650264,232.93,96.6319 +650265,234.13,91.5691 +650266,233.27,93.1946 +650267,232.41,94.8667 +650268,231.54,96.5908 +650269,232.82,91.6021 +650270,231.93,93.2033 +650271,231.04,94.8503 +650272,230.14,96.5484 +650273,231.5,91.6362 +650274,230.6,93.2123 +650275,229.68,94.8335 +650276,228.75,96.5046 +650277,230.19,91.6715 +650278,229.26,93.2217 +650279,228.31,94.8161 +650280,227.36,96.4595 +650281,228.88,91.7079 +650282,227.92,93.2314 +650283,226.95,94.7983 +650284,225.97,96.4132 +650285,227.56,91.7454 +650286,226.58,93.2414 +650287,225.59,94.7801 +650288,224.58,96.3656 +650289,226.25,91.784 +650290,225.24,93.2518 +650291,224.22,94.7614 +650292,223.2,96.3167 +650293,224.93,91.8237 +650294,223.9,93.2625 +650295,222.86,94.7422 +650296,221.81,96.2667 +650297,223.61,91.8644 +650298,222.56,93.2735 +650299,221.5,94.7226 +650300,220.42,96.2155 +650301,222.29,91.9061 +650302,221.22,93.2848 +650303,220.13,94.7026 +650304,219.04,96.1631 +650305,220.98,91.9488 +650306,219.88,93.2964 +650307,218.77,94.6822 +650308,217.65,96.1096 +650309,219.66,91.9925 +650310,218.54,93.3082 +650311,217.41,94.6614 +650312,216.27,96.0549 +650313,218.33,92.0371 +650314,217.19,93.3204 +650315,216.05,94.6402 +650316,214.89,95.9993 +650317,217.01,92.0826 +650318,215.85,93.3328 +650319,214.68,94.6186 +650320,213.5,95.9425 +650321,215.69,92.1291 +650322,214.51,93.3455 +650323,213.32,94.5966 +650324,212.12,95.8847 +650325,214.37,92.1764 +650326,213.17,93.3584 +650327,211.96,94.5742 +650328,210.74,95.826 +650329,213.04,92.2246 +650330,211.83,93.3716 +650331,210.6,94.5514 +650332,209.37,95.7663 +650333,211.72,92.2736 +650334,210.48,93.385 +650335,209.24,94.5284 +650336,207.99,95.7056 +650337,210.39,92.3235 +650338,209.14,93.3986 +650339,207.88,94.5049 +650340,206.61,95.6441 +650341,209.06,92.3741 +650342,207.8,93.4125 +650343,206.52,94.4812 +650344,205.24,95.5817 +650345,207.73,92.4254 +650346,206.45,93.4266 +650347,205.16,94.4571 +650348,203.86,95.5184 +650349,206.41,92.4775 +650350,205.11,93.4408 +650351,203.8,94.4326 +650352,202.49,95.4543 +650353,205.07,92.5302 +650354,203.76,93.4553 +650355,202.44,94.4079 +650356,201.12,95.3895 +650357,203.74,92.5836 +650358,202.42,93.4699 +650359,201.09,94.3829 +650360,199.74,95.3239 +650361,202.41,92.6377 +650362,201.07,93.4847 +650363,199.73,94.3576 +650364,198.37,95.2576 +650365,201.08,92.6923 +650366,199.73,93.4996 +650367,198.37,94.3321 +650368,197.01,95.1906 +650369,199.74,92.7476 +650370,198.38,93.5147 +650371,197.01,94.3062 +650372,195.64,95.1229 +650373,198.41,92.8034 +650374,197.04,93.53 +650375,195.66,94.2802 +650376,194.27,95.0547 +650377,197.07,92.8597 +650378,195.69,93.5453 +650379,194.3,94.2538 +650380,192.91,94.9859 +650381,195.73,92.9165 +650382,194.34,93.5608 +650383,192.94,94.2273 +650384,191.54,94.9165 +650385,194.39,92.9737 +650386,192.99,93.5764 +650387,191.59,94.2005 +650388,190.18,94.8466 +650389,193.05,93.0314 +650390,191.65,93.5921 +650391,190.23,94.1735 +650392,188.82,94.7762 +650393,191.71,93.0895 +650394,190.3,93.6079 +650395,188.88,94.1463 +650396,187.46,94.7054 +650397,190.37,93.1479 +650398,188.95,93.6237 +650399,187.53,94.119 +650400,186.1,94.6341 +650401,189.02,93.2067 +650402,187.6,93.6396 +650403,186.17,94.0914 +650404,184.74,94.5625 +650405,187.68,93.2657 +650406,186.25,93.6556 +650407,184.82,94.0637 +650408,183.38,94.4905 +650409,186.33,93.3251 +650410,184.9,93.6716 +650411,183.47,94.0358 +650412,182.02,94.4182 +650413,184.98,93.3847 +650414,183.55,93.6876 +650415,182.11,94.0078 +650416,180.67,94.3457 +650417,183.63,93.4445 +650418,182.2,93.7037 +650419,180.76,93.9797 +650420,179.32,94.2729 +650421,182.29,93.5044 +650422,180.85,93.7197 +650423,179.41,93.9515 +650424,177.96,94.1999 +650425,180.93,93.5645 +650426,179.5,93.7358 +650427,178.06,93.9231 +650428,176.61,94.1267 +650429,179.58,93.6247 +650430,178.15,93.7519 +650431,176.71,93.8946 +650432,175.26,94.0534 +650433,178.23,93.685 +650434,176.79,93.7679 +650435,175.36,93.8661 +650436,173.91,93.9799 +650437,176.87,93.7453 +650438,175.44,93.7839 +650439,174.01,93.8375 +650440,172.56,93.9065 +650441,175.52,93.8056 +650442,174.09,93.7998 +650443,172.66,93.8088 +650444,171.22,93.8329 +650445,174.16,93.8659 +650446,172.74,93.8157 +650447,171.31,93.7801 +650448,169.87,93.7594 +650449,172.8,93.9262 +650450,171.38,93.8315 +650451,169.96,93.7513 +650452,168.53,93.6859 +650453,171.44,93.9863 +650454,170.03,93.8473 +650455,168.61,93.7225 +650456,167.19,93.6124 +650457,170.08,94.0464 +650458,168.67,93.8629 +650459,167.26,93.6937 +650460,165.84,93.5391 +650461,168.72,94.1062 +650462,167.32,93.8785 +650463,165.91,93.6649 +650464,164.5,93.4659 +650465,167.36,94.1659 +650466,165.97,93.8939 +650467,164.57,93.6361 +650468,163.16,93.3929 +650469,166,94.2254 +650470,164.61,93.9092 +650471,163.22,93.6073 +650472,161.83,93.32 +650473,164.63,94.2846 +650474,163.25,93.9244 +650475,161.87,93.5785 +650476,160.49,93.2474 +650477,163.26,94.3435 +650478,161.9,93.9394 +650479,160.53,93.5498 +650480,159.15,93.1751 +650481,161.9,94.402 +650482,160.54,93.9543 +650483,159.18,93.5211 +650484,157.82,93.1031 +650485,160.53,94.4602 +650486,159.18,93.969 +650487,157.84,93.4925 +650488,156.48,93.0313 +650489,159.16,94.5181 +650490,157.83,93.9835 +650491,156.49,93.4639 +650492,155.15,92.96 +650493,157.79,94.5755 +650494,156.47,93.9978 +650495,155.15,93.4355 +650496,153.82,92.8891 +650497,156.42,94.6324 +650498,155.11,94.0119 +650499,153.8,93.4071 +650500,152.49,92.8185 +650501,155.04,94.6889 +650502,153.75,94.0258 +650503,152.46,93.3789 +650504,151.16,92.7485 +650505,153.67,94.7448 +650506,152.39,94.0395 +650507,151.12,93.3507 +650508,149.83,92.6789 +650509,152.29,94.8002 +650510,151.04,94.053 +650511,149.77,93.3227 +650512,148.51,92.6098 +650513,150.92,94.855 +650514,149.68,94.0662 +650515,148.43,93.2948 +650516,147.18,92.5413 +650517,149.54,94.9091 +650518,148.32,94.0791 +650519,147.09,93.2671 +650520,145.85,92.4734 +650521,148.16,94.9626 +650522,146.96,94.0918 +650523,145.75,93.2395 +650524,144.53,92.4061 +650525,146.78,95.0155 +650526,145.6,94.1042 +650527,144.4,93.2121 +650528,143.21,92.3394 +650529,145.4,95.0676 +650530,144.24,94.1164 +650531,143.06,93.1849 +650532,141.89,92.2734 +650533,144.02,95.119 +650534,142.87,94.1282 +650535,141.72,93.1579 +650536,140.56,92.2081 +650537,142.64,95.1696 +650538,141.51,94.1397 +650539,140.38,93.131 +650540,139.24,92.1435 +650541,141.26,95.2194 +650542,140.15,94.1509 +650543,139.04,93.1044 +650544,137.93,92.0797 +650545,139.87,95.2683 +650546,138.79,94.1618 +650547,137.7,93.0779 +650548,136.61,92.0166 +650549,138.49,95.3164 +650550,137.43,94.1724 +650551,136.36,93.0517 +650552,135.29,91.9544 +650553,137.1,95.3636 +650554,136.07,94.1826 +650555,135.02,93.0258 +650556,133.97,91.893 +650557,135.72,95.4099 +650558,134.7,94.1924 +650559,133.68,93.0001 +650560,132.66,91.8324 +650561,134.33,95.4552 +650562,133.34,94.2019 +650563,132.34,92.9746 +650564,131.34,91.7727 +650565,132.94,95.4996 +650566,131.98,94.211 +650567,131.01,92.9494 +650568,130.03,91.714 +650569,131.55,95.5429 +650570,130.61,94.2198 +650571,129.67,92.9245 +650572,128.72,91.6561 +650573,130.16,95.5852 +650574,129.25,94.2281 +650575,128.33,92.8998 +650576,127.41,91.5993 +650577,128.77,95.6265 +650578,127.89,94.2361 +650579,126.99,92.8754 +650580,126.09,91.5434 +650581,127.38,95.6666 +650582,126.52,94.2437 +650583,125.66,92.8513 +650584,124.78,91.4885 +650585,125.99,95.7056 +650586,125.16,94.2508 +650587,124.32,92.8276 +650588,123.47,91.4346 +650589,124.59,95.7435 +650590,123.79,94.2575 +650591,122.98,92.8041 +650592,122.17,91.3818 +650593,123.2,95.7803 +650594,122.43,94.2638 +650595,121.65,92.781 +650596,120.86,91.33 +650597,121.8,95.8158 +650598,121.06,94.2697 +650599,120.31,92.7581 +650600,119.55,91.2793 +650601,120.41,95.8502 +650602,119.7,94.2751 +650603,118.97,92.7356 +650604,118.24,91.2298 +650605,119.01,95.8833 +650606,118.33,94.28 +650607,117.64,92.7135 +650608,116.94,91.1813 +650609,117.62,95.9151 +650610,116.97,94.2845 +650611,116.3,92.6917 +650612,115.63,91.134 +650613,116.22,95.9457 +650614,115.6,94.2886 +650615,114.97,92.6702 +650616,114.33,91.0879 +650617,114.82,95.975 +650618,114.23,94.2921 +650619,113.63,92.6491 +650620,113.02,91.0429 +650621,113.43,96.0029 +650622,112.87,94.2952 +650623,112.3,92.6283 +650624,111.72,90.99918 +650625,112.03,96.0295 +650626,111.5,94.2978 +650627,110.96,92.608 +650628,110.41,90.95664 +650629,110.63,96.0548 +650630,110.13,94.3 +650631,109.63,92.588 +650632,109.11,90.91533 +650633,109.23,96.0787 +650634,108.77,94.3016 +650635,108.29,92.5684 +650636,107.81,90.87526 +650637,107.83,96.1011 +650638,107.4,94.3027 +650639,106.96,92.5491 +650640,106.51,90.83645 +650641,106.43,96.1222 +650642,106.03,94.3033 +650643,105.63,92.5303 +650644,105.2,90.79891 +650645,105.03,96.1418 +650646,104.67,94.3034 +650647,104.29,92.5118 +650648,103.9,90.76266 +650649,103.63,96.16 +650650,103.3,94.303 +650651,102.96,92.4938 +650652,102.6,90.7277 +650653,102.23,96.1767 +650654,101.93,94.3021 +650655,101.62,92.4761 +650656,101.3,90.69405 +650657,100.83,96.192 +650658,100.57,94.3007 +650659,100.29,92.4589 +650660,100,90.66172 +650661,99.424,96.2058 +650662,99.2,94.2987 +650663,98.958,92.4421 +650664,98.701,90.63073 +650665,98.023,96.218 +650666,97.832,94.2962 +650667,97.625,92.4256 +650668,97.401,90.60107 +650669,96.621,96.2288 +650670,96.465,94.2931 +650671,96.291,92.4096 +650672,96.102,90.57276 +650673,95.219,96.238 +650674,95.098,94.2896 +650675,94.958,92.3941 +650676,94.803,90.5458 +650677,93.816,96.2457 +650678,93.73,94.2854 +650679,93.625,92.3789 +650680,93.504,90.52022 +650681,92.414,96.2518 +650682,92.363,94.2808 +650683,92.292,92.3642 +650684,92.205,90.496 +650685,91.012,96.2564 +650686,90.996,94.2756 +650687,90.959,92.3499 +650688,90.906,90.47316 +650689,89.609,96.2595 +650690,89.628,94.2698 +650691,89.627,92.336 +650692,89.607,90.4517 +650693,88.207,96.2609 +650694,88.261,94.2635 +650695,88.294,92.3226 +650696,88.308,90.43163 +650697,86.804,96.2608 +650698,86.893,94.2567 +650699,86.961,92.3096 +650700,87.01,90.41295 +650701,85.402,96.2591 +650702,85.526,94.2492 +650703,85.628,92.297 +650704,85.711,90.39567 +650705,84,96.2559 +650706,84.159,94.2413 +650707,84.295,92.2849 +650708,84.413,90.37978 +650709,82.597,96.251 +650710,82.792,94.2328 +650711,82.963,92.2732 +650712,83.114,90.3653 +650713,81.195,96.2445 +650714,81.424,94.2237 +650715,81.63,92.262 +650716,81.815,90.35221 +650717,79.793,96.2365 +650718,80.057,94.214 +650719,80.297,92.2511 +650720,80.517,90.34053 +650721,78.392,96.2269 +650722,78.69,94.2039 +650723,78.964,92.2408 +650724,79.218,90.33025 +650725,76.99,96.2156 +650726,77.323,94.1931 +650727,77.631,92.2308 +650728,77.919,90.32137 +650729,75.589,96.2028 +650730,75.956,94.1818 +650731,76.299,92.2213 +650732,76.619,90.31388 +650733,74.188,96.1884 +650734,74.59,94.1699 +650735,74.966,92.2123 +650736,75.32,90.3078 +650737,72.788,96.1724 +650738,73.223,94.1575 +650739,73.633,92.2036 +650740,74.02,90.30311 +650741,71.387,96.1548 +650742,71.857,94.1446 +650743,72.3,92.1955 +650744,72.72,90.29981 +650745,69.987,96.1356 +650746,70.49,94.1311 +650747,70.966,92.1877 +650748,71.42,90.29789 +650749,68.588,96.1148 +650750,69.124,94.117 +650751,69.633,92.1804 +650752,70.12,90.29736 +650753,67.189,96.0925 +650754,67.758,94.1024 +650755,68.3,92.1735 +650756,68.819,90.2982 +650757,65.79,96.0686 +650758,66.392,94.0872 +650759,66.966,92.167 +650760,67.518,90.30041 +650761,64.392,96.0432 +650762,65.026,94.0715 +650763,65.633,92.161 +650764,66.216,90.30398 +650765,62.994,96.0162 +650766,63.661,94.0553 +650767,64.299,92.1554 +650768,64.914,90.3089 +650769,61.597,95.9876 +650770,62.295,94.0385 +650771,62.965,92.1502 +650772,63.612,90.31517 +650773,60.201,95.9575 +650774,60.93,94.0212 +650775,61.631,92.1454 +650776,62.309,90.32278 +650777,58.805,95.9259 +650778,59.565,94.0033 +650779,60.297,92.1411 +650780,61.005,90.33171 +650781,57.409,95.8928 +650782,58.201,93.985 +650783,58.963,92.1371 +650784,59.701,90.34196 +650785,56.015,95.8582 +650786,56.836,93.9661 +650787,57.629,92.1336 +650788,58.397,90.35352 +650789,54.621,95.8222 +650790,55.472,93.9466 +650791,56.294,92.1304 +650792,57.092,90.36637 +650793,53.227,95.7846 +650794,54.108,93.9267 +650795,54.959,92.1277 +650796,55.786,90.3805 +650797,51.835,95.7456 +650798,52.744,93.9063 +650799,53.624,92.1254 +650800,54.48,90.3959 +650801,50.443,95.7051 +650802,51.38,93.8853 +650803,52.289,92.1234 +650804,53.173,90.41255 +650805,49.052,95.6633 +650806,50.017,93.8639 +650807,50.954,92.1219 +650808,51.866,90.43045 +650809,47.661,95.62 +650810,48.654,93.842 +650811,49.618,92.1207 +650812,50.557,90.44956 +650813,46.272,95.5754 +650814,47.291,93.8195 +650815,48.282,92.1199 +650816,49.248,90.46989 +650817,44.883,95.5293 +650818,45.929,93.7966 +650819,46.946,92.1194 +650820,47.939,90.49142 +650821,43.495,95.482 +650822,44.567,93.7733 +650823,45.61,92.1194 +650824,46.628,90.51412 +650825,42.108,95.4332 +650826,43.205,93.7494 +650827,44.273,92.1196 +650828,45.317,90.53798 +650829,40.722,95.3832 +650830,41.843,93.7251 +650831,42.936,92.1203 +650832,44.005,90.56298 +650833,39.337,95.3319 +650834,40.482,93.7003 +650835,41.599,92.1213 +650836,42.692,90.58911 +650837,37.953,95.2794 +650838,39.121,93.6751 +650839,40.262,92.1226 +650840,41.379,90.61635 +650841,36.569,95.2256 +650842,37.761,93.6494 +650843,38.925,92.1243 +650844,40.064,90.64466 +650845,35.187,95.1705 +650846,36.401,93.6234 +650847,37.587,92.1262 +650848,38.749,90.67405 +650849,33.806,95.1143 +650850,35.041,93.5968 +650851,36.249,92.1285 +650852,37.433,90.70448 +650853,32.425,95.0569 +650854,33.681,93.5699 +650855,34.91,92.1312 +650856,36.116,90.73593 +650857,31.046,94.9984 +650858,32.322,93.5425 +650859,33.571,92.1341 +650860,34.798,90.76839 +650861,29.668,94.9387 +650862,30.963,93.5148 +650863,32.232,92.1373 +650864,33.479,90.80182 +650865,28.29,94.878 +650866,29.605,93.4866 +650867,30.893,92.1408 +650868,32.159,90.83622 +650869,26.914,94.8161 +650870,28.247,93.4581 +650871,29.553,92.1446 +650872,30.838,90.87154 +650873,25.539,94.7533 +650874,26.889,93.4292 +650875,28.214,92.1486 +650876,29.516,90.90778 +650877,24.165,94.6894 +650878,25.532,93.3999 +650879,26.873,92.153 +650880,28.193,90.94491 +650881,22.792,94.6246 +650882,24.175,93.3703 +650883,25.533,92.1575 +650884,26.869,90.9829 +650885,21.421,94.5588 +650886,22.818,93.3403 +650887,24.192,92.1624 +650888,25.544,91.0217 +650889,20.05,94.492 +650890,21.462,93.3099 +650891,22.85,92.1674 +650892,24.217,91.0614 +650893,18.681,94.4244 +650894,20.106,93.2793 +650895,21.509,92.1727 +650896,22.89,91.1018 +650897,17.313,94.3559 +650898,18.751,93.2483 +650899,20.167,92.1783 +650900,21.562,91.143 +650901,15.945,94.2866 +650902,17.396,93.217 +650903,18.825,92.184 +650904,20.233,91.1849 +650905,14.58,94.2164 +650906,16.042,93.1854 +650907,17.482,92.1899 +650908,18.902,91.2275 +650909,13.215,94.1455 +650910,14.688,93.1535 +650911,16.139,92.196 +650912,17.571,91.2708 +650913,11.851,94.0739 +650914,13.334,93.1213 +650915,14.796,92.2024 +650916,16.238,91.3148 +650917,10.489,94.0015 +650918,11.981,93.0888 +650919,13.452,92.2088 +650920,14.904,91.3594 +650921,9.1279,93.9285 +650922,10.628,93.0561 +650923,12.108,92.2155 +650924,13.569,91.4046 +650925,7.768,93.8548 +650926,9.2753,93.0232 +650927,10.763,92.2223 +650928,12.233,91.4503 +650929,6.4094,93.7805 +650930,7.9234,92.99 +650931,9.4186,92.2293 +650932,10.896,91.4966 +650933,5.052,93.7056 +650934,6.5718,92.9565 +650935,8.0734,92.2363 +650936,9.5573,91.5434 +650937,3.6958,93.6302 +650938,5.2207,92.9229 +650939,6.7279,92.2435 +650940,8.2176,91.5907 +650941,2.3409,93.5543 +650942,3.87,92.889 +650943,5.3819,92.2509 +650944,6.8768,91.6384 +650945,0.98718,93.4779 +650946,2.5198,92.8549 +650947,4.0356,92.2583 +650948,5.5347,91.6865 +650949,359.63,93.401 +650950,1.17,92.8207 +650951,2.6889,92.2658 +650952,4.1915,91.7351 +650953,358.28,93.3237 +650954,359.82,92.7863 +650955,1.3419,92.2734 +650956,2.8471,91.7839 +650957,356.93,93.2461 +650958,358.47,92.7517 +650959,359.99,92.2811 +650960,1.5015,91.8332 +650961,355.58,93.1681 +650962,357.12,92.7169 +650963,358.65,92.2888 +650964,0.15466,91.8827 +650965,354.24,93.0898 +650966,355.78,92.682 +650967,357.3,92.2966 +650968,358.81,91.9325 +650969,352.89,93.0112 +650970,354.43,92.647 +650971,355.95,92.3045 +650972,357.46,91.9825 +650973,351.55,92.9323 +650974,353.08,92.6119 +650975,354.6,92.3123 +650976,356.11,92.0327 +650977,350.2,92.8533 +650978,351.73,92.5766 +650979,353.25,92.3202 +650980,354.76,92.0831 +650981,348.86,92.7741 +650982,350.39,92.5413 +650983,351.9,92.3281 +650984,353.4,92.1336 +650985,347.52,92.6947 +650986,349.04,92.5059 +650987,350.55,92.336 +650988,352.05,92.1843 +650989,346.18,92.6153 +650990,347.7,92.4703 +650991,349.2,92.3439 +650992,350.69,92.235 +650993,344.84,92.5358 +650994,346.35,92.4348 +650995,347.85,92.3517 +650996,349.34,92.2858 +650997,343.5,92.4562 +650998,345.01,92.3991 +650999,346.5,92.3596 +651000,347.98,92.3366 +651001,342.17,92.3766 +651002,343.66,92.3635 +651003,345.15,92.3673 +651004,346.62,92.3873 +651005,340.83,92.2971 +651006,342.32,92.3278 +651007,343.8,92.375 +651008,345.26,92.438 +651009,339.5,92.2176 +651010,340.98,92.2921 +651011,342.44,92.3827 +651012,343.9,92.4887 +651013,338.17,92.1382 +651014,339.63,92.2563 +651015,341.09,92.3903 +651016,342.54,92.5392 +651017,336.83,92.059 +651018,338.29,92.2206 +651019,339.74,92.3978 +651020,341.17,92.5895 +651021,335.5,91.9799 +651022,336.95,92.1849 +651023,338.38,92.4051 +651024,339.81,92.6397 +651025,334.17,91.901 +651026,335.61,92.1492 +651027,337.03,92.4124 +651028,338.44,92.6897 +651029,332.85,91.8224 +651030,334.27,92.1136 +651031,335.68,92.4196 +651032,337.07,92.7394 +651033,331.52,91.744 +651034,332.93,92.078 +651035,334.32,92.4266 +651036,335.71,92.7889 +651037,330.19,91.6659 +651038,331.59,92.0424 +651039,332.97,92.4335 +651040,334.34,92.838 +651041,328.87,91.5881 +651042,330.25,92.007 +651043,331.61,92.4402 +651044,332.97,92.8868 +651045,327.55,91.5107 +651046,328.91,91.9716 +651047,330.26,92.4467 +651048,331.59,92.9352 +651049,326.23,91.4337 +651050,327.57,91.9363 +651051,328.9,92.4531 +651052,330.22,92.9833 +651053,324.9,91.3571 +651054,326.23,91.9011 +651055,327.54,92.4593 +651056,328.85,93.0309 +651057,323.58,91.281 +651058,324.89,91.866 +651059,326.19,92.4653 +651060,327.47,93.078 +651061,322.27,91.2054 +651062,323.55,91.8311 +651063,324.83,92.4711 +651064,326.1,93.1246 +651065,320.95,91.1303 +651066,322.21,91.7962 +651067,323.47,92.4767 +651068,324.72,93.1707 +651069,319.63,91.0557 +651070,320.88,91.7616 +651071,322.11,92.4821 +651072,323.34,93.2163 +651073,318.32,90.98168 +651074,319.54,91.727 +651075,320.76,92.4872 +651076,321.96,93.2612 +651077,317,90.90829 +651078,318.2,91.6927 +651079,319.4,92.4921 +651080,320.58,93.3055 +651081,315.69,90.83553 +651082,316.87,91.6585 +651083,318.04,92.4967 +651084,319.2,93.3492 +651085,314.37,90.76344 +651086,315.53,91.6245 +651087,316.68,92.501 +651088,317.82,93.3922 +651089,313.06,90.69204 +651090,314.2,91.5907 +651091,315.32,92.5051 +651092,316.44,93.4345 +651093,311.75,90.62136 +651094,312.86,91.557 +651095,313.96,92.5089 +651096,315.05,93.4761 +651097,310.44,90.55142 +651098,311.53,91.5236 +651099,312.6,92.5124 +651100,313.67,93.5169 +651101,309.13,90.48227 +651102,310.19,91.4905 +651103,311.24,92.5156 +651104,312.28,93.5569 +651105,307.82,90.41391 +651106,308.86,91.4575 +651107,309.88,92.5185 +651108,310.9,93.5961 +651109,306.52,90.34638 +651110,307.53,91.4248 +651111,308.52,92.521 +651112,309.51,93.6344 +651113,305.21,90.2797 +651114,306.19,91.3924 +651115,307.16,92.5233 +651116,308.12,93.6718 +651117,303.91,90.2139 +651118,304.86,91.3602 +651119,305.8,92.5252 +651120,306.73,93.7084 +651121,302.6,90.14901 +651122,303.53,91.3282 +651123,304.44,92.5267 +651124,305.34,93.744 +651125,301.3,90.085039 +651126,302.19,91.2966 +651127,303.08,92.5279 +651128,303.95,93.7786 +651129,299.99,90.022019 +651130,300.86,91.2652 +651131,301.72,92.5287 +651132,302.56,93.8123 +651133,298.69,89.959972 +651134,299.53,91.2341 +651135,300.36,92.5292 +651136,301.17,93.845 +651137,297.39,89.89892 +651138,298.2,91.2033 +651139,298.99,92.5292 +651140,299.77,93.8766 +651141,296.09,89.83889 +651142,296.87,91.1728 +651143,297.63,92.5289 +651144,298.38,93.9072 +651145,294.79,89.77989 +651146,295.54,91.1427 +651147,296.27,92.5282 +651148,296.99,93.9366 +651149,293.49,89.72195 +651150,294.21,91.1128 +651151,294.91,92.5271 +651152,295.59,93.965 +651153,292.19,89.66509 +651154,292.87,91.0833 +651155,293.54,92.5256 +651156,294.19,93.9922 +651157,290.89,89.60934 +651158,291.54,91.0541 +651159,292.18,92.5236 +651160,292.8,94.0183 +651161,289.59,89.55469 +651162,290.21,91.0253 +651163,290.82,92.5213 +651164,291.4,94.0433 +651165,288.3,89.50119 +651166,288.88,90.99679 +651167,289.45,92.5185 +651168,290.01,94.067 +651169,287,89.44884 +651170,287.55,90.96865 +651171,288.09,92.5152 +651172,288.61,94.0895 +651173,285.7,89.39766 +651174,286.23,90.94087 +651175,286.73,92.5115 +651176,287.21,94.1108 +651177,284.41,89.34766 +651178,284.9,90.91345 +651179,285.36,92.5074 +651180,285.81,94.1308 +651181,283.11,89.29887 +651182,283.57,90.88641 +651183,284,92.5028 +651184,284.41,94.1495 +651185,281.82,89.2513 +651186,282.24,90.85975 +651187,282.64,92.4978 +651188,283.01,94.167 +651189,280.52,89.20496 +651190,280.91,90.83347 +651191,281.27,92.4923 +651192,281.61,94.1831 +651193,279.23,89.15987 +651194,279.58,90.80757 +651195,279.91,92.4863 +651196,280.21,94.1979 +651197,277.94,89.11604 +651198,278.25,90.78207 +651199,278.54,92.4798 +651200,278.81,94.2114 +651201,276.64,89.07348 +651202,276.92,90.75697 +651203,277.18,92.4729 +651204,277.41,94.2235 +651205,275.35,89.0322 +651206,275.59,90.73226 +651207,275.82,92.4654 +651208,276.01,94.2342 +651209,274.06,88.9922 +651210,274.27,90.70797 +651211,274.45,92.4575 +651212,274.61,94.2436 +651213,272.77,88.9535 +651214,272.94,90.68408 +651215,273.09,92.4491 +651216,273.21,94.2515 +651217,271.47,88.9162 +651218,271.61,90.6606 +651219,271.72,92.4402 +651220,271.81,94.258 +651221,270.18,88.8802 +651222,270.28,90.63754 +651223,270.36,92.4308 +651224,270.41,94.2631 +651225,268.89,88.8455 +651226,268.95,90.6149 +651227,268.99,92.4209 +651228,269.01,94.2668 +651229,267.6,88.8121 +651230,267.63,90.59269 +651231,267.63,92.4105 +651232,267.6,94.269 +651233,266.3,88.7801 +651234,266.3,90.5709 +651235,266.27,92.3995 +651236,266.2,94.2697 +651237,265.01,88.7494 +651238,264.97,90.54953 +651239,264.9,92.3881 +651240,264.8,94.269 +651241,263.72,88.7201 +651242,263.64,90.5286 +651243,263.54,92.3761 +651244,263.4,94.2668 +651245,262.43,88.6922 +651246,262.32,90.5081 +651247,262.17,92.3636 +651248,262,94.2631 +651249,261.14,88.6657 +651250,260.99,90.48803 +651251,260.81,92.3506 +651252,260.6,94.2579 +651253,259.85,88.6405 +651254,259.66,90.4684 +651255,259.45,92.3371 +651256,259.2,94.2513 +651257,258.56,88.6167 +651258,258.33,90.4492 +651259,258.08,92.3231 +651260,257.79,94.2431 +651261,257.26,88.5942 +651262,257.01,90.43044 +651263,256.72,92.3085 +651264,256.39,94.2334 +651265,255.97,88.5732 +651266,255.68,90.41212 +651267,255.35,92.2934 +651268,254.99,94.2222 +651269,254.68,88.5535 +651270,254.35,90.39424 +651271,253.99,92.2778 +651272,253.59,94.2095 +651273,253.39,88.5352 +651274,253.02,90.3768 +651275,252.63,92.2617 +651276,252.19,94.1953 +651277,252.09,88.5183 +651278,251.7,90.35979 +651279,251.26,92.245 +651280,250.79,94.1795 +651281,250.8,88.5028 +651282,250.37,90.34323 +651283,249.9,92.2278 +651284,249.39,94.1622 +651285,249.51,88.4886 +651286,249.04,90.3271 +651287,248.54,92.2101 +651288,247.99,94.1435 +651289,248.22,88.4759 +651290,247.71,90.31142 +651291,247.17,92.1919 +651292,246.6,94.1232 +651293,246.92,88.4645 +651294,246.38,90.29617 +651295,245.81,92.1731 +651296,245.2,94.1013 +651297,245.63,88.4544 +651298,245.06,90.28135 +651299,244.45,92.1539 +651300,243.8,94.078 +651301,244.33,88.4458 +651302,243.73,90.26697 +651303,243.09,92.1341 +651304,242.4,94.0532 +651305,243.04,88.4384 +651306,242.4,90.25302 +651307,241.72,92.1138 +651308,241.01,94.0268 +651309,241.74,88.4325 +651310,241.07,90.23951 +651311,240.36,92.0929 +651312,239.61,93.999 +651313,240.45,88.4278 +651314,239.74,90.22642 +651315,239,92.0716 +651316,238.22,93.9696 +651317,239.15,88.4246 +651318,238.41,90.21376 +651319,237.64,92.0497 +651320,236.82,93.9388 +651321,237.86,88.4226 +651322,237.08,90.20153 +651323,236.28,92.0274 +651324,235.43,93.9065 +651325,236.56,88.422 +651326,235.76,90.18971 +651327,234.92,92.0045 +651328,234.03,93.8727 +651329,235.26,88.4226 +651330,234.43,90.17831 +651331,233.55,91.9811 +651332,232.64,93.8375 +651333,233.96,88.4246 +651334,233.1,90.16733 +651335,232.19,91.9572 +651336,231.25,93.8008 +651337,232.66,88.4278 +651338,231.77,90.15676 +651339,230.83,91.9329 +651340,229.86,93.7626 +651341,231.36,88.4324 +651342,230.44,90.1466 +651343,229.47,91.908 +651344,228.47,93.7231 +651345,230.06,88.4382 +651346,229.11,90.13684 +651347,228.11,91.8827 +651348,227.08,93.6821 +651349,228.76,88.4452 +651350,227.78,90.12749 +651351,226.75,91.8568 +651352,225.69,93.6397 +651353,227.46,88.4535 +651354,226.45,90.11852 +651355,225.39,91.8305 +651356,224.3,93.5959 +651357,226.16,88.4631 +651358,225.12,90.10995 +651359,224.04,91.8037 +651360,222.91,93.5508 +651361,224.86,88.4738 +651362,223.79,90.10177 +651363,222.68,91.7765 +651364,221.52,93.5042 +651365,223.55,88.4857 +651366,222.45,90.093964 +651367,221.32,91.7488 +651368,220.14,93.4564 +651369,222.25,88.4988 +651370,221.12,90.086536 +651371,219.96,91.7206 +651372,218.75,93.4072 +651373,220.94,88.5131 +651374,219.79,90.079478 +651375,218.6,91.692 +651376,217.37,93.3567 +651377,219.64,88.5285 +651378,218.46,90.072786 +651379,217.25,91.6629 +651380,215.99,93.3049 +651381,218.33,88.5451 +651382,217.13,90.066453 +651383,215.89,91.6334 +651384,214.61,93.2519 +651385,217.02,88.5627 +651386,215.8,90.060473 +651387,214.53,91.6035 +651388,213.23,93.1975 +651389,215.71,88.5815 +651390,214.46,90.05484 +651391,213.18,91.5731 +651392,211.85,93.142 +651393,214.4,88.6013 +651394,213.13,90.049547 +651395,211.82,91.5423 +651396,210.47,93.0852 +651397,213.09,88.6222 +651398,211.8,90.044589 +651399,210.46,91.5111 +651400,209.09,93.0273 +651401,211.78,88.6442 +651402,210.46,90.039958 +651403,209.11,91.4795 +651404,207.71,92.9682 +651405,210.47,88.6671 +651406,209.13,90.035647 +651407,207.76,91.4475 +651408,206.34,92.9079 +651409,209.15,88.691 +651410,207.8,90.03165 +651411,206.4,91.4151 +651412,204.96,92.8465 +651413,207.84,88.7159 +651414,206.46,90.027959 +651415,205.05,91.3823 +651416,203.59,92.784 +651417,206.52,88.7418 +651418,205.13,90.024566 +651419,203.69,91.3492 +651420,202.22,92.7205 +651421,205.21,88.7686 +651422,203.79,90.021464 +651423,202.34,91.3156 +651424,200.85,92.6559 +651425,203.89,88.7963 +651426,202.46,90.018645 +651427,200.99,91.2818 +651428,199.48,92.5902 +651429,202.57,88.8248 +651430,201.12,90.016102 +651431,199.64,91.2475 +651432,198.11,92.5236 +651433,201.25,88.8543 +651434,199.78,90.013826 +651435,198.28,91.213 +651436,196.74,92.456 +651437,199.93,88.8845 +651438,198.45,90.011809 +651439,196.93,91.1781 +651440,195.38,92.3875 +651441,198.61,88.9156 +651442,197.11,90.010042 +651443,195.58,91.1428 +651444,194.01,92.318 +651445,197.28,88.9474 +651446,195.77,90.0085179 +651447,194.23,91.1073 +651448,192.65,92.2477 +651449,195.96,88.98 +651450,194.44,90.007227 +651451,192.88,91.0714 +651452,191.29,92.1765 +651453,194.63,89.01339 +651454,193.1,90.0061608 +651455,191.53,91.0353 +651456,189.93,92.1045 +651457,193.3,89.04744 +651458,191.76,90.0053103 +651459,190.18,90.99886 +651460,188.57,92.0316 +651461,191.98,89.08216 +651462,190.42,90.0046667 +651463,188.83,90.96215 +651464,187.21,91.958 +651465,190.65,89.11755 +651466,189.08,90.0042207 +651467,187.48,90.92518 +651468,185.85,91.8837 +651469,189.32,89.15355 +651470,187.74,90.0039631 +651471,186.14,90.88794 +651472,184.5,91.8087 +651473,187.99,89.19016 +651474,186.4,90.0038845 +651475,184.79,90.85046 +651476,183.14,91.7329 +651477,186.65,89.22734 +651478,185.06,90.0039756 +651479,183.44,90.81274 +651480,181.79,91.6566 +651481,185.32,89.26506 +651482,183.72,90.0042267 +651483,182.1,90.77479 +651484,180.44,91.5796 +651485,183.98,89.30329 +651486,182.38,90.0046281 +651487,180.75,90.73663 +651488,179.09,91.502 +651489,182.65,89.34201 +651490,181.04,90.0051702 +651491,179.4,90.69826 +651492,177.74,91.4239 +651493,181.31,89.38119 +651494,179.7,90.0058431 +651495,178.06,90.65969 +651496,176.39,91.3452 +651497,179.97,89.42079 +651498,178.36,90.006637 +651499,176.72,90.62094 +651500,175.04,91.2661 +651501,178.63,89.4608 +651502,177.01,90.0075418 +651503,175.37,90.58201 +651504,173.7,91.1865 +651505,177.29,89.50117 +651506,175.67,90.0085474 +651507,174.03,90.54291 +651508,172.36,91.1065 +651509,175.94,89.54188 +651510,174.33,90.0096439 +651511,172.68,90.50366 +651512,171.01,91.026 +651513,174.6,89.5829 +651514,172.98,90.010821 +651515,171.34,90.46427 +651516,169.67,90.94527 +651517,173.25,89.6242 +651518,171.64,90.012068 +651519,170,90.42475 +651520,168.33,90.86418 +651521,171.91,89.66576 +651522,170.3,90.013376 +651523,168.66,90.3851 +651524,166.99,90.78279 +651525,170.56,89.70753 +651526,168.95,90.014734 +651527,167.32,90.34534 +651528,165.66,90.70115 +651529,169.21,89.74949 +651530,167.61,90.01613 +651531,165.98,90.30548 +651532,164.32,90.61929 +651533,167.86,89.79161 +651534,166.26,90.017556 +651535,164.64,90.26554 +651536,162.99,90.53723 +651537,166.51,89.83385 +651538,164.91,90.019001 +651539,163.3,90.22551 +651540,161.65,90.45501 +651541,165.16,89.8762 +651542,163.57,90.020454 +651543,161.96,90.18542 +651544,160.32,90.37267 +651545,163.8,89.918608 +651546,162.22,90.021905 +651547,160.62,90.14527 +651548,158.99,90.29024 +651549,162.45,89.961055 +651550,160.87,90.023343 +651551,159.28,90.10507 +651552,157.66,90.20775 +651553,161.09,90.0035075 +651554,159.53,90.024758 +651555,157.94,90.064846 +651556,156.33,90.12524 +651557,159.73,90.045934 +651558,158.18,90.026139 +651559,156.6,90.024594 +651560,155.01,90.042738 +651561,158.37,90.088304 +651562,156.83,90.027477 +651563,155.27,89.984329 +651564,153.68,89.960278 +651565,157.01,90.13059 +651566,155.48,90.02876 +651567,153.93,89.944063 +651568,152.36,89.87789 +651569,155.65,90.17275 +651570,154.13,90.029978 +651571,152.59,89.903807 +651572,151.04,89.79562 +651573,154.29,90.21477 +651574,152.78,90.03112 +651575,151.26,89.86357 +651576,149.71,89.71348 +651577,152.92,90.2566 +651578,151.43,90.032177 +651579,149.92,89.82336 +651580,148.39,89.63152 +651581,151.56,90.29823 +651582,150.08,90.033138 +651583,148.59,89.7832 +651584,147.08,89.54977 +651585,150.19,90.33962 +651586,148.73,90.033992 +651587,147.25,89.74309 +651588,145.76,89.46825 +651589,148.82,90.38073 +651590,147.38,90.03473 +651591,145.92,89.70304 +651592,144.44,89.38701 +651593,147.46,90.42154 +651594,146.03,90.03534 +651595,144.59,89.66307 +651596,143.13,89.30607 +651597,146.09,90.46202 +651598,144.68,90.035814 +651599,143.25,89.62318 +651600,141.81,89.22546 +651601,144.71,90.50214 +651602,143.33,90.03614 +651603,141.92,89.58339 +651604,140.5,89.14522 +651605,143.34,90.54187 +651606,141.97,90.036309 +651607,140.59,89.5437 +651608,139.19,89.06538 +651609,141.97,90.58118 +651610,140.62,90.036311 +651611,139.26,89.50413 +651612,137.88,88.986 +651613,140.59,90.62003 +651614,139.27,90.036135 +651615,137.92,89.46468 +651616,136.57,88.907 +651617,139.22,90.65841 +651618,137.91,90.035772 +651619,136.59,89.42537 +651620,135.26,88.8285 +651621,137.84,90.69627 +651622,136.56,90.035213 +651623,135.26,89.38621 +651624,133.95,88.7506 +651625,136.46,90.7336 +651626,135.21,90.034446 +651627,133.93,89.3472 +651628,132.64,88.6732 +651629,135.09,90.77035 +651630,133.85,90.033464 +651631,132.6,89.30836 +651632,131.34,88.5964 +651633,133.71,90.80652 +651634,132.5,90.032256 +651635,131.27,89.26969 +651636,130.03,88.5202 +651637,132.33,90.84205 +651638,131.14,90.030813 +651639,129.94,89.23121 +651640,128.73,88.4446 +651641,130.94,90.87694 +651642,129.79,90.029126 +651643,128.62,89.19293 +651644,127.43,88.3697 +651645,129.56,90.91114 +651646,128.43,90.027185 +651647,127.29,89.15485 +651648,126.13,88.2955 +651649,128.18,90.94464 +651650,127.08,90.024982 +651651,125.96,89.11698 +651652,124.83,88.222 +651653,126.79,90.97741 +651654,125.72,90.022507 +651655,124.63,89.07933 +651656,123.53,88.1492 +651657,125.41,91.0094 +651658,124.36,90.019752 +651659,123.3,89.04192 +651660,122.23,88.0772 +651661,124.02,91.0406 +651662,123.01,90.016708 +651663,121.98,89.00475 +651664,120.93,88.006 +651665,122.64,91.071 +651666,121.65,90.013367 +651667,120.65,88.9678 +651668,119.63,87.9357 +651669,121.25,91.1006 +651670,120.29,90.0097197 +651671,119.32,88.9312 +651672,118.34,87.8662 +651673,119.86,91.1293 +651674,118.94,90.0057583 +651675,118,88.8948 +651676,117.04,87.7975 +651677,118.47,91.1571 +651678,117.58,90.0014747 +651679,116.67,88.8586 +651680,115.75,87.7298 +651681,117.08,91.184 +651682,116.22,89.996861 +651683,115.35,88.8228 +651684,114.45,87.6629 +651685,115.69,91.21 +651686,114.86,89.9919092 +651687,114.02,88.7873 +651688,113.16,87.5971 +651689,114.3,91.235 +651690,113.51,89.986612 +651691,112.7,88.752 +651692,111.87,87.5321 +651693,112.9,91.259 +651694,112.15,89.980961 +651695,111.37,88.7171 +651696,110.58,87.4682 +651697,111.51,91.282 +651698,110.79,89.97495 +651699,110.05,88.6824 +651700,109.29,87.4053 +651701,110.12,91.304 +651702,109.43,89.968572 +651703,108.72,88.6481 +651704,108,87.3434 +651705,108.72,91.3249 +651706,108.07,89.961819 +651707,107.4,88.6141 +651708,106.71,87.2825 +651709,107.33,91.3447 +651710,106.71,89.954685 +651711,106.08,88.5805 +651712,105.42,87.2228 +651713,105.93,91.3635 +651714,105.35,89.947163 +651715,104.75,88.5472 +651716,104.13,87.1641 +651717,104.54,91.3812 +651718,103.99,89.939247 +651719,103.43,88.5142 +651720,102.84,87.1065 +651721,103.14,91.3977 +651722,102.64,89.93093 +651723,102.11,88.4816 +651724,101.56,87.05 +651725,101.74,91.413 +651726,101.28,89.922207 +651727,100.78,88.4493 +651728,100.27,86.9947 +651729,100.35,91.4272 +651730,99.916,89.913071 +651731,99.461,88.4174 +651732,98.983,86.9406 +651733,98.949,91.4403 +651734,98.557,89.903518 +651735,98.139,88.3859 +651736,97.697,86.8876 +651737,97.552,91.4521 +651738,97.197,89.89354 +651739,96.817,88.3548 +651740,96.412,86.8358 +651741,96.153,91.4626 +651742,95.837,89.88314 +651743,95.494,88.324 +651744,95.127,86.7852 +651745,94.755,91.472 +651746,94.477,89.8723 +651747,94.172,88.2937 +651748,93.843,86.7358 +651749,93.356,91.4801 +651750,93.117,89.86102 +651751,92.851,88.2637 +651752,92.558,86.6877 +651753,91.957,91.4869 +651754,91.757,89.8493 +651755,91.529,88.2341 +651756,91.274,86.6408 +651757,90.557,91.4924 +651758,90.397,89.83713 +651759,90.207,88.2049 +651760,89.991,86.5951 +651761,89.158,91.4967 +651762,89.037,89.82451 +651763,88.886,88.1761 +651764,88.707,86.5507 +651765,87.758,91.4996 +651766,87.677,89.81144 +651767,87.565,88.1478 +651768,87.424,86.5076 +651769,86.358,91.5012 +651770,86.316,89.7979 +651771,86.243,88.1198 +651772,86.141,86.4658 +651773,84.958,91.5015 +651774,84.956,89.78391 +651775,84.922,88.0922 +651776,84.858,86.4253 +651777,83.558,91.5004 +651778,83.596,89.76945 +651779,83.601,88.0651 +651780,83.575,86.3861 +651781,82.158,91.498 +651782,82.236,89.75452 +651783,82.28,88.0384 +651784,82.293,86.3482 +651785,80.758,91.4942 +651786,80.876,89.73911 +651787,80.959,88.0121 +651788,81.01,86.3116 +651789,79.358,91.489 +651790,79.516,89.72324 +651791,79.638,87.9863 +651792,79.727,86.2763 +651793,77.958,91.4825 +651794,78.156,89.70689 +651795,78.317,87.9608 +651796,78.445,86.2424 +651797,76.559,91.4745 +651798,76.796,89.69006 +651799,76.996,87.9358 +651800,77.162,86.2098 +651801,75.159,91.4652 +651802,75.436,89.67274 +651803,75.675,87.9113 +651804,75.88,86.1785 +651805,73.76,91.4545 +651806,74.076,89.65495 +651807,74.354,87.8871 +651808,74.597,86.1486 +651809,72.36,91.4423 +651810,72.717,89.63667 +651811,73.033,87.8634 +651812,73.314,86.1201 +651813,70.961,91.4288 +651814,71.357,89.61791 +651815,71.712,87.8402 +651816,72.031,86.0928 +651817,69.563,91.4138 +651818,69.998,89.59867 +651819,70.391,87.8173 +651820,70.748,86.067 +651821,68.164,91.3974 +651822,68.638,89.57894 +651823,69.07,87.795 +651824,69.465,86.0425 +651825,66.766,91.3796 +651826,67.279,89.55872 +651827,67.749,87.773 +651828,68.181,86.0193 +651829,65.368,91.3603 +651830,65.92,89.53801 +651831,66.428,87.7515 +651832,66.898,85.9975 +651833,63.971,91.3397 +651834,64.561,89.51682 +651835,65.107,87.7304 +651836,65.614,85.977 +651837,62.574,91.3176 +651838,63.203,89.49514 +651839,63.786,87.7098 +651840,64.329,85.9579 +651841,61.177,91.294 +651842,61.844,89.47298 +651843,62.464,87.6896 +651844,63.044,85.9402 +651845,59.781,91.2691 +651846,60.486,89.45033 +651847,61.143,87.6698 +651848,61.759,85.9238 +651849,58.386,91.2427 +651850,59.127,89.4272 +651851,59.821,87.6505 +651852,60.474,85.9087 +651853,56.991,91.2149 +651854,57.769,89.40359 +651855,58.5,87.6316 +651856,59.188,85.8949 +651857,55.597,91.1857 +651858,56.412,89.37949 +651859,57.178,87.6131 +651860,57.902,85.8825 +651861,54.203,91.1551 +651862,55.054,89.35492 +651863,55.856,87.5951 +651864,56.615,85.8714 +651865,52.81,91.1231 +651866,53.697,89.32987 +651867,54.534,87.5775 +651868,55.327,85.8616 +651869,51.417,91.0897 +651870,52.34,89.30435 +651871,53.211,87.5603 +651872,54.039,85.8532 +651873,50.026,91.0549 +651874,50.983,89.27835 +651875,51.889,87.5436 +651876,52.751,85.846 +651877,48.635,91.0187 +651878,49.627,89.25188 +651879,50.566,87.5272 +651880,51.462,85.8401 +651881,47.244,90.9811 +651882,48.27,89.22495 +651883,49.244,87.5113 +651884,50.172,85.8355 +651885,45.855,90.94215 +651886,46.914,89.19755 +651887,47.921,87.4958 +651888,48.882,85.8322 +651889,44.466,90.90185 +651890,45.559,89.1697 +651891,46.598,87.4807 +651892,47.591,85.8301 +651893,43.078,90.86019 +651894,44.203,89.14138 +651895,45.274,87.466 +651896,46.299,85.8293 +651897,41.692,90.8172 +651898,42.848,89.11262 +651899,43.951,87.4518 +651900,45.007,85.8297 +651901,40.305,90.77287 +651902,41.493,89.08341 +651903,42.627,87.4379 +651904,43.714,85.8314 +651905,38.92,90.72724 +651906,40.139,89.05375 +651907,41.303,87.4244 +651908,42.42,85.8342 +651909,37.536,90.6803 +651910,38.785,89.02365 +651911,39.978,87.4113 +651912,41.125,85.8383 +651913,36.153,90.63207 +651914,37.431,88.9931 +651915,38.654,87.3986 +651916,39.83,85.8436 +651917,34.771,90.58258 +651918,36.078,88.9622 +651919,37.329,87.3863 +651920,38.533,85.85 +651921,33.389,90.53182 +651922,34.725,88.9308 +651923,36.004,87.3744 +651924,37.236,85.8575 +651925,32.009,90.47982 +651926,33.372,88.899 +651927,34.679,87.3628 +651928,35.938,85.8663 +651929,30.63,90.4266 +651930,32.02,88.8668 +651931,33.353,87.3516 +651932,34.639,85.8761 +651933,29.252,90.37217 +651934,30.668,88.8341 +651935,32.027,87.3408 +651936,33.339,85.887 +651937,27.875,90.31655 +651938,29.316,88.8011 +651939,30.701,87.3303 +651940,32.038,85.8991 +651941,26.499,90.25976 +651942,27.965,88.7677 +651943,29.374,87.3202 +651944,30.736,85.9122 +651945,25.125,90.20182 +651946,26.614,88.7339 +651947,28.048,87.3104 +651948,29.433,85.9263 +651949,23.751,90.14275 +651950,25.264,88.6997 +651951,26.72,87.3009 +651952,28.129,85.9415 +651953,22.379,90.082563 +651954,23.914,88.6651 +651955,25.393,87.2918 +651956,26.824,85.9577 +651957,21.008,90.021287 +651958,22.564,88.6302 +651959,24.065,87.283 +651960,25.518,85.9748 +651961,19.638,89.958943 +651962,21.215,88.5949 +651963,22.737,87.2745 +651964,24.211,85.993 +651965,18.269,89.89555 +651966,19.867,88.5592 +651967,21.409,87.2663 +651968,22.903,86.0121 +651969,16.901,89.83114 +651970,18.518,88.5232 +651971,20.08,87.2585 +651972,21.594,86.0321 +651973,15.535,89.76572 +651974,17.17,88.4869 +651975,18.751,87.2509 +651976,20.284,86.0531 +651977,14.17,89.69933 +651978,15.823,88.4502 +651979,17.421,87.2436 +651980,18.972,86.0749 +651981,12.807,89.63199 +651982,14.476,88.4132 +651983,16.091,87.2366 +651984,17.66,86.0975 +651985,11.445,89.56372 +651986,13.13,88.3759 +651987,14.761,87.2299 +651988,16.346,86.1211 +651989,10.084,89.49455 +651990,11.784,88.3383 +651991,13.43,87.2234 +651992,15.031,86.1454 +651993,8.724,89.4245 +651994,10.438,88.3004 +651995,12.099,87.2172 +651996,13.715,86.1705 +651997,7.3657,89.3536 +651998,9.0932,88.2622 +651999,10.768,87.2112 +652000,12.397,86.1964 +652001,6.0087,89.28189 +652002,7.7486,88.2237 +652003,9.4363,87.2055 +652004,11.079,86.223 +652005,4.6532,89.20937 +652006,6.4045,88.185 +652007,8.1042,87.2 +652008,9.7588,86.2503 +652009,3.299,89.13609 +652010,5.0608,88.146 +652011,6.7717,87.1947 +652012,8.4377,86.2784 +652013,1.9462,89.06207 +652014,3.7177,88.1067 +652015,5.4387,87.1897 +652016,7.1154,86.307 +652017,0.59474,88.9873 +652018,2.375,88.0672 +652019,4.1054,87.1848 +652020,5.7918,86.3364 +652021,359.24,88.9119 +652022,1.0328,88.0275 +652023,2.7717,87.1801 +652024,4.4669,86.3663 +652025,357.9,88.8359 +652026,359.69,87.9875 +652027,1.4376,87.1757 +652028,3.1408,86.3968 +652029,356.55,88.7592 +652030,358.35,87.9473 +652031,0.10307,87.1714 +652032,1.8134,86.4279 +652033,355.2,88.6819 +652034,357.01,87.9069 +652035,358.77,87.1673 +652036,0.48463,86.4595 +652037,353.86,88.604 +652038,355.67,87.8663 +652039,357.43,87.1633 +652040,359.15,86.4916 +652041,352.52,88.5256 +652042,354.33,87.8256 +652043,356.1,87.1595 +652044,357.82,86.5242 +652045,351.17,88.4467 +652046,352.99,87.7846 +652047,354.76,87.1558 +652048,356.49,86.5572 +652049,349.83,88.3674 +652050,351.65,87.7435 +652051,353.42,87.1523 +652052,355.16,86.5906 +652053,348.5,88.2876 +652054,350.31,87.7022 +652055,352.09,87.1488 +652056,353.82,86.6245 +652057,347.16,88.2074 +652058,348.98,87.6608 +652059,350.75,87.1455 +652060,352.48,86.6587 +652061,345.82,88.1268 +652062,347.64,87.6192 +652063,349.41,87.1423 +652064,351.15,86.6932 +652065,344.49,88.0459 +652066,346.3,87.5776 +652067,348.07,87.1392 +652068,349.81,86.728 +652069,343.15,87.9646 +652070,344.97,87.5358 +652071,346.74,87.1362 +652072,348.47,86.7631 +652073,341.82,87.8831 +652074,343.63,87.4939 +652075,345.4,87.1332 +652076,347.13,86.7985 +652077,340.49,87.8013 +652078,342.29,87.4519 +652079,344.06,87.1303 +652080,345.78,86.834 +652081,339.16,87.7193 +652082,340.96,87.4098 +652083,342.72,87.1275 +652084,344.44,86.8698 +652085,337.84,87.6371 +652086,339.63,87.3677 +652087,341.38,87.1246 +652088,343.09,86.9057 +652089,336.51,87.5547 +652090,338.29,87.3254 +652091,340.04,87.1219 +652092,341.74,86.9417 +652093,335.19,87.4723 +652094,336.96,87.2832 +652095,338.69,87.1191 +652096,340.4,86.9778 +652097,333.86,87.3897 +652098,335.63,87.2409 +652099,337.35,87.1164 +652100,339.05,87.014 +652101,332.54,87.3071 +652102,334.29,87.1985 +652103,336.01,87.1137 +652104,337.69,87.0503 +652105,331.22,87.2244 +652106,332.96,87.1562 +652107,334.67,87.1109 +652108,336.34,87.0865 +652109,329.9,87.1418 +652110,331.63,87.1138 +652111,333.33,87.1081 +652112,334.99,87.1228 +652113,328.59,87.0592 +652114,330.3,87.0714 +652115,331.98,87.1054 +652116,333.63,87.1589 +652117,327.27,86.9767 +652118,328.97,87.0291 +652119,330.64,87.1025 +652120,332.28,87.195 +652121,325.95,86.8942 +652122,327.64,86.9868 +652123,329.29,87.0997 +652124,330.92,87.231 +652125,324.64,86.812 +652126,326.31,86.9444 +652127,327.95,87.0967 +652128,329.56,87.2669 +652129,323.33,86.7298 +652130,324.98,86.9022 +652131,326.61,87.0937 +652132,328.2,87.3026 +652133,322.02,86.6479 +652134,323.65,86.86 +652135,325.26,87.0906 +652136,326.84,87.3381 +652137,320.71,86.5662 +652138,322.33,86.8178 +652139,323.91,87.0875 +652140,325.48,87.3733 +652141,319.4,86.4848 +652142,321,86.7758 +652143,322.57,87.0842 +652144,324.11,87.4083 +652145,318.09,86.4036 +652146,319.67,86.7338 +652147,321.22,87.0808 +652148,322.75,87.443 +652149,316.79,86.3228 +652150,318.34,86.6919 +652151,319.88,87.0774 +652152,321.38,87.4775 +652153,315.48,86.2423 +652154,317.02,86.6501 +652155,318.53,87.0737 +652156,320.01,87.5115 +652157,314.18,86.1623 +652158,315.69,86.6084 +652159,317.18,87.07 +652160,318.64,87.5452 +652161,312.88,86.0826 +652162,314.37,86.5669 +652163,315.83,87.0661 +652164,317.27,87.5785 +652165,311.57,86.0034 +652166,313.04,86.5255 +652167,314.49,87.062 +652168,315.9,87.6114 +652169,310.27,85.9246 +652170,311.72,86.4842 +652171,313.14,87.0578 +652172,314.53,87.6438 +652173,308.98,85.8464 +652174,310.39,86.4431 +652175,311.79,87.0534 +652176,313.16,87.6757 +652177,307.68,85.7686 +652178,309.07,86.4021 +652179,310.44,87.0488 +652180,311.78,87.7072 +652181,306.38,85.6915 +652182,307.75,86.3613 +652183,309.09,87.0441 +652184,310.41,87.738 +652185,305.09,85.6149 +652186,306.42,86.3207 +652187,307.74,87.0391 +652188,309.03,87.7684 +652189,303.79,85.539 +652190,305.1,86.2803 +652191,306.39,87.0339 +652192,307.65,87.7981 +652193,302.5,85.4637 +652194,303.78,86.2401 +652195,305.04,87.0285 +652196,306.27,87.8272 +652197,301.21,85.389 +652198,302.46,86.2001 +652199,303.69,87.0229 +652200,304.89,87.8557 +652201,299.91,85.3151 +652202,301.14,86.1603 +652203,302.34,87.017 +652204,303.51,87.8835 +652205,298.62,85.2419 +652206,299.82,86.1208 +652207,300.99,87.0109 +652208,302.13,87.9106 +652209,297.34,85.1694 +652210,298.5,86.0814 +652211,299.63,87.0045 +652212,300.75,87.937 +652213,296.05,85.0977 +652214,297.18,86.0424 +652215,298.28,86.9979 +652216,299.37,87.9627 +652217,294.76,85.0268 +652218,295.86,86.0035 +652219,296.93,86.991 +652220,297.98,87.9875 +652221,293.47,84.9568 +652222,294.54,85.965 +652223,295.58,86.9838 +652224,296.6,88.0116 +652225,292.19,84.8876 +652226,293.22,85.9267 +652227,294.23,86.9763 +652228,295.21,88.0349 +652229,290.9,84.8192 +652230,291.9,85.8887 +652231,292.87,86.9686 +652232,293.82,88.0573 +652233,289.62,84.7518 +652234,290.58,85.8509 +652235,291.52,86.9605 +652236,292.44,88.0789 +652237,288.33,84.6853 +652238,289.26,85.8135 +652239,290.17,86.9521 +652240,291.05,88.0996 +652241,287.05,84.6197 +652242,287.94,85.7764 +652243,288.81,86.9434 +652244,289.66,88.1194 +652245,285.77,84.5551 +652246,286.63,85.7395 +652247,287.46,86.9344 +652248,288.27,88.1382 +652249,284.49,84.4914 +652250,285.31,85.703 +652251,286.11,86.9251 +652252,286.88,88.1561 +652253,283.21,84.4288 +652254,283.99,85.6668 +652255,284.75,86.9154 +652256,285.49,88.173 +652257,281.93,84.3672 +652258,282.67,85.631 +652259,283.4,86.9054 +652260,284.09,88.189 +652261,280.65,84.3066 +652262,281.36,85.5954 +652263,282.04,86.895 +652264,282.7,88.2039 +652265,279.37,84.2471 +652266,280.04,85.5603 +652267,280.69,86.8843 +652268,281.31,88.2178 +652269,278.09,84.1887 +652270,278.73,85.5254 +652271,279.33,86.8732 +652272,279.92,88.2307 +652273,276.82,84.1314 +652274,277.41,85.4909 +652275,277.98,86.8617 +652276,278.52,88.2425 +652277,275.54,84.0751 +652278,276.09,85.4568 +652279,276.62,86.8498 +652280,277.13,88.2532 +652281,274.26,84.0201 +652282,274.78,85.423 +652283,275.27,86.8376 +652284,275.73,88.2628 +652285,272.99,83.9661 +652286,273.46,85.3896 +652287,273.91,86.825 +652288,274.34,88.2712 +652289,271.71,83.9133 +652290,272.15,85.3566 +652291,272.56,86.812 +652292,272.94,88.2786 +652293,270.44,83.8617 +652294,270.83,85.324 +652295,271.2,86.7986 +652296,271.54,88.2848 +652297,269.16,83.8113 +652298,269.52,85.2917 +652299,269.85,86.7848 +652300,270.15,88.2898 +652301,267.89,83.7621 +652302,268.2,85.2599 +652303,268.49,86.7706 +652304,268.75,88.2937 +652305,266.61,83.7141 +652306,266.89,85.2284 +652307,267.13,86.756 +652308,267.35,88.2964 +652309,265.34,83.6673 +652310,265.57,85.1973 +652311,265.78,86.741 +652312,265.96,88.2978 +652313,264.06,83.6218 +652314,264.26,85.1667 +652315,264.42,86.7256 +652316,264.56,88.2981 +652317,262.79,83.5775 +652318,262.94,85.1364 +652319,263.07,86.7097 +652320,263.16,88.2971 +652321,261.52,83.5344 +652322,261.63,85.1065 +652323,261.71,86.6934 +652324,261.76,88.2949 +652325,260.24,83.4927 +652326,260.32,85.0771 +652327,260.36,86.6767 +652328,260.36,88.2914 +652329,258.97,83.4522 +652330,259,85.0481 +652331,259,86.6596 +652332,258.97,88.2867 +652333,257.7,83.4129 +652334,257.69,85.0195 +652335,257.64,86.642 +652336,257.57,88.2806 +652337,256.42,83.375 +652338,256.37,84.9913 +652339,256.29,86.624 +652340,256.17,88.2734 +652341,255.15,83.3384 +652342,255.06,84.9635 +652343,254.93,86.6056 +652344,254.77,88.2648 +652345,253.88,83.303 +652346,253.75,84.9362 +652347,253.58,86.5867 +652348,253.37,88.2549 +652349,252.61,83.269 +652350,252.43,84.9093 +652351,252.22,86.5673 +652352,251.98,88.2437 +652353,251.33,83.2363 +652354,251.12,84.8828 +652355,250.87,86.5476 +652356,250.58,88.2312 +652357,250.06,83.2048 +652358,249.8,84.8567 +652359,249.51,86.5274 +652360,249.18,88.2174 +652361,248.79,83.1747 +652362,248.49,84.8311 +652363,248.16,86.5067 +652364,247.78,88.2023 +652365,247.51,83.146 +652366,247.18,84.8059 +652367,246.8,86.4856 +652368,246.38,88.1859 +652369,246.24,83.1185 +652370,245.86,84.7812 +652371,245.45,86.464 +652372,244.99,88.1681 +652373,244.97,83.0924 +652374,244.55,84.7568 +652375,244.09,86.442 +652376,243.59,88.149 +652377,243.69,83.0675 +652378,243.23,84.7329 +652379,242.74,86.4195 +652380,242.19,88.1286 +652381,242.42,83.044 +652382,241.92,84.7095 +652383,241.38,86.3966 +652384,240.8,88.1068 +652385,241.14,83.0218 +652386,240.6,84.6865 +652387,240.03,86.3732 +652388,239.4,88.0837 +652389,239.87,83.0009 +652390,239.29,84.6639 +652391,238.67,86.3494 +652392,238.01,88.0593 +652393,238.59,82.9814 +652394,237.98,84.6417 +652395,237.32,86.3252 +652396,236.61,88.0335 +652397,237.32,82.9631 +652398,236.66,84.62 +652399,235.96,86.3005 +652400,235.22,88.0064 +652401,236.04,82.9462 +652402,235.35,84.5987 +652403,234.61,86.2753 +652404,233.83,87.9779 +652405,234.76,82.9305 +652406,234.03,84.5778 +652407,233.26,86.2497 +652408,232.43,87.9482 +652409,233.49,82.9162 +652410,232.72,84.5574 +652411,231.9,86.2236 +652412,231.04,87.9171 +652413,232.21,82.9031 +652414,231.4,84.5374 +652415,230.55,86.1972 +652416,229.65,87.8847 +652417,230.93,82.8913 +652418,230.09,84.5178 +652419,229.2,86.1702 +652420,228.26,87.851 +652421,229.65,82.8808 +652422,228.77,84.4986 +652423,227.84,86.1429 +652424,226.87,87.816 +652425,228.37,82.8715 +652426,227.46,84.4799 +652427,226.49,86.1151 +652428,225.48,87.7796 +652429,227.09,82.8635 +652430,226.14,84.4616 +652431,225.14,86.0868 +652432,224.09,87.742 +652433,225.81,82.8568 +652434,224.82,84.4436 +652435,223.79,86.0581 +652436,222.7,87.7031 +652437,224.53,82.8512 +652438,223.51,84.4261 +652439,222.44,86.029 +652440,221.31,87.6629 +652441,223.25,82.847 +652442,222.19,84.409 +652443,221.09,85.9995 +652444,219.92,87.6214 +652445,221.96,82.8439 +652446,220.87,84.3924 +652447,219.74,85.9696 +652448,218.54,87.5787 +652449,220.68,82.842 +652450,219.56,84.3761 +652451,218.38,85.9392 +652452,217.15,87.5347 +652453,219.4,82.8413 +652454,218.24,84.3602 +652455,217.03,85.9085 +652456,215.77,87.4895 +652457,218.11,82.8418 +652458,216.92,84.3447 +652459,215.68,85.8773 +652460,214.39,87.443 +652461,216.82,82.8435 +652462,215.61,84.3295 +652463,214.33,85.8457 +652464,213,87.3953 +652465,215.54,82.8463 +652466,214.29,84.3148 +652467,212.99,85.8137 +652468,211.62,87.3465 +652469,214.25,82.8502 +652470,212.97,84.3004 +652471,211.64,85.7813 +652472,210.24,87.2964 +652473,212.96,82.8553 +652474,211.65,84.2865 +652475,210.29,85.7486 +652476,208.86,87.2452 +652477,211.67,82.8615 +652478,210.33,84.2728 +652479,208.94,85.7154 +652480,207.49,87.1928 +652481,210.38,82.8687 +652482,209.01,84.2596 +652483,207.59,85.6819 +652484,206.11,87.1392 +652485,209.09,82.877 +652486,207.69,84.2467 +652487,206.25,85.648 +652488,204.73,87.0845 +652489,207.8,82.8864 +652490,206.37,84.2341 +652491,204.9,85.6137 +652492,203.36,87.0287 +652493,206.5,82.8968 +652494,205.05,84.2219 +652495,203.55,85.579 +652496,201.99,86.9719 +652497,205.21,82.9082 +652498,203.73,84.2101 +652499,202.21,85.544 +652500,200.61,86.9139 +652501,203.91,82.9206 +652502,202.41,84.1985 +652503,200.86,85.5087 +652504,199.24,86.8549 +652505,202.61,82.934 +652506,201.09,84.1873 +652507,199.51,85.473 +652508,197.87,86.7948 +652509,201.32,82.9483 +652510,199.77,84.1765 +652511,198.17,85.437 +652512,196.51,86.7338 +652513,200.02,82.9636 +652514,198.45,84.1659 +652515,196.83,85.4006 +652516,195.14,86.6717 +652517,198.72,82.9798 +652518,197.13,84.1556 +652519,195.48,85.364 +652520,193.77,86.6086 +652521,197.41,82.9969 +652522,195.8,84.1457 +652523,194.14,85.327 +652524,192.41,86.5446 +652525,196.11,83.0148 +652526,194.48,84.136 +652527,192.8,85.2897 +652528,191.05,86.4797 +652529,194.81,83.0336 +652530,193.16,84.1266 +652531,191.45,85.2521 +652532,189.68,86.4138 +652533,193.5,83.0532 +652534,191.83,84.1175 +652535,190.11,85.2142 +652536,188.32,86.3471 +652537,192.2,83.0737 +652538,190.51,84.1087 +652539,188.77,85.176 +652540,186.96,86.2795 +652541,190.89,83.0949 +652542,189.19,84.1001 +652543,187.43,85.1375 +652544,185.61,86.211 +652545,189.58,83.1168 +652546,187.86,84.0918 +652547,186.09,85.0988 +652548,184.25,86.1418 +652549,188.27,83.1395 +652550,186.54,84.0837 +652551,184.75,85.0598 +652552,182.9,86.0717 +652553,186.96,83.1629 +652554,185.21,84.0759 +652555,183.41,85.0206 +652556,181.54,86.0009 +652557,185.64,83.187 +652558,183.88,84.0682 +652559,182.07,84.9811 +652560,180.19,85.9293 +652561,184.33,83.2117 +652562,182.56,84.0609 +652563,180.73,84.9414 +652564,178.84,85.857 +652565,183.01,83.2371 +652566,181.23,84.0537 +652567,179.39,84.9015 +652568,177.49,85.7841 +652569,181.7,83.263 +652570,179.9,84.0467 +652571,178.05,84.8613 +652572,176.14,85.7104 +652573,180.38,83.2896 +652574,178.57,84.0399 +652575,176.72,84.8209 +652576,174.8,85.6362 +652577,179.06,83.3167 +652578,177.25,84.0333 +652579,175.38,84.7804 +652580,173.45,85.5613 +652581,177.74,83.3443 +652582,175.92,84.0269 +652583,174.04,84.7396 +652584,172.11,85.4858 +652585,176.42,83.3724 +652586,174.59,84.0207 +652587,172.71,84.6987 +652588,170.77,85.4098 +652589,175.09,83.401 +652590,173.26,84.0146 +652591,171.37,84.6576 +652592,169.43,85.3333 +652593,173.77,83.4301 +652594,171.93,84.0087 +652595,170.04,84.6163 +652596,168.09,85.2563 +652597,172.44,83.4595 +652598,170.6,84.0029 +652599,168.71,84.5749 +652600,166.75,85.1788 +652601,171.11,83.4894 +652602,169.27,83.9972 +652603,167.37,84.5333 +652604,165.42,85.1009 +652605,169.78,83.5196 +652606,167.94,83.9917 +652607,166.04,84.4916 +652608,164.08,85.0226 +652609,168.45,83.5501 +652610,166.61,83.9862 +652611,164.71,84.4498 +652612,162.75,84.9439 +652613,167.12,83.581 +652614,165.27,83.9809 +652615,163.37,84.4078 +652616,161.42,84.8648 +652617,165.79,83.6121 +652618,163.94,83.9757 +652619,162.04,84.3658 +652620,160.09,84.7855 +652621,164.45,83.6435 +652622,162.61,83.9705 +652623,160.71,84.3237 +652624,158.76,84.7058 +652625,163.12,83.6751 +652626,161.27,83.9655 +652627,159.38,84.2814 +652628,157.43,84.6259 +652629,161.78,83.7069 +652630,159.94,83.9605 +652631,158.05,84.2391 +652632,156.11,84.5458 +652633,160.44,83.7388 +652634,158.61,83.9555 +652635,156.72,84.1968 +652636,154.79,84.4655 +652637,159.1,83.7709 +652638,157.27,83.9506 +652639,155.39,84.1544 +652640,153.46,84.385 +652641,157.76,83.8031 +652642,155.94,83.9457 +652643,154.07,84.1119 +652644,152.14,84.3044 +652645,156.41,83.8354 +652646,154.6,83.9409 +652647,152.74,84.0694 +652648,150.83,84.2236 +652649,155.07,83.8677 +652650,153.26,83.9361 +652651,151.41,84.0269 +652652,149.51,84.1429 +652653,153.72,83.9 +652654,151.93,83.9313 +652655,150.08,83.9844 +652656,148.19,84.062 +652657,152.38,83.9324 +652658,150.59,83.9264 +652659,148.76,83.9419 +652660,146.88,83.9812 +652661,151.03,83.9647 +652662,149.25,83.9216 +652663,147.43,83.8993 +652664,145.56,83.9004 +652665,149.68,83.9969 +652666,147.91,83.9168 +652667,146.11,83.8568 +652668,144.25,83.8196 +652669,148.33,84.029 +652670,146.58,83.9119 +652671,144.78,83.8144 +652672,142.94,83.7389 +652673,146.97,84.0611 +652674,145.24,83.9069 +652675,143.46,83.7719 +652676,141.63,83.6584 +652677,145.62,84.0929 +652678,143.9,83.902 +652679,142.13,83.7295 +652680,140.33,83.578 +652681,144.26,84.1246 +652682,142.56,83.8969 +652683,140.81,83.6872 +652684,139.02,83.4977 +652685,142.91,84.1561 +652686,141.22,83.8918 +652687,139.49,83.6449 +652688,137.72,83.4177 +652689,141.55,84.1874 +652690,139.88,83.8866 +652691,138.17,83.6027 +652692,136.41,83.3379 +652693,140.19,84.2184 +652694,138.54,83.8813 +652695,136.85,83.5606 +652696,135.11,83.2584 +652697,138.83,84.2491 +652698,137.2,83.876 +652699,135.52,83.5186 +652700,133.81,83.1792 +652701,137.47,84.2794 +652702,135.85,83.8705 +652703,134.2,83.4767 +652704,132.51,83.1003 +652705,136.1,84.3095 +652706,134.51,83.8649 +652707,132.88,83.4349 +652708,131.21,83.0217 +652709,134.74,84.3391 +652710,133.17,83.8591 +652711,131.56,83.3932 +652712,129.92,82.9435 +652713,133.37,84.3684 +652714,131.83,83.8533 +652715,130.24,83.3517 +652716,128.62,82.8658 +652717,132.01,84.3972 +652718,130.48,83.8473 +652719,128.93,83.3103 +652720,127.33,82.7885 +652721,130.64,84.4256 +652722,129.14,83.8411 +652723,127.61,83.2691 +652724,126.04,82.7117 +652725,129.27,84.4535 +652726,127.8,83.8348 +652727,126.29,83.228 +652728,124.75,82.6354 +652729,127.9,84.4809 +652730,126.45,83.8283 +652731,124.97,83.1871 +652732,123.45,82.5596 +652733,126.53,84.5078 +652734,125.11,83.8216 +652735,123.65,83.1464 +652736,122.17,82.4843 +652737,125.15,84.5341 +652738,123.76,83.8147 +652739,122.34,83.1059 +652740,120.88,82.4097 +652741,123.78,84.5599 +652742,122.42,83.8076 +652743,121.02,83.0656 +652744,119.59,82.3356 +652745,122.4,84.585 +652746,121.07,83.8004 +652747,119.71,83.0255 +652748,118.31,82.2622 +652749,121.03,84.6095 +652750,119.72,83.7929 +652751,118.39,82.9856 +652752,117.02,82.1895 +652753,119.65,84.6333 +652754,118.38,83.7852 +652755,117.07,82.9459 +652756,115.74,82.1175 +652757,118.27,84.6565 +652758,117.03,83.7772 +652759,115.76,82.9065 +652760,114.46,82.0461 +652761,116.89,84.6789 +652762,115.68,83.769 +652763,114.45,82.8673 +652764,113.17,81.9756 +652765,115.51,84.7007 +652766,114.34,83.7606 +652767,113.13,82.8283 +652768,111.89,81.9057 +652769,114.13,84.7217 +652770,112.99,83.7519 +652771,111.82,82.7896 +652772,110.61,81.8367 +652773,112.75,84.7419 +652774,111.64,83.743 +652775,110.5,82.7512 +652776,109.34,81.7685 +652777,111.37,84.7613 +652778,110.29,83.7338 +652779,109.19,82.7131 +652780,108.06,81.7011 +652781,109.98,84.7799 +652782,108.95,83.7243 +652783,107.88,82.6752 +652784,106.78,81.6346 +652785,108.6,84.7977 +652786,107.6,83.7145 +652787,106.57,82.6376 +652788,105.51,81.569 +652789,107.21,84.8146 +652790,106.25,83.7044 +652791,105.25,82.6004 +652792,104.23,81.5042 +652793,105.83,84.8306 +652794,104.9,83.694 +652795,103.94,82.5634 +652796,102.96,81.4404 +652797,104.44,84.8457 +652798,103.55,83.6834 +652799,102.63,82.5267 +652800,101.68,81.3776 +652801,103.05,84.86 +652802,102.2,83.6724 +652803,101.32,82.4904 +652804,100.41,81.3157 +652805,101.66,84.8732 +652806,100.85,83.6611 +652807,100.01,82.4544 +652808,99.14,81.2548 +652809,100.27,84.8856 +652810,99.5,83.6495 +652811,98.699,82.4187 +652812,97.868,81.1949 +652813,98.883,84.8969 +652814,98.15,83.6375 +652815,97.388,82.3833 +652816,96.598,81.136 +652817,97.493,84.9073 +652818,96.8,83.6252 +652819,96.078,82.3483 +652820,95.328,81.0782 +652821,96.102,84.9166 +652822,95.449,83.6126 +652823,94.768,82.3136 +652824,94.059,81.0214 +652825,94.71,84.925 +652826,94.098,83.5996 +652827,93.459,82.2793 +652828,92.79,80.9657 +652829,93.318,84.9322 +652830,92.748,83.5862 +652831,92.149,82.2454 +652832,91.522,80.9111 +652833,91.925,84.9385 +652834,91.397,83.5726 +652835,90.84,82.2118 +652836,90.255,80.8576 +652837,90.532,84.9436 +652838,90.045,83.5585 +652839,89.531,82.1785 +652840,88.988,80.8052 +652841,89.138,84.9477 +652842,88.694,83.5441 +652843,88.222,82.1457 +652844,87.721,80.754 +652845,87.744,84.9507 +652846,87.343,83.5293 +652847,86.913,82.1132 +652848,86.455,80.7039 +652849,86.349,84.9525 +652850,85.992,83.5141 +652851,85.605,82.0811 +652852,85.189,80.655 +652853,84.954,84.9533 +652854,84.64,83.4985 +652855,84.296,82.0495 +652856,83.923,80.6073 +652857,83.559,84.9529 +652858,83.288,83.4826 +652859,82.988,82.0181 +652860,82.658,80.5607 +652861,82.163,84.9513 +652862,81.937,83.4663 +652863,81.68,81.9872 +652864,81.393,80.5154 +652865,80.768,84.9486 +652866,80.585,83.4496 +652867,80.372,81.9567 +652868,80.129,80.4712 +652869,79.372,84.9447 +652870,79.233,83.4324 +652871,79.064,81.9266 +652872,78.864,80.4283 +652873,77.976,84.9396 +652874,77.882,83.4149 +652875,77.756,81.8969 +652876,77.6,80.3866 +652877,76.579,84.9333 +652878,76.53,83.397 +652879,76.448,81.8676 +652880,76.336,80.3462 +652881,75.183,84.9259 +652882,75.178,83.3787 +652883,75.141,81.8388 +652884,75.072,80.307 +652885,73.786,84.9172 +652886,73.826,83.36 +652887,73.833,81.8103 +652888,73.808,80.269 +652889,72.39,84.9073 +652890,72.475,83.3408 +652891,72.526,81.7822 +652892,72.544,80.2323 +652893,70.993,84.8962 +652894,71.123,83.3213 +652895,71.218,81.7546 +652896,71.281,80.1969 +652897,69.597,84.8838 +652898,69.771,83.3013 +652899,69.911,81.7274 +652900,70.017,80.1628 +652901,68.2,84.8702 +652902,68.419,83.2809 +652903,68.603,81.7006 +652904,68.753,80.1299 +652905,66.804,84.8554 +652906,67.068,83.2601 +652907,67.296,81.6743 +652908,67.489,80.0983 +652909,65.408,84.8394 +652910,65.716,83.2389 +652911,65.988,81.6483 +652912,66.225,80.0679 +652913,64.011,84.822 +652914,64.365,83.2173 +652915,64.681,81.6228 +652916,64.961,80.0389 +652917,62.616,84.8035 +652918,63.014,83.1952 +652919,63.373,81.5977 +652920,63.697,80.0111 +652921,61.22,84.7836 +652922,61.662,83.1728 +652923,62.065,81.5731 +652924,62.432,79.985 +652925,59.825,84.7625 +652926,60.311,83.1499 +652927,60.758,81.5488 +652928,61.168,79.959 +652929,58.429,84.7402 +652930,58.96,83.1266 +652931,59.45,81.525 +652932,59.903,79.936 +652933,57.035,84.7166 +652934,57.609,83.1028 +652935,58.142,81.5016 +652936,58.637,79.913 +652937,55.64,84.6917 +652938,56.259,83.0787 +652939,56.835,81.4787 +652940,57.372,79.892 +652941,54.246,84.6656 +652942,54.908,83.0541 +652943,55.527,81.4562 +652944,56.106,79.872 +652945,52.853,84.6382 +652946,53.558,83.0291 +652947,54.218,81.4341 +652948,54.839,79.853 +652949,51.46,84.6096 +652950,52.208,83.0037 +652951,52.91,81.4124 +652952,53.572,79.835 +652953,50.067,84.5797 +652954,50.858,82.9778 +652955,51.602,81.3911 +652956,52.305,79.819 +652957,48.675,84.5486 +652958,49.508,82.9516 +652959,50.294,81.3703 +652960,51.037,79.804 +652961,47.284,84.5162 +652962,48.158,82.9249 +652963,48.985,81.3499 +652964,49.769,79.79 +652965,45.893,84.4826 +652966,46.809,82.8979 +652967,47.676,81.3299 +652968,48.5,79.778 +652969,44.503,84.4477 +652970,45.46,82.8704 +652971,46.367,81.3103 +652972,47.231,79.767 +652973,43.113,84.4117 +652974,44.111,82.8425 +652975,45.058,81.2911 +652976,45.961,79.757 +652977,41.725,84.3743 +652978,42.762,82.8142 +652979,43.749,81.2724 +652980,44.69,79.748 +652981,40.336,84.3358 +652982,41.414,82.7855 +652983,42.439,81.254 +652984,43.418,79.74 +652985,38.949,84.2961 +652986,40.066,82.7564 +652987,41.129,81.2361 +652988,42.146,79.734 +652989,37.563,84.2552 +652990,38.718,82.7269 +652991,39.82,81.2185 +652992,40.873,79.729 +652993,36.177,84.213 +652994,37.371,82.697 +652995,38.509,81.2014 +652996,39.6,79.725 +652997,34.792,84.1697 +652998,36.024,82.6667 +652999,37.199,81.1846 +653000,38.325,79.722 +653001,33.409,84.1252 +653002,34.677,82.636 +653003,35.888,81.1683 +653004,37.05,79.72 +653005,32.026,84.0796 +653006,33.33,82.605 +653007,34.577,81.1523 +653008,35.774,79.72 +653009,30.644,84.0328 +653010,31.984,82.5735 +653011,33.266,81.1367 +653012,34.497,79.721 +653013,29.263,83.9849 +653014,30.639,82.5417 +653015,31.955,81.1215 +653016,33.219,79.722 +653017,27.883,83.9359 +653018,29.293,82.5095 +653019,30.643,81.1066 +653020,31.941,79.725 +653021,26.504,83.8857 +653022,27.948,82.477 +653023,29.331,81.0922 +653024,30.661,79.729 +653025,25.126,83.8345 +653026,26.603,82.4441 +653027,28.018,81.078 +653028,29.38,79.734 +653029,23.749,83.7821 +653030,25.259,82.4108 +653031,26.706,81.0643 +653032,28.098,79.74 +653033,22.374,83.7287 +653034,23.915,82.3772 +653035,25.393,81.0509 +653036,26.816,79.748 +653037,20.999,83.6743 +653038,22.572,82.3433 +653039,24.079,81.0378 +653040,25.532,79.756 +653041,19.626,83.6188 +653042,21.228,82.309 +653043,22.766,81.0251 +653044,24.247,79.765 +653045,18.254,83.5623 +653046,19.886,82.2744 +653047,21.452,81.0127 +653048,22.961,79.775 +653049,16.883,83.5048 +653050,18.543,82.2394 +653051,20.137,81.0007 +653052,21.674,79.786 +653053,15.514,83.4463 +653054,17.202,82.2041 +653055,18.822,80.989 +653056,20.386,79.798 +653057,14.146,83.3869 +653058,15.86,82.1686 +653059,17.507,80.9776 +653060,19.097,79.811 +653061,12.779,83.3265 +653062,14.519,82.1327 +653063,16.192,80.9665 +653064,17.806,79.825 +653065,11.413,83.2652 +653066,13.179,82.0965 +653067,14.876,80.9557 +653068,16.514,79.84 +653069,10.049,83.2029 +653070,11.839,82.06 +653071,13.56,80.9451 +653072,15.222,79.856 +653073,8.6856,83.1398 +653074,10.499,82.0232 +653075,12.243,80.9349 +653076,13.927,79.872 +653077,7.324,83.0759 +653078,9.1601,81.9862 +653079,10.926,80.925 +653080,12.632,79.89 +653081,5.9638,83.0111 +653082,7.8214,81.9489 +653083,9.6085,80.9153 +653084,11.335,79.908 +653085,4.605,82.9454 +653086,6.4833,81.9113 +653087,8.2906,80.906 +653088,10.037,79.927 +653089,3.2477,82.879 +653090,5.1456,81.8734 +653091,6.9723,80.8968 +653092,8.738,79.946 +653093,1.8918,82.8118 +653094,3.8085,81.8353 +653095,5.6536,80.8879 +653096,7.4375,79.967 +653097,0.53735,82.7439 +653098,2.4718,81.797 +653099,4.3345,80.8793 +653100,6.1356,79.988 +653101,359.18,82.6752 +653102,1.1357,81.7584 +653103,3.0149,80.8709 +653104,4.8323,80.0097 +653105,357.83,82.6058 +653106,359.8,81.7196 +653107,1.6949,80.8627 +653108,3.5277,80.0322 +653109,356.48,82.5358 +653110,358.46,81.6806 +653111,0.37444,80.8548 +653112,2.2217,80.0553 +653113,355.13,82.4651 +653114,357.13,81.6414 +653115,359.05,80.847 +653116,0.91435,80.079 +653117,353.79,82.3937 +653118,355.8,81.602 +653119,357.73,80.8395 +653120,359.61,80.1033 +653121,352.44,82.3218 +653122,354.46,81.5623 +653123,356.41,80.8321 +653124,358.3,80.1282 +653125,351.1,82.2493 +653126,353.13,81.5225 +653127,355.09,80.825 +653128,356.98,80.1536 +653129,349.76,82.1762 +653130,351.8,81.4826 +653131,353.77,80.818 +653132,355.67,80.1795 +653133,348.42,82.1026 +653134,350.47,81.4424 +653135,352.44,80.8112 +653136,354.36,80.2059 +653137,347.08,82.0286 +653138,349.13,81.4021 +653139,351.12,80.8045 +653140,353.04,80.2327 +653141,345.74,81.954 +653142,347.8,81.3617 +653143,349.79,80.798 +653144,351.72,80.26 +653145,344.4,81.879 +653146,346.47,81.3211 +653147,348.47,80.7917 +653148,350.4,80.2876 +653149,343.07,81.8036 +653150,345.14,81.2804 +653151,347.14,80.7854 +653152,349.08,80.3157 +653153,341.74,81.7279 +653154,343.81,81.2396 +653155,345.82,80.7793 +653156,347.76,80.344 +653157,340.4,81.6517 +653158,342.48,81.1986 +653159,344.49,80.7733 +653160,346.44,80.3727 +653161,339.08,81.5753 +653162,341.16,81.1576 +653163,343.17,80.7674 +653164,345.11,80.4017 +653165,337.75,81.4985 +653166,339.83,81.1165 +653167,341.84,80.7616 +653168,343.79,80.431 +653169,336.42,81.4215 +653170,338.5,81.0753 +653171,340.51,80.7559 +653172,342.46,80.4605 +653173,335.1,81.3442 +653174,337.18,81.034 +653175,339.18,80.7503 +653176,341.13,80.4902 +653177,333.77,81.2667 +653178,335.85,80.9926 +653179,337.86,80.7447 +653180,339.8,80.5201 +653181,332.45,81.1891 +653182,334.52,80.9512 +653183,336.53,80.7392 +653184,338.47,80.5501 +653185,331.13,81.1112 +653186,333.2,80.9098 +653187,335.2,80.7338 +653188,337.14,80.5803 +653189,329.81,81.0333 +653190,331.87,80.8683 +653191,333.87,80.7283 +653192,335.8,80.6105 +653193,328.5,80.9553 +653194,330.55,80.8268 +653195,332.54,80.7229 +653196,334.46,80.6409 +653197,327.18,80.8772 +653198,329.23,80.7853 +653199,331.21,80.7176 +653200,333.13,80.6712 +653201,325.87,80.799 +653202,327.9,80.7438 +653203,329.88,80.7122 +653204,331.79,80.7016 +653205,324.56,80.7209 +653206,326.58,80.7022 +653207,328.54,80.7069 +653208,330.45,80.732 +653209,323.25,80.6428 +653210,325.26,80.6607 +653211,327.21,80.7015 +653212,329.1,80.7623 +653213,321.94,80.5647 +653214,323.94,80.6193 +653215,325.88,80.6961 +653216,327.76,80.7925 +653217,320.63,80.4867 +653218,322.62,80.5778 +653219,324.55,80.6907 +653220,326.42,80.8227 +653221,319.32,80.4089 +653222,321.3,80.5364 +653223,323.21,80.6852 +653224,325.07,80.8527 +653225,318.02,80.3312 +653226,319.98,80.4951 +653227,321.88,80.6797 +653228,323.72,80.8826 +653229,316.72,80.2536 +653230,318.66,80.4538 +653231,320.54,80.6742 +653232,322.37,80.9123 +653233,315.42,80.1763 +653234,317.34,80.4126 +653235,319.21,80.6686 +653236,321.02,80.9417 +653237,314.12,80.0992 +653238,316.02,80.3714 +653239,317.87,80.6629 +653240,319.67,80.971 +653241,312.82,80.0223 +653242,314.71,80.3304 +653243,316.54,80.6571 +653244,318.32,80.9999 +653245,311.52,79.946 +653246,313.39,80.2895 +653247,315.2,80.6513 +653248,316.96,81.0286 +653249,310.23,79.87 +653250,312.07,80.2486 +653251,313.86,80.6453 +653252,315.6,81.057 +653253,308.93,79.794 +653254,310.76,80.2079 +653255,312.53,80.6392 +653256,314.25,81.085 +653257,307.64,79.718 +653258,309.44,80.1674 +653259,311.19,80.633 +653260,312.89,81.1127 +653261,306.35,79.643 +653262,308.13,80.1269 +653263,309.85,80.6267 +653264,311.53,81.1399 +653265,305.06,79.568 +653266,306.81,80.0866 +653267,308.51,80.6202 +653268,310.16,81.1668 +653269,303.77,79.494 +653270,305.5,80.0465 +653271,307.17,80.6136 +653272,308.8,81.1932 +653273,302.48,79.42 +653274,304.18,80.0065 +653275,305.84,80.6069 +653276,307.44,81.2191 +653277,301.2,79.347 +653278,302.87,79.967 +653279,304.5,80.5999 +653280,306.07,81.2445 +653281,299.91,79.275 +653282,301.56,79.927 +653283,303.16,80.5928 +653284,304.71,81.2694 +653285,298.63,79.202 +653286,300.25,79.888 +653287,301.82,80.5856 +653288,303.34,81.2937 +653289,297.35,79.131 +653290,298.94,79.848 +653291,300.47,80.5781 +653292,301.97,81.3175 +653293,296.07,79.06 +653294,297.62,79.809 +653295,299.13,80.5704 +653296,300.6,81.3407 +653297,294.79,78.99 +653298,296.31,79.771 +653299,297.79,80.5626 +653300,299.23,81.3633 +653301,293.51,78.92 +653302,295,79.732 +653303,296.45,80.5545 +653304,297.85,81.3852 +653305,292.23,78.851 +653306,293.69,79.694 +653307,295.11,80.5462 +653308,296.48,81.4064 +653309,290.96,78.783 +653310,292.38,79.656 +653311,293.77,80.5376 +653312,295.11,81.427 +653313,289.68,78.716 +653314,291.07,79.618 +653315,292.42,80.5289 +653316,293.73,81.4468 +653317,288.41,78.649 +653318,289.76,79.58 +653319,291.08,80.5199 +653320,292.35,81.4659 +653321,287.13,78.583 +653322,288.46,79.543 +653323,289.74,80.5106 +653324,290.97,81.4843 +653325,285.86,78.518 +653326,287.15,79.506 +653327,288.39,80.5011 +653328,289.6,81.5019 +653329,284.59,78.454 +653330,285.84,79.469 +653331,287.05,80.4913 +653332,288.22,81.5187 +653333,283.32,78.391 +653334,284.53,79.433 +653335,285.7,80.4812 +653336,286.83,81.5347 +653337,282.05,78.328 +653338,283.23,79.396 +653339,284.36,80.4709 +653340,285.45,81.5498 +653341,280.79,78.267 +653342,281.92,79.361 +653343,283.01,80.4603 +653344,284.07,81.5641 +653345,279.52,78.206 +653346,280.61,79.325 +653347,281.67,80.4494 +653348,282.69,81.5775 +653349,278.25,78.147 +653350,279.31,79.29 +653351,280.32,80.4382 +653352,281.3,81.59 +653353,276.99,78.088 +653354,278,79.255 +653355,278.98,80.4267 +653356,279.92,81.6016 +653357,275.72,78.03 +653358,276.69,79.22 +653359,277.63,80.4148 +653360,278.53,81.6123 +653361,274.46,77.973 +653362,275.39,79.186 +653363,276.28,80.4027 +653364,277.14,81.6221 +653365,273.2,77.918 +653366,274.08,79.152 +653367,274.94,80.3902 +653368,275.76,81.6308 +653369,271.93,77.863 +653370,272.78,79.118 +653371,273.59,80.3774 +653372,274.37,81.6386 +653373,270.67,77.809 +653374,271.47,79.085 +653375,272.24,80.3643 +653376,272.98,81.6454 +653377,269.41,77.757 +653378,270.17,79.052 +653379,270.9,80.3508 +653380,271.59,81.6512 +653381,268.15,77.705 +653382,268.87,79.02 +653383,269.55,80.337 +653384,270.2,81.656 +653385,266.89,77.655 +653386,267.56,78.987 +653387,268.2,80.3229 +653388,268.81,81.6597 +653389,265.63,77.606 +653390,266.26,78.956 +653391,266.85,80.3084 +653392,267.42,81.6624 +653393,264.37,77.558 +653394,264.96,78.924 +653395,265.51,80.2935 +653396,266.03,81.664 +653397,263.11,77.511 +653398,263.65,78.893 +653399,264.16,80.2783 +653400,264.63,81.6645 +653401,261.85,77.465 +653402,262.35,78.862 +653403,262.81,80.2627 +653404,263.24,81.6639 +653405,260.6,77.42 +653406,261.05,78.832 +653407,261.46,80.2468 +653408,261.85,81.6623 +653409,259.34,77.377 +653410,259.74,78.802 +653411,260.11,80.2304 +653412,260.45,81.6595 +653413,258.08,77.334 +653414,258.44,78.773 +653415,258.77,80.2137 +653416,259.06,81.6556 +653417,256.83,77.293 +653418,257.14,78.744 +653419,257.42,80.1967 +653420,257.67,81.6506 +653421,255.57,77.253 +653422,255.84,78.715 +653423,256.07,80.1792 +653424,256.27,81.6444 +653425,254.31,77.214 +653426,254.53,78.687 +653427,254.72,80.1613 +653428,254.88,81.6371 +653429,253.06,77.177 +653430,253.23,78.659 +653431,253.37,80.1431 +653432,253.48,81.6287 +653433,251.8,77.141 +653434,251.93,78.631 +653435,252.02,80.1245 +653436,252.09,81.619 +653437,250.55,77.106 +653438,250.63,78.604 +653439,250.68,80.1055 +653440,250.69,81.6082 +653441,249.29,77.072 +653442,249.32,78.577 +653443,249.33,80.0861 +653444,249.3,81.5962 +653445,248.03,77.039 +653446,248.02,78.551 +653447,247.98,80.0663 +653448,247.9,81.5831 +653449,246.78,77.008 +653450,246.72,78.525 +653451,246.63,80.046 +653452,246.51,81.5687 +653453,245.52,76.978 +653454,245.42,78.5 +653455,245.28,80.0254 +653456,245.11,81.5532 +653457,244.27,76.949 +653458,244.12,78.475 +653459,243.93,80.0044 +653460,243.72,81.5364 +653461,243.01,76.921 +653462,242.81,78.45 +653463,242.58,79.983 +653464,242.32,81.5185 +653465,241.76,76.895 +653466,241.51,78.426 +653467,241.24,79.961 +653468,240.93,81.4993 +653469,240.5,76.87 +653470,240.21,78.402 +653471,239.89,79.939 +653472,239.53,81.479 +653473,239.24,76.846 +653474,238.91,78.379 +653475,238.54,79.916 +653476,238.14,81.4574 +653477,237.99,76.823 +653478,237.61,78.356 +653479,237.19,79.893 +653480,236.74,81.4346 +653481,236.73,76.802 +653482,236.3,78.334 +653483,235.84,79.87 +653484,235.35,81.4107 +653485,235.47,76.782 +653486,235,78.311 +653487,234.5,79.846 +653488,233.95,81.3855 +653489,234.21,76.763 +653490,233.7,78.29 +653491,233.15,79.822 +653492,232.56,81.3591 +653493,232.96,76.746 +653494,232.4,78.269 +653495,231.8,79.797 +653496,231.17,81.3315 +653497,231.7,76.729 +653498,231.09,78.248 +653499,230.45,79.772 +653500,229.77,81.3027 +653501,230.44,76.714 +653502,229.79,78.227 +653503,229.11,79.747 +653504,228.38,81.2727 +653505,229.18,76.701 +653506,228.49,78.207 +653507,227.76,79.721 +653508,226.99,81.2416 +653509,227.92,76.688 +653510,227.19,78.188 +653511,226.41,79.695 +653512,225.6,81.2092 +653513,226.66,76.676 +653514,225.88,78.168 +653515,225.07,79.668 +653516,224.21,81.1756 +653517,225.4,76.666 +653518,224.58,78.15 +653519,223.72,79.641 +653520,222.82,81.1409 +653521,224.14,76.657 +653522,223.28,78.131 +653523,222.37,79.614 +653524,221.43,81.105 +653525,222.88,76.65 +653526,221.97,78.113 +653527,221.03,79.586 +653528,220.04,81.0679 +653529,221.61,76.643 +653530,220.67,78.096 +653531,219.68,79.558 +653532,218.65,81.0297 +653533,220.35,76.637 +653534,219.36,78.079 +653535,218.34,79.529 +653536,217.26,80.9903 +653537,219.08,76.633 +653538,218.06,78.062 +653539,216.99,79.501 +653540,215.87,80.9498 +653541,217.82,76.63 +653542,216.76,78.045 +653543,215.65,79.471 +653544,214.49,80.9081 +653545,216.55,76.628 +653546,215.45,78.029 +653547,214.3,79.442 +653548,213.1,80.8653 +653549,215.29,76.627 +653550,214.15,78.014 +653551,212.96,79.412 +653552,211.72,80.8214 +653553,214.02,76.628 +653554,212.84,77.998 +653555,211.61,79.381 +653556,210.33,80.7764 +653557,212.75,76.629 +653558,211.53,77.983 +653559,210.27,79.35 +653560,208.95,80.7303 +653561,211.48,76.631 +653562,210.23,77.969 +653563,208.93,79.319 +653564,207.57,80.6831 +653565,210.21,76.635 +653566,208.92,77.955 +653567,207.58,79.288 +653568,206.19,80.6348 +653569,208.94,76.64 +653570,207.62,77.941 +653571,206.24,79.256 +653572,204.81,80.5855 +653573,207.67,76.645 +653574,206.31,77.928 +653575,204.9,79.224 +653576,203.43,80.5352 +653577,206.4,76.652 +653578,205,77.914 +653579,203.56,79.191 +653580,202.05,80.4838 +653581,205.12,76.66 +653582,203.69,77.902 +653583,202.22,79.159 +653584,200.68,80.4314 +653585,203.85,76.668 +653586,202.39,77.889 +653587,200.87,79.126 +653588,199.3,80.378 +653589,202.57,76.678 +653590,201.08,77.877 +653591,199.53,79.092 +653592,197.93,80.3237 +653593,201.29,76.689 +653594,199.77,77.865 +653595,198.19,79.058 +653596,196.55,80.2683 +653597,200.01,76.7 +653598,198.46,77.854 +653599,196.85,79.024 +653600,195.18,80.2121 +653601,198.73,76.713 +653602,197.15,77.843 +653603,195.51,78.99 +653604,193.81,80.1548 +653605,197.45,76.726 +653606,195.84,77.832 +653607,194.18,78.955 +653608,192.44,80.0967 +653609,196.17,76.74 +653610,194.53,77.821 +653611,192.84,78.92 +653612,191.07,80.0377 +653613,194.89,76.755 +653614,193.22,77.811 +653615,191.5,78.885 +653616,189.71,79.978 +653617,193.6,76.771 +653618,191.91,77.801 +653619,190.16,78.849 +653620,188.34,79.917 +653621,192.32,76.788 +653622,190.6,77.792 +653623,188.82,78.814 +653624,186.98,79.855 +653625,191.03,76.806 +653626,189.29,77.782 +653627,187.49,78.777 +653628,185.61,79.793 +653629,189.74,76.824 +653630,187.98,77.773 +653631,186.15,78.741 +653632,184.25,79.73 +653633,188.45,76.843 +653634,186.66,77.764 +653635,184.81,78.705 +653636,182.89,79.666 +653637,187.16,76.863 +653638,185.35,77.756 +653639,183.48,78.668 +653640,181.53,79.601 +653641,185.87,76.883 +653642,184.04,77.747 +653643,182.14,78.631 +653644,180.18,79.536 +653645,184.57,76.905 +653646,182.72,77.739 +653647,180.81,78.593 +653648,178.82,79.47 +653649,183.28,76.926 +653650,181.41,77.731 +653651,179.48,78.556 +653652,177.47,79.403 +653653,181.98,76.949 +653654,180.09,77.723 +653655,178.14,78.518 +653656,176.12,79.335 +653657,180.68,76.972 +653658,178.78,77.716 +653659,176.81,78.48 +653660,174.76,79.267 +653661,179.38,76.996 +653662,177.46,77.709 +653663,175.48,78.442 +653664,173.42,79.198 +653665,178.08,77.02 +653666,176.15,77.702 +653667,174.15,78.404 +653668,172.07,79.129 +653669,176.78,77.045 +653670,174.83,77.695 +653671,172.82,78.366 +653672,170.72,79.059 +653673,175.47,77.07 +653674,173.51,77.688 +653675,171.49,78.327 +653676,169.38,78.989 +653677,174.17,77.095 +653678,172.2,77.681 +653679,170.16,78.288 +653680,168.03,78.918 +653681,172.86,77.122 +653682,170.88,77.675 +653683,168.83,78.249 +653684,166.69,78.846 +653685,171.55,77.148 +653686,169.56,77.669 +653687,167.5,78.21 +653688,165.35,78.775 +653689,170.24,77.175 +653690,168.24,77.663 +653691,166.17,78.171 +653692,164.01,78.702 +653693,168.93,77.203 +653694,166.92,77.657 +653695,164.84,78.131 +653696,162.68,78.63 +653697,167.62,77.23 +653698,165.6,77.651 +653699,163.51,78.092 +653700,161.34,78.556 +653701,166.3,77.258 +653702,164.28,77.645 +653703,162.19,78.052 +653704,160.01,78.483 +653705,164.99,77.287 +653706,162.96,77.639 +653707,160.86,78.013 +653708,158.68,78.409 +653709,163.67,77.315 +653710,161.64,77.634 +653711,159.54,77.973 +653712,157.35,78.335 +653713,162.35,77.344 +653714,160.32,77.628 +653715,158.21,77.933 +653716,156.02,78.261 +653717,161.03,77.373 +653718,158.99,77.623 +653719,156.89,77.893 +653720,154.69,78.186 +653721,159.71,77.402 +653722,157.67,77.618 +653723,155.56,77.853 +653724,153.37,78.111 +653725,158.39,77.432 +653726,156.35,77.613 +653727,154.24,77.813 +653728,152.05,78.036 +653729,157.06,77.461 +653730,155.02,77.607 +653731,152.92,77.773 +653732,150.73,77.961 +653733,155.73,77.491 +653734,153.7,77.602 +653735,151.59,77.733 +653736,149.41,77.886 +653737,154.4,77.52 +653738,152.37,77.597 +653739,150.27,77.693 +653740,148.09,77.811 +653741,153.07,77.55 +653742,151.05,77.592 +653743,148.95,77.653 +653744,146.77,77.735 +653745,151.74,77.58 +653746,149.72,77.587 +653747,147.63,77.613 +653748,145.46,77.66 +653749,150.41,77.61 +653750,148.4,77.582 +653751,146.31,77.573 +653752,144.14,77.584 +653753,149.08,77.639 +653754,147.07,77.577 +653755,144.99,77.532 +653756,142.83,77.509 +653757,147.74,77.669 +653758,145.74,77.572 +653759,143.67,77.492 +653760,141.52,77.433 +653761,146.4,77.698 +653762,144.41,77.567 +653763,142.35,77.452 +653764,140.22,77.358 +653765,145.06,77.728 +653766,143.08,77.561 +653767,141.04,77.412 +653768,138.91,77.282 +653769,143.72,77.757 +653770,141.76,77.556 +653771,139.72,77.372 +653772,137.6,77.207 +653773,142.38,77.786 +653774,140.43,77.551 +653775,138.4,77.332 +653776,136.3,77.132 +653777,141.04,77.815 +653778,139.1,77.546 +653779,137.09,77.292 +653780,135,77.057 +653781,139.69,77.843 +653782,137.77,77.54 +653783,135.77,77.253 +653784,133.7,76.983 +653785,138.34,77.872 +653786,136.43,77.535 +653787,134.46,77.213 +653788,132.4,76.908 +653789,137,77.9 +653790,135.1,77.529 +653791,133.14,77.173 +653792,131.11,76.834 +653793,135.65,77.928 +653794,133.77,77.524 +653795,131.83,77.134 +653796,129.81,76.76 +653797,134.3,77.955 +653798,132.44,77.518 +653799,130.51,77.094 +653800,128.52,76.687 +653801,132.94,77.982 +653802,131.11,77.512 +653803,129.2,77.055 +653804,127.22,76.614 +653805,131.59,78.009 +653806,129.77,77.506 +653807,127.89,77.016 +653808,125.93,76.541 +653809,130.24,78.035 +653810,128.44,77.5 +653811,126.58,76.977 +653812,124.65,76.469 +653813,128.88,78.061 +653814,127.1,77.494 +653815,125.27,76.938 +653816,123.36,76.397 +653817,127.52,78.086 +653818,125.77,77.487 +653819,123.96,76.9 +653820,122.07,76.325 +653821,126.16,78.111 +653822,124.43,77.481 +653823,122.64,76.861 +653824,120.79,76.255 +653825,124.8,78.136 +653826,123.1,77.474 +653827,121.33,76.823 +653828,119.5,76.184 +653829,123.44,78.16 +653830,121.76,77.467 +653831,120.03,76.785 +653832,118.22,76.114 +653833,122.08,78.183 +653834,120.43,77.46 +653835,118.72,76.747 +653836,116.94,76.045 +653837,120.71,78.205 +653838,119.09,77.453 +653839,117.41,76.709 +653840,115.66,75.976 +653841,119.35,78.228 +653842,117.75,77.446 +653843,116.1,76.672 +653844,114.39,75.908 +653845,117.98,78.249 +653846,116.41,77.438 +653847,114.79,76.634 +653848,113.11,75.841 +653849,116.61,78.27 +653850,115.08,77.43 +653851,113.49,76.597 +653852,111.83,75.774 +653853,115.24,78.29 +653854,113.74,77.422 +653855,112.18,76.56 +653856,110.56,75.708 +653857,113.87,78.309 +653858,112.4,77.414 +653859,110.87,76.524 +653860,109.29,75.642 +653861,112.5,78.328 +653862,111.06,77.405 +653863,109.57,76.487 +653864,108.02,75.578 +653865,111.12,78.346 +653866,109.72,77.396 +653867,108.26,76.451 +653868,106.75,75.514 +653869,109.75,78.363 +653870,108.38,77.387 +653871,106.96,76.416 +653872,105.48,75.451 +653873,108.38,78.38 +653874,107.04,77.378 +653875,105.65,76.38 +653876,104.21,75.389 +653877,107,78.395 +653878,105.7,77.368 +653879,104.35,76.345 +653880,102.94,75.327 +653881,105.62,78.41 +653882,104.36,77.358 +653883,103.04,76.31 +653884,101.68,75.266 +653885,104.24,78.424 +653886,103.02,77.348 +653887,101.74,76.275 +653888,100.41,75.207 +653889,102.86,78.437 +653890,101.68,77.338 +653891,100.44,76.241 +653892,99.151,75.148 +653893,101.48,78.45 +653894,100.33,77.327 +653895,99.136,76.207 +653896,97.889,75.09 +653897,100.1,78.461 +653898,98.991,77.316 +653899,97.833,76.173 +653900,96.627,75.033 +653901,98.72,78.471 +653902,97.648,77.305 +653903,96.531,76.139 +653904,95.367,74.977 +653905,97.337,78.481 +653906,96.306,77.293 +653907,95.23,76.106 +653908,94.107,74.922 +653909,95.953,78.49 +653910,94.962,77.281 +653911,93.928,76.073 +653912,92.848,74.868 +653913,94.569,78.497 +653914,93.619,77.269 +653915,92.627,76.041 +653916,91.59,74.815 +653917,93.183,78.504 +653918,92.276,77.256 +653919,91.326,76.009 +653920,90.333,74.763 +653921,91.797,78.509 +653922,90.932,77.244 +653923,90.026,75.977 +653924,89.077,74.712 +653925,90.41,78.514 +653926,89.588,77.23 +653927,88.725,75.946 +653928,87.821,74.662 +653929,89.022,78.518 +653930,88.244,77.217 +653931,87.425,75.915 +653932,86.566,74.613 +653933,87.634,78.52 +653934,86.899,77.203 +653935,86.125,75.884 +653936,85.312,74.565 +653937,86.245,78.522 +653938,85.554,77.189 +653939,84.826,75.854 +653940,84.058,74.518 +653941,84.855,78.522 +653942,84.21,77.174 +653943,83.527,75.824 +653944,82.805,74.473 +653945,83.465,78.522 +653946,82.865,77.159 +653947,82.227,75.794 +653948,81.552,74.428 +653949,82.074,78.52 +653950,81.52,77.144 +653951,80.928,75.765 +653952,80.3,74.385 +653953,80.683,78.518 +653954,80.174,77.128 +653955,79.63,75.736 +653956,79.048,74.343 +653957,79.291,78.514 +653958,78.829,77.112 +653959,78.331,75.707 +653960,77.797,74.302 +653961,77.899,78.509 +653962,77.483,77.095 +653963,77.033,75.679 +653964,76.546,74.262 +653965,76.506,78.503 +653966,76.138,77.079 +653967,75.734,75.652 +653968,75.296,74.223 +653969,75.114,78.496 +653970,74.792,77.062 +653971,74.436,75.624 +653972,74.046,74.186 +653973,73.72,78.487 +653974,73.446,77.044 +653975,73.138,75.597 +653976,72.796,74.149 +653977,72.327,78.478 +653978,72.1,77.026 +653979,71.84,75.571 +653980,71.546,74.114 +653981,70.933,78.467 +653982,70.754,77.008 +653983,70.542,75.545 +653984,70.297,74.08 +653985,69.539,78.456 +653986,69.408,76.989 +653987,69.245,75.519 +653988,69.048,74.048 +653989,68.144,78.443 +653990,68.062,76.97 +653991,67.947,75.494 +653992,67.799,74.016 +653993,66.75,78.429 +653994,66.716,76.95 +653995,66.649,75.469 +653996,66.55,73.986 +653997,65.355,78.413 +653998,65.37,76.93 +653999,65.352,75.444 +654000,65.301,73.957 +654001,63.961,78.397 +654002,64.024,76.91 +654003,64.054,75.42 +654004,64.052,73.929 +654005,62.566,78.379 +654006,62.678,76.89 +654007,62.757,75.397 +654008,62.804,73.902 +654009,61.171,78.361 +654010,61.331,76.869 +654011,61.459,75.373 +654012,61.555,73.877 +654013,59.776,78.341 +654014,59.985,76.847 +654015,60.162,75.351 +654016,60.306,73.853 +654017,58.382,78.32 +654018,58.639,76.825 +654019,58.864,75.328 +654020,59.057,73.83 +654021,56.987,78.297 +654022,57.293,76.803 +654023,57.567,75.306 +654024,57.808,73.808 +654025,55.593,78.274 +654026,55.948,76.78 +654027,56.269,75.285 +654028,56.558,73.788 +654029,54.198,78.249 +654030,54.602,76.757 +654031,54.971,75.263 +654032,55.309,73.769 +654033,52.804,78.224 +654034,53.256,76.734 +654035,53.674,75.243 +654036,54.059,73.751 +654037,51.411,78.197 +654038,51.911,76.71 +654039,52.376,75.222 +654040,52.808,73.734 +654041,50.017,78.169 +654042,50.565,76.686 +654043,51.078,75.202 +654044,51.558,73.718 +654045,48.624,78.139 +654046,49.22,76.661 +654047,49.78,75.183 +654048,50.307,73.704 +654049,47.231,78.109 +654050,47.875,76.636 +654051,48.482,75.163 +654052,49.056,73.691 +654053,45.838,78.077 +654054,46.529,76.611 +654055,47.184,75.145 +654056,47.804,73.679 +654057,44.446,78.044 +654058,45.185,76.585 +654059,45.885,75.126 +654060,46.552,73.668 +654061,43.055,78.01 +654062,43.84,76.559 +654063,44.587,75.108 +654064,45.299,73.659 +654065,41.664,77.975 +654066,42.495,76.533 +654067,43.288,75.091 +654068,44.045,73.651 +654069,40.273,77.939 +654070,41.151,76.506 +654071,41.989,75.074 +654072,42.791,73.644 +654073,38.883,77.902 +654074,39.807,76.478 +654075,40.69,75.057 +654076,41.537,73.638 +654077,37.494,77.863 +654078,38.463,76.451 +654079,39.391,75.04 +654080,40.282,73.633 +654081,36.105,77.824 +654082,37.12,76.423 +654083,38.092,75.024 +654084,39.026,73.629 +654085,34.717,77.783 +654086,35.776,76.394 +654087,36.792,75.009 +654088,37.769,73.627 +654089,33.33,77.741 +654090,34.433,76.366 +654091,35.492,74.993 +654092,36.512,73.625 +654093,31.943,77.698 +654094,33.09,76.337 +654095,34.192,74.979 +654096,35.254,73.625 +654097,30.557,77.654 +654098,31.748,76.307 +654099,32.892,74.964 +654100,33.995,73.626 +654101,29.172,77.609 +654102,30.406,76.277 +654103,31.591,74.95 +654104,32.735,73.628 +654105,27.788,77.563 +654106,29.064,76.247 +654107,30.29,74.936 +654108,31.474,73.631 +654109,26.405,77.516 +654110,27.722,76.217 +654111,28.989,74.923 +654112,30.212,73.635 +654113,25.023,77.468 +654114,26.381,76.186 +654115,27.688,74.91 +654116,28.95,73.64 +654117,23.641,77.419 +654118,25.04,76.155 +654119,26.386,74.897 +654120,27.686,73.646 +654121,22.261,77.368 +654122,23.699,76.123 +654123,25.084,74.884 +654124,26.422,73.653 +654125,20.882,77.317 +654126,22.359,76.091 +654127,23.781,74.872 +654128,25.156,73.661 +654129,19.504,77.265 +654130,21.019,76.059 +654131,22.479,74.861 +654132,23.89,73.67 +654133,18.126,77.212 +654134,19.68,76.027 +654135,21.176,74.849 +654136,22.622,73.68 +654137,16.75,77.158 +654138,18.34,75.994 +654139,19.872,74.838 +654140,21.353,73.691 +654141,15.375,77.103 +654142,17.002,75.961 +654143,18.568,74.827 +654144,20.083,73.703 +654145,14.002,77.047 +654146,15.663,75.927 +654147,17.264,74.817 +654148,18.812,73.716 +654149,12.629,76.991 +654150,14.326,75.894 +654151,15.96,74.807 +654152,17.54,73.73 +654153,11.258,76.933 +654154,12.988,75.86 +654155,14.655,74.797 +654156,16.266,73.744 +654157,9.8877,76.874 +654158,11.651,75.825 +654159,13.349,74.787 +654160,14.991,73.76 +654161,8.519,76.815 +654162,10.315,75.791 +654163,12.044,74.778 +654164,13.716,73.776 +654165,7.1516,76.755 +654166,8.9784,75.756 +654167,10.737,74.769 +654168,12.438,73.793 +654169,5.7855,76.694 +654170,7.6428,75.721 +654171,9.4309,74.76 +654172,11.16,73.811 +654173,4.4208,76.633 +654174,6.3076,75.686 +654175,8.1239,74.752 +654176,9.8798,73.83 +654177,3.0574,76.57 +654178,4.9728,75.65 +654179,6.8165,74.743 +654180,8.5986,73.849 +654181,1.6955,76.507 +654182,3.6386,75.614 +654183,5.5086,74.735 +654184,7.3161,73.869 +654185,0.3351,76.443 +654186,2.3049,75.578 +654187,4.2003,74.728 +654188,6.0321,73.89 +654189,358.98,76.378 +654190,0.9716,75.542 +654191,2.8916,74.72 +654192,4.7468,73.911 +654193,357.62,76.313 +654194,359.64,75.506 +654195,1.5823,74.713 +654196,3.46,73.933 +654197,356.26,76.247 +654198,358.31,75.469 +654199,0.27265,74.706 +654200,2.1718,73.956 +654201,354.91,76.181 +654202,356.97,75.432 +654203,358.96,74.699 +654204,0.88222,73.979 +654205,353.56,76.114 +654206,355.64,75.395 +654207,357.65,74.692 +654208,359.59,74.003 +654209,352.2,76.046 +654210,354.31,75.358 +654211,356.34,74.685 +654212,358.3,74.027 +654213,350.85,75.978 +654214,352.98,75.321 +654215,355.03,74.679 +654216,357,74.052 +654217,349.51,75.909 +654218,351.65,75.283 +654219,353.72,74.673 +654220,355.71,74.078 +654221,348.16,75.84 +654222,350.32,75.245 +654223,352.4,74.667 +654224,354.41,74.104 +654225,346.81,75.77 +654226,349,75.207 +654227,351.09,74.661 +654228,353.11,74.13 +654229,345.47,75.7 +654230,347.67,75.169 +654231,349.78,74.655 +654232,351.81,74.157 +654233,344.13,75.63 +654234,346.34,75.131 +654235,348.46,74.65 +654236,350.51,74.184 +654237,342.79,75.559 +654238,345.01,75.093 +654239,347.15,74.644 +654240,349.21,74.211 +654241,341.45,75.487 +654242,343.69,75.054 +654243,345.83,74.639 +654244,347.9,74.239 +654245,340.12,75.416 +654246,342.36,75.016 +654247,344.52,74.634 +654248,346.6,74.267 +654249,338.78,75.344 +654250,341.04,74.977 +654251,343.2,74.629 +654252,345.29,74.296 +654253,337.45,75.271 +654254,339.71,74.939 +654255,341.89,74.624 +654256,343.98,74.324 +654257,336.12,75.199 +654258,338.39,74.9 +654259,340.57,74.619 +654260,342.67,74.353 +654261,334.79,75.126 +654262,337.06,74.861 +654263,339.25,74.614 +654264,341.36,74.382 +654265,333.46,75.053 +654266,335.74,74.822 +654267,337.93,74.609 +654268,340.04,74.411 +654269,332.13,74.98 +654270,334.42,74.783 +654271,336.61,74.604 +654272,338.73,74.441 +654273,330.81,74.906 +654274,333.1,74.744 +654275,335.29,74.6 +654276,337.41,74.47 +654277,329.49,74.833 +654278,331.78,74.705 +654279,333.97,74.595 +654280,336.09,74.5 +654281,328.16,74.759 +654282,330.46,74.666 +654283,332.65,74.59 +654284,334.77,74.53 +654285,326.85,74.686 +654286,329.14,74.627 +654287,331.33,74.586 +654288,333.45,74.559 +654289,325.53,74.612 +654290,327.82,74.588 +654291,330.01,74.581 +654292,332.12,74.589 +654293,324.21,74.538 +654294,326.5,74.549 +654295,328.69,74.577 +654296,330.8,74.619 +654297,322.9,74.464 +654298,325.18,74.51 +654299,327.37,74.572 +654300,329.47,74.648 +654301,321.59,74.391 +654302,323.86,74.471 +654303,326.04,74.567 +654304,328.14,74.678 +654305,320.28,74.317 +654306,322.55,74.432 +654307,324.72,74.563 +654308,326.81,74.707 +654309,318.97,74.244 +654310,321.23,74.393 +654311,323.4,74.558 +654312,325.48,74.737 +654313,317.66,74.17 +654314,319.91,74.354 +654315,322.07,74.553 +654316,324.15,74.766 +654317,316.36,74.097 +654318,318.6,74.315 +654319,320.75,74.548 +654320,322.81,74.795 +654321,315.05,74.024 +654322,317.28,74.276 +654323,319.42,74.544 +654324,321.47,74.824 +654325,313.75,73.951 +654326,315.97,74.237 +654327,318.09,74.539 +654328,320.14,74.852 +654329,312.45,73.878 +654330,314.66,74.199 +654331,316.77,74.534 +654332,318.8,74.881 +654333,311.15,73.806 +654334,313.34,74.16 +654335,315.44,74.529 +654336,317.45,74.909 +654337,309.86,73.734 +654338,312.03,74.122 +654339,314.11,74.523 +654340,316.11,74.936 +654341,308.56,73.662 +654342,310.72,74.084 +654343,312.78,74.518 +654344,314.77,74.964 +654345,307.27,73.591 +654346,309.41,74.045 +654347,311.45,74.513 +654348,313.42,74.991 +654349,305.98,73.52 +654350,308.1,74.007 +654351,310.13,74.507 +654352,312.07,75.017 +654353,304.69,73.449 +654354,306.79,73.969 +654355,308.8,74.501 +654356,310.73,75.043 +654357,303.4,73.379 +654358,305.48,73.931 +654359,307.47,74.496 +654360,309.37,75.069 +654361,302.11,73.309 +654362,304.17,73.894 +654363,306.13,74.49 +654364,308.02,75.094 +654365,300.83,73.24 +654366,302.86,73.856 +654367,304.8,74.483 +654368,306.67,75.119 +654369,299.54,73.171 +654370,301.55,73.819 +654371,303.47,74.477 +654372,305.31,75.143 +654373,298.26,73.103 +654374,300.24,73.782 +654375,302.14,74.471 +654376,303.96,75.167 +654377,296.98,73.035 +654378,298.94,73.745 +654379,300.81,74.464 +654380,302.6,75.19 +654381,295.7,72.968 +654382,297.63,73.708 +654383,299.47,74.457 +654384,301.24,75.213 +654385,294.43,72.902 +654386,296.32,73.672 +654387,298.14,74.45 +654388,299.88,75.235 +654389,293.15,72.836 +654390,295.02,73.635 +654391,296.81,74.443 +654392,298.52,75.256 +654393,291.87,72.771 +654394,293.71,73.599 +654395,295.47,74.435 +654396,297.16,75.277 +654397,290.6,72.706 +654398,292.41,73.564 +654399,294.14,74.428 +654400,295.79,75.296 +654401,289.33,72.643 +654402,291.1,73.528 +654403,292.8,74.42 +654404,294.43,75.316 +654405,288.06,72.579 +654406,289.8,73.493 +654407,291.47,74.412 +654408,293.06,75.334 +654409,286.79,72.517 +654410,288.5,73.457 +654411,290.13,74.403 +654412,291.69,75.352 +654413,285.52,72.456 +654414,287.19,73.423 +654415,288.79,74.394 +654416,290.32,75.369 +654417,284.26,72.395 +654418,285.89,73.388 +654419,287.46,74.385 +654420,288.95,75.385 +654421,282.99,72.335 +654422,284.59,73.354 +654423,286.12,74.376 +654424,287.58,75.401 +654425,281.73,72.276 +654426,283.29,73.32 +654427,284.78,74.367 +654428,286.21,75.415 +654429,280.47,72.218 +654430,281.99,73.286 +654431,283.44,74.357 +654432,284.83,75.429 +654433,279.2,72.16 +654434,280.69,73.252 +654435,282.1,74.347 +654436,283.46,75.442 +654437,277.94,72.104 +654438,279.39,73.219 +654439,280.77,74.337 +654440,282.08,75.454 +654441,276.68,72.048 +654442,278.09,73.186 +654443,279.43,74.326 +654444,280.71,75.465 +654445,275.43,71.994 +654446,276.79,73.154 +654447,278.09,74.315 +654448,279.33,75.476 +654449,274.17,71.94 +654450,275.49,73.122 +654451,276.75,74.304 +654452,277.95,75.485 +654453,272.91,71.887 +654454,274.19,73.09 +654455,275.41,74.292 +654456,276.57,75.493 +654457,271.66,71.835 +654458,272.89,73.058 +654459,274.07,74.28 +654460,275.19,75.501 +654461,270.4,71.785 +654462,271.59,73.027 +654463,272.73,74.268 +654464,273.8,75.507 +654465,269.15,71.735 +654466,270.3,72.996 +654467,271.38,74.256 +654468,272.42,75.513 +654469,267.9,71.686 +654470,269,72.965 +654471,270.04,74.243 +654472,271.04,75.517 +654473,266.65,71.639 +654474,267.7,72.935 +654475,268.7,74.23 +654476,269.65,75.52 +654477,265.39,71.592 +654478,266.4,72.905 +654479,267.36,74.216 +654480,268.27,75.523 +654481,264.14,71.547 +654482,265.11,72.876 +654483,266.02,74.202 +654484,266.88,75.524 +654485,262.9,71.503 +654486,263.81,72.847 +654487,264.68,74.188 +654488,265.49,75.524 +654489,261.65,71.459 +654490,262.51,72.818 +654491,263.33,74.173 +654492,264.11,75.524 +654493,260.4,71.417 +654494,261.22,72.789 +654495,261.99,74.158 +654496,262.72,75.522 +654497,259.15,71.376 +654498,259.92,72.761 +654499,260.65,74.143 +654500,261.33,75.519 +654501,257.9,71.336 +654502,258.63,72.734 +654503,259.3,74.127 +654504,259.94,75.515 +654505,256.66,71.298 +654506,257.33,72.707 +654507,257.96,74.111 +654508,258.55,75.51 +654509,255.41,71.26 +654510,256.04,72.68 +654511,256.62,74.095 +654512,257.16,75.503 +654513,254.17,71.224 +654514,254.74,72.653 +654515,255.27,74.078 +654516,255.77,75.496 +654517,252.92,71.189 +654518,253.45,72.627 +654519,253.93,74.061 +654520,254.38,75.488 +654521,251.68,71.155 +654522,252.15,72.601 +654523,252.59,74.043 +654524,252.98,75.478 +654525,250.43,71.122 +654526,250.86,72.576 +654527,251.24,74.025 +654528,251.59,75.467 +654529,249.19,71.09 +654530,249.56,72.551 +654531,249.9,74.007 +654532,250.2,75.455 +654533,247.95,71.06 +654534,248.27,72.526 +654535,248.56,73.988 +654536,248.81,75.442 +654537,246.7,71.031 +654538,246.98,72.502 +654539,247.21,73.969 +654540,247.41,75.428 +654541,245.46,71.003 +654542,245.68,72.479 +654543,245.87,73.949 +654544,246.02,75.413 +654545,244.22,70.976 +654546,244.39,72.455 +654547,244.52,73.929 +654548,244.62,75.396 +654549,242.97,70.95 +654550,243.09,72.432 +654551,243.18,73.909 +654552,243.23,75.378 +654553,241.73,70.926 +654554,241.8,72.41 +654555,241.83,73.888 +654556,241.84,75.359 +654557,240.49,70.903 +654558,240.51,72.388 +654559,240.49,73.867 +654560,240.44,75.339 +654561,239.24,70.881 +654562,239.21,72.366 +654563,239.15,73.846 +654564,239.05,75.318 +654565,238,70.86 +654566,237.92,72.345 +654567,237.8,73.824 +654568,237.65,75.296 +654569,236.76,70.841 +654570,236.62,72.324 +654571,236.46,73.801 +654572,236.26,75.272 +654573,235.52,70.822 +654574,235.33,72.303 +654575,235.11,73.779 +654576,234.86,75.247 +654577,234.27,70.805 +654578,234.04,72.283 +654579,233.77,73.756 +654580,233.47,75.221 +654581,233.03,70.79 +654582,232.74,72.263 +654583,232.42,73.732 +654584,232.08,75.194 +654585,231.78,70.775 +654586,231.45,72.244 +654587,231.08,73.708 +654588,230.68,75.166 +654589,230.54,70.761 +654590,230.15,72.225 +654591,229.74,73.684 +654592,229.29,75.137 +654593,229.3,70.749 +654594,228.86,72.207 +654595,228.39,73.659 +654596,227.89,75.106 +654597,228.05,70.738 +654598,227.57,72.188 +654599,227.05,73.634 +654600,226.5,75.074 +654601,226.81,70.728 +654602,226.27,72.171 +654603,225.71,73.609 +654604,225.11,75.042 +654605,225.56,70.72 +654606,224.98,72.153 +654607,224.36,73.583 +654608,223.71,75.008 +654609,224.31,70.712 +654610,223.68,72.136 +654611,223.02,73.557 +654612,222.32,74.972 +654613,223.07,70.706 +654614,222.39,72.12 +654615,221.68,73.53 +654616,220.93,74.936 +654617,221.82,70.701 +654618,221.09,72.104 +654619,220.33,73.503 +654620,219.54,74.899 +654621,220.57,70.697 +654622,219.8,72.088 +654623,218.99,73.476 +654624,218.15,74.86 +654625,219.32,70.694 +654626,218.5,72.072 +654627,217.65,73.448 +654628,216.76,74.821 +654629,218.07,70.692 +654630,217.21,72.057 +654631,216.3,73.42 +654632,215.37,74.78 +654633,216.82,70.692 +654634,215.91,72.043 +654635,214.96,73.392 +654636,213.98,74.738 +654637,215.57,70.692 +654638,214.61,72.028 +654639,213.62,73.363 +654640,212.59,74.695 +654641,214.32,70.694 +654642,213.32,72.014 +654643,212.28,73.334 +654644,211.2,74.651 +654645,213.07,70.696 +654646,212.02,72.001 +654647,210.94,73.304 +654648,209.81,74.606 +654649,211.82,70.7 +654650,210.73,71.988 +654651,209.6,73.275 +654652,208.43,74.56 +654653,210.56,70.705 +654654,209.43,71.975 +654655,208.26,73.244 +654656,207.04,74.513 +654657,209.31,70.71 +654658,208.13,71.962 +654659,206.91,73.214 +654660,205.65,74.465 +654661,208.05,70.717 +654662,206.83,71.95 +654663,205.57,73.183 +654664,204.27,74.416 +654665,206.8,70.725 +654666,205.54,71.938 +654667,204.23,73.152 +654668,202.89,74.366 +654669,205.54,70.734 +654670,204.24,71.926 +654671,202.9,73.12 +654672,201.51,74.315 +654673,204.28,70.744 +654674,202.94,71.915 +654675,201.56,73.088 +654676,200.12,74.263 +654677,203.02,70.754 +654678,201.64,71.904 +654679,200.22,73.056 +654680,198.74,74.21 +654681,201.76,70.766 +654682,200.34,71.894 +654683,198.88,73.024 +654684,197.36,74.156 +654685,200.5,70.779 +654686,199.04,71.883 +654687,197.54,72.991 +654688,195.99,74.101 +654689,199.24,70.792 +654690,197.74,71.873 +654691,196.2,72.958 +654692,194.61,74.045 +654693,197.97,70.806 +654694,196.44,71.864 +654695,194.87,72.925 +654696,193.23,73.989 +654697,196.71,70.822 +654698,195.14,71.854 +654699,193.53,72.891 +654700,191.86,73.931 +654701,195.44,70.838 +654702,193.84,71.845 +654703,192.19,72.857 +654704,190.48,73.873 +654705,194.17,70.854 +654706,192.54,71.836 +654707,190.86,72.823 +654708,189.11,73.814 +654709,192.9,70.872 +654710,191.24,71.828 +654711,189.52,72.788 +654712,187.74,73.754 +654713,191.63,70.89 +654714,189.94,71.819 +654715,188.18,72.754 +654716,186.37,73.693 +654717,190.36,70.91 +654718,188.63,71.811 +654719,186.85,72.719 +654720,185,73.632 +654721,189.09,70.929 +654722,187.33,71.803 +654723,185.52,72.683 +654724,183.63,73.57 +654725,187.81,70.95 +654726,186.03,71.796 +654727,184.18,72.648 +654728,182.27,73.507 +654729,186.54,70.971 +654730,184.72,71.788 +654731,182.85,72.612 +654732,180.9,73.443 +654733,185.26,70.993 +654734,183.42,71.781 +654735,181.52,72.576 +654736,179.54,73.379 +654737,183.98,71.016 +654738,182.11,71.774 +654739,180.18,72.54 +654740,178.18,73.314 +654741,182.7,71.039 +654742,180.81,71.767 +654743,178.85,72.504 +654744,176.82,73.248 +654745,181.42,71.063 +654746,179.5,71.761 +654747,177.52,72.467 +654748,175.46,73.182 +654749,180.14,71.087 +654750,178.2,71.754 +654751,176.19,72.431 +654752,174.1,73.115 +654753,178.85,71.112 +654754,176.89,71.748 +654755,174.86,72.394 +654756,172.75,73.048 +654757,177.57,71.137 +654758,175.58,71.742 +654759,173.53,72.357 +654760,171.39,72.98 +654761,176.28,71.163 +654762,174.28,71.736 +654763,172.2,72.319 +654764,170.04,72.912 +654765,174.99,71.189 +654766,172.97,71.731 +654767,170.87,72.282 +654768,168.69,72.843 +654769,173.7,71.216 +654770,171.66,71.725 +654771,169.54,72.244 +654772,167.34,72.773 +654773,172.41,71.243 +654774,170.35,71.72 +654775,168.21,72.207 +654776,165.99,72.703 +654777,171.11,71.27 +654778,169.04,71.715 +654779,166.89,72.169 +654780,164.65,72.633 +654781,169.82,71.298 +654782,167.73,71.709 +654783,165.56,72.131 +654784,163.3,72.563 +654785,168.52,71.326 +654786,166.42,71.704 +654787,164.24,72.093 +654788,161.96,72.492 +654789,167.22,71.355 +654790,165.11,71.699 +654791,162.91,72.054 +654792,160.62,72.42 +654793,165.92,71.383 +654794,163.79,71.695 +654795,161.58,72.016 +654796,159.28,72.349 +654797,164.62,71.412 +654798,162.48,71.69 +654799,160.26,71.978 +654800,157.94,72.277 +654801,163.32,71.441 +654802,161.17,71.685 +654803,158.94,71.939 +654804,156.61,72.205 +654805,162.01,71.471 +654806,159.86,71.68 +654807,157.61,71.901 +654808,155.27,72.132 +654809,160.71,71.5 +654810,158.54,71.676 +654811,156.29,71.862 +654812,153.94,72.06 +654813,159.4,71.53 +654814,157.23,71.671 +654815,154.97,71.823 +654816,152.61,71.987 +654817,158.09,71.56 +654818,155.91,71.667 +654819,153.65,71.785 +654820,151.28,71.914 +654821,156.78,71.589 +654822,154.6,71.662 +654823,152.33,71.746 +654824,149.96,71.841 +654825,155.46,71.619 +654826,153.28,71.658 +654827,151.01,71.707 +654828,148.63,71.768 +654829,154.15,71.649 +654830,151.96,71.654 +654831,149.69,71.668 +654832,147.31,71.695 +654833,152.83,71.679 +654834,150.65,71.649 +654835,148.37,71.63 +654836,145.99,71.621 +654837,151.51,71.709 +654838,149.33,71.645 +654839,147.05,71.591 +654840,144.67,71.548 +654841,150.19,71.739 +654842,148.01,71.64 +654843,145.73,71.552 +654844,143.35,71.475 +654845,148.87,71.768 +654846,146.69,71.636 +654847,144.42,71.513 +654848,142.03,71.402 +654849,147.55,71.798 +654850,145.37,71.631 +654851,143.1,71.474 +654852,140.72,71.329 +654853,146.22,71.827 +654854,144.05,71.627 +654855,141.78,71.436 +654856,139.41,71.256 +654857,144.9,71.856 +654858,142.73,71.622 +654859,140.47,71.397 +654860,138.1,71.183 +654861,143.57,71.885 +654862,141.41,71.618 +654863,139.15,71.358 +654864,136.79,71.11 +654865,142.24,71.914 +654866,140.09,71.613 +654867,137.84,71.32 +654868,135.48,71.037 +654869,140.91,71.943 +654870,138.77,71.608 +654871,136.53,71.281 +654872,134.18,70.965 +654873,139.58,71.971 +654874,137.44,71.603 +654875,135.21,71.243 +654876,132.87,70.893 +654877,138.24,71.999 +654878,136.12,71.598 +654879,133.9,71.205 +654880,131.57,70.821 +654881,136.9,72.027 +654882,134.8,71.593 +654883,132.59,71.167 +654884,130.27,70.75 +654885,135.57,72.054 +654886,133.47,71.588 +654887,131.28,71.129 +654888,128.98,70.678 +654889,134.23,72.081 +654890,132.15,71.582 +654891,129.97,71.091 +654892,127.68,70.608 +654893,132.89,72.107 +654894,130.82,71.577 +654895,128.66,71.053 +654896,126.39,70.537 +654897,131.54,72.133 +654898,129.49,71.571 +654899,127.35,71.015 +654900,125.09,70.467 +654901,130.2,72.159 +654902,128.17,71.565 +654903,126.04,70.977 +654904,123.8,70.397 +654905,128.85,72.184 +654906,126.84,71.559 +654907,124.73,70.94 +654908,122.52,70.328 +654909,127.51,72.209 +654910,125.51,71.553 +654911,123.42,70.903 +654912,121.23,70.259 +654913,126.16,72.233 +654914,124.18,71.547 +654915,122.12,70.866 +654916,119.94,70.191 +654917,124.81,72.256 +654918,122.86,71.54 +654919,120.81,70.829 +654920,118.66,70.123 +654921,123.46,72.279 +654922,121.53,71.534 +654923,119.5,70.792 +654924,117.38,70.056 +654925,122.1,72.301 +654926,120.2,71.527 +654927,118.2,70.756 +654928,116.1,69.99 +654929,120.75,72.323 +654930,118.87,71.52 +654931,116.89,70.719 +654932,114.82,69.924 +654933,119.39,72.344 +654934,117.54,71.513 +654935,115.59,70.683 +654936,113.54,69.859 +654937,118.03,72.365 +654938,116.21,71.505 +654939,114.29,70.647 +654940,112.27,69.794 +654941,116.68,72.384 +654942,114.87,71.497 +654943,112.98,70.612 +654944,110.99,69.73 +654945,115.32,72.403 +654946,113.54,71.489 +654947,111.68,70.576 +654948,109.72,69.667 +654949,113.95,72.421 +654950,112.21,71.481 +654951,110.38,70.541 +654952,108.45,69.604 +654953,112.59,72.439 +654954,110.88,71.472 +654955,109.08,70.506 +654956,107.18,69.542 +654957,111.23,72.455 +654958,109.54,71.464 +654959,107.77,70.472 +654960,105.91,69.481 +654961,109.86,72.471 +654962,108.21,71.455 +654963,106.47,70.437 +654964,104.65,69.421 +654965,108.49,72.486 +654966,106.87,71.445 +654967,105.17,70.403 +654968,103.38,69.362 +654969,107.12,72.5 +654970,105.54,71.436 +654971,103.87,70.369 +654972,102.12,69.303 +654973,105.76,72.514 +654974,104.2,71.426 +654975,102.57,70.336 +654976,100.85,69.245 +654977,104.38,72.526 +654978,102.87,71.416 +654979,101.27,70.302 +654980,99.593,69.189 +654981,103.01,72.538 +654982,101.53,71.405 +654983,99.976,70.269 +654984,98.333,69.133 +654985,101.64,72.548 +654986,100.2,71.394 +654987,98.678,70.237 +654988,97.075,69.078 +654989,100.27,72.558 +654990,98.86,71.383 +654991,97.38,70.204 +654992,95.818,69.024 +654993,98.89,72.567 +654994,97.523,71.372 +654995,96.083,70.172 +654996,94.562,68.97 +654997,97.514,72.575 +654998,96.186,71.36 +654999,94.786,70.141 +655000,93.307,68.918 +655001,96.137,72.582 +655002,94.848,71.348 +655003,93.489,70.109 +655004,92.053,68.867 +655005,94.758,72.587 +655006,93.51,71.336 +655007,92.193,70.078 +655008,90.801,68.817 +655009,93.379,72.592 +655010,92.172,71.323 +655011,90.897,70.047 +655012,89.549,68.768 +655013,91.998,72.596 +655014,90.833,71.31 +655015,89.602,70.017 +655016,88.299,68.72 +655017,90.617,72.599 +655018,89.494,71.296 +655019,88.307,69.987 +655020,87.049,68.673 +655021,89.235,72.601 +655022,88.155,71.282 +655023,87.012,69.957 +655024,85.801,68.627 +655025,87.851,72.601 +655026,86.815,71.268 +655027,85.717,69.928 +655028,84.553,68.582 +655029,86.467,72.601 +655030,85.475,71.254 +655031,84.423,69.899 +655032,83.306,68.538 +655033,85.083,72.599 +655034,84.135,71.239 +655035,83.129,69.87 +655036,82.06,68.495 +655037,83.697,72.597 +655038,82.795,71.224 +655039,81.836,69.842 +655040,80.815,68.454 +655041,82.31,72.593 +655042,81.454,71.208 +655043,80.542,69.814 +655044,79.571,68.413 +655045,80.923,72.588 +655046,80.113,71.192 +655047,79.249,69.787 +655048,78.327,68.374 +655049,79.536,72.583 +655050,78.772,71.176 +655051,77.956,69.759 +655052,77.084,68.336 +655053,78.147,72.575 +655054,77.431,71.159 +655055,76.664,69.733 +655056,75.842,68.299 +655057,76.758,72.567 +655058,76.089,71.142 +655059,75.371,69.706 +655060,74.6,68.263 +655061,75.368,72.558 +655062,74.748,71.124 +655063,74.079,69.68 +655064,73.359,68.228 +655065,73.978,72.548 +655066,73.406,71.106 +655067,72.787,69.655 +655068,72.119,68.195 +655069,72.587,72.536 +655070,72.064,71.088 +655071,71.495,69.63 +655072,70.879,68.163 +655073,71.196,72.523 +655074,70.722,71.069 +655075,70.204,69.605 +655076,69.639,68.132 +655077,69.804,72.509 +655078,69.38,71.05 +655079,68.912,69.58 +655080,68.4,68.102 +655081,68.412,72.494 +655082,68.037,71.03 +655083,67.621,69.556 +655084,67.161,68.073 +655085,67.019,72.478 +655086,66.695,71.011 +655087,66.33,69.533 +655088,65.922,68.046 +655089,65.626,72.46 +655090,65.352,70.99 +655091,65.039,69.509 +655092,64.684,68.019 +655093,64.233,72.442 +655094,64.009,70.969 +655095,63.748,69.487 +655096,63.446,67.994 +655097,62.84,72.422 +655098,62.667,70.948 +655099,62.457,69.464 +655100,62.208,67.97 +655101,61.446,72.401 +655102,61.324,70.927 +655103,61.166,69.442 +655104,60.97,67.948 +655105,60.052,72.378 +655106,59.981,70.905 +655107,59.875,69.42 +655108,59.732,67.926 +655109,58.658,72.355 +655110,58.638,70.883 +655111,58.584,69.399 +655112,58.495,67.906 +655113,57.263,72.33 +655114,57.295,70.86 +655115,57.294,69.378 +655116,57.257,67.887 +655117,55.869,72.305 +655118,55.952,70.837 +655119,56.003,69.358 +655120,56.02,67.87 +655121,54.475,72.278 +655122,54.61,70.813 +655123,54.712,69.338 +655124,54.782,67.853 +655125,53.08,72.25 +655126,53.267,70.789 +655127,53.422,69.318 +655128,53.544,67.838 +655129,51.686,72.22 +655130,51.924,70.765 +655131,52.131,69.299 +655132,52.306,67.824 +655133,50.291,72.19 +655134,50.581,70.74 +655135,50.84,69.28 +655136,51.068,67.811 +655137,48.897,72.158 +655138,49.238,70.715 +655139,49.549,69.262 +655140,49.83,67.799 +655141,47.503,72.125 +655142,47.896,70.689 +655143,48.259,69.243 +655144,48.592,67.789 +655145,46.109,72.091 +655146,46.553,70.664 +655147,46.968,69.226 +655148,47.353,67.779 +655149,44.715,72.056 +655150,45.211,70.637 +655151,45.677,69.208 +655152,46.113,67.771 +655153,43.322,72.02 +655154,43.868,70.611 +655155,44.386,69.192 +655156,44.874,67.764 +655157,41.928,71.982 +655158,42.526,70.583 +655159,43.094,69.175 +655160,43.634,67.759 +655161,40.535,71.944 +655162,41.184,70.556 +655163,41.803,69.159 +655164,42.393,67.754 +655165,39.143,71.904 +655166,39.842,70.528 +655167,40.512,69.143 +655168,41.152,67.751 +655169,37.751,71.863 +655170,38.5,70.5 +655171,39.22,69.128 +655172,39.911,67.748 +655173,36.359,71.821 +655174,37.159,70.471 +655175,37.928,69.113 +655176,38.669,67.747 +655177,34.968,71.778 +655178,35.817,70.442 +655179,36.636,69.098 +655180,37.426,67.747 +655181,33.577,71.734 +655182,34.476,70.413 +655183,35.344,69.084 +655184,36.182,67.748 +655185,32.187,71.689 +655186,33.135,70.383 +655187,34.052,69.07 +655188,34.938,67.75 +655189,30.797,71.643 +655190,31.794,70.353 +655191,32.759,69.056 +655192,33.693,67.753 +655193,29.408,71.596 +655194,30.454,70.323 +655195,31.466,69.043 +655196,32.448,67.757 +655197,28.02,71.547 +655198,29.114,70.292 +655199,30.173,69.03 +655200,31.201,67.763 +655201,26.632,71.498 +655202,27.774,70.261 +655203,28.88,69.017 +655204,29.954,67.769 +655205,25.245,71.448 +655206,26.434,70.229 +655207,27.586,69.005 +655208,28.706,67.776 +655209,23.859,71.396 +655210,25.095,70.197 +655211,26.292,68.993 +655212,27.457,67.784 +655213,22.474,71.344 +655214,23.755,70.165 +655215,24.998,68.981 +655216,26.207,67.794 +655217,21.09,71.291 +655218,22.417,70.133 +655219,23.704,68.97 +655220,24.956,67.804 +655221,19.706,71.237 +655222,21.078,70.1 +655223,22.409,68.959 +655224,23.704,67.815 +655225,18.324,71.181 +655226,19.74,70.067 +655227,21.114,68.948 +655228,22.451,67.827 +655229,16.942,71.125 +655230,18.402,70.034 +655231,19.819,68.938 +655232,21.197,67.84 +655233,15.561,71.068 +655234,17.065,70 +655235,18.523,68.928 +655236,19.941,67.854 +655237,14.182,71.01 +655238,15.728,69.966 +655239,17.227,68.918 +655240,18.685,67.869 +655241,12.803,70.952 +655242,14.391,69.931 +655243,15.93,68.909 +655244,17.428,67.885 +655245,11.426,70.892 +655246,13.055,69.897 +655247,14.634,68.899 +655248,16.169,67.901 +655249,10.049,70.832 +655250,11.719,69.862 +655251,13.336,68.891 +655252,14.909,67.919 +655253,8.6741,70.77 +655254,10.383,69.827 +655255,12.039,68.882 +655256,13.648,67.937 +655257,7.3001,70.709 +655258,9.0481,69.791 +655259,10.741,68.873 +655260,12.386,67.955 +655261,5.9274,70.646 +655262,7.7134,69.756 +655263,9.4425,68.865 +655264,11.122,67.975 +655265,4.5559,70.582 +655266,6.3792,69.72 +655267,8.1437,68.857 +655268,9.8568,67.995 +655269,3.1857,70.518 +655270,5.0455,69.684 +655271,6.8444,68.849 +655272,8.5904,68.016 +655273,1.8168,70.453 +655274,3.7122,69.647 +655275,5.5447,68.842 +655276,7.3227,68.038 +655277,0.44929,70.388 +655278,2.3794,69.611 +655279,4.2446,68.835 +655280,6.0535,68.06 +655281,359.08,70.321 +655282,1.047,69.574 +655283,2.944,68.827 +655284,4.783,68.083 +655285,357.72,70.254 +655286,359.72,69.537 +655287,1.6429,68.821 +655288,3.511,68.107 +655289,356.36,70.187 +655290,358.38,69.499 +655291,0.34143,68.814 +655292,2.2376,68.131 +655293,354.99,70.119 +655294,357.05,69.462 +655295,359.04,68.807 +655296,0.96266,68.155 +655297,353.63,70.05 +655298,355.72,69.424 +655299,357.74,68.801 +655300,359.69,68.181 +655301,352.27,69.981 +655302,354.39,69.387 +655303,356.43,68.795 +655304,358.41,68.206 +655305,350.92,69.911 +655306,353.06,69.349 +655307,355.13,68.789 +655308,357.13,68.232 +655309,349.56,69.841 +655310,351.73,69.31 +655311,353.83,68.783 +655312,355.85,68.259 +655313,348.21,69.771 +655314,350.41,69.272 +655315,352.52,68.777 +655316,354.57,68.286 +655317,346.85,69.699 +655318,349.08,69.234 +655319,351.22,68.771 +655320,353.28,68.313 +655321,345.5,69.628 +655322,347.75,69.195 +655323,349.91,68.766 +655324,352,68.341 +655325,344.15,69.556 +655326,346.43,69.156 +655327,348.61,68.76 +655328,350.71,68.369 +655329,342.81,69.484 +655330,345.1,69.117 +655331,347.3,68.755 +655332,349.42,68.397 +655333,341.46,69.411 +655334,343.77,69.078 +655335,345.99,68.75 +655336,348.13,68.426 +655337,340.12,69.338 +655338,342.45,69.039 +655339,344.68,68.745 +655340,346.84,68.455 +655341,338.78,69.265 +655342,341.12,69 +655343,343.38,68.74 +655344,345.54,68.484 +655345,337.43,69.192 +655346,339.8,68.961 +655347,342.07,68.735 +655348,344.25,68.514 +655349,336.1,69.118 +655350,338.48,68.922 +655351,340.76,68.73 +655352,342.95,68.543 +655353,334.76,69.044 +655354,337.16,68.882 +655355,339.45,68.725 +655356,341.65,68.573 +655357,333.42,68.97 +655358,335.83,68.843 +655359,338.14,68.72 +655360,340.35,68.602 +655361,332.09,68.896 +655362,334.51,68.803 +655363,336.83,68.715 +655364,339.05,68.632 +655365,330.76,68.822 +655366,333.19,68.764 +655367,335.52,68.71 +655368,337.74,68.662 +655369,329.43,68.748 +655370,331.87,68.724 +655371,334.2,68.706 +655372,336.44,68.692 +655373,328.1,68.673 +655374,330.55,68.685 +655375,332.89,68.701 +655376,335.13,68.722 +655377,326.78,68.599 +655378,329.23,68.645 +655379,331.58,68.696 +655380,333.82,68.752 +655381,325.45,68.525 +655382,327.92,68.605 +655383,330.26,68.691 +655384,332.51,68.782 +655385,324.13,68.45 +655386,326.6,68.566 +655387,328.95,68.686 +655388,331.2,68.812 +655389,322.81,68.376 +655390,325.28,68.526 +655391,327.63,68.682 +655392,329.89,68.841 +655393,321.49,68.302 +655394,323.96,68.487 +655395,326.32,68.677 +655396,328.57,68.871 +655397,320.17,68.227 +655398,322.65,68.447 +655399,325,68.672 +655400,327.25,68.9 +655401,318.86,68.153 +655402,321.33,68.408 +655403,323.69,68.667 +655404,325.93,68.929 +655405,317.55,68.08 +655406,320.02,68.368 +655407,322.37,68.662 +655408,324.61,68.958 +655409,316.24,68.006 +655410,318.71,68.329 +655411,321.05,68.656 +655412,323.29,68.987 +655413,314.93,67.932 +655414,317.39,68.29 +655415,319.73,68.651 +655416,321.96,69.016 +655417,313.62,67.859 +655418,316.08,68.251 +655419,318.41,68.646 +655420,320.64,69.044 +655421,312.32,67.786 +655422,314.77,68.211 +655423,317.09,68.64 +655424,319.31,69.071 +655425,311.01,67.714 +655426,313.46,68.172 +655427,315.77,68.634 +655428,317.98,69.099 +655429,309.71,67.641 +655430,312.15,68.134 +655431,314.45,68.629 +655432,316.65,69.126 +655433,308.41,67.57 +655434,310.84,68.095 +655435,313.13,68.623 +655436,315.32,69.153 +655437,307.11,67.498 +655438,309.53,68.056 +655439,311.81,68.617 +655440,313.98,69.179 +655441,305.82,67.427 +655442,308.22,68.018 +655443,310.49,68.611 +655444,312.65,69.205 +655445,304.52,67.356 +655446,306.91,67.979 +655447,309.17,68.604 +655448,311.31,69.23 +655449,303.23,67.286 +655450,305.6,67.941 +655451,307.84,68.598 +655452,309.97,69.255 +655453,301.94,67.216 +655454,304.29,67.903 +655455,306.52,68.591 +655456,308.63,69.279 +655457,300.65,67.147 +655458,302.99,67.865 +655459,305.19,68.584 +655460,307.29,69.303 +655461,299.37,67.079 +655462,301.68,67.827 +655463,303.87,68.577 +655464,305.94,69.326 +655465,298.08,67.011 +655466,300.38,67.79 +655467,302.54,68.57 +655468,304.6,69.348 +655469,296.8,66.943 +655470,299.07,67.753 +655471,301.22,68.562 +655472,303.25,69.37 +655473,295.52,66.876 +655474,297.77,67.716 +655475,299.89,68.554 +655476,301.9,69.391 +655477,294.24,66.81 +655478,296.46,67.679 +655479,298.56,68.546 +655480,300.55,69.412 +655481,292.96,66.745 +655482,295.16,67.642 +655483,297.24,68.538 +655484,299.2,69.431 +655485,291.69,66.68 +655486,293.86,67.606 +655487,295.91,68.53 +655488,297.85,69.45 +655489,290.41,66.616 +655490,292.56,67.569 +655491,294.58,68.521 +655492,296.49,69.469 +655493,289.14,66.552 +655494,291.26,67.533 +655495,293.25,68.512 +655496,295.14,69.486 +655497,287.87,66.49 +655498,289.95,67.498 +655499,291.92,68.503 +655500,293.78,69.503 +655501,286.6,66.428 +655502,288.65,67.462 +655503,290.59,68.493 +655504,292.42,69.519 +655505,285.33,66.367 +655506,287.35,67.427 +655507,289.26,68.483 +655508,291.06,69.534 +655509,284.07,66.307 +655510,286.06,67.392 +655511,287.93,68.473 +655512,289.7,69.548 +655513,282.8,66.247 +655514,284.76,67.357 +655515,286.6,68.463 +655516,288.33,69.562 +655517,281.54,66.189 +655518,283.46,67.323 +655519,285.26,68.452 +655520,286.97,69.574 +655521,280.28,66.131 +655522,282.16,67.289 +655523,283.93,68.441 +655524,285.6,69.586 +655525,279.02,66.075 +655526,280.86,67.255 +655527,282.6,68.43 +655528,284.24,69.597 +655529,277.76,66.019 +655530,279.57,67.222 +655531,281.27,68.418 +655532,282.87,69.606 +655533,276.5,65.964 +655534,278.27,67.189 +655535,279.93,68.406 +655536,281.5,69.615 +655537,275.25,65.911 +655538,276.97,67.156 +655539,278.6,68.394 +655540,280.13,69.623 +655541,273.99,65.858 +655542,275.68,67.123 +655543,277.26,68.381 +655544,278.76,69.63 +655545,272.74,65.806 +655546,274.38,67.091 +655547,275.93,68.368 +655548,277.38,69.636 +655549,271.49,65.755 +655550,273.09,67.059 +655551,274.59,68.355 +655552,276.01,69.64 +655553,270.24,65.706 +655554,271.8,67.028 +655555,273.26,68.341 +655556,274.63,69.644 +655557,268.99,65.657 +655558,270.5,66.997 +655559,271.92,68.327 +655560,273.26,69.647 +655561,267.74,65.609 +655562,269.21,66.966 +655563,270.59,68.313 +655564,271.88,69.648 +655565,266.49,65.563 +655566,267.92,66.935 +655567,269.25,68.298 +655568,270.5,69.649 +655569,265.25,65.517 +655570,266.62,66.905 +655571,267.91,68.283 +655572,269.12,69.648 +655573,264,65.473 +655574,265.33,66.876 +655575,266.57,68.267 +655576,267.74,69.647 +655577,262.76,65.43 +655578,264.04,66.846 +655579,265.24,68.251 +655580,266.36,69.644 +655581,261.51,65.388 +655582,262.75,66.817 +655583,263.9,68.235 +655584,264.98,69.64 +655585,260.27,65.347 +655586,261.46,66.788 +655587,262.56,68.218 +655588,263.59,69.635 +655589,259.03,65.307 +655590,260.16,66.76 +655591,261.22,68.201 +655592,262.21,69.629 +655593,257.79,65.269 +655594,258.87,66.732 +655595,259.88,68.184 +655596,260.83,69.622 +655597,256.55,65.231 +655598,257.58,66.705 +655599,258.54,68.166 +655600,259.44,69.613 +655601,255.31,65.195 +655602,256.29,66.678 +655603,257.21,68.148 +655604,258.05,69.603 +655605,254.07,65.16 +655606,255,66.651 +655607,255.87,68.129 +655608,256.67,69.593 +655609,252.84,65.127 +655610,253.71,66.625 +655611,254.53,68.11 +655612,255.28,69.581 +655613,251.6,65.094 +655614,252.43,66.599 +655615,253.19,68.09 +655616,253.89,69.567 +655617,250.36,65.063 +655618,251.14,66.573 +655619,251.85,68.07 +655620,252.5,69.553 +655621,249.13,65.032 +655622,249.85,66.548 +655623,250.51,68.05 +655624,251.11,69.537 +655625,247.89,65.004 +655626,248.56,66.523 +655627,249.17,68.029 +655628,249.72,69.521 +655629,246.66,64.976 +655630,247.27,66.499 +655631,247.83,68.008 +655632,248.33,69.502 +655633,245.43,64.949 +655634,245.98,66.475 +655635,246.48,67.987 +655636,246.94,69.483 +655637,244.19,64.924 +655638,244.69,66.451 +655639,245.14,67.965 +655640,245.55,69.463 +655641,242.96,64.9 +655642,243.41,66.428 +655643,243.8,67.942 +655644,244.16,69.441 +655645,241.72,64.877 +655646,242.12,66.405 +655647,242.46,67.919 +655648,242.76,69.418 +655649,240.49,64.856 +655650,240.83,66.383 +655651,241.12,67.896 +655652,241.37,69.394 +655653,239.26,64.836 +655654,239.54,66.361 +655655,239.78,67.873 +655656,239.98,69.369 +655657,238.03,64.817 +655658,238.25,66.339 +655659,238.44,67.848 +655660,238.58,69.342 +655661,236.79,64.799 +655662,236.97,66.318 +655663,237.1,67.824 +655664,237.19,69.315 +655665,235.56,64.782 +655666,235.68,66.298 +655667,235.76,67.799 +655668,235.8,69.286 +655669,234.33,64.767 +655670,234.39,66.277 +655671,234.41,67.774 +655672,234.4,69.255 +655673,233.1,64.753 +655674,233.1,66.257 +655675,233.07,67.748 +655676,233.01,69.224 +655677,231.87,64.74 +655678,231.82,66.238 +655679,231.73,67.722 +655680,231.61,69.191 +655681,230.63,64.728 +655682,230.53,66.218 +655683,230.39,67.695 +655684,230.22,69.158 +655685,229.4,64.718 +655686,229.24,66.2 +655687,229.05,67.668 +655688,228.83,69.123 +655689,228.17,64.708 +655690,227.95,66.181 +655691,227.71,67.641 +655692,227.43,69.087 +655693,226.94,64.7 +655694,226.67,66.163 +655695,226.37,67.613 +655696,226.04,69.049 +655697,225.7,64.693 +655698,225.38,66.146 +655699,225.03,67.585 +655700,224.64,69.011 +655701,224.47,64.688 +655702,224.09,66.128 +655703,223.68,67.557 +655704,223.25,68.971 +655705,223.23,64.683 +655706,222.8,66.112 +655707,222.34,67.528 +655708,221.86,68.93 +655709,222,64.68 +655710,221.52,66.095 +655711,221,67.498 +655712,220.46,68.888 +655713,220.77,64.678 +655714,220.23,66.079 +655715,219.66,67.468 +655716,219.07,68.845 +655717,219.53,64.677 +655718,218.94,66.063 +655719,218.32,67.438 +655720,217.68,68.801 +655721,218.29,64.677 +655722,217.65,66.048 +655723,216.98,67.408 +655724,216.29,68.755 +655725,217.06,64.678 +655726,216.36,66.033 +655727,215.64,67.377 +655728,214.89,68.709 +655729,215.82,64.68 +655730,215.07,66.018 +655731,214.3,67.346 +655732,213.5,68.661 +655733,214.58,64.683 +655734,213.79,66.004 +655735,212.96,67.314 +655736,212.11,68.612 +655737,213.35,64.688 +655738,212.5,65.99 +655739,211.62,67.282 +655740,210.72,68.563 +655741,212.11,64.693 +655742,211.21,65.976 +655743,210.28,67.25 +655744,209.33,68.512 +655745,210.87,64.7 +655746,209.92,65.963 +655747,208.94,67.217 +655748,207.94,68.46 +655749,209.63,64.707 +655750,208.63,65.95 +655751,207.6,67.184 +655752,206.55,68.407 +655753,208.38,64.716 +655754,207.34,65.937 +655755,206.26,67.15 +655756,205.16,68.353 +655757,207.14,64.725 +655758,206.05,65.925 +655759,204.93,67.116 +655760,203.77,68.298 +655761,205.9,64.736 +655762,204.76,65.913 +655763,203.59,67.082 +655764,202.39,68.242 +655765,204.66,64.747 +655766,203.47,65.901 +655767,202.25,67.048 +655768,201,68.185 +655769,203.41,64.76 +655770,202.18,65.89 +655771,200.91,67.013 +655772,199.62,68.127 +655773,202.16,64.773 +655774,200.89,65.879 +655775,199.58,66.978 +655776,198.23,68.068 +655777,200.92,64.787 +655778,199.59,65.868 +655779,198.24,66.942 +655780,196.85,68.009 +655781,199.67,64.802 +655782,198.3,65.858 +655783,196.9,66.907 +655784,195.47,67.948 +655785,198.42,64.818 +655786,197.01,65.847 +655787,195.57,66.871 +655788,194.08,67.887 +655789,197.17,64.835 +655790,195.72,65.837 +655791,194.23,66.834 +655792,192.7,67.824 +655793,195.92,64.852 +655794,194.42,65.828 +655795,192.89,66.798 +655796,191.32,67.761 +655797,194.66,64.871 +655798,193.13,65.818 +655799,191.56,66.761 +655800,189.94,67.697 +655801,193.41,64.89 +655802,191.84,65.809 +655803,190.22,66.724 +655804,188.57,67.632 +655805,192.15,64.91 +655806,190.54,65.8 +655807,188.89,66.686 +655808,187.19,67.567 +655809,190.9,64.93 +655810,189.25,65.791 +655811,187.56,66.649 +655812,185.82,67.5 +655813,189.64,64.952 +655814,187.95,65.783 +655815,186.22,66.611 +655816,184.44,67.433 +655817,188.38,64.974 +655818,186.66,65.775 +655819,184.89,66.572 +655820,183.07,67.365 +655821,187.12,64.996 +655822,185.36,65.767 +655823,183.56,66.534 +655824,181.7,67.297 +655825,185.86,65.019 +655826,184.07,65.759 +655827,182.23,66.495 +655828,180.33,67.228 +655829,184.59,65.043 +655830,182.77,65.751 +655831,180.89,66.456 +655832,178.96,67.158 +655833,183.33,65.068 +655834,181.47,65.744 +655835,179.56,66.417 +655836,177.59,67.087 +655837,182.06,65.093 +655838,180.18,65.736 +655839,178.23,66.378 +655840,176.22,67.016 +655841,180.79,65.118 +655842,178.88,65.729 +655843,176.9,66.339 +655844,174.86,66.945 +655845,179.53,65.144 +655846,177.58,65.722 +655847,175.57,66.299 +655848,173.5,66.873 +655849,178.25,65.17 +655850,176.28,65.715 +655851,174.24,66.259 +655852,172.13,66.8 +655853,176.98,65.197 +655854,174.98,65.709 +655855,172.91,66.219 +655856,170.77,66.727 +655857,175.71,65.224 +655858,173.68,65.702 +655859,171.59,66.179 +655860,169.41,66.653 +655861,174.43,65.252 +655862,172.38,65.696 +655863,170.26,66.138 +655864,168.06,66.579 +655865,173.16,65.28 +655866,171.08,65.689 +655867,168.93,66.098 +655868,166.7,66.504 +655869,171.88,65.308 +655870,169.78,65.683 +655871,167.61,66.057 +655872,165.35,66.43 +655873,170.6,65.337 +655874,168.48,65.677 +655875,166.28,66.017 +655876,163.99,66.354 +655877,169.31,65.366 +655878,167.17,65.671 +655879,164.95,65.976 +655880,162.64,66.279 +655881,168.03,65.395 +655882,165.87,65.665 +655883,163.63,65.935 +655884,161.29,66.203 +655885,166.74,65.424 +655886,164.57,65.659 +655887,162.31,65.894 +655888,159.95,66.127 +655889,165.46,65.454 +655890,163.26,65.653 +655891,160.98,65.853 +655892,158.6,66.05 +655893,164.17,65.483 +655894,161.96,65.648 +655895,159.66,65.811 +655896,157.26,65.974 +655897,162.88,65.513 +655898,160.65,65.642 +655899,158.34,65.77 +655900,155.92,65.897 +655901,161.59,65.543 +655902,159.35,65.636 +655903,157.01,65.729 +655904,154.58,65.82 +655905,160.29,65.573 +655906,158.04,65.631 +655907,155.69,65.687 +655908,153.24,65.743 +655909,159,65.603 +655910,156.73,65.625 +655911,154.37,65.646 +655912,151.9,65.666 +655913,157.7,65.633 +655914,155.43,65.619 +655915,153.05,65.604 +655916,150.57,65.588 +655917,156.4,65.663 +655918,154.12,65.613 +655919,151.73,65.563 +655920,149.23,65.511 +655921,155.1,65.693 +655922,152.81,65.608 +655923,150.42,65.521 +655924,147.9,65.433 +655925,153.8,65.723 +655926,151.5,65.602 +655927,149.1,65.48 +655928,146.57,65.356 +655929,152.49,65.753 +655930,150.19,65.596 +655931,147.78,65.438 +655932,145.25,65.279 +655933,151.19,65.782 +655934,148.88,65.59 +655935,146.46,65.397 +655936,143.92,65.201 +655937,149.88,65.812 +655938,147.57,65.585 +655939,145.15,65.355 +655940,142.6,65.124 +655941,148.57,65.841 +655942,146.26,65.579 +655943,143.83,65.314 +655944,141.28,65.047 +655945,147.26,65.87 +655946,144.94,65.573 +655947,142.52,65.273 +655948,139.96,64.97 +655949,145.95,65.899 +655950,143.63,65.566 +655951,141.2,65.231 +655952,138.64,64.893 +655953,144.63,65.928 +655954,142.32,65.56 +655955,139.89,65.19 +655956,137.32,64.817 +655957,143.31,65.956 +655958,141,65.554 +655959,138.58,65.149 +655960,136.01,64.741 +655961,142,65.984 +655962,139.69,65.548 +655963,137.26,65.108 +655964,134.7,64.665 +655965,140.68,66.012 +655966,138.37,65.541 +655967,135.95,65.067 +655968,133.39,64.589 +655969,139.35,66.039 +655970,137.06,65.534 +655971,134.64,65.026 +655972,132.08,64.513 +655973,138.03,66.066 +655974,135.74,65.528 +655975,133.33,64.985 +655976,130.78,64.438 +655977,136.71,66.092 +655978,134.43,65.521 +655979,132.02,64.944 +655980,129.47,64.364 +655981,135.38,66.118 +655982,133.11,65.513 +655983,130.71,64.904 +655984,128.17,64.289 +655985,134.05,66.143 +655986,131.79,65.506 +655987,129.4,64.864 +655988,126.87,64.216 +655989,132.72,66.168 +655990,130.47,65.499 +655991,128.1,64.823 +655992,125.57,64.142 +655993,131.39,66.193 +655994,129.15,65.491 +655995,126.79,64.783 +655996,124.28,64.069 +655997,130.05,66.216 +655998,127.83,65.483 +655999,125.48,64.743 +656000,122.98,63.997 +656001,128.72,66.24 +656002,126.51,65.475 +656003,124.18,64.704 +656004,121.69,63.925 +656005,127.38,66.262 +656006,125.19,65.467 +656007,122.87,64.664 +656008,120.4,63.854 +656009,126.04,66.284 +656010,123.87,65.458 +656011,121.57,64.625 +656012,119.12,63.783 +656013,124.7,66.305 +656014,122.55,65.449 +656015,120.26,64.585 +656016,117.83,63.713 +656017,123.36,66.326 +656018,121.23,65.44 +656019,118.96,64.546 +656020,116.54,63.644 +656021,122.02,66.346 +656022,119.9,65.431 +656023,117.66,64.508 +656024,115.26,63.575 +656025,120.67,66.365 +656026,118.58,65.422 +656027,116.36,64.469 +656028,113.98,63.507 +656029,119.33,66.383 +656030,117.26,65.412 +656031,115.05,64.431 +656032,112.7,63.44 +656033,117.98,66.401 +656034,115.93,65.402 +656035,113.75,64.393 +656036,111.43,63.374 +656037,116.63,66.418 +656038,114.61,65.392 +656039,112.45,64.355 +656040,110.15,63.308 +656041,115.28,66.433 +656042,113.28,65.381 +656043,111.15,64.318 +656044,108.88,63.243 +656045,113.93,66.449 +656046,111.95,65.37 +656047,109.85,64.28 +656048,107.61,63.179 +656049,112.57,66.463 +656050,110.63,65.359 +656051,108.56,64.243 +656052,106.34,63.116 +656053,111.22,66.476 +656054,109.3,65.348 +656055,107.26,64.207 +656056,105.07,63.053 +656057,109.86,66.489 +656058,107.97,65.336 +656059,105.96,64.17 +656060,103.81,62.992 +656061,108.5,66.5 +656062,106.64,65.324 +656063,104.66,64.134 +656064,102.54,62.931 +656065,107.14,66.511 +656066,105.32,65.311 +656067,103.37,64.098 +656068,101.28,62.871 +656069,105.78,66.52 +656070,103.99,65.299 +656071,102.07,64.063 +656072,100.02,62.813 +656073,104.42,66.529 +656074,102.66,65.286 +656075,100.78,64.027 +656076,98.759,62.755 +656077,103.05,66.536 +656078,101.33,65.272 +656079,99.481,63.992 +656080,97.501,62.698 +656081,101.69,66.543 +656082,99.996,65.258 +656083,98.187,63.958 +656084,96.245,62.642 +656085,100.32,66.548 +656086,98.665,65.244 +656087,96.893,63.924 +656088,94.99,62.588 +656089,98.954,66.553 +656090,97.334,65.23 +656091,95.6,63.89 +656092,93.737,62.534 +656093,97.585,66.556 +656094,96.002,65.215 +656095,94.307,63.856 +656096,92.486,62.481 +656097,96.215,66.559 +656098,94.67,65.199 +656099,93.015,63.823 +656100,91.235,62.43 +656101,94.844,66.56 +656102,93.337,65.184 +656103,91.723,63.79 +656104,89.987,62.38 +656105,93.471,66.56 +656106,92.004,65.168 +656107,90.432,63.758 +656108,88.739,62.33 +656109,92.098,66.559 +656110,90.671,65.151 +656111,89.141,63.725 +656112,87.493,62.282 +656113,90.723,66.557 +656114,89.338,65.135 +656115,87.851,63.694 +656116,86.248,62.235 +656117,89.347,66.554 +656118,88.004,65.117 +656119,86.56,63.662 +656120,85.004,62.189 +656121,87.97,66.549 +656122,86.669,65.1 +656123,85.271,63.631 +656124,83.762,62.144 +656125,86.592,66.544 +656126,85.334,65.082 +656127,83.981,63.601 +656128,82.521,62.101 +656129,85.214,66.537 +656130,83.999,65.063 +656131,82.693,63.57 +656132,81.281,62.058 +656133,83.834,66.529 +656134,82.664,65.044 +656135,81.404,63.54 +656136,80.042,62.017 +656137,82.453,66.52 +656138,81.329,65.025 +656139,80.116,63.511 +656140,78.804,61.977 +656141,81.071,66.509 +656142,79.993,65.006 +656143,78.828,63.482 +656144,77.567,61.939 +656145,79.689,66.498 +656146,78.656,64.986 +656147,77.54,63.453 +656148,76.331,61.901 +656149,78.305,66.485 +656150,77.32,64.965 +656151,76.253,63.425 +656152,75.096,61.865 +656153,76.921,66.471 +656154,75.983,64.944 +656155,74.966,63.397 +656156,73.861,61.83 +656157,75.536,66.455 +656158,74.646,64.923 +656159,73.68,63.369 +656160,72.628,61.796 +656161,74.151,66.439 +656162,73.309,64.901 +656163,72.393,63.342 +656164,71.396,61.764 +656165,72.764,66.421 +656166,71.972,64.879 +656167,71.107,63.316 +656168,70.164,61.732 +656169,71.377,66.402 +656170,70.634,64.856 +656171,69.822,63.289 +656172,68.933,61.702 +656173,69.99,66.382 +656174,69.296,64.833 +656175,68.536,63.264 +656176,67.702,61.674 +656177,68.601,66.36 +656178,67.958,64.81 +656179,67.251,63.238 +656180,66.472,61.646 +656181,67.213,66.337 +656182,66.62,64.786 +656183,65.966,63.213 +656184,65.243,61.62 +656185,65.823,66.313 +656186,65.282,64.761 +656187,64.681,63.188 +656188,64.014,61.595 +656189,64.433,66.288 +656190,63.943,64.736 +656191,63.396,63.164 +656192,62.786,61.572 +656193,63.043,66.261 +656194,62.605,64.711 +656195,62.111,63.14 +656196,61.558,61.549 +656197,61.652,66.233 +656198,61.266,64.685 +656199,60.827,63.117 +656200,60.33,61.528 +656201,60.261,66.204 +656202,59.927,64.659 +656203,59.543,63.094 +656204,59.103,61.509 +656205,58.87,66.173 +656206,58.588,64.633 +656207,58.259,63.071 +656208,57.876,61.49 +656209,57.478,66.142 +656210,57.249,64.606 +656211,56.974,63.049 +656212,56.65,61.473 +656213,56.086,66.109 +656214,55.91,64.578 +656215,55.691,63.027 +656216,55.423,61.457 +656217,54.693,66.074 +656218,54.571,64.55 +656219,54.407,63.006 +656220,54.197,61.442 +656221,53.301,66.039 +656222,53.232,64.522 +656223,53.123,62.985 +656224,52.97,61.429 +656225,51.908,66.002 +656226,51.893,64.493 +656227,51.839,62.965 +656228,51.744,61.417 +656229,50.515,65.964 +656230,50.554,64.464 +656231,50.555,62.944 +656232,50.518,61.406 +656233,49.122,65.925 +656234,49.214,64.435 +656235,49.272,62.925 +656236,49.292,61.396 +656237,47.729,65.885 +656238,47.875,64.405 +656239,47.988,62.905 +656240,48.065,61.388 +656241,46.336,65.843 +656242,46.536,64.374 +656243,46.704,62.886 +656244,46.839,61.381 +656245,44.943,65.8 +656246,45.197,64.343 +656247,45.421,62.868 +656248,45.612,61.375 +656249,43.55,65.756 +656250,43.858,64.312 +656251,44.137,62.85 +656252,44.385,61.37 +656253,42.157,65.711 +656254,42.519,64.28 +656255,42.853,62.832 +656256,43.158,61.366 +656257,40.764,65.664 +656258,41.18,64.248 +656259,41.569,62.815 +656260,41.931,61.364 +656261,39.371,65.616 +656262,39.841,64.216 +656263,40.286,62.797 +656264,40.703,61.363 +656265,37.979,65.568 +656266,38.503,64.183 +656267,39.002,62.781 +656268,39.475,61.363 +656269,36.587,65.518 +656270,37.164,64.15 +656271,37.717,62.765 +656272,38.246,61.364 +656273,35.195,65.466 +656274,35.826,64.116 +656275,36.433,62.749 +656276,37.017,61.366 +656277,33.803,65.414 +656278,34.488,64.082 +656279,35.149,62.733 +656280,35.787,61.369 +656281,32.412,65.361 +656282,33.149,64.047 +656283,33.864,62.718 +656284,34.557,61.374 +656285,31.021,65.306 +656286,31.812,64.012 +656287,32.58,62.703 +656288,33.326,61.379 +656289,29.631,65.251 +656290,30.474,63.977 +656291,31.295,62.689 +656292,32.094,61.386 +656293,28.241,65.194 +656294,29.136,63.942 +656295,30.01,62.674 +656296,30.862,61.394 +656297,26.851,65.136 +656298,27.799,63.906 +656299,28.725,62.661 +656300,29.629,61.402 +656301,25.462,65.078 +656302,26.462,63.869 +656303,27.439,62.647 +656304,28.395,61.412 +656305,24.074,65.018 +656306,25.125,63.833 +656307,26.154,62.634 +656308,27.16,61.423 +656309,22.686,64.957 +656310,23.789,63.796 +656311,24.868,62.621 +656312,25.925,61.435 +656313,21.299,64.895 +656314,22.452,63.758 +656315,23.582,62.609 +656316,24.688,61.447 +656317,19.913,64.832 +656318,21.116,63.721 +656319,22.295,62.596 +656320,23.451,61.461 +656321,18.528,64.768 +656322,19.781,63.683 +656323,21.008,62.584 +656324,22.213,61.475 +656325,17.143,64.704 +656326,18.445,63.644 +656327,19.721,62.573 +656328,20.973,61.491 +656329,15.759,64.638 +656330,17.11,63.606 +656331,18.434,62.561 +656332,19.733,61.507 +656333,14.376,64.572 +656334,15.776,63.567 +656335,17.147,62.55 +656336,18.491,61.524 +656337,12.994,64.504 +656338,14.441,63.527 +656339,15.859,62.539 +656340,17.249,61.542 +656341,11.612,64.436 +656342,13.107,63.488 +656343,14.57,62.529 +656344,16.005,61.561 +656345,10.232,64.367 +656346,11.774,63.448 +656347,13.282,62.519 +656348,14.76,61.581 +656349,8.8529,64.297 +656350,10.44,63.408 +656351,11.993,62.508 +656352,13.514,61.601 +656353,7.4747,64.226 +656354,9.1076,63.367 +656355,10.703,62.499 +656356,12.266,61.622 +656357,6.0976,64.155 +656358,7.7752,63.327 +656359,9.4137,62.489 +656360,11.018,61.644 +656361,4.7216,64.083 +656362,6.4431,63.286 +656363,8.1236,62.48 +656364,9.7677,61.666 +656365,3.3467,64.01 +656366,5.1116,63.245 +656367,6.8331,62.471 +656368,8.5163,61.689 +656369,1.9731,63.936 +656370,3.7804,63.203 +656371,5.5421,62.462 +656372,7.2637,61.713 +656373,0.60063,63.862 +656374,2.4497,63.162 +656375,4.2508,62.453 +656376,6.0096,61.737 +656377,359.23,63.787 +656378,1.1195,63.12 +656379,2.959,62.444 +656380,4.7541,61.762 +656381,357.86,63.711 +656382,359.79,63.078 +656383,1.6668,62.436 +656384,3.4972,61.788 +656385,356.49,63.635 +656386,358.46,63.035 +656387,0.37411,62.428 +656388,2.2388,61.814 +656389,355.12,63.559 +656390,357.13,62.993 +656391,359.08,62.42 +656392,0.97895,61.84 +656393,353.76,63.481 +656394,355.8,62.95 +656395,357.79,62.412 +656396,359.72,61.867 +656397,352.39,63.403 +656398,354.48,62.907 +656399,356.49,62.404 +656400,358.45,61.895 +656401,351.03,63.325 +656402,353.15,62.864 +656403,355.2,62.396 +656404,357.19,61.922 +656405,349.67,63.247 +656406,351.82,62.821 +656407,353.9,62.389 +656408,355.92,61.951 +656409,348.31,63.167 +656410,350.5,62.778 +656411,352.61,62.381 +656412,354.66,61.979 +656413,346.95,63.088 +656414,349.17,62.734 +656415,351.31,62.374 +656416,353.39,62.008 +656417,345.59,63.008 +656418,347.84,62.691 +656419,350.02,62.367 +656420,352.12,62.037 +656421,344.24,62.928 +656422,346.52,62.647 +656423,348.72,62.36 +656424,350.84,62.067 +656425,342.89,62.847 +656426,345.2,62.603 +656427,347.42,62.353 +656428,349.57,62.096 +656429,341.53,62.766 +656430,343.87,62.559 +656431,346.12,62.346 +656432,348.29,62.126 +656433,340.18,62.685 +656434,342.55,62.515 +656435,344.82,62.339 +656436,347.02,62.156 +656437,338.84,62.604 +656438,341.23,62.471 +656439,343.52,62.332 +656440,345.74,62.187 +656441,337.49,62.522 +656442,339.91,62.427 +656443,342.22,62.325 +656444,344.46,62.217 +656445,336.14,62.44 +656446,338.59,62.383 +656447,340.92,62.318 +656448,343.17,62.247 +656449,334.8,62.358 +656450,337.27,62.339 +656451,339.62,62.311 +656452,341.89,62.278 +656453,333.46,62.276 +656454,335.95,62.294 +656455,338.32,62.304 +656456,340.6,62.308 +656457,332.12,62.194 +656458,334.63,62.25 +656459,337.02,62.298 +656460,339.32,62.339 +656461,330.78,62.112 +656462,333.31,62.206 +656463,335.72,62.291 +656464,338.03,62.369 +656465,329.45,62.03 +656466,331.99,62.161 +656467,334.41,62.284 +656468,336.73,62.4 +656469,328.11,61.948 +656470,330.67,62.117 +656471,333.11,62.277 +656472,335.44,62.43 +656473,326.78,61.866 +656474,329.36,62.072 +656475,331.81,62.27 +656476,334.15,62.46 +656477,325.45,61.784 +656478,328.04,62.028 +656479,330.5,62.263 +656480,332.85,62.49 +656481,324.12,61.702 +656482,326.73,61.984 +656483,329.2,62.256 +656484,331.55,62.52 +656485,322.8,61.62 +656486,325.41,61.939 +656487,327.89,62.249 +656488,330.25,62.55 +656489,321.47,61.539 +656490,324.1,61.895 +656491,326.58,62.242 +656492,328.95,62.579 +656493,320.15,61.457 +656494,322.78,61.851 +656495,325.28,62.234 +656496,327.65,62.609 +656497,318.83,61.376 +656498,321.47,61.807 +656499,323.97,62.227 +656500,326.34,62.637 +656501,317.51,61.295 +656502,320.16,61.763 +656503,322.66,62.219 +656504,325.03,62.666 +656505,316.2,61.214 +656506,318.85,61.719 +656507,321.35,62.212 +656508,323.72,62.694 +656509,314.88,61.134 +656510,317.54,61.675 +656511,320.04,62.204 +656512,322.41,62.722 +656513,313.57,61.054 +656514,316.23,61.631 +656515,318.73,62.196 +656516,321.1,62.749 +656517,312.26,60.975 +656518,314.92,61.588 +656519,317.42,62.188 +656520,319.79,62.776 +656521,310.95,60.895 +656522,313.61,61.544 +656523,316.11,62.18 +656524,318.47,62.803 +656525,309.65,60.817 +656526,312.3,61.501 +656527,314.8,62.171 +656528,317.15,62.829 +656529,308.34,60.738 +656530,311,61.458 +656531,313.48,62.163 +656532,315.83,62.854 +656533,307.04,60.66 +656534,309.69,61.415 +656535,312.17,62.154 +656536,314.51,62.879 +656537,305.74,60.583 +656538,308.38,61.372 +656539,310.86,62.145 +656540,313.19,62.904 +656541,304.44,60.506 +656542,307.08,61.329 +656543,309.54,62.136 +656544,311.86,62.927 +656545,303.15,60.43 +656546,305.77,61.287 +656547,308.23,62.126 +656548,310.54,62.951 +656549,301.86,60.355 +656550,304.47,61.244 +656551,306.91,62.117 +656552,309.21,62.973 +656553,300.56,60.28 +656554,303.17,61.202 +656555,305.6,62.107 +656556,307.88,62.995 +656557,299.27,60.206 +656558,301.86,61.16 +656559,304.28,62.097 +656560,306.55,63.016 +656561,297.99,60.132 +656562,300.56,61.118 +656563,302.96,62.086 +656564,305.21,63.036 +656565,296.7,60.059 +656566,299.26,61.077 +656567,301.64,62.076 +656568,303.88,63.056 +656569,295.42,59.987 +656570,297.96,61.036 +656571,300.33,62.065 +656572,302.54,63.075 +656573,294.14,59.916 +656574,296.66,60.995 +656575,299.01,62.053 +656576,301.2,63.093 +656577,292.86,59.846 +656578,295.36,60.954 +656579,297.69,62.042 +656580,299.86,63.11 +656581,291.58,59.776 +656582,294.06,60.914 +656583,296.37,62.03 +656584,298.52,63.126 +656585,290.31,59.707 +656586,292.77,60.873 +656587,295.05,62.018 +656588,297.18,63.142 +656589,289.03,59.639 +656590,291.47,60.834 +656591,293.73,62.006 +656592,295.83,63.156 +656593,287.76,59.572 +656594,290.17,60.794 +656595,292.4,61.993 +656596,294.49,63.17 +656597,286.49,59.506 +656598,288.88,60.755 +656599,291.08,61.98 +656600,293.14,63.183 +656601,285.22,59.441 +656602,287.58,60.716 +656603,289.76,61.967 +656604,291.79,63.194 +656605,283.96,59.377 +656606,286.29,60.677 +656607,288.44,61.953 +656608,290.44,63.205 +656609,282.7,59.313 +656610,284.99,60.639 +656611,287.11,61.939 +656612,289.09,63.215 +656613,281.43,59.251 +656614,283.7,60.6 +656615,285.79,61.924 +656616,287.73,63.224 +656617,280.17,59.19 +656618,282.4,60.563 +656619,284.46,61.91 +656620,286.38,63.232 +656621,278.92,59.13 +656622,281.11,60.525 +656623,283.14,61.894 +656624,285.02,63.238 +656625,277.66,59.071 +656626,279.82,60.488 +656627,281.81,61.879 +656628,283.66,63.244 +656629,276.4,59.013 +656630,278.53,60.452 +656631,280.49,61.863 +656632,282.3,63.248 +656633,275.15,58.956 +656634,277.24,60.415 +656635,279.16,61.847 +656636,280.94,63.252 +656637,273.9,58.9 +656638,275.95,60.379 +656639,277.83,61.83 +656640,279.58,63.254 +656641,272.65,58.846 +656642,274.66,60.344 +656643,276.51,61.813 +656644,278.22,63.255 +656645,271.4,58.792 +656646,273.37,60.308 +656647,275.18,61.796 +656648,276.85,63.255 +656649,270.15,58.74 +656650,272.08,60.273 +656651,273.85,61.778 +656652,275.49,63.254 +656653,268.91,58.689 +656654,270.79,60.239 +656655,272.52,61.76 +656656,274.12,63.252 +656657,267.67,58.639 +656658,269.51,60.205 +656659,271.19,61.741 +656660,272.75,63.248 +656661,266.42,58.591 +656662,268.22,60.171 +656663,269.86,61.722 +656664,271.38,63.243 +656665,265.18,58.543 +656666,266.93,60.138 +656667,268.53,61.702 +656668,270.01,63.237 +656669,263.94,58.497 +656670,265.65,60.105 +656671,267.2,61.682 +656672,268.64,63.23 +656673,262.7,58.452 +656674,264.36,60.072 +656675,265.87,61.662 +656676,267.27,63.222 +656677,261.47,58.409 +656678,263.07,60.04 +656679,264.54,61.641 +656680,265.89,63.212 +656681,260.23,58.367 +656682,261.79,60.009 +656683,263.21,61.62 +656684,264.52,63.201 +656685,259,58.326 +656686,260.5,59.977 +656687,261.88,61.598 +656688,263.14,63.189 +656689,257.77,58.286 +656690,259.22,59.947 +656691,260.55,61.576 +656692,261.77,63.175 +656693,256.53,58.248 +656694,257.94,59.916 +656695,259.22,61.554 +656696,260.39,63.16 +656697,255.3,58.211 +656698,256.65,59.886 +656699,257.88,61.531 +656700,259.01,63.144 +656701,254.07,58.175 +656702,255.37,59.857 +656703,256.55,61.507 +656704,257.63,63.127 +656705,252.84,58.141 +656706,254.09,59.827 +656707,255.22,61.483 +656708,256.25,63.108 +656709,251.62,58.108 +656710,252.81,59.799 +656711,253.88,61.459 +656712,254.87,63.088 +656713,250.39,58.076 +656714,251.52,59.77 +656715,252.55,61.434 +656716,253.49,63.067 +656717,249.16,58.046 +656718,250.24,59.743 +656719,251.22,61.409 +656720,252.1,63.044 +656721,247.94,58.017 +656722,248.96,59.715 +656723,249.88,61.383 +656724,250.72,63.02 +656725,246.71,57.989 +656726,247.68,59.688 +656727,248.55,61.357 +656728,249.34,62.995 +656729,245.49,57.963 +656730,246.4,59.662 +656731,247.21,61.33 +656732,247.95,62.968 +656733,244.27,57.938 +656734,245.12,59.636 +656735,245.88,61.303 +656736,246.57,62.94 +656737,243.04,57.914 +656738,243.84,59.61 +656739,244.55,61.275 +656740,245.18,62.911 +656741,241.82,57.892 +656742,242.56,59.585 +656743,243.21,61.247 +656744,243.79,62.88 +656745,240.6,57.871 +656746,241.28,59.56 +656747,241.88,61.219 +656748,242.41,62.848 +656749,239.38,57.852 +656750,240,59.535 +656751,240.54,61.19 +656752,241.02,62.815 +656753,238.16,57.834 +656754,238.72,59.511 +656755,239.21,61.16 +656756,239.63,62.78 +656757,236.94,57.817 +656758,237.44,59.488 +656759,237.87,61.13 +656760,238.24,62.744 +656761,235.72,57.801 +656762,236.16,59.465 +656763,236.53,61.1 +656764,236.85,62.707 +656765,234.5,57.787 +656766,234.88,59.442 +656767,235.2,61.069 +656768,235.46,62.668 +656769,233.28,57.775 +656770,233.6,59.42 +656771,233.86,61.038 +656772,234.07,62.628 +656773,232.06,57.763 +656774,232.32,59.398 +656775,232.53,61.006 +656776,232.68,62.587 +656777,230.84,57.753 +656778,231.04,59.377 +656779,231.19,60.974 +656780,231.29,62.544 +656781,229.62,57.744 +656782,229.76,59.356 +656783,229.86,60.941 +656784,229.9,62.5 +656785,228.41,57.737 +656786,228.49,59.335 +656787,228.52,60.908 +656788,228.51,62.455 +656789,227.19,57.73 +656790,227.21,59.315 +656791,227.18,60.875 +656792,227.12,62.409 +656793,225.97,57.725 +656794,225.93,59.296 +656795,225.85,60.841 +656796,225.73,62.361 +656797,224.75,57.722 +656798,224.65,59.276 +656799,224.51,60.807 +656800,224.34,62.312 +656801,223.53,57.719 +656802,223.37,59.257 +656803,223.18,60.772 +656804,222.95,62.262 +656805,222.31,57.718 +656806,222.09,59.239 +656807,221.84,60.736 +656808,221.56,62.21 +656809,221.09,57.718 +656810,220.81,59.221 +656811,220.51,60.701 +656812,220.17,62.157 +656813,219.87,57.719 +656814,219.54,59.203 +656815,219.17,60.665 +656816,218.78,62.103 +656817,218.65,57.722 +656818,218.26,59.186 +656819,217.84,60.628 +656820,217.39,62.048 +656821,217.43,57.725 +656822,216.98,59.169 +656823,216.5,60.591 +656824,216,61.992 +656825,216.21,57.73 +656826,215.7,59.152 +656827,215.17,60.554 +656828,214.61,61.934 +656829,214.99,57.736 +656830,214.42,59.136 +656831,213.83,60.516 +656832,213.22,61.875 +656833,213.76,57.743 +656834,213.14,59.12 +656835,212.5,60.478 +656836,211.83,61.815 +656837,212.54,57.751 +656838,211.86,59.105 +656839,211.16,60.44 +656840,210.44,61.754 +656841,211.32,57.761 +656842,210.58,59.09 +656843,209.83,60.401 +656844,209.05,61.692 +656845,210.09,57.771 +656846,209.3,59.075 +656847,208.49,60.361 +656848,207.67,61.629 +656849,208.87,57.782 +656850,208.02,59.061 +656851,207.16,60.322 +656852,206.28,61.564 +656853,207.64,57.795 +656854,206.74,59.047 +656855,205.83,60.282 +656856,204.89,61.499 +656857,206.42,57.808 +656858,205.46,59.033 +656859,204.49,60.241 +656860,203.51,61.432 +656861,205.19,57.823 +656862,204.18,59.02 +656863,203.16,60.201 +656864,202.12,61.365 +656865,203.96,57.838 +656866,202.9,59.007 +656867,201.83,60.16 +656868,200.73,61.296 +656869,202.73,57.855 +656870,201.62,58.994 +656871,200.49,60.118 +656872,199.35,61.226 +656873,201.5,57.872 +656874,200.34,58.981 +656875,199.16,60.076 +656876,197.96,61.156 +656877,200.27,57.89 +656878,199.06,58.969 +656879,197.83,60.034 +656880,196.58,61.084 +656881,199.04,57.909 +656882,197.78,58.957 +656883,196.5,59.992 +656884,195.2,61.012 +656885,197.81,57.929 +656886,196.49,58.946 +656887,195.17,59.949 +656888,193.82,60.938 +656889,196.57,57.95 +656890,195.21,58.934 +656891,193.83,59.906 +656892,192.44,60.864 +656893,195.34,57.971 +656894,193.93,58.923 +656895,192.5,59.863 +656896,191.06,60.789 +656897,194.1,57.994 +656898,192.65,58.912 +656899,191.17,59.819 +656900,189.68,60.713 +656901,192.86,58.017 +656902,191.36,58.902 +656903,189.84,59.775 +656904,188.3,60.636 +656905,191.62,58.04 +656906,190.08,58.891 +656907,188.51,59.731 +656908,186.92,60.559 +656909,190.38,58.065 +656910,188.8,58.881 +656911,187.18,59.687 +656912,185.54,60.48 +656913,189.14,58.09 +656914,187.51,58.871 +656915,185.86,59.642 +656916,184.17,60.401 +656917,187.9,58.116 +656918,186.23,58.862 +656919,184.53,59.597 +656920,182.8,60.321 +656921,186.65,58.142 +656922,184.94,58.852 +656923,183.2,59.552 +656924,181.42,60.241 +656925,185.41,58.169 +656926,183.66,58.843 +656927,181.87,59.507 +656928,180.05,60.159 +656929,184.16,58.197 +656930,182.37,58.834 +656931,180.55,59.461 +656932,178.68,60.078 +656933,182.91,58.225 +656934,181.08,58.825 +656935,179.22,59.415 +656936,177.31,59.995 +656937,181.66,58.253 +656938,179.8,58.816 +656939,177.89,59.369 +656940,175.94,59.912 +656941,180.41,58.282 +656942,178.51,58.807 +656943,176.57,59.323 +656944,174.58,59.828 +656945,179.15,58.311 +656946,177.22,58.799 +656947,175.24,59.277 +656948,173.21,59.744 +656949,177.9,58.341 +656950,175.93,58.79 +656951,173.92,59.23 +656952,171.85,59.66 +656953,176.64,58.371 +656954,174.64,58.782 +656955,172.59,59.184 +656956,170.48,59.575 +656957,175.38,58.402 +656958,173.36,58.774 +656959,171.27,59.137 +656960,169.12,59.489 +656961,174.13,58.433 +656962,172.07,58.766 +656963,169.95,59.09 +656964,167.76,59.403 +656965,172.86,58.464 +656966,170.78,58.758 +656967,168.63,59.043 +656968,166.41,59.317 +656969,171.6,58.495 +656970,169.49,58.75 +656971,167.3,58.996 +656972,165.05,59.23 +656973,170.34,58.527 +656974,168.19,58.742 +656975,165.98,58.948 +656976,163.69,59.143 +656977,169.07,58.558 +656978,166.9,58.734 +656979,164.66,58.901 +656980,162.34,59.056 +656981,167.8,58.59 +656982,165.61,58.727 +656983,163.34,58.853 +656984,160.99,58.968 +656985,166.53,58.622 +656986,164.32,58.719 +656987,162.02,58.806 +656988,159.64,58.881 +656989,165.26,58.655 +656990,163.02,58.712 +656991,160.7,58.758 +656992,158.29,58.793 +656993,163.99,58.687 +656994,161.73,58.704 +656995,159.39,58.711 +656996,156.94,58.705 +656997,162.71,58.719 +656998,160.44,58.696 +656999,158.07,58.663 +657000,155.6,58.616 +657001,161.44,58.751 +657002,159.14,58.689 +657003,156.75,58.615 +657004,154.26,58.528 +657005,160.16,58.783 +657006,157.85,58.681 +657007,155.44,58.567 +657008,152.92,58.44 +657009,158.88,58.815 +657010,156.55,58.673 +657011,154.12,58.52 +657012,151.58,58.351 +657013,157.6,58.847 +657014,155.25,58.666 +657015,152.81,58.472 +657016,150.24,58.263 +657017,156.31,58.879 +657018,153.96,58.658 +657019,151.49,58.424 +657020,148.9,58.175 +657021,155.03,58.911 +657022,152.66,58.65 +657023,150.18,58.376 +657024,147.57,58.086 +657025,153.74,58.942 +657026,151.36,58.642 +657027,148.86,58.328 +657028,146.24,57.998 +657029,152.45,58.974 +657030,150.06,58.635 +657031,147.55,58.281 +657032,144.91,57.91 +657033,151.16,59.005 +657034,148.76,58.627 +657035,146.24,58.233 +657036,143.58,57.822 +657037,149.87,59.035 +657038,147.46,58.618 +657039,144.93,58.186 +657040,142.26,57.735 +657041,148.57,59.066 +657042,146.16,58.61 +657043,143.62,58.138 +657044,140.93,57.647 +657045,147.27,59.096 +657046,144.86,58.602 +657047,142.31,58.091 +657048,139.61,57.56 +657049,145.98,59.126 +657050,143.56,58.593 +657051,141,58.043 +657052,138.29,57.473 +657053,144.68,59.155 +657054,142.25,58.585 +657055,139.69,57.996 +657056,136.97,57.387 +657057,143.37,59.184 +657058,140.95,58.576 +657059,138.39,57.949 +657060,135.66,57.301 +657061,142.07,59.212 +657062,139.65,58.567 +657063,137.08,57.902 +657064,134.34,57.215 +657065,140.77,59.24 +657066,138.34,58.558 +657067,135.77,57.855 +657068,133.03,57.13 +657069,139.46,59.268 +657070,137.04,58.549 +657071,134.47,57.809 +657072,131.72,57.045 +657073,138.15,59.294 +657074,135.73,58.539 +657075,133.16,57.762 +657076,130.42,56.96 +657077,136.84,59.321 +657078,134.43,58.53 +657079,131.86,57.716 +657080,129.11,56.877 +657081,135.53,59.346 +657082,133.12,58.52 +657083,130.56,57.67 +657084,127.81,56.793 +657085,134.21,59.371 +657086,131.81,58.51 +657087,129.25,57.624 +657088,126.51,56.711 +657089,132.9,59.396 +657090,130.5,58.499 +657091,127.95,57.578 +657092,125.21,56.629 +657093,131.58,59.419 +657094,129.2,58.489 +657095,126.65,57.533 +657096,123.91,56.547 +657097,130.26,59.442 +657098,127.89,58.478 +657099,125.35,57.487 +657100,122.62,56.467 +657101,128.94,59.464 +657102,126.58,58.467 +657103,124.05,57.442 +657104,121.33,56.387 +657105,127.61,59.486 +657106,125.27,58.456 +657107,122.75,57.397 +657108,120.04,56.307 +657109,126.29,59.506 +657110,123.96,58.444 +657111,121.45,57.353 +657112,118.75,56.229 +657113,124.96,59.526 +657114,122.64,58.432 +657115,120.16,57.308 +657116,117.46,56.151 +657117,123.63,59.545 +657118,121.33,58.42 +657119,118.86,57.264 +657120,116.18,56.075 +657121,122.3,59.563 +657122,120.02,58.408 +657123,117.56,57.221 +657124,114.9,55.999 +657125,120.97,59.58 +657126,118.71,58.395 +657127,116.27,57.177 +657128,113.62,55.924 +657129,119.64,59.597 +657130,117.39,58.382 +657131,114.97,57.134 +657132,112.34,55.849 +657133,118.3,59.612 +657134,116.08,58.368 +657135,113.68,57.091 +657136,111.07,55.776 +657137,116.97,59.626 +657138,114.77,58.355 +657139,112.39,57.048 +657140,109.8,55.704 +657141,115.63,59.639 +657142,113.45,58.34 +657143,111.09,57.006 +657144,108.53,55.633 +657145,114.29,59.652 +657146,112.13,58.326 +657147,109.8,56.964 +657148,107.26,55.563 +657149,112.95,59.663 +657150,110.82,58.311 +657151,108.51,56.923 +657152,105.99,55.493 +657153,111.61,59.673 +657154,109.5,58.296 +657155,107.22,56.881 +657156,104.73,55.425 +657157,110.26,59.682 +657158,108.18,58.281 +657159,105.93,56.84 +657160,103.46,55.358 +657161,108.92,59.691 +657162,106.87,58.265 +657163,104.64,56.8 +657164,102.2,55.293 +657165,107.57,59.697 +657166,105.55,58.248 +657167,103.35,56.76 +657168,100.94,55.228 +657169,106.22,59.703 +657170,104.23,58.232 +657171,102.06,56.72 +657172,99.688,55.164 +657173,104.87,59.708 +657174,102.91,58.215 +657175,100.78,56.68 +657176,98.434,55.102 +657177,103.52,59.711 +657178,101.59,58.197 +657179,99.49,56.641 +657180,97.181,55.041 +657181,102.16,59.714 +657182,100.27,58.179 +657183,98.203,56.603 +657184,95.93,54.981 +657185,100.81,59.715 +657186,98.949,58.161 +657187,96.918,56.564 +657188,94.681,54.922 +657189,99.454,59.715 +657190,97.628,58.142 +657191,95.633,56.527 +657192,93.434,54.865 +657193,98.097,59.713 +657194,96.306,58.123 +657195,94.348,56.489 +657196,92.189,54.809 +657197,96.739,59.711 +657198,94.984,58.103 +657199,93.064,56.452 +657200,90.945,54.754 +657201,95.379,59.707 +657202,93.662,58.083 +657203,91.781,56.416 +657204,89.703,54.7 +657205,94.019,59.702 +657206,92.339,58.063 +657207,90.498,56.379 +657208,88.463,54.648 +657209,92.657,59.695 +657210,91.016,58.042 +657211,89.216,56.344 +657212,87.225,54.597 +657213,91.293,59.688 +657214,89.692,58.02 +657215,87.934,56.308 +657216,85.988,54.548 +657217,89.929,59.678 +657218,88.368,57.999 +657219,86.653,56.274 +657220,84.752,54.5 +657221,88.563,59.668 +657222,87.044,57.976 +657223,85.372,56.239 +657224,83.519,54.453 +657225,87.197,59.656 +657226,85.719,57.954 +657227,84.092,56.205 +657228,82.286,54.408 +657229,85.829,59.643 +657230,84.394,57.93 +657231,82.812,56.172 +657232,81.056,54.364 +657233,84.46,59.629 +657234,83.068,57.907 +657235,81.533,56.139 +657236,79.826,54.321 +657237,83.09,59.613 +657238,81.742,57.883 +657239,80.254,56.106 +657240,78.598,54.28 +657241,81.719,59.596 +657242,80.416,57.858 +657243,78.976,56.074 +657244,77.372,54.241 +657245,80.348,59.577 +657246,79.09,57.833 +657247,77.698,56.042 +657248,76.146,54.203 +657249,78.975,59.557 +657250,77.763,57.807 +657251,76.42,56.011 +657252,74.922,54.166 +657253,77.601,59.536 +657254,76.436,57.781 +657255,75.143,55.98 +657256,73.699,54.131 +657257,76.227,59.513 +657258,75.109,57.755 +657259,73.866,55.95 +657260,72.477,54.097 +657261,74.851,59.489 +657262,73.781,57.728 +657263,72.59,55.92 +657264,71.257,54.065 +657265,73.475,59.463 +657266,72.453,57.7 +657267,71.314,55.891 +657268,70.037,54.034 +657269,72.098,59.437 +657270,71.125,57.672 +657271,70.038,55.862 +657272,68.818,54.005 +657273,70.721,59.408 +657274,69.797,57.643 +657275,68.763,55.834 +657276,67.601,53.977 +657277,69.342,59.378 +657278,68.468,57.614 +657279,67.488,55.806 +657280,66.384,53.95 +657281,67.963,59.347 +657282,67.139,57.585 +657283,66.214,55.779 +657284,65.168,53.926 +657285,66.583,59.314 +657286,65.811,57.555 +657287,64.939,55.752 +657288,63.953,53.902 +657289,65.203,59.28 +657290,64.481,57.525 +657291,63.665,55.725 +657292,62.738,53.88 +657293,63.822,59.245 +657294,63.152,57.494 +657295,62.391,55.699 +657296,61.525,53.86 +657297,62.441,59.208 +657298,61.823,57.462 +657299,61.118,55.674 +657300,60.312,53.841 +657301,61.058,59.17 +657302,60.493,57.43 +657303,59.845,55.649 +657304,59.099,53.823 +657305,59.676,59.13 +657306,59.164,57.398 +657307,58.572,55.624 +657308,57.887,53.807 +657309,58.293,59.089 +657310,57.834,57.365 +657311,57.299,55.6 +657312,56.676,53.793 +657313,56.91,59.046 +657314,56.504,57.332 +657315,56.026,55.577 +657316,55.465,53.78 +657317,55.526,59.002 +657318,55.174,57.298 +657319,54.753,55.554 +657320,54.254,53.768 +657321,54.142,58.957 +657322,53.844,57.263 +657323,53.481,55.531 +657324,53.044,53.758 +657325,52.757,58.91 +657326,52.514,57.229 +657327,52.209,55.509 +657328,51.834,53.749 +657329,51.373,58.862 +657330,51.184,57.193 +657331,50.937,55.487 +657332,50.624,53.741 +657333,49.988,58.812 +657334,49.854,57.158 +657335,49.665,55.466 +657336,49.414,53.735 +657337,48.603,58.761 +657338,48.523,57.121 +657339,48.393,55.445 +657340,48.204,53.731 +657341,47.217,58.709 +657342,47.193,57.085 +657343,47.121,55.425 +657344,46.995,53.728 +657345,45.832,58.656 +657346,45.863,57.048 +657347,45.849,55.405 +657348,45.785,53.726 +657349,44.447,58.601 +657350,44.533,57.01 +657351,44.578,55.385 +657352,44.576,53.725 +657353,43.061,58.544 +657354,43.203,56.972 +657355,43.306,55.366 +657356,43.366,53.726 +657357,41.676,58.487 +657358,41.873,56.933 +657359,42.034,55.347 +657360,42.156,53.728 +657361,40.29,58.428 +657362,40.543,56.895 +657363,40.763,55.329 +657364,40.946,53.732 +657365,38.905,58.368 +657366,39.213,56.855 +657367,39.491,55.311 +657368,39.736,53.736 +657369,37.519,58.306 +657370,37.883,56.815 +657371,38.22,55.294 +657372,38.525,53.742 +657373,36.134,58.244 +657374,36.554,56.775 +657375,36.948,55.277 +657376,37.314,53.75 +657377,34.749,58.18 +657378,35.224,56.734 +657379,35.676,55.261 +657380,36.102,53.758 +657381,33.364,58.114 +657382,33.895,56.693 +657383,34.404,55.245 +657384,34.891,53.768 +657385,31.979,58.048 +657386,32.566,56.652 +657387,33.132,55.229 +657388,33.678,53.779 +657389,30.595,57.98 +657390,31.237,56.61 +657391,31.86,55.213 +657392,32.465,53.791 +657393,29.211,57.911 +657394,29.908,56.568 +657395,30.588,55.198 +657396,31.252,53.804 +657397,27.827,57.841 +657398,28.579,56.525 +657399,29.316,55.184 +657400,30.037,53.819 +657401,26.444,57.77 +657402,27.251,56.482 +657403,28.043,55.17 +657404,28.822,53.834 +657405,25.061,57.698 +657406,25.922,56.439 +657407,26.771,55.156 +657408,27.607,53.851 +657409,23.679,57.625 +657410,24.594,56.395 +657411,25.498,55.142 +657412,26.39,53.868 +657413,22.297,57.55 +657414,23.267,56.351 +657415,24.225,55.129 +657416,25.173,53.887 +657417,20.916,57.475 +657418,21.939,56.306 +657419,22.952,55.116 +657420,23.955,53.907 +657421,19.535,57.398 +657422,20.612,56.261 +657423,21.678,55.104 +657424,22.736,53.927 +657425,18.155,57.321 +657426,19.285,56.216 +657427,20.405,55.092 +657428,21.516,53.949 +657429,16.776,57.242 +657430,17.958,56.17 +657431,19.131,55.08 +657432,20.295,53.971 +657433,15.397,57.162 +657434,16.632,56.124 +657435,17.857,55.068 +657436,19.072,53.995 +657437,14.02,57.082 +657438,15.306,56.078 +657439,16.582,55.057 +657440,17.849,54.019 +657441,12.642,57 +657442,13.981,56.032 +657443,15.308,55.046 +657444,16.625,54.044 +657445,11.266,56.918 +657446,12.655,55.985 +657447,14.033,55.035 +657448,15.399,54.07 +657449,9.8907,56.835 +657450,11.331,55.938 +657451,12.757,55.025 +657452,14.173,54.097 +657453,8.5162,56.751 +657454,10.006,55.89 +657455,11.482,55.014 +657456,12.945,54.125 +657457,7.1426,56.666 +657458,8.6821,55.843 +657459,10.206,55.005 +657460,11.715,54.153 +657461,5.77,56.58 +657462,7.3585,55.795 +657463,8.9295,54.995 +657464,10.485,54.182 +657465,4.3984,56.494 +657466,6.0353,55.747 +657467,7.6528,54.985 +657468,9.2531,54.211 +657469,3.0279,56.406 +657470,4.7125,55.698 +657471,6.3757,54.976 +657472,8.0199,54.241 +657473,1.6584,56.319 +657474,3.3902,55.65 +657475,5.0983,54.967 +657476,6.7853,54.272 +657477,0.29012,56.23 +657478,2.0683,55.601 +657479,3.8204,54.958 +657480,5.5493,54.304 +657481,358.92,56.141 +657482,0.74694,55.552 +657483,2.5422,54.949 +657484,4.3118,54.336 +657485,357.56,56.051 +657486,359.43,55.502 +657487,1.2635,54.941 +657488,3.0729,54.368 +657489,356.19,55.96 +657490,358.11,55.453 +657491,359.98,54.933 +657492,1.8324,54.401 +657493,354.83,55.869 +657494,356.79,55.403 +657495,358.7,54.924 +657496,0.59042,54.434 +657497,353.47,55.778 +657498,355.47,55.354 +657499,357.42,54.916 +657500,359.35,54.468 +657501,352.11,55.686 +657502,354.15,55.304 +657503,356.14,54.909 +657504,358.1,54.502 +657505,350.75,55.593 +657506,352.83,55.254 +657507,354.86,54.901 +657508,356.85,54.537 +657509,349.39,55.5 +657510,351.51,55.203 +657511,353.58,54.893 +657512,355.61,54.572 +657513,348.03,55.407 +657514,350.19,55.153 +657515,352.3,54.886 +657516,354.36,54.607 +657517,346.68,55.313 +657518,348.88,55.102 +657519,351.02,54.878 +657520,353.1,54.642 +657521,345.32,55.219 +657522,347.56,55.052 +657523,349.74,54.871 +657524,351.85,54.678 +657525,343.97,55.125 +657526,346.25,55.001 +657527,348.45,54.863 +657528,350.6,54.713 +657529,342.62,55.03 +657530,344.93,54.95 +657531,347.17,54.856 +657532,349.34,54.749 +657533,341.27,54.935 +657534,343.62,54.9 +657535,345.88,54.849 +657536,348.08,54.785 +657537,339.93,54.84 +657538,342.3,54.849 +657539,344.6,54.842 +657540,346.82,54.821 +657541,338.58,54.745 +657542,340.99,54.798 +657543,343.31,54.834 +657544,345.56,54.857 +657545,337.24,54.65 +657546,339.68,54.747 +657547,342.03,54.827 +657548,344.3,54.893 +657549,335.89,54.554 +657550,338.37,54.696 +657551,340.74,54.82 +657552,343.03,54.929 +657553,334.55,54.459 +657554,337.06,54.645 +657555,339.45,54.813 +657556,341.76,54.965 +657557,333.22,54.363 +657558,335.75,54.594 +657559,338.17,54.806 +657560,340.49,55.001 +657561,331.88,54.268 +657562,334.44,54.543 +657563,336.88,54.799 +657564,339.22,55.037 +657565,330.55,54.172 +657566,333.13,54.492 +657567,335.59,54.791 +657568,337.95,55.073 +657569,329.21,54.077 +657570,331.82,54.441 +657571,334.3,54.784 +657572,336.67,55.108 +657573,327.88,53.982 +657574,330.51,54.39 +657575,333.01,54.777 +657576,335.4,55.143 +657577,326.55,53.887 +657578,329.2,54.34 +657579,331.72,54.769 +657580,334.12,55.178 +657581,325.23,53.792 +657582,327.9,54.289 +657583,330.43,54.762 +657584,332.84,55.213 +657585,323.9,53.697 +657586,326.59,54.238 +657587,329.14,54.754 +657588,331.56,55.247 +657589,322.58,53.603 +657590,325.29,54.188 +657591,327.85,54.746 +657592,330.27,55.281 +657593,321.26,53.509 +657594,323.98,54.137 +657595,326.55,54.738 +657596,328.99,55.315 +657597,319.94,53.415 +657598,322.68,54.087 +657599,325.26,54.73 +657600,327.7,55.348 +657601,318.62,53.322 +657602,321.38,54.037 +657603,323.97,54.722 +657604,326.41,55.381 +657605,317.31,53.229 +657606,320.08,53.987 +657607,322.67,54.714 +657608,325.12,55.413 +657609,316,53.137 +657610,318.77,53.937 +657611,321.38,54.705 +657612,323.83,55.445 +657613,314.69,53.045 +657614,317.47,53.887 +657615,320.08,54.696 +657616,322.53,55.476 +657617,313.38,52.953 +657618,316.17,53.838 +657619,318.78,54.687 +657620,321.24,55.506 +657621,312.07,52.862 +657622,314.87,53.788 +657623,317.49,54.678 +657624,319.94,55.536 +657625,310.77,52.772 +657626,313.58,53.739 +657627,316.19,54.669 +657628,318.64,55.566 +657629,309.47,52.682 +657630,312.28,53.69 +657631,314.89,54.66 +657632,317.34,55.594 +657633,308.17,52.593 +657634,310.98,53.642 +657635,313.59,54.65 +657636,316.03,55.622 +657637,306.87,52.505 +657638,309.69,53.593 +657639,312.29,54.64 +657640,314.73,55.65 +657641,305.57,52.417 +657642,308.39,53.545 +657643,310.99,54.63 +657644,313.42,55.676 +657645,304.28,52.331 +657646,307.1,53.497 +657647,309.69,54.619 +657648,312.11,55.702 +657649,302.99,52.245 +657650,305.8,53.449 +657651,308.39,54.608 +657652,310.8,55.727 +657653,301.7,52.159 +657654,304.51,53.402 +657655,307.09,54.597 +657656,309.49,55.751 +657657,300.42,52.075 +657658,303.22,53.355 +657659,305.79,54.586 +657660,308.17,55.774 +657661,299.13,51.992 +657662,301.93,53.308 +657663,304.49,54.574 +657664,306.85,55.796 +657665,297.85,51.909 +657666,300.64,53.262 +657667,303.18,54.562 +657668,305.54,55.817 +657669,296.57,51.828 +657670,299.35,53.215 +657671,301.88,54.55 +657672,304.22,55.838 +657673,295.3,51.747 +657674,298.06,53.169 +657675,300.57,54.537 +657676,302.9,55.857 +657677,294.02,51.668 +657678,296.77,53.124 +657679,299.27,54.524 +657680,301.57,55.876 +657681,292.75,51.59 +657682,295.48,53.079 +657683,297.96,54.511 +657684,300.25,55.893 +657685,291.48,51.512 +657686,294.19,53.034 +657687,296.66,54.497 +657688,298.92,55.909 +657689,290.21,51.436 +657690,292.91,52.989 +657691,295.35,54.483 +657692,297.59,55.925 +657693,288.95,51.361 +657694,291.62,52.945 +657695,294.04,54.469 +657696,296.26,55.939 +657697,287.68,51.287 +657698,290.34,52.902 +657699,292.74,54.454 +657700,294.93,55.952 +657701,286.42,51.214 +657702,289.05,52.858 +657703,291.43,54.439 +657704,293.6,55.964 +657705,285.16,51.143 +657706,287.77,52.815 +657707,290.12,54.424 +657708,292.27,55.975 +657709,283.9,51.073 +657710,286.48,52.773 +657711,288.81,54.408 +657712,290.93,55.984 +657713,282.65,51.004 +657714,285.2,52.731 +657715,287.5,54.391 +657716,289.59,55.993 +657717,281.4,50.936 +657718,283.92,52.689 +657719,286.19,54.375 +657720,288.25,56 +657721,280.15,50.87 +657722,282.64,52.648 +657723,284.88,54.357 +657724,286.91,56.006 +657725,278.9,50.805 +657726,281.36,52.607 +657727,283.57,54.34 +657728,285.57,56.011 +657729,277.65,50.742 +657730,280.08,52.567 +657731,282.26,54.322 +657732,284.23,56.014 +657733,276.41,50.679 +657734,278.8,52.527 +657735,280.94,54.303 +657736,282.89,56.016 +657737,275.16,50.619 +657738,277.52,52.488 +657739,279.63,54.284 +657740,281.54,56.017 +657741,273.92,50.559 +657742,276.25,52.449 +657743,278.32,54.265 +657744,280.19,56.017 +657745,272.68,50.502 +657746,274.97,52.41 +657747,277.01,54.245 +657748,278.84,56.015 +657749,271.45,50.445 +657750,273.69,52.372 +657751,275.69,54.225 +657752,277.49,56.011 +657753,270.21,50.39 +657754,272.42,52.335 +657755,274.38,54.204 +657756,276.14,56.007 +657757,268.98,50.337 +657758,271.14,52.297 +657759,273.06,54.183 +657760,274.79,56.001 +657761,267.75,50.285 +657762,269.87,52.261 +657763,271.75,54.161 +657764,273.44,55.994 +657765,266.52,50.235 +657766,268.59,52.225 +657767,270.43,54.139 +657768,272.08,55.985 +657769,265.29,50.186 +657770,267.32,52.189 +657771,269.12,54.116 +657772,270.73,55.975 +657773,264.07,50.139 +657774,266.05,52.154 +657775,267.8,54.093 +657776,269.37,55.963 +657777,262.84,50.094 +657778,264.77,52.12 +657779,266.48,54.069 +657780,268.01,55.95 +657781,261.62,50.05 +657782,263.5,52.086 +657783,265.17,54.045 +657784,266.65,55.935 +657785,260.4,50.007 +657786,262.23,52.052 +657787,263.85,54.02 +657788,265.29,55.919 +657789,259.18,49.967 +657790,260.96,52.019 +657791,262.53,53.995 +657792,263.93,55.902 +657793,257.96,49.928 +657794,259.69,51.987 +657795,261.21,53.969 +657796,262.57,55.883 +657797,256.74,49.89 +657798,258.42,51.955 +657799,259.9,53.943 +657800,261.21,55.863 +657801,255.53,49.854 +657802,257.15,51.924 +657803,258.58,53.916 +657804,259.84,55.841 +657805,254.31,49.82 +657806,255.88,51.893 +657807,257.26,53.889 +657808,258.48,55.817 +657809,253.1,49.788 +657810,254.61,51.862 +657811,255.94,53.861 +657812,257.11,55.792 +657813,251.89,49.757 +657814,253.35,51.833 +657815,254.62,53.833 +657816,255.74,55.766 +657817,250.68,49.727 +657818,252.08,51.803 +657819,253.3,53.804 +657820,254.38,55.738 +657821,249.47,49.7 +657822,250.81,51.775 +657823,251.98,53.775 +657824,253.01,55.708 +657825,248.26,49.674 +657826,249.54,51.747 +657827,250.66,53.745 +657828,251.64,55.677 +657829,247.06,49.65 +657830,248.28,51.719 +657831,249.34,53.715 +657832,250.27,55.645 +657833,245.85,49.627 +657834,247.01,51.692 +657835,248.02,53.684 +657836,248.9,55.611 +657837,244.64,49.606 +657838,245.75,51.665 +657839,246.7,53.653 +657840,247.53,55.575 +657841,243.44,49.587 +657842,244.48,51.639 +657843,245.38,53.621 +657844,246.16,55.538 +657845,242.24,49.569 +657846,243.22,51.614 +657847,244.06,53.589 +657848,244.78,55.499 +657849,241.03,49.553 +657850,241.95,51.589 +657851,242.74,53.556 +657852,243.41,55.459 +657853,239.83,49.539 +657854,240.69,51.565 +657855,241.41,53.522 +657856,242.04,55.418 +657857,238.63,49.526 +657858,239.42,51.541 +657859,240.09,53.488 +657860,240.66,55.375 +657861,237.43,49.515 +657862,238.16,51.517 +657863,238.77,53.454 +657864,239.29,55.33 +657865,236.23,49.506 +657866,236.89,51.495 +657867,237.45,53.419 +657868,237.91,55.284 +657869,235.03,49.498 +657870,235.63,51.472 +657871,236.13,53.383 +657872,236.54,55.236 +657873,233.83,49.492 +657874,234.37,51.451 +657875,234.81,53.347 +657876,235.16,55.187 +657877,232.63,49.487 +657878,233.1,51.429 +657879,233.48,53.311 +657880,233.79,55.136 +657881,231.43,49.484 +657882,231.84,51.409 +657883,232.16,53.274 +657884,232.41,55.084 +657885,230.23,49.482 +657886,230.58,51.388 +657887,230.84,53.237 +657888,231.04,55.031 +657889,229.04,49.482 +657890,229.31,51.369 +657891,229.52,53.199 +657892,229.66,54.975 +657893,227.84,49.484 +657894,228.05,51.35 +657895,228.2,53.16 +657896,228.28,54.919 +657897,226.64,49.487 +657898,226.79,51.331 +657899,226.88,53.121 +657900,226.91,54.861 +657901,225.44,49.491 +657902,225.53,51.313 +657903,225.55,53.082 +657904,225.53,54.802 +657905,224.24,49.497 +657906,224.26,51.295 +657907,224.23,53.042 +657908,224.15,54.741 +657909,223.04,49.505 +657910,223,51.278 +657911,222.91,53.002 +657912,222.77,54.679 +657913,221.84,49.513 +657914,221.74,51.261 +657915,221.59,52.961 +657916,221.4,54.615 +657917,220.65,49.524 +657918,220.48,51.245 +657919,220.27,52.92 +657920,220.02,54.55 +657921,219.45,49.535 +657922,219.22,51.229 +657923,218.95,52.878 +657924,218.64,54.484 +657925,218.25,49.548 +657926,217.95,51.214 +657927,217.62,52.836 +657928,217.27,54.416 +657929,217.05,49.563 +657930,216.69,51.199 +657931,216.3,52.793 +657932,215.89,54.347 +657933,215.85,49.578 +657934,215.43,51.184 +657935,214.98,52.75 +657936,214.51,54.277 +657937,214.65,49.595 +657938,214.17,51.17 +657939,213.66,52.706 +657940,213.14,54.205 +657941,213.44,49.614 +657942,212.9,51.157 +657943,212.34,52.663 +657944,211.76,54.132 +657945,212.24,49.633 +657946,211.64,51.144 +657947,211.02,52.618 +657948,210.39,54.058 +657949,211.04,49.654 +657950,210.38,51.131 +657951,209.7,52.574 +657952,209.01,53.982 +657953,209.84,49.676 +657954,209.11,51.119 +657955,208.38,52.528 +657956,207.64,53.906 +657957,208.63,49.699 +657958,207.85,51.107 +657959,207.06,52.483 +657960,206.26,53.828 +657961,207.43,49.723 +657962,206.59,51.095 +657963,205.74,52.437 +657964,204.89,53.749 +657965,206.22,49.749 +657966,205.32,51.084 +657967,204.42,52.391 +657968,203.51,53.669 +657969,205.01,49.775 +657970,204.06,51.073 +657971,203.1,52.344 +657972,202.14,53.587 +657973,203.81,49.803 +657974,202.8,51.063 +657975,201.78,52.297 +657976,200.77,53.505 +657977,202.6,49.831 +657978,201.53,51.053 +657979,200.47,52.25 +657980,199.4,53.422 +657981,201.39,49.861 +657982,200.27,51.043 +657983,199.15,52.202 +657984,198.03,53.337 +657985,200.18,49.891 +657986,199,51.034 +657987,197.83,52.154 +657988,196.66,53.251 +657989,198.97,49.922 +657990,197.74,51.025 +657991,196.51,52.106 +657992,195.29,53.165 +657993,197.75,49.955 +657994,196.47,51.016 +657995,195.2,52.057 +657996,193.92,53.077 +657997,196.54,49.988 +657998,195.21,51.008 +657999,193.88,52.008 +658000,192.55,52.989 +658001,195.32,50.022 +658002,193.94,51 +658003,192.56,51.959 +658004,191.18,52.899 +658005,194.11,50.057 +658006,192.68,50.992 +658007,191.25,51.91 +658008,189.82,52.809 +658009,192.89,50.092 +658010,191.41,50.984 +658011,189.93,51.86 +658012,188.45,52.717 +658013,191.67,50.128 +658014,190.14,50.977 +658015,188.62,51.81 +658016,187.09,52.625 +658017,190.45,50.165 +658018,188.88,50.97 +658019,187.3,51.759 +658020,185.72,52.532 +658021,189.23,50.203 +658022,187.61,50.963 +658023,185.99,51.709 +658024,184.36,52.439 +658025,188,50.241 +658026,186.34,50.957 +658027,184.68,51.658 +658028,183,52.344 +658029,186.78,50.28 +658030,185.07,50.95 +658031,183.36,51.607 +658032,181.64,52.249 +658033,185.55,50.32 +658034,183.81,50.944 +658035,182.05,51.556 +658036,180.28,52.153 +658037,184.32,50.359 +658038,182.54,50.938 +658039,180.74,51.505 +658040,178.92,52.057 +658041,183.09,50.4 +658042,181.27,50.933 +658043,179.43,51.453 +658044,177.56,51.959 +658045,181.86,50.441 +658046,180,50.927 +658047,178.11,51.401 +658048,176.21,51.862 +658049,180.63,50.482 +658050,178.73,50.922 +658051,176.8,51.349 +658052,174.85,51.763 +658053,179.39,50.524 +658054,177.46,50.917 +658055,175.49,51.297 +658056,173.5,51.665 +658057,178.16,50.566 +658058,176.19,50.911 +658059,174.18,51.245 +658060,172.15,51.565 +658061,176.92,50.608 +658062,174.92,50.906 +658063,172.88,51.193 +658064,170.8,51.466 +658065,175.68,50.65 +658066,173.64,50.902 +658067,171.57,51.141 +658068,169.45,51.365 +658069,174.44,50.693 +658070,172.37,50.897 +658071,170.26,51.088 +658072,168.1,51.265 +658073,173.2,50.736 +658074,171.1,50.892 +658075,168.95,51.035 +658076,166.76,51.164 +658077,171.95,50.779 +658078,169.82,50.888 +658079,167.65,50.983 +658080,165.41,51.063 +658081,170.71,50.822 +658082,168.55,50.883 +658083,166.34,50.93 +658084,164.07,50.961 +658085,169.46,50.866 +658086,167.28,50.879 +658087,165.04,50.877 +658088,162.73,50.86 +658089,168.21,50.909 +658090,166,50.874 +658091,163.73,50.825 +658092,161.39,50.758 +658093,166.96,50.952 +658094,164.73,50.87 +658095,162.43,50.772 +658096,160.05,50.656 +658097,165.7,50.996 +658098,163.45,50.865 +658099,161.12,50.719 +658100,158.72,50.554 +658101,164.45,51.039 +658102,162.17,50.861 +658103,159.82,50.666 +658104,157.38,50.451 +658105,163.19,51.082 +658106,160.9,50.857 +658107,158.52,50.613 +658108,156.05,50.349 +658109,161.93,51.125 +658110,159.62,50.852 +658111,157.22,50.56 +658112,154.72,50.247 +658113,160.67,51.168 +658114,158.34,50.848 +658115,155.92,50.508 +658116,153.39,50.145 +658117,159.41,51.21 +658118,157.06,50.843 +658119,154.62,50.455 +658120,152.06,50.043 +658121,158.14,51.253 +658122,155.78,50.839 +658123,153.32,50.402 +658124,150.74,49.941 +658125,156.88,51.295 +658126,154.5,50.834 +658127,152.02,50.35 +658128,149.42,49.839 +658129,155.61,51.336 +658130,153.22,50.829 +658131,150.72,50.298 +658132,148.09,49.737 +658133,154.34,51.378 +658134,151.94,50.825 +658135,149.43,50.245 +658136,146.77,49.636 +658137,153.07,51.419 +658138,150.66,50.82 +658139,148.13,50.193 +658140,145.46,49.535 +658141,151.79,51.459 +658142,149.38,50.815 +658143,146.83,50.141 +658144,144.14,49.434 +658145,150.52,51.499 +658146,148.09,50.81 +658147,145.54,50.089 +658148,142.83,49.334 +658149,149.24,51.539 +658150,146.81,50.804 +658151,144.25,50.037 +658152,141.52,49.234 +658153,147.96,51.578 +658154,145.53,50.799 +658155,142.95,49.986 +658156,140.21,49.134 +658157,146.68,51.617 +658158,144.24,50.793 +658159,141.66,49.934 +658160,138.9,49.035 +658161,145.39,51.655 +658162,142.96,50.787 +658163,140.37,49.883 +658164,137.6,48.936 +658165,144.11,51.692 +658166,141.67,50.781 +658167,139.08,49.832 +658168,136.29,48.838 +658169,142.82,51.729 +658170,140.39,50.775 +658171,137.79,49.781 +658172,134.99,48.741 +658173,141.53,51.764 +658174,139.1,50.769 +658175,136.5,49.731 +658176,133.7,48.644 +658177,140.24,51.8 +658178,137.81,50.762 +658179,135.21,49.681 +658180,132.4,48.548 +658181,138.95,51.834 +658182,136.52,50.755 +658183,133.92,49.631 +658184,131.11,48.453 +658185,137.66,51.868 +658186,135.23,50.748 +658187,132.63,49.581 +658188,129.82,48.359 +658189,136.36,51.901 +658190,133.95,50.741 +658191,131.35,49.531 +658192,128.53,48.265 +658193,135.06,51.933 +658194,132.66,50.733 +658195,130.06,49.482 +658196,127.24,48.172 +658197,133.76,51.964 +658198,131.37,50.725 +658199,128.78,49.433 +658200,125.95,48.08 +658201,132.46,51.994 +658202,130.07,50.717 +658203,127.49,49.385 +658204,124.67,47.989 +658205,131.16,52.023 +658206,128.78,50.709 +658207,126.21,49.337 +658208,123.39,47.899 +658209,129.85,52.052 +658210,127.49,50.7 +658211,124.93,49.289 +658212,122.11,47.81 +658213,128.55,52.079 +658214,126.2,50.691 +658215,123.65,49.241 +658216,120.84,47.722 +658217,127.24,52.105 +658218,124.91,50.681 +658219,122.36,49.194 +658220,119.57,47.634 +658221,125.93,52.131 +658222,123.61,50.672 +658223,121.08,49.147 +658224,118.29,47.549 +658225,124.62,52.155 +658226,122.32,50.661 +658227,119.81,49.101 +658228,117.03,47.464 +658229,123.3,52.178 +658230,121.02,50.651 +658231,118.53,49.055 +658232,115.76,47.38 +658233,121.99,52.2 +658234,119.73,50.64 +658235,117.25,49.01 +658236,114.5,47.298 +658237,120.67,52.221 +658238,118.43,50.629 +658239,115.97,48.964 +658240,113.23,47.217 +658241,119.35,52.241 +658242,117.14,50.617 +658243,114.7,48.92 +658244,111.98,47.137 +658245,118.03,52.259 +658246,115.84,50.605 +658247,113.42,48.876 +658248,110.72,47.058 +658249,116.71,52.276 +658250,114.54,50.593 +658251,112.14,48.832 +658252,109.46,46.981 +658253,115.39,52.292 +658254,113.24,50.58 +658255,110.87,48.788 +658256,108.21,46.905 +658257,114.07,52.307 +658258,111.94,50.567 +658259,109.6,48.746 +658260,106.96,46.831 +658261,112.74,52.32 +658262,110.65,50.553 +658263,108.32,48.703 +658264,105.71,46.758 +658265,111.41,52.333 +658266,109.35,50.539 +658267,107.05,48.661 +658268,104.47,46.687 +658269,110.08,52.343 +658270,108.05,50.524 +658271,105.78,48.62 +658272,103.22,46.617 +658273,108.75,52.353 +658274,106.75,50.509 +658275,104.51,48.579 +658276,101.98,46.548 +658277,107.42,52.361 +658278,105.45,50.494 +658279,103.24,48.539 +658280,100.74,46.481 +658281,106.09,52.368 +658282,104.14,50.478 +658283,101.97,48.499 +658284,99.508,46.416 +658285,104.76,52.373 +658286,102.84,50.462 +658287,100.7,48.459 +658288,98.273,46.352 +658289,103.42,52.377 +658290,101.54,50.445 +658291,99.436,48.421 +658292,97.041,46.29 +658293,102.08,52.379 +658294,100.24,50.427 +658295,98.168,48.382 +658296,95.81,46.229 +658297,100.74,52.38 +658298,98.935,50.409 +658299,96.902,48.345 +658300,94.582,46.171 +658301,99.405,52.38 +658302,97.632,50.391 +658303,95.636,48.308 +658304,93.355,46.114 +658305,98.064,52.378 +658306,96.328,50.372 +658307,94.371,48.271 +658308,92.131,46.058 +658309,96.723,52.375 +658310,95.024,50.353 +658311,93.106,48.235 +658312,90.908,46.004 +658313,95.38,52.37 +658314,93.719,50.333 +658315,91.842,48.199 +658316,89.687,45.953 +658317,94.035,52.363 +658318,92.414,50.313 +658319,90.579,48.165 +658320,88.469,45.902 +658321,92.69,52.355 +658322,91.109,50.292 +658323,89.316,48.13 +658324,87.252,45.854 +658325,91.344,52.346 +658326,89.803,50.271 +658327,88.054,48.097 +658328,86.037,45.807 +658329,89.997,52.335 +658330,88.497,50.249 +658331,86.793,48.064 +658332,84.823,45.763 +658333,88.648,52.322 +658334,87.191,50.226 +658335,85.531,48.031 +658336,83.611,45.72 +658337,87.299,52.308 +658338,85.884,50.203 +658339,84.271,47.999 +658340,82.401,45.679 +658341,85.948,52.292 +658342,84.577,50.18 +658343,83.011,47.968 +658344,81.193,45.639 +658345,84.597,52.274 +658346,83.27,50.156 +658347,81.751,47.937 +658348,79.986,45.602 +658349,83.245,52.255 +658350,81.963,50.131 +658351,80.493,47.907 +658352,78.781,45.567 +658353,81.892,52.235 +658354,80.655,50.106 +658355,79.234,47.878 +658356,77.577,45.533 +658357,80.538,52.213 +658358,79.347,50.081 +658359,77.976,47.849 +658360,76.374,45.501 +658361,79.183,52.189 +658362,78.039,50.054 +658363,76.718,47.82 +658364,75.173,45.471 +658365,77.828,52.163 +658366,76.73,50.028 +658367,75.461,47.793 +658368,73.974,45.443 +658369,76.472,52.136 +658370,75.421,50 +658371,74.205,47.766 +658372,72.775,45.417 +658373,75.115,52.107 +658374,74.112,49.973 +658375,72.948,47.739 +658376,71.578,45.393 +658377,73.757,52.077 +658378,72.803,49.944 +658379,71.693,47.714 +658380,70.381,45.371 +658381,72.399,52.045 +658382,71.494,49.915 +658383,70.437,47.689 +658384,69.186,45.35 +658385,71.04,52.011 +658386,70.184,49.886 +658387,69.182,47.664 +658388,67.992,45.332 +658389,69.68,51.976 +658390,68.875,49.856 +658391,67.927,47.64 +658392,66.799,45.315 +658393,68.32,51.939 +658394,67.565,49.825 +658395,66.673,47.617 +658396,65.607,45.3 +658397,66.96,51.901 +658398,66.255,49.794 +658399,65.419,47.594 +658400,64.415,45.287 +658401,65.599,51.861 +658402,64.945,49.763 +658403,64.165,47.572 +658404,63.225,45.276 +658405,64.237,51.819 +658406,63.635,49.73 +658407,62.911,47.551 +658408,62.035,45.267 +658409,62.875,51.776 +658410,62.325,49.698 +658411,61.658,47.53 +658412,60.845,45.26 +658413,61.513,51.731 +658414,61.014,49.664 +658415,60.405,47.51 +658416,59.657,45.254 +658417,60.15,51.684 +658418,59.704,49.631 +658419,59.152,47.49 +658420,58.469,45.251 +658421,58.788,51.636 +658422,58.394,49.596 +658423,57.9,47.471 +658424,57.281,45.249 +658425,57.424,51.586 +658426,57.083,49.561 +658427,56.647,47.453 +658428,56.094,45.249 +658429,56.061,51.535 +658430,55.773,49.526 +658431,55.395,47.435 +658432,54.907,45.25 +658433,54.697,51.482 +658434,54.462,49.49 +658435,54.143,47.418 +658436,53.72,45.254 +658437,53.333,51.427 +658438,53.152,49.454 +658439,52.892,47.401 +658440,52.533,45.259 +658441,51.969,51.371 +658442,51.841,49.417 +658443,51.64,47.385 +658444,51.347,45.266 +658445,50.605,51.313 +658446,50.531,49.379 +658447,50.388,47.37 +658448,50.161,45.275 +658449,49.241,51.254 +658450,49.221,49.342 +658451,49.137,47.355 +658452,48.975,45.285 +658453,47.877,51.193 +658454,47.91,49.303 +658455,47.885,47.34 +658456,47.789,45.298 +658457,46.513,51.131 +658458,46.6,49.264 +658459,46.634,47.327 +658460,46.602,45.311 +658461,45.149,51.067 +658462,45.29,49.225 +658463,45.383,47.313 +658464,45.416,45.327 +658465,43.785,51.002 +658466,43.98,49.185 +658467,44.132,47.301 +658468,44.229,45.344 +658469,42.421,50.935 +658470,42.67,49.144 +658471,42.88,47.289 +658472,43.042,45.362 +658473,41.057,50.867 +658474,41.361,49.104 +658475,41.629,47.277 +658476,41.855,45.383 +658477,39.693,50.798 +658478,40.051,49.062 +658479,40.378,47.266 +658480,40.667,45.404 +658481,38.33,50.727 +658482,38.742,49.02 +658483,39.127,47.256 +658484,39.479,45.427 +658485,36.967,50.654 +658486,37.432,48.978 +658487,37.875,47.246 +658488,38.29,45.452 +658489,35.604,50.58 +658490,36.123,48.936 +658491,36.624,47.236 +658492,37.101,45.478 +658493,34.241,50.505 +658494,34.815,48.892 +658495,35.372,47.227 +658496,35.911,45.506 +658497,32.879,50.428 +658498,33.506,48.849 +658499,34.121,47.219 +658500,34.721,45.535 +658501,31.517,50.351 +658502,32.198,48.805 +658503,32.869,47.211 +658504,33.53,45.565 +658505,30.156,50.271 +658506,30.89,48.761 +658507,31.617,47.203 +658508,32.338,45.597 +658509,28.795,50.191 +658510,29.582,48.716 +658511,30.365,47.196 +658512,31.145,45.629 +658513,27.435,50.109 +658514,28.274,48.671 +658515,29.113,47.189 +658516,29.951,45.664 +658517,26.075,50.026 +658518,26.967,48.625 +658519,27.861,47.183 +658520,28.756,45.699 +658521,24.716,49.942 +658522,25.66,48.579 +658523,26.608,47.178 +658524,27.561,45.736 +658525,23.357,49.857 +658526,24.354,48.533 +658527,25.356,47.172 +658528,26.364,45.773 +658529,21.999,49.77 +658530,23.047,48.486 +658531,24.103,47.167 +658532,25.166,45.812 +658533,20.642,49.682 +658534,21.741,48.439 +658535,22.849,47.163 +658536,23.967,45.852 +658537,19.286,49.593 +658538,20.436,48.392 +658539,21.596,47.159 +658540,22.767,45.893 +658541,17.93,49.504 +658542,19.131,48.344 +658543,20.342,47.155 +658544,21.566,45.935 +658545,16.575,49.413 +658546,17.826,48.296 +658547,19.088,47.151 +658548,20.364,45.978 +658549,15.221,49.321 +658550,16.521,48.248 +658551,17.834,47.148 +658552,19.16,46.022 +658553,13.868,49.228 +658554,15.217,48.199 +658555,16.579,47.146 +658556,17.955,46.067 +658557,12.516,49.134 +658558,13.914,48.15 +658559,15.324,47.143 +658560,16.748,46.113 +658561,11.164,49.039 +658562,12.611,48.101 +658563,14.069,47.141 +658564,15.541,46.159 +658565,9.8138,48.943 +658566,11.308,48.052 +658567,12.814,47.14 +658568,14.331,46.207 +658569,8.4645,48.846 +658570,10.006,48.002 +658571,11.558,47.138 +658572,13.121,46.255 +658573,7.1163,48.749 +658574,8.7044,47.952 +658575,10.301,47.137 +658576,11.908,46.304 +658577,5.7691,48.65 +658578,7.4032,47.902 +658579,9.0447,47.136 +658580,10.695,46.353 +658581,4.4231,48.551 +658582,6.1026,47.852 +658583,7.7876,47.136 +658584,9.4792,46.403 +658585,3.0782,48.451 +658586,4.8024,47.801 +658587,6.5301,47.135 +658588,8.2622,46.454 +658589,1.7345,48.351 +658590,3.5028,47.751 +658591,5.2721,47.135 +658592,7.0437,46.505 +658593,0.39213,48.25 +658594,2.2037,47.7 +658595,4.0138,47.135 +658596,5.8235,46.557 +658597,359.05,48.148 +658598,0.90518,47.649 +658599,2.755,47.136 +658600,4.6017,46.609 +658601,357.71,48.045 +658602,359.61,47.598 +658603,1.4958,47.136 +658604,3.3781,46.662 +658605,356.37,47.942 +658606,358.31,47.546 +658607,0.2361,47.137 +658608,2.1529,46.715 +658609,355.04,47.839 +658610,357.01,47.495 +658611,358.98,47.138 +658612,0.92592,46.768 +658613,353.7,47.735 +658614,355.72,47.443 +658615,357.72,47.139 +658616,359.7,46.822 +658617,352.37,47.63 +658618,354.42,47.392 +658619,356.45,47.14 +658620,358.47,46.876 +658621,351.03,47.526 +658622,353.13,47.34 +658623,355.19,47.141 +658624,357.23,46.93 +658625,349.7,47.42 +658626,351.83,47.288 +658627,353.93,47.142 +658628,356,46.984 +658629,348.37,47.315 +658630,350.54,47.236 +658631,352.67,47.144 +658632,354.76,47.039 +658633,347.04,47.209 +658634,349.25,47.184 +658635,351.4,47.145 +658636,353.53,47.093 +658637,345.72,47.103 +658638,347.95,47.133 +658639,350.14,47.147 +658640,352.29,47.148 +658641,344.39,46.996 +658642,346.66,47.081 +658643,348.88,47.149 +658644,351.05,47.203 +658645,343.07,46.89 +658646,345.37,47.029 +658647,347.61,47.151 +658648,349.8,47.257 +658649,341.75,46.783 +658650,344.08,46.977 +658651,346.35,47.152 +658652,348.56,47.312 +658653,340.43,46.677 +658654,342.79,46.925 +658655,345.08,47.154 +658656,347.31,47.366 +658657,339.11,46.57 +658658,341.5,46.873 +658659,343.82,47.156 +658660,346.06,47.421 +658661,337.79,46.463 +658662,340.21,46.821 +658663,342.55,47.158 +658664,344.81,47.475 +658665,336.48,46.357 +658666,338.92,46.77 +658667,341.28,47.16 +658668,343.56,47.529 +658669,335.17,46.25 +658670,337.64,46.718 +658671,340.01,47.161 +658672,342.3,47.582 +658673,333.86,46.144 +658674,336.35,46.667 +658675,338.74,47.163 +658676,341.05,47.636 +658677,332.55,46.038 +658678,335.07,46.615 +658679,337.48,47.165 +658680,339.79,47.689 +658681,331.24,45.932 +658682,333.78,46.564 +658683,336.21,47.166 +658684,338.53,47.742 +658685,329.94,45.826 +658686,332.5,46.513 +658687,334.94,47.168 +658688,337.27,47.794 +658689,328.64,45.721 +658690,331.21,46.462 +658691,333.66,47.169 +658692,336,47.846 +658693,327.34,45.616 +658694,329.93,46.411 +658695,332.39,47.17 +658696,334.74,47.897 +658697,326.04,45.511 +658698,328.65,46.361 +658699,331.12,47.172 +658700,333.47,47.948 +658701,324.74,45.407 +658702,327.37,46.31 +658703,329.85,47.173 +658704,332.2,47.998 +658705,323.45,45.303 +658706,326.09,46.26 +658707,328.58,47.173 +658708,330.93,48.048 +658709,322.15,45.2 +658710,324.81,46.21 +658711,327.3,47.174 +658712,329.65,48.097 +658713,320.86,45.097 +658714,323.53,46.16 +658715,326.03,47.175 +658716,328.38,48.145 +658717,319.58,44.995 +658718,322.25,46.111 +658719,324.75,47.175 +658720,327.1,48.193 +658721,318.29,44.894 +658722,320.98,46.062 +658723,323.48,47.175 +658724,325.82,48.24 +658725,317.01,44.794 +658726,319.7,46.013 +658727,322.2,47.175 +658728,324.54,48.286 +658729,315.73,44.694 +658730,318.42,45.964 +658731,320.93,47.175 +658732,323.26,48.331 +658733,314.45,44.595 +658734,317.15,45.916 +658735,319.65,47.174 +658736,321.98,48.376 +658737,313.17,44.497 +658738,315.88,45.868 +658739,318.37,47.173 +658740,320.69,48.419 +658741,311.9,44.4 +658742,314.6,45.821 +658743,317.09,47.172 +658744,319.4,48.462 +658745,310.62,44.303 +658746,313.33,45.774 +658747,315.81,47.171 +658748,318.11,48.504 +658749,309.35,44.208 +658750,312.06,45.727 +658751,314.53,47.169 +658752,316.82,48.545 +658753,308.09,44.114 +658754,310.79,45.68 +658755,313.25,47.167 +658756,315.53,48.585 +658757,306.82,44.021 +658758,309.52,45.634 +658759,311.97,47.165 +658760,314.23,48.624 +658761,305.56,43.929 +658762,308.25,45.589 +658763,310.69,47.162 +658764,312.94,48.661 +658765,304.3,43.838 +658766,306.98,45.543 +658767,309.41,47.159 +658768,311.64,48.698 +658769,303.04,43.748 +658770,305.71,45.499 +658771,308.13,47.156 +658772,310.34,48.734 +658773,301.78,43.66 +658774,304.45,45.454 +658775,306.85,47.153 +658776,309.04,48.768 +658777,300.53,43.573 +658778,303.18,45.41 +658779,305.56,47.149 +658780,307.74,48.801 +658781,299.28,43.487 +658782,301.91,45.367 +658783,304.28,47.144 +658784,306.43,48.834 +658785,298.03,43.402 +658786,300.65,45.324 +658787,303,47.14 +658788,305.12,48.864 +658789,296.78,43.319 +658790,299.39,45.281 +658791,301.71,47.134 +658792,303.82,48.894 +658793,295.54,43.238 +658794,298.12,45.24 +658795,300.43,47.129 +658796,302.51,48.922 +658797,294.29,43.158 +658798,296.86,45.198 +658799,299.14,47.123 +658800,301.2,48.949 +658801,293.05,43.079 +658802,295.6,45.157 +658803,297.85,47.117 +658804,299.88,48.975 +658805,291.82,43.002 +658806,294.34,45.117 +658807,296.57,47.11 +658808,298.57,49 +658809,290.58,42.926 +658810,293.08,45.077 +658811,295.28,47.103 +658812,297.26,49.023 +658813,289.35,42.853 +658814,291.82,45.038 +658815,293.99,47.095 +658816,295.94,49.044 +658817,288.12,42.78 +658818,290.56,44.999 +658819,292.7,47.087 +658820,294.62,49.064 +658821,286.89,42.71 +658822,289.3,44.961 +658823,291.42,47.078 +658824,293.3,49.083 +658825,285.66,42.641 +658826,288.04,44.923 +658827,290.13,47.069 +658828,291.98,49.101 +658829,284.44,42.574 +658830,286.79,44.886 +658831,288.84,47.06 +658832,290.66,49.116 +658833,283.21,42.509 +658834,285.53,44.85 +658835,287.55,47.05 +658836,289.34,49.131 +658837,281.99,42.445 +658838,284.28,44.814 +658839,286.26,47.039 +658840,288.01,49.144 +658841,280.78,42.384 +658842,283.02,44.779 +658843,284.97,47.028 +658844,286.69,49.155 +658845,279.56,42.324 +658846,281.77,44.745 +658847,283.68,47.017 +658848,285.36,49.165 +658849,278.35,42.266 +658850,280.51,44.711 +658851,282.38,47.005 +658852,284.03,49.173 +658853,277.13,42.21 +658854,279.26,44.678 +658855,281.09,46.992 +658856,282.7,49.18 +658857,275.92,42.157 +658858,278.01,44.645 +658859,279.8,46.979 +658860,281.37,49.185 +658861,274.71,42.105 +658862,276.76,44.613 +658863,278.51,46.966 +658864,280.04,49.188 +658865,273.51,42.055 +658866,275.51,44.582 +658867,277.22,46.952 +658868,278.71,49.19 +658869,272.3,42.007 +658870,274.25,44.551 +658871,275.92,46.937 +658872,277.38,49.191 +658873,271.1,41.961 +658874,273.01,44.522 +658875,274.63,46.922 +658876,276.04,49.189 +658877,269.9,41.917 +658878,271.76,44.492 +658879,273.33,46.906 +658880,274.71,49.186 +658881,268.7,41.875 +658882,270.51,44.464 +658883,272.04,46.89 +658884,273.37,49.181 +658885,267.5,41.835 +658886,269.26,44.436 +658887,270.75,46.873 +658888,272.03,49.175 +658889,266.31,41.797 +658890,268.01,44.409 +658891,269.45,46.856 +658892,270.7,49.167 +658893,265.11,41.762 +658894,266.76,44.382 +658895,268.16,46.838 +658896,269.36,49.157 +658897,263.92,41.728 +658898,265.52,44.356 +658899,266.86,46.82 +658900,268.02,49.146 +658901,262.73,41.697 +658902,264.27,44.331 +658903,265.57,46.801 +658904,266.68,49.133 +658905,261.54,41.668 +658906,263.02,44.307 +658907,264.27,46.781 +658908,265.34,49.118 +658909,260.35,41.641 +658910,261.78,44.283 +658911,262.97,46.761 +658912,263.99,49.101 +658913,259.16,41.616 +658914,260.53,44.26 +658915,261.68,46.74 +658916,262.65,49.083 +658917,257.97,41.593 +658918,259.29,44.238 +658919,260.38,46.719 +658920,261.31,49.063 +658921,256.79,41.572 +658922,258.05,44.217 +658923,259.09,46.697 +658924,259.97,49.041 +658925,255.6,41.554 +658926,256.8,44.196 +658927,257.79,46.675 +658928,258.62,49.018 +658929,254.42,41.537 +658930,255.56,44.176 +658931,256.49,46.652 +658932,257.28,48.993 +658933,253.24,41.523 +658934,254.31,44.156 +658935,255.2,46.628 +658936,255.93,48.966 +658937,252.06,41.511 +658938,253.07,44.138 +658939,253.9,46.604 +658940,254.59,48.937 +658941,250.88,41.501 +658942,251.83,44.12 +658943,252.6,46.58 +658944,253.24,48.907 +658945,249.7,41.493 +658946,250.59,44.102 +658947,251.31,46.554 +658948,251.89,48.875 +658949,248.52,41.488 +658950,249.35,44.086 +658951,250.01,46.529 +658952,250.55,48.841 +658953,247.34,41.484 +658954,248.1,44.07 +658955,248.71,46.502 +658956,249.2,48.805 +658957,246.16,41.483 +658958,246.86,44.055 +658959,247.41,46.475 +658960,247.85,48.768 +658961,244.98,41.484 +658962,245.62,44.04 +658963,246.12,46.448 +658964,246.5,48.729 +658965,243.81,41.486 +658966,244.38,44.027 +658967,244.82,46.42 +658968,245.16,48.688 +658969,242.63,41.491 +658970,243.14,44.014 +658971,243.52,46.391 +658972,243.81,48.646 +658973,241.45,41.498 +658974,241.9,44.001 +658975,242.22,46.362 +658976,242.46,48.602 +658977,240.28,41.507 +658978,240.66,43.99 +658979,240.93,46.332 +658980,241.11,48.556 +658981,239.1,41.518 +658982,239.42,43.979 +658983,239.63,46.302 +658984,239.76,48.508 +658985,237.92,41.531 +658986,238.18,43.968 +658987,238.33,46.271 +658988,238.41,48.459 +658989,236.75,41.546 +658990,236.94,43.959 +658991,237.04,46.24 +658992,237.07,48.408 +658993,235.57,41.563 +658994,235.7,43.95 +658995,235.74,46.208 +658996,235.72,48.356 +658997,234.4,41.582 +658998,234.46,43.941 +658999,234.44,46.176 +659000,234.37,48.302 +659001,233.22,41.603 +659002,233.22,43.934 +659003,233.14,46.143 +659004,233.02,48.246 +659005,232.04,41.625 +659006,231.98,43.927 +659007,231.85,46.109 +659008,231.67,48.188 +659009,230.87,41.65 +659010,230.74,43.921 +659011,230.55,46.075 +659012,230.32,48.129 +659013,229.69,41.676 +659014,229.5,43.915 +659015,229.25,46.041 +659016,228.98,48.069 +659017,228.51,41.704 +659018,228.26,43.91 +659019,227.96,46.006 +659020,227.63,48.007 +659021,227.34,41.734 +659022,227.02,43.905 +659023,226.66,45.971 +659024,226.28,47.943 +659025,226.16,41.766 +659026,225.78,43.901 +659027,225.37,45.935 +659028,224.94,47.878 +659029,224.98,41.8 +659030,224.54,43.898 +659031,224.07,45.898 +659032,223.59,47.811 +659033,223.8,41.835 +659034,223.3,43.896 +659035,222.78,45.861 +659036,222.24,47.743 +659037,222.62,41.872 +659038,222.06,43.894 +659039,221.48,45.824 +659040,220.9,47.673 +659041,221.44,41.91 +659042,220.81,43.892 +659043,220.19,45.786 +659044,219.55,47.601 +659045,220.26,41.95 +659046,219.57,43.891 +659047,218.89,45.748 +659048,218.21,47.529 +659049,219.07,41.992 +659050,218.33,43.891 +659051,217.6,45.709 +659052,216.86,47.455 +659053,217.89,42.035 +659054,217.09,43.891 +659055,216.3,45.67 +659056,215.52,47.379 +659057,216.7,42.079 +659058,215.85,43.892 +659059,215.01,45.631 +659060,214.17,47.302 +659061,215.52,42.125 +659062,214.61,43.893 +659063,213.71,45.591 +659064,212.83,47.224 +659065,214.33,42.173 +659066,213.37,43.895 +659067,212.42,45.55 +659068,211.49,47.144 +659069,213.14,42.221 +659070,212.13,43.897 +659071,211.13,45.51 +659072,210.15,47.063 +659073,211.95,42.272 +659074,210.88,43.9 +659075,209.84,45.469 +659076,208.81,46.981 +659077,210.76,42.323 +659078,209.64,43.904 +659079,208.54,45.427 +659080,207.47,46.897 +659081,209.57,42.376 +659082,208.4,43.907 +659083,207.25,45.385 +659084,206.13,46.812 +659085,208.38,42.429 +659086,207.16,43.912 +659087,205.96,45.343 +659088,204.79,46.726 +659089,207.19,42.484 +659090,205.91,43.916 +659091,204.67,45.3 +659092,203.45,46.639 +659093,205.99,42.541 +659094,204.67,43.922 +659095,203.38,45.258 +659096,202.12,46.551 +659097,204.79,42.598 +659098,203.42,43.927 +659099,202.09,45.214 +659100,200.78,46.461 +659101,203.59,42.656 +659102,202.18,43.933 +659103,200.8,45.171 +659104,199.45,46.371 +659105,202.39,42.715 +659106,200.93,43.939 +659107,199.51,45.127 +659108,198.12,46.279 +659109,201.19,42.775 +659110,199.69,43.946 +659111,198.22,45.083 +659112,196.78,46.187 +659113,199.99,42.836 +659114,198.44,43.953 +659115,196.93,45.039 +659116,195.45,46.093 +659117,198.78,42.898 +659118,197.2,43.961 +659119,195.65,44.994 +659120,194.12,45.998 +659121,197.58,42.961 +659122,195.95,43.969 +659123,194.36,44.949 +659124,192.79,45.903 +659125,196.37,43.024 +659126,194.71,43.977 +659127,193.07,44.904 +659128,191.47,45.806 +659129,195.16,43.089 +659130,193.46,43.985 +659131,191.79,44.859 +659132,190.14,45.709 +659133,193.95,43.154 +659134,192.21,43.994 +659135,190.5,44.813 +659136,188.81,45.611 +659137,192.74,43.219 +659138,190.96,44.003 +659139,189.21,44.768 +659140,187.49,45.512 +659141,191.52,43.285 +659142,189.71,44.013 +659143,187.93,44.722 +659144,186.17,45.412 +659145,190.3,43.352 +659146,188.46,44.022 +659147,186.65,44.676 +659148,184.85,45.312 +659149,189.08,43.419 +659150,187.22,44.032 +659151,185.36,44.63 +659152,183.53,45.211 +659153,187.86,43.487 +659154,185.97,44.042 +659155,184.08,44.583 +659156,182.21,45.109 +659157,186.64,43.555 +659158,184.71,44.053 +659159,182.8,44.537 +659160,180.89,45.007 +659161,185.42,43.623 +659162,183.46,44.063 +659163,181.52,44.49 +659164,179.58,44.904 +659165,184.19,43.692 +659166,182.21,44.074 +659167,180.24,44.444 +659168,178.26,44.801 +659169,182.96,43.761 +659170,180.96,44.085 +659171,178.95,44.397 +659172,176.95,44.697 +659173,181.73,43.83 +659174,179.71,44.096 +659175,177.68,44.35 +659176,175.64,44.592 +659177,180.5,43.899 +659178,178.45,44.107 +659179,176.4,44.303 +659180,174.33,44.488 +659181,179.27,43.969 +659182,177.2,44.118 +659183,175.12,44.257 +659184,173.02,44.383 +659185,178.03,44.039 +659186,175.95,44.13 +659187,173.84,44.21 +659188,171.72,44.277 +659189,176.8,44.108 +659190,174.69,44.141 +659191,172.56,44.163 +659192,170.41,44.171 +659193,175.56,44.178 +659194,173.44,44.153 +659195,171.29,44.116 +659196,169.11,44.066 +659197,174.32,44.248 +659198,172.18,44.165 +659199,170.01,44.069 +659200,167.81,43.959 +659201,173.07,44.317 +659202,170.92,44.177 +659203,168.74,44.022 +659204,166.51,43.853 +659205,171.83,44.387 +659206,169.67,44.188 +659207,167.46,43.976 +659208,165.21,43.747 +659209,170.58,44.456 +659210,168.41,44.2 +659211,166.19,43.929 +659212,163.92,43.641 +659213,169.33,44.525 +659214,167.15,44.212 +659215,164.92,43.882 +659216,162.62,43.534 +659217,168.08,44.594 +659218,165.89,44.224 +659219,163.64,43.836 +659220,161.33,43.428 +659221,166.83,44.662 +659222,164.63,44.236 +659223,162.37,43.79 +659224,160.04,43.322 +659225,165.58,44.73 +659226,163.37,44.248 +659227,161.1,43.743 +659228,158.75,43.216 +659229,164.32,44.798 +659230,162.11,44.259 +659231,159.83,43.697 +659232,157.47,43.11 +659233,163.06,44.866 +659234,160.85,44.271 +659235,158.56,43.651 +659236,156.18,43.004 +659237,161.8,44.933 +659238,159.59,44.283 +659239,157.29,43.606 +659240,154.9,42.899 +659241,160.54,44.999 +659242,158.33,44.294 +659243,156.03,43.56 +659244,153.62,42.794 +659245,159.27,45.065 +659246,157.06,44.306 +659247,154.76,43.515 +659248,152.34,42.689 +659249,158.01,45.13 +659250,155.8,44.317 +659251,153.49,43.47 +659252,151.07,42.585 +659253,156.74,45.195 +659254,154.54,44.328 +659255,152.23,43.425 +659256,149.79,42.481 +659257,155.47,45.259 +659258,153.27,44.339 +659259,150.96,43.38 +659260,148.52,42.378 +659261,154.2,45.322 +659262,152.01,44.35 +659263,149.7,43.336 +659264,147.25,42.276 +659265,152.93,45.385 +659266,150.74,44.361 +659267,148.43,43.292 +659268,145.99,42.174 +659269,151.65,45.447 +659270,149.48,44.371 +659271,147.17,43.248 +659272,144.72,42.072 +659273,150.38,45.508 +659274,148.21,44.382 +659275,145.91,43.205 +659276,143.46,41.972 +659277,149.1,45.568 +659278,146.94,44.392 +659279,144.65,43.162 +659280,142.2,41.872 +659281,147.82,45.627 +659282,145.67,44.402 +659283,143.39,43.119 +659284,140.94,41.773 +659285,146.53,45.686 +659286,144.4,44.411 +659287,142.13,43.077 +659288,139.68,41.675 +659289,145.25,45.743 +659290,143.14,44.421 +659291,140.87,43.035 +659292,138.43,41.578 +659293,143.97,45.8 +659294,141.87,44.43 +659295,139.61,42.993 +659296,137.18,41.481 +659297,142.68,45.855 +659298,140.6,44.439 +659299,138.36,42.952 +659300,135.93,41.386 +659301,141.39,45.91 +659302,139.32,44.447 +659303,137.1,42.911 +659304,134.68,41.292 +659305,140.1,45.963 +659306,138.05,44.455 +659307,135.84,42.871 +659308,133.43,41.199 +659309,138.81,46.016 +659310,136.78,44.463 +659311,134.59,42.831 +659312,132.19,41.107 +659313,137.52,46.067 +659314,135.51,44.471 +659315,133.33,42.792 +659316,130.95,41.016 +659317,136.22,46.117 +659318,134.24,44.478 +659319,132.08,42.753 +659320,129.71,40.927 +659321,134.92,46.166 +659322,132.96,44.485 +659323,130.83,42.714 +659324,128.47,40.839 +659325,133.63,46.213 +659326,131.69,44.492 +659327,129.57,42.677 +659328,127.24,40.752 +659329,132.33,46.26 +659330,130.41,44.498 +659331,128.32,42.639 +659332,126.01,40.667 +659333,131.03,46.305 +659334,129.14,44.504 +659335,127.07,42.602 +659336,124.77,40.583 +659337,129.72,46.348 +659338,127.86,44.509 +659339,125.82,42.566 +659340,123.55,40.5 +659341,128.42,46.391 +659342,126.59,44.514 +659343,124.57,42.53 +659344,122.32,40.419 +659345,127.11,46.432 +659346,125.31,44.519 +659347,123.32,42.495 +659348,121.1,40.34 +659349,125.81,46.472 +659350,124.03,44.523 +659351,122.08,42.46 +659352,119.88,40.262 +659353,124.5,46.51 +659354,122.76,44.527 +659355,120.83,42.426 +659356,118.66,40.186 +659357,123.19,46.547 +659358,121.48,44.53 +659359,119.58,42.393 +659360,117.44,40.112 +659361,121.88,46.582 +659362,120.2,44.533 +659363,118.34,42.36 +659364,116.22,40.039 +659365,120.57,46.616 +659366,118.92,44.536 +659367,117.09,42.328 +659368,115.01,39.968 +659369,119.26,46.648 +659370,117.64,44.538 +659371,115.84,42.296 +659372,113.8,39.899 +659373,117.94,46.679 +659374,116.36,44.539 +659375,114.6,42.266 +659376,112.59,39.832 +659377,116.63,46.709 +659378,115.08,44.54 +659379,113.36,42.235 +659380,111.38,39.766 +659381,115.31,46.737 +659382,113.8,44.541 +659383,112.11,42.206 +659384,110.18,39.703 +659385,113.99,46.763 +659386,112.52,44.541 +659387,110.87,42.177 +659388,108.97,39.641 +659389,112.67,46.788 +659390,111.24,44.54 +659391,109.63,42.149 +659392,107.77,39.582 +659393,111.35,46.811 +659394,109.96,44.539 +659395,108.39,42.121 +659396,106.57,39.524 +659397,110.03,46.832 +659398,108.68,44.538 +659399,107.15,42.094 +659400,105.37,39.469 +659401,108.71,46.852 +659402,107.4,44.536 +659403,105.91,42.068 +659404,104.18,39.416 +659405,107.39,46.87 +659406,106.12,44.533 +659407,104.67,42.043 +659408,102.98,39.364 +659409,106.07,46.886 +659410,104.83,44.53 +659411,103.43,42.018 +659412,101.79,39.315 +659413,104.74,46.901 +659414,103.55,44.527 +659415,102.19,41.994 +659416,100.6,39.268 +659417,103.42,46.914 +659418,102.27,44.523 +659419,100.95,41.971 +659420,99.407,39.224 +659421,102.09,46.926 +659422,100.98,44.518 +659423,99.712,41.949 +659424,98.218,39.181 +659425,100.77,46.935 +659426,99.7,44.513 +659427,98.475,41.927 +659428,97.031,39.141 +659429,99.439,46.943 +659430,98.416,44.507 +659431,97.238,41.906 +659432,95.846,39.103 +659433,98.111,46.949 +659434,97.132,44.501 +659435,96.001,41.886 +659436,94.662,39.067 +659437,96.782,46.954 +659438,95.848,44.494 +659439,94.765,41.866 +659440,93.479,39.033 +659441,95.453,46.957 +659442,94.563,44.486 +659443,93.529,41.848 +659444,92.297,39.002 +659445,94.123,46.957 +659446,93.278,44.478 +659447,92.294,41.83 +659448,91.116,38.973 +659449,92.792,46.957 +659450,91.993,44.469 +659451,91.059,41.813 +659452,89.937,38.947 +659453,91.462,46.954 +659454,90.708,44.46 +659455,89.824,41.796 +659456,88.759,38.922 +659457,90.13,46.95 +659458,89.423,44.45 +659459,88.59,41.781 +659460,87.582,38.901 +659461,88.798,46.943 +659462,88.137,44.44 +659463,87.355,41.766 +659464,86.405,38.881 +659465,87.466,46.935 +659466,86.852,44.429 +659467,86.122,41.752 +659468,85.23,38.864 +659469,86.133,46.925 +659470,85.566,44.418 +659471,84.888,41.739 +659472,84.055,38.849 +659473,84.8,46.914 +659474,84.28,44.406 +659475,83.655,41.726 +659476,82.881,38.837 +659477,83.467,46.9 +659478,82.995,44.393 +659479,82.422,41.715 +659480,81.708,38.827 +659481,82.133,46.885 +659482,81.709,44.38 +659483,81.189,41.704 +659484,80.536,38.819 +659485,80.799,46.868 +659486,80.423,44.366 +659487,79.956,41.694 +659488,79.364,38.814 +659489,79.465,46.849 +659490,79.137,44.351 +659491,78.723,41.685 +659492,78.192,38.811 +659493,78.131,46.829 +659494,77.851,44.336 +659495,77.491,41.676 +659496,77.021,38.81 +659497,76.796,46.806 +659498,76.565,44.321 +659499,76.259,41.669 +659500,75.85,38.812 +659501,75.462,46.782 +659502,75.279,44.304 +659503,75.027,41.662 +659504,74.68,38.816 +659505,74.127,46.756 +659506,73.992,44.288 +659507,73.795,41.656 +659508,73.509,38.823 +659509,72.792,46.728 +659510,72.706,44.27 +659511,72.563,41.65 +659512,72.339,38.831 +659513,71.458,46.698 +659514,71.42,44.253 +659515,71.331,41.646 +659516,71.169,38.843 +659517,70.123,46.667 +659518,70.135,44.234 +659519,70.099,41.642 +659520,69.999,38.856 +659521,68.789,46.634 +659522,68.849,44.215 +659523,68.868,41.639 +659524,68.829,38.872 +659525,67.454,46.599 +659526,67.563,44.195 +659527,67.636,41.637 +659528,67.659,38.89 +659529,66.12,46.562 +659530,66.277,44.175 +659531,66.404,41.635 +659532,66.488,38.91 +659533,64.786,46.524 +659534,64.992,44.155 +659535,65.172,41.635 +659536,65.318,38.932 +659537,63.452,46.484 +659538,63.706,44.133 +659539,63.941,41.635 +659540,64.147,38.957 +659541,62.118,46.442 +659542,62.421,44.111 +659543,62.709,41.635 +659544,62.975,38.984 +659545,60.785,46.398 +659546,61.136,44.089 +659547,61.477,41.637 +659548,61.803,39.013 +659549,59.452,46.353 +659550,59.851,44.066 +659551,60.245,41.639 +659552,60.631,39.044 +659553,58.119,46.306 +659554,58.566,44.043 +659555,59.013,41.642 +659556,59.458,39.077 +659557,56.787,46.257 +659558,57.281,44.019 +659559,57.78,41.646 +659560,58.284,39.112 +659561,55.455,46.207 +659562,55.997,43.994 +659563,56.548,41.65 +659564,57.11,39.15 +659565,54.123,46.155 +659566,54.713,43.969 +659567,55.316,41.655 +659568,55.935,39.189 +659569,52.793,46.101 +659570,53.429,43.944 +659571,54.083,41.661 +659572,54.759,39.23 +659573,51.462,46.046 +659574,52.145,43.918 +659575,52.85,41.668 +659576,53.582,39.274 +659577,50.132,45.989 +659578,50.861,43.891 +659579,51.617,41.675 +659580,52.404,39.319 +659581,48.803,45.931 +659582,49.578,43.864 +659583,50.383,41.683 +659584,51.226,39.366 +659585,47.475,45.871 +659586,48.295,43.837 +659587,49.15,41.691 +659588,50.046,39.415 +659589,46.147,45.809 +659590,47.013,43.809 +659591,47.916,41.7 +659592,48.865,39.466 +659593,44.82,45.746 +659594,45.731,43.781 +659595,46.682,41.71 +659596,47.683,39.518 +659597,43.493,45.682 +659598,44.449,43.752 +659599,45.447,41.721 +659600,46.499,39.572 +659601,42.168,45.616 +659602,43.167,43.723 +659603,44.213,41.732 +659604,45.315,39.628 +659605,40.843,45.548 +659606,41.886,43.693 +659607,42.978,41.743 +659608,44.129,39.686 +659609,39.519,45.479 +659610,40.605,43.663 +659611,41.742,41.756 +659612,42.942,39.745 +659613,38.196,45.409 +659614,39.324,43.632 +659615,40.506,41.768 +659616,41.753,39.806 +659617,36.874,45.337 +659618,38.044,43.601 +659619,39.27,41.782 +659620,40.563,39.868 +659621,35.552,45.264 +659622,36.765,43.57 +659623,38.034,41.796 +659624,39.372,39.932 +659625,34.232,45.19 +659626,35.485,43.538 +659627,36.797,41.81 +659628,38.179,39.997 +659629,32.913,45.114 +659630,34.206,43.506 +659631,35.56,41.825 +659632,36.984,40.063 +659633,31.595,45.037 +659634,32.928,43.474 +659635,34.322,41.841 +659636,35.788,40.131 +659637,30.278,44.959 +659638,31.65,43.441 +659639,33.084,41.857 +659640,34.59,40.201 +659641,28.962,44.879 +659642,30.372,43.408 +659643,31.845,41.874 +659644,33.391,40.271 +659645,27.647,44.799 +659646,29.095,43.374 +659647,30.606,41.891 +659648,32.19,40.343 +659649,26.333,44.717 +659650,27.819,43.34 +659651,29.367,41.908 +659652,30.987,40.415 +659653,25.021,44.634 +659654,26.543,43.306 +659655,28.127,41.926 +659656,29.783,40.489 +659657,23.71,44.55 +659658,25.267,43.272 +659659,26.886,41.945 +659660,28.576,40.564 +659661,22.4,44.465 +659662,23.992,43.237 +659663,25.645,41.964 +659664,27.368,40.64 +659665,21.091,44.379 +659666,22.718,43.202 +659667,24.404,41.983 +659668,26.158,40.717 +659669,19.784,44.292 +659670,21.444,43.167 +659671,23.162,42.002 +659672,24.947,40.795 +659673,18.478,44.204 +659674,20.17,43.132 +659675,21.919,42.023 +659676,23.733,40.874 +659677,17.173,44.115 +659678,18.897,43.096 +659679,20.676,42.043 +659680,22.518,40.953 +659681,15.87,44.025 +659682,17.625,43.06 +659683,19.433,42.064 +659684,21.3,41.034 +659685,14.569,43.934 +659686,16.353,43.024 +659687,18.189,42.085 +659688,20.081,41.115 +659689,13.269,43.843 +659690,15.082,42.988 +659691,16.944,42.106 +659692,18.86,41.196 +659693,11.97,43.75 +659694,13.811,42.952 +659695,15.699,42.128 +659696,17.637,41.279 +659697,10.673,43.657 +659698,12.541,42.915 +659699,14.453,42.15 +659700,16.412,41.361 +659701,9.3773,43.563 +659702,11.272,42.879 +659703,13.207,42.172 +659704,15.185,41.445 +659705,8.0834,43.469 +659706,10.003,42.842 +659707,11.96,42.195 +659708,13.956,41.529 +659709,6.7911,43.374 +659710,8.7349,42.805 +659711,10.712,42.218 +659712,12.725,41.613 +659713,5.5004,43.278 +659714,7.4673,42.768 +659715,9.464,42.241 +659716,11.492,41.698 +659717,4.2114,43.182 +659718,6.2004,42.731 +659719,8.2153,42.264 +659720,10.258,41.783 +659721,2.9241,43.085 +659722,4.934,42.694 +659723,6.966,42.288 +659724,9.021,41.868 +659725,1.6386,42.988 +659726,3.6684,42.656 +659727,5.716,42.311 +659728,7.7823,41.953 +659729,0.35475,42.891 +659730,2.4034,42.619 +659731,4.4654,42.335 +659732,6.5416,42.039 +659733,359.07,42.793 +659734,1.139,42.582 +659735,3.2143,42.359 +659736,5.299,42.125 +659737,357.79,42.694 +659738,359.88,42.545 +659739,1.9625,42.383 +659740,4.0544,42.211 +659741,356.51,42.596 +659742,358.61,42.507 +659743,0.71009,42.407 +659744,2.8079,42.297 +659745,355.24,42.497 +659746,357.35,42.47 +659747,359.46,42.432 +659748,1.5594,42.383 +659749,353.96,42.398 +659750,356.09,42.433 +659751,358.2,42.456 +659752,0.30892,42.469 +659753,352.69,42.299 +659754,354.83,42.396 +659755,356.95,42.481 +659756,359.06,42.554 +659757,351.42,42.2 +659758,353.57,42.359 +659759,355.69,42.505 +659760,357.8,42.64 +659761,350.15,42.101 +659762,352.31,42.322 +659763,354.44,42.53 +659764,356.55,42.725 +659765,348.88,42.001 +659766,351.05,42.285 +659767,353.18,42.554 +659768,355.29,42.811 +659769,347.62,41.902 +659770,349.79,42.248 +659771,351.93,42.579 +659772,354.03,42.896 +659773,346.35,41.803 +659774,348.53,42.212 +659775,350.67,42.604 +659776,352.77,42.98 +659777,345.09,41.704 +659778,347.28,42.175 +659779,349.41,42.628 +659780,351.5,43.064 +659781,343.83,41.605 +659782,346.02,42.139 +659783,348.15,42.653 +659784,350.24,43.148 +659785,342.58,41.507 +659786,344.76,42.103 +659787,346.89,42.677 +659788,348.97,43.232 +659789,341.32,41.409 +659790,343.51,42.067 +659791,345.63,42.702 +659792,347.7,43.315 +659793,340.07,41.311 +659794,342.25,42.031 +659795,344.37,42.726 +659796,346.43,43.397 +659797,338.82,41.213 +659798,341,41.996 +659799,343.11,42.751 +659800,345.16,43.479 +659801,337.57,41.116 +659802,339.75,41.961 +659803,341.85,42.775 +659804,343.88,43.56 +659805,336.32,41.02 +659806,338.5,41.926 +659807,340.59,42.799 +659808,342.6,43.64 +659809,335.07,40.924 +659810,337.24,41.891 +659811,339.32,42.823 +659812,341.33,43.72 +659813,333.83,40.828 +659814,335.99,41.857 +659815,338.06,42.846 +659816,340.05,43.799 +659817,332.59,40.733 +659818,334.74,41.823 +659819,336.8,42.87 +659820,338.76,43.877 +659821,331.35,40.639 +659822,333.49,41.789 +659823,335.53,42.893 +659824,337.48,43.955 +659825,330.11,40.546 +659826,332.24,41.756 +659827,334.27,42.917 +659828,336.2,44.031 +659829,328.88,40.453 +659830,331,41.723 +659831,333,42.94 +659832,334.91,44.107 +659833,327.65,40.362 +659834,329.75,41.69 +659835,331.74,42.962 +659836,333.62,44.182 +659837,326.42,40.271 +659838,328.5,41.658 +659839,330.47,42.985 +659840,332.33,44.256 +659841,325.19,40.181 +659842,327.26,41.627 +659843,329.2,43.007 +659844,331.04,44.329 +659845,323.96,40.092 +659846,326.01,41.595 +659847,327.93,43.029 +659848,329.75,44.401 +659849,322.74,40.004 +659850,324.77,41.564 +659851,326.66,43.051 +659852,328.45,44.471 +659853,321.51,39.917 +659854,323.52,41.534 +659855,325.4,43.072 +659856,327.16,44.541 +659857,320.29,39.832 +659858,322.28,41.504 +659859,324.13,43.093 +659860,325.86,44.61 +659861,319.07,39.747 +659862,321.03,41.474 +659863,322.86,43.114 +659864,324.56,44.677 +659865,317.86,39.664 +659866,319.79,41.445 +659867,321.58,43.135 +659868,323.26,44.743 +659869,316.64,39.582 +659870,318.55,41.417 +659871,320.31,43.155 +659872,321.96,44.808 +659873,315.43,39.502 +659874,317.31,41.389 +659875,319.04,43.175 +659876,320.66,44.872 +659877,314.22,39.423 +659878,316.07,41.361 +659879,317.77,43.194 +659880,319.35,44.934 +659881,313.01,39.345 +659882,314.83,41.335 +659883,316.5,43.213 +659884,318.05,44.996 +659885,311.8,39.269 +659886,313.59,41.308 +659887,315.22,43.232 +659888,316.74,45.055 +659889,310.6,39.194 +659890,312.35,41.283 +659891,313.95,43.25 +659892,315.44,45.114 +659893,309.39,39.121 +659894,311.11,41.257 +659895,312.68,43.268 +659896,314.13,45.171 +659897,308.19,39.05 +659898,309.87,41.233 +659899,311.4,43.285 +659900,312.82,45.227 +659901,306.99,38.98 +659902,308.64,41.209 +659903,310.13,43.302 +659904,311.51,45.281 +659905,305.8,38.912 +659906,307.4,41.186 +659907,308.85,43.319 +659908,310.19,45.334 +659909,304.6,38.845 +659910,306.16,41.163 +659911,307.58,43.335 +659912,308.88,45.385 +659913,303.4,38.781 +659914,304.93,41.141 +659915,306.3,43.351 +659916,307.57,45.435 +659917,302.21,38.718 +659918,303.69,41.12 +659919,305.03,43.366 +659920,306.25,45.483 +659921,301.02,38.657 +659922,302.46,41.099 +659923,303.75,43.381 +659924,304.93,45.53 +659925,299.83,38.598 +659926,301.22,41.079 +659927,302.47,43.395 +659928,303.62,45.575 +659929,298.64,38.541 +659930,299.99,41.06 +659931,301.19,43.409 +659932,302.3,45.618 +659933,297.45,38.486 +659934,298.75,41.041 +659935,299.92,43.422 +659936,300.98,45.66 +659937,296.27,38.433 +659938,297.52,41.023 +659939,298.64,43.435 +659940,299.66,45.701 +659941,295.08,38.382 +659942,296.29,41.006 +659943,297.36,43.448 +659944,298.34,45.74 +659945,293.9,38.333 +659946,295.05,40.989 +659947,296.08,43.459 +659948,297.02,45.777 +659949,292.72,38.287 +659950,293.82,40.974 +659951,294.8,43.471 +659952,295.7,45.812 +659953,291.54,38.242 +659954,292.59,40.959 +659955,293.52,43.481 +659956,294.37,45.846 +659957,290.36,38.2 +659958,291.36,40.944 +659959,292.24,43.492 +659960,293.05,45.878 +659961,289.18,38.16 +659962,290.13,40.931 +659963,290.97,43.501 +659964,291.73,45.908 +659965,288.01,38.122 +659966,288.9,40.918 +659967,289.69,43.511 +659968,290.4,45.936 +659969,286.83,38.086 +659970,287.67,40.906 +659971,288.41,43.519 +659972,289.08,45.963 +659973,285.65,38.053 +659974,286.43,40.895 +659975,287.13,43.527 +659976,287.75,45.988 +659977,284.48,38.022 +659978,285.2,40.885 +659979,285.84,43.535 +659980,286.42,46.012 +659981,283.31,37.993 +659982,283.97,40.875 +659983,284.56,43.541 +659984,285.1,46.033 +659985,282.13,37.967 +659986,282.74,40.866 +659987,283.28,43.548 +659988,283.77,46.053 +659989,280.96,37.943 +659990,281.51,40.858 +659991,282,43.554 +659992,282.44,46.071 +659993,279.79,37.921 +659994,280.29,40.851 +659995,280.72,43.559 +659996,281.12,46.087 +659997,278.62,37.902 +659998,279.06,40.845 +659999,279.44,43.563 +660000,279.79,46.101 +660001,277.45,37.885 +660002,277.83,40.839 +660003,278.16,43.567 +660004,278.46,46.114 +660005,276.28,37.871 +660006,276.6,40.835 +660007,276.88,43.571 +660008,277.13,46.125 +660009,275.11,37.859 +660010,275.37,40.831 +660011,275.6,43.574 +660012,275.8,46.134 +660013,273.94,37.85 +660014,274.14,40.828 +660015,274.31,43.576 +660016,274.47,46.141 +660017,272.77,37.843 +660018,272.91,40.825 +660019,273.03,43.578 +660020,273.14,46.146 +660021,271.6,37.838 +660022,271.68,40.824 +660023,271.75,43.579 +660024,271.81,46.149 +660025,270.43,37.836 +660026,270.45,40.823 +660027,270.47,43.579 +660028,270.49,46.151 +660029,269.27,37.836 +660030,269.22,40.823 +660031,269.19,43.579 +660032,269.16,46.151 +660033,268.1,37.839 +660034,268,40.824 +660035,267.91,43.579 +660036,267.83,46.149 +660037,266.93,37.844 +660038,266.77,40.826 +660039,266.63,43.578 +660040,266.5,46.145 +660041,265.76,37.852 +660042,265.54,40.829 +660043,265.34,43.576 +660044,265.17,46.139 +660045,264.59,37.862 +660046,264.31,40.832 +660047,264.06,43.573 +660048,263.84,46.131 +660049,263.42,37.875 +660050,263.08,40.836 +660051,262.78,43.57 +660052,262.51,46.122 +660053,262.25,37.89 +660054,261.85,40.841 +660055,261.5,43.567 +660056,261.18,46.111 +660057,261.08,37.908 +660058,260.62,40.847 +660059,260.22,43.563 +660060,259.86,46.098 +660061,259.91,37.928 +660062,259.39,40.854 +660063,258.94,43.558 +660064,258.53,46.083 +660065,258.74,37.95 +660066,258.16,40.861 +660067,257.66,43.553 +660068,257.2,46.066 +660069,257.56,37.975 +660070,256.93,40.87 +660071,256.38,43.547 +660072,255.87,46.048 +660073,256.39,38.002 +660074,255.7,40.879 +660075,255.1,43.54 +660076,254.55,46.028 +660077,255.22,38.031 +660078,254.47,40.889 +660079,253.81,43.533 +660080,253.22,46.006 +660081,254.04,38.063 +660082,253.24,40.899 +660083,252.53,43.526 +660084,251.89,45.982 +660085,252.87,38.097 +660086,252.01,40.911 +660087,251.25,43.518 +660088,250.57,45.957 +660089,251.69,38.133 +660090,250.78,40.923 +660091,249.97,43.509 +660092,249.24,45.929 +660093,250.51,38.172 +660094,249.55,40.936 +660095,248.69,43.5 +660096,247.92,45.9 +660097,249.33,38.213 +660098,248.32,40.95 +660099,247.41,43.49 +660100,246.59,45.87 +660101,248.16,38.256 +660102,247.09,40.964 +660103,246.14,43.48 +660104,245.27,45.837 +660105,246.97,38.301 +660106,245.85,40.979 +660107,244.86,43.469 +660108,243.95,45.803 +660109,245.79,38.349 +660110,244.62,40.995 +660111,243.58,43.457 +660112,242.63,45.767 +660113,244.61,38.398 +660114,243.39,41.012 +660115,242.3,43.445 +660116,241.31,45.73 +660117,243.42,38.45 +660118,242.16,41.03 +660119,241.02,43.433 +660120,239.99,45.691 +660121,242.24,38.503 +660122,240.92,41.048 +660123,239.74,43.42 +660124,238.67,45.65 +660125,241.05,38.559 +660126,239.69,41.067 +660127,238.47,43.407 +660128,237.35,45.608 +660129,239.86,38.616 +660130,238.45,41.086 +660131,237.19,43.393 +660132,236.03,45.564 +660133,238.67,38.676 +660134,237.22,41.106 +660135,235.91,43.378 +660136,234.71,45.518 +660137,237.48,38.737 +660138,235.98,41.127 +660139,234.63,43.364 +660140,233.4,45.471 +660141,236.29,38.801 +660142,234.75,41.149 +660143,233.36,43.348 +660144,232.08,45.422 +660145,235.09,38.866 +660146,233.51,41.171 +660147,232.08,43.333 +660148,230.77,45.372 +660149,233.89,38.933 +660150,232.28,41.194 +660151,230.81,43.316 +660152,229.45,45.321 +660153,232.69,39.002 +660154,231.04,41.218 +660155,229.53,43.3 +660156,228.14,45.267 +660157,231.49,39.072 +660158,229.8,41.242 +660159,228.26,43.282 +660160,226.83,45.213 +660161,230.29,39.144 +660162,228.56,41.267 +660163,226.98,43.265 +660164,225.52,45.157 +660165,229.09,39.217 +660166,227.32,41.292 +660167,225.71,43.247 +660168,224.21,45.099 +660169,227.88,39.293 +660170,226.08,41.318 +660171,224.44,43.229 +660172,222.91,45.041 +660173,226.67,39.369 +660174,224.84,41.345 +660175,223.16,43.21 +660176,221.6,44.98 +660177,225.46,39.448 +660178,223.6,41.372 +660179,221.89,43.191 +660180,220.3,44.919 +660181,224.25,39.527 +660182,222.36,41.399 +660183,220.62,43.171 +660184,218.99,44.856 +660185,223.04,39.608 +660186,221.12,41.427 +660187,219.35,43.151 +660188,217.69,44.792 +660189,221.82,39.69 +660190,219.88,41.456 +660191,218.08,43.131 +660192,216.39,44.727 +660193,220.61,39.774 +660194,218.64,41.485 +660195,216.81,43.111 +660196,215.09,44.66 +660197,219.39,39.859 +660198,217.39,41.515 +660199,215.54,43.09 +660200,213.79,44.593 +660201,218.17,39.945 +660202,216.15,41.545 +660203,214.27,43.069 +660204,212.49,44.524 +660205,216.94,40.032 +660206,214.91,41.576 +660207,213,43.047 +660208,211.2,44.454 +660209,215.72,40.12 +660210,213.66,41.607 +660211,211.73,43.026 +660212,209.91,44.383 +660213,214.49,40.209 +660214,212.41,41.638 +660215,210.46,43.004 +660216,208.61,44.311 +660217,213.26,40.299 +660218,211.17,41.67 +660219,209.19,42.981 +660220,207.32,44.238 +660221,212.03,40.391 +660222,209.92,41.703 +660223,207.93,42.959 +660224,206.03,44.164 +660225,210.8,40.483 +660226,208.67,41.735 +660227,206.66,42.936 +660228,204.75,44.089 +660229,209.56,40.575 +660230,207.42,41.769 +660231,205.4,42.913 +660232,203.46,44.013 +660233,208.32,40.669 +660234,206.18,41.802 +660235,204.13,42.89 +660236,202.17,43.936 +660237,207.08,40.763 +660238,204.93,41.836 +660239,202.87,42.866 +660240,200.89,43.858 +660241,205.84,40.858 +660242,203.67,41.87 +660243,201.6,42.843 +660244,199.61,43.78 +660245,204.6,40.954 +660246,202.42,41.904 +660247,200.34,42.819 +660248,198.33,43.701 +660249,203.35,41.05 +660250,201.17,41.939 +660251,199.08,42.795 +660252,197.05,43.621 +660253,202.1,41.147 +660254,199.92,41.974 +660255,197.81,42.771 +660256,195.78,43.54 +660257,200.85,41.244 +660258,198.67,42.009 +660259,196.55,42.747 +660260,194.5,43.459 +660261,199.6,41.342 +660262,197.41,42.045 +660263,195.29,42.723 +660264,193.23,43.377 +660265,198.35,41.44 +660266,196.16,42.081 +660267,194.03,42.698 +660268,191.96,43.294 +660269,197.09,41.538 +660270,194.9,42.117 +660271,192.77,42.674 +660272,190.69,43.212 +660273,195.83,41.637 +660274,193.65,42.153 +660275,191.51,42.65 +660276,189.43,43.128 +660277,194.57,41.736 +660278,192.39,42.189 +660279,190.25,42.625 +660280,188.16,43.044 +660281,193.31,41.835 +660282,191.13,42.226 +660283,189,42.6 +660284,186.9,42.96 +660285,192.05,41.934 +660286,189.87,42.262 +660287,187.74,42.576 +660288,185.64,42.875 +660289,190.78,42.033 +660290,188.62,42.299 +660291,186.48,42.551 +660292,184.38,42.79 +660293,189.51,42.133 +660294,187.36,42.336 +660295,185.23,42.527 +660296,183.12,42.705 +660297,188.24,42.232 +660298,186.1,42.373 +660299,183.97,42.502 +660300,181.86,42.62 +660301,186.97,42.331 +660302,184.84,42.41 +660303,182.72,42.478 +660304,180.61,42.534 +660305,185.7,42.43 +660306,183.57,42.447 +660307,181.46,42.453 +660308,179.36,42.448 +660309,184.42,42.529 +660310,182.31,42.485 +660311,180.21,42.429 +660312,178.11,42.362 +660313,183.14,42.628 +660314,181.05,42.522 +660315,178.96,42.405 +660316,176.86,42.276 +660317,181.87,42.726 +660318,179.79,42.559 +660319,177.7,42.381 +660320,175.61,42.191 +660321,180.58,42.825 +660322,178.52,42.597 +660323,176.45,42.357 +660324,174.37,42.105 +660325,179.3,42.923 +660326,177.26,42.634 +660327,175.2,42.333 +660328,173.13,42.019 +660329,178.02,43.02 +660330,175.99,42.671 +660331,173.95,42.309 +660332,171.89,41.933 +660333,176.73,43.117 +660334,174.73,42.708 +660335,172.7,42.285 +660336,170.65,41.848 +660337,175.44,43.214 +660338,173.46,42.746 +660339,171.45,42.262 +660340,169.41,41.763 +660341,174.15,43.31 +660342,172.19,42.783 +660343,170.2,42.239 +660344,168.18,41.678 +660345,172.86,43.405 +660346,170.93,42.82 +660347,168.95,42.216 +660348,166.95,41.594 +660349,171.57,43.5 +660350,169.66,42.857 +660351,167.71,42.193 +660352,165.72,41.509 +660353,170.27,43.595 +660354,168.39,42.894 +660355,166.46,42.171 +660356,164.49,41.426 +660357,168.98,43.688 +660358,167.12,42.93 +660359,165.21,42.149 +660360,163.26,41.343 +660361,167.68,43.781 +660362,165.85,42.967 +660363,163.97,42.127 +660364,162.04,41.26 +660365,166.38,43.873 +660366,164.58,43.003 +660367,162.72,42.105 +660368,160.81,41.178 +660369,165.08,43.965 +660370,163.3,43.039 +660371,161.48,42.084 +660372,159.59,41.096 +660373,163.78,44.055 +660374,162.03,43.075 +660375,160.23,42.063 +660376,158.37,41.016 +660377,162.47,44.145 +660378,160.76,43.111 +660379,158.99,42.042 +660380,157.16,40.936 +660381,161.17,44.234 +660382,159.49,43.147 +660383,157.75,42.022 +660384,155.94,40.856 +660385,159.86,44.321 +660386,158.21,43.182 +660387,156.51,42.002 +660388,154.73,40.778 +660389,158.55,44.408 +660390,156.94,43.217 +660391,155.26,41.982 +660392,153.52,40.7 +660393,157.25,44.494 +660394,155.66,43.252 +660395,154.02,41.963 +660396,152.31,40.624 +660397,155.94,44.579 +660398,154.39,43.287 +660399,152.78,41.945 +660400,151.1,40.548 +660401,154.62,44.663 +660402,153.11,43.321 +660403,151.54,41.926 +660404,149.9,40.474 +660405,153.31,44.745 +660406,151.84,43.355 +660407,150.3,41.908 +660408,148.69,40.4 +660409,152,44.827 +660410,150.56,43.389 +660411,149.06,41.891 +660412,147.49,40.328 +660413,150.68,44.907 +660414,149.28,43.422 +660415,147.82,41.874 +660416,146.29,40.256 +660417,149.36,44.986 +660418,148,43.455 +660419,146.58,41.858 +660420,145.09,40.186 +660421,148.05,45.064 +660422,146.73,43.488 +660423,145.35,41.842 +660424,143.89,40.118 +660425,146.73,45.141 +660426,145.45,43.52 +660427,144.11,41.827 +660428,142.7,40.05 +660429,145.41,45.216 +660430,144.17,43.552 +660431,142.87,41.812 +660432,141.5,39.984 +660433,144.09,45.29 +660434,142.89,43.584 +660435,141.63,41.797 +660436,140.31,39.919 +660437,142.77,45.363 +660438,141.61,43.615 +660439,140.4,41.784 +660440,139.12,39.856 +660441,141.44,45.434 +660442,140.33,43.646 +660443,139.16,41.77 +660444,137.93,39.794 +660445,140.12,45.504 +660446,139.05,43.677 +660447,137.93,41.758 +660448,136.74,39.734 +660449,138.8,45.573 +660450,137.77,43.707 +660451,136.69,41.746 +660452,135.55,39.675 +660453,137.47,45.64 +660454,136.49,43.736 +660455,135.45,41.734 +660456,134.37,39.618 +660457,136.14,45.705 +660458,135.2,43.765 +660459,134.22,41.723 +660460,133.18,39.563 +660461,134.82,45.769 +660462,133.92,43.794 +660463,132.99,41.713 +660464,132,39.509 +660465,133.49,45.832 +660466,132.64,43.822 +660467,131.75,41.704 +660468,130.82,39.457 +660469,132.16,45.893 +660470,131.36,43.85 +660471,130.52,41.695 +660472,129.64,39.407 +660473,130.83,45.953 +660474,130.07,43.878 +660475,129.28,41.686 +660476,128.46,39.359 +660477,129.5,46.011 +660478,128.79,43.904 +660479,128.05,41.679 +660480,127.28,39.312 +660481,128.17,46.067 +660482,127.51,43.931 +660483,126.82,41.672 +660484,126.1,39.268 +660485,126.84,46.122 +660486,126.22,43.957 +660487,125.58,41.665 +660488,124.93,39.225 +660489,125.51,46.175 +660490,124.94,43.982 +660491,124.35,41.66 +660492,123.75,39.184 +660493,124.18,46.227 +660494,123.65,44.007 +660495,123.12,41.655 +660496,122.58,39.145 +660497,122.85,46.277 +660498,122.37,44.031 +660499,121.89,41.651 +660500,121.4,39.109 +660501,121.51,46.325 +660502,121.08,44.055 +660503,120.65,41.647 +660504,120.23,39.074 +660505,120.18,46.371 +660506,119.8,44.078 +660507,119.42,41.645 +660508,119.05,39.041 +660509,118.85,46.416 +660510,118.51,44.101 +660511,118.19,41.642 +660512,117.88,39.011 +660513,117.51,46.459 +660514,117.23,44.123 +660515,116.96,41.641 +660516,116.71,38.983 +660517,116.18,46.501 +660518,115.94,44.145 +660519,115.73,41.641 +660520,115.54,38.956 +660521,114.85,46.54 +660522,114.66,44.166 +660523,114.49,41.641 +660524,114.37,38.932 +660525,113.51,46.578 +660526,113.37,44.187 +660527,113.26,41.642 +660528,113.2,38.911 +660529,112.18,46.614 +660530,112.08,44.207 +660531,112.03,41.644 +660532,112.03,38.891 +660533,110.84,46.649 +660534,110.8,44.226 +660535,110.8,41.646 +660536,110.86,38.874 +660537,109.51,46.682 +660538,109.51,44.245 +660539,109.57,41.649 +660540,109.69,38.859 +660541,108.17,46.712 +660542,108.23,44.263 +660543,108.33,41.653 +660544,108.52,38.846 +660545,106.84,46.742 +660546,106.94,44.281 +660547,107.1,41.658 +660548,107.35,38.836 +660549,105.5,46.769 +660550,105.65,44.298 +660551,105.87,41.664 +660552,106.18,38.827 +660553,104.17,46.794 +660554,104.37,44.315 +660555,104.64,41.67 +660556,105.01,38.822 +660557,102.83,46.818 +660558,103.08,44.331 +660559,103.41,41.677 +660560,103.83,38.818 +660561,101.5,46.84 +660562,101.8,44.346 +660563,102.17,41.685 +660564,102.66,38.817 +660565,100.17,46.86 +660566,100.51,44.361 +660567,100.94,41.694 +660568,101.49,38.818 +660569,98.831,46.879 +660570,99.223,44.376 +660571,99.708,41.703 +660572,100.32,38.822 +660573,97.497,46.895 +660574,97.937,44.389 +660575,98.475,41.713 +660576,99.148,38.828 +660577,96.164,46.91 +660578,96.651,44.402 +660579,97.242,41.724 +660580,97.975,38.836 +660581,94.83,46.923 +660582,95.365,44.415 +660583,96.008,41.736 +660584,96.801,38.847 +660585,93.497,46.934 +660586,94.079,44.427 +660587,94.775,41.749 +660588,95.627,38.86 +660589,92.164,46.943 +660590,92.794,44.438 +660591,93.541,41.762 +660592,94.452,38.876 +660593,90.832,46.951 +660594,91.508,44.449 +660595,92.307,41.777 +660596,93.276,38.893 +660597,89.5,46.956 +660598,90.222,44.459 +660599,91.072,41.792 +660600,92.099,38.914 +660601,88.169,46.96 +660602,88.937,44.469 +660603,89.838,41.807 +660604,90.922,38.936 +660605,86.838,46.962 +660606,87.652,44.478 +660607,88.603,41.824 +660608,89.743,38.961 +660609,85.507,46.963 +660610,86.367,44.486 +660611,87.367,41.841 +660612,88.563,38.988 +660613,84.177,46.961 +660614,85.082,44.494 +660615,86.131,41.859 +660616,87.382,39.018 +660617,82.848,46.958 +660618,83.797,44.502 +660619,84.895,41.878 +660620,86.2,39.05 +660621,81.52,46.953 +660622,82.513,44.508 +660623,83.659,41.898 +660624,85.016,39.084 +660625,80.192,46.947 +660626,81.228,44.515 +660627,82.422,41.918 +660628,83.831,39.12 +660629,78.864,46.938 +660630,79.944,44.52 +660631,81.185,41.939 +660632,82.645,39.159 +660633,77.538,46.928 +660634,78.661,44.525 +660635,79.947,41.961 +660636,81.458,39.2 +660637,76.212,46.916 +660638,77.377,44.53 +660639,78.709,41.984 +660640,80.268,39.243 +660641,74.887,46.903 +660642,76.094,44.534 +660643,77.47,42.007 +660644,79.078,39.289 +660645,73.563,46.887 +660646,74.811,44.537 +660647,76.231,42.032 +660648,77.886,39.336 +660649,72.24,46.87 +660650,73.528,44.54 +660651,74.991,42.056 +660652,76.692,39.386 +660653,70.918,46.852 +660654,72.246,44.542 +660655,73.751,42.082 +660656,75.496,39.438 +660657,69.597,46.832 +660658,70.964,44.544 +660659,72.51,42.108 +660660,74.299,39.492 +660661,68.276,46.81 +660662,69.682,44.546 +660663,71.269,42.135 +660664,73.1,39.548 +660665,66.957,46.786 +660666,68.401,44.546 +660667,70.027,42.163 +660668,71.9,39.606 +660669,65.639,46.761 +660670,67.12,44.547 +660671,68.785,42.191 +660672,70.697,39.666 +660673,64.322,46.734 +660674,65.839,44.547 +660675,67.542,42.221 +660676,69.493,39.728 +660677,63.005,46.706 +660678,64.559,44.546 +660679,66.299,42.25 +660680,68.286,39.792 +660681,61.69,46.676 +660682,63.279,44.545 +660683,65.054,42.281 +660684,67.078,39.858 +660685,60.377,46.645 +660686,62,44.543 +660687,63.81,42.312 +660688,65.868,39.925 +660689,59.064,46.612 +660690,60.72,44.541 +660691,62.564,42.343 +660692,64.656,39.995 +660693,57.753,46.577 +660694,59.442,44.538 +660695,61.319,42.376 +660696,63.441,40.066 +660697,56.442,46.542 +660698,58.164,44.535 +660699,60.072,42.409 +660700,62.225,40.14 +660701,55.133,46.504 +660702,56.886,44.532 +660703,58.825,42.442 +660704,61.007,40.214 +660705,53.826,46.466 +660706,55.608,44.528 +660707,57.577,42.477 +660708,59.786,40.291 +660709,52.52,46.426 +660710,54.332,44.523 +660711,56.328,42.511 +660712,58.564,40.369 +660713,51.215,46.384 +660714,53.055,44.519 +660715,55.079,42.547 +660716,57.339,40.449 +660717,49.911,46.341 +660718,51.779,44.513 +660719,53.829,42.582 +660720,56.112,40.53 +660721,48.609,46.297 +660722,50.504,44.508 +660723,52.579,42.619 +660724,54.884,40.613 +660725,47.308,46.252 +660726,49.229,44.502 +660727,51.327,42.656 +660728,53.652,40.698 +660729,46.009,46.205 +660730,47.954,44.496 +660731,50.076,42.693 +660732,52.419,40.783 +660733,44.711,46.157 +660734,46.68,44.489 +660735,48.823,42.731 +660736,51.184,40.87 +660737,43.415,46.108 +660738,45.407,44.482 +660739,47.569,42.77 +660740,49.946,40.959 +660741,42.12,46.057 +660742,44.134,44.474 +660743,46.315,42.809 +660744,48.706,41.049 +660745,40.827,46.006 +660746,42.861,44.467 +660747,45.061,42.848 +660748,47.464,41.14 +660749,39.536,45.953 +660750,41.589,44.459 +660751,43.805,42.888 +660752,46.22,41.232 +660753,38.246,45.899 +660754,40.318,44.45 +660755,42.549,42.929 +660756,44.973,41.325 +660757,36.958,45.845 +660758,39.047,44.442 +660759,41.292,42.97 +660760,43.725,41.42 +660761,35.671,45.789 +660762,37.777,44.433 +660763,40.034,43.011 +660764,42.474,41.515 +660765,34.386,45.732 +660766,36.507,44.423 +660767,38.775,43.053 +660768,41.221,41.612 +660769,33.103,45.674 +660770,35.238,44.414 +660771,37.516,43.095 +660772,39.966,41.709 +660773,31.821,45.615 +660774,33.969,44.404 +660775,36.256,43.137 +660776,38.708,41.807 +660777,30.541,45.556 +660778,32.701,44.394 +660779,34.995,43.18 +660780,37.449,41.907 +660781,29.263,45.495 +660782,31.434,44.384 +660783,33.734,43.223 +660784,36.187,42.007 +660785,27.987,45.434 +660786,30.167,44.374 +660787,32.472,43.266 +660788,34.923,42.107 +660789,26.712,45.372 +660790,28.901,44.363 +660791,31.209,43.31 +660792,33.657,42.209 +660793,25.44,45.309 +660794,27.635,44.352 +660795,29.945,43.354 +660796,32.389,42.311 +660797,24.169,45.245 +660798,26.37,44.341 +660799,28.681,43.399 +660800,31.118,42.414 +660801,22.9,45.181 +660802,25.105,44.33 +660803,27.415,43.443 +660804,29.846,42.517 +660805,21.632,45.116 +660806,23.841,44.319 +660807,26.149,43.488 +660808,28.571,42.621 +660809,20.367,45.051 +660810,22.578,44.307 +660811,24.883,43.533 +660812,27.295,42.725 +660813,19.103,44.985 +660814,21.315,44.296 +660815,23.615,43.578 +660816,26.016,42.83 +660817,17.842,44.918 +660818,20.052,44.284 +660819,22.347,43.624 +660820,24.735,42.935 +660821,16.582,44.851 +660822,18.791,44.273 +660823,21.078,43.67 +660824,23.453,43.04 +660825,15.324,44.783 +660826,17.53,44.261 +660827,19.808,43.716 +660828,22.168,43.146 +660829,14.068,44.715 +660830,16.269,44.249 +660831,18.538,43.762 +660832,20.881,43.252 +660833,12.814,44.647 +660834,15.009,44.237 +660835,17.267,43.808 +660836,19.593,43.358 +660837,11.561,44.578 +660838,13.75,44.225 +660839,15.995,43.854 +660840,18.302,43.464 +660841,10.311,44.51 +660842,12.491,44.213 +660843,14.722,43.901 +660844,17.01,43.57 +660845,9.0626,44.44 +660846,11.233,44.202 +660847,13.449,43.947 +660848,15.715,43.676 +660849,7.8161,44.371 +660850,9.975,44.19 +660851,12.175,43.994 +660852,14.419,43.783 +660853,6.5716,44.301 +660854,8.718,44.178 +660855,10.9,44.041 +660856,13.121,43.889 +660857,5.3289,44.232 +660858,7.4615,44.166 +660859,9.625,44.087 +660860,11.822,43.995 +660861,4.0882,44.162 +660862,6.2055,44.154 +660863,8.3489,44.134 +660864,10.52,44.101 +660865,2.8494,44.092 +660866,4.9502,44.143 +660867,7.0721,44.181 +660868,9.2167,44.207 +660869,1.6125,44.023 +660870,3.6953,44.131 +660871,5.7947,44.228 +660872,7.9117,44.312 +660873,0.37752,43.953 +660874,2.4411,44.12 +660875,4.5166,44.275 +660876,6.605,44.418 +660877,359.14,43.884 +660878,1.1873,44.108 +660879,3.2378,44.321 +660880,5.2967,44.522 +660881,357.91,43.814 +660882,359.93,44.097 +660883,1.9584,44.368 +660884,3.9867,44.627 +660885,356.68,43.745 +660886,358.68,44.086 +660887,0.67831,44.415 +660888,2.6751,44.731 +660889,355.46,43.676 +660890,357.43,44.075 +660891,359.4,44.462 +660892,1.3619,44.835 +660893,354.23,43.607 +660894,356.18,44.064 +660895,358.12,44.508 +660896,0.047266,44.938 +660897,353.01,43.539 +660898,354.93,44.054 +660899,356.83,44.554 +660900,358.73,45.041 +660901,351.79,43.471 +660902,353.68,44.043 +660903,355.55,44.601 +660904,357.41,45.143 +660905,350.57,43.403 +660906,352.43,44.033 +660907,354.27,44.647 +660908,356.09,45.244 +660909,349.35,43.336 +660910,351.18,44.023 +660911,352.98,44.693 +660912,354.77,45.345 +660913,348.13,43.27 +660914,349.93,44.014 +660915,351.7,44.739 +660916,353.45,45.445 +660917,346.92,43.204 +660918,348.68,44.004 +660919,350.42,44.785 +660920,352.13,45.545 +660921,345.7,43.138 +660922,347.43,43.995 +660923,349.13,44.83 +660924,350.8,45.643 +660925,344.49,43.074 +660926,346.18,43.987 +660927,347.84,44.876 +660928,349.48,45.741 +660929,343.28,43.009 +660930,344.94,43.978 +660931,346.56,44.921 +660932,348.15,45.838 +660933,342.07,42.946 +660934,343.69,43.97 +660935,345.27,44.966 +660936,346.82,45.934 +660937,340.87,42.884 +660938,342.44,43.962 +660939,343.98,45.01 +660940,345.49,46.029 +660941,339.66,42.822 +660942,341.2,43.955 +660943,342.69,45.055 +660944,344.16,46.124 +660945,338.46,42.761 +660946,339.95,43.947 +660947,341.41,45.099 +660948,342.83,46.217 +660949,337.26,42.701 +660950,338.71,43.941 +660951,340.12,45.143 +660952,341.5,46.309 +660953,336.06,42.642 +660954,337.46,43.934 +660955,338.83,45.187 +660956,340.16,46.4 +660957,334.86,42.584 +660958,336.22,43.928 +660959,337.54,45.23 +660960,338.83,46.491 +660961,333.66,42.527 +660962,334.97,43.923 +660963,336.25,45.273 +660964,337.49,46.58 +660965,332.47,42.471 +660966,333.73,43.918 +660967,334.96,45.316 +660968,336.16,46.668 +660969,331.27,42.416 +660970,332.48,43.913 +660971,333.66,45.358 +660972,334.82,46.754 +660973,330.08,42.363 +660974,331.24,43.909 +660975,332.37,45.4 +660976,333.48,46.84 +660977,328.89,42.311 +660978,330,43.905 +660979,331.08,45.442 +660980,332.14,46.924 +660981,327.7,42.259 +660982,328.76,43.902 +660983,329.79,45.483 +660984,330.8,47.007 +660985,326.51,42.21 +660986,327.51,43.899 +660987,328.5,45.524 +660988,329.46,47.089 +660989,325.32,42.161 +660990,326.27,43.897 +660991,327.2,45.565 +660992,328.12,47.17 +660993,324.14,42.114 +660994,325.03,43.895 +660995,325.91,45.605 +660996,326.78,47.249 +660997,322.95,42.068 +660998,323.79,43.894 +660999,324.62,45.644 +661000,325.43,47.327 +661001,321.77,42.024 +661002,322.55,43.893 +661003,323.32,45.684 +661004,324.09,47.403 +661005,320.58,41.981 +661006,321.31,43.893 +661007,322.03,45.723 +661008,322.75,47.478 +661009,319.4,41.94 +661010,320.06,43.893 +661011,320.73,45.761 +661012,321.4,47.552 +661013,318.22,41.901 +661014,318.82,43.894 +661015,319.44,45.799 +661016,320.06,47.624 +661017,317.04,41.862 +661018,317.58,43.896 +661019,318.14,45.837 +661020,318.71,47.695 +661021,315.86,41.826 +661022,316.34,43.898 +661023,316.85,45.874 +661024,317.36,47.764 +661025,314.68,41.791 +661026,315.1,43.901 +661027,315.55,45.91 +661028,316.02,47.832 +661029,313.5,41.758 +661030,313.86,43.904 +661031,314.25,45.947 +661032,314.67,47.898 +661033,312.32,41.727 +661034,312.62,43.908 +661035,312.96,45.982 +661036,313.32,47.963 +661037,311.14,41.697 +661038,311.38,43.912 +661039,311.66,46.017 +661040,311.98,48.026 +661041,309.96,41.67 +661042,310.14,43.918 +661043,310.36,46.052 +661044,310.63,48.088 +661045,308.79,41.644 +661046,308.9,43.923 +661047,309.07,46.086 +661048,309.28,48.148 +661049,307.61,41.619 +661050,307.66,43.93 +661051,307.77,46.12 +661052,307.93,48.206 +661053,306.43,41.597 +661054,306.42,43.937 +661055,306.47,46.153 +661056,306.58,48.263 +661057,305.26,41.577 +661058,305.18,43.945 +661059,305.18,46.186 +661060,305.23,48.318 +661061,304.08,41.558 +661062,303.94,43.953 +661063,303.88,46.218 +661064,303.89,48.372 +661065,302.91,41.542 +661066,302.7,43.962 +661067,302.58,46.25 +661068,302.54,48.424 +661069,301.73,41.527 +661070,301.46,43.972 +661071,301.29,46.281 +661072,301.19,48.474 +661073,300.55,41.515 +661074,300.22,43.982 +661075,299.99,46.311 +661076,299.84,48.523 +661077,299.38,41.504 +661078,298.98,43.993 +661079,298.69,46.341 +661080,298.49,48.57 +661081,298.2,41.496 +661082,297.74,44.005 +661083,297.39,46.371 +661084,297.14,48.615 +661085,297.02,41.49 +661086,296.49,44.017 +661087,296.1,46.4 +661088,295.79,48.658 +661089,295.85,41.485 +661090,295.25,44.03 +661091,294.8,46.428 +661092,294.45,48.7 +661093,294.67,41.483 +661094,294.01,44.044 +661095,293.5,46.456 +661096,293.1,48.74 +661097,293.49,41.483 +661098,292.77,44.059 +661099,292.2,46.483 +661100,291.75,48.779 +661101,292.31,41.485 +661102,291.53,44.074 +661103,290.91,46.51 +661104,290.4,48.815 +661105,291.13,41.489 +661106,290.29,44.09 +661107,289.61,46.536 +661108,289.05,48.85 +661109,289.95,41.495 +661110,289.04,44.107 +661111,288.31,46.561 +661112,287.71,48.884 +661113,288.77,41.503 +661114,287.8,44.124 +661115,287.01,46.586 +661116,286.36,48.915 +661117,287.59,41.513 +661118,286.56,44.142 +661119,285.72,46.611 +661120,285.02,48.945 +661121,286.41,41.526 +661122,285.32,44.161 +661123,284.42,46.634 +661124,283.67,48.973 +661125,285.23,41.541 +661126,284.07,44.18 +661127,283.12,46.658 +661128,282.32,48.999 +661129,284.04,41.557 +661130,282.83,44.201 +661131,281.83,46.68 +661132,280.98,49.024 +661133,282.86,41.576 +661134,281.58,44.221 +661135,280.53,46.702 +661136,279.64,49.047 +661137,281.67,41.598 +661138,280.34,44.243 +661139,279.23,46.724 +661140,278.29,49.068 +661141,280.49,41.621 +661142,279.1,44.265 +661143,277.94,46.745 +661144,276.95,49.087 +661145,279.3,41.646 +661146,277.85,44.288 +661147,276.64,46.765 +661148,275.61,49.105 +661149,278.11,41.674 +661150,276.6,44.312 +661151,275.34,46.785 +661152,274.26,49.121 +661153,276.92,41.704 +661154,275.36,44.337 +661155,274.05,46.804 +661156,272.92,49.135 +661157,275.73,41.735 +661158,274.11,44.362 +661159,272.75,46.823 +661160,271.58,49.147 +661161,274.53,41.769 +661162,272.86,44.388 +661163,271.46,46.841 +661164,270.24,49.158 +661165,273.34,41.806 +661166,271.62,44.414 +661167,270.16,46.859 +661168,268.91,49.167 +661169,272.14,41.844 +661170,270.37,44.441 +661171,268.87,46.876 +661172,267.57,49.175 +661173,270.94,41.884 +661174,269.12,44.469 +661175,267.57,46.892 +661176,266.23,49.181 +661177,269.74,41.926 +661178,267.87,44.498 +661179,266.28,46.908 +661180,264.89,49.185 +661181,268.54,41.971 +661182,266.62,44.527 +661183,264.98,46.924 +661184,263.56,49.187 +661185,267.33,42.017 +661186,265.37,44.557 +661187,263.69,46.939 +661188,262.22,49.188 +661189,266.13,42.066 +661190,264.12,44.588 +661191,262.4,46.953 +661192,260.89,49.187 +661193,264.92,42.116 +661194,262.87,44.619 +661195,261.1,46.967 +661196,259.56,49.185 +661197,263.71,42.168 +661198,261.62,44.651 +661199,259.81,46.98 +661200,258.23,49.18 +661201,262.5,42.223 +661202,260.36,44.684 +661203,258.52,46.993 +661204,256.9,49.175 +661205,261.29,42.279 +661206,259.11,44.717 +661207,257.23,47.005 +661208,255.57,49.167 +661209,260.07,42.337 +661210,257.86,44.751 +661211,255.94,47.017 +661212,254.24,49.159 +661213,258.86,42.397 +661214,256.6,44.785 +661215,254.65,47.028 +661216,252.92,49.148 +661217,257.64,42.459 +661218,255.35,44.821 +661219,253.35,47.038 +661220,251.59,49.136 +661221,256.42,42.523 +661222,254.09,44.856 +661223,252.06,47.049 +661224,250.27,49.123 +661225,255.19,42.589 +661226,252.83,44.893 +661227,250.77,47.058 +661228,248.94,49.108 +661229,253.97,42.656 +661230,251.58,44.93 +661231,249.49,47.068 +661232,247.62,49.091 +661233,252.74,42.725 +661234,250.32,44.967 +661235,248.2,47.076 +661236,246.3,49.073 +661237,251.51,42.796 +661238,249.06,45.005 +661239,246.91,47.085 +661240,244.98,49.054 +661241,250.28,42.869 +661242,247.8,45.044 +661243,245.62,47.092 +661244,243.66,49.033 +661245,249.05,42.943 +661246,246.54,45.083 +661247,244.33,47.1 +661248,242.35,49.011 +661249,247.81,43.019 +661250,245.28,45.123 +661251,243.04,47.107 +661252,241.03,48.988 +661253,246.57,43.096 +661254,244.02,45.164 +661255,241.76,47.113 +661256,239.72,48.963 +661257,245.33,43.175 +661258,242.76,45.204 +661259,240.47,47.119 +661260,238.41,48.936 +661261,244.09,43.256 +661262,241.49,45.246 +661263,239.19,47.125 +661264,237.1,48.909 +661265,242.84,43.337 +661266,240.23,45.288 +661267,237.9,47.13 +661268,235.79,48.88 +661269,241.59,43.421 +661270,238.97,45.33 +661271,236.62,47.135 +661272,234.48,48.85 +661273,240.34,43.505 +661274,237.7,45.373 +661275,235.33,47.139 +661276,233.17,48.818 +661277,239.09,43.591 +661278,236.44,45.417 +661279,234.05,47.143 +661280,231.87,48.786 +661281,237.84,43.679 +661282,235.17,45.461 +661283,232.76,47.147 +661284,230.57,48.752 +661285,236.58,43.768 +661286,233.9,45.505 +661287,231.48,47.151 +661288,229.27,48.717 +661289,235.32,43.857 +661290,232.63,45.55 +661291,230.2,47.154 +661292,227.97,48.681 +661293,234.06,43.948 +661294,231.36,45.595 +661295,228.92,47.156 +661296,226.67,48.644 +661297,232.79,44.041 +661298,230.1,45.64 +661299,227.64,47.158 +661300,225.37,48.605 +661301,231.53,44.134 +661302,228.82,45.686 +661303,226.36,47.16 +661304,224.08,48.566 +661305,230.26,44.228 +661306,227.55,45.733 +661307,225.08,47.162 +661308,222.79,48.526 +661309,228.99,44.324 +661310,226.28,45.78 +661311,223.8,47.164 +661312,221.49,48.484 +661313,227.72,44.42 +661314,225.01,45.827 +661315,222.52,47.165 +661316,220.21,48.442 +661317,226.44,44.517 +661318,223.74,45.874 +661319,221.24,47.166 +661320,218.92,48.399 +661321,225.16,44.616 +661322,222.46,45.922 +661323,219.96,47.166 +661324,217.63,48.355 +661325,223.88,44.715 +661326,221.19,45.97 +661327,218.69,47.166 +661328,216.35,48.31 +661329,222.6,44.815 +661330,219.91,46.019 +661331,217.41,47.167 +661332,215.07,48.264 +661333,221.32,44.915 +661334,218.63,46.068 +661335,216.13,47.166 +661336,213.79,48.217 +661337,220.03,45.016 +661338,217.36,46.117 +661339,214.86,47.166 +661340,212.51,48.17 +661341,218.74,45.118 +661342,216.08,46.166 +661343,213.58,47.165 +661344,211.23,48.122 +661345,217.45,45.221 +661346,214.8,46.216 +661347,212.31,47.165 +661348,209.96,48.073 +661349,216.16,45.324 +661350,213.52,46.265 +661351,211.03,47.164 +661352,208.68,48.024 +661353,214.86,45.428 +661354,212.24,46.315 +661355,209.76,47.163 +661356,207.41,47.974 +661357,213.56,45.532 +661358,210.96,46.366 +661359,208.49,47.162 +661360,206.14,47.923 +661361,212.27,45.637 +661362,209.67,46.416 +661363,207.22,47.16 +661364,204.87,47.872 +661365,210.96,45.742 +661366,208.39,46.467 +661367,205.95,47.159 +661368,203.61,47.82 +661369,209.66,45.847 +661370,207.11,46.518 +661371,204.67,47.157 +661372,202.35,47.768 +661373,208.36,45.953 +661374,205.82,46.569 +661375,203.4,47.155 +661376,201.08,47.716 +661377,207.05,46.058 +661378,204.54,46.62 +661379,202.13,47.154 +661380,199.82,47.663 +661381,205.74,46.165 +661382,203.25,46.671 +661383,200.87,47.152 +661384,198.57,47.609 +661385,204.43,46.271 +661386,201.97,46.722 +661387,199.6,47.15 +661388,197.31,47.555 +661389,203.11,46.377 +661390,200.68,46.774 +661391,198.33,47.148 +661392,196.06,47.502 +661393,201.8,46.484 +661394,199.39,46.825 +661395,197.06,47.146 +661396,194.8,47.447 +661397,200.48,46.59 +661398,198.1,46.877 +661399,195.79,47.144 +661400,193.55,47.393 +661401,199.16,46.697 +661402,196.81,46.929 +661403,194.53,47.142 +661404,192.3,47.338 +661405,197.84,46.803 +661406,195.52,46.98 +661407,193.26,47.14 +661408,191.06,47.284 +661409,196.52,46.91 +661410,194.23,47.032 +661411,192,47.138 +661412,189.81,47.229 +661413,195.2,47.016 +661414,192.94,47.084 +661415,190.73,47.136 +661416,188.57,47.174 +661417,193.87,47.122 +661418,191.65,47.136 +661419,189.47,47.134 +661420,187.33,47.119 +661421,192.55,47.228 +661422,190.35,47.187 +661423,188.2,47.132 +661424,186.09,47.064 +661425,191.22,47.333 +661426,189.06,47.239 +661427,186.94,47.13 +661428,184.85,47.009 +661429,189.89,47.439 +661430,187.77,47.291 +661431,185.68,47.129 +661432,183.62,46.955 +661433,188.55,47.544 +661434,186.47,47.342 +661435,184.42,47.127 +661436,182.38,46.9 +661437,187.22,47.648 +661438,185.18,47.394 +661439,183.15,47.126 +661440,181.15,46.846 +661441,185.89,47.752 +661442,183.88,47.445 +661443,181.89,47.124 +661444,179.92,46.792 +661445,184.55,47.856 +661446,182.58,47.496 +661447,180.63,47.123 +661448,178.69,46.738 +661449,183.21,47.959 +661450,181.29,47.548 +661451,179.37,47.122 +661452,177.47,46.684 +661453,181.87,48.062 +661454,179.99,47.599 +661455,178.11,47.121 +661456,176.24,46.631 +661457,180.53,48.164 +661458,178.69,47.65 +661459,176.85,47.121 +661460,175.02,46.578 +661461,179.19,48.266 +661462,177.39,47.701 +661463,175.59,47.12 +661464,173.8,46.526 +661465,177.85,48.367 +661466,176.09,47.751 +661467,174.34,47.12 +661468,172.58,46.474 +661469,176.5,48.467 +661470,174.79,47.802 +661471,173.08,47.12 +661472,171.36,46.423 +661473,175.16,48.566 +661474,173.49,47.852 +661475,171.82,47.12 +661476,170.14,46.372 +661477,173.81,48.665 +661478,172.19,47.902 +661479,170.56,47.121 +661480,168.93,46.322 +661481,172.46,48.763 +661482,170.89,47.952 +661483,169.31,47.121 +661484,167.71,46.273 +661485,171.12,48.86 +661486,169.59,48.001 +661487,168.05,47.122 +661488,166.5,46.224 +661489,169.77,48.956 +661490,168.29,48.051 +661491,166.79,47.124 +661492,165.29,46.176 +661493,168.42,49.052 +661494,166.98,48.1 +661495,165.54,47.125 +661496,164.08,46.128 +661497,167.06,49.146 +661498,165.68,48.149 +661499,164.28,47.127 +661500,162.87,46.082 +661501,165.71,49.239 +661502,164.38,48.197 +661503,163.03,47.129 +661504,161.67,46.036 +661505,164.36,49.332 +661506,163.07,48.246 +661507,161.77,47.132 +661508,160.46,45.991 +661509,163,49.424 +661510,161.77,48.294 +661511,160.52,47.135 +661512,159.26,45.947 +661513,161.65,49.514 +661514,160.46,48.341 +661515,159.27,47.138 +661516,158.06,45.904 +661517,160.29,49.603 +661518,159.16,48.389 +661519,158.01,47.142 +661520,156.86,45.862 +661521,158.93,49.692 +661522,157.85,48.436 +661523,156.76,47.146 +661524,155.66,45.821 +661525,157.58,49.779 +661526,156.54,48.482 +661527,155.5,47.15 +661528,154.46,45.781 +661529,156.22,49.865 +661530,155.24,48.529 +661531,154.25,47.155 +661532,153.26,45.742 +661533,154.86,49.95 +661534,153.93,48.575 +661535,153,47.16 +661536,152.06,45.705 +661537,153.5,50.034 +661538,152.62,48.62 +661539,151.75,47.166 +661540,150.87,45.668 +661541,152.14,50.116 +661542,151.32,48.666 +661543,150.49,47.172 +661544,149.67,45.633 +661545,150.78,50.197 +661546,150.01,48.71 +661547,149.24,47.178 +661548,148.48,45.599 +661549,149.42,50.277 +661550,148.7,48.755 +661551,147.99,47.185 +661552,147.29,45.566 +661553,148.06,50.356 +661554,147.39,48.799 +661555,146.74,47.193 +661556,146.09,45.534 +661557,146.69,50.433 +661558,146.08,48.843 +661559,145.49,47.201 +661560,144.9,45.504 +661561,145.33,50.509 +661562,144.77,48.886 +661563,144.23,47.209 +661564,143.71,45.476 +661565,143.97,50.584 +661566,143.47,48.929 +661567,142.98,47.218 +661568,142.52,45.448 +661569,142.61,50.657 +661570,142.16,48.971 +661571,141.73,47.227 +661572,141.33,45.422 +661573,141.24,50.729 +661574,140.85,49.013 +661575,140.48,47.237 +661576,140.14,45.398 +661577,139.88,50.799 +661578,139.54,49.054 +661579,139.23,47.248 +661580,138.96,45.375 +661581,138.51,50.868 +661582,138.23,49.095 +661583,137.98,47.259 +661584,137.77,45.353 +661585,137.15,50.936 +661586,136.92,49.136 +661587,136.72,47.27 +661588,136.58,45.333 +661589,135.79,51.002 +661590,135.61,49.176 +661591,135.47,47.282 +661592,135.39,45.315 +661593,134.42,51.066 +661594,134.3,49.215 +661595,134.22,47.295 +661596,134.21,45.298 +661597,133.06,51.129 +661598,132.99,49.254 +661599,132.97,47.308 +661600,133.02,45.283 +661601,131.69,51.191 +661602,131.68,49.293 +661603,131.72,47.322 +661604,131.83,45.269 +661605,130.33,51.251 +661606,130.37,49.331 +661607,130.47,47.336 +661608,130.65,45.257 +661609,128.97,51.31 +661610,129.06,49.369 +661611,129.22,47.351 +661612,129.46,45.247 +661613,127.6,51.367 +661614,127.74,49.406 +661615,127.96,47.366 +661616,128.28,45.239 +661617,126.24,51.422 +661618,126.43,49.442 +661619,126.71,47.382 +661620,127.09,45.232 +661621,124.87,51.476 +661622,125.12,49.478 +661623,125.46,47.398 +661624,125.9,45.227 +661625,123.51,51.528 +661626,123.81,49.514 +661627,124.21,47.416 +661628,124.72,45.223 +661629,122.15,51.579 +661630,122.5,49.549 +661631,122.95,47.433 +661632,123.53,45.222 +661633,120.78,51.628 +661634,121.19,49.583 +661635,121.7,47.452 +661636,122.34,45.222 +661637,119.42,51.676 +661638,119.88,49.617 +661639,120.45,47.471 +661640,121.15,45.224 +661641,118.06,51.722 +661642,118.57,49.65 +661643,119.2,47.49 +661644,119.96,45.228 +661645,116.69,51.766 +661646,117.26,49.683 +661647,117.94,47.51 +661648,118.78,45.234 +661649,115.33,51.809 +661650,115.95,49.716 +661651,116.69,47.531 +661652,117.59,45.242 +661653,113.97,51.85 +661654,114.64,49.747 +661655,115.44,47.552 +661656,116.4,45.251 +661657,112.61,51.889 +661658,113.33,49.779 +661659,114.18,47.574 +661660,115.2,45.262 +661661,111.25,51.927 +661662,112.02,49.809 +661663,112.93,47.597 +661664,114.01,45.276 +661665,109.89,51.963 +661666,110.71,49.839 +661667,111.67,47.62 +661668,112.82,45.291 +661669,108.53,51.998 +661670,109.4,49.869 +661671,110.42,47.644 +661672,111.63,45.308 +661673,107.17,52.03 +661674,108.09,49.898 +661675,109.16,47.668 +661676,110.43,45.326 +661677,105.81,52.062 +661678,106.78,49.927 +661679,107.91,47.693 +661680,109.24,45.347 +661681,104.46,52.091 +661682,105.47,49.955 +661683,106.65,47.719 +661684,108.04,45.37 +661685,103.1,52.119 +661686,104.16,49.982 +661687,105.39,47.745 +661688,106.84,45.394 +661689,101.74,52.146 +661690,102.85,50.009 +661691,104.14,47.772 +661692,105.64,45.421 +661693,100.39,52.17 +661694,101.54,50.035 +661695,102.88,47.8 +661696,104.44,45.449 +661697,99.032,52.194 +661698,100.24,50.061 +661699,101.62,47.828 +661700,103.24,45.479 +661701,97.678,52.215 +661702,98.928,50.086 +661703,100.36,47.857 +661704,102.04,45.511 +661705,96.325,52.235 +661706,97.621,50.111 +661707,99.105,47.886 +661708,100.83,45.545 +661709,94.973,52.253 +661710,96.313,50.135 +661711,97.846,47.916 +661712,99.627,45.581 +661713,93.622,52.27 +661714,95.006,50.159 +661715,96.586,47.947 +661716,98.419,45.619 +661717,92.272,52.285 +661718,93.699,50.182 +661719,95.325,47.978 +661720,97.21,45.658 +661721,90.923,52.299 +661722,92.392,50.204 +661723,94.065,48.01 +661724,95.999,45.699 +661725,89.574,52.311 +661726,91.086,50.226 +661727,92.803,48.042 +661728,94.787,45.743 +661729,88.227,52.321 +661730,89.78,50.248 +661731,91.541,48.075 +661732,93.573,45.788 +661733,86.881,52.33 +661734,88.474,50.269 +661735,90.279,48.109 +661736,92.357,45.835 +661737,85.536,52.337 +661738,87.169,50.289 +661739,89.016,48.143 +661740,91.139,45.883 +661741,84.192,52.343 +661742,85.864,50.309 +661743,87.752,48.178 +661744,89.92,45.934 +661745,82.849,52.347 +661746,84.559,50.328 +661747,86.488,48.213 +661748,88.699,45.986 +661749,81.508,52.35 +661750,83.255,50.347 +661751,85.223,48.249 +661752,87.475,46.04 +661753,80.167,52.351 +661754,81.951,50.366 +661755,83.957,48.286 +661756,86.25,46.095 +661757,78.828,52.351 +661758,80.648,50.384 +661759,82.691,48.323 +661760,85.023,46.153 +661761,77.49,52.349 +661762,79.345,50.401 +661763,81.424,48.36 +661764,83.794,46.212 +661765,76.154,52.346 +661766,78.042,50.418 +661767,80.157,48.399 +661768,82.562,46.272 +661769,74.818,52.341 +661770,76.74,50.435 +661771,78.889,48.437 +661772,81.329,46.335 +661773,73.484,52.335 +661774,75.438,50.45 +661775,77.62,48.476 +661776,80.093,46.399 +661777,72.152,52.328 +661778,74.137,50.466 +661779,76.35,48.516 +661780,78.856,46.464 +661781,70.82,52.319 +661782,72.836,50.481 +661783,75.08,48.557 +661784,77.616,46.532 +661785,69.49,52.309 +661786,71.536,50.496 +661787,73.809,48.597 +661788,76.374,46.6 +661789,68.162,52.297 +661790,70.236,50.51 +661791,72.538,48.639 +661792,75.13,46.67 +661793,66.835,52.285 +661794,68.936,50.523 +661795,71.265,48.68 +661796,73.883,46.742 +661797,65.51,52.27 +661798,67.638,50.537 +661799,69.992,48.723 +661800,72.635,46.815 +661801,64.186,52.255 +661802,66.339,50.55 +661803,68.719,48.765 +661804,71.384,46.89 +661805,62.863,52.238 +661806,65.041,50.562 +661807,67.444,48.809 +661808,70.131,46.966 +661809,61.542,52.22 +661810,63.744,50.574 +661811,66.169,48.852 +661812,68.875,47.043 +661813,60.223,52.201 +661814,62.447,50.586 +661815,64.893,48.896 +661816,67.617,47.122 +661817,58.905,52.181 +661818,61.151,50.597 +661819,63.616,48.941 +661820,66.357,47.202 +661821,57.589,52.159 +661822,59.855,50.608 +661823,62.339,48.986 +661824,65.095,47.283 +661825,56.274,52.137 +661826,58.56,50.618 +661827,61.061,49.031 +661828,63.83,47.366 +661829,54.961,52.113 +661830,57.265,50.628 +661831,59.782,49.077 +661832,62.563,47.449 +661833,53.65,52.088 +661834,55.971,50.638 +661835,58.502,49.123 +661836,61.294,47.534 +661837,52.341,52.062 +661838,54.677,50.647 +661839,57.221,49.17 +661840,60.022,47.62 +661841,51.033,52.035 +661842,53.384,50.657 +661843,55.94,49.217 +661844,58.748,47.707 +661845,49.727,52.007 +661846,52.092,50.665 +661847,54.658,49.264 +661848,57.472,47.796 +661849,48.422,51.978 +661850,50.8,50.674 +661851,53.375,49.312 +661852,56.194,47.885 +661853,47.119,51.949 +661854,49.508,50.682 +661855,52.092,49.36 +661856,54.913,47.975 +661857,45.818,51.918 +661858,48.217,50.69 +661859,50.807,49.408 +661860,53.63,48.066 +661861,44.519,51.886 +661862,46.927,50.697 +661863,49.522,49.457 +661864,52.344,48.158 +661865,43.222,51.853 +661866,45.638,50.704 +661867,48.236,49.506 +661868,51.056,48.251 +661869,41.926,51.82 +661870,44.348,50.711 +661871,46.949,49.555 +661872,49.766,48.345 +661873,40.632,51.786 +661874,43.06,50.718 +661875,45.662,49.605 +661876,48.474,48.439 +661877,39.34,51.751 +661878,41.772,50.725 +661879,44.374,49.655 +661880,47.179,48.535 +661881,38.05,51.715 +661882,40.485,50.731 +661883,43.085,49.705 +661884,45.883,48.631 +661885,36.762,51.678 +661886,39.198,50.737 +661887,41.795,49.755 +661888,44.584,48.727 +661889,35.475,51.641 +661890,37.912,50.743 +661891,40.504,49.806 +661892,43.282,48.825 +661893,34.191,51.603 +661894,36.626,50.748 +661895,39.213,49.856 +661896,41.979,48.923 +661897,32.908,51.565 +661898,35.341,50.754 +661899,37.921,49.907 +661900,40.674,49.021 +661901,31.627,51.526 +661902,34.057,50.759 +661903,36.628,49.958 +661904,39.366,49.12 +661905,30.348,51.486 +661906,32.773,50.764 +661907,35.334,50.01 +661908,38.056,49.22 +661909,29.07,51.446 +661910,31.49,50.769 +661911,34.04,50.061 +661912,36.744,49.32 +661913,27.795,51.405 +661914,30.207,50.774 +661915,32.745,50.113 +661916,35.43,49.42 +661917,26.522,51.364 +661918,28.925,50.778 +661919,31.449,50.165 +661920,34.114,49.52 +661921,25.25,51.323 +661922,27.643,50.783 +661923,30.153,50.217 +661924,32.796,49.621 +661925,23.98,51.281 +661926,26.362,50.787 +661927,28.855,50.269 +661928,31.476,49.723 +661929,22.712,51.239 +661930,25.082,50.792 +661931,27.557,50.321 +661932,30.154,49.824 +661933,21.446,51.196 +661934,23.802,50.796 +661935,26.258,50.373 +661936,28.83,49.926 +661937,20.182,51.154 +661938,22.523,50.8 +661939,24.959,50.426 +661940,27.505,50.028 +661941,18.92,51.11 +661942,21.244,50.804 +661943,23.659,50.478 +661944,26.177,50.13 +661945,17.659,51.067 +661946,19.966,50.808 +661947,22.358,50.531 +661948,24.847,50.232 +661949,16.4,51.024 +661950,18.688,50.813 +661951,21.057,50.583 +661952,23.516,50.334 +661953,15.144,50.98 +661954,17.411,50.817 +661955,19.754,50.636 +661956,22.183,50.436 +661957,13.889,50.937 +661958,16.135,50.821 +661959,18.451,50.688 +661960,20.848,50.538 +661961,12.636,50.893 +661962,14.859,50.825 +661963,17.148,50.741 +661964,19.511,50.64 +661965,11.384,50.849 +661966,13.583,50.829 +661967,15.844,50.793 +661968,18.173,50.741 +661969,10.135,50.806 +661970,12.308,50.833 +661971,14.539,50.846 +661972,16.833,50.843 +661973,8.8869,50.762 +661974,11.034,50.837 +661975,13.233,50.898 +661976,15.491,50.944 +661977,7.6409,50.718 +661978,9.76,50.841 +661979,11.927,50.951 +661980,14.148,51.045 +661981,6.3966,50.675 +661982,8.4866,50.845 +661983,10.62,51.003 +661984,12.803,51.146 +661985,5.1542,50.632 +661986,7.2137,50.85 +661987,9.3131,51.056 +661988,11.457,51.247 +661989,3.9134,50.589 +661990,5.9413,50.854 +661991,8.0051,51.108 +661992,10.109,51.347 +661993,2.6743,50.546 +661994,4.6694,50.859 +661995,6.6966,51.16 +661996,8.7594,51.447 +661997,1.437,50.503 +661998,3.3979,50.863 +661999,5.3875,51.212 +662000,7.4087,51.546 +662001,0.20129,50.461 +662002,2.1269,50.868 +662003,4.0778,51.264 +662004,6.0566,51.645 +662005,358.97,50.419 +662006,0.85638,50.873 +662007,2.7675,51.315 +662008,4.7031,51.744 +662009,357.73,50.377 +662010,359.59,50.878 +662011,1.4567,51.367 +662012,3.3484,51.842 +662013,356.5,50.336 +662014,358.32,50.884 +662015,0.14539,51.418 +662016,1.9923,51.939 +662017,355.27,50.296 +662018,357.05,50.889 +662019,358.83,51.47 +662020,0.63506,52.036 +662021,354.05,50.255 +662022,355.78,50.895 +662023,357.52,51.521 +662024,359.28,52.132 +662025,352.82,50.216 +662026,354.51,50.9 +662027,356.21,51.571 +662028,357.92,52.227 +662029,351.6,50.177 +662030,353.24,50.907 +662031,354.89,51.622 +662032,356.56,52.322 +662033,350.37,50.138 +662034,351.97,50.913 +662035,353.58,51.673 +662036,355.19,52.416 +662037,349.15,50.1 +662038,350.71,50.919 +662039,352.27,51.723 +662040,353.83,52.509 +662041,347.93,50.063 +662042,349.44,50.926 +662043,350.95,51.773 +662044,352.47,52.602 +662045,346.71,50.027 +662046,348.17,50.933 +662047,349.64,51.822 +662048,351.1,52.694 +662049,345.49,49.991 +662050,346.91,50.94 +662051,348.32,51.872 +662052,349.74,52.784 +662053,344.28,49.956 +662054,345.64,50.948 +662055,347.01,51.921 +662056,348.37,52.874 +662057,343.06,49.922 +662058,344.38,50.956 +662059,345.69,51.97 +662060,347,52.963 +662061,341.85,49.888 +662062,343.11,50.964 +662063,344.37,52.018 +662064,345.63,53.051 +662065,340.64,49.856 +662066,341.85,50.972 +662067,343.05,52.067 +662068,344.26,53.138 +662069,339.42,49.824 +662070,340.58,50.981 +662071,341.74,52.115 +662072,342.89,53.225 +662073,338.21,49.794 +662074,339.32,50.99 +662075,340.42,52.162 +662076,341.52,53.31 +662077,337,49.764 +662078,338.05,51 +662079,339.1,52.209 +662080,340.15,53.394 +662081,335.8,49.736 +662082,336.79,51.009 +662083,337.78,52.256 +662084,338.78,53.477 +662085,334.59,49.708 +662086,335.52,51.019 +662087,336.46,52.303 +662088,337.41,53.559 +662089,333.38,49.681 +662090,334.26,51.03 +662091,335.14,52.349 +662092,336.03,53.639 +662093,332.18,49.656 +662094,333,51.041 +662095,333.83,52.395 +662096,334.66,53.719 +662097,330.97,49.632 +662098,331.73,51.052 +662099,332.51,52.441 +662100,333.29,53.797 +662101,329.77,49.608 +662102,330.47,51.064 +662103,331.19,52.486 +662104,331.91,53.875 +662105,328.56,49.586 +662106,329.21,51.076 +662107,329.87,52.53 +662108,330.54,53.951 +662109,327.36,49.566 +662110,327.94,51.088 +662111,328.55,52.575 +662112,329.16,54.025 +662113,326.16,49.546 +662114,326.68,51.101 +662115,327.23,52.619 +662116,327.79,54.099 +662117,324.96,49.528 +662118,325.42,51.115 +662119,325.9,52.662 +662120,326.41,54.171 +662121,323.76,49.511 +662122,324.16,51.128 +662123,324.58,52.705 +662124,325.03,54.242 +662125,322.56,49.495 +662126,322.89,51.143 +662127,323.26,52.748 +662128,323.66,54.312 +662129,321.36,49.481 +662130,321.63,51.157 +662131,321.94,52.79 +662132,322.28,54.38 +662133,320.16,49.467 +662134,320.37,51.172 +662135,320.62,52.832 +662136,320.9,54.447 +662137,318.96,49.456 +662138,319.11,51.188 +662139,319.3,52.873 +662140,319.53,54.513 +662141,317.76,49.446 +662142,317.84,51.204 +662143,317.98,52.914 +662144,318.15,54.577 +662145,316.56,49.437 +662146,316.58,51.221 +662147,316.66,52.954 +662148,316.77,54.64 +662149,315.36,49.429 +662150,315.32,51.238 +662151,315.33,52.994 +662152,315.4,54.702 +662153,314.16,49.423 +662154,314.06,51.255 +662155,314.01,53.034 +662156,314.02,54.762 +662157,312.97,49.419 +662158,312.79,51.273 +662159,312.69,53.072 +662160,312.64,54.821 +662161,311.77,49.416 +662162,311.53,51.291 +662163,311.37,53.111 +662164,311.27,54.878 +662165,310.57,49.415 +662166,310.27,51.31 +662167,310.05,53.149 +662168,309.89,54.934 +662169,309.37,49.415 +662170,309.01,51.33 +662171,308.72,53.186 +662172,308.51,54.988 +662173,308.17,49.416 +662174,307.74,51.35 +662175,307.4,53.223 +662176,307.14,55.041 +662177,306.97,49.419 +662178,306.48,51.37 +662179,306.08,53.26 +662180,305.76,55.092 +662181,305.77,49.424 +662182,305.22,51.392 +662183,304.76,53.296 +662184,304.38,55.142 +662185,304.57,49.431 +662186,303.95,51.413 +662187,303.44,53.332 +662188,303.01,55.191 +662189,303.37,49.438 +662190,302.69,51.435 +662191,302.12,53.367 +662192,301.63,55.238 +662193,302.17,49.448 +662194,301.43,51.458 +662195,300.79,53.401 +662196,300.26,55.283 +662197,300.97,49.459 +662198,300.16,51.481 +662199,299.47,53.435 +662200,298.88,55.327 +662201,299.77,49.472 +662202,298.9,51.505 +662203,298.15,53.468 +662204,297.51,55.37 +662205,298.57,49.486 +662206,297.63,51.529 +662207,296.83,53.501 +662208,296.14,55.41 +662209,297.37,49.503 +662210,296.37,51.554 +662211,295.51,53.534 +662212,294.76,55.45 +662213,296.16,49.52 +662214,295.1,51.579 +662215,294.19,53.566 +662216,293.39,55.488 +662217,294.96,49.54 +662218,293.84,51.605 +662219,292.87,53.597 +662220,292.02,55.524 +662221,293.75,49.561 +662222,292.57,51.631 +662223,291.55,53.628 +662224,290.65,55.559 +662225,292.55,49.583 +662226,291.3,51.658 +662227,290.23,53.658 +662228,289.28,55.592 +662229,291.34,49.608 +662230,290.04,51.685 +662231,288.9,53.688 +662232,287.91,55.624 +662233,290.13,49.634 +662234,288.77,51.713 +662235,287.58,53.718 +662236,286.54,55.654 +662237,288.92,49.661 +662238,287.5,51.742 +662239,286.26,53.746 +662240,285.17,55.683 +662241,287.71,49.691 +662242,286.24,51.771 +662243,284.95,53.775 +662244,283.81,55.71 +662245,286.5,49.722 +662246,284.97,51.8 +662247,283.63,53.803 +662248,282.44,55.736 +662249,285.29,49.754 +662250,283.7,51.831 +662251,282.31,53.83 +662252,281.07,55.76 +662253,284.07,49.789 +662254,282.43,51.861 +662255,280.99,53.857 +662256,279.71,55.783 +662257,282.85,49.825 +662258,281.16,51.892 +662259,279.67,53.883 +662260,278.34,55.804 +662261,281.64,49.862 +662262,279.89,51.924 +662263,278.35,53.908 +662264,276.98,55.823 +662265,280.42,49.901 +662266,278.62,51.956 +662267,277.03,53.934 +662268,275.62,55.842 +662269,279.2,49.942 +662270,277.35,51.989 +662271,275.72,53.958 +662272,274.26,55.858 +662273,277.98,49.985 +662274,276.08,52.022 +662275,274.4,53.983 +662276,272.9,55.874 +662277,276.75,50.029 +662278,274.81,52.056 +662279,273.08,54.006 +662280,271.54,55.887 +662281,275.53,50.075 +662282,273.53,52.091 +662283,271.76,54.03 +662284,270.18,55.9 +662285,274.3,50.122 +662286,272.26,52.125 +662287,270.45,54.052 +662288,268.83,55.911 +662289,273.07,50.171 +662290,270.99,52.161 +662291,269.13,54.074 +662292,267.47,55.92 +662293,271.84,50.221 +662294,269.71,52.197 +662295,267.82,54.096 +662296,266.12,55.928 +662297,270.61,50.273 +662298,268.44,52.233 +662299,266.5,54.117 +662300,264.76,55.935 +662301,269.38,50.326 +662302,267.16,52.27 +662303,265.19,54.138 +662304,263.41,55.94 +662305,268.14,50.381 +662306,265.89,52.307 +662307,263.87,54.159 +662308,262.06,55.944 +662309,266.91,50.438 +662310,264.61,52.345 +662311,262.56,54.178 +662312,260.71,55.946 +662313,265.67,50.496 +662314,263.33,52.383 +662315,261.25,54.198 +662316,259.36,55.947 +662317,264.43,50.555 +662318,262.05,52.422 +662319,259.93,54.217 +662320,258.02,55.947 +662321,263.18,50.616 +662322,260.78,52.461 +662323,258.62,54.235 +662324,256.67,55.945 +662325,261.94,50.678 +662326,259.5,52.501 +662327,257.31,54.253 +662328,255.33,55.943 +662329,260.69,50.742 +662330,258.22,52.541 +662331,256,54.271 +662332,253.98,55.938 +662333,259.44,50.807 +662334,256.94,52.582 +662335,254.69,54.288 +662336,252.64,55.933 +662337,258.19,50.873 +662338,255.66,52.623 +662339,253.38,54.305 +662340,251.3,55.926 +662341,256.94,50.941 +662342,254.37,52.664 +662343,252.07,54.321 +662344,249.96,55.918 +662345,255.68,51.01 +662346,253.09,52.706 +662347,250.76,54.337 +662348,248.63,55.909 +662349,254.42,51.08 +662350,251.81,52.748 +662351,249.45,54.352 +662352,247.29,55.899 +662353,253.16,51.152 +662354,250.52,52.791 +662355,248.14,54.367 +662356,245.96,55.887 +662357,251.9,51.225 +662358,249.24,52.834 +662359,246.83,54.382 +662360,244.63,55.875 +662361,250.64,51.299 +662362,247.95,52.878 +662363,245.52,54.396 +662364,243.3,55.861 +662365,249.37,51.374 +662366,246.67,52.922 +662367,244.22,54.41 +662368,241.97,55.846 +662369,248.1,51.45 +662370,245.38,52.966 +662371,242.91,54.424 +662372,240.64,55.83 +662373,246.83,51.527 +662374,244.09,53.011 +662375,241.6,54.437 +662376,239.31,55.813 +662377,245.56,51.606 +662378,242.81,53.055 +662379,240.3,54.45 +662380,237.99,55.795 +662381,244.28,51.685 +662382,241.52,53.101 +662383,238.99,54.462 +662384,236.67,55.776 +662385,243,51.766 +662386,240.23,53.146 +662387,237.69,54.474 +662388,235.35,55.755 +662389,241.72,51.847 +662390,238.94,53.192 +662391,236.39,54.486 +662392,234.03,55.734 +662393,240.44,51.93 +662394,237.65,53.239 +662395,235.08,54.498 +662396,232.71,55.712 +662397,239.16,52.013 +662398,236.35,53.285 +662399,233.78,54.509 +662400,231.39,55.689 +662401,237.87,52.098 +662402,235.06,53.332 +662403,232.48,54.52 +662404,230.08,55.665 +662405,236.58,52.183 +662406,233.77,53.379 +662407,231.18,54.53 +662408,228.77,55.641 +662409,235.29,52.269 +662410,232.47,53.427 +662411,229.88,54.541 +662412,227.46,55.615 +662413,234,52.355 +662414,231.18,53.475 +662415,228.58,54.551 +662416,226.15,55.589 +662417,232.7,52.443 +662418,229.88,53.523 +662419,227.28,54.56 +662420,224.84,55.562 +662421,231.4,52.531 +662422,228.59,53.571 +662423,225.98,54.57 +662424,223.54,55.534 +662425,230.1,52.62 +662426,227.29,53.619 +662427,224.68,54.579 +662428,222.23,55.505 +662429,228.8,52.71 +662430,225.99,53.668 +662431,223.38,54.588 +662432,220.93,55.476 +662433,227.5,52.8 +662434,224.69,53.717 +662435,222.08,54.597 +662436,219.63,55.446 +662437,226.19,52.891 +662438,223.4,53.766 +662439,220.79,54.606 +662440,218.33,55.415 +662441,224.88,52.982 +662442,222.1,53.815 +662443,219.49,54.614 +662444,217.04,55.384 +662445,223.57,53.074 +662446,220.79,53.865 +662447,218.19,54.623 +662448,215.74,55.352 +662449,222.26,53.167 +662450,219.49,53.914 +662451,216.9,54.631 +662452,214.45,55.32 +662453,220.94,53.259 +662454,218.19,53.964 +662455,215.61,54.639 +662456,213.16,55.287 +662457,219.62,53.353 +662458,216.89,54.014 +662459,214.31,54.646 +662460,211.87,55.254 +662461,218.31,53.446 +662462,215.58,54.064 +662463,213.02,54.654 +662464,210.58,55.22 +662465,216.98,53.54 +662466,214.28,54.114 +662467,211.73,54.661 +662468,209.3,55.186 +662469,215.66,53.634 +662470,212.98,54.164 +662471,210.43,54.669 +662472,208.02,55.152 +662473,214.33,53.729 +662474,211.67,54.215 +662475,209.14,54.676 +662476,206.74,55.117 +662477,213.01,53.824 +662478,210.36,54.265 +662479,207.85,54.683 +662480,205.46,55.081 +662481,211.68,53.918 +662482,209.06,54.315 +662483,206.56,54.69 +662484,204.18,55.046 +662485,210.35,54.013 +662486,207.75,54.366 +662487,205.27,54.697 +662488,202.9,55.01 +662489,209.01,54.109 +662490,206.44,54.417 +662491,203.98,54.704 +662492,201.63,54.974 +662493,207.68,54.204 +662494,205.13,54.467 +662495,202.69,54.711 +662496,200.36,54.938 +662497,206.34,54.299 +662498,203.82,54.518 +662499,201.41,54.718 +662500,199.09,54.902 +662501,205,54.394 +662502,202.51,54.569 +662503,200.12,54.725 +662504,197.82,54.865 +662505,203.66,54.49 +662506,201.2,54.619 +662507,198.83,54.731 +662508,196.55,54.829 +662509,202.32,54.585 +662510,199.89,54.67 +662511,197.55,54.738 +662512,195.29,54.792 +662513,200.97,54.68 +662514,198.57,54.721 +662515,196.26,54.745 +662516,194.02,54.756 +662517,199.63,54.775 +662518,197.26,54.771 +662519,194.98,54.752 +662520,192.76,54.719 +662521,198.28,54.87 +662522,195.95,54.822 +662523,193.69,54.759 +662524,191.5,54.683 +662525,196.93,54.964 +662526,194.63,54.872 +662527,192.41,54.765 +662528,190.24,54.646 +662529,195.58,55.059 +662530,193.32,54.923 +662531,191.12,54.772 +662532,188.99,54.61 +662533,194.23,55.153 +662534,192,54.973 +662535,189.84,54.779 +662536,187.73,54.574 +662537,192.87,55.246 +662538,190.69,55.023 +662539,188.56,54.786 +662540,186.48,54.538 +662541,191.52,55.34 +662542,189.37,55.073 +662543,187.27,54.793 +662544,185.23,54.502 +662545,190.16,55.433 +662546,188.05,55.123 +662547,185.99,54.801 +662548,183.98,54.466 +662549,188.8,55.526 +662550,186.73,55.173 +662551,184.71,54.808 +662552,182.73,54.431 +662553,187.44,55.618 +662554,185.42,55.223 +662555,183.43,54.815 +662556,181.49,54.396 +662557,186.08,55.709 +662558,184.1,55.273 +662559,182.15,54.823 +662560,180.24,54.362 +662561,184.72,55.801 +662562,182.78,55.322 +662563,180.87,54.83 +662564,179,54.328 +662565,183.35,55.891 +662566,181.46,55.371 +662567,179.59,54.838 +662568,177.76,54.294 +662569,181.99,55.981 +662570,180.14,55.42 +662571,178.31,54.846 +662572,176.52,54.261 +662573,180.62,56.071 +662574,178.82,55.469 +662575,177.03,54.854 +662576,175.28,54.228 +662577,179.26,56.16 +662578,177.49,55.518 +662579,175.76,54.863 +662580,174.04,54.195 +662581,177.89,56.248 +662582,176.17,55.567 +662583,174.48,54.871 +662584,172.81,54.164 +662585,176.52,56.335 +662586,174.85,55.615 +662587,173.2,54.88 +662588,171.57,54.133 +662589,175.15,56.422 +662590,173.53,55.663 +662591,171.92,54.889 +662592,170.34,54.102 +662593,173.77,56.508 +662594,172.2,55.711 +662595,170.65,54.898 +662596,169.11,54.072 +662597,172.4,56.594 +662598,170.88,55.758 +662599,169.37,54.907 +662600,167.88,54.043 +662601,171.03,56.678 +662602,169.55,55.805 +662603,168.1,54.917 +662604,166.65,54.014 +662605,169.65,56.762 +662606,168.23,55.852 +662607,166.82,54.927 +662608,165.42,53.987 +662609,168.28,56.844 +662610,166.91,55.899 +662611,165.55,54.937 +662612,164.2,53.959 +662613,166.9,56.926 +662614,165.58,55.946 +662615,164.27,54.947 +662616,162.97,53.933 +662617,165.52,57.007 +662618,164.25,55.992 +662619,163,54.958 +662620,161.75,53.908 +662621,164.14,57.087 +662622,162.93,56.037 +662623,161.72,54.969 +662624,160.52,53.883 +662625,162.77,57.166 +662626,161.6,56.083 +662627,160.45,54.98 +662628,159.3,53.86 +662629,161.39,57.244 +662630,160.28,56.128 +662631,159.17,54.992 +662632,158.08,53.837 +662633,160.01,57.321 +662634,158.95,56.173 +662635,157.9,55.004 +662636,156.86,53.815 +662637,158.62,57.398 +662638,157.62,56.217 +662639,156.63,55.016 +662640,155.64,53.794 +662641,157.24,57.473 +662642,156.29,56.262 +662643,155.35,55.028 +662644,154.43,53.774 +662645,155.86,57.546 +662646,154.97,56.305 +662647,154.08,55.041 +662648,153.21,53.755 +662649,154.48,57.619 +662650,153.64,56.349 +662651,152.81,55.055 +662652,151.99,53.738 +662653,153.1,57.691 +662654,152.31,56.392 +662655,151.54,55.068 +662656,150.78,53.721 +662657,151.71,57.762 +662658,150.98,56.434 +662659,150.26,55.082 +662660,149.56,53.705 +662661,150.33,57.831 +662662,149.65,56.477 +662663,148.99,55.096 +662664,148.35,53.691 +662665,148.94,57.899 +662666,148.32,56.518 +662667,147.72,55.111 +662668,147.14,53.677 +662669,147.56,57.966 +662670,146.99,56.56 +662671,146.45,55.126 +662672,145.92,53.665 +662673,146.18,58.032 +662674,145.66,56.601 +662675,145.18,55.142 +662676,144.71,53.654 +662677,144.79,58.097 +662678,144.34,56.642 +662679,143.9,55.157 +662680,143.5,53.644 +662681,143.41,58.16 +662682,143.01,56.682 +662683,142.63,55.174 +662684,142.29,53.635 +662685,142.02,58.222 +662686,141.68,56.722 +662687,141.36,55.19 +662688,141.08,53.628 +662689,140.63,58.283 +662690,140.35,56.761 +662691,140.09,55.207 +662692,139.87,53.622 +662693,139.25,58.343 +662694,139.02,56.8 +662695,138.82,55.225 +662696,138.66,53.617 +662697,137.86,58.401 +662698,137.69,56.838 +662699,137.55,55.243 +662700,137.45,53.613 +662701,136.48,58.458 +662702,136.36,56.877 +662703,136.27,55.261 +662704,136.24,53.611 +662705,135.09,58.513 +662706,135.03,56.914 +662707,135,55.28 +662708,135.03,53.61 +662709,133.71,58.568 +662710,133.7,56.951 +662711,133.73,55.299 +662712,133.82,53.611 +662713,132.32,58.621 +662714,132.37,56.988 +662715,132.46,55.319 +662716,132.61,53.612 +662717,130.94,58.672 +662718,131.04,57.024 +662719,131.19,55.339 +662720,131.4,53.616 +662721,129.55,58.722 +662722,129.71,57.06 +662723,129.92,55.36 +662724,130.19,53.62 +662725,128.17,58.771 +662726,128.38,57.095 +662727,128.64,55.381 +662728,128.98,53.626 +662729,126.78,58.819 +662730,127.05,57.13 +662731,127.37,55.402 +662732,127.77,53.633 +662733,125.4,58.865 +662734,125.72,57.164 +662735,126.1,55.424 +662736,126.56,53.642 +662737,124.01,58.91 +662738,124.39,57.198 +662739,124.83,55.446 +662740,125.35,53.652 +662741,122.63,58.953 +662742,123.06,57.232 +662743,123.55,55.469 +662744,124.14,53.664 +662745,121.25,58.995 +662746,121.73,57.265 +662747,122.28,55.493 +662748,122.93,53.677 +662749,119.86,59.035 +662750,120.4,57.297 +662751,121.01,55.516 +662752,121.72,53.692 +662753,118.48,59.074 +662754,119.07,57.329 +662755,119.74,55.541 +662756,120.5,53.708 +662757,117.1,59.112 +662758,117.74,57.36 +662759,118.46,55.565 +662760,119.29,53.725 +662761,115.72,59.148 +662762,116.41,57.391 +662763,117.19,55.591 +662764,118.08,53.744 +662765,114.34,59.183 +662766,115.08,57.422 +662767,115.92,55.616 +662768,116.87,53.765 +662769,112.96,59.216 +662770,113.75,57.452 +662771,114.64,55.643 +662772,115.65,53.786 +662773,111.58,59.248 +662774,112.42,57.481 +662775,113.37,55.669 +662776,114.44,53.81 +662777,110.2,59.279 +662778,111.09,57.51 +662779,112.09,55.696 +662780,113.22,53.835 +662781,108.82,59.308 +662782,109.76,57.539 +662783,110.82,55.724 +662784,112,53.861 +662785,107.44,59.335 +662786,108.44,57.567 +662787,109.54,55.752 +662788,110.78,53.889 +662789,106.07,59.362 +662790,107.11,57.594 +662791,108.27,55.781 +662792,109.57,53.918 +662793,104.69,59.387 +662794,105.78,57.621 +662795,106.99,55.81 +662796,108.35,53.949 +662797,103.32,59.41 +662798,104.45,57.648 +662799,105.71,55.839 +662800,107.13,53.982 +662801,101.94,59.432 +662802,103.13,57.674 +662803,104.44,55.869 +662804,105.9,54.015 +662805,100.57,59.453 +662806,101.8,57.7 +662807,103.16,55.9 +662808,104.68,54.051 +662809,99.197,59.472 +662810,100.47,57.725 +662811,101.88,55.931 +662812,103.46,54.087 +662813,97.825,59.49 +662814,99.145,57.749 +662815,100.6,55.962 +662816,102.23,54.125 +662817,96.455,59.506 +662818,97.819,57.773 +662819,99.326,55.994 +662820,101,54.165 +662821,95.085,59.521 +662822,96.494,57.797 +662823,98.047,56.027 +662824,99.774,54.206 +662825,93.717,59.535 +662826,95.168,57.82 +662827,96.768,56.059 +662828,98.545,54.249 +662829,92.349,59.547 +662830,93.843,57.843 +662831,95.488,56.093 +662832,97.313,54.293 +662833,90.983,59.558 +662834,92.519,57.865 +662835,94.208,56.126 +662836,96.081,54.338 +662837,89.618,59.568 +662838,91.194,57.887 +662839,92.927,56.161 +662840,94.847,54.385 +662841,88.254,59.576 +662842,89.87,57.909 +662843,91.645,56.195 +662844,93.611,54.433 +662845,86.891,59.583 +662846,88.547,57.929 +662847,90.364,56.23 +662848,92.374,54.482 +662849,85.53,59.589 +662850,87.224,57.95 +662851,89.081,56.266 +662852,91.135,54.533 +662853,84.169,59.593 +662854,85.901,57.97 +662855,87.798,56.302 +662856,89.894,54.585 +662857,82.81,59.597 +662858,84.579,57.989 +662859,86.515,56.338 +662860,88.652,54.639 +662861,81.452,59.598 +662862,83.257,58.009 +662863,85.231,56.375 +662864,87.408,54.694 +662865,80.096,59.599 +662866,81.936,58.027 +662867,83.946,56.412 +662868,86.162,54.75 +662869,78.741,59.599 +662870,80.615,58.045 +662871,82.661,56.45 +662872,84.914,54.807 +662873,77.387,59.597 +662874,79.294,58.063 +662875,81.375,56.488 +662876,83.665,54.866 +662877,76.035,59.594 +662878,77.974,58.081 +662879,80.089,56.526 +662880,82.413,54.926 +662881,74.683,59.589 +662882,76.655,58.098 +662883,78.802,56.565 +662884,81.16,54.987 +662885,73.334,59.584 +662886,75.336,58.114 +662887,77.514,56.604 +662888,79.905,55.05 +662889,71.986,59.578 +662890,74.017,58.131 +662891,76.226,56.644 +662892,78.648,55.113 +662893,70.639,59.57 +662894,72.699,58.146 +662895,74.937,56.684 +662896,77.389,55.178 +662897,69.294,59.561 +662898,71.382,58.162 +662899,73.647,56.724 +662900,76.128,55.244 +662901,67.95,59.551 +662902,70.065,58.177 +662903,72.357,56.765 +662904,74.864,55.311 +662905,66.608,59.54 +662906,68.748,58.192 +662907,71.066,56.806 +662908,73.599,55.379 +662909,65.267,59.528 +662910,67.432,58.206 +662911,69.775,56.847 +662912,72.332,55.448 +662913,63.928,59.515 +662914,66.117,58.22 +662915,68.483,56.889 +662916,71.063,55.518 +662917,62.591,59.501 +662918,64.802,58.234 +662919,67.19,56.931 +662920,69.792,55.59 +662921,61.255,59.486 +662922,63.487,58.247 +662923,65.896,56.973 +662924,68.518,55.662 +662925,59.921,59.47 +662926,62.173,58.26 +662927,64.602,57.016 +662928,67.243,55.735 +662929,58.588,59.453 +662930,60.86,58.272 +662931,63.307,57.059 +662932,65.965,55.809 +662933,57.257,59.436 +662934,59.547,58.285 +662935,62.012,57.102 +662936,64.685,55.884 +662937,55.928,59.417 +662938,58.235,58.297 +662939,60.715,57.146 +662940,63.403,55.96 +662941,54.6,59.397 +662942,56.924,58.308 +662943,59.418,57.19 +662944,62.119,56.037 +662945,53.274,59.377 +662946,55.612,58.32 +662947,58.121,57.234 +662948,60.833,56.115 +662949,51.95,59.356 +662950,54.302,58.331 +662951,56.822,57.278 +662952,59.545,56.193 +662953,50.628,59.333 +662954,52.992,58.342 +662955,55.523,57.323 +662956,58.254,56.272 +662957,49.307,59.311 +662958,51.683,58.353 +662959,54.224,57.367 +662960,56.961,56.352 +662961,47.988,59.287 +662962,50.374,58.363 +662963,52.923,57.413 +662964,55.666,56.433 +662965,46.671,59.263 +662966,49.066,58.373 +662967,51.622,57.458 +662968,54.369,56.514 +662969,45.355,59.238 +662970,47.758,58.383 +662971,50.32,57.503 +662972,53.07,56.596 +662973,44.041,59.212 +662974,46.451,58.392 +662975,49.017,57.549 +662976,51.769,56.679 +662977,42.729,59.186 +662978,45.145,58.402 +662979,47.714,57.595 +662980,50.465,56.762 +662981,41.419,59.159 +662982,43.839,58.411 +662983,46.41,57.641 +662984,49.16,56.846 +662985,40.111,59.132 +662986,42.534,58.42 +662987,45.105,57.687 +662988,47.852,56.93 +662989,38.804,59.104 +662990,41.23,58.429 +662991,43.8,57.734 +662992,46.542,57.015 +662993,37.5,59.075 +662994,39.926,58.438 +662995,42.494,57.78 +662996,45.23,57.1 +662997,36.197,59.046 +662998,38.622,58.446 +662999,41.187,57.827 +663000,43.916,57.186 +663001,34.896,59.017 +663002,37.319,58.454 +663003,39.879,57.874 +663004,42.6,57.272 +663005,33.596,58.987 +663006,36.017,58.463 +663007,38.571,57.921 +663008,41.281,57.358 +663009,32.299,58.956 +663010,34.716,58.471 +663011,37.262,57.968 +663012,39.961,57.445 +663013,31.003,58.926 +663014,33.414,58.478 +663015,35.952,58.015 +663016,38.639,57.532 +663017,29.709,58.895 +663018,32.114,58.486 +663019,34.642,58.062 +663020,37.314,57.619 +663021,28.417,58.863 +663022,30.814,58.494 +663023,33.331,58.109 +663024,35.988,57.707 +663025,27.127,58.832 +663026,29.515,58.502 +663027,32.019,58.157 +663028,34.659,57.795 +663029,25.839,58.8 +663030,28.216,58.509 +663031,30.707,58.204 +663032,33.329,57.882 +663033,24.552,58.768 +663034,26.918,58.516 +663035,29.394,58.251 +663036,31.997,57.971 +663037,23.267,58.736 +663038,25.621,58.524 +663039,28.08,58.299 +663040,30.662,58.059 +663041,21.984,58.703 +663042,24.324,58.531 +663043,26.766,58.346 +663044,29.326,58.147 +663045,20.703,58.671 +663046,23.027,58.538 +663047,25.451,58.394 +663048,27.988,58.235 +663049,19.423,58.638 +663050,21.732,58.546 +663051,24.135,58.441 +663052,26.648,58.323 +663053,18.146,58.606 +663054,20.436,58.553 +663055,22.819,58.489 +663056,25.306,58.411 +663057,16.87,58.573 +663058,19.142,58.56 +663059,21.502,58.536 +663060,23.962,58.5 +663061,15.596,58.54 +663062,17.848,58.567 +663063,20.184,58.584 +663064,22.617,58.588 +663065,14.323,58.508 +663066,16.554,58.575 +663067,18.866,58.631 +663068,21.27,58.675 +663069,13.053,58.475 +663070,15.261,58.582 +663071,17.547,58.679 +663072,19.921,58.763 +663073,11.784,58.442 +663074,13.969,58.589 +663075,16.227,58.726 +663076,18.57,58.851 +663077,10.517,58.41 +663078,12.677,58.596 +663079,14.907,58.773 +663080,17.218,58.938 +663081,9.2512,58.378 +663082,11.385,58.604 +663083,13.587,58.82 +663084,15.864,59.025 +663085,7.9874,58.346 +663086,10.094,58.611 +663087,12.265,58.867 +663088,14.509,59.112 +663089,6.7252,58.314 +663090,8.8041,58.619 +663091,10.943,58.914 +663092,13.152,59.198 +663093,5.4647,58.283 +663094,7.5142,58.626 +663095,9.6211,58.961 +663096,11.793,59.284 +663097,4.2058,58.251 +663098,6.2248,58.634 +663099,8.2981,59.007 +663100,10.433,59.37 +663101,2.9485,58.22 +663102,4.936,58.642 +663103,6.9746,59.054 +663104,9.0713,59.455 +663105,1.6929,58.19 +663106,3.6476,58.65 +663107,5.6506,59.1 +663108,7.7083,59.54 +663109,0.43875,58.16 +663110,2.3596,58.658 +663111,4.326,59.146 +663112,6.3438,59.624 +663113,359.19,58.13 +663114,1.0722,58.666 +663115,3.0009,59.193 +663116,4.9779,59.708 +663117,357.94,58.1 +663118,359.79,58.674 +663119,1.6753,59.238 +663120,3.6108,59.791 +663121,356.69,58.072 +663122,358.5,58.682 +663123,0.34923,59.284 +663124,2.2423,59.874 +663125,355.44,58.043 +663126,357.21,58.691 +663127,359.02,59.329 +663128,0.87248,59.956 +663129,354.19,58.015 +663130,355.93,58.7 +663131,357.7,59.375 +663132,359.5,60.038 +663133,352.95,57.988 +663134,354.64,58.709 +663135,356.37,59.42 +663136,358.13,60.119 +663137,351.7,57.961 +663138,353.36,58.718 +663139,355.04,59.465 +663140,356.76,60.199 +663141,350.46,57.935 +663142,352.07,58.727 +663143,353.71,59.509 +663144,355.38,60.278 +663145,349.22,57.91 +663146,350.79,58.737 +663147,352.38,59.553 +663148,354.01,60.357 +663149,347.98,57.885 +663150,349.5,58.747 +663151,351.05,59.597 +663152,352.63,60.435 +663153,346.74,57.861 +663154,348.22,58.757 +663155,349.72,59.641 +663156,351.25,60.512 +663157,345.5,57.838 +663158,346.94,58.767 +663159,348.39,59.685 +663160,349.87,60.589 +663161,344.27,57.815 +663162,345.66,58.778 +663163,347.06,59.728 +663164,348.49,60.665 +663165,343.03,57.793 +663166,344.37,58.788 +663167,345.73,59.771 +663168,347.11,60.739 +663169,341.8,57.772 +663170,343.09,58.799 +663171,344.4,59.814 +663172,345.73,60.813 +663173,340.57,57.752 +663174,341.81,58.811 +663175,343.07,59.856 +663176,344.35,60.886 +663177,339.33,57.733 +663178,340.53,58.822 +663179,341.74,59.898 +663180,342.97,60.958 +663181,338.1,57.714 +663182,339.25,58.834 +663183,340.41,59.94 +663184,341.58,61.029 +663185,336.87,57.697 +663186,337.97,58.846 +663187,339.07,59.981 +663188,340.2,61.099 +663189,335.65,57.68 +663190,336.69,58.859 +663191,337.74,60.022 +663192,338.81,61.169 +663193,334.42,57.664 +663194,335.41,58.872 +663195,336.41,60.063 +663196,337.43,61.237 +663197,333.19,57.65 +663198,334.12,58.885 +663199,335.07,60.103 +663200,336.04,61.304 +663201,331.97,57.636 +663202,332.84,58.898 +663203,333.74,60.143 +663204,334.65,61.37 +663205,330.74,57.623 +663206,331.57,58.912 +663207,332.41,60.183 +663208,333.27,61.435 +663209,329.52,57.612 +663210,330.29,58.926 +663211,331.07,60.222 +663212,331.88,61.499 +663213,328.29,57.601 +663214,329.01,58.941 +663215,329.74,60.261 +663216,330.49,61.562 +663217,327.07,57.592 +663218,327.73,58.955 +663219,328.41,60.3 +663220,329.1,61.623 +663221,325.85,57.583 +663222,326.45,58.971 +663223,327.07,60.338 +663224,327.71,61.684 +663225,324.62,57.576 +663226,325.17,58.986 +663227,325.74,60.375 +663228,326.32,61.743 +663229,323.4,57.57 +663230,323.89,59.002 +663231,324.4,60.413 +663232,324.93,61.802 +663233,322.18,57.565 +663234,322.61,59.018 +663235,323.07,60.45 +663236,323.54,61.859 +663237,320.96,57.561 +663238,321.33,59.035 +663239,321.73,60.486 +663240,322.15,61.915 +663241,319.74,57.559 +663242,320.05,59.052 +663243,320.4,60.522 +663244,320.76,61.969 +663245,318.52,57.557 +663246,318.78,59.069 +663247,319.06,60.558 +663248,319.37,62.023 +663249,317.3,57.557 +663250,317.5,59.087 +663251,317.72,60.593 +663252,317.98,62.075 +663253,316.08,57.558 +663254,316.22,59.105 +663255,316.39,60.628 +663256,316.59,62.126 +663257,314.87,57.561 +663258,314.94,59.124 +663259,315.05,60.663 +663260,315.2,62.176 +663261,313.65,57.564 +663262,313.66,59.143 +663263,313.72,60.697 +663264,313.81,62.224 +663265,312.43,57.569 +663266,312.38,59.163 +663267,312.38,60.73 +663268,312.42,62.271 +663269,311.21,57.575 +663270,311.11,59.182 +663271,311.05,60.763 +663272,311.03,62.317 +663273,309.99,57.583 +663274,309.83,59.203 +663275,309.71,60.796 +663276,309.64,62.362 +663277,308.77,57.591 +663278,308.55,59.223 +663279,308.38,60.828 +663280,308.25,62.405 +663281,307.55,57.602 +663282,307.27,59.245 +663283,307.04,60.86 +663284,306.86,62.447 +663285,306.34,57.613 +663286,305.99,59.266 +663287,305.7,60.891 +663288,305.47,62.488 +663289,305.12,57.626 +663290,304.71,59.288 +663291,304.37,60.922 +663292,304.08,62.527 +663293,303.9,57.64 +663294,303.43,59.31 +663295,303.03,60.952 +663296,302.69,62.565 +663297,302.68,57.655 +663298,302.15,59.333 +663299,301.7,60.982 +663300,301.3,62.602 +663301,301.46,57.672 +663302,300.87,59.357 +663303,300.36,61.012 +663304,299.92,62.638 +663305,300.24,57.69 +663306,299.59,59.38 +663307,299.03,61.041 +663308,298.53,62.672 +663309,299.02,57.709 +663310,298.32,59.404 +663311,297.69,61.069 +663312,297.14,62.704 +663313,297.8,57.73 +663314,297.04,59.429 +663315,296.36,61.098 +663316,295.75,62.736 +663317,296.57,57.752 +663318,295.76,59.454 +663319,295.02,61.125 +663320,294.37,62.766 +663321,295.35,57.776 +663322,294.47,59.48 +663323,293.69,61.152 +663324,292.98,62.795 +663325,294.13,57.801 +663326,293.19,59.505 +663327,292.35,61.179 +663328,291.6,62.822 +663329,292.9,57.827 +663330,291.91,59.532 +663331,291.02,61.205 +663332,290.21,62.848 +663333,291.68,57.854 +663334,290.63,59.559 +663335,289.69,61.231 +663336,288.83,62.873 +663337,290.45,57.883 +663338,289.35,59.586 +663339,288.35,61.256 +663340,287.45,62.896 +663341,289.23,57.914 +663342,288.07,59.613 +663343,287.02,61.281 +663344,286.06,62.918 +663345,288,57.945 +663346,286.79,59.641 +663347,285.69,61.306 +663348,284.68,62.939 +663349,286.77,57.978 +663350,285.51,59.67 +663351,284.35,61.33 +663352,283.3,62.958 +663353,285.54,58.013 +663354,284.22,59.699 +663355,283.02,61.353 +663356,281.92,62.976 +663357,284.31,58.048 +663358,282.94,59.728 +663359,281.69,61.376 +663360,280.54,62.993 +663361,283.08,58.085 +663362,281.66,59.758 +663363,280.36,61.399 +663364,279.16,63.009 +663365,281.85,58.124 +663366,280.37,59.788 +663367,279.02,61.421 +663368,277.79,63.023 +663369,280.62,58.163 +663370,279.09,59.819 +663371,277.69,61.443 +663372,276.41,63.036 +663373,279.38,58.204 +663374,277.8,59.85 +663375,276.36,61.464 +663376,275.03,63.047 +663377,278.15,58.247 +663378,276.52,59.881 +663379,275.03,61.485 +663380,273.66,63.058 +663381,276.91,58.29 +663382,275.23,59.913 +663383,273.7,61.505 +663384,272.29,63.067 +663385,275.67,58.335 +663386,273.95,59.946 +663387,272.37,61.525 +663388,270.91,63.075 +663389,274.43,58.381 +663390,272.66,59.978 +663391,271.04,61.545 +663392,269.54,63.081 +663393,273.19,58.429 +663394,271.38,60.011 +663395,269.71,61.564 +663396,268.17,63.087 +663397,271.95,58.477 +663398,270.09,60.045 +663399,268.38,61.582 +663400,266.8,63.091 +663401,270.71,58.527 +663402,268.8,60.079 +663403,267.05,61.601 +663404,265.44,63.094 +663405,269.46,58.578 +663406,267.51,60.113 +663407,265.72,61.619 +663408,264.07,63.095 +663409,268.21,58.63 +663410,266.22,60.148 +663411,264.4,61.636 +663412,262.7,63.096 +663413,266.96,58.684 +663414,264.93,60.183 +663415,263.07,61.653 +663416,261.34,63.095 +663417,265.71,58.738 +663418,263.64,60.218 +663419,261.74,61.67 +663420,259.98,63.093 +663421,264.46,58.794 +663422,262.35,60.254 +663423,260.41,61.686 +663424,258.62,63.091 +663425,263.21,58.851 +663426,261.06,60.29 +663427,259.09,61.702 +663428,257.26,63.087 +663429,261.95,58.909 +663430,259.77,60.327 +663431,257.76,61.717 +663432,255.9,63.081 +663433,260.7,58.968 +663434,258.48,60.364 +663435,256.44,61.732 +663436,254.54,63.075 +663437,259.44,59.028 +663438,257.19,60.401 +663439,255.11,61.747 +663440,253.18,63.068 +663441,258.18,59.089 +663442,255.89,60.438 +663443,253.79,61.761 +663444,251.83,63.06 +663445,256.91,59.152 +663446,254.6,60.476 +663447,252.46,61.775 +663448,250.48,63.05 +663449,255.65,59.215 +663450,253.31,60.514 +663451,251.14,61.789 +663452,249.13,63.04 +663453,254.38,59.279 +663454,252.01,60.553 +663455,249.82,61.802 +663456,247.78,63.028 +663457,253.12,59.344 +663458,250.72,60.592 +663459,248.5,61.815 +663460,246.43,63.016 +663461,251.85,59.41 +663462,249.42,60.631 +663463,247.17,61.828 +663464,245.08,63.003 +663465,250.57,59.478 +663466,248.12,60.67 +663467,245.85,61.84 +663468,243.73,62.988 +663469,249.3,59.545 +663470,246.83,60.71 +663471,244.53,61.852 +663472,242.39,62.973 +663473,248.02,59.614 +663474,245.53,60.75 +663475,243.21,61.864 +663476,241.05,62.957 +663477,246.75,59.684 +663478,244.23,60.79 +663479,241.89,61.875 +663480,239.71,62.94 +663481,245.47,59.755 +663482,242.93,60.831 +663483,240.57,61.886 +663484,238.37,62.922 +663485,244.18,59.826 +663486,241.63,60.872 +663487,239.25,61.897 +663488,237.03,62.904 +663489,242.9,59.898 +663490,240.33,60.913 +663491,237.94,61.908 +663492,235.69,62.884 +663493,241.61,59.971 +663494,239.03,60.954 +663495,236.62,61.918 +663496,234.36,62.864 +663497,240.33,60.044 +663498,237.73,60.995 +663499,235.3,61.928 +663500,233.03,62.843 +663501,239.04,60.118 +663502,236.42,61.037 +663503,233.99,61.938 +663504,231.7,62.822 +663505,237.74,60.193 +663506,235.12,61.079 +663507,232.67,61.947 +663508,230.37,62.799 +663509,236.45,60.269 +663510,233.82,61.121 +663511,231.36,61.957 +663512,229.04,62.776 +663513,235.15,60.345 +663514,232.51,61.163 +663515,230.04,61.966 +663516,227.71,62.753 +663517,233.86,60.422 +663518,231.21,61.206 +663519,228.73,61.974 +663520,226.39,62.728 +663521,232.56,60.499 +663522,229.9,61.249 +663523,227.41,61.983 +663524,225.07,62.703 +663525,231.25,60.577 +663526,228.59,61.292 +663527,226.1,61.991 +663528,223.75,62.678 +663529,229.95,60.655 +663530,227.29,61.335 +663531,224.79,62 +663532,222.43,62.652 +663533,228.64,60.734 +663534,225.98,61.378 +663535,223.48,62.008 +663536,221.11,62.625 +663537,227.33,60.813 +663538,224.67,61.421 +663539,222.17,62.016 +663540,219.79,62.598 +663541,226.02,60.892 +663542,223.36,61.464 +663543,220.86,62.023 +663544,218.48,62.571 +663545,224.71,60.972 +663546,222.05,61.508 +663547,219.55,62.031 +663548,217.17,62.543 +663549,223.4,61.053 +663550,220.74,61.552 +663551,218.24,62.038 +663552,215.86,62.515 +663553,222.08,61.133 +663554,219.43,61.595 +663555,216.93,62.046 +663556,214.55,62.486 +663557,220.76,61.214 +663558,218.12,61.639 +663559,215.62,62.053 +663560,213.24,62.457 +663561,219.44,61.295 +663562,216.8,61.683 +663563,214.31,62.06 +663564,211.94,62.427 +663565,218.12,61.377 +663566,215.49,61.727 +663567,213.01,62.067 +663568,210.64,62.398 +663569,216.79,61.458 +663570,214.18,61.771 +663571,211.7,62.074 +663572,209.34,62.368 +663573,215.46,61.54 +663574,212.86,61.815 +663575,210.39,62.08 +663576,208.04,62.338 +663577,214.14,61.622 +663578,211.55,61.859 +663579,209.09,62.087 +663580,206.74,62.307 +663581,212.81,61.704 +663582,210.23,61.903 +663583,207.78,62.094 +663584,205.44,62.277 +663585,211.47,61.785 +663586,208.91,61.947 +663587,206.48,62.1 +663588,204.15,62.246 +663589,210.14,61.868 +663590,207.6,61.992 +663591,205.18,62.107 +663592,202.86,62.215 +663593,208.8,61.95 +663594,206.28,62.036 +663595,203.87,62.114 +663596,201.57,62.184 +663597,207.46,62.032 +663598,204.96,62.08 +663599,202.57,62.12 +663600,200.28,62.154 +663601,206.12,62.113 +663602,203.64,62.124 +663603,201.27,62.127 +663604,198.99,62.123 +663605,204.78,62.195 +663606,202.32,62.168 +663607,199.97,62.133 +663608,197.71,62.092 +663609,203.44,62.277 +663610,201,62.212 +663611,198.67,62.14 +663612,196.42,62.061 +663613,202.09,62.359 +663614,199.68,62.256 +663615,197.37,62.146 +663616,195.14,62.03 +663617,200.74,62.44 +663618,198.36,62.3 +663619,196.07,62.153 +663620,193.86,61.999 +663621,199.4,62.521 +663622,197.04,62.344 +663623,194.77,62.159 +663624,192.58,61.969 +663625,198.04,62.602 +663626,195.71,62.388 +663627,193.47,62.166 +663628,191.31,61.938 +663629,196.69,62.683 +663630,194.39,62.431 +663631,192.17,62.172 +663632,190.03,61.908 +663633,195.34,62.763 +663634,193.07,62.475 +663635,190.88,62.179 +663636,188.76,61.878 +663637,193.98,62.844 +663638,191.74,62.518 +663639,189.58,62.186 +663640,187.49,61.848 +663641,192.62,62.923 +663642,190.42,62.562 +663643,188.28,62.193 +663644,186.22,61.818 +663645,191.27,63.003 +663646,189.09,62.605 +663647,186.99,62.2 +663648,184.95,61.789 +663649,189.91,63.082 +663650,187.76,62.648 +663651,185.69,62.207 +663652,183.68,61.76 +663653,188.54,63.16 +663654,186.44,62.691 +663655,184.4,62.214 +663656,182.42,61.732 +663657,187.18,63.238 +663658,185.11,62.734 +663659,183.1,62.222 +663660,181.15,61.704 +663661,185.81,63.316 +663662,183.78,62.776 +663663,181.81,62.229 +663664,179.89,61.676 +663665,184.45,63.393 +663666,182.45,62.819 +663667,180.52,62.237 +663668,178.63,61.649 +663669,183.08,63.469 +663670,181.13,62.861 +663671,179.22,62.245 +663672,177.37,61.622 +663673,181.71,63.545 +663674,179.8,62.903 +663675,177.93,62.253 +663676,176.11,61.596 +663677,180.34,63.62 +663678,178.47,62.945 +663679,176.64,62.261 +663680,174.86,61.57 +663681,178.97,63.695 +663682,177.14,62.986 +663683,175.35,62.269 +663684,173.6,61.545 +663685,177.6,63.769 +663686,175.81,63.028 +663687,174.06,62.277 +663688,172.35,61.52 +663689,176.22,63.842 +663690,174.47,63.069 +663691,172.77,62.286 +663692,171.1,61.496 +663693,174.85,63.915 +663694,173.14,63.11 +663695,171.48,62.295 +663696,169.85,61.473 +663697,173.47,63.987 +663698,171.81,63.15 +663699,170.19,62.304 +663700,168.6,61.45 +663701,172.09,64.058 +663702,170.48,63.191 +663703,168.9,62.313 +663704,167.35,61.428 +663705,170.71,64.129 +663706,169.14,63.231 +663707,167.61,62.323 +663708,166.1,61.407 +663709,169.33,64.198 +663710,167.81,63.271 +663711,166.32,62.333 +663712,164.86,61.386 +663713,167.95,64.267 +663714,166.48,63.31 +663715,165.03,62.343 +663716,163.61,61.366 +663717,166.57,64.335 +663718,165.14,63.35 +663719,163.74,62.353 +663720,162.37,61.347 +663721,165.19,64.402 +663722,163.81,63.389 +663723,162.46,62.364 +663724,161.13,61.329 +663725,163.81,64.468 +663726,162.47,63.427 +663727,161.17,62.375 +663728,159.89,61.312 +663729,162.42,64.533 +663730,161.14,63.466 +663731,159.88,62.386 +663732,158.65,61.295 +663733,161.04,64.598 +663734,159.8,63.504 +663735,158.6,62.397 +663736,157.41,61.28 +663737,159.65,64.661 +663738,158.47,63.542 +663739,157.31,62.409 +663740,156.17,61.265 +663741,158.26,64.724 +663742,157.13,63.579 +663743,156.02,62.421 +663744,154.94,61.251 +663745,156.88,64.785 +663746,155.8,63.616 +663747,154.74,62.433 +663748,153.7,61.238 +663749,155.49,64.846 +663750,154.46,63.653 +663751,153.45,62.446 +663752,152.47,61.226 +663753,154.1,64.905 +663754,153.12,63.689 +663755,152.17,62.459 +663756,151.23,61.216 +663757,152.71,64.964 +663758,151.79,63.725 +663759,150.88,62.472 +663760,150,61.206 +663761,151.32,65.021 +663762,150.45,63.761 +663763,149.6,62.486 +663764,148.77,61.197 +663765,149.93,65.077 +663766,149.11,63.796 +663767,148.31,62.5 +663768,147.53,61.189 +663769,148.54,65.132 +663770,147.77,63.831 +663771,147.03,62.514 +663772,146.3,61.182 +663773,147.15,65.186 +663774,146.44,63.866 +663775,145.74,62.529 +663776,145.07,61.177 +663777,145.76,65.24 +663778,145.1,63.9 +663779,144.46,62.544 +663780,143.84,61.172 +663781,144.37,65.291 +663782,143.76,63.934 +663783,143.17,62.559 +663784,142.61,61.169 +663785,142.98,65.342 +663786,142.42,63.967 +663787,141.89,62.575 +663788,141.39,61.166 +663789,141.58,65.392 +663790,141.08,64 +663791,140.61,62.591 +663792,140.16,61.165 +663793,140.19,65.44 +663794,139.74,64.033 +663795,139.32,62.607 +663796,138.93,61.165 +663797,138.8,65.487 +663798,138.41,64.065 +663799,138.04,62.624 +663800,137.7,61.166 +663801,137.41,65.533 +663802,137.07,64.097 +663803,136.76,62.641 +663804,136.48,61.168 +663805,136.01,65.578 +663806,135.73,64.128 +663807,135.47,62.659 +663808,135.25,61.172 +663809,134.62,65.622 +663810,134.39,64.159 +663811,134.19,62.677 +663812,134.02,61.177 +663813,133.23,65.664 +663814,133.05,64.19 +663815,132.91,62.695 +663816,132.8,61.183 +663817,131.83,65.706 +663818,131.71,64.22 +663819,131.62,62.714 +663820,131.57,61.19 +663821,130.44,65.746 +663822,130.37,64.249 +663823,130.34,62.733 +663824,130.34,61.198 +663825,129.05,65.784 +663826,129.03,64.279 +663827,129.06,62.753 +663828,129.12,61.208 +663829,127.65,65.822 +663830,127.69,64.308 +663831,127.77,62.773 +663832,127.89,61.218 +663833,126.26,65.858 +663834,126.35,64.336 +663835,126.49,62.793 +663836,126.67,61.231 +663837,124.87,65.893 +663838,125.02,64.364 +663839,125.2,62.814 +663840,125.44,61.244 +663841,123.48,65.927 +663842,123.68,64.391 +663843,123.92,62.835 +663844,124.21,61.259 +663845,122.09,65.96 +663846,122.34,64.419 +663847,122.64,62.857 +663848,122.99,61.275 +663849,120.69,65.991 +663850,121,64.445 +663851,121.35,62.879 +663852,121.76,61.292 +663853,119.3,66.021 +663854,119.66,64.472 +663855,120.07,62.901 +663856,120.54,61.31 +663857,117.91,66.05 +663858,118.32,64.497 +663859,118.79,62.924 +663860,119.31,61.33 +663861,116.52,66.077 +663862,116.98,64.523 +663863,117.5,62.947 +663864,118.08,61.351 +663865,115.13,66.103 +663866,115.64,64.548 +663867,116.22,62.971 +663868,116.85,61.373 +663869,113.74,66.128 +663870,114.31,64.572 +663871,114.93,62.995 +663872,115.63,61.397 +663873,112.35,66.152 +663874,112.97,64.596 +663875,113.65,63.019 +663876,114.4,61.422 +663877,110.96,66.174 +663878,111.63,64.62 +663879,112.36,63.044 +663880,113.17,61.448 +663881,109.58,66.195 +663882,110.29,64.643 +663883,111.08,63.07 +663884,111.94,61.475 +663885,108.19,66.215 +663886,108.95,64.666 +663887,109.79,63.095 +663888,110.71,61.504 +663889,106.8,66.234 +663890,107.62,64.688 +663891,108.51,63.121 +663892,109.48,61.534 +663893,105.42,66.251 +663894,106.28,64.71 +663895,107.22,63.148 +663896,108.24,61.565 +663897,104.03,66.267 +663898,104.94,64.732 +663899,105.93,63.175 +663900,107.01,61.598 +663901,102.65,66.282 +663902,103.61,64.753 +663903,104.65,63.202 +663904,105.78,61.632 +663905,101.26,66.296 +663906,102.27,64.773 +663907,103.36,63.23 +663908,104.54,61.667 +663909,99.879,66.308 +663910,100.93,64.793 +663911,102.07,63.258 +663912,103.31,61.703 +663913,98.497,66.319 +663914,99.598,64.813 +663915,100.79,63.287 +663916,102.07,61.74 +663917,97.116,66.329 +663918,98.262,64.833 +663919,99.498,63.316 +663920,100.84,61.779 +663921,95.736,66.338 +663922,96.927,64.851 +663923,98.21,63.345 +663924,99.598,61.819 +663925,94.357,66.345 +663926,95.592,64.87 +663927,96.922,63.375 +663928,98.359,61.86 +663929,92.978,66.351 +663930,94.257,64.888 +663931,95.633,63.405 +663932,97.119,61.903 +663933,91.601,66.357 +663934,92.923,64.906 +663935,94.344,63.436 +663936,95.878,61.946 +663937,90.225,66.361 +663938,91.589,64.923 +663939,93.054,63.466 +663940,94.635,61.991 +663941,88.849,66.363 +663942,90.255,64.94 +663943,91.764,63.498 +663944,93.391,62.037 +663945,87.475,66.365 +663946,88.922,64.956 +663947,90.474,63.529 +663948,92.146,62.084 +663949,86.102,66.365 +663950,87.589,64.973 +663951,89.183,63.561 +663952,90.9,62.132 +663953,84.73,66.365 +663954,86.256,64.988 +663955,87.891,63.594 +663956,89.652,62.182 +663957,83.359,66.363 +663958,84.924,65.004 +663959,86.6,63.627 +663960,88.403,62.232 +663961,81.99,66.36 +663962,83.592,65.019 +663963,85.307,63.66 +663964,87.152,62.284 +663965,80.622,66.356 +663966,82.261,65.033 +663967,84.015,63.693 +663968,85.9,62.337 +663969,79.254,66.351 +663970,80.93,65.047 +663971,82.721,63.727 +663972,84.647,62.39 +663973,77.889,66.345 +663974,79.599,65.061 +663975,81.428,63.761 +663976,83.392,62.445 +663977,76.524,66.338 +663978,78.269,65.075 +663979,80.133,63.795 +663980,82.136,62.501 +663981,75.161,66.33 +663982,76.939,65.088 +663983,78.839,63.83 +663984,80.877,62.558 +663985,73.799,66.321 +663986,75.61,65.101 +663987,77.543,63.865 +663988,79.618,62.615 +663989,72.439,66.311 +663990,74.281,65.113 +663991,76.248,63.901 +663992,78.356,62.674 +663993,71.079,66.3 +663994,72.953,65.125 +663995,74.951,63.936 +663996,77.093,62.734 +663997,69.722,66.288 +663998,71.625,65.137 +663999,73.654,63.972 +664000,75.829,62.795 +664001,68.366,66.275 +664002,70.298,65.149 +664003,72.357,64.009 +664004,74.562,62.856 +664005,67.011,66.262 +664006,68.971,65.16 +664007,71.059,64.045 +664008,73.294,62.919 +664009,65.657,66.247 +664010,67.645,65.171 +664011,69.76,64.082 +664012,72.024,62.982 +664013,64.306,66.231 +664014,66.319,65.181 +664015,68.461,64.119 +664016,70.753,63.046 +664017,62.955,66.215 +664018,64.994,65.192 +664019,67.161,64.157 +664020,69.479,63.111 +664021,61.606,66.198 +664022,63.669,65.202 +664023,65.861,64.194 +664024,68.204,63.177 +664025,60.259,66.18 +664026,62.345,65.211 +664027,64.56,64.232 +664028,66.927,63.243 +664029,58.913,66.161 +664030,61.021,65.221 +664031,63.259,64.271 +664032,65.648,63.311 +664033,57.569,66.141 +664034,59.698,65.23 +664035,61.957,64.309 +664036,64.367,63.379 +664037,56.227,66.121 +664038,58.375,65.239 +664039,60.654,64.348 +664040,63.084,63.447 +664041,54.886,66.1 +664042,57.053,65.248 +664043,59.35,64.386 +664044,61.799,63.517 +664045,53.546,66.078 +664046,55.731,65.256 +664047,58.046,64.425 +664048,60.513,63.587 +664049,52.209,66.056 +664050,54.41,65.264 +664051,56.742,64.465 +664052,59.224,63.658 +664053,50.873,66.033 +664054,53.09,65.272 +664055,55.437,64.504 +664056,57.934,63.729 +664057,49.538,66.009 +664058,51.77,65.28 +664059,54.131,64.544 +664060,56.641,63.801 +664061,48.206,65.985 +664062,50.451,65.288 +664063,52.824,64.584 +664064,55.347,63.873 +664065,46.875,65.961 +664066,49.132,65.295 +664067,51.517,64.624 +664068,54.05,63.946 +664069,45.545,65.935 +664070,47.814,65.302 +664071,50.209,64.664 +664072,52.752,64.019 +664073,44.218,65.909 +664074,46.496,65.309 +664075,48.901,64.704 +664076,51.452,64.093 +664077,42.892,65.883 +664078,45.179,65.316 +664079,47.592,64.744 +664080,50.149,64.167 +664081,41.567,65.856 +664082,43.863,65.323 +664083,46.282,64.785 +664084,48.845,64.242 +664085,40.245,65.829 +664086,42.547,65.33 +664087,44.972,64.826 +664088,47.539,64.317 +664089,38.924,65.802 +664090,41.232,65.336 +664091,43.661,64.866 +664092,46.23,64.393 +664093,37.605,65.774 +664094,39.917,65.342 +664095,42.349,64.907 +664096,44.92,64.468 +664097,36.288,65.745 +664098,38.603,65.348 +664099,41.037,64.948 +664100,43.608,64.544 +664101,34.972,65.717 +664102,37.29,65.355 +664103,39.724,64.989 +664104,42.294,64.621 +664105,33.659,65.688 +664106,35.977,65.36 +664107,38.41,65.03 +664108,40.977,64.697 +664109,32.347,65.659 +664110,34.664,65.366 +664111,37.096,65.072 +664112,39.659,64.774 +664113,31.036,65.629 +664114,33.353,65.372 +664115,35.781,65.113 +664116,38.339,64.851 +664117,29.728,65.6 +664118,32.041,65.378 +664119,34.465,65.154 +664120,37.017,64.928 +664121,28.421,65.57 +664122,30.731,65.383 +664123,33.149,65.195 +664124,35.693,65.005 +664125,27.116,65.54 +664126,29.421,65.389 +664127,31.832,65.237 +664128,34.367,65.082 +664129,25.813,65.51 +664130,28.111,65.395 +664131,30.515,65.278 +664132,33.039,65.16 +664133,24.511,65.479 +664134,26.803,65.4 +664135,29.197,65.32 +664136,31.709,65.237 +664137,23.211,65.449 +664138,25.494,65.406 +664139,27.878,65.361 +664140,30.378,65.314 +664141,21.913,65.419 +664142,24.187,65.411 +664143,26.558,65.402 +664144,29.044,65.392 +664145,20.617,65.389 +664146,22.88,65.417 +664147,25.238,65.444 +664148,27.709,65.469 +664149,19.322,65.358 +664150,21.573,65.422 +664151,23.918,65.485 +664152,26.371,65.546 +664153,18.029,65.328 +664154,20.267,65.428 +664155,22.597,65.526 +664156,25.032,65.623 +664157,16.738,65.298 +664158,18.962,65.433 +664159,21.275,65.567 +664160,23.691,65.7 +664161,15.449,65.268 +664162,17.657,65.439 +664163,19.952,65.609 +664164,22.348,65.777 +664165,14.161,65.238 +664166,16.353,65.444 +664167,18.629,65.65 +664168,21.004,65.853 +664169,12.875,65.208 +664170,15.049,65.45 +664171,17.306,65.691 +664172,19.658,65.93 +664173,11.59,65.178 +664174,13.746,65.455 +664175,15.981,65.732 +664176,18.309,66.006 +664177,10.307,65.149 +664178,12.443,65.461 +664179,14.656,65.772 +664180,16.96,66.081 +664181,9.0263,65.12 +664182,11.141,65.467 +664183,13.331,65.813 +664184,15.608,66.157 +664185,7.7468,65.091 +664186,9.8394,65.473 +664187,12.005,65.854 +664188,14.255,66.232 +664189,6.469,65.063 +664190,8.5384,65.479 +664191,10.679,65.894 +664192,12.901,66.307 +664193,5.1927,65.034 +664194,7.2379,65.485 +664195,9.3515,65.934 +664196,11.544,66.381 +664197,3.9181,65.007 +664198,5.9379,65.491 +664199,8.0239,65.975 +664200,10.186,66.455 +664201,2.645,64.979 +664202,4.6384,65.498 +664203,6.6957,66.015 +664204,8.8268,66.529 +664205,1.3735,64.952 +664206,3.3394,65.504 +664207,5.367,66.055 +664208,7.4658,66.602 +664209,0.1035,64.926 +664210,2.0408,65.511 +664211,4.0378,66.094 +664212,6.1032,66.674 +664213,358.84,64.899 +664214,0.74281,65.518 +664215,2.708,66.134 +664216,4.7393,66.746 +664217,357.57,64.874 +664218,359.45,65.525 +664219,1.3778,66.173 +664220,3.3738,66.818 +664221,356.3,64.849 +664222,358.15,65.532 +664223,0.047028,66.212 +664224,2.007,66.889 +664225,355.04,64.824 +664226,356.85,65.539 +664227,358.72,66.251 +664228,0.63876,66.959 +664229,353.78,64.8 +664230,355.56,65.547 +664231,357.38,66.29 +664232,359.27,67.029 +664233,352.51,64.777 +664234,354.26,65.554 +664235,356.05,66.328 +664236,357.9,67.098 +664237,351.25,64.754 +664238,352.96,65.562 +664239,354.72,66.367 +664240,356.53,67.166 +664241,350,64.732 +664242,351.67,65.57 +664243,353.39,66.405 +664244,355.15,67.234 +664245,348.74,64.711 +664246,350.38,65.579 +664247,352.05,66.443 +664248,353.78,67.3 +664249,347.48,64.69 +664250,349.08,65.587 +664251,350.72,66.48 +664252,352.4,67.367 +664253,346.23,64.67 +664254,347.79,65.596 +664255,349.38,66.517 +664256,351.03,67.432 +664257,344.98,64.651 +664258,346.49,65.605 +664259,348.05,66.554 +664260,349.65,67.497 +664261,343.72,64.632 +664262,345.2,65.614 +664263,346.71,66.591 +664264,348.27,67.561 +664265,342.47,64.615 +664266,343.91,65.624 +664267,345.38,66.628 +664268,346.89,67.624 +664269,341.22,64.598 +664270,342.62,65.634 +664271,344.04,66.664 +664272,345.51,67.686 +664273,339.97,64.582 +664274,341.32,65.644 +664275,342.71,66.7 +664276,344.12,67.747 +664277,338.73,64.567 +664278,340.03,65.654 +664279,341.37,66.735 +664280,342.74,67.807 +664281,337.48,64.552 +664282,338.74,65.665 +664283,340.03,66.77 +664284,341.36,67.867 +664285,336.24,64.539 +664286,337.45,65.676 +664287,338.7,66.805 +664288,339.97,67.926 +664289,334.99,64.526 +664290,336.16,65.687 +664291,337.36,66.84 +664292,338.59,67.983 +664293,333.75,64.515 +664294,334.87,65.699 +664295,336.02,66.874 +664296,337.2,68.04 +664297,332.51,64.504 +664298,333.58,65.711 +664299,334.68,66.908 +664300,335.81,68.096 +664301,331.26,64.495 +664302,332.29,65.723 +664303,333.34,66.942 +664304,334.43,68.15 +664305,330.02,64.486 +664306,331,65.735 +664307,332,66.975 +664308,333.04,68.204 +664309,328.78,64.479 +664310,329.71,65.748 +664311,330.67,67.008 +664312,331.65,68.257 +664313,327.54,64.472 +664314,328.42,65.761 +664315,329.33,67.041 +664316,330.26,68.308 +664317,326.31,64.467 +664318,327.13,65.775 +664319,327.99,67.073 +664320,328.87,68.359 +664321,325.07,64.462 +664322,325.85,65.789 +664323,326.65,67.105 +664324,327.48,68.408 +664325,323.83,64.459 +664326,324.56,65.803 +664327,325.31,67.136 +664328,326.08,68.457 +664329,322.6,64.457 +664330,323.27,65.818 +664331,323.97,67.167 +664332,324.69,68.504 +664333,321.36,64.456 +664334,321.98,65.833 +664335,322.63,67.198 +664336,323.3,68.55 +664337,320.12,64.456 +664338,320.69,65.848 +664339,321.29,67.228 +664340,321.91,68.596 +664341,318.89,64.457 +664342,319.41,65.863 +664343,319.95,67.258 +664344,320.52,68.64 +664345,317.66,64.459 +664346,318.12,65.88 +664347,318.61,67.288 +664348,319.12,68.682 +664349,316.42,64.462 +664350,316.83,65.896 +664351,317.27,67.317 +664352,317.73,68.724 +664353,315.19,64.467 +664354,315.54,65.913 +664355,315.92,67.346 +664356,316.33,68.765 +664357,313.96,64.473 +664358,314.26,65.93 +664359,314.58,67.374 +664360,314.94,68.804 +664361,312.72,64.48 +664362,312.97,65.947 +664363,313.24,67.402 +664364,313.55,68.842 +664365,311.49,64.488 +664366,311.68,65.965 +664367,311.9,67.43 +664368,312.15,68.879 +664369,310.26,64.497 +664370,310.39,65.984 +664371,310.56,67.457 +664372,310.76,68.915 +664373,309.03,64.507 +664374,309.11,66.002 +664375,309.22,67.484 +664376,309.36,68.95 +664377,307.79,64.519 +664378,307.82,66.022 +664379,307.88,67.51 +664380,307.97,68.983 +664381,306.56,64.532 +664382,306.53,66.041 +664383,306.54,67.536 +664384,306.58,69.016 +664385,305.33,64.546 +664386,305.24,66.061 +664387,305.2,67.562 +664388,305.18,69.047 +664389,304.1,64.562 +664390,303.96,66.081 +664391,303.85,67.587 +664392,303.79,69.077 +664393,302.87,64.578 +664394,302.67,66.102 +664395,302.51,67.611 +664396,302.4,69.105 +664397,301.64,64.596 +664398,301.38,66.123 +664399,301.17,67.636 +664400,301,69.133 +664401,300.4,64.615 +664402,300.09,66.145 +664403,299.83,67.66 +664404,299.61,69.159 +664405,299.17,64.636 +664406,298.81,66.167 +664407,298.49,67.683 +664408,298.22,69.184 +664409,297.94,64.657 +664410,297.52,66.189 +664411,297.15,67.706 +664412,296.82,69.208 +664413,296.71,64.68 +664414,296.23,66.212 +664415,295.81,67.729 +664416,295.43,69.23 +664417,295.47,64.704 +664418,294.94,66.235 +664419,294.47,67.751 +664420,294.04,69.252 +664421,294.24,64.73 +664422,293.66,66.258 +664423,293.13,67.773 +664424,292.65,69.272 +664425,293.01,64.756 +664426,292.37,66.282 +664427,291.79,67.794 +664428,291.26,69.291 +664429,291.77,64.784 +664430,291.08,66.306 +664431,290.45,67.815 +664432,289.87,69.308 +664433,290.54,64.813 +664434,289.79,66.331 +664435,289.11,67.836 +664436,288.48,69.325 +664437,289.3,64.843 +664438,288.5,66.356 +664439,287.77,67.856 +664440,287.09,69.34 +664441,288.07,64.875 +664442,287.21,66.382 +664443,286.43,67.875 +664444,285.7,69.354 +664445,286.83,64.907 +664446,285.92,66.408 +664447,285.09,67.895 +664448,284.31,69.367 +664449,285.59,64.941 +664450,284.63,66.434 +664451,283.75,67.914 +664452,282.92,69.379 +664453,284.35,64.976 +664454,283.34,66.461 +664455,282.41,67.932 +664456,281.54,69.389 +664457,283.11,65.013 +664458,282.05,66.488 +664459,281.07,67.95 +664460,280.15,69.399 +664461,281.88,65.05 +664462,280.76,66.515 +664463,279.73,67.968 +664464,278.76,69.407 +664465,280.64,65.089 +664466,279.47,66.543 +664467,278.39,67.985 +664468,277.38,69.414 +664469,279.39,65.129 +664470,278.18,66.571 +664471,277.05,68.002 +664472,276,69.42 +664473,278.15,65.17 +664474,276.89,66.6 +664475,275.72,68.019 +664476,274.61,69.424 +664477,276.91,65.212 +664478,275.6,66.629 +664479,274.38,68.035 +664480,273.23,69.428 +664481,275.66,65.255 +664482,274.31,66.658 +664483,273.04,68.051 +664484,271.85,69.43 +664485,274.42,65.299 +664486,273.02,66.688 +664487,271.7,68.066 +664488,270.47,69.432 +664489,273.17,65.345 +664490,271.72,66.718 +664491,270.37,68.081 +664492,269.09,69.432 +664493,271.93,65.392 +664494,270.43,66.749 +664495,269.03,68.096 +664496,267.71,69.431 +664497,270.68,65.439 +664498,269.14,66.779 +664499,267.69,68.11 +664500,266.34,69.429 +664501,269.43,65.488 +664502,267.84,66.811 +664503,266.36,68.124 +664504,264.96,69.426 +664505,268.18,65.538 +664506,266.55,66.842 +664507,265.02,68.137 +664508,263.59,69.422 +664509,266.93,65.589 +664510,265.26,66.874 +664511,263.69,68.15 +664512,262.21,69.417 +664513,265.67,65.641 +664514,263.96,66.906 +664515,262.35,68.163 +664516,260.84,69.411 +664517,264.42,65.694 +664518,262.67,66.939 +664519,261.02,68.176 +664520,259.47,69.404 +664521,263.16,65.747 +664522,261.37,66.971 +664523,259.69,68.188 +664524,258.1,69.396 +664525,261.9,65.802 +664526,260.07,67.004 +664527,258.35,68.2 +664528,256.73,69.387 +664529,260.64,65.858 +664530,258.78,67.038 +664531,257.02,68.211 +664532,255.36,69.377 +664533,259.38,65.915 +664534,257.48,67.072 +664535,255.69,68.222 +664536,254,69.366 +664537,258.12,65.973 +664538,256.18,67.106 +664539,254.36,68.233 +664540,252.63,69.354 +664541,256.86,66.031 +664542,254.88,67.14 +664543,253.02,68.244 +664544,251.27,69.341 +664545,255.59,66.091 +664546,253.58,67.175 +664547,251.69,68.254 +664548,249.91,69.327 +664549,254.33,66.151 +664550,252.29,67.21 +664551,250.36,68.264 +664552,248.54,69.313 +664553,253.06,66.212 +664554,250.99,67.245 +664555,249.03,68.274 +664556,247.18,69.297 +664557,251.79,66.274 +664558,249.69,67.28 +664559,247.7,68.283 +664560,245.83,69.281 +664561,250.52,66.337 +664562,248.38,67.316 +664563,246.37,68.292 +664564,244.47,69.264 +664565,249.25,66.4 +664566,247.08,67.352 +664567,245.04,68.301 +664568,243.11,69.246 +664569,247.97,66.464 +664570,245.78,67.388 +664571,243.72,68.31 +664572,241.76,69.227 +664573,246.7,66.529 +664574,244.48,67.424 +664575,242.39,68.318 +664576,240.41,69.208 +664577,245.42,66.595 +664578,243.18,67.461 +664579,241.06,68.326 +664580,239.06,69.188 +664581,244.14,66.661 +664582,241.87,67.498 +664583,239.73,68.334 +664584,237.71,69.167 +664585,242.86,66.728 +664586,240.57,67.535 +664587,238.41,68.341 +664588,236.36,69.146 +664589,241.57,66.796 +664590,239.26,67.572 +664591,237.08,68.349 +664592,235.01,69.124 +664593,240.29,66.864 +664594,237.96,67.61 +664595,235.76,68.356 +664596,233.67,69.101 +664597,239,66.932 +664598,236.65,67.647 +664599,234.43,68.363 +664600,232.33,69.078 +664601,237.71,67.002 +664602,235.35,67.685 +664603,233.11,68.37 +664604,230.98,69.054 +664605,236.42,67.072 +664606,234.04,67.723 +664607,231.78,68.376 +664608,229.64,69.029 +664609,235.13,67.142 +664610,232.73,67.762 +664611,230.46,68.383 +664612,228.31,69.004 +664613,233.83,67.213 +664614,231.42,67.8 +664615,229.14,68.389 +664616,226.97,68.979 +664617,232.54,67.284 +664618,230.11,67.838 +664619,227.82,68.395 +664620,225.63,68.953 +664621,231.24,67.355 +664622,228.8,67.877 +664623,226.5,68.401 +664624,224.3,68.926 +664625,229.94,67.427 +664626,227.49,67.916 +664627,225.18,68.407 +664628,222.97,68.9 +664629,228.64,67.5 +664630,226.18,67.955 +664631,223.85,68.412 +664632,221.64,68.872 +664633,227.33,67.572 +664634,224.87,67.994 +664635,222.54,68.418 +664636,220.31,68.845 +664637,226.03,67.645 +664638,223.56,68.033 +664639,221.22,68.423 +664640,218.98,68.817 +664641,224.72,67.718 +664642,222.25,68.072 +664643,219.9,68.429 +664644,217.66,68.788 +664645,223.41,67.792 +664646,220.93,68.111 +664647,218.58,68.434 +664648,216.33,68.76 +664649,222.1,67.866 +664650,219.62,68.15 +664651,217.26,68.439 +664652,215.01,68.731 +664653,220.79,67.94 +664654,218.3,68.19 +664655,215.95,68.444 +664656,213.69,68.702 +664657,219.47,68.014 +664658,216.99,68.229 +664659,214.63,68.449 +664660,212.37,68.672 +664661,218.15,68.088 +664662,215.67,68.269 +664663,213.31,68.454 +664664,211.06,68.643 +664665,216.83,68.162 +664666,214.36,68.308 +664667,212,68.459 +664668,209.74,68.613 +664669,215.51,68.236 +664670,213.04,68.348 +664671,210.68,68.463 +664672,208.43,68.583 +664673,214.19,68.311 +664674,211.72,68.387 +664675,209.37,68.468 +664676,207.12,68.553 +664677,212.86,68.385 +664678,210.4,68.427 +664679,208.06,68.473 +664680,205.81,68.523 +664681,211.54,68.46 +664682,209.08,68.466 +664683,206.74,68.478 +664684,204.5,68.493 +664685,210.21,68.534 +664686,207.77,68.506 +664687,205.43,68.482 +664688,203.19,68.463 +664689,208.88,68.609 +664690,206.45,68.545 +664691,204.12,68.487 +664692,201.89,68.433 +664693,207.55,68.683 +664694,205.12,68.585 +664695,202.81,68.492 +664696,200.59,68.403 +664697,206.21,68.757 +664698,203.8,68.624 +664699,201.5,68.497 +664700,199.29,68.373 +664701,204.88,68.831 +664702,202.48,68.664 +664703,200.19,68.501 +664704,197.99,68.343 +664705,203.54,68.905 +664706,201.16,68.703 +664707,198.88,68.506 +664708,196.69,68.314 +664709,202.2,68.978 +664710,199.84,68.742 +664711,197.57,68.511 +664712,195.39,68.284 +664713,200.86,69.052 +664714,198.51,68.782 +664715,196.26,68.516 +664716,194.1,68.255 +664717,199.52,69.125 +664718,197.19,68.821 +664719,194.95,68.521 +664720,192.8,68.225 +664721,198.17,69.198 +664722,195.86,68.86 +664723,193.65,68.526 +664724,191.51,68.196 +664725,196.82,69.27 +664726,194.54,68.899 +664727,192.34,68.531 +664728,190.22,68.168 +664729,195.48,69.342 +664730,193.21,68.938 +664731,191.03,68.536 +664732,188.94,68.139 +664733,194.13,69.414 +664734,191.88,68.976 +664735,189.73,68.542 +664736,187.65,68.111 +664737,192.77,69.486 +664738,190.56,69.015 +664739,188.42,68.547 +664740,186.36,68.083 +664741,191.42,69.557 +664742,189.23,69.053 +664743,187.12,68.553 +664744,185.08,68.056 +664745,190.07,69.627 +664746,187.9,69.092 +664747,185.82,68.559 +664748,183.8,68.029 +664749,188.71,69.698 +664750,186.57,69.13 +664751,184.51,68.564 +664752,182.52,68.002 +664753,187.35,69.767 +664754,185.24,69.168 +664755,183.21,68.57 +664756,181.24,67.976 +664757,185.99,69.836 +664758,183.91,69.205 +664759,181.91,68.577 +664760,179.96,67.95 +664761,184.63,69.905 +664762,182.58,69.243 +664763,180.6,68.583 +664764,178.69,67.925 +664765,183.27,69.973 +664766,181.25,69.281 +664767,179.3,68.589 +664768,177.41,67.901 +664769,181.91,70.04 +664770,179.92,69.318 +664771,178,68.596 +664772,176.14,67.876 +664773,180.54,70.107 +664774,178.59,69.355 +664775,176.7,68.603 +664776,174.87,67.853 +664777,179.17,70.173 +664778,177.26,69.392 +664779,175.4,68.61 +664780,173.6,67.83 +664781,177.81,70.239 +664782,175.92,69.428 +664783,174.1,68.617 +664784,172.33,67.808 +664785,176.44,70.304 +664786,174.59,69.465 +664787,172.8,68.625 +664788,171.07,67.786 +664789,175.07,70.368 +664790,173.26,69.501 +664791,171.5,68.633 +664792,169.8,67.765 +664793,173.69,70.431 +664794,171.92,69.536 +664795,170.2,68.641 +664796,168.54,67.745 +664797,172.32,70.494 +664798,170.59,69.572 +664799,168.91,68.649 +664800,167.27,67.725 +664801,170.95,70.556 +664802,169.25,69.607 +664803,167.61,68.657 +664804,166.01,67.707 +664805,169.57,70.617 +664806,167.92,69.643 +664807,166.31,68.666 +664808,164.75,67.689 +664809,168.19,70.677 +664810,166.58,69.677 +664811,165.02,68.675 +664812,163.49,67.671 +664813,166.81,70.737 +664814,165.24,69.712 +664815,163.72,68.684 +664816,162.24,67.655 +664817,165.44,70.795 +664818,163.91,69.746 +664819,162.42,68.694 +664820,160.98,67.639 +664821,164.06,70.853 +664822,162.57,69.78 +664823,161.13,68.704 +664824,159.72,67.625 +664825,162.67,70.91 +664826,161.23,69.814 +664827,159.83,68.714 +664828,158.47,67.611 +664829,161.29,70.966 +664830,159.89,69.847 +664831,158.54,68.724 +664832,157.22,67.598 +664833,159.91,71.021 +664834,158.56,69.88 +664835,157.24,68.735 +664836,155.96,67.586 +664837,158.53,71.075 +664838,157.22,69.913 +664839,155.95,68.746 +664840,154.71,67.575 +664841,157.14,71.128 +664842,155.88,69.945 +664843,154.65,68.757 +664844,153.46,67.565 +664845,155.75,71.18 +664846,154.54,69.978 +664847,153.36,68.769 +664848,152.21,67.555 +664849,154.37,71.231 +664850,153.2,70.009 +664851,152.07,68.781 +664852,150.97,67.547 +664853,152.98,71.282 +664854,151.86,70.041 +664855,150.77,68.793 +664856,149.72,67.54 +664857,151.59,71.331 +664858,150.52,70.072 +664859,149.48,68.806 +664860,148.47,67.534 +664861,150.2,71.379 +664862,149.18,70.103 +664863,148.19,68.819 +664864,147.23,67.529 +664865,148.82,71.426 +664866,147.84,70.133 +664867,146.9,68.832 +664868,145.98,67.525 +664869,147.43,71.472 +664870,146.5,70.163 +664871,145.6,68.846 +664872,144.74,67.522 +664873,146.04,71.517 +664874,145.16,70.193 +664875,144.31,68.86 +664876,143.49,67.52 +664877,144.64,71.561 +664878,143.82,70.222 +664879,143.02,68.874 +664880,142.25,67.519 +664881,143.25,71.604 +664882,142.47,70.251 +664883,141.73,68.889 +664884,141.01,67.519 +664885,141.86,71.646 +664886,141.13,70.279 +664887,140.44,68.904 +664888,139.77,67.521 +664889,140.47,71.686 +664890,139.79,70.308 +664891,139.14,68.919 +664892,138.53,67.523 +664893,139.08,71.726 +664894,138.45,70.335 +664895,137.85,68.935 +664896,137.29,67.527 +664897,137.68,71.764 +664898,137.11,70.363 +664899,136.56,68.951 +664900,136.05,67.532 +664901,136.29,71.802 +664902,135.77,70.39 +664903,135.27,68.968 +664904,134.81,67.537 +664905,134.9,71.838 +664906,134.42,70.416 +664907,133.98,68.985 +664908,133.57,67.545 +664909,133.5,71.873 +664910,133.08,70.443 +664911,132.69,69.002 +664912,132.33,67.553 +664913,132.11,71.907 +664914,131.74,70.469 +664915,131.4,69.02 +664916,131.09,67.562 +664917,130.71,71.939 +664918,130.4,70.494 +664919,130.11,69.038 +664920,129.85,67.573 +664921,129.32,71.971 +664922,129.05,70.519 +664923,128.82,69.057 +664924,128.61,67.585 +664925,127.92,72.001 +664926,127.71,70.544 +664927,127.53,69.076 +664928,127.38,67.598 +664929,126.53,72.03 +664930,126.37,70.568 +664931,126.24,69.095 +664932,126.14,67.612 +664933,125.14,72.058 +664934,125.03,70.592 +664935,124.95,69.115 +664936,124.9,67.628 +664937,123.74,72.085 +664938,123.68,70.615 +664939,123.66,69.135 +664940,123.66,67.644 +664941,122.35,72.111 +664942,122.34,70.639 +664943,122.37,69.155 +664944,122.43,67.662 +664945,120.95,72.135 +664946,121,70.661 +664947,121.08,69.176 +664948,121.19,67.682 +664949,119.56,72.158 +664950,119.65,70.684 +664951,119.78,69.198 +664952,119.95,67.702 +664953,118.17,72.18 +664954,118.31,70.705 +664955,118.49,69.219 +664956,118.72,67.724 +664957,116.77,72.201 +664958,116.97,70.727 +664959,117.2,69.241 +664960,117.48,67.746 +664961,115.38,72.221 +664962,115.63,70.748 +664963,115.91,69.264 +664964,116.24,67.77 +664965,113.98,72.239 +664966,114.28,70.769 +664967,114.62,69.287 +664968,115,67.796 +664969,112.59,72.257 +664970,112.94,70.789 +664971,113.33,69.31 +664972,113.77,67.822 +664973,111.2,72.273 +664974,111.6,70.809 +664975,112.04,69.334 +664976,112.53,67.85 +664977,109.81,72.288 +664978,110.26,70.828 +664979,110.75,69.358 +664980,111.29,67.879 +664981,108.42,72.301 +664982,108.91,70.847 +664983,109.46,69.383 +664984,110.05,67.909 +664985,107.03,72.314 +664986,107.57,70.866 +664987,108.17,69.407 +664988,108.81,67.94 +664989,105.63,72.326 +664990,106.23,70.884 +664991,106.87,69.433 +664992,107.57,67.973 +664993,104.24,72.336 +664994,104.89,70.902 +664995,105.58,69.458 +664996,106.33,68.006 +664997,102.86,72.345 +664998,103.55,70.92 +664999,104.29,69.485 +665000,105.09,68.041 +665001,101.47,72.353 +665002,102.21,70.937 +665003,103,69.511 +665004,103.85,68.077 +665005,100.08,72.36 +665006,100.87,70.954 +665007,101.71,69.538 +665008,102.6,68.114 +665009,98.691,72.366 +665010,99.524,70.97 +665011,100.41,69.565 +665012,101.36,68.153 +665013,97.304,72.37 +665014,98.184,70.986 +665015,99.12,69.593 +665016,100.12,68.192 +665017,95.918,72.374 +665018,96.843,71.001 +665019,97.827,69.621 +665020,98.874,68.233 +665021,94.533,72.376 +665022,95.503,71.017 +665023,96.534,69.649 +665024,97.629,68.275 +665025,93.148,72.377 +665026,94.163,71.032 +665027,95.24,69.678 +665028,96.383,68.318 +665029,91.765,72.378 +665030,92.824,71.046 +665031,93.946,69.707 +665032,95.136,68.362 +665033,90.382,72.377 +665034,91.484,71.06 +665035,92.651,69.736 +665036,93.888,68.407 +665037,89,72.375 +665038,90.145,71.074 +665039,91.357,69.766 +665040,92.64,68.453 +665041,87.619,72.372 +665042,88.807,71.087 +665043,90.062,69.796 +665044,91.39,68.5 +665045,86.239,72.368 +665046,87.468,71.1 +665047,88.766,69.827 +665048,90.14,68.549 +665049,84.86,72.363 +665050,86.13,71.113 +665051,87.47,69.858 +665052,88.888,68.598 +665053,83.482,72.357 +665054,84.792,71.126 +665055,86.174,69.889 +665056,87.635,68.648 +665057,82.106,72.35 +665058,83.455,71.138 +665059,84.878,69.92 +665060,86.381,68.7 +665061,80.73,72.342 +665062,82.118,71.149 +665063,83.581,69.952 +665064,85.126,68.752 +665065,79.355,72.333 +665066,80.781,71.161 +665067,82.283,69.984 +665068,83.87,68.805 +665069,77.981,72.323 +665070,79.445,71.172 +665071,80.986,70.017 +665072,82.613,68.86 +665073,76.609,72.313 +665074,78.109,71.183 +665075,79.688,70.049 +665076,81.354,68.915 +665077,75.238,72.301 +665078,76.773,71.193 +665079,78.389,70.083 +665080,80.094,68.971 +665081,73.868,72.288 +665082,75.438,71.203 +665083,77.09,70.116 +665084,78.833,69.028 +665085,72.499,72.275 +665086,74.103,71.213 +665087,75.791,70.15 +665088,77.57,69.086 +665089,71.131,72.26 +665090,72.769,71.223 +665091,74.491,70.183 +665092,76.306,69.145 +665093,69.765,72.245 +665094,71.435,71.232 +665095,73.19,70.218 +665096,75.041,69.204 +665097,68.4,72.229 +665098,70.101,71.241 +665099,71.889,70.252 +665100,73.774,69.265 +665101,67.036,72.213 +665102,68.768,71.25 +665103,70.588,70.287 +665104,72.506,69.326 +665105,65.674,72.195 +665106,67.436,71.258 +665107,69.286,70.322 +665108,71.236,69.388 +665109,64.313,72.177 +665110,66.103,71.267 +665111,67.984,70.357 +665112,69.965,69.451 +665113,62.953,72.158 +665114,64.772,71.275 +665115,66.681,70.393 +665116,68.692,69.514 +665117,61.595,72.138 +665118,63.44,71.282 +665119,65.378,70.428 +665120,67.417,69.578 +665121,60.238,72.118 +665122,62.11,71.29 +665123,64.074,70.464 +665124,66.141,69.643 +665125,58.883,72.096 +665126,60.779,71.297 +665127,62.769,70.501 +665128,64.864,69.709 +665129,57.529,72.075 +665130,59.45,71.304 +665131,61.464,70.537 +665132,63.585,69.775 +665133,56.176,72.052 +665134,58.12,71.311 +665135,60.159,70.574 +665136,62.304,69.842 +665137,54.825,72.029 +665138,56.791,71.318 +665139,58.853,70.61 +665140,61.021,69.909 +665141,53.476,72.006 +665142,55.463,71.324 +665143,57.546,70.647 +665144,59.737,69.977 +665145,52.128,71.982 +665146,54.135,71.331 +665147,56.239,70.685 +665148,58.451,70.045 +665149,50.781,71.957 +665150,52.808,71.337 +665151,54.931,70.722 +665152,57.164,70.114 +665153,49.436,71.932 +665154,51.481,71.343 +665155,53.623,70.759 +665156,55.874,70.183 +665157,48.093,71.906 +665158,50.155,71.349 +665159,52.314,70.797 +665160,54.583,70.253 +665161,46.751,71.88 +665162,48.829,71.354 +665163,51.005,70.835 +665164,53.29,70.323 +665165,45.411,71.854 +665166,47.504,71.36 +665167,49.695,70.873 +665168,51.996,70.394 +665169,44.072,71.827 +665170,46.18,71.365 +665171,48.384,70.911 +665172,50.699,70.465 +665173,42.735,71.799 +665174,44.856,71.371 +665175,47.073,70.949 +665176,49.401,70.536 +665177,41.4,71.772 +665178,43.532,71.376 +665179,45.761,70.987 +665180,48.101,70.608 +665181,40.066,71.744 +665182,42.209,71.381 +665183,44.449,71.026 +665184,46.799,70.68 +665185,38.734,71.715 +665186,40.887,71.386 +665187,43.136,71.064 +665188,45.496,70.752 +665189,37.403,71.687 +665190,39.565,71.391 +665191,41.822,71.103 +665192,44.19,70.825 +665193,36.075,71.658 +665194,38.243,71.395 +665195,40.508,71.141 +665196,42.883,70.897 +665197,34.747,71.629 +665198,36.922,71.4 +665199,39.193,71.18 +665200,41.574,70.97 +665201,33.422,71.6 +665202,35.602,71.405 +665203,37.878,71.219 +665204,40.263,71.043 +665205,32.098,71.57 +665206,34.282,71.409 +665207,36.562,71.258 +665208,38.95,71.116 +665209,30.776,71.541 +665210,32.963,71.414 +665211,35.245,71.296 +665212,37.636,71.19 +665213,29.455,71.511 +665214,31.645,71.418 +665215,33.928,71.335 +665216,36.319,71.263 +665217,28.136,71.481 +665218,30.327,71.423 +665219,32.61,71.374 +665220,35.001,71.336 +665221,26.819,71.452 +665222,29.009,71.427 +665223,31.292,71.413 +665224,33.681,71.41 +665225,25.503,71.422 +665226,27.692,71.432 +665227,29.973,71.452 +665228,32.359,71.483 +665229,24.189,71.392 +665230,26.376,71.436 +665231,28.653,71.491 +665232,31.035,71.556 +665233,22.877,71.362 +665234,25.06,71.441 +665235,27.333,71.53 +665236,29.709,71.629 +665237,21.566,71.332 +665238,23.745,71.445 +665239,26.012,71.568 +665240,28.382,71.703 +665241,20.257,71.303 +665242,22.43,71.45 +665243,24.691,71.607 +665244,27.053,71.776 +665245,18.95,71.273 +665246,21.116,71.455 +665247,23.369,71.646 +665248,25.722,71.848 +665249,17.644,71.244 +665250,19.802,71.459 +665251,22.046,71.685 +665252,24.389,71.921 +665253,16.34,71.215 +665254,18.489,71.464 +665255,20.723,71.723 +665256,23.054,71.993 +665257,15.038,71.186 +665258,17.177,71.469 +665259,19.399,71.762 +665260,21.718,72.066 +665261,13.737,71.157 +665262,15.865,71.474 +665263,18.075,71.8 +665264,20.38,72.138 +665265,12.438,71.128 +665266,14.553,71.479 +665267,16.75,71.839 +665268,19.04,72.209 +665269,11.14,71.1 +665270,13.243,71.484 +665271,15.424,71.877 +665272,17.698,72.281 +665273,9.8441,71.072 +665274,11.932,71.489 +665275,14.098,71.915 +665276,16.355,72.352 +665277,8.5498,71.044 +665278,10.622,71.494 +665279,12.772,71.953 +665280,15.01,72.422 +665281,7.257,71.017 +665282,9.313,71.499 +665283,11.444,71.991 +665284,13.663,72.493 +665285,5.9658,70.99 +665286,8.0042,71.505 +665287,10.117,72.029 +665288,12.315,72.562 +665289,4.6762,70.963 +665290,6.6959,71.511 +665291,8.7882,72.067 +665292,10.965,72.632 +665293,3.3881,70.937 +665294,5.3881,71.516 +665295,7.4593,72.104 +665296,9.6133,72.701 +665297,2.1015,70.912 +665298,4.0808,71.522 +665299,6.1299,72.141 +665300,8.26,72.769 +665301,0.81647,70.886 +665302,2.7741,71.528 +665303,4.7999,72.179 +665304,6.9052,72.837 +665305,359.53,70.862 +665306,1.4678,71.535 +665307,3.4694,72.216 +665308,5.5489,72.904 +665309,358.25,70.838 +665310,0.16196,71.541 +665311,2.1384,72.252 +665312,4.191,72.971 +665313,356.97,70.814 +665314,358.86,71.548 +665315,0.80693,72.289 +665316,2.8316,73.037 +665317,355.69,70.791 +665318,357.55,71.555 +665319,359.47,72.325 +665320,1.4707,73.103 +665321,354.41,70.769 +665322,356.25,71.562 +665323,358.14,72.362 +665324,0.1083,73.168 +665325,353.14,70.747 +665326,354.94,71.569 +665327,356.81,72.398 +665328,358.74,73.232 +665329,351.86,70.726 +665330,353.64,71.577 +665331,355.48,72.433 +665332,357.38,73.296 +665333,350.59,70.706 +665334,352.34,71.584 +665335,354.14,72.469 +665336,356.01,73.359 +665337,349.32,70.686 +665338,351.03,71.592 +665339,352.81,72.504 +665340,354.64,73.421 +665341,348.05,70.667 +665342,349.73,71.601 +665343,351.47,72.539 +665344,353.28,73.482 +665345,346.78,70.649 +665346,348.43,71.609 +665347,350.14,72.574 +665348,351.9,73.543 +665349,345.51,70.632 +665350,347.13,71.618 +665351,348.8,72.609 +665352,350.53,73.603 +665353,344.24,70.615 +665354,345.83,71.627 +665355,347.47,72.643 +665356,349.16,73.662 +665357,342.98,70.599 +665358,344.53,71.636 +665359,346.13,72.677 +665360,347.79,73.72 +665361,341.71,70.584 +665362,343.23,71.646 +665363,344.79,72.711 +665364,346.41,73.778 +665365,340.45,70.57 +665366,341.93,71.656 +665367,343.45,72.744 +665368,345.03,73.834 +665369,339.19,70.557 +665370,340.63,71.666 +665371,342.12,72.777 +665372,343.66,73.89 +665373,337.92,70.545 +665374,339.33,71.676 +665375,340.78,72.81 +665376,342.28,73.945 +665377,336.66,70.533 +665378,338.03,71.687 +665379,339.44,72.842 +665380,340.9,73.999 +665381,335.41,70.523 +665382,336.73,71.698 +665383,338.1,72.875 +665384,339.52,74.052 +665385,334.15,70.513 +665386,335.43,71.71 +665387,336.76,72.907 +665388,338.13,74.103 +665389,332.89,70.505 +665390,334.14,71.721 +665391,335.42,72.938 +665392,336.75,74.155 +665393,331.63,70.497 +665394,332.84,71.733 +665395,334.08,72.969 +665396,335.37,74.205 +665397,330.38,70.491 +665398,331.54,71.746 +665399,332.74,73 +665400,333.98,74.254 +665401,329.13,70.485 +665402,330.24,71.758 +665403,331.4,73.031 +665404,332.6,74.302 +665405,327.87,70.481 +665406,328.95,71.772 +665407,330.06,73.061 +665408,331.21,74.349 +665409,326.62,70.478 +665410,327.65,71.785 +665411,328.72,73.091 +665412,329.82,74.395 +665413,325.37,70.475 +665414,326.36,71.799 +665415,327.38,73.121 +665416,328.44,74.44 +665417,324.12,70.474 +665418,325.06,71.813 +665419,326.04,73.15 +665420,327.05,74.484 +665421,322.87,70.474 +665422,323.76,71.827 +665423,324.69,73.179 +665424,325.66,74.526 +665425,321.62,70.475 +665426,322.47,71.842 +665427,323.35,73.207 +665428,324.27,74.568 +665429,320.37,70.477 +665430,321.17,71.858 +665431,322.01,73.235 +665432,322.88,74.609 +665433,319.12,70.48 +665434,319.88,71.873 +665435,320.67,73.263 +665436,321.49,74.648 +665437,317.88,70.484 +665438,318.58,71.889 +665439,319.32,73.29 +665440,320.1,74.687 +665441,316.63,70.49 +665442,317.29,71.906 +665443,317.98,73.317 +665444,318.71,74.724 +665445,315.38,70.496 +665446,315.99,71.922 +665447,316.64,73.344 +665448,317.31,74.76 +665449,314.14,70.504 +665450,314.7,71.939 +665451,315.29,73.37 +665452,315.92,74.795 +665453,312.89,70.513 +665454,313.41,71.957 +665455,313.95,73.396 +665456,314.53,74.829 +665457,311.65,70.523 +665458,312.11,71.975 +665459,312.61,73.422 +665460,313.13,74.862 +665461,310.4,70.535 +665462,310.82,71.993 +665463,311.26,73.447 +665464,311.74,74.894 +665465,309.16,70.547 +665466,309.52,72.012 +665467,309.92,73.471 +665468,310.35,74.924 +665469,307.92,70.561 +665470,308.23,72.031 +665471,308.58,73.496 +665472,308.95,74.954 +665473,306.67,70.576 +665474,306.94,72.051 +665475,307.23,73.52 +665476,307.56,74.982 +665477,305.43,70.592 +665478,305.64,72.071 +665479,305.89,73.543 +665480,306.16,75.009 +665481,304.19,70.61 +665482,304.35,72.091 +665483,304.54,73.566 +665484,304.77,75.035 +665485,302.94,70.628 +665486,303.06,72.112 +665487,303.2,73.589 +665488,303.38,75.06 +665489,301.7,70.648 +665490,301.76,72.133 +665491,301.85,73.612 +665492,301.98,75.083 +665493,300.46,70.669 +665494,300.47,72.154 +665495,300.51,73.633 +665496,300.59,75.105 +665497,299.22,70.691 +665498,299.17,72.176 +665499,299.17,73.655 +665500,299.19,75.127 +665501,297.97,70.715 +665502,297.88,72.199 +665503,297.82,73.676 +665504,297.8,75.147 +665505,296.73,70.74 +665506,296.59,72.221 +665507,296.48,73.697 +665508,296.4,75.165 +665509,295.49,70.766 +665510,295.29,72.244 +665511,295.13,73.717 +665512,295.01,75.183 +665513,294.25,70.793 +665514,294,72.268 +665515,293.79,73.737 +665516,293.61,75.2 +665517,293,70.821 +665518,292.71,72.292 +665519,292.45,73.757 +665520,292.22,75.215 +665521,291.76,70.851 +665522,291.41,72.316 +665523,291.1,73.776 +665524,290.83,75.229 +665525,290.52,70.881 +665526,290.12,72.341 +665527,289.76,73.795 +665528,289.43,75.242 +665529,289.27,70.913 +665530,288.82,72.366 +665531,288.41,73.814 +665532,288.04,75.254 +665533,288.03,70.947 +665534,287.53,72.392 +665535,287.07,73.832 +665536,286.65,75.265 +665537,286.78,70.981 +665538,286.23,72.418 +665539,285.73,73.849 +665540,285.26,75.274 +665541,285.54,71.017 +665542,284.94,72.444 +665543,284.38,73.867 +665544,283.87,75.283 +665545,284.29,71.053 +665546,283.64,72.471 +665547,283.04,73.883 +665548,282.48,75.29 +665549,283.05,71.091 +665550,282.35,72.498 +665551,281.7,73.9 +665552,281.08,75.296 +665553,281.8,71.13 +665554,281.05,72.525 +665555,280.35,73.916 +665556,279.7,75.301 +665557,280.56,71.17 +665558,279.76,72.553 +665559,279.01,73.932 +665560,278.31,75.305 +665561,279.31,71.212 +665562,278.46,72.581 +665563,277.67,73.947 +665564,276.92,75.308 +665565,278.06,71.254 +665566,277.17,72.61 +665567,276.32,73.963 +665568,275.53,75.31 +665569,276.81,71.298 +665570,275.87,72.639 +665571,274.98,73.977 +665572,274.14,75.311 +665573,275.56,71.342 +665574,274.58,72.668 +665575,273.64,73.992 +665576,272.75,75.31 +665577,274.31,71.388 +665578,273.28,72.698 +665579,272.3,74.006 +665580,271.37,75.309 +665581,273.06,71.435 +665582,271.98,72.728 +665583,270.96,74.019 +665584,269.98,75.307 +665585,271.81,71.483 +665586,270.68,72.759 +665587,269.62,74.033 +665588,268.6,75.303 +665589,270.56,71.532 +665590,269.39,72.789 +665591,268.27,74.046 +665592,267.22,75.299 +665593,269.3,71.582 +665594,268.09,72.82 +665595,266.93,74.058 +665596,265.83,75.293 +665597,268.05,71.633 +665598,266.79,72.852 +665599,265.59,74.07 +665600,264.45,75.287 +665601,266.79,71.685 +665602,265.49,72.884 +665603,264.25,74.082 +665604,263.07,75.279 +665605,265.54,71.738 +665606,264.19,72.916 +665607,262.91,74.094 +665608,261.69,75.271 +665609,264.28,71.792 +665610,262.89,72.948 +665611,261.57,74.106 +665612,260.31,75.262 +665613,263.02,71.847 +665614,261.6,72.981 +665615,260.23,74.117 +665616,258.93,75.252 +665617,261.76,71.903 +665618,260.3,73.014 +665619,258.9,74.127 +665620,257.56,75.24 +665621,260.5,71.96 +665622,259,73.047 +665623,257.56,74.138 +665624,256.18,75.228 +665625,259.24,72.017 +665626,257.69,73.081 +665627,256.22,74.148 +665628,254.81,75.215 +665629,257.98,72.076 +665630,256.39,73.115 +665631,254.88,74.158 +665632,253.43,75.202 +665633,256.71,72.135 +665634,255.09,73.149 +665635,253.54,74.167 +665636,252.06,75.187 +665637,255.45,72.196 +665638,253.79,73.184 +665639,252.21,74.177 +665640,250.69,75.172 +665641,254.18,72.257 +665642,252.49,73.219 +665643,250.87,74.186 +665644,249.32,75.155 +665645,252.91,72.319 +665646,251.18,73.254 +665647,249.53,74.195 +665648,247.95,75.138 +665649,251.64,72.381 +665650,249.88,73.289 +665651,248.2,74.203 +665652,246.58,75.121 +665653,250.37,72.444 +665654,248.58,73.325 +665655,246.86,74.211 +665656,245.22,75.102 +665657,249.1,72.509 +665658,247.27,73.361 +665659,245.53,74.219 +665660,243.85,75.083 +665661,247.83,72.573 +665662,245.97,73.397 +665663,244.19,74.227 +665664,242.49,75.063 +665665,246.55,72.639 +665666,244.66,73.433 +665667,242.86,74.235 +665668,241.13,75.043 +665669,245.28,72.705 +665670,243.36,73.469 +665671,241.52,74.242 +665672,239.77,75.021 +665673,244,72.772 +665674,242.05,73.506 +665675,240.19,74.25 +665676,238.41,74.999 +665677,242.72,72.839 +665678,240.75,73.543 +665679,238.86,74.257 +665680,237.05,74.977 +665681,241.44,72.907 +665682,239.44,73.58 +665683,237.53,74.263 +665684,235.69,74.954 +665685,240.16,72.975 +665686,238.13,73.618 +665687,236.19,74.27 +665688,234.34,74.93 +665689,238.87,73.044 +665690,236.82,73.655 +665691,234.86,74.276 +665692,232.98,74.906 +665693,237.59,73.114 +665694,235.51,73.693 +665695,233.53,74.283 +665696,231.63,74.882 +665697,236.3,73.184 +665698,234.2,73.731 +665699,232.2,74.289 +665700,230.28,74.856 +665701,235.01,73.254 +665702,232.9,73.769 +665703,230.87,74.295 +665704,228.93,74.831 +665705,233.72,73.325 +665706,231.58,73.807 +665707,229.54,74.301 +665708,227.58,74.805 +665709,232.43,73.396 +665710,230.27,73.845 +665711,228.21,74.306 +665712,226.23,74.778 +665713,231.13,73.468 +665714,228.96,73.883 +665715,226.88,74.312 +665716,224.89,74.751 +665717,229.84,73.54 +665718,227.65,73.922 +665719,225.56,74.317 +665720,223.55,74.724 +665721,228.54,73.612 +665722,226.34,73.961 +665723,224.23,74.323 +665724,222.2,74.697 +665725,227.24,73.685 +665726,225.02,73.999 +665727,222.9,74.328 +665728,220.86,74.669 +665729,225.94,73.758 +665730,223.71,74.038 +665731,221.58,74.333 +665732,219.52,74.641 +665733,224.64,73.831 +665734,222.4,74.077 +665735,220.25,74.338 +665736,218.19,74.612 +665737,223.34,73.904 +665738,221.08,74.116 +665739,218.92,74.343 +665740,216.85,74.584 +665741,222.03,73.977 +665742,219.77,74.155 +665743,217.6,74.348 +665744,215.52,74.555 +665745,220.72,74.051 +665746,218.45,74.194 +665747,216.28,74.353 +665748,214.18,74.526 +665749,219.41,74.125 +665750,217.13,74.233 +665751,214.95,74.358 +665752,212.85,74.497 +665753,218.1,74.198 +665754,215.82,74.273 +665755,213.63,74.363 +665756,211.52,74.467 +665757,216.79,74.272 +665758,214.5,74.312 +665759,212.31,74.368 +665760,210.19,74.438 +665761,215.47,74.346 +665762,213.18,74.351 +665763,210.98,74.373 +665764,208.87,74.409 +665765,214.16,74.42 +665766,211.86,74.39 +665767,209.66,74.377 +665768,207.54,74.379 +665769,212.84,74.494 +665770,210.54,74.43 +665771,208.34,74.382 +665772,206.22,74.35 +665773,211.52,74.568 +665774,209.22,74.469 +665775,207.02,74.387 +665776,204.9,74.32 +665777,210.2,74.641 +665778,207.9,74.508 +665779,205.7,74.392 +665780,203.58,74.291 +665781,208.88,74.715 +665782,206.58,74.547 +665783,204.38,74.397 +665784,202.26,74.261 +665785,207.55,74.788 +665786,205.26,74.587 +665787,203.06,74.402 +665788,200.94,74.232 +665789,206.22,74.862 +665790,203.94,74.626 +665791,201.74,74.407 +665792,199.63,74.203 +665793,204.9,74.935 +665794,202.61,74.665 +665795,200.42,74.412 +665796,198.32,74.174 +665797,203.57,75.008 +665798,201.29,74.704 +665799,199.11,74.417 +665800,197,74.145 +665801,202.23,75.08 +665802,199.97,74.743 +665803,197.79,74.422 +665804,195.69,74.116 +665805,200.9,75.153 +665806,198.64,74.782 +665807,196.47,74.427 +665808,194.39,74.088 +665809,199.56,75.225 +665810,197.32,74.82 +665811,195.16,74.432 +665812,193.08,74.06 +665813,198.23,75.297 +665814,195.99,74.859 +665815,193.84,74.438 +665816,191.77,74.032 +665817,196.89,75.368 +665818,194.66,74.898 +665819,192.53,74.443 +665820,190.47,74.005 +665821,195.55,75.439 +665822,193.34,74.936 +665823,191.21,74.449 +665824,189.17,73.977 +665825,194.2,75.51 +665826,192.01,74.974 +665827,189.9,74.455 +665828,187.87,73.951 +665829,192.86,75.58 +665830,190.68,75.013 +665831,188.59,74.461 +665832,186.57,73.924 +665833,191.51,75.65 +665834,189.35,75.051 +665835,187.27,74.467 +665836,185.27,73.898 +665837,190.17,75.719 +665838,188.02,75.088 +665839,185.96,74.473 +665840,183.97,73.873 +665841,188.82,75.788 +665842,186.69,75.126 +665843,184.65,74.48 +665844,182.68,73.848 +665845,187.47,75.856 +665846,185.36,75.164 +665847,183.34,74.486 +665848,181.38,73.823 +665849,186.12,75.924 +665850,184.03,75.201 +665851,182.03,74.493 +665852,180.09,73.799 +665853,184.76,75.991 +665854,182.7,75.238 +665855,180.72,74.5 +665856,178.8,73.775 +665857,183.41,76.058 +665858,181.37,75.275 +665859,179.41,74.507 +665860,177.51,73.752 +665861,182.05,76.124 +665862,180.04,75.312 +665863,178.1,74.515 +665864,176.23,73.73 +665865,180.69,76.189 +665866,178.7,75.349 +665867,176.79,74.522 +665868,174.94,73.708 +665869,179.33,76.254 +665870,177.37,75.385 +665871,175.48,74.53 +665872,173.66,73.687 +665873,177.97,76.318 +665874,176.04,75.421 +665875,174.17,74.538 +665876,172.37,73.667 +665877,176.61,76.381 +665878,174.7,75.457 +665879,172.87,74.546 +665880,171.09,73.647 +665881,175.25,76.443 +665882,173.37,75.493 +665883,171.56,74.555 +665884,169.81,73.628 +665885,173.88,76.505 +665886,172.03,75.528 +665887,170.25,74.564 +665888,168.53,73.61 +665889,172.51,76.566 +665890,170.7,75.564 +665891,168.95,74.573 +665892,167.25,73.593 +665893,171.15,76.626 +665894,169.36,75.599 +665895,167.64,74.582 +665896,165.98,73.576 +665897,169.78,76.685 +665898,168.02,75.633 +665899,166.33,74.592 +665900,164.7,73.56 +665901,168.41,76.744 +665902,166.69,75.668 +665903,165.03,74.601 +665904,163.43,73.545 +665905,167.03,76.801 +665906,165.35,75.702 +665907,163.72,74.612 +665908,162.15,73.531 +665909,165.66,76.858 +665910,164.01,75.736 +665911,162.42,74.622 +665912,160.88,73.518 +665913,164.29,76.914 +665914,162.67,75.769 +665915,161.12,74.633 +665916,159.61,73.505 +665917,162.91,76.969 +665918,161.33,75.802 +665919,159.81,74.644 +665920,158.34,73.494 +665921,161.53,77.023 +665922,159.99,75.835 +665923,158.51,74.655 +665924,157.08,73.483 +665925,160.16,77.076 +665926,158.65,75.868 +665927,157.21,74.667 +665928,155.81,73.473 +665929,158.78,77.128 +665930,157.31,75.9 +665931,155.9,74.679 +665932,154.54,73.465 +665933,157.4,77.179 +665934,155.97,75.932 +665935,154.6,74.691 +665936,153.28,73.457 +665937,156.02,77.23 +665938,154.63,75.964 +665939,153.3,74.704 +665940,152.01,73.45 +665941,154.63,77.279 +665942,153.29,75.995 +665943,152,74.717 +665944,150.75,73.445 +665945,153.25,77.327 +665946,151.95,76.026 +665947,150.7,74.731 +665948,149.49,73.44 +665949,151.87,77.374 +665950,150.61,76.057 +665951,149.4,74.744 +665952,148.23,73.437 +665953,150.48,77.42 +665954,149.27,76.087 +665955,148.1,74.758 +665956,146.97,73.434 +665957,149.1,77.465 +665958,147.92,76.117 +665959,146.8,74.773 +665960,145.71,73.433 +665961,147.71,77.509 +665962,146.58,76.147 +665963,145.5,74.788 +665964,144.45,73.432 +665965,146.33,77.552 +665966,145.24,76.176 +665967,144.2,74.803 +665968,143.19,73.433 +665969,144.94,77.594 +665970,143.9,76.205 +665971,142.9,74.818 +665972,141.94,73.435 +665973,143.55,77.635 +665974,142.55,76.234 +665975,141.6,74.834 +665976,140.68,73.438 +665977,142.16,77.674 +665978,141.21,76.262 +665979,140.3,74.851 +665980,139.42,73.442 +665981,140.77,77.713 +665982,139.86,76.29 +665983,139,74.867 +665984,138.17,73.447 +665985,139.38,77.75 +665986,138.52,76.317 +665987,137.7,74.885 +665988,136.92,73.454 +665989,137.99,77.786 +665990,137.18,76.344 +665991,136.4,74.902 +665992,135.66,73.461 +665993,136.6,77.821 +665994,135.83,76.371 +665995,135.1,74.92 +665996,134.41,73.47 +665997,135.21,77.855 +665998,134.49,76.397 +665999,133.8,74.938 +666000,133.16,73.48 +666001,133.81,77.888 +666002,133.14,76.423 +666003,132.51,74.957 +666004,131.91,73.491 +666005,132.42,77.92 +666006,131.8,76.448 +666007,131.21,74.976 +666008,130.65,73.504 +666009,131.03,77.95 +666010,130.45,76.474 +666011,129.91,74.995 +666012,129.4,73.517 +666013,129.63,77.98 +666014,129.11,76.498 +666015,128.61,75.015 +666016,128.15,73.532 +666017,128.24,78.008 +666018,127.76,76.523 +666019,127.32,75.036 +666020,126.9,73.548 +666021,126.85,78.035 +666022,126.42,76.547 +666023,126.02,75.056 +666024,125.65,73.565 +666025,125.45,78.061 +666026,125.07,76.57 +666027,124.72,75.078 +666028,124.4,73.584 +666029,124.06,78.085 +666030,123.72,76.593 +666031,123.42,75.099 +666032,123.15,73.604 +666033,122.66,78.109 +666034,122.38,76.616 +666035,122.13,75.121 +666036,121.9,73.624 +666037,121.27,78.131 +666038,121.03,76.639 +666039,120.83,75.143 +666040,120.66,73.647 +666041,119.87,78.152 +666042,119.69,76.661 +666043,119.53,75.166 +666044,119.41,73.67 +666045,118.48,78.172 +666046,118.34,76.682 +666047,118.23,75.189 +666048,118.16,73.695 +666049,117.08,78.191 +666050,116.99,76.703 +666051,116.94,75.213 +666052,116.91,73.721 +666053,115.69,78.208 +666054,115.65,76.724 +666055,115.64,75.237 +666056,115.66,73.748 +666057,114.29,78.225 +666058,114.3,76.745 +666059,114.34,75.261 +666060,114.41,73.776 +666061,112.9,78.24 +666062,112.96,76.765 +666063,113.04,75.286 +666064,113.16,73.806 +666065,111.51,78.254 +666066,111.61,76.784 +666067,111.75,75.311 +666068,111.92,73.836 +666069,110.11,78.267 +666070,110.26,76.804 +666071,110.45,75.337 +666072,110.67,73.868 +666073,108.72,78.279 +666074,108.92,76.822 +666075,109.15,75.363 +666076,109.42,73.901 +666077,107.32,78.289 +666078,107.57,76.841 +666079,107.85,75.389 +666080,108.17,73.936 +666081,105.93,78.299 +666082,106.23,76.859 +666083,106.56,75.416 +666084,106.92,73.972 +666085,104.54,78.307 +666086,104.88,76.877 +666087,105.26,75.443 +666088,105.67,74.008 +666089,103.14,78.314 +666090,103.53,76.894 +666091,103.96,75.471 +666092,104.42,74.046 +666093,101.75,78.32 +666094,102.19,76.911 +666095,102.66,75.499 +666096,103.17,74.086 +666097,100.36,78.325 +666098,100.84,76.928 +666099,101.36,75.527 +666100,101.92,74.126 +666101,98.968,78.329 +666102,99.498,76.944 +666103,100.06,75.556 +666104,100.67,74.167 +666105,97.577,78.332 +666106,98.153,76.96 +666107,98.765,75.585 +666108,99.416,74.21 +666109,96.186,78.334 +666110,96.807,76.975 +666111,97.466,75.615 +666112,98.164,74.254 +666113,94.796,78.334 +666114,95.463,76.991 +666115,96.167,75.645 +666116,96.912,74.299 +666117,93.407,78.334 +666118,94.118,77.005 +666119,94.868,75.675 +666120,95.658,74.345 +666121,92.018,78.332 +666122,92.773,77.02 +666123,93.568,75.706 +666124,94.405,74.392 +666125,90.63,78.33 +666126,91.429,77.034 +666127,92.269,75.737 +666128,93.15,74.44 +666129,89.242,78.326 +666130,90.085,77.048 +666131,90.969,75.768 +666132,91.895,74.49 +666133,87.855,78.322 +666134,88.741,77.061 +666135,89.668,75.8 +666136,90.639,74.54 +666137,86.469,78.316 +666138,87.397,77.074 +666139,88.368,75.832 +666140,89.383,74.592 +666141,85.084,78.309 +666142,86.054,77.087 +666143,87.067,75.865 +666144,88.126,74.644 +666145,83.7,78.302 +666146,84.711,77.1 +666147,85.766,75.897 +666148,86.867,74.698 +666149,82.316,78.293 +666150,83.368,77.112 +666151,84.464,75.931 +666152,85.608,74.752 +666153,80.934,78.284 +666154,82.025,77.123 +666155,83.163,75.964 +666156,84.349,74.808 +666157,79.552,78.274 +666158,80.683,77.135 +666159,81.861,75.998 +666160,83.088,74.864 +666161,78.171,78.262 +666162,79.341,77.146 +666163,80.558,76.032 +666164,81.826,74.921 +666165,76.791,78.25 +666166,77.999,77.157 +666167,79.255,76.066 +666168,80.564,74.98 +666169,75.412,78.237 +666170,76.657,77.168 +666171,77.952,76.101 +666172,79.3,75.039 +666173,74.034,78.223 +666174,75.316,77.178 +666175,76.649,76.136 +666176,78.035,75.099 +666177,72.657,78.209 +666178,73.975,77.188 +666179,75.345,76.171 +666180,76.769,75.16 +666181,71.281,78.193 +666182,72.635,77.198 +666183,74.041,76.207 +666184,75.503,75.222 +666185,69.906,78.177 +666186,71.295,77.207 +666187,72.736,76.243 +666188,74.235,75.285 +666189,68.533,78.16 +666190,69.955,77.217 +666191,71.431,76.279 +666192,72.966,75.348 +666193,67.16,78.142 +666194,68.615,77.226 +666195,70.126,76.315 +666196,71.695,75.412 +666197,65.789,78.123 +666198,67.276,77.235 +666199,68.82,76.352 +666200,70.424,75.477 +666201,64.419,78.104 +666202,65.938,77.243 +666203,67.514,76.389 +666204,69.151,75.543 +666205,63.05,78.084 +666206,64.599,77.252 +666207,66.207,76.426 +666208,67.877,75.61 +666209,61.682,78.064 +666210,63.262,77.26 +666211,64.9,76.463 +666212,66.602,75.677 +666213,60.315,78.042 +666214,61.924,77.268 +666215,63.592,76.501 +666216,65.325,75.745 +666217,58.95,78.02 +666218,60.587,77.275 +666219,62.284,76.539 +666220,64.047,75.813 +666221,57.586,77.998 +666222,59.25,77.283 +666223,60.976,76.577 +666224,62.768,75.882 +666225,56.223,77.975 +666226,57.914,77.29 +666227,59.667,76.615 +666228,61.487,75.952 +666229,54.862,77.951 +666230,56.578,77.297 +666231,58.357,76.653 +666232,60.205,76.022 +666233,53.502,77.927 +666234,55.243,77.304 +666235,57.047,76.692 +666236,58.921,76.093 +666237,52.143,77.902 +666238,53.908,77.311 +666239,55.737,76.731 +666240,57.636,76.164 +666241,50.785,77.877 +666242,52.573,77.318 +666243,54.426,76.77 +666244,56.35,76.236 +666245,49.429,77.852 +666246,51.239,77.324 +666247,53.115,76.809 +666248,55.062,76.308 +666249,48.075,77.826 +666250,49.906,77.33 +666251,51.803,76.848 +666252,53.773,76.381 +666253,46.722,77.799 +666254,48.572,77.337 +666255,50.49,76.887 +666256,52.482,76.454 +666257,45.37,77.772 +666258,47.24,77.343 +666259,49.177,76.927 +666260,51.189,76.527 +666261,44.02,77.745 +666262,45.907,77.349 +666263,47.864,76.967 +666264,49.895,76.601 +666265,42.671,77.718 +666266,44.576,77.355 +666267,46.55,77.006 +666268,48.6,76.675 +666269,41.323,77.69 +666270,43.244,77.361 +666271,45.235,77.046 +666272,47.302,76.749 +666273,39.977,77.662 +666274,41.914,77.366 +666275,43.92,77.086 +666276,46.004,76.824 +666277,38.633,77.633 +666278,40.583,77.372 +666279,42.604,77.126 +666280,44.703,76.899 +666281,37.29,77.605 +666282,39.254,77.377 +666283,41.288,77.166 +666284,43.401,76.974 +666285,35.948,77.576 +666286,37.924,77.383 +666287,39.971,77.207 +666288,42.098,77.049 +666289,34.609,77.547 +666290,36.596,77.388 +666291,38.654,77.247 +666292,40.792,77.125 +666293,33.27,77.518 +666294,35.267,77.394 +666295,37.336,77.287 +666296,39.485,77.2 +666297,31.933,77.489 +666298,33.939,77.399 +666299,36.018,77.327 +666300,38.177,77.276 +666301,30.598,77.459 +666302,32.612,77.405 +666303,34.699,77.368 +666304,36.866,77.351 +666305,29.264,77.43 +666306,31.285,77.41 +666307,33.379,77.408 +666308,35.555,77.427 +666309,27.932,77.401 +666310,29.959,77.415 +666311,32.059,77.449 +666312,34.241,77.503 +666313,26.601,77.371 +666314,28.633,77.421 +666315,30.738,77.489 +666316,32.926,77.579 +666317,25.271,77.342 +666318,27.308,77.426 +666319,29.417,77.529 +666320,31.609,77.654 +666321,23.944,77.313 +666322,25.983,77.432 +666323,28.095,77.57 +666324,30.29,77.73 +666325,22.618,77.283 +666326,24.659,77.437 +666327,26.773,77.61 +666328,28.97,77.805 +666329,21.293,77.254 +666330,23.335,77.443 +666331,25.45,77.651 +666332,27.648,77.881 +666333,19.97,77.225 +666334,22.012,77.448 +666335,24.126,77.691 +666336,26.324,77.956 +666337,18.648,77.196 +666338,20.689,77.454 +666339,22.802,77.731 +666340,24.998,78.031 +666341,17.328,77.168 +666342,19.367,77.459 +666343,21.478,77.771 +666344,23.671,78.106 +666345,16.01,77.139 +666346,18.045,77.465 +666347,20.152,77.811 +666348,22.343,78.18 +666349,14.693,77.111 +666350,16.724,77.471 +666351,18.827,77.851 +666352,21.012,78.254 +666353,13.378,77.083 +666354,15.403,77.477 +666355,17.5,77.891 +666356,19.68,78.328 +666357,12.064,77.056 +666358,14.083,77.483 +666359,16.173,77.931 +666360,18.346,78.402 +666361,10.752,77.028 +666362,12.763,77.489 +666363,14.846,77.971 +666364,17.011,78.475 +666365,9.4408,77.001 +666366,11.444,77.496 +666367,13.518,78.01 +666368,15.673,78.548 +666369,8.1315,76.975 +666370,10.125,77.502 +666371,12.189,78.05 +666372,14.335,78.62 +666373,6.8237,76.949 +666374,8.8068,77.509 +666375,10.86,78.089 +666376,12.994,78.692 +666377,5.5174,76.923 +666378,7.4891,77.515 +666379,9.5303,78.128 +666380,11.652,78.764 +666381,4.2126,76.898 +666382,6.1718,77.522 +666383,8.2001,78.167 +666384,10.308,78.835 +666385,2.9093,76.873 +666386,4.855,77.529 +666387,6.8693,78.206 +666388,8.9632,78.905 +666389,1.6074,76.849 +666390,3.5387,77.537 +666391,5.5379,78.245 +666392,7.6163,78.975 +666393,0.30703,76.825 +666394,2.2229,77.544 +666395,4.2061,78.283 +666396,6.2679,79.045 +666397,359.01,76.802 +666398,0.90748,77.552 +666399,2.8737,78.322 +666400,4.9178,79.114 +666401,357.71,76.779 +666402,359.59,77.56 +666403,1.5408,78.36 +666404,3.5663,79.182 +666405,356.41,76.757 +666406,358.28,77.568 +666407,0.20738,78.398 +666408,2.2132,79.249 +666409,355.12,76.736 +666410,356.96,77.576 +666411,358.87,78.435 +666412,0.85853,79.316 +666413,353.83,76.715 +666414,355.65,77.584 +666415,357.54,78.473 +666416,359.5,79.383 +666417,352.53,76.695 +666418,354.34,77.593 +666419,356.2,78.51 +666420,358.14,79.448 +666421,351.24,76.676 +666422,353.02,77.602 +666423,354.87,78.547 +666424,356.79,79.513 +666425,349.95,76.657 +666426,351.71,77.611 +666427,353.53,78.584 +666428,355.43,79.577 +666429,348.67,76.639 +666430,350.4,77.621 +666431,352.2,78.621 +666432,354.06,79.64 +666433,347.38,76.622 +666434,349.09,77.631 +666435,350.86,78.657 +666436,352.7,79.703 +666437,346.09,76.606 +666438,347.78,77.641 +666439,349.52,78.693 +666440,351.34,79.764 +666441,344.81,76.591 +666442,346.47,77.651 +666443,348.18,78.729 +666444,349.97,79.825 +666445,343.53,76.576 +666446,345.16,77.662 +666447,346.85,78.764 +666448,348.6,79.885 +666449,342.25,76.562 +666450,343.85,77.673 +666451,345.51,78.799 +666452,347.23,79.944 +666453,340.97,76.55 +666454,342.54,77.684 +666455,344.17,78.834 +666456,345.86,80.0022 +666457,339.69,76.538 +666458,341.23,77.695 +666459,342.83,78.869 +666460,344.49,80.0594 +666461,338.41,76.527 +666462,339.92,77.707 +666463,341.49,78.903 +666464,343.12,80.1158 +666465,337.13,76.517 +666466,338.61,77.719 +666467,340.15,78.937 +666468,341.75,80.1711 +666469,335.86,76.508 +666470,337.3,77.732 +666471,338.81,78.971 +666472,340.37,80.2255 +666473,334.58,76.499 +666474,336,77.745 +666475,337.47,79.004 +666476,338.99,80.2789 +666477,333.31,76.492 +666478,334.69,77.758 +666479,336.12,79.037 +666480,337.62,80.3314 +666481,332.03,76.486 +666482,333.38,77.771 +666483,334.78,79.07 +666484,336.24,80.3828 +666485,330.76,76.481 +666486,332.08,77.785 +666487,333.44,79.102 +666488,334.86,80.4331 +666489,329.49,76.477 +666490,330.77,77.799 +666491,332.1,79.134 +666492,333.48,80.4825 +666493,328.22,76.474 +666494,329.46,77.814 +666495,330.75,79.166 +666496,332.1,80.5308 +666497,326.95,76.472 +666498,328.16,77.829 +666499,329.41,79.197 +666500,330.72,80.578 +666501,325.69,76.471 +666502,326.85,77.844 +666503,328.07,79.228 +666504,329.33,80.6241 +666505,324.42,76.472 +666506,325.55,77.86 +666507,326.72,79.259 +666508,327.95,80.6691 +666509,323.15,76.473 +666510,324.24,77.876 +666511,325.38,79.289 +666512,326.56,80.7131 +666513,321.89,76.476 +666514,322.94,77.892 +666515,324.03,79.319 +666516,325.18,80.7559 +666517,320.62,76.479 +666518,321.63,77.909 +666519,322.69,79.348 +666520,323.79,80.7976 +666521,319.36,76.484 +666522,320.33,77.926 +666523,321.34,79.378 +666524,322.4,80.8381 +666525,318.1,76.49 +666526,319.03,77.944 +666527,320,79.406 +666528,321.02,80.8775 +666529,316.83,76.498 +666530,317.72,77.962 +666531,318.65,79.435 +666532,319.63,80.9158 +666533,315.57,76.506 +666534,316.42,77.98 +666535,317.31,79.463 +666536,318.24,80.9529 +666537,314.31,76.516 +666538,315.12,77.999 +666539,315.96,79.49 +666540,316.85,80.9888 +666541,313.05,76.526 +666542,313.81,78.018 +666543,314.61,79.517 +666544,315.46,81.0236 +666545,311.79,76.538 +666546,312.51,78.038 +666547,313.27,79.544 +666548,314.07,81.0571 +666549,310.53,76.552 +666550,311.21,78.058 +666551,311.92,79.571 +666552,312.67,81.0895 +666553,309.27,76.566 +666554,309.9,78.078 +666555,310.57,79.597 +666556,311.28,81.1207 +666557,308.01,76.582 +666558,308.6,78.099 +666559,309.22,79.622 +666560,309.89,81.1507 +666561,306.76,76.599 +666562,307.3,78.12 +666563,307.88,79.648 +666564,308.5,81.1796 +666565,305.5,76.617 +666566,306,78.142 +666567,306.53,79.672 +666568,307.1,81.2072 +666569,304.24,76.636 +666570,304.69,78.164 +666571,305.18,79.697 +666572,305.71,81.2336 +666573,302.98,76.657 +666574,303.39,78.187 +666575,303.83,79.721 +666576,304.31,81.2588 +666577,301.73,76.679 +666578,302.09,78.21 +666579,302.49,79.744 +666580,302.92,81.2828 +666581,300.47,76.702 +666582,300.79,78.233 +666583,301.14,79.768 +666584,301.52,81.3056 +666585,299.21,76.727 +666586,299.49,78.257 +666587,299.79,79.79 +666588,300.13,81.3272 +666589,297.96,76.752 +666590,298.18,78.281 +666591,298.44,79.813 +666592,298.73,81.3476 +666593,296.7,76.779 +666594,296.88,78.305 +666595,297.09,79.835 +666596,297.34,81.3668 +666597,295.45,76.807 +666598,295.58,78.33 +666599,295.74,79.857 +666600,295.94,81.3848 +666601,294.19,76.837 +666602,294.28,78.356 +666603,294.4,79.878 +666604,294.55,81.4015 +666605,292.94,76.868 +666606,292.98,78.382 +666607,293.05,79.899 +666608,293.15,81.4171 +666609,291.68,76.9 +666610,291.67,78.408 +666611,291.7,79.919 +666612,291.76,81.4316 +666613,290.42,76.933 +666614,290.37,78.435 +666615,290.35,79.939 +666616,290.36,81.4448 +666617,289.17,76.967 +666618,289.07,78.462 +666619,289,79.959 +666620,288.97,81.4568 +666621,287.91,77.003 +666622,287.77,78.489 +666623,287.65,79.978 +666624,287.57,81.4677 +666625,286.66,77.04 +666626,286.47,78.517 +666627,286.3,79.997 +666628,286.18,81.4774 +666629,285.4,77.078 +666630,285.16,78.545 +666631,284.96,80.0153 +666632,284.78,81.4859 +666633,284.15,77.117 +666634,283.86,78.574 +666635,283.61,80.0334 +666636,283.39,81.4933 +666637,282.89,77.158 +666638,282.56,78.603 +666639,282.26,80.051 +666640,281.99,81.4995 +666641,281.63,77.199 +666642,281.26,78.633 +666643,280.91,80.0684 +666644,280.6,81.5046 +666645,280.38,77.242 +666646,279.95,78.663 +666647,279.56,80.0853 +666648,279.2,81.5086 +666649,279.12,77.287 +666650,278.65,78.693 +666651,278.21,80.1019 +666652,277.81,81.5115 +666653,277.86,77.332 +666654,277.35,78.724 +666655,276.87,80.1181 +666656,276.42,81.5132 +666657,276.6,77.378 +666658,276.04,78.755 +666659,275.52,80.1339 +666660,275.02,81.5139 +666661,275.34,77.426 +666662,274.74,78.786 +666663,274.17,80.1494 +666664,273.63,81.5134 +666665,274.08,77.474 +666666,273.44,78.818 +666667,272.82,80.1645 +666668,272.24,81.5119 +666669,272.83,77.524 +666670,272.13,78.85 +666671,271.47,80.1792 +666672,270.85,81.5094 +666673,271.57,77.575 +666674,270.83,78.883 +666675,270.13,80.1936 +666676,269.46,81.5057 +666677,270.3,77.627 +666678,269.53,78.916 +666679,268.78,80.2077 +666680,268.07,81.5011 +666681,269.04,77.68 +666682,268.22,78.949 +666683,267.43,80.2214 +666684,266.68,81.4954 +666685,267.78,77.735 +666686,266.92,78.983 +666687,266.09,80.2347 +666688,265.29,81.4888 +666689,266.52,77.79 +666690,265.61,79.017 +666691,264.74,80.2478 +666692,263.9,81.4811 +666693,265.26,77.846 +666694,264.31,79.051 +666695,263.39,80.2605 +666696,262.51,81.4725 +666697,263.99,77.903 +666698,263,79.086 +666699,262.05,80.2729 +666700,261.13,81.4629 +666701,262.73,77.962 +666702,261.7,79.121 +666703,260.7,80.285 +666704,259.74,81.4523 +666705,261.46,78.021 +666706,260.39,79.156 +666707,259.36,80.2968 +666708,258.36,81.4409 +666709,260.19,78.081 +666710,259.08,79.192 +666711,258.01,80.3083 +666712,256.97,81.4285 +666713,258.93,78.142 +666714,257.78,79.228 +666715,256.66,80.3194 +666716,255.59,81.4153 +666717,257.66,78.204 +666718,256.47,79.264 +666719,255.32,80.3303 +666720,254.21,81.4012 +666721,256.39,78.267 +666722,255.16,79.301 +666723,253.97,80.3409 +666724,252.83,81.3862 +666725,255.12,78.331 +666726,253.85,79.337 +666727,252.63,80.3513 +666728,251.45,81.3704 +666729,253.85,78.395 +666730,252.55,79.375 +666731,251.29,80.3613 +666732,250.07,81.3538 +666733,252.58,78.461 +666734,251.24,79.412 +666735,249.94,80.3711 +666736,248.69,81.3364 +666737,251.3,78.527 +666738,249.93,79.45 +666739,248.6,80.3807 +666740,247.31,81.3182 +666741,250.03,78.594 +666742,248.62,79.488 +666743,247.26,80.39 +666744,245.93,81.2993 +666745,248.75,78.662 +666746,247.31,79.526 +666747,245.91,80.399 +666748,244.56,81.2797 +666749,247.48,78.731 +666750,246,79.564 +666751,244.57,80.4078 +666752,243.18,81.2593 +666753,246.2,78.8 +666754,244.69,79.603 +666755,243.23,80.4164 +666756,241.81,81.2383 +666757,244.92,78.87 +666758,243.38,79.642 +666759,241.89,80.4248 +666760,240.44,81.2166 +666761,243.64,78.941 +666762,242.07,79.681 +666763,240.55,80.433 +666764,239.07,81.1943 +666765,242.36,79.012 +666766,240.76,79.72 +666767,239.2,80.4409 +666768,237.7,81.1713 +666769,241.08,79.084 +666770,239.45,79.76 +666771,237.86,80.4487 +666772,236.33,81.1478 +666773,239.8,79.157 +666774,238.13,79.8 +666775,236.52,80.4563 +666776,234.96,81.1237 +666777,238.51,79.23 +666778,236.82,79.84 +666779,235.18,80.4637 +666780,233.59,81.0991 +666781,237.22,79.303 +666782,235.51,79.88 +666783,233.84,80.4709 +666784,232.23,81.0739 +666785,235.94,79.377 +666786,234.19,79.92 +666787,232.5,80.478 +666788,230.86,81.0483 +666789,234.65,79.452 +666790,232.88,79.961 +666791,231.17,80.4849 +666792,229.5,81.0222 +666793,233.36,79.527 +666794,231.57,80.0013 +666795,229.83,80.4917 +666796,228.14,80.9956 +666797,232.07,79.602 +666798,230.25,80.0421 +666799,228.49,80.4983 +666800,226.78,80.9687 +666801,230.77,79.678 +666802,228.93,80.083 +666803,227.15,80.5048 +666804,225.42,80.9413 +666805,229.48,79.755 +666806,227.62,80.124 +666807,225.81,80.5112 +666808,224.06,80.9136 +666809,228.18,79.831 +666810,226.3,80.1652 +666811,224.48,80.5175 +666812,222.71,80.8855 +666813,226.89,79.908 +666814,224.98,80.2065 +666815,223.14,80.5237 +666816,221.35,80.8572 +666817,225.59,79.985 +666818,223.67,80.2478 +666819,221.81,80.5298 +666820,220,80.8285 +666821,224.29,80.0626 +666822,222.35,80.2893 +666823,220.47,80.5358 +666824,218.65,80.7996 +666825,222.98,80.1402 +666826,221.03,80.3308 +666827,219.14,80.5418 +666828,217.3,80.7705 +666829,221.68,80.218 +666830,219.71,80.3724 +666831,217.8,80.5477 +666832,215.95,80.7412 +666833,220.38,80.296 +666834,218.39,80.4141 +666835,216.47,80.5535 +666836,214.6,80.7117 +666837,219.07,80.3742 +666838,217.07,80.4558 +666839,215.13,80.5593 +666840,213.26,80.682 +666841,217.76,80.4524 +666842,215.75,80.4976 +666843,213.8,80.5651 +666844,211.91,80.6522 +666845,216.45,80.5308 +666846,214.43,80.5394 +666847,212.47,80.5708 +666848,210.57,80.6224 +666849,215.14,80.6091 +666850,213.11,80.5812 +666851,211.14,80.5765 +666852,209.23,80.5924 +666853,213.83,80.6875 +666854,211.78,80.623 +666855,209.81,80.5822 +666856,207.89,80.5625 +666857,212.51,80.7659 +666858,210.46,80.6648 +666859,208.47,80.5879 +666860,206.55,80.5325 +666861,211.2,80.8442 +666862,209.14,80.7066 +666863,207.14,80.5937 +666864,205.21,80.5025 +666865,209.88,80.9225 +666866,207.81,80.7484 +666867,205.81,80.5994 +666868,203.87,80.4726 +666869,208.56,81.0007 +666870,206.49,80.7902 +666871,204.48,80.6052 +666872,202.54,80.4428 +666873,207.24,81.0787 +666874,205.16,80.832 +666875,203.15,80.611 +666876,201.21,80.413 +666877,205.92,81.1566 +666878,203.84,80.8737 +666879,201.83,80.6169 +666880,199.88,80.3834 +666881,204.6,81.2342 +666882,202.51,80.9153 +666883,200.5,80.6229 +666884,198.55,80.354 +666885,203.27,81.3117 +666886,201.19,80.9569 +666887,199.17,80.6289 +666888,197.22,80.3247 +666889,201.94,81.3889 +666890,199.86,80.9984 +666891,197.84,80.635 +666892,195.89,80.2957 +666893,200.62,81.4658 +666894,198.53,81.0398 +666895,196.52,80.6411 +666896,194.56,80.2669 +666897,199.29,81.5425 +666898,197.2,81.0811 +666899,195.19,80.6474 +666900,193.24,80.2384 +666901,197.95,81.6188 +666902,195.87,81.1223 +666903,193.86,80.6538 +666904,191.92,80.2102 +666905,196.62,81.6947 +666906,194.54,81.1634 +666907,192.54,80.6603 +666908,190.6,80.1823 +666909,195.29,81.7702 +666910,193.21,81.2044 +666911,191.21,80.6669 +666912,189.28,80.1547 +666913,193.95,81.8454 +666914,191.88,81.2453 +666915,189.89,80.6737 +666916,187.96,80.1275 +666917,192.61,81.92 +666918,190.55,81.286 +666919,188.57,80.6806 +666920,186.64,80.1008 +666921,191.27,81.9942 +666922,189.22,81.3265 +666923,187.24,80.6876 +666924,185.33,80.0744 +666925,189.93,82.0679 +666926,187.89,81.3669 +666927,185.92,80.6948 +666928,184.01,80.0486 +666929,188.59,82.1411 +666930,186.55,81.4072 +666931,184.6,80.7022 +666932,182.7,80.0232 +666933,187.24,82.2137 +666934,185.22,81.4472 +666935,183.27,80.7098 +666936,181.39,79.998 +666937,185.9,82.2858 +666938,183.89,81.4871 +666939,181.95,80.7175 +666940,180.08,79.974 +666941,184.55,82.3572 +666942,182.55,81.5268 +666943,180.63,80.7255 +666944,178.77,79.95 +666945,183.2,82.428 +666946,181.22,81.5663 +666947,179.31,80.7336 +666948,177.46,79.927 +666949,181.85,82.4981 +666950,179.88,81.6055 +666951,177.99,80.742 +666952,176.16,79.905 +666953,180.5,82.5676 +666954,178.55,81.6446 +666955,176.67,80.7506 +666956,174.86,79.883 +666957,179.14,82.6363 +666958,177.21,81.6834 +666959,175.35,80.7594 +666960,173.55,79.861 +666961,177.79,82.7044 +666962,175.87,81.722 +666963,174.03,80.7684 +666964,172.25,79.841 +666965,176.43,82.7716 +666966,174.54,81.7603 +666967,172.71,80.7777 +666968,170.95,79.821 +666969,175.07,82.8381 +666970,173.2,81.7984 +666971,171.39,80.7873 +666972,169.65,79.802 +666973,173.71,82.9038 +666974,171.86,81.8363 +666975,170.08,80.7971 +666976,168.35,79.784 +666977,172.35,82.9686 +666978,170.52,81.8738 +666979,168.76,80.8072 +666980,167.06,79.766 +666981,170.99,83.0326 +666982,169.18,81.9111 +666983,167.44,80.8175 +666984,165.76,79.749 +666985,169.63,83.0958 +666986,167.84,81.9481 +666987,166.13,80.8282 +666988,164.47,79.733 +666989,168.26,83.1581 +666990,166.5,81.9849 +666991,164.81,80.8391 +666992,163.18,79.718 +666993,166.9,83.2194 +666994,165.16,82.0213 +666995,163.49,80.8503 +666996,161.89,79.704 +666997,165.53,83.2798 +666998,163.82,82.0574 +666999,162.18,80.8619 +667000,160.6,79.691 +667001,164.16,83.3393 +667002,162.48,82.0932 +667003,160.86,80.8737 +667004,159.31,79.678 +667005,162.79,83.3978 +667006,161.14,82.1287 +667007,159.55,80.8859 +667008,158.02,79.667 +667009,161.42,83.4553 +667010,159.79,82.1639 +667011,158.24,80.8984 +667012,156.73,79.656 +667013,160.04,83.5118 +667014,158.45,82.1988 +667015,156.92,80.9112 +667016,155.45,79.647 +667017,158.67,83.5673 +667018,157.11,82.2333 +667019,155.61,80.9243 +667020,154.16,79.638 +667021,157.3,83.6218 +667022,155.76,82.2675 +667023,154.29,80.9378 +667024,152.88,79.631 +667025,155.92,83.6752 +667026,154.42,82.3013 +667027,152.98,80.9517 +667028,151.6,79.624 +667029,154.54,83.7275 +667030,153.07,82.3348 +667031,151.67,80.9659 +667032,150.32,79.619 +667033,153.16,83.7788 +667034,151.73,82.3679 +667035,150.36,80.9804 +667036,149.04,79.614 +667037,151.78,83.829 +667038,150.38,82.4007 +667039,149.04,80.9954 +667040,147.76,79.611 +667041,150.4,83.878 +667042,149.04,82.4331 +667043,147.73,81.0106 +667044,146.48,79.609 +667045,149.02,83.9259 +667046,147.69,82.4651 +667047,146.42,81.0263 +667048,145.2,79.608 +667049,147.64,83.9727 +667050,146.35,82.4968 +667051,145.11,81.0423 +667052,143.92,79.608 +667053,146.26,84.0183 +667054,145,82.5281 +667055,143.8,81.0588 +667056,142.65,79.609 +667057,144.87,84.0628 +667058,143.65,82.559 +667059,142.49,81.0756 +667060,141.37,79.611 +667061,143.49,84.1061 +667062,142.31,82.5895 +667063,141.18,81.0928 +667064,140.1,79.615 +667065,142.1,84.1482 +667066,140.96,82.6196 +667067,139.87,81.1104 +667068,138.83,79.619 +667069,140.71,84.1891 +667070,139.61,82.6493 +667071,138.56,81.1284 +667072,137.55,79.625 +667073,139.33,84.2289 +667074,138.26,82.6786 +667075,137.25,81.1468 +667076,136.28,79.632 +667077,137.94,84.2674 +667078,136.91,82.7076 +667079,135.94,81.1656 +667080,135.01,79.64 +667081,136.55,84.3047 +667082,135.56,82.7361 +667083,134.63,81.1848 +667084,133.74,79.65 +667085,135.16,84.3408 +667086,134.22,82.7642 +667087,133.32,81.2044 +667088,132.47,79.661 +667089,133.77,84.3756 +667090,132.87,82.7919 +667091,132.01,81.2244 +667092,131.2,79.672 +667093,132.38,84.4092 +667094,131.52,82.8192 +667095,130.7,81.2449 +667096,129.93,79.686 +667097,130.99,84.4416 +667098,130.17,82.8461 +667099,129.39,81.2658 +667100,128.66,79.7 +667101,129.59,84.4727 +667102,128.82,82.8725 +667103,128.09,81.287 +667104,127.4,79.716 +667105,128.2,84.5026 +667106,127.47,82.8986 +667107,126.78,81.3087 +667108,126.13,79.733 +667109,126.81,84.5312 +667110,126.12,82.9242 +667111,125.47,81.3309 +667112,124.86,79.751 +667113,125.41,84.5586 +667114,124.77,82.9495 +667115,124.16,81.3534 +667116,123.6,79.77 +667117,124.02,84.5847 +667118,123.42,82.9743 +667119,122.85,81.3764 +667120,122.33,79.791 +667121,122.62,84.6096 +667122,122.06,82.9986 +667123,121.55,81.3998 +667124,121.07,79.813 +667125,121.23,84.6332 +667126,120.71,83.0226 +667127,120.24,81.4236 +667128,119.8,79.836 +667129,119.83,84.6555 +667130,119.36,83.0461 +667131,118.93,81.4479 +667132,118.54,79.861 +667133,118.44,84.6766 +667134,118.01,83.0692 +667135,117.62,81.4726 +667136,117.27,79.887 +667137,117.04,84.6964 +667138,116.66,83.0919 +667139,116.32,81.4977 +667140,116.01,79.914 +667141,115.65,84.715 +667142,115.31,83.1142 +667143,115.01,81.5232 +667144,114.74,79.942 +667145,114.25,84.7324 +667146,113.96,83.1361 +667147,113.7,81.5492 +667148,113.48,79.972 +667149,112.85,84.7484 +667150,112.6,83.1575 +667151,112.39,81.5756 +667152,112.21,80.0032 +667153,111.46,84.7633 +667154,111.25,83.1785 +667155,111.09,81.6024 +667156,110.95,80.0355 +667157,110.06,84.7769 +667158,109.9,83.1991 +667159,109.78,81.6296 +667160,109.69,80.069 +667161,108.66,84.7893 +667162,108.55,83.2193 +667163,108.47,81.6573 +667164,108.42,80.1039 +667165,107.27,84.8004 +667166,107.2,83.2391 +667167,107.16,81.6854 +667168,107.16,80.14 +667169,105.87,84.8103 +667170,105.85,83.2585 +667171,105.85,81.7139 +667172,105.9,80.1773 +667173,104.47,84.819 +667174,104.49,83.2774 +667175,104.55,81.7428 +667176,104.63,80.216 +667177,103.08,84.8266 +667178,103.14,83.296 +667179,103.24,81.7721 +667180,103.37,80.2558 +667181,101.68,84.8329 +667182,101.79,83.3141 +667183,101.93,81.8018 +667184,102.1,80.2969 +667185,100.28,84.838 +667186,100.44,83.3319 +667187,100.62,81.832 +667188,100.84,80.3393 +667189,98.887,84.8419 +667190,99.086,83.3492 +667191,99.316,81.8625 +667192,99.575,80.3828 +667193,97.492,84.8447 +667194,97.735,83.3662 +667195,98.008,81.8934 +667196,98.31,80.4276 +667197,96.096,84.8463 +667198,96.383,83.3828 +667199,96.699,81.9248 +667200,97.045,80.4736 +667201,94.701,84.8468 +667202,95.031,83.399 +667203,95.391,81.9565 +667204,95.78,80.5208 +667205,93.306,84.8461 +667206,93.68,83.4147 +667207,94.083,81.9886 +667208,94.515,80.5692 +667209,91.911,84.8443 +667210,92.328,83.4302 +667211,92.774,82.0212 +667212,93.249,80.6187 +667213,90.517,84.8414 +667214,90.977,83.4452 +667215,91.465,82.0541 +667216,91.982,80.6694 +667217,89.123,84.8374 +667218,89.625,83.4599 +667219,90.156,82.0873 +667220,90.716,80.7213 +667221,87.73,84.8324 +667222,88.274,83.4742 +667223,88.847,82.121 +667224,89.448,80.7743 +667225,86.337,84.8262 +667226,86.923,83.4881 +667227,87.538,82.155 +667228,88.181,80.8284 +667229,84.945,84.819 +667230,85.572,83.5017 +667231,86.228,82.1894 +667232,86.912,80.8836 +667233,83.553,84.8108 +667234,84.222,83.5149 +667235,84.918,82.2241 +667236,85.643,80.9399 +667237,82.162,84.8016 +667238,82.871,83.5278 +667239,83.608,82.2592 +667240,84.374,80.9972 +667241,80.772,84.7913 +667242,81.521,83.5404 +667243,82.298,82.2946 +667244,83.104,81.0557 +667245,79.382,84.7801 +667246,80.17,83.5526 +667247,80.988,82.3304 +667248,81.833,81.1151 +667249,77.993,84.7679 +667250,78.82,83.5645 +667251,79.677,82.3665 +667252,80.562,81.1756 +667253,76.604,84.7547 +667254,77.471,83.5761 +667255,78.366,82.4029 +667256,79.29,81.237 +667257,75.216,84.7406 +667258,76.121,83.5873 +667259,77.054,82.4397 +667260,78.017,81.2995 +667261,73.829,84.7256 +667262,74.772,83.5982 +667263,75.743,82.4767 +667264,76.744,81.3629 +667265,72.443,84.7098 +667266,73.422,83.6089 +667267,74.431,82.5141 +667268,75.469,81.4273 +667269,71.058,84.693 +667270,72.073,83.6192 +667271,73.119,82.5518 +667272,74.194,81.4925 +667273,69.673,84.6754 +667274,70.725,83.6293 +667275,71.806,82.5898 +667276,72.918,81.5587 +667277,68.289,84.657 +667278,69.376,83.639 +667279,70.493,82.628 +667280,71.641,81.6257 +667281,66.907,84.6377 +667282,68.028,83.6485 +667283,69.18,82.6665 +667284,70.363,81.6936 +667285,65.525,84.6177 +667286,66.68,83.6578 +667287,67.867,82.7054 +667288,69.084,81.7624 +667289,64.144,84.5969 +667290,65.333,83.6667 +667291,66.553,82.7444 +667292,67.805,81.8319 +667293,62.764,84.5753 +667294,63.986,83.6754 +667295,65.239,82.7838 +667296,66.524,81.9022 +667297,61.385,84.5531 +667298,62.639,83.6839 +667299,63.924,82.8233 +667300,65.242,81.9733 +667301,60.007,84.5301 +667302,61.292,83.6921 +667303,62.609,82.8631 +667304,63.959,82.0451 +667305,58.63,84.5065 +667306,59.945,83.7001 +667307,61.294,82.9032 +667308,62.676,82.1176 +667309,57.254,84.4822 +667310,58.599,83.7079 +667311,59.978,82.9435 +667312,61.391,82.1908 +667313,55.879,84.4573 +667314,57.254,83.7155 +667315,58.662,82.9839 +667316,60.105,82.2647 +667317,54.506,84.4318 +667318,55.908,83.7228 +667319,57.345,83.0246 +667320,58.818,82.3391 +667321,53.133,84.4057 +667322,54.563,83.73 +667323,56.028,83.0655 +667324,57.529,82.4142 +667325,51.762,84.3791 +667326,53.219,83.737 +667327,54.711,83.1066 +667328,56.24,82.4899 +667329,50.391,84.352 +667330,51.874,83.7438 +667331,53.393,83.1478 +667332,54.949,82.5661 +667333,49.022,84.3243 +667334,50.53,83.7504 +667335,52.075,83.1893 +667336,53.657,82.6428 +667337,47.654,84.2962 +667338,49.187,83.7569 +667339,50.756,83.2308 +667340,52.364,82.7201 +667341,46.288,84.2676 +667342,47.844,83.7632 +667343,49.437,83.2726 +667344,51.07,82.7978 +667345,44.922,84.2386 +667346,46.501,83.7694 +667347,48.118,83.3144 +667348,49.774,82.8759 +667349,43.558,84.2093 +667350,45.158,83.7755 +667351,46.798,83.3565 +667352,48.477,82.9544 +667353,42.195,84.1795 +667354,43.816,83.7814 +667355,45.477,83.3986 +667356,47.179,83.0333 +667357,40.833,84.1495 +667358,42.475,83.7872 +667359,44.156,83.4408 +667360,45.879,83.1126 +667361,39.473,84.1191 +667362,41.133,83.7929 +667363,42.835,83.4832 +667364,44.579,83.1922 +667365,38.113,84.0884 +667366,39.793,83.7985 +667367,41.513,83.5256 +667368,43.276,83.272 +667369,36.756,84.0575 +667370,38.452,83.804 +667371,40.19,83.5681 +667372,41.973,83.3521 +667373,35.399,84.0263 +667374,37.112,83.8095 +667375,38.868,83.6107 +667376,40.668,83.4325 +667377,34.044,83.995 +667378,35.772,83.8148 +667379,37.544,83.6534 +667380,39.361,83.513 +667381,32.69,83.9635 +667382,34.433,83.8201 +667383,36.22,83.6961 +667384,38.053,83.5938 +667385,31.338,83.9318 +667386,33.095,83.8254 +667387,34.896,83.7389 +667388,36.744,83.6746 +667389,29.986,83.9 +667390,31.756,83.8306 +667391,33.571,83.7817 +667392,35.433,83.7556 +667393,28.637,83.8682 +667394,30.418,83.8358 +667395,32.246,83.8245 +667396,34.121,83.8366 +667397,27.288,83.8362 +667398,29.081,83.841 +667399,30.92,83.8673 +667400,32.808,83.9177 +667401,25.941,83.8043 +667402,27.744,83.8462 +667403,29.593,83.9101 +667404,31.493,83.9988 +667405,24.595,83.7723 +667406,26.407,83.8513 +667407,28.266,83.953 +667408,30.176,84.0798 +667409,23.251,83.7404 +667410,25.071,83.8565 +667411,26.939,83.9958 +667412,28.858,84.1609 +667413,21.908,83.7085 +667414,23.735,83.8617 +667415,25.611,84.0386 +667416,27.538,84.2418 +667417,20.567,83.6768 +667418,22.4,83.8669 +667419,24.282,84.0813 +667420,26.217,84.3226 +667421,19.227,83.6451 +667422,21.065,83.8722 +667423,22.953,84.124 +667424,24.895,84.4033 +667425,17.888,83.6136 +667426,19.731,83.8775 +667427,21.624,84.1666 +667428,23.571,84.4839 +667429,16.551,83.5822 +667430,18.397,83.8829 +667431,20.294,84.2092 +667432,22.245,84.5642 +667433,15.215,83.5511 +667434,17.064,83.8883 +667435,18.963,84.2517 +667436,20.918,84.6443 +667437,13.881,83.5202 +667438,15.731,83.8938 +667439,17.632,84.2941 +667440,19.59,84.7241 +667441,12.547,83.4895 +667442,14.398,83.8994 +667443,16.3,84.3364 +667444,18.26,84.8036 +667445,11.216,83.4591 +667446,13.066,83.9051 +667447,14.968,84.3787 +667448,16.928,84.8828 +667449,9.8856,83.4291 +667450,11.734,83.9109 +667451,13.635,84.4207 +667452,15.595,84.9617 +667453,8.5567,83.3993 +667454,10.403,83.9169 +667455,12.302,84.4627 +667456,14.26,85.0401 +667457,7.2292,83.37 +667458,9.0723,83.9229 +667459,10.968,84.5045 +667460,12.924,85.1182 +667461,5.9032,83.341 +667462,7.7419,83.9291 +667463,9.6339,84.5462 +667464,11.586,85.1958 +667465,4.5785,83.3125 +667466,6.412,83.9354 +667467,8.2991,84.5877 +667468,10.247,85.2729 +667469,3.2552,83.2844 +667470,5.0825,83.9419 +667471,6.9638,84.6291 +667472,8.9063,85.3496 +667473,1.9332,83.2568 +667474,3.7535,83.9485 +667475,5.6279,84.6703 +667476,7.564,85.4257 +667477,0.61268,83.2297 +667478,2.4249,83.9553 +667479,4.2915,84.7113 +667480,6.2203,85.5012 +667481,359.29,83.2031 +667482,1.0968,83.9623 +667483,2.9546,84.7521 +667484,4.875,85.5762 +667485,357.98,83.1771 +667486,359.77,83.9695 +667487,1.6172,84.7927 +667488,3.5283,85.6505 +667489,356.66,83.1517 +667490,358.44,83.9768 +667491,0.27929,84.8331 +667492,2.1801,85.7242 +667493,355.34,83.1269 +667494,357.11,83.9844 +667495,358.94,84.8733 +667496,0.83041,85.7973 +667497,354.03,83.1027 +667498,355.79,83.9922 +667499,357.6,84.9133 +667500,359.48,85.8696 +667501,352.72,83.0792 +667502,354.46,84.0002 +667503,356.26,84.953 +667504,358.13,85.9412 +667505,351.41,83.0563 +667506,353.14,84.0085 +667507,354.92,84.9924 +667508,356.77,86.0121 +667509,350.1,83.0342 +667510,351.81,84.0169 +667511,353.58,85.0316 +667512,355.42,86.0822 +667513,348.79,83.0129 +667514,350.49,84.0257 +667515,352.24,85.0706 +667516,354.06,86.1515 +667517,347.48,82.9922 +667518,349.16,84.0347 +667519,350.9,85.1093 +667520,352.7,86.2199 +667521,346.17,82.9724 +667522,347.84,84.0439 +667523,349.56,85.1477 +667524,351.34,86.2876 +667525,344.87,82.9534 +667526,346.51,84.0534 +667527,348.22,85.1858 +667528,349.98,86.3543 +667529,343.57,82.9352 +667530,345.19,84.0632 +667531,346.87,85.2236 +667532,348.62,86.4202 +667533,342.26,82.9178 +667534,343.87,84.0733 +667535,345.53,85.2611 +667536,347.25,86.4851 +667537,340.96,82.9014 +667538,342.55,84.0837 +667539,344.19,85.2983 +667540,345.89,86.5491 +667541,339.66,82.8858 +667542,341.22,84.0944 +667543,342.84,85.3352 +667544,344.52,86.6121 +667545,338.36,82.8711 +667546,339.9,84.1054 +667547,341.5,85.3718 +667548,343.16,86.6742 +667549,337.06,82.8574 +667550,338.58,84.1167 +667551,340.15,85.408 +667552,341.79,86.7352 +667553,335.77,82.8447 +667554,337.26,84.1283 +667555,338.81,85.4439 +667556,340.42,86.7953 +667557,334.47,82.8329 +667558,335.94,84.1402 +667559,337.46,85.4794 +667560,339.05,86.8543 +667561,333.18,82.8221 +667562,334.62,84.1525 +667563,336.11,85.5146 +667564,337.67,86.9122 +667565,331.88,82.8124 +667566,333.3,84.1651 +667567,334.77,85.5495 +667568,336.3,86.969 +667569,330.59,82.8037 +667570,331.98,84.1781 +667571,333.42,85.5839 +667572,334.92,87.0248 +667573,329.3,82.796 +667574,330.66,84.1914 +667575,332.07,85.618 +667576,333.55,87.0794 +667577,328.01,82.7894 +667578,329.34,84.2051 +667579,330.72,85.6518 +667580,332.17,87.1329 +667581,326.72,82.7839 +667582,328.02,84.2192 +667583,329.38,85.6851 +667584,330.79,87.1852 +667585,325.43,82.7795 +667586,326.7,84.2336 +667587,328.03,85.7181 +667588,329.41,87.2364 +667589,324.14,82.7762 +667590,325.38,84.2484 +667591,326.68,85.7506 +667592,328.03,87.2864 +667593,322.86,82.7741 +667594,324.07,84.2636 +667595,325.33,85.7828 +667596,326.65,87.3352 +667597,321.57,82.7731 +667598,322.75,84.2791 +667599,323.98,85.8146 +667600,325.27,87.3828 +667601,320.28,82.7733 +667602,321.43,84.295 +667603,322.63,85.846 +667604,323.88,87.4292 +667605,319,82.7746 +667606,320.11,84.3114 +667607,321.28,85.8769 +667608,322.5,87.4744 +667609,317.72,82.7772 +667610,318.8,84.3281 +667611,319.93,85.9075 +667612,321.11,87.5183 +667613,316.43,82.7809 +667614,317.48,84.3452 +667615,318.58,85.9376 +667616,319.73,87.5609 +667617,315.15,82.7859 +667618,316.16,84.3628 +667619,317.22,85.9673 +667620,318.34,87.6023 +667621,313.87,82.7921 +667622,314.85,84.3807 +667623,315.87,85.9966 +667624,316.95,87.6424 +667625,312.59,82.7996 +667626,313.53,84.3991 +667627,314.52,86.0254 +667628,315.56,87.6813 +667629,311.31,82.8082 +667630,312.22,84.4178 +667631,313.17,86.0538 +667632,314.17,87.7188 +667633,310.03,82.8182 +667634,310.9,84.437 +667635,311.82,86.0818 +667636,312.78,87.7551 +667637,308.75,82.8294 +667638,309.58,84.4566 +667639,310.46,86.1094 +667640,311.39,87.79 +667641,307.47,82.8419 +667642,308.27,84.4766 +667643,309.11,86.1365 +667644,310,87.8236 +667645,306.2,82.8556 +667646,306.95,84.4971 +667647,307.76,86.1631 +667648,308.61,87.856 +667649,304.92,82.8707 +667650,305.64,84.5179 +667651,306.4,86.1894 +667652,307.22,87.887 +667653,303.64,82.887 +667654,304.32,84.5392 +667655,305.05,86.2151 +667656,305.82,87.9166 +667657,302.37,82.9047 +667658,303.01,84.561 +667659,303.7,86.2405 +667660,304.43,87.945 +667661,301.09,82.9236 +667662,301.7,84.5831 +667663,302.34,86.2653 +667664,303.03,87.972 +667665,299.82,82.9439 +667666,300.38,84.6057 +667667,300.99,86.2898 +667668,301.64,87.9977 +667669,298.54,82.9655 +667670,299.07,84.6287 +667671,299.63,86.3138 +667672,300.24,88.0221 +667673,297.27,82.9883 +667674,297.75,84.6522 +667675,298.28,86.3373 +667676,298.85,88.0451 +667677,295.99,83.0125 +667678,296.44,84.6761 +667679,296.92,86.3604 +667680,297.45,88.0668 +667681,294.72,83.0381 +667682,295.12,84.7004 +667683,295.57,86.383 +667684,296.05,88.0871 +667685,293.44,83.0649 +667686,293.81,84.7251 +667687,294.21,86.4052 +667688,294.66,88.1061 +667689,292.17,83.093 +667690,292.49,84.7503 +667691,292.86,86.427 +667692,293.26,88.1238 +667693,290.9,83.1225 +667694,291.18,84.7759 +667695,291.5,86.4483 +667696,291.86,88.1402 +667697,289.62,83.1533 +667698,289.87,84.802 +667699,290.15,86.4691 +667700,290.46,88.1553 +667701,288.35,83.1854 +667702,288.55,84.8285 +667703,288.79,86.4895 +667704,289.07,88.169 +667705,287.08,83.2188 +667706,287.24,84.8554 +667707,287.43,86.5094 +667708,287.67,88.1814 +667709,285.8,83.2535 +667710,285.92,84.8827 +667711,286.08,86.529 +667712,286.27,88.1925 +667713,284.53,83.2895 +667714,284.61,84.9105 +667715,284.72,86.548 +667716,284.87,88.2023 +667717,283.26,83.3268 +667718,283.3,84.9387 +667719,283.37,86.5666 +667720,283.47,88.2109 +667721,281.98,83.3654 +667722,281.98,84.9673 +667723,282.01,86.5848 +667724,282.07,88.2181 +667725,280.71,83.4053 +667726,280.67,84.9963 +667727,280.66,86.6026 +667728,280.68,88.2241 +667729,279.44,83.4465 +667730,279.35,85.0257 +667731,279.3,86.6199 +667732,279.28,88.2287 +667733,278.17,83.4889 +667734,278.04,85.0556 +667735,277.94,86.6368 +667736,277.88,88.2322 +667737,276.89,83.5326 +667738,276.72,85.0859 +667739,276.59,86.6533 +667740,276.48,88.2344 +667741,275.62,83.5775 +667742,275.41,85.1165 +667743,275.23,86.6693 +667744,275.08,88.2353 +667745,274.34,83.6237 +667746,274.1,85.1476 +667747,273.88,86.6849 +667748,273.69,88.235 +667749,273.07,83.6711 +667750,272.78,85.1791 +667751,272.52,86.7001 +667752,272.29,88.2335 +667753,271.8,83.7198 +667754,271.47,85.211 +667755,271.16,86.7149 +667756,270.89,88.2309 +667757,270.52,83.7696 +667758,270.15,85.2432 +667759,269.81,86.7293 +667760,269.49,88.227 +667761,269.25,83.8207 +667762,268.84,85.2759 +667763,268.45,86.7433 +667764,268.1,88.2219 +667765,267.97,83.8729 +667766,267.52,85.3089 +667767,267.1,86.7568 +667768,266.7,88.2157 +667769,266.69,83.9263 +667770,266.21,85.3423 +667771,265.74,86.77 +667772,265.3,88.2084 +667773,265.42,83.9808 +667774,264.89,85.3761 +667775,264.39,86.7828 +667776,263.91,88.1999 +667777,264.14,84.0365 +667778,263.57,85.4103 +667779,263.03,86.7952 +667780,262.51,88.1903 +667781,262.86,84.0933 +667782,262.26,85.4448 +667783,261.68,86.8073 +667784,261.12,88.1796 +667785,261.59,84.1513 +667786,260.94,85.4797 +667787,260.32,86.8189 +667788,259.72,88.1678 +667789,260.31,84.2103 +667790,259.63,85.5149 +667791,258.97,86.8302 +667792,258.33,88.155 +667793,259.03,84.2704 +667794,258.31,85.5505 +667795,257.61,86.8412 +667796,256.94,88.1411 +667797,257.75,84.3315 +667798,256.99,85.5864 +667799,256.26,86.8517 +667800,255.55,88.1262 +667801,256.47,84.3937 +667802,255.67,85.6226 +667803,254.9,86.862 +667804,254.15,88.1103 +667805,255.19,84.4569 +667806,254.36,85.6592 +667807,253.55,86.8718 +667808,252.76,88.0934 +667809,253.91,84.521 +667810,253.04,85.6961 +667811,252.19,86.8814 +667812,251.37,88.0756 +667813,252.63,84.5862 +667814,251.72,85.7333 +667815,250.84,86.8906 +667816,249.98,88.0568 +667817,251.34,84.6523 +667818,250.4,85.7708 +667819,249.49,86.8995 +667820,248.59,88.0371 +667821,250.06,84.7194 +667822,249.08,85.8086 +667823,248.13,86.9081 +667824,247.2,88.0164 +667825,248.77,84.7873 +667826,247.77,85.8466 +667827,246.78,86.9164 +667828,245.82,87.995 +667829,247.49,84.8562 +667830,246.45,85.885 +667831,245.43,86.9244 +667832,244.43,87.9726 +667833,246.2,84.9259 +667834,245.13,85.9237 +667835,244.07,86.932 +667836,243.04,87.9494 +667837,244.92,84.9964 +667838,243.81,85.9626 +667839,242.72,86.9394 +667840,241.66,87.9254 +667841,243.63,85.0678 +667842,242.49,86.0017 +667843,241.37,86.9466 +667844,240.27,87.9007 +667845,242.34,85.14 +667846,241.17,86.0411 +667847,240.02,86.9534 +667848,238.89,87.8751 +667849,241.05,85.2129 +667850,239.85,86.0808 +667851,238.67,86.96 +667852,237.51,87.8488 +667853,239.76,85.2866 +667854,238.53,86.1207 +667855,237.31,86.9663 +667856,236.13,87.8219 +667857,238.47,85.361 +667858,237.2,86.1608 +667859,235.96,86.9724 +667860,234.75,87.7942 +667861,237.17,85.436 +667862,235.88,86.2012 +667863,234.61,86.9783 +667864,233.37,87.7658 +667865,235.88,85.5118 +667866,234.56,86.2417 +667867,233.26,86.9839 +667868,231.99,87.7369 +667869,234.59,85.5882 +667870,233.24,86.2824 +667871,231.91,86.9894 +667872,230.61,87.7073 +667873,233.29,85.6651 +667874,231.91,86.3233 +667875,230.56,86.9946 +667876,229.23,87.6771 +667877,231.99,85.7427 +667878,230.59,86.3644 +667879,229.21,86.9996 +667880,227.86,87.6464 +667881,230.69,85.8208 +667882,229.27,86.4057 +667883,227.86,87.0044 +667884,226.48,87.6152 +667885,229.4,85.8995 +667886,227.94,86.4471 +667887,226.51,87.009 +667888,225.11,87.5834 +667889,228.1,85.9786 +667890,226.62,86.4887 +667891,225.17,87.0135 +667892,223.74,87.5512 +667893,226.79,86.0582 +667894,225.29,86.5305 +667895,223.82,87.0178 +667896,222.37,87.5185 +667897,225.49,86.1382 +667898,223.97,86.5723 +667899,222.47,87.022 +667900,221,87.4854 +667901,224.19,86.2187 +667902,222.64,86.6143 +667903,221.12,87.026 +667904,219.63,87.4519 +667905,222.88,86.2995 +667906,221.31,86.6564 +667907,219.78,87.0298 +667908,218.26,87.4181 +667909,221.58,86.3806 +667910,219.99,86.6985 +667911,218.43,87.0336 +667912,216.9,87.3839 +667913,220.27,86.4621 +667914,218.66,86.7408 +667915,217.08,87.0372 +667916,215.53,87.3494 +667917,218.96,86.5438 +667918,217.33,86.7832 +667919,215.74,87.0407 +667920,214.17,87.3147 +667921,217.65,86.6258 +667922,216,86.8256 +667923,214.39,87.0442 +667924,212.81,87.2797 +667925,216.34,86.708 +667926,214.68,86.8681 +667927,213.05,87.0475 +667928,211.44,87.2444 +667929,215.02,86.7904 +667930,213.35,86.9106 +667931,211.7,87.0508 +667932,210.08,87.209 +667933,213.71,86.873 +667934,212.02,86.9532 +667935,210.36,87.054 +667936,208.73,87.1734 +667937,212.39,86.9557 +667938,210.69,86.9958 +667939,209.01,87.0571 +667940,207.37,87.1377 +667941,211.08,87.0385 +667942,209.36,87.0384 +667943,207.67,87.0602 +667944,206.01,87.1019 +667945,209.76,87.1213 +667946,208.03,87.081 +667947,206.32,87.0633 +667948,204.66,87.0661 +667949,208.44,87.2042 +667950,206.69,87.1236 +667951,204.98,87.0663 +667952,203.3,87.0301 +667953,207.12,87.287 +667954,205.36,87.1662 +667955,203.64,87.0694 +667956,201.95,86.9942 +667957,205.8,87.3698 +667958,204.03,87.2088 +667959,202.3,87.0724 +667960,200.6,86.9583 +667961,204.47,87.4526 +667962,202.7,87.2514 +667963,200.96,87.0754 +667964,199.25,86.9224 +667965,203.15,87.5353 +667966,201.36,87.2939 +667967,199.61,87.0784 +667968,197.9,86.8866 +667969,201.82,87.6178 +667970,200.03,87.3363 +667971,198.27,87.0815 +667972,196.56,86.8509 +667973,200.49,87.7001 +667974,198.69,87.3787 +667975,196.93,87.0846 +667976,195.21,86.8154 +667977,199.16,87.7823 +667978,197.36,87.421 +667979,195.59,87.0877 +667980,193.87,86.78 +667981,197.83,87.8642 +667982,196.02,87.4632 +667983,194.25,87.0909 +667984,192.52,86.7448 +667985,196.5,87.9459 +667986,194.69,87.5053 +667987,192.91,87.0942 +667988,191.18,86.7098 +667989,195.17,88.0273 +667990,193.35,87.5473 +667991,191.58,87.0975 +667992,189.84,86.6751 +667993,193.83,88.1083 +667994,192.01,87.5892 +667995,190.24,87.101 +667996,188.5,86.6407 +667997,192.5,88.189 +667998,190.68,87.631 +667999,188.9,87.1045 +668000,187.16,86.6065 +668001,191.16,88.2693 +668002,189.34,87.6726 +668003,187.56,87.1081 +668004,185.83,86.5728 +668005,189.82,88.3492 +668006,188,87.7141 +668007,186.23,87.1118 +668008,184.49,86.5393 +668009,188.48,88.4287 +668010,186.66,87.7554 +668011,184.89,87.1157 +668012,183.16,86.5063 +668013,187.14,88.5076 +668014,185.32,87.7965 +668015,183.55,87.1197 +668016,181.83,86.4737 +668017,185.79,88.5861 +668018,183.98,87.8375 +668019,182.22,87.1238 +668020,180.5,86.4416 +668021,184.45,88.664 +668022,182.64,87.8783 +668023,180.88,87.1281 +668024,179.17,86.4099 +668025,183.1,88.7413 +668026,181.3,87.9189 +668027,179.55,87.1325 +668028,177.84,86.3788 +668029,181.75,88.818 +668030,179.96,87.9592 +668031,178.21,87.1371 +668032,176.51,86.3482 +668033,180.4,88.8941 +668034,178.62,87.9994 +668035,176.88,87.1419 +668036,175.18,86.3181 +668037,179.05,88.9696 +668038,177.27,88.0393 +668039,175.54,87.1469 +668040,173.86,86.2886 +668041,177.7,89.04429 +668042,175.93,88.079 +668043,174.21,87.1521 +668044,172.54,86.2598 +668045,176.35,89.11831 +668046,174.59,88.1184 +668047,172.88,87.1575 +668048,171.21,86.2316 +668049,174.99,89.19158 +668050,173.24,88.1576 +668051,171.55,87.1631 +668052,169.89,86.2041 +668053,173.64,89.26408 +668054,171.9,88.1965 +668055,170.21,87.1689 +668056,168.57,86.1772 +668057,172.28,89.33577 +668058,170.55,88.2351 +668059,168.88,87.175 +668060,167.25,86.1511 +668061,170.92,89.40663 +668062,169.21,88.2735 +668063,167.55,87.1813 +668064,165.94,86.1257 +668065,169.56,89.47663 +668066,167.86,88.3115 +668067,166.22,87.1878 +668068,164.62,86.1011 +668069,168.2,89.54576 +668070,166.52,88.3493 +668071,164.89,87.1947 +668072,163.31,86.0773 +668073,166.84,89.61397 +668074,165.17,88.3868 +668075,163.56,87.2017 +668076,161.99,86.0543 +668077,165.47,89.68124 +668078,163.82,88.4239 +668079,162.23,87.2091 +668080,160.68,86.0322 +668081,164.11,89.74756 +668082,162.47,88.4607 +668083,160.9,87.2167 +668084,159.37,86.0109 +668085,162.74,89.8129 +668086,161.13,88.4972 +668087,159.57,87.2246 +668088,158.06,85.9905 +668089,161.37,89.87722 +668090,159.78,88.5333 +668091,158.24,87.2328 +668092,156.75,85.971 +668093,160,89.94052 +668094,158.43,88.5691 +668095,156.91,87.2414 +668096,155.44,85.9525 +668097,158.63,90.0027644 +668098,157.08,88.6045 +668099,155.58,87.2502 +668100,154.14,85.9349 +668101,157.26,90.063934 +668102,155.73,88.6396 +668103,154.26,87.2593 +668104,152.83,85.9183 +668105,155.89,90.12401 +668106,154.38,88.6743 +668107,152.93,87.2688 +668108,151.53,85.9027 +668109,154.51,90.18296 +668110,153.03,88.7086 +668111,151.6,87.2786 +668112,150.22,85.888 +668113,153.14,90.24078 +668114,151.68,88.7425 +668115,150.27,87.2888 +668116,148.92,85.8745 +668117,151.76,90.29744 +668118,150.33,88.7761 +668119,148.95,87.2993 +668120,147.62,85.862 +668121,150.38,90.35292 +668122,148.97,88.8092 +668123,147.62,87.3101 +668124,146.32,85.8505 +668125,149,90.40721 +668126,147.62,88.8419 +668127,146.3,87.3213 +668128,145.02,85.8402 +668129,147.62,90.46029 +668130,146.27,88.8743 +668131,144.97,87.3328 +668132,143.72,85.8309 +668133,146.24,90.51214 +668134,144.92,88.9062 +668135,143.64,87.3448 +668136,142.42,85.8228 +668137,144.86,90.56274 +668138,143.56,88.9377 +668139,142.32,87.3571 +668140,141.12,85.8158 +668141,143.48,90.61208 +668142,142.21,88.9688 +668143,140.99,87.3697 +668144,139.83,85.81 +668145,142.1,90.66014 +668146,140.85,88.9994 +668147,139.67,87.3828 +668148,138.53,85.8054 +668149,140.71,90.70691 +668150,139.5,89.02958 +668151,138.35,87.3962 +668152,137.24,85.8019 +668153,139.33,90.75237 +668154,138.15,89.05934 +668155,137.02,87.4101 +668156,135.94,85.7997 +668157,137.94,90.79652 +668158,136.79,89.08865 +668159,135.7,87.4243 +668160,134.65,85.7986 +668161,136.55,90.83934 +668162,135.44,89.11752 +668163,134.37,87.439 +668164,133.36,85.7988 +668165,135.16,90.88082 +668166,134.08,89.14592 +668167,133.05,87.454 +668168,132.07,85.8002 +668169,133.77,90.92094 +668170,132.72,89.17387 +668171,131.73,87.4694 +668172,130.77,85.8029 +668173,132.38,90.9597 +668174,131.37,89.20136 +668175,130.4,87.4853 +668176,129.48,85.8069 +668177,130.99,90.99709 +668178,130.01,89.22839 +668179,129.08,87.5016 +668180,128.19,85.8121 +668181,129.6,91.0331 +668182,128.65,89.25494 +668183,127.76,87.5183 +668184,126.91,85.8186 +668185,128.21,91.0677 +668186,127.3,89.28103 +668187,126.44,87.5354 +668188,125.62,85.8264 +668189,126.82,91.1009 +668190,125.94,89.30664 +668191,125.11,87.5529 +668192,124.33,85.8355 +668193,125.42,91.1328 +668194,124.58,89.33178 +668195,123.79,87.5709 +668196,123.04,85.8459 +668197,124.03,91.1632 +668198,123.22,89.35643 +668199,122.47,87.5893 +668200,121.75,85.8576 +668201,122.63,91.1922 +668202,121.87,89.38061 +668203,121.15,87.6081 +668204,120.47,85.8707 +668205,121.24,91.2198 +668206,120.51,89.40431 +668207,119.82,87.6274 +668208,119.18,85.8851 +668209,119.84,91.2459 +668210,119.15,89.42752 +668211,118.5,87.647 +668212,117.9,85.9008 +668213,118.45,91.2707 +668214,117.79,89.45025 +668215,117.18,87.6672 +668216,116.61,85.9178 +668217,117.05,91.294 +668218,116.43,89.47249 +668219,115.86,87.6877 +668220,115.33,85.9362 +668221,115.65,91.3159 +668222,115.07,89.49425 +668223,114.54,87.7087 +668224,114.04,85.9559 +668225,114.25,91.3364 +668226,113.71,89.51552 +668227,113.22,87.7301 +668228,112.76,85.977 +668229,112.86,91.3554 +668230,112.35,89.53631 +668231,111.9,87.752 +668232,111.47,85.9995 +668233,111.46,91.373 +668234,111,89.5566 +668235,110.57,87.7743 +668236,110.19,86.0232 +668237,110.06,91.3892 +668238,109.64,89.57641 +668239,109.25,87.7971 +668240,108.91,86.0484 +668241,108.66,91.404 +668242,108.28,89.59574 +668243,107.93,87.8202 +668244,107.62,86.0749 +668245,107.26,91.4174 +668246,106.92,89.61458 +668247,106.61,87.8438 +668248,106.34,86.1027 +668249,105.86,91.4293 +668250,105.56,89.63293 +668251,105.29,87.8679 +668252,105.06,86.1319 +668253,104.46,91.4399 +668254,104.2,89.6508 +668255,103.97,87.8924 +668256,103.78,86.1624 +668257,103.06,91.449 +668258,102.84,89.66819 +668259,102.65,87.9173 +668260,102.49,86.1943 +668261,101.66,91.4568 +668262,101.48,89.6851 +668263,101.33,87.9426 +668264,101.21,86.2275 +668265,100.26,91.4631 +668266,100.12,89.70153 +668267,100.01,87.9684 +668268,99.928,86.262 +668269,98.862,91.4681 +668270,98.756,89.71748 +668271,98.685,87.9946 +668272,98.645,86.2979 +668273,97.461,91.4717 +668274,97.395,89.73296 +668275,97.363,88.0212 +668276,97.362,86.3351 +668277,96.061,91.474 +668278,96.035,89.74797 +668279,96.042,88.0483 +668280,96.079,86.3736 +668281,94.661,91.4749 +668282,94.675,89.76251 +668283,94.721,88.0757 +668284,94.796,86.4134 +668285,93.261,91.4744 +668286,93.314,89.77659 +668287,93.399,88.1036 +668288,93.513,86.4545 +668289,91.861,91.4726 +668290,91.954,89.7902 +668291,92.078,88.1319 +668292,92.23,86.4969 +668293,90.461,91.4695 +668294,90.594,89.80335 +668295,90.756,88.1606 +668296,90.946,86.5406 +668297,89.061,91.4651 +668298,89.233,89.81605 +668299,89.435,88.1897 +668300,89.663,86.5856 +668301,87.662,91.4595 +668302,87.873,89.8283 +668303,88.113,88.2192 +668304,88.379,86.6318 +668305,86.262,91.4525 +668306,86.513,89.8401 +668307,86.791,88.2491 +668308,87.095,86.6793 +668309,84.863,91.4442 +668310,85.153,89.85146 +668311,85.469,88.2795 +668312,85.81,86.728 +668313,83.465,91.4348 +668314,83.793,89.86239 +668315,84.147,88.3101 +668316,84.525,86.7779 +668317,82.066,91.424 +668318,82.433,89.87288 +668319,82.824,88.3412 +668320,83.24,86.8291 +668321,80.668,91.4121 +668322,81.073,89.88294 +668323,81.502,88.3727 +668324,81.954,86.8814 +668325,79.27,91.3989 +668326,79.713,89.89258 +668327,80.179,88.4045 +668328,80.668,86.935 +668329,77.873,91.3846 +668330,78.353,89.901802 +668331,78.856,88.4367 +668332,79.382,86.9897 +668333,76.476,91.3691 +668334,76.993,89.910614 +668335,77.533,88.4693 +668336,78.095,87.0455 +668337,75.08,91.3525 +668338,75.634,89.919021 +668339,76.21,88.5022 +668340,76.807,87.1025 +668341,73.684,91.3347 +668342,74.274,89.927028 +668343,74.887,88.5354 +668344,75.519,87.1606 +668345,72.289,91.3159 +668346,72.915,89.934642 +668347,73.563,88.569 +668348,74.231,87.2198 +668349,70.894,91.2959 +668350,71.556,89.94187 +668351,72.239,88.603 +668352,72.942,87.2801 +668353,69.5,91.2749 +668354,70.197,89.948718 +668355,70.915,88.6373 +668356,71.652,87.3414 +668357,68.106,91.2528 +668358,68.838,89.955192 +668359,69.59,88.6719 +668360,70.362,87.4038 +668361,66.713,91.2297 +668362,67.48,89.961301 +668363,68.266,88.7068 +668364,69.071,87.4672 +668365,65.321,91.2057 +668366,66.121,89.967051 +668367,66.941,88.742 +668368,67.779,87.5316 +668369,63.929,91.1806 +668370,64.763,89.972449 +668371,65.616,88.7776 +668372,66.486,87.597 +668373,62.538,91.1546 +668374,63.405,89.977503 +668375,64.29,88.8134 +668376,65.193,87.6634 +668377,61.148,91.1276 +668378,62.047,89.982221 +668379,62.965,88.8495 +668380,63.899,87.7306 +668381,59.758,91.0998 +668382,60.69,89.98661 +668383,61.639,88.8859 +668384,62.604,87.7988 +668385,58.37,91.071 +668386,59.332,89.990679 +668387,60.312,88.9226 +668388,61.309,87.8679 +668389,56.982,91.0414 +668390,57.975,89.9944354 +668391,58.986,88.9595 +668392,60.012,87.9379 +668393,55.595,91.011 +668394,56.618,89.9978877 +668395,57.659,88.9967 +668396,58.715,88.0086 +668397,54.209,90.97976 +668398,55.262,90.0010443 +668399,56.331,89.0341 +668400,57.417,88.0802 +668401,52.824,90.94774 +668402,53.905,90.0039138 +668403,55.004,89.07177 +668404,56.118,88.1526 +668405,51.439,90.91497 +668406,52.549,90.006505 +668407,53.676,89.10967 +668408,54.818,88.2258 +668409,50.056,90.88147 +668410,51.193,90.0088266 +668411,52.347,89.14778 +668412,53.517,88.2997 +668413,48.673,90.84727 +668414,49.838,90.010888 +668415,51.019,89.1861 +668416,52.215,88.3743 +668417,47.292,90.8124 +668418,48.483,90.012697 +668419,49.69,89.22463 +668420,50.913,88.4496 +668421,45.911,90.77689 +668422,47.128,90.014264 +668423,48.36,89.26335 +668424,49.609,88.5255 +668425,44.532,90.74076 +668426,45.773,90.015599 +668427,47.031,89.30224 +668428,48.304,88.6021 +668429,43.153,90.70404 +668430,44.418,90.016709 +668431,45.7,89.34131 +668432,46.998,88.6792 +668433,41.776,90.66676 +668434,43.064,90.017606 +668435,44.37,89.38055 +668436,45.691,88.7569 +668437,40.399,90.62895 +668438,41.711,90.018298 +668439,43.039,89.41993 +668440,44.383,88.8352 +668441,39.024,90.59064 +668442,40.357,90.018796 +668443,41.708,89.45946 +668444,43.074,88.914 +668445,37.65,90.55185 +668446,39.004,90.019108 +668447,40.376,89.49912 +668448,41.764,88.9932 +668449,36.277,90.51263 +668450,37.651,90.019245 +668451,39.044,89.5389 +668452,40.453,89.07295 +668453,34.904,90.47299 +668454,36.299,90.019217 +668455,37.711,89.5788 +668456,39.14,89.15307 +668457,33.534,90.43296 +668458,34.947,90.019034 +668459,36.378,89.6188 +668460,37.826,89.23358 +668461,32.164,90.39258 +668462,33.595,90.018706 +668463,35.045,89.65888 +668464,36.512,89.31445 +668465,30.795,90.35188 +668466,32.244,90.018243 +668467,33.711,89.69905 +668468,35.196,89.39564 +668469,29.428,90.31088 +668470,30.893,90.017655 +668471,32.377,89.73929 +668472,33.879,89.47713 +668473,28.061,90.26962 +668474,29.542,90.016953 +668475,31.042,89.77959 +668476,32.56,89.55887 +668477,26.696,90.22813 +668478,28.192,90.016147 +668479,29.707,89.81993 +668480,31.241,89.64084 +668481,25.332,90.18644 +668482,26.842,90.015246 +668483,28.371,89.86032 +668484,29.92,89.72301 +668485,23.97,90.14457 +668486,25.492,90.014263 +668487,27.035,89.900727 +668488,28.598,89.80535 +668489,22.608,90.10256 +668490,24.143,90.013206 +668491,25.699,89.941154 +668492,27.274,89.88781 +668493,21.248,90.060447 +668494,22.795,90.012086 +668495,24.362,89.981587 +668496,25.95,89.970376 +668497,19.889,90.018252 +668498,21.446,90.010914 +668499,23.025,90.022014 +668500,24.624,90.053004 +668501,18.531,89.976008 +668502,20.098,90.0097004 +668503,21.687,90.062425 +668504,23.297,90.13566 +668505,17.175,89.933747 +668506,18.75,90.0084553 +668507,20.348,90.10281 +668508,21.968,90.21832 +668509,15.819,89.8915 +668510,17.403,90.0071894 +668511,19.01,90.14315 +668512,20.639,90.30095 +668513,14.465,89.84929 +668514,16.056,90.0059131 +668515,17.67,90.18345 +668516,19.308,90.3835 +668517,13.113,89.80717 +668518,14.71,90.0046368 +668519,16.331,90.22368 +668520,17.975,90.46596 +668521,11.761,89.76514 +668522,13.364,90.003371 +668523,14.99,90.26385 +668524,16.642,90.54827 +668525,10.411,89.72325 +668526,12.018,90.002126 +668527,13.65,90.30393 +668528,15.307,90.63043 +668529,9.0617,89.68153 +668530,10.673,90.00091239 +668531,12.309,90.34392 +668532,13.97,90.71237 +668533,7.714,89.64001 +668534,9.3278,89.9997404 +668535,10.967,90.3838 +668536,12.633,90.79409 +668537,6.3675,89.59871 +668538,7.9833,89.9986204 +668539,9.6251,90.42357 +668540,11.294,90.87553 +668541,5.0223,89.55767 +668542,6.6392,89.9975627 +668543,8.2825,90.46322 +668544,9.9534,90.95668 +668545,3.6784,89.51692 +668546,5.2955,89.9965775 +668547,6.9395,90.50272 +668548,8.6118,91.0375 +668549,2.3357,89.47649 +668550,3.9522,89.9956751 +668551,5.596,90.54208 +668552,7.2688,91.1179 +668553,0.99426,89.4364 +668554,2.6092,89.9948655 +668555,4.2521,90.58128 +668556,5.9245,91.198 +668557,359.65,89.39669 +668558,1.2667,89.9941589 +668559,2.9077,90.62032 +668560,4.5789,91.2776 +668561,358.32,89.35738 +668562,359.92,89.9935653 +668563,1.5628,90.65917 +668564,3.232,91.3567 +668565,356.98,89.31852 +668566,358.58,89.9930946 +668567,0.21739,90.69783 +668568,1.8837,91.4354 +668569,355.64,89.28011 +668570,357.24,89.9927568 +668571,358.87,90.7363 +668572,0.53403,91.5135 +668573,354.31,89.2422 +668574,355.9,89.9925616 +668575,357.53,90.77455 +668576,359.18,91.591 +668577,352.97,89.20481 +668578,354.56,89.9925186 +668579,356.18,90.81258 +668580,357.83,91.668 +668581,351.64,89.16797 +668582,353.22,89.9926377 +668583,354.83,90.85038 +668584,356.48,91.7443 +668585,350.31,89.13171 +668586,351.88,89.9929282 +668587,353.48,90.88794 +668588,355.12,91.8199 +668589,348.98,89.09605 +668590,350.54,89.9933996 +668591,352.14,90.92524 +668592,353.77,91.8949 +668593,347.65,89.06103 +668594,349.2,89.9940612 +668595,350.79,90.96229 +668596,352.41,91.9692 +668597,346.32,89.02666 +668598,347.86,89.9949223 +668599,349.44,90.99906 +668600,351.05,92.0427 +668601,344.99,88.993 +668602,346.52,89.9959919 +668603,348.09,91.0356 +668604,349.69,92.1154 +668605,343.67,88.96 +668606,345.19,89.997279 +668607,346.74,91.0718 +668608,348.33,92.1873 +668609,342.34,88.9278 +668610,343.85,89.9987925 +668611,345.39,91.1077 +668612,346.97,92.2584 +668613,341.02,88.8963 +668614,342.51,90.0005411 +668615,344.04,91.1433 +668616,345.6,92.3286 +668617,339.7,88.8657 +668618,341.17,90.0025334 +668619,342.69,91.1785 +668620,344.24,92.398 +668621,338.38,88.8358 +668622,339.84,90.0047778 +668623,341.33,91.2135 +668624,342.87,92.4663 +668625,337.06,88.8068 +668626,338.5,90.0072828 +668627,339.98,91.2481 +668628,341.5,92.5338 +668629,335.74,88.7786 +668630,337.17,90.010056 +668631,338.63,91.2824 +668632,340.13,92.6003 +668633,334.42,88.7514 +668634,335.83,90.013107 +668635,337.28,91.3163 +668636,338.76,92.6657 +668637,333.1,88.725 +668638,334.5,90.016442 +668639,335.92,91.3498 +668640,337.39,92.7301 +668641,331.79,88.6996 +668642,333.16,90.020069 +668643,334.57,91.383 +668644,336.02,92.7935 +668645,330.47,88.6751 +668646,331.83,90.023996 +668647,333.21,91.4158 +668648,334.65,92.8558 +668649,329.16,88.6516 +668650,330.49,90.02823 +668651,331.86,91.4482 +668652,333.27,92.917 +668653,327.85,88.6291 +668654,329.16,90.032779 +668655,330.51,91.4803 +668656,331.9,92.977 +668657,326.54,88.6077 +668658,327.82,90.037649 +668659,329.15,91.5119 +668660,330.52,93.0359 +668661,325.23,88.5872 +668662,326.49,90.042847 +668663,327.79,91.5431 +668664,329.14,93.0937 +668665,323.92,88.5679 +668666,325.16,90.048381 +668667,326.44,91.5739 +668668,327.76,93.1502 +668669,322.61,88.5496 +668670,323.82,90.054256 +668671,325.08,91.6043 +668672,326.38,93.2055 +668673,321.3,88.5324 +668674,322.49,90.060479 +668675,323.72,91.6342 +668676,325,93.2596 +668677,319.99,88.5163 +668678,321.16,90.067056 +668679,322.37,91.6637 +668680,323.62,93.3124 +668681,318.69,88.5014 +668682,319.83,90.073993 +668683,321.01,91.6928 +668684,322.24,93.3639 +668685,317.38,88.4876 +668686,318.5,90.081296 +668687,319.65,91.7214 +668688,320.85,93.4142 +668689,316.08,88.4749 +668690,317.17,90.08897 +668691,318.29,91.7496 +668692,319.47,93.4631 +668693,314.77,88.4635 +668694,315.83,90.097021 +668695,316.93,91.7773 +668696,318.08,93.5107 +668697,313.47,88.4533 +668698,314.5,90.10545 +668699,315.58,91.8046 +668700,316.69,93.5569 +668701,312.17,88.4442 +668702,313.17,90.11427 +668703,314.22,91.8313 +668704,315.31,93.6018 +668705,310.86,88.4364 +668706,311.84,90.12348 +668707,312.86,91.8576 +668708,313.92,93.6453 +668709,309.56,88.4299 +668710,310.51,90.13309 +668711,311.5,91.8834 +668712,312.53,93.6874 +668713,308.26,88.4246 +668714,309.18,90.1431 +668715,310.14,91.9088 +668716,311.14,93.7281 +668717,306.96,88.4206 +668718,307.85,90.15351 +668719,308.78,91.9336 +668720,309.75,93.7673 +668721,305.67,88.4178 +668722,306.52,90.16433 +668723,307.42,91.958 +668724,308.35,93.8052 +668725,304.37,88.4164 +668726,305.19,90.17556 +668727,306.06,91.9818 +668728,306.96,93.8416 +668729,303.07,88.4162 +668730,303.86,90.1872 +668731,304.69,92.0052 +668732,305.57,93.8765 +668733,301.77,88.4174 +668734,302.53,90.19927 +668735,303.33,92.028 +668736,304.17,93.91 +668737,300.48,88.4198 +668738,301.21,90.21175 +668739,301.97,92.0503 +668740,302.78,93.942 +668741,299.18,88.4236 +668742,299.88,90.22466 +668743,300.61,92.0722 +668744,301.38,93.9725 +668745,297.88,88.4288 +668746,298.55,90.238 +668747,299.25,92.0935 +668748,299.99,94.0015 +668749,296.59,88.4353 +668750,297.22,90.25176 +668751,297.88,92.1143 +668752,298.59,94.029 +668753,295.29,88.4431 +668754,295.89,90.26596 +668755,296.52,92.1346 +668756,297.19,94.055 +668757,294,88.4523 +668758,294.56,90.28058 +668759,295.16,92.1543 +668760,295.8,94.0796 +668761,292.71,88.4629 +668762,293.23,90.29565 +668763,293.8,92.1736 +668764,294.4,94.1026 +668765,291.41,88.4748 +668766,291.91,90.31114 +668767,292.43,92.1923 +668768,293,94.1241 +668769,290.12,88.4881 +668770,290.58,90.32708 +668771,291.07,92.2105 +668772,291.6,94.144 +668773,288.83,88.5028 +668774,289.25,90.34345 +668775,289.71,92.2282 +668776,290.2,94.1625 +668777,287.53,88.5188 +668778,287.92,90.36026 +668779,288.34,92.2453 +668780,288.8,94.1794 +668781,286.24,88.5362 +668782,286.59,90.3775 +668783,286.98,92.2619 +668784,287.4,94.1948 +668785,284.95,88.5551 +668786,285.27,90.39519 +668787,285.62,92.278 +668788,286,94.2087 +668789,283.66,88.5752 +668790,283.94,90.41331 +668791,284.25,92.2936 +668792,284.6,94.2211 +668793,282.36,88.5968 +668794,282.61,90.43187 +668795,282.89,92.3086 +668796,283.2,94.232 +668797,281.07,88.6198 +668798,281.28,90.45087 +668799,281.52,92.3232 +668800,281.8,94.2413 +668801,279.78,88.6441 +668802,279.95,90.47031 +668803,280.16,92.3372 +668804,280.4,94.2492 +668805,278.49,88.6698 +668806,278.63,90.49018 +668807,278.8,92.3506 +668808,279,94.2555 +668809,277.2,88.6968 +668810,277.3,90.51048 +668811,277.43,92.3636 +668812,277.6,94.2604 +668813,275.9,88.7253 +668814,275.97,90.53122 +668815,276.07,92.376 +668816,276.19,94.2637 +668817,274.61,88.7551 +668818,274.64,90.55238 +668819,274.7,92.3879 +668820,274.79,94.2656 +668821,273.32,88.7862 +668822,273.32,90.57398 +668823,273.34,92.3993 +668824,273.39,94.266 +668825,272.03,88.8187 +668826,271.99,90.596 +668827,271.97,92.4102 +668828,271.99,94.2649 +668829,270.74,88.8526 +668830,270.66,90.61845 +668831,270.61,92.4206 +668832,270.59,94.2624 +668833,269.44,88.8878 +668834,269.33,90.64131 +668835,269.24,92.4305 +668836,269.19,94.2584 +668837,268.15,88.9243 +668838,268,90.6646 +668839,267.88,92.4398 +668840,267.78,94.253 +668841,266.86,88.9622 +668842,266.68,90.6883 +668843,266.52,92.4487 +668844,266.38,94.2462 +668845,265.57,89.00132 +668846,265.35,90.71241 +668847,265.15,92.4571 +668848,264.98,94.2379 +668849,264.27,89.04178 +668850,264.02,90.73692 +668851,263.79,92.465 +668852,263.58,94.2283 +668853,262.98,89.08353 +668854,262.69,90.76184 +668855,262.42,92.4723 +668856,262.18,94.2173 +668857,261.69,89.12657 +668858,261.36,90.78716 +668859,261.06,92.4792 +668860,260.78,94.2049 +668861,260.39,89.17086 +668862,260.03,90.81288 +668863,259.69,92.4857 +668864,259.38,94.1911 +668865,259.1,89.21642 +668866,258.7,90.83898 +668867,258.33,92.4916 +668868,257.98,94.176 +668869,257.8,89.26321 +668870,257.37,90.86547 +668871,256.97,92.4971 +668872,256.58,94.1596 +668873,256.51,89.31124 +668874,256.05,90.89234 +668875,255.6,92.5021 +668876,255.18,94.1419 +668877,255.21,89.36047 +668878,254.72,90.91959 +668879,254.24,92.5066 +668880,253.78,94.1228 +668881,253.92,89.41091 +668882,253.39,90.9472 +668883,252.87,92.5107 +668884,252.38,94.1026 +668885,252.62,89.46252 +668886,252.06,90.97518 +668887,251.51,92.5144 +668888,250.98,94.081 +668889,251.32,89.5153 +668890,250.73,91.0035 +668891,250.15,92.5176 +668892,249.59,94.0583 +668893,250.03,89.56923 +668894,249.4,91.0322 +668895,248.78,92.5203 +668896,248.19,94.0343 +668897,248.73,89.62429 +668898,248.07,91.0612 +668899,247.42,92.5227 +668900,246.79,94.0091 +668901,247.43,89.68046 +668902,246.74,91.0906 +668903,246.06,92.5246 +668904,245.4,93.9828 +668905,246.13,89.73772 +668906,245.4,91.1203 +668907,244.69,92.5261 +668908,244,93.9553 +668909,244.83,89.79605 +668910,244.07,91.1503 +668911,243.33,92.5272 +668912,242.61,93.9267 +668913,243.53,89.85544 +668914,242.74,91.1807 +668915,241.97,92.5279 +668916,241.21,93.897 +668917,242.23,89.915859 +668918,241.41,91.2113 +668919,240.61,92.5282 +668920,239.82,93.8662 +668921,240.93,89.977286 +668922,240.08,91.2423 +668923,239.24,92.5281 +668924,238.43,93.8344 +668925,239.62,90.039702 +668926,238.75,91.2736 +668927,237.88,92.5276 +668928,237.03,93.8015 +668929,238.32,90.10308 +668930,237.41,91.3051 +668931,236.52,92.5268 +668932,235.64,93.7676 +668933,237.02,90.16741 +668934,236.08,91.3369 +668935,235.16,92.5256 +668936,234.25,93.7328 +668937,235.71,90.23265 +668938,234.75,91.369 +668939,233.8,92.524 +668940,232.86,93.697 +668941,234.4,90.29878 +668942,233.42,91.4014 +668943,232.44,92.5221 +668944,231.47,93.6603 +668945,233.1,90.36579 +668946,232.08,91.434 +668947,231.08,92.5198 +668948,230.08,93.6227 +668949,231.79,90.43364 +668950,230.75,91.4668 +668951,229.72,92.5173 +668952,228.7,93.5842 +668953,230.48,90.50231 +668954,229.41,91.4999 +668955,228.36,92.5144 +668956,227.31,93.5448 +668957,229.17,90.57177 +668958,228.08,91.5333 +668959,227,92.5112 +668960,225.92,93.5047 +668961,227.86,90.642 +668962,226.74,91.5668 +668963,225.64,92.5077 +668964,224.54,93.4637 +668965,226.55,90.71296 +668966,225.41,91.6005 +668967,224.28,92.5039 +668968,223.16,93.4221 +668969,225.24,90.78464 +668970,224.07,91.6345 +668971,222.92,92.4998 +668972,221.77,93.3796 +668973,223.93,90.857 +668974,222.74,91.6686 +668975,221.56,92.4954 +668976,220.39,93.3365 +668977,222.61,90.93002 +668978,221.4,91.7029 +668979,220.2,92.4908 +668980,219.01,93.2927 +668981,221.3,91.0037 +668982,220.06,91.7374 +668983,218.84,92.4859 +668984,217.63,93.2483 +668985,219.98,91.0779 +668986,218.73,91.7721 +668987,217.48,92.4808 +668988,216.25,93.2032 +668989,218.66,91.1527 +668990,217.39,91.8069 +668991,216.13,92.4755 +668992,214.87,93.1576 +668993,217.34,91.2281 +668994,216.05,91.8418 +668995,214.77,92.4699 +668996,213.5,93.1114 +668997,216.03,91.3039 +668998,214.71,91.8769 +668999,213.41,92.4641 +669000,212.12,93.0647 +669001,214.7,91.3802 +669002,213.38,91.9121 +669003,212.06,92.4581 +669004,210.75,93.0175 +669005,213.38,91.457 +669006,212.04,91.9473 +669007,210.7,92.4519 +669008,209.37,92.9698 +669009,212.06,91.5342 +669010,210.7,91.9827 +669011,209.34,92.4456 +669012,208,92.9218 +669013,210.74,91.6118 +669014,209.36,92.0182 +669015,207.99,92.439 +669016,206.63,92.8733 +669017,209.41,91.6897 +669018,208.02,92.0538 +669019,206.63,92.4323 +669020,205.26,92.8245 +669021,208.09,91.7679 +669022,206.68,92.0894 +669023,205.28,92.4255 +669024,203.89,92.7753 +669025,206.76,91.8465 +669026,205.34,92.1251 +669027,203.92,92.4185 +669028,202.52,92.7258 +669029,205.43,91.9253 +669030,203.99,92.1608 +669031,202.57,92.4114 +669032,201.15,92.6761 +669033,204.1,92.0043 +669034,202.65,92.1965 +669035,201.21,92.4041 +669036,199.79,92.6261 +669037,202.77,92.0834 +669038,201.31,92.2323 +669039,199.86,92.3968 +669040,198.42,92.576 +669041,201.44,92.1628 +669042,199.97,92.2681 +669043,198.51,92.3893 +669044,197.06,92.5256 +669045,200.11,92.2423 +669046,198.62,92.3039 +669047,197.15,92.3818 +669048,195.7,92.4752 +669049,198.77,92.3218 +669050,197.28,92.3397 +669051,195.8,92.3742 +669052,194.34,92.4246 +669053,197.44,92.4014 +669054,195.94,92.3754 +669055,194.45,92.3665 +669056,192.98,92.3739 +669057,196.1,92.4811 +669058,194.59,92.4111 +669059,193.1,92.3588 +669060,191.62,92.3232 +669061,194.76,92.5607 +669062,193.25,92.4468 +669063,191.75,92.351 +669064,190.26,92.2725 +669065,193.42,92.6402 +669066,191.9,92.4824 +669067,190.4,92.3432 +669068,188.9,92.2218 +669069,192.08,92.7197 +669070,190.56,92.518 +669071,189.05,92.3354 +669072,187.55,92.1711 +669073,190.74,92.7991 +669074,189.21,92.5534 +669075,187.7,92.3276 +669076,186.19,92.1206 +669077,189.4,92.8783 +669078,187.86,92.5888 +669079,186.35,92.3197 +669080,184.84,92.0701 +669081,188.05,92.9573 +669082,186.52,92.6241 +669083,185,92.3119 +669084,183.49,92.0199 +669085,186.71,93.0362 +669086,185.17,92.6592 +669087,183.65,92.3041 +669088,182.14,91.9697 +669089,185.36,93.1147 +669090,183.82,92.6943 +669091,182.3,92.2963 +669092,180.79,91.9198 +669093,184.01,93.193 +669094,182.47,92.7292 +669095,180.95,92.2886 +669096,179.44,91.8702 +669097,182.66,93.2709 +669098,181.12,92.7639 +669099,179.6,92.2809 +669100,178.1,91.8208 +669101,181.31,93.3485 +669102,179.78,92.7985 +669103,178.26,92.2733 +669104,176.75,91.7717 +669105,179.96,93.4257 +669106,178.43,92.8329 +669107,176.91,92.2658 +669108,175.41,91.723 +669109,178.61,93.5025 +669110,177.08,92.8672 +669111,175.56,92.2584 +669112,174.06,91.6746 +669113,177.25,93.5789 +669114,175.73,92.9012 +669115,174.21,92.251 +669116,172.72,91.6267 +669117,175.9,93.6547 +669118,174.37,92.9351 +669119,172.87,92.2438 +669120,171.38,91.5791 +669121,174.54,93.73 +669122,173.02,92.9687 +669123,171.52,92.2367 +669124,170.04,91.532 +669125,173.18,93.8048 +669126,171.67,93.0022 +669127,170.18,92.2297 +669128,168.7,91.4854 +669129,171.82,93.8789 +669130,170.32,93.0353 +669131,168.83,92.2228 +669132,167.37,91.4393 +669133,170.46,93.9525 +669134,168.97,93.0683 +669135,167.49,92.2161 +669136,166.03,91.3938 +669137,169.1,94.0254 +669138,167.61,93.101 +669139,166.14,92.2095 +669140,164.7,91.3488 +669141,167.74,94.0976 +669142,166.26,93.1334 +669143,164.8,92.2031 +669144,163.36,91.3045 +669145,166.37,94.169 +669146,164.91,93.1655 +669147,163.46,92.1969 +669148,162.03,91.2608 +669149,165.01,94.2398 +669150,163.55,93.1974 +669151,162.11,92.1909 +669152,160.7,91.2177 +669153,163.64,94.3097 +669154,162.2,93.2289 +669155,160.77,92.1851 +669156,159.37,91.1753 +669157,162.28,94.3789 +669158,160.84,93.2602 +669159,159.43,92.1794 +669160,158.04,91.1336 +669161,160.91,94.4471 +669162,159.49,93.2911 +669163,158.09,92.174 +669164,156.71,91.0927 +669165,159.54,94.5145 +669166,158.13,93.3217 +669167,156.75,92.1688 +669168,155.38,91.0526 +669169,158.17,94.5811 +669170,156.77,93.352 +669171,155.4,92.1639 +669172,154.06,91.0132 +669173,156.79,94.6466 +669174,155.42,93.382 +669175,154.06,92.1591 +669176,152.73,90.97464 +669177,155.42,94.7112 +669178,154.06,93.4115 +669179,152.72,92.1547 +669180,151.41,90.93694 +669181,154.05,94.7749 +669182,152.7,93.4407 +669183,151.38,92.1505 +669184,150.09,90.90011 +669185,152.67,94.8375 +669186,151.34,93.4696 +669187,150.04,92.1465 +669188,148.76,90.86417 +669189,151.29,94.899 +669190,149.99,93.498 +669191,148.7,92.1429 +669192,147.44,90.82914 +669193,149.92,94.9595 +669194,148.63,93.5261 +669195,147.36,92.1395 +669196,146.12,90.79506 +669197,148.54,95.0189 +669198,147.27,93.5538 +669199,146.02,92.1364 +669200,144.8,90.76194 +669201,147.16,95.0771 +669202,145.91,93.5811 +669203,144.69,92.1336 +669204,143.49,90.72981 +669205,145.78,95.1342 +669206,144.55,93.6079 +669207,143.35,92.1311 +669208,142.17,90.69868 +669209,144.4,95.1901 +669210,143.19,93.6344 +669211,142.01,92.1289 +669212,140.85,90.66859 +669213,143.01,95.2448 +669214,141.83,93.6604 +669215,140.67,92.127 +669216,139.54,90.63954 +669217,141.63,95.2983 +669218,140.47,93.6859 +669219,139.33,92.1255 +669220,138.22,90.61157 +669221,140.24,95.3505 +669222,139.11,93.711 +669223,138,92.1243 +669224,136.91,90.58468 +669225,138.86,95.4015 +669226,137.74,93.7357 +669227,136.66,92.1235 +669228,135.6,90.55891 +669229,137.47,95.4512 +669230,136.38,93.7599 +669231,135.32,92.123 +669232,134.29,90.53426 +669233,136.08,95.4995 +669234,135.02,93.7837 +669235,133.99,92.1228 +669236,132.97,90.51077 +669237,134.7,95.5465 +669238,133.66,93.8069 +669239,132.65,92.123 +669240,131.66,90.48843 +669241,133.31,95.5922 +669242,132.3,93.8297 +669243,131.31,92.1236 +669244,130.35,90.46728 +669245,131.92,95.6365 +669246,130.93,93.852 +669247,129.98,92.1245 +669248,129.05,90.44732 +669249,130.53,95.6794 +669250,129.57,93.8739 +669251,128.64,92.1258 +669252,127.74,90.42858 +669253,129.13,95.7209 +669254,128.21,93.8952 +669255,127.31,92.1275 +669256,126.43,90.41107 +669257,127.74,95.7609 +669258,126.84,93.916 +669259,125.97,92.1296 +669260,125.12,90.3948 +669261,126.35,95.7995 +669262,125.48,93.9363 +669263,124.64,92.1321 +669264,123.82,90.37979 +669265,124.96,95.8367 +669266,124.11,93.9561 +669267,123.3,92.135 +669268,122.51,90.36606 +669269,123.56,95.8724 +669270,122.75,93.9754 +669271,121.97,92.1382 +669272,121.21,90.3536 +669273,122.17,95.9066 +669274,121.38,93.9942 +669275,120.63,92.1419 +669276,119.9,90.34244 +669277,120.77,95.9393 +669278,120.02,94.0124 +669279,119.3,92.146 +669280,118.6,90.33259 +669281,119.37,95.9704 +669282,118.65,94.0301 +669283,117.96,92.1505 +669284,117.29,90.32406 +669285,117.98,96.0001 +669286,117.29,94.0473 +669287,116.63,92.1554 +669288,115.99,90.31686 +669289,116.58,96.0282 +669290,115.92,94.064 +669291,115.29,92.1608 +669292,114.69,90.311 +669293,115.18,96.0548 +669294,114.56,94.0801 +669295,113.96,92.1665 +669296,113.39,90.30648 +669297,113.78,96.0798 +669298,113.19,94.0956 +669299,112.63,92.1727 +669300,112.09,90.30332 +669301,112.38,96.1033 +669302,111.83,94.1107 +669303,111.29,92.1793 +669304,110.78,90.30152 +669305,110.99,96.1252 +669306,110.46,94.1251 +669307,109.96,92.1863 +669308,109.48,90.30109 +669309,109.59,96.1455 +669310,109.09,94.1391 +669311,108.63,92.1938 +669312,108.18,90.30204 +669313,108.19,96.1643 +669314,107.73,94.1524 +669315,107.29,92.2017 +669316,106.88,90.30437 +669317,106.79,96.1814 +669318,106.36,94.1653 +669319,105.96,92.21 +669320,105.58,90.30809 +669321,105.38,96.197 +669322,104.99,94.1775 +669323,104.63,92.2188 +669324,104.28,90.31319 +669325,103.98,96.211 +669326,103.63,94.1892 +669327,103.29,92.228 +669328,102.98,90.3197 +669329,102.58,96.2233 +669330,102.26,94.2004 +669331,101.96,92.2376 +669332,101.68,90.32759 +669333,101.18,96.2341 +669334,100.89,94.211 +669335,100.63,92.2477 +669336,100.39,90.33689 +669337,99.778,96.2433 +669338,99.525,94.221 +669339,99.295,92.2582 +669340,99.086,90.34759 +669341,98.376,96.2509 +669342,98.158,94.2305 +669343,97.963,92.2691 +669344,97.787,90.35969 +669345,96.974,96.2569 +669346,96.79,94.2395 +669347,96.63,92.2805 +669348,96.489,90.37319 +669349,95.571,96.2614 +669350,95.423,94.2478 +669351,95.297,92.2924 +669352,95.19,90.38808 +669353,94.169,96.2642 +669354,94.056,94.2556 +669355,93.964,92.3046 +669356,93.891,90.40438 +669357,92.766,96.2654 +669358,92.688,94.2629 +669359,92.631,92.3173 +669360,92.593,90.42208 +669361,91.364,96.2651 +669362,91.321,94.2696 +669363,91.298,92.3305 +669364,91.294,90.44116 +669365,89.961,96.2632 +669366,89.953,94.2758 +669367,89.965,92.344 +669368,89.995,90.46164 +669369,88.559,96.2597 +669370,88.586,94.2814 +669371,88.632,92.358 +669372,88.696,90.4835 +669373,87.156,96.2547 +669374,87.218,94.2864 +669375,87.299,92.3725 +669376,87.397,90.50675 +669377,85.754,96.2481 +669378,85.851,94.291 +669379,85.966,92.3873 +669380,86.098,90.53137 +669381,84.351,96.24 +669382,84.483,94.2949 +669383,84.633,92.4026 +669384,84.799,90.55735 +669385,82.949,96.2303 +669386,83.116,94.2983 +669387,83.3,92.4183 +669388,83.499,90.5847 +669389,81.547,96.2191 +669390,81.748,94.3012 +669391,81.966,92.4344 +669392,82.2,90.61341 +669393,80.145,96.2065 +669394,80.381,94.3036 +669395,80.633,92.451 +669396,80.9,90.64345 +669397,78.744,96.1923 +669398,79.014,94.3054 +669399,79.299,92.4679 +669400,79.6,90.67484 +669401,77.342,96.1766 +669402,77.646,94.3067 +669403,77.966,92.4853 +669404,78.299,90.70755 +669405,75.941,96.1595 +669406,76.279,94.3075 +669407,76.632,92.503 +669408,76.998,90.74158 +669409,74.541,96.1409 +669410,74.912,94.3078 +669411,75.298,92.5212 +669412,75.697,90.77691 +669413,73.14,96.1208 +669414,73.545,94.3075 +669415,73.964,92.5398 +669416,74.396,90.81354 +669417,71.74,96.0993 +669418,72.178,94.3067 +669419,72.63,92.5587 +669420,73.094,90.85144 +669421,70.34,96.0765 +669422,70.812,94.3055 +669423,71.295,92.5781 +669424,71.791,90.89062 +669425,68.941,96.0522 +669426,69.445,94.3037 +669427,69.961,92.5978 +669428,70.489,90.93104 +669429,67.542,96.0266 +669430,68.078,94.3015 +669431,68.626,92.6179 +669432,69.185,90.97271 +669433,66.144,95.9996 +669434,66.712,94.2987 +669435,67.291,92.6384 +669436,67.882,91.0156 +669437,64.746,95.9712 +669438,65.346,94.2955 +669439,65.956,92.6592 +669440,66.577,91.0597 +669441,63.349,95.9416 +669442,63.98,94.2918 +669443,64.621,92.6804 +669444,65.272,91.105 +669445,61.952,95.9106 +669446,62.614,94.2876 +669447,63.286,92.702 +669448,63.967,91.1515 +669449,60.556,95.8784 +669450,61.248,94.283 +669451,61.95,92.7239 +669452,62.661,91.1991 +669453,59.16,95.845 +669454,59.883,94.2779 +669455,60.614,92.7462 +669456,61.354,91.2478 +669457,57.766,95.8103 +669458,58.517,94.2723 +669459,59.278,92.7688 +669460,60.047,91.2977 +669461,56.371,95.7744 +669462,57.152,94.2663 +669463,57.942,92.7917 +669464,58.739,91.3487 +669465,54.978,95.7373 +669466,55.787,94.2599 +669467,56.605,92.8149 +669468,57.43,91.4008 +669469,53.585,95.6991 +669470,54.423,94.2531 +669471,55.268,92.8385 +669472,56.121,91.4539 +669473,52.192,95.6597 +669474,53.058,94.2458 +669475,53.931,92.8623 +669476,54.811,91.508 +669477,50.801,95.6192 +669478,51.694,94.2381 +669479,52.594,92.8865 +669480,53.5,91.5632 +669481,49.41,95.5777 +669482,50.33,94.23 +669483,51.256,92.9109 +669484,52.189,91.6194 +669485,48.02,95.535 +669486,48.966,94.2216 +669487,49.918,92.9357 +669488,50.876,91.6765 +669489,46.631,95.4914 +669490,47.603,94.2127 +669491,48.58,92.9607 +669492,49.563,91.7346 +669493,45.243,95.4468 +669494,46.239,94.2035 +669495,47.242,92.9859 +669496,48.249,91.7937 +669497,43.856,95.4012 +669498,44.876,94.1939 +669499,45.903,93.0115 +669500,46.934,91.8536 +669501,42.469,95.3546 +669502,43.514,94.1839 +669503,44.564,93.0372 +669504,45.618,91.9144 +669505,41.083,95.3071 +669506,42.151,94.1736 +669507,43.224,93.0633 +669508,44.302,91.976 +669509,39.699,95.2588 +669510,40.789,94.1629 +669511,41.884,93.0895 +669512,42.984,92.0385 +669513,38.315,95.2096 +669514,39.427,94.1519 +669515,40.544,93.116 +669516,41.666,92.1018 +669517,36.932,95.1595 +669518,38.066,94.1406 +669519,39.204,93.1427 +669520,40.346,92.1658 +669521,35.55,95.1087 +669522,36.704,94.129 +669523,37.863,93.1696 +669524,39.026,92.2306 +669525,34.169,95.0571 +669526,35.343,94.1171 +669527,36.522,93.1967 +669528,37.705,92.2961 +669529,32.789,95.0047 +669530,33.983,94.1048 +669531,35.181,93.2239 +669532,36.382,92.3623 +669533,31.41,94.9517 +669534,32.622,94.0923 +669535,33.839,93.2514 +669536,35.059,92.4291 +669537,30.032,94.898 +669538,31.262,94.0795 +669539,32.497,93.279 +669540,33.735,92.4966 +669541,28.655,94.8436 +669542,29.903,94.0665 +669543,31.154,93.3067 +669544,32.409,92.5647 +669545,27.279,94.7886 +669546,28.543,94.0532 +669547,29.812,93.3346 +669548,31.083,92.6333 +669549,25.905,94.7331 +669550,27.184,94.0397 +669551,28.468,93.3627 +669552,29.755,92.7025 +669553,24.531,94.677 +669554,25.826,94.0259 +669555,27.125,93.3908 +669556,28.427,92.7722 +669557,23.158,94.6204 +669558,24.467,94.0119 +669559,25.781,93.4191 +669560,27.097,92.8424 +669561,21.787,94.5633 +669562,23.11,93.9977 +669563,24.436,93.4475 +669564,25.766,92.913 +669565,20.416,94.5057 +669566,21.752,93.9833 +669567,23.092,93.4759 +669568,24.434,92.9841 +669569,19.047,94.4478 +669570,20.395,93.9687 +669571,21.747,93.5045 +669572,23.101,93.0555 +669573,17.679,94.3894 +669574,19.038,93.954 +669575,20.401,93.5331 +669576,21.767,93.1273 +669577,16.312,94.3307 +669578,17.681,93.939 +669579,19.055,93.5618 +669580,20.432,93.1994 +669581,14.946,94.2717 +669582,16.325,93.924 +669583,17.709,93.5905 +669584,19.096,93.2718 +669585,13.581,94.2124 +669586,14.969,93.9087 +669587,16.362,93.6193 +669588,17.758,93.3445 +669589,12.217,94.1529 +669590,13.614,93.8934 +669591,15.015,93.648 +669592,16.419,93.4173 +669593,10.855,94.0931 +669594,12.259,93.8779 +669595,13.668,93.6768 +669596,15.079,93.4904 +669597,9.4936,94.0332 +669598,10.904,93.8623 +669599,12.32,93.7056 +669600,13.738,93.5636 +669601,8.1335,93.9731 +669602,9.55,93.8466 +669603,10.971,93.7344 +669604,12.396,93.637 +669605,6.7745,93.9129 +669606,8.1961,93.8308 +669607,9.6227,93.7632 +669608,11.053,93.7104 +669609,5.4167,93.8526 +669610,6.8425,93.8149 +669611,8.2736,93.7919 +669612,9.7083,93.7839 +669613,4.0601,93.7923 +669614,5.4894,93.799 +669615,6.9241,93.8206 +669616,8.3625,93.8574 +669617,2.7047,93.7319 +669618,4.1366,93.783 +669619,5.5741,93.8493 +669620,7.0156,93.9309 +669621,1.3504,93.6716 +669622,2.7843,93.767 +669623,4.2238,93.8778 +669624,5.6675,94.0044 +669625,360,93.6113 +669626,1.4323,93.7509 +669627,2.873,93.9063 +669628,4.3181,94.0778 +669629,358.65,93.5511 +669630,0.080645,93.7349 +669631,1.5218,93.9347 +669632,2.9676,94.151 +669633,357.29,93.491 +669634,358.73,93.7188 +669635,0.17027,93.963 +669636,1.6159,94.2241 +669637,355.95,93.431 +669638,357.38,93.7027 +669639,358.82,93.9912 +669640,0.26294,94.2971 +669641,354.6,93.3713 +669642,356.03,93.6866 +669643,357.47,94.0193 +669644,358.91,94.3698 +669645,353.25,93.3117 +669646,354.68,93.6705 +669647,356.11,94.0473 +669648,357.55,94.4422 +669649,351.9,93.2524 +669650,353.33,93.6545 +669651,354.76,94.0751 +669652,356.2,94.5144 +669653,350.56,93.1934 +669654,351.98,93.6385 +669655,353.41,94.1027 +669656,354.84,94.5863 +669657,349.22,93.1347 +669658,350.63,93.6226 +669659,352.05,94.1302 +669660,353.48,94.6578 +669661,347.87,93.0763 +669662,349.28,93.6068 +669663,350.7,94.1575 +669664,352.12,94.7289 +669665,346.53,93.0184 +669666,347.93,93.591 +669667,349.34,94.1846 +669668,350.76,94.7995 +669669,345.19,92.9608 +669670,346.59,93.5753 +669671,347.99,94.2115 +669672,349.4,94.8698 +669673,343.85,92.9036 +669674,345.24,93.5597 +669675,346.63,94.2381 +669676,348.03,94.9395 +669677,342.51,92.8469 +669678,343.89,93.5442 +669679,345.28,94.2646 +669680,346.67,95.0087 +669681,341.18,92.7907 +669682,342.54,93.5289 +669683,343.92,94.2908 +669684,345.3,95.0773 +669685,339.84,92.7351 +669686,341.2,93.5137 +669687,342.56,94.3168 +669688,343.94,95.1454 +669689,338.51,92.68 +669690,339.85,93.4986 +669691,341.21,94.3425 +669692,342.57,95.2128 +669693,337.17,92.6254 +669694,338.51,93.4836 +669695,339.85,94.368 +669696,341.2,95.2796 +669697,335.84,92.5715 +669698,337.16,93.4689 +669699,338.49,94.3932 +669700,339.83,95.3457 +669701,334.51,92.5183 +669702,335.82,93.4543 +669703,337.13,94.4181 +669704,338.46,95.411 +669705,333.18,92.4657 +669706,334.47,93.4398 +669707,335.77,94.4427 +669708,337.08,95.4756 +669709,331.85,92.4138 +669710,333.13,93.4256 +669711,334.41,94.467 +669712,335.71,95.5395 +669713,330.52,92.3626 +669714,331.78,93.4116 +669715,333.05,94.491 +669716,334.33,95.6025 +669717,329.19,92.3122 +669718,330.44,93.3977 +669719,331.69,94.5146 +669720,332.96,95.6646 +669721,327.87,92.2626 +669722,329.1,93.3841 +669723,330.33,94.5379 +669724,331.58,95.7259 +669725,326.54,92.2138 +669726,327.75,93.3708 +669727,328.97,94.5609 +669728,330.2,95.7862 +669729,325.22,92.1658 +669730,326.41,93.3576 +669731,327.61,94.5835 +669732,328.82,95.8456 +669733,323.9,92.1187 +669734,325.07,93.3447 +669735,326.25,94.6057 +669736,327.44,95.9041 +669737,322.57,92.0724 +669738,323.73,93.3321 +669739,324.89,94.6276 +669740,326.06,95.9615 +669741,321.25,92.0271 +669742,322.39,93.3197 +669743,323.53,94.649 +669744,324.68,96.018 +669745,319.93,91.9827 +669746,321.04,93.3076 +669747,322.17,94.6701 +669748,323.3,96.0733 +669749,318.61,91.9392 +669750,319.7,93.2958 +669751,320.8,94.6908 +669752,321.91,96.1276 +669753,317.29,91.8968 +669754,318.36,93.2842 +669755,319.44,94.7111 +669756,320.53,96.1808 +669757,315.98,91.8553 +669758,317.02,93.273 +669759,318.08,94.7309 +669760,319.14,96.2328 +669761,314.66,91.8149 +669762,315.68,93.262 +669763,316.71,94.7503 +669764,317.76,96.2836 +669765,313.34,91.7755 +669766,314.34,93.2514 +669767,315.35,94.7693 +669768,316.37,96.3333 +669769,312.03,91.7372 +669770,313,93.2411 +669771,313.99,94.7879 +669772,314.98,96.3818 +669773,310.71,91.7 +669774,311.66,93.2311 +669775,312.62,94.806 +669776,313.59,96.429 +669777,309.4,91.6638 +669778,310.32,93.2215 +669779,311.26,94.8236 +669780,312.2,96.4749 +669781,308.09,91.6288 +669782,308.98,93.2121 +669783,309.89,94.8408 +669784,310.81,96.5196 +669785,306.77,91.595 +669786,307.65,93.2032 +669787,308.53,94.8575 +669788,309.42,96.563 +669789,305.46,91.5623 +669790,306.31,93.1945 +669791,307.16,94.8737 +669792,308.03,96.605 +669793,304.15,91.5308 +669794,304.97,93.1863 +669795,305.8,94.8894 +669796,306.64,96.6457 +669797,302.84,91.5005 +669798,303.63,93.1784 +669799,304.43,94.9047 +669800,305.24,96.685 +669801,301.53,91.4714 +669802,302.29,93.1709 +669803,303.07,94.9194 +669804,303.85,96.7229 +669805,300.22,91.4435 +669806,300.96,93.1637 +669807,301.7,94.9336 +669808,302.45,96.7594 +669809,298.91,91.4169 +669810,299.62,93.1569 +669811,300.33,94.9474 +669812,301.06,96.7944 +669813,297.61,91.3915 +669814,298.28,93.1505 +669815,298.97,94.9606 +669816,299.66,96.8281 +669817,296.3,91.3675 +669818,296.94,93.1445 +669819,297.6,94.9733 +669820,298.26,96.8602 +669821,294.99,91.3447 +669822,295.61,93.1389 +669823,296.23,94.9854 +669824,296.87,96.8909 +669825,293.69,91.3232 +669826,294.27,93.1337 +669827,294.86,94.997 +669828,295.47,96.92 +669829,292.38,91.303 +669830,292.93,93.1289 +669831,293.5,95.0081 +669832,294.07,96.9477 +669833,291.07,91.2841 +669834,291.6,93.1245 +669835,292.13,95.0187 +669836,292.67,96.9738 +669837,289.77,91.2666 +669838,290.26,93.1206 +669839,290.76,95.0287 +669840,291.27,96.9984 +669841,288.46,91.2504 +669842,288.93,93.117 +669843,289.39,95.0382 +669844,289.87,97.0215 +669845,287.16,91.2355 +669846,287.59,93.1138 +669847,288.03,95.0471 +669848,288.47,97.043 +669849,285.86,91.2221 +669850,286.25,93.1111 +669851,286.66,95.0555 +669852,287.07,97.0629 +669853,284.55,91.21 +669854,284.92,93.1088 +669855,285.29,95.0633 +669856,285.67,97.0812 +669857,283.25,91.1992 +669858,283.58,93.1069 +669859,283.92,95.0705 +669860,284.27,97.098 +669861,281.95,91.1899 +669862,282.25,93.1055 +669863,282.55,95.0772 +669864,282.87,97.1131 +669865,280.64,91.1819 +669866,280.91,93.1044 +669867,281.18,95.0833 +669868,281.47,97.1266 +669869,279.34,91.1754 +669870,279.58,93.1039 +669871,279.82,95.0889 +669872,280.06,97.1385 +669873,278.04,91.1702 +669874,278.24,93.1037 +669875,278.45,95.0938 +669876,278.66,97.1489 +669877,276.74,91.1664 +669878,276.9,93.104 +669879,277.08,95.0983 +669880,277.26,97.1575 +669881,275.43,91.1641 +669882,275.57,93.1047 +669883,275.71,95.1021 +669884,275.86,97.1646 +669885,274.13,91.1631 +669886,274.23,93.1058 +669887,274.34,95.1054 +669888,274.45,97.17 +669889,272.83,91.1636 +669890,272.9,93.1074 +669891,272.97,95.1081 +669892,273.05,97.1738 +669893,271.53,91.1655 +669894,271.56,93.1095 +669895,271.6,95.1102 +669896,271.65,97.176 +669897,270.23,91.1687 +669898,270.23,93.1119 +669899,270.23,95.1118 +669900,270.24,97.1765 +669901,268.92,91.1734 +669902,268.89,93.1148 +669903,268.87,95.1128 +669904,268.84,97.1754 +669905,267.62,91.1795 +669906,267.56,93.1182 +669907,267.5,95.1132 +669908,267.44,97.1727 +669909,266.32,91.187 +669910,266.22,93.1219 +669911,266.13,95.113 +669912,266.04,97.1683 +669913,265.02,91.196 +669914,264.89,93.1261 +669915,264.76,95.1123 +669916,264.63,97.1624 +669917,263.72,91.2063 +669918,263.55,93.1308 +669919,263.39,95.111 +669920,263.23,97.1548 +669921,262.41,91.218 +669922,262.22,93.1359 +669923,262.02,95.1091 +669924,261.83,97.1456 +669925,261.11,91.2311 +669926,260.88,93.1414 +669927,260.65,95.1067 +669928,260.43,97.1348 +669929,259.81,91.2456 +669930,259.54,93.1473 +669931,259.28,95.1037 +669932,259.02,97.1224 +669933,258.5,91.2614 +669934,258.21,93.1537 +669935,257.92,95.1002 +669936,257.62,97.1083 +669937,257.2,91.2787 +669938,256.87,93.1605 +669939,256.55,95.096 +669940,256.22,97.0928 +669941,255.9,91.2973 +669942,255.54,93.1677 +669943,255.18,95.0914 +669944,254.82,97.0756 +669945,254.59,91.3173 +669946,254.2,93.1753 +669947,253.81,95.0862 +669948,253.42,97.0569 +669949,253.29,91.3386 +669950,252.87,93.1833 +669951,252.44,95.0804 +669952,252.02,97.0366 +669953,251.99,91.3613 +669954,251.53,93.1918 +669955,251.07,95.0741 +669956,250.62,97.0148 +669957,250.68,91.3853 +669958,250.19,93.2007 +669959,249.71,95.0672 +669960,249.22,96.9914 +669961,249.37,91.4106 +669962,248.86,93.2099 +669963,248.34,95.0598 +669964,247.82,96.9666 +669965,248.07,91.4372 +669966,247.52,93.2196 +669967,246.97,95.0519 +669968,246.42,96.9402 +669969,246.76,91.4651 +669970,246.18,93.2297 +669971,245.6,95.0435 +669972,245.02,96.9124 +669973,245.46,91.4943 +669974,244.85,93.2402 +669975,244.24,95.0345 +669976,243.62,96.8831 +669977,244.15,91.5248 +669978,243.51,93.251 +669979,242.87,95.025 +669980,242.23,96.8523 +669981,242.84,91.5565 +669982,242.17,93.2622 +669983,241.5,95.015 +669984,240.83,96.8201 +669985,241.53,91.5895 +669986,240.83,93.2738 +669987,240.13,95.0045 +669988,239.43,96.7865 +669989,240.22,91.6237 +669990,239.5,93.2858 +669991,238.77,94.9935 +669992,238.04,96.7515 +669993,238.91,91.6591 +669994,238.16,93.2982 +669995,237.4,94.9819 +669996,236.64,96.7151 +669997,237.6,91.6957 +669998,236.82,93.3109 +669999,236.04,94.9699 +670000,235.25,96.6773 +670001,236.29,91.7335 +670002,235.48,93.3239 +670003,234.67,94.9575 +670004,233.85,96.6383 +670005,234.98,91.7724 +670006,234.14,93.3374 +670007,233.3,94.9445 +670008,232.46,96.5979 +670009,233.67,91.8125 +670010,232.81,93.3511 +670011,231.94,94.9311 +670012,231.07,96.5562 +670013,232.36,91.8537 +670014,231.47,93.3652 +670015,230.57,94.9172 +670016,229.67,96.5132 +670017,231.04,91.896 +670018,230.13,93.3796 +670019,229.21,94.9028 +670020,228.28,96.469 +670021,229.73,91.9394 +670022,228.79,93.3944 +670023,227.84,94.888 +670024,226.89,96.4236 +670025,228.41,91.9838 +670026,227.45,93.4094 +670027,226.48,94.8728 +670028,225.5,96.377 +670029,227.1,92.0293 +670030,226.11,93.4248 +670031,225.11,94.8571 +670032,224.12,96.3292 +670033,225.78,92.0758 +670034,224.77,93.4404 +670035,223.75,94.8411 +670036,222.73,96.2803 +670037,224.46,92.1233 +670038,223.43,93.4564 +670039,222.39,94.8246 +670040,221.34,96.2302 +670041,223.15,92.1718 +670042,222.09,93.4726 +670043,221.02,94.8076 +670044,219.95,96.1791 +670045,221.83,92.2212 +670046,220.75,93.4891 +670047,219.66,94.7903 +670048,218.57,96.1269 +670049,220.51,92.2715 +670050,219.4,93.5059 +670051,218.3,94.7726 +670052,217.19,96.0737 +670053,219.19,92.3228 +670054,218.06,93.5229 +670055,216.93,94.7546 +670056,215.8,96.0194 +670057,217.86,92.3749 +670058,216.72,93.5402 +670059,215.57,94.7361 +670060,214.42,95.9642 +670061,216.54,92.4279 +670062,215.38,93.5577 +670063,214.21,94.7173 +670064,213.04,95.908 +670065,215.22,92.4817 +670066,214.04,93.5755 +670067,212.85,94.6981 +670068,211.66,95.8509 +670069,213.89,92.5363 +670070,212.69,93.5934 +670071,211.49,94.6786 +670072,210.28,95.793 +670073,212.57,92.5917 +670074,211.35,93.6116 +670075,210.13,94.6588 +670076,208.9,95.7341 +670077,211.24,92.6478 +670078,210.01,93.63 +670079,208.77,94.6386 +670080,207.52,95.6745 +670081,209.91,92.7046 +670082,208.66,93.6486 +670083,207.41,94.6181 +670084,206.15,95.614 +670085,208.58,92.7621 +670086,207.32,93.6674 +670087,206.05,94.5974 +670088,204.77,95.5528 +670089,207.25,92.8203 +670090,205.97,93.6863 +670091,204.69,94.5763 +670092,203.4,95.4908 +670093,205.92,92.8791 +670094,204.63,93.7054 +670095,203.33,94.5549 +670096,202.02,95.4282 +670097,204.59,92.9385 +670098,203.28,93.7247 +670099,201.97,94.5333 +670100,200.65,95.3648 +670101,203.26,92.9985 +670102,201.94,93.7441 +670103,200.61,94.5114 +670104,199.28,95.3009 +670105,201.92,93.0591 +670106,200.59,93.7636 +670107,199.25,94.4893 +670108,197.91,95.2363 +670109,200.59,93.1201 +670110,199.24,93.7833 +670111,197.89,94.4669 +670112,196.54,95.1712 +670113,199.25,93.1816 +670114,197.9,93.803 +670115,196.54,94.4443 +670116,195.18,95.1055 +670117,197.91,93.2436 +670118,196.55,93.8229 +670119,195.18,94.4214 +670120,193.81,95.0393 +670121,196.57,93.306 +670122,195.2,93.8429 +670123,193.82,94.3984 +670124,192.44,94.9727 +670125,195.24,93.3688 +670126,193.85,93.8629 +670127,192.47,94.3752 +670128,191.08,94.9056 +670129,193.89,93.432 +670130,192.51,93.8831 +670131,191.11,94.3518 +670132,189.72,94.8381 +670133,192.55,93.4955 +670134,191.16,93.9032 +670135,189.76,94.3282 +670136,188.36,94.7703 +670137,191.21,93.5592 +670138,189.81,93.9235 +670139,188.4,94.3044 +670140,187,94.7021 +670141,189.86,93.6233 +670142,188.46,93.9437 +670143,187.05,94.2805 +670144,185.64,94.6336 +670145,188.52,93.6875 +670146,187.11,93.964 +670147,185.69,94.2565 +670148,184.28,94.5648 +670149,187.17,93.752 +670150,185.76,93.9843 +670151,184.34,94.2323 +670152,182.92,94.4959 +670153,185.82,93.8166 +670154,184.41,94.0046 +670155,182.99,94.208 +670156,181.56,94.4267 +670157,184.48,93.8814 +670158,183.06,94.0249 +670159,181.63,94.1836 +670160,180.21,94.3573 +670161,183.13,93.9462 +670162,181.7,94.0452 +670163,180.28,94.1591 +670164,178.86,94.2879 +670165,181.77,94.0111 +670166,180.35,94.0655 +670167,178.93,94.1345 +670168,177.5,94.2183 +670169,180.42,94.0761 +670170,179,94.0857 +670171,177.58,94.1099 +670172,176.15,94.1487 +670173,179.07,94.141 +670174,177.65,94.1059 +670175,176.23,94.0851 +670176,174.8,94.079 +670177,177.71,94.206 +670178,176.29,94.1259 +670179,174.87,94.0604 +670180,173.45,94.0094 +670181,176.36,94.2708 +670182,174.94,94.146 +670183,173.52,94.0356 +670184,172.11,93.9398 +670185,175,94.3355 +670186,173.59,94.1659 +670187,172.17,94.0108 +670188,170.76,93.8703 +670189,173.64,94.4001 +670190,172.23,94.1857 +670191,170.82,93.9859 +670192,169.41,93.8009 +670193,172.28,94.4645 +670194,170.88,94.2055 +670195,169.47,93.9611 +670196,168.07,93.7316 +670197,170.92,94.5288 +670198,169.52,94.2251 +670199,168.13,93.9362 +670200,166.73,93.6625 +670201,169.56,94.5927 +670202,168.17,94.2445 +670203,166.78,93.9114 +670204,165.39,93.5936 +670205,168.2,94.6565 +670206,166.81,94.2639 +670207,165.43,93.8866 +670208,164.05,93.5249 +670209,166.83,94.7199 +670210,165.46,94.2831 +670211,164.08,93.8619 +670212,162.71,93.4566 +670213,165.47,94.7829 +670214,164.1,94.3021 +670215,162.73,93.8372 +670216,161.37,93.3885 +670217,164.1,94.8456 +670218,162.74,94.3209 +670219,161.39,93.8125 +670220,160.03,93.3208 +670221,162.73,94.9079 +670222,161.39,94.3395 +670223,160.04,93.788 +670224,158.69,93.2534 +670225,161.36,94.9697 +670226,160.03,94.358 +670227,158.69,93.7635 +670228,157.36,93.1865 +670229,159.99,95.0311 +670230,158.67,94.3762 +670231,157.35,93.7391 +670232,156.03,93.12 +670233,158.62,95.0919 +670234,157.31,94.3943 +670235,156,93.7149 +670236,154.69,93.0539 +670237,157.25,95.1522 +670238,155.95,94.412 +670239,154.66,93.6907 +670240,153.36,92.9884 +670241,155.88,95.212 +670242,154.59,94.4296 +670243,153.31,93.6667 +670244,152.03,92.9233 +670245,154.5,95.2711 +670246,153.24,94.4469 +670247,151.97,93.6428 +670248,150.7,92.8589 +670249,153.13,95.3296 +670250,151.88,94.4639 +670251,150.62,93.6191 +670252,149.37,92.795 +670253,151.75,95.3874 +670254,150.52,94.4807 +670255,149.28,93.5955 +670256,148.05,92.7317 +670257,150.37,95.4445 +670258,149.16,94.4971 +670259,147.94,93.5721 +670260,146.72,92.6691 +670261,148.99,95.5009 +670262,147.79,94.5133 +670263,146.59,93.5488 +670264,145.39,92.6071 +670265,147.61,95.5565 +670266,146.43,94.5292 +670267,145.25,93.5258 +670268,144.07,92.5459 +670269,146.23,95.6113 +670270,145.07,94.5448 +670271,143.91,93.5029 +670272,142.75,92.4854 +670273,144.85,95.6653 +670274,143.71,94.56 +670275,142.57,93.4803 +670276,141.42,92.4256 +670277,143.47,95.7184 +670278,142.35,94.5749 +670279,141.23,93.4578 +670280,140.1,92.3667 +670281,142.09,95.7707 +670282,140.99,94.5895 +670283,139.88,93.4356 +670284,138.78,92.3085 +670285,140.7,95.822 +670286,139.62,94.6037 +670287,138.54,93.4137 +670288,137.46,92.2512 +670289,139.32,95.8724 +670290,138.26,94.6175 +670291,137.2,93.392 +670292,136.14,92.1947 +670293,137.93,95.9218 +670294,136.9,94.631 +670295,135.86,93.3705 +670296,134.83,92.1392 +670297,136.54,95.9702 +670298,135.53,94.6441 +670299,134.52,93.3493 +670300,133.51,92.0845 +670301,135.16,96.0176 +670302,134.17,94.6568 +670303,133.18,93.3284 +670304,132.19,92.0308 +670305,133.77,96.0639 +670306,132.81,94.6691 +670307,131.84,93.3077 +670308,130.88,91.978 +670309,132.38,96.1091 +670310,131.44,94.681 +670311,130.5,93.2873 +670312,129.56,91.9263 +670313,130.99,96.1532 +670314,130.08,94.6925 +670315,129.16,93.2672 +670316,128.25,91.8755 +670317,129.6,96.1961 +670318,128.71,94.7035 +670319,127.83,93.2475 +670320,126.94,91.8258 +670321,128.21,96.2379 +670322,127.35,94.7142 +670323,126.49,93.228 +670324,125.62,91.7771 +670325,126.81,96.2785 +670326,125.98,94.7244 +670327,125.15,93.2089 +670328,124.31,91.7295 +670329,125.42,96.3179 +670330,124.62,94.7341 +670331,123.81,93.19 +670332,123,91.683 +670333,124.03,96.3561 +670334,123.25,94.7434 +670335,122.47,93.1715 +670336,121.69,91.6376 +670337,122.63,96.393 +670338,121.89,94.7522 +670339,121.14,93.1534 +670340,120.38,91.5933 +670341,121.24,96.4286 +670342,120.52,94.7606 +670343,119.8,93.1356 +670344,119.07,91.5502 +670345,119.84,96.4629 +670346,119.15,94.7685 +670347,118.46,93.1181 +670348,117.77,91.5082 +670349,118.44,96.4959 +670350,117.79,94.7759 +670351,117.12,93.101 +670352,116.46,91.4674 +670353,117.05,96.5275 +670354,116.42,94.7828 +670355,115.79,93.0843 +670356,115.15,91.4279 +670357,115.65,96.5578 +670358,115.05,94.7893 +670359,114.45,93.0679 +670360,113.84,91.3895 +670361,114.25,96.5866 +670362,113.69,94.7952 +670363,113.12,93.0519 +670364,112.54,91.3524 +670365,112.85,96.6141 +670366,112.32,94.8006 +670367,111.78,93.0363 +670368,111.23,91.3165 +670369,111.45,96.6401 +670370,110.95,94.8055 +670371,110.44,93.0211 +670372,109.93,91.2819 +670373,110.05,96.6647 +670374,109.58,94.8099 +670375,109.11,93.0063 +670376,108.62,91.2486 +670377,108.65,96.6879 +670378,108.22,94.8138 +670379,107.77,92.9918 +670380,107.32,91.2165 +670381,107.25,96.7095 +670382,106.85,94.8172 +670383,106.44,92.9778 +670384,106.02,91.1858 +670385,105.85,96.7297 +670386,105.48,94.82 +670387,105.1,92.9641 +670388,104.71,91.1564 +670389,104.45,96.7484 +670390,104.11,94.8223 +670391,103.77,92.9509 +670392,103.41,91.1283 +670393,103.05,96.7655 +670394,102.75,94.8241 +670395,102.43,92.9381 +670396,102.11,91.1015 +670397,101.65,96.7812 +670398,101.38,94.8253 +670399,101.1,92.9257 +670400,100.81,91.0761 +670401,100.25,96.7952 +670402,100.01,94.8259 +670403,99.762,92.9137 +670404,99.504,91.052 +670405,98.846,96.8078 +670406,98.642,94.8261 +670407,98.427,92.9021 +670408,98.202,91.0293 +670409,97.444,96.8188 +670410,97.273,94.8256 +670411,97.092,92.891 +670412,96.901,91.008 +670413,96.041,96.8282 +670414,95.905,94.8246 +670415,95.758,92.8803 +670416,95.6,90.98805 +670417,94.639,96.836 +670418,94.537,94.8231 +670419,94.423,92.87 +670420,94.298,90.96948 +670421,93.236,96.8422 +670422,93.169,94.821 +670423,93.088,92.8601 +670424,92.997,90.95229 +670425,91.834,96.8469 +670426,91.8,94.8184 +670427,91.754,92.8507 +670428,91.696,90.9365 +670429,90.431,96.8499 +670430,90.432,94.8151 +670431,90.42,92.8417 +670432,90.396,90.92211 +670433,89.028,96.8513 +670434,89.064,94.8113 +670435,89.085,92.8331 +670436,89.095,90.90912 +670437,87.626,96.8512 +670438,87.695,94.807 +670439,87.751,92.825 +670440,87.794,90.89753 +670441,86.223,96.8494 +670442,86.327,94.8021 +670443,86.416,92.8173 +670444,86.493,90.88734 +670445,84.82,96.846 +670446,84.959,94.7966 +670447,85.082,92.8101 +670448,85.193,90.87857 +670449,83.418,96.8409 +670450,83.591,94.7906 +670451,83.748,92.8033 +670452,83.892,90.8712 +670453,82.016,96.8343 +670454,82.222,94.7839 +670455,82.413,92.7969 +670456,82.591,90.86523 +670457,80.613,96.826 +670458,80.854,94.7768 +670459,81.079,92.791 +670460,81.29,90.86068 +670461,79.211,96.8162 +670462,79.486,94.769 +670463,79.745,92.7855 +670464,79.989,90.85753 +670465,77.81,96.8047 +670466,78.118,94.7607 +670467,78.41,92.7804 +670468,78.688,90.85578 +670469,76.408,96.7916 +670470,76.75,94.7518 +670471,77.075,92.7758 +670472,77.386,90.85543 +670473,75.007,96.7769 +670474,75.383,94.7424 +670475,75.741,92.7716 +670476,76.084,90.85648 +670477,73.606,96.7606 +670478,74.015,94.7324 +670479,74.406,92.7679 +670480,74.783,90.85892 +670481,72.205,96.7426 +670482,72.647,94.7218 +670483,73.071,92.7645 +670484,73.48,90.86275 +670485,70.805,96.7231 +670486,71.28,94.7107 +670487,71.737,92.7617 +670488,72.178,90.86796 +670489,69.405,96.702 +670490,69.913,94.6991 +670491,70.402,92.7592 +670492,70.875,90.87455 +670493,68.006,96.6794 +670494,68.546,94.6868 +670495,69.067,92.7572 +670496,69.572,90.8825 +670497,66.607,96.6551 +670498,67.179,94.6741 +670499,67.731,92.7555 +670500,68.268,90.89181 +670501,65.208,96.6294 +670502,65.812,94.6607 +670503,66.396,92.7543 +670504,66.964,90.90248 +670505,63.81,96.602 +670506,64.445,94.6469 +670507,65.061,92.7536 +670508,65.66,90.91449 +670509,62.413,96.5731 +670510,63.079,94.6325 +670511,63.725,92.7532 +670512,64.355,90.92783 +670513,61.016,96.5427 +670514,61.712,94.6175 +670515,62.389,92.7533 +670516,63.05,90.9425 +670517,59.619,96.5108 +670518,60.346,94.6021 +670519,61.054,92.7537 +670520,61.744,90.95847 +670521,58.223,96.4774 +670522,58.98,94.5861 +670523,59.718,92.7546 +670524,60.438,90.97575 +670525,56.828,96.4425 +670526,57.615,94.5696 +670527,58.381,92.7558 +670528,59.131,90.99432 +670529,55.434,96.4061 +670530,56.249,94.5525 +670531,57.045,92.7575 +670532,57.824,91.0142 +670533,54.04,96.3683 +670534,54.884,94.535 +670535,55.708,92.7595 +670536,56.516,91.0353 +670537,52.646,96.3291 +670538,53.519,94.5169 +670539,54.372,92.7619 +670540,55.207,91.0576 +670541,51.254,96.2884 +670542,52.154,94.4983 +670543,53.035,92.7647 +670544,53.898,91.0812 +670545,49.862,96.2463 +670546,50.79,94.4793 +670547,51.697,92.7679 +670548,52.588,91.106 +670549,48.471,96.2029 +670550,49.426,94.4597 +670551,50.36,92.7714 +670552,51.277,91.132 +670553,47.081,96.1581 +670554,48.062,94.4397 +670555,49.022,92.7753 +670556,49.966,91.1592 +670557,45.692,96.1119 +670558,46.698,94.4192 +670559,47.684,92.7796 +670560,48.654,91.1875 +670561,44.303,96.0645 +670562,45.335,94.3982 +670563,46.346,92.7842 +670564,47.341,91.217 +670565,42.915,96.0157 +670566,43.972,94.3768 +670567,45.008,92.7892 +670568,46.027,91.2476 +670569,41.529,95.9657 +670570,42.609,94.3549 +670571,43.669,92.7944 +670572,44.713,91.2794 +670573,40.143,95.9144 +670574,41.246,94.3325 +670575,42.33,92.8001 +670576,43.398,91.3122 +670577,38.758,95.8619 +670578,39.884,94.3097 +670579,40.991,92.806 +670580,42.082,91.3461 +670581,37.374,95.8082 +670582,38.522,94.2865 +670583,39.652,92.8123 +670584,40.765,91.3811 +670585,35.991,95.7533 +670586,37.161,94.2628 +670587,38.312,92.8188 +670588,39.447,91.417 +670589,34.608,95.6973 +670590,35.8,94.2388 +670591,36.972,92.8257 +670592,38.128,91.454 +670593,33.227,95.6401 +670594,34.439,94.2143 +670595,35.632,92.8329 +670596,36.809,91.492 +670597,31.847,95.5818 +670598,33.078,94.1894 +670599,34.291,92.8403 +670600,35.488,91.5309 +670601,30.468,95.5225 +670602,31.718,94.1641 +670603,32.95,92.8481 +670604,34.167,91.5708 +670605,29.09,95.4621 +670606,30.358,94.1385 +670607,31.609,92.856 +670608,32.844,91.6116 +670609,27.713,95.4007 +670610,28.999,94.1124 +670611,30.268,92.8643 +670612,31.521,91.6533 +670613,26.336,95.3384 +670614,27.64,94.086 +670615,28.926,92.8728 +670616,30.196,91.6958 +670617,24.962,95.275 +670618,26.281,94.0593 +670619,27.584,92.8816 +670620,28.871,91.7392 +670621,23.588,95.2108 +670622,24.923,94.0321 +670623,26.241,92.8906 +670624,27.544,91.7835 +670625,22.215,95.1456 +670626,23.565,94.0047 +670627,24.898,92.8998 +670628,26.217,91.8285 +670629,20.843,95.0796 +670630,22.207,93.9769 +670631,23.555,92.9092 +670632,24.888,91.8742 +670633,19.473,95.0127 +670634,20.85,93.9488 +670635,22.212,92.9189 +670636,23.559,91.9207 +670637,18.103,94.9451 +670638,19.493,93.9204 +670639,20.868,92.9287 +670640,22.228,91.9679 +670641,16.735,94.8766 +670642,18.137,93.8917 +670643,19.524,92.9387 +670644,20.896,92.0158 +670645,15.368,94.8075 +670646,16.781,93.8627 +670647,18.179,92.9489 +670648,19.564,92.0644 +670649,14.002,94.7376 +670650,15.425,93.8335 +670651,16.834,92.9593 +670652,18.23,92.1136 +670653,12.637,94.667 +670654,14.07,93.8039 +670655,15.489,92.9699 +670656,16.895,92.1633 +670657,11.274,94.5958 +670658,12.715,93.7741 +670659,14.143,92.9805 +670660,15.558,92.2137 +670661,9.9111,94.524 +670662,11.361,93.7441 +670663,12.797,92.9914 +670664,14.221,92.2645 +670665,8.5499,94.4516 +670666,10.007,93.7138 +670667,11.451,93.0023 +670668,12.883,92.3159 +670669,7.1899,94.3786 +670670,8.6532,93.6833 +670671,10.104,93.0134 +670672,11.543,92.3678 +670673,5.8311,94.3052 +670674,7.3001,93.6526 +670675,8.7572,93.0246 +670676,10.202,92.4201 +670677,4.4735,94.2313 +670678,5.9473,93.6217 +670679,7.4098,93.0359 +670680,8.8603,92.4729 +670681,3.1171,94.1569 +670682,4.595,93.5906 +670683,6.0619,93.0472 +670684,7.5171,92.526 +670685,1.7619,94.0821 +670686,3.2432,93.5593 +670687,4.7137,93.0587 +670688,6.1728,92.5795 +670689,0.40791,94.0069 +670690,1.8917,93.5278 +670691,3.3651,93.0702 +670692,4.8274,92.6333 +670693,359.06,93.9314 +670694,0.54066,93.4962 +670695,2.0161,93.0818 +670696,3.4807,92.6874 +670697,357.7,93.8556 +670698,359.19,93.4644 +670699,0.66678,93.0934 +670700,2.1329,92.7418 +670701,356.35,93.7796 +670702,357.84,93.4325 +670703,359.32,93.105 +670704,0.78382,92.7964 +670705,355,93.7032 +670706,356.49,93.4005 +670707,357.97,93.1167 +670708,359.43,92.8512 +670709,353.66,93.6267 +670710,355.14,93.3684 +670711,356.62,93.1284 +670712,358.08,92.9061 +670713,352.31,93.55 +670714,353.79,93.3361 +670715,355.27,93.1401 +670716,356.73,92.9612 +670717,350.96,93.4732 +670718,352.44,93.3038 +670719,353.91,93.1518 +670720,355.38,93.0165 +670721,349.62,93.3963 +670722,351.1,93.2714 +670723,352.56,93.1634 +670724,354.02,93.0717 +670725,348.28,93.3193 +670726,349.75,93.2389 +670727,351.21,93.175 +670728,352.66,93.1271 +670729,346.94,93.2423 +670730,348.4,93.2064 +670731,349.86,93.1866 +670732,351.31,93.1824 +670733,345.59,93.1652 +670734,347.05,93.1738 +670735,348.51,93.1981 +670736,349.95,93.2377 +670737,344.26,93.0883 +670738,345.71,93.1412 +670739,347.15,93.2096 +670740,348.59,93.2929 +670741,342.92,93.0113 +670742,344.36,93.1085 +670743,345.8,93.221 +670744,347.23,93.3481 +670745,341.58,92.9345 +670746,343.02,93.0759 +670747,344.44,93.2323 +670748,345.87,93.4031 +670749,340.24,92.8578 +670750,341.67,93.0433 +670751,343.09,93.2435 +670752,344.5,93.4579 +670753,338.91,92.7813 +670754,340.33,93.0106 +670755,341.74,93.2546 +670756,343.14,93.5126 +670757,337.58,92.705 +670758,338.98,92.978 +670759,340.38,93.2656 +670760,341.77,93.5671 +670761,336.24,92.629 +670762,337.64,92.9454 +670763,339.03,93.2764 +670764,340.41,93.6212 +670765,334.91,92.5532 +670766,336.29,92.9129 +670767,337.67,93.2871 +670768,339.04,93.6751 +670769,333.58,92.4777 +670770,334.95,92.8804 +670771,336.31,93.2977 +670772,337.67,93.7287 +670773,332.25,92.4026 +670774,333.61,92.848 +670775,334.96,93.308 +670776,336.3,93.7819 +670777,330.93,92.3278 +670778,332.27,92.8157 +670779,333.6,93.3183 +670780,334.93,93.8348 +670781,329.6,92.2534 +670782,330.92,92.7834 +670783,332.24,93.3283 +670784,333.56,93.8872 +670785,328.27,92.1794 +670786,329.58,92.7513 +670787,330.89,93.3381 +670788,332.18,93.9392 +670789,326.95,92.1059 +670790,328.24,92.7192 +670791,329.53,93.3477 +670792,330.81,93.9907 +670793,325.63,92.0329 +670794,326.9,92.6873 +670795,328.17,93.3571 +670796,329.43,94.0416 +670797,324.3,91.9605 +670798,325.56,92.6555 +670799,326.81,93.3663 +670800,328.06,94.0921 +670801,322.98,91.8885 +670802,324.22,92.6239 +670803,325.45,93.3753 +670804,326.68,94.1419 +670805,321.66,91.8172 +670806,322.88,92.5924 +670807,324.09,93.384 +670808,325.3,94.1911 +670809,320.34,91.7465 +670810,321.54,92.5611 +670811,322.73,93.3924 +670812,323.92,94.2397 +670813,319.03,91.6764 +670814,320.2,92.5299 +670815,321.37,93.4006 +670816,322.54,94.2877 +670817,317.71,91.607 +670818,318.86,92.4989 +670819,320.01,93.4084 +670820,321.16,94.3349 +670821,316.39,91.5383 +670822,317.53,92.4682 +670823,318.65,93.4161 +670824,319.77,94.3814 +670825,315.08,91.4703 +670826,316.19,92.4376 +670827,317.29,93.4234 +670828,318.39,94.4271 +670829,313.76,91.403 +670830,314.85,92.4072 +670831,315.93,93.4304 +670832,317.01,94.4721 +670833,312.45,91.3366 +670834,313.51,92.377 +670835,314.57,93.437 +670836,315.62,94.5162 +670837,311.14,91.271 +670838,312.18,92.3471 +670839,313.21,93.4434 +670840,314.23,94.5595 +670841,309.82,91.2062 +670842,310.84,92.3174 +670843,311.85,93.4494 +670844,312.85,94.6019 +670845,308.51,91.1422 +670846,309.5,92.288 +670847,310.49,93.4551 +670848,311.46,94.6434 +670849,307.2,91.0792 +670850,308.17,92.2588 +670851,309.12,93.4604 +670852,310.07,94.6839 +670853,305.89,91.017 +670854,306.83,92.2299 +670855,307.76,93.4654 +670856,308.68,94.7235 +670857,304.59,90.95579 +670858,305.5,92.2013 +670859,306.4,93.47 +670860,307.29,94.7621 +670861,303.28,90.89553 +670862,304.16,92.1729 +670863,305.04,93.4742 +670864,305.9,94.7997 +670865,301.97,90.83625 +670866,302.83,92.1448 +670867,303.67,93.478 +670868,304.51,94.8363 +670869,300.67,90.77798 +670870,301.49,92.117 +670871,302.31,93.4815 +670872,303.11,94.8718 +670873,299.36,90.72073 +670874,300.16,92.0896 +670875,300.95,93.4845 +670876,301.72,94.9062 +670877,298.06,90.66453 +670878,298.83,92.0624 +670879,299.58,93.4871 +670880,300.33,94.9394 +670881,296.75,90.60939 +670882,297.49,92.0356 +670883,298.22,93.4893 +670884,298.93,94.9716 +670885,295.45,90.55535 +670886,296.16,92.0091 +670887,296.85,93.4911 +670888,297.54,95.0026 +670889,294.15,90.50241 +670890,294.82,91.9829 +670891,295.49,93.4924 +670892,296.14,95.0324 +670893,292.84,90.45059 +670894,293.49,91.957 +670895,294.13,93.4933 +670896,294.74,95.0609 +670897,291.54,90.39992 +670898,292.16,91.9315 +670899,292.76,93.4938 +670900,293.35,95.0883 +670901,290.24,90.35041 +670902,290.83,91.9064 +670903,291.4,93.4938 +670904,291.95,95.1144 +670905,288.94,90.30208 +670906,289.49,91.8816 +670907,290.03,93.4934 +670908,290.55,95.1392 +670909,287.64,90.25495 +670910,288.16,91.8572 +670911,288.67,93.4925 +670912,289.15,95.1628 +670913,286.34,90.20903 +670914,286.83,91.8332 +670915,287.3,93.4911 +670916,287.75,95.185 +670917,285.04,90.16434 +670918,285.5,91.8095 +670919,285.94,93.4892 +670920,286.36,95.2059 +670921,283.74,90.12088 +670922,284.17,91.7862 +670923,284.57,93.4869 +670924,284.96,95.2255 +670925,282.45,90.078686 +670926,282.83,91.7633 +670927,283.2,93.484 +670928,283.56,95.2436 +670929,281.15,90.037759 +670930,281.5,91.7408 +670931,281.84,93.4807 +670932,282.16,95.2604 +670933,279.85,89.9981129 +670934,280.17,91.7187 +670935,280.47,93.4769 +670936,280.75,95.2758 +670937,278.55,89.959761 +670938,278.84,91.697 +670939,279.11,93.4726 +670940,279.35,95.2898 +670941,277.26,89.922713 +670942,277.51,91.6757 +670943,277.74,93.4677 +670944,277.95,95.3024 +670945,275.96,89.88698 +670946,276.18,91.6548 +670947,276.38,93.4624 +670948,276.55,95.3135 +670949,274.66,89.85258 +670950,274.85,91.6344 +670951,275.01,93.4565 +670952,275.15,95.3232 +670953,273.37,89.8195 +670954,273.52,91.6143 +670955,273.64,93.4502 +670956,273.75,95.3314 +670957,272.07,89.78778 +670958,272.19,91.5946 +670959,272.28,93.4433 +670960,272.35,95.3381 +670961,270.78,89.7574 +670962,270.86,91.5754 +670963,270.91,93.4359 +670964,270.94,95.3433 +670965,269.48,89.72838 +670966,269.52,91.5566 +670967,269.55,93.4279 +670968,269.54,95.3471 +670969,268.19,89.70073 +670970,268.19,91.5383 +670971,268.18,93.4194 +670972,268.14,95.3493 +670973,266.89,89.67445 +670974,266.86,91.5203 +670975,266.81,93.4104 +670976,266.74,95.35 +670977,265.59,89.64954 +670978,265.53,91.5028 +670979,265.45,93.4009 +670980,265.34,95.3491 +670981,264.3,89.62602 +670982,264.2,91.4857 +670983,264.08,93.3908 +670984,263.93,95.3468 +670985,263,89.60388 +670986,262.87,91.4691 +670987,262.72,93.3802 +670988,262.53,95.3429 +670989,261.71,89.58312 +670990,261.54,91.4529 +670991,261.35,93.3691 +670992,261.13,95.3374 +670993,260.41,89.56376 +670994,260.21,91.4371 +670995,259.99,93.3574 +670996,259.73,95.3304 +670997,259.12,89.54578 +670998,258.88,91.4218 +670999,258.62,93.3451 +671000,258.33,95.3219 +671001,257.82,89.5292 +671002,257.55,91.4069 +671003,257.25,93.3324 +671004,256.93,95.3118 +671005,256.53,89.51401 +671006,256.22,91.3925 +671007,255.89,93.3191 +671008,255.52,95.3001 +671009,255.23,89.50022 +671010,254.89,91.3785 +671011,254.52,93.3052 +671012,254.12,95.2869 +671013,253.93,89.48781 +671014,253.56,91.3649 +671015,253.16,93.2908 +671016,252.72,95.2721 +671017,252.64,89.47679 +671018,252.23,91.3518 +671019,251.79,93.2759 +671020,251.32,95.2558 +671021,251.34,89.46716 +671022,250.9,91.3391 +671023,250.43,93.2604 +671024,249.92,95.2379 +671025,250.04,89.45891 +671026,249.57,91.3268 +671027,249.06,93.2444 +671028,248.52,95.2185 +671029,248.75,89.45204 +671030,248.24,91.315 +671031,247.7,93.2278 +671032,247.13,95.1974 +671033,247.45,89.44654 +671034,246.91,91.3036 +671035,246.33,93.2107 +671036,245.73,95.1749 +671037,246.15,89.44242 +671038,245.58,91.2926 +671039,244.97,93.1931 +671040,244.33,95.1508 +671041,244.85,89.43965 +671042,244.24,91.2821 +671043,243.61,93.1749 +671044,242.93,95.1252 +671045,243.55,89.43824 +671046,242.91,91.272 +671047,242.24,93.1563 +671048,241.53,95.098 +671049,242.26,89.43819 +671050,241.58,91.2623 +671051,240.88,93.137 +671052,240.14,95.0693 +671053,240.96,89.43947 +671054,240.25,91.2531 +671055,239.51,93.1173 +671056,238.74,95.0391 +671057,239.66,89.44208 +671058,238.92,91.2443 +671059,238.15,93.097 +671060,237.35,95.0074 +671061,238.35,89.44601 +671062,237.59,91.2359 +671063,236.79,93.0763 +671064,235.95,94.9742 +671065,237.05,89.45126 +671066,236.26,91.2279 +671067,235.43,93.055 +671068,234.56,94.9395 +671069,235.75,89.45781 +671070,234.92,91.2203 +671071,234.06,93.0331 +671072,233.17,94.9034 +671073,234.45,89.46565 +671074,233.59,91.2131 +671075,232.7,93.0108 +671076,231.77,94.8657 +671077,233.15,89.47477 +671078,232.26,91.2064 +671079,231.34,92.988 +671080,230.38,94.8266 +671081,231.84,89.48516 +671082,230.93,91.2 +671083,229.98,92.9647 +671084,228.99,94.7861 +671085,230.54,89.4968 +671086,229.59,91.194 +671087,228.62,92.9409 +671088,227.6,94.7442 +671089,229.23,89.50967 +671090,228.26,91.1884 +671091,227.25,92.9166 +671092,226.21,94.7008 +671093,227.93,89.52377 +671094,226.93,91.1832 +671095,225.89,92.8918 +671096,224.82,94.6561 +671097,226.62,89.53908 +671098,225.59,91.1784 +671099,224.53,92.8665 +671100,223.43,94.61 +671101,225.31,89.55559 +671102,224.26,91.174 +671103,223.17,92.8408 +671104,222.05,94.5625 +671105,224.01,89.57327 +671106,222.92,91.1699 +671107,221.81,92.8146 +671108,220.66,94.5137 +671109,222.7,89.59211 +671110,221.59,91.1662 +671111,220.45,92.7879 +671112,219.28,94.4635 +671113,221.39,89.6121 +671114,220.26,91.1628 +671115,219.09,92.7608 +671116,217.89,94.4121 +671117,220.08,89.63321 +671118,218.92,91.1598 +671119,217.73,92.7332 +671120,216.51,94.3594 +671121,218.77,89.65543 +671122,217.59,91.1572 +671123,216.38,92.7052 +671124,215.13,94.3054 +671125,217.45,89.67873 +671126,216.25,91.1549 +671127,215.02,92.6768 +671128,213.75,94.2502 +671129,216.14,89.70311 +671130,214.92,91.1529 +671131,213.66,92.6479 +671132,212.37,94.1938 +671133,214.83,89.72853 +671134,213.58,91.1512 +671135,212.3,92.6186 +671136,210.99,94.1361 +671137,213.51,89.75498 +671138,212.24,91.1499 +671139,210.94,92.5889 +671140,209.61,94.0773 +671141,212.2,89.78243 +671142,210.91,91.1489 +671143,209.59,92.5588 +671144,208.23,94.0174 +671145,210.88,89.81087 +671146,209.57,91.1481 +671147,208.23,92.5283 +671148,206.86,93.9564 +671149,209.56,89.84027 +671150,208.23,91.1477 +671151,206.87,92.4974 +671152,205.48,93.8942 +671153,208.24,89.87061 +671154,206.9,91.1476 +671155,205.52,92.4662 +671156,204.11,93.831 +671157,206.92,89.901873 +671158,205.56,91.1477 +671159,204.16,92.4345 +671160,202.74,93.7667 +671161,205.6,89.934025 +671162,204.22,91.1481 +671163,202.81,92.4025 +671164,201.36,93.7014 +671165,204.28,89.967046 +671166,202.88,91.1488 +671167,201.45,92.3702 +671168,199.99,93.6352 +671169,202.96,90.00091141 +671170,201.54,91.1498 +671171,200.1,92.3375 +671172,198.63,93.5679 +671173,201.63,90.035597 +671174,200.2,91.151 +671175,198.75,92.3044 +671176,197.26,93.4998 +671177,200.31,90.071078 +671178,198.86,91.1524 +671179,197.39,92.271 +671180,195.89,93.4307 +671181,198.98,90.10733 +671182,197.52,91.154 +671183,196.04,92.2374 +671184,194.53,93.3608 +671185,197.65,90.14432 +671186,196.18,91.1559 +671187,194.69,92.2034 +671188,193.16,93.29 +671189,196.32,90.18203 +671190,194.84,91.158 +671191,193.34,92.1691 +671192,191.8,93.2184 +671193,194.99,90.22043 +671194,193.5,91.1603 +671195,191.98,92.1345 +671196,190.44,93.146 +671197,193.66,90.25949 +671198,192.16,91.1628 +671199,190.63,92.0996 +671200,189.08,93.0728 +671201,192.33,90.29919 +671202,190.82,91.1655 +671203,189.28,92.0645 +671204,187.72,92.999 +671205,191,90.3395 +671206,189.48,91.1683 +671207,187.93,92.0291 +671208,186.36,92.9244 +671209,189.66,90.38038 +671210,188.14,91.1714 +671211,186.58,91.9935 +671212,185,92.8492 +671213,188.33,90.42182 +671214,186.79,91.1745 +671215,185.23,91.9576 +671216,183.65,92.7734 +671217,186.99,90.46378 +671218,185.45,91.1779 +671219,183.88,91.9215 +671220,182.29,92.6969 +671221,185.65,90.50623 +671222,184.11,91.1813 +671223,182.54,91.8851 +671224,180.94,92.6199 +671225,184.31,90.54915 +671226,182.76,91.1849 +671227,181.19,91.8486 +671228,179.59,92.5424 +671229,182.97,90.5925 +671230,181.42,91.1886 +671231,179.84,91.8119 +671232,178.24,92.4644 +671233,181.63,90.63626 +671234,180.07,91.1924 +671235,178.49,91.775 +671236,176.89,92.3859 +671237,180.29,90.68039 +671238,178.73,91.1963 +671239,177.15,91.7379 +671240,175.54,92.3069 +671241,178.94,90.72487 +671242,177.38,91.2003 +671243,175.8,91.7006 +671244,174.2,92.2276 +671245,177.6,90.76966 +671246,176.04,91.2044 +671247,174.45,91.6632 +671248,172.85,92.1479 +671249,176.25,90.81474 +671250,174.69,91.2085 +671251,173.11,91.6257 +671252,171.51,92.0679 +671253,174.9,90.86008 +671254,173.34,91.2127 +671255,171.76,91.588 +671256,170.16,91.9876 +671257,173.56,90.90563 +671258,172,91.2169 +671259,170.42,91.5502 +671260,168.82,91.907 +671261,172.2,90.95138 +671262,170.65,91.2212 +671263,169.08,91.5123 +671264,167.48,91.8262 +671265,170.85,90.99729 +671266,169.3,91.2254 +671267,167.73,91.4743 +671268,166.15,91.7452 +671269,169.5,91.0433 +671270,167.95,91.2297 +671271,166.39,91.4362 +671272,164.81,91.664 +671273,168.15,91.0895 +671274,166.61,91.234 +671275,165.05,91.398 +671276,163.47,91.5827 +671277,166.79,91.1357 +671278,165.26,91.2383 +671279,163.71,91.3598 +671280,162.14,91.5013 +671281,165.43,91.1819 +671282,163.91,91.2426 +671283,162.36,91.3215 +671284,160.8,91.4199 +671285,164.08,91.2282 +671286,162.56,91.2468 +671287,161.02,91.2832 +671288,159.47,91.3384 +671289,162.72,91.2744 +671290,161.21,91.251 +671291,159.68,91.2448 +671292,158.14,91.2569 +671293,161.36,91.3206 +671294,159.86,91.2552 +671295,158.34,91.2065 +671296,156.81,91.1755 +671297,160,91.3666 +671298,158.51,91.2593 +671299,157,91.1681 +671300,155.48,91.0941 +671301,158.63,91.4126 +671302,157.16,91.2633 +671303,155.66,91.1297 +671304,154.15,91.0129 +671305,157.27,91.4584 +671306,155.8,91.2672 +671307,154.32,91.0913 +671308,152.83,90.93179 +671309,155.91,91.504 +671310,154.45,91.2711 +671311,152.99,91.053 +671312,151.5,90.85086 +671313,154.54,91.5494 +671314,153.1,91.2748 +671315,151.65,91.0146 +671316,150.18,90.77013 +671317,153.17,91.5946 +671318,151.75,91.2784 +671319,150.31,90.97638 +671320,148.86,90.68965 +671321,151.8,91.6395 +671322,150.39,91.2819 +671323,148.97,90.93817 +671324,147.54,90.60944 +671325,150.43,91.684 +671326,149.04,91.2852 +671327,147.64,90.90003 +671328,146.22,90.52953 +671329,149.06,91.7283 +671330,147.69,91.2885 +671331,146.3,90.86197 +671332,144.9,90.44996 +671333,147.69,91.7721 +671334,146.33,91.2915 +671335,144.96,90.82399 +671336,143.58,90.37075 +671337,146.32,91.8156 +671338,144.98,91.2944 +671339,143.63,90.78612 +671340,142.26,90.29195 +671341,144.94,91.8586 +671342,143.63,91.2971 +671343,142.29,90.74836 +671344,140.95,90.21358 +671345,143.57,91.9012 +671346,142.27,91.2996 +671347,140.96,90.71071 +671348,139.63,90.13567 +671349,142.19,91.9433 +671350,140.91,91.3019 +671351,139.62,90.6732 +671352,138.32,90.05825 +671353,140.82,91.9848 +671354,139.56,91.304 +671355,138.29,90.63583 +671356,137.01,89.981355 +671357,139.44,92.0258 +671358,138.2,91.3059 +671359,136.96,90.59861 +671360,135.7,89.905012 +671361,138.06,92.0663 +671362,136.85,91.3076 +671363,135.62,90.56156 +671364,134.39,89.82925 +671365,136.68,92.1061 +671366,135.49,91.309 +671367,134.29,90.52467 +671368,133.08,89.7541 +671369,135.3,92.1452 +671370,134.13,91.3102 +671371,132.96,90.48797 +671372,131.77,89.67959 +671373,133.91,92.1837 +671374,132.78,91.3112 +671375,131.63,90.45145 +671376,130.46,89.60575 +671377,132.53,92.2215 +671378,131.42,91.3118 +671379,130.29,90.41514 +671380,129.16,89.53261 +671381,131.15,92.2586 +671382,130.06,91.3122 +671383,128.96,90.37903 +671384,127.85,89.46019 +671385,129.76,92.2949 +671386,128.7,91.3123 +671387,127.63,90.34315 +671388,126.55,89.38852 +671389,128.38,92.3305 +671390,127.35,91.3121 +671391,126.3,90.30749 +671392,125.24,89.31762 +671393,126.99,92.3652 +671394,125.99,91.3116 +671395,124.97,90.27207 +671396,123.94,89.24753 +671397,125.6,92.3991 +671398,124.63,91.3109 +671399,123.64,90.2369 +671400,122.64,89.17827 +671401,124.21,92.4322 +671402,123.27,91.3097 +671403,122.31,90.20198 +671404,121.34,89.10987 +671405,122.82,92.4643 +671406,121.91,91.3083 +671407,120.98,90.16732 +671408,120.04,89.04234 +671409,121.43,92.4956 +671410,120.55,91.3065 +671411,119.65,90.13294 +671412,118.74,88.9757 +671413,120.04,92.5259 +671414,119.19,91.3044 +671415,118.32,90.098836 +671416,117.44,88.91 +671417,118.65,92.5552 +671418,117.83,91.3019 +671419,116.99,90.065019 +671420,116.14,88.8453 +671421,117.26,92.5836 +671422,116.47,91.2991 +671423,115.67,90.031498 +671424,114.84,88.7815 +671425,115.87,92.6109 +671426,115.11,91.2959 +671427,114.34,89.9982802 +671428,113.55,88.7187 +671429,114.47,92.6372 +671430,113.75,91.2923 +671431,113.01,89.965373 +671432,112.25,88.657 +671433,113.08,92.6624 +671434,112.39,91.2883 +671435,111.68,89.932784 +671436,110.96,88.5962 +671437,111.68,92.6866 +671438,111.03,91.284 +671439,110.36,89.900521 +671440,109.66,88.5366 +671441,110.29,92.7097 +671442,109.67,91.2792 +671443,109.03,89.86859 +671444,108.37,88.478 +671445,108.89,92.7316 +671446,108.31,91.2741 +671447,107.7,89.837 +671448,107.08,88.4205 +671449,107.5,92.7524 +671450,106.95,91.2685 +671451,106.37,89.80575 +671452,105.78,88.3641 +671453,106.1,92.772 +671454,105.58,91.2625 +671455,105.05,89.77485 +671456,104.49,88.3089 +671457,104.7,92.7905 +671458,104.22,91.2561 +671459,103.72,89.74432 +671460,103.2,88.2548 +671461,103.3,92.8077 +671462,102.86,91.2493 +671463,102.4,89.71414 +671464,101.91,88.2019 +671465,101.91,92.8237 +671466,101.5,91.242 +671467,101.07,89.68434 +671468,100.62,88.1501 +671469,100.51,92.8385 +671470,100.14,91.2343 +671471,99.744,89.65491 +671472,99.329,88.0996 +671473,99.108,92.852 +671474,98.776,91.2262 +671475,98.419,89.62586 +671476,98.039,88.0503 +671477,97.708,92.8643 +671478,97.414,91.2176 +671479,97.094,89.5972 +671480,96.75,88.0021 +671481,96.309,92.8752 +671482,96.052,91.2085 +671483,95.768,89.56893 +671484,95.461,87.9553 +671485,94.909,92.8848 +671486,94.69,91.199 +671487,94.443,89.54105 +671488,94.172,87.9097 +671489,93.509,92.8932 +671490,93.327,91.189 +671491,93.118,89.51357 +671492,92.884,87.8653 +671493,92.109,92.9001 +671494,91.965,91.1786 +671495,91.793,89.48649 +671496,91.595,87.8223 +671497,90.708,92.9058 +671498,90.603,91.1677 +671499,90.469,89.45983 +671500,90.307,87.7805 +671501,89.308,92.91 +671502,89.241,91.1563 +671503,89.144,89.43357 +671504,89.02,87.74 +671505,87.907,92.9129 +671506,87.879,91.1444 +671507,87.819,89.40773 +671508,87.732,87.7008 +671509,86.506,92.9144 +671510,86.516,91.132 +671511,86.495,89.3823 +671512,86.445,87.663 +671513,85.105,92.9145 +671514,85.154,91.1192 +671515,85.17,89.3573 +671516,85.158,87.6265 +671517,83.705,92.9132 +671518,83.792,91.1059 +671519,83.846,89.33272 +671520,83.87,87.5913 +671521,82.304,92.9105 +671522,82.43,91.092 +671523,82.522,89.30857 +671524,82.583,87.5574 +671525,80.903,92.9064 +671526,81.068,91.0777 +671527,81.197,89.28484 +671528,81.296,87.5249 +671529,79.503,92.9008 +671530,79.706,91.0629 +671531,79.873,89.26155 +671532,80.009,87.4937 +671533,78.102,92.8938 +671534,78.344,91.0476 +671535,78.549,89.23869 +671536,78.722,87.4639 +671537,76.702,92.8853 +671538,76.982,91.0318 +671539,77.225,89.21626 +671540,77.435,87.4355 +671541,75.302,92.8754 +671542,75.62,91.0154 +671543,75.9,89.19427 +671544,76.148,87.4084 +671545,73.902,92.864 +671546,74.258,90.99862 +671547,74.576,89.17272 +671548,74.86,87.3826 +671549,72.502,92.8512 +671550,72.897,90.98129 +671551,73.252,89.1516 +671552,73.573,87.3583 +671553,71.102,92.8369 +671554,71.535,90.96346 +671555,71.928,89.13092 +671556,72.285,87.3353 +671557,69.703,92.8211 +671558,70.174,90.94512 +671559,70.603,89.11068 +671560,70.997,87.3136 +671561,68.304,92.8039 +671562,68.812,90.92628 +671563,69.279,89.09088 +671564,69.709,87.2934 +671565,66.906,92.7851 +671566,67.451,90.90693 +671567,67.954,89.07152 +671568,68.421,87.2745 +671569,65.508,92.765 +671570,66.09,90.88708 +671571,66.63,89.05259 +671572,67.132,87.257 +671573,64.11,92.7433 +671574,64.73,90.86672 +671575,65.305,89.03411 +671576,65.843,87.2408 +671577,62.713,92.7202 +671578,63.369,90.84586 +671579,63.981,89.01606 +671580,64.554,87.226 +671581,61.317,92.6956 +671582,62.009,90.8245 +671583,62.656,88.9984 +671584,63.264,87.2125 +671585,59.92,92.6695 +671586,60.648,90.80264 +671587,61.331,88.9813 +671588,61.974,87.2004 +671589,58.525,92.642 +671590,59.288,90.78027 +671591,60.006,88.9645 +671592,60.684,87.1896 +671593,57.13,92.613 +671594,57.929,90.75741 +671595,58.681,88.9482 +671596,59.393,87.1802 +671597,55.735,92.5826 +671598,56.569,90.73405 +671599,57.355,88.9323 +671600,58.101,87.1721 +671601,54.342,92.5507 +671602,55.21,90.7102 +671603,56.03,88.9169 +671604,56.81,87.1654 +671605,52.949,92.5174 +671606,53.851,90.68586 +671607,54.704,88.9019 +671608,55.517,87.1599 +671609,51.556,92.4826 +671610,52.492,90.66103 +671611,53.379,88.8872 +671612,54.224,87.1558 +671613,50.164,92.4465 +671614,51.133,90.63572 +671615,52.053,88.8731 +671616,52.931,87.1529 +671617,48.774,92.4089 +671618,49.775,90.60992 +671619,50.726,88.8593 +671620,51.636,87.1514 +671621,47.383,92.3699 +671622,48.417,90.58364 +671623,49.4,88.8459 +671624,50.342,87.1511 +671625,45.994,92.3295 +671626,47.059,90.55689 +671627,48.074,88.833 +671628,49.046,87.1521 +671629,44.605,92.2877 +671630,45.701,90.52967 +671631,46.747,88.8204 +671632,47.75,87.1543 +671633,43.218,92.2446 +671634,44.344,90.50198 +671635,45.42,88.8083 +671636,46.453,87.1578 +671637,41.831,92.2001 +671638,42.987,90.47382 +671639,44.093,88.7966 +671640,45.156,87.1626 +671641,40.445,92.1543 +671642,41.631,90.44522 +671643,42.766,88.7852 +671644,43.857,87.1685 +671645,39.06,92.1071 +671646,40.275,90.41615 +671647,41.438,88.7743 +671648,42.558,87.1757 +671649,37.676,92.0586 +671650,38.919,90.38664 +671651,40.11,88.7637 +671652,41.258,87.184 +671653,36.293,92.0088 +671654,37.563,90.35669 +671655,38.782,88.7535 +671656,39.957,87.1935 +671657,34.911,91.9578 +671658,36.208,90.3263 +671659,37.454,88.7437 +671660,38.656,87.2042 +671661,33.53,91.9054 +671662,34.853,90.29548 +671663,36.125,88.7342 +671664,37.353,87.216 +671665,32.15,91.8519 +671666,33.499,90.26423 +671667,34.796,88.7251 +671668,36.05,87.2289 +671669,30.771,91.797 +671670,32.145,90.23256 +671671,33.467,88.7164 +671672,34.746,87.243 +671673,29.393,91.741 +671674,30.791,90.20048 +671675,32.137,88.708 +671676,33.441,87.2581 +671677,28.017,91.6838 +671678,29.438,90.168 +671679,30.808,88.7 +671680,32.134,87.2743 +671681,26.641,91.6255 +671682,28.085,90.13511 +671683,29.478,88.6923 +671684,30.827,87.2916 +671685,25.266,91.5659 +671686,26.732,90.10183 +671687,28.147,88.6849 +671688,29.519,87.3098 +671689,23.893,91.5053 +671690,25.38,90.068169 +671691,26.816,88.6779 +671692,28.21,87.3291 +671693,22.521,91.4435 +671694,24.028,90.034127 +671695,25.485,88.6711 +671696,26.9,87.3494 +671697,21.15,91.3807 +671698,22.677,89.99971342 +671699,24.154,88.6647 +671700,25.589,87.3707 +671701,19.78,91.3168 +671702,21.326,89.964937 +671703,22.822,88.6586 +671704,24.276,87.3929 +671705,18.412,91.2519 +671706,19.975,89.929805 +671707,21.49,88.6528 +671708,22.963,87.416 +671709,17.044,91.1859 +671710,18.625,89.89433 +671711,20.158,88.6473 +671712,21.649,87.44 +671713,15.678,91.119 +671714,17.276,89.85851 +671715,18.825,88.642 +671716,20.333,87.4649 +671717,14.313,91.0511 +671718,15.927,89.82236 +671719,17.492,88.637 +671720,19.016,87.4907 +671721,12.95,90.98234 +671722,14.578,89.78589 +671723,16.159,88.6323 +671724,17.698,87.5173 +671725,11.588,90.91262 +671726,13.23,89.7491 +671727,14.825,88.6279 +671728,16.379,87.5447 +671729,10.227,90.84202 +671730,11.882,89.71201 +671731,13.491,88.6237 +671732,15.059,87.5728 +671733,8.8671,90.77058 +671734,10.535,89.67463 +671735,12.156,88.6197 +671736,13.738,87.6018 +671737,7.5088,90.69831 +671738,9.1876,89.63695 +671739,10.821,88.616 +671740,12.415,87.6314 +671741,6.1518,90.62524 +671742,7.8412,89.599 +671743,9.4861,88.6125 +671744,11.092,87.6618 +671745,4.7962,90.55141 +671746,6.4952,89.56078 +671747,8.1504,88.6092 +671748,9.7668,87.6929 +671749,3.4419,90.47684 +671750,5.1498,89.52231 +671751,6.8144,88.6061 +671752,8.4406,87.7246 +671753,2.089,90.40157 +671754,3.8047,89.48358 +671755,5.478,88.6032 +671756,7.1132,87.757 +671757,0.73736,90.32561 +671758,2.4602,89.44461 +671759,4.1412,88.6005 +671760,5.7845,87.7899 +671761,359.39,90.24901 +671762,1.1161,89.40541 +671763,2.8039,88.598 +671764,4.4546,87.8234 +671765,358.04,90.17179 +671766,359.77,89.366 +671767,1.4663,88.5956 +671768,3.1235,87.8575 +671769,356.69,90.093985 +671770,358.43,89.32637 +671771,0.12833,88.5934 +671772,1.791,87.8921 +671773,355.34,90.015624 +671774,357.09,89.28654 +671775,358.79,88.5914 +671776,0.45733,87.9271 +671777,354,89.936739 +671778,355.74,89.24652 +671779,357.45,88.5895 +671780,359.12,87.9627 +671781,352.66,89.85736 +671782,354.4,89.20633 +671783,356.11,88.5877 +671784,357.79,87.9986 +671785,351.31,89.77752 +671786,353.06,89.16596 +671787,354.77,88.586 +671788,356.45,88.035 +671789,349.97,89.69725 +671790,351.72,89.12544 +671791,353.43,88.5845 +671792,355.11,88.0718 +671793,348.63,89.61659 +671794,350.38,89.08476 +671795,352.09,88.583 +671796,353.77,88.1089 +671797,347.3,89.53556 +671798,349.04,89.04395 +671799,350.75,88.5817 +671800,352.43,88.1463 +671801,345.96,89.4542 +671802,347.7,89.00301 +671803,349.41,88.5804 +671804,351.09,88.184 +671805,344.63,89.37254 +671806,346.36,88.962 +671807,348.07,88.5792 +671808,349.74,88.2219 +671809,343.29,89.29061 +671810,345.03,88.9208 +671811,346.73,88.578 +671812,348.4,88.2601 +671813,341.96,89.20844 +671814,343.69,88.8795 +671815,345.38,88.5769 +671816,347.05,88.2985 +671817,340.63,89.12608 +671818,342.35,88.8382 +671819,344.04,88.5759 +671820,345.7,88.3371 +671821,339.3,89.04355 +671822,341.01,88.7968 +671823,342.7,88.5749 +671824,344.35,88.3758 +671825,337.97,88.9609 +671826,339.68,88.7553 +671827,341.35,88.5739 +671828,343,88.4146 +671829,336.64,88.8781 +671830,338.34,88.7138 +671831,340.01,88.5729 +671832,341.65,88.4535 +671833,335.32,88.7953 +671834,337.01,88.6722 +671835,338.67,88.5719 +671836,340.3,88.4924 +671837,333.99,88.7124 +671838,335.67,88.6306 +671839,337.32,88.5709 +671840,338.94,88.5314 +671841,332.67,88.6295 +671842,334.34,88.589 +671843,335.98,88.5698 +671844,337.59,88.5703 +671845,331.35,88.5466 +671846,333,88.5473 +671847,334.63,88.5688 +671848,336.23,88.6092 +671849,330.03,88.4638 +671850,331.67,88.5057 +671851,333.28,88.5677 +671852,334.87,88.6481 +671853,328.71,88.3811 +671854,330.34,88.4641 +671855,331.94,88.5665 +671856,333.51,88.6868 +671857,327.39,88.2986 +671858,329,88.4225 +671859,330.59,88.5653 +671860,332.15,88.7254 +671861,326.08,88.2162 +671862,327.67,88.3809 +671863,329.24,88.564 +671864,330.79,88.7638 +671865,324.76,88.1339 +671866,326.34,88.3394 +671867,327.9,88.5626 +671868,329.43,88.8021 +671869,323.45,88.0519 +671870,325.01,88.2979 +671871,326.55,88.5612 +671872,328.06,88.8401 +671873,322.13,87.9702 +671874,323.68,88.2565 +671875,325.2,88.5596 +671876,326.7,88.8779 +671877,320.82,87.8887 +671878,322.35,88.2152 +671879,323.85,88.5579 +671880,325.33,88.9154 +671881,319.51,87.8076 +671882,321.02,88.1739 +671883,322.5,88.5561 +671884,323.96,88.9525 +671885,318.2,87.7268 +671886,319.69,88.1328 +671887,321.15,88.5542 +671888,322.59,88.9894 +671889,316.9,87.6463 +671890,318.36,88.0917 +671891,319.8,88.5521 +671892,321.22,89.02585 +671893,315.59,87.5663 +671894,317.03,88.0508 +671895,318.45,88.5499 +671896,319.85,89.06193 +671897,314.28,87.4868 +671898,315.7,88.01 +671899,317.1,88.5475 +671900,318.48,89.09758 +671901,312.98,87.4077 +671902,314.38,87.9694 +671903,315.75,88.5449 +671904,317.11,89.13277 +671905,311.68,87.3291 +671906,313.05,87.9289 +671907,314.4,88.5422 +671908,315.73,89.16748 +671909,310.38,87.251 +671910,311.72,87.8885 +671911,313.05,88.5392 +671912,314.36,89.20167 +671913,309.07,87.1735 +671914,310.4,87.8483 +671915,311.7,88.5361 +671916,312.98,89.23533 +671917,307.77,87.0966 +671918,309.07,87.8083 +671919,310.35,88.5328 +671920,311.6,89.26842 +671921,306.48,87.0203 +671922,307.74,87.7685 +671923,308.99,88.5292 +671924,310.22,89.30091 +671925,305.18,86.9446 +671926,306.42,87.7288 +671927,307.64,88.5254 +671928,308.84,89.33278 +671929,303.88,86.8696 +671930,305.09,87.6894 +671931,306.29,88.5214 +671932,307.46,89.364 +671933,302.58,86.7953 +671934,303.77,87.6502 +671935,304.93,88.5171 +671936,306.08,89.39454 +671937,301.29,86.7217 +671938,302.44,87.6112 +671939,303.58,88.5126 +671940,304.7,89.42438 +671941,300,86.6489 +671942,301.12,87.5724 +671943,302.23,88.5078 +671944,303.31,89.4535 +671945,298.7,86.5769 +671946,299.8,87.5339 +671947,300.87,88.5027 +671948,301.93,89.48185 +671949,297.41,86.5057 +671950,298.47,87.4956 +671951,299.52,88.4974 +671952,300.54,89.50943 +671953,296.12,86.4352 +671954,297.15,87.4576 +671955,298.16,88.4917 +671956,299.16,89.53621 +671957,294.83,86.3657 +671958,295.83,87.4198 +671959,296.81,88.4858 +671960,297.77,89.56215 +671961,293.54,86.297 +671962,294.51,87.3824 +671963,295.45,88.4796 +671964,296.38,89.58724 +671965,292.25,86.2292 +671966,293.18,87.3452 +671967,294.1,88.473 +671968,294.99,89.61146 +671969,290.96,86.1624 +671970,291.86,87.3082 +671971,292.74,88.4662 +671972,293.6,89.63477 +671973,289.67,86.0965 +671974,290.54,87.2716 +671975,291.39,88.459 +671976,292.21,89.65716 +671977,288.39,86.0315 +671978,289.22,87.2353 +671979,290.03,88.4514 +671980,290.82,89.67861 +671981,287.1,85.9676 +671982,287.9,87.1993 +671983,288.68,88.4436 +671984,289.43,89.69909 +671985,285.82,85.9046 +671986,286.58,87.1636 +671987,287.32,88.4354 +671988,288.04,89.71858 +671989,284.53,85.8427 +671990,285.26,87.1283 +671991,285.96,88.4268 +671992,286.64,89.73705 +671993,283.25,85.7818 +671994,283.94,87.0933 +671995,284.61,88.4179 +671996,285.25,89.7545 +671997,281.97,85.722 +671998,282.62,87.0586 +671999,283.25,88.4085 +672000,283.86,89.7709 +672001,280.68,85.6633 +672002,281.3,87.0242 +672003,281.89,88.3989 +672004,282.46,89.78622 +672005,279.4,85.6057 +672006,279.98,86.9903 +672007,280.54,88.3888 +672008,281.07,89.80046 +672009,278.12,85.5492 +672010,278.66,86.9566 +672011,279.18,88.3784 +672012,279.67,89.81359 +672013,276.84,85.4939 +672014,277.34,86.9234 +672015,277.82,88.3675 +672016,278.28,89.82559 +672017,275.56,85.4397 +672018,276.02,86.8905 +672019,276.46,88.3563 +672020,276.88,89.83645 +672021,274.28,85.3866 +672022,274.7,86.8579 +672023,275.11,88.3446 +672024,275.48,89.84615 +672025,273,85.3348 +672026,273.39,86.8258 +672027,273.75,88.3326 +672028,274.08,89.85467 +672029,271.72,85.2841 +672030,272.07,86.794 +672031,272.39,88.3201 +672032,272.69,89.862 +672033,270.44,85.2347 +672034,270.75,86.7627 +672035,271.03,88.3072 +672036,271.29,89.86812 +672037,269.16,85.1865 +672038,269.43,86.7317 +672039,269.68,88.2939 +672040,269.89,89.87302 +672041,267.88,85.1395 +672042,268.11,86.7011 +672043,268.32,88.2802 +672044,268.49,89.87668 +672045,266.6,85.0938 +672046,266.79,86.6709 +672047,266.96,88.266 +672048,267.09,89.87909 +672049,265.32,85.0493 +672050,265.48,86.6412 +672051,265.6,88.2514 +672052,265.7,89.88024 +672053,264.04,85.0061 +672054,264.16,86.6118 +672055,264.24,88.2364 +672056,264.3,89.88011 +672057,262.77,84.9642 +672058,262.84,86.5829 +672059,262.89,88.2209 +672060,262.9,89.8787 +672061,261.49,84.9235 +672062,261.52,86.5543 +672063,261.53,88.205 +672064,261.5,89.876 +672065,260.21,84.8842 +672066,260.21,86.5262 +672067,260.17,88.1886 +672068,260.1,89.87198 +672069,258.93,84.8461 +672070,258.89,86.4985 +672071,258.81,88.1718 +672072,258.7,89.86665 +672073,257.66,84.8094 +672074,257.57,86.4712 +672075,257.45,88.1545 +672076,257.3,89.86 +672077,256.38,84.774 +672078,256.25,86.4444 +672079,256.1,88.1367 +672080,255.9,89.85201 +672081,255.1,84.7399 +672082,254.94,86.418 +672083,254.74,88.1186 +672084,254.5,89.84268 +672085,253.82,84.7071 +672086,253.62,86.392 +672087,253.38,88.0999 +672088,253.11,89.832 +672089,252.55,84.6756 +672090,252.3,86.3664 +672091,252.02,88.0808 +672092,251.71,89.81997 +672093,251.27,84.6455 +672094,250.99,86.3413 +672095,250.67,88.0612 +672096,250.31,89.80658 +672097,249.99,84.6167 +672098,249.67,86.3166 +672099,249.31,88.0411 +672100,248.91,89.79182 +672101,248.71,84.5892 +672102,248.35,86.2924 +672103,247.95,88.0206 +672104,247.51,89.7757 +672105,247.43,84.5631 +672106,247.03,86.2686 +672107,246.6,87.9996 +672108,246.11,89.75821 +672109,246.16,84.5383 +672110,245.72,86.2452 +672111,245.24,87.9782 +672112,244.72,89.73934 +672113,244.88,84.5148 +672114,244.4,86.2223 +672115,243.88,87.9563 +672116,243.32,89.7191 +672117,243.6,84.4927 +672118,243.08,86.1997 +672119,242.52,87.9339 +672120,241.92,89.69748 +672121,242.32,84.4719 +672122,241.76,86.1777 +672123,241.17,87.9111 +672124,240.53,89.67448 +672125,241.04,84.4524 +672126,240.45,86.156 +672127,239.81,87.8877 +672128,239.13,89.65011 +672129,239.76,84.4343 +672130,239.13,86.1348 +672131,238.46,87.864 +672132,237.74,89.62436 +672133,238.48,84.4175 +672134,237.81,86.1141 +672135,237.1,87.8397 +672136,236.34,89.59723 +672137,237.2,84.402 +672138,236.49,86.0937 +672139,235.74,87.815 +672140,234.95,89.56874 +672141,235.91,84.3878 +672142,235.17,86.0738 +672143,234.39,87.7898 +672144,233.55,89.53887 +672145,234.63,84.3749 +672146,233.86,86.0544 +672147,233.03,87.7642 +672148,232.16,89.50764 +672149,233.35,84.3634 +672150,232.54,86.0353 +672151,231.68,87.7381 +672152,230.77,89.47505 +672153,232.07,84.3531 +672154,231.22,86.0167 +672155,230.32,87.7116 +672156,229.38,89.44111 +672157,230.78,84.3441 +672158,229.9,85.9985 +672159,228.97,87.6846 +672160,227.99,89.40582 +672161,229.5,84.3363 +672162,228.58,85.9807 +672163,227.62,87.6571 +672164,226.6,89.36918 +672165,228.21,84.3299 +672166,227.26,85.9633 +672167,226.26,87.6292 +672168,225.21,89.33122 +672169,226.93,84.3247 +672170,225.94,85.9464 +672171,224.91,87.6009 +672172,223.82,89.29192 +672173,225.64,84.3207 +672174,224.62,85.9299 +672175,223.55,87.5721 +672176,222.43,89.25131 +672177,224.36,84.318 +672178,223.3,85.9137 +672179,222.2,87.5429 +672180,221.04,89.20939 +672181,223.07,84.3165 +672182,221.98,85.898 +672183,220.85,87.5132 +672184,219.66,89.16618 +672185,221.78,84.3163 +672186,220.66,85.8827 +672187,219.5,87.4831 +672188,218.27,89.12168 +672189,220.49,84.3172 +672190,219.34,85.8678 +672191,218.14,87.4526 +672192,216.89,89.0759 +672193,219.2,84.3193 +672194,218.02,85.8532 +672195,216.79,87.4217 +672196,215.51,89.02887 +672197,217.91,84.3226 +672198,216.7,85.8391 +672199,215.44,87.3903 +672200,214.12,88.9806 +672201,216.62,84.327 +672202,215.38,85.8253 +672203,214.09,87.3586 +672204,212.74,88.9311 +672205,215.32,84.3326 +672206,214.06,85.8119 +672207,212.74,87.3264 +672208,211.36,88.8803 +672209,214.03,84.3393 +672210,212.73,85.7989 +672211,211.39,87.2938 +672212,209.98,88.8284 +672213,212.74,84.3471 +672214,211.41,85.7862 +672215,210.04,87.2608 +672216,208.6,88.7752 +672217,211.44,84.356 +672218,210.09,85.7739 +672219,208.69,87.2275 +672220,207.23,88.7209 +672221,210.14,84.366 +672222,208.77,85.762 +672223,207.34,87.1937 +672224,205.85,88.6655 +672225,208.85,84.377 +672226,207.44,85.7504 +672227,205.99,87.1596 +672228,204.48,88.6089 +672229,207.55,84.3891 +672230,206.12,85.7392 +672231,204.64,87.1251 +672232,203.1,88.5512 +672233,206.25,84.4022 +672234,204.8,85.7283 +672235,203.29,87.0902 +672236,201.73,88.4923 +672237,204.95,84.4163 +672238,203.47,85.7177 +672239,201.95,87.055 +672240,200.36,88.4324 +672241,203.65,84.4314 +672242,202.15,85.7075 +672243,200.6,87.0194 +672244,198.99,88.3715 +672245,202.34,84.4474 +672246,200.82,85.6975 +672247,199.25,86.9834 +672248,197.62,88.3095 +672249,201.04,84.4644 +672250,199.5,85.6879 +672251,197.91,86.9472 +672252,196.25,88.2464 +672253,199.73,84.4823 +672254,198.17,85.6786 +672255,196.56,86.9105 +672256,194.89,88.1824 +672257,198.43,84.5011 +672258,196.85,85.6696 +672259,195.22,86.8736 +672260,193.52,88.1174 +672261,197.12,84.5207 +672262,195.52,85.6609 +672263,193.87,86.8364 +672264,192.16,88.0515 +672265,195.81,84.5413 +672266,194.19,85.6524 +672267,192.53,86.7988 +672268,190.8,87.9846 +672269,194.5,84.5626 +672270,192.87,85.6443 +672271,191.18,86.7609 +672272,189.44,87.9168 +672273,193.19,84.5847 +672274,191.54,85.6364 +672275,189.84,86.7228 +672276,188.08,87.8482 +672277,191.88,84.6077 +672278,190.21,85.6287 +672279,188.5,86.6843 +672280,186.72,87.7787 +672281,190.57,84.6313 +672282,188.89,85.6213 +672283,187.15,86.6456 +672284,185.36,87.7083 +672285,189.25,84.6557 +672286,187.56,85.6142 +672287,185.81,86.6066 +672288,184.01,87.6372 +672289,187.94,84.6809 +672290,186.23,85.6072 +672291,184.47,86.5674 +672292,182.65,87.5653 +672293,186.62,84.7067 +672294,184.9,85.6005 +672295,183.13,86.5279 +672296,181.3,87.4926 +672297,185.3,84.7331 +672298,183.57,85.5941 +672299,181.79,86.4882 +672300,179.95,87.4192 +672301,183.98,84.7602 +672302,182.24,85.5878 +672303,180.45,86.4482 +672304,178.6,87.3451 +672305,182.66,84.7879 +672306,180.91,85.5817 +672307,179.11,86.408 +672308,177.25,87.2704 +672309,181.34,84.8162 +672310,179.58,85.5758 +672311,177.77,86.3676 +672312,175.9,87.195 +672313,180.01,84.845 +672314,178.25,85.5702 +672315,176.43,86.327 +672316,174.56,87.119 +672317,178.69,84.8743 +672318,176.91,85.5646 +672319,175.09,86.2861 +672320,173.22,87.0424 +672321,177.36,84.9042 +672322,175.58,85.5593 +672323,173.75,86.2451 +672324,171.87,86.9652 +672325,176.03,84.9345 +672326,174.25,85.5541 +672327,172.42,86.204 +672328,170.53,86.8875 +672329,174.7,84.9652 +672330,172.92,85.549 +672331,171.08,86.1626 +672332,169.19,86.8094 +672333,173.37,84.9964 +672334,171.58,85.5441 +672335,169.75,86.1211 +672336,167.86,86.7308 +672337,172.04,85.0279 +672338,170.25,85.5393 +672339,168.41,86.0795 +672340,166.52,86.6517 +672341,170.71,85.0598 +672342,168.91,85.5346 +672343,167.07,86.0377 +672344,165.18,86.5722 +672345,169.37,85.092 +672346,167.58,85.53 +672347,165.74,85.9958 +672348,163.85,86.4924 +672349,168.04,85.1246 +672350,166.24,85.5255 +672351,164.41,85.9537 +672352,162.52,86.4122 +672353,166.7,85.1574 +672354,164.91,85.5211 +672355,163.07,85.9116 +672356,161.19,86.3317 +672357,165.36,85.1904 +672358,163.57,85.5168 +672359,161.74,85.8694 +672360,159.86,86.2509 +672361,164.02,85.2237 +672362,162.24,85.5126 +672363,160.41,85.8271 +672364,158.53,86.1699 +672365,162.68,85.2572 +672366,160.9,85.5084 +672367,159.08,85.7847 +672368,157.2,86.0887 +672369,161.34,85.2908 +672370,159.56,85.5042 +672371,157.74,85.7422 +672372,155.88,86.0073 +672373,159.99,85.3245 +672374,158.22,85.5001 +672375,156.41,85.6997 +672376,154.56,85.9257 +672377,158.65,85.3583 +672378,156.89,85.4961 +672379,155.08,85.6571 +672380,153.23,85.844 +672381,157.3,85.3922 +672382,155.55,85.492 +672383,153.75,85.6145 +672384,151.91,85.7622 +672385,155.95,85.4262 +672386,154.21,85.488 +672387,152.42,85.5719 +672388,150.6,85.6803 +672389,154.6,85.4601 +672390,152.87,85.4839 +672391,151.09,85.5292 +672392,149.28,85.5984 +672393,153.25,85.4941 +672394,151.53,85.4799 +672395,149.77,85.4866 +672396,147.96,85.5166 +672397,151.9,85.528 +672398,150.19,85.4758 +672399,148.44,85.4439 +672400,146.65,85.4347 +672401,150.55,85.5618 +672402,148.85,85.4717 +672403,147.11,85.4013 +672404,145.33,85.3529 +672405,149.19,85.5955 +672406,147.51,85.4675 +672407,145.78,85.3587 +672408,144.02,85.2712 +672409,147.84,85.6291 +672410,146.17,85.4633 +672411,144.46,85.3161 +672412,142.71,85.1897 +672413,146.48,85.6625 +672414,144.82,85.4591 +672415,143.13,85.2736 +672416,141.4,85.1083 +672417,145.12,85.6957 +672418,143.48,85.4547 +672419,141.81,85.2312 +672420,140.09,85.0271 +672421,143.76,85.7288 +672422,142.14,85.4503 +672423,140.48,85.1888 +672424,138.79,84.9461 +672425,142.4,85.7615 +672426,140.8,85.4458 +672427,139.16,85.1464 +672428,137.48,84.8654 +672429,141.04,85.794 +672430,139.45,85.4412 +672431,137.83,85.1042 +672432,136.18,84.7849 +672433,139.67,85.8262 +672434,138.11,85.4365 +672435,136.51,85.0621 +672436,134.88,84.7048 +672437,138.31,85.858 +672438,136.76,85.4317 +672439,135.19,85.0201 +672440,133.58,84.625 +672441,136.94,85.8895 +672442,135.42,85.4268 +672443,133.86,84.9781 +672444,132.28,84.5456 +672445,135.57,85.9206 +672446,134.07,85.4217 +672447,132.54,84.9364 +672448,130.98,84.4666 +672449,134.21,85.9513 +672450,132.73,85.4165 +672451,131.22,84.8947 +672452,129.68,84.388 +672453,132.84,85.9816 +672454,131.38,85.4111 +672455,129.9,84.8532 +672456,128.38,84.3099 +672457,131.46,86.0113 +672458,130.04,85.4055 +672459,128.58,84.8119 +672460,127.09,84.2323 +672461,130.09,86.0406 +672462,128.69,85.3998 +672463,127.26,84.7707 +672464,125.79,84.1552 +672465,128.72,86.0694 +672466,127.34,85.3939 +672467,125.94,84.7297 +672468,124.5,84.0786 +672469,127.35,86.0976 +672470,126,85.3878 +672471,124.62,84.6889 +672472,123.21,84.0027 +672473,125.97,86.1252 +672474,124.65,85.3815 +672475,123.3,84.6482 +672476,121.92,83.9273 +672477,124.59,86.1523 +672478,123.3,85.375 +672479,121.98,84.6078 +672480,120.63,83.8526 +672481,123.22,86.1787 +672482,121.95,85.3683 +672483,120.66,84.5676 +672484,119.34,83.7785 +672485,121.84,86.2044 +672486,120.6,85.3613 +672487,119.34,84.5276 +672488,118.05,83.7051 +672489,120.46,86.2295 +672490,119.25,85.3541 +672491,118.02,84.4878 +672492,116.77,83.6324 +672493,119.08,86.2539 +672494,117.91,85.3467 +672495,116.71,84.4483 +672496,115.48,83.5604 +672497,117.7,86.2775 +672498,116.56,85.339 +672499,115.39,84.409 +672500,114.2,83.4893 +672501,116.31,86.3004 +672502,115.21,85.3311 +672503,114.07,84.37 +672504,112.91,83.4189 +672505,114.93,86.3226 +672506,113.86,85.3229 +672507,112.76,84.3312 +672508,111.63,83.3493 +672509,113.55,86.3439 +672510,112.51,85.3144 +672511,111.44,84.2927 +672512,110.35,83.2805 +672513,112.16,86.3644 +672514,111.16,85.3056 +672515,110.13,84.2545 +672516,109.07,83.2126 +672517,110.77,86.3841 +672518,109.81,85.2966 +672519,108.81,84.2165 +672520,107.79,83.1456 +672521,109.39,86.403 +672522,108.45,85.2873 +672523,107.5,84.1789 +672524,106.51,83.0795 +672525,108,86.4209 +672526,107.1,85.2776 +672527,106.18,84.1415 +672528,105.23,83.0143 +672529,106.61,86.4379 +672530,105.75,85.2677 +672531,104.87,84.1045 +672532,103.95,82.9501 +672533,105.22,86.4541 +672534,104.4,85.2574 +672535,103.55,84.0677 +672536,102.68,82.8868 +672537,103.83,86.4692 +672538,103.05,85.2468 +672539,102.24,84.0313 +672540,101.4,82.8245 +672541,102.44,86.4834 +672542,101.7,85.2358 +672543,100.92,83.9953 +672544,100.13,82.7632 +672545,101.05,86.4967 +672546,100.34,85.2246 +672547,99.611,83.9595 +672548,98.852,82.703 +672549,99.66,86.5089 +672550,98.992,85.213 +672551,98.298,83.9241 +672552,97.578,82.6438 +672553,98.268,86.5201 +672554,97.64,85.201 +672555,96.985,83.889 +672556,96.304,82.5856 +672557,96.875,86.5303 +672558,96.287,85.1887 +672559,95.672,83.8543 +672560,95.031,82.5286 +672561,95.482,86.5394 +672562,94.935,85.176 +672563,94.36,83.82 +672564,93.759,82.4726 +672565,94.088,86.5474 +672566,93.582,85.163 +672567,93.048,83.786 +672568,92.487,82.4177 +672569,92.694,86.5544 +672570,92.229,85.1496 +672571,91.736,83.7524 +672572,91.216,82.364 +672573,91.299,86.5603 +672574,90.875,85.1358 +672575,90.424,83.7191 +672576,89.945,82.3114 +672577,89.904,86.565 +672578,89.522,85.1216 +672579,89.112,83.6862 +672580,88.674,82.26 +672581,88.509,86.5686 +672582,88.169,85.1071 +672583,87.8,83.6537 +672584,87.404,82.2098 +672585,87.113,86.5711 +672586,86.816,85.0921 +672587,86.489,83.6216 +672588,86.134,82.1607 +672589,85.717,86.5724 +672590,85.462,85.0768 +672591,85.178,83.5899 +672592,84.865,82.1128 +672593,84.321,86.5725 +672594,84.109,85.0611 +672595,83.867,83.5586 +672596,83.595,82.0662 +672597,82.924,86.5715 +672598,82.755,85.0449 +672599,82.555,83.5277 +672600,82.326,82.0207 +672601,81.527,86.5693 +672602,81.401,85.0284 +672603,81.245,83.4972 +672604,81.058,81.9765 +672605,80.13,86.5658 +672606,80.048,85.0114 +672607,79.934,83.4671 +672608,79.789,81.9335 +672609,78.733,86.5612 +672610,78.694,84.9941 +672611,78.623,83.4374 +672612,78.521,81.8918 +672613,77.336,86.5553 +672614,77.341,84.9763 +672615,77.312,83.4081 +672616,77.253,81.8513 +672617,75.939,86.5482 +672618,75.987,84.9581 +672619,76.002,83.3792 +672620,75.984,81.8121 +672621,74.542,86.5398 +672622,74.633,84.9395 +672623,74.691,83.3508 +672624,74.716,81.7742 +672625,73.144,86.5302 +672626,73.28,84.9205 +672627,73.38,83.3228 +672628,73.448,81.7375 +672629,71.747,86.5194 +672630,71.926,84.901 +672631,72.07,83.2952 +672632,72.18,81.7021 +672633,70.35,86.5072 +672634,70.573,84.8811 +672635,70.759,83.268 +672636,70.912,81.668 +672637,68.953,86.4938 +672638,69.219,84.8608 +672639,69.449,83.2412 +672640,69.644,81.6352 +672641,67.556,86.4792 +672642,67.866,84.84 +672643,68.138,83.2149 +672644,68.376,81.6037 +672645,66.159,86.4632 +672646,66.513,84.8189 +672647,66.828,83.189 +672648,67.107,81.5735 +672649,64.762,86.446 +672650,65.16,84.7973 +672651,65.517,83.1635 +672652,65.839,81.5446 +672653,63.366,86.4275 +672654,63.807,84.7752 +672655,64.207,83.1385 +672656,64.57,81.517 +672657,61.97,86.4077 +672658,62.454,84.7527 +672659,62.896,83.1139 +672660,63.301,81.4907 +672661,60.574,86.3866 +672662,61.101,84.7298 +672663,61.585,83.0897 +672664,62.032,81.4657 +672665,59.179,86.3642 +672666,59.748,84.7065 +672667,60.275,83.0659 +672668,60.762,81.442 +672669,57.784,86.3405 +672670,58.396,84.6827 +672671,58.964,83.0426 +672672,59.493,81.4195 +672673,56.389,86.3155 +672674,57.043,84.6585 +672675,57.653,83.0197 +672676,58.222,81.3984 +672677,54.995,86.2893 +672678,55.691,84.6339 +672679,56.342,82.9973 +672680,56.952,81.3786 +672681,53.601,86.2617 +672682,54.339,84.6088 +672683,55.031,82.9752 +672684,55.681,81.3601 +672685,52.208,86.2329 +672686,52.987,84.5833 +672687,53.719,82.9536 +672688,54.409,81.3429 +672689,50.815,86.2027 +672690,51.636,84.5573 +672691,52.408,82.9325 +672692,53.138,81.3269 +672693,49.423,86.1713 +672694,50.285,84.531 +672695,51.097,82.9117 +672696,51.865,81.3122 +672697,48.032,86.1386 +672698,48.933,84.5042 +672699,49.785,82.8914 +672700,50.592,81.2988 +672701,46.641,86.1047 +672702,47.583,84.477 +672703,48.473,82.8715 +672704,49.319,81.2867 +672705,45.251,86.0694 +672706,46.232,84.4493 +672707,47.161,82.852 +672708,48.045,81.2758 +672709,43.862,86.0329 +672710,44.881,84.4213 +672711,45.849,82.8329 +672712,46.77,81.2661 +672713,42.473,85.9952 +672714,43.531,84.3928 +672715,44.536,82.8142 +672716,45.495,81.2577 +672717,41.085,85.9562 +672718,42.182,84.3639 +672719,43.224,82.796 +672720,44.219,81.2505 +672721,39.698,85.9159 +672722,40.832,84.3346 +672723,41.911,82.7781 +672724,42.942,81.2446 +672725,38.312,85.8745 +672726,39.483,84.3049 +672727,40.598,82.7607 +672728,41.664,81.2398 +672729,36.926,85.8318 +672730,38.134,84.2748 +672731,39.285,82.7437 +672732,40.386,81.2363 +672733,35.542,85.7879 +672734,36.785,84.2442 +672735,37.971,82.727 +672736,39.107,81.2339 +672737,34.158,85.7428 +672738,35.437,84.2133 +672739,36.657,82.7108 +672740,37.827,81.2327 +672741,32.776,85.6965 +672742,34.089,84.182 +672743,35.343,82.6949 +672744,36.547,81.2327 +672745,31.394,85.649 +672746,32.741,84.1503 +672747,34.029,82.6794 +672748,35.265,81.2338 +672749,30.013,85.6004 +672750,31.394,84.1182 +672751,32.714,82.6643 +672752,33.983,81.236 +672753,28.634,85.5506 +672754,30.047,84.0858 +672755,31.399,82.6496 +672756,32.699,81.2394 +672757,27.255,85.4996 +672758,28.701,84.0529 +672759,30.084,82.6353 +672760,31.415,81.2439 +672761,25.878,85.4476 +672762,27.355,84.0197 +672763,28.769,82.6213 +672764,30.13,81.2494 +672765,24.501,85.3944 +672766,26.009,83.9861 +672767,27.453,82.6076 +672768,28.843,81.256 +672769,23.126,85.3402 +672770,24.663,83.9522 +672771,26.137,82.5944 +672772,27.556,81.2637 +672773,21.752,85.2849 +672774,23.318,83.9179 +672775,24.821,82.5814 +672776,26.268,81.2724 +672777,20.379,85.2285 +672778,21.974,83.8833 +672779,23.504,82.5689 +672780,24.978,81.2821 +672781,19.008,85.171 +672782,20.63,83.8483 +672783,22.187,82.5566 +672784,23.688,81.2928 +672785,17.637,85.1126 +672786,19.286,83.813 +672787,20.869,82.5447 +672788,22.396,81.3045 +672789,16.268,85.0531 +672790,17.943,83.7774 +672791,19.551,82.5331 +672792,21.104,81.3172 +672793,14.9,84.9927 +672794,16.6,83.7414 +672795,18.233,82.5218 +672796,19.81,81.3308 +672797,13.533,84.9313 +672798,15.258,83.7051 +672799,16.915,82.5109 +672800,18.515,81.3453 +672801,12.168,84.8689 +672802,13.916,83.6685 +672803,15.596,82.5002 +672804,17.219,81.3607 +672805,10.804,84.8056 +672806,12.574,83.6316 +672807,14.277,82.4898 +672808,15.921,81.377 +672809,9.4417,84.7414 +672810,11.233,83.5944 +672811,12.957,82.4798 +672812,14.623,81.3941 +672813,8.0805,84.6764 +672814,9.8927,83.557 +672815,11.637,82.47 +672816,13.323,81.4121 +672817,6.7207,84.6104 +672818,8.5526,83.5192 +672819,10.316,82.4605 +672820,12.022,81.4309 +672821,5.3622,84.5437 +672822,7.2131,83.4812 +672823,8.9955,82.4512 +672824,10.719,81.4504 +672825,4.0053,84.4761 +672826,5.874,83.4429 +672827,7.6743,82.4422 +672828,9.4159,81.4708 +672829,2.6497,84.4077 +672830,4.5354,83.4043 +672831,6.3526,82.4335 +672832,8.111,81.4918 +672833,1.2956,84.3386 +672834,3.1973,83.3655 +672835,5.0305,82.425 +672836,6.8047,81.5136 +672837,359.94,84.2687 +672838,1.8597,83.3265 +672839,3.7079,82.4167 +672840,5.4972,81.5361 +672841,358.59,84.1981 +672842,0.52261,83.2872 +672843,2.385,82.4087 +672844,4.1883,81.5592 +672845,357.24,84.1268 +672846,359.19,83.2477 +672847,1.0616,82.4009 +672848,2.8781,81.583 +672849,355.89,84.0549 +672850,357.85,83.208 +672851,359.74,82.3933 +672852,1.5665,81.6074 +672853,354.55,83.9823 +672854,356.51,83.1681 +672855,358.41,82.3859 +672856,0.25356,81.6324 +672857,353.2,83.9091 +672858,355.18,83.128 +672859,357.09,82.3787 +672860,358.94,81.658 +672861,351.86,83.8353 +672862,353.84,83.0877 +672863,355.76,82.3717 +672864,357.62,81.684 +672865,350.52,83.761 +672866,352.51,83.0472 +672867,354.44,82.3648 +672868,356.31,81.7106 +672869,349.18,83.6861 +672870,351.18,83.0065 +672871,353.11,82.3582 +672872,354.99,81.7377 +672873,347.84,83.6107 +672874,349.84,82.9657 +672875,351.79,82.3516 +672876,353.67,81.7653 +672877,346.5,83.5348 +672878,348.51,82.9247 +672879,350.46,82.3453 +672880,352.35,81.7933 +672881,345.16,83.4585 +672882,347.18,82.8836 +672883,349.13,82.3391 +672884,351.02,81.8216 +672885,343.83,83.3818 +672886,345.85,82.8424 +672887,347.8,82.333 +672888,349.7,81.8504 +672889,342.5,83.3047 +672890,344.52,82.801 +672891,346.47,82.327 +672892,348.37,81.8795 +672893,341.17,83.2272 +672894,343.19,82.7595 +672895,345.15,82.3211 +672896,347.05,81.9089 +672897,339.84,83.1494 +672898,341.86,82.7179 +672899,343.82,82.3154 +672900,345.72,81.9387 +672901,338.51,83.0713 +672902,340.53,82.6762 +672903,342.49,82.3097 +672904,344.39,81.9687 +672905,337.18,82.9929 +672906,339.2,82.6345 +672907,341.16,82.3041 +672908,343.06,81.9989 +672909,335.86,82.9143 +672910,337.87,82.5926 +672911,339.83,82.2986 +672912,341.72,82.0293 +672913,334.53,82.8355 +672914,336.54,82.5507 +672915,338.5,82.2932 +672916,340.39,82.06 +672917,333.21,82.7565 +672918,335.22,82.5087 +672919,337.16,82.2878 +672920,339.05,82.0907 +672921,331.89,82.6773 +672922,333.89,82.4667 +672923,335.83,82.2825 +672924,337.72,82.1216 +672925,330.57,82.598 +672926,332.57,82.4247 +672927,334.5,82.2772 +672928,336.38,82.1526 +672929,329.25,82.5186 +672930,331.24,82.3826 +672931,333.17,82.2719 +672932,335.04,82.1837 +672933,327.94,82.4391 +672934,329.91,82.3405 +672935,331.83,82.2667 +672936,333.7,82.2148 +672937,326.62,82.3597 +672938,328.59,82.2984 +672939,330.5,82.2614 +672940,332.35,82.2459 +672941,325.31,82.2802 +672942,327.27,82.2563 +672943,329.16,82.2562 +672944,331.01,82.2771 +672945,324,82.2007 +672946,325.94,82.2142 +672947,327.83,82.2509 +672948,329.66,82.3081 +672949,322.69,82.1213 +672950,324.62,82.1721 +672951,326.49,82.2456 +672952,328.32,82.3391 +672953,321.38,82.042 +672954,323.3,82.1301 +672955,325.16,82.2403 +672956,326.97,82.37 +672957,320.08,81.9628 +672958,321.98,82.0881 +672959,323.82,82.235 +672960,325.62,82.4008 +672961,318.77,81.8838 +672962,320.66,82.0462 +672963,322.49,82.2296 +672964,324.27,82.4314 +672965,317.47,81.8049 +672966,319.33,82.0043 +672967,321.15,82.2241 +672968,322.92,82.4618 +672969,316.17,81.7262 +672970,318.01,81.9625 +672971,319.81,82.2186 +672972,321.56,82.492 +672973,314.86,81.6478 +672974,316.69,81.9208 +672975,318.47,82.213 +672976,320.21,82.522 +672977,313.57,81.5697 +672978,315.38,81.8792 +672979,317.14,82.2073 +672980,318.85,82.5517 +672981,312.27,81.4918 +672982,314.06,81.8376 +672983,315.8,82.2015 +672984,317.49,82.5811 +672985,310.97,81.4143 +672986,312.74,81.7962 +672987,314.46,82.1956 +672988,316.13,82.6102 +672989,309.68,81.3372 +672990,311.42,81.7549 +672991,313.12,82.1896 +672992,314.77,82.639 +672993,308.38,81.2604 +672994,310.1,81.7137 +672995,311.78,82.1835 +672996,313.41,82.6673 +672997,307.09,81.184 +672998,308.79,81.6727 +672999,310.44,82.1772 +673000,312.05,82.6953 +673001,305.8,81.1081 +673002,307.47,81.6318 +673003,309.1,82.1708 +673004,310.68,82.7228 +673005,304.51,81.0326 +673006,306.15,81.5911 +673007,307.76,82.1643 +673008,309.32,82.7499 +673009,303.22,80.9577 +673010,304.84,81.5505 +673011,306.41,82.1576 +673012,307.95,82.7765 +673013,301.93,80.8833 +673014,303.52,81.5102 +673015,305.07,82.1507 +673016,306.58,82.8027 +673017,300.65,80.8094 +673018,302.21,81.47 +673019,303.73,82.1436 +673020,305.21,82.8282 +673021,299.36,80.7361 +673022,300.9,81.43 +673023,302.39,82.1364 +673024,303.84,82.8533 +673025,298.08,80.6634 +673026,299.58,81.3902 +673027,301.04,82.129 +673028,302.47,82.8777 +673029,296.79,80.5914 +673030,298.27,81.3506 +673031,299.7,82.1213 +673032,301.1,82.9016 +673033,295.51,80.52 +673034,296.96,81.3112 +673035,298.36,82.1135 +673036,299.72,82.9248 +673037,294.23,80.4493 +673038,295.64,81.272 +673039,297.01,82.1054 +673040,298.35,82.9473 +673041,292.95,80.3793 +673042,294.33,81.2331 +673043,295.67,82.0971 +673044,296.97,82.9692 +673045,291.68,80.31 +673046,293.02,81.1944 +673047,294.32,82.0886 +673048,295.59,82.9904 +673049,290.4,80.2415 +673050,291.71,81.156 +673051,292.98,82.0798 +673052,294.22,83.0109 +673053,289.12,80.1738 +673054,290.4,81.1179 +673055,291.63,82.0708 +673056,292.84,83.0306 +673057,287.85,80.1069 +673058,289.09,81.08 +673059,290.29,82.0615 +673060,291.46,83.0496 +673061,286.57,80.0408 +673062,287.78,81.0424 +673063,288.94,82.052 +673064,290.08,83.0678 +673065,285.3,79.976 +673066,286.47,81.005 +673067,287.6,82.0422 +673068,288.69,83.0852 +673069,284.03,79.911 +673070,285.16,80.968 +673071,286.25,82.0321 +673072,287.31,83.1017 +673073,282.76,79.848 +673074,283.85,80.9312 +673075,284.9,82.0218 +673076,285.93,83.1174 +673077,281.49,79.785 +673078,282.54,80.8948 +673079,283.56,82.0111 +673080,284.54,83.1322 +673081,280.22,79.724 +673082,281.23,80.8586 +673083,282.21,82.0001 +673084,283.16,83.1462 +673085,278.95,79.663 +673086,279.92,80.8228 +673087,280.86,81.9889 +673088,281.77,83.1592 +673089,277.68,79.603 +673090,278.61,80.7873 +673091,279.51,81.9773 +673092,280.38,83.1714 +673093,276.41,79.545 +673094,277.3,80.7522 +673095,278.17,81.9654 +673096,279,83.1825 +673097,275.15,79.487 +673098,276,80.7173 +673099,276.82,81.9532 +673100,277.61,83.1927 +673101,273.88,79.43 +673102,274.69,80.6828 +673103,275.47,81.9407 +673104,276.22,83.202 +673105,272.61,79.375 +673106,273.38,80.6487 +673107,274.12,81.9278 +673108,274.83,83.2102 +673109,271.35,79.32 +673110,272.08,80.6149 +673111,272.77,81.9146 +673112,273.44,83.2175 +673113,270.09,79.267 +673114,270.77,80.5815 +673115,271.42,81.901 +673116,272.05,83.2237 +673117,268.82,79.214 +673118,269.46,80.5484 +673119,270.07,81.8871 +673120,270.66,83.2289 +673121,267.56,79.163 +673122,268.16,80.5157 +673123,268.73,81.8728 +673124,269.26,83.233 +673125,266.3,79.113 +673126,266.85,80.4834 +673127,267.38,81.8582 +673128,267.87,83.236 +673129,265.03,79.064 +673130,265.55,80.4514 +673131,266.03,81.8432 +673132,266.48,83.238 +673133,263.77,79.016 +673134,264.24,80.4198 +673135,264.68,81.8279 +673136,265.08,83.2389 +673137,262.51,78.97 +673138,262.93,80.3887 +673139,263.33,81.8122 +673140,263.69,83.2386 +673141,261.25,78.924 +673142,261.63,80.3579 +673143,261.98,81.7961 +673144,262.3,83.2373 +673145,259.99,78.88 +673146,260.32,80.3275 +673147,260.63,81.7796 +673148,260.9,83.2348 +673149,258.73,78.837 +673150,259.02,80.2975 +673151,259.28,81.7627 +673152,259.51,83.2312 +673153,257.47,78.795 +673154,257.71,80.2678 +673155,257.93,81.7455 +673156,258.11,83.2264 +673157,256.21,78.754 +673158,256.41,80.2386 +673159,256.58,81.7278 +673160,256.72,83.2205 +673161,254.95,78.715 +673162,255.1,80.2098 +673163,255.23,81.7098 +673164,255.32,83.2134 +673165,253.69,78.677 +673166,253.8,80.1815 +673167,253.88,81.6914 +673168,253.93,83.2051 +673169,252.43,78.64 +673170,252.49,80.1535 +673171,252.53,81.6725 +673172,252.53,83.1957 +673173,251.17,78.604 +673174,251.19,80.1259 +673175,251.18,81.6533 +673176,251.13,83.185 +673177,249.91,78.569 +673178,249.89,80.0988 +673179,249.83,81.6337 +673180,249.74,83.1732 +673181,248.65,78.536 +673182,248.58,80.072 +673183,248.48,81.6137 +673184,248.34,83.1601 +673185,247.39,78.504 +673186,247.28,80.0457 +673187,247.13,81.5932 +673188,246.95,83.1459 +673189,246.13,78.474 +673190,245.97,80.0198 +673191,245.78,81.5724 +673192,245.55,83.1304 +673193,244.87,78.444 +673194,244.67,79.994 +673195,244.43,81.5511 +673196,244.15,83.1137 +673197,243.61,78.416 +673198,243.36,79.969 +673199,243.08,81.5295 +673200,242.76,83.0958 +673201,242.35,78.389 +673202,242.06,79.945 +673203,241.73,81.5074 +673204,241.36,83.0766 +673205,241.09,78.363 +673206,240.75,79.92 +673207,240.38,81.485 +673208,239.97,83.0563 +673209,239.83,78.339 +673210,239.45,79.897 +673211,239.03,81.4621 +673212,238.57,83.0347 +673213,238.57,78.316 +673214,238.14,79.873 +673215,237.68,81.4388 +673216,237.18,83.0119 +673217,237.31,78.294 +673218,236.84,79.85 +673219,236.33,81.4151 +673220,235.78,82.9878 +673221,236.05,78.274 +673222,235.53,79.828 +673223,234.98,81.391 +673224,234.39,82.9625 +673225,234.79,78.254 +673226,234.23,79.806 +673227,233.63,81.3664 +673228,233,82.936 +673229,233.53,78.236 +673230,232.92,79.784 +673231,232.28,81.3415 +673232,231.6,82.9083 +673233,232.26,78.22 +673234,231.62,79.763 +673235,230.94,81.3162 +673236,230.21,82.8793 +673237,231,78.204 +673238,230.31,79.742 +673239,229.59,81.2904 +673240,228.82,82.8492 +673241,229.74,78.19 +673242,229.01,79.722 +673243,228.24,81.2643 +673244,227.43,82.8178 +673245,228.47,78.177 +673246,227.7,79.702 +673247,226.89,81.2377 +673248,226.04,82.7852 +673249,227.21,78.165 +673250,226.4,79.682 +673251,225.54,81.2108 +673252,224.64,82.7513 +673253,225.94,78.154 +673254,225.09,79.663 +673255,224.2,81.1834 +673256,223.25,82.7163 +673257,224.68,78.145 +673258,223.78,79.644 +673259,222.85,81.1557 +673260,221.86,82.6801 +673261,223.41,78.137 +673262,222.48,79.626 +673263,221.5,81.1275 +673264,220.48,82.6427 +673265,222.14,78.13 +673266,221.17,79.608 +673267,220.16,81.099 +673268,219.09,82.6041 +673269,220.88,78.124 +673270,219.87,79.59 +673271,218.81,81.0701 +673272,217.7,82.5643 +673273,219.61,78.119 +673274,218.56,79.573 +673275,217.46,81.0408 +673276,216.31,82.5234 +673277,218.34,78.116 +673278,217.25,79.556 +673279,216.12,81.0111 +673280,214.93,82.4813 +673281,217.07,78.114 +673282,215.94,79.54 +673283,214.77,80.981 +673284,213.54,82.4381 +673285,215.8,78.113 +673286,214.64,79.524 +673287,213.43,80.9506 +673288,212.16,82.3937 +673289,214.53,78.113 +673290,213.33,79.508 +673291,212.08,80.9197 +673292,210.78,82.3482 +673293,213.25,78.114 +673294,212.02,79.493 +673295,210.74,80.8886 +673296,209.39,82.3016 +673297,211.98,78.116 +673298,210.71,79.478 +673299,209.39,80.857 +673300,208.01,82.2539 +673301,210.71,78.119 +673302,209.4,79.464 +673303,208.05,80.8251 +673304,206.63,82.2051 +673305,209.43,78.124 +673306,208.09,79.449 +673307,206.7,80.7928 +673308,205.25,82.1552 +673309,208.15,78.129 +673310,206.78,79.436 +673311,205.36,80.7602 +673312,203.88,82.1042 +673313,206.88,78.135 +673314,205.47,79.422 +673315,204.02,80.7273 +673316,202.5,82.0522 +673317,205.6,78.143 +673318,204.16,79.409 +673319,202.68,80.694 +673320,201.12,81.9992 +673321,204.32,78.151 +673322,202.85,79.396 +673323,201.33,80.6604 +673324,199.75,81.9451 +673325,203.04,78.161 +673326,201.54,79.384 +673327,199.99,80.6264 +673328,198.38,81.8901 +673329,201.76,78.171 +673330,200.23,79.372 +673331,198.65,80.5922 +673332,197,81.834 +673333,200.47,78.183 +673334,198.92,79.36 +673335,197.31,80.5576 +673336,195.63,81.777 +673337,199.19,78.195 +673338,197.61,79.349 +673339,195.97,80.5227 +673340,194.26,81.7191 +673341,197.9,78.208 +673342,196.3,79.337 +673343,194.63,80.4875 +673344,192.89,81.6602 +673345,196.62,78.222 +673346,194.98,79.327 +673347,193.29,80.452 +673348,191.53,81.6004 +673349,195.33,78.237 +673350,193.67,79.316 +673351,191.95,80.4162 +673352,190.16,81.5397 +673353,194.04,78.253 +673354,192.36,79.306 +673355,190.61,80.3801 +673356,188.8,81.4781 +673357,192.75,78.27 +673358,191.04,79.296 +673359,189.27,80.3438 +673360,187.43,81.4157 +673361,191.46,78.287 +673362,189.73,79.286 +673363,187.94,80.3072 +673364,186.07,81.3525 +673365,190.17,78.306 +673366,188.41,79.277 +673367,186.6,80.2703 +673368,184.71,81.2884 +673369,188.87,78.325 +673370,187.1,79.268 +673371,185.26,80.2332 +673372,183.35,81.2235 +673373,187.58,78.344 +673374,185.78,79.259 +673375,183.93,80.1958 +673376,182,81.1579 +673377,186.28,78.365 +673378,184.47,79.25 +673379,182.59,80.1582 +673380,180.64,81.0915 +673381,184.98,78.386 +673382,183.15,79.242 +673383,181.26,80.1204 +673384,179.29,81.0244 +673385,183.68,78.408 +673386,181.83,79.234 +673387,179.92,80.0823 +673388,177.93,80.9567 +673389,182.38,78.43 +673390,180.52,79.226 +673391,178.59,80.044 +673392,176.58,80.8882 +673393,181.08,78.453 +673394,179.2,79.218 +673395,177.25,80.0055 +673396,175.23,80.8191 +673397,179.78,78.477 +673398,177.88,79.21 +673399,175.92,79.967 +673400,173.88,80.7493 +673401,178.47,78.501 +673402,176.56,79.203 +673403,174.59,79.928 +673404,172.54,80.679 +673405,177.17,78.526 +673406,175.24,79.196 +673407,173.26,79.889 +673408,171.19,80.6081 +673409,175.86,78.551 +673410,173.92,79.189 +673411,171.92,79.85 +673412,169.85,80.5366 +673413,174.55,78.577 +673414,172.6,79.182 +673415,170.59,79.81 +673416,168.51,80.4646 +673417,173.24,78.603 +673418,171.28,79.175 +673419,169.26,79.771 +673420,167.16,80.3921 +673421,171.93,78.63 +673422,169.96,79.169 +673423,167.93,79.731 +673424,165.83,80.3191 +673425,170.61,78.657 +673426,168.64,79.163 +673427,166.6,79.691 +673428,164.49,80.2457 +673429,169.3,78.685 +673430,167.32,79.156 +673431,165.27,79.651 +673432,163.15,80.1719 +673433,167.98,78.712 +673434,166,79.15 +673435,163.95,79.611 +673436,161.82,80.0977 +673437,166.66,78.741 +673438,164.67,79.144 +673439,162.62,79.571 +673440,160.49,80.0231 +673441,165.34,78.769 +673442,163.35,79.138 +673443,161.29,79.531 +673444,159.16,79.948 +673445,164.02,78.798 +673446,162.03,79.133 +673447,159.96,79.49 +673448,157.83,79.873 +673449,162.7,78.827 +673450,160.7,79.127 +673451,158.64,79.45 +673452,156.5,79.797 +673453,161.37,78.856 +673454,159.38,79.121 +673455,157.31,79.409 +673456,155.17,79.722 +673457,160.05,78.885 +673458,158.05,79.116 +673459,155.99,79.368 +673460,153.85,79.646 +673461,158.72,78.915 +673462,156.73,79.11 +673463,154.66,79.328 +673464,152.53,79.57 +673465,157.39,78.944 +673466,155.4,79.105 +673467,153.34,79.287 +673468,151.21,79.493 +673469,156.06,78.974 +673470,154.07,79.1 +673471,152.02,79.246 +673472,149.89,79.417 +673473,154.73,79.004 +673474,152.75,79.094 +673475,150.69,79.206 +673476,148.57,79.34 +673477,153.4,79.034 +673478,151.42,79.089 +673479,149.37,79.165 +673480,147.25,79.264 +673481,152.06,79.064 +673482,150.09,79.084 +673483,148.05,79.124 +673484,145.94,79.187 +673485,150.72,79.094 +673486,148.76,79.079 +673487,146.73,79.083 +673488,144.63,79.11 +673489,149.39,79.124 +673490,147.43,79.073 +673491,145.41,79.042 +673492,143.31,79.033 +673493,148.05,79.153 +673494,146.1,79.068 +673495,144.09,79.002 +673496,142.01,78.957 +673497,146.71,79.183 +673498,144.77,79.063 +673499,142.77,78.961 +673500,140.7,78.88 +673501,145.36,79.213 +673502,143.44,79.057 +673503,141.45,78.92 +673504,139.39,78.804 +673505,144.02,79.242 +673506,142.11,79.052 +673507,140.13,78.879 +673508,138.09,78.727 +673509,142.68,79.271 +673510,140.78,79.047 +673511,138.81,78.839 +673512,136.78,78.651 +673513,141.33,79.301 +673514,139.44,79.041 +673515,137.5,78.798 +673516,135.48,78.575 +673517,139.98,79.329 +673518,138.11,79.036 +673519,136.18,78.758 +673520,134.18,78.499 +673521,138.63,79.358 +673522,136.78,79.03 +673523,134.86,78.717 +673524,132.88,78.423 +673525,137.28,79.386 +673526,135.45,79.024 +673527,133.55,78.677 +673528,131.59,78.348 +673529,135.93,79.415 +673530,134.11,79.018 +673531,132.23,78.637 +673532,130.29,78.273 +673533,134.57,79.442 +673534,132.78,79.012 +673535,130.92,78.597 +673536,129,78.198 +673537,133.22,79.47 +673538,131.44,79.006 +673539,129.61,78.557 +673540,127.71,78.124 +673541,131.86,79.497 +673542,130.11,79 +673543,128.29,78.517 +673544,126.41,78.05 +673545,130.5,79.523 +673546,128.77,78.994 +673547,126.98,78.478 +673548,125.13,77.977 +673549,129.14,79.549 +673550,127.43,78.988 +673551,125.67,78.438 +673552,123.84,77.903 +673553,127.78,79.575 +673554,126.1,78.981 +673555,124.35,78.399 +673556,122.55,77.831 +673557,126.42,79.6 +673558,124.76,78.974 +673559,123.04,78.36 +673560,121.27,77.759 +673561,125.06,79.625 +673562,123.42,78.967 +673563,121.73,78.321 +673564,119.98,77.687 +673565,123.69,79.649 +673566,122.08,78.96 +673567,120.42,78.282 +673568,118.7,77.616 +673569,122.33,79.673 +673570,120.75,78.953 +673571,119.11,78.243 +673572,117.42,77.545 +673573,120.96,79.696 +673574,119.41,78.946 +673575,117.8,78.205 +673576,116.14,77.476 +673577,119.59,79.718 +673578,118.07,78.938 +673579,116.49,78.167 +673580,114.86,77.406 +673581,118.22,79.74 +673582,116.73,78.93 +673583,115.18,78.129 +673584,113.58,77.338 +673585,116.85,79.761 +673586,115.39,78.922 +673587,113.87,78.091 +673588,112.31,77.27 +673589,115.48,79.781 +673590,114.05,78.914 +673591,112.57,78.053 +673592,111.03,77.202 +673593,114.11,79.801 +673594,112.71,78.905 +673595,111.26,78.016 +673596,109.76,77.136 +673597,112.73,79.82 +673598,111.37,78.897 +673599,109.95,77.979 +673600,108.49,77.07 +673601,111.36,79.839 +673602,110.03,78.888 +673603,108.64,77.942 +673604,107.21,77.005 +673605,109.98,79.856 +673606,108.68,78.878 +673607,107.34,77.906 +673608,105.94,76.941 +673609,108.61,79.873 +673610,107.34,78.869 +673611,106.03,77.87 +673612,104.67,76.877 +673613,107.23,79.889 +673614,106,78.859 +673615,104.73,77.834 +673616,103.41,76.815 +673617,105.85,79.904 +673618,104.66,78.849 +673619,103.42,77.798 +673620,102.14,76.753 +673621,104.47,79.918 +673622,103.31,78.839 +673623,102.12,77.763 +673624,100.87,76.692 +673625,103.09,79.932 +673626,101.97,78.828 +673627,100.81,77.728 +673628,99.607,76.632 +673629,101.71,79.944 +673630,100.63,78.817 +673631,99.506,77.693 +673632,98.343,76.573 +673633,100.32,79.956 +673634,99.283,78.806 +673635,98.202,77.659 +673636,97.08,76.515 +673637,98.939,79.967 +673638,97.939,78.795 +673639,96.899,77.624 +673640,95.817,76.458 +673641,97.554,79.977 +673642,96.594,78.783 +673643,95.595,77.591 +673644,94.556,76.402 +673645,96.169,79.986 +673646,95.25,78.771 +673647,94.292,77.557 +673648,93.295,76.347 +673649,94.783,79.994 +673650,93.905,78.758 +673651,92.989,77.524 +673652,92.035,76.293 +673653,93.396,80.0005 +673654,92.56,78.746 +673655,91.687,77.491 +673656,90.775,76.24 +673657,92.008,80.0065 +673658,91.215,78.732 +673659,90.385,77.459 +673660,89.516,76.188 +673661,90.62,80.0115 +673662,89.869,78.719 +673663,89.083,77.427 +673664,88.258,76.137 +673665,89.231,80.0154 +673666,88.524,78.705 +673667,87.781,77.395 +673668,87.001,76.087 +673669,87.841,80.0183 +673670,87.178,78.691 +673671,86.479,77.364 +673672,85.744,76.038 +673673,86.451,80.0202 +673674,85.832,78.677 +673675,85.178,77.333 +673676,84.488,75.99 +673677,85.06,80.021 +673678,84.486,78.662 +673679,83.877,77.302 +673680,83.232,75.944 +673681,83.669,80.0207 +673682,83.139,78.647 +673683,82.576,77.272 +673684,81.977,75.898 +673685,82.277,80.0194 +673686,81.793,78.631 +673687,81.275,77.242 +673688,80.723,75.854 +673689,80.885,80.017 +673690,80.446,78.615 +673691,79.974,77.213 +673692,79.468,75.811 +673693,79.492,80.0134 +673694,79.1,78.599 +673695,78.674,77.184 +673696,78.214,75.769 +673697,78.099,80.0088 +673698,77.753,78.582 +673699,77.373,77.155 +673700,76.961,75.728 +673701,76.706,80.003 +673702,76.406,78.565 +673703,76.073,77.127 +673704,75.708,75.688 +673705,75.312,79.996 +673706,75.059,78.548 +673707,74.773,77.099 +673708,74.455,75.65 +673709,73.918,79.988 +673710,73.712,78.53 +673711,73.473,77.071 +673712,73.202,75.612 +673713,72.524,79.979 +673714,72.365,78.512 +673715,72.173,77.044 +673716,71.949,75.576 +673717,71.129,79.968 +673718,71.018,78.494 +673719,70.874,77.017 +673720,70.697,75.541 +673721,69.735,79.957 +673722,69.67,78.475 +673723,69.574,76.991 +673724,69.445,75.508 +673725,68.34,79.944 +673726,68.323,78.455 +673727,68.274,76.965 +673728,68.193,75.475 +673729,66.945,79.93 +673730,66.976,78.436 +673731,66.975,76.94 +673732,66.941,75.444 +673733,65.55,79.915 +673734,65.629,78.415 +673735,65.675,76.915 +673736,65.689,75.414 +673737,64.155,79.899 +673738,64.282,78.395 +673739,64.375,76.89 +673740,64.437,75.386 +673741,62.76,79.882 +673742,62.935,78.374 +673743,63.076,76.866 +673744,63.185,75.358 +673745,61.365,79.863 +673746,61.587,78.353 +673747,61.776,76.842 +673748,61.933,75.332 +673749,59.97,79.844 +673750,60.24,78.331 +673751,60.477,76.819 +673752,60.68,75.307 +673753,58.576,79.823 +673754,58.893,78.309 +673755,59.177,76.796 +673756,59.428,75.283 +673757,57.181,79.801 +673758,57.546,78.287 +673759,57.878,76.773 +673760,58.176,75.261 +673761,55.787,79.777 +673762,56.2,78.264 +673763,56.578,76.751 +673764,56.923,75.24 +673765,54.392,79.753 +673766,54.853,78.24 +673767,55.278,76.729 +673768,55.67,75.22 +673769,52.998,79.727 +673770,53.506,78.217 +673771,53.978,76.708 +673772,54.416,75.201 +673773,51.605,79.7 +673774,52.16,78.193 +673775,52.678,76.687 +673776,53.163,75.183 +673777,50.211,79.672 +673778,50.813,78.168 +673779,51.378,76.666 +673780,51.909,75.167 +673781,48.818,79.643 +673782,49.467,78.143 +673783,50.078,76.646 +673784,50.654,75.152 +673785,47.426,79.612 +673786,48.121,78.118 +673787,48.778,76.626 +673788,49.399,75.138 +673789,46.034,79.581 +673790,46.775,78.093 +673791,47.478,76.607 +673792,48.144,75.126 +673793,44.642,79.548 +673794,45.43,78.066 +673795,46.177,76.588 +673796,46.888,75.114 +673797,43.251,79.514 +673798,44.084,78.04 +673799,44.876,76.57 +673800,45.631,75.104 +673801,41.86,79.479 +673802,42.739,78.013 +673803,43.576,76.552 +673804,44.374,75.095 +673805,40.47,79.443 +673806,41.394,77.986 +673807,42.275,76.534 +673808,43.117,75.087 +673809,39.081,79.405 +673810,40.049,77.959 +673811,40.973,76.517 +673812,41.859,75.08 +673813,37.692,79.367 +673814,38.704,77.931 +673815,39.672,76.5 +673816,40.6,75.075 +673817,36.304,79.327 +673818,37.36,77.902 +673819,38.37,76.483 +673820,39.34,75.071 +673821,34.917,79.286 +673822,36.016,77.874 +673823,37.069,76.467 +673824,38.08,75.067 +673825,33.53,79.245 +673826,34.672,77.845 +673827,35.766,76.451 +673828,36.819,75.065 +673829,32.145,79.202 +673830,33.329,77.815 +673831,34.464,76.436 +673832,35.557,75.064 +673833,30.76,79.158 +673834,31.985,77.785 +673835,33.162,76.421 +673836,34.294,75.065 +673837,29.376,79.112 +673838,30.643,77.755 +673839,31.859,76.406 +673840,33.03,75.066 +673841,27.992,79.066 +673842,29.3,77.725 +673843,30.556,76.392 +673844,31.766,75.068 +673845,26.61,79.019 +673846,27.958,77.694 +673847,29.252,76.378 +673848,30.5,75.072 +673849,25.229,78.971 +673850,26.616,77.663 +673851,27.948,76.365 +673852,29.234,75.076 +673853,23.849,78.921 +673854,25.274,77.631 +673855,26.644,76.352 +673856,27.967,75.082 +673857,22.469,78.871 +673858,23.933,77.599 +673859,25.34,76.339 +673860,26.698,75.088 +673861,21.091,78.82 +673862,22.592,77.567 +673863,24.035,76.326 +673864,25.429,75.096 +673865,19.714,78.767 +673866,21.252,77.535 +673867,22.731,76.314 +673868,24.158,75.105 +673869,18.338,78.714 +673870,19.912,77.502 +673871,21.425,76.302 +673872,22.887,75.114 +673873,16.963,78.66 +673874,18.572,77.469 +673875,20.119,76.291 +673876,21.614,75.125 +673877,15.589,78.604 +673878,17.233,77.435 +673879,18.813,76.28 +673880,20.341,75.136 +673881,14.217,78.548 +673882,15.894,77.402 +673883,17.507,76.269 +673884,19.066,75.148 +673885,12.846,78.491 +673886,14.555,77.368 +673887,16.2,76.258 +673888,17.789,75.162 +673889,11.476,78.433 +673890,13.217,77.333 +673891,14.893,76.248 +673892,16.512,75.176 +673893,10.107,78.375 +673894,11.88,77.299 +673895,13.586,76.238 +673896,15.234,75.191 +673897,8.7394,78.315 +673898,10.543,77.264 +673899,12.278,76.228 +673900,13.954,75.207 +673901,7.3733,78.254 +673902,9.2059,77.229 +673903,10.969,76.219 +673904,12.673,75.223 +673905,6.0086,78.193 +673906,7.8698,77.193 +673907,9.6604,76.21 +673908,11.39,75.241 +673909,4.6452,78.131 +673910,6.534,77.158 +673911,8.3511,76.201 +673912,10.107,75.259 +673913,3.2833,78.068 +673914,5.1988,77.122 +673915,7.0415,76.192 +673916,8.8219,75.278 +673917,1.9228,78.005 +673918,3.864,77.086 +673919,5.7314,76.184 +673920,7.5355,75.298 +673921,0.56378,77.94 +673922,2.5298,77.049 +673923,4.4209,76.176 +673924,6.2478,75.318 +673925,359.21,77.875 +673926,1.196,77.013 +673927,3.1099,76.168 +673928,4.9588,75.339 +673929,357.85,77.81 +673930,359.86,76.976 +673931,1.7984,76.16 +673932,3.6683,75.361 +673933,356.5,77.743 +673934,358.53,76.939 +673935,0.48655,76.153 +673936,2.3764,75.383 +673937,355.14,77.676 +673938,357.2,76.902 +673939,359.17,76.145 +673940,1.0831,75.406 +673941,353.79,77.609 +673942,355.87,76.864 +673943,357.86,76.138 +673944,359.79,75.43 +673945,352.44,77.541 +673946,354.53,76.826 +673947,356.55,76.131 +673948,358.49,75.454 +673949,351.09,77.472 +673950,353.2,76.789 +673951,355.23,76.125 +673952,357.19,75.478 +673953,349.75,77.403 +673954,351.87,76.751 +673955,353.92,76.118 +673956,355.9,75.503 +673957,348.4,77.333 +673958,350.54,76.713 +673959,352.61,76.112 +673960,354.59,75.529 +673961,347.06,77.263 +673962,349.22,76.674 +673963,351.29,76.106 +673964,353.29,75.555 +673965,345.72,77.192 +673966,347.89,76.636 +673967,349.97,76.1 +673968,351.99,75.582 +673969,344.38,77.121 +673970,346.56,76.597 +673971,348.66,76.094 +673972,350.68,75.609 +673973,343.04,77.049 +673974,345.23,76.559 +673975,347.34,76.088 +673976,349.38,75.636 +673977,341.7,76.977 +673978,343.9,76.52 +673979,346.02,76.083 +673980,348.07,75.663 +673981,340.36,76.905 +673982,342.58,76.481 +673983,344.71,76.077 +673984,346.76,75.691 +673985,339.03,76.832 +673986,341.25,76.442 +673987,343.39,76.072 +673988,345.45,75.72 +673989,337.7,76.759 +673990,339.93,76.403 +673991,342.07,76.066 +673992,344.13,75.748 +673993,336.37,76.686 +673994,338.6,76.364 +673995,340.75,76.061 +673996,342.82,75.777 +673997,335.04,76.613 +673998,337.28,76.324 +673999,339.43,76.056 +674000,341.5,75.806 +674001,333.71,76.539 +674002,335.96,76.285 +674003,338.11,76.051 +674004,340.19,75.835 +674005,332.39,76.465 +674006,334.63,76.246 +674007,336.79,76.046 +674008,338.87,75.864 +674009,331.07,76.391 +674010,333.31,76.206 +674011,335.47,76.041 +674012,337.55,75.894 +674013,329.75,76.317 +674014,331.99,76.167 +674015,334.15,76.036 +674016,336.22,75.923 +674017,328.43,76.243 +674018,330.67,76.127 +674019,332.82,76.031 +674020,334.9,75.953 +674021,327.11,76.168 +674022,329.35,76.088 +674023,331.5,76.026 +674024,333.57,75.982 +674025,325.79,76.094 +674026,328.03,76.048 +674027,330.18,76.022 +674028,332.25,76.012 +674029,324.48,76.019 +674030,326.71,76.009 +674031,328.85,76.017 +674032,330.92,76.042 +674033,323.16,75.945 +674034,325.39,75.969 +674035,327.53,76.012 +674036,329.59,76.071 +674037,321.85,75.87 +674038,324.07,75.93 +674039,326.2,76.007 +674040,328.26,76.101 +674041,320.54,75.796 +674042,322.75,75.89 +674043,324.88,76.002 +674044,326.92,76.13 +674045,319.24,75.722 +674046,321.44,75.851 +674047,323.55,75.997 +674048,325.59,76.16 +674049,317.93,75.648 +674050,320.12,75.811 +674051,322.22,75.993 +674052,324.25,76.189 +674053,316.62,75.574 +674054,318.8,75.772 +674055,320.9,75.988 +674056,322.91,76.218 +674057,315.32,75.5 +674058,317.49,75.733 +674059,319.57,75.983 +674060,321.57,76.247 +674061,314.02,75.426 +674062,316.17,75.694 +674063,318.24,75.977 +674064,320.23,76.276 +674065,312.72,75.353 +674066,314.86,75.654 +674067,316.91,75.972 +674068,318.89,76.304 +674069,311.42,75.28 +674070,313.55,75.615 +674071,315.58,75.967 +674072,317.55,76.332 +674073,310.13,75.207 +674074,312.23,75.577 +674075,314.25,75.962 +674076,316.2,76.36 +674077,308.83,75.134 +674078,310.92,75.538 +674079,312.92,75.956 +674080,314.85,76.387 +674081,307.54,75.062 +674082,309.61,75.499 +674083,311.59,75.951 +674084,313.5,76.414 +674085,306.25,74.99 +674086,308.3,75.461 +674087,310.26,75.945 +674088,312.15,76.441 +674089,304.96,74.919 +674090,306.99,75.422 +674091,308.93,75.939 +674092,310.8,76.467 +674093,303.67,74.848 +674094,305.68,75.384 +674095,307.6,75.933 +674096,309.45,76.493 +674097,302.39,74.777 +674098,304.37,75.346 +674099,306.27,75.927 +674100,308.1,76.519 +674101,301.1,74.707 +674102,303.06,75.308 +674103,304.93,75.921 +674104,306.74,76.544 +674105,299.82,74.638 +674106,301.75,75.27 +674107,303.6,75.914 +674108,305.38,76.568 +674109,298.54,74.569 +674110,300.44,75.233 +674111,302.27,75.908 +674112,304.02,76.592 +674113,297.25,74.5 +674114,299.13,75.195 +674115,300.93,75.901 +674116,302.66,76.615 +674117,295.98,74.432 +674118,297.82,75.158 +674119,299.6,75.894 +674120,301.3,76.638 +674121,294.7,74.365 +674122,296.52,75.121 +674123,298.26,75.887 +674124,299.94,76.66 +674125,293.42,74.298 +674126,295.21,75.084 +674127,296.93,75.879 +674128,298.58,76.682 +674129,292.15,74.232 +674130,293.9,75.048 +674131,295.59,75.872 +674132,297.21,76.703 +674133,290.87,74.167 +674134,292.6,75.011 +674135,294.25,75.864 +674136,295.84,76.723 +674137,289.6,74.102 +674138,291.29,74.975 +674139,292.92,75.856 +674140,294.48,76.742 +674141,288.33,74.038 +674142,289.99,74.939 +674143,291.58,75.848 +674144,293.11,76.761 +674145,287.06,73.975 +674146,288.68,74.904 +674147,290.24,75.839 +674148,291.74,76.779 +674149,285.79,73.913 +674150,287.38,74.868 +674151,288.9,75.831 +674152,290.37,76.797 +674153,284.53,73.851 +674154,286.08,74.833 +674155,287.57,75.822 +674156,288.99,76.813 +674157,283.26,73.79 +674158,284.77,74.799 +674159,286.23,75.812 +674160,287.62,76.829 +674161,281.99,73.73 +674162,283.47,74.764 +674163,284.89,75.803 +674164,286.25,76.844 +674165,280.73,73.671 +674166,282.17,74.73 +674167,283.55,75.793 +674168,284.87,76.858 +674169,279.47,73.613 +674170,280.87,74.696 +674171,282.21,75.783 +674172,283.49,76.871 +674173,278.21,73.555 +674174,279.57,74.662 +674175,280.87,75.772 +674176,282.12,76.884 +674177,276.95,73.499 +674178,278.27,74.629 +674179,279.53,75.762 +674180,280.74,76.895 +674181,275.69,73.444 +674182,276.96,74.596 +674183,278.19,75.751 +674184,279.36,76.906 +674185,274.43,73.389 +674186,275.66,74.563 +674187,276.85,75.739 +674188,277.98,76.915 +674189,273.17,73.336 +674190,274.36,74.531 +674191,275.5,75.728 +674192,276.59,76.924 +674193,271.91,73.283 +674194,273.06,74.499 +674195,274.16,75.716 +674196,275.21,76.932 +674197,270.66,73.231 +674198,271.76,74.467 +674199,272.82,75.704 +674200,273.83,76.939 +674201,269.4,73.181 +674202,270.47,74.436 +674203,271.48,75.691 +674204,272.44,76.945 +674205,268.15,73.131 +674206,269.17,74.405 +674207,270.14,75.678 +674208,271.06,76.949 +674209,266.9,73.083 +674210,267.87,74.374 +674211,268.79,75.665 +674212,269.67,76.953 +674213,265.64,73.036 +674214,266.57,74.344 +674215,267.45,75.651 +674216,268.29,76.956 +674217,264.39,72.989 +674218,265.27,74.314 +674219,266.11,75.637 +674220,266.9,76.958 +674221,263.14,72.944 +674222,263.97,74.284 +674223,264.76,75.623 +674224,265.51,76.959 +674225,261.89,72.9 +674226,262.68,74.255 +674227,263.42,75.609 +674228,264.12,76.958 +674229,260.64,72.857 +674230,261.38,74.226 +674231,262.08,75.594 +674232,262.73,76.957 +674233,259.39,72.815 +674234,260.08,74.198 +674235,260.73,75.578 +674236,261.34,76.954 +674237,258.14,72.775 +674238,258.79,74.17 +674239,259.39,75.562 +674240,259.95,76.951 +674241,256.89,72.735 +674242,257.49,74.142 +674243,258.04,75.546 +674244,258.56,76.946 +674245,255.65,72.697 +674246,256.19,74.115 +674247,256.7,75.53 +674248,257.17,76.94 +674249,254.4,72.66 +674250,254.9,74.088 +674251,255.35,75.513 +674252,255.78,76.933 +674253,253.15,72.624 +674254,253.6,74.061 +674255,254.01,75.496 +674256,254.38,76.925 +674257,251.9,72.589 +674258,252.3,74.035 +674259,252.67,75.478 +674260,252.99,76.916 +674261,250.66,72.555 +674262,251.01,74.009 +674263,251.32,75.46 +674264,251.6,76.906 +674265,249.41,72.523 +674266,249.71,73.984 +674267,249.98,75.442 +674268,250.21,76.895 +674269,248.17,72.491 +674270,248.42,73.959 +674271,248.63,75.423 +674272,248.81,76.882 +674273,246.92,72.461 +674274,247.12,73.935 +674275,247.29,75.404 +674276,247.42,76.868 +674277,245.67,72.433 +674278,245.82,73.91 +674279,245.94,75.384 +674280,246.02,76.853 +674281,244.43,72.405 +674282,244.53,73.887 +674283,244.6,75.365 +674284,244.63,76.837 +674285,243.18,72.379 +674286,243.23,73.863 +674287,243.25,75.344 +674288,243.24,76.82 +674289,241.94,72.354 +674290,241.94,73.84 +674291,241.9,75.324 +674292,241.84,76.802 +674293,240.69,72.33 +674294,240.64,73.818 +674295,240.56,75.302 +674296,240.45,76.782 +674297,239.44,72.307 +674298,239.35,73.796 +674299,239.21,75.281 +674300,239.05,76.761 +674301,238.2,72.286 +674302,238.05,73.774 +674303,237.87,75.259 +674304,237.66,76.739 +674305,236.95,72.265 +674306,236.75,73.753 +674307,236.52,75.237 +674308,236.26,76.716 +674309,235.71,72.246 +674310,235.46,73.732 +674311,235.18,75.214 +674312,234.87,76.692 +674313,234.46,72.229 +674314,234.16,73.711 +674315,233.83,75.191 +674316,233.47,76.666 +674317,233.21,72.212 +674318,232.87,73.691 +674319,232.49,75.168 +674320,232.08,76.64 +674321,231.97,72.197 +674322,231.57,73.672 +674323,231.15,75.144 +674324,230.69,76.612 +674325,230.72,72.182 +674326,230.28,73.652 +674327,229.8,75.12 +674328,229.29,76.583 +674329,229.47,72.17 +674330,228.98,73.633 +674331,228.46,75.095 +674332,227.9,76.553 +674333,228.22,72.158 +674334,227.68,73.615 +674335,227.11,75.07 +674336,226.51,76.522 +674337,226.98,72.147 +674338,226.39,73.597 +674339,225.77,75.045 +674340,225.11,76.489 +674341,225.73,72.138 +674342,225.09,73.579 +674343,224.42,75.019 +674344,223.72,76.456 +674345,224.48,72.13 +674346,223.8,73.562 +674347,223.08,74.993 +674348,222.33,76.421 +674349,223.23,72.123 +674350,222.5,73.545 +674351,221.74,74.966 +674352,220.94,76.385 +674353,221.98,72.117 +674354,221.2,73.528 +674355,220.39,74.939 +674356,219.55,76.348 +674357,220.73,72.112 +674358,219.9,73.512 +674359,219.05,74.912 +674360,218.16,76.31 +674361,219.47,72.109 +674362,218.61,73.496 +674363,217.71,74.884 +674364,216.77,76.271 +674365,218.22,72.106 +674366,217.31,73.481 +674367,216.36,74.856 +674368,215.38,76.231 +674369,216.97,72.105 +674370,216.01,73.466 +674371,215.02,74.828 +674372,213.99,76.189 +674373,215.71,72.105 +674374,214.72,73.451 +674375,213.68,74.799 +674376,212.6,76.147 +674377,214.46,72.106 +674378,213.42,73.437 +674379,212.34,74.77 +674380,211.21,76.103 +674381,213.2,72.108 +674382,212.12,73.423 +674383,210.99,74.741 +674384,209.83,76.059 +674385,211.95,72.111 +674386,210.82,73.41 +674387,209.65,74.711 +674388,208.44,76.013 +674389,210.69,72.115 +674390,209.52,73.396 +674391,208.31,74.681 +674392,207.06,75.967 +674393,209.43,72.12 +674394,208.22,73.384 +674395,206.97,74.65 +674396,205.67,75.919 +674397,208.17,72.126 +674398,206.92,73.371 +674399,205.63,74.619 +674400,204.29,75.87 +674401,206.91,72.134 +674402,205.62,73.359 +674403,204.29,74.588 +674404,202.91,75.82 +674405,205.65,72.142 +674406,204.32,73.347 +674407,202.95,74.557 +674408,201.53,75.77 +674409,204.39,72.151 +674410,203.02,73.336 +674411,201.61,74.525 +674412,200.15,75.718 +674413,203.13,72.161 +674414,201.72,73.324 +674415,200.27,74.493 +674416,198.77,75.665 +674417,201.86,72.172 +674418,200.42,73.314 +674419,198.93,74.46 +674420,197.39,75.612 +674421,200.6,72.184 +674422,199.12,73.303 +674423,197.59,74.428 +674424,196.01,75.557 +674425,199.33,72.197 +674426,197.82,73.293 +674427,196.26,74.395 +674428,194.64,75.502 +674429,198.06,72.211 +674430,196.52,73.283 +674431,194.92,74.361 +674432,193.26,75.446 +674433,196.79,72.226 +674434,195.21,73.273 +674435,193.58,74.328 +674436,191.89,75.389 +674437,195.52,72.241 +674438,193.91,73.264 +674439,192.24,74.294 +674440,190.52,75.331 +674441,194.25,72.257 +674442,192.61,73.255 +674443,190.91,74.259 +674444,189.14,75.272 +674445,192.98,72.275 +674446,191.3,73.246 +674447,189.57,74.225 +674448,187.77,75.212 +674449,191.71,72.292 +674450,190,73.237 +674451,188.24,74.19 +674452,186.41,75.152 +674453,190.43,72.311 +674454,188.69,73.229 +674455,186.9,74.155 +674456,185.04,75.091 +674457,189.15,72.331 +674458,187.39,73.221 +674459,185.57,74.12 +674460,183.67,75.029 +674461,187.88,72.351 +674462,186.08,73.213 +674463,184.23,74.085 +674464,182.31,74.966 +674465,186.6,72.372 +674466,184.78,73.205 +674467,182.9,74.049 +674468,180.95,74.903 +674469,185.32,72.393 +674470,183.47,73.198 +674471,181.57,74.013 +674472,179.58,74.839 +674473,184.03,72.415 +674474,182.17,73.191 +674475,180.23,73.977 +674476,178.22,74.774 +674477,182.75,72.438 +674478,180.86,73.184 +674479,178.9,73.941 +674480,176.87,74.709 +674481,181.47,72.461 +674482,179.55,73.177 +674483,177.57,73.904 +674484,175.51,74.643 +674485,180.18,72.485 +674486,178.24,73.171 +674487,176.24,73.867 +674488,174.15,74.576 +674489,178.89,72.51 +674490,176.93,73.164 +674491,174.91,73.831 +674492,172.8,74.509 +674493,177.6,72.535 +674494,175.62,73.158 +674495,173.58,73.793 +674496,171.45,74.441 +674497,176.31,72.56 +674498,174.32,73.152 +674499,172.25,73.756 +674500,170.1,74.373 +674501,175.02,72.586 +674502,173,73.146 +674503,170.92,73.719 +674504,168.75,74.304 +674505,173.72,72.612 +674506,171.69,73.141 +674507,169.59,73.681 +674508,167.4,74.235 +674509,172.43,72.639 +674510,170.38,73.135 +674511,168.26,73.644 +674512,166.05,74.165 +674513,171.13,72.666 +674514,169.07,73.13 +674515,166.93,73.606 +674516,164.71,74.095 +674517,169.83,72.694 +674518,167.76,73.125 +674519,165.61,73.568 +674520,163.37,74.025 +674521,168.53,72.722 +674522,166.45,73.119 +674523,164.28,73.53 +674524,162.03,73.954 +674525,167.23,72.75 +674526,165.13,73.114 +674527,162.96,73.491 +674528,160.69,73.883 +674529,165.93,72.779 +674530,163.82,73.109 +674531,161.63,73.453 +674532,159.35,73.811 +674533,164.62,72.807 +674534,162.51,73.105 +674535,160.31,73.415 +674536,158.01,73.739 +674537,163.32,72.836 +674538,161.19,73.1 +674539,158.98,73.376 +674540,156.68,73.667 +674541,162.01,72.865 +674542,159.88,73.095 +674543,157.66,73.338 +674544,155.35,73.595 +674545,160.7,72.895 +674546,158.56,73.09 +674547,156.34,73.299 +674548,154.02,73.522 +674549,159.39,72.924 +674550,157.24,73.086 +674551,155.01,73.26 +674552,152.69,73.449 +674553,158.07,72.954 +674554,155.93,73.081 +674555,153.69,73.222 +674556,151.36,73.377 +674557,156.76,72.984 +674558,154.61,73.077 +674559,152.37,73.183 +674560,150.04,73.304 +674561,155.44,73.013 +674562,153.29,73.072 +674563,151.05,73.144 +674564,148.71,73.23 +674565,154.12,73.043 +674566,151.97,73.068 +674567,149.73,73.105 +674568,147.39,73.157 +674569,152.8,73.073 +674570,150.65,73.063 +674571,148.41,73.067 +674572,146.07,73.084 +674573,151.48,73.103 +674574,149.33,73.059 +674575,147.09,73.028 +674576,144.75,73.011 +674577,150.16,73.132 +674578,148.01,73.055 +674579,145.78,72.989 +674580,143.44,72.937 +674581,148.84,73.162 +674582,146.69,73.05 +674583,144.46,72.95 +674584,142.12,72.864 +674585,147.51,73.192 +674586,145.37,73.046 +674587,143.14,72.911 +674588,140.81,72.791 +674589,146.18,73.221 +674590,144.05,73.041 +674591,141.83,72.873 +674592,139.5,72.718 +674593,144.85,73.25 +674594,142.73,73.036 +674595,140.51,72.834 +674596,138.19,72.645 +674597,143.52,73.279 +674598,141.4,73.032 +674599,139.2,72.795 +674600,136.89,72.572 +674601,142.19,73.308 +674602,140.08,73.027 +674603,137.88,72.757 +674604,135.58,72.499 +674605,140.85,73.337 +674606,138.76,73.022 +674607,136.57,72.718 +674608,134.28,72.427 +674609,139.52,73.365 +674610,137.43,73.017 +674611,135.25,72.68 +674612,132.97,72.355 +674613,138.18,73.393 +674614,136.11,73.012 +674615,133.94,72.642 +674616,131.67,72.283 +674617,136.84,73.421 +674618,134.78,73.007 +674619,132.63,72.603 +674620,130.38,72.211 +674621,135.5,73.448 +674622,133.45,73.002 +674623,131.32,72.565 +674624,129.08,72.14 +674625,134.16,73.476 +674626,132.13,72.997 +674627,130.01,72.527 +674628,127.79,72.069 +674629,132.82,73.502 +674630,130.8,72.991 +674631,128.7,72.489 +674632,126.49,71.998 +674633,131.47,73.528 +674634,129.47,72.986 +674635,127.39,72.452 +674636,125.2,71.928 +674637,130.12,73.554 +674638,128.14,72.98 +674639,126.08,72.414 +674640,123.91,71.858 +674641,128.77,73.58 +674642,126.82,72.974 +674643,124.77,72.377 +674644,122.62,71.788 +674645,127.43,73.604 +674646,125.49,72.968 +674647,123.46,72.339 +674648,121.34,71.719 +674649,126.07,73.629 +674650,124.16,72.962 +674651,122.15,72.302 +674652,120.05,71.651 +674653,124.72,73.652 +674654,122.83,72.956 +674655,120.85,72.265 +674656,118.77,71.583 +674657,123.37,73.676 +674658,121.5,72.949 +674659,119.54,72.228 +674660,117.49,71.516 +674661,122.01,73.698 +674662,120.16,72.942 +674663,118.23,72.192 +674664,116.21,71.449 +674665,120.65,73.72 +674666,118.83,72.936 +674667,116.93,72.156 +674668,114.93,71.383 +674669,119.3,73.742 +674670,117.5,72.928 +674671,115.62,72.119 +674672,113.65,71.317 +674673,117.94,73.762 +674674,116.17,72.921 +674675,114.32,72.084 +674676,112.38,71.252 +674677,116.57,73.782 +674678,114.83,72.913 +674679,113.01,72.048 +674680,111.1,71.188 +674681,115.21,73.802 +674682,113.5,72.906 +674683,111.71,72.012 +674684,109.83,71.124 +674685,113.85,73.82 +674686,112.17,72.897 +674687,110.41,71.977 +674688,108.56,71.061 +674689,112.48,73.838 +674690,110.83,72.889 +674691,109.1,71.942 +674692,107.29,70.999 +674693,111.12,73.855 +674694,109.5,72.881 +674695,107.8,71.907 +674696,106.02,70.938 +674697,109.75,73.871 +674698,108.16,72.872 +674699,106.5,71.873 +674700,104.76,70.877 +674701,108.38,73.887 +674702,106.83,72.863 +674703,105.2,71.839 +674704,103.49,70.818 +674705,107.01,73.902 +674706,105.49,72.853 +674707,103.9,71.805 +674708,102.23,70.759 +674709,105.64,73.915 +674710,104.15,72.844 +674711,102.6,71.771 +674712,100.96,70.701 +674713,104.27,73.928 +674714,102.82,72.834 +674715,101.3,71.738 +674716,99.703,70.644 +674717,102.89,73.94 +674718,101.48,72.823 +674719,99.999,71.705 +674720,98.443,70.587 +674721,101.52,73.952 +674722,100.14,72.813 +674723,98.7,71.672 +674724,97.184,70.532 +674725,100.14,73.962 +674726,98.805,72.802 +674727,97.402,71.64 +674728,95.926,70.477 +674729,98.765,73.971 +674730,97.467,72.791 +674731,96.104,71.608 +674732,94.669,70.424 +674733,97.387,73.98 +674734,96.128,72.779 +674735,94.806,71.576 +674736,93.414,70.371 +674737,96.008,73.987 +674738,94.789,72.767 +674739,93.508,71.544 +674740,92.159,70.32 +674741,94.628,73.994 +674742,93.45,72.755 +674743,92.211,71.513 +674744,90.905,70.269 +674745,93.247,73.999 +674746,92.11,72.743 +674747,90.914,71.482 +674748,89.653,70.22 +674749,91.865,74.003 +674750,90.771,72.73 +674751,89.618,71.452 +674752,88.401,70.171 +674753,90.482,74.007 +674754,89.43,72.717 +674755,88.321,71.422 +674756,87.151,70.124 +674757,89.098,74.009 +674758,88.09,72.703 +674759,87.026,71.392 +674760,85.901,70.077 +674761,87.714,74.011 +674762,86.749,72.69 +674763,85.73,71.363 +674764,84.652,70.032 +674765,86.328,74.011 +674766,85.408,72.675 +674767,84.435,71.334 +674768,83.404,69.988 +674769,84.942,74.01 +674770,84.067,72.661 +674771,83.14,71.305 +674772,82.157,69.945 +674773,83.556,74.008 +674774,82.726,72.646 +674775,81.845,71.277 +674776,80.91,69.903 +674777,82.168,74.005 +674778,81.384,72.631 +674779,80.551,71.249 +674780,79.664,69.862 +674781,80.78,74.001 +674782,80.042,72.615 +674783,79.256,71.221 +674784,78.419,69.822 +674785,79.391,73.996 +674786,78.7,72.599 +674787,77.962,71.194 +674788,77.174,69.783 +674789,78.002,73.99 +674790,77.358,72.582 +674791,76.668,71.167 +674792,75.93,69.746 +674793,76.612,73.983 +674794,76.015,72.566 +674795,75.375,71.141 +674796,74.687,69.71 +674797,75.221,73.974 +674798,74.673,72.548 +674799,74.081,71.115 +674800,73.444,69.674 +674801,73.83,73.964 +674802,73.33,72.531 +674803,72.788,71.089 +674804,72.202,69.641 +674805,72.438,73.953 +674806,71.987,72.513 +674807,71.495,71.064 +674808,70.959,69.608 +674809,71.046,73.942 +674810,70.644,72.494 +674811,70.202,71.039 +674812,69.718,69.576 +674813,69.654,73.928 +674814,69.301,72.476 +674815,68.909,71.014 +674816,68.476,69.546 +674817,68.261,73.914 +674818,67.958,72.457 +674819,67.617,70.99 +674820,67.235,69.517 +674821,66.868,73.899 +674822,66.615,72.437 +674823,66.324,70.967 +674824,65.994,69.489 +674825,65.475,73.882 +674826,65.271,72.417 +674827,65.032,70.943 +674828,64.754,69.462 +674829,64.081,73.864 +674830,63.928,72.397 +674831,63.739,70.92 +674832,63.513,69.436 +674833,62.687,73.845 +674834,62.584,72.376 +674835,62.447,70.898 +674836,62.273,69.412 +674837,61.293,73.825 +674838,61.241,72.355 +674839,61.155,70.876 +674840,61.033,69.389 +674841,59.899,73.804 +674842,59.897,72.333 +674843,59.862,70.854 +674844,59.793,69.367 +674845,58.504,73.781 +674846,58.554,72.312 +674847,58.57,70.833 +674848,58.553,69.346 +674849,57.11,73.758 +674850,57.21,72.289 +674851,57.278,70.812 +674852,57.313,69.327 +674853,55.715,73.733 +674854,55.867,72.267 +674855,55.986,70.791 +674856,56.073,69.309 +674857,54.321,73.707 +674858,54.523,72.243 +674859,54.694,70.771 +674860,54.832,69.292 +674861,52.926,73.68 +674862,53.18,72.22 +674863,53.401,70.752 +674864,53.592,69.276 +674865,51.532,73.651 +674866,51.836,72.196 +674867,52.109,70.732 +674868,52.351,69.261 +674869,50.138,73.622 +674870,50.493,72.172 +674871,50.817,70.713 +674872,51.11,69.248 +674873,48.744,73.591 +674874,49.149,72.147 +674875,49.524,70.695 +674876,49.869,69.236 +674877,47.35,73.559 +674878,47.806,72.122 +674879,48.232,70.677 +674880,48.628,69.225 +674881,45.956,73.526 +674882,46.463,72.097 +674883,46.939,70.659 +674884,47.386,69.215 +674885,44.563,73.492 +674886,45.12,72.071 +674887,45.647,70.642 +674888,46.144,69.206 +674889,43.169,73.457 +674890,43.777,72.044 +674891,44.354,70.625 +674892,44.901,69.199 +674893,41.777,73.42 +674894,42.435,72.018 +674895,43.061,70.608 +674896,43.658,69.193 +674897,40.384,73.383 +674898,41.092,71.991 +674899,41.768,70.592 +674900,42.414,69.187 +674901,38.992,73.344 +674902,39.75,71.963 +674903,40.475,70.576 +674904,41.17,69.183 +674905,37.601,73.304 +674906,38.407,71.936 +674907,39.182,70.561 +674908,39.926,69.181 +674909,36.21,73.263 +674910,37.065,71.908 +674911,37.888,70.546 +674912,38.68,69.179 +674913,34.819,73.221 +674914,35.724,71.879 +674915,36.595,70.531 +674916,37.434,69.178 +674917,33.429,73.178 +674918,34.382,71.85 +674919,35.301,70.517 +674920,36.188,69.179 +674921,32.04,73.134 +674922,33.041,71.821 +674923,34.007,70.503 +674924,34.94,69.18 +674925,30.651,73.089 +674926,31.699,71.791 +674927,32.712,70.489 +674928,33.692,69.183 +674929,29.263,73.043 +674930,30.359,71.762 +674931,31.418,70.476 +674932,32.443,69.187 +674933,27.875,72.995 +674934,29.018,71.731 +674935,30.123,70.463 +674936,31.194,69.192 +674937,26.489,72.947 +674938,27.678,71.701 +674939,28.828,70.45 +674940,29.943,69.197 +674941,25.103,72.898 +674942,26.338,71.67 +674943,27.532,70.438 +674944,28.691,69.204 +674945,23.718,72.848 +674946,24.998,71.638 +674947,26.237,70.426 +674948,27.439,69.212 +674949,22.334,72.796 +674950,23.658,71.607 +674951,24.941,70.415 +674952,26.186,69.221 +674953,20.951,72.744 +674954,22.319,71.575 +674955,23.645,70.403 +674956,24.931,69.231 +674957,19.568,72.691 +674958,20.981,71.542 +674959,22.348,70.392 +674960,23.676,69.241 +674961,18.187,72.637 +674962,19.642,71.51 +674963,21.051,70.382 +674964,22.419,69.253 +674965,16.807,72.582 +674966,18.304,71.477 +674967,19.754,70.371 +674968,21.162,69.266 +674969,15.427,72.526 +674970,16.966,71.444 +674971,18.456,70.361 +674972,19.903,69.279 +674973,14.049,72.469 +674974,15.629,71.41 +674975,17.158,70.352 +674976,18.643,69.293 +674977,12.672,72.411 +674978,14.292,71.377 +674979,15.86,70.342 +674980,17.382,69.309 +674981,11.296,72.353 +674982,12.956,71.342 +674983,14.561,70.333 +674984,16.12,69.325 +674985,9.9213,72.293 +674986,11.62,71.308 +674987,13.262,70.324 +674988,14.857,69.342 +674989,8.5476,72.233 +674990,10.284,71.274 +674991,11.963,70.315 +674992,13.592,69.359 +674993,7.1752,72.172 +674994,8.9486,71.239 +674995,10.663,70.307 +674996,12.326,69.378 +674997,5.8041,72.11 +674998,7.6137,71.203 +674999,9.3627,70.299 +675000,11.059,69.397 +675001,4.4343,72.048 +675002,6.2794,71.168 +675003,8.062,70.291 +675004,9.7904,69.417 +675005,3.0658,71.985 +675006,4.9455,71.132 +675007,6.7608,70.283 +675008,8.5205,69.437 +675009,1.6986,71.921 +675010,3.612,71.097 +675011,5.4592,70.276 +675012,7.2492,69.459 +675013,0.33283,71.856 +675014,2.279,71.061 +675015,4.1572,70.268 +675016,5.9766,69.481 +675017,358.97,71.791 +675018,0.94653,71.024 +675019,2.8547,70.261 +675020,4.7025,69.503 +675021,357.61,71.725 +675022,359.61,70.988 +675023,1.5517,70.255 +675024,3.427,69.527 +675025,356.24,71.659 +675026,358.28,70.951 +675027,0.2483,70.248 +675028,2.15,69.55 +675029,354.88,71.591 +675030,356.95,70.914 +675031,358.94,70.242 +675032,0.87161,69.575 +675033,353.53,71.524 +675034,355.62,70.877 +675035,357.64,70.235 +675036,359.59,69.6 +675037,352.17,71.456 +675038,354.29,70.84 +675039,356.34,70.229 +675040,358.31,69.625 +675041,350.81,71.387 +675042,352.96,70.802 +675043,355.03,70.223 +675044,357.03,69.651 +675045,349.46,71.318 +675046,351.63,70.765 +675047,353.72,70.218 +675048,355.74,69.677 +675049,348.11,71.248 +675050,350.3,70.727 +675051,352.42,70.212 +675052,354.46,69.704 +675053,346.76,71.178 +675054,348.98,70.689 +675055,351.11,70.207 +675056,353.17,69.731 +675057,345.41,71.107 +675058,347.65,70.651 +675059,349.8,70.201 +675060,351.88,69.758 +675061,344.06,71.036 +675062,346.32,70.613 +675063,348.5,70.196 +675064,350.59,69.786 +675065,342.72,70.965 +675066,345,70.574 +675067,347.19,70.191 +675068,349.3,69.815 +675069,341.37,70.893 +675070,343.67,70.536 +675071,345.88,70.186 +675072,348,69.843 +675073,340.03,70.821 +675074,342.35,70.497 +675075,344.57,70.181 +675076,346.71,69.872 +675077,338.69,70.749 +675078,341.02,70.459 +675079,343.26,70.176 +675080,345.41,69.901 +675081,337.35,70.677 +675082,339.7,70.42 +675083,341.95,70.171 +675084,344.11,69.93 +675085,336.01,70.604 +675086,338.38,70.381 +675087,340.64,70.166 +675088,342.81,69.959 +675089,334.68,70.531 +675090,337.05,70.342 +675091,339.32,70.162 +675092,341.51,69.989 +675093,333.35,70.458 +675094,335.73,70.303 +675095,338.01,70.157 +675096,340.2,70.019 +675097,332.01,70.385 +675098,334.41,70.264 +675099,336.7,70.153 +675100,338.9,70.048 +675101,330.68,70.311 +675102,333.09,70.225 +675103,335.39,70.148 +675104,337.59,70.078 +675105,329.36,70.238 +675106,331.77,70.186 +675107,334.07,70.143 +675108,336.28,70.108 +675109,328.03,70.164 +675110,330.45,70.147 +675111,332.76,70.139 +675112,334.97,70.138 +675113,326.71,70.09 +675114,329.13,70.108 +675115,331.44,70.134 +675116,333.66,70.168 +675117,325.38,70.017 +675118,327.81,70.069 +675119,330.13,70.13 +675120,332.35,70.198 +675121,324.06,69.943 +675122,326.49,70.03 +675123,328.81,70.125 +675124,331.03,70.228 +675125,322.75,69.87 +675126,325.18,69.991 +675127,327.49,70.121 +675128,329.71,70.257 +675129,321.43,69.796 +675130,323.86,69.952 +675131,326.18,70.116 +675132,328.39,70.287 +675133,320.11,69.723 +675134,322.54,69.913 +675135,324.86,70.111 +675136,327.07,70.316 +675137,318.8,69.649 +675138,321.23,69.874 +675139,323.54,70.107 +675140,325.75,70.346 +675141,317.49,69.576 +675142,319.91,69.835 +675143,322.22,70.102 +675144,324.43,70.375 +675145,316.18,69.503 +675146,318.6,69.796 +675147,320.9,70.097 +675148,323.1,70.404 +675149,314.87,69.43 +675150,317.29,69.758 +675151,319.58,70.092 +675152,321.77,70.432 +675153,313.57,69.358 +675154,315.97,69.719 +675155,318.26,70.087 +675156,320.45,70.461 +675157,312.27,69.286 +675158,314.66,69.68 +675159,316.94,70.082 +675160,319.11,70.489 +675161,310.96,69.214 +675162,313.35,69.642 +675163,315.62,70.076 +675164,317.78,70.516 +675165,309.66,69.142 +675166,312.04,69.603 +675167,314.29,70.071 +675168,316.45,70.543 +675169,308.37,69.071 +675170,310.73,69.565 +675171,312.97,70.066 +675172,315.11,70.57 +675173,307.07,69 +675174,309.42,69.527 +675175,311.65,70.06 +675176,313.78,70.597 +675177,305.77,68.929 +675178,308.11,69.489 +675179,310.32,70.054 +675180,312.44,70.623 +675181,304.48,68.859 +675182,306.8,69.451 +675183,309,70.048 +675184,311.1,70.648 +675185,303.19,68.79 +675186,305.49,69.413 +675187,307.67,70.042 +675188,309.75,70.674 +675189,301.9,68.72 +675190,304.18,69.376 +675191,306.35,70.036 +675192,308.41,70.698 +675193,300.62,68.652 +675194,302.88,69.339 +675195,305.02,70.029 +675196,307.07,70.722 +675197,299.33,68.584 +675198,301.57,69.301 +675199,303.7,70.023 +675200,305.72,70.746 +675201,298.05,68.516 +675202,300.27,69.264 +675203,302.37,70.016 +675204,304.37,70.768 +675205,296.76,68.449 +675206,298.96,69.227 +675207,301.04,70.009 +675208,303.02,70.791 +675209,295.48,68.383 +675210,297.66,69.191 +675211,299.71,70.001 +675212,301.67,70.812 +675213,294.21,68.317 +675214,296.35,69.154 +675215,298.38,69.994 +675216,300.32,70.833 +675217,292.93,68.252 +675218,295.05,69.118 +675219,297.06,69.986 +675220,298.96,70.854 +675221,291.65,68.188 +675222,293.75,69.082 +675223,295.73,69.978 +675224,297.61,70.873 +675225,290.38,68.124 +675226,292.44,69.046 +675227,294.4,69.97 +675228,296.25,70.892 +675229,289.11,68.061 +675230,291.14,69.011 +675231,293.06,69.961 +675232,294.89,70.91 +675233,287.84,67.999 +675234,289.84,68.976 +675235,291.73,69.953 +675236,293.53,70.928 +675237,286.57,67.937 +675238,288.54,68.941 +675239,290.4,69.944 +675240,292.17,70.944 +675241,285.3,67.877 +675242,287.24,68.906 +675243,289.07,69.934 +675244,290.81,70.96 +675245,284.04,67.817 +675246,285.94,68.871 +675247,287.74,69.925 +675248,289.44,70.975 +675249,282.77,67.758 +675250,284.64,68.837 +675251,286.4,69.915 +675252,288.08,70.989 +675253,281.51,67.7 +675254,283.34,68.803 +675255,285.07,69.905 +675256,286.71,71.002 +675257,280.25,67.642 +675258,282.04,68.77 +675259,283.74,69.894 +675260,285.34,71.014 +675261,278.99,67.586 +675262,280.74,68.736 +675263,282.4,69.884 +675264,283.97,71.026 +675265,277.73,67.53 +675266,279.45,68.703 +675267,281.07,69.872 +675268,282.6,71.036 +675269,276.47,67.476 +675270,278.15,68.671 +675271,279.73,69.861 +675272,281.23,71.046 +675273,275.21,67.422 +675274,276.85,68.638 +675275,278.4,69.849 +675276,279.86,71.054 +675277,273.96,67.37 +675278,275.56,68.606 +675279,277.06,69.837 +675280,278.49,71.062 +675281,272.71,67.318 +675282,274.26,68.574 +675283,275.73,69.825 +675284,277.11,71.068 +675285,271.45,67.268 +675286,272.96,68.543 +675287,274.39,69.812 +675288,275.73,71.074 +675289,270.2,67.218 +675290,271.67,68.512 +675291,273.05,69.799 +675292,274.36,71.079 +675293,268.95,67.17 +675294,270.37,68.481 +675295,271.71,69.786 +675296,272.98,71.082 +675297,267.7,67.122 +675298,269.08,68.451 +675299,270.38,69.772 +675300,271.6,71.085 +675301,266.45,67.076 +675302,267.79,68.421 +675303,269.04,69.758 +675304,270.22,71.086 +675305,265.21,67.03 +675306,266.49,68.391 +675307,267.7,69.743 +675308,268.84,71.087 +675309,263.96,66.986 +675310,265.2,68.361 +675311,266.36,69.729 +675312,267.46,71.086 +675313,262.72,66.943 +675314,263.91,68.332 +675315,265.02,69.713 +675316,266.07,71.084 +675317,261.47,66.901 +675318,262.61,68.304 +675319,263.68,69.698 +675320,264.69,71.081 +675321,260.23,66.86 +675322,261.32,68.276 +675323,262.35,69.682 +675324,263.31,71.077 +675325,258.99,66.821 +675326,260.03,68.248 +675327,261.01,69.665 +675328,261.92,71.072 +675329,257.75,66.782 +675330,258.74,68.22 +675331,259.67,69.649 +675332,260.53,71.066 +675333,256.5,66.745 +675334,257.45,68.193 +675335,258.33,69.631 +675336,259.15,71.058 +675337,255.26,66.709 +675338,256.16,68.166 +675339,256.99,69.614 +675340,257.76,71.05 +675341,254.02,66.674 +675342,254.86,68.14 +675343,255.64,69.596 +675344,256.37,71.04 +675345,252.79,66.64 +675346,253.57,68.114 +675347,254.3,69.578 +675348,254.98,71.029 +675349,251.55,66.607 +675350,252.28,68.088 +675351,252.96,69.559 +675352,253.59,71.017 +675353,250.31,66.576 +675354,250.99,68.063 +675355,251.62,69.54 +675356,252.2,71.004 +675357,249.07,66.545 +675358,249.7,68.038 +675359,250.28,69.52 +675360,250.81,70.99 +675361,247.83,66.516 +675362,248.41,68.014 +675363,248.94,69.5 +675364,249.42,70.974 +675365,246.6,66.489 +675366,247.12,67.99 +675367,247.6,69.48 +675368,248.03,70.957 +675369,245.36,66.462 +675370,245.83,67.966 +675371,246.26,69.459 +675372,246.64,70.939 +675373,244.13,66.437 +675374,244.54,67.943 +675375,244.91,69.438 +675376,245.24,70.92 +675377,242.89,66.412 +675378,243.25,67.92 +675379,243.57,69.416 +675380,243.85,70.9 +675381,241.66,66.39 +675382,241.96,67.898 +675383,242.23,69.395 +675384,242.46,70.878 +675385,240.42,66.368 +675386,240.67,67.876 +675387,240.89,69.372 +675388,241.06,70.855 +675389,239.18,66.347 +675390,239.39,67.854 +675391,239.55,69.349 +675392,239.67,70.831 +675393,237.95,66.328 +675394,238.1,67.833 +675395,238.2,69.326 +675396,238.28,70.806 +675397,236.72,66.31 +675398,236.81,67.812 +675399,236.86,69.303 +675400,236.88,70.78 +675401,235.48,66.293 +675402,235.52,67.792 +675403,235.52,69.278 +675404,235.49,70.752 +675405,234.25,66.278 +675406,234.23,67.772 +675407,234.18,69.254 +675408,234.09,70.724 +675409,233.01,66.263 +675410,232.94,67.752 +675411,232.84,69.229 +675412,232.7,70.694 +675413,231.78,66.25 +675414,231.65,67.733 +675415,231.49,69.204 +675416,231.31,70.663 +675417,230.54,66.238 +675418,230.36,67.714 +675419,230.15,69.178 +675420,229.91,70.63 +675421,229.3,66.228 +675422,229.07,67.695 +675423,228.81,69.152 +675424,228.52,70.597 +675425,228.07,66.218 +675426,227.78,67.677 +675427,227.47,69.126 +675428,227.12,70.562 +675429,226.83,66.21 +675430,226.49,67.66 +675431,226.13,69.099 +675432,225.73,70.526 +675433,225.6,66.203 +675434,225.21,67.642 +675435,224.78,69.072 +675436,224.34,70.489 +675437,224.36,66.197 +675438,223.92,67.626 +675439,223.44,69.044 +675440,222.94,70.451 +675441,223.12,66.192 +675442,222.63,67.609 +675443,222.1,69.016 +675444,221.55,70.412 +675445,221.89,66.188 +675446,221.34,67.593 +675447,220.76,68.988 +675448,220.15,70.371 +675449,220.65,66.186 +675450,220.05,67.577 +675451,219.42,68.959 +675452,218.76,70.33 +675453,219.41,66.184 +675454,218.76,67.562 +675455,218.08,68.93 +675456,217.37,70.287 +675457,218.17,66.184 +675458,217.47,67.547 +675459,216.74,68.9 +675460,215.98,70.243 +675461,216.93,66.185 +675462,216.18,67.532 +675463,215.4,68.87 +675464,214.59,70.198 +675465,215.69,66.187 +675466,214.89,67.518 +675467,214.05,68.84 +675468,213.19,70.152 +675469,214.45,66.19 +675470,213.6,67.504 +675471,212.71,68.809 +675472,211.8,70.105 +675473,213.21,66.194 +675474,212.31,67.49 +675475,211.37,68.778 +675476,210.41,70.057 +675477,211.97,66.199 +675478,211.01,67.477 +675479,210.03,68.747 +675480,209.02,70.008 +675481,210.72,66.205 +675482,209.72,67.464 +675483,208.69,68.715 +675484,207.64,69.958 +675485,209.48,66.212 +675486,208.43,67.451 +675487,207.36,68.683 +675488,206.25,69.906 +675489,208.23,66.22 +675490,207.14,67.439 +675491,206.02,68.65 +675492,204.86,69.854 +675493,206.99,66.23 +675494,205.85,67.427 +675495,204.68,68.618 +675496,203.47,69.801 +675497,205.74,66.24 +675498,204.56,67.415 +675499,203.34,68.585 +675500,202.09,69.747 +675501,204.49,66.251 +675502,203.26,67.404 +675503,202,68.551 +675504,200.7,69.691 +675505,203.24,66.263 +675506,201.97,67.393 +675507,200.66,68.517 +675508,199.32,69.635 +675509,201.99,66.276 +675510,200.68,67.382 +675511,199.32,68.483 +675512,197.93,69.578 +675513,200.74,66.29 +675514,199.38,67.371 +675515,197.99,68.449 +675516,196.55,69.52 +675517,199.49,66.304 +675518,198.09,67.361 +675519,196.65,68.414 +675520,195.17,69.461 +675521,198.24,66.32 +675522,196.8,67.351 +675523,195.31,68.379 +675524,193.79,69.402 +675525,196.98,66.336 +675526,195.5,67.342 +675527,193.98,68.344 +675528,192.41,69.341 +675529,195.73,66.354 +675530,194.21,67.333 +675531,192.64,68.308 +675532,191.03,69.28 +675533,194.47,66.372 +675534,192.91,67.323 +675535,191.31,68.272 +675536,189.65,69.217 +675537,193.21,66.39 +675538,191.61,67.315 +675539,189.97,68.236 +675540,188.28,69.154 +675541,191.96,66.41 +675542,190.32,67.306 +675543,188.64,68.2 +675544,186.9,69.09 +675545,190.7,66.43 +675546,189.02,67.298 +675547,187.3,68.163 +675548,185.53,69.026 +675549,189.43,66.451 +675550,187.73,67.29 +675551,185.97,68.126 +675552,184.16,68.961 +675553,188.17,66.473 +675554,186.43,67.282 +675555,184.63,68.089 +675556,182.78,68.895 +675557,186.91,66.495 +675558,185.13,67.274 +675559,183.3,68.052 +675560,181.41,68.828 +675561,185.64,66.518 +675562,183.83,67.266 +675563,181.97,68.014 +675564,180.05,68.76 +675565,184.37,66.541 +675566,182.53,67.259 +675567,180.64,67.977 +675568,178.68,68.692 +675569,183.1,66.566 +675570,181.23,67.252 +675571,179.31,67.939 +675572,177.31,68.624 +675573,181.83,66.59 +675574,179.93,67.245 +675575,177.98,67.9 +675576,175.95,68.554 +675577,180.56,66.615 +675578,178.63,67.238 +675579,176.64,67.862 +675580,174.58,68.485 +675581,179.29,66.641 +675582,177.33,67.232 +675583,175.31,67.823 +675584,173.22,68.414 +675585,178.01,66.667 +675586,176.03,67.225 +675587,173.99,67.784 +675588,171.86,68.343 +675589,176.74,66.694 +675590,174.73,67.219 +675591,172.66,67.746 +675592,170.5,68.272 +675593,175.46,66.721 +675594,173.43,67.213 +675595,171.33,67.706 +675596,169.15,68.2 +675597,174.18,66.748 +675598,172.13,67.207 +675599,170,67.667 +675600,167.79,68.128 +675601,172.9,66.776 +675602,170.82,67.201 +675603,168.67,67.628 +675604,166.44,68.055 +675605,171.62,66.804 +675606,169.52,67.195 +675607,167.35,67.588 +675608,165.09,67.982 +675609,170.33,66.832 +675610,168.22,67.19 +675611,166.02,67.549 +675612,163.74,67.909 +675613,169.05,66.861 +675614,166.91,67.184 +675615,164.69,67.509 +675616,162.39,67.835 +675617,167.76,66.89 +675618,165.61,67.178 +675619,163.37,67.469 +675620,161.04,67.761 +675621,166.47,66.919 +675622,164.3,67.173 +675623,162.05,67.429 +675624,159.69,67.686 +675625,165.18,66.949 +675626,162.99,67.168 +675627,160.72,67.389 +675628,158.35,67.612 +675629,163.89,66.978 +675630,161.69,67.162 +675631,159.4,67.349 +675632,157.01,67.537 +675633,162.59,67.008 +675634,160.38,67.157 +675635,158.08,67.308 +675636,155.67,67.462 +675637,161.3,67.038 +675638,159.07,67.152 +675639,156.75,67.268 +675640,154.33,67.386 +675641,160,67.067 +675642,157.76,67.147 +675643,155.43,67.228 +675644,152.99,67.311 +675645,158.7,67.097 +675646,156.45,67.141 +675647,154.11,67.187 +675648,151.66,67.235 +675649,157.4,67.127 +675650,155.14,67.136 +675651,152.79,67.147 +675652,150.33,67.16 +675653,156.1,67.157 +675654,153.83,67.131 +675655,151.47,67.107 +675656,149,67.084 +675657,154.79,67.187 +675658,152.52,67.126 +675659,150.15,67.066 +675660,147.67,67.008 +675661,153.49,67.217 +675662,151.21,67.121 +675663,148.83,67.026 +675664,146.34,66.933 +675665,152.18,67.247 +675666,149.9,67.115 +675667,147.52,66.985 +675668,145.01,66.857 +675669,150.87,67.277 +675670,148.59,67.11 +675671,146.2,66.945 +675672,143.69,66.781 +675673,149.56,67.306 +675674,147.27,67.105 +675675,144.88,66.904 +675676,142.37,66.706 +675677,148.24,67.336 +675678,145.96,67.099 +675679,143.57,66.864 +675680,141.05,66.63 +675681,146.93,67.365 +675682,144.65,67.094 +675683,142.25,66.824 +675684,139.73,66.555 +675685,145.61,67.394 +675686,143.33,67.088 +675687,140.94,66.784 +675688,138.42,66.48 +675689,144.29,67.422 +675690,142.02,67.083 +675691,139.62,66.743 +675692,137.1,66.405 +675693,142.97,67.451 +675694,140.7,67.077 +675695,138.31,66.703 +675696,135.79,66.33 +675697,141.65,67.479 +675698,139.38,67.071 +675699,137,66.663 +675700,134.48,66.255 +675701,140.33,67.507 +675702,138.07,67.065 +675703,135.69,66.623 +675704,133.17,66.181 +675705,139,67.534 +675706,136.75,67.059 +675707,134.38,66.583 +675708,131.87,66.107 +675709,137.68,67.561 +675710,135.43,67.053 +675711,133.06,66.543 +675712,130.56,66.034 +675713,136.35,67.588 +675714,134.11,67.046 +675715,131.75,66.504 +675716,129.26,65.961 +675717,135.02,67.614 +675718,132.79,67.04 +675719,130.44,66.464 +675720,127.96,65.888 +675721,133.69,67.64 +675722,131.47,67.033 +675723,129.14,66.425 +675724,126.66,65.815 +675725,132.35,67.665 +675726,130.15,67.026 +675727,127.83,66.386 +675728,125.37,65.743 +675729,131.02,67.689 +675730,128.83,67.019 +675731,126.52,66.347 +675732,124.07,65.672 +675733,129.68,67.714 +675734,127.51,67.012 +675735,125.21,66.308 +675736,122.78,65.601 +675737,128.34,67.737 +675738,126.19,67.005 +675739,123.91,66.269 +675740,121.49,65.53 +675741,127,67.76 +675742,124.86,66.997 +675743,122.6,66.23 +675744,120.2,65.46 +675745,125.66,67.782 +675746,123.54,66.989 +675747,121.3,66.192 +675748,118.91,65.391 +675749,124.32,67.804 +675750,122.21,66.981 +675751,119.99,66.154 +675752,117.63,65.322 +675753,122.97,67.825 +675754,120.89,66.973 +675755,118.69,66.116 +675756,116.35,65.254 +675757,121.63,67.845 +675758,119.57,66.964 +675759,117.38,66.078 +675760,115.07,65.187 +675761,120.28,67.865 +675762,118.24,66.956 +675763,116.08,66.04 +675764,113.79,65.12 +675765,118.93,67.884 +675766,116.91,66.947 +675767,114.78,66.003 +675768,112.51,65.054 +675769,117.58,67.902 +675770,115.59,66.937 +675771,113.48,65.966 +675772,111.23,64.989 +675773,116.23,67.92 +675774,114.26,66.928 +675775,112.18,65.929 +675776,109.96,64.924 +675777,114.87,67.936 +675778,112.93,66.918 +675779,110.88,65.893 +675780,108.69,64.86 +675781,113.52,67.952 +675782,111.6,66.908 +675783,109.58,65.856 +675784,107.42,64.797 +675785,112.16,67.967 +675786,110.28,66.898 +675787,108.28,65.82 +675788,106.15,64.735 +675789,110.8,67.981 +675790,108.95,66.887 +675791,106.98,65.784 +675792,104.88,64.674 +675793,109.44,67.994 +675794,107.62,66.876 +675795,105.68,65.749 +675796,103.61,64.613 +675797,108.08,68.006 +675798,106.29,66.865 +675799,104.38,65.714 +675800,102.35,64.554 +675801,106.72,68.017 +675802,104.96,66.853 +675803,103.09,65.679 +675804,101.09,64.495 +675805,105.35,68.028 +675806,103.63,66.841 +675807,101.79,65.644 +675808,99.827,64.437 +675809,103.99,68.037 +675810,102.29,66.829 +675811,100.49,65.61 +675812,98.568,64.38 +675813,102.62,68.046 +675814,100.96,66.816 +675815,99.197,65.576 +675816,97.31,64.324 +675817,101.26,68.053 +675818,99.631,66.803 +675819,97.902,65.542 +675820,96.054,64.27 +675821,99.886,68.059 +675822,98.298,66.79 +675823,96.607,65.509 +675824,94.799,64.216 +675825,98.516,68.065 +675826,96.965,66.777 +675827,95.313,65.475 +675828,93.545,64.163 +675829,97.145,68.069 +675830,95.632,66.763 +675831,94.019,65.443 +675832,92.293,64.111 +675833,95.772,68.073 +675834,94.298,66.748 +675835,92.726,65.41 +675836,91.043,64.06 +675837,94.398,68.075 +675838,92.964,66.733 +675839,91.433,65.378 +675840,89.793,64.01 +675841,93.024,68.076 +675842,91.629,66.718 +675843,90.14,65.347 +675844,88.545,63.962 +675845,91.648,68.076 +675846,90.294,66.703 +675847,88.848,65.315 +675848,87.298,63.914 +675849,90.271,68.075 +675850,88.959,66.687 +675851,87.557,65.284 +675852,86.052,63.868 +675853,88.893,68.073 +675854,87.623,66.671 +675855,86.265,65.254 +675856,84.808,63.823 +675857,87.514,68.069 +675858,86.287,66.654 +675859,84.974,65.224 +675860,83.564,63.779 +675861,86.134,68.065 +675862,84.951,66.637 +675863,83.684,65.194 +675864,82.322,63.736 +675865,84.753,68.059 +675866,83.615,66.62 +675867,82.394,65.164 +675868,81.081,63.694 +675869,83.371,68.053 +675870,82.278,66.602 +675871,81.104,65.135 +675872,79.84,63.653 +675873,81.989,68.045 +675874,80.94,66.584 +675875,79.814,65.106 +675876,78.601,63.614 +675877,80.605,68.036 +675878,79.603,66.565 +675879,78.525,65.078 +675880,77.363,63.575 +675881,79.221,68.025 +675882,78.265,66.546 +675883,77.236,65.05 +675884,76.125,63.538 +675885,77.836,68.014 +675886,76.927,66.527 +675887,75.948,65.023 +675888,74.888,63.502 +675889,76.45,68.001 +675890,75.589,66.507 +675891,74.659,64.995 +675892,73.653,63.468 +675893,75.063,67.987 +675894,74.251,66.486 +675895,73.371,64.969 +675896,72.417,63.434 +675897,73.676,67.972 +675898,72.912,66.466 +675899,72.083,64.942 +675900,71.183,63.402 +675901,72.288,67.956 +675902,71.573,66.445 +675903,70.796,64.916 +675904,69.949,63.371 +675905,70.899,67.938 +675906,70.234,66.423 +675907,69.508,64.891 +675908,68.716,63.342 +675909,69.51,67.919 +675910,68.895,66.401 +675911,68.221,64.866 +675912,67.483,63.313 +675913,68.12,67.899 +675914,67.556,66.379 +675915,66.934,64.841 +675916,66.251,63.286 +675917,66.73,67.878 +675918,66.216,66.356 +675919,65.648,64.816 +675920,65.02,63.26 +675921,65.339,67.855 +675922,64.876,66.333 +675923,64.361,64.792 +675924,63.789,63.235 +675925,63.948,67.831 +675926,63.537,66.309 +675927,63.075,64.769 +675928,62.558,63.212 +675929,62.556,67.806 +675930,62.197,66.285 +675931,61.788,64.746 +675932,61.327,63.19 +675933,61.164,67.78 +675934,60.857,66.26 +675935,60.502,64.723 +675936,60.097,63.169 +675937,59.772,67.753 +675938,59.517,66.236 +675939,59.216,64.701 +675940,58.868,63.149 +675941,58.38,67.724 +675942,58.176,66.21 +675943,57.93,64.679 +675944,57.638,63.131 +675945,56.987,67.694 +675946,56.836,66.184 +675947,56.644,64.657 +675948,56.408,63.113 +675949,55.594,67.663 +675950,55.496,66.158 +675951,55.359,64.636 +675952,55.179,63.098 +675953,54.2,67.63 +675954,54.156,66.131 +675955,54.073,64.615 +675956,53.95,63.083 +675957,52.807,67.596 +675958,52.815,66.104 +675959,52.787,64.595 +675960,52.721,63.069 +675961,51.413,67.562 +675962,51.475,66.077 +675963,51.502,64.575 +675964,51.491,63.057 +675965,50.019,67.525 +675966,50.135,66.049 +675967,50.216,64.556 +675968,50.262,63.046 +675969,48.626,67.488 +675970,48.794,66.021 +675971,48.93,64.536 +675972,49.033,63.037 +675973,47.232,67.45 +675974,47.454,65.992 +675975,47.645,64.518 +675976,47.803,63.028 +675977,45.838,67.41 +675978,46.114,65.963 +675979,46.359,64.499 +675980,46.573,63.021 +675981,44.445,67.369 +675982,44.774,65.933 +675983,45.073,64.481 +675984,45.343,63.014 +675985,43.051,67.327 +675986,43.433,65.903 +675987,43.788,64.464 +675988,44.113,63.01 +675989,41.658,67.283 +675990,42.093,65.873 +675991,42.502,64.447 +675992,42.882,63.006 +675993,40.264,67.239 +675994,40.753,65.842 +675995,41.216,64.43 +675996,41.651,63.003 +675997,38.871,67.193 +675998,39.414,65.811 +675999,39.93,64.413 +676000,40.42,63.002 +676001,37.479,67.147 +676002,38.074,65.779 +676003,38.644,64.397 +676004,39.188,63.001 +676005,36.086,67.099 +676006,36.734,65.747 +676007,37.358,64.382 +676008,37.956,63.002 +676009,34.694,67.05 +676010,35.395,65.715 +676011,36.071,64.366 +676012,36.723,63.004 +676013,33.302,67 +676014,34.056,65.682 +676015,34.785,64.351 +676016,35.489,63.007 +676017,31.911,66.948 +676018,32.717,65.649 +676019,33.498,64.337 +676020,34.255,63.011 +676021,30.52,66.896 +676022,31.378,65.616 +676023,32.211,64.322 +676024,33.021,63.017 +676025,29.13,66.843 +676026,30.039,65.582 +676027,30.924,64.308 +676028,31.785,63.023 +676029,27.74,66.788 +676030,28.701,65.548 +676031,29.637,64.295 +676032,30.549,63.03 +676033,26.351,66.733 +676034,27.363,65.513 +676035,28.349,64.281 +676036,29.312,63.039 +676037,24.962,66.676 +676038,26.025,65.478 +676039,27.061,64.268 +676040,28.074,63.048 +676041,23.574,66.618 +676042,24.687,65.443 +676043,25.774,64.256 +676044,26.835,63.058 +676045,22.187,66.56 +676046,23.35,65.407 +676047,24.485,64.243 +676048,25.596,63.07 +676049,20.8,66.5 +676050,22.013,65.371 +676051,23.197,64.231 +676052,24.355,63.082 +676053,19.415,66.44 +676054,20.676,65.335 +676055,21.908,64.22 +676056,23.114,63.095 +676057,18.03,66.379 +676058,19.339,65.299 +676059,20.619,64.208 +676060,21.871,63.109 +676061,16.645,66.316 +676062,18.003,65.262 +676063,19.33,64.197 +676064,20.628,63.124 +676065,15.262,66.253 +676066,16.667,65.224 +676067,18.04,64.186 +676068,19.383,63.14 +676069,13.88,66.189 +676070,15.332,65.187 +676071,16.75,64.176 +676072,18.138,63.157 +676073,12.498,66.124 +676074,13.997,65.149 +676075,15.459,64.165 +676076,16.891,63.174 +676077,11.118,66.058 +676078,12.662,65.111 +676079,14.169,64.155 +676080,15.643,63.192 +676081,9.7383,65.991 +676082,11.327,65.073 +676083,12.878,64.145 +676084,14.394,63.212 +676085,8.36,65.924 +676086,9.9934,65.034 +676087,11.586,64.136 +676088,13.143,63.231 +676089,6.9827,65.856 +676090,8.6598,64.995 +676091,10.294,64.127 +676092,11.891,63.252 +676093,5.6065,65.787 +676094,7.3266,64.956 +676095,9.0021,64.117 +676096,10.638,63.273 +676097,4.2316,65.717 +676098,5.9938,64.916 +676099,7.7095,64.109 +676100,9.3841,63.295 +676101,2.8578,65.646 +676102,4.6615,64.877 +676103,6.4164,64.1 +676104,8.1284,63.318 +676105,1.4852,65.575 +676106,3.3297,64.837 +676107,5.123,64.091 +676108,6.8714,63.341 +676109,0.11395,65.504 +676110,1.9983,64.797 +676111,3.8291,64.083 +676112,5.613,63.365 +676113,358.74,65.431 +676114,0.66732,64.756 +676115,2.5347,64.075 +676116,4.3531,63.389 +676117,357.38,65.358 +676118,359.34,64.716 +676119,1.2399,64.067 +676120,3.0919,63.414 +676121,356.01,65.284 +676122,358.01,64.675 +676123,359.94,64.06 +676124,1.8291,63.44 +676125,354.64,65.21 +676126,356.68,64.634 +676127,358.65,64.052 +676128,0.56488,63.466 +676129,353.28,65.136 +676130,355.35,64.593 +676131,357.35,64.045 +676132,359.3,63.492 +676133,351.91,65.06 +676134,354.02,64.551 +676135,356.06,64.037 +676136,358.03,63.519 +676137,350.55,64.985 +676138,352.69,64.51 +676139,354.76,64.03 +676140,356.76,63.547 +676141,349.19,64.908 +676142,351.36,64.468 +676143,353.46,64.023 +676144,355.49,63.575 +676145,347.83,64.832 +676146,350.04,64.426 +676147,352.16,64.016 +676148,354.22,63.603 +676149,346.48,64.755 +676150,348.71,64.385 +676151,350.86,64.009 +676152,352.95,63.631 +676153,345.12,64.677 +676154,347.39,64.342 +676155,349.57,64.003 +676156,351.67,63.66 +676157,343.77,64.6 +676158,346.06,64.3 +676159,348.27,63.996 +676160,350.39,63.689 +676161,342.42,64.522 +676162,344.74,64.258 +676163,346.97,63.99 +676164,349.12,63.718 +676165,341.07,64.443 +676166,343.41,64.216 +676167,345.66,63.983 +676168,347.84,63.748 +676169,339.72,64.365 +676170,342.09,64.173 +676171,344.36,63.977 +676172,346.55,63.777 +676173,338.37,64.286 +676174,340.77,64.13 +676175,343.06,63.97 +676176,345.27,63.807 +676177,337.03,64.207 +676178,339.44,64.088 +676179,341.76,63.964 +676180,343.99,63.837 +676181,335.68,64.128 +676182,338.12,64.045 +676183,340.46,63.958 +676184,342.7,63.867 +676185,334.34,64.048 +676186,336.8,64.002 +676187,339.15,63.951 +676188,341.41,63.897 +676189,333,63.969 +676190,335.48,63.959 +676191,337.85,63.945 +676192,340.12,63.927 +676193,331.66,63.889 +676194,334.16,63.917 +676195,336.54,63.939 +676196,338.83,63.958 +676197,330.33,63.81 +676198,332.84,63.874 +676199,335.24,63.933 +676200,337.53,63.988 +676201,328.99,63.73 +676202,331.52,63.831 +676203,333.93,63.926 +676204,336.24,64.018 +676205,327.66,63.651 +676206,330.21,63.788 +676207,332.63,63.92 +676208,334.94,64.048 +676209,326.33,63.571 +676210,328.89,63.745 +676211,331.32,63.914 +676212,333.64,64.078 +676213,325,63.491 +676214,327.57,63.702 +676215,330.01,63.907 +676216,332.34,64.108 +676217,323.68,63.412 +676218,326.26,63.659 +676219,328.7,63.901 +676220,331.04,64.137 +676221,322.35,63.333 +676222,324.94,63.617 +676223,327.39,63.894 +676224,329.73,64.167 +676225,321.03,63.253 +676226,323.63,63.574 +676227,326.08,63.888 +676228,328.43,64.196 +676229,319.71,63.174 +676230,322.31,63.531 +676231,324.77,63.881 +676232,327.12,64.225 +676233,318.39,63.096 +676234,321,63.488 +676235,323.46,63.874 +676236,325.81,64.254 +676237,317.08,63.017 +676238,319.69,63.446 +676239,322.15,63.867 +676240,324.5,64.282 +676241,315.76,62.939 +676242,318.37,63.403 +676243,320.84,63.86 +676244,323.19,64.31 +676245,314.45,62.861 +676246,317.06,63.361 +676247,319.53,63.853 +676248,321.87,64.338 +676249,313.14,62.783 +676250,315.75,63.319 +676251,318.22,63.846 +676252,320.55,64.365 +676253,311.83,62.706 +676254,314.44,63.276 +676255,316.9,63.838 +676256,319.23,64.392 +676257,310.52,62.629 +676258,313.13,63.234 +676259,315.59,63.831 +676260,317.91,64.419 +676261,309.22,62.553 +676262,311.82,63.192 +676263,314.27,63.823 +676264,316.59,64.445 +676265,307.92,62.477 +676266,310.52,63.151 +676267,312.96,63.815 +676268,315.27,64.47 +676269,306.62,62.401 +676270,309.21,63.109 +676271,311.64,63.807 +676272,313.94,64.495 +676273,305.32,62.326 +676274,307.9,63.067 +676275,310.33,63.798 +676276,312.62,64.519 +676277,304.02,62.251 +676278,306.6,63.026 +676279,309.01,63.79 +676280,311.29,64.543 +676281,302.73,62.177 +676282,305.29,62.985 +676283,307.69,63.781 +676284,309.96,64.567 +676285,301.44,62.104 +676286,303.99,62.944 +676287,306.37,63.772 +676288,308.62,64.589 +676289,300.15,62.031 +676290,302.68,62.903 +676291,305.06,63.763 +676292,307.29,64.611 +676293,298.86,61.959 +676294,301.38,62.863 +676295,303.74,63.754 +676296,305.96,64.632 +676297,297.57,61.888 +676298,300.08,62.822 +676299,302.42,63.744 +676300,304.62,64.653 +676301,296.29,61.817 +676302,298.77,62.782 +676303,301.1,63.734 +676304,303.28,64.673 +676305,295,61.747 +676306,297.47,62.742 +676307,299.78,63.724 +676308,301.94,64.692 +676309,293.72,61.677 +676310,296.17,62.703 +676311,298.45,63.714 +676312,300.6,64.71 +676313,292.45,61.609 +676314,294.87,62.663 +676315,297.13,63.703 +676316,299.25,64.728 +676317,291.17,61.541 +676318,293.57,62.624 +676319,295.81,63.692 +676320,297.91,64.744 +676321,289.89,61.474 +676322,292.27,62.585 +676323,294.49,63.681 +676324,296.56,64.76 +676325,288.62,61.408 +676326,290.97,62.547 +676327,293.16,63.669 +676328,295.21,64.775 +676329,287.35,61.343 +676330,289.68,62.508 +676331,291.84,63.657 +676332,293.86,64.789 +676333,286.08,61.278 +676334,288.38,62.47 +676335,290.51,63.645 +676336,292.51,64.802 +676337,284.81,61.215 +676338,287.08,62.432 +676339,289.19,63.632 +676340,291.16,64.815 +676341,283.55,61.152 +676342,285.79,62.395 +676343,287.86,63.62 +676344,289.8,64.826 +676345,282.29,61.091 +676346,284.49,62.358 +676347,286.54,63.606 +676348,288.45,64.836 +676349,281.02,61.03 +676350,283.2,62.321 +676351,285.21,63.593 +676352,287.09,64.846 +676353,279.76,60.97 +676354,281.9,62.284 +676355,283.88,63.579 +676356,285.73,64.854 +676357,278.51,60.912 +676358,280.61,62.248 +676359,282.56,63.565 +676360,284.37,64.861 +676361,277.25,60.854 +676362,279.31,62.212 +676363,281.23,63.55 +676364,283.01,64.867 +676365,275.99,60.798 +676366,278.02,62.177 +676367,279.9,63.535 +676368,281.65,64.873 +676369,274.74,60.742 +676370,276.73,62.142 +676371,278.57,63.52 +676372,280.28,64.877 +676373,273.49,60.688 +676374,275.44,62.107 +676375,277.24,63.504 +676376,278.92,64.88 +676377,272.24,60.635 +676378,274.15,62.072 +676379,275.91,63.488 +676380,277.55,64.882 +676381,270.99,60.583 +676382,272.86,62.038 +676383,274.58,63.472 +676384,276.18,64.883 +676385,269.74,60.532 +676386,271.56,62.004 +676387,273.25,63.455 +676388,274.82,64.882 +676389,268.49,60.482 +676390,270.28,61.971 +676391,271.92,63.437 +676392,273.45,64.881 +676393,267.25,60.433 +676394,268.99,61.938 +676395,270.59,63.42 +676396,272.07,64.878 +676397,266.01,60.386 +676398,267.7,61.905 +676399,269.26,63.402 +676400,270.7,64.874 +676401,264.76,60.339 +676402,266.41,61.873 +676403,267.92,63.383 +676404,269.33,64.869 +676405,263.52,60.294 +676406,265.12,61.841 +676407,266.59,63.364 +676408,267.95,64.863 +676409,262.28,60.25 +676410,263.83,61.81 +676411,265.26,63.345 +676412,266.58,64.856 +676413,261.05,60.208 +676414,262.55,61.779 +676415,263.93,63.325 +676416,265.2,64.847 +676417,259.81,60.166 +676418,261.26,61.748 +676419,262.59,63.305 +676420,263.82,64.837 +676421,258.57,60.126 +676422,259.97,61.718 +676423,261.26,63.284 +676424,262.45,64.826 +676425,257.34,60.087 +676426,258.69,61.688 +676427,259.92,63.263 +676428,261.07,64.814 +676429,256.1,60.05 +676430,257.4,61.658 +676431,258.59,63.242 +676432,259.68,64.8 +676433,254.87,60.014 +676434,256.12,61.629 +676435,257.26,63.22 +676436,258.3,64.786 +676437,253.64,59.979 +676438,254.83,61.601 +676439,255.92,63.198 +676440,256.92,64.769 +676441,252.41,59.945 +676442,253.55,61.572 +676443,254.59,63.175 +676444,255.54,64.752 +676445,251.18,59.912 +676446,252.26,61.545 +676447,253.25,63.152 +676448,254.15,64.733 +676449,249.95,59.881 +676450,250.98,61.517 +676451,251.91,63.128 +676452,252.77,64.713 +676453,248.72,59.851 +676454,249.69,61.49 +676455,250.58,63.104 +676456,251.38,64.692 +676457,247.49,59.823 +676458,248.41,61.464 +676459,249.24,63.079 +676460,250,64.67 +676461,246.27,59.796 +676462,247.13,61.438 +676463,247.91,63.054 +676464,248.61,64.646 +676465,245.04,59.77 +676466,245.84,61.412 +676467,246.57,63.029 +676468,247.23,64.621 +676469,243.81,59.745 +676470,244.56,61.387 +676471,245.23,63.003 +676472,245.84,64.594 +676473,242.59,59.722 +676474,243.28,61.362 +676475,243.9,62.977 +676476,244.45,64.567 +676477,241.36,59.7 +676478,242,61.337 +676479,242.56,62.95 +676480,243.06,64.538 +676481,240.14,59.679 +676482,240.71,61.313 +676483,241.22,62.923 +676484,241.67,64.507 +676485,238.92,59.66 +676486,239.43,61.29 +676487,239.89,62.895 +676488,240.28,64.476 +676489,237.69,59.642 +676490,238.15,61.266 +676491,238.55,62.867 +676492,238.89,64.443 +676493,236.47,59.625 +676494,236.87,61.244 +676495,237.21,62.838 +676496,237.5,64.408 +676497,235.25,59.61 +676498,235.59,61.221 +676499,235.87,62.809 +676500,236.11,64.373 +676501,234.02,59.596 +676502,234.31,61.199 +676503,234.54,62.78 +676504,234.72,64.336 +676505,232.8,59.583 +676506,233.02,61.178 +676507,233.2,62.75 +676508,233.33,64.298 +676509,231.58,59.572 +676510,231.74,61.157 +676511,231.86,62.719 +676512,231.94,64.259 +676513,230.35,59.561 +676514,230.46,61.136 +676515,230.52,62.689 +676516,230.55,64.218 +676517,229.13,59.552 +676518,229.18,61.116 +676519,229.19,62.657 +676520,229.15,64.176 +676521,227.91,59.545 +676522,227.9,61.096 +676523,227.85,62.626 +676524,227.76,64.133 +676525,226.69,59.538 +676526,226.62,61.076 +676527,226.51,62.594 +676528,226.37,64.089 +676529,225.46,59.533 +676530,225.34,61.057 +676531,225.17,62.561 +676532,224.98,64.043 +676533,224.24,59.529 +676534,224.05,61.039 +676535,223.84,62.528 +676536,223.59,63.996 +676537,223.02,59.526 +676538,222.77,61.02 +676539,222.5,62.495 +676540,222.19,63.948 +676541,221.79,59.525 +676542,221.49,61.003 +676543,221.16,62.461 +676544,220.8,63.899 +676545,220.57,59.524 +676546,220.21,60.985 +676547,219.82,62.427 +676548,219.41,63.848 +676549,219.35,59.525 +676550,218.93,60.968 +676551,218.49,62.392 +676552,218.02,63.796 +676553,218.12,59.527 +676554,217.65,60.951 +676555,217.15,62.357 +676556,216.63,63.743 +676557,216.9,59.53 +676558,216.37,60.935 +676559,215.81,62.322 +676560,215.24,63.689 +676561,215.67,59.534 +676562,215.08,60.919 +676563,214.48,62.286 +676564,213.84,63.634 +676565,214.44,59.54 +676566,213.8,60.903 +676567,213.14,62.25 +676568,212.45,63.578 +676569,213.22,59.546 +676570,212.52,60.888 +676571,211.8,62.213 +676572,211.06,63.52 +676573,211.99,59.554 +676574,211.24,60.873 +676575,210.47,62.176 +676576,209.67,63.462 +676577,210.76,59.562 +676578,209.96,60.858 +676579,209.13,62.139 +676580,208.28,63.402 +676581,209.53,59.572 +676582,208.67,60.844 +676583,207.79,62.101 +676584,206.9,63.341 +676585,208.3,59.583 +676586,207.39,60.83 +676587,206.46,62.063 +676588,205.51,63.279 +676589,207.07,59.594 +676590,206.11,60.817 +676591,205.12,62.024 +676592,204.12,63.216 +676593,205.84,59.607 +676594,204.82,60.803 +676595,203.79,61.986 +676596,202.73,63.152 +676597,204.61,59.621 +676598,203.54,60.79 +676599,202.45,61.946 +676600,201.35,63.087 +676601,203.38,59.635 +676602,202.26,60.778 +676603,201.12,61.907 +676604,199.96,63.021 +676605,202.14,59.651 +676606,200.97,60.765 +676607,199.78,61.867 +676608,198.57,62.955 +676609,200.91,59.667 +676610,199.69,60.753 +676611,198.45,61.827 +676612,197.19,62.887 +676613,199.67,59.685 +676614,198.4,60.741 +676615,197.12,61.786 +676616,195.81,62.818 +676617,198.43,59.703 +676618,197.12,60.73 +676619,195.78,61.746 +676620,194.42,62.748 +676621,197.2,59.722 +676622,195.83,60.719 +676623,194.45,61.705 +676624,193.04,62.678 +676625,195.96,59.742 +676626,194.55,60.708 +676627,193.12,61.663 +676628,191.66,62.606 +676629,194.72,59.762 +676630,193.26,60.697 +676631,191.79,61.621 +676632,190.28,62.534 +676633,193.47,59.784 +676634,191.98,60.687 +676635,190.45,61.579 +676636,188.9,62.461 +676637,192.23,59.806 +676638,190.69,60.676 +676639,189.12,61.537 +676640,187.52,62.387 +676641,190.99,59.829 +676642,189.4,60.666 +676643,187.79,61.495 +676644,186.14,62.312 +676645,189.74,59.852 +676646,188.12,60.657 +676647,186.46,61.452 +676648,184.77,62.237 +676649,188.49,59.876 +676650,186.83,60.647 +676651,185.13,61.409 +676652,183.39,62.16 +676653,187.25,59.901 +676654,185.54,60.638 +676655,183.8,61.366 +676656,182.02,62.083 +676657,186,59.926 +676658,184.25,60.628 +676659,182.47,61.322 +676660,180.65,62.006 +676661,184.75,59.952 +676662,182.96,60.619 +676663,181.14,61.279 +676664,179.28,61.928 +676665,183.49,59.979 +676666,181.67,60.611 +676667,179.81,61.235 +676668,177.9,61.849 +676669,182.24,60.006 +676670,180.38,60.602 +676671,178.49,61.191 +676672,176.54,61.769 +676673,180.98,60.033 +676674,179.09,60.594 +676675,177.16,61.146 +676676,175.17,61.689 +676677,179.73,60.061 +676678,177.8,60.585 +676679,175.83,61.102 +676680,173.8,61.609 +676681,178.47,60.089 +676682,176.51,60.577 +676683,174.5,61.057 +676684,172.44,61.528 +676685,177.21,60.118 +676686,175.22,60.569 +676687,173.18,61.012 +676688,171.07,61.446 +676689,175.95,60.147 +676690,173.93,60.561 +676691,171.85,60.967 +676692,169.71,61.364 +676693,174.68,60.177 +676694,172.64,60.553 +676695,170.53,60.922 +676696,168.35,61.282 +676697,173.42,60.206 +676698,171.34,60.545 +676699,169.2,60.877 +676700,166.99,61.199 +676701,172.15,60.236 +676702,170.05,60.538 +676703,167.88,60.832 +676704,165.64,61.116 +676705,170.88,60.267 +676706,168.76,60.53 +676707,166.56,60.786 +676708,164.28,61.032 +676709,169.61,60.297 +676710,167.46,60.523 +676711,165.23,60.74 +676712,162.93,60.949 +676713,168.34,60.328 +676714,166.17,60.515 +676715,163.91,60.695 +676716,161.57,60.865 +676717,167.07,60.359 +676718,164.87,60.508 +676719,162.59,60.649 +676720,160.22,60.78 +676721,165.79,60.39 +676722,163.57,60.5 +676723,161.27,60.603 +676724,158.87,60.696 +676725,164.52,60.421 +676726,162.28,60.493 +676727,159.95,60.557 +676728,157.53,60.611 +676729,163.24,60.452 +676730,160.98,60.486 +676731,158.63,60.511 +676732,156.18,60.526 +676733,161.96,60.483 +676734,159.68,60.478 +676735,157.31,60.465 +676736,154.84,60.441 +676737,160.68,60.514 +676738,158.38,60.471 +676739,155.99,60.419 +676740,153.49,60.356 +676741,159.39,60.546 +676742,157.08,60.464 +676743,154.68,60.373 +676744,152.15,60.271 +676745,158.11,60.577 +676746,155.78,60.456 +676747,153.36,60.327 +676748,150.82,60.185 +676749,156.82,60.608 +676750,154.48,60.449 +676751,152.04,60.281 +676752,149.48,60.1 +676753,155.53,60.639 +676754,153.18,60.442 +676755,150.73,60.235 +676756,148.14,60.015 +676757,154.24,60.669 +676758,151.88,60.434 +676759,149.41,60.188 +676760,146.81,59.93 +676761,152.95,60.7 +676762,150.58,60.427 +676763,148.1,60.142 +676764,145.48,59.845 +676765,151.66,60.73 +676766,149.28,60.419 +676767,146.78,60.096 +676768,144.15,59.76 +676769,150.36,60.76 +676770,147.97,60.411 +676771,145.47,60.05 +676772,142.83,59.675 +676773,149.06,60.79 +676774,146.67,60.404 +676775,144.16,60.004 +676776,141.5,59.591 +676777,147.76,60.82 +676778,145.37,60.396 +676779,142.85,59.959 +676780,140.18,59.507 +676781,146.46,60.849 +676782,144.06,60.388 +676783,141.54,59.913 +676784,138.86,59.423 +676785,145.16,60.878 +676786,142.76,60.379 +676787,140.23,59.867 +676788,137.54,59.339 +676789,143.85,60.906 +676790,141.45,60.371 +676791,138.92,59.822 +676792,136.22,59.255 +676793,142.55,60.934 +676794,140.14,60.363 +676795,137.61,59.776 +676796,134.91,59.172 +676797,141.24,60.962 +676798,138.84,60.354 +676799,136.3,59.731 +676800,133.6,59.09 +676801,139.93,60.989 +676802,137.53,60.345 +676803,134.99,59.686 +676804,132.29,59.007 +676805,138.61,61.016 +676806,136.22,60.336 +676807,133.68,59.64 +676808,130.98,58.925 +676809,137.3,61.042 +676810,134.91,60.327 +676811,132.38,59.596 +676812,129.67,58.844 +676813,135.98,61.067 +676814,133.6,60.318 +676815,131.07,59.551 +676816,128.37,58.763 +676817,134.67,61.092 +676818,132.29,60.309 +676819,129.77,59.506 +676820,127.07,58.683 +676821,133.35,61.117 +676822,130.98,60.299 +676823,128.46,59.462 +676824,125.77,58.603 +676825,132.03,61.14 +676826,129.67,60.289 +676827,127.16,59.418 +676828,124.47,58.524 +676829,130.7,61.163 +676830,128.36,60.279 +676831,125.86,59.373 +676832,123.17,58.445 +676833,129.38,61.186 +676834,127.05,60.268 +676835,124.55,59.33 +676836,121.88,58.367 +676837,128.05,61.207 +676838,125.73,60.258 +676839,123.25,59.286 +676840,120.59,58.29 +676841,126.73,61.228 +676842,124.42,60.247 +676843,121.95,59.243 +676844,119.3,58.214 +676845,125.4,61.248 +676846,123.1,60.236 +676847,120.65,59.2 +676848,118.01,58.138 +676849,124.06,61.268 +676850,121.79,60.224 +676851,119.35,59.157 +676852,116.73,58.063 +676853,122.73,61.286 +676854,120.47,60.212 +676855,118.05,59.114 +676856,115.44,57.989 +676857,121.4,61.304 +676858,119.16,60.2 +676859,116.76,59.072 +676860,114.16,57.915 +676861,120.06,61.32 +676862,117.84,60.188 +676863,115.46,59.03 +676864,112.88,57.843 +676865,118.72,61.336 +676866,116.52,60.175 +676867,114.16,58.988 +676868,111.61,57.771 +676869,117.38,61.351 +676870,115.21,60.162 +676871,112.87,58.946 +676872,110.33,57.701 +676873,116.04,61.365 +676874,113.89,60.149 +676875,111.57,58.905 +676876,109.06,57.631 +676877,114.7,61.378 +676878,112.57,60.136 +676879,110.28,58.864 +676880,107.79,57.562 +676881,113.36,61.391 +676882,111.25,60.122 +676883,108.98,58.824 +676884,106.52,57.494 +676885,112.01,61.402 +676886,109.93,60.107 +676887,107.69,58.783 +676888,105.25,57.427 +676889,110.66,61.412 +676890,108.61,60.093 +676891,106.4,58.743 +676892,103.99,57.361 +676893,109.31,61.421 +676894,107.29,60.078 +676895,105.1,58.704 +676896,102.73,57.296 +676897,107.96,61.429 +676898,105.97,60.062 +676899,103.81,58.664 +676900,101.46,57.233 +676901,106.61,61.436 +676902,104.65,60.047 +676903,102.52,58.625 +676904,100.21,57.17 +676905,105.26,61.441 +676906,103.33,60.03 +676907,101.23,58.587 +676908,98.948,57.109 +676909,103.9,61.446 +676910,102,60.014 +676911,99.942,58.549 +676912,97.693,57.048 +676913,102.55,61.45 +676914,100.68,59.997 +676915,98.653,58.511 +676916,96.439,56.989 +676917,101.19,61.452 +676918,99.356,59.98 +676919,97.364,58.473 +676920,95.187,56.931 +676921,99.832,61.453 +676922,98.032,59.962 +676923,96.076,58.436 +676924,93.937,56.874 +676925,98.472,61.453 +676926,96.707,59.944 +676927,94.789,58.399 +676928,92.689,56.818 +676929,97.111,61.452 +676930,95.382,59.925 +676931,93.502,58.363 +676932,91.443,56.764 +676933,95.749,61.45 +676934,94.057,59.906 +676935,92.216,58.327 +676936,90.198,56.711 +676937,94.385,61.446 +676938,92.731,59.887 +676939,90.93,58.292 +676940,88.954,56.659 +676941,93.02,61.441 +676942,91.405,59.867 +676943,89.645,58.257 +676944,87.713,56.608 +676945,91.654,61.435 +676946,90.078,59.847 +676947,88.36,58.222 +676948,86.473,56.559 +676949,90.286,61.428 +676950,88.751,59.826 +676951,87.076,58.188 +676952,85.234,56.51 +676953,88.918,61.419 +676954,87.424,59.805 +676955,85.792,58.154 +676956,83.997,56.464 +676957,87.548,61.409 +676958,86.096,59.783 +676959,84.509,58.12 +676960,82.761,56.418 +676961,86.178,61.398 +676962,84.768,59.761 +676963,83.226,58.087 +676964,81.527,56.374 +676965,84.806,61.386 +676966,83.44,59.739 +676967,81.943,58.055 +676968,80.294,56.331 +676969,83.433,61.372 +676970,82.111,59.716 +676971,80.661,58.023 +676972,79.062,56.29 +676973,82.059,61.357 +676974,80.782,59.693 +676975,79.38,57.991 +676976,77.832,56.25 +676977,80.685,61.34 +676978,79.452,59.669 +676979,78.099,57.96 +676980,76.603,56.211 +676981,79.309,61.322 +676982,78.123,59.644 +676983,76.818,57.929 +676984,75.375,56.174 +676985,77.933,61.303 +676986,76.793,59.62 +676987,75.538,57.899 +676988,74.148,56.138 +676989,76.555,61.282 +676990,75.462,59.594 +676991,74.258,57.869 +676992,72.922,56.104 +676993,75.177,61.261 +676994,74.132,59.569 +676995,72.978,57.839 +676996,71.698,56.07 +676997,73.798,61.237 +676998,72.801,59.542 +676999,71.699,57.81 +677000,70.474,56.039 +677001,72.418,61.213 +677002,71.47,59.516 +677003,70.42,57.782 +677004,69.251,56.008 +677005,71.037,61.187 +677006,70.139,59.489 +677007,69.141,57.753 +677008,68.029,55.98 +677009,69.656,61.159 +677010,68.807,59.461 +677011,67.863,57.726 +677012,66.808,55.952 +677013,68.274,61.131 +677014,67.476,59.433 +677015,66.585,57.699 +677016,65.588,55.926 +677017,66.891,61.1 +677018,66.144,59.404 +677019,65.307,57.672 +677020,64.369,55.902 +677021,65.508,61.069 +677022,64.812,59.375 +677023,64.03,57.646 +677024,63.15,55.878 +677025,64.124,61.036 +677026,63.48,59.346 +677027,62.753,57.62 +677028,61.932,55.857 +677029,62.74,61.002 +677030,62.147,59.316 +677031,61.476,57.594 +677032,60.715,55.836 +677033,61.355,60.966 +677034,60.815,59.285 +677035,60.199,57.569 +677036,59.498,55.817 +677037,59.97,60.929 +677038,59.482,59.254 +677039,58.923,57.545 +677040,58.281,55.8 +677041,58.584,60.891 +677042,58.149,59.223 +677043,57.646,57.521 +677044,57.065,55.783 +677045,57.198,60.851 +677046,56.816,59.191 +677047,56.37,57.497 +677048,55.85,55.769 +677049,55.811,60.81 +677050,55.484,59.159 +677051,55.094,57.474 +677052,54.634,55.755 +677053,54.424,60.767 +677054,54.151,59.126 +677055,53.818,57.452 +677056,53.419,55.743 +677057,53.037,60.724 +677058,52.817,59.093 +677059,52.542,57.429 +677060,52.205,55.733 +677061,51.649,60.678 +677062,51.484,59.059 +677063,51.267,57.407 +677064,50.99,55.723 +677065,50.262,60.632 +677066,50.151,59.025 +677067,49.991,57.386 +677068,49.776,55.715 +677069,48.874,60.584 +677070,48.818,58.99 +677071,48.716,57.365 +677072,48.561,55.709 +677073,47.486,60.535 +677074,47.485,58.955 +677075,47.44,57.345 +677076,47.347,55.704 +677077,46.097,60.484 +677078,46.152,58.92 +677079,46.165,57.325 +677080,46.133,55.7 +677081,44.709,60.433 +677082,44.819,58.884 +677083,44.89,57.305 +677084,44.918,55.697 +677085,43.321,60.38 +677086,43.486,58.847 +677087,43.615,57.286 +677088,43.704,55.696 +677089,41.932,60.325 +677090,42.153,58.81 +677091,42.339,57.267 +677092,42.489,55.696 +677093,40.544,60.27 +677094,40.82,58.773 +677095,41.064,57.249 +677096,41.274,55.697 +677097,39.156,60.213 +677098,39.487,58.735 +677099,39.789,57.231 +677100,40.059,55.699 +677101,37.768,60.155 +677102,38.154,58.697 +677103,38.513,57.213 +677104,38.844,55.703 +677105,36.38,60.095 +677106,36.821,58.658 +677107,37.238,57.196 +677108,37.628,55.708 +677109,34.992,60.035 +677110,35.489,58.619 +677111,35.963,57.179 +677112,36.412,55.714 +677113,33.604,59.973 +677114,34.156,58.58 +677115,34.687,57.163 +677116,35.195,55.722 +677117,32.217,59.91 +677118,32.824,58.54 +677119,33.411,57.147 +677120,33.978,55.73 +677121,30.83,59.846 +677122,31.492,58.5 +677123,32.136,57.131 +677124,32.76,55.74 +677125,29.443,59.78 +677126,30.16,58.459 +677127,30.86,57.116 +677128,31.541,55.751 +677129,28.057,59.714 +677130,28.828,58.418 +677131,29.584,57.101 +677132,30.322,55.762 +677133,26.671,59.646 +677134,27.497,58.377 +677135,28.307,57.086 +677136,29.102,55.775 +677137,25.285,59.577 +677138,26.166,58.335 +677139,27.031,57.072 +677140,27.882,55.789 +677141,23.9,59.508 +677142,24.835,58.293 +677143,25.755,57.058 +677144,26.661,55.804 +677145,22.516,59.437 +677146,23.504,58.25 +677147,24.478,57.045 +677148,25.439,55.821 +677149,21.132,59.365 +677150,22.173,58.207 +677151,23.201,57.031 +677152,24.216,55.838 +677153,19.749,59.292 +677154,20.843,58.164 +677155,21.924,57.018 +677156,22.992,55.856 +677157,18.366,59.218 +677158,19.513,58.121 +677159,20.646,57.006 +677160,21.767,55.875 +677161,16.984,59.143 +677162,18.183,58.077 +677163,19.368,56.994 +677164,20.541,55.895 +677165,15.603,59.067 +677166,16.854,58.033 +677167,18.091,56.982 +677168,19.314,55.915 +677169,14.223,58.99 +677170,15.525,57.988 +677171,16.812,56.97 +677172,18.086,55.937 +677173,12.843,58.912 +677174,14.196,57.943 +677175,15.534,56.958 +677176,16.857,55.959 +677177,11.464,58.834 +677178,12.868,57.898 +677179,14.255,56.947 +677180,15.627,55.983 +677181,10.086,58.754 +677182,11.54,57.853 +677183,12.976,56.936 +677184,14.395,56.007 +677185,8.709,58.674 +677186,10.212,57.807 +677187,11.696,56.926 +677188,13.163,56.032 +677189,7.3329,58.593 +677190,8.8852,57.761 +677191,10.416,56.915 +677192,11.929,56.057 +677193,5.9578,58.511 +677194,7.5584,57.715 +677195,9.1363,56.905 +677196,10.694,56.084 +677197,4.5837,58.428 +677198,6.2321,57.668 +677199,7.8557,56.895 +677200,9.4573,56.11 +677201,3.2107,58.345 +677202,4.9062,57.622 +677203,6.5748,56.886 +677204,8.2195,56.138 +677205,1.8387,58.26 +677206,3.5807,57.575 +677207,5.2935,56.876 +677208,6.9803,56.166 +677209,0.46795,58.176 +677210,2.2556,57.528 +677211,4.0118,56.867 +677212,5.7398,56.195 +677213,359.1,58.09 +677214,0.93109,57.48 +677215,2.7296,56.858 +677216,4.4978,56.224 +677217,357.73,58.004 +677218,359.61,57.432 +677219,1.4471,56.849 +677220,3.2543,56.254 +677221,356.36,57.917 +677222,358.28,57.385 +677223,0.16413,56.84 +677224,2.0093,56.285 +677225,355,57.83 +677226,356.96,57.337 +677227,358.88,56.831 +677228,0.76288,56.315 +677229,353.63,57.742 +677230,355.64,57.289 +677231,357.6,56.823 +677232,359.51,56.347 +677233,352.27,57.654 +677234,354.32,57.24 +677235,356.31,56.814 +677236,358.27,56.378 +677237,350.91,57.565 +677238,352.99,57.192 +677239,355.03,56.806 +677240,357.01,56.41 +677241,349.55,57.476 +677242,351.67,57.143 +677243,353.74,56.798 +677244,355.76,56.442 +677245,348.19,57.386 +677246,350.35,57.094 +677247,352.46,56.79 +677248,354.51,56.475 +677249,346.83,57.296 +677250,349.03,57.045 +677251,351.17,56.782 +677252,353.25,56.508 +677253,345.48,57.206 +677254,347.71,56.996 +677255,349.88,56.774 +677256,351.99,56.541 +677257,344.12,57.115 +677258,346.39,56.947 +677259,348.6,56.766 +677260,350.73,56.574 +677261,342.77,57.024 +677262,345.08,56.898 +677263,347.31,56.759 +677264,349.47,56.608 +677265,341.42,56.933 +677266,343.76,56.849 +677267,346.02,56.751 +677268,348.21,56.642 +677269,340.07,56.842 +677270,342.44,56.799 +677271,344.73,56.743 +677272,346.95,56.675 +677273,338.72,56.75 +677274,341.13,56.75 +677275,343.44,56.736 +677276,345.68,56.709 +677277,337.37,56.658 +677278,339.81,56.701 +677279,342.15,56.728 +677280,344.41,56.743 +677281,336.03,56.566 +677282,338.5,56.651 +677283,340.86,56.72 +677284,343.14,56.777 +677285,334.69,56.474 +677286,337.18,56.602 +677287,339.57,56.713 +677288,341.87,56.811 +677289,333.35,56.382 +677290,335.87,56.552 +677291,338.28,56.705 +677292,340.6,56.844 +677293,332.01,56.29 +677294,334.55,56.503 +677295,336.99,56.698 +677296,339.32,56.878 +677297,330.67,56.198 +677298,333.24,56.453 +677299,335.69,56.69 +677300,338.05,56.912 +677301,329.34,56.106 +677302,331.93,56.404 +677303,334.4,56.682 +677304,336.77,56.945 +677305,328,56.015 +677306,330.62,56.354 +677307,333.11,56.674 +677308,335.49,56.978 +677309,326.67,55.923 +677310,329.31,56.305 +677311,331.81,56.667 +677312,334.2,57.011 +677313,325.34,55.831 +677314,328,56.255 +677315,330.52,56.659 +677316,332.92,57.044 +677317,324.01,55.74 +677318,326.69,56.206 +677319,329.22,56.651 +677320,331.63,57.077 +677321,322.69,55.649 +677322,325.38,56.157 +677323,327.93,56.642 +677324,330.35,57.109 +677325,321.37,55.558 +677326,324.07,56.108 +677327,326.63,56.634 +677328,329.06,57.141 +677329,320.05,55.467 +677330,322.77,56.059 +677331,325.33,56.626 +677332,327.76,57.172 +677333,318.73,55.377 +677334,321.46,56.01 +677335,324.03,56.617 +677336,326.47,57.203 +677337,317.41,55.287 +677338,320.16,55.961 +677339,322.74,56.609 +677340,325.18,57.234 +677341,316.09,55.198 +677342,318.85,55.912 +677343,321.44,56.6 +677344,323.88,57.264 +677345,314.78,55.109 +677346,317.55,55.864 +677347,320.14,56.591 +677348,322.58,57.293 +677349,313.47,55.02 +677350,316.24,55.815 +677351,318.84,56.582 +677352,321.28,57.323 +677353,312.16,54.932 +677354,314.94,55.767 +677355,317.54,56.572 +677356,319.98,57.351 +677357,310.86,54.845 +677358,313.64,55.719 +677359,316.24,56.563 +677360,318.67,57.379 +677361,309.55,54.758 +677362,312.34,55.671 +677363,314.93,56.553 +677364,317.37,57.406 +677365,308.25,54.671 +677366,311.04,55.624 +677367,313.63,56.543 +677368,316.06,57.433 +677369,306.95,54.585 +677370,309.74,55.576 +677371,312.33,56.533 +677372,314.75,57.459 +677373,305.65,54.5 +677374,308.44,55.529 +677375,311.02,56.522 +677376,313.44,57.484 +677377,304.36,54.416 +677378,307.14,55.482 +677379,309.72,56.512 +677380,312.13,57.509 +677381,303.06,54.333 +677382,305.84,55.435 +677383,308.41,56.501 +677384,310.81,57.533 +677385,301.77,54.25 +677386,304.55,55.389 +677387,307.11,56.489 +677388,309.49,57.556 +677389,300.48,54.168 +677390,303.25,55.343 +677391,305.8,56.478 +677392,308.18,57.578 +677393,299.2,54.086 +677394,301.95,55.297 +677395,304.5,56.466 +677396,306.86,57.599 +677397,297.91,54.006 +677398,300.66,55.251 +677399,303.19,56.454 +677400,305.53,57.62 +677401,296.63,53.927 +677402,299.37,55.206 +677403,301.88,56.442 +677404,304.21,57.639 +677405,295.35,53.848 +677406,298.07,55.161 +677407,300.57,56.429 +677408,302.89,57.658 +677409,294.07,53.77 +677410,296.78,55.116 +677411,299.26,56.416 +677412,301.56,57.676 +677413,292.8,53.694 +677414,295.49,55.071 +677415,297.95,56.403 +677416,300.23,57.693 +677417,291.52,53.618 +677418,294.2,55.027 +677419,296.64,56.389 +677420,298.9,57.709 +677421,290.25,53.544 +677422,292.91,54.983 +677423,295.33,56.375 +677424,297.57,57.723 +677425,288.98,53.47 +677426,291.62,54.94 +677427,294.02,56.361 +677428,296.23,57.737 +677429,287.72,53.398 +677430,290.33,54.897 +677431,292.71,56.346 +677432,294.9,57.75 +677433,286.45,53.327 +677434,289.04,54.854 +677435,291.4,56.331 +677436,293.56,57.761 +677437,285.19,53.256 +677438,287.75,54.812 +677439,290.09,56.315 +677440,292.22,57.772 +677441,283.93,53.187 +677442,286.47,54.77 +677443,288.77,56.299 +677444,290.89,57.781 +677445,282.67,53.12 +677446,285.18,54.728 +677447,287.46,56.283 +677448,289.54,57.79 +677449,281.41,53.053 +677450,283.89,54.687 +677451,286.14,56.266 +677452,288.2,57.797 +677453,280.16,52.988 +677454,282.61,54.646 +677455,284.83,56.249 +677456,286.86,57.803 +677457,278.91,52.924 +677458,281.33,54.606 +677459,283.51,56.232 +677460,285.51,57.807 +677461,277.65,52.861 +677462,280.04,54.566 +677463,282.2,56.214 +677464,284.16,57.811 +677465,276.41,52.799 +677466,278.76,54.526 +677467,280.88,56.196 +677468,282.82,57.813 +677469,275.16,52.739 +677470,277.48,54.487 +677471,279.57,56.177 +677472,281.47,57.814 +677473,273.91,52.68 +677474,276.2,54.448 +677475,278.25,56.158 +677476,280.12,57.814 +677477,272.67,52.623 +677478,274.91,54.41 +677479,276.93,56.138 +677480,278.76,57.812 +677481,271.43,52.567 +677482,273.63,54.372 +677483,275.61,56.118 +677484,277.41,57.809 +677485,270.19,52.512 +677486,272.35,54.335 +677487,274.29,56.097 +677488,276.05,57.805 +677489,268.96,52.459 +677490,271.07,54.298 +677491,272.98,56.076 +677492,274.7,57.8 +677493,267.72,52.407 +677494,269.8,54.262 +677495,271.66,56.055 +677496,273.34,57.793 +677497,266.49,52.357 +677498,268.52,54.226 +677499,270.34,56.033 +677500,271.98,57.785 +677501,265.25,52.308 +677502,267.24,54.19 +677503,269.02,56.01 +677504,270.62,57.775 +677505,264.02,52.261 +677506,265.96,54.155 +677507,267.7,55.988 +677508,269.26,57.764 +677509,262.79,52.215 +677510,264.69,54.12 +677511,266.37,55.964 +677512,267.9,57.752 +677513,261.57,52.17 +677514,263.41,54.086 +677515,265.05,55.94 +677516,266.53,57.738 +677517,260.34,52.127 +677518,262.13,54.053 +677519,263.73,55.916 +677520,265.17,57.723 +677521,259.12,52.086 +677522,260.86,54.02 +677523,262.41,55.891 +677524,263.8,57.706 +677525,257.89,52.046 +677526,259.58,53.987 +677527,261.09,55.866 +677528,262.44,57.688 +677529,256.67,52.008 +677530,258.31,53.955 +677531,259.77,55.84 +677532,261.07,57.669 +677533,255.45,51.971 +677534,257.04,53.923 +677535,258.44,55.814 +677536,259.7,57.648 +677537,254.23,51.935 +677538,255.76,53.892 +677539,257.12,55.787 +677540,258.33,57.626 +677541,253.01,51.902 +677542,254.49,53.862 +677543,255.8,55.76 +677544,256.96,57.602 +677545,251.8,51.87 +677546,253.22,53.831 +677547,254.47,55.732 +677548,255.59,57.577 +677549,250.58,51.839 +677550,251.95,53.802 +677551,253.15,55.704 +677552,254.22,57.55 +677553,249.37,51.81 +677554,250.67,53.773 +677555,251.82,55.675 +677556,252.85,57.522 +677557,248.16,51.783 +677558,249.4,53.744 +677559,250.5,55.646 +677560,251.47,57.492 +677561,246.94,51.757 +677562,248.13,53.716 +677563,249.18,55.616 +677564,250.1,57.461 +677565,245.73,51.732 +677566,246.86,53.688 +677567,247.85,55.586 +677568,248.73,57.429 +677569,244.52,51.71 +677570,245.59,53.661 +677571,246.53,55.555 +677572,247.35,57.395 +677573,243.31,51.688 +677574,244.32,53.635 +677575,245.2,55.524 +677576,245.97,57.359 +677577,242.1,51.669 +677578,243.05,53.609 +677579,243.88,55.492 +677580,244.6,57.322 +677581,240.89,51.651 +677582,241.78,53.583 +677583,242.55,55.46 +677584,243.22,57.284 +677585,239.69,51.634 +677586,240.51,53.558 +677587,241.22,55.427 +677588,241.84,57.244 +677589,238.48,51.619 +677590,239.24,53.533 +677591,239.9,55.393 +677592,240.46,57.202 +677593,237.27,51.606 +677594,237.97,53.509 +677595,238.57,55.36 +677596,239.08,57.16 +677597,236.07,51.594 +677598,236.71,53.486 +677599,237.25,55.325 +677600,237.71,57.115 +677601,234.86,51.583 +677602,235.44,53.463 +677603,235.92,55.29 +677604,236.33,57.07 +677605,233.66,51.574 +677606,234.17,53.44 +677607,234.6,55.255 +677608,234.95,57.022 +677609,232.45,51.567 +677610,232.9,53.418 +677611,233.27,55.219 +677612,233.57,56.974 +677613,231.25,51.561 +677614,231.63,53.397 +677615,231.94,55.183 +677616,232.18,56.924 +677617,230.04,51.557 +677618,230.37,53.375 +677619,230.62,55.146 +677620,230.8,56.872 +677621,228.84,51.554 +677622,229.1,53.355 +677623,229.29,55.109 +677624,229.42,56.819 +677625,227.64,51.552 +677626,227.83,53.335 +677627,227.96,55.071 +677628,228.04,56.765 +677629,226.43,51.552 +677630,226.56,53.315 +677631,226.64,55.033 +677632,226.66,56.709 +677633,225.23,51.554 +677634,225.3,53.296 +677635,225.31,54.995 +677636,225.28,56.652 +677637,224.02,51.556 +677638,224.03,53.277 +677639,223.99,54.956 +677640,223.9,56.594 +677641,222.82,51.561 +677642,222.76,53.259 +677643,222.66,54.916 +677644,222.52,56.534 +677645,221.61,51.566 +677646,221.5,53.241 +677647,221.33,54.876 +677648,221.13,56.473 +677649,220.41,51.573 +677650,220.23,53.223 +677651,220.01,54.835 +677652,219.75,56.41 +677653,219.21,51.581 +677654,218.96,53.207 +677655,218.68,54.795 +677656,218.37,56.346 +677657,218,51.591 +677658,217.69,53.19 +677659,217.36,54.753 +677660,216.99,56.281 +677661,216.79,51.602 +677662,216.43,53.174 +677663,216.03,54.711 +677664,215.61,56.215 +677665,215.59,51.614 +677666,215.16,53.158 +677667,214.7,54.669 +677668,214.23,56.147 +677669,214.38,51.627 +677670,213.89,53.143 +677671,213.38,54.627 +677672,212.85,56.078 +677673,213.18,51.642 +677674,212.62,53.128 +677675,212.05,54.583 +677676,211.47,56.008 +677677,211.97,51.657 +677678,211.36,53.114 +677679,210.73,54.54 +677680,210.09,55.936 +677681,210.76,51.674 +677682,210.09,53.1 +677683,209.4,54.496 +677684,208.71,55.863 +677685,209.55,51.692 +677686,208.82,53.086 +677687,208.08,54.452 +677688,207.33,55.79 +677689,208.34,51.712 +677690,207.55,53.073 +677691,206.76,54.407 +677692,205.95,55.714 +677693,207.13,51.732 +677694,206.29,53.06 +677695,205.43,54.362 +677696,204.57,55.638 +677697,205.92,51.754 +677698,205.02,53.047 +677699,204.11,54.317 +677700,203.19,55.561 +677701,204.71,51.776 +677702,203.75,53.035 +677703,202.78,54.271 +677704,201.81,55.482 +677705,203.49,51.799 +677706,202.48,53.023 +677707,201.46,54.225 +677708,200.44,55.403 +677709,202.28,51.824 +677710,201.21,53.012 +677711,200.14,54.178 +677712,199.06,55.322 +677713,201.07,51.849 +677714,199.94,53.001 +677715,198.82,54.132 +677716,197.68,55.241 +677717,199.85,51.876 +677718,198.67,52.99 +677719,197.49,54.084 +677720,196.31,55.158 +677721,198.63,51.903 +677722,197.4,52.98 +677723,196.17,54.037 +677724,194.93,55.075 +677725,197.41,51.931 +677726,196.13,52.969 +677727,194.85,53.989 +677728,193.56,54.99 +677729,196.19,51.96 +677730,194.86,52.959 +677731,193.53,53.941 +677732,192.19,54.904 +677733,194.97,51.99 +677734,193.59,52.95 +677735,192.21,53.893 +677736,190.81,54.818 +677737,193.75,52.021 +677738,192.32,52.94 +677739,190.89,53.844 +677740,189.44,54.731 +677741,192.53,52.052 +677742,191.05,52.931 +677743,189.57,53.795 +677744,188.07,54.643 +677745,191.3,52.084 +677746,189.78,52.922 +677747,188.25,53.746 +677748,186.7,54.554 +677749,190.08,52.117 +677750,188.51,52.914 +677751,186.93,53.697 +677752,185.33,54.464 +677753,188.85,52.15 +677754,187.24,52.905 +677755,185.61,53.647 +677756,183.97,54.373 +677757,187.62,52.185 +677758,185.96,52.897 +677759,184.29,53.597 +677760,182.6,54.282 +677761,186.39,52.219 +677762,184.69,52.889 +677763,182.97,53.547 +677764,181.24,54.19 +677765,185.16,52.254 +677766,183.42,52.882 +677767,181.65,53.497 +677768,179.87,54.097 +677769,183.93,52.29 +677770,182.14,52.874 +677771,180.34,53.446 +677772,178.51,54.004 +677773,182.69,52.326 +677774,180.87,52.867 +677775,179.02,53.395 +677776,177.15,53.91 +677777,181.46,52.363 +677778,179.6,52.86 +677779,177.71,53.344 +677780,175.79,53.815 +677781,180.22,52.4 +677782,178.32,52.852 +677783,176.39,53.293 +677784,174.43,53.72 +677785,178.98,52.437 +677786,177.04,52.846 +677787,175.08,53.242 +677788,173.07,53.625 +677789,177.74,52.475 +677790,175.77,52.839 +677791,173.76,53.191 +677792,171.71,53.529 +677793,176.5,52.513 +677794,174.49,52.832 +677795,172.45,53.139 +677796,170.36,53.432 +677797,175.25,52.552 +677798,173.22,52.826 +677799,171.13,53.087 +677800,169,53.335 +677801,174.01,52.59 +677802,171.94,52.819 +677803,169.82,53.036 +677804,167.65,53.238 +677805,172.76,52.629 +677806,170.66,52.813 +677807,168.51,52.984 +677808,166.3,53.14 +677809,171.51,52.668 +677810,169.38,52.806 +677811,167.2,52.932 +677812,164.95,53.042 +677813,170.26,52.707 +677814,168.1,52.8 +677815,165.89,52.88 +677816,163.6,52.944 +677817,169.01,52.747 +677818,166.82,52.794 +677819,164.58,52.828 +677820,162.26,52.846 +677821,167.75,52.786 +677822,165.54,52.788 +677823,163.27,52.776 +677824,160.91,52.747 +677825,166.5,52.825 +677826,164.26,52.782 +677827,161.96,52.724 +677828,159.57,52.648 +677829,165.24,52.865 +677830,162.98,52.776 +677831,160.65,52.671 +677832,158.23,52.549 +677833,163.98,52.904 +677834,161.7,52.77 +677835,159.34,52.619 +677836,156.89,52.45 +677837,162.72,52.943 +677838,160.42,52.764 +677839,158.04,52.567 +677840,155.55,52.351 +677841,161.46,52.982 +677842,159.14,52.757 +677843,156.73,52.515 +677844,154.22,52.252 +677845,160.19,53.021 +677846,157.85,52.751 +677847,155.42,52.463 +677848,152.88,52.153 +677849,158.92,53.06 +677850,156.57,52.745 +677851,154.12,52.411 +677852,151.55,52.054 +677853,157.65,53.099 +677854,155.29,52.739 +677855,152.81,52.359 +677856,150.22,51.955 +677857,156.38,53.137 +677858,154,52.733 +677859,151.51,52.307 +677860,148.89,51.856 +677861,155.11,53.175 +677862,152.72,52.726 +677863,150.21,52.255 +677864,147.57,51.757 +677865,153.84,53.213 +677866,151.43,52.72 +677867,148.91,52.203 +677868,146.24,51.659 +677869,152.56,53.25 +677870,150.14,52.713 +677871,147.6,52.151 +677872,144.92,51.561 +677873,151.28,53.287 +677874,148.86,52.706 +677875,146.3,52.099 +677876,143.6,51.463 +677877,150,53.324 +677878,147.57,52.7 +677879,145,52.048 +677880,142.28,51.365 +677881,148.72,53.36 +677882,146.28,52.693 +677883,143.7,51.997 +677884,140.97,51.268 +677885,147.44,53.396 +677886,144.99,52.686 +677887,142.41,51.945 +677888,139.65,51.171 +677889,146.15,53.431 +677890,143.7,52.678 +677891,141.11,51.894 +677892,138.34,51.075 +677893,144.86,53.465 +677894,142.41,52.671 +677895,139.81,51.843 +677896,137.03,50.979 +677897,143.57,53.499 +677898,141.12,52.663 +677899,138.52,51.793 +677900,135.72,50.884 +677901,142.28,53.533 +677902,139.83,52.655 +677903,137.22,51.742 +677904,134.42,50.789 +677905,140.99,53.566 +677906,138.54,52.647 +677907,135.93,51.692 +677908,133.11,50.695 +677909,139.7,53.598 +677910,137.25,52.639 +677911,134.63,51.642 +677912,131.81,50.601 +677913,138.4,53.629 +677914,135.95,52.631 +677915,133.34,51.592 +677916,130.51,50.508 +677917,137.1,53.66 +677918,134.66,52.622 +677919,132.05,51.543 +677920,129.22,50.416 +677921,135.8,53.69 +677922,133.37,52.613 +677923,130.75,51.493 +677924,127.92,50.324 +677925,134.5,53.719 +677926,132.07,52.604 +677927,129.46,51.444 +677928,126.63,50.234 +677929,133.19,53.747 +677930,130.78,52.594 +677931,128.17,51.395 +677932,125.34,50.144 +677933,131.89,53.774 +677934,129.48,52.585 +677935,126.88,51.347 +677936,124.05,50.055 +677937,130.58,53.801 +677938,128.18,52.574 +677939,125.59,51.299 +677940,122.77,49.967 +677941,129.27,53.826 +677942,126.89,52.564 +677943,124.31,51.251 +677944,121.49,49.88 +677945,127.96,53.851 +677946,125.59,52.553 +677947,123.02,51.203 +677948,120.2,49.793 +677949,126.65,53.875 +677950,124.29,52.542 +677951,121.73,51.156 +677952,118.93,49.708 +677953,125.34,53.898 +677954,122.99,52.531 +677955,120.45,51.109 +677956,117.65,49.624 +677957,124.02,53.919 +677958,121.69,52.52 +677959,119.16,51.063 +677960,116.38,49.541 +677961,122.7,53.94 +677962,120.39,52.508 +677963,117.88,51.017 +677964,115.1,49.459 +677965,121.38,53.96 +677966,119.09,52.495 +677967,116.6,50.971 +677968,113.84,49.378 +677969,120.06,53.978 +677970,117.79,52.483 +677971,115.31,50.925 +677972,112.57,49.298 +677973,118.74,53.995 +677974,116.49,52.469 +677975,114.03,50.88 +677976,111.3,49.22 +677977,117.42,54.012 +677978,115.19,52.456 +677979,112.75,50.836 +677980,110.04,49.142 +677981,116.09,54.027 +677982,113.89,52.442 +677983,111.47,50.792 +677984,108.78,49.066 +677985,114.76,54.041 +677986,112.58,52.428 +677987,110.19,50.748 +677988,107.52,48.991 +677989,113.43,54.053 +677990,111.28,52.413 +677991,108.91,50.705 +677992,106.27,48.918 +677993,112.1,54.065 +677994,109.98,52.398 +677995,107.63,50.662 +677996,105.01,48.846 +677997,110.77,54.075 +677998,108.67,52.383 +677999,106.36,50.619 +678000,103.76,48.775 +678001,109.44,54.084 +678002,107.37,52.367 +678003,105.08,50.577 +678004,102.51,48.705 +678005,108.1,54.092 +678006,106.06,52.35 +678007,103.8,50.536 +678008,101.27,48.638 +678009,106.77,54.098 +678010,104.76,52.334 +678011,102.53,50.495 +678012,100.02,48.571 +678013,105.43,54.103 +678014,103.45,52.316 +678015,101.25,50.454 +678016,98.779,48.506 +678017,104.09,54.107 +678018,102.14,52.299 +678019,99.978,50.414 +678020,97.538,48.442 +678021,102.75,54.109 +678022,100.84,52.281 +678023,98.704,50.375 +678024,96.3,48.38 +678025,101.41,54.11 +678026,99.529,52.262 +678027,97.432,50.336 +678028,95.063,48.32 +678029,100.07,54.11 +678030,98.22,52.243 +678031,96.16,50.297 +678032,93.829,48.261 +678033,98.723,54.108 +678034,96.912,52.223 +678035,94.888,50.259 +678036,92.596,48.203 +678037,97.378,54.104 +678038,95.603,52.203 +678039,93.617,50.222 +678040,91.366,48.148 +678041,96.031,54.1 +678042,94.293,52.183 +678043,92.347,50.185 +678044,90.137,48.094 +678045,94.683,54.094 +678046,92.983,52.162 +678047,91.078,50.148 +678048,88.91,48.041 +678049,93.334,54.086 +678050,91.673,52.14 +678051,89.809,50.112 +678052,87.686,47.99 +678053,91.984,54.077 +678054,90.363,52.118 +678055,88.54,50.077 +678056,86.463,47.941 +678057,90.632,54.066 +678058,89.052,52.096 +678059,87.272,50.042 +678060,85.241,47.893 +678061,89.28,54.054 +678062,87.74,52.073 +678063,86.005,50.008 +678064,84.022,47.848 +678065,87.926,54.04 +678066,86.429,52.049 +678067,84.738,49.974 +678068,82.804,47.803 +678069,86.572,54.025 +678070,85.117,52.025 +678071,83.472,49.941 +678072,81.588,47.761 +678073,85.216,54.009 +678074,83.805,52.001 +678075,82.206,49.908 +678076,80.373,47.72 +678077,83.86,53.991 +678078,82.492,51.975 +678079,80.941,49.876 +678080,79.16,47.681 +678081,82.502,53.971 +678082,81.179,51.95 +678083,79.677,49.845 +678084,77.948,47.644 +678085,81.144,53.949 +678086,79.866,51.924 +678087,78.412,49.814 +678088,76.738,47.609 +678089,79.785,53.927 +678090,78.552,51.897 +678091,77.149,49.784 +678092,75.529,47.575 +678093,78.424,53.902 +678094,77.239,51.87 +678095,75.885,49.754 +678096,74.322,47.543 +678097,77.063,53.876 +678098,75.925,51.842 +678099,74.623,49.725 +678100,73.116,47.513 +678101,75.702,53.849 +678102,74.61,51.814 +678103,73.36,49.696 +678104,71.911,47.485 +678105,74.339,53.82 +678106,73.296,51.785 +678107,72.098,49.668 +678108,70.707,47.458 +678109,72.976,53.789 +678110,71.981,51.756 +678111,70.837,49.641 +678112,69.505,47.433 +678113,71.612,53.757 +678114,70.666,51.726 +678115,69.576,49.614 +678116,68.303,47.41 +678117,70.247,53.723 +678118,69.351,51.695 +678119,68.315,49.587 +678120,67.103,47.389 +678121,68.882,53.687 +678122,68.036,51.664 +678123,67.054,49.562 +678124,65.904,47.369 +678125,67.516,53.65 +678126,66.721,51.633 +678127,65.794,49.537 +678128,64.705,47.351 +678129,66.15,53.612 +678130,65.405,51.601 +678131,64.534,49.512 +678132,63.507,47.335 +678133,64.783,53.572 +678134,64.089,51.568 +678135,63.275,49.488 +678136,62.31,47.321 +678137,63.415,53.53 +678138,62.774,51.535 +678139,62.016,49.465 +678140,61.114,47.309 +678141,62.047,53.487 +678142,61.458,51.502 +678143,60.757,49.442 +678144,59.919,47.298 +678145,60.679,53.442 +678146,60.142,51.468 +678147,59.498,49.42 +678148,58.724,47.289 +678149,59.31,53.395 +678150,58.826,51.433 +678151,58.24,49.398 +678152,57.53,47.282 +678153,57.941,53.347 +678154,57.509,51.398 +678155,56.982,49.377 +678156,56.336,47.276 +678157,56.571,53.298 +678158,56.193,51.362 +678159,55.724,49.356 +678160,55.142,47.272 +678161,55.202,53.247 +678162,54.877,51.326 +678163,54.466,49.336 +678164,53.949,47.27 +678165,53.832,53.194 +678166,53.561,51.289 +678167,53.208,49.317 +678168,52.757,47.269 +678169,52.461,53.14 +678170,52.244,51.252 +678171,51.951,49.298 +678172,51.564,47.271 +678173,51.091,53.084 +678174,50.928,51.215 +678175,50.693,49.28 +678176,50.372,47.273 +678177,49.72,53.027 +678178,49.612,51.176 +678179,49.436,49.262 +678180,49.18,47.278 +678181,48.35,52.969 +678182,48.296,51.138 +678183,48.179,49.244 +678184,47.988,47.284 +678185,46.979,52.908 +678186,46.979,51.098 +678187,46.922,49.228 +678188,46.796,47.291 +678189,45.608,52.847 +678190,45.663,51.059 +678191,45.665,49.212 +678192,45.604,47.3 +678193,44.237,52.784 +678194,44.347,51.019 +678195,44.408,49.196 +678196,44.412,47.311 +678197,42.866,52.719 +678198,43.031,50.978 +678199,43.152,49.181 +678200,43.219,47.323 +678201,41.495,52.653 +678202,41.715,50.937 +678203,41.895,49.166 +678204,42.027,47.337 +678205,40.125,52.586 +678206,40.4,50.895 +678207,40.638,49.152 +678208,40.834,47.352 +678209,38.754,52.517 +678210,39.084,50.853 +678211,39.381,49.138 +678212,39.641,47.369 +678213,37.384,52.447 +678214,37.768,50.811 +678215,38.125,49.125 +678216,38.447,47.387 +678217,36.014,52.376 +678218,36.453,50.768 +678219,36.868,49.112 +678220,37.253,47.407 +678221,34.644,52.303 +678222,35.138,50.724 +678223,35.611,49.1 +678224,36.059,47.427 +678225,33.274,52.228 +678226,33.823,50.681 +678227,34.354,49.088 +678228,34.863,47.45 +678229,31.905,52.153 +678230,32.508,50.636 +678231,33.097,49.077 +678232,33.668,47.473 +678233,30.536,52.076 +678234,31.194,50.592 +678235,31.84,49.066 +678236,32.471,47.498 +678237,29.167,51.998 +678238,29.879,50.547 +678239,30.582,49.056 +678240,31.274,47.524 +678241,27.799,51.919 +678242,28.565,50.501 +678243,29.325,49.046 +678244,30.076,47.552 +678245,26.431,51.838 +678246,27.252,50.455 +678247,28.067,49.036 +678248,28.878,47.58 +678249,25.064,51.756 +678250,25.938,50.409 +678251,26.81,49.027 +678252,27.678,47.61 +678253,23.697,51.673 +678254,24.625,50.363 +678255,25.552,49.019 +678256,26.478,47.641 +678257,22.331,51.589 +678258,23.312,50.316 +678259,24.294,49.01 +678260,25.276,47.673 +678261,20.965,51.504 +678262,21.999,50.268 +678263,23.035,49.002 +678264,24.074,47.706 +678265,19.601,51.418 +678266,20.687,50.221 +678267,21.777,48.995 +678268,22.87,47.74 +678269,18.236,51.33 +678270,19.375,50.173 +678271,20.518,48.988 +678272,21.666,47.775 +678273,16.873,51.242 +678274,18.063,50.124 +678275,19.259,48.981 +678276,20.46,47.811 +678277,15.51,51.152 +678278,16.752,50.076 +678279,18,48.974 +678280,19.253,47.849 +678281,14.148,51.062 +678282,15.441,50.027 +678283,16.74,48.968 +678284,18.045,47.887 +678285,12.787,50.97 +678286,14.131,49.977 +678287,15.48,48.962 +678288,16.836,47.925 +678289,11.427,50.878 +678290,12.821,49.928 +678291,14.22,48.957 +678292,15.625,47.965 +678293,10.068,50.785 +678294,11.511,49.878 +678295,12.959,48.952 +678296,14.413,48.006 +678297,8.7097,50.69 +678298,10.202,49.828 +678299,11.699,48.947 +678300,13.2,48.047 +678301,7.3524,50.595 +678302,8.8935,49.778 +678303,10.437,48.942 +678304,11.985,48.089 +678305,5.9961,50.499 +678306,7.5853,49.727 +678307,9.1758,48.938 +678308,10.769,48.132 +678309,4.6408,50.403 +678310,6.2775,49.676 +678311,7.9139,48.933 +678312,9.551,48.175 +678313,3.2867,50.305 +678314,4.9703,49.625 +678315,6.6515,48.93 +678316,8.3318,48.219 +678317,1.9337,50.207 +678318,3.6635,49.574 +678319,5.3888,48.926 +678320,7.1111,48.264 +678321,0.58183,50.108 +678322,2.3572,49.523 +678323,4.1257,48.922 +678324,5.8888,48.309 +678325,359.23,50.009 +678326,1.0515,49.471 +678327,2.8622,48.919 +678328,4.6649,48.354 +678329,357.88,49.908 +678330,359.75,49.419 +678331,1.5983,48.916 +678332,3.4394,48.4 +678333,356.53,49.808 +678334,358.44,49.367 +678335,0.33391,48.913 +678336,2.2123,48.447 +678337,355.19,49.706 +678338,357.14,49.315 +678339,359.07,48.911 +678340,0.98356,48.494 +678341,353.84,49.605 +678342,355.83,49.263 +678343,357.8,48.908 +678344,359.75,48.541 +678345,352.5,49.502 +678346,354.53,49.211 +678347,356.54,48.906 +678348,358.52,48.589 +678349,351.15,49.4 +678350,353.23,49.158 +678351,355.27,48.903 +678352,357.29,48.636 +678353,349.81,49.296 +678354,351.93,49.106 +678355,354.01,48.901 +678356,356.05,48.684 +678357,348.47,49.193 +678358,350.63,49.053 +678359,352.74,48.899 +678360,354.81,48.733 +678361,347.14,49.089 +678362,349.33,49.001 +678363,351.47,48.897 +678364,353.57,48.781 +678365,345.8,48.985 +678366,348.03,48.948 +678367,350.2,48.895 +678368,352.33,48.83 +678369,344.46,48.881 +678370,346.73,48.895 +678371,348.93,48.894 +678372,351.09,48.878 +678373,343.13,48.776 +678374,345.43,48.842 +678375,347.66,48.892 +678376,349.85,48.927 +678377,341.8,48.671 +678378,344.13,48.79 +678379,346.39,48.89 +678380,348.6,48.976 +678381,340.47,48.567 +678382,342.83,48.737 +678383,345.12,48.889 +678384,347.35,49.024 +678385,339.14,48.462 +678386,341.54,48.684 +678387,343.85,48.887 +678388,346.1,49.073 +678389,337.81,48.357 +678390,340.24,48.631 +678391,342.58,48.885 +678392,344.85,49.121 +678393,336.49,48.252 +678394,338.94,48.579 +678395,341.31,48.884 +678396,343.6,49.169 +678397,335.17,48.147 +678398,337.65,48.526 +678399,340.04,48.882 +678400,342.34,49.217 +678401,333.85,48.042 +678402,336.36,48.473 +678403,338.76,48.88 +678404,341.08,49.265 +678405,332.53,47.937 +678406,335.06,48.421 +678407,337.49,48.878 +678408,339.82,49.313 +678409,331.21,47.833 +678410,333.77,48.368 +678411,336.22,48.877 +678412,338.56,49.36 +678413,329.89,47.728 +678414,332.48,48.316 +678415,334.94,48.875 +678416,337.3,49.407 +678417,328.58,47.624 +678418,331.19,48.264 +678419,333.67,48.873 +678420,336.03,49.454 +678421,327.27,47.52 +678422,329.9,48.212 +678423,332.39,48.871 +678424,334.77,49.5 +678425,325.96,47.417 +678426,328.61,48.16 +678427,331.12,48.868 +678428,333.5,49.546 +678429,324.65,47.314 +678430,327.32,48.108 +678431,329.84,48.866 +678432,332.23,49.591 +678433,323.35,47.211 +678434,326.03,48.057 +678435,328.56,48.863 +678436,330.96,49.636 +678437,322.05,47.109 +678438,324.75,48.005 +678439,327.28,48.861 +678440,329.68,49.68 +678441,320.74,47.007 +678442,323.46,47.954 +678443,326,48.858 +678444,328.41,49.724 +678445,319.45,46.906 +678446,322.17,47.903 +678447,324.72,48.855 +678448,327.13,49.766 +678449,318.15,46.805 +678450,320.89,47.853 +678451,323.44,48.852 +678452,325.85,49.809 +678453,316.85,46.705 +678454,319.6,47.802 +678455,322.16,48.849 +678456,324.57,49.85 +678457,315.56,46.606 +678458,318.32,47.752 +678459,320.88,48.845 +678460,323.28,49.891 +678461,314.27,46.507 +678462,317.04,47.702 +678463,319.6,48.841 +678464,322,49.932 +678465,312.98,46.41 +678466,315.76,47.652 +678467,318.32,48.837 +678468,320.71,49.971 +678469,311.7,46.313 +678470,314.48,47.603 +678471,317.04,48.833 +678472,319.42,50.009 +678473,310.42,46.216 +678474,313.2,47.554 +678475,315.75,48.828 +678476,318.13,50.047 +678477,309.13,46.121 +678478,311.92,47.505 +678479,314.47,48.824 +678480,316.84,50.084 +678481,307.86,46.027 +678482,310.64,47.457 +678483,313.19,48.818 +678484,315.54,50.12 +678485,306.58,45.933 +678486,309.36,47.409 +678487,311.9,48.813 +678488,314.25,50.155 +678489,305.31,45.841 +678490,308.08,47.361 +678491,310.61,48.807 +678492,312.95,50.189 +678493,304.03,45.75 +678494,306.81,47.314 +678495,309.33,48.801 +678496,311.65,50.222 +678497,302.76,45.659 +678498,305.53,47.267 +678499,308.04,48.795 +678500,310.35,50.254 +678501,301.5,45.57 +678502,304.26,47.221 +678503,306.75,48.788 +678504,309.04,50.285 +678505,300.23,45.482 +678506,302.98,47.175 +678507,305.47,48.781 +678508,307.74,50.314 +678509,298.97,45.396 +678510,301.71,47.129 +678511,304.18,48.774 +678512,306.43,50.343 +678513,297.71,45.31 +678514,300.44,47.084 +678515,302.89,48.766 +678516,305.13,50.371 +678517,296.45,45.226 +678518,299.17,47.039 +678519,301.6,48.758 +678520,303.82,50.397 +678521,295.2,45.143 +678522,297.89,46.995 +678523,300.31,48.75 +678524,302.5,50.422 +678525,293.94,45.062 +678526,296.62,46.951 +678527,299.02,48.741 +678528,301.19,50.446 +678529,292.69,44.981 +678530,295.36,46.907 +678531,297.73,48.732 +678532,299.88,50.469 +678533,291.44,44.903 +678534,294.09,46.864 +678535,296.44,48.722 +678536,298.56,50.49 +678537,290.2,44.825 +678538,292.82,46.822 +678539,295.15,48.712 +678540,297.24,50.51 +678541,288.95,44.75 +678542,291.55,46.78 +678543,293.85,48.701 +678544,295.93,50.529 +678545,287.71,44.675 +678546,290.29,46.739 +678547,292.56,48.69 +678548,294.61,50.547 +678549,286.47,44.603 +678550,289.02,46.698 +678551,291.27,48.679 +678552,293.28,50.563 +678553,285.24,44.532 +678554,287.75,46.658 +678555,289.97,48.667 +678556,291.96,50.578 +678557,284,44.462 +678558,286.49,46.618 +678559,288.68,48.655 +678560,290.64,50.591 +678561,282.77,44.394 +678562,285.23,46.579 +678563,287.38,48.642 +678564,289.31,50.603 +678565,281.54,44.328 +678566,283.96,46.54 +678567,286.09,48.629 +678568,287.98,50.614 +678569,280.31,44.264 +678570,282.7,46.502 +678571,284.79,48.615 +678572,286.65,50.623 +678573,279.08,44.201 +678574,281.44,46.464 +678575,283.5,48.601 +678576,285.32,50.63 +678577,277.86,44.14 +678578,280.18,46.427 +678579,282.2,48.586 +678580,283.99,50.637 +678581,276.64,44.081 +678582,278.92,46.391 +678583,280.9,48.571 +678584,282.66,50.641 +678585,275.42,44.024 +678586,277.66,46.355 +678587,279.61,48.555 +678588,281.33,50.644 +678589,274.2,43.968 +678590,276.4,46.32 +678591,278.31,48.539 +678592,279.99,50.646 +678593,272.98,43.914 +678594,275.14,46.286 +678595,277.01,48.522 +678596,278.66,50.646 +678597,271.77,43.863 +678598,273.89,46.252 +678599,275.71,48.505 +678600,277.32,50.644 +678601,270.55,43.813 +678602,272.63,46.218 +678603,274.41,48.488 +678604,275.98,50.641 +678605,269.34,43.765 +678606,271.37,46.186 +678607,273.12,48.469 +678608,274.64,50.637 +678609,268.13,43.718 +678610,270.12,46.154 +678611,271.82,48.45 +678612,273.3,50.63 +678613,266.93,43.674 +678614,268.86,46.122 +678615,270.52,48.431 +678616,271.96,50.622 +678617,265.72,43.632 +678618,267.61,46.091 +678619,269.22,48.411 +678620,270.62,50.613 +678621,264.52,43.592 +678622,266.35,46.061 +678623,267.92,48.391 +678624,269.28,50.602 +678625,263.32,43.553 +678626,265.1,46.032 +678627,266.62,48.37 +678628,267.93,50.589 +678629,262.12,43.517 +678630,263.84,46.003 +678631,265.31,48.348 +678632,266.59,50.575 +678633,260.92,43.483 +678634,262.59,45.975 +678635,264.01,48.326 +678636,265.24,50.558 +678637,259.72,43.451 +678638,261.34,45.947 +678639,262.71,48.304 +678640,263.9,50.541 +678641,258.52,43.42 +678642,260.09,45.921 +678643,261.41,48.28 +678644,262.55,50.521 +678645,257.33,43.392 +678646,258.84,45.894 +678647,260.11,48.257 +678648,261.2,50.5 +678649,256.14,43.366 +678650,257.59,45.869 +678651,258.81,48.232 +678652,259.85,50.477 +678653,254.94,43.342 +678654,256.34,45.844 +678655,257.5,48.208 +678656,258.5,50.453 +678657,253.75,43.319 +678658,255.09,45.82 +678659,256.2,48.182 +678660,257.15,50.427 +678661,252.56,43.299 +678662,253.84,45.796 +678663,254.9,48.156 +678664,255.8,50.399 +678665,251.37,43.281 +678666,252.59,45.774 +678667,253.6,48.13 +678668,254.45,50.37 +678669,250.19,43.265 +678670,251.34,45.751 +678671,252.29,48.103 +678672,253.1,50.338 +678673,249,43.251 +678674,250.09,45.73 +678675,250.99,48.075 +678676,251.75,50.306 +678677,247.81,43.239 +678678,248.84,45.709 +678679,249.69,48.047 +678680,250.39,50.271 +678681,246.63,43.229 +678682,247.59,45.689 +678683,248.38,48.018 +678684,249.04,50.235 +678685,245.44,43.22 +678686,246.35,45.669 +678687,247.08,47.989 +678688,247.69,50.197 +678689,244.26,43.214 +678690,245.1,45.651 +678691,245.78,47.959 +678692,246.33,50.157 +678693,243.08,43.21 +678694,243.85,45.632 +678695,244.47,47.929 +678696,244.98,50.116 +678697,241.89,43.208 +678698,242.6,45.615 +678699,243.17,47.898 +678700,243.62,50.073 +678701,240.71,43.208 +678702,241.36,45.598 +678703,241.87,47.866 +678704,242.27,50.029 +678705,239.53,43.21 +678706,240.11,45.582 +678707,240.56,47.834 +678708,240.91,49.982 +678709,238.35,43.213 +678710,238.86,45.566 +678711,239.26,47.801 +678712,239.56,49.934 +678713,237.17,43.219 +678714,237.62,45.551 +678715,237.95,47.768 +678716,238.2,49.885 +678717,235.99,43.226 +678718,236.37,45.537 +678719,236.65,47.735 +678720,236.84,49.834 +678721,234.81,43.236 +678722,235.13,45.523 +678723,235.35,47.701 +678724,235.49,49.781 +678725,233.63,43.247 +678726,233.88,45.51 +678727,234.04,47.666 +678728,234.13,49.727 +678729,232.45,43.26 +678730,232.64,45.498 +678731,232.74,47.631 +678732,232.78,49.671 +678733,231.27,43.275 +678734,231.39,45.486 +678735,231.44,47.595 +678736,231.42,49.613 +678737,230.09,43.292 +678738,230.15,45.475 +678739,230.13,47.559 +678740,230.06,49.554 +678741,228.9,43.31 +678742,228.9,45.465 +678743,228.83,47.522 +678744,228.71,49.493 +678745,227.72,43.33 +678746,227.65,45.455 +678747,227.53,47.485 +678748,227.35,49.431 +678749,226.54,43.352 +678750,226.41,45.445 +678751,226.22,47.447 +678752,225.99,49.367 +678753,225.36,43.376 +678754,225.16,45.436 +678755,224.92,47.408 +678756,224.64,49.301 +678757,224.18,43.401 +678758,223.92,45.428 +678759,223.62,47.37 +678760,223.28,49.234 +678761,223,43.428 +678762,222.67,45.421 +678763,222.32,47.331 +678764,221.93,49.166 +678765,221.81,43.457 +678766,221.43,45.414 +678767,221.01,47.291 +678768,220.57,49.096 +678769,220.63,43.487 +678770,220.18,45.407 +678771,219.71,47.251 +678772,219.22,49.025 +678773,219.45,43.519 +678774,218.94,45.401 +678775,218.41,47.21 +678776,217.86,48.952 +678777,218.26,43.552 +678778,217.69,45.396 +678779,217.11,47.169 +678780,216.51,48.878 +678781,217.08,43.586 +678782,216.45,45.391 +678783,215.81,47.128 +678784,215.16,48.802 +678785,215.89,43.623 +678786,215.2,45.387 +678787,214.5,47.086 +678788,213.8,48.725 +678789,214.7,43.66 +678790,213.95,45.383 +678791,213.2,47.043 +678792,212.45,48.647 +678793,213.51,43.699 +678794,212.71,45.379 +678795,211.9,47.001 +678796,211.1,48.567 +678797,212.33,43.739 +678798,211.46,45.376 +678799,210.6,46.958 +678800,209.75,48.486 +678801,211.14,43.781 +678802,210.21,45.374 +678803,209.3,46.914 +678804,208.4,48.404 +678805,209.95,43.824 +678806,208.97,45.372 +678807,208,46.87 +678808,207.05,48.32 +678809,208.75,43.868 +678810,207.72,45.371 +678811,206.7,46.826 +678812,205.7,48.236 +678813,207.56,43.913 +678814,206.47,45.37 +678815,205.4,46.781 +678816,204.35,48.15 +678817,206.37,43.959 +678818,205.23,45.369 +678819,204.11,46.736 +678820,203,48.062 +678821,205.17,44.007 +678822,203.98,45.369 +678823,202.81,46.691 +678824,201.65,47.974 +678825,203.97,44.056 +678826,202.73,45.369 +678827,201.51,46.645 +678828,200.31,47.885 +678829,202.77,44.105 +678830,201.48,45.37 +678831,200.21,46.599 +678832,198.96,47.794 +678833,201.57,44.156 +678834,200.23,45.371 +678835,198.91,46.553 +678836,197.62,47.702 +678837,200.37,44.208 +678838,198.98,45.372 +678839,197.62,46.506 +678840,196.27,47.61 +678841,199.17,44.26 +678842,197.73,45.374 +678843,196.32,46.459 +678844,194.93,47.516 +678845,197.97,44.314 +678846,196.49,45.376 +678847,195.03,46.412 +678848,193.59,47.421 +678849,196.76,44.368 +678850,195.24,45.379 +678851,193.73,46.365 +678852,192.25,47.326 +678853,195.55,44.423 +678854,193.98,45.382 +678855,192.44,46.317 +678856,190.91,47.229 +678857,194.35,44.479 +678858,192.73,45.385 +678859,191.14,46.269 +678860,189.57,47.132 +678861,193.14,44.535 +678862,191.48,45.388 +678863,189.85,46.221 +678864,188.23,47.033 +678865,191.92,44.592 +678866,190.23,45.392 +678867,188.55,46.173 +678868,186.89,46.934 +678869,190.71,44.65 +678870,188.98,45.396 +678871,187.26,46.124 +678872,185.56,46.834 +678873,189.5,44.709 +678874,187.73,45.4 +678875,185.97,46.076 +678876,184.23,46.734 +678877,188.28,44.768 +678878,186.47,45.405 +678879,184.68,46.027 +678880,182.89,46.632 +678881,187.06,44.827 +678882,185.22,45.409 +678883,183.39,45.978 +678884,181.56,46.53 +678885,185.84,44.887 +678886,183.97,45.414 +678887,182.1,45.928 +678888,180.23,46.428 +678889,184.62,44.947 +678890,182.71,45.42 +678891,180.81,45.879 +678892,178.9,46.324 +678893,183.39,45.008 +678894,181.46,45.425 +678895,179.52,45.83 +678896,177.58,46.221 +678897,182.17,45.069 +678898,180.2,45.43 +678899,178.23,45.78 +678900,176.25,46.116 +678901,180.94,45.13 +678902,178.95,45.436 +678903,176.94,45.73 +678904,174.93,46.012 +678905,179.71,45.192 +678906,177.69,45.442 +678907,175.65,45.681 +678908,173.6,45.906 +678909,178.48,45.253 +678910,176.43,45.448 +678911,174.37,45.631 +678912,172.28,45.801 +678913,177.25,45.315 +678914,175.18,45.454 +678915,173.08,45.581 +678916,170.96,45.695 +678917,176.01,45.377 +678918,173.92,45.46 +678919,171.8,45.531 +678920,169.64,45.589 +678921,174.78,45.439 +678922,172.66,45.467 +678923,170.51,45.481 +678924,168.33,45.482 +678925,173.54,45.501 +678926,171.4,45.473 +678927,169.23,45.431 +678928,167.01,45.375 +678929,172.3,45.563 +678930,170.14,45.479 +678931,167.94,45.381 +678932,165.7,45.268 +678933,171.06,45.625 +678934,168.88,45.486 +678935,166.66,45.332 +678936,164.39,45.161 +678937,169.81,45.687 +678938,167.62,45.492 +678939,165.38,45.282 +678940,163.08,45.054 +678941,168.57,45.749 +678942,166.36,45.499 +678943,164.1,45.232 +678944,161.77,44.947 +678945,167.32,45.811 +678946,165.1,45.505 +678947,162.82,45.182 +678948,160.47,44.839 +678949,166.07,45.872 +678950,163.84,45.512 +678951,161.54,45.133 +678952,159.16,44.732 +678953,164.82,45.933 +678954,162.57,45.519 +678955,160.26,45.083 +678956,157.86,44.625 +678957,163.56,45.994 +678958,161.31,45.525 +678959,158.98,45.034 +678960,156.56,44.518 +678961,162.31,46.054 +678962,160.05,45.531 +678963,157.7,44.985 +678964,155.26,44.411 +678965,161.05,46.114 +678966,158.78,45.538 +678967,156.42,44.935 +678968,153.97,44.305 +678969,159.79,46.174 +678970,157.52,45.544 +678971,155.15,44.886 +678972,152.67,44.198 +678973,158.53,46.233 +678974,156.25,45.55 +678975,153.87,44.838 +678976,151.38,44.092 +678977,157.26,46.292 +678978,154.98,45.556 +678979,152.6,44.789 +678980,150.09,43.986 +678981,156,46.35 +678982,153.72,45.562 +678983,151.32,44.741 +678984,148.8,43.881 +678985,154.73,46.407 +678986,152.45,45.568 +678987,150.05,44.693 +678988,147.51,43.776 +678989,153.46,46.464 +678990,151.18,45.574 +678991,148.78,44.645 +678992,146.23,43.672 +678993,152.19,46.52 +678994,149.91,45.58 +678995,147.51,44.597 +678996,144.95,43.568 +678997,150.92,46.576 +678998,148.64,45.585 +678999,146.23,44.55 +679000,143.67,43.465 +679001,149.65,46.631 +679002,147.37,45.59 +679003,144.96,44.502 +679004,142.39,43.363 +679005,148.37,46.685 +679006,146.1,45.595 +679007,143.69,44.456 +679008,141.12,43.261 +679009,147.09,46.738 +679010,144.83,45.6 +679011,142.43,44.409 +679012,139.84,43.16 +679013,145.81,46.791 +679014,143.56,45.604 +679015,141.16,44.363 +679016,138.57,43.059 +679017,144.53,46.842 +679018,142.29,45.609 +679019,139.89,44.317 +679020,137.3,42.96 +679021,143.25,46.893 +679022,141.02,45.613 +679023,138.62,44.272 +679024,136.04,42.861 +679025,141.96,46.943 +679026,139.74,45.617 +679027,137.36,44.226 +679028,134.77,42.763 +679029,140.68,46.992 +679030,138.47,45.62 +679031,136.09,44.182 +679032,133.51,42.667 +679033,139.39,47.039 +679034,137.2,45.623 +679035,134.83,44.137 +679036,132.25,42.571 +679037,138.1,47.086 +679038,135.92,45.626 +679039,133.57,44.093 +679040,130.99,42.476 +679041,136.81,47.132 +679042,134.65,45.629 +679043,132.3,44.05 +679044,129.74,42.383 +679045,135.51,47.177 +679046,133.37,45.631 +679047,131.04,44.007 +679048,128.48,42.29 +679049,134.22,47.22 +679050,132.09,45.633 +679051,129.78,43.964 +679052,127.23,42.199 +679053,132.92,47.262 +679054,130.82,45.635 +679055,128.52,43.922 +679056,125.98,42.109 +679057,131.62,47.304 +679058,129.54,45.636 +679059,127.26,43.88 +679060,124.74,42.021 +679061,130.32,47.344 +679062,128.26,45.637 +679063,126,43.839 +679064,123.49,41.933 +679065,129.02,47.382 +679066,126.98,45.638 +679067,124.74,43.798 +679068,122.25,41.847 +679069,127.72,47.42 +679070,125.7,45.638 +679071,123.49,43.758 +679072,121.01,41.763 +679073,126.41,47.456 +679074,124.43,45.638 +679075,122.23,43.718 +679076,119.77,41.68 +679077,125.11,47.491 +679078,123.15,45.637 +679079,120.98,43.679 +679080,118.54,41.598 +679081,123.8,47.525 +679082,121.86,45.636 +679083,119.72,43.641 +679084,117.31,41.518 +679085,122.49,47.557 +679086,120.58,45.635 +679087,118.47,43.602 +679088,116.07,41.44 +679089,121.18,47.588 +679090,119.3,45.633 +679091,117.21,43.565 +679092,114.85,41.363 +679093,119.87,47.617 +679094,118.02,45.631 +679095,115.96,43.528 +679096,113.62,41.288 +679097,118.56,47.645 +679098,116.74,45.628 +679099,114.71,43.492 +679100,112.4,41.215 +679101,117.24,47.672 +679102,115.46,45.625 +679103,113.45,43.456 +679104,111.17,41.143 +679105,115.93,47.697 +679106,114.17,45.621 +679107,112.2,43.421 +679108,109.95,41.073 +679109,114.61,47.72 +679110,112.89,45.617 +679111,110.95,43.387 +679112,108.74,41.005 +679113,113.29,47.742 +679114,111.61,45.612 +679115,109.7,43.353 +679116,107.52,40.938 +679117,111.98,47.763 +679118,110.32,45.607 +679119,108.45,43.32 +679120,106.31,40.874 +679121,110.66,47.782 +679122,109.04,45.601 +679123,107.21,43.287 +679124,105.1,40.811 +679125,109.33,47.799 +679126,107.75,45.595 +679127,105.96,43.255 +679128,103.89,40.751 +679129,108.01,47.815 +679130,106.47,45.589 +679131,104.71,43.224 +679132,102.68,40.692 +679133,106.69,47.829 +679134,105.18,45.581 +679135,103.46,43.193 +679136,101.47,40.636 +679137,105.36,47.842 +679138,103.89,45.574 +679139,102.22,43.163 +679140,100.27,40.581 +679141,104.04,47.853 +679142,102.61,45.566 +679143,100.97,43.134 +679144,99.067,40.528 +679145,102.71,47.862 +679146,101.32,45.557 +679147,99.728,43.106 +679148,97.866,40.478 +679149,101.38,47.87 +679150,100.03,45.548 +679151,98.484,43.078 +679152,96.668,40.43 +679153,100.06,47.876 +679154,98.745,45.538 +679155,97.24,43.051 +679156,95.471,40.383 +679157,98.727,47.88 +679158,97.458,45.528 +679159,95.997,43.025 +679160,94.276,40.339 +679161,97.396,47.883 +679162,96.17,45.517 +679163,94.754,42.999 +679164,93.082,40.297 +679165,96.065,47.884 +679166,94.881,45.505 +679167,93.512,42.974 +679168,91.89,40.257 +679169,94.734,47.883 +679170,93.593,45.493 +679171,92.27,42.95 +679172,90.7,40.22 +679173,93.401,47.881 +679174,92.304,45.481 +679175,91.029,42.926 +679176,89.511,40.184 +679177,92.068,47.877 +679178,91.015,45.467 +679179,89.788,42.904 +679180,88.324,40.151 +679181,90.734,47.871 +679182,89.725,45.454 +679183,88.547,42.882 +679184,87.137,40.12 +679185,89.399,47.863 +679186,88.436,45.44 +679187,87.307,42.86 +679188,85.952,40.091 +679189,88.064,47.853 +679190,87.146,45.425 +679191,86.068,42.84 +679192,84.769,40.065 +679193,86.728,47.842 +679194,85.856,45.409 +679195,84.829,42.82 +679196,83.586,40.041 +679197,85.392,47.829 +679198,84.566,45.393 +679199,83.59,42.801 +679200,82.405,40.019 +679201,84.055,47.814 +679202,83.276,45.377 +679203,82.351,42.783 +679204,81.225,39.999 +679205,82.717,47.798 +679206,81.986,45.36 +679207,81.113,42.766 +679208,80.046,39.981 +679209,81.379,47.78 +679210,80.696,45.342 +679211,79.875,42.749 +679212,78.867,39.966 +679213,80.041,47.76 +679214,79.405,45.324 +679215,78.637,42.733 +679216,77.69,39.953 +679217,78.702,47.738 +679218,78.114,45.305 +679219,77.4,42.718 +679220,76.513,39.943 +679221,77.363,47.714 +679222,76.824,45.285 +679223,76.163,42.703 +679224,75.337,39.935 +679225,76.024,47.689 +679226,75.533,45.265 +679227,74.926,42.689 +679228,74.162,39.929 +679229,74.684,47.662 +679230,74.242,45.245 +679231,73.69,42.677 +679232,72.987,39.925 +679233,73.344,47.633 +679234,72.951,45.224 +679235,72.453,42.664 +679236,71.813,39.923 +679237,72.004,47.602 +679238,71.66,45.202 +679239,71.217,42.653 +679240,70.64,39.924 +679241,70.664,47.57 +679242,70.369,45.18 +679243,69.981,42.642 +679244,69.467,39.927 +679245,69.323,47.535 +679246,69.078,45.157 +679247,68.746,42.632 +679248,68.294,39.932 +679249,67.983,47.499 +679250,67.787,45.133 +679251,67.51,42.623 +679252,67.121,39.939 +679253,66.642,47.462 +679254,66.496,45.109 +679255,66.274,42.615 +679256,65.949,39.949 +679257,65.301,47.422 +679258,65.205,45.085 +679259,65.039,42.607 +679260,64.777,39.961 +679261,63.96,47.381 +679262,63.915,45.06 +679263,63.804,42.6 +679264,63.604,39.975 +679265,62.62,47.338 +679266,62.624,45.034 +679267,62.568,42.594 +679268,62.432,39.991 +679269,61.279,47.293 +679270,61.333,45.008 +679271,61.333,42.588 +679272,61.26,40.009 +679273,59.939,47.247 +679274,60.043,44.981 +679275,60.098,42.583 +679276,60.088,40.029 +679277,58.598,47.199 +679278,58.752,44.954 +679279,58.863,42.579 +679280,58.915,40.052 +679281,57.258,47.149 +679282,57.462,44.926 +679283,57.628,42.576 +679284,57.742,40.076 +679285,55.918,47.098 +679286,56.171,44.897 +679287,56.392,42.573 +679288,56.569,40.103 +679289,54.579,47.045 +679290,54.881,44.868 +679291,55.157,42.571 +679292,55.396,40.131 +679293,53.239,46.99 +679294,53.592,44.839 +679295,53.922,42.57 +679296,54.222,40.162 +679297,51.9,46.934 +679298,52.302,44.809 +679299,52.686,42.569 +679300,53.047,40.194 +679301,50.561,46.876 +679302,51.012,44.779 +679303,51.451,42.569 +679304,51.872,40.228 +679305,49.223,46.816 +679306,49.723,44.748 +679307,50.215,42.57 +679308,50.696,40.265 +679309,47.885,46.755 +679310,48.434,44.716 +679311,48.98,42.571 +679312,49.52,40.303 +679313,46.547,46.693 +679314,47.145,44.684 +679315,47.744,42.573 +679316,48.343,40.343 +679317,45.21,46.628 +679318,45.857,44.652 +679319,46.508,42.576 +679320,47.165,40.384 +679321,43.874,46.563 +679322,44.568,44.619 +679323,45.272,42.579 +679324,45.986,40.428 +679325,42.538,46.495 +679326,43.28,44.586 +679327,44.036,42.583 +679328,44.806,40.473 +679329,41.203,46.427 +679330,41.992,44.552 +679331,42.799,42.587 +679332,43.625,40.52 +679333,39.868,46.356 +679334,40.705,44.518 +679335,41.562,42.592 +679336,42.443,40.568 +679337,38.534,46.285 +679338,39.418,44.483 +679339,40.325,42.598 +679340,41.26,40.618 +679341,37.201,46.212 +679342,38.131,44.448 +679343,39.088,42.604 +679344,40.076,40.67 +679345,35.868,46.137 +679346,36.845,44.413 +679347,37.85,42.611 +679348,38.891,40.723 +679349,34.537,46.061 +679350,35.559,44.377 +679351,36.613,42.618 +679352,37.704,40.778 +679353,33.206,45.984 +679354,34.273,44.34 +679355,35.374,42.626 +679356,36.517,40.834 +679357,31.876,45.905 +679358,32.988,44.304 +679359,34.136,42.635 +679360,35.327,40.891 +679361,30.546,45.826 +679362,31.703,44.267 +679363,32.897,42.644 +679364,34.137,40.95 +679365,29.218,45.744 +679366,30.418,44.229 +679367,31.658,42.653 +679368,32.945,41.01 +679369,27.891,45.662 +679370,29.134,44.192 +679371,30.419,42.663 +679372,31.752,41.071 +679373,26.564,45.578 +679374,27.85,44.153 +679375,29.179,42.673 +679376,30.557,41.134 +679377,25.239,45.494 +679378,26.567,44.115 +679379,27.939,42.684 +679380,29.361,41.198 +679381,23.915,45.408 +679382,25.284,44.076 +679383,26.698,42.696 +679384,28.163,41.263 +679385,22.591,45.321 +679386,24.002,44.037 +679387,25.457,42.708 +679388,26.963,41.329 +679389,21.269,45.232 +679390,22.72,43.998 +679391,24.216,42.72 +679392,25.762,41.396 +679393,19.948,45.143 +679394,21.439,43.958 +679395,22.974,42.732 +679396,24.559,41.464 +679397,18.629,45.053 +679398,20.158,43.918 +679399,21.732,42.745 +679400,23.355,41.533 +679401,17.31,44.962 +679402,18.878,43.878 +679403,20.489,42.759 +679404,22.149,41.603 +679405,15.993,44.87 +679406,17.598,43.837 +679407,19.246,42.773 +679408,20.941,41.674 +679409,14.677,44.776 +679410,16.319,43.797 +679411,18.002,42.787 +679412,19.731,41.745 +679413,13.362,44.682 +679414,15.04,43.756 +679415,16.758,42.801 +679416,18.52,41.818 +679417,12.049,44.587 +679418,13.762,43.715 +679419,15.513,42.816 +679420,17.306,41.891 +679421,10.737,44.492 +679422,12.484,43.674 +679423,14.268,42.831 +679424,16.091,41.965 +679425,9.4262,44.395 +679426,11.207,43.632 +679427,13.022,42.847 +679428,14.874,42.039 +679429,8.117,44.298 +679430,9.9309,43.59 +679431,11.776,42.862 +679432,13.656,42.114 +679433,6.8093,44.2 +679434,8.655,43.549 +679435,10.53,42.878 +679436,12.435,42.189 +679437,5.5032,44.101 +679438,7.3798,43.507 +679439,9.2823,42.895 +679440,11.212,42.265 +679441,4.1985,44.002 +679442,6.1052,43.465 +679443,8.0346,42.911 +679444,9.988,42.342 +679445,2.8954,43.902 +679446,4.8312,43.423 +679447,6.7863,42.928 +679448,8.7617,42.419 +679449,1.5939,43.802 +679450,3.5578,43.38 +679451,5.5374,42.945 +679452,7.5335,42.496 +679453,0.294,43.701 +679454,2.2851,43.338 +679455,4.288,42.962 +679456,6.3034,42.573 +679457,359,43.6 +679458,1.013,43.296 +679459,3.038,42.979 +679460,5.0713,42.651 +679461,357.7,43.498 +679462,359.74,43.253 +679463,1.7874,42.997 +679464,3.8373,42.729 +679465,356.4,43.396 +679466,358.47,43.211 +679467,0.53629,43.014 +679468,2.6014,42.807 +679469,355.11,43.293 +679470,357.2,43.169 +679471,359.28,43.032 +679472,1.3635,42.885 +679473,353.82,43.191 +679474,355.93,43.126 +679475,358.03,43.05 +679476,0.12365,42.963 +679477,352.53,43.088 +679478,354.66,43.084 +679479,356.78,43.068 +679480,358.88,43.041 +679481,351.24,42.984 +679482,353.39,43.041 +679483,355.53,43.086 +679484,357.64,43.119 +679485,349.96,42.881 +679486,352.13,42.999 +679487,354.27,43.104 +679488,356.39,43.197 +679489,348.67,42.777 +679490,350.86,42.957 +679491,353.02,43.122 +679492,355.14,43.275 +679493,347.39,42.674 +679494,349.59,42.914 +679495,351.76,43.141 +679496,353.9,43.353 +679497,346.11,42.57 +679498,348.33,42.872 +679499,350.51,43.159 +679500,352.64,43.431 +679501,344.83,42.467 +679502,347.06,42.83 +679503,349.25,43.177 +679504,351.39,43.508 +679505,343.55,42.363 +679506,345.8,42.789 +679507,347.99,43.195 +679508,350.14,43.585 +679509,342.28,42.26 +679510,344.54,42.747 +679511,346.73,43.214 +679512,348.88,43.662 +679513,341.01,42.157 +679514,343.27,42.705 +679515,345.48,43.232 +679516,347.62,43.738 +679517,339.74,42.054 +679518,342.01,42.664 +679519,344.22,43.25 +679520,346.36,43.814 +679521,338.47,41.951 +679522,340.75,42.623 +679523,342.96,43.268 +679524,345.1,43.889 +679525,337.2,41.849 +679526,339.49,42.582 +679527,341.7,43.286 +679528,343.83,43.964 +679529,335.94,41.747 +679530,338.23,42.541 +679531,340.44,43.304 +679532,342.56,44.038 +679533,334.67,41.645 +679534,336.97,42.5 +679535,339.18,43.322 +679536,341.3,44.112 +679537,333.41,41.544 +679538,335.71,42.46 +679539,337.91,43.339 +679540,340.03,44.185 +679541,332.15,41.444 +679542,334.46,42.42 +679543,336.65,43.357 +679544,338.75,44.258 +679545,330.9,41.344 +679546,333.2,42.38 +679547,335.39,43.374 +679548,337.48,44.329 +679549,329.64,41.245 +679550,331.94,42.341 +679551,334.13,43.392 +679552,336.2,44.4 +679553,328.39,41.146 +679554,330.69,42.302 +679555,332.86,43.409 +679556,334.93,44.471 +679557,327.14,41.048 +679558,329.43,42.263 +679559,331.6,43.426 +679560,333.65,44.54 +679561,325.89,40.951 +679562,328.18,42.225 +679563,330.33,43.442 +679564,332.37,44.609 +679565,324.65,40.854 +679566,326.93,42.187 +679567,329.07,43.459 +679568,331.09,44.676 +679569,323.4,40.759 +679570,325.67,42.149 +679571,327.8,43.475 +679572,329.8,44.743 +679573,322.16,40.664 +679574,324.42,42.112 +679575,326.53,43.491 +679576,328.52,44.809 +679577,320.92,40.571 +679578,323.17,42.075 +679579,325.26,43.506 +679580,327.23,44.873 +679581,319.69,40.478 +679582,321.92,42.038 +679583,324,43.522 +679584,325.94,44.937 +679585,318.45,40.387 +679586,320.67,42.002 +679587,322.73,43.537 +679588,324.65,45 +679589,317.22,40.296 +679590,319.42,41.967 +679591,321.46,43.552 +679592,323.36,45.062 +679593,315.99,40.207 +679594,318.17,41.932 +679595,320.19,43.566 +679596,322.06,45.122 +679597,314.76,40.119 +679598,316.93,41.897 +679599,318.92,43.58 +679600,320.77,45.181 +679601,313.53,40.032 +679602,315.68,41.863 +679603,317.65,43.594 +679604,319.47,45.239 +679605,312.31,39.947 +679606,314.43,41.829 +679607,316.38,43.608 +679608,318.17,45.296 +679609,311.08,39.863 +679610,313.19,41.796 +679611,315.1,43.621 +679612,316.88,45.352 +679613,309.86,39.78 +679614,311.94,41.764 +679615,313.83,43.634 +679616,315.57,45.406 +679617,308.64,39.699 +679618,310.7,41.732 +679619,312.56,43.646 +679620,314.27,45.459 +679621,307.43,39.62 +679622,309.45,41.7 +679623,311.29,43.658 +679624,312.97,45.511 +679625,306.21,39.541 +679626,308.21,41.669 +679627,310.01,43.67 +679628,311.66,45.562 +679629,305,39.465 +679630,306.97,41.639 +679631,308.74,43.681 +679632,310.36,45.611 +679633,303.79,39.39 +679634,305.73,41.61 +679635,307.46,43.692 +679636,309.05,45.658 +679637,302.58,39.317 +679638,304.48,41.581 +679639,306.19,43.702 +679640,307.74,45.704 +679641,301.37,39.245 +679642,303.24,41.552 +679643,304.91,43.712 +679644,306.43,45.749 +679645,300.17,39.176 +679646,302,41.524 +679647,303.64,43.722 +679648,305.12,45.792 +679649,298.97,39.108 +679650,300.76,41.497 +679651,302.36,43.731 +679652,303.81,45.834 +679653,297.77,39.042 +679654,299.52,41.471 +679655,301.09,43.739 +679656,302.5,45.874 +679657,296.57,38.978 +679658,298.29,41.445 +679659,299.81,43.747 +679660,301.18,45.913 +679661,295.37,38.915 +679662,297.05,41.42 +679663,298.53,43.755 +679664,299.87,45.95 +679665,294.17,38.855 +679666,295.81,41.395 +679667,297.25,43.762 +679668,298.55,45.986 +679669,292.98,38.797 +679670,294.57,41.371 +679671,295.98,43.769 +679672,297.23,46.02 +679673,291.79,38.74 +679674,293.34,41.348 +679675,294.7,43.775 +679676,295.92,46.052 +679677,290.59,38.686 +679678,292.1,41.326 +679679,293.42,43.78 +679680,294.6,46.083 +679681,289.41,38.634 +679682,290.86,41.304 +679683,292.14,43.786 +679684,293.28,46.112 +679685,288.22,38.584 +679686,289.63,41.283 +679687,290.86,43.79 +679688,291.96,46.139 +679689,287.03,38.536 +679690,288.4,41.263 +679691,289.58,43.794 +679692,290.63,46.165 +679693,285.85,38.491 +679694,287.16,41.244 +679695,288.3,43.798 +679696,289.31,46.189 +679697,284.66,38.447 +679698,285.93,41.225 +679699,287.02,43.801 +679700,287.99,46.211 +679701,283.48,38.406 +679702,284.69,41.207 +679703,285.74,43.803 +679704,286.67,46.232 +679705,282.3,38.367 +679706,283.46,41.19 +679707,284.46,43.805 +679708,285.34,46.251 +679709,281.12,38.331 +679710,282.23,41.174 +679711,283.18,43.806 +679712,284.02,46.268 +679713,279.94,38.296 +679714,280.99,41.158 +679715,281.9,43.807 +679716,282.69,46.283 +679717,278.76,38.264 +679718,279.76,41.143 +679719,280.62,43.807 +679720,281.36,46.297 +679721,277.59,38.235 +679722,278.53,41.129 +679723,279.33,43.807 +679724,280.04,46.308 +679725,276.41,38.207 +679726,277.3,41.116 +679727,278.05,43.806 +679728,278.71,46.318 +679729,275.24,38.182 +679730,276.07,41.104 +679731,276.77,43.804 +679732,277.38,46.327 +679733,274.06,38.16 +679734,274.84,41.092 +679735,275.49,43.802 +679736,276.05,46.333 +679737,272.89,38.14 +679738,273.61,41.081 +679739,274.21,43.799 +679740,274.73,46.338 +679741,271.72,38.122 +679742,272.37,41.071 +679743,272.93,43.796 +679744,273.4,46.34 +679745,270.54,38.107 +679746,271.14,41.062 +679747,271.64,43.792 +679748,272.07,46.341 +679749,269.37,38.094 +679750,269.91,41.054 +679751,270.36,43.788 +679752,270.74,46.341 +679753,268.2,38.084 +679754,268.68,41.046 +679755,269.08,43.783 +679756,269.41,46.338 +679757,267.03,38.076 +679758,267.45,41.039 +679759,267.8,43.777 +679760,268.08,46.334 +679761,265.86,38.07 +679762,266.22,41.033 +679763,266.51,43.771 +679764,266.75,46.327 +679765,264.69,38.067 +679766,264.99,41.028 +679767,265.23,43.764 +679768,265.42,46.319 +679769,263.52,38.066 +679770,263.76,41.024 +679771,263.95,43.757 +679772,264.09,46.309 +679773,262.35,38.068 +679774,262.54,41.021 +679775,262.66,43.749 +679776,262.76,46.297 +679777,261.18,38.072 +679778,261.31,41.018 +679779,261.38,43.741 +679780,261.43,46.284 +679781,260.02,38.079 +679782,260.08,41.016 +679783,260.1,43.731 +679784,260.1,46.269 +679785,258.85,38.088 +679786,258.85,41.015 +679787,258.82,43.722 +679788,258.77,46.251 +679789,257.68,38.1 +679790,257.62,41.015 +679791,257.53,43.711 +679792,257.44,46.232 +679793,256.51,38.114 +679794,256.39,41.015 +679795,256.25,43.701 +679796,256.11,46.211 +679797,255.34,38.13 +679798,255.16,41.016 +679799,254.97,43.689 +679800,254.78,46.189 +679801,254.17,38.148 +679802,253.93,41.018 +679803,253.69,43.677 +679804,253.45,46.164 +679805,253,38.169 +679806,252.7,41.021 +679807,252.41,43.665 +679808,252.12,46.138 +679809,251.83,38.193 +679810,251.47,41.025 +679811,251.12,43.651 +679812,250.79,46.11 +679813,250.66,38.218 +679814,250.24,41.03 +679815,249.84,43.638 +679816,249.46,46.08 +679817,249.49,38.246 +679818,249.01,41.035 +679819,248.56,43.623 +679820,248.13,46.049 +679821,248.31,38.276 +679822,247.78,41.041 +679823,247.28,43.609 +679824,246.8,46.016 +679825,247.14,38.309 +679826,246.55,41.048 +679827,246,43.593 +679828,245.47,45.981 +679829,245.97,38.344 +679830,245.32,41.055 +679831,244.72,43.577 +679832,244.15,45.944 +679833,244.79,38.38 +679834,244.09,41.064 +679835,243.43,43.561 +679836,242.82,45.905 +679837,243.62,38.419 +679838,242.86,41.073 +679839,242.15,43.544 +679840,241.49,45.865 +679841,242.44,38.461 +679842,241.63,41.082 +679843,240.87,43.526 +679844,240.17,45.823 +679845,241.26,38.504 +679846,240.39,41.093 +679847,239.59,43.508 +679848,238.84,45.78 +679849,240.08,38.549 +679850,239.16,41.104 +679851,238.31,43.49 +679852,237.52,45.735 +679853,238.91,38.597 +679854,237.93,41.116 +679855,237.03,43.471 +679856,236.19,45.688 +679857,237.73,38.646 +679858,236.7,41.129 +679859,235.75,43.451 +679860,234.87,45.639 +679861,236.54,38.698 +679862,235.47,41.142 +679863,234.47,43.431 +679864,233.54,45.589 +679865,235.36,38.751 +679866,234.23,41.156 +679867,233.19,43.411 +679868,232.22,45.537 +679869,234.18,38.806 +679870,233,41.171 +679871,231.92,43.39 +679872,230.9,45.484 +679873,232.99,38.863 +679874,231.77,41.187 +679875,230.64,43.368 +679876,229.58,45.429 +679877,231.8,38.922 +679878,230.53,41.203 +679879,229.36,43.346 +679880,228.26,45.373 +679881,230.61,38.983 +679882,229.3,41.219 +679883,228.08,43.324 +679884,226.94,45.315 +679885,229.42,39.045 +679886,228.06,41.237 +679887,226.8,43.301 +679888,225.62,45.256 +679889,228.23,39.109 +679890,226.83,41.255 +679891,225.53,43.278 +679892,224.31,45.195 +679893,227.04,39.175 +679894,225.59,41.273 +679895,224.25,43.254 +679896,222.99,45.133 +679897,225.85,39.242 +679898,224.36,41.293 +679899,222.97,43.23 +679900,221.68,45.069 +679901,224.65,39.311 +679902,223.12,41.312 +679903,221.7,43.205 +679904,220.36,45.004 +679905,223.45,39.382 +679906,221.88,41.333 +679907,220.42,43.18 +679908,219.05,44.937 +679909,222.25,39.454 +679910,220.65,41.354 +679911,219.15,43.155 +679912,217.74,44.87 +679913,221.05,39.527 +679914,219.41,41.375 +679915,217.87,43.129 +679916,216.43,44.801 +679917,219.85,39.602 +679918,218.17,41.397 +679919,216.6,43.103 +679920,215.12,44.73 +679921,218.64,39.678 +679922,216.93,41.42 +679923,215.33,43.077 +679924,213.81,44.659 +679925,217.44,39.756 +679926,215.69,41.443 +679927,214.05,43.05 +679928,212.5,44.586 +679929,216.23,39.834 +679930,214.45,41.466 +679931,212.78,43.023 +679932,211.2,44.512 +679933,215.02,39.914 +679934,213.21,41.49 +679935,211.51,42.995 +679936,209.89,44.436 +679937,213.8,39.995 +679938,211.97,41.515 +679939,210.24,42.968 +679940,208.59,44.36 +679941,212.59,40.077 +679942,210.73,41.54 +679943,208.97,42.94 +679944,207.29,44.282 +679945,211.37,40.16 +679946,209.49,41.565 +679947,207.7,42.911 +679948,205.99,44.204 +679949,210.16,40.244 +679950,208.24,41.591 +679951,206.43,42.883 +679952,204.69,44.124 +679953,208.94,40.329 +679954,207,41.617 +679955,205.16,42.854 +679956,203.39,44.044 +679957,207.71,40.415 +679958,205.76,41.644 +679959,203.89,42.825 +679960,202.1,43.962 +679961,206.49,40.502 +679962,204.51,41.671 +679963,202.62,42.796 +679964,200.8,43.88 +679965,205.26,40.59 +679966,203.27,41.698 +679967,201.35,42.766 +679968,199.51,43.796 +679969,204.04,40.678 +679970,202.02,41.726 +679971,200.09,42.737 +679972,198.22,43.712 +679973,202.81,40.767 +679974,200.78,41.754 +679975,198.82,42.707 +679976,196.93,43.627 +679977,201.57,40.857 +679978,199.53,41.782 +679979,197.55,42.677 +679980,195.64,43.541 +679981,200.34,40.947 +679982,198.28,41.811 +679983,196.29,42.647 +679984,194.36,43.454 +679985,199.1,41.038 +679986,197.03,41.84 +679987,195.02,42.616 +679988,193.07,43.367 +679989,197.87,41.129 +679990,195.78,41.869 +679991,193.76,42.586 +679992,191.79,43.279 +679993,196.63,41.221 +679994,194.54,41.899 +679995,192.5,42.555 +679996,190.51,43.19 +679997,195.38,41.313 +679998,193.29,41.929 +679999,191.23,42.525 +680000,189.23,43.101 +680001,194.14,41.405 +680002,192.03,41.959 +680003,189.97,42.494 +680004,187.95,43.011 +680005,192.89,41.498 +680006,190.78,41.989 +680007,188.71,42.463 +680008,186.67,42.921 +680009,191.65,41.591 +680010,189.53,42.019 +680011,187.45,42.432 +680012,185.4,42.83 +680013,190.4,41.684 +680014,188.28,42.05 +680015,186.19,42.401 +680016,184.13,42.739 +680017,189.15,41.777 +680018,187.03,42.08 +680019,184.93,42.37 +680020,182.85,42.647 +680021,187.89,41.871 +680022,185.77,42.111 +680023,183.67,42.339 +680024,181.59,42.556 +680025,186.64,41.964 +680026,184.52,42.142 +680027,182.41,42.309 +680028,180.32,42.463 +680029,185.38,42.058 +680030,183.26,42.173 +680031,181.15,42.278 +680032,179.05,42.371 +680033,184.12,42.151 +680034,182.01,42.204 +680035,179.9,42.247 +680036,177.79,42.278 +680037,182.86,42.244 +680038,180.75,42.236 +680039,178.64,42.216 +680040,176.53,42.185 +680041,181.59,42.338 +680042,179.49,42.267 +680043,177.38,42.185 +680044,175.27,42.093 +680045,180.33,42.431 +680046,178.23,42.298 +680047,176.13,42.155 +680048,174.01,42 +680049,179.06,42.523 +680050,176.97,42.33 +680051,174.87,42.124 +680052,172.76,41.907 +680053,177.79,42.616 +680054,175.72,42.361 +680055,173.62,42.094 +680056,171.5,41.814 +680057,176.52,42.708 +680058,174.46,42.393 +680059,172.37,42.064 +680060,170.25,41.721 +680061,175.25,42.8 +680062,173.2,42.424 +680063,171.11,42.033 +680064,169,41.628 +680065,173.97,42.891 +680066,171.93,42.455 +680067,169.86,42.004 +680068,167.75,41.536 +680069,172.7,42.982 +680070,170.67,42.487 +680071,168.61,41.974 +680072,166.51,41.443 +680073,171.42,43.073 +680074,169.41,42.518 +680075,167.36,41.944 +680076,165.26,41.351 +680077,170.14,43.163 +680078,168.15,42.549 +680079,166.11,41.915 +680080,164.02,41.26 +680081,168.86,43.252 +680082,166.88,42.58 +680083,164.86,41.886 +680084,162.78,41.168 +680085,167.57,43.341 +680086,165.62,42.611 +680087,163.61,41.857 +680088,161.55,41.077 +680089,166.29,43.429 +680090,164.35,42.642 +680091,162.36,41.828 +680092,160.31,40.987 +680093,165,43.516 +680094,163.09,42.673 +680095,161.12,41.8 +680096,159.08,40.897 +680097,163.71,43.603 +680098,161.82,42.703 +680099,159.87,41.772 +680100,157.84,40.808 +680101,162.42,43.689 +680102,160.56,42.734 +680103,158.62,41.744 +680104,156.61,40.719 +680105,161.13,43.774 +680106,159.29,42.764 +680107,157.38,41.717 +680108,155.39,40.631 +680109,159.84,43.858 +680110,158.02,42.794 +680111,156.13,41.69 +680112,154.16,40.544 +680113,158.54,43.941 +680114,156.75,42.824 +680115,154.89,41.663 +680116,152.94,40.457 +680117,157.25,44.024 +680118,155.48,42.853 +680119,153.64,41.637 +680120,151.72,40.372 +680121,155.95,44.105 +680122,154.21,42.883 +680123,152.4,41.611 +680124,150.5,40.287 +680125,154.65,44.185 +680126,152.94,42.912 +680127,151.16,41.586 +680128,149.28,40.203 +680129,153.35,44.265 +680130,151.67,42.941 +680131,149.92,41.561 +680132,148.06,40.12 +680133,152.05,44.343 +680134,150.4,42.969 +680135,148.67,41.536 +680136,146.85,40.038 +680137,150.75,44.42 +680138,149.13,42.998 +680139,147.43,41.512 +680140,145.63,39.957 +680141,149.44,44.496 +680142,147.86,43.025 +680143,146.19,41.488 +680144,144.42,39.878 +680145,148.14,44.571 +680146,146.59,43.053 +680147,144.95,41.465 +680148,143.22,39.799 +680149,146.83,44.645 +680150,145.31,43.08 +680151,143.71,41.442 +680152,142.01,39.722 +680153,145.52,44.718 +680154,144.04,43.108 +680155,142.47,41.42 +680156,140.8,39.646 +680157,144.21,44.789 +680158,142.77,43.134 +680159,141.24,41.398 +680160,139.6,39.571 +680161,142.9,44.859 +680162,141.49,43.16 +680163,140,41.377 +680164,138.4,39.498 +680165,141.59,44.928 +680166,140.22,43.186 +680167,138.76,41.357 +680168,137.2,39.426 +680169,140.27,44.995 +680170,138.94,43.212 +680171,137.52,41.337 +680172,136,39.356 +680173,138.96,45.061 +680174,137.67,43.237 +680175,136.29,41.317 +680176,134.81,39.287 +680177,137.65,45.126 +680178,136.39,43.262 +680179,135.05,41.298 +680180,133.61,39.219 +680181,136.33,45.189 +680182,135.11,43.286 +680183,133.82,41.28 +680184,132.42,39.153 +680185,135.01,45.251 +680186,133.84,43.31 +680187,132.58,41.262 +680188,131.23,39.089 +680189,133.69,45.311 +680190,132.56,43.334 +680191,131.35,41.245 +680192,130.04,39.027 +680193,132.38,45.37 +680194,131.28,43.357 +680195,130.11,41.229 +680196,128.85,38.966 +680197,131.06,45.427 +680198,130,43.379 +680199,128.88,41.213 +680200,127.66,38.907 +680201,129.73,45.483 +680202,128.72,43.401 +680203,127.64,41.198 +680204,126.48,38.85 +680205,128.41,45.537 +680206,127.44,43.423 +680207,126.41,41.183 +680208,125.29,38.795 +680209,127.09,45.59 +680210,126.17,43.444 +680211,125.18,41.169 +680212,124.11,38.741 +680213,125.77,45.641 +680214,124.89,43.465 +680215,123.95,41.156 +680216,122.93,38.69 +680217,124.44,45.69 +680218,123.61,43.485 +680219,122.71,41.144 +680220,121.75,38.64 +680221,123.12,45.738 +680222,122.33,43.505 +680223,121.48,41.132 +680224,120.57,38.592 +680225,121.79,45.784 +680226,121.05,43.524 +680227,120.25,41.121 +680228,119.39,38.547 +680229,120.47,45.829 +680230,119.77,43.543 +680231,119.02,41.111 +680232,118.21,38.503 +680233,119.14,45.872 +680234,118.48,43.561 +680235,117.79,41.101 +680236,117.04,38.462 +680237,117.81,45.913 +680238,117.2,43.578 +680239,116.56,41.092 +680240,115.86,38.423 +680241,116.49,45.953 +680242,115.92,43.596 +680243,115.32,41.084 +680244,114.69,38.386 +680245,115.16,45.99 +680246,114.64,43.612 +680247,114.09,41.077 +680248,113.51,38.351 +680249,113.83,46.026 +680250,113.36,43.628 +680251,112.86,41.07 +680252,112.34,38.318 +680253,112.5,46.061 +680254,112.08,43.644 +680255,111.63,41.065 +680256,111.17,38.288 +680257,111.17,46.093 +680258,110.79,43.658 +680259,110.4,41.06 +680260,109.99,38.26 +680261,109.84,46.124 +680262,109.51,43.673 +680263,109.17,41.055 +680264,108.82,38.234 +680265,108.51,46.153 +680266,108.23,43.687 +680267,107.94,41.052 +680268,107.65,38.21 +680269,107.18,46.18 +680270,106.95,43.7 +680271,106.71,41.049 +680272,106.48,38.189 +680273,105.85,46.206 +680274,105.67,43.712 +680275,105.48,41.047 +680276,105.31,38.17 +680277,104.52,46.23 +680278,104.38,43.725 +680279,104.25,41.046 +680280,104.14,38.153 +680281,103.19,46.251 +680282,103.1,43.736 +680283,103.02,41.046 +680284,102.97,38.139 +680285,101.86,46.271 +680286,101.82,43.747 +680287,101.79,41.046 +680288,101.8,38.127 +680289,100.53,46.29 +680290,100.53,43.757 +680291,100.56,41.048 +680292,100.64,38.118 +680293,99.202,46.306 +680294,99.252,43.767 +680295,99.335,41.05 +680296,99.466,38.111 +680297,97.871,46.321 +680298,97.969,43.776 +680299,98.106,41.053 +680300,98.297,38.106 +680301,96.54,46.334 +680302,96.686,43.785 +680303,96.876,41.056 +680304,97.128,38.104 +680305,95.21,46.345 +680306,95.403,43.793 +680307,95.646,41.061 +680308,95.959,38.104 +680309,93.879,46.354 +680310,94.12,43.8 +680311,94.416,41.066 +680312,94.789,38.107 +680313,92.549,46.361 +680314,92.837,43.807 +680315,93.186,41.072 +680316,93.619,38.112 +680317,91.219,46.367 +680318,91.555,43.813 +680319,91.956,41.079 +680320,92.448,38.12 +680321,89.889,46.37 +680322,90.272,43.819 +680323,90.725,41.087 +680324,91.277,38.13 +680325,88.559,46.372 +680326,88.989,43.824 +680327,89.495,41.096 +680328,90.106,38.142 +680329,87.229,46.372 +680330,87.707,43.829 +680331,88.264,41.105 +680332,88.934,38.157 +680333,85.9,46.371 +680334,86.424,43.833 +680335,87.033,41.115 +680336,87.761,38.175 +680337,84.571,46.367 +680338,85.142,43.836 +680339,85.802,41.126 +680340,86.588,38.194 +680341,83.243,46.362 +680342,83.86,43.839 +680343,84.571,41.138 +680344,85.414,38.216 +680345,81.915,46.354 +680346,82.578,43.841 +680347,83.339,41.151 +680348,84.239,38.241 +680349,80.588,46.345 +680350,81.296,43.843 +680351,82.107,41.164 +680352,83.063,38.268 +680353,79.261,46.335 +680354,80.014,43.844 +680355,80.875,41.178 +680356,81.886,38.297 +680357,77.934,46.322 +680358,78.732,43.844 +680359,79.643,41.193 +680360,80.708,38.329 +680361,76.608,46.308 +680362,77.451,43.844 +680363,78.41,41.209 +680364,79.529,38.363 +680365,75.283,46.292 +680366,76.17,43.843 +680367,77.177,41.225 +680368,78.349,38.399 +680369,73.958,46.274 +680370,74.889,43.842 +680371,75.943,41.243 +680372,77.168,38.437 +680373,72.634,46.255 +680374,73.608,43.84 +680375,74.709,41.261 +680376,75.985,38.478 +680377,71.311,46.233 +680378,72.328,43.838 +680379,73.475,41.28 +680380,74.801,38.521 +680381,69.988,46.21 +680382,71.048,43.835 +680383,72.241,41.299 +680384,73.616,38.567 +680385,68.666,46.186 +680386,69.768,43.832 +680387,71.005,41.32 +680388,72.429,38.614 +680389,67.345,46.159 +680390,68.488,43.828 +680391,69.77,41.341 +680392,71.241,38.664 +680393,66.025,46.131 +680394,67.209,43.823 +680395,68.534,41.362 +680396,70.051,38.715 +680397,64.706,46.102 +680398,65.93,43.818 +680399,67.298,41.385 +680400,68.86,38.769 +680401,63.388,46.07 +680402,64.651,43.813 +680403,66.061,41.408 +680404,67.667,38.825 +680405,62.07,46.037 +680406,63.373,43.807 +680407,64.823,41.432 +680408,66.473,38.883 +680409,60.754,46.003 +680410,62.095,43.8 +680411,63.586,41.457 +680412,65.276,38.943 +680413,59.438,45.967 +680414,60.817,43.793 +680415,62.347,41.482 +680416,64.078,39.005 +680417,58.124,45.929 +680418,59.54,43.786 +680419,61.108,41.508 +680420,62.879,39.069 +680421,56.81,45.89 +680422,58.263,43.778 +680423,59.869,41.535 +680424,61.677,39.135 +680425,55.498,45.849 +680426,56.986,43.77 +680427,58.629,41.562 +680428,60.474,39.202 +680429,54.187,45.807 +680430,55.71,43.761 +680431,57.388,41.59 +680432,59.269,39.272 +680433,52.877,45.763 +680434,54.434,43.751 +680435,56.147,41.619 +680436,58.062,39.343 +680437,51.568,45.718 +680438,53.159,43.742 +680439,54.905,41.648 +680440,56.853,39.416 +680441,50.261,45.671 +680442,51.884,43.731 +680443,53.663,41.678 +680444,55.642,39.491 +680445,48.954,45.623 +680446,50.61,43.721 +680447,52.42,41.708 +680448,54.429,39.567 +680449,47.649,45.574 +680450,49.336,43.71 +680451,51.177,41.739 +680452,53.214,39.645 +680453,46.345,45.523 +680454,48.062,43.698 +680455,49.932,41.771 +680456,51.997,39.724 +680457,45.043,45.471 +680458,46.789,43.686 +680459,48.688,41.803 +680460,50.778,39.805 +680461,43.742,45.417 +680462,45.517,43.674 +680463,47.442,41.836 +680464,49.557,39.888 +680465,42.442,45.363 +680466,44.245,43.662 +680467,46.196,41.869 +680468,48.334,39.972 +680469,41.144,45.307 +680470,42.973,43.649 +680471,44.949,41.903 +680472,47.109,40.057 +680473,39.847,45.249 +680474,41.702,43.635 +680475,43.702,41.937 +680476,45.882,40.143 +680477,38.552,45.191 +680478,40.432,43.622 +680479,42.454,41.972 +680480,44.653,40.231 +680481,37.258,45.131 +680482,39.162,43.608 +680483,41.205,42.008 +680484,43.421,40.32 +680485,35.966,45.071 +680486,37.892,43.594 +680487,39.956,42.043 +680488,42.188,40.411 +680489,34.675,45.009 +680490,36.623,43.579 +680491,38.706,42.08 +680492,40.952,40.502 +680493,33.386,44.946 +680494,35.355,43.564 +680495,37.455,42.116 +680496,39.714,40.595 +680497,32.098,44.882 +680498,34.087,43.549 +680499,36.203,42.153 +680500,38.474,40.688 +680501,30.812,44.817 +680502,32.819,43.534 +680503,34.951,42.191 +680504,37.232,40.783 +680505,29.528,44.751 +680506,31.552,43.518 +680507,33.698,42.229 +680508,35.988,40.878 +680509,28.245,44.685 +680510,30.286,43.502 +680511,32.445,42.267 +680512,34.742,40.974 +680513,26.964,44.617 +680514,29.02,43.486 +680515,31.19,42.306 +680516,33.493,41.072 +680517,25.685,44.548 +680518,27.755,43.47 +680519,29.935,42.345 +680520,32.243,41.17 +680521,24.407,44.479 +680522,26.491,43.453 +680523,28.68,42.384 +680524,30.99,41.268 +680525,23.132,44.409 +680526,25.227,43.436 +680527,27.423,42.424 +680528,29.735,41.368 +680529,21.858,44.338 +680530,23.963,43.419 +680531,26.166,42.464 +680532,28.478,41.468 +680533,20.585,44.266 +680534,22.701,43.402 +680535,24.908,42.504 +680536,27.219,41.568 +680537,19.315,44.194 +680538,21.438,43.385 +680539,23.649,42.545 +680540,25.958,41.669 +680541,18.046,44.121 +680542,20.177,43.368 +680543,22.39,42.585 +680544,24.695,41.771 +680545,16.779,44.047 +680546,18.916,43.35 +680547,21.13,42.626 +680548,23.43,41.873 +680549,15.514,43.973 +680550,17.655,43.333 +680551,19.869,42.668 +680552,22.163,41.976 +680553,14.251,43.898 +680554,16.396,43.315 +680555,18.608,42.709 +680556,20.894,42.078 +680557,12.99,43.823 +680558,15.136,43.298 +680559,17.345,42.751 +680560,19.623,42.181 +680561,11.73,43.747 +680562,13.878,43.28 +680563,16.082,42.793 +680564,18.349,42.285 +680565,10.473,43.671 +680566,12.62,43.262 +680567,14.819,42.835 +680568,17.074,42.388 +680569,9.2171,43.595 +680570,11.362,43.244 +680571,13.554,42.877 +680572,15.797,42.492 +680573,7.9634,43.518 +680574,10.105,43.226 +680575,12.289,42.919 +680576,14.518,42.596 +680577,6.7115,43.442 +680578,8.849,43.209 +680579,11.023,42.962 +680580,13.237,42.699 +680581,5.4617,43.364 +680582,7.5934,43.191 +680583,9.7569,43.004 +680584,11.954,42.803 +680585,4.2137,43.287 +680586,6.3383,43.173 +680587,8.4897,43.047 +680588,10.669,42.907 +680589,2.9676,43.21 +680590,5.0839,43.155 +680591,7.2218,43.089 +680592,9.3828,43.011 +680593,1.7235,43.132 +680594,3.83,43.138 +680595,5.9533,43.132 +680596,8.0944,43.114 +680597,0.48138,43.054 +680598,2.5767,43.12 +680599,4.684,43.175 +680600,6.8041,43.217 +680601,359.24,42.977 +680602,1.324,43.103 +680603,3.4141,43.217 +680604,5.5121,43.321 +680605,358,42.899 +680606,0.071825,43.085 +680607,2.1435,43.26 +680608,4.2184,43.423 +680609,356.77,42.822 +680610,358.82,43.068 +680611,0.87223,43.303 +680612,2.9229,43.526 +680613,355.53,42.744 +680614,357.57,43.051 +680615,359.6,43.346 +680616,1.6258,43.628 +680617,354.3,42.667 +680618,356.32,43.034 +680619,358.33,43.388 +680620,0.32692,43.73 +680621,353.07,42.59 +680622,355.07,43.017 +680623,357.05,43.431 +680624,359.03,43.831 +680625,351.84,42.514 +680626,353.82,43.001 +680627,355.78,43.474 +680628,357.72,43.932 +680629,350.61,42.437 +680630,352.57,42.984 +680631,354.51,43.516 +680632,356.42,44.032 +680633,349.39,42.361 +680634,351.32,42.968 +680635,353.23,43.558 +680636,355.12,44.132 +680637,348.17,42.286 +680638,350.08,42.952 +680639,351.96,43.601 +680640,353.81,44.231 +680641,346.94,42.211 +680642,348.83,42.937 +680643,350.68,43.643 +680644,352.5,44.329 +680645,345.73,42.136 +680646,347.58,42.921 +680647,349.4,43.685 +680648,351.19,44.427 +680649,344.51,42.062 +680650,346.34,42.906 +680651,348.12,43.727 +680652,349.88,44.524 +680653,343.29,41.989 +680654,345.09,42.891 +680655,346.85,43.768 +680656,348.57,44.62 +680657,342.08,41.916 +680658,343.84,42.877 +680659,345.57,43.81 +680660,347.25,44.715 +680661,340.87,41.844 +680662,342.6,42.863 +680663,344.29,43.851 +680664,345.94,44.81 +680665,339.66,41.773 +680666,341.36,42.849 +680667,343.01,43.892 +680668,344.62,44.904 +680669,338.45,41.702 +680670,340.11,42.835 +680671,341.73,43.933 +680672,343.3,44.996 +680673,337.24,41.633 +680674,338.87,42.822 +680675,340.45,43.973 +680676,341.98,45.088 +680677,336.04,41.564 +680678,337.63,42.809 +680679,339.17,44.014 +680680,340.66,45.179 +680681,334.83,41.496 +680682,336.38,42.797 +680683,337.88,44.054 +680684,339.34,45.269 +680685,333.63,41.429 +680686,335.14,42.785 +680687,336.6,44.093 +680688,338.02,45.357 +680689,332.43,41.363 +680690,333.9,42.773 +680691,335.32,44.133 +680692,336.7,45.445 +680693,331.23,41.298 +680694,332.66,42.762 +680695,334.04,44.172 +680696,335.37,45.532 +680697,330.04,41.235 +680698,331.42,42.752 +680699,332.75,44.211 +680700,334.04,45.617 +680701,328.84,41.172 +680702,330.18,42.742 +680703,331.47,44.249 +680704,332.72,45.701 +680705,327.65,41.111 +680706,328.94,42.732 +680707,330.18,44.288 +680708,331.39,45.784 +680709,326.46,41.051 +680710,327.7,42.723 +680711,328.9,44.326 +680712,330.06,45.866 +680713,325.26,40.992 +680714,326.46,42.714 +680715,327.61,44.363 +680716,328.73,45.946 +680717,324.08,40.935 +680718,325.22,42.706 +680719,326.33,44.4 +680720,327.4,46.026 +680721,322.89,40.879 +680722,323.98,42.698 +680723,325.04,44.437 +680724,326.07,46.103 +680725,321.7,40.824 +680726,322.74,42.691 +680727,323.75,44.473 +680728,324.74,46.18 +680729,320.51,40.771 +680730,321.51,42.684 +680731,322.47,44.509 +680732,323.4,46.255 +680733,319.33,40.719 +680734,320.27,42.678 +680735,321.18,44.545 +680736,322.07,46.329 +680737,318.15,40.669 +680738,319.03,42.673 +680739,319.89,44.58 +680740,320.73,46.401 +680741,316.96,40.621 +680742,317.79,42.668 +680743,318.6,44.614 +680744,319.4,46.472 +680745,315.78,40.574 +680746,316.56,42.663 +680747,317.32,44.648 +680748,318.06,46.542 +680749,314.6,40.529 +680750,315.32,42.66 +680751,316.03,44.682 +680752,316.73,46.61 +680753,313.42,40.485 +680754,314.08,42.657 +680755,314.74,44.715 +680756,315.39,46.676 +680757,312.24,40.444 +680758,312.85,42.654 +680759,313.45,44.748 +680760,314.05,46.741 +680761,311.07,40.403 +680762,311.61,42.652 +680763,312.16,44.781 +680764,312.71,46.805 +680765,309.89,40.365 +680766,310.37,42.651 +680767,310.87,44.812 +680768,311.37,46.866 +680769,308.71,40.329 +680770,309.14,42.651 +680771,309.58,44.844 +680772,310.04,46.927 +680773,307.54,40.294 +680774,307.9,42.651 +680775,308.29,44.875 +680776,308.7,46.985 +680777,306.36,40.262 +680778,306.67,42.651 +680779,307,44.905 +680780,307.36,47.043 +680781,305.19,40.231 +680782,305.43,42.653 +680783,305.71,44.935 +680784,306.02,47.098 +680785,304.02,40.202 +680786,304.2,42.655 +680787,304.42,44.964 +680788,304.68,47.152 +680789,302.84,40.176 +680790,302.96,42.658 +680791,303.13,44.993 +680792,303.34,47.204 +680793,301.67,40.151 +680794,301.72,42.661 +680795,301.84,45.021 +680796,301.99,47.254 +680797,300.5,40.128 +680798,300.49,42.666 +680799,300.55,45.049 +680800,300.65,47.303 +680801,299.32,40.108 +680802,299.25,42.67 +680803,299.26,45.076 +680804,299.31,47.35 +680805,298.15,40.089 +680806,298.02,42.676 +680807,297.96,45.103 +680808,297.97,47.396 +680809,296.98,40.073 +680810,296.78,42.682 +680811,296.67,45.129 +680812,296.63,47.44 +680813,295.8,40.059 +680814,295.55,42.69 +680815,295.38,45.155 +680816,295.29,47.482 +680817,294.63,40.046 +680818,294.31,42.697 +680819,294.09,45.18 +680820,293.95,47.522 +680821,293.46,40.037 +680822,293.07,42.706 +680823,292.8,45.204 +680824,292.61,47.56 +680825,292.29,40.029 +680826,291.84,42.715 +680827,291.51,45.228 +680828,291.26,47.597 +680829,291.11,40.023 +680830,290.6,42.725 +680831,290.22,45.251 +680832,289.92,47.632 +680833,289.94,40.02 +680834,289.36,42.736 +680835,288.92,45.274 +680836,288.58,47.665 +680837,288.77,40.019 +680838,288.13,42.747 +680839,287.63,45.296 +680840,287.24,47.697 +680841,287.59,40.02 +680842,286.89,42.76 +680843,286.34,45.318 +680844,285.9,47.727 +680845,286.42,40.023 +680846,285.65,42.773 +680847,285.05,45.339 +680848,284.56,47.755 +680849,285.24,40.029 +680850,284.42,42.786 +680851,283.76,45.36 +680852,283.22,47.781 +680853,284.06,40.037 +680854,283.18,42.801 +680855,282.47,45.379 +680856,281.88,47.805 +680857,282.89,40.047 +680858,281.94,42.816 +680859,281.18,45.399 +680860,280.54,47.828 +680861,281.71,40.059 +680862,280.7,42.832 +680863,279.88,45.417 +680864,279.2,47.849 +680865,280.53,40.074 +680866,279.46,42.849 +680867,278.59,45.436 +680868,277.86,47.868 +680869,279.35,40.091 +680870,278.23,42.866 +680871,277.3,45.453 +680872,276.53,47.885 +680873,278.17,40.11 +680874,276.99,42.884 +680875,276.01,45.47 +680876,275.19,47.901 +680877,276.99,40.131 +680878,275.75,42.903 +680879,274.72,45.487 +680880,273.85,47.915 +680881,275.81,40.155 +680882,274.51,42.923 +680883,273.43,45.502 +680884,272.51,47.927 +680885,274.62,40.181 +680886,273.27,42.944 +680887,272.14,45.518 +680888,271.18,47.937 +680889,273.44,40.209 +680890,272.03,42.965 +680891,270.85,45.532 +680892,269.84,47.946 +680893,272.25,40.24 +680894,270.79,42.987 +680895,269.56,45.547 +680896,268.51,47.952 +680897,271.06,40.272 +680898,269.54,43.01 +680899,268.27,45.56 +680900,267.17,47.957 +680901,269.87,40.307 +680902,268.3,43.033 +680903,266.98,45.573 +680904,265.84,47.961 +680905,268.68,40.344 +680906,267.06,43.057 +680907,265.69,45.586 +680908,264.51,47.962 +680909,267.49,40.384 +680910,265.82,43.082 +680911,264.4,45.598 +680912,263.18,47.962 +680913,266.3,40.425 +680914,264.57,43.108 +680915,263.11,45.609 +680916,261.85,47.961 +680917,265.1,40.469 +680918,263.33,43.134 +680919,261.83,45.62 +680920,260.52,47.957 +680921,263.9,40.514 +680922,262.09,43.161 +680923,260.54,45.63 +680924,259.19,47.952 +680925,262.71,40.562 +680926,260.84,43.189 +680927,259.25,45.64 +680928,257.86,47.945 +680929,261.51,40.612 +680930,259.6,43.217 +680931,257.96,45.649 +680932,256.53,47.936 +680933,260.3,40.664 +680934,258.35,43.247 +680935,256.67,45.657 +680936,255.2,47.926 +680937,259.1,40.718 +680938,257.1,43.276 +680939,255.39,45.665 +680940,253.88,47.914 +680941,257.89,40.774 +680942,255.86,43.307 +680943,254.1,45.673 +680944,252.56,47.901 +680945,256.68,40.832 +680946,254.61,43.338 +680947,252.82,45.68 +680948,251.23,47.886 +680949,255.47,40.893 +680950,253.36,43.37 +680951,251.53,45.687 +680952,249.91,47.869 +680953,254.26,40.955 +680954,252.11,43.403 +680955,250.24,45.693 +680956,248.59,47.851 +680957,253.05,41.018 +680958,250.86,43.436 +680959,248.96,45.698 +680960,247.27,47.831 +680961,251.83,41.084 +680962,249.61,43.469 +680963,247.67,45.703 +680964,245.95,47.81 +680965,250.62,41.152 +680966,248.36,43.504 +680967,246.39,45.708 +680968,244.63,47.787 +680969,249.4,41.221 +680970,247.11,43.539 +680971,245.11,45.712 +680972,243.32,47.763 +680973,248.17,41.292 +680974,245.86,43.575 +680975,243.82,45.715 +680976,242,47.737 +680977,246.95,41.365 +680978,244.61,43.611 +680979,242.54,45.719 +680980,240.69,47.71 +680981,245.72,41.44 +680982,243.35,43.648 +680983,241.26,45.721 +680984,239.38,47.682 +680985,244.49,41.516 +680986,242.1,43.685 +680987,239.98,45.724 +680988,238.07,47.651 +680989,243.26,41.594 +680990,240.84,43.723 +680991,238.69,45.725 +680992,236.76,47.62 +680993,242.03,41.674 +680994,239.59,43.762 +680995,237.41,45.727 +680996,235.45,47.587 +680997,240.79,41.755 +680998,238.33,43.801 +680999,236.13,45.728 +681000,234.14,47.553 +681001,239.56,41.837 +681002,237.07,43.841 +681003,234.85,45.728 +681004,232.84,47.518 +681005,238.32,41.921 +681006,235.82,43.881 +681007,233.57,45.729 +681008,231.53,47.481 +681009,237.07,42.007 +681010,234.56,43.921 +681011,232.29,45.728 +681012,230.23,47.443 +681013,235.83,42.094 +681014,233.3,43.963 +681015,231.02,45.728 +681016,228.93,47.404 +681017,234.58,42.182 +681018,232.04,44.004 +681019,229.74,45.727 +681020,227.63,47.363 +681021,233.33,42.271 +681022,230.78,44.047 +681023,228.46,45.726 +681024,226.33,47.321 +681025,232.08,42.362 +681026,229.52,44.089 +681027,227.18,45.724 +681028,225.04,47.279 +681029,230.83,42.454 +681030,228.25,44.132 +681031,225.91,45.722 +681032,223.74,47.235 +681033,229.57,42.547 +681034,226.99,44.176 +681035,224.63,45.72 +681036,222.45,47.19 +681037,228.32,42.641 +681038,225.73,44.22 +681039,223.35,45.717 +681040,221.16,47.144 +681041,227.06,42.737 +681042,224.46,44.264 +681043,222.08,45.714 +681044,219.87,47.096 +681045,225.79,42.833 +681046,223.2,44.309 +681047,220.81,45.711 +681048,218.58,47.048 +681049,224.53,42.93 +681050,221.93,44.354 +681051,219.53,45.707 +681052,217.3,46.999 +681053,223.26,43.029 +681054,220.66,44.399 +681055,218.26,45.704 +681056,216.01,46.949 +681057,221.99,43.128 +681058,219.4,44.445 +681059,216.99,45.7 +681060,214.73,46.898 +681061,220.72,43.228 +681062,218.13,44.491 +681063,215.71,45.695 +681064,213.45,46.846 +681065,219.45,43.329 +681066,216.86,44.538 +681067,214.44,45.691 +681068,212.17,46.794 +681069,218.17,43.43 +681070,215.59,44.585 +681071,213.17,45.686 +681072,210.9,46.74 +681073,216.89,43.532 +681074,214.32,44.632 +681075,211.9,45.681 +681076,209.62,46.686 +681077,215.61,43.635 +681078,213.05,44.679 +681079,210.63,45.676 +681080,208.35,46.631 +681081,214.33,43.739 +681082,211.77,44.727 +681083,209.36,45.671 +681084,207.08,46.575 +681085,213.05,43.843 +681086,210.5,44.775 +681087,208.09,45.666 +681088,205.81,46.519 +681089,211.76,43.947 +681090,209.23,44.823 +681091,206.83,45.66 +681092,204.54,46.462 +681093,210.47,44.052 +681094,207.95,44.871 +681095,205.56,45.654 +681096,203.27,46.404 +681097,209.18,44.158 +681098,206.68,44.92 +681099,204.29,45.648 +681100,202.01,46.346 +681101,207.89,44.264 +681102,205.4,44.969 +681103,203.02,45.642 +681104,200.75,46.288 +681105,206.59,44.37 +681106,204.12,45.018 +681107,201.76,45.636 +681108,199.49,46.228 +681109,205.3,44.476 +681110,202.85,45.067 +681111,200.49,45.63 +681112,198.23,46.169 +681113,204,44.583 +681114,201.57,45.116 +681115,199.23,45.624 +681116,196.97,46.109 +681117,202.7,44.69 +681118,200.29,45.166 +681119,197.96,45.618 +681120,195.72,46.049 +681121,201.39,44.797 +681122,199.01,45.215 +681123,196.7,45.612 +681124,194.46,45.988 +681125,200.09,44.904 +681126,197.73,45.265 +681127,195.44,45.605 +681128,193.21,45.927 +681129,198.78,45.011 +681130,196.45,45.314 +681131,194.18,45.599 +681132,191.96,45.866 +681133,197.48,45.118 +681134,195.17,45.364 +681135,192.91,45.593 +681136,190.72,45.805 +681137,196.17,45.225 +681138,193.88,45.414 +681139,191.65,45.586 +681140,189.47,45.743 +681141,194.85,45.332 +681142,192.6,45.464 +681143,190.39,45.58 +681144,188.23,45.682 +681145,193.54,45.439 +681146,191.32,45.514 +681147,189.13,45.574 +681148,186.99,45.62 +681149,192.23,45.546 +681150,190.03,45.564 +681151,187.87,45.568 +681152,185.75,45.558 +681153,190.91,45.653 +681154,188.75,45.614 +681155,186.61,45.561 +681156,184.51,45.497 +681157,189.59,45.759 +681158,187.46,45.664 +681159,185.36,45.555 +681160,183.27,45.435 +681161,188.27,45.865 +681162,186.17,45.714 +681163,184.1,45.549 +681164,182.04,45.373 +681165,186.95,45.97 +681166,184.89,45.763 +681167,182.84,45.544 +681168,180.81,45.312 +681169,185.63,46.076 +681170,183.6,45.813 +681171,181.58,45.538 +681172,179.58,45.251 +681173,184.3,46.181 +681174,182.31,45.863 +681175,180.33,45.532 +681176,178.35,45.19 +681177,182.97,46.285 +681178,181.02,45.913 +681179,179.07,45.527 +681180,177.12,45.129 +681181,181.65,46.389 +681182,179.73,45.962 +681183,177.81,45.522 +681184,175.9,45.069 +681185,180.32,46.492 +681186,178.44,46.012 +681187,176.56,45.517 +681188,174.68,45.009 +681189,178.99,46.595 +681190,177.15,46.061 +681191,175.31,45.512 +681192,173.46,44.949 +681193,177.66,46.697 +681194,175.86,46.11 +681195,174.05,45.507 +681196,172.24,44.89 +681197,176.32,46.798 +681198,174.57,46.159 +681199,172.8,45.503 +681200,171.02,44.831 +681201,174.99,46.899 +681202,173.27,46.208 +681203,171.54,45.499 +681204,169.8,44.773 +681205,173.65,46.999 +681206,171.98,46.256 +681207,170.29,45.495 +681208,168.59,44.715 +681209,172.32,47.098 +681210,170.69,46.305 +681211,169.04,45.491 +681212,167.38,44.658 +681213,170.98,47.197 +681214,169.39,46.353 +681215,167.79,45.488 +681216,166.16,44.602 +681217,169.64,47.294 +681218,168.1,46.401 +681219,166.54,45.485 +681220,164.95,44.546 +681221,168.3,47.391 +681222,166.8,46.449 +681223,165.28,45.482 +681224,163.75,44.491 +681225,166.96,47.487 +681226,165.51,46.496 +681227,164.03,45.48 +681228,162.54,44.437 +681229,165.61,47.582 +681230,164.21,46.544 +681231,162.78,45.478 +681232,161.34,44.383 +681233,164.27,47.676 +681234,162.91,46.591 +681235,161.53,45.476 +681236,160.13,44.331 +681237,162.93,47.769 +681238,161.62,46.637 +681239,160.28,45.474 +681240,158.93,44.279 +681241,161.58,47.861 +681242,160.32,46.684 +681243,159.03,45.473 +681244,157.73,44.229 +681245,160.24,47.951 +681246,159.02,46.73 +681247,157.79,45.473 +681248,156.53,44.179 +681249,158.89,48.041 +681250,157.72,46.776 +681251,156.54,45.472 +681252,155.33,44.13 +681253,157.54,48.13 +681254,156.42,46.821 +681255,155.29,45.473 +681256,154.14,44.083 +681257,156.19,48.217 +681258,155.12,46.866 +681259,154.04,45.473 +681260,152.94,44.036 +681261,154.84,48.304 +681262,153.82,46.911 +681263,152.79,45.474 +681264,151.75,43.991 +681265,153.49,48.389 +681266,152.52,46.955 +681267,151.54,45.476 +681268,150.55,43.947 +681269,152.14,48.473 +681270,151.22,46.999 +681271,150.3,45.478 +681272,149.36,43.904 +681273,150.79,48.555 +681274,149.92,47.043 +681275,149.05,45.48 +681276,148.17,43.862 +681277,149.44,48.636 +681278,148.62,47.086 +681279,147.8,45.483 +681280,146.98,43.822 +681281,148.08,48.716 +681282,147.32,47.129 +681283,146.56,45.486 +681284,145.79,43.783 +681285,146.73,48.795 +681286,146.02,47.172 +681287,145.31,45.49 +681288,144.61,43.745 +681289,145.38,48.872 +681290,144.72,47.214 +681291,144.06,45.494 +681292,143.42,43.709 +681293,144.02,48.948 +681294,143.41,47.255 +681295,142.82,45.499 +681296,142.23,43.674 +681297,142.67,49.023 +681298,142.11,47.296 +681299,141.57,45.504 +681300,141.05,43.64 +681301,141.31,49.096 +681302,140.81,47.337 +681303,140.32,45.51 +681304,139.86,43.608 +681305,139.96,49.168 +681306,139.51,47.377 +681307,139.08,45.517 +681308,138.68,43.578 +681309,138.6,49.238 +681310,138.2,47.417 +681311,137.83,45.524 +681312,137.49,43.549 +681313,137.25,49.307 +681314,136.9,47.457 +681315,136.59,45.531 +681316,136.31,43.522 +681317,135.89,49.374 +681318,135.6,47.496 +681319,135.34,45.539 +681320,135.13,43.496 +681321,134.53,49.44 +681322,134.29,47.534 +681323,134.09,45.548 +681324,133.95,43.472 +681325,133.18,49.504 +681326,132.99,47.572 +681327,132.85,45.557 +681328,132.77,43.45 +681329,131.82,49.567 +681330,131.69,47.609 +681331,131.6,45.567 +681332,131.58,43.43 +681333,130.46,49.628 +681334,130.38,47.646 +681335,130.36,45.577 +681336,130.4,43.411 +681337,129.11,49.688 +681338,129.08,47.683 +681339,129.11,45.588 +681340,129.22,43.394 +681341,127.75,49.746 +681342,127.77,47.719 +681343,127.86,45.6 +681344,128.04,43.378 +681345,126.39,49.803 +681346,126.47,47.754 +681347,126.62,45.612 +681348,126.86,43.365 +681349,125.04,49.857 +681350,125.17,47.789 +681351,125.37,45.625 +681352,125.68,43.353 +681353,123.68,49.911 +681354,123.86,47.823 +681355,124.13,45.639 +681356,124.5,43.343 +681357,122.32,49.962 +681358,122.56,47.857 +681359,122.88,45.653 +681360,123.32,43.335 +681361,120.97,50.012 +681362,121.25,47.89 +681363,121.63,45.668 +681364,122.13,43.329 +681365,119.61,50.061 +681366,119.95,47.923 +681367,120.39,45.683 +681368,120.95,43.325 +681369,118.25,50.107 +681370,118.64,47.955 +681371,119.14,45.699 +681372,119.77,43.323 +681373,116.9,50.152 +681374,117.34,47.987 +681375,117.89,45.716 +681376,118.59,43.323 +681377,115.54,50.196 +681378,116.04,48.018 +681379,116.65,45.733 +681380,117.41,43.324 +681381,114.19,50.238 +681382,114.73,48.049 +681383,115.4,45.751 +681384,116.22,43.328 +681385,112.83,50.278 +681386,113.43,48.079 +681387,114.15,45.77 +681388,115.04,43.333 +681389,111.48,50.316 +681390,112.12,48.108 +681391,112.9,45.789 +681392,113.85,43.341 +681393,110.12,50.353 +681394,110.82,48.137 +681395,111.65,45.809 +681396,112.67,43.35 +681397,108.77,50.388 +681398,109.51,48.165 +681399,110.4,45.83 +681400,111.48,43.362 +681401,107.42,50.421 +681402,108.21,48.193 +681403,109.16,45.851 +681404,110.29,43.375 +681405,106.06,50.453 +681406,106.91,48.22 +681407,107.91,45.873 +681408,109.11,43.391 +681409,104.71,50.483 +681410,105.6,48.247 +681411,106.66,45.896 +681412,107.92,43.408 +681413,103.36,50.511 +681414,104.3,48.273 +681415,105.41,45.919 +681416,106.73,43.428 +681417,102.01,50.538 +681418,103,48.299 +681419,104.16,45.943 +681420,105.53,43.45 +681421,100.66,50.563 +681422,101.69,48.324 +681423,102.9,45.967 +681424,104.34,43.473 +681425,99.309,50.586 +681426,100.39,48.348 +681427,101.65,45.993 +681428,103.15,43.499 +681429,97.96,50.608 +681430,99.089,48.372 +681431,100.4,46.019 +681432,101.95,43.526 +681433,96.612,50.627 +681434,97.787,48.395 +681435,99.149,46.045 +681436,100.76,43.556 +681437,95.264,50.646 +681438,96.485,48.418 +681439,97.897,46.073 +681440,99.56,43.588 +681441,93.918,50.662 +681442,95.183,48.44 +681443,96.643,46.1 +681444,98.361,43.621 +681445,92.572,50.677 +681446,93.881,48.462 +681447,95.39,46.129 +681448,97.16,43.657 +681449,91.227,50.691 +681450,92.58,48.483 +681451,94.136,46.158 +681452,95.958,43.694 +681453,89.883,50.702 +681454,91.279,48.504 +681455,92.881,46.188 +681456,94.754,43.734 +681457,88.54,50.712 +681458,89.978,48.524 +681459,91.626,46.219 +681460,93.548,43.776 +681461,87.198,50.721 +681462,88.678,48.543 +681463,90.37,46.25 +681464,92.341,43.819 +681465,85.857,50.727 +681466,87.378,48.562 +681467,89.114,46.282 +681468,91.132,43.864 +681469,84.517,50.733 +681470,86.078,48.581 +681471,87.857,46.314 +681472,89.922,43.912 +681473,83.178,50.736 +681474,84.778,48.599 +681475,86.599,46.347 +681476,88.709,43.961 +681477,81.84,50.738 +681478,83.479,48.616 +681479,85.341,46.381 +681480,87.495,44.012 +681481,80.504,50.739 +681482,82.181,48.633 +681483,84.082,46.415 +681484,86.278,44.065 +681485,79.168,50.738 +681486,80.882,48.649 +681487,82.823,46.45 +681488,85.06,44.12 +681489,77.834,50.735 +681490,79.584,48.665 +681491,81.563,46.485 +681492,83.84,44.177 +681493,76.5,50.731 +681494,78.287,48.68 +681495,80.303,46.521 +681496,82.617,44.235 +681497,75.169,50.725 +681498,76.99,48.695 +681499,79.041,46.558 +681500,81.393,44.295 +681501,73.838,50.718 +681502,75.693,48.709 +681503,77.779,46.595 +681504,80.167,44.357 +681505,72.508,50.71 +681506,74.397,48.723 +681507,76.517,46.633 +681508,78.938,44.421 +681509,71.18,50.699 +681510,73.101,48.737 +681511,75.254,46.672 +681512,77.707,44.486 +681513,69.853,50.688 +681514,71.805,48.749 +681515,73.99,46.711 +681516,76.475,44.553 +681517,68.528,50.675 +681518,70.51,48.762 +681519,72.725,46.75 +681520,75.24,44.622 +681521,67.204,50.661 +681522,69.216,48.774 +681523,71.46,46.79 +681524,74.002,44.693 +681525,65.881,50.645 +681526,67.922,48.785 +681527,70.193,46.831 +681528,72.763,44.765 +681529,64.56,50.628 +681530,66.628,48.796 +681531,68.927,46.872 +681532,71.521,44.838 +681533,63.24,50.61 +681534,65.335,48.807 +681535,67.659,46.913 +681536,70.277,44.913 +681537,61.922,50.59 +681538,64.042,48.817 +681539,66.391,46.956 +681540,69.031,44.99 +681541,60.605,50.569 +681542,62.75,48.827 +681543,65.122,46.998 +681544,67.782,45.068 +681545,59.29,50.547 +681546,61.459,48.836 +681547,63.852,47.041 +681548,66.532,45.147 +681549,57.976,50.523 +681550,60.168,48.845 +681551,62.582,47.085 +681552,65.279,45.228 +681553,56.664,50.498 +681554,58.877,48.854 +681555,61.31,47.129 +681556,64.023,45.31 +681557,55.354,50.472 +681558,57.587,48.862 +681559,60.038,47.173 +681560,62.765,45.394 +681561,54.045,50.445 +681562,56.297,48.87 +681563,58.766,47.218 +681564,61.505,45.479 +681565,52.738,50.417 +681566,55.008,48.877 +681567,57.492,47.264 +681568,60.243,45.565 +681569,51.432,50.387 +681570,53.72,48.884 +681571,56.218,47.31 +681572,58.978,45.652 +681573,50.128,50.357 +681574,52.432,48.891 +681575,54.943,47.356 +681576,57.711,45.741 +681577,48.826,50.325 +681578,51.145,48.898 +681579,53.667,47.402 +681580,56.441,45.83 +681581,47.525,50.293 +681582,49.858,48.904 +681583,52.39,47.45 +681584,55.17,45.921 +681585,46.226,50.259 +681586,48.571,48.909 +681587,51.113,47.497 +681588,53.896,46.013 +681589,44.929,50.225 +681590,47.286,48.915 +681591,49.835,47.545 +681592,52.619,46.105 +681593,43.634,50.189 +681594,46.001,48.92 +681595,48.556,47.593 +681596,51.341,46.199 +681597,42.34,50.153 +681598,44.716,48.925 +681599,47.276,47.641 +681600,50.06,46.294 +681601,41.048,50.115 +681602,43.432,48.929 +681603,45.995,47.69 +681604,48.776,46.389 +681605,39.758,50.077 +681606,42.149,48.934 +681607,44.714,47.739 +681608,47.491,46.486 +681609,38.47,50.038 +681610,40.866,48.938 +681611,43.432,47.788 +681612,46.203,46.583 +681613,37.184,49.998 +681614,39.584,48.942 +681615,42.149,47.838 +681616,44.913,46.681 +681617,35.899,49.957 +681618,38.302,48.945 +681619,40.865,47.888 +681620,43.621,46.78 +681621,34.616,49.916 +681622,37.021,48.949 +681623,39.581,47.938 +681624,42.326,46.879 +681625,33.335,49.874 +681626,35.74,48.952 +681627,38.296,47.989 +681628,41.03,46.979 +681629,32.056,49.831 +681630,34.46,48.955 +681631,37.01,48.039 +681632,39.731,47.08 +681633,30.779,49.788 +681634,33.181,48.958 +681635,35.723,48.09 +681636,38.43,47.181 +681637,29.503,49.744 +681638,31.902,48.96 +681639,34.435,48.141 +681640,37.127,47.283 +681641,28.23,49.7 +681642,30.624,48.963 +681643,33.147,48.193 +681644,35.822,47.385 +681645,26.958,49.655 +681646,29.346,48.965 +681647,31.858,48.244 +681648,34.515,47.488 +681649,25.689,49.609 +681650,28.069,48.967 +681651,30.568,48.296 +681652,33.205,47.591 +681653,24.421,49.563 +681654,26.792,48.969 +681655,29.278,48.348 +681656,31.894,47.695 +681657,23.155,49.517 +681658,25.517,48.971 +681659,27.986,48.4 +681660,30.581,47.798 +681661,21.89,49.47 +681662,24.241,48.973 +681663,26.694,48.452 +681664,29.265,47.902 +681665,20.628,49.423 +681666,22.966,48.975 +681667,25.402,48.504 +681668,27.948,48.006 +681669,19.368,49.375 +681670,21.692,48.977 +681671,24.108,48.556 +681672,26.629,48.111 +681673,18.109,49.327 +681674,20.418,48.978 +681675,22.814,48.609 +681676,25.308,48.215 +681677,16.853,49.28 +681678,19.145,48.98 +681679,21.519,48.661 +681680,23.985,48.32 +681681,15.598,49.231 +681682,17.873,48.982 +681683,20.224,48.713 +681684,22.66,48.424 +681685,14.345,49.183 +681686,16.601,48.983 +681687,18.927,48.766 +681688,21.333,48.529 +681689,13.094,49.135 +681690,15.329,48.985 +681691,17.63,48.819 +681692,20.005,48.634 +681693,11.845,49.086 +681694,14.058,48.986 +681695,16.333,48.871 +681696,18.675,48.738 +681697,10.597,49.037 +681698,12.788,48.988 +681699,15.034,48.924 +681700,17.343,48.843 +681701,9.3517,48.989 +681702,11.518,48.99 +681703,13.735,48.976 +681704,16.01,48.947 +681705,8.1079,48.94 +681706,10.249,48.991 +681707,12.436,49.029 +681708,14.674,49.051 +681709,6.866,48.892 +681710,8.9797,48.993 +681711,11.136,49.081 +681712,13.338,49.155 +681713,5.6259,48.843 +681714,7.7114,48.995 +681715,9.8346,49.134 +681716,11.999,49.258 +681717,4.3875,48.795 +681718,6.4435,48.997 +681719,8.5331,49.186 +681720,10.66,49.362 +681721,3.1509,48.747 +681722,5.1762,48.999 +681723,7.231,49.239 +681724,9.3182,49.464 +681725,1.916,48.699 +681726,3.9093,49.001 +681727,5.9282,49.291 +681728,7.9754,49.567 +681729,0.6829,48.652 +681730,2.6429,49.003 +681731,4.6249,49.343 +681732,6.6312,49.669 +681733,359.45,48.604 +681734,1.377,49.006 +681735,3.321,49.395 +681736,5.2855,49.771 +681737,358.22,48.557 +681738,0.11148,49.008 +681739,2.0165,49.447 +681740,3.9385,49.872 +681741,356.99,48.511 +681742,358.85,49.011 +681743,0.71141,49.499 +681744,2.5902,49.972 +681745,355.77,48.465 +681746,357.58,49.014 +681747,359.41,49.55 +681748,1.2406,50.072 +681749,354.54,48.419 +681750,356.32,49.017 +681751,358.1,49.602 +681752,359.89,50.172 +681753,353.32,48.374 +681754,355.05,49.02 +681755,356.79,49.653 +681756,358.54,50.27 +681757,352.1,48.329 +681758,353.79,49.024 +681759,355.49,49.704 +681760,357.18,50.368 +681761,350.88,48.285 +681762,352.53,49.028 +681763,354.18,49.755 +681764,355.83,50.466 +681765,349.66,48.241 +681766,351.27,49.031 +681767,352.87,49.806 +681768,354.47,50.562 +681769,348.44,48.199 +681770,350,49.036 +681771,351.56,49.856 +681772,353.12,50.658 +681773,347.23,48.156 +681774,348.74,49.04 +681775,350.25,49.906 +681776,351.76,50.753 +681777,346.01,48.115 +681778,347.48,49.045 +681779,348.94,49.956 +681780,350.4,50.847 +681781,344.8,48.074 +681782,346.22,49.05 +681783,347.63,50.006 +681784,349.04,50.941 +681785,343.59,48.034 +681786,344.96,49.055 +681787,346.32,50.055 +681788,347.68,51.033 +681789,342.38,47.995 +681790,343.7,49.061 +681791,345.01,50.104 +681792,346.32,51.125 +681793,341.17,47.957 +681794,342.44,49.067 +681795,343.7,50.153 +681796,344.96,51.215 +681797,339.96,47.919 +681798,341.18,49.073 +681799,342.39,50.202 +681800,343.59,51.305 +681801,338.75,47.883 +681802,339.92,49.08 +681803,341.08,50.25 +681804,342.23,51.393 +681805,337.55,47.848 +681806,338.66,49.087 +681807,339.76,50.298 +681808,340.87,51.481 +681809,336.34,47.813 +681810,337.4,49.094 +681811,338.45,50.345 +681812,339.5,51.567 +681813,335.14,47.78 +681814,336.14,49.102 +681815,337.14,50.392 +681816,338.14,51.652 +681817,333.94,47.747 +681818,334.88,49.11 +681819,335.82,50.439 +681820,336.77,51.736 +681821,332.74,47.716 +681822,333.62,49.118 +681823,334.51,50.486 +681824,335.4,51.819 +681825,331.54,47.686 +681826,332.36,49.127 +681827,333.2,50.532 +681828,334.03,51.901 +681829,330.34,47.657 +681830,331.11,49.136 +681831,331.88,50.577 +681832,332.67,51.982 +681833,329.14,47.629 +681834,329.85,49.146 +681835,330.57,50.623 +681836,331.3,52.061 +681837,327.94,47.603 +681838,328.59,49.156 +681839,329.25,50.668 +681840,329.93,52.139 +681841,326.74,47.577 +681842,327.33,49.167 +681843,327.94,50.712 +681844,328.56,52.216 +681845,325.55,47.553 +681846,326.08,49.178 +681847,326.62,50.756 +681848,327.19,52.292 +681849,324.35,47.531 +681850,324.82,49.189 +681851,325.31,50.8 +681852,325.82,52.366 +681853,323.16,47.509 +681854,323.56,49.201 +681855,323.99,50.843 +681856,324.45,52.439 +681857,321.96,47.489 +681858,322.3,49.213 +681859,322.68,50.886 +681860,323.08,52.511 +681861,320.77,47.471 +681862,321.05,49.226 +681863,321.36,50.929 +681864,321.71,52.581 +681865,319.57,47.453 +681866,319.79,49.24 +681867,320.04,50.971 +681868,320.34,52.65 +681869,318.38,47.438 +681870,318.53,49.253 +681871,318.73,51.012 +681872,318.96,52.717 +681873,317.19,47.423 +681874,317.27,49.268 +681875,317.41,51.053 +681876,317.59,52.783 +681877,315.99,47.411 +681878,316.02,49.283 +681879,316.1,51.094 +681880,316.22,52.848 +681881,314.8,47.399 +681882,314.76,49.298 +681883,314.78,51.134 +681884,314.85,52.911 +681885,313.61,47.39 +681886,313.5,49.314 +681887,313.46,51.173 +681888,313.48,52.973 +681889,312.42,47.382 +681890,312.24,49.33 +681891,312.15,51.212 +681892,312.11,53.033 +681893,311.22,47.375 +681894,310.99,49.347 +681895,310.83,51.251 +681896,310.74,53.092 +681897,310.03,47.37 +681898,309.73,49.365 +681899,309.51,51.289 +681900,309.37,53.149 +681901,308.84,47.367 +681902,308.47,49.383 +681903,308.2,51.327 +681904,307.99,53.205 +681905,307.65,47.365 +681906,307.21,49.401 +681907,306.88,51.364 +681908,306.62,53.26 +681909,306.45,47.365 +681910,305.96,49.42 +681911,305.56,51.4 +681912,305.25,53.312 +681913,305.26,47.366 +681914,304.7,49.44 +681915,304.25,51.436 +681916,303.88,53.364 +681917,304.07,47.37 +681918,303.44,49.46 +681919,302.93,51.472 +681920,302.51,53.413 +681921,302.87,47.374 +681922,302.18,49.481 +681923,301.61,51.507 +681924,301.14,53.461 +681925,301.68,47.381 +681926,300.92,49.502 +681927,300.29,51.542 +681928,299.77,53.508 +681929,300.48,47.389 +681930,299.66,49.524 +681931,298.98,51.576 +681932,298.4,53.553 +681933,299.29,47.4 +681934,298.4,49.546 +681935,297.66,51.609 +681936,297.04,53.597 +681937,298.09,47.411 +681938,297.14,49.569 +681939,296.35,51.642 +681940,295.67,53.639 +681941,296.89,47.425 +681942,295.88,49.593 +681943,295.03,51.675 +681944,294.3,53.679 +681945,295.69,47.44 +681946,294.62,49.617 +681947,293.71,51.706 +681948,292.93,53.718 +681949,294.5,47.457 +681950,293.36,49.642 +681951,292.4,51.738 +681952,291.57,53.755 +681953,293.3,47.476 +681954,292.1,49.667 +681955,291.08,51.769 +681956,290.2,53.791 +681957,292.09,47.497 +681958,290.84,49.693 +681959,289.77,51.799 +681960,288.83,53.825 +681961,290.89,47.519 +681962,289.58,49.72 +681963,288.45,51.829 +681964,287.47,53.857 +681965,289.69,47.543 +681966,288.32,49.747 +681967,287.14,51.858 +681968,286.11,53.888 +681969,288.49,47.569 +681970,287.06,49.774 +681971,285.82,51.887 +681972,284.74,53.917 +681973,287.28,47.596 +681974,285.79,49.802 +681975,284.51,51.915 +681976,283.38,53.945 +681977,286.08,47.626 +681978,284.53,49.831 +681979,283.19,51.943 +681980,282.02,53.971 +681981,284.87,47.657 +681982,283.27,49.86 +681983,281.88,51.97 +681984,280.66,53.996 +681985,283.66,47.69 +681986,282,49.89 +681987,280.56,51.996 +681988,279.3,54.019 +681989,282.45,47.725 +681990,280.74,49.921 +681991,279.25,52.022 +681992,277.94,54.041 +681993,281.24,47.761 +681994,279.47,49.952 +681995,277.94,52.048 +681996,276.58,54.061 +681997,280.02,47.799 +681998,278.21,49.984 +681999,276.62,52.073 +682000,275.22,54.079 +682001,278.81,47.839 +682002,276.94,50.016 +682003,275.31,52.097 +682004,273.87,54.096 +682005,277.59,47.881 +682006,275.67,50.048 +682007,274,52.121 +682008,272.51,54.111 +682009,276.38,47.924 +682010,274.41,50.082 +682011,272.68,52.145 +682012,271.16,54.125 +682013,275.16,47.969 +682014,273.14,50.116 +682015,271.37,52.168 +682016,269.8,54.137 +682017,273.93,48.016 +682018,271.87,50.15 +682019,270.06,52.19 +682020,268.45,54.148 +682021,272.71,48.064 +682022,270.6,50.185 +682023,268.75,52.212 +682024,267.1,54.157 +682025,271.49,48.114 +682026,269.33,50.22 +682027,267.44,52.234 +682028,265.75,54.165 +682029,270.26,48.166 +682030,268.06,50.256 +682031,266.13,52.254 +682032,264.4,54.172 +682033,269.03,48.219 +682034,266.79,50.293 +682035,264.82,52.275 +682036,263.05,54.177 +682037,267.8,48.274 +682038,265.52,50.33 +682039,263.51,52.295 +682040,261.71,54.18 +682041,266.57,48.331 +682042,264.25,50.368 +682043,262.2,52.314 +682044,260.36,54.182 +682045,265.34,48.389 +682046,262.98,50.406 +682047,260.89,52.333 +682048,259.02,54.183 +682049,264.1,48.449 +682050,261.71,50.444 +682051,259.58,52.352 +682052,257.68,54.182 +682053,262.86,48.51 +682054,260.43,50.483 +682055,258.28,52.37 +682056,256.34,54.18 +682057,261.62,48.573 +682058,259.16,50.523 +682059,256.97,52.387 +682060,255,54.176 +682061,260.38,48.637 +682062,257.88,50.563 +682063,255.66,52.404 +682064,253.66,54.172 +682065,259.13,48.703 +682066,256.61,50.604 +682067,254.35,52.421 +682068,252.32,54.165 +682069,257.89,48.77 +682070,255.33,50.645 +682071,253.05,52.437 +682072,250.99,54.158 +682073,256.64,48.839 +682074,254.05,50.686 +682075,251.74,52.453 +682076,249.65,54.149 +682077,255.39,48.909 +682078,252.78,50.728 +682079,250.44,52.469 +682080,248.32,54.139 +682081,254.13,48.98 +682082,251.5,50.771 +682083,249.13,52.483 +682084,246.99,54.128 +682085,252.88,49.053 +682086,250.22,50.814 +682087,247.83,52.498 +682088,245.66,54.115 +682089,251.62,49.127 +682090,248.94,50.857 +682091,246.53,52.512 +682092,244.33,54.101 +682093,250.36,49.202 +682094,247.66,50.901 +682095,245.22,52.526 +682096,243,54.086 +682097,249.1,49.279 +682098,246.38,50.945 +682099,243.92,52.539 +682100,241.68,54.07 +682101,247.83,49.357 +682102,245.09,50.989 +682103,242.62,52.552 +682104,240.36,54.053 +682105,246.57,49.436 +682106,243.81,51.034 +682107,241.32,52.565 +682108,239.03,54.035 +682109,245.3,49.516 +682110,242.53,51.08 +682111,240.02,52.577 +682112,237.71,54.015 +682113,244.03,49.597 +682114,241.24,51.125 +682115,238.72,52.589 +682116,236.4,53.995 +682117,242.75,49.679 +682118,239.96,51.171 +682119,237.42,52.6 +682120,235.08,53.973 +682121,241.48,49.763 +682122,238.67,51.218 +682123,236.12,52.611 +682124,233.76,53.95 +682125,240.2,49.847 +682126,237.39,51.265 +682127,234.82,52.622 +682128,232.45,53.927 +682129,238.92,49.933 +682130,236.1,51.312 +682131,233.52,52.633 +682132,231.14,53.902 +682133,237.64,50.019 +682134,234.81,51.359 +682135,232.22,52.643 +682136,229.83,53.877 +682137,236.35,50.107 +682138,233.52,51.407 +682139,230.93,52.653 +682140,228.52,53.85 +682141,235.06,50.195 +682142,232.23,51.455 +682143,229.63,52.662 +682144,227.21,53.823 +682145,233.77,50.284 +682146,230.94,51.503 +682147,228.33,52.671 +682148,225.91,53.795 +682149,232.48,50.374 +682150,229.65,51.552 +682151,227.04,52.68 +682152,224.61,53.766 +682153,231.19,50.465 +682154,228.36,51.601 +682155,225.74,52.689 +682156,223.31,53.736 +682157,229.89,50.557 +682158,227.07,51.65 +682159,224.45,52.698 +682160,222.01,53.705 +682161,228.59,50.649 +682162,225.77,51.7 +682163,223.16,52.706 +682164,220.71,53.674 +682165,227.29,50.742 +682166,224.48,51.749 +682167,221.86,52.714 +682168,219.41,53.642 +682169,225.99,50.836 +682170,223.18,51.799 +682171,220.57,52.722 +682172,218.12,53.609 +682173,224.68,50.93 +682174,221.89,51.849 +682175,219.28,52.73 +682176,216.83,53.575 +682177,223.38,51.025 +682178,220.59,51.9 +682179,217.99,52.737 +682180,215.54,53.541 +682181,222.07,51.12 +682182,219.29,51.95 +682183,216.7,52.744 +682184,214.25,53.507 +682185,220.75,51.216 +682186,218,52.001 +682187,215.41,52.751 +682188,212.96,53.472 +682189,219.44,51.312 +682190,216.7,52.051 +682191,214.12,52.758 +682192,211.68,53.436 +682193,218.12,51.409 +682194,215.4,52.102 +682195,212.83,52.765 +682196,210.39,53.4 +682197,216.81,51.506 +682198,214.1,52.154 +682199,211.54,52.771 +682200,209.11,53.363 +682201,215.49,51.603 +682202,212.8,52.205 +682203,210.25,52.778 +682204,207.83,53.326 +682205,214.16,51.701 +682206,211.5,52.256 +682207,208.97,52.784 +682208,206.56,53.288 +682209,212.84,51.799 +682210,210.19,52.308 +682211,207.68,52.791 +682212,205.28,53.251 +682213,211.51,51.897 +682214,208.89,52.359 +682215,206.39,52.797 +682216,204.01,53.212 +682217,210.19,51.995 +682218,207.59,52.411 +682219,205.11,52.803 +682220,202.74,53.174 +682221,208.86,52.093 +682222,206.28,52.462 +682223,203.82,52.809 +682224,201.47,53.135 +682225,207.52,52.192 +682226,204.98,52.514 +682227,202.54,52.815 +682228,200.2,53.096 +682229,206.19,52.291 +682230,203.67,52.566 +682231,201.26,52.821 +682232,198.93,53.057 +682233,204.86,52.389 +682234,202.37,52.618 +682235,199.97,52.826 +682236,197.67,53.018 +682237,203.52,52.488 +682238,201.06,52.67 +682239,198.69,52.832 +682240,196.41,52.978 +682241,202.18,52.587 +682242,199.75,52.721 +682243,197.41,52.838 +682244,195.15,52.939 +682245,200.84,52.685 +682246,198.44,52.773 +682247,196.13,52.844 +682248,193.89,52.899 +682249,199.5,52.784 +682250,197.13,52.825 +682251,194.85,52.85 +682252,192.63,52.86 +682253,198.15,52.882 +682254,195.82,52.877 +682255,193.57,52.855 +682256,191.37,52.82 +682257,196.81,52.98 +682258,194.51,52.929 +682259,192.29,52.861 +682260,190.12,52.781 +682261,195.46,53.078 +682262,193.2,52.98 +682263,191.01,52.867 +682264,188.87,52.741 +682265,194.11,53.176 +682266,191.89,53.032 +682267,189.73,52.873 +682268,187.62,52.702 +682269,192.76,53.273 +682270,190.58,53.083 +682271,188.45,52.879 +682272,186.37,52.663 +682273,191.41,53.37 +682274,189.27,53.135 +682275,187.17,52.885 +682276,185.12,52.624 +682277,190.05,53.467 +682278,187.95,53.186 +682279,185.9,52.892 +682280,183.88,52.585 +682281,188.7,53.563 +682282,186.64,53.237 +682283,184.62,52.898 +682284,182.64,52.547 +682285,187.34,53.658 +682286,185.32,53.288 +682287,183.34,52.904 +682288,181.39,52.509 +682289,185.98,53.754 +682290,184.01,53.339 +682291,182.07,52.911 +682292,180.15,52.471 +682293,184.62,53.849 +682294,182.69,53.39 +682295,180.79,52.918 +682296,178.92,52.434 +682297,183.26,53.943 +682298,181.38,53.441 +682299,179.52,52.925 +682300,177.68,52.397 +682301,181.9,54.036 +682302,180.06,53.491 +682303,178.24,52.932 +682304,176.44,52.36 +682305,180.54,54.13 +682306,178.74,53.541 +682307,176.97,52.939 +682308,175.21,52.324 +682309,179.18,54.222 +682310,177.42,53.591 +682311,175.69,52.946 +682312,173.98,52.288 +682313,177.81,54.314 +682314,176.11,53.641 +682315,174.42,52.954 +682316,172.75,52.253 +682317,176.44,54.405 +682318,174.79,53.691 +682319,173.15,52.962 +682320,171.52,52.219 +682321,175.08,54.495 +682322,173.47,53.74 +682323,171.87,52.97 +682324,170.29,52.185 +682325,173.71,54.585 +682326,172.15,53.789 +682327,170.6,52.978 +682328,169.06,52.152 +682329,172.34,54.674 +682330,170.83,53.838 +682331,169.33,52.986 +682332,167.84,52.119 +682333,170.97,54.762 +682334,169.51,53.887 +682335,168.06,52.995 +682336,166.61,52.088 +682337,169.6,54.849 +682338,168.19,53.935 +682339,166.79,53.004 +682340,165.39,52.056 +682341,168.22,54.935 +682342,166.87,53.983 +682343,165.52,53.013 +682344,164.17,52.026 +682345,166.85,55.02 +682346,165.55,54.031 +682347,164.25,53.023 +682348,162.95,51.997 +682349,165.48,55.105 +682350,164.22,54.078 +682351,162.98,53.032 +682352,161.73,51.968 +682353,164.1,55.188 +682354,162.9,54.126 +682355,161.71,53.043 +682356,160.51,51.94 +682357,162.73,55.271 +682358,161.58,54.172 +682359,160.44,53.053 +682360,159.3,51.913 +682361,161.35,55.352 +682362,160.26,54.219 +682363,159.17,53.064 +682364,158.08,51.887 +682365,159.98,55.433 +682366,158.93,54.265 +682367,157.9,53.075 +682368,156.87,51.862 +682369,158.6,55.512 +682370,157.61,54.311 +682371,156.63,53.086 +682372,155.65,51.838 +682373,157.22,55.59 +682374,156.29,54.357 +682375,155.36,53.098 +682376,154.44,51.815 +682377,155.84,55.668 +682378,154.96,54.402 +682379,154.09,53.11 +682380,153.23,51.793 +682381,154.46,55.744 +682382,153.64,54.446 +682383,152.82,53.122 +682384,152.02,51.772 +682385,153.08,55.819 +682386,152.31,54.491 +682387,151.55,53.135 +682388,150.81,51.752 +682389,151.7,55.893 +682390,150.99,54.535 +682391,150.29,53.148 +682392,149.6,51.734 +682393,150.32,55.965 +682394,149.66,54.578 +682395,149.02,53.162 +682396,148.39,51.716 +682397,148.94,56.037 +682398,148.34,54.622 +682399,147.75,53.176 +682400,147.18,51.7 +682401,147.56,56.107 +682402,147.01,54.665 +682403,146.48,53.19 +682404,145.97,51.684 +682405,146.18,56.176 +682406,145.69,54.707 +682407,145.21,53.205 +682408,144.77,51.67 +682409,144.8,56.243 +682410,144.36,54.749 +682411,143.95,53.22 +682412,143.56,51.658 +682413,143.42,56.31 +682414,143.04,54.79 +682415,142.68,53.236 +682416,142.35,51.646 +682417,142.04,56.375 +682418,141.71,54.832 +682419,141.41,53.252 +682420,141.15,51.636 +682421,140.65,56.439 +682422,140.38,54.872 +682423,140.14,53.269 +682424,139.94,51.627 +682425,139.27,56.501 +682426,139.06,54.912 +682427,138.88,53.285 +682428,138.74,51.619 +682429,137.89,56.563 +682430,137.73,54.952 +682431,137.61,53.303 +682432,137.53,51.613 +682433,136.51,56.622 +682434,136.4,54.992 +682435,136.34,53.321 +682436,136.33,51.608 +682437,135.13,56.681 +682438,135.08,55.03 +682439,135.07,53.339 +682440,135.13,51.605 +682441,133.75,56.738 +682442,133.75,55.069 +682443,133.81,53.358 +682444,133.92,51.603 +682445,132.36,56.794 +682446,132.42,55.107 +682447,132.54,53.377 +682448,132.72,51.602 +682449,130.98,56.848 +682450,131.1,55.144 +682451,131.27,53.397 +682452,131.51,51.603 +682453,129.6,56.901 +682454,129.77,55.181 +682455,130,53.417 +682456,130.31,51.605 +682457,128.22,56.953 +682458,128.44,55.218 +682459,128.74,53.437 +682460,129.1,51.609 +682461,126.84,57.003 +682462,127.12,55.254 +682463,127.47,53.458 +682464,127.9,51.614 +682465,125.46,57.051 +682466,125.79,55.289 +682467,126.2,53.48 +682468,126.69,51.62 +682469,124.08,57.098 +682470,124.47,55.324 +682471,124.93,53.502 +682472,125.49,51.628 +682473,122.7,57.144 +682474,123.14,55.359 +682475,123.66,53.525 +682476,124.28,51.638 +682477,121.32,57.189 +682478,121.81,55.393 +682479,122.39,53.548 +682480,123.08,51.649 +682481,119.94,57.231 +682482,120.49,55.427 +682483,121.13,53.571 +682484,121.87,51.662 +682485,118.56,57.273 +682486,119.16,55.46 +682487,119.86,53.595 +682488,120.66,51.676 +682489,117.18,57.313 +682490,117.83,55.492 +682491,118.59,53.62 +682492,119.46,51.692 +682493,115.8,57.351 +682494,116.51,55.524 +682495,117.32,53.645 +682496,118.25,51.709 +682497,114.43,57.388 +682498,115.18,55.556 +682499,116.05,53.67 +682500,117.04,51.728 +682501,113.05,57.424 +682502,113.86,55.587 +682503,114.78,53.697 +682504,115.83,51.748 +682505,111.67,57.458 +682506,112.53,55.618 +682507,113.51,53.723 +682508,114.62,51.77 +682509,110.3,57.491 +682510,111.21,55.648 +682511,112.24,53.75 +682512,113.41,51.794 +682513,108.92,57.522 +682514,109.88,55.677 +682515,110.96,53.778 +682516,112.19,51.819 +682517,107.55,57.551 +682518,108.56,55.706 +682519,109.69,53.806 +682520,110.98,51.846 +682521,106.18,57.579 +682522,107.23,55.735 +682523,108.42,53.834 +682524,109.77,51.874 +682525,104.8,57.606 +682526,105.91,55.763 +682527,107.15,53.864 +682528,108.55,51.904 +682529,103.43,57.631 +682530,104.59,55.79 +682531,105.88,53.893 +682532,107.33,51.935 +682533,102.06,57.655 +682534,103.26,55.817 +682535,104.6,53.923 +682536,106.12,51.968 +682537,100.69,57.678 +682538,101.94,55.844 +682539,103.33,53.954 +682540,104.9,52.002 +682541,99.323,57.699 +682542,100.62,55.87 +682543,102.06,53.985 +682544,103.68,52.038 +682545,97.955,57.718 +682546,99.292,55.896 +682547,100.78,54.017 +682548,102.46,52.076 +682549,96.588,57.736 +682550,97.97,55.921 +682551,99.507,54.049 +682552,101.23,52.115 +682553,95.222,57.753 +682554,96.648,55.945 +682555,98.232,54.081 +682556,100.01,52.155 +682557,93.857,57.768 +682558,95.326,55.969 +682559,96.956,54.114 +682560,98.784,52.197 +682561,92.493,57.782 +682562,94.004,55.993 +682563,95.68,54.148 +682564,97.557,52.241 +682565,91.131,57.794 +682566,92.683,56.016 +682567,94.403,54.182 +682568,96.328,52.286 +682569,89.769,57.805 +682570,91.362,56.039 +682571,93.126,54.217 +682572,95.098,52.333 +682573,88.408,57.815 +682574,90.042,56.061 +682575,91.848,54.252 +682576,93.866,52.381 +682577,87.049,57.823 +682578,88.722,56.083 +682579,90.57,54.287 +682580,92.632,52.43 +682581,85.691,57.83 +682582,87.402,56.104 +682583,89.291,54.323 +682584,91.397,52.481 +682585,84.334,57.835 +682586,86.083,56.124 +682587,88.012,54.359 +682588,90.16,52.534 +682589,82.978,57.839 +682590,84.764,56.145 +682591,86.732,54.396 +682592,88.921,52.588 +682593,81.624,57.842 +682594,83.446,56.165 +682595,85.451,54.433 +682596,87.681,52.643 +682597,80.271,57.844 +682598,82.128,56.184 +682599,84.17,54.471 +682600,86.438,52.7 +682601,78.919,57.844 +682602,80.81,56.203 +682603,82.888,54.509 +682604,85.194,52.758 +682605,77.568,57.843 +682606,79.493,56.222 +682607,81.606,54.548 +682608,83.948,52.817 +682609,76.219,57.841 +682610,78.177,56.24 +682611,80.323,54.587 +682612,82.7,52.878 +682613,74.872,57.837 +682614,76.861,56.257 +682615,79.039,54.627 +682616,81.45,52.94 +682617,73.526,57.833 +682618,75.545,56.274 +682619,77.755,54.666 +682620,80.198,53.003 +682621,72.181,57.827 +682622,74.23,56.291 +682623,76.47,54.707 +682624,78.943,53.068 +682625,70.837,57.82 +682626,72.915,56.308 +682627,75.184,54.747 +682628,77.687,53.133 +682629,69.496,57.811 +682630,71.601,56.324 +682631,73.898,54.789 +682632,76.429,53.2 +682633,68.155,57.802 +682634,70.287,56.339 +682635,72.611,54.83 +682636,75.169,53.269 +682637,66.816,57.791 +682638,68.974,56.355 +682639,71.324,54.872 +682640,73.907,53.338 +682641,65.479,57.78 +682642,67.662,56.369 +682643,70.035,54.914 +682644,72.642,53.408 +682645,64.144,57.767 +682646,66.35,56.384 +682647,68.746,54.957 +682648,71.376,53.48 +682649,62.809,57.753 +682650,65.038,56.398 +682651,67.457,55 +682652,70.107,53.553 +682653,61.477,57.738 +682654,63.727,56.412 +682655,66.166,55.043 +682656,68.836,53.627 +682657,60.146,57.722 +682658,62.417,56.425 +682659,64.875,55.087 +682660,67.563,53.702 +682661,58.817,57.706 +682662,61.107,56.438 +682663,63.584,55.13 +682664,66.288,53.777 +682665,57.489,57.688 +682666,59.797,56.451 +682667,62.291,55.175 +682668,65.01,53.854 +682669,56.163,57.669 +682670,58.488,56.463 +682671,60.998,55.219 +682672,63.731,53.932 +682673,54.839,57.649 +682674,57.18,56.475 +682675,59.704,55.264 +682676,62.449,54.011 +682677,53.517,57.629 +682678,55.873,56.487 +682679,58.409,55.309 +682680,61.165,54.091 +682681,52.196,57.607 +682682,54.565,56.499 +682683,57.114,55.355 +682684,59.879,54.171 +682685,50.877,57.585 +682686,53.259,56.51 +682687,55.818,55.401 +682688,58.59,54.253 +682689,49.559,57.562 +682690,51.953,56.521 +682691,54.521,55.447 +682692,57.3,54.335 +682693,48.244,57.538 +682694,50.648,56.532 +682695,53.224,55.493 +682696,56.007,54.418 +682697,46.93,57.513 +682698,49.343,56.542 +682699,51.926,55.539 +682700,54.712,54.501 +682701,45.618,57.487 +682702,48.039,56.552 +682703,50.627,55.586 +682704,53.414,54.586 +682705,44.308,57.461 +682706,46.735,56.562 +682707,49.327,55.633 +682708,52.115,54.671 +682709,42.999,57.434 +682710,45.432,56.572 +682711,48.027,55.68 +682712,50.813,54.757 +682713,41.692,57.407 +682714,44.13,56.581 +682715,46.725,55.728 +682716,49.51,54.843 +682717,40.387,57.379 +682718,42.828,56.59 +682719,45.424,55.775 +682720,48.204,54.93 +682721,39.084,57.35 +682722,41.527,56.599 +682723,44.121,55.823 +682724,46.896,55.017 +682725,37.783,57.321 +682726,40.226,56.608 +682727,42.818,55.871 +682728,45.585,55.105 +682729,36.484,57.291 +682730,38.926,56.617 +682731,41.514,55.919 +682732,44.273,55.194 +682733,35.186,57.261 +682734,37.627,56.625 +682735,40.209,55.967 +682736,42.958,55.283 +682737,33.89,57.23 +682738,36.328,56.634 +682739,38.903,56.015 +682740,41.642,55.372 +682741,32.596,57.198 +682742,35.029,56.642 +682743,37.597,56.064 +682744,40.323,55.462 +682745,31.304,57.167 +682746,33.732,56.65 +682747,36.29,56.113 +682748,39.002,55.552 +682749,30.014,57.135 +682750,32.435,56.658 +682751,34.983,56.161 +682752,37.679,55.642 +682753,28.725,57.102 +682754,31.138,56.665 +682755,33.674,56.21 +682756,36.355,55.733 +682757,27.439,57.069 +682758,29.842,56.673 +682759,32.365,56.259 +682760,35.028,55.824 +682761,26.154,57.036 +682762,28.547,56.681 +682763,31.056,56.308 +682764,33.699,55.915 +682765,24.871,57.003 +682766,27.252,56.688 +682767,29.745,56.357 +682768,32.368,56.006 +682769,23.589,56.97 +682770,25.958,56.696 +682771,28.434,56.406 +682772,31.035,56.097 +682773,22.31,56.936 +682774,24.665,56.703 +682775,27.123,56.455 +682776,29.7,56.189 +682777,21.033,56.902 +682778,23.372,56.71 +682779,25.81,56.504 +682780,28.364,56.28 +682781,19.757,56.868 +682782,22.079,56.718 +682783,24.497,56.553 +682784,27.025,56.372 +682785,18.483,56.834 +682786,20.787,56.725 +682787,23.183,56.602 +682788,25.685,56.464 +682789,17.211,56.8 +682790,19.496,56.732 +682791,21.869,56.651 +682792,24.343,56.555 +682793,15.94,56.765 +682794,18.205,56.739 +682795,20.554,56.7 +682796,22.999,56.647 +682797,14.672,56.731 +682798,16.915,56.746 +682799,19.238,56.75 +682800,21.653,56.738 +682801,13.405,56.697 +682802,15.625,56.754 +682803,17.922,56.799 +682804,20.306,56.829 +682805,12.14,56.663 +682806,14.336,56.761 +682807,16.605,56.848 +682808,18.957,56.92 +682809,10.876,56.629 +682810,13.048,56.768 +682811,15.288,56.896 +682812,17.606,57.011 +682813,9.6145,56.595 +682814,11.76,56.775 +682815,13.97,56.945 +682816,16.254,57.102 +682817,8.3545,56.561 +682818,10.472,56.783 +682819,12.651,56.994 +682820,14.899,57.192 +682821,7.0962,56.527 +682822,9.1849,56.79 +682823,11.332,57.043 +682824,13.544,57.282 +682825,5.8396,56.494 +682826,7.8984,56.798 +682827,10.012,57.091 +682828,12.187,57.372 +682829,4.5846,56.461 +682830,6.6123,56.805 +682831,8.6913,57.139 +682832,10.828,57.461 +682833,3.3313,56.428 +682834,5.3268,56.813 +682835,7.3703,57.188 +682836,9.468,57.55 +682837,2.0795,56.396 +682838,4.0417,56.821 +682839,6.0488,57.236 +682840,8.1065,57.639 +682841,0.82935,56.364 +682842,2.7571,56.829 +682843,4.7267,57.284 +682844,6.7435,57.727 +682845,359.58,56.332 +682846,1.4729,56.837 +682847,3.4041,57.332 +682848,5.3792,57.814 +682849,358.33,56.301 +682850,0.18925,56.845 +682851,2.081,57.379 +682852,4.0135,57.901 +682853,357.09,56.27 +682854,358.91,56.854 +682855,0.75739,57.427 +682856,2.6466,57.988 +682857,355.84,56.239 +682858,357.62,56.862 +682859,359.43,57.474 +682860,1.2784,58.074 +682861,354.6,56.21 +682862,356.34,56.871 +682863,358.11,57.521 +682864,359.91,58.159 +682865,353.36,56.18 +682866,355.06,56.88 +682867,356.78,57.568 +682868,358.54,58.243 +682869,352.12,56.152 +682870,353.78,56.889 +682871,355.46,57.615 +682872,357.17,58.327 +682873,350.88,56.123 +682874,352.5,56.898 +682875,354.13,57.661 +682876,355.79,58.411 +682877,349.65,56.096 +682878,351.22,56.907 +682879,352.81,57.707 +682880,354.42,58.493 +682881,348.41,56.069 +682882,349.93,56.917 +682883,351.48,57.753 +682884,353.04,58.575 +682885,347.18,56.043 +682886,348.65,56.927 +682887,350.15,57.799 +682888,351.67,58.656 +682889,345.94,56.017 +682890,347.38,56.937 +682891,348.82,57.844 +682892,350.29,58.736 +682893,344.71,55.993 +682894,346.1,56.948 +682895,347.5,57.889 +682896,348.91,58.815 +682897,343.48,55.969 +682898,344.82,56.958 +682899,346.17,57.934 +682900,347.54,58.894 +682901,342.25,55.946 +682902,343.54,56.969 +682903,344.84,57.978 +682904,346.16,58.971 +682905,341.02,55.923 +682906,342.26,56.981 +682907,343.51,58.023 +682908,344.78,59.048 +682909,339.79,55.902 +682910,340.98,56.992 +682911,342.18,58.067 +682912,343.39,59.124 +682913,338.57,55.881 +682914,339.7,57.004 +682915,340.85,58.11 +682916,342.01,59.199 +682917,337.34,55.862 +682918,338.43,57.016 +682919,339.52,58.153 +682920,340.63,59.273 +682921,336.12,55.843 +682922,337.15,57.028 +682923,338.19,58.196 +682924,339.25,59.345 +682925,334.9,55.825 +682926,335.87,57.041 +682927,336.86,58.239 +682928,337.86,59.417 +682929,333.67,55.808 +682930,334.59,57.054 +682931,335.53,58.281 +682932,336.48,59.488 +682933,332.45,55.793 +682934,333.32,57.067 +682935,334.2,58.323 +682936,335.09,59.558 +682937,331.23,55.778 +682938,332.04,57.081 +682939,332.87,58.364 +682940,333.71,59.626 +682941,330.01,55.764 +682942,330.76,57.095 +682943,331.53,58.405 +682944,332.32,59.694 +682945,328.79,55.752 +682946,329.49,57.11 +682947,330.2,58.446 +682948,330.93,59.76 +682949,327.57,55.74 +682950,328.21,57.124 +682951,328.87,58.486 +682952,329.55,59.826 +682953,326.35,55.73 +682954,326.94,57.14 +682955,327.54,58.526 +682956,328.16,59.89 +682957,325.14,55.721 +682958,325.66,57.155 +682959,326.21,58.566 +682960,326.77,59.953 +682961,323.92,55.713 +682962,324.38,57.171 +682963,324.87,58.605 +682964,325.39,60.014 +682965,322.7,55.706 +682966,323.11,57.187 +682967,323.54,58.644 +682968,324,60.075 +682969,321.49,55.7 +682970,321.83,57.204 +682971,322.21,58.682 +682972,322.61,60.134 +682973,320.27,55.695 +682974,320.56,57.221 +682975,320.88,58.72 +682976,321.22,60.192 +682977,319.06,55.692 +682978,319.28,57.238 +682979,319.54,58.758 +682980,319.83,60.249 +682981,317.84,55.69 +682982,318.01,57.256 +682983,318.21,58.795 +682984,318.44,60.305 +682985,316.63,55.689 +682986,316.73,57.275 +682987,316.88,58.831 +682988,317.06,60.359 +682989,315.41,55.69 +682990,315.46,57.293 +682991,315.54,58.867 +682992,315.67,60.412 +682993,314.2,55.692 +682994,314.18,57.312 +682995,314.21,58.903 +682996,314.28,60.464 +682997,312.98,55.695 +682998,312.91,57.332 +682999,312.88,58.938 +683000,312.89,60.514 +683001,311.77,55.699 +683002,311.63,57.352 +683003,311.54,58.973 +683004,311.5,60.564 +683005,310.55,55.705 +683006,310.35,57.372 +683007,310.21,59.008 +683008,310.11,60.611 +683009,309.34,55.712 +683010,309.08,57.393 +683011,308.88,59.042 +683012,308.73,60.658 +683013,308.13,55.721 +683014,307.8,57.414 +683015,307.54,59.075 +683016,307.34,60.703 +683017,306.91,55.731 +683018,306.53,57.436 +683019,306.21,59.108 +683020,305.95,60.747 +683021,305.7,55.742 +683022,305.25,57.458 +683023,304.88,59.141 +683024,304.56,60.789 +683025,304.48,55.754 +683026,303.98,57.481 +683027,303.54,59.173 +683028,303.18,60.83 +683029,303.26,55.768 +683030,302.7,57.504 +683031,302.21,59.204 +683032,301.79,60.87 +683033,302.05,55.784 +683034,301.42,57.527 +683035,300.88,59.235 +683036,300.41,60.909 +683037,300.83,55.8 +683038,300.15,57.551 +683039,299.55,59.266 +683040,299.02,60.946 +683041,299.62,55.819 +683042,298.87,57.576 +683043,298.21,59.296 +683044,297.63,60.981 +683045,298.4,55.838 +683046,297.59,57.601 +683047,296.88,59.326 +683048,296.25,61.015 +683049,297.18,55.859 +683050,296.32,57.626 +683051,295.55,59.355 +683052,294.87,61.048 +683053,295.96,55.882 +683054,295.04,57.652 +683055,294.22,59.384 +683056,293.48,61.08 +683057,294.74,55.905 +683058,293.76,57.678 +683059,292.88,59.412 +683060,292.1,61.11 +683061,293.52,55.931 +683062,292.48,57.705 +683063,291.55,59.44 +683064,290.72,61.139 +683065,292.3,55.957 +683066,291.2,57.732 +683067,290.22,59.467 +683068,289.34,61.166 +683069,291.08,55.985 +683070,289.93,57.759 +683071,288.89,59.494 +683072,287.95,61.192 +683073,289.86,56.015 +683074,288.65,57.787 +683075,287.56,59.521 +683076,286.57,61.217 +683077,288.63,56.046 +683078,287.37,57.816 +683079,286.23,59.547 +683080,285.19,61.24 +683081,287.41,56.078 +683082,286.09,57.845 +683083,284.9,59.572 +683084,283.82,61.262 +683085,286.18,56.112 +683086,284.81,57.874 +683087,283.57,59.597 +683088,282.44,61.282 +683089,284.96,56.147 +683090,283.53,57.904 +683091,282.24,59.622 +683092,281.06,61.302 +683093,283.73,56.183 +683094,282.25,57.934 +683095,280.91,59.646 +683096,279.69,61.319 +683097,282.5,56.221 +683098,280.97,57.965 +683099,279.58,59.669 +683100,278.31,61.336 +683101,281.27,56.26 +683102,279.68,57.996 +683103,278.25,59.692 +683104,276.94,61.351 +683105,280.04,56.301 +683106,278.4,58.028 +683107,276.92,59.715 +683108,275.56,61.365 +683109,278.81,56.343 +683110,277.12,58.06 +683111,275.59,59.737 +683112,274.19,61.377 +683113,277.57,56.386 +683114,275.84,58.092 +683115,274.26,59.759 +683116,272.82,61.389 +683117,276.34,56.431 +683118,274.55,58.125 +683119,272.93,59.78 +683120,271.45,61.399 +683121,275.1,56.477 +683122,273.27,58.158 +683123,271.61,59.801 +683124,270.08,61.407 +683125,273.86,56.524 +683126,271.99,58.192 +683127,270.28,59.822 +683128,268.71,61.414 +683129,272.62,56.573 +683130,270.7,58.226 +683131,268.95,59.842 +683132,267.35,61.421 +683133,271.38,56.623 +683134,269.42,58.261 +683135,267.63,59.861 +683136,265.98,61.425 +683137,270.14,56.674 +683138,268.13,58.296 +683139,266.3,59.88 +683140,264.62,61.429 +683141,268.89,56.726 +683142,266.84,58.331 +683143,264.97,59.899 +683144,263.25,61.431 +683145,267.65,56.78 +683146,265.56,58.367 +683147,263.65,59.917 +683148,261.89,61.432 +683149,266.4,56.835 +683150,264.27,58.403 +683151,262.32,59.935 +683152,260.53,61.432 +683153,265.15,56.891 +683154,262.98,58.44 +683155,261,59.953 +683156,259.17,61.431 +683157,263.9,56.948 +683158,261.69,58.477 +683159,259.68,59.97 +683160,257.82,61.429 +683161,262.65,57.007 +683162,260.4,58.514 +683163,258.35,59.986 +683164,256.46,61.425 +683165,261.39,57.067 +683166,259.11,58.552 +683167,257.03,60.002 +683168,255.1,61.42 +683169,260.13,57.127 +683170,257.82,58.59 +683171,255.71,60.018 +683172,253.75,61.414 +683173,258.88,57.189 +683174,256.53,58.628 +683175,254.39,60.034 +683176,252.4,61.407 +683177,257.61,57.252 +683178,255.24,58.667 +683179,253.06,60.049 +683180,251.05,61.399 +683181,256.35,57.316 +683182,253.95,58.706 +683183,251.74,60.064 +683184,249.7,61.39 +683185,255.09,57.382 +683186,252.66,58.746 +683187,250.42,60.078 +683188,248.35,61.38 +683189,253.82,57.448 +683190,251.36,58.786 +683191,249.1,60.092 +683192,247,61.369 +683193,252.55,57.515 +683194,250.07,58.826 +683195,247.78,60.106 +683196,245.66,61.357 +683197,251.28,57.583 +683198,248.78,58.866 +683199,246.46,60.119 +683200,244.32,61.343 +683201,250.01,57.652 +683202,247.48,58.907 +683203,245.15,60.132 +683204,242.98,61.329 +683205,248.74,57.722 +683206,246.18,58.948 +683207,243.83,60.145 +683208,241.64,61.314 +683209,247.46,57.793 +683210,244.89,58.989 +683211,242.51,60.157 +683212,240.3,61.298 +683213,246.18,57.865 +683214,243.59,59.031 +683215,241.19,60.169 +683216,238.96,61.281 +683217,244.9,57.938 +683218,242.29,59.073 +683219,239.88,60.181 +683220,237.62,61.263 +683221,243.62,58.012 +683222,240.99,59.115 +683223,238.56,60.192 +683224,236.29,61.245 +683225,242.33,58.086 +683226,239.7,59.157 +683227,237.25,60.203 +683228,234.96,61.225 +683229,241.05,58.161 +683230,238.4,59.2 +683231,235.93,60.214 +683232,233.63,61.205 +683233,239.76,58.237 +683234,237.1,59.243 +683235,234.62,60.225 +683236,232.3,61.184 +683237,238.47,58.314 +683238,235.79,59.286 +683239,233.31,60.235 +683240,230.97,61.162 +683241,237.18,58.391 +683242,234.49,59.33 +683243,231.99,60.245 +683244,229.65,61.14 +683245,235.88,58.469 +683246,233.19,59.373 +683247,230.68,60.255 +683248,228.33,61.116 +683249,234.58,58.548 +683250,231.89,59.417 +683251,229.37,60.265 +683252,227,61.092 +683253,233.28,58.627 +683254,230.58,59.461 +683255,228.06,60.274 +683256,225.68,61.068 +683257,231.98,58.707 +683258,229.28,59.505 +683259,226.75,60.283 +683260,224.37,61.043 +683261,230.68,58.787 +683262,227.97,59.549 +683263,225.44,60.292 +683264,223.05,61.017 +683265,229.37,58.868 +683266,226.67,59.594 +683267,224.13,60.301 +683268,221.74,60.991 +683269,228.07,58.949 +683270,225.36,59.639 +683271,222.82,60.309 +683272,220.42,60.964 +683273,226.76,59.031 +683274,224.05,59.683 +683275,221.51,60.318 +683276,219.11,60.936 +683277,225.44,59.113 +683278,222.74,59.728 +683279,220.2,60.326 +683280,217.8,60.908 +683281,224.13,59.196 +683282,221.43,59.773 +683283,218.9,60.334 +683284,216.5,60.88 +683285,222.81,59.279 +683286,220.13,59.819 +683287,217.59,60.342 +683288,215.19,60.851 +683289,221.5,59.362 +683290,218.81,59.864 +683291,216.29,60.35 +683292,213.89,60.822 +683293,220.17,59.446 +683294,217.5,59.909 +683295,214.98,60.357 +683296,212.58,60.793 +683297,218.85,59.53 +683298,216.19,59.955 +683299,213.68,60.365 +683300,211.28,60.763 +683301,217.53,59.614 +683302,214.88,60 +683303,212.37,60.372 +683304,209.99,60.733 +683305,216.2,59.698 +683306,213.57,60.046 +683307,211.07,60.38 +683308,208.69,60.702 +683309,214.87,59.782 +683310,212.25,60.091 +683311,209.77,60.387 +683312,207.39,60.671 +683313,213.54,59.867 +683314,210.94,60.137 +683315,208.46,60.394 +683316,206.1,60.64 +683317,212.21,59.952 +683318,209.62,60.183 +683319,207.16,60.401 +683320,204.81,60.609 +683321,210.88,60.037 +683322,208.31,60.228 +683323,205.86,60.408 +683324,203.52,60.578 +683325,209.54,60.121 +683326,206.99,60.274 +683327,204.56,60.415 +683328,202.23,60.547 +683329,208.2,60.206 +683330,205.68,60.32 +683331,203.26,60.422 +683332,200.95,60.515 +683333,206.86,60.291 +683334,204.36,60.366 +683335,201.96,60.429 +683336,199.66,60.484 +683337,205.52,60.376 +683338,203.04,60.411 +683339,200.66,60.436 +683340,198.38,60.452 +683341,204.18,60.461 +683342,201.72,60.457 +683343,199.37,60.443 +683344,197.1,60.42 +683345,202.83,60.545 +683346,200.4,60.503 +683347,198.07,60.45 +683348,195.82,60.389 +683349,201.49,60.63 +683350,199.08,60.548 +683351,196.77,60.457 +683352,194.55,60.357 +683353,200.14,60.714 +683354,197.76,60.594 +683355,195.48,60.464 +683356,193.27,60.326 +683357,198.79,60.798 +683358,196.44,60.639 +683359,194.18,60.471 +683360,192,60.295 +683361,197.44,60.882 +683362,195.12,60.685 +683363,192.88,60.478 +683364,190.72,60.264 +683365,196.08,60.965 +683366,193.8,60.73 +683367,191.59,60.485 +683368,189.45,60.233 +683369,194.73,61.049 +683370,192.47,60.775 +683371,190.3,60.492 +683372,188.19,60.202 +683373,193.37,61.132 +683374,191.15,60.82 +683375,189,60.499 +683376,186.92,60.171 +683377,192.01,61.214 +683378,189.82,60.865 +683379,187.71,60.507 +683380,185.65,60.141 +683381,190.65,61.296 +683382,188.5,60.91 +683383,186.42,60.514 +683384,184.39,60.111 +683385,189.29,61.378 +683386,187.17,60.955 +683387,185.12,60.522 +683388,183.13,60.081 +683389,187.93,61.459 +683390,185.85,60.999 +683391,183.83,60.529 +683392,181.87,60.052 +683393,186.56,61.54 +683394,184.52,61.044 +683395,182.54,60.537 +683396,180.61,60.023 +683397,185.2,61.621 +683398,183.2,61.088 +683399,181.25,60.545 +683400,179.35,59.995 +683401,183.83,61.7 +683402,181.87,61.132 +683403,179.96,60.553 +683404,178.1,59.967 +683405,182.46,61.78 +683406,180.54,61.175 +683407,178.67,60.561 +683408,176.84,59.939 +683409,181.09,61.858 +683410,179.21,61.219 +683411,177.38,60.57 +683412,175.59,59.912 +683413,179.72,61.936 +683414,177.88,61.262 +683415,176.09,60.578 +683416,174.34,59.886 +683417,178.35,62.014 +683418,176.55,61.306 +683419,174.8,60.587 +683420,173.09,59.86 +683421,176.97,62.091 +683422,175.22,61.349 +683423,173.51,60.596 +683424,171.84,59.834 +683425,175.6,62.167 +683426,173.89,61.391 +683427,172.23,60.605 +683428,170.59,59.81 +683429,174.22,62.242 +683430,172.56,61.434 +683431,170.94,60.614 +683432,169.35,59.786 +683433,172.84,62.317 +683434,171.23,61.476 +683435,169.65,60.624 +683436,168.1,59.762 +683437,171.47,62.391 +683438,169.9,61.518 +683439,168.37,60.634 +683440,166.86,59.739 +683441,170.09,62.464 +683442,168.57,61.56 +683443,167.08,60.644 +683444,165.62,59.717 +683445,168.71,62.536 +683446,167.24,61.601 +683447,165.79,60.654 +683448,164.37,59.696 +683449,167.33,62.607 +683450,165.9,61.642 +683451,164.51,60.664 +683452,163.14,59.676 +683453,165.94,62.678 +683454,164.57,61.683 +683455,163.22,60.675 +683456,161.9,59.656 +683457,164.56,62.747 +683458,163.24,61.724 +683459,161.94,60.686 +683460,160.66,59.637 +683461,163.18,62.816 +683462,161.9,61.764 +683463,160.65,60.698 +683464,159.42,59.619 +683465,161.79,62.884 +683466,160.57,61.804 +683467,159.37,60.709 +683468,158.19,59.602 +683469,160.41,62.951 +683470,159.24,61.843 +683471,158.09,60.721 +683472,156.95,59.586 +683473,159.02,63.017 +683474,157.9,61.882 +683475,156.8,60.733 +683476,155.72,59.571 +683477,157.64,63.082 +683478,156.57,61.921 +683479,155.52,60.746 +683480,154.49,59.556 +683481,156.25,63.146 +683482,155.23,61.96 +683483,154.23,60.759 +683484,153.26,59.543 +683485,154.86,63.208 +683486,153.9,61.998 +683487,152.95,60.772 +683488,152.03,59.53 +683489,153.47,63.27 +683490,152.56,62.036 +683491,151.67,60.785 +683492,150.8,59.519 +683493,152.08,63.331 +683494,151.23,62.074 +683495,150.39,60.799 +683496,149.57,59.509 +683497,150.69,63.391 +683498,149.89,62.111 +683499,149.1,60.813 +683500,148.34,59.499 +683501,149.3,63.449 +683502,148.55,62.147 +683503,147.82,60.828 +683504,147.11,59.491 +683505,147.91,63.507 +683506,147.22,62.184 +683507,146.54,60.842 +683508,145.89,59.484 +683509,146.52,63.563 +683510,145.88,62.22 +683511,145.26,60.857 +683512,144.66,59.478 +683513,145.13,63.619 +683514,144.54,62.255 +683515,143.98,60.873 +683516,143.43,59.473 +683517,143.74,63.673 +683518,143.21,62.291 +683519,142.69,60.889 +683520,142.21,59.469 +683521,142.35,63.726 +683522,141.87,62.325 +683523,141.41,60.905 +683524,140.98,59.466 +683525,140.96,63.777 +683526,140.53,62.36 +683527,140.13,60.922 +683528,139.76,59.465 +683529,139.57,63.828 +683530,139.19,62.394 +683531,138.85,60.939 +683532,138.53,59.464 +683533,138.17,63.877 +683534,137.86,62.427 +683535,137.57,60.956 +683536,137.31,59.465 +683537,136.78,63.925 +683538,136.52,62.46 +683539,136.29,60.974 +683540,136.09,59.467 +683541,135.39,63.972 +683542,135.18,62.493 +683543,135.01,60.992 +683544,134.87,59.47 +683545,134,64.018 +683546,133.84,62.525 +683547,133.73,61.011 +683548,133.64,59.475 +683549,132.61,64.063 +683550,132.51,62.557 +683551,132.44,61.03 +683552,132.42,59.481 +683553,131.21,64.106 +683554,131.17,62.589 +683555,131.16,61.049 +683556,131.2,59.487 +683557,129.82,64.148 +683558,129.83,62.62 +683559,129.88,61.069 +683560,129.97,59.496 +683561,128.43,64.188 +683562,128.49,62.65 +683563,128.6,61.089 +683564,128.75,59.505 +683565,127.04,64.228 +683566,127.16,62.681 +683567,127.32,61.11 +683568,127.53,59.516 +683569,125.65,64.266 +683570,125.82,62.71 +683571,126.04,61.131 +683572,126.31,59.528 +683573,124.26,64.303 +683574,124.48,62.74 +683575,124.76,61.152 +683576,125.08,59.541 +683577,122.87,64.338 +683578,123.14,62.768 +683579,123.47,61.174 +683580,123.86,59.556 +683581,121.48,64.373 +683582,121.81,62.797 +683583,122.19,61.196 +683584,122.64,59.572 +683585,120.09,64.406 +683586,120.47,62.825 +683587,120.91,61.219 +683588,121.41,59.589 +683589,118.7,64.437 +683590,119.13,62.852 +683591,119.63,61.242 +683592,120.19,59.608 +683593,117.31,64.468 +683594,117.8,62.879 +683595,118.35,61.266 +683596,118.97,59.628 +683597,115.92,64.497 +683598,116.46,62.906 +683599,117.06,61.29 +683600,117.74,59.649 +683601,114.53,64.525 +683602,115.12,62.932 +683603,115.78,61.314 +683604,116.52,59.671 +683605,113.14,64.551 +683606,113.79,62.958 +683607,114.5,61.339 +683608,115.29,59.695 +683609,111.75,64.576 +683610,112.45,62.983 +683611,113.22,61.364 +683612,114.06,59.72 +683613,110.37,64.6 +683614,111.11,63.008 +683615,111.93,61.39 +683616,112.84,59.747 +683617,108.98,64.623 +683618,109.78,63.032 +683619,110.65,61.416 +683620,111.61,59.774 +683621,107.6,64.644 +683622,108.44,63.056 +683623,109.37,61.442 +683624,110.38,59.803 +683625,106.21,64.664 +683626,107.1,63.079 +683627,108.08,61.469 +683628,109.15,59.834 +683629,104.83,64.683 +683630,105.77,63.102 +683631,106.8,61.497 +683632,107.92,59.865 +683633,103.44,64.7 +683634,104.43,63.125 +683635,105.51,61.524 +683636,106.69,59.898 +683637,102.06,64.716 +683638,103.1,63.147 +683639,104.23,61.553 +683640,105.46,59.933 +683641,100.68,64.731 +683642,101.76,63.169 +683643,102.94,61.581 +683644,104.23,59.968 +683645,99.299,64.745 +683646,100.43,63.19 +683647,101.66,61.61 +683648,103,60.005 +683649,97.919,64.757 +683650,99.096,63.211 +683651,100.37,61.64 +683652,101.76,60.043 +683653,96.54,64.768 +683654,97.762,63.231 +683655,99.086,61.669 +683656,100.53,60.083 +683657,95.162,64.778 +683658,96.429,63.251 +683659,97.799,61.7 +683660,99.289,60.123 +683661,93.786,64.787 +683662,95.095,63.271 +683663,96.512,61.73 +683664,98.051,60.165 +683665,92.41,64.794 +683666,93.763,63.29 +683667,95.225,61.761 +683668,96.812,60.208 +683669,91.035,64.801 +683670,92.43,63.309 +683671,93.937,61.793 +683672,95.572,60.253 +683673,89.661,64.806 +683674,91.098,63.327 +683675,92.649,61.825 +683676,94.33,60.298 +683677,88.288,64.809 +683678,89.766,63.345 +683679,91.36,61.857 +683680,93.088,60.345 +683681,86.917,64.812 +683682,88.435,63.362 +683683,90.071,61.889 +683684,91.843,60.393 +683685,85.546,64.813 +683686,87.104,63.379 +683687,88.781,61.922 +683688,90.598,60.442 +683689,84.177,64.814 +683690,85.773,63.396 +683691,87.491,61.956 +683692,89.351,60.493 +683693,82.809,64.813 +683694,84.443,63.412 +683695,86.201,61.989 +683696,88.102,60.544 +683697,81.442,64.811 +683698,83.113,63.428 +683699,84.91,62.023 +683700,86.852,60.597 +683701,80.076,64.808 +683702,81.783,63.444 +683703,83.618,62.058 +683704,85.601,60.65 +683705,78.712,64.804 +683706,80.455,63.459 +683707,82.326,62.092 +683708,84.347,60.705 +683709,77.349,64.799 +683710,79.126,63.473 +683711,81.033,62.128 +683712,83.093,60.761 +683713,75.987,64.792 +683714,77.798,63.488 +683715,79.74,62.163 +683716,81.836,60.818 +683717,74.627,64.785 +683718,76.47,63.502 +683719,78.447,62.199 +683720,80.578,60.876 +683721,73.268,64.777 +683722,75.143,63.515 +683723,77.153,62.235 +683724,79.319,60.935 +683725,71.911,64.767 +683726,73.816,63.529 +683727,75.858,62.271 +683728,78.057,60.995 +683729,70.555,64.757 +683730,72.49,63.542 +683731,74.562,62.308 +683732,76.794,61.056 +683733,69.2,64.745 +683734,71.165,63.554 +683735,73.267,62.345 +683736,75.529,61.118 +683737,67.847,64.733 +683738,69.839,63.567 +683739,71.97,62.383 +683740,74.262,61.181 +683741,66.495,64.72 +683742,68.515,63.579 +683743,70.673,62.42 +683744,72.994,61.244 +683745,65.145,64.706 +683746,67.191,63.59 +683747,69.375,62.458 +683748,71.723,61.309 +683749,63.796,64.691 +683750,65.867,63.602 +683751,68.077,62.496 +683752,70.451,61.375 +683753,62.449,64.675 +683754,64.544,63.613 +683755,66.778,62.535 +683756,69.177,61.441 +683757,61.104,64.658 +683758,63.221,63.623 +683759,65.479,62.574 +683760,67.901,61.508 +683761,59.76,64.64 +683762,61.899,63.634 +683763,64.179,62.613 +683764,66.623,61.577 +683765,58.417,64.622 +683766,60.577,63.644 +683767,62.878,62.652 +683768,65.343,61.645 +683769,57.076,64.603 +683770,59.256,63.654 +683771,61.577,62.691 +683772,64.061,61.715 +683773,55.737,64.583 +683774,57.936,63.664 +683775,60.275,62.731 +683776,62.777,61.785 +683777,54.4,64.562 +683778,56.616,63.673 +683779,58.972,62.771 +683780,61.492,61.856 +683781,53.064,64.541 +683782,55.297,63.682 +683783,57.669,62.811 +683784,60.204,61.928 +683785,51.729,64.519 +683786,53.978,63.691 +683787,56.365,62.852 +683788,58.914,62 +683789,50.397,64.496 +683790,52.66,63.7 +683791,55.061,62.892 +683792,57.622,62.073 +683793,49.066,64.473 +683794,51.342,63.708 +683795,53.755,62.933 +683796,56.329,62.147 +683797,47.737,64.449 +683798,50.025,63.717 +683799,52.449,62.974 +683800,55.033,62.221 +683801,46.409,64.424 +683802,48.709,63.725 +683803,51.143,63.015 +683804,53.735,62.296 +683805,45.083,64.399 +683806,47.393,63.732 +683807,49.836,63.057 +683808,52.435,62.371 +683809,43.759,64.373 +683810,46.078,63.74 +683811,48.528,63.098 +683812,51.134,62.446 +683813,42.437,64.347 +683814,44.763,63.748 +683815,47.22,63.14 +683816,49.83,62.522 +683817,41.117,64.32 +683818,43.449,63.755 +683819,45.91,63.181 +683820,48.524,62.599 +683821,39.798,64.293 +683822,42.135,63.762 +683823,44.601,63.223 +683824,47.216,62.676 +683825,38.481,64.266 +683826,40.822,63.769 +683827,43.29,63.265 +683828,45.906,62.753 +683829,37.165,64.238 +683830,39.51,63.776 +683831,41.979,63.307 +683832,44.594,62.831 +683833,35.852,64.209 +683834,38.198,63.783 +683835,40.667,63.349 +683836,43.28,62.909 +683837,34.54,64.181 +683838,36.887,63.789 +683839,39.355,63.392 +683840,41.964,62.987 +683841,33.23,64.152 +683842,35.576,63.796 +683843,38.042,63.434 +683844,40.646,63.065 +683845,31.922,64.122 +683846,34.266,63.802 +683847,36.728,63.477 +683848,39.326,63.144 +683849,30.615,64.093 +683850,32.957,63.809 +683851,35.413,63.519 +683852,38.004,63.223 +683853,29.31,64.063 +683854,31.648,63.815 +683855,34.098,63.562 +683856,36.68,63.302 +683857,28.007,64.033 +683858,30.34,63.821 +683859,32.783,63.604 +683860,35.354,63.381 +683861,26.706,64.003 +683862,29.032,63.827 +683863,31.466,63.647 +683864,34.027,63.46 +683865,25.407,63.973 +683866,27.725,63.833 +683867,30.149,63.689 +683868,32.697,63.54 +683869,24.109,63.943 +683870,26.419,63.839 +683871,28.832,63.732 +683872,31.365,63.619 +683873,22.813,63.912 +683874,25.113,63.845 +683875,27.513,63.775 +683876,30.032,63.699 +683877,21.519,63.882 +683878,23.807,63.851 +683879,26.194,63.817 +683880,28.696,63.778 +683881,20.226,63.851 +683882,22.503,63.857 +683883,24.875,63.86 +683884,27.359,63.857 +683885,18.936,63.821 +683886,21.198,63.863 +683887,23.555,63.902 +683888,26.02,63.936 +683889,17.647,63.79 +683890,19.895,63.869 +683891,22.234,63.945 +683892,24.679,64.016 +683893,16.36,63.76 +683894,18.592,63.875 +683895,20.912,63.987 +683896,23.336,64.095 +683897,15.074,63.729 +683898,17.289,63.881 +683899,19.59,64.03 +683900,21.991,64.174 +683901,13.79,63.699 +683902,15.987,63.887 +683903,18.268,64.072 +683904,20.645,64.252 +683905,12.508,63.669 +683906,14.686,63.893 +683907,16.944,64.114 +683908,19.297,64.331 +683909,11.228,63.639 +683910,13.385,63.899 +683911,15.621,64.156 +683912,17.947,64.409 +683913,9.9489,63.609 +683914,12.085,63.906 +683915,14.296,64.199 +683916,16.595,64.487 +683917,8.6718,63.58 +683918,10.785,63.912 +683919,12.971,64.241 +683920,15.242,64.564 +683921,7.3963,63.551 +683922,9.4857,63.918 +683923,11.646,64.282 +683924,13.887,64.642 +683925,6.1225,63.522 +683926,8.187,63.925 +683927,10.32,64.324 +683928,12.531,64.718 +683929,4.8503,63.493 +683930,6.8888,63.931 +683931,8.9929,64.366 +683932,11.173,64.795 +683933,3.5796,63.465 +683934,5.5911,63.938 +683935,7.6657,64.407 +683936,9.813,64.871 +683937,2.3106,63.437 +683938,4.2939,63.945 +683939,6.338,64.448 +683940,8.4518,64.947 +683941,1.0431,63.41 +683942,2.9972,63.952 +683943,5.0097,64.49 +683944,7.0892,65.022 +683945,359.78,63.383 +683946,1.701,63.959 +683947,3.6809,64.53 +683948,5.7251,65.096 +683949,358.51,63.356 +683950,0.40526,63.966 +683951,2.3516,64.571 +683952,4.3595,65.171 +683953,357.25,63.33 +683954,359.11,63.973 +683955,1.0218,64.612 +683956,2.9925,65.244 +683957,355.99,63.305 +683958,357.82,63.981 +683959,359.69,64.652 +683960,1.6242,65.317 +683961,354.73,63.28 +683962,356.52,63.989 +683963,358.36,64.692 +683964,0.25447,65.39 +683965,353.47,63.256 +683966,355.23,63.997 +683967,357.03,64.732 +683968,358.88,65.461 +683969,352.21,63.232 +683970,353.93,64.005 +683971,355.7,64.772 +683972,357.51,65.533 +683973,350.96,63.209 +683974,352.64,64.013 +683975,354.37,64.812 +683976,356.14,65.603 +683977,349.7,63.186 +683978,351.35,64.021 +683979,353.03,64.851 +683980,354.76,65.673 +683981,348.45,63.164 +683982,350.06,64.03 +683983,351.7,64.89 +683984,353.39,65.742 +683985,347.2,63.143 +683986,348.76,64.039 +683987,350.37,64.929 +683988,352.01,65.81 +683989,345.95,63.123 +683990,347.47,64.048 +683991,349.03,64.967 +683992,350.63,65.877 +683993,344.7,63.103 +683994,346.18,64.058 +683995,347.7,65.005 +683996,349.25,65.944 +683997,343.45,63.084 +683998,344.89,64.067 +683999,346.36,65.043 +684000,347.87,66.01 +684001,342.2,63.066 +684002,343.6,64.077 +684003,345.03,65.081 +684004,346.49,66.075 +684005,340.96,63.049 +684006,342.31,64.088 +684007,343.69,65.118 +684008,345.11,66.139 +684009,339.71,63.032 +684010,341.02,64.098 +684011,342.36,65.155 +684012,343.73,66.203 +684013,338.47,63.017 +684014,339.73,64.109 +684015,341.02,65.192 +684016,342.34,66.265 +684017,337.23,63.002 +684018,338.44,64.12 +684019,339.69,65.229 +684020,340.96,66.327 +684021,335.98,62.988 +684022,337.15,64.131 +684023,338.35,65.265 +684024,339.57,66.387 +684025,334.74,62.975 +684026,335.87,64.143 +684027,337.01,65.301 +684028,338.18,66.447 +684029,333.5,62.963 +684030,334.58,64.155 +684031,335.67,65.336 +684032,336.8,66.505 +684033,332.27,62.953 +684034,333.29,64.167 +684035,334.34,65.371 +684036,335.41,66.563 +684037,331.03,62.943 +684038,332,64.18 +684039,333,65.406 +684040,334.02,66.62 +684041,329.79,62.934 +684042,330.71,64.193 +684043,331.66,65.44 +684044,332.63,66.675 +684045,328.55,62.926 +684046,329.43,64.206 +684047,330.32,65.474 +684048,331.24,66.73 +684049,327.32,62.919 +684050,328.14,64.22 +684051,328.98,65.508 +684052,329.85,66.783 +684053,326.08,62.913 +684054,326.85,64.233 +684055,327.65,65.542 +684056,328.46,66.836 +684057,324.85,62.908 +684058,325.57,64.248 +684059,326.31,65.575 +684060,327.07,66.887 +684061,323.62,62.904 +684062,324.28,64.262 +684063,324.97,65.607 +684064,325.68,66.938 +684065,322.38,62.902 +684066,322.99,64.277 +684067,323.63,65.639 +684068,324.29,66.987 +684069,321.15,62.9 +684070,321.71,64.293 +684071,322.29,65.671 +684072,322.89,67.035 +684073,319.92,62.9 +684074,320.42,64.308 +684075,320.95,65.703 +684076,321.5,67.082 +684077,318.69,62.901 +684078,319.14,64.324 +684079,319.61,65.734 +684080,320.11,67.127 +684081,317.46,62.903 +684082,317.85,64.341 +684083,318.27,65.764 +684084,318.72,67.172 +684085,316.23,62.906 +684086,316.56,64.358 +684087,316.93,65.795 +684088,317.32,67.216 +684089,315,62.91 +684090,315.28,64.375 +684091,315.59,65.825 +684092,315.93,67.258 +684093,313.77,62.916 +684094,313.99,64.392 +684095,314.25,65.854 +684096,314.54,67.299 +684097,312.54,62.922 +684098,312.71,64.41 +684099,312.91,65.883 +684100,313.14,67.339 +684101,311.31,62.93 +684102,311.42,64.429 +684103,311.57,65.912 +684104,311.75,67.378 +684105,310.08,62.939 +684106,310.14,64.448 +684107,310.23,65.94 +684108,310.35,67.415 +684109,308.85,62.95 +684110,308.85,64.467 +684111,308.89,65.968 +684112,308.96,67.451 +684113,307.62,62.961 +684114,307.56,64.486 +684115,307.55,65.995 +684116,307.57,67.486 +684117,306.39,62.974 +684118,306.28,64.506 +684119,306.21,66.022 +684120,306.17,67.52 +684121,305.16,62.988 +684122,304.99,64.527 +684123,304.87,66.049 +684124,304.78,67.553 +684125,303.93,63.003 +684126,303.71,64.547 +684127,303.53,66.075 +684128,303.39,67.584 +684129,302.7,63.02 +684130,302.42,64.568 +684131,302.19,66.1 +684132,301.99,67.615 +684133,301.47,63.037 +684134,301.14,64.59 +684135,300.85,66.126 +684136,300.6,67.643 +684137,300.25,63.056 +684138,299.85,64.612 +684139,299.51,66.151 +684140,299.21,67.671 +684141,299.02,63.077 +684142,298.56,64.634 +684143,298.17,66.175 +684144,297.82,67.698 +684145,297.79,63.098 +684146,297.28,64.657 +684147,296.83,66.199 +684148,296.42,67.723 +684149,296.56,63.121 +684150,295.99,64.68 +684151,295.49,66.223 +684152,295.03,67.747 +684153,295.32,63.145 +684154,294.71,64.704 +684155,294.15,66.246 +684156,293.64,67.77 +684157,294.09,63.17 +684158,293.42,64.728 +684159,292.81,66.268 +684160,292.25,67.791 +684161,292.86,63.197 +684162,292.13,64.752 +684163,291.47,66.291 +684164,290.86,67.811 +684165,291.63,63.225 +684166,290.85,64.777 +684167,290.13,66.313 +684168,289.47,67.83 +684169,290.4,63.254 +684170,289.56,64.802 +684171,288.79,66.334 +684172,288.08,67.848 +684173,289.16,63.284 +684174,288.27,64.828 +684175,287.45,66.355 +684176,286.7,67.865 +684177,287.93,63.316 +684178,286.98,64.854 +684179,286.11,66.376 +684180,285.31,67.88 +684181,286.69,63.348 +684182,285.7,64.88 +684183,284.77,66.396 +684184,283.92,67.894 +684185,285.46,63.382 +684186,284.41,64.907 +684187,283.44,66.416 +684188,282.54,67.907 +684189,284.22,63.418 +684190,283.12,64.934 +684191,282.1,66.435 +684192,281.15,67.919 +684193,282.98,63.454 +684194,281.83,64.962 +684195,280.76,66.454 +684196,279.77,67.929 +684197,281.75,63.492 +684198,280.54,64.99 +684199,279.42,66.473 +684200,278.38,67.938 +684201,280.51,63.531 +684202,279.25,65.018 +684203,278.09,66.491 +684204,277,67.947 +684205,279.27,63.571 +684206,277.96,65.047 +684207,276.75,66.508 +684208,275.62,67.953 +684209,278.03,63.612 +684210,276.67,65.076 +684211,275.41,66.526 +684212,274.24,67.959 +684213,276.78,63.654 +684214,275.38,65.106 +684215,274.08,66.543 +684216,272.86,67.964 +684217,275.54,63.698 +684218,274.09,65.136 +684219,272.74,66.559 +684220,271.48,67.967 +684221,274.3,63.742 +684222,272.8,65.166 +684223,271.4,66.575 +684224,270.1,67.97 +684225,273.05,63.788 +684226,271.51,65.197 +684227,270.07,66.591 +684228,268.72,67.971 +684229,271.81,63.835 +684230,270.22,65.228 +684231,268.73,66.606 +684232,267.35,67.971 +684233,270.56,63.883 +684234,268.92,65.259 +684235,267.4,66.621 +684236,265.97,67.97 +684237,269.31,63.932 +684238,267.63,65.291 +684239,266.07,66.636 +684240,264.6,67.968 +684241,268.06,63.983 +684242,266.34,65.323 +684243,264.73,66.65 +684244,263.23,67.965 +684245,266.81,64.034 +684246,265.05,65.355 +684247,263.4,66.664 +684248,261.85,67.96 +684249,265.55,64.086 +684250,263.75,65.388 +684251,262.07,66.678 +684252,260.48,67.955 +684253,264.3,64.14 +684254,262.46,65.421 +684255,260.73,66.691 +684256,259.11,67.949 +684257,263.04,64.194 +684258,261.16,65.454 +684259,259.4,66.704 +684260,257.75,67.941 +684261,261.79,64.249 +684262,259.87,65.488 +684263,258.07,66.716 +684264,256.38,67.933 +684265,260.53,64.306 +684266,258.57,65.522 +684267,256.74,66.728 +684268,255.01,67.924 +684269,259.27,64.363 +684270,257.27,65.556 +684271,255.41,66.74 +684272,253.65,67.913 +684273,258.01,64.421 +684274,255.98,65.591 +684275,254.08,66.752 +684276,252.29,67.902 +684277,256.74,64.48 +684278,254.68,65.626 +684279,252.75,66.763 +684280,250.93,67.89 +684281,255.48,64.54 +684282,253.38,65.661 +684283,251.42,66.774 +684284,249.57,67.877 +684285,254.21,64.601 +684286,252.08,65.697 +684287,250.09,66.784 +684288,248.21,67.863 +684289,252.94,64.663 +684290,250.78,65.733 +684291,248.76,66.795 +684292,246.85,67.848 +684293,251.67,64.726 +684294,249.48,65.769 +684295,247.43,66.805 +684296,245.49,67.832 +684297,250.4,64.789 +684298,248.18,65.805 +684299,246.1,66.814 +684300,244.14,67.816 +684301,249.13,64.853 +684302,246.88,65.842 +684303,244.78,66.824 +684304,242.79,67.799 +684305,247.85,64.918 +684306,245.58,65.878 +684307,243.45,66.833 +684308,241.44,67.781 +684309,246.57,64.984 +684310,244.28,65.916 +684311,242.12,66.842 +684312,240.09,67.762 +684313,245.29,65.05 +684314,242.98,65.953 +684315,240.8,66.85 +684316,238.74,67.742 +684317,244.01,65.117 +684318,241.67,65.99 +684319,239.47,66.859 +684320,237.39,67.722 +684321,242.73,65.185 +684322,240.37,66.028 +684323,238.15,66.867 +684324,236.05,67.701 +684325,241.45,65.254 +684326,239.07,66.066 +684327,236.82,66.875 +684328,234.7,67.679 +684329,240.16,65.323 +684330,237.76,66.104 +684331,235.5,66.883 +684332,233.36,67.657 +684333,238.87,65.392 +684334,236.46,66.143 +684335,234.18,66.89 +684336,232.02,67.634 +684337,237.58,65.462 +684338,235.15,66.181 +684339,232.86,66.897 +684340,230.68,67.61 +684341,236.29,65.533 +684342,233.84,66.22 +684343,231.53,66.904 +684344,229.35,67.586 +684345,235,65.604 +684346,232.54,66.259 +684347,230.21,66.911 +684348,228.01,67.561 +684349,233.7,65.676 +684350,231.23,66.298 +684351,228.89,66.918 +684352,226.68,67.536 +684353,232.4,65.748 +684354,229.92,66.337 +684355,227.57,66.925 +684356,225.34,67.51 +684357,231.1,65.821 +684358,228.61,66.376 +684359,226.25,66.931 +684360,224.01,67.484 +684361,229.8,65.893 +684362,227.3,66.416 +684363,224.93,66.937 +684364,222.69,67.457 +684365,228.5,65.967 +684366,225.99,66.455 +684367,223.62,66.943 +684368,221.36,67.43 +684369,227.19,66.04 +684370,224.68,66.495 +684371,222.3,66.949 +684372,220.03,67.403 +684373,225.89,66.114 +684374,223.37,66.535 +684375,220.98,66.955 +684376,218.71,67.375 +684377,224.58,66.189 +684378,222.05,66.575 +684379,219.66,66.961 +684380,217.39,67.347 +684381,223.27,66.263 +684382,220.74,66.615 +684383,218.35,66.966 +684384,216.07,67.318 +684385,221.95,66.338 +684386,219.43,66.655 +684387,217.03,66.972 +684388,214.75,67.289 +684389,220.64,66.413 +684390,218.11,66.695 +684391,215.72,66.977 +684392,213.43,67.26 +684393,219.32,66.488 +684394,216.8,66.735 +684395,214.4,66.982 +684396,212.12,67.231 +684397,218,66.564 +684398,215.48,66.775 +684399,213.09,66.988 +684400,210.8,67.201 +684401,216.68,66.639 +684402,214.17,66.815 +684403,211.78,66.993 +684404,209.49,67.172 +684405,215.36,66.714 +684406,212.85,66.856 +684407,210.46,66.998 +684408,208.18,67.142 +684409,214.03,66.79 +684410,211.53,66.896 +684411,209.15,67.003 +684412,206.87,67.112 +684413,212.71,66.866 +684414,210.21,66.936 +684415,207.84,67.008 +684416,205.57,67.082 +684417,211.38,66.941 +684418,208.9,66.977 +684419,206.53,67.013 +684420,204.26,67.052 +684421,210.05,67.017 +684422,207.58,67.017 +684423,205.22,67.018 +684424,202.96,67.021 +684425,208.71,67.092 +684426,206.26,67.057 +684427,203.91,67.023 +684428,201.66,66.991 +684429,207.38,67.168 +684430,204.94,67.097 +684431,202.6,67.028 +684432,200.36,66.961 +684433,206.04,67.243 +684434,203.61,67.138 +684435,201.29,67.033 +684436,199.06,66.931 +684437,204.71,67.319 +684438,202.29,67.178 +684439,199.98,67.038 +684440,197.77,66.901 +684441,203.37,67.394 +684442,200.97,67.218 +684443,198.68,67.043 +684444,196.47,66.871 +684445,202.02,67.468 +684446,199.65,67.258 +684447,197.37,67.049 +684448,195.18,66.841 +684449,200.68,67.543 +684450,198.32,67.298 +684451,196.06,67.054 +684452,193.89,66.812 +684453,199.34,67.617 +684454,197,67.338 +684455,194.76,67.059 +684456,192.6,66.782 +684457,197.99,67.692 +684458,195.67,67.377 +684459,193.45,67.064 +684460,191.31,66.753 +684461,196.64,67.765 +684462,194.35,67.417 +684463,192.15,67.07 +684464,190.02,66.724 +684465,195.29,67.839 +684466,193.02,67.457 +684467,190.84,67.075 +684468,188.74,66.695 +684469,193.94,67.912 +684470,191.7,67.496 +684471,189.54,67.081 +684472,187.46,66.667 +684473,192.59,67.985 +684474,190.37,67.535 +684475,188.24,67.086 +684476,186.18,66.639 +684477,191.23,68.057 +684478,189.04,67.575 +684479,186.93,67.092 +684480,184.9,66.611 +684481,189.87,68.129 +684482,187.71,67.614 +684483,185.63,67.098 +684484,183.62,66.584 +684485,188.52,68.201 +684486,186.39,67.653 +684487,184.33,67.104 +684488,182.34,66.557 +684489,187.16,68.271 +684490,185.06,67.691 +684491,183.03,67.111 +684492,181.07,66.53 +684493,185.8,68.342 +684494,183.73,67.73 +684495,181.73,67.117 +684496,179.79,66.504 +684497,184.43,68.412 +684498,182.4,67.768 +684499,180.43,67.123 +684500,178.52,66.479 +684501,183.07,68.481 +684502,181.07,67.806 +684503,179.13,67.13 +684504,177.25,66.454 +684505,181.7,68.55 +684506,179.73,67.844 +684507,177.83,67.137 +684508,175.98,66.429 +684509,180.34,68.618 +684510,178.4,67.882 +684511,176.53,67.144 +684512,174.72,66.405 +684513,178.97,68.686 +684514,177.07,67.92 +684515,175.23,67.151 +684516,173.45,66.382 +684517,177.6,68.752 +684518,175.74,67.957 +684519,173.94,67.159 +684520,172.19,66.359 +684521,176.23,68.819 +684522,174.4,67.994 +684523,172.64,67.167 +684524,170.92,66.337 +684525,174.85,68.884 +684526,173.07,68.031 +684527,171.34,67.174 +684528,169.66,66.316 +684529,173.48,68.949 +684530,171.74,68.068 +684531,170.05,67.183 +684532,168.4,66.295 +684533,172.1,69.013 +684534,170.4,68.104 +684535,168.75,67.191 +684536,167.14,66.275 +684537,170.73,69.076 +684538,169.07,68.14 +684539,167.45,67.2 +684540,165.88,66.256 +684541,169.35,69.139 +684542,167.73,68.176 +684543,166.16,67.208 +684544,164.63,66.238 +684545,167.97,69.2 +684546,166.4,68.211 +684547,164.86,67.218 +684548,163.37,66.22 +684549,166.59,69.261 +684550,165.06,68.247 +684551,163.57,67.227 +684552,162.12,66.203 +684553,165.21,69.321 +684554,163.72,68.282 +684555,162.28,67.237 +684556,160.86,66.187 +684557,163.83,69.38 +684558,162.39,68.316 +684559,160.98,67.246 +684560,159.61,66.172 +684561,162.45,69.438 +684562,161.05,68.351 +684563,159.69,67.257 +684564,158.36,66.158 +684565,161.07,69.496 +684566,159.71,68.385 +684567,158.39,67.267 +684568,157.11,66.144 +684569,159.68,69.552 +684570,158.37,68.419 +684571,157.1,67.278 +684572,155.86,66.132 +684573,158.3,69.607 +684574,157.04,68.452 +684575,155.81,67.289 +684576,154.61,66.12 +684577,156.91,69.662 +684578,155.7,68.485 +684579,154.52,67.301 +684580,153.37,66.11 +684581,155.53,69.715 +684582,154.36,68.518 +684583,153.23,67.312 +684584,152.12,66.1 +684585,154.14,69.768 +684586,153.02,68.55 +684587,151.93,67.324 +684588,150.88,66.091 +684589,152.75,69.819 +684590,151.68,68.583 +684591,150.64,67.337 +684592,149.63,66.084 +684593,151.36,69.87 +684594,150.34,68.614 +684595,149.35,67.349 +684596,148.39,66.077 +684597,149.97,69.919 +684598,149,68.646 +684599,148.06,67.363 +684600,147.15,66.071 +684601,148.58,69.968 +684602,147.66,68.677 +684603,146.77,67.376 +684604,145.91,66.067 +684605,147.19,70.015 +684606,146.32,68.707 +684607,145.48,67.39 +684608,144.66,66.063 +684609,145.8,70.061 +684610,144.98,68.738 +684611,144.19,67.404 +684612,143.42,66.061 +684613,144.41,70.107 +684614,143.64,68.768 +684615,142.9,67.418 +684616,142.19,66.06 +684617,143.02,70.151 +684618,142.3,68.797 +684619,141.61,67.433 +684620,140.95,66.059 +684621,141.62,70.194 +684622,140.96,68.827 +684623,140.32,67.448 +684624,139.71,66.06 +684625,140.23,70.236 +684626,139.62,68.855 +684627,139.03,67.464 +684628,138.47,66.062 +684629,138.84,70.276 +684630,138.27,68.884 +684631,137.74,67.48 +684632,137.23,66.065 +684633,137.44,70.316 +684634,136.93,68.912 +684635,136.45,67.496 +684636,136,66.07 +684637,136.05,70.354 +684638,135.59,68.94 +684639,135.16,67.513 +684640,134.76,66.075 +684641,134.66,70.392 +684642,134.25,68.967 +684643,133.87,67.53 +684644,133.52,66.082 +684645,133.26,70.428 +684646,132.91,68.994 +684647,132.58,67.547 +684648,132.29,66.09 +684649,131.87,70.463 +684650,131.57,69.02 +684651,131.29,67.565 +684652,131.05,66.099 +684653,130.47,70.497 +684654,130.22,69.046 +684655,130.01,67.583 +684656,129.82,66.109 +684657,129.08,70.529 +684658,128.88,69.072 +684659,128.72,67.602 +684660,128.58,66.12 +684661,127.69,70.561 +684662,127.54,69.097 +684663,127.43,67.621 +684664,127.35,66.133 +684665,126.29,70.591 +684666,126.2,69.122 +684667,126.14,67.64 +684668,126.11,66.147 +684669,124.9,70.62 +684670,124.86,69.147 +684671,124.85,67.66 +684672,124.88,66.162 +684673,123.5,70.648 +684674,123.51,69.171 +684675,123.56,67.68 +684676,123.64,66.178 +684677,122.11,70.675 +684678,122.17,69.194 +684679,122.27,67.701 +684680,122.41,66.196 +684681,120.72,70.7 +684682,120.83,69.218 +684683,120.98,67.722 +684684,121.17,66.214 +684685,119.32,70.725 +684686,119.49,69.241 +684687,119.69,67.743 +684688,119.94,66.234 +684689,117.93,70.748 +684690,118.15,69.263 +684691,118.4,67.765 +684692,118.7,66.255 +684693,116.53,70.77 +684694,116.8,69.285 +684695,117.12,67.787 +684696,117.47,66.278 +684697,115.14,70.79 +684698,115.46,69.307 +684699,115.83,67.81 +684700,116.23,66.301 +684701,113.75,70.81 +684702,114.12,69.328 +684703,114.54,67.833 +684704,115,66.326 +684705,112.36,70.828 +684706,112.78,69.349 +684707,113.25,67.856 +684708,113.76,66.352 +684709,110.97,70.845 +684710,111.44,69.369 +684711,111.96,67.88 +684712,112.53,66.38 +684713,109.57,70.861 +684714,110.1,69.389 +684715,110.67,67.904 +684716,111.29,66.408 +684717,108.18,70.876 +684718,108.76,69.409 +684719,109.38,67.929 +684720,110.05,66.438 +684721,106.79,70.89 +684722,107.41,69.428 +684723,108.09,67.954 +684724,108.82,66.469 +684725,105.4,70.902 +684726,106.07,69.447 +684727,106.8,67.979 +684728,107.58,66.501 +684729,104.02,70.913 +684730,104.73,69.465 +684731,105.51,68.005 +684732,106.34,66.534 +684733,102.63,70.923 +684734,103.39,69.483 +684735,104.22,68.031 +684736,105.1,66.569 +684737,101.24,70.932 +684738,102.05,69.501 +684739,102.92,68.058 +684740,103.86,66.605 +684741,99.852,70.94 +684742,100.71,69.518 +684743,101.63,68.085 +684744,102.62,66.642 +684745,98.465,70.946 +684746,99.372,69.535 +684747,100.34,68.112 +684748,101.38,66.68 +684749,97.08,70.952 +684750,98.033,69.551 +684751,99.049,68.14 +684752,100.14,66.719 +684753,95.695,70.956 +684754,96.693,69.567 +684755,97.757,68.168 +684756,98.892,66.759 +684757,94.311,70.959 +684758,95.354,69.583 +684759,96.465,68.196 +684760,97.648,66.801 +684761,92.928,70.961 +684762,94.016,69.598 +684763,95.172,68.225 +684764,96.404,66.844 +684765,91.546,70.962 +684766,92.677,69.613 +684767,93.879,68.254 +684768,95.158,66.887 +684769,90.165,70.962 +684770,91.339,69.628 +684771,92.585,68.284 +684772,93.911,66.932 +684773,88.784,70.961 +684774,90.001,69.642 +684775,91.292,68.314 +684776,92.664,66.978 +684777,87.405,70.959 +684778,88.663,69.656 +684779,89.998,68.344 +684780,91.415,67.025 +684781,86.027,70.956 +684782,87.326,69.669 +684783,88.703,68.375 +684784,90.166,67.073 +684785,84.649,70.951 +684786,85.989,69.682 +684787,87.408,68.405 +684788,88.915,67.122 +684789,83.273,70.946 +684790,84.653,69.695 +684791,86.113,68.437 +684792,87.663,67.173 +684793,81.898,70.94 +684794,83.317,69.707 +684795,84.817,68.468 +684796,86.409,67.224 +684797,80.524,70.932 +684798,81.981,69.72 +684799,83.521,68.5 +684800,85.155,67.276 +684801,79.151,70.924 +684802,80.645,69.731 +684803,82.225,68.533 +684804,83.899,67.329 +684805,77.779,70.915 +684806,79.31,69.743 +684807,80.928,68.565 +684808,82.642,67.383 +684809,76.409,70.904 +684810,77.976,69.754 +684811,79.631,68.598 +684812,81.384,67.438 +684813,75.039,70.893 +684814,76.641,69.765 +684815,78.333,68.631 +684816,80.124,67.495 +684817,73.671,70.881 +684818,75.308,69.775 +684819,77.035,68.665 +684820,78.863,67.551 +684821,72.305,70.868 +684822,73.974,69.785 +684823,75.736,68.698 +684824,77.601,67.609 +684825,70.939,70.854 +684826,72.641,69.795 +684827,74.437,68.733 +684828,76.337,67.668 +684829,69.575,70.84 +684830,71.309,69.805 +684831,73.137,68.767 +684832,75.072,67.727 +684833,68.212,70.824 +684834,69.977,69.814 +684835,71.837,68.801 +684836,73.805,67.788 +684837,66.85,70.808 +684838,68.645,69.823 +684839,70.536,68.836 +684840,72.536,67.849 +684841,65.49,70.791 +684842,67.314,69.832 +684843,69.235,68.872 +684844,71.266,67.911 +684845,64.131,70.773 +684846,65.983,69.841 +684847,67.933,68.907 +684848,69.995,67.974 +684849,62.774,70.754 +684850,64.653,69.849 +684851,66.631,68.943 +684852,68.722,68.037 +684853,61.418,70.735 +684854,63.323,69.857 +684855,65.328,68.978 +684856,67.447,68.101 +684857,60.064,70.715 +684858,61.994,69.865 +684859,64.025,69.015 +684860,66.17,68.166 +684861,58.711,70.694 +684862,60.665,69.872 +684863,62.721,69.051 +684864,64.892,68.232 +684865,57.359,70.672 +684866,59.337,69.88 +684867,61.417,69.087 +684868,63.612,68.298 +684869,56.009,70.65 +684870,58.009,69.887 +684871,60.112,69.124 +684872,62.331,68.364 +684873,54.661,70.628 +684874,56.682,69.894 +684875,58.806,69.161 +684876,61.048,68.432 +684877,53.314,70.604 +684878,55.355,69.9 +684879,57.5,69.198 +684880,59.763,68.5 +684881,51.969,70.58 +684882,54.029,69.907 +684883,56.193,69.236 +684884,58.476,68.568 +684885,50.625,70.556 +684886,52.703,69.913 +684887,54.886,69.273 +684888,57.187,68.637 +684889,49.283,70.531 +684890,51.378,69.919 +684891,53.578,69.311 +684892,55.897,68.707 +684893,47.942,70.506 +684894,50.054,69.925 +684895,52.27,69.348 +684896,54.605,68.777 +684897,46.603,70.48 +684898,48.73,69.931 +684899,50.961,69.386 +684900,53.311,68.847 +684901,45.265,70.453 +684902,47.406,69.937 +684903,49.651,69.424 +684904,52.015,68.918 +684905,43.93,70.426 +684906,46.083,69.942 +684907,48.341,69.463 +684908,50.718,68.989 +684909,42.595,70.399 +684910,44.761,69.948 +684911,47.03,69.501 +684912,49.418,69.06 +684913,41.263,70.372 +684914,43.439,69.953 +684915,45.719,69.539 +684916,48.117,69.132 +684917,39.932,70.344 +684918,42.118,69.958 +684919,44.407,69.578 +684920,46.814,69.205 +684921,38.603,70.315 +684922,40.797,69.963 +684923,43.094,69.617 +684924,45.509,69.277 +684925,37.275,70.287 +684926,39.477,69.968 +684927,41.781,69.655 +684928,44.202,69.35 +684929,35.949,70.258 +684930,38.157,69.973 +684931,40.467,69.694 +684932,42.893,69.423 +684933,34.625,70.229 +684934,36.838,69.978 +684935,39.152,69.733 +684936,41.583,69.496 +684937,33.303,70.2 +684938,35.52,69.983 +684939,37.837,69.772 +684940,40.27,69.569 +684941,31.982,70.17 +684942,34.202,69.987 +684943,36.522,69.811 +684944,38.956,69.642 +684945,30.662,70.141 +684946,32.885,69.992 +684947,35.205,69.85 +684948,37.64,69.716 +684949,29.345,70.111 +684950,31.568,69.997 +684951,33.888,69.889 +684952,36.322,69.789 +684953,28.029,70.081 +684954,30.252,70.001 +684955,32.571,69.928 +684956,35.002,69.863 +684957,26.715,70.051 +684958,28.936,70.006 +684959,31.252,69.967 +684960,33.68,69.937 +684961,25.402,70.021 +684962,27.621,70.01 +684963,29.934,70.006 +684964,32.356,70.01 +684965,24.092,69.991 +684966,26.306,70.015 +684967,28.614,70.045 +684968,31.031,70.084 +684969,22.783,69.962 +684970,24.992,70.019 +684971,27.294,70.084 +684972,29.703,70.157 +684973,21.475,69.932 +684974,23.679,70.024 +684975,25.974,70.123 +684976,28.374,70.231 +684977,20.169,69.902 +684978,22.366,70.028 +684979,24.652,70.162 +684980,27.043,70.304 +684981,18.865,69.872 +684982,21.054,70.033 +684983,23.331,70.201 +684984,25.71,70.378 +684985,17.563,69.842 +684986,19.742,70.038 +684987,22.008,70.24 +684988,24.376,70.451 +684989,16.262,69.813 +684990,18.431,70.042 +684991,20.685,70.279 +684992,23.039,70.523 +684993,14.963,69.784 +684994,17.12,70.047 +684995,19.362,70.318 +684996,21.701,70.596 +684997,13.666,69.755 +684998,15.81,70.052 +684999,18.037,70.356 +685000,20.361,70.668 +685001,12.37,69.726 +685002,14.501,70.057 +685003,16.713,70.395 +685004,19.019,70.741 +685005,11.076,69.697 +685006,13.192,70.062 +685007,15.387,70.434 +685008,17.676,70.812 +685009,9.7833,69.669 +685010,11.883,70.067 +685011,14.061,70.472 +685012,16.331,70.884 +685013,8.4924,69.641 +685014,10.575,70.072 +685015,12.735,70.51 +685016,14.984,70.955 +685017,7.203,69.613 +685018,9.2678,70.077 +685019,11.408,70.548 +685020,13.635,71.026 +685021,5.9153,69.586 +685022,7.9609,70.083 +685023,10.08,70.586 +685024,12.285,71.096 +685025,4.6291,69.559 +685026,6.6546,70.088 +685027,8.752,70.624 +685028,10.933,71.166 +685029,3.3444,69.532 +685030,5.3487,70.094 +685031,7.4233,70.662 +685032,9.5796,71.235 +685033,2.0614,69.506 +685034,4.0433,70.1 +685035,6.094,70.699 +685036,8.2245,71.304 +685037,0.77981,69.481 +685038,2.7385,70.106 +685039,4.7643,70.737 +685040,6.8679,71.373 +685041,359.5,69.456 +685042,1.4341,70.112 +685043,3.4339,70.774 +685044,5.5097,71.44 +685045,358.22,69.431 +685046,0.13025,70.119 +685047,2.1031,70.811 +685048,4.15,71.508 +685049,356.94,69.407 +685050,358.83,70.125 +685051,0.77178,70.848 +685052,2.7889,71.575 +685053,355.67,69.384 +685054,357.52,70.132 +685055,359.44,70.884 +685056,1.4262,71.641 +685057,354.39,69.361 +685058,356.22,70.139 +685059,358.11,70.921 +685060,0.062083,71.706 +685061,353.12,69.339 +685062,354.92,70.146 +685063,356.77,70.957 +685064,358.7,71.771 +685065,351.85,69.317 +685066,353.62,70.153 +685067,355.44,70.993 +685068,357.33,71.835 +685069,350.58,69.297 +685070,352.32,70.161 +685071,354.11,71.029 +685072,355.96,71.899 +685073,349.31,69.276 +685074,351.02,70.169 +685075,352.77,71.064 +685076,354.59,71.962 +685077,348.04,69.257 +685078,349.72,70.177 +685079,351.44,71.1 +685080,353.22,72.024 +685081,346.78,69.238 +685082,348.42,70.185 +685083,350.1,71.135 +685084,351.85,72.085 +685085,345.51,69.22 +685086,347.12,70.194 +685087,348.77,71.169 +685088,350.48,72.145 +685089,344.25,69.203 +685090,345.82,70.203 +685091,347.43,71.204 +685092,349.1,72.205 +685093,342.99,69.187 +685094,344.52,70.212 +685095,346.1,71.238 +685096,347.72,72.264 +685097,341.73,69.171 +685098,343.22,70.221 +685099,344.76,71.272 +685100,346.35,72.322 +685101,340.47,69.157 +685102,341.92,70.231 +685103,343.42,71.305 +685104,344.97,72.379 +685105,339.21,69.143 +685106,340.63,70.241 +685107,342.08,71.339 +685108,343.59,72.435 +685109,337.95,69.13 +685110,339.33,70.251 +685111,340.75,71.372 +685112,342.21,72.491 +685113,336.69,69.118 +685114,338.03,70.262 +685115,339.41,71.405 +685116,340.83,72.545 +685117,335.44,69.107 +685118,336.73,70.273 +685119,338.07,71.437 +685120,339.45,72.599 +685121,334.18,69.097 +685122,335.44,70.284 +685123,336.73,71.469 +685124,338.06,72.652 +685125,332.93,69.088 +685126,334.14,70.295 +685127,335.39,71.501 +685128,336.68,72.703 +685129,331.68,69.08 +685130,332.85,70.307 +685131,334.05,71.532 +685132,335.3,72.754 +685133,330.43,69.073 +685134,331.55,70.319 +685135,332.71,71.564 +685136,333.91,72.804 +685137,329.18,69.066 +685138,330.26,70.332 +685139,331.37,71.594 +685140,332.52,72.852 +685141,327.93,69.061 +685142,328.96,70.345 +685143,330.03,71.625 +685144,331.14,72.9 +685145,326.68,69.057 +685146,327.67,70.358 +685147,328.69,71.655 +685148,329.75,72.947 +685149,325.43,69.054 +685150,326.37,70.371 +685151,327.35,71.685 +685152,328.36,72.992 +685153,324.18,69.052 +685154,325.08,70.385 +685155,326.01,71.714 +685156,326.97,73.037 +685157,322.94,69.052 +685158,323.79,70.4 +685159,324.67,71.743 +685160,325.58,73.08 +685161,321.69,69.052 +685162,322.49,70.414 +685163,323.32,71.772 +685164,324.19,73.123 +685165,320.44,69.053 +685166,321.2,70.429 +685167,321.98,71.8 +685168,322.8,73.164 +685169,319.2,69.056 +685170,319.91,70.445 +685171,320.64,71.828 +685172,321.41,73.204 +685173,317.96,69.059 +685174,318.61,70.46 +685175,319.3,71.856 +685176,320.02,73.244 +685177,316.71,69.064 +685178,317.32,70.476 +685179,317.96,71.883 +685180,318.62,73.282 +685181,315.47,69.07 +685182,316.03,70.493 +685183,316.61,71.91 +685184,317.23,73.318 +685185,314.23,69.077 +685186,314.73,70.51 +685187,315.27,71.936 +685188,315.84,73.354 +685189,312.99,69.086 +685190,313.44,70.527 +685191,313.93,71.962 +685192,314.44,73.389 +685193,311.74,69.095 +685194,312.15,70.545 +685195,312.58,71.988 +685196,313.05,73.422 +685197,310.5,69.106 +685198,310.86,70.563 +685199,311.24,72.013 +685200,311.66,73.455 +685201,309.26,69.117 +685202,309.56,70.581 +685203,309.9,72.038 +685204,310.26,73.486 +685205,308.02,69.131 +685206,308.27,70.6 +685207,308.55,72.062 +685208,308.87,73.516 +685209,306.78,69.145 +685210,306.98,70.619 +685211,307.21,72.086 +685212,307.47,73.545 +685213,305.54,69.16 +685214,305.69,70.639 +685215,305.87,72.11 +685216,306.08,73.572 +685217,304.3,69.177 +685218,304.4,70.659 +685219,304.52,72.133 +685220,304.68,73.599 +685221,303.06,69.195 +685222,303.1,70.679 +685223,303.18,72.156 +685224,303.29,73.624 +685225,301.82,69.214 +685226,301.81,70.7 +685227,301.84,72.179 +685228,301.9,73.648 +685229,300.58,69.234 +685230,300.52,70.721 +685231,300.49,72.201 +685232,300.5,73.671 +685233,299.34,69.256 +685234,299.23,70.743 +685235,299.15,72.223 +685236,299.11,73.693 +685237,298.1,69.278 +685238,297.94,70.765 +685239,297.81,72.244 +685240,297.71,73.714 +685241,296.86,69.302 +685242,296.64,70.788 +685243,296.46,72.265 +685244,296.32,73.733 +685245,295.62,69.328 +685246,295.35,70.81 +685247,295.12,72.285 +685248,294.93,73.751 +685249,294.38,69.354 +685250,294.06,70.834 +685251,293.78,72.306 +685252,293.53,73.769 +685253,293.14,69.382 +685254,292.77,70.857 +685255,292.43,72.325 +685256,292.14,73.784 +685257,291.9,69.411 +685258,291.47,70.881 +685259,291.09,72.345 +685260,290.75,73.799 +685261,290.66,69.441 +685262,290.18,70.906 +685263,289.75,72.364 +685264,289.35,73.813 +685265,289.42,69.472 +685266,288.89,70.931 +685267,288.4,72.382 +685268,287.96,73.825 +685269,288.17,69.504 +685270,287.6,70.956 +685271,287.06,72.4 +685272,286.57,73.837 +685273,286.93,69.538 +685274,286.3,70.981 +685275,285.72,72.418 +685276,285.18,73.847 +685277,285.69,69.573 +685278,285.01,71.007 +685279,284.38,72.436 +685280,283.79,73.856 +685281,284.45,69.609 +685282,283.72,71.034 +685283,283.03,72.453 +685284,282.4,73.864 +685285,283.2,69.646 +685286,282.42,71.061 +685287,281.69,72.469 +685288,281.01,73.87 +685289,281.96,69.684 +685290,281.13,71.088 +685291,280.35,72.486 +685292,279.62,73.876 +685293,280.71,69.724 +685294,279.83,71.115 +685295,279.01,72.501 +685296,278.23,73.881 +685297,279.47,69.764 +685298,278.54,71.143 +685299,277.67,72.517 +685300,276.84,73.884 +685301,278.22,69.806 +685302,277.24,71.171 +685303,276.32,72.532 +685304,275.46,73.886 +685305,276.97,69.849 +685306,275.95,71.2 +685307,274.98,72.547 +685308,274.07,73.887 +685309,275.73,69.893 +685310,274.65,71.229 +685311,273.64,72.561 +685312,272.68,73.888 +685313,274.48,69.938 +685314,273.36,71.259 +685315,272.3,72.575 +685316,271.3,73.887 +685317,273.23,69.984 +685318,272.06,71.288 +685319,270.96,72.589 +685320,269.92,73.885 +685321,271.98,70.031 +685322,270.77,71.318 +685323,269.62,72.603 +685324,268.53,73.882 +685325,270.73,70.079 +685326,269.47,71.349 +685327,268.28,72.616 +685328,267.15,73.878 +685329,269.47,70.129 +685330,268.17,71.38 +685331,266.94,72.628 +685332,265.77,73.873 +685333,268.22,70.179 +685334,266.88,71.411 +685335,265.6,72.641 +685336,264.39,73.867 +685337,266.97,70.23 +685338,265.58,71.442 +685339,264.26,72.653 +685340,263.01,73.86 +685341,265.71,70.283 +685342,264.28,71.474 +685343,262.92,72.664 +685344,261.63,73.852 +685345,264.46,70.336 +685346,262.98,71.506 +685347,261.59,72.676 +685348,260.26,73.843 +685349,263.2,70.39 +685350,261.69,71.538 +685351,260.25,72.687 +685352,258.88,73.833 +685353,261.94,70.445 +685354,260.39,71.571 +685355,258.91,72.698 +685356,257.5,73.822 +685357,260.68,70.501 +685358,259.09,71.604 +685359,257.57,72.708 +685360,256.13,73.811 +685361,259.42,70.558 +685362,257.79,71.638 +685363,256.24,72.718 +685364,254.76,73.798 +685365,258.16,70.616 +685366,256.49,71.671 +685367,254.9,72.728 +685368,253.39,73.785 +685369,256.89,70.675 +685370,255.19,71.705 +685371,253.56,72.738 +685372,252.02,73.77 +685373,255.63,70.735 +685374,253.89,71.739 +685375,252.23,72.747 +685376,250.65,73.755 +685377,254.36,70.795 +685378,252.59,71.774 +685379,250.89,72.756 +685380,249.28,73.739 +685381,253.09,70.856 +685382,251.28,71.809 +685383,249.56,72.765 +685384,247.91,73.723 +685385,251.83,70.918 +685386,249.98,71.844 +685387,248.22,72.773 +685388,246.55,73.705 +685389,250.55,70.981 +685390,248.68,71.879 +685391,246.89,72.782 +685392,245.18,73.687 +685393,249.28,71.044 +685394,247.37,71.914 +685395,245.56,72.79 +685396,243.82,73.668 +685397,248.01,71.108 +685398,246.07,71.95 +685399,244.22,72.797 +685400,242.46,73.648 +685401,246.73,71.173 +685402,244.77,71.986 +685403,242.89,72.805 +685404,241.1,73.628 +685405,245.46,71.239 +685406,243.46,72.022 +685407,241.56,72.812 +685408,239.74,73.607 +685409,244.18,71.305 +685410,242.16,72.059 +685411,240.23,72.819 +685412,238.38,73.585 +685413,242.9,71.372 +685414,240.85,72.095 +685415,238.9,72.826 +685416,237.03,73.563 +685417,241.62,71.439 +685418,239.54,72.132 +685419,237.56,72.833 +685420,235.67,73.54 +685421,240.34,71.507 +685422,238.24,72.169 +685423,236.23,72.84 +685424,234.32,73.517 +685425,239.05,71.575 +685426,236.93,72.206 +685427,234.9,72.846 +685428,232.97,73.493 +685429,237.77,71.644 +685430,235.62,72.244 +685431,233.58,72.852 +685432,231.62,73.468 +685433,236.48,71.713 +685434,234.31,72.281 +685435,232.25,72.858 +685436,230.27,73.443 +685437,235.19,71.783 +685438,233,72.319 +685439,230.92,72.864 +685440,228.92,73.418 +685441,233.9,71.854 +685442,231.69,72.357 +685443,229.59,72.87 +685444,227.58,73.392 +685445,232.61,71.924 +685446,230.38,72.394 +685447,228.26,72.875 +685448,226.23,73.365 +685449,231.31,71.995 +685450,229.07,72.433 +685451,226.94,72.881 +685452,224.89,73.338 +685453,230.02,72.067 +685454,227.76,72.471 +685455,225.61,72.886 +685456,223.55,73.311 +685457,228.72,72.138 +685458,226.45,72.509 +685459,224.28,72.892 +685460,222.21,73.284 +685461,227.42,72.21 +685462,225.14,72.547 +685463,222.96,72.897 +685464,220.87,73.256 +685465,226.12,72.283 +685466,223.82,72.586 +685467,221.64,72.902 +685468,219.54,73.228 +685469,224.81,72.355 +685470,222.51,72.625 +685471,220.31,72.907 +685472,218.2,73.199 +685473,223.51,72.428 +685474,221.2,72.663 +685475,218.99,72.912 +685476,216.87,73.171 +685477,222.2,72.501 +685478,219.88,72.702 +685479,217.66,72.916 +685480,215.54,73.142 +685481,220.89,72.574 +685482,218.57,72.741 +685483,216.34,72.921 +685484,214.21,73.113 +685485,219.58,72.647 +685486,217.25,72.78 +685487,215.02,72.926 +685488,212.88,73.083 +685489,218.27,72.72 +685490,215.93,72.819 +685491,213.7,72.93 +685492,211.55,73.054 +685493,216.96,72.794 +685494,214.62,72.858 +685495,212.38,72.935 +685496,210.23,73.025 +685497,215.64,72.867 +685498,213.3,72.896 +685499,211.06,72.94 +685500,208.9,72.995 +685501,214.32,72.941 +685502,211.98,72.935 +685503,209.74,72.944 +685504,207.58,72.965 +685505,213,73.014 +685506,210.66,72.974 +685507,208.42,72.949 +685508,206.26,72.936 +685509,211.68,73.087 +685510,209.34,73.013 +685511,207.1,72.953 +685512,204.94,72.906 +685513,210.36,73.161 +685514,208.02,73.052 +685515,205.78,72.958 +685516,203.63,72.876 +685517,209.04,73.234 +685518,206.7,73.091 +685519,204.46,72.963 +685520,202.31,72.847 +685521,207.71,73.307 +685522,205.38,73.13 +685523,203.15,72.967 +685524,201,72.817 +685525,206.38,73.38 +685526,204.06,73.169 +685527,201.83,72.972 +685528,199.69,72.788 +685529,205.05,73.453 +685530,202.73,73.208 +685531,200.51,72.977 +685532,198.38,72.759 +685533,203.72,73.525 +685534,201.41,73.246 +685535,199.2,72.982 +685536,197.07,72.73 +685537,202.39,73.598 +685538,200.09,73.285 +685539,197.88,72.987 +685540,195.76,72.701 +685541,201.05,73.67 +685542,198.76,73.324 +685543,196.57,72.992 +685544,194.46,72.672 +685545,199.71,73.742 +685546,197.44,73.362 +685547,195.26,72.997 +685548,193.15,72.644 +685549,198.37,73.813 +685550,196.11,73.401 +685551,193.94,73.002 +685552,191.85,72.616 +685553,197.03,73.884 +685554,194.79,73.439 +685555,192.63,73.007 +685556,190.55,72.588 +685557,195.69,73.955 +685558,193.46,73.477 +685559,191.32,73.012 +685560,189.25,72.56 +685561,194.35,74.025 +685562,192.13,73.515 +685563,190.01,73.018 +685564,187.95,72.533 +685565,193,74.095 +685566,190.81,73.553 +685567,188.7,73.024 +685568,186.66,72.506 +685569,191.65,74.165 +685570,189.48,73.591 +685571,187.38,73.029 +685572,185.37,72.48 +685573,190.31,74.234 +685574,188.15,73.628 +685575,186.07,73.035 +685576,184.07,72.454 +685577,188.96,74.302 +685578,186.82,73.666 +685579,184.76,73.041 +685580,182.78,72.429 +685581,187.6,74.37 +685582,185.49,73.703 +685583,183.46,73.048 +685584,181.49,72.404 +685585,186.25,74.438 +685586,184.16,73.74 +685587,182.15,73.054 +685588,180.2,72.379 +685589,184.89,74.505 +685590,182.83,73.777 +685591,180.84,73.061 +685592,178.92,72.355 +685593,183.54,74.571 +685594,181.5,73.814 +685595,179.53,73.068 +685596,177.63,72.332 +685597,182.18,74.637 +685598,180.16,73.851 +685599,178.22,73.075 +685600,176.35,72.309 +685601,180.82,74.702 +685602,178.83,73.887 +685603,176.92,73.082 +685604,175.07,72.287 +685605,179.46,74.767 +685606,177.5,73.923 +685607,175.61,73.089 +685608,173.78,72.265 +685609,178.1,74.83 +685610,176.16,73.959 +685611,174.3,73.097 +685612,172.51,72.244 +685613,176.73,74.893 +685614,174.83,73.995 +685615,173,73.105 +685616,171.23,72.224 +685617,175.37,74.956 +685618,173.5,74.03 +685619,171.69,73.113 +685620,169.95,72.205 +685621,174,75.017 +685622,172.16,74.065 +685623,170.39,73.122 +685624,168.67,72.186 +685625,172.63,75.078 +685626,170.83,74.1 +685627,169.09,73.13 +685628,167.4,72.168 +685629,171.26,75.138 +685630,169.49,74.135 +685631,167.78,73.139 +685632,166.13,72.151 +685633,169.89,75.198 +685634,168.15,74.169 +685635,166.48,73.148 +685636,164.86,72.134 +685637,168.52,75.256 +685638,166.82,74.204 +685639,165.18,73.158 +685640,163.59,72.119 +685641,167.15,75.314 +685642,165.48,74.238 +685643,163.87,73.168 +685644,162.32,72.104 +685645,165.77,75.37 +685646,164.14,74.271 +685647,162.57,73.178 +685648,161.05,72.09 +685649,164.4,75.426 +685650,162.8,74.304 +685651,161.27,73.188 +685652,159.78,72.077 +685653,163.02,75.481 +685654,161.47,74.337 +685655,159.97,73.199 +685656,158.52,72.065 +685657,161.64,75.535 +685658,160.13,74.37 +685659,158.67,73.21 +685660,157.25,72.054 +685661,160.26,75.588 +685662,158.79,74.403 +685663,157.37,73.221 +685664,155.99,72.043 +685665,158.88,75.64 +685666,157.45,74.435 +685667,156.07,73.232 +685668,154.73,72.034 +685669,157.5,75.692 +685670,156.11,74.467 +685671,154.77,73.244 +685672,153.47,72.026 +685673,156.12,75.742 +685674,154.77,74.498 +685675,153.47,73.257 +685676,152.21,72.018 +685677,154.74,75.791 +685678,153.43,74.529 +685679,152.17,73.269 +685680,150.95,72.012 +685681,153.35,75.839 +685682,152.09,74.56 +685683,150.87,73.282 +685684,149.69,72.007 +685685,151.97,75.887 +685686,150.75,74.59 +685687,149.57,73.295 +685688,148.43,72.002 +685689,150.58,75.933 +685690,149.4,74.62 +685691,148.27,73.309 +685692,147.17,71.999 +685693,149.2,75.978 +685694,148.06,74.65 +685695,146.97,73.323 +685696,145.92,71.997 +685697,147.81,76.022 +685698,146.72,74.68 +685699,145.67,73.337 +685700,144.66,71.996 +685701,146.42,76.065 +685702,145.38,74.709 +685703,144.38,73.352 +685704,143.41,71.996 +685705,145.03,76.107 +685706,144.04,74.737 +685707,143.08,73.367 +685708,142.16,71.997 +685709,143.64,76.148 +685710,142.69,74.766 +685711,141.78,73.383 +685712,140.9,71.999 +685713,142.25,76.187 +685714,141.35,74.794 +685715,140.48,73.398 +685716,139.65,72.003 +685717,140.86,76.226 +685718,140.01,74.821 +685719,139.19,73.415 +685720,138.4,72.007 +685721,139.47,76.264 +685722,138.66,74.849 +685723,137.89,73.431 +685724,137.15,72.013 +685725,138.08,76.3 +685726,137.32,74.875 +685727,136.59,73.448 +685728,135.9,72.02 +685729,136.69,76.335 +685730,135.98,74.902 +685731,135.3,73.466 +685732,134.65,72.028 +685733,135.3,76.369 +685734,134.63,74.928 +685735,134,73.483 +685736,133.4,72.037 +685737,133.9,76.402 +685738,133.29,74.954 +685739,132.71,73.502 +685740,132.15,72.047 +685741,132.51,76.434 +685742,131.94,74.979 +685743,131.41,73.52 +685744,130.91,72.059 +685745,131.12,76.465 +685746,130.6,75.004 +685747,130.11,73.539 +685748,129.66,72.072 +685749,129.72,76.495 +685750,129.25,75.029 +685751,128.82,73.558 +685752,128.41,72.085 +685753,128.33,76.523 +685754,127.91,75.053 +685755,127.52,73.578 +685756,127.17,72.101 +685757,126.94,76.55 +685758,126.56,75.077 +685759,126.23,73.598 +685760,125.92,72.117 +685761,125.54,76.576 +685762,125.22,75.1 +685763,124.93,73.619 +685764,124.67,72.135 +685765,124.15,76.601 +685766,123.87,75.123 +685767,123.63,73.64 +685768,123.43,72.153 +685769,122.75,76.625 +685770,122.53,75.146 +685771,122.34,73.661 +685772,122.18,72.174 +685773,121.36,76.647 +685774,121.18,75.168 +685775,121.04,73.683 +685776,120.93,72.195 +685777,119.96,76.669 +685778,119.84,75.19 +685779,119.75,73.705 +685780,119.69,72.217 +685781,118.57,76.689 +685782,118.49,75.211 +685783,118.45,73.728 +685784,118.44,72.241 +685785,117.17,76.708 +685786,117.15,75.232 +685787,117.16,73.751 +685788,117.2,72.266 +685789,115.78,76.726 +685790,115.8,75.253 +685791,115.86,73.774 +685792,115.95,72.292 +685793,114.38,76.742 +685794,114.46,75.273 +685795,114.57,73.798 +685796,114.71,72.32 +685797,112.99,76.758 +685798,113.11,75.293 +685799,113.27,73.822 +685800,113.46,72.348 +685801,111.6,76.772 +685802,111.77,75.312 +685803,111.97,73.847 +685804,112.22,72.378 +685805,110.2,76.785 +685806,110.42,75.331 +685807,110.68,73.872 +685808,110.97,72.409 +685809,108.81,76.798 +685810,109.08,75.35 +685811,109.38,73.898 +685812,109.72,72.441 +685813,107.42,76.808 +685814,107.73,75.368 +685815,108.09,73.923 +685816,108.48,72.475 +685817,106.02,76.818 +685818,106.39,75.386 +685819,106.79,73.95 +685820,107.23,72.509 +685821,104.63,76.827 +685822,105.04,75.404 +685823,105.49,73.976 +685824,105.98,72.545 +685825,103.24,76.834 +685826,103.7,75.421 +685827,104.2,74.003 +685828,104.74,72.582 +685829,101.85,76.841 +685830,102.36,75.438 +685831,102.9,74.031 +685832,103.49,72.62 +685833,100.46,76.846 +685834,101.01,75.454 +685835,101.61,74.058 +685836,102.24,72.66 +685837,99.065,76.85 +685838,99.667,75.47 +685839,100.31,74.087 +685840,100.99,72.7 +685841,97.675,76.853 +685842,98.323,75.486 +685843,99.011,74.115 +685844,99.742,72.742 +685845,96.286,76.855 +685846,96.979,75.502 +685847,97.714,74.144 +685848,98.492,72.785 +685849,94.897,76.856 +685850,95.636,75.517 +685851,96.417,74.173 +685852,97.242,72.829 +685853,93.508,76.856 +685854,94.292,75.531 +685855,95.119,74.203 +685856,95.991,72.874 +685857,92.121,76.855 +685858,92.949,75.545 +685859,93.821,74.233 +685860,94.739,72.92 +685861,90.734,76.853 +685862,91.606,75.559 +685863,92.523,74.264 +685864,93.487,72.967 +685865,89.348,76.849 +685866,90.263,75.573 +685867,91.224,74.294 +685868,92.234,73.016 +685869,87.962,76.845 +685870,88.921,75.586 +685871,89.926,74.326 +685872,90.98,73.065 +685873,86.578,76.84 +685874,87.578,75.599 +685875,88.627,74.357 +685876,89.726,73.115 +685877,85.194,76.833 +685878,86.236,75.612 +685879,87.327,74.389 +685880,88.47,73.167 +685881,83.811,76.826 +685882,84.895,75.624 +685883,86.028,74.421 +685884,87.214,73.219 +685885,82.429,76.818 +685886,83.553,75.636 +685887,84.728,74.453 +685888,85.957,73.273 +685889,81.048,76.809 +685890,82.212,75.648 +685891,83.427,74.486 +685892,84.698,73.327 +685893,79.668,76.799 +685894,80.871,75.659 +685895,82.127,74.519 +685896,83.439,73.382 +685897,78.289,76.788 +685898,79.53,75.67 +685899,80.826,74.553 +685900,82.179,73.439 +685901,76.911,76.776 +685902,78.19,75.681 +685903,79.525,74.587 +685904,80.918,73.496 +685905,75.534,76.763 +685906,76.85,75.691 +685907,78.223,74.621 +685908,79.656,73.554 +685909,74.158,76.75 +685910,75.511,75.701 +685911,76.921,74.655 +685912,78.392,73.613 +685913,72.783,76.735 +685914,74.171,75.711 +685915,75.618,74.69 +685916,77.128,73.673 +685917,71.409,76.72 +685918,72.832,75.721 +685919,74.315,74.725 +685920,75.862,73.734 +685921,70.036,76.704 +685922,71.494,75.73 +685923,73.012,74.76 +685924,74.595,73.796 +685925,68.664,76.687 +685926,70.156,75.739 +685927,71.708,74.795 +685928,73.327,73.858 +685929,67.294,76.67 +685930,68.818,75.748 +685931,70.404,74.831 +685932,72.058,73.921 +685933,65.925,76.651 +685934,67.481,75.757 +685935,69.1,74.867 +685936,70.787,73.985 +685937,64.557,76.632 +685938,66.144,75.765 +685939,67.795,74.903 +685940,69.516,74.05 +685941,63.19,76.612 +685942,64.807,75.773 +685943,66.489,74.94 +685944,68.242,74.115 +685945,61.824,76.592 +685946,63.471,75.781 +685947,65.183,74.977 +685948,66.968,74.181 +685949,60.46,76.571 +685950,62.135,75.789 +685951,63.877,75.013 +685952,65.692,74.248 +685953,59.097,76.549 +685954,60.8,75.796 +685955,62.57,75.051 +685956,64.415,74.315 +685957,57.736,76.527 +685958,59.465,75.803 +685959,61.263,75.088 +685960,63.136,74.383 +685961,56.375,76.504 +685962,58.13,75.811 +685963,59.955,75.126 +685964,61.856,74.452 +685965,55.017,76.481 +685966,56.796,75.817 +685967,58.647,75.163 +685968,60.574,74.521 +685969,53.659,76.457 +685970,55.463,75.824 +685971,57.338,75.201 +685972,59.291,74.591 +685973,52.303,76.432 +685974,54.13,75.831 +685975,56.028,75.239 +685976,58.006,74.661 +685977,50.948,76.407 +685978,52.797,75.837 +685979,54.719,75.278 +685980,56.72,74.731 +685981,49.595,76.382 +685982,51.465,75.843 +685983,53.408,75.316 +685984,55.432,74.802 +685985,48.243,76.356 +685986,50.133,75.85 +685987,52.097,75.355 +685988,54.143,74.874 +685989,46.893,76.329 +685990,48.802,75.856 +685991,50.786,75.394 +685992,52.852,74.946 +685993,45.544,76.303 +685994,47.471,75.861 +685995,49.474,75.432 +685996,51.56,75.018 +685997,44.196,76.276 +685998,46.141,75.867 +685999,48.161,75.471 +686000,50.266,75.091 +686001,42.85,76.248 +686002,44.811,75.873 +686003,46.848,75.511 +686004,48.97,75.164 +686005,41.506,76.221 +686006,43.482,75.878 +686007,45.535,75.55 +686008,47.673,75.237 +686009,40.163,76.192 +686010,42.153,75.884 +686011,44.221,75.589 +686012,46.374,75.311 +686013,38.821,76.164 +686014,40.825,75.889 +686015,42.906,75.629 +686016,45.073,75.385 +686017,37.482,76.136 +686018,39.497,75.895 +686019,41.591,75.668 +686020,43.771,75.459 +686021,36.143,76.107 +686022,38.17,75.9 +686023,40.275,75.708 +686024,42.467,75.533 +686025,34.806,76.078 +686026,36.844,75.905 +686027,38.958,75.747 +686028,41.161,75.607 +686029,33.471,76.049 +686030,35.517,75.91 +686031,37.641,75.787 +686032,39.854,75.682 +686033,32.137,76.02 +686034,34.192,75.915 +686035,36.324,75.827 +686036,38.544,75.756 +686037,30.805,75.991 +686038,32.866,75.92 +686039,35.006,75.866 +686040,37.234,75.831 +686041,29.475,75.961 +686042,31.542,75.926 +686043,33.687,75.906 +686044,35.921,75.906 +686045,28.146,75.932 +686046,30.218,75.931 +686047,32.368,75.946 +686048,34.607,75.98 +686049,26.818,75.903 +686050,28.894,75.936 +686051,31.048,75.986 +686052,33.291,76.055 +686053,25.492,75.873 +686054,27.571,75.941 +686055,29.728,76.025 +686056,31.973,76.13 +686057,24.168,75.844 +686058,26.248,75.946 +686059,28.407,76.065 +686060,30.654,76.204 +686061,22.845,75.815 +686062,24.926,75.951 +686063,27.085,76.105 +686064,29.333,76.279 +686065,21.524,75.785 +686066,23.605,75.956 +686067,25.763,76.145 +686068,28.01,76.353 +686069,20.204,75.756 +686070,22.284,75.962 +686071,24.44,76.184 +686072,26.685,76.427 +686073,18.886,75.728 +686074,20.963,75.967 +686075,23.117,76.224 +686076,25.359,76.501 +686077,17.57,75.699 +686078,19.643,75.972 +686079,21.793,76.264 +686080,24.031,76.575 +686081,16.255,75.67 +686082,18.324,75.978 +686083,20.469,76.303 +686084,22.701,76.648 +686085,14.942,75.642 +686086,17.005,75.983 +686087,19.144,76.342 +686088,21.369,76.722 +686089,13.63,75.614 +686090,15.687,75.989 +686091,17.818,76.382 +686092,20.036,76.795 +686093,12.32,75.586 +686094,14.369,75.995 +686095,16.492,76.421 +686096,18.701,76.867 +686097,11.011,75.559 +686098,13.051,76 +686099,15.165,76.46 +686100,17.365,76.94 +686101,9.7043,75.532 +686102,11.734,76.006 +686103,13.838,76.499 +686104,16.027,77.012 +686105,8.3987,75.505 +686106,10.418,76.012 +686107,12.51,76.538 +686108,14.687,77.083 +686109,7.0947,75.479 +686110,9.102,76.019 +686111,11.182,76.577 +686112,13.345,77.154 +686113,5.7922,75.453 +686114,7.7866,76.025 +686115,9.8526,76.615 +686116,12.002,77.225 +686117,4.4912,75.427 +686118,6.4717,76.032 +686119,8.5232,76.654 +686120,10.657,77.295 +686121,3.1917,75.402 +686122,5.1573,76.038 +686123,7.1931,76.692 +686124,9.3105,77.365 +686125,1.8937,75.378 +686126,3.8434,76.045 +686127,5.8625,76.73 +686128,7.9625,77.434 +686129,0.59717,75.354 +686130,2.53,76.052 +686131,4.5314,76.768 +686132,6.6128,77.503 +686133,359.3,75.33 +686134,1.217,76.06 +686135,3.1998,76.806 +686136,5.2616,77.571 +686137,358.01,75.308 +686138,359.9,76.067 +686139,1.8676,76.844 +686140,3.9088,77.638 +686141,356.72,75.285 +686142,358.59,76.075 +686143,0.53491,76.881 +686144,2.5545,77.705 +686145,355.43,75.264 +686146,357.28,76.083 +686147,359.2,76.918 +686148,1.1986,77.771 +686149,354.14,75.243 +686150,355.97,76.091 +686151,357.87,76.955 +686152,359.84,77.837 +686153,352.85,75.222 +686154,354.66,76.099 +686155,356.53,76.992 +686156,358.48,77.901 +686157,351.56,75.203 +686158,353.35,76.108 +686159,355.2,77.028 +686160,357.12,77.965 +686161,350.28,75.184 +686162,352.04,76.117 +686163,353.86,77.065 +686164,355.76,78.029 +686165,348.99,75.166 +686166,350.73,76.126 +686167,352.53,77.101 +686168,354.4,78.091 +686169,347.71,75.148 +686170,349.42,76.135 +686171,351.19,77.136 +686172,353.03,78.153 +686173,346.43,75.132 +686174,348.11,76.145 +686175,349.86,77.172 +686176,351.67,78.214 +686177,345.15,75.116 +686178,346.8,76.155 +686179,348.52,77.207 +686180,350.3,78.274 +686181,343.87,75.101 +686182,345.5,76.165 +686183,347.18,77.242 +686184,348.93,78.334 +686185,342.59,75.087 +686186,344.19,76.175 +686187,345.84,77.277 +686188,347.56,78.392 +686189,341.32,75.074 +686190,342.88,76.186 +686191,344.5,77.311 +686192,346.19,78.45 +686193,340.04,75.061 +686194,341.58,76.197 +686195,343.17,77.345 +686196,344.82,78.506 +686197,338.77,75.05 +686198,340.27,76.209 +686199,341.83,77.379 +686200,343.44,78.562 +686201,337.49,75.04 +686202,338.96,76.22 +686203,340.49,77.413 +686204,342.07,78.617 +686205,336.22,75.03 +686206,337.66,76.232 +686207,339.15,77.446 +686208,340.69,78.671 +686209,334.95,75.021 +686210,336.35,76.245 +686211,337.81,77.479 +686212,339.32,78.724 +686213,333.68,75.014 +686214,335.05,76.257 +686215,336.47,77.511 +686216,337.94,78.776 +686217,332.41,75.007 +686218,333.74,76.27 +686219,335.12,77.544 +686220,336.56,78.827 +686221,331.15,75.002 +686222,332.44,76.284 +686223,333.78,77.575 +686224,335.18,78.877 +686225,329.88,74.997 +686226,331.14,76.298 +686227,332.44,77.607 +686228,333.8,78.926 +686229,328.61,74.994 +686230,329.83,76.312 +686231,331.1,77.638 +686232,332.42,78.974 +686233,327.35,74.991 +686234,328.53,76.326 +686235,329.76,77.669 +686236,331.03,79.02 +686237,326.08,74.99 +686238,327.23,76.341 +686239,328.41,77.7 +686240,329.65,79.066 +686241,324.82,74.99 +686242,325.92,76.356 +686243,327.07,77.73 +686244,328.26,79.111 +686245,323.56,74.991 +686246,324.62,76.372 +686247,325.73,77.76 +686248,326.88,79.154 +686249,322.3,74.993 +686250,323.32,76.388 +686251,324.38,77.789 +686252,325.49,79.197 +686253,321.04,74.996 +686254,322.02,76.404 +686255,323.04,77.818 +686256,324.1,79.238 +686257,319.78,75 +686258,320.72,76.421 +686259,321.69,77.847 +686260,322.72,79.279 +686261,318.52,75.005 +686262,319.41,76.438 +686263,320.35,77.875 +686264,321.33,79.318 +686265,317.26,75.012 +686266,318.11,76.455 +686267,319,77.903 +686268,319.94,79.356 +686269,316,75.02 +686270,316.81,76.473 +686271,317.66,77.931 +686272,318.55,79.393 +686273,314.75,75.029 +686274,315.51,76.491 +686275,316.31,77.958 +686276,317.16,79.429 +686277,313.49,75.039 +686278,314.21,76.51 +686279,314.97,77.985 +686280,315.77,79.463 +686281,312.23,75.05 +686282,312.91,76.529 +686283,313.62,78.011 +686284,314.38,79.497 +686285,310.98,75.063 +686286,311.61,76.548 +686287,312.28,78.037 +686288,312.98,79.529 +686289,309.72,75.077 +686290,310.31,76.568 +686291,310.93,78.063 +686292,311.59,79.56 +686293,308.47,75.092 +686294,309.01,76.589 +686295,309.58,78.088 +686296,310.2,79.59 +686297,307.21,75.108 +686298,307.71,76.609 +686299,308.24,78.113 +686300,308.8,79.619 +686301,305.96,75.125 +686302,306.41,76.63 +686303,306.89,78.138 +686304,307.41,79.646 +686305,304.71,75.144 +686306,305.11,76.652 +686307,305.54,78.162 +686308,306.02,79.672 +686309,303.45,75.164 +686310,303.81,76.674 +686311,304.2,78.185 +686312,304.62,79.698 +686313,302.2,75.185 +686314,302.51,76.696 +686315,302.85,78.209 +686316,303.23,79.722 +686317,300.95,75.208 +686318,301.21,76.719 +686319,301.5,78.232 +686320,301.83,79.744 +686321,299.7,75.231 +686322,299.91,76.742 +686323,300.16,78.254 +686324,300.44,79.766 +686325,298.44,75.256 +686326,298.61,76.766 +686327,298.81,78.276 +686328,299.04,79.787 +686329,297.19,75.282 +686330,297.31,76.79 +686331,297.46,78.298 +686332,297.65,79.806 +686333,295.94,75.31 +686334,296.01,76.814 +686335,296.12,78.319 +686336,296.25,79.824 +686337,294.69,75.338 +686338,294.71,76.839 +686339,294.77,78.34 +686340,294.86,79.841 +686341,293.44,75.368 +686342,293.41,76.864 +686343,293.42,78.361 +686344,293.46,79.856 +686345,292.18,75.399 +686346,292.11,76.89 +686347,292.07,78.381 +686348,292.07,79.871 +686349,290.93,75.432 +686350,290.81,76.916 +686351,290.73,78.401 +686352,290.67,79.884 +686353,289.68,75.465 +686354,289.51,76.943 +686355,289.38,78.42 +686356,289.28,79.896 +686357,288.43,75.5 +686358,288.21,76.969 +686359,288.03,78.439 +686360,287.88,79.907 +686361,287.17,75.536 +686362,286.91,76.997 +686363,286.68,78.458 +686364,286.49,79.917 +686365,285.92,75.573 +686366,285.61,77.024 +686367,285.34,78.476 +686368,285.09,79.926 +686369,284.67,75.612 +686370,284.31,77.053 +686371,283.99,78.494 +686372,283.7,79.934 +686373,283.42,75.651 +686374,283.01,77.081 +686375,282.64,78.511 +686376,282.31,79.94 +686377,282.16,75.692 +686378,281.71,77.11 +686379,281.3,78.528 +686380,280.91,79.945 +686381,280.91,75.734 +686382,280.41,77.139 +686383,279.95,78.545 +686384,279.52,79.95 +686385,279.65,75.777 +686386,279.11,77.169 +686387,278.6,78.561 +686388,278.13,79.953 +686389,278.4,75.821 +686390,277.81,77.199 +686391,277.26,78.577 +686392,276.74,79.955 +686393,277.14,75.867 +686394,276.51,77.229 +686395,275.91,78.593 +686396,275.35,79.956 +686397,275.89,75.913 +686398,275.21,77.26 +686399,274.56,78.608 +686400,273.95,79.956 +686401,274.63,75.961 +686402,273.91,77.291 +686403,273.22,78.623 +686404,272.56,79.954 +686405,273.38,76.01 +686406,272.61,77.323 +686407,271.87,78.638 +686408,271.17,79.952 +686409,272.12,76.06 +686410,271.3,77.355 +686411,270.53,78.652 +686412,269.78,79.949 +686413,270.86,76.111 +686414,270,77.387 +686415,269.18,78.666 +686416,268.4,79.944 +686417,269.6,76.163 +686418,268.7,77.42 +686419,267.83,78.679 +686420,267.01,79.939 +686421,268.34,76.216 +686422,267.4,77.453 +686423,266.49,78.692 +686424,265.62,79.933 +686425,267.08,76.27 +686426,266.09,77.486 +686427,265.14,78.705 +686428,264.23,79.925 +686429,265.82,76.325 +686430,264.79,77.52 +686431,263.8,78.718 +686432,262.85,79.917 +686433,264.56,76.381 +686434,263.49,77.554 +686435,262.46,78.73 +686436,261.46,79.908 +686437,263.3,76.438 +686438,262.18,77.588 +686439,261.11,78.742 +686440,260.08,79.898 +686441,262.03,76.497 +686442,260.88,77.623 +686443,259.77,78.753 +686444,258.7,79.887 +686445,260.77,76.556 +686446,259.58,77.658 +686447,258.42,78.765 +686448,257.31,79.875 +686449,259.51,76.616 +686450,258.27,77.693 +686451,257.08,78.776 +686452,255.93,79.862 +686453,258.24,76.677 +686454,256.97,77.729 +686455,255.74,78.786 +686456,254.55,79.848 +686457,256.97,76.738 +686458,255.66,77.764 +686459,254.39,78.797 +686460,253.17,79.834 +686461,255.7,76.801 +686462,254.35,77.801 +686463,253.05,78.807 +686464,251.79,79.818 +686465,254.44,76.864 +686466,253.05,77.837 +686467,251.71,78.817 +686468,250.42,79.802 +686469,253.17,76.929 +686470,251.74,77.874 +686471,250.37,78.827 +686472,249.04,79.785 +686473,251.89,76.994 +686474,250.44,77.911 +686475,249.03,78.836 +686476,247.66,79.767 +686477,250.62,77.06 +686478,249.13,77.948 +686479,247.68,78.845 +686480,246.29,79.749 +686481,249.35,77.126 +686482,247.82,77.986 +686483,246.34,78.854 +686484,244.92,79.73 +686485,248.07,77.194 +686486,246.51,78.023 +686487,245,78.863 +686488,243.54,79.71 +686489,246.8,77.262 +686490,245.2,78.061 +686491,243.66,78.871 +686492,242.17,79.689 +686493,245.52,77.331 +686494,243.89,78.1 +686495,242.32,78.879 +686496,240.8,79.668 +686497,244.24,77.4 +686498,242.59,78.138 +686499,240.98,78.888 +686500,239.44,79.646 +686501,242.96,77.47 +686502,241.28,78.177 +686503,239.65,78.895 +686504,238.07,79.624 +686505,241.68,77.541 +686506,239.97,78.216 +686507,238.31,78.903 +686508,236.7,79.6 +686509,240.4,77.612 +686510,238.65,78.255 +686511,236.97,78.91 +686512,235.34,79.577 +686513,239.12,77.684 +686514,237.34,78.294 +686515,235.63,78.918 +686516,233.97,79.553 +686517,237.83,77.756 +686518,236.03,78.333 +686519,234.29,78.925 +686520,232.61,79.528 +686521,236.54,77.829 +686522,234.72,78.373 +686523,232.96,78.932 +686524,231.25,79.503 +686525,235.26,77.902 +686526,233.41,78.413 +686527,231.62,78.939 +686528,229.89,79.477 +686529,233.97,77.976 +686530,232.09,78.453 +686531,230.28,78.945 +686532,228.53,79.451 +686533,232.68,78.05 +686534,230.78,78.493 +686535,228.95,78.952 +686536,227.17,79.424 +686537,231.38,78.124 +686538,229.47,78.533 +686539,227.61,78.958 +686540,225.82,79.398 +686541,230.09,78.199 +686542,228.15,78.573 +686543,226.28,78.964 +686544,224.46,79.37 +686545,228.8,78.275 +686546,226.84,78.614 +686547,224.94,78.971 +686548,223.11,79.343 +686549,227.5,78.35 +686550,225.52,78.654 +686551,223.61,78.977 +686552,221.76,79.315 +686553,226.2,78.426 +686554,224.21,78.695 +686555,222.28,78.983 +686556,220.41,79.287 +686557,224.9,78.502 +686558,222.89,78.736 +686559,220.94,78.989 +686560,219.06,79.258 +686561,223.6,78.578 +686562,221.57,78.777 +686563,219.61,78.995 +686564,217.71,79.229 +686565,222.3,78.655 +686566,220.25,78.818 +686567,218.28,79 +686568,216.37,79.201 +686569,220.99,78.732 +686570,218.94,78.859 +686571,216.95,79.006 +686572,215.02,79.172 +686573,219.69,78.808 +686574,217.62,78.9 +686575,215.62,79.012 +686576,213.68,79.142 +686577,218.38,78.885 +686578,216.3,78.941 +686579,214.29,79.017 +686580,212.34,79.113 +686581,217.07,78.962 +686582,214.98,78.982 +686583,212.96,79.023 +686584,211,79.083 +686585,215.76,79.039 +686586,213.66,79.023 +686587,211.63,79.029 +686588,209.66,79.054 +686589,214.45,79.116 +686590,212.34,79.064 +686591,210.3,79.034 +686592,208.33,79.024 +686593,213.13,79.193 +686594,211.01,79.105 +686595,208.97,79.04 +686596,206.99,78.995 +686597,211.82,79.27 +686598,209.69,79.146 +686599,207.64,79.046 +686600,205.66,78.965 +686601,210.5,79.347 +686602,208.37,79.187 +686603,206.31,79.051 +686604,204.32,78.936 +686605,209.18,79.424 +686606,207.05,79.229 +686607,204.99,79.057 +686608,202.99,78.906 +686609,207.86,79.501 +686610,205.72,79.27 +686611,203.66,79.063 +686612,201.66,78.877 +686613,206.54,79.577 +686614,204.4,79.311 +686615,202.33,79.068 +686616,200.34,78.848 +686617,205.21,79.654 +686618,203.07,79.352 +686619,201.01,79.074 +686620,199.01,78.819 +686621,203.89,79.73 +686622,201.75,79.393 +686623,199.68,79.08 +686624,197.69,78.79 +686625,202.56,79.806 +686626,200.42,79.433 +686627,198.36,79.086 +686628,196.36,78.761 +686629,201.23,79.881 +686630,199.09,79.474 +686631,197.03,79.092 +686632,195.04,78.733 +686633,199.9,79.957 +686634,197.77,79.515 +686635,195.71,79.098 +686636,193.72,78.705 +686637,198.57,80.0318 +686638,196.44,79.555 +686639,194.39,79.105 +686640,192.4,78.677 +686641,197.24,80.1064 +686642,195.11,79.596 +686643,193.06,79.111 +686644,191.08,78.649 +686645,195.9,80.1807 +686646,193.78,79.636 +686647,191.74,79.118 +686648,189.77,78.622 +686649,194.56,80.2546 +686650,192.45,79.676 +686651,190.42,79.124 +686652,188.45,78.595 +686653,193.23,80.328 +686654,191.12,79.716 +686655,189.1,79.131 +686656,187.14,78.569 +686657,191.89,80.401 +686658,189.79,79.756 +686659,187.78,79.138 +686660,185.83,78.543 +686661,190.54,80.4734 +686662,188.46,79.796 +686663,186.46,79.145 +686664,184.52,78.517 +686665,189.2,80.5454 +686666,187.13,79.836 +686667,185.14,79.152 +686668,183.21,78.492 +686669,187.85,80.6168 +686670,185.8,79.875 +686671,183.82,79.16 +686672,181.91,78.468 +686673,186.51,80.6876 +686674,184.47,79.915 +686675,182.5,79.167 +686676,180.6,78.444 +686677,185.16,80.7579 +686678,183.13,79.954 +686679,181.18,79.175 +686680,179.3,78.42 +686681,183.81,80.8275 +686682,181.8,79.993 +686683,179.86,79.183 +686684,177.99,78.397 +686685,182.46,80.8965 +686686,180.47,80.0313 +686687,178.55,79.192 +686688,176.69,78.375 +686689,181.11,80.9648 +686690,179.13,80.0697 +686691,177.23,79.2 +686692,175.39,78.353 +686693,179.75,81.0325 +686694,177.8,80.108 +686695,175.91,79.209 +686696,174.09,78.332 +686697,178.4,81.0994 +686698,176.46,80.146 +686699,174.6,79.218 +686700,172.8,78.312 +686701,177.04,81.1656 +686702,175.12,80.1838 +686703,173.28,79.227 +686704,171.5,78.292 +686705,175.68,81.231 +686706,173.79,80.2213 +686707,171.97,79.236 +686708,170.21,78.274 +686709,174.32,81.2956 +686710,172.45,80.2586 +686711,170.65,79.246 +686712,168.91,78.255 +686713,172.96,81.3594 +686714,171.11,80.2957 +686715,169.34,79.256 +686716,167.62,78.238 +686717,171.6,81.4224 +686718,169.77,80.3324 +686719,168.02,79.266 +686720,166.33,78.221 +686721,170.23,81.4846 +686722,168.44,80.3689 +686723,166.71,79.277 +686724,165.04,78.206 +686725,168.87,81.5459 +686726,167.1,80.4051 +686727,165.4,79.287 +686728,163.75,78.191 +686729,167.5,81.6063 +686730,165.76,80.4411 +686731,164.08,79.299 +686732,162.47,78.177 +686733,166.13,81.6658 +686734,164.42,80.4767 +686735,162.77,79.31 +686736,161.18,78.164 +686737,164.76,81.7244 +686738,163.08,80.512 +686739,161.46,79.322 +686740,159.9,78.151 +686741,163.39,81.782 +686742,161.74,80.547 +686743,160.15,79.334 +686744,158.61,78.14 +686745,162.02,81.8386 +686746,160.39,80.5817 +686747,158.83,79.346 +686748,157.33,78.13 +686749,160.64,81.8943 +686750,159.05,80.6161 +686751,157.52,79.359 +686752,156.05,78.12 +686753,159.27,81.949 +686754,157.71,80.6502 +686755,156.21,79.372 +686756,154.77,78.112 +686757,157.89,82.0027 +686758,156.37,80.6839 +686759,154.9,79.385 +686760,153.49,78.104 +686761,156.52,82.0553 +686762,155.02,80.7173 +686763,153.59,79.399 +686764,152.21,78.098 +686765,155.14,82.1069 +686766,153.68,80.7504 +686767,152.28,79.413 +686768,150.94,78.093 +686769,153.76,82.1575 +686770,152.34,80.7831 +686771,150.97,79.427 +686772,149.66,78.088 +686773,152.38,82.2069 +686774,150.99,80.8154 +686775,149.66,79.442 +686776,148.39,78.085 +686777,151,82.2553 +686778,149.65,80.8474 +686779,148.36,79.457 +686780,147.11,78.083 +686781,149.62,82.3026 +686782,148.3,80.8791 +686783,147.05,79.472 +686784,145.84,78.082 +686785,148.24,82.3488 +686786,146.96,80.9103 +686787,145.74,79.488 +686788,144.57,78.082 +686789,146.85,82.3938 +686790,145.61,80.9412 +686791,144.43,79.505 +686792,143.3,78.083 +686793,145.47,82.4377 +686794,144.27,80.9718 +686795,143.12,79.521 +686796,142.03,78.085 +686797,144.08,82.4805 +686798,142.92,81.0019 +686799,141.82,79.538 +686800,140.76,78.089 +686801,142.69,82.5221 +686802,141.58,81.0317 +686803,140.51,79.556 +686804,139.49,78.093 +686805,141.31,82.5626 +686806,140.23,81.0611 +686807,139.2,79.573 +686808,138.22,78.099 +686809,139.92,82.6019 +686810,138.88,81.0901 +686811,137.9,79.592 +686812,136.95,78.106 +686813,138.53,82.64 +686814,137.54,81.1187 +686815,136.59,79.61 +686816,135.69,78.114 +686817,137.14,82.6769 +686818,136.19,81.1469 +686819,135.28,79.629 +686820,134.42,78.124 +686821,135.75,82.7126 +686822,134.84,81.1747 +686823,133.98,79.649 +686824,133.15,78.134 +686825,134.36,82.7471 +686826,133.49,81.2021 +686827,132.67,79.669 +686828,131.89,78.146 +686829,132.97,82.7804 +686830,132.14,81.2292 +686831,131.36,79.689 +686832,130.62,78.159 +686833,131.58,82.8125 +686834,130.8,81.2558 +686835,130.06,79.709 +686836,129.36,78.173 +686837,130.18,82.8434 +686838,129.45,81.282 +686839,128.75,79.73 +686840,128.1,78.189 +686841,128.79,82.8731 +686842,128.1,81.3078 +686843,127.45,79.752 +686844,126.84,78.206 +686845,127.4,82.9015 +686846,126.75,81.3332 +686847,126.14,79.774 +686848,125.57,78.224 +686849,126,82.9287 +686850,125.4,81.3582 +686851,124.84,79.796 +686852,124.31,78.243 +686853,124.61,82.9547 +686854,124.05,81.3828 +686855,123.53,79.819 +686856,123.05,78.264 +686857,123.22,82.9794 +686858,122.7,81.4069 +686859,122.23,79.842 +686860,121.79,78.285 +686861,121.82,83.003 +686862,121.35,81.4307 +686863,120.92,79.866 +686864,120.53,78.309 +686865,120.43,83.0253 +686866,120,81.4541 +686867,119.62,79.89 +686868,119.27,78.333 +686869,119.03,83.0463 +686870,118.65,81.477 +686871,118.31,79.914 +686872,118.01,78.358 +686873,117.63,83.0662 +686874,117.3,81.4995 +686875,117.01,79.939 +686876,116.75,78.385 +686877,116.24,83.0848 +686878,115.95,81.5217 +686879,115.7,79.964 +686880,115.49,78.414 +686881,114.84,83.1022 +686882,114.6,81.5434 +686883,114.4,79.99 +686884,114.23,78.443 +686885,113.45,83.1184 +686886,113.25,81.5647 +686887,113.09,80.0161 +686888,112.97,78.474 +686889,112.05,83.1334 +686890,111.9,81.5856 +686891,111.79,80.0427 +686892,111.71,78.506 +686893,110.66,83.1471 +686894,110.55,81.6061 +686895,110.48,80.0696 +686896,110.45,78.539 +686897,109.26,83.1597 +686898,109.2,81.6262 +686899,109.18,80.097 +686900,109.19,78.573 +686901,107.86,83.171 +686902,107.85,81.6459 +686903,107.88,80.1248 +686904,107.93,78.609 +686905,106.47,83.1812 +686906,106.5,81.6652 +686907,106.57,80.153 +686908,106.67,78.646 +686909,105.07,83.1901 +686910,105.15,81.6841 +686911,105.27,80.1817 +686912,105.41,78.684 +686913,103.68,83.1979 +686914,103.8,81.7025 +686915,103.96,80.2107 +686916,104.15,78.724 +686917,102.28,83.2045 +686918,102.45,81.7207 +686919,102.66,80.2401 +686920,102.89,78.764 +686921,100.88,83.21 +686922,101.1,81.7384 +686923,101.35,80.27 +686924,101.63,78.806 +686925,99.49,83.2143 +686926,99.752,81.7557 +686927,100.04,80.3002 +686928,100.37,78.849 +686929,98.095,83.2175 +686930,98.402,81.7726 +686931,98.74,80.3309 +686932,99.108,78.894 +686933,96.701,83.2195 +686934,97.052,81.7892 +686935,97.434,80.3619 +686936,97.846,78.939 +686937,95.307,83.2204 +686938,95.702,81.8054 +686939,96.128,80.3933 +686940,96.585,78.986 +686941,93.913,83.2202 +686942,94.353,81.8212 +686943,94.823,80.4251 +686944,95.323,79.034 +686945,92.519,83.2189 +686946,93.003,81.8366 +686947,93.517,80.4573 +686948,94.061,79.083 +686949,91.127,83.2165 +686950,91.653,81.8517 +686951,92.21,80.4899 +686952,92.798,79.133 +686953,89.734,83.213 +686954,90.304,81.8664 +686955,90.904,80.5228 +686956,91.535,79.184 +686957,88.342,83.2085 +686958,88.955,81.8808 +686959,89.598,80.5562 +686960,90.271,79.236 +686961,86.951,83.203 +686962,87.606,81.8948 +686963,88.291,80.5898 +686964,89.007,79.29 +686965,85.56,83.1964 +686966,86.257,81.9085 +686967,86.984,80.6239 +686968,87.742,79.344 +686969,84.17,83.1888 +686970,84.908,81.9218 +686971,85.677,80.6583 +686972,86.477,79.4 +686973,82.781,83.1802 +686974,83.56,81.9348 +686975,84.369,80.693 +686976,85.211,79.457 +686977,81.392,83.1706 +686978,82.211,81.9474 +686979,83.062,80.7281 +686980,83.944,79.514 +686981,80.004,83.16 +686982,80.863,81.9598 +686983,81.754,80.7635 +686984,82.677,79.573 +686985,78.616,83.1485 +686986,79.515,81.9718 +686987,80.445,80.7993 +686988,81.408,79.633 +686989,77.23,83.1361 +686990,78.167,81.9835 +686991,79.137,80.8354 +686992,80.14,79.694 +686993,75.844,83.1228 +686994,76.82,81.9949 +686995,77.828,80.8717 +686996,78.87,79.755 +686997,74.459,83.1085 +686998,75.473,82.006 +686999,76.519,80.9085 +687000,77.599,79.818 +687001,73.075,83.0934 +687002,74.126,82.0168 +687003,75.21,80.9455 +687004,76.328,79.881 +687005,71.691,83.0775 +687006,72.779,82.0273 +687007,73.9,80.9828 +687008,75.056,79.946 +687009,70.309,83.0607 +687010,71.432,82.0375 +687011,72.59,81.0204 +687012,73.783,80.0112 +687013,68.927,83.0431 +687014,70.086,82.0475 +687015,71.28,81.0583 +687016,72.509,80.0774 +687017,67.547,83.0247 +687018,68.74,82.0572 +687019,69.969,81.0964 +687020,71.234,80.1444 +687021,66.167,83.0055 +687022,67.395,82.0666 +687023,68.658,81.1349 +687024,69.958,80.2123 +687025,64.789,82.9856 +687026,66.049,82.0758 +687027,67.346,81.1736 +687028,68.68,80.2809 +687029,63.411,82.965 +687030,64.704,82.0847 +687031,66.034,81.2125 +687032,67.402,80.3503 +687033,62.034,82.9436 +687034,63.36,82.0934 +687035,64.722,81.2517 +687036,66.123,80.4204 +687037,60.659,82.9216 +687038,62.015,82.1019 +687039,63.41,81.2911 +687040,64.843,80.4913 +687041,59.284,82.8989 +687042,60.671,82.1102 +687043,62.097,81.3308 +687044,63.562,80.5628 +687045,57.911,82.8756 +687046,59.328,82.1182 +687047,60.783,81.3707 +687048,62.279,80.6351 +687049,56.539,82.8517 +687050,57.984,82.1261 +687051,59.469,81.4108 +687052,60.996,80.7079 +687053,55.168,82.8271 +687054,56.641,82.1337 +687055,58.155,81.4511 +687056,59.711,80.7814 +687057,53.798,82.8021 +687058,55.299,82.1412 +687059,56.84,81.4916 +687060,58.425,80.8554 +687061,52.429,82.7765 +687062,53.957,82.1484 +687063,55.525,81.5322 +687064,57.137,80.9301 +687065,51.062,82.7503 +687066,52.615,82.1555 +687067,54.21,81.5731 +687068,55.849,81.0052 +687069,49.696,82.7237 +687070,51.273,82.1625 +687071,52.894,81.6141 +687072,54.559,81.0809 +687073,48.331,82.6967 +687074,49.932,82.1693 +687075,51.577,81.6553 +687076,53.268,81.157 +687077,46.967,82.6691 +687078,48.591,82.1759 +687079,50.26,81.6967 +687080,51.976,81.2336 +687081,45.604,82.6412 +687082,47.251,82.1824 +687083,48.943,81.7381 +687084,50.682,81.3106 +687085,44.243,82.6129 +687086,45.911,82.1888 +687087,47.625,81.7797 +687088,49.387,81.388 +687089,42.883,82.5843 +687090,44.572,82.1951 +687091,46.307,81.8215 +687092,48.09,81.4658 +687093,41.525,82.5553 +687094,43.233,82.2013 +687095,44.988,81.8633 +687096,46.792,81.5439 +687097,40.167,82.526 +687098,41.894,82.2073 +687099,43.669,81.9053 +687100,45.493,81.6223 +687101,38.811,82.4965 +687102,40.556,82.2133 +687103,42.349,81.9473 +687104,44.193,81.701 +687105,37.457,82.4667 +687106,39.218,82.2192 +687107,41.028,81.9894 +687108,42.891,81.7799 +687109,36.103,82.4366 +687110,37.881,82.225 +687111,39.708,82.0316 +687112,41.587,81.8591 +687113,34.752,82.4064 +687114,36.544,82.2307 +687115,38.386,82.0739 +687116,40.282,81.9384 +687117,33.401,82.376 +687118,35.208,82.2365 +687119,37.064,82.1162 +687120,38.976,82.0179 +687121,32.052,82.3455 +687122,33.872,82.2421 +687123,35.742,82.1586 +687124,37.668,82.0975 +687125,30.704,82.3149 +687126,32.536,82.2477 +687127,34.419,82.201 +687128,36.358,82.1773 +687129,29.358,82.2842 +687130,31.201,82.2534 +687131,33.096,82.2434 +687132,35.047,82.2571 +687133,28.013,82.2534 +687134,29.866,82.2589 +687135,31.772,82.2859 +687136,33.735,82.3369 +687137,26.67,82.2226 +687138,28.532,82.2645 +687139,30.447,82.3283 +687140,32.421,82.4167 +687141,25.328,82.1919 +687142,27.198,82.2701 +687143,29.122,82.3708 +687144,31.105,82.4965 +687145,23.987,82.1611 +687146,25.865,82.2757 +687147,27.797,82.4132 +687148,29.788,82.5763 +687149,22.648,82.1304 +687150,24.532,82.2814 +687151,26.471,82.4556 +687152,28.47,82.656 +687153,21.31,82.0998 +687154,23.2,82.287 +687155,25.144,82.498 +687156,27.15,82.7355 +687157,19.974,82.0694 +687158,21.868,82.2927 +687159,23.817,82.5403 +687160,25.828,82.8149 +687161,18.639,82.039 +687162,20.536,82.2985 +687163,22.489,82.5826 +687164,24.505,82.8942 +687165,17.306,82.0089 +687166,19.205,82.3043 +687167,21.161,82.6248 +687168,23.18,82.9732 +687169,15.974,81.9789 +687170,17.875,82.3102 +687171,19.833,82.6669 +687172,21.854,83.052 +687173,14.643,81.9492 +687174,16.545,82.3162 +687175,18.503,82.709 +687176,20.526,83.1305 +687177,13.314,81.9197 +687178,15.215,82.3223 +687179,17.173,82.7509 +687180,19.196,83.2088 +687181,11.986,81.8905 +687182,13.886,82.3284 +687183,15.843,82.7928 +687184,17.865,83.2867 +687185,10.66,81.8617 +687186,12.557,82.3347 +687187,14.512,82.8345 +687188,16.533,83.3643 +687189,9.3353,81.8331 +687190,11.229,82.3411 +687191,13.181,82.8761 +687192,15.198,83.4415 +687193,8.0119,81.805 +687194,9.9013,82.3476 +687195,11.849,82.9176 +687196,13.863,83.5182 +687197,6.69,81.7772 +687198,8.574,82.3543 +687199,10.516,82.959 +687200,12.525,83.5946 +687201,5.3694,81.7499 +687202,7.2471,82.3611 +687203,9.1834,83.0002 +687204,11.187,83.6704 +687205,4.0503,81.723 +687206,5.9207,82.3681 +687207,7.8498,83.0412 +687208,9.8462,83.7458 +687209,2.7326,81.6966 +687210,4.5947,82.3752 +687211,6.5157,83.0821 +687212,8.5043,83.8206 +687213,1.4163,81.6707 +687214,3.2692,82.3825 +687215,5.1811,83.1228 +687216,7.1608,83.8949 +687217,0.10132,81.6453 +687218,1.9441,82.39 +687219,3.846,83.1633 +687220,5.8158,83.9687 +687221,358.79,81.6205 +687222,0.61952,82.3977 +687223,2.5103,83.2036 +687224,4.4693,84.0418 +687225,357.48,81.5962 +687226,359.3,82.4055 +687227,1.1742,83.2437 +687228,3.1213,84.1142 +687229,356.16,81.5726 +687230,357.97,82.4136 +687231,359.84,83.2836 +687232,1.7718,84.1861 +687233,354.86,81.5496 +687234,356.65,82.4219 +687235,358.5,83.3233 +687236,0.42075,84.2572 +687237,353.55,81.5273 +687238,355.33,82.4304 +687239,357.16,83.3628 +687240,359.07,84.3276 +687241,352.24,81.5056 +687242,354,82.4392 +687243,355.82,83.402 +687244,357.71,84.3973 +687245,350.93,81.4847 +687246,352.68,82.4482 +687247,354.49,83.4409 +687248,356.36,84.4662 +687249,349.63,81.4645 +687250,351.36,82.4574 +687251,353.15,83.4796 +687252,355,84.5344 +687253,348.33,81.445 +687254,350.04,82.467 +687255,351.81,83.5181 +687256,353.64,84.6017 +687257,347.03,81.4263 +687258,348.72,82.4767 +687259,350.47,83.5562 +687260,352.28,84.6682 +687261,345.73,81.4085 +687262,347.4,82.4868 +687263,349.13,83.5941 +687264,350.92,84.7339 +687265,344.43,81.3914 +687266,346.08,82.4971 +687267,347.78,83.6317 +687268,349.56,84.7987 +687269,343.13,81.3752 +687270,344.76,82.5077 +687271,346.44,83.669 +687272,348.2,84.8626 +687273,341.83,81.3599 +687274,343.44,82.5186 +687275,345.1,83.7061 +687276,346.83,84.9255 +687277,340.54,81.3454 +687278,342.12,82.5298 +687279,343.76,83.7428 +687280,345.47,84.9875 +687281,339.24,81.3319 +687282,340.8,82.5413 +687283,342.42,83.7792 +687284,344.1,85.0486 +687285,337.95,81.3193 +687286,339.48,82.5532 +687287,341.07,83.8152 +687288,342.73,85.1087 +687289,336.66,81.3077 +687290,338.16,82.5653 +687291,339.73,83.851 +687292,341.36,85.1677 +687293,335.37,81.297 +687294,336.85,82.5778 +687295,338.38,83.8864 +687296,339.99,85.2258 +687297,334.08,81.2873 +687298,335.53,82.5906 +687299,337.04,83.9214 +687300,338.61,85.2828 +687301,332.79,81.2787 +687302,334.21,82.6038 +687303,335.69,83.9562 +687304,337.24,85.3388 +687305,331.5,81.271 +687306,332.9,82.6173 +687307,334.35,83.9905 +687308,335.86,85.3937 +687309,330.21,81.2644 +687310,331.58,82.6311 +687311,333,84.0245 +687312,334.49,85.4475 +687313,328.93,81.2589 +687314,330.26,82.6453 +687315,331.66,84.0582 +687316,333.11,85.5002 +687317,327.64,81.2545 +687318,328.95,82.6599 +687319,330.31,84.0914 +687320,331.73,85.5518 +687321,326.36,81.2511 +687322,327.63,82.6749 +687323,328.96,84.1243 +687324,330.35,85.6022 +687325,325.07,81.2489 +687326,326.32,82.6902 +687327,327.62,84.1569 +687328,328.97,85.6515 +687329,323.79,81.2478 +687330,325,82.7059 +687331,326.27,84.189 +687332,327.59,85.6997 +687333,322.51,81.2478 +687334,323.69,82.7219 +687335,324.92,84.2208 +687336,326.21,85.7466 +687337,321.23,81.249 +687338,322.38,82.7384 +687339,323.57,84.2521 +687340,324.82,85.7924 +687341,319.95,81.2513 +687342,321.06,82.7553 +687343,322.22,84.2831 +687344,323.44,85.837 +687345,318.67,81.2549 +687346,319.75,82.7725 +687347,320.87,84.3136 +687348,322.05,85.8803 +687349,317.39,81.2596 +687350,318.44,82.7902 +687351,319.52,84.3438 +687352,320.67,85.9225 +687353,316.12,81.2655 +687354,317.12,82.8082 +687355,318.17,84.3735 +687356,319.28,85.9634 +687357,314.84,81.2727 +687358,315.81,82.8267 +687359,316.82,84.4028 +687360,317.89,86.0031 +687361,313.56,81.2811 +687362,314.5,82.8455 +687363,315.47,84.4318 +687364,316.5,86.0415 +687365,312.29,81.2907 +687366,313.18,82.8648 +687367,314.12,84.4603 +687368,315.11,86.0787 +687369,311.01,81.3015 +687370,311.87,82.8845 +687371,312.77,84.4883 +687372,313.72,86.1146 +687373,309.74,81.3136 +687374,310.56,82.9046 +687375,311.42,84.516 +687376,312.33,86.1493 +687377,308.47,81.327 +687378,309.25,82.9251 +687379,310.07,84.5432 +687380,310.94,86.1826 +687381,307.19,81.3416 +687382,307.94,82.9461 +687383,308.72,84.57 +687384,309.55,86.2147 +687385,305.92,81.3576 +687386,306.62,82.9675 +687387,307.37,84.5964 +687388,308.16,86.2455 +687389,304.65,81.3748 +687390,305.31,82.9893 +687391,306.01,84.6224 +687392,306.76,86.2751 +687393,303.38,81.3932 +687394,304,83.0115 +687395,304.66,84.6479 +687396,305.37,86.3033 +687397,302.11,81.413 +687398,302.69,83.0342 +687399,303.31,84.673 +687400,303.98,86.3303 +687401,300.84,81.4341 +687402,301.38,83.0572 +687403,301.96,84.6976 +687404,302.58,86.3559 +687405,299.57,81.4564 +687406,300.07,83.0808 +687407,300.6,84.7218 +687408,301.19,86.3803 +687409,298.3,81.4801 +687410,298.76,83.1047 +687411,299.25,84.7456 +687412,299.79,86.4034 +687413,297.03,81.505 +687414,297.44,83.1291 +687415,297.9,84.769 +687416,298.39,86.4251 +687417,295.76,81.5313 +687418,296.13,83.1539 +687419,296.55,84.7919 +687420,297,86.4456 +687421,294.49,81.5589 +687422,294.82,83.1791 +687423,295.19,84.8143 +687424,295.6,86.4648 +687425,293.22,81.5877 +687426,293.51,83.2048 +687427,293.84,84.8364 +687428,294.21,86.4827 +687429,291.95,81.6179 +687430,292.2,83.2309 +687431,292.49,84.858 +687432,292.81,86.4993 +687433,290.68,81.6493 +687434,290.89,83.2574 +687435,291.13,84.8792 +687436,291.41,86.5147 +687437,289.41,81.6821 +687438,289.58,83.2843 +687439,289.78,84.8999 +687440,290.01,86.5287 +687441,288.15,81.7161 +687442,288.27,83.3117 +687443,288.42,84.9202 +687444,288.62,86.5415 +687445,286.88,81.7515 +687446,286.96,83.3395 +687447,287.07,84.9401 +687448,287.22,86.553 +687449,285.61,81.7881 +687450,285.65,83.3677 +687451,285.72,84.9596 +687452,285.82,86.5633 +687453,284.34,81.826 +687454,284.34,83.3964 +687455,284.36,84.9786 +687456,284.42,86.5723 +687457,283.07,81.8651 +687458,283.03,83.4254 +687459,283.01,84.9973 +687460,283.03,86.5801 +687461,281.8,81.9056 +687462,281.71,83.4549 +687463,281.66,85.0155 +687464,281.63,86.5866 +687465,280.54,81.9472 +687466,280.4,83.4848 +687467,280.3,85.0332 +687468,280.23,86.5919 +687469,279.27,81.9902 +687470,279.09,83.5151 +687471,278.95,85.0506 +687472,278.83,86.596 +687473,278,82.0344 +687474,277.78,83.5458 +687475,277.59,85.0676 +687476,277.44,86.5988 +687477,276.73,82.0798 +687478,276.47,83.5769 +687479,276.24,85.0841 +687480,276.04,86.6005 +687481,275.46,82.1264 +687482,275.16,83.6084 +687483,274.89,85.1003 +687484,274.64,86.601 +687485,274.19,82.1743 +687486,273.85,83.6403 +687487,273.53,85.116 +687488,273.25,86.6003 +687489,272.92,82.2233 +687490,272.53,83.6726 +687491,272.18,85.1314 +687492,271.85,86.5985 +687493,271.65,82.2735 +687494,271.22,83.7053 +687495,270.82,85.1463 +687496,270.46,86.5955 +687497,270.38,82.3249 +687498,269.91,83.7384 +687499,269.47,85.1609 +687500,269.06,86.5913 +687501,269.11,82.3775 +687502,268.6,83.7718 +687503,268.12,85.1751 +687504,267.66,86.5861 +687505,267.84,82.4312 +687506,267.29,83.8056 +687507,266.76,85.1889 +687508,266.27,86.5797 +687509,266.56,82.4861 +687510,265.97,83.8398 +687511,265.41,85.2023 +687512,264.88,86.5722 +687513,265.29,82.542 +687514,264.66,83.8744 +687515,264.06,85.2154 +687516,263.48,86.5637 +687517,264.02,82.5991 +687518,263.35,83.9093 +687519,262.71,85.2281 +687520,262.09,86.5541 +687521,262.74,82.6573 +687522,262.04,83.9446 +687523,261.35,85.2405 +687524,260.7,86.5435 +687525,261.47,82.7165 +687526,260.72,83.9802 +687527,260,85.2525 +687528,259.3,86.5318 +687529,260.19,82.7767 +687530,259.41,84.0161 +687531,258.65,85.2641 +687532,257.91,86.5191 +687533,258.92,82.838 +687534,258.09,84.0524 +687535,257.3,85.2754 +687536,256.52,86.5055 +687537,257.64,82.9004 +687538,256.78,84.0891 +687539,255.94,85.2864 +687540,255.13,86.4909 +687541,256.37,82.9637 +687542,255.47,84.126 +687543,254.59,85.2971 +687544,253.74,86.4753 +687545,255.09,83.0279 +687546,254.15,84.1632 +687547,253.24,85.3074 +687548,252.35,86.4588 +687549,253.81,83.0932 +687550,252.84,84.2008 +687551,251.89,85.3174 +687552,250.97,86.4414 +687553,252.53,83.1593 +687554,251.52,84.2387 +687555,250.54,85.3272 +687556,249.58,86.4231 +687557,251.25,83.2264 +687558,250.21,84.2768 +687559,249.19,85.3366 +687560,248.19,86.4039 +687561,249.97,83.2944 +687562,248.89,84.3153 +687563,247.83,85.3457 +687564,246.81,86.3839 +687565,248.69,83.3632 +687566,247.57,84.354 +687567,246.48,85.3545 +687568,245.42,86.363 +687569,247.41,83.4329 +687570,246.26,84.393 +687571,245.13,85.3631 +687572,244.04,86.3414 +687573,246.12,83.5033 +687574,244.94,84.4323 +687575,243.78,85.3714 +687576,242.66,86.3189 +687577,244.84,83.5746 +687578,243.62,84.4718 +687579,242.43,85.3794 +687580,241.27,86.2958 +687581,243.55,83.6467 +687582,242.31,84.5115 +687583,241.08,85.3872 +687584,239.89,86.2718 +687585,242.27,83.7195 +687586,240.99,84.5515 +687587,239.74,85.3947 +687588,238.51,86.2472 +687589,240.98,83.793 +687590,239.67,84.5918 +687591,238.39,85.402 +687592,237.13,86.2219 +687593,239.69,83.8672 +687594,238.35,84.6322 +687595,237.04,85.4091 +687596,235.75,86.1959 +687597,238.4,83.942 +687598,237.03,84.6729 +687599,235.69,85.4159 +687600,234.38,86.1693 +687601,237.11,84.0175 +687602,235.71,84.7137 +687603,234.34,85.4226 +687604,233,86.1421 +687605,235.82,84.0936 +687606,234.39,84.7548 +687607,232.99,85.429 +687608,231.63,86.1143 +687609,234.53,84.1703 +687610,233.07,84.796 +687611,231.65,85.4352 +687612,230.25,86.086 +687613,233.23,84.2476 +687614,231.75,84.8375 +687615,230.3,85.4413 +687616,228.88,86.0571 +687617,231.94,84.3254 +687618,230.43,84.8791 +687619,228.95,85.4471 +687620,227.51,86.0277 +687621,230.64,84.4037 +687622,229.11,84.9208 +687623,227.61,85.4528 +687624,226.14,85.9978 +687625,229.34,84.4824 +687626,227.79,84.9627 +687627,226.26,85.4584 +687628,224.77,85.9675 +687629,228.04,84.5616 +687630,226.46,85.0047 +687631,224.92,85.4638 +687632,223.4,85.9368 +687633,226.74,84.6412 +687634,225.14,85.0469 +687635,223.57,85.469 +687636,222.03,85.9056 +687637,225.44,84.7212 +687638,223.82,85.0892 +687639,222.23,85.4741 +687640,220.67,85.8741 +687641,224.14,84.8016 +687642,222.49,85.1316 +687643,220.88,85.4791 +687644,219.3,85.8423 +687645,222.84,84.8822 +687646,221.17,85.1741 +687647,219.54,85.484 +687648,217.94,85.8101 +687649,221.53,84.9632 +687650,219.84,85.2166 +687651,218.19,85.4888 +687652,216.58,85.7777 +687653,220.22,85.0444 +687654,218.52,85.2593 +687655,216.85,85.4935 +687656,215.22,85.745 +687657,218.92,85.1259 +687658,217.19,85.302 +687659,215.51,85.4981 +687660,213.86,85.712 +687661,217.61,85.2075 +687662,215.87,85.3448 +687663,214.17,85.5027 +687664,212.5,85.6789 +687665,216.3,85.2893 +687666,214.54,85.3876 +687667,212.82,85.5071 +687668,211.14,85.6456 +687669,214.99,85.3713 +687670,213.21,85.4305 +687671,211.48,85.5116 +687672,209.79,85.6122 +687673,213.67,85.4533 +687674,211.89,85.4734 +687675,210.14,85.5159 +687676,208.43,85.5786 +687677,212.36,85.5355 +687678,210.56,85.5163 +687679,208.8,85.5203 +687680,207.08,85.545 +687681,211.04,85.6177 +687682,209.23,85.5593 +687683,207.46,85.5246 +687684,205.73,85.5113 +687685,209.72,85.6999 +687686,207.9,85.6022 +687687,206.12,85.5289 +687688,204.38,85.4775 +687689,208.41,85.782 +687690,206.57,85.6451 +687691,204.78,85.5332 +687692,203.03,85.4438 +687693,207.08,85.8641 +687694,205.24,85.688 +687695,203.44,85.5375 +687696,201.68,85.4101 +687697,205.76,85.9462 +687698,203.91,85.7308 +687699,202.1,85.5418 +687700,200.34,85.3765 +687701,204.44,86.0281 +687702,202.58,85.7737 +687703,200.76,85.5462 +687704,198.99,85.343 +687705,203.12,86.1099 +687706,201.25,85.8164 +687707,199.43,85.5505 +687708,197.65,85.3095 +687709,201.79,86.1915 +687710,199.92,85.8591 +687711,198.09,85.555 +687712,196.31,85.2763 +687713,200.46,86.2729 +687714,198.58,85.9017 +687715,196.75,85.5594 +687716,194.97,85.2432 +687717,199.13,86.354 +687718,197.25,85.9443 +687719,195.42,85.564 +687720,193.63,85.2103 +687721,197.8,86.4349 +687722,195.92,85.9867 +687723,194.08,85.5686 +687724,192.29,85.1776 +687725,196.47,86.5155 +687726,194.58,86.029 +687727,192.74,85.5733 +687728,190.95,85.1452 +687729,195.14,86.5957 +687730,193.25,86.0713 +687731,191.41,85.5781 +687732,189.62,85.1131 +687733,193.8,86.6756 +687734,191.91,86.1134 +687735,190.07,85.583 +687736,188.28,85.0813 +687737,192.47,86.7551 +687738,190.58,86.1553 +687739,188.74,85.588 +687740,186.95,85.0499 +687741,191.13,86.8341 +687742,189.24,86.1971 +687743,187.41,85.5931 +687744,185.62,85.0189 +687745,189.79,86.9127 +687746,187.9,86.2388 +687747,186.07,85.5984 +687748,184.29,84.9882 +687749,188.45,86.9908 +687750,186.57,86.2803 +687751,184.74,85.6038 +687752,182.96,84.958 +687753,187.1,87.0684 +687754,185.23,86.3216 +687755,183.41,85.6094 +687756,181.63,84.9282 +687757,185.76,87.1455 +687758,183.89,86.3627 +687759,182.07,85.6151 +687760,180.31,84.899 +687761,184.42,87.2219 +687762,182.55,86.4037 +687763,180.74,85.621 +687764,178.98,84.8702 +687765,183.07,87.2978 +687766,181.21,86.4444 +687767,179.41,85.627 +687768,177.66,84.842 +687769,181.72,87.373 +687770,179.87,86.4849 +687771,178.08,85.6333 +687772,176.34,84.8144 +687773,180.37,87.4476 +687774,178.53,86.5252 +687775,176.75,85.6397 +687776,175.02,84.7873 +687777,179.02,87.5215 +687778,177.19,86.5653 +687779,175.42,85.6464 +687780,173.7,84.7609 +687781,177.67,87.5947 +687782,175.85,86.6051 +687783,174.09,85.6532 +687784,172.38,84.7351 +687785,176.31,87.6671 +687786,174.51,86.6447 +687787,172.76,85.6603 +687788,171.06,84.71 +687789,174.96,87.7388 +687790,173.17,86.684 +687791,171.43,85.6676 +687792,169.75,84.6856 +687793,173.6,87.8096 +687794,171.82,86.723 +687795,170.1,85.6752 +687796,168.43,84.6619 +687797,172.24,87.8796 +687798,170.48,86.7618 +687799,168.78,85.683 +687800,167.12,84.639 +687801,170.89,87.9488 +687802,169.14,86.8003 +687803,167.45,85.691 +687804,165.81,84.6168 +687805,169.52,88.0171 +687806,167.79,86.8385 +687807,166.12,85.6994 +687808,164.5,84.5955 +687809,168.16,88.0846 +687810,166.45,86.8764 +687811,164.79,85.708 +687812,163.19,84.5749 +687813,166.8,88.1511 +687814,165.1,86.914 +687815,163.47,85.7168 +687816,161.88,84.5552 +687817,165.43,88.2166 +687818,163.76,86.9513 +687819,162.14,85.726 +687820,160.58,84.5364 +687821,164.07,88.2812 +687822,162.41,86.9882 +687823,160.81,85.7354 +687824,159.27,84.5184 +687825,162.7,88.3448 +687826,161.06,87.0249 +687827,159.49,85.7452 +687828,157.97,84.5014 +687829,161.33,88.4073 +687830,159.72,87.0611 +687831,158.16,85.7553 +687832,156.66,84.4853 +687833,159.96,88.4689 +687834,158.37,87.0971 +687835,156.84,85.7656 +687836,155.36,84.4701 +687837,158.59,88.5293 +687838,157.02,87.1326 +687839,155.51,85.7763 +687840,154.06,84.456 +687841,157.22,88.5887 +687842,155.67,87.1679 +687843,154.19,85.7874 +687844,152.76,84.4428 +687845,155.85,88.6471 +687846,154.33,87.2027 +687847,152.87,85.7987 +687848,151.46,84.4306 +687849,154.47,88.7042 +687850,152.98,87.2372 +687851,151.54,85.8104 +687852,150.16,84.4195 +687853,153.09,88.7603 +687854,151.63,87.2713 +687855,150.22,85.8225 +687856,148.86,84.4094 +687857,151.72,88.8152 +687858,150.28,87.305 +687859,148.9,85.8349 +687860,147.57,84.4004 +687861,150.34,88.8689 +687862,148.93,87.3384 +687863,147.57,85.8477 +687864,146.27,84.3924 +687865,148.96,88.9215 +687866,147.58,87.3713 +687867,146.25,85.8608 +687868,144.98,84.3856 +687869,147.58,88.9728 +687870,146.23,87.4038 +687871,144.93,85.8743 +687872,143.68,84.3799 +687873,146.2,89.02297 +687874,144.87,87.4359 +687875,143.61,85.8882 +687876,142.39,84.3754 +687877,144.82,89.07186 +687878,143.52,87.4676 +687879,142.29,85.9024 +687880,141.1,84.3719 +687881,143.43,89.11951 +687882,142.17,87.4989 +687883,140.97,85.917 +687884,139.81,84.3697 +687885,142.05,89.1659 +687886,140.82,87.5298 +687887,139.64,85.9321 +687888,138.52,84.3686 +687889,140.66,89.21102 +687890,139.47,87.5602 +687891,138.32,85.9475 +687892,137.23,84.3688 +687893,139.28,89.25485 +687894,138.11,87.5902 +687895,137,85.9633 +687896,135.94,84.3701 +687897,137.89,89.29739 +687898,136.76,87.6198 +687899,135.68,85.9795 +687900,134.65,84.3727 +687901,136.5,89.33862 +687902,135.41,87.649 +687903,134.36,85.9962 +687904,133.37,84.3764 +687905,135.11,89.37853 +687906,134.05,87.6776 +687907,133.04,86.0132 +687908,132.08,84.3815 +687909,133.73,89.41712 +687910,132.7,87.7059 +687911,131.72,86.0307 +687912,130.8,84.3878 +687913,132.34,89.45438 +687914,131.34,87.7337 +687915,130.4,86.0485 +687916,129.51,84.3953 +687917,130.94,89.49029 +687918,129.99,87.761 +687919,129.09,86.0668 +687920,128.23,84.4041 +687921,129.55,89.52486 +687922,128.63,87.7879 +687923,127.77,86.0855 +687924,126.94,84.4143 +687925,128.16,89.55806 +687926,127.28,87.8144 +687927,126.45,86.1046 +687928,125.66,84.4257 +687929,126.77,89.58991 +687930,125.92,87.8403 +687931,125.13,86.1242 +687932,124.38,84.4384 +687933,125.37,89.6204 +687934,124.57,87.8659 +687935,123.81,86.1442 +687936,123.1,84.4524 +687937,123.98,89.64951 +687938,123.21,87.8909 +687939,122.49,86.1646 +687940,121.81,84.4677 +687941,122.58,89.67725 +687942,121.85,87.9155 +687943,121.17,86.1854 +687944,120.53,84.4843 +687945,121.19,89.70361 +687946,120.5,87.9396 +687947,119.85,86.2067 +687948,119.25,84.5022 +687949,119.79,89.7286 +687950,119.14,87.9633 +687951,118.54,86.2284 +687952,117.97,84.5215 +687953,118.4,89.7522 +687954,117.78,87.9865 +687955,117.22,86.2506 +687956,116.69,84.5421 +687957,117,89.77443 +687958,116.43,88.0092 +687959,115.9,86.2731 +687960,115.41,84.5641 +687961,115.6,89.79528 +687962,115.07,88.0314 +687963,114.58,86.2962 +687964,114.13,84.5873 +687965,114.21,89.81475 +687966,113.71,88.0532 +687967,113.26,86.3196 +687968,112.85,84.6119 +687969,112.81,89.83284 +687970,112.36,88.0745 +687971,111.95,86.3435 +687972,111.57,84.6379 +687973,111.41,89.84956 +687974,111,88.0954 +687975,110.63,86.3678 +687976,110.3,84.6651 +687977,110.01,89.86491 +687978,109.64,88.1158 +687979,109.31,86.3926 +687980,109.02,84.6937 +687981,108.61,89.87888 +687982,108.28,88.1357 +687983,107.99,86.4178 +687984,107.74,84.7237 +687985,107.21,89.8915 +687986,106.93,88.1551 +687987,106.68,86.4434 +687988,106.46,84.755 +687989,105.82,89.902758 +687990,105.57,88.1741 +687991,105.36,86.4694 +687992,105.18,84.7875 +687993,104.42,89.912664 +687994,104.21,88.1926 +687995,104.04,86.4959 +687996,103.91,84.8215 +687997,103.02,89.921225 +687998,102.85,88.2107 +687999,102.72,86.5228 +688000,102.63,84.8567 +688001,101.62,89.928447 +688002,101.49,88.2283 +688003,101.41,86.5502 +688004,101.35,84.8933 +688005,100.22,89.934339 +688006,100.14,88.2454 +688007,100.09,86.5779 +688008,100.07,84.9311 +688009,98.819,89.938909 +688010,98.777,88.2621 +688011,98.77,86.6061 +688012,98.793,84.9703 +688013,97.419,89.942168 +688014,97.419,88.2784 +688015,97.452,86.6347 +688016,97.515,85.0108 +688017,96.02,89.944123 +688018,96.061,88.2942 +688019,96.134,86.6637 +688020,96.236,85.0525 +688021,94.621,89.944788 +688022,94.703,88.3095 +688023,94.816,86.6932 +688024,94.958,85.0955 +688025,93.222,89.944171 +688026,93.345,88.3244 +688027,93.498,86.723 +688028,93.679,85.1398 +688029,91.823,89.942286 +688030,91.986,88.3389 +688031,92.179,86.7532 +688032,92.401,85.1854 +688033,90.424,89.939146 +688034,90.628,88.3529 +688035,90.861,86.7839 +688036,91.121,85.2322 +688037,89.026,89.934762 +688038,89.27,88.3665 +688039,89.543,86.8149 +688040,89.842,85.2802 +688041,87.628,89.929149 +688042,87.912,88.3797 +688043,88.224,86.8464 +688044,88.562,85.3295 +688045,86.23,89.922322 +688046,86.554,88.3925 +688047,86.905,86.8782 +688048,87.282,85.38 +688049,84.832,89.914295 +688050,85.196,88.4048 +688051,85.586,86.9104 +688052,86.002,85.4317 +688053,83.435,89.905084 +688054,83.838,88.4167 +688055,84.267,86.943 +688056,84.721,85.4846 +688057,82.038,89.89471 +688058,82.481,88.4282 +688059,82.948,86.976 +688060,83.44,85.5386 +688061,80.642,89.88318 +688062,81.123,88.4394 +688063,81.629,87.0093 +688064,82.159,85.5938 +688065,79.246,89.87051 +688066,79.765,88.4501 +688067,80.309,87.043 +688068,80.877,85.6502 +688069,77.85,89.85673 +688070,78.408,88.4604 +688071,78.99,87.0771 +688072,79.594,85.7077 +688073,76.455,89.84185 +688074,77.051,88.4704 +688075,77.67,87.1115 +688076,78.311,85.7663 +688077,75.06,89.8259 +688078,75.694,88.4799 +688079,76.349,87.1463 +688080,77.027,85.8259 +688081,73.666,89.80888 +688082,74.337,88.4891 +688083,75.029,87.1814 +688084,75.743,85.8867 +688085,72.273,89.79083 +688086,72.98,88.498 +688087,73.708,87.2168 +688088,74.458,85.9485 +688089,70.88,89.77176 +688090,71.623,88.5064 +688091,72.387,87.2525 +688092,73.173,86.0113 +688093,69.488,89.75168 +688094,70.267,88.5145 +688095,71.066,87.2886 +688096,71.887,86.0752 +688097,68.097,89.73064 +688098,68.91,88.5223 +688099,69.745,87.325 +688100,70.6,86.14 +688101,66.706,89.70864 +688102,67.554,88.5298 +688103,68.423,87.3617 +688104,69.312,86.2058 +688105,65.316,89.6857 +688106,66.198,88.5369 +688107,67.101,87.3987 +688108,68.024,86.2726 +688109,63.927,89.66186 +688110,64.843,88.5436 +688111,65.779,87.436 +688112,66.735,86.3403 +688113,62.538,89.63713 +688114,63.487,88.5501 +688115,64.456,87.4736 +688116,65.445,86.4089 +688117,61.15,89.61154 +688118,62.132,88.5563 +688119,63.133,87.5114 +688120,64.154,86.4784 +688121,59.763,89.58511 +688122,60.777,88.5621 +688123,61.81,87.5495 +688124,62.863,86.5488 +688125,58.377,89.55786 +688126,59.422,88.5677 +688127,60.487,87.5879 +688128,61.57,86.62 +688129,56.992,89.52983 +688130,58.068,88.573 +688131,59.163,87.6265 +688132,60.277,86.692 +688133,55.608,89.50103 +688134,56.713,88.578 +688135,57.839,87.6654 +688136,58.983,86.7647 +688137,54.225,89.4715 +688138,55.36,88.5827 +688139,56.514,87.7045 +688140,57.688,86.8383 +688141,52.842,89.44125 +688142,54.006,88.5872 +688143,55.189,87.7438 +688144,56.392,86.9125 +688145,51.461,89.41031 +688146,52.652,88.5914 +688147,53.864,87.7833 +688148,55.095,86.9875 +688149,50.08,89.37872 +688150,51.299,88.5954 +688151,52.538,87.8231 +688152,53.797,87.0632 +688153,48.701,89.34649 +688154,49.947,88.5992 +688155,51.212,87.863 +688156,52.498,87.1395 +688157,47.322,89.31366 +688158,48.594,88.6027 +688159,49.886,87.9031 +688160,51.198,87.2164 +688161,45.945,89.28025 +688162,47.242,88.606 +688163,48.559,87.9434 +688164,49.896,87.294 +688165,44.568,89.24629 +688166,45.89,88.6091 +688167,47.232,87.9839 +688168,48.594,87.3721 +688169,43.193,89.21181 +688170,44.538,88.6121 +688171,45.905,88.0245 +688172,47.291,87.4507 +688173,41.819,89.17683 +688174,43.187,88.6148 +688175,44.577,88.0653 +688176,45.987,87.5298 +688177,40.446,89.14139 +688178,41.836,88.6173 +688179,43.248,88.1062 +688180,44.681,87.6095 +688181,39.074,89.1055 +688182,40.486,88.6197 +688183,41.92,88.1472 +688184,43.374,87.6895 +688185,37.703,89.06922 +688186,39.136,88.622 +688187,40.59,88.1884 +688188,42.066,87.77 +688189,36.333,89.03255 +688190,37.786,88.6241 +688191,39.261,88.2297 +688192,40.757,87.8509 +688193,34.964,88.9955 +688194,36.436,88.626 +688195,37.931,88.271 +688196,39.447,87.9321 +688197,33.597,88.9582 +688198,35.087,88.6278 +688199,36.6,88.3125 +688200,38.136,88.0137 +688201,32.231,88.9206 +688202,33.738,88.6295 +688203,35.269,88.354 +688204,36.823,88.0956 +688205,30.866,88.8827 +688206,32.39,88.6311 +688207,33.938,88.3956 +688208,35.509,88.1777 +688209,29.502,88.8445 +688210,31.042,88.6327 +688211,32.606,88.4373 +688212,34.194,88.26 +688213,28.139,88.8062 +688214,29.694,88.6341 +688215,31.274,88.479 +688216,32.877,88.3426 +688217,26.778,88.7677 +688218,28.347,88.6354 +688219,29.941,88.5207 +688220,31.56,88.4253 +688221,25.418,88.7291 +688222,27,88.6367 +688223,28.608,88.5625 +688224,30.241,88.5082 +688225,24.059,88.6903 +688226,25.654,88.6379 +688227,27.274,88.6043 +688228,28.92,88.5911 +688229,22.702,88.6515 +688230,24.308,88.6391 +688231,25.94,88.646 +688232,27.599,88.6742 +688233,21.345,88.6126 +688234,22.962,88.6402 +688235,24.605,88.6878 +688236,26.276,88.7572 +688237,19.99,88.5737 +688238,21.616,88.6413 +688239,23.27,88.7296 +688240,24.952,88.8403 +688241,18.636,88.5348 +688242,20.272,88.6424 +688243,21.935,88.7713 +688244,23.626,88.9233 +688245,17.284,88.4959 +688246,18.927,88.6435 +688247,20.598,88.813 +688248,22.299,89.00631 +688249,15.933,88.4572 +688250,17.583,88.6446 +688251,19.262,88.8546 +688252,20.971,89.0892 +688253,14.583,88.4185 +688254,16.239,88.6457 +688255,17.925,88.8962 +688256,19.641,89.17196 +688257,13.234,88.3799 +688258,14.896,88.6468 +688259,16.587,88.9377 +688260,18.31,89.25456 +688261,11.887,88.3415 +688262,13.553,88.648 +688263,15.249,88.9791 +688264,16.978,89.33697 +688265,10.541,88.3033 +688266,12.21,88.6492 +688267,13.911,89.02042 +688268,15.644,89.41916 +688269,9.1961,88.2653 +688270,10.868,88.6505 +688271,12.572,89.06164 +688272,14.309,89.50108 +688273,7.8527,88.2275 +688274,9.5265,88.6518 +688275,11.233,89.10275 +688276,12.973,89.58272 +688277,6.5105,88.1901 +688278,8.1852,88.6532 +688279,9.8926,89.14373 +688280,11.635,89.66403 +688281,5.1697,88.1529 +688282,6.8443,88.6547 +688283,8.5522,89.18457 +688284,10.296,89.74499 +688285,3.8301,88.1161 +688286,5.5038,88.6563 +688287,7.2112,89.22527 +688288,8.9551,89.82555 +688289,2.4918,88.0796 +688290,4.1637,88.658 +688291,5.8698,89.26581 +688292,7.6131,89.905703 +688293,1.1548,88.0436 +688294,2.824,88.6599 +688295,4.528,89.30619 +688296,6.2697,89.985398 +688297,359.82,88.0079 +688298,1.4847,88.6618 +688299,3.1856,89.34638 +688300,4.925,90.06461 +688301,358.48,87.9728 +688302,0.14583,88.6639 +688303,1.8427,89.38639 +688304,3.5789,90.14331 +688305,357.15,87.9381 +688306,358.81,88.6661 +688307,0.49939,89.4262 +688308,2.2314,90.22145 +688309,355.82,87.9039 +688310,357.47,88.6685 +688311,359.16,89.4658 +688312,0.88253,90.29902 +688313,354.49,87.8702 +688314,356.13,88.671 +688315,357.81,89.50518 +688316,359.53,90.37599 +688317,353.16,87.8371 +688318,354.79,88.6738 +688319,356.47,89.54433 +688320,358.18,90.45231 +688321,351.83,87.8046 +688322,353.46,88.6767 +688323,355.12,89.58325 +688324,356.83,90.52796 +688325,350.5,87.7727 +688326,352.12,88.6798 +688327,353.78,89.62192 +688328,355.47,90.60291 +688329,349.18,87.7415 +688330,350.78,88.6831 +688331,352.43,89.66033 +688332,354.12,90.67713 +688333,347.85,87.7109 +688334,349.45,88.6866 +688335,351.08,89.69847 +688336,352.76,90.75059 +688337,346.53,87.6811 +688338,348.11,88.6903 +688339,349.74,89.73634 +688340,351.4,90.82327 +688341,345.21,87.6519 +688342,346.78,88.6942 +688343,348.39,89.77392 +688344,350.04,90.89513 +688345,343.89,87.6235 +688346,345.44,88.6984 +688347,347.04,89.8112 +688348,348.68,90.96614 +688349,342.57,87.5959 +688350,344.11,88.7029 +688351,345.69,89.84819 +688352,347.32,91.0363 +688353,341.25,87.5691 +688354,342.78,88.7076 +688355,344.34,89.88486 +688356,345.96,91.1055 +688357,339.93,87.5431 +688358,341.44,88.7125 +688359,342.99,89.921207 +688360,344.59,91.1738 +688361,338.62,87.518 +688362,340.11,88.7177 +688363,341.64,89.957227 +688364,343.23,91.2412 +688365,337.3,87.4937 +688366,338.78,88.7232 +688367,340.29,89.9929081 +688368,341.86,91.3076 +688369,335.99,87.4703 +688370,337.44,88.729 +688371,338.94,90.028243 +688372,340.49,91.373 +688373,334.67,87.4479 +688374,336.11,88.7351 +688375,337.59,90.063223 +688376,339.12,91.4373 +688377,333.36,87.4264 +688378,334.78,88.7415 +688379,336.24,90.097841 +688380,337.75,91.5006 +688381,332.05,87.4058 +688382,333.45,88.7481 +688383,334.89,90.13209 +688384,336.38,91.5629 +688385,330.74,87.3862 +688386,332.12,88.7551 +688387,333.53,90.16596 +688388,335,91.624 +688389,329.43,87.3676 +688390,330.79,88.7624 +688391,332.18,90.19944 +688392,333.63,91.684 +688393,328.12,87.3501 +688394,329.46,88.7701 +688395,330.83,90.23254 +688396,332.25,91.7428 +688397,326.82,87.3336 +688398,328.13,88.7781 +688399,329.48,90.26523 +688400,330.88,91.8005 +688401,325.51,87.3182 +688402,326.8,88.7864 +688403,328.12,90.29752 +688404,329.5,91.8571 +688405,324.21,87.3038 +688406,325.47,88.7951 +688407,326.77,90.32939 +688408,328.12,91.9124 +688409,322.9,87.2905 +688410,324.14,88.8041 +688411,325.41,90.36085 +688412,326.74,91.9664 +688413,321.6,87.2784 +688414,322.81,88.8135 +688415,324.06,90.39188 +688416,325.36,92.0193 +688417,320.3,87.2674 +688418,321.48,88.8232 +688419,322.7,90.42248 +688420,323.98,92.0708 +688421,319,87.2576 +688422,320.15,88.8334 +688423,321.35,90.45264 +688424,322.59,92.1211 +688425,317.7,87.2489 +688426,318.82,88.8439 +688427,319.99,90.48236 +688428,321.21,92.1701 +688429,316.4,87.2414 +688430,317.49,88.8547 +688431,318.63,90.51163 +688432,319.82,92.2178 +688433,315.1,87.2351 +688434,316.17,88.866 +688435,317.28,90.54045 +688436,318.44,92.2642 +688437,313.8,87.23 +688438,314.84,88.8777 +688439,315.92,90.56881 +688440,317.05,92.3092 +688441,312.5,87.2261 +688442,313.51,88.8897 +688443,314.56,90.59671 +688444,315.66,92.3528 +688445,311.2,87.2235 +688446,312.18,88.9022 +688447,313.2,90.62414 +688448,314.28,92.3951 +688449,309.91,87.2221 +688450,310.86,88.915 +688451,311.85,90.6511 +688452,312.89,92.436 +688453,308.61,87.222 +688454,309.53,88.9283 +688455,310.49,90.67758 +688456,311.5,92.4755 +688457,307.32,87.2232 +688458,308.2,88.942 +688459,309.13,90.70359 +688460,310.1,92.5137 +688461,306.02,87.2257 +688462,306.88,88.9561 +688463,307.77,90.72911 +688464,308.71,92.5504 +688465,304.73,87.2294 +688466,305.55,88.9706 +688467,306.41,90.75414 +688468,307.32,92.5856 +688469,303.44,87.2345 +688470,304.22,88.9855 +688471,305.05,90.77869 +688472,305.93,92.6195 +688473,302.14,87.2409 +688474,302.9,89.00086 +688475,303.69,90.80274 +688476,304.53,92.6519 +688477,300.85,87.2486 +688478,301.57,89.01664 +688479,302.33,90.8263 +688480,303.14,92.6828 +688481,299.56,87.2576 +688482,300.25,89.03285 +688483,300.97,90.84936 +688484,301.74,92.7123 +688485,298.27,87.268 +688486,298.92,89.04949 +688487,299.61,90.87192 +688488,300.35,92.7404 +688489,296.98,87.2797 +688490,297.6,89.06656 +688491,298.25,90.89398 +688492,298.95,92.7669 +688493,295.69,87.2927 +688494,296.27,89.08406 +688495,296.89,90.91554 +688496,297.55,92.792 +688497,294.4,87.3071 +688498,294.95,89.102 +688499,295.53,90.9366 +688500,296.16,92.8157 +688501,293.11,87.3229 +688502,293.62,89.12037 +688503,294.17,90.95715 +688504,294.76,92.8379 +688505,291.82,87.34 +688506,292.3,89.13919 +688507,292.81,90.97719 +688508,293.36,92.8585 +688509,290.53,87.3585 +688510,290.97,89.15843 +688511,291.45,90.99673 +688512,291.96,92.8778 +688513,289.24,87.3784 +688514,289.65,89.17812 +688515,290.08,91.0158 +688516,290.56,92.8955 +688517,287.95,87.3996 +688518,288.32,89.19825 +688519,288.72,91.0343 +688520,289.16,92.9118 +688521,286.67,87.4222 +688522,287,89.21881 +688523,287.36,91.0523 +688524,287.77,92.9266 +688525,285.38,87.4461 +688526,285.67,89.23981 +688527,286,91.0698 +688528,286.37,92.9399 +688529,284.09,87.4714 +688530,284.35,89.26125 +688531,284.64,91.0868 +688532,284.96,92.9518 +688533,282.8,87.4981 +688534,283.02,89.28312 +688535,283.27,91.1033 +688536,283.56,92.9622 +688537,281.52,87.5262 +688538,281.7,89.30543 +688539,281.91,91.1193 +688540,282.16,92.9711 +688541,280.23,87.5556 +688542,280.37,89.32817 +688543,280.55,91.1348 +688544,280.76,92.9786 +688545,278.94,87.5863 +688546,279.05,89.35134 +688547,279.19,91.1498 +688548,279.36,92.9846 +688549,277.65,87.6185 +688550,277.72,89.37495 +688551,277.83,91.1643 +688552,277.96,92.9892 +688553,276.36,87.6519 +688554,276.4,89.39898 +688555,276.46,91.1783 +688556,276.56,92.9924 +688557,275.08,87.6867 +688558,275.07,89.42344 +688559,275.1,91.1918 +688560,275.16,92.9941 +688561,273.79,87.7228 +688562,273.75,89.44832 +688563,273.74,91.2048 +688564,273.76,92.9945 +688565,272.5,87.7603 +688566,272.42,89.47363 +688567,272.38,91.2173 +688568,272.36,92.9934 +688569,271.21,87.7991 +688570,271.1,89.49935 +688571,271.01,91.2293 +688572,270.96,92.9909 +688573,269.93,87.8392 +688574,269.77,89.52549 +688575,269.65,91.2408 +688576,269.56,92.9871 +688577,268.64,87.8805 +688578,268.45,89.55203 +688579,268.29,91.2519 +688580,268.15,92.9818 +688581,267.35,87.9232 +688582,267.12,89.57899 +688583,266.93,91.2625 +688584,266.75,92.9753 +688585,266.06,87.9672 +688586,265.8,89.60635 +688587,265.56,91.2726 +688588,265.35,92.9673 +688589,264.77,88.0124 +688590,264.47,89.63411 +688591,264.2,91.2823 +688592,263.95,92.9581 +688593,263.48,88.0589 +688594,263.15,89.66226 +688595,262.84,91.2915 +688596,262.55,92.9475 +688597,262.19,88.1066 +688598,261.82,89.69081 +688599,261.48,91.3002 +688600,261.15,92.9356 +688601,260.9,88.1556 +688602,260.5,89.71974 +688603,260.11,91.3085 +688604,259.75,92.9225 +688605,259.61,88.2058 +688606,259.17,89.74905 +688607,258.75,91.3163 +688608,258.36,92.9081 +688609,258.32,88.2571 +688610,257.84,89.77874 +688611,257.39,91.3237 +688612,256.96,92.8924 +688613,257.03,88.3097 +688614,256.52,89.8088 +688615,256.03,91.3306 +688616,255.56,92.8755 +688617,255.74,88.3635 +688618,255.19,89.83922 +688619,254.67,91.3371 +688620,254.16,92.8574 +688621,254.44,88.4184 +688622,253.86,89.87001 +688623,253.3,91.3432 +688624,252.76,92.8381 +688625,253.15,88.4744 +688626,252.54,89.901143 +688627,251.94,91.3489 +688628,251.37,92.8176 +688629,251.86,88.5315 +688630,251.21,89.932624 +688631,250.58,91.3541 +688632,249.97,92.7959 +688633,250.56,88.5898 +688634,249.88,89.964446 +688635,249.22,91.359 +688636,248.57,92.7732 +688637,249.27,88.6492 +688638,248.55,89.9966011 +688639,247.86,91.3634 +688640,247.18,92.7493 +688641,247.97,88.7096 +688642,247.23,90.029083 +688643,246.5,91.3675 +688644,245.78,92.7243 +688645,246.68,88.771 +688646,245.9,90.061884 +688647,245.14,91.3711 +688648,244.39,92.6983 +688649,245.38,88.8335 +688650,244.57,90.094997 +688651,243.78,91.3744 +688652,243,92.6712 +688653,244.08,88.897 +688654,243.24,90.12841 +688655,242.42,91.3773 +688656,241.6,92.6431 +688657,242.79,88.9614 +688658,241.91,90.16213 +688659,241.05,91.3799 +688660,240.21,92.6139 +688661,241.49,89.02682 +688662,240.58,90.19613 +688663,239.69,91.3821 +688664,238.82,92.5839 +688665,240.19,89.09316 +688666,239.25,90.23042 +688667,238.33,91.3839 +688668,237.43,92.5528 +688669,238.89,89.16042 +688670,237.92,90.26498 +688671,236.98,91.3854 +688672,236.04,92.5209 +688673,237.59,89.22856 +688674,236.59,90.2998 +688675,235.62,91.3866 +688676,234.65,92.488 +688677,236.28,89.29757 +688678,235.26,90.33488 +688679,234.26,91.3875 +688680,233.26,92.4543 +688681,234.98,89.36741 +688682,233.93,90.37021 +688683,232.9,91.388 +688684,231.88,92.4197 +688685,233.68,89.43806 +688686,232.6,90.40578 +688687,231.54,91.3882 +688688,230.49,92.3843 +688689,232.37,89.5095 +688690,231.27,90.44157 +688691,230.18,91.3882 +688692,229.1,92.3481 +688693,231.07,89.5817 +688694,229.94,90.47759 +688695,228.82,91.3878 +688696,227.72,92.3112 +688697,229.76,89.65463 +688698,228.61,90.51382 +688699,227.47,91.3872 +688700,226.34,92.2735 +688701,228.45,89.72827 +688702,227.27,90.55025 +688703,226.11,91.3862 +688704,224.95,92.2351 +688705,227.15,89.80258 +688706,225.94,90.58688 +688707,224.75,91.3851 +688708,223.57,92.196 +688709,225.84,89.87754 +688710,224.61,90.62369 +688711,223.39,91.3837 +688712,222.19,92.1563 +688713,224.53,89.95312 +688714,223.28,90.66067 +688715,222.04,91.382 +688716,220.81,92.1159 +688717,223.21,90.029293 +688718,221.94,90.69781 +688719,220.68,91.3801 +688720,219.43,92.075 +688721,221.9,90.10603 +688722,220.61,90.73511 +688723,219.32,91.378 +688724,218.05,92.0335 +688725,220.59,90.18329 +688726,219.27,90.77255 +688727,217.97,91.3757 +688728,216.68,91.9915 +688729,219.27,90.26106 +688730,217.94,90.81013 +688731,216.61,91.3731 +688732,215.3,91.9489 +688733,217.96,90.3393 +688734,216.6,90.84783 +688735,215.26,91.3704 +688736,213.93,91.9059 +688737,216.64,90.41798 +688738,215.27,90.88564 +688739,213.9,91.3675 +688740,212.55,91.8624 +688741,215.32,90.49707 +688742,213.93,90.92355 +688743,212.55,91.3644 +688744,211.18,91.8186 +688745,214,90.57653 +688746,212.59,90.96156 +688747,211.19,91.3612 +688748,209.81,91.7743 +688749,212.68,90.65635 +688750,211.26,90.99964 +688751,209.84,91.3578 +688752,208.44,91.7297 +688753,211.36,90.73647 +688754,209.92,91.0378 +688755,208.49,91.3543 +688756,207.07,91.6848 +688757,210.04,90.81688 +688758,208.58,91.076 +688759,207.13,91.3506 +688760,205.7,91.6395 +688761,208.72,90.89754 +688762,207.24,91.1143 +688763,205.78,91.3468 +688764,204.34,91.5941 +688765,207.39,90.97842 +688766,205.9,91.1526 +688767,204.43,91.3429 +688768,202.97,91.5484 +688769,206.07,91.0595 +688770,204.56,91.1909 +688771,203.08,91.3389 +688772,201.61,91.5025 +688773,204.74,91.1407 +688774,203.22,91.2292 +688775,201.73,91.3349 +688776,200.24,91.4564 +688777,203.41,91.222 +688778,201.88,91.2676 +688779,200.38,91.3307 +688780,198.88,91.4102 +688781,202.08,91.3034 +688782,200.54,91.3059 +688783,199.02,91.3265 +688784,197.52,91.3639 +688785,200.75,91.3849 +688786,199.2,91.3443 +688787,197.67,91.3222 +688788,196.16,91.3176 +688789,199.42,91.4664 +688790,197.86,91.3826 +688791,196.32,91.3179 +688792,194.8,91.2712 +688793,198.08,91.5478 +688794,196.52,91.4208 +688795,194.97,91.3135 +688796,193.45,91.2248 +688797,196.75,91.6293 +688798,195.18,91.459 +688799,193.62,91.3091 +688800,192.09,91.1784 +688801,195.41,91.7106 +688802,193.84,91.4972 +688803,192.28,91.3047 +688804,190.73,91.1321 +688805,194.07,91.7918 +688806,192.49,91.5352 +688807,190.93,91.3003 +688808,189.38,91.0858 +688809,192.74,91.8729 +688810,191.15,91.5732 +688811,189.58,91.2959 +688812,188.03,91.0397 +688813,191.4,91.9538 +688814,189.8,91.6111 +688815,188.23,91.2916 +688816,186.68,90.99375 +688817,190.05,92.0344 +688818,188.46,91.6489 +688819,186.88,91.2872 +688820,185.33,90.94796 +688821,188.71,92.1148 +688822,187.11,91.6866 +688823,185.54,91.2829 +688824,183.98,90.90239 +688825,187.37,92.1949 +688826,185.77,91.7241 +688827,184.19,91.2787 +688828,182.63,90.85706 +688829,186.02,92.2747 +688830,184.42,91.7615 +688831,182.84,91.2745 +688832,181.29,90.81201 +688833,184.68,92.3542 +688834,183.08,91.7987 +688835,181.5,91.2703 +688836,179.94,90.76726 +688837,183.33,92.4332 +688838,181.73,91.8358 +688839,180.15,91.2663 +688840,178.6,90.72284 +688841,181.98,92.5119 +688842,180.38,91.8727 +688843,178.81,91.2623 +688844,177.26,90.67879 +688845,180.63,92.5901 +688846,179.03,91.9095 +688847,177.46,91.2585 +688848,175.91,90.63513 +688849,179.28,92.6678 +688850,177.69,91.946 +688851,176.12,91.2547 +688852,174.57,90.5919 +688853,177.93,92.7449 +688854,176.34,91.9823 +688855,174.78,91.2511 +688856,173.24,90.54912 +688857,176.57,92.8215 +688858,174.99,92.0184 +688859,173.43,91.2476 +688860,171.9,90.50683 +688861,175.22,92.8976 +688862,173.64,92.0543 +688863,172.09,91.2443 +688864,170.56,90.46505 +688865,173.86,92.973 +688866,172.29,92.09 +688867,170.75,91.2411 +688868,169.23,90.42381 +688869,172.5,93.0477 +688870,170.94,92.1254 +688871,169.4,91.2381 +688872,167.89,90.38314 +688873,171.14,93.1218 +688874,169.59,92.1605 +688875,168.06,91.2352 +688876,166.56,90.34307 +688877,169.78,93.1952 +688878,168.24,92.1954 +688879,166.72,91.2325 +688880,165.23,90.30362 +688881,168.42,93.2678 +688882,166.88,92.23 +688883,165.38,91.23 +688884,163.9,90.26483 +688885,167.06,93.3397 +688886,165.53,92.2643 +688887,164.04,91.2278 +688888,162.57,90.22672 +688889,165.69,93.4107 +688890,164.18,92.2983 +688891,162.7,91.2257 +688892,161.24,90.18931 +688893,164.33,93.4809 +688894,162.83,92.332 +688895,161.36,91.2238 +688896,159.91,90.15264 +688897,162.96,93.5502 +688898,161.47,92.3654 +688899,160.02,91.2222 +688900,158.59,90.11673 +688901,161.59,93.6187 +688902,160.12,92.3985 +688903,158.68,91.2208 +688904,157.26,90.081611 +688905,160.22,93.6862 +688906,158.76,92.4312 +688907,157.34,91.2196 +688908,155.94,90.047299 +688909,158.85,93.7527 +688910,157.41,92.4636 +688911,156,91.2187 +688912,154.62,90.013823 +688913,157.48,93.8183 +688914,156.06,92.4957 +688915,154.66,91.2181 +688916,153.3,89.981208 +688917,156.11,93.8829 +688918,154.7,92.5273 +688919,153.32,91.2177 +688920,151.97,89.949478 +688921,154.74,93.9464 +688922,153.34,92.5586 +688923,151.98,91.2176 +688924,150.65,89.918656 +688925,153.36,94.0089 +688926,151.99,92.5896 +688927,150.65,91.2178 +688928,149.34,89.88877 +688929,151.99,94.0703 +688930,150.63,92.6201 +688931,149.31,91.2183 +688932,148.02,89.85983 +688933,150.61,94.1305 +688934,149.27,92.6503 +688935,147.97,91.2191 +688936,146.7,89.83188 +688937,149.23,94.1897 +688938,147.92,92.68 +688939,146.64,91.2202 +688940,145.39,89.80492 +688941,147.85,94.2476 +688942,146.56,92.7093 +688943,145.3,91.2216 +688944,144.07,89.77898 +688945,146.47,94.3044 +688946,145.2,92.7382 +688947,143.96,91.2233 +688948,142.76,89.75408 +688949,145.09,94.36 +688950,143.84,92.7667 +688951,142.63,91.2254 +688952,141.45,89.73024 +688953,143.71,94.4143 +688954,142.48,92.7948 +688955,141.29,91.2278 +688956,140.13,89.70749 +688957,142.33,94.4674 +688958,141.12,92.8224 +688959,139.96,91.2305 +688960,138.82,89.68584 +688961,140.94,94.5192 +688962,139.76,92.8495 +688963,138.62,91.2336 +688964,137.51,89.6653 +688965,139.56,94.5697 +688966,138.4,92.8762 +688967,137.29,91.237 +688968,136.2,89.6459 +688969,138.17,94.6189 +688970,137.04,92.9025 +688971,135.95,91.2408 +688972,134.89,89.62766 +688973,136.78,94.6668 +688974,135.68,92.9283 +688975,134.62,91.245 +688976,133.59,89.61059 +688977,135.4,94.7133 +688978,134.32,92.9536 +688979,133.29,91.2496 +688980,132.28,89.5947 +688981,134.01,94.7584 +688982,132.96,92.9784 +688983,131.95,91.2545 +688984,130.97,89.58002 +688985,132.62,94.8022 +688986,131.6,93.0027 +688987,130.62,91.2598 +688988,129.67,89.56656 +688989,131.23,94.8445 +688990,130.24,93.0266 +688991,129.28,91.2655 +688992,128.36,89.55434 +688993,129.84,94.8854 +688994,128.88,93.05 +688995,127.95,91.2716 +688996,127.06,89.54336 +688997,128.44,94.9249 +688998,127.51,93.0728 +688999,126.62,91.2781 +689000,125.76,89.53364 +689001,127.05,94.9629 +689002,126.15,93.0952 +689003,125.29,91.2849 +689004,124.45,89.5252 +689005,125.66,94.9995 +689006,124.79,93.117 +689007,123.95,91.2922 +689008,123.15,89.51805 +689009,124.26,95.0346 +689010,123.42,93.1384 +689011,122.62,91.2999 +689012,121.85,89.51219 +689013,122.87,95.0682 +689014,122.06,93.1592 +689015,121.29,91.308 +689016,120.55,89.50764 +689017,121.47,95.1003 +689018,120.7,93.1795 +689019,119.96,91.3166 +689020,119.25,89.50441 +689021,120.08,95.131 +689022,119.33,93.1993 +689023,118.63,91.3255 +689024,117.95,89.50251 +689025,118.68,95.16 +689026,117.97,93.2185 +689027,117.29,91.3349 +689028,116.65,89.50195 +689029,117.29,95.1876 +689030,116.61,93.2373 +689031,115.96,91.3447 +689032,115.35,89.50273 +689033,115.89,95.2137 +689034,115.24,93.2555 +689035,114.63,91.3549 +689036,114.05,89.50487 +689037,114.49,95.2381 +689038,113.88,93.2731 +689039,113.3,91.3655 +689040,112.75,89.50836 +689041,113.09,95.2611 +689042,112.51,93.2903 +689043,111.97,91.3766 +689044,111.45,89.51323 +689045,111.69,95.2825 +689046,111.15,93.3069 +689047,110.64,91.3881 +689048,110.15,89.51946 +689049,110.29,95.3024 +689050,109.78,93.3229 +689051,109.31,91.4001 +689052,108.86,89.52708 +689053,108.89,95.3206 +689054,108.42,93.3384 +689055,107.97,91.4125 +689056,107.56,89.53607 +689057,107.49,95.3374 +689058,107.05,93.3534 +689059,106.64,91.4253 +689060,106.26,89.54645 +689061,106.09,95.3526 +689062,105.69,93.3678 +689063,105.31,91.4386 +689064,104.97,89.55822 +689065,104.69,95.3662 +689066,104.32,93.3817 +689067,103.98,91.4523 +689068,103.67,89.57138 +689069,103.29,95.3782 +689070,102.96,93.395 +689071,102.65,91.4664 +689072,102.37,89.58592 +689073,101.89,95.3887 +689074,101.59,93.4078 +689075,101.32,91.481 +689076,101.08,89.60187 +689077,100.49,95.3976 +689078,100.22,93.4201 +689079,99.99,91.496 +689080,99.782,89.6192 +689081,99.085,95.405 +689082,98.858,93.4318 +689083,98.659,91.5114 +689084,98.486,89.63792 +689085,97.683,95.4108 +689086,97.492,93.443 +689087,97.329,91.5273 +689088,97.19,89.65803 +689089,96.281,95.4151 +689090,96.126,93.4536 +689091,95.998,91.5436 +689092,95.895,89.67954 +689093,94.879,95.4178 +689094,94.759,93.4637 +689095,94.667,91.5604 +689096,94.599,89.70242 +689097,93.477,95.419 +689098,93.393,93.4732 +689099,93.336,91.5776 +689100,93.303,89.72669 +689101,92.075,95.4186 +689102,92.027,93.4822 +689103,92.006,91.5952 +689104,92.007,89.75234 +689105,90.673,95.4168 +689106,90.661,93.4907 +689107,90.675,91.6132 +689108,90.711,89.77935 +689109,89.27,95.4134 +689110,89.295,93.4987 +689111,89.344,91.6317 +689112,89.415,89.80774 +689113,87.868,95.4085 +689114,87.928,93.5061 +689115,88.013,91.6506 +689116,88.119,89.83748 +689117,86.466,95.4021 +689118,86.562,93.513 +689119,86.682,91.6699 +689120,86.823,89.86858 +689121,85.064,95.3942 +689122,85.196,93.5194 +689123,85.351,91.6897 +689124,85.527,89.901028 +689125,83.662,95.3849 +689126,83.83,93.5252 +689127,84.02,91.7099 +689128,84.23,89.934811 +689129,82.261,95.374 +689130,82.464,93.5305 +689131,82.689,91.7304 +689132,82.933,89.969922 +689133,80.859,95.3618 +689134,81.098,93.5353 +689135,81.357,91.7514 +689136,81.636,90.0063514 +689137,79.458,95.3481 +689138,79.732,93.5397 +689139,80.026,91.7728 +689140,80.339,90.04409 +689141,78.057,95.3329 +689142,78.366,93.5435 +689143,78.694,91.7946 +689144,79.041,90.083125 +689145,76.656,95.3164 +689146,77,93.5468 +689147,77.363,91.8168 +689148,77.743,90.12345 +689149,75.256,95.2985 +689150,75.634,93.5496 +689151,76.031,91.8394 +689152,76.444,90.16504 +689153,73.856,95.2792 +689154,74.268,93.5519 +689155,74.699,91.8623 +689156,75.146,90.20789 +689157,72.457,95.2585 +689158,72.903,93.5537 +689159,73.366,91.8857 +689160,73.846,90.25199 +689161,71.057,95.2366 +689162,71.537,93.5551 +689163,72.034,91.9094 +689164,72.547,90.29733 +689165,69.659,95.2132 +689166,70.172,93.5559 +689167,70.702,91.9335 +689168,71.246,90.34387 +689169,68.26,95.1886 +689170,68.807,93.5564 +689171,69.369,91.958 +689172,69.946,90.39162 +689173,66.862,95.1627 +689174,67.442,93.5563 +689175,68.036,91.9828 +689176,68.644,90.44056 +689177,65.465,95.1356 +689178,66.077,93.5558 +689179,66.703,92.008 +689180,67.343,90.49066 +689181,64.068,95.1072 +689182,64.712,93.5548 +689183,65.37,92.0335 +689184,66.04,90.54191 +689185,62.672,95.0775 +689186,63.347,93.5534 +689187,64.036,92.0594 +689188,64.737,90.5943 +689189,61.276,95.0467 +689190,61.983,93.5516 +689191,62.702,92.0856 +689192,63.434,90.64779 +689193,59.881,95.0147 +689194,60.619,93.5493 +689195,61.368,92.1122 +689196,62.13,90.70238 +689197,58.487,94.9816 +689198,59.254,93.5466 +689199,60.034,92.139 +689200,60.825,90.75805 +689201,57.093,94.9473 +689202,57.891,93.5435 +689203,58.7,92.1662 +689204,59.519,90.81477 +689205,55.7,94.912 +689206,56.527,93.54 +689207,57.365,92.1937 +689208,58.213,90.87252 +689209,54.308,94.8755 +689210,55.163,93.5361 +689211,56.03,92.2215 +689212,56.906,90.93128 +689213,52.917,94.838 +689214,53.8,93.5318 +689215,54.694,92.2495 +689216,55.598,90.99102 +689217,51.526,94.7995 +689218,52.437,93.5271 +689219,53.359,92.2779 +689220,54.29,91.0517 +689221,50.136,94.76 +689222,51.074,93.522 +689223,52.023,92.3065 +689224,52.981,91.1134 +689225,48.746,94.7195 +689226,49.712,93.5166 +689227,50.687,92.3354 +689228,51.67,91.176 +689229,47.358,94.6781 +689230,48.35,93.5108 +689231,49.35,92.3646 +689232,50.359,91.2394 +689233,45.971,94.6357 +689234,46.988,93.5047 +689235,48.014,92.394 +689236,49.048,91.3038 +689237,44.584,94.5925 +689238,45.626,93.4982 +689239,46.677,92.4236 +689240,47.735,91.3689 +689241,43.198,94.5484 +689242,44.264,93.4914 +689243,45.339,92.4535 +689244,46.421,91.4349 +689245,41.813,94.5034 +689246,42.903,93.4843 +689247,44.001,92.4836 +689248,45.107,91.5017 +689249,40.429,94.4577 +689250,41.542,93.4769 +689251,42.663,92.5139 +689252,43.791,91.5693 +689253,39.046,94.4112 +689254,40.182,93.4691 +689255,41.325,92.5444 +689256,42.475,91.6376 +689257,37.664,94.3639 +689258,38.821,93.4611 +689259,39.986,92.5751 +689260,41.158,91.7065 +689261,36.283,94.3159 +689262,37.461,93.4528 +689263,38.647,92.606 +689264,39.839,91.7762 +689265,34.903,94.2673 +689266,36.102,93.4442 +689267,37.308,92.6371 +689268,38.52,91.8465 +689269,33.524,94.218 +689270,34.742,93.4354 +689271,35.968,92.6683 +689272,37.2,91.9175 +689273,32.146,94.168 +689274,33.383,93.4263 +689275,34.628,92.6997 +689276,35.878,91.989 +689277,30.769,94.1175 +689278,32.024,93.4169 +689279,33.287,92.7312 +689280,34.556,92.0611 +689281,29.393,94.0665 +689282,30.666,93.4074 +689283,31.946,92.7629 +689284,33.233,92.1338 +689285,28.018,94.0148 +689286,29.308,93.3976 +689287,30.605,92.7947 +689288,31.908,92.2069 +689289,26.644,93.9627 +689290,27.95,93.3876 +689291,29.263,92.8266 +689292,30.582,92.2805 +689293,25.271,93.9102 +689294,26.593,93.3774 +689295,27.921,92.8586 +689296,29.256,92.3546 +689297,23.9,93.8572 +689298,25.236,93.367 +689299,26.579,92.8907 +689300,27.928,92.4291 +689301,22.529,93.8038 +689302,23.879,93.3564 +689303,25.236,92.9229 +689304,26.599,92.5039 +689305,21.16,93.75 +689306,22.523,93.3457 +689307,23.893,92.9551 +689308,25.269,92.5791 +689309,19.791,93.6959 +689310,21.167,93.3348 +689311,22.549,92.9874 +689312,23.938,92.6546 +689313,18.424,93.6415 +689314,19.811,93.3237 +689315,21.205,93.0198 +689316,22.605,92.7304 +689317,17.058,93.5869 +689318,18.456,93.3125 +689319,19.861,93.0522 +689320,21.272,92.8064 +689321,15.693,93.532 +689322,17.101,93.3012 +689323,18.516,93.0846 +689324,19.937,92.8827 +689325,14.329,93.4769 +689326,15.746,93.2898 +689327,17.171,93.117 +689328,18.601,92.9591 +689329,12.967,93.4216 +689330,14.392,93.2783 +689331,15.825,93.1494 +689332,17.264,93.0357 +689333,11.606,93.3662 +689334,13.038,93.2667 +689335,14.479,93.1818 +689336,15.926,93.1124 +689337,10.245,93.3107 +689338,11.685,93.255 +689339,13.132,93.2143 +689340,14.587,93.1892 +689341,8.8863,93.2551 +689342,10.332,93.2432 +689343,11.785,93.2466 +689344,13.246,93.266 +689345,7.5285,93.1995 +689346,8.9788,93.2314 +689347,10.438,93.279 +689348,11.904,93.3428 +689349,6.1719,93.1438 +689350,7.6265,93.2195 +689351,9.0901,93.3112 +689352,10.561,93.4196 +689353,4.8164,93.0882 +689354,6.2746,93.2076 +689355,7.7419,93.3434 +689356,9.2169,93.4964 +689357,3.4621,93.0327 +689358,4.923,93.1956 +689359,6.3932,93.3756 +689360,7.8715,93.5731 +689361,2.1091,92.9772 +689362,3.5719,93.1837 +689363,5.0442,93.4076 +689364,6.5248,93.6496 +689365,0.7572,92.9219 +689366,2.2211,93.1717 +689367,3.6947,93.4396 +689368,5.177,93.726 +689369,359.41,92.8667 +689370,0.87064,93.1598 +689371,2.3448,93.4714 +689372,3.8279,93.8022 +689373,358.06,92.8117 +689374,359.52,93.1479 +689375,0.99445,93.5031 +689376,2.4775,93.8782 +689377,356.71,92.7569 +689378,358.17,93.136 +689379,359.64,93.5347 +689380,1.126,93.9539 +689381,355.36,92.7024 +689382,356.82,93.1241 +689383,358.29,93.5662 +689384,359.77,94.0293 +689385,354.02,92.6482 +689386,355.47,93.1123 +689387,356.94,93.5975 +689388,358.42,94.1044 +689389,352.67,92.5943 +689390,354.12,93.1006 +689391,355.59,93.6286 +689392,357.06,94.1791 +689393,351.33,92.5407 +689394,352.78,93.0889 +689395,354.24,93.6595 +689396,355.71,94.2534 +689397,349.98,92.4875 +689398,351.43,93.0773 +689399,352.88,93.6903 +689400,354.35,94.3273 +689401,348.64,92.4347 +689402,350.08,93.0658 +689403,351.53,93.7208 +689404,352.99,94.4007 +689405,347.3,92.3824 +689406,348.73,93.0544 +689407,350.18,93.7512 +689408,351.63,94.4737 +689409,345.96,92.3305 +689410,347.39,93.0432 +689411,348.82,93.7813 +689412,350.27,94.5461 +689413,344.63,92.2791 +689414,346.04,93.032 +689415,347.47,93.8112 +689416,348.91,94.6179 +689417,343.29,92.2282 +689418,344.7,93.021 +689419,346.11,93.8408 +689420,347.54,94.6891 +689421,341.95,92.1779 +689422,343.35,93.0101 +689423,344.76,93.8702 +689424,346.18,94.7597 +689425,340.62,92.1282 +689426,342,92.9994 +689427,343.4,93.8993 +689428,344.81,94.8296 +689429,339.29,92.0792 +689430,340.66,92.9889 +689431,342.05,93.9282 +689432,343.45,94.8988 +689433,337.95,92.0307 +689434,339.32,92.9785 +689435,340.69,93.9567 +689436,342.08,94.9673 +689437,336.62,91.9829 +689438,337.97,92.9683 +689439,339.33,93.985 +689440,340.71,95.0351 +689441,335.29,91.9359 +689442,336.63,92.9583 +689443,337.97,94.013 +689444,339.34,95.102 +689445,333.96,91.8895 +689446,335.28,92.9485 +689447,336.62,94.0406 +689448,337.97,95.1681 +689449,332.64,91.8439 +689450,333.94,92.9389 +689451,335.26,94.0679 +689452,336.59,95.2334 +689453,331.31,91.7991 +689454,332.6,92.9296 +689455,333.9,94.0949 +689456,335.22,95.2978 +689457,329.98,91.7551 +689458,331.26,92.9205 +689459,332.54,94.1215 +689460,333.84,95.3612 +689461,328.66,91.712 +689462,329.91,92.9116 +689463,331.18,94.1478 +689464,332.47,95.4237 +689465,327.34,91.6696 +689466,328.57,92.9029 +689467,329.82,94.1737 +689468,331.09,95.4852 +689469,326.01,91.6282 +689470,327.23,92.8946 +689471,328.46,94.1993 +689472,329.71,95.5458 +689473,324.69,91.5877 +689474,325.89,92.8864 +689475,327.1,94.2244 +689476,328.33,95.6052 +689477,323.37,91.5481 +689478,324.55,92.8786 +689479,325.74,94.2492 +689480,326.95,95.6637 +689481,322.05,91.5095 +689482,323.21,92.8711 +689483,324.38,94.2736 +689484,325.57,95.721 +689485,320.73,91.4718 +689486,321.87,92.8638 +689487,323.02,94.2976 +689488,324.19,95.7772 +689489,319.41,91.4352 +689490,320.53,92.8568 +689491,321.66,94.3211 +689492,322.81,95.8323 +689493,318.1,91.3995 +689494,319.19,92.8502 +689495,320.3,94.3442 +689496,321.42,95.8862 +689497,316.78,91.3649 +689498,317.85,92.8438 +689499,318.93,94.3669 +689500,320.04,95.9389 +689501,315.46,91.3314 +689502,316.51,92.8378 +689503,317.57,94.3892 +689504,318.65,95.9904 +689505,314.15,91.299 +689506,315.17,92.8321 +689507,316.21,94.411 +689508,317.27,96.0407 +689509,312.83,91.2676 +689510,313.83,92.8267 +689511,314.85,94.4323 +689512,315.88,96.0897 +689513,311.52,91.2374 +689514,312.49,92.8217 +689515,313.48,94.4532 +689516,314.49,96.1374 +689517,310.21,91.2084 +689518,311.16,92.817 +689519,312.12,94.4736 +689520,313.1,96.1838 +689521,308.9,91.1805 +689522,309.82,92.8127 +689523,310.75,94.4935 +689524,311.71,96.2288 +689525,307.59,91.1537 +689526,308.48,92.8088 +689527,309.39,94.513 +689528,310.32,96.2725 +689529,306.28,91.1282 +689530,307.14,92.8052 +689531,308.02,94.532 +689532,308.93,96.3148 +689533,304.97,91.1039 +689534,305.8,92.8019 +689535,306.66,94.5504 +689536,307.53,96.3558 +689537,303.66,91.0808 +689538,304.47,92.7991 +689539,305.29,94.5684 +689540,306.14,96.3953 +689541,302.35,91.0589 +689542,303.13,92.7966 +689543,303.93,94.5859 +689544,304.75,96.4334 +689545,301.04,91.0383 +689546,301.79,92.7945 +689547,302.56,94.6028 +689548,303.35,96.47 +689549,299.73,91.019 +689550,300.46,92.7928 +689551,301.2,94.6192 +689552,301.96,96.5052 +689553,298.43,91.0009 +689554,299.12,92.7916 +689555,299.83,94.6352 +689556,300.56,96.5389 +689557,297.12,90.98419 +689558,297.79,92.7907 +689559,298.47,94.6505 +689560,299.17,96.5711 +689561,295.82,90.96875 +689562,296.45,92.7902 +689563,297.1,94.6654 +689564,297.77,96.6018 +689565,294.51,90.95463 +689566,295.11,92.7901 +689567,295.73,94.6797 +689568,296.37,96.631 +689569,293.21,90.94184 +689570,293.78,92.7904 +689571,294.37,94.6935 +689572,294.97,96.6587 +689573,291.9,90.93039 +689574,292.44,92.7912 +689575,293,94.7067 +689576,293.57,96.6848 +689577,290.6,90.92028 +689578,291.11,92.7923 +689579,291.63,94.7194 +689580,292.18,96.7093 +689581,289.29,90.91154 +689582,289.77,92.7939 +689583,290.27,94.7316 +689584,290.78,96.7323 +689585,287.99,90.90416 +689586,288.44,92.7959 +689587,288.9,94.7431 +689588,289.38,96.7537 +689589,286.69,90.89815 +689590,287.1,92.7984 +689591,287.53,94.7542 +689592,287.98,96.7735 +689593,285.39,90.89352 +689594,285.77,92.8013 +689595,286.16,94.7646 +689596,286.57,96.7917 +689597,284.08,90.89028 +689598,284.43,92.8046 +689599,284.79,94.7746 +689600,285.17,96.8084 +689601,282.78,90.88843 +689602,283.1,92.8083 +689603,283.43,94.7839 +689604,283.77,96.8234 +689605,281.48,90.88797 +689606,281.76,92.8124 +689607,282.06,94.7927 +689608,282.37,96.8368 +689609,280.18,90.88891 +689610,280.43,92.817 +689611,280.69,94.8009 +689612,280.97,96.8486 +689613,278.88,90.89125 +689614,279.09,92.8221 +689615,279.32,94.8086 +689616,279.57,96.8588 +689617,277.58,90.895 +689618,277.76,92.8276 +689619,277.95,94.8157 +689620,278.16,96.8674 +689621,276.27,90.90016 +689622,276.42,92.8335 +689623,276.59,94.8222 +689624,276.76,96.8743 +689625,274.97,90.90672 +689626,275.09,92.8398 +689627,275.22,94.8282 +689628,275.36,96.8796 +689629,273.67,90.91469 +689630,273.76,92.8466 +689631,273.85,94.8335 +689632,273.96,96.8834 +689633,272.37,90.92406 +689634,272.42,92.8538 +689635,272.48,94.8384 +689636,272.55,96.8855 +689637,271.07,90.93484 +689638,271.09,92.8615 +689639,271.11,94.8426 +689640,271.15,96.8859 +689641,269.77,90.94703 +689642,269.75,92.8696 +689643,269.74,94.8463 +689644,269.75,96.8848 +689645,268.47,90.96062 +689646,268.42,92.8781 +689647,268.38,94.8494 +689648,268.35,96.8821 +689649,267.17,90.9756 +689650,267.08,92.8871 +689651,267.01,94.852 +689652,266.94,96.8777 +689653,265.87,90.99198 +689654,265.75,92.8965 +689655,265.64,94.854 +689656,265.54,96.8718 +689657,264.57,91.0098 +689658,264.41,92.9063 +689659,264.27,94.8554 +689660,264.14,96.8642 +689661,263.26,91.0289 +689662,263.08,92.9166 +689663,262.9,94.8563 +689664,262.74,96.8551 +689665,261.96,91.0494 +689666,261.74,92.9273 +689667,261.53,94.8567 +689668,261.33,96.8444 +689669,260.66,91.0713 +689670,260.41,92.9384 +689671,260.17,94.8564 +689672,259.93,96.8321 +689673,259.36,91.0946 +689674,259.07,92.9499 +689675,258.8,94.8557 +689676,258.53,96.8183 +689677,258.06,91.1192 +689678,257.74,92.9618 +689679,257.43,94.8543 +689680,257.13,96.8029 +689681,256.75,91.1452 +689682,256.4,92.9742 +689683,256.06,94.8525 +689684,255.73,96.786 +689685,255.45,91.1725 +689686,255.07,92.987 +689687,254.69,94.8501 +689688,254.33,96.7676 +689689,254.15,91.2012 +689690,253.73,93.0002 +689691,253.32,94.8471 +689692,252.92,96.7477 +689693,252.84,91.2311 +689694,252.4,93.0138 +689695,251.96,94.8436 +689696,251.52,96.7262 +689697,251.54,91.2624 +689698,251.06,93.0278 +689699,250.59,94.8396 +689700,250.12,96.7033 +689701,250.24,91.295 +689702,249.73,93.0421 +689703,249.22,94.8351 +689704,248.72,96.679 +689705,248.93,91.3288 +689706,248.39,93.0569 +689707,247.85,94.8301 +689708,247.33,96.6531 +689709,247.62,91.3639 +689710,247.05,93.0721 +689711,246.49,94.8245 +689712,245.93,96.6259 +689713,246.32,91.4003 +689714,245.72,93.0876 +689715,245.12,94.8185 +689716,244.53,96.5972 +689717,245.01,91.4379 +689718,244.38,93.1035 +689719,243.75,94.8119 +689720,243.13,96.5671 +689721,243.71,91.4767 +689722,243.04,93.1198 +689723,242.39,94.8048 +689724,241.73,96.5357 +689725,242.4,91.5167 +689726,241.71,93.1365 +689727,241.02,94.7973 +689728,240.34,96.5029 +689729,241.09,91.558 +689730,240.37,93.1535 +689731,239.65,94.7893 +689732,238.94,96.4687 +689733,239.78,91.6003 +689734,239.03,93.1709 +689735,238.29,94.7807 +689736,237.55,96.4333 +689737,238.47,91.6439 +689738,237.69,93.1886 +689739,236.92,94.7718 +689740,236.15,96.3965 +689741,237.16,91.6886 +689742,236.36,93.2067 +689743,235.56,94.7623 +689744,234.76,96.3585 +689745,235.85,91.7344 +689746,235.02,93.225 +689747,234.19,94.7524 +689748,233.36,96.3192 +689749,234.54,91.7813 +689750,233.68,93.2438 +689751,232.82,94.7421 +689752,231.97,96.2787 +689753,233.23,91.8293 +689754,232.34,93.2628 +689755,231.46,94.7313 +689756,230.58,96.237 +689757,231.91,91.8783 +689758,231,93.2822 +689759,230.09,94.72 +689760,229.19,96.1941 +689761,230.6,91.9284 +689762,229.66,93.3018 +689763,228.73,94.7084 +689764,227.8,96.1501 +689765,229.29,91.9795 +689766,228.33,93.3218 +689767,227.37,94.6963 +689768,226.41,96.105 +689769,227.97,92.0316 +689770,226.99,93.342 +689771,226,94.6838 +689772,225.02,96.0587 +689773,226.66,92.0847 +689774,225.65,93.3625 +689775,224.64,94.6709 +689776,223.63,96.0114 +689777,225.34,92.1387 +689778,224.31,93.3833 +689779,223.27,94.6577 +689780,222.24,95.9631 +689781,224.02,92.1936 +689782,222.96,93.4044 +689783,221.91,94.644 +689784,220.86,95.9137 +689785,222.7,92.2494 +689786,221.62,93.4257 +689787,220.55,94.63 +689788,219.47,95.8633 +689789,221.38,92.3061 +689790,220.28,93.4472 +689791,219.18,94.6156 +689792,218.09,95.812 +689793,220.06,92.3636 +689794,218.94,93.469 +689795,217.82,94.6008 +689796,216.7,95.7597 +689797,218.74,92.422 +689798,217.6,93.4911 +689799,216.46,94.5857 +689800,215.32,95.7066 +689801,217.42,92.4812 +689802,216.26,93.5133 +689803,215.1,94.5703 +689804,213.94,95.6526 +689805,216.09,92.5411 +689806,214.92,93.5358 +689807,213.74,94.5545 +689808,212.56,95.5977 +689809,214.77,92.6018 +689810,213.57,93.5584 +689811,212.38,94.5384 +689812,211.18,95.542 +689813,213.44,92.6631 +689814,212.23,93.5813 +689815,211.01,94.522 +689816,209.8,95.4856 +689817,212.12,92.7252 +689818,210.89,93.6043 +689819,209.65,94.5053 +689820,208.42,95.4284 +689821,210.79,92.7879 +689822,209.54,93.6275 +689823,208.29,94.4883 +689824,207.05,95.3705 +689825,209.46,92.8512 +689826,208.2,93.6509 +689827,206.93,94.4711 +689828,205.67,95.3119 +689829,208.13,92.9152 +689830,206.85,93.6744 +689831,205.58,94.4536 +689832,204.3,95.2526 +689833,206.8,92.9797 +689834,205.51,93.6981 +689835,204.22,94.4358 +689836,202.92,95.1927 +689837,205.47,93.0447 +689838,204.16,93.7219 +689839,202.86,94.4177 +689840,201.55,95.1323 +689841,204.14,93.1103 +689842,202.82,93.7458 +689843,201.5,94.3995 +689844,200.18,95.0713 +689845,202.8,93.1763 +689846,201.47,93.7698 +689847,200.14,94.381 +689848,198.81,95.0097 +689849,201.47,93.2428 +689850,200.13,93.7939 +689851,198.78,94.3623 +689852,197.44,94.9477 +689853,200.13,93.3097 +689854,198.78,93.8181 +689855,197.43,94.3434 +689856,196.07,94.8853 +689857,198.8,93.377 +689858,197.43,93.8424 +689859,196.07,94.3243 +689860,194.71,94.8224 +689861,197.46,93.4446 +689862,196.09,93.8667 +689863,194.71,94.305 +689864,193.34,94.7591 +689865,196.12,93.5125 +689866,194.74,93.8911 +689867,193.36,94.2855 +689868,191.98,94.6955 +689869,194.78,93.5807 +689870,193.39,93.9156 +689871,192,94.2659 +689872,190.61,94.6315 +689873,193.44,93.6492 +689874,192.04,93.9401 +689875,190.64,94.2462 +689876,189.25,94.5673 +689877,192.09,93.7179 +689878,190.69,93.9646 +689879,189.29,94.2263 +689880,187.89,94.5028 +689881,190.75,93.7868 +689882,189.34,93.9891 +689883,187.94,94.2063 +689884,186.53,94.4381 +689885,189.41,93.8559 +689886,187.99,94.0136 +689887,186.58,94.1861 +689888,185.17,94.3732 +689889,188.06,93.925 +689890,186.64,94.0381 +689891,185.23,94.1659 +689892,183.81,94.3081 +689893,186.71,93.9943 +689894,185.29,94.0626 +689895,183.87,94.1456 +689896,182.46,94.243 +689897,185.36,94.0636 +689898,183.94,94.0871 +689899,182.52,94.1252 +689900,181.1,94.1777 +689901,184.01,94.1329 +689902,182.59,94.1115 +689903,181.17,94.1047 +689904,179.75,94.1124 +689905,182.66,94.2022 +689906,181.24,94.1358 +689907,179.82,94.0842 +689908,178.39,94.0471 +689909,181.31,94.2715 +689910,179.89,94.1601 +689911,178.46,94.0636 +689912,177.04,93.9818 +689913,179.96,94.3406 +689914,178.53,94.1843 +689915,177.11,94.043 +689916,175.69,93.9166 +689917,178.6,94.4097 +689918,177.18,94.2084 +689919,175.76,94.0224 +689920,174.34,93.8515 +689921,177.25,94.4786 +689922,175.83,94.2324 +689923,174.41,94.0017 +689924,172.99,93.7864 +689925,175.89,94.5473 +689926,174.47,94.2563 +689927,173.06,93.9811 +689928,171.65,93.7215 +689929,174.53,94.6158 +689930,173.12,94.2801 +689931,171.71,93.9604 +689932,170.3,93.6568 +689933,173.17,94.6841 +689934,171.76,94.3037 +689935,170.36,93.9398 +689936,168.96,93.5924 +689937,171.81,94.7521 +689938,170.41,94.3272 +689939,169.01,93.9193 +689940,167.61,93.5281 +689941,170.45,94.8197 +689942,169.05,94.3505 +689943,167.66,93.8987 +689944,166.27,93.4642 +689945,169.09,94.887 +689946,167.7,94.3737 +689947,166.31,93.8782 +689948,164.93,93.4006 +689949,167.72,94.9539 +689950,166.34,94.3967 +689951,164.97,93.8578 +689952,163.59,93.3373 +689953,166.36,95.0204 +689954,164.99,94.4195 +689955,163.62,93.8375 +689956,162.25,93.2744 +689957,164.99,95.0864 +689958,163.63,94.442 +689959,162.27,93.8172 +689960,160.91,93.2119 +689961,163.62,95.1519 +689962,162.27,94.4644 +689963,160.92,93.7971 +689964,159.58,93.1498 +689965,162.26,95.2169 +689966,160.91,94.4865 +689967,159.58,93.7771 +689968,158.24,93.0883 +689969,160.89,95.2814 +689970,159.56,94.5084 +689971,158.23,93.7571 +689972,156.91,93.0272 +689973,159.52,95.3452 +689974,158.2,94.5301 +689975,156.88,93.7373 +689976,155.57,92.9666 +689977,158.14,95.4085 +689978,156.84,94.5515 +689979,155.54,93.7177 +689980,154.24,92.9067 +689981,156.77,95.471 +689982,155.48,94.5726 +689983,154.19,93.6982 +689984,152.91,92.8473 +689985,155.4,95.5329 +689986,154.12,94.5935 +689987,152.85,93.6789 +689988,151.58,92.7885 +689989,154.02,95.5941 +689990,152.76,94.614 +689991,151.5,93.6597 +689992,150.25,92.7304 +689993,152.65,95.6545 +689994,151.4,94.6343 +689995,150.16,93.6407 +689996,148.92,92.673 +689997,151.27,95.7141 +689998,150.04,94.6542 +689999,148.82,93.6219 +690000,147.6,92.6162 +690001,149.89,95.773 +690002,148.68,94.6739 +690003,147.47,93.6033 +690004,146.27,92.5602 +690005,148.51,95.8309 +690006,147.32,94.6932 +690007,146.13,93.5849 +690008,144.95,92.505 +690009,147.13,95.888 +690010,145.96,94.7121 +690011,144.79,93.5667 +690012,143.62,92.4506 +690013,145.75,95.9442 +690014,144.6,94.7307 +690015,143.45,93.5488 +690016,142.3,92.397 +690017,144.37,95.9994 +690018,143.23,94.749 +690019,142.1,93.5311 +690020,140.98,92.3442 +690021,142.98,96.0537 +690022,141.87,94.7669 +690023,140.76,93.5136 +690024,139.66,92.2923 +690025,141.6,96.107 +690026,140.51,94.7844 +690027,139.42,93.4964 +690028,138.34,92.2412 +690029,140.22,96.1593 +690030,139.15,94.8015 +690031,138.08,93.4795 +690032,137.02,92.1911 +690033,138.83,96.2105 +690034,137.78,94.8182 +690035,136.74,93.4628 +690036,135.7,92.142 +690037,137.44,96.2606 +690038,136.42,94.8346 +690039,135.4,93.4465 +690040,134.38,92.0938 +690041,136.05,96.3096 +690042,135.05,94.8505 +690043,134.06,93.4304 +690044,133.06,92.0466 +690045,134.67,96.3575 +690046,133.69,94.866 +690047,132.72,93.4145 +690048,131.75,92.0004 +690049,133.28,96.4042 +690050,132.33,94.881 +690051,131.38,93.399 +690052,130.43,91.9552 +690053,131.89,96.4497 +690054,130.96,94.8957 +690055,130.04,93.3839 +690056,129.12,91.9111 +690057,130.5,96.4941 +690058,129.6,94.9098 +690059,128.7,93.369 +690060,127.8,91.868 +690061,129.1,96.5371 +690062,128.23,94.9236 +690063,127.36,93.3544 +690064,126.49,91.8261 +690065,127.71,96.579 +690066,126.86,94.9368 +690067,126.02,93.3402 +690068,125.18,91.7853 +690069,126.32,96.6195 +690070,125.5,94.9496 +690071,124.68,93.3264 +690072,123.87,91.7456 +690073,124.93,96.6588 +690074,124.13,94.962 +690075,123.34,93.3128 +690076,122.56,91.707 +690077,123.53,96.6967 +690078,122.77,94.9738 +690079,122.01,93.2997 +690080,121.25,91.6697 +690081,122.14,96.7332 +690082,121.4,94.9852 +690083,120.67,93.2868 +690084,119.94,91.6335 +690085,120.74,96.7684 +690086,120.03,94.9961 +690087,119.33,93.2744 +690088,118.63,91.5985 +690089,119.34,96.8022 +690090,118.67,95.0064 +690091,117.99,93.2623 +690092,117.32,91.5647 +690093,117.95,96.8346 +690094,117.3,95.0163 +690095,116.66,93.2506 +690096,116.01,91.5322 +690097,116.55,96.8656 +690098,115.93,95.0256 +690099,115.32,93.2393 +690100,114.7,91.501 +690101,115.15,96.8951 +690102,114.57,95.0345 +690103,113.98,93.2283 +690104,113.4,91.471 +690105,113.75,96.9232 +690106,113.2,95.0428 +690107,112.64,93.2178 +690108,112.09,91.4422 +690109,112.35,96.9498 +690110,111.83,95.0506 +690111,111.31,93.2076 +690112,110.79,91.4148 +690113,110.95,96.9749 +690114,110.46,95.0578 +690115,109.97,93.1979 +690116,109.48,91.3887 +690117,109.55,96.9985 +690118,109.09,95.0646 +690119,108.64,93.1885 +690120,108.18,91.3639 +690121,108.15,97.0205 +690122,107.73,95.0708 +690123,107.3,93.1796 +690124,106.87,91.3404 +690125,106.75,97.0411 +690126,106.36,95.0764 +690127,105.96,93.1711 +690128,105.57,91.3182 +690129,105.35,97.0601 +690130,104.99,95.0815 +690131,104.63,93.163 +690132,104.26,91.2974 +690133,103.95,97.0775 +690134,103.62,95.086 +690135,103.29,93.1553 +690136,102.96,91.278 +690137,102.55,97.0933 +690138,102.25,95.09 +690139,101.96,93.148 +690140,101.66,91.2599 +690141,101.15,97.1076 +690142,100.89,95.0934 +690143,100.62,93.1411 +690144,100.35,91.2432 +690145,99.746,97.1203 +690146,99.517,95.0963 +690147,99.284,93.1347 +690148,99.05,91.2279 +690149,98.344,97.1314 +690150,98.148,95.0986 +690151,97.949,93.1287 +690152,97.747,91.2139 +690153,96.941,97.1409 +690154,96.779,95.1004 +690155,96.614,93.1231 +690156,96.445,91.2014 +690157,95.539,97.1487 +690158,95.41,95.1015 +690159,95.278,93.118 +690160,95.143,91.1902 +690161,94.136,97.155 +690162,94.042,95.1022 +690163,93.943,93.1133 +690164,93.841,91.1805 +690165,92.734,97.1596 +690166,92.673,95.1022 +690167,92.608,93.1091 +690168,92.539,91.1721 +690169,91.331,97.1627 +690170,91.304,95.1017 +690171,91.272,93.1052 +690172,91.237,91.1652 +690173,89.928,97.164 +690174,89.935,95.1006 +690175,89.937,93.1018 +690176,89.935,91.1597 +690177,88.525,97.1638 +690178,88.566,95.0989 +690179,88.602,93.0989 +690180,88.633,91.1555 +690181,87.122,97.1619 +690182,87.197,95.0966 +690183,87.267,93.0964 +690184,87.331,91.1528 +690185,85.72,97.1584 +690186,85.829,95.0938 +690187,85.931,93.0943 +690188,86.029,91.1515 +690189,84.317,97.1533 +690190,84.46,95.0904 +690191,84.596,93.0926 +690192,84.727,91.1516 +690193,82.914,97.1465 +690194,83.091,95.0865 +690195,83.261,93.0914 +690196,83.425,91.1531 +690197,81.512,97.1381 +690198,81.722,95.082 +690199,81.926,93.0907 +690200,82.123,91.156 +690201,80.11,97.1281 +690202,80.354,95.0769 +690203,80.59,93.0903 +690204,80.82,91.1604 +690205,78.708,97.1165 +690206,78.985,95.0712 +690207,79.255,93.0904 +690208,79.518,91.1661 +690209,77.306,97.1033 +690210,77.617,95.065 +690211,77.919,93.091 +690212,78.215,91.1732 +690213,75.905,97.0884 +690214,76.248,95.0582 +690215,76.584,93.0919 +690216,76.912,91.1817 +690217,74.503,97.0719 +690218,74.88,95.0508 +690219,75.248,93.0933 +690220,75.609,91.1916 +690221,73.102,97.0539 +690222,73.512,95.0429 +690223,73.912,93.0952 +690224,74.305,91.2029 +690225,71.702,97.0343 +690226,72.144,95.0344 +690227,72.577,93.0974 +690228,73.002,91.2155 +690229,70.302,97.0131 +690230,70.776,95.0254 +690231,71.241,93.1001 +690232,71.698,91.2295 +690233,68.902,96.9903 +690234,69.408,95.0158 +690235,69.905,93.1032 +690236,70.393,91.2449 +690237,67.502,96.966 +690238,68.04,95.0057 +690239,68.568,93.1067 +690240,69.088,91.2616 +690241,66.104,96.9401 +690242,66.673,94.995 +690243,67.232,93.1106 +690244,67.783,91.2797 +690245,64.705,96.9127 +690246,65.306,94.9838 +690247,65.896,93.1149 +690248,66.477,91.299 +690249,63.307,96.8838 +690250,63.938,94.972 +690251,64.559,93.1196 +690252,65.171,91.3197 +690253,61.91,96.8534 +690254,62.571,94.9597 +690255,63.222,93.1248 +690256,63.864,91.3417 +690257,60.513,96.8214 +690258,61.205,94.9469 +690259,61.885,93.1303 +690260,62.557,91.365 +690261,59.116,96.7881 +690262,59.838,94.9336 +690263,60.548,93.1362 +690264,61.25,91.3896 +690265,57.721,96.7532 +690266,58.472,94.9197 +690267,59.211,93.1425 +690268,59.941,91.4154 +690269,56.326,96.717 +690270,57.105,94.9054 +690271,57.874,93.1492 +690272,58.633,91.4425 +690273,54.931,96.6793 +690274,55.739,94.8905 +690275,56.536,93.1563 +690276,57.323,91.4708 +690277,53.538,96.6402 +690278,54.374,94.8751 +690279,55.198,93.1637 +690280,56.013,91.5003 +690281,52.144,96.5997 +690282,53.008,94.8593 +690283,53.86,93.1715 +690284,54.702,91.5311 +690285,50.752,96.5579 +690286,51.643,94.8429 +690287,52.522,93.1797 +690288,53.391,91.563 +690289,49.361,96.5148 +690290,50.278,94.8261 +690291,51.183,93.1882 +690292,52.079,91.5961 +690293,47.97,96.4703 +690294,48.913,94.8088 +690295,49.844,93.1971 +690296,50.766,91.6303 +690297,46.58,96.4245 +690298,47.548,94.791 +690299,48.505,93.2063 +690300,49.453,91.6657 +690301,45.191,96.3774 +690302,46.184,94.7728 +690303,47.166,93.2158 +690304,48.138,91.7022 +690305,43.802,96.3292 +690306,44.82,94.7541 +690307,45.827,93.2257 +690308,46.823,91.7398 +690309,42.415,96.2796 +690310,43.457,94.7349 +690311,44.487,93.2359 +690312,45.507,91.7784 +690313,41.028,96.2289 +690314,42.093,94.7154 +690315,43.147,93.2464 +690316,44.191,91.8182 +690317,39.642,96.177 +690318,40.73,94.6954 +690319,41.807,93.2572 +690320,42.873,91.8589 +690321,38.257,96.124 +690322,39.367,94.6749 +690323,40.466,93.2683 +690324,41.555,91.9007 +690325,36.873,96.0698 +690326,38.005,94.6541 +690327,39.125,93.2797 +690328,40.236,91.9434 +690329,35.49,96.0146 +690330,36.643,94.6329 +690331,37.784,93.2914 +690332,38.915,91.9871 +690333,34.108,95.9582 +690334,35.281,94.6112 +690335,36.443,93.3033 +690336,37.594,92.0318 +690337,32.727,95.9009 +690338,33.919,94.5892 +690339,35.101,93.3155 +690340,36.272,92.0773 +690341,31.347,95.8425 +690342,32.558,94.5668 +690343,33.759,93.328 +690344,34.949,92.1238 +690345,29.968,95.7832 +690346,31.197,94.544 +690347,32.416,93.3408 +690348,33.625,92.1711 +690349,28.59,95.7229 +690350,29.837,94.5209 +690351,31.074,93.3537 +690352,32.301,92.2193 +690353,27.213,95.6616 +690354,28.477,94.4974 +690355,29.731,93.3669 +690356,30.975,92.2683 +690357,25.837,95.5995 +690358,27.117,94.4736 +690359,28.387,93.3804 +690360,29.648,92.3181 +690361,24.462,95.5366 +690362,25.758,94.4494 +690363,27.044,93.394 +690364,28.32,92.3686 +690365,23.088,95.4728 +690366,24.399,94.4249 +690367,25.7,93.4078 +690368,26.991,92.4199 +690369,21.716,95.4082 +690370,23.04,94.4002 +690371,24.355,93.4219 +690372,25.661,92.4719 +690373,20.344,95.3428 +690374,21.682,94.3751 +690375,23.01,93.4361 +690376,24.33,92.5246 +690377,18.974,95.2767 +690378,20.324,94.3497 +690379,21.665,93.4505 +690380,22.998,92.5779 +690381,17.604,95.2099 +690382,18.966,94.324 +690383,20.32,93.465 +690384,21.665,92.6319 +690385,16.236,95.1424 +690386,17.609,94.2981 +690387,18.974,93.4797 +690388,20.33,92.6864 +690389,14.869,95.0743 +690390,16.252,94.2719 +690391,17.628,93.4946 +690392,18.995,92.7415 +690393,13.503,95.0056 +690394,14.896,94.2455 +690395,16.281,93.5096 +690396,17.659,92.7972 +690397,12.138,94.9363 +690398,13.54,94.2188 +690399,14.935,93.5247 +690400,16.321,92.8534 +690401,10.774,94.8665 +690402,12.185,94.1919 +690403,13.587,93.5399 +690404,14.982,92.91 +690405,9.4119,94.7961 +690406,10.829,94.1648 +690407,12.24,93.5553 +690408,13.642,92.9671 +690409,8.0506,94.7254 +690410,9.4746,94.1375 +690411,10.892,93.5707 +690412,12.301,93.0246 +690413,6.6905,94.6541 +690414,8.1202,94.1099 +690415,9.5434,93.5862 +690416,10.959,93.0825 +690417,5.3316,94.5825 +690418,6.7663,94.0822 +690419,8.1947,93.6018 +690420,9.6158,93.1407 +690421,3.9738,94.5105 +690422,5.4127,94.0544 +690423,6.8456,93.6174 +690424,8.2713,93.1993 +690425,2.6172,94.4382 +690426,4.0596,94.0263 +690427,5.4961,93.6331 +690428,6.9256,93.2581 +690429,1.2619,94.3655 +690430,2.7068,93.9982 +690431,4.1462,93.6488 +690432,5.5788,93.3172 +690433,359.91,94.2926 +690434,1.3545,93.9698 +690435,2.796,93.6646 +690436,4.2308,93.3766 +690437,358.55,94.2195 +690438,0.0025998,93.9414 +690439,1.4453,93.6804 +690440,2.8816,93.4361 +690441,357.2,94.1462 +690442,358.65,93.9128 +690443,0.094331,93.6962 +690444,1.5312,93.4958 +690445,355.85,94.0727 +690446,357.3,93.8842 +690447,358.74,93.7119 +690448,0.1797,93.5556 +690449,354.5,93.9991 +690450,355.95,93.8554 +690451,357.39,93.7277 +690452,358.83,93.6155 +690453,353.15,93.9254 +690454,354.6,93.8266 +690455,356.04,93.7434 +690456,357.47,93.6755 +690457,351.81,93.8516 +690458,353.25,93.7977 +690459,354.69,93.7591 +690460,356.12,93.7355 +690461,350.46,93.7778 +690462,351.9,93.7687 +690463,353.33,93.7747 +690464,354.76,93.7955 +690465,349.12,93.7041 +690466,350.55,93.7397 +690467,351.98,93.7903 +690468,353.4,93.8555 +690469,347.77,93.6303 +690470,349.2,93.7107 +690471,350.63,93.8058 +690472,352.05,93.9154 +690473,346.43,93.5567 +690474,347.85,93.6816 +690475,349.27,93.8212 +690476,350.69,93.9751 +690477,345.09,93.4832 +690478,346.51,93.6525 +690479,347.92,93.8366 +690480,349.32,94.0348 +690481,343.75,93.4098 +690482,345.16,93.6235 +690483,346.56,93.8518 +690484,347.96,94.0943 +690485,342.41,93.3365 +690486,343.81,93.5944 +690487,345.21,93.8669 +690488,346.6,94.1535 +690489,341.07,93.2635 +690490,342.47,93.5653 +690491,343.85,93.8819 +690492,345.24,94.2126 +690493,339.74,93.1908 +690494,341.12,93.5363 +690495,342.5,93.8967 +690496,343.87,94.2714 +690497,338.4,93.1183 +690498,339.77,93.5074 +690499,341.14,93.9114 +690500,342.5,94.3298 +690501,337.07,93.0461 +690502,338.43,93.4784 +690503,339.78,93.9259 +690504,341.13,94.388 +690505,335.74,92.9743 +690506,337.08,93.4496 +690507,338.43,93.9402 +690508,339.77,94.4457 +690509,334.4,92.9029 +690510,335.74,93.4208 +690511,337.07,93.9544 +690512,338.4,94.5031 +690513,333.07,92.8318 +690514,334.39,93.3921 +690515,335.71,93.9684 +690516,337.02,94.56 +690517,331.74,92.7612 +690518,333.05,93.3636 +690519,334.35,93.9821 +690520,335.65,94.6164 +690521,330.42,92.6911 +690522,331.71,93.3351 +690523,332.99,93.9957 +690524,334.28,94.6724 +690525,329.09,92.6214 +690526,330.36,93.3067 +690527,331.64,94.009 +690528,332.9,94.7278 +690529,327.76,92.5523 +690530,329.02,93.2785 +690531,330.28,94.0221 +690532,331.53,94.7827 +690533,326.44,92.4838 +690534,327.68,93.2504 +690535,328.92,94.0349 +690536,330.15,94.8369 +690537,325.11,92.4158 +690538,326.34,93.2225 +690539,327.56,94.0475 +690540,328.77,94.8905 +690541,323.79,92.3485 +690542,324.99,93.1947 +690543,326.2,94.0598 +690544,327.4,94.9435 +690545,322.47,92.2818 +690546,323.65,93.1671 +690547,324.84,94.0718 +690548,326.02,94.9958 +690549,321.14,92.2158 +690550,322.31,93.1397 +690551,323.48,94.0836 +690552,324.64,95.0473 +690553,319.82,92.1505 +690554,320.97,93.1124 +690555,322.12,94.095 +690556,323.25,95.0981 +690557,318.51,92.0859 +690558,319.63,93.0854 +690559,320.75,94.1062 +690560,321.87,95.1481 +690561,317.19,92.0221 +690562,318.29,93.0586 +690563,319.39,94.117 +690564,320.49,95.1973 +690565,315.87,91.9591 +690566,316.95,93.032 +690567,318.03,94.1275 +690568,319.1,95.2456 +690569,314.55,91.8969 +690570,315.61,93.0056 +690571,316.67,94.1376 +690572,317.72,95.2931 +690573,313.24,91.8356 +690574,314.27,92.9795 +690575,315.31,94.1474 +690576,316.33,95.3397 +690577,311.92,91.7751 +690578,312.94,92.9536 +690579,313.94,94.1569 +690580,314.94,95.3853 +690581,310.61,91.7155 +690582,311.6,92.928 +690583,312.58,94.166 +690584,313.56,95.43 +690585,309.3,91.6568 +690586,310.26,92.9026 +690587,311.22,94.1747 +690588,312.17,95.4737 +690589,307.98,91.5991 +690590,308.92,92.8775 +690591,309.85,94.183 +690592,310.78,95.5163 +690593,306.67,91.5423 +690594,307.58,92.8527 +690595,308.49,94.1909 +690596,309.39,95.5579 +690597,305.36,91.4865 +690598,306.25,92.8282 +690599,307.13,94.1985 +690600,308,95.5985 +690601,304.05,91.4317 +690602,304.91,92.804 +690603,305.76,94.2056 +690604,306.6,95.638 +690605,302.74,91.378 +690606,303.57,92.78 +690607,304.4,94.2123 +690608,305.21,95.6763 +690609,301.43,91.3253 +690610,302.24,92.7564 +690611,303.03,94.2186 +690612,303.82,95.7135 +690613,300.13,91.2737 +690614,300.9,92.7331 +690615,301.67,94.2245 +690616,302.42,95.7495 +690617,298.82,91.2232 +690618,299.56,92.7102 +690619,300.3,94.2299 +690620,301.03,95.7843 +690621,297.51,91.1737 +690622,298.23,92.6875 +690623,298.94,94.2349 +690624,299.63,95.818 +690625,296.21,91.1255 +690626,296.89,92.6652 +690627,297.57,94.2394 +690628,298.24,95.8503 +690629,294.9,91.0783 +690630,295.56,92.6433 +690631,296.21,94.2435 +690632,296.84,95.8814 +690633,293.6,91.0324 +690634,294.22,92.6217 +690635,294.84,94.2471 +690636,295.45,95.9112 +690637,292.29,90.98762 +690638,292.89,92.6005 +690639,293.47,94.2502 +690640,294.05,95.9398 +690641,290.99,90.94406 +690642,291.55,92.5796 +690643,292.11,94.2529 +690644,292.65,95.967 +690645,289.69,90.90171 +690646,290.22,92.5591 +690647,290.74,94.2551 +690648,291.25,95.9928 +690649,288.38,90.8606 +690650,288.88,92.539 +690651,289.37,94.2567 +690652,289.85,96.0173 +690653,287.08,90.82073 +690654,287.55,92.5193 +690655,288.01,94.2579 +690656,288.45,96.0404 +690657,285.78,90.78213 +690658,286.22,92.4999 +690659,286.64,94.2586 +690660,287.05,96.0621 +690661,284.48,90.74481 +690662,284.88,92.481 +690663,285.27,94.2588 +690664,285.65,96.0824 +690665,283.18,90.70877 +690666,283.55,92.4624 +690667,283.91,94.2584 +690668,284.25,96.1012 +690669,281.88,90.67404 +690670,282.22,92.4442 +690671,282.54,94.2576 +690672,282.85,96.1186 +690673,280.58,90.64062 +690674,280.88,92.4265 +690675,281.17,94.2562 +690676,281.45,96.1345 +690677,279.28,90.60852 +690678,279.55,92.4091 +690679,279.81,94.2543 +690680,280.05,96.149 +690681,277.98,90.57776 +690682,278.22,92.3922 +690683,278.44,94.2519 +690684,278.65,96.162 +690685,276.68,90.54833 +690686,276.88,92.3757 +690687,277.07,94.2489 +690688,277.24,96.1734 +690689,275.38,90.52026 +690690,275.55,92.3596 +690691,275.71,94.2454 +690692,275.84,96.1834 +690693,274.08,90.49355 +690694,274.22,92.3439 +690695,274.34,94.2414 +690696,274.44,96.1918 +690697,272.78,90.46821 +690698,272.88,92.3286 +690699,272.97,94.2368 +690700,273.04,96.1987 +690701,271.48,90.44423 +690702,271.55,92.3138 +690703,271.6,94.2317 +690704,271.64,96.204 +690705,270.18,90.42164 +690706,270.22,92.2994 +690707,270.24,94.2261 +690708,270.23,96.2078 +690709,268.88,90.40043 +690710,268.89,92.2855 +690711,268.87,94.2199 +690712,268.83,96.21 +690713,267.59,90.38061 +690714,267.55,92.2719 +690715,267.5,94.2131 +690716,267.43,96.2107 +690717,266.29,90.36218 +690718,266.22,92.2588 +690719,266.13,94.2058 +690720,266.03,96.2097 +690721,264.99,90.34515 +690722,264.89,92.2462 +690723,264.77,94.1979 +690724,264.62,96.2072 +690725,263.69,90.32952 +690726,263.56,92.2339 +690727,263.4,94.1895 +690728,263.22,96.2032 +690729,262.39,90.31529 +690730,262.22,92.2222 +690731,262.03,94.1805 +690732,261.82,96.1975 +690733,261.09,90.30245 +690734,260.89,92.2108 +690735,260.67,94.171 +690736,260.42,96.1902 +690737,259.79,90.29102 +690738,259.56,92.1999 +690739,259.3,94.1609 +690740,259.02,96.1814 +690741,258.5,90.28099 +690742,258.22,92.1894 +690743,257.93,94.1503 +690744,257.61,96.1709 +690745,257.2,90.27236 +690746,256.89,92.1794 +690747,256.57,94.1391 +690748,256.21,96.1589 +690749,255.9,90.26512 +690750,255.56,92.1698 +690751,255.2,94.1274 +690752,254.81,96.1453 +690753,254.6,90.25929 +690754,254.23,92.1606 +690755,253.83,94.1151 +690756,253.41,96.1301 +690757,253.3,90.25484 +690758,252.89,92.1519 +690759,252.47,94.1022 +690760,252.01,96.1133 +690761,252,90.25178 +690762,251.56,92.1436 +690763,251.1,94.0888 +690764,250.61,96.0949 +690765,250.7,90.2501 +690766,250.23,92.1358 +690767,249.73,94.0749 +690768,249.21,96.0749 +690769,249.4,90.24981 +690770,248.89,92.1284 +690771,248.37,94.0603 +690772,247.81,96.0534 +690773,248.1,90.25088 +690774,247.56,92.1214 +690775,247,94.0453 +690776,246.41,96.0303 +690777,246.8,90.25332 +690778,246.23,92.1148 +690779,245.64,94.0297 +690780,245.01,96.0056 +690781,245.49,90.25712 +690782,244.89,92.1087 +690783,244.27,94.0136 +690784,243.62,95.9794 +690785,244.19,90.26227 +690786,243.56,92.103 +690787,242.9,93.9969 +690788,242.22,95.9516 +690789,242.89,90.26876 +690790,242.23,92.0977 +690791,241.54,93.9797 +690792,240.82,95.9223 +690793,241.59,90.27659 +690794,240.89,92.0928 +690795,240.17,93.9619 +690796,239.43,95.8915 +690797,240.28,90.28573 +690798,239.56,92.0883 +690799,238.81,93.9437 +690800,238.03,95.8591 +690801,238.98,90.29619 +690802,238.22,92.0843 +690803,237.44,93.9249 +690804,236.64,95.8253 +690805,237.67,90.30795 +690806,236.89,92.0806 +690807,236.08,93.9056 +690808,235.24,95.7899 +690809,236.37,90.321 +690810,235.56,92.0774 +690811,234.72,93.8857 +690812,233.85,95.7531 +690813,235.06,90.33532 +690814,234.22,92.0746 +690815,233.35,93.8654 +690816,232.45,95.7148 +690817,233.76,90.3509 +690818,232.89,92.0721 +690819,231.99,93.8445 +690820,231.06,95.6751 +690821,232.45,90.36774 +690822,231.55,92.07 +690823,230.63,93.8232 +690824,229.67,95.634 +690825,231.14,90.38581 +690826,230.22,92.0684 +690827,229.26,93.8013 +690828,228.28,95.5914 +690829,229.83,90.40509 +690830,228.88,92.0671 +690831,227.9,93.779 +690832,226.89,95.5474 +690833,228.53,90.42558 +690834,227.54,92.0661 +690835,226.54,93.7562 +690836,225.5,95.5021 +690837,227.22,90.44726 +690838,226.21,92.0656 +690839,225.18,93.7329 +690840,224.11,95.4554 +690841,225.91,90.47011 +690842,224.87,92.0654 +690843,223.81,93.7091 +690844,222.73,95.4074 +690845,224.59,90.49411 +690846,223.54,92.0656 +690847,222.45,93.6849 +690848,221.34,95.358 +690849,223.28,90.51925 +690850,222.2,92.0661 +690851,221.09,93.6602 +690852,219.95,95.3073 +690853,221.97,90.5455 +690854,220.86,92.0669 +690855,219.73,93.635 +690856,218.57,95.2554 +690857,220.65,90.57285 +690858,219.52,92.0681 +690859,218.37,93.6094 +690860,217.19,95.2022 +690861,219.34,90.60128 +690862,218.19,92.0696 +690863,217.01,93.5834 +690864,215.8,95.1478 +690865,218.02,90.63076 +690866,216.85,92.0715 +690867,215.65,93.5569 +690868,214.42,95.0921 +690869,216.71,90.66129 +690870,215.51,92.0736 +690871,214.29,93.53 +690872,213.04,95.0353 +690873,215.39,90.69282 +690874,214.17,92.0761 +690875,212.93,93.5027 +690876,211.66,94.9773 +690877,214.07,90.72535 +690878,212.83,92.0789 +690879,211.57,93.475 +690880,210.28,94.9182 +690881,212.75,90.75886 +690882,211.49,92.082 +690883,210.21,93.4469 +690884,208.9,94.858 +690885,211.43,90.79331 +690886,210.16,92.0853 +690887,208.85,93.4184 +690888,207.53,94.7967 +690889,210.11,90.82868 +690890,208.82,92.0889 +690891,207.5,93.3895 +690892,206.15,94.7343 +690893,208.79,90.86496 +690894,207.48,92.0928 +690895,206.14,93.3602 +690896,204.78,94.6709 +690897,207.47,90.90211 +690898,206.14,92.097 +690899,204.78,93.3306 +690900,203.4,94.6065 +690901,206.14,90.94012 +690902,204.79,92.1014 +690903,203.43,93.3006 +690904,202.03,94.5411 +690905,204.82,90.97896 +690906,203.45,92.1061 +690907,202.07,93.2703 +690908,200.66,94.4748 +690909,203.49,91.0186 +690910,202.11,92.111 +690911,200.71,93.2396 +690912,199.29,94.4076 +690913,202.16,91.059 +690914,200.77,92.1161 +690915,199.36,93.2086 +690916,197.92,94.3395 +690917,200.83,91.1002 +690918,199.43,92.1215 +690919,198,93.1773 +690920,196.55,94.2705 +690921,199.5,91.1421 +690922,198.09,92.127 +690923,196.65,93.1457 +690924,195.19,94.2007 +690925,198.17,91.1846 +690926,196.74,92.1328 +690927,195.29,93.1138 +690928,193.82,94.1302 +690929,196.84,91.2279 +690930,195.4,92.1387 +690931,193.94,93.0816 +690932,192.46,94.0588 +690933,195.51,91.2718 +690934,194.06,92.1448 +690935,192.59,93.0491 +690936,191.1,93.9867 +690937,194.17,91.3163 +690938,192.71,92.1511 +690939,191.23,93.0163 +690940,189.73,93.914 +690941,192.84,91.3614 +690942,191.37,92.1576 +690943,189.88,92.9833 +690944,188.37,93.8405 +690945,191.5,91.407 +690946,190.03,92.1642 +690947,188.53,92.95 +690948,187.02,93.7665 +690949,190.16,91.4532 +690950,188.68,92.1709 +690951,187.18,92.9166 +690952,185.66,93.6918 +690953,188.82,91.4999 +690954,187.33,92.1778 +690955,185.83,92.8828 +690956,184.3,93.6166 +690957,187.48,91.547 +690958,185.99,92.1848 +690959,184.48,92.8489 +690960,182.95,93.5408 +690961,186.14,91.5946 +690962,184.64,92.1919 +690963,183.13,92.8148 +690964,181.59,93.4645 +690965,184.8,91.6426 +690966,183.3,92.1992 +690967,181.78,92.7804 +690968,180.24,93.3878 +690969,183.46,91.691 +690970,181.95,92.2065 +690971,180.43,92.7459 +690972,178.89,93.3106 +690973,182.11,91.7397 +690974,180.6,92.2138 +690975,179.08,92.7112 +690976,177.54,93.2331 +690977,180.77,91.7887 +690978,179.26,92.2213 +690979,177.73,92.6764 +690980,176.19,93.1551 +690981,179.42,91.838 +690982,177.91,92.2288 +690983,176.38,92.6414 +690984,174.84,93.0769 +690985,178.07,91.8876 +690986,176.56,92.2364 +690987,175.03,92.6062 +690988,173.49,92.9983 +690989,176.72,91.9374 +690990,175.21,92.244 +690991,173.69,92.571 +690992,172.15,92.9195 +690993,175.37,91.9874 +690994,173.86,92.2516 +690995,172.34,92.5356 +690996,170.8,92.8404 +690997,174.02,92.0375 +690998,172.51,92.2592 +690999,170.99,92.5001 +691000,169.46,92.7612 +691001,172.66,92.0878 +691002,171.16,92.2669 +691003,169.65,92.4645 +691004,168.12,92.6817 +691005,171.31,92.1382 +691006,169.81,92.2745 +691007,168.3,92.4289 +691008,166.78,92.6022 +691009,169.95,92.1886 +691010,168.46,92.2821 +691011,166.96,92.3932 +691012,165.44,92.5226 +691013,168.6,92.2391 +691014,167.11,92.2897 +691015,165.61,92.3574 +691016,164.1,92.4429 +691017,167.24,92.2896 +691018,165.76,92.2973 +691019,164.27,92.3215 +691020,162.76,92.3631 +691021,165.88,92.34 +691022,164.41,92.3048 +691023,162.92,92.2857 +691024,161.43,92.2834 +691025,164.52,92.3904 +691026,163.06,92.3123 +691027,161.58,92.2498 +691028,160.09,92.2038 +691029,163.16,92.4407 +691030,161.7,92.3196 +691031,160.24,92.2138 +691032,158.76,92.1242 +691033,161.79,92.4908 +691034,160.35,92.3269 +691035,158.9,92.1779 +691036,157.43,92.0447 +691037,160.43,92.5408 +691038,159,92.3341 +691039,157.55,92.142 +691040,156.1,91.9654 +691041,159.07,92.5906 +691042,157.64,92.3412 +691043,156.21,92.1061 +691044,154.77,91.8862 +691045,157.7,92.6402 +691046,156.29,92.3482 +691047,154.87,92.0703 +691048,153.44,91.8073 +691049,156.33,92.6895 +691050,154.94,92.3551 +691051,153.53,92.0345 +691052,152.11,91.7285 +691053,154.96,92.7386 +691054,153.58,92.3618 +691055,152.19,91.9987 +691056,150.79,91.6501 +691057,153.59,92.7873 +691058,152.23,92.3684 +691059,150.85,91.963 +691060,149.46,91.572 +691061,152.22,92.8357 +691062,150.87,92.3748 +691063,149.51,91.9274 +691064,148.14,91.4942 +691065,150.85,92.8836 +691066,149.52,92.3811 +691067,148.17,91.8918 +691068,146.82,91.4168 +691069,149.48,92.9312 +691070,148.16,92.3872 +691071,146.83,91.8564 +691072,145.5,91.3398 +691073,148.1,92.9783 +691074,146.8,92.393 +691075,145.49,91.821 +691076,144.18,91.2632 +691077,146.73,93.025 +691078,145.45,92.3987 +691079,144.16,91.7858 +691080,142.86,91.1871 +691081,145.35,93.0711 +691082,144.09,92.4042 +691083,142.82,91.7507 +691084,141.54,91.1115 +691085,143.97,93.1167 +691086,142.73,92.4095 +691087,141.48,91.7157 +691088,140.22,91.0365 +691089,142.59,93.1618 +691090,141.38,92.4145 +691091,140.14,91.6809 +691092,138.91,90.96195 +691093,141.22,93.2062 +691094,140.02,92.4193 +691095,138.81,91.6463 +691096,137.59,90.88802 +691097,139.83,93.25 +691098,138.66,92.4239 +691099,137.47,91.6118 +691100,136.28,90.81471 +691101,138.45,93.2932 +691102,137.3,92.4282 +691103,136.14,91.5775 +691104,134.96,90.74205 +691105,137.07,93.3356 +691106,135.94,92.4322 +691107,134.8,91.5434 +691108,133.65,90.67006 +691109,135.69,93.3774 +691110,134.58,92.4359 +691111,133.47,91.5094 +691112,132.34,90.59877 +691113,134.3,93.4184 +691114,133.22,92.4394 +691115,132.13,91.4757 +691116,131.03,90.52821 +691117,132.92,93.4586 +691118,131.86,92.4425 +691119,130.8,91.4422 +691120,129.72,90.45841 +691121,131.53,93.498 +691122,130.5,92.4454 +691123,129.46,91.4089 +691124,128.41,90.3894 +691125,130.14,93.5366 +691126,129.14,92.4479 +691127,128.13,91.3759 +691128,127.11,90.32119 +691129,128.76,93.5743 +691130,127.78,92.4501 +691131,126.8,91.3431 +691132,125.8,90.25382 +691133,127.37,93.6111 +691134,126.42,92.452 +691135,125.46,91.3105 +691136,124.49,90.18732 +691137,125.98,93.6471 +691138,125.06,92.4536 +691139,124.13,91.2783 +691140,123.19,90.1217 +691141,124.59,93.682 +691142,123.7,92.4547 +691143,122.8,91.2462 +691144,121.88,90.056987 +691145,123.2,93.716 +691146,122.34,92.4556 +691147,121.47,91.2145 +691148,120.58,89.9932134 +691149,121.81,93.7491 +691150,120.98,92.456 +691151,120.13,91.1831 +691152,119.28,89.930398 +691153,120.41,93.7811 +691154,119.62,92.4561 +691155,118.8,91.1519 +691156,117.98,89.86856 +691157,119.02,93.812 +691158,118.25,92.4558 +691159,117.47,91.121 +691160,116.68,89.80773 +691161,117.63,93.8419 +691162,116.89,92.4552 +691163,116.14,91.0905 +691164,115.38,89.74792 +691165,116.23,93.8707 +691166,115.53,92.4541 +691167,114.81,91.0603 +691168,114.08,89.68916 +691169,114.84,93.8984 +691170,114.17,92.4526 +691171,113.48,91.0303 +691172,112.78,89.63147 +691173,113.44,93.925 +691174,112.8,92.4507 +691175,112.15,91.0008 +691176,111.48,89.57486 +691177,112.04,93.9504 +691178,111.44,92.4484 +691179,110.82,90.97153 +691180,110.18,89.51935 +691181,110.65,93.9746 +691182,110.08,92.4456 +691183,109.49,90.94263 +691184,108.88,89.46497 +691185,109.25,93.9976 +691186,108.71,92.4425 +691187,108.16,90.91409 +691188,107.59,89.41174 +691189,107.85,94.0194 +691190,107.35,92.4388 +691191,106.83,90.8859 +691192,106.29,89.35966 +691193,106.45,94.04 +691194,105.99,92.4348 +691195,105.5,90.85807 +691196,104.99,89.30876 +691197,105.06,94.0593 +691198,104.62,92.4303 +691199,104.17,90.83061 +691200,103.7,89.25905 +691201,103.66,94.0773 +691202,103.26,92.4253 +691203,102.84,90.80353 +691204,102.4,89.21055 +691205,102.26,94.094 +691206,101.9,92.4199 +691207,101.51,90.77682 +691208,101.11,89.16327 +691209,100.86,94.1094 +691210,100.53,92.414 +691211,100.19,90.7505 +691212,99.817,89.11723 +691213,99.458,94.1235 +691214,99.169,92.4076 +691215,98.857,90.72457 +691216,98.523,89.07245 +691217,98.058,94.1362 +691218,97.805,92.4008 +691219,97.529,90.69904 +691220,97.23,89.02892 +691221,96.657,94.1476 +691222,96.441,92.3935 +691223,96.201,90.6739 +691224,95.937,88.9867 +691225,95.256,94.1576 +691226,95.077,92.3856 +691227,94.872,90.64917 +691228,94.644,88.9457 +691229,93.855,94.1662 +691230,93.713,92.3773 +691231,93.545,90.62484 +691232,93.352,88.9061 +691233,92.454,94.1734 +691234,92.349,92.3685 +691235,92.217,90.60092 +691236,92.06,88.8677 +691237,91.053,94.1792 +691238,90.985,92.3592 +691239,90.889,90.57742 +691240,90.768,88.8307 +691241,89.652,94.1835 +691242,89.621,92.3495 +691243,89.561,90.55433 +691244,89.476,88.795 +691245,88.25,94.1864 +691246,88.257,92.3392 +691247,88.234,90.53167 +691248,88.184,88.7606 +691249,86.849,94.1879 +691250,86.892,92.3283 +691251,86.906,90.50943 +691252,86.893,88.7276 +691253,85.447,94.1879 +691254,85.528,92.317 +691255,85.579,90.48762 +691256,85.601,88.6959 +691257,84.046,94.1864 +691258,84.164,92.3052 +691259,84.251,90.46623 +691260,84.31,88.6656 +691261,82.644,94.1835 +691262,82.8,92.2929 +691263,82.924,90.44528 +691264,83.019,88.6366 +691265,81.243,94.179 +691266,81.436,92.28 +691267,81.596,90.42476 +691268,81.727,88.609 +691269,79.842,94.1731 +691270,80.072,92.2666 +691271,80.269,90.40467 +691272,80.436,88.5828 +691273,78.441,94.1657 +691274,78.708,92.2527 +691275,78.942,90.38502 +691276,79.144,88.558 +691277,77.04,94.1567 +691278,77.345,92.2383 +691279,77.614,90.3658 +691280,77.853,88.5345 +691281,75.639,94.1463 +691282,75.981,92.2234 +691283,76.287,90.34702 +691284,76.561,88.5124 +691285,74.239,94.1344 +691286,74.617,92.2079 +691287,74.959,90.32869 +691288,75.27,88.4917 +691289,72.839,94.1209 +691290,73.254,92.1919 +691291,73.632,90.31079 +691292,73.978,88.4724 +691293,71.439,94.1059 +691294,71.891,92.1754 +691295,72.304,90.29333 +691296,72.686,88.4544 +691297,70.039,94.0894 +691298,70.527,92.1584 +691299,70.977,90.2763 +691300,71.393,88.4378 +691301,68.64,94.0714 +691302,69.164,92.1408 +691303,69.649,90.25972 +691304,70.101,88.4226 +691305,67.241,94.0519 +691306,67.801,92.1227 +691307,68.322,90.24358 +691308,68.808,88.4088 +691309,65.843,94.0309 +691310,66.439,92.1041 +691311,66.994,90.22787 +691312,67.515,88.3964 +691313,64.445,94.0083 +691314,65.076,92.085 +691315,65.666,90.2126 +691316,66.221,88.3853 +691317,63.048,93.9843 +691318,63.714,92.0653 +691319,64.338,90.19777 +691320,64.927,88.3756 +691321,61.651,93.9587 +691322,62.351,92.0452 +691323,63.01,90.18337 +691324,63.633,88.3672 +691325,60.255,93.9316 +691326,60.989,92.0245 +691327,61.682,90.1694 +691328,62.339,88.3602 +691329,58.859,93.9031 +691330,59.627,92.0033 +691331,60.353,90.15586 +691332,61.043,88.3546 +691333,57.464,93.873 +691334,58.266,91.9816 +691335,59.025,90.14276 +691336,59.748,88.3503 +691337,56.069,93.8415 +691338,56.904,91.9594 +691339,57.696,90.13007 +691340,58.452,88.3473 +691341,54.675,93.8085 +691342,55.543,91.9367 +691343,56.368,90.11781 +691344,57.155,88.3456 +691345,53.282,93.7741 +691346,54.182,91.9134 +691347,55.039,90.10597 +691348,55.858,88.3453 +691349,51.889,93.7381 +691350,52.822,91.8897 +691351,53.71,90.094549 +691352,54.561,88.3463 +691353,50.498,93.7008 +691354,51.461,91.8655 +691355,52.381,90.083539 +691356,53.262,88.3485 +691357,49.107,93.662 +691358,50.101,91.8408 +691359,51.051,90.072941 +691360,51.963,88.3521 +691361,47.716,93.6217 +691362,48.741,91.8156 +691363,49.722,90.062748 +691364,50.664,88.3569 +691365,46.327,93.5801 +691366,47.382,91.7899 +691367,48.392,90.052958 +691368,49.364,88.3629 +691369,44.938,93.5371 +691370,46.023,91.7637 +691371,47.062,90.043566 +691372,48.063,88.3703 +691373,43.55,93.4927 +691374,44.664,91.7371 +691375,45.731,90.034568 +691376,46.761,88.3788 +691377,42.164,93.4469 +691378,43.305,91.71 +691379,44.401,90.02596 +691380,45.459,88.3886 +691381,40.778,93.3998 +691382,41.947,91.6824 +691383,43.07,90.017735 +691384,44.156,88.3996 +691385,39.392,93.3513 +691386,40.589,91.6543 +691387,41.739,90.0098903 +691388,42.852,88.4117 +691389,38.008,93.3015 +691390,39.231,91.6258 +691391,40.408,90.0024191 +691392,41.547,88.4251 +691393,36.625,93.2504 +691394,37.874,91.5969 +691395,39.077,89.9953165 +691396,40.241,88.4396 +691397,35.243,93.198 +691398,36.517,91.5675 +691399,37.745,89.988577 +691400,38.935,88.4552 +691401,33.862,93.1444 +691402,35.16,91.5377 +691403,36.413,89.982194 +691404,37.628,88.472 +691405,32.482,93.0895 +691406,33.804,91.5075 +691407,35.081,89.976162 +691408,36.32,88.4899 +691409,31.103,93.0334 +691410,32.448,91.4768 +691411,33.748,89.970475 +691412,35.011,88.5088 +691413,29.725,92.9761 +691414,31.092,91.4457 +691415,32.415,89.965126 +691416,33.701,88.5288 +691417,28.348,92.9176 +691418,29.737,91.4142 +691419,31.082,89.960108 +691420,32.39,88.5499 +691421,26.972,92.858 +691422,28.382,91.3823 +691423,29.749,89.955416 +691424,31.078,88.572 +691425,25.597,92.7972 +691426,27.028,91.35 +691427,28.415,89.951041 +691428,29.765,88.5951 +691429,24.224,92.7353 +691430,25.674,91.3173 +691431,27.081,89.946976 +691432,28.451,88.6192 +691433,22.852,92.6724 +691434,24.32,91.2843 +691435,25.746,89.943215 +691436,27.136,88.6442 +691437,21.48,92.6083 +691438,22.967,91.2508 +691439,24.412,89.93975 +691440,25.82,88.6702 +691441,20.11,92.5433 +691442,21.614,91.217 +691443,23.077,89.936573 +691444,24.503,88.6971 +691445,18.742,92.4772 +691446,20.262,91.1829 +691447,21.741,89.933676 +691448,23.185,88.7249 +691449,17.374,92.4101 +691450,18.91,91.1484 +691451,20.406,89.931052 +691452,21.865,88.7536 +691453,16.008,92.3421 +691454,17.559,91.1136 +691455,19.069,89.928691 +691456,20.545,88.7831 +691457,14.642,92.2731 +691458,16.208,91.0784 +691459,17.733,89.926587 +691460,19.224,88.8135 +691461,13.279,92.2033 +691462,14.857,91.0429 +691463,16.396,89.92473 +691464,17.901,88.8446 +691465,11.916,92.1325 +691466,13.507,91.0071 +691467,15.059,89.923113 +691468,16.577,88.8765 +691469,10.555,92.0609 +691470,12.157,90.97105 +691471,13.722,89.921725 +691472,15.252,88.9092 +691473,9.1944,91.9885 +691474,10.808,90.93467 +691475,12.384,89.920559 +691476,13.926,88.9426 +691477,7.8356,91.9154 +691478,9.4591,90.898 +691479,11.046,89.919606 +691480,12.599,88.9766 +691481,6.4781,91.8414 +691482,8.1107,90.86106 +691483,9.707,89.918856 +691484,11.271,89.01139 +691485,5.1219,91.7667 +691486,6.7628,90.82386 +691487,8.368,89.9183 +691488,9.9411,89.04678 +691489,3.7671,91.6914 +691490,5.4153,90.78641 +691491,7.0286,89.91793 +691492,8.6102,89.08278 +691493,2.4135,91.6153 +691494,4.0683,90.74871 +691495,5.6889,89.917735 +691496,7.2782,89.11937 +691497,1.0612,91.5387 +691498,2.7218,90.71078 +691499,4.3488,89.917706 +691500,5.945,89.15653 +691501,359.71,91.4614 +691502,1.3758,90.67263 +691503,3.0083,89.917834 +691504,4.6105,89.19421 +691505,358.36,91.3835 +691506,0.030178,90.63427 +691507,1.6674,89.918109 +691508,3.2748,89.23239 +691509,357.01,91.3052 +691510,358.69,90.5957 +691511,0.32612,89.918521 +691512,1.9378,89.27105 +691513,355.67,91.2263 +691514,357.34,90.55694 +691515,358.98,89.91906 +691516,0.5996,89.31016 +691517,354.32,91.1469 +691518,356,90.518 +691519,357.64,89.919717 +691520,359.26,89.34968 +691521,352.98,91.0671 +691522,354.65,90.47889 +691523,356.3,89.920481 +691524,357.92,89.38959 +691525,351.63,90.98685 +691526,353.31,90.43962 +691527,354.96,89.921343 +691528,356.58,89.42985 +691529,350.29,90.90625 +691530,351.97,90.4002 +691531,353.61,89.922292 +691532,355.23,89.47044 +691533,348.95,90.82531 +691534,350.62,90.36064 +691535,352.27,89.923317 +691536,353.89,89.51133 +691537,347.61,90.74405 +691538,349.28,90.32095 +691539,350.93,89.92441 +691540,352.54,89.55249 +691541,346.27,90.66251 +691542,347.94,90.28114 +691543,349.58,89.925559 +691544,351.2,89.59389 +691545,344.94,90.58073 +691546,346.6,90.24123 +691547,348.24,89.926755 +691548,349.85,89.63549 +691549,343.6,90.49874 +691550,345.26,90.20123 +691551,346.89,89.927986 +691552,348.5,89.67728 +691553,342.27,90.41657 +691554,343.92,90.16114 +691555,345.55,89.929243 +691556,347.15,89.7192 +691557,340.94,90.33426 +691558,342.58,90.12097 +691559,344.2,89.930515 +691560,345.8,89.76125 +691561,339.61,90.25183 +691562,341.24,90.080748 +691563,342.85,89.931792 +691564,344.44,89.80338 +691565,338.28,90.16933 +691566,339.9,90.04047 +691567,341.51,89.933063 +691568,343.09,89.84556 +691569,336.95,90.086784 +691570,338.57,90.00015124 +691571,340.16,89.934317 +691572,341.73,89.88777 +691573,335.62,90.0042252 +691574,337.23,89.959803 +691575,338.81,89.935545 +691576,340.38,89.929973 +691577,334.3,89.921689 +691578,335.89,89.919436 +691579,337.46,89.936736 +691580,339.02,89.972138 +691581,332.97,89.83921 +691582,334.55,89.87906 +691583,336.12,89.93788 +691584,337.66,90.014234 +691585,331.65,89.75681 +691586,333.22,89.83869 +691587,334.77,89.938965 +691588,336.3,90.056232 +691589,330.33,89.67454 +691590,331.88,89.79833 +691591,333.42,89.939983 +691592,334.93,90.098099 +691593,329.01,89.59243 +691594,330.55,89.758 +691595,332.07,89.940921 +691596,333.57,90.13981 +691597,327.69,89.51049 +691598,329.21,89.7177 +691599,330.72,89.94177 +691600,332.21,90.18132 +691601,326.37,89.42878 +691602,327.88,89.67745 +691603,329.37,89.94252 +691604,330.84,90.22262 +691605,325.05,89.34732 +691606,326.54,89.63726 +691607,328.02,89.94316 +691608,329.47,90.26366 +691609,323.73,89.26615 +691610,325.21,89.59714 +691611,326.67,89.943679 +691612,328.11,90.30442 +691613,322.42,89.18528 +691614,323.88,89.55709 +691615,325.32,89.944069 +691616,326.74,90.34487 +691617,321.11,89.10477 +691618,322.54,89.51713 +691619,323.96,89.944318 +691620,325.37,90.38497 +691621,319.79,89.02463 +691622,321.21,89.47727 +691623,322.61,89.944417 +691624,324,90.42471 +691625,318.48,88.9449 +691626,319.88,89.43753 +691627,321.26,89.944355 +691628,322.62,90.46404 +691629,317.17,88.8656 +691630,318.55,89.3979 +691631,319.91,89.944123 +691632,321.25,90.50293 +691633,315.86,88.7868 +691634,317.22,89.3584 +691635,318.55,89.943711 +691636,319.87,90.54137 +691637,314.56,88.7085 +691638,315.89,89.31904 +691639,317.2,89.943108 +691640,318.5,90.57931 +691641,313.25,88.6307 +691642,314.56,89.27984 +691643,315.85,89.942305 +691644,317.12,90.61674 +691645,311.94,88.5535 +691646,313.23,89.24079 +691647,314.49,89.941293 +691648,315.74,90.65361 +691649,310.64,88.4768 +691650,311.9,89.20191 +691651,313.14,89.940062 +691652,314.37,90.68991 +691653,309.34,88.4008 +691654,310.57,89.16322 +691655,311.78,89.938603 +691656,312.99,90.7256 +691657,308.03,88.3254 +691658,309.24,89.12471 +691659,310.43,89.936905 +691660,311.6,90.76066 +691661,306.73,88.2507 +691662,307.91,89.0864 +691663,309.07,89.934961 +691664,310.22,90.79506 +691665,305.43,88.1767 +691666,306.58,89.0483 +691667,307.72,89.93276 +691668,308.84,90.82876 +691669,304.13,88.1035 +691670,305.26,89.01042 +691671,306.36,89.930295 +691672,307.46,90.86176 +691673,302.83,88.031 +691674,303.93,88.9728 +691675,305.01,89.927555 +691676,306.07,90.894 +691677,301.53,87.9592 +691678,302.6,88.9353 +691679,303.65,89.924533 +691680,304.69,90.92548 +691681,300.24,87.8883 +691682,301.27,88.8982 +691683,302.3,89.921219 +691684,303.3,90.95616 +691685,298.94,87.8182 +691686,299.95,88.8612 +691687,300.94,89.917606 +691688,301.91,90.98602 +691689,297.65,87.749 +691690,298.62,88.8246 +691691,299.58,89.913684 +691692,300.52,91.015 +691693,296.35,87.6806 +691694,297.3,88.7882 +691695,298.22,89.909446 +691696,299.13,91.0432 +691697,295.06,87.6132 +691698,295.97,88.7521 +691699,296.87,89.904884 +691700,297.74,91.0704 +691701,293.76,87.5466 +691702,294.65,88.7163 +691703,295.51,89.89999 +691704,296.35,91.0967 +691705,292.47,87.4811 +691706,293.32,88.6807 +691707,294.15,89.89475 +691708,294.96,91.1221 +691709,291.18,87.4165 +691710,292,88.6455 +691711,292.79,89.88917 +691712,293.57,91.1465 +691713,289.89,87.3529 +691714,290.67,88.6106 +691715,291.44,89.88324 +691716,292.18,91.17 +691717,288.6,87.2903 +691718,289.35,88.5759 +691719,290.08,89.87694 +691720,290.79,91.1924 +691721,287.31,87.2287 +691722,288.02,88.5417 +691723,288.72,89.87027 +691724,289.39,91.2137 +691725,286.02,87.1682 +691726,286.7,88.5077 +691727,287.36,89.86322 +691728,288,91.234 +691729,284.73,87.1088 +691730,285.38,88.4741 +691731,286,89.8558 +691732,286.6,91.2533 +691733,283.45,87.0505 +691734,284.05,88.4408 +691735,284.64,89.84798 +691736,285.21,91.2714 +691737,282.16,86.9933 +691738,282.73,88.4079 +691739,283.28,89.83977 +691740,283.81,91.2884 +691741,280.87,86.9372 +691742,281.41,88.3753 +691743,281.92,89.83115 +691744,282.41,91.3043 +691745,279.59,86.8823 +691746,280.09,88.3431 +691747,280.56,89.82213 +691748,281.02,91.319 +691749,278.3,86.8285 +691750,278.76,88.3113 +691751,279.2,89.8127 +691752,279.62,91.3326 +691753,277.01,86.7759 +691754,277.44,88.2798 +691755,277.84,89.80284 +691756,278.22,91.345 +691757,275.73,86.7245 +691758,276.12,88.2487 +691759,276.49,89.79257 +691760,276.82,91.3561 +691761,274.45,86.6743 +691762,274.8,88.218 +691763,275.13,89.78186 +691764,275.43,91.366 +691765,273.16,86.6253 +691766,273.48,88.1877 +691767,273.77,89.77072 +691768,274.03,91.3747 +691769,271.88,86.5776 +691770,272.15,88.1578 +691771,272.41,89.75914 +691772,272.63,91.3821 +691773,270.59,86.5311 +691774,270.83,88.1282 +691775,271.05,89.74711 +691776,271.23,91.3883 +691777,269.31,86.4859 +691778,269.51,88.0991 +691779,269.69,89.73464 +691780,269.83,91.3932 +691781,268.03,86.4419 +691782,268.19,88.0704 +691783,268.33,89.72172 +691784,268.43,91.3967 +691785,266.74,86.3992 +691786,266.87,88.0421 +691787,266.97,89.70834 +691788,267.03,91.399 +691789,265.46,86.3579 +691790,265.55,88.0142 +691791,265.61,89.6945 +691792,265.63,91.3999 +691793,264.18,86.3178 +691794,264.23,87.9867 +691795,264.25,89.6802 +691796,264.23,91.3995 +691797,262.9,86.279 +691798,262.91,87.9596 +691799,262.89,89.66543 +691800,262.83,91.3978 +691801,261.61,86.2415 +691802,261.59,87.933 +691803,261.53,89.6502 +691804,261.43,91.3946 +691805,260.33,86.2053 +691806,260.27,87.9068 +691807,260.17,89.63449 +691808,260.03,91.3902 +691809,259.05,86.1705 +691810,258.94,87.881 +691811,258.81,89.61831 +691812,258.63,91.3843 +691813,257.77,86.137 +691814,257.62,87.8556 +691815,257.45,89.60165 +691816,257.23,91.3771 +691817,256.49,86.1049 +691818,256.3,87.8307 +691819,256.09,89.58452 +691820,255.83,91.3685 +691821,255.2,86.074 +691822,254.98,87.8062 +691823,254.73,89.56691 +691824,254.43,91.3585 +691825,253.92,86.0446 +691826,253.66,87.7821 +691827,253.37,89.54881 +691828,253.03,91.347 +691829,252.64,86.0164 +691830,252.34,87.7585 +691831,252.01,89.53023 +691832,251.63,91.3342 +691833,251.36,85.9897 +691834,251.02,87.7353 +691835,250.65,89.51117 +691836,250.24,91.32 +691837,250.07,85.9642 +691838,249.7,87.7125 +691839,249.29,89.49163 +691840,248.84,91.3043 +691841,248.79,85.9402 +691842,248.38,87.6902 +691843,247.93,89.4716 +691844,247.44,91.2873 +691845,247.51,85.9174 +691846,247.06,87.6683 +691847,246.57,89.45108 +691848,246.04,91.2688 +691849,246.22,85.8961 +691850,245.74,87.6469 +691851,245.21,89.43008 +691852,244.64,91.2489 +691853,244.94,85.876 +691854,244.42,87.6259 +691855,243.85,89.40859 +691856,243.25,91.2275 +691857,243.66,85.8574 +691858,243.1,87.6053 +691859,242.5,89.38662 +691860,241.85,91.2048 +691861,242.37,85.84 +691862,241.77,87.5852 +691863,241.14,89.36417 +691864,240.45,91.1806 +691865,241.09,85.824 +691866,240.45,87.5655 +691867,239.78,89.34123 +691868,239.06,91.155 +691869,239.8,85.8094 +691870,239.13,87.5462 +691871,238.42,89.31781 +691872,237.66,91.128 +691873,238.51,85.7961 +691874,237.81,87.5274 +691875,237.06,89.29392 +691876,236.27,91.0995 +691877,237.23,85.784 +691878,236.49,87.509 +691879,235.71,89.26954 +691880,234.87,91.0697 +691881,235.94,85.7734 +691882,235.17,87.4911 +691883,234.35,89.24468 +691884,233.48,91.0385 +691885,234.65,85.764 +691886,233.84,87.4735 +691887,232.99,89.21935 +691888,232.09,91.0058 +691889,233.37,85.7559 +691890,232.52,87.4564 +691891,231.63,89.19355 +691892,230.7,90.97177 +691893,232.08,85.7491 +691894,231.2,87.4397 +691895,230.28,89.16728 +691896,229.3,90.93633 +691897,230.79,85.7437 +691898,229.88,87.4234 +691899,228.92,89.14054 +691900,227.91,90.89952 +691901,229.5,85.7395 +691902,228.55,87.4076 +691903,227.57,89.11333 +691904,226.52,90.86134 +691905,228.21,85.7365 +691906,227.23,87.3922 +691907,226.21,89.08567 +691908,225.13,90.82179 +691909,226.92,85.7348 +691910,225.91,87.3771 +691911,224.85,89.05755 +691912,223.75,90.78089 +691913,225.63,85.7344 +691914,224.59,87.3625 +691915,223.5,89.02897 +691916,222.36,90.73865 +691917,224.33,85.7352 +691918,223.26,87.3483 +691919,222.14,88.9999 +691920,220.97,90.69508 +691921,223.04,85.7372 +691922,221.94,87.3345 +691923,220.79,88.9705 +691924,219.59,90.65019 +691925,221.75,85.7404 +691926,220.61,87.321 +691927,219.44,88.9406 +691928,218.2,90.60399 +691929,220.45,85.7448 +691930,219.29,87.308 +691931,218.08,88.9102 +691932,216.82,90.5565 +691933,219.16,85.7504 +691934,217.97,87.2953 +691935,216.73,88.8794 +691936,215.44,90.50773 +691937,217.86,85.7572 +691938,216.64,87.2831 +691939,215.38,88.8482 +691940,214.05,90.45769 +691941,216.56,85.7651 +691942,215.32,87.2712 +691943,214.02,88.8166 +691944,212.67,90.40641 +691945,215.26,85.7741 +691946,213.99,87.2597 +691947,212.67,88.7846 +691948,211.29,90.35389 +691949,213.97,85.7842 +691950,212.67,87.2485 +691951,211.32,88.7521 +691952,209.91,90.30016 +691953,212.67,85.7955 +691954,211.34,87.2377 +691955,209.97,88.7193 +691956,208.54,90.24523 +691957,211.36,85.8078 +691958,210.01,87.2272 +691959,208.62,88.686 +691960,207.16,90.18912 +691961,210.06,85.8212 +691962,208.69,87.2171 +691963,207.26,88.6524 +691964,205.79,90.13185 +691965,208.76,85.8356 +691966,207.36,87.2074 +691967,205.91,88.6183 +691968,204.41,90.073441 +691969,207.46,85.851 +691970,206.03,87.1979 +691971,204.56,88.5839 +691972,203.04,90.013908 +691973,206.15,85.8675 +691974,204.71,87.1888 +691975,203.21,88.5491 +691976,201.67,89.953274 +691977,204.84,85.8849 +691978,203.38,87.1801 +691979,201.87,88.514 +691980,200.3,89.89156 +691981,203.54,85.9033 +691982,202.05,87.1716 +691983,200.52,88.4785 +691984,198.93,89.82879 +691985,202.23,85.9226 +691986,200.72,87.1635 +691987,199.17,88.4427 +691988,197.56,89.76498 +691989,200.92,85.9429 +691990,199.39,87.1556 +691991,197.82,88.4065 +691992,196.19,89.70016 +691993,199.61,85.964 +691994,198.06,87.148 +691995,196.47,88.3699 +691996,194.83,89.63436 +691997,198.3,85.986 +691998,196.73,87.1407 +691999,195.13,88.3331 +692000,193.46,89.56758 +692001,196.98,86.0089 +692002,195.41,87.1337 +692003,193.78,88.2959 +692004,192.1,89.49987 +692005,195.67,86.0326 +692006,194.07,87.127 +692007,192.43,88.2584 +692008,190.74,89.43124 +692009,194.35,86.0571 +692010,192.74,87.1205 +692011,191.09,88.2206 +692012,189.38,89.36173 +692013,193.04,86.0824 +692014,191.41,87.1143 +692015,189.74,88.1826 +692016,188.02,89.29134 +692017,191.72,86.1084 +692018,190.08,87.1083 +692019,188.4,88.1442 +692020,186.66,89.22013 +692021,190.4,86.1352 +692022,188.75,87.1026 +692023,187.05,88.1056 +692024,185.3,89.1481 +692025,189.08,86.1626 +692026,187.42,87.0971 +692027,185.71,88.0666 +692028,183.95,89.07529 +692029,187.76,86.1908 +692030,186.09,87.0918 +692031,184.37,88.0275 +692032,182.6,89.00172 +692033,186.44,86.2196 +692034,184.75,87.0867 +692035,183.02,87.9881 +692036,181.24,88.9274 +692037,185.11,86.249 +692038,183.42,87.0818 +692039,181.68,87.9484 +692040,179.89,88.8524 +692041,183.79,86.279 +692042,182.09,87.0771 +692043,180.34,87.9085 +692044,178.54,88.7768 +692045,182.46,86.3096 +692046,180.75,87.0726 +692047,179,87.8684 +692048,177.2,88.7005 +692049,181.13,86.3407 +692050,179.42,87.0683 +692051,177.66,87.8281 +692052,175.85,88.6236 +692053,179.81,86.3723 +692054,178.08,87.0641 +692055,176.32,87.7876 +692056,174.5,88.5461 +692057,178.47,86.4045 +692058,176.75,87.0601 +692059,174.98,87.7469 +692060,173.16,88.468 +692061,177.14,86.4371 +692062,175.41,87.0563 +692063,173.64,87.706 +692064,171.82,88.3895 +692065,175.81,86.4701 +692066,174.08,87.0526 +692067,172.3,87.6649 +692068,170.48,88.3104 +692069,174.48,86.5036 +692070,172.74,87.049 +692071,170.96,87.6237 +692072,169.14,88.2309 +692073,173.14,86.5374 +692074,171.4,87.0455 +692075,169.62,87.5824 +692076,167.8,88.151 +692077,171.8,86.5715 +692078,170.06,87.0421 +692079,168.29,87.5408 +692080,166.46,88.0706 +692081,170.46,86.606 +692082,168.73,87.0388 +692083,166.95,87.4992 +692084,165.13,87.9899 +692085,169.13,86.6408 +692086,167.39,87.0356 +692087,165.61,87.4574 +692088,163.8,87.9089 +692089,167.78,86.6759 +692090,166.05,87.0325 +692091,164.28,87.4156 +692092,162.46,87.8275 +692093,166.44,86.7111 +692094,164.71,87.0295 +692095,162.94,87.3736 +692096,161.13,87.7459 +692097,165.1,86.7466 +692098,163.37,87.0265 +692099,161.61,87.3315 +692100,159.8,87.6641 +692101,163.75,86.7823 +692102,162.03,87.0236 +692103,160.27,87.2894 +692104,158.48,87.582 +692105,162.41,86.818 +692106,160.69,87.0207 +692107,158.94,87.2472 +692108,157.15,87.4998 +692109,161.06,86.854 +692110,159.35,87.0178 +692111,157.61,87.2049 +692112,155.82,87.4174 +692113,159.71,86.89 +692114,158.01,87.015 +692115,156.27,87.1626 +692116,154.5,87.335 +692117,158.36,86.926 +692118,156.67,87.0121 +692119,154.94,87.1202 +692120,153.18,87.2524 +692121,157.01,86.9621 +692122,155.33,87.0093 +692123,153.61,87.0778 +692124,151.86,87.1698 +692125,155.66,86.9982 +692126,153.98,87.0065 +692127,152.28,87.0354 +692128,150.54,87.0872 +692129,154.3,87.0342 +692130,152.64,87.0036 +692131,150.95,86.993 +692132,149.22,87.0046 +692133,152.95,87.0702 +692134,151.3,87.0007 +692135,149.62,86.9506 +692136,147.9,86.9221 +692137,151.59,87.1061 +692138,149.95,86.9977 +692139,148.29,86.9083 +692140,146.59,86.8396 +692141,150.23,87.1419 +692142,148.61,86.9947 +692143,146.96,86.8659 +692144,145.27,86.7573 +692145,148.87,87.1775 +692146,147.27,86.9917 +692147,145.63,86.8236 +692148,143.96,86.6751 +692149,147.51,87.2129 +692150,145.92,86.9886 +692151,144.3,86.7813 +692152,142.65,86.5931 +692153,146.15,87.2482 +692154,144.58,86.9853 +692155,142.97,86.7391 +692156,141.34,86.5113 +692157,144.79,87.2832 +692158,143.23,86.982 +692159,141.64,86.697 +692160,140.03,86.4297 +692161,143.42,87.3179 +692162,141.88,86.9786 +692163,140.32,86.6549 +692164,138.72,86.3484 +692165,142.06,87.3523 +692166,140.54,86.9751 +692167,138.99,86.6129 +692168,137.41,86.2674 +692169,140.69,87.3864 +692170,139.19,86.9715 +692171,137.66,86.571 +692172,136.11,86.1868 +692173,139.32,87.4202 +692174,137.84,86.9677 +692175,136.34,86.5293 +692176,134.81,86.1065 +692177,137.95,87.4536 +692178,136.5,86.9638 +692179,135.01,86.4876 +692180,133.5,86.0266 +692181,136.58,87.4865 +692182,135.15,86.9598 +692183,133.69,86.4461 +692184,132.2,85.9472 +692185,135.21,87.519 +692186,133.8,86.9556 +692187,132.36,86.4047 +692188,130.9,85.8681 +692189,133.84,87.5511 +692190,132.45,86.9512 +692191,131.04,86.3634 +692192,129.6,85.7896 +692193,132.47,87.5827 +692194,131.1,86.9466 +692195,129.72,86.3224 +692196,128.3,85.7116 +692197,131.09,87.6137 +692198,129.75,86.9419 +692199,128.39,86.2814 +692200,127.01,85.6342 +692201,129.71,87.6442 +692202,128.4,86.9369 +692203,127.07,86.2407 +692204,125.71,85.5573 +692205,128.34,87.6742 +692206,127.06,86.9318 +692207,125.75,86.2002 +692208,124.42,85.481 +692209,126.96,87.7035 +692210,125.7,86.9264 +692211,124.43,86.1598 +692212,123.12,85.4053 +692213,125.58,87.7322 +692214,124.35,86.9208 +692215,123.1,86.1196 +692216,121.83,85.3303 +692217,124.2,87.7602 +692218,123,86.915 +692219,121.78,86.0797 +692220,120.54,85.256 +692221,122.82,87.7876 +692222,121.65,86.909 +692223,120.46,86.04 +692224,119.25,85.1823 +692225,121.44,87.8143 +692226,120.3,86.9027 +692227,119.14,86.0005 +692228,117.96,85.1095 +692229,120.06,87.8402 +692230,118.95,86.8961 +692231,117.82,85.9613 +692232,116.67,85.0373 +692233,118.67,87.8654 +692234,117.6,86.8893 +692235,116.5,85.9223 +692236,115.38,84.966 +692237,117.29,87.8898 +692238,116.25,86.8822 +692239,115.18,85.8835 +692240,114.09,84.8955 +692241,115.9,87.9134 +692242,114.89,86.8748 +692243,113.86,85.845 +692244,112.81,84.8258 +692245,114.52,87.9362 +692246,113.54,86.8671 +692247,112.54,85.8068 +692248,111.52,84.7569 +692249,113.13,87.9582 +692250,112.19,86.8592 +692251,111.23,85.7689 +692252,110.24,84.689 +692253,111.74,87.9792 +692254,110.84,86.8509 +692255,109.91,85.7313 +692256,108.96,84.6219 +692257,110.35,87.9994 +692258,109.48,86.8423 +692259,108.59,85.6939 +692260,107.67,84.5558 +692261,108.96,88.0187 +692262,108.13,86.8334 +692263,107.27,85.6569 +692264,106.39,84.4906 +692265,107.57,88.037 +692266,106.78,86.8242 +692267,105.95,85.6202 +692268,105.11,84.4264 +692269,106.18,88.0544 +692270,105.42,86.8146 +692271,104.64,85.5838 +692272,103.83,84.3632 +692273,104.79,88.0708 +692274,104.07,86.8047 +692275,103.32,85.5477 +692276,102.55,84.301 +692277,103.4,88.0862 +692278,102.71,86.7945 +692279,102,85.5119 +692280,101.27,84.2398 +692281,102.01,88.1005 +692282,101.36,86.7839 +692283,100.69,85.4765 +692284,99.992,84.1797 +692285,100.61,88.1139 +692286,100,86.7729 +692287,99.371,85.4414 +692288,98.714,84.1207 +692289,99.218,88.1262 +692290,98.649,86.7616 +692291,98.055,85.4067 +692292,97.436,84.0627 +692293,97.824,88.1374 +692294,97.295,86.7499 +692295,96.739,85.3723 +692296,96.159,84.0058 +692297,96.429,88.1475 +692298,95.94,86.7379 +692299,95.424,85.3383 +692300,94.883,83.9501 +692301,95.034,88.1566 +692302,94.585,86.7254 +692303,94.109,85.3047 +692304,93.607,83.8955 +692305,93.639,88.1645 +692306,93.229,86.7126 +692307,92.793,85.2714 +692308,92.331,83.842 +692309,92.243,88.1712 +692310,91.874,86.6994 +692311,91.478,85.2385 +692312,91.056,83.7897 +692313,90.846,88.1769 +692314,90.519,86.6857 +692315,90.164,85.206 +692316,89.781,83.7386 +692317,89.449,88.1813 +692318,89.163,86.6717 +692319,88.849,85.1739 +692320,88.507,83.6887 +692321,88.052,88.1846 +692322,87.808,86.6573 +692323,87.534,85.1422 +692324,87.233,83.64 +692325,86.655,88.1866 +692326,86.452,86.6424 +692327,86.22,85.1108 +692328,85.959,83.5924 +692329,85.258,88.1875 +692330,85.097,86.6272 +692331,84.906,85.0799 +692332,84.686,83.5462 +692333,83.86,88.1871 +692334,83.741,86.6115 +692335,83.591,85.0494 +692336,83.412,83.5011 +692337,82.462,88.1856 +692338,82.386,86.5954 +692339,82.277,85.0192 +692340,82.139,83.4574 +692341,81.064,88.1827 +692342,81.03,86.5789 +692343,80.963,84.9895 +692344,80.866,83.4148 +692345,79.666,88.1786 +692346,79.674,86.562 +692347,79.649,84.9602 +692348,79.593,83.3736 +692349,78.268,88.1733 +692350,78.319,86.5446 +692351,78.336,84.9314 +692352,78.321,83.3336 +692353,76.87,88.1667 +692354,76.963,86.5268 +692355,77.022,84.9029 +692356,77.048,83.2949 +692357,75.472,88.1588 +692358,75.608,86.5086 +692359,75.708,84.8748 +692360,75.776,83.2575 +692361,74.074,88.1496 +692362,74.252,86.4899 +692363,74.394,84.8472 +692364,74.503,83.2214 +692365,72.676,88.1391 +692366,72.897,86.4708 +692367,73.081,84.82 +692368,73.23,83.1865 +692369,71.278,88.1273 +692370,71.541,86.4512 +692371,71.767,84.7933 +692372,71.958,83.153 +692373,69.88,88.1142 +692374,70.186,86.4312 +692375,70.453,84.7669 +692376,70.685,83.1208 +692377,68.483,88.0998 +692378,68.831,86.4107 +692379,69.139,84.741 +692380,69.412,83.0899 +692381,67.085,88.084 +692382,67.476,86.3898 +692383,67.826,84.7155 +692384,68.139,83.0604 +692385,65.688,88.067 +692386,66.121,86.3685 +692387,66.512,84.6905 +692388,66.866,83.0321 +692389,64.291,88.0486 +692390,64.766,86.3467 +692391,65.198,84.6659 +692392,65.593,83.0052 +692393,62.895,88.0289 +692394,63.411,86.3245 +692395,63.884,84.6417 +692396,64.319,82.9795 +692397,61.498,88.0079 +692398,62.056,86.3018 +692399,62.57,84.618 +692400,63.045,82.9552 +692401,60.103,87.9855 +692402,60.702,86.2786 +692403,61.256,84.5947 +692404,61.771,82.9322 +692405,58.707,87.9618 +692406,59.347,86.255 +692407,59.942,84.5718 +692408,60.496,82.9106 +692409,57.312,87.9367 +692410,57.993,86.231 +692411,58.628,84.5494 +692412,59.222,82.8902 +692413,55.918,87.9104 +692414,56.639,86.2065 +692415,57.314,84.5273 +692416,57.946,82.8711 +692417,54.524,87.8827 +692418,55.286,86.1816 +692419,55.999,84.5058 +692420,56.671,82.8534 +692421,53.13,87.8537 +692422,53.932,86.1562 +692423,54.685,84.4846 +692424,55.395,82.837 +692425,51.738,87.8233 +692426,52.579,86.1304 +692427,53.37,84.4639 +692428,54.118,82.8218 +692429,50.345,87.7917 +692430,51.226,86.1041 +692431,52.055,84.4436 +692432,52.841,82.8079 +692433,48.954,87.7587 +692434,49.873,86.0774 +692435,50.74,84.4237 +692436,51.563,82.7954 +692437,47.563,87.7244 +692438,48.52,86.0503 +692439,49.425,84.4043 +692440,50.285,82.7841 +692441,46.172,87.6888 +692442,47.168,86.0227 +692443,48.11,84.3853 +692444,49.006,82.774 +692445,44.783,87.6519 +692446,45.816,85.9947 +692447,46.794,84.3667 +692448,47.727,82.7653 +692449,43.394,87.6137 +692450,44.464,85.9662 +692451,45.479,84.3485 +692452,46.447,82.7577 +692453,42.006,87.5743 +692454,43.112,85.9374 +692455,44.163,84.3307 +692456,45.166,82.7515 +692457,40.619,87.5335 +692458,41.761,85.9081 +692459,42.847,84.3133 +692460,43.884,82.7464 +692461,39.233,87.4915 +692462,40.41,85.8783 +692463,41.531,84.2964 +692464,42.602,82.7426 +692465,37.847,87.4483 +692466,39.059,85.8482 +692467,40.214,84.2798 +692468,41.319,82.74 +692469,36.463,87.4038 +692470,37.709,85.8177 +692471,38.897,84.2636 +692472,40.035,82.7385 +692473,35.079,87.358 +692474,36.359,85.7867 +692475,37.58,84.2479 +692476,38.751,82.7383 +692477,33.697,87.3111 +692478,35.01,85.7553 +692479,36.263,84.2325 +692480,37.465,82.7392 +692481,32.315,87.2629 +692482,33.66,85.7236 +692483,34.945,84.2175 +692484,36.179,82.7413 +692485,30.935,87.2136 +692486,32.311,85.6914 +692487,33.627,84.2029 +692488,34.892,82.7445 +692489,29.555,87.163 +692490,30.963,85.6588 +692491,32.309,84.1886 +692492,33.604,82.7489 +692493,28.177,87.1113 +692494,29.615,85.6259 +692495,30.991,84.1748 +692496,32.315,82.7544 +692497,26.799,87.0584 +692498,28.267,85.5926 +692499,29.672,84.1613 +692500,31.025,82.7609 +692501,25.423,87.0045 +692502,26.919,85.5589 +692503,28.353,84.1481 +692504,29.734,82.7686 +692505,24.048,86.9493 +692506,25.572,85.5248 +692507,27.034,84.1353 +692508,28.442,82.7772 +692509,22.674,86.8931 +692510,24.226,85.4904 +692511,25.714,84.1229 +692512,27.149,82.787 +692513,21.301,86.8358 +692514,22.88,85.4556 +692515,24.394,84.1108 +692516,25.855,82.7978 +692517,19.93,86.7774 +692518,21.534,85.4204 +692519,23.074,84.099 +692520,24.56,82.8095 +692521,18.559,86.718 +692522,20.188,85.3849 +692523,21.753,84.0876 +692524,23.264,82.8223 +692525,17.19,86.6576 +692526,18.843,85.3491 +692527,20.432,84.0765 +692528,21.967,82.836 +692529,15.822,86.5961 +692530,17.499,85.3129 +692531,19.111,84.0657 +692532,20.668,82.8507 +692533,14.456,86.5337 +692534,16.155,85.2764 +692535,17.789,84.0552 +692536,19.369,82.8663 +692537,13.091,86.4703 +692538,14.811,85.2396 +692539,16.467,84.045 +692540,18.068,82.8827 +692541,11.727,86.4059 +692542,13.468,85.2025 +692543,15.145,84.0352 +692544,16.766,82.9001 +692545,10.364,86.3406 +692546,12.126,85.165 +692547,13.822,84.0256 +692548,15.463,82.9184 +692549,9.0032,86.2744 +692550,10.783,85.1273 +692551,12.499,84.0163 +692552,14.159,82.9374 +692553,7.6434,86.2074 +692554,9.4416,85.0893 +692555,11.175,84.0072 +692556,12.853,82.9573 +692557,6.285,86.1395 +692558,8.1004,85.051 +692559,9.8511,83.9985 +692560,11.546,82.978 +692561,4.928,86.0707 +692562,6.7596,85.0125 +692563,8.5267,83.99 +692564,10.238,82.9995 +692565,3.5724,86.0012 +692566,5.4193,84.9736 +692567,7.2019,83.9817 +692568,8.929,83.0216 +692569,2.2183,85.9309 +692570,4.0796,84.9345 +692571,5.8767,83.9737 +692572,7.6184,83.0446 +692573,0.86553,85.8598 +692574,2.7403,84.8952 +692575,4.551,83.9659 +692576,6.3065,83.0682 +692577,359.51,85.788 +692578,1.4015,84.8556 +692579,3.225,83.9583 +692580,4.9933,83.0924 +692581,358.16,85.7155 +692582,0.063204,84.8158 +692583,1.8985,83.951 +692584,3.6788,83.1174 +692585,356.82,85.6423 +692586,358.73,84.7758 +692587,0.57165,83.9439 +692588,2.363,83.1429 +692589,355.47,85.5684 +692590,357.39,84.7356 +692591,359.24,83.9369 +692592,1.0458,83.169 +692593,354.12,85.494 +692594,356.05,84.6951 +692595,357.92,83.9302 +692596,359.73,83.1957 +692597,352.78,85.4189 +692598,354.72,84.6545 +692599,356.59,83.9236 +692600,358.41,83.223 +692601,351.44,85.3433 +692602,353.38,84.6136 +692603,355.26,83.9173 +692604,357.09,83.2507 +692605,350.1,85.2672 +692606,352.04,84.5726 +692607,353.93,83.911 +692608,355.76,83.279 +692609,348.76,85.1905 +692610,350.71,84.5315 +692611,352.6,83.905 +692612,354.44,83.3077 +692613,347.42,85.1133 +692614,349.38,84.4901 +692615,351.27,83.8991 +692616,353.11,83.3368 +692617,346.08,85.0357 +692618,348.04,84.4487 +692619,349.94,83.8933 +692620,351.79,83.3663 +692621,344.75,84.9577 +692622,346.71,84.4071 +692623,348.61,83.8876 +692624,350.46,83.3962 +692625,343.42,84.8793 +692626,345.38,84.3653 +692627,347.28,83.8821 +692628,349.13,83.4265 +692629,342.08,84.8005 +692630,344.04,84.3235 +692631,345.95,83.8767 +692632,347.8,83.4571 +692633,340.75,84.7214 +692634,342.71,84.2815 +692635,344.61,83.8714 +692636,346.47,83.488 +692637,339.42,84.642 +692638,341.38,84.2394 +692639,343.28,83.8661 +692640,345.13,83.5191 +692641,338.1,84.5623 +692642,340.05,84.1973 +692643,341.95,83.861 +692644,343.8,83.5505 +692645,336.77,84.4824 +692646,338.72,84.155 +692647,340.62,83.8559 +692648,342.46,83.5821 +692649,335.45,84.4023 +692650,337.39,84.1127 +692651,339.28,83.8509 +692652,341.12,83.6139 +692653,334.12,84.322 +692654,336.06,84.0704 +692655,337.95,83.8459 +692656,339.78,83.6458 +692657,332.8,84.2415 +692658,334.73,84.028 +692659,336.61,83.841 +692660,338.44,83.6778 +692661,331.48,84.1609 +692662,333.41,83.9855 +692663,335.28,83.8361 +692664,337.1,83.71 +692665,330.17,84.0803 +692666,332.08,83.943 +692667,333.94,83.8312 +692668,335.76,83.7422 +692669,328.85,83.9995 +692670,330.75,83.9005 +692671,332.61,83.8264 +692672,334.41,83.7744 +692673,327.53,83.9188 +692674,329.43,83.858 +692675,331.27,83.8215 +692676,333.07,83.8067 +692677,326.22,83.838 +692678,328.1,83.8155 +692679,329.93,83.8166 +692680,331.72,83.8389 +692681,324.91,83.7573 +692682,326.78,83.773 +692683,328.59,83.8118 +692684,330.37,83.8711 +692685,323.6,83.6767 +692686,325.45,83.7305 +692687,327.26,83.8069 +692688,329.02,83.9032 +692689,322.29,83.5961 +692690,324.13,83.6881 +692691,325.92,83.8019 +692692,327.67,83.9352 +692693,320.98,83.5157 +692694,322.8,83.6457 +692695,324.58,83.7969 +692696,326.31,83.967 +692697,319.67,83.4354 +692698,321.48,83.6033 +692699,323.24,83.7919 +692700,324.96,83.9987 +692701,318.37,83.3554 +692702,320.16,83.561 +692703,321.9,83.7868 +692704,323.6,84.0303 +692705,317.06,83.2755 +692706,318.83,83.5188 +692707,320.56,83.7816 +692708,322.24,84.0616 +692709,315.76,83.1959 +692710,317.51,83.4767 +692711,319.22,83.7763 +692712,320.89,84.0926 +692713,314.46,83.1166 +692714,316.19,83.4346 +692715,317.88,83.771 +692716,319.53,84.1234 +692717,313.16,83.0376 +692718,314.87,83.3927 +692719,316.54,83.7655 +692720,318.17,84.1538 +692721,311.86,82.9589 +692722,313.55,83.3509 +692723,315.2,83.76 +692724,316.8,84.184 +692725,310.57,82.8806 +692726,312.23,83.3091 +692727,313.85,83.7543 +692728,315.44,84.2138 +692729,309.27,82.8027 +692730,310.91,83.2676 +692731,312.51,83.7484 +692732,314.07,84.2432 +692733,307.98,82.7252 +692734,309.59,83.2261 +692735,311.17,83.7425 +692736,312.71,84.2722 +692737,306.68,82.6482 +692738,308.27,83.1848 +692739,309.83,83.7364 +692740,311.34,84.3007 +692741,305.39,82.5717 +692742,306.95,83.1437 +692743,308.48,83.7301 +692744,309.97,84.3288 +692745,304.1,82.4956 +692746,305.64,83.1027 +692747,307.14,83.7237 +692748,308.6,84.3564 +692749,302.81,82.4202 +692750,304.32,83.0619 +692751,305.79,83.7171 +692752,307.23,84.3835 +692753,301.52,82.3452 +692754,303,83.0213 +692755,304.45,83.7103 +692756,305.86,84.4101 +692757,300.24,82.2709 +692758,301.69,82.9809 +692759,303.1,83.7033 +692760,304.49,84.436 +692761,298.95,82.1972 +692762,300.37,82.9407 +692763,301.76,83.6961 +692764,303.11,84.4614 +692765,297.66,82.1242 +692766,299.06,82.9007 +692767,300.41,83.6887 +692768,301.74,84.4862 +692769,296.38,82.0518 +692770,297.74,82.8609 +692771,299.07,83.6811 +692772,300.36,84.5103 +692773,295.1,81.9801 +692774,296.43,82.8214 +692775,297.72,83.6732 +692776,298.98,84.5338 +692777,293.82,81.9092 +692778,295.11,82.7821 +692779,296.37,83.6652 +692780,297.6,84.5566 +692781,292.54,81.839 +692782,293.8,82.743 +692783,295.03,83.6568 +692784,296.23,84.5787 +692785,291.26,81.7696 +692786,292.48,82.7042 +692787,293.68,83.6483 +692788,294.84,84.6 +692789,289.98,81.701 +692790,291.17,82.6656 +692791,292.33,83.6395 +692792,293.46,84.6206 +692793,288.7,81.6332 +692794,289.86,82.6274 +692795,290.98,83.6304 +692796,292.08,84.6403 +692797,287.42,81.5662 +692798,288.54,82.5893 +692799,289.64,83.621 +692800,290.7,84.6593 +692801,286.15,81.5002 +692802,287.23,82.5516 +692803,288.29,83.6114 +692804,289.31,84.6775 +692805,284.87,81.435 +692806,285.92,82.5142 +692807,286.94,83.6014 +692808,287.93,84.6948 +692809,283.6,81.3707 +692810,284.61,82.4771 +692811,285.59,83.5912 +692812,286.54,84.7113 +692813,282.32,81.3074 +692814,283.3,82.4403 +692815,284.24,83.5807 +692816,285.16,84.7269 +692817,281.05,81.245 +692818,281.99,82.4038 +692819,282.89,83.5699 +692820,283.77,84.7415 +692821,279.78,81.1836 +692822,280.67,82.3676 +692823,281.54,83.5587 +692824,282.38,84.7553 +692825,278.51,81.1231 +692826,279.36,82.3317 +692827,280.19,83.5473 +692828,280.99,84.7681 +692829,277.24,81.0637 +692830,278.05,82.2962 +692831,278.84,83.5355 +692832,279.6,84.7799 +692833,275.97,81.0054 +692834,276.74,82.261 +692835,277.49,83.5233 +692836,278.21,84.7908 +692837,274.7,80.9481 +692838,275.43,82.2261 +692839,276.14,83.5109 +692840,276.82,84.8006 +692841,273.43,80.8918 +692842,274.12,82.1916 +692843,274.79,83.4981 +692844,275.43,84.8095 +692845,272.16,80.8366 +692846,272.82,82.1575 +692847,273.44,83.4849 +692848,274.04,84.8173 +692849,270.89,80.7826 +692850,271.51,82.1237 +692851,272.09,83.4714 +692852,272.65,84.8241 +692853,269.63,80.7296 +692854,270.2,82.0903 +692855,270.74,83.4576 +692856,271.25,84.8298 +692857,268.36,80.6778 +692858,268.89,82.0573 +692859,269.39,83.4433 +692860,269.86,84.8344 +692861,267.09,80.6271 +692862,267.58,82.0246 +692863,268.04,83.4287 +692864,268.47,84.8379 +692865,265.83,80.5775 +692866,266.27,81.9923 +692867,266.69,83.4137 +692868,267.07,84.8404 +692869,264.56,80.5292 +692870,264.96,81.9604 +692871,265.33,83.3984 +692872,265.68,84.8417 +692873,263.3,80.482 +692874,263.65,81.9289 +692875,263.98,83.3827 +692876,264.28,84.8419 +692877,262.03,80.436 +692878,262.35,81.8978 +692879,262.63,83.3665 +692880,262.89,84.8409 +692881,260.77,80.3912 +692882,261.04,81.8671 +692883,261.28,83.35 +692884,261.49,84.8388 +692885,259.5,80.3477 +692886,259.73,81.8368 +692887,259.93,83.3331 +692888,260.1,84.8356 +692889,258.24,80.3053 +692890,258.42,81.8069 +692891,258.58,83.3158 +692892,258.7,84.8311 +692893,256.98,80.2642 +692894,257.12,81.7774 +692895,257.23,83.2981 +692896,257.3,84.8255 +692897,255.71,80.2243 +692898,255.81,81.7483 +692899,255.87,83.28 +692900,255.91,84.8186 +692901,254.45,80.1857 +692902,254.5,81.7196 +692903,254.52,83.2615 +692904,254.51,84.8106 +692905,253.18,80.1483 +692906,253.19,81.6913 +692907,253.17,83.2426 +692908,253.11,84.8014 +692909,251.92,80.1122 +692910,251.89,81.6635 +692911,251.82,83.2233 +692912,251.72,84.7909 +692913,250.66,80.0773 +692914,250.58,81.636 +692915,250.47,83.2036 +692916,250.32,84.7792 +692917,249.39,80.0438 +692918,249.27,81.609 +692919,249.12,83.1834 +692920,248.92,84.7663 +692921,248.13,80.0115 +692922,247.96,81.5824 +692923,247.76,83.1629 +692924,247.53,84.7522 +692925,246.87,79.98 +692926,246.66,81.5563 +692927,246.41,83.1419 +692928,246.13,84.7368 +692929,245.6,79.951 +692930,245.35,81.5305 +692931,245.06,83.1205 +692932,244.74,84.7202 +692933,244.34,79.922 +692934,244.04,81.5052 +692935,243.71,83.0987 +692936,243.34,84.7023 +692937,243.08,79.895 +692938,242.74,81.4803 +692939,242.36,83.0764 +692940,241.94,84.6831 +692941,241.81,79.869 +692942,241.43,81.4559 +692943,241.01,83.0538 +692944,240.55,84.6627 +692945,240.55,79.845 +692946,240.12,81.4318 +692947,239.66,83.0307 +692948,239.15,84.6411 +692949,239.28,79.821 +692950,238.81,81.4082 +692951,238.31,83.0072 +692952,237.76,84.6182 +692953,238.02,79.799 +692954,237.51,81.385 +692955,236.96,82.9833 +692956,236.36,84.594 +692957,236.75,79.778 +692958,236.2,81.3623 +692959,235.6,82.959 +692960,234.97,84.5686 +692961,235.49,79.759 +692962,234.89,81.34 +692963,234.25,82.9342 +692964,233.58,84.5419 +692965,234.22,79.741 +692966,233.58,81.3181 +692967,232.9,82.909 +692968,232.18,84.514 +692969,232.95,79.724 +692970,232.27,81.2966 +692971,231.55,82.8834 +692972,230.79,84.4848 +692973,231.68,79.708 +692974,230.97,81.2755 +692975,230.2,82.8574 +692976,229.4,84.4544 +692977,230.42,79.694 +692978,229.66,81.2549 +692979,228.86,82.831 +692980,228.01,84.4227 +692981,229.15,79.681 +692982,228.35,81.2347 +692983,227.51,82.8042 +692984,226.61,84.3898 +692985,227.88,79.669 +692986,227.04,81.2149 +692987,226.16,82.7769 +692988,225.22,84.3557 +692989,226.61,79.658 +692990,225.73,81.1955 +692991,224.81,82.7493 +692992,223.83,84.3203 +692993,225.34,79.648 +692994,224.42,81.1765 +692995,223.46,82.7212 +692996,222.45,84.2837 +692997,224.07,79.64 +692998,223.11,81.1579 +692999,222.11,82.6928 +693000,221.06,84.2459 +693001,222.8,79.633 +693002,221.8,81.1398 +693003,220.76,82.6639 +693004,219.67,84.2068 +693005,221.53,79.627 +693006,220.49,81.122 +693007,219.41,82.6346 +693008,218.28,84.1666 +693009,220.25,79.623 +693010,219.18,81.1046 +693011,218.07,82.605 +693012,216.9,84.1252 +693013,218.98,79.619 +693014,217.87,81.0877 +693015,216.72,82.5749 +693016,215.51,84.0826 +693017,217.71,79.617 +693018,216.56,81.0711 +693019,215.37,82.5445 +693020,214.13,84.0388 +693021,216.43,79.616 +693022,215.25,81.0549 +693023,214.03,82.5137 +693024,212.74,83.9938 +693025,215.15,79.616 +693026,213.94,81.0391 +693027,212.68,82.4825 +693028,211.36,83.9477 +693029,213.88,79.617 +693030,212.63,81.0237 +693031,211.33,82.4509 +693032,209.98,83.9004 +693033,212.6,79.619 +693034,211.32,81.0086 +693035,209.99,82.4189 +693036,208.6,83.8521 +693037,211.32,79.623 +693038,210.01,80.994 +693039,208.64,82.3866 +693040,207.22,83.8026 +693041,210.04,79.627 +693042,208.7,80.9797 +693043,207.3,82.3539 +693044,205.84,83.752 +693045,208.76,79.633 +693046,207.38,80.9657 +693047,205.95,82.3209 +693048,204.46,83.7003 +693049,207.48,79.639 +693050,206.07,80.9521 +693051,204.61,82.2875 +693052,203.09,83.6475 +693053,206.19,79.647 +693054,204.76,80.9389 +693055,203.27,82.2538 +693056,201.71,83.5937 +693057,204.91,79.655 +693058,203.44,80.926 +693059,201.92,82.2197 +693060,200.34,83.5389 +693061,203.63,79.665 +693062,202.13,80.9134 +693063,200.58,82.1853 +693064,198.96,83.483 +693065,202.34,79.676 +693066,200.82,80.9012 +693067,199.24,82.1506 +693068,197.59,83.4261 +693069,201.05,79.687 +693070,199.5,80.8893 +693071,197.9,82.1155 +693072,196.22,83.3682 +693073,199.76,79.7 +693074,198.19,80.8777 +693075,196.55,82.0801 +693076,194.85,83.3094 +693077,198.47,79.713 +693078,196.87,80.8664 +693079,195.21,82.0444 +693080,193.49,83.2496 +693081,197.18,79.727 +693082,195.56,80.8555 +693083,193.87,82.0084 +693084,192.12,83.1888 +693085,195.89,79.742 +693086,194.24,80.8448 +693087,192.53,81.9722 +693088,190.75,83.1272 +693089,194.6,79.758 +693090,192.93,80.8344 +693091,191.19,81.9356 +693092,189.39,83.0646 +693093,193.3,79.775 +693094,191.61,80.8243 +693095,189.85,81.8987 +693096,188.03,83.0012 +693097,192.01,79.793 +693098,190.29,80.8145 +693099,188.51,81.8616 +693100,186.67,82.9369 +693101,190.71,79.812 +693102,188.97,80.805 +693103,187.18,81.8242 +693104,185.31,82.8718 +693105,189.41,79.831 +693106,187.66,80.7957 +693107,185.84,81.7865 +693108,183.95,82.8059 +693109,188.11,79.851 +693110,186.34,80.7867 +693111,184.5,81.7486 +693112,182.59,82.7392 +693113,186.81,79.871 +693114,185.02,80.7779 +693115,183.16,81.7104 +693116,181.24,82.6718 +693117,185.51,79.893 +693118,183.7,80.7694 +693119,181.83,81.672 +693120,179.88,82.6036 +693121,184.21,79.915 +693122,182.38,80.7611 +693123,180.49,81.6334 +693124,178.53,82.5347 +693125,182.9,79.938 +693126,181.06,80.753 +693127,179.16,81.5945 +693128,177.18,82.4651 +693129,181.6,79.961 +693130,179.74,80.7452 +693131,177.82,81.5554 +693132,175.83,82.3948 +693133,180.29,79.985 +693134,178.42,80.7375 +693135,176.49,81.5161 +693136,174.48,82.3239 +693137,178.98,80.0095 +693138,177.1,80.7301 +693139,175.15,81.4767 +693140,173.14,82.2524 +693141,177.67,80.0346 +693142,175.78,80.7228 +693143,173.82,81.437 +693144,171.79,82.1803 +693145,176.36,80.0602 +693146,174.45,80.7157 +693147,172.49,81.3972 +693148,170.45,82.1076 +693149,175.04,80.0863 +693150,173.13,80.7088 +693151,171.16,81.3572 +693152,169.11,82.0344 +693153,173.73,80.1128 +693154,171.81,80.7021 +693155,169.82,81.317 +693156,167.77,81.9607 +693157,172.41,80.1398 +693158,170.48,80.6955 +693159,168.49,81.2767 +693160,166.43,81.8865 +693161,171.09,80.1672 +693162,169.16,80.689 +693163,167.16,81.2362 +693164,165.09,81.8118 +693165,169.78,80.195 +693166,167.84,80.6827 +693167,165.83,81.1956 +693168,163.76,81.7367 +693169,168.45,80.2232 +693170,166.51,80.6766 +693171,164.5,81.1549 +693172,162.42,81.6613 +693173,167.13,80.2517 +693174,165.18,80.6705 +693175,163.17,81.1141 +693176,161.09,81.5854 +693177,165.81,80.2805 +693178,163.86,80.6645 +693179,161.85,81.0731 +693180,159.76,81.5092 +693181,164.48,80.3096 +693182,162.53,80.6587 +693183,160.52,81.0321 +693184,158.43,81.4327 +693185,163.16,80.3389 +693186,161.21,80.6529 +693187,159.19,80.991 +693188,157.11,81.3559 +693189,161.83,80.3685 +693190,159.88,80.6473 +693191,157.86,80.9498 +693192,155.78,81.2789 +693193,160.5,80.3982 +693194,158.55,80.6417 +693195,156.54,80.9085 +693196,154.46,81.2016 +693197,159.17,80.4281 +693198,157.22,80.6361 +693199,155.21,80.8671 +693200,153.13,81.1241 +693201,157.84,80.4582 +693202,155.89,80.6306 +693203,153.89,80.8258 +693204,151.81,81.0465 +693205,156.5,80.4884 +693206,154.56,80.6252 +693207,152.56,80.7844 +693208,150.49,80.9687 +693209,155.17,80.5186 +693210,153.23,80.6198 +693211,151.24,80.7429 +693212,149.18,80.8908 +693213,153.83,80.5489 +693214,151.9,80.6144 +693215,149.92,80.7014 +693216,147.86,80.8128 +693217,152.49,80.5793 +693218,150.57,80.609 +693219,148.59,80.66 +693220,146.55,80.7348 +693221,151.15,80.6096 +693222,149.24,80.6037 +693223,147.27,80.6185 +693224,145.23,80.6567 +693225,149.81,80.6399 +693226,147.91,80.5983 +693227,145.95,80.577 +693228,143.92,80.5787 +693229,148.47,80.6701 +693230,146.58,80.593 +693231,144.63,80.5356 +693232,142.61,80.5007 +693233,147.12,80.7003 +693234,145.24,80.5876 +693235,143.31,80.4941 +693236,141.3,80.4228 +693237,145.78,80.7304 +693238,143.91,80.5821 +693239,141.99,80.4528 +693240,140,80.3449 +693241,144.43,80.7603 +693242,142.58,80.5767 +693243,140.67,80.4114 +693244,138.69,80.2672 +693245,143.08,80.79 +693246,141.24,80.5711 +693247,139.35,80.3702 +693248,137.39,80.1897 +693249,141.73,80.8196 +693250,139.91,80.5656 +693251,138.03,80.3289 +693252,136.09,80.1123 +693253,140.38,80.8489 +693254,138.57,80.5599 +693255,136.71,80.2878 +693256,134.79,80.0352 +693257,139.03,80.878 +693258,137.24,80.5542 +693259,135.39,80.2468 +693260,133.49,79.958 +693261,137.68,80.9068 +693262,135.9,80.5484 +693263,134.08,80.2058 +693264,132.19,79.882 +693265,136.32,80.9353 +693266,134.57,80.5425 +693267,132.76,80.165 +693268,130.89,79.805 +693269,134.96,80.9635 +693270,133.23,80.5365 +693271,131.44,80.1242 +693272,129.6,79.729 +693273,133.61,80.9913 +693274,131.89,80.5303 +693275,130.13,80.0836 +693276,128.31,79.654 +693277,132.25,81.0188 +693278,130.55,80.5241 +693279,128.81,80.0432 +693280,127.01,79.578 +693281,130.89,81.0458 +693282,129.22,80.5177 +693283,127.5,80.0028 +693284,125.72,79.504 +693285,129.52,81.0724 +693286,127.88,80.5112 +693287,126.18,79.963 +693288,124.43,79.429 +693289,128.16,81.0985 +693290,126.54,80.5045 +693291,124.87,79.923 +693292,123.15,79.355 +693293,126.8,81.1242 +693294,125.2,80.4977 +693295,123.56,79.883 +693296,121.86,79.282 +693297,125.43,81.1493 +693298,123.86,80.4907 +693299,122.24,79.843 +693300,120.58,79.209 +693301,124.06,81.174 +693302,122.52,80.4835 +693303,120.93,79.804 +693304,119.29,79.137 +693305,122.69,81.198 +693306,121.18,80.4761 +693307,119.62,79.764 +693308,118.01,79.065 +693309,121.32,81.2215 +693310,119.84,80.4686 +693311,118.31,79.725 +693312,116.73,78.994 +693313,119.95,81.2443 +693314,118.5,80.4608 +693315,117,79.686 +693316,115.45,78.923 +693317,118.58,81.2666 +693318,117.16,80.4529 +693319,115.69,79.648 +693320,114.17,78.853 +693321,117.21,81.2882 +693322,115.81,80.4447 +693323,114.38,79.609 +693324,112.89,78.784 +693325,115.84,81.3091 +693326,114.47,80.4363 +693327,113.07,79.571 +693328,111.62,78.716 +693329,114.46,81.3293 +693330,113.13,80.4277 +693331,111.76,79.533 +693332,110.34,78.648 +693333,113.08,81.3488 +693334,111.79,80.4188 +693335,110.45,79.496 +693336,109.07,78.581 +693337,111.71,81.3675 +693338,110.44,80.4097 +693339,109.14,79.458 +693340,107.79,78.515 +693341,110.33,81.3855 +693342,109.1,80.4003 +693343,107.83,79.421 +693344,106.52,78.449 +693345,108.95,81.4027 +693346,107.76,80.3907 +693347,106.52,79.384 +693348,105.25,78.385 +693349,107.57,81.4191 +693350,106.41,80.3808 +693351,105.22,79.347 +693352,103.98,78.321 +693353,106.19,81.4347 +693354,105.07,80.3706 +693355,103.91,79.311 +693356,102.71,78.258 +693357,104.81,81.4494 +693358,103.72,80.3602 +693359,102.6,79.275 +693360,101.44,78.196 +693361,103.42,81.4633 +693362,102.38,80.3494 +693363,101.29,79.239 +693364,100.17,78.135 +693365,102.04,81.4763 +693366,101.03,80.3384 +693367,99.989,79.204 +693368,98.908,78.075 +693369,100.65,81.4883 +693370,99.686,80.3271 +693371,98.683,79.169 +693372,97.642,78.016 +693373,99.269,81.4995 +693374,98.341,80.3154 +693375,97.377,79.134 +693376,96.377,77.958 +693377,97.882,81.5097 +693378,96.995,80.3035 +693379,96.072,79.1 +693380,95.113,77.901 +693381,96.495,81.519 +693382,95.648,80.2912 +693383,94.767,79.066 +693384,93.85,77.844 +693385,95.108,81.5273 +693386,94.302,80.2786 +693387,93.462,79.032 +693388,92.587,77.789 +693389,93.719,81.5346 +693390,92.955,80.2656 +693391,92.158,78.999 +693392,91.325,77.735 +693393,92.33,81.5409 +693394,91.608,80.2524 +693395,90.853,78.965 +693396,90.064,77.682 +693397,90.94,81.5463 +693398,90.261,80.2388 +693399,89.549,78.933 +693400,88.803,77.63 +693401,89.55,81.5505 +693402,88.914,80.2248 +693403,88.245,78.9 +693404,87.543,77.579 +693405,88.159,81.5538 +693406,87.567,80.2105 +693407,86.942,78.868 +693408,86.284,77.529 +693409,86.768,81.5559 +693410,86.219,80.1959 +693411,85.638,78.837 +693412,85.025,77.481 +693413,85.376,81.557 +693414,84.872,80.1809 +693415,84.335,78.806 +693416,83.766,77.433 +693417,83.984,81.5571 +693418,83.524,80.1655 +693419,83.032,78.775 +693420,82.508,77.387 +693421,82.591,81.556 +693422,82.176,80.1498 +693423,81.729,78.744 +693424,81.25,77.341 +693425,81.197,81.5538 +693426,80.828,80.1337 +693427,80.426,78.714 +693428,79.993,77.297 +693429,79.804,81.5505 +693430,79.48,80.1172 +693431,79.124,78.685 +693432,78.736,77.254 +693433,78.41,81.5461 +693434,78.131,80.1003 +693435,77.821,78.655 +693436,77.479,77.213 +693437,77.016,81.5406 +693438,76.783,80.0831 +693439,76.519,78.626 +693440,76.223,77.172 +693441,75.621,81.5339 +693442,75.435,80.0655 +693443,75.217,78.598 +693444,74.967,77.133 +693445,74.227,81.526 +693446,74.086,80.0475 +693447,73.915,78.57 +693448,73.711,77.095 +693449,72.832,81.517 +693450,72.738,80.0291 +693451,72.613,78.542 +693452,72.455,77.058 +693453,71.437,81.5069 +693454,71.39,80.0103 +693455,71.311,78.515 +693456,71.2,77.022 +693457,70.041,81.4955 +693458,70.041,79.991 +693459,70.009,78.488 +693460,69.944,76.987 +693461,68.646,81.483 +693462,68.693,79.972 +693463,68.707,78.462 +693464,68.689,76.954 +693465,67.251,81.4693 +693466,67.344,79.952 +693467,67.405,78.435 +693468,67.433,76.922 +693469,65.855,81.4544 +693470,65.996,79.931 +693471,66.103,78.41 +693472,66.178,76.892 +693473,64.46,81.4383 +693474,64.647,79.91 +693475,64.801,78.385 +693476,64.922,76.862 +693477,63.065,81.421 +693478,63.299,79.889 +693479,63.499,78.36 +693480,63.667,76.834 +693481,61.67,81.4025 +693482,61.951,79.868 +693483,62.198,78.335 +693484,62.411,76.807 +693485,60.274,81.3828 +693486,60.603,79.846 +693487,60.896,78.312 +693488,61.155,76.781 +693489,58.88,81.3619 +693490,59.255,79.823 +693491,59.594,78.288 +693492,59.899,76.757 +693493,57.485,81.3398 +693494,57.906,79.801 +693495,58.292,78.265 +693496,58.643,76.733 +693497,56.09,81.3165 +693498,56.559,79.777 +693499,56.99,78.242 +693500,57.387,76.712 +693501,54.696,81.292 +693502,55.211,79.754 +693503,55.688,78.22 +693504,56.13,76.691 +693505,53.302,81.2663 +693506,53.863,79.73 +693507,54.386,78.198 +693508,54.873,76.671 +693509,51.909,81.2394 +693510,52.515,79.706 +693511,53.083,78.177 +693512,53.615,76.653 +693513,50.516,81.2113 +693514,51.168,79.681 +693515,51.781,78.156 +693516,52.357,76.636 +693517,49.123,81.182 +693518,49.821,79.656 +693519,50.479,78.135 +693520,51.099,76.62 +693521,47.731,81.1515 +693522,48.474,79.63 +693523,49.176,78.115 +693524,49.84,76.606 +693525,46.339,81.1198 +693526,47.127,79.604 +693527,47.873,78.095 +693528,48.581,76.593 +693529,44.947,81.0869 +693530,45.78,79.578 +693531,46.57,78.076 +693532,47.321,76.581 +693533,43.557,81.0528 +693534,44.434,79.551 +693535,45.267,78.057 +693536,46.061,76.57 +693537,42.166,81.0175 +693538,43.088,79.524 +693539,43.964,78.038 +693540,44.8,76.56 +693541,40.777,80.9811 +693542,41.742,79.496 +693543,42.661,78.02 +693544,43.539,76.552 +693545,39.388,80.9436 +693546,40.396,79.468 +693547,41.357,78.002 +693548,42.277,76.545 +693549,38,80.9048 +693550,39.05,79.44 +693551,40.053,77.985 +693552,41.014,76.539 +693553,36.613,80.8649 +693554,37.705,79.411 +693555,38.749,77.968 +693556,39.75,76.534 +693557,35.226,80.8239 +693558,36.36,79.382 +693559,37.445,77.951 +693560,38.486,76.53 +693561,33.84,80.7818 +693562,35.016,79.353 +693563,36.14,77.935 +693564,37.221,76.527 +693565,32.455,80.7385 +693566,33.671,79.323 +693567,34.836,77.919 +693568,35.955,76.526 +693569,31.071,80.6941 +693570,32.327,79.293 +693571,33.531,77.904 +693572,34.688,76.526 +693573,29.687,80.6486 +693574,30.983,79.262 +693575,32.225,77.888 +693576,33.42,76.526 +693577,28.305,80.6021 +693578,29.64,79.232 +693579,30.92,77.874 +693580,32.152,76.528 +693581,26.924,80.5545 +693582,28.297,79.2 +693583,29.614,77.859 +693584,30.883,76.531 +693585,25.543,80.5058 +693586,26.954,79.169 +693587,28.308,77.845 +693588,29.612,76.535 +693589,24.164,80.456 +693590,25.612,79.137 +693591,27.001,77.832 +693592,28.341,76.541 +693593,22.786,80.4052 +693594,24.27,79.105 +693595,25.695,77.819 +693596,27.068,76.547 +693597,21.408,80.3534 +693598,22.928,79.072 +693599,24.388,77.806 +693600,25.795,76.554 +693601,20.032,80.3006 +693602,21.587,79.039 +693603,23.08,77.793 +693604,24.521,76.562 +693605,18.657,80.2469 +693606,20.246,79.006 +693607,21.772,77.781 +693608,23.245,76.571 +693609,17.284,80.1921 +693610,18.906,78.972 +693611,20.464,77.769 +693612,21.968,76.581 +693613,15.911,80.1364 +693614,17.566,78.938 +693615,19.156,77.757 +693616,20.691,76.592 +693617,14.539,80.0797 +693618,16.226,78.904 +693619,17.847,77.746 +693620,19.412,76.604 +693621,13.169,80.0222 +693622,14.887,78.87 +693623,16.538,77.735 +693624,18.132,76.617 +693625,11.8,79.964 +693626,13.548,78.835 +693627,15.228,77.724 +693628,16.85,76.631 +693629,10.433,79.904 +693630,12.21,78.8 +693631,13.918,77.714 +693632,15.568,76.646 +693633,9.0667,79.844 +693634,10.872,78.764 +693635,12.608,77.704 +693636,14.284,76.661 +693637,7.7018,79.783 +693638,9.5346,78.729 +693639,11.297,77.694 +693640,12.999,76.678 +693641,6.3382,79.721 +693642,8.1977,78.693 +693643,9.9858,77.685 +693644,11.713,76.695 +693645,4.9761,79.658 +693646,6.8613,78.657 +693647,8.6742,77.675 +693648,10.425,76.713 +693649,3.6154,79.595 +693650,5.5253,78.62 +693651,7.3621,77.666 +693652,9.1364,76.731 +693653,2.2561,79.531 +693654,4.1898,78.584 +693655,6.0496,77.658 +693656,7.8461,76.751 +693657,0.89831,79.466 +693658,2.8549,78.547 +693659,4.7367,77.649 +693660,6.5546,76.771 +693661,359.54,79.4 +693662,1.5204,78.51 +693663,3.4233,77.641 +693664,5.2616,76.792 +693665,358.19,79.334 +693666,0.18645,78.472 +693667,2.1095,77.633 +693668,3.9673,76.813 +693669,356.83,79.267 +693670,358.85,78.435 +693671,0.79524,77.625 +693672,2.6715,76.835 +693673,355.48,79.199 +693674,357.52,78.397 +693675,359.48,77.617 +693676,1.3744,76.858 +693677,354.13,79.131 +693678,356.19,78.359 +693679,358.17,77.61 +693680,0.075788,76.881 +693681,352.78,79.062 +693682,354.86,78.321 +693683,356.85,77.603 +693684,358.78,76.905 +693685,351.44,78.992 +693686,353.52,78.283 +693687,355.53,77.596 +693688,357.47,76.93 +693689,350.09,78.922 +693690,352.19,78.244 +693691,354.22,77.589 +693692,356.17,76.955 +693693,348.75,78.851 +693694,350.86,78.206 +693695,352.9,77.583 +693696,354.87,76.98 +693697,347.4,78.78 +693698,349.53,78.167 +693699,351.58,77.576 +693700,353.56,77.006 +693701,346.06,78.709 +693702,348.2,78.128 +693703,350.26,77.57 +693704,352.25,77.032 +693705,344.72,78.637 +693706,346.88,78.089 +693707,348.95,77.564 +693708,350.94,77.059 +693709,343.39,78.564 +693710,345.55,78.049 +693711,347.63,77.558 +693712,349.63,77.086 +693713,342.05,78.491 +693714,344.22,78.01 +693715,346.31,77.552 +693716,348.32,77.114 +693717,340.72,78.418 +693718,342.89,77.971 +693719,344.99,77.546 +693720,347.01,77.142 +693721,339.38,78.345 +693722,341.57,77.931 +693723,343.67,77.54 +693724,345.69,77.17 +693725,338.05,78.271 +693726,340.24,77.891 +693727,342.35,77.535 +693728,344.38,77.198 +693729,336.72,78.197 +693730,338.92,77.852 +693731,341.02,77.529 +693732,343.06,77.227 +693733,335.4,78.122 +693734,337.59,77.812 +693735,339.7,77.524 +693736,341.74,77.256 +693737,334.07,78.048 +693738,336.27,77.772 +693739,338.38,77.518 +693740,340.42,77.285 +693741,332.75,77.973 +693742,334.94,77.732 +693743,337.06,77.513 +693744,339.1,77.314 +693745,331.43,77.898 +693746,333.62,77.692 +693747,335.73,77.508 +693748,337.77,77.344 +693749,330.1,77.823 +693750,332.3,77.652 +693751,334.41,77.503 +693752,336.45,77.373 +693753,328.79,77.748 +693754,330.98,77.612 +693755,333.08,77.498 +693756,335.12,77.403 +693757,327.47,77.672 +693758,329.65,77.572 +693759,331.76,77.493 +693760,333.79,77.433 +693761,326.15,77.597 +693762,328.33,77.532 +693763,330.43,77.488 +693764,332.46,77.462 +693765,324.84,77.521 +693766,327.01,77.491 +693767,329.11,77.483 +693768,331.13,77.492 +693769,323.53,77.446 +693770,325.69,77.451 +693771,327.78,77.477 +693772,329.79,77.522 +693773,322.22,77.37 +693774,324.37,77.411 +693775,326.45,77.472 +693776,328.46,77.551 +693777,320.91,77.295 +693778,323.06,77.371 +693779,325.13,77.467 +693780,327.12,77.581 +693781,319.6,77.22 +693782,321.74,77.331 +693783,323.8,77.462 +693784,325.78,77.61 +693785,318.29,77.145 +693786,320.42,77.291 +693787,322.47,77.457 +693788,324.45,77.64 +693789,316.99,77.07 +693790,319.1,77.251 +693791,321.14,77.452 +693792,323.1,77.669 +693793,315.69,76.995 +693794,317.79,77.211 +693795,319.81,77.447 +693796,321.76,77.698 +693797,314.39,76.92 +693798,316.47,77.172 +693799,318.48,77.441 +693800,320.42,77.726 +693801,313.09,76.846 +693802,315.16,77.132 +693803,317.15,77.436 +693804,319.07,77.755 +693805,311.79,76.771 +693806,313.84,77.092 +693807,315.82,77.43 +693808,317.72,77.783 +693809,310.5,76.698 +693810,312.53,77.053 +693811,314.49,77.425 +693812,316.38,77.811 +693813,309.2,76.624 +693814,311.21,77.014 +693815,313.15,77.419 +693816,315.03,77.839 +693817,307.91,76.551 +693818,309.9,76.974 +693819,311.82,77.414 +693820,313.68,77.866 +693821,306.62,76.478 +693822,308.59,76.935 +693823,310.49,77.408 +693824,312.32,77.893 +693825,305.33,76.405 +693826,307.28,76.896 +693827,309.16,77.402 +693828,310.97,77.919 +693829,304.04,76.333 +693830,305.97,76.857 +693831,307.82,77.395 +693832,309.61,77.945 +693833,302.75,76.262 +693834,304.65,76.819 +693835,306.49,77.389 +693836,308.26,77.971 +693837,301.47,76.191 +693838,303.34,76.78 +693839,305.15,77.383 +693840,306.9,77.996 +693841,300.18,76.12 +693842,302.03,76.742 +693843,303.82,77.376 +693844,305.54,78.021 +693845,298.9,76.05 +693846,300.72,76.703 +693847,302.48,77.369 +693848,304.18,78.045 +693849,297.62,75.98 +693850,299.42,76.665 +693851,301.15,77.362 +693852,302.81,78.069 +693853,296.34,75.911 +693854,298.11,76.628 +693855,299.81,77.355 +693856,301.45,78.092 +693857,295.06,75.843 +693858,296.8,76.59 +693859,298.47,77.348 +693860,300.09,78.114 +693861,293.79,75.775 +693862,295.49,76.553 +693863,297.13,77.34 +693864,298.72,78.136 +693865,292.51,75.708 +693866,294.18,76.516 +693867,295.8,77.333 +693868,297.35,78.157 +693869,291.24,75.642 +693870,292.88,76.479 +693871,294.46,77.325 +693872,295.98,78.177 +693873,289.96,75.576 +693874,291.57,76.442 +693875,293.12,77.316 +693876,294.61,78.197 +693877,288.69,75.511 +693878,290.27,76.406 +693879,291.78,77.308 +693880,293.24,78.216 +693881,287.42,75.447 +693882,288.96,76.369 +693883,290.44,77.299 +693884,291.87,78.235 +693885,286.15,75.383 +693886,287.65,76.333 +693887,289.1,77.29 +693888,290.5,78.252 +693889,284.88,75.321 +693890,286.35,76.298 +693891,287.76,77.281 +693892,289.12,78.269 +693893,283.62,75.259 +693894,285.05,76.262 +693895,286.42,77.272 +693896,287.75,78.285 +693897,282.35,75.198 +693898,283.74,76.227 +693899,285.08,77.262 +693900,286.37,78.3 +693901,281.08,75.138 +693902,282.44,76.192 +693903,283.74,77.252 +693904,284.99,78.315 +693905,279.82,75.079 +693906,281.14,76.158 +693907,282.4,77.242 +693908,283.61,78.329 +693909,278.56,75.02 +693910,279.83,76.124 +693911,281.06,77.231 +693912,282.23,78.341 +693913,277.3,74.963 +693914,278.53,76.09 +693915,279.72,77.221 +693916,280.85,78.353 +693917,276.03,74.906 +693918,277.23,76.056 +693919,278.37,77.21 +693920,279.47,78.364 +693921,274.77,74.851 +693922,275.93,76.023 +693923,277.03,77.198 +693924,278.09,78.374 +693925,273.52,74.796 +693926,274.62,75.99 +693927,275.69,77.186 +693928,276.71,78.383 +693929,272.26,74.743 +693930,273.32,75.957 +693931,274.34,77.174 +693932,275.32,78.391 +693933,271,74.69 +693934,272.02,75.925 +693935,273,77.162 +693936,273.94,78.398 +693937,269.74,74.639 +693938,270.72,75.893 +693939,271.66,77.149 +693940,272.55,78.405 +693941,268.49,74.588 +693942,269.42,75.862 +693943,270.31,77.136 +693944,271.16,78.41 +693945,267.23,74.539 +693946,268.12,75.83 +693947,268.97,77.123 +693948,269.78,78.414 +693949,265.98,74.49 +693950,266.82,75.8 +693951,267.63,77.109 +693952,268.39,78.417 +693953,264.72,74.443 +693954,265.52,75.769 +693955,266.28,77.095 +693956,267,78.419 +693957,263.47,74.397 +693958,264.22,75.739 +693959,264.94,77.081 +693960,265.61,78.42 +693961,262.22,74.352 +693962,262.92,75.709 +693963,263.59,77.066 +693964,264.22,78.42 +693965,260.96,74.308 +693966,261.62,75.68 +693967,262.25,77.051 +693968,262.83,78.419 +693969,259.71,74.265 +693970,260.33,75.651 +693971,260.9,77.035 +693972,261.44,78.417 +693973,258.46,74.224 +693974,259.03,75.622 +693975,259.56,77.019 +693976,260.05,78.414 +693977,257.21,74.183 +693978,257.73,75.594 +693979,258.21,77.003 +693980,258.66,78.41 +693981,255.96,74.144 +693982,256.43,75.566 +693983,256.87,76.987 +693984,257.26,78.404 +693985,254.71,74.106 +693986,255.13,75.539 +693987,255.52,76.97 +693988,255.87,78.398 +693989,253.46,74.069 +693990,253.83,75.511 +693991,254.17,76.952 +693992,254.48,78.39 +693993,252.21,74.033 +693994,252.54,75.485 +693995,252.83,76.935 +693996,253.09,78.381 +693997,250.96,73.999 +693998,251.24,75.458 +693999,251.48,76.916 +694000,251.69,78.371 +694001,249.71,73.965 +694002,249.94,75.433 +694003,250.14,76.898 +694004,250.3,78.36 +694005,248.46,73.933 +694006,248.64,75.407 +694007,248.79,76.879 +694008,248.9,78.348 +694009,247.22,73.902 +694010,247.35,75.382 +694011,247.44,76.86 +694012,247.51,78.334 +694013,245.97,73.873 +694014,246.05,75.357 +694015,246.1,76.84 +694016,246.12,78.32 +694017,244.72,73.844 +694018,244.75,75.333 +694019,244.75,76.82 +694020,244.72,78.304 +694021,243.47,73.817 +694022,243.45,75.309 +694023,243.41,76.8 +694024,243.33,78.287 +694025,242.22,73.791 +694026,242.16,75.286 +694027,242.06,76.779 +694028,241.93,78.269 +694029,240.97,73.766 +694030,240.86,75.263 +694031,240.71,76.758 +694032,240.54,78.25 +694033,239.72,73.743 +694034,239.56,75.24 +694035,239.37,76.736 +694036,239.14,78.229 +694037,238.47,73.721 +694038,238.26,75.218 +694039,238.02,76.714 +694040,237.75,78.208 +694041,237.23,73.7 +694042,236.97,75.196 +694043,236.68,76.692 +694044,236.35,78.185 +694045,235.98,73.68 +694046,235.67,75.175 +694047,235.33,76.669 +694048,234.96,78.161 +694049,234.73,73.661 +694050,234.37,75.154 +694051,233.98,76.646 +694052,233.56,78.136 +694053,233.48,73.644 +694054,233.07,75.133 +694055,232.64,76.622 +694056,232.17,78.109 +694057,232.23,73.628 +694058,231.78,75.113 +694059,231.29,76.598 +694060,230.78,78.082 +694061,230.98,73.613 +694062,230.48,75.093 +694063,229.95,76.574 +694064,229.38,78.053 +694065,229.73,73.599 +694066,229.18,75.074 +694067,228.6,76.549 +694068,227.99,78.023 +694069,228.47,73.586 +694070,227.88,75.055 +694071,227.26,76.524 +694072,226.6,77.992 +694073,227.22,73.575 +694074,226.59,75.036 +694075,225.91,76.498 +694076,225.2,77.96 +694077,225.97,73.565 +694078,225.29,75.018 +694079,224.57,76.472 +694080,223.81,77.927 +694081,224.72,73.556 +694082,223.99,75 +694083,223.22,76.446 +694084,222.42,77.892 +694085,223.46,73.548 +694086,222.69,74.983 +694087,221.88,76.419 +694088,221.03,77.857 +694089,222.21,73.542 +694090,221.39,74.966 +694091,220.54,76.392 +694092,219.64,77.82 +694093,220.96,73.536 +694094,220.09,74.95 +694095,219.19,76.365 +694096,218.25,77.782 +694097,219.7,73.532 +694098,218.79,74.933 +694099,217.85,76.337 +694100,216.86,77.743 +694101,218.44,73.529 +694102,217.49,74.918 +694103,216.5,76.309 +694104,215.47,77.703 +694105,217.19,73.527 +694106,216.19,74.902 +694107,215.16,76.281 +694108,214.08,77.662 +694109,215.93,73.526 +694110,214.89,74.887 +694111,213.82,76.252 +694112,212.7,77.619 +694113,214.67,73.527 +694114,213.59,74.872 +694115,212.48,76.222 +694116,211.31,77.576 +694117,213.41,73.528 +694118,212.29,74.858 +694119,211.13,76.193 +694120,209.93,77.532 +694121,212.15,73.53 +694122,210.99,74.844 +694123,209.79,76.163 +694124,208.54,77.486 +694125,210.89,73.534 +694126,209.69,74.83 +694127,208.45,76.132 +694128,207.16,77.44 +694129,209.63,73.538 +694130,208.39,74.817 +694131,207.11,76.102 +694132,205.77,77.392 +694133,208.37,73.544 +694134,207.09,74.804 +694135,205.77,76.071 +694136,204.39,77.343 +694137,207.1,73.551 +694138,205.79,74.792 +694139,204.43,76.04 +694140,203.01,77.294 +694141,205.84,73.558 +694142,204.49,74.78 +694143,203.09,76.008 +694144,201.63,77.243 +694145,204.57,73.567 +694146,203.18,74.768 +694147,201.75,75.976 +694148,200.25,77.192 +694149,203.31,73.576 +694150,201.88,74.756 +694151,200.41,75.944 +694152,198.88,77.139 +694153,202.04,73.587 +694154,200.58,74.745 +694155,199.07,75.911 +694156,197.5,77.086 +694157,200.77,73.598 +694158,199.27,74.734 +694159,197.73,75.878 +694160,196.12,77.031 +694161,199.5,73.611 +694162,197.97,74.723 +694163,196.39,75.845 +694164,194.75,76.976 +694165,198.23,73.624 +694166,196.67,74.713 +694167,195.05,75.811 +694168,193.37,76.919 +694169,196.95,73.638 +694170,195.36,74.703 +694171,193.71,75.778 +694172,192,76.862 +694173,195.68,73.653 +694174,194.06,74.693 +694175,192.38,75.744 +694176,190.63,76.804 +694177,194.41,73.669 +694178,192.75,74.684 +694179,191.04,75.709 +694180,189.26,76.746 +694181,193.13,73.686 +694182,191.45,74.675 +694183,189.7,75.675 +694184,187.89,76.686 +694185,191.85,73.703 +694186,190.14,74.666 +694187,188.37,75.64 +694188,186.53,76.625 +694189,190.57,73.721 +694190,188.83,74.657 +694191,187.03,75.605 +694192,185.16,76.564 +694193,189.29,73.74 +694194,187.53,74.649 +694195,185.7,75.569 +694196,183.8,76.502 +694197,188.01,73.76 +694198,186.22,74.641 +694199,184.36,75.534 +694200,182.43,76.439 +694201,186.73,73.781 +694202,184.91,74.633 +694203,183.03,75.498 +694204,181.07,76.376 +694205,185.44,73.802 +694206,183.6,74.625 +694207,181.7,75.462 +694208,179.71,76.312 +694209,184.16,73.823 +694210,182.29,74.618 +694211,180.36,75.425 +694212,178.36,76.247 +694213,182.87,73.846 +694214,180.98,74.61 +694215,179.03,75.389 +694216,177,76.182 +694217,181.58,73.869 +694218,179.67,74.603 +694219,177.7,75.352 +694220,175.64,76.115 +694221,180.29,73.892 +694222,178.36,74.597 +694223,176.37,75.315 +694224,174.29,76.049 +694225,179,73.916 +694226,177.05,74.59 +694227,175.04,75.278 +694228,172.94,75.981 +694229,177.71,73.941 +694230,175.74,74.584 +694231,173.7,75.241 +694232,171.59,75.913 +694233,176.41,73.966 +694234,174.43,74.577 +694235,172.37,75.203 +694236,170.24,75.845 +694237,175.12,73.992 +694238,173.12,74.571 +694239,171.05,75.166 +694240,168.89,75.776 +694241,173.82,74.018 +694242,171.81,74.565 +694243,169.72,75.128 +694244,167.54,75.707 +694245,172.52,74.044 +694246,170.49,74.56 +694247,168.39,75.09 +694248,166.2,75.637 +694249,171.22,74.071 +694250,169.18,74.554 +694251,167.06,75.052 +694252,164.86,75.566 +694253,169.92,74.099 +694254,167.86,74.548 +694255,165.73,75.014 +694256,163.52,75.496 +694257,168.62,74.126 +694258,166.55,74.543 +694259,164.41,74.975 +694260,162.18,75.425 +694261,167.31,74.154 +694262,165.23,74.538 +694263,163.08,74.937 +694264,160.84,75.353 +694265,166,74.182 +694266,163.92,74.533 +694267,161.76,74.898 +694268,159.5,75.281 +694269,164.69,74.211 +694270,162.6,74.528 +694271,160.43,74.86 +694272,158.17,75.209 +694273,163.38,74.24 +694274,161.29,74.523 +694275,159.11,74.821 +694276,156.84,75.137 +694277,162.07,74.269 +694278,159.97,74.518 +694279,157.78,74.782 +694280,155.51,75.064 +694281,160.76,74.298 +694282,158.65,74.513 +694283,156.46,74.744 +694284,154.18,74.991 +694285,159.45,74.327 +694286,157.33,74.508 +694287,155.14,74.705 +694288,152.85,74.918 +694289,158.13,74.357 +694290,156.01,74.504 +694291,153.82,74.666 +694292,151.52,74.845 +694293,156.81,74.386 +694294,154.69,74.499 +694295,152.49,74.627 +694296,150.2,74.772 +694297,155.49,74.416 +694298,153.37,74.494 +694299,151.17,74.588 +694300,148.88,74.698 +694301,154.17,74.446 +694302,152.05,74.49 +694303,149.85,74.549 +694304,147.56,74.625 +694305,152.85,74.475 +694306,150.73,74.485 +694307,148.53,74.51 +694308,146.24,74.551 +694309,151.52,74.505 +694310,149.41,74.48 +694311,147.21,74.47 +694312,144.92,74.477 +694313,150.2,74.535 +694314,148.09,74.476 +694315,145.9,74.431 +694316,143.61,74.404 +694317,148.87,74.564 +694318,146.77,74.471 +694319,144.58,74.392 +694320,142.3,74.33 +694321,147.54,74.594 +694322,145.44,74.467 +694323,143.26,74.353 +694324,140.98,74.256 +694325,146.21,74.623 +694326,144.12,74.462 +694327,141.94,74.314 +694328,139.67,74.183 +694329,144.88,74.653 +694330,142.79,74.457 +694331,140.63,74.275 +694332,138.37,74.109 +694333,143.54,74.682 +694334,141.47,74.453 +694335,139.31,74.237 +694336,137.06,74.036 +694337,142.21,74.711 +694338,140.14,74.448 +694339,138,74.198 +694340,135.76,73.963 +694341,140.87,74.739 +694342,138.82,74.443 +694343,136.68,74.159 +694344,134.45,73.89 +694345,139.53,74.768 +694346,137.49,74.438 +694347,135.37,74.12 +694348,133.15,73.817 +694349,138.19,74.796 +694350,136.17,74.433 +694351,134.06,74.082 +694352,131.85,73.745 +694353,136.85,74.824 +694354,134.84,74.428 +694355,132.74,74.043 +694356,130.56,73.673 +694357,135.51,74.851 +694358,133.51,74.423 +694359,131.43,74.005 +694360,129.26,73.601 +694361,134.16,74.878 +694362,132.18,74.417 +694363,130.12,73.967 +694364,127.97,73.529 +694365,132.81,74.905 +694366,130.85,74.412 +694367,128.81,73.929 +694368,126.67,73.458 +694369,131.47,74.932 +694370,129.52,74.406 +694371,127.5,73.891 +694372,125.38,73.387 +694373,130.12,74.958 +694374,128.19,74.4 +694375,126.19,73.853 +694376,124.09,73.317 +694377,128.77,74.983 +694378,126.86,74.395 +694379,124.88,73.815 +694380,122.81,73.247 +694381,127.41,75.008 +694382,125.53,74.388 +694383,123.57,73.777 +694384,121.52,73.177 +694385,126.06,75.033 +694386,124.2,74.382 +694387,122.26,73.74 +694388,120.24,73.108 +694389,124.71,75.057 +694390,122.87,74.376 +694391,120.95,73.703 +694392,118.95,73.04 +694393,123.35,75.08 +694394,121.54,74.369 +694395,119.65,73.666 +694396,117.67,72.972 +694397,121.99,75.103 +694398,120.2,74.363 +694399,118.34,73.629 +694400,116.39,72.905 +694401,120.63,75.125 +694402,118.87,74.356 +694403,117.03,73.592 +694404,115.11,72.838 +694405,119.27,75.147 +694406,117.54,74.348 +694407,115.73,73.556 +694408,113.84,72.772 +694409,117.91,75.168 +694410,116.2,74.341 +694411,114.42,73.52 +694412,112.56,72.706 +694413,116.55,75.188 +694414,114.87,74.334 +694415,113.12,73.484 +694416,111.29,72.641 +694417,115.18,75.208 +694418,113.53,74.326 +694419,111.81,73.448 +694420,110.02,72.577 +694421,113.81,75.227 +694422,112.2,74.318 +694423,110.51,73.413 +694424,108.75,72.514 +694425,112.45,75.245 +694426,110.86,74.309 +694427,109.21,73.377 +694428,107.48,72.451 +694429,111.08,75.262 +694430,109.53,74.301 +694431,107.9,73.342 +694432,106.21,72.389 +694433,109.71,75.279 +694434,108.19,74.292 +694435,106.6,73.308 +694436,104.94,72.328 +694437,108.34,75.295 +694438,106.85,74.283 +694439,105.3,73.273 +694440,103.67,72.268 +694441,106.97,75.31 +694442,105.51,74.274 +694443,104,73.239 +694444,102.41,72.208 +694445,105.59,75.324 +694446,104.18,74.264 +694447,102.7,73.205 +694448,101.15,72.15 +694449,104.22,75.337 +694450,102.84,74.254 +694451,101.4,73.172 +694452,99.884,72.092 +694453,102.84,75.35 +694454,101.5,74.244 +694455,100.1,73.138 +694456,98.623,72.035 +694457,101.47,75.362 +694458,100.16,74.234 +694459,98.795,73.105 +694460,97.364,71.979 +694461,100.09,75.372 +694462,98.822,74.223 +694463,97.495,73.073 +694464,96.105,71.924 +694465,98.71,75.382 +694466,97.482,74.212 +694467,96.196,73.04 +694468,94.847,71.87 +694469,97.331,75.391 +694470,96.143,74.2 +694471,94.897,73.008 +694472,93.591,71.816 +694473,95.95,75.399 +694474,94.802,74.189 +694475,93.599,72.976 +694476,92.335,71.764 +694477,94.569,75.406 +694478,93.462,74.177 +694479,92.3,72.945 +694480,91.08,71.713 +694481,93.186,75.412 +694482,92.121,74.164 +694483,91.002,72.914 +694484,89.827,71.663 +694485,91.803,75.417 +694486,90.78,74.152 +694487,89.705,72.883 +694488,88.574,71.614 +694489,90.419,75.421 +694490,89.439,74.139 +694491,88.408,72.853 +694492,87.322,71.566 +694493,89.034,75.424 +694494,88.097,74.125 +694495,87.111,72.823 +694496,86.071,71.519 +694497,87.648,75.425 +694498,86.755,74.111 +694499,85.814,72.793 +694500,84.82,71.473 +694501,86.262,75.426 +694502,85.413,74.097 +694503,84.517,72.764 +694504,83.571,71.428 +694505,84.874,75.426 +694506,84.071,74.083 +694507,83.221,72.735 +694508,82.322,71.384 +694509,83.487,75.425 +694510,82.729,74.068 +694511,81.925,72.706 +694512,81.073,71.341 +694513,82.098,75.422 +694514,81.386,74.053 +694515,80.629,72.678 +694516,79.826,71.3 +694517,80.709,75.419 +694518,80.043,74.037 +694519,79.334,72.65 +694520,78.579,71.259 +694521,79.319,75.414 +694522,78.7,74.022 +694523,78.039,72.623 +694524,77.332,71.22 +694525,77.929,75.409 +694526,77.357,74.005 +694527,76.743,72.596 +694528,76.086,71.182 +694529,76.538,75.402 +694530,76.013,73.989 +694531,75.448,72.569 +694532,74.841,71.145 +694533,75.147,75.394 +694534,74.67,73.972 +694535,74.154,72.543 +694536,73.596,71.109 +694537,73.755,75.385 +694538,73.326,73.954 +694539,72.859,72.517 +694540,72.351,71.074 +694541,72.363,75.375 +694542,71.983,73.936 +694543,71.565,72.491 +694544,71.107,71.041 +694545,70.97,75.364 +694546,70.639,73.918 +694547,70.27,72.466 +694548,69.863,71.009 +694549,69.577,75.351 +694550,69.295,73.9 +694551,68.976,72.441 +694552,68.62,70.978 +694553,68.184,75.337 +694554,67.951,73.881 +694555,67.682,72.417 +694556,67.376,70.948 +694557,66.79,75.323 +694558,66.606,73.862 +694559,66.388,72.393 +694560,66.133,70.919 +694561,65.396,75.307 +694562,65.262,73.842 +694563,65.094,72.37 +694564,64.89,70.892 +694565,64.002,75.29 +694566,63.918,73.822 +694567,63.8,72.347 +694568,63.647,70.866 +694569,62.608,75.271 +694570,62.574,73.801 +694571,62.506,72.324 +694572,62.405,70.841 +694573,61.214,75.252 +694574,61.23,73.78 +694575,61.212,72.301 +694576,61.162,70.817 +694577,59.819,75.231 +694578,59.885,73.759 +694579,59.919,72.28 +694580,59.919,70.794 +694581,58.425,75.209 +694582,58.541,73.737 +694583,58.625,72.258 +694584,58.676,70.773 +694585,57.03,75.186 +694586,57.197,73.715 +694587,57.331,72.237 +694588,57.434,70.753 +694589,55.636,75.162 +694590,55.853,73.693 +694591,56.037,72.216 +694592,56.191,70.734 +694593,54.241,75.137 +694594,54.508,73.67 +694595,54.744,72.196 +694596,54.948,70.717 +694597,52.847,75.11 +694598,53.164,73.647 +694599,53.45,72.176 +694600,53.704,70.7 +694601,51.453,75.083 +694602,51.82,73.623 +694603,52.156,72.156 +694604,52.461,70.685 +694605,50.059,75.054 +694606,50.476,73.599 +694607,50.862,72.137 +694608,51.217,70.671 +694609,48.665,75.024 +694610,49.132,73.574 +694611,49.568,72.119 +694612,49.973,70.658 +694613,47.271,74.993 +694614,47.788,73.55 +694615,48.274,72.1 +694616,48.729,70.646 +694617,45.878,74.961 +694618,46.445,73.524 +694619,46.98,72.082 +694620,47.484,70.636 +694621,44.485,74.927 +694622,45.101,73.499 +694623,45.685,72.065 +694624,46.239,70.627 +694625,43.092,74.893 +694626,43.758,73.473 +694627,44.391,72.048 +694628,44.993,70.619 +694629,41.7,74.857 +694630,42.415,73.446 +694631,43.096,72.031 +694632,43.747,70.612 +694633,40.308,74.82 +694634,41.072,73.42 +694635,41.802,72.015 +694636,42.5,70.606 +694637,38.916,74.782 +694638,39.729,73.393 +694639,40.507,71.999 +694640,41.253,70.601 +694641,37.526,74.743 +694642,38.386,73.365 +694643,39.212,71.983 +694644,40.005,70.598 +694645,36.135,74.703 +694646,37.044,73.337 +694647,37.916,71.968 +694648,38.756,70.596 +694649,34.745,74.662 +694650,35.701,73.309 +694651,36.621,71.953 +694652,37.507,70.594 +694653,33.356,74.619 +694654,34.359,73.28 +694655,35.325,71.938 +694656,36.257,70.594 +694657,31.968,74.576 +694658,33.018,73.251 +694659,34.029,71.924 +694660,35.007,70.595 +694661,30.58,74.531 +694662,31.676,73.222 +694663,32.733,71.91 +694664,33.755,70.597 +694665,29.193,74.486 +694666,30.335,73.192 +694667,31.437,71.897 +694668,32.503,70.601 +694669,27.806,74.439 +694670,28.994,73.162 +694671,30.14,71.884 +694672,31.25,70.605 +694673,26.421,74.392 +694674,27.653,73.132 +694675,28.843,71.871 +694676,29.996,70.61 +694677,25.036,74.343 +694678,26.313,73.101 +694679,27.546,71.859 +694680,28.741,70.616 +694681,23.652,74.294 +694682,24.973,73.07 +694683,26.249,71.847 +694684,27.485,70.624 +694685,22.269,74.243 +694686,23.633,73.039 +694687,24.951,71.835 +694688,26.228,70.632 +694689,20.887,74.192 +694690,22.294,73.007 +694691,23.653,71.824 +694692,24.97,70.641 +694693,19.506,74.139 +694694,20.955,72.975 +694695,22.354,71.812 +694696,23.712,70.651 +694697,18.126,74.086 +694698,19.616,72.943 +694699,21.056,71.802 +694700,22.452,70.663 +694701,16.747,74.031 +694702,18.278,72.91 +694703,19.757,71.791 +694704,21.191,70.675 +694705,15.369,73.976 +694706,16.94,72.877 +694707,18.457,71.781 +694708,19.928,70.688 +694709,13.993,73.92 +694710,15.602,72.844 +694711,17.157,71.771 +694712,18.665,70.702 +694713,12.617,73.863 +694714,14.265,72.811 +694715,15.857,71.762 +694716,17.401,70.716 +694717,11.242,73.805 +694718,12.928,72.777 +694719,14.557,71.752 +694720,16.135,70.732 +694721,9.8691,73.746 +694722,11.592,72.743 +694723,13.256,71.743 +694724,14.868,70.748 +694725,8.497,73.687 +694726,10.256,72.709 +694727,11.954,71.735 +694728,13.6,70.765 +694729,7.1262,73.627 +694730,8.9205,72.674 +694731,10.652,71.726 +694732,12.331,70.783 +694733,5.7567,73.565 +694734,7.5854,72.639 +694735,9.3503,71.718 +694736,11.06,70.802 +694737,4.3885,73.504 +694738,6.2509,72.604 +694739,8.0477,71.71 +694740,9.7878,70.822 +694741,3.0217,73.441 +694742,4.9168,72.569 +694743,6.7446,71.702 +694744,8.5144,70.842 +694745,1.6563,73.378 +694746,3.5831,72.533 +694747,5.4411,71.695 +694748,7.2397,70.863 +694749,0.2922,73.314 +694750,2.25,72.497 +694751,4.1372,71.687 +694752,5.9635,70.884 +694753,358.93,73.249 +694754,0.91733,72.461 +694755,2.8328,71.68 +694756,4.686,70.907 +694757,357.57,73.184 +694758,359.59,72.425 +694759,1.5279,71.673 +694760,3.407,70.929 +694761,356.21,73.118 +694762,358.25,72.389 +694763,0.22256,71.667 +694764,2.1265,70.953 +694765,354.85,73.052 +694766,356.92,72.352 +694767,358.92,71.66 +694768,0.84462,70.977 +694769,353.49,72.984 +694770,355.59,72.315 +694771,357.61,71.654 +694772,359.56,71.001 +694773,352.14,72.917 +694774,354.26,72.278 +694775,356.3,71.648 +694776,358.28,71.027 +694777,350.79,72.849 +694778,352.93,72.241 +694779,355,71.642 +694780,356.99,71.052 +694781,349.43,72.78 +694782,351.6,72.204 +694783,353.69,71.636 +694784,355.7,71.078 +694785,348.08,72.711 +694786,350.27,72.166 +694787,352.38,71.631 +694788,354.41,71.105 +694789,346.73,72.641 +694790,348.95,72.128 +694791,351.07,71.625 +694792,353.12,71.131 +694793,345.39,72.571 +694794,347.62,72.091 +694795,349.76,71.62 +694796,351.83,71.159 +694797,344.04,72.501 +694798,346.29,72.053 +694799,348.45,71.615 +694800,350.53,71.186 +694801,342.7,72.43 +694802,344.97,72.015 +694803,347.14,71.61 +694804,349.24,71.214 +694805,341.36,72.359 +694806,343.64,71.976 +694807,345.83,71.605 +694808,347.94,71.243 +694809,340.02,72.288 +694810,342.32,71.938 +694811,344.52,71.6 +694812,346.64,71.271 +694813,338.68,72.216 +694814,340.99,71.9 +694815,343.21,71.595 +694816,345.34,71.3 +694817,337.34,72.144 +694818,339.67,71.861 +694819,341.9,71.59 +694820,344.04,71.329 +694821,336.01,72.071 +694822,338.34,71.823 +694823,340.58,71.585 +694824,342.74,71.358 +694825,334.67,71.999 +694826,337.02,71.784 +694827,339.27,71.581 +694828,341.43,71.388 +694829,333.34,71.926 +694830,335.7,71.746 +694831,337.95,71.576 +694832,340.12,71.417 +694833,332.01,71.853 +694834,334.38,71.707 +694835,336.64,71.572 +694836,338.81,71.447 +694837,330.68,71.78 +694838,333.06,71.668 +694839,335.32,71.567 +694840,337.5,71.477 +694841,329.36,71.707 +694842,331.74,71.629 +694843,334.01,71.563 +694844,336.19,71.507 +694845,328.03,71.634 +694846,330.42,71.591 +694847,332.69,71.558 +694848,334.88,71.536 +694849,326.71,71.561 +694850,329.1,71.552 +694851,331.38,71.554 +694852,333.56,71.566 +694853,325.39,71.488 +694854,327.78,71.513 +694855,330.06,71.55 +694856,332.25,71.596 +694857,324.07,71.414 +694858,326.46,71.474 +694859,328.74,71.545 +694860,330.93,71.626 +694861,322.76,71.341 +694862,325.14,71.435 +694863,327.42,71.541 +694864,329.61,71.656 +694865,321.44,71.268 +694866,323.83,71.397 +694867,326.1,71.536 +694868,328.28,71.685 +694869,320.13,71.195 +694870,322.51,71.358 +694871,324.78,71.532 +694872,326.96,71.715 +694873,318.82,71.122 +694874,321.19,71.319 +694875,323.46,71.527 +694876,325.64,71.744 +694877,317.51,71.049 +694878,319.88,71.281 +694879,322.14,71.522 +694880,324.31,71.773 +694881,316.2,70.976 +694882,318.56,71.242 +694883,320.82,71.518 +694884,322.98,71.802 +694885,314.89,70.904 +694886,317.25,71.203 +694887,319.5,71.513 +694888,321.65,71.831 +694889,313.59,70.832 +694890,315.94,71.165 +694891,318.18,71.508 +694892,320.32,71.859 +694893,312.29,70.76 +694894,314.62,71.127 +694895,316.85,71.503 +694896,318.98,71.887 +694897,310.99,70.688 +694898,313.31,71.088 +694899,315.53,71.498 +694900,317.65,71.915 +694901,309.69,70.617 +694902,312,71.05 +694903,314.21,71.493 +694904,316.31,71.943 +694905,308.39,70.546 +694906,310.69,71.012 +694907,312.88,71.488 +694908,314.97,71.97 +694909,307.1,70.475 +694910,309.38,70.974 +694911,311.56,71.482 +694912,313.63,71.997 +694913,305.8,70.405 +694914,308.07,70.937 +694915,310.23,71.477 +694916,312.29,72.023 +694917,304.51,70.335 +694918,306.76,70.899 +694919,308.9,71.471 +694920,310.95,72.049 +694921,303.22,70.265 +694922,305.45,70.861 +694923,307.58,71.465 +694924,309.6,72.074 +694925,301.93,70.196 +694926,304.15,70.824 +694927,306.25,71.459 +694928,308.26,72.099 +694929,300.65,70.128 +694930,302.84,70.787 +694931,304.92,71.453 +694932,306.91,72.123 +694933,299.36,70.06 +694934,301.53,70.75 +694935,303.59,71.446 +694936,305.56,72.147 +694937,298.08,69.992 +694938,300.23,70.713 +694939,302.26,71.44 +694940,304.21,72.17 +694941,296.8,69.925 +694942,298.92,70.676 +694943,300.94,71.433 +694944,302.86,72.193 +694945,295.52,69.859 +694946,297.61,70.64 +694947,299.61,71.426 +694948,301.5,72.215 +694949,294.24,69.793 +694950,296.31,70.604 +694951,298.28,71.419 +694952,300.15,72.236 +694953,292.96,69.728 +694954,295.01,70.568 +694955,296.94,71.411 +694956,298.79,72.257 +694957,291.69,69.664 +694958,293.7,70.532 +694959,295.61,71.404 +694960,297.43,72.277 +694961,290.42,69.6 +694962,292.4,70.497 +694963,294.28,71.396 +694964,296.08,72.296 +694965,289.14,69.538 +694966,291.1,70.461 +694967,292.95,71.388 +694968,294.71,72.315 +694969,287.87,69.475 +694970,289.79,70.426 +694971,291.62,71.379 +694972,293.35,72.333 +694973,286.61,69.414 +694974,288.49,70.391 +694975,290.28,71.371 +694976,291.99,72.35 +694977,285.34,69.353 +694978,287.19,70.357 +694979,288.95,71.362 +694980,290.62,72.366 +694981,284.07,69.293 +694982,285.89,70.323 +694983,287.62,71.353 +694984,289.26,72.381 +694985,282.81,69.234 +694986,284.59,70.289 +694987,286.28,71.343 +694988,287.89,72.396 +694989,281.55,69.176 +694990,283.29,70.255 +694991,284.95,71.333 +694992,286.52,72.41 +694993,280.28,69.119 +694994,281.99,70.221 +694995,283.61,71.323 +694996,285.15,72.423 +694997,279.02,69.062 +694998,280.69,70.188 +694999,282.28,71.313 +695000,283.78,72.435 +695001,277.76,69.007 +695002,279.39,70.155 +695003,280.94,71.302 +695004,282.41,72.446 +695005,276.51,68.952 +695006,278.1,70.123 +695007,279.6,71.291 +695008,281.04,72.456 +695009,275.25,68.899 +695010,276.8,70.091 +695011,278.27,71.28 +695012,279.66,72.465 +695013,273.99,68.846 +695014,275.5,70.059 +695015,276.93,71.268 +695016,278.28,72.474 +695017,272.74,68.794 +695018,274.21,70.027 +695019,275.59,71.257 +695020,276.91,72.481 +695021,271.49,68.744 +695022,272.91,69.996 +695023,274.26,71.244 +695024,275.53,72.487 +695025,270.23,68.694 +695026,271.61,69.965 +695027,272.92,71.232 +695028,274.15,72.493 +695029,268.98,68.645 +695030,270.32,69.934 +695031,271.58,71.219 +695032,272.77,72.497 +695033,267.73,68.598 +695034,269.02,69.904 +695035,270.24,71.205 +695036,271.39,72.5 +695037,266.48,68.551 +695038,267.73,69.874 +695039,268.9,71.192 +695040,270.01,72.503 +695041,265.24,68.506 +695042,266.43,69.845 +695043,267.56,71.178 +695044,268.63,72.504 +695045,263.99,68.461 +695046,265.14,69.815 +695047,266.22,71.163 +695048,267.24,72.504 +695049,262.74,68.418 +695050,263.84,69.787 +695051,264.88,71.149 +695052,265.86,72.503 +695053,261.5,68.376 +695054,262.55,69.758 +695055,263.54,71.134 +695056,264.47,72.501 +695057,260.25,68.335 +695058,261.26,69.73 +695059,262.2,71.118 +695060,263.09,72.498 +695061,259.01,68.295 +695062,259.96,69.702 +695063,260.86,71.102 +695064,261.7,72.494 +695065,257.77,68.256 +695066,258.67,69.675 +695067,259.52,71.086 +695068,260.31,72.488 +695069,256.52,68.219 +695070,257.38,69.648 +695071,258.18,71.07 +695072,258.93,72.482 +695073,255.28,68.182 +695074,256.09,69.621 +695075,256.84,71.053 +695076,257.54,72.474 +695077,254.04,68.147 +695078,254.79,69.595 +695079,255.5,71.035 +695080,256.15,72.465 +695081,252.8,68.113 +695082,253.5,69.569 +695083,254.15,71.017 +695084,254.76,72.456 +695085,251.56,68.08 +695086,252.21,69.544 +695087,252.81,70.999 +695088,253.37,72.445 +695089,250.32,68.048 +695090,250.92,69.519 +695091,251.47,70.981 +695092,251.98,72.432 +695093,249.08,68.018 +695094,249.63,69.494 +695095,250.13,70.962 +695096,250.58,72.419 +695097,247.84,67.988 +695098,248.34,69.47 +695099,248.79,70.943 +695100,249.19,72.404 +695101,246.6,67.96 +695102,247.04,69.446 +695103,247.44,70.923 +695104,247.8,72.389 +695105,245.36,67.933 +695106,245.75,69.423 +695107,246.1,70.903 +695108,246.41,72.372 +695109,244.13,67.908 +695110,244.46,69.4 +695111,244.76,70.882 +695112,245.01,72.354 +695113,242.89,67.883 +695114,243.17,69.377 +695115,243.42,70.861 +695116,243.62,72.334 +695117,241.65,67.86 +695118,241.88,69.355 +695119,242.07,70.84 +695120,242.23,72.314 +695121,240.41,67.838 +695122,240.59,69.333 +695123,240.73,70.818 +695124,240.83,72.292 +695125,239.18,67.817 +695126,239.3,69.311 +695127,239.39,70.796 +695128,239.44,72.269 +695129,237.94,67.798 +695130,238.01,69.29 +695131,238.04,70.773 +695132,238.05,72.245 +695133,236.7,67.779 +695134,236.72,69.27 +695135,236.7,70.75 +695136,236.65,72.22 +695137,235.46,67.762 +695138,235.43,69.249 +695139,235.36,70.727 +695140,235.26,72.194 +695141,234.23,67.746 +695142,234.14,69.229 +695143,234.02,70.703 +695144,233.86,72.166 +695145,232.99,67.731 +695146,232.85,69.21 +695147,232.67,70.679 +695148,232.47,72.138 +695149,231.75,67.718 +695150,231.56,69.191 +695151,231.33,70.655 +695152,231.07,72.108 +695153,230.51,67.706 +695154,230.27,69.172 +695155,229.99,70.63 +695156,229.68,72.077 +695157,229.27,67.694 +695158,228.98,69.154 +695159,228.65,70.604 +695160,228.29,72.044 +695161,228.04,67.685 +695162,227.68,69.136 +695163,227.3,70.579 +695164,226.89,72.011 +695165,226.8,67.676 +695166,226.39,69.118 +695167,225.96,70.552 +695168,225.5,71.976 +695169,225.56,67.668 +695170,225.1,69.101 +695171,224.62,70.526 +695172,224.1,71.941 +695173,224.32,67.662 +695174,223.81,69.085 +695175,223.28,70.499 +695176,222.71,71.904 +695177,223.08,67.657 +695178,222.52,69.068 +695179,221.93,70.472 +695180,221.32,71.866 +695181,221.84,67.653 +695182,221.23,69.052 +695183,220.59,70.444 +695184,219.92,71.827 +695185,220.6,67.65 +695186,219.94,69.037 +695187,219.25,70.416 +695188,218.53,71.786 +695189,219.36,67.648 +695190,218.65,69.021 +695191,217.91,70.387 +695192,217.14,71.745 +695193,218.11,67.647 +695194,217.35,69.006 +695195,216.57,70.359 +695196,215.75,71.702 +695197,216.87,67.648 +695198,216.06,68.992 +695199,215.23,70.329 +695200,214.36,71.659 +695201,215.63,67.649 +695202,214.77,68.978 +695203,213.88,70.3 +695204,212.97,71.614 +695205,214.38,67.652 +695206,213.48,68.964 +695207,212.54,70.27 +695208,211.58,71.568 +695209,213.14,67.655 +695210,212.19,68.95 +695211,211.2,70.24 +695212,210.19,71.522 +695213,211.89,67.66 +695214,210.89,68.937 +695215,209.86,70.209 +695216,208.8,71.474 +695217,210.65,67.666 +695218,209.6,68.924 +695219,208.52,70.178 +695220,207.41,71.425 +695221,209.4,67.673 +695222,208.31,68.912 +695223,207.18,70.147 +695224,206.02,71.375 +695225,208.15,67.68 +695226,207.01,68.9 +695227,205.84,70.115 +695228,204.64,71.324 +695229,206.9,67.689 +695230,205.72,68.888 +695231,204.5,70.083 +695232,203.25,71.272 +695233,205.65,67.699 +695234,204.42,68.877 +695235,203.16,70.051 +695236,201.87,71.22 +695237,204.4,67.71 +695238,203.13,68.866 +695239,201.83,70.018 +695240,200.48,71.166 +695241,203.15,67.721 +695242,201.84,68.855 +695243,200.49,69.985 +695244,199.1,71.111 +695245,201.89,67.734 +695246,200.54,68.844 +695247,199.15,69.952 +695248,197.72,71.055 +695249,200.64,67.747 +695250,199.24,68.834 +695251,197.81,69.918 +695252,196.33,70.999 +695253,199.38,67.762 +695254,197.95,68.824 +695255,196.47,69.884 +695256,194.95,70.941 +695257,198.13,67.777 +695258,196.65,68.814 +695259,195.14,69.85 +695260,193.58,70.883 +695261,196.87,67.793 +695262,195.36,68.805 +695263,193.8,69.816 +695264,192.2,70.824 +695265,195.61,67.81 +695266,194.06,68.796 +695267,192.47,69.781 +695268,190.82,70.764 +695269,194.35,67.827 +695270,192.76,68.787 +695271,191.13,69.746 +695272,189.44,70.703 +695273,193.09,67.846 +695274,191.46,68.778 +695275,189.79,69.71 +695276,188.07,70.641 +695277,191.83,67.865 +695278,190.17,68.77 +695279,188.46,69.675 +695280,186.7,70.579 +695281,190.56,67.885 +695282,188.87,68.762 +695283,187.12,69.639 +695284,185.32,70.516 +695285,189.3,67.906 +695286,187.57,68.754 +695287,185.79,69.603 +695288,183.95,70.452 +695289,188.03,67.927 +695290,186.27,68.746 +695291,184.46,69.567 +695292,182.58,70.387 +695293,186.76,67.949 +695294,184.97,68.739 +695295,183.12,69.53 +695296,181.21,70.322 +695297,185.49,67.971 +695298,183.67,68.732 +695299,181.79,69.493 +695300,179.85,70.256 +695301,184.22,67.995 +695302,182.37,68.724 +695303,180.46,69.456 +695304,178.48,70.189 +695305,182.95,68.018 +695306,181.07,68.718 +695307,179.13,69.419 +695308,177.12,70.122 +695309,181.67,68.043 +695310,179.77,68.711 +695311,177.8,69.382 +695312,175.75,70.054 +695313,180.4,68.068 +695314,178.46,68.705 +695315,176.47,69.344 +695316,174.39,69.986 +695317,179.12,68.093 +695318,177.16,68.698 +695319,175.14,69.306 +695320,173.03,69.917 +695321,177.84,68.119 +695322,175.86,68.692 +695323,173.81,69.268 +695324,171.68,69.847 +695325,176.56,68.145 +695326,174.56,68.686 +695327,172.48,69.23 +695328,170.32,69.777 +695329,175.28,68.172 +695330,173.25,68.68 +695331,171.15,69.192 +695332,168.96,69.707 +695333,174,68.199 +695334,171.95,68.674 +695335,169.82,69.154 +695336,167.61,69.636 +695337,172.72,68.227 +695338,170.64,68.669 +695339,168.49,69.115 +695340,166.26,69.565 +695341,171.43,68.255 +695342,169.34,68.663 +695343,167.17,69.076 +695344,164.91,69.493 +695345,170.14,68.283 +695346,168.03,68.658 +695347,165.84,69.037 +695348,163.56,69.421 +695349,168.85,68.312 +695350,166.72,68.653 +695351,164.51,68.998 +695352,162.21,69.348 +695353,167.56,68.34 +695354,165.42,68.648 +695355,163.19,68.959 +695356,160.87,69.275 +695357,166.27,68.369 +695358,164.11,68.642 +695359,161.87,68.92 +695360,159.52,69.202 +695361,164.97,68.399 +695362,162.8,68.637 +695363,160.54,68.881 +695364,158.18,69.129 +695365,163.68,68.428 +695366,161.49,68.632 +695367,159.22,68.842 +695368,156.84,69.055 +695369,162.38,68.458 +695370,160.18,68.628 +695371,157.89,68.802 +695372,155.5,68.982 +695373,161.08,68.487 +695374,158.87,68.623 +695375,156.57,68.763 +695376,154.17,68.908 +695377,159.78,68.517 +695378,157.56,68.618 +695379,155.25,68.723 +695380,152.83,68.834 +695381,158.48,68.547 +695382,156.25,68.613 +695383,153.93,68.684 +695384,151.5,68.759 +695385,157.17,68.577 +695386,154.94,68.608 +695387,152.61,68.644 +695388,150.17,68.685 +695389,155.87,68.607 +695390,153.63,68.603 +695391,151.29,68.604 +695392,148.84,68.611 +695393,154.56,68.637 +695394,152.31,68.599 +695395,149.97,68.565 +695396,147.51,68.536 +695397,153.25,68.667 +695398,151,68.594 +695399,148.65,68.525 +695400,146.19,68.462 +695401,151.94,68.697 +695402,149.69,68.589 +695403,147.33,68.486 +695404,144.87,68.387 +695405,150.62,68.726 +695406,148.37,68.584 +695407,146.02,68.446 +695408,143.54,68.313 +695409,149.31,68.756 +695410,147.06,68.579 +695411,144.7,68.406 +695412,142.23,68.238 +695413,147.99,68.785 +695414,145.74,68.574 +695415,143.38,68.367 +695416,140.91,68.164 +695417,146.68,68.815 +695418,144.42,68.569 +695419,142.07,68.327 +695420,139.59,68.09 +695421,145.36,68.844 +695422,143.11,68.564 +695423,140.75,68.288 +695424,138.28,68.016 +695425,144.03,68.873 +695426,141.79,68.559 +695427,139.44,68.248 +695428,136.97,67.942 +695429,142.71,68.901 +695430,140.47,68.554 +695431,138.13,68.209 +695432,135.66,67.868 +695433,141.39,68.929 +695434,139.15,68.548 +695435,136.81,68.17 +695436,134.35,67.795 +695437,140.06,68.957 +695438,137.84,68.543 +695439,135.5,68.131 +695440,133.04,67.722 +695441,138.73,68.985 +695442,136.52,68.537 +695443,134.19,68.091 +695444,131.74,67.649 +695445,137.4,69.012 +695446,135.2,68.531 +695447,132.88,68.052 +695448,130.43,67.577 +695449,136.07,69.039 +695450,133.87,68.525 +695451,131.57,68.014 +695452,129.13,67.504 +695453,134.74,69.066 +695454,132.55,68.52 +695455,130.26,67.975 +695456,127.84,67.433 +695457,133.4,69.092 +695458,131.23,68.513 +695459,128.95,67.936 +695460,126.54,67.361 +695461,132.07,69.117 +695462,129.91,68.507 +695463,127.64,67.898 +695464,125.24,67.29 +695465,130.73,69.142 +695466,128.59,68.501 +695467,126.33,67.859 +695468,123.95,67.22 +695469,129.39,69.167 +695470,127.26,68.494 +695471,125.03,67.821 +695472,122.66,67.15 +695473,128.05,69.191 +695474,125.94,68.487 +695475,123.72,67.783 +695476,121.37,67.08 +695477,126.7,69.214 +695478,124.61,68.48 +695479,122.41,67.745 +695480,120.08,67.011 +695481,125.36,69.237 +695482,123.29,68.473 +695483,121.11,67.708 +695484,118.8,66.943 +695485,124.01,69.259 +695486,121.96,68.465 +695487,119.8,67.67 +695488,117.51,66.875 +695489,122.67,69.28 +695490,120.64,68.458 +695491,118.5,67.633 +695492,116.23,66.808 +695493,121.32,69.301 +695494,119.31,68.45 +695495,117.19,67.596 +695496,114.95,66.741 +695497,119.97,69.321 +695498,117.98,68.442 +695499,115.89,67.559 +695500,113.67,66.675 +695501,118.61,69.341 +695502,116.65,68.433 +695503,114.59,67.523 +695504,112.4,66.61 +695505,117.26,69.36 +695506,115.33,68.425 +695507,113.29,67.486 +695508,111.12,66.545 +695509,115.9,69.378 +695510,114,68.416 +695511,111.98,67.45 +695512,109.85,66.482 +695513,114.55,69.395 +695514,112.67,68.407 +695515,110.68,67.414 +695516,108.58,66.418 +695517,113.19,69.411 +695518,111.34,68.397 +695519,109.38,67.378 +695520,107.31,66.356 +695521,111.83,69.427 +695522,110.01,68.388 +695523,108.08,67.343 +695524,106.04,66.295 +695525,110.47,69.441 +695526,108.68,68.378 +695527,106.78,67.308 +695528,104.77,66.234 +695529,109.11,69.455 +695530,107.35,68.367 +695531,105.48,67.273 +695532,103.5,66.174 +695533,107.74,69.468 +695534,106.02,68.357 +695535,104.19,67.239 +695536,102.24,66.115 +695537,106.38,69.48 +695538,104.68,68.346 +695539,102.89,67.204 +695540,100.98,66.057 +695541,105.01,69.491 +695542,103.35,68.335 +695543,101.59,67.17 +695544,99.718,66 +695545,103.65,69.502 +695546,102.02,68.323 +695547,100.29,67.137 +695548,98.459,65.944 +695549,102.28,69.511 +695550,100.68,68.311 +695551,98.996,67.103 +695552,97.201,65.889 +695553,100.91,69.519 +695554,99.351,68.299 +695555,97.7,67.07 +695556,95.944,65.834 +695557,99.535,69.526 +695558,98.016,68.287 +695559,96.405,67.038 +695560,94.689,65.781 +695561,98.163,69.533 +695562,96.682,68.274 +695563,95.11,67.005 +695564,93.435,65.728 +695565,96.789,69.538 +695566,95.347,68.261 +695567,93.815,66.973 +695568,92.183,65.677 +695569,95.415,69.542 +695570,94.012,68.247 +695571,92.521,66.941 +695572,90.931,65.627 +695573,94.039,69.545 +695574,92.676,68.233 +695575,91.227,66.91 +695576,89.681,65.578 +695577,92.662,69.548 +695578,91.34,68.219 +695579,89.933,66.879 +695580,88.432,65.529 +695581,91.284,69.549 +695582,90.004,68.204 +695583,88.64,66.848 +695584,87.185,65.482 +695585,89.906,69.549 +695586,88.667,68.189 +695587,87.347,66.818 +695588,85.938,65.436 +695589,88.526,69.547 +695590,87.33,68.174 +695591,86.055,66.788 +695592,84.693,65.391 +695593,87.145,69.545 +695594,85.992,68.158 +695595,84.763,66.758 +695596,83.448,65.348 +695597,85.763,69.542 +695598,84.655,68.142 +695599,83.471,66.729 +695600,82.205,65.305 +695601,84.381,69.537 +695602,83.317,68.125 +695603,82.18,66.7 +695604,80.962,65.263 +695605,82.997,69.532 +695606,81.979,68.108 +695607,80.889,66.672 +695608,79.721,65.223 +695609,81.613,69.525 +695610,80.64,68.091 +695611,79.598,66.644 +695612,78.48,65.184 +695613,80.228,69.517 +695614,79.301,68.073 +695615,78.308,66.616 +695616,77.24,65.146 +695617,78.842,69.508 +695618,77.962,68.055 +695619,77.018,66.588 +695620,76.001,65.109 +695621,77.455,69.498 +695622,76.623,68.037 +695623,75.728,66.561 +695624,74.763,65.073 +695625,76.068,69.486 +695626,75.284,68.018 +695627,74.438,66.535 +695628,73.525,65.039 +695629,74.68,69.474 +695630,73.944,67.998 +695631,73.149,66.509 +695632,72.289,65.006 +695633,73.291,69.46 +695634,72.604,67.979 +695635,71.86,66.483 +695636,71.052,64.974 +695637,71.902,69.445 +695638,71.264,67.959 +695639,70.571,66.457 +695640,69.817,64.943 +695641,70.512,69.429 +695642,69.924,67.938 +695643,69.282,66.432 +695644,68.581,64.913 +695645,69.122,69.411 +695646,68.584,67.917 +695647,67.993,66.408 +695648,67.347,64.885 +695649,67.731,69.392 +695650,67.243,67.896 +695651,66.705,66.384 +695652,66.113,64.858 +695653,66.34,69.373 +695654,65.902,67.874 +695655,65.417,66.36 +695656,64.879,64.832 +695657,64.948,69.352 +695658,64.562,67.852 +695659,64.129,66.336 +695660,63.646,64.807 +695661,63.556,69.329 +695662,63.221,67.829 +695663,62.841,66.313 +695664,62.413,64.784 +695665,62.163,69.306 +695666,61.88,67.806 +695667,61.553,66.291 +695668,61.18,64.761 +695669,60.77,69.281 +695670,60.539,67.782 +695671,60.265,66.268 +695672,59.947,64.74 +695673,59.377,69.255 +695674,59.198,67.758 +695675,58.978,66.247 +695676,58.715,64.721 +695677,57.984,69.228 +695678,57.856,67.734 +695679,57.69,66.225 +695680,57.483,64.702 +695681,56.59,69.199 +695682,56.515,67.709 +695683,56.403,66.204 +695684,56.251,64.685 +695685,55.196,69.17 +695686,55.174,67.684 +695687,55.115,66.184 +695688,55.018,64.669 +695689,53.802,69.139 +695690,53.833,67.659 +695691,53.828,66.163 +695692,53.786,64.654 +695693,52.408,69.107 +695694,52.491,67.633 +695695,52.541,66.144 +695696,52.554,64.641 +695697,51.014,69.074 +695698,51.15,67.606 +695699,51.253,66.124 +695700,51.322,64.628 +695701,49.62,69.039 +695702,49.809,67.58 +695703,49.966,66.105 +695704,50.09,64.617 +695705,48.226,69.004 +695706,48.468,67.552 +695707,48.678,66.086 +695708,48.858,64.607 +695709,46.832,68.967 +695710,47.126,67.525 +695711,47.391,66.068 +695712,47.625,64.599 +695713,45.438,68.929 +695714,45.785,67.497 +695715,46.104,66.05 +695716,46.392,64.591 +695717,44.044,68.89 +695718,44.444,67.468 +695719,44.816,66.033 +695720,45.159,64.585 +695721,42.65,68.849 +695722,43.103,67.439 +695723,43.528,66.016 +695724,43.926,64.58 +695725,41.257,68.808 +695726,41.762,67.41 +695727,42.241,65.999 +695728,42.692,64.576 +695729,39.863,68.765 +695730,40.422,67.381 +695731,40.953,65.983 +695732,41.457,64.573 +695733,38.471,68.721 +695734,39.081,67.351 +695735,39.665,65.967 +695736,40.223,64.571 +695737,37.078,68.677 +695738,37.741,67.32 +695739,38.377,65.951 +695740,38.987,64.571 +695741,35.686,68.63 +695742,36.4,67.289 +695743,37.089,65.936 +695744,37.752,64.571 +695745,34.294,68.583 +695746,35.06,67.258 +695747,35.8,65.921 +695748,36.515,64.573 +695749,32.902,68.535 +695750,33.72,67.227 +695751,34.512,65.906 +695752,35.278,64.575 +695753,31.511,68.486 +695754,32.381,67.195 +695755,33.223,65.892 +695756,34.041,64.579 +695757,30.121,68.435 +695758,31.041,67.163 +695759,31.934,65.878 +695760,32.802,64.584 +695761,28.731,68.384 +695762,29.702,67.13 +695763,30.645,65.865 +695764,31.563,64.59 +695765,27.341,68.331 +695766,28.363,67.097 +695767,29.356,65.852 +695768,30.323,64.597 +695769,25.953,68.278 +695770,27.024,67.064 +695771,28.066,65.839 +695772,29.083,64.605 +695773,24.564,68.223 +695774,25.685,67.03 +695775,26.777,65.826 +695776,27.841,64.614 +695777,23.177,68.168 +695778,24.347,66.996 +695779,25.486,65.814 +695780,26.599,64.624 +695781,21.79,68.111 +695782,23.009,66.962 +695783,24.196,65.802 +695784,25.355,64.635 +695785,20.405,68.054 +695786,21.671,66.927 +695787,22.906,65.791 +695788,24.111,64.647 +695789,19.02,67.995 +695790,20.334,66.892 +695791,21.615,65.779 +695792,22.866,64.66 +695793,17.635,67.936 +695794,18.997,66.857 +695795,20.323,65.769 +695796,21.619,64.674 +695797,16.252,67.876 +695798,17.66,66.821 +695799,19.032,65.758 +695800,20.372,64.688 +695801,14.87,67.815 +695802,16.323,66.785 +695803,17.74,65.747 +695804,19.123,64.704 +695805,13.488,67.753 +695806,14.987,66.749 +695807,16.448,65.737 +695808,17.874,64.72 +695809,12.108,67.69 +695810,13.652,66.712 +695811,15.155,65.727 +695812,16.623,64.737 +695813,10.728,67.626 +695814,12.316,66.675 +695815,13.862,65.718 +695816,15.371,64.755 +695817,9.3502,67.562 +695818,10.981,66.638 +695819,12.569,65.708 +695820,14.118,64.774 +695821,7.973,67.496 +695822,9.6469,66.601 +695823,11.275,65.699 +695824,12.863,64.793 +695825,6.5969,67.43 +695826,8.3128,66.563 +695827,9.9812,65.691 +695828,11.608,64.814 +695829,5.222,67.363 +695830,6.9791,66.525 +695831,8.6867,65.682 +695832,10.351,64.834 +695833,3.8484,67.296 +695834,5.6459,66.487 +695835,7.3918,65.673 +695836,9.0924,64.856 +695837,2.4759,67.227 +695838,4.3131,66.449 +695839,6.0965,65.665 +695840,7.8327,64.878 +695841,1.1048,67.159 +695842,2.9808,66.41 +695843,4.8007,65.657 +695844,6.5717,64.901 +695845,359.73,67.089 +695846,1.6489,66.371 +695847,3.5045,65.649 +695848,5.3092,64.925 +695849,358.37,67.019 +695850,0.31751,66.332 +695851,2.2079,65.642 +695852,4.0453,64.949 +695853,357,66.948 +695854,358.99,66.293 +695855,0.91077,65.634 +695856,2.78,64.974 +695857,355.63,66.876 +695858,357.66,66.254 +695859,359.61,65.627 +695860,1.5132,64.999 +695861,354.27,66.804 +695862,356.33,66.214 +695863,358.32,65.62 +695864,0.24485,65.024 +695865,352.91,66.732 +695866,355,66.174 +695867,357.02,65.613 +695868,358.98,65.051 +695869,351.55,66.659 +695870,353.67,66.134 +695871,355.72,65.606 +695872,357.7,65.077 +695873,350.19,66.585 +695874,352.34,66.094 +695875,354.42,65.6 +695876,356.43,65.104 +695877,348.83,66.511 +695878,351.01,66.054 +695879,353.12,65.593 +695880,355.16,65.132 +695881,347.47,66.437 +695882,349.68,66.013 +695883,351.82,65.587 +695884,353.88,65.159 +695885,346.12,66.362 +695886,348.36,65.972 +695887,350.52,65.58 +695888,352.6,65.188 +695889,344.76,66.287 +695890,347.03,65.932 +695891,349.21,65.574 +695892,351.32,65.216 +695893,343.41,66.211 +695894,345.71,65.891 +695895,347.91,65.568 +695896,350.04,65.245 +695897,342.06,66.136 +695898,344.38,65.85 +695899,346.61,65.562 +695900,348.76,65.274 +695901,340.71,66.059 +695902,343.06,65.809 +695903,345.31,65.556 +695904,347.48,65.303 +695905,339.36,65.983 +695906,341.73,65.768 +695907,344,65.55 +695908,346.19,65.332 +695909,338.02,65.906 +695910,340.41,65.726 +695911,342.7,65.544 +695912,344.9,65.362 +695913,336.68,65.83 +695914,339.09,65.685 +695915,341.39,65.539 +695916,343.61,65.392 +695917,335.34,65.752 +695918,337.76,65.644 +695919,340.09,65.533 +695920,342.32,65.422 +695921,334,65.675 +695922,336.44,65.602 +695923,338.78,65.527 +695924,341.03,65.452 +695925,332.66,65.598 +695926,335.12,65.561 +695927,337.48,65.521 +695928,339.74,65.482 +695929,331.32,65.521 +695930,333.8,65.519 +695931,336.17,65.516 +695932,338.44,65.512 +695933,329.99,65.443 +695934,332.48,65.477 +695935,334.86,65.51 +695936,337.14,65.542 +695937,328.66,65.366 +695938,331.16,65.436 +695939,333.55,65.504 +695940,335.84,65.572 +695941,327.33,65.288 +695942,329.85,65.394 +695943,332.24,65.499 +695944,334.54,65.602 +695945,326,65.211 +695946,328.53,65.353 +695947,330.94,65.493 +695948,333.24,65.631 +695949,324.67,65.133 +695950,327.21,65.311 +695951,329.63,65.487 +695952,331.93,65.661 +695953,323.35,65.056 +695954,325.89,65.27 +695955,328.31,65.481 +695956,330.63,65.691 +695957,322.02,64.978 +695958,324.58,65.228 +695959,327,65.475 +695960,329.32,65.72 +695961,320.7,64.901 +695962,323.26,65.187 +695963,325.69,65.469 +695964,328.01,65.749 +695965,319.38,64.824 +695966,321.95,65.145 +695967,324.38,65.463 +695968,326.7,65.778 +695969,318.07,64.748 +695970,320.64,65.104 +695971,323.07,65.457 +695972,325.38,65.807 +695973,316.75,64.671 +695974,319.32,65.062 +695975,321.75,65.45 +695976,324.07,65.836 +695977,315.44,64.595 +695978,318.01,65.021 +695979,320.44,65.444 +695980,322.75,65.864 +695981,314.13,64.519 +695982,316.7,64.98 +695983,319.12,65.438 +695984,321.43,65.891 +695985,312.82,64.443 +695986,315.39,64.939 +695987,317.81,65.431 +695988,320.11,65.919 +695989,311.51,64.368 +695990,314.08,64.898 +695991,316.49,65.424 +695992,318.79,65.946 +695993,310.21,64.293 +695994,312.77,64.857 +695995,315.18,65.417 +695996,317.46,65.972 +695997,308.91,64.218 +695998,311.46,64.817 +695999,313.86,65.41 +696000,316.14,65.999 +696001,307.61,64.144 +696002,310.15,64.776 +696003,312.54,65.403 +696004,314.81,66.024 +696005,306.31,64.07 +696006,308.84,64.736 +696007,311.22,65.395 +696008,313.48,66.049 +696009,305.01,63.997 +696010,307.53,64.695 +696011,309.91,65.388 +696012,312.15,66.074 +696013,303.72,63.924 +696014,306.23,64.655 +696015,308.59,65.38 +696016,310.82,66.098 +696017,302.42,63.852 +696018,304.92,64.615 +696019,307.27,65.372 +696020,309.49,66.122 +696021,301.13,63.78 +696022,303.61,64.576 +696023,305.95,65.364 +696024,308.15,66.145 +696025,299.84,63.709 +696026,302.31,64.536 +696027,304.63,65.355 +696028,306.81,66.167 +696029,298.56,63.639 +696030,301,64.497 +696031,303.3,65.347 +696032,305.47,66.188 +696033,297.27,63.569 +696034,299.7,64.458 +696035,301.98,65.338 +696036,304.13,66.209 +696037,295.99,63.5 +696038,298.4,64.419 +696039,300.66,65.329 +696040,302.79,66.23 +696041,294.71,63.431 +696042,297.1,64.38 +696043,299.34,65.319 +696044,301.45,66.249 +696045,293.43,63.363 +696046,295.79,64.341 +696047,298.01,65.31 +696048,300.1,66.268 +696049,292.15,63.296 +696050,294.49,64.303 +696051,296.69,65.3 +696052,298.75,66.286 +696053,290.87,63.23 +696054,293.19,64.265 +696055,295.36,65.29 +696056,297.41,66.303 +696057,289.6,63.165 +696058,291.89,64.227 +696059,294.04,65.279 +696060,296.06,66.319 +696061,288.33,63.1 +696062,290.59,64.19 +696063,292.71,65.268 +696064,294.7,66.335 +696065,287.06,63.036 +696066,289.29,64.153 +696067,291.39,65.257 +696068,293.35,66.349 +696069,285.79,62.973 +696070,288,64.116 +696071,290.06,65.246 +696072,292,66.363 +696073,284.52,62.911 +696074,286.7,64.079 +696075,288.73,65.234 +696076,290.64,66.376 +696077,283.26,62.85 +696078,285.4,64.043 +696079,287.4,65.222 +696080,289.28,66.388 +696081,281.99,62.79 +696082,284.11,64.007 +696083,286.08,65.21 +696084,287.92,66.399 +696085,280.73,62.73 +696086,282.81,63.971 +696087,284.75,65.197 +696088,286.56,66.409 +696089,279.47,62.672 +696090,281.51,63.935 +696091,283.42,65.184 +696092,285.2,66.418 +696093,278.21,62.615 +696094,280.22,63.9 +696095,282.09,65.171 +696096,283.84,66.426 +696097,276.95,62.558 +696098,278.92,63.865 +696099,280.76,65.157 +696100,282.47,66.433 +696101,275.7,62.503 +696102,277.63,63.831 +696103,279.43,65.143 +696104,281.11,66.44 +696105,274.45,62.449 +696106,276.34,63.797 +696107,278.1,65.129 +696108,279.74,66.445 +696109,273.19,62.395 +696110,275.04,63.763 +696111,276.77,65.114 +696112,278.37,66.448 +696113,271.94,62.343 +696114,273.75,63.729 +696115,275.43,65.099 +696116,277.01,66.451 +696117,270.69,62.292 +696118,272.46,63.696 +696119,274.1,65.084 +696120,275.63,66.453 +696121,269.44,62.242 +696122,271.17,63.664 +696123,272.77,65.068 +696124,274.26,66.454 +696125,268.2,62.193 +696126,269.88,63.631 +696127,271.44,65.051 +696128,272.89,66.453 +696129,266.95,62.146 +696130,268.59,63.599 +696131,270.1,65.035 +696132,271.52,66.452 +696133,265.71,62.099 +696134,267.3,63.567 +696135,268.77,65.018 +696136,270.14,66.449 +696137,264.46,62.054 +696138,266.01,63.536 +696139,267.44,65 +696140,268.76,66.445 +696141,263.22,62.009 +696142,264.72,63.505 +696143,266.1,64.982 +696144,267.39,66.44 +696145,261.98,61.966 +696146,263.43,63.475 +696147,264.77,64.964 +696148,266.01,66.434 +696149,260.74,61.924 +696150,262.14,63.445 +696151,263.43,64.945 +696152,264.63,66.426 +696153,259.5,61.884 +696154,260.85,63.415 +696155,262.1,64.926 +696156,263.25,66.418 +696157,258.27,61.844 +696158,259.56,63.385 +696159,260.76,64.907 +696160,261.87,66.408 +696161,257.03,61.806 +696162,258.28,63.356 +696163,259.42,64.887 +696164,260.49,66.397 +696165,255.79,61.769 +696166,256.99,63.328 +696167,258.09,64.867 +696168,259.1,66.385 +696169,254.56,61.733 +696170,255.7,63.3 +696171,256.75,64.846 +696172,257.72,66.371 +696173,253.33,61.699 +696174,254.41,63.272 +696175,255.41,64.825 +696176,256.34,66.356 +696177,252.09,61.666 +696178,253.13,63.245 +696179,254.08,64.803 +696180,254.95,66.34 +696181,250.86,61.634 +696182,251.84,63.218 +696183,252.74,64.781 +696184,253.57,66.323 +696185,249.63,61.603 +696186,250.56,63.191 +696187,251.4,64.758 +696188,252.18,66.305 +696189,248.4,61.574 +696190,249.27,63.165 +696191,250.07,64.736 +696192,250.79,66.285 +696193,247.17,61.545 +696194,247.99,63.139 +696195,248.73,64.712 +696196,249.4,66.264 +696197,245.94,61.519 +696198,246.7,63.114 +696199,247.39,64.688 +696200,248.02,66.242 +696201,244.71,61.493 +696202,245.42,63.089 +696203,246.05,64.664 +696204,246.63,66.218 +696205,243.48,61.469 +696206,244.13,63.064 +696207,244.71,64.64 +696208,245.24,66.193 +696209,242.25,61.446 +696210,242.85,63.04 +696211,243.38,64.614 +696212,243.85,66.167 +696213,241.03,61.424 +696214,241.56,63.017 +696215,242.04,64.589 +696216,242.46,66.14 +696217,239.8,61.403 +696218,240.28,62.993 +696219,240.7,64.563 +696220,241.07,66.111 +696221,238.57,61.384 +696222,238.99,62.97 +696223,239.36,64.536 +696224,239.67,66.082 +696225,237.35,61.366 +696226,237.71,62.948 +696227,238.02,64.51 +696228,238.28,66.05 +696229,236.12,61.35 +696230,236.43,62.926 +696231,236.68,64.482 +696232,236.89,66.018 +696233,234.89,61.334 +696234,235.14,62.904 +696235,235.34,64.455 +696236,235.5,65.984 +696237,233.67,61.32 +696238,233.86,62.883 +696239,234,64.426 +696240,234.11,65.949 +696241,232.44,61.307 +696242,232.57,62.862 +696243,232.66,64.398 +696244,232.71,65.913 +696245,231.22,61.296 +696246,231.29,62.842 +696247,231.33,64.369 +696248,231.32,65.876 +696249,229.99,61.286 +696250,230.01,62.822 +696251,229.99,64.339 +696252,229.93,65.837 +696253,228.76,61.277 +696254,228.72,62.802 +696255,228.65,64.31 +696256,228.54,65.797 +696257,227.54,61.269 +696258,227.44,62.783 +696259,227.31,64.279 +696260,227.14,65.756 +696261,226.31,61.262 +696262,226.16,62.764 +696263,225.97,64.249 +696264,225.75,65.714 +696265,225.08,61.257 +696266,224.87,62.746 +696267,224.63,64.217 +696268,224.36,65.67 +696269,223.86,61.252 +696270,223.59,62.728 +696271,223.29,64.186 +696272,222.96,65.625 +696273,222.63,61.249 +696274,222.31,62.71 +696275,221.95,64.154 +696276,221.57,65.579 +696277,221.4,61.248 +696278,221.02,62.693 +696279,220.61,64.122 +696280,220.18,65.532 +696281,220.18,61.247 +696282,219.74,62.676 +696283,219.27,64.089 +696284,218.79,65.484 +696285,218.95,61.247 +696286,218.45,62.659 +696287,217.94,64.056 +696288,217.39,65.434 +696289,217.72,61.249 +696290,217.17,62.643 +696291,216.6,64.022 +696292,216,65.384 +696293,216.49,61.252 +696294,215.89,62.628 +696295,215.26,63.988 +696296,214.61,65.332 +696297,215.26,61.256 +696298,214.6,62.612 +696299,213.92,63.954 +696300,213.22,65.279 +696301,214.03,61.261 +696302,213.32,62.597 +696303,212.58,63.919 +696304,211.83,65.225 +696305,212.8,61.267 +696306,212.03,62.582 +696307,211.25,63.884 +696308,210.44,65.17 +696309,211.57,61.274 +696310,210.75,62.568 +696311,209.91,63.848 +696312,209.05,65.114 +696313,210.33,61.282 +696314,209.46,62.554 +696315,208.57,63.812 +696316,207.66,65.056 +696317,209.1,61.291 +696318,208.18,62.54 +696319,207.23,63.776 +696320,206.27,64.998 +696321,207.87,61.301 +696322,206.89,62.527 +696323,205.9,63.74 +696324,204.88,64.938 +696325,206.63,61.312 +696326,205.61,62.514 +696327,204.56,63.703 +696328,203.49,64.878 +696329,205.4,61.325 +696330,204.32,62.501 +696331,203.22,63.665 +696332,202.1,64.817 +696333,204.16,61.338 +696334,203.04,62.489 +696335,201.89,63.628 +696336,200.72,64.754 +696337,202.92,61.352 +696338,201.75,62.476 +696339,200.55,63.59 +696340,199.33,64.691 +696341,201.68,61.367 +696342,200.46,62.465 +696343,199.22,63.552 +696344,197.95,64.626 +696345,200.44,61.383 +696346,199.18,62.453 +696347,197.88,63.513 +696348,196.56,64.561 +696349,199.2,61.399 +696350,197.89,62.442 +696351,196.55,63.474 +696352,195.18,64.495 +696353,197.96,61.417 +696354,196.6,62.431 +696355,195.21,63.435 +696356,193.79,64.428 +696357,196.72,61.435 +696358,195.31,62.42 +696359,193.88,63.395 +696360,192.41,64.36 +696361,195.48,61.454 +696362,194.02,62.409 +696363,192.54,63.356 +696364,191.03,64.291 +696365,194.23,61.474 +696366,192.74,62.399 +696367,191.21,63.316 +696368,189.65,64.221 +696369,192.98,61.495 +696370,191.45,62.389 +696371,189.88,63.275 +696372,188.27,64.151 +696373,191.74,61.516 +696374,190.16,62.379 +696375,188.55,63.235 +696376,186.9,64.08 +696377,190.49,61.539 +696378,188.87,62.37 +696379,187.21,63.194 +696380,185.52,64.008 +696381,189.24,61.561 +696382,187.58,62.361 +696383,185.88,63.153 +696384,184.14,63.935 +696385,187.99,61.585 +696386,186.29,62.352 +696387,184.55,63.111 +696388,182.77,63.862 +696389,186.73,61.609 +696390,185,62.343 +696391,183.22,63.07 +696392,181.4,63.788 +696393,185.48,61.634 +696394,183.7,62.334 +696395,181.89,63.028 +696396,180.02,63.713 +696397,184.22,61.659 +696398,182.41,62.325 +696399,180.56,62.986 +696400,178.65,63.637 +696401,182.97,61.684 +696402,181.12,62.317 +696403,179.23,62.943 +696404,177.28,63.561 +696405,181.71,61.711 +696406,179.83,62.309 +696407,177.9,62.901 +696408,175.92,63.485 +696409,180.45,61.737 +696410,178.54,62.301 +696411,176.57,62.858 +696412,174.55,63.408 +696413,179.18,61.765 +696414,177.24,62.293 +696415,175.24,62.815 +696416,173.18,63.33 +696417,177.92,61.792 +696418,175.95,62.285 +696419,173.92,62.772 +696420,171.82,63.252 +696421,176.66,61.82 +696422,174.65,62.278 +696423,172.59,62.729 +696424,170.46,63.173 +696425,175.39,61.849 +696426,173.36,62.27 +696427,171.26,62.686 +696428,169.1,63.094 +696429,174.12,61.878 +696430,172.06,62.263 +696431,169.94,62.642 +696432,167.74,63.015 +696433,172.85,61.907 +696434,170.77,62.255 +696435,168.61,62.599 +696436,166.38,62.935 +696437,171.58,61.936 +696438,169.47,62.248 +696439,167.29,62.555 +696440,165.02,62.854 +696441,170.31,61.965 +696442,168.17,62.241 +696443,165.96,62.511 +696444,163.67,62.774 +696445,169.03,61.995 +696446,166.87,62.234 +696447,164.64,62.467 +696448,162.32,62.693 +696449,167.76,62.025 +696450,165.58,62.227 +696451,163.32,62.423 +696452,160.97,62.612 +696453,166.48,62.056 +696454,164.28,62.22 +696455,161.99,62.379 +696456,159.62,62.53 +696457,165.2,62.086 +696458,162.98,62.213 +696459,160.67,62.335 +696460,158.27,62.449 +696461,163.92,62.116 +696462,161.68,62.206 +696463,159.35,62.29 +696464,156.92,62.367 +696465,162.64,62.147 +696466,160.38,62.199 +696467,158.03,62.246 +696468,155.58,62.285 +696469,161.35,62.177 +696470,159.08,62.193 +696471,156.71,62.202 +696472,154.24,62.203 +696473,160.06,62.208 +696474,157.78,62.186 +696475,155.39,62.157 +696476,152.89,62.12 +696477,158.78,62.238 +696478,156.47,62.179 +696479,154.07,62.113 +696480,151.56,62.038 +696481,157.49,62.269 +696482,155.17,62.172 +696483,152.75,62.068 +696484,150.22,61.956 +696485,156.19,62.299 +696486,153.87,62.165 +696487,151.44,62.024 +696488,148.88,61.873 +696489,154.9,62.33 +696490,152.56,62.158 +696491,150.12,61.979 +696492,147.55,61.791 +696493,153.61,62.36 +696494,151.26,62.151 +696495,148.8,61.935 +696496,146.22,61.709 +696497,152.31,62.39 +696498,149.95,62.144 +696499,147.49,61.89 +696500,144.89,61.627 +696501,151.01,62.42 +696502,148.65,62.137 +696503,146.17,61.846 +696504,143.56,61.545 +696505,149.71,62.449 +696506,147.34,62.13 +696507,144.86,61.801 +696508,142.24,61.463 +696509,148.41,62.479 +696510,146.04,62.122 +696511,143.55,61.757 +696512,140.91,61.381 +696513,147.1,62.508 +696514,144.73,62.115 +696515,142.23,61.713 +696516,139.59,61.3 +696517,145.8,62.536 +696518,143.42,62.107 +696519,140.92,61.669 +696520,138.27,61.218 +696521,144.49,62.565 +696522,142.11,62.1 +696523,139.61,61.625 +696524,136.96,61.137 +696525,143.18,62.593 +696526,140.8,62.092 +696527,138.3,61.581 +696528,135.64,61.057 +696529,141.87,62.62 +696530,139.49,62.084 +696531,136.99,61.537 +696532,134.33,60.976 +696533,140.55,62.648 +696534,138.18,62.076 +696535,135.68,61.493 +696536,133.02,60.896 +696537,139.24,62.675 +696538,136.87,62.068 +696539,134.37,61.449 +696540,131.71,60.817 +696541,137.92,62.701 +696542,135.56,62.06 +696543,133.06,61.406 +696544,130.4,60.738 +696545,136.6,62.727 +696546,134.25,62.051 +696547,131.75,61.362 +696548,129.1,60.659 +696549,135.28,62.752 +696550,132.94,62.042 +696551,130.45,61.319 +696552,127.79,60.581 +696553,133.96,62.777 +696554,131.62,62.033 +696555,129.14,61.276 +696556,126.49,60.503 +696557,132.64,62.801 +696558,130.31,62.024 +696559,127.84,61.233 +696560,125.19,60.426 +696561,131.31,62.824 +696562,128.99,62.015 +696563,126.53,61.19 +696564,123.9,60.349 +696565,129.99,62.847 +696566,127.68,62.005 +696567,125.23,61.148 +696568,122.6,60.273 +696569,128.66,62.869 +696570,126.36,61.995 +696571,123.92,61.105 +696572,121.31,60.198 +696573,127.33,62.891 +696574,125.05,61.985 +696575,122.62,61.063 +696576,120.02,60.123 +696577,125.99,62.911 +696578,123.73,61.975 +696579,121.32,61.021 +696580,118.73,60.049 +696581,124.66,62.931 +696582,122.41,61.965 +696583,120.02,60.98 +696584,117.44,59.976 +696585,123.32,62.951 +696586,121.1,61.954 +696587,118.72,60.938 +696588,116.16,59.903 +696589,121.99,62.969 +696590,119.78,61.943 +696591,117.42,60.897 +696592,114.88,59.831 +696593,120.65,62.987 +696594,118.46,61.931 +696595,116.12,60.856 +696596,113.6,59.76 +696597,119.31,63.004 +696598,117.14,61.92 +696599,114.82,60.815 +696600,112.32,59.69 +696601,117.97,63.019 +696602,115.82,61.908 +696603,113.52,60.775 +696604,111.04,59.62 +696605,116.62,63.035 +696606,114.5,61.895 +696607,112.22,60.735 +696608,109.77,59.552 +696609,115.28,63.049 +696610,113.18,61.883 +696611,110.93,60.695 +696612,108.5,59.484 +696613,113.93,63.062 +696614,111.86,61.87 +696615,109.63,60.655 +696616,107.23,59.417 +696617,112.58,63.074 +696618,110.53,61.857 +696619,108.33,60.616 +696620,105.96,59.351 +696621,111.23,63.085 +696622,109.21,61.843 +696623,107.04,60.577 +696624,104.69,59.287 +696625,109.88,63.096 +696626,107.89,61.829 +696627,105.74,60.538 +696628,103.43,59.223 +696629,108.53,63.105 +696630,106.56,61.815 +696631,104.45,60.5 +696632,102.16,59.16 +696633,107.17,63.113 +696634,105.24,61.8 +696635,103.16,60.462 +696636,100.9,59.098 +696637,105.82,63.121 +696638,103.92,61.785 +696639,101.87,60.424 +696640,99.642,59.037 +696641,104.46,63.127 +696642,102.59,61.77 +696643,100.57,60.387 +696644,98.385,58.977 +696645,103.1,63.132 +696646,101.26,61.754 +696647,99.282,60.35 +696648,97.129,58.919 +696649,101.74,63.136 +696650,99.939,61.738 +696651,97.991,60.314 +696652,95.875,58.861 +696653,100.38,63.139 +696654,98.612,61.722 +696655,96.7,60.277 +696656,94.623,58.805 +696657,99.02,63.14 +696658,97.285,61.705 +696659,95.41,60.241 +696660,93.372,58.749 +696661,97.657,63.141 +696662,95.958,61.687 +696663,94.121,60.206 +696664,92.123,58.695 +696665,96.292,63.14 +696666,94.63,61.67 +696667,92.832,60.171 +696668,90.875,58.642 +696669,94.926,63.139 +696670,93.302,61.652 +696671,91.544,60.136 +696672,89.629,58.59 +696673,93.558,63.136 +696674,91.973,61.633 +696675,90.256,60.101 +696676,88.385,58.54 +696677,92.19,63.132 +696678,90.644,61.614 +696679,88.969,60.067 +696680,87.142,58.491 +696681,90.82,63.126 +696682,89.315,61.595 +696683,87.682,60.034 +696684,85.9,58.442 +696685,89.449,63.12 +696686,87.985,61.575 +696687,86.396,60.001 +696688,84.66,58.396 +696689,88.077,63.112 +696690,86.655,61.555 +696691,85.11,59.968 +696692,83.422,58.35 +696693,86.704,63.103 +696694,85.324,61.534 +696695,83.824,59.936 +696696,82.184,58.306 +696697,85.33,63.092 +696698,83.994,61.513 +696699,82.539,59.904 +696700,80.948,58.263 +696701,83.955,63.081 +696702,82.662,61.492 +696703,81.255,59.872 +696704,79.714,58.221 +696705,82.579,63.068 +696706,81.331,61.47 +696707,79.971,59.841 +696708,78.48,58.18 +696709,81.202,63.054 +696710,79.999,61.447 +696711,78.687,59.81 +696712,77.248,58.141 +696713,79.824,63.038 +696714,78.667,61.424 +696715,77.403,59.78 +696716,76.016,58.103 +696717,78.445,63.021 +696718,77.335,61.401 +696719,76.12,59.75 +696720,74.786,58.067 +696721,77.065,63.003 +696722,76.002,61.377 +696723,74.838,59.72 +696724,73.557,58.032 +696725,75.685,62.984 +696726,74.669,61.353 +696727,73.555,59.691 +696728,72.329,57.998 +696729,74.303,62.963 +696730,73.336,61.329 +696731,72.273,59.663 +696732,71.101,57.966 +696733,72.921,62.941 +696734,72.002,61.303 +696735,70.991,59.635 +696736,69.875,57.934 +696737,71.538,62.918 +696738,70.669,61.278 +696739,69.71,59.607 +696740,68.65,57.905 +696741,70.155,62.893 +696742,69.335,61.252 +696743,68.429,59.58 +696744,67.425,57.876 +696745,68.77,62.867 +696746,68.001,61.225 +696747,67.148,59.553 +696748,66.201,57.849 +696749,67.385,62.84 +696750,66.666,61.198 +696751,65.868,59.526 +696752,64.978,57.824 +696753,66,62.811 +696754,65.332,61.171 +696755,64.587,59.5 +696756,63.755,57.799 +696757,64.614,62.781 +696758,63.997,61.143 +696759,63.307,59.475 +696760,62.533,57.776 +696761,63.227,62.75 +696762,62.663,61.115 +696763,62.027,59.45 +696764,61.312,57.755 +696765,61.84,62.717 +696766,61.328,61.086 +696767,60.748,59.425 +696768,60.091,57.735 +696769,60.452,62.683 +696770,59.993,61.057 +696771,59.468,59.401 +696772,58.87,57.716 +696773,59.064,62.647 +696774,58.658,61.027 +696775,58.189,59.377 +696776,57.65,57.698 +696777,57.676,62.611 +696778,57.322,60.997 +696779,56.91,59.354 +696780,56.431,57.682 +696781,56.287,62.573 +696782,55.987,60.966 +696783,55.631,59.331 +696784,55.211,57.667 +696785,54.898,62.533 +696786,54.652,60.935 +696787,54.352,59.308 +696788,53.992,57.654 +696789,53.509,62.493 +696790,53.316,60.903 +696791,53.073,59.286 +696792,52.773,57.641 +696793,52.119,62.451 +696794,51.981,60.871 +696795,51.794,59.265 +696796,51.555,57.631 +696797,50.729,62.407 +696798,50.645,60.839 +696799,50.516,59.243 +696800,50.336,57.621 +696801,49.339,62.363 +696802,49.309,60.806 +696803,49.237,59.223 +696804,49.118,57.613 +696805,47.949,62.317 +696806,47.974,60.773 +696807,47.959,59.202 +696808,47.899,57.606 +696809,46.558,62.269 +696810,46.638,60.739 +696811,46.68,59.182 +696812,46.68,57.6 +696813,45.168,62.221 +696814,45.303,60.705 +696815,45.402,59.163 +696816,45.462,57.596 +696817,43.778,62.171 +696818,43.967,60.67 +696819,44.123,59.144 +696820,44.243,57.593 +696821,42.387,62.12 +696822,42.632,60.635 +696823,42.845,59.125 +696824,43.024,57.591 +696825,40.997,62.068 +696826,41.297,60.599 +696827,41.567,59.107 +696828,41.805,57.59 +696829,39.606,62.015 +696830,39.961,60.563 +696831,40.288,59.089 +696832,40.585,57.591 +696833,38.216,61.96 +696834,38.626,60.527 +696835,39.01,59.071 +696836,39.365,57.593 +696837,36.826,61.904 +696838,37.291,60.49 +696839,37.731,59.054 +696840,38.145,57.596 +696841,35.436,61.847 +696842,35.956,60.453 +696843,36.452,59.037 +696844,36.924,57.6 +696845,34.047,61.789 +696846,34.621,60.415 +696847,35.174,59.021 +696848,35.703,57.605 +696849,32.657,61.729 +696850,33.286,60.377 +696851,33.895,59.005 +696852,34.482,57.612 +696853,31.268,61.668 +696854,31.952,60.339 +696855,32.616,58.989 +696856,33.259,57.619 +696857,29.88,61.607 +696858,30.618,60.3 +696859,31.337,58.974 +696860,32.037,57.628 +696861,28.492,61.544 +696862,29.283,60.261 +696863,30.057,58.959 +696864,30.813,57.638 +696865,27.104,61.48 +696866,27.95,60.221 +696867,28.778,58.944 +696868,29.589,57.649 +696869,25.716,61.415 +696870,26.616,60.182 +696871,27.498,58.93 +696872,28.364,57.661 +696873,24.329,61.349 +696874,25.282,60.141 +696875,26.218,58.916 +696876,27.138,57.674 +696877,22.943,61.281 +696878,23.949,60.101 +696879,24.938,58.902 +696880,25.912,57.688 +696881,21.557,61.213 +696882,22.616,60.06 +696883,23.658,58.889 +696884,24.684,57.703 +696885,20.172,61.144 +696886,21.283,60.018 +696887,22.378,58.876 +696888,23.456,57.719 +696889,18.788,61.074 +696890,19.951,59.977 +696891,21.097,58.863 +696892,22.227,57.735 +696893,17.404,61.003 +696894,18.619,59.935 +696895,19.816,58.851 +696896,20.997,57.753 +696897,16.021,60.93 +696898,17.287,59.892 +696899,18.535,58.839 +696900,19.765,57.772 +696901,14.639,60.857 +696902,15.956,59.85 +696903,17.253,58.827 +696904,18.533,57.791 +696905,13.257,60.783 +696906,14.624,59.807 +696907,15.971,58.816 +696908,17.3,57.812 +696909,11.877,60.708 +696910,13.294,59.763 +696911,14.689,58.804 +696912,16.065,57.833 +696913,10.497,60.633 +696914,11.963,59.72 +696915,13.407,58.793 +696916,14.83,57.855 +696917,9.1182,60.556 +696918,10.633,59.676 +696919,12.124,58.783 +696920,13.593,57.878 +696921,7.7403,60.479 +696922,9.3034,59.632 +696923,10.841,58.772 +696924,12.355,57.901 +696925,6.3635,60.401 +696926,7.9741,59.587 +696927,9.557,58.762 +696928,11.115,57.925 +696929,4.9878,60.322 +696930,6.6453,59.543 +696931,8.2731,58.752 +696932,9.8745,57.95 +696933,3.6131,60.242 +696934,5.3168,59.498 +696935,6.9888,58.742 +696936,8.6324,57.976 +696937,2.2395,60.162 +696938,3.9888,59.453 +696939,5.7041,58.732 +696940,7.3891,58.002 +696941,0.86713,60.08 +696942,2.6613,59.407 +696943,4.419,58.723 +696944,6.1443,58.028 +696945,359.5,59.999 +696946,1.3342,59.362 +696947,3.1335,58.714 +696948,4.8981,58.056 +696949,358.13,59.916 +696950,0.0076084,59.316 +696951,1.8476,58.704 +696952,3.6505,58.083 +696953,356.76,59.833 +696954,358.68,59.27 +696955,0.5612,58.696 +696956,2.4015,58.112 +696957,355.39,59.75 +696958,357.36,59.224 +696959,359.27,58.687 +696960,1.1509,58.141 +696961,354.02,59.666 +696962,356.03,59.178 +696963,357.99,58.678 +696964,359.9,58.17 +696965,352.66,59.581 +696966,354.71,59.131 +696967,356.7,58.67 +696968,358.65,58.199 +696969,351.3,59.496 +696970,353.38,59.084 +696971,355.41,58.661 +696972,357.39,58.23 +696973,349.93,59.411 +696974,352.06,59.037 +696975,354.12,58.653 +696976,356.13,58.26 +696977,348.57,59.325 +696978,350.74,58.99 +696979,352.83,58.645 +696980,354.87,58.291 +696981,347.21,59.238 +696982,349.41,58.943 +696983,351.54,58.637 +696984,353.61,58.322 +696985,345.86,59.152 +696986,348.09,58.896 +696987,350.25,58.629 +696988,352.35,58.353 +696989,344.5,59.065 +696990,346.77,58.849 +696991,348.96,58.621 +696992,351.09,58.385 +696993,343.15,58.977 +696994,345.45,58.801 +696995,347.67,58.614 +696996,349.82,58.416 +696997,341.79,58.89 +696998,344.13,58.754 +696999,346.38,58.606 +697000,348.56,58.448 +697001,340.44,58.802 +697002,342.81,58.706 +697003,345.09,58.598 +697004,347.29,58.48 +697005,339.09,58.714 +697006,341.49,58.658 +697007,343.8,58.59 +697008,346.02,58.512 +697009,337.75,58.626 +697010,340.17,58.611 +697011,342.5,58.583 +697012,344.75,58.545 +697013,336.4,58.537 +697014,338.85,58.563 +697015,341.21,58.575 +697016,343.47,58.577 +697017,335.06,58.449 +697018,337.54,58.515 +697019,339.91,58.568 +697020,342.2,58.609 +697021,333.71,58.36 +697022,336.22,58.467 +697023,338.62,58.56 +697024,340.92,58.641 +697025,332.37,58.272 +697026,334.91,58.419 +697027,337.32,58.552 +697028,339.64,58.674 +697029,331.04,58.183 +697030,333.59,58.371 +697031,336.03,58.545 +697032,338.36,58.706 +697033,329.7,58.094 +697034,332.28,58.323 +697035,334.73,58.537 +697036,337.08,58.738 +697037,328.36,58.006 +697038,330.96,58.275 +697039,333.43,58.529 +697040,335.8,58.77 +697041,327.03,57.917 +697042,329.65,58.228 +697043,332.14,58.521 +697044,334.51,58.801 +697045,325.7,57.829 +697046,328.34,58.18 +697047,330.84,58.514 +697048,333.22,58.833 +697049,324.37,57.741 +697050,327.02,58.132 +697051,329.54,58.506 +697052,331.93,58.864 +697053,323.05,57.653 +697054,325.71,58.084 +697055,328.24,58.498 +697056,330.64,58.895 +697057,321.72,57.565 +697058,324.4,58.037 +697059,326.94,58.489 +697060,329.35,58.926 +697061,320.4,57.478 +697062,323.09,57.989 +697063,325.64,58.481 +697064,328.05,58.956 +697065,319.08,57.39 +697066,321.78,57.942 +697067,324.34,58.473 +697068,326.76,58.986 +697069,317.76,57.303 +697070,320.48,57.894 +697071,323.03,58.464 +697072,325.46,59.016 +697073,316.44,57.217 +697074,319.17,57.847 +697075,321.73,58.455 +697076,324.16,59.045 +697077,315.13,57.131 +697078,317.86,57.8 +697079,320.43,58.447 +697080,322.85,59.074 +697081,313.81,57.045 +697082,316.55,57.753 +697083,319.12,58.438 +697084,321.55,59.102 +697085,312.5,56.96 +697086,315.25,57.706 +697087,317.82,58.428 +697088,320.24,59.13 +697089,311.2,56.875 +697090,313.94,57.659 +697091,316.52,58.419 +697092,318.94,59.157 +697093,309.89,56.79 +697094,312.64,57.613 +697095,315.21,58.41 +697096,317.63,59.184 +697097,308.59,56.707 +697098,311.34,57.566 +697099,313.9,58.4 +697100,316.32,59.21 +697101,307.28,56.623 +697102,310.03,57.52 +697103,312.6,58.39 +697104,315,59.235 +697105,305.98,56.541 +697106,308.73,57.474 +697107,311.29,58.38 +697108,313.69,59.26 +697109,304.69,56.459 +697110,307.43,57.429 +697111,309.98,58.369 +697112,312.37,59.284 +697113,303.39,56.378 +697114,306.13,57.383 +697115,308.67,58.359 +697116,311.05,59.307 +697117,302.1,56.297 +697118,304.83,57.338 +697119,307.36,58.348 +697120,309.73,59.33 +697121,300.81,56.217 +697122,303.53,57.293 +697123,306.06,58.336 +697124,308.41,59.352 +697125,299.52,56.138 +697126,302.23,57.248 +697127,304.74,58.325 +697128,307.09,59.373 +697129,298.23,56.06 +697130,300.94,57.203 +697131,303.43,58.313 +697132,305.76,59.393 +697133,296.95,55.982 +697134,299.64,57.159 +697135,302.12,58.301 +697136,304.43,59.413 +697137,295.66,55.906 +697138,298.34,57.115 +697139,300.81,58.289 +697140,303.11,59.431 +697141,294.38,55.83 +697142,297.05,57.071 +697143,299.5,58.276 +697144,301.78,59.449 +697145,293.11,55.755 +697146,295.75,57.028 +697147,298.19,58.263 +697148,300.44,59.466 +697149,291.83,55.681 +697150,294.46,56.984 +697151,296.87,58.25 +697152,299.11,59.482 +697153,290.56,55.609 +697154,293.16,56.942 +697155,295.56,58.236 +697156,297.77,59.497 +697157,289.28,55.537 +697158,291.87,56.899 +697159,294.24,58.223 +697160,296.44,59.51 +697161,288.01,55.466 +697162,290.58,56.857 +697163,292.93,58.208 +697164,295.1,59.523 +697165,286.75,55.396 +697166,289.29,56.815 +697167,291.61,58.194 +697168,293.76,59.535 +697169,285.48,55.327 +697170,288,56.773 +697171,290.3,58.179 +697172,292.42,59.546 +697173,284.22,55.259 +697174,286.71,56.732 +697175,288.98,58.163 +697176,291.07,59.556 +697177,282.96,55.193 +697178,285.42,56.691 +697179,287.66,58.148 +697180,289.73,59.565 +697181,281.7,55.127 +697182,284.13,56.651 +697183,286.34,58.131 +697184,288.38,59.572 +697185,280.44,55.063 +697186,282.84,56.611 +697187,285.03,58.115 +697188,287.04,59.579 +697189,279.18,55 +697190,281.55,56.571 +697191,283.71,58.098 +697192,285.69,59.584 +697193,277.93,54.938 +697194,280.26,56.532 +697195,282.39,58.081 +697196,284.34,59.588 +697197,276.68,54.877 +697198,278.98,56.493 +697199,281.07,58.063 +697200,282.98,59.591 +697201,275.43,54.817 +697202,277.69,56.454 +697203,279.75,58.045 +697204,281.63,59.593 +697205,274.18,54.759 +697206,276.41,56.416 +697207,278.43,58.026 +697208,280.28,59.593 +697209,272.93,54.702 +697210,275.12,56.378 +697211,277.11,58.007 +697212,278.92,59.593 +697213,271.69,54.646 +697214,273.84,56.341 +697215,275.78,57.988 +697216,277.56,59.591 +697217,270.45,54.592 +697218,272.55,56.304 +697219,274.46,57.968 +697220,276.21,59.588 +697221,269.21,54.539 +697222,271.27,56.268 +697223,273.14,57.948 +697224,274.85,59.583 +697225,267.97,54.487 +697226,269.99,56.232 +697227,271.82,57.927 +697228,273.48,59.577 +697229,266.73,54.437 +697230,268.71,56.196 +697231,270.49,57.906 +697232,272.12,59.57 +697233,265.49,54.388 +697234,267.43,56.161 +697235,269.17,57.884 +697236,270.76,59.562 +697237,264.26,54.341 +697238,266.15,56.126 +697239,267.85,57.862 +697240,269.39,59.552 +697241,263.03,54.294 +697242,264.87,56.092 +697243,266.52,57.84 +697244,268.03,59.541 +697245,261.79,54.25 +697246,263.59,56.058 +697247,265.2,57.817 +697248,266.66,59.529 +697249,260.56,54.206 +697250,262.31,56.025 +697251,263.87,57.793 +697252,265.29,59.515 +697253,259.34,54.165 +697254,261.03,55.992 +697255,262.55,57.769 +697256,263.92,59.5 +697257,258.11,54.124 +697258,259.75,55.96 +697259,261.22,57.745 +697260,262.55,59.484 +697261,256.88,54.085 +697262,258.47,55.928 +697263,259.9,57.72 +697264,261.18,59.466 +697265,255.66,54.048 +697266,257.19,55.896 +697267,258.57,57.695 +697268,259.81,59.447 +697269,254.43,54.011 +697270,255.92,55.865 +697271,257.24,57.669 +697272,258.44,59.426 +697273,253.21,53.977 +697274,254.64,55.834 +697275,255.92,57.643 +697276,257.06,59.404 +697277,251.99,53.944 +697278,253.36,55.804 +697279,254.59,57.616 +697280,255.69,59.381 +697281,250.77,53.912 +697282,252.09,55.775 +697283,253.26,57.588 +697284,254.31,59.356 +697285,249.55,53.882 +697286,250.81,55.746 +697287,251.93,57.561 +697288,252.94,59.33 +697289,248.33,53.853 +697290,249.54,55.717 +697291,250.61,57.532 +697292,251.56,59.302 +697293,247.12,53.826 +697294,248.26,55.689 +697295,249.28,57.504 +697296,250.18,59.273 +697297,245.9,53.8 +697298,246.99,55.661 +697299,247.95,57.474 +697300,248.81,59.242 +697301,244.69,53.776 +697302,245.71,55.634 +697303,246.62,57.445 +697304,247.43,59.21 +697305,243.47,53.753 +697306,244.44,55.607 +697307,245.29,57.414 +697308,246.05,59.177 +697309,242.26,53.732 +697310,243.17,55.581 +697311,243.96,57.384 +697312,244.67,59.142 +697313,241.04,53.712 +697314,241.89,55.555 +697315,242.63,57.352 +697316,243.28,59.106 +697317,239.83,53.694 +697318,240.62,55.53 +697319,241.3,57.321 +697320,241.9,59.068 +697321,238.62,53.677 +697322,239.35,55.505 +697323,239.97,57.288 +697324,240.52,59.029 +697325,237.41,53.662 +697326,238.07,55.481 +697327,238.65,57.256 +697328,239.14,58.989 +697329,236.2,53.648 +697330,236.8,55.457 +697331,237.32,57.223 +697332,237.76,58.947 +697333,234.99,53.635 +697334,235.53,55.433 +697335,235.99,57.189 +697336,236.37,58.904 +697337,233.78,53.624 +697338,234.26,55.41 +697339,234.66,57.155 +697340,234.99,58.859 +697341,232.57,53.615 +697342,232.98,55.388 +697343,233.33,57.12 +697344,233.61,58.813 +697345,231.36,53.607 +697346,231.71,55.366 +697347,232,57.085 +697348,232.22,58.766 +697349,230.15,53.6 +697350,230.44,55.344 +697351,230.67,57.05 +697352,230.84,58.717 +697353,228.94,53.595 +697354,229.17,55.323 +697355,229.34,57.014 +697356,229.45,58.666 +697357,227.73,53.591 +697358,227.9,55.303 +697359,228.01,56.977 +697360,228.07,58.615 +697361,226.52,53.588 +697362,226.63,55.283 +697363,226.68,56.94 +697364,226.68,58.562 +697365,225.31,53.587 +697366,225.35,55.263 +697367,225.35,56.903 +697368,225.3,58.508 +697369,224.1,53.587 +697370,224.08,55.244 +697371,224.02,56.865 +697372,223.91,58.452 +697373,222.89,53.589 +697374,222.81,55.225 +697375,222.69,56.827 +697376,222.53,58.395 +697377,221.68,53.591 +697378,221.54,55.206 +697379,221.36,56.788 +697380,221.14,58.337 +697381,220.47,53.596 +697382,220.27,55.188 +697383,220.03,56.749 +697384,219.76,58.277 +697385,219.26,53.601 +697386,219,55.171 +697387,218.7,56.709 +697388,218.37,58.216 +697389,218.05,53.608 +697390,217.73,55.153 +697391,217.37,56.669 +697392,216.98,58.154 +697393,216.84,53.616 +697394,216.45,55.137 +697395,216.04,56.628 +697396,215.6,58.091 +697397,215.63,53.625 +697398,215.18,55.12 +697399,214.71,56.587 +697400,214.22,58.026 +697401,214.42,53.635 +697402,213.91,55.104 +697403,213.38,56.546 +697404,212.83,57.96 +697405,213.21,53.647 +697406,212.64,55.089 +697407,212.05,56.504 +697408,211.45,57.893 +697409,211.99,53.659 +697410,211.37,55.074 +697411,210.72,56.462 +697412,210.06,57.825 +697413,210.78,53.673 +697414,210.1,55.059 +697415,209.39,56.42 +697416,208.68,57.755 +697417,209.57,53.688 +697418,208.82,55.045 +697419,208.07,56.377 +697420,207.3,57.684 +697421,208.35,53.704 +697422,207.55,55.03 +697423,206.74,56.333 +697424,205.91,57.613 +697425,207.14,53.722 +697426,206.28,55.017 +697427,205.41,56.29 +697428,204.53,57.54 +697429,205.92,53.74 +697430,205.01,55.003 +697431,204.08,56.246 +697432,203.15,57.466 +697433,204.7,53.759 +697434,203.73,54.99 +697435,202.76,56.201 +697436,201.77,57.39 +697437,203.48,53.779 +697438,202.46,54.978 +697439,201.43,56.156 +697440,200.39,57.314 +697441,202.26,53.8 +697442,201.19,54.965 +697443,200.1,56.111 +697444,199.01,57.237 +697445,201.04,53.823 +697446,199.91,54.953 +697447,198.77,56.066 +697448,197.63,57.159 +697449,199.82,53.846 +697450,198.64,54.942 +697451,197.45,56.02 +697452,196.25,57.08 +697453,198.6,53.87 +697454,197.37,54.93 +697455,196.12,55.974 +697456,194.87,56.999 +697457,197.38,53.894 +697458,196.09,54.919 +697459,194.8,55.928 +697460,193.49,56.918 +697461,196.15,53.92 +697462,194.82,54.908 +697463,193.47,55.881 +697464,192.12,56.836 +697465,194.93,53.947 +697466,193.54,54.898 +697467,192.15,55.834 +697468,190.74,56.753 +697469,193.7,53.974 +697470,192.27,54.887 +697471,190.82,55.786 +697472,189.36,56.67 +697473,192.47,54.002 +697474,190.99,54.877 +697475,189.5,55.739 +697476,187.99,56.585 +697477,191.24,54.031 +697478,189.72,54.868 +697479,188.17,55.691 +697480,186.62,56.499 +697481,190.01,54.06 +697482,188.44,54.858 +697483,186.85,55.643 +697484,185.25,56.413 +697485,188.78,54.09 +697486,187.16,54.849 +697487,185.53,55.595 +697488,183.87,56.326 +697489,187.55,54.121 +697490,185.89,54.839 +697491,184.21,55.546 +697492,182.5,56.238 +697493,186.31,54.152 +697494,184.61,54.831 +697495,182.88,55.497 +697496,181.14,56.15 +697497,185.08,54.184 +697498,183.33,54.822 +697499,181.56,55.448 +697500,179.77,56.061 +697501,183.84,54.216 +697502,182.05,54.813 +697503,180.24,55.399 +697504,178.4,55.971 +697505,182.6,54.249 +697506,180.77,54.805 +697507,178.92,55.349 +697508,177.04,55.881 +697509,181.36,54.282 +697510,179.5,54.797 +697511,177.6,55.3 +697512,175.67,55.79 +697513,180.12,54.316 +697514,178.22,54.789 +697515,176.28,55.25 +697516,174.31,55.698 +697517,178.87,54.35 +697518,176.94,54.781 +697519,174.96,55.2 +697520,172.95,55.606 +697521,177.63,54.385 +697522,175.66,54.773 +697523,173.65,55.15 +697524,171.59,55.514 +697525,176.38,54.419 +697526,174.38,54.765 +697527,172.33,55.1 +697528,170.23,55.421 +697529,175.13,54.455 +697530,173.09,54.758 +697531,171.01,55.049 +697532,168.87,55.328 +697533,173.88,54.49 +697534,171.81,54.75 +697535,169.69,54.999 +697536,167.52,55.234 +697537,172.63,54.525 +697538,170.53,54.743 +697539,168.38,54.948 +697540,166.16,55.14 +697541,171.38,54.561 +697542,169.25,54.735 +697543,167.06,54.897 +697544,164.81,55.045 +697545,170.12,54.597 +697546,167.96,54.728 +697547,165.75,54.847 +697548,163.46,54.951 +697549,168.86,54.633 +697550,166.68,54.721 +697551,164.43,54.796 +697552,162.11,54.856 +697553,167.6,54.67 +697554,165.4,54.714 +697555,163.12,54.745 +697556,160.76,54.76 +697557,166.34,54.706 +697558,164.11,54.707 +697559,161.81,54.694 +697560,159.42,54.665 +697561,165.08,54.742 +697562,162.83,54.7 +697563,160.49,54.643 +697564,158.07,54.57 +697565,163.82,54.778 +697566,161.54,54.692 +697567,159.18,54.592 +697568,156.73,54.474 +697569,162.55,54.815 +697570,160.25,54.685 +697571,157.87,54.541 +697572,155.39,54.378 +697573,161.28,54.851 +697574,158.97,54.678 +697575,156.56,54.49 +697576,154.05,54.283 +697577,160.01,54.887 +697578,157.68,54.671 +697579,155.25,54.439 +697580,152.71,54.187 +697581,158.74,54.923 +697582,156.39,54.664 +697583,153.94,54.388 +697584,151.37,54.091 +697585,157.47,54.958 +697586,155.1,54.657 +697587,152.63,54.337 +697588,150.04,53.996 +697589,156.19,54.994 +697590,153.81,54.649 +697591,151.32,54.286 +697592,148.71,53.9 +697593,154.92,55.029 +697594,152.52,54.642 +697595,150.02,54.235 +697596,147.38,53.805 +697597,153.64,55.064 +697598,151.23,54.634 +697599,148.71,54.184 +697600,146.05,53.709 +697601,152.36,55.099 +697602,149.94,54.627 +697603,147.41,54.133 +697604,144.73,53.614 +697605,151.08,55.133 +697606,148.65,54.619 +697607,146.1,54.082 +697608,143.4,53.52 +697609,149.79,55.167 +697610,147.36,54.611 +697611,144.8,54.032 +697612,142.08,53.425 +697613,148.51,55.201 +697614,146.07,54.603 +697615,143.49,53.981 +697616,140.76,53.331 +697617,147.22,55.234 +697618,144.77,54.595 +697619,142.19,53.931 +697620,139.44,53.237 +697621,145.93,55.267 +697622,143.48,54.587 +697623,140.89,53.881 +697624,138.13,53.144 +697625,144.64,55.299 +697626,142.18,54.579 +697627,139.59,53.831 +697628,136.81,53.051 +697629,143.34,55.33 +697630,140.89,54.57 +697631,138.29,53.781 +697632,135.5,52.958 +697633,142.05,55.361 +697634,139.59,54.562 +697635,136.99,53.731 +697636,134.19,52.867 +697637,140.75,55.392 +697638,138.3,54.553 +697639,135.69,53.682 +697640,132.89,52.775 +697641,139.45,55.422 +697642,137,54.544 +697643,134.39,53.632 +697644,131.58,52.684 +697645,138.15,55.451 +697646,135.7,54.534 +697647,133.09,53.583 +697648,130.28,52.594 +697649,136.85,55.479 +697650,134.41,54.525 +697651,131.79,53.534 +697652,128.98,52.504 +697653,135.54,55.507 +697654,133.11,54.515 +697655,130.5,53.486 +697656,127.68,52.415 +697657,134.24,55.534 +697658,131.81,54.505 +697659,129.2,53.437 +697660,126.38,52.327 +697661,132.93,55.561 +697662,130.51,54.494 +697663,127.91,53.389 +697664,125.09,52.24 +697665,131.62,55.586 +697666,129.21,54.484 +697667,126.61,53.341 +697668,123.8,52.153 +697669,130.31,55.611 +697670,127.91,54.473 +697671,125.32,53.294 +697672,122.51,52.067 +697673,129,55.635 +697674,126.61,54.462 +697675,124.03,53.246 +697676,121.22,51.982 +697677,127.68,55.657 +697678,125.3,54.45 +697679,122.74,53.199 +697680,119.94,51.898 +697681,126.36,55.68 +697682,124,54.439 +697683,121.44,53.152 +697684,118.65,51.815 +697685,125.05,55.701 +697686,122.7,54.427 +697687,120.15,53.106 +697688,117.37,51.733 +697689,123.73,55.721 +697690,121.39,54.414 +697691,118.86,53.06 +697692,116.1,51.652 +697693,122.4,55.74 +697694,120.09,54.402 +697695,117.58,53.014 +697696,114.82,51.571 +697697,121.08,55.758 +697698,118.78,54.388 +697699,116.29,52.969 +697700,113.55,51.492 +697701,119.76,55.775 +697702,117.48,54.375 +697703,115,52.924 +697704,112.28,51.414 +697705,118.43,55.791 +697706,116.17,54.361 +697707,113.71,52.879 +697708,111.01,51.337 +697709,117.1,55.806 +697710,114.87,54.347 +697711,112.43,52.835 +697712,109.74,51.261 +697713,115.77,55.82 +697714,113.56,54.333 +697715,111.14,52.791 +697716,108.47,51.186 +697717,114.44,55.833 +697718,112.25,54.318 +697719,109.86,52.747 +697720,107.21,51.113 +697721,113.11,55.844 +697722,110.94,54.302 +697723,108.58,52.704 +697724,105.95,51.041 +697725,111.77,55.855 +697726,109.64,54.287 +697727,107.29,52.661 +697728,104.69,50.97 +697729,110.44,55.864 +697730,108.33,54.271 +697731,106.01,52.619 +697732,103.44,50.9 +697733,109.1,55.872 +697734,107.02,54.254 +697735,104.73,52.577 +697736,102.18,50.831 +697737,107.76,55.878 +697738,105.71,54.237 +697739,103.45,52.535 +697740,100.93,50.764 +697741,106.42,55.884 +697742,104.4,54.22 +697743,102.17,52.494 +697744,99.683,50.698 +697745,105.08,55.888 +697746,103.09,54.202 +697747,100.89,52.453 +697748,98.435,50.634 +697749,103.73,55.891 +697750,101.77,54.184 +697751,99.609,52.413 +697752,97.19,50.571 +697753,102.39,55.893 +697754,100.46,54.165 +697755,98.33,52.374 +697756,95.946,50.509 +697757,101.04,55.893 +697758,99.149,54.146 +697759,97.053,52.334 +697760,94.705,50.449 +697761,99.696,55.892 +697762,97.836,54.127 +697763,95.776,52.296 +697764,93.465,50.39 +697765,98.347,55.89 +697766,96.523,54.107 +697767,94.499,52.257 +697768,92.228,50.333 +697769,96.997,55.886 +697770,95.209,54.086 +697771,93.223,52.219 +697772,90.992,50.277 +697773,95.646,55.881 +697774,93.895,54.065 +697775,91.948,52.182 +697776,89.759,50.223 +697777,94.294,55.874 +697778,92.58,54.044 +697779,90.674,52.145 +697780,88.527,50.17 +697781,92.94,55.867 +697782,91.265,54.022 +697783,89.4,52.109 +697784,87.297,50.119 +697785,91.585,55.857 +697786,89.95,53.999 +697787,88.126,52.073 +697788,86.068,50.069 +697789,90.229,55.846 +697790,88.634,53.977 +697791,86.853,52.038 +697792,84.842,50.021 +697793,88.872,55.834 +697794,87.318,53.953 +697795,85.581,52.003 +697796,83.617,49.975 +697797,87.514,55.821 +697798,86.002,53.929 +697799,84.309,51.969 +697800,82.393,49.93 +697801,86.155,55.805 +697802,84.685,53.905 +697803,83.038,51.935 +697804,81.172,49.887 +697805,84.794,55.789 +697806,83.368,53.88 +697807,81.767,51.902 +697808,79.951,49.845 +697809,83.433,55.771 +697810,82.05,53.855 +697811,80.497,51.869 +697812,78.733,49.805 +697813,82.071,55.751 +697814,80.733,53.829 +697815,79.227,51.837 +697816,77.516,49.766 +697817,80.707,55.73 +697818,79.414,53.802 +697819,77.958,51.805 +697820,76.3,49.73 +697821,79.343,55.708 +697822,78.096,53.775 +697823,76.689,51.774 +697824,75.085,49.695 +697825,77.978,55.684 +697826,76.777,53.748 +697827,75.421,51.743 +697828,73.872,49.661 +697829,76.612,55.658 +697830,75.459,53.72 +697831,74.153,51.713 +697832,72.66,49.629 +697833,75.245,55.631 +697834,74.139,53.692 +697835,72.885,51.684 +697836,71.45,49.599 +697837,73.878,55.602 +697838,72.82,53.663 +697839,71.618,51.655 +697840,70.24,49.571 +697841,72.51,55.572 +697842,71.5,53.633 +697843,70.352,51.626 +697844,69.032,49.544 +697845,71.141,55.541 +697846,70.181,53.603 +697847,69.085,51.598 +697848,67.825,49.519 +697849,69.771,55.507 +697850,68.86,53.573 +697851,67.819,51.571 +697852,66.618,49.495 +697853,68.4,55.473 +697854,67.54,53.542 +697855,66.554,51.544 +697856,65.413,49.473 +697857,67.029,55.436 +697858,66.22,53.51 +697859,65.288,51.518 +697860,64.209,49.453 +697861,65.658,55.399 +697862,64.899,53.478 +697863,64.023,51.492 +697864,63.005,49.435 +697865,64.286,55.359 +697866,63.579,53.445 +697867,62.759,51.467 +697868,61.802,49.418 +697869,62.913,55.319 +697870,62.258,53.412 +697871,61.494,51.442 +697872,60.6,49.403 +697873,61.54,55.276 +697874,60.937,53.378 +697875,60.23,51.418 +697876,59.399,49.389 +697877,60.166,55.233 +697878,59.616,53.344 +697879,58.966,51.394 +697880,58.198,49.377 +697881,58.792,55.187 +697882,58.294,53.31 +697883,57.703,51.371 +697884,56.998,49.367 +697885,57.417,55.14 +697886,56.973,53.274 +697887,56.439,51.349 +697888,55.798,49.358 +697889,56.042,55.092 +697890,55.652,53.239 +697891,55.176,51.327 +697892,54.599,49.351 +697893,54.667,55.042 +697894,54.33,53.203 +697895,53.913,51.305 +697896,53.4,49.346 +697897,53.291,54.991 +697898,53.009,53.166 +697899,52.65,51.284 +697900,52.201,49.342 +697901,51.916,54.938 +697902,51.687,53.129 +697903,51.388,51.264 +697904,51.003,49.34 +697905,50.54,54.884 +697906,50.366,53.091 +697907,50.125,51.244 +697908,49.804,49.339 +697909,49.163,54.828 +697910,49.044,53.053 +697911,48.863,51.225 +697912,48.606,49.34 +697913,47.787,54.771 +697914,47.723,53.014 +697915,47.6,51.206 +697916,47.409,49.342 +697917,46.411,54.712 +697918,46.402,52.975 +697919,46.338,51.187 +697920,46.211,49.346 +697921,45.034,54.652 +697922,45.08,52.936 +697923,45.076,51.169 +697924,45.013,49.351 +697925,43.657,54.591 +697926,43.759,52.895 +697927,43.814,51.152 +697928,43.815,49.358 +697929,42.281,54.528 +697930,42.438,52.855 +697931,42.552,51.135 +697932,42.616,49.366 +697933,40.904,54.464 +697934,41.116,52.814 +697935,41.29,51.119 +697936,41.418,49.375 +697937,39.528,54.398 +697938,39.795,52.772 +697939,40.028,51.103 +697940,40.219,49.387 +697941,38.151,54.331 +697942,38.474,52.73 +697943,38.766,51.087 +697944,39.021,49.399 +697945,36.775,54.263 +697946,37.153,52.688 +697947,37.504,51.072 +697948,37.821,49.413 +697949,35.399,54.193 +697950,35.833,52.645 +697951,36.242,51.057 +697952,36.622,49.428 +697953,34.023,54.122 +697954,34.512,52.602 +697955,34.979,51.043 +697956,35.421,49.444 +697957,32.647,54.05 +697958,33.192,52.558 +697959,33.717,51.03 +697960,34.221,49.462 +697961,31.272,53.976 +697962,31.872,52.514 +697963,32.455,51.016 +697964,33.019,49.481 +697965,29.897,53.901 +697966,30.552,52.47 +697967,31.192,51.003 +697968,31.817,49.501 +697969,28.522,53.825 +697970,29.232,52.425 +697971,29.93,50.991 +697972,30.615,49.523 +697973,27.148,53.748 +697974,27.912,52.38 +697975,28.667,50.979 +697976,29.412,49.546 +697977,25.774,53.669 +697978,26.593,52.334 +697979,27.404,50.967 +697980,28.208,49.57 +697981,24.401,53.59 +697982,25.274,52.288 +697983,26.142,50.956 +697984,27.003,49.594 +697985,23.028,53.509 +697986,23.955,52.241 +697987,24.878,50.945 +697988,25.797,49.621 +697989,21.656,53.427 +697990,22.637,52.195 +697991,23.615,50.935 +697992,24.59,49.648 +697993,20.284,53.344 +697994,21.319,52.147 +697995,22.352,50.925 +697996,23.382,49.676 +697997,18.913,53.26 +697998,20.001,52.1 +697999,21.088,50.915 +698000,22.174,49.705 +698001,17.542,53.175 +698002,18.683,52.052 +698003,19.824,50.905 +698004,20.964,49.735 +698005,16.173,53.089 +698006,17.366,52.004 +698007,18.559,50.896 +698008,19.753,49.766 +698009,14.804,53.001 +698010,16.049,51.955 +698011,17.295,50.888 +698012,18.541,49.799 +698013,13.435,52.913 +698014,14.733,51.907 +698015,16.03,50.879 +698016,17.328,49.831 +698017,12.068,52.824 +698018,13.417,51.858 +698019,14.765,50.871 +698020,16.114,49.865 +698021,10.702,52.734 +698022,12.101,51.808 +698023,13.5,50.863 +698024,14.898,49.9 +698025,9.3359,52.643 +698026,10.786,51.759 +698027,12.234,50.856 +698028,13.681,49.935 +698029,7.9712,52.551 +698030,9.471,51.709 +698031,10.968,50.848 +698032,12.463,49.971 +698033,6.6075,52.459 +698034,8.1566,51.658 +698035,9.7016,50.841 +698036,11.244,50.008 +698037,5.2447,52.365 +698038,6.8427,51.608 +698039,8.4349,50.834 +698040,10.023,50.046 +698041,3.883,52.271 +698042,5.5291,51.557 +698043,7.1678,50.828 +698044,8.8004,50.084 +698045,2.5224,52.176 +698046,4.2161,51.507 +698047,5.9003,50.822 +698048,7.5766,50.123 +698049,1.1629,52.08 +698050,2.9036,51.455 +698051,4.6325,50.815 +698052,6.3513,50.162 +698053,359.8,51.984 +698054,1.5915,51.404 +698055,3.3642,50.81 +698056,5.1245,50.202 +698057,358.45,51.887 +698058,0.27996,51.353 +698059,2.0956,50.804 +698060,3.8961,50.243 +698061,357.09,51.79 +698062,358.97,51.301 +698063,0.82647,50.798 +698064,2.6662,50.283 +698065,355.74,51.691 +698066,357.66,51.249 +698067,359.56,50.793 +698068,1.4347,50.325 +698069,354.38,51.593 +698070,356.35,51.197 +698071,358.29,50.788 +698072,0.20159,50.366 +698073,353.03,51.494 +698074,355.04,51.145 +698075,357.02,50.783 +698076,358.97,50.409 +698077,351.68,51.394 +698078,353.73,51.093 +698079,355.75,50.778 +698080,357.73,50.451 +698081,350.33,51.294 +698082,352.42,51.04 +698083,354.47,50.773 +698084,356.49,50.494 +698085,348.98,51.193 +698086,351.11,50.988 +698087,353.2,50.768 +698088,355.25,50.537 +698089,347.64,51.092 +698090,349.81,50.935 +698091,351.93,50.764 +698092,354.01,50.58 +698093,346.29,50.991 +698094,348.5,50.883 +698095,350.66,50.759 +698096,352.77,50.623 +698097,344.95,50.89 +698098,347.2,50.83 +698099,349.38,50.755 +698100,351.52,50.666 +698101,343.61,50.788 +698102,345.89,50.777 +698103,348.11,50.751 +698104,350.28,50.71 +698105,342.27,50.686 +698106,344.59,50.725 +698107,346.84,50.746 +698108,349.03,50.754 +698109,340.93,50.584 +698110,343.28,50.672 +698111,345.56,50.742 +698112,347.78,50.797 +698113,339.59,50.482 +698114,341.98,50.619 +698115,344.29,50.738 +698116,346.52,50.841 +698117,338.26,50.379 +698118,340.68,50.566 +698119,343.01,50.734 +698120,345.27,50.884 +698121,336.92,50.277 +698122,339.37,50.513 +698123,341.73,50.729 +698124,344.01,50.928 +698125,335.59,50.174 +698126,338.07,50.46 +698127,340.46,50.725 +698128,342.76,50.971 +698129,334.26,50.072 +698130,336.77,50.408 +698131,339.18,50.721 +698132,341.5,51.015 +698133,332.94,49.97 +698134,335.47,50.355 +698135,337.9,50.717 +698136,340.24,51.058 +698137,331.61,49.867 +698138,334.17,50.302 +698139,336.62,50.712 +698140,338.97,51.1 +698141,330.29,49.765 +698142,332.87,50.25 +698143,335.34,50.708 +698144,337.71,51.143 +698145,328.96,49.663 +698146,331.58,50.197 +698147,334.06,50.703 +698148,336.44,51.185 +698149,327.64,49.562 +698150,330.28,50.145 +698151,332.78,50.699 +698152,335.17,51.227 +698153,326.33,49.46 +698154,328.98,50.092 +698155,331.5,50.694 +698156,333.9,51.269 +698157,325.01,49.359 +698158,327.69,50.04 +698159,330.22,50.689 +698160,332.63,51.31 +698161,323.7,49.258 +698162,326.39,49.988 +698163,328.94,50.684 +698164,331.35,51.35 +698165,322.38,49.158 +698166,325.1,49.936 +698167,327.66,50.679 +698168,330.08,51.391 +698169,321.07,49.058 +698170,323.81,49.885 +698171,326.37,50.674 +698172,328.8,51.43 +698173,319.77,48.958 +698174,322.51,49.833 +698175,325.09,50.669 +698176,327.52,51.469 +698177,318.46,48.859 +698178,321.22,49.782 +698179,323.8,50.663 +698180,326.24,51.508 +698181,317.16,48.761 +698182,319.93,49.731 +698183,322.52,50.657 +698184,324.95,51.546 +698185,315.85,48.663 +698186,318.64,49.68 +698187,321.23,50.651 +698188,323.67,51.583 +698189,314.56,48.565 +698190,317.35,49.629 +698191,319.95,50.645 +698192,322.38,51.62 +698193,313.26,48.469 +698194,316.06,49.579 +698195,318.66,50.639 +698196,321.09,51.656 +698197,311.96,48.373 +698198,314.77,49.529 +698199,317.37,50.632 +698200,319.8,51.691 +698201,310.67,48.278 +698202,313.49,49.479 +698203,316.09,50.626 +698204,318.51,51.725 +698205,309.38,48.183 +698206,312.2,49.429 +698207,314.8,50.619 +698208,317.21,51.759 +698209,308.09,48.09 +698210,310.91,49.38 +698211,313.51,50.611 +698212,315.92,51.792 +698213,306.81,47.997 +698214,309.63,49.331 +698215,312.22,50.604 +698216,314.62,51.824 +698217,305.52,47.905 +698218,308.35,49.282 +698219,310.93,50.596 +698220,313.32,51.855 +698221,304.24,47.814 +698222,307.06,49.234 +698223,309.64,50.588 +698224,312.02,51.885 +698225,302.96,47.725 +698226,305.78,49.186 +698227,308.35,50.579 +698228,310.71,51.914 +698229,301.69,47.636 +698230,304.5,49.138 +698231,307.06,50.57 +698232,309.41,51.942 +698233,300.41,47.548 +698234,303.22,49.091 +698235,305.76,50.561 +698236,308.1,51.969 +698237,299.14,47.461 +698238,301.94,49.044 +698239,304.47,50.552 +698240,306.79,51.996 +698241,297.87,47.376 +698242,300.66,48.997 +698243,303.18,50.542 +698244,305.48,52.021 +698245,296.61,47.291 +698246,299.38,48.951 +698247,301.88,50.532 +698248,304.17,52.045 +698249,295.34,47.208 +698250,298.1,48.905 +698251,300.59,50.521 +698252,302.86,52.068 +698253,294.08,47.126 +698254,296.82,48.86 +698255,299.29,50.511 +698256,301.54,52.089 +698257,292.82,47.045 +698258,295.55,48.815 +698259,298,50.499 +698260,300.23,52.11 +698261,291.56,46.966 +698262,294.27,48.77 +698263,296.7,50.488 +698264,298.91,52.129 +698265,290.3,46.888 +698266,293,48.726 +698267,295.4,50.476 +698268,297.59,52.148 +698269,289.05,46.811 +698270,291.72,48.683 +698271,294.11,50.463 +698272,296.27,52.165 +698273,287.8,46.736 +698274,290.45,48.64 +698275,292.81,50.45 +698276,294.94,52.18 +698277,286.55,46.662 +698278,289.18,48.597 +698279,291.51,50.437 +698280,293.62,52.195 +698281,285.3,46.589 +698282,287.9,48.555 +698283,290.21,50.423 +698284,292.29,52.208 +698285,284.06,46.518 +698286,286.63,48.513 +698287,288.91,50.409 +698288,290.96,52.22 +698289,282.82,46.449 +698290,285.36,48.472 +698291,287.61,50.394 +698292,289.64,52.23 +698293,281.58,46.381 +698294,284.09,48.432 +698295,286.31,50.379 +698296,288.31,52.239 +698297,280.34,46.315 +698298,282.82,48.391 +698299,285.01,50.364 +698300,286.97,52.247 +698301,279.11,46.25 +698302,281.55,48.352 +698303,283.71,50.348 +698304,285.64,52.253 +698305,277.87,46.187 +698306,280.29,48.313 +698307,282.41,50.332 +698308,284.31,52.258 +698309,276.64,46.125 +698310,279.02,48.274 +698311,281.11,50.315 +698312,282.97,52.262 +698313,275.41,46.066 +698314,277.75,48.236 +698315,279.81,50.297 +698316,281.63,52.264 +698317,274.18,46.007 +698318,276.49,48.199 +698319,278.5,50.279 +698320,280.3,52.264 +698321,272.96,45.951 +698322,275.22,48.162 +698323,277.2,50.261 +698324,278.96,52.263 +698325,271.74,45.896 +698326,273.96,48.126 +698327,275.9,50.242 +698328,277.62,52.261 +698329,270.51,45.843 +698330,272.69,48.09 +698331,274.59,50.223 +698332,276.27,52.257 +698333,269.29,45.792 +698334,271.43,48.055 +698335,273.29,50.203 +698336,274.93,52.252 +698337,268.08,45.743 +698338,270.17,48.02 +698339,271.98,50.182 +698340,273.59,52.245 +698341,266.86,45.695 +698342,268.91,47.986 +698343,270.68,50.161 +698344,272.24,52.236 +698345,265.65,45.649 +698346,267.64,47.953 +698347,269.37,50.14 +698348,270.89,52.226 +698349,264.43,45.605 +698350,266.38,47.92 +698351,268.07,50.118 +698352,269.55,52.215 +698353,263.22,45.563 +698354,265.12,47.888 +698355,266.76,50.095 +698356,268.2,52.202 +698357,262.02,45.523 +698358,263.86,47.857 +698359,265.45,50.072 +698360,266.85,52.187 +698361,260.81,45.485 +698362,262.6,47.826 +698363,264.15,50.049 +698364,265.5,52.171 +698365,259.6,45.448 +698366,261.34,47.795 +698367,262.84,50.025 +698368,264.15,52.153 +698369,258.4,45.413 +698370,260.09,47.766 +698371,261.53,50 +698372,262.8,52.133 +698373,257.19,45.381 +698374,258.83,47.736 +698375,260.23,49.975 +698376,261.44,52.112 +698377,255.99,45.35 +698378,257.57,47.708 +698379,258.92,49.949 +698380,260.09,52.089 +698381,254.79,45.321 +698382,256.31,47.68 +698383,257.61,49.923 +698384,258.73,52.065 +698385,253.59,45.294 +698386,255.06,47.653 +698387,256.3,49.896 +698388,257.38,52.039 +698389,252.4,45.268 +698390,253.8,47.626 +698391,254.99,49.869 +698392,256.02,52.011 +698393,251.2,45.245 +698394,252.55,47.6 +698395,253.69,49.841 +698396,254.67,51.982 +698397,250,45.224 +698398,251.29,47.575 +698399,252.38,49.812 +698400,253.31,51.951 +698401,248.81,45.204 +698402,250.04,47.55 +698403,251.07,49.783 +698404,251.95,51.918 +698405,247.62,45.187 +698406,248.78,47.526 +698407,249.76,49.754 +698408,250.59,51.884 +698409,246.42,45.171 +698410,247.53,47.502 +698411,248.45,49.723 +698412,249.23,51.848 +698413,245.23,45.157 +698414,246.27,47.479 +698415,247.14,49.693 +698416,247.87,51.811 +698417,244.04,45.145 +698418,245.02,47.457 +698419,245.83,49.662 +698420,246.51,51.772 +698421,242.85,45.135 +698422,243.77,47.436 +698423,244.52,49.63 +698424,245.15,51.731 +698425,241.66,45.127 +698426,242.51,47.414 +698427,243.21,49.598 +698428,243.79,51.689 +698429,240.47,45.12 +698430,241.26,47.394 +698431,241.9,49.565 +698432,242.43,51.645 +698433,239.29,45.116 +698434,240.01,47.374 +698435,240.59,49.531 +698436,241.07,51.599 +698437,238.1,45.113 +698438,238.76,47.355 +698439,239.28,49.497 +698440,239.7,51.552 +698441,236.91,45.112 +698442,237.5,47.336 +698443,237.97,49.463 +698444,238.34,51.503 +698445,235.73,45.113 +698446,236.25,47.319 +698447,236.66,49.428 +698448,236.98,51.453 +698449,234.54,45.116 +698450,235,47.301 +698451,235.35,49.393 +698452,235.62,51.401 +698453,233.35,45.121 +698454,233.75,47.284 +698455,234.04,49.357 +698456,234.25,51.347 +698457,232.17,45.127 +698458,232.5,47.268 +698459,232.73,49.32 +698460,232.89,51.292 +698461,230.98,45.135 +698462,231.25,47.253 +698463,231.42,49.283 +698464,231.53,51.235 +698465,229.8,45.144 +698466,229.99,47.237 +698467,230.11,49.246 +698468,230.16,51.177 +698469,228.61,45.156 +698470,228.74,47.223 +698471,228.8,49.207 +698472,228.8,51.117 +698473,227.42,45.169 +698474,227.49,47.209 +698475,227.49,49.169 +698476,227.43,51.056 +698477,226.24,45.184 +698478,226.24,47.196 +698479,226.18,49.13 +698480,226.07,50.993 +698481,225.05,45.2 +698482,224.99,47.183 +698483,224.87,49.09 +698484,224.71,50.929 +698485,223.86,45.218 +698486,223.74,47.171 +698487,223.56,49.05 +698488,223.34,50.863 +698489,222.68,45.238 +698490,222.49,47.159 +698491,222.25,49.01 +698492,221.98,50.796 +698493,221.49,45.259 +698494,221.24,47.148 +698495,220.94,48.969 +698496,220.62,50.727 +698497,220.3,45.281 +698498,219.99,47.137 +698499,219.64,48.927 +698500,219.25,50.657 +698501,219.12,45.306 +698502,218.74,47.127 +698503,218.33,48.886 +698504,217.89,50.585 +698505,217.93,45.331 +698506,217.49,47.118 +698507,217.02,48.843 +698508,216.53,50.512 +698509,216.74,45.358 +698510,216.23,47.109 +698511,215.71,48.801 +698512,215.17,50.438 +698513,215.55,45.387 +698514,214.98,47.1 +698515,214.4,48.757 +698516,213.8,50.362 +698517,214.36,45.417 +698518,213.73,47.092 +698519,213.09,48.714 +698520,212.44,50.285 +698521,213.17,45.448 +698522,212.48,47.084 +698523,211.78,48.67 +698524,211.08,50.207 +698525,211.97,45.48 +698526,211.23,47.077 +698527,210.48,48.625 +698528,209.72,50.127 +698529,210.78,45.514 +698530,209.98,47.071 +698531,209.17,48.58 +698532,208.36,50.046 +698533,209.59,45.549 +698534,208.73,47.064 +698535,207.86,48.535 +698536,207,49.964 +698537,208.39,45.585 +698538,207.47,47.059 +698539,206.56,48.49 +698540,205.64,49.88 +698541,207.2,45.623 +698542,206.22,47.053 +698543,205.25,48.444 +698544,204.28,49.795 +698545,206,45.662 +698546,204.97,47.048 +698547,203.94,48.397 +698548,202.93,49.71 +698549,204.8,45.701 +698550,203.72,47.044 +698551,202.64,48.35 +698552,201.57,49.622 +698553,203.6,45.742 +698554,202.46,47.04 +698555,201.33,48.303 +698556,200.21,49.534 +698557,202.4,45.784 +698558,201.21,47.036 +698559,200.03,48.256 +698560,198.86,49.445 +698561,201.2,45.827 +698562,199.96,47.032 +698563,198.72,48.208 +698564,197.5,49.355 +698565,200,45.871 +698566,198.7,47.029 +698567,197.42,48.16 +698568,196.15,49.263 +698569,198.8,45.915 +698570,197.45,47.027 +698571,196.12,48.112 +698572,194.8,49.171 +698573,197.59,45.961 +698574,196.19,47.025 +698575,194.81,48.063 +698576,193.44,49.077 +698577,196.38,46.007 +698578,194.94,47.023 +698579,193.51,48.015 +698580,192.09,48.983 +698581,195.18,46.055 +698582,193.68,47.021 +698583,192.21,47.965 +698584,190.74,48.888 +698585,193.97,46.103 +698586,192.43,47.02 +698587,190.91,47.916 +698588,189.39,48.791 +698589,192.75,46.152 +698590,191.17,47.018 +698591,189.6,47.866 +698592,188.04,48.694 +698593,191.54,46.201 +698594,189.92,47.018 +698595,188.3,47.816 +698596,186.7,48.596 +698597,190.33,46.251 +698598,188.66,47.017 +698599,187,47.766 +698600,185.35,48.498 +698601,189.11,46.302 +698602,187.4,47.017 +698603,185.7,47.716 +698604,184.01,48.398 +698605,187.89,46.353 +698606,186.15,47.017 +698607,184.4,47.666 +698608,182.66,48.298 +698609,186.68,46.405 +698610,184.89,47.017 +698611,183.1,47.615 +698612,181.32,48.197 +698613,185.46,46.458 +698614,183.63,47.018 +698615,181.81,47.564 +698616,179.98,48.096 +698617,184.23,46.511 +698618,182.37,47.018 +698619,180.51,47.513 +698620,178.64,47.994 +698621,183.01,46.564 +698622,181.11,47.019 +698623,179.21,47.462 +698624,177.3,47.891 +698625,181.78,46.617 +698626,179.85,47.02 +698627,177.91,47.411 +698628,175.96,47.788 +698629,180.56,46.671 +698630,178.59,47.021 +698631,176.62,47.359 +698632,174.63,47.684 +698633,179.33,46.726 +698634,177.33,47.023 +698635,175.32,47.308 +698636,173.29,47.579 +698637,178.1,46.78 +698638,176.07,47.024 +698639,174.03,47.256 +698640,171.96,47.475 +698641,176.86,46.835 +698642,174.81,47.026 +698643,172.73,47.204 +698644,170.63,47.37 +698645,175.63,46.89 +698646,173.55,47.027 +698647,171.44,47.153 +698648,169.3,47.264 +698649,174.39,46.945 +698650,172.29,47.029 +698651,170.15,47.101 +698652,167.97,47.158 +698653,173.15,47 +698654,171.02,47.031 +698655,168.85,47.049 +698656,166.64,47.052 +698657,171.91,47.055 +698658,169.76,47.033 +698659,167.56,46.997 +698660,165.32,46.946 +698661,170.67,47.11 +698662,168.5,47.035 +698663,166.27,46.945 +698664,163.99,46.84 +698665,169.43,47.165 +698666,167.23,47.037 +698667,164.98,46.894 +698668,162.67,46.733 +698669,168.18,47.22 +698670,165.97,47.039 +698671,163.69,46.842 +698672,161.35,46.626 +698673,166.93,47.275 +698674,164.7,47.041 +698675,162.4,46.79 +698676,160.03,46.52 +698677,165.69,47.329 +698678,163.43,47.043 +698679,161.11,46.738 +698680,158.72,46.413 +698681,164.43,47.384 +698682,162.17,47.045 +698683,159.83,46.687 +698684,157.4,46.306 +698685,163.18,47.438 +698686,160.9,47.047 +698687,158.54,46.635 +698688,156.09,46.2 +698689,161.93,47.492 +698690,159.63,47.049 +698691,157.25,46.584 +698692,154.78,46.093 +698693,160.67,47.546 +698694,158.36,47.051 +698695,155.97,46.532 +698696,153.47,45.987 +698697,159.41,47.599 +698698,157.1,47.053 +698699,154.68,46.481 +698700,152.16,45.88 +698701,158.15,47.652 +698702,155.83,47.055 +698703,153.4,46.43 +698704,150.86,45.774 +698705,156.89,47.705 +698706,154.56,47.057 +698707,152.12,46.379 +698708,149.55,45.669 +698709,155.62,47.757 +698710,153.29,47.058 +698711,150.83,46.328 +698712,148.25,45.563 +698713,154.36,47.808 +698714,152.01,47.06 +698715,149.55,46.278 +698716,146.95,45.458 +698717,153.09,47.859 +698718,150.74,47.061 +698719,148.27,46.227 +698720,145.66,45.354 +698721,151.82,47.91 +698722,149.47,47.062 +698723,146.99,46.177 +698724,144.36,45.25 +698725,150.55,47.96 +698726,148.2,47.064 +698727,145.71,46.127 +698728,143.07,45.146 +698729,149.27,48.009 +698730,146.92,47.064 +698731,144.43,46.078 +698732,141.78,45.043 +698733,148,48.058 +698734,145.65,47.065 +698735,143.16,46.028 +698736,140.49,44.941 +698737,146.72,48.105 +698738,144.37,47.066 +698739,141.88,45.979 +698740,139.2,44.839 +698741,145.44,48.152 +698742,143.1,47.066 +698743,140.6,45.93 +698744,137.92,44.738 +698745,144.16,48.199 +698746,141.82,47.066 +698747,139.33,45.881 +698748,136.64,44.638 +698749,142.87,48.244 +698750,140.55,47.066 +698751,138.05,45.833 +698752,135.36,44.538 +698753,141.59,48.289 +698754,139.27,47.066 +698755,136.78,45.785 +698756,134.08,44.44 +698757,140.3,48.332 +698758,137.99,47.065 +698759,135.51,45.737 +698760,132.8,44.342 +698761,139.01,48.375 +698762,136.71,47.064 +698763,134.23,45.69 +698764,131.53,44.245 +698765,137.72,48.417 +698766,135.44,47.063 +698767,132.96,45.643 +698768,130.26,44.149 +698769,136.43,48.458 +698770,134.16,47.061 +698771,131.69,45.597 +698772,128.99,44.054 +698773,135.14,48.498 +698774,132.88,47.059 +698775,130.42,45.551 +698776,127.73,43.96 +698777,133.84,48.537 +698778,131.6,47.057 +698779,129.15,45.505 +698780,126.46,43.868 +698781,132.55,48.574 +698782,130.32,47.055 +698783,127.88,45.459 +698784,125.2,43.776 +698785,131.25,48.611 +698786,129.03,47.052 +698787,126.62,45.415 +698788,123.94,43.686 +698789,129.95,48.646 +698790,127.75,47.049 +698791,125.35,45.37 +698792,122.69,43.596 +698793,128.65,48.681 +698794,126.47,47.046 +698795,124.08,45.326 +698796,121.43,43.509 +698797,127.34,48.714 +698798,125.19,47.042 +698799,122.82,45.282 +698800,120.18,43.422 +698801,126.04,48.746 +698802,123.9,47.038 +698803,121.55,45.239 +698804,118.93,43.337 +698805,124.73,48.777 +698806,122.62,47.033 +698807,120.29,45.197 +698808,117.68,43.253 +698809,123.42,48.806 +698810,121.33,47.028 +698811,119.03,45.155 +698812,116.44,43.17 +698813,122.11,48.834 +698814,120.05,47.023 +698815,117.76,45.113 +698816,115.19,43.089 +698817,120.8,48.861 +698818,118.76,47.017 +698819,116.5,45.072 +698820,113.95,43.01 +698821,119.49,48.887 +698822,117.48,47.011 +698823,115.24,45.032 +698824,112.71,42.932 +698825,118.18,48.911 +698826,116.19,47.004 +698827,113.98,44.992 +698828,111.48,42.855 +698829,116.86,48.934 +698830,114.9,46.997 +698831,112.72,44.952 +698832,110.24,42.78 +698833,115.54,48.955 +698834,113.62,46.989 +698835,111.46,44.913 +698836,109.01,42.707 +698837,114.23,48.975 +698838,112.33,46.981 +698839,110.2,44.875 +698840,107.78,42.636 +698841,112.91,48.994 +698842,111.04,46.973 +698843,108.95,44.837 +698844,106.55,42.566 +698845,111.59,49.011 +698846,109.75,46.964 +698847,107.69,44.8 +698848,105.33,42.498 +698849,110.26,49.027 +698850,108.46,46.954 +698851,106.43,44.764 +698852,104.11,42.432 +698853,108.94,49.041 +698854,107.17,46.944 +698855,105.18,44.728 +698856,102.89,42.367 +698857,107.62,49.053 +698858,105.88,46.934 +698859,103.92,44.692 +698860,101.67,42.305 +698861,106.29,49.064 +698862,104.59,46.923 +698863,102.67,44.658 +698864,100.45,42.244 +698865,104.96,49.074 +698866,103.3,46.912 +698867,101.42,44.624 +698868,99.235,42.185 +698869,103.64,49.082 +698870,102.01,46.9 +698871,100.16,44.59 +698872,98.022,42.128 +698873,102.31,49.088 +698874,100.72,46.887 +698875,98.912,44.557 +698876,96.811,42.073 +698877,100.98,49.093 +698878,99.427,46.874 +698879,97.66,44.525 +698880,95.602,42.02 +698881,99.645,49.096 +698882,98.135,46.861 +698883,96.409,44.494 +698884,94.395,41.969 +698885,98.312,49.098 +698886,96.842,46.847 +698887,95.159,44.463 +698888,93.19,41.92 +698889,96.979,49.098 +698890,95.549,46.832 +698891,93.909,44.433 +698892,91.987,41.873 +698893,95.645,49.096 +698894,94.256,46.817 +698895,92.66,44.404 +698896,90.785,41.828 +698897,94.309,49.092 +698898,92.963,46.802 +698899,91.411,44.375 +698900,89.585,41.785 +698901,92.973,49.087 +698902,91.669,46.785 +698903,90.163,44.347 +698904,88.387,41.744 +698905,91.636,49.081 +698906,90.375,46.769 +698907,88.916,44.32 +698908,87.19,41.705 +698909,90.298,49.072 +698910,89.08,46.751 +698911,87.668,44.293 +698912,85.995,41.668 +698913,88.96,49.062 +698914,87.786,46.734 +698915,86.422,44.267 +698916,84.802,41.634 +698917,87.62,49.05 +698918,86.491,46.715 +698919,85.176,44.242 +698920,83.609,41.601 +698921,86.28,49.037 +698922,85.196,46.696 +698923,83.93,44.217 +698924,82.419,41.571 +698925,84.939,49.021 +698926,83.901,46.677 +698927,82.685,44.193 +698928,81.229,41.543 +698929,83.597,49.004 +698930,82.605,46.657 +698931,81.44,44.17 +698932,80.041,41.517 +698933,82.255,48.986 +698934,81.31,46.636 +698935,80.195,44.148 +698936,78.854,41.493 +698937,80.912,48.965 +698938,80.014,46.615 +698939,78.951,44.126 +698940,77.669,41.471 +698941,79.569,48.943 +698942,78.718,46.593 +698943,77.708,44.105 +698944,76.484,41.452 +698945,78.225,48.919 +698946,77.422,46.571 +698947,76.464,44.085 +698948,75.301,41.434 +698949,76.881,48.894 +698950,76.125,46.548 +698951,75.221,44.065 +698952,74.118,41.419 +698953,75.536,48.866 +698954,74.829,46.524 +698955,73.979,44.046 +698956,72.937,41.406 +698957,74.19,48.837 +698958,73.532,46.5 +698959,72.737,44.028 +698960,71.756,41.395 +698961,72.845,48.806 +698962,72.236,46.475 +698963,71.495,44.011 +698964,70.576,41.386 +698965,71.498,48.774 +698966,70.939,46.45 +698967,70.253,43.994 +698968,69.397,41.38 +698969,70.152,48.74 +698970,69.642,46.424 +698971,69.011,43.978 +698972,68.218,41.375 +698973,68.805,48.704 +698974,68.346,46.398 +698975,67.77,43.963 +698976,67.04,41.373 +698977,67.458,48.666 +698978,67.049,46.371 +698979,66.529,43.948 +698980,65.863,41.373 +698981,66.111,48.626 +698982,65.752,46.344 +698983,65.288,43.934 +698984,64.686,41.374 +698985,64.763,48.585 +698986,64.455,46.316 +698987,64.048,43.921 +698988,63.509,41.378 +698989,63.416,48.542 +698990,63.158,46.287 +698991,62.807,43.908 +698992,62.333,41.384 +698993,62.068,48.498 +698994,61.861,46.258 +698995,61.567,43.897 +698996,61.157,41.392 +698997,60.72,48.451 +698998,60.564,46.228 +698999,60.327,43.886 +699000,59.982,41.403 +699001,59.372,48.403 +699002,59.268,46.198 +699003,59.087,43.875 +699004,58.806,41.415 +699005,58.024,48.354 +699006,57.971,46.167 +699007,57.847,43.865 +699008,57.63,41.429 +699009,56.676,48.303 +699010,56.674,46.136 +699011,56.607,43.856 +699012,56.455,41.445 +699013,55.328,48.25 +699014,55.377,46.104 +699015,55.367,43.848 +699016,55.279,41.463 +699017,53.98,48.195 +699018,54.081,46.072 +699019,54.128,43.84 +699020,54.104,41.483 +699021,52.633,48.139 +699022,52.785,46.039 +699023,52.888,43.833 +699024,52.928,41.505 +699025,51.285,48.081 +699026,51.488,46.006 +699027,51.648,43.827 +699028,51.752,41.529 +699029,49.938,48.022 +699030,50.192,45.972 +699031,50.409,43.821 +699032,50.575,41.555 +699033,48.591,47.96 +699034,48.896,45.937 +699035,49.169,43.816 +699036,49.398,41.582 +699037,47.244,47.898 +699038,47.601,45.902 +699039,47.929,43.811 +699040,48.221,41.611 +699041,45.897,47.834 +699042,46.305,45.867 +699043,46.689,43.808 +699044,47.043,41.643 +699045,44.551,47.768 +699046,45.01,45.831 +699047,45.45,43.804 +699048,45.865,41.675 +699049,43.205,47.701 +699050,43.714,45.795 +699051,44.21,43.802 +699052,44.686,41.71 +699053,41.86,47.632 +699054,42.42,45.758 +699055,42.97,43.8 +699056,43.506,41.746 +699057,40.515,47.562 +699058,41.125,45.721 +699059,41.729,43.798 +699060,42.325,41.784 +699061,39.17,47.49 +699062,39.83,45.683 +699063,40.489,43.797 +699064,41.144,41.824 +699065,37.826,47.417 +699066,38.536,45.645 +699067,39.249,43.797 +699068,39.962,41.865 +699069,36.482,47.342 +699070,37.242,45.606 +699071,38.008,43.797 +699072,38.779,41.907 +699073,35.14,47.266 +699074,35.949,45.567 +699075,36.767,43.798 +699076,37.595,41.952 +699077,33.797,47.189 +699078,34.656,45.528 +699079,35.526,43.799 +699080,36.41,41.997 +699081,32.456,47.11 +699082,33.363,45.488 +699083,34.285,43.801 +699084,35.224,42.044 +699085,31.115,47.03 +699086,32.07,45.448 +699087,33.043,43.804 +699088,34.037,42.093 +699089,29.774,46.949 +699090,30.778,45.407 +699091,31.801,43.806 +699092,32.848,42.143 +699093,28.435,46.866 +699094,29.486,45.366 +699095,30.559,43.81 +699096,31.659,42.194 +699097,27.096,46.783 +699098,28.194,45.324 +699099,29.317,43.814 +699100,30.468,42.246 +699101,25.758,46.697 +699102,26.903,45.283 +699103,28.075,43.818 +699104,29.276,42.3 +699105,24.421,46.611 +699106,25.613,45.241 +699107,26.832,43.823 +699108,28.082,42.354 +699109,23.085,46.524 +699110,24.322,45.198 +699111,25.588,43.828 +699112,26.888,42.41 +699113,21.75,46.435 +699114,23.032,45.155 +699115,24.345,43.834 +699116,25.691,42.468 +699117,20.416,46.345 +699118,21.743,45.112 +699119,23.101,43.84 +699120,24.494,42.526 +699121,19.083,46.254 +699122,20.454,45.069 +699123,21.857,43.846 +699124,23.294,42.585 +699125,17.75,46.163 +699126,19.165,45.025 +699127,20.612,43.853 +699128,22.094,42.645 +699129,16.419,46.07 +699130,17.877,44.981 +699131,19.367,43.86 +699132,20.891,42.706 +699133,15.089,45.976 +699134,16.59,44.937 +699135,18.122,43.868 +699136,19.688,42.768 +699137,13.761,45.881 +699138,15.303,44.893 +699139,16.876,43.876 +699140,18.482,42.831 +699141,12.433,45.785 +699142,14.016,44.848 +699143,15.629,43.884 +699144,17.275,42.894 +699145,11.106,45.689 +699146,12.73,44.803 +699147,14.383,43.893 +699148,16.066,42.959 +699149,9.7812,45.591 +699150,11.445,44.758 +699151,13.136,43.902 +699152,14.856,43.024 +699153,8.4573,45.493 +699154,10.16,44.713 +699155,11.888,43.911 +699156,13.643,43.089 +699157,7.1347,45.394 +699158,8.8757,44.667 +699159,10.64,43.921 +699160,12.429,43.156 +699161,5.8134,45.294 +699162,7.592,44.621 +699163,9.3915,43.931 +699164,11.214,43.222 +699165,4.4935,45.193 +699166,6.3088,44.576 +699167,8.1425,43.941 +699168,9.996,43.29 +699169,3.175,45.092 +699170,5.0262,44.53 +699171,6.893,43.951 +699172,8.7766,43.358 +699173,1.8579,44.99 +699174,3.7441,44.484 +699175,5.643,43.962 +699176,7.5555,43.426 +699177,0.54233,44.888 +699178,2.4627,44.437 +699179,4.3925,43.973 +699180,6.3324,43.495 +699181,359.23,44.785 +699182,1.182,44.391 +699183,3.1415,43.984 +699184,5.1076,43.564 +699185,357.92,44.681 +699186,359.9,44.345 +699187,1.8899,43.995 +699188,3.8808,43.633 +699189,356.6,44.577 +699190,358.62,44.298 +699191,0.63788,44.006 +699192,2.6522,43.703 +699193,355.3,44.473 +699194,357.34,44.252 +699195,359.39,44.018 +699196,1.4217,43.773 +699197,353.99,44.368 +699198,356.07,44.205 +699199,358.13,44.029 +699200,0.18926,43.843 +699201,352.68,44.263 +699202,354.79,44.158 +699203,356.88,44.041 +699204,358.95,43.913 +699205,351.38,44.158 +699206,353.51,44.112 +699207,355.62,44.053 +699208,357.72,43.983 +699209,350.07,44.052 +699210,352.23,44.065 +699211,354.37,44.065 +699212,356.48,44.053 +699213,348.77,43.946 +699214,350.96,44.018 +699215,353.11,44.077 +699216,355.24,44.123 +699217,347.47,43.84 +699218,349.68,43.972 +699219,351.86,44.089 +699220,354,44.194 +699221,346.18,43.734 +699222,348.41,43.925 +699223,350.6,44.101 +699224,352.75,44.264 +699225,344.88,43.628 +699226,347.14,43.879 +699227,349.34,44.114 +699228,351.51,44.334 +699229,343.59,43.522 +699230,345.86,43.833 +699231,348.09,44.126 +699232,350.26,44.403 +699233,342.3,43.416 +699234,344.59,43.786 +699235,346.83,44.138 +699236,349.01,44.473 +699237,341.01,43.309 +699238,343.32,43.74 +699239,345.57,44.15 +699240,347.76,44.542 +699241,339.72,43.203 +699242,342.05,43.694 +699243,344.31,44.163 +699244,346.51,44.611 +699245,338.43,43.098 +699246,340.78,43.648 +699247,343.05,44.175 +699248,345.25,44.68 +699249,337.15,42.992 +699250,339.51,43.602 +699251,341.79,44.187 +699252,343.99,44.748 +699253,335.86,42.887 +699254,338.24,43.557 +699255,340.53,44.199 +699256,342.73,44.815 +699257,334.58,42.781 +699258,336.97,43.511 +699259,339.27,44.211 +699260,341.47,44.883 +699261,333.31,42.677 +699262,335.71,43.466 +699263,338,44.223 +699264,340.21,44.949 +699265,332.03,42.572 +699266,334.44,43.421 +699267,336.74,44.235 +699268,338.95,45.016 +699269,330.76,42.468 +699270,333.18,43.377 +699271,335.48,44.246 +699272,337.68,45.081 +699273,329.48,42.365 +699274,331.91,43.332 +699275,334.21,44.258 +699276,336.41,45.146 +699277,328.21,42.262 +699278,330.65,43.288 +699279,332.95,44.269 +699280,335.14,45.21 +699281,326.95,42.16 +699282,329.38,43.244 +699283,331.68,44.28 +699284,333.87,45.274 +699285,325.68,42.058 +699286,328.12,43.2 +699287,330.42,44.291 +699288,332.59,45.337 +699289,324.42,41.957 +699290,326.86,43.157 +699291,329.15,44.302 +699292,331.32,45.399 +699293,323.16,41.857 +699294,325.6,43.114 +699295,327.89,44.313 +699296,330.04,45.46 +699297,321.9,41.758 +699298,324.34,43.071 +699299,326.62,44.323 +699300,328.76,45.521 +699301,320.64,41.659 +699302,323.08,43.029 +699303,325.35,44.334 +699304,327.48,45.58 +699305,319.39,41.562 +699306,321.82,42.987 +699307,324.08,44.344 +699308,326.2,45.639 +699309,318.13,41.465 +699310,320.56,42.946 +699311,322.81,44.353 +699312,324.91,45.696 +699313,316.88,41.369 +699314,319.3,42.904 +699315,321.54,44.363 +699316,323.63,45.753 +699317,315.63,41.275 +699318,318.05,42.864 +699319,320.27,44.372 +699320,322.34,45.809 +699321,314.39,41.181 +699322,316.79,42.823 +699323,319,44.381 +699324,321.05,45.863 +699325,313.14,41.089 +699326,315.54,42.784 +699327,317.73,44.389 +699328,319.76,45.917 +699329,311.9,40.997 +699330,314.28,42.744 +699331,316.46,44.397 +699332,318.47,45.969 +699333,310.66,40.907 +699334,313.03,42.705 +699335,315.19,44.405 +699336,317.17,46.02 +699337,309.43,40.819 +699338,311.78,42.667 +699339,313.91,44.413 +699340,315.88,46.07 +699341,308.19,40.731 +699342,310.52,42.629 +699343,312.64,44.42 +699344,314.58,46.119 +699345,306.96,40.645 +699346,309.27,42.592 +699347,311.37,44.427 +699348,313.28,46.167 +699349,305.73,40.56 +699350,308.02,42.555 +699351,310.09,44.433 +699352,311.98,46.213 +699353,304.5,40.477 +699354,306.77,42.518 +699355,308.82,44.439 +699356,310.68,46.258 +699357,303.27,40.396 +699358,305.52,42.483 +699359,307.54,44.445 +699360,309.38,46.302 +699361,302.05,40.315 +699362,304.27,42.447 +699363,306.26,44.45 +699364,308.07,46.344 +699365,300.83,40.237 +699366,303.03,42.413 +699367,304.99,44.455 +699368,306.77,46.385 +699369,299.61,40.16 +699370,301.78,42.379 +699371,303.71,44.46 +699372,305.46,46.425 +699373,298.39,40.085 +699374,300.53,42.345 +699375,302.43,44.464 +699376,304.15,46.463 +699377,297.17,40.011 +699378,299.29,42.312 +699379,301.16,44.467 +699380,302.84,46.5 +699381,295.96,39.939 +699382,298.04,42.28 +699383,299.88,44.47 +699384,301.53,46.535 +699385,294.75,39.869 +699386,296.8,42.248 +699387,298.6,44.473 +699388,300.22,46.569 +699389,293.54,39.801 +699390,295.55,42.217 +699391,297.32,44.475 +699392,298.91,46.601 +699393,292.33,39.735 +699394,294.31,42.187 +699395,296.04,44.477 +699396,297.59,46.632 +699397,291.12,39.67 +699398,293.06,42.157 +699399,294.76,44.478 +699400,296.28,46.661 +699401,289.92,39.608 +699402,291.82,42.128 +699403,293.48,44.479 +699404,294.96,46.689 +699405,288.72,39.547 +699406,290.58,42.1 +699407,292.2,44.479 +699408,293.64,46.715 +699409,287.52,39.489 +699410,289.34,42.073 +699411,290.92,44.479 +699412,292.32,46.739 +699413,286.32,39.433 +699414,288.1,42.046 +699415,289.64,44.478 +699416,291,46.762 +699417,285.12,39.378 +699418,286.86,42.019 +699419,288.36,44.477 +699420,289.68,46.783 +699421,283.92,39.326 +699422,285.62,41.994 +699423,287.08,44.475 +699424,288.36,46.803 +699425,282.73,39.276 +699426,284.38,41.969 +699427,285.79,44.473 +699428,287.04,46.821 +699429,281.54,39.228 +699430,283.14,41.945 +699431,284.51,44.47 +699432,285.71,46.837 +699433,280.35,39.182 +699434,281.9,41.922 +699435,283.23,44.466 +699436,284.39,46.851 +699437,279.16,39.138 +699438,280.66,41.899 +699439,281.95,44.462 +699440,283.06,46.864 +699441,277.97,39.097 +699442,279.43,41.877 +699443,280.66,44.458 +699444,281.74,46.875 +699445,276.79,39.058 +699446,278.19,41.856 +699447,279.38,44.453 +699448,280.41,46.885 +699449,275.6,39.021 +699450,276.95,41.836 +699451,278.09,44.447 +699452,279.09,46.892 +699453,274.42,38.986 +699454,275.72,41.816 +699455,276.81,44.441 +699456,277.76,46.898 +699457,273.24,38.954 +699458,274.48,41.798 +699459,275.53,44.434 +699460,276.43,46.903 +699461,272.06,38.924 +699462,273.25,41.78 +699463,274.24,44.427 +699464,275.1,46.905 +699465,270.88,38.896 +699466,272.01,41.762 +699467,272.96,44.419 +699468,273.77,46.906 +699469,269.7,38.871 +699470,270.78,41.746 +699471,271.67,44.411 +699472,272.44,46.904 +699473,268.52,38.848 +699474,269.54,41.73 +699475,270.39,44.401 +699476,271.11,46.901 +699477,267.34,38.827 +699478,268.31,41.715 +699479,269.1,44.392 +699480,269.78,46.897 +699481,266.17,38.809 +699482,267.07,41.701 +699483,267.82,44.382 +699484,268.44,46.89 +699485,264.99,38.793 +699486,265.84,41.688 +699487,266.53,44.371 +699488,267.11,46.882 +699489,263.82,38.78 +699490,264.61,41.676 +699491,265.25,44.36 +699492,265.78,46.872 +699493,262.65,38.768 +699494,263.37,41.664 +699495,263.96,44.348 +699496,264.45,46.86 +699497,261.47,38.76 +699498,262.14,41.653 +699499,262.68,44.335 +699500,263.11,46.846 +699501,260.3,38.753 +699502,260.91,41.643 +699503,261.39,44.322 +699504,261.78,46.83 +699505,259.13,38.749 +699506,259.68,41.633 +699507,260.1,44.308 +699508,260.45,46.813 +699509,257.96,38.748 +699510,258.44,41.625 +699511,258.82,44.294 +699512,259.11,46.794 +699513,256.79,38.748 +699514,257.21,41.617 +699515,257.53,44.279 +699516,257.78,46.773 +699517,255.62,38.751 +699518,255.98,41.61 +699519,256.25,44.264 +699520,256.44,46.75 +699521,254.45,38.757 +699522,254.75,41.604 +699523,254.96,44.248 +699524,255.11,46.726 +699525,253.28,38.765 +699526,253.52,41.598 +699527,253.68,44.231 +699528,253.78,46.699 +699529,252.11,38.775 +699530,252.29,41.594 +699531,252.39,44.214 +699532,252.44,46.671 +699533,250.94,38.787 +699534,251.05,41.59 +699535,251.1,44.196 +699536,251.11,46.641 +699537,249.77,38.802 +699538,249.82,41.587 +699539,249.82,44.178 +699540,249.77,46.609 +699541,248.6,38.819 +699542,248.59,41.585 +699543,248.53,44.159 +699544,248.44,46.576 +699545,247.43,38.838 +699546,247.36,41.583 +699547,247.25,44.139 +699548,247.1,46.541 +699549,246.26,38.86 +699550,246.13,41.582 +699551,245.96,44.119 +699552,245.77,46.504 +699553,245.09,38.883 +699554,244.9,41.582 +699555,244.68,44.099 +699556,244.44,46.465 +699557,243.91,38.909 +699558,243.66,41.583 +699559,243.39,44.078 +699560,243.1,46.424 +699561,242.74,38.937 +699562,242.43,41.584 +699563,242.11,44.056 +699564,241.77,46.382 +699565,241.57,38.968 +699566,241.2,41.587 +699567,240.82,44.034 +699568,240.44,46.338 +699569,240.4,39 +699570,239.97,41.59 +699571,239.54,44.011 +699572,239.11,46.293 +699573,239.23,39.034 +699574,238.74,41.593 +699575,238.25,43.988 +699576,237.77,46.245 +699577,238.05,39.071 +699578,237.5,41.598 +699579,236.97,43.964 +699580,236.44,46.196 +699581,236.88,39.11 +699582,236.27,41.603 +699583,235.68,43.94 +699584,235.11,46.146 +699585,235.7,39.15 +699586,235.04,41.609 +699587,234.4,43.915 +699588,233.78,46.094 +699589,234.52,39.193 +699590,233.81,41.615 +699591,233.12,43.89 +699592,232.45,46.04 +699593,233.35,39.237 +699594,232.57,41.622 +699595,231.83,43.864 +699596,231.12,45.984 +699597,232.17,39.284 +699598,231.34,41.63 +699599,230.55,43.838 +699600,229.79,45.927 +699601,230.99,39.332 +699602,230.11,41.639 +699603,229.27,43.811 +699604,228.46,45.868 +699605,229.81,39.382 +699606,228.87,41.648 +699607,227.99,43.784 +699608,227.13,45.808 +699609,228.63,39.434 +699610,227.64,41.658 +699611,226.7,43.756 +699612,225.81,45.746 +699613,227.44,39.488 +699614,226.41,41.668 +699615,225.42,43.728 +699616,224.48,45.683 +699617,226.26,39.543 +699618,225.17,41.679 +699619,224.14,43.699 +699620,223.16,45.618 +699621,225.08,39.6 +699622,223.94,41.691 +699623,222.86,43.67 +699624,221.83,45.552 +699625,223.89,39.659 +699626,222.7,41.703 +699627,221.58,43.641 +699628,220.51,45.484 +699629,222.7,39.719 +699630,221.47,41.716 +699631,220.3,43.611 +699632,219.18,45.415 +699633,221.51,39.781 +699634,220.23,41.73 +699635,219.02,43.58 +699636,217.86,45.345 +699637,220.32,39.844 +699638,218.99,41.744 +699639,217.74,43.55 +699640,216.54,45.273 +699641,219.13,39.909 +699642,217.76,41.758 +699643,216.46,43.518 +699644,215.22,45.2 +699645,217.93,39.975 +699646,216.52,41.773 +699647,215.18,43.487 +699648,213.9,45.125 +699649,216.74,40.043 +699650,215.28,41.789 +699651,213.9,43.455 +699652,212.58,45.049 +699653,215.54,40.112 +699654,214.05,41.805 +699655,212.62,43.423 +699656,211.27,44.972 +699657,214.34,40.182 +699658,212.81,41.822 +699659,211.35,43.39 +699660,209.95,44.894 +699661,213.14,40.253 +699662,211.57,41.839 +699663,210.07,43.357 +699664,208.64,44.814 +699665,211.94,40.326 +699666,210.33,41.857 +699667,208.79,43.324 +699668,207.32,44.733 +699669,210.74,40.4 +699670,209.09,41.875 +699671,207.52,43.291 +699672,206.01,44.652 +699673,209.53,40.475 +699674,207.85,41.894 +699675,206.24,43.257 +699676,204.7,44.569 +699677,208.32,40.55 +699678,206.61,41.913 +699679,204.97,43.223 +699680,203.39,44.485 +699681,207.11,40.627 +699682,205.37,41.932 +699683,203.69,43.188 +699684,202.08,44.399 +699685,205.9,40.705 +699686,204.13,41.952 +699687,202.42,43.154 +699688,200.77,44.313 +699689,204.69,40.784 +699690,202.88,41.972 +699691,201.15,43.119 +699692,199.47,44.226 +699693,203.47,40.863 +699694,201.64,41.993 +699695,199.87,43.084 +699696,198.16,44.138 +699697,202.26,40.944 +699698,200.4,42.014 +699699,198.6,43.048 +699700,196.86,44.049 +699701,201.04,41.025 +699702,199.15,42.035 +699703,197.33,43.013 +699704,195.56,43.959 +699705,199.82,41.107 +699706,197.91,42.057 +699707,196.06,42.977 +699708,194.26,43.868 +699709,198.6,41.189 +699710,196.66,42.079 +699711,194.79,42.941 +699712,192.96,43.777 +699713,197.37,41.272 +699714,195.42,42.101 +699715,193.52,42.905 +699716,191.66,43.685 +699717,196.15,41.356 +699718,194.17,42.124 +699719,192.25,42.869 +699720,190.36,43.592 +699721,194.92,41.44 +699722,192.93,42.147 +699723,190.98,42.833 +699724,189.07,43.498 +699725,193.69,41.524 +699726,191.68,42.17 +699727,189.71,42.796 +699728,187.78,43.403 +699729,192.45,41.609 +699730,190.43,42.193 +699731,188.44,42.76 +699732,186.49,43.309 +699733,191.22,41.695 +699734,189.18,42.217 +699735,187.18,42.723 +699736,185.2,43.213 +699737,189.98,41.78 +699738,187.93,42.241 +699739,185.91,42.686 +699740,183.91,43.117 +699741,188.75,41.866 +699742,186.68,42.265 +699743,184.64,42.649 +699744,182.62,43.02 +699745,187.51,41.952 +699746,185.43,42.289 +699747,183.38,42.613 +699748,181.34,42.923 +699749,186.26,42.039 +699750,184.18,42.313 +699751,182.11,42.576 +699752,180.06,42.826 +699753,185.02,42.125 +699754,182.93,42.338 +699755,180.85,42.539 +699756,178.78,42.728 +699757,183.77,42.211 +699758,181.68,42.362 +699759,179.59,42.502 +699760,177.5,42.63 +699761,182.53,42.298 +699762,180.43,42.387 +699763,178.33,42.465 +699764,176.22,42.532 +699765,181.28,42.384 +699766,179.17,42.412 +699767,177.06,42.428 +699768,174.95,42.434 +699769,180.03,42.471 +699770,177.92,42.437 +699771,175.8,42.392 +699772,173.67,42.335 +699773,178.77,42.557 +699774,176.66,42.462 +699775,174.54,42.355 +699776,172.4,42.236 +699777,177.52,42.643 +699778,175.41,42.487 +699779,173.28,42.318 +699780,171.13,42.137 +699781,176.26,42.729 +699782,174.15,42.512 +699783,172.02,42.282 +699784,169.87,42.038 +699785,175,42.814 +699786,172.9,42.537 +699787,170.76,42.245 +699788,168.6,41.94 +699789,173.74,42.9 +699790,171.64,42.562 +699791,169.51,42.209 +699792,167.34,41.841 +699793,172.47,42.985 +699794,170.38,42.587 +699795,168.25,42.173 +699796,166.07,41.742 +699797,171.21,43.069 +699798,169.12,42.612 +699799,166.99,42.137 +699800,164.82,41.644 +699801,169.94,43.153 +699802,167.87,42.637 +699803,165.74,42.101 +699804,163.56,41.545 +699805,168.67,43.237 +699806,166.61,42.662 +699807,164.48,42.065 +699808,162.3,41.447 +699809,167.4,43.32 +699810,165.35,42.687 +699811,163.23,42.03 +699812,161.05,41.349 +699813,166.13,43.403 +699814,164.08,42.711 +699815,161.98,41.995 +699816,159.8,41.252 +699817,164.86,43.485 +699818,162.82,42.736 +699819,160.72,41.96 +699820,158.55,41.155 +699821,163.58,43.566 +699822,161.56,42.761 +699823,159.47,41.925 +699824,157.3,41.059 +699825,162.3,43.647 +699826,160.3,42.785 +699827,158.22,41.891 +699828,156.05,40.963 +699829,161.02,43.727 +699830,159.04,42.809 +699831,156.97,41.857 +699832,154.81,40.867 +699833,159.74,43.806 +699834,157.77,42.834 +699835,155.72,41.823 +699836,153.57,40.772 +699837,158.46,43.885 +699838,156.51,42.857 +699839,154.47,41.79 +699840,152.33,40.678 +699841,157.18,43.962 +699842,155.24,42.881 +699843,153.22,41.757 +699844,151.09,40.585 +699845,155.89,44.039 +699846,153.98,42.905 +699847,151.97,41.724 +699848,149.86,40.492 +699849,154.6,44.115 +699850,152.71,42.928 +699851,150.72,41.691 +699852,148.62,40.4 +699853,153.31,44.19 +699854,151.44,42.951 +699855,149.48,41.659 +699856,147.39,40.309 +699857,152.02,44.264 +699858,150.18,42.974 +699859,148.23,41.628 +699860,146.16,40.219 +699861,150.73,44.337 +699862,148.91,42.997 +699863,146.98,41.597 +699864,144.94,40.13 +699865,149.44,44.409 +699866,147.64,43.019 +699867,145.74,41.566 +699868,143.71,40.042 +699869,148.14,44.48 +699870,146.37,43.041 +699871,144.49,41.535 +699872,142.49,39.955 +699873,146.84,44.549 +699874,145.1,43.063 +699875,143.25,41.506 +699876,141.27,39.869 +699877,145.55,44.618 +699878,143.83,43.084 +699879,142.01,41.476 +699880,140.05,39.784 +699881,144.25,44.685 +699882,142.56,43.105 +699883,140.77,41.447 +699884,138.83,39.701 +699885,142.95,44.752 +699886,141.29,43.126 +699887,139.52,41.419 +699888,137.62,39.618 +699889,141.64,44.817 +699890,140.02,43.147 +699891,138.28,41.391 +699892,136.4,39.537 +699893,140.34,44.88 +699894,138.75,43.167 +699895,137.04,41.364 +699896,135.19,39.458 +699897,139.03,44.943 +699898,137.48,43.187 +699899,135.8,41.337 +699900,133.98,39.379 +699901,137.73,45.004 +699902,136.2,43.206 +699903,134.56,41.311 +699904,132.77,39.303 +699905,136.42,45.064 +699906,134.93,43.225 +699907,133.32,41.285 +699908,131.57,39.227 +699909,135.11,45.122 +699910,133.66,43.243 +699911,132.08,41.26 +699912,130.37,39.154 +699913,133.8,45.179 +699914,132.38,43.262 +699915,130.85,41.235 +699916,129.16,39.082 +699917,132.49,45.235 +699918,131.11,43.279 +699919,129.61,41.211 +699920,127.96,39.011 +699921,131.18,45.289 +699922,129.83,43.297 +699923,128.37,41.188 +699924,126.76,38.942 +699925,129.87,45.341 +699926,128.56,43.314 +699927,127.13,41.166 +699928,125.57,38.875 +699929,128.55,45.393 +699930,127.28,43.33 +699931,125.9,41.144 +699932,124.37,38.81 +699933,127.24,45.442 +699934,126.01,43.346 +699935,124.66,41.122 +699936,123.18,38.747 +699937,125.92,45.49 +699938,124.73,43.361 +699939,123.43,41.101 +699940,121.99,38.685 +699941,124.61,45.537 +699942,123.45,43.376 +699943,122.19,41.081 +699944,120.8,38.625 +699945,123.29,45.582 +699946,122.17,43.391 +699947,120.96,41.062 +699948,119.61,38.567 +699949,121.97,45.625 +699950,120.9,43.405 +699951,119.73,41.043 +699952,118.42,38.512 +699953,120.65,45.667 +699954,119.62,43.419 +699955,118.49,41.026 +699956,117.23,38.458 +699957,119.33,45.707 +699958,118.34,43.432 +699959,117.26,41.008 +699960,116.05,38.406 +699961,118.01,45.746 +699962,117.06,43.444 +699963,116.03,40.992 +699964,114.87,38.356 +699965,116.69,45.783 +699966,115.78,43.456 +699967,114.79,40.976 +699968,113.69,38.309 +699969,115.36,45.818 +699970,114.5,43.468 +699971,113.56,40.961 +699972,112.5,38.263 +699973,114.04,45.851 +699974,113.23,43.479 +699975,112.33,40.947 +699976,111.33,38.22 +699977,112.72,45.883 +699978,111.95,43.489 +699979,111.1,40.933 +699980,110.15,38.179 +699981,111.39,45.913 +699982,110.67,43.499 +699983,109.87,40.921 +699984,108.97,38.14 +699985,110.07,45.941 +699986,109.39,43.509 +699987,108.64,40.909 +699988,107.79,38.103 +699989,108.74,45.968 +699990,108.11,43.517 +699991,107.41,40.897 +699992,106.62,38.069 +699993,107.42,45.993 +699994,106.83,43.526 +699995,106.18,40.887 +699996,105.44,38.037 +699997,106.09,46.016 +699998,105.55,43.533 +699999,104.95,40.877 +700000,104.27,38.007 +700001,104.76,46.037 +700002,104.26,43.54 +700003,103.72,40.868 +700004,103.1,37.98 +700005,103.43,46.057 +700006,102.98,43.547 +700007,102.49,40.86 +700008,101.92,37.955 +700009,102.11,46.074 +700010,101.7,43.553 +700011,101.26,40.853 +700012,100.75,37.932 +700013,100.78,46.09 +700014,100.42,43.558 +700015,100.03,40.847 +700016,99.582,37.912 +700017,99.451,46.104 +700018,99.14,43.563 +700019,98.798,40.841 +700020,98.412,37.894 +700021,98.123,46.117 +700022,97.859,43.567 +700023,97.569,40.836 +700024,97.242,37.878 +700025,96.794,46.127 +700026,96.578,43.571 +700027,96.34,40.832 +700028,96.072,37.865 +700029,95.465,46.136 +700030,95.296,43.574 +700031,95.111,40.829 +700032,94.903,37.855 +700033,94.136,46.143 +700034,94.015,43.577 +700035,93.882,40.826 +700036,93.734,37.847 +700037,92.807,46.148 +700038,92.733,43.579 +700039,92.653,40.825 +700040,92.565,37.841 +700041,91.478,46.151 +700042,91.452,43.58 +700043,91.424,40.824 +700044,91.396,37.838 +700045,90.149,46.152 +700046,90.17,43.581 +700047,90.196,40.824 +700048,90.227,37.837 +700049,88.82,46.151 +700050,88.889,43.581 +700051,88.967,40.825 +700052,89.059,37.839 +700053,87.491,46.149 +700054,87.607,43.58 +700055,87.738,40.827 +700056,87.89,37.843 +700057,86.162,46.145 +700058,86.325,43.579 +700059,86.509,40.829 +700060,86.721,37.85 +700061,84.833,46.139 +700062,85.044,43.578 +700063,85.28,40.833 +700064,85.551,37.859 +700065,83.504,46.131 +700066,83.763,43.576 +700067,84.051,40.837 +700068,84.382,37.87 +700069,82.176,46.122 +700070,82.481,43.573 +700071,82.822,40.842 +700072,83.212,37.884 +700073,80.847,46.11 +700074,81.2,43.569 +700075,81.593,40.848 +700076,82.042,37.901 +700077,79.519,46.097 +700078,79.919,43.565 +700079,80.363,40.854 +700080,80.871,37.92 +700081,78.192,46.082 +700082,78.638,43.561 +700083,79.134,40.862 +700084,79.699,37.941 +700085,76.864,46.065 +700086,77.357,43.556 +700087,77.904,40.87 +700088,78.527,37.965 +700089,75.537,46.046 +700090,76.076,43.55 +700091,76.674,40.879 +700092,77.354,37.991 +700093,74.211,46.026 +700094,74.795,43.544 +700095,75.444,40.889 +700096,76.181,38.019 +700097,72.885,46.004 +700098,73.515,43.537 +700099,74.214,40.899 +700100,75.006,38.05 +700101,71.559,45.98 +700102,72.235,43.53 +700103,72.983,40.911 +700104,73.831,38.083 +700105,70.234,45.954 +700106,70.955,43.522 +700107,71.752,40.923 +700108,72.655,38.118 +700109,68.909,45.926 +700110,69.675,43.513 +700111,70.521,40.936 +700112,71.478,38.156 +700113,67.585,45.897 +700114,68.395,43.504 +700115,69.29,40.949 +700116,70.3,38.196 +700117,66.262,45.866 +700118,67.116,43.495 +700119,68.058,40.964 +700120,69.12,38.238 +700121,64.939,45.834 +700122,65.837,43.485 +700123,66.826,40.979 +700124,67.94,38.282 +700125,63.617,45.799 +700126,64.558,43.474 +700127,65.594,40.995 +700128,66.758,38.328 +700129,62.296,45.763 +700130,63.279,43.463 +700131,64.361,41.012 +700132,65.575,38.377 +700133,60.975,45.726 +700134,62.001,43.451 +700135,63.128,41.029 +700136,64.391,38.428 +700137,59.655,45.686 +700138,60.723,43.439 +700139,61.894,41.047 +700140,63.205,38.48 +700141,58.336,45.645 +700142,59.445,43.427 +700143,60.66,41.066 +700144,62.018,38.535 +700145,57.018,45.603 +700146,58.168,43.413 +700147,59.426,41.086 +700148,60.829,38.592 +700149,55.701,45.559 +700150,56.89,43.4 +700151,58.191,41.106 +700152,59.639,38.651 +700153,54.385,45.513 +700154,55.614,43.386 +700155,56.956,41.127 +700156,58.447,38.711 +700157,53.069,45.466 +700158,54.337,43.371 +700159,55.721,41.148 +700160,57.254,38.774 +700161,51.755,45.417 +700162,53.061,43.356 +700163,54.484,41.171 +700164,56.059,38.838 +700165,50.442,45.367 +700166,51.786,43.34 +700167,53.248,41.194 +700168,54.862,38.905 +700169,49.129,45.315 +700170,50.511,43.324 +700171,52.011,41.217 +700172,53.664,38.972 +700173,47.818,45.262 +700174,49.236,43.308 +700175,50.773,41.241 +700176,52.464,39.042 +700177,46.508,45.207 +700178,47.961,43.291 +700179,49.535,41.266 +700180,51.262,39.114 +700181,45.199,45.151 +700182,46.687,43.274 +700183,48.296,41.292 +700184,50.059,39.187 +700185,43.892,45.093 +700186,45.414,43.256 +700187,47.057,41.318 +700188,48.853,39.261 +700189,42.585,45.034 +700190,44.141,43.238 +700191,45.817,41.344 +700192,47.646,39.337 +700193,41.28,44.974 +700194,42.868,43.22 +700195,44.577,41.371 +700196,46.437,39.415 +700197,39.976,44.913 +700198,41.596,43.201 +700199,43.336,41.399 +700200,45.225,39.494 +700201,38.673,44.85 +700202,40.324,43.182 +700203,42.095,41.427 +700204,44.012,39.575 +700205,37.372,44.786 +700206,39.053,43.162 +700207,40.853,41.456 +700208,42.797,39.656 +700209,36.072,44.721 +700210,37.783,43.142 +700211,39.61,41.485 +700212,41.58,39.74 +700213,34.773,44.654 +700214,36.512,43.122 +700215,38.367,41.515 +700216,40.361,39.824 +700217,33.476,44.586 +700218,35.243,43.102 +700219,37.123,41.546 +700220,39.14,39.91 +700221,32.18,44.518 +700222,33.973,43.081 +700223,35.878,41.576 +700224,37.917,39.996 +700225,30.886,44.448 +700226,32.705,43.06 +700227,34.633,41.607 +700228,36.692,40.084 +700229,29.593,44.377 +700230,31.437,43.038 +700231,33.387,41.639 +700232,35.465,40.173 +700233,28.302,44.305 +700234,30.169,43.016 +700235,32.141,41.671 +700236,34.236,40.263 +700237,27.012,44.232 +700238,28.902,42.995 +700239,30.894,41.704 +700240,33.005,40.354 +700241,25.724,44.158 +700242,27.636,42.972 +700243,29.646,41.737 +700244,31.772,40.446 +700245,24.437,44.083 +700246,26.37,42.95 +700247,28.398,41.77 +700248,30.537,40.539 +700249,23.152,44.007 +700250,25.104,42.927 +700251,27.149,41.804 +700252,29.3,40.632 +700253,21.869,43.931 +700254,23.84,42.904 +700255,25.899,41.838 +700256,28.06,40.727 +700257,20.587,43.853 +700258,22.575,42.881 +700259,24.649,41.872 +700260,26.819,40.822 +700261,19.308,43.775 +700262,21.312,42.858 +700263,23.398,41.906 +700264,25.575,40.917 +700265,18.029,43.696 +700266,20.049,42.835 +700267,22.146,41.941 +700268,24.33,41.013 +700269,16.753,43.616 +700270,18.786,42.811 +700271,20.893,41.977 +700272,23.082,41.11 +700273,15.478,43.536 +700274,17.525,42.788 +700275,19.64,42.012 +700276,21.833,41.208 +700277,14.205,43.455 +700278,16.263,42.764 +700279,18.386,42.048 +700280,20.581,41.305 +700281,12.934,43.373 +700282,15.003,42.74 +700283,17.132,42.084 +700284,19.327,41.403 +700285,11.665,43.291 +700286,13.743,42.716 +700287,15.877,42.12 +700288,18.071,41.502 +700289,10.397,43.208 +700290,12.483,42.692 +700291,14.621,42.157 +700292,16.814,41.601 +700293,9.1313,43.125 +700294,11.225,42.668 +700295,13.364,42.193 +700296,15.554,41.7 +700297,7.8674,43.042 +700298,9.9665,42.644 +700299,12.107,42.23 +700300,14.292,41.799 +700301,6.6054,42.958 +700302,8.709,42.62 +700303,10.849,42.267 +700304,13.029,41.899 +700305,5.3453,42.874 +700306,7.4521,42.596 +700307,9.5906,42.304 +700308,11.763,41.998 +700309,4.0871,42.789 +700310,6.1957,42.572 +700311,8.3313,42.341 +700312,10.495,42.098 +700313,2.8308,42.704 +700314,4.9401,42.548 +700315,7.0713,42.379 +700316,9.2257,42.197 +700317,1.5764,42.619 +700318,3.685,42.524 +700319,5.8107,42.416 +700320,7.9542,42.297 +700321,0.32393,42.534 +700322,2.4305,42.5 +700323,4.5493,42.454 +700324,6.6809,42.397 +700325,359.07,42.449 +700326,1.1767,42.476 +700327,3.2873,42.491 +700328,5.4057,42.496 +700329,357.82,42.363 +700330,359.92,42.452 +700331,2.0246,42.529 +700332,4.1286,42.595 +700333,356.58,42.278 +700334,358.67,42.428 +700335,0.76127,42.567 +700336,2.8497,42.694 +700337,355.33,42.193 +700338,357.42,42.404 +700339,359.5,42.604 +700340,1.5689,42.793 +700341,354.09,42.107 +700342,356.17,42.381 +700343,358.23,42.642 +700344,0.28641,42.891 +700345,352.85,42.022 +700346,354.92,42.357 +700347,356.97,42.68 +700348,359,42.989 +700349,351.61,41.937 +700350,353.67,42.334 +700351,355.7,42.717 +700352,357.72,43.087 +700353,350.37,41.853 +700354,352.42,42.311 +700355,354.43,42.755 +700356,356.43,43.184 +700357,349.14,41.768 +700358,351.17,42.288 +700359,353.17,42.793 +700360,355.14,43.281 +700361,347.91,41.684 +700362,349.92,42.266 +700363,351.9,42.83 +700364,353.85,43.377 +700365,346.68,41.6 +700366,348.67,42.243 +700367,350.63,42.867 +700368,352.55,43.473 +700369,345.45,41.517 +700370,347.42,42.221 +700371,349.36,42.905 +700372,351.26,43.568 +700373,344.22,41.434 +700374,346.18,42.199 +700375,348.09,42.942 +700376,349.96,43.662 +700377,342.99,41.351 +700378,344.93,42.177 +700379,346.82,42.979 +700380,348.67,43.756 +700381,341.77,41.269 +700382,343.69,42.156 +700383,345.55,43.016 +700384,347.37,43.849 +700385,340.55,41.188 +700386,342.44,42.135 +700387,344.28,43.052 +700388,346.07,43.941 +700389,339.33,41.107 +700390,341.2,42.114 +700391,343.01,43.089 +700392,344.77,44.032 +700393,338.11,41.027 +700394,339.95,42.094 +700395,341.73,43.125 +700396,343.46,44.123 +700397,336.9,40.948 +700398,338.71,42.074 +700399,340.46,43.161 +700400,342.16,44.213 +700401,335.68,40.87 +700402,337.47,42.054 +700403,339.19,43.197 +700404,340.85,44.301 +700405,334.47,40.792 +700406,336.23,42.035 +700407,337.91,43.233 +700408,339.54,44.389 +700409,333.26,40.715 +700410,334.98,42.016 +700411,336.64,43.268 +700412,338.23,44.476 +700413,332.05,40.64 +700414,333.74,41.997 +700415,335.36,43.303 +700416,336.92,44.562 +700417,330.85,40.565 +700418,332.5,41.979 +700419,334.09,43.338 +700420,335.61,44.647 +700421,329.64,40.491 +700422,331.26,41.961 +700423,332.81,43.373 +700424,334.3,44.73 +700425,328.44,40.419 +700426,330.02,41.944 +700427,331.53,43.407 +700428,332.98,44.813 +700429,327.24,40.347 +700430,328.78,41.928 +700431,330.26,43.441 +700432,331.67,44.894 +700433,326.04,40.277 +700434,327.54,41.911 +700435,328.98,43.475 +700436,330.35,44.974 +700437,324.84,40.208 +700438,326.31,41.895 +700439,327.7,43.508 +700440,329.03,45.053 +700441,323.64,40.14 +700442,325.07,41.88 +700443,326.42,43.541 +700444,327.72,45.131 +700445,322.45,40.074 +700446,323.83,41.865 +700447,325.14,43.574 +700448,326.4,45.208 +700449,321.26,40.009 +700450,322.59,41.851 +700451,323.86,43.606 +700452,325.08,45.283 +700453,320.06,39.945 +700454,321.36,41.837 +700455,322.58,43.638 +700456,323.75,45.357 +700457,318.87,39.883 +700458,320.12,41.824 +700459,321.3,43.669 +700460,322.43,45.429 +700461,317.69,39.822 +700462,318.88,41.812 +700463,320.02,43.7 +700464,321.11,45.5 +700465,316.5,39.763 +700466,317.65,41.8 +700467,318.74,43.731 +700468,319.78,45.57 +700469,315.31,39.706 +700470,316.41,41.788 +700471,317.46,43.761 +700472,318.46,45.638 +700473,314.13,39.65 +700474,315.18,41.778 +700475,316.18,43.791 +700476,317.13,45.705 +700477,312.94,39.595 +700478,313.94,41.767 +700479,314.89,43.82 +700480,315.8,45.771 +700481,311.76,39.543 +700482,312.71,41.758 +700483,313.61,43.849 +700484,314.48,45.834 +700485,310.58,39.492 +700486,311.47,41.749 +700487,312.33,43.878 +700488,313.15,45.897 +700489,309.4,39.443 +700490,310.24,41.741 +700491,311.04,43.906 +700492,311.82,45.958 +700493,308.22,39.396 +700494,309.01,41.733 +700495,309.76,43.933 +700496,310.49,46.017 +700497,307.04,39.351 +700498,307.77,41.726 +700499,308.48,43.96 +700500,309.16,46.075 +700501,305.87,39.307 +700502,306.54,41.72 +700503,307.19,43.987 +700504,307.83,46.131 +700505,304.69,39.266 +700506,305.31,41.714 +700507,305.91,44.013 +700508,306.5,46.185 +700509,303.51,39.226 +700510,304.07,41.709 +700511,304.62,44.038 +700512,305.17,46.238 +700513,302.34,39.189 +700514,302.84,41.705 +700515,303.34,44.064 +700516,303.83,46.289 +700517,301.17,39.153 +700518,301.61,41.702 +700519,302.05,44.088 +700520,302.5,46.339 +700521,299.99,39.12 +700522,300.38,41.699 +700523,300.77,44.112 +700524,301.17,46.387 +700525,298.82,39.088 +700526,299.14,41.697 +700527,299.48,44.135 +700528,299.83,46.433 +700529,297.65,39.059 +700530,297.91,41.695 +700531,298.2,44.158 +700532,298.5,46.478 +700533,296.48,39.032 +700534,296.68,41.695 +700535,296.91,44.181 +700536,297.17,46.52 +700537,295.31,39.007 +700538,295.45,41.695 +700539,295.63,44.203 +700540,295.83,46.562 +700541,294.13,38.984 +700542,294.21,41.696 +700543,294.34,44.224 +700544,294.5,46.601 +700545,292.96,38.964 +700546,292.98,41.697 +700547,293.05,44.245 +700548,293.16,46.639 +700549,291.79,38.946 +700550,291.75,41.7 +700551,291.77,44.265 +700552,291.83,46.674 +700553,290.62,38.93 +700554,290.52,41.703 +700555,290.48,44.284 +700556,290.49,46.708 +700557,289.45,38.916 +700558,289.29,41.707 +700559,289.19,44.303 +700560,289.16,46.741 +700561,288.28,38.905 +700562,288.05,41.712 +700563,287.91,44.322 +700564,287.82,46.771 +700565,287.11,38.895 +700566,286.82,41.717 +700567,286.62,44.34 +700568,286.49,46.8 +700569,285.94,38.889 +700570,285.59,41.723 +700571,285.34,44.357 +700572,285.15,46.827 +700573,284.77,38.884 +700574,284.36,41.73 +700575,284.05,44.374 +700576,283.82,46.852 +700577,283.6,38.882 +700578,283.12,41.738 +700579,282.76,44.39 +700580,282.48,46.876 +700581,282.43,38.882 +700582,281.89,41.747 +700583,281.48,44.406 +700584,281.15,46.897 +700585,281.26,38.885 +700586,280.66,41.756 +700587,280.19,44.421 +700588,279.81,46.917 +700589,280.08,38.89 +700590,279.43,41.766 +700591,278.9,44.435 +700592,278.48,46.935 +700593,278.91,38.897 +700594,278.19,41.777 +700595,277.62,44.449 +700596,277.14,46.951 +700597,277.74,38.906 +700598,276.96,41.789 +700599,276.33,44.462 +700600,275.81,46.966 +700601,276.56,38.918 +700602,275.73,41.801 +700603,275.04,44.475 +700604,274.47,46.978 +700605,275.39,38.933 +700606,274.49,41.815 +700607,273.76,44.487 +700608,273.14,46.989 +700609,274.21,38.949 +700610,273.26,41.829 +700611,272.47,44.498 +700612,271.81,46.998 +700613,273.04,38.969 +700614,272.02,41.844 +700615,271.19,44.509 +700616,270.48,47.005 +700617,271.86,38.99 +700618,270.79,41.859 +700619,269.9,44.52 +700620,269.14,47.011 +700621,270.68,39.014 +700622,269.55,41.876 +700623,268.61,44.53 +700624,267.81,47.014 +700625,269.5,39.04 +700626,268.32,41.893 +700627,267.33,44.539 +700628,266.48,47.016 +700629,268.32,39.068 +700630,267.08,41.911 +700631,266.04,44.547 +700632,265.15,47.016 +700633,267.14,39.099 +700634,265.84,41.93 +700635,264.76,44.555 +700636,263.82,47.015 +700637,265.95,39.132 +700638,264.61,41.949 +700639,263.47,44.563 +700640,262.49,47.011 +700641,264.77,39.167 +700642,263.37,41.969 +700643,262.19,44.57 +700644,261.16,47.006 +700645,263.58,39.205 +700646,262.13,41.991 +700647,260.9,44.576 +700648,259.84,46.999 +700649,262.4,39.245 +700650,260.9,42.012 +700651,259.62,44.582 +700652,258.51,46.99 +700653,261.21,39.287 +700654,259.66,42.035 +700655,258.34,44.587 +700656,257.18,46.98 +700657,260.02,39.331 +700658,258.42,42.058 +700659,257.05,44.592 +700660,255.86,46.968 +700661,258.83,39.378 +700662,257.18,42.082 +700663,255.77,44.596 +700664,254.53,46.954 +700665,257.63,39.426 +700666,255.94,42.107 +700667,254.49,44.6 +700668,253.21,46.938 +700669,256.44,39.477 +700670,254.7,42.132 +700671,253.2,44.603 +700672,251.89,46.921 +700673,255.24,39.53 +700674,253.46,42.159 +700675,251.92,44.605 +700676,250.56,46.902 +700677,254.04,39.585 +700678,252.22,42.186 +700679,250.64,44.607 +700680,249.24,46.882 +700681,252.84,39.642 +700682,250.98,42.213 +700683,249.36,44.609 +700684,247.92,46.86 +700685,251.64,39.701 +700686,249.73,42.241 +700687,248.08,44.61 +700688,246.6,46.836 +700689,250.44,39.762 +700690,248.49,42.27 +700691,246.79,44.61 +700692,245.29,46.811 +700693,249.23,39.825 +700694,247.25,42.3 +700695,245.51,44.61 +700696,243.97,46.784 +700697,248.02,39.89 +700698,246,42.33 +700699,244.23,44.61 +700700,242.65,46.755 +700701,246.81,39.957 +700702,244.76,42.361 +700703,242.95,44.609 +700704,241.34,46.725 +700705,245.6,40.026 +700706,243.51,42.393 +700707,241.67,44.607 +700708,240.03,46.694 +700709,244.39,40.096 +700710,242.27,42.425 +700711,240.4,44.605 +700712,238.71,46.661 +700713,243.17,40.168 +700714,241.02,42.458 +700715,239.12,44.603 +700716,237.4,46.626 +700717,241.95,40.242 +700718,239.77,42.492 +700719,237.84,44.6 +700720,236.09,46.59 +700721,240.73,40.318 +700722,238.52,42.526 +700723,236.56,44.597 +700724,234.78,46.553 +700725,239.51,40.396 +700726,237.28,42.56 +700727,235.28,44.593 +700728,233.48,46.514 +700729,238.29,40.475 +700730,236.03,42.596 +700731,234.01,44.589 +700732,232.17,46.474 +700733,237.06,40.555 +700734,234.78,42.632 +700735,232.73,44.584 +700736,230.87,46.432 +700737,235.83,40.637 +700738,233.53,42.668 +700739,231.45,44.579 +700740,229.56,46.389 +700741,234.6,40.721 +700742,232.28,42.705 +700743,230.18,44.574 +700744,228.26,46.345 +700745,233.37,40.806 +700746,231.02,42.742 +700747,228.9,44.568 +700748,226.96,46.3 +700749,232.13,40.892 +700750,229.77,42.78 +700751,227.63,44.562 +700752,225.66,46.253 +700753,230.9,40.98 +700754,228.52,42.819 +700755,226.35,44.556 +700756,224.37,46.205 +700757,229.66,41.069 +700758,227.26,42.858 +700759,225.08,44.549 +700760,223.07,46.156 +700761,228.42,41.16 +700762,226.01,42.897 +700763,223.81,44.542 +700764,221.78,46.105 +700765,227.17,41.251 +700766,224.75,42.937 +700767,222.54,44.534 +700768,220.48,46.054 +700769,225.93,41.344 +700770,223.5,42.978 +700771,221.26,44.527 +700772,219.19,46.001 +700773,224.68,41.438 +700774,222.24,43.019 +700775,219.99,44.519 +700776,217.9,45.948 +700777,223.43,41.533 +700778,220.98,43.06 +700779,218.72,44.51 +700780,216.62,45.893 +700781,222.18,41.629 +700782,219.72,43.101 +700783,217.45,44.501 +700784,215.33,45.837 +700785,220.92,41.726 +700786,218.46,43.144 +700787,216.18,44.493 +700788,214.05,45.781 +700789,219.66,41.824 +700790,217.2,43.186 +700791,214.91,44.483 +700792,212.76,45.723 +700793,218.41,41.923 +700794,215.94,43.229 +700795,213.64,44.474 +700796,211.48,45.664 +700797,217.14,42.022 +700798,214.68,43.272 +700799,212.38,44.464 +700800,210.2,45.605 +700801,215.88,42.123 +700802,213.42,43.316 +700803,211.11,44.454 +700804,208.93,45.544 +700805,214.61,42.224 +700806,212.16,43.359 +700807,209.84,44.444 +700808,207.65,45.483 +700809,213.35,42.326 +700810,210.89,43.404 +700811,208.58,44.434 +700812,206.38,45.421 +700813,212.08,42.428 +700814,209.63,43.448 +700815,207.31,44.423 +700816,205.11,45.359 +700817,210.8,42.531 +700818,208.36,43.493 +700819,206.04,44.413 +700820,203.84,45.295 +700821,209.53,42.635 +700822,207.1,43.538 +700823,204.78,44.402 +700824,202.57,45.231 +700825,208.25,42.739 +700826,205.83,43.583 +700827,203.52,44.391 +700828,201.3,45.167 +700829,206.98,42.844 +700830,204.56,43.628 +700831,202.25,44.38 +700832,200.04,45.102 +700833,205.7,42.949 +700834,203.29,43.674 +700835,200.99,44.369 +700836,198.77,45.036 +700837,204.41,43.054 +700838,202.02,43.72 +700839,199.73,44.358 +700840,197.51,44.969 +700841,203.13,43.16 +700842,200.75,43.766 +700843,198.47,44.346 +700844,196.25,44.903 +700845,201.84,43.265 +700846,199.48,43.812 +700847,197.2,44.335 +700848,195,44.836 +700849,200.55,43.371 +700850,198.21,43.859 +700851,195.94,44.323 +700852,193.74,44.768 +700853,199.26,43.478 +700854,196.94,43.905 +700855,194.68,44.312 +700856,192.49,44.7 +700857,197.97,43.584 +700858,195.67,43.952 +700859,193.42,44.3 +700860,191.24,44.632 +700861,196.68,43.69 +700862,194.39,43.998 +700863,192.17,44.289 +700864,189.99,44.563 +700865,195.38,43.797 +700866,193.12,44.045 +700867,190.91,44.277 +700868,188.74,44.495 +700869,194.08,43.903 +700870,191.85,44.092 +700871,189.65,44.266 +700872,187.49,44.426 +700873,192.79,44.009 +700874,190.57,44.139 +700875,188.39,44.255 +700876,186.25,44.357 +700877,191.48,44.116 +700878,189.29,44.186 +700879,187.14,44.243 +700880,185.01,44.288 +700881,190.18,44.222 +700882,188.02,44.233 +700883,185.88,44.232 +700884,183.77,44.218 +700885,188.88,44.327 +700886,186.74,44.28 +700887,184.63,44.221 +700888,182.53,44.149 +700889,187.57,44.433 +700890,185.46,44.327 +700891,183.37,44.209 +700892,181.29,44.08 +700893,186.26,44.538 +700894,184.18,44.374 +700895,182.12,44.198 +700896,180.06,44.011 +700897,184.95,44.643 +700898,182.9,44.421 +700899,180.86,44.187 +700900,178.83,43.942 +700901,183.64,44.748 +700902,181.62,44.468 +700903,179.61,44.177 +700904,177.6,43.873 +700905,182.33,44.852 +700906,180.34,44.515 +700907,178.36,44.166 +700908,176.37,43.805 +700909,181.01,44.955 +700910,179.06,44.562 +700911,177.1,44.155 +700912,175.14,43.736 +700913,179.7,45.058 +700914,177.78,44.609 +700915,175.85,44.145 +700916,173.92,43.668 +700917,178.38,45.161 +700918,176.5,44.655 +700919,174.6,44.135 +700920,172.7,43.601 +700921,177.06,45.263 +700922,175.21,44.702 +700923,173.35,44.125 +700924,171.47,43.533 +700925,175.74,45.364 +700926,173.93,44.748 +700927,172.1,44.116 +700928,170.25,43.466 +700929,174.42,45.465 +700930,172.64,44.795 +700931,170.85,44.106 +700932,169.04,43.4 +700933,173.09,45.565 +700934,171.36,44.841 +700935,169.6,44.097 +700936,167.82,43.334 +700937,171.77,45.664 +700938,170.07,44.887 +700939,168.35,44.088 +700940,166.61,43.269 +700941,170.44,45.763 +700942,168.79,44.932 +700943,167.11,44.08 +700944,165.4,43.204 +700945,169.12,45.86 +700946,167.5,44.978 +700947,165.86,44.071 +700948,164.18,43.14 +700949,167.79,45.957 +700950,166.21,45.023 +700951,164.61,44.063 +700952,162.98,43.077 +700953,166.46,46.053 +700954,164.93,45.068 +700955,163.36,44.056 +700956,161.77,43.015 +700957,165.13,46.148 +700958,163.64,45.113 +700959,162.12,44.048 +700960,160.56,42.953 +700961,163.8,46.242 +700962,162.35,45.158 +700963,160.87,44.041 +700964,159.36,42.892 +700965,162.46,46.335 +700966,161.06,45.202 +700967,159.62,44.035 +700968,158.16,42.832 +700969,161.13,46.427 +700970,159.77,45.246 +700971,158.38,44.028 +700972,156.96,42.773 +700973,159.79,46.518 +700974,158.48,45.29 +700975,157.13,44.023 +700976,155.76,42.715 +700977,158.46,46.608 +700978,157.19,45.333 +700979,155.89,44.017 +700980,154.56,42.658 +700981,157.12,46.696 +700982,155.9,45.376 +700983,154.65,44.012 +700984,153.36,42.602 +700985,155.78,46.784 +700986,154.61,45.419 +700987,153.4,44.008 +700988,152.17,42.547 +700989,154.44,46.87 +700990,153.31,45.462 +700991,152.16,44.004 +700992,150.97,42.493 +700993,153.11,46.956 +700994,152.02,45.504 +700995,150.91,44 +700996,149.78,42.441 +700997,151.76,47.04 +700998,150.73,45.545 +700999,149.67,43.997 +701000,148.59,42.389 +701001,150.42,47.122 +701002,149.44,45.587 +701003,148.43,43.994 +701004,147.4,42.339 +701005,149.08,47.204 +701006,148.14,45.628 +701007,147.19,43.992 +701008,146.21,42.29 +701009,147.74,47.284 +701010,146.85,45.668 +701011,145.94,43.99 +701012,145.02,42.243 +701013,146.4,47.363 +701014,145.55,45.709 +701015,144.7,43.989 +701016,143.84,42.197 +701017,145.05,47.44 +701018,144.26,45.748 +701019,143.46,43.988 +701020,142.65,42.152 +701021,143.71,47.516 +701022,142.96,45.788 +701023,142.22,43.988 +701024,141.47,42.109 +701025,142.36,47.591 +701026,141.67,45.827 +701027,140.98,43.988 +701028,140.29,42.067 +701029,141.02,47.664 +701030,140.37,45.865 +701031,139.74,43.989 +701032,139.1,42.027 +701033,139.67,47.736 +701034,139.08,45.903 +701035,138.49,43.991 +701036,137.92,41.989 +701037,138.32,47.807 +701038,137.78,45.941 +701039,137.25,43.993 +701040,136.74,41.952 +701041,136.98,47.875 +701042,136.49,45.978 +701043,136.01,43.995 +701044,135.56,41.916 +701045,135.63,47.943 +701046,135.19,46.015 +701047,134.77,43.999 +701048,134.38,41.883 +701049,134.28,48.009 +701050,133.89,46.051 +701051,133.53,44.003 +701052,133.2,41.851 +701053,132.93,48.073 +701054,132.6,46.087 +701055,132.29,44.007 +701056,132.02,41.82 +701057,131.59,48.136 +701058,131.3,46.122 +701059,131.05,44.012 +701060,130.85,41.792 +701061,130.24,48.197 +701062,130,46.157 +701063,129.81,44.018 +701064,129.67,41.765 +701065,128.89,48.256 +701066,128.71,46.191 +701067,128.57,44.024 +701068,128.49,41.741 +701069,127.54,48.314 +701070,127.41,46.225 +701071,127.33,44.031 +701072,127.31,41.718 +701073,126.19,48.371 +701074,126.11,46.258 +701075,126.09,44.039 +701076,126.14,41.696 +701077,124.84,48.426 +701078,124.81,46.291 +701079,124.85,44.047 +701080,124.96,41.677 +701081,123.49,48.479 +701082,123.52,46.323 +701083,123.61,44.056 +701084,123.78,41.66 +701085,122.14,48.53 +701086,122.22,46.354 +701087,122.36,44.065 +701088,122.61,41.645 +701089,120.79,48.58 +701090,120.92,46.385 +701091,121.12,44.076 +701092,121.43,41.631 +701093,119.44,48.628 +701094,119.62,46.416 +701095,119.88,44.087 +701096,120.26,41.62 +701097,118.1,48.675 +701098,118.32,46.446 +701099,118.64,44.098 +701100,119.08,41.611 +701101,116.75,48.719 +701102,117.03,46.476 +701103,117.4,44.111 +701104,117.9,41.603 +701105,115.4,48.762 +701106,115.73,46.504 +701107,116.16,44.124 +701108,116.72,41.598 +701109,114.05,48.804 +701110,114.43,46.533 +701111,114.92,44.137 +701112,115.55,41.595 +701113,112.7,48.843 +701114,113.13,46.561 +701115,113.68,44.152 +701116,114.37,41.594 +701117,111.35,48.881 +701118,111.83,46.588 +701119,112.43,44.167 +701120,113.19,41.594 +701121,110,48.918 +701122,110.54,46.614 +701123,111.19,44.183 +701124,112.01,41.598 +701125,108.66,48.952 +701126,109.24,46.641 +701127,109.95,44.199 +701128,110.83,41.603 +701129,107.31,48.985 +701130,107.94,46.666 +701131,108.71,44.216 +701132,109.65,41.61 +701133,105.96,49.016 +701134,106.64,46.691 +701135,107.46,44.234 +701136,108.47,41.619 +701137,104.62,49.045 +701138,105.35,46.716 +701139,106.22,44.253 +701140,107.29,41.631 +701141,103.27,49.073 +701142,104.05,46.739 +701143,104.98,44.272 +701144,106.11,41.645 +701145,101.93,49.099 +701146,102.75,46.763 +701147,103.73,44.292 +701148,104.92,41.66 +701149,100.58,49.123 +701150,101.45,46.785 +701151,102.49,44.313 +701152,103.74,41.678 +701153,99.236,49.145 +701154,100.16,46.807 +701155,101.24,44.334 +701156,102.55,41.698 +701157,97.892,49.166 +701158,98.86,46.829 +701159,99.998,44.356 +701160,101.37,41.721 +701161,96.549,49.185 +701162,97.563,46.85 +701163,98.752,44.379 +701164,100.18,41.745 +701165,95.207,49.202 +701166,96.267,46.87 +701167,97.507,44.403 +701168,98.988,41.771 +701169,93.865,49.218 +701170,94.97,46.89 +701171,96.26,44.427 +701172,97.797,41.8 +701173,92.524,49.231 +701174,93.674,46.91 +701175,95.013,44.452 +701176,96.605,41.831 +701177,91.183,49.243 +701178,92.378,46.928 +701179,93.766,44.478 +701180,95.412,41.864 +701181,89.844,49.254 +701182,91.083,46.947 +701183,92.518,44.504 +701184,94.217,41.899 +701185,88.505,49.263 +701186,89.788,46.964 +701187,91.27,44.531 +701188,93.02,41.936 +701189,87.167,49.27 +701190,88.493,46.981 +701191,90.021,44.559 +701192,91.822,41.975 +701193,85.83,49.275 +701194,87.198,46.998 +701195,88.772,44.587 +701196,90.623,42.016 +701197,84.494,49.279 +701198,85.903,47.014 +701199,87.522,44.616 +701200,89.421,42.059 +701201,83.159,49.281 +701202,84.609,47.029 +701203,86.272,44.646 +701204,88.218,42.105 +701205,81.825,49.281 +701206,83.315,47.044 +701207,85.021,44.676 +701208,87.013,42.152 +701209,80.492,49.28 +701210,82.022,47.058 +701211,83.769,44.707 +701212,85.807,42.201 +701213,79.16,49.277 +701214,80.729,47.072 +701215,82.517,44.739 +701216,84.598,42.253 +701217,77.829,49.273 +701218,79.436,47.086 +701219,81.265,44.772 +701220,83.388,42.306 +701221,76.499,49.267 +701222,78.143,47.098 +701223,80.011,44.805 +701224,82.176,42.361 +701225,75.17,49.259 +701226,76.851,47.111 +701227,78.757,44.838 +701228,80.961,42.418 +701229,73.842,49.25 +701230,75.56,47.122 +701231,77.503,44.873 +701232,79.745,42.478 +701233,72.516,49.239 +701234,74.268,47.134 +701235,76.248,44.908 +701236,78.527,42.538 +701237,71.191,49.227 +701238,72.977,47.144 +701239,74.992,44.943 +701240,77.306,42.601 +701241,69.867,49.213 +701242,71.687,47.155 +701243,73.735,44.979 +701244,76.084,42.666 +701245,68.544,49.198 +701246,70.397,47.164 +701247,72.478,45.016 +701248,74.859,42.732 +701249,67.223,49.181 +701250,69.107,47.174 +701251,71.22,45.054 +701252,73.632,42.8 +701253,65.902,49.163 +701254,67.818,47.182 +701255,69.961,45.092 +701256,72.403,42.87 +701257,64.584,49.143 +701258,66.529,47.191 +701259,68.702,45.13 +701260,71.172,42.942 +701261,63.266,49.122 +701262,65.241,47.199 +701263,67.442,45.169 +701264,69.939,43.015 +701265,61.95,49.1 +701266,63.953,47.206 +701267,66.182,45.209 +701268,68.703,43.09 +701269,60.636,49.076 +701270,62.665,47.213 +701271,64.92,45.249 +701272,67.465,43.166 +701273,59.323,49.051 +701274,61.379,47.22 +701275,63.658,45.29 +701276,66.225,43.244 +701277,58.011,49.025 +701278,60.092,47.226 +701279,62.395,45.331 +701280,64.983,43.324 +701281,56.701,48.997 +701282,58.806,47.232 +701283,61.131,45.373 +701284,63.738,43.405 +701285,55.392,48.968 +701286,57.521,47.237 +701287,59.867,45.415 +701288,62.491,43.487 +701289,54.085,48.938 +701290,56.236,47.242 +701291,58.602,45.458 +701292,61.242,43.571 +701293,52.78,48.906 +701294,54.951,47.246 +701295,57.336,45.501 +701296,59.99,43.656 +701297,51.476,48.873 +701298,53.668,47.251 +701299,56.069,45.545 +701300,58.736,43.743 +701301,50.174,48.839 +701302,52.384,47.254 +701303,54.802,45.589 +701304,57.48,43.831 +701305,48.873,48.804 +701306,51.101,47.258 +701307,53.534,45.634 +701308,56.222,43.92 +701309,47.574,48.768 +701310,49.819,47.261 +701311,52.265,45.679 +701312,54.961,44.01 +701313,46.277,48.731 +701314,48.537,47.264 +701315,50.995,45.724 +701316,53.698,44.102 +701317,44.981,48.693 +701318,47.256,47.266 +701319,49.725,45.77 +701320,52.432,44.194 +701321,43.687,48.653 +701322,45.976,47.268 +701323,48.453,45.817 +701324,51.164,44.288 +701325,42.395,48.613 +701326,44.695,47.27 +701327,47.181,45.863 +701328,49.894,44.383 +701329,41.104,48.572 +701330,43.416,47.272 +701331,45.909,45.91 +701332,48.622,44.478 +701333,39.815,48.529 +701334,42.137,47.273 +701335,44.635,45.958 +701336,47.347,44.575 +701337,38.528,48.486 +701338,40.859,47.274 +701339,43.361,46.006 +701340,46.07,44.673 +701341,37.243,48.442 +701342,39.581,47.275 +701343,42.085,46.054 +701344,44.791,44.771 +701345,35.96,48.397 +701346,38.303,47.275 +701347,40.809,46.102 +701348,43.51,44.871 +701349,34.678,48.352 +701350,37.027,47.276 +701351,39.533,46.151 +701352,42.226,44.971 +701353,33.398,48.305 +701354,35.751,47.276 +701355,38.255,46.2 +701356,40.94,45.071 +701357,32.12,48.258 +701358,34.475,47.276 +701359,36.977,46.249 +701360,39.652,45.173 +701361,30.844,48.21 +701362,33.2,47.275 +701363,35.698,46.299 +701364,38.362,45.275 +701365,29.57,48.161 +701366,31.926,47.275 +701367,34.418,46.348 +701368,37.07,45.378 +701369,28.297,48.112 +701370,30.652,47.274 +701371,33.137,46.398 +701372,35.775,45.481 +701373,27.027,48.062 +701374,29.379,47.273 +701375,31.856,46.449 +701376,34.479,45.585 +701377,25.758,48.012 +701378,28.106,47.272 +701379,30.574,46.499 +701380,33.18,45.689 +701381,24.491,47.961 +701382,26.834,47.271 +701383,29.291,46.55 +701384,31.879,45.794 +701385,23.226,47.909 +701386,25.562,47.27 +701387,28.007,46.601 +701388,30.577,45.899 +701389,21.963,47.857 +701390,24.291,47.268 +701391,26.723,46.652 +701392,29.272,46.004 +701393,20.702,47.805 +701394,23.021,47.267 +701395,25.438,46.703 +701396,27.965,46.11 +701397,19.443,47.752 +701398,21.751,47.265 +701399,24.152,46.754 +701400,26.656,46.216 +701401,18.185,47.699 +701402,20.482,47.264 +701403,22.865,46.805 +701404,25.346,46.322 +701405,16.93,47.646 +701406,19.213,47.262 +701407,21.578,46.857 +701408,24.033,46.428 +701409,15.676,47.592 +701410,17.945,47.26 +701411,20.29,46.908 +701412,22.719,46.534 +701413,14.424,47.538 +701414,16.678,47.258 +701415,19.001,46.96 +701416,21.402,46.641 +701417,13.174,47.484 +701418,15.411,47.257 +701419,17.712,47.012 +701420,20.084,46.747 +701421,11.926,47.43 +701422,14.144,47.255 +701423,16.421,47.064 +701424,18.764,46.854 +701425,10.68,47.376 +701426,12.878,47.253 +701427,15.13,47.115 +701428,17.443,46.96 +701429,9.436,47.321 +701430,11.613,47.252 +701431,13.839,47.167 +701432,16.119,47.066 +701433,8.1936,47.267 +701434,10.348,47.25 +701435,12.547,47.219 +701436,14.794,47.173 +701437,6.9531,47.212 +701438,9.0835,47.248 +701439,11.254,47.271 +701440,13.468,47.278 +701441,5.7144,47.158 +701442,7.8197,47.247 +701443,9.9603,47.323 +701444,12.139,47.384 +701445,4.4775,47.104 +701446,6.5564,47.245 +701447,8.6661,47.374 +701448,10.809,47.49 +701449,3.2425,47.05 +701450,5.2936,47.244 +701451,7.3712,47.426 +701452,9.4776,47.595 +701453,2.0092,46.996 +701454,4.0313,47.243 +701455,6.0758,47.478 +701456,8.1446,47.699 +701457,0.77773,46.942 +701458,2.7695,47.241 +701459,4.7797,47.529 +701460,6.81,47.804 +701461,359.55,46.888 +701462,1.5082,47.24 +701463,3.483,47.581 +701464,5.474,47.908 +701465,358.32,46.835 +701466,0.24737,47.24 +701467,2.1857,47.632 +701468,4.1365,48.011 +701469,357.09,46.782 +701470,358.99,47.239 +701471,0.88782,47.683 +701472,2.7977,48.114 +701473,355.87,46.729 +701474,357.73,47.238 +701475,359.59,47.734 +701476,1.4575,48.216 +701477,354.65,46.677 +701478,356.47,47.238 +701479,358.29,47.785 +701480,0.11597,48.318 +701481,353.43,46.626 +701482,355.21,47.238 +701483,356.99,47.836 +701484,358.77,48.419 +701485,352.21,46.574 +701486,353.95,47.238 +701487,355.69,47.887 +701488,357.43,48.52 +701489,350.99,46.524 +701490,352.69,47.238 +701491,354.39,47.937 +701492,356.08,48.62 +701493,349.77,46.474 +701494,351.43,47.239 +701495,353.09,47.988 +701496,354.74,48.719 +701497,348.56,46.424 +701498,350.18,47.24 +701499,351.79,48.038 +701500,353.39,48.817 +701501,347.34,46.375 +701502,348.92,47.241 +701503,350.48,48.088 +701504,352.04,48.915 +701505,346.13,46.327 +701506,347.66,47.242 +701507,349.18,48.137 +701508,350.69,49.011 +701509,344.92,46.28 +701510,346.41,47.244 +701511,347.88,48.186 +701512,349.34,49.107 +701513,343.71,46.233 +701514,345.15,47.246 +701515,346.58,48.236 +701516,347.99,49.202 +701517,342.51,46.187 +701518,343.9,47.248 +701519,345.27,48.284 +701520,346.64,49.296 +701521,341.3,46.142 +701522,342.64,47.251 +701523,343.97,48.333 +701524,345.28,49.389 +701525,340.1,46.098 +701526,341.39,47.254 +701527,342.66,48.381 +701528,343.93,49.481 +701529,338.89,46.055 +701530,340.13,47.257 +701531,341.36,48.429 +701532,342.57,49.572 +701533,337.69,46.013 +701534,338.88,47.26 +701535,340.05,48.477 +701536,341.22,49.662 +701537,336.49,45.972 +701538,337.62,47.264 +701539,338.75,48.524 +701540,339.86,49.751 +701541,335.29,45.932 +701542,336.37,47.269 +701543,337.44,48.571 +701544,338.5,49.839 +701545,334.09,45.893 +701546,335.11,47.274 +701547,336.13,48.618 +701548,337.14,49.926 +701549,332.89,45.855 +701550,333.86,47.279 +701551,334.82,48.664 +701552,335.78,50.011 +701553,331.7,45.818 +701554,332.61,47.284 +701555,333.52,48.71 +701556,334.42,50.096 +701557,330.5,45.782 +701558,331.36,47.29 +701559,332.21,48.755 +701560,333.06,50.179 +701561,329.31,45.748 +701562,330.1,47.297 +701563,330.9,48.801 +701564,331.7,50.261 +701565,328.11,45.714 +701566,328.85,47.304 +701567,329.59,48.845 +701568,330.34,50.341 +701569,326.92,45.683 +701570,327.6,47.311 +701571,328.28,48.89 +701572,328.98,50.421 +701573,325.73,45.652 +701574,326.35,47.319 +701575,326.98,48.934 +701576,327.62,50.499 +701577,324.54,45.623 +701578,325.09,47.327 +701579,325.67,48.977 +701580,326.25,50.576 +701581,323.35,45.595 +701582,323.84,47.336 +701583,324.36,49.02 +701584,324.89,50.651 +701585,322.16,45.568 +701586,322.59,47.346 +701587,323.05,49.063 +701588,323.53,50.725 +701589,320.97,45.543 +701590,321.34,47.355 +701591,321.74,49.105 +701592,322.16,50.798 +701593,319.78,45.52 +701594,320.09,47.366 +701595,320.43,49.147 +701596,320.8,50.869 +701597,318.59,45.498 +701598,318.83,47.376 +701599,319.12,49.188 +701600,319.44,50.939 +701601,317.4,45.477 +701602,317.58,47.388 +701603,317.81,49.229 +701604,318.07,51.007 +701605,316.21,45.458 +701606,316.33,47.4 +701607,316.5,49.27 +701608,316.71,51.074 +701609,315.03,45.441 +701610,315.08,47.412 +701611,315.19,49.31 +701612,315.34,51.14 +701613,313.84,45.425 +701614,313.83,47.425 +701615,313.88,49.349 +701616,313.98,51.204 +701617,312.65,45.41 +701618,312.57,47.439 +701619,312.56,49.388 +701620,312.61,51.266 +701621,311.47,45.398 +701622,311.32,47.453 +701623,311.25,49.426 +701624,311.25,51.327 +701625,310.28,45.387 +701626,310.07,47.467 +701627,309.94,49.464 +701628,309.88,51.387 +701629,309.09,45.378 +701630,308.82,47.482 +701631,308.63,49.502 +701632,308.52,51.445 +701633,307.91,45.37 +701634,307.57,47.498 +701635,307.32,49.539 +701636,307.15,51.501 +701637,306.72,45.364 +701638,306.31,47.515 +701639,306.01,49.575 +701640,305.79,51.556 +701641,305.53,45.36 +701642,305.06,47.531 +701643,304.7,49.611 +701644,304.43,51.609 +701645,304.34,45.358 +701646,303.81,47.549 +701647,303.39,49.647 +701648,303.06,51.661 +701649,303.16,45.357 +701650,302.56,47.567 +701651,302.08,49.681 +701652,301.7,51.711 +701653,301.97,45.359 +701654,301.3,47.586 +701655,300.77,49.716 +701656,300.33,51.76 +701657,300.78,45.362 +701658,300.05,47.605 +701659,299.46,49.75 +701660,298.97,51.807 +701661,299.59,45.367 +701662,298.8,47.625 +701663,298.14,49.783 +701664,297.61,51.852 +701665,298.4,45.373 +701666,297.54,47.646 +701667,296.83,49.816 +701668,296.24,51.896 +701669,297.21,45.382 +701670,296.29,47.667 +701671,295.52,49.848 +701672,294.88,51.938 +701673,296.02,45.392 +701674,295.03,47.688 +701675,294.21,49.879 +701676,293.52,51.978 +701677,294.83,45.404 +701678,293.78,47.711 +701679,292.9,49.911 +701680,292.16,52.017 +701681,293.64,45.419 +701682,292.52,47.734 +701683,291.59,49.941 +701684,290.8,52.054 +701685,292.44,45.435 +701686,291.27,47.757 +701687,290.28,49.971 +701688,289.44,52.09 +701689,291.25,45.452 +701690,290.01,47.782 +701691,288.97,50.001 +701692,288.08,52.124 +701693,290.05,45.472 +701694,288.76,47.806 +701695,287.66,50.03 +701696,286.72,52.156 +701697,288.86,45.494 +701698,287.5,47.832 +701699,286.35,50.058 +701700,285.36,52.187 +701701,287.66,45.517 +701702,286.24,47.858 +701703,285.04,50.086 +701704,284,52.216 +701705,286.46,45.543 +701706,284.99,47.885 +701707,283.73,50.113 +701708,282.65,52.243 +701709,285.26,45.57 +701710,283.73,47.912 +701711,282.42,50.14 +701712,281.29,52.269 +701713,284.06,45.599 +701714,282.47,47.94 +701715,281.11,50.166 +701716,279.93,52.293 +701717,282.86,45.63 +701718,281.21,47.968 +701719,279.81,50.192 +701720,278.58,52.316 +701721,281.65,45.663 +701722,279.95,47.997 +701723,278.5,50.217 +701724,277.23,52.337 +701725,280.45,45.698 +701726,278.7,48.027 +701727,277.19,50.241 +701728,275.87,52.356 +701729,279.24,45.735 +701730,277.44,48.058 +701731,275.88,50.266 +701732,274.52,52.374 +701733,278.03,45.773 +701734,276.17,48.089 +701735,274.57,50.289 +701736,273.17,52.39 +701737,276.82,45.813 +701738,274.91,48.12 +701739,273.27,50.312 +701740,271.82,52.405 +701741,275.61,45.856 +701742,273.65,48.152 +701743,271.96,50.334 +701744,270.47,52.418 +701745,274.39,45.9 +701746,272.39,48.185 +701747,270.65,50.356 +701748,269.12,52.429 +701749,273.18,45.945 +701750,271.13,48.218 +701751,269.35,50.378 +701752,267.78,52.439 +701753,271.96,45.993 +701754,269.86,48.252 +701755,268.04,50.399 +701756,266.43,52.448 +701757,270.74,46.042 +701758,268.6,48.287 +701759,266.74,50.419 +701760,265.08,52.454 +701761,269.52,46.093 +701762,267.34,48.322 +701763,265.43,50.439 +701764,263.74,52.46 +701765,268.3,46.146 +701766,266.07,48.358 +701767,264.12,50.458 +701768,262.4,52.464 +701769,267.08,46.201 +701770,264.81,48.394 +701771,262.82,50.477 +701772,261.06,52.466 +701773,265.85,46.257 +701774,263.54,48.431 +701775,261.52,50.495 +701776,259.72,52.467 +701777,264.62,46.315 +701778,262.27,48.468 +701779,260.21,50.513 +701780,258.38,52.466 +701781,263.39,46.375 +701782,261.01,48.506 +701783,258.91,50.53 +701784,257.04,52.464 +701785,262.16,46.436 +701786,259.74,48.544 +701787,257.61,50.547 +701788,255.7,52.46 +701789,260.92,46.499 +701790,258.47,48.583 +701791,256.3,50.564 +701792,254.37,52.455 +701793,259.69,46.564 +701794,257.2,48.623 +701795,255,50.58 +701796,253.03,52.449 +701797,258.45,46.63 +701798,255.93,48.663 +701799,253.7,50.595 +701800,251.7,52.441 +701801,257.21,46.698 +701802,254.66,48.703 +701803,252.4,50.61 +701804,250.37,52.432 +701805,255.96,46.767 +701806,253.39,48.744 +701807,251.1,50.625 +701808,249.04,52.421 +701809,254.72,46.838 +701810,252.11,48.786 +701811,249.8,50.639 +701812,247.71,52.409 +701813,253.47,46.91 +701814,250.84,48.828 +701815,248.5,50.652 +701816,246.39,52.396 +701817,252.22,46.984 +701818,249.57,48.87 +701819,247.2,50.666 +701820,245.06,52.382 +701821,250.97,47.059 +701822,248.29,48.913 +701823,245.9,50.678 +701824,243.74,52.366 +701825,249.71,47.135 +701826,247.02,48.957 +701827,244.6,50.691 +701828,242.41,52.349 +701829,248.46,47.213 +701830,245.74,49.001 +701831,243.31,50.703 +701832,241.09,52.331 +701833,247.2,47.292 +701834,244.47,49.045 +701835,242.01,50.714 +701836,239.77,52.311 +701837,245.94,47.373 +701838,243.19,49.09 +701839,240.71,50.726 +701840,238.46,52.291 +701841,244.67,47.454 +701842,241.91,49.135 +701843,239.42,50.736 +701844,237.14,52.269 +701845,243.41,47.537 +701846,240.63,49.18 +701847,238.12,50.747 +701848,235.83,52.246 +701849,242.14,47.621 +701850,239.35,49.226 +701851,236.83,50.757 +701852,234.51,52.222 +701853,240.87,47.706 +701854,238.07,49.273 +701855,235.53,50.767 +701856,233.2,52.197 +701857,239.6,47.793 +701858,236.79,49.32 +701859,234.24,50.776 +701860,231.89,52.171 +701861,238.32,47.88 +701862,235.51,49.367 +701863,232.95,50.785 +701864,230.59,52.144 +701865,237.04,47.968 +701866,234.23,49.414 +701867,231.65,50.794 +701868,229.28,52.116 +701869,235.76,48.058 +701870,232.94,49.462 +701871,230.36,50.802 +701872,227.98,52.087 +701873,234.48,48.148 +701874,231.66,49.51 +701875,229.07,50.81 +701876,226.67,52.057 +701877,233.2,48.24 +701878,230.37,49.559 +701879,227.78,50.818 +701880,225.37,52.026 +701881,231.91,48.332 +701882,229.09,49.607 +701883,226.49,50.826 +701884,224.08,51.994 +701885,230.62,48.425 +701886,227.8,49.657 +701887,225.2,50.833 +701888,222.78,51.961 +701889,229.33,48.519 +701890,226.51,49.706 +701891,223.91,50.84 +701892,221.48,51.928 +701893,228.04,48.614 +701894,225.22,49.756 +701895,222.62,50.847 +701896,220.19,51.893 +701897,226.74,48.709 +701898,223.94,49.806 +701899,221.33,50.853 +701900,218.9,51.858 +701901,225.44,48.805 +701902,222.65,49.856 +701903,220.05,50.86 +701904,217.61,51.822 +701905,224.14,48.902 +701906,221.36,49.906 +701907,218.76,50.866 +701908,216.32,51.786 +701909,222.84,48.999 +701910,220.06,49.957 +701911,217.47,50.872 +701912,215.03,51.749 +701913,221.53,49.097 +701914,218.77,50.008 +701915,216.19,50.877 +701916,213.75,51.711 +701917,220.23,49.196 +701918,217.48,50.059 +701919,214.9,50.883 +701920,212.47,51.673 +701921,218.92,49.295 +701922,216.19,50.11 +701923,213.62,50.888 +701924,211.19,51.634 +701925,217.61,49.394 +701926,214.89,50.161 +701927,212.33,50.893 +701928,209.91,51.594 +701929,216.29,49.494 +701930,213.6,50.213 +701931,211.05,50.898 +701932,208.63,51.554 +701933,214.98,49.594 +701934,212.3,50.265 +701935,209.77,50.903 +701936,207.36,51.513 +701937,213.66,49.695 +701938,211,50.317 +701939,208.48,50.908 +701940,206.08,51.472 +701941,212.34,49.796 +701942,209.71,50.369 +701943,207.2,50.913 +701944,204.81,51.431 +701945,211.02,49.897 +701946,208.41,50.421 +701947,205.92,50.917 +701948,203.54,51.389 +701949,209.7,49.998 +701950,207.11,50.473 +701951,204.64,50.922 +701952,202.28,51.347 +701953,208.37,50.1 +701954,205.81,50.525 +701955,203.36,50.926 +701956,201.01,51.305 +701957,207.05,50.202 +701958,204.51,50.578 +701959,202.08,50.93 +701960,199.75,51.262 +701961,205.72,50.303 +701962,203.21,50.63 +701963,200.8,50.935 +701964,198.48,51.22 +701965,204.39,50.405 +701966,201.91,50.682 +701967,199.52,50.939 +701968,197.22,51.177 +701969,203.06,50.507 +701970,200.61,50.735 +701971,198.25,50.943 +701972,195.97,51.133 +701973,201.72,50.609 +701974,199.3,50.788 +701975,196.97,50.947 +701976,194.71,51.09 +701977,200.39,50.711 +701978,198,50.84 +701979,195.69,50.951 +701980,193.45,51.047 +701981,199.05,50.812 +701982,196.7,50.893 +701983,194.42,50.956 +701984,192.2,51.003 +701985,197.71,50.914 +701986,195.39,50.945 +701987,193.14,50.96 +701988,190.95,50.96 +701989,196.37,51.015 +701990,194.09,50.998 +701991,191.87,50.964 +701992,189.7,50.917 +701993,195.02,51.116 +701994,192.78,51.05 +701995,190.59,50.968 +701996,188.45,50.873 +701997,193.68,51.217 +701998,191.47,51.102 +701999,189.32,50.973 +702000,187.21,50.83 +702001,192.33,51.318 +702002,190.17,51.155 +702003,188.04,50.977 +702004,185.97,50.787 +702005,190.99,51.418 +702006,188.86,51.207 +702007,186.77,50.982 +702008,184.72,50.744 +702009,189.64,51.518 +702010,187.55,51.259 +702011,185.5,50.986 +702012,183.48,50.701 +702013,188.29,51.617 +702014,186.24,51.311 +702015,184.23,50.991 +702016,182.24,50.659 +702017,186.94,51.716 +702018,184.93,51.363 +702019,182.95,50.996 +702020,181.01,50.617 +702021,185.58,51.815 +702022,183.62,51.415 +702023,181.68,51.001 +702024,179.77,50.575 +702025,184.23,51.913 +702026,182.31,51.466 +702027,180.41,51.006 +702028,178.54,50.533 +702029,182.87,52.01 +702030,181,51.518 +702031,179.14,51.011 +702032,177.31,50.492 +702033,181.52,52.107 +702034,179.69,51.569 +702035,177.87,51.017 +702036,176.08,50.452 +702037,180.16,52.204 +702038,178.37,51.62 +702039,176.6,51.022 +702040,174.85,50.412 +702041,178.8,52.299 +702042,177.06,51.671 +702043,175.33,51.028 +702044,173.62,50.372 +702045,177.44,52.394 +702046,175.75,51.722 +702047,174.07,51.034 +702048,172.39,50.333 +702049,176.08,52.489 +702050,174.43,51.772 +702051,172.8,51.04 +702052,171.17,50.294 +702053,174.71,52.582 +702054,173.12,51.823 +702055,171.53,51.047 +702056,169.95,50.256 +702057,173.35,52.675 +702058,171.8,51.873 +702059,170.26,51.054 +702060,168.72,50.219 +702061,171.99,52.767 +702062,170.49,51.923 +702063,168.99,51.061 +702064,167.5,50.182 +702065,170.62,52.858 +702066,169.17,51.972 +702067,167.73,51.068 +702068,166.28,50.147 +702069,169.25,52.948 +702070,167.86,52.021 +702071,166.46,51.075 +702072,165.07,50.111 +702073,167.89,53.038 +702074,166.54,52.07 +702075,165.2,51.083 +702076,163.85,50.077 +702077,166.52,53.126 +702078,165.22,52.119 +702079,163.93,51.091 +702080,162.64,50.043 +702081,165.15,53.214 +702082,163.91,52.167 +702083,162.66,51.1 +702084,161.42,50.011 +702085,163.78,53.3 +702086,162.59,52.216 +702087,161.4,51.108 +702088,160.21,49.979 +702089,162.41,53.386 +702090,161.27,52.263 +702091,160.13,51.117 +702092,159,49.948 +702093,161.04,53.47 +702094,159.95,52.311 +702095,158.87,51.127 +702096,157.79,49.918 +702097,159.67,53.554 +702098,158.63,52.358 +702099,157.6,51.136 +702100,156.58,49.889 +702101,158.29,53.636 +702102,157.31,52.405 +702103,156.34,51.146 +702104,155.37,49.861 +702105,156.92,53.717 +702106,156,52.451 +702107,155.08,51.157 +702108,154.16,49.834 +702109,155.55,53.797 +702110,154.68,52.497 +702111,153.81,51.168 +702112,152.96,49.808 +702113,154.17,53.876 +702114,153.36,52.543 +702115,152.55,51.179 +702116,151.75,49.784 +702117,152.8,53.954 +702118,152.04,52.588 +702119,151.28,51.19 +702120,150.55,49.76 +702121,151.42,54.031 +702122,150.72,52.633 +702123,150.02,51.202 +702124,149.34,49.738 +702125,150.05,54.106 +702126,149.39,52.678 +702127,148.76,51.214 +702128,148.14,49.716 +702129,148.67,54.18 +702130,148.07,52.722 +702131,147.5,51.227 +702132,146.94,49.696 +702133,147.29,54.253 +702134,146.75,52.765 +702135,146.23,51.24 +702136,145.73,49.677 +702137,145.92,54.325 +702138,145.43,52.809 +702139,144.97,51.254 +702140,144.53,49.66 +702141,144.54,54.395 +702142,144.11,52.851 +702143,143.71,51.268 +702144,143.33,49.644 +702145,143.16,54.464 +702146,142.79,52.894 +702147,142.44,51.283 +702148,142.13,49.629 +702149,141.79,54.532 +702150,141.47,52.936 +702151,141.18,51.297 +702152,140.93,49.615 +702153,140.41,54.598 +702154,140.15,52.977 +702155,139.92,51.313 +702156,139.73,49.603 +702157,139.03,54.663 +702158,138.82,53.018 +702159,138.66,51.329 +702160,138.53,49.592 +702161,137.65,54.727 +702162,137.5,53.059 +702163,137.39,51.345 +702164,137.33,49.582 +702165,136.28,54.789 +702166,136.18,53.099 +702167,136.13,51.362 +702168,136.13,49.574 +702169,134.9,54.85 +702170,134.86,53.139 +702171,134.87,51.379 +702172,134.93,49.568 +702173,133.52,54.91 +702174,133.54,53.178 +702175,133.6,51.397 +702176,133.74,49.563 +702177,132.15,54.968 +702178,132.21,53.217 +702179,132.34,51.415 +702180,132.54,49.559 +702181,130.77,55.024 +702182,130.89,53.255 +702183,131.08,51.434 +702184,131.34,49.557 +702185,129.39,55.079 +702186,129.57,53.293 +702187,129.81,51.453 +702188,130.14,49.556 +702189,128.01,55.133 +702190,128.25,53.33 +702191,128.55,51.473 +702192,128.94,49.557 +702193,126.64,55.185 +702194,126.93,53.367 +702195,127.29,51.493 +702196,127.74,49.559 +702197,125.26,55.236 +702198,125.6,53.403 +702199,126.02,51.514 +702200,126.54,49.563 +702201,123.89,55.285 +702202,124.28,53.439 +702203,124.76,51.535 +702204,125.34,49.569 +702205,122.51,55.333 +702206,122.96,53.474 +702207,123.5,51.557 +702208,124.14,49.576 +702209,121.13,55.379 +702210,121.64,53.509 +702211,122.23,51.579 +702212,122.94,49.585 +702213,119.76,55.424 +702214,120.31,53.543 +702215,120.97,51.602 +702216,121.74,49.595 +702217,118.39,55.467 +702218,118.99,53.577 +702219,119.7,51.626 +702220,120.54,49.607 +702221,117.01,55.509 +702222,117.67,53.611 +702223,118.44,51.65 +702224,119.34,49.621 +702225,115.64,55.549 +702226,116.35,53.643 +702227,117.17,51.674 +702228,118.13,49.636 +702229,114.27,55.588 +702230,115.03,53.675 +702231,115.91,51.699 +702232,116.93,49.653 +702233,112.89,55.625 +702234,113.71,53.707 +702235,114.64,51.725 +702236,115.72,49.671 +702237,111.52,55.661 +702238,112.39,53.738 +702239,113.38,51.751 +702240,114.52,49.691 +702241,110.15,55.695 +702242,111.07,53.769 +702243,112.11,51.777 +702244,113.31,49.713 +702245,108.78,55.728 +702246,109.74,53.799 +702247,110.84,51.805 +702248,112.11,49.737 +702249,107.41,55.759 +702250,108.42,53.829 +702251,109.58,51.832 +702252,110.9,49.762 +702253,106.04,55.788 +702254,107.1,53.858 +702255,108.31,51.86 +702256,109.69,49.789 +702257,104.67,55.816 +702258,105.78,53.887 +702259,107.04,51.889 +702260,108.48,49.817 +702261,103.31,55.843 +702262,104.46,53.915 +702263,105.77,51.918 +702264,107.27,49.847 +702265,101.94,55.868 +702266,103.14,53.942 +702267,104.5,51.948 +702268,106.05,49.879 +702269,100.57,55.892 +702270,101.82,53.969 +702271,103.23,51.979 +702272,104.84,49.912 +702273,99.209,55.914 +702274,100.51,53.996 +702275,101.97,52.01 +702276,103.62,49.947 +702277,97.845,55.934 +702278,99.187,54.022 +702279,100.7,52.041 +702280,102.41,49.984 +702281,96.482,55.953 +702282,97.869,54.047 +702283,99.425,52.073 +702284,101.19,50.022 +702285,95.12,55.971 +702286,96.55,54.072 +702287,98.154,52.105 +702288,99.971,50.062 +702289,93.759,55.987 +702290,95.233,54.097 +702291,96.882,52.138 +702292,98.75,50.104 +702293,92.399,56.002 +702294,93.915,54.121 +702295,95.61,52.172 +702296,97.527,50.147 +702297,91.041,56.015 +702298,92.598,54.144 +702299,94.338,52.206 +702300,96.303,50.191 +702301,89.683,56.027 +702302,91.281,54.167 +702303,93.065,52.241 +702304,95.077,50.238 +702305,88.326,56.037 +702306,89.965,54.19 +702307,91.791,52.276 +702308,93.85,50.286 +702309,86.971,56.046 +702310,88.649,54.212 +702311,90.517,52.311 +702312,92.621,50.335 +702313,85.617,56.053 +702314,87.333,54.233 +702315,89.242,52.347 +702316,91.39,50.386 +702317,84.264,56.059 +702318,86.018,54.255 +702319,87.967,52.384 +702320,90.157,50.438 +702321,82.912,56.064 +702322,84.703,54.275 +702323,86.691,52.421 +702324,88.922,50.493 +702325,81.561,56.067 +702326,83.389,54.295 +702327,85.415,52.458 +702328,87.686,50.548 +702329,80.212,56.069 +702330,82.075,54.315 +702331,84.138,52.496 +702332,86.448,50.605 +702333,78.864,56.07 +702334,80.762,54.334 +702335,82.86,52.535 +702336,85.207,50.664 +702337,77.518,56.069 +702338,79.449,54.353 +702339,81.582,52.574 +702340,83.965,50.723 +702341,76.173,56.067 +702342,78.136,54.371 +702343,80.303,52.613 +702344,82.721,50.785 +702345,74.829,56.064 +702346,76.824,54.389 +702347,79.023,52.653 +702348,81.475,50.848 +702349,73.486,56.059 +702350,75.512,54.406 +702351,77.743,52.693 +702352,80.226,50.912 +702353,72.145,56.053 +702354,74.201,54.423 +702355,76.462,52.734 +702356,78.976,50.977 +702357,70.806,56.046 +702358,72.89,54.44 +702359,75.18,52.775 +702360,77.724,51.044 +702361,69.468,56.038 +702362,71.58,54.456 +702363,73.898,52.817 +702364,76.469,51.112 +702365,68.131,56.028 +702366,70.271,54.472 +702367,72.615,52.859 +702368,75.212,51.181 +702369,66.796,56.017 +702370,68.961,54.487 +702371,71.331,52.901 +702372,73.953,51.252 +702373,65.463,56.005 +702374,67.653,54.502 +702375,70.047,52.944 +702376,72.692,51.324 +702377,64.131,55.992 +702378,66.345,54.517 +702379,68.762,52.987 +702380,71.429,51.397 +702381,62.801,55.978 +702382,65.037,54.531 +702383,67.476,53.031 +702384,70.164,51.471 +702385,61.472,55.963 +702386,63.73,54.545 +702387,66.189,53.075 +702388,68.896,51.547 +702389,60.145,55.946 +702390,62.423,54.558 +702391,64.902,53.119 +702392,67.626,51.623 +702393,58.82,55.929 +702394,61.117,54.571 +702395,63.614,53.164 +702396,66.354,51.701 +702397,57.496,55.911 +702398,59.812,54.584 +702399,62.325,53.209 +702400,65.08,51.78 +702401,56.174,55.891 +702402,58.507,54.596 +702403,61.036,53.254 +702404,63.804,51.86 +702405,54.853,55.871 +702406,57.203,54.608 +702407,59.746,53.3 +702408,62.525,51.94 +702409,53.534,55.849 +702410,55.899,54.62 +702411,58.455,53.346 +702412,61.244,52.022 +702413,52.217,55.827 +702414,54.596,54.631 +702415,57.163,53.393 +702416,59.96,52.105 +702417,50.902,55.804 +702418,53.293,54.642 +702419,55.871,53.439 +702420,58.675,52.188 +702421,49.588,55.78 +702422,51.991,54.653 +702423,54.578,53.486 +702424,57.387,52.273 +702425,48.277,55.755 +702426,50.69,54.664 +702427,53.284,53.533 +702428,56.097,52.358 +702429,46.967,55.729 +702430,49.389,54.674 +702431,51.989,53.581 +702432,54.805,52.444 +702433,45.658,55.702 +702434,48.089,54.684 +702435,50.694,53.629 +702436,53.51,52.531 +702437,44.352,55.675 +702438,46.789,54.694 +702439,49.398,53.677 +702440,52.214,52.619 +702441,43.047,55.647 +702442,45.49,54.703 +702443,48.101,53.725 +702444,50.915,52.707 +702445,41.744,55.618 +702446,44.191,54.712 +702447,46.803,53.773 +702448,49.613,52.796 +702449,40.443,55.589 +702450,42.893,54.722 +702451,45.505,53.822 +702452,48.31,52.886 +702453,39.144,55.559 +702454,41.596,54.73 +702455,44.206,53.871 +702456,47.005,52.976 +702457,37.846,55.528 +702458,40.299,54.739 +702459,42.906,53.92 +702460,45.697,53.067 +702461,36.551,55.497 +702462,39.003,54.747 +702463,41.606,53.969 +702464,44.387,53.158 +702465,35.257,55.465 +702466,37.707,54.756 +702467,40.304,54.019 +702468,43.075,53.25 +702469,33.965,55.433 +702470,36.412,54.764 +702471,39.002,54.068 +702472,41.761,53.343 +702473,32.675,55.4 +702474,35.118,54.772 +702475,37.7,54.118 +702476,40.444,53.435 +702477,31.386,55.366 +702478,33.824,54.779 +702479,36.396,54.168 +702480,39.126,53.529 +702481,30.1,55.333 +702482,32.531,54.787 +702483,35.092,54.218 +702484,37.806,53.622 +702485,28.815,55.298 +702486,31.238,54.794 +702487,33.787,54.268 +702488,36.483,53.716 +702489,27.533,55.264 +702490,29.946,54.802 +702491,32.482,54.318 +702492,35.159,53.81 +702493,26.252,55.229 +702494,28.655,54.809 +702495,31.175,54.368 +702496,33.832,53.904 +702497,24.973,55.194 +702498,27.364,54.816 +702499,29.868,54.419 +702500,32.504,53.999 +702501,23.695,55.158 +702502,26.074,54.823 +702503,28.561,54.469 +702504,31.173,54.094 +702505,22.42,55.123 +702506,24.784,54.83 +702507,27.252,54.52 +702508,29.841,54.188 +702509,21.146,55.087 +702510,23.495,54.837 +702511,25.943,54.57 +702512,28.506,54.283 +702513,19.875,55.051 +702514,22.206,54.844 +702515,24.633,54.621 +702516,27.17,54.378 +702517,18.605,55.015 +702518,20.918,54.851 +702519,23.323,54.671 +702520,25.832,54.473 +702521,17.336,54.978 +702522,19.631,54.858 +702523,22.012,54.722 +702524,24.492,54.569 +702525,16.07,54.942 +702526,18.344,54.865 +702527,20.7,54.773 +702528,23.151,54.664 +702529,14.806,54.906 +702530,17.057,54.871 +702531,19.388,54.823 +702532,21.807,54.758 +702533,13.543,54.869 +702534,15.772,54.878 +702535,18.075,54.874 +702536,20.462,54.853 +702537,12.282,54.833 +702538,14.486,54.885 +702539,16.761,54.924 +702540,19.116,54.948 +702541,11.022,54.797 +702542,13.202,54.892 +702543,15.447,54.975 +702544,17.767,55.042 +702545,9.7649,54.76 +702546,11.917,54.899 +702547,14.132,55.025 +702548,16.417,55.137 +702549,8.5091,54.724 +702550,10.634,54.906 +702551,12.816,55.075 +702552,15.065,55.231 +702553,7.255,54.688 +702554,9.3503,54.913 +702555,11.5,55.125 +702556,13.712,55.324 +702557,6.0026,54.653 +702558,8.0676,54.92 +702559,10.184,55.176 +702560,12.357,55.418 +702561,4.7519,54.617 +702562,6.7854,54.927 +702563,8.8664,55.226 +702564,11.001,55.511 +702565,3.5028,54.582 +702566,5.5036,54.934 +702567,7.5485,55.275 +702568,9.643,55.603 +702569,2.2553,54.547 +702570,4.2223,54.942 +702571,6.2302,55.325 +702572,8.2837,55.696 +702573,1.0094,54.512 +702574,2.9415,54.949 +702575,4.9112,55.375 +702576,6.9231,55.787 +702577,359.77,54.478 +702578,1.6612,54.957 +702579,3.5918,55.424 +702580,5.5612,55.879 +702581,358.52,54.444 +702582,0.38128,54.965 +702583,2.2718,55.473 +702584,4.1979,55.969 +702585,357.28,54.411 +702586,359.1,54.972 +702587,0.9513,55.523 +702588,2.8333,56.06 +702589,356.04,54.378 +702590,357.82,54.981 +702591,359.63,55.571 +702592,1.4674,56.149 +702593,354.8,54.346 +702594,356.54,54.989 +702595,358.31,55.62 +702596,0.10038,56.238 +702597,353.57,54.314 +702598,355.27,54.997 +702599,356.99,55.669 +702600,358.73,56.326 +702601,352.33,54.282 +702602,353.99,55.006 +702603,355.66,55.717 +702604,357.36,56.414 +702605,351.1,54.252 +702606,352.71,55.015 +702607,354.34,55.765 +702608,355.99,56.501 +702609,349.87,54.222 +702610,351.43,55.024 +702611,353.02,55.813 +702612,354.62,56.587 +702613,348.63,54.192 +702614,350.16,55.033 +702615,351.69,55.86 +702616,353.25,56.673 +702617,347.4,54.163 +702618,348.88,55.043 +702619,350.37,55.908 +702620,351.87,56.758 +702621,346.18,54.135 +702622,347.6,55.052 +702623,349.05,55.955 +702624,350.5,56.841 +702625,344.95,54.108 +702626,346.33,55.062 +702627,347.72,56.002 +702628,349.12,56.925 +702629,343.72,54.082 +702630,345.05,55.073 +702631,346.4,56.048 +702632,347.75,57.007 +702633,342.5,54.056 +702634,343.78,55.083 +702635,345.07,56.094 +702636,346.37,57.088 +702637,341.27,54.031 +702638,342.5,55.094 +702639,343.74,56.14 +702640,344.99,57.168 +702641,340.05,54.007 +702642,341.23,55.105 +702643,342.42,56.186 +702644,343.61,57.248 +702645,338.83,53.984 +702646,339.96,55.116 +702647,341.09,56.231 +702648,342.24,57.326 +702649,337.61,53.962 +702650,338.68,55.128 +702651,339.76,56.276 +702652,340.86,57.404 +702653,336.39,53.94 +702654,337.41,55.14 +702655,338.44,56.321 +702656,339.47,57.48 +702657,335.17,53.92 +702658,336.13,55.153 +702659,337.11,56.365 +702660,338.09,57.556 +702661,333.95,53.901 +702662,334.86,55.165 +702663,335.78,56.409 +702664,336.71,57.63 +702665,332.74,53.882 +702666,333.59,55.178 +702667,334.45,56.452 +702668,335.33,57.703 +702669,331.52,53.865 +702670,332.32,55.192 +702671,333.12,56.495 +702672,333.95,57.775 +702673,330.3,53.849 +702674,331.04,55.205 +702675,331.8,56.538 +702676,332.56,57.846 +702677,329.09,53.834 +702678,329.77,55.22 +702679,330.47,56.581 +702680,331.18,57.916 +702681,327.88,53.82 +702682,328.5,55.234 +702683,329.14,56.623 +702684,329.79,57.985 +702685,326.66,53.807 +702686,327.23,55.249 +702687,327.81,56.664 +702688,328.41,58.053 +702689,325.45,53.796 +702690,325.95,55.264 +702691,326.48,56.705 +702692,327.03,58.119 +702693,324.24,53.785 +702694,324.68,55.28 +702695,325.15,56.746 +702696,325.64,58.184 +702697,323.03,53.776 +702698,323.41,55.296 +702699,323.82,56.787 +702700,324.26,58.248 +702701,321.81,53.768 +702702,322.14,55.312 +702703,322.49,56.827 +702704,322.87,58.311 +702705,320.6,53.761 +702706,320.87,55.329 +702707,321.16,56.866 +702708,321.48,58.372 +702709,319.39,53.756 +702710,319.59,55.346 +702711,319.83,56.905 +702712,320.1,58.432 +702713,318.18,53.751 +702714,318.32,55.364 +702715,318.5,56.944 +702716,318.71,58.491 +702717,316.97,53.749 +702718,317.05,55.382 +702719,317.17,56.982 +702720,317.33,58.549 +702721,315.76,53.747 +702722,315.78,55.401 +702723,315.84,57.02 +702724,315.94,58.605 +702725,314.55,53.747 +702726,314.51,55.42 +702727,314.51,57.057 +702728,314.56,58.66 +702729,313.34,53.748 +702730,313.23,55.439 +702731,313.18,57.094 +702732,313.17,58.713 +702733,312.13,53.75 +702734,311.96,55.459 +702735,311.85,57.13 +702736,311.78,58.766 +702737,310.92,53.754 +702738,310.69,55.479 +702739,310.52,57.166 +702740,310.4,58.817 +702741,309.71,53.759 +702742,309.42,55.5 +702743,309.19,57.202 +702744,309.01,58.866 +702745,308.5,53.766 +702746,308.15,55.521 +702747,307.86,57.237 +702748,307.63,58.914 +702749,307.29,53.774 +702750,306.87,55.543 +702751,306.53,57.271 +702752,306.24,58.961 +702753,306.08,53.783 +702754,305.6,55.565 +702755,305.2,57.305 +702756,304.86,59.006 +702757,304.87,53.794 +702758,304.33,55.588 +702759,303.87,57.339 +702760,303.48,59.05 +702761,303.66,53.807 +702762,303.06,55.611 +702763,302.54,57.372 +702764,302.09,59.093 +702765,302.45,53.82 +702766,301.78,55.634 +702767,301.21,57.405 +702768,300.71,59.134 +702769,301.24,53.836 +702770,300.51,55.658 +702771,299.88,57.437 +702772,299.33,59.174 +702773,300.02,53.852 +702774,299.24,55.683 +702775,298.55,57.469 +702776,297.94,59.212 +702777,298.81,53.87 +702778,297.96,55.708 +702779,297.22,57.5 +702780,296.56,59.249 +702781,297.6,53.89 +702782,296.69,55.733 +702783,295.89,57.53 +702784,295.18,59.284 +702785,296.38,53.911 +702786,295.41,55.759 +702787,294.56,57.561 +702788,293.8,59.319 +702789,295.17,53.934 +702790,294.14,55.785 +702791,293.23,57.59 +702792,292.42,59.351 +702793,293.95,53.958 +702794,292.86,55.812 +702795,291.9,57.62 +702796,291.04,59.382 +702797,292.74,53.983 +702798,291.59,55.84 +702799,290.57,57.648 +702800,289.66,59.412 +702801,291.52,54.01 +702802,290.31,55.867 +702803,289.24,57.677 +702804,288.28,59.441 +702805,290.3,54.039 +702806,289.04,55.896 +702807,287.91,57.704 +702808,286.91,59.468 +702809,289.08,54.069 +702810,287.76,55.924 +702811,286.59,57.732 +702812,285.53,59.493 +702813,287.86,54.1 +702814,286.49,55.954 +702815,285.26,57.758 +702816,284.15,59.517 +702817,286.64,54.133 +702818,285.21,55.983 +702819,283.93,57.785 +702820,282.78,59.54 +702821,285.42,54.168 +702822,283.93,56.014 +702823,282.6,57.81 +702824,281.4,59.562 +702825,284.19,54.203 +702826,282.65,56.044 +702827,281.28,57.836 +702828,280.03,59.581 +702829,282.97,54.241 +702830,281.38,56.075 +702831,279.95,57.861 +702832,278.66,59.6 +702833,281.74,54.279 +702834,280.1,56.107 +702835,278.62,57.885 +702836,277.29,59.617 +702837,280.51,54.32 +702838,278.82,56.139 +702839,277.3,57.909 +702840,275.92,59.633 +702841,279.28,54.361 +702842,277.54,56.171 +702843,275.97,57.932 +702844,274.55,59.647 +702845,278.05,54.404 +702846,276.26,56.204 +702847,274.65,57.955 +702848,273.18,59.661 +702849,276.82,54.449 +702850,274.98,56.238 +702851,273.32,57.978 +702852,271.81,59.672 +702853,275.59,54.495 +702854,273.7,56.272 +702855,272,58 +702856,270.45,59.683 +702857,274.35,54.542 +702858,272.42,56.306 +702859,270.67,58.021 +702860,269.08,59.692 +702861,273.12,54.591 +702862,271.14,56.341 +702863,269.35,58.042 +702864,267.72,59.699 +702865,271.88,54.641 +702866,269.85,56.376 +702867,268.02,58.063 +702868,266.36,59.706 +702869,270.64,54.692 +702870,268.57,56.412 +702871,266.7,58.083 +702872,264.99,59.711 +702873,269.4,54.745 +702874,267.29,56.448 +702875,265.38,58.103 +702876,263.63,59.715 +702877,268.15,54.799 +702878,266,56.484 +702879,264.06,58.122 +702880,262.28,59.717 +702881,266.91,54.854 +702882,264.72,56.521 +702883,262.73,58.141 +702884,260.92,59.719 +702885,265.66,54.911 +702886,263.43,56.558 +702887,261.41,58.16 +702888,259.56,59.719 +702889,264.41,54.969 +702890,262.15,56.596 +702891,260.09,58.178 +702892,258.21,59.718 +702893,263.16,55.028 +702894,260.86,56.634 +702895,258.77,58.195 +702896,256.85,59.715 +702897,261.91,55.088 +702898,259.58,56.673 +702899,257.45,58.213 +702900,255.5,59.712 +702901,260.66,55.15 +702902,258.29,56.712 +702903,256.13,58.229 +702904,254.15,59.707 +702905,259.4,55.213 +702906,257,56.751 +702907,254.81,58.246 +702908,252.8,59.701 +702909,258.14,55.277 +702910,255.71,56.791 +702911,253.49,58.262 +702912,251.45,59.694 +702913,256.88,55.342 +702914,254.42,56.831 +702915,252.18,58.278 +702916,250.11,59.686 +702917,255.62,55.408 +702918,253.13,56.871 +702919,250.86,58.293 +702920,248.76,59.677 +702921,254.36,55.475 +702922,251.84,56.912 +702923,249.54,58.308 +702924,247.42,59.666 +702925,253.09,55.544 +702926,250.55,56.953 +702927,248.23,58.322 +702928,246.08,59.655 +702929,251.82,55.613 +702930,249.26,56.994 +702931,246.91,58.336 +702932,244.74,59.643 +702933,250.55,55.684 +702934,247.97,57.036 +702935,245.59,58.35 +702936,243.4,59.629 +702937,249.28,55.755 +702938,246.67,57.078 +702939,244.28,58.364 +702940,242.06,59.615 +702941,248,55.828 +702942,245.38,57.121 +702943,242.96,58.377 +702944,240.73,59.599 +702945,246.73,55.901 +702946,244.08,57.163 +702947,241.65,58.389 +702948,239.39,59.583 +702949,245.45,55.976 +702950,242.79,57.206 +702951,240.34,58.402 +702952,238.06,59.566 +702953,244.17,56.051 +702954,241.49,57.25 +702955,239.02,58.414 +702956,236.73,59.548 +702957,242.89,56.127 +702958,240.2,57.293 +702959,237.71,58.426 +702960,235.4,59.528 +702961,241.6,56.204 +702962,238.9,57.337 +702963,236.4,58.437 +702964,234.07,59.509 +702965,240.31,56.282 +702966,237.6,57.381 +702967,235.09,58.449 +702968,232.75,59.488 +702969,239.02,56.36 +702970,236.3,57.426 +702971,233.78,58.46 +702972,231.42,59.466 +702973,237.73,56.44 +702974,235,57.47 +702975,232.47,58.47 +702976,230.1,59.444 +702977,236.44,56.52 +702978,233.7,57.515 +702979,231.16,58.481 +702980,228.78,59.421 +702981,235.14,56.601 +702982,232.4,57.56 +702983,229.85,58.491 +702984,227.46,59.397 +702985,233.85,56.682 +702986,231.1,57.605 +702987,228.54,58.501 +702988,226.15,59.372 +702989,232.55,56.764 +702990,229.8,57.651 +702991,227.24,58.511 +702992,224.83,59.347 +702993,231.24,56.847 +702994,228.49,57.697 +702995,225.93,58.52 +702996,223.52,59.321 +702997,229.94,56.93 +702998,227.19,57.742 +702999,224.62,58.53 +703000,222.21,59.295 +703001,228.63,57.014 +703002,225.89,57.788 +703003,223.32,58.539 +703004,220.9,59.268 +703005,227.32,57.098 +703006,224.58,57.835 +703007,222.01,58.548 +703008,219.59,59.24 +703009,226.01,57.183 +703010,223.27,57.881 +703011,220.71,58.556 +703012,218.28,59.212 +703013,224.7,57.268 +703014,221.97,57.927 +703015,219.4,58.565 +703016,216.98,59.183 +703017,223.38,57.354 +703018,220.66,57.974 +703019,218.1,58.573 +703020,215.68,59.154 +703021,222.07,57.44 +703022,219.35,58.021 +703023,216.8,58.582 +703024,214.38,59.125 +703025,220.75,57.526 +703026,218.04,58.068 +703027,215.49,58.59 +703028,213.08,59.095 +703029,219.43,57.613 +703030,216.73,58.115 +703031,214.19,58.598 +703032,211.78,59.064 +703033,218.1,57.7 +703034,215.42,58.162 +703035,212.89,58.606 +703036,210.48,59.033 +703037,216.78,57.787 +703038,214.11,58.209 +703039,211.59,58.613 +703040,209.19,59.002 +703041,215.45,57.874 +703042,212.8,58.256 +703043,210.29,58.621 +703044,207.9,58.971 +703045,214.12,57.962 +703046,211.49,58.303 +703047,208.99,58.628 +703048,206.61,58.939 +703049,212.79,58.049 +703050,210.18,58.351 +703051,207.69,58.636 +703052,205.32,58.908 +703053,211.46,58.137 +703054,208.86,58.398 +703055,206.4,58.643 +703056,204.04,58.875 +703057,210.12,58.225 +703058,207.55,58.445 +703059,205.1,58.651 +703060,202.75,58.843 +703061,208.79,58.313 +703062,206.23,58.493 +703063,203.8,58.658 +703064,201.47,58.811 +703065,207.45,58.401 +703066,204.92,58.54 +703067,202.5,58.665 +703068,200.19,58.778 +703069,206.11,58.489 +703070,203.6,58.588 +703071,201.21,58.672 +703072,198.91,58.746 +703073,204.76,58.577 +703074,202.29,58.635 +703075,199.91,58.68 +703076,197.63,58.713 +703077,203.42,58.665 +703078,200.97,58.682 +703079,198.62,58.687 +703080,196.36,58.681 +703081,202.07,58.753 +703082,199.65,58.73 +703083,197.33,58.694 +703084,195.08,58.648 +703085,200.72,58.84 +703086,198.33,58.777 +703087,196.03,58.701 +703088,193.81,58.616 +703089,199.37,58.928 +703090,197.01,58.824 +703091,194.74,58.708 +703092,192.54,58.583 +703093,198.02,59.015 +703094,195.69,58.871 +703095,193.45,58.716 +703096,191.27,58.551 +703097,196.67,59.102 +703098,194.37,58.918 +703099,192.15,58.723 +703100,190,58.519 +703101,195.32,59.188 +703102,193.05,58.965 +703103,190.86,58.73 +703104,188.74,58.486 +703105,193.96,59.275 +703106,191.73,59.012 +703107,189.57,58.738 +703108,187.48,58.455 +703109,192.6,59.361 +703110,190.41,59.059 +703111,188.28,58.745 +703112,186.21,58.423 +703113,191.24,59.447 +703114,189.09,59.105 +703115,186.99,58.753 +703116,184.95,58.392 +703117,189.88,59.532 +703118,187.76,59.152 +703119,185.7,58.761 +703120,183.7,58.361 +703121,188.52,59.617 +703122,186.44,59.198 +703123,184.41,58.769 +703124,182.44,58.33 +703125,187.16,59.701 +703126,185.11,59.244 +703127,183.12,58.776 +703128,181.18,58.3 +703129,185.79,59.785 +703130,183.79,59.29 +703131,181.84,58.785 +703132,179.93,58.27 +703133,184.42,59.868 +703134,182.46,59.336 +703135,180.55,58.793 +703136,178.68,58.24 +703137,183.06,59.951 +703138,181.14,59.382 +703139,179.26,58.801 +703140,177.43,58.211 +703141,181.69,60.033 +703142,179.81,59.427 +703143,177.98,58.81 +703144,176.18,58.183 +703145,180.32,60.115 +703146,178.48,59.472 +703147,176.69,58.818 +703148,174.93,58.155 +703149,178.95,60.196 +703150,177.16,59.517 +703151,175.4,58.827 +703152,173.68,58.127 +703153,177.57,60.277 +703154,175.83,59.562 +703155,174.12,58.836 +703156,172.44,58.1 +703157,176.2,60.356 +703158,174.5,59.607 +703159,172.83,58.845 +703160,171.19,58.074 +703161,174.82,60.435 +703162,173.17,59.651 +703163,171.55,58.855 +703164,169.95,58.048 +703165,173.45,60.513 +703166,171.84,59.695 +703167,170.26,58.865 +703168,168.71,58.023 +703169,172.07,60.591 +703170,170.51,59.739 +703171,168.98,58.874 +703172,167.47,57.999 +703173,170.69,60.668 +703174,169.18,59.783 +703175,167.7,58.885 +703176,166.23,57.975 +703177,169.31,60.743 +703178,167.85,59.826 +703179,166.41,58.895 +703180,165,57.952 +703181,167.93,60.818 +703182,166.52,59.869 +703183,165.13,58.906 +703184,163.76,57.93 +703185,166.55,60.893 +703186,165.19,59.912 +703187,163.85,58.916 +703188,162.53,57.908 +703189,165.17,60.966 +703190,163.86,59.954 +703191,162.57,58.928 +703192,161.29,57.888 +703193,163.79,61.038 +703194,162.53,59.996 +703195,161.29,58.939 +703196,160.06,57.868 +703197,162.41,61.11 +703198,161.2,60.038 +703199,160,58.951 +703200,158.83,57.849 +703201,161.02,61.18 +703202,159.86,60.079 +703203,158.72,58.963 +703204,157.6,57.831 +703205,159.64,61.25 +703206,158.53,60.121 +703207,157.44,58.975 +703208,156.37,57.814 +703209,158.25,61.318 +703210,157.2,60.161 +703211,156.16,58.988 +703212,155.14,57.798 +703213,156.87,61.386 +703214,155.86,60.202 +703215,154.88,59 +703216,153.91,57.783 +703217,155.48,61.452 +703218,154.53,60.242 +703219,153.6,59.014 +703220,152.69,57.769 +703221,154.09,61.518 +703222,153.2,60.282 +703223,152.32,59.027 +703224,151.46,57.756 +703225,152.7,61.582 +703226,151.86,60.321 +703227,151.04,59.041 +703228,150.24,57.744 +703229,151.32,61.645 +703230,150.53,60.36 +703231,149.76,59.055 +703232,149.01,57.732 +703233,149.93,61.707 +703234,149.19,60.399 +703235,148.48,59.07 +703236,147.79,57.722 +703237,148.54,61.769 +703238,147.86,60.437 +703239,147.2,59.085 +703240,146.56,57.714 +703241,147.15,61.828 +703242,146.53,60.475 +703243,145.92,59.1 +703244,145.34,57.706 +703245,145.76,61.887 +703246,145.19,60.512 +703247,144.64,59.116 +703248,144.12,57.699 +703249,144.37,61.945 +703250,143.86,60.549 +703251,143.36,59.132 +703252,142.9,57.693 +703253,142.98,62.001 +703254,142.52,60.586 +703255,142.09,59.148 +703256,141.68,57.689 +703257,141.59,62.056 +703258,141.18,60.622 +703259,140.81,59.165 +703260,140.46,57.686 +703261,140.2,62.11 +703262,139.85,60.658 +703263,139.53,59.182 +703264,139.24,57.684 +703265,138.81,62.163 +703266,138.51,60.693 +703267,138.25,59.2 +703268,138.02,57.683 +703269,137.42,62.215 +703270,137.18,60.728 +703271,136.97,59.218 +703272,136.8,57.684 +703273,136.03,62.265 +703274,135.84,60.763 +703275,135.69,59.236 +703276,135.58,57.685 +703277,134.64,62.314 +703278,134.51,60.797 +703279,134.41,59.255 +703280,134.36,57.688 +703281,133.25,62.362 +703282,133.17,60.831 +703283,133.14,59.274 +703284,133.14,57.692 +703285,131.86,62.408 +703286,131.84,60.864 +703287,131.86,59.294 +703288,131.92,57.698 +703289,130.47,62.453 +703290,130.5,60.897 +703291,130.58,59.314 +703292,130.7,57.704 +703293,129.07,62.497 +703294,129.16,60.929 +703295,129.3,59.334 +703296,129.48,57.712 +703297,127.68,62.54 +703298,127.83,60.961 +703299,128.02,59.355 +703300,128.27,57.722 +703301,126.29,62.581 +703302,126.49,60.993 +703303,126.74,59.376 +703304,127.05,57.732 +703305,124.91,62.621 +703306,125.16,61.024 +703307,125.46,59.398 +703308,125.83,57.744 +703309,123.52,62.66 +703310,123.82,61.054 +703311,124.18,59.42 +703312,124.61,57.758 +703313,122.13,62.697 +703314,122.49,61.084 +703315,122.9,59.443 +703316,123.39,57.772 +703317,120.74,62.733 +703318,121.15,61.114 +703319,121.62,59.466 +703320,122.17,57.788 +703321,119.35,62.768 +703322,119.82,61.143 +703323,120.34,59.489 +703324,120.95,57.806 +703325,117.96,62.801 +703326,118.48,61.172 +703327,119.07,59.513 +703328,119.73,57.824 +703329,116.58,62.833 +703330,117.14,61.2 +703331,117.79,59.537 +703332,118.51,57.844 +703333,115.19,62.864 +703334,115.81,61.228 +703335,116.51,59.562 +703336,117.28,57.866 +703337,113.8,62.893 +703338,114.48,61.255 +703339,115.22,59.587 +703340,116.06,57.889 +703341,112.42,62.921 +703342,113.14,61.282 +703343,113.94,59.613 +703344,114.84,57.913 +703345,111.03,62.948 +703346,111.81,61.309 +703347,112.66,59.639 +703348,113.62,57.938 +703349,109.65,62.973 +703350,110.47,61.335 +703351,111.38,59.665 +703352,112.39,57.965 +703353,108.26,62.997 +703354,109.14,61.36 +703355,110.1,59.692 +703356,111.17,57.993 +703357,106.88,63.02 +703358,107.8,61.385 +703359,108.82,59.72 +703360,109.94,58.023 +703361,105.5,63.042 +703362,106.47,61.41 +703363,107.54,59.747 +703364,108.71,58.054 +703365,104.12,63.062 +703366,105.14,61.434 +703367,106.26,59.775 +703368,107.49,58.086 +703369,102.74,63.08 +703370,103.8,61.458 +703371,104.97,59.804 +703372,106.26,58.119 +703373,101.36,63.098 +703374,102.47,61.481 +703375,103.69,59.833 +703376,105.03,58.154 +703377,99.977,63.114 +703378,101.14,61.504 +703379,102.41,59.863 +703380,103.8,58.19 +703381,98.599,63.129 +703382,99.806,61.526 +703383,101.12,59.893 +703384,102.57,58.228 +703385,97.222,63.142 +703386,98.474,61.548 +703387,99.839,59.923 +703388,101.33,58.267 +703389,95.846,63.154 +703390,97.143,61.569 +703391,98.554,59.954 +703392,100.1,58.307 +703393,94.471,63.165 +703394,95.811,61.59 +703395,97.27,59.985 +703396,98.864,58.349 +703397,93.097,63.175 +703398,94.48,61.611 +703399,95.984,60.017 +703400,97.628,58.391 +703401,91.724,63.184 +703402,93.15,61.631 +703403,94.699,60.049 +703404,96.39,58.436 +703405,90.352,63.191 +703406,91.819,61.651 +703407,93.413,60.081 +703408,95.151,58.481 +703409,88.981,63.197 +703410,90.49,61.67 +703411,92.126,60.114 +703412,93.911,58.527 +703413,87.611,63.201 +703414,89.16,61.689 +703415,90.839,60.147 +703416,92.669,58.575 +703417,86.242,63.205 +703418,87.831,61.707 +703419,89.551,60.181 +703420,91.426,58.624 +703421,84.875,63.207 +703422,86.502,61.725 +703423,88.263,60.215 +703424,90.181,58.675 +703425,83.509,63.208 +703426,85.174,61.743 +703427,86.975,60.249 +703428,88.935,58.726 +703429,82.144,63.208 +703430,83.846,61.76 +703431,85.686,60.284 +703432,87.687,58.779 +703433,80.78,63.207 +703434,82.518,61.777 +703435,84.396,60.319 +703436,86.438,58.833 +703437,79.418,63.205 +703438,81.191,61.793 +703439,83.106,60.354 +703440,85.186,58.888 +703441,78.057,63.201 +703442,79.865,61.809 +703443,81.816,60.39 +703444,83.934,58.944 +703445,76.697,63.197 +703446,78.539,61.825 +703447,80.524,60.427 +703448,82.679,59.001 +703449,75.338,63.191 +703450,77.213,61.84 +703451,79.233,60.463 +703452,81.423,59.059 +703453,73.981,63.184 +703454,75.888,61.855 +703455,77.94,60.5 +703456,80.165,59.119 +703457,72.626,63.177 +703458,74.563,61.869 +703459,76.647,60.537 +703460,78.906,59.179 +703461,71.272,63.168 +703462,73.239,61.884 +703463,75.354,60.575 +703464,77.644,59.241 +703465,69.919,63.158 +703466,71.915,61.897 +703467,74.06,60.613 +703468,76.381,59.304 +703469,68.568,63.147 +703470,70.592,61.911 +703471,72.765,60.651 +703472,75.116,59.367 +703473,67.218,63.135 +703474,69.269,61.924 +703475,71.47,60.69 +703476,73.849,59.432 +703477,65.87,63.122 +703478,67.947,61.937 +703479,70.174,60.729 +703480,72.58,59.497 +703481,64.523,63.109 +703482,66.625,61.949 +703483,68.878,60.768 +703484,71.309,59.564 +703485,63.178,63.094 +703486,65.304,61.961 +703487,67.581,60.807 +703488,70.036,59.631 +703489,61.835,63.078 +703490,63.983,61.973 +703491,66.283,60.847 +703492,68.761,59.699 +703493,60.493,63.062 +703494,62.663,61.984 +703495,64.985,60.887 +703496,67.485,59.768 +703497,59.152,63.045 +703498,61.343,61.996 +703499,63.686,60.927 +703500,66.206,59.838 +703501,57.814,63.026 +703502,60.024,62.007 +703503,62.386,60.968 +703504,64.925,59.909 +703505,56.476,63.007 +703506,58.706,62.017 +703507,61.086,61.009 +703508,63.643,59.98 +703509,55.141,62.988 +703510,57.388,62.028 +703511,59.785,61.05 +703512,62.358,60.053 +703513,53.807,62.967 +703514,56.071,62.038 +703515,58.483,61.091 +703516,61.071,60.126 +703517,52.475,62.946 +703518,54.754,62.047 +703519,57.181,61.132 +703520,59.782,60.199 +703521,51.145,62.924 +703522,53.438,62.057 +703523,55.878,61.174 +703524,58.492,60.274 +703525,49.816,62.901 +703526,52.122,62.066 +703527,54.574,61.216 +703528,57.199,60.349 +703529,48.489,62.878 +703530,50.807,62.076 +703531,53.27,61.258 +703532,55.904,60.424 +703533,47.163,62.854 +703534,49.493,62.084 +703535,51.965,61.3 +703536,54.607,60.501 +703537,45.84,62.829 +703538,48.179,62.093 +703539,50.66,61.343 +703540,53.308,60.577 +703541,44.518,62.804 +703542,46.865,62.102 +703543,49.353,61.386 +703544,52.006,60.655 +703545,43.198,62.779 +703546,45.553,62.11 +703547,48.046,61.428 +703548,50.703,60.733 +703549,41.879,62.752 +703550,44.241,62.118 +703551,46.739,61.471 +703552,49.398,60.811 +703553,40.563,62.726 +703554,42.929,62.126 +703555,45.43,61.514 +703556,48.091,60.89 +703557,39.248,62.698 +703558,41.618,62.134 +703559,44.121,61.558 +703560,46.781,60.969 +703561,37.935,62.671 +703562,40.308,62.141 +703563,42.812,61.601 +703564,45.47,61.048 +703565,36.624,62.643 +703566,38.998,62.149 +703567,41.501,61.645 +703568,44.156,61.128 +703569,35.314,62.614 +703570,37.689,62.156 +703571,40.19,61.688 +703572,42.841,61.208 +703573,34.006,62.585 +703574,36.38,62.163 +703575,38.879,61.732 +703576,41.523,61.289 +703577,32.7,62.556 +703578,35.072,62.17 +703579,37.566,61.776 +703580,40.204,61.37 +703581,31.396,62.527 +703582,33.765,62.177 +703583,36.253,61.819 +703584,38.882,61.451 +703585,30.094,62.497 +703586,32.458,62.184 +703587,34.94,61.863 +703588,37.558,61.532 +703589,28.793,62.467 +703590,31.152,62.191 +703591,33.625,61.907 +703592,36.233,61.614 +703593,27.495,62.437 +703594,29.846,62.198 +703595,32.31,61.951 +703596,34.905,61.695 +703597,26.197,62.406 +703598,28.541,62.205 +703599,30.994,61.995 +703600,33.576,61.777 +703601,24.902,62.376 +703602,27.237,62.211 +703603,29.678,62.039 +703604,32.244,61.859 +703605,23.609,62.345 +703606,25.933,62.218 +703607,28.361,62.083 +703608,30.911,61.94 +703609,22.317,62.314 +703610,24.63,62.224 +703611,27.044,62.127 +703612,29.575,62.022 +703613,21.027,62.283 +703614,23.327,62.231 +703615,25.725,62.171 +703616,28.238,62.104 +703617,19.739,62.252 +703618,22.025,62.237 +703619,24.406,62.215 +703620,26.899,62.186 +703621,18.452,62.221 +703622,20.723,62.244 +703623,23.087,62.259 +703624,25.558,62.268 +703625,17.168,62.191 +703626,19.422,62.25 +703627,21.767,62.303 +703628,24.216,62.349 +703629,15.885,62.16 +703630,18.122,62.256 +703631,20.446,62.347 +703632,22.871,62.431 +703633,14.604,62.129 +703634,16.822,62.263 +703635,19.125,62.391 +703636,21.525,62.512 +703637,13.324,62.098 +703638,15.523,62.269 +703639,17.803,62.435 +703640,20.177,62.593 +703641,12.046,62.068 +703642,14.224,62.276 +703643,16.48,62.479 +703644,18.827,62.674 +703645,10.77,62.037 +703646,12.926,62.283 +703647,15.157,62.522 +703648,17.475,62.755 +703649,9.4956,62.007 +703650,11.628,62.289 +703651,13.833,62.566 +703652,16.122,62.835 +703653,8.2228,61.977 +703654,10.331,62.296 +703655,12.509,62.609 +703656,14.767,62.915 +703657,6.9517,61.948 +703658,9.034,62.303 +703659,11.184,62.653 +703660,13.411,62.995 +703661,5.6821,61.918 +703662,7.7379,62.31 +703663,9.8583,62.696 +703664,12.053,63.074 +703665,4.4142,61.889 +703666,6.4423,62.317 +703667,8.5323,62.739 +703668,10.693,63.153 +703669,3.1479,61.861 +703670,5.1471,62.324 +703671,7.2058,62.782 +703672,9.3324,63.232 +703673,1.8832,61.832 +703674,3.8525,62.331 +703675,5.8787,62.824 +703676,7.9698,63.31 +703677,0.61999,61.804 +703678,2.5584,62.339 +703679,4.551,62.867 +703680,6.6057,63.388 +703681,359.36,61.777 +703682,1.2647,62.346 +703683,3.2229,62.909 +703684,5.2402,63.465 +703685,358.1,61.75 +703686,359.97,62.354 +703687,1.8943,62.952 +703688,3.8733,63.542 +703689,356.84,61.723 +703690,358.68,62.362 +703691,0.56512,62.994 +703692,2.505,63.618 +703693,355.58,61.697 +703694,357.39,62.37 +703695,359.24,63.035 +703696,1.1354,63.693 +703697,354.33,61.672 +703698,356.09,62.378 +703699,357.91,63.077 +703700,359.76,63.768 +703701,353.07,61.647 +703702,354.8,62.386 +703703,356.57,63.119 +703704,358.39,63.842 +703705,351.82,61.623 +703706,353.51,62.395 +703707,355.24,63.16 +703708,357.02,63.916 +703709,350.57,61.599 +703710,352.22,62.404 +703711,353.91,63.201 +703712,355.64,63.988 +703713,349.32,61.576 +703714,350.93,62.412 +703715,352.58,63.241 +703716,354.27,64.061 +703717,348.07,61.554 +703718,349.64,62.422 +703719,351.25,63.282 +703720,352.89,64.132 +703721,346.82,61.532 +703722,348.35,62.431 +703723,349.92,63.322 +703724,351.51,64.203 +703725,345.57,61.511 +703726,347.06,62.441 +703727,348.58,63.362 +703728,350.13,64.273 +703729,344.33,61.491 +703730,345.77,62.451 +703731,347.25,63.401 +703732,348.75,64.342 +703733,343.09,61.471 +703734,344.49,62.461 +703735,345.91,63.441 +703736,347.37,64.41 +703737,341.84,61.453 +703738,343.2,62.471 +703739,344.58,63.48 +703740,345.99,64.477 +703741,340.6,61.435 +703742,341.91,62.482 +703743,343.25,63.519 +703744,344.61,64.544 +703745,339.36,61.418 +703746,340.62,62.493 +703747,341.91,63.557 +703748,343.22,64.609 +703749,338.12,61.402 +703750,339.34,62.504 +703751,340.58,63.595 +703752,341.84,64.674 +703753,336.88,61.387 +703754,338.05,62.516 +703755,339.24,63.633 +703756,340.45,64.738 +703757,335.65,61.373 +703758,336.76,62.527 +703759,337.9,63.671 +703760,339.07,64.801 +703761,334.41,61.359 +703762,335.48,62.539 +703763,336.57,63.708 +703764,337.68,64.863 +703765,333.17,61.347 +703766,334.19,62.552 +703767,335.23,63.745 +703768,336.29,64.923 +703769,331.94,61.336 +703770,332.91,62.565 +703771,333.89,63.781 +703772,334.91,64.983 +703773,330.7,61.325 +703774,331.62,62.578 +703775,332.56,63.817 +703776,333.52,65.042 +703777,329.47,61.316 +703778,330.34,62.591 +703779,331.22,63.853 +703780,332.13,65.1 +703781,328.24,61.307 +703782,329.05,62.605 +703783,329.88,63.888 +703784,330.74,65.157 +703785,327.01,61.3 +703786,327.77,62.619 +703787,328.55,63.923 +703788,329.35,65.212 +703789,325.78,61.294 +703790,326.48,62.633 +703791,327.21,63.958 +703792,327.96,65.267 +703793,324.55,61.289 +703794,325.2,62.648 +703795,325.87,63.992 +703796,326.57,65.32 +703797,323.32,61.285 +703798,323.91,62.663 +703799,324.53,64.026 +703800,325.17,65.373 +703801,322.09,61.282 +703802,322.63,62.679 +703803,323.19,64.06 +703804,323.78,65.424 +703805,320.86,61.28 +703806,321.34,62.694 +703807,321.85,64.093 +703808,322.39,65.474 +703809,319.63,61.279 +703810,320.06,62.711 +703811,320.52,64.126 +703812,321,65.523 +703813,318.4,61.28 +703814,318.78,62.727 +703815,319.18,64.158 +703816,319.61,65.571 +703817,317.18,61.281 +703818,317.49,62.744 +703819,317.84,64.19 +703820,318.21,65.617 +703821,315.95,61.284 +703822,316.21,62.762 +703823,316.5,64.221 +703824,316.82,65.663 +703825,314.72,61.288 +703826,314.93,62.779 +703827,315.16,64.252 +703828,315.43,65.707 +703829,313.5,61.294 +703830,313.64,62.797 +703831,313.82,64.283 +703832,314.03,65.75 +703833,312.27,61.3 +703834,312.36,62.816 +703835,312.48,64.313 +703836,312.64,65.792 +703837,311.04,61.308 +703838,311.07,62.835 +703839,311.14,64.343 +703840,311.25,65.832 +703841,309.82,61.317 +703842,309.79,62.854 +703843,309.8,64.373 +703844,309.85,65.871 +703845,308.59,61.327 +703846,308.51,62.874 +703847,308.47,64.402 +703848,308.46,65.91 +703849,307.36,61.338 +703850,307.22,62.894 +703851,307.13,64.43 +703852,307.07,65.946 +703853,306.14,61.351 +703854,305.94,62.914 +703855,305.79,64.458 +703856,305.68,65.982 +703857,304.91,61.365 +703858,304.66,62.935 +703859,304.45,64.486 +703860,304.28,66.016 +703861,303.69,61.38 +703862,303.37,62.957 +703863,303.11,64.513 +703864,302.89,66.049 +703865,302.46,61.397 +703866,302.09,62.978 +703867,301.77,64.54 +703868,301.5,66.081 +703869,301.23,61.414 +703870,300.8,63.001 +703871,300.43,64.567 +703872,300.11,66.112 +703873,300.01,61.433 +703874,299.52,63.023 +703875,299.09,64.593 +703876,298.72,66.141 +703877,298.78,61.454 +703878,298.24,63.046 +703879,297.75,64.618 +703880,297.33,66.169 +703881,297.55,61.475 +703882,296.95,63.07 +703883,296.41,64.643 +703884,295.94,66.196 +703885,296.32,61.498 +703886,295.67,63.093 +703887,295.08,64.668 +703888,294.55,66.221 +703889,295.09,61.522 +703890,294.38,63.118 +703891,293.74,64.692 +703892,293.16,66.246 +703893,293.87,61.548 +703894,293.1,63.142 +703895,292.4,64.716 +703896,291.77,66.269 +703897,292.64,61.574 +703898,291.81,63.167 +703899,291.06,64.739 +703900,290.38,66.29 +703901,291.41,61.602 +703902,290.53,63.193 +703903,289.72,64.762 +703904,288.99,66.311 +703905,290.17,61.632 +703906,289.24,63.219 +703907,288.39,64.785 +703908,287.6,66.33 +703909,288.94,61.662 +703910,287.95,63.245 +703911,287.05,64.807 +703912,286.22,66.348 +703913,287.71,61.694 +703914,286.67,63.271 +703915,285.71,64.829 +703916,284.83,66.365 +703917,286.48,61.727 +703918,285.38,63.299 +703919,284.38,64.85 +703920,283.45,66.38 +703921,285.24,61.761 +703922,284.1,63.326 +703923,283.04,64.87 +703924,282.06,66.394 +703925,284.01,61.797 +703926,282.81,63.354 +703927,281.7,64.891 +703928,280.68,66.407 +703929,282.77,61.834 +703930,281.52,63.382 +703931,280.37,64.911 +703932,279.3,66.419 +703933,281.54,61.872 +703934,280.23,63.411 +703935,279.03,64.93 +703936,277.91,66.429 +703937,280.3,61.911 +703938,278.95,63.44 +703939,277.69,64.949 +703940,276.53,66.439 +703941,279.06,61.952 +703942,277.66,63.469 +703943,276.36,64.968 +703944,275.15,66.447 +703945,277.82,61.993 +703946,276.37,63.499 +703947,275.02,64.986 +703948,273.77,66.454 +703949,276.58,62.036 +703950,275.08,63.53 +703951,273.69,65.004 +703952,272.4,66.459 +703953,275.34,62.08 +703954,273.79,63.56 +703955,272.35,65.022 +703956,271.02,66.464 +703957,274.09,62.126 +703958,272.5,63.591 +703959,271.02,65.039 +703960,269.64,66.467 +703961,272.85,62.172 +703962,271.21,63.623 +703963,269.69,65.055 +703964,268.27,66.469 +703965,271.6,62.22 +703966,269.92,63.654 +703967,268.35,65.072 +703968,266.89,66.471 +703969,270.36,62.268 +703970,268.63,63.686 +703971,267.02,65.087 +703972,265.52,66.47 +703973,269.11,62.318 +703974,267.34,63.719 +703975,265.69,65.103 +703976,264.15,66.469 +703977,267.86,62.369 +703978,266.04,63.752 +703979,264.36,65.118 +703980,262.78,66.467 +703981,266.61,62.421 +703982,264.75,63.785 +703983,263.02,65.133 +703984,261.41,66.464 +703985,265.36,62.474 +703986,263.46,63.819 +703987,261.69,65.147 +703988,260.04,66.459 +703989,264.1,62.528 +703990,262.16,63.852 +703991,260.36,65.161 +703992,258.68,66.454 +703993,262.85,62.583 +703994,260.87,63.887 +703995,259.03,65.175 +703996,257.31,66.447 +703997,261.59,62.64 +703998,259.58,63.921 +703999,257.7,65.188 +704000,255.95,66.44 +704001,260.33,62.697 +704002,258.28,63.956 +704003,256.37,65.201 +704004,254.58,66.431 +704005,259.07,62.755 +704006,256.99,63.991 +704007,255.04,65.214 +704008,253.22,66.422 +704009,257.81,62.814 +704010,255.69,64.027 +704011,253.71,65.226 +704012,251.86,66.411 +704013,256.54,62.874 +704014,254.39,64.062 +704015,252.39,65.238 +704016,250.5,66.399 +704017,255.28,62.935 +704018,253.1,64.099 +704019,251.06,65.249 +704020,249.15,66.387 +704021,254.01,62.997 +704022,251.8,64.135 +704023,249.73,65.261 +704024,247.79,66.374 +704025,252.74,63.06 +704026,250.5,64.172 +704027,248.4,65.272 +704028,246.44,66.36 +704029,251.47,63.123 +704030,249.2,64.209 +704031,247.08,65.282 +704032,245.08,66.344 +704033,250.2,63.188 +704034,247.9,64.246 +704035,245.75,65.293 +704036,243.73,66.328 +704037,248.92,63.253 +704038,246.6,64.283 +704039,244.43,65.303 +704040,242.38,66.312 +704041,247.65,63.319 +704042,245.3,64.321 +704043,243.1,65.313 +704044,241.03,66.294 +704045,246.37,63.386 +704046,244,64.359 +704047,241.78,65.322 +704048,239.69,66.276 +704049,245.09,63.453 +704050,242.7,64.397 +704051,240.45,65.332 +704052,238.34,66.256 +704053,243.81,63.522 +704054,241.4,64.435 +704055,239.13,65.341 +704056,237,66.237 +704057,242.53,63.591 +704058,240.09,64.474 +704059,237.81,65.349 +704060,235.66,66.216 +704061,241.24,63.66 +704062,238.79,64.513 +704063,236.49,65.358 +704064,234.32,66.195 +704065,239.95,63.73 +704066,237.48,64.552 +704067,235.17,65.366 +704068,232.98,66.173 +704069,238.66,63.801 +704070,236.18,64.591 +704071,233.84,65.374 +704072,231.64,66.15 +704073,237.37,63.873 +704074,234.87,64.631 +704075,232.52,65.382 +704076,230.3,66.127 +704077,236.08,63.945 +704078,233.57,64.67 +704079,231.2,65.39 +704080,228.97,66.103 +704081,234.78,64.017 +704082,232.26,64.71 +704083,229.89,65.397 +704084,227.64,66.078 +704085,233.49,64.09 +704086,230.95,64.75 +704087,228.57,65.405 +704088,226.31,66.053 +704089,232.19,64.164 +704090,229.64,64.79 +704091,227.25,65.412 +704092,224.98,66.028 +704093,230.89,64.238 +704094,228.34,64.831 +704095,225.93,65.419 +704096,223.65,66.002 +704097,229.58,64.312 +704098,227.03,64.871 +704099,224.61,65.425 +704100,222.33,65.975 +704101,228.28,64.387 +704102,225.72,64.912 +704103,223.3,65.432 +704104,221,65.948 +704105,226.97,64.462 +704106,224.41,64.952 +704107,221.98,65.438 +704108,219.68,65.921 +704109,225.66,64.537 +704110,223.09,64.993 +704111,220.67,65.445 +704112,218.36,65.893 +704113,224.35,64.613 +704114,221.78,65.034 +704115,219.35,65.451 +704116,217.04,65.865 +704117,223.04,64.689 +704118,220.47,65.075 +704119,218.04,65.457 +704120,215.72,65.836 +704121,221.72,64.765 +704122,219.16,65.116 +704123,216.73,65.463 +704124,214.41,65.808 +704125,220.41,64.842 +704126,217.84,65.157 +704127,215.41,65.469 +704128,213.1,65.779 +704129,219.09,64.918 +704130,216.53,65.198 +704131,214.1,65.475 +704132,211.78,65.749 +704133,217.77,64.995 +704134,215.21,65.239 +704135,212.79,65.48 +704136,210.48,65.72 +704137,216.44,65.072 +704138,213.9,65.28 +704139,211.48,65.486 +704140,209.17,65.69 +704141,215.12,65.149 +704142,212.58,65.322 +704143,210.17,65.492 +704144,207.86,65.66 +704145,213.79,65.227 +704146,211.26,65.363 +704147,208.86,65.497 +704148,206.56,65.63 +704149,212.46,65.304 +704150,209.95,65.404 +704151,207.55,65.503 +704152,205.25,65.6 +704153,211.13,65.381 +704154,208.63,65.445 +704155,206.24,65.508 +704156,203.95,65.57 +704157,209.8,65.458 +704158,207.31,65.487 +704159,204.93,65.514 +704160,202.65,65.54 +704161,208.47,65.535 +704162,205.99,65.528 +704163,203.62,65.519 +704164,201.36,65.509 +704165,207.13,65.612 +704166,204.67,65.569 +704167,202.32,65.525 +704168,200.06,65.479 +704169,205.79,65.689 +704170,203.35,65.611 +704171,201.01,65.53 +704172,198.77,65.449 +704173,204.45,65.766 +704174,202.03,65.652 +704175,199.7,65.535 +704176,197.47,65.418 +704177,203.11,65.843 +704178,200.7,65.693 +704179,198.4,65.541 +704180,196.18,65.388 +704181,201.77,65.92 +704182,199.38,65.734 +704183,197.09,65.546 +704184,194.89,65.358 +704185,200.42,65.996 +704186,198.06,65.775 +704187,195.79,65.552 +704188,193.61,65.328 +704189,199.07,66.072 +704190,196.73,65.816 +704191,194.49,65.558 +704192,192.32,65.299 +704193,197.73,66.148 +704194,195.41,65.856 +704195,193.18,65.563 +704196,191.04,65.269 +704197,196.38,66.223 +704198,194.08,65.897 +704199,191.88,65.569 +704200,189.75,65.24 +704201,195.02,66.299 +704202,192.76,65.938 +704203,190.58,65.575 +704204,188.47,65.211 +704205,193.67,66.373 +704206,191.43,65.978 +704207,189.28,65.581 +704208,187.19,65.182 +704209,192.31,66.448 +704210,190.11,66.019 +704211,187.98,65.587 +704212,185.92,65.154 +704213,190.96,66.522 +704214,188.78,66.059 +704215,186.68,65.593 +704216,184.64,65.126 +704217,189.6,66.596 +704218,187.45,66.099 +704219,185.38,65.599 +704220,183.37,65.098 +704221,188.24,66.669 +704222,186.12,66.139 +704223,184.08,65.606 +704224,182.09,65.071 +704225,186.88,66.741 +704226,184.79,66.178 +704227,182.78,65.612 +704228,180.82,65.044 +704229,185.51,66.814 +704230,183.46,66.218 +704231,181.48,65.619 +704232,179.55,65.018 +704233,184.15,66.885 +704234,182.13,66.257 +704235,180.18,65.626 +704236,178.29,64.992 +704237,182.78,66.956 +704238,180.8,66.296 +704239,178.88,65.633 +704240,177.02,64.967 +704241,181.42,67.027 +704242,179.47,66.335 +704243,177.59,65.64 +704244,175.75,64.942 +704245,180.05,67.097 +704246,178.14,66.374 +704247,176.29,65.647 +704248,174.49,64.918 +704249,178.68,67.166 +704250,176.81,66.413 +704251,174.99,65.655 +704252,173.23,64.894 +704253,177.31,67.234 +704254,175.48,66.451 +704255,173.7,65.663 +704256,171.97,64.871 +704257,175.93,67.302 +704258,174.14,66.489 +704259,172.4,65.671 +704260,170.71,64.849 +704261,174.56,67.37 +704262,172.81,66.527 +704263,171.11,65.679 +704264,169.45,64.827 +704265,173.19,67.436 +704266,171.48,66.565 +704267,169.81,65.687 +704268,168.19,64.806 +704269,171.81,67.502 +704270,170.14,66.602 +704271,168.52,65.696 +704272,166.94,64.785 +704273,170.43,67.567 +704274,168.81,66.639 +704275,167.23,65.705 +704276,165.68,64.766 +704277,169.05,67.631 +704278,167.47,66.676 +704279,165.93,65.714 +704280,164.43,64.747 +704281,167.67,67.694 +704282,166.14,66.712 +704283,164.64,65.723 +704284,163.18,64.729 +704285,166.29,67.757 +704286,164.8,66.749 +704287,163.35,65.733 +704288,161.93,64.712 +704289,164.91,67.818 +704290,163.46,66.785 +704291,162.06,65.743 +704292,160.68,64.695 +704293,163.53,67.879 +704294,162.13,66.82 +704295,160.76,65.753 +704296,159.43,64.68 +704297,162.15,67.939 +704298,160.79,66.856 +704299,159.47,65.764 +704300,158.18,64.665 +704301,160.76,67.998 +704302,159.45,66.891 +704303,158.18,65.774 +704304,156.94,64.651 +704305,159.38,68.056 +704306,158.12,66.925 +704307,156.89,65.786 +704308,155.69,64.638 +704309,157.99,68.113 +704310,156.78,66.96 +704311,155.6,65.797 +704312,154.45,64.626 +704313,156.6,68.169 +704314,155.44,66.994 +704315,154.31,65.809 +704316,153.2,64.615 +704317,155.22,68.224 +704318,154.1,67.028 +704319,153.02,65.821 +704320,151.96,64.605 +704321,153.83,68.278 +704322,152.76,67.061 +704323,151.73,65.833 +704324,150.72,64.596 +704325,152.44,68.332 +704326,151.43,67.094 +704327,150.44,65.846 +704328,149.48,64.588 +704329,151.05,68.384 +704330,150.09,67.127 +704331,149.15,65.858 +704332,148.24,64.581 +704333,149.66,68.435 +704334,148.75,67.159 +704335,147.86,65.872 +704336,147,64.575 +704337,148.27,68.485 +704338,147.41,67.191 +704339,146.57,65.885 +704340,145.76,64.57 +704341,146.88,68.534 +704342,146.07,67.223 +704343,145.28,65.899 +704344,144.53,64.566 +704345,145.49,68.581 +704346,144.73,67.254 +704347,144,65.914 +704348,143.29,64.563 +704349,144.09,68.628 +704350,143.39,67.285 +704351,142.71,65.929 +704352,142.05,64.561 +704353,142.7,68.674 +704354,142.05,67.315 +704355,141.42,65.944 +704356,140.82,64.561 +704357,141.31,68.718 +704358,140.71,67.345 +704359,140.13,65.959 +704360,139.58,64.561 +704361,139.92,68.762 +704362,139.37,67.375 +704363,138.84,65.975 +704364,138.35,64.563 +704365,138.52,68.804 +704366,138.03,67.404 +704367,137.56,65.991 +704368,137.11,64.565 +704369,137.13,68.845 +704370,136.68,67.433 +704371,136.27,66.008 +704372,135.88,64.569 +704373,135.73,68.885 +704374,135.34,67.462 +704375,134.98,66.025 +704376,134.65,64.575 +704377,134.34,68.924 +704378,134,67.49 +704379,133.69,66.042 +704380,133.41,64.581 +704381,132.95,68.961 +704382,132.66,67.518 +704383,132.41,66.06 +704384,132.18,64.588 +704385,131.55,68.998 +704386,131.32,67.545 +704387,131.12,66.078 +704388,130.95,64.597 +704389,130.16,69.033 +704390,129.98,67.572 +704391,129.83,66.096 +704392,129.72,64.607 +704393,128.76,69.067 +704394,128.64,67.598 +704395,128.54,66.115 +704396,128.48,64.618 +704397,127.37,69.1 +704398,127.3,67.625 +704399,127.26,66.134 +704400,127.25,64.63 +704401,125.98,69.132 +704402,125.96,67.65 +704403,125.97,66.154 +704404,126.02,64.644 +704405,124.58,69.162 +704406,124.61,67.676 +704407,124.68,66.174 +704408,124.79,64.659 +704409,123.19,69.191 +704410,123.27,67.7 +704411,123.39,66.194 +704412,123.56,64.674 +704413,121.8,69.219 +704414,121.93,67.725 +704415,122.11,66.215 +704416,122.32,64.692 +704417,120.4,69.246 +704418,120.59,67.749 +704419,120.82,66.237 +704420,121.09,64.71 +704421,119.01,69.272 +704422,119.25,67.773 +704423,119.53,66.258 +704424,119.86,64.73 +704425,117.62,69.296 +704426,117.91,67.796 +704427,118.24,66.28 +704428,118.63,64.751 +704429,116.22,69.319 +704430,116.57,67.819 +704431,116.96,66.303 +704432,117.39,64.773 +704433,114.83,69.341 +704434,115.23,67.841 +704435,115.67,66.326 +704436,116.16,64.796 +704437,113.44,69.362 +704438,113.89,67.863 +704439,114.38,66.349 +704440,114.93,64.821 +704441,112.05,69.381 +704442,112.54,67.885 +704443,113.09,66.373 +704444,113.69,64.847 +704445,110.66,69.399 +704446,111.2,67.906 +704447,111.8,66.397 +704448,112.46,64.874 +704449,109.27,69.417 +704450,109.86,67.926 +704451,110.51,66.421 +704452,111.22,64.902 +704453,107.88,69.432 +704454,108.52,67.947 +704455,109.23,66.446 +704456,109.99,64.932 +704457,106.49,69.447 +704458,107.18,67.967 +704459,107.94,66.471 +704460,108.75,64.963 +704461,105.1,69.461 +704462,105.84,67.986 +704463,106.65,66.497 +704464,107.52,64.995 +704465,103.71,69.473 +704466,104.5,68.005 +704467,105.36,66.523 +704468,106.28,65.028 +704469,102.32,69.484 +704470,103.17,68.024 +704471,104.07,66.55 +704472,105.04,65.062 +704473,100.94,69.494 +704474,101.83,68.042 +704475,102.78,66.576 +704476,103.8,65.098 +704477,99.553,69.503 +704478,100.49,68.06 +704479,101.49,66.604 +704480,102.57,65.135 +704481,98.168,69.51 +704482,99.148,68.077 +704483,100.2,66.631 +704484,101.33,65.173 +704485,96.783,69.517 +704486,97.81,68.094 +704487,98.908,66.659 +704488,100.08,65.212 +704489,95.4,69.522 +704490,96.472,68.111 +704491,97.617,66.688 +704492,98.843,65.252 +704493,94.018,69.526 +704494,95.134,68.127 +704495,96.326,66.716 +704496,97.601,65.294 +704497,92.636,69.529 +704498,93.796,68.143 +704499,95.034,66.745 +704500,96.357,65.337 +704501,91.255,69.531 +704502,92.459,68.159 +704503,93.742,66.775 +704504,95.112,65.38 +704505,89.876,69.532 +704506,91.122,68.174 +704507,92.449,66.805 +704508,93.867,65.425 +704509,88.497,69.531 +704510,89.785,68.189 +704511,91.157,66.835 +704512,92.62,65.471 +704513,87.119,69.53 +704514,88.449,68.203 +704515,89.864,66.866 +704516,91.372,65.518 +704517,85.743,69.527 +704518,87.113,68.217 +704519,88.57,66.897 +704520,90.123,65.566 +704521,84.367,69.524 +704522,85.778,68.231 +704523,87.276,66.928 +704524,88.873,65.616 +704525,82.993,69.519 +704526,84.442,68.244 +704527,85.982,66.959 +704528,87.622,65.666 +704529,81.62,69.514 +704530,83.108,68.257 +704531,84.687,66.991 +704532,86.369,65.717 +704533,80.248,69.507 +704534,81.773,68.27 +704535,83.392,67.024 +704536,85.115,65.77 +704537,78.877,69.499 +704538,80.439,68.282 +704539,82.096,67.056 +704540,83.86,65.823 +704541,77.507,69.491 +704542,79.105,68.294 +704543,80.8,67.089 +704544,82.603,65.877 +704545,76.138,69.481 +704546,77.772,68.306 +704547,79.503,67.122 +704548,81.345,65.933 +704549,74.771,69.471 +704550,76.439,68.317 +704551,78.206,67.156 +704552,80.085,65.989 +704553,73.405,69.459 +704554,75.107,68.328 +704555,76.909,67.19 +704556,78.824,66.046 +704557,72.041,69.447 +704558,73.775,68.339 +704559,75.611,67.224 +704560,77.562,66.104 +704561,70.677,69.434 +704562,72.443,68.349 +704563,74.312,67.258 +704564,76.298,66.163 +704565,69.315,69.42 +704566,71.112,68.359 +704567,73.013,67.293 +704568,75.032,66.223 +704569,67.955,69.405 +704570,69.782,68.369 +704571,71.714,67.328 +704572,73.765,66.283 +704573,66.596,69.389 +704574,68.452,68.378 +704575,70.414,67.363 +704576,72.497,66.345 +704577,65.238,69.372 +704578,67.122,68.388 +704579,69.113,67.399 +704580,71.226,66.407 +704581,63.881,69.355 +704582,65.793,68.397 +704583,67.812,67.435 +704584,69.954,66.47 +704585,62.527,69.336 +704586,64.464,68.405 +704587,66.511,67.471 +704588,68.68,66.534 +704589,61.173,69.317 +704590,63.136,68.414 +704591,65.208,67.507 +704592,67.405,66.598 +704593,59.821,69.298 +704594,61.808,68.422 +704595,63.906,67.543 +704596,66.128,66.663 +704597,58.471,69.277 +704598,60.481,68.43 +704599,62.602,67.58 +704600,64.849,66.729 +704601,57.122,69.256 +704602,59.155,68.438 +704603,61.298,67.617 +704604,63.569,66.796 +704605,55.775,69.235 +704606,57.829,68.445 +704607,59.994,67.654 +704608,62.286,66.863 +704609,54.429,69.212 +704610,56.503,68.452 +704611,58.689,67.692 +704612,61.002,66.931 +704613,53.084,69.189 +704614,55.178,68.459 +704615,57.383,67.729 +704616,59.716,66.999 +704617,51.742,69.165 +704618,53.853,68.466 +704619,56.077,67.767 +704620,58.428,67.068 +704621,50.401,69.141 +704622,52.529,68.473 +704623,54.77,67.805 +704624,57.139,67.138 +704625,49.061,69.117 +704626,51.206,68.479 +704627,53.462,67.843 +704628,55.847,67.208 +704629,47.723,69.091 +704630,49.883,68.486 +704631,52.154,67.881 +704632,54.554,67.278 +704633,46.387,69.066 +704634,48.561,68.492 +704635,50.846,67.919 +704636,53.259,67.349 +704637,45.053,69.039 +704638,47.239,68.498 +704639,49.536,67.958 +704640,51.962,67.42 +704641,43.72,69.013 +704642,45.918,68.504 +704643,48.227,67.996 +704644,50.663,67.492 +704645,42.389,68.986 +704646,44.597,68.509 +704647,46.916,68.035 +704648,49.362,67.564 +704649,41.059,68.958 +704650,43.277,68.515 +704651,45.605,68.074 +704652,48.059,67.636 +704653,39.731,68.93 +704654,41.958,68.52 +704655,44.293,68.113 +704656,46.755,67.709 +704657,38.405,68.902 +704658,40.639,68.526 +704659,42.981,68.152 +704660,45.448,67.782 +704661,37.08,68.874 +704662,39.32,68.531 +704663,41.668,68.191 +704664,44.14,67.855 +704665,35.757,68.845 +704666,38.002,68.536 +704667,40.354,68.231 +704668,42.83,67.929 +704669,34.436,68.816 +704670,36.685,68.541 +704671,39.04,68.27 +704672,41.517,68.003 +704673,33.117,68.787 +704674,35.369,68.546 +704675,37.725,68.309 +704676,40.203,68.077 +704677,31.799,68.757 +704678,34.052,68.551 +704679,36.41,68.349 +704680,38.887,68.151 +704681,30.483,68.728 +704682,32.737,68.556 +704683,35.094,68.388 +704684,37.569,68.225 +704685,29.169,68.698 +704686,31.422,68.561 +704687,33.777,68.428 +704688,36.249,68.299 +704689,27.856,68.668 +704690,30.108,68.565 +704691,32.459,68.467 +704692,34.928,68.374 +704693,26.545,68.638 +704694,28.794,68.57 +704695,31.141,68.507 +704696,33.604,68.448 +704697,25.236,68.608 +704698,27.481,68.575 +704699,29.823,68.546 +704700,32.278,68.522 +704701,23.928,68.578 +704702,26.168,68.58 +704703,28.504,68.586 +704704,30.951,68.597 +704705,22.623,68.548 +704706,24.856,68.584 +704707,27.184,68.625 +704708,29.622,68.671 +704709,21.319,68.518 +704710,23.544,68.589 +704711,25.863,68.665 +704712,28.291,68.745 +704713,20.016,68.488 +704714,22.233,68.594 +704715,24.542,68.704 +704716,26.958,68.819 +704717,18.715,68.458 +704718,20.923,68.598 +704719,23.221,68.743 +704720,25.623,68.893 +704721,17.416,68.428 +704722,19.613,68.603 +704723,21.898,68.783 +704724,24.286,68.967 +704725,16.119,68.399 +704726,18.304,68.608 +704727,20.576,68.822 +704728,22.948,69.041 +704729,14.823,68.369 +704730,16.995,68.613 +704731,19.252,68.861 +704732,21.608,69.114 +704733,13.529,68.34 +704734,15.687,68.618 +704735,17.928,68.9 +704736,20.266,69.187 +704737,12.237,68.311 +704738,14.379,68.623 +704739,16.603,68.94 +704740,18.922,69.26 +704741,10.946,68.282 +704742,13.072,68.628 +704743,15.278,68.978 +704744,17.577,69.333 +704745,9.6571,68.253 +704746,11.766,68.633 +704747,13.952,69.017 +704748,16.23,69.405 +704749,8.3697,68.225 +704750,10.46,68.638 +704751,12.626,69.056 +704752,14.881,69.477 +704753,7.0838,68.197 +704754,9.1542,68.644 +704755,11.299,69.095 +704756,13.531,69.549 +704757,5.7995,68.169 +704758,7.8493,68.649 +704759,9.9717,69.133 +704760,12.178,69.62 +704761,4.5168,68.142 +704762,6.5448,68.655 +704763,8.6437,69.171 +704764,10.825,69.691 +704765,3.2357,68.115 +704766,5.2409,68.661 +704767,7.3151,69.21 +704768,9.4693,69.761 +704769,1.9561,68.089 +704770,3.9375,68.667 +704771,5.986,69.248 +704772,8.1124,69.831 +704773,0.67807,68.063 +704774,2.6345,68.673 +704775,4.6563,69.285 +704776,6.7539,69.9 +704777,359.4,68.038 +704778,1.3321,68.679 +704779,3.3262,69.323 +704780,5.3939,69.969 +704781,358.13,68.013 +704782,0.030135,68.685 +704783,1.9955,69.361 +704784,4.0323,70.037 +704785,356.85,67.988 +704786,358.73,68.692 +704787,0.66432,69.398 +704788,2.6693,70.105 +704789,355.58,67.965 +704790,357.43,68.699 +704791,359.33,69.435 +704792,1.3049,70.172 +704793,354.31,67.941 +704794,356.13,68.706 +704795,358,69.472 +704796,359.94,70.239 +704797,353.04,67.919 +704798,354.83,68.713 +704799,356.67,69.509 +704800,358.57,70.304 +704801,351.77,67.897 +704802,353.53,68.72 +704803,355.33,69.545 +704804,357.2,70.37 +704805,350.51,67.875 +704806,352.23,68.728 +704807,354,69.581 +704808,355.83,70.434 +704809,349.24,67.855 +704810,350.93,68.736 +704811,352.67,69.617 +704812,354.46,70.498 +704813,347.98,67.835 +704814,349.63,68.744 +704815,351.33,69.653 +704816,353.09,70.561 +704817,346.72,67.816 +704818,348.33,68.752 +704819,350,69.688 +704820,351.72,70.623 +704821,345.45,67.797 +704822,347.04,68.761 +704823,348.66,69.724 +704824,350.34,70.684 +704825,344.19,67.78 +704826,345.74,68.77 +704827,347.33,69.758 +704828,348.96,70.745 +704829,342.94,67.763 +704830,344.44,68.779 +704831,345.99,69.793 +704832,347.59,70.805 +704833,341.68,67.747 +704834,343.15,68.788 +704835,344.65,69.827 +704836,346.21,70.864 +704837,340.42,67.732 +704838,341.85,68.798 +704839,343.32,69.862 +704840,344.83,70.922 +704841,339.17,67.717 +704842,340.55,68.808 +704843,341.98,69.895 +704844,343.45,70.979 +704845,337.91,67.704 +704846,339.26,68.818 +704847,340.64,69.929 +704848,342.07,71.036 +704849,336.66,67.692 +704850,337.96,68.828 +704851,339.3,69.962 +704852,340.69,71.091 +704853,335.41,67.68 +704854,336.67,68.839 +704855,337.97,69.995 +704856,339.3,71.146 +704857,334.16,67.669 +704858,335.37,68.85 +704859,336.63,70.027 +704860,337.92,71.199 +704861,332.91,67.66 +704862,334.08,68.862 +704863,335.29,70.06 +704864,336.53,71.252 +704865,331.66,67.651 +704866,332.79,68.874 +704867,333.95,70.092 +704868,335.15,71.304 +704869,330.41,67.643 +704870,331.49,68.886 +704871,332.61,70.123 +704872,333.76,71.354 +704873,329.16,67.637 +704874,330.2,68.898 +704875,331.27,70.154 +704876,332.37,71.404 +704877,327.92,67.631 +704878,328.91,68.911 +704879,329.93,70.185 +704880,330.98,71.453 +704881,326.67,67.626 +704882,327.61,68.924 +704883,328.59,70.216 +704884,329.6,71.5 +704885,325.43,67.623 +704886,326.32,68.937 +704887,327.25,70.246 +704888,328.21,71.547 +704889,324.18,67.62 +704890,325.03,68.951 +704891,325.91,70.276 +704892,326.82,71.592 +704893,322.94,67.619 +704894,323.74,68.965 +704895,324.57,70.305 +704896,325.43,71.637 +704897,321.7,67.618 +704898,322.45,68.98 +704899,323.22,70.334 +704900,324.03,71.68 +704901,320.45,67.619 +704902,321.15,68.995 +704903,321.88,70.363 +704904,322.64,71.723 +704905,319.21,67.621 +704906,319.86,69.01 +704907,320.54,70.391 +704908,321.25,71.764 +704909,317.97,67.624 +704910,318.57,69.026 +704911,319.2,70.419 +704912,319.86,71.804 +704913,316.73,67.628 +704914,317.28,69.042 +704915,317.86,70.447 +704916,318.46,71.843 +704917,315.49,67.634 +704918,315.99,69.058 +704919,316.52,70.474 +704920,317.07,71.881 +704921,314.25,67.64 +704922,314.7,69.075 +704923,315.17,70.501 +704924,315.68,71.917 +704925,313.01,67.648 +704926,313.41,69.092 +704927,313.83,70.528 +704928,314.28,71.953 +704929,311.77,67.657 +704930,312.12,69.11 +704931,312.49,70.554 +704932,312.89,71.987 +704933,310.54,67.667 +704934,310.83,69.128 +704935,311.15,70.579 +704936,311.5,72.02 +704937,309.3,67.678 +704938,309.53,69.146 +704939,309.8,70.605 +704940,310.1,72.052 +704941,308.06,67.691 +704942,308.24,69.165 +704943,308.46,70.629 +704944,308.71,72.083 +704945,306.82,67.704 +704946,306.95,69.184 +704947,307.12,70.654 +704948,307.31,72.113 +704949,305.58,67.719 +704950,305.66,69.203 +704951,305.77,70.678 +704952,305.92,72.142 +704953,304.35,67.735 +704954,304.37,69.223 +704955,304.43,70.702 +704956,304.52,72.169 +704957,303.11,67.752 +704958,303.08,69.243 +704959,303.09,70.725 +704960,303.13,72.195 +704961,301.87,67.771 +704962,301.79,69.264 +704963,301.75,70.748 +704964,301.74,72.22 +704965,300.63,67.791 +704966,300.5,69.285 +704967,300.4,70.77 +704968,300.34,72.244 +704969,299.4,67.812 +704970,299.21,69.307 +704971,299.06,70.792 +704972,298.95,72.267 +704973,298.16,67.834 +704974,297.92,69.329 +704975,297.72,70.814 +704976,297.55,72.288 +704977,296.92,67.857 +704978,296.63,69.351 +704979,296.38,70.835 +704980,296.16,72.308 +704981,295.68,67.882 +704982,295.34,69.374 +704983,295.03,70.856 +704984,294.77,72.327 +704985,294.45,67.908 +704986,294.05,69.397 +704987,293.69,70.877 +704988,293.37,72.345 +704989,293.21,67.935 +704990,292.76,69.42 +704991,292.35,70.897 +704992,291.98,72.362 +704993,291.97,67.963 +704994,291.46,69.444 +704995,291.01,70.916 +704996,290.59,72.378 +704997,290.73,67.992 +704998,290.17,69.469 +704999,289.66,70.936 +705000,289.2,72.392 +705001,289.49,68.023 +705002,288.88,69.493 +705003,288.32,70.954 +705004,287.81,72.405 +705005,288.25,68.055 +705006,287.59,69.518 +705007,286.98,70.973 +705008,286.42,72.417 +705009,287.01,68.088 +705010,286.3,69.544 +705011,285.64,70.991 +705012,285.02,72.428 +705013,285.77,68.122 +705014,285.01,69.57 +705015,284.3,71.009 +705016,283.63,72.438 +705017,284.53,68.158 +705018,283.71,69.596 +705019,282.95,71.026 +705020,282.25,72.446 +705021,283.29,68.194 +705022,282.42,69.623 +705023,281.61,71.043 +705024,280.86,72.454 +705025,282.04,68.232 +705026,281.13,69.65 +705027,280.27,71.059 +705028,279.47,72.46 +705029,280.8,68.271 +705030,279.84,69.677 +705031,278.93,71.076 +705032,278.08,72.465 +705033,279.56,68.311 +705034,278.54,69.705 +705035,277.59,71.091 +705036,276.7,72.469 +705037,278.31,68.352 +705038,277.25,69.733 +705039,276.25,71.107 +705040,275.31,72.472 +705041,277.07,68.395 +705042,275.96,69.761 +705043,274.91,71.122 +705044,273.92,72.474 +705045,275.82,68.438 +705046,274.66,69.79 +705047,273.57,71.136 +705048,272.54,72.475 +705049,274.57,68.483 +705050,273.37,69.82 +705051,272.23,71.151 +705052,271.16,72.475 +705053,273.32,68.528 +705054,272.07,69.849 +705055,270.89,71.165 +705056,269.77,72.473 +705057,272.08,68.575 +705058,270.78,69.879 +705059,269.55,71.178 +705060,268.39,72.471 +705061,270.83,68.623 +705062,269.48,69.909 +705063,268.21,71.192 +705064,267.01,72.468 +705065,269.57,68.672 +705066,268.19,69.94 +705067,266.88,71.204 +705068,265.63,72.463 +705069,268.32,68.721 +705070,266.89,69.971 +705071,265.54,71.217 +705072,264.25,72.458 +705073,267.07,68.772 +705074,265.59,70.002 +705075,264.2,71.229 +705076,262.88,72.451 +705077,265.81,68.824 +705078,264.3,70.034 +705079,262.86,71.241 +705080,261.5,72.444 +705081,264.56,68.877 +705082,263,70.066 +705083,261.53,71.253 +705084,260.12,72.435 +705085,263.3,68.931 +705086,261.7,70.098 +705087,260.19,71.264 +705088,258.75,72.426 +705089,262.04,68.985 +705090,260.41,70.131 +705091,258.85,71.275 +705092,257.38,72.416 +705093,260.78,69.041 +705094,259.11,70.164 +705095,257.52,71.285 +705096,256.01,72.404 +705097,259.52,69.098 +705098,257.81,70.197 +705099,256.18,71.296 +705100,254.63,72.392 +705101,258.26,69.155 +705102,256.51,70.23 +705103,254.85,71.306 +705104,253.26,72.379 +705105,257,69.213 +705106,255.21,70.264 +705107,253.51,71.316 +705108,251.9,72.365 +705109,255.73,69.273 +705110,253.91,70.298 +705111,252.18,71.325 +705112,250.53,72.351 +705113,254.47,69.333 +705114,252.61,70.333 +705115,250.84,71.334 +705116,249.16,72.335 +705117,253.2,69.393 +705118,251.31,70.367 +705119,249.51,71.343 +705120,247.8,72.319 +705121,251.93,69.455 +705122,250.01,70.402 +705123,248.18,71.352 +705124,246.44,72.302 +705125,250.66,69.517 +705126,248.7,70.437 +705127,246.84,71.36 +705128,245.07,72.284 +705129,249.39,69.58 +705130,247.4,70.473 +705131,245.51,71.368 +705132,243.71,72.265 +705133,248.12,69.644 +705134,246.1,70.508 +705135,244.18,71.376 +705136,242.35,72.246 +705137,246.84,69.709 +705138,244.79,70.544 +705139,242.85,71.384 +705140,241,72.225 +705141,245.56,69.774 +705142,243.49,70.58 +705143,241.52,71.391 +705144,239.64,72.205 +705145,244.29,69.84 +705146,242.19,70.616 +705147,240.19,71.398 +705148,238.28,72.183 +705149,243.01,69.906 +705150,240.88,70.653 +705151,238.86,71.405 +705152,236.93,72.161 +705153,241.72,69.973 +705154,239.57,70.69 +705155,237.53,71.412 +705156,235.58,72.139 +705157,240.44,70.041 +705158,238.27,70.727 +705159,236.2,71.419 +705160,234.23,72.115 +705161,239.16,70.109 +705162,236.96,70.764 +705163,234.87,71.425 +705164,232.88,72.091 +705165,237.87,70.177 +705166,235.65,70.801 +705167,233.55,71.431 +705168,231.53,72.067 +705169,236.58,70.246 +705170,234.35,70.838 +705171,232.22,71.437 +705172,230.19,72.042 +705173,235.29,70.316 +705174,233.04,70.876 +705175,230.89,71.443 +705176,228.84,72.017 +705177,234,70.386 +705178,231.73,70.914 +705179,229.57,71.449 +705180,227.5,71.991 +705181,232.71,70.456 +705182,230.42,70.951 +705183,228.24,71.455 +705184,226.16,71.965 +705185,231.41,70.527 +705186,229.11,70.989 +705187,226.91,71.46 +705188,224.82,71.938 +705189,230.11,70.598 +705190,227.8,71.027 +705191,225.59,71.466 +705192,223.48,71.911 +705193,228.81,70.67 +705194,226.49,71.066 +705195,224.27,71.471 +705196,222.14,71.883 +705197,227.51,70.742 +705198,225.17,71.104 +705199,222.94,71.476 +705200,220.81,71.856 +705201,226.21,70.814 +705202,223.86,71.142 +705203,221.62,71.481 +705204,219.48,71.827 +705205,224.91,70.886 +705206,222.55,71.181 +705207,220.3,71.486 +705208,218.14,71.799 +705209,223.6,70.959 +705210,221.23,71.22 +705211,218.98,71.491 +705212,216.81,71.77 +705213,222.29,71.031 +705214,219.92,71.258 +705215,217.65,71.495 +705216,215.49,71.741 +705217,220.98,71.104 +705218,218.6,71.297 +705219,216.33,71.5 +705220,214.16,71.712 +705221,219.67,71.177 +705222,217.29,71.336 +705223,215.01,71.505 +705224,212.83,71.683 +705225,218.36,71.251 +705226,215.97,71.374 +705227,213.69,71.509 +705228,211.51,71.654 +705229,217.04,71.324 +705230,214.65,71.413 +705231,212.37,71.514 +705232,210.19,71.624 +705233,215.73,71.397 +705234,213.34,71.452 +705235,211.06,71.518 +705236,208.87,71.594 +705237,214.41,71.47 +705238,212.02,71.491 +705239,209.74,71.523 +705240,207.55,71.565 +705241,213.09,71.544 +705242,210.7,71.53 +705243,208.42,71.527 +705244,206.23,71.535 +705245,211.76,71.617 +705246,209.38,71.569 +705247,207.1,71.532 +705248,204.92,71.505 +705249,210.44,71.69 +705250,208.06,71.608 +705251,205.79,71.536 +705252,203.6,71.475 +705253,209.11,71.763 +705254,206.74,71.647 +705255,204.47,71.541 +705256,202.29,71.445 +705257,207.78,71.837 +705258,205.42,71.685 +705259,203.16,71.545 +705260,200.98,71.416 +705261,206.45,71.909 +705262,204.1,71.724 +705263,201.84,71.55 +705264,199.67,71.386 +705265,205.12,71.982 +705266,202.78,71.763 +705267,200.53,71.555 +705268,198.37,71.357 +705269,203.79,72.055 +705270,201.45,71.801 +705271,199.22,71.559 +705272,197.06,71.327 +705273,202.45,72.127 +705274,200.13,71.84 +705275,197.9,71.564 +705276,195.76,71.298 +705277,201.12,72.199 +705278,198.81,71.879 +705279,196.59,71.569 +705280,194.46,71.269 +705281,199.78,72.271 +705282,197.48,71.917 +705283,195.28,71.574 +705284,193.16,71.24 +705285,198.44,72.343 +705286,196.16,71.955 +705287,193.97,71.579 +705288,191.86,71.212 +705289,197.1,72.414 +705290,194.83,71.994 +705291,192.66,71.584 +705292,190.56,71.184 +705293,195.75,72.485 +705294,193.5,72.032 +705295,191.35,71.589 +705296,189.27,71.156 +705297,194.41,72.555 +705298,192.18,72.07 +705299,190.04,71.594 +705300,187.97,71.129 +705301,193.06,72.625 +705302,190.85,72.108 +705303,188.73,71.6 +705304,186.68,71.101 +705305,191.71,72.695 +705306,189.52,72.145 +705307,187.42,71.605 +705308,185.39,71.075 +705309,190.36,72.764 +705310,188.19,72.183 +705311,186.11,71.611 +705312,184.1,71.048 +705313,189.01,72.832 +705314,186.86,72.22 +705315,184.8,71.617 +705316,182.81,71.022 +705317,187.65,72.901 +705318,185.53,72.258 +705319,183.49,71.623 +705320,181.53,70.997 +705321,186.3,72.968 +705322,184.2,72.295 +705323,182.19,71.629 +705324,180.24,70.972 +705325,184.94,73.035 +705326,182.87,72.332 +705327,180.88,71.636 +705328,178.96,70.948 +705329,183.58,73.102 +705330,181.54,72.368 +705331,179.58,71.642 +705332,177.68,70.924 +705333,182.22,73.168 +705334,180.21,72.405 +705335,178.27,71.649 +705336,176.4,70.901 +705337,180.86,73.233 +705338,178.88,72.441 +705339,176.97,71.656 +705340,175.12,70.878 +705341,179.5,73.298 +705342,177.54,72.477 +705343,175.66,71.663 +705344,173.84,70.856 +705345,178.13,73.362 +705346,176.21,72.513 +705347,174.36,71.671 +705348,172.56,70.835 +705349,176.77,73.425 +705350,174.88,72.549 +705351,173.05,71.678 +705352,171.29,70.814 +705353,175.4,73.488 +705354,173.54,72.584 +705355,171.75,71.686 +705356,170.02,70.794 +705357,174.03,73.549 +705358,172.21,72.619 +705359,170.45,71.694 +705360,168.74,70.775 +705361,172.66,73.61 +705362,170.87,72.654 +705363,169.15,71.703 +705364,167.47,70.756 +705365,171.29,73.671 +705366,169.54,72.689 +705367,167.85,71.711 +705368,166.2,70.738 +705369,169.92,73.73 +705370,168.2,72.723 +705371,166.54,71.72 +705372,164.94,70.721 +705373,168.55,73.789 +705374,166.87,72.757 +705375,165.24,71.729 +705376,163.67,70.705 +705377,167.17,73.847 +705378,165.53,72.791 +705379,163.94,71.739 +705380,162.4,70.69 +705381,165.79,73.904 +705382,164.19,72.825 +705383,162.64,71.748 +705384,161.14,70.675 +705385,164.42,73.96 +705386,162.85,72.858 +705387,161.34,71.758 +705388,159.88,70.662 +705389,163.04,74.015 +705390,161.52,72.891 +705391,160.04,71.769 +705392,158.62,70.649 +705393,161.66,74.069 +705394,160.18,72.924 +705395,158.74,71.779 +705396,157.35,70.637 +705397,160.28,74.123 +705398,158.84,72.956 +705399,157.45,71.79 +705400,156.1,70.626 +705401,158.9,74.175 +705402,157.5,72.988 +705403,156.15,71.802 +705404,154.84,70.616 +705405,157.52,74.227 +705406,156.16,73.02 +705407,154.85,71.813 +705408,153.58,70.607 +705409,156.13,74.277 +705410,154.82,73.051 +705411,153.55,71.825 +705412,152.32,70.599 +705413,154.75,74.327 +705414,153.48,73.083 +705415,152.25,71.837 +705416,151.07,70.592 +705417,153.36,74.376 +705418,152.14,73.113 +705419,150.96,71.85 +705420,149.81,70.586 +705421,151.98,74.423 +705422,150.8,73.144 +705423,149.66,71.863 +705424,148.56,70.581 +705425,150.59,74.47 +705426,149.46,73.174 +705427,148.36,71.876 +705428,147.3,70.577 +705429,149.21,74.515 +705430,148.12,73.204 +705431,147.07,71.89 +705432,146.05,70.574 +705433,147.82,74.56 +705434,146.78,73.233 +705435,145.77,71.904 +705436,144.8,70.572 +705437,146.43,74.603 +705438,145.43,73.262 +705439,144.48,71.918 +705440,143.55,70.572 +705441,145.04,74.645 +705442,144.09,73.291 +705443,143.18,71.933 +705444,142.3,70.572 +705445,143.65,74.687 +705446,142.75,73.319 +705447,141.88,71.948 +705448,141.05,70.574 +705449,142.26,74.727 +705450,141.41,73.347 +705451,140.59,71.963 +705452,139.8,70.576 +705453,140.87,74.766 +705454,140.06,73.375 +705455,139.29,71.979 +705456,138.56,70.58 +705457,139.48,74.804 +705458,138.72,73.402 +705459,138,71.995 +705460,137.31,70.585 +705461,138.08,74.84 +705462,137.38,73.429 +705463,136.7,72.012 +705464,136.06,70.591 +705465,136.69,74.876 +705466,136.03,73.455 +705467,135.41,72.029 +705468,134.82,70.598 +705469,135.3,74.911 +705470,134.69,73.481 +705471,134.12,72.046 +705472,133.57,70.607 +705473,133.91,74.944 +705474,133.35,73.507 +705475,132.82,72.064 +705476,132.33,70.616 +705477,132.51,74.976 +705478,132,73.532 +705479,131.53,72.082 +705480,131.08,70.627 +705481,131.12,75.007 +705482,130.66,73.557 +705483,130.23,72.1 +705484,129.84,70.639 +705485,129.72,75.037 +705486,129.32,73.582 +705487,128.94,72.119 +705488,128.59,70.652 +705489,128.33,75.066 +705490,127.97,73.606 +705491,127.64,72.139 +705492,127.35,70.666 +705493,126.94,75.094 +705494,126.63,73.629 +705495,126.35,72.158 +705496,126.11,70.682 +705497,125.54,75.12 +705498,125.28,73.653 +705499,125.06,72.178 +705500,124.86,70.699 +705501,124.15,75.146 +705502,123.94,73.676 +705503,123.76,72.199 +705504,123.62,70.717 +705505,122.75,75.17 +705506,122.6,73.698 +705507,122.47,72.22 +705508,122.38,70.736 +705509,121.36,75.193 +705510,121.25,73.721 +705511,121.18,72.241 +705512,121.13,70.756 +705513,119.96,75.214 +705514,119.91,73.742 +705515,119.88,72.263 +705516,119.89,70.778 +705517,118.57,75.235 +705518,118.56,73.764 +705519,118.59,72.285 +705520,118.65,70.801 +705521,117.18,75.255 +705522,117.22,73.785 +705523,117.29,72.308 +705524,117.4,70.825 +705525,115.78,75.273 +705526,115.87,73.805 +705527,116,72.331 +705528,116.16,70.85 +705529,114.39,75.29 +705530,114.53,73.826 +705531,114.71,72.354 +705532,114.92,70.877 +705533,112.99,75.306 +705534,113.19,73.845 +705535,113.41,72.378 +705536,113.68,70.905 +705537,111.6,75.321 +705538,111.84,73.865 +705539,112.12,72.402 +705540,112.43,70.934 +705541,110.21,75.334 +705542,110.5,73.884 +705543,110.82,72.427 +705544,111.19,70.964 +705545,108.81,75.347 +705546,109.15,73.903 +705547,109.53,72.451 +705548,109.95,70.995 +705549,107.42,75.358 +705550,107.81,73.921 +705551,108.24,72.477 +705552,108.7,71.028 +705553,106.03,75.368 +705554,106.47,73.939 +705555,106.94,72.503 +705556,107.46,71.061 +705557,104.64,75.377 +705558,105.12,73.956 +705559,105.65,72.529 +705560,106.21,71.096 +705561,103.25,75.385 +705562,103.78,73.973 +705563,104.35,72.555 +705564,104.97,71.132 +705565,101.85,75.392 +705566,102.43,73.99 +705567,103.06,72.582 +705568,103.72,71.17 +705569,100.46,75.398 +705570,101.09,74.006 +705571,101.76,72.609 +705572,102.48,71.208 +705573,99.075,75.402 +705574,99.748,74.022 +705575,100.47,72.637 +705576,101.23,71.248 +705577,97.685,75.406 +705578,98.406,74.038 +705579,99.17,72.665 +705580,99.982,71.289 +705581,96.297,75.408 +705582,97.063,74.053 +705583,97.875,72.694 +705584,98.735,71.331 +705585,94.909,75.409 +705586,95.72,74.068 +705587,96.579,72.722 +705588,97.486,71.374 +705589,93.522,75.41 +705590,94.378,74.083 +705591,95.282,72.752 +705592,96.237,71.418 +705593,92.136,75.409 +705594,93.036,74.097 +705595,93.986,72.781 +705596,94.987,71.463 +705597,90.75,75.407 +705598,91.694,74.111 +705599,92.689,72.811 +705600,93.737,71.509 +705601,89.365,75.404 +705602,90.353,74.124 +705603,91.392,72.841 +705604,92.486,71.557 +705605,87.981,75.4 +705606,89.011,74.138 +705607,90.094,72.872 +705608,91.233,71.605 +705609,86.598,75.395 +705610,87.67,74.15 +705611,88.797,72.903 +705612,89.98,71.655 +705613,85.216,75.389 +705614,86.33,74.163 +705615,87.499,72.934 +705616,88.726,71.705 +705617,83.834,75.382 +705618,84.989,74.175 +705619,86.2,72.966 +705620,87.472,71.757 +705621,82.454,75.374 +705622,83.649,74.187 +705623,84.902,72.998 +705624,86.216,71.809 +705625,81.074,75.366 +705626,82.309,74.198 +705627,83.603,73.03 +705628,84.959,71.863 +705629,79.696,75.356 +705630,80.97,74.21 +705631,82.303,73.063 +705632,83.701,71.917 +705633,78.319,75.345 +705634,79.63,74.221 +705635,81.003,73.096 +705636,82.442,71.973 +705637,76.942,75.334 +705638,78.292,74.231 +705639,79.703,73.129 +705640,81.182,72.029 +705641,75.567,75.321 +705642,76.953,74.241 +705643,78.403,73.162 +705644,79.921,72.086 +705645,74.193,75.308 +705646,75.615,74.252 +705647,77.102,73.196 +705648,78.659,72.144 +705649,72.82,75.294 +705650,74.277,74.261 +705651,75.801,73.23 +705652,77.395,72.203 +705653,71.448,75.279 +705654,72.94,74.271 +705655,74.499,73.265 +705656,76.13,72.263 +705657,70.077,75.263 +705658,71.603,74.28 +705659,73.197,73.3 +705660,74.864,72.324 +705661,68.707,75.246 +705662,70.266,74.289 +705663,71.894,73.335 +705664,73.597,72.385 +705665,67.339,75.229 +705666,68.93,74.298 +705667,70.591,73.37 +705668,72.328,72.448 +705669,65.972,75.211 +705670,67.594,74.306 +705671,69.287,73.405 +705672,71.058,72.511 +705673,64.606,75.192 +705674,66.259,74.314 +705675,67.984,73.441 +705676,69.787,72.574 +705677,63.241,75.173 +705678,64.924,74.322 +705679,66.679,73.477 +705680,68.514,72.639 +705681,61.878,75.152 +705682,63.589,74.33 +705683,65.374,73.513 +705684,67.24,72.704 +705685,60.516,75.131 +705686,62.255,74.338 +705687,64.069,73.55 +705688,65.965,72.77 +705689,59.156,75.11 +705690,60.921,74.345 +705691,62.763,73.586 +705692,64.688,72.836 +705693,57.797,75.088 +705694,59.588,74.352 +705695,61.456,73.623 +705696,63.409,72.903 +705697,56.439,75.065 +705698,58.256,74.359 +705699,60.15,73.66 +705700,62.129,72.971 +705701,55.082,75.042 +705702,56.923,74.366 +705703,58.842,73.697 +705704,60.847,73.039 +705705,53.727,75.018 +705706,55.591,74.372 +705707,57.534,73.735 +705708,59.564,73.108 +705709,52.374,74.993 +705710,54.26,74.379 +705711,56.226,73.772 +705712,58.28,73.177 +705713,51.022,74.969 +705714,52.929,74.385 +705715,54.917,73.81 +705716,56.993,73.247 +705717,49.671,74.943 +705718,51.599,74.391 +705719,53.607,73.848 +705720,55.706,73.317 +705721,48.322,74.917 +705722,50.269,74.397 +705723,52.297,73.886 +705724,54.416,73.388 +705725,46.974,74.891 +705726,48.94,74.403 +705727,50.987,73.924 +705728,53.125,73.459 +705729,45.628,74.865 +705730,47.611,74.408 +705731,49.676,73.963 +705732,51.832,73.53 +705733,44.283,74.838 +705734,46.282,74.414 +705735,48.364,74.001 +705736,50.538,73.602 +705737,42.94,74.81 +705738,44.954,74.419 +705739,47.052,74.04 +705740,49.242,73.674 +705741,41.599,74.782 +705742,43.627,74.425 +705743,45.739,74.079 +705744,47.944,73.747 +705745,40.259,74.754 +705746,42.3,74.43 +705747,44.425,74.117 +705748,46.644,73.82 +705749,38.92,74.726 +705750,40.974,74.435 +705751,43.111,74.156 +705752,45.343,73.893 +705753,37.583,74.698 +705754,39.648,74.44 +705755,41.797,74.195 +705756,44.04,73.966 +705757,36.248,74.669 +705758,38.323,74.445 +705759,40.482,74.234 +705760,42.735,74.039 +705761,34.914,74.64 +705762,36.998,74.45 +705763,39.166,74.273 +705764,41.429,74.113 +705765,33.582,74.611 +705766,35.674,74.455 +705767,37.85,74.313 +705768,40.121,74.186 +705769,32.251,74.582 +705770,34.35,74.46 +705771,36.533,74.352 +705772,38.811,74.26 +705773,30.922,74.553 +705774,33.027,74.465 +705775,35.215,74.391 +705776,37.499,74.334 +705777,29.595,74.523 +705778,31.704,74.47 +705779,33.897,74.43 +705780,36.186,74.408 +705781,28.269,74.494 +705782,30.382,74.474 +705783,32.579,74.47 +705784,34.87,74.482 +705785,26.945,74.464 +705786,29.061,74.479 +705787,31.26,74.509 +705788,33.553,74.556 +705789,25.622,74.435 +705790,27.74,74.484 +705791,29.94,74.548 +705792,32.235,74.63 +705793,24.301,74.405 +705794,26.419,74.489 +705795,28.619,74.588 +705796,30.914,74.703 +705797,22.982,74.376 +705798,25.099,74.494 +705799,27.299,74.627 +705800,29.592,74.777 +705801,21.664,74.346 +705802,23.78,74.499 +705803,25.977,74.666 +705804,28.268,74.851 +705805,20.348,74.317 +705806,22.461,74.504 +705807,24.655,74.705 +705808,26.942,74.924 +705809,19.033,74.288 +705810,21.142,74.509 +705811,23.332,74.744 +705812,25.615,74.997 +705813,17.72,74.259 +705814,19.825,74.514 +705815,22.009,74.783 +705816,24.285,75.07 +705817,16.409,74.231 +705818,18.507,74.519 +705819,20.685,74.822 +705820,22.954,75.143 +705821,15.099,74.202 +705822,17.191,74.524 +705823,19.361,74.861 +705824,21.621,75.216 +705825,13.791,74.174 +705826,15.874,74.529 +705827,18.036,74.9 +705828,20.287,75.288 +705829,12.484,74.146 +705830,14.559,74.535 +705831,16.71,74.939 +705832,18.951,75.36 +705833,11.179,74.118 +705834,13.243,74.54 +705835,15.384,74.978 +705836,17.613,75.432 +705837,9.8757,74.091 +705838,11.929,74.546 +705839,14.057,75.016 +705840,16.273,75.503 +705841,8.5738,74.064 +705842,10.614,74.552 +705843,12.73,75.055 +705844,14.932,75.574 +705845,7.2734,74.037 +705846,9.3007,74.557 +705847,11.402,75.093 +705848,13.589,75.645 +705849,5.9745,74.011 +705850,7.9875,74.563 +705851,10.074,75.131 +705852,12.244,75.715 +705853,4.6772,73.985 +705854,6.6749,74.57 +705855,8.7446,75.169 +705856,10.898,75.784 +705857,3.3814,73.96 +705858,5.3627,74.576 +705859,7.4151,75.207 +705860,9.5504,75.853 +705861,2.0871,73.935 +705862,4.051,74.583 +705863,6.0851,75.245 +705864,8.2009,75.922 +705865,0.79428,73.911 +705866,2.7398,74.589 +705867,4.7545,75.282 +705868,6.8498,75.99 +705869,359.5,73.887 +705870,1.4291,74.596 +705871,3.4234,75.319 +705872,5.4972,76.058 +705873,358.21,73.864 +705874,0.11886,74.603 +705875,2.0918,75.357 +705876,4.143,76.125 +705877,356.92,73.841 +705878,358.81,74.611 +705879,0.75963,75.393 +705880,2.7872,76.191 +705881,355.64,73.819 +705882,357.5,74.618 +705883,359.43,75.43 +705884,1.43,76.256 +705885,354.35,73.798 +705886,356.19,74.626 +705887,358.09,75.467 +705888,0.071225,76.322 +705889,353.07,73.777 +705890,354.88,74.634 +705891,356.76,75.503 +705892,358.71,76.386 +705893,351.79,73.757 +705894,353.57,74.642 +705895,355.43,75.539 +705896,357.35,76.449 +705897,350.5,73.738 +705898,352.27,74.65 +705899,354.09,75.575 +705900,355.99,76.512 +705901,349.22,73.719 +705902,350.96,74.659 +705903,352.76,75.611 +705904,354.62,76.574 +705905,347.94,73.701 +705906,349.65,74.668 +705907,351.42,75.646 +705908,353.26,76.636 +705909,346.67,73.684 +705910,348.35,74.677 +705911,350.08,75.681 +705912,351.89,76.696 +705913,345.39,73.668 +705914,347.04,74.687 +705915,348.75,75.716 +705916,350.52,76.756 +705917,344.12,73.652 +705918,345.74,74.696 +705919,347.41,75.751 +705920,349.15,76.815 +705921,342.84,73.638 +705922,344.43,74.706 +705923,346.07,75.785 +705924,347.78,76.873 +705925,341.57,73.624 +705926,343.13,74.717 +705927,344.74,75.819 +705928,346.41,76.931 +705929,340.3,73.611 +705930,341.82,74.727 +705931,343.4,75.853 +705932,345.03,76.987 +705933,339.03,73.599 +705934,340.52,74.738 +705935,342.06,75.886 +705936,343.66,77.042 +705937,337.76,73.588 +705938,339.21,74.749 +705939,340.72,75.919 +705940,342.28,77.097 +705941,336.49,73.578 +705942,337.91,74.761 +705943,339.38,75.952 +705944,340.91,77.151 +705945,335.23,73.569 +705946,336.61,74.773 +705947,338.04,75.984 +705948,339.53,77.203 +705949,333.96,73.561 +705950,335.31,74.785 +705951,336.7,76.017 +705952,338.15,77.255 +705953,332.69,73.553 +705954,334,74.798 +705955,335.36,76.049 +705956,336.77,77.306 +705957,331.43,73.547 +705958,332.7,74.811 +705959,334.02,76.08 +705960,335.39,77.356 +705961,330.17,73.542 +705962,331.4,74.824 +705963,332.68,76.111 +705964,334,77.404 +705965,328.91,73.538 +705966,330.1,74.837 +705967,331.34,76.142 +705968,332.62,77.452 +705969,327.65,73.535 +705970,328.8,74.851 +705971,329.99,76.173 +705972,331.24,77.499 +705973,326.39,73.533 +705974,327.5,74.866 +705975,328.65,76.203 +705976,329.85,77.544 +705977,325.13,73.532 +705978,326.2,74.88 +705979,327.31,76.233 +705980,328.47,77.589 +705981,323.87,73.532 +705982,324.9,74.895 +705983,325.97,76.262 +705984,327.08,77.632 +705985,322.61,73.533 +705986,323.6,74.911 +705987,324.62,76.291 +705988,325.69,77.675 +705989,321.35,73.536 +705990,322.3,74.926 +705991,323.28,76.32 +705992,324.31,77.716 +705993,320.1,73.539 +705994,321,74.943 +705995,321.94,76.348 +705996,322.92,77.756 +705997,318.84,73.544 +705998,319.7,74.959 +705999,320.59,76.376 +706000,321.53,77.795 +706001,317.59,73.55 +706002,318.4,74.976 +706003,319.25,76.404 +706004,320.14,77.833 +706005,316.33,73.557 +706006,317.1,74.993 +706007,317.9,76.431 +706008,318.75,77.87 +706009,315.08,73.565 +706010,315.8,75.011 +706011,316.56,76.458 +706012,317.36,77.906 +706013,313.83,73.575 +706014,314.5,75.029 +706015,315.22,76.485 +706016,315.96,77.94 +706017,312.58,73.585 +706018,313.21,75.048 +706019,313.87,76.511 +706020,314.57,77.974 +706021,311.32,73.597 +706022,311.91,75.067 +706023,312.53,76.537 +706024,313.18,78.006 +706025,310.07,73.61 +706026,310.61,75.086 +706027,311.18,76.562 +706028,311.79,78.037 +706029,308.82,73.624 +706030,309.31,75.106 +706031,309.84,76.587 +706032,310.39,78.067 +706033,307.57,73.64 +706034,308.01,75.126 +706035,308.49,76.612 +706036,309,78.096 +706037,306.32,73.656 +706038,306.72,75.146 +706039,307.14,76.636 +706040,307.61,78.124 +706041,305.07,73.674 +706042,305.42,75.167 +706043,305.8,76.66 +706044,306.21,78.15 +706045,303.82,73.693 +706046,304.12,75.189 +706047,304.45,76.683 +706048,304.82,78.175 +706049,302.57,73.713 +706050,302.82,75.21 +706051,303.11,76.706 +706052,303.42,78.199 +706053,301.32,73.735 +706054,301.53,75.233 +706055,301.76,76.729 +706056,302.03,78.222 +706057,300.07,73.758 +706058,300.23,75.255 +706059,300.41,76.751 +706060,300.63,78.244 +706061,298.82,73.782 +706062,298.93,75.278 +706063,299.07,76.773 +706064,299.24,78.265 +706065,297.58,73.807 +706066,297.63,75.301 +706067,297.72,76.794 +706068,297.84,78.284 +706069,296.33,73.834 +706070,296.34,75.325 +706071,296.38,76.815 +706072,296.45,78.302 +706073,295.08,73.861 +706074,295.04,75.35 +706075,295.03,76.836 +706076,295.05,78.319 +706077,293.83,73.89 +706078,293.74,75.374 +706079,293.68,76.856 +706080,293.66,78.335 +706081,292.58,73.92 +706082,292.44,75.399 +706083,292.34,76.876 +706084,292.27,78.35 +706085,291.33,73.952 +706086,291.15,75.425 +706087,290.99,76.896 +706088,290.87,78.363 +706089,290.08,73.984 +706090,289.85,75.45 +706091,289.65,76.915 +706092,289.48,78.376 +706093,288.83,74.018 +706094,288.55,75.477 +706095,288.3,76.933 +706096,288.08,78.387 +706097,287.58,74.053 +706098,287.25,75.503 +706099,286.95,76.952 +706100,286.69,78.397 +706101,286.33,74.089 +706102,285.95,75.53 +706103,285.61,76.97 +706104,285.3,78.406 +706105,285.08,74.127 +706106,284.66,75.558 +706107,284.26,76.987 +706108,283.9,78.414 +706109,283.83,74.165 +706110,283.36,75.586 +706111,282.92,77.005 +706112,282.51,78.42 +706113,282.58,74.205 +706114,282.06,75.614 +706115,281.57,77.021 +706116,281.12,78.426 +706117,281.33,74.246 +706118,280.76,75.643 +706119,280.22,77.038 +706120,279.73,78.43 +706121,280.08,74.288 +706122,279.46,75.672 +706123,278.88,77.054 +706124,278.33,78.434 +706125,278.83,74.332 +706126,278.16,75.701 +706127,277.53,77.07 +706128,276.94,78.436 +706129,277.58,74.376 +706130,276.86,75.731 +706131,276.19,77.085 +706132,275.55,78.437 +706133,276.32,74.421 +706134,275.56,75.761 +706135,274.84,77.1 +706136,274.16,78.437 +706137,275.07,74.468 +706138,274.26,75.791 +706139,273.5,77.115 +706140,272.77,78.436 +706141,273.82,74.516 +706142,272.96,75.822 +706143,272.15,77.129 +706144,271.38,78.434 +706145,272.56,74.565 +706146,271.66,75.853 +706147,270.81,77.143 +706148,270,78.431 +706149,271.31,74.615 +706150,270.36,75.885 +706151,269.47,77.157 +706152,268.61,78.427 +706153,270.05,74.666 +706154,269.06,75.917 +706155,268.12,77.17 +706156,267.22,78.422 +706157,268.79,74.718 +706158,267.76,75.949 +706159,266.78,77.183 +706160,265.84,78.416 +706161,267.53,74.771 +706162,266.46,75.982 +706163,265.44,77.196 +706164,264.45,78.409 +706165,266.28,74.825 +706166,265.16,76.015 +706167,264.09,77.208 +706168,263.07,78.401 +706169,265.02,74.88 +706170,263.86,76.048 +706171,262.75,77.22 +706172,261.68,78.392 +706173,263.76,74.936 +706174,262.56,76.082 +706175,261.41,77.232 +706176,260.3,78.383 +706177,262.49,74.993 +706178,261.25,76.116 +706179,260.06,77.243 +706180,258.92,78.372 +706181,261.23,75.051 +706182,259.95,76.15 +706183,258.72,77.254 +706184,257.54,78.36 +706185,259.97,75.109 +706186,258.65,76.185 +706187,257.38,77.265 +706188,256.16,78.348 +706189,258.7,75.169 +706190,257.35,76.22 +706191,256.04,77.275 +706192,254.78,78.334 +706193,257.44,75.23 +706194,256.04,76.255 +706195,254.7,77.286 +706196,253.4,78.32 +706197,256.17,75.291 +706198,254.74,76.29 +706199,253.36,77.296 +706200,252.03,78.305 +706201,254.91,75.353 +706202,253.43,76.326 +706203,252.02,77.305 +706204,250.65,78.289 +706205,253.64,75.417 +706206,252.13,76.362 +706207,250.68,77.315 +706208,249.28,78.272 +706209,252.37,75.48 +706210,250.82,76.398 +706211,249.34,77.324 +706212,247.9,78.255 +706213,251.1,75.545 +706214,249.52,76.435 +706215,248,77.333 +706216,246.53,78.237 +706217,249.82,75.611 +706218,248.21,76.472 +706219,246.66,77.342 +706220,245.16,78.218 +706221,248.55,75.677 +706222,246.91,76.509 +706223,245.32,77.35 +706224,243.79,78.198 +706225,247.28,75.744 +706226,245.6,76.546 +706227,243.98,77.358 +706228,242.42,78.178 +706229,246,75.811 +706230,244.29,76.584 +706231,242.64,77.366 +706232,241.06,78.157 +706233,244.72,75.879 +706234,242.98,76.621 +706235,241.31,77.374 +706236,239.69,78.135 +706237,243.44,75.948 +706238,241.67,76.659 +706239,239.97,77.382 +706240,238.32,78.113 +706241,242.16,76.018 +706242,240.37,76.697 +706243,238.63,77.389 +706244,236.96,78.09 +706245,240.88,76.088 +706246,239.06,76.736 +706247,237.3,77.396 +706248,235.6,78.067 +706249,239.6,76.158 +706250,237.75,76.774 +706251,235.96,77.404 +706252,234.24,78.043 +706253,238.32,76.229 +706254,236.44,76.813 +706255,234.63,77.41 +706256,232.88,78.019 +706257,237.03,76.301 +706258,235.13,76.852 +706259,233.29,77.417 +706260,231.52,77.994 +706261,235.74,76.373 +706262,233.81,76.891 +706263,231.96,77.424 +706264,230.16,77.968 +706265,234.45,76.445 +706266,232.5,76.93 +706267,230.62,77.43 +706268,228.81,77.943 +706269,233.16,76.518 +706270,231.19,76.97 +706271,229.29,77.437 +706272,227.45,77.916 +706273,231.87,76.591 +706274,229.88,77.009 +706275,227.96,77.443 +706276,226.1,77.89 +706277,230.58,76.665 +706278,228.56,77.049 +706279,226.62,77.449 +706280,224.75,77.863 +706281,229.29,76.739 +706282,227.25,77.089 +706283,225.29,77.455 +706284,223.4,77.835 +706285,227.99,76.813 +706286,225.94,77.128 +706287,223.96,77.461 +706288,222.05,77.808 +706289,226.69,76.888 +706290,224.62,77.168 +706291,222.63,77.466 +706292,220.7,77.78 +706293,225.39,76.963 +706294,223.31,77.208 +706295,221.3,77.472 +706296,219.36,77.752 +706297,224.09,77.038 +706298,221.99,77.249 +706299,219.97,77.478 +706300,218.01,77.723 +706301,222.79,77.113 +706302,220.67,77.289 +706303,218.64,77.483 +706304,216.67,77.694 +706305,221.48,77.188 +706306,219.36,77.329 +706307,217.31,77.489 +706308,215.33,77.666 +706309,220.18,77.264 +706310,218.04,77.369 +706311,215.98,77.494 +706312,213.99,77.637 +706313,218.87,77.34 +706314,216.72,77.41 +706315,214.65,77.5 +706316,212.65,77.607 +706317,217.56,77.415 +706318,215.4,77.45 +706319,213.32,77.505 +706320,211.32,77.578 +706321,216.25,77.491 +706322,214.08,77.491 +706323,212,77.511 +706324,209.98,77.549 +706325,214.94,77.567 +706326,212.76,77.531 +706327,210.67,77.516 +706328,208.65,77.519 +706329,213.62,77.643 +706330,211.44,77.571 +706331,209.34,77.521 +706332,207.32,77.49 +706333,212.31,77.719 +706334,210.12,77.612 +706335,208.02,77.527 +706336,205.99,77.461 +706337,210.99,77.794 +706338,208.8,77.652 +706339,206.69,77.532 +706340,204.66,77.431 +706341,209.67,77.87 +706342,207.48,77.693 +706343,205.37,77.538 +706344,203.33,77.402 +706345,208.35,77.945 +706346,206.15,77.733 +706347,204.04,77.543 +706348,202,77.373 +706349,207.03,78.021 +706350,204.83,77.774 +706351,202.72,77.549 +706352,200.68,77.344 +706353,205.7,78.096 +706354,203.51,77.814 +706355,201.4,77.554 +706356,199.36,77.315 +706357,204.37,78.171 +706358,202.18,77.854 +706359,200.07,77.56 +706360,198.04,77.286 +706361,203.05,78.246 +706362,200.86,77.894 +706363,198.75,77.566 +706364,196.72,77.258 +706365,201.72,78.32 +706366,199.53,77.934 +706367,197.43,77.572 +706368,195.4,77.229 +706369,200.39,78.394 +706370,198.21,77.974 +706371,196.11,77.577 +706372,194.08,77.201 +706373,199.05,78.468 +706374,196.88,78.014 +706375,194.79,77.583 +706376,192.77,77.173 +706377,197.72,78.542 +706378,195.55,78.054 +706379,193.47,77.59 +706380,191.45,77.146 +706381,196.38,78.615 +706382,194.22,78.094 +706383,192.15,77.596 +706384,190.14,77.119 +706385,195.04,78.687 +706386,192.9,78.133 +706387,190.83,77.602 +706388,188.83,77.092 +706389,193.71,78.76 +706390,191.57,78.173 +706391,189.51,77.609 +706392,187.52,77.066 +706393,192.36,78.832 +706394,190.24,78.212 +706395,188.19,77.616 +706396,186.22,77.04 +706397,191.02,78.903 +706398,188.91,78.251 +706399,186.87,77.622 +706400,184.91,77.014 +706401,189.68,78.974 +706402,187.58,78.29 +706403,185.56,77.629 +706404,183.61,76.989 +706405,188.33,79.044 +706406,186.25,78.329 +706407,184.24,77.637 +706408,182.3,76.965 +706409,186.98,79.114 +706410,184.91,78.368 +706411,182.92,77.644 +706412,181,76.941 +706413,185.63,79.183 +706414,183.58,78.406 +706415,181.61,77.651 +706416,179.7,76.917 +706417,184.28,79.252 +706418,182.25,78.444 +706419,180.29,77.659 +706420,178.4,76.894 +706421,182.93,79.32 +706422,180.92,78.483 +706423,178.98,77.667 +706424,177.1,76.872 +706425,181.58,79.387 +706426,179.58,78.52 +706427,177.66,77.675 +706428,175.81,76.85 +706429,180.22,79.454 +706430,178.25,78.558 +706431,176.35,77.684 +706432,174.51,76.829 +706433,178.87,79.52 +706434,176.91,78.596 +706435,175.04,77.692 +706436,173.22,76.809 +706437,177.51,79.585 +706438,175.58,78.633 +706439,173.72,77.701 +706440,171.93,76.789 +706441,176.15,79.65 +706442,174.24,78.67 +706443,172.41,77.71 +706444,170.64,76.77 +706445,174.79,79.713 +706446,172.91,78.706 +706447,171.1,77.72 +706448,169.35,76.752 +706449,173.42,79.776 +706450,171.57,78.743 +706451,169.79,77.729 +706452,168.06,76.734 +706453,172.06,79.838 +706454,170.23,78.779 +706455,168.47,77.739 +706456,166.78,76.718 +706457,170.7,79.9 +706458,168.9,78.815 +706459,167.16,77.75 +706460,165.49,76.702 +706461,169.33,79.96 +706462,167.56,78.851 +706463,165.85,77.76 +706464,164.21,76.687 +706465,167.96,80.0198 +706466,166.22,78.886 +706467,164.54,77.771 +706468,162.93,76.673 +706469,166.59,80.0785 +706470,164.88,78.921 +706471,163.23,77.782 +706472,161.64,76.659 +706473,165.22,80.1363 +706474,163.54,78.956 +706475,161.92,77.793 +706476,160.36,76.647 +706477,163.85,80.1932 +706478,162.2,78.991 +706479,160.61,77.805 +706480,159.08,76.635 +706481,162.48,80.2491 +706482,160.86,79.025 +706483,159.31,77.817 +706484,157.81,76.625 +706485,161.1,80.3041 +706486,159.52,79.059 +706487,158,77.829 +706488,156.53,76.615 +706489,159.73,80.3581 +706490,158.18,79.092 +706491,156.69,77.842 +706492,155.25,76.607 +706493,158.35,80.4111 +706494,156.84,79.125 +706495,155.38,77.855 +706496,153.98,76.599 +706497,156.97,80.4631 +706498,155.49,79.158 +706499,154.08,77.868 +706500,152.71,76.592 +706501,155.59,80.5141 +706502,154.15,79.191 +706503,152.77,77.882 +706504,151.43,76.587 +706505,154.22,80.5641 +706506,152.81,79.223 +706507,151.46,77.896 +706508,150.16,76.582 +706509,152.83,80.6129 +706510,151.47,79.255 +706511,150.16,77.91 +706512,148.89,76.579 +706513,151.45,80.6608 +706514,150.12,79.287 +706515,148.85,77.925 +706516,147.62,76.576 +706517,150.07,80.7075 +706518,148.78,79.318 +706519,147.54,77.94 +706520,146.35,76.575 +706521,148.69,80.7532 +706522,147.44,79.349 +706523,146.24,77.956 +706524,145.09,76.575 +706525,147.3,80.7978 +706526,146.09,79.379 +706527,144.93,77.972 +706528,143.82,76.575 +706529,145.92,80.8412 +706530,144.75,79.409 +706531,143.63,77.988 +706532,142.55,76.577 +706533,144.53,80.8836 +706534,143.4,79.439 +706535,142.32,78.005 +706536,141.29,76.581 +706537,143.14,80.9248 +706538,142.06,79.468 +706539,141.02,78.022 +706540,140.02,76.585 +706541,141.76,80.9648 +706542,140.71,79.497 +706543,139.71,78.039 +706544,138.76,76.59 +706545,140.37,81.0038 +706546,139.37,79.526 +706547,138.41,78.057 +706548,137.5,76.597 +706549,138.98,81.0415 +706550,138.02,79.554 +706551,137.11,78.075 +706552,136.23,76.605 +706553,137.59,81.0781 +706554,136.67,79.582 +706555,135.8,78.094 +706556,134.97,76.614 +706557,136.2,81.1135 +706558,135.33,79.609 +706559,134.5,78.113 +706560,133.71,76.624 +706561,134.81,81.1478 +706562,133.98,79.636 +706563,133.2,78.132 +706564,132.45,76.635 +706565,133.42,81.1808 +706566,132.63,79.663 +706567,131.89,78.152 +706568,131.19,76.648 +706569,132.02,81.2127 +706570,131.29,79.689 +706571,130.59,78.172 +706572,129.93,76.662 +706573,130.63,81.2434 +706574,129.94,79.715 +706575,129.29,78.193 +706576,128.67,76.677 +706577,129.24,81.2729 +706578,128.59,79.741 +706579,127.98,78.214 +706580,127.41,76.693 +706581,127.84,81.3012 +706582,127.24,79.766 +706583,126.68,78.235 +706584,126.16,76.71 +706585,126.45,81.3282 +706586,125.9,79.79 +706587,125.38,78.257 +706588,124.9,76.729 +706589,125.06,81.3541 +706590,124.55,79.815 +706591,124.08,78.279 +706592,123.64,76.749 +706593,123.66,81.3788 +706594,123.2,79.839 +706595,122.77,78.302 +706596,122.38,76.771 +706597,122.27,81.4022 +706598,121.85,79.862 +706599,121.47,78.325 +706600,121.13,76.793 +706601,120.87,81.4245 +706602,120.5,79.885 +706603,120.17,78.349 +706604,119.87,76.817 +706605,119.48,81.4456 +706606,119.16,79.908 +706607,118.87,78.373 +706608,118.61,76.842 +706609,118.08,81.4654 +706610,117.81,79.93 +706611,117.57,78.397 +706612,117.36,76.868 +706613,116.69,81.4841 +706614,116.46,79.952 +706615,116.26,78.422 +706616,116.1,76.896 +706617,115.29,81.5015 +706618,115.11,79.973 +706619,114.96,78.447 +706620,114.85,76.925 +706621,113.9,81.5178 +706622,113.76,79.994 +706623,113.66,78.473 +706624,113.59,76.955 +706625,112.5,81.5328 +706626,112.41,80.0151 +706627,112.36,78.499 +706628,112.33,76.986 +706629,111.1,81.5467 +706630,111.06,80.0353 +706631,111.06,78.526 +706632,111.08,77.019 +706633,109.71,81.5594 +706634,109.72,80.0552 +706635,109.75,78.552 +706636,109.82,77.052 +706637,108.31,81.5709 +706638,108.37,80.0747 +706639,108.45,78.58 +706640,108.57,77.087 +706641,106.92,81.5812 +706642,107.02,80.0938 +706643,107.15,78.607 +706644,107.31,77.124 +706645,105.52,81.5904 +706646,105.67,80.1125 +706647,105.85,78.636 +706648,106.05,77.161 +706649,104.13,81.5984 +706650,104.32,80.1308 +706651,104.54,78.664 +706652,104.8,77.2 +706653,102.73,81.6052 +706654,102.97,80.1487 +706655,103.24,78.693 +706656,103.54,77.24 +706657,101.34,81.6109 +706658,101.62,80.1662 +706659,101.94,78.722 +706660,102.29,77.281 +706661,99.946,81.6155 +706662,100.27,80.1834 +706663,100.64,78.752 +706664,101.03,77.323 +706665,98.552,81.619 +706666,98.927,80.2002 +706667,99.333,78.782 +706668,99.771,77.367 +706669,97.159,81.6213 +706670,97.578,80.2166 +706671,98.03,78.813 +706672,98.513,77.411 +706673,95.766,81.6225 +706674,96.23,80.2326 +706675,96.726,78.844 +706676,97.255,77.457 +706677,94.373,81.6227 +706678,94.882,80.2483 +706679,95.423,78.875 +706680,95.996,77.504 +706681,92.981,81.6217 +706682,93.534,80.2636 +706683,94.12,78.907 +706684,94.738,77.552 +706685,91.59,81.6197 +706686,92.187,80.2786 +706687,92.816,78.939 +706688,93.478,77.602 +706689,90.199,81.6167 +706690,90.839,80.2932 +706691,91.512,78.971 +706692,92.218,77.652 +706693,88.808,81.6126 +706694,89.491,80.3074 +706695,90.208,79.004 +706696,90.958,77.704 +706697,87.418,81.6074 +706698,88.144,80.3214 +706699,88.903,79.037 +706700,89.696,77.756 +706701,86.029,81.6013 +706702,86.797,80.3349 +706703,87.599,79.071 +706704,88.435,77.81 +706705,84.641,81.5942 +706706,85.45,80.3482 +706707,86.294,79.104 +706708,87.172,77.865 +706709,83.253,81.586 +706710,84.104,80.3611 +706711,84.989,79.139 +706712,85.909,77.92 +706713,81.866,81.5769 +706714,82.757,80.3737 +706715,83.683,79.173 +706716,84.646,77.977 +706717,80.479,81.5669 +706718,81.411,80.3859 +706719,82.378,79.208 +706720,83.381,78.035 +706721,79.094,81.5559 +706722,80.065,80.3979 +706723,81.072,79.243 +706724,82.116,78.094 +706725,77.709,81.544 +706726,78.719,80.4095 +706727,79.765,79.279 +706728,80.85,78.153 +706729,76.325,81.5312 +706730,77.373,80.4209 +706731,78.459,79.315 +706732,79.583,78.214 +706733,74.942,81.5175 +706734,76.028,80.4319 +706735,77.152,79.351 +706736,78.315,78.276 +706737,73.56,81.503 +706738,74.683,80.4427 +706739,75.845,79.387 +706740,77.046,78.338 +706741,72.178,81.4876 +706742,73.338,80.4532 +706743,74.537,79.424 +706744,75.776,78.402 +706745,70.798,81.4714 +706746,71.994,80.4634 +706747,73.229,79.461 +706748,74.506,78.466 +706749,69.419,81.4544 +706750,70.65,80.4734 +706751,71.921,79.498 +706752,73.234,78.531 +706753,68.04,81.4367 +706754,69.306,80.4831 +706755,70.613,79.536 +706756,71.961,78.597 +706757,66.663,81.4181 +706758,67.963,80.4925 +706759,69.304,79.574 +706760,70.688,78.664 +706761,65.286,81.3988 +706762,66.619,80.5017 +706763,67.994,79.612 +706764,69.413,78.731 +706765,63.911,81.3788 +706766,65.277,80.5106 +706767,66.685,79.65 +706768,68.137,78.799 +706769,62.537,81.3582 +706770,63.934,80.5194 +706771,65.374,79.689 +706772,66.86,78.868 +706773,61.164,81.3368 +706774,62.592,80.5279 +706775,64.064,79.728 +706776,65.582,78.938 +706777,59.792,81.3148 +706778,61.25,80.5361 +706779,62.753,79.767 +706780,64.303,79.009 +706781,58.421,81.2921 +706782,59.909,80.5442 +706783,61.442,79.806 +706784,63.022,79.08 +706785,57.052,81.2689 +706786,58.568,80.5521 +706787,60.13,79.845 +706788,61.74,79.151 +706789,55.683,81.2451 +706790,57.227,80.5598 +706791,58.817,79.885 +706792,60.457,79.224 +706793,54.316,81.2207 +706794,55.887,80.5673 +706795,57.505,79.925 +706796,59.173,79.296 +706797,52.95,81.1958 +706798,54.547,80.5746 +706799,56.192,79.965 +706800,57.887,79.37 +706801,51.586,81.1704 +706802,53.207,80.5818 +706803,54.878,80.0054 +706804,56.601,79.444 +706805,50.222,81.1445 +706806,51.868,80.5888 +706807,53.564,80.0459 +706808,55.312,79.518 +706809,48.86,81.1181 +706810,50.53,80.5956 +706811,52.249,80.0865 +706812,54.023,79.593 +706813,47.499,81.0914 +706814,49.191,80.6024 +706815,50.934,80.1272 +706816,52.732,79.668 +706817,46.14,81.0642 +706818,47.853,80.6089 +706819,49.619,80.1681 +706820,51.44,79.744 +706821,44.781,81.0366 +706822,46.516,80.6154 +706823,48.303,80.2091 +706824,50.146,79.82 +706825,43.425,81.0087 +706826,45.179,80.6218 +706827,46.986,80.2503 +706828,48.851,79.897 +706829,42.069,80.9805 +706830,43.842,80.628 +706831,45.669,80.2915 +706832,47.554,79.973 +706833,40.715,80.9519 +706834,42.506,80.6342 +706835,44.352,80.3329 +706836,46.256,80.0506 +706837,39.362,80.9231 +706838,41.171,80.6402 +706839,43.034,80.3743 +706840,44.957,80.128 +706841,38.011,80.8941 +706842,39.835,80.6462 +706843,41.715,80.4159 +706844,43.655,80.2056 +706845,36.661,80.8648 +706846,38.501,80.6521 +706847,40.396,80.4575 +706848,42.353,80.2834 +706849,35.312,80.8354 +706850,37.166,80.658 +706851,39.077,80.4992 +706852,41.049,80.3614 +706853,33.965,80.8057 +706854,35.832,80.6638 +706855,37.757,80.5409 +706856,39.743,80.4396 +706857,32.62,80.776 +706858,34.499,80.6696 +706859,36.436,80.5827 +706860,38.436,80.5179 +706861,31.275,80.7461 +706862,33.166,80.6753 +706863,35.115,80.6245 +706864,37.128,80.5963 +706865,29.933,80.7162 +706866,31.834,80.6811 +706867,33.793,80.6663 +706868,35.817,80.6747 +706869,28.591,80.6862 +706870,30.502,80.6868 +706871,32.471,80.7082 +706872,34.506,80.7532 +706873,27.251,80.6562 +706874,29.17,80.6925 +706875,31.148,80.7501 +706876,33.192,80.8317 +706877,25.913,80.6262 +706878,27.839,80.6982 +706879,29.825,80.7919 +706880,31.878,80.9101 +706881,24.576,80.5962 +706882,26.508,80.704 +706883,28.501,80.8338 +706884,30.561,80.9885 +706885,23.241,80.5663 +706886,25.178,80.7097 +706887,27.177,80.8756 +706888,29.243,81.0668 +706889,21.907,80.5364 +706890,23.849,80.7155 +706891,25.852,80.9174 +706892,27.923,81.145 +706893,20.574,80.5067 +706894,22.519,80.7214 +706895,24.526,80.9592 +706896,26.602,81.2231 +706897,19.243,80.4771 +706898,21.191,80.7273 +706899,23.2,81.0009 +706900,25.279,81.301 +706901,17.913,80.4477 +706902,19.863,80.7332 +706903,21.874,81.0426 +706904,23.955,81.3786 +706905,16.585,80.4185 +706906,18.535,80.7393 +706907,20.547,81.0842 +706908,22.628,81.4561 +706909,15.259,80.3896 +706910,17.208,80.7454 +706911,19.219,81.1257 +706912,21.301,81.5333 +706913,13.933,80.3609 +706914,15.881,80.7516 +706915,17.891,81.1671 +706916,19.971,81.6102 +706917,12.61,80.3324 +706918,14.554,80.7579 +706919,16.562,81.2084 +706920,18.641,81.6868 +706921,11.287,80.3043 +706922,13.229,80.7644 +706923,15.233,81.2496 +706924,17.308,81.763 +706925,9.9667,80.2765 +706926,11.903,80.7709 +706927,13.903,81.2907 +706928,15.974,81.8388 +706929,8.6474,80.2491 +706930,10.578,80.7776 +706931,12.572,81.3317 +706932,14.638,81.9143 +706933,7.3295,80.2221 +706934,9.2539,80.7844 +706935,11.241,81.3725 +706936,13.301,81.9893 +706937,6.0131,80.1955 +706938,7.93,80.7914 +706939,9.9098,81.4132 +706940,11.962,82.0639 +706941,4.6981,80.1693 +706942,6.6065,80.7985 +706943,8.5778,81.4537 +706944,10.622,82.1379 +706945,3.3846,80.1436 +706946,5.2835,80.8058 +706947,7.2452,81.4941 +706948,9.2795,82.2115 +706949,2.0725,80.1184 +706950,3.9609,80.8133 +706951,5.9122,81.5343 +706952,7.9359,82.2845 +706953,0.76178,80.0938 +706954,2.6388,80.8209 +706955,4.5785,81.5743 +706956,6.5908,82.3569 +706957,359.45,80.0697 +706958,1.3172,80.8287 +706959,3.2444,81.6141 +706960,5.2441,82.4288 +706961,358.14,80.0461 +706962,360,80.8368 +706963,1.9097,81.6538 +706964,3.8959,82.5 +706965,356.84,80.0232 +706966,358.68,80.845 +706967,0.5745,81.6932 +706968,2.5461,82.5706 +706969,355.53,80.0009 +706970,357.35,80.8535 +706971,359.24,81.7324 +706972,1.1948,82.6405 +706973,354.23,79.979 +706974,356.03,80.8622 +706975,357.9,81.7714 +706976,359.84,82.7098 +706977,352.93,79.958 +706978,354.72,80.8711 +706979,356.57,81.8101 +706980,358.49,82.7783 +706981,351.63,79.938 +706982,353.4,80.8803 +706983,355.23,81.8486 +706984,357.13,82.846 +706985,350.33,79.918 +706986,352.08,80.8897 +706987,353.89,81.8869 +706988,355.77,82.913 +706989,349.03,79.9 +706990,350.76,80.8993 +706991,352.55,81.9249 +706992,354.42,82.9792 +706993,347.73,79.882 +706994,349.44,80.9093 +706995,351.21,81.9627 +706996,353.06,83.0446 +706997,346.43,79.864 +706998,348.12,80.9195 +706999,349.87,82.0001 +707000,351.69,83.1092 +707001,345.14,79.848 +707002,346.81,80.93 +707003,348.54,82.0374 +707004,350.33,83.1729 +707005,343.85,79.832 +707006,345.49,80.9407 +707007,347.2,82.0743 +707008,348.97,83.2357 +707009,342.55,79.818 +707010,344.17,80.9518 +707011,345.85,82.1109 +707012,347.6,83.2976 +707013,341.26,79.804 +707014,342.86,80.9632 +707015,344.51,82.1472 +707016,346.24,83.3586 +707017,339.97,79.791 +707018,341.54,80.9748 +707019,343.17,82.1832 +707020,344.87,83.4187 +707021,338.68,79.779 +707022,340.23,80.9868 +707023,341.83,82.2189 +707024,343.5,83.4778 +707025,337.4,79.768 +707026,338.91,80.9991 +707027,340.49,82.2543 +707028,342.13,83.5359 +707029,336.11,79.758 +707030,337.6,81.0118 +707031,339.14,82.2894 +707032,340.76,83.593 +707033,334.82,79.749 +707034,336.29,81.0247 +707035,337.8,82.3241 +707036,339.38,83.6492 +707037,333.54,79.741 +707038,334.97,81.038 +707039,336.46,82.3585 +707040,338.01,83.7042 +707041,332.26,79.734 +707042,333.66,81.0517 +707043,335.11,82.3926 +707044,336.63,83.7583 +707045,330.98,79.727 +707046,332.35,81.0657 +707047,333.77,82.4263 +707048,335.26,83.8113 +707049,329.69,79.722 +707050,331.03,81.0801 +707051,332.42,82.4596 +707052,333.88,83.8632 +707053,328.41,79.719 +707054,329.72,81.0948 +707055,331.08,82.4926 +707056,332.5,83.914 +707057,327.13,79.716 +707058,328.41,81.1099 +707059,329.73,82.5253 +707060,331.12,83.9637 +707061,325.86,79.714 +707062,327.1,81.1253 +707063,328.39,82.5575 +707064,329.74,84.0123 +707065,324.58,79.713 +707066,325.79,81.1412 +707067,327.04,82.5894 +707068,328.36,84.0598 +707069,323.3,79.714 +707070,324.47,81.1574 +707071,325.7,82.6209 +707072,326.97,84.1061 +707073,322.03,79.715 +707074,323.16,81.174 +707075,324.35,82.652 +707076,325.59,84.1512 +707077,320.75,79.718 +707078,321.85,81.191 +707079,323,82.6828 +707080,324.2,84.1952 +707081,319.48,79.722 +707082,320.54,81.2083 +707083,321.65,82.7131 +707084,322.82,84.238 +707085,318.2,79.727 +707086,319.23,81.2261 +707087,320.31,82.7431 +707088,321.43,84.2796 +707089,316.93,79.734 +707090,317.92,81.2443 +707091,318.96,82.7727 +707092,320.05,84.3201 +707093,315.66,79.741 +707094,316.61,81.2629 +707095,317.61,82.8018 +707096,318.66,84.3593 +707097,314.39,79.75 +707098,315.3,81.2819 +707099,316.26,82.8306 +707100,317.27,84.3973 +707101,313.12,79.76 +707102,313.99,81.3013 +707103,314.91,82.8589 +707104,315.88,84.4341 +707105,311.85,79.771 +707106,312.68,81.3211 +707107,313.56,82.8869 +707108,314.49,84.4696 +707109,310.58,79.784 +707110,311.37,81.3413 +707111,312.21,82.9144 +707112,313.1,84.5039 +707113,309.31,79.798 +707114,310.07,81.3619 +707115,310.86,82.9416 +707116,311.71,84.537 +707117,308.04,79.812 +707118,308.76,81.383 +707119,309.51,82.9683 +707120,310.31,84.5688 +707121,306.78,79.829 +707122,307.45,81.4045 +707123,308.16,82.9946 +707124,308.92,84.5994 +707125,305.51,79.846 +707126,306.14,81.4264 +707127,306.81,83.0204 +707128,307.53,84.6288 +707129,304.24,79.865 +707130,304.83,81.4487 +707131,305.46,83.0459 +707132,306.14,84.6568 +707133,302.97,79.885 +707134,303.52,81.4715 +707135,304.11,83.0709 +707136,304.74,84.6837 +707137,301.71,79.906 +707138,302.22,81.4946 +707139,302.76,83.0956 +707140,303.35,84.7092 +707141,300.44,79.929 +707142,300.91,81.5182 +707143,301.41,83.1198 +707144,301.95,84.7335 +707145,299.18,79.953 +707146,299.6,81.5423 +707147,300.06,83.1435 +707148,300.56,84.7566 +707149,297.91,79.978 +707150,298.29,81.5667 +707151,298.71,83.1669 +707152,299.16,84.7783 +707153,296.65,80.0044 +707154,296.98,81.5916 +707155,297.36,83.1898 +707156,297.77,84.7989 +707157,295.38,80.0322 +707158,295.68,81.6169 +707159,296,83.2123 +707160,296.37,84.8181 +707161,294.12,80.0612 +707162,294.37,81.6427 +707163,294.65,83.2344 +707164,294.97,84.8362 +707165,292.85,80.0915 +707166,293.06,81.6688 +707167,293.3,83.2561 +707168,293.58,84.8529 +707169,291.59,80.1231 +707170,291.75,81.6954 +707171,291.95,83.2774 +707172,292.18,84.8684 +707173,290.33,80.156 +707174,290.44,81.7224 +707175,290.6,83.2982 +707176,290.78,84.8827 +707177,289.06,80.1901 +707178,289.14,81.7498 +707179,289.24,83.3186 +707180,289.39,84.8958 +707181,287.8,80.2255 +707182,287.83,81.7777 +707183,287.89,83.3386 +707184,287.99,84.9076 +707185,286.53,80.2622 +707186,286.52,81.806 +707187,286.54,83.3582 +707188,286.59,84.9181 +707189,285.27,80.3001 +707190,285.21,81.8347 +707191,285.19,83.3774 +707192,285.2,84.9275 +707193,284.01,80.3393 +707194,283.91,81.8638 +707195,283.84,83.3962 +707196,283.8,84.9356 +707197,282.74,80.3798 +707198,282.6,81.8933 +707199,282.48,83.4146 +707200,282.4,84.9426 +707201,281.48,80.4214 +707202,281.29,81.9232 +707203,281.13,83.4325 +707204,281.01,84.9483 +707205,280.21,80.4644 +707206,279.98,81.9535 +707207,279.78,83.4501 +707208,279.61,84.9529 +707209,278.95,80.5085 +707210,278.67,81.9843 +707211,278.43,83.4673 +707212,278.21,84.9563 +707213,277.68,80.5538 +707214,277.37,82.0154 +707215,277.08,83.484 +707216,276.82,84.9585 +707217,276.42,80.6004 +707218,276.06,82.0469 +707219,275.73,83.5004 +707220,275.42,84.9596 +707221,275.15,80.6481 +707222,274.75,82.0788 +707223,274.37,83.5164 +707224,274.03,84.9595 +707225,273.89,80.6971 +707226,273.44,82.1112 +707227,273.02,83.532 +707228,272.63,84.9583 +707229,272.62,80.7472 +707230,272.13,82.1439 +707231,271.67,83.5473 +707232,271.24,84.956 +707233,271.35,80.7984 +707234,270.82,82.1769 +707235,270.32,83.5621 +707236,269.84,84.9525 +707237,270.09,80.8508 +707238,269.51,82.2104 +707239,268.97,83.5766 +707240,268.45,84.948 +707241,268.82,80.9043 +707242,268.2,82.2442 +707243,267.62,83.5908 +707244,267.06,84.9424 +707245,267.55,80.9589 +707246,266.89,82.2784 +707247,266.26,83.6045 +707248,265.66,84.9358 +707249,266.28,81.0147 +707250,265.58,82.3129 +707251,264.91,83.6179 +707252,264.27,84.928 +707253,265.01,81.0715 +707254,264.27,82.3478 +707255,263.56,83.631 +707256,262.88,84.9193 +707257,263.74,81.1293 +707258,262.96,82.3831 +707259,262.21,83.6437 +707260,261.49,84.9096 +707261,262.47,81.1883 +707262,261.65,82.4187 +707263,260.86,83.6561 +707264,260.1,84.8988 +707265,261.2,81.2482 +707266,260.34,82.4546 +707267,259.51,83.6682 +707268,258.71,84.8871 +707269,259.93,81.3092 +707270,259.03,82.4909 +707271,258.16,83.6799 +707272,257.32,84.8744 +707273,258.66,81.3711 +707274,257.72,82.5275 +707275,256.81,83.6913 +707276,255.93,84.8608 +707277,257.38,81.4341 +707278,256.41,82.5644 +707279,255.46,83.7024 +707280,254.55,84.8462 +707281,256.11,81.4979 +707282,255.1,82.6016 +707283,254.11,83.7132 +707284,253.16,84.8308 +707285,254.83,81.5627 +707286,253.78,82.6391 +707287,252.76,83.7236 +707288,251.77,84.8144 +707289,253.56,81.6285 +707290,252.47,82.677 +707291,251.41,83.7338 +707292,250.39,84.7972 +707293,252.28,81.6951 +707294,251.16,82.7151 +707295,250.07,83.7437 +707296,249,84.7792 +707297,251,81.7626 +707298,249.84,82.7535 +707299,248.72,83.7533 +707300,247.62,84.7603 +707301,249.72,81.8309 +707302,248.53,82.7922 +707303,247.37,83.7627 +707304,246.24,84.7406 +707305,248.44,81.9 +707306,247.22,82.8311 +707307,246.02,83.7718 +707308,244.86,84.7202 +707309,247.16,81.97 +707310,245.9,82.8703 +707311,244.67,83.7806 +707312,243.47,84.699 +707313,245.88,82.0407 +707314,244.59,82.9098 +707315,243.33,83.7892 +707316,242.1,84.677 +707317,244.6,82.1121 +707318,243.27,82.9495 +707319,241.98,83.7975 +707320,240.72,84.6544 +707321,243.32,82.1843 +707322,241.96,82.9894 +707323,240.63,83.8056 +707324,239.34,84.631 +707325,242.03,82.2572 +707326,240.64,83.0296 +707327,239.29,83.8135 +707328,237.96,84.607 +707329,240.75,82.3307 +707330,239.33,83.0699 +707331,237.94,83.8212 +707332,236.59,84.5824 +707333,239.46,82.4049 +707334,238.01,83.1105 +707335,236.59,83.8286 +707336,235.21,84.5571 +707337,238.17,82.4798 +707338,236.69,83.1513 +707339,235.25,83.8358 +707340,233.84,84.5313 +707341,236.88,82.5552 +707342,235.38,83.1923 +707343,233.9,83.8429 +707344,232.47,84.5049 +707345,235.59,82.6311 +707346,234.06,83.2335 +707347,232.56,83.8498 +707348,231.1,84.4779 +707349,234.3,82.7077 +707350,232.74,83.2748 +707351,231.21,83.8565 +707352,229.73,84.4505 +707353,233.01,82.7847 +707354,231.42,83.3164 +707355,229.87,83.863 +707356,228.36,84.4225 +707357,231.72,82.8622 +707358,230.1,83.358 +707359,228.53,83.8694 +707360,226.99,84.3941 +707361,230.42,82.9401 +707362,228.78,83.3998 +707363,227.18,83.8756 +707364,225.62,84.3653 +707365,229.12,83.0185 +707366,227.46,83.4418 +707367,225.84,83.8817 +707368,224.26,84.336 +707369,227.83,83.0973 +707370,226.14,83.4839 +707371,224.5,83.8876 +707372,222.89,84.3064 +707373,226.53,83.1764 +707374,224.82,83.5261 +707375,223.16,83.8935 +707376,221.53,84.2764 +707377,225.23,83.2559 +707378,223.5,83.5684 +707379,221.82,83.8992 +707380,220.17,84.2461 +707381,223.93,83.3357 +707382,222.18,83.6108 +707383,220.47,83.9048 +707384,218.81,84.2155 +707385,222.62,83.4157 +707386,220.86,83.6533 +707387,219.13,83.9103 +707388,217.45,84.1846 +707389,221.32,83.496 +707390,219.53,83.6959 +707391,217.79,83.9158 +707392,216.09,84.1535 +707393,220.01,83.5766 +707394,218.21,83.7385 +707395,216.45,83.9211 +707396,214.74,84.1222 +707397,218.71,83.6573 +707398,216.89,83.7812 +707399,215.11,83.9264 +707400,213.38,84.0906 +707401,217.4,83.7381 +707402,215.56,83.824 +707403,213.77,83.9317 +707404,212.03,84.059 +707405,216.09,83.8191 +707406,214.24,83.8667 +707407,212.44,83.9369 +707408,210.68,84.0271 +707409,214.78,83.9002 +707410,212.91,83.9096 +707411,211.1,83.9421 +707412,209.33,83.9952 +707413,213.46,83.9813 +707414,211.59,83.9524 +707415,209.76,83.9472 +707416,207.98,83.9632 +707417,212.15,84.0625 +707418,210.26,83.9953 +707419,208.42,83.9524 +707420,206.63,83.9312 +707421,210.83,84.1437 +707422,208.93,84.0381 +707423,207.08,83.9575 +707424,205.28,83.8992 +707425,209.52,84.2248 +707426,207.61,84.0809 +707427,205.75,83.9626 +707428,203.94,83.8671 +707429,208.2,84.3059 +707430,206.28,84.1238 +707431,204.41,83.9677 +707432,202.59,83.8351 +707433,206.88,84.3868 +707434,204.95,84.1665 +707435,203.08,83.9729 +707436,201.25,83.8032 +707437,205.55,84.4677 +707438,203.62,84.2093 +707439,201.74,83.9781 +707440,199.91,83.7714 +707441,204.23,84.5484 +707442,202.29,84.252 +707443,200.41,83.9833 +707444,198.57,83.7397 +707445,202.91,84.6289 +707446,200.96,84.2946 +707447,199.07,83.9886 +707448,197.23,83.7081 +707449,201.58,84.7092 +707450,199.63,84.3372 +707451,197.74,83.994 +707452,195.89,83.6768 +707453,200.25,84.7893 +707454,198.3,84.3796 +707455,196.4,83.9994 +707456,194.56,83.6456 +707457,198.92,84.8691 +707458,196.97,84.422 +707459,195.07,84.0049 +707460,193.22,83.6147 +707461,197.59,84.9485 +707462,195.64,84.4643 +707463,193.74,84.0105 +707464,191.89,83.584 +707465,196.26,85.0277 +707466,194.3,84.5065 +707467,192.41,84.0162 +707468,190.56,83.5537 +707469,194.93,85.1064 +707470,192.97,84.5485 +707471,191.07,84.022 +707472,189.23,83.5237 +707473,193.59,85.1848 +707474,191.64,84.5905 +707475,189.74,84.028 +707476,187.9,83.494 +707477,192.25,85.2627 +707478,190.3,84.6322 +707479,188.41,84.034 +707480,186.57,83.4647 +707481,190.91,85.3402 +707482,188.97,84.6739 +707483,187.08,84.0402 +707484,185.25,83.4359 +707485,189.57,85.4172 +707486,187.63,84.7153 +707487,185.75,84.0465 +707488,183.92,83.4074 +707489,188.23,85.4937 +707490,186.3,84.7566 +707491,184.42,84.053 +707492,182.6,83.3794 +707493,186.89,85.5696 +707494,184.96,84.7977 +707495,183.09,84.0597 +707496,181.28,83.352 +707497,185.55,85.645 +707498,183.62,84.8387 +707499,181.77,84.0665 +707500,179.96,83.325 +707501,184.2,85.7198 +707502,182.29,84.8794 +707503,180.44,84.0735 +707504,178.64,83.2986 +707505,182.85,85.7939 +707506,180.95,84.9199 +707507,179.11,84.0808 +707508,177.32,83.2727 +707509,181.5,85.8674 +707510,179.61,84.9603 +707511,177.78,84.0882 +707512,176.01,83.2475 +707513,180.15,85.9402 +707514,178.27,85.0003 +707515,176.46,84.0958 +707516,174.69,83.2228 +707517,178.8,86.0123 +707518,176.93,85.0402 +707519,175.13,84.1036 +707520,173.38,83.1988 +707521,177.45,86.0837 +707522,175.59,85.0798 +707523,173.8,84.1117 +707524,172.07,83.1755 +707525,176.09,86.1543 +707526,174.25,85.1192 +707527,172.48,84.12 +707528,170.76,83.1529 +707529,174.74,86.2241 +707530,172.91,85.1583 +707531,171.15,84.1285 +707532,169.45,83.131 +707533,173.38,86.2931 +707534,171.57,85.1971 +707535,169.83,84.1373 +707536,168.14,83.1099 +707537,172.02,86.3613 +707538,170.23,85.2357 +707539,168.5,84.1464 +707540,166.83,83.0895 +707541,170.66,86.4286 +707542,168.89,85.2739 +707543,167.18,84.1557 +707544,165.52,83.0699 +707545,169.3,86.495 +707546,167.54,85.3119 +707547,165.85,84.1653 +707548,164.22,83.0512 +707549,167.94,86.5605 +707550,166.2,85.3496 +707551,164.53,84.1752 +707552,162.92,83.0333 +707553,166.57,86.6251 +707554,164.86,85.387 +707555,163.21,84.1853 +707556,161.61,83.0162 +707557,165.21,86.6887 +707558,163.51,85.4241 +707559,161.89,84.1958 +707560,160.31,83 +707561,163.84,86.7514 +707562,162.17,85.4608 +707563,160.56,84.2066 +707564,159.01,82.9848 +707565,162.47,86.8131 +707566,160.82,85.4972 +707567,159.24,84.2176 +707568,157.71,82.9705 +707569,161.1,86.8737 +707570,159.48,85.5333 +707571,157.92,84.229 +707572,156.42,82.9571 +707573,159.73,86.9334 +707574,158.13,85.569 +707575,156.6,84.2407 +707576,155.12,82.9447 +707577,158.36,86.9919 +707578,156.79,85.6044 +707579,155.28,84.2528 +707580,153.82,82.9332 +707581,156.98,87.0494 +707582,155.44,85.6395 +707583,153.96,84.2652 +707584,152.53,82.9228 +707585,155.61,87.1058 +707586,154.09,85.6741 +707587,152.64,84.2779 +707588,151.24,82.9134 +707589,154.23,87.1611 +707590,152.75,85.7084 +707591,151.32,84.291 +707592,149.94,82.9051 +707593,152.86,87.2153 +707594,151.4,85.7424 +707595,150,84.3044 +707596,148.65,82.8978 +707597,151.48,87.2683 +707598,150.05,85.7759 +707599,148.68,84.3182 +707600,147.36,82.8916 +707601,150.1,87.3202 +707602,148.7,85.8091 +707603,147.36,84.3324 +707604,146.07,82.8865 +707605,148.72,87.3709 +707606,147.35,85.8419 +707607,146.04,84.3469 +707608,144.78,82.8825 +707609,147.34,87.4204 +707610,146,85.8743 +707611,144.72,84.3618 +707612,143.5,82.8796 +707613,145.96,87.4688 +707614,144.65,85.9062 +707615,143.41,84.3771 +707616,142.21,82.8779 +707617,144.58,87.5159 +707618,143.3,85.9378 +707619,142.09,84.3928 +707620,140.92,82.8774 +707621,143.19,87.5617 +707622,141.95,85.969 +707623,140.77,84.4088 +707624,139.64,82.878 +707625,141.81,87.6064 +707626,140.6,85.9998 +707627,139.45,84.4253 +707628,138.35,82.8798 +707629,140.42,87.6497 +707630,139.25,86.0301 +707631,138.14,84.4421 +707632,137.07,82.8828 +707633,139.03,87.6919 +707634,137.9,86.06 +707635,136.82,84.4594 +707636,135.79,82.887 +707637,137.65,87.7327 +707638,136.55,86.0895 +707639,135.5,84.4771 +707640,134.51,82.8924 +707641,136.26,87.7723 +707642,135.19,86.1186 +707643,134.19,84.4951 +707644,133.22,82.8991 +707645,134.87,87.8106 +707646,133.84,86.1472 +707647,132.87,84.5136 +707648,131.94,82.907 +707649,133.48,87.8476 +707650,132.49,86.1754 +707651,131.55,84.5325 +707652,130.66,82.9162 +707653,132.09,87.8832 +707654,131.14,86.2032 +707655,130.24,84.5518 +707656,129.38,82.9266 +707657,130.7,87.9176 +707658,129.78,86.2306 +707659,128.92,84.5716 +707660,128.1,82.9383 +707661,129.31,87.9507 +707662,128.43,86.2574 +707663,127.61,84.5917 +707664,126.83,82.9513 +707665,127.91,87.9824 +707666,127.08,86.2839 +707667,126.29,84.6123 +707668,125.55,82.9655 +707669,126.52,88.0128 +707670,125.72,86.3099 +707671,124.98,84.6333 +707672,124.27,82.9811 +707673,125.13,88.0419 +707674,124.37,86.3354 +707675,123.66,84.6548 +707676,122.99,82.9979 +707677,123.73,88.0697 +707678,123.01,86.3606 +707679,122.35,84.6766 +707680,121.72,83.0161 +707681,122.34,88.0961 +707682,121.66,86.3852 +707683,121.03,84.6989 +707684,120.44,83.0355 +707685,120.94,88.1212 +707686,120.31,86.4094 +707687,119.72,84.7217 +707688,119.17,83.0563 +707689,119.54,88.1449 +707690,118.95,86.4332 +707691,118.4,84.7448 +707692,117.89,83.0784 +707693,118.15,88.1674 +707694,117.6,86.4565 +707695,117.09,84.7684 +707696,116.62,83.1018 +707697,116.75,88.1884 +707698,116.24,86.4794 +707699,115.77,84.7924 +707700,115.34,83.1265 +707701,115.36,88.2082 +707702,114.89,86.5018 +707703,114.46,84.8169 +707704,114.07,83.1525 +707705,113.96,88.2266 +707706,113.53,86.5237 +707707,113.14,84.8418 +707708,112.79,83.1799 +707709,112.56,88.2437 +707710,112.17,86.5452 +707711,111.83,84.8671 +707712,111.52,83.2085 +707713,111.16,88.2594 +707714,110.82,86.5663 +707715,110.52,84.8929 +707716,110.25,83.2385 +707717,109.76,88.2739 +707718,109.46,86.5869 +707719,109.2,84.9191 +707720,108.97,83.2698 +707721,108.37,88.287 +707722,108.11,86.607 +707723,107.89,84.9457 +707724,107.7,83.3024 +707725,106.97,88.2988 +707726,106.75,86.6268 +707727,106.57,84.9728 +707728,106.43,83.3364 +707729,105.57,88.3093 +707730,105.4,86.646 +707731,105.26,85.0002 +707732,105.15,83.3716 +707733,104.17,88.3185 +707734,104.04,86.6649 +707735,103.94,85.0281 +707736,103.88,83.4081 +707737,102.77,88.3264 +707738,102.68,86.6832 +707739,102.63,85.0565 +707740,102.61,83.446 +707741,101.37,88.333 +707742,101.33,86.7012 +707743,101.31,85.0852 +707744,101.33,83.4851 +707745,99.977,88.3383 +707746,99.972,86.7187 +707747,100,85.1144 +707748,100.06,83.5255 +707749,98.578,88.3424 +707750,98.616,86.7358 +707751,98.686,85.1439 +707752,98.786,83.5671 +707753,97.18,88.3452 +707754,97.26,86.7524 +707755,97.371,85.1739 +707756,97.513,83.6101 +707757,95.782,88.3468 +707758,95.904,86.7687 +707759,96.057,85.2043 +707760,96.239,83.6543 +707761,94.384,88.3472 +707762,94.548,86.7845 +707763,94.742,85.2352 +707764,94.965,83.6997 +707765,92.986,88.3463 +707766,93.192,86.7998 +707767,93.427,85.2664 +707768,93.69,83.7464 +707769,91.588,88.3442 +707770,91.836,86.8148 +707771,92.112,85.298 +707772,92.416,83.7943 +707773,90.191,88.3409 +707774,90.48,86.8294 +707775,90.797,85.33 +707776,91.141,83.8435 +707777,88.794,88.3364 +707778,89.124,86.8435 +707779,89.481,85.3624 +707780,89.866,83.8938 +707781,87.397,88.3308 +707782,87.768,86.8573 +707783,88.166,85.3951 +707784,88.59,83.9453 +707785,86.001,88.324 +707786,86.412,86.8706 +707787,86.85,85.4283 +707788,87.314,83.998 +707789,84.605,88.316 +707790,85.057,86.8836 +707791,85.535,85.4618 +707792,86.038,84.0519 +707793,83.21,88.3069 +707794,83.701,86.8961 +707795,84.219,85.4958 +707796,84.761,84.1069 +707797,81.815,88.2968 +707798,82.346,86.9083 +707799,82.903,85.53 +707800,83.484,84.1631 +707801,80.42,88.2855 +707802,80.991,86.9201 +707803,81.586,85.5647 +707804,82.206,84.2203 +707805,79.026,88.2732 +707806,79.635,86.9316 +707807,80.27,85.5996 +707808,80.928,84.2787 +707809,77.632,88.2598 +707810,78.28,86.9426 +707811,78.953,85.635 +707812,79.649,84.3382 +707813,76.239,88.2453 +707814,76.926,86.9533 +707815,77.636,85.6707 +707816,78.37,84.3987 +707817,74.847,88.2299 +707818,75.571,86.9637 +707819,76.319,85.7067 +707820,77.09,84.4603 +707821,73.455,88.2134 +707822,74.217,86.9737 +707823,75.001,85.743 +707824,75.809,84.5229 +707825,72.064,88.196 +707826,72.862,86.9834 +707827,73.684,85.7797 +707828,74.528,84.5865 +707829,70.674,88.1776 +707830,71.508,86.9927 +707831,72.366,85.8167 +707832,73.246,84.6511 +707833,69.284,88.1583 +707834,70.154,87.0017 +707835,71.047,85.854 +707836,71.963,84.7166 +707837,67.895,88.1381 +707838,68.8,87.0104 +707839,69.729,85.8916 +707840,70.679,84.7832 +707841,66.507,88.117 +707842,67.447,87.0188 +707843,68.41,85.9294 +707844,69.395,84.8506 +707845,65.119,88.095 +707846,66.094,87.0268 +707847,67.091,85.9676 +707848,68.11,84.9189 +707849,63.733,88.0721 +707850,64.741,87.0346 +707851,65.771,86.0061 +707852,66.824,84.9882 +707853,62.347,88.0485 +707854,63.388,87.0421 +707855,64.451,86.0448 +707856,65.537,85.0582 +707857,60.962,88.024 +707858,62.035,87.0493 +707859,63.131,86.0838 +707860,64.25,85.1291 +707861,59.578,87.9988 +707862,60.683,87.0562 +707863,61.811,86.123 +707864,62.961,85.2009 +707865,58.195,87.9728 +707866,59.331,87.0628 +707867,60.49,86.1625 +707868,61.672,85.2734 +707869,56.813,87.946 +707870,57.979,87.0692 +707871,59.169,86.2022 +707872,60.381,85.3466 +707873,55.432,87.9186 +707874,56.628,87.0754 +707875,57.847,86.2422 +707876,59.09,85.4206 +707877,54.052,87.8905 +707878,55.277,87.0813 +707879,56.526,86.2824 +707880,57.797,85.4953 +707881,52.672,87.8617 +707882,53.926,87.087 +707883,55.203,86.3227 +707884,56.504,85.5707 +707885,51.294,87.8324 +707886,52.575,87.0924 +707887,53.881,86.3633 +707888,55.209,85.6467 +707889,49.917,87.8024 +707890,51.225,87.0977 +707891,52.558,86.4041 +707892,53.914,85.7234 +707893,48.541,87.7718 +707894,49.875,87.1027 +707895,51.234,86.4451 +707896,52.617,85.8006 +707897,47.166,87.7407 +707898,48.526,87.1075 +707899,49.91,86.4862 +707900,51.319,85.8784 +707901,45.792,87.7091 +707902,47.176,87.1122 +707903,48.586,86.5275 +707904,50.021,85.9568 +707905,44.419,87.677 +707906,45.828,87.1167 +707907,47.261,86.569 +707908,48.721,86.0356 +707909,43.047,87.6444 +707910,44.479,87.121 +707911,45.936,86.6106 +707912,47.419,86.115 +707913,41.677,87.6114 +707914,43.131,87.1251 +707915,44.611,86.6523 +707916,46.117,86.1948 +707917,40.307,87.578 +707918,41.783,87.1291 +707919,43.285,86.6942 +707920,44.814,86.275 +707921,38.939,87.5442 +707922,40.435,87.1329 +707923,41.959,86.7362 +707924,43.509,86.3556 +707925,37.572,87.51 +707926,39.088,87.1367 +707927,40.632,86.7783 +707928,42.203,86.4366 +707929,36.206,87.4755 +707930,37.741,87.1403 +707931,39.305,86.8205 +707932,40.896,86.5179 +707933,34.842,87.4408 +707934,36.395,87.1437 +707935,37.977,86.8627 +707936,39.587,86.5995 +707937,33.478,87.4057 +707938,35.049,87.1471 +707939,36.649,86.9051 +707940,38.278,86.6814 +707941,32.116,87.3704 +707942,33.703,87.1504 +707943,35.32,86.9475 +707944,36.967,86.7635 +707945,30.755,87.335 +707946,32.358,87.1536 +707947,33.991,86.99 +707948,35.654,86.8459 +707949,29.395,87.2993 +707950,31.013,87.1568 +707951,32.661,87.0325 +707952,34.341,86.9284 +707953,28.037,87.2635 +707954,29.669,87.1598 +707955,31.331,87.075 +707956,33.026,87.011 +707957,26.68,87.2276 +707958,28.325,87.1629 +707959,30.001,87.1176 +707960,31.709,87.0938 +707961,25.324,87.1916 +707962,26.981,87.1658 +707963,28.67,87.1602 +707964,30.392,87.1766 +707965,23.97,87.1555 +707966,25.638,87.1688 +707967,27.338,87.2028 +707968,29.073,87.2595 +707969,22.616,87.1194 +707970,24.295,87.1717 +707971,26.007,87.2453 +707972,27.752,87.3424 +707973,21.265,87.0833 +707974,22.953,87.1746 +707975,24.674,87.2879 +707976,26.431,87.4253 +707977,19.914,87.0472 +707978,21.61,87.1775 +707979,23.341,87.3304 +707980,25.108,87.5081 +707981,18.565,87.0112 +707982,20.269,87.1805 +707983,22.008,87.3729 +707984,23.783,87.5909 +707985,17.217,86.9753 +707986,18.928,87.1834 +707987,20.674,87.4154 +707988,22.457,87.6735 +707989,15.87,86.9395 +707990,17.587,87.1864 +707991,19.339,87.4577 +707992,21.13,87.756 +707993,14.525,86.9038 +707994,16.246,87.1894 +707995,18.004,87.5 +707996,19.801,87.8383 +707997,13.181,86.8683 +707998,14.906,87.1924 +707999,16.669,87.5423 +708000,18.471,87.9204 +708001,11.838,86.833 +708002,13.567,87.1955 +708003,15.333,87.5844 +708004,17.14,88.0023 +708005,10.497,86.798 +708006,12.228,87.1987 +708007,13.997,87.6264 +708008,15.807,88.0838 +708009,9.1568,86.7632 +708010,10.889,87.202 +708011,12.66,87.6684 +708012,14.472,88.1651 +708013,7.8181,86.7287 +708014,9.5507,87.2053 +708015,11.322,87.7102 +708016,13.137,88.2461 +708017,6.4807,86.6946 +708018,8.2128,87.2088 +708019,9.9844,87.7518 +708020,11.799,88.3266 +708021,5.1447,86.6608 +708022,6.8753,87.2123 +708023,8.646,87.7933 +708024,10.461,88.4068 +708025,3.81,86.6273 +708026,5.5383,87.216 +708027,7.3071,87.8347 +708028,9.1206,88.4865 +708029,2.4766,86.5943 +708030,4.2016,87.2198 +708031,5.9677,87.8759 +708032,7.7791,88.5658 +708033,1.1446,86.5617 +708034,2.8654,87.2237 +708035,4.6277,87.9169 +708036,6.4362,88.6446 +708037,359.81,86.5296 +708038,1.5296,87.2278 +708039,3.2873,87.9578 +708040,5.0919,88.7228 +708041,358.48,86.498 +708042,0.19413,87.2321 +708043,1.9464,87.9984 +708044,3.7461,88.8005 +708045,357.16,86.4669 +708046,358.86,87.2365 +708047,0.60497,88.0389 +708048,2.399,88.8776 +708049,355.83,86.4363 +708050,357.52,87.241 +708051,359.26,88.0791 +708052,1.0504,88.9541 +708053,354.5,86.4064 +708054,356.19,87.2458 +708055,357.92,88.1191 +708056,359.7,89.02998 +708057,353.18,86.377 +708058,354.86,87.2507 +708059,356.58,88.1589 +708060,358.35,89.10515 +708061,351.86,86.3482 +708062,353.52,87.2559 +708063,355.23,88.1984 +708064,357,89.17962 +708065,350.53,86.3201 +708066,352.19,87.2613 +708067,353.89,88.2377 +708068,355.64,89.25335 +708069,349.21,86.2927 +708070,350.86,87.2668 +708071,352.55,88.2767 +708072,354.29,89.32633 +708073,347.89,86.266 +708074,349.53,87.2726 +708075,351.2,88.3154 +708076,352.93,89.39851 +708077,346.58,86.24 +708078,348.19,87.2787 +708079,349.86,88.3539 +708080,351.57,89.46988 +708081,345.26,86.2148 +708082,346.86,87.285 +708083,348.51,88.3921 +708084,350.21,89.54041 +708085,343.94,86.1903 +708086,345.53,87.2915 +708087,347.16,88.43 +708088,348.85,89.61007 +708089,342.63,86.1667 +708090,344.2,87.2983 +708091,345.82,88.4675 +708092,347.49,89.67883 +708093,341.32,86.1439 +708094,342.87,87.3054 +708095,344.47,88.5048 +708096,346.13,89.74667 +708097,340,86.1219 +708098,341.54,87.3127 +708099,343.12,88.5417 +708100,344.76,89.81356 +708101,338.69,86.1009 +708102,340.21,87.3204 +708103,341.77,88.5784 +708104,343.39,89.87949 +708105,337.38,86.0807 +708106,338.88,87.3283 +708107,340.43,88.6146 +708108,342.03,89.944415 +708109,336.07,86.0614 +708110,337.55,87.3365 +708111,339.08,88.6506 +708112,340.66,90.0083247 +708113,334.77,86.0431 +708114,336.22,87.3451 +708115,337.73,88.6861 +708116,339.29,90.071193 +708117,333.46,86.0258 +708118,334.9,87.3539 +708119,336.38,88.7213 +708120,337.92,90.133 +708121,332.15,86.0094 +708122,333.57,87.3631 +708123,335.03,88.7562 +708124,336.54,90.19372 +708125,330.85,85.994 +708126,332.24,87.3726 +708127,333.68,88.7907 +708128,335.17,90.25333 +708129,329.55,85.9797 +708130,330.91,87.3824 +708131,332.33,88.8248 +708132,333.8,90.31181 +708133,328.24,85.9664 +708134,329.59,87.3926 +708135,330.97,88.8585 +708136,332.42,90.36915 +708137,326.94,85.9542 +708138,328.26,87.4031 +708139,329.62,88.8918 +708140,331.04,90.42532 +708141,325.64,85.943 +708142,326.93,87.414 +708143,328.27,88.9247 +708144,329.67,90.4803 +708145,324.34,85.933 +708146,325.61,87.4252 +708147,326.92,88.9572 +708148,328.29,90.53408 +708149,323.04,85.924 +708150,324.28,87.4368 +708151,325.57,88.9893 +708152,326.91,90.58663 +708153,321.74,85.9162 +708154,322.95,87.4487 +708155,324.21,89.02093 +708156,325.53,90.63795 +708157,320.45,85.9096 +708158,321.63,87.4611 +708159,322.86,89.05218 +708160,324.14,90.68801 +708161,319.15,85.9041 +708162,320.3,87.4738 +708163,321.5,89.08299 +708164,322.76,90.7368 +708165,317.86,85.8998 +708166,318.98,87.4869 +708167,320.15,89.11337 +708168,321.38,90.78431 +708169,316.56,85.8967 +708170,317.66,87.5004 +708171,318.8,89.14331 +708172,319.99,90.83051 +708173,315.27,85.8948 +708174,316.33,87.5143 +708175,317.44,89.1728 +708176,318.6,90.87541 +708177,313.97,85.8941 +708178,315.01,87.5285 +708179,316.09,89.20185 +708180,317.22,90.91898 +708181,312.68,85.8947 +708182,313.68,87.5432 +708183,314.73,89.23045 +708184,315.83,90.9612 +708185,311.39,85.8965 +708186,312.36,87.5583 +708187,313.37,89.25858 +708188,314.44,91.0021 +708189,310.1,85.8995 +708190,311.04,87.5738 +708191,312.02,89.28626 +708192,313.05,91.0416 +708193,308.81,85.9038 +708194,309.71,87.5897 +708195,310.66,89.31347 +708196,311.66,91.0798 +708197,307.52,85.9094 +708198,308.39,87.6061 +708199,309.3,89.34022 +708200,310.27,91.1165 +708201,306.23,85.9163 +708202,307.07,87.6228 +708203,307.95,89.3665 +708204,308.88,91.1519 +708205,304.94,85.9245 +708206,305.74,87.64 +708207,306.59,89.3923 +708208,307.49,91.1859 +708209,303.65,85.934 +708210,304.42,87.6576 +708211,305.23,89.41763 +708212,306.09,91.2185 +708213,302.37,85.9448 +708214,303.1,87.6756 +708215,303.87,89.44247 +708216,304.7,91.2497 +708217,301.08,85.957 +708218,301.78,87.6941 +708219,302.52,89.46684 +708220,303.3,91.2795 +708221,299.79,85.9704 +708222,300.45,87.7129 +708223,301.16,89.49073 +708224,301.91,91.3078 +708225,298.51,85.9852 +708226,299.13,87.7323 +708227,299.8,89.51413 +708228,300.51,91.3347 +708229,297.22,86.0014 +708230,297.81,87.752 +708231,298.44,89.53705 +708232,299.12,91.3602 +708233,295.94,86.0188 +708234,296.49,87.7722 +708235,297.08,89.55948 +708236,297.72,91.3843 +708237,294.65,86.0376 +708238,295.17,87.7928 +708239,295.72,89.58143 +708240,296.32,91.407 +708241,293.37,86.0578 +708242,293.85,87.8139 +708243,294.36,89.60289 +708244,294.93,91.4282 +708245,292.08,86.0793 +708246,292.52,87.8354 +708247,293,89.62386 +708248,293.53,91.448 +708249,290.8,86.1022 +708250,291.2,87.8573 +708251,291.64,89.64434 +708252,292.13,91.4664 +708253,289.51,86.1264 +708254,289.88,87.8797 +708255,290.29,89.66433 +708256,290.73,91.4833 +708257,288.23,86.1519 +708258,288.56,87.9025 +708259,288.93,89.68383 +708260,289.33,91.4988 +708261,286.95,86.1789 +708262,287.24,87.9257 +708263,287.57,89.70285 +708264,287.93,91.5129 +708265,285.66,86.2071 +708266,285.92,87.9494 +708267,286.21,89.72138 +708268,286.53,91.5256 +708269,284.38,86.2367 +708270,284.6,87.9735 +708271,284.85,89.73943 +708272,285.13,91.5369 +708273,283.1,86.2677 +708274,283.27,87.998 +708275,283.49,89.75699 +708276,283.73,91.5467 +708277,281.81,86.3 +708278,281.95,88.023 +708279,282.12,89.77407 +708280,282.33,91.5552 +708281,280.53,86.3336 +708282,280.63,88.0484 +708283,280.76,89.79067 +708284,280.93,91.5623 +708285,279.25,86.3686 +708286,279.31,88.0743 +708287,279.4,89.80679 +708288,279.53,91.5679 +708289,277.97,86.4049 +708290,277.99,88.1005 +708291,278.04,89.82243 +708292,278.13,91.5722 +708293,276.68,86.4425 +708294,276.67,88.1272 +708295,276.68,89.8376 +708296,276.73,91.5752 +708297,275.4,86.4815 +708298,275.35,88.1543 +708299,275.32,89.8523 +708300,275.33,91.5767 +708301,274.12,86.5217 +708302,274.02,88.1818 +708303,273.96,89.86653 +708304,273.93,91.5769 +708305,272.83,86.5632 +708306,272.7,88.2098 +708307,272.6,89.88029 +708308,272.53,91.5758 +708309,271.55,86.6061 +708310,271.38,88.2381 +708311,271.24,89.89359 +708312,271.13,91.5733 +708313,270.26,86.6502 +708314,270.06,88.2669 +708315,269.88,89.906436 +708316,269.73,91.5696 +708317,268.98,86.6955 +708318,268.74,88.296 +708319,268.52,89.918825 +708320,268.33,91.5645 +708321,267.7,86.7422 +708322,267.42,88.3256 +708323,267.16,89.930764 +708324,266.93,91.5581 +708325,266.41,86.79 +708326,266.09,88.3556 +708327,265.8,89.942256 +708328,265.53,91.5505 +708329,265.13,86.8392 +708330,264.77,88.3859 +708331,264.44,89.953307 +708332,264.13,91.5416 +708333,263.84,86.8895 +708334,263.45,88.4166 +708335,263.08,89.963921 +708336,262.74,91.5314 +708337,262.56,86.941 +708338,262.13,88.4478 +708339,261.72,89.974103 +708340,261.34,91.52 +708341,261.27,86.9938 +708342,260.8,88.4793 +708343,260.36,89.983858 +708344,259.94,91.5074 +708345,259.98,87.0477 +708346,259.48,88.5111 +708347,259,89.9931918 +708348,258.54,91.4936 +708349,258.7,87.1027 +708350,258.16,88.5434 +708351,257.64,90.0021098 +708352,257.14,91.4787 +708353,257.41,87.159 +708354,256.83,88.5759 +708355,256.28,90.010618 +708356,255.75,91.4625 +708357,256.12,87.2163 +708358,255.51,88.6089 +708359,254.92,90.018721 +708360,254.35,91.4453 +708361,254.83,87.2748 +708362,254.19,88.6422 +708363,253.56,90.026427 +708364,252.96,91.4269 +708365,253.54,87.3343 +708366,252.86,88.6758 +708367,252.2,90.033741 +708368,251.56,91.4074 +708369,252.25,87.3949 +708370,251.54,88.7098 +708371,250.84,90.040671 +708372,250.17,91.3868 +708373,250.96,87.4566 +708374,250.21,88.7441 +708375,249.48,90.047221 +708376,248.77,91.3652 +708377,249.67,87.5193 +708378,248.89,88.7787 +708379,248.12,90.053401 +708380,247.38,91.3425 +708381,248.38,87.5831 +708382,247.56,88.8137 +708383,246.77,90.059216 +708384,245.99,91.3188 +708385,247.09,87.6478 +708386,246.24,88.8489 +708387,245.41,90.064673 +708388,244.59,91.2941 +708389,245.79,87.7135 +708390,244.91,88.8844 +708391,244.05,90.069782 +708392,243.2,91.2684 +708393,244.5,87.7801 +708394,243.59,88.9203 +708395,242.69,90.074548 +708396,241.81,91.2418 +708397,243.21,87.8477 +708398,242.26,88.9564 +708399,241.33,90.078979 +708400,240.42,91.2143 +708401,241.91,87.9162 +708402,240.93,88.9928 +708403,239.97,90.083085 +708404,239.03,91.1859 +708405,240.61,87.9856 +708406,239.61,89.02945 +708407,238.62,90.086872 +708408,237.64,91.1566 +708409,239.32,88.0558 +708410,238.28,89.06637 +708411,237.26,90.090348 +708412,236.26,91.1264 +708413,238.02,88.1268 +708414,236.95,89.10355 +708415,235.9,90.093523 +708416,234.87,91.0955 +708417,236.72,88.1987 +708418,235.63,89.14096 +708419,234.55,90.096405 +708420,233.48,91.0637 +708421,235.42,88.2713 +708422,234.3,89.17861 +708423,233.19,90.099002 +708424,232.1,91.0311 +708425,234.12,88.3447 +708426,232.97,89.21649 +708427,231.83,90.10132 +708428,230.72,90.99786 +708429,232.82,88.4188 +708430,231.64,89.25458 +708431,230.48,90.10338 +708432,229.33,90.96385 +708433,231.52,88.4936 +708434,230.31,89.29287 +708435,229.12,90.10517 +708436,227.95,90.92915 +708437,230.21,88.5691 +708438,228.98,89.33137 +708439,227.77,90.10672 +708440,226.57,90.89379 +708441,228.91,88.6452 +708442,227.65,89.37005 +708443,226.41,90.10803 +708444,225.19,90.8578 +708445,227.6,88.7219 +708446,226.32,89.4089 +708447,225.06,90.10911 +708448,223.81,90.8212 +708449,226.3,88.7993 +708450,224.99,89.44793 +708451,223.7,90.10996 +708452,222.43,90.78402 +708453,224.99,88.8771 +708454,223.66,89.48712 +708455,222.35,90.11061 +708456,221.05,90.74629 +708457,223.68,88.9556 +708458,222.33,89.52645 +708459,221,90.11105 +708460,219.68,90.70804 +708461,222.37,89.03447 +708462,221,89.56592 +708463,219.64,90.11131 +708464,218.3,90.6693 +708465,221.06,89.11385 +708466,219.67,89.60552 +708467,218.29,90.11138 +708468,216.93,90.63009 +708469,219.75,89.19367 +708470,218.33,89.64524 +708471,216.94,90.11128 +708472,215.56,90.59046 +708473,218.43,89.27389 +708474,217,89.68506 +708475,215.58,90.11101 +708476,214.18,90.55042 +708477,217.12,89.35449 +708478,215.67,89.72498 +708479,214.23,90.1106 +708480,212.81,90.51001 +708481,215.8,89.43543 +708482,214.33,89.76499 +708483,212.88,90.11004 +708484,211.44,90.46925 +708485,214.49,89.51669 +708486,213,89.80508 +708487,211.53,90.10935 +708488,210.08,90.42818 +708489,213.17,89.59822 +708490,211.66,89.84523 +708491,210.18,90.10854 +708492,208.71,90.38683 +708493,211.85,89.68001 +708494,210.33,89.88543 +708495,208.83,90.10762 +708496,207.34,90.34523 +708497,210.53,89.76201 +708498,208.99,89.925684 +708499,207.48,90.1066 +708500,205.98,90.30341 +708501,209.21,89.8442 +708502,207.66,89.965966 +708503,206.13,90.10549 +708504,204.61,90.26139 +708505,207.88,89.926531 +708506,206.32,90.0062717 +708507,204.78,90.10429 +708508,203.25,90.21922 +708509,206.56,90.0089858 +708510,204.98,90.046589 +708511,203.43,90.10303 +708512,201.89,90.17692 +708513,205.24,90.091526 +708514,203.65,90.086906 +708515,202.08,90.10171 +708516,200.53,90.13452 +708517,203.91,90.17412 +708518,202.31,90.12721 +708519,200.73,90.10034 +708520,199.17,90.092049 +708521,202.58,90.25673 +708522,200.97,90.1675 +708523,199.38,90.09893 +708524,197.82,90.049544 +708525,201.25,90.33933 +708526,199.63,90.20775 +708527,198.03,90.097493 +708528,196.46,90.0070337 +708529,199.92,90.42187 +708530,198.29,90.24796 +708531,196.69,90.096039 +708532,195.1,89.964548 +708533,198.59,90.50434 +708534,196.95,90.28812 +708535,195.34,90.094578 +708536,193.75,89.922118 +708537,197.26,90.5867 +708538,195.61,90.32821 +708539,193.99,90.093121 +708540,192.4,89.87978 +708541,195.92,90.6689 +708542,194.27,90.36823 +708543,192.65,90.091678 +708544,191.05,89.83755 +708545,194.59,90.75092 +708546,192.93,90.40816 +708547,191.3,90.090259 +708548,189.7,89.79547 +708549,193.25,90.83273 +708550,191.59,90.44799 +708551,189.96,90.088876 +708552,188.35,89.75357 +708553,191.91,90.91429 +708554,190.25,90.48771 +708555,188.61,90.087537 +708556,187,89.71188 +708557,190.57,90.99557 +708558,188.91,90.52731 +708559,187.27,90.086254 +708560,185.66,89.67043 +708561,189.23,91.0765 +708562,187.56,90.56678 +708563,185.92,90.085037 +708564,184.31,89.62925 +708565,187.89,91.1572 +708566,186.22,90.60611 +708567,184.58,90.083896 +708568,182.97,89.58837 +708569,186.54,91.2374 +708570,184.88,90.64529 +708571,183.24,90.082841 +708572,181.62,89.54781 +708573,185.2,91.3172 +708574,183.53,90.68431 +708575,181.89,90.081882 +708576,180.28,89.50762 +708577,183.85,91.3966 +708578,182.19,90.72315 +708579,180.55,90.081031 +708580,178.94,89.46781 +708581,182.5,91.4755 +708582,180.84,90.7618 +708583,179.21,90.080295 +708584,177.61,89.42843 +708585,181.16,91.5539 +708586,179.5,90.80027 +708587,177.87,90.079686 +708588,176.27,89.38949 +708589,179.81,91.6317 +708590,178.15,90.83852 +708591,176.53,90.079214 +708592,174.93,89.35102 +708593,178.45,91.709 +708594,176.8,90.87656 +708595,175.18,90.078887 +708596,173.6,89.31306 +708597,177.1,91.7856 +708598,175.46,90.91438 +708599,173.84,90.078716 +708600,172.26,89.27564 +708601,175.75,91.8616 +708602,174.11,90.95196 +708603,172.5,90.078711 +708604,170.93,89.23877 +708605,174.39,91.937 +708606,172.76,90.98929 +708607,171.16,90.07888 +708608,169.6,89.20249 +708609,173.03,92.0116 +708610,171.41,91.0264 +708611,169.82,90.079234 +708612,168.27,89.16683 +708613,171.68,92.0855 +708614,170.06,91.0632 +708615,168.49,90.079781 +708616,166.94,89.13182 +708617,170.32,92.1587 +708618,168.71,91.0997 +708619,167.15,90.080531 +708620,165.61,89.09747 +708621,168.95,92.231 +708622,167.36,91.136 +708623,165.81,90.081492 +708624,164.29,89.06382 +708625,167.59,92.3026 +708626,166.01,91.1719 +708627,164.47,90.082675 +708628,162.96,89.0309 +708629,166.23,92.3732 +708630,164.66,91.2076 +708631,163.13,90.084087 +708632,161.64,88.9987 +708633,164.86,92.443 +708634,163.31,91.2429 +708635,161.8,90.085737 +708636,160.31,88.9673 +708637,163.5,92.5119 +708638,161.96,91.2779 +708639,160.46,90.087634 +708640,158.99,88.9367 +708641,162.13,92.5799 +708642,160.61,91.3126 +708643,159.12,90.089786 +708644,157.67,88.907 +708645,160.76,92.6469 +708646,159.25,91.347 +708647,157.79,90.092202 +708648,156.35,88.878 +708649,159.39,92.7129 +708650,157.9,91.381 +708651,156.45,90.094889 +708652,155.03,88.85 +708653,158.02,92.7779 +708654,156.55,91.4146 +708655,155.11,90.097856 +708656,153.72,88.8228 +708657,156.65,92.8418 +708658,155.19,91.4479 +708659,153.78,90.10111 +708660,152.4,88.7966 +708661,155.28,92.9047 +708662,153.84,91.4808 +708663,152.44,90.10466 +708664,151.08,88.7713 +708665,153.9,92.9665 +708666,152.49,91.5133 +708667,151.11,90.10851 +708668,149.77,88.747 +708669,152.53,93.0272 +708670,151.13,91.5454 +708671,149.78,90.11267 +708672,148.46,88.7236 +708673,151.15,93.0867 +708674,149.78,91.5771 +708675,148.44,90.11715 +708676,147.14,88.7013 +708677,149.78,93.1451 +708678,148.42,91.6084 +708679,147.11,90.12196 +708680,145.83,88.68 +708681,148.4,93.2022 +708682,147.06,91.6394 +708683,145.77,90.12709 +708684,144.52,88.6597 +708685,147.02,93.2582 +708686,145.71,91.6698 +708687,144.44,90.13256 +708688,143.21,88.6405 +708689,145.64,93.313 +708690,144.35,91.6999 +708691,143.11,90.13838 +708692,141.9,88.6224 +708693,144.25,93.3665 +708694,142.99,91.7295 +708695,141.78,90.14454 +708696,140.6,88.6055 +708697,142.87,93.4187 +708698,141.64,91.7587 +708699,140.44,90.15106 +708700,139.29,88.5896 +708701,141.49,93.4696 +708702,140.28,91.7875 +708703,139.11,90.15795 +708704,137.98,88.5749 +708705,140.1,93.5193 +708706,138.92,91.8158 +708707,137.78,90.1652 +708708,136.68,88.5613 +708709,138.72,93.5676 +708710,137.56,91.8436 +708711,136.45,90.17282 +708712,135.37,88.5489 +708713,137.33,93.6145 +708714,136.2,91.871 +708715,135.12,90.18083 +708716,134.07,88.5377 +708717,135.94,93.6601 +708718,134.84,91.8979 +708719,133.79,90.18922 +708720,132.77,88.5277 +708721,134.56,93.7044 +708722,133.48,91.9243 +708723,132.46,90.19799 +708724,131.46,88.5189 +708725,133.17,93.7472 +708726,132.12,91.9503 +708727,131.12,90.20716 +708728,130.16,88.5114 +708729,131.78,93.7887 +708730,130.76,91.9758 +708731,129.79,90.21673 +708732,128.86,88.5051 +708733,130.39,93.8287 +708734,129.4,92.0007 +708735,128.46,90.22669 +708736,127.56,88.5001 +708737,128.99,93.8673 +708738,128.04,92.0252 +708739,127.13,90.23707 +708740,126.26,88.4963 +708741,127.6,93.9044 +708742,126.68,92.0492 +708743,125.8,90.24785 +708744,124.96,88.4938 +708745,126.21,93.9402 +708746,125.32,92.0727 +708747,124.47,90.25905 +708748,123.67,88.4927 +708749,124.82,93.9744 +708750,123.96,92.0957 +708751,123.15,90.27066 +708752,122.37,88.4928 +708753,123.42,94.0072 +708754,122.6,92.1182 +708755,121.82,90.28269 +708756,121.07,88.4943 +708757,122.03,94.0385 +708758,121.24,92.1402 +708759,120.49,90.29515 +708760,119.77,88.497 +708761,120.63,94.0683 +708762,119.87,92.1616 +708763,119.16,90.30803 +708764,118.48,88.5011 +708765,119.23,94.0966 +708766,118.51,92.1826 +708767,117.83,90.32133 +708768,117.18,88.5066 +708769,117.84,94.1234 +708770,117.15,92.203 +708771,116.5,90.33507 +708772,115.89,88.5134 +708773,116.44,94.1487 +708774,115.79,92.2229 +708775,115.17,90.34924 +708776,114.59,88.5215 +708777,115.04,94.1725 +708778,114.42,92.2423 +708779,113.84,90.36384 +708780,113.3,88.5311 +708781,113.64,94.1948 +708782,113.06,92.2612 +708783,112.51,90.37888 +708784,112,88.5419 +708785,112.25,94.2155 +708786,111.7,92.2795 +708787,111.19,90.39435 +708788,110.71,88.5542 +708789,110.85,94.2347 +708790,110.33,92.2973 +708791,109.86,90.41025 +708792,109.42,88.5678 +708793,109.45,94.2525 +708794,108.97,92.3146 +708795,108.53,90.4266 +708796,108.12,88.5828 +708797,108.05,94.2687 +708798,107.61,92.3314 +708799,107.2,90.44338 +708800,106.83,88.5992 +708801,106.65,94.2833 +708802,106.24,92.3476 +708803,105.87,90.46061 +708804,105.54,88.6169 +708805,105.25,94.2965 +708806,104.88,92.3633 +708807,104.55,90.47827 +708808,104.24,88.6361 +708809,103.85,94.3081 +708810,103.51,92.3785 +708811,103.22,90.49637 +708812,102.95,88.6566 +708813,102.44,94.3182 +708814,102.15,92.3932 +708815,101.89,90.5149 +708816,101.66,88.6785 +708817,101.04,94.3268 +708818,100.79,92.4073 +708819,100.56,90.53387 +708820,100.37,88.7018 +708821,99.642,94.3339 +708822,99.421,92.4209 +708823,99.234,90.55328 +708824,99.075,88.7264 +708825,98.24,94.3395 +708826,98.057,92.434 +708827,97.906,90.57313 +708828,97.783,88.7525 +708829,96.839,94.3436 +708830,96.692,92.4466 +708831,96.578,90.5934 +708832,96.491,88.7798 +708833,95.437,94.3462 +708834,95.328,92.4586 +708835,95.25,90.61411 +708836,95.199,88.8086 +708837,94.035,94.3473 +708838,93.963,92.4701 +708839,93.922,90.63525 +708840,93.907,88.8387 +708841,92.633,94.3469 +708842,92.599,92.4812 +708843,92.593,90.65682 +708844,92.615,88.8702 +708845,91.232,94.3451 +708846,91.234,92.4917 +708847,91.265,90.67881 +708848,91.322,88.9031 +708849,89.83,94.3418 +708850,89.869,92.5016 +708851,89.937,90.70122 +708852,90.03,88.9372 +708853,88.428,94.3371 +708854,88.505,92.5111 +708855,88.609,90.72406 +708856,88.738,88.9728 +708857,87.027,94.3309 +708858,87.14,92.5201 +708859,87.28,90.74731 +708860,87.445,89.0096 +708861,85.625,94.3233 +708862,85.776,92.5286 +708863,85.952,90.77097 +708864,86.152,89.04776 +708865,84.224,94.3143 +708866,84.411,92.5366 +708867,84.623,90.79504 +708868,84.859,89.08723 +708869,82.823,94.3039 +708870,83.047,92.544 +708871,83.295,90.81952 +708872,83.565,89.128 +708873,81.422,94.2922 +708874,81.682,92.551 +708875,81.966,90.8444 +708876,82.272,89.17006 +708877,80.022,94.279 +708878,80.318,92.5575 +708879,80.637,90.86968 +708880,80.977,89.21339 +708881,78.622,94.2645 +708882,78.954,92.5636 +708883,79.308,90.89535 +708884,79.683,89.25799 +708885,77.222,94.2487 +708886,77.589,92.5691 +708887,77.979,90.92141 +708888,78.388,89.30383 +708889,75.822,94.2315 +708890,76.225,92.5742 +708891,76.649,90.94786 +708892,77.093,89.35092 +708893,74.423,94.2131 +708894,74.861,92.5788 +708895,75.32,90.97468 +708896,75.798,89.39923 +708897,73.024,94.1933 +708898,73.497,92.583 +708899,73.99,91.0019 +708900,74.502,89.44874 +708901,71.626,94.1723 +708902,72.133,92.5867 +708903,72.66,91.0294 +708904,73.205,89.49945 +708905,70.228,94.1501 +708906,70.77,92.59 +708907,71.33,91.0574 +708908,71.908,89.55133 +708909,68.83,94.1266 +708910,69.406,92.5928 +708911,70,91.0856 +708912,70.611,89.60438 +708913,67.433,94.1019 +708914,68.043,92.5952 +708915,68.669,91.1143 +708916,69.313,89.65856 +708917,66.037,94.0761 +708918,66.679,92.5971 +708919,67.339,91.1432 +708920,68.014,89.71387 +708921,64.641,94.049 +708922,65.316,92.5987 +708923,66.008,91.1725 +708924,66.715,89.77028 +708925,63.246,94.0209 +708926,63.953,92.5998 +708927,64.677,91.2022 +708928,65.415,89.82778 +708929,61.851,93.9916 +708930,62.591,92.6005 +708931,63.345,91.2321 +708932,64.114,89.88634 +708933,60.457,93.9612 +708934,61.228,92.6008 +708935,62.014,91.2624 +708936,62.813,89.945952 +708937,59.064,93.9298 +708938,59.866,92.6008 +708939,60.682,91.293 +708940,61.511,90.006585 +708941,57.671,93.8973 +708942,58.504,92.6003 +708943,59.35,91.3239 +708944,60.209,90.06822 +708945,56.28,93.8638 +708946,57.142,92.5995 +708947,58.017,91.355 +708948,58.905,90.13083 +708949,54.888,93.8292 +708950,55.78,92.5982 +708951,56.684,91.3865 +708952,57.601,90.19441 +708953,53.498,93.7938 +708954,54.418,92.5967 +708955,55.351,91.4182 +708956,56.296,90.25891 +708957,52.108,93.7573 +708958,53.057,92.5948 +708959,54.018,91.4502 +708960,54.991,90.32433 +708961,50.72,93.72 +708962,51.696,92.5925 +708963,52.684,91.4825 +708964,53.684,90.39063 +708965,49.332,93.6818 +708966,50.335,92.5899 +708967,51.351,91.515 +708968,52.377,90.45779 +708969,47.945,93.6427 +708970,48.975,92.587 +708971,50.016,91.5478 +708972,51.068,90.52579 +708973,46.558,93.6027 +708974,47.614,92.5837 +708975,48.682,91.5807 +708976,49.759,90.5946 +708977,45.173,93.562 +708978,46.254,92.5802 +708979,47.347,91.614 +708980,48.449,90.66419 +708981,43.789,93.5205 +708982,44.895,92.5763 +708983,46.012,91.6474 +708984,47.138,90.73453 +708985,42.405,93.4782 +708986,43.535,92.5722 +708987,44.676,91.681 +708988,45.826,90.80561 +708989,41.022,93.4352 +708990,42.176,92.5678 +708991,43.34,91.7148 +708992,44.514,90.87738 +708993,39.641,93.3916 +708994,40.817,92.5631 +708995,42.004,91.7488 +708996,43.2,90.94983 +708997,38.26,93.3472 +708998,39.459,92.5581 +708999,40.667,91.783 +709000,41.885,91.0229 +709001,36.881,93.3023 +709002,38.1,92.5529 +709003,39.33,91.8174 +709004,40.569,91.0966 +709005,35.502,93.2567 +709006,36.742,92.5475 +709007,37.993,91.8519 +709008,39.252,91.1709 +709009,34.125,93.2106 +709010,35.385,92.5418 +709011,36.655,91.8866 +709012,37.934,91.2458 +709013,32.748,93.1639 +709014,34.027,92.5359 +709015,35.317,91.9213 +709016,36.615,91.3212 +709017,31.373,93.1167 +709018,32.671,92.5298 +709019,33.978,91.9563 +709020,35.295,91.397 +709021,29.998,93.069 +709022,31.314,92.5235 +709023,32.64,91.9913 +709024,33.974,91.4734 +709025,28.625,93.0209 +709026,29.958,92.517 +709027,31.3,92.0264 +709028,32.652,91.5502 +709029,27.253,92.9724 +709030,28.602,92.5103 +709031,29.961,92.0617 +709032,31.328,91.6273 +709033,25.882,92.9235 +709034,27.246,92.5035 +709035,28.62,92.097 +709036,30.004,91.7049 +709037,24.512,92.8742 +709038,25.891,92.4965 +709039,27.28,92.1324 +709040,28.678,91.7828 +709041,23.143,92.8246 +709042,24.536,92.4893 +709043,25.939,92.1678 +709044,27.351,91.861 +709045,21.775,92.7747 +709046,23.181,92.482 +709047,24.598,92.2033 +709048,26.024,91.9395 +709049,20.409,92.7246 +709050,21.827,92.4746 +709051,23.256,92.2388 +709052,24.694,92.0182 +709053,19.043,92.6743 +709054,20.473,92.4671 +709055,21.914,92.2744 +709056,23.364,92.0971 +709057,17.679,92.6237 +709058,19.12,92.4594 +709059,20.571,92.31 +709060,22.033,92.1762 +709061,16.316,92.573 +709062,17.766,92.4517 +709063,19.228,92.3456 +709064,20.7,92.2554 +709065,14.954,92.5222 +709066,16.414,92.4439 +709067,17.885,92.3812 +709068,19.366,92.3348 +709069,13.594,92.4712 +709070,15.061,92.436 +709071,16.541,92.4167 +709072,18.031,92.4142 +709073,12.234,92.4203 +709074,13.709,92.4281 +709075,15.197,92.4523 +709076,16.695,92.4937 +709077,10.876,92.3692 +709078,12.358,92.4201 +709079,13.852,92.4878 +709080,15.357,92.5731 +709081,9.519,92.3182 +709082,11.006,92.4121 +709083,12.507,92.5232 +709084,14.018,92.6526 +709085,8.1632,92.2672 +709086,9.6556,92.404 +709087,11.161,92.5586 +709088,12.678,92.732 +709089,6.8085,92.2163 +709090,8.3051,92.3959 +709091,9.815,92.5939 +709092,11.337,92.8113 +709093,5.4551,92.1655 +709094,6.955,92.3878 +709095,8.4685,92.6292 +709096,9.9947,92.8904 +709097,4.1029,92.1148 +709098,5.6053,92.3797 +709099,7.1216,92.6643 +709100,8.6509,92.9694 +709101,2.7519,92.0642 +709102,4.2559,92.3717 +709103,5.7742,92.6993 +709104,7.306,93.0482 +709105,1.4021,92.0139 +709106,2.9069,92.3636 +709107,4.4264,92.7342 +709108,5.9598,93.1268 +709109,0.053474,91.9638 +709110,1.5584,92.3556 +709111,3.0781,92.769 +709112,4.6123,93.2051 +709113,358.71,91.9139 +709114,0.21016,92.3477 +709115,1.7294,92.8037 +709116,3.2636,93.2831 +709117,357.36,91.8643 +709118,358.86,92.3398 +709119,0.38031,92.8382 +709120,1.9136,93.3608 +709121,356.01,91.8151 +709122,357.51,92.3319 +709123,359.03,92.8725 +709124,0.56235,93.4381 +709125,354.67,91.7661 +709126,356.17,92.3242 +709127,357.68,92.9066 +709128,359.21,93.515 +709129,353.33,91.7176 +709130,354.82,92.3165 +709131,356.33,92.9406 +709132,357.86,93.5914 +709133,351.99,91.6695 +709134,353.47,92.3089 +709135,354.98,92.9744 +709136,356.5,93.6674 +709137,350.65,91.6218 +709138,352.13,92.3015 +709139,353.63,93.008 +709140,355.14,93.7429 +709141,349.31,91.5746 +709142,350.78,92.2941 +709143,352.28,93.0413 +709144,353.79,93.8179 +709145,347.97,91.5279 +709146,349.44,92.2869 +709147,350.92,93.0744 +709148,352.43,93.8922 +709149,346.63,91.4817 +709150,348.09,92.2799 +709151,349.57,93.1073 +709152,351.07,93.966 +709153,345.3,91.436 +709154,346.75,92.2729 +709155,348.22,93.14 +709156,349.71,94.0392 +709157,343.96,91.391 +709158,345.4,92.2662 +709159,346.87,93.1723 +709160,348.35,94.1116 +709161,342.63,91.3466 +709162,344.06,92.2596 +709163,345.51,93.2045 +709164,346.98,94.1834 +709165,341.3,91.3028 +709166,342.72,92.2532 +709167,344.16,93.2363 +709168,345.62,94.2545 +709169,339.97,91.2596 +709170,341.37,92.247 +709171,342.8,93.2678 +709172,344.25,94.3248 +709173,338.64,91.2172 +709174,340.03,92.241 +709175,341.45,93.299 +709176,342.88,94.3942 +709177,337.31,91.1755 +709178,338.69,92.2352 +709179,340.09,93.33 +709180,341.52,94.4629 +709181,335.98,91.1346 +709182,337.35,92.2296 +709183,338.74,93.3606 +709184,340.15,94.5307 +709185,334.65,91.0944 +709186,336.01,92.2242 +709187,337.38,93.3909 +709188,338.78,94.5976 +709189,333.33,91.055 +709190,334.66,92.2191 +709191,336.02,93.4208 +709192,337.4,94.6636 +709193,332,91.0165 +709194,333.32,92.2142 +709195,334.67,93.4504 +709196,336.03,94.7287 +709197,330.68,90.97882 +709198,331.98,92.2096 +709199,333.31,93.4796 +709200,334.66,94.7928 +709201,329.36,90.94202 +709202,330.64,92.2052 +709203,331.95,93.5085 +709204,333.28,94.8558 +709205,328.04,90.90612 +709206,329.3,92.2011 +709207,330.59,93.537 +709208,331.91,94.9179 +709209,326.72,90.87114 +709210,327.96,92.1972 +709211,329.23,93.5651 +709212,330.53,94.9789 +709213,325.4,90.83712 +709214,326.62,92.1937 +709215,327.87,93.5928 +709216,329.15,95.0388 +709217,324.08,90.80407 +709218,325.28,92.1905 +709219,326.51,93.6201 +709220,327.77,95.0976 +709221,322.76,90.77201 +709222,323.95,92.1875 +709223,325.16,93.647 +709224,326.39,95.1552 +709225,321.44,90.74097 +709226,322.61,92.1849 +709227,323.8,93.6734 +709228,325.01,95.2117 +709229,320.13,90.71096 +709230,321.27,92.1826 +709231,322.43,93.6995 +709232,323.63,95.267 +709233,318.81,90.68202 +709234,319.93,92.1806 +709235,321.07,93.7251 +709236,322.24,95.3211 +709237,317.5,90.65415 +709238,318.59,92.1789 +709239,319.71,93.7503 +709240,320.86,95.3739 +709241,316.19,90.62739 +709242,317.26,92.1776 +709243,318.35,93.775 +709244,319.47,95.4255 +709245,314.87,90.60174 +709246,315.92,92.1766 +709247,316.99,93.7993 +709248,318.09,95.4758 +709249,313.56,90.57722 +709250,314.58,92.1759 +709251,315.63,93.8231 +709252,316.7,95.5249 +709253,312.25,90.55386 +709254,313.25,92.1756 +709255,314.27,93.8465 +709256,315.31,95.5725 +709257,310.94,90.53168 +709258,311.91,92.1757 +709259,312.9,93.8693 +709260,313.92,95.6189 +709261,309.63,90.51068 +709262,310.57,92.1762 +709263,311.54,93.8917 +709264,312.54,95.6639 +709265,308.32,90.49088 +709266,309.24,92.177 +709267,310.18,93.9136 +709268,311.14,95.7074 +709269,307.01,90.47231 +709270,307.9,92.1782 +709271,308.81,93.935 +709272,309.75,95.7496 +709273,305.71,90.45497 +709274,306.57,92.1798 +709275,307.45,93.9559 +709276,308.36,95.7904 +709277,304.4,90.43888 +709278,305.23,92.1817 +709279,306.09,93.9763 +709280,306.97,95.8298 +709281,303.09,90.42405 +709282,303.9,92.1841 +709283,304.72,93.9962 +709284,305.58,95.8676 +709285,301.79,90.41051 +709286,302.56,92.1869 +709287,303.36,94.0156 +709288,304.18,95.9041 +709289,300.48,90.39825 +709290,301.23,92.19 +709291,301.99,94.0345 +709292,302.79,95.939 +709293,299.18,90.38729 +709294,299.89,92.1936 +709295,300.63,94.0528 +709296,301.39,95.9725 +709297,297.88,90.37764 +709298,298.56,92.1976 +709299,299.26,94.0706 +709300,300,96.0044 +709301,296.57,90.36932 +709302,297.22,92.2019 +709303,297.9,94.0879 +709304,298.6,96.0348 +709305,295.27,90.36233 +709306,295.89,92.2067 +709307,296.53,94.1047 +709308,297.2,96.0637 +709309,293.97,90.35669 +709310,294.55,92.212 +709311,295.17,94.1209 +709312,295.8,96.0911 +709313,292.66,90.35239 +709314,293.22,92.2176 +709315,293.8,94.1366 +709316,294.41,96.1169 +709317,291.36,90.34946 +709318,291.89,92.2237 +709319,292.43,94.1517 +709320,293.01,96.1411 +709321,290.06,90.34789 +709322,290.55,92.2302 +709323,291.07,94.1663 +709324,291.61,96.1638 +709325,288.76,90.34769 +709326,289.22,92.2371 +709327,289.7,94.1803 +709328,290.21,96.1849 +709329,287.46,90.34887 +709330,287.89,92.2445 +709331,288.33,94.1938 +709332,288.81,96.2045 +709333,286.16,90.35144 +709334,286.55,92.2523 +709335,286.97,94.2067 +709336,287.41,96.2224 +709337,284.86,90.35539 +709338,285.22,92.2605 +709339,285.6,94.2191 +709340,286.01,96.2388 +709341,283.56,90.36074 +709342,283.89,92.2692 +709343,284.23,94.2309 +709344,284.61,96.2535 +709345,282.26,90.36748 +709346,282.55,92.2783 +709347,282.87,94.2422 +709348,283.2,96.2667 +709349,280.96,90.37563 +709350,281.22,92.2878 +709351,281.5,94.2529 +709352,281.8,96.2783 +709353,279.66,90.38517 +709354,279.89,92.2978 +709355,280.13,94.263 +709356,280.4,96.2883 +709357,278.36,90.39611 +709358,278.55,92.3082 +709359,278.77,94.2726 +709360,279,96.2967 +709361,277.06,90.40845 +709362,277.22,92.319 +709363,277.4,94.2817 +709364,277.6,96.3034 +709365,275.77,90.4222 +709366,275.89,92.3303 +709367,276.03,94.2901 +709368,276.19,96.3086 +709369,274.47,90.43735 +709370,274.56,92.3421 +709371,274.66,94.298 +709372,274.79,96.3122 +709373,273.17,90.45389 +709374,273.22,92.3542 +709375,273.3,94.3054 +709376,273.39,96.3143 +709377,271.87,90.47183 +709378,271.89,92.3668 +709379,271.93,94.3122 +709380,271.99,96.3147 +709381,270.57,90.49116 +709382,270.56,92.3798 +709383,270.56,94.3185 +709384,270.58,96.3135 +709385,269.27,90.51188 +709386,269.22,92.3933 +709387,269.19,94.3242 +709388,269.18,96.3108 +709389,267.97,90.53399 +709390,267.89,92.4072 +709391,267.83,94.3293 +709392,267.78,96.3065 +709393,266.67,90.55747 +709394,266.56,92.4215 +709395,266.46,94.3339 +709396,266.38,96.3007 +709397,265.37,90.58233 +709398,265.22,92.4363 +709399,265.09,94.338 +709400,264.97,96.2933 +709401,264.07,90.60855 +709402,263.89,92.4515 +709403,263.72,94.3415 +709404,263.57,96.2844 +709405,262.77,90.63614 +709406,262.56,92.467 +709407,262.35,94.3445 +709408,262.17,96.2739 +709409,261.47,90.66507 +709410,261.22,92.4831 +709411,260.99,94.3469 +709412,260.77,96.2619 +709413,260.17,90.69535 +709414,259.89,92.4995 +709415,259.62,94.3488 +709416,259.37,96.2484 +709417,258.87,90.72696 +709418,258.56,92.5163 +709419,258.25,94.3502 +709420,257.96,96.2334 +709421,257.57,90.7599 +709422,257.22,92.5336 +709423,256.89,94.351 +709424,256.56,96.217 +709425,256.27,90.79414 +709426,255.89,92.5512 +709427,255.52,94.3514 +709428,255.16,96.199 +709429,254.97,90.82969 +709430,254.55,92.5693 +709431,254.15,94.3512 +709432,253.76,96.1796 +709433,253.67,90.86652 +709434,253.22,92.5877 +709435,252.78,94.3505 +709436,252.36,96.1588 +709437,252.37,90.90464 +709438,251.89,92.6066 +709439,251.42,94.3493 +709440,250.96,96.1365 +709441,251.06,90.94401 +709442,250.55,92.6258 +709443,250.05,94.3475 +709444,249.56,96.1129 +709445,249.76,90.98463 +709446,249.22,92.6454 +709447,248.68,94.3453 +709448,248.16,96.0878 +709449,248.46,91.0265 +709450,247.88,92.6654 +709451,247.32,94.3426 +709452,246.76,96.0614 +709453,247.15,91.0696 +709454,246.55,92.6857 +709455,245.95,94.3394 +709456,245.37,96.0337 +709457,245.85,91.1138 +709458,245.21,92.7065 +709459,244.58,94.3358 +709460,243.97,96.0046 +709461,244.54,91.1593 +709462,243.88,92.7275 +709463,243.22,94.3316 +709464,242.57,95.9742 +709465,243.24,91.2059 +709466,242.54,92.749 +709467,241.85,94.327 +709468,241.18,95.9425 +709469,241.93,91.2537 +709470,241.2,92.7707 +709471,240.49,94.3219 +709472,239.78,95.9095 +709473,240.62,91.3026 +709474,239.87,92.7928 +709475,239.12,94.3164 +709476,238.38,95.8753 +709477,239.31,91.3527 +709478,238.53,92.8153 +709479,237.76,94.3104 +709480,236.99,95.8399 +709481,238.01,91.4038 +709482,237.19,92.8381 +709483,236.39,94.304 +709484,235.6,95.8033 +709485,236.7,91.456 +709486,235.86,92.8612 +709487,235.03,94.2972 +709488,234.2,95.7655 +709489,235.39,91.5092 +709490,234.52,92.8846 +709491,233.66,94.2899 +709492,232.81,95.7266 +709493,234.08,91.5635 +709494,233.18,92.9083 +709495,232.3,94.2822 +709496,231.42,95.6865 +709497,232.76,91.6188 +709498,231.85,92.9323 +709499,230.93,94.2741 +709500,230.03,95.6453 +709501,231.45,91.6751 +709502,230.51,92.9566 +709503,229.57,94.2656 +709504,228.64,95.6031 +709505,230.14,91.7323 +709506,229.17,92.9811 +709507,228.21,94.2567 +709508,227.25,95.5598 +709509,228.83,91.7905 +709510,227.83,93.006 +709511,226.84,94.2474 +709512,225.86,95.5155 +709513,227.51,91.8496 +709514,226.49,93.0311 +709515,225.48,94.2378 +709516,224.47,95.4702 +709517,226.2,91.9096 +709518,225.15,93.0564 +709519,224.12,94.2278 +709520,223.08,95.4239 +709521,224.88,91.9704 +709522,223.81,93.082 +709523,222.75,94.2174 +709524,221.7,95.3767 +709525,223.56,92.0321 +709526,222.47,93.1079 +709527,221.39,94.2067 +709528,220.31,95.3286 +709529,222.24,92.0947 +709530,221.13,93.134 +709531,220.03,94.1956 +709532,218.93,95.2797 +709533,220.93,92.1579 +709534,219.79,93.1602 +709535,218.67,94.1842 +709536,217.54,95.2298 +709537,219.61,92.222 +709538,218.45,93.1867 +709539,217.31,94.1725 +709540,216.16,95.1792 +709541,218.28,92.2868 +709542,217.11,93.2134 +709543,215.94,94.1605 +709544,214.78,95.1278 +709545,216.96,92.3523 +709546,215.77,93.2403 +709547,214.58,94.1482 +709548,213.4,95.0756 +709549,215.64,92.4185 +709550,214.43,93.2674 +709551,213.22,94.1356 +709552,212.02,95.0227 +709553,214.32,92.4853 +709554,213.09,93.2946 +709555,211.86,94.1227 +709556,210.64,94.969 +709557,212.99,92.5527 +709558,211.75,93.322 +709559,210.5,94.1095 +709560,209.26,94.9148 +709561,211.66,92.6208 +709562,210.4,93.3496 +709563,209.14,94.0961 +709564,207.89,94.8599 +709565,210.34,92.6894 +709566,209.06,93.3773 +709567,207.78,94.0824 +709568,206.51,94.8044 +709569,209.01,92.7585 +709570,207.72,93.4051 +709571,206.43,94.0685 +709572,205.14,94.7483 +709573,207.68,92.8281 +709574,206.37,93.433 +709575,205.07,94.0544 +709576,203.77,94.6917 +709577,206.35,92.8982 +709578,205.03,93.4611 +709579,203.71,94.04 +709580,202.39,94.6346 +709581,205.02,92.9688 +709582,203.68,93.4892 +709583,202.35,94.0255 +709584,201.02,94.577 +709585,203.69,93.0397 +709586,202.34,93.5175 +709587,200.99,94.0107 +709588,199.65,94.519 +709589,202.35,93.111 +709590,200.99,93.5458 +709591,199.64,93.9958 +709592,198.28,94.4606 +709593,201.02,93.1827 +709594,199.65,93.5741 +709595,198.28,93.9807 +709596,196.92,94.4018 +709597,199.68,93.2546 +709598,198.3,93.6026 +709599,196.92,93.9654 +709600,195.55,94.3426 +709601,198.34,93.3269 +709602,196.95,93.631 +709603,195.57,93.95 +709604,194.18,94.2832 +709605,197.01,93.3994 +709606,195.61,93.6595 +709607,194.21,93.9344 +709608,192.82,94.2235 +709609,195.67,93.4721 +709610,194.26,93.6881 +709611,192.86,93.9187 +709612,191.46,94.1635 +709613,194.33,93.5449 +709614,192.91,93.7166 +709615,191.5,93.9029 +709616,190.1,94.1034 +709617,192.98,93.618 +709618,191.56,93.7451 +709619,190.15,93.887 +709620,188.73,94.0431 +709621,191.64,93.6911 +709622,190.22,93.7736 +709623,188.79,93.8709 +709624,187.37,93.9826 +709625,190.3,93.7643 +709626,188.87,93.8021 +709627,187.44,93.8548 +709628,186.02,93.922 +709629,188.95,93.8376 +709630,187.52,93.8306 +709631,186.09,93.8387 +709632,184.66,93.8614 +709633,187.61,93.9108 +709634,186.17,93.859 +709635,184.73,93.8224 +709636,183.3,93.8007 +709637,186.26,93.9841 +709638,184.82,93.8874 +709639,183.38,93.8061 +709640,181.95,93.7401 +709641,184.91,94.0572 +709642,183.47,93.9156 +709643,182.03,93.7898 +709644,180.59,93.6794 +709645,183.56,94.1303 +709646,182.12,93.9438 +709647,180.68,93.7734 +709648,179.24,93.6188 +709649,182.21,94.2033 +709650,180.76,93.9719 +709651,179.32,93.7571 +709652,177.89,93.5583 +709653,180.85,94.2761 +709654,179.41,93.9999 +709655,177.97,93.7407 +709656,176.54,93.498 +709657,179.5,94.3487 +709658,178.06,94.0278 +709659,176.62,93.7243 +709660,175.19,93.4378 +709661,178.15,94.4211 +709662,176.71,94.0556 +709663,175.27,93.7079 +709664,173.84,93.3778 +709665,176.79,94.4932 +709666,175.35,94.0832 +709667,173.92,93.6916 +709668,172.5,93.318 +709669,175.43,94.565 +709670,174,94.1107 +709671,172.57,93.6753 +709672,171.15,93.2584 +709673,174.07,94.6364 +709674,172.65,94.138 +709675,171.22,93.659 +709676,169.81,93.1992 +709677,172.72,94.7076 +709678,171.29,94.1651 +709679,169.87,93.6429 +709680,168.46,93.1403 +709681,171.35,94.7783 +709682,169.94,94.1921 +709683,168.53,93.6267 +709684,167.12,93.0817 +709685,169.99,94.8485 +709686,168.58,94.2189 +709687,167.18,93.6107 +709688,165.78,93.0236 +709689,168.63,94.9183 +709690,167.23,94.2454 +709691,165.83,93.5948 +709692,164.44,92.9658 +709693,167.27,94.9876 +709694,165.87,94.2717 +709695,164.48,93.5789 +709696,163.1,92.9085 +709697,165.9,95.0564 +709698,164.51,94.2979 +709699,163.14,93.5632 +709700,161.77,92.8516 +709701,164.53,95.1246 +709702,163.16,94.3237 +709703,161.79,93.5476 +709704,160.43,92.7953 +709705,163.17,95.1921 +709706,161.8,94.3494 +709707,160.44,93.5321 +709708,159.09,92.7395 +709709,161.8,95.2591 +709710,160.44,94.3747 +709711,159.1,93.5168 +709712,157.76,92.6843 +709713,160.43,95.3254 +709714,159.09,94.3998 +709715,157.75,93.5016 +709716,156.43,92.6297 +709717,159.06,95.3909 +709718,157.73,94.4246 +709719,156.41,93.4866 +709720,155.1,92.5757 +709721,157.68,95.4558 +709722,156.37,94.4491 +709723,155.06,93.4718 +709724,153.76,92.5223 +709725,156.31,95.5199 +709726,155.01,94.4734 +709727,153.72,93.4571 +709728,152.43,92.4697 +709729,154.94,95.5831 +709730,153.65,94.4973 +709731,152.37,93.4427 +709732,151.11,92.4177 +709733,153.56,95.6456 +709734,152.29,94.5209 +709735,151.03,93.4284 +709736,149.78,92.3665 +709737,152.18,95.7072 +709738,150.93,94.5441 +709739,149.69,93.4144 +709740,148.45,92.3161 +709741,150.81,95.7678 +709742,149.57,94.567 +709743,148.34,93.4005 +709744,147.13,92.2664 +709745,149.43,95.8276 +709746,148.21,94.5896 +709747,147,93.3869 +709748,145.8,92.2176 +709749,148.05,95.8864 +709750,146.85,94.6118 +709751,145.66,93.3736 +709752,144.48,92.1696 +709753,146.67,95.9443 +709754,145.49,94.6336 +709755,144.32,93.3605 +709756,143.15,92.1224 +709757,145.29,96.0011 +709758,144.13,94.6551 +709759,142.97,93.3477 +709760,141.83,92.0762 +709761,143.9,96.0569 +709762,142.76,94.6761 +709763,141.63,93.3351 +709764,140.51,92.0309 +709765,142.52,96.1116 +709766,141.4,94.6968 +709767,140.29,93.3228 +709768,139.19,91.9865 +709769,141.14,96.1653 +709770,140.04,94.7171 +709771,138.95,93.3108 +709772,137.87,91.9431 +709773,139.75,96.2178 +709774,138.67,94.7369 +709775,137.61,93.299 +709776,136.55,91.9007 +709777,138.36,96.2691 +709778,137.31,94.7563 +709779,136.27,93.2876 +709780,135.24,91.8593 +709781,136.98,96.3193 +709782,135.95,94.7753 +709783,134.93,93.2765 +709784,133.92,91.8189 +709785,135.59,96.3683 +709786,134.58,94.7939 +709787,133.59,93.2657 +709788,132.6,91.7796 +709789,134.2,96.4161 +709790,133.22,94.812 +709791,132.25,93.2552 +709792,131.29,91.7414 +709793,132.81,96.4626 +709794,131.86,94.8296 +709795,130.91,93.245 +709796,129.98,91.7042 +709797,131.42,96.5078 +709798,130.49,94.8468 +709799,129.57,93.2352 +709800,128.66,91.6682 +709801,130.03,96.5518 +709802,129.13,94.8636 +709803,128.23,93.2257 +709804,127.35,91.6333 +709805,128.64,96.5944 +709806,127.76,94.8798 +709807,126.89,93.2166 +709808,126.04,91.5995 +709809,127.24,96.6357 +709810,126.39,94.8956 +709811,125.56,93.2078 +709812,124.73,91.567 +709813,125.85,96.6756 +709814,125.03,94.9109 +709815,124.22,93.1993 +709816,123.42,91.5356 +709817,124.46,96.7142 +709818,123.66,94.9256 +709819,122.88,93.1913 +709820,122.11,91.5054 +709821,123.06,96.7513 +709822,122.3,94.9399 +709823,121.54,93.1836 +709824,120.8,91.4764 +709825,121.67,96.7871 +709826,120.93,94.9537 +709827,120.2,93.1763 +709828,119.49,91.4487 +709829,120.27,96.8214 +709830,119.56,94.967 +709831,118.87,93.1693 +709832,118.18,91.4222 +709833,118.87,96.8542 +709834,118.2,94.9797 +709835,117.53,93.1628 +709836,116.87,91.397 +709837,117.48,96.8856 +709838,116.83,94.9919 +709839,116.19,93.1566 +709840,115.56,91.3731 +709841,116.08,96.9155 +709842,115.46,95.0036 +709843,114.86,93.1509 +709844,114.26,91.3505 +709845,114.68,96.9439 +709846,114.1,95.0148 +709847,113.52,93.1455 +709848,112.95,91.3291 +709849,113.28,96.9707 +709850,112.73,95.0254 +709851,112.18,93.1406 +709852,111.65,91.3091 +709853,111.88,96.9961 +709854,111.36,95.0355 +709855,110.85,93.136 +709856,110.34,91.2904 +709857,110.48,97.0198 +709858,109.99,95.045 +709859,109.51,93.1319 +709860,109.04,91.2731 +709861,109.08,97.0421 +709862,108.62,95.054 +709863,108.17,93.1282 +709864,107.73,91.257 +709865,107.68,97.0628 +709866,107.26,95.0625 +709867,106.84,93.1249 +709868,106.43,91.2424 +709869,106.28,97.0819 +709870,105.89,95.0704 +709871,105.5,93.122 +709872,105.12,91.2291 +709873,104.88,97.0994 +709874,104.52,95.0777 +709875,104.17,93.1196 +709876,103.82,91.2172 +709877,103.48,97.1153 +709878,103.15,95.0844 +709879,102.83,93.1176 +709880,102.52,91.2067 +709881,102.08,97.1296 +709882,101.78,95.0907 +709883,101.5,93.116 +709884,101.21,91.1975 +709885,100.68,97.1423 +709886,100.41,95.0963 +709887,100.16,93.1148 +709888,99.911,91.1897 +709889,99.274,97.1534 +709890,99.046,95.1014 +709891,98.825,93.1141 +709892,98.608,91.1834 +709893,97.872,97.1629 +709894,97.677,95.1059 +709895,97.489,93.1138 +709896,97.306,91.1784 +709897,96.469,97.1707 +709898,96.309,95.1098 +709899,96.154,93.1139 +709900,96.003,91.1749 +709901,95.066,97.1769 +709902,94.94,95.1132 +709903,94.818,93.1145 +709904,94.701,91.1727 +709905,93.664,97.1815 +709906,93.571,95.1159 +709907,93.483,93.1155 +709908,93.399,91.172 +709909,92.261,97.1845 +709910,92.202,95.1182 +709911,92.148,93.117 +709912,92.097,91.1726 +709913,90.858,97.1858 +709914,90.833,95.1198 +709915,90.812,93.1189 +709916,90.795,91.1747 +709917,89.455,97.1855 +709918,89.464,95.1209 +709919,89.477,93.1212 +709920,89.493,91.1782 +709921,88.052,97.1836 +709922,88.095,95.1214 +709923,88.142,93.124 +709924,88.191,91.1831 +709925,86.65,97.18 +709926,86.727,95.1213 +709927,86.806,93.1272 +709928,86.889,91.1894 +709929,85.247,97.1748 +709930,85.358,95.1207 +709931,85.471,93.1308 +709932,85.587,91.1971 +709933,83.844,97.168 +709934,83.989,95.1195 +709935,84.136,93.1349 +709936,84.285,91.2062 +709937,82.442,97.1596 +709938,82.62,95.1177 +709939,82.8,93.1394 +709940,82.982,91.2167 +709941,81.039,97.1495 +709942,81.251,95.1153 +709943,81.465,93.1443 +709944,81.68,91.2286 +709945,79.637,97.1379 +709946,79.883,95.1124 +709947,80.129,93.1497 +709948,80.377,91.2419 +709949,78.235,97.1246 +709950,78.514,95.1089 +709951,78.794,93.1555 +709952,79.074,91.2566 +709953,76.834,97.1098 +709954,77.145,95.1049 +709955,77.458,93.1617 +709956,77.771,91.2727 +709957,75.432,97.0934 +709958,75.777,95.1003 +709959,76.122,93.1683 +709960,76.468,91.2901 +709961,74.031,97.0754 +709962,74.409,95.0952 +709963,74.786,93.1754 +709964,75.164,91.3089 +709965,72.63,97.0559 +709966,73.04,95.0895 +709967,73.45,93.1829 +709968,73.86,91.3291 +709969,71.23,97.0348 +709970,71.672,95.0832 +709971,72.114,93.1908 +709972,72.555,91.3506 +709973,69.83,97.0121 +709974,70.304,95.0764 +709975,70.778,93.1991 +709976,71.251,91.3734 +709977,68.43,96.988 +709978,68.936,95.0691 +709979,69.441,93.2078 +709980,69.946,91.3976 +709981,67.031,96.9623 +709982,67.569,95.0613 +709983,68.105,93.2169 +709984,68.64,91.4231 +709985,65.632,96.9352 +709986,66.201,95.0529 +709987,66.768,93.2265 +709988,67.334,91.4499 +709989,64.234,96.9065 +709990,64.834,95.0439 +709991,65.431,93.2364 +709992,66.027,91.4779 +709993,62.836,96.8764 +709994,63.466,95.0345 +709995,64.094,93.2467 +709996,64.721,91.5073 +709997,61.439,96.8449 +709998,62.099,95.0245 +709999,62.757,93.2574 +710000,63.413,91.5379 +710001,60.042,96.8119 +710002,60.732,95.0141 +710003,61.42,93.2684 +710004,62.105,91.5698 +710005,58.646,96.7775 +710006,59.365,95.0031 +710007,60.082,93.2799 +710008,60.796,91.6029 +710009,57.25,96.7418 +710010,57.999,94.9916 +710011,58.744,93.2917 +710012,59.487,91.6373 +710013,55.856,96.7046 +710014,56.633,94.9796 +710015,57.406,93.3039 +710016,58.177,91.6728 +710017,54.461,96.6661 +710018,55.267,94.9672 +710019,56.068,93.3164 +710020,56.867,91.7095 +710021,53.068,96.6263 +710022,53.901,94.9542 +710023,54.73,93.3293 +710024,55.556,91.7474 +710025,51.675,96.5852 +710026,52.535,94.9408 +710027,53.391,93.3426 +710028,54.244,91.7864 +710029,50.283,96.5428 +710030,51.17,94.9269 +710031,52.052,93.3562 +710032,52.932,91.8266 +710033,48.892,96.4991 +710034,49.804,94.9126 +710035,50.713,93.3701 +710036,51.619,91.8679 +710037,47.501,96.4542 +710038,48.44,94.8978 +710039,49.374,93.3843 +710040,50.305,91.9103 +710041,46.111,96.4081 +710042,47.075,94.8826 +710043,48.034,93.3989 +710044,48.99,91.9538 +710045,44.722,96.3608 +710046,45.711,94.8669 +710047,46.694,93.4137 +710048,47.674,91.9983 +710049,43.334,96.3123 +710050,44.346,94.8508 +710051,45.354,93.4289 +710052,46.358,92.0438 +710053,41.947,96.2627 +710054,42.983,94.8343 +710055,44.014,93.4444 +710056,45.041,92.0904 +710057,40.561,96.212 +710058,41.619,94.8173 +710059,42.673,93.4601 +710060,43.723,92.1379 +710061,39.175,96.1602 +710062,40.256,94.8 +710063,41.332,93.4762 +710064,42.404,92.1864 +710065,37.79,96.1073 +710066,38.893,94.7823 +710067,39.991,93.4925 +710068,41.084,92.2359 +710069,36.407,96.0534 +710070,37.53,94.7642 +710071,38.649,93.509 +710072,39.764,92.2862 +710073,35.024,95.9986 +710074,36.168,94.7457 +710075,37.307,93.5259 +710076,38.442,92.3375 +710077,33.642,95.9427 +710078,34.806,94.7268 +710079,35.965,93.5429 +710080,37.12,92.3896 +710081,32.262,95.8859 +710082,33.444,94.7076 +710083,34.623,93.5603 +710084,35.796,92.4426 +710085,30.882,95.8282 +710086,32.083,94.688 +710087,33.28,93.5778 +710088,34.472,92.4964 +710089,29.503,95.7697 +710090,30.722,94.6681 +710091,31.937,93.5955 +710092,33.147,92.5509 +710093,28.125,95.7103 +710094,29.361,94.6478 +710095,30.593,93.6135 +710096,31.82,92.6063 +710097,26.748,95.65 +710098,28.001,94.6273 +710099,29.249,93.6317 +710100,30.493,92.6623 +710101,25.373,95.589 +710102,26.641,94.6064 +710103,27.905,93.65 +710104,29.165,92.7191 +710105,23.998,95.5272 +710106,25.281,94.5852 +710107,26.561,93.6686 +710108,27.835,92.7766 +710109,22.625,95.4647 +710110,23.922,94.5638 +710111,25.216,93.6873 +710112,26.505,92.8347 +710113,21.252,95.4016 +710114,22.563,94.542 +710115,23.87,93.7061 +710116,25.173,92.8934 +710117,19.881,95.3377 +710118,21.205,94.52 +710119,22.525,93.7252 +710120,23.841,92.9527 +710121,18.511,95.2733 +710122,19.846,94.4978 +710123,21.179,93.7443 +710124,22.507,93.0126 +710125,17.141,95.2082 +710126,18.489,94.4753 +710127,19.833,93.7636 +710128,21.172,93.073 +710129,15.773,95.1426 +710130,17.131,94.4525 +710131,18.486,93.783 +710132,19.836,93.1339 +710133,14.407,95.0764 +710134,15.774,94.4295 +710135,17.139,93.8025 +710136,18.499,93.1953 +710137,13.041,95.0098 +710138,14.418,94.4063 +710139,15.791,93.8222 +710140,17.161,93.2571 +710141,11.676,94.9427 +710142,13.061,94.383 +710143,14.444,93.8419 +710144,15.822,93.3193 +710145,10.313,94.8752 +710146,11.705,94.3594 +710147,13.095,93.8616 +710148,14.482,93.382 +710149,8.9505,94.8073 +710150,10.35,94.3356 +710151,11.747,93.8815 +710152,13.14,93.4449 +710153,7.5894,94.7391 +710154,8.9949,94.3117 +710155,10.398,93.9014 +710156,11.797,93.5082 +710157,6.2295,94.6705 +710158,7.6402,94.2876 +710159,9.0487,93.9213 +710160,10.454,93.5718 +710161,4.8707,94.6016 +710162,6.2858,94.2633 +710163,7.699,93.9413 +710164,9.1087,93.6356 +710165,3.5132,94.5325 +710166,4.9319,94.2389 +710167,6.3489,93.9613 +710168,7.7625,93.6996 +710169,2.1567,94.4632 +710170,3.5784,94.2144 +710171,4.9984,93.9813 +710172,6.4152,93.7638 +710173,0.80152,94.3936 +710174,2.2253,94.1898 +710175,3.6476,94.0014 +710176,5.0667,93.8282 +710177,359.45,94.324 +710178,0.87259,94.1651 +710179,2.2963,94.0214 +710180,3.7171,93.8927 +710181,358.09,94.2542 +710182,359.52,94.1403 +710183,0.94469,94.0413 +710184,2.3662,93.9572 +710185,356.74,94.1843 +710186,358.17,94.1154 +710187,359.59,94.0613 +710188,1.0142,94.0218 +710189,355.39,94.1144 +710190,356.82,94.0904 +710191,358.24,94.0812 +710192,359.66,94.0865 +710193,354.04,94.0444 +710194,355.47,94.0654 +710195,356.89,94.101 +710196,358.31,94.1511 +710197,352.7,93.9745 +710198,354.12,94.0404 +710199,355.53,94.1208 +710200,356.95,94.2157 +710201,351.35,93.9047 +710202,352.76,94.0153 +710203,354.18,94.1405 +710204,355.59,94.2802 +710205,350,93.8349 +710206,351.41,93.9902 +710207,352.83,94.1601 +710208,354.24,94.3445 +710209,348.66,93.7652 +710210,350.07,93.965 +710211,351.47,94.1796 +710212,352.88,94.4088 +710213,347.31,93.6957 +710214,348.72,93.9399 +710215,350.12,94.199 +710216,351.52,94.4728 +710217,345.97,93.6264 +710218,347.37,93.9148 +710219,348.76,94.2183 +710220,350.16,94.5366 +710221,344.63,93.5573 +710222,346.02,93.8897 +710223,347.41,94.2374 +710224,348.79,94.6002 +710225,343.29,93.4885 +710226,344.67,93.8646 +710227,346.05,94.2564 +710228,347.43,94.6635 +710229,341.95,93.4199 +710230,343.32,93.8396 +710231,344.69,94.2752 +710232,346.06,94.7265 +710233,340.61,93.3517 +710234,341.98,93.8147 +710235,343.34,94.2939 +710236,344.7,94.7891 +710237,339.28,93.2838 +710238,340.63,93.7898 +710239,341.98,94.3124 +710240,343.33,94.8513 +710241,337.94,93.2163 +710242,339.28,93.765 +710243,340.62,94.3307 +710244,341.96,94.9131 +710245,336.61,93.1492 +710246,337.94,93.7402 +710247,339.27,94.3487 +710248,340.59,94.9745 +710249,335.28,93.0826 +710250,336.59,93.7156 +710251,337.91,94.3666 +710252,339.22,95.0354 +710253,333.94,93.0165 +710254,335.25,93.6911 +710255,336.55,94.3843 +710256,337.85,95.0957 +710257,332.61,92.9508 +710258,333.9,93.6667 +710259,335.19,94.4017 +710260,336.48,95.1555 +710261,331.28,92.8857 +710262,332.56,93.6425 +710263,333.83,94.4188 +710264,335.11,95.2147 +710265,329.95,92.8211 +710266,331.21,93.6183 +710267,332.47,94.4357 +710268,333.73,95.2733 +710269,328.63,92.7572 +710270,329.87,93.5944 +710271,331.11,94.4524 +710272,332.35,95.3313 +710273,327.3,92.6939 +710274,328.53,93.5706 +710275,329.75,94.4688 +710276,330.98,95.3885 +710277,325.97,92.6312 +710278,327.18,93.5469 +710279,328.39,94.4848 +710280,329.6,95.4451 +710281,324.65,92.5692 +710282,325.84,93.5235 +710283,327.03,94.5006 +710284,328.22,95.5009 +710285,323.32,92.508 +710286,324.5,93.5002 +710287,325.67,94.5161 +710288,326.84,95.5559 +710289,322,92.4474 +710290,323.16,93.4772 +710291,324.31,94.5313 +710292,325.46,95.6102 +710293,320.68,92.3877 +710294,321.81,93.4543 +710295,322.95,94.5461 +710296,324.08,95.6635 +710297,319.36,92.3287 +710298,320.47,93.4317 +710299,321.58,94.5606 +710300,322.7,95.7161 +710301,318.04,92.2706 +710302,319.13,93.4093 +710303,320.22,94.5747 +710304,321.31,95.7677 +710305,316.72,92.2133 +710306,317.79,93.3871 +710307,318.86,94.5885 +710308,319.93,95.8184 +710309,315.4,92.1569 +710310,316.45,93.3652 +710311,317.5,94.6019 +710312,318.54,95.8681 +710313,314.08,92.1013 +710314,315.11,93.3436 +710315,316.13,94.615 +710316,317.15,95.9168 +710317,312.77,92.0467 +710318,313.77,93.3222 +710319,314.77,94.6277 +710320,315.77,95.9646 +710321,311.45,91.9931 +710322,312.43,93.301 +710323,313.41,94.6399 +710324,314.38,96.0113 +710325,310.14,91.9404 +710326,311.09,93.2802 +710327,312.04,94.6518 +710328,312.99,96.0569 +710329,308.82,91.8887 +710330,309.75,93.2597 +710331,310.68,94.6633 +710332,311.6,96.1014 +710333,307.51,91.838 +710334,308.41,93.2394 +710335,309.31,94.6743 +710336,310.21,96.1448 +710337,306.2,91.7884 +710338,307.07,93.2195 +710339,307.95,94.685 +710340,308.82,96.1871 +710341,304.89,91.7398 +710342,305.74,93.1998 +710343,306.58,94.6952 +710344,307.43,96.2282 +710345,303.58,91.6923 +710346,304.4,93.1805 +710347,305.22,94.7049 +710348,306.03,96.2681 +710349,302.27,91.6459 +710350,303.06,93.1615 +710351,303.85,94.7142 +710352,304.64,96.3067 +710353,300.96,91.6006 +710354,301.72,93.1429 +710355,302.49,94.7231 +710356,303.24,96.3441 +710357,299.65,91.5565 +710358,300.39,93.1246 +710359,301.12,94.7315 +710360,301.85,96.3803 +710361,298.34,91.5135 +710362,299.05,93.1066 +710363,299.75,94.7394 +710364,300.45,96.4152 +710365,297.03,91.4717 +710366,297.71,93.089 +710367,298.39,94.7468 +710368,299.06,96.4487 +710369,295.72,91.4311 +710370,296.38,93.0718 +710371,297.02,94.7538 +710372,297.66,96.4809 +710373,294.42,91.3916 +710374,295.04,93.0549 +710375,295.65,94.7602 +710376,296.26,96.5118 +710377,293.11,91.3535 +710378,293.7,93.0384 +710379,294.29,94.7662 +710380,294.87,96.5413 +710381,291.81,91.3165 +710382,292.37,93.0222 +710383,292.92,94.7717 +710384,293.47,96.5693 +710385,290.5,91.2808 +710386,291.03,93.0065 +710387,291.55,94.7766 +710388,292.07,96.596 +710389,289.2,91.2464 +710390,289.69,92.9911 +710391,290.19,94.7811 +710392,290.67,96.6213 +710393,287.89,91.2132 +710394,288.36,92.9761 +710395,288.82,94.785 +710396,289.27,96.6451 +710397,286.59,91.1814 +710398,287.02,92.9616 +710399,287.45,94.7885 +710400,287.87,96.6674 +710401,285.29,91.1508 +710402,285.69,92.9474 +710403,286.08,94.7914 +710404,286.47,96.6883 +710405,283.98,91.1216 +710406,284.35,92.9336 +710407,284.72,94.7937 +710408,285.07,96.7077 +710409,282.68,91.0937 +710410,283.02,92.9202 +710411,283.35,94.7955 +710412,283.67,96.7255 +710413,281.38,91.0671 +710414,281.68,92.9073 +710415,281.98,94.7968 +710416,282.27,96.7419 +710417,280.08,91.0419 +710418,280.35,92.8948 +710419,280.61,94.7976 +710420,280.86,96.7567 +710421,278.77,91.0181 +710422,279.01,92.8826 +710423,279.24,94.7978 +710424,279.46,96.7699 +710425,277.47,90.99559 +710426,277.68,92.8709 +710427,277.88,94.7974 +710428,278.06,96.7817 +710429,276.17,90.97447 +710430,276.34,92.8597 +710431,276.51,94.7965 +710432,276.66,96.7918 +710433,274.87,90.95473 +710434,275.01,92.8488 +710435,275.14,94.7951 +710436,275.26,96.8004 +710437,273.57,90.93638 +710438,273.68,92.8384 +710439,273.77,94.7931 +710440,273.85,96.8074 +710441,272.27,90.91941 +710442,272.34,92.8284 +710443,272.4,94.7905 +710444,272.45,96.8128 +710445,270.97,90.90384 +710446,271.01,92.8189 +710447,271.03,94.7874 +710448,271.05,96.8166 +710449,269.67,90.88967 +710450,269.67,92.8098 +710451,269.67,94.7837 +710452,269.65,96.8188 +710453,268.37,90.8769 +710454,268.34,92.8011 +710455,268.3,94.7794 +710456,268.24,96.8194 +710457,267.07,90.86553 +710458,267,92.7929 +710459,266.93,94.7746 +710460,266.84,96.8184 +710461,265.76,90.85557 +710462,265.67,92.785 +710463,265.56,94.7692 +710464,265.44,96.8158 +710465,264.46,90.84702 +710466,264.34,92.7777 +710467,264.19,94.7633 +710468,264.04,96.8116 +710469,263.16,90.83987 +710470,263,92.7708 +710471,262.83,94.7567 +710472,262.63,96.8057 +710473,261.86,90.83413 +710474,261.67,92.7643 +710475,261.46,94.7497 +710476,261.23,96.7983 +710477,260.56,90.8298 +710478,260.33,92.7582 +710479,260.09,94.742 +710480,259.83,96.7892 +710481,259.26,90.82687 +710482,259,92.7526 +710483,258.72,94.7338 +710484,258.43,96.7785 +710485,257.96,90.82534 +710486,257.66,92.7474 +710487,257.35,94.725 +710488,257.03,96.7662 +710489,256.66,90.82521 +710490,256.33,92.7427 +710491,255.99,94.7157 +710492,255.62,96.7523 +710493,255.36,90.82648 +710494,254.99,92.7384 +710495,254.62,94.7058 +710496,254.22,96.7367 +710497,254.05,90.82913 +710498,253.66,92.7345 +710499,253.25,94.6953 +710500,252.82,96.7196 +710501,252.75,90.83317 +710502,252.33,92.731 +710503,251.88,94.6843 +710504,251.42,96.7009 +710505,251.45,90.83859 +710506,250.99,92.728 +710507,250.52,94.6727 +710508,250.02,96.6806 +710509,250.15,90.84538 +710510,249.66,92.7254 +710511,249.15,94.6606 +710512,248.62,96.6587 +710513,248.84,90.85354 +710514,248.32,92.7233 +710515,247.78,94.6479 +710516,247.22,96.6352 +710517,247.54,90.86305 +710518,246.99,92.7215 +710519,246.41,94.6347 +710520,245.82,96.6102 +710521,246.24,90.87391 +710522,245.65,92.7202 +710523,245.05,94.6209 +710524,244.43,96.5836 +710525,244.93,90.88611 +710526,244.31,92.7193 +710527,243.68,94.6066 +710528,243.03,96.5555 +710529,243.63,90.89964 +710530,242.98,92.7188 +710531,242.32,94.5917 +710532,241.63,96.5258 +710533,242.32,90.91449 +710534,241.64,92.7187 +710535,240.95,94.5763 +710536,240.23,96.4947 +710537,241.02,90.93064 +710538,240.31,92.719 +710539,239.58,94.5604 +710540,238.84,96.462 +710541,239.71,90.94809 +710542,238.97,92.7198 +710543,238.22,94.544 +710544,237.44,96.4278 +710545,238.4,90.96683 +710546,237.64,92.7209 +710547,236.85,94.527 +710548,236.05,96.3922 +710549,237.09,90.98683 +710550,236.3,92.7224 +710551,235.49,94.5095 +710552,234.65,96.355 +710553,235.79,91.0081 +710554,234.96,92.7243 +710555,234.12,94.4915 +710556,233.26,96.3165 +710557,234.48,91.0306 +710558,233.63,92.7266 +710559,232.76,94.4731 +710560,231.87,96.2765 +710561,233.17,91.0543 +710562,232.29,92.7292 +710563,231.39,94.4541 +710564,230.48,96.2351 +710565,231.86,91.0792 +710566,230.95,92.7323 +710567,230.03,94.4346 +710568,229.08,96.1923 +710569,230.55,91.1054 +710570,229.61,92.7356 +710571,228.66,94.4146 +710572,227.69,96.1482 +710573,229.23,91.1327 +710574,228.28,92.7394 +710575,227.3,94.3941 +710576,226.3,96.1027 +710577,227.92,91.1611 +710578,226.94,92.7435 +710579,225.94,94.3732 +710580,224.91,96.0558 +710581,226.61,91.1908 +710582,225.6,92.748 +710583,224.57,94.3518 +710584,223.53,96.0077 +710585,225.3,91.2215 +710586,224.26,92.7528 +710587,223.21,94.3299 +710588,222.14,95.9582 +710589,223.98,91.2533 +710590,222.92,92.7579 +710591,221.85,94.3076 +710592,220.75,95.9075 +710593,222.67,91.2862 +710594,221.58,92.7634 +710595,220.49,94.2849 +710596,219.37,95.8556 +710597,221.35,91.3202 +710598,220.25,92.7691 +710599,219.12,94.2617 +710600,217.98,95.8024 +710601,220.03,91.3552 +710602,218.91,92.7752 +710603,217.76,94.238 +710604,216.6,95.7481 +710605,218.71,91.3913 +710606,217.57,92.7816 +710607,216.4,94.214 +710608,215.22,95.6926 +710609,217.39,91.4283 +710610,216.23,92.7883 +710611,215.04,94.1895 +710612,213.84,95.6359 +710613,216.07,91.4663 +710614,214.89,92.7953 +710615,213.68,94.1646 +710616,212.45,95.5782 +710617,214.75,91.5053 +710618,213.54,92.8026 +710619,212.32,94.1394 +710620,211.08,95.5193 +710621,213.43,91.5452 +710622,212.2,92.8101 +710623,210.96,94.1137 +710624,209.7,95.4594 +710625,212.11,91.586 +710626,210.86,92.818 +710627,209.6,94.0877 +710628,208.32,95.3984 +710629,210.79,91.6277 +710630,209.52,92.826 +710631,208.24,94.0612 +710632,206.94,95.3365 +710633,209.46,91.6703 +710634,208.18,92.8344 +710635,206.88,94.0345 +710636,205.57,95.2735 +710637,208.13,91.7137 +710638,206.84,92.8429 +710639,205.52,94.0073 +710640,204.19,95.2097 +710641,206.81,91.7579 +710642,205.49,92.8517 +710643,204.17,93.9799 +710644,202.82,95.1449 +710645,205.48,91.8028 +710646,204.15,92.8607 +710647,202.81,93.9521 +710648,201.45,95.0792 +710649,204.15,91.8485 +710650,202.81,92.87 +710651,201.45,93.9239 +710652,200.08,95.0127 +710653,202.82,91.895 +710654,201.46,92.8794 +710655,200.09,93.8955 +710656,198.71,94.9453 +710657,201.49,91.9421 +710658,200.12,92.889 +710659,198.74,93.8667 +710660,197.34,94.8771 +710661,200.16,91.99 +710662,198.78,92.8989 +710663,197.38,93.8377 +710664,195.97,94.8082 +710665,198.82,92.0384 +710666,197.43,92.9089 +710667,196.03,93.8083 +710668,194.6,94.7386 +710669,197.49,92.0875 +710670,196.09,92.919 +710671,194.67,93.7787 +710672,193.24,94.6683 +710673,196.15,92.1372 +710674,194.74,92.9293 +710675,193.32,93.7489 +710676,191.87,94.5973 +710677,194.82,92.1874 +710678,193.4,92.9398 +710679,191.96,93.7187 +710680,190.51,94.5256 +710681,193.48,92.2382 +710682,192.05,92.9504 +710683,190.61,93.6884 +710684,189.15,94.4534 +710685,192.14,92.2894 +710686,190.7,92.9611 +710687,189.25,93.6578 +710688,187.79,94.3806 +710689,190.8,92.3411 +710690,189.36,92.972 +710691,187.9,93.627 +710692,186.43,94.3073 +710693,189.46,92.3933 +710694,188.01,92.9829 +710695,186.55,93.5959 +710696,185.07,94.2334 +710697,188.12,92.4459 +710698,186.66,92.9939 +710699,185.19,93.5647 +710700,183.72,94.1591 +710701,186.77,92.4988 +710702,185.31,93.0051 +710703,183.84,93.5333 +710704,182.36,94.0844 +710705,185.43,92.5521 +710706,183.97,93.0163 +710707,182.49,93.5017 +710708,181.01,94.0093 +710709,184.08,92.6057 +710710,182.62,93.0275 +710711,181.14,93.47 +710712,179.65,93.9338 +710713,182.74,92.6596 +710714,181.27,93.0388 +710715,179.79,93.4381 +710716,178.3,93.858 +710717,181.39,92.7137 +710718,179.92,93.0502 +710719,178.44,93.406 +710720,176.95,93.7819 +710721,180.04,92.7681 +710722,178.57,93.0616 +710723,177.09,93.3738 +710724,175.6,93.7055 +710725,178.69,92.8226 +710726,177.22,93.073 +710727,175.74,93.3415 +710728,174.25,93.6289 +710729,177.34,92.8773 +710730,175.87,93.0844 +710731,174.39,93.3091 +710732,172.9,93.5521 +710733,175.98,92.9322 +710734,174.52,93.0958 +710735,173.04,93.2766 +710736,171.56,93.4752 +710737,174.63,92.9871 +710738,173.17,93.1072 +710739,171.69,93.244 +710740,170.21,93.3981 +710741,173.27,93.042 +710742,171.81,93.1186 +710743,170.35,93.2114 +710744,168.87,93.321 +710745,171.92,93.0971 +710746,170.46,93.1299 +710747,169,93.1786 +710748,167.53,93.2438 +710749,170.56,93.152 +710750,169.11,93.1412 +710751,167.65,93.1458 +710752,166.19,93.1665 +710753,169.2,93.207 +710754,167.76,93.1525 +710755,166.31,93.113 +710756,164.85,93.0893 +710757,167.84,93.2619 +710758,166.4,93.1636 +710759,164.96,93.0802 +710760,163.51,93.0122 +710761,166.48,93.3167 +710762,165.05,93.1747 +710763,163.61,93.0473 +710764,162.17,92.9351 +710765,165.11,93.3713 +710766,163.7,93.1857 +710767,162.27,93.0144 +710768,160.83,92.8581 +710769,163.75,93.4258 +710770,162.34,93.1966 +710771,160.92,92.9815 +710772,159.5,92.7813 +710773,162.39,93.4801 +710774,160.99,93.2074 +710775,159.58,92.9487 +710776,158.17,92.7047 +710777,161.02,93.5341 +710778,159.63,93.218 +710779,158.24,92.9159 +710780,156.83,92.6283 +710781,159.65,93.5879 +710782,158.28,93.2286 +710783,156.89,92.8831 +710784,155.5,92.5521 +710785,158.28,93.6414 +710786,156.92,93.2389 +710787,155.55,92.8503 +710788,154.17,92.4762 +710789,156.91,93.6945 +710790,155.56,93.2492 +710791,154.21,92.8176 +710792,152.84,92.4006 +710793,155.54,93.7473 +710794,154.21,93.2592 +710795,152.86,92.785 +710796,151.51,92.3254 +710797,154.17,93.7996 +710798,152.85,93.2691 +710799,151.52,92.7525 +710800,150.19,92.2506 +710801,152.8,93.8516 +710802,151.49,93.2788 +710803,150.18,92.7201 +710804,148.86,92.1761 +710805,151.43,93.9031 +710806,150.14,93.2883 +710807,148.84,92.6877 +710808,147.54,92.1021 +710809,150.05,93.9541 +710810,148.78,93.2976 +710811,147.5,92.6555 +710812,146.21,92.0286 +710813,148.67,94.0045 +710814,147.42,93.3066 +710815,146.16,92.6234 +710816,144.89,91.9556 +710817,147.3,94.0544 +710818,146.06,93.3155 +710819,144.82,92.5914 +710820,143.57,91.8831 +710821,145.92,94.1037 +710822,144.7,93.3241 +710823,143.48,92.5596 +710824,142.25,91.8112 +710825,144.54,94.1524 +710826,143.34,93.3324 +710827,142.14,92.528 +710828,140.93,91.7399 +710829,143.16,94.2005 +710830,141.98,93.3405 +710831,140.8,92.4965 +710832,139.61,91.6692 +710833,141.78,94.2479 +710834,140.62,93.3483 +710835,139.46,92.4652 +710836,138.29,91.5992 +710837,140.4,94.2945 +710838,139.26,93.3558 +710839,138.12,92.434 +710840,136.98,91.5298 +710841,139.01,94.3404 +710842,137.9,93.363 +710843,136.79,92.4031 +710844,135.66,91.4612 +710845,137.63,94.3856 +710846,136.54,93.37 +710847,135.45,92.3724 +710848,134.35,91.3933 +710849,136.25,94.4299 +710850,135.18,93.3766 +710851,134.11,92.3419 +710852,133.03,91.3261 +710853,134.86,94.4734 +710854,133.82,93.3829 +710855,132.77,92.3116 +710856,131.72,91.2598 +710857,133.47,94.5161 +710858,132.46,93.3889 +710859,131.44,92.2815 +710860,130.41,91.1942 +710861,132.09,94.5579 +710862,131.1,93.3945 +710863,130.1,92.2517 +710864,129.1,91.1295 +710865,130.7,94.5987 +710866,129.74,93.3998 +710867,128.77,92.2221 +710868,127.79,91.0657 +710869,129.31,94.6386 +710870,128.37,93.4048 +710871,127.43,92.1928 +710872,126.48,91.0028 +710873,127.92,94.6776 +710874,127.01,93.4094 +710875,126.09,92.1638 +710876,125.17,90.94076 +710877,126.53,94.7155 +710878,125.65,93.4136 +710879,124.76,92.135 +710880,123.86,90.87969 +710881,125.14,94.7525 +710882,124.29,93.4174 +710883,123.42,92.1065 +710884,122.55,90.81959 +710885,123.74,94.7884 +710886,122.92,93.4208 +710887,122.09,92.0783 +710888,121.25,90.76048 +710889,122.35,94.8232 +710890,121.56,93.4239 +710891,120.76,92.0504 +710892,119.94,90.70237 +710893,120.96,94.8569 +710894,120.2,93.4265 +710895,119.42,92.0229 +710896,118.64,90.6453 +710897,119.56,94.8895 +710898,118.83,93.4287 +710899,118.09,91.9956 +710900,117.33,90.58929 +710901,118.17,94.9209 +710902,117.47,93.4305 +710903,116.75,91.9687 +710904,116.03,90.53434 +710905,116.77,94.9512 +710906,116.1,93.4319 +710907,115.42,91.942 +710908,114.73,90.4805 +710909,115.38,94.9802 +710910,114.74,93.4328 +710911,114.09,91.9158 +710912,113.42,90.42776 +710913,113.98,95.0081 +710914,113.38,93.4333 +710915,112.76,91.8898 +710916,112.12,90.37616 +710917,112.58,95.0347 +710918,112.01,93.4334 +710919,111.42,91.8642 +710920,110.82,90.32571 +710921,111.18,95.0601 +710922,110.65,93.433 +710923,110.09,91.839 +710924,109.52,90.27643 +710925,109.79,95.0842 +710926,109.28,93.4321 +710927,108.76,91.8142 +710928,108.22,90.22833 +710929,108.39,95.107 +710930,107.92,93.4308 +710931,107.43,91.7897 +710932,106.92,90.18143 +710933,106.99,95.1285 +710934,106.55,93.429 +710935,106.09,91.7655 +710936,105.62,90.13575 +710937,105.59,95.1486 +710938,105.19,93.4267 +710939,104.76,91.7418 +710940,104.32,90.091305 +710941,104.19,95.1674 +710942,103.82,93.424 +710943,103.43,91.7184 +710944,103.03,90.048104 +710945,102.79,95.1849 +710946,102.45,93.4207 +710947,102.1,91.6955 +710948,101.73,90.0061641 +710949,101.39,95.2009 +710950,101.09,93.417 +710951,100.77,91.6729 +710952,100.43,89.965497 +710953,99.987,95.2155 +710954,99.723,93.4127 +710955,99.438,91.6507 +710956,99.134,89.926116 +710957,98.586,95.2288 +710958,98.358,93.408 +710959,98.107,91.6289 +710960,97.837,89.88803 +710961,97.185,95.2405 +710962,96.992,93.4028 +710963,96.776,91.6075 +710964,96.541,89.85126 +710965,95.783,95.2509 +710966,95.626,93.397 +710967,95.446,91.5866 +710968,95.244,89.8158 +710969,94.382,95.2598 +710970,94.26,93.3907 +710971,94.115,91.566 +710972,93.948,89.78167 +710973,92.98,95.2672 +710974,92.894,93.3839 +710975,92.785,91.5459 +710976,92.653,89.74888 +710977,91.578,95.2731 +710978,91.529,93.3766 +710979,91.454,91.5262 +710980,91.357,89.71744 +710981,90.176,95.2776 +710982,90.163,93.3688 +710983,90.124,91.5069 +710984,90.062,89.68735 +710985,88.774,95.2805 +710986,88.797,93.3604 +710987,88.793,91.4881 +710988,88.766,89.65862 +710989,87.372,95.282 +710990,87.431,93.3515 +710991,87.463,91.4696 +710992,87.471,89.63125 +710993,85.97,95.2819 +710994,86.065,93.3421 +710995,86.133,91.4516 +710996,86.176,89.60526 +710997,84.568,95.2803 +710998,84.7,93.3321 +710999,84.803,91.4341 +711000,84.881,89.58065 +711001,83.166,95.2771 +711002,83.334,93.3217 +711003,83.472,91.4169 +711004,83.586,89.55741 +711005,81.764,95.2724 +711006,81.968,93.3106 +711007,82.142,91.4002 +711008,82.291,89.53557 +711009,80.363,95.2662 +711010,80.603,93.2991 +711011,80.812,91.384 +711012,80.995,89.51511 +711013,78.961,95.2584 +711014,79.237,93.287 +711015,79.482,91.3681 +711016,79.7,89.49604 +711017,77.56,95.2491 +711018,77.872,93.2743 +711019,78.152,91.3528 +711020,78.405,89.47835 +711021,76.159,95.2382 +711022,76.506,93.2611 +711023,76.821,91.3378 +711024,77.109,89.46207 +711025,74.758,95.2258 +711026,75.141,93.2474 +711027,75.491,91.3233 +711028,75.814,89.44717 +711029,73.358,95.2118 +711030,73.776,93.2331 +711031,74.161,91.3092 +711032,74.518,89.43366 +711033,71.957,95.1962 +711034,72.411,93.2183 +711035,72.831,91.2956 +711036,73.222,89.42154 +711037,70.558,95.1791 +711038,71.046,93.203 +711039,71.5,91.2824 +711040,71.926,89.41081 +711041,69.158,95.1605 +711042,69.681,93.1871 +711043,70.17,91.2697 +711044,70.629,89.40147 +711045,67.759,95.1403 +711046,68.317,93.1707 +711047,68.839,91.2573 +711048,69.332,89.3935 +711049,66.36,95.1185 +711050,66.952,93.1537 +711051,67.509,91.2455 +711052,68.035,89.38691 +711053,64.962,95.0952 +711054,65.588,93.1362 +711055,66.178,91.234 +711056,66.738,89.3817 +711057,63.564,95.0704 +711058,64.224,93.1182 +711059,64.847,91.223 +711060,65.44,89.37784 +711061,62.167,95.044 +711062,62.86,93.0996 +711063,63.516,91.2124 +711064,64.141,89.37535 +711065,60.771,95.0161 +711066,61.496,93.0805 +711067,62.185,91.2022 +711068,62.843,89.37421 +711069,59.374,94.9867 +711070,60.133,93.0609 +711071,60.854,91.1925 +711072,61.544,89.37442 +711073,57.979,94.9558 +711074,58.769,93.0408 +711075,59.522,91.1832 +711076,60.244,89.37596 +711077,56.584,94.9233 +711078,57.406,93.0201 +711079,58.191,91.1743 +711080,58.944,89.37883 +711081,55.19,94.8894 +711082,56.043,92.999 +711083,56.859,91.1658 +711084,57.643,89.38302 +711085,53.796,94.854 +711086,54.681,92.9773 +711087,55.527,91.1578 +711088,56.342,89.38851 +711089,52.404,94.8171 +711090,53.318,92.9551 +711091,54.195,91.1501 +711092,55.04,89.39531 +711093,51.011,94.7788 +711094,51.956,92.9324 +711095,52.863,91.1429 +711096,53.738,89.40338 +711097,49.62,94.739 +711098,50.594,92.9092 +711099,51.531,91.136 +711100,52.435,89.41274 +711101,48.23,94.6978 +711102,49.233,92.8855 +711103,50.198,91.1296 +711104,51.131,89.42335 +711105,46.84,94.6552 +711106,47.872,92.8613 +711107,48.865,91.1236 +711108,49.826,89.4352 +711109,45.451,94.6112 +711110,46.511,92.8366 +711111,47.532,91.1179 +711112,48.521,89.44829 +711113,44.063,94.5658 +711114,45.15,92.8115 +711115,46.199,91.1126 +711116,47.216,89.4626 +711117,42.676,94.519 +711118,43.79,92.7859 +711119,44.865,91.1077 +711120,45.909,89.47811 +711121,41.289,94.4709 +711122,42.43,92.7598 +711123,43.532,91.1032 +711124,44.602,89.49481 +711125,39.904,94.4215 +711126,41.07,92.7332 +711127,42.198,91.099 +711128,43.294,89.51268 +711129,38.519,94.3707 +711130,39.71,92.7062 +711131,40.864,91.0952 +711132,41.985,89.5317 +711133,37.136,94.3186 +711134,38.351,92.6787 +711135,39.529,91.0918 +711136,40.675,89.55186 +711137,35.753,94.2653 +711138,36.993,92.6508 +711139,38.194,91.0887 +711140,39.364,89.57314 +711141,34.372,94.2108 +711142,35.634,92.6224 +711143,36.859,91.0859 +711144,38.053,89.59551 +711145,32.991,94.155 +711146,34.276,92.5937 +711147,35.524,91.0835 +711148,36.74,89.61896 +711149,31.612,94.098 +711150,32.918,92.5645 +711151,34.188,91.0815 +711152,35.427,89.64348 +711153,30.233,94.0398 +711154,31.561,92.5348 +711155,32.853,91.0797 +711156,34.113,89.66903 +711157,28.856,93.9804 +711158,30.204,92.5048 +711159,31.516,91.0783 +711160,32.798,89.6956 +711161,27.48,93.9199 +711162,28.848,92.4744 +711163,30.18,91.0771 +711164,31.482,89.72317 +711165,26.104,93.8584 +711166,27.491,92.4436 +711167,28.843,91.0763 +711168,30.164,89.75171 +711169,24.73,93.7957 +711170,26.136,92.4123 +711171,27.506,91.0758 +711172,28.846,89.78121 +711173,23.357,93.7319 +711174,24.78,92.3808 +711175,26.169,91.0755 +711176,27.527,89.81164 +711177,21.986,93.6672 +711178,23.425,92.3488 +711179,24.831,91.0755 +711180,26.207,89.84297 +711181,20.615,93.6014 +711182,22.071,92.3165 +711183,23.493,91.0758 +711184,24.886,89.87519 +711185,19.246,93.5347 +711186,20.717,92.2838 +711187,22.154,91.0764 +711188,23.563,89.908269 +711189,17.877,93.467 +711190,19.363,92.2508 +711191,20.816,91.0772 +711192,22.24,89.942182 +711193,16.51,93.3984 +711194,18.009,92.2175 +711195,19.477,91.0783 +711196,20.915,89.976904 +711197,15.144,93.3289 +711198,16.657,92.1838 +711199,18.137,91.0796 +711200,19.59,90.012411 +711201,13.78,93.2585 +711202,15.304,92.1499 +711203,16.797,91.0811 +711204,18.263,90.048676 +711205,12.416,93.1873 +711206,13.952,92.1156 +711207,15.457,91.0828 +711208,16.935,90.085674 +711209,11.054,93.1153 +711210,12.6,92.081 +711211,14.117,91.0848 +711212,15.606,90.12338 +711213,9.6931,93.0425 +711214,11.249,92.0462 +711215,12.776,91.0869 +711216,14.276,90.16176 +711217,8.3334,92.969 +711218,9.8984,92.011 +711219,11.435,91.0893 +711220,12.945,90.2008 +711221,6.975,92.8947 +711222,8.5481,91.9756 +711223,10.093,91.0918 +711224,11.612,90.24046 +711225,5.6179,92.8198 +711226,7.1982,91.94 +711227,8.7511,91.0945 +711228,10.279,90.28071 +711229,4.262,92.7443 +711230,5.8488,91.9041 +711231,7.4088,91.0974 +711232,8.9439,90.32154 +711233,2.9074,92.6681 +711234,4.4998,91.868 +711235,6.0661,91.1004 +711236,7.6078,90.3629 +711237,1.554,92.5913 +711238,3.1513,91.8316 +711239,4.723,91.1035 +711240,6.2706,90.40478 +711241,0.20198,92.514 +711242,1.8032,91.7951 +711243,3.3795,91.1068 +711244,4.9321,90.44713 +711245,358.85,92.4362 +711246,0.45562,91.7583 +711247,2.0357,91.1102 +711248,3.5925,90.48995 +711249,357.5,92.3579 +711250,359.11,91.7213 +711251,0.69141,91.1138 +711252,2.2516,90.53318 +711253,356.15,92.2791 +711254,357.76,91.6842 +711255,359.35,91.1174 +711256,0.90947,90.57681 +711257,354.81,92.2 +711258,356.42,91.6469 +711259,358,91.1211 +711260,359.57,90.6208 +711261,353.46,92.1204 +711262,355.07,91.6094 +711263,356.66,91.1249 +711264,358.22,90.66513 +711265,352.12,92.0405 +711266,353.72,91.5718 +711267,355.31,91.1288 +711268,356.88,90.70976 +711269,350.77,91.9603 +711270,352.38,91.5341 +711271,353.96,91.1327 +711272,355.53,90.75466 +711273,349.43,91.8797 +711274,351.04,91.4962 +711275,352.62,91.1367 +711276,354.18,90.7998 +711277,348.09,91.799 +711278,349.69,91.4582 +711279,351.27,91.1407 +711280,352.83,90.84516 +711281,346.75,91.718 +711282,348.35,91.4201 +711283,349.92,91.1448 +711284,351.48,90.8907 +711285,345.41,91.6368 +711286,347,91.3819 +711287,348.58,91.1489 +711288,350.13,90.93638 +711289,344.08,91.5555 +711290,345.66,91.3436 +711291,347.23,91.1529 +711292,348.77,90.98219 +711293,342.74,91.4741 +711294,344.32,91.3053 +711295,345.88,91.157 +711296,347.42,91.0281 +711297,341.41,91.3926 +711298,342.98,91.2669 +711299,344.53,91.1611 +711300,346.06,91.074 +711301,340.08,91.311 +711302,341.64,91.2284 +711303,343.18,91.1652 +711304,344.71,91.12 +711305,338.74,91.2294 +711306,340.3,91.1899 +711307,341.83,91.1692 +711308,343.35,91.166 +711309,337.41,91.1479 +711310,338.96,91.1514 +711311,340.48,91.1731 +711312,341.99,91.2119 +711313,336.09,91.0664 +711314,337.62,91.1129 +711315,339.13,91.1771 +711316,340.63,91.2578 +711317,334.76,90.98497 +711318,336.28,91.0743 +711319,337.78,91.1809 +711320,339.27,91.3035 +711321,333.43,90.90368 +711322,334.94,91.0358 +711323,336.43,91.1847 +711324,337.91,91.3491 +711325,332.11,90.82254 +711326,333.6,90.9973 +711327,335.08,91.1884 +711328,336.54,91.3946 +711329,330.78,90.74159 +711330,332.26,90.95882 +711331,333.73,91.192 +711332,335.18,91.4399 +711333,329.46,90.66086 +711334,330.92,90.92038 +711335,332.37,91.1954 +711336,333.81,91.4849 +711337,328.14,90.58038 +711338,329.59,90.88198 +711339,331.02,91.1988 +711340,332.44,91.5297 +711341,326.82,90.50018 +711342,328.25,90.84365 +711343,329.67,91.202 +711344,331.07,91.5742 +711345,325.5,90.4203 +711346,326.91,90.8054 +711347,328.31,91.2051 +711348,329.7,91.6184 +711349,324.18,90.34077 +711350,325.58,90.76722 +711351,326.96,91.2081 +711352,328.33,91.6622 +711353,322.86,90.26162 +711354,324.24,90.72914 +711355,325.61,91.2109 +711356,326.96,91.7056 +711357,321.55,90.18288 +711358,322.91,90.69116 +711359,324.25,91.2135 +711360,325.59,91.7487 +711361,320.23,90.10459 +711362,321.57,90.6533 +711363,322.9,91.2159 +711364,324.21,91.7913 +711365,318.92,90.026765 +711366,320.24,90.61556 +711367,321.54,91.2182 +711368,322.84,91.8334 +711369,317.61,89.949445 +711370,318.9,90.57796 +711371,320.19,91.2202 +711372,321.46,91.875 +711373,316.29,89.87266 +711374,317.57,90.5405 +711375,318.83,91.222 +711376,320.08,91.9161 +711377,314.98,89.79644 +711378,316.24,90.5032 +711379,317.48,91.2236 +711380,318.7,91.9566 +711381,313.67,89.72081 +711382,314.9,90.46606 +711383,316.12,91.225 +711384,317.32,91.9965 +711385,312.37,89.6458 +711386,313.57,90.4291 +711387,314.76,91.2262 +711388,315.94,92.0358 +711389,311.06,89.57144 +711390,312.24,90.39232 +711391,313.41,91.2271 +711392,314.56,92.0745 +711393,309.75,89.49776 +711394,310.91,90.35574 +711395,312.05,91.2277 +711396,313.18,92.1125 +711397,308.45,89.42479 +711398,309.58,90.31937 +711399,310.69,91.2281 +711400,311.8,92.1497 +711401,307.14,89.35255 +711402,308.24,90.2832 +711403,309.33,91.2282 +711404,310.41,92.1863 +711405,305.84,89.28107 +711406,306.91,90.24726 +711407,307.98,91.228 +711408,309.03,92.2221 +711409,304.54,89.21038 +711410,305.58,90.21155 +711411,306.62,91.2275 +711412,307.64,92.257 +711413,303.23,89.1405 +711414,304.25,90.17608 +711415,305.26,91.2267 +711416,306.25,92.2912 +711417,301.93,89.07146 +711418,302.92,90.14087 +711419,303.9,91.2256 +711420,304.86,92.3245 +711421,300.63,89.00329 +711422,301.59,90.10591 +711423,302.54,91.2241 +711424,303.48,92.357 +711425,299.33,88.936 +711426,300.27,90.071211 +711427,301.18,91.2224 +711428,302.09,92.3886 +711429,298.03,88.8696 +711430,298.94,90.036792 +711431,299.82,91.2203 +711432,300.7,92.4192 +711433,296.74,88.8042 +711434,297.61,90.0026561 +711435,298.46,91.2178 +711436,299.3,92.4489 +711437,295.44,88.7397 +711438,296.28,89.968811 +711439,297.1,91.215 +711440,297.91,92.4776 +711441,294.14,88.6762 +711442,294.95,89.935264 +711443,295.74,91.2119 +711444,296.52,92.5053 +711445,292.85,88.6137 +711446,293.62,89.902024 +711447,294.38,91.2083 +711448,295.13,92.5321 +711449,291.55,88.5522 +711450,292.3,89.8691 +711451,293.02,91.2044 +711452,293.73,92.5577 +711453,290.26,88.4918 +711454,290.97,89.83649 +711455,291.66,91.2001 +711456,292.34,92.5823 +711457,288.96,88.4324 +711458,289.64,89.80422 +711459,290.3,91.1955 +711460,290.94,92.6058 +711461,287.67,88.3741 +711462,288.32,89.77227 +711463,288.94,91.1904 +711464,289.55,92.6282 +711465,286.38,88.317 +711466,286.99,89.74067 +711467,287.58,91.1849 +711468,288.15,92.6495 +711469,285.09,88.2609 +711470,285.66,89.70942 +711471,286.22,91.179 +711472,286.76,92.6697 +711473,283.79,88.206 +711474,284.34,89.67852 +711475,284.86,91.1727 +711476,285.36,92.6886 +711477,282.5,88.1522 +711478,283.01,89.64798 +711479,283.5,91.1659 +711480,283.96,92.7064 +711481,281.21,88.0996 +711482,281.69,89.61781 +711483,282.14,91.1588 +711484,282.56,92.7229 +711485,279.92,88.0482 +711486,280.36,89.58801 +711487,280.77,91.1512 +711488,281.16,92.7383 +711489,278.63,87.998 +711490,279.03,89.55858 +711491,279.41,91.1431 +711492,279.77,92.7524 +711493,277.34,87.9491 +711494,277.71,89.52954 +711495,278.05,91.1346 +711496,278.37,92.7652 +711497,276.06,87.9013 +711498,276.38,89.50089 +711499,276.69,91.1257 +711500,276.97,92.7767 +711501,274.77,87.8548 +711502,275.06,89.47263 +711503,275.33,91.1163 +711504,275.57,92.787 +711505,273.48,87.8096 +711506,273.73,89.44476 +711507,273.96,91.1065 +711508,274.17,92.7959 +711509,272.19,87.7656 +711510,272.41,89.4173 +711511,272.6,91.0961 +711512,272.77,92.8035 +711513,270.9,87.7229 +711514,271.08,89.39024 +711515,271.24,91.0853 +711516,271.37,92.8098 +711517,269.61,87.6815 +711518,269.76,89.36359 +711519,269.88,91.0741 +711520,269.97,92.8147 +711521,268.33,87.6414 +711522,268.44,89.33735 +711523,268.52,91.0623 +711524,268.57,92.8183 +711525,267.04,87.6026 +711526,267.11,89.31153 +711527,267.15,91.0501 +711528,267.17,92.8204 +711529,265.75,87.5651 +711530,265.79,89.28613 +711531,265.79,91.0374 +711532,265.77,92.8212 +711533,264.47,87.529 +711534,264.46,89.26114 +711535,264.43,91.0242 +711536,264.36,92.8206 +711537,263.18,87.4942 +711538,263.14,89.23659 +711539,263.07,91.0106 +711540,262.96,92.8186 +711541,261.89,87.4607 +711542,261.81,89.21246 +711543,261.71,90.99638 +711544,261.56,92.8152 +711545,260.61,87.4286 +711546,260.49,89.18876 +711547,260.34,90.98172 +711548,260.16,92.8103 +711549,259.32,87.3978 +711550,259.17,89.16549 +711551,258.98,90.96656 +711552,258.76,92.804 +711553,258.03,87.3684 +711554,257.84,89.14266 +711555,257.62,90.9509 +711556,257.36,92.7963 +711557,256.75,87.3403 +711558,256.52,89.12026 +711559,256.26,90.93474 +711560,255.96,92.7871 +711561,255.46,87.3136 +711562,255.19,89.0983 +711563,254.9,90.91808 +711564,254.56,92.7765 +711565,254.17,87.2883 +711566,253.87,89.07677 +711567,253.54,90.90092 +711568,253.16,92.7644 +711569,252.88,87.2643 +711570,252.55,89.05568 +711571,252.17,90.88325 +711572,251.76,92.7508 +711573,251.6,87.2417 +711574,251.22,89.03503 +711575,250.81,90.86508 +711576,250.36,92.7358 +711577,250.31,87.2205 +711578,249.9,89.01482 +711579,249.45,90.84641 +711580,248.96,92.7193 +711581,249.02,87.2006 +711582,248.57,88.995 +711583,248.09,90.82723 +711584,247.57,92.7014 +711585,247.73,87.1821 +711586,247.25,88.9757 +711587,246.73,90.80755 +711588,246.17,92.682 +711589,246.44,87.1649 +711590,245.93,88.9568 +711591,245.37,90.78737 +711592,244.77,92.6611 +711593,245.16,87.1491 +711594,244.6,88.9384 +711595,244.01,90.76668 +711596,243.37,92.6387 +711597,243.87,87.1347 +711598,243.28,88.9203 +711599,242.65,90.7455 +711600,241.97,92.6149 +711601,242.58,87.1216 +711602,241.95,88.9028 +711603,241.29,90.72381 +711604,240.58,92.5896 +711605,241.29,87.1099 +711606,240.63,88.8856 +711607,239.93,90.70162 +711608,239.18,92.5629 +711609,240,87.0995 +711610,239.3,88.8689 +711611,238.57,90.67893 +711612,237.79,92.5347 +711613,238.71,87.0904 +711614,237.98,88.8526 +711615,237.21,90.65575 +711616,236.39,92.5051 +711617,237.41,87.0827 +711618,236.65,88.8367 +711619,235.85,90.63207 +711620,235,92.474 +711621,236.12,87.0763 +711622,235.33,88.8213 +711623,234.49,90.60791 +711624,233.61,92.4414 +711625,234.83,87.0712 +711626,234,88.8063 +711627,233.13,90.58325 +711628,232.21,92.4074 +711629,233.54,87.0674 +711630,232.68,88.7917 +711631,231.77,90.55811 +711632,230.82,92.372 +711633,232.24,87.0649 +711634,231.35,88.7775 +711635,230.41,90.53248 +711636,229.43,92.3352 +711637,230.95,87.0637 +711638,230.02,88.7638 +711639,229.06,90.50638 +711640,228.04,92.297 +711641,229.66,87.0637 +711642,228.7,88.7505 +711643,227.7,90.4798 +711644,226.65,92.2574 +711645,228.36,87.0651 +711646,227.37,88.7375 +711647,226.34,90.45274 +711648,225.26,92.2164 +711649,227.06,87.0676 +711650,226.05,88.725 +711651,224.98,90.42522 +711652,223.87,92.174 +711653,225.77,87.0715 +711654,224.72,88.7129 +711655,223.63,90.39724 +711656,222.48,92.1303 +711657,224.47,87.0765 +711658,223.39,88.7011 +711659,222.27,90.36879 +711660,221.1,92.0852 +711661,223.17,87.0828 +711662,222.06,88.6898 +711663,220.91,90.33989 +711664,219.71,92.0387 +711665,221.87,87.0902 +711666,220.74,88.6788 +711667,219.56,90.31054 +711668,218.33,91.991 +711669,220.57,87.0988 +711670,219.41,88.6683 +711671,218.2,90.28075 +711672,216.94,91.9419 +711673,219.27,87.1086 +711674,218.08,88.6581 +711675,216.85,90.25052 +711676,215.56,91.8916 +711677,217.97,87.1196 +711678,216.75,88.6483 +711679,215.49,90.21985 +711680,214.18,91.84 +711681,216.67,87.1317 +711682,215.42,88.6388 +711683,214.14,90.18875 +711684,212.8,91.7871 +711685,215.36,87.1449 +711686,214.1,88.6297 +711687,212.78,90.15724 +711688,211.42,91.733 +711689,214.06,87.1591 +711690,212.77,88.621 +711691,211.43,90.12531 +711692,210.04,91.6776 +711693,212.75,87.1745 +711694,211.44,88.6126 +711695,210.08,90.092964 +711696,208.67,91.6211 +711697,211.45,87.191 +711698,210.11,88.6045 +711699,208.72,90.060219 +711700,207.29,91.5634 +711701,210.14,87.2084 +711702,208.78,88.5968 +711703,207.37,90.027079 +711704,205.91,91.5045 +711705,208.83,87.2269 +711706,207.45,88.5894 +711707,206.02,89.9935492 +711708,204.54,91.4445 +711709,207.52,87.2464 +711710,206.12,88.5824 +711711,204.67,89.959638 +711712,203.17,91.3834 +711713,206.21,87.2669 +711714,204.79,88.5756 +711715,203.32,89.925353 +711716,201.8,91.3212 +711717,204.9,87.2884 +711718,203.45,88.5692 +711719,201.96,89.8907 +711720,200.43,91.2579 +711721,203.59,87.3107 +711722,202.12,88.563 +711723,200.61,89.85569 +711724,199.06,91.1935 +711725,202.27,87.334 +711726,200.79,88.5572 +711727,199.26,89.82033 +711728,197.69,91.1282 +711729,200.96,87.3582 +711730,199.46,88.5516 +711731,197.91,89.78462 +711732,196.32,91.0618 +711733,199.64,87.3833 +711734,198.13,88.5464 +711735,196.56,89.74858 +711736,194.96,90.99451 +711737,198.33,87.4092 +711738,196.79,88.5414 +711739,195.22,89.71221 +711740,193.59,90.92624 +711741,197.01,87.4359 +711742,195.46,88.5366 +711743,193.87,89.67553 +711744,192.23,90.85704 +711745,195.69,87.4634 +711746,194.13,88.5321 +711747,192.52,89.63853 +711748,190.87,90.78696 +711749,194.37,87.4917 +711750,192.79,88.5279 +711751,191.17,89.60124 +711752,189.51,90.716 +711753,193.05,87.5207 +711754,191.46,88.5238 +711755,189.83,89.56365 +711756,188.15,90.64421 +711757,191.72,87.5505 +711758,190.12,88.5201 +711759,188.48,89.52578 +711760,186.79,90.5716 +711761,190.4,87.581 +711762,188.79,88.5165 +711763,187.13,89.48764 +711764,185.43,90.49822 +711765,189.08,87.6121 +711766,187.45,88.5131 +711767,185.79,89.44923 +711768,184.08,90.42408 +711769,187.75,87.6439 +711770,186.11,88.51 +711771,184.44,89.41057 +711772,182.73,90.34921 +711773,186.42,87.6762 +711774,184.78,88.507 +711775,183.1,89.37167 +711776,181.37,90.27365 +711777,185.09,87.7092 +711778,183.44,88.5043 +711779,181.75,89.33253 +711780,180.02,90.19743 +711781,183.76,87.7428 +711782,182.1,88.5017 +711783,180.41,89.29316 +711784,178.67,90.12057 +711785,182.43,87.7768 +711786,180.77,88.4992 +711787,179.07,89.25358 +711788,177.33,90.043103 +711789,181.1,87.8114 +711790,179.43,88.4969 +711791,177.72,89.2138 +711792,175.98,89.965066 +711793,179.76,87.8465 +711794,178.09,88.4948 +711795,176.38,89.17381 +711796,174.63,89.88649 +711797,178.43,87.882 +711798,176.75,88.4928 +711799,175.04,89.13365 +711800,173.29,89.8074 +711801,177.09,87.9179 +711802,175.41,88.4909 +711803,173.7,89.09331 +711804,171.95,89.72783 +711805,175.75,87.9542 +711806,174.07,88.4892 +711807,172.36,89.0528 +711808,170.61,89.64781 +711809,174.41,87.9909 +711810,172.73,88.4875 +711811,171.02,89.01214 +711812,169.27,89.56737 +711813,173.07,88.028 +711814,171.39,88.486 +711815,169.68,88.9713 +711816,167.93,89.48656 +711817,171.73,88.0653 +711818,170.05,88.4845 +711819,168.34,88.9304 +711820,166.59,89.40539 +711821,170.39,88.1029 +711822,168.71,88.4831 +711823,167,88.8893 +711824,165.25,89.3239 +711825,169.04,88.1407 +711826,167.37,88.4818 +711827,165.66,88.8482 +711828,163.92,89.24213 +711829,167.7,88.1788 +711830,166.03,88.4805 +711831,164.32,88.8069 +711832,162.59,89.1601 +711833,166.35,88.2171 +711834,164.68,88.4793 +711835,162.99,88.7655 +711836,161.26,89.07785 +711837,165,88.2555 +711838,163.34,88.4781 +711839,161.65,88.7241 +711840,159.93,88.9954 +711841,163.65,88.294 +711842,162,88.477 +711843,160.31,88.6826 +711844,158.6,88.9128 +711845,162.3,88.3327 +711846,160.65,88.4758 +711847,158.98,88.641 +711848,157.27,88.8301 +711849,160.95,88.3714 +711850,159.31,88.4747 +711851,157.64,88.5994 +711852,155.94,88.7473 +711853,159.6,88.4101 +711854,157.97,88.4736 +711855,156.31,88.5577 +711856,154.62,88.6644 +711857,158.24,88.4489 +711858,156.62,88.4724 +711859,154.97,88.516 +711860,153.3,88.5816 +711861,156.89,88.4876 +711862,155.28,88.4712 +711863,153.64,88.4743 +711864,151.97,88.4987 +711865,155.53,88.5263 +711866,153.93,88.47 +711867,152.3,88.4326 +711868,150.65,88.4158 +711869,154.17,88.5649 +711870,152.58,88.4688 +711871,150.97,88.3909 +711872,149.33,88.3331 +711873,152.81,88.6033 +711874,151.24,88.4675 +711875,149.64,88.3493 +711876,148.01,88.2504 +711877,151.45,88.6417 +711878,149.89,88.4661 +711879,148.31,88.3076 +711880,146.7,88.1679 +711881,150.09,88.6798 +711882,148.54,88.4646 +711883,146.98,88.266 +711884,145.38,88.0856 +711885,148.73,88.7178 +711886,147.2,88.4631 +711887,145.64,88.2244 +711888,144.07,88.0034 +711889,147.36,88.7555 +711890,145.85,88.4615 +711891,144.31,88.1829 +711892,142.75,87.9215 +711893,145.99,88.793 +711894,144.5,88.4597 +711895,142.98,88.1415 +711896,141.44,87.8399 +711897,144.63,88.8302 +711898,143.15,88.4579 +711899,141.65,88.1001 +711900,140.13,87.7585 +711901,143.26,88.867 +711902,141.8,88.4559 +711903,140.32,88.0589 +711904,138.82,87.6775 +711905,141.89,88.9035 +711906,140.45,88.4538 +711907,139,88.0177 +711908,137.51,87.5969 +711909,140.52,88.9396 +711910,139.1,88.4515 +711911,137.67,87.9766 +711912,136.21,87.5166 +711913,139.15,88.9753 +711914,137.75,88.4491 +711915,136.34,87.9357 +711916,134.9,87.4368 +711917,137.77,89.0106 +711918,136.4,88.4465 +711919,135.01,87.8949 +711920,133.6,87.3574 +711921,136.4,89.04541 +711922,135.05,88.4437 +711923,133.68,87.8542 +711924,132.29,87.2785 +711925,135.03,89.07972 +711926,133.7,88.4408 +711927,132.36,87.8137 +711928,130.99,87.2001 +711929,133.65,89.11351 +711930,132.35,88.4376 +711931,131.03,87.7734 +711932,129.69,87.1222 +711933,132.27,89.14675 +711934,131,88.4343 +711935,129.7,87.7332 +711936,128.39,87.0449 +711937,130.89,89.17941 +711938,129.65,88.4307 +711939,128.38,87.6932 +711940,127.09,86.9682 +711941,129.52,89.21146 +711942,128.29,88.427 +711943,127.05,87.6534 +711944,125.79,86.8922 +711945,128.13,89.24289 +711946,126.94,88.423 +711947,125.73,87.6137 +711948,124.49,86.8168 +711949,126.75,89.27365 +711950,125.59,88.4187 +711951,124.4,87.5743 +711952,123.2,86.742 +711953,125.37,89.30373 +711954,124.24,88.4142 +711955,123.08,87.5351 +711956,121.9,86.668 +711957,123.99,89.33309 +711958,122.88,88.4095 +711959,121.76,87.4962 +711960,120.61,86.5947 +711961,122.6,89.36172 +711962,121.53,88.4044 +711963,120.43,87.4574 +711964,119.32,86.5222 +711965,121.22,89.38959 +711966,120.17,88.3992 +711967,119.11,87.419 +711968,118.02,86.4505 +711969,119.83,89.41667 +711970,118.82,88.3936 +711971,117.79,87.3807 +711972,116.73,86.3796 +711973,118.45,89.44293 +711974,117.47,88.3877 +711975,116.46,87.3428 +711976,115.44,86.3095 +711977,117.06,89.46836 +711978,116.11,88.3816 +711979,115.14,87.305 +711980,114.15,86.2403 +711981,115.67,89.49292 +711982,114.76,88.3751 +711983,113.82,87.2676 +711984,112.86,86.1719 +711985,114.28,89.51661 +711986,113.4,88.3683 +711987,112.5,87.2305 +711988,111.57,86.1045 +711989,112.89,89.53938 +711990,112.05,88.3612 +711991,111.18,87.1936 +711992,110.29,86.038 +711993,111.5,89.56122 +711994,110.69,88.3538 +711995,109.86,87.1571 +711996,109,85.9725 +711997,110.11,89.58211 +711998,109.33,88.346 +711999,108.53,87.1208 +712000,107.71,85.9079 +712001,108.72,89.60203 +712002,107.98,88.3379 +712003,107.21,87.0849 +712004,106.43,85.8443 +712005,107.33,89.62095 +712006,106.62,88.3294 +712007,105.89,87.0493 +712008,105.14,85.7818 +712009,105.93,89.63886 +712010,105.27,88.3206 +712011,104.57,87.014 +712012,103.86,85.7202 +712013,104.54,89.65572 +712014,103.91,88.3114 +712015,103.25,86.9791 +712016,102.58,85.6598 +712017,103.15,89.67153 +712018,102.55,88.3018 +712019,101.93,86.9444 +712020,101.29,85.6004 +712021,101.75,89.68627 +712022,101.2,88.2919 +712023,100.62,86.9102 +712024,100.01,85.5421 +712025,100.36,89.69991 +712026,99.838,88.2816 +712027,99.296,86.8763 +712028,98.73,85.4849 +712029,98.96,89.71243 +712030,98.481,88.2709 +712031,97.977,86.8427 +712032,97.449,85.4288 +712033,97.564,89.72383 +712034,97.124,88.2598 +712035,96.658,86.8096 +712036,96.168,85.3739 +712037,96.168,89.73407 +712038,95.767,88.2483 +712039,95.34,86.7768 +712040,94.888,85.3201 +712041,94.771,89.74316 +712042,94.409,88.2364 +712043,94.021,86.7443 +712044,93.608,85.2676 +712045,93.373,89.75106 +712046,93.052,88.2241 +712047,92.703,86.7123 +712048,92.329,85.2162 +712049,91.976,89.75776 +712050,91.694,88.2113 +712051,91.385,86.6806 +712052,91.049,85.166 +712053,90.578,89.76326 +712054,90.337,88.1982 +712055,90.067,86.6493 +712056,89.771,85.117 +712057,89.18,89.76753 +712058,88.979,88.1846 +712059,88.749,86.6185 +712060,88.492,85.0692 +712061,87.781,89.77056 +712062,87.621,88.1706 +712063,87.432,86.588 +712064,87.214,85.0227 +712065,86.383,89.77233 +712066,86.264,88.1562 +712067,86.114,86.5579 +712068,85.936,84.9775 +712069,84.984,89.77285 +712070,84.906,88.1413 +712071,84.797,86.5282 +712072,84.658,84.9334 +712073,83.585,89.77208 +712074,83.548,88.126 +712075,83.479,86.499 +712076,83.38,84.8907 +712077,82.186,89.77003 +712078,82.191,88.1103 +712079,82.162,86.4701 +712080,82.103,84.8493 +712081,80.787,89.76668 +712082,80.833,88.0941 +712083,80.845,86.4417 +712084,80.825,84.8091 +712085,79.388,89.76202 +712086,79.475,88.0774 +712087,79.528,86.4137 +712088,79.548,84.7702 +712089,77.989,89.75605 +712090,78.118,88.0603 +712091,78.21,86.3861 +712092,78.271,84.7327 +712093,76.59,89.74875 +712094,76.76,88.0428 +712095,76.893,86.359 +712096,76.994,84.6964 +712097,75.191,89.74011 +712098,75.402,88.0248 +712099,75.576,86.3322 +712100,75.716,84.6615 +712101,73.793,89.73014 +712102,74.045,88.0063 +712103,74.259,86.3059 +712104,74.439,84.6278 +712105,72.394,89.71882 +712106,72.688,87.9874 +712107,72.942,86.2801 +712108,73.162,84.5955 +712109,70.996,89.70614 +712110,71.33,87.968 +712111,71.625,86.2546 +712112,71.884,84.5646 +712113,69.597,89.69211 +712114,69.973,87.9482 +712115,70.308,86.2296 +712116,70.607,84.5349 +712117,68.199,89.67671 +712118,68.616,87.9279 +712119,68.991,86.205 +712120,69.329,84.5066 +712121,66.802,89.65995 +712122,67.259,87.9071 +712123,67.674,86.1809 +712124,68.051,84.4796 +712125,65.404,89.64182 +712126,65.902,87.8858 +712127,66.357,86.1572 +712128,66.773,84.454 +712129,64.007,89.62232 +712130,64.545,87.8641 +712131,65.039,86.1339 +712132,65.495,84.4297 +712133,62.61,89.60144 +712134,63.189,87.842 +712135,63.722,86.1111 +712136,64.216,84.4067 +712137,61.214,89.57919 +712138,61.832,87.8193 +712139,62.405,86.0887 +712140,62.937,84.385 +712141,59.818,89.55557 +712142,60.476,87.7962 +712143,61.087,86.0668 +712144,61.658,84.3647 +712145,58.423,89.53057 +712146,59.12,87.7727 +712147,59.77,86.0452 +712148,60.378,84.3457 +712149,57.028,89.5042 +712150,57.764,87.7486 +712151,58.452,86.0241 +712152,59.098,84.3281 +712153,55.633,89.47646 +712154,56.408,87.7241 +712155,57.134,86.0035 +712156,57.818,84.3117 +712157,54.24,89.44735 +712158,55.053,87.6992 +712159,55.816,85.9833 +712160,56.537,84.2967 +712161,52.846,89.41688 +712162,53.698,87.6738 +712163,54.498,85.9635 +712164,55.255,84.283 +712165,51.454,89.38505 +712166,52.343,87.6479 +712167,53.18,85.9441 +712168,53.973,84.2705 +712169,50.062,89.35186 +712170,50.988,87.6215 +712171,51.862,85.9252 +712172,52.691,84.2594 +712173,48.671,89.31733 +712174,49.633,87.5948 +712175,50.543,85.9066 +712176,51.408,84.2496 +712177,47.28,89.28145 +712178,48.279,87.5675 +712179,49.225,85.8885 +712180,50.124,84.241 +712181,45.89,89.24423 +712182,46.925,87.5398 +712183,47.906,85.8709 +712184,48.84,84.2338 +712185,44.501,89.20569 +712186,45.571,87.5117 +712187,46.587,85.8536 +712188,47.555,84.2277 +712189,43.113,89.16583 +712190,44.218,87.4831 +712191,45.267,85.8368 +712192,46.27,84.223 +712193,41.726,89.12466 +712194,42.865,87.4541 +712195,43.948,85.8203 +712196,44.983,84.2194 +712197,40.339,89.08219 +712198,41.512,87.4247 +712199,42.628,85.8043 +712200,43.696,84.2172 +712201,38.954,89.03842 +712202,40.159,87.3948 +712203,41.308,85.7887 +712204,42.409,84.2161 +712205,37.569,88.9934 +712206,38.807,87.3645 +712207,39.988,85.7734 +712208,41.12,84.2162 +712209,36.185,88.9471 +712210,37.455,87.3338 +712211,38.668,85.7586 +712212,39.831,84.2175 +712213,34.802,88.8995 +712214,36.104,87.3026 +712215,37.347,85.7442 +712216,38.541,84.22 +712217,33.421,88.8507 +712218,34.753,87.271 +712219,36.026,85.7301 +712220,37.25,84.2237 +712221,32.04,88.8007 +712222,33.402,87.2391 +712223,34.705,85.7164 +712224,35.958,84.2285 +712225,30.66,88.7495 +712226,32.052,87.2067 +712227,33.384,85.7031 +712228,34.665,84.2345 +712229,29.281,88.697 +712230,30.702,87.1739 +712231,32.062,85.6902 +712232,33.371,84.2415 +712233,27.904,88.6434 +712234,29.352,87.1407 +712235,30.74,85.6776 +712236,32.077,84.2497 +712237,26.527,88.5886 +712238,28.003,87.1072 +712239,29.417,85.6654 +712240,30.781,84.259 +712241,25.152,88.5327 +712242,26.654,87.0732 +712243,28.095,85.6535 +712244,29.484,84.2693 +712245,23.778,88.4757 +712246,25.305,87.0389 +712247,26.772,85.642 +712248,28.187,84.2807 +712249,22.405,88.4175 +712250,23.957,87.0042 +712251,25.448,85.6308 +712252,26.888,84.2931 +712253,21.033,88.3582 +712254,22.61,86.9691 +712255,24.125,85.62 +712256,25.588,84.3065 +712257,19.663,88.2979 +712258,21.262,86.9337 +712259,22.801,85.6095 +712260,24.288,84.3209 +712261,18.293,88.2365 +712262,19.915,86.898 +712263,21.477,85.5993 +712264,22.986,84.3362 +712265,16.925,88.1741 +712266,18.569,86.8619 +712267,20.152,85.5895 +712268,21.683,84.3526 +712269,15.558,88.1107 +712270,17.223,86.8254 +712271,18.827,85.5799 +712272,20.379,84.3698 +712273,14.193,88.0463 +712274,15.878,86.7887 +712275,17.502,85.5706 +712276,19.074,84.388 +712277,12.829,87.981 +712278,14.533,86.7516 +712279,16.176,85.5617 +712280,17.767,84.407 +712281,11.466,87.9147 +712282,13.188,86.7142 +712283,14.85,85.553 +712284,16.46,84.4269 +712285,10.104,87.8475 +712286,11.844,86.6764 +712287,13.523,85.5446 +712288,15.151,84.4477 +712289,8.7442,87.7794 +712290,10.5,86.6384 +712291,12.196,85.5365 +712292,13.841,84.4692 +712293,7.3854,87.7104 +712294,9.1572,86.6001 +712295,10.869,85.5286 +712296,12.53,84.4916 +712297,6.028,87.6406 +712298,7.8146,86.5616 +712299,9.5416,85.521 +712300,11.217,84.5147 +712301,4.672,87.5699 +712302,6.4724,86.5227 +712303,8.2136,85.5136 +712304,9.9035,84.5386 +712305,3.3173,87.4985 +712306,5.1307,86.4836 +712307,6.8852,85.5065 +712308,8.5886,84.5632 +712309,1.9641,87.4263 +712310,3.7894,86.4442 +712311,5.5563,85.4996 +712312,7.2724,84.5885 +712313,0.61229,87.3534 +712314,2.4487,86.4046 +712315,4.2271,85.4929 +712316,5.9549,84.6144 +712317,359.26,87.2798 +712318,1.1085,86.3648 +712319,2.8975,85.4865 +712320,4.6361,84.641 +712321,357.91,87.2054 +712322,359.77,86.3247 +712323,1.5674,85.4802 +712324,3.3161,84.6683 +712325,356.57,87.1305 +712326,358.43,86.2844 +712327,0.23695,85.4741 +712328,1.9947,84.6961 +712329,355.22,87.0549 +712330,357.09,86.2439 +712331,358.91,85.4683 +712332,0.67196,84.7244 +712333,353.87,86.9787 +712334,355.75,86.2032 +712335,357.57,85.4626 +712336,359.35,84.7534 +712337,352.53,86.9019 +712338,354.41,86.1623 +712339,356.24,85.457 +712340,358.02,84.7828 +712341,351.19,86.8246 +712342,353.08,86.1212 +712343,354.91,85.4517 +712344,356.7,84.8127 +712345,349.85,86.7468 +712346,351.74,86.0799 +712347,353.58,85.4465 +712348,355.37,84.8431 +712349,348.51,86.6685 +712350,350.4,86.0385 +712351,352.25,85.4414 +712352,354.04,84.8739 +712353,347.17,86.5897 +712354,349.07,85.9969 +712355,350.91,85.4364 +712356,352.71,84.9051 +712357,345.84,86.5105 +712358,347.73,85.9552 +712359,349.58,85.4316 +712360,351.38,84.9367 +712361,344.5,86.431 +712362,346.4,85.9134 +712363,348.24,85.4269 +712364,350.04,84.9686 +712365,343.17,86.351 +712366,345.07,85.8714 +712367,346.91,85.4223 +712368,348.71,85.0008 +712369,341.84,86.2708 +712370,343.73,85.8293 +712371,345.57,85.4178 +712372,347.37,85.0333 +712373,340.51,86.1902 +712374,342.4,85.7871 +712375,344.24,85.4134 +712376,346.03,85.0661 +712377,339.18,86.1094 +712378,341.07,85.7448 +712379,342.9,85.409 +712380,344.69,85.0991 +712381,337.85,86.0284 +712382,339.73,85.7025 +712383,341.57,85.4047 +712384,343.35,85.1324 +712385,336.53,85.9471 +712386,338.4,85.66 +712387,340.23,85.4005 +712388,342.01,85.1658 +712389,335.21,85.8657 +712390,337.07,85.6175 +712391,338.89,85.3963 +712392,340.67,85.1993 +712393,333.88,85.7841 +712394,335.74,85.575 +712395,337.55,85.3921 +712396,339.32,85.233 +712397,332.56,85.7024 +712398,334.41,85.5324 +712399,336.22,85.388 +712400,337.98,85.2667 +712401,331.24,85.6206 +712402,333.08,85.4898 +712403,334.88,85.3839 +712404,336.63,85.3005 +712405,329.92,85.5388 +712406,331.75,85.4471 +712407,333.54,85.3798 +712408,335.28,85.3343 +712409,328.61,85.457 +712410,330.42,85.4045 +712411,332.2,85.3757 +712412,333.93,85.3682 +712413,327.29,85.3752 +712414,329.1,85.3618 +712415,330.86,85.3715 +712416,332.58,85.4019 +712417,325.98,85.2934 +712418,327.77,85.3192 +712419,329.52,85.3674 +712420,331.23,85.4357 +712421,324.67,85.2118 +712422,326.44,85.2766 +712423,328.18,85.3632 +712424,329.88,85.4693 +712425,323.35,85.1302 +712426,325.11,85.234 +712427,326.84,85.359 +712428,328.52,85.5029 +712429,322.04,85.0488 +712430,323.79,85.1915 +712431,325.49,85.3547 +712432,327.16,85.5363 +712433,320.74,84.9675 +712434,322.46,85.149 +712435,324.15,85.3503 +712436,325.81,85.5695 +712437,319.43,84.8865 +712438,321.14,85.1065 +712439,322.81,85.3459 +712440,324.45,85.6025 +712441,318.12,84.8056 +712442,319.81,85.0642 +712443,321.47,85.3414 +712444,323.09,85.6353 +712445,316.82,84.7251 +712446,318.49,85.0219 +712447,320.12,85.3368 +712448,321.72,85.6678 +712449,315.52,84.6448 +712450,317.17,84.9797 +712451,318.78,85.3321 +712452,320.36,85.7 +712453,314.21,84.5649 +712454,315.84,84.9376 +712455,317.44,85.3273 +712456,319,85.732 +712457,312.91,84.4853 +712458,314.52,84.8956 +712459,316.09,85.3224 +712460,317.63,85.7635 +712461,311.61,84.4061 +712462,313.2,84.8538 +712463,314.75,85.3173 +712464,316.27,85.7948 +712465,310.32,84.3274 +712466,311.88,84.812 +712467,313.4,85.3121 +712468,314.9,85.8256 +712469,309.02,84.2491 +712470,310.55,84.7705 +712471,312.06,85.3067 +712472,313.53,85.8559 +712473,307.72,84.1712 +712474,309.23,84.729 +712475,310.71,85.3012 +712476,312.16,85.8859 +712477,306.43,84.0939 +712478,307.91,84.6877 +712479,309.37,85.2955 +712480,310.79,85.9153 +712481,305.14,84.017 +712482,306.59,84.6466 +712483,308.02,85.2897 +712484,309.42,85.9443 +712485,303.84,83.9408 +712486,305.27,84.6057 +712487,306.67,85.2836 +712488,308.04,85.9727 +712489,302.55,83.8651 +712490,303.95,84.565 +712491,305.32,85.2774 +712492,306.67,86.0005 +712493,301.26,83.7901 +712494,302.64,84.5244 +712495,303.98,85.271 +712496,305.29,86.0278 +712497,299.97,83.7156 +712498,301.32,84.4841 +712499,302.63,85.2643 +712500,303.91,86.0544 +712501,298.69,83.6419 +712502,300,84.444 +712503,301.28,85.2574 +712504,302.54,86.0805 +712505,297.4,83.5689 +712506,298.68,84.4041 +712507,299.93,85.2503 +712508,301.16,86.1058 +712509,296.11,83.4965 +712510,297.36,84.3644 +712511,298.58,85.243 +712512,299.78,86.1305 +712513,294.83,83.4249 +712514,296.05,84.325 +712515,297.24,85.2354 +712516,298.4,86.1545 +712517,293.55,83.3541 +712518,294.73,84.2858 +712519,295.89,85.2276 +712520,297.02,86.1777 +712521,292.26,83.2841 +712522,293.41,84.2469 +712523,294.54,85.2195 +712524,295.63,86.2002 +712525,290.98,83.2149 +712526,292.1,84.2082 +712527,293.19,85.2111 +712528,294.25,86.2219 +712529,289.7,83.1466 +712530,290.78,84.1698 +712531,291.84,85.2025 +712532,292.86,86.2428 +712533,288.42,83.0791 +712534,289.47,84.1317 +712535,290.49,85.1935 +712536,291.48,86.2628 +712537,287.14,83.0125 +712538,288.15,84.0939 +712539,289.14,85.1843 +712540,290.09,86.282 +712541,285.86,82.9468 +712542,286.84,84.0564 +712543,287.78,85.1748 +712544,288.71,86.3004 +712545,284.59,82.8821 +712546,285.52,84.0192 +712547,286.43,85.165 +712548,287.32,86.3178 +712549,283.31,82.8183 +712550,284.21,83.9822 +712551,285.08,85.1548 +712552,285.93,86.3344 +712553,282.03,82.7555 +712554,282.89,83.9456 +712555,283.73,85.1444 +712556,284.54,86.35 +712557,280.76,82.6936 +712558,281.58,83.9094 +712559,282.38,85.1336 +712560,283.15,86.3647 +712561,279.48,82.6328 +712562,280.27,83.8734 +712563,281.03,85.1225 +712564,281.76,86.3784 +712565,278.21,82.5731 +712566,278.95,83.8378 +712567,279.67,85.111 +712568,280.37,86.3911 +712569,276.93,82.5143 +712570,277.64,83.8026 +712571,278.32,85.0992 +712572,278.98,86.4028 +712573,275.66,82.4567 +712574,276.33,83.7676 +712575,276.97,85.0871 +712576,277.59,86.4135 +712577,274.39,82.4001 +712578,275.02,83.7331 +712579,275.62,85.0746 +712580,276.19,86.4231 +712581,273.12,82.3446 +712582,273.7,83.6989 +712583,274.27,85.0617 +712584,274.8,86.4317 +712585,271.85,82.2903 +712586,272.39,83.6651 +712587,272.91,85.0485 +712588,273.4,86.4392 +712589,270.57,82.2371 +712590,271.08,83.6316 +712591,271.56,85.0349 +712592,272.01,86.4456 +712593,269.3,82.185 +712594,269.77,83.5985 +712595,270.21,85.0209 +712596,270.62,86.4509 +712597,268.03,82.1341 +712598,268.46,83.5658 +712599,268.85,85.0065 +712600,269.22,86.4551 +712601,266.76,82.0844 +712602,267.15,83.5335 +712603,267.5,84.9918 +712604,267.83,86.4582 +712605,265.5,82.0358 +712606,265.84,83.5015 +712607,266.15,84.9766 +712608,266.43,86.4601 +712609,264.23,81.9885 +712610,264.52,83.47 +712611,264.79,84.9611 +712612,265.03,86.4608 +712613,262.96,81.9424 +712614,263.21,83.4388 +712615,263.44,84.9452 +712616,263.64,86.4604 +712617,261.69,81.8975 +712618,261.9,83.4081 +712619,262.09,84.9288 +712620,262.24,86.4588 +712621,260.42,81.8538 +712622,260.59,83.3777 +712623,260.73,84.9121 +712624,260.84,86.456 +712625,259.15,81.8114 +712626,259.28,83.3478 +712627,259.38,84.8949 +712628,259.45,86.4519 +712629,257.88,81.7702 +712630,257.97,83.3183 +712631,258.03,84.8774 +712632,258.05,86.4467 +712633,256.62,81.7303 +712634,256.66,83.2892 +712635,256.67,84.8594 +712636,256.65,86.4403 +712637,255.35,81.6916 +712638,255.35,83.2605 +712639,255.32,84.841 +712640,255.25,86.4326 +712641,254.08,81.6542 +712642,254.04,83.2322 +712643,253.97,84.8222 +712644,253.86,86.4236 +712645,252.81,81.6181 +712646,252.73,83.2044 +712647,252.61,84.8029 +712648,252.46,86.4134 +712649,251.55,81.5833 +712650,251.42,83.1769 +712651,251.26,84.7833 +712652,251.06,86.402 +712653,250.28,81.5498 +712654,250.11,83.1499 +712655,249.91,84.7632 +712656,249.67,86.3893 +712657,249.01,81.5175 +712658,248.8,83.1234 +712659,248.55,84.7426 +712660,248.27,86.3753 +712661,247.74,81.4866 +712662,247.49,83.0972 +712663,247.2,84.7217 +712664,246.87,86.36 +712665,246.47,81.4569 +712666,246.18,83.0715 +712667,245.85,84.7003 +712668,245.48,86.3435 +712669,245.2,81.4286 +712670,244.87,83.0462 +712671,244.49,84.6785 +712672,244.08,86.3257 +712673,243.94,81.4015 +712674,243.56,83.0213 +712675,243.14,84.6563 +712676,242.68,86.3066 +712677,242.67,81.3758 +712678,242.25,82.9969 +712679,241.79,84.6336 +712680,241.29,86.2862 +712681,241.4,81.3513 +712682,240.94,82.9729 +712683,240.43,84.6105 +712684,239.89,86.2645 +712685,240.13,81.3281 +712686,239.63,82.9493 +712687,239.08,84.5869 +712688,238.5,86.2416 +712689,238.86,81.3063 +712690,238.31,82.9262 +712691,237.73,84.563 +712692,237.1,86.2173 +712693,237.59,81.2857 +712694,237,82.9035 +712695,236.38,84.5385 +712696,235.71,86.1918 +712697,236.32,81.2665 +712698,235.69,82.8812 +712699,235.03,84.5137 +712700,234.31,86.1649 +712701,235.05,81.2485 +712702,234.38,82.8593 +712703,233.67,84.4884 +712704,232.92,86.1368 +712705,233.78,81.2318 +712706,233.07,82.8379 +712707,232.32,84.4627 +712708,231.53,86.1074 +712709,232.51,81.2164 +712710,231.76,82.8169 +712711,230.97,84.4366 +712712,230.13,86.0767 +712713,231.23,81.2022 +712714,230.45,82.7963 +712715,229.62,84.4101 +712716,228.74,86.0448 +712717,229.96,81.1893 +712718,229.14,82.7762 +712719,228.27,84.3831 +712720,227.35,86.0115 +712721,228.69,81.1777 +712722,227.83,82.7564 +712723,226.92,84.3557 +712724,225.96,85.977 +712725,227.41,81.1673 +712726,226.51,82.7371 +712727,225.57,84.3279 +712728,224.57,85.9412 +712729,226.14,81.1582 +712730,225.2,82.7182 +712731,224.22,84.2996 +712732,223.18,85.9042 +712733,224.86,81.1503 +712734,223.89,82.6997 +712735,222.87,84.271 +712736,221.79,85.8659 +712737,223.59,81.1436 +712738,222.58,82.6816 +712739,221.52,84.2419 +712740,220.41,85.8264 +712741,222.31,81.1382 +712742,221.26,82.6639 +712743,220.17,84.2124 +712744,219.02,85.7856 +712745,221.03,81.1339 +712746,219.95,82.6467 +712747,218.82,84.1825 +712748,217.63,85.7437 +712749,219.75,81.1309 +712750,218.64,82.6298 +712751,217.47,84.1522 +712752,216.25,85.7005 +712753,218.48,81.129 +712754,217.32,82.6133 +712755,216.12,84.1216 +712756,214.86,85.6561 +712757,217.2,81.1283 +712758,216.01,82.5972 +712759,214.78,84.0905 +712760,213.48,85.6105 +712761,215.91,81.1287 +712762,214.7,82.5815 +712763,213.43,84.059 +712764,212.1,85.5637 +712765,214.63,81.1303 +712766,213.38,82.5662 +712767,212.08,84.0271 +712768,210.72,85.5157 +712769,213.35,81.133 +712770,212.07,82.5512 +712771,210.73,83.9949 +712772,209.34,85.4666 +712773,212.07,81.1368 +712774,210.75,82.5366 +712775,209.39,83.9623 +712776,207.96,85.4164 +712777,210.78,81.1417 +712778,209.44,82.5224 +712779,208.04,83.9293 +712780,206.58,85.365 +712781,209.5,81.1477 +712782,208.12,82.5086 +712783,206.69,83.8959 +712784,205.2,85.3125 +712785,208.21,81.1547 +712786,206.81,82.4951 +712787,205.35,83.8622 +712788,203.83,85.2589 +712789,206.92,81.1628 +712790,205.49,82.482 +712791,204,83.8281 +712792,202.45,85.2042 +712793,205.63,81.1719 +712794,204.17,82.4692 +712795,202.66,83.7937 +712796,201.08,85.1485 +712797,204.35,81.182 +712798,202.86,82.4567 +712799,201.31,83.7589 +712800,199.71,85.0917 +712801,203.05,81.1931 +712802,201.54,82.4446 +712803,199.97,83.7238 +712804,198.34,85.0339 +712805,201.76,81.2052 +712806,200.22,82.4328 +712807,198.63,83.6884 +712808,196.97,84.975 +712809,200.47,81.2182 +712810,198.91,82.4213 +712811,197.28,83.6526 +712812,195.6,84.9152 +712813,199.18,81.2322 +712814,197.59,82.4102 +712815,195.94,83.6165 +712816,194.23,84.8544 +712817,197.88,81.247 +712818,196.27,82.3993 +712819,194.6,83.5801 +712820,192.86,84.7926 +712821,196.58,81.2628 +712822,194.95,82.3888 +712823,193.26,83.5434 +712824,191.5,84.7299 +712825,195.29,81.2794 +712826,193.63,82.3785 +712827,191.92,83.5064 +712828,190.14,84.6663 +712829,193.99,81.2968 +712830,192.31,82.3686 +712831,190.58,83.4691 +712832,188.77,84.6018 +712833,192.69,81.3151 +712834,190.99,82.3589 +712835,189.24,83.4316 +712836,187.41,84.5364 +712837,191.39,81.3342 +712838,189.67,82.3495 +712839,187.9,83.3937 +712840,186.05,84.4702 +712841,190.08,81.354 +712842,188.35,82.3403 +712843,186.56,83.3556 +712844,184.7,84.4032 +712845,188.78,81.3746 +712846,187.03,82.3314 +712847,185.22,83.3172 +712848,183.34,84.3353 +712849,187.47,81.396 +712850,185.71,82.3228 +712851,183.88,83.2786 +712852,181.99,84.2667 +712853,186.17,81.418 +712854,184.39,82.3144 +712855,182.54,83.2397 +712856,180.63,84.1973 +712857,184.86,81.4407 +712858,183.06,82.3062 +712859,181.21,83.2006 +712860,179.28,84.1272 +712861,183.55,81.4641 +712862,181.74,82.2982 +712863,179.87,83.1612 +712864,177.93,84.0563 +712865,182.24,81.4881 +712866,180.42,82.2905 +712867,178.53,83.1216 +712868,176.58,83.9848 +712869,180.93,81.5127 +712870,179.09,82.283 +712871,177.2,83.0819 +712872,175.23,83.9127 +712873,179.62,81.5379 +712874,177.77,82.2757 +712875,175.86,83.0419 +712876,173.89,83.8399 +712877,178.3,81.5636 +712878,176.44,82.2685 +712879,174.53,83.0017 +712880,172.54,83.7665 +712881,176.98,81.5899 +712882,175.12,82.2616 +712883,173.19,82.9614 +712884,171.2,83.6926 +712885,175.67,81.6167 +712886,173.79,82.2548 +712887,171.86,82.9208 +712888,169.86,83.6181 +712889,174.35,81.6439 +712890,172.47,82.2482 +712891,170.53,82.8801 +712892,168.52,83.5431 +712893,173.03,81.6716 +712894,171.14,82.2417 +712895,169.19,82.8393 +712896,167.18,83.4676 +712897,171.71,81.6997 +712898,169.81,82.2354 +712899,167.86,82.7983 +712900,165.84,83.3916 +712901,170.38,81.7282 +712902,168.49,82.2292 +712903,166.53,82.7571 +712904,164.51,83.3152 +712905,169.06,81.757 +712906,167.16,82.2231 +712907,165.2,82.7159 +712908,163.17,83.2384 +712909,167.73,81.7862 +712910,165.83,82.2172 +712911,163.87,82.6745 +712912,161.84,83.1612 +712913,166.41,81.8157 +712914,164.5,82.2114 +712915,162.54,82.633 +712916,160.51,83.0836 +712917,165.08,81.8455 +712918,163.17,82.2056 +712919,161.21,82.5914 +712920,159.18,83.0058 +712921,163.75,81.8756 +712922,161.84,82.2 +712923,159.88,82.5497 +712924,157.86,82.9277 +712925,162.41,81.9058 +712926,160.51,82.1944 +712927,158.55,82.5079 +712928,156.53,82.8492 +712929,161.08,81.9363 +712930,159.18,82.1889 +712931,157.22,82.4661 +712932,155.21,82.7706 +712933,159.75,81.9669 +712934,157.85,82.1835 +712935,155.9,82.4242 +712936,153.88,82.6918 +712937,158.41,81.9977 +712938,156.52,82.1781 +712939,154.57,82.3822 +712940,152.56,82.6128 +712941,157.07,82.0286 +712942,155.19,82.1728 +712943,153.24,82.3402 +712944,151.24,82.5336 +712945,155.73,82.0595 +712946,153.85,82.1675 +712947,151.92,82.2982 +712948,149.92,82.4544 +712949,154.39,82.0906 +712950,152.52,82.1622 +712951,150.59,82.2561 +712952,148.61,82.3751 +712953,153.05,82.1216 +712954,151.19,82.157 +712955,149.27,82.2141 +712956,147.29,82.2957 +712957,151.71,82.1527 +712958,149.85,82.1517 +712959,147.95,82.172 +712960,145.98,82.2163 +712961,150.36,82.1837 +712962,148.52,82.1464 +712963,146.62,82.1299 +712964,144.67,82.1369 +712965,149.02,82.2147 +712966,147.18,82.1411 +712967,145.3,82.0879 +712968,143.36,82.0576 +712969,147.67,82.2456 +712970,145.85,82.1358 +712971,143.98,82.0459 +712972,142.05,81.9783 +712973,146.32,82.2764 +712974,144.51,82.1305 +712975,142.65,82.0039 +712976,140.74,81.8991 +712977,144.97,82.307 +712978,143.18,82.1251 +712979,141.33,81.962 +712980,139.43,81.8201 +712981,143.62,82.3375 +712982,141.84,82.1197 +712983,140.01,81.9201 +712984,138.13,81.7412 +712985,142.27,82.3677 +712986,140.5,82.1142 +712987,138.69,81.8783 +712988,136.83,81.6625 +712989,140.91,82.3978 +712990,139.17,82.1086 +712991,137.37,81.8366 +712992,135.53,81.5841 +712993,139.56,82.4276 +712994,137.83,82.103 +712995,136.05,81.7949 +712996,134.23,81.5058 +712997,138.2,82.4571 +712998,136.49,82.0972 +712999,134.73,81.7534 +713000,132.93,81.4279 +713001,136.84,82.4863 +713002,135.15,82.0914 +713003,133.42,81.7119 +713004,131.63,81.3503 +713005,135.48,82.5152 +713006,133.81,82.0854 +713007,132.1,81.6706 +713008,130.33,81.273 +713009,134.12,82.5437 +713010,132.47,82.0794 +713011,130.78,81.6294 +713012,129.04,81.1961 +713013,132.76,82.5719 +713014,131.13,82.0732 +713015,129.46,81.5883 +713016,127.75,81.1196 +713017,131.39,82.5996 +713018,129.79,82.0668 +713019,128.15,81.5474 +713020,126.45,81.0435 +713021,130.03,82.6269 +713022,128.45,82.0603 +713023,126.83,81.5066 +713024,125.16,80.9679 +713025,128.66,82.6537 +713026,127.11,82.0537 +713027,125.51,81.466 +713028,123.88,80.8927 +713029,127.3,82.68 +713030,125.77,82.0469 +713031,124.2,81.4255 +713032,122.59,80.8181 +713033,125.93,82.7058 +713034,124.43,82.0399 +713035,122.89,81.3853 +713036,121.3,80.744 +713037,124.56,82.7311 +713038,123.08,82.0328 +713039,121.57,81.3452 +713040,120.01,80.6704 +713041,123.19,82.7558 +713042,121.74,82.0255 +713043,120.26,81.3053 +713044,118.73,80.5975 +713045,121.81,82.78 +713046,120.4,82.0179 +713047,118.94,81.2656 +713048,117.45,80.5252 +713049,120.44,82.8035 +713050,119.06,82.0102 +713051,117.63,81.2262 +713052,116.17,80.4535 +713053,119.07,82.8264 +713054,117.71,82.0022 +713055,116.32,81.1869 +713056,114.88,80.3825 +713057,117.69,82.8486 +713058,116.37,81.9941 +713059,115.01,81.1479 +713060,113.61,80.3122 +713061,116.32,82.8701 +713062,115.02,81.9857 +713063,113.69,81.1092 +713064,112.33,80.2426 +713065,114.94,82.8909 +713066,113.68,81.977 +713067,112.38,81.0706 +713068,111.05,80.1737 +713069,113.56,82.911 +713070,112.33,81.9682 +713071,111.07,81.0324 +713072,109.77,80.1056 +713073,112.18,82.9304 +713074,110.99,81.959 +713075,109.76,80.9944 +713076,108.5,80.0383 +713077,110.8,82.9489 +713078,109.64,81.9496 +713079,108.45,80.9566 +713080,107.22,79.972 +713081,109.42,82.9667 +713082,108.3,81.94 +713083,107.14,80.9192 +713084,105.95,79.906 +713085,108.04,82.9837 +713086,106.95,81.93 +713087,105.83,80.882 +713088,104.68,79.841 +713089,106.65,82.9998 +713090,105.6,81.9198 +713091,104.52,80.8451 +713092,103.41,79.778 +713093,105.27,83.0151 +713094,104.26,81.9093 +713095,103.21,80.8085 +713096,102.13,79.715 +713097,103.88,83.0295 +713098,102.91,81.8985 +713099,101.9,80.7723 +713100,100.86,79.652 +713101,102.5,83.043 +713102,101.56,81.8874 +713103,100.6,80.7363 +713104,99.595,79.591 +713105,101.11,83.0556 +713106,100.22,81.876 +713107,99.288,80.7007 +713108,98.327,79.531 +713109,99.725,83.0672 +713110,98.868,81.8643 +713111,97.98,80.6653 +713112,97.059,79.472 +713113,98.337,83.0779 +713114,97.52,81.8523 +713115,96.672,80.6304 +713116,95.793,79.414 +713117,96.948,83.0877 +713118,96.172,81.8399 +713119,95.365,80.5957 +713120,94.526,79.357 +713121,95.559,83.0964 +713122,94.824,81.8272 +713123,94.058,80.5614 +713124,93.261,79.301 +713125,94.169,83.1042 +713126,93.475,81.8142 +713127,92.751,80.5274 +713128,91.996,79.246 +713129,92.778,83.1109 +713130,92.127,81.8009 +713131,91.445,80.4938 +713132,90.732,79.192 +713133,91.387,83.1167 +713134,90.778,81.7871 +713135,90.138,80.4606 +713136,89.468,79.139 +713137,89.995,83.1213 +713138,89.429,81.7731 +713139,88.832,80.4277 +713140,88.205,79.087 +713141,88.603,83.1249 +713142,88.08,81.7587 +713143,87.526,80.3952 +713144,86.942,79.036 +713145,87.211,83.1275 +713146,86.731,81.7439 +713147,86.221,80.3631 +713148,85.68,78.987 +713149,85.817,83.1289 +713150,85.381,81.7287 +713151,84.915,80.3313 +713152,84.418,78.938 +713153,84.424,83.1293 +713154,84.032,81.7132 +713155,83.61,80.3 +713156,83.157,78.891 +713157,83.03,83.1285 +713158,82.682,81.6973 +713159,82.304,80.269 +713160,81.896,78.845 +713161,81.636,83.1267 +713162,81.333,81.6811 +713163,80.999,80.2384 +713164,80.635,78.8 +713165,80.241,83.1237 +713166,79.983,81.6644 +713167,79.694,80.2082 +713168,79.375,78.756 +713169,78.846,83.1195 +713170,78.633,81.6474 +713171,78.389,80.1784 +713172,78.115,78.714 +713173,77.451,83.1142 +713174,77.284,81.63 +713175,77.085,80.149 +713176,76.855,78.673 +713177,76.056,83.1077 +713178,75.934,81.6122 +713179,75.78,80.12 +713180,75.595,78.633 +713181,74.661,83.1001 +713182,74.584,81.594 +713183,74.475,80.0914 +713184,74.336,78.594 +713185,73.265,83.0913 +713186,73.234,81.5754 +713187,73.171,80.0633 +713188,73.076,78.556 +713189,71.869,83.0813 +713190,71.884,81.5564 +713191,71.866,80.0355 +713192,71.817,78.52 +713193,70.473,83.0701 +713194,70.534,81.537 +713195,70.562,80.0081 +713196,70.558,78.485 +713197,69.077,83.0577 +713198,69.184,81.5172 +713199,69.258,79.981 +713200,69.299,78.451 +713201,67.682,83.0441 +713202,67.834,81.497 +713203,67.953,79.955 +713204,68.04,78.418 +713205,66.286,83.0293 +713206,66.485,81.4764 +713207,66.649,79.929 +713208,66.78,78.387 +713209,64.89,83.0132 +713210,65.135,81.4554 +713211,65.345,79.903 +713212,65.521,78.357 +713213,63.494,82.996 +713214,63.785,81.434 +713215,64.04,79.878 +713216,64.262,78.328 +713217,62.099,82.9775 +713218,62.436,81.4122 +713219,62.736,79.853 +713220,63.002,78.3 +713221,60.704,82.9578 +713222,61.086,81.3899 +713223,61.432,79.828 +713224,61.742,78.274 +713225,59.309,82.9369 +713226,59.737,81.3673 +713227,60.127,79.804 +713228,60.482,78.249 +713229,57.914,82.9148 +713230,58.387,81.3442 +713231,58.823,79.781 +713232,59.222,78.225 +713233,56.519,82.8914 +713234,57.038,81.3208 +713235,57.518,79.758 +713236,57.962,78.203 +713237,55.125,82.8668 +713238,55.689,81.2969 +713239,56.213,79.735 +713240,56.701,78.181 +713241,53.731,82.841 +713242,54.34,81.2726 +713243,54.909,79.713 +713244,55.44,78.161 +713245,52.337,82.814 +713246,52.991,81.248 +713247,53.604,79.691 +713248,54.179,78.143 +713249,50.944,82.7857 +713250,51.643,81.2229 +713251,52.299,79.669 +713252,52.917,78.125 +713253,49.552,82.7562 +713254,50.294,81.1974 +713255,50.994,79.648 +713256,51.654,78.109 +713257,48.16,82.7255 +713258,48.946,81.1715 +713259,49.689,79.628 +713260,50.392,78.094 +713261,46.768,82.6936 +713262,47.598,81.1452 +713263,48.383,79.607 +713264,49.128,78.08 +713265,45.377,82.6605 +713266,46.25,81.1184 +713267,47.078,79.588 +713268,47.864,78.068 +713269,43.986,82.6261 +713270,44.903,81.0913 +713271,45.772,79.568 +713272,46.6,78.057 +713273,42.597,82.5906 +713274,43.555,81.0638 +713275,44.466,79.549 +713276,45.335,78.047 +713277,41.208,82.5539 +713278,42.208,81.0359 +713279,43.16,79.531 +713280,44.069,78.038 +713281,39.819,82.5159 +713282,40.861,81.0076 +713283,41.854,79.513 +713284,42.803,78.03 +713285,38.431,82.4769 +713286,39.515,80.979 +713287,40.548,79.495 +713288,41.536,78.024 +713289,37.044,82.4366 +713290,38.168,80.9499 +713291,39.241,79.477 +713292,40.268,78.019 +713293,35.658,82.3952 +713294,36.822,80.9204 +713295,37.934,79.46 +713296,39,78.015 +713297,34.273,82.3526 +713298,35.477,80.8906 +713299,36.627,79.444 +713300,37.73,78.012 +713301,32.889,82.3089 +713302,34.131,80.8604 +713303,35.319,79.428 +713304,36.46,78.01 +713305,31.505,82.264 +713306,32.786,80.8298 +713307,34.012,79.412 +713308,35.189,78.009 +713309,30.122,82.2181 +713310,31.441,80.7988 +713311,32.704,79.396 +713312,33.917,78.01 +713313,28.741,82.171 +713314,30.097,80.7675 +713315,31.396,79.381 +713316,32.645,78.011 +713317,27.36,82.1228 +713318,28.753,80.7359 +713319,30.087,79.367 +713320,31.371,78.014 +713321,25.981,82.0736 +713322,27.409,80.7038 +713323,28.778,79.352 +713324,30.097,78.018 +713325,24.602,82.0233 +713326,26.066,80.6714 +713327,27.469,79.338 +713328,28.821,78.023 +713329,23.224,81.9719 +713330,24.723,80.6387 +713331,26.16,79.325 +713332,27.544,78.029 +713333,21.848,81.9195 +713334,23.38,80.6056 +713335,24.85,79.311 +713336,26.267,78.036 +713337,20.473,81.866 +713338,22.038,80.5722 +713339,23.54,79.299 +713340,24.988,78.044 +713341,19.099,81.8116 +713342,20.696,80.5385 +713343,22.23,79.286 +713344,23.708,78.053 +713345,17.726,81.7561 +713346,19.355,80.5044 +713347,20.919,79.274 +713348,22.428,78.062 +713349,16.354,81.6997 +713350,18.014,80.4701 +713351,19.608,79.262 +713352,21.146,78.073 +713353,14.984,81.6423 +713354,16.673,80.4354 +713355,18.296,79.25 +713356,19.863,78.085 +713357,13.614,81.584 +713358,15.333,80.4004 +713359,16.985,79.239 +713360,18.578,78.098 +713361,12.246,81.5248 +713362,13.994,80.3651 +713363,15.672,79.228 +713364,17.293,78.112 +713365,10.88,81.4646 +713366,12.654,80.3295 +713367,14.36,79.217 +713368,16.006,78.126 +713369,9.5145,81.4036 +713370,11.316,80.2936 +713371,13.047,79.207 +713372,14.718,78.141 +713373,8.1506,81.3417 +713374,9.9773,80.2575 +713375,11.733,79.197 +713376,13.429,78.158 +713377,6.788,81.279 +713378,8.6395,80.221 +713379,10.42,79.187 +713380,12.139,78.175 +713381,5.4269,81.2154 +713382,7.3021,80.1844 +713383,9.1054,79.177 +713384,10.847,78.193 +713385,4.0672,81.1511 +713386,5.9652,80.1474 +713387,7.7907,79.168 +713388,9.5541,78.211 +713389,2.7089,81.0859 +713390,4.6289,80.1102 +713391,6.4756,79.159 +713392,8.2598,78.23 +713393,1.3521,81.0201 +713394,3.293,80.0728 +713395,5.1601,79.15 +713396,6.9642,78.251 +713397,360,80.9534 +713398,1.9576,80.0351 +713399,3.8442,79.142 +713400,5.6672,78.271 +713401,358.64,80.8861 +713402,0.62273,79.997 +713403,2.5278,79.134 +713404,4.3688,78.293 +713405,357.29,80.8181 +713406,359.29,79.959 +713407,1.211,79.125 +713408,3.0691,78.315 +713409,355.94,80.7494 +713410,357.95,79.921 +713411,359.89,79.118 +713412,1.7679,78.338 +713413,354.59,80.6801 +713414,356.62,79.882 +713415,358.58,79.11 +713416,0.46539,78.361 +713417,353.24,80.6101 +713418,355.29,79.843 +713419,357.26,79.103 +713420,359.16,78.385 +713421,351.9,80.5396 +713422,353.96,79.805 +713423,355.94,79.095 +713424,357.86,78.409 +713425,350.55,80.4685 +713426,352.62,79.765 +713427,354.62,79.088 +713428,356.55,78.434 +713429,349.21,80.3969 +713430,351.29,79.726 +713431,353.3,79.081 +713432,355.24,78.46 +713433,347.87,80.3247 +713434,349.96,79.687 +713435,351.98,79.075 +713436,353.93,78.486 +713437,346.53,80.2521 +713438,348.63,79.647 +713439,350.66,79.068 +713440,352.62,78.512 +713441,345.19,80.179 +713442,347.3,79.607 +713443,349.34,79.062 +713444,351.31,78.539 +713445,343.85,80.1055 +713446,345.97,79.568 +713447,348.02,79.055 +713448,349.99,78.566 +713449,342.52,80.0316 +713450,344.65,79.528 +713451,346.7,79.049 +713452,348.68,78.594 +713453,341.18,79.957 +713454,343.32,79.487 +713455,345.37,79.043 +713456,347.36,78.622 +713457,339.85,79.883 +713458,341.99,79.447 +713459,344.05,79.037 +713460,346.04,78.65 +713461,338.52,79.808 +713462,340.66,79.407 +713463,342.73,79.032 +713464,344.72,78.679 +713465,337.19,79.732 +713466,339.34,79.367 +713467,341.4,79.026 +713468,343.4,78.707 +713469,335.87,79.657 +713470,338.01,79.326 +713471,340.08,79.02 +713472,342.08,78.736 +713473,334.54,79.581 +713474,336.69,79.286 +713475,338.75,79.015 +713476,340.75,78.766 +713477,333.22,79.505 +713478,335.36,79.245 +713479,337.43,79.009 +713480,339.43,78.795 +713481,331.9,79.429 +713482,334.04,79.204 +713483,336.1,79.004 +713484,338.1,78.825 +713485,330.58,79.353 +713486,332.71,79.164 +713487,334.78,78.998 +713488,336.77,78.854 +713489,329.26,79.276 +713490,331.39,79.123 +713491,333.45,78.993 +713492,335.44,78.884 +713493,327.94,79.2 +713494,330.07,79.082 +713495,332.12,78.988 +713496,334.11,78.914 +713497,326.63,79.123 +713498,328.75,79.041 +713499,330.79,78.983 +713500,332.77,78.944 +713501,325.31,79.046 +713502,327.43,79.001 +713503,329.46,78.977 +713504,331.44,78.974 +713505,324,78.97 +713506,326.11,78.96 +713507,328.14,78.972 +713508,330.1,79.004 +713509,322.69,78.893 +713510,324.78,78.919 +713511,326.81,78.967 +713512,328.76,79.033 +713513,321.38,78.817 +713514,323.47,78.878 +713515,325.48,78.961 +713516,327.42,79.063 +713517,320.07,78.74 +713518,322.15,78.838 +713519,324.15,78.956 +713520,326.08,79.093 +713521,318.77,78.664 +713522,320.83,78.797 +713523,322.82,78.951 +713524,324.74,79.122 +713525,317.47,78.588 +713526,319.51,78.756 +713527,321.48,78.945 +713528,323.39,79.152 +713529,316.16,78.511 +713530,318.19,78.716 +713531,320.15,78.94 +713532,322.05,79.181 +713533,314.86,78.436 +713534,316.88,78.675 +713535,318.82,78.935 +713536,320.7,79.21 +713537,313.56,78.36 +713538,315.56,78.635 +713539,317.49,78.929 +713540,319.35,79.239 +713541,312.27,78.285 +713542,314.24,78.595 +713543,316.15,78.923 +713544,318,79.267 +713545,310.97,78.209 +713546,312.93,78.555 +713547,314.82,78.918 +713548,316.65,79.295 +713549,309.67,78.135 +713550,311.61,78.515 +713551,313.49,78.912 +713552,315.3,79.323 +713553,308.38,78.06 +713554,310.3,78.475 +713555,312.15,78.906 +713556,313.94,79.351 +713557,307.09,77.986 +713558,308.99,78.435 +713559,310.82,78.9 +713560,312.59,79.378 +713561,305.8,77.912 +713562,307.67,78.395 +713563,309.48,78.893 +713564,311.23,79.405 +713565,304.51,77.839 +713566,306.36,78.356 +713567,308.14,78.887 +713568,309.87,79.431 +713569,303.22,77.766 +713570,305.05,78.316 +713571,306.81,78.881 +713572,308.51,79.457 +713573,301.94,77.694 +713574,303.73,78.277 +713575,305.47,78.874 +713576,307.15,79.483 +713577,300.65,77.622 +713578,302.42,78.238 +713579,304.13,78.867 +713580,305.79,79.507 +713581,299.37,77.551 +713582,301.11,78.199 +713583,302.8,78.86 +713584,304.43,79.532 +713585,298.09,77.48 +713586,299.8,78.16 +713587,301.46,78.853 +713588,303.06,79.556 +713589,296.81,77.41 +713590,298.49,78.122 +713591,300.12,78.846 +713592,301.7,79.579 +713593,295.53,77.34 +713594,297.18,78.084 +713595,298.78,78.838 +713596,300.33,79.602 +713597,294.25,77.272 +713598,295.87,78.046 +713599,297.44,78.831 +713600,298.96,79.624 +713601,292.97,77.203 +713602,294.57,78.008 +713603,296.1,78.823 +713604,297.59,79.645 +713605,291.7,77.136 +713606,293.26,77.97 +713607,294.76,78.815 +713608,296.22,79.666 +713609,290.42,77.069 +713610,291.95,77.933 +713611,293.42,78.806 +713612,294.85,79.686 +713613,289.15,77.003 +713614,290.64,77.896 +713615,292.08,78.798 +713616,293.47,79.706 +713617,287.88,76.937 +713618,289.34,77.859 +713619,290.74,78.789 +713620,292.1,79.724 +713621,286.61,76.873 +713622,288.03,77.822 +713623,289.4,78.78 +713624,290.72,79.742 +713625,285.34,76.809 +713626,286.72,77.786 +713627,288.06,78.77 +713628,289.35,79.76 +713629,284.07,76.746 +713630,285.42,77.75 +713631,286.72,78.761 +713632,287.97,79.776 +713633,282.8,76.684 +713634,284.11,77.714 +713635,285.37,78.751 +713636,286.59,79.792 +713637,281.54,76.623 +713638,282.81,77.679 +713639,284.03,78.741 +713640,285.21,79.806 +713641,280.27,76.562 +713642,281.5,77.644 +713643,282.69,78.73 +713644,283.83,79.82 +713645,279.01,76.503 +713646,280.2,77.609 +713647,281.34,78.72 +713648,282.45,79.833 +713649,277.74,76.444 +713650,278.89,77.574 +713651,280,78.709 +713652,281.07,79.845 +713653,276.48,76.387 +713654,277.59,77.54 +713655,278.66,78.697 +713656,279.68,79.857 +713657,275.22,76.33 +713658,276.29,77.506 +713659,277.31,78.686 +713660,278.3,79.867 +713661,273.96,76.275 +713662,274.98,77.472 +713663,275.97,78.674 +713664,276.91,79.876 +713665,272.7,76.22 +713666,273.68,77.439 +713667,274.62,78.661 +713668,275.53,79.885 +713669,271.44,76.166 +713670,272.38,77.406 +713671,273.28,78.649 +713672,274.14,79.892 +713673,270.18,76.114 +713674,271.07,77.374 +713675,271.93,78.636 +713676,272.76,79.899 +713677,268.92,76.062 +713678,269.77,77.341 +713679,270.59,78.623 +713680,271.37,79.904 +713681,267.66,76.012 +713682,268.47,77.31 +713683,269.24,78.609 +713684,269.98,79.909 +713685,266.4,75.962 +713686,267.17,77.278 +713687,267.9,78.595 +713688,268.59,79.912 +713689,265.15,75.914 +713690,265.87,77.247 +713691,266.55,78.581 +713692,267.2,79.915 +713693,263.89,75.867 +713694,264.57,77.216 +713695,265.21,78.566 +713696,265.81,79.916 +713697,262.64,75.821 +713698,263.27,77.186 +713699,263.86,78.552 +713700,264.42,79.916 +713701,261.38,75.776 +713702,261.97,77.156 +713703,262.51,78.536 +713704,263.03,79.916 +713705,260.13,75.732 +713706,260.66,77.126 +713707,261.17,78.521 +713708,261.64,79.914 +713709,258.87,75.69 +713710,259.36,77.097 +713711,259.82,78.504 +713712,260.24,79.911 +713713,257.62,75.648 +713714,258.06,77.068 +713715,258.47,78.488 +713716,258.85,79.907 +713717,256.37,75.608 +713718,256.76,77.04 +713719,257.13,78.471 +713720,257.46,79.902 +713721,255.11,75.569 +713722,255.46,77.011 +713723,255.78,78.454 +713724,256.06,79.895 +713725,253.86,75.531 +713726,254.16,76.984 +713727,254.43,78.437 +713728,254.67,79.888 +713729,252.61,75.495 +713730,252.86,76.957 +713731,253.09,78.419 +713732,253.28,79.879 +713733,251.36,75.459 +713734,251.56,76.93 +713735,251.74,78.4 +713736,251.88,79.87 +713737,250.11,75.425 +713738,250.26,76.903 +713739,250.39,78.382 +713740,250.49,79.859 +713741,248.85,75.392 +713742,248.97,76.877 +713743,249.05,78.363 +713744,249.09,79.847 +713745,247.6,75.36 +713746,247.67,76.851 +713747,247.7,78.343 +713748,247.7,79.834 +713749,246.35,75.33 +713750,246.37,76.826 +713751,246.35,78.323 +713752,246.3,79.819 +713753,245.1,75.3 +713754,245.07,76.801 +713755,245,78.303 +713756,244.91,79.804 +713757,243.85,75.272 +713758,243.77,76.777 +713759,243.66,78.282 +713760,243.51,79.787 +713761,242.59,75.245 +713762,242.47,76.753 +713763,242.31,78.261 +713764,242.12,79.769 +713765,241.34,75.22 +713766,241.17,76.729 +713767,240.96,78.24 +713768,240.72,79.75 +713769,240.09,75.195 +713770,239.87,76.706 +713771,239.62,78.218 +713772,239.33,79.73 +713773,238.84,75.172 +713774,238.57,76.683 +713775,238.27,78.196 +713776,237.93,79.708 +713777,237.59,75.15 +713778,237.27,76.661 +713779,236.92,78.173 +713780,236.54,79.685 +713781,236.33,75.13 +713782,235.97,76.639 +713783,235.58,78.15 +713784,235.14,79.662 +713785,235.08,75.11 +713786,234.67,76.618 +713787,234.23,78.127 +713788,233.75,79.637 +713789,233.83,75.092 +713790,233.37,76.596 +713791,232.88,78.103 +713792,232.36,79.61 +713793,232.57,75.075 +713794,232.07,76.576 +713795,231.54,78.079 +713796,230.96,79.583 +713797,231.32,75.06 +713798,230.77,76.555 +713799,230.19,78.054 +713800,229.57,79.554 +713801,230.06,75.045 +713802,229.47,76.536 +713803,228.84,78.029 +713804,228.18,79.525 +713805,228.81,75.032 +713806,228.17,76.516 +713807,227.5,78.004 +713808,226.78,79.494 +713809,227.55,75.02 +713810,226.87,76.497 +713811,226.15,77.978 +713812,225.39,79.461 +713813,226.3,75.009 +713814,225.57,76.478 +713815,224.81,77.952 +713816,224,79.428 +713817,225.04,74.999 +713818,224.27,76.46 +713819,223.46,77.925 +713820,222.61,79.394 +713821,223.79,74.991 +713822,222.97,76.442 +713823,222.12,77.898 +713824,221.22,79.358 +713825,222.53,74.984 +713826,221.67,76.425 +713827,220.77,77.871 +713828,219.83,79.321 +713829,221.27,74.978 +713830,220.37,76.408 +713831,219.43,77.843 +713832,218.44,79.283 +713833,220.01,74.973 +713834,219.07,76.391 +713835,218.08,77.815 +713836,217.05,79.244 +713837,218.75,74.969 +713838,217.76,76.375 +713839,216.74,77.787 +713840,215.67,79.204 +713841,217.49,74.966 +713842,216.46,76.359 +713843,215.39,77.758 +713844,214.28,79.163 +713845,216.23,74.965 +713846,215.16,76.343 +713847,214.05,77.729 +713848,212.89,79.121 +713849,214.97,74.964 +713850,213.86,76.328 +713851,212.71,77.699 +713852,211.51,79.077 +713853,213.7,74.965 +713854,212.56,76.313 +713855,211.36,77.669 +713856,210.12,79.033 +713857,212.44,74.967 +713858,211.25,76.299 +713859,210.02,77.639 +713860,208.74,78.987 +713861,211.18,74.97 +713862,209.95,76.285 +713863,208.68,77.608 +713864,207.36,78.94 +713865,209.91,74.974 +713866,208.65,76.271 +713867,207.34,77.577 +713868,205.97,78.893 +713869,208.64,74.979 +713870,207.34,76.258 +713871,205.99,77.546 +713872,204.59,78.844 +713873,207.38,74.985 +713874,206.04,76.245 +713875,204.65,77.514 +713876,203.21,78.794 +713877,206.11,74.992 +713878,204.73,76.232 +713879,203.31,77.482 +713880,201.83,78.743 +713881,204.84,75 +713882,203.43,76.22 +713883,201.97,77.45 +713884,200.46,78.692 +713885,203.57,75.009 +713886,202.13,76.208 +713887,200.63,77.418 +713888,199.08,78.639 +713889,202.3,75.019 +713890,200.82,76.196 +713891,199.29,77.385 +713892,197.7,78.585 +713893,201.02,75.03 +713894,199.51,76.185 +713895,197.95,77.351 +713896,196.33,78.53 +713897,199.75,75.042 +713898,198.21,76.174 +713899,196.61,77.318 +713900,194.96,78.475 +713901,198.47,75.055 +713902,196.9,76.163 +713903,195.27,77.284 +713904,193.58,78.418 +713905,197.2,75.069 +713906,195.59,76.153 +713907,193.94,77.25 +713908,192.21,78.361 +713909,195.92,75.083 +713910,194.29,76.142 +713911,192.6,77.215 +713912,190.84,78.303 +713913,194.64,75.098 +713914,192.98,76.133 +713915,191.26,77.181 +713916,189.48,78.244 +713917,193.36,75.115 +713918,191.67,76.123 +713919,189.92,77.146 +713920,188.11,78.184 +713921,192.08,75.132 +713922,190.36,76.114 +713923,188.59,77.111 +713924,186.74,78.123 +713925,190.8,75.15 +713926,189.05,76.105 +713927,187.25,77.075 +713928,185.38,78.061 +713929,189.51,75.168 +713930,187.75,76.096 +713931,185.92,77.039 +713932,184.02,77.999 +713933,188.23,75.187 +713934,186.44,76.088 +713935,184.58,77.003 +713936,182.65,77.936 +713937,186.94,75.207 +713938,185.13,76.079 +713939,183.25,76.967 +713940,181.29,77.872 +713941,185.65,75.228 +713942,183.82,76.071 +713943,181.91,76.931 +713944,179.94,77.807 +713945,184.36,75.25 +713946,182.5,76.064 +713947,180.58,76.894 +713948,178.58,77.742 +713949,183.07,75.272 +713950,181.19,76.056 +713951,179.25,76.857 +713952,177.22,77.676 +713953,181.78,75.294 +713954,179.88,76.049 +713955,177.91,76.82 +713956,175.87,77.609 +713957,180.49,75.317 +713958,178.57,76.042 +713959,176.58,76.783 +713960,174.52,77.542 +713961,179.19,75.341 +713962,177.26,76.035 +713963,175.25,76.745 +713964,173.17,77.474 +713965,177.89,75.366 +713966,175.94,76.028 +713967,173.92,76.708 +713968,171.82,77.406 +713969,176.6,75.39 +713970,174.63,76.021 +713971,172.59,76.67 +713972,170.47,77.337 +713973,175.3,75.416 +713974,173.31,76.015 +713975,171.26,76.632 +713976,169.12,77.268 +713977,174,75.442 +713978,172,76.009 +713979,169.93,76.593 +713980,167.78,77.198 +713981,172.69,75.468 +713982,170.68,76.003 +713983,168.6,76.555 +713984,166.44,77.127 +713985,171.39,75.495 +713986,169.37,75.997 +713987,167.27,76.517 +713988,165.09,77.056 +713989,170.08,75.522 +713990,168.05,75.991 +713991,165.95,76.478 +713992,163.76,76.985 +713993,168.78,75.549 +713994,166.73,75.985 +713995,164.62,76.439 +713996,162.42,76.913 +713997,167.47,75.577 +713998,165.42,75.98 +713999,163.29,76.401 +714000,161.08,76.841 +714001,166.16,75.605 +714002,164.1,75.974 +714003,161.97,76.362 +714004,159.75,76.769 +714005,164.85,75.633 +714006,162.78,75.969 +714007,160.64,76.323 +714008,158.41,76.696 +714009,163.53,75.662 +714010,161.46,75.964 +714011,159.32,76.283 +714012,157.08,76.623 +714013,162.22,75.691 +714014,160.14,75.959 +714015,157.99,76.244 +714016,155.75,76.55 +714017,160.9,75.72 +714018,158.82,75.954 +714019,156.67,76.205 +714020,154.43,76.476 +714021,159.58,75.749 +714022,157.5,75.949 +714023,155.35,76.166 +714024,153.1,76.403 +714025,158.26,75.778 +714026,156.18,75.944 +714027,154.02,76.126 +714028,151.78,76.329 +714029,156.94,75.808 +714030,154.86,75.939 +714031,152.7,76.087 +714032,150.45,76.255 +714033,155.62,75.838 +714034,153.54,75.934 +714035,151.38,76.047 +714036,149.13,76.181 +714037,154.29,75.867 +714038,152.22,75.929 +714039,150.06,76.008 +714040,147.81,76.106 +714041,152.97,75.897 +714042,150.89,75.924 +714043,148.74,75.969 +714044,146.5,76.032 +714045,151.64,75.926 +714046,149.57,75.919 +714047,147.42,75.929 +714048,145.18,75.958 +714049,150.31,75.956 +714050,148.24,75.915 +714051,146.1,75.89 +714052,143.87,75.883 +714053,148.98,75.986 +714054,146.92,75.91 +714055,144.78,75.85 +714056,142.55,75.809 +714057,147.65,76.015 +714058,145.59,75.905 +714059,143.46,75.811 +714060,141.24,75.735 +714061,146.31,76.045 +714062,144.27,75.9 +714063,142.15,75.771 +714064,139.94,75.66 +714065,144.98,76.074 +714066,142.94,75.895 +714067,140.83,75.732 +714068,138.63,75.586 +714069,143.64,76.103 +714070,141.62,75.89 +714071,139.51,75.693 +714072,137.32,75.512 +714073,142.3,76.132 +714074,140.29,75.885 +714075,138.2,75.653 +714076,136.02,75.438 +714077,140.96,76.161 +714078,138.96,75.88 +714079,136.88,75.614 +714080,134.72,75.365 +714081,139.62,76.189 +714082,137.63,75.875 +714083,135.57,75.575 +714084,133.42,75.291 +714085,138.28,76.218 +714086,136.3,75.87 +714087,134.25,75.536 +714088,132.12,75.218 +714089,136.93,76.245 +714090,134.98,75.865 +714091,132.94,75.497 +714092,130.82,75.145 +714093,135.59,76.273 +714094,133.65,75.859 +714095,131.63,75.458 +714096,129.53,75.072 +714097,134.24,76.3 +714098,132.32,75.854 +714099,130.32,75.42 +714100,128.23,75 +714101,132.89,76.327 +714102,130.98,75.848 +714103,129,75.381 +714104,126.94,74.928 +714105,131.54,76.354 +714106,129.65,75.842 +714107,127.69,75.342 +714108,125.65,74.856 +714109,130.19,76.38 +714110,128.32,75.837 +714111,126.38,75.304 +714112,124.36,74.785 +714113,128.84,76.406 +714114,126.99,75.831 +714115,125.07,75.266 +714116,123.07,74.714 +714117,127.48,76.431 +714118,125.66,75.824 +714119,123.76,75.228 +714120,121.79,74.644 +714121,126.12,76.455 +714122,124.32,75.818 +714123,122.45,75.19 +714124,120.5,74.574 +714125,124.77,76.48 +714126,122.99,75.812 +714127,121.14,75.153 +714128,119.22,74.505 +714129,123.41,76.503 +714130,121.66,75.805 +714131,119.84,75.115 +714132,117.94,74.436 +714133,122.05,76.526 +714134,120.32,75.798 +714135,118.53,75.078 +714136,116.66,74.368 +714137,120.69,76.549 +714138,118.99,75.791 +714139,117.22,75.041 +714140,115.38,74.3 +714141,119.32,76.571 +714142,117.65,75.784 +714143,115.91,75.004 +714144,114.1,74.234 +714145,117.96,76.592 +714146,116.32,75.776 +714147,114.61,74.967 +714148,112.83,74.167 +714149,116.59,76.613 +714150,114.98,75.769 +714151,113.3,74.931 +714152,111.55,74.102 +714153,115.23,76.632 +714154,113.64,75.761 +714155,112,74.895 +714156,110.28,74.037 +714157,113.86,76.652 +714158,112.31,75.753 +714159,110.69,74.859 +714160,109.01,73.972 +714161,112.49,76.67 +714162,110.97,75.744 +714163,109.39,74.823 +714164,107.74,73.909 +714165,111.12,76.688 +714166,109.63,75.736 +714167,108.08,74.788 +714168,106.47,73.846 +714169,109.75,76.705 +714170,108.29,75.727 +714171,106.78,74.752 +714172,105.2,73.784 +714173,108.37,76.721 +714174,106.95,75.718 +714175,105.48,74.718 +714176,103.94,73.723 +714177,107,76.736 +714178,105.62,75.708 +714179,104.17,74.683 +714180,102.67,73.662 +714181,105.62,76.751 +714182,104.28,75.699 +714183,102.87,74.649 +714184,101.41,73.603 +714185,104.25,76.765 +714186,102.94,75.689 +714187,101.57,74.615 +714188,100.14,73.544 +714189,102.87,76.778 +714190,101.6,75.678 +714191,100.27,74.581 +714192,98.882,73.486 +714193,101.49,76.789 +714194,100.26,75.668 +714195,98.968,74.547 +714196,97.621,73.43 +714197,100.11,76.801 +714198,98.917,75.657 +714199,97.667,74.514 +714200,96.361,73.374 +714201,98.733,76.811 +714202,97.576,75.646 +714203,96.367,74.481 +714204,95.102,73.319 +714205,97.352,76.82 +714206,96.235,75.635 +714207,95.066,74.449 +714208,93.844,73.265 +714209,95.97,76.828 +714210,94.893,75.623 +714211,93.767,74.417 +714212,92.587,73.212 +714213,94.587,76.836 +714214,93.551,75.611 +714215,92.467,74.385 +714216,91.331,73.16 +714217,93.203,76.842 +714218,92.209,75.598 +714219,91.168,74.353 +714220,90.076,73.109 +714221,91.818,76.847 +714222,90.867,75.586 +714223,89.869,74.322 +714224,88.822,73.059 +714225,90.433,76.852 +714226,89.525,75.573 +714227,88.57,74.291 +714228,87.568,73.01 +714229,89.047,76.855 +714230,88.182,75.559 +714231,87.272,74.261 +714232,86.315,72.962 +714233,87.66,76.857 +714234,86.839,75.546 +714235,85.974,74.231 +714236,85.063,72.915 +714237,86.272,76.859 +714238,85.496,75.531 +714239,84.676,74.201 +714240,83.812,72.869 +714241,84.884,76.859 +714242,84.152,75.517 +714243,83.379,74.172 +714244,82.561,72.825 +714245,83.495,76.858 +714246,82.809,75.502 +714247,82.081,74.143 +714248,81.311,72.781 +714249,82.105,76.856 +714250,81.465,75.487 +714251,80.784,74.114 +714252,80.061,72.739 +714253,80.715,76.853 +714254,80.121,75.472 +714255,79.487,74.086 +714256,78.812,72.697 +714257,79.325,76.849 +714258,78.777,75.456 +714259,78.19,74.058 +714260,77.564,72.657 +714261,77.933,76.844 +714262,77.433,75.439 +714263,76.894,74.03 +714264,76.316,72.618 +714265,76.542,76.838 +714266,76.088,75.423 +714267,75.597,74.003 +714268,75.068,72.581 +714269,75.15,76.83 +714270,74.744,75.406 +714271,74.301,73.977 +714272,73.821,72.544 +714273,73.757,76.822 +714274,73.399,75.388 +714275,73.005,73.95 +714276,72.574,72.509 +714277,72.364,76.812 +714278,72.054,75.371 +714279,71.709,73.924 +714280,71.327,72.474 +714281,70.971,76.801 +714282,70.71,75.353 +714283,70.413,73.899 +714284,70.081,72.441 +714285,69.578,76.789 +714286,69.365,75.334 +714287,69.117,73.874 +714288,68.835,72.41 +714289,68.184,76.776 +714290,68.02,75.315 +714291,67.822,73.849 +714292,67.589,72.379 +714293,66.79,76.762 +714294,66.675,75.296 +714295,66.526,73.825 +714296,66.343,72.35 +714297,65.396,76.746 +714298,65.33,75.276 +714299,65.231,73.801 +714300,65.098,72.321 +714301,64.001,76.729 +714302,63.985,75.256 +714303,63.935,73.777 +714304,63.852,72.294 +714305,62.607,76.712 +714306,62.64,75.236 +714307,62.64,73.754 +714308,62.607,72.269 +714309,61.212,76.693 +714310,61.295,75.215 +714311,61.344,73.731 +714312,61.361,72.244 +714313,59.818,76.673 +714314,59.949,75.193 +714315,60.049,73.709 +714316,60.116,72.221 +714317,58.423,76.651 +714318,58.604,75.172 +714319,58.753,73.687 +714320,58.87,72.199 +714321,57.029,76.629 +714322,57.259,75.15 +714323,57.458,73.666 +714324,57.625,72.178 +714325,55.634,76.605 +714326,55.914,75.127 +714327,56.162,73.644 +714328,56.379,72.158 +714329,54.24,76.58 +714330,54.57,75.104 +714331,54.867,73.624 +714332,55.133,72.14 +714333,52.846,76.554 +714334,53.225,75.081 +714335,53.571,73.603 +714336,53.887,72.123 +714337,51.452,76.527 +714338,51.88,75.058 +714339,52.276,73.584 +714340,52.64,72.107 +714341,50.058,76.499 +714342,50.535,75.034 +714343,50.98,73.564 +714344,51.393,72.092 +714345,48.664,76.469 +714346,49.191,75.009 +714347,49.684,73.545 +714348,50.146,72.078 +714349,47.271,76.439 +714350,47.846,74.984 +714351,48.389,73.526 +714352,48.899,72.066 +714353,45.878,76.407 +714354,46.502,74.959 +714355,47.093,73.508 +714356,47.651,72.055 +714357,44.485,76.374 +714358,45.158,74.934 +714359,45.796,73.49 +714360,46.402,72.045 +714361,43.093,76.34 +714362,43.814,74.908 +714363,44.5,73.473 +714364,45.153,72.036 +714365,41.701,76.305 +714366,42.47,74.881 +714367,43.204,73.456 +714368,43.904,72.029 +714369,40.31,76.268 +714370,41.127,74.855 +714371,41.907,73.439 +714372,42.654,72.022 +714373,38.919,76.231 +714374,39.783,74.828 +714375,40.611,73.423 +714376,41.403,72.017 +714377,37.529,76.192 +714378,38.44,74.8 +714379,39.314,73.407 +714380,40.152,72.013 +714381,36.139,76.153 +714382,37.097,74.772 +714383,38.017,73.391 +714384,38.9,72.01 +714385,34.75,76.112 +714386,35.755,74.744 +714387,36.719,73.376 +714388,37.648,72.008 +714389,33.362,76.07 +714390,34.412,74.716 +714391,35.422,73.361 +714392,36.395,72.007 +714393,31.974,76.027 +714394,33.07,74.687 +714395,34.124,73.347 +714396,35.141,72.007 +714397,30.588,75.983 +714398,31.728,74.657 +714399,32.826,73.332 +714400,33.886,72.009 +714401,29.201,75.938 +714402,30.386,74.628 +714403,31.528,73.319 +714404,32.63,72.011 +714405,27.816,75.892 +714406,29.045,74.598 +714407,30.229,73.305 +714408,31.373,72.015 +714409,26.432,75.844 +714410,27.704,74.568 +714411,28.93,73.292 +714412,30.116,72.02 +714413,25.048,75.796 +714414,26.363,74.537 +714415,27.631,73.28 +714416,28.858,72.025 +714417,23.665,75.747 +714418,25.023,74.506 +714419,26.332,73.267 +714420,27.598,72.032 +714421,22.284,75.697 +714422,23.683,74.475 +714423,25.032,73.255 +714424,26.338,72.04 +714425,20.903,75.646 +714426,22.343,74.443 +714427,23.732,73.244 +714428,25.077,72.048 +714429,19.523,75.594 +714430,21.003,74.411 +714431,22.432,73.232 +714432,23.814,72.058 +714433,18.144,75.541 +714434,19.664,74.379 +714435,21.131,73.221 +714436,22.551,72.069 +714437,16.767,75.487 +714438,18.326,74.346 +714439,19.83,73.211 +714440,21.286,72.08 +714441,15.39,75.432 +714442,16.987,74.313 +714443,18.529,73.2 +714444,20.021,72.093 +714445,14.015,75.376 +714446,15.65,74.28 +714447,17.227,73.19 +714448,18.754,72.106 +714449,12.64,75.319 +714450,14.312,74.247 +714451,15.925,73.18 +714452,17.486,72.12 +714453,11.267,75.262 +714454,12.975,74.213 +714455,14.622,73.171 +714456,16.217,72.135 +714457,9.8956,75.203 +714458,11.638,74.179 +714459,13.319,73.162 +714460,14.946,72.151 +714461,8.5251,75.144 +714462,10.302,74.145 +714463,12.016,73.153 +714464,13.675,72.168 +714465,7.1558,75.084 +714466,8.9665,74.11 +714467,10.712,73.144 +714468,12.402,72.186 +714469,5.7879,75.024 +714470,7.6312,74.075 +714471,9.408,73.135 +714472,11.127,72.204 +714473,4.4213,74.962 +714474,6.2964,74.04 +714475,8.1034,73.127 +714476,9.8517,72.223 +714477,3.0561,74.9 +714478,4.962,74.005 +714479,6.7984,73.119 +714480,8.5748,72.243 +714481,1.6923,74.837 +714482,3.6282,73.969 +714483,5.4929,73.112 +714484,7.2965,72.263 +714485,0.32994,74.773 +714486,2.2948,73.934 +714487,4.187,73.104 +714488,6.0168,72.284 +714489,358.97,74.709 +714490,0.96188,73.898 +714491,2.8806,73.097 +714492,4.7357,72.306 +714493,357.61,74.644 +714494,359.63,73.861 +714495,1.5738,73.09 +714496,3.4532,72.329 +714497,356.25,74.578 +714498,358.3,73.825 +714499,0.26651,73.083 +714500,2.1693,72.352 +714501,354.9,74.512 +714502,356.97,73.788 +714503,358.96,73.076 +714504,0.88386,72.375 +714505,353.54,74.445 +714506,355.64,73.752 +714507,357.65,73.07 +714508,359.6,72.4 +714509,352.19,74.377 +714510,354.31,73.715 +714511,356.34,73.064 +714512,358.31,72.424 +714513,350.84,74.31 +714514,352.98,73.678 +714515,355.03,73.058 +714516,357.02,72.449 +714517,349.49,74.241 +714518,351.65,73.64 +714519,353.72,73.052 +714520,355.73,72.475 +714521,348.14,74.172 +714522,350.32,73.603 +714523,352.41,73.046 +714524,354.43,72.501 +714525,346.79,74.103 +714526,348.99,73.565 +714527,351.1,73.04 +714528,353.14,72.528 +714529,345.44,74.033 +714530,347.66,73.527 +714531,349.79,73.035 +714532,351.84,72.555 +714533,344.1,73.963 +714534,346.33,73.489 +714535,348.48,73.03 +714536,350.55,72.582 +714537,342.76,73.892 +714538,345.01,73.451 +714539,347.17,73.024 +714540,349.25,72.61 +714541,341.42,73.821 +714542,343.68,73.413 +714543,345.85,73.019 +714544,347.95,72.638 +714545,340.08,73.75 +714546,342.36,73.375 +714547,344.54,73.014 +714548,346.64,72.666 +714549,338.74,73.678 +714550,341.03,73.337 +714551,343.23,73.009 +714552,345.34,72.695 +714553,337.41,73.606 +714554,339.71,73.298 +714555,341.91,73.005 +714556,344.03,72.724 +714557,336.08,73.534 +714558,338.38,73.26 +714559,340.6,73 +714560,342.73,72.753 +714561,334.74,73.461 +714562,337.06,73.221 +714563,339.28,72.995 +714564,341.42,72.782 +714565,333.41,73.389 +714566,335.74,73.183 +714567,337.97,72.991 +714568,340.11,72.812 +714569,332.09,73.316 +714570,334.42,73.144 +714571,336.65,72.986 +714572,338.8,72.841 +714573,330.76,73.243 +714574,333.1,73.105 +714575,335.33,72.982 +714576,337.48,72.871 +714577,329.44,73.17 +714578,331.77,73.066 +714579,334.01,72.977 +714580,336.17,72.901 +714581,328.11,73.097 +714582,330.45,73.028 +714583,332.7,72.973 +714584,334.85,72.93 +714585,326.79,73.023 +714586,329.14,72.989 +714587,331.38,72.968 +714588,333.53,72.96 +714589,325.47,72.95 +714590,327.82,72.95 +714591,330.06,72.964 +714592,332.21,72.99 +714593,324.16,72.877 +714594,326.5,72.911 +714595,328.74,72.959 +714596,330.89,73.02 +714597,322.84,72.804 +714598,325.18,72.872 +714599,327.42,72.955 +714600,329.57,73.049 +714601,321.53,72.73 +714602,323.86,72.834 +714603,326.1,72.95 +714604,328.24,73.079 +714605,320.22,72.657 +714606,322.55,72.795 +714607,324.78,72.946 +714608,326.91,73.109 +714609,318.91,72.584 +714610,321.23,72.756 +714611,323.45,72.941 +714612,325.59,73.138 +714613,317.6,72.511 +714614,319.92,72.717 +714615,322.13,72.937 +714616,324.26,73.167 +714617,316.29,72.439 +714618,318.6,72.679 +714619,320.81,72.932 +714620,322.93,73.196 +714621,314.99,72.366 +714622,317.29,72.64 +714623,319.48,72.927 +714624,321.59,73.225 +714625,313.68,72.294 +714626,315.97,72.602 +714627,318.16,72.922 +714628,320.26,73.253 +714629,312.38,72.222 +714630,314.66,72.564 +714631,316.84,72.918 +714632,318.92,73.282 +714633,311.08,72.15 +714634,313.35,72.525 +714635,315.51,72.913 +714636,317.58,73.309 +714637,309.79,72.078 +714638,312.04,72.487 +714639,314.18,72.907 +714640,316.24,73.337 +714641,308.49,72.007 +714642,310.72,72.449 +714643,312.86,72.902 +714644,314.9,73.364 +714645,307.2,71.936 +714646,309.41,72.411 +714647,311.53,72.897 +714648,313.56,73.391 +714649,305.9,71.866 +714650,308.1,72.373 +714651,310.2,72.891 +714652,312.22,73.418 +714653,304.61,71.796 +714654,306.79,72.336 +714655,308.88,72.886 +714656,310.87,73.444 +714657,303.32,71.726 +714658,305.49,72.298 +714659,307.55,72.88 +714660,309.52,73.469 +714661,302.04,71.657 +714662,304.18,72.261 +714663,306.22,72.874 +714664,308.17,73.494 +714665,300.75,71.588 +714666,302.87,72.224 +714667,304.89,72.868 +714668,306.82,73.519 +714669,299.47,71.52 +714670,301.56,72.187 +714671,303.56,72.862 +714672,305.47,73.543 +714673,298.18,71.452 +714674,300.25,72.15 +714675,302.23,72.855 +714676,304.12,73.567 +714677,296.9,71.385 +714678,298.95,72.113 +714679,300.9,72.849 +714680,302.76,73.589 +714681,295.62,71.319 +714682,297.64,72.077 +714683,299.57,72.842 +714684,301.41,73.612 +714685,294.35,71.253 +714686,296.34,72.04 +714687,298.24,72.835 +714688,300.05,73.633 +714689,293.07,71.188 +714690,295.03,72.004 +714691,296.9,72.827 +714692,298.69,73.654 +714693,291.8,71.123 +714694,293.73,71.969 +714695,295.57,72.82 +714696,297.33,73.675 +714697,290.52,71.059 +714698,292.42,71.933 +714699,294.24,72.812 +714700,295.97,73.695 +714701,289.25,70.996 +714702,291.12,71.898 +714703,292.9,72.804 +714704,294.61,73.714 +714705,287.98,70.933 +714706,289.82,71.863 +714707,291.57,72.796 +714708,293.24,73.732 +714709,286.71,70.872 +714710,288.52,71.828 +714711,290.24,72.788 +714712,291.88,73.749 +714713,285.44,70.811 +714714,287.21,71.793 +714715,288.9,72.779 +714716,290.51,73.766 +714717,284.18,70.751 +714718,285.91,71.759 +714719,287.56,72.77 +714720,289.14,73.782 +714721,282.91,70.691 +714722,284.61,71.725 +714723,286.23,72.761 +714724,287.77,73.797 +714725,281.65,70.633 +714726,283.31,71.691 +714727,284.89,72.751 +714728,286.4,73.811 +714729,280.39,70.575 +714730,282.01,71.658 +714731,283.56,72.741 +714732,285.03,73.825 +714733,279.13,70.518 +714734,280.71,71.624 +714735,282.22,72.731 +714736,283.66,73.837 +714737,277.87,70.462 +714738,279.41,71.591 +714739,280.88,72.721 +714740,282.28,73.849 +714741,276.61,70.408 +714742,278.11,71.559 +714743,279.54,72.71 +714744,280.91,73.86 +714745,275.35,70.354 +714746,276.82,71.527 +714747,278.21,72.699 +714748,279.53,73.869 +714749,274.1,70.3 +714750,275.52,71.495 +714751,276.87,72.688 +714752,278.15,73.878 +714753,272.84,70.248 +714754,274.22,71.463 +714755,275.53,72.676 +714756,276.78,73.886 +714757,271.59,70.197 +714758,272.92,71.432 +714759,274.19,72.664 +714760,275.4,73.893 +714761,270.33,70.147 +714762,271.63,71.401 +714763,272.85,72.652 +714764,274.02,73.899 +714765,269.08,70.098 +714766,270.33,71.37 +714767,271.51,72.639 +714768,272.63,73.904 +714769,267.83,70.05 +714770,269.03,71.34 +714771,270.17,72.626 +714772,271.25,73.908 +714773,266.58,70.003 +714774,267.74,71.31 +714775,268.83,72.613 +714776,269.87,73.911 +714777,265.33,69.957 +714778,266.44,71.28 +714779,267.49,72.599 +714780,268.48,73.913 +714781,264.08,69.913 +714782,265.15,71.251 +714783,266.15,72.585 +714784,267.1,73.914 +714785,262.84,69.869 +714786,263.85,71.222 +714787,264.81,72.571 +714788,265.71,73.913 +714789,261.59,69.826 +714790,262.56,71.194 +714791,263.47,72.556 +714792,264.33,73.912 +714793,260.34,69.785 +714794,261.26,71.165 +714795,262.13,72.541 +714796,262.94,73.91 +714797,259.1,69.744 +714798,259.97,71.138 +714799,260.79,72.526 +714800,261.55,73.906 +714801,257.85,69.705 +714802,258.67,71.11 +714803,259.44,72.51 +714804,260.17,73.902 +714805,256.61,69.667 +714806,257.38,71.083 +714807,258.1,72.493 +714808,258.78,73.896 +714809,255.36,69.63 +714810,256.09,71.057 +714811,256.76,72.477 +714812,257.39,73.889 +714813,254.12,69.594 +714814,254.79,71.03 +714815,255.42,72.46 +714816,256,73.881 +714817,252.88,69.56 +714818,253.5,71.005 +714819,254.07,72.442 +714820,254.61,73.872 +714821,251.64,69.527 +714822,252.21,70.979 +714823,252.73,72.425 +714824,253.21,73.862 +714825,250.4,69.494 +714826,250.91,70.954 +714827,251.39,72.407 +714828,251.82,73.851 +714829,249.15,69.463 +714830,249.62,70.929 +714831,250.05,72.388 +714832,250.43,73.838 +714833,247.91,69.434 +714834,248.33,70.905 +714835,248.7,72.369 +714836,249.04,73.824 +714837,246.67,69.405 +714838,247.04,70.881 +714839,247.36,72.35 +714840,247.64,73.809 +714841,245.43,69.378 +714842,245.74,70.858 +714843,246.02,72.33 +714844,246.25,73.793 +714845,244.19,69.351 +714846,244.45,70.834 +714847,244.67,72.31 +714848,244.86,73.776 +714849,242.95,69.326 +714850,243.16,70.812 +714851,243.33,72.289 +714852,243.46,73.758 +714853,241.71,69.303 +714854,241.87,70.789 +714855,241.99,72.268 +714856,242.07,73.738 +714857,240.47,69.28 +714858,240.57,70.768 +714859,240.64,72.247 +714860,240.68,73.718 +714861,239.23,69.259 +714862,239.28,70.746 +714863,239.3,72.225 +714864,239.28,73.696 +714865,237.99,69.239 +714866,237.99,70.725 +714867,237.95,72.203 +714868,237.89,73.673 +714869,236.75,69.22 +714870,236.7,70.704 +714871,236.61,72.181 +714872,236.49,73.648 +714873,235.51,69.202 +714874,235.41,70.684 +714875,235.27,72.158 +714876,235.1,73.623 +714877,234.27,69.186 +714878,234.11,70.664 +714879,233.92,72.135 +714880,233.7,73.596 +714881,233.03,69.171 +714882,232.82,70.644 +714883,232.58,72.111 +714884,232.31,73.568 +714885,231.79,69.157 +714886,231.53,70.625 +714887,231.24,72.087 +714888,230.92,73.54 +714889,230.55,69.144 +714890,230.24,70.607 +714891,229.89,72.062 +714892,229.52,73.509 +714893,229.31,69.132 +714894,228.94,70.588 +714895,228.55,72.037 +714896,228.13,73.478 +714897,228.07,69.122 +714898,227.65,70.57 +714899,227.21,72.012 +714900,226.73,73.446 +714901,226.82,69.113 +714902,226.36,70.553 +714903,225.87,71.986 +714904,225.34,73.412 +714905,225.58,69.105 +714906,225.07,70.536 +714907,224.52,71.96 +714908,223.95,73.377 +714909,224.34,69.098 +714910,223.77,70.519 +714911,223.18,71.934 +714912,222.55,73.342 +714913,223.1,69.092 +714914,222.48,70.503 +714915,221.84,71.907 +714916,221.16,73.305 +714917,221.85,69.087 +714918,221.19,70.486 +714919,220.49,71.88 +714920,219.77,73.266 +714921,220.61,69.084 +714922,219.9,70.471 +714923,219.15,71.852 +714924,218.38,73.227 +714925,219.36,69.082 +714926,218.6,70.456 +714927,217.81,71.824 +714928,216.98,73.187 +714929,218.12,69.08 +714930,217.31,70.441 +714931,216.47,71.796 +714932,215.59,73.145 +714933,216.87,69.08 +714934,216.02,70.426 +714935,215.13,71.767 +714936,214.2,73.103 +714937,215.63,69.081 +714938,214.72,70.412 +714939,213.78,71.738 +714940,212.81,73.059 +714941,214.38,69.083 +714942,213.43,70.398 +714943,212.44,71.709 +714944,211.42,73.015 +714945,213.13,69.087 +714946,212.13,70.385 +714947,211.1,71.679 +714948,210.04,72.969 +714949,211.88,69.091 +714950,210.84,70.372 +714951,209.76,71.649 +714952,208.65,72.922 +714953,210.63,69.096 +714954,209.54,70.359 +714955,208.42,71.619 +714956,207.26,72.874 +714957,209.38,69.102 +714958,208.25,70.346 +714959,207.08,71.588 +714960,205.88,72.825 +714961,208.13,69.11 +714962,206.95,70.334 +714963,205.74,71.557 +714964,204.49,72.776 +714965,206.88,69.118 +714966,205.66,70.323 +714967,204.4,71.525 +714968,203.1,72.725 +714969,205.62,69.127 +714970,204.36,70.311 +714971,203.06,71.493 +714972,201.72,72.673 +714973,204.37,69.138 +714974,203.07,70.3 +714975,201.72,71.461 +714976,200.34,72.62 +714977,203.11,69.149 +714978,201.77,70.289 +714979,200.39,71.429 +714980,198.96,72.567 +714981,201.86,69.161 +714982,200.47,70.279 +714983,199.05,71.396 +714984,197.58,72.512 +714985,200.6,69.174 +714986,199.17,70.269 +714987,197.71,71.363 +714988,196.2,72.457 +714989,199.34,69.188 +714990,197.88,70.259 +714991,196.37,71.33 +714992,194.82,72.4 +714993,198.08,69.203 +714994,196.58,70.249 +714995,195.03,71.296 +714996,193.44,72.343 +714997,196.82,69.218 +714998,195.28,70.24 +714999,193.7,71.262 +715000,192.06,72.285 +715001,195.56,69.235 +715002,193.98,70.231 +715003,192.36,71.228 +715004,190.69,72.226 +715005,194.29,69.252 +715006,192.68,70.222 +715007,191.03,71.193 +715008,189.31,72.166 +715009,193.03,69.27 +715010,191.38,70.213 +715011,189.69,71.159 +715012,187.94,72.105 +715013,191.76,69.289 +715014,190.08,70.205 +715015,188.35,71.124 +715016,186.57,72.044 +715017,190.49,69.308 +715018,188.78,70.197 +715019,187.02,71.088 +715020,185.2,71.982 +715021,189.22,69.329 +715022,187.48,70.189 +715023,185.69,71.053 +715024,183.83,71.919 +715025,187.95,69.35 +715026,186.18,70.182 +715027,184.35,71.017 +715028,182.46,71.855 +715029,186.68,69.371 +715030,184.88,70.174 +715031,183.02,70.981 +715032,181.09,71.791 +715033,185.41,69.394 +715034,183.58,70.167 +715035,181.69,70.945 +715036,179.73,71.726 +715037,184.13,69.416 +715038,182.27,70.16 +715039,180.35,70.908 +715040,178.36,71.661 +715041,182.86,69.44 +715042,180.97,70.153 +715043,179.02,70.872 +715044,177,71.594 +715045,181.58,69.464 +715046,179.67,70.147 +715047,177.69,70.835 +715048,175.64,71.528 +715049,180.3,69.489 +715050,178.36,70.141 +715051,176.36,70.798 +715052,174.28,71.46 +715053,179.02,69.514 +715054,177.06,70.134 +715055,175.03,70.761 +715056,172.92,71.392 +715057,177.74,69.539 +715058,175.75,70.128 +715059,173.7,70.723 +715060,171.57,71.324 +715061,176.46,69.565 +715062,174.45,70.122 +715063,172.37,70.686 +715064,170.21,71.255 +715065,175.17,69.592 +715066,173.14,70.117 +715067,171.04,70.648 +715068,168.86,71.185 +715069,173.89,69.619 +715070,171.84,70.111 +715071,169.71,70.61 +715072,167.51,71.115 +715073,172.6,69.646 +715074,170.53,70.106 +715075,168.39,70.572 +715076,166.16,71.045 +715077,171.31,69.674 +715078,169.22,70.1 +715079,167.06,70.534 +715080,164.81,70.974 +715081,170.02,69.702 +715082,167.91,70.095 +715083,165.73,70.496 +715084,163.46,70.903 +715085,168.72,69.73 +715086,166.61,70.09 +715087,164.41,70.457 +715088,162.12,70.831 +715089,167.43,69.759 +715090,165.3,70.085 +715091,163.08,70.419 +715092,160.77,70.76 +715093,166.13,69.788 +715094,163.99,70.08 +715095,161.76,70.38 +715096,159.43,70.687 +715097,164.84,69.817 +715098,162.68,70.075 +715099,160.43,70.341 +715100,158.09,70.615 +715101,163.54,69.846 +715102,161.37,70.071 +715103,159.11,70.303 +715104,156.75,70.542 +715105,162.23,69.876 +715106,160.05,70.066 +715107,157.79,70.264 +715108,155.42,70.469 +715109,160.93,69.905 +715110,158.74,70.061 +715111,156.46,70.225 +715112,154.08,70.396 +715113,159.63,69.935 +715114,157.43,70.057 +715115,155.14,70.186 +715116,152.75,70.323 +715117,158.32,69.965 +715118,156.12,70.052 +715119,153.82,70.147 +715120,151.42,70.25 +715121,157.01,69.995 +715122,154.8,70.048 +715123,152.5,70.108 +715124,150.09,70.176 +715125,155.7,70.025 +715126,153.49,70.043 +715127,151.18,70.069 +715128,148.76,70.103 +715129,154.39,70.055 +715130,152.18,70.038 +715131,149.86,70.03 +715132,147.44,70.029 +715133,153.08,70.084 +715134,150.86,70.034 +715135,148.54,69.991 +715136,146.12,69.955 +715137,151.77,70.114 +715138,149.54,70.029 +715139,147.23,69.952 +715140,144.79,69.882 +715141,150.45,70.144 +715142,148.23,70.025 +715143,145.91,69.912 +715144,143.48,69.808 +715145,149.13,70.174 +715146,146.91,70.02 +715147,144.59,69.873 +715148,142.16,69.734 +715149,147.81,70.203 +715150,145.59,70.015 +715151,143.27,69.834 +715152,140.84,69.661 +715153,146.49,70.233 +715154,144.28,70.011 +715155,141.96,69.795 +715156,139.53,69.587 +715157,145.17,70.262 +715158,142.96,70.006 +715159,140.64,69.756 +715160,138.22,69.514 +715161,143.84,70.291 +715162,141.64,70.001 +715163,139.33,69.717 +715164,136.9,69.441 +715165,142.52,70.32 +715166,140.32,69.996 +715167,138.02,69.679 +715168,135.6,69.368 +715169,141.19,70.348 +715170,139,69.991 +715171,136.7,69.64 +715172,134.29,69.296 +715173,139.86,70.376 +715174,137.68,69.986 +715175,135.39,69.601 +715176,132.99,69.223 +715177,138.53,70.404 +715178,136.36,69.981 +715179,134.08,69.563 +715180,131.68,69.151 +715181,137.2,70.431 +715182,135.03,69.975 +715183,132.77,69.524 +715184,130.38,69.079 +715185,135.86,70.459 +715186,133.71,69.97 +715187,131.46,69.486 +715188,129.08,69.008 +715189,134.53,70.485 +715190,132.39,69.964 +715191,130.15,69.448 +715192,127.78,68.936 +715193,133.19,70.512 +715194,131.06,69.959 +715195,128.84,69.409 +715196,126.49,68.866 +715197,131.85,70.537 +715198,129.74,69.953 +715199,127.53,69.371 +715200,125.2,68.795 +715201,130.51,70.563 +715202,128.42,69.947 +715203,126.22,69.334 +715204,123.9,68.725 +715205,129.16,70.588 +715206,127.09,69.94 +715207,124.91,69.296 +715208,122.61,68.656 +715209,127.82,70.612 +715210,125.76,69.934 +715211,123.6,69.258 +715212,121.33,68.587 +715213,126.48,70.636 +715214,124.44,69.927 +715215,122.3,69.221 +715216,120.04,68.519 +715217,125.13,70.659 +715218,123.11,69.921 +715219,120.99,69.184 +715220,118.75,68.451 +715221,123.78,70.681 +715222,121.78,69.914 +715223,119.69,69.147 +715224,117.47,68.383 +715225,122.43,70.703 +715226,120.46,69.906 +715227,118.38,69.11 +715228,116.19,68.317 +715229,121.08,70.725 +715230,119.13,69.899 +715231,117.08,69.074 +715232,114.91,68.25 +715233,119.72,70.745 +715234,117.8,69.891 +715235,115.77,69.037 +715236,113.63,68.185 +715237,118.37,70.765 +715238,116.47,69.883 +715239,114.47,69.001 +715240,112.36,68.12 +715241,117.01,70.784 +715242,115.14,69.875 +715243,113.17,68.965 +715244,111.08,68.056 +715245,115.66,70.803 +715246,113.81,69.867 +715247,111.86,68.93 +715248,109.81,67.993 +715249,114.3,70.821 +715250,112.48,69.858 +715251,110.56,68.894 +715252,108.54,67.93 +715253,112.94,70.838 +715254,111.15,69.849 +715255,109.26,68.859 +715256,107.27,67.868 +715257,111.57,70.854 +715258,109.82,69.84 +715259,107.96,68.824 +715260,106,67.807 +715261,110.21,70.869 +715262,108.48,69.831 +715263,106.66,68.789 +715264,104.73,67.747 +715265,108.85,70.883 +715266,107.15,69.821 +715267,105.36,68.755 +715268,103.47,67.687 +715269,107.48,70.897 +715270,105.82,69.811 +715271,104.06,68.721 +715272,102.2,67.629 +715273,106.11,70.91 +715274,104.48,69.801 +715275,102.76,68.687 +715276,100.94,67.571 +715277,104.75,70.922 +715278,103.15,69.79 +715279,101.47,68.654 +715280,99.681,67.514 +715281,103.38,70.933 +715282,101.82,69.779 +715283,100.17,68.62 +715284,98.422,67.458 +715285,102.01,70.943 +715286,100.48,69.768 +715287,98.87,68.588 +715288,97.164,67.403 +715289,100.63,70.952 +715290,99.146,69.756 +715291,97.574,68.555 +715292,95.907,67.349 +715293,99.26,70.96 +715294,97.81,69.745 +715295,96.277,68.523 +715296,94.652,67.296 +715297,97.886,70.967 +715298,96.474,69.732 +715299,94.981,68.491 +715300,93.397,67.244 +715301,96.51,70.973 +715302,95.138,69.72 +715303,93.686,68.459 +715304,92.144,67.192 +715305,95.134,70.978 +715306,93.801,69.707 +715307,92.39,68.428 +715308,90.892,67.142 +715309,93.756,70.982 +715310,92.464,69.694 +715311,91.096,68.397 +715312,89.642,67.093 +715313,92.378,70.985 +715314,91.127,69.68 +715315,89.801,68.366 +715316,88.392,67.045 +715317,90.998,70.987 +715318,89.79,69.666 +715319,88.507,68.336 +715320,87.144,66.998 +715321,89.618,70.988 +715322,88.452,69.652 +715323,87.213,68.306 +715324,85.896,66.952 +715325,88.236,70.988 +715326,87.113,69.637 +715327,85.92,68.276 +715328,84.65,66.908 +715329,86.854,70.987 +715330,85.775,69.622 +715331,84.627,68.247 +715332,83.404,66.864 +715333,85.471,70.984 +715334,84.436,69.606 +715335,83.334,68.218 +715336,82.16,66.821 +715337,84.087,70.981 +715338,83.097,69.591 +715339,82.042,68.19 +715340,80.916,66.78 +715341,82.702,70.976 +715342,81.757,69.574 +715343,80.75,68.162 +715344,79.673,66.739 +715345,81.316,70.971 +715346,80.418,69.558 +715347,79.458,68.134 +715348,78.431,66.7 +715349,79.93,70.964 +715350,79.078,69.541 +715351,78.166,68.107 +715352,77.19,66.662 +715353,78.542,70.956 +715354,77.738,69.524 +715355,76.875,68.08 +715356,75.949,66.625 +715357,77.155,70.947 +715358,76.397,69.506 +715359,75.584,68.053 +715360,74.709,66.59 +715361,75.766,70.936 +715362,75.057,69.488 +715363,74.293,68.027 +715364,73.47,66.555 +715365,74.377,70.925 +715366,73.716,69.469 +715367,73.002,68.001 +715368,72.231,66.522 +715369,72.987,70.912 +715370,72.375,69.45 +715371,71.712,67.975 +715372,70.993,66.49 +715373,71.597,70.899 +715374,71.034,69.431 +715375,70.422,67.95 +715376,69.756,66.459 +715377,70.206,70.884 +715378,69.693,69.411 +715379,69.132,67.926 +715380,68.519,66.429 +715381,68.815,70.867 +715382,68.352,69.391 +715383,67.842,67.902 +715384,67.282,66.401 +715385,67.423,70.85 +715386,67.01,69.37 +715387,66.552,67.878 +715388,66.046,66.374 +715389,66.031,70.831 +715390,65.668,69.349 +715391,65.263,67.854 +715392,64.81,66.348 +715393,64.638,70.812 +715394,64.327,69.328 +715395,63.973,67.831 +715396,63.574,66.323 +715397,63.245,70.791 +715398,62.985,69.306 +715399,62.684,67.809 +715400,62.339,66.299 +715401,61.852,70.768 +715402,61.643,69.284 +715403,61.394,67.786 +715404,61.104,66.277 +715405,60.459,70.745 +715406,60.301,69.261 +715407,60.105,67.764 +715408,59.869,66.256 +715409,59.065,70.72 +715410,58.959,69.238 +715411,58.816,67.743 +715412,58.634,66.236 +715413,57.671,70.695 +715414,57.617,69.215 +715415,57.527,67.722 +715416,57.4,66.217 +715417,56.277,70.668 +715418,56.275,69.191 +715419,56.238,67.701 +715420,56.165,66.2 +715421,54.883,70.639 +715422,54.933,69.167 +715423,54.949,67.681 +715424,54.93,66.184 +715425,53.488,70.61 +715426,53.591,69.142 +715427,53.66,67.661 +715428,53.696,66.169 +715429,52.094,70.579 +715430,52.249,69.117 +715431,52.371,67.642 +715432,52.461,66.155 +715433,50.7,70.548 +715434,50.907,69.091 +715435,51.082,67.623 +715436,51.226,66.142 +715437,49.305,70.515 +715438,49.565,69.066 +715439,49.793,67.604 +715440,49.991,66.131 +715441,47.911,70.481 +715442,48.223,69.039 +715443,48.504,67.586 +715444,48.756,66.121 +715445,46.517,70.445 +715446,46.881,69.013 +715447,47.215,67.568 +715448,47.52,66.112 +715449,45.123,70.409 +715450,45.539,68.986 +715451,45.926,67.55 +715452,46.284,66.104 +715453,43.729,70.371 +715454,44.197,68.958 +715455,44.637,67.533 +715456,45.048,66.097 +715457,42.336,70.332 +715458,42.856,68.93 +715459,43.348,67.516 +715460,43.811,66.092 +715461,40.942,70.293 +715462,41.514,68.902 +715463,42.058,67.5 +715464,42.574,66.088 +715465,39.549,70.251 +715466,40.173,68.873 +715467,40.769,67.484 +715468,41.337,66.084 +715469,38.156,70.209 +715470,38.832,68.844 +715471,39.479,67.468 +715472,40.099,66.082 +715473,36.764,70.166 +715474,37.491,68.815 +715475,38.189,67.453 +715476,38.86,66.081 +715477,35.372,70.122 +715478,36.15,68.785 +715479,36.899,67.438 +715480,37.621,66.082 +715481,33.981,70.076 +715482,34.809,68.755 +715483,35.609,67.423 +715484,36.382,66.083 +715485,32.59,70.03 +715486,33.469,68.724 +715487,34.319,67.409 +715488,35.141,66.085 +715489,31.199,69.982 +715490,32.128,68.693 +715491,33.028,67.395 +715492,33.9,66.089 +715493,29.809,69.933 +715494,30.788,68.662 +715495,31.737,67.382 +715496,32.659,66.094 +715497,28.42,69.883 +715498,29.448,68.631 +715499,30.446,67.369 +715500,31.416,66.099 +715501,27.031,69.833 +715502,28.109,68.599 +715503,29.155,67.356 +715504,30.173,66.106 +715505,25.643,69.781 +715506,26.769,68.566 +715507,27.864,67.343 +715508,28.928,66.113 +715509,24.256,69.728 +715510,25.43,68.534 +715511,26.572,67.331 +715512,27.683,66.122 +715513,22.869,69.674 +715514,24.092,68.501 +715515,25.28,67.319 +715516,26.437,66.132 +715517,21.484,69.619 +715518,22.753,68.467 +715519,23.988,67.308 +715520,25.19,66.142 +715521,20.099,69.564 +715522,21.415,68.434 +715523,22.695,67.297 +715524,23.943,66.154 +715525,18.715,69.507 +715526,20.077,68.4 +715527,21.402,67.286 +715528,22.694,66.166 +715529,17.332,69.449 +715530,18.74,68.365 +715531,20.109,67.275 +715532,21.444,66.18 +715533,15.949,69.391 +715534,17.402,68.331 +715535,18.815,67.265 +715536,20.193,66.194 +715537,14.568,69.332 +715538,16.066,68.296 +715539,17.521,67.255 +715540,18.94,66.209 +715541,13.188,69.271 +715542,14.729,68.261 +715543,16.227,67.245 +715544,17.687,66.225 +715545,11.809,69.21 +715546,13.393,68.225 +715547,14.933,67.235 +715548,16.433,66.242 +715549,10.431,69.148 +715550,12.058,68.189 +715551,13.638,67.226 +715552,15.177,66.26 +715553,9.0538,69.086 +715554,10.722,68.153 +715555,12.342,67.217 +715556,13.92,66.278 +715557,7.678,69.022 +715558,9.3874,68.117 +715559,11.047,67.208 +715560,12.662,66.297 +715561,6.3033,68.958 +715562,8.053,68.081 +715563,9.7504,67.2 +715564,11.402,66.317 +715565,4.9299,68.893 +715566,6.719,68.044 +715567,8.4539,67.192 +715568,10.141,66.338 +715569,3.5577,68.827 +715570,5.3854,68.007 +715571,7.1569,67.184 +715572,8.8794,66.359 +715573,2.1868,68.76 +715574,4.0523,67.969 +715575,5.8595,67.176 +715576,7.6159,66.381 +715577,0.81725,68.693 +715578,2.7196,67.932 +715579,4.5616,67.168 +715580,6.351,66.403 +715581,359.45,68.626 +715582,1.3875,67.894 +715583,3.2633,67.161 +715584,5.0848,66.427 +715585,358.08,68.557 +715586,0.055789,67.856 +715587,1.9646,67.153 +715588,3.8171,66.45 +715589,356.72,68.488 +715590,358.72,67.818 +715591,0.66536,67.146 +715592,2.5479,66.475 +715593,355.35,68.418 +715594,357.39,67.78 +715595,359.37,67.14 +715596,1.2773,66.5 +715597,353.99,68.348 +715598,356.06,67.741 +715599,358.07,67.133 +715600,0.0051476,66.525 +715601,352.63,68.278 +715602,354.73,67.702 +715603,356.76,67.126 +715604,358.73,66.551 +715605,351.27,68.206 +715606,353.4,67.663 +715607,355.46,67.12 +715608,357.46,66.577 +715609,349.91,68.135 +715610,352.08,67.624 +715611,354.16,67.114 +715612,356.18,66.604 +715613,348.56,68.063 +715614,350.75,67.585 +715615,352.86,67.108 +715616,354.9,66.631 +715617,347.2,67.99 +715618,349.42,67.546 +715619,351.56,67.102 +715620,353.62,66.659 +715621,345.85,67.917 +715622,348.09,67.506 +715623,350.25,67.096 +715624,352.34,66.687 +715625,344.5,67.844 +715626,346.77,67.466 +715627,348.95,67.09 +715628,351.06,66.715 +715629,343.15,67.77 +715630,345.44,67.427 +715631,347.65,67.084 +715632,349.77,66.744 +715633,341.8,67.696 +715634,344.12,67.387 +715635,346.34,67.079 +715636,348.49,66.772 +715637,340.45,67.621 +715638,342.79,67.347 +715639,345.04,67.073 +715640,347.2,66.802 +715641,339.11,67.547 +715642,341.47,67.307 +715643,343.73,67.068 +715644,345.91,66.831 +715645,337.76,67.472 +715646,340.14,67.266 +715647,342.42,67.062 +715648,344.62,66.86 +715649,336.42,67.397 +715650,338.82,67.226 +715651,341.12,67.057 +715652,343.32,66.89 +715653,335.08,67.321 +715654,337.5,67.186 +715655,339.81,67.052 +715656,342.03,66.92 +715657,333.75,67.246 +715658,336.18,67.146 +715659,338.5,67.046 +715660,340.73,66.949 +715661,332.41,67.17 +715662,334.86,67.105 +715663,337.19,67.041 +715664,339.43,66.979 +715665,331.08,67.095 +715666,333.54,67.065 +715667,335.88,67.036 +715668,338.14,67.009 +715669,329.74,67.019 +715670,332.22,67.024 +715671,334.57,67.031 +715672,336.83,67.039 +715673,328.41,66.943 +715674,330.9,66.984 +715675,333.26,67.026 +715676,335.53,67.069 +715677,327.09,66.867 +715678,329.58,66.943 +715679,331.95,67.02 +715680,334.23,67.099 +715681,325.76,66.792 +715682,328.26,66.903 +715683,330.64,67.015 +715684,332.92,67.129 +715685,324.43,66.716 +715686,326.94,66.862 +715687,329.33,67.01 +715688,331.61,67.159 +715689,323.11,66.64 +715690,325.63,66.822 +715691,328.02,67.004 +715692,330.3,67.188 +715693,321.79,66.564 +715694,324.31,66.781 +715695,326.7,66.999 +715696,328.99,67.218 +715697,320.47,66.489 +715698,322.99,66.741 +715699,325.39,66.994 +715700,327.67,67.247 +715701,319.16,66.414 +715702,321.68,66.7 +715703,324.07,66.988 +715704,326.36,67.276 +715705,317.84,66.338 +715706,320.36,66.66 +715707,322.76,66.982 +715708,325.04,67.305 +715709,316.53,66.263 +715710,319.05,66.62 +715711,321.44,66.977 +715712,323.72,67.334 +715713,315.22,66.189 +715714,317.74,66.58 +715715,320.13,66.971 +715716,322.4,67.362 +715717,313.91,66.114 +715718,316.43,66.54 +715719,318.81,66.965 +715720,321.08,67.39 +715721,312.6,66.04 +715722,315.11,66.5 +715723,317.49,66.959 +715724,319.76,67.417 +715725,311.3,65.966 +715726,313.8,66.46 +715727,316.18,66.953 +715728,318.43,67.445 +715729,309.99,65.893 +715730,312.49,66.42 +715731,314.86,66.946 +715732,317.1,67.471 +715733,308.69,65.82 +715734,311.18,66.38 +715735,313.54,66.94 +715736,315.78,67.498 +715737,307.39,65.747 +715738,309.87,66.341 +715739,312.22,66.933 +715740,314.44,67.524 +715741,306.09,65.674 +715742,308.57,66.301 +715743,310.9,66.926 +715744,313.11,67.549 +715745,304.8,65.603 +715746,307.26,66.262 +715747,309.58,66.919 +715748,311.78,67.574 +715749,303.51,65.531 +715750,305.95,66.223 +715751,308.26,66.912 +715752,310.44,67.599 +715753,302.21,65.46 +715754,304.64,66.184 +715755,306.93,66.905 +715756,309.11,67.622 +715757,300.92,65.39 +715758,303.34,66.145 +715759,305.61,66.897 +715760,307.77,67.646 +715761,299.64,65.32 +715762,302.03,66.107 +715763,304.29,66.89 +715764,306.43,67.668 +715765,298.35,65.251 +715766,300.73,66.068 +715767,302.97,66.882 +715768,305.08,67.69 +715769,297.07,65.183 +715770,299.42,66.03 +715771,301.64,66.874 +715772,303.74,67.712 +715773,295.78,65.115 +715774,298.12,65.992 +715775,300.32,66.865 +715776,302.39,67.732 +715777,294.5,65.048 +715778,296.82,65.955 +715779,298.99,66.856 +715780,301.05,67.752 +715781,293.22,64.981 +715782,295.51,65.917 +715783,297.67,66.848 +715784,299.7,67.772 +715785,291.95,64.915 +715786,294.21,65.88 +715787,296.34,66.838 +715788,298.35,67.79 +715789,290.67,64.85 +715790,292.91,65.843 +715791,295.01,66.829 +715792,297,67.808 +715793,289.4,64.786 +715794,291.61,65.806 +715795,293.69,66.819 +715796,295.64,67.825 +715797,288.13,64.722 +715798,290.31,65.769 +715799,292.36,66.809 +715800,294.29,67.841 +715801,286.86,64.66 +715802,289.01,65.733 +715803,291.03,66.799 +715804,292.93,67.856 +715805,285.59,64.598 +715806,287.71,65.697 +715807,289.7,66.788 +715808,291.58,67.871 +715809,284.32,64.537 +715810,286.41,65.661 +715811,288.37,66.778 +715812,290.22,67.884 +715813,283.06,64.477 +715814,285.12,65.626 +715815,287.04,66.766 +715816,288.86,67.897 +715817,281.79,64.417 +715818,283.82,65.591 +715819,285.71,66.755 +715820,287.5,67.909 +715821,280.53,64.359 +715822,282.52,65.556 +715823,284.38,66.743 +715824,286.13,67.92 +715825,279.27,64.302 +715826,281.22,65.521 +715827,283.05,66.731 +715828,284.77,67.93 +715829,278.01,64.245 +715830,279.93,65.487 +715831,281.72,66.719 +715832,283.4,67.939 +715833,276.76,64.19 +715834,278.63,65.453 +715835,280.39,66.706 +715836,282.04,67.946 +715837,275.5,64.135 +715838,277.34,65.42 +715839,279.06,66.693 +715840,280.67,67.953 +715841,274.25,64.082 +715842,276.04,65.386 +715843,277.72,66.679 +715844,279.3,67.959 +715845,272.99,64.029 +715846,274.75,65.353 +715847,276.39,66.665 +715848,277.93,67.964 +715849,271.74,63.978 +715850,273.46,65.321 +715851,275.06,66.651 +715852,276.56,67.968 +715853,270.49,63.927 +715854,272.16,65.288 +715855,273.72,66.637 +715856,275.18,67.971 +715857,269.24,63.878 +715858,270.87,65.256 +715859,272.39,66.622 +715860,273.81,67.972 +715861,268,63.83 +715862,269.58,65.225 +715863,271.05,66.606 +715864,272.44,67.973 +715865,266.75,63.783 +715866,268.29,65.194 +715867,269.72,66.591 +715868,271.06,67.973 +715869,265.51,63.737 +715870,267,65.163 +715871,268.38,66.574 +715872,269.68,67.971 +715873,264.26,63.692 +715874,265.7,65.132 +715875,267.05,66.558 +715876,268.3,67.968 +715877,263.02,63.649 +715878,264.41,65.102 +715879,265.71,66.541 +715880,266.92,67.964 +715881,261.78,63.606 +715882,263.12,65.072 +715883,264.38,66.524 +715884,265.54,67.959 +715885,260.54,63.565 +715886,261.83,65.043 +715887,263.04,66.506 +715888,264.16,67.953 +715889,259.3,63.525 +715890,260.54,65.014 +715891,261.7,66.488 +715892,262.78,67.946 +715893,258.06,63.486 +715894,259.25,64.986 +715895,260.36,66.47 +715896,261.4,67.937 +715897,256.82,63.448 +715898,257.97,64.957 +715899,259.03,66.451 +715900,260.01,67.927 +715901,255.58,63.411 +715902,256.68,64.93 +715903,257.69,66.432 +715904,258.63,67.916 +715905,254.35,63.376 +715906,255.39,64.902 +715907,256.35,66.412 +715908,257.24,67.904 +715909,253.11,63.342 +715910,254.1,64.875 +715911,255.01,66.392 +715912,255.86,67.891 +715913,251.88,63.309 +715914,252.81,64.848 +715915,253.67,66.371 +715916,254.47,67.876 +715917,250.64,63.277 +715918,251.52,64.822 +715919,252.34,66.35 +715920,253.08,67.86 +715921,249.41,63.247 +715922,250.24,64.796 +715923,251,66.329 +715924,251.7,67.843 +715925,248.18,63.218 +715926,248.95,64.771 +715927,249.66,66.307 +715928,250.31,67.825 +715929,246.94,63.19 +715930,247.66,64.746 +715931,248.32,66.285 +715932,248.92,67.806 +715933,245.71,63.163 +715934,246.38,64.721 +715935,246.98,66.262 +715936,247.53,67.785 +715937,244.48,63.138 +715938,245.09,64.697 +715939,245.64,66.239 +715940,246.14,67.763 +715941,243.25,63.114 +715942,243.8,64.673 +715943,244.3,66.216 +715944,244.75,67.74 +715945,242.02,63.091 +715946,242.52,64.65 +715947,242.96,66.192 +715948,243.35,67.715 +715949,240.79,63.069 +715950,241.23,64.627 +715951,241.62,66.167 +715952,241.96,67.69 +715953,239.56,63.049 +715954,239.95,64.604 +715955,240.28,66.142 +715956,240.57,67.663 +715957,238.33,63.03 +715958,238.66,64.582 +715959,238.94,66.117 +715960,239.18,67.635 +715961,237.1,63.012 +715962,237.37,64.56 +715963,237.6,66.092 +715964,237.79,67.605 +715965,235.87,62.995 +715966,236.09,64.539 +715967,236.26,66.066 +715968,236.39,67.574 +715969,234.64,62.98 +715970,234.8,64.518 +715971,234.92,66.039 +715972,235,67.543 +715973,233.41,62.966 +715974,233.52,64.497 +715975,233.58,66.012 +715976,233.61,67.509 +715977,232.18,62.953 +715978,232.23,64.477 +715979,232.24,65.985 +715980,232.21,67.475 +715981,230.96,62.941 +715982,230.95,64.457 +715983,230.9,65.957 +715984,230.82,67.44 +715985,229.73,62.931 +715986,229.66,64.438 +715987,229.56,65.929 +715988,229.43,67.403 +715989,228.5,62.922 +715990,228.37,64.419 +715991,228.22,65.9 +715992,228.03,67.365 +715993,227.27,62.914 +715994,227.09,64.4 +715995,226.88,65.871 +715996,226.64,67.326 +715997,226.04,62.907 +715998,225.8,64.382 +715999,225.54,65.842 +716000,225.24,67.285 +716001,224.81,62.901 +716002,224.52,64.364 +716003,224.2,65.812 +716004,223.85,67.244 +716005,223.58,62.897 +716006,223.23,64.347 +716007,222.86,65.782 +716008,222.46,67.201 +716009,222.35,62.894 +716010,221.95,64.33 +716011,221.52,65.751 +716012,221.06,67.157 +716013,221.12,62.892 +716014,220.66,64.313 +716015,220.18,65.72 +716016,219.67,67.112 +716017,219.88,62.891 +716018,219.37,64.297 +716019,218.84,65.689 +716020,218.28,67.065 +716021,218.65,62.891 +716022,218.09,64.281 +716023,217.5,65.657 +716024,216.89,67.018 +716025,217.42,62.892 +716026,216.8,64.265 +716027,216.16,65.625 +716028,215.49,66.969 +716029,216.19,62.895 +716030,215.52,64.25 +716031,214.82,65.592 +716032,214.1,66.92 +716033,214.95,62.898 +716034,214.23,64.235 +716035,213.48,65.559 +716036,212.71,66.869 +716037,213.72,62.903 +716038,212.94,64.221 +716039,212.14,65.526 +716040,211.32,66.817 +716041,212.49,62.909 +716042,211.66,64.206 +716043,210.8,65.492 +716044,209.93,66.764 +716045,211.25,62.916 +716046,210.37,64.193 +716047,209.47,65.458 +716048,208.54,66.71 +716049,210.01,62.923 +716050,209.08,64.179 +716051,208.13,65.423 +716052,207.15,66.655 +716053,208.78,62.932 +716054,207.79,64.166 +716055,206.79,65.389 +716056,205.76,66.599 +716057,207.54,62.942 +716058,206.51,64.153 +716059,205.45,65.353 +716060,204.37,66.542 +716061,206.3,62.953 +716062,205.22,64.14 +716063,204.11,65.318 +716064,202.98,66.484 +716065,205.06,62.964 +716066,203.93,64.128 +716067,202.78,65.282 +716068,201.6,66.424 +716069,203.82,62.977 +716070,202.64,64.116 +716071,201.44,65.246 +716072,200.21,66.364 +716073,202.58,62.991 +716074,201.35,64.105 +716075,200.1,65.209 +716076,198.82,66.303 +716077,201.33,63.005 +716078,200.06,64.093 +716079,198.77,65.173 +716080,197.44,66.241 +716081,200.09,63.021 +716082,198.78,64.082 +716083,197.43,65.135 +716084,196.06,66.178 +716085,198.85,63.037 +716086,197.49,64.072 +716087,196.1,65.098 +716088,194.67,66.115 +716089,197.6,63.054 +716090,196.2,64.061 +716091,194.76,65.06 +716092,193.29,66.05 +716093,196.35,63.072 +716094,194.91,64.051 +716095,193.43,65.022 +716096,191.91,65.984 +716097,195.1,63.091 +716098,193.61,64.041 +716099,192.09,64.984 +716100,190.53,65.918 +716101,193.86,63.11 +716102,192.32,64.031 +716103,190.76,64.945 +716104,189.15,65.851 +716105,192.6,63.13 +716106,191.03,64.022 +716107,189.42,64.906 +716108,187.77,65.783 +716109,191.35,63.151 +716110,189.74,64.012 +716111,188.09,64.867 +716112,186.4,65.714 +716113,190.1,63.173 +716114,188.45,64.003 +716115,186.76,64.828 +716116,185.02,65.645 +716117,188.84,63.195 +716118,187.16,63.994 +716119,185.42,64.788 +716120,183.65,65.574 +716121,187.59,63.218 +716122,185.86,63.986 +716123,184.09,64.748 +716124,182.27,65.504 +716125,186.33,63.242 +716126,184.57,63.977 +716127,182.76,64.708 +716128,180.9,65.432 +716129,185.07,63.266 +716130,183.27,63.969 +716131,181.43,64.668 +716132,179.53,65.36 +716133,183.81,63.291 +716134,181.98,63.961 +716135,180.1,64.627 +716136,178.16,65.287 +716137,182.55,63.316 +716138,180.69,63.953 +716139,178.77,64.586 +716140,176.79,65.213 +716141,181.29,63.342 +716142,179.39,63.946 +716143,177.44,64.545 +716144,175.43,65.139 +716145,180.02,63.368 +716146,178.09,63.938 +716147,176.11,64.504 +716148,174.06,65.065 +716149,178.76,63.395 +716150,176.8,63.931 +716151,174.78,64.463 +716152,172.7,64.99 +716153,177.49,63.422 +716154,175.5,63.924 +716155,173.45,64.421 +716156,171.33,64.914 +716157,176.22,63.449 +716158,174.2,63.916 +716159,172.12,64.38 +716160,169.97,64.838 +716161,174.95,63.477 +716162,172.91,63.909 +716163,170.8,64.338 +716164,168.61,64.761 +716165,173.68,63.506 +716166,171.61,63.903 +716167,169.47,64.296 +716168,167.26,64.684 +716169,172.4,63.534 +716170,170.31,63.896 +716171,168.15,64.254 +716172,165.9,64.607 +716173,171.13,63.563 +716174,169.01,63.889 +716175,166.82,64.212 +716176,164.54,64.529 +716177,169.85,63.592 +716178,167.71,63.882 +716179,165.5,64.169 +716180,163.19,64.451 +716181,168.57,63.622 +716182,166.41,63.876 +716183,164.17,64.127 +716184,161.84,64.373 +716185,167.29,63.651 +716186,165.11,63.869 +716187,162.85,64.084 +716188,160.49,64.294 +716189,166.01,63.681 +716190,163.81,63.863 +716191,161.52,64.042 +716192,159.14,64.216 +716193,164.72,63.711 +716194,162.51,63.857 +716195,160.2,63.999 +716196,157.8,64.137 +716197,163.44,63.741 +716198,161.2,63.85 +716199,158.88,63.956 +716200,156.45,64.057 +716201,162.15,63.771 +716202,159.9,63.844 +716203,157.56,63.913 +716204,155.11,63.978 +716205,160.86,63.801 +716206,158.6,63.838 +716207,156.24,63.87 +716208,153.77,63.898 +716209,159.57,63.831 +716210,157.29,63.831 +716211,154.92,63.828 +716212,152.43,63.819 +716213,158.28,63.862 +716214,155.99,63.825 +716215,153.6,63.785 +716216,151.09,63.739 +716217,156.98,63.892 +716218,154.68,63.819 +716219,152.28,63.742 +716220,149.76,63.659 +716221,155.69,63.922 +716222,153.38,63.812 +716223,150.96,63.699 +716224,148.42,63.579 +716225,154.39,63.952 +716226,152.07,63.806 +716227,149.64,63.656 +716228,147.09,63.5 +716229,153.09,63.982 +716230,150.76,63.8 +716231,148.33,63.613 +716232,145.76,63.42 +716233,151.79,64.012 +716234,149.46,63.793 +716235,147.01,63.57 +716236,144.44,63.34 +716237,150.49,64.041 +716238,148.15,63.787 +716239,145.69,63.527 +716240,143.11,63.261 +716241,149.18,64.071 +716242,146.84,63.78 +716243,144.38,63.484 +716244,141.79,63.181 +716245,147.87,64.1 +716246,145.53,63.773 +716247,143.07,63.441 +716248,140.47,63.102 +716249,146.57,64.129 +716250,144.22,63.766 +716251,141.75,63.398 +716252,139.15,63.023 +716253,145.26,64.157 +716254,142.91,63.76 +716255,140.44,63.355 +716256,137.83,62.944 +716257,143.94,64.185 +716258,141.6,63.752 +716259,139.13,63.313 +716260,136.51,62.865 +716261,142.63,64.213 +716262,140.28,63.745 +716263,137.82,63.27 +716264,135.2,62.787 +716265,141.31,64.241 +716266,138.97,63.738 +716267,136.5,63.228 +716268,133.89,62.709 +716269,140,64.268 +716270,137.66,63.731 +716271,135.19,63.185 +716272,132.58,62.632 +716273,138.68,64.295 +716274,136.35,63.723 +716275,133.88,63.143 +716276,131.27,62.554 +716277,137.36,64.321 +716278,135.03,63.715 +716279,132.58,63.101 +716280,129.96,62.477 +716281,136.03,64.347 +716282,133.72,63.708 +716283,131.27,63.059 +716284,128.66,62.401 +716285,134.71,64.372 +716286,132.4,63.699 +716287,129.96,63.017 +716288,127.36,62.325 +716289,133.38,64.397 +716290,131.09,63.691 +716291,128.65,62.976 +716292,126.06,62.25 +716293,132.06,64.421 +716294,129.77,63.683 +716295,127.35,62.934 +716296,124.76,62.175 +716297,130.73,64.444 +716298,128.45,63.674 +716299,126.04,62.893 +716300,123.47,62.1 +716301,129.4,64.467 +716302,127.13,63.665 +716303,124.74,62.852 +716304,122.17,62.026 +716305,128.06,64.49 +716306,125.82,63.656 +716307,123.43,62.811 +716308,120.88,61.953 +716309,126.73,64.511 +716310,124.5,63.647 +716311,122.13,62.77 +716312,119.59,61.88 +716313,125.39,64.532 +716314,123.18,63.637 +716315,120.82,62.729 +716316,118.31,61.808 +716317,124.06,64.552 +716318,121.86,63.627 +716319,119.52,62.689 +716320,117.02,61.737 +716321,122.72,64.572 +716322,120.54,63.617 +716323,118.22,62.649 +716324,115.74,61.666 +716325,121.38,64.591 +716326,119.22,63.607 +716327,116.92,62.609 +716328,114.46,61.597 +716329,120.03,64.608 +716330,117.9,63.596 +716331,115.62,62.569 +716332,113.18,61.527 +716333,118.69,64.626 +716334,116.57,63.586 +716335,114.32,62.53 +716336,111.9,61.459 +716337,117.34,64.642 +716338,115.25,63.574 +716339,113.02,62.491 +716340,110.62,61.391 +716341,116,64.657 +716342,113.93,63.563 +716343,111.72,62.452 +716344,109.35,61.325 +716345,114.65,64.672 +716346,112.6,63.551 +716347,110.42,62.414 +716348,108.08,61.259 +716349,113.3,64.685 +716350,111.28,63.539 +716351,109.12,62.375 +716352,106.81,61.194 +716353,111.94,64.698 +716354,109.96,63.527 +716355,107.83,62.337 +716356,105.54,61.13 +716357,110.59,64.71 +716358,108.63,63.514 +716359,106.53,62.3 +716360,104.27,61.067 +716361,109.24,64.721 +716362,107.3,63.501 +716363,105.24,62.262 +716364,103.01,61.004 +716365,107.88,64.731 +716366,105.98,63.487 +716367,103.94,62.225 +716368,101.74,60.943 +716369,106.52,64.739 +716370,104.65,63.474 +716371,102.65,62.188 +716372,100.48,60.883 +716373,105.16,64.747 +716374,103.32,63.46 +716375,101.35,62.152 +716376,99.223,60.824 +716377,103.8,64.754 +716378,102,63.445 +716379,100.06,62.116 +716380,97.966,60.765 +716381,102.44,64.76 +716382,100.67,63.43 +716383,98.765,62.08 +716384,96.71,60.708 +716385,101.08,64.765 +716386,99.34,63.415 +716387,97.473,62.044 +716388,95.455,60.652 +716389,99.714,64.768 +716390,98.011,63.399 +716391,96.181,62.009 +716392,94.202,60.597 +716393,98.349,64.771 +716394,96.682,63.384 +716395,94.889,61.974 +716396,92.951,60.543 +716397,96.982,64.772 +716398,95.352,63.367 +716399,93.599,61.94 +716400,91.701,60.49 +716401,95.614,64.772 +716402,94.022,63.35 +716403,92.308,61.906 +716404,90.453,60.439 +716405,94.244,64.771 +716406,92.691,63.333 +716407,91.018,61.872 +716408,89.206,60.388 +716409,92.874,64.769 +716410,91.36,63.316 +716411,89.729,61.839 +716412,87.961,60.339 +716413,91.502,64.766 +716414,90.029,63.298 +716415,88.44,61.806 +716416,86.717,60.291 +716417,90.129,64.762 +716418,88.697,63.28 +716419,87.151,61.774 +716420,85.474,60.244 +716421,88.755,64.756 +716422,87.365,63.261 +716423,85.863,61.741 +716424,84.233,60.198 +716425,87.381,64.749 +716426,86.033,63.242 +716427,84.576,61.71 +716428,82.993,60.153 +716429,86.005,64.741 +716430,84.7,63.222 +716431,83.288,61.678 +716432,81.754,60.11 +716433,84.628,64.732 +716434,83.367,63.202 +716435,82.001,61.647 +716436,80.517,60.068 +716437,83.25,64.722 +716438,82.033,63.182 +716439,80.715,61.617 +716440,79.28,60.027 +716441,81.871,64.71 +716442,80.699,63.161 +716443,79.429,61.587 +716444,78.045,59.987 +716445,80.491,64.697 +716446,79.365,63.139 +716447,78.143,61.557 +716448,76.811,59.949 +716449,79.11,64.683 +716450,78.031,63.118 +716451,76.858,61.527 +716452,75.578,59.912 +716453,77.729,64.667 +716454,76.696,63.096 +716455,75.573,61.499 +716456,74.345,59.876 +716457,76.346,64.65 +716458,75.361,63.073 +716459,74.288,61.47 +716460,73.114,59.842 +716461,74.963,64.632 +716462,74.026,63.05 +716463,73.004,61.442 +716464,71.884,59.808 +716465,73.579,64.613 +716466,72.691,63.026 +716467,71.72,61.414 +716468,70.654,59.776 +716469,72.194,64.592 +716470,71.355,63.002 +716471,70.436,61.387 +716472,69.425,59.746 +716473,70.809,64.57 +716474,70.02,62.978 +716475,69.152,61.36 +716476,68.197,59.717 +716477,69.423,64.547 +716478,68.684,62.953 +716479,67.869,61.334 +716480,66.97,59.689 +716481,68.036,64.523 +716482,67.347,62.928 +716483,66.586,61.308 +716484,65.744,59.662 +716485,66.649,64.497 +716486,66.011,62.902 +716487,65.303,61.282 +716488,64.518,59.637 +716489,65.261,64.47 +716490,64.674,62.876 +716491,64.021,61.257 +716492,63.292,59.613 +716493,63.873,64.441 +716494,63.338,62.849 +716495,62.738,61.232 +716496,62.067,59.59 +716497,62.484,64.411 +716498,62.001,62.822 +716499,61.456,61.208 +716500,60.843,59.569 +716501,61.095,64.38 +716502,60.664,62.795 +716503,60.174,61.184 +716504,59.619,59.549 +716505,59.705,64.348 +716506,59.327,62.767 +716507,58.892,61.161 +716508,58.395,59.53 +716509,58.315,64.314 +716510,57.99,62.738 +716511,57.61,61.137 +716512,57.172,59.512 +716513,56.925,64.28 +716514,56.652,62.709 +716515,56.329,61.115 +716516,55.949,59.496 +716517,55.534,64.243 +716518,55.315,62.68 +716519,55.047,61.093 +716520,54.726,59.482 +716521,54.143,64.206 +716522,53.978,62.65 +716523,53.766,61.071 +716524,53.503,59.468 +716525,52.751,64.167 +716526,52.64,62.62 +716527,52.485,61.05 +716528,52.281,59.456 +716529,51.36,64.127 +716530,51.303,62.589 +716531,51.204,61.029 +716532,51.059,59.445 +716533,49.968,64.086 +716534,49.965,62.558 +716535,49.922,61.008 +716536,49.836,59.435 +716537,48.577,64.043 +716538,48.628,62.527 +716539,48.641,60.988 +716540,48.614,59.427 +716541,47.185,63.999 +716542,47.29,62.495 +716543,47.36,60.968 +716544,47.391,59.42 +716545,45.793,63.954 +716546,45.953,62.463 +716547,46.079,60.949 +716548,46.169,59.414 +716549,44.401,63.908 +716550,44.615,62.43 +716551,44.798,60.93 +716552,44.946,59.409 +716553,43.009,63.86 +716554,43.278,62.396 +716555,43.517,60.911 +716556,43.723,59.406 +716557,41.617,63.811 +716558,41.941,62.363 +716559,42.236,60.893 +716560,42.5,59.403 +716561,40.225,63.761 +716562,40.604,62.329 +716563,40.955,60.875 +716564,41.277,59.402 +716565,38.834,63.71 +716566,39.267,62.294 +716567,39.673,60.858 +716568,40.053,59.403 +716569,37.442,63.658 +716570,37.93,62.259 +716571,38.392,60.841 +716572,38.829,59.404 +716573,36.051,63.604 +716574,36.593,62.224 +716575,37.111,60.824 +716576,37.604,59.406 +716577,34.66,63.549 +716578,35.256,62.188 +716579,35.829,60.808 +716580,36.379,59.41 +716581,33.269,63.493 +716582,33.919,62.152 +716583,34.547,60.792 +716584,35.154,59.415 +716585,31.879,63.436 +716586,32.583,62.116 +716587,33.266,60.777 +716588,33.927,59.421 +716589,30.489,63.378 +716590,31.247,62.079 +716591,31.984,60.762 +716592,32.701,59.428 +716593,29.099,63.319 +716594,29.911,62.042 +716595,30.702,60.747 +716596,31.473,59.436 +716597,27.71,63.259 +716598,28.575,62.004 +716599,29.419,60.732 +716600,30.245,59.445 +716601,26.321,63.197 +716602,27.239,61.966 +716603,28.137,60.718 +716604,29.016,59.455 +716605,24.933,63.135 +716606,25.904,61.928 +716607,26.854,60.704 +716608,27.787,59.466 +716609,23.546,63.071 +716610,24.568,61.889 +716611,25.572,60.691 +716612,26.556,59.479 +716613,22.159,63.006 +716614,23.234,61.85 +716615,24.288,60.678 +716616,25.325,59.492 +716617,20.772,62.941 +716618,21.899,61.81 +716619,23.005,60.665 +716620,24.092,59.506 +716621,19.387,62.874 +716622,20.565,61.771 +716623,21.722,60.652 +716624,22.859,59.521 +716625,18.002,62.807 +716626,19.23,61.73 +716627,20.438,60.64 +716628,21.625,59.537 +716629,16.618,62.738 +716630,17.897,61.69 +716631,19.154,60.628 +716632,20.39,59.554 +716633,15.234,62.669 +716634,16.563,61.649 +716635,17.869,60.616 +716636,19.154,59.572 +716637,13.852,62.599 +716638,15.23,61.608 +716639,16.584,60.605 +716640,17.917,59.59 +716641,12.47,62.527 +716642,13.897,61.567 +716643,15.299,60.594 +716644,16.678,59.61 +716645,11.089,62.455 +716646,12.565,61.525 +716647,14.014,60.583 +716648,15.439,59.63 +716649,9.7093,62.382 +716650,11.233,61.483 +716651,12.728,60.572 +716652,14.198,59.651 +716653,8.3304,62.309 +716654,9.9014,61.441 +716655,11.442,60.562 +716656,12.956,59.673 +716657,6.9525,62.234 +716658,8.5702,61.399 +716659,10.156,60.552 +716660,11.713,59.695 +716661,5.5758,62.159 +716662,7.2394,61.356 +716663,8.8689,60.542 +716664,10.468,59.718 +716665,4.2001,62.083 +716666,5.909,61.313 +716667,7.5817,60.532 +716668,9.2223,59.742 +716669,2.8255,62.006 +716670,4.579,61.27 +716671,6.2941,60.523 +716672,7.9751,59.767 +716673,1.4521,61.929 +716674,3.2495,61.226 +716675,5.0061,60.513 +716676,6.7266,59.792 +716677,0.079891,61.851 +716678,1.9204,61.183 +716679,3.7176,60.504 +716680,5.4766,59.817 +716681,358.71,61.772 +716682,0.5918,61.139 +716683,2.4288,60.495 +716684,4.2253,59.844 +716685,357.34,61.693 +716686,359.26,61.095 +716687,1.1395,60.486 +716688,2.9725,59.87 +716689,355.97,61.613 +716690,357.94,61.05 +716691,359.85,60.478 +716692,1.7182,59.898 +716693,354.6,61.533 +716694,356.61,61.006 +716695,358.56,60.469 +716696,0.4624,59.925 +716697,353.24,61.452 +716698,355.28,60.961 +716699,357.27,60.461 +716700,359.21,59.953 +716701,351.87,61.37 +716702,353.96,60.916 +716703,355.98,60.453 +716704,357.95,59.982 +716705,350.51,61.288 +716706,352.63,60.871 +716707,354.69,60.445 +716708,356.69,60.011 +716709,349.15,61.206 +716710,351.31,60.826 +716711,353.39,60.437 +716712,355.42,60.04 +716713,347.79,61.123 +716714,349.98,60.781 +716715,352.1,60.429 +716716,354.16,60.07 +716717,346.43,61.04 +716718,348.66,60.735 +716719,350.81,60.421 +716720,352.9,60.1 +716721,345.08,60.956 +716722,347.33,60.69 +716723,349.51,60.414 +716724,351.63,60.13 +716725,343.72,60.872 +716726,346.01,60.644 +716727,348.22,60.406 +716728,350.36,60.161 +716729,342.37,60.788 +716730,344.69,60.598 +716731,346.93,60.399 +716732,349.09,60.191 +716733,341.01,60.704 +716734,343.37,60.552 +716735,345.63,60.391 +716736,347.82,60.222 +716737,339.66,60.619 +716738,342.05,60.507 +716739,344.34,60.384 +716740,346.54,60.253 +716741,338.32,60.534 +716742,340.73,60.46 +716743,343.04,60.376 +716744,345.27,60.284 +716745,336.97,60.449 +716746,339.41,60.414 +716747,341.74,60.369 +716748,343.99,60.315 +716749,335.62,60.364 +716750,338.09,60.368 +716751,340.44,60.362 +716752,342.71,60.347 +716753,334.28,60.279 +716754,336.77,60.322 +716755,339.15,60.354 +716756,341.43,60.378 +716757,332.94,60.193 +716758,335.45,60.276 +716759,337.85,60.347 +716760,340.15,60.409 +716761,331.6,60.108 +716762,334.13,60.23 +716763,336.55,60.34 +716764,338.87,60.44 +716765,330.26,60.023 +716766,332.82,60.183 +716767,335.25,60.332 +716768,337.58,60.471 +716769,328.93,59.937 +716770,331.5,60.137 +716771,333.95,60.325 +716772,336.29,60.502 +716773,327.59,59.852 +716774,330.18,60.091 +716775,332.65,60.317 +716776,335,60.533 +716777,326.26,59.767 +716778,328.87,60.045 +716779,331.35,60.31 +716780,333.71,60.564 +716781,324.93,59.681 +716782,327.56,59.999 +716783,330.05,60.302 +716784,332.42,60.594 +716785,323.6,59.596 +716786,326.24,59.953 +716787,328.74,60.295 +716788,331.12,60.625 +716789,322.28,59.512 +716790,324.93,59.906 +716791,327.44,60.287 +716792,329.83,60.655 +716793,320.95,59.427 +716794,323.62,59.86 +716795,326.14,60.279 +716796,328.53,60.685 +716797,319.63,59.343 +716798,322.31,59.815 +716799,324.83,60.271 +716800,327.23,60.714 +716801,318.31,59.258 +716802,321,59.769 +716803,323.53,60.263 +716804,325.93,60.743 +716805,317,59.175 +716806,319.69,59.723 +716807,322.22,60.255 +716808,324.62,60.772 +716809,315.68,59.091 +716810,318.38,59.677 +716811,320.92,60.246 +716812,323.32,60.8 +716813,314.37,59.008 +716814,317.07,59.632 +716815,319.61,60.238 +716816,322.01,60.828 +716817,313.05,58.925 +716818,315.76,59.586 +716819,318.3,60.229 +716820,320.7,60.855 +716821,311.74,58.843 +716822,314.45,59.541 +716823,316.99,60.22 +716824,319.39,60.882 +716825,310.44,58.761 +716826,313.15,59.496 +716827,315.68,60.211 +716828,318.08,60.909 +716829,309.13,58.68 +716830,311.84,59.451 +716831,314.38,60.202 +716832,316.76,60.935 +716833,307.83,58.599 +716834,310.54,59.406 +716835,313.07,60.193 +716836,315.45,60.96 +716837,306.53,58.519 +716838,309.23,59.362 +716839,311.76,60.183 +716840,314.13,60.985 +716841,305.23,58.439 +716842,307.93,59.317 +716843,310.45,60.173 +716844,312.81,61.009 +716845,303.93,58.36 +716846,306.62,59.273 +716847,309.13,60.163 +716848,311.49,61.032 +716849,302.64,58.282 +716850,305.32,59.229 +716851,307.82,60.153 +716852,310.17,61.055 +716853,301.34,58.204 +716854,304.02,59.185 +716855,306.51,60.142 +716856,308.84,61.077 +716857,300.05,58.127 +716858,302.72,59.141 +716859,305.2,60.131 +716860,307.51,61.098 +716861,298.77,58.05 +716862,301.42,59.098 +716863,303.88,60.12 +716864,306.19,61.119 +716865,297.48,57.975 +716866,300.12,59.055 +716867,302.57,60.109 +716868,304.86,61.139 +716869,296.2,57.9 +716870,298.82,59.012 +716871,301.25,60.097 +716872,303.52,61.158 +716873,294.91,57.826 +716874,297.52,58.969 +716875,299.94,60.085 +716876,302.19,61.176 +716877,293.63,57.753 +716878,296.23,58.927 +716879,298.62,60.073 +716880,300.86,61.193 +716881,292.36,57.681 +716882,294.93,58.885 +716883,297.31,60.061 +716884,299.52,61.209 +716885,291.08,57.609 +716886,293.63,58.843 +716887,295.99,60.048 +716888,298.18,61.225 +716889,289.81,57.539 +716890,292.34,58.802 +716891,294.67,60.035 +716892,296.84,61.24 +716893,288.53,57.469 +716894,291.04,58.761 +716895,293.35,60.021 +716896,295.5,61.253 +716897,287.26,57.401 +716898,289.75,58.72 +716899,292.03,60.007 +716900,294.16,61.266 +716901,286,57.333 +716902,288.45,58.679 +716903,290.71,59.993 +716904,292.81,61.277 +716905,284.73,57.266 +716906,287.16,58.639 +716907,289.4,59.979 +716908,291.47,61.288 +716909,283.47,57.201 +716910,285.87,58.599 +716911,288.07,59.964 +716912,290.12,61.298 +716913,282.2,57.136 +716914,284.58,58.559 +716915,286.75,59.949 +716916,288.77,61.306 +716917,280.94,57.073 +716918,283.29,58.52 +716919,285.43,59.933 +716920,287.42,61.314 +716921,279.69,57.011 +716922,281.99,58.481 +716923,284.11,59.917 +716924,286.07,61.32 +716925,278.43,56.95 +716926,280.71,58.443 +716927,282.79,59.901 +716928,284.71,61.325 +716929,277.18,56.89 +716930,279.42,58.405 +716931,281.47,59.884 +716932,283.36,61.33 +716933,275.92,56.831 +716934,278.13,58.367 +716935,280.14,59.867 +716936,282,61.333 +716937,274.67,56.773 +716938,276.84,58.33 +716939,278.82,59.849 +716940,280.64,61.334 +716941,273.42,56.717 +716942,275.55,58.293 +716943,277.5,59.831 +716944,279.28,61.335 +716945,272.18,56.661 +716946,274.26,58.256 +716947,276.17,59.813 +716948,277.92,61.335 +716949,270.93,56.607 +716950,272.98,58.22 +716951,274.85,59.794 +716952,276.56,61.333 +716953,269.69,56.555 +716954,271.69,58.184 +716955,273.52,59.775 +716956,275.2,61.33 +716957,268.44,56.503 +716958,270.41,58.149 +716959,272.19,59.755 +716960,273.84,61.326 +716961,267.2,56.453 +716962,269.12,58.114 +716963,270.87,59.735 +716964,272.47,61.32 +716965,265.96,56.404 +716966,267.84,58.079 +716967,269.54,59.715 +716968,271.1,61.314 +716969,264.73,56.356 +716970,266.55,58.045 +716971,268.22,59.694 +716972,269.74,61.306 +716973,263.49,56.31 +716974,265.27,58.011 +716975,266.89,59.672 +716976,268.37,61.296 +716977,262.25,56.265 +716978,263.99,57.978 +716979,265.56,59.651 +716980,267,61.286 +716981,261.02,56.222 +716982,262.7,57.945 +716983,264.23,59.628 +716984,265.63,61.274 +716985,259.79,56.179 +716986,261.42,57.912 +716987,262.9,59.606 +716988,264.26,61.261 +716989,258.56,56.138 +716990,260.14,57.88 +716991,261.58,59.582 +716992,262.88,61.246 +716993,257.33,56.099 +716994,258.86,57.849 +716995,260.25,59.559 +716996,261.51,61.23 +716997,256.1,56.061 +716998,257.58,57.818 +716999,258.92,59.535 +717000,260.13,61.213 +717001,254.87,56.024 +717002,256.3,57.787 +717003,257.59,59.51 +717004,258.76,61.195 +717005,253.65,55.989 +717006,255.02,57.757 +717007,256.26,59.485 +717008,257.38,61.175 +717009,252.42,55.955 +717010,253.74,57.727 +717011,254.93,59.459 +717012,256,61.154 +717013,251.2,55.922 +717014,252.46,57.698 +717015,253.6,59.433 +717016,254.63,61.131 +717017,249.97,55.891 +717018,251.18,57.669 +717019,252.27,59.407 +717020,253.25,61.107 +717021,248.75,55.862 +717022,249.9,57.64 +717023,250.94,59.38 +717024,251.87,61.082 +717025,247.53,55.833 +717026,248.62,57.613 +717027,249.6,59.353 +717028,250.49,61.055 +717029,246.31,55.806 +717030,247.35,57.585 +717031,248.27,59.325 +717032,249.1,61.027 +717033,245.09,55.781 +717034,246.07,57.558 +717035,246.94,59.296 +717036,247.72,60.998 +717037,243.87,55.757 +717038,244.79,57.531 +717039,245.61,59.268 +717040,246.34,60.967 +717041,242.65,55.734 +717042,243.51,57.505 +717043,244.28,59.238 +717044,244.96,60.935 +717045,241.44,55.713 +717046,242.24,57.48 +717047,242.95,59.208 +717048,243.57,60.901 +717049,240.22,55.694 +717050,240.96,57.454 +717051,241.61,59.178 +717052,242.19,60.866 +717053,239,55.675 +717054,239.68,57.43 +717055,240.28,59.147 +717056,240.8,60.83 +717057,237.79,55.658 +717058,238.41,57.405 +717059,238.95,59.116 +717060,239.42,60.792 +717061,236.57,55.643 +717062,237.13,57.381 +717063,237.62,59.084 +717064,238.03,60.753 +717065,235.36,55.629 +717066,235.86,57.358 +717067,236.28,59.052 +717068,236.65,60.712 +717069,234.14,55.616 +717070,234.58,57.335 +717071,234.95,59.02 +717072,235.26,60.67 +717073,232.93,55.604 +717074,233.3,57.312 +717075,233.62,58.987 +717076,233.87,60.627 +717077,231.71,55.594 +717078,232.03,57.29 +717079,232.28,58.953 +717080,232.48,60.583 +717081,230.5,55.586 +717082,230.75,57.269 +717083,230.95,58.919 +717084,231.1,60.537 +717085,229.28,55.579 +717086,229.48,57.248 +717087,229.62,58.885 +717088,229.71,60.49 +717089,228.07,55.573 +717090,228.2,57.227 +717091,228.29,58.85 +717092,228.32,60.441 +717093,226.86,55.568 +717094,226.93,57.206 +717095,226.95,58.814 +717096,226.93,60.391 +717097,225.64,55.565 +717098,225.65,57.187 +717099,225.62,58.778 +717100,225.55,60.34 +717101,224.43,55.563 +717102,224.38,57.167 +717103,224.29,58.742 +717104,224.16,60.287 +717105,223.21,55.562 +717106,223.1,57.148 +717107,222.95,58.705 +717108,222.77,60.234 +717109,222,55.563 +717110,221.83,57.129 +717111,221.62,58.668 +717112,221.38,60.179 +717113,220.78,55.564 +717114,220.55,57.111 +717115,220.29,58.631 +717116,219.99,60.122 +717117,219.57,55.568 +717118,219.28,57.093 +717119,218.96,58.592 +717120,218.61,60.065 +717121,218.35,55.572 +717122,218,57.076 +717123,217.62,58.554 +717124,217.22,60.006 +717125,217.14,55.577 +717126,216.73,57.059 +717127,216.29,58.515 +717128,215.83,59.946 +717129,215.92,55.584 +717130,215.45,57.042 +717131,214.96,58.476 +717132,214.44,59.884 +717133,214.71,55.592 +717134,214.18,57.026 +717135,213.63,58.436 +717136,213.05,59.822 +717137,213.49,55.601 +717138,212.9,57.01 +717139,212.29,58.396 +717140,211.67,59.758 +717141,212.27,55.611 +717142,211.63,56.995 +717143,210.96,58.356 +717144,210.28,59.693 +717145,211.05,55.623 +717146,210.35,56.98 +717147,209.63,58.315 +717148,208.89,59.627 +717149,209.83,55.635 +717150,209.07,56.965 +717151,208.3,58.273 +717152,207.51,59.56 +717153,208.61,55.649 +717154,207.8,56.95 +717155,206.97,58.232 +717156,206.12,59.492 +717157,207.39,55.663 +717158,206.52,56.936 +717159,205.64,58.19 +717160,204.74,59.422 +717161,206.17,55.679 +717162,205.25,56.923 +717163,204.31,58.147 +717164,203.35,59.352 +717165,204.95,55.696 +717166,203.97,56.909 +717167,202.98,58.104 +717168,201.97,59.28 +717169,203.73,55.713 +717170,202.69,56.896 +717171,201.65,58.061 +717172,200.59,59.208 +717173,202.5,55.732 +717174,201.42,56.883 +717175,200.32,58.018 +717176,199.2,59.134 +717177,201.28,55.751 +717178,200.14,56.871 +717179,198.99,57.974 +717180,197.82,59.06 +717181,200.05,55.772 +717182,198.86,56.859 +717183,197.66,57.93 +717184,196.44,58.984 +717185,198.82,55.793 +717186,197.58,56.847 +717187,196.33,57.886 +717188,195.06,58.908 +717189,197.6,55.815 +717190,196.3,56.835 +717191,195,57.841 +717192,193.68,58.83 +717193,196.37,55.838 +717194,195.03,56.824 +717195,193.67,57.796 +717196,192.3,58.752 +717197,195.14,55.862 +717198,193.75,56.813 +717199,192.34,57.75 +717200,190.92,58.673 +717201,193.91,55.886 +717202,192.47,56.802 +717203,191.01,57.705 +717204,189.54,58.592 +717205,192.67,55.912 +717206,191.19,56.792 +717207,189.69,57.659 +717208,188.17,58.512 +717209,191.44,55.938 +717210,189.91,56.781 +717211,188.36,57.613 +717212,186.79,58.43 +717213,190.2,55.964 +717214,188.63,56.771 +717215,187.03,57.566 +717216,185.42,58.347 +717217,188.97,55.992 +717218,187.35,56.761 +717219,185.71,57.519 +717220,184.04,58.264 +717221,187.73,56.02 +717222,186.07,56.752 +717223,184.38,57.472 +717224,182.67,58.18 +717225,186.49,56.048 +717226,184.79,56.742 +717227,183.06,57.425 +717228,181.3,58.095 +717229,185.25,56.077 +717230,183.51,56.733 +717231,181.73,57.378 +717232,179.93,58.01 +717233,184.01,56.107 +717234,182.22,56.724 +717235,180.41,57.33 +717236,178.56,57.924 +717237,182.76,56.137 +717238,180.94,56.715 +717239,179.09,57.283 +717240,177.19,57.837 +717241,181.52,56.168 +717242,179.66,56.706 +717243,177.76,57.235 +717244,175.83,57.75 +717245,180.27,56.199 +717246,178.37,56.698 +717247,176.44,57.186 +717248,174.46,57.662 +717249,179.02,56.231 +717250,177.09,56.689 +717251,175.12,57.138 +717252,173.1,57.574 +717253,177.77,56.263 +717254,175.81,56.681 +717255,173.8,57.089 +717256,171.73,57.485 +717257,176.52,56.295 +717258,174.52,56.673 +717259,172.47,57.041 +717260,170.37,57.396 +717261,175.27,56.327 +717262,173.24,56.665 +717263,171.15,56.992 +717264,169.01,57.307 +717265,174.01,56.36 +717266,171.95,56.657 +717267,169.83,56.943 +717268,167.65,57.217 +717269,172.76,56.393 +717270,170.66,56.649 +717271,168.51,56.894 +717272,166.3,57.126 +717273,171.5,56.427 +717274,169.38,56.641 +717275,167.2,56.845 +717276,164.94,57.035 +717277,170.24,56.46 +717278,168.09,56.633 +717279,165.88,56.796 +717280,163.59,56.944 +717281,168.98,56.494 +717282,166.8,56.626 +717283,164.56,56.746 +717284,162.24,56.853 +717285,167.71,56.528 +717286,165.51,56.618 +717287,163.24,56.697 +717288,160.89,56.761 +717289,166.45,56.562 +717290,164.23,56.611 +717291,161.93,56.647 +717292,159.54,56.67 +717293,165.18,56.596 +717294,162.94,56.603 +717295,160.61,56.598 +717296,158.19,56.578 +717297,163.91,56.63 +717298,161.65,56.595 +717299,159.29,56.548 +717300,156.85,56.486 +717301,162.64,56.664 +717302,160.36,56.588 +717303,157.98,56.499 +717304,155.5,56.394 +717305,161.37,56.698 +717306,159.07,56.58 +717307,156.67,56.449 +717308,154.16,56.301 +717309,160.1,56.731 +717310,157.77,56.573 +717311,155.35,56.399 +717312,152.82,56.209 +717313,158.82,56.765 +717314,156.48,56.565 +717315,154.04,56.35 +717316,151.48,56.117 +717317,157.55,56.799 +717318,155.19,56.557 +717319,152.73,56.3 +717320,150.15,56.025 +717321,156.27,56.832 +717322,153.9,56.55 +717323,151.42,56.251 +717324,148.81,55.933 +717325,154.99,56.866 +717326,152.6,56.542 +717327,150.11,56.201 +717328,147.48,55.841 +717329,153.7,56.899 +717330,151.31,56.534 +717331,148.8,56.151 +717332,146.15,55.749 +717333,152.42,56.931 +717334,150.01,56.526 +717335,147.49,56.102 +717336,144.82,55.657 +717337,151.13,56.964 +717338,148.72,56.518 +717339,146.18,56.053 +717340,143.5,55.565 +717341,149.84,56.996 +717342,147.42,56.51 +717343,144.87,56.003 +717344,142.17,55.474 +717345,148.55,57.028 +717346,146.12,56.501 +717347,143.56,55.954 +717348,140.85,55.383 +717349,147.26,57.059 +717350,144.83,56.493 +717351,142.26,55.905 +717352,139.53,55.292 +717353,145.97,57.09 +717354,143.53,56.484 +717355,140.95,55.856 +717356,138.21,55.202 +717357,144.67,57.121 +717358,142.23,56.476 +717359,139.65,55.807 +717360,136.89,55.112 +717361,143.38,57.151 +717362,140.93,56.467 +717363,138.34,55.759 +717364,135.58,55.023 +717365,142.08,57.18 +717366,139.63,56.458 +717367,137.04,55.71 +717368,134.27,54.934 +717369,140.78,57.209 +717370,138.33,56.448 +717371,135.74,55.662 +717372,132.96,54.845 +717373,139.47,57.238 +717374,137.03,56.439 +717375,134.43,55.613 +717376,131.65,54.757 +717377,138.17,57.265 +717378,135.73,56.429 +717379,133.13,55.565 +717380,130.35,54.67 +717381,136.86,57.292 +717382,134.43,56.42 +717383,131.83,55.518 +717384,129.04,54.583 +717385,135.55,57.319 +717386,133.13,56.41 +717387,130.53,55.47 +717388,127.74,54.496 +717389,134.24,57.345 +717390,131.82,56.399 +717391,129.23,55.423 +717392,126.44,54.411 +717393,132.93,57.37 +717394,130.52,56.389 +717395,127.93,55.375 +717396,125.15,54.326 +717397,131.62,57.394 +717398,129.21,56.378 +717399,126.64,55.328 +717400,123.85,54.241 +717401,130.3,57.418 +717402,127.91,56.367 +717403,125.34,55.282 +717404,122.56,54.158 +717405,128.99,57.441 +717406,126.6,56.355 +717407,124.04,55.235 +717408,121.27,54.075 +717409,127.67,57.463 +717410,125.3,56.344 +717411,122.75,55.189 +717412,119.98,53.993 +717413,126.35,57.484 +717414,123.99,56.332 +717415,121.45,55.143 +717416,118.7,53.912 +717417,125.02,57.504 +717418,122.68,56.32 +717419,120.16,55.097 +717420,117.41,53.832 +717421,123.7,57.523 +717422,121.38,56.307 +717423,118.87,55.052 +717424,116.13,53.753 +717425,122.38,57.541 +717426,120.07,56.294 +717427,117.57,55.007 +717428,114.85,53.675 +717429,121.05,57.559 +717430,118.76,56.281 +717431,116.28,54.962 +717432,113.58,53.597 +717433,119.72,57.575 +717434,117.45,56.268 +717435,114.99,54.918 +717436,112.3,53.521 +717437,118.39,57.591 +717438,116.14,56.254 +717439,113.7,54.874 +717440,111.03,53.446 +717441,117.06,57.605 +717442,114.83,56.24 +717443,112.41,54.83 +717444,109.76,53.371 +717445,115.72,57.619 +717446,113.52,56.225 +717447,111.12,54.787 +717448,108.49,53.298 +717449,114.39,57.631 +717450,112.21,56.21 +717451,109.83,54.744 +717452,107.22,53.226 +717453,113.05,57.642 +717454,110.89,56.195 +717455,108.54,54.701 +717456,105.96,53.155 +717457,111.71,57.652 +717458,109.58,56.179 +717459,107.26,54.659 +717460,104.7,53.085 +717461,110.37,57.661 +717462,108.27,56.163 +717463,105.97,54.617 +717464,103.44,53.017 +717465,109.03,57.669 +717466,106.95,56.147 +717467,104.69,54.576 +717468,102.18,52.949 +717469,107.69,57.675 +717470,105.64,56.13 +717471,103.4,54.534 +717472,100.93,52.883 +717473,106.34,57.681 +717474,104.33,56.113 +717475,102.12,54.494 +717476,99.672,52.818 +717477,105,57.685 +717478,103.01,56.095 +717479,100.83,54.454 +717480,98.421,52.755 +717481,103.65,57.688 +717482,101.69,56.077 +717483,99.549,54.414 +717484,97.171,52.692 +717485,102.3,57.69 +717486,100.38,56.058 +717487,98.267,54.374 +717488,95.924,52.631 +717489,100.95,57.69 +717490,99.062,56.039 +717491,96.985,54.335 +717492,94.678,52.572 +717493,99.6,57.69 +717494,97.745,56.02 +717495,95.704,54.297 +717496,93.435,52.513 +717497,98.247,57.687 +717498,96.427,56 +717499,94.423,54.259 +717500,92.193,52.456 +717501,96.893,57.684 +717502,95.109,55.98 +717503,93.143,54.221 +717504,90.953,52.401 +717505,95.538,57.679 +717506,93.791,55.959 +717507,91.864,54.184 +717508,89.715,52.347 +717509,94.181,57.673 +717510,92.472,55.938 +717511,90.585,54.147 +717512,88.479,52.294 +717513,92.823,57.666 +717514,91.153,55.916 +717515,89.306,54.111 +717516,87.244,52.243 +717517,91.464,57.657 +717518,89.834,55.894 +717519,88.029,54.075 +717520,86.011,52.193 +717521,90.104,57.647 +717522,88.514,55.872 +717523,86.751,54.039 +717524,84.78,52.144 +717525,88.743,57.635 +717526,87.193,55.848 +717527,85.475,54.005 +717528,83.55,52.098 +717529,87.381,57.622 +717530,85.873,55.825 +717531,84.199,53.97 +717532,82.322,52.052 +717533,86.017,57.608 +717534,84.552,55.801 +717535,82.923,53.936 +717536,81.096,52.008 +717537,84.653,57.592 +717538,83.23,55.776 +717539,81.648,53.903 +717540,79.871,51.966 +717541,83.287,57.575 +717542,81.909,55.751 +717543,80.373,53.87 +717544,78.647,51.925 +717545,81.921,57.556 +717546,80.587,55.726 +717547,79.099,53.837 +717548,77.425,51.886 +717549,80.553,57.536 +717550,79.264,55.7 +717551,77.825,53.805 +717552,76.204,51.848 +717553,79.185,57.515 +717554,77.942,55.673 +717555,76.552,53.774 +717556,74.985,51.812 +717557,77.815,57.492 +717558,76.619,55.646 +717559,75.279,53.743 +717560,73.767,51.778 +717561,76.445,57.468 +717562,75.296,55.619 +717563,74.007,53.713 +717564,72.55,51.745 +717565,75.074,57.442 +717566,73.972,55.591 +717567,72.735,53.683 +717568,71.334,51.713 +717569,73.702,57.414 +717570,72.648,55.562 +717571,71.463,53.653 +717572,70.119,51.683 +717573,72.33,57.386 +717574,71.325,55.533 +717575,70.192,53.624 +717576,68.906,51.655 +717577,70.956,57.355 +717578,70,55.504 +717579,68.921,53.596 +717580,67.693,51.628 +717581,69.582,57.323 +717582,68.676,55.474 +717583,67.65,53.568 +717584,66.481,51.603 +717585,68.207,57.29 +717586,67.351,55.443 +717587,66.38,53.541 +717588,65.271,51.579 +717589,66.832,57.256 +717590,66.027,55.412 +717591,65.11,53.514 +717592,64.061,51.557 +717593,65.456,57.219 +717594,64.702,55.38 +717595,63.841,53.488 +717596,62.852,51.537 +717597,64.079,57.182 +717598,63.377,55.348 +717599,62.571,53.462 +717600,61.644,51.518 +717601,62.702,57.143 +717602,62.051,55.316 +717603,61.302,53.436 +717604,60.436,51.5 +717605,61.324,57.102 +717606,60.726,55.283 +717607,60.034,53.412 +717608,59.229,51.485 +717609,59.946,57.06 +717610,59.401,55.249 +717611,58.765,53.387 +717612,58.023,51.47 +717613,58.567,57.016 +717614,58.075,55.215 +717615,57.497,53.363 +717616,56.817,51.458 +717617,57.188,56.971 +717618,56.749,55.181 +717619,56.229,53.34 +717620,55.611,51.446 +717621,55.809,56.925 +717622,55.424,55.146 +717623,54.961,53.317 +717624,54.407,51.437 +717625,54.429,56.877 +717626,54.098,55.11 +717627,53.693,53.295 +717628,53.202,51.429 +717629,53.049,56.828 +717630,52.772,55.074 +717631,52.425,53.273 +717632,51.998,51.422 +717633,51.668,56.777 +717634,51.446,55.037 +717635,51.158,53.252 +717636,50.794,51.417 +717637,50.287,56.725 +717638,50.12,55 +717639,49.891,53.231 +717640,49.59,51.413 +717641,48.907,56.671 +717642,48.794,54.963 +717643,48.624,53.21 +717644,48.386,51.411 +717645,47.526,56.616 +717646,47.468,54.925 +717647,47.356,53.19 +717648,47.183,51.41 +717649,46.144,56.56 +717650,46.142,54.887 +717651,46.089,53.171 +717652,45.979,51.411 +717653,44.763,56.502 +717654,44.816,54.848 +717655,44.823,53.152 +717656,44.775,51.413 +717657,43.382,56.443 +717658,43.49,54.808 +717659,43.556,53.133 +717660,43.572,51.416 +717661,42.001,56.382 +717662,42.165,54.769 +717663,42.289,53.115 +717664,42.368,51.421 +717665,40.619,56.32 +717666,40.839,54.728 +717667,41.022,53.098 +717668,41.164,51.428 +717669,39.238,56.257 +717670,39.513,54.688 +717671,39.755,53.081 +717672,39.96,51.435 +717673,37.857,56.192 +717674,38.188,54.646 +717675,38.488,53.064 +717676,38.755,51.444 +717677,36.476,56.127 +717678,36.862,54.605 +717679,37.222,53.048 +717680,37.55,51.454 +717681,35.095,56.059 +717682,35.537,54.563 +717683,35.955,53.032 +717684,36.345,51.466 +717685,33.714,55.991 +717686,34.212,54.52 +717687,34.688,53.016 +717688,35.139,51.479 +717689,32.334,55.921 +717690,32.887,54.477 +717691,33.421,53.001 +717692,33.933,51.493 +717693,30.953,55.85 +717694,31.562,54.434 +717695,32.154,52.987 +717696,32.726,51.508 +717697,29.574,55.778 +717698,30.238,54.39 +717699,30.886,52.973 +717700,31.518,51.525 +717701,28.194,55.705 +717702,28.913,54.346 +717703,29.619,52.959 +717704,30.31,51.542 +717705,26.815,55.63 +717706,27.589,54.302 +717707,28.351,52.945 +717708,29.102,51.561 +717709,25.436,55.555 +717710,26.265,54.257 +717711,27.084,52.932 +717712,27.892,51.581 +717713,24.058,55.478 +717714,24.941,54.212 +717715,25.816,52.92 +717716,26.682,51.602 +717717,22.68,55.4 +717718,23.618,54.166 +717719,24.548,52.907 +717720,25.47,51.624 +717721,21.303,55.321 +717722,22.295,54.12 +717723,23.28,52.895 +717724,24.258,51.647 +717725,19.926,55.241 +717726,20.972,54.074 +717727,22.011,52.884 +717728,23.045,51.671 +717729,18.55,55.16 +717730,19.649,54.027 +717731,20.743,52.872 +717732,21.831,51.696 +717733,17.175,55.077 +717734,18.327,53.98 +717735,19.474,52.861 +717736,20.616,51.722 +717737,15.8,54.994 +717738,17.005,53.933 +717739,18.205,52.851 +717740,19.4,51.749 +717741,14.426,54.91 +717742,15.683,53.885 +717743,16.935,52.841 +717744,18.183,51.777 +717745,13.053,54.825 +717746,14.362,53.837 +717747,15.666,52.831 +717748,16.965,51.806 +717749,11.681,54.739 +717750,13.041,53.789 +717751,14.396,52.821 +717752,15.745,51.836 +717753,10.309,54.652 +717754,11.721,53.74 +717755,13.126,52.811 +717756,14.525,51.866 +717757,8.9389,54.564 +717758,10.401,53.692 +717759,11.855,52.802 +717760,13.303,51.897 +717761,7.5692,54.475 +717762,9.0812,53.642 +717763,10.584,52.793 +717764,12.079,51.929 +717765,6.2005,54.386 +717766,7.7619,53.593 +717767,9.3129,52.785 +717768,10.855,51.962 +717769,4.8328,54.295 +717770,6.4431,53.543 +717771,8.0413,52.776 +717772,9.629,51.995 +717773,3.4661,54.204 +717774,5.1247,53.494 +717775,6.7693,52.768 +717776,8.4017,52.029 +717777,2.1005,54.112 +717778,3.8068,53.444 +717779,5.497,52.76 +717780,7.1729,52.063 +717781,0.73598,54.02 +717782,2.4894,53.393 +717783,4.2243,52.752 +717784,5.9428,52.099 +717785,359.37,53.927 +717786,1.1724,53.343 +717787,2.9511,52.745 +717788,4.7111,52.134 +717789,358.01,53.833 +717790,359.86,53.292 +717791,1.6776,52.737 +717792,3.478,52.17 +717793,356.65,53.738 +717794,358.54,53.241 +717795,0.40363,52.73 +717796,2.2433,52.207 +717797,355.29,53.644 +717798,357.22,53.19 +717799,359.13,52.723 +717800,1.007,52.244 +717801,353.93,53.548 +717802,355.91,53.139 +717803,357.85,52.716 +717804,359.77,52.282 +717805,352.57,53.452 +717806,354.6,53.087 +717807,356.58,52.709 +717808,358.53,52.319 +717809,351.22,53.356 +717810,353.28,53.036 +717811,355.3,52.703 +717812,357.29,52.358 +717813,349.86,53.259 +717814,351.97,52.984 +717815,354.03,52.696 +717816,356.05,52.396 +717817,348.51,53.161 +717818,350.66,52.933 +717819,352.75,52.69 +717820,354.8,52.435 +717821,347.16,53.064 +717822,349.34,52.881 +717823,351.47,52.683 +717824,353.56,52.474 +717825,345.81,52.966 +717826,348.03,52.829 +717827,350.2,52.677 +717828,352.31,52.513 +717829,344.46,52.867 +717830,346.72,52.777 +717831,348.92,52.671 +717832,351.06,52.552 +717833,343.12,52.769 +717834,345.41,52.725 +717835,347.64,52.665 +717836,349.81,52.592 +717837,341.77,52.67 +717838,344.1,52.673 +717839,346.36,52.659 +717840,348.55,52.631 +717841,340.43,52.571 +717842,342.79,52.62 +717843,345.08,52.653 +717844,347.3,52.671 +717845,339.09,52.472 +717846,341.48,52.568 +717847,343.8,52.647 +717848,346.04,52.71 +717849,337.75,52.373 +717850,340.18,52.516 +717851,342.52,52.641 +717852,344.78,52.75 +717853,336.41,52.273 +717854,338.87,52.464 +717855,341.24,52.635 +717856,343.52,52.79 +717857,335.07,52.174 +717858,337.56,52.411 +717859,339.96,52.629 +717860,342.26,52.829 +717861,333.74,52.075 +717862,336.26,52.359 +717863,338.67,52.623 +717864,341,52.868 +717865,332.4,51.975 +717866,334.95,52.307 +717867,337.39,52.617 +717868,339.73,52.907 +717869,331.07,51.876 +717870,333.65,52.255 +717871,336.11,52.611 +717872,338.47,52.946 +717873,329.74,51.777 +717874,332.34,52.203 +717875,334.82,52.604 +717876,337.2,52.985 +717877,328.42,51.678 +717878,331.04,52.151 +717879,333.54,52.598 +717880,335.92,53.024 +717881,327.09,51.579 +717882,329.74,52.099 +717883,332.25,52.592 +717884,334.65,53.062 +717885,325.77,51.481 +717886,328.44,52.047 +717887,330.97,52.585 +717888,333.38,53.1 +717889,324.45,51.382 +717890,327.14,51.995 +717891,329.68,52.579 +717892,332.1,53.137 +717893,323.13,51.284 +717894,325.84,51.944 +717895,328.39,52.572 +717896,330.82,53.174 +717897,321.81,51.187 +717898,324.54,51.892 +717899,327.11,52.565 +717900,329.54,53.211 +717901,320.49,51.089 +717902,323.24,51.841 +717903,325.82,52.559 +717904,328.26,53.247 +717905,319.18,50.993 +717906,321.94,51.79 +717907,324.53,52.551 +717908,326.97,53.283 +717909,317.87,50.896 +717910,320.64,51.739 +717911,323.24,52.544 +717912,325.69,53.318 +717913,316.56,50.8 +717914,319.35,51.688 +717915,321.95,52.537 +717916,324.4,53.352 +717917,315.26,50.705 +717918,318.05,51.637 +717919,320.66,52.529 +717920,323.11,53.386 +717921,313.95,50.61 +717922,316.76,51.587 +717923,319.37,52.521 +717924,321.82,53.42 +717925,312.65,50.516 +717926,315.46,51.536 +717927,318.08,52.513 +717928,320.53,53.452 +717929,311.35,50.423 +717930,314.17,51.486 +717931,316.79,52.505 +717932,319.23,53.484 +717933,310.05,50.33 +717934,312.88,51.437 +717935,315.49,52.497 +717936,317.93,53.516 +717937,308.76,50.238 +717938,311.58,51.387 +717939,314.2,52.488 +717940,316.64,53.546 +717941,307.46,50.146 +717942,310.29,51.338 +717943,312.91,52.479 +717944,315.34,53.576 +717945,306.17,50.056 +717946,309,51.289 +717947,311.61,52.47 +717948,314.03,53.605 +717949,304.88,49.966 +717950,307.71,51.24 +717951,310.32,52.46 +717952,312.73,53.633 +717953,303.6,49.877 +717954,306.43,51.192 +717955,309.02,52.45 +717956,311.42,53.66 +717957,302.31,49.789 +717958,305.14,51.144 +717959,307.72,52.44 +717960,310.12,53.687 +717961,301.03,49.702 +717962,303.85,51.096 +717963,306.43,52.43 +717964,308.81,53.712 +717965,299.75,49.616 +717966,302.56,51.048 +717967,305.13,52.419 +717968,307.49,53.737 +717969,298.47,49.531 +717970,301.28,51.001 +717971,303.83,52.408 +717972,306.18,53.76 +717973,297.2,49.448 +717974,299.99,50.955 +717975,302.53,52.397 +717976,304.87,53.782 +717977,295.93,49.365 +717978,298.71,50.908 +717979,301.23,52.385 +717980,303.55,53.804 +717981,294.66,49.283 +717982,297.43,50.862 +717983,299.93,52.373 +717984,302.23,53.824 +717985,293.39,49.202 +717986,296.14,50.817 +717987,298.63,52.361 +717988,300.91,53.844 +717989,292.12,49.123 +717990,294.86,50.771 +717991,297.33,52.348 +717992,299.59,53.862 +717993,290.86,49.045 +717994,293.58,50.727 +717995,296.03,52.335 +717996,298.27,53.879 +717997,289.6,48.968 +717998,292.3,50.682 +717999,294.73,52.321 +718000,296.95,53.895 +718001,288.34,48.892 +718002,291.02,50.638 +718003,293.43,52.307 +718004,295.62,53.91 +718005,287.08,48.818 +718006,289.74,50.595 +718007,292.13,52.293 +718008,294.29,53.923 +718009,285.83,48.745 +718010,288.46,50.551 +718011,290.82,52.278 +718012,292.96,53.936 +718013,284.57,48.673 +718014,287.18,50.509 +718015,289.52,52.263 +718016,291.63,53.947 +718017,283.32,48.603 +718018,285.91,50.467 +718019,288.21,52.248 +718020,290.3,53.957 +718021,282.08,48.534 +718022,284.63,50.425 +718023,286.91,52.232 +718024,288.97,53.965 +718025,280.83,48.466 +718026,283.36,50.383 +718027,285.6,52.215 +718028,287.63,53.972 +718029,279.59,48.4 +718030,282.08,50.343 +718031,284.3,52.198 +718032,286.3,53.978 +718033,278.35,48.336 +718034,280.81,50.302 +718035,282.99,52.181 +718036,284.96,53.983 +718037,277.11,48.273 +718038,279.53,50.263 +718039,281.69,52.163 +718040,283.62,53.986 +718041,275.87,48.211 +718042,278.26,50.223 +718043,280.38,52.145 +718044,282.28,53.988 +718045,274.63,48.151 +718046,276.99,50.184 +718047,279.07,52.126 +718048,280.94,53.989 +718049,273.4,48.093 +718050,275.72,50.146 +718051,277.76,52.107 +718052,279.59,53.988 +718053,272.17,48.036 +718054,274.45,50.108 +718055,276.45,52.087 +718056,278.25,53.985 +718057,270.94,47.981 +718058,273.18,50.071 +718059,275.15,52.067 +718060,276.9,53.982 +718061,269.71,47.927 +718062,271.91,50.034 +718063,273.84,52.046 +718064,275.56,53.976 +718065,268.49,47.876 +718066,270.64,49.998 +718067,272.53,52.025 +718068,274.21,53.97 +718069,267.26,47.825 +718070,269.37,49.962 +718071,271.22,52.004 +718072,272.86,53.962 +718073,266.04,47.777 +718074,268.1,49.927 +718075,269.91,51.982 +718076,271.51,53.952 +718077,264.82,47.73 +718078,266.83,49.893 +718079,268.6,51.959 +718080,270.16,53.941 +718081,263.6,47.685 +718082,265.57,49.859 +718083,267.28,51.936 +718084,268.81,53.928 +718085,262.38,47.641 +718086,264.3,49.825 +718087,265.97,51.912 +718088,267.45,53.914 +718089,261.17,47.6 +718090,263.03,49.792 +718091,264.66,51.888 +718092,266.1,53.898 +718093,259.96,47.56 +718094,261.77,49.76 +718095,263.35,51.863 +718096,264.74,53.881 +718097,258.74,47.522 +718098,260.51,49.728 +718099,262.04,51.838 +718100,263.39,53.862 +718101,257.53,47.485 +718102,259.24,49.697 +718103,260.72,51.812 +718104,262.03,53.842 +718105,256.32,47.451 +718106,257.98,49.666 +718107,259.41,51.786 +718108,260.67,53.82 +718109,255.12,47.418 +718110,256.71,49.636 +718111,258.1,51.759 +718112,259.31,53.797 +718113,253.91,47.387 +718114,255.45,49.607 +718115,256.78,51.732 +718116,257.95,53.772 +718117,252.7,47.357 +718118,254.19,49.578 +718119,255.47,51.704 +718120,256.59,53.745 +718121,251.5,47.33 +718122,252.93,49.55 +718123,254.16,51.675 +718124,255.23,53.717 +718125,250.3,47.304 +718126,251.67,49.522 +718127,252.84,51.646 +718128,253.87,53.687 +718129,249.1,47.28 +718130,250.41,49.495 +718131,251.53,51.617 +718132,252.5,53.656 +718133,247.9,47.258 +718134,249.14,49.468 +718135,250.21,51.587 +718136,251.14,53.623 +718137,246.7,47.237 +718138,247.88,49.442 +718139,248.9,51.556 +718140,249.77,53.589 +718141,245.5,47.218 +718142,246.62,49.417 +718143,247.58,51.525 +718144,248.41,53.553 +718145,244.3,47.202 +718146,245.36,49.392 +718147,246.27,51.493 +718148,247.04,53.515 +718149,243.1,47.186 +718150,244.11,49.368 +718151,244.95,51.461 +718152,245.68,53.476 +718153,241.91,47.173 +718154,242.85,49.344 +718155,243.64,51.429 +718156,244.31,53.435 +718157,240.71,47.161 +718158,241.59,49.321 +718159,242.32,51.395 +718160,242.94,53.393 +718161,239.52,47.152 +718162,240.33,49.299 +718163,241.01,51.362 +718164,241.57,53.349 +718165,238.32,47.143 +718166,239.07,49.277 +718167,239.69,51.327 +718168,240.21,53.303 +718169,237.13,47.137 +718170,237.81,49.256 +718171,238.38,51.293 +718172,238.84,53.256 +718173,235.93,47.132 +718174,236.56,49.235 +718175,237.06,51.257 +718176,237.47,53.208 +718177,234.74,47.129 +718178,235.3,49.215 +718179,235.74,51.221 +718180,236.1,53.157 +718181,233.55,47.128 +718182,234.04,49.195 +718183,234.43,51.185 +718184,234.73,53.106 +718185,232.36,47.128 +718186,232.78,49.176 +718187,233.11,51.148 +718188,233.36,53.052 +718189,231.17,47.13 +718190,231.53,49.157 +718191,231.8,51.111 +718192,231.99,52.998 +718193,229.97,47.134 +718194,230.27,49.139 +718195,230.48,51.073 +718196,230.62,52.941 +718197,228.78,47.139 +718198,229.01,49.122 +718199,229.16,51.035 +718200,229.25,52.884 +718201,227.59,47.146 +718202,227.76,49.105 +718203,227.85,50.996 +718204,227.88,52.824 +718205,226.4,47.155 +718206,226.5,49.088 +718207,226.53,50.956 +718208,226.51,52.764 +718209,225.21,47.165 +718210,225.24,49.073 +718211,225.22,50.917 +718212,225.14,52.701 +718213,224.02,47.176 +718214,223.99,49.057 +718215,223.9,50.876 +718216,223.77,52.638 +718217,222.82,47.189 +718218,222.73,49.042 +718219,222.59,50.835 +718220,222.4,52.572 +718221,221.63,47.204 +718222,221.47,49.028 +718223,221.27,50.794 +718224,221.03,52.506 +718225,220.44,47.22 +718226,220.22,49.014 +718227,219.96,50.752 +718228,219.66,52.438 +718229,219.25,47.238 +718230,218.96,49.001 +718231,218.64,50.71 +718232,218.29,52.369 +718233,218.05,47.257 +718234,217.7,48.988 +718235,217.32,50.668 +718236,216.92,52.298 +718237,216.86,47.277 +718238,216.45,48.976 +718239,216.01,50.625 +718240,215.55,52.226 +718241,215.66,47.299 +718242,215.19,48.964 +718243,214.7,50.581 +718244,214.18,52.152 +718245,214.47,47.322 +718246,213.93,48.953 +718247,213.38,50.537 +718248,212.81,52.077 +718249,213.27,47.346 +718250,212.68,48.942 +718251,212.07,50.493 +718252,211.44,52.001 +718253,212.08,47.372 +718254,211.42,48.931 +718255,210.75,50.448 +718256,210.07,51.924 +718257,210.88,47.399 +718258,210.16,48.921 +718259,209.44,50.403 +718260,208.71,51.845 +718261,209.68,47.427 +718262,208.91,48.911 +718263,208.13,50.357 +718264,207.34,51.765 +718265,208.48,47.456 +718266,207.65,48.902 +718267,206.81,50.311 +718268,205.97,51.684 +718269,207.28,47.487 +718270,206.39,48.893 +718271,205.5,50.265 +718272,204.6,51.602 +718273,206.08,47.519 +718274,205.13,48.885 +718275,204.19,50.218 +718276,203.24,51.518 +718277,204.88,47.551 +718278,203.88,48.877 +718279,202.87,50.171 +718280,201.87,51.434 +718281,203.68,47.585 +718282,202.62,48.869 +718283,201.56,50.124 +718284,200.51,51.348 +718285,202.48,47.62 +718286,201.36,48.862 +718287,200.25,50.076 +718288,199.14,51.261 +718289,201.27,47.656 +718290,200.1,48.855 +718291,198.94,50.028 +718292,197.78,51.173 +718293,200.07,47.693 +718294,198.84,48.849 +718295,197.63,49.979 +718296,196.42,51.084 +718297,198.86,47.731 +718298,197.58,48.843 +718299,196.32,49.931 +718300,195.06,50.994 +718301,197.65,47.77 +718302,196.32,48.837 +718303,195.01,49.882 +718304,193.69,50.903 +718305,196.44,47.809 +718306,195.07,48.831 +718307,193.7,49.832 +718308,192.33,50.811 +718309,195.23,47.85 +718310,193.81,48.826 +718311,192.39,49.783 +718312,190.97,50.718 +718313,194.02,47.891 +718314,192.55,48.821 +718315,191.08,49.733 +718316,189.62,50.624 +718317,192.8,47.933 +718318,191.28,48.817 +718319,189.77,49.683 +718320,188.26,50.529 +718321,191.59,47.975 +718322,190.02,48.812 +718323,188.46,49.632 +718324,186.9,50.434 +718325,190.37,48.019 +718326,188.76,48.808 +718327,187.15,49.581 +718328,185.55,50.338 +718329,189.15,48.063 +718330,187.5,48.804 +718331,185.85,49.531 +718332,184.19,50.24 +718333,187.94,48.107 +718334,186.24,48.801 +718335,184.54,49.48 +718336,182.84,50.143 +718337,186.71,48.152 +718338,184.98,48.797 +718339,183.23,49.428 +718340,181.49,50.044 +718341,185.49,48.198 +718342,183.71,48.794 +718343,181.93,49.377 +718344,180.14,49.945 +718345,184.27,48.244 +718346,182.45,48.791 +718347,180.62,49.325 +718348,178.79,49.845 +718349,183.04,48.291 +718350,181.19,48.788 +718351,179.32,49.273 +718352,177.44,49.744 +718353,181.81,48.338 +718354,179.92,48.786 +718355,178.01,49.221 +718356,176.09,49.643 +718357,180.58,48.385 +718358,178.66,48.783 +718359,176.71,49.169 +718360,174.75,49.541 +718361,179.35,48.433 +718362,177.39,48.781 +718363,175.41,49.117 +718364,173.4,49.439 +718365,178.12,48.481 +718366,176.13,48.779 +718367,174.11,49.065 +718368,172.06,49.337 +718369,176.89,48.53 +718370,174.86,48.777 +718371,172.8,49.012 +718372,170.72,49.234 +718373,175.65,48.578 +718374,173.59,48.775 +718375,171.5,48.96 +718376,169.38,49.13 +718377,174.41,48.627 +718378,172.33,48.773 +718379,170.2,48.907 +718380,168.04,49.027 +718381,173.17,48.676 +718382,171.06,48.772 +718383,168.9,48.855 +718384,166.7,48.922 +718385,171.93,48.725 +718386,169.79,48.77 +718387,167.6,48.802 +718388,165.37,48.818 +718389,170.69,48.774 +718390,168.52,48.768 +718391,166.31,48.749 +718392,164.03,48.714 +718393,169.44,48.823 +718394,167.25,48.767 +718395,165.01,48.696 +718396,162.7,48.609 +718397,168.2,48.872 +718398,165.98,48.765 +718399,163.71,48.644 +718400,161.37,48.504 +718401,166.95,48.921 +718402,164.71,48.764 +718403,162.41,48.591 +718404,160.04,48.399 +718405,165.7,48.969 +718406,163.44,48.763 +718407,161.12,48.538 +718408,158.71,48.294 +718409,164.45,49.018 +718410,162.17,48.761 +718411,159.82,48.485 +718412,157.39,48.189 +718413,163.19,49.067 +718414,160.9,48.76 +718415,158.53,48.433 +718416,156.06,48.084 +718417,161.94,49.115 +718418,159.63,48.758 +718419,157.23,48.38 +718420,154.74,47.978 +718421,160.68,49.163 +718422,158.36,48.757 +718423,155.94,48.328 +718424,153.42,47.874 +718425,159.42,49.211 +718426,157.08,48.755 +718427,154.65,48.275 +718428,152.11,47.769 +718429,158.16,49.259 +718430,155.81,48.753 +718431,153.36,48.223 +718432,150.79,47.664 +718433,156.89,49.306 +718434,154.53,48.752 +718435,152.07,48.171 +718436,149.48,47.56 +718437,155.63,49.353 +718438,153.26,48.75 +718439,150.78,48.119 +718440,148.16,47.455 +718441,154.36,49.399 +718442,151.98,48.748 +718443,149.49,48.067 +718444,146.85,47.352 +718445,153.09,49.445 +718446,150.71,48.746 +718447,148.2,48.015 +718448,145.55,47.248 +718449,151.82,49.49 +718450,149.43,48.744 +718451,146.91,47.963 +718452,144.24,47.145 +718453,150.55,49.535 +718454,148.15,48.741 +718455,145.62,47.912 +718456,142.94,47.042 +718457,149.27,49.58 +718458,146.87,48.739 +718459,144.34,47.861 +718460,141.63,46.94 +718461,148,49.623 +718462,145.6,48.736 +718463,143.05,47.81 +718464,140.33,46.839 +718465,146.72,49.666 +718466,144.32,48.733 +718467,141.77,47.759 +718468,139.04,46.737 +718469,145.44,49.709 +718470,143.04,48.73 +718471,140.48,47.708 +718472,137.74,46.637 +718473,144.15,49.751 +718474,141.76,48.727 +718475,139.2,47.658 +718476,136.45,46.537 +718477,142.87,49.792 +718478,140.48,48.724 +718479,137.92,47.608 +718480,135.16,46.438 +718481,141.58,49.832 +718482,139.19,48.72 +718483,136.63,47.558 +718484,133.87,46.34 +718485,140.3,49.871 +718486,137.91,48.716 +718487,135.35,47.509 +718488,132.58,46.242 +718489,139.01,49.91 +718490,136.63,48.712 +718491,134.07,47.46 +718492,131.3,46.145 +718493,137.72,49.947 +718494,135.35,48.707 +718495,132.79,47.411 +718496,130.02,46.049 +718497,136.42,49.984 +718498,134.06,48.703 +718499,131.52,47.362 +718500,128.74,45.954 +718501,135.13,50.02 +718502,132.78,48.698 +718503,130.24,47.314 +718504,127.46,45.86 +718505,133.83,50.055 +718506,131.49,48.692 +718507,128.96,47.266 +718508,126.19,45.767 +718509,132.53,50.089 +718510,130.21,48.687 +718511,127.68,47.219 +718512,124.91,45.675 +718513,131.23,50.122 +718514,128.92,48.681 +718515,126.41,47.172 +718516,123.64,45.584 +718517,129.93,50.153 +718518,127.64,48.675 +718519,125.13,47.125 +718520,122.37,45.494 +718521,128.63,50.184 +718522,126.35,48.668 +718523,123.86,47.079 +718524,121.11,45.405 +718525,127.32,50.214 +718526,125.06,48.661 +718527,122.59,47.033 +718528,119.85,45.318 +718529,126.02,50.242 +718530,123.77,48.654 +718531,121.31,46.988 +718532,118.58,45.231 +718533,124.71,50.27 +718534,122.48,48.646 +718535,120.04,46.943 +718536,117.33,45.146 +718537,123.4,50.296 +718538,121.2,48.638 +718539,118.77,46.898 +718540,116.07,45.063 +718541,122.09,50.321 +718542,119.91,48.63 +718543,117.5,46.854 +718544,114.81,44.98 +718545,120.77,50.345 +718546,118.62,48.621 +718547,116.23,46.811 +718548,113.56,44.899 +718549,119.46,50.367 +718550,117.32,48.612 +718551,114.96,46.767 +718552,112.31,44.82 +718553,118.14,50.389 +718554,116.03,48.602 +718555,113.7,46.725 +718556,111.07,44.741 +718557,116.82,50.408 +718558,114.74,48.592 +718559,112.43,46.683 +718560,109.82,44.665 +718561,115.51,50.427 +718562,113.45,48.582 +718563,111.16,46.641 +718564,108.58,44.59 +718565,114.19,50.444 +718566,112.16,48.571 +718567,109.9,46.6 +718568,107.34,44.516 +718569,112.86,50.46 +718570,110.86,48.559 +718571,108.63,46.56 +718572,106.1,44.444 +718573,111.54,50.475 +718574,109.57,48.547 +718575,107.37,46.52 +718576,104.86,44.373 +718577,110.22,50.488 +718578,108.28,48.535 +718579,106.1,46.48 +718580,103.63,44.305 +718581,108.89,50.499 +718582,106.98,48.522 +718583,104.84,46.441 +718584,102.4,44.237 +718585,107.56,50.51 +718586,105.69,48.509 +718587,103.58,46.403 +718588,101.17,44.172 +718589,106.23,50.518 +718590,104.39,48.495 +718591,102.32,46.365 +718592,99.943,44.108 +718593,104.9,50.526 +718594,103.1,48.481 +718595,101.06,46.328 +718596,98.718,44.046 +718597,103.57,50.532 +718598,101.8,48.467 +718599,99.797,46.291 +718600,97.495,43.986 +718601,102.24,50.536 +718602,100.5,48.451 +718603,98.538,46.255 +718604,96.274,43.928 +718605,100.91,50.539 +718606,99.206,48.436 +718607,97.279,46.22 +718608,95.056,43.871 +718609,99.571,50.54 +718610,97.908,48.42 +718611,96.021,46.185 +718612,93.839,43.816 +718613,98.235,50.539 +718614,96.61,48.403 +718615,94.763,46.151 +718616,92.624,43.763 +718617,96.898,50.537 +718618,95.312,48.386 +718619,93.506,46.118 +718620,91.411,43.712 +718621,95.56,50.534 +718622,94.014,48.368 +718623,92.25,46.085 +718624,90.199,43.663 +718625,94.221,50.529 +718626,92.715,48.35 +718627,90.994,46.052 +718628,88.99,43.616 +718629,92.881,50.522 +718630,91.416,48.331 +718631,89.739,46.021 +718632,87.782,43.571 +718633,91.539,50.514 +718634,90.116,48.311 +718635,88.484,45.99 +718636,86.576,43.527 +718637,90.197,50.504 +718638,88.817,48.291 +718639,87.23,45.96 +718640,85.372,43.486 +718641,88.854,50.492 +718642,87.517,48.271 +718643,85.976,45.93 +718644,84.17,43.447 +718645,87.51,50.479 +718646,86.216,48.25 +718647,84.723,45.901 +718648,82.969,43.409 +718649,86.166,50.464 +718650,84.916,48.228 +718651,83.471,45.872 +718652,81.769,43.374 +718653,84.82,50.448 +718654,83.615,48.206 +718655,82.219,45.845 +718656,80.571,43.341 +718657,83.473,50.429 +718658,82.314,48.184 +718659,80.967,45.818 +718660,79.375,43.309 +718661,82.126,50.409 +718662,81.012,48.161 +718663,79.716,45.791 +718664,78.18,43.28 +718665,80.778,50.388 +718666,79.711,48.137 +718667,78.465,45.766 +718668,76.986,43.253 +718669,79.43,50.365 +718670,78.409,48.112 +718671,77.215,45.741 +718672,75.794,43.227 +718673,78.08,50.34 +718674,77.107,48.088 +718675,75.965,45.716 +718676,74.602,43.204 +718677,76.73,50.313 +718678,75.805,48.062 +718679,74.716,45.692 +718680,73.412,43.183 +718681,75.38,50.285 +718682,74.503,48.036 +718683,73.467,45.669 +718684,72.223,43.164 +718685,74.029,50.255 +718686,73.2,48.01 +718687,72.218,45.647 +718688,71.035,43.147 +718689,72.677,50.223 +718690,71.897,47.982 +718691,70.97,45.625 +718692,69.848,43.132 +718693,71.325,50.19 +718694,70.595,47.955 +718695,69.722,45.604 +718696,68.662,43.119 +718697,69.972,50.155 +718698,69.292,47.927 +718699,68.474,45.584 +718700,67.477,43.107 +718701,68.619,50.118 +718702,67.989,47.898 +718703,67.227,45.564 +718704,66.293,43.098 +718705,67.265,50.08 +718706,66.686,47.868 +718707,65.98,45.545 +718708,65.109,43.091 +718709,65.912,50.04 +718710,65.383,47.839 +718711,64.733,45.527 +718712,63.926,43.086 +718713,64.557,49.998 +718714,64.08,47.808 +718715,63.486,45.509 +718716,62.743,43.083 +718717,63.203,49.954 +718718,62.776,47.777 +718719,62.24,45.492 +718720,61.561,43.082 +718721,61.848,49.909 +718722,61.473,47.746 +718723,60.994,45.476 +718724,60.38,43.083 +718725,60.493,49.862 +718726,60.17,47.713 +718727,59.748,45.46 +718728,59.199,43.086 +718729,59.138,49.814 +718730,58.867,47.681 +718731,58.502,45.445 +718732,58.018,43.091 +718733,57.782,49.764 +718734,57.563,47.648 +718735,57.257,45.43 +718736,56.838,43.097 +718737,56.427,49.712 +718738,56.26,47.614 +718739,56.011,45.417 +718740,55.657,43.106 +718741,55.071,49.659 +718742,54.957,47.58 +718743,54.766,45.404 +718744,54.477,43.116 +718745,53.716,49.604 +718746,53.654,47.545 +718747,53.521,45.391 +718748,53.297,43.129 +718749,52.36,49.548 +718750,52.351,47.51 +718751,52.276,45.379 +718752,52.117,43.143 +718753,51.004,49.489 +718754,51.048,47.474 +718755,51.031,45.368 +718756,50.937,43.159 +718757,49.649,49.43 +718758,49.745,47.438 +718759,49.786,45.357 +718760,49.757,43.177 +718761,48.293,49.368 +718762,48.442,47.401 +718763,48.541,45.347 +718764,48.576,43.196 +718765,46.938,49.306 +718766,47.139,47.364 +718767,47.296,45.338 +718768,47.396,43.217 +718769,45.582,49.241 +718770,45.837,47.326 +718771,46.051,45.329 +718772,46.215,43.24 +718773,44.227,49.175 +718774,44.534,47.287 +718775,44.806,45.321 +718776,45.034,43.265 +718777,42.873,49.108 +718778,43.232,47.249 +718779,43.561,45.313 +718780,43.852,43.291 +718781,41.518,49.039 +718782,41.93,47.21 +718783,42.316,45.306 +718784,42.67,43.319 +718785,40.164,48.969 +718786,40.628,47.17 +718787,41.071,45.299 +718788,41.487,43.349 +718789,38.81,48.897 +718790,39.327,47.13 +718791,39.826,45.293 +718792,40.303,43.38 +718793,37.456,48.824 +718794,38.025,47.089 +718795,38.581,45.288 +718796,39.119,43.413 +718797,36.103,48.749 +718798,36.724,47.048 +718799,37.335,45.283 +718800,37.935,43.447 +718801,34.75,48.673 +718802,35.423,47.007 +718803,36.09,45.278 +718804,36.749,43.483 +718805,33.398,48.595 +718806,34.122,46.965 +718807,34.844,45.274 +718808,35.563,43.52 +718809,32.046,48.517 +718810,32.822,46.922 +718811,33.599,45.271 +718812,34.376,43.558 +718813,30.695,48.436 +718814,31.522,46.88 +718815,32.353,45.268 +718816,33.187,43.598 +718817,29.344,48.355 +718818,30.222,46.836 +718819,31.107,45.266 +718820,31.998,43.639 +718821,27.994,48.272 +718822,28.923,46.793 +718823,29.86,45.264 +718824,30.808,43.682 +718825,26.645,48.188 +718826,27.624,46.749 +718827,28.614,45.263 +718828,29.617,43.726 +718829,25.296,48.103 +718830,26.325,46.705 +718831,27.367,45.262 +718832,28.425,43.771 +718833,23.949,48.017 +718834,25.027,46.66 +718835,26.12,45.261 +718836,27.231,43.817 +718837,22.601,47.929 +718838,23.729,46.615 +718839,24.873,45.261 +718840,26.036,43.864 +718841,21.255,47.84 +718842,22.431,46.57 +718843,23.625,45.261 +718844,24.84,43.913 +718845,19.91,47.75 +718846,21.134,46.524 +718847,22.377,45.262 +718848,23.643,43.962 +718849,18.565,47.659 +718850,19.837,46.478 +718851,21.129,45.263 +718852,22.444,44.013 +718853,17.221,47.567 +718854,18.54,46.432 +718855,19.881,45.265 +718856,21.244,44.064 +718857,15.879,47.474 +718858,17.245,46.386 +718859,18.632,45.267 +718860,20.043,44.117 +718861,14.537,47.38 +718862,15.949,46.339 +718863,17.383,45.269 +718864,18.84,44.17 +718865,13.196,47.285 +718866,14.654,46.292 +718867,16.133,45.271 +718868,17.636,44.225 +718869,11.856,47.189 +718870,13.36,46.244 +718871,14.883,45.274 +718872,16.43,44.28 +718873,10.518,47.092 +718874,12.065,46.197 +718875,13.633,45.278 +718876,15.222,44.336 +718877,9.1802,46.995 +718878,10.772,46.149 +718879,12.382,45.281 +718880,14.013,44.392 +718881,7.8438,46.896 +718882,9.4789,46.101 +718883,11.131,45.285 +718884,12.802,44.449 +718885,6.5087,46.797 +718886,8.1864,46.052 +718887,9.8798,45.289 +718888,11.59,44.507 +718889,5.1748,46.697 +718890,6.8945,46.004 +718891,8.6279,45.294 +718892,10.376,44.566 +718893,3.8421,46.596 +718894,5.603,45.955 +718895,7.3755,45.298 +718896,9.1606,44.625 +718897,2.5107,46.494 +718898,4.3122,45.907 +718899,6.1227,45.303 +718900,7.9433,44.685 +718901,1.1807,46.392 +718902,3.0219,45.858 +718903,4.8694,45.308 +718904,6.7242,44.745 +718905,359.85,46.289 +718906,1.7322,45.809 +718907,3.6157,45.314 +718908,5.5033,44.805 +718909,358.52,46.186 +718910,0.44313,45.759 +718911,2.3615,45.319 +718912,4.2807,44.866 +718913,357.2,46.082 +718914,359.15,45.71 +718915,1.1068,45.325 +718916,3.0563,44.928 +718917,355.87,45.977 +718918,357.87,45.661 +718919,359.85,45.331 +718920,1.8301,44.989 +718921,354.55,45.872 +718922,356.58,45.611 +718923,358.6,45.337 +718924,0.60208,45.051 +718925,353.23,45.767 +718926,355.29,45.561 +718927,357.34,45.343 +718928,359.37,45.113 +718929,351.91,45.661 +718930,354.01,45.512 +718931,356.08,45.35 +718932,358.14,45.176 +718933,350.59,45.555 +718934,352.72,45.462 +718935,354.83,45.356 +718936,356.91,45.238 +718937,349.28,45.449 +718938,351.44,45.412 +718939,353.57,45.363 +718940,355.67,45.301 +718941,347.96,45.342 +718942,350.15,45.363 +718943,352.31,45.369 +718944,354.43,45.363 +718945,346.65,45.235 +718946,348.87,45.313 +718947,351.05,45.376 +718948,353.19,45.426 +718949,345.34,45.128 +718950,347.59,45.263 +718951,349.79,45.383 +718952,351.95,45.488 +718953,344.03,45.021 +718954,346.3,45.214 +718955,348.53,45.39 +718956,350.71,45.551 +718957,342.72,44.914 +718958,345.02,45.164 +718959,347.27,45.397 +718960,349.47,45.613 +718961,341.41,44.807 +718962,343.74,45.114 +718963,346.01,45.403 +718964,348.22,45.675 +718965,340.11,44.699 +718966,342.46,45.065 +718967,344.75,45.41 +718968,346.97,45.737 +718969,338.81,44.592 +718970,341.18,45.016 +718971,343.49,45.417 +718972,345.72,45.799 +718973,337.5,44.485 +718974,339.91,44.966 +718975,342.22,45.424 +718976,344.47,45.86 +718977,336.21,44.378 +718978,338.63,44.917 +718979,340.96,45.431 +718980,343.21,45.921 +718981,334.91,44.271 +718982,337.35,44.868 +718983,339.7,45.438 +718984,341.96,45.982 +718985,333.61,44.165 +718986,336.07,44.819 +718987,338.43,45.444 +718988,340.7,46.043 +718989,332.32,44.059 +718990,334.8,44.77 +718991,337.17,45.451 +718992,339.44,46.103 +718993,331.03,43.953 +718994,333.52,44.722 +718995,335.9,45.457 +718996,338.18,46.162 +718997,329.74,43.847 +718998,332.25,44.674 +718999,334.64,45.464 +719000,336.91,46.221 +719001,328.46,43.742 +719002,330.98,44.626 +719003,333.37,45.47 +719004,335.65,46.279 +719005,327.17,43.638 +719006,329.7,44.578 +719007,332.1,45.476 +719008,334.38,46.337 +719009,325.89,43.533 +719010,328.43,44.53 +719011,330.83,45.482 +719012,333.11,46.394 +719013,324.61,43.43 +719014,327.16,44.483 +719015,329.56,45.488 +719016,331.84,46.451 +719017,323.33,43.327 +719018,325.89,44.436 +719019,328.3,45.494 +719020,330.56,46.506 +719021,322.05,43.225 +719022,324.62,44.389 +719023,327.03,45.499 +719024,329.29,46.562 +719025,320.78,43.123 +719026,323.35,44.342 +719027,325.76,45.504 +719028,328.01,46.616 +719029,319.51,43.022 +719030,322.09,44.296 +719031,324.48,45.509 +719032,326.73,46.669 +719033,318.24,42.923 +719034,320.82,44.25 +719035,323.21,45.514 +719036,325.45,46.722 +719037,316.97,42.823 +719038,319.55,44.205 +719039,321.94,45.519 +719040,324.17,46.774 +719041,315.71,42.725 +719042,318.29,44.159 +719043,320.67,45.523 +719044,322.89,46.824 +719045,314.44,42.628 +719046,317.02,44.115 +719047,319.4,45.527 +719048,321.6,46.874 +719049,313.18,42.532 +719050,315.76,44.07 +719051,318.12,45.531 +719052,320.32,46.923 +719053,311.93,42.436 +719054,314.5,44.026 +719055,316.85,45.534 +719056,319.03,46.971 +719057,310.67,42.342 +719058,313.23,43.983 +719059,315.57,45.538 +719060,317.74,47.018 +719061,309.42,42.249 +719062,311.97,43.94 +719063,314.3,45.54 +719064,316.44,47.064 +719065,308.16,42.157 +719066,310.71,43.897 +719067,313.02,45.543 +719068,315.15,47.108 +719069,306.91,42.067 +719070,309.45,43.855 +719071,311.75,45.545 +719072,313.85,47.152 +719073,305.67,41.977 +719074,308.19,43.813 +719075,310.47,45.547 +719076,312.56,47.194 +719077,304.42,41.889 +719078,306.93,43.772 +719079,309.19,45.549 +719080,311.26,47.235 +719081,303.18,41.803 +719082,305.67,43.731 +719083,307.91,45.55 +719084,309.96,47.275 +719085,301.94,41.717 +719086,304.42,43.69 +719087,306.64,45.551 +719088,308.66,47.314 +719089,300.7,41.633 +719090,303.16,43.651 +719091,305.36,45.551 +719092,307.35,47.351 +719093,299.47,41.551 +719094,301.9,43.611 +719095,304.08,45.551 +719096,306.05,47.387 +719097,298.23,41.47 +719098,300.65,43.573 +719099,302.8,45.55 +719100,304.74,47.422 +719101,297,41.391 +719102,299.39,43.535 +719103,301.52,45.55 +719104,303.43,47.456 +719105,295.77,41.313 +719106,298.14,43.497 +719107,300.24,45.548 +719108,302.12,47.488 +719109,294.55,41.237 +719110,296.89,43.46 +719111,298.96,45.547 +719112,300.81,47.518 +719113,293.32,41.163 +719114,295.64,43.424 +719115,297.67,45.544 +719116,299.5,47.548 +719117,292.1,41.09 +719118,294.38,43.388 +719119,296.39,45.542 +719120,298.19,47.576 +719121,290.88,41.019 +719122,293.13,43.353 +719123,295.11,45.539 +719124,296.88,47.602 +719125,289.66,40.95 +719126,291.88,43.318 +719127,293.83,45.535 +719128,295.56,47.627 +719129,288.44,40.883 +719130,290.63,43.284 +719131,292.54,45.531 +719132,294.24,47.65 +719133,287.23,40.817 +719134,289.38,43.251 +719135,291.26,45.527 +719136,292.92,47.672 +719137,286.02,40.754 +719138,288.14,43.218 +719139,289.98,45.522 +719140,291.61,47.692 +719141,284.81,40.692 +719142,286.89,43.186 +719143,288.69,45.516 +719144,290.28,47.711 +719145,283.6,40.633 +719146,285.64,43.155 +719147,287.41,45.51 +719148,288.96,47.728 +719149,282.39,40.575 +719150,284.39,43.124 +719151,286.12,45.504 +719152,287.64,47.744 +719153,281.19,40.519 +719154,283.15,43.094 +719155,284.83,45.497 +719156,286.32,47.758 +719157,279.99,40.466 +719158,281.9,43.065 +719159,283.55,45.489 +719160,284.99,47.77 +719161,278.78,40.414 +719162,280.66,43.036 +719163,282.26,45.481 +719164,283.67,47.781 +719165,277.59,40.364 +719166,279.41,43.008 +719167,280.98,45.473 +719168,282.34,47.79 +719169,276.39,40.317 +719170,278.17,42.981 +719171,279.69,45.464 +719172,281.01,47.797 +719173,275.19,40.272 +719174,276.93,42.954 +719175,278.4,45.454 +719176,279.68,47.803 +719177,274,40.229 +719178,275.68,42.928 +719179,277.11,45.444 +719180,278.35,47.807 +719181,272.81,40.188 +719182,274.44,42.903 +719183,275.83,45.433 +719184,277.02,47.81 +719185,271.62,40.149 +719186,273.2,42.879 +719187,274.54,45.422 +719188,275.69,47.81 +719189,270.43,40.112 +719190,271.96,42.855 +719191,273.25,45.41 +719192,274.36,47.809 +719193,269.24,40.078 +719194,270.72,42.833 +719195,271.96,45.397 +719196,273.03,47.806 +719197,268.05,40.046 +719198,269.48,42.81 +719199,270.67,45.384 +719200,271.7,47.802 +719201,266.87,40.016 +719202,268.24,42.789 +719203,269.38,45.371 +719204,270.36,47.795 +719205,265.68,39.989 +719206,267,42.768 +719207,268.09,45.356 +719208,269.03,47.787 +719209,264.5,39.963 +719210,265.76,42.748 +719211,266.8,45.342 +719212,267.69,47.778 +719213,263.32,39.94 +719214,264.52,42.729 +719215,265.51,45.326 +719216,266.36,47.766 +719217,262.14,39.919 +719218,263.28,42.711 +719219,264.23,45.311 +719220,265.02,47.753 +719221,260.96,39.901 +719222,262.05,42.693 +719223,262.94,45.294 +719224,263.68,47.738 +719225,259.78,39.885 +719226,260.81,42.676 +719227,261.65,45.277 +719228,262.35,47.721 +719229,258.6,39.871 +719230,259.57,42.66 +719231,260.36,45.259 +719232,261.01,47.702 +719233,257.43,39.859 +719234,258.33,42.645 +719235,259.06,45.241 +719236,259.67,47.682 +719237,256.25,39.85 +719238,257.1,42.63 +719239,257.77,45.222 +719240,258.33,47.659 +719241,255.07,39.843 +719242,255.86,42.617 +719243,256.48,45.203 +719244,256.99,47.635 +719245,253.9,39.838 +719246,254.62,42.604 +719247,255.19,45.183 +719248,255.65,47.61 +719249,252.73,39.835 +719250,253.39,42.591 +719251,253.9,45.163 +719252,254.31,47.582 +719253,251.55,39.835 +719254,252.15,42.58 +719255,252.61,45.142 +719256,252.97,47.553 +719257,250.38,39.837 +719258,250.92,42.569 +719259,251.32,45.12 +719260,251.63,47.522 +719261,249.21,39.841 +719262,249.68,42.559 +719263,250.03,45.098 +719264,250.29,47.489 +719265,248.03,39.848 +719266,248.44,42.549 +719267,248.74,45.075 +719268,248.95,47.454 +719269,246.86,39.856 +719270,247.21,42.541 +719271,247.45,45.052 +719272,247.61,47.418 +719273,245.69,39.867 +719274,245.97,42.533 +719275,246.16,45.028 +719276,246.27,47.38 +719277,244.52,39.88 +719278,244.74,42.526 +719279,244.87,45.003 +719280,244.93,47.34 +719281,243.35,39.895 +719282,243.5,42.52 +719283,243.58,44.978 +719284,243.59,47.298 +719285,242.17,39.912 +719286,242.27,42.514 +719287,242.29,44.953 +719288,242.25,47.255 +719289,241,39.932 +719290,241.03,42.509 +719291,241,44.927 +719292,240.91,47.21 +719293,239.83,39.953 +719294,239.8,42.505 +719295,239.71,44.9 +719296,239.57,47.163 +719297,238.66,39.977 +719298,238.56,42.501 +719299,238.42,44.873 +719300,238.23,47.115 +719301,237.48,40.003 +719302,237.33,42.499 +719303,237.13,44.845 +719304,236.89,47.065 +719305,236.31,40.03 +719306,236.09,42.497 +719307,235.84,44.817 +719308,235.55,47.013 +719309,235.14,40.06 +719310,234.86,42.495 +719311,234.55,44.788 +719312,234.22,46.96 +719313,233.96,40.092 +719314,233.62,42.495 +719315,233.26,44.759 +719316,232.88,46.905 +719317,232.79,40.125 +719318,232.39,42.495 +719319,231.97,44.729 +719320,231.54,46.848 +719321,231.61,40.161 +719322,231.15,42.495 +719323,230.68,44.699 +719324,230.2,46.79 +719325,230.44,40.198 +719326,229.92,42.497 +719327,229.39,44.668 +719328,228.86,46.73 +719329,229.26,40.238 +719330,228.68,42.498 +719331,228.1,44.636 +719332,227.53,46.668 +719333,228.08,40.279 +719334,227.45,42.501 +719335,226.82,44.605 +719336,226.19,46.605 +719337,226.9,40.322 +719338,226.21,42.504 +719339,225.53,44.572 +719340,224.85,46.541 +719341,225.72,40.366 +719342,224.98,42.508 +719343,224.24,44.54 +719344,223.52,46.475 +719345,224.54,40.412 +719346,223.74,42.513 +719347,222.95,44.507 +719348,222.18,46.407 +719349,223.36,40.46 +719350,222.5,42.518 +719351,221.67,44.473 +719352,220.85,46.338 +719353,222.18,40.51 +719354,221.27,42.523 +719355,220.38,44.439 +719356,219.51,46.268 +719357,221,40.561 +719358,220.03,42.53 +719359,219.09,44.404 +719360,218.18,46.196 +719361,219.81,40.614 +719362,218.79,42.537 +719363,217.81,44.369 +719364,216.85,46.122 +719365,218.63,40.668 +719366,217.55,42.544 +719367,216.52,44.334 +719368,215.52,46.047 +719369,217.44,40.724 +719370,216.32,42.552 +719371,215.23,44.298 +719372,214.19,45.971 +719373,216.25,40.781 +719374,215.08,42.561 +719375,213.95,44.262 +719376,212.86,45.894 +719377,215.06,40.84 +719378,213.84,42.57 +719379,212.66,44.226 +719380,211.53,45.815 +719381,213.87,40.899 +719382,212.6,42.579 +719383,211.38,44.189 +719384,210.2,45.735 +719385,212.68,40.961 +719386,211.36,42.589 +719387,210.1,44.152 +719388,208.87,45.653 +719389,211.48,41.023 +719390,210.12,42.6 +719391,208.81,44.114 +719392,207.55,45.571 +719393,210.29,41.087 +719394,208.88,42.611 +719395,207.53,44.076 +719396,206.22,45.487 +719397,209.09,41.151 +719398,207.64,42.622 +719399,206.25,44.038 +719400,204.9,45.402 +719401,207.89,41.217 +719402,206.4,42.634 +719403,204.96,43.999 +719404,203.57,45.316 +719405,206.69,41.284 +719406,205.16,42.646 +719407,203.68,43.96 +719408,202.25,45.229 +719409,205.49,41.352 +719410,203.92,42.659 +719411,202.4,43.921 +719412,200.93,45.14 +719413,204.29,41.421 +719414,202.68,42.673 +719415,201.12,43.882 +719416,199.61,45.051 +719417,203.08,41.491 +719418,201.44,42.686 +719419,199.84,43.842 +719420,198.29,44.961 +719421,201.87,41.562 +719422,200.19,42.7 +719423,198.56,43.802 +719424,196.97,44.869 +719425,200.66,41.634 +719426,198.95,42.714 +719427,197.28,43.762 +719428,195.66,44.777 +719429,199.45,41.706 +719430,197.71,42.729 +719431,196,43.721 +719432,194.34,44.684 +719433,198.24,41.779 +719434,196.46,42.744 +719435,194.73,43.681 +719436,193.03,44.59 +719437,197.03,41.853 +719438,195.22,42.76 +719439,193.45,43.64 +719440,191.72,44.495 +719441,195.81,41.928 +719442,193.97,42.775 +719443,192.17,43.599 +719444,190.41,44.399 +719445,194.59,42.003 +719446,192.73,42.791 +719447,190.9,43.558 +719448,189.1,44.302 +719449,193.37,42.079 +719450,191.48,42.808 +719451,189.62,43.516 +719452,187.79,44.205 +719453,192.15,42.155 +719454,190.23,42.824 +719455,188.34,43.475 +719456,186.48,44.107 +719457,190.93,42.232 +719458,188.99,42.841 +719459,187.07,43.433 +719460,185.18,44.008 +719461,189.7,42.309 +719462,187.74,42.858 +719463,185.8,43.391 +719464,183.88,43.909 +719465,188.48,42.386 +719466,186.49,42.875 +719467,184.52,43.35 +719468,182.57,43.809 +719469,187.25,42.464 +719470,185.24,42.893 +719471,183.25,43.308 +719472,181.27,43.709 +719473,186.02,42.542 +719474,183.99,42.91 +719475,181.98,43.266 +719476,179.98,43.608 +719477,184.78,42.62 +719478,182.74,42.928 +719479,180.71,43.224 +719480,178.68,43.507 +719481,183.55,42.699 +719482,181.49,42.946 +719483,179.44,43.182 +719484,177.38,43.405 +719485,182.31,42.777 +719486,180.24,42.964 +719487,178.17,43.139 +719488,176.09,43.303 +719489,181.07,42.856 +719490,178.99,42.982 +719491,176.9,43.097 +719492,174.8,43.201 +719493,179.83,42.935 +719494,177.73,43.001 +719495,175.63,43.055 +719496,173.51,43.098 +719497,178.59,43.014 +719498,176.48,43.019 +719499,174.36,43.013 +719500,172.22,42.995 +719501,177.34,43.092 +719502,175.23,43.038 +719503,173.09,42.971 +719504,170.94,42.892 +719505,176.1,43.171 +719506,173.97,43.056 +719507,171.83,42.929 +719508,169.65,42.789 +719509,174.85,43.249 +719510,172.72,43.075 +719511,170.56,42.887 +719512,168.37,42.686 +719513,173.6,43.327 +719514,171.46,43.093 +719515,169.29,42.845 +719516,167.09,42.582 +719517,172.34,43.405 +719518,170.21,43.112 +719519,168.03,42.804 +719520,165.81,42.479 +719521,171.09,43.483 +719522,168.95,43.131 +719523,166.77,42.762 +719524,164.53,42.376 +719525,169.83,43.561 +719526,167.69,43.149 +719527,165.5,42.72 +719528,163.26,42.273 +719529,168.57,43.638 +719530,166.44,43.168 +719531,164.24,42.679 +719532,161.98,42.17 +719533,167.31,43.714 +719534,165.18,43.187 +719535,162.98,42.638 +719536,160.71,42.067 +719537,166.05,43.791 +719538,163.92,43.205 +719539,161.72,42.597 +719540,159.44,41.964 +719541,164.79,43.866 +719542,162.66,43.224 +719543,160.46,42.556 +719544,158.18,41.862 +719545,163.52,43.942 +719546,161.4,43.242 +719547,159.2,42.516 +719548,156.91,41.76 +719549,162.26,44.016 +719550,160.14,43.261 +719551,157.94,42.475 +719552,155.65,41.659 +719553,160.99,44.09 +719554,158.88,43.279 +719555,156.68,42.435 +719556,154.39,41.557 +719557,159.72,44.164 +719558,157.61,43.297 +719559,155.42,42.395 +719560,153.13,41.457 +719561,158.44,44.236 +719562,156.35,43.315 +719563,154.17,42.356 +719564,151.87,41.357 +719565,157.17,44.308 +719566,155.09,43.332 +719567,152.91,42.317 +719568,150.62,41.257 +719569,155.89,44.38 +719570,153.82,43.35 +719571,151.65,42.278 +719572,149.37,41.158 +719573,154.61,44.45 +719574,152.56,43.367 +719575,150.4,42.239 +719576,148.12,41.06 +719577,153.33,44.52 +719578,151.3,43.385 +719579,149.15,42.201 +719580,146.87,40.963 +719581,152.05,44.588 +719582,150.03,43.402 +719583,147.89,42.163 +719584,145.62,40.866 +719585,150.77,44.656 +719586,148.76,43.418 +719587,146.64,42.125 +719588,144.38,40.771 +719589,149.48,44.723 +719590,147.5,43.435 +719591,145.39,42.088 +719592,143.13,40.676 +719593,148.2,44.789 +719594,146.23,43.451 +719595,144.14,42.051 +719596,141.89,40.582 +719597,146.91,44.854 +719598,144.96,43.467 +719599,142.89,42.015 +719600,140.66,40.489 +719601,145.62,44.918 +719602,143.69,43.483 +719603,141.64,41.979 +719604,139.42,40.397 +719605,144.33,44.98 +719606,142.42,43.498 +719607,140.39,41.944 +719608,138.19,40.306 +719609,143.03,45.042 +719610,141.16,43.514 +719611,139.14,41.909 +719612,136.96,40.216 +719613,141.74,45.102 +719614,139.89,43.528 +719615,137.89,41.874 +719616,135.73,40.128 +719617,140.44,45.162 +719618,138.62,43.543 +719619,136.65,41.84 +719620,134.5,40.041 +719621,139.15,45.22 +719622,137.34,43.557 +719623,135.4,41.806 +719624,133.27,39.955 +719625,137.85,45.277 +719626,136.07,43.571 +719627,134.15,41.773 +719628,132.05,39.87 +719629,136.55,45.333 +719630,134.8,43.584 +719631,132.91,41.741 +719632,130.83,39.787 +719633,135.25,45.387 +719634,133.53,43.597 +719635,131.66,41.709 +719636,129.61,39.705 +719637,133.94,45.44 +719638,132.26,43.61 +719639,130.42,41.677 +719640,128.39,39.625 +719641,132.64,45.492 +719642,130.98,43.622 +719643,129.18,41.647 +719644,127.18,39.546 +719645,131.33,45.542 +719646,129.71,43.634 +719647,127.93,41.616 +719648,125.97,39.469 +719649,130.03,45.591 +719650,128.43,43.646 +719651,126.69,41.587 +719652,124.76,39.393 +719653,128.72,45.638 +719654,127.16,43.657 +719655,125.45,41.558 +719656,123.55,39.319 +719657,127.41,45.685 +719658,125.88,43.667 +719659,124.21,41.529 +719660,122.34,39.247 +719661,126.1,45.729 +719662,124.61,43.678 +719663,122.97,41.501 +719664,121.13,39.177 +719665,124.79,45.772 +719666,123.33,43.687 +719667,121.73,41.474 +719668,119.93,39.108 +719669,123.48,45.814 +719670,122.06,43.697 +719671,120.49,41.448 +719672,118.73,39.041 +719673,122.16,45.854 +719674,120.78,43.705 +719675,119.25,41.422 +719676,117.53,38.976 +719677,120.85,45.893 +719678,119.5,43.714 +719679,118.01,41.397 +719680,116.33,38.913 +719681,119.53,45.93 +719682,118.23,43.722 +719683,116.78,41.372 +719684,115.13,38.852 +719685,118.22,45.965 +719686,116.95,43.729 +719687,115.54,41.348 +719688,113.94,38.793 +719689,116.9,45.999 +719690,115.67,43.736 +719691,114.3,41.325 +719692,112.75,38.735 +719693,115.58,46.031 +719694,114.39,43.742 +719695,113.07,41.303 +719696,111.56,38.68 +719697,114.26,46.061 +719698,113.11,43.748 +719699,111.83,41.281 +719700,110.37,38.627 +719701,112.94,46.09 +719702,111.83,43.753 +719703,110.6,41.26 +719704,109.18,38.576 +719705,111.62,46.117 +719706,110.55,43.758 +719707,109.36,41.24 +719708,107.99,38.527 +719709,110.3,46.143 +719710,109.28,43.762 +719711,108.13,41.22 +719712,106.81,38.481 +719713,108.97,46.167 +719714,108,43.766 +719715,106.89,41.202 +719716,105.62,38.436 +719717,107.65,46.189 +719718,106.71,43.769 +719719,105.66,41.184 +719720,104.44,38.394 +719721,106.33,46.209 +719722,105.43,43.772 +719723,104.43,41.167 +719724,103.26,38.354 +719725,105,46.228 +719726,104.15,43.774 +719727,103.19,41.15 +719728,102.08,38.316 +719729,103.68,46.245 +719730,102.87,43.775 +719731,101.96,41.134 +719732,100.9,38.281 +719733,102.35,46.26 +719734,101.59,43.776 +719735,100.73,41.12 +719736,99.721,38.248 +719737,101.02,46.273 +719738,100.31,43.777 +719739,99.497,41.105 +719740,98.544,38.217 +719741,99.698,46.285 +719742,99.029,43.777 +719743,98.265,41.092 +719744,97.368,38.189 +719745,98.37,46.294 +719746,97.748,43.776 +719747,97.034,41.08 +719748,96.193,38.163 +719749,97.042,46.302 +719750,96.466,43.775 +719751,95.803,41.068 +719752,95.019,38.139 +719753,95.714,46.308 +719754,95.184,43.773 +719755,94.572,41.057 +719756,93.845,38.118 +719757,94.386,46.313 +719758,93.902,43.77 +719759,93.341,41.047 +719760,92.673,38.099 +719761,93.057,46.315 +719762,92.62,43.767 +719763,92.111,41.038 +719764,91.501,38.083 +719765,91.728,46.316 +719766,91.338,43.763 +719767,90.881,41.029 +719768,90.33,38.069 +719769,90.398,46.315 +719770,90.056,43.759 +719771,89.651,41.021 +719772,89.159,38.057 +719773,89.068,46.312 +719774,88.773,43.754 +719775,88.421,41.015 +719776,87.988,38.048 +719777,87.739,46.307 +719778,87.491,43.749 +719779,87.191,41.009 +719780,86.818,38.042 +719781,86.409,46.301 +719782,86.208,43.743 +719783,85.961,41.003 +719784,85.649,38.037 +719785,85.079,46.292 +719786,84.926,43.736 +719787,84.732,40.999 +719788,84.48,38.036 +719789,83.748,46.282 +719790,83.643,43.729 +719791,83.502,40.995 +719792,83.31,38.036 +719793,82.418,46.27 +719794,82.361,43.721 +719795,82.273,40.993 +719796,82.141,38.04 +719797,81.088,46.256 +719798,81.078,43.713 +719799,81.044,40.991 +719800,80.972,38.045 +719801,79.758,46.241 +719802,79.796,43.704 +719803,79.814,40.989 +719804,79.803,38.053 +719805,78.427,46.223 +719806,78.514,43.695 +719807,78.585,40.989 +719808,78.634,38.064 +719809,77.097,46.204 +719810,77.231,43.685 +719811,77.355,40.989 +719812,77.465,38.076 +719813,75.767,46.183 +719814,75.949,43.674 +719815,76.126,40.991 +719816,76.296,38.092 +719817,74.438,46.16 +719818,74.667,43.663 +719819,74.896,40.993 +719820,75.126,38.109 +719821,73.108,46.135 +719822,73.385,43.651 +719823,73.667,40.996 +719824,73.956,38.129 +719825,71.779,46.109 +719826,72.103,43.639 +719827,72.437,40.999 +719828,72.786,38.151 +719829,70.45,46.08 +719830,70.821,43.626 +719831,71.208,41.004 +719832,71.615,38.176 +719833,69.121,46.05 +719834,69.539,43.612 +719835,69.978,41.009 +719836,70.443,38.203 +719837,67.793,46.018 +719838,68.257,43.598 +719839,68.748,41.015 +719840,69.271,38.232 +719841,66.465,45.985 +719842,66.976,43.583 +719843,67.518,41.022 +719844,68.099,38.264 +719845,65.137,45.95 +719846,65.695,43.568 +719847,66.287,41.029 +719848,66.925,38.297 +719849,63.81,45.913 +719850,64.414,43.553 +719851,65.057,41.037 +719852,65.751,38.333 +719853,62.484,45.874 +719854,63.133,43.536 +719855,63.826,41.046 +719856,64.576,38.371 +719857,61.158,45.834 +719858,61.853,43.52 +719859,62.595,41.056 +719860,63.4,38.412 +719861,59.832,45.791 +719862,60.572,43.502 +719863,61.364,41.067 +719864,62.223,38.454 +719865,58.507,45.748 +719866,59.292,43.484 +719867,60.132,41.078 +719868,61.045,38.499 +719869,57.183,45.702 +719870,58.012,43.466 +719871,58.901,41.09 +719872,59.866,38.545 +719873,55.859,45.655 +719874,56.733,43.447 +719875,57.668,41.103 +719876,58.686,38.594 +719877,54.536,45.606 +719878,55.453,43.428 +719879,56.436,41.116 +719880,57.504,38.645 +719881,53.214,45.556 +719882,54.174,43.408 +719883,55.203,41.13 +719884,56.322,38.697 +719885,51.893,45.504 +719886,52.896,43.388 +719887,53.97,41.145 +719888,55.138,38.752 +719889,50.572,45.451 +719890,51.618,43.367 +719891,52.737,41.16 +719892,53.952,38.808 +719893,49.253,45.396 +719894,50.34,43.346 +719895,51.503,41.176 +719896,52.766,38.866 +719897,47.934,45.339 +719898,49.062,43.324 +719899,50.269,41.193 +719900,51.578,38.926 +719901,46.616,45.281 +719902,47.785,43.302 +719903,49.035,41.211 +719904,50.388,38.988 +719905,45.299,45.222 +719906,46.508,43.279 +719907,47.8,41.229 +719908,49.197,39.052 +719909,43.983,45.161 +719910,45.231,43.256 +719911,46.564,41.247 +719912,48.004,39.117 +719913,42.668,45.098 +719914,43.955,43.233 +719915,45.329,41.266 +719916,46.81,39.184 +719917,41.354,45.035 +719918,42.679,43.209 +719919,44.092,41.286 +719920,45.614,39.252 +719921,40.041,44.969 +719922,41.404,43.185 +719923,42.856,41.307 +719924,44.417,39.322 +719925,38.729,44.903 +719926,40.129,43.16 +719927,41.618,41.328 +719928,43.218,39.394 +719929,37.419,44.835 +719930,38.855,43.135 +719931,40.381,41.349 +719932,42.017,39.467 +719933,36.109,44.766 +719934,37.581,43.109 +719935,39.143,41.372 +719936,40.814,39.541 +719937,34.801,44.695 +719938,36.307,43.084 +719939,37.904,41.394 +719940,39.61,39.617 +719941,33.494,44.624 +719942,35.034,43.058 +719943,36.665,41.417 +719944,38.403,39.694 +719945,32.188,44.551 +719946,33.762,43.031 +719947,35.425,41.441 +719948,37.195,39.772 +719949,30.883,44.477 +719950,32.49,43.004 +719951,34.185,41.465 +719952,35.985,39.852 +719953,29.58,44.401 +719954,31.218,42.977 +719955,32.944,41.49 +719956,34.773,39.933 +719957,28.278,44.325 +719958,29.947,42.95 +719959,31.703,41.515 +719960,33.56,40.014 +719961,26.978,44.247 +719962,28.677,42.922 +719963,30.461,41.541 +719964,32.344,40.097 +719965,25.679,44.169 +719966,27.407,42.894 +719967,29.218,41.567 +719968,31.127,40.181 +719969,24.381,44.089 +719970,26.137,42.866 +719971,27.975,41.593 +719972,29.907,40.266 +719973,23.085,44.009 +719974,24.869,42.837 +719975,26.731,41.62 +719976,28.686,40.352 +719977,21.791,43.927 +719978,23.6,42.809 +719979,25.487,41.647 +719980,27.462,40.439 +719981,20.497,43.845 +719982,22.332,42.78 +719983,24.242,41.675 +719984,26.237,40.526 +719985,19.206,43.762 +719986,21.065,42.751 +719987,22.997,41.703 +719988,25.009,40.615 +719989,17.916,43.677 +719990,19.799,42.721 +719991,21.751,41.731 +719992,23.78,40.704 +719993,16.627,43.592 +719994,18.533,42.692 +719995,20.504,41.759 +719996,22.548,40.793 +719997,15.341,43.507 +719998,17.267,42.662 +719999,19.256,41.788 +720000,21.315,40.884 +720001,14.056,43.42 +720002,16.002,42.632 +720003,18.008,41.818 +720004,20.08,40.975 +720005,12.772,43.333 +720006,14.738,42.603 +720007,16.76,41.847 +720008,18.842,41.066 +720009,11.49,43.245 +720010,13.475,42.572 +720011,15.51,41.877 +720012,17.603,41.158 +720013,10.21,43.157 +720014,12.211,42.542 +720015,14.261,41.907 +720016,16.361,41.25 +720017,8.932,43.068 +720018,10.949,42.512 +720019,13.01,41.937 +720020,15.118,41.343 +720021,7.6554,42.978 +720022,9.6873,42.482 +720023,11.759,41.968 +720024,13.872,41.436 +720025,6.3806,42.888 +720026,8.4261,42.451 +720027,10.507,41.998 +720028,12.625,41.529 +720029,5.1077,42.798 +720030,7.1656,42.421 +720031,9.2543,42.029 +720032,11.376,41.623 +720033,3.8365,42.707 +720034,5.9057,42.39 +720035,8.0012,42.06 +720036,10.124,41.716 +720037,2.5672,42.615 +720038,4.6465,42.36 +720039,6.7473,42.091 +720040,8.8708,41.81 +720041,1.2997,42.524 +720042,3.3878,42.329 +720043,5.4929,42.123 +720044,7.6155,41.904 +720045,0.034105,42.432 +720046,2.1299,42.299 +720047,4.2377,42.154 +720048,6.3582,41.998 +720049,358.77,42.34 +720050,0.87254,42.268 +720051,2.9819,42.186 +720052,5.0989,42.092 +720053,357.51,42.248 +720054,359.62,42.238 +720055,1.7255,42.217 +720056,3.8377,42.186 +720057,356.25,42.155 +720058,358.36,42.208 +720059,0.46836,42.249 +720060,2.5746,42.279 +720061,354.99,42.063 +720062,357.1,42.177 +720063,359.21,42.281 +720064,1.3096,42.373 +720065,353.73,41.97 +720066,355.85,42.147 +720067,357.95,42.313 +720068,0.042764,42.466 +720069,352.48,41.878 +720070,354.6,42.117 +720071,356.69,42.344 +720072,358.77,42.56 +720073,351.23,41.786 +720074,353.34,42.087 +720075,355.43,42.376 +720076,357.5,42.652 +720077,349.98,41.693 +720078,352.09,42.058 +720079,354.17,42.408 +720080,356.23,42.745 +720081,348.73,41.601 +720082,350.84,42.028 +720083,352.91,42.44 +720084,354.96,42.837 +720085,347.48,41.509 +720086,349.59,41.999 +720087,351.65,42.472 +720088,353.68,42.929 +720089,346.24,41.417 +720090,348.33,41.969 +720091,350.39,42.503 +720092,352.4,43.02 +720093,345,41.326 +720094,347.08,41.94 +720095,349.13,42.535 +720096,351.12,43.111 +720097,343.76,41.235 +720098,345.83,41.912 +720099,347.86,42.567 +720100,349.84,43.201 +720101,342.52,41.144 +720102,344.59,41.883 +720103,346.6,42.598 +720104,348.56,43.29 +720105,341.28,41.054 +720106,343.34,41.855 +720107,345.33,42.629 +720108,347.27,43.379 +720109,340.05,40.964 +720110,342.09,41.827 +720111,344.07,42.661 +720112,345.99,43.467 +720113,338.82,40.875 +720114,340.84,41.799 +720115,342.8,42.692 +720116,344.7,43.555 +720117,337.59,40.786 +720118,339.6,41.771 +720119,341.54,42.723 +720120,343.41,43.642 +720121,336.36,40.698 +720122,338.35,41.744 +720123,340.27,42.753 +720124,342.12,43.728 +720125,335.13,40.611 +720126,337.11,41.718 +720127,339,42.784 +720128,340.83,43.813 +720129,333.91,40.524 +720130,335.86,41.691 +720131,337.73,42.814 +720132,339.53,43.897 +720133,332.68,40.439 +720134,334.62,41.665 +720135,336.46,42.845 +720136,338.24,43.98 +720137,331.46,40.354 +720138,333.37,41.639 +720139,335.19,42.874 +720140,336.94,44.063 +720141,330.25,40.27 +720142,332.13,41.614 +720143,333.92,42.904 +720144,335.64,44.144 +720145,329.03,40.187 +720146,330.89,41.589 +720147,332.65,42.934 +720148,334.34,44.225 +720149,327.82,40.105 +720150,329.65,41.565 +720151,331.38,42.963 +720152,333.04,44.304 +720153,326.6,40.024 +720154,328.4,41.541 +720155,330.11,42.992 +720156,331.73,44.382 +720157,325.39,39.944 +720158,327.16,41.517 +720159,328.84,43.02 +720160,330.43,44.46 +720161,324.18,39.865 +720162,325.92,41.494 +720163,327.57,43.048 +720164,329.12,44.536 +720165,322.98,39.787 +720166,324.68,41.472 +720167,326.29,43.076 +720168,327.82,44.611 +720169,321.77,39.711 +720170,323.45,41.449 +720171,325.02,43.104 +720172,326.51,44.684 +720173,320.57,39.636 +720174,322.21,41.428 +720175,323.75,43.131 +720176,325.2,44.757 +720177,319.36,39.562 +720178,320.97,41.407 +720179,322.47,43.158 +720180,323.89,44.828 +720181,318.16,39.49 +720182,319.73,41.386 +720183,321.2,43.185 +720184,322.58,44.898 +720185,316.97,39.419 +720186,318.49,41.366 +720187,319.92,43.211 +720188,321.27,44.967 +720189,315.77,39.35 +720190,317.26,41.347 +720191,318.64,43.237 +720192,319.95,45.034 +720193,314.57,39.282 +720194,316.02,41.328 +720195,317.37,43.262 +720196,318.64,45.1 +720197,313.38,39.216 +720198,314.79,41.31 +720199,316.09,43.287 +720200,317.32,45.164 +720201,312.19,39.151 +720202,313.55,41.292 +720203,314.81,43.312 +720204,316,45.227 +720205,311,39.088 +720206,312.32,41.275 +720207,313.54,43.336 +720208,314.68,45.289 +720209,309.81,39.026 +720210,311.08,41.259 +720211,312.26,43.36 +720212,313.37,45.349 +720213,308.62,38.967 +720214,309.85,41.243 +720215,310.98,43.383 +720216,312.05,45.408 +720217,307.44,38.909 +720218,308.61,41.228 +720219,309.7,43.406 +720220,310.73,45.465 +720221,306.25,38.853 +720222,307.38,41.213 +720223,308.42,43.428 +720224,309.4,45.52 +720225,305.07,38.799 +720226,306.15,41.199 +720227,307.14,43.45 +720228,308.08,45.574 +720229,303.89,38.747 +720230,304.91,41.186 +720231,305.87,43.472 +720232,306.76,45.627 +720233,302.71,38.696 +720234,303.68,41.174 +720235,304.59,43.492 +720236,305.43,45.678 +720237,301.53,38.648 +720238,302.45,41.162 +720239,303.31,43.513 +720240,304.11,45.727 +720241,300.35,38.602 +720242,301.22,41.151 +720243,302.02,43.533 +720244,302.78,45.775 +720245,299.17,38.557 +720246,299.99,41.141 +720247,300.74,43.552 +720248,301.46,45.821 +720249,297.99,38.515 +720250,298.75,41.131 +720251,299.46,43.571 +720252,300.13,45.865 +720253,296.82,38.475 +720254,297.52,41.122 +720255,298.18,43.589 +720256,298.81,45.908 +720257,295.64,38.437 +720258,296.29,41.114 +720259,296.9,43.607 +720260,297.48,45.948 +720261,294.47,38.401 +720262,295.06,41.107 +720263,295.62,43.625 +720264,296.15,45.988 +720265,293.29,38.368 +720266,293.83,41.1 +720267,294.34,43.641 +720268,294.82,46.025 +720269,292.12,38.336 +720270,292.6,41.094 +720271,293.06,43.658 +720272,293.49,46.061 +720273,290.95,38.307 +720274,291.37,41.089 +720275,291.77,43.673 +720276,292.16,46.095 +720277,289.78,38.28 +720278,290.14,41.085 +720279,290.49,43.688 +720280,290.83,46.127 +720281,288.61,38.255 +720282,288.91,41.081 +720283,289.21,43.703 +720284,289.5,46.158 +720285,287.44,38.233 +720286,287.68,41.079 +720287,287.93,43.717 +720288,288.17,46.187 +720289,286.27,38.213 +720290,286.45,41.077 +720291,286.64,43.73 +720292,286.84,46.214 +720293,285.1,38.196 +720294,285.22,41.076 +720295,285.36,43.743 +720296,285.51,46.239 +720297,283.93,38.18 +720298,283.99,41.075 +720299,284.08,43.755 +720300,284.18,46.262 +720301,282.76,38.168 +720302,282.76,41.076 +720303,282.8,43.767 +720304,282.85,46.284 +720305,281.59,38.157 +720306,281.53,41.077 +720307,281.51,43.778 +720308,281.52,46.304 +720309,280.42,38.149 +720310,280.3,41.079 +720311,280.23,43.789 +720312,280.19,46.322 +720313,279.25,38.143 +720314,279.07,41.082 +720315,278.95,43.799 +720316,278.86,46.338 +720317,278.08,38.14 +720318,277.84,41.085 +720319,277.66,43.808 +720320,277.53,46.352 +720321,276.91,38.139 +720322,276.61,41.09 +720323,276.38,43.817 +720324,276.2,46.365 +720325,275.74,38.141 +720326,275.38,41.095 +720327,275.1,43.825 +720328,274.87,46.375 +720329,274.57,38.145 +720330,274.15,41.101 +720331,273.81,43.833 +720332,273.54,46.384 +720333,273.4,38.151 +720334,272.92,41.108 +720335,272.53,43.84 +720336,272.21,46.391 +720337,272.23,38.16 +720338,271.69,41.115 +720339,271.25,43.846 +720340,270.88,46.396 +720341,271.06,38.172 +720342,270.46,41.124 +720343,269.97,43.852 +720344,269.55,46.4 +720345,269.89,38.185 +720346,269.23,41.133 +720347,268.68,43.857 +720348,268.22,46.401 +720349,268.72,38.202 +720350,268,41.143 +720351,267.4,43.862 +720352,266.89,46.401 +720353,267.54,38.22 +720354,266.77,41.154 +720355,266.12,43.866 +720356,265.56,46.399 +720357,266.37,38.241 +720358,265.54,41.166 +720359,264.83,43.87 +720360,264.23,46.395 +720361,265.19,38.265 +720362,264.3,41.178 +720363,263.55,43.873 +720364,262.9,46.39 +720365,264.02,38.29 +720366,263.07,41.192 +720367,262.27,43.875 +720368,261.57,46.382 +720369,262.84,38.319 +720370,261.84,41.206 +720371,260.99,43.877 +720372,260.25,46.373 +720373,261.66,38.349 +720374,260.61,41.221 +720375,259.71,43.878 +720376,258.92,46.362 +720377,260.49,38.382 +720378,259.37,41.236 +720379,258.42,43.879 +720380,257.59,46.349 +720381,259.31,38.417 +720382,258.14,41.253 +720383,257.14,43.879 +720384,256.27,46.335 +720385,258.12,38.455 +720386,256.91,41.27 +720387,255.86,43.878 +720388,254.94,46.319 +720389,256.94,38.494 +720390,255.67,41.288 +720391,254.58,43.877 +720392,253.62,46.3 +720393,255.76,38.536 +720394,254.44,41.307 +720395,253.3,43.876 +720396,252.29,46.281 +720397,254.57,38.581 +720398,253.2,41.326 +720399,252.02,43.874 +720400,250.97,46.259 +720401,253.39,38.627 +720402,251.97,41.347 +720403,250.74,43.871 +720404,249.65,46.236 +720405,252.2,38.676 +720406,250.73,41.368 +720407,249.46,43.868 +720408,248.33,46.211 +720409,251.01,38.726 +720410,249.5,41.389 +720411,248.18,43.864 +720412,247.01,46.185 +720413,249.82,38.779 +720414,248.26,41.412 +720415,246.9,43.86 +720416,245.69,46.156 +720417,248.63,38.834 +720418,247.02,41.435 +720419,245.62,43.855 +720420,244.37,46.127 +720421,247.43,38.891 +720422,245.79,41.459 +720423,244.34,43.85 +720424,243.05,46.095 +720425,246.24,38.95 +720426,244.55,41.483 +720427,243.07,43.844 +720428,241.73,46.062 +720429,245.04,39.011 +720430,243.31,41.509 +720431,241.79,43.838 +720432,240.42,46.027 +720433,243.84,39.074 +720434,242.07,41.535 +720435,240.51,43.831 +720436,239.1,45.991 +720437,242.64,39.139 +720438,240.83,41.561 +720439,239.23,43.824 +720440,237.79,45.953 +720441,241.44,39.206 +720442,239.59,41.589 +720443,237.96,43.816 +720444,236.47,45.914 +720445,240.23,39.275 +720446,238.35,41.617 +720447,236.68,43.808 +720448,235.16,45.873 +720449,239.02,39.345 +720450,237.11,41.645 +720451,235.4,43.799 +720452,233.85,45.831 +720453,237.82,39.417 +720454,235.87,41.674 +720455,234.13,43.79 +720456,232.54,45.787 +720457,236.61,39.491 +720458,234.63,41.704 +720459,232.85,43.781 +720460,231.23,45.741 +720461,235.39,39.567 +720462,233.38,41.735 +720463,231.58,43.771 +720464,229.93,45.695 +720465,234.18,39.644 +720466,232.14,41.766 +720467,230.3,43.76 +720468,228.62,45.647 +720469,232.96,39.723 +720470,230.9,41.797 +720471,229.03,43.75 +720472,227.32,45.597 +720473,231.74,39.803 +720474,229.65,41.83 +720475,227.76,43.738 +720476,226.01,45.546 +720477,230.52,39.885 +720478,228.41,41.862 +720479,226.48,43.727 +720480,224.71,45.494 +720481,229.3,39.968 +720482,227.16,41.896 +720483,225.21,43.715 +720484,223.41,45.441 +720485,228.08,40.053 +720486,225.91,41.93 +720487,223.94,43.703 +720488,222.11,45.386 +720489,226.85,40.139 +720490,224.67,41.964 +720491,222.67,43.69 +720492,220.82,45.33 +720493,225.62,40.226 +720494,223.42,41.999 +720495,221.4,43.677 +720496,219.52,45.273 +720497,224.39,40.315 +720498,222.17,42.034 +720499,220.13,43.664 +720500,218.23,45.214 +720501,223.16,40.405 +720502,220.92,42.07 +720503,218.86,43.65 +720504,216.93,45.155 +720505,221.92,40.496 +720506,219.67,42.106 +720507,217.59,43.636 +720508,215.64,45.094 +720509,220.68,40.588 +720510,218.42,42.143 +720511,216.32,43.622 +720512,214.35,45.032 +720513,219.44,40.681 +720514,217.17,42.18 +720515,215.05,43.607 +720516,213.06,44.97 +720517,218.2,40.775 +720518,215.91,42.218 +720519,213.78,43.592 +720520,211.78,44.906 +720521,216.96,40.87 +720522,214.66,42.256 +720523,212.51,43.577 +720524,210.49,44.841 +720525,215.71,40.966 +720526,213.41,42.294 +720527,211.25,43.562 +720528,209.21,44.775 +720529,214.46,41.063 +720530,212.15,42.333 +720531,209.98,43.546 +720532,207.93,44.709 +720533,213.21,41.161 +720534,210.9,42.372 +720535,208.72,43.531 +720536,206.65,44.641 +720537,211.96,41.259 +720538,209.64,42.412 +720539,207.45,43.515 +720540,205.37,44.573 +720541,210.71,41.359 +720542,208.39,42.451 +720543,206.19,43.498 +720544,204.09,44.504 +720545,209.45,41.458 +720546,207.13,42.492 +720547,204.92,43.482 +720548,202.82,44.434 +720549,208.19,41.559 +720550,205.87,42.532 +720551,203.66,43.466 +720552,201.54,44.363 +720553,206.93,41.66 +720554,204.61,42.573 +720555,202.4,43.449 +720556,200.27,44.291 +720557,205.67,41.762 +720558,203.35,42.614 +720559,201.13,43.432 +720560,199,44.219 +720561,204.4,41.864 +720562,202.09,42.655 +720563,199.87,43.415 +720564,197.73,44.147 +720565,203.14,41.966 +720566,200.83,42.696 +720567,198.61,43.398 +720568,196.47,44.073 +720569,201.87,42.069 +720570,199.57,42.738 +720571,197.35,43.381 +720572,195.2,43.999 +720573,200.6,42.172 +720574,198.31,42.78 +720575,196.09,43.364 +720576,193.94,43.925 +720577,199.32,42.275 +720578,197.05,42.822 +720579,194.83,43.346 +720580,192.68,43.85 +720581,198.05,42.379 +720582,195.78,42.864 +720583,193.57,43.329 +720584,191.42,43.775 +720585,196.77,42.483 +720586,194.52,42.907 +720587,192.32,43.312 +720588,190.17,43.699 +720589,195.49,42.587 +720590,193.25,42.949 +720591,191.06,43.294 +720592,188.91,43.624 +720593,194.21,42.691 +720594,191.99,42.992 +720595,189.8,43.277 +720596,187.66,43.547 +720597,192.93,42.795 +720598,190.72,43.035 +720599,188.55,43.26 +720600,186.41,43.471 +720601,191.65,42.899 +720602,189.45,43.077 +720603,187.29,43.242 +720604,185.16,43.394 +720605,190.36,43.003 +720606,188.18,43.12 +720607,186.04,43.225 +720608,183.91,43.317 +720609,189.07,43.107 +720610,186.92,43.163 +720611,184.78,43.208 +720612,182.67,43.24 +720613,187.78,43.21 +720614,185.65,43.206 +720615,183.53,43.19 +720616,181.43,43.163 +720617,186.49,43.314 +720618,184.38,43.249 +720619,182.28,43.173 +720620,180.18,43.086 +720621,185.2,43.417 +720622,183.11,43.292 +720623,181.02,43.156 +720624,178.95,43.009 +720625,183.9,43.52 +720626,181.83,43.336 +720627,179.77,43.139 +720628,177.71,42.932 +720629,182.6,43.622 +720630,180.56,43.379 +720631,178.52,43.123 +720632,176.47,42.855 +720633,181.31,43.725 +720634,179.29,43.422 +720635,177.27,43.106 +720636,175.24,42.779 +720637,180,43.826 +720638,178.02,43.465 +720639,176.02,43.09 +720640,174.01,42.702 +720641,178.7,43.928 +720642,176.74,43.508 +720643,174.77,43.073 +720644,172.78,42.626 +720645,177.4,44.028 +720646,175.47,43.55 +720647,173.52,43.057 +720648,171.55,42.55 +720649,176.09,44.129 +720650,174.19,43.593 +720651,172.27,43.041 +720652,170.33,42.474 +720653,174.79,44.228 +720654,172.92,43.636 +720655,171.02,43.026 +720656,169.1,42.399 +720657,173.48,44.327 +720658,171.64,43.678 +720659,169.77,43.01 +720660,167.88,42.324 +720661,172.17,44.426 +720662,170.36,43.721 +720663,168.53,42.995 +720664,166.66,42.25 +720665,170.86,44.523 +720666,169.09,43.763 +720667,167.28,42.98 +720668,165.44,42.176 +720669,169.55,44.62 +720670,167.81,43.805 +720671,166.04,42.966 +720672,164.22,42.103 +720673,168.23,44.716 +720674,166.53,43.847 +720675,164.79,42.952 +720676,163.01,42.03 +720677,166.92,44.812 +720678,165.25,43.888 +720679,163.54,42.938 +720680,161.8,41.958 +720681,165.6,44.906 +720682,163.97,43.93 +720683,162.3,42.924 +720684,160.59,41.887 +720685,164.28,45 +720686,162.69,43.971 +720687,161.06,42.911 +720688,159.38,41.817 +720689,162.96,45.092 +720690,161.41,44.012 +720691,159.81,42.898 +720692,158.17,41.747 +720693,161.64,45.184 +720694,160.13,44.053 +720695,158.57,42.885 +720696,156.96,41.678 +720697,160.32,45.274 +720698,158.84,44.094 +720699,157.33,42.873 +720700,155.76,41.61 +720701,159,45.364 +720702,157.56,44.134 +720703,156.08,42.861 +720704,154.56,41.543 +720705,157.67,45.453 +720706,156.28,44.174 +720707,154.84,42.85 +720708,153.36,41.477 +720709,156.35,45.54 +720710,155,44.213 +720711,153.6,42.839 +720712,152.16,41.412 +720713,155.02,45.626 +720714,153.71,44.253 +720715,152.36,42.828 +720716,150.96,41.349 +720717,153.7,45.712 +720718,152.43,44.292 +720719,151.12,42.818 +720720,149.76,41.286 +720721,152.37,45.796 +720722,151.14,44.33 +720723,149.88,42.808 +720724,148.57,41.224 +720725,151.04,45.878 +720726,149.86,44.369 +720727,148.64,42.799 +720728,147.38,41.164 +720729,149.71,45.96 +720730,148.57,44.407 +720731,147.4,42.791 +720732,146.18,41.105 +720733,148.38,46.04 +720734,147.29,44.444 +720735,146.16,42.783 +720736,144.99,41.047 +720737,147.05,46.119 +720738,146,44.482 +720739,144.92,42.775 +720740,143.81,40.991 +720741,145.71,46.197 +720742,144.71,44.519 +720743,143.68,42.768 +720744,142.62,40.936 +720745,144.38,46.273 +720746,143.43,44.555 +720747,142.44,42.761 +720748,141.43,40.883 +720749,143.05,46.348 +720750,142.14,44.591 +720751,141.21,42.755 +720752,140.25,40.831 +720753,141.71,46.421 +720754,140.85,44.627 +720755,139.97,42.75 +720756,139.06,40.78 +720757,140.38,46.493 +720758,139.56,44.662 +720759,138.73,42.745 +720760,137.88,40.731 +720761,139.04,46.564 +720762,138.27,44.697 +720763,137.49,42.741 +720764,136.7,40.684 +720765,137.7,46.633 +720766,136.98,44.731 +720767,136.26,42.737 +720768,135.52,40.638 +720769,136.37,46.701 +720770,135.69,44.765 +720771,135.02,42.734 +720772,134.34,40.594 +720773,135.03,46.767 +720774,134.41,44.798 +720775,133.78,42.731 +720776,133.16,40.552 +720777,133.69,46.831 +720778,133.12,44.831 +720779,132.55,42.73 +720780,131.98,40.511 +720781,132.35,46.894 +720782,131.83,44.864 +720783,131.31,42.728 +720784,130.8,40.472 +720785,131.01,46.956 +720786,130.54,44.896 +720787,130.07,42.728 +720788,129.63,40.435 +720789,129.67,47.016 +720790,129.25,44.927 +720791,128.84,42.728 +720792,128.45,40.4 +720793,128.33,47.074 +720794,127.95,44.958 +720795,127.6,42.729 +720796,127.27,40.367 +720797,126.99,47.131 +720798,126.66,44.989 +720799,126.36,42.73 +720800,126.1,40.335 +720801,125.65,47.186 +720802,125.37,45.019 +720803,125.13,42.732 +720804,124.93,40.306 +720805,124.31,47.239 +720806,124.08,45.048 +720807,123.89,42.735 +720808,123.75,40.278 +720809,122.97,47.291 +720810,122.79,45.077 +720811,122.66,42.738 +720812,122.58,40.253 +720813,121.63,47.341 +720814,121.5,45.105 +720815,121.42,42.742 +720816,121.4,40.229 +720817,120.28,47.39 +720818,120.21,45.133 +720819,120.18,42.747 +720820,120.23,40.208 +720821,118.94,47.437 +720822,118.92,45.16 +720823,118.95,42.753 +720824,119.06,40.188 +720825,117.6,47.482 +720826,117.62,45.187 +720827,117.71,42.759 +720828,117.89,40.171 +720829,116.26,47.525 +720830,116.33,45.213 +720831,116.48,42.766 +720832,116.71,40.156 +720833,114.92,47.566 +720834,115.04,45.239 +720835,115.24,42.774 +720836,115.54,40.143 +720837,113.58,47.606 +720838,113.75,45.264 +720839,114,42.782 +720840,114.37,40.132 +720841,112.23,47.644 +720842,112.46,45.289 +720843,112.77,42.791 +720844,113.19,40.123 +720845,110.89,47.681 +720846,111.17,45.313 +720847,111.53,42.801 +720848,112.02,40.117 +720849,109.55,47.715 +720850,109.87,45.336 +720851,110.29,42.812 +720852,110.85,40.112 +720853,108.21,47.748 +720854,108.58,45.359 +720855,109.06,42.823 +720856,109.67,40.11 +720857,106.87,47.779 +720858,107.29,45.381 +720859,107.82,42.835 +720860,108.5,40.11 +720861,105.53,47.809 +720862,106,45.403 +720863,106.58,42.848 +720864,107.32,40.113 +720865,104.19,47.836 +720866,104.71,45.424 +720867,105.35,42.862 +720868,106.15,40.117 +720869,102.85,47.862 +720870,103.41,45.445 +720871,104.11,42.876 +720872,104.97,40.124 +720873,101.51,47.886 +720874,102.12,45.465 +720875,102.87,42.891 +720876,103.8,40.133 +720877,100.17,47.909 +720878,100.83,45.484 +720879,101.63,42.907 +720880,102.62,40.144 +720881,98.827,47.929 +720882,99.539,45.503 +720883,100.39,42.923 +720884,101.44,40.158 +720885,97.488,47.948 +720886,98.248,45.521 +720887,99.154,42.941 +720888,100.26,40.174 +720889,96.15,47.965 +720890,96.957,45.539 +720891,97.915,42.959 +720892,99.079,40.192 +720893,94.812,47.98 +720894,95.666,45.556 +720895,96.675,42.978 +720896,97.898,40.212 +720897,93.475,47.993 +720898,94.375,45.572 +720899,95.435,42.997 +720900,96.715,40.235 +720901,92.138,48.005 +720902,93.084,45.588 +720903,94.195,43.018 +720904,95.532,40.26 +720905,90.802,48.015 +720906,91.793,45.604 +720907,92.954,43.039 +720908,94.347,40.287 +720909,89.466,48.023 +720910,90.503,45.618 +720911,91.713,43.061 +720912,93.161,40.316 +720913,88.132,48.03 +720914,89.213,45.633 +720915,90.472,43.083 +720916,91.973,40.348 +720917,86.798,48.034 +720918,87.923,45.646 +720919,89.23,43.106 +720920,90.784,40.382 +720921,85.464,48.037 +720922,86.633,45.659 +720923,87.987,43.13 +720924,89.594,40.418 +720925,84.132,48.039 +720926,85.344,45.672 +720927,86.745,43.155 +720928,88.402,40.456 +720929,82.8,48.038 +720930,84.055,45.684 +720931,85.501,43.181 +720932,87.209,40.496 +720933,81.469,48.036 +720934,82.766,45.695 +720935,84.257,43.207 +720936,86.014,40.539 +720937,80.139,48.032 +720938,81.477,45.706 +720939,83.013,43.234 +720940,84.817,40.583 +720941,78.81,48.027 +720942,80.189,45.717 +720943,81.768,43.261 +720944,83.619,40.63 +720945,77.482,48.02 +720946,78.901,45.726 +720947,80.522,43.29 +720948,82.419,40.679 +720949,76.155,48.011 +720950,77.613,45.736 +720951,79.276,43.319 +720952,81.217,40.73 +720953,74.829,48 +720954,76.326,45.744 +720955,78.03,43.348 +720956,80.014,40.783 +720957,73.504,47.988 +720958,75.038,45.753 +720959,76.783,43.379 +720960,78.808,40.838 +720961,72.18,47.975 +720962,73.752,45.76 +720963,75.535,43.41 +720964,77.601,40.895 +720965,70.857,47.959 +720966,72.465,45.767 +720967,74.287,43.441 +720968,76.391,40.954 +720969,69.535,47.943 +720970,71.18,45.774 +720971,73.038,43.474 +720972,75.18,41.015 +720973,68.214,47.924 +720974,69.894,45.78 +720975,71.788,43.507 +720976,73.967,41.078 +720977,66.895,47.904 +720978,68.609,45.786 +720979,70.538,43.54 +720980,72.751,41.142 +720981,65.576,47.883 +720982,67.324,45.791 +720983,69.287,43.575 +720984,71.534,41.209 +720985,64.259,47.86 +720986,66.04,45.796 +720987,68.035,43.61 +720988,70.314,41.277 +720989,62.944,47.835 +720990,64.756,45.8 +720991,66.783,43.645 +720992,69.093,41.348 +720993,61.629,47.809 +720994,63.472,45.804 +720995,65.53,43.681 +720996,67.869,41.419 +720997,60.316,47.782 +720998,62.189,45.807 +720999,64.277,43.718 +721000,66.643,41.493 +721001,59.004,47.753 +721002,60.907,45.81 +721003,63.022,43.755 +721004,65.415,41.569 +721005,57.694,47.723 +721006,59.625,45.812 +721007,61.767,43.793 +721008,64.185,41.646 +721009,56.385,47.691 +721010,58.343,45.814 +721011,60.512,43.832 +721012,62.952,41.724 +721013,55.077,47.658 +721014,57.062,45.816 +721015,59.255,43.871 +721016,61.718,41.804 +721017,53.771,47.624 +721018,55.781,45.817 +721019,57.998,43.91 +721020,60.481,41.886 +721021,52.466,47.589 +721022,54.501,45.818 +721023,56.74,43.95 +721024,59.241,41.969 +721025,51.163,47.552 +721026,53.221,45.818 +721027,55.482,43.991 +721028,58,42.054 +721029,49.862,47.514 +721030,51.942,45.818 +721031,54.222,44.032 +721032,56.756,42.14 +721033,48.561,47.474 +721034,50.663,45.818 +721035,52.962,44.074 +721036,55.51,42.228 +721037,47.263,47.434 +721038,49.385,45.817 +721039,51.701,44.116 +721040,54.262,42.316 +721041,45.966,47.392 +721042,48.107,45.816 +721043,50.44,44.158 +721044,53.011,42.406 +721045,44.671,47.349 +721046,46.83,45.815 +721047,49.177,44.201 +721048,51.759,42.498 +721049,43.377,47.305 +721050,45.554,45.813 +721051,47.914,44.245 +721052,50.503,42.59 +721053,42.085,47.26 +721054,44.278,45.811 +721055,46.651,44.289 +721056,49.246,42.684 +721057,40.795,47.214 +721058,43.002,45.808 +721059,45.386,44.333 +721060,47.986,42.778 +721061,39.506,47.167 +721062,41.727,45.806 +721063,44.12,44.378 +721064,46.725,42.874 +721065,38.219,47.119 +721066,40.453,45.803 +721067,42.854,44.423 +721068,45.46,42.971 +721069,36.934,47.07 +721070,39.179,45.799 +721071,41.587,44.468 +721072,44.194,43.069 +721073,35.65,47.02 +721074,37.906,45.796 +721075,40.32,44.514 +721076,42.925,43.167 +721077,34.369,46.969 +721078,36.633,45.792 +721079,39.051,44.56 +721080,41.655,43.267 +721081,33.089,46.917 +721082,35.361,45.788 +721083,37.782,44.607 +721084,40.381,43.367 +721085,31.811,46.865 +721086,34.089,45.784 +721087,36.512,44.653 +721088,39.106,43.468 +721089,30.534,46.812 +721090,32.818,45.779 +721091,35.241,44.701 +721092,37.829,43.57 +721093,29.26,46.757 +721094,31.548,45.775 +721095,33.97,44.748 +721096,36.549,43.673 +721097,27.987,46.703 +721098,30.278,45.77 +721099,32.697,44.796 +721100,35.267,43.776 +721101,26.716,46.647 +721102,29.009,45.765 +721103,31.424,44.844 +721104,33.983,43.879 +721105,25.447,46.591 +721106,27.74,45.76 +721107,30.15,44.892 +721108,32.697,43.984 +721109,24.18,46.534 +721110,26.472,45.754 +721111,28.876,44.94 +721112,31.409,44.088 +721113,22.915,46.477 +721114,25.204,45.749 +721115,27.6,44.989 +721116,30.119,44.194 +721117,21.651,46.419 +721118,23.937,45.743 +721119,26.324,45.038 +721120,28.827,44.299 +721121,20.39,46.361 +721122,22.671,45.738 +721123,25.047,45.087 +721124,27.533,44.405 +721125,19.13,46.302 +721126,21.405,45.732 +721127,23.77,45.136 +721128,26.236,44.512 +721129,17.873,46.243 +721130,20.14,45.726 +721131,22.491,45.185 +721132,24.938,44.618 +721133,16.617,46.183 +721134,18.875,45.72 +721135,21.212,45.235 +721136,23.638,44.725 +721137,15.363,46.123 +721138,17.611,45.714 +721139,19.932,45.285 +721140,22.336,44.832 +721141,14.111,46.063 +721142,16.347,45.708 +721143,18.652,45.334 +721144,21.032,44.939 +721145,12.861,46.003 +721146,15.084,45.702 +721147,17.371,45.384 +721148,19.726,45.046 +721149,11.612,45.942 +721150,13.822,45.696 +721151,16.089,45.434 +721152,18.418,45.153 +721153,10.366,45.881 +721154,12.56,45.69 +721155,14.806,45.484 +721156,17.109,45.26 +721157,9.1218,45.82 +721158,11.299,45.684 +721159,13.522,45.534 +721160,15.797,45.367 +721161,7.8792,45.759 +721162,10.038,45.678 +721163,12.238,45.584 +721164,14.484,45.474 +721165,6.6386,45.698 +721166,8.7776,45.673 +721167,10.954,45.634 +721168,13.169,45.581 +721169,5.3998,45.636 +721170,7.5179,45.667 +721171,9.6681,45.684 +721172,11.853,45.688 +721173,4.163,45.575 +721174,6.2588,45.661 +721175,8.382,45.734 +721176,10.535,45.794 +721177,2.928,45.514 +721178,5.0002,45.655 +721179,7.0952,45.784 +721180,9.215,45.9 +721181,1.6948,45.453 +721182,3.742,45.65 +721183,5.8078,45.834 +721184,7.8936,46.006 +721185,0.4635,45.392 +721186,2.4845,45.644 +721187,4.5197,45.884 +721188,6.5706,46.112 +721189,359.23,45.332 +721190,1.2274,45.639 +721191,3.231,45.934 +721192,5.2461,46.217 +721193,358.01,45.271 +721194,359.97,45.634 +721195,1.9416,45.984 +721196,3.92,46.322 +721197,356.78,45.211 +721198,358.71,45.629 +721199,0.65169,46.034 +721200,2.5925,46.426 +721201,355.56,45.151 +721202,357.46,45.624 +721203,359.36,46.084 +721204,1.2636,46.529 +721205,354.33,45.092 +721206,356.2,45.619 +721207,358.07,46.133 +721208,359.93,46.632 +721209,353.11,45.033 +721210,354.95,45.615 +721211,356.78,46.182 +721212,358.6,46.735 +721213,351.89,44.974 +721214,353.7,45.611 +721215,355.49,46.232 +721216,357.27,46.837 +721217,350.68,44.916 +721218,352.44,45.607 +721219,354.19,46.281 +721220,355.93,46.938 +721221,349.46,44.859 +721222,351.19,45.603 +721223,352.9,46.33 +721224,354.6,47.038 +721225,348.25,44.802 +721226,349.94,45.599 +721227,351.61,46.378 +721228,353.26,47.138 +721229,347.04,44.746 +721230,348.68,45.596 +721231,350.31,46.427 +721232,351.92,47.237 +721233,345.83,44.69 +721234,347.43,45.593 +721235,349.02,46.475 +721236,350.58,47.335 +721237,344.62,44.635 +721238,346.18,45.591 +721239,347.72,46.523 +721240,349.24,47.433 +721241,343.41,44.581 +721242,344.93,45.588 +721243,346.42,46.571 +721244,347.9,47.529 +721245,342.2,44.527 +721246,343.68,45.586 +721247,345.13,46.619 +721248,346.56,47.624 +721249,341,44.475 +721250,342.43,45.585 +721251,343.83,46.666 +721252,345.22,47.719 +721253,339.8,44.423 +721254,341.18,45.583 +721255,342.53,46.713 +721256,343.87,47.813 +721257,338.6,44.372 +721258,339.93,45.582 +721259,341.24,46.76 +721260,342.53,47.905 +721261,337.39,44.323 +721262,338.68,45.582 +721263,339.94,46.806 +721264,341.18,47.997 +721265,336.2,44.274 +721266,337.43,45.582 +721267,338.64,46.852 +721268,339.83,48.087 +721269,335,44.226 +721270,336.18,45.582 +721271,337.34,46.898 +721272,338.49,48.176 +721273,333.8,44.179 +721274,334.93,45.582 +721275,336.04,46.944 +721276,337.14,48.265 +721277,332.61,44.134 +721278,333.68,45.583 +721279,334.74,46.989 +721280,335.79,48.352 +721281,331.41,44.089 +721282,332.43,45.585 +721283,333.44,47.033 +721284,334.44,48.438 +721285,330.22,44.046 +721286,331.19,45.587 +721287,332.14,47.078 +721288,333.09,48.522 +721289,329.03,44.004 +721290,329.94,45.589 +721291,330.84,47.122 +721292,331.73,48.606 +721293,327.84,43.963 +721294,328.69,45.592 +721295,329.54,47.166 +721296,330.38,48.688 +721297,326.65,43.924 +721298,327.44,45.595 +721299,328.24,47.209 +721300,329.03,48.769 +721301,325.46,43.886 +721302,326.2,45.599 +721303,326.93,47.252 +721304,327.67,48.848 +721305,324.27,43.849 +721306,324.95,45.603 +721307,325.63,47.294 +721308,326.32,48.926 +721309,323.09,43.814 +721310,323.7,45.608 +721311,324.33,47.336 +721312,324.97,49.003 +721313,321.9,43.78 +721314,322.46,45.613 +721315,323.03,47.378 +721316,323.61,49.079 +721317,320.71,43.747 +721318,321.21,45.619 +721319,321.72,47.419 +721320,322.26,49.153 +721321,319.53,43.717 +721322,319.96,45.626 +721323,320.42,47.46 +721324,320.9,49.225 +721325,318.35,43.687 +721326,318.72,45.632 +721327,319.12,47.5 +721328,319.54,49.297 +721329,317.16,43.659 +721330,317.47,45.64 +721331,317.81,47.54 +721332,318.19,49.366 +721333,315.98,43.633 +721334,316.22,45.648 +721335,316.51,47.579 +721336,316.83,49.435 +721337,314.8,43.609 +721338,314.98,45.656 +721339,315.21,47.618 +721340,315.47,49.501 +721341,313.61,43.586 +721342,313.73,45.666 +721343,313.9,47.656 +721344,314.12,49.567 +721345,312.43,43.564 +721346,312.48,45.675 +721347,312.6,47.694 +721348,312.76,49.631 +721349,311.25,43.545 +721350,311.24,45.686 +721351,311.29,47.731 +721352,311.4,49.693 +721353,310.07,43.527 +721354,309.99,45.697 +721355,309.99,47.768 +721356,310.05,49.753 +721357,308.89,43.511 +721358,308.75,45.708 +721359,308.68,47.805 +721360,308.69,49.813 +721361,307.71,43.497 +721362,307.5,45.72 +721363,307.38,47.84 +721364,307.33,49.87 +721365,306.52,43.484 +721366,306.25,45.733 +721367,306.08,47.876 +721368,305.97,49.926 +721369,305.34,43.474 +721370,305.01,45.746 +721371,304.77,47.911 +721372,304.62,49.98 +721373,304.16,43.465 +721374,303.76,45.76 +721375,303.47,47.945 +721376,303.26,50.033 +721377,302.98,43.458 +721378,302.51,45.775 +721379,302.16,47.979 +721380,301.9,50.084 +721381,301.8,43.453 +721382,301.27,45.79 +721383,300.86,48.012 +721384,300.54,50.134 +721385,300.62,43.45 +721386,300.02,45.806 +721387,299.55,48.045 +721388,299.19,50.182 +721389,299.43,43.449 +721390,298.77,45.823 +721391,298.25,48.077 +721392,297.83,50.228 +721393,298.25,43.45 +721394,297.52,45.84 +721395,296.94,48.108 +721396,296.47,50.272 +721397,297.07,43.452 +721398,296.27,45.857 +721399,295.64,48.139 +721400,295.12,50.315 +721401,295.88,43.457 +721402,295.03,45.876 +721403,294.33,48.17 +721404,293.76,50.356 +721405,294.7,43.463 +721406,293.78,45.895 +721407,293.03,48.2 +721408,292.41,50.396 +721409,293.51,43.472 +721410,292.53,45.915 +721411,291.72,48.229 +721412,291.05,50.434 +721413,292.33,43.482 +721414,291.28,45.935 +721415,290.42,48.258 +721416,289.7,50.47 +721417,291.14,43.495 +721418,290.03,45.956 +721419,289.11,48.287 +721420,288.34,50.504 +721421,289.95,43.51 +721422,288.78,45.978 +721423,287.81,48.314 +721424,286.99,50.537 +721425,288.76,43.526 +721426,287.53,46.001 +721427,286.51,48.341 +721428,285.64,50.568 +721429,287.57,43.545 +721430,286.28,46.024 +721431,285.2,48.368 +721432,284.29,50.598 +721433,286.38,43.565 +721434,285.03,46.047 +721435,283.9,48.394 +721436,282.93,50.626 +721437,285.19,43.588 +721438,283.78,46.072 +721439,282.6,48.42 +721440,281.58,50.652 +721441,283.99,43.612 +721442,282.53,46.097 +721443,281.29,48.445 +721444,280.23,50.676 +721445,282.8,43.639 +721446,281.28,46.122 +721447,279.99,48.469 +721448,278.88,50.699 +721449,281.6,43.667 +721450,280.02,46.149 +721451,278.69,48.493 +721452,277.53,50.72 +721453,280.41,43.698 +721454,278.77,46.176 +721455,277.38,48.516 +721456,276.18,50.74 +721457,279.21,43.731 +721458,277.52,46.204 +721459,276.08,48.539 +721460,274.84,50.757 +721461,278.01,43.765 +721462,276.26,46.232 +721463,274.78,48.561 +721464,273.49,50.773 +721465,276.81,43.802 +721466,275.01,46.261 +721467,273.48,48.583 +721468,272.14,50.788 +721469,275.6,43.84 +721470,273.76,46.291 +721471,272.18,48.604 +721472,270.8,50.801 +721473,274.4,43.881 +721474,272.5,46.321 +721475,270.87,48.624 +721476,269.46,50.812 +721477,273.19,43.923 +721478,271.24,46.352 +721479,269.57,48.644 +721480,268.11,50.822 +721481,271.98,43.967 +721482,269.99,46.383 +721483,268.27,48.664 +721484,266.77,50.83 +721485,270.77,44.014 +721486,268.73,46.415 +721487,266.97,48.683 +721488,265.43,50.836 +721489,269.56,44.062 +721490,267.47,46.448 +721491,265.67,48.701 +721492,264.09,50.841 +721493,268.35,44.112 +721494,266.21,46.482 +721495,264.37,48.719 +721496,262.75,50.844 +721497,267.13,44.164 +721498,264.96,46.516 +721499,263.07,48.736 +721500,261.41,50.845 +721501,265.91,44.217 +721502,263.7,46.55 +721503,261.77,48.753 +721504,260.08,50.846 +721505,264.69,44.273 +721506,262.44,46.586 +721507,260.48,48.769 +721508,258.74,50.844 +721509,263.47,44.33 +721510,261.18,46.621 +721511,259.18,48.785 +721512,257.41,50.841 +721513,262.25,44.39 +721514,259.91,46.658 +721515,257.88,48.8 +721516,256.07,50.837 +721517,261.02,44.451 +721518,258.65,46.695 +721519,256.58,48.815 +721520,254.74,50.831 +721521,259.8,44.513 +721522,257.39,46.732 +721523,255.29,48.83 +721524,253.41,50.823 +721525,258.57,44.578 +721526,256.13,46.771 +721527,253.99,48.843 +721528,252.08,50.814 +721529,257.33,44.644 +721530,254.86,46.809 +721531,252.69,48.857 +721532,250.75,50.804 +721533,256.1,44.712 +721534,253.6,46.849 +721535,251.4,48.87 +721536,249.43,50.792 +721537,254.86,44.781 +721538,252.33,46.888 +721539,250.1,48.882 +721540,248.1,50.779 +721541,253.62,44.852 +721542,251.07,46.929 +721543,248.81,48.894 +721544,246.78,50.764 +721545,252.38,44.925 +721546,249.8,46.97 +721547,247.51,48.906 +721548,245.46,50.748 +721549,251.14,44.999 +721550,248.53,47.011 +721551,246.22,48.917 +721552,244.14,50.731 +721553,249.9,45.074 +721554,247.26,47.053 +721555,244.93,48.927 +721556,242.82,50.712 +721557,248.65,45.151 +721558,246,47.096 +721559,243.63,48.938 +721560,241.5,50.692 +721561,247.4,45.23 +721562,244.73,47.138 +721563,242.34,48.947 +721564,240.18,50.671 +721565,246.15,45.31 +721566,243.46,47.182 +721567,241.05,48.957 +721568,238.87,50.648 +721569,244.89,45.391 +721570,242.18,47.226 +721571,239.76,48.966 +721572,237.55,50.625 +721573,243.63,45.474 +721574,240.91,47.27 +721575,238.47,48.974 +721576,236.24,50.6 +721577,242.38,45.558 +721578,239.64,47.315 +721579,237.18,48.983 +721580,234.93,50.573 +721581,241.11,45.643 +721582,238.37,47.36 +721583,235.89,48.99 +721584,233.62,50.546 +721585,239.85,45.73 +721586,237.09,47.406 +721587,234.6,48.998 +721588,232.32,50.518 +721589,238.58,45.817 +721590,235.82,47.452 +721591,233.31,49.005 +721592,231.01,50.488 +721593,237.32,45.906 +721594,234.54,47.498 +721595,232.02,49.012 +721596,229.71,50.458 +721597,236.04,45.996 +721598,233.26,47.545 +721599,230.73,49.018 +721600,228.41,50.426 +721601,234.77,46.087 +721602,231.99,47.592 +721603,229.45,49.024 +721604,227.11,50.393 +721605,233.5,46.179 +721606,230.71,47.64 +721607,228.16,49.03 +721608,225.81,50.359 +721609,232.22,46.272 +721610,229.43,47.688 +721611,226.87,49.036 +721612,224.51,50.325 +721613,230.94,46.366 +721614,228.15,47.736 +721615,225.59,49.041 +721616,223.22,50.289 +721617,229.66,46.461 +721618,226.87,47.785 +721619,224.3,49.046 +721620,221.92,50.253 +721621,228.37,46.557 +721622,225.59,47.834 +721623,223.02,49.051 +721624,220.63,50.215 +721625,227.08,46.654 +721626,224.31,47.883 +721627,221.74,49.055 +721628,219.34,50.177 +721629,225.79,46.751 +721630,223.02,47.932 +721631,220.45,49.059 +721632,218.05,50.138 +721633,224.5,46.849 +721634,221.74,47.982 +721635,219.17,49.063 +721636,216.77,50.098 +721637,223.21,46.948 +721638,220.45,48.032 +721639,217.89,49.067 +721640,215.48,50.058 +721641,221.91,47.048 +721642,219.17,48.083 +721643,216.61,49.07 +721644,214.2,50.016 +721645,220.62,47.148 +721646,217.88,48.133 +721647,215.33,49.074 +721648,212.92,49.974 +721649,219.32,47.249 +721650,216.6,48.184 +721651,214.05,49.077 +721652,211.64,49.932 +721653,218.01,47.35 +721654,215.31,48.235 +721655,212.77,49.08 +721656,210.36,49.888 +721657,216.71,47.452 +721658,214.02,48.286 +721659,211.49,49.083 +721660,209.09,49.845 +721661,215.4,47.554 +721662,212.73,48.338 +721663,210.21,49.085 +721664,207.82,49.8 +721665,214.09,47.657 +721666,211.44,48.389 +721667,208.93,49.088 +721668,206.55,49.755 +721669,212.78,47.76 +721670,210.15,48.441 +721671,207.66,49.09 +721672,205.28,49.71 +721673,211.47,47.863 +721674,208.86,48.493 +721675,206.38,49.092 +721676,204.01,49.664 +721677,210.16,47.967 +721678,207.57,48.545 +721679,205.1,49.094 +721680,202.74,49.618 +721681,208.84,48.071 +721682,206.28,48.597 +721683,203.83,49.096 +721684,201.48,49.571 +721685,207.52,48.175 +721686,204.98,48.649 +721687,202.55,49.098 +721688,200.22,49.524 +721689,206.2,48.279 +721690,203.69,48.702 +721691,201.28,49.1 +721692,198.96,49.477 +721693,204.88,48.383 +721694,202.39,48.754 +721695,200,49.102 +721696,197.7,49.43 +721697,203.55,48.488 +721698,201.1,48.807 +721699,198.73,49.104 +721700,196.44,49.382 +721701,202.23,48.592 +721702,199.8,48.859 +721703,197.46,49.106 +721704,195.19,49.334 +721705,200.9,48.697 +721706,198.5,48.912 +721707,196.19,49.108 +721708,193.94,49.286 +721709,199.57,48.801 +721710,197.21,48.964 +721711,194.91,49.109 +721712,192.69,49.238 +721713,198.24,48.906 +721714,195.91,49.017 +721715,193.64,49.111 +721716,191.44,49.19 +721717,196.91,49.01 +721718,194.61,49.07 +721719,192.37,49.113 +721720,190.19,49.142 +721721,195.57,49.114 +721722,193.31,49.122 +721723,191.1,49.115 +721724,188.95,49.093 +721725,194.24,49.218 +721726,192.01,49.175 +721727,189.83,49.117 +721728,187.7,49.045 +721729,192.9,49.321 +721730,190.71,49.227 +721731,188.56,49.119 +721732,186.46,48.997 +721733,191.56,49.424 +721734,189.41,49.28 +721735,187.3,49.121 +721736,185.22,48.949 +721737,190.22,49.527 +721738,188.1,49.332 +721739,186.03,49.123 +721740,183.98,48.901 +721741,188.88,49.63 +721742,186.8,49.385 +721743,184.76,49.125 +721744,182.75,48.854 +721745,187.53,49.732 +721746,185.5,49.437 +721747,183.49,49.128 +721748,181.51,48.806 +721749,186.19,49.834 +721750,184.19,49.489 +721751,182.23,49.13 +721752,180.28,48.759 +721753,184.84,49.935 +721754,182.89,49.541 +721755,180.96,49.133 +721756,179.05,48.713 +721757,183.49,50.036 +721758,181.58,49.593 +721759,179.69,49.136 +721760,177.82,48.666 +721761,182.14,50.136 +721762,180.28,49.644 +721763,178.43,49.139 +721764,176.59,48.62 +721765,180.79,50.236 +721766,178.97,49.696 +721767,177.16,49.142 +721768,175.37,48.574 +721769,179.44,50.335 +721770,177.67,49.747 +721771,175.9,49.145 +721772,174.14,48.529 +721773,178.09,50.433 +721774,176.36,49.799 +721775,174.64,49.149 +721776,172.92,48.485 +721777,176.73,50.531 +721778,175.05,49.85 +721779,173.37,49.152 +721780,171.7,48.441 +721781,175.38,50.628 +721782,173.74,49.9 +721783,172.11,49.156 +721784,170.48,48.397 +721785,174.02,50.724 +721786,172.43,49.951 +721787,170.85,49.161 +721788,169.26,48.354 +721789,172.66,50.819 +721790,171.12,50.001 +721791,169.58,49.165 +721792,168.04,48.312 +721793,171.3,50.914 +721794,169.82,50.051 +721795,168.32,49.17 +721796,166.83,48.27 +721797,169.95,51.007 +721798,168.5,50.101 +721799,167.06,49.175 +721800,165.61,48.229 +721801,168.58,51.1 +721802,167.19,50.151 +721803,165.8,49.18 +721804,164.4,48.189 +721805,167.22,51.192 +721806,165.88,50.2 +721807,164.54,49.186 +721808,163.19,48.15 +721809,165.86,51.283 +721810,164.57,50.249 +721811,163.28,49.192 +721812,161.98,48.112 +721813,164.5,51.373 +721814,163.26,50.298 +721815,162.02,49.198 +721816,160.77,48.074 +721817,163.13,51.462 +721818,161.95,50.346 +721819,160.76,49.204 +721820,159.56,48.038 +721821,161.77,51.55 +721822,160.64,50.394 +721823,159.5,49.211 +721824,158.35,48.002 +721825,160.4,51.637 +721826,159.32,50.442 +721827,158.24,49.219 +721828,157.15,47.967 +721829,159.04,51.723 +721830,158.01,50.489 +721831,156.98,49.226 +721832,155.94,47.933 +721833,157.67,51.807 +721834,156.7,50.536 +721835,155.72,49.234 +721836,154.74,47.901 +721837,156.3,51.891 +721838,155.38,50.583 +721839,154.46,49.243 +721840,153.54,47.869 +721841,154.94,51.973 +721842,154.07,50.63 +721843,153.2,49.251 +721844,152.34,47.839 +721845,153.57,52.055 +721846,152.75,50.675 +721847,151.94,49.261 +721848,151.14,47.809 +721849,152.2,52.135 +721850,151.44,50.721 +721851,150.68,49.27 +721852,149.94,47.781 +721853,150.83,52.213 +721854,150.12,50.766 +721855,149.43,49.28 +721856,148.74,47.754 +721857,149.46,52.291 +721858,148.81,50.811 +721859,148.17,49.291 +721860,147.54,47.728 +721861,148.09,52.367 +721862,147.49,50.855 +721863,146.91,49.302 +721864,146.34,47.704 +721865,146.72,52.442 +721866,146.18,50.899 +721867,145.65,49.313 +721868,145.15,47.681 +721869,145.35,52.516 +721870,144.86,50.943 +721871,144.39,49.325 +721872,143.95,47.659 +721873,143.98,52.588 +721874,143.54,50.986 +721875,143.14,49.337 +721876,142.76,47.638 +721877,142.61,52.659 +721878,142.23,51.029 +721879,141.88,49.35 +721880,141.56,47.619 +721881,141.24,52.729 +721882,140.91,51.071 +721883,140.62,49.363 +721884,140.37,47.601 +721885,139.86,52.797 +721886,139.6,51.113 +721887,139.36,49.376 +721888,139.17,47.585 +721889,138.49,52.864 +721890,138.28,51.154 +721891,138.11,49.391 +721892,137.98,47.57 +721893,137.12,52.93 +721894,136.96,51.195 +721895,136.85,49.405 +721896,136.79,47.557 +721897,135.75,52.994 +721898,135.65,51.235 +721899,135.59,49.42 +721900,135.59,47.545 +721901,134.38,53.056 +721902,134.33,51.275 +721903,134.33,49.436 +721904,134.4,47.535 +721905,133.01,53.117 +721906,133.01,51.315 +721907,133.07,49.452 +721908,133.21,47.526 +721909,131.63,53.177 +721910,131.69,51.353 +721911,131.82,49.469 +721912,132.01,47.518 +721913,130.26,53.235 +721914,130.38,51.392 +721915,130.56,49.486 +721916,130.82,47.513 +721917,128.89,53.292 +721918,129.06,51.43 +721919,129.3,49.504 +721920,129.63,47.509 +721921,127.52,53.347 +721922,127.74,51.467 +721923,128.04,49.522 +721924,128.43,47.506 +721925,126.15,53.401 +721926,126.43,51.504 +721927,126.78,49.541 +721928,127.24,47.505 +721929,124.78,53.453 +721930,125.11,51.541 +721931,125.53,49.561 +721932,126.05,47.506 +721933,123.41,53.503 +721934,123.79,51.577 +721935,124.27,49.581 +721936,124.85,47.508 +721937,122.04,53.552 +721938,122.47,51.612 +721939,123.01,49.601 +721940,123.66,47.513 +721941,120.67,53.6 +721942,121.16,51.647 +721943,121.75,49.622 +721944,122.46,47.518 +721945,119.3,53.646 +721946,119.84,51.681 +721947,120.49,49.644 +721948,121.27,47.526 +721949,117.93,53.69 +721950,118.52,51.715 +721951,119.23,49.666 +721952,120.07,47.535 +721953,116.56,53.733 +721954,117.21,51.748 +721955,117.97,49.689 +721956,118.88,47.546 +721957,115.19,53.774 +721958,115.89,51.781 +721959,116.71,49.712 +721960,117.68,47.559 +721961,113.82,53.814 +721962,114.57,51.813 +721963,115.45,49.736 +721964,116.48,47.573 +721965,112.46,53.852 +721966,113.26,51.845 +721967,114.19,49.761 +721968,115.28,47.589 +721969,111.09,53.889 +721970,111.94,51.876 +721971,112.93,49.786 +721972,114.08,47.607 +721973,109.72,53.924 +721974,110.62,51.907 +721975,111.67,49.811 +721976,112.88,47.627 +721977,108.36,53.957 +721978,109.31,51.937 +721979,110.41,49.837 +721980,111.68,47.648 +721981,106.99,53.989 +721982,107.99,51.967 +721983,109.14,49.864 +721984,110.48,47.671 +721985,105.63,54.02 +721986,106.68,51.996 +721987,107.88,49.892 +721988,109.28,47.696 +721989,104.27,54.048 +721990,105.36,52.024 +721991,106.62,49.919 +721992,108.07,47.723 +721993,102.9,54.075 +721994,104.05,52.052 +721995,105.36,49.948 +721996,106.87,47.751 +721997,101.54,54.101 +721998,102.73,52.08 +721999,104.09,49.977 +722000,105.66,47.781 +722001,100.18,54.125 +722002,101.42,52.107 +722003,102.83,50.007 +722004,104.45,47.813 +722005,98.82,54.148 +722006,100.1,52.133 +722007,101.56,50.037 +722008,103.24,47.847 +722009,97.461,54.168 +722010,98.79,52.159 +722011,100.3,50.068 +722012,102.03,47.882 +722013,96.102,54.188 +722014,97.476,52.185 +722015,99.032,50.099 +722016,100.82,47.92 +722017,94.745,54.206 +722018,96.163,52.209 +722019,97.766,50.131 +722020,99.603,47.958 +722021,93.389,54.222 +722022,94.85,52.234 +722023,96.5,50.163 +722024,98.387,47.999 +722025,92.034,54.237 +722026,93.537,52.258 +722027,95.232,50.196 +722028,97.17,48.041 +722029,90.679,54.25 +722030,92.225,52.281 +722031,93.965,50.23 +722032,95.951,48.085 +722033,89.326,54.262 +722034,90.913,52.304 +722035,92.697,50.264 +722036,94.73,48.131 +722037,87.974,54.272 +722038,89.601,52.326 +722039,91.428,50.299 +722040,93.508,48.179 +722041,86.623,54.281 +722042,88.29,52.348 +722043,90.159,50.334 +722044,92.284,48.228 +722045,85.274,54.288 +722046,86.979,52.369 +722047,88.889,50.369 +722048,91.058,48.278 +722049,83.925,54.294 +722050,85.668,52.39 +722051,87.618,50.406 +722052,89.831,48.331 +722053,82.578,54.299 +722054,84.358,52.41 +722055,86.347,50.443 +722056,88.601,48.385 +722057,81.232,54.302 +722058,83.048,52.43 +722059,85.076,50.48 +722060,87.37,48.44 +722061,79.887,54.303 +722062,81.739,52.449 +722063,83.803,50.518 +722064,86.136,48.498 +722065,78.543,54.303 +722066,80.43,52.468 +722067,82.53,50.556 +722068,84.901,48.556 +722069,77.201,54.302 +722070,79.121,52.486 +722071,81.257,50.595 +722072,83.663,48.617 +722073,75.86,54.3 +722074,77.813,52.504 +722075,79.983,50.634 +722076,82.424,48.678 +722077,74.521,54.296 +722078,76.506,52.522 +722079,78.708,50.674 +722080,81.182,48.742 +722081,73.182,54.29 +722082,75.199,52.539 +722083,77.432,50.714 +722084,79.939,48.806 +722085,71.846,54.284 +722086,73.892,52.555 +722087,76.156,50.755 +722088,78.693,48.873 +722089,70.51,54.276 +722090,72.586,52.571 +722091,74.879,50.796 +722092,77.445,48.94 +722093,69.177,54.267 +722094,71.28,52.587 +722095,73.601,50.838 +722096,76.195,49.01 +722097,67.844,54.256 +722098,69.975,52.602 +722099,72.323,50.88 +722100,74.943,49.08 +722101,66.513,54.244 +722102,68.67,52.617 +722103,71.044,50.923 +722104,73.688,49.152 +722105,65.184,54.232 +722106,67.366,52.632 +722107,69.764,50.966 +722108,72.431,49.225 +722109,63.856,54.217 +722110,66.062,52.646 +722111,68.483,51.009 +722112,71.173,49.299 +722113,62.53,54.202 +722114,64.759,52.659 +722115,67.202,51.053 +722116,69.911,49.375 +722117,61.206,54.186 +722118,63.457,52.672 +722119,65.92,51.098 +722120,68.648,49.452 +722121,59.883,54.168 +722122,62.155,52.685 +722123,64.638,51.142 +722124,67.382,49.53 +722125,58.561,54.149 +722126,60.853,52.698 +722127,63.354,51.187 +722128,66.114,49.61 +722129,57.242,54.13 +722130,59.552,52.71 +722131,62.07,51.233 +722132,64.844,49.69 +722133,55.923,54.109 +722134,58.252,52.722 +722135,60.785,51.279 +722136,63.572,49.772 +722137,54.607,54.087 +722138,56.952,52.733 +722139,59.499,51.325 +722140,62.297,49.854 +722141,53.292,54.064 +722142,55.652,52.744 +722143,58.213,51.371 +722144,61.02,49.938 +722145,51.979,54.04 +722146,54.354,52.755 +722147,56.926,51.418 +722148,59.74,50.023 +722149,50.668,54.015 +722150,53.055,52.765 +722151,55.638,51.465 +722152,58.459,50.109 +722153,49.359,53.99 +722154,51.758,52.776 +722155,54.349,51.513 +722156,57.175,50.195 +722157,48.051,53.963 +722158,50.461,52.785 +722159,53.06,51.561 +722160,55.889,50.283 +722161,46.745,53.935 +722162,49.164,52.795 +722163,51.77,51.609 +722164,54.6,50.372 +722165,45.44,53.907 +722166,47.868,52.804 +722167,50.479,51.657 +722168,53.309,50.461 +722169,44.138,53.878 +722170,46.573,52.813 +722171,49.187,51.706 +722172,52.016,50.551 +722173,42.837,53.848 +722174,45.278,52.822 +722175,47.894,51.755 +722176,50.721,50.642 +722177,41.538,53.817 +722178,43.984,52.83 +722179,46.601,51.804 +722180,49.424,50.734 +722181,40.241,53.786 +722182,42.691,52.839 +722183,45.307,51.854 +722184,48.124,50.826 +722185,38.946,53.753 +722186,41.398,52.847 +722187,44.012,51.904 +722188,46.822,50.919 +722189,37.653,53.721 +722190,40.105,52.855 +722191,42.717,51.953 +722192,45.518,51.013 +722193,36.361,53.687 +722194,38.814,52.862 +722195,41.421,52.004 +722196,44.211,51.107 +722197,35.071,53.653 +722198,37.522,52.87 +722199,40.124,52.054 +722200,42.903,51.202 +722201,33.783,53.618 +722202,36.232,52.877 +722203,38.826,52.104 +722204,41.592,51.297 +722205,32.497,53.583 +722206,34.942,52.884 +722207,37.527,52.155 +722208,40.279,51.393 +722209,31.213,53.548 +722210,33.652,52.891 +722211,36.228,52.206 +722212,38.965,51.489 +722213,29.931,53.511 +722214,32.363,52.898 +722215,34.928,52.257 +722216,37.648,51.585 +722217,28.65,53.475 +722218,31.075,52.904 +722219,33.627,52.308 +722220,36.329,51.682 +722221,27.372,53.438 +722222,29.787,52.911 +722223,32.326,52.359 +722224,35.007,51.78 +722225,26.095,53.4 +722226,28.5,52.917 +722227,31.024,52.411 +722228,33.684,51.877 +722229,24.82,53.362 +722230,27.214,52.923 +722231,29.721,52.462 +722232,32.359,51.975 +722233,23.547,53.324 +722234,25.928,52.93 +722235,28.417,52.513 +722236,31.032,52.073 +722237,22.276,53.286 +722238,24.642,52.936 +722239,27.113,52.565 +722240,29.703,52.171 +722241,21.006,53.247 +722242,23.358,52.942 +722243,25.808,52.617 +722244,28.372,52.27 +722245,19.739,53.209 +722246,22.073,52.948 +722247,24.502,52.668 +722248,27.04,52.368 +722249,18.473,53.17 +722250,20.79,52.954 +722251,23.196,52.72 +722252,25.705,52.466 +722253,17.209,53.131 +722254,19.506,52.96 +722255,21.889,52.772 +722256,24.368,52.565 +722257,15.947,53.091 +722258,18.224,52.965 +722259,20.581,52.824 +722260,23.03,52.663 +722261,14.687,53.052 +722262,16.942,52.971 +722263,19.273,52.875 +722264,21.69,52.762 +722265,13.428,53.013 +722266,15.66,52.977 +722267,17.964,52.927 +722268,20.348,52.86 +722269,12.171,52.973 +722270,14.379,52.983 +722271,16.654,52.979 +722272,19.005,52.958 +722273,10.916,52.934 +722274,13.099,52.989 +722275,15.344,53.031 +722276,17.66,53.056 +722277,9.6633,52.895 +722278,11.819,52.995 +722279,14.033,53.082 +722280,16.313,53.154 +722281,8.4119,52.856 +722282,10.539,53.001 +722283,12.721,53.134 +722284,14.965,53.251 +722285,7.1622,52.817 +722286,9.2605,53.007 +722287,11.409,53.185 +722288,13.615,53.349 +722289,5.9142,52.778 +722290,7.982,53.013 +722291,10.097,53.237 +722292,12.263,53.446 +722293,4.6679,52.739 +722294,6.7041,53.02 +722295,8.7833,53.288 +722296,10.91,53.542 +722297,3.4233,52.701 +722298,5.4266,53.026 +722299,7.4694,53.339 +722300,9.5561,53.638 +722301,2.1804,52.663 +722302,4.1497,53.032 +722303,6.1549,53.39 +722304,8.2002,53.734 +722305,0.93906,52.625 +722306,2.8732,53.039 +722307,4.8399,53.441 +722308,6.843,53.83 +722309,359.7,52.588 +722310,1.5971,53.046 +722311,3.5243,53.492 +722312,5.4844,53.924 +722313,358.46,52.551 +722314,0.32149,53.053 +722315,2.2082,53.542 +722316,4.1245,54.019 +722317,357.22,52.514 +722318,359.05,53.06 +722319,0.89158,53.593 +722320,2.7634,54.113 +722321,355.99,52.478 +722322,357.77,53.067 +722323,359.57,53.643 +722324,1.4009,54.206 +722325,354.76,52.443 +722326,356.5,53.074 +722327,358.26,53.693 +722328,0.037297,54.298 +722329,353.52,52.407 +722330,355.22,53.082 +722331,356.94,53.743 +722332,358.67,54.39 +722333,352.29,52.373 +722334,353.95,53.089 +722335,355.62,53.793 +722336,357.31,54.482 +722337,351.06,52.339 +722338,352.68,53.097 +722339,354.3,53.842 +722340,355.94,54.572 +722341,349.84,52.305 +722342,351.4,53.105 +722343,352.98,53.892 +722344,354.57,54.662 +722345,348.61,52.273 +722346,350.13,53.114 +722347,351.66,53.941 +722348,353.2,54.751 +722349,347.39,52.241 +722350,348.86,53.123 +722351,350.34,53.989 +722352,351.83,54.839 +722353,346.16,52.209 +722354,347.59,53.131 +722355,349.02,54.038 +722356,350.46,54.927 +722357,344.94,52.179 +722358,346.32,53.141 +722359,347.7,54.086 +722360,349.09,55.013 +722361,343.72,52.149 +722362,345.05,53.15 +722363,346.38,54.134 +722364,347.72,55.099 +722365,342.5,52.12 +722366,343.77,53.16 +722367,345.06,54.181 +722368,346.34,55.184 +722369,341.28,52.092 +722370,342.5,53.17 +722371,343.73,54.229 +722372,344.97,55.268 +722373,340.06,52.065 +722374,341.23,53.18 +722375,342.41,54.276 +722376,343.59,55.351 +722377,338.85,52.039 +722378,339.96,53.191 +722379,341.09,54.322 +722380,342.22,55.432 +722381,337.63,52.013 +722382,338.69,53.202 +722383,339.76,54.369 +722384,340.84,55.513 +722385,336.42,51.989 +722386,337.42,53.213 +722387,338.44,54.415 +722388,339.46,55.593 +722389,335.2,51.965 +722390,336.16,53.224 +722391,337.12,54.46 +722392,338.09,55.672 +722393,333.99,51.943 +722394,334.89,53.236 +722395,335.79,54.505 +722396,336.71,55.75 +722397,332.78,51.921 +722398,333.62,53.249 +722399,334.47,54.55 +722400,335.33,55.826 +722401,331.57,51.901 +722402,332.35,53.261 +722403,333.14,54.595 +722404,333.95,55.902 +722405,330.36,51.882 +722406,331.08,53.274 +722407,331.82,54.639 +722408,332.57,55.976 +722409,329.15,51.864 +722410,329.81,53.288 +722411,330.49,54.683 +722412,331.19,56.049 +722413,327.94,51.847 +722414,328.54,53.302 +722415,329.17,54.726 +722416,329.81,56.121 +722417,326.73,51.831 +722418,327.28,53.316 +722419,327.84,54.769 +722420,328.43,56.192 +722421,325.52,51.817 +722422,326.01,53.33 +722423,326.52,54.812 +722424,327.05,56.261 +722425,324.31,51.803 +722426,324.74,53.345 +722427,325.19,54.854 +722428,325.66,56.33 +722429,323.11,51.791 +722430,323.47,53.361 +722431,323.86,54.896 +722432,324.28,56.397 +722433,321.9,51.781 +722434,322.2,53.377 +722435,322.54,54.937 +722436,322.9,56.463 +722437,320.7,51.771 +722438,320.94,53.393 +722439,321.21,54.978 +722440,321.52,56.527 +722441,319.49,51.763 +722442,319.67,53.41 +722443,319.89,55.018 +722444,320.14,56.59 +722445,318.28,51.756 +722446,318.4,53.427 +722447,318.56,55.058 +722448,318.75,56.652 +722449,317.08,51.75 +722450,317.13,53.444 +722451,317.23,55.098 +722452,317.37,56.712 +722453,315.88,51.746 +722454,315.87,53.462 +722455,315.91,55.137 +722456,315.99,56.772 +722457,314.67,51.744 +722458,314.6,53.481 +722459,314.58,55.176 +722460,314.61,56.829 +722461,313.47,51.742 +722462,313.33,53.5 +722463,313.25,55.214 +722464,313.23,56.886 +722465,312.26,51.742 +722466,312.06,53.519 +722467,311.93,55.251 +722468,311.84,56.941 +722469,311.06,51.744 +722470,310.79,53.539 +722471,310.6,55.289 +722472,310.46,56.994 +722473,309.85,51.747 +722474,309.53,53.559 +722475,309.27,55.325 +722476,309.08,57.047 +722477,308.65,51.751 +722478,308.26,53.58 +722479,307.95,55.362 +722480,307.7,57.097 +722481,307.44,51.757 +722482,306.99,53.602 +722483,306.62,55.397 +722484,306.32,57.147 +722485,306.24,51.764 +722486,305.72,53.623 +722487,305.29,55.433 +722488,304.94,57.195 +722489,305.03,51.773 +722490,304.45,53.646 +722491,303.96,55.467 +722492,303.56,57.241 +722493,303.82,51.783 +722494,303.18,53.669 +722495,302.64,55.502 +722496,302.18,57.286 +722497,302.62,51.795 +722498,301.91,53.692 +722499,301.31,55.536 +722500,300.8,57.33 +722501,301.41,51.809 +722502,300.64,53.716 +722503,299.99,55.569 +722504,299.42,57.372 +722505,300.2,51.824 +722506,299.37,53.74 +722507,298.66,55.602 +722508,298.04,57.413 +722509,298.99,51.84 +722510,298.11,53.765 +722511,297.33,55.634 +722512,296.66,57.452 +722513,297.79,51.858 +722514,296.84,53.79 +722515,296.01,55.666 +722516,295.28,57.49 +722517,296.58,51.878 +722518,295.56,53.816 +722519,294.68,55.697 +722520,293.91,57.526 +722521,295.37,51.899 +722522,294.29,53.842 +722523,293.36,55.728 +722524,292.53,57.561 +722525,294.15,51.921 +722526,293.02,53.869 +722527,292.03,55.758 +722528,291.15,57.594 +722529,292.94,51.946 +722530,291.75,53.896 +722531,290.7,55.788 +722532,289.78,57.626 +722533,291.73,51.971 +722534,290.48,53.924 +722535,289.38,55.817 +722536,288.4,57.657 +722537,290.52,51.999 +722538,289.21,53.952 +722539,288.05,55.846 +722540,287.03,57.686 +722541,289.3,52.028 +722542,287.94,53.981 +722543,286.73,55.875 +722544,285.66,57.713 +722545,288.08,52.058 +722546,286.66,54.01 +722547,285.41,55.902 +722548,284.28,57.739 +722549,286.87,52.09 +722550,285.39,54.04 +722551,284.08,55.93 +722552,282.91,57.764 +722553,285.65,52.124 +722554,284.12,54.07 +722555,282.76,55.956 +722556,281.54,57.787 +722557,284.43,52.159 +722558,282.84,54.101 +722559,281.43,55.983 +722560,280.17,57.809 +722561,283.21,52.195 +722562,281.57,54.132 +722563,280.11,56.009 +722564,278.8,57.829 +722565,281.99,52.233 +722566,280.29,54.164 +722567,278.79,56.034 +722568,277.43,57.848 +722569,280.76,52.273 +722570,279.02,54.196 +722571,277.47,56.059 +722572,276.07,57.865 +722573,279.54,52.314 +722574,277.74,54.229 +722575,276.14,56.083 +722576,274.7,57.881 +722577,278.31,52.357 +722578,276.47,54.262 +722579,274.82,56.107 +722580,273.34,57.896 +722581,277.08,52.401 +722582,275.19,54.296 +722583,273.5,56.13 +722584,271.97,57.909 +722585,275.85,52.447 +722586,273.91,54.33 +722587,272.18,56.153 +722588,270.61,57.921 +722589,274.62,52.494 +722590,272.64,54.365 +722591,270.86,56.176 +722592,269.25,57.931 +722593,273.39,52.543 +722594,271.36,54.4 +722595,269.54,56.198 +722596,267.89,57.94 +722597,272.15,52.593 +722598,270.08,54.436 +722599,268.22,56.219 +722600,266.53,57.948 +722601,270.92,52.644 +722602,268.8,54.472 +722603,266.9,56.24 +722604,265.17,57.954 +722605,269.68,52.697 +722606,267.52,54.509 +722607,265.58,56.261 +722608,263.82,57.959 +722609,268.44,52.752 +722610,266.24,54.546 +722611,264.26,56.281 +722612,262.46,57.963 +722613,267.2,52.807 +722614,264.96,54.583 +722615,262.94,56.3 +722616,261.11,57.965 +722617,265.96,52.865 +722618,263.68,54.621 +722619,261.62,56.319 +722620,259.75,57.966 +722621,264.71,52.923 +722622,262.39,54.659 +722623,260.3,56.338 +722624,258.4,57.966 +722625,263.46,52.983 +722626,261.11,54.698 +722627,258.99,56.357 +722628,257.05,57.964 +722629,262.21,53.044 +722630,259.83,54.737 +722631,257.67,56.374 +722632,255.7,57.961 +722633,260.96,53.106 +722634,258.54,54.777 +722635,256.35,56.392 +722636,254.35,57.957 +722637,259.71,53.17 +722638,257.26,54.817 +722639,255.04,56.409 +722640,253.01,57.952 +722641,258.45,53.235 +722642,255.97,54.857 +722643,253.72,56.426 +722644,251.66,57.946 +722645,257.2,53.301 +722646,254.69,54.898 +722647,252.41,56.442 +722648,250.32,57.938 +722649,255.94,53.369 +722650,253.4,54.939 +722651,251.09,56.458 +722652,248.98,57.93 +722653,254.68,53.437 +722654,252.11,54.981 +722655,249.78,56.473 +722656,247.64,57.92 +722657,253.41,53.507 +722658,250.82,55.023 +722659,248.47,56.488 +722660,246.3,57.909 +722661,252.15,53.578 +722662,249.54,55.065 +722663,247.16,56.503 +722664,244.96,57.897 +722665,250.88,53.65 +722666,248.25,55.108 +722667,245.84,56.517 +722668,243.63,57.884 +722669,249.61,53.723 +722670,246.96,55.151 +722671,244.53,56.531 +722672,242.3,57.869 +722673,248.34,53.797 +722674,245.67,55.194 +722675,243.22,56.545 +722676,240.96,57.854 +722677,247.06,53.872 +722678,244.37,55.238 +722679,241.91,56.558 +722680,239.63,57.838 +722681,245.79,53.948 +722682,243.08,55.282 +722683,240.6,56.571 +722684,238.3,57.821 +722685,244.51,54.025 +722686,241.79,55.326 +722687,239.29,56.584 +722688,236.98,57.802 +722689,243.23,54.103 +722690,240.5,55.371 +722691,237.98,56.596 +722692,235.65,57.783 +722693,241.95,54.182 +722694,239.2,55.416 +722695,236.67,56.608 +722696,234.33,57.763 +722697,240.66,54.262 +722698,237.91,55.461 +722699,235.37,56.619 +722700,233.01,57.742 +722701,239.37,54.343 +722702,236.61,55.506 +722703,234.06,56.631 +722704,231.68,57.721 +722705,238.09,54.425 +722706,235.31,55.552 +722707,232.75,56.642 +722708,230.37,57.698 +722709,236.79,54.507 +722710,234.02,55.598 +722711,231.45,56.653 +722712,229.05,57.675 +722713,235.5,54.59 +722714,232.72,55.644 +722715,230.14,56.663 +722716,227.73,57.65 +722717,234.2,54.674 +722718,231.42,55.691 +722719,228.84,56.674 +722720,226.42,57.625 +722721,232.91,54.758 +722722,230.12,55.738 +722723,227.53,56.684 +722724,225.11,57.6 +722725,231.61,54.843 +722726,228.82,55.785 +722727,226.23,56.693 +722728,223.8,57.573 +722729,230.3,54.929 +722730,227.52,55.832 +722731,224.93,56.703 +722732,222.49,57.546 +722733,229,55.016 +722734,226.22,55.879 +722735,223.62,56.712 +722736,221.18,57.519 +722737,227.69,55.103 +722738,224.91,55.927 +722739,222.32,56.721 +722740,219.88,57.49 +722741,226.38,55.19 +722742,223.61,55.974 +722743,221.02,56.73 +722744,218.58,57.461 +722745,225.07,55.278 +722746,222.31,56.022 +722747,219.72,56.739 +722748,217.28,57.432 +722749,223.76,55.366 +722750,221,56.07 +722751,218.42,56.748 +722752,215.98,57.402 +722753,222.44,55.455 +722754,219.7,56.118 +722755,217.12,56.756 +722756,214.68,57.372 +722757,221.12,55.545 +722758,218.39,56.167 +722759,215.82,56.764 +722760,213.39,57.341 +722761,219.8,55.634 +722762,217.09,56.215 +722763,214.52,56.773 +722764,212.09,57.309 +722765,218.48,55.724 +722766,215.78,56.264 +722767,213.22,56.781 +722768,210.8,57.277 +722769,217.16,55.814 +722770,214.47,56.312 +722771,211.93,56.788 +722772,209.51,57.245 +722773,215.83,55.905 +722774,213.16,56.361 +722775,210.63,56.796 +722776,208.22,57.213 +722777,214.51,55.996 +722778,211.85,56.41 +722779,209.34,56.804 +722780,206.94,57.18 +722781,213.18,56.087 +722782,210.54,56.459 +722783,208.04,56.811 +722784,205.65,57.147 +722785,211.84,56.178 +722786,209.23,56.508 +722787,206.74,56.819 +722788,204.37,57.114 +722789,210.51,56.269 +722790,207.92,56.557 +722791,205.45,56.826 +722792,203.09,57.08 +722793,209.17,56.36 +722794,206.61,56.606 +722795,204.16,56.834 +722796,201.81,57.047 +722797,207.84,56.452 +722798,205.29,56.655 +722799,202.86,56.841 +722800,200.53,57.013 +722801,206.5,56.543 +722802,203.98,56.704 +722803,201.57,56.848 +722804,199.26,56.979 +722805,205.16,56.634 +722806,202.67,56.753 +722807,200.28,56.855 +722808,197.98,56.945 +722809,203.81,56.725 +722810,201.35,56.802 +722811,198.99,56.863 +722812,196.71,56.911 +722813,202.47,56.817 +722814,200.04,56.851 +722815,197.7,56.87 +722816,195.44,56.877 +722817,201.12,56.908 +722818,198.72,56.9 +722819,196.41,56.877 +722820,194.17,56.842 +722821,199.77,56.999 +722822,197.4,56.948 +722823,195.12,56.884 +722824,192.91,56.808 +722825,198.42,57.089 +722826,196.09,56.997 +722827,193.83,56.891 +722828,191.64,56.774 +722829,197.07,57.18 +722830,194.77,57.046 +722831,192.54,56.899 +722832,190.38,56.741 +722833,195.72,57.27 +722834,193.45,57.095 +722835,191.25,56.906 +722836,189.12,56.707 +722837,194.37,57.36 +722838,192.13,57.143 +722839,189.96,56.914 +722840,187.86,56.673 +722841,193.01,57.45 +722842,190.81,57.192 +722843,188.68,56.921 +722844,186.6,56.64 +722845,191.65,57.539 +722846,189.49,57.24 +722847,187.39,56.929 +722848,185.34,56.607 +722849,190.29,57.628 +722850,188.17,57.288 +722851,186.1,56.936 +722852,184.09,56.574 +722853,188.93,57.717 +722854,186.85,57.336 +722855,184.82,56.944 +722856,182.84,56.541 +722857,187.57,57.805 +722858,185.53,57.384 +722859,183.53,56.952 +722860,181.58,56.509 +722861,186.21,57.892 +722862,184.2,57.432 +722863,182.25,56.96 +722864,180.33,56.477 +722865,184.84,57.979 +722866,182.88,57.48 +722867,180.96,56.968 +722868,179.09,56.446 +722869,183.47,58.066 +722870,181.56,57.527 +722871,179.68,56.976 +722872,177.84,56.415 +722873,182.11,58.152 +722874,180.23,57.574 +722875,178.4,56.985 +722876,176.59,56.385 +722877,180.74,58.237 +722878,178.91,57.622 +722879,177.11,56.993 +722880,175.35,56.355 +722881,179.37,58.322 +722882,177.58,57.668 +722883,175.83,57.002 +722884,174.11,56.325 +722885,178,58.406 +722886,176.26,57.715 +722887,174.55,57.011 +722888,172.87,56.296 +722889,176.62,58.49 +722890,174.93,57.761 +722891,173.27,57.02 +722892,171.63,56.268 +722893,175.25,58.572 +722894,173.61,57.808 +722895,171.99,57.03 +722896,170.39,56.24 +722897,173.88,58.654 +722898,172.28,57.854 +722899,170.71,57.039 +722900,169.15,56.213 +722901,172.5,58.735 +722902,170.95,57.899 +722903,169.43,57.049 +722904,167.92,56.186 +722905,171.12,58.816 +722906,169.62,57.945 +722907,168.15,57.059 +722908,166.68,56.161 +722909,169.75,58.895 +722910,168.3,57.99 +722911,166.87,57.069 +722912,165.45,56.136 +722913,168.37,58.974 +722914,166.97,58.035 +722915,165.59,57.08 +722916,164.22,56.111 +722917,166.99,59.052 +722918,165.64,58.079 +722919,164.31,57.091 +722920,162.99,56.088 +722921,165.61,59.129 +722922,164.31,58.123 +722923,163.03,57.102 +722924,161.76,56.065 +722925,164.23,59.205 +722926,162.98,58.167 +722927,161.75,57.113 +722928,160.53,56.043 +722929,162.85,59.28 +722930,161.65,58.211 +722931,160.47,57.125 +722932,159.3,56.023 +722933,161.46,59.355 +722934,160.32,58.254 +722935,159.19,57.137 +722936,158.08,56.002 +722937,160.08,59.428 +722938,158.99,58.297 +722939,157.92,57.149 +722940,156.85,55.983 +722941,158.7,59.5 +722942,157.66,58.34 +722943,156.64,57.161 +722944,155.63,55.965 +722945,157.31,59.571 +722946,156.33,58.382 +722947,155.36,57.174 +722948,154.4,55.948 +722949,155.93,59.641 +722950,155,58.424 +722951,154.08,57.187 +722952,153.18,55.932 +722953,154.54,59.71 +722954,153.67,58.466 +722955,152.81,57.201 +722956,151.96,55.916 +722957,153.16,59.778 +722958,152.34,58.507 +722959,151.53,57.215 +722960,150.74,55.902 +722961,151.77,59.845 +722962,151,58.548 +722963,150.25,57.229 +722964,149.52,55.889 +722965,150.38,59.911 +722966,149.67,58.588 +722967,148.98,57.244 +722968,148.3,55.877 +722969,149,59.975 +722970,148.34,58.628 +722971,147.7,57.258 +722972,147.08,55.866 +722973,147.61,60.039 +722974,147.01,58.668 +722975,146.42,57.274 +722976,145.86,55.856 +722977,146.22,60.101 +722978,145.67,58.707 +722979,145.15,57.289 +722980,144.65,55.848 +722981,144.83,60.162 +722982,144.34,58.746 +722983,143.87,57.305 +722984,143.43,55.84 +722985,143.45,60.222 +722986,143.01,58.785 +722987,142.6,57.322 +722988,142.21,55.834 +722989,142.06,60.281 +722990,141.68,58.823 +722991,141.32,57.339 +722992,141,55.829 +722993,140.67,60.338 +722994,140.34,58.86 +722995,140.05,57.356 +722996,139.78,55.825 +722997,139.28,60.394 +722998,139.01,58.898 +722999,138.77,57.374 +723000,138.56,55.822 +723001,137.89,60.449 +723002,137.68,58.934 +723003,137.49,57.392 +723004,137.35,55.821 +723005,136.5,60.503 +723006,136.34,58.971 +723007,136.22,57.41 +723008,136.13,55.821 +723009,135.11,60.555 +723010,135.01,59.007 +723011,134.94,57.429 +723012,134.92,55.822 +723013,133.73,60.606 +723014,133.68,59.042 +723015,133.67,57.448 +723016,133.7,55.824 +723017,132.34,60.656 +723018,132.34,59.077 +723019,132.39,57.468 +723020,132.49,55.828 +723021,130.95,60.704 +723022,131.01,59.112 +723023,131.12,57.488 +723024,131.27,55.833 +723025,129.56,60.751 +723026,129.68,59.146 +723027,129.84,57.509 +723028,130.06,55.84 +723029,128.17,60.797 +723030,128.34,59.179 +723031,128.56,57.53 +723032,128.85,55.847 +723033,126.79,60.842 +723034,127.01,59.212 +723035,127.29,57.551 +723036,127.63,55.857 +723037,125.4,60.885 +723038,125.68,59.245 +723039,126.01,57.573 +723040,126.42,55.867 +723041,124.01,60.926 +723042,124.34,59.277 +723043,124.74,57.595 +723044,125.2,55.879 +723045,122.62,60.967 +723046,123.01,59.309 +723047,123.46,57.618 +723048,123.98,55.892 +723049,121.24,61.006 +723050,121.68,59.341 +723051,122.18,57.641 +723052,122.77,55.907 +723053,119.85,61.044 +723054,120.34,59.371 +723055,120.91,57.665 +723056,121.55,55.923 +723057,118.47,61.08 +723058,119.01,59.402 +723059,119.63,57.689 +723060,120.34,55.94 +723061,117.08,61.115 +723062,117.68,59.432 +723063,118.35,57.713 +723064,119.12,55.959 +723065,115.7,61.148 +723066,116.34,59.461 +723067,117.08,57.738 +723068,117.9,55.979 +723069,114.31,61.18 +723070,115.01,59.49 +723071,115.8,57.764 +723072,116.68,56.001 +723073,112.93,61.211 +723074,113.68,59.519 +723075,114.52,57.79 +723076,115.46,56.024 +723077,111.55,61.241 +723078,112.35,59.547 +723079,113.24,57.816 +723080,114.24,56.048 +723081,110.16,61.269 +723082,111.02,59.574 +723083,111.96,57.843 +723084,113.02,56.074 +723085,108.78,61.295 +723086,109.68,59.601 +723087,110.69,57.87 +723088,111.8,56.101 +723089,107.4,61.321 +723090,108.35,59.628 +723091,109.41,57.898 +723092,110.58,56.13 +723093,106.02,61.345 +723094,107.02,59.654 +723095,108.13,57.926 +723096,109.36,56.16 +723097,104.64,61.367 +723098,105.69,59.68 +723099,106.85,57.955 +723100,108.13,56.191 +723101,103.26,61.388 +723102,104.36,59.705 +723103,105.57,57.984 +723104,106.91,56.224 +723105,101.89,61.408 +723106,103.03,59.729 +723107,104.29,58.013 +723108,105.68,56.258 +723109,100.51,61.427 +723110,101.7,59.754 +723111,103.01,58.043 +723112,104.45,56.294 +723113,99.133,61.444 +723114,100.37,59.778 +723115,101.73,58.074 +723116,103.22,56.331 +723117,97.758,61.46 +723118,99.039,59.801 +723119,100.44,58.105 +723120,101.99,56.369 +723121,96.384,61.474 +723122,97.71,59.824 +723123,99.162,58.136 +723124,100.76,56.409 +723125,95.011,61.488 +723126,96.381,59.846 +723127,97.88,58.168 +723128,99.532,56.45 +723129,93.639,61.499 +723130,95.052,59.868 +723131,96.597,58.2 +723132,98.298,56.493 +723133,92.268,61.51 +723134,93.724,59.89 +723135,95.314,58.232 +723136,97.064,56.537 +723137,90.899,61.519 +723138,92.396,59.911 +723139,94.031,58.265 +723140,95.827,56.582 +723141,89.53,61.527 +723142,91.068,59.931 +723143,92.746,58.299 +723144,94.59,56.628 +723145,88.163,61.534 +723146,89.741,59.951 +723147,91.462,58.333 +723148,93.351,56.676 +723149,86.796,61.539 +723150,88.414,59.971 +723151,90.177,58.367 +723152,92.11,56.725 +723153,85.431,61.544 +723154,87.088,59.99 +723155,88.891,58.402 +723156,90.868,56.776 +723157,84.067,61.547 +723158,85.762,60.009 +723159,87.605,58.437 +723160,89.625,56.827 +723161,82.705,61.548 +723162,84.436,60.028 +723163,86.318,58.472 +723164,88.379,56.88 +723165,81.343,61.549 +723166,83.111,60.046 +723167,85.031,58.508 +723168,87.132,56.934 +723169,79.983,61.548 +723170,81.786,60.063 +723171,83.743,58.545 +723172,85.884,56.99 +723173,78.625,61.546 +723174,80.462,60.081 +723175,82.455,58.581 +723176,84.633,57.046 +723177,77.267,61.543 +723178,79.138,60.097 +723179,81.166,58.618 +723180,83.381,57.104 +723181,75.911,61.539 +723182,77.815,60.114 +723183,79.877,58.656 +723184,82.127,57.163 +723185,74.557,61.534 +723186,76.492,60.13 +723187,78.587,58.694 +723188,80.871,57.223 +723189,73.203,61.528 +723190,75.17,60.145 +723191,77.296,58.732 +723192,79.614,57.284 +723193,71.852,61.52 +723194,73.848,60.161 +723195,76.005,58.77 +723196,78.354,57.347 +723197,70.501,61.512 +723198,72.526,60.176 +723199,74.713,58.809 +723200,77.093,57.41 +723201,69.152,61.502 +723202,71.205,60.19 +723203,73.421,58.848 +723204,75.83,57.474 +723205,67.805,61.491 +723206,69.885,60.204 +723207,72.128,58.888 +723208,74.565,57.54 +723209,66.459,61.48 +723210,68.565,60.218 +723211,70.834,58.928 +723212,73.297,57.606 +723213,65.115,61.467 +723214,67.246,60.231 +723215,69.54,58.968 +723216,72.028,57.674 +723217,63.772,61.453 +723218,65.927,60.245 +723219,68.245,59.008 +723220,70.757,57.742 +723221,62.431,61.439 +723222,64.609,60.257 +723223,66.949,59.049 +723224,69.484,57.812 +723225,61.092,61.423 +723226,63.291,60.27 +723227,65.653,59.09 +723228,68.209,57.882 +723229,59.754,61.407 +723230,61.974,60.282 +723231,64.356,59.132 +723232,66.932,57.953 +723233,58.417,61.39 +723234,60.657,60.294 +723235,63.058,59.173 +723236,65.652,58.025 +723237,57.083,61.371 +723238,59.341,60.305 +723239,61.76,59.215 +723240,64.371,58.098 +723241,55.75,61.352 +723242,58.025,60.317 +723243,60.461,59.257 +723244,63.088,58.172 +723245,54.418,61.333 +723246,56.71,60.328 +723247,59.161,59.3 +723248,61.802,58.247 +723249,53.089,61.312 +723250,55.396,60.338 +723251,57.861,59.342 +723252,60.515,58.322 +723253,51.761,61.291 +723254,54.082,60.349 +723255,56.56,59.385 +723256,59.225,58.398 +723257,50.434,61.268 +723258,52.769,60.359 +723259,55.259,59.429 +723260,57.933,58.475 +723261,49.11,61.246 +723262,51.456,60.369 +723263,53.956,59.472 +723264,56.639,58.552 +723265,47.787,61.222 +723266,50.144,60.379 +723267,52.653,59.515 +723268,55.343,58.63 +723269,46.466,61.198 +723270,48.832,60.388 +723271,51.349,59.559 +723272,54.045,58.709 +723273,45.147,61.173 +723274,47.521,60.397 +723275,50.045,59.603 +723276,52.745,58.788 +723277,43.829,61.148 +723278,46.211,60.406 +723279,48.74,59.647 +723280,51.443,58.868 +723281,42.513,61.122 +723282,44.901,60.415 +723283,47.434,59.692 +723284,50.138,58.949 +723285,41.199,61.095 +723286,43.592,60.424 +723287,46.128,59.736 +723288,48.832,59.03 +723289,39.887,61.068 +723290,42.284,60.432 +723291,44.821,59.781 +723292,47.523,59.111 +723293,38.577,61.04 +723294,40.976,60.441 +723295,43.513,59.825 +723296,46.212,59.193 +723297,37.268,61.012 +723298,39.668,60.449 +723299,42.204,59.87 +723300,44.9,59.275 +723301,35.961,60.984 +723302,38.362,60.457 +723303,40.895,59.915 +723304,43.585,59.358 +723305,34.656,60.955 +723306,37.055,60.465 +723307,39.585,59.96 +723308,42.268,59.44 +723309,33.353,60.926 +723310,35.75,60.472 +723311,38.274,60.006 +723312,40.949,59.524 +723313,32.051,60.896 +723314,34.445,60.48 +723315,36.963,60.051 +723316,39.628,59.607 +723317,30.752,60.866 +723318,33.14,60.487 +723319,35.651,60.096 +723320,38.305,59.691 +723321,29.454,60.836 +723322,31.837,60.495 +723323,34.338,60.142 +723324,36.98,59.775 +723325,28.158,60.805 +723326,30.533,60.502 +723327,33.025,60.187 +723328,35.653,59.859 +723329,26.864,60.775 +723330,29.231,60.509 +723331,31.711,60.233 +723332,34.324,59.944 +723333,25.571,60.744 +723334,27.929,60.516 +723335,30.396,60.278 +723336,32.993,60.028 +723337,24.28,60.713 +723338,26.627,60.523 +723339,29.081,60.324 +723340,31.66,60.113 +723341,22.991,60.681 +723342,25.326,60.53 +723343,27.765,60.37 +723344,30.325,60.197 +723345,21.704,60.65 +723346,24.026,60.537 +723347,26.448,60.415 +723348,28.988,60.282 +723349,20.419,60.618 +723350,22.726,60.544 +723351,25.131,60.461 +723352,27.649,60.366 +723353,19.135,60.587 +723354,21.427,60.551 +723355,23.813,60.506 +723356,26.309,60.451 +723357,17.854,60.555 +723358,20.129,60.558 +723359,22.495,60.552 +723360,24.967,60.536 +723361,16.574,60.524 +723362,18.83,60.565 +723363,21.176,60.598 +723364,23.622,60.62 +723365,15.295,60.492 +723366,17.533,60.572 +723367,19.856,60.643 +723368,22.276,60.704 +723369,14.019,60.461 +723370,16.236,60.579 +723371,18.535,60.689 +723372,20.929,60.789 +723373,12.744,60.43 +723374,14.94,60.586 +723375,17.214,60.734 +723376,19.579,60.873 +723377,11.471,60.398 +723378,13.644,60.593 +723379,15.893,60.779 +723380,18.228,60.956 +723381,10.199,60.367 +723382,12.349,60.6 +723383,14.57,60.824 +723384,16.875,61.04 +723385,8.9294,60.337 +723386,11.054,60.607 +723387,13.248,60.87 +723388,15.521,61.123 +723389,7.6612,60.306 +723390,9.7596,60.614 +723391,11.924,60.915 +723392,14.165,61.206 +723393,6.3948,60.276 +723394,8.4659,60.621 +723395,10.6,60.96 +723396,12.807,61.289 +723397,5.1299,60.246 +723398,7.1727,60.629 +723399,9.2758,61.004 +723400,11.448,61.371 +723401,3.8667,60.216 +723402,5.8799,60.636 +723403,7.9508,61.049 +723404,10.087,61.453 +723405,2.605,60.186 +723406,4.5877,60.644 +723407,6.6252,61.093 +723408,8.7252,61.534 +723409,1.345,60.157 +723410,3.296,60.651 +723411,5.2991,61.138 +723412,7.3615,61.615 +723413,0.086458,60.129 +723414,2.0047,60.659 +723415,3.9724,61.182 +723416,5.9964,61.695 +723417,358.83,60.1 +723418,0.71394,60.667 +723419,2.6453,61.226 +723420,4.6299,61.775 +723421,357.57,60.073 +723422,359.42,60.675 +723423,1.3176,61.27 +723424,3.262,61.855 +723425,356.32,60.045 +723426,358.13,60.683 +723427,359.99,61.313 +723428,1.8928,61.933 +723429,355.07,60.019 +723430,356.84,60.692 +723431,358.66,61.357 +723432,0.5223,62.012 +723433,353.82,59.993 +723434,355.56,60.7 +723435,357.33,61.4 +723436,359.15,62.089 +723437,352.57,59.967 +723438,354.27,60.709 +723439,356,61.443 +723440,357.78,62.166 +723441,351.32,59.942 +723442,352.98,60.718 +723443,354.67,61.486 +723444,356.4,62.242 +723445,350.07,59.918 +723446,351.69,60.727 +723447,353.34,61.528 +723448,355.03,62.318 +723449,348.83,59.894 +723450,350.4,60.737 +723451,352.01,61.57 +723452,353.65,62.393 +723453,347.58,59.871 +723454,349.12,60.746 +723455,350.68,61.612 +723456,352.27,62.467 +723457,346.34,59.848 +723458,347.83,60.756 +723459,349.35,61.654 +723460,350.9,62.54 +723461,345.1,59.827 +723462,346.54,60.766 +723463,348.02,61.695 +723464,349.52,62.613 +723465,343.86,59.806 +723466,345.26,60.777 +723467,346.68,61.737 +723468,348.14,62.684 +723469,342.62,59.786 +723470,343.97,60.787 +723471,345.35,61.778 +723472,346.75,62.755 +723473,341.38,59.767 +723474,342.69,60.798 +723475,344.02,61.818 +723476,345.37,62.825 +723477,340.14,59.748 +723478,341.4,60.809 +723479,342.68,61.858 +723480,343.99,62.894 +723481,338.91,59.731 +723482,340.12,60.821 +723483,341.35,61.898 +723484,342.6,62.962 +723485,337.67,59.714 +723486,338.83,60.832 +723487,340.02,61.938 +723488,341.22,63.029 +723489,336.44,59.698 +723490,337.55,60.844 +723491,338.68,61.977 +723492,339.83,63.096 +723493,335.2,59.683 +723494,336.27,60.857 +723495,337.35,62.016 +723496,338.45,63.161 +723497,333.97,59.67 +723498,334.98,60.869 +723499,336.01,62.055 +723500,337.06,63.225 +723501,332.74,59.657 +723502,333.7,60.882 +723503,334.68,62.093 +723504,335.67,63.289 +723505,331.51,59.645 +723506,332.42,60.895 +723507,333.34,62.131 +723508,334.29,63.351 +723509,330.28,59.634 +723510,331.13,60.909 +723511,332,62.169 +723512,332.9,63.412 +723513,329.05,59.624 +723514,329.85,60.923 +723515,330.67,62.206 +723516,331.51,63.472 +723517,327.82,59.615 +723518,328.57,60.937 +723519,329.33,62.243 +723520,330.12,63.531 +723521,326.59,59.607 +723522,327.28,60.952 +723523,328,62.279 +723524,328.73,63.589 +723525,325.37,59.601 +723526,326,60.967 +723527,326.66,62.315 +723528,327.34,63.646 +723529,324.14,59.595 +723530,324.72,60.982 +723531,325.32,62.351 +723532,325.95,63.702 +723533,322.92,59.591 +723534,323.44,60.998 +723535,323.99,62.387 +723536,324.56,63.756 +723537,321.69,59.587 +723538,322.16,61.014 +723539,322.65,62.421 +723540,323.17,63.81 +723541,320.47,59.585 +723542,320.88,61.03 +723543,321.31,62.456 +723544,321.77,63.862 +723545,319.24,59.584 +723546,319.59,61.047 +723547,319.97,62.49 +723548,320.38,63.913 +723549,318.02,59.584 +723550,318.31,61.064 +723551,318.64,62.524 +723552,318.99,63.963 +723553,316.79,59.586 +723554,317.03,61.081 +723555,317.3,62.557 +723556,317.6,64.012 +723557,315.57,59.588 +723558,315.75,61.099 +723559,315.96,62.59 +723560,316.21,64.059 +723561,314.35,59.592 +723562,314.47,61.118 +723563,314.62,62.622 +723564,314.81,64.105 +723565,313.12,59.597 +723566,313.19,61.136 +723567,313.29,62.654 +723568,313.42,64.15 +723569,311.9,59.603 +723570,311.91,61.156 +723571,311.95,62.686 +723572,312.03,64.194 +723573,310.68,59.611 +723574,310.62,61.175 +723575,310.61,62.717 +723576,310.64,64.237 +723577,309.46,59.62 +723578,309.34,61.195 +723579,309.27,62.748 +723580,309.25,64.278 +723581,308.23,59.63 +723582,308.06,61.215 +723583,307.94,62.778 +723584,307.85,64.318 +723585,307.01,59.641 +723586,306.78,61.236 +723587,306.6,62.808 +723588,306.46,64.357 +723589,305.79,59.654 +723590,305.5,61.257 +723591,305.26,62.837 +723592,305.07,64.394 +723593,304.56,59.668 +723594,304.22,61.279 +723595,303.92,62.866 +723596,303.68,64.43 +723597,303.34,59.683 +723598,302.93,61.301 +723599,302.59,62.895 +723600,302.29,64.465 +723601,302.12,59.699 +723602,301.65,61.323 +723603,301.25,62.923 +723604,300.9,64.499 +723605,300.89,59.717 +723606,300.37,61.346 +723607,299.91,62.951 +723608,299.51,64.531 +723609,299.67,59.736 +723610,299.09,61.369 +723611,298.57,62.978 +723612,298.12,64.562 +723613,298.44,59.757 +723614,297.81,61.393 +723615,297.24,63.005 +723616,296.73,64.592 +723617,297.22,59.779 +723618,296.52,61.417 +723619,295.9,63.031 +723620,295.34,64.62 +723621,295.99,59.802 +723622,295.24,61.442 +723623,294.56,63.057 +723624,293.95,64.647 +723625,294.77,59.826 +723626,293.96,61.467 +723627,293.23,63.082 +723628,292.56,64.673 +723629,293.54,59.852 +723630,292.67,61.492 +723631,291.89,63.107 +723632,291.18,64.697 +723633,292.31,59.879 +723634,291.39,61.518 +723635,290.55,63.132 +723636,289.79,64.721 +723637,291.09,59.907 +723638,290.11,61.544 +723639,289.22,63.156 +723640,288.4,64.742 +723641,289.86,59.937 +723642,288.82,61.571 +723643,287.88,63.179 +723644,287.02,64.763 +723645,288.63,59.968 +723646,287.54,61.598 +723647,286.55,63.203 +723648,285.63,64.782 +723649,287.4,60 +723650,286.25,61.625 +723651,285.21,63.225 +723652,284.25,64.8 +723653,286.17,60.033 +723654,284.97,61.653 +723655,283.87,63.248 +723656,282.87,64.817 +723657,284.93,60.068 +723658,283.68,61.681 +723659,282.54,63.27 +723660,281.49,64.833 +723661,283.7,60.104 +723662,282.4,61.71 +723663,281.2,63.291 +723664,280.1,64.847 +723665,282.47,60.142 +723666,281.11,61.739 +723667,279.87,63.312 +723668,278.72,64.86 +723669,281.23,60.18 +723670,279.83,61.769 +723671,278.54,63.332 +723672,277.34,64.872 +723673,280,60.22 +723674,278.54,61.799 +723675,277.2,63.353 +723676,275.97,64.882 +723677,278.76,60.261 +723678,277.25,61.829 +723679,275.87,63.372 +723680,274.59,64.891 +723681,277.52,60.304 +723682,275.97,61.86 +723683,274.54,63.392 +723684,273.21,64.899 +723685,276.28,60.347 +723686,274.68,61.891 +723687,273.2,63.41 +723688,271.84,64.906 +723689,275.04,60.392 +723690,273.39,61.922 +723691,271.87,63.429 +723692,270.46,64.912 +723693,273.8,60.438 +723694,272.1,61.954 +723695,270.54,63.447 +723696,269.09,64.916 +723697,272.55,60.486 +723698,270.81,61.987 +723699,269.21,63.465 +723700,267.72,64.92 +723701,271.31,60.534 +723702,269.52,62.019 +723703,267.87,63.482 +723704,266.34,64.922 +723705,270.06,60.584 +723706,268.23,62.052 +723707,266.54,63.499 +723708,264.97,64.922 +723709,268.82,60.634 +723710,266.94,62.086 +723711,265.21,63.515 +723712,263.6,64.922 +723713,267.57,60.686 +723714,265.65,62.119 +723715,263.88,63.531 +723716,262.24,64.921 +723717,266.32,60.739 +723718,264.36,62.154 +723719,262.55,63.547 +723720,260.87,64.918 +723721,265.06,60.793 +723722,263.07,62.188 +723723,261.22,63.562 +723724,259.51,64.915 +723725,263.81,60.849 +723726,261.78,62.223 +723727,259.9,63.577 +723728,258.14,64.91 +723729,262.55,60.905 +723730,260.48,62.258 +723731,258.57,63.591 +723732,256.78,64.904 +723733,261.3,60.962 +723734,259.19,62.294 +723735,257.24,63.605 +723736,255.42,64.897 +723737,260.04,61.02 +723738,257.9,62.33 +723739,255.91,63.619 +723740,254.06,64.89 +723741,258.78,61.08 +723742,256.6,62.366 +723743,254.58,63.633 +723744,252.7,64.881 +723745,257.52,61.14 +723746,255.31,62.402 +723747,253.26,63.646 +723748,251.34,64.871 +723749,256.25,61.202 +723750,254.01,62.439 +723751,251.93,63.659 +723752,249.99,64.86 +723753,254.99,61.264 +723754,252.72,62.476 +723755,250.61,63.671 +723756,248.63,64.848 +723757,253.72,61.327 +723758,251.42,62.514 +723759,249.28,63.683 +723760,247.28,64.835 +723761,252.45,61.391 +723762,250.12,62.551 +723763,247.96,63.695 +723764,245.93,64.822 +723765,251.18,61.456 +723766,248.82,62.589 +723767,246.63,63.706 +723768,244.58,64.807 +723769,249.9,61.522 +723770,247.52,62.628 +723771,245.31,63.717 +723772,243.23,64.792 +723773,248.63,61.589 +723774,246.23,62.666 +723775,243.99,63.728 +723776,241.88,64.775 +723777,247.35,61.656 +723778,244.93,62.705 +723779,242.66,63.739 +723780,240.54,64.758 +723781,246.07,61.724 +723782,243.63,62.744 +723783,241.34,63.749 +723784,239.2,64.74 +723785,244.79,61.793 +723786,242.32,62.783 +723787,240.02,63.759 +723788,237.85,64.721 +723789,243.51,61.863 +723790,241.02,62.823 +723791,238.7,63.769 +723792,236.51,64.702 +723793,242.23,61.934 +723794,239.72,62.863 +723795,237.38,63.778 +723796,235.17,64.682 +723797,240.94,62.005 +723798,238.42,62.903 +723799,236.06,63.788 +723800,233.84,64.661 +723801,239.65,62.077 +723802,237.11,62.943 +723803,234.74,63.797 +723804,232.5,64.639 +723805,238.36,62.149 +723806,235.81,62.983 +723807,233.42,63.805 +723808,231.17,64.616 +723809,237.07,62.222 +723810,234.5,63.024 +723811,232.1,63.814 +723812,229.84,64.593 +723813,235.77,62.296 +723814,233.2,63.065 +723815,230.78,63.822 +723816,228.51,64.57 +723817,234.48,62.37 +723818,231.89,63.106 +723819,229.47,63.83 +723820,227.18,64.545 +723821,233.18,62.445 +723822,230.59,63.147 +723823,228.15,63.838 +723824,225.85,64.521 +723825,231.88,62.52 +723826,229.28,63.188 +723827,226.84,63.846 +723828,224.52,64.495 +723829,230.57,62.596 +723830,227.97,63.229 +723831,225.52,63.854 +723832,223.2,64.469 +723833,229.27,62.672 +723834,226.66,63.271 +723835,224.21,63.861 +723836,221.88,64.443 +723837,227.96,62.749 +723838,225.35,63.313 +723839,222.89,63.868 +723840,220.56,64.416 +723841,226.65,62.826 +723842,224.04,63.354 +723843,221.58,63.875 +723844,219.24,64.389 +723845,225.34,62.903 +723846,222.73,63.396 +723847,220.27,63.882 +723848,217.92,64.361 +723849,224.03,62.981 +723850,221.42,63.438 +723851,218.95,63.889 +723852,216.61,64.333 +723853,222.72,63.058 +723854,220.11,63.481 +723855,217.64,63.896 +723856,215.3,64.304 +723857,221.4,63.137 +723858,218.79,63.523 +723859,216.33,63.902 +723860,213.99,64.276 +723861,220.08,63.215 +723862,217.48,63.565 +723863,215.02,63.909 +723864,212.68,64.246 +723865,218.76,63.294 +723866,216.17,63.607 +723867,213.71,63.915 +723868,211.37,64.217 +723869,217.44,63.372 +723870,214.85,63.65 +723871,212.4,63.921 +723872,210.06,64.187 +723873,216.11,63.451 +723874,213.54,63.692 +723875,211.09,63.927 +723876,208.76,64.158 +723877,214.79,63.53 +723878,212.22,63.735 +723879,209.78,63.933 +723880,207.46,64.128 +723881,213.46,63.61 +723882,210.9,63.777 +723883,208.48,63.94 +723884,206.15,64.097 +723885,212.13,63.689 +723886,209.59,63.82 +723887,207.17,63.946 +723888,204.86,64.067 +723889,210.79,63.768 +723890,208.27,63.862 +723891,205.86,63.952 +723892,203.56,64.037 +723893,209.46,63.847 +723894,206.95,63.905 +723895,204.56,63.957 +723896,202.26,64.006 +723897,208.12,63.927 +723898,205.63,63.947 +723899,203.25,63.963 +723900,200.97,63.976 +723901,206.79,64.006 +723902,204.31,63.99 +723903,201.95,63.969 +723904,199.68,63.945 +723905,205.45,64.085 +723906,202.99,64.032 +723907,200.64,63.975 +723908,198.39,63.915 +723909,204.1,64.164 +723910,201.67,64.075 +723911,199.34,63.981 +723912,197.1,63.884 +723913,202.76,64.242 +723914,200.35,64.117 +723915,198.04,63.987 +723916,195.81,63.854 +723917,201.42,64.321 +723918,199.03,64.159 +723919,196.73,63.993 +723920,194.53,63.824 +723921,200.07,64.399 +723922,197.7,64.202 +723923,195.43,63.999 +723924,193.24,63.794 +723925,198.72,64.478 +723926,196.38,64.244 +723927,194.13,64.005 +723928,191.96,63.764 +723929,197.37,64.556 +723930,195.06,64.286 +723931,192.83,64.011 +723932,190.68,63.734 +723933,196.02,64.633 +723934,193.73,64.328 +723935,191.53,64.018 +723936,189.4,63.704 +723937,194.66,64.71 +723938,192.41,64.369 +723939,190.23,64.024 +723940,188.13,63.675 +723941,193.31,64.787 +723942,191.08,64.411 +723943,188.93,64.03 +723944,186.85,63.646 +723945,191.95,64.864 +723946,189.75,64.453 +723947,187.63,64.037 +723948,185.58,63.617 +723949,190.59,64.94 +723950,188.43,64.494 +723951,186.33,64.043 +723952,184.31,63.589 +723953,189.23,65.016 +723954,187.1,64.535 +723955,185.04,64.05 +723956,183.04,63.561 +723957,187.87,65.091 +723958,185.77,64.577 +723959,183.74,64.057 +723960,181.77,63.533 +723961,186.51,65.166 +723962,184.44,64.618 +723963,182.44,64.064 +723964,180.5,63.506 +723965,185.14,65.24 +723966,183.11,64.658 +723967,181.15,64.071 +723968,179.24,63.479 +723969,183.78,65.314 +723970,181.78,64.699 +723971,179.85,64.078 +723972,177.97,63.453 +723973,182.41,65.387 +723974,180.45,64.739 +723975,178.56,64.086 +723976,176.71,63.427 +723977,181.04,65.46 +723978,179.12,64.78 +723979,177.26,64.093 +723980,175.45,63.402 +723981,179.67,65.532 +723982,177.79,64.82 +723983,175.97,64.101 +723984,174.19,63.377 +723985,178.3,65.603 +723986,176.46,64.859 +723987,174.67,64.109 +723988,172.93,63.353 +723989,176.93,65.674 +723990,175.13,64.899 +723991,173.38,64.117 +723992,171.67,63.33 +723993,175.55,65.744 +723994,173.8,64.938 +723995,172.09,64.125 +723996,170.42,63.307 +723997,174.18,65.813 +723998,172.46,64.977 +723999,170.79,64.134 +724000,169.16,63.285 +724001,172.8,65.881 +724002,171.13,65.016 +724003,169.5,64.143 +724004,167.91,63.263 +724005,171.42,65.949 +724006,169.8,65.055 +724007,168.21,64.152 +724008,166.66,63.243 +724009,170.04,66.016 +724010,168.46,65.093 +724011,166.92,64.161 +724012,165.41,63.222 +724013,168.66,66.082 +724014,167.13,65.131 +724015,165.63,64.171 +724016,164.16,63.203 +724017,167.28,66.148 +724018,165.79,65.169 +724019,164.34,64.18 +724020,162.91,63.185 +724021,165.9,66.212 +724022,164.46,65.206 +724023,163.05,64.19 +724024,161.66,63.167 +724025,164.52,66.276 +724026,163.12,65.243 +724027,161.76,64.201 +724028,160.42,63.15 +724029,163.14,66.339 +724030,161.79,65.28 +724031,160.47,64.211 +724032,159.17,63.134 +724033,161.75,66.401 +724034,160.45,65.317 +724035,159.18,64.222 +724036,157.93,63.119 +724037,160.37,66.461 +724038,159.11,65.353 +724039,157.89,64.233 +724040,156.69,63.105 +724041,158.98,66.521 +724042,157.78,65.389 +724043,156.6,64.245 +724044,155.45,63.091 +724045,157.59,66.58 +724046,156.44,65.424 +724047,155.31,64.257 +724048,154.21,63.079 +724049,156.21,66.639 +724050,155.1,65.46 +724051,154.02,64.269 +724052,152.97,63.067 +724053,154.82,66.696 +724054,153.76,65.494 +724055,152.73,64.281 +724056,151.73,63.057 +724057,153.43,66.752 +724058,152.43,65.529 +724059,151.45,64.294 +724060,150.49,63.047 +724061,152.04,66.807 +724062,151.09,65.563 +724063,150.16,64.307 +724064,149.25,63.039 +724065,150.65,66.861 +724066,149.75,65.597 +724067,148.87,64.32 +724068,148.02,63.032 +724069,149.26,66.914 +724070,148.41,65.63 +724071,147.58,64.334 +724072,146.78,63.025 +724073,147.87,66.965 +724074,147.07,65.664 +724075,146.3,64.348 +724076,145.55,63.02 +724077,146.48,67.016 +724078,145.73,65.696 +724079,145.01,64.362 +724080,144.31,63.016 +724081,145.09,67.066 +724082,144.39,65.729 +724083,143.72,64.377 +724084,143.08,63.012 +724085,143.69,67.114 +724086,143.05,65.761 +724087,142.44,64.392 +724088,141.85,63.01 +724089,142.3,67.162 +724090,141.71,65.792 +724091,141.15,64.408 +724092,140.62,63.009 +724093,140.91,67.208 +724094,140.37,65.823 +724095,139.87,64.423 +724096,139.38,63.009 +724097,139.52,67.253 +724098,139.03,65.854 +724099,138.58,64.44 +724100,138.15,63.011 +724101,138.12,67.297 +724102,137.69,65.885 +724103,137.29,64.456 +724104,136.92,63.013 +724105,136.73,67.34 +724106,136.35,65.915 +724107,136.01,64.473 +724108,135.69,63.017 +724109,135.33,67.382 +724110,135.01,65.944 +724111,134.72,64.49 +724112,134.46,63.022 +724113,133.94,67.422 +724114,133.67,65.973 +724115,133.44,64.508 +724116,133.23,63.028 +724117,132.55,67.461 +724118,132.33,66.002 +724119,132.15,64.526 +724120,132,63.035 +724121,131.15,67.499 +724122,130.99,66.031 +724123,130.87,64.545 +724124,130.77,63.043 +724125,129.76,67.536 +724126,129.65,66.059 +724127,129.58,64.564 +724128,129.54,63.053 +724129,128.37,67.572 +724130,128.31,66.086 +724131,128.29,64.583 +724132,128.31,63.064 +724133,126.97,67.606 +724134,126.97,66.113 +724135,127.01,64.603 +724136,127.08,63.076 +724137,125.58,67.639 +724138,125.63,66.14 +724139,125.72,64.623 +724140,125.86,63.089 +724141,124.19,67.671 +724142,124.29,66.166 +724143,124.44,64.643 +724144,124.63,63.104 +724145,122.79,67.702 +724146,122.95,66.192 +724147,123.15,64.664 +724148,123.4,63.12 +724149,121.4,67.732 +724150,121.61,66.217 +724151,121.87,64.686 +724152,122.17,63.137 +724153,120.01,67.76 +724154,120.27,66.242 +724155,120.58,64.707 +724156,120.94,63.155 +724157,118.62,67.787 +724158,118.93,66.267 +724159,119.29,64.729 +724160,119.71,63.175 +724161,117.22,67.813 +724162,117.59,66.291 +724163,118.01,64.752 +724164,118.48,63.196 +724165,115.83,67.837 +724166,116.25,66.315 +724167,116.72,64.775 +724168,117.25,63.218 +724169,114.44,67.861 +724170,114.91,66.338 +724171,115.43,64.798 +724172,116.02,63.241 +724173,113.05,67.883 +724174,113.57,66.361 +724175,114.15,64.822 +724176,114.78,63.266 +724177,111.66,67.904 +724178,112.23,66.384 +724179,112.86,64.846 +724180,113.55,63.291 +724181,110.27,67.923 +724182,110.89,66.406 +724183,111.57,64.871 +724184,112.32,63.319 +724185,108.88,67.942 +724186,109.55,66.427 +724187,110.29,64.895 +724188,111.09,63.347 +724189,107.49,67.959 +724190,108.21,66.449 +724191,109,64.921 +724192,109.86,63.377 +724193,106.1,67.975 +724194,106.88,66.469 +724195,107.71,64.947 +724196,108.62,63.407 +724197,104.72,67.989 +724198,105.54,66.49 +724199,106.42,64.973 +724200,107.39,63.439 +724201,103.33,68.003 +724202,104.2,66.51 +724203,105.14,64.999 +724204,106.15,63.473 +724205,101.94,68.015 +724206,102.86,66.529 +724207,103.85,65.026 +724208,104.92,63.507 +724209,100.56,68.026 +724210,101.52,66.548 +724211,102.56,65.054 +724212,103.68,63.543 +724213,99.175,68.036 +724214,100.18,66.567 +724215,101.27,65.081 +724216,102.44,63.58 +724217,97.792,68.045 +724218,98.848,66.585 +724219,99.981,65.109 +724220,101.2,63.618 +724221,96.41,68.052 +724222,97.51,66.603 +724223,98.692,65.138 +724224,99.963,63.658 +724225,95.028,68.058 +724226,96.174,66.621 +724227,97.402,65.167 +724228,98.723,63.698 +724229,93.647,68.064 +724230,94.837,66.638 +724231,96.112,65.196 +724232,97.481,63.74 +724233,92.267,68.068 +724234,93.501,66.654 +724235,94.821,65.226 +724236,96.239,63.783 +724237,90.888,68.071 +724238,92.165,66.671 +724239,93.53,65.256 +724240,94.995,63.827 +724241,89.511,68.072 +724242,90.829,66.687 +724243,92.239,65.286 +724244,93.75,63.872 +724245,88.134,68.073 +724246,89.494,66.702 +724247,90.947,65.317 +724248,92.505,63.918 +724249,86.758,68.072 +724250,88.159,66.717 +724251,89.655,65.348 +724252,91.257,63.966 +724253,85.384,68.071 +724254,86.825,66.732 +724255,88.362,65.38 +724256,90.009,64.014 +724257,84.01,68.068 +724258,85.491,66.746 +724259,87.069,65.411 +724260,88.76,64.064 +724261,82.638,68.064 +724262,84.157,66.76 +724263,85.776,65.444 +724264,87.509,64.115 +724265,81.266,68.06 +724266,82.823,66.774 +724267,84.482,65.476 +724268,86.256,64.166 +724269,79.897,68.054 +724270,81.49,66.787 +724271,83.188,65.509 +724272,85.003,64.219 +724273,78.528,68.047 +724274,80.158,66.8 +724275,81.893,65.542 +724276,83.748,64.273 +724277,77.16,68.039 +724278,78.826,66.813 +724279,80.598,65.576 +724280,82.491,64.328 +724281,75.794,68.03 +724282,77.494,66.825 +724283,79.302,65.609 +724284,81.233,64.383 +724285,74.429,68.021 +724286,76.163,66.837 +724287,78.006,65.643 +724288,79.974,64.44 +724289,73.065,68.01 +724290,74.832,66.849 +724291,76.709,65.678 +724292,78.713,64.498 +724293,71.703,67.998 +724294,73.502,66.86 +724295,75.412,65.713 +724296,77.45,64.556 +724297,70.342,67.985 +724298,72.172,66.871 +724299,74.114,65.748 +724300,76.186,64.616 +724301,68.983,67.972 +724302,70.842,66.882 +724303,72.816,65.783 +724304,74.92,64.676 +724305,67.625,67.958 +724306,69.513,66.892 +724307,71.517,65.819 +724308,73.653,64.737 +724309,66.268,67.942 +724310,68.185,66.902 +724311,70.218,65.854 +724312,72.383,64.8 +724313,64.913,67.926 +724314,66.857,66.912 +724315,68.918,65.891 +724316,71.113,64.862 +724317,63.559,67.909 +724318,65.529,66.922 +724319,67.617,65.927 +724320,69.84,64.926 +724321,62.207,67.892 +724322,64.202,66.931 +724323,66.316,65.964 +724324,68.566,64.991 +724325,60.856,67.873 +724326,62.876,66.94 +724327,65.014,66.001 +724328,67.29,65.056 +724329,59.507,67.854 +724330,61.55,66.949 +724331,63.712,66.038 +724332,66.012,65.122 +724333,58.159,67.834 +724334,60.225,66.957 +724335,62.409,66.075 +724336,64.732,65.188 +724337,56.813,67.813 +724338,58.9,66.965 +724339,61.106,66.113 +724340,63.451,65.256 +724341,55.468,67.792 +724342,57.575,66.973 +724343,59.802,66.15 +724344,62.167,65.324 +724345,54.125,67.77 +724346,56.251,66.981 +724347,58.498,66.188 +724348,60.882,65.392 +724349,52.784,67.747 +724350,54.928,66.989 +724351,57.192,66.227 +724352,59.595,65.461 +724353,51.444,67.724 +724354,53.605,66.996 +724355,55.887,66.265 +724356,58.306,65.531 +724357,50.106,67.7 +724358,52.283,67.003 +724359,54.58,66.304 +724360,57.015,65.601 +724361,48.77,67.676 +724362,50.962,67.01 +724363,53.273,66.342 +724364,55.723,65.672 +724365,47.435,67.651 +724366,49.641,67.017 +724367,51.965,66.381 +724368,54.428,65.744 +724369,46.101,67.625 +724370,48.32,67.024 +724371,50.657,66.42 +724372,53.132,65.815 +724373,44.77,67.599 +724374,47,67.03 +724375,49.348,66.459 +724376,51.833,65.888 +724377,43.44,67.573 +724378,45.681,67.036 +724379,48.039,66.499 +724380,50.533,65.96 +724381,42.112,67.546 +724382,44.362,67.042 +724383,46.729,66.538 +724384,49.23,66.033 +724385,40.785,67.518 +724386,43.044,67.048 +724387,45.418,66.578 +724388,47.926,66.107 +724389,39.461,67.491 +724390,41.726,67.054 +724391,44.106,66.617 +724392,46.62,66.181 +724393,38.138,67.463 +724394,40.409,67.06 +724395,42.794,66.657 +724396,45.312,66.255 +724397,36.816,67.434 +724398,39.093,67.066 +724399,41.482,66.697 +724400,44.002,66.329 +724401,35.497,67.406 +724402,37.777,67.071 +724403,40.168,66.737 +724404,42.69,66.404 +724405,34.179,67.377 +724406,36.461,67.077 +724407,38.854,66.777 +724408,41.376,66.478 +724409,32.863,67.348 +724410,35.147,67.082 +724411,37.54,66.817 +724412,40.06,66.553 +724413,31.548,67.318 +724414,33.832,67.087 +724415,36.224,66.857 +724416,38.742,66.628 +724417,30.235,67.289 +724418,32.519,67.092 +724419,34.909,66.897 +724420,37.422,66.704 +724421,28.924,67.259 +724422,31.206,67.097 +724423,33.592,66.938 +724424,36.1,66.779 +724425,27.615,67.229 +724426,29.893,67.102 +724427,32.275,66.978 +724428,34.777,66.855 +724429,26.307,67.199 +724430,28.581,67.108 +724431,30.957,67.018 +724432,33.451,66.93 +724433,25.002,67.169 +724434,27.27,67.113 +724435,29.639,67.058 +724436,32.124,67.006 +724437,23.698,67.139 +724438,25.959,67.118 +724439,28.32,67.098 +724440,30.795,67.081 +724441,22.395,67.108 +724442,24.649,67.123 +724443,27,67.139 +724444,29.463,67.157 +724445,21.094,67.078 +724446,23.34,67.128 +724447,25.68,67.179 +724448,28.13,67.232 +724449,19.796,67.048 +724450,22.031,67.133 +724451,24.359,67.219 +724452,26.795,67.307 +724453,18.498,67.018 +724454,20.722,67.138 +724455,23.038,67.259 +724456,25.459,67.383 +724457,17.203,66.988 +724458,19.414,67.143 +724459,21.715,67.299 +724460,24.12,67.458 +724461,15.909,66.958 +724462,18.107,67.148 +724463,20.393,67.339 +724464,22.78,67.532 +724465,14.617,66.929 +724466,16.8,67.153 +724467,19.07,67.379 +724468,21.438,67.607 +724469,13.326,66.899 +724470,15.494,67.158 +724471,17.746,67.419 +724472,20.094,67.682 +724473,12.037,66.87 +724474,14.189,67.163 +724475,16.421,67.459 +724476,18.748,67.756 +724477,10.75,66.841 +724478,12.883,67.169 +724479,15.096,67.499 +724480,17.401,67.83 +724481,9.4646,66.812 +724482,11.579,67.174 +724483,13.77,67.538 +724484,16.052,67.903 +724485,8.1807,66.783 +724486,10.275,67.18 +724487,12.444,67.578 +724488,14.701,67.976 +724489,6.8984,66.755 +724490,8.9714,67.185 +724491,11.118,67.617 +724492,13.349,68.049 +724493,5.6177,66.727 +724494,7.6684,67.191 +724495,9.7902,67.656 +724496,11.994,68.122 +724497,4.3386,66.7 +724498,6.3659,67.197 +724499,8.4624,67.695 +724500,10.639,68.194 +724501,3.0611,66.672 +724502,5.064,67.203 +724503,7.134,67.734 +724504,9.2816,68.265 +724505,1.7851,66.646 +724506,3.7625,67.209 +724507,5.805,67.773 +724508,7.9228,68.337 +724509,0.51066,66.619 +724510,2.4616,67.215 +724511,4.4755,67.811 +724512,6.5624,68.407 +724513,359.24,66.594 +724514,1.1611,67.222 +724515,3.1456,67.85 +724516,5.2006,68.477 +724517,357.97,66.568 +724518,359.86,67.228 +724519,1.8151,67.888 +724520,3.8372,68.547 +724521,356.7,66.544 +724522,358.56,67.235 +724523,0.48405,67.926 +724524,2.4725,68.616 +724525,355.43,66.519 +724526,357.26,67.242 +724527,359.15,67.964 +724528,1.1063,68.684 +724529,354.16,66.496 +724530,355.96,67.249 +724531,357.82,68.001 +724532,359.74,68.752 +724533,352.9,66.473 +724534,354.67,67.256 +724535,356.49,68.039 +724536,358.37,68.819 +724537,351.63,66.451 +724538,353.37,67.264 +724539,355.16,68.076 +724540,357,68.886 +724541,350.37,66.429 +724542,352.07,67.272 +724543,353.82,68.113 +724544,355.63,68.951 +724545,349.11,66.408 +724546,350.77,67.28 +724547,352.49,68.15 +724548,354.26,69.016 +724549,347.85,66.387 +724550,349.48,67.288 +724551,351.15,68.186 +724552,352.88,69.081 +724553,346.59,66.368 +724554,348.18,67.296 +724555,349.82,68.222 +724556,351.51,69.144 +724557,345.33,66.349 +724558,346.89,67.305 +724559,348.48,68.258 +724560,350.13,69.207 +724561,344.07,66.331 +724562,345.59,67.314 +724563,347.15,68.294 +724564,348.75,69.269 +724565,342.82,66.314 +724566,344.3,67.323 +724567,345.81,68.329 +724568,347.37,69.33 +724569,341.56,66.297 +724570,343,67.333 +724571,344.48,68.364 +724572,345.99,69.391 +724573,340.31,66.282 +724574,341.71,67.342 +724575,343.14,68.399 +724576,344.61,69.45 +724577,339.06,66.267 +724578,340.41,67.353 +724579,341.8,68.434 +724580,343.23,69.509 +724581,337.81,66.253 +724582,339.12,67.363 +724583,340.47,68.468 +724584,341.85,69.566 +724585,336.56,66.24 +724586,337.83,67.374 +724587,339.13,68.502 +724588,340.46,69.623 +724589,335.31,66.228 +724590,336.53,67.384 +724591,337.79,68.535 +724592,339.08,69.679 +724593,334.06,66.217 +724594,335.24,67.396 +724595,336.45,68.569 +724596,337.69,69.734 +724597,332.82,66.207 +724598,333.95,67.407 +724599,335.11,68.601 +724600,336.31,69.788 +724601,331.57,66.197 +724602,332.66,67.419 +724603,333.77,68.634 +724604,334.92,69.841 +724605,330.33,66.189 +724606,331.37,67.431 +724607,332.43,68.666 +724608,333.53,69.893 +724609,329.08,66.182 +724610,330.07,67.444 +724611,331.09,68.698 +724612,332.15,69.944 +724613,327.84,66.176 +724614,328.78,67.457 +724615,329.75,68.73 +724616,330.76,69.994 +724617,326.6,66.171 +724618,327.49,67.47 +724619,328.41,68.761 +724620,329.37,70.043 +724621,325.36,66.167 +724622,326.2,67.483 +724623,327.07,68.792 +724624,327.98,70.09 +724625,324.12,66.164 +724626,324.91,67.497 +724627,325.73,68.822 +724628,326.59,70.137 +724629,322.88,66.162 +724630,323.62,67.512 +724631,324.39,68.852 +724632,325.19,70.183 +724633,321.64,66.161 +724634,322.33,67.526 +724635,323.05,68.882 +724636,323.8,70.227 +724637,320.4,66.161 +724638,321.04,67.541 +724639,321.71,68.912 +724640,322.41,70.271 +724641,319.16,66.163 +724642,319.75,67.557 +724643,320.37,68.941 +724644,321.02,70.313 +724645,317.92,66.165 +724646,318.46,67.572 +724647,319.03,68.969 +724648,319.63,70.355 +724649,316.68,66.169 +724650,317.17,67.588 +724651,317.69,68.997 +724652,318.23,70.395 +724653,315.45,66.174 +724654,315.88,67.605 +724655,316.35,69.025 +724656,316.84,70.434 +724657,314.21,66.18 +724658,314.59,67.622 +724659,315,69.053 +724660,315.44,70.472 +724661,312.97,66.187 +724662,313.3,67.639 +724663,313.66,69.08 +724664,314.05,70.508 +724665,311.74,66.196 +724666,312.01,67.656 +724667,312.32,69.106 +724668,312.66,70.544 +724669,310.5,66.205 +724670,310.73,67.674 +724671,310.98,69.133 +724672,311.26,70.578 +724673,309.27,66.216 +724674,309.44,67.693 +724675,309.64,69.158 +724676,309.87,70.612 +724677,308.03,66.228 +724678,308.15,67.712 +724679,308.29,69.184 +724680,308.47,70.644 +724681,306.8,66.241 +724682,306.86,67.731 +724683,306.95,69.209 +724684,307.08,70.674 +724685,305.56,66.256 +724686,305.57,67.75 +724687,305.61,69.234 +724688,305.69,70.704 +724689,304.33,66.271 +724690,304.28,67.77 +724691,304.27,69.258 +724692,304.29,70.733 +724693,303.09,66.288 +724694,302.99,67.791 +724695,302.93,69.282 +724696,302.9,70.76 +724697,301.86,66.306 +724698,301.7,67.811 +724699,301.58,69.305 +724700,301.5,70.786 +724701,300.62,66.325 +724702,300.41,67.833 +724703,300.24,69.328 +724704,300.11,70.811 +724705,299.39,66.346 +724706,299.12,67.854 +724707,298.9,69.351 +724708,298.72,70.834 +724709,298.15,66.368 +724710,297.83,67.876 +724711,297.56,69.373 +724712,297.32,70.857 +724713,296.92,66.391 +724714,296.55,67.899 +724715,296.22,69.395 +724716,295.93,70.878 +724717,295.68,66.415 +724718,295.26,67.921 +724719,294.87,69.416 +724720,294.54,70.898 +724721,294.45,66.44 +724722,293.97,67.944 +724723,293.53,69.437 +724724,293.14,70.917 +724725,293.21,66.467 +724726,292.68,67.968 +724727,292.19,69.458 +724728,291.75,70.935 +724729,291.97,66.495 +724730,291.39,67.992 +724731,290.85,69.478 +724732,290.36,70.951 +724733,290.74,66.524 +724734,290.1,68.016 +724735,289.51,69.498 +724736,288.97,70.967 +724737,289.5,66.554 +724738,288.81,68.041 +724739,288.17,69.517 +724740,287.58,70.981 +724741,288.26,66.586 +724742,287.52,68.066 +724743,286.83,69.536 +724744,286.19,70.994 +724745,287.02,66.618 +724746,286.23,68.092 +724747,285.49,69.555 +724748,284.8,71.006 +724749,285.78,66.652 +724750,284.93,68.118 +724751,284.15,69.573 +724752,283.41,71.016 +724753,284.54,66.687 +724754,283.64,68.144 +724755,282.8,69.591 +724756,282.02,71.026 +724757,283.3,66.724 +724758,282.35,68.171 +724759,281.46,69.608 +724760,280.63,71.034 +724761,282.06,66.761 +724762,281.06,68.198 +724763,280.12,69.625 +724764,279.25,71.041 +724765,280.82,66.8 +724766,279.77,68.225 +724767,278.78,69.642 +724768,277.86,71.047 +724769,279.58,66.839 +724770,278.48,68.253 +724771,277.45,69.658 +724772,276.48,71.052 +724773,278.34,66.88 +724774,277.18,68.281 +724775,276.11,69.674 +724776,275.09,71.056 +724777,277.09,66.922 +724778,275.89,68.31 +724779,274.77,69.689 +724780,273.71,71.058 +724781,275.85,66.966 +724782,274.6,68.339 +724783,273.43,69.704 +724784,272.33,71.06 +724785,274.6,67.01 +724786,273.31,68.368 +724787,272.09,69.719 +724788,270.94,71.06 +724789,273.35,67.055 +724790,272.01,68.398 +724791,270.75,69.733 +724792,269.56,71.06 +724793,272.1,67.102 +724794,270.72,68.428 +724795,269.41,69.747 +724796,268.18,71.058 +724797,270.86,67.149 +724798,269.42,68.458 +724799,268.08,69.761 +724800,266.8,71.055 +724801,269.61,67.198 +724802,268.13,68.489 +724803,266.74,69.774 +724804,265.43,71.052 +724805,268.35,67.247 +724806,266.83,68.52 +724807,265.4,69.787 +724808,264.05,71.047 +724809,267.1,67.298 +724810,265.54,68.552 +724811,264.07,69.8 +724812,262.67,71.041 +724813,265.85,67.35 +724814,264.24,68.583 +724815,262.73,69.812 +724816,261.3,71.034 +724817,264.59,67.402 +724818,262.95,68.615 +724819,261.39,69.824 +724820,259.92,71.026 +724821,263.34,67.456 +724822,261.65,68.648 +724823,260.06,69.836 +724824,258.55,71.017 +724825,262.08,67.511 +724826,260.35,68.681 +724827,258.72,69.847 +724828,257.18,71.008 +724829,260.82,67.566 +724830,259.06,68.714 +724831,257.39,69.858 +724832,255.81,70.997 +724833,259.56,67.623 +724834,257.76,68.747 +724835,256.05,69.868 +724836,254.44,70.985 +724837,258.3,67.68 +724838,256.46,68.78 +724839,254.72,69.879 +724840,253.07,70.973 +724841,257.03,67.738 +724842,255.16,68.814 +724843,253.39,69.889 +724844,251.71,70.959 +724845,255.77,67.797 +724846,253.86,68.849 +724847,252.05,69.898 +724848,250.34,70.945 +724849,254.5,67.857 +724850,252.56,68.883 +724851,250.72,69.908 +724852,248.98,70.93 +724853,253.24,67.918 +724854,251.26,68.918 +724855,249.39,69.917 +724856,247.62,70.914 +724857,251.97,67.979 +724858,249.96,68.953 +724859,248.06,69.926 +724860,246.26,70.897 +724861,250.7,68.042 +724862,248.66,68.988 +724863,246.73,69.935 +724864,244.9,70.88 +724865,249.42,68.105 +724866,247.36,69.023 +724867,245.4,69.943 +724868,243.54,70.862 +724869,248.15,68.168 +724870,246.05,69.059 +724871,244.07,69.951 +724872,242.18,70.843 +724873,246.88,68.233 +724874,244.75,69.095 +724875,242.74,69.959 +724876,240.83,70.823 +724877,245.6,68.298 +724878,243.45,69.131 +724879,241.41,69.967 +724880,239.47,70.802 +724881,244.32,68.364 +724882,242.14,69.168 +724883,240.08,69.974 +724884,238.12,70.781 +724885,243.04,68.43 +724886,240.84,69.204 +724887,238.75,69.981 +724888,236.77,70.76 +724889,241.76,68.497 +724890,239.53,69.241 +724891,237.42,69.988 +724892,235.42,70.737 +724893,240.47,68.565 +724894,238.23,69.278 +724895,236.1,69.995 +724896,234.07,70.714 +724897,239.19,68.633 +724898,236.92,69.315 +724899,234.77,70.002 +724900,232.72,70.691 +724901,237.9,68.702 +724902,235.61,69.353 +724903,233.44,70.008 +724904,231.38,70.666 +724905,236.61,68.771 +724906,234.31,69.39 +724907,232.12,70.014 +724908,230.04,70.642 +724909,235.32,68.84 +724910,233,69.428 +724911,230.79,70.021 +724912,228.69,70.617 +724913,234.03,68.911 +724914,231.69,69.466 +724915,229.47,70.026 +724916,227.35,70.591 +724917,232.73,68.981 +724918,230.38,69.504 +724919,228.15,70.032 +724920,226.02,70.565 +724921,231.43,69.052 +724922,229.07,69.542 +724923,226.82,70.038 +724924,224.68,70.538 +724925,230.14,69.123 +724926,227.76,69.58 +724927,225.5,70.043 +724928,223.34,70.511 +724929,228.84,69.195 +724930,226.45,69.619 +724931,224.18,70.049 +724932,222.01,70.484 +724933,227.53,69.267 +724934,225.14,69.657 +724935,222.86,70.054 +724936,220.68,70.456 +724937,226.23,69.339 +724938,223.82,69.696 +724939,221.53,70.059 +724940,219.35,70.428 +724941,224.92,69.412 +724942,222.51,69.734 +724943,220.21,70.064 +724944,218.02,70.4 +724945,223.62,69.484 +724946,221.2,69.773 +724947,218.89,70.069 +724948,216.69,70.371 +724949,222.31,69.557 +724950,219.88,69.812 +724951,217.57,70.074 +724952,215.37,70.342 +724953,221,69.631 +724954,218.57,69.851 +724955,216.26,70.078 +724956,214.04,70.313 +724957,219.68,69.704 +724958,217.25,69.89 +724959,214.94,70.083 +724960,212.72,70.283 +724961,218.37,69.777 +724962,215.94,69.929 +724963,213.62,70.088 +724964,211.4,70.254 +724965,217.05,69.851 +724966,214.62,69.968 +724967,212.3,70.092 +724968,210.08,70.224 +724969,215.73,69.924 +724970,213.3,70.007 +724971,210.99,70.097 +724972,208.76,70.195 +724973,214.41,69.998 +724974,211.98,70.046 +724975,209.67,70.102 +724976,207.45,70.165 +724977,213.09,70.072 +724978,210.67,70.085 +724979,208.35,70.106 +724980,206.14,70.135 +724981,211.76,70.145 +724982,209.35,70.124 +724983,207.04,70.111 +724984,204.82,70.105 +724985,210.44,70.219 +724986,208.03,70.163 +724987,205.72,70.115 +724988,203.51,70.075 +724989,209.11,70.292 +724990,206.71,70.202 +724991,204.41,70.12 +724992,202.2,70.045 +724993,207.78,70.366 +724994,205.39,70.241 +724995,203.1,70.124 +724996,200.9,70.015 +724997,206.45,70.439 +724998,204.06,70.28 +724999,201.78,70.129 +725000,199.59,69.985 +725001,205.12,70.512 +725002,202.74,70.319 +725003,200.47,70.133 +725004,198.29,69.956 +725005,203.78,70.585 +725006,201.42,70.357 +725007,199.16,70.138 +725008,196.99,69.926 +725009,202.44,70.658 +725010,200.1,70.396 +725011,197.85,70.143 +725012,195.69,69.897 +725013,201.1,70.73 +725014,198.77,70.435 +725015,196.54,70.147 +725016,194.39,69.868 +725017,199.76,70.802 +725018,197.45,70.474 +725019,195.23,70.152 +725020,193.09,69.839 +725021,198.42,70.874 +725022,196.12,70.512 +725023,193.92,70.157 +725024,191.8,69.81 +725025,197.08,70.946 +725026,194.8,70.55 +725027,192.61,70.162 +725028,190.5,69.781 +725029,195.73,71.017 +725030,193.47,70.589 +725031,191.3,70.167 +725032,189.21,69.753 +725033,194.38,71.088 +725034,192.14,70.627 +725035,189.99,70.173 +725036,187.92,69.725 +725037,193.03,71.159 +725038,190.82,70.665 +725039,188.69,70.178 +725040,186.63,69.698 +725041,191.68,71.229 +725042,189.49,70.703 +725043,187.38,70.184 +725044,185.34,69.671 +725045,190.33,71.298 +725046,188.16,70.741 +725047,186.07,70.189 +725048,184.06,69.644 +725049,188.98,71.367 +725050,186.83,70.778 +725051,184.77,70.195 +725052,182.77,69.618 +725053,187.62,71.436 +725054,185.5,70.816 +725055,183.46,70.201 +725056,181.49,69.592 +725057,186.26,71.504 +725058,184.17,70.853 +725059,182.16,70.207 +725060,180.21,69.567 +725061,184.91,71.572 +725062,182.84,70.89 +725063,180.85,70.213 +725064,178.93,69.542 +725065,183.55,71.639 +725066,181.51,70.927 +725067,179.55,70.22 +725068,177.65,69.518 +725069,182.18,71.705 +725070,180.18,70.964 +725071,178.25,70.226 +725072,176.38,69.494 +725073,180.82,71.771 +725074,178.85,71 +725075,176.94,70.233 +725076,175.1,69.471 +725077,179.46,71.836 +725078,177.51,71.037 +725079,175.64,70.24 +725080,173.83,69.448 +725081,178.09,71.901 +725082,176.18,71.073 +725083,174.34,70.248 +725084,172.55,69.427 +725085,176.72,71.965 +725086,174.85,71.108 +725087,173.04,70.255 +725088,171.28,69.405 +725089,175.35,72.028 +725090,173.51,71.144 +725091,171.74,70.263 +725092,170.01,69.385 +725093,173.98,72.09 +725094,172.18,71.179 +725095,170.44,70.271 +725096,168.75,69.365 +725097,172.61,72.152 +725098,170.85,71.215 +725099,169.14,70.279 +725100,167.48,69.346 +725101,171.24,72.213 +725102,169.51,71.249 +725103,167.84,70.288 +725104,166.21,69.328 +725105,169.87,72.273 +725106,168.17,71.284 +725107,166.54,70.296 +725108,164.95,69.31 +725109,168.49,72.332 +725110,166.84,71.318 +725111,165.24,70.305 +725112,163.69,69.293 +725113,167.11,72.39 +725114,165.5,71.352 +725115,163.94,70.314 +725116,162.42,69.277 +725117,165.74,72.448 +725118,164.16,71.386 +725119,162.64,70.324 +725120,161.16,69.262 +725121,164.36,72.505 +725122,162.83,71.42 +725123,161.34,70.334 +725124,159.9,69.248 +725125,162.98,72.561 +725126,161.49,71.453 +725127,160.05,70.344 +725128,158.64,69.235 +725129,161.6,72.616 +725130,160.15,71.486 +725131,158.75,70.354 +725132,157.39,69.222 +725133,160.22,72.67 +725134,158.81,71.518 +725135,157.45,70.365 +725136,156.13,69.211 +725137,158.83,72.723 +725138,157.47,71.551 +725139,156.16,70.376 +725140,154.88,69.2 +725141,157.45,72.775 +725142,156.13,71.583 +725143,154.86,70.387 +725144,153.62,69.191 +725145,156.07,72.826 +725146,154.8,71.614 +725147,153.56,70.399 +725148,152.37,69.182 +725149,154.68,72.876 +725150,153.46,71.645 +725151,152.27,70.411 +725152,151.12,69.174 +725153,153.3,72.925 +725154,152.12,71.676 +725155,150.97,70.423 +725156,149.87,69.168 +725157,151.91,72.974 +725158,150.77,71.707 +725159,149.68,70.436 +725160,148.61,69.162 +725161,150.52,73.021 +725162,149.43,71.737 +725163,148.38,70.449 +725164,147.37,69.158 +725165,149.13,73.067 +725166,148.09,71.767 +725167,147.09,70.462 +725168,146.12,69.154 +725169,147.74,73.112 +725170,146.75,71.797 +725171,145.79,70.476 +725172,144.87,69.152 +725173,146.36,73.156 +725174,145.41,71.826 +725175,144.5,70.49 +725176,143.62,69.15 +725177,144.97,73.199 +725178,144.07,71.855 +725179,143.21,70.505 +725180,142.37,69.15 +725181,143.57,73.241 +725182,142.73,71.883 +725183,141.91,70.519 +725184,141.13,69.151 +725185,142.18,73.282 +725186,141.39,71.911 +725187,140.62,70.535 +725188,139.88,69.153 +725189,140.79,73.321 +725190,140.04,71.939 +725191,139.33,70.55 +725192,138.64,69.156 +725193,139.4,73.36 +725194,138.7,71.967 +725195,138.03,70.566 +725196,137.4,69.16 +725197,138.01,73.397 +725198,137.36,71.994 +725199,136.74,70.582 +725200,136.15,69.165 +725201,136.61,73.434 +725202,136.02,72.02 +725203,135.45,70.599 +725204,134.91,69.172 +725205,135.22,73.469 +725206,134.67,72.046 +725207,134.15,70.616 +725208,133.67,69.179 +725209,133.83,73.503 +725210,133.33,72.072 +725211,132.86,70.634 +725212,132.42,69.188 +725213,132.43,73.536 +725214,131.99,72.098 +725215,131.57,70.651 +725216,131.18,69.198 +725217,131.04,73.568 +725218,130.64,72.123 +725219,130.28,70.67 +725220,129.94,69.21 +725221,129.65,73.598 +725222,129.3,72.148 +725223,128.98,70.688 +725224,128.7,69.222 +725225,128.25,73.628 +725226,127.96,72.172 +725227,127.69,70.707 +725228,127.46,69.236 +725229,126.86,73.656 +725230,126.61,72.196 +725231,126.4,70.727 +725232,126.22,69.25 +725233,125.46,73.683 +725234,125.27,72.219 +725235,125.11,70.747 +725236,124.98,69.266 +725237,124.07,73.709 +725238,123.93,72.242 +725239,123.82,70.767 +725240,123.74,69.284 +725241,122.67,73.734 +725242,122.58,72.265 +725243,122.52,70.787 +725244,122.5,69.302 +725245,121.28,73.757 +725246,121.24,72.287 +725247,121.23,70.808 +725248,121.26,69.322 +725249,119.88,73.78 +725250,119.9,72.309 +725251,119.94,70.83 +725252,120.02,69.343 +725253,118.49,73.801 +725254,118.55,72.331 +725255,118.65,70.852 +725256,118.78,69.365 +725257,117.1,73.821 +725258,117.21,72.352 +725259,117.35,70.874 +725260,117.54,69.388 +725261,115.7,73.84 +725262,115.86,72.373 +725263,116.06,70.897 +725264,116.3,69.413 +725265,114.31,73.858 +725266,114.52,72.393 +725267,114.77,70.92 +725268,115.06,69.439 +725269,112.92,73.874 +725270,113.18,72.413 +725271,113.48,70.943 +725272,113.82,69.466 +725273,111.52,73.889 +725274,111.83,72.433 +725275,112.18,70.967 +725276,112.58,69.494 +725277,110.13,73.904 +725278,110.49,72.452 +725279,110.89,70.991 +725280,111.33,69.523 +725281,108.74,73.917 +725282,109.15,72.471 +725283,109.6,71.016 +725284,110.09,69.554 +725285,107.35,73.929 +725286,107.81,72.489 +725287,108.31,71.041 +725288,108.85,69.586 +725289,105.95,73.939 +725290,106.46,72.507 +725291,107.01,71.066 +725292,107.61,69.619 +725293,104.56,73.949 +725294,105.12,72.524 +725295,105.72,71.092 +725296,106.37,69.653 +725297,103.17,73.957 +725298,103.78,72.542 +725299,104.43,71.118 +725300,105.12,69.688 +725301,101.78,73.965 +725302,102.43,72.559 +725303,103.13,71.145 +725304,103.88,69.725 +725305,100.39,73.971 +725306,101.09,72.575 +725307,101.84,71.172 +725308,102.64,69.763 +725309,99.004,73.976 +725310,99.75,72.591 +725311,100.55,71.199 +725312,101.39,69.802 +725313,97.616,73.98 +725314,98.409,72.607 +725315,99.251,71.227 +725316,100.15,69.842 +725317,96.229,73.983 +725318,97.067,72.622 +725319,97.956,71.255 +725320,98.9,69.883 +725321,94.842,73.985 +725322,95.726,72.637 +725323,96.661,71.283 +725324,97.653,69.925 +725325,93.456,73.985 +725326,94.384,72.652 +725327,95.366,71.312 +725328,96.406,69.968 +725329,92.071,73.985 +725330,93.043,72.666 +725331,94.071,71.341 +725332,95.158,70.013 +725333,90.687,73.984 +725334,91.703,72.68 +725335,92.775,71.371 +725336,93.909,70.058 +725337,89.303,73.981 +725338,90.362,72.693 +725339,91.48,71.401 +725340,92.659,70.105 +725341,87.92,73.978 +725342,89.022,72.707 +725343,90.183,71.431 +725344,91.408,70.153 +725345,86.539,73.973 +725346,87.682,72.72 +725347,88.887,71.462 +725348,90.156,70.202 +725349,85.158,73.968 +725350,86.343,72.732 +725351,87.59,71.493 +725352,88.904,70.251 +725353,83.778,73.961 +725354,85.004,72.744 +725355,86.293,71.524 +725356,87.65,70.302 +725357,82.399,73.954 +725358,83.665,72.756 +725359,84.995,71.556 +725360,86.395,70.354 +725361,81.021,73.945 +725362,82.326,72.768 +725363,83.697,71.588 +725364,85.14,70.407 +725365,79.645,73.936 +725366,80.988,72.779 +725367,82.399,71.62 +725368,83.883,70.461 +725369,78.269,73.926 +725370,79.65,72.79 +725371,81.1,71.652 +725372,82.625,70.515 +725373,76.894,73.914 +725374,78.313,72.8 +725375,79.801,71.685 +725376,81.365,70.571 +725377,75.521,73.902 +725378,76.976,72.811 +725379,78.501,71.718 +725380,80.105,70.627 +725381,74.148,73.889 +725382,75.639,72.821 +725383,77.202,71.752 +725384,78.843,70.685 +725385,72.777,73.876 +725386,74.302,72.831 +725387,75.901,71.786 +725388,77.58,70.743 +725389,71.407,73.861 +725390,72.966,72.84 +725391,74.6,71.82 +725392,76.316,70.802 +725393,70.038,73.845 +725394,71.631,72.849 +725395,73.299,71.854 +725396,75.051,70.862 +725397,68.671,73.829 +725398,70.296,72.858 +725399,71.997,71.889 +725400,73.784,70.923 +725401,67.305,73.812 +725402,68.961,72.867 +725403,70.695,71.924 +725404,72.516,70.985 +725405,65.94,73.794 +725406,67.627,72.875 +725407,69.393,71.959 +725408,71.246,71.047 +725409,64.576,73.776 +725410,66.293,72.883 +725411,68.09,71.994 +725412,69.975,71.11 +725413,63.214,73.756 +725414,64.959,72.891 +725415,66.786,72.03 +725416,68.702,71.174 +725417,61.853,73.736 +725418,63.626,72.899 +725419,65.482,72.066 +725420,67.428,71.238 +725421,60.493,73.716 +725422,62.294,72.906 +725423,64.177,72.102 +725424,66.153,71.303 +725425,59.135,73.694 +725426,60.962,72.914 +725427,62.872,72.138 +725428,64.876,71.369 +725429,57.778,73.672 +725430,59.63,72.921 +725431,61.567,72.175 +725432,63.597,71.436 +725433,56.423,73.65 +725434,58.299,72.928 +725435,60.26,72.211 +725436,62.317,71.503 +725437,55.069,73.627 +725438,56.968,72.934 +725439,58.954,72.248 +725440,61.035,71.57 +725441,53.716,73.603 +725442,55.638,72.941 +725443,57.647,72.285 +725444,59.752,71.638 +725445,52.365,73.579 +725446,54.308,72.947 +725447,56.339,72.322 +725448,58.467,71.707 +725449,51.016,73.554 +725450,52.979,72.953 +725451,55.031,72.36 +725452,57.18,71.776 +725453,49.668,73.529 +725454,51.651,72.959 +725455,53.722,72.398 +725456,55.892,71.846 +725457,48.321,73.503 +725458,50.322,72.965 +725459,52.412,72.435 +725460,54.602,71.916 +725461,46.976,73.477 +725462,48.995,72.971 +725463,51.102,72.473 +725464,53.31,71.986 +725465,45.633,73.45 +725466,47.668,72.976 +725467,49.792,72.511 +725468,52.017,72.057 +725469,44.291,73.423 +725470,46.341,72.982 +725471,48.481,72.549 +725472,50.722,72.129 +725473,42.95,73.396 +725474,45.015,72.987 +725475,47.169,72.588 +725476,49.425,72.2 +725477,41.612,73.368 +725478,43.689,72.992 +725479,45.857,72.626 +725480,48.126,72.272 +725481,40.274,73.34 +725482,42.364,72.997 +725483,44.544,72.664 +725484,46.826,72.344 +725485,38.939,73.312 +725486,41.04,73.002 +725487,43.231,72.703 +725488,45.524,72.417 +725489,37.605,73.283 +725490,39.716,73.007 +725491,41.917,72.742 +725492,44.22,72.489 +725493,36.272,73.255 +725494,38.392,73.012 +725495,40.602,72.78 +725496,42.914,72.562 +725497,34.942,73.226 +725498,37.069,73.017 +725499,39.287,72.819 +725500,41.607,72.635 +725501,33.612,73.196 +725502,35.747,73.021 +725503,37.971,72.858 +725504,40.297,72.708 +725505,32.285,73.167 +725506,34.425,73.026 +725507,36.655,72.897 +725508,38.986,72.781 +725509,30.959,73.138 +725510,33.104,73.031 +725511,35.338,72.936 +725512,37.673,72.855 +725513,29.635,73.108 +725514,31.783,73.035 +725515,34.02,72.975 +725516,36.359,72.928 +725517,28.312,73.079 +725518,30.463,73.04 +725519,32.702,73.014 +725520,35.042,73.002 +725521,26.991,73.049 +725522,29.143,73.045 +725523,31.384,73.053 +725524,33.724,73.075 +725525,25.671,73.019 +725526,27.824,73.049 +725527,30.064,73.092 +725528,32.404,73.149 +725529,24.354,72.99 +725530,26.506,73.054 +725531,28.744,73.131 +725532,31.082,73.222 +725533,23.038,72.96 +725534,25.188,73.059 +725535,27.424,73.17 +725536,29.759,73.295 +725537,21.723,72.931 +725538,23.87,73.063 +725539,26.103,73.209 +725540,28.433,73.368 +725541,20.41,72.901 +725542,22.553,73.068 +725543,24.781,73.247 +725544,27.106,73.441 +725545,19.099,72.872 +725546,21.237,73.073 +725547,23.459,73.286 +725548,25.777,73.514 +725549,17.789,72.843 +725550,19.921,73.077 +725551,22.136,73.325 +725552,24.446,73.587 +725553,16.481,72.814 +725554,18.606,73.082 +725555,20.812,73.364 +725556,23.114,73.66 +725557,15.175,72.785 +725558,17.291,73.087 +725559,19.488,73.402 +725560,21.78,73.732 +725561,13.87,72.757 +725562,15.977,73.092 +725563,18.164,73.441 +725564,20.444,73.804 +725565,12.567,72.728 +725566,14.663,73.097 +725567,16.839,73.479 +725568,19.106,73.875 +725569,11.265,72.7 +725570,13.35,73.103 +725571,15.513,73.518 +725572,17.766,73.947 +725573,9.9654,72.673 +725574,12.037,73.108 +725575,14.186,73.556 +725576,16.425,74.018 +725577,8.6669,72.645 +725578,10.725,73.113 +725579,12.86,73.594 +725580,15.082,74.088 +725581,7.3701,72.618 +725582,9.4136,73.119 +725583,11.532,73.632 +725584,13.738,74.159 +725585,6.0748,72.592 +725586,8.1025,73.125 +725587,10.204,73.67 +725588,12.392,74.228 +725589,4.781,72.566 +725590,6.7919,73.131 +725591,8.8755,73.708 +725592,11.044,74.298 +725593,3.4888,72.54 +725594,5.4818,73.137 +725595,7.5464,73.745 +725596,9.6943,74.366 +725597,2.198,72.515 +725598,4.1722,73.143 +725599,6.2168,73.783 +725600,8.3432,74.435 +725601,0.90884,72.49 +725602,2.8631,73.149 +725603,4.8866,73.82 +725604,6.9906,74.503 +725605,359.62,72.466 +725606,1.5545,73.156 +725607,3.5559,73.857 +725608,5.6363,74.57 +725609,358.33,72.442 +725610,0.24641,73.163 +725611,2.2246,73.894 +725612,4.2805,74.637 +725613,357.05,72.419 +725614,358.94,73.17 +725615,0.89287,73.931 +725616,2.9232,74.703 +725617,355.77,72.397 +725618,357.63,73.177 +725619,359.56,73.967 +725620,1.5644,74.768 +725621,354.48,72.375 +725622,356.32,73.184 +725623,358.23,74.003 +725624,0.20409,74.833 +725625,353.2,72.353 +725626,355.02,73.192 +725627,356.89,74.039 +725628,358.84,74.897 +725629,351.93,72.333 +725630,353.71,73.199 +725631,355.56,74.075 +725632,357.48,74.961 +725633,350.65,72.313 +725634,352.41,73.207 +725635,354.23,74.111 +725636,356.11,75.023 +725637,349.37,72.294 +725638,351.1,73.216 +725639,352.89,74.146 +725640,354.75,75.085 +725641,348.1,72.276 +725642,349.8,73.224 +725643,351.56,74.181 +725644,353.38,75.147 +725645,346.82,72.258 +725646,348.49,73.233 +725647,350.22,74.216 +725648,352.01,75.207 +725649,345.55,72.241 +725650,347.19,73.242 +725651,348.88,74.251 +725652,350.64,75.267 +725653,344.28,72.225 +725654,345.89,73.251 +725655,347.55,74.285 +725656,349.27,75.326 +725657,343.01,72.21 +725658,344.58,73.261 +725659,346.21,74.319 +725660,347.9,75.384 +725661,341.74,72.196 +725662,343.28,73.271 +725663,344.87,74.353 +725664,346.52,75.441 +725665,340.47,72.182 +725666,341.98,73.281 +725667,343.54,74.386 +725668,345.15,75.497 +725669,339.21,72.169 +725670,340.68,73.292 +725671,342.2,74.42 +725672,343.77,75.553 +725673,337.94,72.158 +725674,339.38,73.303 +725675,340.86,74.453 +725676,342.4,75.607 +725677,336.68,72.147 +725678,338.08,73.314 +725679,339.52,74.485 +725680,341.02,75.661 +725681,335.41,72.137 +725682,336.77,73.325 +725683,338.18,74.517 +725684,339.64,75.714 +725685,334.15,72.128 +725686,335.47,73.337 +725687,336.84,74.549 +725688,338.26,75.765 +725689,332.89,72.121 +725690,334.17,73.349 +725691,335.5,74.581 +725692,336.88,75.816 +725693,331.63,72.114 +725694,332.87,73.361 +725695,334.16,74.612 +725696,335.5,75.866 +725697,330.37,72.108 +725698,331.58,73.374 +725699,332.82,74.643 +725700,334.11,75.915 +725701,329.11,72.103 +725702,330.28,73.387 +725703,331.48,74.674 +725704,332.73,75.962 +725705,327.86,72.099 +725706,328.98,73.401 +725707,330.14,74.704 +725708,331.34,76.009 +725709,326.6,72.097 +725710,327.68,73.415 +725711,328.8,74.734 +725712,329.96,76.055 +725713,325.34,72.095 +725714,326.38,73.429 +725715,327.45,74.764 +725716,328.57,76.099 +725717,324.09,72.094 +725718,325.08,73.443 +725719,326.11,74.793 +725720,327.18,76.143 +725721,322.84,72.095 +725722,323.78,73.458 +725723,324.77,74.822 +725724,325.79,76.186 +725725,321.58,72.097 +725726,322.49,73.473 +725727,323.43,74.851 +725728,324.41,76.227 +725729,320.33,72.099 +725730,321.19,73.489 +725731,322.08,74.879 +725732,323.02,76.267 +725733,319.08,72.103 +725734,319.89,73.505 +725735,320.74,74.907 +725736,321.63,76.307 +725737,317.83,72.108 +725738,318.6,73.522 +725739,319.4,74.934 +725740,320.24,76.345 +725741,316.58,72.115 +725742,317.3,73.538 +725743,318.05,74.961 +725744,318.85,76.382 +725745,315.33,72.122 +725746,316,73.556 +725747,316.71,74.988 +725748,317.45,76.418 +725749,314.08,72.131 +725750,314.71,73.573 +725751,315.37,75.014 +725752,316.06,76.452 +725753,312.83,72.14 +725754,313.41,73.591 +725755,314.02,75.04 +725756,314.67,76.486 +725757,311.58,72.151 +725758,312.11,73.61 +725759,312.68,75.066 +725760,313.28,76.518 +725761,310.33,72.164 +725762,310.82,73.628 +725763,311.33,75.091 +725764,311.88,76.55 +725765,309.09,72.177 +725766,309.52,73.648 +725767,309.99,75.116 +725768,310.49,76.58 +725769,307.84,72.191 +725770,308.23,73.667 +725771,308.64,75.14 +725772,309.1,76.609 +725773,306.59,72.207 +725774,306.93,73.687 +725775,307.3,75.164 +725776,307.7,76.637 +725777,305.34,72.224 +725778,305.63,73.707 +725779,305.95,75.188 +725780,306.31,76.663 +725781,304.1,72.242 +725782,304.34,73.728 +725783,304.61,75.211 +725784,304.91,76.689 +725785,302.85,72.262 +725786,303.04,73.749 +725787,303.26,75.234 +725788,303.52,76.713 +725789,301.61,72.282 +725790,301.75,73.771 +725791,301.92,75.256 +725792,302.12,76.736 +725793,300.36,72.304 +725794,300.45,73.793 +725795,300.57,75.278 +725796,300.73,76.758 +725797,299.11,72.327 +725798,299.16,73.815 +725799,299.23,75.3 +725800,299.33,76.779 +725801,297.87,72.352 +725802,297.86,73.838 +725803,297.88,75.321 +725804,297.94,76.799 +725805,296.62,72.377 +725806,296.56,73.862 +725807,296.54,75.342 +725808,296.55,76.817 +725809,295.38,72.404 +725810,295.27,73.885 +725811,295.19,75.362 +725812,295.15,76.835 +725813,294.13,72.432 +725814,293.97,73.909 +725815,293.85,75.383 +725816,293.76,76.851 +725817,292.89,72.461 +725818,292.68,73.934 +725819,292.5,75.402 +725820,292.36,76.866 +725821,291.64,72.492 +725822,291.38,73.959 +725823,291.16,75.422 +725824,290.97,76.879 +725825,290.39,72.523 +725826,290.09,73.984 +725827,289.81,75.441 +725828,289.57,76.892 +725829,289.15,72.556 +725830,288.79,74.009 +725831,288.47,75.459 +725832,288.18,76.904 +725833,287.9,72.59 +725834,287.49,74.035 +725835,287.12,75.477 +725836,286.79,76.914 +725837,286.65,72.626 +725838,286.2,74.062 +725839,285.78,75.495 +725840,285.4,76.923 +725841,285.41,72.662 +725842,284.9,74.089 +725843,284.43,75.512 +725844,284,76.931 +725845,284.16,72.7 +725846,283.6,74.116 +725847,283.09,75.529 +725848,282.61,76.938 +725849,282.91,72.738 +725850,282.31,74.144 +725851,281.74,75.546 +725852,281.22,76.944 +725853,281.66,72.778 +725854,281.01,74.172 +725855,280.4,75.562 +725856,279.83,76.949 +725857,280.41,72.82 +725858,279.71,74.2 +725859,279.06,75.578 +725860,278.44,76.953 +725861,279.16,72.862 +725862,278.42,74.229 +725863,277.71,75.594 +725864,277.05,76.955 +725865,277.91,72.905 +725866,277.12,74.258 +725867,276.37,75.609 +725868,275.66,76.957 +725869,276.66,72.95 +725870,275.82,74.287 +725871,275.02,75.624 +725872,274.27,76.957 +725873,275.41,72.995 +725874,274.52,74.317 +725875,273.68,75.638 +725876,272.88,76.956 +725877,274.16,73.042 +725878,273.22,74.348 +725879,272.34,75.652 +725880,271.49,76.955 +725881,272.91,73.09 +725882,271.93,74.378 +725883,270.99,75.666 +725884,270.11,76.952 +725885,271.65,73.139 +725886,270.63,74.409 +725887,269.65,75.68 +725888,268.72,76.948 +725889,270.4,73.189 +725890,269.33,74.441 +725891,268.31,75.693 +725892,267.34,76.943 +725893,269.14,73.239 +725894,268.03,74.472 +725895,266.97,75.706 +725896,265.95,76.938 +725897,267.89,73.291 +725898,266.73,74.504 +725899,265.63,75.718 +725900,264.57,76.931 +725901,266.63,73.344 +725902,265.43,74.537 +725903,264.28,75.73 +725904,263.19,76.923 +725905,265.37,73.398 +725906,264.13,74.569 +725907,262.94,75.742 +725908,261.81,76.915 +725909,264.11,73.453 +725910,262.83,74.602 +725911,261.6,75.754 +725912,260.42,76.905 +725913,262.85,73.509 +725914,261.53,74.636 +725915,260.26,75.765 +725916,259.04,76.895 +725917,261.59,73.566 +725918,260.23,74.669 +725919,258.92,75.776 +725920,257.67,76.883 +725921,260.33,73.624 +725922,258.93,74.703 +725923,257.58,75.786 +725924,256.29,76.871 +725925,259.07,73.682 +725926,257.62,74.737 +725927,256.24,75.797 +725928,254.91,76.858 +725929,257.8,73.742 +725930,256.32,74.772 +725931,254.9,75.807 +725932,253.54,76.844 +725933,256.54,73.802 +725934,255.02,74.807 +725935,253.56,75.816 +725936,252.16,76.829 +725937,255.27,73.864 +725938,253.72,74.842 +725939,252.22,75.826 +725940,250.79,76.813 +725941,254.01,73.926 +725942,252.41,74.877 +725943,250.88,75.835 +725944,249.41,76.797 +725945,252.74,73.988 +725946,251.11,74.913 +725947,249.55,75.844 +725948,248.04,76.78 +725949,251.47,74.052 +725950,249.8,74.949 +725951,248.21,75.853 +725952,246.67,76.762 +725953,250.2,74.116 +725954,248.5,74.985 +725955,246.87,75.861 +725956,245.3,76.743 +725957,248.92,74.181 +725958,247.19,75.021 +725959,245.53,75.87 +725960,243.94,76.724 +725961,247.65,74.247 +725962,245.89,75.058 +725963,244.2,75.878 +725964,242.57,76.704 +725965,246.37,74.313 +725966,244.58,75.095 +725967,242.86,75.885 +725968,241.21,76.683 +725969,245.1,74.381 +725970,243.27,75.132 +725971,241.52,75.893 +725972,239.84,76.662 +725973,243.82,74.448 +725974,241.97,75.169 +725975,240.19,75.9 +725976,238.48,76.64 +725977,242.54,74.517 +725978,240.66,75.207 +725979,238.85,75.908 +725980,237.12,76.617 +725981,241.26,74.585 +725982,239.35,75.244 +725983,237.52,75.915 +725984,235.76,76.594 +725985,239.98,74.655 +725986,238.04,75.282 +725987,236.19,75.922 +725988,234.4,76.57 +725989,238.69,74.725 +725990,236.73,75.32 +725991,234.85,75.928 +725992,233.04,76.546 +725993,237.41,74.795 +725994,235.42,75.359 +725995,233.52,75.935 +725996,231.69,76.521 +725997,236.12,74.866 +725998,234.11,75.397 +725999,232.19,75.941 +726000,230.33,76.496 +726001,234.83,74.938 +726002,232.8,75.436 +726003,230.86,75.947 +726004,228.98,76.47 +726005,233.54,75.009 +726006,231.49,75.474 +726007,229.52,75.953 +726008,227.63,76.444 +726009,232.25,75.082 +726010,230.18,75.513 +726011,228.19,75.959 +726012,226.28,76.418 +726013,230.96,75.154 +726014,228.87,75.552 +726015,226.86,75.965 +726016,224.93,76.391 +726017,229.66,75.227 +726018,227.56,75.591 +726019,225.53,75.971 +726020,223.58,76.364 +726021,228.37,75.3 +726022,226.24,75.63 +726023,224.2,75.977 +726024,222.24,76.336 +726025,227.07,75.374 +726026,224.93,75.67 +726027,222.87,75.982 +726028,220.89,76.308 +726029,225.77,75.448 +726030,223.61,75.709 +726031,221.54,75.988 +726032,219.55,76.28 +726033,224.47,75.521 +726034,222.3,75.749 +726035,220.22,75.993 +726036,218.21,76.252 +726037,223.16,75.596 +726038,220.98,75.788 +726039,218.89,75.998 +726040,216.87,76.223 +726041,221.86,75.67 +726042,219.67,75.828 +726043,217.56,76.003 +726044,215.53,76.194 +726045,220.55,75.744 +726046,218.35,75.868 +726047,216.23,76.009 +726048,214.2,76.165 +726049,219.24,75.819 +726050,217.03,75.907 +726051,214.91,76.014 +726052,212.86,76.136 +726053,217.94,75.894 +726054,215.72,75.947 +726055,213.58,76.019 +726056,211.53,76.107 +726057,216.62,75.968 +726058,214.4,75.987 +726059,212.26,76.024 +726060,210.2,76.078 +726061,215.31,76.043 +726062,213.08,76.027 +726063,210.93,76.029 +726064,208.87,76.048 +726065,214,76.118 +726066,211.76,76.066 +726067,209.61,76.034 +726068,207.54,76.019 +726069,212.68,76.193 +726070,210.44,76.106 +726071,208.29,76.039 +726072,206.21,75.99 +726073,211.36,76.267 +726074,209.12,76.146 +726075,206.96,76.045 +726076,204.89,75.96 +726077,210.04,76.342 +726078,207.8,76.186 +726079,205.64,76.05 +726080,203.56,75.931 +726081,208.72,76.416 +726082,206.47,76.226 +726083,204.32,76.055 +726084,202.24,75.902 +726085,207.39,76.491 +726086,205.15,76.265 +726087,203,76.06 +726088,200.92,75.873 +726089,206.07,76.565 +726090,203.83,76.305 +726091,201.68,76.065 +726092,199.6,75.844 +726093,204.74,76.639 +726094,202.51,76.345 +726095,200.36,76.071 +726096,198.28,75.815 +726097,203.41,76.713 +726098,201.18,76.384 +726099,199.04,76.076 +726100,196.97,75.786 +726101,202.08,76.786 +726102,199.86,76.424 +726103,197.72,76.082 +726104,195.65,75.758 +726105,200.75,76.859 +726106,198.53,76.463 +726107,196.4,76.087 +726108,194.34,75.73 +726109,199.42,76.932 +726110,197.2,76.503 +726111,195.08,76.093 +726112,193.03,75.702 +726113,198.08,77.005 +726114,195.88,76.542 +726115,193.76,76.099 +726116,191.72,75.674 +726117,196.74,77.077 +726118,194.55,76.581 +726119,192.44,76.105 +726120,190.41,75.647 +726121,195.41,77.149 +726122,193.22,76.62 +726123,191.13,76.111 +726124,189.1,75.62 +726125,194.06,77.22 +726126,191.9,76.659 +726127,189.81,76.117 +726128,187.8,75.594 +726129,192.72,77.291 +726130,190.57,76.697 +726131,188.5,76.123 +726132,186.49,75.567 +726133,191.38,77.362 +726134,189.24,76.736 +726135,187.18,76.13 +726136,185.19,75.542 +726137,190.03,77.432 +726138,187.91,76.774 +726139,185.86,76.137 +726140,183.89,75.516 +726141,188.69,77.501 +726142,186.58,76.813 +726143,184.55,76.143 +726144,182.59,75.492 +726145,187.34,77.57 +726146,185.25,76.851 +726147,183.24,76.15 +726148,181.3,75.467 +726149,185.99,77.639 +726150,183.92,76.889 +726151,181.92,76.158 +726152,180,75.444 +726153,184.64,77.706 +726154,182.58,76.926 +726155,180.61,76.165 +726156,178.7,75.421 +726157,183.28,77.774 +726158,181.25,76.964 +726159,179.3,76.173 +726160,177.41,75.398 +726161,181.93,77.84 +726162,179.92,77.001 +726163,177.99,76.18 +726164,176.12,75.376 +726165,180.57,77.906 +726166,178.58,77.038 +726167,176.67,76.188 +726168,174.83,75.355 +726169,179.21,77.971 +726170,177.25,77.075 +726171,175.36,76.197 +726172,173.54,75.334 +726173,177.85,78.036 +726174,175.92,77.112 +726175,174.05,76.205 +726176,172.25,75.314 +726177,176.49,78.1 +726178,174.58,77.148 +726179,172.74,76.214 +726180,170.97,75.295 +726181,175.13,78.163 +726182,173.25,77.185 +726183,171.43,76.223 +726184,169.68,75.276 +726185,173.77,78.225 +726186,171.91,77.221 +726187,170.12,76.232 +726188,168.4,75.259 +726189,172.4,78.286 +726190,170.57,77.256 +726191,168.81,76.242 +726192,167.12,75.242 +726193,171.04,78.347 +726194,169.24,77.292 +726195,167.51,76.251 +726196,165.83,75.225 +726197,169.67,78.407 +726198,167.9,77.327 +726199,166.2,76.261 +726200,164.55,75.21 +726201,168.3,78.466 +726202,166.56,77.362 +726203,164.89,76.272 +726204,163.28,75.196 +726205,166.93,78.524 +726206,165.22,77.396 +726207,163.58,76.282 +726208,162,75.182 +726209,165.56,78.581 +726210,163.88,77.431 +726211,162.28,76.293 +726212,160.72,75.169 +726213,164.18,78.638 +726214,162.55,77.465 +726215,160.97,76.305 +726216,159.45,75.157 +726217,162.81,78.693 +726218,161.21,77.498 +726219,159.66,76.316 +726220,158.17,75.146 +726221,161.43,78.747 +726222,159.87,77.532 +726223,158.36,76.328 +726224,156.9,75.136 +726225,160.06,78.801 +726226,158.53,77.565 +726227,157.05,76.34 +726228,155.63,75.127 +726229,158.68,78.853 +726230,157.19,77.598 +726231,155.75,76.353 +726232,154.36,75.119 +726233,157.3,78.905 +726234,155.84,77.63 +726235,154.44,76.366 +726236,153.09,75.112 +726237,155.92,78.955 +726238,154.5,77.662 +726239,153.14,76.379 +726240,151.82,75.106 +726241,154.54,79.005 +726242,153.16,77.694 +726243,151.83,76.393 +726244,150.55,75.101 +726245,153.16,79.053 +726246,151.82,77.725 +726247,150.53,76.406 +726248,149.29,75.097 +726249,151.78,79.101 +726250,150.48,77.756 +726251,149.23,76.421 +726252,148.02,75.094 +726253,150.39,79.147 +726254,149.13,77.787 +726255,147.92,76.435 +726256,146.76,75.092 +726257,149.01,79.193 +726258,147.79,77.818 +726259,146.62,76.45 +726260,145.49,75.091 +726261,147.62,79.237 +726262,146.45,77.848 +726263,145.32,76.466 +726264,144.23,75.091 +726265,146.24,79.28 +726266,145.1,77.877 +726267,144.02,76.482 +726268,142.97,75.093 +726269,144.85,79.322 +726270,143.76,77.907 +726271,142.71,76.498 +726272,141.71,75.095 +726273,143.46,79.363 +726274,142.42,77.936 +726275,141.41,76.514 +726276,140.45,75.099 +726277,142.08,79.403 +726278,141.07,77.964 +726279,140.11,76.531 +726280,139.19,75.104 +726281,140.69,79.441 +726282,139.73,77.992 +726283,138.81,76.548 +726284,137.93,75.11 +726285,139.3,79.479 +726286,138.38,78.02 +726287,137.51,76.566 +726288,136.67,75.117 +726289,137.91,79.515 +726290,137.04,78.048 +726291,136.21,76.584 +726292,135.41,75.125 +726293,136.52,79.551 +726294,135.69,78.075 +726295,134.9,76.603 +726296,134.16,75.135 +726297,135.13,79.585 +726298,134.34,78.101 +726299,133.6,76.622 +726300,132.9,75.146 +726301,133.73,79.618 +726302,133,78.128 +726303,132.3,76.641 +726304,131.64,75.158 +726305,132.34,79.649 +726306,131.65,78.154 +726307,131,76.661 +726308,130.39,75.171 +726309,130.95,79.68 +726310,130.31,78.179 +726311,129.7,76.681 +726312,129.13,75.185 +726313,129.56,79.709 +726314,128.96,78.204 +726315,128.4,76.701 +726316,127.88,75.201 +726317,128.16,79.737 +726318,127.61,78.229 +726319,127.1,76.722 +726320,126.62,75.218 +726321,126.77,79.764 +726322,126.27,78.253 +726323,125.8,76.743 +726324,125.37,75.236 +726325,125.37,79.79 +726326,124.92,78.277 +726327,124.5,76.765 +726328,124.12,75.255 +726329,123.98,79.815 +726330,123.57,78.301 +726331,123.2,76.787 +726332,122.86,75.276 +726333,122.58,79.838 +726334,122.23,78.324 +726335,121.9,76.81 +726336,121.61,75.297 +726337,121.19,79.861 +726338,120.88,78.347 +726339,120.6,76.833 +726340,120.36,75.32 +726341,119.8,79.882 +726342,119.53,78.369 +726343,119.3,76.856 +726344,119.1,75.345 +726345,118.4,79.902 +726346,118.18,78.391 +726347,118,76.88 +726348,117.85,75.37 +726349,117.01,79.92 +726350,116.84,78.413 +726351,116.7,76.904 +726352,116.6,75.397 +726353,115.61,79.938 +726354,115.49,78.434 +726355,115.4,76.929 +726356,115.35,75.425 +726357,114.21,79.954 +726358,114.14,78.455 +726359,114.1,76.954 +726360,114.1,75.454 +726361,112.82,79.969 +726362,112.8,78.475 +726363,112.8,76.98 +726364,112.84,75.485 +726365,111.42,79.983 +726366,111.45,78.495 +726367,111.5,77.005 +726368,111.59,75.516 +726369,110.03,79.996 +726370,110.1,78.515 +726371,110.2,77.032 +726372,110.34,75.549 +726373,108.64,80.0079 +726374,108.75,78.534 +726375,108.9,77.058 +726376,109.09,75.584 +726377,107.24,80.0184 +726378,107.41,78.553 +726379,107.6,77.086 +726380,107.83,75.619 +726381,105.85,80.0277 +726382,106.06,78.571 +726383,106.3,77.113 +726384,106.58,75.656 +726385,104.45,80.0359 +726386,104.71,78.589 +726387,105,77.141 +726388,105.33,75.693 +726389,103.06,80.043 +726390,103.36,78.607 +726391,103.7,77.169 +726392,104.07,75.732 +726393,101.66,80.0489 +726394,102.02,78.624 +726395,102.4,77.198 +726396,102.82,75.773 +726397,100.27,80.0537 +726398,100.67,78.641 +726399,101.1,77.227 +726400,101.57,75.814 +726401,98.879,80.0574 +726402,99.323,78.658 +726403,99.801,77.257 +726404,100.31,75.857 +726405,97.487,80.06 +726406,97.976,78.674 +726407,98.5,77.287 +726408,99.058,75.9 +726409,96.095,80.0615 +726410,96.63,78.69 +726411,97.199,77.317 +726412,97.803,75.945 +726413,94.703,80.0619 +726414,95.283,78.705 +726415,95.898,77.347 +726416,96.547,75.991 +726417,93.313,80.0613 +726418,93.937,78.72 +726419,94.596,77.379 +726420,95.291,76.038 +726421,91.922,80.0596 +726422,92.591,78.735 +726423,93.295,77.41 +726424,94.035,76.087 +726425,90.533,80.0568 +726426,91.245,78.749 +726427,91.993,77.442 +726428,92.778,76.136 +726429,89.144,80.0531 +726430,89.899,78.763 +726431,90.691,77.474 +726432,91.52,76.186 +726433,87.755,80.0483 +726434,88.553,78.777 +726435,89.388,77.506 +726436,90.262,76.238 +726437,86.367,80.0425 +726438,87.208,78.79 +726439,88.086,77.539 +726440,89.003,76.291 +726441,84.98,80.0357 +726442,85.863,78.803 +726443,86.783,77.572 +726444,87.743,76.344 +726445,83.594,80.0279 +726446,84.518,78.816 +726447,85.48,77.606 +726448,86.482,76.399 +726449,82.209,80.0192 +726450,83.173,78.829 +726451,84.177,77.64 +726452,85.221,76.455 +726453,80.824,80.0095 +726454,81.829,78.841 +726455,82.873,77.674 +726456,83.959,76.511 +726457,79.44,79.999 +726458,80.484,78.852 +726459,81.569,77.708 +726460,82.696,76.569 +726461,78.057,79.987 +726462,79.14,78.864 +726463,80.265,77.743 +726464,81.432,76.627 +726465,76.675,79.975 +726466,77.797,78.875 +726467,78.96,77.778 +726468,80.168,76.687 +726469,75.294,79.962 +726470,76.453,78.886 +726471,77.655,77.814 +726472,78.902,76.748 +726473,73.914,79.948 +726474,75.11,78.897 +726475,76.35,77.85 +726476,77.635,76.809 +726477,72.534,79.933 +726478,73.767,78.907 +726479,75.044,77.886 +726480,76.368,76.871 +726481,71.156,79.917 +726482,72.425,78.917 +726483,73.738,77.922 +726484,75.099,76.934 +726485,69.779,79.9 +726486,71.082,78.927 +726487,72.432,77.959 +726488,73.83,76.998 +726489,68.403,79.883 +726490,69.741,78.936 +726491,71.125,77.996 +726492,72.559,77.063 +726493,67.027,79.865 +726494,68.399,78.946 +726495,69.818,78.033 +726496,71.287,77.128 +726497,65.653,79.846 +726498,67.058,78.955 +726499,68.511,78.07 +726500,70.014,77.195 +726501,64.28,79.826 +726502,65.717,78.964 +726503,67.203,78.108 +726504,68.74,77.262 +726505,62.909,79.806 +726506,64.377,78.972 +726507,65.894,78.146 +726508,67.465,77.33 +726509,61.538,79.785 +726510,63.037,78.981 +726511,64.586,78.184 +726512,66.188,77.398 +726513,60.169,79.764 +726514,61.697,78.989 +726515,63.276,78.222 +726516,64.91,77.467 +726517,58.8,79.742 +726518,60.357,78.997 +726519,61.967,78.261 +726520,63.631,77.537 +726521,57.433,79.719 +726522,59.018,79.004 +726523,60.657,78.3 +726524,62.351,77.607 +726525,56.068,79.695 +726526,57.68,79.012 +726527,59.346,78.339 +726528,61.07,77.678 +726529,54.703,79.672 +726530,56.342,79.019 +726531,58.035,78.378 +726532,59.787,77.75 +726533,53.34,79.647 +726534,55.004,79.027 +726535,56.724,78.417 +726536,58.502,77.822 +726537,51.978,79.622 +726538,53.667,79.034 +726539,55.412,78.457 +726540,57.217,77.895 +726541,50.617,79.597 +726542,52.33,79.041 +726543,54.099,78.497 +726544,55.93,77.968 +726545,49.258,79.571 +726546,50.993,79.047 +726547,52.786,78.537 +726548,54.641,78.041 +726549,47.9,79.545 +726550,49.657,79.054 +726551,51.473,78.577 +726552,53.351,78.115 +726553,46.543,79.518 +726554,48.322,79.06 +726555,50.159,78.617 +726556,52.06,78.19 +726557,45.188,79.491 +726558,46.987,79.067 +726559,48.845,78.657 +726560,50.767,78.265 +726561,43.834,79.463 +726562,45.652,79.073 +726563,47.53,78.698 +726564,49.473,78.34 +726565,42.482,79.436 +726566,44.318,79.079 +726567,46.214,78.738 +726568,48.177,78.415 +726569,41.131,79.407 +726570,42.984,79.085 +726571,44.898,78.779 +726572,46.88,78.491 +726573,39.781,79.379 +726574,41.651,79.091 +726575,43.582,78.82 +726576,45.581,78.567 +726577,38.433,79.351 +726578,40.318,79.097 +726579,42.265,78.86 +726580,44.28,78.643 +726581,37.087,79.322 +726582,38.985,79.103 +726583,40.947,78.901 +726584,42.978,78.72 +726585,35.741,79.293 +726586,37.653,79.109 +726587,39.629,78.942 +726588,41.675,78.797 +726589,34.397,79.264 +726590,36.322,79.114 +726591,38.311,78.983 +726592,40.37,78.873 +726593,33.055,79.234 +726594,34.991,79.12 +726595,36.991,79.025 +726596,39.063,78.95 +726597,31.714,79.205 +726598,33.661,79.126 +726599,35.672,79.066 +726600,37.755,79.027 +726601,30.375,79.175 +726602,32.331,79.131 +726603,34.351,79.107 +726604,36.445,79.104 +726605,29.037,79.146 +726606,31.001,79.137 +726607,33.031,79.148 +726608,35.133,79.182 +726609,27.701,79.116 +726610,29.672,79.143 +726611,31.709,79.189 +726612,33.82,79.259 +726613,26.366,79.087 +726614,28.344,79.148 +726615,30.387,79.23 +726616,32.505,79.336 +726617,25.032,79.057 +726618,27.015,79.154 +726619,29.065,79.272 +726620,31.189,79.413 +726621,23.701,79.028 +726622,25.688,79.16 +726623,27.742,79.313 +726624,29.871,79.49 +726625,22.37,78.998 +726626,24.361,79.165 +726627,26.418,79.354 +726628,28.551,79.567 +726629,21.041,78.969 +726630,23.034,79.171 +726631,25.094,79.395 +726632,27.23,79.643 +726633,19.714,78.94 +726634,21.708,79.177 +726635,23.77,79.436 +726636,25.907,79.72 +726637,18.388,78.911 +726638,20.383,79.183 +726639,22.444,79.477 +726640,24.582,79.796 +726641,17.064,78.882 +726642,19.058,79.189 +726643,21.119,79.518 +726644,23.256,79.872 +726645,15.741,78.853 +726646,17.733,79.195 +726647,19.792,79.559 +726648,21.928,79.948 +726649,14.42,78.825 +726650,16.409,79.201 +726651,18.465,79.6 +726652,20.599,80.0239 +726653,13.1,78.797 +726654,15.085,79.207 +726655,17.138,79.64 +726656,19.267,80.0992 +726657,11.782,78.769 +726658,13.762,79.213 +726659,15.81,79.681 +726660,17.934,80.1741 +726661,10.465,78.742 +726662,12.439,79.22 +726663,14.481,79.721 +726664,16.6,80.2487 +726665,9.1495,78.715 +726666,11.117,79.227 +726667,13.152,79.762 +726668,15.264,80.3229 +726669,7.8356,78.688 +726670,9.7956,79.233 +726671,11.822,79.802 +726672,13.926,80.3966 +726673,6.5232,78.662 +726674,8.4743,79.24 +726675,10.492,79.842 +726676,12.587,80.4699 +726677,5.2123,78.636 +726678,7.1536,79.247 +726679,9.1614,79.882 +726680,11.246,80.5427 +726681,3.9029,78.611 +726682,5.8334,79.254 +726683,7.8301,79.922 +726684,9.9034,80.6151 +726685,2.5949,78.586 +726686,4.5136,79.262 +726687,6.4982,79.961 +726688,8.5593,80.6869 +726689,1.2883,78.562 +726690,3.1943,79.269 +726691,5.1658,80.0006 +726692,7.2136,80.7581 +726693,359.98,78.538 +726694,1.8754,79.277 +726695,3.8329,80.0399 +726696,5.8663,80.8288 +726697,358.68,78.515 +726698,0.55702,79.285 +726699,2.4995,80.0789 +726700,4.5175,80.8988 +726701,357.38,78.492 +726702,359.24,79.293 +726703,1.1655,80.1177 +726704,3.1671,80.9682 +726705,356.08,78.47 +726706,357.92,79.301 +726707,359.83,80.1564 +726708,1.8153,81.037 +726709,354.78,78.448 +726710,356.6,79.31 +726711,358.5,80.1948 +726712,0.46186,81.1051 +726713,353.48,78.428 +726714,355.29,79.319 +726715,357.16,80.233 +726716,359.11,81.1725 +726717,352.18,78.408 +726718,353.97,79.328 +726719,355.82,80.2709 +726720,357.75,81.2391 +726721,350.89,78.389 +726722,352.66,79.337 +726723,354.49,80.3087 +726724,356.39,81.305 +726725,349.59,78.37 +726726,351.34,79.347 +726727,353.15,80.3461 +726728,355.03,81.3702 +726729,348.3,78.352 +726730,350.03,79.357 +726731,351.81,80.3834 +726732,353.67,81.4345 +726733,347.01,78.335 +726734,348.71,79.367 +726735,350.48,80.4203 +726736,352.31,81.4981 +726737,345.72,78.319 +726738,347.4,79.377 +726739,349.14,80.457 +726740,350.95,81.5607 +726741,344.43,78.304 +726742,346.08,79.388 +726743,347.8,80.4934 +726744,349.58,81.6226 +726745,343.14,78.289 +726746,344.77,79.399 +726747,346.46,80.5295 +726748,348.22,81.6835 +726749,341.85,78.275 +726750,343.46,79.41 +726751,345.12,80.5653 +726752,346.85,81.7436 +726753,340.57,78.263 +726754,342.15,79.421 +726755,343.78,80.6009 +726756,345.48,81.8027 +726757,339.28,78.251 +726758,340.83,79.433 +726759,342.44,80.6361 +726760,344.11,81.8609 +726761,338,78.24 +726762,339.52,79.446 +726763,341.1,80.671 +726764,342.74,81.9182 +726765,336.72,78.23 +726766,338.21,79.458 +726767,339.76,80.7056 +726768,341.37,81.9745 +726769,335.44,78.221 +726770,336.9,79.471 +726771,338.41,80.7399 +726772,339.99,82.0298 +726773,334.16,78.213 +726774,335.59,79.484 +726775,337.07,80.7738 +726776,338.62,82.0841 +726777,332.88,78.206 +726778,334.28,79.498 +726779,335.73,80.8075 +726780,337.24,82.1373 +726781,331.6,78.2 +726782,332.97,79.511 +726783,334.39,80.8407 +726784,335.86,82.1895 +726785,330.33,78.195 +726786,331.66,79.526 +726787,333.04,80.8737 +726788,334.49,82.2407 +726789,329.05,78.191 +726790,330.35,79.54 +726791,331.7,80.9062 +726792,333.11,82.2908 +726793,327.78,78.189 +726794,329.04,79.555 +726795,330.35,80.9385 +726796,331.73,82.3399 +726797,326.5,78.187 +726798,327.73,79.57 +726799,329.01,80.9703 +726800,330.34,82.3878 +726801,325.23,78.186 +726802,326.42,79.586 +726803,327.66,81.0018 +726804,328.96,82.4346 +726805,323.96,78.187 +726806,325.11,79.602 +726807,326.32,81.033 +726808,327.58,82.4803 +726809,322.69,78.189 +726810,323.81,79.619 +726811,324.97,81.0637 +726812,326.19,82.5249 +726813,321.42,78.192 +726814,322.5,79.635 +726815,323.63,81.0941 +726816,324.81,82.5683 +726817,320.15,78.196 +726818,321.19,79.653 +726819,322.28,81.1241 +726820,323.42,82.6106 +726821,318.88,78.201 +726822,319.88,79.67 +726823,320.93,81.1538 +726824,322.04,82.6518 +726825,317.61,78.207 +726826,318.58,79.688 +726827,319.59,81.183 +726828,320.65,82.6917 +726829,316.34,78.215 +726830,317.27,79.707 +726831,318.24,81.2118 +726832,319.26,82.7305 +726833,315.07,78.223 +726834,315.96,79.725 +726835,316.89,81.2403 +726836,317.87,82.7681 +726837,313.81,78.233 +726838,314.66,79.745 +726839,315.55,81.2684 +726840,316.48,82.8045 +726841,312.54,78.244 +726842,313.35,79.764 +726843,314.2,81.296 +726844,315.09,82.8397 +726845,311.28,78.257 +726846,312.04,79.784 +726847,312.85,81.3233 +726848,313.7,82.8737 +726849,310.01,78.27 +726850,310.74,79.805 +726851,311.5,81.3502 +726852,312.31,82.9065 +726853,308.75,78.285 +726854,309.43,79.826 +726855,310.15,81.3766 +726856,310.92,82.938 +726857,307.49,78.301 +726858,308.13,79.847 +726859,308.8,81.4027 +726860,309.52,82.9684 +726861,306.22,78.319 +726862,306.82,79.869 +726863,307.45,81.4283 +726864,308.13,82.9975 +726865,304.96,78.337 +726866,305.52,79.891 +726867,306.11,81.4535 +726868,306.74,83.0254 +726869,303.7,78.357 +726870,304.21,79.913 +726871,304.76,81.4784 +726872,305.34,83.0521 +726873,302.44,78.378 +726874,302.9,79.936 +726875,303.41,81.5028 +726876,303.95,83.0775 +726877,301.18,78.401 +726878,301.6,79.96 +726879,302.06,81.5268 +726880,302.55,83.1017 +726881,299.92,78.424 +726882,300.29,79.983 +726883,300.71,81.5504 +726884,301.16,83.1247 +726885,298.66,78.449 +726886,298.99,80.0077 +726887,299.36,81.5736 +726888,299.76,83.1465 +726889,297.4,78.476 +726890,297.68,80.0323 +726891,298.01,81.5964 +726892,298.37,83.167 +726893,296.14,78.503 +726894,296.38,80.0574 +726895,296.66,81.6187 +726896,296.97,83.1863 +726897,294.87,78.532 +726898,295.07,80.0829 +726899,295.31,81.6407 +726900,295.58,83.2044 +726901,293.61,78.562 +726902,293.77,80.1088 +726903,293.96,81.6622 +726904,294.18,83.2212 +726905,292.35,78.593 +726906,292.47,80.1351 +726907,292.61,81.6834 +726908,292.79,83.2368 +726909,291.1,78.626 +726910,291.16,80.1619 +726911,291.26,81.7041 +726912,291.39,83.2513 +726913,289.84,78.659 +726914,289.86,80.1891 +726915,289.91,81.7244 +726916,289.99,83.2645 +726917,288.58,78.695 +726918,288.55,80.2167 +726919,288.56,81.7443 +726920,288.6,83.2765 +726921,287.32,78.731 +726922,287.25,80.2447 +726923,287.21,81.7639 +726924,287.2,83.2873 +726925,286.06,78.768 +726926,285.94,80.2731 +726927,285.86,81.783 +726928,285.81,83.2969 +726929,284.8,78.807 +726930,284.64,80.3019 +726931,284.51,81.8017 +726932,284.41,83.3053 +726933,283.53,78.847 +726934,283.33,80.3312 +726935,283.16,81.82 +726936,283.01,83.3125 +726937,282.27,78.888 +726938,282.02,80.3608 +726939,281.81,81.838 +726940,281.62,83.3186 +726941,281.01,78.931 +726942,280.72,80.3909 +726943,280.46,81.8555 +726944,280.22,83.3235 +726945,279.75,78.975 +726946,279.41,80.4213 +726947,279.11,81.8727 +726948,278.83,83.3273 +726949,278.49,79.02 +726950,278.11,80.4522 +726951,277.76,81.8895 +726952,277.43,83.3299 +726953,277.23,79.066 +726954,276.8,80.4834 +726955,276.41,81.9059 +726956,276.04,83.3314 +726957,275.97,79.113 +726958,275.5,80.515 +726959,275.06,81.9219 +726960,274.64,83.3318 +726961,274.71,79.161 +726962,274.19,80.5471 +726963,273.71,81.9375 +726964,273.25,83.3311 +726965,273.44,79.211 +726966,272.88,80.5795 +726967,272.36,81.9528 +726968,271.86,83.3293 +726969,272.18,79.261 +726970,271.58,80.6122 +726971,271.01,81.9677 +726972,270.47,83.3264 +726973,270.92,79.313 +726974,270.27,80.6454 +726975,269.66,81.9823 +726976,269.07,83.3224 +726977,269.65,79.366 +726978,268.96,80.6789 +726979,268.31,81.9965 +726980,267.68,83.3174 +726981,268.39,79.42 +726982,267.66,80.7128 +726983,266.96,82.0104 +726984,266.29,83.3113 +726985,267.12,79.475 +726986,266.35,80.747 +726987,265.61,82.0239 +726988,264.9,83.3042 +726989,265.86,79.531 +726990,265.04,80.7816 +726991,264.26,82.037 +726992,263.51,83.2961 +726993,264.59,79.589 +726994,263.74,80.8165 +726995,262.91,82.0499 +726996,262.12,83.287 +726997,263.32,79.647 +726998,262.43,80.8518 +726999,261.56,82.0624 +727000,260.73,83.277 +727001,262.05,79.706 +727002,261.12,80.8874 +727003,260.22,82.0746 +727004,259.34,83.266 +727005,260.79,79.766 +727006,259.81,80.9233 +727007,258.87,82.0864 +727008,257.96,83.254 +727009,259.52,79.828 +727010,258.5,80.9596 +727011,257.52,82.098 +727012,256.57,83.2411 +727013,258.25,79.89 +727014,257.19,80.9961 +727015,256.17,82.1093 +727016,255.18,83.2273 +727017,256.98,79.953 +727018,255.88,81.033 +727019,254.83,82.1202 +727020,253.8,83.2127 +727021,255.7,80.0169 +727022,254.57,81.0702 +727023,253.48,82.1309 +727024,252.42,83.1971 +727025,254.43,80.0818 +727026,253.26,81.1077 +727027,252.13,82.1413 +727028,251.03,83.1808 +727029,253.16,80.1476 +727030,251.95,81.1454 +727031,250.78,82.1514 +727032,249.65,83.1636 +727033,251.88,80.2143 +727034,250.64,81.1835 +727035,249.44,82.1612 +727036,248.27,83.1455 +727037,250.61,80.2817 +727038,249.33,81.2218 +727039,248.09,82.1708 +727040,246.89,83.1267 +727041,249.33,80.35 +727042,248.02,81.2604 +727043,246.75,82.1801 +727044,245.51,83.1072 +727045,248.05,80.419 +727046,246.71,81.2992 +727047,245.4,82.1892 +727048,244.13,83.0869 +727049,246.77,80.4888 +727050,245.4,81.3383 +727051,244.06,82.198 +727052,242.75,83.0659 +727053,245.49,80.5594 +727054,244.08,81.3776 +727055,242.71,82.2066 +727056,241.38,83.0442 +727057,244.21,80.6306 +727058,242.77,81.4172 +727059,241.37,82.215 +727060,240,83.0218 +727061,242.93,80.7025 +727062,241.46,81.457 +727063,240.02,82.2231 +727064,238.63,82.9988 +727065,241.65,80.7751 +727066,240.14,81.497 +727067,238.68,82.231 +727068,237.26,82.9751 +727069,240.36,80.8483 +727070,238.83,81.5372 +727071,237.34,82.2388 +727072,235.88,82.9509 +727073,239.08,80.9222 +727074,237.51,81.5777 +727075,235.99,82.2463 +727076,234.51,82.926 +727077,237.79,80.9965 +727078,236.2,81.6183 +727079,234.65,82.2537 +727080,233.14,82.9007 +727081,236.5,81.0715 +727082,234.88,81.6591 +727083,233.31,82.2609 +727084,231.77,82.8748 +727085,235.21,81.147 +727086,233.57,81.7 +727087,231.97,82.2679 +727088,230.41,82.8483 +727089,233.92,81.2229 +727090,232.25,81.7412 +727091,230.63,82.2748 +727092,229.04,82.8215 +727093,232.63,81.2993 +727094,230.94,81.7825 +727095,229.28,82.2815 +727096,227.68,82.7941 +727097,231.34,81.3762 +727098,229.62,81.8239 +727099,227.94,82.288 +727100,226.31,82.7664 +727101,230.04,81.4535 +727102,228.3,81.8655 +727103,226.6,82.2945 +727104,224.95,82.7382 +727105,228.75,81.5311 +727106,226.98,81.9072 +727107,225.26,82.3008 +727108,223.59,82.7097 +727109,227.45,81.6091 +727110,225.66,81.949 +727111,223.92,82.307 +727112,222.23,82.6808 +727113,226.15,81.6875 +727114,224.34,81.9909 +727115,222.59,82.3131 +727116,220.87,82.6517 +727117,224.85,81.7661 +727118,223.02,82.0329 +727119,221.25,82.3191 +727120,219.52,82.6222 +727121,223.55,81.845 +727122,221.7,82.0751 +727123,219.91,82.325 +727124,218.16,82.5924 +727125,222.25,81.9241 +727126,220.38,82.1173 +727127,218.57,82.3309 +727128,216.81,82.5625 +727129,220.94,82.0034 +727130,219.06,82.1595 +727131,217.23,82.3366 +727132,215.45,82.5323 +727133,219.64,82.083 +727134,217.74,82.2018 +727135,215.9,82.3424 +727136,214.1,82.5019 +727137,218.33,82.1626 +727138,216.42,82.2442 +727139,214.56,82.348 +727140,212.75,82.4714 +727141,217.02,82.2424 +727142,215.1,82.2866 +727143,213.22,82.3537 +727144,211.4,82.4408 +727145,215.71,82.3222 +727146,213.77,82.3291 +727147,211.89,82.3593 +727148,210.06,82.4101 +727149,214.4,82.4021 +727150,212.45,82.3716 +727151,210.55,82.3648 +727152,208.71,82.3793 +727153,213.09,82.482 +727154,211.12,82.414 +727155,209.22,82.3704 +727156,207.37,82.3484 +727157,211.77,82.562 +727158,209.8,82.4565 +727159,207.88,82.376 +727160,206.02,82.3176 +727161,210.46,82.6418 +727162,208.47,82.499 +727163,206.55,82.3816 +727164,204.68,82.2867 +727165,209.14,82.7217 +727166,207.15,82.5414 +727167,205.22,82.3872 +727168,203.34,82.2559 +727169,207.82,82.8014 +727170,205.82,82.5839 +727171,203.88,82.3928 +727172,202,82.2252 +727173,206.5,82.881 +727174,204.49,82.6263 +727175,202.55,82.3984 +727176,200.66,82.1946 +727177,205.18,82.9604 +727178,203.17,82.6686 +727179,201.22,82.4042 +727180,199.33,82.1641 +727181,203.85,83.0396 +727182,201.84,82.7109 +727183,199.89,82.4099 +727184,197.99,82.1338 +727185,202.53,83.1187 +727186,200.51,82.7531 +727187,198.56,82.4158 +727188,196.66,82.1037 +727189,201.2,83.1974 +727190,199.18,82.7952 +727191,197.23,82.4217 +727192,195.33,82.0737 +727193,199.87,83.2759 +727194,197.85,82.8373 +727195,195.9,82.4277 +727196,194,82.0441 +727197,198.54,83.3541 +727198,196.52,82.8792 +727199,194.57,82.4337 +727200,192.67,82.0147 +727201,197.21,83.432 +727202,195.19,82.921 +727203,193.24,82.4399 +727204,191.34,81.9855 +727205,195.88,83.5095 +727206,193.86,82.9628 +727207,191.91,82.4463 +727208,190.02,81.9568 +727209,194.54,83.5866 +727210,192.53,83.0044 +727211,190.58,82.4527 +727212,188.69,81.9283 +727213,193.2,83.6632 +727214,191.2,83.0458 +727215,189.25,82.4592 +727216,187.37,81.9003 +727217,191.87,83.7395 +727218,189.86,83.0871 +727219,187.93,82.466 +727220,186.05,81.8726 +727221,190.53,83.8152 +727222,188.53,83.1283 +727223,186.6,82.4728 +727224,184.73,81.8454 +727225,189.19,83.8904 +727226,187.2,83.1693 +727227,185.27,82.4798 +727228,183.41,81.8187 +727229,187.84,83.9651 +727230,185.86,83.2101 +727231,183.95,82.487 +727232,182.09,81.7924 +727233,186.5,84.0392 +727234,184.53,83.2508 +727235,182.62,82.4944 +727236,180.78,81.7667 +727237,185.15,84.1128 +727238,183.19,83.2912 +727239,181.3,82.5019 +727240,179.46,81.7415 +727241,183.81,84.1857 +727242,181.86,83.3315 +727243,179.97,82.5097 +727244,178.15,81.7169 +727245,182.46,84.258 +727246,180.52,83.3715 +727247,178.65,82.5176 +727248,176.84,81.6928 +727249,181.11,84.3296 +727250,179.18,83.4113 +727251,177.32,82.5258 +727252,175.53,81.6694 +727253,179.76,84.4005 +727254,177.84,83.4509 +727255,176,82.5341 +727256,174.22,81.6467 +727257,178.4,84.4706 +727258,176.51,83.4903 +727259,174.68,82.5427 +727260,172.91,81.6246 +727261,177.05,84.5401 +727262,175.17,83.5294 +727263,173.36,82.5516 +727264,171.6,81.6032 +727265,175.69,84.6087 +727266,173.83,83.5683 +727267,172.03,82.5607 +727268,170.3,81.5825 +727269,174.33,84.6766 +727270,172.49,83.6069 +727271,170.71,82.57 +727272,168.99,81.5625 +727273,172.98,84.7437 +727274,171.15,83.6452 +727275,169.39,82.5796 +727276,167.69,81.5434 +727277,171.61,84.8099 +727278,169.81,83.6833 +727279,168.07,82.5895 +727280,166.39,81.525 +727281,170.25,84.8752 +727282,168.47,83.7211 +727283,166.75,82.5996 +727284,165.09,81.5074 +727285,168.89,84.9397 +727286,167.13,83.7586 +727287,165.43,82.6101 +727288,163.79,81.4907 +727289,167.53,85.0032 +727290,165.78,83.7958 +727291,164.11,82.6208 +727292,162.49,81.4748 +727293,166.16,85.0658 +727294,164.44,83.8327 +727295,162.79,82.6318 +727296,161.2,81.4598 +727297,164.79,85.1275 +727298,163.1,83.8693 +727299,161.47,82.6431 +727300,159.9,81.4457 +727301,163.42,85.1882 +727302,161.76,83.9055 +727303,160.15,82.6547 +727304,158.61,81.4325 +727305,162.05,85.2479 +727306,160.41,83.9415 +727307,158.83,82.6667 +727308,157.31,81.4203 +727309,160.68,85.3066 +727310,159.07,83.9771 +727311,157.52,82.679 +727312,156.02,81.409 +727313,159.31,85.3642 +727314,157.72,84.0124 +727315,156.2,82.6916 +727316,154.73,81.3988 +727317,157.94,85.4208 +727318,156.38,84.0473 +727319,154.88,82.7045 +727320,153.44,81.3895 +727321,156.56,85.4764 +727322,155.03,84.0819 +727323,153.56,82.7178 +727324,152.15,81.3812 +727325,155.19,85.5308 +727326,153.69,84.1161 +727327,152.25,82.7314 +727328,150.86,81.374 +727329,153.81,85.5842 +727330,152.34,84.1499 +727331,150.93,82.7454 +727332,149.58,81.3678 +727333,152.43,85.6365 +727334,150.99,84.1834 +727335,149.62,82.7598 +727336,148.29,81.3627 +727337,151.05,85.6876 +727338,149.65,84.2166 +727339,148.3,82.7745 +727340,147.01,81.3587 +727341,149.67,85.7376 +727342,148.3,84.2493 +727343,146.99,82.7896 +727344,145.72,81.3558 +727345,148.29,85.7864 +727346,146.95,84.2817 +727347,145.67,82.805 +727348,144.44,81.354 +727349,146.91,85.8341 +727350,145.6,84.3136 +727351,144.36,82.8209 +727352,143.16,81.3533 +727353,145.53,85.8805 +727354,144.26,84.3452 +727355,143.04,82.8371 +727356,141.88,81.3538 +727357,144.14,85.9258 +727358,142.91,84.3764 +727359,141.73,82.8537 +727360,140.6,81.3555 +727361,142.76,85.9699 +727362,141.56,84.4072 +727363,140.41,82.8707 +727364,139.32,81.3583 +727365,141.37,86.0128 +727366,140.21,84.4376 +727367,139.1,82.8881 +727368,138.04,81.3623 +727369,139.99,86.0544 +727370,138.86,84.4675 +727371,137.79,82.906 +727372,136.76,81.3676 +727373,138.6,86.0948 +727374,137.51,84.4971 +727375,136.47,82.9242 +727376,135.48,81.374 +727377,137.21,86.1339 +727378,136.16,84.5263 +727379,135.16,82.9428 +727380,134.21,81.3816 +727381,135.82,86.1718 +727382,134.81,84.555 +727383,133.85,82.9618 +727384,132.93,81.3905 +727385,134.43,86.2085 +727386,133.46,84.5833 +727387,132.53,82.9813 +727388,131.66,81.4007 +727389,133.04,86.2438 +727390,132.11,84.6112 +727391,131.22,83.0011 +727392,130.38,81.412 +727393,131.65,86.2779 +727394,130.75,84.6387 +727395,129.91,83.0214 +727396,129.11,81.4247 +727397,130.26,86.3108 +727398,129.4,84.6657 +727399,128.6,83.0421 +727400,127.83,81.4386 +727401,128.87,86.3423 +727402,128.05,84.6923 +727403,127.28,83.0632 +727404,126.56,81.4537 +727405,127.47,86.3726 +727406,126.7,84.7185 +727407,125.97,83.0848 +727408,125.29,81.4702 +727409,126.08,86.4015 +727410,125.35,84.7442 +727411,124.66,83.1067 +727412,124.02,81.4879 +727413,124.69,86.4292 +727414,124,84.7696 +727415,123.35,83.1291 +727416,122.74,81.5069 +727417,123.29,86.4556 +727418,122.64,84.7944 +727419,122.04,83.152 +727420,121.47,81.5272 +727421,121.9,86.4807 +727422,121.29,84.8189 +727423,120.73,83.1752 +727424,120.2,81.5488 +727425,120.5,86.5044 +727426,119.94,84.8429 +727427,119.42,83.1989 +727428,118.93,81.5717 +727429,119.11,86.5269 +727430,118.58,84.8665 +727431,118.1,83.223 +727432,117.66,81.596 +727433,117.71,86.5481 +727434,117.23,84.8896 +727435,116.79,83.2476 +727436,116.39,81.6215 +727437,116.31,86.568 +727438,115.88,84.9123 +727439,115.48,83.2725 +727440,115.12,81.6483 +727441,114.92,86.5866 +727442,114.52,84.9346 +727443,114.17,83.2979 +727444,113.85,81.6764 +727445,113.52,86.6039 +727446,113.17,84.9564 +727447,112.86,83.3238 +727448,112.58,81.7058 +727449,112.12,86.62 +727450,111.82,84.9778 +727451,111.55,83.35 +727452,111.32,81.7365 +727453,110.73,86.6347 +727454,110.46,84.9988 +727455,110.24,83.3767 +727456,110.05,81.7685 +727457,109.33,86.6482 +727458,109.11,85.0194 +727459,108.93,83.4039 +727460,108.78,81.8018 +727461,107.93,86.6604 +727462,107.76,85.0395 +727463,107.62,83.4314 +727464,107.51,81.8364 +727465,106.53,86.6713 +727466,106.4,85.0592 +727467,106.3,83.4594 +727468,106.24,81.8723 +727469,105.14,86.681 +727470,105.05,85.0784 +727471,104.99,83.4878 +727472,104.97,81.9095 +727473,103.74,86.6894 +727474,103.69,85.0972 +727475,103.68,83.5166 +727476,103.7,81.9479 +727477,102.34,86.6966 +727478,102.34,85.1157 +727479,102.37,83.5458 +727480,102.43,81.9876 +727481,100.94,86.7025 +727482,100.99,85.1336 +727483,101.06,83.5755 +727484,101.17,82.0286 +727485,99.545,86.7072 +727486,99.631,85.1512 +727487,99.748,83.6055 +727488,99.896,82.0708 +727489,98.148,86.7107 +727490,98.277,85.1684 +727491,98.437,83.636 +727492,98.627,82.1143 +727493,96.751,86.713 +727494,96.923,85.1851 +727495,97.126,83.6668 +727496,97.357,82.159 +727497,95.354,86.7141 +727498,95.569,85.2015 +727499,95.814,83.6981 +727500,96.088,82.205 +727501,93.957,86.714 +727502,94.215,85.2174 +727503,94.502,83.7298 +727504,94.818,82.2521 +727505,92.561,86.7128 +727506,92.861,85.233 +727507,93.19,83.7619 +727508,93.548,82.3005 +727509,91.165,86.7103 +727510,91.507,85.2481 +727511,91.878,83.7943 +727512,92.277,82.3501 +727513,89.769,86.7068 +727514,90.154,85.2629 +727515,90.566,83.8272 +727516,91.006,82.4008 +727517,88.374,86.7021 +727518,88.8,85.2772 +727519,89.254,83.8604 +727520,89.735,82.4528 +727521,86.979,86.6962 +727522,87.447,85.2912 +727523,87.942,83.894 +727524,88.463,82.5058 +727525,85.584,86.6893 +727526,86.093,85.3048 +727527,86.629,83.928 +727528,87.191,82.5601 +727529,84.19,86.6813 +727530,84.74,85.3181 +727531,85.316,83.9623 +727532,85.919,82.6154 +727533,82.797,86.6722 +727534,83.387,85.3309 +727535,84.003,83.997 +727536,84.646,82.6719 +727537,81.404,86.6621 +727538,82.034,85.3434 +727539,82.69,84.0321 +727540,83.372,82.7294 +727541,80.011,86.6509 +727542,80.681,85.3556 +727543,81.376,84.0675 +727544,82.098,82.7881 +727545,78.619,86.6388 +727546,79.328,85.3674 +727547,80.063,84.1032 +727548,80.823,82.8478 +727549,77.228,86.6256 +727550,77.975,85.3789 +727551,78.749,84.1393 +727552,79.548,82.9085 +727553,75.837,86.6114 +727554,76.623,85.39 +727555,77.434,84.1758 +727556,78.271,82.9703 +727557,74.447,86.5963 +727558,75.271,85.4008 +727559,76.12,84.2125 +727560,76.995,83.033 +727561,73.058,86.5802 +727562,73.919,85.4113 +727563,74.805,84.2496 +727564,75.717,83.0968 +727565,71.67,86.5632 +727566,72.567,85.4214 +727567,73.49,84.287 +727568,74.439,83.1615 +727569,70.282,86.5453 +727570,71.216,85.4312 +727571,72.175,84.3247 +727572,73.16,83.2272 +727573,68.895,86.5265 +727574,69.864,85.4408 +727575,70.859,84.3626 +727576,71.88,83.2938 +727577,67.509,86.5069 +727578,68.513,85.45 +727579,69.544,84.4009 +727580,70.6,83.3613 +727581,66.123,86.4864 +727582,67.162,85.459 +727583,68.227,84.4395 +727584,69.318,83.4296 +727585,64.739,86.4651 +727586,65.812,85.4676 +727587,66.911,84.4783 +727588,68.036,83.4988 +727589,63.355,86.443 +727590,64.461,85.476 +727591,65.594,84.5174 +727592,66.753,83.5689 +727593,61.972,86.4201 +727594,63.111,85.4841 +727595,64.277,84.5568 +727596,65.469,83.6398 +727597,60.591,86.3965 +727598,61.762,85.492 +727599,62.959,84.5964 +727600,64.183,83.7114 +727601,59.21,86.3722 +727602,60.412,85.4996 +727603,61.641,84.6363 +727604,62.897,83.7838 +727605,57.83,86.3471 +727606,59.063,85.507 +727607,60.323,84.6763 +727608,61.61,83.857 +727609,56.451,86.3214 +727610,57.714,85.5141 +727611,59.004,84.7167 +727612,60.322,83.9308 +727613,55.073,86.295 +727614,56.365,85.521 +727615,57.685,84.7572 +727616,59.033,84.0053 +727617,53.697,86.2681 +727618,55.017,85.5277 +727619,56.366,84.7979 +727620,57.743,84.0805 +727621,52.321,86.2405 +727622,53.669,85.5342 +727623,55.046,84.8389 +727624,56.452,84.1563 +727625,50.946,86.2123 +727626,52.322,85.5405 +727627,53.726,84.88 +727628,55.159,84.2328 +727629,49.573,86.1836 +727630,50.974,85.5466 +727631,52.405,84.9213 +727632,53.866,84.3097 +727633,48.2,86.1544 +727634,49.627,85.5525 +727635,51.084,84.9628 +727636,52.571,84.3873 +727637,46.829,86.1247 +727638,48.281,85.5582 +727639,49.763,85.0045 +727640,51.275,84.4653 +727641,45.459,86.0945 +727642,46.935,85.5638 +727643,48.441,85.0463 +727644,49.978,84.5439 +727645,44.09,86.0638 +727646,45.589,85.5692 +727647,47.118,85.0882 +727648,48.68,84.6229 +727649,42.722,86.0328 +727650,44.243,85.5745 +727651,45.796,85.1303 +727652,47.38,84.7023 +727653,41.356,86.0014 +727654,42.898,85.5796 +727655,44.472,85.1725 +727656,46.08,84.7821 +727657,39.99,85.9696 +727658,41.553,85.5846 +727659,43.149,85.2149 +727660,44.778,84.8623 +727661,38.626,85.9375 +727662,40.209,85.5895 +727663,41.825,85.2573 +727664,43.474,84.9429 +727665,37.263,85.9051 +727666,38.865,85.5943 +727667,40.5,85.2998 +727668,42.17,85.0237 +727669,35.902,85.8724 +727670,37.521,85.599 +727671,39.175,85.3424 +727672,40.864,85.1048 +727673,34.542,85.8394 +727674,36.178,85.6035 +727675,37.849,85.3851 +727676,39.557,85.1862 +727677,33.183,85.8063 +727678,34.835,85.608 +727679,36.523,85.4279 +727680,38.248,85.2678 +727681,31.825,85.7729 +727682,33.493,85.6125 +727683,35.197,85.4707 +727684,36.938,85.3496 +727685,30.468,85.7394 +727686,32.151,85.6169 +727687,33.87,85.5135 +727688,35.627,85.4315 +727689,29.113,85.7058 +727690,30.809,85.6212 +727691,32.542,85.5564 +727692,34.314,85.5136 +727693,27.759,85.6721 +727694,29.468,85.6255 +727695,31.214,85.5993 +727696,33,85.5957 +727697,26.407,85.6383 +727698,28.127,85.6297 +727699,29.886,85.6422 +727700,31.685,85.678 +727701,25.056,85.6044 +727702,26.787,85.634 +727703,28.557,85.6851 +727704,30.368,85.7602 +727705,23.706,85.5706 +727706,25.447,85.6382 +727707,27.228,85.728 +727708,29.05,85.8425 +727709,22.357,85.5367 +727710,24.107,85.6424 +727711,25.898,85.7709 +727712,27.73,85.9247 +727713,21.01,85.5029 +727714,22.768,85.6467 +727715,24.567,85.8138 +727716,26.409,86.0068 +727717,19.664,85.4692 +727718,21.43,85.6509 +727719,23.236,85.8566 +727720,25.087,86.0889 +727721,18.32,85.4355 +727722,20.091,85.6552 +727723,21.905,85.8994 +727724,23.763,86.1708 +727725,16.977,85.402 +727726,18.754,85.6595 +727727,20.573,85.9421 +727728,22.437,86.2526 +727729,15.635,85.3687 +727730,17.416,85.6639 +727731,19.24,85.9848 +727732,21.111,86.3341 +727733,14.295,85.3356 +727734,16.079,85.6683 +727735,17.907,86.0274 +727736,19.782,86.4155 +727737,12.956,85.3026 +727738,14.743,85.6728 +727739,16.574,86.0698 +727740,18.452,86.4966 +727741,11.618,85.2699 +727742,13.407,85.6774 +727743,15.24,86.1122 +727744,17.121,86.5774 +727745,10.282,85.2375 +727746,12.071,85.6821 +727747,13.905,86.1545 +727748,15.788,86.6579 +727749,8.947,85.2054 +727750,10.736,85.6868 +727751,12.57,86.1967 +727752,14.454,86.738 +727753,7.6135,85.1737 +727754,9.401,85.6917 +727755,11.234,86.2387 +727756,13.119,86.8178 +727757,6.2813,85.1423 +727758,8.0666,85.6967 +727759,9.8983,86.2806 +727760,11.781,86.8972 +727761,4.9505,85.1112 +727762,6.7327,85.7018 +727763,8.5616,86.3223 +727764,10.443,86.9761 +727765,3.621,85.0806 +727766,5.3992,85.707 +727767,7.2245,86.3639 +727768,9.1027,87.0545 +727769,2.2928,85.0505 +727770,4.0661,85.7124 +727771,5.8869,86.4053 +727772,7.7612,87.1325 +727773,0.96605,85.0208 +727774,2.7334,85.718 +727775,4.5487,86.4465 +727776,6.4181,87.2099 +727777,359.64,84.9916 +727778,1.4012,85.7237 +727779,3.2101,86.4875 +727780,5.0737,87.2868 +727781,358.32,84.9629 +727782,0.069353,85.7295 +727783,1.8709,86.5284 +727784,3.7277,87.363 +727785,356.99,84.9348 +727786,358.74,85.7356 +727787,0.53127,86.569 +727788,2.3804,87.4387 +727789,355.67,84.9073 +727790,357.41,85.7419 +727791,359.19,86.6094 +727792,1.0316,87.5137 +727793,354.35,84.8804 +727794,356.08,85.7483 +727795,357.85,86.6496 +727796,359.68,87.588 +727797,353.03,84.8541 +727798,354.75,85.755 +727799,356.51,86.6895 +727800,358.33,87.6617 +727801,351.72,84.8285 +727802,353.42,85.7619 +727803,355.17,86.7292 +727804,356.98,87.7346 +727805,350.4,84.8035 +727806,352.09,85.769 +727807,353.83,86.7687 +727808,355.62,87.8067 +727809,349.08,84.7793 +727810,350.76,85.7763 +727811,352.48,86.8079 +727812,354.27,87.8781 +727813,347.77,84.7558 +727814,349.43,85.7839 +727815,351.14,86.8468 +727816,352.91,87.9487 +727817,346.46,84.7331 +727818,348.1,85.7917 +727819,349.8,86.8854 +727820,351.55,88.0184 +727821,345.15,84.7111 +727822,346.77,85.7998 +727823,348.45,86.9238 +727824,350.19,88.0872 +727825,343.84,84.69 +727826,345.45,85.8081 +727827,347.11,86.9618 +727828,348.83,88.1552 +727829,342.53,84.6697 +727830,344.12,85.8168 +727831,345.76,86.9995 +727832,347.47,88.2223 +727833,341.22,84.6502 +727834,342.79,85.8257 +727835,344.42,87.037 +727836,346.1,88.2884 +727837,339.91,84.6316 +727838,341.47,85.8349 +727839,343.07,87.0741 +727840,344.74,88.3536 +727841,338.61,84.6139 +727842,340.14,85.8444 +727843,341.72,87.1109 +727844,343.37,88.4178 +727845,337.3,84.5972 +727846,338.81,85.8542 +727847,340.38,87.1473 +727848,342,88.481 +727849,336,84.5813 +727850,337.49,85.8643 +727851,339.03,87.1834 +727852,340.63,88.5431 +727853,334.7,84.5665 +727854,336.16,85.8747 +727855,337.68,87.2192 +727856,339.26,88.6043 +727857,333.4,84.5526 +727858,334.84,85.8855 +727859,336.34,87.2546 +727860,337.89,88.6643 +727861,332.1,84.5397 +727862,333.52,85.8966 +727863,334.99,87.2896 +727864,336.52,88.7233 +727865,330.8,84.5279 +727866,332.19,85.908 +727867,333.64,87.3243 +727868,335.14,88.7811 +727869,329.5,84.5171 +727870,330.87,85.9198 +727871,332.29,87.3586 +727872,333.77,88.8379 +727873,328.2,84.5073 +727874,329.54,85.9319 +727875,330.94,87.3925 +727876,332.39,88.8935 +727877,326.91,84.4986 +727878,328.22,85.9444 +727879,329.59,87.426 +727880,331.01,88.9479 +727881,325.61,84.491 +727882,326.9,85.9572 +727883,328.24,87.4591 +727884,329.64,89.00114 +727885,324.32,84.4846 +727886,325.58,85.9704 +727887,326.89,87.4918 +727888,328.26,89.05319 +727889,323.02,84.4792 +727890,324.25,85.984 +727891,325.54,87.5241 +727892,326.88,89.10403 +727893,321.73,84.475 +727894,322.93,85.9979 +727895,324.18,87.556 +727896,325.49,89.15365 +727897,320.44,84.472 +727898,321.61,86.0123 +727899,322.83,87.5875 +727900,324.11,89.20202 +727901,319.15,84.4702 +727902,320.29,86.027 +727903,321.48,87.6186 +727904,322.73,89.24914 +727905,317.86,84.4695 +727906,318.97,86.0421 +727907,320.13,87.6492 +727908,321.34,89.29499 +727909,316.57,84.47 +727910,317.65,86.0576 +727911,318.77,87.6794 +727912,319.96,89.33956 +727913,315.28,84.4718 +727914,316.33,86.0735 +727915,317.42,87.7092 +727916,318.57,89.38284 +727917,313.99,84.4747 +727918,315.01,86.0898 +727919,316.07,87.7386 +727920,317.18,89.42482 +727921,312.71,84.4789 +727922,313.69,86.1066 +727923,314.71,87.7675 +727924,315.8,89.46548 +727925,311.42,84.4844 +727926,312.37,86.1237 +727927,313.36,87.7959 +727928,314.41,89.50482 +727929,310.13,84.4911 +727930,311.05,86.1412 +727931,312,87.8239 +727932,313.02,89.54283 +727933,308.85,84.4991 +727934,309.73,86.1592 +727935,310.65,87.8515 +727936,311.63,89.5795 +727937,307.57,84.5084 +727938,308.41,86.1776 +727939,309.29,87.8786 +727940,310.23,89.61481 +727941,306.28,84.5189 +727942,307.09,86.1964 +727943,307.94,87.9052 +727944,308.84,89.64878 +727945,305,84.5308 +727946,305.77,86.2156 +727947,306.58,87.9314 +727948,307.45,89.68138 +727949,303.72,84.5439 +727950,304.45,86.2353 +727951,305.23,87.9571 +727952,306.06,89.71262 +727953,302.43,84.5584 +727954,303.13,86.2554 +727955,303.87,87.9824 +727956,304.66,89.74249 +727957,301.15,84.5741 +727958,301.81,86.2759 +727959,302.52,88.0072 +727960,303.27,89.77098 +727961,299.87,84.5912 +727962,300.49,86.2968 +727963,301.16,88.0315 +727964,301.87,89.7981 +727965,298.59,84.6096 +727966,299.18,86.3182 +727967,299.8,88.0554 +727968,300.48,89.82384 +727969,297.31,84.6294 +727970,297.86,86.34 +727971,298.45,88.0788 +727972,299.08,89.84819 +727973,296.03,84.6504 +727974,296.54,86.3623 +727975,297.09,88.1017 +727976,297.68,89.87116 +727977,294.75,84.6729 +727978,295.22,86.3849 +727979,295.73,88.1241 +727980,296.29,89.89275 +727981,293.47,84.6966 +727982,293.9,86.4081 +727983,294.37,88.1461 +727984,294.89,89.912959 +727985,292.19,84.7217 +727986,292.58,86.4316 +727987,293.02,88.1677 +727988,293.49,89.931785 +727989,290.91,84.7481 +727990,291.27,86.4556 +727991,291.66,88.1887 +727992,292.09,89.949232 +727993,289.63,84.7758 +727994,289.95,86.48 +727995,290.3,88.2093 +727996,290.7,89.965303 +727997,288.35,84.8049 +727998,288.63,86.5049 +727999,288.94,88.2294 +728000,289.3,89.980001 +728001,287.08,84.8353 +728002,287.31,86.5302 +728003,287.59,88.249 +728004,287.9,89.9933296 +728005,285.8,84.8671 +728006,286,86.5559 +728007,286.23,88.2682 +728008,286.5,90.0052942 +728009,284.52,84.9001 +728010,284.68,86.5821 +728011,284.87,88.2869 +728012,285.1,90.0159 +728013,283.24,84.9345 +728014,283.36,86.6087 +728015,283.51,88.3052 +728016,283.7,90.025154 +728017,281.96,84.9702 +728018,282.04,86.6357 +728019,282.15,88.323 +728020,282.3,90.033062 +728021,280.68,85.0073 +728022,280.72,86.6631 +728023,280.8,88.3403 +728024,280.9,90.039632 +728025,279.4,85.0456 +728026,279.41,86.691 +728027,279.44,88.3572 +728028,279.5,90.044872 +728029,278.13,85.0852 +728030,278.09,86.7192 +728031,278.08,88.3736 +728032,278.1,90.048791 +728033,276.85,85.1262 +728034,276.77,86.7479 +728035,276.72,88.3895 +728036,276.7,90.051399 +728037,275.57,85.1684 +728038,275.45,86.7771 +728039,275.36,88.4051 +728040,275.31,90.052706 +728041,274.29,85.2119 +728042,274.13,86.8066 +728043,274,88.4201 +728044,273.91,90.052723 +728045,273.01,85.2566 +728046,272.81,86.8365 +728047,272.65,88.4348 +728048,272.51,90.051462 +728049,271.73,85.3027 +728050,271.5,86.8669 +728051,271.29,88.449 +728052,271.11,90.048934 +728053,270.45,85.3499 +728054,270.18,86.8976 +728055,269.93,88.4627 +728056,269.71,90.045153 +728057,269.17,85.3984 +728058,268.86,86.9287 +728059,268.57,88.4761 +728060,268.31,90.040132 +728061,267.89,85.4481 +728062,267.54,86.9603 +728063,267.21,88.489 +728064,266.91,90.033885 +728065,266.61,85.4991 +728066,266.22,86.9922 +728067,265.85,88.5014 +728068,265.52,90.026426 +728069,265.33,85.5512 +728070,264.9,87.0245 +728071,264.5,88.5135 +728072,264.12,90.017772 +728073,264.05,85.6045 +728074,263.58,87.0572 +728075,263.14,88.5252 +728076,262.72,90.0079375 +728077,262.77,85.659 +728078,262.26,87.0902 +728079,261.78,88.5364 +728080,261.32,89.9969393 +728081,261.49,85.7146 +728082,260.94,87.1236 +728083,260.42,88.5473 +728084,259.93,89.984794 +728085,260.2,85.7714 +728086,259.62,87.1574 +728087,259.07,88.5577 +728088,258.53,89.97152 +728089,258.92,85.8293 +728090,258.3,87.1915 +728091,257.71,88.5678 +728092,257.14,89.957135 +728093,257.64,85.8883 +728094,256.98,87.226 +728095,256.35,88.5775 +728096,255.74,89.941658 +728097,256.35,85.9484 +728098,255.66,87.2609 +728099,254.99,88.5868 +728100,254.35,89.925108 +728101,255.07,86.0095 +728102,254.34,87.296 +728103,253.64,88.5957 +728104,252.95,89.907504 +728105,253.78,86.0717 +728106,253.02,87.3315 +728107,252.28,88.6043 +728108,251.56,89.88887 +728109,252.5,86.1349 +728110,251.7,87.3673 +728111,250.92,88.6125 +728112,250.17,89.86922 +728113,251.21,86.1991 +728114,250.38,87.4035 +728115,249.57,88.6204 +728116,248.78,89.84858 +728117,249.92,86.2644 +728118,249.06,87.4399 +728119,248.21,88.6279 +728120,247.38,89.82697 +728121,248.63,86.3305 +728122,247.73,87.4767 +728123,246.85,88.6351 +728124,245.99,89.80441 +728125,247.35,86.3977 +728126,246.41,87.5137 +728127,245.5,88.6419 +728128,244.6,89.78093 +728129,246.06,86.4657 +728130,245.09,87.5511 +728131,244.14,88.6485 +728132,243.21,89.75654 +728133,244.77,86.5346 +728134,243.77,87.5887 +728135,242.79,88.6547 +728136,241.83,89.73128 +728137,243.47,86.6045 +728138,242.44,87.6266 +728139,241.43,88.6606 +728140,240.44,89.70516 +728141,242.18,86.6751 +728142,241.12,87.6647 +728143,240.08,88.6662 +728144,239.05,89.67821 +728145,240.89,86.7466 +728146,239.8,87.7031 +728147,238.72,88.6715 +728148,237.67,89.65046 +728149,239.59,86.8189 +728150,238.47,87.7418 +728151,237.37,88.6766 +728152,236.28,89.62192 +728153,238.3,86.892 +728154,237.15,87.7806 +728155,236.01,88.6814 +728156,234.9,89.59263 +728157,237,86.9658 +728158,235.82,87.8198 +728159,234.66,88.6859 +728160,233.51,89.56262 +728161,235.71,87.0403 +728162,234.5,87.8591 +728163,233.3,88.6901 +728164,232.13,89.53189 +728165,234.41,87.1156 +728166,233.17,87.8986 +728167,231.95,88.6941 +728168,230.75,89.50049 +728169,233.11,87.1915 +728170,231.84,87.9384 +728171,230.6,88.6979 +728172,229.37,89.46845 +728173,231.81,87.268 +728174,230.52,87.9783 +728175,229.25,88.7014 +728176,227.99,89.43577 +728177,230.51,87.3452 +728178,229.19,88.0185 +728179,227.89,88.7047 +728180,226.61,89.4025 +728181,229.21,87.4229 +728182,227.86,88.0588 +728183,226.54,88.7078 +728184,225.24,89.36867 +728185,227.91,87.5012 +728186,226.54,88.0992 +728187,225.19,88.7107 +728188,223.86,89.33429 +728189,226.6,87.5801 +728190,225.21,88.1398 +728191,223.84,88.7135 +728192,222.49,89.2994 +728193,225.3,87.6594 +728194,223.88,88.1806 +728195,222.49,88.716 +728196,221.11,89.26403 +728197,223.99,87.7392 +728198,222.55,88.2215 +728199,221.13,88.7183 +728200,219.74,89.2282 +728201,222.68,87.8194 +728202,221.22,88.2625 +728203,219.78,88.7205 +728204,218.37,89.19195 +728205,221.37,87.9 +728206,219.89,88.3036 +728207,218.43,88.7226 +728208,217,89.1553 +728209,220.06,87.9811 +728210,218.56,88.3449 +728211,217.08,88.7245 +728212,215.63,89.11827 +728213,218.75,88.0624 +728214,217.23,88.3862 +728215,215.73,88.7262 +728216,214.26,89.08092 +728217,217.44,88.1441 +728218,215.9,88.4276 +728219,214.39,88.7279 +728220,212.89,89.04325 +728221,216.13,88.2261 +728222,214.57,88.4691 +728223,213.04,88.7294 +728224,211.53,89.0053 +728225,214.81,88.3083 +728226,213.24,88.5107 +728227,211.69,88.7308 +728228,210.16,88.9671 +728229,213.5,88.3907 +728230,211.91,88.5523 +728231,210.34,88.7321 +728232,208.8,88.9287 +728233,212.18,88.4733 +728234,210.57,88.5939 +728235,208.99,88.7334 +728236,207.44,88.8901 +728237,210.86,88.5561 +728238,209.24,88.6356 +728239,207.65,88.7346 +728240,206.07,88.8513 +728241,209.54,88.639 +728242,207.91,88.6773 +728243,206.3,88.7357 +728244,204.71,88.8124 +728245,208.22,88.7219 +728246,206.57,88.719 +728247,204.95,88.7367 +728248,203.36,88.7734 +728249,206.9,88.805 +728250,205.24,88.7607 +728251,203.61,88.7377 +728252,202,88.7343 +728253,205.57,88.888 +728254,203.9,88.8024 +728255,202.26,88.7387 +728256,200.64,88.6952 +728257,204.25,88.9711 +728258,202.57,88.8441 +728259,200.91,88.7397 +728260,199.29,88.6561 +728261,202.92,89.05411 +728262,201.23,88.8857 +728263,199.57,88.7406 +728264,197.94,88.617 +728265,201.59,89.13705 +728266,199.9,88.9273 +728267,198.23,88.7415 +728268,196.58,88.5779 +728269,200.27,89.21988 +728270,198.56,88.9688 +728271,196.88,88.7425 +728272,195.23,88.539 +728273,198.94,89.30258 +728274,197.22,89.01027 +728275,195.54,88.7435 +728276,193.88,88.5001 +728277,197.6,89.3851 +728278,195.88,89.05166 +728279,194.19,88.7445 +728280,192.53,88.4614 +728281,196.27,89.46741 +728282,194.54,89.09297 +728283,192.85,88.7455 +728284,191.19,88.4229 +728285,194.94,89.54949 +728286,193.21,89.13417 +728287,191.51,88.7466 +728288,189.84,88.3845 +728289,193.6,89.63129 +728290,191.87,89.17527 +728291,190.17,88.7477 +728292,188.5,88.3464 +728293,192.26,89.71279 +728294,190.53,89.21624 +728295,188.82,88.749 +728296,187.15,88.3085 +728297,190.92,89.79396 +728298,189.19,89.25709 +728299,187.48,88.7503 +728300,185.81,88.271 +728301,189.58,89.87475 +728302,187.85,89.29779 +728303,186.14,88.7517 +728304,184.47,88.2337 +728305,188.24,89.955144 +728306,186.5,89.33835 +728307,184.8,88.7531 +728308,183.13,88.1969 +728309,186.9,90.035104 +728310,185.16,89.37874 +728311,183.46,88.7547 +728312,181.79,88.1603 +728313,185.56,90.1146 +728314,183.82,89.41896 +728315,182.12,88.7565 +728316,180.46,88.1242 +728317,184.21,90.1936 +728318,182.48,89.45899 +728319,180.78,88.7583 +728320,179.12,88.0886 +728321,182.86,90.27206 +728322,181.13,89.49884 +728323,179.44,88.7603 +728324,177.79,88.0533 +728325,181.52,90.34997 +728326,179.79,89.53848 +728327,178.11,88.7624 +728328,176.46,88.0186 +728329,180.17,90.42729 +728330,178.45,89.57791 +728331,176.77,88.7647 +728332,175.12,87.9844 +728333,178.81,90.50398 +728334,177.1,89.61711 +728335,175.43,88.7672 +728336,173.79,87.9508 +728337,177.46,90.58002 +728338,175.76,89.65608 +728339,174.09,88.7698 +728340,172.46,87.9177 +728341,176.11,90.65538 +728342,174.41,89.69481 +728343,172.75,88.7726 +728344,171.14,87.8853 +728345,174.75,90.73003 +728346,173.06,89.73329 +728347,171.42,88.7757 +728348,169.81,87.8534 +728349,173.4,90.80393 +728350,171.72,89.7715 +728351,170.08,88.7789 +728352,168.48,87.8222 +728353,172.04,90.87706 +728354,170.37,89.80944 +728355,168.75,88.7823 +728356,167.16,87.7918 +728357,170.68,90.9494 +728358,169.02,89.8471 +728359,167.41,88.786 +728360,165.84,87.762 +728361,169.32,91.0209 +728362,167.68,89.88448 +728363,166.08,88.7899 +728364,164.52,87.7329 +728365,167.96,91.0915 +728366,166.33,89.921548 +728367,164.74,88.794 +728368,163.2,87.7046 +728369,166.6,91.1613 +728370,164.98,89.958312 +728371,163.41,88.7984 +728372,161.88,87.6771 +728373,165.23,91.2302 +728374,163.63,89.9947596 +728375,162.07,88.803 +728376,160.56,87.6504 +728377,163.87,91.2981 +728378,162.28,90.030881 +728379,160.74,88.8079 +728380,159.24,87.6246 +728381,162.5,91.365 +728382,160.93,90.066669 +728383,159.41,88.8131 +728384,157.92,87.5996 +728385,161.13,91.431 +728386,159.58,90.10211 +728387,158.07,88.8186 +728388,156.61,87.5755 +728389,159.76,91.4959 +728390,158.23,90.13721 +728391,156.74,88.8243 +728392,155.3,87.5522 +728393,158.39,91.5598 +728394,156.88,90.17194 +728395,155.41,88.8303 +728396,153.98,87.53 +728397,157.02,91.6227 +728398,155.52,90.20631 +728399,154.08,88.8367 +728400,152.67,87.5086 +728401,155.65,91.6844 +728402,154.17,90.24031 +728403,152.74,88.8433 +728404,151.36,87.4882 +728405,154.27,91.7451 +728406,152.82,90.27392 +728407,151.41,88.8503 +728408,150.05,87.4689 +728409,152.9,91.8046 +728410,151.47,90.30715 +728411,150.08,88.8576 +728412,148.74,87.4505 +728413,151.52,91.8629 +728414,150.11,90.33998 +728415,148.75,88.8652 +728416,147.43,87.4332 +728417,150.15,91.9201 +728418,148.76,90.3724 +728419,147.42,88.8732 +728420,146.13,87.4169 +728421,148.77,91.9761 +728422,147.4,90.40442 +728423,146.09,88.8815 +728424,144.82,87.4017 +728425,147.39,92.0308 +728426,146.05,90.43602 +728427,144.76,88.8901 +728428,143.52,87.3876 +728429,146.01,92.0844 +728430,144.69,90.46719 +728431,143.43,88.8992 +728432,142.21,87.3746 +728433,144.63,92.1367 +728434,143.34,90.49794 +728435,142.1,88.9085 +728436,140.91,87.3627 +728437,143.24,92.1877 +728438,141.98,90.52826 +728439,140.77,88.9183 +728440,139.61,87.352 +728441,141.86,92.2374 +728442,140.63,90.55813 +728443,139.45,88.9284 +728444,138.31,87.3424 +728445,140.47,92.2858 +728446,139.27,90.58756 +728447,138.12,88.9389 +728448,137.01,87.334 +728449,139.09,92.3329 +728450,137.91,90.61653 +728451,136.79,88.9498 +728452,135.71,87.3268 +728453,137.7,92.3786 +728454,136.56,90.64505 +728455,135.46,88.961 +728456,134.41,87.3208 +728457,136.32,92.4231 +728458,135.2,90.67311 +728459,134.13,88.9727 +728460,133.11,87.316 +728461,134.93,92.4661 +728462,133.84,90.7007 +728463,132.81,88.9847 +728464,131.81,87.3124 +728465,133.54,92.5078 +728466,132.48,90.72783 +728467,131.48,88.9972 +728468,130.51,87.3101 +728469,132.15,92.548 +728470,131.13,90.75447 +728471,130.15,89.01007 +728472,129.22,87.3091 +728473,130.76,92.5869 +728474,129.77,90.78064 +728475,128.82,89.02334 +728476,127.92,87.3093 +728477,129.37,92.6244 +728478,128.41,90.80633 +728479,127.5,89.03703 +728480,126.63,87.3108 +728481,127.97,92.6604 +728482,127.05,90.83153 +728483,126.17,89.05113 +728484,125.33,87.3136 +728485,126.58,92.695 +728486,125.69,90.85625 +728487,124.84,89.06565 +728488,124.04,87.3177 +728489,125.19,92.7282 +728490,124.33,90.88047 +728491,123.52,89.08059 +728492,122.75,87.3231 +728493,123.79,92.7599 +728494,122.97,90.9042 +728495,122.19,89.09596 +728496,121.46,87.3298 +728497,122.4,92.7902 +728498,121.61,90.92743 +728499,120.87,89.11175 +728500,120.16,87.3379 +728501,121,92.819 +728502,120.25,90.95016 +728503,119.54,89.12797 +728504,118.87,87.3472 +728505,119.61,92.8464 +728506,118.89,90.97239 +728507,118.22,89.14462 +728508,117.58,87.358 +728509,118.21,92.8723 +728510,117.53,90.99411 +728511,116.89,89.16171 +728512,116.29,87.37 +728513,116.81,92.8967 +728514,116.17,91.0153 +728515,115.56,89.17923 +728516,115,87.3835 +728517,115.42,92.9196 +728518,114.81,91.0361 +728519,114.24,89.19719 +728520,113.71,87.3982 +728521,114.02,92.9411 +728522,113.44,91.0563 +728523,112.91,89.21558 +728524,112.42,87.4144 +728525,112.62,92.9611 +728526,112.08,91.076 +728527,111.59,89.23441 +728528,111.13,87.4319 +728529,111.22,92.9796 +728530,110.72,91.0952 +728531,110.26,89.25367 +728532,109.84,87.4507 +728533,109.82,92.9966 +728534,109.36,91.1138 +728535,108.94,89.27338 +728536,108.55,87.471 +728537,108.42,93.0122 +728538,108,91.132 +728539,107.61,89.29352 +728540,107.26,87.4926 +728541,107.02,93.0263 +728542,106.64,91.1497 +728543,106.29,89.3141 +728544,105.98,87.5155 +728545,105.62,93.0389 +728546,105.27,91.1669 +728547,104.96,89.33512 +728548,104.69,87.5399 +728549,104.22,93.05 +728550,103.91,91.1835 +728551,103.64,89.35657 +728552,103.4,87.5656 +728553,102.82,93.0597 +728554,102.55,91.1997 +728555,102.31,89.37847 +728556,102.11,87.5926 +728557,101.42,93.0679 +728558,101.19,91.2153 +728559,100.99,89.40079 +728560,100.82,87.6211 +728561,100.02,93.0747 +728562,99.824,91.2304 +728563,99.664,89.42355 +728564,99.535,87.6508 +728565,98.619,93.08 +728566,98.462,91.2451 +728567,98.339,89.44674 +728568,98.247,87.682 +728569,97.218,93.0839 +728570,97.099,91.2592 +728571,97.014,89.47036 +728572,96.959,87.7145 +728573,95.817,93.0863 +728574,95.736,91.2729 +728575,95.689,89.49441 +728576,95.671,87.7483 +728577,94.415,93.0873 +728578,94.374,91.286 +728579,94.364,89.51888 +728580,94.383,87.7835 +728581,93.014,93.0869 +728582,93.011,91.2986 +728583,93.039,89.54377 +728584,93.095,87.82 +728585,91.613,93.0851 +728586,91.648,91.3108 +728587,91.714,89.56909 +728588,91.807,87.8578 +728589,90.212,93.0819 +728590,90.286,91.3225 +728591,90.389,89.59482 +728592,90.519,87.8969 +728593,88.811,93.0774 +728594,88.923,91.3337 +728595,89.063,89.62097 +728596,89.23,87.9374 +728597,87.411,93.0714 +728598,87.56,91.3444 +728599,87.738,89.64752 +728600,87.941,87.9791 +728601,86.01,93.0641 +728602,86.198,91.3546 +728603,86.412,89.67448 +728604,86.652,88.0222 +728605,84.61,93.0555 +728606,84.835,91.3644 +728607,85.087,89.70185 +728608,85.363,88.0665 +728609,83.21,93.0455 +728610,83.472,91.3737 +728611,83.761,89.72961 +728612,84.074,88.1121 +728613,81.81,93.0342 +728614,82.11,91.3825 +728615,82.435,89.75777 +728616,82.784,88.1589 +728617,80.41,93.0217 +728618,80.748,91.3909 +728619,81.109,89.78631 +728620,81.494,88.207 +728621,79.011,93.0078 +728622,79.385,91.3988 +728623,79.783,89.81524 +728624,80.203,88.2563 +728625,77.612,92.9927 +728626,78.023,91.4063 +728627,78.457,89.84455 +728628,78.912,88.3068 +728629,76.214,92.9763 +728630,76.661,91.4133 +728631,77.13,89.87423 +728632,77.62,88.3585 +728633,74.816,92.9587 +728634,75.299,91.4199 +728635,75.803,89.904277 +728636,76.329,88.4114 +728637,73.418,92.9399 +728638,73.937,91.4261 +728639,74.477,89.934689 +728640,75.036,88.4655 +728641,72.021,92.92 +728642,72.575,91.4319 +728643,73.15,89.965458 +728644,73.743,88.5207 +728645,70.624,92.8988 +728646,71.213,91.4372 +728647,71.822,89.9965767 +728648,72.45,88.577 +728649,69.228,92.8765 +728650,69.852,91.4421 +728651,70.495,90.02804 +728652,71.156,88.6345 +728653,67.832,92.853 +728654,68.49,91.4466 +728655,69.167,90.05984 +728656,69.861,88.693 +728657,66.437,92.8285 +728658,67.129,91.4507 +728659,67.839,90.091971 +728660,68.566,88.7527 +728661,65.043,92.8029 +728662,65.768,91.4544 +728663,66.511,90.12443 +728664,67.27,88.8134 +728665,63.649,92.7762 +728666,64.407,91.4577 +728667,65.182,90.1572 +728668,65.974,88.8751 +728669,62.256,92.7485 +728670,63.046,91.4607 +728671,63.854,90.19028 +728672,64.677,88.9378 +728673,60.863,92.7197 +728674,61.686,91.4633 +728675,62.525,90.22366 +728676,63.379,89.00156 +728677,59.472,92.69 +728678,60.326,91.4655 +728679,61.195,90.25734 +728680,62.08,89.06626 +728681,58.081,92.6593 +728682,58.966,91.4674 +728683,59.866,90.2913 +728684,60.781,89.13191 +728685,56.69,92.6276 +728686,57.606,91.4689 +728687,58.536,90.32554 +728688,59.481,89.19849 +728689,55.301,92.5951 +728690,56.246,91.4701 +728691,57.206,90.36005 +728692,58.18,89.26598 +728693,53.912,92.5616 +728694,54.887,91.4709 +728695,55.875,90.39482 +728696,56.878,89.33434 +728697,52.524,92.5273 +728698,53.527,91.4714 +728699,54.545,90.42985 +728700,55.575,89.40355 +728701,51.137,92.4922 +728702,52.169,91.4717 +728703,53.214,90.46511 +728704,54.272,89.47359 +728705,49.751,92.4562 +728706,50.81,91.4716 +728707,51.882,90.50062 +728708,52.968,89.54443 +728709,48.366,92.4195 +728710,49.452,91.4712 +728711,50.551,90.53635 +728712,51.662,89.61605 +728713,46.982,92.382 +728714,48.093,91.4705 +728715,49.219,90.5723 +728716,50.356,89.68842 +728717,45.598,92.3437 +728718,46.736,91.4696 +728719,47.886,90.60845 +728720,49.049,89.76151 +728721,44.216,92.3048 +728722,45.378,91.4684 +728723,46.553,90.64481 +728724,47.741,89.8353 +728725,42.834,92.2652 +728726,44.021,91.4669 +728727,45.22,90.68135 +728728,46.432,89.909753 +728729,41.454,92.225 +728730,42.664,91.4652 +728731,43.887,90.71807 +728732,45.122,89.984844 +728733,40.074,92.1841 +728734,41.307,91.4632 +728735,42.553,90.75497 +728736,43.811,90.060545 +728737,38.696,92.1427 +728738,39.951,91.461 +728739,41.219,90.79202 +728740,42.498,90.13683 +728741,37.318,92.1007 +728742,38.595,91.4586 +728743,39.884,90.82922 +728744,41.185,90.21366 +728745,35.942,92.0582 +728746,37.239,91.456 +728747,38.549,90.86656 +728748,39.871,90.29101 +728749,34.567,92.0152 +728750,35.884,91.4532 +728751,37.214,90.90403 +728752,38.556,90.36885 +728753,33.192,91.9717 +728754,34.529,91.4502 +728755,35.878,90.94162 +728756,37.239,90.44716 +728757,31.819,91.9278 +728758,33.174,91.447 +728759,34.542,90.97931 +728760,35.922,90.52589 +728761,30.447,91.8835 +728762,31.819,91.4436 +728763,33.205,91.0171 +728764,34.603,90.60502 +728765,29.076,91.8388 +728766,30.465,91.4401 +728767,31.868,91.055 +728768,33.283,90.68451 +728769,27.707,91.7938 +728770,29.112,91.4365 +728771,30.531,91.0929 +728772,31.962,90.76434 +728773,26.338,91.7485 +728774,27.758,91.4327 +728775,29.193,91.131 +728776,30.64,90.84448 +728777,24.971,91.7029 +728778,26.405,91.4288 +728779,27.854,91.1691 +728780,29.317,90.92488 +728781,23.604,91.6571 +728782,25.053,91.4247 +728783,26.516,91.2072 +728784,27.992,91.0055 +728785,22.239,91.611 +728786,23.7,91.4206 +728787,25.177,91.2453 +728788,26.666,91.0864 +728789,20.875,91.5648 +728790,22.348,91.4163 +728791,23.837,91.2835 +728792,25.339,91.1674 +728793,19.512,91.5184 +728794,20.997,91.412 +728795,22.497,91.3217 +728796,24.011,91.2485 +728797,18.151,91.4718 +728798,19.646,91.4076 +728799,21.156,91.3599 +728800,22.682,91.3298 +728801,16.79,91.4252 +728802,18.295,91.4031 +728803,19.816,91.3981 +728804,21.351,91.4111 +728805,15.431,91.3786 +728806,16.945,91.3986 +728807,18.474,91.4362 +728808,20.019,91.4925 +728809,14.073,91.3319 +728810,15.595,91.3941 +728811,17.132,91.4743 +728812,18.686,91.5739 +728813,12.717,91.2852 +728814,14.245,91.3895 +728815,15.79,91.5124 +728816,17.352,91.6552 +728817,11.361,91.2385 +728818,12.896,91.3849 +728819,14.448,91.5504 +728820,16.016,91.7365 +728821,10.007,91.192 +728822,11.547,91.3802 +728823,13.104,91.5884 +728824,14.679,91.8177 +728825,8.6537,91.1455 +728826,10.198,91.3756 +728827,11.761,91.6263 +728828,13.341,91.8988 +728829,7.3019,91.0991 +728830,8.8501,91.371 +728831,10.417,91.6641 +728832,12.002,91.9797 +728833,5.9513,91.053 +728834,7.5023,91.3664 +728835,9.0723,91.7018 +728836,10.661,92.0603 +728837,4.602,91.007 +728838,6.155,91.3619 +728839,7.7273,91.7393 +728840,9.319,92.1408 +728841,3.2539,90.96119 +728842,4.808,91.3573 +728843,6.3819,91.7768 +728844,7.9757,92.221 +728845,1.907,90.91568 +728846,3.4614,91.3529 +728847,5.0361,91.8141 +728848,6.6311,92.3009 +728849,0.56135,90.87045 +728850,2.1152,91.3485 +728851,3.6897,91.8513 +728852,5.2852,92.3805 +728853,359.22,90.82554 +728854,0.76944,91.3442 +728855,2.343,91.8883 +728856,3.938,92.4597 +728857,357.87,90.78097 +728858,359.42,91.3399 +728859,0.99573,91.9252 +728860,2.5896,92.5385 +728861,356.53,90.73678 +728862,358.08,91.3358 +728863,359.65,91.9618 +728864,1.2398,92.6168 +728865,355.19,90.693 +728866,356.73,91.3318 +728867,358.3,91.9983 +728868,359.89,92.6947 +728869,353.85,90.64965 +728870,355.39,91.3278 +728871,356.95,92.0346 +728872,358.54,92.7721 +728873,352.51,90.60677 +728874,354.05,91.324 +728875,355.6,92.0707 +728876,357.18,92.849 +728877,351.18,90.56439 +728878,352.7,91.3204 +728879,354.25,92.1066 +728880,355.83,92.9253 +728881,349.84,90.52253 +728882,351.36,91.3169 +728883,352.9,92.1422 +728884,354.47,93.0009 +728885,348.51,90.48122 +728886,350.02,91.3135 +728887,351.55,92.1776 +728888,353.11,93.076 +728889,347.17,90.44049 +728890,348.67,91.3103 +728891,350.2,92.2127 +728892,351.76,93.1504 +728893,345.84,90.40037 +728894,347.33,91.3073 +728895,348.85,92.2476 +728896,350.4,93.2241 +728897,344.51,90.36089 +728898,345.99,91.3044 +728899,347.5,92.2822 +728900,349.03,93.2971 +728901,343.18,90.32207 +728902,344.65,91.3018 +728903,346.15,92.3165 +728904,347.67,93.3693 +728905,341.85,90.28395 +728906,343.31,91.2994 +728907,344.79,92.3505 +728908,346.31,93.4407 +728909,340.52,90.24654 +728910,341.97,91.2971 +728911,343.44,92.3843 +728912,344.94,93.5113 +728913,339.19,90.20987 +728914,340.63,91.2951 +728915,342.09,92.4177 +728916,343.58,93.5811 +728917,337.87,90.17398 +728918,339.29,91.2934 +728919,340.73,92.4508 +728920,342.21,93.65 +728921,336.54,90.13889 +728922,337.95,91.2918 +728923,339.38,92.4835 +728924,340.84,93.718 +728925,335.22,90.10461 +728926,336.61,91.2905 +728927,338.02,92.516 +728928,339.47,93.785 +728929,333.9,90.071184 +728930,335.27,91.2895 +728931,336.67,92.548 +728932,338.1,93.8511 +728933,332.58,90.038627 +728934,333.93,91.2887 +728935,335.31,92.5798 +728936,336.73,93.9162 +728937,331.26,90.0069641 +728938,332.59,91.2882 +728939,333.96,92.6111 +728940,335.36,93.9802 +728941,329.94,89.97622 +728942,331.26,91.288 +728943,332.6,92.6421 +728944,333.98,94.0432 +728945,328.62,89.946417 +728946,329.92,91.2881 +728947,331.25,92.6727 +728948,332.61,94.1052 +728949,327.3,89.917578 +728950,328.58,91.2884 +728951,329.89,92.7029 +728952,331.23,94.166 +728953,325.99,89.88973 +728954,327.24,91.2891 +728955,328.53,92.7327 +728956,329.85,94.2257 +728957,324.67,89.86288 +728958,325.91,91.2901 +728959,327.17,92.7621 +728960,328.47,94.2843 +728961,323.36,89.83706 +728962,324.57,91.2914 +728963,325.82,92.7911 +728964,327.09,94.3417 +728965,322.04,89.8123 +728966,323.23,91.293 +728967,324.46,92.8197 +728968,325.71,94.3979 +728969,320.73,89.7886 +728970,321.9,91.295 +728971,323.1,92.8478 +728972,324.33,94.4529 +728973,319.42,89.76599 +728974,320.56,91.2973 +728975,321.74,92.8755 +728976,322.95,94.5066 +728977,318.11,89.74449 +728978,319.23,91.2999 +728979,320.38,92.9027 +728980,321.57,94.5591 +728981,316.8,89.72412 +728982,317.89,91.3029 +728983,319.02,92.9295 +728984,320.18,94.6103 +728985,315.49,89.70489 +728986,316.56,91.3062 +728987,317.66,92.9559 +728988,318.8,94.6601 +728989,314.18,89.68683 +728990,315.22,91.31 +728991,316.3,92.9818 +728992,317.41,94.7087 +728993,312.87,89.66994 +728994,313.89,91.314 +728995,314.94,93.0072 +728996,316.02,94.7559 +728997,311.57,89.65425 +728998,312.56,91.3185 +728999,313.58,93.0321 +729000,314.63,94.8017 +729001,310.26,89.63977 +729002,311.22,91.3233 +729003,312.21,93.0566 +729004,313.24,94.8462 +729005,308.95,89.62651 +729006,309.89,91.3285 +729007,310.85,93.0805 +729008,311.85,94.8893 +729009,307.65,89.6145 +729010,308.55,91.3342 +729011,309.49,93.104 +729012,310.46,94.9309 +729013,306.35,89.60374 +729014,307.22,91.3402 +729015,308.13,93.127 +729016,309.07,94.9712 +729017,305.04,89.59424 +729018,305.89,91.3466 +729019,306.77,93.1495 +729020,307.68,95.0099 +729021,303.74,89.58603 +729022,304.56,91.3534 +729023,305.4,93.1714 +729024,306.29,95.0473 +729025,302.44,89.57911 +729026,303.22,91.3606 +729027,304.04,93.1929 +729028,304.89,95.0831 +729029,301.13,89.57349 +729030,301.89,91.3682 +729031,302.68,93.2138 +729032,303.5,95.1175 +729033,299.83,89.56918 +729034,300.56,91.3762 +729035,301.31,93.2343 +729036,302.1,95.1504 +729037,298.53,89.5662 +729038,299.23,91.3847 +729039,299.95,93.2542 +729040,300.71,95.1818 +729041,297.23,89.56455 +729042,297.89,91.3936 +729043,298.59,93.2735 +729044,299.31,95.2117 +729045,295.93,89.56424 +729046,296.56,91.4029 +729047,297.22,93.2924 +729048,297.92,95.24 +729049,294.63,89.56529 +729050,295.23,91.4126 +729051,295.86,93.3107 +729052,296.52,95.2668 +729053,293.34,89.56769 +729054,293.9,91.4227 +729055,294.49,93.3285 +729056,295.12,95.2921 +729057,292.04,89.57145 +729058,292.57,91.4333 +729059,293.13,93.3458 +729060,293.72,95.3159 +729061,290.74,89.57658 +729062,291.24,91.4443 +729063,291.76,93.3625 +729064,292.32,95.3381 +729065,289.44,89.58309 +729066,289.91,91.4558 +729067,290.4,93.3786 +729068,290.92,95.3587 +729069,288.14,89.59098 +729070,288.57,91.4676 +729071,289.03,93.3943 +729072,289.52,95.3778 +729073,286.85,89.60025 +729074,287.24,91.48 +729075,287.67,93.4094 +729076,288.12,95.3953 +729077,285.55,89.61091 +729078,285.91,91.4927 +729079,286.3,93.4239 +729080,286.72,95.4113 +729081,284.25,89.62295 +729082,284.58,91.5059 +729083,284.94,93.4379 +729084,285.32,95.4257 +729085,282.96,89.63639 +729086,283.25,91.5195 +729087,283.57,93.4514 +729088,283.92,95.4385 +729089,281.66,89.65122 +729090,281.92,91.5336 +729091,282.2,93.4643 +729092,282.52,95.4497 +729093,280.36,89.66744 +729094,280.59,91.5481 +729095,280.84,93.4767 +729096,281.12,95.4594 +729097,279.07,89.68506 +729098,279.26,91.563 +729099,279.47,93.4885 +729100,279.72,95.4676 +729101,277.77,89.70407 +729102,277.93,91.5784 +729103,278.11,93.4998 +729104,278.32,95.4742 +729105,276.47,89.72446 +729106,276.6,91.5942 +729107,276.74,93.5106 +729108,276.91,95.4792 +729109,275.18,89.74625 +729110,275.26,91.6105 +729111,275.37,93.5208 +729112,275.51,95.4827 +729113,273.88,89.76942 +729114,273.93,91.6272 +729115,274.01,93.5304 +729116,274.11,95.4846 +729117,272.59,89.79397 +729118,272.6,91.6443 +729119,272.64,93.5395 +729120,272.71,95.485 +729121,271.29,89.81989 +729122,271.27,91.6619 +729123,271.28,93.5481 +729124,271.31,95.4839 +729125,269.99,89.84719 +729126,269.94,91.6798 +729127,269.91,93.5562 +729128,269.9,95.4812 +729129,268.7,89.87585 +729130,268.61,91.6982 +729131,268.54,93.5637 +729132,268.5,95.477 +729133,267.4,89.905873 +729134,267.28,91.7171 +729135,267.18,93.5707 +729136,267.1,95.4713 +729137,266.11,89.937245 +729138,265.95,91.7363 +729139,265.81,93.5772 +729140,265.7,95.4642 +729141,264.81,89.969961 +729142,264.62,91.756 +729143,264.44,93.5831 +729144,264.29,95.4555 +729145,263.51,90.0040116 +729146,263.29,91.7761 +729147,263.08,93.5885 +729148,262.89,95.4454 +729149,262.21,90.039388 +729150,261.95,91.7966 +729151,261.71,93.5934 +729152,261.49,95.4338 +729153,260.92,90.076079 +729154,260.62,91.8175 +729155,260.35,93.5978 +729156,260.09,95.4207 +729157,259.62,90.11408 +729158,259.29,91.8388 +729159,258.98,93.6017 +729160,258.69,95.4062 +729161,258.32,90.15337 +729162,257.96,91.8605 +729163,257.61,93.6051 +729164,257.29,95.3903 +729165,257.02,90.19394 +729166,256.63,91.8826 +729167,256.25,93.608 +729168,255.89,95.373 +729169,255.72,90.23578 +729170,255.29,91.9051 +729171,254.88,93.6103 +729172,254.49,95.3544 +729173,254.42,90.27887 +729174,253.96,91.928 +729175,253.52,93.6122 +729176,253.09,95.3343 +729177,253.12,90.32321 +729178,252.63,91.9512 +729179,252.15,93.6136 +729180,251.69,95.3129 +729181,251.82,90.36877 +729182,251.3,91.9749 +729183,250.78,93.6146 +729184,250.29,95.2901 +729185,250.52,90.41555 +729186,249.96,91.9989 +729187,249.42,93.615 +729188,248.89,95.2661 +729189,249.22,90.46352 +729190,248.63,92.0232 +729191,248.05,93.615 +729192,247.49,95.2407 +729193,247.92,90.51267 +729194,247.3,92.048 +729195,246.69,93.6146 +729196,246.09,95.2141 +729197,246.62,90.56298 +729198,245.96,92.0731 +729199,245.32,93.6136 +729200,244.7,95.1862 +729201,245.32,90.61443 +729202,244.63,92.0985 +729203,243.96,93.6122 +729204,243.3,95.1571 +729205,244.01,90.66701 +729206,243.3,92.1243 +729207,242.59,93.6104 +729208,241.9,95.1267 +729209,242.71,90.7207 +729210,241.96,92.1504 +729211,241.23,93.6082 +729212,240.51,95.0952 +729213,241.4,90.77547 +729214,240.63,92.1768 +729215,239.87,93.6055 +729216,239.11,95.0625 +729217,240.1,90.83131 +729218,239.29,92.2035 +729219,238.5,93.6024 +729220,237.72,95.0286 +729221,238.79,90.8882 +729222,237.96,92.2306 +729223,237.14,93.5989 +729224,236.33,94.9937 +729225,237.49,90.94611 +729226,236.62,92.258 +729227,235.77,93.595 +729228,234.93,94.9576 +729229,236.18,91.005 +729230,235.29,92.2856 +729231,234.41,93.5907 +729232,233.54,94.9205 +729233,234.87,91.0649 +729234,233.95,92.3136 +729235,233.05,93.586 +729236,232.15,94.8823 +729237,233.56,91.1258 +729238,232.62,92.3418 +729239,231.68,93.5809 +729240,230.76,94.8432 +729241,232.25,91.1875 +729242,231.28,92.3703 +729243,230.32,93.5754 +729244,229.37,94.803 +729245,230.94,91.2502 +729246,229.95,92.399 +729247,228.96,93.5696 +729248,227.98,94.7618 +729249,229.63,91.3138 +729250,228.61,92.4281 +729251,227.6,93.5634 +729252,226.59,94.7198 +729253,228.32,91.3782 +729254,227.27,92.4573 +729255,226.24,93.5569 +729256,225.21,94.6768 +729257,227,91.4435 +729258,225.93,92.4868 +729259,224.87,93.5501 +729260,223.82,94.6329 +729261,225.69,91.5096 +729262,224.6,92.5166 +729263,223.51,93.5429 +729264,222.44,94.5882 +729265,224.37,91.5764 +729266,223.26,92.5465 +729267,222.15,93.5354 +729268,221.05,94.5427 +729269,223.06,91.6441 +729270,221.92,92.5767 +729271,220.79,93.5276 +729272,219.67,94.4963 +729273,221.74,91.7124 +729274,220.58,92.607 +729275,219.43,93.5195 +729276,218.28,94.4492 +729277,220.42,91.7814 +729278,219.24,92.6376 +729279,218.07,93.5111 +729280,216.9,94.4014 +729281,219.1,91.8511 +729282,217.9,92.6683 +729283,216.71,93.5024 +729284,215.52,94.3529 +729285,217.78,91.9215 +729286,216.56,92.6992 +729287,215.35,93.4935 +729288,214.14,94.3037 +729289,216.46,91.9924 +729290,215.22,92.7302 +729291,213.99,93.4842 +729292,212.76,94.2538 +729293,215.14,92.064 +729294,213.88,92.7614 +729295,212.63,93.4748 +729296,211.39,94.2033 +729297,213.82,92.1361 +729298,212.54,92.7928 +729299,211.27,93.4651 +729300,210.01,94.1523 +729301,212.49,92.2087 +729302,211.2,92.8243 +729303,209.91,93.4552 +729304,208.63,94.1007 +729305,211.17,92.2818 +729306,209.86,92.8559 +729307,208.56,93.445 +729308,207.26,94.0486 +729309,209.84,92.3554 +729310,208.52,92.8876 +729311,207.2,93.4347 +729312,205.89,93.996 +729313,208.51,92.4294 +729314,207.17,92.9194 +729315,205.84,93.4241 +729316,204.51,93.943 +729317,207.19,92.5038 +729318,205.83,92.9513 +729319,204.48,93.4134 +729320,203.14,93.8895 +729321,205.86,92.5786 +729322,204.49,92.9832 +729323,203.13,93.4025 +729324,201.77,93.8357 +729325,204.52,92.6537 +729326,203.15,93.0153 +729327,201.77,93.3914 +729328,200.4,93.7815 +729329,203.19,92.7291 +729330,201.8,93.0474 +729331,200.42,93.3802 +729332,199.04,93.7269 +729333,201.86,92.8047 +729334,200.46,93.0795 +729335,199.06,93.3688 +729336,197.67,93.6721 +729337,200.53,92.8806 +729338,199.11,93.1116 +729339,197.7,93.3573 +729340,196.3,93.617 +729341,199.19,92.9567 +729342,197.77,93.1438 +729343,196.35,93.3457 +729344,194.94,93.5617 +729345,197.85,93.033 +729346,196.42,93.176 +729347,195,93.334 +729348,193.58,93.5062 +729349,196.52,93.1094 +729350,195.08,93.2082 +729351,193.64,93.3221 +729352,192.21,93.4506 +729353,195.18,93.186 +729354,193.73,93.2404 +729355,192.29,93.3102 +729356,190.85,93.3948 +729357,193.84,93.2626 +729358,192.38,93.2726 +729359,190.93,93.2982 +729360,189.49,93.3389 +729361,192.5,93.3392 +729362,191.03,93.3047 +729363,189.58,93.2861 +729364,188.14,93.283 +729365,191.15,93.4158 +729366,189.69,93.3368 +729367,188.23,93.274 +729368,186.78,93.227 +729369,189.81,93.4924 +729370,188.34,93.3688 +729371,186.88,93.2619 +729372,185.42,93.1711 +729373,188.46,93.5689 +729374,186.99,93.4007 +729375,185.52,93.2497 +729376,184.07,93.1152 +729377,187.12,93.6453 +729378,185.64,93.4326 +729379,184.17,93.2374 +729380,182.71,93.0593 +729381,185.77,93.7216 +729382,184.29,93.4644 +729383,182.82,93.2252 +729384,181.36,93.0036 +729385,184.42,93.7977 +729386,182.94,93.496 +729387,181.47,93.213 +729388,180.01,92.948 +729389,183.07,93.8737 +729390,181.59,93.5276 +729391,180.12,93.2008 +729392,178.66,92.8925 +729393,181.72,93.9493 +729394,180.24,93.559 +729395,178.77,93.1886 +729396,177.31,92.8373 +729397,180.37,94.0247 +729398,178.89,93.5903 +729399,177.42,93.1764 +729400,175.96,92.7823 +729401,179.02,94.0998 +729402,177.54,93.6215 +729403,176.07,93.1643 +729404,174.62,92.7276 +729405,177.66,94.1746 +729406,176.19,93.6524 +729407,174.72,93.1522 +729408,173.27,92.6731 +729409,176.3,94.2489 +729410,174.83,93.6833 +729411,173.37,93.1402 +729412,171.93,92.619 +729413,174.95,94.3229 +729414,173.48,93.7139 +729415,172.03,93.1283 +729416,170.58,92.5652 +729417,173.59,94.3964 +729418,172.13,93.7443 +729419,170.68,93.1165 +729420,169.24,92.5119 +729421,172.23,94.4695 +729422,170.78,93.7746 +729423,169.33,93.1047 +729424,167.9,92.4589 +729425,170.87,94.542 +729426,169.42,93.8046 +729427,167.98,93.0931 +729428,166.56,92.4064 +729429,169.51,94.614 +729430,168.07,93.8344 +729431,166.64,93.0816 +729432,165.22,92.3544 +729433,168.14,94.6854 +729434,166.71,93.8639 +729435,165.29,93.0702 +729436,163.88,92.3029 +729437,166.78,94.7561 +729438,165.36,93.8932 +729439,163.95,93.059 +729440,162.55,92.2519 +729441,165.41,94.8263 +729442,164,93.9223 +729443,162.6,93.0479 +729444,161.21,92.2015 +729445,164.05,94.8958 +729446,162.64,93.9511 +729447,161.26,93.0369 +729448,159.88,92.1517 +729449,162.68,94.9645 +729450,161.29,93.9796 +729451,159.91,93.0262 +729452,158.55,92.1025 +729453,161.31,95.0325 +729454,159.93,94.0078 +729455,158.57,93.0156 +729456,157.22,92.054 +729457,159.94,95.0998 +729458,158.57,94.0357 +729459,157.22,93.0052 +729460,155.88,92.0061 +729461,158.57,95.1662 +729462,157.22,94.0633 +729463,155.88,92.995 +729464,154.55,91.959 +729465,157.2,95.2318 +729466,155.86,94.0906 +729467,154.54,92.985 +729468,153.23,91.9126 +729469,155.82,95.2965 +729470,154.5,94.1175 +729471,153.19,92.9752 +729472,151.9,91.867 +729473,154.45,95.3603 +729474,153.14,94.1441 +729475,151.85,92.9656 +729476,150.57,91.8222 +729477,153.07,95.4232 +729478,151.78,94.1704 +729479,150.51,92.9563 +729480,149.25,91.7782 +729481,151.7,95.4852 +729482,150.42,94.1963 +729483,149.17,92.9472 +729484,147.92,91.735 +729485,150.32,95.5461 +729486,149.06,94.2218 +729487,147.82,92.9384 +729488,146.6,91.6927 +729489,148.94,95.6061 +729490,147.7,94.247 +729491,146.48,92.9298 +729492,145.28,91.6513 +729493,147.56,95.665 +729494,146.34,94.2718 +729495,145.14,92.9215 +729496,143.96,91.6108 +729497,146.18,95.7228 +729498,144.98,94.2961 +729499,143.8,92.9135 +729500,142.63,91.5712 +729501,144.8,95.7795 +729502,143.62,94.3201 +729503,142.46,92.9058 +729504,141.31,91.5326 +729505,143.42,95.8351 +729506,142.26,94.3437 +729507,141.12,92.8984 +729508,140,91.495 +729509,142.03,95.8895 +729510,140.9,94.3668 +729511,139.78,92.8912 +729512,138.68,91.4584 +729513,140.65,95.9428 +729514,139.53,94.3895 +729515,138.44,92.8844 +729516,137.36,91.4229 +729517,139.26,95.9949 +729518,138.17,94.4118 +729519,137.1,92.8779 +729520,136.05,91.3883 +729521,137.88,96.0457 +729522,136.81,94.4336 +729523,135.76,92.8717 +729524,134.73,91.3549 +729525,136.49,96.0953 +729526,135.45,94.455 +729527,134.42,92.8658 +729528,133.42,91.3225 +729529,135.1,96.1436 +729530,134.08,94.4759 +729531,133.08,92.8603 +729532,132.1,91.2913 +729533,133.71,96.1906 +729534,132.72,94.4964 +729535,131.75,92.8551 +729536,130.79,91.2612 +729537,132.32,96.2363 +729538,131.35,94.5164 +729539,130.41,92.8503 +729540,129.48,91.2323 +729541,130.93,96.2806 +729542,129.99,94.5359 +729543,129.07,92.8458 +729544,128.17,91.2045 +729545,129.54,96.3236 +729546,128.63,94.5549 +729547,127.73,92.8417 +729548,126.85,91.1779 +729549,128.15,96.3652 +729550,127.26,94.5734 +729551,126.39,92.8379 +729552,125.54,91.1525 +729553,126.75,96.4054 +729554,125.9,94.5915 +729555,125.06,92.8346 +729556,124.23,91.1283 +729557,125.36,96.4442 +729558,124.53,94.609 +729559,123.72,92.8316 +729560,122.93,91.1053 +729561,123.97,96.4816 +729562,123.17,94.626 +729563,122.38,92.829 +729564,121.62,91.0836 +729565,122.57,96.5175 +729566,121.8,94.6425 +729567,121.05,92.8267 +729568,120.31,91.0632 +729569,121.18,96.5519 +729570,120.43,94.6585 +729571,119.71,92.8249 +729572,119,91.044 +729573,119.78,96.5848 +729574,119.07,94.674 +729575,118.37,92.8235 +729576,117.7,91.0261 +729577,118.38,96.6163 +729578,117.7,94.6889 +729579,117.04,92.8224 +729580,116.39,91.0096 +729581,116.99,96.6462 +729582,116.33,94.7033 +729583,115.7,92.8218 +729584,115.09,90.9943 +729585,115.59,96.6746 +729586,114.97,94.7172 +729587,114.37,92.8216 +729588,113.78,90.98036 +729589,114.19,96.7014 +729590,113.6,94.7305 +729591,113.03,92.8218 +729592,112.48,90.96775 +729593,112.79,96.7267 +729594,112.23,94.7433 +729595,111.7,92.8224 +729596,111.17,90.95649 +729597,111.39,96.7505 +729598,110.87,94.7555 +729599,110.36,92.8235 +729600,109.87,90.94658 +729601,109.99,96.7727 +729602,109.5,94.7672 +729603,109.02,92.8249 +729604,108.56,90.93803 +729605,108.59,96.7933 +729606,108.13,94.7783 +729607,107.69,92.8268 +729608,107.26,90.93085 +729609,107.19,96.8123 +729610,106.76,94.7888 +729611,106.35,92.8291 +729612,105.96,90.92505 +729613,105.79,96.8297 +729614,105.4,94.7988 +729615,105.02,92.8318 +729616,104.66,90.92063 +729617,104.39,96.8455 +729618,104.03,94.8083 +729619,103.68,92.835 +729620,103.35,90.91759 +729621,102.99,96.8597 +729622,102.66,94.8172 +729623,102.35,92.8386 +729624,102.05,90.91595 +729625,101.59,96.8723 +729626,101.29,94.8255 +729627,101.02,92.8427 +729628,100.75,90.91571 +729629,100.18,96.8833 +729630,99.924,94.8332 +729631,99.68,92.8471 +729632,99.449,90.91686 +729633,98.781,96.8926 +729634,98.556,94.8404 +729635,98.346,92.852 +729636,98.148,90.91942 +729637,97.379,96.9004 +729638,97.188,94.8471 +729639,97.011,92.8574 +729640,96.846,90.92339 +729641,95.976,96.9065 +729642,95.819,94.8531 +729643,95.676,92.8632 +729644,95.545,90.92876 +729645,94.574,96.911 +729646,94.451,94.8586 +729647,94.342,92.8694 +729648,94.244,90.93554 +729649,93.171,96.9139 +729650,93.083,94.8635 +729651,93.007,92.8761 +729652,92.943,90.94372 +729653,91.768,96.9151 +729654,91.714,94.8678 +729655,91.673,92.8832 +729656,91.642,90.95332 +729657,90.366,96.9148 +729658,90.346,94.8716 +729659,90.338,92.8907 +729660,90.341,90.96432 +729661,88.963,96.9128 +729662,88.977,94.8748 +729663,89.003,92.8987 +729664,89.04,90.97672 +729665,87.56,96.9092 +729666,87.609,94.8775 +729667,87.669,92.9071 +729668,87.739,90.99053 +729669,86.157,96.9041 +729670,86.24,94.8796 +729671,86.334,92.9159 +729672,86.438,91.0057 +729673,84.755,96.8973 +729674,84.872,94.8811 +729675,84.999,92.9252 +729676,85.136,91.0223 +729677,83.352,96.8889 +729678,83.503,94.8821 +729679,83.664,92.9349 +729680,83.835,91.0403 +729681,81.95,96.879 +729682,82.135,94.8825 +729683,82.33,92.945 +729684,82.533,91.0597 +729685,80.548,96.8675 +729686,80.766,94.8823 +729687,80.995,92.9556 +729688,81.231,91.0804 +729689,79.146,96.8544 +729690,79.398,94.8816 +729691,79.66,92.9665 +729692,79.929,91.1025 +729693,77.744,96.8397 +729694,78.03,94.8804 +729695,78.324,92.9779 +729696,78.627,91.126 +729697,76.342,96.8235 +729698,76.662,94.8786 +729699,76.989,92.9898 +729700,77.324,91.1508 +729701,74.941,96.8058 +729702,75.294,94.8762 +729703,75.654,93.002 +729704,76.021,91.177 +729705,73.54,96.7866 +729706,73.926,94.8734 +729707,74.318,93.0146 +729708,74.718,91.2045 +729709,72.14,96.7658 +729710,72.558,94.87 +729711,72.983,93.0277 +729712,73.415,91.2333 +729713,70.74,96.7436 +729714,71.19,94.866 +729715,71.647,93.0411 +729716,72.111,91.2635 +729717,69.34,96.7199 +729718,69.822,94.8615 +729719,70.311,93.055 +729720,70.806,91.2949 +729721,67.94,96.6947 +729722,68.455,94.8566 +729723,68.975,93.0692 +729724,69.501,91.3277 +729725,66.541,96.6681 +729726,67.088,94.8511 +729727,67.639,93.0838 +729728,68.196,91.3617 +729729,65.143,96.6401 +729730,65.72,94.845 +729731,66.303,93.0989 +729732,66.89,91.397 +729733,63.745,96.6106 +729734,64.353,94.8385 +729735,64.966,93.1143 +729736,65.584,91.4335 +729737,62.348,96.5798 +729738,62.986,94.8315 +729739,63.63,93.13 +729740,64.277,91.4712 +729741,60.951,96.5475 +729742,61.62,94.824 +729743,62.293,93.1462 +729744,62.97,91.5102 +729745,59.554,96.514 +729746,60.253,94.816 +729747,60.956,93.1627 +729748,61.662,91.5504 +729749,58.159,96.4791 +729750,58.887,94.8075 +729751,59.618,93.1795 +729752,60.354,91.5917 +729753,56.764,96.4429 +729754,57.521,94.7985 +729755,58.281,93.1968 +729756,59.045,91.6343 +729757,55.369,96.4054 +729758,56.155,94.7891 +729759,56.943,93.2143 +729760,57.735,91.678 +729761,53.975,96.3666 +729762,54.789,94.7792 +729763,55.605,93.2322 +729764,56.424,91.7228 +729765,52.582,96.3266 +729766,53.423,94.7688 +729767,54.267,93.2504 +729768,55.113,91.7687 +729769,51.19,96.2854 +729770,52.058,94.758 +729771,52.929,93.269 +729772,53.801,91.8157 +729773,49.798,96.243 +729774,50.693,94.7468 +729775,51.59,93.2878 +729776,52.489,91.8638 +729777,48.408,96.1994 +729778,49.328,94.7351 +729779,50.251,93.307 +729780,51.175,91.9129 +729781,47.018,96.1547 +729782,47.964,94.723 +729783,48.912,93.3265 +729784,49.861,91.9631 +729785,45.628,96.1088 +729786,46.6,94.7105 +729787,47.572,93.3463 +729788,48.546,92.0142 +729789,44.24,96.0619 +729790,45.236,94.6976 +729791,46.232,93.3663 +729792,47.23,92.0664 +729793,42.852,96.0139 +729794,43.872,94.6843 +729795,44.892,93.3867 +729796,45.914,92.1195 +729797,41.466,95.9649 +729798,42.508,94.6706 +729799,43.552,93.4073 +729800,44.596,92.1736 +729801,40.08,95.9149 +729802,41.145,94.6565 +729803,42.211,93.4281 +729804,43.278,92.2285 +729805,38.695,95.8639 +729806,39.782,94.6421 +729807,40.87,93.4492 +729808,41.959,92.2844 +729809,37.311,95.8119 +729810,38.42,94.6273 +729811,39.529,93.4706 +729812,40.639,92.3411 +729813,35.928,95.759 +729814,37.057,94.6121 +729815,38.188,93.4922 +729816,39.318,92.3986 +729817,34.546,95.7053 +729818,35.695,94.5966 +729819,36.846,93.514 +729820,37.996,92.457 +729821,33.165,95.6506 +729822,34.334,94.5807 +729823,35.503,93.5361 +729824,36.673,92.5162 +729825,31.784,95.5952 +729826,32.972,94.5645 +729827,34.161,93.5583 +729828,35.349,92.5761 +729829,30.405,95.5389 +729830,31.611,94.5481 +729831,32.818,93.5808 +729832,34.024,92.6367 +729833,29.027,95.4819 +729834,30.251,94.5313 +729835,31.475,93.6034 +729836,32.698,92.698 +729837,27.65,95.4241 +729838,28.89,94.5142 +729839,30.131,93.6262 +729840,31.371,92.76 +729841,26.274,95.3657 +729842,27.53,94.4968 +729843,28.787,93.6492 +729844,30.043,92.8227 +729845,24.899,95.3065 +729846,26.171,94.4792 +729847,27.443,93.6723 +729848,28.714,92.886 +729849,23.525,95.2467 +729850,24.811,94.4612 +729851,26.098,93.6956 +729852,27.384,92.9498 +729853,22.152,95.1863 +729854,23.453,94.4431 +729855,24.753,93.719 +729856,26.053,93.0142 +729857,20.78,95.1254 +729858,22.094,94.4247 +729859,23.408,93.7426 +729860,24.721,93.0792 +729861,19.41,95.0639 +729862,20.736,94.406 +729863,22.062,93.7662 +729864,23.388,93.1446 +729865,18.04,95.0019 +729866,19.378,94.3872 +729867,20.716,93.79 +729868,22.053,93.2105 +729869,16.672,94.9394 +729870,18.02,94.3681 +729871,19.369,93.8139 +729872,20.718,93.2769 +729873,15.304,94.8764 +729874,16.663,94.3488 +729875,18.023,93.8378 +729876,19.381,93.3436 +729877,13.938,94.8131 +729878,15.306,94.3294 +729879,16.675,93.8618 +729880,18.044,93.4107 +729881,12.573,94.7494 +729882,13.95,94.3097 +729883,15.328,93.8859 +729884,16.705,93.4782 +729885,11.209,94.6853 +729886,12.594,94.2899 +729887,13.98,93.9101 +729888,15.365,93.5459 +729889,9.8466,94.6209 +729890,11.238,94.27 +729891,12.631,93.9343 +729892,14.024,93.614 +729893,8.4851,94.5563 +729894,9.8831,94.2499 +729895,11.282,93.9585 +729896,12.681,93.6822 +729897,7.1246,94.4914 +729898,8.5282,94.2297 +729899,9.9331,93.9827 +729900,11.338,93.7507 +729901,5.7654,94.4263 +729902,7.1738,94.2093 +729903,8.5835,94.0069 +729904,9.9931,93.8194 +729905,4.4073,94.3611 +729906,5.8197,94.1888 +729907,7.2335,94.0312 +729908,8.6473,93.8882 +729909,3.0504,94.2957 +729910,4.466,94.1683 +729911,5.8831,94.0554 +729912,7.3003,93.9571 +729913,1.6947,94.2302 +729914,3.1127,94.1476 +729915,4.5324,94.0796 +729916,5.9522,94.0261 +729917,0.34018,94.1646 +729918,1.7597,94.1269 +729919,3.1812,94.1037 +729920,4.6029,94.0951 +729921,358.99,94.099 +729922,0.40719,94.1061 +729923,1.8296,94.1278 +729924,3.2523,94.1641 +729925,357.63,94.0334 +729926,359.06,94.0853 +729927,0.47761,94.1518 +729928,1.9007,94.2331 +729929,356.28,93.9678 +729930,357.7,94.0644 +729931,359.13,94.1758 +729932,0.54778,94.3021 +729933,354.93,93.9023 +729934,356.35,94.0435 +729935,357.77,94.1997 +729936,359.19,94.3709 +729937,353.59,93.8368 +729938,355,94.0226 +729939,356.42,94.2235 +729940,357.84,94.4396 +729941,352.24,93.7716 +729942,353.65,94.0016 +729943,355.07,94.2472 +729944,356.48,94.5082 +729945,350.89,93.7064 +729946,352.3,93.9807 +729947,353.71,94.2707 +729948,355.12,94.5766 +729949,349.55,93.6415 +729950,350.95,93.9598 +729951,352.36,94.2942 +729952,353.77,94.6447 +729953,348.2,93.5768 +729954,349.6,93.9389 +729955,351,94.3175 +729956,352.41,94.7126 +729957,346.86,93.5123 +729958,348.25,93.918 +729959,349.65,94.3406 +729960,351.04,94.7801 +729961,345.52,93.4482 +729962,346.9,93.8972 +729963,348.29,94.3636 +729964,349.68,94.8474 +729965,344.18,93.3844 +729966,345.56,93.8765 +729967,346.94,94.3864 +729968,348.32,94.9142 +729969,342.84,93.3209 +729970,344.21,93.8558 +729971,345.58,94.409 +729972,346.95,94.9807 +729973,341.5,93.2579 +729974,342.86,93.8352 +729975,344.22,94.4314 +729976,345.59,95.0467 +729977,340.16,93.1952 +729978,341.51,93.8147 +729979,342.87,94.4537 +729980,344.22,95.1123 +729981,338.83,93.133 +729982,340.17,93.7943 +729983,341.51,94.4757 +729984,342.85,95.1773 +729985,337.49,93.0713 +729986,338.82,93.774 +729987,340.15,94.4974 +729988,341.48,95.2419 +729989,336.16,93.0101 +729990,337.47,93.7538 +729991,338.79,94.519 +729992,340.11,95.3058 +729993,334.82,92.9494 +729994,336.13,93.7338 +729995,337.43,94.5402 +729996,338.74,95.3692 +729997,333.49,92.8894 +729998,334.78,93.7139 +729999,336.08,94.5612 +730000,337.37,95.4319 +730001,332.16,92.8299 +730002,333.44,93.6941 +730003,334.72,94.582 +730004,336,95.4939 +730005,330.83,92.771 +730006,332.09,93.6746 +730007,333.36,94.6025 +730008,334.62,95.5553 +730009,329.5,92.7129 +730010,330.75,93.6552 +730011,332,94.6226 +730012,333.25,95.6159 +730013,328.18,92.6554 +730014,329.4,93.636 +730015,330.64,94.6425 +730016,331.87,95.6758 +730017,326.85,92.5986 +730018,328.06,93.6169 +730019,329.28,94.662 +730020,330.49,95.7348 +730021,325.53,92.5426 +730022,326.72,93.5981 +730023,327.91,94.6813 +730024,329.11,95.793 +730025,324.2,92.4873 +730026,325.38,93.5795 +730027,326.55,94.7002 +730028,327.73,95.8504 +730029,322.88,92.4329 +730030,324.03,93.5611 +730031,325.19,94.7187 +730032,326.35,95.9069 +730033,321.55,92.3792 +730034,322.69,93.543 +730035,323.83,94.7369 +730036,324.97,95.9625 +730037,320.23,92.3265 +730038,321.35,93.5251 +730039,322.47,94.7547 +730040,323.59,96.0171 +730041,318.91,92.2746 +730042,320.01,93.5074 +730043,321.1,94.7722 +730044,322.21,96.0707 +730045,317.59,92.2236 +730046,318.67,93.49 +730047,319.74,94.7893 +730048,320.82,96.1234 +730049,316.27,92.1735 +730050,317.32,93.4729 +730051,318.38,94.806 +730052,319.44,96.175 +730053,314.96,92.1244 +730054,315.98,93.456 +730055,317.01,94.8223 +730056,318.05,96.2255 +730057,313.64,92.0762 +730058,314.64,93.4394 +730059,315.65,94.8382 +730060,316.66,96.275 +730061,312.32,92.0291 +730062,313.3,93.4231 +730063,314.29,94.8537 +730064,315.27,96.3233 +730065,311.01,91.9829 +730066,311.96,93.4072 +730067,312.92,94.8687 +730068,313.88,96.3705 +730069,309.69,91.9378 +730070,310.62,93.3915 +730071,311.56,94.8833 +730072,312.49,96.4165 +730073,308.38,91.8938 +730074,309.28,93.3761 +730075,310.19,94.8975 +730076,311.1,96.4613 +730077,307.06,91.8508 +730078,307.95,93.3611 +730079,308.83,94.9113 +730080,309.71,96.505 +730081,305.75,91.809 +730082,306.61,93.3463 +730083,307.46,94.9245 +730084,308.32,96.5473 +730085,304.44,91.7683 +730086,305.27,93.332 +730087,306.1,94.9374 +730088,306.93,96.5884 +730089,303.13,91.7287 +730090,303.93,93.3179 +730091,304.73,94.9497 +730092,305.53,96.6282 +730093,301.82,91.6903 +730094,302.59,93.3042 +730095,303.36,94.9616 +730096,304.14,96.6667 +730097,300.51,91.653 +730098,301.25,93.2909 +730099,302,94.973 +730100,302.75,96.7039 +730101,299.2,91.617 +730102,299.92,93.2779 +730103,300.63,94.9839 +730104,301.35,96.7397 +730105,297.89,91.5821 +730106,298.58,93.2653 +730107,299.27,94.9943 +730108,299.95,96.7741 +730109,296.58,91.5485 +730110,297.24,93.253 +730111,297.9,95.0042 +730112,298.56,96.8072 +730113,295.28,91.5161 +730114,295.9,93.2412 +730115,296.53,95.0136 +730116,297.16,96.8388 +730117,293.97,91.485 +730118,294.57,93.2297 +730119,295.16,95.0225 +730120,295.76,96.869 +730121,292.66,91.4552 +730122,293.23,93.2186 +730123,293.8,95.0309 +730124,294.36,96.8977 +730125,291.36,91.4266 +730126,291.89,93.2079 +730127,292.43,95.0387 +730128,292.97,96.925 +730129,290.05,91.3993 +730130,290.56,93.1976 +730131,291.06,95.046 +730132,291.57,96.9508 +730133,288.75,91.3734 +730134,289.22,93.1877 +730135,289.69,95.0528 +730136,290.17,96.9751 +730137,287.44,91.3487 +730138,287.88,93.1782 +730139,288.33,95.0591 +730140,288.77,96.9978 +730141,286.14,91.3254 +730142,286.55,93.1691 +730143,286.96,95.0648 +730144,287.37,97.0191 +730145,284.83,91.3035 +730146,285.21,93.1605 +730147,285.59,95.0699 +730148,285.97,97.0388 +730149,283.53,91.2829 +730150,283.88,93.1522 +730151,284.22,95.0745 +730152,284.56,97.057 +730153,282.23,91.2636 +730154,282.54,93.1444 +730155,282.85,95.0786 +730156,283.16,97.0736 +730157,280.92,91.2457 +730158,281.2,93.1369 +730159,281.48,95.0821 +730160,281.76,97.0886 +730161,279.62,91.2292 +730162,279.87,93.1299 +730163,280.12,95.0851 +730164,280.36,97.1021 +730165,278.32,91.2141 +730166,278.53,93.1234 +730167,278.75,95.0875 +730168,278.96,97.1139 +730169,277.01,91.2004 +730170,277.2,93.1172 +730171,277.38,95.0893 +730172,277.55,97.1242 +730173,275.71,91.188 +730174,275.86,93.1115 +730175,276.01,95.0905 +730176,276.15,97.1328 +730177,274.41,91.1771 +730178,274.53,93.1063 +730179,274.64,95.0912 +730180,274.75,97.1399 +730181,273.11,91.1675 +730182,273.19,93.1014 +730183,273.27,95.0914 +730184,273.35,97.1453 +730185,271.81,91.1594 +730186,271.86,93.097 +730187,271.9,95.0909 +730188,271.94,97.1491 +730189,270.5,91.1526 +730190,270.52,93.0931 +730191,270.53,95.0899 +730192,270.54,97.1513 +730193,269.2,91.1473 +730194,269.19,93.0895 +730195,269.17,95.0883 +730196,269.14,97.1518 +730197,267.9,91.1434 +730198,267.85,93.0865 +730199,267.8,95.0862 +730200,267.74,97.1507 +730201,266.6,91.1409 +730202,266.52,93.0838 +730203,266.43,95.0834 +730204,266.33,97.148 +730205,265.3,91.1398 +730206,265.18,93.0816 +730207,265.06,95.0801 +730208,264.93,97.1437 +730209,263.99,91.1401 +730210,263.85,93.0798 +730211,263.69,95.0763 +730212,263.53,97.1377 +730213,262.69,91.1418 +730214,262.51,93.0785 +730215,262.32,95.0718 +730216,262.13,97.1301 +730217,261.39,91.1449 +730218,261.18,93.0776 +730219,260.95,95.0668 +730220,260.72,97.1209 +730221,260.09,91.1495 +730222,259.84,93.0771 +730223,259.58,95.0612 +730224,259.32,97.11 +730225,258.79,91.1554 +730226,258.5,93.0771 +730227,258.22,95.0551 +730228,257.92,97.0976 +730229,257.48,91.1627 +730230,257.17,93.0775 +730231,256.85,95.0484 +730232,256.52,97.0835 +730233,256.18,91.1714 +730234,255.83,93.0783 +730235,255.48,95.0411 +730236,255.12,97.0678 +730237,254.88,91.1815 +730238,254.5,93.0795 +730239,254.11,95.0333 +730240,253.72,97.0506 +730241,253.57,91.193 +730242,253.16,93.0812 +730243,252.74,95.0249 +730244,252.31,97.0317 +730245,252.27,91.2058 +730246,251.83,93.0833 +730247,251.38,95.0159 +730248,250.91,97.0112 +730249,250.96,91.22 +730250,250.49,93.0859 +730251,250.01,95.0064 +730252,249.51,96.9892 +730253,249.66,91.2355 +730254,249.15,93.0888 +730255,248.64,94.9964 +730256,248.11,96.9656 +730257,248.36,91.2524 +730258,247.82,93.0922 +730259,247.27,94.9858 +730260,246.72,96.9405 +730261,247.05,91.2706 +730262,246.48,93.0959 +730263,245.9,94.9746 +730264,245.32,96.9138 +730265,245.74,91.2902 +730266,245.15,93.1001 +730267,244.54,94.9629 +730268,243.92,96.8857 +730269,244.44,91.311 +730270,243.81,93.1047 +730271,243.17,94.9507 +730272,242.52,96.856 +730273,243.13,91.3332 +730274,242.47,93.1097 +730275,241.8,94.938 +730276,241.12,96.8248 +730277,241.82,91.3566 +730278,241.13,93.1151 +730279,240.44,94.9247 +730280,239.73,96.7921 +730281,240.52,91.3814 +730282,239.8,93.1208 +730283,239.07,94.9109 +730284,238.33,96.7579 +730285,239.21,91.4073 +730286,238.46,93.127 +730287,237.7,94.8966 +730288,236.94,96.7223 +730289,237.9,91.4345 +730290,237.12,93.1335 +730291,236.34,94.8818 +730292,235.54,96.6853 +730293,236.59,91.463 +730294,235.79,93.1404 +730295,234.97,94.8664 +730296,234.15,96.6469 +730297,235.28,91.4927 +730298,234.45,93.1477 +730299,233.61,94.8506 +730300,232.75,96.607 +730301,233.97,91.5235 +730302,233.11,93.1553 +730303,232.24,94.8343 +730304,231.36,96.5658 +730305,232.66,91.5555 +730306,231.77,93.1633 +730307,230.88,94.8175 +730308,229.97,96.5233 +730309,231.34,91.5887 +730310,230.43,93.1717 +730311,229.51,94.8002 +730312,228.58,96.4794 +730313,230.03,91.6231 +730314,229.09,93.1804 +730315,228.15,94.7825 +730316,227.19,96.4342 +730317,228.72,91.6586 +730318,227.75,93.1894 +730319,226.78,94.7643 +730320,225.8,96.3877 +730321,227.4,91.6951 +730322,226.41,93.1988 +730323,225.42,94.7456 +730324,224.41,96.34 +730325,226.09,91.7328 +730326,225.08,93.2085 +730327,224.05,94.7265 +730328,223.02,96.291 +730329,224.77,91.7715 +730330,223.74,93.2185 +730331,222.69,94.7069 +730332,221.63,96.2408 +730333,223.45,91.8113 +730334,222.4,93.2288 +730335,221.33,94.6869 +730336,220.25,96.1894 +730337,222.13,91.8521 +730338,221.06,93.2394 +730339,219.97,94.6665 +730340,218.86,96.1369 +730341,220.82,91.8939 +730342,219.71,93.2503 +730343,218.6,94.6457 +730344,217.48,96.0832 +730345,219.5,91.9367 +730346,218.37,93.2616 +730347,217.24,94.6244 +730348,216.1,96.0284 +730349,218.18,91.9804 +730350,217.03,93.273 +730351,215.88,94.6027 +730352,214.71,95.9725 +730353,216.85,92.0251 +730354,215.69,93.2848 +730355,214.52,94.5807 +730356,213.33,95.9156 +730357,215.53,92.0707 +730358,214.35,93.2968 +730359,213.16,94.5583 +730360,211.95,95.8576 +730361,214.21,92.1172 +730362,213.01,93.3091 +730363,211.79,94.5355 +730364,210.57,95.7986 +730365,212.88,92.1645 +730366,211.66,93.3216 +730367,210.43,94.5123 +730368,209.19,95.7387 +730369,211.56,92.2126 +730370,210.32,93.3344 +730371,209.07,94.4888 +730372,207.82,95.6778 +730373,210.23,92.2616 +730374,208.98,93.3474 +730375,207.71,94.4649 +730376,206.44,95.616 +730377,208.91,92.3113 +730378,207.63,93.3606 +730379,206.35,94.4407 +730380,205.06,95.5533 +730381,207.58,92.3618 +730382,206.29,93.374 +730383,205,94.4161 +730384,203.69,95.4898 +730385,206.25,92.4131 +730386,204.95,93.3876 +730387,203.64,94.3913 +730388,202.32,95.4255 +730389,204.92,92.465 +730390,203.6,93.4014 +730391,202.28,94.3661 +730392,200.94,95.3604 +730393,203.59,92.5176 +730394,202.26,93.4154 +730395,200.92,94.3407 +730396,199.57,95.2945 +730397,202.25,92.5708 +730398,200.91,93.4296 +730399,199.56,94.3149 +730400,198.2,95.2279 +730401,200.92,92.6247 +730402,199.57,93.4439 +730403,198.21,94.2889 +730404,196.83,95.1606 +730405,199.58,92.6791 +730406,198.22,93.4584 +730407,196.85,94.2626 +730408,195.47,95.0926 +730409,198.25,92.7341 +730410,196.87,93.473 +730411,195.49,94.236 +730412,194.1,95.024 +730413,196.91,92.7896 +730414,195.53,93.4878 +730415,194.14,94.2093 +730416,192.74,94.9549 +730417,195.57,92.8456 +730418,194.18,93.5026 +730419,192.78,94.1822 +730420,191.37,94.8852 +730421,194.23,92.9021 +730422,192.83,93.5176 +730423,191.42,94.155 +730424,190.01,94.8149 +730425,192.89,92.959 +730426,191.49,93.5327 +730427,190.07,94.1275 +730428,188.65,94.7442 +730429,191.55,93.0164 +730430,190.14,93.5479 +730431,188.72,94.0999 +730432,187.29,94.673 +730433,190.21,93.0741 +730434,188.79,93.5631 +730435,187.36,94.072 +730436,185.93,94.6013 +730437,188.87,93.1321 +730438,187.44,93.5784 +730439,186.01,94.044 +730440,184.57,94.5293 +730441,187.52,93.1904 +730442,186.09,93.5938 +730443,184.65,94.0158 +730444,183.21,94.457 +730445,186.17,93.2491 +730446,184.74,93.6092 +730447,183.3,93.9875 +730448,181.86,94.3843 +730449,184.83,93.3079 +730450,183.39,93.6246 +730451,181.95,93.959 +730452,180.5,94.3113 +730453,183.48,93.367 +730454,182.04,93.6401 +730455,180.6,93.9303 +730456,179.15,94.2381 +730457,182.13,93.4263 +730458,180.69,93.6556 +730459,179.25,93.9016 +730460,177.79,94.1646 +730461,180.78,93.4857 +730462,179.34,93.6711 +730463,177.89,93.8727 +730464,176.44,94.091 +730465,179.43,93.5452 +730466,177.99,93.6866 +730467,176.54,93.8438 +730468,175.09,94.0172 +730469,178.07,93.6049 +730470,176.64,93.702 +730471,175.19,93.8147 +730472,173.75,93.9433 +730473,176.72,93.6645 +730474,175.28,93.7175 +730475,173.84,93.7856 +730476,172.4,93.8694 +730477,175.36,93.7242 +730478,173.93,93.7328 +730479,172.49,93.7564 +730480,171.05,93.7953 +730481,174.01,93.7839 +730482,172.58,93.7482 +730483,171.14,93.7272 +730484,169.71,93.7213 +730485,172.65,93.8435 +730486,171.22,93.7634 +730487,169.8,93.6979 +730488,168.36,93.6473 +730489,171.29,93.903 +730490,169.87,93.7786 +730491,168.45,93.6686 +730492,167.02,93.5734 +730493,169.93,93.9624 +730494,168.52,93.7937 +730495,167.1,93.6393 +730496,165.68,93.4995 +730497,168.57,94.0217 +730498,167.16,93.8087 +730499,165.75,93.6099 +730500,164.34,93.4258 +730501,167.2,94.0808 +730502,165.81,93.8236 +730503,164.4,93.5806 +730504,163,93.3522 +730505,165.84,94.1397 +730506,164.45,93.8384 +730507,163.06,93.5513 +730508,161.66,93.2788 +730509,164.47,94.1983 +730510,163.1,93.853 +730511,161.71,93.522 +730512,160.32,93.2056 +730513,163.11,94.2566 +730514,161.74,93.8675 +730515,160.37,93.4927 +730516,158.99,93.1327 +730517,161.74,94.3147 +730518,160.38,93.8819 +730519,159.02,93.4635 +730520,157.65,93.0601 +730521,160.37,94.3723 +730522,159.03,93.896 +730523,157.68,93.4344 +730524,156.32,92.9878 +730525,159,94.4296 +730526,157.67,93.91 +730527,156.33,93.4053 +730528,154.99,92.9159 +730529,157.63,94.4865 +730530,156.31,93.9239 +730531,154.99,93.3763 +730532,153.66,92.8443 +730533,156.26,94.543 +730534,154.95,93.9375 +730535,153.64,93.3474 +730536,152.33,92.7732 +730537,154.89,94.5989 +730538,153.6,93.9509 +730539,152.3,93.3186 +730540,151,92.7025 +730541,153.51,94.6544 +730542,152.24,93.9641 +730543,150.96,93.2899 +730544,149.67,92.6323 +730545,152.14,94.7093 +730546,150.88,93.977 +730547,149.61,93.2613 +730548,148.34,92.5626 +730549,150.76,94.7636 +730550,149.52,93.9897 +730551,148.27,93.2329 +730552,147.02,92.4935 +730553,149.39,94.8173 +730554,148.16,94.0022 +730555,146.93,93.2046 +730556,145.69,92.4249 +730557,148.01,94.8704 +730558,146.8,94.0144 +730559,145.59,93.1764 +730560,144.37,92.3569 +730561,146.63,94.9228 +730562,145.44,94.0263 +730563,144.25,93.1485 +730564,143.05,92.2896 +730565,145.25,94.9745 +730566,144.08,94.038 +730567,142.9,93.1207 +730568,141.72,92.2229 +730569,143.87,95.0254 +730570,142.72,94.0493 +730571,141.56,93.0931 +730572,140.4,92.1569 +730573,142.49,95.0756 +730574,141.36,94.0604 +730575,140.22,93.0657 +730576,139.08,92.0916 +730577,141.1,95.125 +730578,140,94.0711 +730579,138.88,93.0384 +730580,137.77,92.0271 +730581,139.72,95.1736 +730582,138.63,94.0816 +730583,137.54,93.0114 +730584,136.45,91.9633 +730585,138.33,95.2213 +730586,137.27,94.0916 +730587,136.2,92.9847 +730588,135.13,91.9003 +730589,136.95,95.2682 +730590,135.91,94.1014 +730591,134.87,92.9581 +730592,133.82,91.8382 +730593,135.56,95.3141 +730594,134.55,94.1108 +730595,133.53,92.9318 +730596,132.5,91.7769 +730597,134.17,95.3591 +730598,133.18,94.1198 +730599,132.19,92.9058 +730600,131.19,91.7165 +730601,132.79,95.4031 +730602,131.82,94.1285 +730603,130.85,92.88 +730604,129.87,91.657 +730605,131.4,95.4461 +730606,130.46,94.1368 +730607,129.51,92.8545 +730608,128.56,91.5984 +730609,130.01,95.4881 +730610,129.09,94.1447 +730611,128.17,92.8292 +730612,127.25,91.5408 +730613,128.62,95.5291 +730614,127.73,94.1523 +730615,126.84,92.8042 +730616,125.94,91.4841 +730617,127.22,95.5689 +730618,126.37,94.1594 +730619,125.5,92.7796 +730620,124.63,91.4284 +730621,125.83,95.6077 +730622,125,94.1661 +730623,124.16,92.7552 +730624,123.32,91.3738 +730625,124.44,95.6453 +730626,123.64,94.1724 +730627,122.83,92.7311 +730628,122.01,91.3202 +730629,123.05,95.6818 +730630,122.27,94.1783 +730631,121.49,92.7074 +730632,120.7,91.2676 +730633,121.65,95.7171 +730634,120.91,94.1837 +730635,120.16,92.684 +730636,119.39,91.2161 +730637,120.26,95.7512 +730638,119.54,94.1887 +730639,118.82,92.6609 +730640,118.09,91.1658 +730641,118.86,95.7841 +730642,118.18,94.1933 +730643,117.48,92.6381 +730644,116.78,91.1165 +730645,117.46,95.8157 +730646,116.81,94.1974 +730647,116.15,92.6157 +730648,115.48,91.0684 +730649,116.07,95.8461 +730650,115.45,94.201 +730651,114.81,92.5936 +730652,114.17,91.0215 +730653,114.67,95.8752 +730654,114.08,94.2042 +730655,113.48,92.5719 +730656,112.87,90.9757 +730657,113.27,95.9029 +730658,112.71,94.2068 +730659,112.14,92.5505 +730660,111.56,90.93112 +730661,111.87,95.9294 +730662,111.35,94.2091 +730663,110.81,92.5296 +730664,110.26,90.88775 +730665,110.47,95.9544 +730666,109.98,94.2108 +730667,109.48,92.5089 +730668,108.96,90.8456 +730669,109.08,95.9782 +730670,108.62,94.212 +730671,108.14,92.4887 +730672,107.66,90.80469 +730673,107.68,96.0005 +730674,107.25,94.2128 +730675,106.81,92.4689 +730676,106.35,90.76504 +730677,106.28,96.0214 +730678,105.88,94.213 +730679,105.47,92.4494 +730680,105.05,90.72665 +730681,104.88,96.0409 +730682,104.52,94.2127 +730683,104.14,92.4303 +730684,103.75,90.68955 +730685,103.47,96.059 +730686,103.15,94.212 +730687,102.81,92.4117 +730688,102.45,90.65374 +730689,102.07,96.0756 +730690,101.78,94.2107 +730691,101.47,92.3934 +730692,101.15,90.61923 +730693,100.67,96.0907 +730694,100.42,94.2088 +730695,100.14,92.3755 +730696,99.85,90.58604 +730697,99.271,96.1044 +730698,99.048,94.2065 +730699,98.807,92.3581 +730700,98.551,90.55417 +730701,97.869,96.1165 +730702,97.681,94.2036 +730703,97.474,92.341 +730704,97.251,90.52365 +730705,96.467,96.1272 +730706,96.314,94.2002 +730707,96.141,92.3244 +730708,95.952,90.49446 +730709,95.065,96.1363 +730710,94.947,94.1963 +730711,94.809,92.3082 +730712,94.653,90.46664 +730713,93.663,96.1439 +730714,93.579,94.1918 +730715,93.476,92.2924 +730716,93.355,90.44017 +730717,92.261,96.15 +730718,92.212,94.1868 +730719,92.143,92.2771 +730720,92.056,90.41507 +730721,90.858,96.1545 +730722,90.845,94.1812 +730723,90.81,92.2622 +730724,90.758,90.39135 +730725,89.456,96.1575 +730726,89.478,94.1751 +730727,89.478,92.2477 +730728,89.459,90.36901 +730729,88.054,96.1589 +730730,88.11,94.1685 +730731,88.145,92.2336 +730732,88.161,90.34805 +730733,86.651,96.1588 +730734,86.743,94.1613 +730735,86.813,92.22 +730736,86.863,90.32848 +730737,85.249,96.1571 +730738,85.376,94.1535 +730739,85.48,92.2068 +730740,85.565,90.31031 +730741,83.847,96.1537 +730742,84.009,94.1452 +730743,84.148,92.194 +730744,84.266,90.29353 +730745,82.445,96.1489 +730746,82.642,94.1363 +730747,82.815,92.1817 +730748,82.968,90.27815 +730749,81.043,96.1424 +730750,81.275,94.1269 +730751,81.483,92.1698 +730752,81.67,90.26417 +730753,79.641,96.1343 +730754,79.908,94.1169 +730755,80.15,92.1584 +730756,80.371,90.25159 +730757,78.239,96.1247 +730758,78.541,94.1064 +730759,78.818,92.1474 +730760,79.073,90.24041 +730761,76.838,96.1134 +730762,77.174,94.0953 +730763,77.485,92.1368 +730764,77.774,90.23064 +730765,75.436,96.1006 +730766,75.808,94.0837 +730767,76.153,92.1267 +730768,76.475,90.22226 +730769,74.036,96.0862 +730770,74.441,94.0715 +730771,74.82,92.117 +730772,75.176,90.21527 +730773,72.635,96.0701 +730774,73.075,94.0588 +730775,73.487,92.1078 +730776,73.877,90.20968 +730777,71.235,96.0526 +730778,71.708,94.0455 +730779,72.154,92.099 +730780,72.577,90.20548 +730781,69.835,96.0334 +730782,70.342,94.0316 +730783,70.822,92.0906 +730784,71.278,90.20267 +730785,68.435,96.0126 +730786,68.976,94.0172 +730787,69.489,92.0826 +730788,69.977,90.20123 +730789,67.036,95.9903 +730790,67.61,94.0023 +730791,68.156,92.0751 +730792,68.677,90.20117 +730793,65.638,95.9664 +730794,66.245,93.9868 +730795,66.822,92.068 +730796,67.376,90.20249 +730797,64.24,95.941 +730798,64.879,93.9708 +730799,65.489,92.0614 +730800,66.075,90.20516 +730801,62.842,95.914 +730802,63.514,93.9542 +730803,64.156,92.0551 +730804,64.773,90.20919 +730805,61.445,95.8855 +730806,62.148,93.9371 +730807,62.822,92.0493 +730808,63.471,90.21456 +730809,60.049,95.8554 +730810,60.783,93.9195 +730811,61.489,92.0439 +730812,62.169,90.22128 +730813,58.653,95.8238 +730814,59.419,93.9013 +730815,60.155,92.039 +730816,60.866,90.22932 +730817,57.258,95.7907 +730818,58.054,93.8826 +730819,58.821,92.0344 +730820,59.562,90.23867 +730821,55.863,95.7562 +730822,56.69,93.8634 +730823,57.487,92.0302 +730824,58.258,90.24934 +730825,54.469,95.7201 +730826,55.326,93.8437 +730827,56.152,92.0265 +730828,56.953,90.2613 +730829,53.076,95.6825 +730830,53.962,93.8234 +730831,54.818,92.0231 +730832,55.648,90.27454 +730833,51.683,95.6436 +730834,52.598,93.8027 +730835,53.483,92.0202 +730836,54.342,90.28906 +730837,50.291,95.6031 +730838,51.235,93.7814 +730839,52.148,92.0176 +730840,53.036,90.30483 +730841,48.9,95.5613 +730842,49.872,93.7597 +730843,50.813,92.0154 +730844,51.729,90.32184 +730845,47.51,95.518 +730846,48.509,93.7374 +730847,49.478,92.0137 +730848,50.421,90.34008 +730849,46.121,95.4734 +730850,47.147,93.7147 +730851,48.142,92.0122 +730852,49.112,90.35954 +730853,44.732,95.4273 +730854,45.784,93.6915 +730855,46.806,92.0112 +730856,47.803,90.38019 +730857,43.344,95.38 +730858,44.422,93.6678 +730859,45.47,92.0105 +730860,46.493,90.40202 +730861,41.958,95.3313 +730862,43.061,93.6436 +730863,44.134,92.0102 +730864,45.182,90.42502 +730865,40.572,95.2812 +730866,41.699,93.619 +730867,42.798,92.0102 +730868,43.871,90.44916 +730869,39.186,95.2299 +730870,40.338,93.5939 +730871,41.461,92.0106 +730872,42.558,90.47443 +730873,37.802,95.1774 +730874,38.978,93.5683 +730875,40.124,92.0113 +730876,41.245,90.5008 +730877,36.419,95.1235 +730878,37.617,93.5424 +730879,38.787,92.0124 +730880,39.931,90.52827 +730881,35.037,95.0685 +730882,36.257,93.516 +730883,37.449,92.0138 +730884,38.616,90.55681 +730885,33.656,95.0123 +730886,34.898,93.4891 +730887,36.111,92.0155 +730888,37.3,90.58639 +730889,32.276,94.9548 +730890,33.538,93.4619 +730891,34.773,92.0175 +730892,35.983,90.617 +730893,30.896,94.8963 +730894,32.18,93.4342 +730895,33.435,92.0199 +730896,34.666,90.64862 +730897,29.518,94.8366 +730898,30.821,93.4061 +730899,32.096,92.0225 +730900,33.347,90.68123 +730901,28.141,94.7758 +730902,29.463,93.3776 +730903,30.757,92.0254 +730904,32.027,90.71479 +730905,26.765,94.7139 +730906,28.105,93.3488 +730907,29.418,92.0286 +730908,30.707,90.7493 +730909,25.39,94.651 +730910,26.747,93.3195 +730911,28.078,92.0321 +730912,29.385,90.78472 +730913,24.017,94.5871 +730914,25.39,93.2899 +730915,26.738,92.0359 +730916,28.063,90.82103 +730917,22.644,94.5222 +730918,24.034,93.26 +730919,25.398,92.0399 +730920,26.739,90.85821 +730921,21.272,94.4563 +730922,22.677,93.2297 +730923,24.057,92.0441 +730924,25.414,90.89624 +730925,19.902,94.3895 +730926,21.321,93.199 +730927,22.716,92.0486 +730928,24.089,90.93508 +730929,18.533,94.3218 +730930,19.966,93.168 +730931,21.375,92.0534 +730932,22.762,90.97471 +730933,17.165,94.2532 +730934,18.611,93.1367 +730935,20.033,92.0583 +730936,21.434,91.0151 +730937,15.798,94.1838 +730938,17.256,93.105 +730939,18.691,92.0635 +730940,20.105,91.0563 +730941,14.432,94.1135 +730942,15.902,93.0731 +730943,17.349,92.0689 +730944,18.775,91.0981 +730945,13.068,94.0425 +730946,14.548,93.0409 +730947,16.006,92.0744 +730948,17.444,91.1406 +730949,11.704,93.9708 +730950,13.195,93.0084 +730951,14.663,92.0802 +730952,16.111,91.1838 +730953,10.342,93.8983 +730954,11.842,92.9756 +730955,13.32,92.0861 +730956,14.778,91.2277 +730957,8.9814,93.8251 +730958,10.489,92.9425 +730959,11.976,92.0922 +730960,13.443,91.2721 +730961,7.6217,93.7513 +730962,9.1369,92.9092 +730963,10.632,92.0985 +730964,12.107,91.3171 +730965,6.2633,93.6768 +730966,7.7852,92.8757 +730967,9.2873,92.1049 +730968,10.77,91.3626 +730969,4.9061,93.6018 +730970,6.4339,92.8419 +730971,7.9424,92.1115 +730972,9.4324,91.4087 +730973,3.5502,93.5262 +730974,5.083,92.8079 +730975,6.5971,92.1181 +730976,8.0931,91.4553 +730977,2.1955,93.4501 +730978,3.7326,92.7737 +730979,5.2515,92.1249 +730980,6.7526,91.5023 +730981,0.84206,93.3735 +730982,2.3826,92.7393 +730983,3.9055,92.1318 +730984,5.4109,91.5497 +730985,359.49,93.2965 +730986,1.0331,92.7047 +730987,2.5591,92.1388 +730988,4.068,91.5975 +730989,358.14,93.219 +730990,359.68,92.6699 +730991,1.2123,92.1459 +730992,2.7239,91.6457 +730993,356.79,93.1412 +730994,358.34,92.635 +730995,359.87,92.1531 +730996,1.3786,91.6943 +730997,355.44,93.063 +730998,356.99,92.5999 +730999,358.52,92.1603 +731000,0.032129,91.7431 +731001,354.09,92.9844 +731002,355.64,92.5646 +731003,357.17,92.1676 +731004,358.68,91.7922 +731005,352.75,92.9056 +731006,354.29,92.5292 +731007,355.82,92.1749 +731008,357.34,91.8416 +731009,351.4,92.8265 +731010,352.95,92.4937 +731011,354.47,92.1823 +731012,355.99,91.8911 +731013,350.06,92.7473 +731014,351.6,92.4581 +731015,353.12,92.1897 +731016,354.63,91.9409 +731017,348.72,92.6678 +731018,350.25,92.4224 +731019,351.77,92.1971 +731020,353.28,91.9908 +731021,347.38,92.5882 +731022,348.91,92.3866 +731023,350.42,92.2045 +731024,351.93,92.0408 +731025,346.04,92.5085 +731026,347.56,92.3507 +731027,349.07,92.2119 +731028,350.57,92.0909 +731029,344.7,92.4286 +731030,346.22,92.3148 +731031,347.72,92.2192 +731032,349.22,92.141 +731033,343.36,92.3488 +731034,344.87,92.2788 +731035,346.37,92.2266 +731036,347.86,92.1912 +731037,342.03,92.2689 +731038,343.53,92.2428 +731039,345.02,92.2339 +731040,346.5,92.2414 +731041,340.69,92.1891 +731042,342.19,92.2067 +731043,343.67,92.2411 +731044,345.14,92.2915 +731045,339.36,92.1093 +731046,340.84,92.1706 +731047,342.32,92.2483 +731048,343.78,92.3415 +731049,338.03,92.0296 +731050,339.5,92.1345 +731051,340.97,92.2554 +731052,342.42,92.3915 +731053,336.69,91.95 +731054,338.16,92.0984 +731055,339.61,92.2624 +731056,341.05,92.4413 +731057,335.36,91.8706 +731058,336.82,92.0623 +731059,338.26,92.2693 +731060,339.69,92.4909 +731061,334.04,91.7914 +731062,335.48,92.0262 +731063,336.91,92.2762 +731064,338.32,92.5403 +731065,332.71,91.7124 +731066,334.13,91.9902 +731067,335.55,92.2829 +731068,336.96,92.5895 +731069,331.38,91.6336 +731070,332.79,91.9542 +731071,334.2,92.2894 +731072,335.59,92.6384 +731073,330.06,91.5552 +731074,331.45,91.9183 +731075,332.84,92.2959 +731076,334.22,92.6871 +731077,328.73,91.477 +731078,330.12,91.8824 +731079,331.49,92.3022 +731080,332.85,92.7354 +731081,327.41,91.3992 +731082,328.78,91.8466 +731083,330.13,92.3083 +731084,331.48,92.7833 +731085,326.09,91.3218 +731086,327.44,91.8109 +731087,328.78,92.3143 +731088,330.11,92.8308 +731089,324.77,91.2448 +731090,326.1,91.7753 +731091,327.42,92.32 +731092,328.73,92.8779 +731093,323.45,91.1683 +731094,324.76,91.7398 +731095,326.06,92.3256 +731096,327.36,92.9246 +731097,322.13,91.0922 +731098,323.42,91.7045 +731099,324.71,92.331 +731100,325.98,92.9708 +731101,320.81,91.0167 +731102,322.09,91.6692 +731103,323.35,92.3362 +731104,324.6,93.0164 +731105,319.5,90.94165 +731106,320.75,91.6342 +731107,321.99,92.3411 +731108,323.23,93.0615 +731109,318.18,90.8672 +731110,319.41,91.5992 +731111,320.64,92.3458 +731112,321.85,93.1061 +731113,316.87,90.79335 +731114,318.08,91.5644 +731115,319.28,92.3503 +731116,320.47,93.15 +731117,315.55,90.72013 +731118,316.74,91.5298 +731119,317.92,92.3545 +731120,319.09,93.1932 +731121,314.24,90.64757 +731122,315.41,91.4954 +731123,316.56,92.3585 +731124,317.71,93.2359 +731125,312.93,90.57569 +731126,314.07,91.4612 +731127,315.2,92.3622 +731128,316.32,93.2778 +731129,311.62,90.50452 +731130,312.74,91.4271 +731131,313.84,92.3656 +731132,314.94,93.3189 +731133,310.31,90.43409 +731134,311.4,91.3933 +731135,312.48,92.3687 +731136,313.55,93.3594 +731137,309,90.36443 +731138,310.07,91.3597 +731139,311.12,92.3715 +731140,312.17,93.399 +731141,307.69,90.29556 +731142,308.73,91.3263 +731143,309.76,92.374 +731144,310.78,93.4378 +731145,306.39,90.22752 +731146,307.4,91.2932 +731147,308.4,92.3762 +731148,309.39,93.4758 +731149,305.08,90.16032 +731150,306.07,91.2603 +731151,307.04,92.3781 +731152,308.01,93.5129 +731153,303.78,90.093988 +731154,304.74,91.2277 +731155,305.68,92.3796 +731156,306.62,93.5492 +731157,302.47,90.028553 +731158,303.4,91.1953 +731159,304.32,92.3808 +731160,305.23,93.5845 +731161,301.17,89.964039 +731162,302.07,91.1632 +731163,302.96,92.3816 +731164,303.84,93.6188 +731165,299.87,89.900467 +731166,300.74,91.1314 +731167,301.6,92.3821 +731168,302.45,93.6522 +731169,298.56,89.83786 +731170,299.41,91.0999 +731171,300.24,92.3822 +731172,301.05,93.6846 +731173,297.26,89.77625 +731174,298.08,91.0687 +731175,298.88,92.382 +731176,299.66,93.7159 +731177,295.96,89.71564 +731178,296.75,91.0377 +731179,297.51,92.3813 +731180,298.27,93.7462 +731181,294.66,89.65607 +731182,295.42,91.0071 +731183,296.15,92.3802 +731184,296.87,93.7755 +731185,293.36,89.59755 +731186,294.08,90.97683 +731187,294.79,92.3788 +731188,295.48,93.8036 +731189,292.06,89.5401 +731190,292.75,90.94686 +731191,293.43,92.3769 +731192,294.08,93.8306 +731193,290.77,89.48374 +731194,291.42,90.91723 +731195,292.07,92.3747 +731196,292.69,93.8565 +731197,289.47,89.4285 +731198,290.09,90.88794 +731199,290.7,92.372 +731200,291.29,93.8812 +731201,288.17,89.37439 +731202,288.76,90.85899 +731203,289.34,92.3689 +731204,289.89,93.9047 +731205,286.88,89.32143 +731206,287.44,90.8304 +731207,287.98,92.3653 +731208,288.5,93.927 +731209,285.58,89.26963 +731210,286.11,90.80216 +731211,286.61,92.3613 +731212,287.1,93.9481 +731213,284.29,89.21901 +731214,284.78,90.77429 +731215,285.25,92.3569 +731216,285.7,93.968 +731217,282.99,89.1696 +731218,283.45,90.74679 +731219,283.89,92.352 +731220,284.3,93.9866 +731221,281.7,89.12139 +731222,282.12,90.71967 +731223,282.52,92.3467 +731224,282.9,94.0039 +731225,280.4,89.07442 +731226,280.79,90.69293 +731227,281.16,92.3409 +731228,281.5,94.0199 +731229,279.11,89.02868 +731230,279.46,90.66658 +731231,279.8,92.3346 +731232,280.1,94.0345 +731233,277.82,88.9842 +731234,278.14,90.64061 +731235,278.43,92.3279 +731236,278.7,94.0479 +731237,276.52,88.941 +731238,276.81,90.61505 +731239,277.07,92.3206 +731240,277.3,94.0599 +731241,275.23,88.8991 +731242,275.48,90.58988 +731243,275.7,92.3129 +731244,275.9,94.0705 +731245,273.94,88.8584 +731246,274.15,90.56512 +731247,274.34,92.3047 +731248,274.5,94.0798 +731249,272.65,88.8191 +731250,272.82,90.54076 +731251,272.98,92.2961 +731252,273.1,94.0876 +731253,271.36,88.7811 +731254,271.5,90.51682 +731255,271.61,92.2869 +731256,271.7,94.0941 +731257,270.06,88.7444 +731258,270.17,90.4933 +731259,270.25,92.2772 +731260,270.3,94.0991 +731261,268.77,88.709 +731262,268.84,90.47019 +731263,268.88,92.267 +731264,268.9,94.1027 +731265,267.48,88.675 +731266,267.51,90.4475 +731267,267.52,92.2563 +731268,267.5,94.1048 +731269,266.19,88.6423 +731270,266.19,90.42524 +731271,266.16,92.2452 +731272,266.09,94.1056 +731273,264.9,88.6109 +731274,264.86,90.40341 +731275,264.79,92.2335 +731276,264.69,94.1048 +731277,263.61,88.5809 +731278,263.53,90.38201 +731279,263.43,92.2212 +731280,263.29,94.1026 +731281,262.32,88.5523 +731282,262.2,90.36103 +731283,262.06,92.2085 +731284,261.89,94.0989 +731285,261.03,88.5251 +731286,260.88,90.3405 +731287,260.7,92.1953 +731288,260.49,94.0937 +731289,259.73,88.4992 +731290,259.55,90.32039 +731291,259.34,92.1815 +731292,259.09,94.087 +731293,258.44,88.4747 +731294,258.22,90.30072 +731295,257.97,92.1672 +731296,257.69,94.0788 +731297,257.15,88.4516 +731298,256.9,90.28149 +731299,256.61,92.1524 +731300,256.29,94.0692 +731301,255.86,88.4298 +731302,255.57,90.2627 +731303,255.25,92.1371 +731304,254.89,94.058 +731305,254.57,88.4095 +731306,254.24,90.24435 +731307,253.88,92.1213 +731308,253.49,94.0453 +731309,253.28,88.3905 +731310,252.91,90.22643 +731311,252.52,92.1049 +731312,252.09,94.0311 +731313,251.99,88.3729 +731314,251.59,90.20896 +731315,251.16,92.088 +731316,250.69,94.0154 +731317,250.69,88.3566 +731318,250.26,90.19192 +731319,249.79,92.0706 +731320,249.29,93.9982 +731321,249.4,88.3418 +731322,248.93,90.17533 +731323,248.43,92.0527 +731324,247.89,93.9794 +731325,248.11,88.3283 +731326,247.6,90.15917 +731327,247.07,92.0342 +731328,246.49,93.9592 +731329,246.81,88.3162 +731330,246.28,90.14344 +731331,245.7,92.0153 +731332,245.09,93.9374 +731333,245.52,88.3054 +731334,244.95,90.12816 +731335,244.34,91.9958 +731336,243.69,93.9141 +731337,244.23,88.296 +731338,243.62,90.11331 +731339,242.98,91.9758 +731340,242.3,93.8894 +731341,242.93,88.288 +731342,242.29,90.098891 +731343,241.62,91.9552 +731344,240.9,93.8631 +731345,241.64,88.2813 +731346,240.97,90.084905 +731347,240.26,91.9342 +731348,239.5,93.8353 +731349,240.34,88.276 +731350,239.64,90.071349 +731351,238.89,91.9127 +731352,238.11,93.8061 +731353,239.05,88.272 +731354,238.31,90.05822 +731355,237.53,91.8906 +731356,236.71,93.7753 +731357,237.75,88.2693 +731358,236.98,90.045516 +731359,236.17,91.868 +731360,235.32,93.7431 +731361,236.46,88.268 +731362,235.65,90.033233 +731363,234.81,91.8449 +731364,233.93,93.7094 +731365,235.16,88.2679 +731366,234.32,90.02137 +731367,233.45,91.8214 +731368,232.53,93.6743 +731369,233.86,88.2692 +731370,232.99,90.0099231 +731371,232.09,91.7973 +731372,231.14,93.6377 +731373,232.56,88.2717 +731374,231.67,89.9988884 +731375,230.73,91.7727 +731376,229.75,93.5996 +731377,231.26,88.2755 +731378,230.34,89.988262 +731379,229.37,91.7477 +731380,228.36,93.5602 +731381,229.96,88.2806 +731382,229.01,89.978042 +731383,228.01,91.7221 +731384,226.97,93.5193 +731385,228.66,88.287 +731386,227.68,89.968222 +731387,226.65,91.6961 +731388,225.58,93.477 +731389,227.36,88.2946 +731390,226.35,89.958798 +731391,225.29,91.6696 +731392,224.19,93.4333 +731393,226.06,88.3034 +731394,225.02,89.949767 +731395,223.93,91.6426 +731396,222.8,93.3883 +731397,224.76,88.3134 +731398,223.69,89.941123 +731399,222.57,91.6152 +731400,221.42,93.3419 +731401,223.46,88.3247 +731402,222.36,89.932861 +731403,221.22,91.5873 +731404,220.03,93.2942 +731405,222.15,88.3371 +731406,221.02,89.924977 +731407,219.86,91.5589 +731408,218.65,93.2451 +731409,220.85,88.3506 +731410,219.69,89.917465 +731411,218.5,91.5301 +731412,217.26,93.1947 +731413,219.54,88.3654 +731414,218.36,89.910319 +731415,217.14,91.5009 +731416,215.88,93.143 +731417,218.23,88.3812 +731418,217.03,89.903534 +731419,215.79,91.4712 +731420,214.5,93.0901 +731421,216.93,88.3982 +731422,215.7,89.8971 +731423,214.43,91.4411 +731424,213.12,93.0359 +731425,215.62,88.4163 +731426,214.37,89.89102 +731427,213.08,91.4105 +731428,211.74,92.9804 +731429,214.31,88.4354 +731430,213.03,89.88528 +731431,211.72,91.3795 +731432,210.36,92.9238 +731433,213,88.4556 +731434,211.7,89.87988 +731435,210.36,91.3481 +731436,208.98,92.866 +731437,211.69,88.4769 +731438,210.37,89.8748 +731439,209.01,91.3164 +731440,207.61,92.807 +731441,210.38,88.4991 +731442,209.03,89.87005 +731443,207.66,91.2842 +731444,206.23,92.7468 +731445,209.06,88.5224 +731446,207.7,89.86561 +731447,206.3,91.2516 +731448,204.86,92.6855 +731449,207.75,88.5466 +731450,206.37,89.86148 +731451,204.95,91.2186 +731452,203.49,92.6231 +731453,206.43,88.5718 +731454,205.03,89.85766 +731455,203.59,91.1853 +731456,202.11,92.5597 +731457,205.12,88.5979 +731458,203.7,89.85412 +731459,202.24,91.1516 +731460,200.74,92.4952 +731461,203.8,88.625 +731462,202.36,89.85087 +731463,200.89,91.1175 +731464,199.37,92.4296 +731465,202.48,88.6529 +731466,201.03,89.8479 +731467,199.54,91.0831 +731468,198.01,92.3631 +731469,201.16,88.6817 +731470,199.69,89.84519 +731471,198.19,91.0484 +731472,196.64,92.2956 +731473,199.84,88.7113 +731474,198.36,89.84275 +731475,196.83,91.0133 +731476,195.27,92.2271 +731477,198.52,88.7417 +731478,197.02,89.84056 +731479,195.48,90.97787 +731480,193.91,92.1578 +731481,197.2,88.7729 +731482,195.68,89.83861 +731483,194.13,90.94214 +731484,192.55,92.0875 +731485,195.87,88.8049 +731486,194.35,89.8369 +731487,192.78,90.90611 +731488,191.18,92.0164 +731489,194.55,88.8376 +731490,193.01,89.83542 +731491,191.43,90.86978 +731492,189.82,91.9444 +731493,193.22,88.871 +731494,191.67,89.83416 +731495,190.09,90.83317 +731496,188.46,91.8717 +731497,191.89,88.9051 +731498,190.33,89.8331 +731499,188.74,90.79627 +731500,187.11,91.7981 +731501,190.57,88.9399 +731502,188.99,89.83225 +731503,187.39,90.75911 +731504,185.75,91.7239 +731505,189.24,88.9753 +731506,187.65,89.83158 +731507,186.04,90.72169 +731508,184.39,91.6489 +731509,187.9,89.01128 +731510,186.32,89.8311 +731511,184.69,90.68402 +731512,183.04,91.5732 +731513,186.57,89.04785 +731514,184.98,89.83079 +731515,183.35,90.64612 +731516,181.69,91.4968 +731517,185.24,89.08498 +731518,183.64,89.83065 +731519,182,90.60798 +731520,180.33,91.4199 +731521,183.9,89.12262 +731522,182.3,89.83065 +731523,180.66,90.56963 +731524,178.98,91.3423 +731525,182.57,89.16075 +731526,180.95,89.8308 +731527,179.31,90.53107 +731528,177.64,91.2642 +731529,181.23,89.19935 +731530,179.61,89.83108 +731531,177.97,90.49231 +731532,176.29,91.1856 +731533,179.89,89.23838 +731534,178.27,89.83149 +731535,176.62,90.45337 +731536,174.94,91.1065 +731537,178.55,89.27781 +731538,176.93,89.83201 +731539,175.28,90.41424 +731540,173.6,91.0269 +731541,177.21,89.31762 +731542,175.59,89.83264 +731543,173.94,90.37495 +731544,172.25,90.94684 +731545,175.87,89.35778 +731546,174.24,89.83336 +731547,172.59,90.33551 +731548,170.91,90.86642 +731549,174.52,89.39825 +731550,172.9,89.83416 +731551,171.25,90.29592 +731552,169.57,90.78563 +731553,173.18,89.43901 +731554,171.56,89.83504 +731555,169.91,90.2562 +731556,168.23,90.70452 +731557,171.83,89.48002 +731558,170.21,89.83597 +731559,168.57,90.21636 +731560,166.89,90.6231 +731561,170.49,89.52126 +731562,168.87,89.83697 +731563,167.23,90.1764 +731564,165.56,90.54143 +731565,169.14,89.5627 +731566,167.52,89.838 +731567,165.89,90.13634 +731568,164.22,90.45952 +731569,167.79,89.6043 +731570,166.18,89.83907 +731571,164.55,90.096191 +731572,162.89,90.37741 +731573,166.44,89.64603 +731574,164.83,89.84016 +731575,163.21,90.055962 +731576,161.55,90.29514 +731577,165.08,89.68787 +731578,163.49,89.84126 +731579,161.87,90.015664 +731580,160.22,90.21273 +731581,163.73,89.72979 +731582,162.14,89.84236 +731583,160.53,89.975309 +731584,158.89,90.13023 +731585,162.38,89.77174 +731586,160.79,89.84345 +731587,159.19,89.934907 +731588,157.56,90.047663 +731589,161.02,89.81371 +731590,159.45,89.84453 +731591,157.85,89.89447 +731592,156.24,89.965064 +731593,159.66,89.85566 +731594,158.1,89.84557 +731595,156.52,89.85401 +731596,154.91,89.88247 +731597,158.3,89.89756 +731598,156.75,89.84657 +731599,155.18,89.81353 +731600,153.58,89.79991 +731601,156.94,89.939383 +731602,155.4,89.84752 +731603,153.84,89.77305 +731604,152.26,89.71741 +731605,155.58,89.981093 +731606,154.05,89.84841 +731607,152.51,89.73258 +731608,150.94,89.63502 +731609,154.22,90.022662 +731610,152.71,89.84923 +731611,151.17,89.69213 +731612,149.62,89.55276 +731613,152.86,90.064059 +731614,151.36,89.84996 +731615,149.84,89.6517 +731616,148.3,89.47067 +731617,151.49,90.10525 +731618,150.01,89.85061 +731619,148.5,89.61132 +731620,146.98,89.38878 +731621,150.13,90.14621 +731622,148.66,89.85115 +731623,147.17,89.57099 +731624,145.66,89.30711 +731625,148.76,90.18691 +731626,147.31,89.85157 +731627,145.83,89.53072 +731628,144.34,89.22572 +731629,147.39,90.22732 +731630,145.95,89.85188 +731631,144.5,89.49052 +731632,143.03,89.14461 +731633,146.02,90.2674 +731634,144.6,89.85205 +731635,143.17,89.4504 +731636,141.72,89.06384 +731637,144.65,90.30712 +731638,143.25,89.85207 +731639,141.84,89.41038 +731640,140.4,88.9834 +731641,143.28,90.34647 +731642,141.9,89.85195 +731643,140.5,89.37047 +731644,139.09,88.9034 +731645,141.9,90.3854 +731646,140.55,89.85165 +731647,139.17,89.33066 +731648,137.78,88.8238 +731649,140.53,90.42388 +731650,139.19,89.85119 +731651,137.84,89.29098 +731652,136.47,88.7446 +731653,139.16,90.4619 +731654,137.84,89.85054 +731655,136.51,89.25144 +731656,135.16,88.666 +731657,137.78,90.49941 +731658,136.49,89.8497 +731659,135.18,89.21204 +731660,133.86,88.5878 +731661,136.4,90.5364 +731662,135.14,89.84866 +731663,133.85,89.17279 +731664,132.55,88.5102 +731665,135.02,90.57282 +731666,133.78,89.8474 +731667,132.52,89.13371 +731668,131.25,88.4331 +731669,133.64,90.60866 +731670,132.43,89.84592 +731671,131.19,89.09481 +731672,129.94,88.3567 +731673,132.26,90.64388 +731674,131.07,89.84421 +731675,129.86,89.05608 +731676,128.64,88.2809 +731677,130.88,90.67845 +731678,129.72,89.84226 +731679,128.54,89.01755 +731680,127.34,88.2057 +731681,129.5,90.71236 +731682,128.36,89.84006 +731683,127.21,88.9792 +731684,126.04,88.1312 +731685,128.12,90.74557 +731686,127.01,89.8376 +731687,125.88,88.9411 +731688,124.74,88.0575 +731689,126.73,90.77805 +731690,125.65,89.83488 +731691,124.55,88.9032 +731692,123.44,87.9844 +731693,125.35,90.80978 +731694,124.3,89.83188 +731695,123.23,88.8656 +731696,122.14,87.9122 +731697,123.96,90.84073 +731698,122.94,89.82859 +731699,121.9,88.8281 +731700,120.84,87.8407 +731701,122.58,90.87088 +731702,121.58,89.82501 +731703,120.57,88.791 +731704,119.54,87.77 +731705,121.19,90.9002 +731706,120.23,89.82112 +731707,119.25,88.754 +731708,118.25,87.7002 +731709,119.8,90.92866 +731710,118.87,89.81693 +731711,117.92,88.7174 +731712,116.95,87.6313 +731713,118.41,90.95624 +731714,117.51,89.81242 +731715,116.6,88.681 +731716,115.66,87.5632 +731717,117.02,90.98292 +731718,116.16,89.80758 +731719,115.27,88.6449 +731720,114.37,87.4961 +731721,115.63,91.0087 +731722,114.8,89.8024 +731723,113.95,88.6091 +731724,113.08,87.4298 +731725,114.24,91.0335 +731726,113.44,89.79689 +731727,112.62,88.5736 +731728,111.78,87.3646 +731729,112.85,91.0573 +731730,112.08,89.79102 +731731,111.3,88.5384 +731732,110.49,87.3003 +731733,111.45,91.0801 +731734,110.72,89.7848 +731735,109.97,88.5035 +731736,109.2,87.2371 +731737,110.06,91.1019 +731738,109.37,89.77822 +731739,108.65,88.4689 +731740,107.91,87.1748 +731741,108.67,91.1227 +731742,108.01,89.77126 +731743,107.33,88.4346 +731744,106.62,87.1136 +731745,107.27,91.1424 +731746,106.65,89.76393 +731747,106,88.4007 +731748,105.34,87.0535 +731749,105.88,91.161 +731750,105.29,89.75621 +731751,104.68,88.3671 +731752,104.05,86.9944 +731753,104.48,91.1785 +731754,103.93,89.7481 +731755,103.36,88.3339 +731756,102.76,86.9365 +731757,103.09,91.1949 +731758,102.57,89.73959 +731759,102.03,88.301 +731760,101.47,86.8796 +731761,101.69,91.2101 +731762,101.21,89.73068 +731763,100.71,88.2685 +731764,100.19,86.8239 +731765,100.29,91.2242 +731766,99.853,89.72137 +731767,99.39,88.2363 +731768,98.903,86.7694 +731769,98.895,91.2371 +731770,98.494,89.71164 +731771,98.068,88.2045 +731772,97.618,86.716 +731773,97.497,91.2488 +731774,97.134,89.70148 +731775,96.746,88.1731 +731776,96.333,86.6638 +731777,96.099,91.2593 +731778,95.775,89.69091 +731779,95.424,88.1421 +731780,95.049,86.6128 +731781,94.701,91.2686 +731782,94.415,89.6799 +731783,94.102,88.1114 +731784,93.765,86.563 +731785,93.302,91.2766 +731786,93.055,89.66846 +731787,92.781,88.0812 +731788,92.481,86.5145 +731789,91.903,91.2834 +731790,91.696,89.65658 +731791,91.46,88.0513 +731792,91.198,86.4671 +731793,90.504,91.2889 +731794,90.336,89.64425 +731795,90.139,88.0218 +731796,89.914,86.4211 +731797,89.104,91.2931 +731798,88.976,89.63148 +731799,88.818,87.9928 +731800,88.632,86.3763 +731801,87.705,91.296 +731802,87.616,89.61825 +731803,87.497,87.9641 +731804,87.349,86.3327 +731805,86.305,91.2975 +731806,86.256,89.60457 +731807,86.176,87.9359 +731808,86.067,86.2905 +731809,84.905,91.2978 +731810,84.896,89.59043 +731811,84.855,87.908 +731812,84.784,86.2495 +731813,83.505,91.2967 +731814,83.537,89.57583 +731815,83.535,87.8806 +731816,83.502,86.2098 +731817,82.105,91.2943 +731818,82.177,89.56076 +731819,82.214,87.8536 +731820,82.22,86.1715 +731821,80.706,91.2905 +731822,80.817,89.54522 +731823,80.893,87.827 +731824,80.938,86.1345 +731825,79.306,91.2854 +731826,79.457,89.52921 +731827,79.573,87.8009 +731828,79.656,86.0987 +731829,77.906,91.2788 +731830,78.097,89.51273 +731831,78.252,87.7752 +731832,78.374,86.0643 +731833,76.506,91.2709 +731834,76.738,89.49577 +731835,76.932,87.7499 +731836,77.092,86.0313 +731837,75.107,91.2616 +731838,75.378,89.47834 +731839,75.611,87.725 +731840,75.811,85.9996 +731841,73.707,91.2509 +731842,74.019,89.46042 +731843,74.291,87.7006 +731844,74.528,85.9692 +731845,72.308,91.2388 +731846,72.659,89.44203 +731847,72.971,87.6766 +731848,73.246,85.9402 +731849,70.909,91.2253 +731850,71.3,89.42315 +731851,71.65,87.653 +731852,71.964,85.9125 +731853,69.511,91.2104 +731854,69.941,89.4038 +731855,70.33,87.6299 +731856,70.682,85.8861 +731857,68.112,91.1941 +731858,68.582,89.38395 +731859,69.009,87.6072 +731860,69.399,85.8612 +731861,66.714,91.1764 +731862,67.223,89.36363 +731863,67.688,87.585 +731864,68.116,85.8375 +731865,65.316,91.1572 +731866,65.864,89.34282 +731867,66.368,87.5632 +731868,66.833,85.8152 +731869,63.919,91.1366 +731870,64.505,89.32153 +731871,65.047,87.5418 +731872,65.55,85.7943 +731873,62.522,91.1146 +731874,63.147,89.29975 +731875,63.726,87.5209 +731876,64.266,85.7747 +731877,61.126,91.0912 +731878,61.789,89.27749 +731879,62.405,87.5004 +731880,62.982,85.7565 +731881,59.73,91.0664 +731882,60.431,89.25475 +731883,61.084,87.4803 +731884,61.697,85.7396 +731885,58.334,91.0401 +731886,59.073,89.23152 +731887,59.763,87.4607 +731888,60.413,85.724 +731889,56.939,91.0125 +731890,57.715,89.20782 +731891,58.442,87.4415 +731892,59.127,85.7098 +731893,55.545,90.98341 +731894,56.358,89.18364 +731895,57.121,87.4228 +731896,57.842,85.6969 +731897,54.151,90.95293 +731898,55,89.15898 +731899,55.799,87.4045 +731900,56.556,85.6853 +731901,52.758,90.92105 +731902,53.643,89.13385 +731903,54.478,87.3866 +731904,55.269,85.675 +731905,51.366,90.88778 +731906,52.286,89.10824 +731907,53.156,87.3691 +731908,53.982,85.666 +731909,49.974,90.85311 +731910,50.93,89.08216 +731911,51.834,87.352 +731912,52.694,85.6584 +731913,48.583,90.81707 +731914,49.574,89.05562 +731915,50.512,87.3354 +731916,51.406,85.652 +731917,47.193,90.77965 +731918,48.218,89.02861 +731919,49.19,87.3192 +731920,50.117,85.6469 +731921,45.803,90.74087 +731922,46.862,89.00114 +731923,47.867,87.3034 +731924,48.827,85.6431 +731925,44.415,90.70072 +731926,45.507,88.9732 +731927,46.544,87.288 +731928,47.537,85.6405 +731929,43.027,90.65924 +731930,44.151,88.9448 +731931,45.222,87.2731 +731932,46.246,85.6392 +731933,41.64,90.61642 +731934,42.797,88.916 +731935,43.899,87.2585 +731936,44.954,85.6392 +731937,40.254,90.57227 +731938,41.442,88.8867 +731939,42.575,87.2443 +731940,43.662,85.6403 +731941,38.869,90.52681 +731942,40.088,88.857 +731943,41.252,87.2306 +731944,42.368,85.6427 +731945,37.485,90.48006 +731946,38.734,88.8268 +731947,39.928,87.2172 +731948,41.074,85.6463 +731949,36.101,90.43202 +731950,37.38,88.7962 +731951,38.604,87.2042 +731952,39.78,85.651 +731953,34.719,90.38271 +731954,36.027,88.7652 +731955,37.279,87.1916 +731956,38.484,85.6569 +731957,33.338,90.33214 +731958,34.675,88.7338 +731959,35.955,87.1794 +731960,37.187,85.664 +731961,31.958,90.28034 +731962,33.322,88.7019 +731963,34.63,87.1675 +731964,35.89,85.6723 +731965,30.578,90.22731 +731966,31.97,88.6696 +731967,33.305,87.1561 +731968,34.592,85.6816 +731969,29.2,90.17307 +731970,30.618,88.637 +731971,31.979,87.1449 +731972,33.293,85.6921 +731973,27.823,90.11765 +731974,29.267,88.6039 +731975,30.654,87.1342 +731976,31.992,85.7036 +731977,26.448,90.061058 +731978,27.916,88.5704 +731979,29.328,87.1238 +731980,30.691,85.7162 +731981,25.073,90.0033146 +731982,26.566,88.5365 +731983,28.001,87.1137 +731984,29.389,85.7299 +731985,23.699,89.944439 +731986,25.215,88.5023 +731987,26.675,87.104 +731988,28.086,85.7446 +731989,22.327,89.88445 +731990,23.866,88.4677 +731991,25.348,87.0946 +731992,26.782,85.7603 +731993,20.956,89.82338 +731994,22.516,88.4327 +731995,24.02,87.0855 +731996,25.476,85.777 +731997,19.586,89.76123 +731998,21.168,88.3973 +731999,22.693,87.0767 +732000,24.17,85.7947 +732001,18.217,89.69804 +732002,19.819,88.3616 +732003,21.365,87.0683 +732004,22.863,85.8133 +732005,16.85,89.63382 +732006,18.471,88.3256 +732007,20.037,87.0602 +732008,21.554,85.8329 +732009,15.484,89.56861 +732010,17.124,88.2892 +732011,18.708,87.0523 +732012,20.244,85.8533 +732013,14.119,89.50241 +732014,15.777,88.2525 +732015,17.379,87.0448 +732016,18.934,85.8747 +732017,12.755,89.43527 +732018,14.43,88.2154 +732019,16.05,87.0375 +732020,17.622,85.8969 +732021,11.393,89.36719 +732022,13.084,88.1781 +732023,14.72,87.0305 +732024,16.309,85.92 +732025,10.032,89.29821 +732026,11.738,88.1404 +732027,13.39,87.0238 +732028,14.994,85.9438 +732029,8.6722,89.22836 +732030,10.393,88.1025 +732031,12.059,87.0173 +732032,13.679,85.9685 +732033,7.3139,89.15765 +732034,9.0479,88.0642 +732035,10.728,87.0111 +732036,12.362,85.9939 +732037,5.957,89.08612 +732038,7.7035,88.0257 +732039,9.397,87.0051 +732040,11.044,86.0201 +732041,4.6014,89.01379 +732042,6.3597,87.9869 +732043,8.0654,86.9993 +732044,9.7251,86.047 +732045,3.2472,88.9407 +732046,5.0163,87.9478 +732047,6.7333,86.9938 +732048,8.4048,86.0746 +732049,1.8945,88.8668 +732050,3.6734,87.9085 +732051,5.4009,86.9885 +732052,7.0831,86.1028 +732053,0.54307,88.7923 +732054,2.331,87.869 +732055,4.0681,86.9834 +732056,5.7602,86.1317 +732057,359.19,88.717 +732058,0.98911,87.8292 +732059,2.7348,86.9785 +732060,4.436,86.1612 +732061,357.84,88.6411 +732062,359.65,87.7892 +732063,1.4012,86.9738 +732064,3.1106,86.1913 +732065,356.5,88.5646 +732066,358.31,87.7489 +732067,0.067127,86.9692 +732068,1.7838,86.222 +732069,355.15,88.4875 +732070,356.97,87.7085 +732071,358.73,86.9649 +732072,0.45576,86.2532 +732073,353.81,88.4098 +732074,355.63,87.6679 +732075,357.4,86.9607 +732076,359.13,86.2849 +732077,352.46,88.3316 +732078,354.29,87.627 +732079,356.06,86.9566 +732080,357.8,86.317 +732081,351.12,88.2528 +732082,352.95,87.586 +732083,354.73,86.9527 +732084,356.46,86.3497 +732085,349.78,88.1736 +732086,351.61,87.5449 +732087,353.39,86.9489 +732088,355.13,86.3827 +732089,348.44,88.094 +732090,350.27,87.5036 +732091,352.05,86.9453 +732092,353.8,86.4161 +732093,347.11,88.0139 +732094,348.93,87.4621 +732095,350.72,86.9417 +732096,352.46,86.4499 +732097,345.77,87.9334 +732098,347.6,87.4205 +732099,349.38,86.9383 +732100,351.12,86.4841 +732101,344.44,87.8526 +732102,346.26,87.3787 +732103,348.04,86.935 +732104,349.78,86.5185 +732105,343.1,87.7715 +732106,344.93,87.3369 +732107,346.7,86.9317 +732108,348.44,86.5533 +732109,341.77,87.6901 +732110,343.59,87.2949 +732111,345.37,86.9285 +732112,347.1,86.5882 +732113,340.44,87.6084 +732114,342.25,87.2529 +732115,344.03,86.9254 +732116,345.76,86.6234 +732117,339.11,87.5265 +732118,340.92,87.2108 +732119,342.69,86.9224 +732120,344.42,86.6588 +732121,337.79,87.4444 +732122,339.59,87.1686 +732123,341.35,86.9193 +732124,343.07,86.6944 +732125,336.46,87.3622 +732126,338.25,87.1263 +732127,340.01,86.9164 +732128,341.72,86.73 +732129,335.14,87.2798 +732130,336.92,87.084 +732131,338.67,86.9134 +732132,340.38,86.7658 +732133,333.81,87.1973 +732134,335.59,87.0416 +732135,337.32,86.9105 +732136,339.03,86.8017 +732137,332.49,87.1148 +732138,334.26,86.9992 +732139,335.98,86.9075 +732140,337.68,86.8376 +732141,331.17,87.0322 +732142,332.92,86.9568 +732143,334.64,86.9046 +732144,336.32,86.8735 +732145,329.85,86.9496 +732146,331.59,86.9143 +732147,333.3,86.9016 +732148,334.97,86.9094 +732149,328.54,86.8671 +732150,330.26,86.8719 +732151,331.96,86.8987 +732152,333.62,86.9453 +732153,327.22,86.7846 +732154,328.93,86.8295 +732155,330.61,86.8956 +732156,332.26,86.9811 +732157,325.91,86.7023 +732158,327.6,86.7871 +732159,329.27,86.8926 +732160,330.9,87.0167 +732161,324.59,86.62 +732162,326.27,86.7447 +732163,327.93,86.8895 +732164,329.55,87.0523 +732165,323.28,86.5379 +732166,324.95,86.7024 +732167,326.58,86.8863 +732168,328.19,87.0877 +732169,321.97,86.456 +732170,323.62,86.6601 +732171,325.24,86.883 +732172,326.82,87.1229 +732173,320.66,86.3744 +732174,322.29,86.6179 +732175,323.89,86.8797 +732176,325.46,87.1579 +732177,319.35,86.2929 +732178,320.96,86.5758 +732179,322.55,86.8763 +732180,324.1,87.1926 +732181,318.04,86.2118 +732182,319.64,86.5337 +732183,321.2,86.8727 +732184,322.73,87.227 +732185,316.74,86.131 +732186,318.31,86.4917 +732187,319.85,86.8691 +732188,321.37,87.2612 +732189,315.43,86.0505 +732190,316.98,86.4499 +732191,318.51,86.8653 +732192,320,87.295 +732193,314.13,85.9704 +732194,315.66,86.4081 +732195,317.16,86.8614 +732196,318.63,87.3284 +732197,312.83,85.8907 +732198,314.33,86.3665 +732199,315.81,86.8573 +732200,317.26,87.3615 +732201,311.53,85.8115 +732202,313.01,86.325 +732203,314.46,86.8531 +732204,315.89,87.3941 +732205,310.23,85.7327 +732206,311.69,86.2836 +732207,313.12,86.8487 +732208,314.52,87.4263 +732209,308.93,85.6544 +732210,310.36,86.2424 +732211,311.77,86.8442 +732212,313.15,87.458 +732213,307.63,85.5767 +732214,309.04,86.2014 +732215,310.42,86.8395 +732216,311.77,87.4892 +732217,306.34,85.4995 +732218,307.72,86.1605 +732219,309.07,86.8346 +732220,310.4,87.5199 +732221,305.04,85.4229 +732222,306.39,86.1198 +732223,307.72,86.8294 +732224,309.02,87.55 +732225,303.75,85.3468 +732226,305.07,86.0793 +732227,306.37,86.8241 +732228,307.65,87.5795 +732229,302.45,85.2715 +732230,303.75,86.039 +732231,305.02,86.8186 +732232,306.27,87.6085 +732233,301.16,85.1968 +732234,302.43,85.9989 +732235,303.67,86.8128 +732236,304.89,87.6367 +732237,299.87,85.1228 +732238,301.11,85.9591 +732239,302.32,86.8068 +732240,303.51,87.6644 +732241,298.58,85.0495 +732242,299.79,85.9194 +732243,300.97,86.8006 +732244,302.13,87.6913 +732245,297.29,84.9769 +732246,298.47,85.88 +732247,299.62,86.7941 +732248,300.75,87.7175 +732249,296,84.9051 +732250,297.15,85.8408 +732251,298.27,86.7873 +732252,299.36,87.743 +732253,294.72,84.8341 +732254,295.83,85.8019 +732255,296.91,86.7803 +732256,297.98,87.7677 +732257,293.43,84.764 +732258,294.51,85.7633 +732259,295.56,86.773 +732260,296.59,87.7917 +732261,292.15,84.6946 +732262,293.19,85.7249 +732263,294.21,86.7655 +732264,295.21,87.8148 +732265,290.86,84.6262 +732266,291.87,85.6867 +732267,292.86,86.7576 +732268,293.82,87.8371 +732269,289.58,84.5586 +732270,290.55,85.6489 +732271,291.51,86.7494 +732272,292.43,87.8586 +732273,288.3,84.492 +732274,289.24,85.6114 +732275,290.15,86.7409 +732276,291.05,87.8791 +732277,287.01,84.4263 +732278,287.92,85.5741 +732279,288.8,86.7322 +732280,289.66,87.8988 +732281,285.73,84.3615 +732282,286.6,85.5372 +732283,287.45,86.723 +732284,288.27,87.9175 +732285,284.45,84.2977 +732286,285.28,85.5006 +732287,286.09,86.7136 +732288,286.88,87.9353 +732289,283.17,84.2349 +732290,283.97,85.4643 +732291,284.74,86.7038 +732292,285.49,87.9522 +732293,281.89,84.1732 +732294,282.65,85.4283 +732295,283.38,86.6937 +732296,284.09,87.968 +732297,280.61,84.1124 +732298,281.33,85.3927 +732299,282.03,86.6833 +732300,282.7,87.9829 +732301,279.34,84.0528 +732302,280.02,85.3574 +732303,280.68,86.6725 +732304,281.31,87.9967 +732305,278.06,83.9942 +732306,278.7,85.3224 +732307,279.32,86.6613 +732308,279.92,88.0095 +732309,276.78,83.9367 +732310,277.39,85.2878 +732311,277.97,86.6497 +732312,278.52,88.0213 +732313,275.5,83.8803 +732314,276.07,85.2536 +732315,276.61,86.6378 +732316,277.13,88.0319 +732317,274.23,83.825 +732318,274.76,85.2197 +732319,275.26,86.6256 +732320,275.73,88.0415 +732321,272.95,83.7708 +732322,273.44,85.1862 +732323,273.9,86.6129 +732324,274.34,88.0499 +732325,271.68,83.7179 +732326,272.13,85.153 +732327,272.55,86.5998 +732328,272.94,88.0573 +732329,270.4,83.6661 +732330,270.81,85.1203 +732331,271.19,86.5864 +732332,271.55,88.0634 +732333,269.13,83.6154 +732334,269.5,85.0879 +732335,269.84,86.5725 +732336,270.15,88.0685 +732337,267.85,83.566 +732338,268.18,85.0559 +732339,268.48,86.5583 +732340,268.75,88.0723 +732341,266.58,83.5178 +732342,266.87,85.0243 +732343,267.13,86.5436 +732344,267.36,88.075 +732345,265.31,83.4708 +732346,265.55,84.9931 +732347,265.77,86.5286 +732348,265.96,88.0765 +732349,264.03,83.425 +732350,264.24,84.9623 +732351,264.42,86.5131 +732352,264.56,88.0767 +732353,262.76,83.3805 +732354,262.93,84.9319 +732355,263.06,86.4972 +732356,263.16,88.0758 +732357,261.49,83.3372 +732358,261.61,84.9019 +732359,261.7,86.4809 +732360,261.77,88.0736 +732361,260.22,83.2952 +732362,260.3,84.8724 +732363,260.35,86.4641 +732364,260.37,88.0701 +732365,258.94,83.2545 +732366,258.98,84.8432 +732367,258.99,86.4469 +732368,258.97,88.0654 +732369,257.67,83.215 +732370,257.67,84.8145 +732371,257.64,86.4293 +732372,257.57,88.0595 +732373,256.4,83.1768 +732374,256.36,84.7862 +732375,256.28,86.4113 +732376,256.17,88.0523 +732377,255.13,83.1399 +732378,255.04,84.7583 +732379,254.93,86.3928 +732380,254.78,88.0437 +732381,253.85,83.1043 +732382,253.73,84.7308 +732383,253.57,86.3739 +732384,253.38,88.0339 +732385,252.58,83.0701 +732386,252.42,84.7038 +732387,252.22,86.3546 +732388,251.98,88.0228 +732389,251.31,83.0371 +732390,251.1,84.6771 +732391,250.86,86.3348 +732392,250.58,88.0104 +732393,250.04,83.0054 +732394,249.79,84.651 +732395,249.51,86.3145 +732396,249.18,87.9967 +732397,248.77,82.975 +732398,248.48,84.6252 +732399,248.15,86.2939 +732400,247.79,87.9817 +732401,247.49,82.946 +732402,247.16,84.5999 +732403,246.8,86.2727 +732404,246.39,87.9654 +732405,246.22,82.9183 +732406,245.85,84.575 +732407,245.44,86.2512 +732408,244.99,87.9477 +732409,244.95,82.8918 +732410,244.54,84.5505 +732411,244.09,86.2291 +732412,243.6,87.9287 +732413,243.67,82.8667 +732414,243.22,84.5265 +732415,242.73,86.2067 +732416,242.2,87.9084 +732417,242.4,82.843 +732418,241.91,84.5029 +732419,241.38,86.1837 +732420,240.8,87.8867 +732421,241.13,82.8205 +732422,240.59,84.4797 +732423,240.02,86.1604 +732424,239.41,87.8638 +732425,239.85,82.7993 +732426,239.28,84.457 +732427,238.67,86.1366 +732428,238.01,87.8395 +732429,238.58,82.7795 +732430,237.97,84.4347 +732431,237.32,86.1123 +732432,236.62,87.8138 +732433,237.3,82.7609 +732434,236.65,84.4129 +732435,235.96,86.0876 +732436,235.22,87.7869 +732437,236.03,82.7437 +732438,235.34,84.3914 +732439,234.61,86.0625 +732440,233.83,87.7586 +732441,234.75,82.7278 +732442,234.02,84.3704 +732443,233.25,86.0369 +732444,232.44,87.729 +732445,233.47,82.7131 +732446,232.71,84.3499 +732447,231.9,86.0108 +732448,231.04,87.6981 +732449,232.2,82.6998 +732450,231.39,84.3297 +732451,230.55,85.9844 +732452,229.65,87.6659 +732453,230.92,82.6877 +732454,230.08,84.31 +732455,229.2,85.9574 +732456,228.26,87.6323 +732457,229.64,82.6769 +732458,228.76,84.2907 +732459,227.84,85.9301 +732460,226.87,87.5975 +732461,228.36,82.6673 +732462,227.45,84.2718 +732463,226.49,85.9023 +732464,225.48,87.5613 +732465,227.08,82.659 +732466,226.13,84.2533 +732467,225.14,85.8741 +732468,224.09,87.5239 +732469,225.8,82.652 +732470,224.82,84.2353 +732471,223.79,85.8454 +732472,222.7,87.4851 +732473,224.52,82.6462 +732474,223.5,84.2176 +732475,222.44,85.8164 +732476,221.31,87.4451 +732477,223.24,82.6416 +732478,222.19,84.2004 +732479,221.09,85.7869 +732480,219.93,87.4039 +732481,221.96,82.6382 +732482,220.87,84.1836 +732483,219.74,85.757 +732484,218.54,87.3613 +732485,220.67,82.6361 +732486,219.55,84.1671 +732487,218.38,85.7266 +732488,217.16,87.3176 +732489,219.39,82.6351 +732490,218.24,84.1511 +732491,217.03,85.6959 +732492,215.77,87.2725 +732493,218.11,82.6353 +732494,216.92,84.1355 +732495,215.69,85.6647 +732496,214.39,87.2263 +732497,216.82,82.6367 +732498,215.6,84.1202 +732499,214.34,85.6332 +732500,213.01,87.1788 +732501,215.53,82.6392 +732502,214.29,84.1053 +732503,212.99,85.6012 +732504,211.63,87.1302 +732505,214.25,82.6428 +732506,212.97,84.0908 +732507,211.64,85.5689 +732508,210.25,87.0803 +732509,212.96,82.6476 +732510,211.65,84.0767 +732511,210.29,85.5362 +732512,208.87,87.0293 +732513,211.67,82.6535 +732514,210.33,84.063 +732515,208.94,85.503 +732516,207.49,86.9772 +732517,210.38,82.6604 +732518,209.01,84.0496 +732519,207.59,85.4695 +732520,206.11,86.9238 +732521,209.09,82.6684 +732522,207.69,84.0366 +732523,206.25,85.4357 +732524,204.74,86.8694 +732525,207.8,82.6775 +732526,206.38,84.0239 +732527,204.9,85.4014 +732528,203.36,86.8138 +732529,206.5,82.6876 +732530,205.06,84.0115 +732531,203.55,85.3668 +732532,201.99,86.7572 +732533,205.21,82.6987 +732534,203.74,83.9996 +732535,202.21,85.3319 +732536,200.62,86.6995 +732537,203.91,82.7109 +732538,202.42,83.9879 +732539,200.86,85.2966 +732540,199.25,86.6407 +732541,202.62,82.724 +732542,201.1,83.9766 +732543,199.52,85.2609 +732544,197.88,86.5809 +732545,201.32,82.738 +732546,199.77,83.9656 +732547,198.17,85.225 +732548,196.51,86.52 +732549,200.02,82.753 +732550,198.45,83.9549 +732551,196.83,85.1887 +732552,195.14,86.4582 +732553,198.72,82.7689 +732554,197.13,83.9445 +732555,195.49,85.152 +732556,193.77,86.3954 +732557,197.42,82.7857 +732558,195.81,83.9344 +732559,194.14,85.1151 +732560,192.41,86.3316 +732561,196.12,82.8034 +732562,194.49,83.9246 +732563,192.8,85.0778 +732564,191.05,86.2669 +732565,194.82,82.8219 +732566,193.16,83.9151 +732567,191.46,85.0403 +732568,189.68,86.2013 +732569,193.51,82.8413 +732570,191.84,83.9058 +732571,190.12,85.0024 +732572,188.32,86.1348 +732573,192.21,82.8614 +732574,190.52,83.8969 +732575,188.77,84.9643 +732576,186.97,86.0675 +732577,190.9,82.8824 +732578,189.19,83.8882 +732579,187.43,84.9259 +732580,185.61,85.9993 +732581,189.59,82.904 +732582,187.87,83.8798 +732583,186.09,84.8872 +732584,184.25,85.9302 +732585,188.28,82.9265 +732586,186.54,83.8716 +732587,184.75,84.8483 +732588,182.9,85.8604 +732589,186.97,82.9496 +732590,185.22,83.8636 +732591,183.41,84.8091 +732592,181.54,85.7898 +732593,185.66,82.9734 +732594,183.89,83.8559 +732595,182.07,84.7697 +732596,180.19,85.7185 +732597,184.34,82.9979 +732598,182.57,83.8484 +732599,180.74,84.73 +732600,178.84,85.6465 +732601,183.03,83.023 +732602,181.24,83.8411 +732603,179.4,84.6901 +732604,177.49,85.5737 +732605,181.71,83.0487 +732606,179.91,83.834 +732607,178.06,84.65 +732608,176.14,85.5003 +732609,180.4,83.075 +732610,178.59,83.8271 +732611,176.72,84.6097 +732612,174.8,85.4263 +732613,179.08,83.1018 +732614,177.26,83.8204 +732615,175.39,84.5692 +732616,173.45,85.3516 +732617,177.76,83.1292 +732618,175.93,83.8139 +732619,174.05,84.5285 +732620,172.11,85.2764 +732621,176.43,83.1571 +732622,174.6,83.8075 +732623,172.72,84.4876 +732624,170.77,85.2006 +732625,175.11,83.1855 +732626,173.27,83.8014 +732627,171.38,84.4465 +732628,169.43,85.1243 +732629,173.79,83.2143 +732630,171.94,83.7953 +732631,170.05,84.4053 +732632,168.09,85.0475 +732633,172.46,83.2435 +732634,170.61,83.7894 +732635,168.71,84.3639 +732636,166.75,84.9703 +732637,171.13,83.2731 +732638,169.28,83.7837 +732639,167.38,84.3224 +732640,165.42,84.8926 +732641,169.81,83.3031 +732642,167.95,83.778 +732643,166.05,84.2807 +732644,164.08,84.8144 +732645,168.48,83.3334 +732646,166.62,83.7725 +732647,164.71,84.239 +732648,162.75,84.736 +732649,167.14,83.364 +732650,165.29,83.7671 +732651,163.38,84.1971 +732652,161.42,84.6571 +732653,165.81,83.3949 +732654,163.96,83.7618 +732655,162.05,84.1551 +732656,160.09,84.578 +732657,164.48,83.4261 +732658,162.63,83.7565 +732659,160.72,84.113 +732660,158.76,84.4985 +732661,163.14,83.4575 +732662,161.29,83.7514 +732663,159.39,84.0708 +732664,157.43,84.4188 +732665,161.81,83.489 +732666,159.96,83.7463 +732667,158.06,84.0286 +732668,156.11,84.3389 +732669,160.47,83.5208 +732670,158.62,83.7412 +732671,156.73,83.9863 +732672,154.79,84.2587 +732673,159.13,83.5527 +732674,157.29,83.7362 +732675,155.4,83.9439 +732676,153.46,84.1784 +732677,157.79,83.5847 +732678,155.96,83.7313 +732679,154.08,83.9015 +732680,152.14,84.098 +732681,156.44,83.6168 +732682,154.62,83.7264 +732683,152.75,83.859 +732684,150.82,84.0175 +732685,155.1,83.6489 +732686,153.28,83.7215 +732687,151.42,83.8166 +732688,149.51,83.9368 +732689,153.75,83.681 +732690,151.95,83.7166 +732691,150.1,83.7741 +732692,148.19,83.8562 +732693,152.41,83.7132 +732694,150.61,83.7117 +732695,148.77,83.7316 +732696,146.88,83.7755 +732697,151.06,83.7453 +732698,149.27,83.7068 +732699,147.44,83.6891 +732700,145.56,83.6949 +732701,149.71,83.7774 +732702,147.94,83.7018 +732703,146.12,83.6466 +732704,144.25,83.6142 +732705,148.36,83.8094 +732706,146.6,83.6969 +732707,144.79,83.6042 +732708,142.94,83.5337 +732709,147.01,83.8412 +732710,145.26,83.6919 +732711,143.47,83.5618 +732712,141.63,83.4533 +732713,145.65,83.8729 +732714,143.92,83.6869 +732715,142.15,83.5194 +732716,140.33,83.373 +732717,144.3,83.9044 +732718,142.58,83.6818 +732719,140.82,83.4771 +732720,139.02,83.2929 +732721,142.94,83.9358 +732722,141.24,83.6766 +732723,139.5,83.4349 +732724,137.72,83.213 +732725,141.58,83.9669 +732726,139.9,83.6713 +732727,138.18,83.3927 +732728,136.41,83.1334 +732729,140.23,83.9977 +732730,138.56,83.666 +732731,136.86,83.3507 +732732,135.11,83.054 +732733,138.86,84.0283 +732734,137.22,83.6606 +732735,135.54,83.3087 +732736,133.81,82.9748 +732737,137.5,84.0585 +732738,135.88,83.655 +732739,134.22,83.2668 +732740,132.51,82.8961 +732741,136.14,84.0884 +732742,134.54,83.6494 +732743,132.9,83.225 +732744,131.22,82.8176 +732745,134.78,84.118 +732746,133.2,83.6436 +732747,131.58,83.1834 +732748,129.92,82.7396 +732749,133.41,84.1471 +732750,131.85,83.6377 +732751,130.26,83.1419 +732752,128.62,82.6619 +732753,132.04,84.1758 +732754,130.51,83.6316 +732755,128.94,83.1005 +732756,127.33,82.5847 +732757,130.68,84.2041 +732758,129.17,83.6254 +732759,127.62,83.0593 +732760,126.04,82.508 +732761,129.31,84.2319 +732762,127.82,83.619 +732763,126.3,83.0183 +732764,124.75,82.4317 +732765,127.94,84.2592 +732766,126.48,83.6125 +732767,124.99,82.9774 +732768,123.46,82.356 +732769,126.57,84.286 +732770,125.14,83.6058 +732771,123.67,82.9367 +732772,122.17,82.2808 +732773,125.19,84.3122 +732774,123.79,83.5989 +732775,122.35,82.8962 +732776,120.88,82.2062 +732777,123.82,84.3378 +732778,122.45,83.5918 +732779,121.04,82.8559 +732780,119.59,82.1323 +732781,122.45,84.3629 +732782,121.1,83.5845 +732783,119.72,82.8158 +732784,118.31,82.0589 +732785,121.07,84.3873 +732786,119.76,83.5769 +732787,118.41,82.7759 +732788,117.02,81.9862 +732789,119.69,84.411 +732790,118.41,83.5692 +732791,117.09,82.7363 +732792,115.74,81.9142 +732793,118.32,84.4341 +732794,117.06,83.5612 +732795,115.78,82.6969 +732796,114.46,81.8429 +732797,116.94,84.4565 +732798,115.72,83.553 +732799,114.46,82.6577 +732800,113.18,81.7724 +732801,115.56,84.4782 +732802,114.37,83.5446 +732803,113.15,82.6188 +732804,111.9,81.7026 +732805,114.18,84.4991 +732806,113.02,83.5359 +732807,111.84,82.5801 +732808,110.62,81.6336 +732809,112.8,84.5193 +732810,111.67,83.5269 +732811,110.52,82.5417 +732812,109.34,81.5654 +732813,111.41,84.5387 +732814,110.33,83.5177 +732815,109.21,82.5035 +732816,108.06,81.498 +732817,110.03,84.5572 +732818,108.98,83.5082 +732819,107.9,82.4657 +732820,106.79,81.4315 +732821,108.65,84.575 +732822,107.63,83.4984 +732823,106.59,82.4281 +732824,105.51,81.3659 +732825,107.26,84.5918 +732826,106.28,83.4883 +732827,105.27,82.3908 +732828,104.24,81.3012 +732829,105.87,84.6078 +732830,104.93,83.478 +732831,103.96,82.3539 +732832,102.96,81.2373 +732833,104.49,84.623 +732834,103.58,83.4673 +732835,102.65,82.3172 +732836,101.69,81.1745 +732837,103.1,84.6371 +732838,102.23,83.4563 +732839,101.34,82.2808 +732840,100.42,81.1126 +732841,101.71,84.6504 +732842,100.89,83.445 +732843,100.03,82.2448 +732844,99.147,81.0516 +732845,100.32,84.6627 +732846,99.536,83.4334 +732847,98.72,82.2091 +732848,97.876,80.9917 +732849,98.933,84.6741 +732850,98.186,83.4214 +732851,97.41,82.1738 +732852,96.606,80.9328 +732853,97.543,84.6844 +732854,96.836,83.4091 +732855,96.101,82.1387 +732856,95.337,80.875 +732857,96.152,84.6938 +732858,95.486,83.3965 +732859,94.791,82.1041 +732860,94.068,80.8181 +732861,94.76,84.7022 +732862,94.135,83.3835 +732863,93.482,82.0698 +732864,92.8,80.7624 +732865,93.368,84.7095 +732866,92.785,83.3702 +732867,92.173,82.0358 +732868,91.532,80.7078 +732869,91.976,84.7157 +732870,91.434,83.3565 +732871,90.864,82.0022 +732872,90.265,80.6542 +732873,90.583,84.7209 +732874,90.083,83.3425 +732875,89.555,81.969 +732876,88.998,80.6018 +732877,89.189,84.725 +732878,88.732,83.3281 +732879,88.247,81.9361 +732880,87.732,80.5505 +732881,87.795,84.728 +732882,87.381,83.3133 +732883,86.938,81.9036 +732884,86.466,80.5004 +732885,86.401,84.7299 +732886,86.03,83.2982 +732887,85.63,81.8715 +732888,85.201,80.4514 +732889,85.006,84.7307 +732890,84.679,83.2826 +732891,84.322,81.8398 +732892,83.936,80.4036 +732893,83.611,84.7303 +732894,83.328,83.2667 +732895,83.014,81.8085 +732896,82.671,80.3569 +732897,82.216,84.7288 +732898,81.976,83.2504 +732899,81.706,81.7776 +732900,81.407,80.3115 +732901,80.82,84.7262 +732902,80.625,83.2338 +732903,80.399,81.7471 +732904,80.143,80.2673 +732905,79.424,84.7224 +732906,79.273,83.2167 +732907,79.091,81.7169 +732908,78.879,80.2243 +732909,78.028,84.7174 +732910,77.922,83.1992 +732911,77.784,81.6872 +732912,77.615,80.1825 +732913,76.632,84.7112 +732914,76.57,83.1813 +732915,76.476,81.6579 +732916,76.352,80.142 +732917,75.236,84.7038 +732918,75.219,83.163 +732919,75.169,81.629 +732920,75.088,80.1027 +732921,73.84,84.6952 +732922,73.867,83.1443 +732923,73.862,81.6005 +732924,73.825,80.0646 +732925,72.443,84.6854 +732926,72.516,83.1253 +732927,72.555,81.5725 +732928,72.562,80.0278 +732929,71.047,84.6744 +732930,71.164,83.1058 +732931,71.248,81.5448 +732932,71.299,79.992 +732933,69.65,84.6621 +732934,69.813,83.0858 +732935,69.941,81.5176 +732936,70.035,79.958 +732937,68.254,84.6486 +732938,68.461,83.0655 +732939,68.633,81.4908 +732940,68.772,79.925 +732941,66.857,84.6339 +732942,67.11,83.0448 +732943,67.326,81.4644 +732944,67.509,79.893 +732945,65.461,84.618 +732946,65.759,83.0236 +732947,66.019,81.4384 +732948,66.246,79.863 +732949,64.065,84.6008 +732950,64.407,83.002 +732951,64.712,81.4129 +732952,64.982,79.834 +732953,62.669,84.5823 +732954,63.056,82.98 +732955,63.405,81.3878 +732956,63.718,79.806 +732957,61.274,84.5626 +732958,61.705,82.9576 +732959,62.098,81.3631 +732960,62.455,79.779 +732961,59.878,84.5417 +732962,60.354,82.9348 +732963,60.791,81.3388 +732964,61.19,79.754 +732965,58.483,84.5195 +732966,59.003,82.9115 +732967,59.483,81.315 +732968,59.926,79.73 +732969,57.088,84.496 +732970,57.653,82.8879 +732971,58.176,81.2916 +732972,58.661,79.707 +732973,55.694,84.4713 +732974,56.302,82.8638 +732975,56.869,81.2686 +732976,57.396,79.686 +732977,54.3,84.4453 +732978,54.952,82.8392 +732979,55.561,81.246 +732980,56.131,79.666 +732981,52.906,84.4181 +732982,53.602,82.8143 +732983,54.253,81.2239 +732984,54.865,79.647 +732985,51.513,84.3896 +732986,52.252,82.789 +732987,52.946,81.2022 +732988,53.599,79.629 +732989,50.121,84.3599 +732990,50.902,82.7632 +732991,51.638,81.1809 +732992,52.332,79.613 +732993,48.729,84.329 +732994,49.552,82.737 +732995,50.33,81.1601 +732996,51.065,79.597 +732997,47.337,84.2968 +732998,48.203,82.7104 +732999,49.021,81.1396 +733000,49.798,79.584 +733001,45.946,84.2633 +733002,46.854,82.6834 +733003,47.713,81.1196 +733004,48.529,79.571 +733005,44.556,84.2286 +733006,45.505,82.656 +733007,46.405,81.1 +733008,47.261,79.56 +733009,43.167,84.1927 +733010,44.156,82.6282 +733011,45.096,81.0808 +733012,45.991,79.55 +733013,41.778,84.1556 +733014,42.808,82.6 +733015,43.787,81.062 +733016,44.721,79.541 +733017,40.39,84.1173 +733018,41.46,82.5714 +733019,42.478,81.0436 +733020,43.45,79.533 +733021,39.002,84.0777 +733022,40.112,82.5423 +733023,41.169,81.0256 +733024,42.179,79.526 +733025,37.616,84.037 +733026,38.764,82.5129 +733027,39.859,81.008 +733028,40.907,79.521 +733029,36.23,83.9951 +733030,37.417,82.4831 +733031,38.549,80.9909 +733032,39.634,79.517 +733033,34.845,83.952 +733034,36.07,82.4529 +733035,37.239,80.9741 +733036,38.36,79.514 +733037,33.461,83.9077 +733038,34.723,82.4223 +733039,35.929,80.9577 +733040,37.086,79.512 +733041,32.078,83.8623 +733042,33.377,82.3914 +733043,34.619,80.9417 +733044,35.81,79.512 +733045,30.696,83.8157 +733046,32.031,82.36 +733047,33.308,80.9261 +733048,34.534,79.512 +733049,29.315,83.768 +733050,30.685,82.3283 +733051,31.997,80.9108 +733052,33.257,79.514 +733053,27.935,83.7191 +733054,29.34,82.2962 +733055,30.685,80.8959 +733056,31.979,79.517 +733057,26.556,83.6692 +733058,27.995,82.2637 +733059,29.374,80.8814 +733060,30.7,79.52 +733061,25.178,83.6182 +733062,26.651,82.2309 +733063,28.062,80.8673 +733064,29.42,79.525 +733065,23.801,83.5661 +733066,25.306,82.1978 +733067,26.75,80.8535 +733068,28.139,79.531 +733069,22.425,83.5129 +733070,23.963,82.1642 +733071,25.437,80.8401 +733072,26.857,79.538 +733073,21.05,83.4587 +733074,22.619,82.1304 +733075,24.124,80.827 +733076,25.574,79.546 +733077,19.677,83.4034 +733078,21.276,82.0962 +733079,22.811,80.8142 +733080,24.29,79.555 +733081,18.305,83.3471 +733082,19.934,82.0617 +733083,21.497,80.8018 +733084,23.005,79.565 +733085,16.934,83.2898 +733086,18.592,82.0268 +733087,20.183,80.7897 +733088,21.718,79.576 +733089,15.564,83.2316 +733090,17.25,81.9916 +733091,18.869,80.778 +733092,20.431,79.588 +733093,14.195,83.1724 +733094,15.909,81.9561 +733095,17.554,80.7666 +733096,19.142,79.601 +733097,12.828,83.1122 +733098,14.568,81.9204 +733099,16.239,80.7554 +733100,17.853,79.615 +733101,11.462,83.0511 +733102,13.227,81.8843 +733103,14.924,80.7446 +733104,16.562,79.63 +733105,10.098,82.9892 +733106,11.888,81.8479 +733107,13.608,80.7341 +733108,15.269,79.645 +733109,8.7345,82.9263 +733110,10.548,81.8112 +733111,12.292,80.7238 +733112,13.976,79.662 +733113,7.3727,82.8626 +733114,9.2091,81.7742 +733115,10.975,80.7139 +733116,12.681,79.679 +733117,6.0123,82.798 +733118,7.8706,81.737 +733119,9.6582,80.7042 +733120,11.385,79.697 +733121,4.6533,82.7326 +733122,6.5326,81.6995 +733123,8.3408,80.6948 +733124,10.088,79.716 +733125,3.2957,82.6664 +733126,5.1951,81.6618 +733127,7.0229,80.6856 +733128,8.7896,79.735 +733129,1.9396,82.5994 +733130,3.8581,81.6238 +733131,5.7047,80.6767 +733132,7.4897,79.755 +733133,0.58495,82.5317 +733134,2.5215,81.5855 +733135,4.386,80.668 +733136,6.1885,79.776 +733137,359.23,82.4633 +733138,1.1855,81.5471 +733139,3.0668,80.6596 +733140,4.886,79.798 +733141,357.88,82.3942 +733142,359.85,81.5084 +733143,1.7473,80.6514 +733144,3.5821,79.82 +733145,356.53,82.3243 +733146,358.51,81.4694 +733147,0.42725,80.6434 +733148,2.2769,79.843 +733149,355.18,82.2539 +733150,357.18,81.4303 +733151,359.11,80.6357 +733152,0.97022,79.867 +733153,353.83,82.1828 +733154,355.85,81.391 +733155,357.79,80.6281 +733156,359.66,79.891 +733157,352.49,82.1111 +733158,354.51,81.3515 +733159,356.46,80.6208 +733160,358.35,79.916 +733161,351.14,82.0388 +733162,353.18,81.3118 +733163,355.14,80.6136 +733164,357.04,79.941 +733165,349.8,81.966 +733166,351.85,81.2719 +733167,353.82,80.6066 +733168,355.73,79.967 +733169,348.46,81.8926 +733170,350.52,81.2319 +733171,352.5,80.5997 +733172,354.42,79.993 +733173,347.12,81.8188 +733174,349.18,81.1917 +733175,351.17,80.5931 +733176,353.1,80.02 +733177,345.78,81.7444 +733178,347.85,81.1513 +733179,349.85,80.5865 +733180,351.78,80.0471 +733181,344.45,81.6697 +733182,346.52,81.1108 +733183,348.53,80.5802 +733184,350.47,80.0747 +733185,343.11,81.5945 +733186,345.19,81.0702 +733187,347.2,80.5739 +733188,349.15,80.1026 +733189,341.78,81.5189 +733190,343.86,81.0295 +733191,345.88,80.5678 +733192,347.83,80.1309 +733193,340.45,81.443 +733194,342.54,80.9886 +733195,344.55,80.5618 +733196,346.5,80.1595 +733197,339.12,81.3668 +733198,341.21,80.9477 +733199,343.23,80.5559 +733200,345.18,80.1884 +733201,337.79,81.2902 +733202,339.88,80.9067 +733203,341.9,80.5501 +733204,343.85,80.2176 +733205,336.47,81.2134 +733206,338.55,80.8655 +733207,340.57,80.5444 +733208,342.53,80.247 +733209,335.14,81.1363 +733210,337.23,80.8244 +733211,339.24,80.5387 +733212,341.2,80.2766 +733213,333.82,81.0591 +733214,335.9,80.7831 +733215,337.92,80.5332 +733216,339.87,80.3064 +733217,332.5,80.9816 +733218,334.58,80.7418 +733219,336.59,80.5276 +733220,338.54,80.3363 +733221,331.18,80.904 +733222,333.25,80.7004 +733223,335.26,80.5222 +733224,337.2,80.3664 +733225,329.86,80.8262 +733226,331.93,80.659 +733227,333.93,80.5168 +733228,335.87,80.3965 +733229,328.54,80.7484 +733230,330.6,80.6176 +733231,332.6,80.5114 +733232,334.53,80.4268 +733233,327.22,80.6705 +733234,329.28,80.5762 +733235,331.27,80.506 +733236,333.2,80.4571 +733237,325.91,80.5925 +733238,327.96,80.5348 +733239,329.94,80.5006 +733240,331.86,80.4874 +733241,324.6,80.5146 +733242,326.64,80.4933 +733243,328.61,80.4953 +733244,330.52,80.5177 +733245,323.29,80.4367 +733246,325.31,80.4519 +733247,327.28,80.4899 +733248,329.18,80.5479 +733249,321.98,80.3588 +733250,323.99,80.4105 +733251,325.94,80.4845 +733252,327.83,80.5781 +733253,320.67,80.281 +733254,322.67,80.3692 +733255,324.61,80.4791 +733256,326.49,80.6082 +733257,319.37,80.2033 +733258,321.35,80.3278 +733259,323.28,80.4737 +733260,325.14,80.6381 +733261,318.06,80.1257 +733262,320.03,80.2866 +733263,321.94,80.4682 +733264,323.8,80.6679 +733265,316.76,80.0484 +733266,318.71,80.2454 +733267,320.61,80.4627 +733268,322.45,80.6976 +733269,315.46,79.971 +733270,317.4,80.2043 +733271,319.27,80.457 +733272,321.1,80.727 +733273,314.16,79.894 +733274,316.08,80.1632 +733275,317.94,80.4514 +733276,319.74,80.7562 +733277,312.86,79.818 +733278,314.76,80.1222 +733279,316.6,80.4456 +733280,318.39,80.7851 +733281,311.56,79.741 +733282,313.44,80.0814 +733283,315.27,80.4398 +733284,317.04,80.8137 +733285,310.27,79.665 +733286,312.13,80.0406 +733287,313.93,80.4338 +733288,315.68,80.8421 +733289,308.97,79.589 +733290,310.81,80 +733291,312.59,80.4277 +733292,314.32,80.87 +733293,307.68,79.514 +733294,309.5,79.96 +733295,311.26,80.4216 +733296,312.97,80.8977 +733297,306.39,79.439 +733298,308.18,79.919 +733299,309.92,80.4153 +733300,311.61,80.9249 +733301,305.1,79.364 +733302,306.87,79.879 +733303,308.58,80.4088 +733304,310.25,80.9517 +733305,303.81,79.29 +733306,305.55,79.839 +733307,307.24,80.4022 +733308,308.88,80.978 +733309,302.53,79.217 +733310,304.24,79.799 +733311,305.9,80.3955 +733312,307.52,81.0039 +733313,301.24,79.144 +733314,302.93,79.759 +733315,304.57,80.3886 +733316,306.15,81.0293 +733317,299.96,79.071 +733318,301.62,79.72 +733319,303.23,80.3815 +733320,304.79,81.0542 +733321,298.67,78.999 +733322,300.3,79.68 +733323,301.89,80.3743 +733324,303.42,81.0785 +733325,297.39,78.928 +733326,298.99,79.641 +733327,300.55,80.3668 +733328,302.05,81.1023 +733329,296.11,78.857 +733330,297.68,79.602 +733331,299.2,80.3592 +733332,300.68,81.1254 +733333,294.83,78.787 +733334,296.37,79.564 +733335,297.86,80.3514 +733336,299.31,81.148 +733337,293.55,78.717 +733338,295.06,79.525 +733339,296.52,80.3433 +733340,297.94,81.1699 +733341,292.28,78.649 +733342,293.75,79.487 +733343,295.18,80.335 +733344,296.57,81.1912 +733345,291,78.58 +733346,292.44,79.449 +733347,293.84,80.3265 +733348,295.19,81.2117 +733349,289.72,78.513 +733350,291.13,79.411 +733351,292.49,80.3178 +733352,293.82,81.2316 +733353,288.45,78.447 +733354,289.82,79.373 +733355,291.15,80.3088 +733356,292.44,81.2507 +733357,287.18,78.381 +733358,288.51,79.336 +733359,289.81,80.2996 +733360,291.06,81.2691 +733361,285.91,78.316 +733362,287.21,79.299 +733363,288.46,80.2901 +733364,289.68,81.2867 +733365,284.64,78.252 +733366,285.9,79.262 +733367,287.12,80.2804 +733368,288.3,81.3035 +733369,283.37,78.189 +733370,284.59,79.226 +733371,285.78,80.2704 +733372,286.92,81.3195 +733373,282.1,78.126 +733374,283.28,79.19 +733375,284.43,80.2601 +733376,285.54,81.3346 +733377,280.83,78.065 +733378,281.98,79.154 +733379,283.09,80.2495 +733380,284.16,81.349 +733381,279.56,78.004 +733382,280.67,79.119 +733383,281.74,80.2387 +733384,282.78,81.3624 +733385,278.3,77.944 +733386,279.37,79.083 +733387,280.4,80.2275 +733388,281.39,81.3749 +733389,277.03,77.886 +733390,278.06,79.048 +733391,279.05,80.216 +733392,280.01,81.3866 +733393,275.77,77.828 +733394,276.76,79.014 +733395,277.71,80.2042 +733396,278.62,81.3973 +733397,274.5,77.771 +733398,275.45,78.98 +733399,276.36,80.1922 +733400,277.23,81.4071 +733401,273.24,77.716 +733402,274.15,78.946 +733403,275.01,80.1797 +733404,275.85,81.4159 +733405,271.98,77.661 +733406,272.84,78.912 +733407,273.67,80.167 +733408,274.46,81.4237 +733409,270.72,77.608 +733410,271.54,78.879 +733411,272.32,80.1539 +733412,273.07,81.4306 +733413,269.46,77.555 +733414,270.23,78.846 +733415,270.97,80.1405 +733416,271.68,81.4364 +733417,268.2,77.504 +733418,268.93,78.814 +733419,269.63,80.1268 +733420,270.29,81.4412 +733421,266.94,77.453 +733422,267.63,78.782 +733423,268.28,80.1127 +733424,268.9,81.445 +733425,265.68,77.404 +733426,266.32,78.75 +733427,266.93,80.0983 +733428,267.51,81.4478 +733429,264.42,77.356 +733430,265.02,78.718 +733431,265.58,80.0835 +733432,266.12,81.4494 +733433,263.16,77.309 +733434,263.72,78.687 +733435,264.24,80.0683 +733436,264.73,81.45 +733437,261.9,77.263 +733438,262.41,78.657 +733439,262.89,80.0528 +733440,263.33,81.4496 +733441,260.65,77.218 +733442,261.11,78.626 +733443,261.54,80.0369 +733444,261.94,81.448 +733445,259.39,77.175 +733446,259.81,78.597 +733447,260.19,80.0206 +733448,260.55,81.4453 +733449,258.13,77.132 +733450,258.51,78.567 +733451,258.85,80.004 +733452,259.15,81.4415 +733453,256.88,77.091 +733454,257.2,78.538 +733455,257.5,79.987 +733456,257.76,81.4365 +733457,255.62,77.051 +733458,255.9,78.509 +733459,256.15,79.97 +733460,256.37,81.4305 +733461,254.37,77.013 +733462,254.6,78.481 +733463,254.8,79.952 +733464,254.97,81.4232 +733465,253.11,76.975 +733466,253.3,78.453 +733467,253.45,79.934 +733468,253.58,81.4149 +733469,251.85,76.939 +733470,251.99,78.426 +733471,252.1,79.915 +733472,252.18,81.4053 +733473,250.6,76.904 +733474,250.69,78.399 +733475,250.76,79.896 +733476,250.79,81.3946 +733477,249.34,76.87 +733478,249.39,78.372 +733479,249.41,79.877 +733480,249.39,81.3827 +733481,248.09,76.837 +733482,248.09,78.346 +733483,248.06,79.857 +733484,248,81.3697 +733485,246.83,76.806 +733486,246.79,78.32 +733487,246.71,79.837 +733488,246.6,81.3554 +733489,245.58,76.776 +733490,245.49,78.295 +733491,245.36,79.816 +733492,245.21,81.34 +733493,244.32,76.747 +733494,244.18,78.27 +733495,244.01,79.796 +733496,243.81,81.3234 +733497,243.07,76.719 +733498,242.88,78.245 +733499,242.67,79.774 +733500,242.41,81.3055 +733501,241.81,76.693 +733502,241.58,78.221 +733503,241.32,79.752 +733504,241.02,81.2865 +733505,240.56,76.668 +733506,240.28,78.197 +733507,239.97,79.73 +733508,239.62,81.2663 +733509,239.3,76.644 +733510,238.98,78.174 +733511,238.62,79.708 +733512,238.23,81.2448 +733513,238.04,76.621 +733514,237.68,78.151 +733515,237.27,79.685 +733516,236.83,81.2222 +733517,236.79,76.6 +733518,236.37,78.128 +733519,235.93,79.662 +733520,235.44,81.1984 +733521,235.53,76.58 +733522,235.07,78.106 +733523,234.58,79.638 +733524,234.05,81.1733 +733525,234.27,76.561 +733526,233.77,78.085 +733527,233.23,79.614 +733528,232.65,81.1471 +733529,233.02,76.543 +733530,232.47,78.064 +733531,231.88,79.589 +733532,231.26,81.1196 +733533,231.76,76.527 +733534,231.17,78.043 +733535,230.54,79.564 +733536,229.87,81.091 +733537,230.5,76.512 +733538,229.86,78.022 +733539,229.19,79.539 +733540,228.47,81.0611 +733541,229.24,76.498 +733542,228.56,78.002 +733543,227.84,79.513 +733544,227.08,81.0301 +733545,227.98,76.485 +733546,227.26,77.983 +733547,226.5,79.487 +733548,225.69,80.9979 +733549,226.72,76.474 +733550,225.96,77.964 +733551,225.15,79.461 +733552,224.3,80.9645 +733553,225.46,76.464 +733554,224.65,77.945 +733555,223.8,79.434 +733556,222.91,80.9299 +733557,224.2,76.455 +733558,223.35,77.926 +733559,222.46,79.406 +733560,221.52,80.8941 +733561,222.94,76.447 +733562,222.05,77.908 +733563,221.11,79.379 +733564,220.13,80.8572 +733565,221.68,76.44 +733566,220.74,77.891 +733567,219.77,79.351 +733568,218.74,80.8191 +733569,220.42,76.435 +733570,219.44,77.874 +733571,218.42,79.322 +733572,217.35,80.7799 +733573,219.15,76.43 +733574,218.14,77.857 +733575,217.07,79.293 +733576,215.97,80.7395 +733577,217.89,76.427 +733578,216.83,77.841 +733579,215.73,79.264 +733580,214.58,80.698 +733581,216.62,76.425 +733582,215.53,77.825 +733583,214.39,79.235 +733584,213.19,80.6554 +733585,215.36,76.424 +733586,214.22,77.809 +733587,213.04,79.205 +733588,211.81,80.6117 +733589,214.09,76.424 +733590,212.92,77.794 +733591,211.7,79.174 +733592,210.43,80.5668 +733593,212.82,76.426 +733594,211.61,77.779 +733595,210.35,79.144 +733596,209.04,80.5209 +733597,211.55,76.428 +733598,210.31,77.764 +733599,209.01,79.113 +733600,207.66,80.4739 +733601,210.28,76.432 +733602,209,77.75 +733603,207.67,79.081 +733604,206.28,80.4258 +733605,209.01,76.436 +733606,207.69,77.736 +733607,206.33,79.05 +733608,204.9,80.3767 +733609,207.74,76.442 +733610,206.39,77.723 +733611,204.98,79.018 +733612,203.52,80.3265 +733613,206.47,76.448 +733614,205.08,77.71 +733615,203.64,78.985 +733616,202.14,80.2753 +733617,205.2,76.456 +733618,203.77,77.697 +733619,202.3,78.953 +733620,200.77,80.2231 +733621,203.92,76.465 +733622,202.47,77.685 +733623,200.96,78.919 +733624,199.39,80.1699 +733625,202.65,76.474 +733626,201.16,77.673 +733627,199.62,78.886 +733628,198.02,80.1157 +733629,201.37,76.485 +733630,199.85,77.661 +733631,198.28,78.852 +733632,196.64,80.0605 +733633,200.09,76.496 +733634,198.54,77.649 +733635,196.94,78.818 +733636,195.27,80.0044 +733637,198.81,76.509 +733638,197.23,77.638 +733639,195.6,78.784 +733640,193.9,79.947 +733641,197.53,76.522 +733642,195.92,77.628 +733643,194.26,78.75 +733644,192.53,79.889 +733645,196.25,76.536 +733646,194.61,77.617 +733647,192.92,78.715 +733648,191.16,79.831 +733649,194.97,76.551 +733650,193.3,77.607 +733651,191.58,78.68 +733652,189.79,79.771 +733653,193.68,76.567 +733654,191.99,77.597 +733655,190.25,78.644 +733656,188.43,79.71 +733657,192.4,76.584 +733658,190.68,77.587 +733659,188.91,78.608 +733660,187.06,79.649 +733661,191.11,76.601 +733662,189.37,77.578 +733663,187.57,78.572 +733664,185.7,79.587 +733665,189.82,76.62 +733666,188.06,77.569 +733667,186.24,78.536 +733668,184.34,79.524 +733669,188.53,76.639 +733670,186.75,77.56 +733671,184.9,78.5 +733672,182.98,79.46 +733673,187.24,76.659 +733674,185.44,77.551 +733675,183.57,78.463 +733676,181.62,79.395 +733677,185.95,76.679 +733678,184.12,77.543 +733679,182.23,78.426 +733680,180.26,79.33 +733681,184.66,76.7 +733682,182.81,77.535 +733683,180.9,78.389 +733684,178.91,79.264 +733685,183.36,76.722 +733686,181.5,77.527 +733687,179.56,78.352 +733688,177.55,79.198 +733689,182.07,76.744 +733690,180.18,77.519 +733691,178.23,78.314 +733692,176.2,79.13 +733693,180.77,76.767 +733694,178.87,77.512 +733695,176.9,78.276 +733696,174.85,79.062 +733697,179.47,76.791 +733698,177.55,77.504 +733699,175.56,78.238 +733700,173.5,78.994 +733701,178.17,76.815 +733702,176.24,77.497 +733703,174.23,78.2 +733704,172.15,78.925 +733705,176.87,76.84 +733706,174.92,77.491 +733707,172.9,78.162 +733708,170.81,78.855 +733709,175.56,76.865 +733710,173.6,77.484 +733711,171.57,78.123 +733712,169.46,78.785 +733713,174.26,76.891 +733714,172.29,77.477 +733715,170.24,78.084 +733716,168.12,78.714 +733717,172.95,76.917 +733718,170.97,77.471 +733719,168.91,78.045 +733720,166.78,78.643 +733721,171.65,76.943 +733722,169.65,77.465 +733723,167.58,78.006 +733724,165.44,78.571 +733725,170.34,76.97 +733726,168.33,77.459 +733727,166.26,77.967 +733728,164.1,78.499 +733729,169.03,76.998 +733730,167.01,77.453 +733731,164.93,77.928 +733732,162.76,78.426 +733733,167.71,77.025 +733734,165.69,77.447 +733735,163.6,77.889 +733736,161.43,78.353 +733737,166.4,77.053 +733738,164.37,77.441 +733739,162.27,77.849 +733740,160.09,78.28 +733741,165.08,77.082 +733742,163.05,77.435 +733743,160.95,77.81 +733744,158.76,78.207 +733745,163.77,77.11 +733746,161.73,77.43 +733747,159.62,77.77 +733748,157.43,78.133 +733749,162.45,77.139 +733750,160.41,77.425 +733751,158.3,77.73 +733752,156.1,78.058 +733753,161.13,77.168 +733754,159.09,77.419 +733755,156.97,77.69 +733756,154.77,77.984 +733757,159.81,77.197 +733758,157.76,77.414 +733759,155.65,77.651 +733760,153.45,77.909 +733761,158.48,77.227 +733762,156.44,77.409 +733763,154.33,77.611 +733764,152.13,77.835 +733765,157.16,77.256 +733766,155.12,77.404 +733767,153,77.571 +733768,150.81,77.76 +733769,155.83,77.286 +733770,153.79,77.398 +733771,151.68,77.531 +733772,149.49,77.684 +733773,154.51,77.315 +733774,152.47,77.393 +733775,150.36,77.491 +733776,148.17,77.609 +733777,153.18,77.345 +733778,151.14,77.388 +733779,149.04,77.451 +733780,146.85,77.534 +733781,151.85,77.375 +733782,149.82,77.383 +733783,147.72,77.41 +733784,145.54,77.459 +733785,150.51,77.404 +733786,148.49,77.378 +733787,146.4,77.37 +733788,144.22,77.383 +733789,149.18,77.434 +733790,147.16,77.373 +733791,145.08,77.33 +733792,142.91,77.308 +733793,147.84,77.464 +733794,145.84,77.368 +733795,143.76,77.29 +733796,141.6,77.233 +733797,146.51,77.493 +733798,144.51,77.363 +733799,142.44,77.25 +733800,140.29,77.157 +733801,145.17,77.522 +733802,143.18,77.358 +733803,141.12,77.21 +733804,138.99,77.082 +733805,143.83,77.552 +733806,141.85,77.353 +733807,139.81,77.17 +733808,137.68,77.007 +733809,142.49,77.581 +733810,140.52,77.348 +733811,138.49,77.131 +733812,136.38,76.932 +733813,141.14,77.61 +733814,139.19,77.342 +733815,137.17,77.091 +733816,135.08,76.858 +733817,139.8,77.638 +733818,137.86,77.337 +733819,135.86,77.051 +733820,133.78,76.783 +733821,138.45,77.667 +733822,136.53,77.332 +733823,134.54,77.012 +733824,132.48,76.709 +733825,137.11,77.695 +733826,135.2,77.326 +733827,133.23,76.972 +733828,131.18,76.635 +733829,135.76,77.722 +733830,133.87,77.321 +733831,131.92,76.933 +733832,129.89,76.561 +733833,134.41,77.75 +733834,132.54,77.315 +733835,130.6,76.893 +733836,128.59,76.488 +733837,133.05,77.777 +733838,131.21,77.309 +733839,129.29,76.854 +733840,127.3,76.415 +733841,131.7,77.804 +733842,129.87,77.303 +733843,127.98,76.815 +733844,126.01,76.342 +733845,130.35,77.83 +733846,128.54,77.297 +733847,126.67,76.776 +733848,124.72,76.27 +733849,128.99,77.856 +733850,127.21,77.291 +733851,125.35,76.738 +733852,123.43,76.198 +733853,127.63,77.881 +733854,125.87,77.285 +733855,124.04,76.699 +733856,122.15,76.127 +733857,126.27,77.906 +733858,124.54,77.278 +733859,122.73,76.661 +733860,120.86,76.056 +733861,124.91,77.931 +733862,123.2,77.271 +733863,121.42,76.622 +733864,119.58,75.986 +733865,123.55,77.954 +733866,121.86,77.265 +733867,120.11,76.584 +733868,118.3,75.916 +733869,122.19,77.978 +733870,120.53,77.258 +733871,118.81,76.546 +733872,117.02,75.847 +733873,120.83,78 +733874,119.19,77.25 +733875,117.5,76.509 +733876,115.74,75.778 +733877,119.46,78.023 +733878,117.85,77.243 +733879,116.19,76.471 +733880,114.46,75.71 +733881,118.09,78.044 +733882,116.52,77.235 +733883,114.88,76.434 +733884,113.18,75.643 +733885,116.73,78.065 +733886,115.18,77.227 +733887,113.58,76.397 +733888,111.91,75.576 +733889,115.36,78.085 +733890,113.84,77.219 +733891,112.27,76.36 +733892,110.64,75.51 +733893,113.99,78.104 +733894,112.5,77.211 +733895,110.96,76.324 +733896,109.36,75.445 +733897,112.61,78.123 +733898,111.16,77.203 +733899,109.66,76.287 +733900,108.09,75.38 +733901,111.24,78.141 +733902,109.82,77.194 +733903,108.35,76.251 +733904,106.82,75.316 +733905,109.87,78.159 +733906,108.48,77.185 +733907,107.05,76.216 +733908,105.55,75.253 +733909,108.49,78.175 +733910,107.14,77.176 +733911,105.74,76.18 +733912,104.29,75.191 +733913,107.12,78.191 +733914,105.8,77.166 +733915,104.44,76.145 +733916,103.02,75.13 +733917,105.74,78.206 +733918,104.46,77.156 +733919,103.14,76.11 +733920,101.75,75.069 +733921,104.36,78.22 +733922,103.12,77.146 +733923,101.83,76.075 +733924,100.49,75.009 +733925,102.98,78.233 +733926,101.78,77.136 +733927,100.53,76.041 +733928,99.227,74.951 +733929,101.6,78.245 +733930,100.44,77.125 +733931,99.227,76.007 +733932,97.965,74.893 +733933,100.22,78.256 +733934,99.097,77.114 +733935,97.925,75.973 +733936,96.703,74.836 +733937,98.841,78.267 +733938,97.755,77.103 +733939,96.623,75.94 +733940,95.443,74.78 +733941,97.458,78.277 +733942,96.413,77.091 +733943,95.322,75.907 +733944,94.183,74.725 +733945,96.075,78.285 +733946,95.07,77.08 +733947,94.02,75.874 +733948,92.925,74.671 +733949,94.69,78.293 +733950,93.727,77.067 +733951,92.719,75.842 +733952,91.667,74.618 +733953,93.305,78.3 +733954,92.383,77.055 +733955,91.419,75.81 +733956,90.41,74.566 +733957,91.919,78.305 +733958,91.04,77.042 +733959,90.118,75.778 +733960,89.154,74.515 +733961,90.532,78.31 +733962,89.696,77.029 +733963,88.818,75.746 +733964,87.898,74.465 +733965,89.145,78.314 +733966,88.352,77.015 +733967,87.519,75.715 +733968,86.643,74.416 +733969,87.757,78.316 +733970,87.008,77.001 +733971,86.219,75.685 +733972,85.389,74.368 +733973,86.368,78.318 +733974,85.663,76.987 +733975,84.92,75.655 +733976,84.136,74.322 +733977,84.979,78.319 +733978,84.319,76.973 +733979,83.62,75.625 +733980,82.883,74.276 +733981,83.589,78.318 +733982,82.974,76.958 +733983,82.322,75.595 +733984,81.63,74.232 +733985,82.198,78.317 +733986,81.629,76.942 +733987,81.023,75.566 +733988,80.379,74.188 +733989,80.807,78.314 +733990,80.284,76.927 +733991,79.724,75.537 +733992,79.127,74.146 +733993,79.415,78.31 +733994,78.938,76.911 +733995,78.426,75.509 +733996,77.876,74.105 +733997,78.023,78.305 +733998,77.593,76.894 +733999,77.128,75.481 +734000,76.626,74.065 +734001,76.631,78.299 +734002,76.248,76.878 +734003,75.83,75.453 +734004,75.376,74.027 +734005,75.238,78.292 +734006,74.902,76.861 +734007,74.532,75.426 +734008,74.126,73.989 +734009,73.845,78.284 +734010,73.556,76.843 +734011,73.234,75.399 +734012,72.877,73.953 +734013,72.452,78.275 +734014,72.211,76.825 +734015,71.936,75.372 +734016,71.628,73.918 +734017,71.058,78.264 +734018,70.865,76.807 +734019,70.639,75.346 +734020,70.379,73.884 +734021,69.664,78.253 +734022,69.519,76.788 +734023,69.341,75.321 +734024,69.13,73.851 +734025,68.27,78.24 +734026,68.173,76.769 +734027,68.044,75.295 +734028,67.881,73.819 +734029,66.875,78.226 +734030,66.827,76.75 +734031,66.746,75.271 +734032,66.633,73.789 +734033,65.481,78.211 +734034,65.481,76.73 +734035,65.449,75.246 +734036,65.384,73.76 +734037,64.086,78.194 +734038,64.135,76.71 +734039,64.152,75.222 +734040,64.136,73.732 +734041,62.691,78.177 +734042,62.789,76.689 +734043,62.854,75.198 +734044,62.887,73.706 +734045,61.297,78.158 +734046,61.443,76.668 +734047,61.557,75.175 +734048,61.639,73.68 +734049,59.902,78.138 +734050,60.097,76.647 +734051,60.26,75.152 +734052,60.391,73.656 +734053,58.507,78.117 +734054,58.751,76.625 +734055,58.963,75.13 +734056,59.142,73.633 +734057,57.113,78.095 +734058,57.405,76.603 +734059,57.665,75.108 +734060,57.893,73.612 +734061,55.718,78.072 +734062,56.06,76.58 +734063,56.368,75.086 +734064,56.644,73.591 +734065,54.324,78.047 +734066,54.714,76.557 +734067,55.071,75.065 +734068,55.395,73.572 +734069,52.93,78.022 +734070,53.368,76.534 +734071,53.773,75.044 +734072,54.146,73.554 +734073,51.536,77.995 +734074,52.023,76.51 +734075,52.476,75.024 +734076,52.896,73.537 +734077,50.142,77.967 +734078,50.678,76.486 +734079,51.178,75.004 +734080,51.646,73.522 +734081,48.749,77.938 +734082,49.332,76.462 +734083,49.881,74.985 +734084,50.395,73.507 +734085,47.356,77.907 +734086,47.987,76.437 +734087,48.583,74.965 +734088,49.145,73.494 +734089,45.963,77.876 +734090,46.642,76.411 +734091,47.285,74.947 +734092,47.893,73.482 +734093,44.571,77.843 +734094,45.298,76.386 +734095,45.987,74.928 +734096,46.642,73.472 +734097,43.18,77.809 +734098,43.953,76.36 +734099,44.689,74.91 +734100,45.389,73.462 +734101,41.788,77.774 +734102,42.608,76.333 +734103,43.39,74.893 +734104,44.137,73.454 +734105,40.398,77.738 +734106,41.264,76.306 +734107,42.092,74.876 +734108,42.883,73.447 +734109,39.008,77.701 +734110,39.92,76.279 +734111,40.793,74.859 +734112,41.629,73.441 +734113,37.618,77.662 +734114,38.576,76.252 +734115,39.494,74.843 +734116,40.375,73.436 +734117,36.229,77.623 +734118,37.233,76.224 +734119,38.195,74.827 +734120,39.119,73.432 +734121,34.841,77.582 +734122,35.89,76.195 +734123,36.896,74.811 +734124,37.863,73.43 +734125,33.453,77.541 +734126,34.547,76.167 +734127,35.596,74.796 +734128,36.606,73.428 +734129,32.067,77.498 +734130,33.204,76.138 +734131,34.296,74.781 +734132,35.349,73.428 +734133,30.681,77.454 +734134,31.861,76.108 +734135,32.996,74.766 +734136,34.09,73.429 +734137,29.295,77.409 +734138,30.519,76.079 +734139,31.696,74.752 +734140,32.831,73.431 +734141,27.911,77.363 +734142,29.177,76.048 +734143,30.395,74.738 +734144,31.571,73.433 +734145,26.528,77.316 +734146,27.836,76.018 +734147,29.095,74.725 +734148,30.31,73.437 +734149,25.145,77.268 +734150,26.494,75.987 +734151,27.793,74.712 +734152,29.048,73.443 +734153,23.764,77.219 +734154,25.154,75.956 +734155,26.492,74.699 +734156,27.785,73.449 +734157,22.383,77.169 +734158,23.813,75.925 +734159,25.19,74.687 +734160,26.521,73.456 +734161,21.003,77.118 +734162,22.473,75.893 +734163,23.888,74.675 +734164,25.256,73.464 +734165,19.625,77.066 +734166,21.133,75.861 +734167,22.586,74.663 +734168,23.99,73.473 +734169,18.247,77.013 +734170,19.793,75.828 +734171,21.283,74.652 +734172,22.723,73.483 +734173,16.871,76.959 +734174,18.454,75.796 +734175,19.98,74.641 +734176,21.455,73.494 +734177,15.496,76.904 +734178,17.116,75.763 +734179,18.676,74.63 +734180,20.186,73.506 +734181,14.122,76.848 +734182,15.777,75.729 +734183,17.373,74.619 +734184,18.915,73.519 +734185,12.749,76.792 +734186,14.44,75.696 +734187,16.068,74.609 +734188,17.644,73.532 +734189,11.377,76.734 +734190,13.102,75.662 +734191,14.764,74.599 +734192,16.371,73.547 +734193,10.007,76.676 +734194,11.765,75.628 +734195,13.459,74.59 +734196,15.097,73.562 +734197,8.6378,76.617 +734198,10.429,75.593 +734199,12.153,74.581 +734200,13.821,73.579 +734201,7.2701,76.557 +734202,9.0925,75.558 +734203,10.848,74.572 +734204,12.545,73.596 +734205,5.9037,76.496 +734206,7.7569,75.523 +734207,9.5413,74.563 +734208,11.267,73.614 +734209,4.5386,76.434 +734210,6.4217,75.488 +734211,8.2347,74.554 +734212,9.9875,73.632 +734213,3.1749,76.372 +734214,5.087,75.453 +734215,6.9276,74.546 +734216,8.7069,73.651 +734217,1.8127,76.309 +734218,3.7527,75.417 +734219,5.6201,74.538 +734220,7.425,73.672 +734221,0.45188,76.245 +734222,2.419,75.381 +734223,4.3121,74.53 +734224,6.1417,73.692 +734225,359.09,76.181 +734226,1.0858,75.345 +734227,3.0037,74.523 +734228,4.857,73.714 +734229,357.73,76.116 +734230,359.75,75.309 +734231,1.6948,74.515 +734232,3.5709,73.736 +734233,356.38,76.05 +734234,358.42,75.272 +734235,0.38545,74.508 +734236,2.2834,73.758 +734237,355.02,75.983 +734238,357.09,75.235 +734239,359.08,74.502 +734240,0.99445,73.782 +734241,353.67,75.916 +734242,355.76,75.198 +734243,357.77,74.495 +734244,359.7,73.805 +734245,352.32,75.849 +734246,354.43,75.161 +734247,356.45,74.488 +734248,358.41,73.83 +734249,350.97,75.781 +734250,353.1,75.124 +734251,355.14,74.482 +734252,357.12,73.855 +734253,349.62,75.712 +734254,351.77,75.086 +734255,353.83,74.476 +734256,355.82,73.88 +734257,348.27,75.643 +734258,350.44,75.048 +734259,352.52,74.47 +734260,354.53,73.906 +734261,346.93,75.573 +734262,349.11,75.011 +734263,351.21,74.464 +734264,353.23,73.932 +734265,345.58,75.503 +734266,347.78,74.973 +734267,349.89,74.458 +734268,351.93,73.959 +734269,344.24,75.433 +734270,346.45,74.935 +734271,348.58,74.453 +734272,350.63,73.986 +734273,342.9,75.362 +734274,345.13,74.896 +734275,347.27,74.447 +734276,349.33,74.014 +734277,341.56,75.291 +734278,343.8,74.858 +734279,345.95,74.442 +734280,348.02,74.041 +734281,340.23,75.219 +734282,342.48,74.82 +734283,344.64,74.437 +734284,346.72,74.07 +734285,338.89,75.147 +734286,341.15,74.781 +734287,343.32,74.432 +734288,345.41,74.098 +734289,337.56,75.075 +734290,339.83,74.742 +734291,342,74.427 +734292,344.1,74.127 +734293,336.23,75.002 +734294,338.5,74.704 +734295,340.69,74.422 +734296,342.79,74.155 +734297,334.9,74.93 +734298,337.18,74.665 +734299,339.37,74.417 +734300,341.48,74.185 +734301,333.57,74.857 +734302,335.86,74.626 +734303,338.05,74.412 +734304,340.16,74.214 +734305,332.24,74.784 +734306,334.53,74.587 +734307,336.73,74.408 +734308,338.85,74.243 +734309,330.92,74.71 +734310,333.21,74.548 +734311,335.41,74.403 +734312,337.53,74.273 +734313,329.59,74.637 +734314,331.89,74.509 +734315,334.09,74.398 +734316,336.21,74.302 +734317,328.27,74.564 +734318,330.57,74.47 +734319,332.77,74.394 +734320,334.89,74.332 +734321,326.95,74.49 +734322,329.25,74.431 +734323,331.45,74.389 +734324,333.57,74.362 +734325,325.64,74.416 +734326,327.93,74.392 +734327,330.13,74.385 +734328,332.25,74.391 +734329,324.32,74.343 +734330,326.61,74.353 +734331,328.81,74.38 +734332,330.92,74.421 +734333,323.01,74.269 +734334,325.29,74.314 +734335,327.49,74.375 +734336,329.6,74.451 +734337,321.69,74.195 +734338,323.98,74.275 +734339,326.16,74.371 +734340,328.27,74.48 +734341,320.38,74.122 +734342,322.66,74.236 +734343,324.84,74.366 +734344,326.94,74.51 +734345,319.07,74.048 +734346,321.34,74.197 +734347,323.52,74.361 +734348,325.61,74.539 +734349,317.77,73.975 +734350,320.03,74.158 +734351,322.19,74.357 +734352,324.27,74.568 +734353,316.46,73.902 +734354,318.71,74.119 +734355,320.87,74.352 +734356,322.94,74.597 +734357,315.16,73.829 +734358,317.4,74.081 +734359,319.54,74.347 +734360,321.6,74.626 +734361,313.86,73.756 +734362,316.08,74.042 +734363,318.22,74.342 +734364,320.27,74.655 +734365,312.56,73.684 +734366,314.77,74.003 +734367,316.89,74.337 +734368,318.93,74.683 +734369,311.26,73.611 +734370,313.46,73.965 +734371,315.56,74.332 +734372,317.59,74.711 +734373,309.96,73.539 +734374,312.14,73.926 +734375,314.24,74.327 +734376,316.24,74.739 +734377,308.67,73.468 +734378,310.83,73.888 +734379,312.91,74.322 +734380,314.9,74.766 +734381,307.37,73.396 +734382,309.52,73.85 +734383,311.58,74.316 +734384,313.56,74.793 +734385,306.08,73.325 +734386,308.21,73.812 +734387,310.25,74.311 +734388,312.21,74.82 +734389,304.79,73.255 +734390,306.9,73.774 +734391,308.92,74.305 +734392,310.86,74.846 +734393,303.5,73.185 +734394,305.59,73.736 +734395,307.59,74.299 +734396,309.51,74.872 +734397,302.21,73.115 +734398,304.28,73.699 +734399,306.26,74.293 +734400,308.16,74.897 +734401,300.93,73.046 +734402,302.97,73.661 +734403,304.93,74.287 +734404,306.81,74.922 +734405,299.65,72.977 +734406,301.67,73.624 +734407,303.6,74.281 +734408,305.45,74.946 +734409,298.36,72.909 +734410,300.36,73.587 +734411,302.27,74.275 +734412,304.1,74.97 +734413,297.08,72.841 +734414,299.05,73.55 +734415,300.93,74.268 +734416,302.74,74.993 +734417,295.8,72.774 +734418,297.74,73.513 +734419,299.6,74.261 +734420,301.38,75.016 +734421,294.53,72.708 +734422,296.44,73.477 +734423,298.27,74.254 +734424,300.02,75.038 +734425,293.25,72.642 +734426,295.13,73.441 +734427,296.93,74.247 +734428,298.66,75.059 +734429,291.98,72.577 +734430,293.83,73.404 +734431,295.6,74.239 +734432,297.3,75.08 +734433,290.7,72.512 +734434,292.52,73.369 +734435,294.26,74.232 +734436,295.93,75.099 +734437,289.43,72.449 +734438,291.22,73.333 +734439,292.93,74.224 +734440,294.57,75.119 +734441,288.16,72.385 +734442,289.92,73.298 +734443,291.59,74.216 +734444,293.2,75.137 +734445,286.89,72.323 +734446,288.61,73.263 +734447,290.26,74.207 +734448,291.83,75.155 +734449,285.62,72.262 +734450,287.31,73.228 +734451,288.92,74.199 +734452,290.47,75.172 +734453,284.36,72.201 +734454,286.01,73.193 +734455,287.59,74.19 +734456,289.1,75.189 +734457,283.09,72.141 +734458,284.71,73.159 +734459,286.25,74.181 +734460,287.72,75.204 +734461,281.83,72.082 +734462,283.4,73.125 +734463,284.91,74.171 +734464,286.35,75.219 +734465,280.57,72.024 +734466,282.1,73.091 +734467,283.57,74.161 +734468,284.98,75.232 +734469,279.3,71.966 +734470,280.8,73.058 +734471,282.23,74.151 +734472,283.6,75.245 +734473,278.04,71.91 +734474,279.5,73.024 +734475,280.9,74.141 +734476,282.23,75.258 +734477,276.78,71.854 +734478,278.2,72.992 +734479,279.56,74.13 +734480,280.85,75.269 +734481,275.53,71.8 +734482,276.9,72.959 +734483,278.22,74.12 +734484,279.47,75.279 +734485,274.27,71.746 +734486,275.61,72.927 +734487,276.88,74.108 +734488,278.09,75.288 +734489,273.01,71.693 +734490,274.31,72.895 +734491,275.54,74.097 +734492,276.71,75.297 +734493,271.76,71.642 +734494,273.01,72.863 +734495,274.2,74.085 +734496,275.33,75.304 +734497,270.5,71.591 +734498,271.71,72.832 +734499,272.86,74.073 +734500,273.95,75.311 +734501,269.25,71.541 +734502,270.41,72.801 +734503,271.52,74.06 +734504,272.57,75.316 +734505,268,71.493 +734506,269.11,72.771 +734507,270.18,74.047 +734508,271.18,75.321 +734509,266.75,71.445 +734510,267.82,72.741 +734511,268.83,74.034 +734512,269.8,75.324 +734513,265.5,71.399 +734514,266.52,72.711 +734515,267.49,74.021 +734516,268.41,75.327 +734517,264.25,71.353 +734518,265.22,72.681 +734519,266.15,74.007 +734520,267.03,75.328 +734521,263,71.309 +734522,263.93,72.652 +734523,264.81,73.993 +734524,265.64,75.328 +734525,261.75,71.265 +734526,262.63,72.623 +734527,263.47,73.978 +734528,264.25,75.328 +734529,260.5,71.223 +734530,261.34,72.595 +734531,262.12,73.963 +734532,262.87,75.326 +734533,259.25,71.182 +734534,260.04,72.567 +734535,260.78,73.948 +734536,261.48,75.323 +734537,258.01,71.142 +734538,258.75,72.539 +734539,259.44,73.932 +734540,260.09,75.319 +734541,256.76,71.104 +734542,257.45,72.512 +734543,258.1,73.916 +734544,258.7,75.314 +734545,255.52,71.066 +734546,256.16,72.485 +734547,256.75,73.9 +734548,257.31,75.308 +734549,254.27,71.03 +734550,254.86,72.459 +734551,255.41,73.883 +734552,255.92,75.3 +734553,253.03,70.995 +734554,253.57,72.433 +734555,254.07,73.866 +734556,254.53,75.292 +734557,251.78,70.961 +734558,252.27,72.407 +734559,252.72,73.848 +734560,253.13,75.282 +734561,250.54,70.928 +734562,250.98,72.382 +734563,251.38,73.83 +734564,251.74,75.271 +734565,249.29,70.896 +734566,249.68,72.357 +734567,250.03,73.812 +734568,250.35,75.26 +734569,248.05,70.866 +734570,248.39,72.332 +734571,248.69,73.793 +734572,248.96,75.247 +734573,246.81,70.836 +734574,247.1,72.308 +734575,247.35,73.774 +734576,247.56,75.232 +734577,245.56,70.808 +734578,245.8,72.284 +734579,246,73.754 +734580,246.17,75.217 +734581,244.32,70.782 +734582,244.51,72.261 +734583,244.66,73.734 +734584,244.77,75.201 +734585,243.08,70.756 +734586,243.21,72.238 +734587,243.31,73.714 +734588,243.38,75.183 +734589,241.84,70.732 +734590,241.92,72.215 +734591,241.97,73.693 +734592,241.99,75.164 +734593,240.59,70.708 +734594,240.63,72.193 +734595,240.63,73.672 +734596,240.59,75.144 +734597,239.35,70.687 +734598,239.33,72.172 +734599,239.28,73.651 +734600,239.2,75.123 +734601,238.11,70.666 +734602,238.04,72.15 +734603,237.94,73.629 +734604,237.8,75.1 +734605,236.87,70.646 +734606,236.75,72.129 +734607,236.59,73.607 +734608,236.41,75.077 +734609,235.62,70.628 +734610,235.45,72.109 +734611,235.25,73.584 +734612,235.01,75.052 +734613,234.38,70.611 +734614,234.16,72.089 +734615,233.9,73.561 +734616,233.62,75.026 +734617,233.14,70.595 +734618,232.86,72.069 +734619,232.56,73.537 +734620,232.22,74.999 +734621,231.89,70.58 +734622,231.57,72.05 +734623,231.22,73.514 +734624,230.83,74.971 +734625,230.65,70.567 +734626,230.28,72.031 +734627,229.87,73.489 +734628,229.44,74.942 +734629,229.41,70.555 +734630,228.98,72.012 +734631,228.53,73.465 +734632,228.04,74.911 +734633,228.16,70.544 +734634,227.69,71.994 +734635,227.19,73.44 +734636,226.65,74.879 +734637,226.92,70.534 +734638,226.39,71.976 +734639,225.84,73.414 +734640,225.26,74.847 +734641,225.67,70.525 +734642,225.1,71.959 +734643,224.5,73.389 +734644,223.86,74.813 +734645,224.43,70.518 +734646,223.81,71.942 +734647,223.15,73.362 +734648,222.47,74.777 +734649,223.18,70.511 +734650,222.51,71.925 +734651,221.81,73.336 +734652,221.08,74.741 +734653,221.93,70.506 +734654,221.22,71.909 +734655,220.47,73.309 +734656,219.69,74.704 +734657,220.69,70.502 +734658,219.92,71.893 +734659,219.13,73.282 +734660,218.3,74.665 +734661,219.44,70.499 +734662,218.63,71.878 +734663,217.78,73.254 +734664,216.9,74.626 +734665,218.19,70.497 +734666,217.33,71.863 +734667,216.44,73.226 +734668,215.51,74.585 +734669,216.94,70.497 +734670,216.04,71.848 +734671,215.1,73.198 +734672,214.13,74.543 +734673,215.69,70.497 +734674,214.74,71.834 +734675,213.76,73.169 +734676,212.74,74.5 +734677,214.44,70.499 +734678,213.44,71.82 +734679,212.42,73.14 +734680,211.35,74.457 +734681,213.19,70.501 +734682,212.15,71.806 +734683,211.07,73.11 +734684,209.96,74.412 +734685,211.94,70.505 +734686,210.85,71.793 +734687,209.73,73.08 +734688,208.57,74.366 +734689,210.68,70.51 +734690,209.56,71.78 +734691,208.39,73.05 +734692,207.19,74.318 +734693,209.43,70.516 +734694,208.26,71.768 +734695,207.05,73.02 +734696,205.8,74.27 +734697,208.17,70.522 +734698,206.96,71.755 +734699,205.71,72.989 +734700,204.42,74.221 +734701,206.92,70.53 +734702,205.66,71.744 +734703,204.37,72.958 +734704,203.03,74.171 +734705,205.66,70.539 +734706,204.37,71.732 +734707,203.03,72.926 +734708,201.65,74.12 +734709,204.4,70.549 +734710,203.07,71.721 +734711,201.69,72.894 +734712,200.27,74.068 +734713,203.14,70.559 +734714,201.77,71.71 +734715,200.35,72.862 +734716,198.89,74.015 +734717,201.88,70.571 +734718,200.47,71.699 +734719,199.02,72.83 +734720,197.51,73.961 +734721,200.62,70.583 +734722,199.17,71.689 +734723,197.68,72.797 +734724,196.13,73.907 +734725,199.36,70.597 +734726,197.87,71.679 +734727,196.34,72.764 +734728,194.75,73.851 +734729,198.1,70.611 +734730,196.57,71.669 +734731,195,72.73 +734732,193.38,73.794 +734733,196.83,70.626 +734734,195.27,71.66 +734735,193.67,72.697 +734736,192,73.737 +734737,195.56,70.642 +734738,193.97,71.651 +734739,192.33,72.663 +734740,190.63,73.679 +734741,194.3,70.659 +734742,192.67,71.642 +734743,190.99,72.629 +734744,189.25,73.62 +734745,193.03,70.677 +734746,191.37,71.633 +734747,189.66,72.594 +734748,187.88,73.56 +734749,191.76,70.695 +734750,190.07,71.625 +734751,188.32,72.559 +734752,186.51,73.499 +734753,190.49,70.714 +734754,188.77,71.617 +734755,186.99,72.525 +734756,185.14,73.438 +734757,189.22,70.734 +734758,187.46,71.609 +734759,185.65,72.489 +734760,183.78,73.375 +734761,187.94,70.755 +734762,186.16,71.601 +734763,184.32,72.454 +734764,182.41,73.312 +734765,186.67,70.776 +734766,184.86,71.594 +734767,182.99,72.418 +734768,181.05,73.249 +734769,185.39,70.798 +734770,183.55,71.587 +734771,181.65,72.382 +734772,179.68,73.184 +734773,184.11,70.82 +734774,182.25,71.58 +734775,180.32,72.346 +734776,178.32,73.12 +734777,182.83,70.843 +734778,180.94,71.573 +734779,178.99,72.31 +734780,176.96,73.054 +734781,181.55,70.867 +734782,179.64,71.566 +734783,177.66,72.273 +734784,175.6,72.988 +734785,180.27,70.891 +734786,178.33,71.56 +734787,176.33,72.236 +734788,174.24,72.921 +734789,178.99,70.916 +734790,177.02,71.554 +734791,175,72.2 +734792,172.89,72.854 +734793,177.7,70.942 +734794,175.72,71.548 +734795,173.67,72.162 +734796,171.53,72.786 +734797,176.41,70.967 +734798,174.41,71.542 +734799,172.34,72.125 +734800,170.18,72.717 +734801,175.13,70.994 +734802,173.1,71.536 +734803,171.01,72.088 +734804,168.83,72.648 +734805,173.84,71.02 +734806,171.79,71.531 +734807,169.68,72.05 +734808,167.48,72.579 +734809,172.54,71.047 +734810,170.49,71.525 +734811,168.35,72.012 +734812,166.13,72.509 +734813,171.25,71.075 +734814,169.18,71.52 +734815,167.02,71.975 +734816,164.78,72.439 +734817,169.96,71.103 +734818,167.87,71.515 +734819,165.7,71.937 +734820,163.44,72.368 +734821,168.66,71.131 +734822,166.56,71.51 +734823,164.37,71.898 +734824,162.1,72.297 +734825,167.36,71.159 +734826,165.24,71.505 +734827,163.05,71.86 +734828,160.75,72.226 +734829,166.06,71.188 +734830,163.93,71.5 +734831,161.72,71.822 +734832,159.41,72.155 +734833,164.76,71.217 +734834,162.62,71.495 +734835,160.4,71.784 +734836,158.08,72.083 +734837,163.46,71.246 +734838,161.31,71.49 +734839,159.07,71.745 +734840,156.74,72.01 +734841,162.15,71.275 +734842,159.99,71.486 +734843,157.75,71.706 +734844,155.41,71.938 +734845,160.85,71.305 +734846,158.68,71.481 +734847,156.43,71.668 +734848,154.07,71.865 +734849,159.54,71.334 +734850,157.37,71.477 +734851,155.11,71.629 +734852,152.74,71.793 +734853,158.23,71.364 +734854,156.05,71.472 +734855,153.78,71.59 +734856,151.41,71.72 +734857,156.92,71.394 +734858,154.74,71.468 +734859,152.46,71.552 +734860,150.09,71.647 +734861,155.61,71.424 +734862,153.42,71.463 +734863,151.14,71.513 +734864,148.76,71.574 +734865,154.29,71.454 +734866,152.1,71.459 +734867,149.82,71.474 +734868,147.44,71.5 +734869,152.98,71.484 +734870,150.79,71.454 +734871,148.51,71.435 +734872,146.12,71.427 +734873,151.66,71.513 +734874,149.47,71.45 +734875,147.19,71.396 +734876,144.8,71.354 +734877,150.34,71.543 +734878,148.15,71.446 +734879,145.87,71.358 +734880,143.48,71.28 +734881,149.02,71.573 +734882,146.83,71.441 +734883,144.55,71.319 +734884,142.16,71.207 +734885,147.7,71.602 +734886,145.51,71.437 +734887,143.24,71.28 +734888,140.85,71.134 +734889,146.37,71.632 +734890,144.19,71.432 +734891,141.92,71.241 +734892,139.54,71.061 +734893,145.05,71.661 +734894,142.87,71.427 +734895,140.6,71.203 +734896,138.23,70.988 +734897,143.72,71.69 +734898,141.55,71.423 +734899,139.29,71.164 +734900,136.92,70.915 +734901,142.39,71.719 +734902,140.23,71.418 +734903,137.98,71.125 +734904,135.61,70.843 +734905,141.06,71.748 +734906,138.91,71.413 +734907,136.66,71.087 +734908,134.3,70.77 +734909,139.73,71.776 +734910,137.59,71.408 +734911,135.35,71.049 +734912,133,70.698 +734913,138.39,71.804 +734914,136.26,71.403 +734915,134.04,71.01 +734916,131.7,70.626 +734917,137.06,71.831 +734918,134.94,71.398 +734919,132.73,70.972 +734920,130.4,70.555 +734921,135.72,71.859 +734922,133.62,71.393 +734923,131.41,70.934 +734924,129.1,70.484 +734925,134.38,71.886 +734926,132.29,71.388 +734927,130.1,70.896 +734928,127.81,70.413 +734929,133.04,71.912 +734930,130.97,71.382 +734931,128.79,70.858 +734932,126.51,70.342 +734933,131.7,71.938 +734934,129.64,71.376 +734935,127.48,70.82 +734936,125.22,70.272 +734937,130.35,71.964 +734938,128.31,71.371 +734939,126.18,70.783 +734940,123.93,70.202 +734941,129.01,71.989 +734942,126.99,71.365 +734943,124.87,70.745 +734944,122.64,70.133 +734945,127.66,72.014 +734946,125.66,71.358 +734947,123.56,70.708 +734948,121.35,70.064 +734949,126.31,72.038 +734950,124.33,71.352 +734951,122.25,70.671 +734952,120.07,69.996 +734953,124.96,72.061 +734954,123,71.346 +734955,120.95,70.634 +734956,118.78,69.928 +734957,123.61,72.084 +734958,121.67,71.339 +734959,119.64,70.597 +734960,117.5,69.861 +734961,122.26,72.106 +734962,120.34,71.332 +734963,118.33,70.561 +734964,116.22,69.794 +734965,120.91,72.128 +734966,119.01,71.325 +734967,117.03,70.524 +734968,114.94,69.728 +734969,119.55,72.149 +734970,117.68,71.318 +734971,115.73,70.488 +734972,113.66,69.663 +734973,118.19,72.17 +734974,116.35,71.31 +734975,114.42,70.452 +734976,112.39,69.598 +734977,116.84,72.189 +734978,115.02,71.302 +734979,113.12,70.417 +734980,111.11,69.534 +734981,115.48,72.208 +734982,113.69,71.294 +734983,111.82,70.381 +734984,109.84,69.471 +734985,114.11,72.226 +734986,112.36,71.286 +734987,110.51,70.346 +734988,108.57,69.408 +734989,112.75,72.244 +734990,111.03,71.278 +734991,109.21,70.311 +734992,107.3,69.347 +734993,111.39,72.261 +734994,109.69,71.269 +734995,107.91,70.276 +734996,106.03,69.286 +734997,110.02,72.276 +734998,108.36,71.26 +734999,106.61,70.242 +735000,104.77,69.225 +735001,108.66,72.291 +735002,107.02,71.25 +735003,105.31,70.208 +735004,103.5,69.166 +735005,107.29,72.306 +735006,105.69,71.241 +735007,104.01,70.174 +735008,102.24,69.107 +735009,105.92,72.319 +735010,104.36,71.231 +735011,102.71,70.14 +735012,100.97,69.049 +735013,104.55,72.331 +735014,103.02,71.221 +735015,101.41,70.107 +735016,99.714,68.992 +735017,103.18,72.343 +735018,101.68,71.21 +735019,100.11,70.074 +735020,98.454,68.936 +735021,101.8,72.354 +735022,100.35,71.199 +735023,98.814,70.041 +735024,97.195,68.881 +735025,100.43,72.363 +735026,99.012,71.188 +735027,97.517,70.009 +735028,95.938,68.827 +735029,99.056,72.372 +735030,97.675,71.177 +735031,96.22,69.977 +735032,94.682,68.774 +735033,97.68,72.38 +735034,96.338,71.165 +735035,94.923,69.945 +735036,93.427,68.722 +735037,96.302,72.387 +735038,95,71.153 +735039,93.626,69.914 +735040,92.174,68.671 +735041,94.924,72.393 +735042,93.662,71.14 +735043,92.33,69.882 +735044,90.921,68.62 +735045,93.545,72.398 +735046,92.324,71.128 +735047,91.034,69.852 +735048,89.67,68.571 +735049,92.165,72.401 +735050,90.986,71.115 +735051,89.739,69.821 +735052,88.419,68.523 +735053,90.784,72.404 +735054,89.647,71.101 +735055,88.444,69.791 +735056,87.17,68.476 +735057,89.402,72.406 +735058,88.308,71.087 +735059,87.149,69.761 +735060,85.921,68.43 +735061,88.019,72.407 +735062,86.968,71.073 +735063,85.855,69.732 +735064,84.674,68.385 +735065,86.635,72.406 +735066,85.629,71.059 +735067,84.561,69.703 +735068,83.427,68.341 +735069,85.251,72.405 +735070,84.289,71.044 +735071,83.267,69.674 +735072,82.181,68.298 +735073,83.865,72.402 +735074,82.948,71.028 +735075,81.974,69.646 +735076,80.936,68.257 +735077,82.479,72.399 +735078,81.608,71.013 +735079,80.68,69.618 +735080,79.692,68.216 +735081,81.092,72.394 +735082,80.267,70.997 +735083,79.387,69.59 +735084,78.448,68.177 +735085,79.705,72.388 +735086,78.926,70.98 +735087,78.095,69.563 +735088,77.206,68.139 +735089,78.316,72.381 +735090,77.585,70.963 +735091,76.802,69.536 +735092,75.964,68.101 +735093,76.927,72.373 +735094,76.244,70.946 +735095,75.51,69.51 +735096,74.722,68.066 +735097,75.538,72.363 +735098,74.902,70.929 +735099,74.218,69.484 +735100,73.481,68.031 +735101,74.148,72.353 +735102,73.561,70.911 +735103,72.926,69.458 +735104,72.241,67.997 +735105,72.757,72.341 +735106,72.219,70.892 +735107,71.634,69.433 +735108,71.001,67.965 +735109,71.366,72.328 +735110,70.877,70.874 +735111,70.343,69.408 +735112,69.761,67.934 +735113,69.974,72.314 +735114,69.535,70.854 +735115,69.052,69.384 +735116,68.522,67.904 +735117,68.582,72.299 +735118,68.192,70.835 +735119,67.76,69.36 +735120,67.284,67.875 +735121,67.19,72.283 +735122,66.85,70.815 +735123,66.469,69.336 +735124,66.045,67.848 +735125,65.797,72.265 +735126,65.508,70.795 +735127,65.178,69.313 +735128,64.807,67.821 +735129,64.404,72.247 +735130,64.165,70.774 +735131,63.888,69.29 +735132,63.569,67.796 +735133,63.01,72.227 +735134,62.822,70.753 +735135,62.597,69.267 +735136,62.332,67.772 +735137,61.617,72.206 +735138,61.48,70.731 +735139,61.306,69.245 +735140,61.094,67.75 +735141,60.223,72.184 +735142,60.137,70.709 +735143,60.016,69.224 +735144,59.857,67.728 +735145,58.829,72.16 +735146,58.794,70.687 +735147,58.725,69.202 +735148,58.62,67.708 +735149,57.434,72.136 +735150,57.451,70.664 +735151,57.435,69.181 +735152,57.383,67.689 +735153,56.04,72.11 +735154,56.109,70.641 +735155,56.144,69.161 +735156,56.145,67.671 +735157,54.646,72.083 +735158,54.766,70.617 +735159,54.854,69.141 +735160,54.908,67.655 +735161,53.251,72.055 +735162,53.423,70.593 +735163,53.563,69.121 +735164,53.671,67.639 +735165,51.857,72.025 +735166,52.08,70.569 +735167,52.273,69.102 +735168,52.433,67.625 +735169,50.462,71.995 +735170,50.738,70.544 +735171,50.982,69.083 +735172,51.196,67.612 +735173,49.068,71.963 +735174,49.395,70.519 +735175,49.692,69.064 +735176,49.958,67.6 +735177,47.674,71.93 +735178,48.052,70.493 +735179,48.401,69.046 +735180,48.72,67.59 +735181,46.28,71.896 +735182,46.71,70.467 +735183,47.11,69.028 +735184,47.481,67.58 +735185,44.886,71.861 +735186,45.368,70.441 +735187,45.82,69.011 +735188,46.242,67.572 +735189,43.492,71.825 +735190,44.025,70.414 +735191,44.529,68.994 +735192,45.003,67.565 +735193,42.099,71.787 +735194,42.683,70.387 +735195,43.238,68.977 +735196,43.764,67.559 +735197,40.706,71.749 +735198,41.341,70.36 +735199,41.947,68.961 +735200,42.524,67.555 +735201,39.313,71.709 +735202,39.999,70.332 +735203,40.655,68.945 +735204,41.283,67.551 +735205,37.921,71.668 +735206,38.658,70.303 +735207,39.364,68.93 +735208,40.042,67.549 +735209,36.529,71.626 +735210,37.316,70.275 +735211,38.072,68.915 +735212,38.8,67.548 +735213,35.138,71.583 +735214,35.975,70.246 +735215,36.781,68.9 +735216,37.558,67.547 +735217,33.747,71.539 +735218,34.633,70.216 +735219,35.489,68.886 +735220,36.315,67.548 +735221,32.357,71.494 +735222,33.293,70.187 +735223,34.197,68.872 +735224,35.072,67.55 +735225,30.967,71.447 +735226,31.952,70.156 +735227,32.904,68.858 +735228,33.827,67.553 +735229,29.578,71.4 +735230,30.611,70.126 +735231,31.612,68.845 +735232,32.582,67.558 +735233,28.189,71.352 +735234,29.271,70.095 +735235,30.319,68.832 +735236,31.336,67.563 +735237,26.802,71.302 +735238,27.931,70.064 +735239,29.026,68.819 +735240,30.09,67.569 +735241,25.414,71.252 +735242,26.591,70.032 +735243,27.733,68.807 +735244,28.842,67.576 +735245,24.028,71.2 +735246,25.252,70.001 +735247,26.439,68.795 +735248,27.593,67.585 +735249,22.643,71.148 +735250,23.913,69.968 +735251,25.145,68.783 +735252,26.344,67.594 +735253,21.258,71.095 +735254,22.574,69.936 +735255,23.851,68.772 +735256,25.094,67.604 +735257,19.874,71.04 +735258,21.236,69.903 +735259,22.557,68.761 +735260,23.842,67.615 +735261,18.491,70.985 +735262,19.897,69.87 +735263,21.262,68.75 +735264,22.59,67.627 +735265,17.109,70.929 +735266,18.56,69.836 +735267,19.967,68.74 +735268,21.336,67.64 +735269,15.728,70.872 +735270,17.222,69.803 +735271,18.671,68.73 +735272,20.082,67.654 +735273,14.349,70.814 +735274,15.885,69.768 +735275,17.376,68.72 +735276,18.826,67.669 +735277,12.97,70.755 +735278,14.548,69.734 +735279,16.08,68.71 +735280,17.569,67.685 +735281,11.592,70.696 +735282,13.212,69.699 +735283,14.783,68.701 +735284,16.311,67.701 +735285,10.215,70.635 +735286,11.876,69.665 +735287,13.486,68.692 +735288,15.052,67.718 +735289,8.8397,70.574 +735290,10.541,69.629 +735291,12.189,68.683 +735292,13.791,67.736 +735293,7.4654,70.512 +735294,9.2055,69.594 +735295,10.891,68.675 +735296,12.529,67.755 +735297,6.0923,70.449 +735298,7.8708,69.558 +735299,9.5931,68.666 +735300,11.266,67.775 +735301,4.7204,70.385 +735302,6.5366,69.522 +735303,8.2946,68.658 +735304,10.002,67.795 +735305,3.3499,70.321 +735306,5.2028,69.486 +735307,6.9956,68.65 +735308,8.7361,67.816 +735309,1.9806,70.256 +735310,3.8695,69.449 +735311,5.6962,68.643 +735312,7.469,67.838 +735313,0.61275,70.19 +735314,2.5367,69.413 +735315,4.3964,68.636 +735316,6.2005,67.86 +735317,359.25,70.124 +735318,1.2043,69.376 +735319,3.0961,68.628 +735320,4.9306,67.883 +735321,357.88,70.057 +735322,359.87,69.339 +735323,1.7954,68.621 +735324,3.6592,67.906 +735325,356.52,69.989 +735326,358.54,69.301 +735327,0.49421,68.615 +735328,2.3864,67.93 +735329,355.16,69.921 +735330,357.21,69.264 +735331,359.19,68.608 +735332,1.1122,67.955 +735333,353.79,69.852 +735334,355.88,69.226 +735335,357.89,68.602 +735336,359.84,67.98 +735337,352.44,69.783 +735338,354.55,69.188 +735339,356.59,68.595 +735340,358.56,68.006 +735341,351.08,69.713 +735342,353.22,69.15 +735343,355.28,68.589 +735344,357.28,68.032 +735345,349.72,69.643 +735346,351.89,69.112 +735347,353.98,68.583 +735348,356,68.058 +735349,348.37,69.572 +735350,350.56,69.073 +735351,352.68,68.578 +735352,354.72,68.085 +735353,347.01,69.501 +735354,349.24,69.035 +735355,351.37,68.572 +735356,353.43,68.113 +735357,345.66,69.429 +735358,347.91,68.996 +735359,350.07,68.566 +735360,352.15,68.14 +735361,344.31,69.357 +735362,346.58,68.957 +735363,348.76,68.561 +735364,350.86,68.169 +735365,342.97,69.285 +735366,345.26,68.918 +735367,347.45,68.556 +735368,349.57,68.197 +735369,341.62,69.212 +735370,343.93,68.879 +735371,346.15,68.55 +735372,348.28,68.226 +735373,340.27,69.139 +735374,342.61,68.84 +735375,344.84,68.545 +735376,346.99,68.254 +735377,338.93,69.066 +735378,341.28,68.801 +735379,343.53,68.54 +735380,345.7,68.284 +735381,337.59,68.993 +735382,339.96,68.762 +735383,342.22,68.535 +735384,344.41,68.313 +735385,336.25,68.919 +735386,338.63,68.722 +735387,340.92,68.53 +735388,343.11,68.342 +735389,334.91,68.845 +735390,337.31,68.683 +735391,339.61,68.525 +735392,341.81,68.372 +735393,333.58,68.771 +735394,335.99,68.643 +735395,338.3,68.52 +735396,340.51,68.402 +735397,332.25,68.697 +735398,334.67,68.604 +735399,336.99,68.515 +735400,339.21,68.432 +735401,330.91,68.622 +735402,333.35,68.564 +735403,335.67,68.51 +735404,337.91,68.462 +735405,329.58,68.548 +735406,332.03,68.524 +735407,334.36,68.506 +735408,336.6,68.492 +735409,328.25,68.473 +735410,330.71,68.485 +735411,333.05,68.501 +735412,335.29,68.522 +735413,326.93,68.399 +735414,329.39,68.445 +735415,331.74,68.496 +735416,333.99,68.551 +735417,325.6,68.324 +735418,328.07,68.405 +735419,330.42,68.491 +735420,332.68,68.581 +735421,324.28,68.249 +735422,326.75,68.366 +735423,329.11,68.486 +735424,331.36,68.611 +735425,322.96,68.175 +735426,325.44,68.326 +735427,327.79,68.481 +735428,330.05,68.641 +735429,321.64,68.101 +735430,324.12,68.286 +735431,326.48,68.476 +735432,328.74,68.67 +735433,320.32,68.026 +735434,322.81,68.247 +735435,325.16,68.471 +735436,327.42,68.7 +735437,319.01,67.952 +735438,321.49,68.207 +735439,323.85,68.466 +735440,326.1,68.729 +735441,317.7,67.878 +735442,320.18,68.168 +735443,322.53,68.461 +735444,324.78,68.758 +735445,316.39,67.804 +735446,318.86,68.128 +735447,321.21,68.456 +735448,323.46,68.787 +735449,315.08,67.731 +735450,317.55,68.089 +735451,319.9,68.45 +735452,322.13,68.815 +735453,313.77,67.657 +735454,316.24,68.05 +735455,318.58,68.445 +735456,320.81,68.843 +735457,312.46,67.584 +735458,314.92,68.01 +735459,317.26,68.439 +735460,319.48,68.871 +735461,311.16,67.512 +735462,313.61,67.971 +735463,315.94,68.434 +735464,318.15,68.898 +735465,309.86,67.439 +735466,312.3,67.932 +735467,314.62,68.428 +735468,316.82,68.925 +735469,308.56,67.367 +735470,310.99,67.893 +735471,313.3,68.422 +735472,315.49,68.952 +735473,307.26,67.295 +735474,309.68,67.855 +735475,311.97,68.416 +735476,314.16,68.978 +735477,305.96,67.224 +735478,308.37,67.816 +735479,310.65,68.41 +735480,312.82,69.004 +735481,304.67,67.153 +735482,307.06,67.778 +735483,309.33,68.403 +735484,311.48,69.029 +735485,303.38,67.083 +735486,305.76,67.739 +735487,308.01,68.397 +735488,310.14,69.054 +735489,302.09,67.013 +735490,304.45,67.701 +735491,306.68,68.39 +735492,308.8,69.078 +735493,300.8,66.944 +735494,303.14,67.663 +735495,305.36,68.383 +735496,307.46,69.102 +735497,299.51,66.875 +735498,301.84,67.625 +735499,304.03,68.376 +735500,306.12,69.125 +735501,298.23,66.807 +735502,300.53,67.588 +735503,302.71,68.368 +735504,304.77,69.148 +735505,296.94,66.739 +735506,299.23,67.55 +735507,301.38,68.361 +735508,303.43,69.169 +735509,295.66,66.672 +735510,297.92,67.513 +735511,300.06,68.353 +735512,302.08,69.191 +735513,294.38,66.606 +735514,296.62,67.476 +735515,298.73,68.345 +735516,300.73,69.211 +735517,293.11,66.54 +735518,295.32,67.439 +735519,297.4,68.337 +735520,299.38,69.231 +735521,291.83,66.475 +735522,294.01,67.403 +735523,296.07,68.328 +735524,298.03,69.25 +735525,290.55,66.411 +735526,292.71,67.367 +735527,294.75,68.319 +735528,296.67,69.268 +735529,289.28,66.347 +735530,291.41,67.33 +735531,293.42,68.31 +735532,295.32,69.286 +735533,288.01,66.285 +735534,290.11,67.295 +735535,292.09,68.301 +735536,293.96,69.303 +735537,286.74,66.223 +735538,288.81,67.259 +735539,290.76,68.292 +735540,292.6,69.319 +735541,285.47,66.161 +735542,287.51,67.224 +735543,289.43,68.282 +735544,291.24,69.334 +735545,284.21,66.101 +735546,286.21,67.189 +735547,288.1,68.271 +735548,289.88,69.348 +735549,282.94,66.042 +735550,284.91,67.154 +735551,286.77,68.261 +735552,288.52,69.361 +735553,281.68,65.983 +735554,283.61,67.12 +735555,285.43,68.25 +735556,287.15,69.374 +735557,280.42,65.925 +735558,282.32,67.085 +735559,284.1,68.239 +735560,285.79,69.386 +735561,279.16,65.869 +735562,281.02,67.051 +735563,282.77,68.228 +735564,284.42,69.396 +735565,277.9,65.813 +735566,279.72,67.018 +735567,281.44,68.216 +735568,283.05,69.406 +735569,276.64,65.758 +735570,278.43,66.985 +735571,280.1,68.204 +735572,281.68,69.415 +735573,275.39,65.704 +735574,277.13,66.952 +735575,278.77,68.192 +735576,280.31,69.423 +735577,274.13,65.651 +735578,275.84,66.919 +735579,277.44,68.179 +735580,278.94,69.429 +735581,272.88,65.599 +735582,274.54,66.887 +735583,276.1,68.166 +735584,277.57,69.435 +735585,271.63,65.548 +735586,273.25,66.855 +735587,274.77,68.153 +735588,276.2,69.44 +735589,270.38,65.498 +735590,271.95,66.823 +735591,273.43,68.139 +735592,274.82,69.444 +735593,269.13,65.45 +735594,270.66,66.792 +735595,272.09,68.125 +735596,273.44,69.446 +735597,267.88,65.402 +735598,269.37,66.761 +735599,270.76,68.11 +735600,272.07,69.448 +735601,266.63,65.355 +735602,268.07,66.73 +735603,269.42,68.095 +735604,270.69,69.448 +735605,265.39,65.31 +735606,266.78,66.7 +735607,268.09,68.08 +735608,269.31,69.448 +735609,264.14,65.265 +735610,265.49,66.67 +735611,266.75,68.064 +735612,267.93,69.446 +735613,262.9,65.222 +735614,264.2,66.641 +735615,265.41,68.048 +735616,266.55,69.443 +735617,261.65,65.18 +735618,262.9,66.612 +735619,264.07,68.032 +735620,265.17,69.439 +735621,260.41,65.139 +735622,261.61,66.583 +735623,262.74,68.015 +735624,263.78,69.434 +735625,259.17,65.099 +735626,260.32,66.555 +735627,261.4,67.998 +735628,262.4,69.428 +735629,257.93,65.06 +735630,259.03,66.527 +735631,260.06,67.981 +735632,261.02,69.421 +735633,256.69,65.023 +735634,257.74,66.499 +735635,258.72,67.963 +735636,259.63,69.412 +735637,255.45,64.986 +735638,256.45,66.472 +735639,257.38,67.944 +735640,258.24,69.403 +735641,254.21,64.951 +735642,255.16,66.445 +735643,256.04,67.926 +735644,256.86,69.392 +735645,252.98,64.917 +735646,253.87,66.419 +735647,254.7,67.906 +735648,255.47,69.38 +735649,251.74,64.885 +735650,252.58,66.392 +735651,253.36,67.887 +735652,254.08,69.366 +735653,250.5,64.853 +735654,251.29,66.367 +735655,252.02,67.867 +735656,252.69,69.352 +735657,249.27,64.823 +735658,250.01,66.342 +735659,250.68,67.846 +735660,251.3,69.336 +735661,248.03,64.794 +735662,248.72,66.317 +735663,249.34,67.826 +735664,249.91,69.319 +735665,246.8,64.766 +735666,247.43,66.292 +735667,248,67.804 +735668,248.52,69.301 +735669,245.57,64.739 +735670,246.14,66.268 +735671,246.66,67.783 +735672,247.13,69.282 +735673,244.33,64.714 +735674,244.85,66.244 +735675,245.32,67.761 +735676,245.74,69.261 +735677,243.1,64.69 +735678,243.56,66.221 +735679,243.98,67.738 +735680,244.35,69.24 +735681,241.87,64.667 +735682,242.28,66.198 +735683,242.64,67.715 +735684,242.96,69.217 +735685,240.64,64.645 +735686,240.99,66.176 +735687,241.3,67.692 +735688,241.56,69.193 +735689,239.4,64.625 +735690,239.7,66.154 +735691,239.96,67.668 +735692,240.17,69.167 +735693,238.17,64.606 +735694,238.41,66.132 +735695,238.62,67.644 +735696,238.78,69.141 +735697,236.94,64.588 +735698,237.13,66.111 +735699,237.27,67.62 +735700,237.38,69.113 +735701,235.71,64.571 +735702,235.84,66.09 +735703,235.93,67.595 +735704,235.99,69.084 +735705,234.47,64.556 +735706,234.55,66.07 +735707,234.59,67.569 +735708,234.6,69.053 +735709,233.24,64.542 +735710,233.27,66.049 +735711,233.25,67.543 +735712,233.2,69.022 +735713,232.01,64.529 +735714,231.98,66.03 +735715,231.91,67.517 +735716,231.81,68.989 +735717,230.78,64.517 +735718,230.69,66.01 +735719,230.57,67.49 +735720,230.41,68.955 +735721,229.55,64.506 +735722,229.4,65.992 +735723,229.23,67.463 +735724,229.02,68.92 +735725,228.31,64.497 +735726,228.12,65.973 +735727,227.89,67.436 +735728,227.63,68.884 +735729,227.08,64.489 +735730,226.83,65.955 +735731,226.55,67.408 +735732,226.23,68.847 +735733,225.85,64.482 +735734,225.54,65.937 +735735,225.2,67.38 +735736,224.84,68.808 +735737,224.62,64.476 +735738,224.25,65.92 +735739,223.86,67.351 +735740,223.44,68.768 +735741,223.38,64.471 +735742,222.97,65.903 +735743,222.52,67.322 +735744,222.05,68.727 +735745,222.15,64.468 +735746,221.68,65.886 +735747,221.18,67.293 +735748,220.66,68.685 +735749,220.91,64.466 +735750,220.39,65.87 +735751,219.84,67.263 +735752,219.26,68.642 +735753,219.68,64.464 +735754,219.1,65.854 +735755,218.5,67.232 +735756,217.87,68.597 +735757,218.44,64.464 +735758,217.82,65.839 +735759,217.16,67.202 +735760,216.48,68.552 +735761,217.21,64.466 +735762,216.53,65.824 +735763,215.82,67.171 +735764,215.09,68.505 +735765,215.97,64.468 +735766,215.24,65.809 +735767,214.48,67.139 +735768,213.69,68.457 +735769,214.74,64.471 +735770,213.95,65.795 +735771,213.14,67.108 +735772,212.3,68.409 +735773,213.5,64.475 +735774,212.66,65.781 +735775,211.8,67.075 +735776,210.91,68.359 +735777,212.26,64.481 +735778,211.37,65.767 +735779,210.46,67.043 +735780,209.52,68.308 +735781,211.02,64.487 +735782,210.08,65.753 +735783,209.12,67.01 +735784,208.13,68.256 +735785,209.78,64.495 +735786,208.79,65.74 +735787,207.78,66.977 +735788,206.74,68.203 +735789,208.54,64.503 +735790,207.51,65.728 +735791,206.44,66.943 +735792,205.35,68.148 +735793,207.3,64.513 +735794,206.22,65.715 +735795,205.11,66.909 +735796,203.97,68.093 +735797,206.06,64.523 +735798,204.93,65.703 +735799,203.77,66.875 +735800,202.58,68.037 +735801,204.81,64.534 +735802,203.63,65.691 +735803,202.43,66.841 +735804,201.19,67.98 +735805,203.57,64.547 +735806,202.34,65.68 +735807,201.09,66.806 +735808,199.81,67.922 +735809,202.32,64.56 +735810,201.05,65.669 +735811,199.75,66.77 +735812,198.42,67.863 +735813,201.08,64.574 +735814,199.76,65.658 +735815,198.42,66.735 +735816,197.04,67.803 +735817,199.83,64.589 +735818,198.47,65.647 +735819,197.08,66.699 +735820,195.66,67.742 +735821,198.58,64.605 +735822,197.18,65.637 +735823,195.75,66.663 +735824,194.27,67.681 +735825,197.33,64.622 +735826,195.89,65.627 +735827,194.41,66.626 +735828,192.89,67.618 +735829,196.08,64.639 +735830,194.59,65.617 +735831,193.07,66.59 +735832,191.51,67.555 +735833,194.83,64.658 +735834,193.3,65.608 +735835,191.74,66.553 +735836,190.13,67.491 +735837,193.57,64.677 +735838,192.01,65.598 +735839,190.4,66.515 +735840,188.76,67.426 +735841,192.32,64.697 +735842,190.71,65.589 +735843,189.07,66.478 +735844,187.38,67.36 +735845,191.06,64.717 +735846,189.42,65.581 +735847,187.74,66.44 +735848,186,67.293 +735849,189.8,64.738 +735850,188.13,65.572 +735851,186.4,66.402 +735852,184.63,67.226 +735853,188.55,64.76 +735854,186.83,65.564 +735855,185.07,66.363 +735856,183.26,67.158 +735857,187.29,64.783 +735858,185.54,65.556 +735859,183.74,66.325 +735860,181.88,67.089 +735861,186.02,64.806 +735862,184.24,65.548 +735863,182.4,66.286 +735864,180.51,67.02 +735865,184.76,64.83 +735866,182.94,65.54 +735867,181.07,66.247 +735868,179.14,66.95 +735869,183.5,64.854 +735870,181.65,65.532 +735871,179.74,66.208 +735872,177.78,66.879 +735873,182.23,64.879 +735874,180.35,65.525 +735875,178.41,66.168 +735876,176.41,66.808 +735877,180.96,64.905 +735878,179.05,65.518 +735879,177.08,66.129 +735880,175.04,66.736 +735881,179.7,64.931 +735882,177.75,65.511 +735883,175.75,66.089 +735884,173.68,66.664 +735885,178.43,64.957 +735886,176.45,65.504 +735887,174.42,66.049 +735888,172.32,66.591 +735889,177.15,64.984 +735890,175.16,65.497 +735891,173.09,66.009 +735892,170.96,66.517 +735893,175.88,65.011 +735894,173.86,65.49 +735895,171.77,65.968 +735896,169.6,66.444 +735897,174.61,65.039 +735898,172.56,65.484 +735899,170.44,65.928 +735900,168.24,66.369 +735901,173.33,65.067 +735902,171.26,65.478 +735903,169.11,65.887 +735904,166.88,66.294 +735905,172.05,65.095 +735906,169.95,65.471 +735907,167.78,65.846 +735908,165.53,66.219 +735909,170.77,65.124 +735910,168.65,65.465 +735911,166.46,65.806 +735912,164.18,66.144 +735913,169.49,65.152 +735914,167.35,65.459 +735915,165.13,65.765 +735916,162.83,66.068 +735917,168.21,65.182 +735918,166.05,65.453 +735919,163.81,65.723 +735920,161.48,65.992 +735921,166.92,65.211 +735922,164.74,65.447 +735923,162.48,65.682 +735924,160.13,65.916 +735925,165.64,65.24 +735926,163.44,65.441 +735927,161.16,65.641 +735928,158.78,65.839 +735929,164.35,65.27 +735930,162.14,65.435 +735931,159.84,65.6 +735932,157.44,65.762 +735933,163.06,65.3 +735934,160.83,65.429 +735935,158.52,65.558 +735936,156.1,65.685 +735937,161.77,65.33 +735938,159.53,65.424 +735939,157.19,65.517 +735940,154.76,65.608 +735941,160.47,65.36 +735942,158.22,65.418 +735943,155.87,65.475 +735944,153.42,65.53 +735945,159.18,65.39 +735946,156.91,65.412 +735947,154.55,65.433 +735948,152.08,65.453 +735949,157.88,65.42 +735950,155.61,65.406 +735951,153.23,65.392 +735952,150.74,65.375 +735953,156.58,65.45 +735954,154.3,65.401 +735955,151.91,65.35 +735956,149.41,65.298 +735957,155.28,65.48 +735958,152.99,65.395 +735959,150.59,65.308 +735960,148.08,65.22 +735961,153.98,65.51 +735962,151.68,65.389 +735963,149.28,65.267 +735964,146.75,65.142 +735965,152.68,65.54 +735966,150.37,65.383 +735967,147.96,65.225 +735968,145.42,65.065 +735969,151.37,65.569 +735970,149.06,65.377 +735971,146.64,65.183 +735972,144.1,64.987 +735973,150.07,65.599 +735974,147.75,65.371 +735975,145.33,65.142 +735976,142.77,64.91 +735977,148.76,65.628 +735978,146.44,65.365 +735979,144.01,65.1 +735980,141.45,64.832 +735981,147.45,65.657 +735982,145.13,65.359 +735983,142.7,65.059 +735984,140.13,64.755 +735985,146.13,65.686 +735986,143.82,65.353 +735987,141.38,65.017 +735988,138.81,64.678 +735989,144.82,65.715 +735990,142.5,65.347 +735991,140.07,64.976 +735992,137.5,64.601 +735993,143.5,65.743 +735994,141.19,65.34 +735995,138.76,64.934 +735996,136.18,64.525 +735997,142.19,65.771 +735998,139.87,65.334 +735999,137.44,64.893 +736000,134.87,64.448 +736001,140.87,65.798 +736002,138.56,65.327 +736003,136.13,64.852 +736004,133.56,64.372 +736005,139.55,65.826 +736006,137.24,65.32 +736007,134.82,64.811 +736008,132.25,64.297 +736009,138.22,65.853 +736010,135.93,65.314 +736011,133.51,64.77 +736012,130.95,64.221 +736013,136.9,65.879 +736014,134.61,65.307 +736015,132.2,64.729 +736016,129.64,64.146 +736017,135.57,65.905 +736018,133.3,65.299 +736019,130.89,64.688 +736020,128.34,64.072 +736021,134.24,65.93 +736022,131.98,65.292 +736023,129.58,64.648 +736024,127.04,63.998 +736025,132.92,65.955 +736026,130.66,65.284 +736027,128.28,64.607 +736028,125.74,63.924 +736029,131.58,65.98 +736030,129.34,65.277 +736031,126.97,64.567 +736032,124.45,63.851 +736033,130.25,66.003 +736034,128.02,65.269 +736035,125.66,64.527 +736036,123.15,63.778 +736037,128.92,66.027 +736038,126.7,65.261 +736039,124.36,64.487 +736040,121.86,63.706 +736041,127.58,66.049 +736042,125.38,65.252 +736043,123.05,64.447 +736044,120.57,63.635 +736045,126.24,66.071 +736046,124.06,65.244 +736047,121.75,64.408 +736048,119.28,63.564 +736049,124.9,66.092 +736050,122.74,65.235 +736051,120.44,64.368 +736052,118,63.494 +736053,123.56,66.113 +736054,121.42,65.226 +736055,119.14,64.329 +736056,116.71,63.424 +736057,122.22,66.133 +736058,120.09,65.216 +736059,117.84,64.29 +736060,115.43,63.355 +736061,120.87,66.152 +736062,118.77,65.207 +736063,116.54,64.252 +736064,114.15,63.287 +736065,119.53,66.17 +736066,117.45,65.197 +736067,115.23,64.213 +736068,112.87,63.219 +736069,118.18,66.188 +736070,116.12,65.187 +736071,113.93,64.175 +736072,111.59,63.153 +736073,116.83,66.205 +736074,114.8,65.177 +736075,112.63,64.137 +736076,110.32,63.087 +736077,115.48,66.221 +736078,113.47,65.166 +736079,111.33,64.099 +736080,109.05,63.021 +736081,114.13,66.236 +736082,112.15,65.155 +736083,110.03,64.062 +736084,107.77,62.957 +736085,112.78,66.25 +736086,110.82,65.144 +736087,108.74,64.025 +736088,106.5,62.893 +736089,111.42,66.263 +736090,109.49,65.132 +736091,107.44,63.988 +736092,105.24,62.831 +736093,110.06,66.276 +736094,108.17,65.12 +736095,106.14,63.951 +736096,103.97,62.769 +736097,108.71,66.287 +736098,106.84,65.108 +736099,104.84,63.915 +736100,102.71,62.708 +736101,107.35,66.298 +736102,105.51,65.096 +736103,103.55,63.879 +736104,101.44,62.648 +736105,105.99,66.307 +736106,104.18,65.083 +736107,102.25,63.843 +736108,100.18,62.589 +736109,104.62,66.316 +736110,102.85,65.07 +736111,100.96,63.808 +736112,98.922,62.531 +736113,103.26,66.323 +736114,101.52,65.056 +736115,99.662,63.773 +736116,97.665,62.474 +736117,101.9,66.33 +736118,100.19,65.042 +736119,98.368,63.738 +736120,96.408,62.418 +736121,100.53,66.336 +736122,98.861,65.028 +736123,97.074,63.704 +736124,95.154,62.363 +736125,99.164,66.34 +736126,97.53,65.013 +736127,95.781,63.67 +736128,93.9,62.309 +736129,97.795,66.343 +736130,96.198,64.998 +736131,94.488,63.636 +736132,92.649,62.257 +736133,96.425,66.346 +736134,94.866,64.983 +736135,93.196,63.602 +736136,91.398,62.205 +736137,95.054,66.347 +736138,93.534,64.967 +736139,91.904,63.569 +736140,90.149,62.154 +736141,93.682,66.347 +736142,92.202,64.951 +736143,90.613,63.537 +736144,88.902,62.105 +736145,92.309,66.346 +736146,90.869,64.935 +736147,89.322,63.504 +736148,87.656,62.056 +736149,90.935,66.344 +736150,89.535,64.918 +736151,88.032,63.473 +736152,86.411,62.009 +736153,89.56,66.341 +736154,88.201,64.9 +736155,86.742,63.441 +736156,85.167,61.963 +736157,88.183,66.336 +736158,86.867,64.883 +736159,85.452,63.41 +736160,83.925,61.918 +736161,86.806,66.33 +736162,85.533,64.865 +736163,84.163,63.379 +736164,82.684,61.874 +736165,85.427,66.324 +736166,84.198,64.846 +736167,82.875,63.349 +736168,81.444,61.832 +736169,84.048,66.316 +736170,82.863,64.827 +736171,81.586,63.319 +736172,80.205,61.79 +736173,82.668,66.306 +736174,81.528,64.808 +736175,80.298,63.289 +736176,78.967,61.75 +736177,81.286,66.296 +736178,80.192,64.788 +736179,79.01,63.26 +736180,77.73,61.711 +736181,79.904,66.284 +736182,78.856,64.768 +736183,77.723,63.231 +736184,76.494,61.673 +736185,78.521,66.271 +736186,77.52,64.747 +736187,76.436,63.202 +736188,75.259,61.637 +736189,77.137,66.257 +736190,76.184,64.726 +736191,75.149,63.174 +736192,74.025,61.602 +736193,75.753,66.242 +736194,74.847,64.705 +736195,73.863,63.147 +736196,72.792,61.568 +736197,74.368,66.225 +736198,73.51,64.683 +736199,72.577,63.119 +736200,71.559,61.535 +736201,72.982,66.207 +736202,72.173,64.661 +736203,71.291,63.093 +736204,70.328,61.504 +736205,71.595,66.188 +736206,70.835,64.638 +736207,70.005,63.066 +736208,69.097,61.473 +736209,70.207,66.168 +736210,69.498,64.615 +736211,68.72,63.04 +736212,67.867,61.445 +736213,68.819,66.146 +736214,68.16,64.591 +736215,67.435,63.014 +736216,66.637,61.417 +736217,67.431,66.123 +736218,66.822,64.567 +736219,66.15,62.989 +736220,65.408,61.391 +736221,66.042,66.099 +736222,65.484,64.542 +736223,64.865,62.964 +736224,64.179,61.366 +736225,64.652,66.073 +736226,64.146,64.517 +736227,63.581,62.94 +736228,62.951,61.342 +736229,63.262,66.047 +736230,62.807,64.492 +736231,62.296,62.916 +736232,61.724,61.319 +736233,61.872,66.019 +736234,61.469,64.466 +736235,61.012,62.893 +736236,60.497,61.298 +736237,60.481,65.989 +736238,60.13,64.44 +736239,59.728,62.869 +736240,59.27,61.278 +736241,59.089,65.959 +736242,58.792,64.413 +736243,58.444,62.847 +736244,58.043,61.26 +736245,57.698,65.927 +736246,57.453,64.386 +736247,57.161,62.824 +736248,56.817,61.242 +736249,56.306,65.894 +736250,56.114,64.359 +736251,55.877,62.803 +736252,55.591,61.226 +736253,54.914,65.859 +736254,54.775,64.331 +736255,54.593,62.781 +736256,54.365,61.212 +736257,53.521,65.824 +736258,53.436,64.302 +736259,53.31,62.76 +736260,53.139,61.198 +736261,52.129,65.787 +736262,52.097,64.273 +736263,52.026,62.739 +736264,51.913,61.186 +736265,50.736,65.749 +736266,50.758,64.244 +736267,50.743,62.719 +736268,50.688,61.175 +736269,49.343,65.709 +736270,49.419,64.214 +736271,49.459,62.699 +736272,49.462,61.165 +736273,47.95,65.669 +736274,48.08,64.184 +736275,48.176,62.68 +736276,48.236,61.157 +736277,46.557,65.627 +736278,46.741,64.154 +736279,46.893,62.661 +736280,47.01,61.149 +736281,45.164,65.584 +736282,45.402,64.123 +736283,45.609,62.642 +736284,45.784,61.143 +736285,43.771,65.54 +736286,44.063,64.091 +736287,44.326,62.624 +736288,44.557,61.138 +736289,42.378,65.494 +736290,42.725,64.059 +736291,43.042,62.606 +736292,43.331,61.135 +736293,40.985,65.448 +736294,41.386,64.027 +736295,41.759,62.588 +736296,42.104,61.132 +736297,39.593,65.4 +736298,40.047,63.994 +736299,40.475,62.571 +736300,40.877,61.131 +736301,38.2,65.351 +736302,38.709,63.961 +736303,39.192,62.554 +736304,39.649,61.131 +736305,36.808,65.301 +736306,37.37,63.928 +736307,37.908,62.538 +736308,38.421,61.132 +736309,35.416,65.249 +736310,36.032,63.894 +736311,36.624,62.522 +736312,37.192,61.134 +736313,34.025,65.197 +736314,34.694,63.86 +736315,35.34,62.506 +736316,35.963,61.137 +736317,32.634,65.143 +736318,33.356,63.825 +736319,34.056,62.491 +736320,34.733,61.142 +736321,31.243,65.089 +736322,32.018,63.79 +736323,32.772,62.476 +736324,33.503,61.147 +736325,29.852,65.033 +736326,30.681,63.755 +736327,31.487,62.461 +736328,32.272,61.154 +736329,28.462,64.976 +736330,29.343,63.719 +736331,30.202,62.447 +736332,31.04,61.161 +736333,27.073,64.918 +736334,28.006,63.683 +736335,28.918,62.433 +736336,29.808,61.17 +736337,25.684,64.859 +736338,26.669,63.646 +736339,27.632,62.419 +736340,28.575,61.18 +736341,24.295,64.799 +736342,25.333,63.61 +736343,26.347,62.406 +736344,27.341,61.19 +736345,22.908,64.738 +736346,23.996,63.572 +736347,25.062,62.393 +736348,26.106,61.202 +736349,21.521,64.676 +736350,22.66,63.535 +736351,23.776,62.381 +736352,24.87,61.215 +736353,20.134,64.613 +736354,21.324,63.497 +736355,22.49,62.368 +736356,23.633,61.228 +736357,18.749,64.549 +736358,19.989,63.459 +736359,21.204,62.356 +736360,22.396,61.243 +736361,17.364,64.484 +736362,18.653,63.42 +736363,19.917,62.344 +736364,21.157,61.258 +736365,15.98,64.418 +736366,17.318,63.381 +736367,18.63,62.333 +736368,19.917,61.274 +736369,14.596,64.351 +736370,15.984,63.342 +736371,17.343,62.322 +736372,18.676,61.291 +736373,13.214,64.283 +736374,14.649,63.303 +736375,16.055,62.311 +736376,17.435,61.309 +736377,11.833,64.215 +736378,13.316,63.263 +736379,14.767,62.3 +736380,16.192,61.328 +736381,10.452,64.146 +736382,11.982,63.223 +736383,13.479,62.29 +736384,14.947,61.348 +736385,9.0728,64.075 +736386,10.649,63.183 +736387,12.191,62.28 +736388,13.702,61.368 +736389,7.6944,64.004 +736390,9.3161,63.142 +736391,10.902,62.27 +736392,12.455,61.389 +736393,6.3171,63.933 +736394,7.9838,63.101 +736395,9.6124,62.26 +736396,11.207,61.411 +736397,4.9409,63.86 +736398,6.6518,63.06 +736399,8.3227,62.251 +736400,9.958,61.433 +736401,3.5658,63.787 +736402,5.3203,63.019 +736403,7.0326,62.241 +736404,8.7075,61.456 +736405,2.1918,63.713 +736406,3.9892,62.977 +736407,5.7421,62.232 +736408,7.4556,61.48 +736409,0.81915,63.638 +736410,2.6586,62.935 +736411,4.4511,62.223 +736412,6.2023,61.505 +736413,359.45,63.563 +736414,1.3285,62.893 +736415,3.1598,62.215 +736416,4.9476,61.529 +736417,358.08,63.487 +736418,360,62.851 +736419,1.868,62.206 +736420,3.6914,61.555 +736421,356.71,63.411 +736422,358.67,62.809 +736423,0.57573,62.198 +736424,2.4338,61.581 +736425,355.34,63.334 +736426,357.34,62.766 +736427,359.28,62.19 +736428,1.1748,61.608 +736429,353.98,63.256 +736430,356.01,62.723 +736431,357.99,62.182 +736432,359.91,61.635 +736433,352.61,63.178 +736434,354.68,62.68 +736435,356.7,62.174 +736436,358.65,61.662 +736437,351.25,63.1 +736438,353.36,62.637 +736439,355.4,62.166 +736440,357.39,61.69 +736441,349.89,63.021 +736442,352.03,62.593 +736443,354.11,62.159 +736444,356.12,61.718 +736445,348.53,62.941 +736446,350.71,62.55 +736447,352.81,62.151 +736448,354.86,61.747 +736449,347.17,62.861 +736450,349.38,62.506 +736451,351.52,62.144 +736452,353.59,61.776 +736453,345.81,62.781 +736454,348.05,62.462 +736455,350.22,62.136 +736456,352.32,61.805 +736457,344.45,62.7 +736458,346.73,62.419 +736459,348.92,62.129 +736460,351.05,61.834 +736461,343.1,62.619 +736462,345.41,62.374 +736463,347.63,62.122 +736464,349.77,61.864 +736465,341.75,62.538 +736466,344.08,62.33 +736467,346.33,62.115 +736468,348.5,61.894 +736469,340.4,62.457 +736470,342.76,62.286 +736471,345.03,62.108 +736472,347.22,61.924 +736473,339.05,62.375 +736474,341.44,62.242 +736475,343.73,62.101 +736476,345.94,61.954 +736477,337.7,62.293 +736478,340.12,62.197 +736479,342.43,62.094 +736480,344.66,61.985 +736481,336.36,62.211 +736482,338.8,62.153 +736483,341.13,62.087 +736484,343.38,62.015 +736485,335.01,62.129 +736486,337.48,62.109 +736487,339.83,62.08 +736488,342.1,62.046 +736489,333.67,62.046 +736490,336.16,62.064 +736491,338.53,62.073 +736492,340.81,62.076 +736493,332.33,61.964 +736494,334.84,62.019 +736495,337.23,62.067 +736496,339.53,62.107 +736497,330.99,61.881 +736498,333.52,61.975 +736499,335.93,62.06 +736500,338.24,62.138 +736501,329.66,61.799 +736502,332.2,61.93 +736503,334.62,62.053 +736504,336.95,62.168 +736505,328.32,61.716 +736506,330.88,61.886 +736507,333.32,62.046 +736508,335.65,62.198 +736509,326.99,61.634 +736510,329.57,61.841 +736511,332.02,62.039 +736512,334.36,62.229 +736513,325.66,61.552 +736514,328.25,61.796 +736515,330.71,62.032 +736516,333.06,62.259 +736517,324.33,61.469 +736518,326.94,61.752 +736519,329.41,62.025 +736520,331.77,62.289 +736521,323,61.387 +736522,325.62,61.707 +736523,328.1,62.017 +736524,330.47,62.319 +736525,321.68,61.305 +736526,324.31,61.663 +736527,326.8,62.01 +736528,329.17,62.348 +736529,320.36,61.223 +736530,322.99,61.619 +736531,325.49,62.003 +736532,327.86,62.377 +736533,319.04,61.142 +736534,321.68,61.574 +736535,324.18,61.995 +736536,326.56,62.406 +736537,317.72,61.06 +736538,320.37,61.53 +736539,322.87,61.988 +736540,325.25,62.435 +736541,316.4,60.979 +736542,319.06,61.486 +736543,321.57,61.98 +736544,323.94,62.463 +736545,315.09,60.899 +736546,317.75,61.442 +736547,320.26,61.972 +736548,322.63,62.491 +736549,313.78,60.818 +736550,316.44,61.398 +736551,318.95,61.964 +736552,321.32,62.519 +736553,312.47,60.738 +736554,315.13,61.354 +736555,317.64,61.956 +736556,320.01,62.546 +736557,311.16,60.659 +736558,313.82,61.31 +736559,316.33,61.948 +736560,318.69,62.572 +736561,309.85,60.58 +736562,312.51,61.267 +736563,315.01,61.939 +736564,317.37,62.598 +736565,308.55,60.501 +736566,311.21,61.223 +736567,313.7,61.93 +736568,316.06,62.624 +736569,307.24,60.423 +736570,309.9,61.18 +736571,312.39,61.922 +736572,314.74,62.649 +736573,305.94,60.345 +736574,308.59,61.137 +736575,311.08,61.912 +736576,313.41,62.673 +736577,304.65,60.268 +736578,307.29,61.094 +736579,309.76,61.903 +736580,312.09,62.697 +736581,303.35,60.191 +736582,305.99,61.051 +736583,308.45,61.894 +736584,310.76,62.72 +736585,302.06,60.115 +736586,304.68,61.009 +736587,307.13,61.884 +736588,309.44,62.743 +736589,300.77,60.04 +736590,303.38,60.966 +736591,305.82,61.874 +736592,308.11,62.765 +736593,299.48,59.966 +736594,302.08,60.924 +736595,304.5,61.864 +736596,306.77,62.786 +736597,298.19,59.892 +736598,300.77,60.882 +736599,303.18,61.853 +736600,305.44,62.806 +736601,296.9,59.818 +736602,299.47,60.841 +736603,301.87,61.843 +736604,304.11,62.826 +736605,295.62,59.746 +736606,298.17,60.799 +736607,300.55,61.832 +736608,302.77,62.845 +736609,294.34,59.674 +736610,296.87,60.758 +736611,299.23,61.82 +736612,301.43,62.863 +736613,293.06,59.604 +736614,295.57,60.717 +736615,297.91,61.809 +736616,300.09,62.88 +736617,291.78,59.533 +736618,294.28,60.676 +736619,296.59,61.797 +736620,298.75,62.897 +736621,290.51,59.464 +736622,292.98,60.636 +736623,295.27,61.785 +736624,297.41,62.912 +736625,289.23,59.396 +736626,291.68,60.596 +736627,293.95,61.772 +736628,296.07,62.927 +736629,287.96,59.329 +736630,290.38,60.556 +736631,292.63,61.76 +736632,294.72,62.941 +736633,286.69,59.262 +736634,289.09,60.516 +736635,291.31,61.746 +736636,293.37,62.953 +736637,285.42,59.197 +736638,287.79,60.477 +736639,289.99,61.733 +736640,292.03,62.965 +736641,284.16,59.132 +736642,286.5,60.438 +736643,288.66,61.719 +736644,290.68,62.976 +736645,282.89,59.068 +736646,285.21,60.4 +736647,287.34,61.705 +736648,289.32,62.986 +736649,281.63,59.006 +736650,283.91,60.361 +736651,286.02,61.691 +736652,287.97,62.995 +736653,280.37,58.944 +736654,282.62,60.323 +736655,284.69,61.676 +736656,286.62,63.002 +736657,279.11,58.884 +736658,281.33,60.286 +736659,283.37,61.661 +736660,285.26,63.009 +736661,277.86,58.824 +736662,280.03,60.249 +736663,282.04,61.645 +736664,283.9,63.015 +736665,276.6,58.766 +736666,278.74,60.212 +736667,280.72,61.629 +736668,282.54,63.019 +736669,275.35,58.709 +736670,277.45,60.175 +736671,279.39,61.613 +736672,281.18,63.023 +736673,274.1,58.653 +736674,276.16,60.139 +736675,278.06,61.596 +736676,279.82,63.025 +736677,272.85,58.598 +736678,274.87,60.103 +736679,276.74,61.579 +736680,278.46,63.026 +736681,271.6,58.544 +736682,273.58,60.068 +736683,275.41,61.561 +736684,277.1,63.026 +736685,270.35,58.492 +736686,272.3,60.033 +736687,274.08,61.543 +736688,275.73,63.025 +736689,269.11,58.441 +736690,271.01,59.998 +736691,272.75,61.525 +736692,274.36,63.023 +736693,267.86,58.39 +736694,269.72,59.964 +736695,271.42,61.506 +736696,273,63.019 +736697,266.62,58.342 +736698,268.43,59.93 +736699,270.1,61.487 +736700,271.63,63.014 +736701,265.38,58.294 +736702,267.15,59.896 +736703,268.77,61.467 +736704,270.26,63.009 +736705,264.14,58.248 +736706,265.86,59.863 +736707,267.44,61.447 +736708,268.89,63.001 +736709,262.9,58.202 +736710,264.58,59.83 +736711,266.11,61.427 +736712,267.51,62.993 +736713,261.66,58.159 +736714,263.29,59.798 +736715,264.78,61.406 +736716,266.14,62.983 +736717,260.43,58.116 +736718,262.01,59.766 +736719,263.45,61.385 +736720,264.77,62.972 +736721,259.2,58.075 +736722,260.72,59.735 +736723,262.11,61.363 +736724,263.39,62.96 +736725,257.96,58.035 +736726,259.44,59.704 +736727,260.78,61.341 +736728,262.02,62.946 +736729,256.73,57.996 +736730,258.15,59.673 +736731,259.45,61.318 +736732,260.64,62.931 +736733,255.5,57.959 +736734,256.87,59.643 +736735,258.12,61.295 +736736,259.26,62.915 +736737,254.27,57.923 +736738,255.59,59.613 +736739,256.79,61.271 +736740,257.88,62.898 +736741,253.04,57.889 +736742,254.31,59.584 +736743,255.45,61.247 +736744,256.5,62.879 +736745,251.81,57.855 +736746,253.02,59.555 +736747,254.12,61.223 +736748,255.12,62.859 +736749,250.59,57.823 +736750,251.74,59.527 +736751,252.79,61.198 +736752,253.74,62.838 +736753,249.36,57.793 +736754,250.46,59.499 +736755,251.45,61.172 +736756,252.36,62.815 +736757,248.14,57.764 +736758,249.18,59.471 +736759,250.12,61.147 +736760,250.97,62.791 +736761,246.91,57.736 +736762,247.9,59.444 +736763,248.79,61.12 +736764,249.59,62.765 +736765,245.69,57.709 +736766,246.62,59.417 +736767,247.45,61.093 +736768,248.21,62.739 +736769,244.47,57.684 +736770,245.34,59.391 +736771,246.12,61.066 +736772,246.82,62.711 +736773,243.24,57.661 +736774,244.06,59.365 +736775,244.78,61.038 +736776,245.43,62.681 +736777,242.02,57.638 +736778,242.78,59.34 +736779,243.45,61.01 +736780,244.05,62.65 +736781,240.8,57.617 +736782,241.5,59.315 +736783,242.12,60.982 +736784,242.66,62.618 +736785,239.58,57.598 +736786,240.22,59.29 +736787,240.78,60.953 +736788,241.27,62.585 +736789,238.36,57.579 +736790,238.94,59.266 +736791,239.45,60.923 +736792,239.89,62.55 +736793,237.14,57.562 +736794,237.66,59.242 +736795,238.11,60.893 +736796,238.5,62.514 +736797,235.92,57.547 +736798,236.38,59.219 +736799,236.78,60.862 +736800,237.11,62.477 +736801,234.7,57.533 +736802,235.1,59.196 +736803,235.44,60.832 +736804,235.72,62.438 +736805,233.49,57.52 +736806,233.82,59.174 +736807,234.1,60.8 +736808,234.33,62.398 +736809,232.27,57.508 +736810,232.55,59.152 +736811,232.77,60.768 +736812,232.94,62.356 +736813,231.05,57.498 +736814,231.27,59.131 +736815,231.43,60.736 +736816,231.55,62.314 +736817,229.83,57.489 +736818,229.99,59.11 +736819,230.1,60.703 +736820,230.16,62.27 +736821,228.61,57.481 +736822,228.71,59.089 +736823,228.76,60.67 +736824,228.77,62.224 +736825,227.39,57.475 +736826,227.43,59.069 +736827,227.43,60.636 +736828,227.38,62.178 +736829,226.17,57.47 +736830,226.15,59.049 +736831,226.09,60.602 +736832,225.99,62.13 +736833,224.96,57.466 +736834,224.88,59.03 +736835,224.76,60.568 +736836,224.6,62.081 +736837,223.74,57.464 +736838,223.6,59.011 +736839,223.42,60.533 +736840,223.21,62.03 +736841,222.52,57.462 +736842,222.32,58.992 +736843,222.09,60.497 +736844,221.82,61.978 +736845,221.3,57.462 +736846,221.04,58.974 +736847,220.75,60.462 +736848,220.43,61.925 +736849,220.08,57.464 +736850,219.76,58.956 +736851,219.42,60.425 +736852,219.04,61.871 +736853,218.86,57.466 +736854,218.48,58.939 +736855,218.08,60.389 +736856,217.65,61.816 +736857,217.64,57.47 +736858,217.21,58.921 +736859,216.75,60.352 +736860,216.26,61.759 +736861,216.42,57.474 +736862,215.93,58.905 +736863,215.41,60.314 +736864,214.87,61.701 +736865,215.2,57.48 +736866,214.65,58.889 +736867,214.08,60.276 +736868,213.48,61.642 +736869,213.98,57.487 +736870,213.37,58.873 +736871,212.74,60.238 +736872,212.09,61.582 +736873,212.76,57.495 +736874,212.09,58.857 +736875,211.41,60.199 +736876,210.71,61.521 +736877,211.53,57.505 +736878,210.81,58.842 +736879,210.07,60.16 +736880,209.32,61.459 +736881,210.31,57.515 +736882,209.53,58.827 +736883,208.74,60.121 +736884,207.93,61.395 +736885,209.09,57.527 +736886,208.25,58.813 +736887,207.41,60.081 +736888,206.54,61.33 +736889,207.86,57.539 +736890,206.97,58.798 +736891,206.07,60.041 +736892,205.15,61.265 +736893,206.63,57.552 +736894,205.7,58.785 +736895,204.74,60 +736896,203.77,61.198 +736897,205.41,57.567 +736898,204.42,58.771 +736899,203.41,59.959 +736900,202.38,61.13 +736901,204.18,57.582 +736902,203.14,58.758 +736903,202.07,59.918 +736904,201,61.061 +736905,202.95,57.599 +736906,201.85,58.745 +736907,200.74,59.876 +736908,199.61,60.991 +736909,201.72,57.616 +736910,200.57,58.733 +736911,199.41,59.835 +736912,198.23,60.92 +736913,200.49,57.634 +736914,199.29,58.72 +736915,198.08,59.792 +736916,196.84,60.849 +736917,199.26,57.653 +736918,198.01,58.708 +736919,196.75,59.75 +736920,195.46,60.776 +736921,198.03,57.673 +736922,196.73,58.697 +736923,195.41,59.707 +736924,194.08,60.702 +736925,196.8,57.694 +736926,195.45,58.685 +736927,194.08,59.664 +736928,192.7,60.628 +736929,195.56,57.716 +736930,194.17,58.674 +736931,192.75,59.62 +736932,191.32,60.552 +736933,194.32,57.738 +736934,192.88,58.663 +736935,191.42,59.576 +736936,189.94,60.476 +736937,193.09,57.761 +736938,191.6,58.653 +736939,190.09,59.532 +736940,188.56,60.399 +736941,191.85,57.785 +736942,190.32,58.642 +736943,188.76,59.488 +736944,187.18,60.321 +736945,190.61,57.81 +736946,189.04,58.632 +736947,187.44,59.443 +736948,185.81,60.242 +736949,189.37,57.835 +736950,187.75,58.622 +736951,186.11,59.398 +736952,184.43,60.162 +736953,188.13,57.861 +736954,186.47,58.612 +736955,184.78,59.353 +736956,183.06,60.082 +736957,186.88,57.887 +736958,185.18,58.603 +736959,183.45,59.308 +736960,181.68,60.001 +736961,185.64,57.914 +736962,183.9,58.593 +736963,182.12,59.262 +736964,180.31,59.92 +736965,184.39,57.942 +736966,182.61,58.584 +736967,180.8,59.217 +736968,178.94,59.838 +736969,183.14,57.97 +736970,181.33,58.575 +736971,179.47,59.171 +736972,177.57,59.755 +736973,181.89,57.999 +736974,180.04,58.566 +736975,178.14,59.124 +736976,176.2,59.671 +736977,180.64,58.028 +736978,178.75,58.558 +736979,176.82,59.078 +736980,174.84,59.587 +736981,179.39,58.057 +736982,177.47,58.549 +736983,175.49,59.031 +736984,173.47,59.503 +736985,178.14,58.087 +736986,176.18,58.541 +736987,174.17,58.985 +736988,172.11,59.418 +736989,176.88,58.118 +736990,174.89,58.532 +736991,172.85,58.938 +736992,170.75,59.332 +736993,175.62,58.148 +736994,173.6,58.524 +736995,171.52,58.891 +736996,169.38,59.246 +736997,174.37,58.179 +736998,172.31,58.516 +736999,170.2,58.844 +737000,168.02,59.16 +737001,173.11,58.211 +737002,171.02,58.508 +737003,168.88,58.796 +737004,166.67,59.073 +737005,171.84,58.242 +737006,169.73,58.5 +737007,167.56,58.749 +737008,165.31,58.986 +737009,170.58,58.274 +737010,168.44,58.492 +737011,166.24,58.701 +737012,163.95,58.899 +737013,169.31,58.306 +737014,167.15,58.485 +737015,164.92,58.654 +737016,162.6,58.811 +737017,168.05,58.338 +737018,165.86,58.477 +737019,163.6,58.606 +737020,161.25,58.723 +737021,166.78,58.37 +737022,164.57,58.469 +737023,162.28,58.558 +737024,159.9,58.635 +737025,165.51,58.402 +737026,163.27,58.461 +737027,160.96,58.51 +737028,158.55,58.547 +737029,164.24,58.435 +737030,161.98,58.454 +737031,159.64,58.462 +737032,157.2,58.458 +737033,162.96,58.467 +737034,160.69,58.446 +737035,158.32,58.414 +737036,155.86,58.369 +737037,161.69,58.499 +737038,159.39,58.439 +737039,157.01,58.367 +737040,154.52,58.281 +737041,160.41,58.532 +737042,158.1,58.431 +737043,155.69,58.318 +737044,153.17,58.192 +737045,159.13,58.564 +737046,156.8,58.423 +737047,154.38,58.27 +737048,151.83,58.103 +737049,157.85,58.596 +737050,155.51,58.416 +737051,153.06,58.222 +737052,150.5,58.014 +737053,156.57,58.628 +737054,154.21,58.408 +737055,151.75,58.174 +737056,149.16,57.925 +737057,155.28,58.66 +737058,152.91,58.4 +737059,150.43,58.126 +737060,147.83,57.837 +737061,153.99,58.692 +737062,151.61,58.392 +737063,149.12,58.079 +737064,146.5,57.748 +737065,152.71,58.723 +737066,150.32,58.384 +737067,147.81,58.031 +737068,145.17,57.659 +737069,151.42,58.754 +737070,149.02,58.376 +737071,146.5,57.983 +737072,143.84,57.571 +737073,150.12,58.785 +737074,147.72,58.368 +737075,145.19,57.935 +737076,142.51,57.483 +737077,148.83,58.816 +737078,146.42,58.36 +737079,143.88,57.887 +737080,141.19,57.395 +737081,147.53,58.846 +737082,145.12,58.352 +737083,142.57,57.84 +737084,139.86,57.307 +737085,146.24,58.876 +737086,143.81,58.343 +737087,141.26,57.792 +737088,138.55,57.22 +737089,144.94,58.906 +737090,142.51,58.335 +737091,139.95,57.745 +737092,137.23,57.133 +737093,143.64,58.935 +737094,141.21,58.326 +737095,138.64,57.697 +737096,135.91,57.047 +737097,142.33,58.963 +737098,139.91,58.317 +737099,137.34,57.65 +737100,134.6,56.96 +737101,141.03,58.991 +737102,138.6,58.308 +737103,136.03,57.603 +737104,133.29,56.875 +737105,139.72,59.019 +737106,137.3,58.299 +737107,134.73,57.556 +737108,131.98,56.789 +737109,138.42,59.046 +737110,135.99,58.289 +737111,133.42,57.51 +737112,130.67,56.704 +737113,137.11,59.073 +737114,134.69,58.279 +737115,132.12,57.463 +737116,129.36,56.62 +737117,135.79,59.098 +737118,133.38,58.27 +737119,130.82,57.417 +737120,128.06,56.536 +737121,134.48,59.124 +737122,132.08,58.259 +737123,129.51,57.37 +737124,126.76,56.453 +737125,133.16,59.148 +737126,130.77,58.249 +737127,128.21,57.324 +737128,125.46,56.371 +737129,131.85,59.172 +737130,129.46,58.239 +737131,126.91,57.279 +737132,124.17,56.289 +737133,130.53,59.195 +737134,128.15,58.228 +737135,125.61,57.233 +737136,122.87,56.208 +737137,129.21,59.217 +737138,126.84,58.217 +737139,124.31,57.188 +737140,121.58,56.127 +737141,127.89,59.239 +737142,125.53,58.205 +737143,123.01,57.143 +737144,120.29,56.048 +737145,126.56,59.26 +737146,124.22,58.194 +737147,121.71,57.098 +737148,119,55.969 +737149,125.24,59.28 +737150,122.91,58.182 +737151,120.42,57.053 +737152,117.71,55.891 +737153,123.91,59.299 +737154,121.6,58.17 +737155,119.12,57.009 +737156,116.43,55.813 +737157,122.58,59.317 +737158,120.29,58.157 +737159,117.82,56.965 +737160,115.15,55.737 +737161,121.25,59.334 +737162,118.98,58.145 +737163,116.53,56.921 +737164,113.87,55.661 +737165,119.92,59.351 +737166,117.66,58.131 +737167,115.24,56.878 +737168,112.59,55.587 +737169,118.58,59.366 +737170,116.35,58.118 +737171,113.94,56.835 +737172,111.32,55.513 +737173,117.25,59.381 +737174,115.04,58.104 +737175,112.65,56.792 +737176,110.05,55.441 +737177,115.91,59.394 +737178,113.72,58.09 +737179,111.36,56.75 +737180,108.77,55.369 +737181,114.57,59.407 +737182,112.41,58.076 +737183,110.06,56.707 +737184,107.51,55.298 +737185,113.23,59.418 +737186,111.09,58.061 +737187,108.77,56.666 +737188,106.24,55.229 +737189,111.89,59.429 +737190,109.78,58.046 +737191,107.48,56.624 +737192,104.97,55.16 +737193,110.54,59.438 +737194,108.46,58.03 +737195,106.19,56.583 +737196,103.71,55.093 +737197,109.2,59.446 +737198,107.14,58.014 +737199,104.9,56.542 +737200,102.45,55.026 +737201,107.85,59.453 +737202,105.82,57.998 +737203,103.62,56.502 +737204,101.19,54.961 +737205,106.51,59.459 +737206,104.51,57.981 +737207,102.33,56.462 +737208,99.936,54.897 +737209,105.16,59.464 +737210,103.19,57.964 +737211,101.04,56.422 +737212,98.681,54.835 +737213,103.81,59.468 +737214,101.87,57.947 +737215,99.754,56.383 +737216,97.429,54.773 +737217,102.45,59.47 +737218,100.55,57.929 +737219,98.468,56.344 +737220,96.178,54.713 +737221,101.1,59.472 +737222,99.227,57.91 +737223,97.182,56.306 +737224,94.929,54.654 +737225,99.745,59.472 +737226,97.907,57.892 +737227,95.898,56.268 +737228,93.682,54.596 +737229,98.388,59.47 +737230,96.586,57.872 +737231,94.613,56.23 +737232,92.436,54.539 +737233,97.031,59.468 +737234,95.264,57.853 +737235,93.33,56.193 +737236,91.193,54.484 +737237,95.672,59.464 +737238,93.942,57.833 +737239,92.047,56.156 +737240,89.951,54.43 +737241,94.312,59.459 +737242,92.62,57.812 +737243,90.764,56.12 +737244,88.711,54.378 +737245,92.951,59.453 +737246,91.297,57.791 +737247,89.482,56.084 +737248,87.473,54.327 +737249,91.588,59.445 +737250,89.974,57.77 +737251,88.201,56.048 +737252,86.236,54.277 +737253,90.224,59.436 +737254,88.651,57.748 +737255,86.92,56.013 +737256,85.001,54.228 +737257,88.86,59.426 +737258,87.327,57.726 +737259,85.64,55.979 +737260,83.767,54.181 +737261,87.494,59.414 +737262,86.003,57.703 +737263,84.36,55.945 +737264,82.535,54.136 +737265,86.127,59.401 +737266,84.678,57.68 +737267,83.08,55.911 +737268,81.304,54.092 +737269,84.758,59.387 +737270,83.353,57.656 +737271,81.801,55.878 +737272,80.075,54.049 +737273,83.389,59.371 +737274,82.028,57.632 +737275,80.523,55.845 +737276,78.847,54.007 +737277,82.019,59.354 +737278,80.702,57.607 +737279,79.245,55.813 +737280,77.621,53.968 +737281,80.648,59.336 +737282,79.376,57.582 +737283,77.967,55.781 +737284,76.396,53.929 +737285,79.276,59.316 +737286,78.05,57.556 +737287,76.69,55.75 +737288,75.172,53.892 +737289,77.903,59.295 +737290,76.723,57.53 +737291,75.414,55.719 +737292,73.949,53.857 +737293,76.529,59.272 +737294,75.396,57.504 +737295,74.137,55.688 +737296,72.728,53.823 +737297,75.155,59.248 +737298,74.069,57.477 +737299,72.861,55.658 +737300,71.507,53.79 +737301,73.779,59.222 +737302,72.742,57.449 +737303,71.586,55.629 +737304,70.288,53.759 +737305,72.403,59.195 +737306,71.415,57.421 +737307,70.311,55.6 +737308,69.07,53.73 +737309,71.026,59.167 +737310,70.087,57.392 +737311,69.036,55.572 +737312,67.853,53.702 +737313,69.648,59.137 +737314,68.759,57.363 +737315,67.761,55.544 +737316,66.636,53.675 +737317,68.269,59.106 +737318,67.43,57.334 +737319,66.487,55.516 +737320,65.421,53.65 +737321,66.89,59.073 +737322,66.102,57.304 +737323,65.213,55.489 +737324,64.206,53.627 +737325,65.51,59.039 +737326,64.773,57.273 +737327,63.94,55.462 +737328,62.992,53.604 +737329,64.13,59.004 +737330,63.445,57.242 +737331,62.666,55.436 +737332,61.779,53.584 +737333,62.749,58.967 +737334,62.116,57.211 +737335,61.393,55.411 +737336,60.566,53.565 +737337,61.368,58.929 +737338,60.787,57.179 +737339,60.12,55.386 +737340,59.354,53.547 +737341,59.986,58.889 +737342,59.458,57.146 +737343,58.848,55.361 +737344,58.143,53.531 +737345,58.603,58.848 +737346,58.128,57.113 +737347,57.575,55.337 +737348,56.932,53.516 +737349,57.221,58.805 +737350,56.799,57.08 +737351,56.303,55.313 +737352,55.721,53.503 +737353,55.837,58.761 +737354,55.469,57.046 +737355,55.031,55.29 +737356,54.511,53.491 +737357,54.454,58.716 +737358,54.14,57.012 +737359,53.759,55.267 +737360,53.302,53.481 +737361,53.07,58.669 +737362,52.81,56.977 +737363,52.487,55.245 +737364,52.092,53.472 +737365,51.686,58.621 +737366,51.481,56.941 +737367,51.216,55.223 +737368,50.883,53.465 +737369,50.301,58.571 +737370,50.151,56.906 +737371,49.944,55.202 +737372,49.674,53.458 +737373,48.917,58.52 +737374,48.821,56.869 +737375,48.673,55.181 +737376,48.465,53.454 +737377,47.532,58.468 +737378,47.492,56.833 +737379,47.402,55.16 +737380,47.256,53.451 +737381,46.147,58.414 +737382,46.162,56.795 +737383,46.131,55.14 +737384,46.047,53.449 +737385,44.762,58.359 +737386,44.832,56.758 +737387,44.859,55.121 +737388,44.838,53.448 +737389,43.377,58.303 +737390,43.503,56.719 +737391,43.588,55.102 +737392,43.629,53.449 +737393,41.992,58.245 +737394,42.173,56.681 +737395,42.317,55.083 +737396,42.42,53.451 +737397,40.607,58.186 +737398,40.843,56.642 +737399,41.046,55.065 +737400,41.211,53.455 +737401,39.222,58.126 +737402,39.514,56.602 +737403,39.775,55.047 +737404,40.001,53.46 +737405,37.837,58.064 +737406,38.185,56.562 +737407,38.504,55.03 +737408,38.791,53.466 +737409,36.452,58.001 +737410,36.856,56.522 +737411,37.233,55.013 +737412,37.581,53.473 +737413,35.067,57.937 +737414,35.526,56.481 +737415,35.962,54.996 +737416,36.37,53.482 +737417,33.683,57.872 +737418,34.197,56.44 +737419,34.69,54.98 +737420,35.159,53.491 +737421,32.299,57.805 +737422,32.869,56.399 +737423,33.419,54.964 +737424,33.948,53.502 +737425,30.915,57.737 +737426,31.54,56.357 +737427,32.147,54.949 +737428,32.736,53.515 +737429,29.531,57.668 +737430,30.212,56.314 +737431,30.876,54.934 +737432,31.523,53.528 +737433,28.148,57.598 +737434,28.883,56.271 +737435,29.604,54.919 +737436,30.31,53.542 +737437,26.765,57.527 +737438,27.555,56.228 +737439,28.332,54.905 +737440,29.096,53.558 +737441,25.382,57.454 +737442,26.228,56.185 +737443,27.06,54.891 +737444,27.881,53.575 +737445,24,57.381 +737446,24.9,56.141 +737447,25.788,54.878 +737448,26.665,53.592 +737449,22.619,57.306 +737450,23.573,56.096 +737451,24.516,54.864 +737452,25.449,53.611 +737453,21.238,57.23 +737454,22.246,56.052 +737455,23.243,54.852 +737456,24.231,53.631 +737457,19.858,57.154 +737458,20.919,56.007 +737459,21.971,54.839 +737460,23.013,53.652 +737461,18.478,57.076 +737462,19.592,55.961 +737463,20.698,54.827 +737464,21.794,53.674 +737465,17.099,56.997 +737466,18.266,55.916 +737467,19.424,54.815 +737468,20.574,53.696 +737469,15.72,56.917 +737470,16.94,55.87 +737471,18.151,54.804 +737472,19.353,53.72 +737473,14.343,56.836 +737474,15.615,55.823 +737475,16.877,54.792 +737476,18.13,53.745 +737477,12.966,56.754 +737478,14.29,55.777 +737479,15.603,54.781 +737480,16.907,53.77 +737481,11.59,56.672 +737482,12.965,55.73 +737483,14.329,54.771 +737484,15.683,53.796 +737485,10.215,56.588 +737486,11.64,55.682 +737487,13.054,54.76 +737488,14.457,53.823 +737489,8.8403,56.504 +737490,10.316,55.635 +737491,11.779,54.75 +737492,13.23,53.851 +737493,7.4669,56.419 +737494,8.9926,55.587 +737495,10.504,54.74 +737496,12.002,53.879 +737497,6.0944,56.333 +737498,7.6693,55.539 +737499,9.2279,54.73 +737500,10.772,53.908 +737501,4.723,56.246 +737502,6.3465,55.491 +737503,7.9519,54.721 +737504,9.5413,53.938 +737505,3.3527,56.158 +737506,5.0241,55.442 +737507,6.6755,54.712 +737508,8.309,53.969 +737509,1.9834,56.07 +737510,3.7022,55.393 +737511,5.3987,54.703 +737512,7.0754,54 +737513,0.61519,55.981 +737514,2.3807,55.344 +737515,4.1215,54.694 +737516,5.8404,54.032 +737517,359.25,55.892 +737518,1.0597,55.295 +737519,2.844,54.685 +737520,4.6039,54.064 +737521,357.88,55.801 +737522,359.74,55.246 +737523,1.566,54.677 +737524,3.366,54.097 +737525,356.52,55.71 +737526,358.42,55.196 +737527,0.2876,54.669 +737528,2.1265,54.13 +737529,355.15,55.619 +737530,357.1,55.146 +737531,359.01,54.661 +737532,0.88556,54.163 +737533,353.79,55.527 +737534,355.78,55.096 +737535,357.73,54.653 +737536,359.64,54.198 +737537,352.43,55.435 +737538,354.46,55.046 +737539,356.45,54.645 +737540,358.4,54.232 +737541,351.07,55.342 +737542,353.14,54.996 +737543,355.17,54.637 +737544,357.15,54.267 +737545,349.71,55.248 +737546,351.83,54.946 +737547,353.89,54.629 +737548,355.91,54.302 +737549,348.36,55.155 +737550,350.51,54.895 +737551,352.61,54.622 +737552,354.66,54.337 +737553,347,55.06 +737554,349.19,54.844 +737555,351.33,54.615 +737556,353.41,54.373 +737557,345.65,54.966 +737558,347.88,54.794 +737559,350.04,54.607 +737560,352.15,54.409 +737561,344.3,54.871 +737562,346.56,54.743 +737563,348.76,54.6 +737564,350.9,54.445 +737565,342.95,54.776 +737566,345.25,54.692 +737567,347.48,54.593 +737568,349.64,54.481 +737569,341.6,54.681 +737570,343.93,54.641 +737571,346.19,54.586 +737572,348.39,54.518 +737573,340.25,54.585 +737574,342.62,54.59 +737575,344.91,54.579 +737576,347.13,54.554 +737577,338.91,54.49 +737578,341.31,54.539 +737579,343.63,54.572 +737580,345.87,54.59 +737581,337.56,54.394 +737582,340,54.488 +737583,342.34,54.565 +737584,344.6,54.627 +737585,336.22,54.298 +737586,338.69,54.437 +737587,341.05,54.557 +737588,343.34,54.663 +737589,334.88,54.202 +737590,337.38,54.385 +737591,339.77,54.55 +737592,342.07,54.7 +737593,333.54,54.106 +737594,336.07,54.334 +737595,338.48,54.543 +737596,340.8,54.736 +737597,332.21,54.01 +737598,334.76,54.283 +737599,337.19,54.536 +737600,339.53,54.772 +737601,330.87,53.914 +737602,333.45,54.232 +737603,335.91,54.529 +737604,338.26,54.808 +737605,329.54,53.818 +737606,332.14,54.181 +737607,334.62,54.522 +737608,336.99,54.844 +737609,328.21,53.723 +737610,330.83,54.13 +737611,333.33,54.514 +737612,335.71,54.88 +737613,326.88,53.627 +737614,329.53,54.079 +737615,332.04,54.507 +737616,334.44,54.915 +737617,325.55,53.532 +737618,328.22,54.028 +737619,330.75,54.5 +737620,333.16,54.95 +737621,324.23,53.437 +737622,326.91,53.977 +737623,329.46,54.492 +737624,331.88,54.985 +737625,322.9,53.342 +737626,325.61,53.927 +737627,328.17,54.484 +737628,330.59,55.019 +737629,321.58,53.247 +737630,324.31,53.876 +737631,326.87,54.477 +737632,329.31,55.053 +737633,320.26,53.153 +737634,323,53.825 +737635,325.58,54.469 +737636,328.02,55.087 +737637,318.95,53.059 +737638,321.7,53.775 +737639,324.29,54.461 +737640,326.73,55.12 +737641,317.63,52.966 +737642,320.4,53.725 +737643,322.99,54.452 +737644,325.44,55.152 +737645,316.32,52.873 +737646,319.1,53.675 +737647,321.7,54.444 +737648,324.15,55.184 +737649,315.01,52.78 +737650,317.8,53.625 +737651,320.41,54.435 +737652,322.86,55.216 +737653,313.7,52.688 +737654,316.5,53.575 +737655,319.11,54.427 +737656,321.56,55.247 +737657,312.4,52.597 +737658,315.2,53.526 +737659,317.81,54.418 +737660,320.27,55.277 +737661,311.09,52.506 +737662,313.9,53.476 +737663,316.52,54.409 +737664,318.97,55.307 +737665,309.79,52.416 +737666,312.61,53.427 +737667,315.22,54.399 +737668,317.67,55.336 +737669,308.49,52.326 +737670,311.31,53.378 +737671,313.92,54.39 +737672,316.36,55.365 +737673,307.19,52.238 +737674,310.01,53.33 +737675,312.62,54.38 +737676,315.06,55.392 +737677,305.9,52.149 +737678,308.72,53.281 +737679,311.32,54.37 +737680,313.75,55.419 +737681,304.61,52.062 +737682,307.42,53.233 +737683,310.02,54.359 +737684,312.44,55.445 +737685,303.32,51.976 +737686,306.13,53.185 +737687,308.72,54.349 +737688,311.13,55.47 +737689,302.03,51.89 +737690,304.84,53.138 +737691,307.42,54.338 +737692,309.82,55.495 +737693,300.74,51.805 +737694,303.55,53.091 +737695,306.12,54.326 +737696,308.51,55.518 +737697,299.46,51.721 +737698,302.26,53.044 +737699,304.82,54.315 +737700,307.19,55.541 +737701,298.18,51.638 +737702,300.97,52.997 +737703,303.52,54.303 +737704,305.88,55.563 +737705,296.9,51.556 +737706,299.68,52.951 +737707,302.21,54.291 +737708,304.56,55.584 +737709,295.62,51.475 +737710,298.39,52.905 +737711,300.91,54.278 +737712,303.24,55.603 +737713,294.35,51.395 +737714,297.1,52.859 +737715,299.61,54.266 +737716,301.91,55.622 +737717,293.07,51.316 +737718,295.81,52.814 +737719,298.3,54.252 +737720,300.59,55.64 +737721,291.8,51.239 +737722,294.52,52.769 +737723,297,54.239 +737724,299.27,55.657 +737725,290.53,51.162 +737726,293.24,52.724 +737727,295.69,54.225 +737728,297.94,55.673 +737729,289.27,51.086 +737730,291.95,52.68 +737731,294.38,54.211 +737732,296.61,55.687 +737733,288.01,51.012 +737734,290.67,52.636 +737735,293.08,54.196 +737736,295.28,55.701 +737737,286.74,50.939 +737738,289.38,52.592 +737739,291.77,54.181 +737740,293.95,55.713 +737741,285.49,50.867 +737742,288.1,52.549 +737743,290.46,54.166 +737744,292.61,55.724 +737745,284.23,50.796 +737746,286.82,52.507 +737747,289.15,54.15 +737748,291.28,55.734 +737749,282.97,50.727 +737750,285.54,52.464 +737751,287.84,54.134 +737752,289.94,55.743 +737753,281.72,50.659 +737754,284.26,52.423 +737755,286.53,54.117 +737756,288.61,55.75 +737757,280.47,50.592 +737758,282.98,52.381 +737759,285.22,54.1 +737760,287.27,55.757 +737761,279.22,50.527 +737762,281.7,52.34 +737763,283.91,54.083 +737764,285.93,55.762 +737765,277.98,50.463 +737766,280.42,52.3 +737767,282.6,54.065 +737768,284.58,55.766 +737769,276.73,50.4 +737770,279.14,52.26 +737771,281.29,54.046 +737772,283.24,55.768 +737773,275.49,50.339 +737774,277.86,52.22 +737775,279.98,54.028 +737776,281.89,55.769 +737777,274.25,50.279 +737778,276.58,52.181 +737779,278.67,54.008 +737780,280.55,55.769 +737781,273.01,50.221 +737782,275.31,52.143 +737783,277.35,53.989 +737784,279.2,55.768 +737785,271.77,50.165 +737786,274.03,52.104 +737787,276.04,53.968 +737788,277.85,55.765 +737789,270.54,50.109 +737790,272.76,52.067 +737791,274.73,53.948 +737792,276.5,55.76 +737793,269.31,50.056 +737794,271.48,52.03 +737795,273.41,53.927 +737796,275.15,55.755 +737797,268.08,50.003 +737798,270.21,51.993 +737799,272.1,53.905 +737800,273.8,55.748 +737801,266.85,49.953 +737802,268.93,51.957 +737803,270.78,53.883 +737804,272.44,55.739 +737805,265.62,49.904 +737806,267.66,51.921 +737807,269.47,53.86 +737808,271.09,55.729 +737809,264.39,49.856 +737810,266.39,51.886 +737811,268.15,53.837 +737812,269.73,55.718 +737813,263.17,49.81 +737814,265.12,51.852 +737815,266.84,53.814 +737816,268.38,55.705 +737817,261.95,49.766 +737818,263.85,51.817 +737819,265.52,53.79 +737820,267.02,55.691 +737821,260.73,49.724 +737822,262.58,51.784 +737823,264.21,53.765 +737824,265.66,55.675 +737825,259.51,49.683 +737826,261.31,51.751 +737827,262.89,53.74 +737828,264.3,55.658 +737829,258.29,49.643 +737830,260.04,51.718 +737831,261.57,53.714 +737832,262.94,55.64 +737833,257.07,49.606 +737834,258.77,51.686 +737835,260.25,53.688 +737836,261.57,55.619 +737837,255.86,49.569 +737838,257.5,51.655 +737839,258.94,53.662 +737840,260.21,55.598 +737841,254.64,49.535 +737842,256.23,51.624 +737843,257.62,53.635 +737844,258.85,55.575 +737845,253.43,49.502 +737846,254.96,51.594 +737847,256.3,53.607 +737848,257.48,55.55 +737849,252.22,49.471 +737850,253.69,51.564 +737851,254.98,53.579 +737852,256.12,55.524 +737853,251.01,49.442 +737854,252.43,51.535 +737855,253.66,53.55 +737856,254.75,55.496 +737857,249.8,49.414 +737858,251.16,51.506 +737859,252.34,53.521 +737860,253.38,55.467 +737861,248.59,49.388 +737862,249.89,51.478 +737863,251.02,53.491 +737864,252.01,55.436 +737865,247.39,49.364 +737866,248.63,51.45 +737867,249.7,53.461 +737868,250.64,55.404 +737869,246.18,49.341 +737870,247.36,51.423 +737871,248.38,53.43 +737872,249.27,55.37 +737873,244.98,49.32 +737874,246.1,51.396 +737875,247.06,53.399 +737876,247.9,55.335 +737877,243.77,49.301 +737878,244.83,51.37 +737879,245.74,53.367 +737880,246.53,55.298 +737881,242.57,49.283 +737882,243.57,51.345 +737883,244.42,53.335 +737884,245.16,55.259 +737885,241.37,49.267 +737886,242.3,51.32 +737887,243.1,53.302 +737888,243.79,55.219 +737889,240.17,49.252 +737890,241.04,51.296 +737891,241.78,53.269 +737892,242.42,55.178 +737893,238.97,49.24 +737894,239.78,51.272 +737895,240.46,53.235 +737896,241.04,55.135 +737897,237.77,49.229 +737898,238.51,51.248 +737899,239.14,53.2 +737900,239.67,55.09 +737901,236.57,49.219 +737902,237.25,51.226 +737903,237.82,53.166 +737904,238.3,55.044 +737905,235.37,49.211 +737906,235.99,51.203 +737907,236.5,53.13 +737908,236.92,54.997 +737909,234.17,49.205 +737910,234.72,51.182 +737911,235.18,53.094 +737912,235.55,54.948 +737913,232.97,49.2 +737914,233.46,51.16 +737915,233.86,53.058 +737916,234.17,54.897 +737917,231.77,49.197 +737918,232.2,51.14 +737919,232.54,53.021 +737920,232.8,54.845 +737921,230.58,49.196 +737922,230.94,51.12 +737923,231.21,52.984 +737924,231.42,54.792 +737925,229.38,49.196 +737926,229.67,51.1 +737927,229.89,52.946 +737928,230.05,54.737 +737929,228.18,49.197 +737930,228.41,51.081 +737931,228.57,52.907 +737932,228.67,54.68 +737933,226.98,49.2 +737934,227.15,51.062 +737935,227.25,52.868 +737936,227.29,54.623 +737937,225.78,49.205 +737938,225.89,51.044 +737939,225.93,52.829 +737940,225.92,54.563 +737941,224.59,49.211 +737942,224.63,51.026 +737943,224.61,52.789 +737944,224.54,54.503 +737945,223.39,49.219 +737946,223.36,51.009 +737947,223.29,52.749 +737948,223.17,54.44 +737949,222.19,49.228 +737950,222.1,50.993 +737951,221.97,52.708 +737952,221.79,54.377 +737953,220.99,49.238 +737954,220.84,50.977 +737955,220.65,52.667 +737956,220.41,54.312 +737957,219.8,49.25 +737958,219.58,50.961 +737959,219.33,52.625 +737960,219.04,54.246 +737961,218.6,49.263 +737962,218.32,50.946 +737963,218,52.583 +737964,217.66,54.178 +737965,217.4,49.278 +737966,217.06,50.931 +737967,216.68,52.541 +737968,216.28,54.109 +737969,216.2,49.294 +737970,215.79,50.916 +737971,215.36,52.498 +737972,214.91,54.039 +737973,215,49.311 +737974,214.53,50.903 +737975,214.04,52.454 +737976,213.53,53.967 +737977,213.8,49.329 +737978,213.27,50.889 +737979,212.72,52.41 +737980,212.16,53.894 +737981,212.6,49.349 +737982,212.01,50.876 +737983,211.4,52.366 +737984,210.78,53.82 +737985,211.39,49.37 +737986,210.75,50.864 +737987,210.08,52.321 +737988,209.41,53.744 +737989,210.19,49.393 +737990,209.48,50.851 +737991,208.77,52.276 +737992,208.04,53.668 +737993,208.99,49.416 +737994,208.22,50.84 +737995,207.45,52.231 +737996,206.66,53.59 +737997,207.78,49.441 +737998,206.96,50.828 +737999,206.13,52.185 +738000,205.29,53.511 +738001,206.58,49.466 +738002,205.7,50.817 +738003,204.81,52.139 +738004,203.92,53.43 +738005,205.37,49.493 +738006,204.43,50.807 +738007,203.49,52.092 +738008,202.54,53.349 +738009,204.17,49.521 +738010,203.17,50.796 +738011,202.17,52.045 +738012,201.17,53.267 +738013,202.96,49.55 +738014,201.91,50.787 +738015,200.85,51.998 +738016,199.8,53.183 +738017,201.75,49.58 +738018,200.64,50.777 +738019,199.54,51.95 +738020,198.43,53.098 +738021,200.54,49.611 +738022,199.38,50.768 +738023,198.22,51.902 +738024,197.06,53.013 +738025,199.33,49.642 +738026,198.12,50.759 +738027,196.9,51.854 +738028,195.69,52.926 +738029,198.12,49.675 +738030,196.85,50.751 +738031,195.59,51.805 +738032,194.32,52.838 +738033,196.91,49.709 +738034,195.59,50.742 +738035,194.27,51.756 +738036,192.96,52.749 +738037,195.69,49.743 +738038,194.32,50.735 +738039,192.96,51.707 +738040,191.59,52.66 +738041,194.48,49.778 +738042,193.06,50.727 +738043,191.64,51.658 +738044,190.22,52.569 +738045,193.26,49.814 +738046,191.79,50.72 +738047,190.33,51.608 +738048,188.86,52.478 +738049,192.04,49.851 +738050,190.53,50.713 +738051,189.01,51.558 +738052,187.49,52.385 +738053,190.82,49.889 +738054,189.26,50.706 +738055,187.7,51.507 +738056,186.13,52.292 +738057,189.6,49.927 +738058,187.99,50.699 +738059,186.38,51.457 +738060,184.77,52.198 +738061,188.38,49.965 +738062,186.73,50.693 +738063,185.07,51.406 +738064,183.41,52.104 +738065,187.15,50.005 +738066,185.46,50.687 +738067,183.76,51.355 +738068,182.05,52.008 +738069,185.93,50.045 +738070,184.19,50.681 +738071,182.45,51.304 +738072,180.69,51.912 +738073,184.7,50.085 +738074,182.92,50.675 +738075,181.14,51.252 +738076,179.33,51.815 +738077,183.47,50.126 +738078,181.66,50.67 +738079,179.82,51.201 +738080,177.98,51.718 +738081,182.24,50.167 +738082,180.39,50.664 +738083,178.51,51.149 +738084,176.62,51.62 +738085,181.01,50.209 +738086,179.12,50.659 +738087,177.2,51.097 +738088,175.27,51.521 +738089,179.78,50.251 +738090,177.85,50.654 +738091,175.89,51.045 +738092,173.91,51.422 +738093,178.54,50.294 +738094,176.58,50.65 +738095,174.59,50.993 +738096,172.56,51.323 +738097,177.3,50.337 +738098,175.31,50.645 +738099,173.28,50.941 +738100,171.21,51.223 +738101,176.07,50.38 +738102,174.04,50.64 +738103,171.97,50.888 +738104,169.87,51.122 +738105,174.83,50.423 +738106,172.76,50.636 +738107,170.66,50.836 +738108,168.52,51.021 +738109,173.58,50.467 +738110,171.49,50.631 +738111,169.36,50.783 +738112,167.17,50.92 +738113,172.34,50.51 +738114,170.22,50.627 +738115,168.05,50.73 +738116,165.83,50.819 +738117,171.09,50.554 +738118,168.95,50.623 +738119,166.75,50.678 +738120,164.49,50.717 +738121,169.85,50.598 +738122,167.67,50.619 +738123,165.44,50.625 +738124,163.15,50.615 +738125,168.6,50.642 +738126,166.4,50.614 +738127,164.14,50.572 +738128,161.81,50.513 +738129,167.35,50.686 +738130,165.12,50.61 +738131,162.83,50.519 +738132,160.47,50.41 +738133,166.09,50.73 +738134,163.85,50.606 +738135,161.53,50.466 +738136,159.13,50.308 +738137,164.84,50.774 +738138,162.57,50.602 +738139,160.23,50.413 +738140,157.8,50.205 +738141,163.58,50.818 +738142,161.3,50.598 +738143,158.93,50.361 +738144,156.47,50.102 +738145,162.33,50.861 +738146,160.02,50.594 +738147,157.63,50.308 +738148,155.14,50 +738149,161.07,50.905 +738150,158.74,50.59 +738151,156.33,50.255 +738152,153.81,49.897 +738153,159.8,50.948 +738154,157.46,50.586 +738155,155.03,50.202 +738156,152.48,49.795 +738157,158.54,50.991 +738158,156.19,50.581 +738159,153.73,50.15 +738160,151.16,49.692 +738161,157.28,51.034 +738162,154.91,50.577 +738163,152.43,50.097 +738164,149.84,49.59 +738165,156.01,51.076 +738166,153.63,50.573 +738167,151.13,50.045 +738168,148.51,49.488 +738169,154.74,51.118 +738170,152.35,50.568 +738171,149.84,49.992 +738172,147.2,49.386 +738173,153.47,51.16 +738174,151.07,50.564 +738175,148.54,49.94 +738176,145.88,49.285 +738177,152.19,51.201 +738178,149.78,50.559 +738179,147.25,49.888 +738180,144.56,49.183 +738181,150.92,51.242 +738182,148.5,50.554 +738183,145.95,49.836 +738184,143.25,49.083 +738185,149.64,51.282 +738186,147.22,50.549 +738187,144.66,49.784 +738188,141.94,48.982 +738189,148.36,51.322 +738190,145.94,50.544 +738191,143.37,49.732 +738192,140.63,48.882 +738193,147.08,51.361 +738194,144.65,50.539 +738195,142.08,49.681 +738196,139.32,48.783 +738197,145.8,51.4 +738198,143.37,50.533 +738199,140.78,49.63 +738200,138.02,48.684 +738201,144.52,51.438 +738202,142.08,50.528 +738203,139.49,49.579 +738204,136.72,48.585 +738205,143.23,51.475 +738206,140.8,50.522 +738207,138.2,49.528 +738208,135.42,48.487 +738209,141.94,51.512 +738210,139.51,50.516 +738211,136.92,49.477 +738212,134.12,48.39 +738213,140.65,51.548 +738214,138.23,50.51 +738215,135.63,49.427 +738216,132.82,48.294 +738217,139.36,51.583 +738218,136.94,50.503 +738219,134.34,49.377 +738220,131.53,48.198 +738221,138.07,51.617 +738222,135.65,50.496 +738223,133.05,49.327 +738224,130.24,48.103 +738225,136.77,51.651 +738226,134.36,50.489 +738227,131.77,49.278 +738228,128.95,48.009 +738229,135.48,51.683 +738230,133.07,50.482 +738231,130.48,49.228 +738232,127.66,47.915 +738233,134.18,51.715 +738234,131.78,50.474 +738235,129.2,49.18 +738236,126.38,47.823 +738237,132.88,51.746 +738238,130.49,50.467 +738239,127.92,49.131 +738240,125.1,47.731 +738241,131.58,51.776 +738242,129.2,50.459 +738243,126.63,49.083 +738244,123.82,47.641 +738245,130.27,51.805 +738246,127.91,50.45 +738247,125.35,49.035 +738248,122.54,47.551 +738249,128.97,51.833 +738250,126.62,50.441 +738251,124.07,48.987 +738252,121.27,47.462 +738253,127.66,51.86 +738254,125.33,50.432 +738255,122.79,48.94 +738256,119.99,47.375 +738257,126.35,51.886 +738258,124.04,50.423 +738259,121.51,48.893 +738260,118.72,47.289 +738261,125.04,51.911 +738262,122.74,50.413 +738263,120.23,48.847 +738264,117.45,47.203 +738265,123.73,51.935 +738266,121.45,50.403 +738267,118.95,48.801 +738268,116.19,47.119 +738269,122.41,51.958 +738270,120.15,50.392 +738271,117.68,48.756 +738272,114.92,47.036 +738273,121.1,51.979 +738274,118.86,50.381 +738275,116.4,48.71 +738276,113.66,46.955 +738277,119.78,51.999 +738278,117.56,50.37 +738279,115.12,48.666 +738280,112.4,46.874 +738281,118.46,52.019 +738282,116.27,50.359 +738283,113.85,48.622 +738284,111.15,46.796 +738285,117.14,52.036 +738286,114.97,50.346 +738287,112.58,48.578 +738288,109.89,46.718 +738289,115.82,52.053 +738290,113.67,50.334 +738291,111.3,48.534 +738292,108.64,46.642 +738293,114.5,52.069 +738294,112.38,50.321 +738295,110.03,48.492 +738296,107.39,46.567 +738297,113.17,52.083 +738298,111.08,50.308 +738299,108.76,48.449 +738300,106.14,46.493 +738301,111.85,52.095 +738302,109.78,50.294 +738303,107.49,48.407 +738304,104.9,46.421 +738305,110.52,52.107 +738306,108.48,50.28 +738307,106.21,48.366 +738308,103.66,46.351 +738309,109.19,52.117 +738310,107.18,50.265 +738311,104.95,48.325 +738312,102.42,46.282 +738313,107.86,52.126 +738314,105.88,50.25 +738315,103.68,48.285 +738316,101.18,46.215 +738317,106.53,52.133 +738318,104.58,50.235 +738319,102.41,48.245 +738320,99.94,46.149 +738321,105.19,52.139 +738322,103.28,50.218 +738323,101.14,48.205 +738324,98.706,46.085 +738325,103.86,52.144 +738326,101.98,50.202 +738327,99.873,48.167 +738328,97.473,46.023 +738329,102.52,52.147 +738330,100.68,50.185 +738331,98.606,48.128 +738332,96.243,45.962 +738333,101.19,52.148 +738334,99.376,50.168 +738335,97.34,48.091 +738336,95.015,45.903 +738337,99.848,52.149 +738338,98.073,50.15 +738339,96.075,48.054 +738340,93.789,45.845 +738341,98.508,52.147 +738342,96.77,50.131 +738343,94.811,48.017 +738344,92.565,45.789 +738345,97.167,52.145 +738346,95.467,50.112 +738347,93.547,47.981 +738348,91.343,45.735 +738349,95.825,52.14 +738350,94.163,50.093 +738351,92.283,47.946 +738352,90.123,45.683 +738353,94.482,52.134 +738354,92.859,50.073 +738355,91.021,47.911 +738356,88.905,45.633 +738357,93.138,52.127 +738358,91.555,50.052 +738359,89.759,47.877 +738360,87.688,45.584 +738361,91.793,52.118 +738362,90.25,50.031 +738363,88.497,47.843 +738364,86.473,45.537 +738365,90.446,52.107 +738366,88.945,50.01 +738367,87.236,47.81 +738368,85.26,45.492 +738369,89.099,52.095 +738370,87.639,49.988 +738371,85.976,47.778 +738372,84.049,45.449 +738373,87.75,52.082 +738374,86.333,49.965 +738375,84.716,47.746 +738376,82.84,45.408 +738377,86.401,52.066 +738378,85.027,49.942 +738379,83.457,47.715 +738380,81.632,45.368 +738381,85.051,52.05 +738382,83.721,49.918 +738383,82.198,47.684 +738384,80.426,45.331 +738385,83.699,52.031 +738386,82.414,49.894 +738387,80.94,47.654 +738388,79.221,45.295 +738389,82.347,52.011 +738390,81.107,49.869 +738391,79.682,47.625 +738392,78.017,45.261 +738393,80.994,51.989 +738394,79.8,49.844 +738395,78.425,47.596 +738396,76.816,45.229 +738397,79.641,51.966 +738398,78.493,49.818 +738399,77.168,47.568 +738400,75.615,45.199 +738401,78.286,51.941 +738402,77.185,49.792 +738403,75.912,47.54 +738404,74.416,45.171 +738405,76.931,51.915 +738406,75.877,49.765 +738407,74.656,47.513 +738408,73.218,45.145 +738409,75.575,51.886 +738410,74.569,49.737 +738411,73.4,47.487 +738412,72.021,45.121 +738413,74.218,51.857 +738414,73.261,49.709 +738415,72.145,47.462 +738416,70.826,45.098 +738417,72.861,51.825 +738418,71.952,49.681 +738419,70.89,47.437 +738420,69.631,45.078 +738421,71.503,51.792 +738422,70.644,49.651 +738423,69.636,47.412 +738424,68.438,45.059 +738425,70.145,51.757 +738426,69.335,49.622 +738427,68.382,47.388 +738428,67.245,45.043 +738429,68.785,51.721 +738430,68.026,49.592 +738431,67.128,47.365 +738432,66.053,45.028 +738433,67.426,51.683 +738434,66.717,49.561 +738435,65.875,47.343 +738436,64.863,45.015 +738437,66.066,51.643 +738438,65.408,49.53 +738439,64.622,47.321 +738440,63.673,45.004 +738441,64.705,51.602 +738442,64.098,49.498 +738443,63.369,47.3 +738444,62.483,44.995 +738445,63.344,51.559 +738446,62.789,49.465 +738447,62.116,47.279 +738448,61.295,44.988 +738449,61.983,51.514 +738450,61.48,49.432 +738451,60.864,47.259 +738452,60.107,44.982 +738453,60.622,51.468 +738454,60.17,49.399 +738455,59.612,47.24 +738456,58.919,44.979 +738457,59.26,51.421 +738458,58.861,49.365 +738459,58.36,47.221 +738460,57.732,44.977 +738461,57.897,51.371 +738462,57.551,49.33 +738463,57.109,47.203 +738464,56.546,44.977 +738465,56.535,51.32 +738466,56.241,49.295 +738467,55.857,47.185 +738468,55.36,44.979 +738469,55.172,51.268 +738470,54.932,49.26 +738471,54.606,47.168 +738472,54.174,44.983 +738473,53.809,51.213 +738474,53.622,49.224 +738475,53.355,47.152 +738476,52.988,44.988 +738477,52.446,51.158 +738478,52.313,49.187 +738479,52.104,47.136 +738480,51.803,44.995 +738481,51.083,51.101 +738482,51.003,49.15 +738483,50.853,47.121 +738484,50.617,45.004 +738485,49.72,51.042 +738486,49.694,49.112 +738487,49.603,47.106 +738488,49.432,45.015 +738489,48.357,50.981 +738490,48.384,49.074 +738491,48.352,47.092 +738492,48.246,45.027 +738493,46.994,50.919 +738494,47.075,49.035 +738495,47.101,47.079 +738496,47.061,45.041 +738497,45.631,50.856 +738498,45.766,48.996 +738499,45.851,47.066 +738500,45.875,45.057 +738501,44.268,50.791 +738502,44.456,48.957 +738503,44.6,47.053 +738504,44.689,45.075 +738505,42.905,50.725 +738506,43.147,48.917 +738507,43.35,47.042 +738508,43.503,45.093 +738509,41.542,50.657 +738510,41.839,48.876 +738511,42.099,47.03 +738512,42.317,45.114 +738513,40.179,50.588 +738514,40.53,48.835 +738515,40.849,47.02 +738516,41.13,45.136 +738517,38.817,50.517 +738518,39.221,48.793 +738519,39.599,47.009 +738520,39.942,45.16 +738521,37.455,50.445 +738522,37.913,48.752 +738523,38.348,47 +738524,38.755,45.185 +738525,36.093,50.371 +738526,36.605,48.709 +738527,37.097,46.991 +738528,37.566,45.211 +738529,34.731,50.296 +738530,35.297,48.666 +738531,35.847,46.982 +738532,36.377,45.239 +738533,33.37,50.22 +738534,33.989,48.623 +738535,34.596,46.974 +738536,35.188,45.269 +738537,32.009,50.142 +738538,32.682,48.579 +738539,33.345,46.966 +738540,33.997,45.3 +738541,30.649,50.063 +738542,31.374,48.535 +738543,32.094,46.959 +738544,32.806,45.332 +738545,29.289,49.983 +738546,30.067,48.491 +738547,30.843,46.952 +738548,31.614,45.365 +738549,27.93,49.901 +738550,28.761,48.446 +738551,29.591,46.946 +738552,30.421,45.4 +738553,26.571,49.819 +738554,27.454,48.4 +738555,28.34,46.94 +738556,29.227,45.436 +738557,25.213,49.735 +738558,26.148,48.355 +738559,27.088,46.935 +738560,28.032,45.473 +738561,23.855,49.649 +738562,24.843,48.309 +738563,25.836,46.93 +738564,26.837,45.511 +738565,22.498,49.563 +738566,23.537,48.262 +738567,24.584,46.925 +738568,25.64,45.551 +738569,21.142,49.476 +738570,22.232,48.216 +738571,23.332,46.921 +738572,24.442,45.591 +738573,19.787,49.387 +738574,20.927,48.168 +738575,22.079,46.917 +738576,23.243,45.633 +738577,18.432,49.297 +738578,19.623,48.121 +738579,20.826,46.914 +738580,22.042,45.676 +738581,17.078,49.206 +738582,18.319,48.073 +738583,19.573,46.911 +738584,20.841,45.719 +738585,15.725,49.114 +738586,17.016,48.025 +738587,18.319,46.908 +738588,19.638,45.764 +738589,14.373,49.022 +738590,15.712,47.977 +738591,17.066,46.906 +738592,18.433,45.809 +738593,13.021,48.928 +738594,14.41,47.928 +738595,15.811,46.904 +738596,17.228,45.856 +738597,11.671,48.833 +738598,13.108,47.879 +738599,14.557,46.903 +738600,16.021,45.903 +738601,10.321,48.737 +738602,11.806,47.83 +738603,13.302,46.901 +738604,14.812,45.951 +738605,8.9731,48.641 +738606,10.504,47.781 +738607,12.047,46.9 +738608,13.602,46 +738609,7.6258,48.543 +738610,9.2036,47.731 +738611,10.792,46.9 +738612,12.391,46.05 +738613,6.2796,48.445 +738614,7.9032,47.681 +738615,9.5356,46.899 +738616,11.178,46.1 +738617,4.9346,48.346 +738618,6.6034,47.631 +738619,8.2793,46.899 +738620,9.9634,46.151 +738621,3.5907,48.246 +738622,5.3041,47.581 +738623,7.0226,46.899 +738624,8.7473,46.202 +738625,2.248,48.145 +738626,4.0053,47.53 +738627,5.7655,46.9 +738628,7.5296,46.254 +738629,0.90653,48.044 +738630,2.7071,47.48 +738631,4.5079,46.9 +738632,6.3102,46.307 +738633,359.57,47.942 +738634,1.4094,47.429 +738635,3.25,46.901 +738636,5.0892,46.36 +738637,358.23,47.84 +738638,0.11228,47.378 +738639,1.9915,46.902 +738640,3.8664,46.413 +738641,356.89,47.737 +738642,358.82,47.327 +738643,0.73265,46.903 +738644,2.642,46.467 +738645,355.55,47.633 +738646,357.52,47.276 +738647,359.47,46.904 +738648,1.4158,46.521 +738649,354.22,47.529 +738650,356.22,47.224 +738651,358.21,46.906 +738652,0.18791,46.576 +738653,352.89,47.425 +738654,354.93,47.173 +738655,356.95,46.908 +738656,358.96,46.63 +738657,351.55,47.32 +738658,353.64,47.121 +738659,355.69,46.909 +738660,357.73,46.685 +738661,350.22,47.215 +738662,352.34,47.07 +738663,354.43,46.911 +738664,356.49,46.741 +738665,348.9,47.109 +738666,351.05,47.018 +738667,353.17,46.913 +738668,355.26,46.796 +738669,347.57,47.003 +738670,349.76,46.966 +738671,351.91,46.915 +738672,354.02,46.851 +738673,346.24,46.897 +738674,348.47,46.915 +738675,350.64,46.918 +738676,352.78,46.907 +738677,344.92,46.79 +738678,347.17,46.863 +738679,349.38,46.92 +738680,351.54,46.963 +738681,343.6,46.684 +738682,345.88,46.811 +738683,348.12,46.922 +738684,350.3,47.018 +738685,342.28,46.577 +738686,344.59,46.76 +738687,346.85,46.924 +738688,349.06,47.074 +738689,340.96,46.47 +738690,343.31,46.708 +738691,345.59,46.927 +738692,347.81,47.129 +738693,339.64,46.363 +738694,342.02,46.656 +738695,344.32,46.929 +738696,346.56,47.184 +738697,338.33,46.257 +738698,340.73,46.605 +738699,343.06,46.932 +738700,345.31,47.239 +738701,337.01,46.15 +738702,339.44,46.553 +738703,341.79,46.934 +738704,344.06,47.294 +738705,335.7,46.043 +738706,338.16,46.502 +738707,340.52,46.936 +738708,342.81,47.349 +738709,334.39,45.937 +738710,336.87,46.45 +738711,339.25,46.939 +738712,341.55,47.403 +738713,333.08,45.83 +738714,335.59,46.399 +738715,337.99,46.941 +738716,340.29,47.457 +738717,331.78,45.724 +738718,334.3,46.348 +738719,336.72,46.943 +738720,339.03,47.511 +738721,330.47,45.618 +738722,333.02,46.297 +738723,335.45,46.945 +738724,337.77,47.564 +738725,329.17,45.512 +738726,331.74,46.247 +738727,334.18,46.947 +738728,336.51,47.617 +738729,327.87,45.407 +738730,330.46,46.196 +738731,332.91,46.949 +738732,335.24,47.669 +738733,326.57,45.302 +738734,329.18,46.146 +738735,331.64,46.95 +738736,333.98,47.721 +738737,325.28,45.198 +738738,327.9,46.095 +738739,330.36,46.952 +738740,332.71,47.772 +738741,323.99,45.094 +738742,326.62,46.045 +738743,329.09,46.954 +738744,331.44,47.823 +738745,322.69,44.991 +738746,325.34,45.996 +738747,327.82,46.955 +738748,330.16,47.873 +738749,321.41,44.888 +738750,324.06,45.946 +738751,326.55,46.956 +738752,328.89,47.922 +738753,320.12,44.786 +738754,322.78,45.897 +738755,325.27,46.957 +738756,327.61,47.971 +738757,318.83,44.684 +738758,321.51,45.848 +738759,324,46.958 +738760,326.34,48.019 +738761,317.55,44.583 +738762,320.23,45.799 +738763,322.72,46.958 +738764,325.06,48.066 +738765,316.27,44.483 +738766,318.96,45.751 +738767,321.45,46.958 +738768,323.77,48.112 +738769,314.99,44.384 +738770,317.68,45.703 +738771,320.17,46.958 +738772,322.49,48.158 +738773,313.72,44.286 +738774,316.41,45.655 +738775,318.89,46.958 +738776,321.2,48.203 +738777,312.44,44.188 +738778,315.14,45.608 +738779,317.62,46.958 +738780,319.92,48.246 +738781,311.17,44.092 +738782,313.87,45.561 +738783,316.34,46.957 +738784,318.63,48.289 +738785,309.9,43.996 +738786,312.59,45.514 +738787,315.06,46.956 +738788,317.34,48.331 +738789,308.64,43.902 +738790,311.32,45.468 +738791,313.78,46.955 +738792,316.05,48.372 +738793,307.37,43.808 +738794,310.06,45.422 +738795,312.5,46.953 +738796,314.75,48.412 +738797,306.11,43.716 +738798,308.79,45.377 +738799,311.22,46.951 +738800,313.46,48.451 +738801,304.85,43.625 +738802,307.52,45.332 +738803,309.94,46.949 +738804,312.16,48.488 +738805,303.59,43.535 +738806,306.25,45.287 +738807,308.66,46.946 +738808,310.86,48.525 +738809,302.34,43.446 +738810,304.99,45.243 +738811,307.38,46.943 +738812,309.56,48.56 +738813,301.08,43.359 +738814,303.72,45.199 +738815,306.09,46.94 +738816,308.26,48.595 +738817,299.83,43.272 +738818,302.46,45.156 +738819,304.81,46.936 +738820,306.95,48.628 +738821,298.58,43.188 +738822,301.19,45.113 +738823,303.53,46.932 +738824,305.65,48.659 +738825,297.34,43.104 +738826,299.93,45.071 +738827,302.24,46.928 +738828,304.34,48.69 +738829,296.09,43.022 +738830,298.67,45.029 +738831,300.96,46.923 +738832,303.03,48.719 +738833,294.85,42.942 +738834,297.41,44.988 +738835,299.67,46.917 +738836,301.72,48.748 +738837,293.61,42.863 +738838,296.14,44.947 +738839,298.39,46.912 +738840,300.41,48.774 +738841,292.38,42.786 +738842,294.88,44.907 +738843,297.1,46.906 +738844,299.1,48.8 +738845,291.14,42.71 +738846,293.63,44.868 +738847,295.82,46.899 +738848,297.78,48.824 +738849,289.91,42.636 +738850,292.37,44.829 +738851,294.53,46.892 +738852,296.47,48.846 +738853,288.68,42.563 +738854,291.11,44.79 +738855,293.24,46.885 +738856,295.15,48.867 +738857,287.45,42.493 +738858,289.85,44.752 +738859,291.96,46.877 +738860,293.83,48.887 +738861,286.22,42.424 +738862,288.59,44.715 +738863,290.67,46.868 +738864,292.51,48.906 +738865,285,42.356 +738866,287.34,44.678 +738867,289.38,46.859 +738868,291.19,48.922 +738869,283.78,42.291 +738870,286.08,44.642 +738871,288.09,46.85 +738872,289.87,48.938 +738873,282.56,42.227 +738874,284.83,44.607 +738875,286.8,46.84 +738876,288.55,48.952 +738877,281.34,42.165 +738878,283.58,44.572 +738879,285.51,46.83 +738880,287.22,48.964 +738881,280.13,42.105 +738882,282.32,44.538 +738883,284.22,46.819 +738884,285.9,48.975 +738885,278.91,42.047 +738886,281.07,44.504 +738887,282.93,46.808 +738888,284.57,48.984 +738889,277.7,41.991 +738890,279.82,44.471 +738891,281.64,46.796 +738892,283.24,48.992 +738893,276.49,41.937 +738894,278.57,44.439 +738895,280.35,46.783 +738896,281.91,48.998 +738897,275.28,41.885 +738898,277.31,44.407 +738899,279.06,46.771 +738900,280.58,49.002 +738901,274.08,41.835 +738902,276.06,44.376 +738903,277.76,46.757 +738904,279.25,49.005 +738905,272.87,41.787 +738906,274.81,44.346 +738907,276.47,46.743 +738908,277.92,49.006 +738909,271.67,41.741 +738910,273.57,44.316 +738911,275.18,46.729 +738912,276.58,49.006 +738913,270.47,41.697 +738914,272.32,44.287 +738915,273.89,46.714 +738916,275.25,49.004 +738917,269.27,41.655 +738918,271.07,44.259 +738919,272.59,46.698 +738920,273.91,49 +738921,268.08,41.615 +738922,269.82,44.231 +738923,271.3,46.682 +738924,272.58,48.994 +738925,266.88,41.577 +738926,268.57,44.205 +738927,270.01,46.665 +738928,271.24,48.987 +738929,265.69,41.541 +738930,267.33,44.178 +738931,268.71,46.648 +738932,269.9,48.978 +738933,264.49,41.508 +738934,266.08,44.153 +738935,267.42,46.63 +738936,268.56,48.968 +738937,263.3,41.476 +738938,264.84,44.128 +738939,266.12,46.612 +738940,267.22,48.956 +738941,262.11,41.447 +738942,263.59,44.104 +738943,264.83,46.593 +738944,265.88,48.942 +738945,260.93,41.42 +738946,262.35,44.081 +738947,263.53,46.573 +738948,264.54,48.926 +738949,259.74,41.395 +738950,261.1,44.058 +738951,262.24,46.553 +738952,263.2,48.909 +738953,258.55,41.372 +738954,259.86,44.036 +738955,260.94,46.533 +738956,261.86,48.889 +738957,257.37,41.351 +738958,258.62,44.015 +738959,259.65,46.512 +738960,260.52,48.869 +738961,256.18,41.333 +738962,257.37,43.995 +738963,258.35,46.49 +738964,259.17,48.846 +738965,255,41.317 +738966,256.13,43.975 +738967,257.06,46.467 +738968,257.83,48.822 +738969,253.82,41.303 +738970,254.89,43.956 +738971,255.76,46.445 +738972,256.49,48.796 +738973,252.64,41.291 +738974,253.65,43.938 +738975,254.46,46.421 +738976,255.14,48.768 +738977,251.46,41.281 +738978,252.4,43.92 +738979,253.17,46.397 +738980,253.8,48.738 +738981,250.28,41.273 +738982,251.16,43.903 +738983,251.87,46.372 +738984,252.45,48.707 +738985,249.1,41.268 +738986,249.92,43.887 +738987,250.57,46.347 +738988,251.11,48.674 +738989,247.92,41.264 +738990,248.68,43.872 +738991,249.28,46.321 +738992,249.76,48.639 +738993,246.75,41.263 +738994,247.44,43.857 +738995,247.98,46.295 +738996,248.41,48.603 +738997,245.57,41.264 +738998,246.2,43.843 +738999,246.69,46.268 +739000,247.07,48.565 +739001,244.39,41.267 +739002,244.96,43.829 +739003,245.39,46.241 +739004,245.72,48.525 +739005,243.22,41.272 +739006,243.72,43.817 +739007,244.09,46.213 +739008,244.37,48.483 +739009,242.04,41.279 +739010,242.48,43.805 +739011,242.8,46.184 +739012,243.02,48.44 +739013,240.86,41.289 +739014,241.24,43.794 +739015,241.5,46.155 +739016,241.68,48.395 +739017,239.69,41.3 +739018,240,43.783 +739019,240.2,46.126 +739020,240.33,48.348 +739021,238.51,41.313 +739022,238.76,43.773 +739023,238.91,46.095 +739024,238.98,48.3 +739025,237.34,41.329 +739026,237.52,43.764 +739027,237.61,46.065 +739028,237.64,48.25 +739029,236.16,41.346 +739030,236.28,43.756 +739031,236.31,46.033 +739032,236.29,48.198 +739033,234.99,41.365 +739034,235.04,43.748 +739035,235.02,46.002 +739036,234.94,48.145 +739037,233.81,41.386 +739038,233.8,43.741 +739039,233.72,45.969 +739040,233.59,48.089 +739041,232.64,41.409 +739042,232.56,43.734 +739043,232.43,45.937 +739044,232.25,48.033 +739045,231.46,41.434 +739046,231.32,43.728 +739047,231.13,45.903 +739048,230.9,47.975 +739049,230.28,41.461 +739050,230.08,43.723 +739051,229.84,45.869 +739052,229.55,47.915 +739053,229.11,41.49 +739054,228.84,43.719 +739055,228.54,45.835 +739056,228.21,47.853 +739057,227.93,41.52 +739058,227.6,43.715 +739059,227.24,45.8 +739060,226.86,47.79 +739061,226.75,41.553 +739062,226.36,43.711 +739063,225.95,45.765 +739064,225.51,47.726 +739065,225.57,41.587 +739066,225.13,43.709 +739067,224.65,45.729 +739068,224.17,47.659 +739069,224.39,41.622 +739070,223.89,43.707 +739071,223.36,45.693 +739072,222.82,47.592 +739073,223.21,41.66 +739074,222.65,43.705 +739075,222.07,45.656 +739076,221.48,47.523 +739077,222.03,41.699 +739078,221.41,43.704 +739079,220.77,45.619 +739080,220.13,47.452 +739081,220.85,41.739 +739082,220.17,43.704 +739083,219.48,45.581 +739084,218.79,47.38 +739085,219.67,41.782 +739086,218.93,43.704 +739087,218.18,45.543 +739088,217.45,47.306 +739089,218.49,41.825 +739090,217.68,43.705 +739091,216.89,45.504 +739092,216.11,47.232 +739093,217.3,41.871 +739094,216.44,43.706 +739095,215.6,45.465 +739096,214.76,47.155 +739097,216.12,41.917 +739098,215.2,43.708 +739099,214.31,45.426 +739100,213.42,47.077 +739101,214.93,41.965 +739102,213.96,43.711 +739103,213.01,45.386 +739104,212.08,46.998 +739105,213.74,42.015 +739106,212.72,43.714 +739107,211.72,45.346 +739108,210.74,46.918 +739109,212.55,42.066 +739110,211.48,43.717 +739111,210.43,45.306 +739112,209.4,46.836 +739113,211.36,42.118 +739114,210.24,43.721 +739115,209.14,45.265 +739116,208.06,46.753 +739117,210.17,42.171 +739118,209,43.725 +739119,207.85,45.223 +739120,206.73,46.669 +739121,208.98,42.226 +739122,207.75,43.73 +739123,206.56,45.182 +739124,205.39,46.584 +739125,207.79,42.282 +739126,206.51,43.736 +739127,205.27,45.14 +739128,204.05,46.497 +739129,206.59,42.338 +739130,205.27,43.741 +739131,203.98,45.097 +739132,202.72,46.409 +739133,205.39,42.396 +739134,204.02,43.748 +739135,202.69,45.055 +739136,201.38,46.32 +739137,204.2,42.455 +739138,202.78,43.754 +739139,201.4,45.012 +739140,200.05,46.23 +739141,203,42.516 +739142,201.54,43.761 +739143,200.11,44.969 +739144,198.72,46.139 +739145,201.8,42.577 +739146,200.29,43.769 +739147,198.82,44.925 +739148,197.39,46.047 +739149,200.59,42.638 +739150,199.05,43.776 +739151,197.54,44.881 +739152,196.06,45.954 +739153,199.39,42.701 +739154,197.8,43.785 +739155,196.25,44.837 +739156,194.73,45.86 +739157,198.18,42.765 +739158,196.56,43.793 +739159,194.96,44.793 +739160,193.4,45.765 +739161,196.97,42.829 +739162,195.31,43.802 +739163,193.68,44.748 +739164,192.07,45.669 +739165,195.76,42.894 +739166,194.06,43.811 +739167,192.39,44.704 +739168,190.75,45.572 +739169,194.55,42.96 +739170,192.82,43.821 +739171,191.11,44.659 +739172,189.43,45.474 +739173,193.34,43.027 +739174,191.57,43.83 +739175,189.82,44.614 +739176,188.1,45.376 +739177,192.12,43.094 +739178,190.32,43.841 +739179,188.54,44.568 +739180,186.78,45.277 +739181,190.91,43.161 +739182,189.07,43.851 +739183,187.26,44.523 +739184,185.46,45.177 +739185,189.69,43.23 +739186,187.82,43.861 +739187,185.97,44.477 +739188,184.14,45.076 +739189,188.47,43.298 +739190,186.57,43.872 +739191,184.69,44.431 +739192,182.83,44.975 +739193,187.25,43.367 +739194,185.32,43.883 +739195,183.41,44.385 +739196,181.51,44.873 +739197,186.02,43.437 +739198,184.07,43.895 +739199,182.13,44.339 +739200,180.2,44.77 +739201,184.8,43.506 +739202,182.82,43.906 +739203,180.85,44.293 +739204,178.88,44.667 +739205,183.57,43.576 +739206,181.57,43.918 +739207,179.57,44.247 +739208,177.57,44.564 +739209,182.34,43.647 +739210,180.32,43.93 +739211,178.29,44.201 +739212,176.26,44.46 +739213,181.11,43.717 +739214,179.07,43.941 +739215,177.01,44.154 +739216,174.96,44.355 +739217,179.88,43.788 +739218,177.81,43.954 +739219,175.74,44.108 +739220,173.65,44.25 +739221,178.64,43.858 +739222,176.56,43.966 +739223,174.46,44.062 +739224,172.34,44.145 +739225,177.4,43.929 +739226,175.3,43.978 +739227,173.18,44.015 +739228,171.04,44.04 +739229,176.17,44 +739230,174.05,43.991 +739231,171.91,43.969 +739232,169.74,43.934 +739233,174.92,44.071 +739234,172.79,44.003 +739235,170.63,43.923 +739236,168.44,43.829 +739237,173.68,44.141 +739238,171.54,44.016 +739239,169.36,43.876 +739240,167.14,43.723 +739241,172.44,44.212 +739242,170.28,44.028 +739243,168.09,43.83 +739244,165.85,43.617 +739245,171.19,44.282 +739246,169.02,44.041 +739247,166.81,43.784 +739248,164.55,43.511 +739249,169.94,44.352 +739250,167.77,44.053 +739251,165.54,43.738 +739252,163.26,43.405 +739253,168.69,44.422 +739254,166.51,44.066 +739255,164.27,43.692 +739256,161.97,43.299 +739257,167.44,44.492 +739258,165.25,44.079 +739259,163,43.646 +739260,160.68,43.193 +739261,166.18,44.561 +739262,163.99,44.091 +739263,161.73,43.6 +739264,159.4,43.087 +739265,164.93,44.63 +739266,162.73,44.104 +739267,160.46,43.555 +739268,158.11,42.981 +739269,163.67,44.699 +739270,161.47,44.116 +739271,159.19,43.509 +739272,156.83,42.876 +739273,162.41,44.767 +739274,160.21,44.129 +739275,157.92,43.464 +739276,155.55,42.77 +739277,161.15,44.835 +739278,158.95,44.141 +739279,156.66,43.419 +739280,154.27,42.666 +739281,159.88,44.902 +739282,157.68,44.153 +739283,155.39,43.374 +739284,152.99,42.561 +739285,158.62,44.968 +739286,156.42,44.166 +739287,154.13,43.33 +739288,151.72,42.457 +739289,157.35,45.034 +739290,155.16,44.178 +739291,152.86,43.285 +739292,150.45,42.354 +739293,156.08,45.099 +739294,153.89,44.189 +739295,151.6,43.241 +739296,149.18,42.251 +739297,154.81,45.164 +739298,152.63,44.201 +739299,150.33,43.197 +739300,147.91,42.148 +739301,153.54,45.228 +739302,151.36,44.213 +739303,149.07,43.154 +739304,146.64,42.046 +739305,152.26,45.291 +739306,150.1,44.224 +739307,147.81,43.11 +739308,145.38,41.945 +739309,150.99,45.353 +739310,148.83,44.235 +739311,146.55,43.068 +739312,144.12,41.845 +739313,149.71,45.414 +739314,147.56,44.246 +739315,145.29,43.025 +739316,142.86,41.745 +739317,148.43,45.475 +739318,146.3,44.257 +739319,144.03,42.983 +739320,141.6,41.646 +739321,147.15,45.535 +739322,145.03,44.267 +739323,142.77,42.941 +739324,140.34,41.548 +739325,145.86,45.593 +739326,143.76,44.278 +739327,141.51,42.899 +739328,139.09,41.451 +739329,144.58,45.651 +739330,142.49,44.288 +739331,140.26,42.858 +739332,137.84,41.355 +739333,143.29,45.708 +739334,141.22,44.297 +739335,139,42.818 +739336,136.59,41.259 +739337,142,45.763 +739338,139.95,44.307 +739339,137.74,42.777 +739340,135.34,41.165 +739341,140.71,45.818 +739342,138.68,44.316 +739343,136.49,42.738 +739344,134.1,41.072 +739345,139.42,45.872 +739346,137.41,44.325 +739347,135.23,42.698 +739348,132.86,40.981 +739349,138.13,45.924 +739350,136.14,44.333 +739351,133.98,42.659 +739352,131.62,40.89 +739353,136.83,45.975 +739354,134.86,44.341 +739355,132.73,42.621 +739356,130.38,40.801 +739357,135.54,46.025 +739358,133.59,44.349 +739359,131.48,42.583 +739360,129.15,40.713 +739361,134.24,46.074 +739362,132.32,44.357 +739363,130.22,42.546 +739364,127.91,40.626 +739365,132.94,46.122 +739366,131.04,44.364 +739367,128.97,42.509 +739368,126.68,40.54 +739369,131.64,46.168 +739370,129.77,44.37 +739371,127.72,42.472 +739372,125.45,40.456 +739373,130.34,46.213 +739374,128.49,44.377 +739375,126.47,42.436 +739376,124.22,40.374 +739377,129.03,46.257 +739378,127.22,44.383 +739379,125.22,42.401 +739380,123,40.293 +739381,127.73,46.299 +739382,125.94,44.388 +739383,123.98,42.366 +739384,121.78,40.214 +739385,126.42,46.34 +739386,124.67,44.393 +739387,122.73,42.332 +739388,120.56,40.136 +739389,125.11,46.379 +739390,123.39,44.398 +739391,121.48,42.299 +739392,119.34,40.06 +739393,123.81,46.417 +739394,122.11,44.402 +739395,120.24,42.266 +739396,118.12,39.986 +739397,122.5,46.454 +739398,120.83,44.406 +739399,118.99,42.234 +739400,116.91,39.913 +739401,121.18,46.489 +739402,119.56,44.409 +739403,117.75,42.202 +739404,115.69,39.842 +739405,119.87,46.523 +739406,118.28,44.412 +739407,116.5,42.171 +739408,114.48,39.773 +739409,118.56,46.555 +739410,117,44.415 +739411,115.26,42.14 +739412,113.28,39.706 +739413,117.24,46.586 +739414,115.72,44.416 +739415,114.02,42.111 +739416,112.07,39.64 +739417,115.93,46.615 +739418,114.44,44.418 +739419,112.77,42.082 +739420,110.86,39.577 +739421,114.61,46.642 +739422,113.16,44.419 +739423,111.53,42.053 +739424,109.66,39.515 +739425,113.29,46.668 +739426,111.88,44.419 +739427,110.29,42.026 +739428,108.46,39.456 +739429,111.97,46.692 +739430,110.6,44.419 +739431,109.05,41.999 +739432,107.26,39.399 +739433,110.65,46.715 +739434,109.32,44.419 +739435,107.81,41.972 +739436,106.07,39.343 +739437,109.33,46.736 +739438,108.04,44.418 +739439,106.57,41.947 +739440,104.87,39.29 +739441,108.01,46.755 +739442,106.75,44.416 +739443,105.33,41.922 +739444,103.68,39.239 +739445,106.69,46.773 +739446,105.47,44.414 +739447,104.09,41.898 +739448,102.48,39.19 +739449,105.36,46.789 +739450,104.19,44.411 +739451,102.85,41.874 +739452,101.29,39.143 +739453,104.04,46.803 +739454,102.91,44.408 +739455,101.62,41.851 +739456,100.1,39.098 +739457,102.71,46.816 +739458,101.62,44.404 +739459,100.38,41.83 +739460,98.916,39.055 +739461,101.39,46.827 +739462,100.34,44.4 +739463,99.142,41.808 +739464,97.73,39.015 +739465,100.06,46.836 +739466,99.058,44.395 +739467,97.905,41.788 +739468,96.545,38.977 +739469,98.733,46.843 +739470,97.775,44.389 +739471,96.669,41.768 +739472,95.361,38.941 +739473,97.404,46.849 +739474,96.491,44.383 +739475,95.434,41.749 +739476,94.179,38.908 +739477,96.076,46.853 +739478,95.207,44.377 +739479,94.199,41.731 +739480,92.998,38.877 +739481,94.746,46.855 +739482,93.922,44.37 +739483,92.964,41.714 +739484,91.818,38.848 +739485,93.416,46.855 +739486,92.638,44.362 +739487,91.729,41.697 +739488,90.639,38.822 +739489,92.086,46.854 +739490,91.353,44.353 +739491,90.495,41.682 +739492,89.462,38.798 +739493,90.755,46.85 +739494,90.069,44.345 +739495,89.261,41.667 +739496,88.285,38.776 +739497,89.424,46.845 +739498,88.784,44.335 +739499,88.027,41.652 +739500,87.109,38.756 +739501,88.092,46.839 +739502,87.499,44.325 +739503,86.794,41.639 +739504,85.934,38.739 +739505,86.76,46.83 +739506,86.214,44.314 +739507,85.561,41.626 +739508,84.76,38.725 +739509,85.427,46.819 +739510,84.928,44.303 +739511,84.328,41.614 +739512,83.587,38.713 +739513,84.094,46.807 +739514,83.643,44.291 +739515,83.096,41.603 +739516,82.414,38.703 +739517,82.761,46.793 +739518,82.358,44.279 +739519,81.863,41.593 +739520,81.242,38.695 +739521,81.428,46.777 +739522,81.072,44.266 +739523,80.631,41.584 +739524,80.07,38.69 +739525,80.095,46.76 +739526,79.787,44.253 +739527,79.399,41.575 +739528,78.899,38.687 +739529,78.761,46.74 +739530,78.501,44.238 +739531,78.167,41.567 +739532,77.728,38.687 +739533,77.427,46.719 +739534,77.216,44.224 +739535,76.935,41.56 +739536,76.558,38.689 +739537,76.093,46.696 +739538,75.93,44.208 +739539,75.704,41.554 +739540,75.388,38.693 +739541,74.759,46.671 +739542,74.645,44.193 +739543,74.472,41.548 +739544,74.218,38.7 +739545,73.425,46.644 +739546,73.359,44.176 +739547,73.241,41.544 +739548,73.048,38.709 +739549,72.091,46.616 +739550,72.074,44.159 +739551,72.009,41.54 +739552,71.878,38.721 +739553,70.757,46.585 +739554,70.789,44.142 +739555,70.778,41.536 +739556,70.708,38.734 +739557,69.424,46.553 +739558,69.503,44.123 +739559,69.546,41.534 +739560,69.538,38.75 +739561,68.09,46.52 +739562,68.218,44.105 +739563,68.315,41.532 +739564,68.368,38.769 +739565,66.756,46.484 +739566,66.933,44.085 +739567,67.084,41.532 +739568,67.198,38.789 +739569,65.423,46.447 +739570,65.648,44.066 +739571,65.852,41.532 +739572,66.027,38.812 +739573,64.09,46.408 +739574,64.363,44.045 +739575,64.621,41.532 +739576,64.856,38.837 +739577,62.757,46.367 +739578,63.078,44.024 +739579,63.389,41.534 +739580,63.685,38.864 +739581,61.424,46.324 +739582,61.794,44.003 +739583,62.158,41.536 +739584,62.513,38.894 +739585,60.092,46.28 +739586,60.509,43.981 +739587,60.926,41.539 +739588,61.34,38.925 +739589,58.76,46.234 +739590,59.225,43.958 +739591,59.694,41.542 +739592,60.167,38.959 +739593,57.429,46.187 +739594,57.941,43.935 +739595,58.462,41.547 +739596,58.994,38.995 +739597,56.098,46.137 +739598,56.657,43.912 +739599,57.23,41.552 +739600,57.819,39.032 +739601,54.767,46.086 +739602,55.374,43.887 +739603,55.998,41.558 +739604,56.644,39.072 +739605,53.437,46.034 +739606,54.09,43.863 +739607,54.766,41.564 +739608,55.468,39.114 +739609,52.108,45.98 +739610,52.807,43.838 +739611,53.533,41.571 +739612,54.291,39.158 +739613,50.779,45.924 +739614,51.524,43.812 +739615,52.3,41.579 +739616,53.113,39.204 +739617,49.451,45.867 +739618,50.242,43.786 +739619,51.067,41.588 +739620,51.934,39.251 +739621,48.123,45.808 +739622,48.96,43.759 +739623,49.833,41.597 +739624,50.754,39.301 +739625,46.796,45.747 +739626,47.678,43.732 +739627,48.6,41.607 +739628,49.573,39.352 +739629,45.47,45.685 +739630,46.396,43.705 +739631,47.366,41.617 +739632,48.39,39.405 +739633,44.145,45.622 +739634,45.115,43.677 +739635,46.132,41.628 +739636,47.207,39.46 +739637,42.82,45.557 +739638,43.834,43.648 +739639,44.897,41.64 +739640,46.022,39.516 +739641,41.496,45.49 +739642,42.553,43.62 +739643,43.662,41.652 +739644,44.836,39.575 +739645,40.173,45.422 +739646,41.273,43.59 +739647,42.427,41.665 +739648,43.648,39.634 +739649,38.851,45.353 +739650,39.993,43.561 +739651,41.191,41.679 +739652,42.459,39.696 +739653,37.53,45.282 +739654,38.713,43.53 +739655,39.956,41.693 +739656,41.269,39.759 +739657,36.21,45.21 +739658,37.434,43.5 +739659,38.719,41.708 +739660,40.077,39.823 +739661,34.89,45.137 +739662,36.156,43.469 +739663,37.482,41.723 +739664,38.884,39.889 +739665,33.572,45.062 +739666,34.877,43.438 +739667,36.245,41.739 +739668,37.689,39.956 +739669,32.255,44.986 +739670,33.6,43.406 +739671,35.008,41.755 +739672,36.492,40.025 +739673,30.939,44.909 +739674,32.322,43.374 +739675,33.77,41.772 +739676,35.294,40.095 +739677,29.624,44.831 +739678,31.045,43.342 +739679,32.531,41.789 +739680,34.094,40.166 +739681,28.311,44.751 +739682,29.769,43.309 +739683,31.292,41.807 +739684,32.893,40.238 +739685,26.998,44.67 +739686,28.493,43.276 +739687,30.053,41.825 +739688,31.689,40.312 +739689,25.687,44.588 +739690,27.217,43.243 +739691,28.813,41.844 +739692,30.484,40.387 +739693,24.377,44.505 +739694,25.943,43.21 +739695,27.573,41.863 +739696,29.277,40.462 +739697,23.068,44.421 +739698,24.668,43.176 +739699,26.332,41.883 +739700,28.069,40.539 +739701,21.76,44.336 +739702,23.394,43.142 +739703,25.091,41.903 +739704,26.858,40.617 +739705,20.454,44.249 +739706,22.121,43.107 +739707,23.849,41.924 +739708,25.646,40.695 +739709,19.15,44.162 +739710,20.848,43.073 +739711,22.606,41.944 +739712,24.432,40.775 +739713,17.846,44.074 +739714,19.576,43.038 +739715,21.363,41.966 +739716,23.216,40.855 +739717,16.544,43.985 +739718,18.304,43.003 +739719,20.12,41.987 +739720,21.998,40.937 +739721,15.244,43.895 +739722,17.033,42.968 +739723,18.876,42.009 +739724,20.778,41.019 +739725,13.945,43.805 +739726,15.762,42.932 +739727,17.631,42.031 +739728,19.556,41.101 +739729,12.648,43.713 +739730,14.492,42.897 +739731,16.386,42.054 +739732,18.333,41.184 +739733,11.352,43.621 +739734,13.223,42.861 +739735,15.14,42.077 +739736,17.107,41.268 +739737,10.058,43.528 +739738,11.954,42.825 +739739,13.894,42.1 +739740,15.879,41.352 +739741,8.7648,43.434 +739742,10.686,42.789 +739743,12.647,42.123 +739744,14.65,41.437 +739745,7.4738,43.34 +739746,9.4184,42.753 +739747,11.399,42.147 +739748,13.418,41.522 +739749,6.1843,43.245 +739750,8.1515,42.717 +739751,10.151,42.171 +739752,12.185,41.608 +739753,4.8966,43.15 +739754,6.8852,42.68 +739755,8.9022,42.195 +739756,10.949,41.694 +739757,3.6106,43.054 +739758,5.6195,42.644 +739759,7.6528,42.219 +739760,9.7119,41.78 +739761,2.3263,42.958 +739762,4.3544,42.608 +739763,6.4029,42.244 +739764,8.4725,41.867 +739765,1.0437,42.861 +739766,3.09,42.571 +739767,5.1523,42.269 +739768,7.2312,41.953 +739769,359.76,42.764 +739770,1.8263,42.535 +739771,3.9011,42.293 +739772,5.9878,42.04 +739773,358.48,42.666 +739774,0.56319,42.498 +739775,2.6492,42.318 +739776,4.7426,42.127 +739777,357.21,42.569 +739778,359.3,42.462 +739779,1.3968,42.343 +739780,3.4953,42.214 +739781,355.93,42.471 +739782,358.04,42.425 +739783,0.14373,42.369 +739784,2.2461,42.301 +739785,354.66,42.372 +739786,356.78,42.389 +739787,358.89,42.394 +739788,0.99496,42.388 +739789,353.39,42.274 +739790,355.52,42.352 +739791,357.64,42.419 +739792,359.74,42.475 +739793,352.12,42.176 +739794,354.26,42.316 +739795,356.38,42.445 +739796,358.49,42.562 +739797,350.85,42.077 +739798,353,42.28 +739799,355.13,42.47 +739800,357.23,42.648 +739801,349.58,41.979 +739802,351.74,42.244 +739803,353.87,42.496 +739804,355.97,42.734 +739805,348.32,41.88 +739806,350.48,42.208 +739807,352.61,42.521 +739808,354.71,42.82 +739809,347.06,41.782 +739810,349.23,42.172 +739811,351.35,42.547 +739812,353.45,42.906 +739813,345.8,41.683 +739814,347.97,42.136 +739815,350.1,42.572 +739816,352.18,42.991 +739817,344.54,41.585 +739818,346.71,42.101 +739819,348.84,42.598 +739820,350.92,43.076 +739821,343.28,41.488 +739822,345.46,42.066 +739823,347.58,42.623 +739824,349.65,43.161 +739825,342.03,41.39 +739826,344.2,42.03 +739827,346.32,42.648 +739828,348.38,43.245 +739829,340.78,41.293 +739830,342.95,41.996 +739831,345.06,42.674 +739832,347.11,43.328 +739833,339.53,41.196 +739834,341.7,41.961 +739835,343.8,42.699 +739836,345.83,43.411 +739837,338.28,41.099 +739838,340.44,41.926 +739839,342.54,42.724 +739840,344.56,43.494 +739841,337.03,41.003 +739842,339.19,41.892 +739843,341.27,42.749 +739844,343.28,43.575 +739845,335.79,40.908 +739846,337.94,41.858 +739847,340.01,42.774 +739848,342,43.656 +739849,334.55,40.813 +739850,336.69,41.825 +739851,338.75,42.798 +739852,340.72,43.736 +739853,333.31,40.719 +739854,335.44,41.792 +739855,337.48,42.823 +739856,339.44,43.816 +739857,332.07,40.625 +739858,334.19,41.759 +739859,336.22,42.847 +739860,338.16,43.894 +739861,330.83,40.533 +739862,332.95,41.726 +739863,334.95,42.871 +739864,336.87,43.972 +739865,329.6,40.441 +739866,331.7,41.694 +739867,333.69,42.895 +739868,335.58,44.049 +739869,328.37,40.35 +739870,330.45,41.662 +739871,332.42,42.919 +739872,334.29,44.125 +739873,327.14,40.259 +739874,329.2,41.631 +739875,331.15,42.942 +739876,333,44.2 +739877,325.91,40.17 +739878,327.96,41.6 +739879,329.89,42.966 +739880,331.71,44.274 +739881,324.69,40.082 +739882,326.71,41.569 +739883,328.62,42.989 +739884,330.42,44.347 +739885,323.46,39.994 +739886,325.47,41.539 +739887,327.35,43.011 +739888,329.12,44.419 +739889,322.24,39.908 +739890,324.22,41.509 +739891,326.08,43.034 +739892,327.83,44.49 +739893,321.02,39.823 +739894,322.98,41.48 +739895,324.81,43.056 +739896,326.53,44.56 +739897,319.8,39.739 +739898,321.74,41.451 +739899,323.54,43.077 +739900,325.23,44.628 +739901,318.59,39.656 +739902,320.5,41.423 +739903,322.27,43.099 +739904,323.93,44.696 +739905,317.38,39.575 +739906,319.26,41.395 +739907,321,43.12 +739908,322.63,44.762 +739909,316.16,39.495 +739910,318.01,41.368 +739911,319.73,43.141 +739912,321.32,44.827 +739913,314.95,39.416 +739914,316.77,41.341 +739915,318.45,43.161 +739916,320.02,44.891 +739917,313.75,39.339 +739918,315.53,41.315 +739919,317.18,43.181 +739920,318.71,44.953 +739921,312.54,39.263 +739922,314.3,41.289 +739923,315.91,43.201 +739924,317.41,45.014 +739925,311.34,39.189 +739926,313.06,41.264 +739927,314.63,43.22 +739928,316.1,45.074 +739929,310.13,39.116 +739930,311.82,41.24 +739931,313.36,43.239 +739932,314.79,45.132 +739933,308.93,39.045 +739934,310.58,41.216 +739935,312.09,43.257 +739936,313.48,45.189 +739937,307.73,38.976 +739938,309.34,41.192 +739939,310.81,43.275 +739940,312.17,45.244 +739941,306.54,38.908 +739942,308.11,41.17 +739943,309.54,43.293 +739944,310.86,45.299 +739945,305.34,38.842 +739946,306.87,41.148 +739947,308.26,43.31 +739948,309.54,45.351 +739949,304.15,38.778 +739950,305.64,41.126 +739951,306.98,43.327 +739952,308.23,45.402 +739953,302.96,38.715 +739954,304.4,41.106 +739955,305.71,43.343 +739956,306.91,45.452 +739957,301.76,38.655 +739958,303.17,41.086 +739959,304.43,43.359 +739960,305.59,45.5 +739961,300.58,38.596 +739962,301.93,41.066 +739963,303.15,43.374 +739964,304.28,45.546 +739965,299.39,38.54 +739966,300.7,41.048 +739967,301.88,43.389 +739968,302.96,45.591 +739969,298.2,38.485 +739970,299.46,41.03 +739971,300.6,43.403 +739972,301.64,45.634 +739973,297.02,38.432 +739974,298.23,41.013 +739975,299.32,43.417 +739976,300.32,45.676 +739977,295.83,38.382 +739978,297,40.996 +739979,298.04,43.43 +739980,299,45.716 +739981,294.65,38.333 +739982,295.77,40.98 +739983,296.76,43.443 +739984,297.68,45.754 +739985,293.47,38.287 +739986,294.53,40.965 +739987,295.49,43.455 +739988,296.35,45.791 +739989,292.29,38.242 +739990,293.3,40.951 +739991,294.21,43.467 +739992,295.03,45.826 +739993,291.11,38.2 +739994,292.07,40.937 +739995,292.93,43.478 +739996,293.71,45.859 +739997,289.93,38.161 +739998,290.84,40.925 +739999,291.65,43.489 +740000,292.38,45.89 +740001,288.76,38.123 +740002,289.61,40.913 +740003,290.37,43.499 +740004,291.06,45.92 +740005,287.58,38.088 +740006,288.38,40.901 +740007,289.09,43.509 +740008,289.73,45.948 +740009,286.41,38.054 +740010,287.15,40.891 +740011,287.81,43.518 +740012,288.41,45.975 +740013,285.23,38.024 +740014,285.92,40.881 +740015,286.53,43.526 +740016,287.08,45.999 +740017,284.06,37.995 +740018,284.69,40.872 +740019,285.25,43.534 +740020,285.75,46.022 +740021,282.89,37.969 +740022,283.46,40.864 +740023,283.96,43.541 +740024,284.43,46.043 +740025,281.72,37.945 +740026,282.23,40.857 +740027,282.68,43.548 +740028,283.1,46.062 +740029,280.54,37.924 +740030,281,40.85 +740031,281.4,43.554 +740032,281.77,46.08 +740033,279.37,37.905 +740034,279.77,40.844 +740035,280.12,43.56 +740036,280.44,46.095 +740037,278.2,37.889 +740038,278.54,40.839 +740039,278.84,43.565 +740040,279.11,46.109 +740041,277.03,37.874 +740042,277.31,40.835 +740043,277.56,43.569 +740044,277.79,46.121 +740045,275.87,37.863 +740046,276.08,40.832 +740047,276.28,43.573 +740048,276.46,46.131 +740049,274.7,37.854 +740050,274.85,40.83 +740051,275,43.577 +740052,275.13,46.14 +740053,273.53,37.847 +740054,273.62,40.828 +740055,273.71,43.579 +740056,273.8,46.146 +740057,272.36,37.842 +740058,272.4,40.827 +740059,272.43,43.581 +740060,272.47,46.151 +740061,271.19,37.841 +740062,271.17,40.827 +740063,271.15,43.583 +740064,271.14,46.154 +740065,270.02,37.841 +740066,269.94,40.828 +740067,269.87,43.584 +740068,269.81,46.155 +740069,268.85,37.844 +740070,268.71,40.829 +740071,268.59,43.584 +740072,268.48,46.154 +740073,267.68,37.85 +740074,267.48,40.832 +740075,267.31,43.584 +740076,267.15,46.152 +740077,266.51,37.858 +740078,266.25,40.835 +740079,266.03,43.583 +740080,265.82,46.147 +740081,265.34,37.868 +740082,265.02,40.839 +740083,264.74,43.582 +740084,264.5,46.141 +740085,264.17,37.881 +740086,263.79,40.844 +740087,263.46,43.58 +740088,263.17,46.133 +740089,263,37.897 +740090,262.56,40.85 +740091,262.18,43.577 +740092,261.84,46.123 +740093,261.83,37.914 +740094,261.33,40.856 +740095,260.9,43.574 +740096,260.51,46.111 +740097,260.66,37.934 +740098,260.11,40.864 +740099,259.62,43.57 +740100,259.18,46.098 +740101,259.49,37.957 +740102,258.88,40.872 +740103,258.34,43.566 +740104,257.86,46.082 +740105,258.32,37.982 +740106,257.65,40.881 +740107,257.06,43.561 +740108,256.53,46.065 +740109,257.14,38.009 +740110,256.42,40.891 +740111,255.78,43.556 +740112,255.2,46.046 +740113,255.97,38.039 +740114,255.19,40.901 +740115,254.5,43.55 +740116,253.88,46.026 +740117,254.79,38.071 +740118,253.95,40.912 +740119,253.22,43.543 +740120,252.55,46.003 +740121,253.62,38.105 +740122,252.72,40.924 +740123,251.93,43.536 +740124,251.22,45.979 +740125,252.44,38.142 +740126,251.49,40.937 +740127,250.66,43.528 +740128,249.9,45.953 +740129,251.26,38.181 +740130,250.26,40.951 +740131,249.38,43.52 +740132,248.58,45.925 +740133,250.09,38.222 +740134,249.03,40.965 +740135,248.1,43.511 +740136,247.25,45.896 +740137,248.9,38.265 +740138,247.8,40.981 +740139,246.82,43.502 +740140,245.93,45.865 +740141,247.72,38.311 +740142,246.57,40.996 +740143,245.54,43.492 +740144,244.61,45.832 +740145,246.54,38.358 +740146,245.33,41.013 +740147,244.26,43.482 +740148,243.28,45.797 +740149,245.36,38.408 +740150,244.1,41.031 +740151,242.98,43.471 +740152,241.96,45.761 +740153,244.17,38.46 +740154,242.87,41.049 +740155,241.7,43.459 +740156,240.64,45.723 +740157,242.98,38.514 +740158,241.63,41.067 +740159,240.42,43.447 +740160,239.32,45.684 +740161,241.8,38.57 +740162,240.4,41.087 +740163,239.15,43.435 +740164,238.01,45.643 +740165,240.61,38.628 +740166,239.16,41.107 +740167,237.87,43.422 +740168,236.69,45.6 +740169,239.41,38.688 +740170,237.93,41.128 +740171,236.59,43.409 +740172,235.37,45.556 +740173,238.22,38.749 +740174,236.69,41.15 +740175,235.32,43.395 +740176,234.06,45.51 +740177,237.03,38.813 +740178,235.46,41.172 +740179,234.04,43.38 +740180,232.74,45.462 +740181,235.83,38.879 +740182,234.22,41.195 +740183,232.76,43.366 +740184,231.43,45.413 +740185,234.63,38.946 +740186,232.98,41.219 +740187,231.49,43.35 +740188,230.12,45.363 +740189,233.43,39.015 +740190,231.75,41.243 +740191,230.21,43.335 +740192,228.8,45.311 +740193,232.23,39.086 +740194,230.51,41.268 +740195,228.94,43.319 +740196,227.49,45.258 +740197,231.03,39.158 +740198,229.27,41.293 +740199,227.66,43.302 +740200,226.18,45.203 +740201,229.82,39.232 +740202,228.03,41.319 +740203,226.39,43.285 +740204,224.88,45.147 +740205,228.62,39.308 +740206,226.79,41.346 +740207,225.12,43.268 +740208,223.57,45.089 +740209,227.41,39.385 +740210,225.55,41.373 +740211,223.85,43.25 +740212,222.26,45.03 +740213,226.2,39.463 +740214,224.31,41.401 +740215,222.57,43.232 +740216,220.96,44.97 +740217,224.98,39.543 +740218,223.07,41.429 +740219,221.3,43.213 +740220,219.66,44.909 +740221,223.77,39.625 +740222,221.83,41.458 +740223,220.03,43.194 +740224,218.35,44.846 +740225,222.55,39.707 +740226,220.58,41.487 +740227,218.76,43.175 +740228,217.05,44.782 +740229,221.34,39.791 +740230,219.34,41.517 +740231,217.49,43.155 +740232,215.75,44.716 +740233,220.11,39.877 +740234,218.1,41.548 +740235,216.22,43.136 +740236,214.46,44.65 +740237,218.89,39.963 +740238,216.85,41.578 +740239,214.95,43.115 +740240,213.16,44.582 +740241,217.67,40.051 +740242,215.61,41.61 +740243,213.68,43.095 +740244,211.87,44.514 +740245,216.44,40.139 +740246,214.36,41.642 +740247,212.41,43.074 +740248,210.57,44.444 +740249,215.21,40.229 +740250,213.11,41.674 +740251,211.14,43.053 +740252,209.28,44.373 +740253,213.98,40.32 +740254,211.87,41.706 +740255,209.88,43.032 +740256,207.99,44.301 +740257,212.75,40.411 +740258,210.62,41.739 +740259,208.61,43.01 +740260,206.7,44.228 +740261,211.51,40.504 +740262,209.37,41.773 +740263,207.34,42.988 +740264,205.41,44.154 +740265,210.28,40.597 +740266,208.12,41.807 +740267,206.08,42.966 +740268,204.13,44.08 +740269,209.04,40.691 +740270,206.87,41.841 +740271,204.81,42.944 +740272,202.85,44.004 +740273,207.8,40.786 +740274,205.62,41.875 +740275,203.55,42.921 +740276,201.56,43.927 +740277,206.55,40.882 +740278,204.37,41.91 +740279,202.28,42.899 +740280,200.28,43.85 +740281,205.31,40.978 +740282,203.12,41.945 +740283,201.02,42.876 +740284,199,43.772 +740285,204.06,41.075 +740286,201.87,41.981 +740287,199.76,42.853 +740288,197.73,43.693 +740289,202.81,41.172 +740290,200.61,42.017 +740291,198.5,42.83 +740292,196.45,43.614 +740293,201.56,41.27 +740294,199.36,42.053 +740295,197.23,42.807 +740296,195.18,43.534 +740297,200.31,41.368 +740298,198.11,42.089 +740299,195.97,42.783 +740300,193.91,43.453 +740301,199.05,41.467 +740302,196.85,42.125 +740303,194.71,42.76 +740304,192.64,43.372 +740305,197.79,41.566 +740306,195.59,42.162 +740307,193.45,42.736 +740308,191.37,43.29 +740309,196.54,41.665 +740310,194.34,42.199 +740311,192.19,42.713 +740312,190.1,43.208 +740313,195.27,41.765 +740314,193.08,42.236 +740315,190.94,42.689 +740316,188.84,43.125 +740317,194.01,41.865 +740318,191.82,42.273 +740319,189.68,42.665 +740320,187.57,43.042 +740321,192.75,41.964 +740322,190.56,42.311 +740323,188.42,42.642 +740324,186.31,42.958 +740325,191.48,42.064 +740326,189.31,42.348 +740327,187.16,42.618 +740328,185.06,42.874 +740329,190.21,42.164 +740330,188.05,42.386 +740331,185.91,42.594 +740332,183.8,42.79 +740333,188.94,42.264 +740334,186.78,42.424 +740335,184.65,42.571 +740336,182.54,42.706 +740337,187.66,42.364 +740338,185.52,42.462 +740339,183.4,42.547 +740340,181.29,42.621 +740341,186.39,42.464 +740342,184.26,42.499 +740343,182.14,42.523 +740344,180.04,42.536 +740345,185.11,42.564 +740346,183,42.537 +740347,180.89,42.5 +740348,178.79,42.452 +740349,183.83,42.663 +740350,181.74,42.576 +740351,179.64,42.477 +740352,177.54,42.367 +740353,182.55,42.762 +740354,180.47,42.614 +740355,178.39,42.453 +740356,176.3,42.282 +740357,181.27,42.861 +740358,179.21,42.652 +740359,177.13,42.43 +740360,175.05,42.197 +740361,179.99,42.96 +740362,177.94,42.69 +740363,175.88,42.407 +740364,173.81,42.112 +740365,178.7,43.058 +740366,176.68,42.728 +740367,174.63,42.384 +740368,172.57,42.028 +740369,177.41,43.156 +740370,175.41,42.766 +740371,173.38,42.361 +740372,171.34,41.943 +740373,176.12,43.253 +740374,174.14,42.804 +740375,172.13,42.339 +740376,170.1,41.859 +740377,174.83,43.35 +740378,172.87,42.842 +740379,170.88,42.317 +740380,168.87,41.775 +740381,173.54,43.447 +740382,171.6,42.879 +740383,169.64,42.295 +740384,167.63,41.692 +740385,172.25,43.542 +740386,170.34,42.917 +740387,168.39,42.273 +740388,166.4,41.609 +740389,170.95,43.637 +740390,169.07,42.955 +740391,167.14,42.251 +740392,165.18,41.526 +740393,169.65,43.732 +740394,167.8,42.992 +740395,165.9,42.23 +740396,163.95,41.444 +740397,168.35,43.826 +740398,166.52,43.03 +740399,164.65,42.208 +740400,162.73,41.362 +740401,167.05,43.919 +740402,165.25,43.067 +740403,163.4,42.188 +740404,161.51,41.281 +740405,165.75,44.011 +740406,163.98,43.104 +740407,162.16,42.167 +740408,160.29,41.2 +740409,164.45,44.102 +740410,162.71,43.141 +740411,160.92,42.147 +740412,159.07,41.12 +740413,163.14,44.193 +740414,161.43,43.177 +740415,159.67,42.127 +740416,157.85,41.041 +740417,161.84,44.282 +740418,160.16,43.214 +740419,158.43,42.108 +740420,156.64,40.963 +740421,160.53,44.371 +740422,158.89,43.25 +740423,157.19,42.089 +740424,155.42,40.885 +740425,159.22,44.459 +740426,157.61,43.286 +740427,155.94,42.07 +740428,154.21,40.809 +740429,157.91,44.546 +740430,156.34,43.321 +740431,154.7,42.051 +740432,153,40.733 +740433,156.6,44.631 +740434,155.06,43.357 +740435,153.46,42.034 +740436,151.8,40.658 +740437,155.29,44.716 +740438,153.78,43.392 +740439,152.22,42.016 +740440,150.59,40.584 +740441,153.97,44.8 +740442,152.51,43.427 +740443,150.98,41.999 +740444,149.39,40.512 +740445,152.66,44.882 +740446,151.23,43.461 +740447,149.74,41.982 +740448,148.19,40.44 +740449,151.34,44.963 +740450,149.95,43.495 +740451,148.5,41.966 +740452,146.99,40.369 +740453,150.02,45.043 +740454,148.67,43.529 +740455,147.26,41.951 +740456,145.79,40.3 +740457,148.7,45.122 +740458,147.39,43.563 +740459,146.03,41.935 +740460,144.59,40.232 +740461,147.38,45.2 +740462,146.11,43.596 +740463,144.79,41.921 +740464,143.4,40.165 +740465,146.06,45.276 +740466,144.83,43.629 +740467,143.55,41.907 +740468,142.2,40.1 +740469,144.74,45.351 +740470,143.55,43.661 +740471,142.31,41.893 +740472,141.01,40.036 +740473,143.42,45.425 +740474,142.27,43.693 +740475,141.08,41.88 +740476,139.82,39.973 +740477,142.09,45.497 +740478,140.99,43.725 +740479,139.84,41.867 +740480,138.63,39.912 +740481,140.77,45.568 +740482,139.71,43.756 +740483,138.6,41.856 +740484,137.44,39.853 +740485,139.44,45.638 +740486,138.43,43.787 +740487,137.37,41.844 +740488,136.25,39.795 +740489,138.12,45.706 +740490,137.15,43.818 +740491,136.13,41.833 +740492,135.07,39.738 +740493,136.79,45.772 +740494,135.86,43.848 +740495,134.9,41.823 +740496,133.88,39.683 +740497,135.46,45.837 +740498,134.58,43.877 +740499,133.66,41.814 +740500,132.7,39.63 +740501,134.13,45.901 +740502,133.3,43.906 +740503,132.43,41.805 +740504,131.52,39.579 +740505,132.81,45.963 +740506,132.01,43.935 +740507,131.2,41.797 +740508,130.34,39.529 +740509,131.48,46.024 +740510,130.73,43.963 +740511,129.96,41.789 +740512,129.16,39.482 +740513,130.15,46.083 +740514,129.45,43.991 +740515,128.73,41.782 +740516,127.98,39.436 +740517,128.81,46.14 +740518,128.16,44.018 +740519,127.49,41.776 +740520,126.8,39.391 +740521,127.48,46.196 +740522,126.88,44.045 +740523,126.26,41.77 +740524,125.63,39.349 +740525,126.15,46.25 +740526,125.59,44.071 +740527,125.03,41.765 +740528,124.45,39.309 +740529,124.82,46.303 +740530,124.31,44.097 +740531,123.79,41.761 +740532,123.28,39.271 +740533,123.48,46.354 +740534,123.02,44.122 +740535,122.56,41.757 +740536,122.1,39.234 +740537,122.15,46.403 +740538,121.74,44.147 +740539,121.33,41.755 +740540,120.93,39.2 +740541,120.82,46.451 +740542,120.45,44.171 +740543,120.1,41.752 +740544,119.76,39.168 +740545,119.48,46.497 +740546,119.17,44.194 +740547,118.86,41.751 +740548,118.58,39.138 +740549,118.15,46.541 +740550,117.88,44.218 +740551,117.63,41.75 +740552,117.41,39.11 +740553,116.81,46.583 +740554,116.59,44.24 +740555,116.4,41.75 +740556,116.24,39.084 +740557,115.48,46.624 +740558,115.31,44.262 +740559,115.17,41.751 +740560,115.07,39.061 +740561,114.14,46.663 +740562,114.02,44.283 +740563,113.93,41.753 +740564,113.9,39.039 +740565,112.81,46.7 +740566,112.73,44.304 +740567,112.7,41.755 +740568,112.73,39.02 +740569,111.47,46.736 +740570,111.45,44.325 +740571,111.47,41.758 +740572,111.56,39.003 +740573,110.14,46.77 +740574,110.16,44.344 +740575,110.24,41.762 +740576,110.39,38.988 +740577,108.8,46.802 +740578,108.87,44.364 +740579,109.01,41.767 +740580,109.22,38.976 +740581,107.47,46.832 +740582,107.59,44.382 +740583,107.77,41.772 +740584,108.05,38.966 +740585,106.13,46.86 +740586,106.3,44.4 +740587,106.54,41.778 +740588,106.88,38.958 +740589,104.8,46.887 +740590,105.01,44.418 +740591,105.31,41.785 +740592,105.7,38.952 +740593,103.46,46.912 +740594,103.73,44.435 +740595,104.07,41.793 +740596,104.53,38.949 +740597,102.13,46.935 +740598,102.44,44.451 +740599,102.84,41.801 +740600,103.36,38.948 +740601,100.79,46.956 +740602,101.15,44.467 +740603,101.61,41.81 +740604,102.19,38.95 +740605,99.455,46.976 +740606,99.867,44.482 +740607,100.38,41.821 +740608,101.02,38.953 +740609,98.121,46.993 +740610,98.58,44.496 +740611,99.142,41.831 +740612,99.845,38.96 +740613,96.786,47.009 +740614,97.294,44.51 +740615,97.908,41.843 +740616,98.672,38.968 +740617,95.452,47.023 +740618,96.007,44.524 +740619,96.675,41.855 +740620,97.498,38.979 +740621,94.118,47.036 +740622,94.721,44.537 +740623,95.44,41.869 +740624,96.323,38.992 +740625,92.785,47.046 +740626,93.434,44.549 +740627,94.206,41.883 +740628,95.148,39.008 +740629,91.452,47.055 +740630,92.148,44.561 +740631,92.971,41.897 +740632,93.971,39.026 +740633,90.119,47.062 +740634,90.862,44.572 +740635,91.736,41.913 +740636,92.794,39.046 +740637,88.787,47.067 +740638,89.576,44.582 +740639,90.501,41.929 +740640,91.616,39.069 +740641,87.456,47.07 +740642,88.29,44.592 +740643,89.266,41.946 +740644,90.436,39.094 +740645,86.125,47.072 +740646,87.005,44.601 +740647,88.03,41.964 +740648,89.256,39.121 +740649,84.795,47.071 +740650,85.719,44.61 +740651,86.793,41.983 +740652,88.074,39.151 +740653,83.465,47.069 +740654,84.434,44.618 +740655,85.556,42.002 +740656,86.891,39.183 +740657,82.136,47.066 +740658,83.149,44.626 +740659,84.319,42.022 +740660,85.707,39.217 +740661,80.807,47.06 +740662,81.864,44.633 +740663,83.082,42.043 +740664,84.522,39.253 +740665,79.48,47.053 +740666,80.579,44.64 +740667,81.844,42.065 +740668,83.335,39.292 +740669,78.153,47.044 +740670,79.295,44.645 +740671,80.605,42.087 +740672,82.146,39.333 +740673,76.827,47.033 +740674,78.011,44.651 +740675,79.367,42.11 +740676,80.956,39.376 +740677,75.501,47.021 +740678,76.727,44.656 +740679,78.127,42.134 +740680,79.765,39.422 +740681,74.177,47.007 +740682,75.444,44.66 +740683,76.887,42.159 +740684,78.572,39.469 +740685,72.853,46.991 +740686,74.16,44.664 +740687,75.647,42.184 +740688,77.377,39.519 +740689,71.531,46.973 +740690,72.878,44.667 +740691,74.406,42.21 +740692,76.181,39.571 +740693,70.209,46.954 +740694,71.595,44.67 +740695,73.165,42.237 +740696,74.983,39.625 +740697,68.888,46.934 +740698,70.313,44.672 +740699,71.923,42.265 +740700,73.783,39.681 +740701,67.568,46.911 +740702,69.031,44.674 +740703,70.681,42.293 +740704,72.582,39.739 +740705,66.25,46.887 +740706,67.749,44.675 +740707,69.437,42.322 +740708,71.378,39.799 +740709,64.932,46.862 +740710,66.468,44.676 +740711,68.194,42.351 +740712,70.173,39.861 +740713,63.616,46.835 +740714,65.187,44.676 +740715,66.95,42.382 +740716,68.965,39.925 +740717,62.3,46.806 +740718,63.907,44.675 +740719,65.705,42.412 +740720,67.756,39.991 +740721,60.986,46.776 +740722,62.627,44.675 +740723,64.459,42.444 +740724,66.545,40.059 +740725,59.673,46.744 +740726,61.347,44.673 +740727,63.213,42.476 +740728,65.332,40.128 +740729,58.361,46.711 +740730,60.068,44.672 +740731,61.967,42.509 +740732,64.117,40.2 +740733,57.051,46.677 +740734,58.789,44.669 +740735,60.719,42.542 +740736,62.899,40.273 +740737,55.741,46.64 +740738,57.511,44.667 +740739,59.471,42.576 +740740,61.68,40.348 +740741,54.433,46.603 +740742,56.233,44.664 +740743,58.223,42.611 +740744,60.458,40.424 +740745,53.127,46.564 +740746,54.956,44.66 +740747,56.973,42.646 +740748,59.235,40.502 +740749,51.822,46.524 +740750,53.679,44.656 +740751,55.724,42.682 +740752,58.009,40.582 +740753,50.518,46.482 +740754,52.402,44.652 +740755,54.473,42.718 +740756,56.781,40.663 +740757,49.215,46.439 +740758,51.126,44.647 +740759,53.221,42.755 +740760,55.551,40.746 +740761,47.914,46.395 +740762,49.851,44.642 +740763,51.969,42.793 +740764,54.319,40.831 +740765,46.615,46.349 +740766,48.576,44.637 +740767,50.717,42.831 +740768,53.085,40.916 +740769,45.317,46.303 +740770,47.301,44.631 +740771,49.463,42.869 +740772,51.848,41.004 +740773,44.02,46.255 +740774,46.027,44.625 +740775,48.209,42.908 +740776,50.609,41.092 +740777,42.726,46.206 +740778,44.754,44.618 +740779,46.954,42.948 +740780,49.368,41.182 +740781,41.432,46.155 +740782,43.481,44.611 +740783,45.698,42.988 +740784,48.125,41.273 +740785,40.14,46.104 +740786,42.209,44.604 +740787,44.442,43.028 +740788,46.879,41.365 +740789,38.85,46.051 +740790,40.937,44.596 +740791,43.185,43.069 +740792,45.632,41.458 +740793,37.562,45.998 +740794,39.665,44.589 +740795,41.927,43.11 +740796,44.382,41.553 +740797,36.275,45.943 +740798,38.395,44.58 +740799,40.668,43.152 +740800,43.13,41.648 +740801,34.99,45.887 +740802,37.124,44.572 +740803,39.409,43.194 +740804,41.875,41.745 +740805,33.706,45.831 +740806,35.855,44.563 +740807,38.149,43.236 +740808,40.619,41.842 +740809,32.424,45.773 +740810,34.585,44.554 +740811,36.888,43.279 +740812,39.36,41.941 +740813,31.144,45.715 +740814,33.317,44.545 +740815,35.627,43.323 +740816,38.099,42.04 +740817,29.866,45.655 +740818,32.049,44.536 +740819,34.364,43.366 +740820,36.836,42.14 +740821,28.589,45.595 +740822,30.781,44.526 +740823,33.101,43.41 +740824,35.571,42.241 +740825,27.315,45.534 +740826,29.514,44.517 +740827,31.837,43.454 +740828,34.304,42.342 +740829,26.042,45.473 +740830,28.248,44.507 +740831,30.573,43.499 +740832,33.034,42.445 +740833,24.77,45.41 +740834,26.982,44.496 +740835,29.307,43.544 +740836,31.763,42.548 +740837,23.501,45.347 +740838,25.717,44.486 +740839,28.041,43.589 +740840,30.489,42.651 +740841,22.234,45.283 +740842,24.453,44.476 +740843,26.774,43.634 +740844,29.213,42.755 +740845,20.968,45.219 +740846,23.189,44.465 +740847,25.507,43.679 +740848,27.935,42.859 +740849,19.704,45.154 +740850,21.925,44.454 +740851,24.238,43.725 +740852,26.655,42.964 +740853,18.442,45.089 +740854,20.663,44.444 +740855,22.969,43.771 +740856,25.373,43.069 +740857,17.182,45.023 +740858,19.4,44.433 +740859,21.699,43.817 +740860,24.089,43.175 +740861,15.924,44.956 +740862,18.139,44.422 +740863,20.429,43.864 +740864,22.803,43.281 +740865,14.668,44.889 +740866,16.878,44.411 +740867,19.158,43.91 +740868,21.515,43.387 +740869,13.413,44.822 +740870,15.617,44.4 +740871,17.886,43.957 +740872,20.225,43.493 +740873,12.161,44.755 +740874,14.357,44.388 +740875,16.613,44.004 +740876,18.934,43.599 +740877,10.911,44.687 +740878,13.098,44.377 +740879,15.339,44.051 +740880,17.64,43.706 +740881,9.6619,44.619 +740882,11.839,44.366 +740883,14.065,44.098 +740884,16.344,43.812 +740885,8.4152,44.551 +740886,10.581,44.355 +740887,12.79,44.145 +740888,15.047,43.919 +740889,7.1704,44.482 +740890,9.3233,44.344 +740891,11.515,44.192 +740892,13.747,44.025 +740893,5.9276,44.414 +740894,8.0663,44.333 +740895,10.238,44.239 +740896,12.446,44.132 +740897,4.6866,44.345 +740898,6.8098,44.322 +740899,8.9614,44.287 +740900,11.143,44.238 +740901,3.4476,44.276 +740902,5.5538,44.311 +740903,7.6837,44.334 +740904,9.8388,44.344 +740905,2.2105,44.208 +740906,4.2985,44.3 +740907,6.4054,44.381 +740908,8.5324,44.45 +740909,0.97523,44.139 +740910,3.0436,44.289 +740911,5.1263,44.428 +740912,7.2244,44.555 +740913,359.74,44.071 +740914,1.7894,44.279 +740915,3.8467,44.476 +740916,5.9147,44.66 +740917,358.51,44.002 +740918,0.53561,44.268 +740919,2.5663,44.523 +740920,4.6034,44.765 +740921,357.28,43.934 +740922,359.28,44.258 +740923,1.2853,44.57 +740924,3.2905,44.87 +740925,356.05,43.866 +740926,358.03,44.248 +740927,0.0037143,44.617 +740928,1.9761,44.974 +740929,354.83,43.798 +740930,356.78,44.238 +740931,358.72,44.664 +740932,0.66007,45.077 +740933,353.6,43.731 +740934,355.53,44.228 +740935,357.44,44.711 +740936,359.34,45.18 +740937,352.38,43.664 +740938,354.27,44.218 +740939,356.16,44.758 +740940,358.02,45.283 +740941,351.16,43.597 +740942,353.02,44.209 +740943,354.87,44.805 +740944,356.7,45.384 +740945,349.94,43.531 +740946,351.77,44.2 +740947,353.59,44.851 +740948,355.38,45.486 +740949,348.73,43.466 +740950,350.52,44.191 +740951,352.3,44.898 +740952,354.06,45.586 +740953,347.51,43.401 +740954,349.27,44.182 +740955,351.02,44.944 +740956,352.73,45.686 +740957,346.3,43.336 +740958,348.03,44.174 +740959,349.73,44.99 +740960,351.41,45.785 +740961,345.09,43.272 +740962,346.78,44.166 +740963,348.44,45.036 +740964,350.08,45.883 +740965,343.88,43.209 +740966,345.53,44.158 +740967,347.15,45.081 +740968,348.75,45.981 +740969,342.67,43.147 +740970,344.28,44.15 +740971,345.87,45.127 +740972,347.42,46.077 +740973,341.46,43.085 +740974,343.04,44.143 +740975,344.58,45.172 +740976,346.09,46.173 +740977,340.26,43.024 +740978,341.79,44.136 +740979,343.29,45.217 +740980,344.76,46.267 +740981,339.05,42.964 +740982,340.54,44.13 +740983,342,45.262 +740984,343.43,46.361 +740985,337.85,42.905 +740986,339.3,44.124 +740987,340.71,45.306 +740988,342.09,46.454 +740989,336.65,42.847 +740990,338.05,44.118 +740991,339.42,45.35 +740992,340.76,46.546 +740993,335.45,42.79 +740994,336.81,44.113 +740995,338.13,45.394 +740996,339.42,46.636 +740997,334.26,42.734 +740998,335.56,44.108 +740999,336.84,45.438 +741000,338.08,46.726 +741001,333.06,42.678 +741002,334.32,44.103 +741003,335.54,45.481 +741004,336.75,46.814 +741005,331.86,42.624 +741006,333.07,44.099 +741007,334.25,45.524 +741008,335.41,46.902 +741009,330.67,42.572 +741010,331.83,44.096 +741011,332.96,45.566 +741012,334.07,46.988 +741013,329.48,42.52 +741014,330.59,44.092 +741015,331.67,45.609 +741016,332.73,47.073 +741017,328.29,42.47 +741018,329.34,44.09 +741019,330.37,45.65 +741020,331.39,47.156 +741021,327.1,42.421 +741022,328.1,44.087 +741023,329.08,45.692 +741024,330.04,47.239 +741025,325.91,42.373 +741026,326.86,44.086 +741027,327.79,45.733 +741028,328.7,47.32 +741029,324.72,42.326 +741030,325.61,44.085 +741031,326.49,45.774 +741032,327.36,47.4 +741033,323.54,42.281 +741034,324.37,44.084 +741035,325.2,45.814 +741036,326.01,47.478 +741037,322.35,42.238 +741038,323.13,44.084 +741039,323.9,45.854 +741040,324.67,47.555 +741041,321.17,42.196 +741042,321.89,44.084 +741043,322.61,45.893 +741044,323.32,47.631 +741045,319.99,42.155 +741046,320.65,44.085 +741047,321.31,45.932 +741048,321.98,47.705 +741049,318.8,42.116 +741050,319.4,44.087 +741051,320.01,45.971 +741052,320.63,47.778 +741053,317.62,42.078 +741054,318.16,44.089 +741055,318.72,46.009 +741056,319.28,47.849 +741057,316.44,42.043 +741058,316.92,44.091 +741059,317.42,46.047 +741060,317.94,47.919 +741061,315.26,42.008 +741062,315.68,44.094 +741063,316.13,46.084 +741064,316.59,47.988 +741065,314.08,41.976 +741066,314.44,44.098 +741067,314.83,46.121 +741068,315.24,48.055 +741069,312.9,41.945 +741070,313.2,44.103 +741071,313.53,46.157 +741072,313.89,48.12 +741073,311.72,41.916 +741074,311.96,44.108 +741075,312.23,46.193 +741076,312.54,48.184 +741077,310.55,41.889 +741078,310.72,44.113 +741079,310.94,46.228 +741080,311.2,48.246 +741081,309.37,41.863 +741082,309.48,44.119 +741083,309.64,46.263 +741084,309.85,48.307 +741085,308.19,41.839 +741086,308.23,44.126 +741087,308.34,46.297 +741088,308.5,48.366 +741089,307.01,41.817 +741090,306.99,44.134 +741091,307.04,46.331 +741092,307.15,48.424 +741093,305.84,41.798 +741094,305.75,44.142 +741095,305.75,46.364 +741096,305.8,48.479 +741097,304.66,41.779 +741098,304.51,44.151 +741099,304.45,46.397 +741100,304.45,48.534 +741101,303.48,41.763 +741102,303.27,44.16 +741103,303.15,46.429 +741104,303.1,48.586 +741105,302.31,41.749 +741106,302.03,44.17 +741107,301.85,46.46 +741108,301.75,48.637 +741109,301.13,41.737 +741110,300.79,44.181 +741111,300.55,46.491 +741112,300.4,48.687 +741113,299.95,41.727 +741114,299.55,44.193 +741115,299.25,46.522 +741116,299.05,48.734 +741117,298.78,41.718 +741118,298.31,44.205 +741119,297.96,46.552 +741120,297.7,48.78 +741121,297.6,41.712 +741122,297.06,44.218 +741123,296.66,46.582 +741124,296.35,48.825 +741125,296.42,41.708 +741126,295.82,44.231 +741127,295.36,46.61 +741128,295,48.867 +741129,295.24,41.706 +741130,294.58,44.246 +741131,294.06,46.639 +741132,293.65,48.908 +741133,294.07,41.706 +741134,293.34,44.261 +741135,292.76,46.667 +741136,292.3,48.947 +741137,292.89,41.708 +741138,292.09,44.276 +741139,291.46,46.694 +741140,290.95,48.985 +741141,291.71,41.712 +741142,290.85,44.292 +741143,290.17,46.721 +741144,289.61,49.021 +741145,290.53,41.719 +741146,289.61,44.309 +741147,288.87,46.747 +741148,288.26,49.055 +741149,289.35,41.727 +741150,288.37,44.327 +741151,287.57,46.772 +741152,286.91,49.087 +741153,288.16,41.737 +741154,287.12,44.346 +741155,286.27,46.797 +741156,285.56,49.118 +741157,286.98,41.75 +741158,285.88,44.365 +741159,284.97,46.822 +741160,284.22,49.146 +741161,285.8,41.765 +741162,284.63,44.385 +741163,283.68,46.846 +741164,282.87,49.174 +741165,284.61,41.782 +741166,283.39,44.405 +741167,282.38,46.869 +741168,281.52,49.199 +741169,283.43,41.801 +741170,282.14,44.426 +741171,281.08,46.892 +741172,280.18,49.223 +741173,282.24,41.822 +741174,280.9,44.448 +741175,279.78,46.914 +741176,278.83,49.245 +741177,281.05,41.845 +741178,279.65,44.471 +741179,278.49,46.935 +741180,277.49,49.265 +741181,279.86,41.871 +741182,278.41,44.494 +741183,277.19,46.956 +741184,276.15,49.283 +741185,278.67,41.898 +741186,277.16,44.518 +741187,275.89,46.977 +741188,274.81,49.3 +741189,277.48,41.928 +741190,275.91,44.543 +741191,274.6,46.997 +741192,273.46,49.315 +741193,276.29,41.96 +741194,274.67,44.569 +741195,273.3,47.016 +741196,272.12,49.329 +741197,275.1,41.993 +741198,273.42,44.595 +741199,272,47.035 +741200,270.78,49.34 +741201,273.9,42.029 +741202,272.17,44.622 +741203,270.71,47.053 +741204,269.44,49.35 +741205,272.7,42.067 +741206,270.92,44.649 +741207,269.41,47.071 +741208,268.1,49.359 +741209,271.5,42.108 +741210,269.67,44.677 +741211,268.12,47.088 +741212,266.77,49.365 +741213,270.3,42.15 +741214,268.42,44.706 +741215,266.82,47.104 +741216,265.43,49.37 +741217,269.1,42.194 +741218,267.17,44.736 +741219,265.53,47.12 +741220,264.09,49.374 +741221,267.89,42.24 +741222,265.92,44.766 +741223,264.23,47.136 +741224,262.76,49.375 +741225,266.69,42.289 +741226,264.67,44.797 +741227,262.94,47.151 +741228,261.42,49.375 +741229,265.48,42.339 +741230,263.42,44.828 +741231,261.64,47.165 +741232,260.09,49.374 +741233,264.27,42.391 +741234,262.16,44.861 +741235,260.35,47.179 +741236,258.76,49.371 +741237,263.06,42.445 +741238,260.91,44.893 +741239,259.06,47.192 +741240,257.43,49.366 +741241,261.85,42.501 +741242,259.66,44.927 +741243,257.76,47.205 +741244,256.1,49.359 +741245,260.63,42.559 +741246,258.4,44.961 +741247,256.47,47.217 +741248,254.77,49.352 +741249,259.41,42.619 +741250,257.15,44.996 +741251,255.18,47.229 +741252,253.44,49.342 +741253,258.19,42.681 +741254,255.89,45.031 +741255,253.89,47.24 +741256,252.12,49.331 +741257,256.97,42.744 +741258,254.63,45.067 +741259,252.6,47.251 +741260,250.79,49.319 +741261,255.75,42.81 +741262,253.38,45.104 +741263,251.31,47.262 +741264,249.47,49.304 +741265,254.52,42.877 +741266,252.12,45.141 +741267,250.02,47.271 +741268,248.14,49.289 +741269,253.29,42.946 +741270,250.86,45.179 +741271,248.73,47.281 +741272,246.82,49.272 +741273,252.06,43.016 +741274,249.6,45.217 +741275,247.44,47.29 +741276,245.5,49.254 +741277,250.83,43.089 +741278,248.34,45.256 +741279,246.15,47.298 +741280,244.18,49.234 +741281,249.59,43.162 +741282,247.08,45.296 +741283,244.86,47.306 +741284,242.87,49.213 +741285,248.36,43.238 +741286,245.82,45.336 +741287,243.57,47.314 +741288,241.55,49.19 +741289,247.12,43.315 +741290,244.56,45.376 +741291,242.28,47.321 +741292,240.24,49.166 +741293,245.88,43.394 +741294,243.29,45.417 +741295,241,47.327 +741296,238.92,49.141 +741297,244.63,43.474 +741298,242.03,45.459 +741299,239.71,47.334 +741300,237.61,49.114 +741301,243.39,43.555 +741302,240.77,45.501 +741303,238.42,47.339 +741304,236.3,49.086 +741305,242.14,43.638 +741306,239.5,45.544 +741307,237.14,47.345 +741308,235,49.057 +741309,240.89,43.723 +741310,238.23,45.587 +741311,235.85,47.35 +741312,233.69,49.026 +741313,239.63,43.808 +741314,236.97,45.63 +741315,234.57,47.355 +741316,232.38,48.995 +741317,238.38,43.896 +741318,235.7,45.674 +741319,233.29,47.359 +741320,231.08,48.962 +741321,237.12,43.984 +741322,234.43,45.719 +741323,232,47.363 +741324,229.78,48.928 +741325,235.86,44.073 +741326,233.16,45.764 +741327,230.72,47.366 +741328,228.48,48.893 +741329,234.6,44.164 +741330,231.89,45.809 +741331,229.44,47.37 +741332,227.18,48.857 +741333,233.33,44.256 +741334,230.62,45.855 +741335,228.15,47.373 +741336,225.88,48.819 +741337,232.07,44.349 +741338,229.35,45.901 +741339,226.87,47.375 +741340,224.59,48.781 +741341,230.8,44.443 +741342,228.08,45.948 +741343,225.59,47.377 +741344,223.29,48.742 +741345,229.53,44.538 +741346,226.81,45.995 +741347,224.31,47.379 +741348,222,48.701 +741349,228.25,44.634 +741350,225.53,46.042 +741351,223.03,47.381 +741352,220.71,48.66 +741353,226.98,44.731 +741354,224.26,46.09 +741355,221.75,47.383 +741356,219.42,48.618 +741357,225.7,44.829 +741358,222.98,46.138 +741359,220.48,47.384 +741360,218.14,48.575 +741361,224.42,44.928 +741362,221.71,46.186 +741363,219.2,47.385 +741364,216.85,48.531 +741365,223.13,45.027 +741366,220.43,46.235 +741367,217.92,47.385 +741368,215.57,48.486 +741369,221.85,45.128 +741370,219.15,46.284 +741371,216.64,47.386 +741372,214.29,48.44 +741373,220.56,45.229 +741374,217.87,46.333 +741375,215.37,47.386 +741376,213.01,48.394 +741377,219.27,45.33 +741378,216.6,46.382 +741379,214.09,47.386 +741380,211.73,48.347 +741381,217.98,45.433 +741382,215.32,46.432 +741383,212.82,47.386 +741384,210.46,48.299 +741385,216.69,45.536 +741386,214.04,46.482 +741387,211.54,47.386 +741388,209.18,48.25 +741389,215.39,45.639 +741390,212.75,46.532 +741391,210.27,47.385 +741392,207.91,48.201 +741393,214.09,45.743 +741394,211.47,46.583 +741395,208.99,47.384 +741396,206.64,48.152 +741397,212.79,45.847 +741398,210.19,46.633 +741399,207.72,47.384 +741400,205.37,48.101 +741401,211.49,45.952 +741402,208.91,46.684 +741403,206.45,47.383 +741404,204.11,48.051 +741405,210.19,46.057 +741406,207.62,46.735 +741407,205.18,47.382 +741408,202.84,47.999 +741409,208.88,46.162 +741410,206.34,46.786 +741411,203.91,47.38 +741412,201.58,47.948 +741413,207.57,46.268 +741414,205.05,46.838 +741415,202.64,47.379 +741416,200.32,47.896 +741417,206.26,46.374 +741418,203.76,46.889 +741419,201.37,47.378 +741420,199.06,47.843 +741421,204.95,46.48 +741422,202.48,46.941 +741423,200.1,47.376 +741424,197.8,47.79 +741425,203.64,46.586 +741426,201.19,46.992 +741427,198.83,47.375 +741428,196.55,47.737 +741429,202.32,46.693 +741430,199.9,47.044 +741431,197.56,47.374 +741432,195.29,47.684 +741433,201,46.799 +741434,198.61,47.096 +741435,196.29,47.372 +741436,194.04,47.63 +741437,199.68,46.905 +741438,197.32,47.147 +741439,195.02,47.371 +741440,192.79,47.577 +741441,198.36,47.012 +741442,196.03,47.199 +741443,193.76,47.369 +741444,191.55,47.523 +741445,197.04,47.118 +741446,194.74,47.251 +741447,192.49,47.368 +741448,190.3,47.469 +741449,195.71,47.224 +741450,193.44,47.303 +741451,191.23,47.366 +741452,189.06,47.415 +741453,194.39,47.33 +741454,192.15,47.355 +741455,189.96,47.365 +741456,187.82,47.361 +741457,193.06,47.436 +741458,190.86,47.407 +741459,188.7,47.363 +741460,186.58,47.307 +741461,191.73,47.541 +741462,189.56,47.459 +741463,187.43,47.362 +741464,185.34,47.253 +741465,190.4,47.646 +741466,188.27,47.511 +741467,186.17,47.361 +741468,184.1,47.199 +741469,189.07,47.751 +741470,186.97,47.562 +741471,184.91,47.36 +741472,182.87,47.145 +741473,187.73,47.856 +741474,185.68,47.614 +741475,183.64,47.359 +741476,181.63,47.092 +741477,186.4,47.96 +741478,184.38,47.666 +741479,182.38,47.358 +741480,180.4,47.039 +741481,185.06,48.063 +741482,183.08,47.717 +741483,181.12,47.358 +741484,179.17,46.986 +741485,183.72,48.167 +741486,181.78,47.769 +741487,179.86,47.357 +741488,177.95,46.933 +741489,182.38,48.269 +741490,180.49,47.82 +741491,178.6,47.357 +741492,176.72,46.881 +741493,181.04,48.371 +741494,179.19,47.871 +741495,177.34,47.356 +741496,175.5,46.829 +741497,179.7,48.473 +741498,177.89,47.922 +741499,176.08,47.356 +741500,174.27,46.777 +741501,178.35,48.574 +741502,176.59,47.973 +741503,174.82,47.357 +741504,173.05,46.726 +741505,177.01,48.674 +741506,175.29,48.023 +741507,173.56,47.357 +741508,171.83,46.676 +741509,175.66,48.773 +741510,173.98,48.074 +741511,172.3,47.358 +741512,170.62,46.626 +741513,174.31,48.872 +741514,172.68,48.124 +741515,171.05,47.359 +741516,169.4,46.576 +741517,172.97,48.97 +741518,171.38,48.174 +741519,169.79,47.36 +741520,168.19,46.527 +741521,171.62,49.067 +741522,170.08,48.224 +741523,168.53,47.361 +741524,166.97,46.479 +741525,170.26,49.163 +741526,168.77,48.274 +741527,167.27,47.363 +741528,165.76,46.432 +741529,168.91,49.259 +741530,167.47,48.323 +741531,166.02,47.365 +741532,164.55,46.385 +741533,167.56,49.353 +741534,166.17,48.372 +741535,164.76,47.367 +741536,163.34,46.339 +741537,166.21,49.447 +741538,164.86,48.421 +741539,163.51,47.37 +741540,162.14,46.294 +741541,164.85,49.539 +741542,163.56,48.469 +741543,162.25,47.373 +741544,160.93,46.25 +741545,163.5,49.631 +741546,162.25,48.518 +741547,160.99,47.376 +741548,159.73,46.207 +741549,162.14,49.722 +741550,160.94,48.565 +741551,159.74,47.38 +741552,158.52,46.164 +741553,160.78,49.811 +741554,159.64,48.613 +741555,158.48,47.384 +741556,157.32,46.123 +741557,159.43,49.9 +741558,158.33,48.66 +741559,157.23,47.388 +741560,156.12,46.082 +741561,158.07,49.987 +741562,157.02,48.707 +741563,155.98,47.393 +741564,154.92,46.043 +741565,156.71,50.073 +741566,155.72,48.754 +741567,154.72,47.398 +741568,153.72,46.005 +741569,155.35,50.158 +741570,154.41,48.8 +741571,153.47,47.404 +741572,152.52,45.968 +741573,153.99,50.242 +741574,153.1,48.846 +741575,152.22,47.41 +741576,151.33,45.932 +741577,152.63,50.325 +741578,151.79,48.891 +741579,150.96,47.416 +741580,150.13,45.897 +741581,151.26,50.406 +741582,150.48,48.936 +741583,149.71,47.423 +741584,148.94,45.863 +741585,149.9,50.486 +741586,149.18,48.981 +741587,148.46,47.43 +741588,147.74,45.831 +741589,148.54,50.565 +741590,147.87,49.025 +741591,147.2,47.438 +741592,146.55,45.8 +741593,147.18,50.643 +741594,146.56,49.069 +741595,145.95,47.446 +741596,145.36,45.77 +741597,145.81,50.719 +741598,145.25,49.113 +741599,144.7,47.455 +741600,144.17,45.742 +741601,144.45,50.794 +741602,143.94,49.156 +741603,143.45,47.464 +741604,142.98,45.715 +741605,143.09,50.867 +741606,142.63,49.198 +741607,142.19,47.474 +741608,141.79,45.689 +741609,141.72,50.939 +741610,141.32,49.24 +741611,140.94,47.484 +741612,140.6,45.665 +741613,140.36,51.01 +741614,140.01,49.282 +741615,139.69,47.495 +741616,139.41,45.643 +741617,138.99,51.079 +741618,138.7,49.323 +741619,138.44,47.506 +741620,138.22,45.622 +741621,137.63,51.147 +741622,137.39,49.364 +741623,137.18,47.518 +741624,137.03,45.602 +741625,136.26,51.214 +741626,136.07,49.404 +741627,135.93,47.53 +741628,135.84,45.584 +741629,134.9,51.278 +741630,134.76,49.444 +741631,134.68,47.543 +741632,134.66,45.567 +741633,133.53,51.342 +741634,133.45,49.484 +741635,133.43,47.556 +741636,133.47,45.552 +741637,132.17,51.404 +741638,132.14,49.522 +741639,132.18,47.57 +741640,132.28,45.539 +741641,130.8,51.464 +741642,130.83,49.561 +741643,130.92,47.584 +741644,131.1,45.528 +741645,129.44,51.523 +741646,129.52,49.599 +741647,129.67,47.599 +741648,129.91,45.518 +741649,128.07,51.58 +741650,128.21,49.636 +741651,128.42,47.615 +741652,128.72,45.509 +741653,126.7,51.636 +741654,126.9,49.673 +741655,127.17,47.631 +741656,127.53,45.503 +741657,125.34,51.691 +741658,125.58,49.709 +741659,125.91,47.648 +741660,126.35,45.498 +741661,123.98,51.743 +741662,124.27,49.745 +741663,124.66,47.665 +741664,125.16,45.495 +741665,122.61,51.794 +741666,122.96,49.78 +741667,123.41,47.683 +741668,123.97,45.493 +741669,121.25,51.844 +741670,121.65,49.815 +741671,122.15,47.702 +741672,122.78,45.494 +741673,119.88,51.892 +741674,120.34,49.849 +741675,120.9,47.721 +741676,121.59,45.496 +741677,118.52,51.938 +741678,119.03,49.883 +741679,119.65,47.741 +741680,120.4,45.5 +741681,117.16,51.983 +741682,117.72,49.916 +741683,118.39,47.761 +741684,119.21,45.506 +741685,115.79,52.026 +741686,116.4,49.948 +741687,117.14,47.782 +741688,118.02,45.513 +741689,114.43,52.067 +741690,115.09,49.981 +741691,115.88,47.803 +741692,116.83,45.523 +741693,113.07,52.107 +741694,113.78,50.012 +741695,114.63,47.825 +741696,115.64,45.534 +741697,111.71,52.146 +741698,112.47,50.043 +741699,113.37,47.848 +741700,114.45,45.548 +741701,110.35,52.182 +741702,111.16,50.074 +741703,112.12,47.872 +741704,113.26,45.563 +741705,108.99,52.217 +741706,109.85,50.103 +741707,110.86,47.895 +741708,112.06,45.579 +741709,107.63,52.251 +741710,108.54,50.133 +741711,109.61,47.92 +741712,110.87,45.598 +741713,106.27,52.282 +741714,107.23,50.162 +741715,108.35,47.945 +741716,109.67,45.619 +741717,104.91,52.312 +741718,105.92,50.19 +741719,107.09,47.971 +741720,108.47,45.641 +741721,103.55,52.341 +741722,104.61,50.218 +741723,105.84,47.997 +741724,107.27,45.666 +741725,102.19,52.368 +741726,103.3,50.245 +741727,104.58,48.025 +741728,106.07,45.692 +741729,100.84,52.393 +741730,101.99,50.271 +741731,103.32,48.052 +741732,104.87,45.72 +741733,99.481,52.417 +741734,100.68,50.298 +741735,102.06,48.08 +741736,103.67,45.75 +741737,98.126,52.439 +741738,99.373,50.323 +741739,100.8,48.109 +741740,102.47,45.782 +741741,96.772,52.459 +741742,98.064,50.348 +741743,99.543,48.139 +741744,101.26,45.816 +741745,95.419,52.478 +741746,96.756,50.373 +741747,98.283,48.169 +741748,100.06,45.852 +741749,94.067,52.495 +741750,95.447,50.396 +741751,97.023,48.2 +741752,98.848,45.889 +741753,92.716,52.511 +741754,94.14,50.42 +741755,95.762,48.231 +741756,97.639,45.928 +741757,91.366,52.525 +741758,92.832,50.443 +741759,94.5,48.263 +741760,96.427,45.969 +741761,90.016,52.538 +741762,91.525,50.465 +741763,93.238,48.295 +741764,95.215,46.012 +741765,88.668,52.549 +741766,90.218,50.487 +741767,91.976,48.328 +741768,94,46.057 +741769,87.321,52.558 +741770,88.912,50.508 +741771,90.712,48.362 +741772,92.784,46.104 +741773,85.975,52.566 +741774,87.605,50.529 +741775,89.449,48.396 +741776,91.566,46.152 +741777,84.63,52.572 +741778,86.3,50.549 +741779,88.184,48.431 +741780,90.346,46.202 +741781,83.286,52.577 +741782,84.994,50.569 +741783,86.919,48.466 +741784,89.124,46.254 +741785,81.944,52.58 +741786,83.689,50.588 +741787,85.654,48.502 +741788,87.9,46.308 +741789,80.602,52.582 +741790,82.384,50.607 +741791,84.388,48.539 +741792,86.675,46.363 +741793,79.262,52.582 +741794,81.08,50.625 +741795,83.121,48.576 +741796,85.447,46.42 +741797,77.923,52.581 +741798,79.776,50.643 +741799,81.853,48.614 +741800,84.217,46.479 +741801,76.586,52.579 +741802,78.473,50.66 +741803,80.585,48.652 +741804,82.986,46.539 +741805,75.25,52.575 +741806,77.17,50.677 +741807,79.316,48.69 +741808,81.752,46.601 +741809,73.915,52.569 +741810,75.867,50.693 +741811,78.047,48.73 +741812,80.516,46.665 +741813,72.581,52.563 +741814,74.565,50.709 +741815,76.777,48.769 +741816,79.278,46.73 +741817,71.249,52.554 +741818,73.264,50.725 +741819,75.506,48.81 +741820,78.038,46.796 +741821,69.918,52.545 +741822,71.962,50.739 +741823,74.234,48.851 +741824,76.796,46.865 +741825,68.589,52.534 +741826,70.662,50.754 +741827,72.962,48.892 +741828,75.551,46.935 +741829,67.261,52.522 +741830,69.362,50.768 +741831,71.689,48.934 +741832,74.304,47.006 +741833,65.934,52.508 +741834,68.062,50.782 +741835,70.416,48.976 +741836,73.056,47.079 +741837,64.609,52.493 +741838,66.763,50.795 +741839,69.141,49.019 +741840,71.804,47.153 +741841,63.286,52.477 +741842,65.464,50.808 +741843,67.866,49.062 +741844,70.551,47.228 +741845,61.964,52.46 +741846,64.166,50.82 +741847,66.59,49.105 +741848,69.295,47.305 +741849,60.644,52.442 +741850,62.868,50.832 +741851,65.314,49.149 +741852,68.037,47.383 +741853,59.325,52.422 +741854,61.571,50.843 +741855,64.036,49.194 +741856,66.777,47.463 +741857,58.008,52.401 +741858,60.274,50.855 +741859,62.758,49.239 +741860,65.514,47.544 +741861,56.692,52.379 +741862,58.978,50.865 +741863,61.479,49.284 +741864,64.249,47.626 +741865,55.378,52.356 +741866,57.683,50.876 +741867,60.2,49.33 +741868,62.982,47.709 +741869,54.066,52.332 +741870,56.388,50.886 +741871,58.919,49.376 +741872,61.712,47.793 +741873,52.756,52.307 +741874,55.093,50.896 +741875,57.638,49.423 +741876,60.44,47.879 +741877,51.447,52.28 +741878,53.799,50.905 +741879,56.356,49.47 +741880,59.166,47.965 +741881,50.14,52.253 +741882,52.506,50.914 +741883,55.074,49.517 +741884,57.89,48.053 +741885,48.834,52.225 +741886,51.213,50.923 +741887,53.79,49.565 +741888,56.611,48.142 +741889,47.53,52.195 +741890,49.921,50.931 +741891,52.506,49.613 +741892,55.33,48.232 +741893,46.229,52.165 +741894,48.629,50.939 +741895,51.221,49.661 +741896,54.046,48.322 +741897,44.928,52.134 +741898,47.338,50.947 +741899,49.935,49.709 +741900,52.76,48.414 +741901,43.63,52.102 +741902,46.048,50.955 +741903,48.649,49.758 +741904,51.472,48.506 +741905,42.333,52.069 +741906,44.758,50.962 +741907,47.362,49.808 +741908,50.182,48.599 +741909,41.039,52.036 +741910,43.468,50.969 +741911,46.073,49.857 +741912,48.89,48.693 +741913,39.746,52.002 +741914,42.18,50.976 +741915,44.785,49.907 +741916,47.595,48.788 +741917,38.454,51.966 +741918,40.892,50.983 +741919,43.495,49.957 +741920,46.298,48.884 +741921,37.165,51.931 +741922,39.604,50.989 +741923,42.205,50.007 +741924,44.998,48.98 +741925,35.877,51.894 +741926,38.317,50.995 +741927,40.913,50.058 +741928,43.697,49.077 +741929,34.592,51.857 +741930,37.031,51.001 +741931,39.622,50.108 +741932,42.393,49.174 +741933,33.308,51.819 +741934,35.745,51.007 +741935,38.329,50.159 +741936,41.088,49.272 +741937,32.026,51.781 +741938,34.459,51.012 +741939,37.035,50.21 +741940,39.78,49.371 +741941,30.746,51.742 +741942,33.175,51.018 +741943,35.741,50.262 +741944,38.47,49.47 +741945,29.468,51.702 +741946,31.891,51.023 +741947,34.446,50.313 +741948,37.157,49.569 +741949,28.191,51.662 +741950,30.607,51.028 +741951,33.151,50.365 +741952,35.843,49.669 +741953,26.917,51.622 +741954,29.324,51.033 +741955,31.854,50.417 +741956,34.527,49.769 +741957,25.644,51.581 +741958,28.042,51.038 +741959,30.557,50.469 +741960,33.209,49.87 +741961,24.373,51.54 +741962,26.76,51.043 +741963,29.259,50.521 +741964,31.888,49.971 +741965,23.104,51.498 +741966,25.479,51.047 +741967,27.961,50.573 +741968,30.566,50.072 +741969,21.837,51.456 +741970,24.198,51.052 +741971,26.661,50.625 +741972,29.242,50.173 +741973,20.572,51.414 +741974,22.918,51.056 +741975,25.361,50.677 +741976,27.916,50.274 +741977,19.309,51.372 +741978,21.639,51.061 +741979,24.061,50.73 +741980,26.588,50.376 +741981,18.047,51.329 +741982,20.36,51.065 +741983,22.759,50.782 +741984,25.258,50.477 +741985,16.788,51.286 +741986,19.081,51.069 +741987,21.457,50.835 +741988,23.926,50.579 +741989,15.53,51.243 +741990,17.803,51.074 +741991,20.154,50.887 +741992,22.592,50.681 +741993,14.274,51.2 +741994,16.526,51.078 +741995,18.851,50.939 +741996,21.257,50.782 +741997,13.02,51.157 +741998,15.249,51.082 +741999,17.547,50.992 +742000,19.92,50.884 +742001,11.767,51.114 +742002,13.973,51.087 +742003,16.242,51.044 +742004,18.581,50.985 +742005,10.517,51.071 +742006,12.697,51.091 +742007,14.936,51.097 +742008,17.241,51.086 +742009,9.2678,51.028 +742010,11.422,51.096 +742011,13.63,51.149 +742012,15.899,51.187 +742013,8.0208,50.985 +742014,10.147,51.1 +742015,12.324,51.202 +742016,14.555,51.288 +742017,6.7756,50.942 +742018,8.8731,51.105 +742019,11.016,51.254 +742020,13.21,51.389 +742021,5.5321,50.899 +742022,7.5994,51.109 +742023,9.7083,51.306 +742024,11.863,51.489 +742025,4.2903,50.857 +742026,6.3262,51.114 +742027,8.3997,51.358 +742028,10.515,51.589 +742029,3.0502,50.815 +742030,5.0535,51.119 +742031,7.0906,51.41 +742032,9.1653,51.688 +742033,1.8118,50.773 +742034,3.7812,51.124 +742035,5.7809,51.462 +742036,7.8142,51.788 +742037,0.57511,50.731 +742038,2.5094,51.129 +742039,4.4706,51.514 +742040,6.4616,51.886 +742041,359.34,50.689 +742042,1.2381,51.134 +742043,3.1598,51.566 +742044,5.1077,51.984 +742045,358.11,50.648 +742046,359.97,51.139 +742047,1.8484,51.617 +742048,3.7525,52.082 +742049,356.87,50.608 +742050,358.7,51.145 +742051,0.53646,51.669 +742052,2.396,52.179 +742053,355.64,50.568 +742054,357.43,51.15 +742055,359.22,51.72 +742056,1.0383,52.276 +742057,354.42,50.528 +742058,356.16,51.156 +742059,357.91,51.771 +742060,359.68,52.371 +742061,353.19,50.489 +742062,354.89,51.162 +742063,356.6,51.822 +742064,358.32,52.467 +742065,351.96,50.45 +742066,353.62,51.168 +742067,355.28,51.872 +742068,356.96,52.561 +742069,350.74,50.412 +742070,352.35,51.175 +742071,353.97,51.923 +742072,355.6,52.655 +742073,349.52,50.375 +742074,351.08,51.181 +742075,352.65,51.973 +742076,354.23,52.748 +742077,348.29,50.338 +742078,349.81,51.188 +742079,351.34,52.023 +742080,352.87,52.84 +742081,347.07,50.302 +742082,348.55,51.196 +742083,350.02,52.073 +742084,351.5,52.932 +742085,345.86,50.267 +742086,347.28,51.203 +742087,348.71,52.122 +742088,350.14,53.022 +742089,344.64,50.232 +742090,346.01,51.211 +742091,347.39,52.171 +742092,348.77,53.112 +742093,343.42,50.199 +742094,344.75,51.219 +742095,346.07,52.22 +742096,347.4,53.201 +742097,342.21,50.166 +742098,343.48,51.227 +742099,344.76,52.268 +742100,346.03,53.289 +742101,340.99,50.134 +742102,342.22,51.236 +742103,343.44,52.317 +742104,344.66,53.376 +742105,339.78,50.102 +742106,340.95,51.245 +742107,342.12,52.365 +742108,343.29,53.462 +742109,338.57,50.072 +742110,339.69,51.254 +742111,340.8,52.412 +742112,341.92,53.547 +742113,337.36,50.043 +742114,338.42,51.263 +742115,339.48,52.46 +742116,340.55,53.631 +742117,336.15,50.015 +742118,337.16,51.273 +742119,338.16,52.506 +742120,339.18,53.713 +742121,334.94,49.987 +742122,335.89,51.284 +742123,336.84,52.553 +742124,337.8,53.795 +742125,333.73,49.961 +742126,334.63,51.294 +742127,335.52,52.599 +742128,336.43,53.876 +742129,332.53,49.936 +742130,333.36,51.305 +742131,334.2,52.645 +742132,335.05,53.955 +742133,331.32,49.912 +742134,332.1,51.317 +742135,332.88,52.691 +742136,333.68,54.034 +742137,330.12,49.889 +742138,330.83,51.329 +742139,331.56,52.736 +742140,332.3,54.111 +742141,328.91,49.867 +742142,329.57,51.341 +742143,330.24,52.78 +742144,330.93,54.187 +742145,327.71,49.847 +742146,328.31,51.353 +742147,328.92,52.825 +742148,329.55,54.262 +742149,326.51,49.827 +742150,327.04,51.366 +742151,327.6,52.869 +742152,328.18,54.335 +742153,325.3,49.809 +742154,325.78,51.38 +742155,326.28,52.912 +742156,326.8,54.407 +742157,324.1,49.792 +742158,324.52,51.394 +742159,324.96,52.955 +742160,325.42,54.478 +742161,322.9,49.777 +742162,323.25,51.408 +742163,323.64,52.998 +742164,324.05,54.548 +742165,321.7,49.763 +742166,321.99,51.423 +742167,322.31,53.04 +742168,322.67,54.617 +742169,320.5,49.75 +742170,320.73,51.438 +742171,320.99,53.082 +742172,321.29,54.684 +742173,319.3,49.738 +742174,319.46,51.454 +742175,319.67,53.123 +742176,319.91,54.749 +742177,318.1,49.728 +742178,318.2,51.47 +742179,318.35,53.164 +742180,318.54,54.814 +742181,316.9,49.72 +742182,316.94,51.486 +742183,317.03,53.204 +742184,317.16,54.877 +742185,315.7,49.712 +742186,315.67,51.503 +742187,315.7,53.244 +742188,315.78,54.938 +742189,314.5,49.706 +742190,314.41,51.521 +742191,314.38,53.284 +742192,314.4,54.998 +742193,313.3,49.702 +742194,313.15,51.539 +742195,313.06,53.323 +742196,313.02,55.057 +742197,312.1,49.699 +742198,311.89,51.557 +742199,311.74,53.361 +742200,311.65,55.114 +742201,310.91,49.698 +742202,310.62,51.576 +742203,310.41,53.399 +742204,310.27,55.17 +742205,309.71,49.698 +742206,309.36,51.596 +742207,309.09,53.437 +742208,308.89,55.225 +742209,308.51,49.7 +742210,308.09,51.616 +742211,307.77,53.474 +742212,307.52,55.278 +742213,307.31,49.703 +742214,306.83,51.637 +742215,306.45,53.511 +742216,306.14,55.329 +742217,306.11,49.708 +742218,305.57,51.658 +742219,305.12,53.547 +742220,304.76,55.379 +742221,304.91,49.714 +742222,304.3,51.679 +742223,303.8,53.582 +742224,303.39,55.428 +742225,303.71,49.722 +742226,303.04,51.701 +742227,302.48,53.617 +742228,302.01,55.475 +742229,302.5,49.732 +742230,301.77,51.724 +742231,301.16,53.652 +742232,300.63,55.521 +742233,301.3,49.743 +742234,300.51,51.747 +742235,299.83,53.686 +742236,299.26,55.565 +742237,300.1,49.755 +742238,299.24,51.771 +742239,298.51,53.72 +742240,297.89,55.607 +742241,298.9,49.77 +742242,297.98,51.795 +742243,297.19,53.753 +742244,296.51,55.648 +742245,297.69,49.786 +742246,296.71,51.82 +742247,295.87,53.785 +742248,295.14,55.688 +742249,296.49,49.803 +742250,295.45,51.845 +742251,294.55,53.817 +742252,293.76,55.726 +742253,295.28,49.823 +742254,294.18,51.871 +742255,293.23,53.849 +742256,292.39,55.763 +742257,294.08,49.844 +742258,292.91,51.897 +742259,291.9,53.88 +742260,291.02,55.798 +742261,292.87,49.866 +742262,291.65,51.924 +742263,290.58,53.91 +742264,289.65,55.831 +742265,291.66,49.89 +742266,290.38,51.951 +742267,289.26,53.94 +742268,288.28,55.863 +742269,290.45,49.916 +742270,289.11,51.979 +742271,287.94,53.969 +742272,286.91,55.893 +742273,289.24,49.944 +742274,287.84,52.008 +742275,286.62,53.998 +742276,285.54,55.922 +742277,288.03,49.973 +742278,286.58,52.037 +742279,285.3,54.027 +742280,284.17,55.95 +742281,286.82,50.004 +742282,285.31,52.066 +742283,283.98,54.054 +742284,282.8,55.976 +742285,285.61,50.036 +742286,284.04,52.096 +742287,282.66,54.082 +742288,281.44,56 +742289,284.39,50.07 +742290,282.77,52.127 +742291,281.34,54.109 +742292,280.07,56.023 +742293,283.18,50.106 +742294,281.5,52.158 +742295,280.02,54.135 +742296,278.71,56.044 +742297,281.96,50.143 +742298,280.23,52.19 +742299,278.7,54.161 +742300,277.34,56.064 +742301,280.74,50.182 +742302,278.96,52.222 +742303,277.38,54.186 +742304,275.98,56.083 +742305,279.52,50.223 +742306,277.69,52.255 +742307,276.07,54.211 +742308,274.62,56.1 +742309,278.3,50.265 +742310,276.41,52.288 +742311,274.75,54.235 +742312,273.26,56.115 +742313,277.07,50.309 +742314,275.14,52.321 +742315,273.43,54.259 +742316,271.9,56.129 +742317,275.85,50.354 +742318,273.87,52.356 +742319,272.11,54.282 +742320,270.54,56.142 +742321,274.62,50.401 +742322,272.6,52.39 +742323,270.8,54.305 +742324,269.18,56.153 +742325,273.39,50.449 +742326,271.32,52.426 +742327,269.48,54.328 +742328,267.83,56.163 +742329,272.16,50.499 +742330,270.05,52.461 +742331,268.16,54.349 +742332,266.47,56.171 +742333,270.93,50.551 +742334,268.77,52.498 +742335,266.85,54.371 +742336,265.12,56.178 +742337,269.7,50.604 +742338,267.5,52.534 +742339,265.53,54.392 +742340,263.76,56.184 +742341,268.46,50.659 +742342,266.22,52.572 +742343,264.22,54.412 +742344,262.41,56.188 +742345,267.23,50.715 +742346,264.94,52.609 +742347,262.9,54.432 +742348,261.06,56.191 +742349,265.99,50.772 +742350,263.66,52.648 +742351,261.59,54.451 +742352,259.71,56.192 +742353,264.75,50.831 +742354,262.39,52.686 +742355,260.28,54.47 +742356,258.37,56.192 +742357,263.5,50.892 +742358,261.11,52.725 +742359,258.96,54.489 +742360,257.02,56.191 +742361,262.26,50.954 +742362,259.83,52.765 +742363,257.65,54.507 +742364,255.67,56.188 +742365,261.01,51.017 +742366,258.55,52.805 +742367,256.34,54.525 +742368,254.33,56.184 +742369,259.76,51.081 +742370,257.27,52.845 +742371,255.03,54.542 +742372,252.99,56.179 +742373,258.51,51.147 +742374,255.99,52.886 +742375,253.71,54.559 +742376,251.65,56.173 +742377,257.25,51.215 +742378,254.7,52.928 +742379,252.4,54.575 +742380,250.31,56.165 +742381,256,51.283 +742382,253.42,52.969 +742383,251.09,54.591 +742384,248.97,56.157 +742385,254.74,51.353 +742386,252.14,53.011 +742387,249.78,54.607 +742388,247.63,56.147 +742389,253.48,51.424 +742390,250.85,53.054 +742391,248.47,54.622 +742392,246.3,56.135 +742393,252.22,51.496 +742394,249.57,53.097 +742395,247.17,54.637 +742396,244.97,56.123 +742397,250.96,51.57 +742398,248.28,53.14 +742399,245.86,54.651 +742400,243.64,56.11 +742401,249.69,51.644 +742402,247,53.184 +742403,244.55,54.665 +742404,242.31,56.095 +742405,248.42,51.72 +742406,245.71,53.228 +742407,243.24,54.679 +742408,240.98,56.08 +742409,247.15,51.797 +742410,244.42,53.272 +742411,241.94,54.692 +742412,239.65,56.063 +742413,245.88,51.875 +742414,243.13,53.317 +742415,240.63,54.705 +742416,238.32,56.045 +742417,244.6,51.954 +742418,241.84,53.362 +742419,239.32,54.718 +742420,237,56.026 +742421,243.32,52.034 +742422,240.55,53.408 +742423,238.02,54.73 +742424,235.68,56.007 +742425,242.04,52.115 +742426,239.26,53.454 +742427,236.71,54.742 +742428,234.36,55.986 +742429,240.76,52.197 +742430,237.97,53.5 +742431,235.41,54.754 +742432,233.04,55.964 +742433,239.48,52.28 +742434,236.68,53.546 +742435,234.11,54.765 +742436,231.72,55.942 +742437,238.19,52.364 +742438,235.39,53.593 +742439,232.81,54.776 +742440,230.41,55.918 +742441,236.9,52.448 +742442,234.09,53.64 +742443,231.5,54.787 +742444,229.1,55.894 +742445,235.61,52.534 +742446,232.8,53.687 +742447,230.2,54.797 +742448,227.79,55.869 +742449,234.32,52.62 +742450,231.5,53.735 +742451,228.9,54.807 +742452,226.48,55.843 +742453,233.02,52.707 +742454,230.21,53.783 +742455,227.6,54.817 +742456,225.17,55.816 +742457,231.72,52.795 +742458,228.91,53.831 +742459,226.3,54.827 +742460,223.86,55.788 +742461,230.42,52.883 +742462,227.61,53.879 +742463,225,54.836 +742464,222.56,55.76 +742465,229.12,52.972 +742466,226.31,53.927 +742467,223.7,54.846 +742468,221.25,55.731 +742469,227.82,53.062 +742470,225.02,53.976 +742471,222.4,54.855 +742472,219.95,55.702 +742473,226.51,53.152 +742474,223.72,54.025 +742475,221.11,54.863 +742476,218.65,55.672 +742477,225.2,53.243 +742478,222.42,54.074 +742479,219.81,54.872 +742480,217.36,55.641 +742481,223.89,53.334 +742482,221.11,54.123 +742483,218.51,54.88 +742484,216.06,55.609 +742485,222.58,53.426 +742486,219.81,54.173 +742487,217.22,54.888 +742488,214.77,55.577 +742489,221.26,53.519 +742490,218.51,54.222 +742491,215.92,54.896 +742492,213.48,55.545 +742493,219.94,53.611 +742494,217.21,54.272 +742495,214.63,54.904 +742496,212.19,55.512 +742497,218.63,53.704 +742498,215.9,54.322 +742499,213.34,54.912 +742500,210.9,55.479 +742501,217.3,53.798 +742502,214.6,54.372 +742503,212.04,54.92 +742504,209.61,55.445 +742505,215.98,53.891 +742506,213.29,54.422 +742507,210.75,54.927 +742508,208.33,55.411 +742509,214.66,53.985 +742510,211.99,54.472 +742511,209.46,54.935 +742512,207.05,55.376 +742513,213.33,54.08 +742514,210.68,54.522 +742515,208.17,54.942 +742516,205.77,55.341 +742517,212,54.174 +742518,209.37,54.572 +742519,206.87,54.949 +742520,204.49,55.306 +742521,210.67,54.269 +742522,208.06,54.623 +742523,205.58,54.956 +742524,203.21,55.271 +742525,209.33,54.363 +742526,206.75,54.673 +742527,204.29,54.963 +742528,201.94,55.235 +742529,208,54.458 +742530,205.45,54.724 +742531,203.01,54.97 +742532,200.66,55.2 +742533,206.66,54.553 +742534,204.14,54.774 +742535,201.72,54.977 +742536,199.39,55.164 +742537,205.32,54.648 +742538,202.82,54.825 +742539,200.43,54.984 +742540,198.12,55.128 +742541,203.98,54.742 +742542,201.51,54.875 +742543,199.14,54.991 +742544,196.85,55.091 +742545,202.64,54.837 +742546,200.2,54.926 +742547,197.85,54.997 +742548,195.59,55.055 +742549,201.29,54.932 +742550,198.89,54.976 +742551,196.57,55.004 +742552,194.32,55.019 +742553,199.95,55.026 +742554,197.57,55.026 +742555,195.28,55.011 +742556,193.06,54.983 +742557,198.6,55.121 +742558,196.26,55.077 +742559,194,55.018 +742560,191.8,54.947 +742561,197.25,55.215 +742562,194.94,55.127 +742563,192.71,55.025 +742564,190.54,54.91 +742565,195.9,55.309 +742566,193.63,55.177 +742567,191.43,55.032 +742568,189.29,54.874 +742569,194.55,55.402 +742570,192.31,55.228 +742571,190.14,55.039 +742572,188.03,54.839 +742573,193.19,55.496 +742574,191,55.278 +742575,188.86,55.046 +742576,186.78,54.803 +742577,191.84,55.589 +742578,189.68,55.328 +742579,187.58,55.053 +742580,185.52,54.768 +742581,190.48,55.681 +742582,188.36,55.377 +742583,186.29,55.06 +742584,184.27,54.732 +742585,189.12,55.773 +742586,187.04,55.427 +742587,185.01,55.068 +742588,183.03,54.697 +742589,187.76,55.865 +742590,185.73,55.477 +742591,183.73,55.075 +742592,181.78,54.663 +742593,186.4,55.957 +742594,184.41,55.526 +742595,182.45,55.083 +742596,180.53,54.629 +742597,185.04,56.047 +742598,183.09,55.575 +742599,181.17,55.091 +742600,179.29,54.595 +742601,183.68,56.138 +742602,181.77,55.625 +742603,179.89,55.099 +742604,178.05,54.561 +742605,182.31,56.227 +742606,180.44,55.674 +742607,178.61,55.107 +742608,176.81,54.528 +742609,180.94,56.316 +742610,179.12,55.722 +742611,177.33,55.115 +742612,175.57,54.496 +742613,179.58,56.405 +742614,177.8,55.771 +742615,176.05,55.123 +742616,174.33,54.464 +742617,178.21,56.493 +742618,176.48,55.819 +742619,174.77,55.132 +742620,173.09,54.432 +742621,176.84,56.58 +742622,175.16,55.867 +742623,173.5,55.14 +742624,171.86,54.401 +742625,175.47,56.666 +742626,173.83,55.915 +742627,172.22,55.149 +742628,170.62,54.371 +742629,174.09,56.752 +742630,172.51,55.963 +742631,170.94,55.159 +742632,169.39,54.341 +742633,172.72,56.837 +742634,171.18,56.01 +742635,169.66,55.168 +742636,168.16,54.312 +742637,171.35,56.921 +742638,169.86,56.057 +742639,168.39,55.178 +742640,166.93,54.284 +742641,169.97,57.005 +742642,168.54,56.104 +742643,167.11,55.187 +742644,165.7,54.256 +742645,168.6,57.087 +742646,167.21,56.151 +742647,165.84,55.198 +742648,164.47,54.23 +742649,167.22,57.169 +742650,165.88,56.197 +742651,164.56,55.208 +742652,163.25,54.204 +742653,165.84,57.249 +742654,164.56,56.243 +742655,163.29,55.219 +742656,162.02,54.178 +742657,164.46,57.329 +742658,163.23,56.289 +742659,162.01,55.23 +742660,160.8,54.154 +742661,163.08,57.408 +742662,161.91,56.334 +742663,160.74,55.241 +742664,159.58,54.131 +742665,161.7,57.486 +742666,160.58,56.379 +742667,159.46,55.253 +742668,158.36,54.108 +742669,160.32,57.563 +742670,159.25,56.424 +742671,158.19,55.264 +742672,157.14,54.086 +742673,158.94,57.638 +742674,157.92,56.468 +742675,156.91,55.277 +742676,155.92,54.066 +742677,157.56,57.713 +742678,156.59,56.512 +742679,155.64,55.289 +742680,154.7,54.046 +742681,156.18,57.787 +742682,155.27,56.556 +742683,154.37,55.302 +742684,153.48,54.027 +742685,154.8,57.859 +742686,153.94,56.599 +742687,153.09,55.315 +742688,152.26,54.009 +742689,153.41,57.931 +742690,152.61,56.642 +742691,151.82,55.329 +742692,151.05,53.993 +742693,152.03,58.001 +742694,151.28,56.684 +742695,150.55,55.343 +742696,149.83,53.977 +742697,150.64,58.071 +742698,149.95,56.726 +742699,149.28,55.357 +742700,148.62,53.963 +742701,149.26,58.139 +742702,148.62,56.768 +742703,148,55.372 +742704,147.4,53.949 +742705,147.88,58.206 +742706,147.29,56.81 +742707,146.73,55.387 +742708,146.19,53.937 +742709,146.49,58.271 +742710,145.96,56.85 +742711,145.46,55.402 +742712,144.98,53.926 +742713,145.1,58.336 +742714,144.63,56.891 +742715,144.19,55.418 +742716,143.76,53.916 +742717,143.72,58.399 +742718,143.3,56.931 +742719,142.91,55.434 +742720,142.55,53.908 +742721,142.33,58.461 +742722,141.97,56.971 +742723,141.64,55.451 +742724,141.34,53.9 +742725,140.95,58.522 +742726,140.64,57.01 +742727,140.37,55.468 +742728,140.13,53.894 +742729,139.56,58.581 +742730,139.31,57.049 +742731,139.1,55.485 +742732,138.92,53.89 +742733,138.18,58.639 +742734,137.98,57.087 +742735,137.82,55.503 +742736,137.71,53.886 +742737,136.79,58.696 +742738,136.65,57.125 +742739,136.55,55.521 +742740,136.5,53.884 +742741,135.4,58.752 +742742,135.32,57.163 +742743,135.28,55.54 +742744,135.29,53.883 +742745,134.02,58.806 +742746,133.99,57.2 +742747,134.01,55.559 +742748,134.08,53.883 +742749,132.63,58.859 +742750,132.66,57.236 +742751,132.74,55.579 +742752,132.87,53.885 +742753,131.25,58.91 +742754,131.33,57.273 +742755,131.46,55.599 +742756,131.66,53.888 +742757,129.86,58.96 +742758,130,57.308 +742759,130.19,55.619 +742760,130.45,53.893 +742761,128.48,59.009 +742762,128.67,57.343 +742763,128.92,55.64 +742764,129.24,53.898 +742765,127.09,59.056 +742766,127.34,57.378 +742767,127.65,55.662 +742768,128.03,53.906 +742769,125.71,59.103 +742770,126.01,57.412 +742771,126.37,55.684 +742772,126.81,53.914 +742773,124.32,59.147 +742774,124.68,57.446 +742775,125.1,55.706 +742776,125.6,53.925 +742777,122.94,59.19 +742778,123.35,57.48 +742779,123.83,55.729 +742780,124.39,53.936 +742781,121.55,59.232 +742782,122.02,57.512 +742783,122.55,55.752 +742784,123.18,53.949 +742785,120.17,59.273 +742786,120.69,57.545 +742787,121.28,55.776 +742788,121.97,53.964 +742789,118.79,59.312 +742790,119.36,57.577 +742791,120.01,55.8 +742792,120.76,53.979 +742793,117.4,59.349 +742794,118.03,57.608 +742795,118.73,55.824 +742796,119.54,53.997 +742797,116.02,59.386 +742798,116.7,57.639 +742799,117.46,55.85 +742800,118.33,54.016 +742801,114.64,59.42 +742802,115.37,57.669 +742803,116.19,55.875 +742804,117.12,54.036 +742805,113.26,59.454 +742806,114.04,57.699 +742807,114.91,55.901 +742808,115.9,54.058 +742809,111.88,59.486 +742810,112.71,57.729 +742811,113.64,55.928 +742812,114.68,54.081 +742813,110.5,59.516 +742814,111.38,57.758 +742815,112.36,55.955 +742816,113.47,54.106 +742817,109.12,59.545 +742818,110.05,57.786 +742819,111.09,55.982 +742820,112.25,54.132 +742821,107.74,59.573 +742822,108.72,57.814 +742823,109.81,56.01 +742824,111.03,54.159 +742825,106.37,59.599 +742826,107.39,57.841 +742827,108.53,56.039 +742828,109.81,54.189 +742829,104.99,59.624 +742830,106.06,57.868 +742831,107.26,56.068 +742832,108.59,54.219 +742833,103.62,59.648 +742834,104.74,57.895 +742835,105.98,56.097 +742836,107.37,54.251 +742837,102.24,59.67 +742838,103.41,57.921 +742839,104.7,56.127 +742840,106.15,54.285 +742841,100.87,59.691 +742842,102.08,57.947 +742843,103.43,56.157 +742844,104.93,54.32 +742845,99.493,59.71 +742846,100.75,57.972 +742847,102.15,56.188 +742848,103.7,54.356 +742849,98.121,59.728 +742850,99.427,57.996 +742851,100.87,56.219 +742852,102.48,54.394 +742853,96.75,59.744 +742854,98.101,58.02 +742855,99.591,56.251 +742856,101.25,54.433 +742857,95.38,59.759 +742858,96.775,58.044 +742859,98.312,56.283 +742860,100.02,54.474 +742861,94.011,59.773 +742862,95.449,58.067 +742863,97.033,56.316 +742864,98.79,54.516 +742865,92.643,59.786 +742866,94.123,58.09 +742867,95.752,56.349 +742868,97.559,54.56 +742869,91.276,59.797 +742870,92.798,58.112 +742871,94.472,56.383 +742872,96.326,54.605 +742873,89.91,59.807 +742874,91.474,58.134 +742875,93.191,56.417 +742876,95.092,54.652 +742877,88.545,59.815 +742878,90.149,58.155 +742879,91.909,56.451 +742880,93.856,54.699 +742881,87.182,59.822 +742882,88.825,58.176 +742883,90.627,56.486 +742884,92.618,54.748 +742885,85.82,59.828 +742886,87.501,58.196 +742887,89.344,56.521 +742888,91.379,54.799 +742889,84.458,59.832 +742890,86.178,58.216 +742891,88.061,56.557 +742892,90.139,54.851 +742893,83.099,59.836 +742894,84.856,58.236 +742895,86.777,56.593 +742896,88.896,54.904 +742897,81.74,59.838 +742898,83.533,58.255 +742899,85.493,56.63 +742900,87.652,54.959 +742901,80.383,59.839 +742902,82.211,58.274 +742903,84.208,56.667 +742904,86.406,55.014 +742905,79.027,59.838 +742906,80.89,58.292 +742907,82.922,56.704 +742908,85.159,55.071 +742909,77.672,59.836 +742910,79.569,58.31 +742911,81.636,56.742 +742912,83.909,55.13 +742913,76.319,59.833 +742914,78.248,58.327 +742915,80.349,56.78 +742916,82.658,55.189 +742917,74.967,59.829 +742918,76.928,58.344 +742919,79.062,56.819 +742920,81.405,55.25 +742921,73.617,59.824 +742922,75.609,58.361 +742923,77.774,56.858 +742924,80.15,55.312 +742925,72.268,59.818 +742926,74.289,58.377 +742927,76.486,56.897 +742928,78.893,55.375 +742929,70.92,59.81 +742930,72.971,58.393 +742931,75.197,56.937 +742932,77.634,55.44 +742933,69.574,59.802 +742934,71.653,58.408 +742935,73.907,56.977 +742936,76.373,55.505 +742937,68.23,59.792 +742938,70.335,58.423 +742939,72.616,57.018 +742940,75.11,55.572 +742941,66.887,59.781 +742942,69.018,58.438 +742943,71.325,57.059 +742944,73.845,55.639 +742945,65.546,59.769 +742946,67.701,58.452 +742947,70.034,57.1 +742948,72.578,55.708 +742949,64.206,59.757 +742950,66.385,58.466 +742951,68.741,57.141 +742952,71.309,55.778 +742953,62.867,59.743 +742954,65.07,58.48 +742955,67.448,57.183 +742956,70.038,55.849 +742957,61.531,59.728 +742958,63.755,58.493 +742959,66.154,57.225 +742960,68.764,55.921 +742961,60.196,59.712 +742962,62.441,58.506 +742963,64.86,57.268 +742964,67.489,55.993 +742965,58.862,59.695 +742966,61.127,58.519 +742967,63.565,57.31 +742968,66.212,56.067 +742969,57.53,59.678 +742970,59.813,58.531 +742971,62.269,57.353 +742972,64.932,56.142 +742973,56.2,59.659 +742974,58.501,58.543 +742975,60.973,57.397 +742976,63.65,56.217 +742977,54.872,59.64 +742978,57.188,58.555 +742979,59.675,57.44 +742980,62.367,56.293 +742981,53.545,59.619 +742982,55.877,58.566 +742983,58.378,57.484 +742984,61.081,56.371 +742985,52.22,59.598 +742986,54.566,58.577 +742987,57.079,57.528 +742988,59.792,56.449 +742989,50.897,59.576 +742990,53.255,58.588 +742991,55.78,57.573 +742992,58.502,56.527 +742993,49.575,59.554 +742994,51.946,58.599 +742995,54.48,57.617 +742996,57.21,56.607 +742997,48.255,59.53 +742998,50.636,58.609 +742999,53.179,57.662 +743000,55.915,56.687 +743001,46.937,59.506 +743002,49.328,58.619 +743003,51.878,57.707 +743004,54.618,56.768 +743005,45.621,59.482 +743006,48.019,58.629 +743007,50.576,57.753 +743008,53.32,56.849 +743009,44.306,59.456 +743010,46.712,58.639 +743011,49.273,57.798 +743012,52.019,56.931 +743013,42.993,59.43 +743014,45.405,58.648 +743015,47.969,57.844 +743016,50.715,57.014 +743017,41.682,59.403 +743018,44.099,58.657 +743019,46.665,57.89 +743020,49.41,57.097 +743021,40.373,59.376 +743022,42.793,58.666 +743023,45.36,57.936 +743024,48.103,57.181 +743025,39.066,59.348 +743026,41.488,58.675 +743027,44.055,57.982 +743028,46.793,57.266 +743029,37.76,59.32 +743030,40.183,58.684 +743031,42.748,58.028 +743032,45.481,57.35 +743033,36.456,59.291 +743034,38.879,58.692 +743035,41.441,58.074 +743036,44.167,57.435 +743037,35.154,59.262 +743038,37.576,58.7 +743039,40.133,58.121 +743040,42.852,57.521 +743041,33.854,59.232 +743042,36.273,58.709 +743043,38.825,58.168 +743044,41.534,57.607 +743045,32.556,59.202 +743046,34.971,58.717 +743047,37.516,58.215 +743048,40.214,57.693 +743049,31.259,59.172 +743050,33.669,58.725 +743051,36.206,58.261 +743052,38.891,57.78 +743053,29.964,59.141 +743054,32.368,58.732 +743055,34.896,58.308 +743056,37.567,57.867 +743057,28.671,59.11 +743058,31.068,58.74 +743059,33.584,58.355 +743060,36.241,57.954 +743061,27.38,59.078 +743062,29.768,58.748 +743063,32.272,58.403 +743064,34.913,58.041 +743065,26.091,59.047 +743066,28.469,58.755 +743067,30.96,58.45 +743068,33.583,58.128 +743069,24.803,59.015 +743070,27.17,58.762 +743071,29.647,58.497 +743072,32.251,58.216 +743073,23.518,58.983 +743074,25.872,58.77 +743075,28.333,58.544 +743076,30.917,58.304 +743077,22.234,58.95 +743078,24.575,58.777 +743079,27.018,58.592 +743080,29.581,58.391 +743081,20.952,58.918 +743082,23.278,58.784 +743083,25.703,58.639 +743084,28.243,58.479 +743085,19.671,58.886 +743086,21.981,58.792 +743087,24.387,58.686 +743088,26.903,58.567 +743089,18.393,58.853 +743090,20.686,58.799 +743091,23.071,58.733 +743092,25.562,58.655 +743093,17.116,58.821 +743094,19.39,58.806 +743095,21.753,58.781 +743096,24.219,58.742 +743097,15.841,58.788 +743098,18.096,58.813 +743099,20.436,58.828 +743100,22.874,58.83 +743101,14.568,58.756 +743102,16.802,58.82 +743103,19.117,58.875 +743104,21.527,58.917 +743105,13.296,58.723 +743106,15.508,58.828 +743107,17.798,58.922 +743108,20.178,59.005 +743109,12.026,58.691 +743110,14.215,58.835 +743111,16.478,58.969 +743112,18.828,59.092 +743113,10.758,58.659 +743114,12.923,58.842 +743115,15.158,59.016 +743116,17.476,59.179 +743117,9.4918,58.627 +743118,11.631,58.849 +743119,13.837,59.063 +743120,16.122,59.265 +743121,8.2271,58.595 +743122,10.339,58.857 +743123,12.516,59.11 +743124,14.767,59.351 +743125,6.964,58.563 +743126,9.0482,58.864 +743127,11.194,59.156 +743128,13.41,59.437 +743129,5.7026,58.532 +743130,7.7578,58.872 +743131,9.8714,59.203 +743132,12.051,59.523 +743133,4.4428,58.501 +743134,6.4679,58.879 +743135,8.5483,59.249 +743136,10.692,59.608 +743137,3.1847,58.47 +743138,5.1785,58.887 +743139,7.2246,59.296 +743140,9.3301,59.693 +743141,1.9281,58.44 +743142,3.8895,58.895 +743143,5.9004,59.342 +743144,7.9673,59.778 +743145,0.67309,58.409 +743146,2.6011,58.903 +743147,4.5757,59.388 +743148,6.603,59.862 +743149,359.42,58.38 +743150,1.3131,58.911 +743151,3.2504,59.434 +743152,5.2373,59.945 +743153,358.17,58.351 +743154,0.025559,58.919 +743155,1.9246,59.479 +743156,3.8703,60.028 +743157,356.92,58.322 +743158,358.74,58.928 +743159,0.59835,59.525 +743160,2.5019,60.11 +743161,355.67,58.294 +743162,357.45,58.936 +743163,359.27,59.57 +743164,1.1323,60.192 +743165,354.42,58.266 +743166,356.17,58.945 +743167,357.94,59.615 +743168,359.76,60.273 +743169,353.17,58.239 +743170,354.88,58.954 +743171,356.62,59.66 +743172,358.39,60.354 +743173,351.93,58.212 +743174,353.59,58.963 +743175,355.29,59.704 +743176,357.02,60.434 +743177,350.69,58.186 +743178,352.31,58.973 +743179,353.96,59.749 +743180,355.64,60.513 +743181,349.44,58.161 +743182,351.02,58.982 +743183,352.63,59.793 +743184,354.27,60.591 +743185,348.2,58.136 +743186,349.74,58.992 +743187,351.3,59.837 +743188,352.89,60.669 +743189,346.96,58.112 +743190,348.46,59.002 +743191,349.97,59.88 +743192,351.51,60.746 +743193,345.73,58.089 +743194,347.17,59.012 +743195,348.64,59.924 +743196,350.13,60.822 +743197,344.49,58.066 +743198,345.89,59.022 +743199,347.31,59.967 +743200,348.75,60.897 +743201,343.25,58.044 +743202,344.61,59.033 +743203,345.98,60.01 +743204,347.37,60.972 +743205,342.02,58.023 +743206,343.32,59.044 +743207,344.65,60.052 +743208,345.99,61.045 +743209,340.79,58.003 +743210,342.04,59.055 +743211,343.32,60.094 +743212,344.61,61.118 +743213,339.55,57.984 +743214,340.76,59.067 +743215,341.98,60.136 +743216,343.23,61.19 +743217,338.32,57.966 +743218,339.48,59.079 +743219,340.65,60.178 +743220,341.84,61.261 +743221,337.09,57.948 +743222,338.2,59.091 +743223,339.32,60.219 +743224,340.46,61.331 +743225,335.86,57.932 +743226,336.92,59.103 +743227,337.99,60.26 +743228,339.07,61.399 +743229,334.63,57.916 +743230,335.64,59.116 +743231,336.65,60.3 +743232,337.69,61.467 +743233,333.41,57.901 +743234,334.36,59.129 +743235,335.32,60.34 +743236,336.3,61.534 +743237,332.18,57.888 +743238,333.08,59.142 +743239,333.99,60.38 +743240,334.91,61.6 +743241,330.95,57.875 +743242,331.79,59.156 +743243,332.65,60.42 +743244,333.53,61.665 +743245,329.73,57.863 +743246,330.51,59.17 +743247,331.32,60.459 +743248,332.14,61.729 +743249,328.51,57.853 +743250,329.24,59.184 +743251,329.98,60.498 +743252,330.75,61.791 +743253,327.28,57.843 +743254,327.96,59.199 +743255,328.65,60.536 +743256,329.36,61.853 +743257,326.06,57.835 +743258,326.68,59.214 +743259,327.31,60.574 +743260,327.97,61.913 +743261,324.84,57.828 +743262,325.4,59.23 +743263,325.98,60.611 +743264,326.58,61.972 +743265,323.61,57.822 +743266,324.12,59.245 +743267,324.64,60.649 +743268,325.19,62.03 +743269,322.39,57.817 +743270,322.84,59.262 +743271,323.31,60.685 +743272,323.8,62.087 +743273,321.17,57.813 +743274,321.56,59.278 +743275,321.97,60.722 +743276,322.41,62.143 +743277,319.95,57.81 +743278,320.28,59.295 +743279,320.64,60.758 +743280,321.02,62.197 +743281,318.73,57.809 +743282,319,59.312 +743283,319.3,60.793 +743284,319.63,62.251 +743285,317.51,57.809 +743286,317.72,59.33 +743287,317.97,60.828 +743288,318.24,62.303 +743289,316.29,57.81 +743290,316.44,59.348 +743291,316.63,60.863 +743292,316.85,62.354 +743293,315.07,57.812 +743294,315.16,59.367 +743295,315.3,60.897 +743296,315.46,62.403 +743297,313.85,57.815 +743298,313.89,59.386 +743299,313.96,60.931 +743300,314.07,62.451 +743301,312.63,57.82 +743302,312.61,59.405 +743303,312.62,60.965 +743304,312.68,62.498 +743305,311.41,57.826 +743306,311.33,59.425 +743307,311.29,60.997 +743308,311.29,62.544 +743309,310.19,57.834 +743310,310.05,59.445 +743311,309.95,61.03 +743312,309.9,62.589 +743313,308.98,57.842 +743314,308.77,59.465 +743315,308.62,61.062 +743316,308.51,62.632 +743317,307.76,57.852 +743318,307.49,59.486 +743319,307.28,61.094 +743320,307.12,62.674 +743321,306.54,57.863 +743322,306.21,59.508 +743323,305.94,61.125 +743324,305.73,62.714 +743325,305.32,57.876 +743326,304.93,59.53 +743327,304.61,61.156 +743328,304.34,62.754 +743329,304.1,57.89 +743330,303.65,59.552 +743331,303.27,61.186 +743332,302.95,62.792 +743333,302.88,57.905 +743334,302.37,59.575 +743335,301.94,61.216 +743336,301.56,62.828 +743337,301.66,57.922 +743338,301.09,59.598 +743339,300.6,61.245 +743340,300.17,62.864 +743341,300.44,57.94 +743342,299.81,59.621 +743343,299.27,61.274 +743344,298.78,62.898 +743345,299.22,57.959 +743346,298.53,59.645 +743347,297.93,61.302 +743348,297.4,62.93 +743349,297.99,57.979 +743350,297.25,59.67 +743351,296.6,61.33 +743352,296.01,62.962 +743353,296.77,58.001 +743354,295.97,59.695 +743355,295.26,61.358 +743356,294.62,62.992 +743357,295.55,58.025 +743358,294.69,59.72 +743359,293.93,61.385 +743360,293.24,63.02 +743361,294.33,58.049 +743362,293.41,59.746 +743363,292.59,61.412 +743364,291.85,63.048 +743365,293.1,58.075 +743366,292.13,59.772 +743367,291.26,61.438 +743368,290.47,63.074 +743369,291.88,58.103 +743370,290.85,59.798 +743371,289.92,61.463 +743372,289.08,63.098 +743373,290.65,58.132 +743374,289.57,59.826 +743375,288.59,61.489 +743376,287.7,63.122 +743377,289.43,58.162 +743378,288.29,59.853 +743379,287.25,61.513 +743380,286.31,63.144 +743381,288.2,58.193 +743382,287,59.881 +743383,285.92,61.538 +743384,284.93,63.164 +743385,286.97,58.226 +743386,285.72,59.909 +743387,284.59,61.562 +743388,283.55,63.184 +743389,285.74,58.26 +743390,284.44,59.938 +743391,283.25,61.585 +743392,282.17,63.202 +743393,284.51,58.296 +743394,283.16,59.967 +743395,281.92,61.608 +743396,280.79,63.218 +743397,283.28,58.332 +743398,281.87,59.997 +743399,280.59,61.63 +743400,279.41,63.234 +743401,282.05,58.37 +743402,280.59,60.027 +743403,279.26,61.653 +743404,278.03,63.248 +743405,280.81,58.41 +743406,279.3,60.057 +743407,277.92,61.674 +743408,276.66,63.261 +743409,279.58,58.451 +743410,278.02,60.088 +743411,276.59,61.695 +743412,275.28,63.273 +743413,278.34,58.493 +743414,276.73,60.12 +743415,275.26,61.716 +743416,273.91,63.283 +743417,277.11,58.536 +743418,275.45,60.151 +743419,273.93,61.736 +743420,272.53,63.292 +743421,275.87,58.58 +743422,274.16,60.183 +743423,272.6,61.756 +743424,271.16,63.3 +743425,274.63,58.626 +743426,272.88,60.216 +743427,271.27,61.776 +743428,269.79,63.306 +743429,273.39,58.673 +743430,271.59,60.249 +743431,269.94,61.795 +743432,268.42,63.312 +743433,272.14,58.722 +743434,270.3,60.282 +743435,268.61,61.813 +743436,267.05,63.316 +743437,270.9,58.771 +743438,269.01,60.316 +743439,267.28,61.831 +743440,265.68,63.319 +743441,269.66,58.822 +743442,267.73,60.35 +743443,265.95,61.849 +743444,264.31,63.321 +743445,268.41,58.874 +743446,266.44,60.384 +743447,264.62,61.867 +743448,262.95,63.321 +743449,267.16,58.927 +743450,265.15,60.419 +743451,263.3,61.883 +743452,261.58,63.32 +743453,265.91,58.981 +743454,263.86,60.455 +743455,261.97,61.9 +743456,260.22,63.319 +743457,264.66,59.037 +743458,262.57,60.49 +743459,260.64,61.916 +743460,258.86,63.316 +743461,263.4,59.093 +743462,261.28,60.526 +743463,259.31,61.932 +743464,257.5,63.312 +743465,262.15,59.151 +743466,259.98,60.562 +743467,257.99,61.947 +743468,256.14,63.307 +743469,260.89,59.21 +743470,258.69,60.599 +743471,256.66,61.962 +743472,254.78,63.301 +743473,259.63,59.27 +743474,257.4,60.636 +743475,255.34,61.977 +743476,253.42,63.293 +743477,258.37,59.33 +743478,256.11,60.673 +743479,254.01,61.991 +743480,252.07,63.285 +743481,257.11,59.392 +743482,254.81,60.711 +743483,252.69,62.005 +743484,250.71,63.276 +743485,255.85,59.455 +743486,253.52,60.749 +743487,251.37,62.019 +743488,249.36,63.265 +743489,254.58,59.519 +743490,252.22,60.787 +743491,250.04,62.032 +743492,248.01,63.254 +743493,253.31,59.584 +743494,250.93,60.826 +743495,248.72,62.045 +743496,246.66,63.242 +743497,252.04,59.65 +743498,249.63,60.865 +743499,247.4,62.057 +743500,245.31,63.228 +743501,250.77,59.716 +743502,248.33,60.904 +743503,246.08,62.07 +743504,243.97,63.214 +743505,249.5,59.784 +743506,247.04,60.944 +743507,244.75,62.082 +743508,242.62,63.199 +743509,248.22,59.852 +743510,245.74,60.983 +743511,243.43,62.093 +743512,241.28,63.183 +743513,246.94,59.922 +743514,244.44,61.023 +743515,242.11,62.105 +743516,239.94,63.166 +743517,245.67,59.992 +743518,243.14,61.064 +743519,240.79,62.116 +743520,238.6,63.148 +743521,244.38,60.063 +743522,241.84,61.104 +743523,239.48,62.126 +743524,237.26,63.13 +743525,243.1,60.135 +743526,240.54,61.145 +743527,238.16,62.137 +743528,235.92,63.111 +743529,241.81,60.207 +743530,239.24,61.186 +743531,236.84,62.147 +743532,234.59,63.09 +743533,240.53,60.28 +743534,237.94,61.227 +743535,235.52,62.157 +743536,233.25,63.07 +743537,239.24,60.354 +743538,236.63,61.269 +743539,234.21,62.167 +743540,231.92,63.048 +743541,237.95,60.429 +743542,235.33,61.311 +743543,232.89,62.176 +743544,230.59,63.026 +743545,236.65,60.504 +743546,234.03,61.353 +743547,231.57,62.185 +743548,229.26,63.003 +743549,235.36,60.579 +743550,232.72,61.395 +743551,230.26,62.194 +743552,227.94,62.979 +743553,234.06,60.656 +743554,231.42,61.437 +743555,228.94,62.203 +743556,226.61,62.955 +743557,232.76,60.733 +743558,230.11,61.479 +743559,227.63,62.212 +743560,225.29,62.93 +743561,231.46,60.81 +743562,228.8,61.522 +743563,226.32,62.22 +743564,223.97,62.905 +743565,230.15,60.888 +743566,227.5,61.565 +743567,225,62.228 +743568,222.65,62.879 +743569,228.85,60.966 +743570,226.19,61.608 +743571,223.69,62.236 +743572,221.33,62.852 +743573,227.54,61.045 +743574,224.88,61.651 +743575,222.38,62.244 +743576,220.01,62.825 +743577,226.23,61.124 +743578,223.57,61.694 +743579,221.07,62.252 +743580,218.7,62.798 +743581,224.92,61.204 +743582,222.26,61.737 +743583,219.76,62.259 +743584,217.39,62.77 +743585,223.6,61.284 +743586,220.95,61.781 +743587,218.45,62.266 +743588,216.08,62.742 +743589,222.28,61.364 +743590,219.64,61.824 +743591,217.14,62.274 +743592,214.77,62.713 +743593,220.97,61.444 +743594,218.33,61.868 +743595,215.83,62.281 +743596,213.46,62.684 +743597,219.65,61.525 +743598,217.01,61.912 +743599,214.52,62.288 +743600,212.16,62.655 +743601,218.32,61.606 +743602,215.7,61.955 +743603,213.22,62.295 +743604,210.85,62.625 +743605,217,61.687 +743606,214.39,61.999 +743607,211.91,62.301 +743608,209.55,62.596 +743609,215.67,61.769 +743610,213.07,62.043 +743611,210.6,62.308 +743612,208.25,62.565 +743613,214.34,61.85 +743614,211.76,62.087 +743615,209.3,62.315 +743616,206.95,62.535 +743617,213.01,61.932 +743618,210.44,62.131 +743619,207.99,62.321 +743620,205.66,62.505 +743621,211.68,62.013 +743622,209.12,62.175 +743623,206.69,62.328 +743624,204.36,62.474 +743625,210.35,62.095 +743626,207.81,62.219 +743627,205.39,62.334 +743628,203.07,62.443 +743629,209.01,62.176 +743630,206.49,62.263 +743631,204.08,62.341 +743632,201.78,62.413 +743633,207.67,62.258 +743634,205.17,62.307 +743635,202.78,62.347 +743636,200.49,62.382 +743637,206.33,62.34 +743638,203.85,62.351 +743639,201.48,62.354 +743640,199.2,62.351 +743641,204.99,62.421 +743642,202.53,62.394 +743643,200.18,62.36 +743644,197.91,62.32 +743645,203.65,62.503 +743646,201.21,62.438 +743647,198.88,62.367 +743648,196.63,62.289 +743649,202.3,62.584 +743650,199.89,62.482 +743651,197.57,62.373 +743652,195.35,62.258 +743653,200.96,62.665 +743654,198.57,62.526 +743655,196.28,62.38 +743656,194.07,62.228 +743657,199.61,62.746 +743658,197.25,62.569 +743659,194.98,62.386 +743660,192.79,62.197 +743661,198.26,62.826 +743662,195.92,62.613 +743663,193.68,62.393 +743664,191.51,62.167 +743665,196.91,62.907 +743666,194.6,62.657 +743667,192.38,62.399 +743668,190.23,62.137 +743669,195.55,62.987 +743670,193.28,62.7 +743671,191.08,62.406 +743672,188.96,62.107 +743673,194.2,63.067 +743674,191.95,62.743 +743675,189.78,62.413 +743676,187.69,62.077 +743677,192.84,63.146 +743678,190.63,62.786 +743679,188.49,62.419 +743680,186.42,62.047 +743681,191.48,63.225 +743682,189.3,62.829 +743683,187.19,62.426 +743684,185.15,62.018 +743685,190.12,63.304 +743686,187.97,62.872 +743687,185.9,62.433 +743688,183.88,61.989 +743689,188.76,63.382 +743690,186.65,62.915 +743691,184.6,62.441 +743692,182.61,61.961 +743693,187.4,63.46 +743694,185.32,62.957 +743695,183.31,62.448 +743696,181.35,61.933 +743697,186.03,63.537 +743698,183.99,63 +743699,182.01,62.455 +743700,180.09,61.905 +743701,184.66,63.614 +743702,182.66,63.042 +743703,180.72,62.463 +743704,178.83,61.878 +743705,183.3,63.69 +743706,181.33,63.084 +743707,179.43,62.471 +743708,177.57,61.851 +743709,181.93,63.765 +743710,180,63.126 +743711,178.13,62.478 +743712,176.31,61.825 +743713,180.56,63.84 +743714,178.67,63.168 +743715,176.84,62.486 +743716,175.05,61.799 +743717,179.19,63.915 +743718,177.34,63.209 +743719,175.55,62.495 +743720,173.8,61.774 +743721,177.81,63.989 +743722,176.01,63.25 +743723,174.26,62.503 +743724,172.54,61.749 +743725,176.44,64.062 +743726,174.68,63.291 +743727,172.97,62.512 +743728,171.29,61.725 +743729,175.07,64.134 +743730,173.35,63.332 +743731,171.68,62.521 +743732,170.04,61.702 +743733,173.69,64.206 +743734,172.02,63.372 +743735,170.39,62.53 +743736,168.79,61.679 +743737,172.31,64.276 +743738,170.69,63.413 +743739,169.1,62.539 +743740,167.54,61.657 +743741,170.93,64.347 +743742,169.35,63.453 +743743,167.81,62.548 +743744,166.29,61.636 +743745,169.55,64.416 +743746,168.02,63.492 +743747,166.52,62.558 +743748,165.05,61.615 +743749,168.17,64.484 +743750,166.69,63.532 +743751,165.23,62.568 +743752,163.8,61.595 +743753,166.79,64.552 +743754,165.35,63.571 +743755,163.94,62.578 +743756,162.56,61.576 +743757,165.41,64.619 +743758,164.02,63.61 +743759,162.65,62.589 +743760,161.31,61.558 +743761,164.03,64.685 +743762,162.68,63.648 +743763,161.36,62.6 +743764,160.07,61.541 +743765,162.64,64.75 +743766,161.35,63.686 +743767,160.08,62.611 +743768,158.83,61.524 +743769,161.26,64.814 +743770,160.01,63.724 +743771,158.79,62.622 +743772,157.59,61.509 +743773,159.87,64.877 +743774,158.68,63.762 +743775,157.5,62.633 +743776,156.35,61.494 +743777,158.49,64.94 +743778,157.34,63.799 +743779,156.22,62.645 +743780,155.12,61.48 +743781,157.1,65.001 +743782,156,63.836 +743783,154.93,62.658 +743784,153.88,61.467 +743785,155.71,65.061 +743786,154.67,63.873 +743787,153.65,62.67 +743788,152.65,61.456 +743789,154.32,65.12 +743790,153.33,63.909 +743791,152.36,62.683 +743792,151.41,61.445 +743793,152.93,65.179 +743794,151.99,63.945 +743795,151.07,62.696 +743796,150.18,61.435 +743797,151.54,65.236 +743798,150.65,63.98 +743799,149.79,62.71 +743800,148.94,61.426 +743801,150.15,65.292 +743802,149.32,64.015 +743803,148.5,62.724 +743804,147.71,61.418 +743805,148.76,65.347 +743806,147.98,64.05 +743807,147.22,62.738 +743808,146.48,61.411 +743809,147.37,65.401 +743810,146.64,64.084 +743811,145.93,62.752 +743812,145.25,61.405 +743813,145.98,65.454 +743814,145.3,64.118 +743815,144.65,62.767 +743816,144.02,61.401 +743817,144.59,65.505 +743818,143.97,64.152 +743819,143.37,62.782 +743820,142.79,61.397 +743821,143.2,65.556 +743822,142.63,64.185 +743823,142.08,62.798 +743824,141.56,61.395 +743825,141.8,65.605 +743826,141.29,64.218 +743827,140.8,62.814 +743828,140.33,61.394 +743829,140.41,65.653 +743830,139.95,64.251 +743831,139.51,62.83 +743832,139.1,61.393 +743833,139.02,65.701 +743834,138.61,64.283 +743835,138.23,62.847 +743836,137.88,61.395 +743837,137.63,65.746 +743838,137.27,64.314 +743839,136.94,62.864 +743840,136.65,61.397 +743841,136.23,65.791 +743842,135.93,64.346 +743843,135.66,62.882 +743844,135.42,61.4 +743845,134.84,65.835 +743846,134.59,64.376 +743847,134.38,62.899 +743848,134.19,61.405 +743849,133.45,65.877 +743850,133.25,64.407 +743851,133.09,62.918 +743852,132.97,61.411 +743853,132.05,65.918 +743854,131.92,64.437 +743855,131.81,62.936 +743856,131.74,61.418 +743857,130.66,65.958 +743858,130.58,64.466 +743859,130.53,62.955 +743860,130.51,61.426 +743861,129.27,65.997 +743862,129.24,64.496 +743863,129.24,62.975 +743864,129.29,61.435 +743865,127.87,66.034 +743866,127.9,64.524 +743867,127.96,62.995 +743868,128.06,61.446 +743869,126.48,66.07 +743870,126.56,64.553 +743871,126.67,63.015 +743872,126.84,61.458 +743873,125.09,66.105 +743874,125.22,64.58 +743875,125.39,63.036 +743876,125.61,61.471 +743877,123.7,66.139 +743878,123.88,64.608 +743879,124.11,63.057 +743880,124.38,61.486 +743881,122.3,66.171 +743882,122.54,64.635 +743883,122.82,63.078 +743884,123.16,61.502 +743885,120.91,66.202 +743886,121.2,64.661 +743887,121.54,63.1 +743888,121.93,61.519 +743889,119.52,66.232 +743890,119.86,64.688 +743891,120.25,63.122 +743892,120.7,61.537 +743893,118.13,66.261 +743894,118.52,64.713 +743895,118.97,63.145 +743896,119.47,61.557 +743897,116.74,66.288 +743898,117.19,64.739 +743899,117.69,63.168 +743900,118.25,61.577 +743901,115.35,66.314 +743902,115.85,64.763 +743903,116.4,63.192 +743904,117.02,61.6 +743905,113.96,66.339 +743906,114.51,64.788 +743907,115.12,63.216 +743908,115.79,61.623 +743909,112.57,66.363 +743910,113.17,64.812 +743911,113.83,63.24 +743912,114.56,61.648 +743913,111.18,66.385 +743914,111.83,64.835 +743915,112.55,63.265 +743916,113.33,61.674 +743917,109.79,66.406 +743918,110.49,64.858 +743919,111.26,63.29 +743920,112.1,61.701 +743921,108.41,66.426 +743922,109.16,64.881 +743923,109.98,63.315 +743924,110.87,61.73 +743925,107.02,66.444 +743926,107.82,64.903 +743927,108.69,63.341 +743928,109.64,61.759 +743929,105.63,66.462 +743930,106.48,64.925 +743931,107.4,63.368 +743932,108.41,61.79 +743933,104.25,66.478 +743934,105.14,64.946 +743935,106.12,63.395 +743936,107.18,61.823 +743937,102.86,66.492 +743938,103.81,64.967 +743939,104.83,63.422 +743940,105.94,61.856 +743941,101.48,66.506 +743942,102.47,64.988 +743943,103.54,63.449 +743944,104.71,61.891 +743945,100.09,66.518 +743946,101.13,65.008 +743947,102.26,63.477 +743948,103.47,61.927 +743949,98.712,66.529 +743950,99.797,65.028 +743951,100.97,63.506 +743952,102.24,61.965 +743953,97.33,66.539 +743954,98.461,65.047 +743955,99.68,63.535 +743956,101,62.003 +743957,95.95,66.548 +743958,97.125,65.066 +743959,98.392,63.564 +743960,99.761,62.043 +743961,94.57,66.555 +743962,95.79,65.084 +743963,97.104,63.594 +743964,98.522,62.084 +743965,93.191,66.562 +743966,94.455,65.102 +743967,95.815,63.623 +743968,97.282,62.126 +743969,91.813,66.567 +743970,93.12,65.12 +743971,94.525,63.654 +743972,96.04,62.17 +743973,90.437,66.571 +743974,91.786,65.137 +743975,93.235,63.685 +743976,94.798,62.214 +743977,89.061,66.573 +743978,90.452,65.154 +743979,91.945,63.716 +743980,93.554,62.26 +743981,87.686,66.575 +743982,89.118,65.17 +743983,90.655,63.747 +743984,92.309,62.307 +743985,86.313,66.576 +743986,87.785,65.186 +743987,89.364,63.779 +743988,91.063,62.355 +743989,84.94,66.575 +743990,86.452,65.202 +743991,88.072,63.811 +743992,89.815,62.404 +743993,83.569,66.573 +743994,85.12,65.217 +743995,86.78,63.844 +743996,88.566,62.454 +743997,82.199,66.57 +743998,83.788,65.232 +743999,85.488,63.877 +744000,87.315,62.506 +744001,80.83,66.566 +744002,82.456,65.246 +744003,84.195,63.91 +744004,86.064,62.558 +744005,79.463,66.562 +744006,81.125,65.261 +744007,82.902,63.944 +744008,84.81,62.611 +744009,78.096,66.555 +744010,79.794,65.274 +744011,81.608,63.978 +744012,83.555,62.666 +744013,76.731,66.548 +744014,78.464,65.288 +744015,80.314,64.012 +744016,82.299,62.722 +744017,75.368,66.54 +744018,77.134,65.301 +744019,79.019,64.047 +744020,81.041,62.778 +744021,74.005,66.531 +744022,75.804,65.314 +744023,77.723,64.082 +744024,79.782,62.836 +744025,72.644,66.521 +744026,74.475,65.326 +744027,76.428,64.117 +744028,78.52,62.894 +744029,71.285,66.51 +744030,73.146,65.338 +744031,75.131,64.152 +744032,77.258,62.954 +744033,69.926,66.498 +744034,71.818,65.35 +744035,73.834,64.188 +744036,75.993,63.014 +744037,68.57,66.485 +744038,70.491,65.361 +744039,72.537,64.224 +744040,74.727,63.075 +744041,67.214,66.472 +744042,69.164,65.372 +744043,71.239,64.261 +744044,73.459,63.138 +744045,65.86,66.457 +744046,67.837,65.383 +744047,69.94,64.298 +744048,72.189,63.201 +744049,64.508,66.441 +744050,66.511,65.394 +744051,68.641,64.335 +744052,70.918,63.265 +744053,63.157,66.425 +744054,65.185,65.404 +744055,67.341,64.372 +744056,69.645,63.329 +744057,61.808,66.408 +744058,63.86,65.414 +744059,66.041,64.409 +744060,68.37,63.395 +744061,60.46,66.39 +744062,62.535,65.423 +744063,64.74,64.447 +744064,67.093,63.461 +744065,59.114,66.371 +744066,61.211,65.433 +744067,63.438,64.485 +744068,65.814,63.528 +744069,57.769,66.352 +744070,59.888,65.442 +744071,62.136,64.523 +744072,64.534,63.596 +744073,56.426,66.331 +744074,58.565,65.451 +744075,60.833,64.562 +744076,63.251,63.664 +744077,55.084,66.31 +744078,57.242,65.459 +744079,59.53,64.6 +744080,61.967,63.734 +744081,53.744,66.289 +744082,55.921,65.468 +744083,58.226,64.639 +744084,60.681,63.803 +744085,52.406,66.266 +744086,54.599,65.476 +744087,56.921,64.678 +744088,59.392,63.874 +744089,51.069,66.243 +744090,53.278,65.484 +744091,55.616,64.718 +744092,58.102,63.945 +744093,49.734,66.22 +744094,51.958,65.492 +744095,54.31,64.757 +744096,56.81,64.016 +744097,48.401,66.196 +744098,50.639,65.499 +744099,53.003,64.797 +744100,55.516,64.088 +744101,47.069,66.171 +744102,49.32,65.507 +744103,51.696,64.837 +744104,54.22,64.161 +744105,45.739,66.146 +744106,48.001,65.514 +744107,50.388,64.877 +744108,52.922,64.234 +744109,44.411,66.12 +744110,46.683,65.521 +744111,49.08,64.917 +744112,51.622,64.308 +744113,43.084,66.094 +744114,45.366,65.528 +744115,47.771,64.957 +744116,50.32,64.382 +744117,41.759,66.067 +744118,44.049,65.534 +744119,46.461,64.997 +744120,49.017,64.456 +744121,40.436,66.04 +744122,42.733,65.541 +744123,45.151,65.038 +744124,47.711,64.531 +744125,39.115,66.012 +744126,41.417,65.547 +744127,43.84,65.078 +744128,46.403,64.606 +744129,37.795,65.984 +744130,40.102,65.553 +744131,42.528,65.119 +744132,45.093,64.682 +744133,36.477,65.956 +744134,38.788,65.559 +744135,41.216,65.16 +744136,43.781,64.757 +744137,35.161,65.927 +744138,37.474,65.565 +744139,39.903,65.201 +744140,42.467,64.833 +744141,33.847,65.898 +744142,36.16,65.571 +744143,38.589,65.242 +744144,41.152,64.91 +744145,32.534,65.869 +744146,34.848,65.577 +744147,37.275,65.283 +744148,39.834,64.986 +744149,31.223,65.84 +744150,33.536,65.583 +744151,35.96,65.324 +744152,38.514,65.063 +744153,29.914,65.81 +744154,32.224,65.588 +744155,34.644,65.365 +744156,37.193,65.14 +744157,28.606,65.78 +744158,30.913,65.594 +744159,33.328,65.406 +744160,35.869,65.216 +744161,27.3,65.75 +744162,29.603,65.6 +744163,32.011,65.447 +744164,34.543,65.293 +744165,25.996,65.72 +744166,28.293,65.605 +744167,30.694,65.489 +744168,33.216,65.371 +744169,24.694,65.69 +744170,26.984,65.611 +744171,29.376,65.53 +744172,31.887,65.448 +744173,23.394,65.66 +744174,25.675,65.616 +744175,28.057,65.571 +744176,30.555,65.525 +744177,22.095,65.63 +744178,24.367,65.621 +744179,26.738,65.612 +744180,29.222,65.602 +744181,20.798,65.599 +744182,23.06,65.627 +744183,25.418,65.654 +744184,27.887,65.679 +744185,19.502,65.569 +744186,21.753,65.632 +744187,24.097,65.695 +744188,26.55,65.756 +744189,18.209,65.539 +744190,20.447,65.638 +744191,22.776,65.736 +744192,25.212,65.833 +744193,16.917,65.509 +744194,19.141,65.643 +744195,21.454,65.777 +744196,23.871,65.909 +744197,15.627,65.479 +744198,17.836,65.648 +744199,20.132,65.818 +744200,22.529,65.986 +744201,14.338,65.449 +744202,16.531,65.654 +744203,18.809,65.859 +744204,21.185,66.062 +744205,13.052,65.419 +744206,15.227,65.66 +744207,17.485,65.9 +744208,19.839,66.138 +744209,11.766,65.389 +744210,13.923,65.665 +744211,16.161,65.94 +744212,18.491,66.214 +744213,10.483,65.36 +744214,12.62,65.671 +744215,14.836,65.981 +744216,17.142,66.29 +744217,9.2011,65.331 +744218,11.318,65.677 +744219,13.511,66.022 +744220,15.791,66.365 +744221,7.9209,65.302 +744222,10.016,65.683 +744223,12.185,66.062 +744224,14.438,66.44 +744225,6.6424,65.274 +744226,8.7146,65.688 +744227,10.858,66.102 +744228,13.084,66.514 +744229,5.3654,65.245 +744230,7.4137,65.695 +744231,9.5311,66.143 +744232,11.728,66.588 +744233,4.0901,65.218 +744234,6.1134,65.701 +744235,8.2035,66.183 +744236,10.371,66.662 +744237,2.8163,65.19 +744238,4.8135,65.707 +744239,6.8753,66.223 +744240,9.0116,66.735 +744241,1.5441,65.163 +744242,3.5141,65.713 +744243,5.5466,66.262 +744244,7.651,66.808 +744245,0.27341,65.137 +744246,2.2153,65.72 +744247,4.2174,66.302 +744248,6.2889,66.881 +744249,359,65.11 +744250,0.91691,65.727 +744251,2.8877,66.341 +744252,4.9253,66.952 +744253,357.74,65.085 +744254,359.62,65.734 +744255,1.5574,66.38 +744256,3.5602,67.024 +744257,356.47,65.06 +744258,358.32,65.741 +744259,0.22668,66.419 +744260,2.1937,67.094 +744261,355.21,65.035 +744262,357.02,65.748 +744263,358.9,66.458 +744264,0.82588,67.164 +744265,353.94,65.011 +744266,355.73,65.755 +744267,357.56,66.497 +744268,359.46,67.234 +744269,352.68,64.988 +744270,354.43,65.763 +744271,356.23,66.535 +744272,358.09,67.303 +744273,351.42,64.965 +744274,353.14,65.771 +744275,354.9,66.573 +744276,356.71,67.371 +744277,350.16,64.943 +744278,351.84,65.779 +744279,353.57,66.611 +744280,355.34,67.438 +744281,348.9,64.922 +744282,350.55,65.787 +744283,352.23,66.649 +744284,353.97,67.505 +744285,347.65,64.901 +744286,349.25,65.796 +744287,350.9,66.686 +744288,352.59,67.571 +744289,346.39,64.881 +744290,347.96,65.804 +744291,349.56,66.723 +744292,351.21,67.636 +744293,345.14,64.862 +744294,346.66,65.813 +744295,348.23,66.76 +744296,349.84,67.701 +744297,343.89,64.843 +744298,345.37,65.823 +744299,346.89,66.797 +744300,348.46,67.764 +744301,342.63,64.825 +744302,344.08,65.832 +744303,345.56,66.833 +744304,347.08,67.827 +744305,341.38,64.809 +744306,342.79,65.842 +744307,344.22,66.869 +744308,345.7,67.889 +744309,340.13,64.792 +744310,341.49,65.852 +744311,342.89,66.905 +744312,344.32,67.95 +744313,338.89,64.777 +744314,340.2,65.862 +744315,341.55,66.941 +744316,342.93,68.011 +744317,337.64,64.763 +744318,338.91,65.873 +744319,340.21,66.976 +744320,341.55,68.07 +744321,336.39,64.75 +744322,337.62,65.884 +744323,338.88,67.011 +744324,340.16,68.128 +744325,335.15,64.737 +744326,336.33,65.895 +744327,337.54,67.045 +744328,338.78,68.186 +744329,333.9,64.726 +744330,335.04,65.906 +744331,336.2,67.079 +744332,337.39,68.242 +744333,332.66,64.715 +744334,333.75,65.918 +744335,334.86,67.113 +744336,336.01,68.298 +744337,331.42,64.705 +744338,332.46,65.93 +744339,333.52,67.147 +744340,334.62,68.353 +744341,330.18,64.697 +744342,331.17,65.943 +744343,332.18,67.18 +744344,333.23,68.406 +744345,328.94,64.689 +744346,329.88,65.956 +744347,330.85,67.213 +744348,331.84,68.459 +744349,327.7,64.683 +744350,328.59,65.969 +744351,329.51,67.245 +744352,330.45,68.51 +744353,326.46,64.677 +744354,327.3,65.982 +744355,328.17,67.277 +744356,329.06,68.561 +744357,325.22,64.673 +744358,326.01,65.996 +744359,326.83,67.309 +744360,327.67,68.61 +744361,323.98,64.669 +744362,324.72,66.01 +744363,325.49,67.34 +744364,326.28,68.658 +744365,322.75,64.667 +744366,323.43,66.024 +744367,324.15,67.371 +744368,324.89,68.706 +744369,321.51,64.666 +744370,322.15,66.039 +744371,322.81,67.402 +744372,323.49,68.752 +744373,320.27,64.666 +744374,320.86,66.055 +744375,321.47,67.432 +744376,322.1,68.797 +744377,319.04,64.667 +744378,319.57,66.07 +744379,320.13,67.462 +744380,320.71,68.841 +744381,317.81,64.669 +744382,318.28,66.086 +744383,318.78,67.491 +744384,319.32,68.883 +744385,316.57,64.672 +744386,316.99,66.102 +744387,317.44,67.521 +744388,317.92,68.925 +744389,315.34,64.677 +744390,315.71,66.119 +744391,316.1,67.549 +744392,316.53,68.965 +744393,314.1,64.682 +744394,314.42,66.136 +744395,314.76,67.578 +744396,315.13,69.005 +744397,312.87,64.689 +744398,313.13,66.154 +744399,313.42,67.605 +744400,313.74,69.043 +744401,311.64,64.697 +744402,311.84,66.172 +744403,312.08,67.633 +744404,312.35,69.08 +744405,310.41,64.706 +744406,310.56,66.19 +744407,310.74,67.66 +744408,310.95,69.116 +744409,309.17,64.717 +744410,309.27,66.208 +744411,309.4,67.687 +744412,309.56,69.15 +744413,307.94,64.728 +744414,307.98,66.227 +744415,308.06,67.713 +744416,308.16,69.184 +744417,306.71,64.741 +744418,306.69,66.247 +744419,306.71,67.739 +744420,306.77,69.216 +744421,305.48,64.755 +744422,305.41,66.267 +744423,305.37,67.764 +744424,305.38,69.247 +744425,304.24,64.771 +744426,304.12,66.287 +744427,304.03,67.789 +744428,303.98,69.277 +744429,303.01,64.787 +744430,302.83,66.308 +744431,302.69,67.814 +744432,302.59,69.305 +744433,301.78,64.805 +744434,301.54,66.329 +744435,301.35,67.838 +744436,301.19,69.333 +744437,300.55,64.824 +744438,300.26,66.35 +744439,300.01,67.862 +744440,299.8,69.359 +744441,299.31,64.844 +744442,298.97,66.372 +744443,298.67,67.885 +744444,298.41,69.384 +744445,298.08,64.866 +744446,297.68,66.394 +744447,297.33,67.908 +744448,297.02,69.407 +744449,296.85,64.889 +744450,296.39,66.417 +744451,295.98,67.931 +744452,295.62,69.43 +744453,295.62,64.912 +744454,295.1,66.44 +744455,294.64,67.953 +744456,294.23,69.451 +744457,294.38,64.938 +744458,293.82,66.463 +744459,293.3,67.975 +744460,292.84,69.471 +744461,293.15,64.964 +744462,292.53,66.487 +744463,291.96,67.996 +744464,291.45,69.49 +744465,291.91,64.992 +744466,291.24,66.511 +744467,290.62,68.017 +744468,290.06,69.508 +744469,290.68,65.021 +744470,289.95,66.536 +744471,289.28,68.037 +744472,288.67,69.524 +744473,289.44,65.051 +744474,288.66,66.561 +744475,287.94,68.057 +744476,287.28,69.539 +744477,288.21,65.082 +744478,287.37,66.586 +744479,286.6,68.077 +744480,285.89,69.554 +744481,286.97,65.115 +744482,286.08,66.612 +744483,285.26,68.096 +744484,284.5,69.566 +744485,285.73,65.149 +744486,284.79,66.638 +744487,283.92,68.115 +744488,283.11,69.578 +744489,284.49,65.184 +744490,283.5,66.665 +744491,282.58,68.134 +744492,281.73,69.589 +744493,283.26,65.22 +744494,282.21,66.692 +744495,281.24,68.152 +744496,280.34,69.598 +744497,282.02,65.257 +744498,280.92,66.719 +744499,279.9,68.169 +744500,278.95,69.606 +744501,280.78,65.296 +744502,279.63,66.747 +744503,278.57,68.187 +744504,277.57,69.613 +744505,279.53,65.335 +744506,278.34,66.775 +744507,277.23,68.203 +744508,276.19,69.619 +744509,278.29,65.376 +744510,277.05,66.804 +744511,275.89,68.22 +744512,274.8,69.623 +744513,277.05,65.418 +744514,275.76,66.833 +744515,274.55,68.236 +744516,273.42,69.627 +744517,275.8,65.461 +744518,274.47,66.862 +744519,273.21,68.252 +744520,272.04,69.629 +744521,274.56,65.506 +744522,273.17,66.891 +744523,271.88,68.267 +744524,270.66,69.631 +744525,273.31,65.551 +744526,271.88,66.921 +744527,270.54,68.282 +744528,269.28,69.631 +744529,272.07,65.597 +744530,270.59,66.952 +744531,269.2,68.296 +744532,267.9,69.63 +744533,270.82,65.645 +744534,269.3,66.982 +744535,267.87,68.311 +744536,266.52,69.628 +744537,269.57,65.694 +744538,268,67.014 +744539,266.53,68.325 +744540,265.15,69.625 +744541,268.32,65.743 +744542,266.71,67.045 +744543,265.2,68.338 +744544,263.77,69.621 +744545,267.07,65.794 +744546,265.41,67.077 +744547,263.86,68.351 +744548,262.4,69.616 +744549,265.81,65.846 +744550,264.12,67.109 +744551,262.53,68.364 +744552,261.03,69.61 +744553,264.56,65.899 +744554,262.82,67.141 +744555,261.19,68.376 +744556,259.65,69.603 +744557,263.3,65.952 +744558,261.53,67.174 +744559,259.86,68.388 +744560,258.28,69.595 +744561,262.04,66.007 +744562,260.23,67.207 +744563,258.52,68.4 +744564,256.91,69.586 +744565,260.79,66.063 +744566,258.93,67.24 +744567,257.19,68.412 +744568,255.55,69.576 +744569,259.53,66.119 +744570,257.64,67.274 +744571,255.86,68.423 +744572,254.18,69.565 +744573,258.26,66.177 +744574,256.34,67.308 +744575,254.53,68.434 +744576,252.81,69.553 +744577,257,66.235 +744578,255.04,67.342 +744579,253.19,68.444 +744580,251.45,69.54 +744581,255.74,66.294 +744582,253.74,67.377 +744583,251.86,68.454 +744584,250.09,69.526 +744585,254.47,66.355 +744586,252.44,67.411 +744587,250.53,68.464 +744588,248.73,69.512 +744589,253.2,66.416 +744590,251.14,67.446 +744591,249.2,68.474 +744592,247.37,69.496 +744593,251.93,66.477 +744594,249.84,67.482 +744595,247.87,68.483 +744596,246.01,69.48 +744597,250.66,66.54 +744598,248.54,67.517 +744599,246.54,68.492 +744600,244.65,69.463 +744601,249.39,66.603 +744602,247.24,67.553 +744603,245.21,68.501 +744604,243.29,69.445 +744605,248.11,66.667 +744606,245.94,67.589 +744607,243.88,68.51 +744608,241.94,69.427 +744609,246.84,66.732 +744610,244.63,67.626 +744611,242.56,68.518 +744612,240.59,69.407 +744613,245.56,66.798 +744614,243.33,67.662 +744615,241.23,68.526 +744616,239.23,69.387 +744617,244.28,66.864 +744618,242.03,67.699 +744619,239.9,68.534 +744620,237.88,69.366 +744621,243,66.931 +744622,240.72,67.736 +744623,238.57,68.541 +744624,236.54,69.345 +744625,241.72,66.998 +744626,239.42,67.773 +744627,237.25,68.549 +744628,235.19,69.323 +744629,240.43,67.066 +744630,238.11,67.811 +744631,235.92,68.556 +744632,233.84,69.3 +744633,239.14,67.135 +744634,236.81,67.848 +744635,234.6,68.563 +744636,232.5,69.277 +744637,237.86,67.204 +744638,235.5,67.886 +744639,233.27,68.569 +744640,231.16,69.253 +744641,236.57,67.273 +744642,234.19,67.924 +744643,231.95,68.576 +744644,229.82,69.229 +744645,235.27,67.343 +744646,232.89,67.962 +744647,230.63,68.582 +744648,228.48,69.204 +744649,233.98,67.414 +744650,231.58,68 +744651,229.3,68.589 +744652,227.14,69.178 +744653,232.68,67.485 +744654,230.27,68.039 +744655,227.98,68.595 +744656,225.81,69.152 +744657,231.39,67.556 +744658,228.96,68.077 +744659,226.66,68.601 +744660,224.47,69.126 +744661,230.09,67.628 +744662,227.65,68.116 +744663,225.34,68.606 +744664,223.14,69.099 +744665,228.78,67.701 +744666,226.34,68.155 +744667,224.02,68.612 +744668,221.81,69.072 +744669,227.48,67.773 +744670,225.03,68.193 +744671,222.7,68.617 +744672,220.48,69.044 +744673,226.18,67.846 +744674,223.72,68.232 +744675,221.38,68.623 +744676,219.15,69.016 +744677,224.87,67.919 +744678,222.4,68.271 +744679,220.06,68.628 +744680,217.83,68.988 +744681,223.56,67.992 +744682,221.09,68.311 +744683,218.74,68.633 +744684,216.5,68.959 +744685,222.25,68.066 +744686,219.78,68.35 +744687,217.42,68.638 +744688,215.18,68.93 +744689,220.94,68.14 +744690,218.46,68.389 +744691,216.11,68.643 +744692,213.86,68.901 +744693,219.62,68.214 +744694,217.15,68.429 +744695,214.79,68.648 +744696,212.54,68.872 +744697,218.3,68.288 +744698,215.83,68.468 +744699,213.48,68.653 +744700,211.22,68.842 +744701,216.99,68.362 +744702,214.51,68.507 +744703,212.16,68.658 +744704,209.91,68.813 +744705,215.66,68.436 +744706,213.2,68.547 +744707,210.84,68.663 +744708,208.59,68.783 +744709,214.34,68.51 +744710,211.88,68.586 +744711,209.53,68.667 +744712,207.28,68.753 +744713,213.02,68.585 +744714,210.56,68.626 +744715,208.22,68.672 +744716,205.97,68.723 +744717,211.69,68.659 +744718,209.24,68.665 +744719,206.9,68.677 +744720,204.66,68.693 +744721,210.36,68.733 +744722,207.92,68.705 +744723,205.59,68.681 +744724,203.36,68.663 +744725,209.03,68.807 +744726,206.6,68.744 +744727,204.28,68.686 +744728,202.05,68.633 +744729,207.7,68.882 +744730,205.28,68.784 +744731,202.97,68.691 +744732,200.75,68.603 +744733,206.37,68.956 +744734,203.96,68.823 +744735,201.66,68.695 +744736,199.45,68.573 +744737,205.03,69.029 +744738,202.64,68.862 +744739,200.35,68.7 +744740,198.15,68.543 +744741,203.7,69.103 +744742,201.32,68.902 +744743,199.04,68.705 +744744,196.85,68.513 +744745,202.36,69.177 +744746,199.99,68.941 +744747,197.73,68.71 +744748,195.55,68.484 +744749,201.02,69.25 +744750,198.67,68.98 +744751,196.42,68.715 +744752,194.25,68.454 +744753,199.67,69.323 +744754,197.34,69.019 +744755,195.11,68.72 +744756,192.96,68.425 +744757,198.33,69.396 +744758,196.02,69.058 +744759,193.8,68.725 +744760,191.67,68.396 +744761,196.98,69.468 +744762,194.69,69.097 +744763,192.5,68.73 +744764,190.38,68.367 +744765,195.63,69.54 +744766,193.37,69.136 +744767,191.19,68.735 +744768,189.09,68.339 +744769,194.29,69.612 +744770,192.04,69.174 +744771,189.88,68.74 +744772,187.8,68.311 +744773,192.93,69.683 +744774,190.71,69.213 +744775,188.58,68.746 +744776,186.52,68.283 +744777,191.58,69.754 +744778,189.39,69.251 +744779,187.27,68.751 +744780,185.23,68.256 +744781,190.23,69.825 +744782,188.06,69.289 +744783,185.97,68.757 +744784,183.95,68.228 +744785,188.87,69.895 +744786,186.73,69.327 +744787,184.67,68.763 +744788,182.67,68.202 +744789,187.51,69.964 +744790,185.4,69.365 +744791,183.36,68.769 +744792,181.39,68.176 +744793,186.15,70.033 +744794,184.07,69.403 +744795,182.06,68.775 +744796,180.11,68.15 +744797,184.79,70.102 +744798,182.74,69.441 +744799,180.76,68.781 +744800,178.84,68.125 +744801,183.43,70.17 +744802,181.41,69.478 +744803,179.46,68.788 +744804,177.56,68.1 +744805,182.07,70.237 +744806,180.08,69.515 +744807,178.15,68.794 +744808,176.29,68.076 +744809,180.7,70.304 +744810,178.75,69.552 +744811,176.85,68.801 +744812,175.02,68.053 +744813,179.34,70.37 +744814,177.41,69.589 +744815,175.55,68.808 +744816,173.75,68.03 +744817,177.97,70.435 +744818,176.08,69.625 +744819,174.25,68.816 +744820,172.48,68.007 +744821,176.6,70.5 +744822,174.75,69.662 +744823,172.95,68.823 +744824,171.21,67.986 +744825,175.23,70.564 +744826,173.41,69.698 +744827,171.65,68.831 +744828,169.95,67.965 +744829,173.86,70.627 +744830,172.08,69.733 +744831,170.36,68.839 +744832,168.68,67.945 +744833,172.49,70.69 +744834,170.74,69.769 +744835,169.06,68.847 +744836,167.42,67.925 +744837,171.11,70.752 +744838,169.41,69.804 +744839,167.76,68.855 +744840,166.16,67.906 +744841,169.74,70.813 +744842,168.07,69.839 +744843,166.46,68.864 +744844,164.9,67.888 +744845,168.36,70.873 +744846,166.74,69.874 +744847,165.16,68.873 +744848,163.64,67.871 +744849,166.98,70.932 +744850,165.4,69.909 +744851,163.87,68.882 +744852,162.38,67.855 +744853,165.6,70.991 +744854,164.06,69.943 +744855,162.57,68.892 +744856,161.12,67.839 +744857,164.22,71.049 +744858,162.73,69.977 +744859,161.28,68.902 +744860,159.86,67.824 +744861,162.84,71.105 +744862,161.39,70.01 +744863,159.98,68.912 +744864,158.61,67.81 +744865,161.46,71.161 +744866,160.05,70.044 +744867,158.68,68.922 +744868,157.36,67.797 +744869,160.08,71.216 +744870,158.71,70.077 +744871,157.39,68.933 +744872,156.1,67.785 +744873,158.69,71.27 +744874,157.37,70.109 +744875,156.1,68.944 +744876,154.85,67.774 +744877,157.31,71.324 +744878,156.04,70.142 +744879,154.8,68.955 +744880,153.6,67.764 +744881,155.92,71.376 +744882,154.7,70.174 +744883,153.51,68.966 +744884,152.35,67.755 +744885,154.54,71.427 +744886,153.36,70.206 +744887,152.21,68.978 +744888,151.1,67.747 +744889,153.15,71.477 +744890,152.02,70.237 +744891,150.92,68.991 +744892,149.85,67.739 +744893,151.76,71.526 +744894,150.68,70.268 +744895,149.63,69.003 +744896,148.61,67.733 +744897,150.37,71.574 +744898,149.34,70.299 +744899,148.33,69.016 +744900,147.36,67.728 +744901,148.99,71.621 +744902,148,70.329 +744903,147.04,69.029 +744904,146.11,67.724 +744905,147.6,71.667 +744906,146.66,70.359 +744907,145.75,69.043 +744908,144.87,67.721 +744909,146.21,71.712 +744910,145.32,70.389 +744911,144.46,69.057 +744912,143.63,67.719 +744913,144.81,71.756 +744914,143.97,70.418 +744915,143.16,69.071 +744916,142.38,67.718 +744917,143.42,71.799 +744918,142.63,70.447 +744919,141.87,69.086 +744920,141.14,67.718 +744921,142.03,71.841 +744922,141.29,70.475 +744923,140.58,69.101 +744924,139.9,67.72 +744925,140.64,71.881 +744926,139.95,70.503 +744927,139.29,69.117 +744928,138.66,67.722 +744929,139.25,71.921 +744930,138.61,70.531 +744931,138,69.132 +744932,137.42,67.726 +744933,137.85,71.959 +744934,137.27,70.559 +744935,136.71,69.149 +744936,136.18,67.73 +744937,136.46,71.996 +744938,135.92,70.586 +744939,135.41,69.165 +744940,134.94,67.736 +744941,135.07,72.033 +744942,134.58,70.612 +744943,134.12,69.182 +744944,133.7,67.743 +744945,133.67,72.067 +744946,133.24,70.638 +744947,132.83,69.199 +744948,132.46,67.752 +744949,132.28,72.101 +744950,131.9,70.664 +744951,131.54,69.217 +744952,131.22,67.761 +744953,130.88,72.134 +744954,130.55,70.69 +744955,130.25,69.235 +744956,129.98,67.772 +744957,129.49,72.165 +744958,129.21,70.715 +744959,128.96,69.254 +744960,128.74,67.783 +744961,128.1,72.196 +744962,127.87,70.739 +744963,127.67,69.273 +744964,127.5,67.796 +744965,126.7,72.225 +744966,126.52,70.764 +744967,126.38,69.292 +744968,126.27,67.811 +744969,125.31,72.253 +744970,125.18,70.788 +744971,125.09,69.312 +744972,125.03,67.826 +744973,123.91,72.28 +744974,123.84,70.811 +744975,123.8,69.332 +744976,123.79,67.843 +744977,122.52,72.305 +744978,122.5,70.834 +744979,122.51,69.352 +744980,122.55,67.861 +744981,121.12,72.33 +744982,121.15,70.857 +744983,121.22,69.373 +744984,121.32,67.88 +744985,119.73,72.353 +744986,119.81,70.879 +744987,119.93,69.394 +744988,120.08,67.9 +744989,118.34,72.375 +744990,118.47,70.901 +744991,118.63,69.416 +744992,118.84,67.922 +744993,116.94,72.396 +744994,117.12,70.922 +744995,117.34,69.438 +744996,117.6,67.944 +744997,115.55,72.415 +744998,115.78,70.943 +744999,116.05,69.461 +745000,116.36,67.968 +745001,114.16,72.434 +745002,114.44,70.964 +745003,114.76,69.483 +745004,115.13,67.994 +745005,112.76,72.451 +745006,113.1,70.984 +745007,113.47,69.507 +745008,113.89,68.02 +745009,111.37,72.467 +745010,111.75,71.004 +745011,112.18,69.53 +745012,112.65,68.048 +745013,109.98,72.482 +745014,110.41,71.024 +745015,110.89,69.555 +745016,111.41,68.076 +745017,108.59,72.496 +745018,109.07,71.043 +745019,109.6,69.579 +745020,110.17,68.106 +745021,107.2,72.509 +745022,107.73,71.061 +745023,108.31,69.604 +745024,108.93,68.138 +745025,105.8,72.52 +745026,106.39,71.08 +745027,107.01,69.629 +745028,107.69,68.17 +745029,104.41,72.53 +745030,105.04,71.097 +745031,105.72,69.655 +745032,106.45,68.204 +745033,103.02,72.54 +745034,103.7,71.115 +745035,104.43,69.681 +745036,105.21,68.239 +745037,101.64,72.548 +745038,102.36,71.132 +745039,103.14,69.707 +745040,103.97,68.275 +745041,100.25,72.554 +745042,101.02,71.149 +745043,101.84,69.734 +745044,102.73,68.312 +745045,98.86,72.56 +745046,99.679,71.165 +745047,100.55,69.761 +745048,101.48,68.35 +745049,97.473,72.565 +745050,98.338,71.181 +745051,99.259,69.789 +745052,100.24,68.39 +745053,96.087,72.568 +745054,96.997,71.197 +745055,97.965,69.817 +745056,98.995,68.43 +745057,94.701,72.571 +745058,95.657,71.212 +745059,96.672,69.845 +745060,97.75,68.472 +745061,93.316,72.572 +745062,94.317,71.227 +745063,95.378,69.874 +745064,96.504,68.515 +745065,91.933,72.572 +745066,92.977,71.241 +745067,94.083,69.903 +745068,95.257,68.559 +745069,90.549,72.572 +745070,91.638,71.255 +745071,92.789,69.932 +745072,94.009,68.604 +745073,89.167,72.57 +745074,90.298,71.269 +745075,91.494,69.962 +745076,92.76,68.65 +745077,87.786,72.567 +745078,88.959,71.283 +745079,90.199,69.992 +745080,91.511,68.697 +745081,86.406,72.563 +745082,87.621,71.296 +745083,88.903,70.023 +745084,90.26,68.745 +745085,85.027,72.558 +745086,86.282,71.308 +745087,87.608,70.053 +745088,89.008,68.795 +745089,83.648,72.552 +745090,84.944,71.321 +745091,86.311,70.085 +745092,87.756,68.845 +745093,82.271,72.545 +745094,83.607,71.333 +745095,85.015,70.116 +745096,86.502,68.896 +745097,80.895,72.537 +745098,82.269,71.345 +745099,83.718,70.148 +745100,85.247,68.949 +745101,79.52,72.528 +745102,80.932,71.356 +745103,82.42,70.18 +745104,83.991,69.002 +745105,78.146,72.518 +745106,79.596,71.367 +745107,81.123,70.212 +745108,82.733,69.056 +745109,76.773,72.507 +745110,78.26,71.378 +745111,79.824,70.245 +745112,81.475,69.111 +745113,75.401,72.496 +745114,76.924,71.388 +745115,78.526,70.278 +745116,80.215,69.167 +745117,74.031,72.483 +745118,75.588,71.398 +745119,77.227,70.311 +745120,78.954,69.224 +745121,72.662,72.47 +745122,74.253,71.408 +745123,75.927,70.345 +745124,77.691,69.282 +745125,71.294,72.456 +745126,72.919,71.418 +745127,74.627,70.379 +745128,76.427,69.341 +745129,69.927,72.44 +745130,71.585,71.427 +745131,73.327,70.413 +745132,75.162,69.401 +745133,68.561,72.424 +745134,70.251,71.436 +745135,72.026,70.448 +745136,73.895,69.461 +745137,67.197,72.408 +745138,68.918,71.445 +745139,70.724,70.482 +745140,72.627,69.522 +745141,65.835,72.39 +745142,67.585,71.453 +745143,69.422,70.517 +745144,71.358,69.584 +745145,64.473,72.372 +745146,66.252,71.462 +745147,68.12,70.553 +745148,70.087,69.647 +745149,63.113,72.353 +745150,64.92,71.47 +745151,66.817,70.588 +745152,68.814,69.71 +745153,61.754,72.333 +745154,63.589,71.478 +745155,65.514,70.624 +745156,67.54,69.774 +745157,60.397,72.313 +745158,62.258,71.485 +745159,64.21,70.66 +745160,66.264,69.839 +745161,59.041,72.292 +745162,60.927,71.492 +745163,62.905,70.696 +745164,64.987,69.904 +745165,57.687,72.27 +745166,59.597,71.5 +745167,61.6,70.732 +745168,63.708,69.971 +745169,56.334,72.248 +745170,58.268,71.506 +745171,60.295,70.769 +745172,62.427,70.037 +745173,54.982,72.225 +745174,56.939,71.513 +745175,58.989,70.806 +745176,61.145,70.104 +745177,53.632,72.201 +745178,55.61,71.52 +745179,57.682,70.843 +745180,59.861,70.172 +745181,52.284,72.177 +745182,54.282,71.526 +745183,56.375,70.88 +745184,58.575,70.241 +745185,50.937,72.152 +745186,52.954,71.532 +745187,55.067,70.917 +745188,57.288,70.309 +745189,49.591,72.127 +745190,51.627,71.538 +745191,53.759,70.955 +745192,55.999,70.379 +745193,48.247,72.102 +745194,50.301,71.544 +745195,52.45,70.992 +745196,54.708,70.449 +745197,46.905,72.076 +745198,48.975,71.55 +745199,51.141,71.03 +745200,53.416,70.519 +745201,45.564,72.049 +745202,47.649,71.555 +745203,49.831,71.068 +745204,52.121,70.589 +745205,44.225,72.022 +745206,46.325,71.561 +745207,48.52,71.106 +745208,50.825,70.66 +745209,42.888,71.995 +745210,45,71.566 +745211,47.209,71.144 +745212,49.527,70.732 +745213,41.552,71.967 +745214,43.676,71.571 +745215,45.897,71.182 +745216,48.228,70.803 +745217,40.217,71.939 +745218,42.353,71.576 +745219,44.585,71.221 +745220,46.926,70.875 +745221,38.885,71.911 +745222,41.03,71.581 +745223,43.272,71.259 +745224,45.623,70.948 +745225,37.554,71.883 +745226,39.708,71.586 +745227,41.958,71.298 +745228,44.318,71.02 +745229,36.224,71.854 +745230,38.386,71.591 +745231,40.644,71.336 +745232,43.011,71.093 +745233,34.896,71.825 +745234,37.065,71.595 +745235,39.329,71.375 +745236,41.702,71.165 +745237,33.57,71.796 +745238,35.745,71.6 +745239,38.014,71.414 +745240,40.392,71.238 +745241,32.246,71.766 +745242,34.425,71.605 +745243,36.698,71.453 +745244,39.079,71.312 +745245,30.923,71.737 +745246,33.105,71.609 +745247,35.381,71.491 +745248,37.765,71.385 +745249,29.601,71.707 +745250,31.786,71.614 +745251,34.064,71.53 +745252,36.449,71.458 +745253,28.282,71.677 +745254,30.468,71.618 +745255,32.746,71.569 +745256,35.131,71.531 +745257,26.964,71.648 +745258,29.15,71.623 +745259,31.428,71.608 +745260,33.812,71.605 +745261,25.648,71.618 +745262,27.833,71.627 +745263,30.109,71.647 +745264,32.49,71.678 +745265,24.333,71.588 +745266,26.516,71.632 +745267,28.789,71.686 +745268,31.167,71.751 +745269,23.02,71.558 +745270,25.2,71.636 +745271,27.469,71.725 +745272,29.841,71.824 +745273,21.709,71.529 +745274,23.885,71.641 +745275,26.148,71.763 +745276,28.514,71.898 +745277,20.399,71.499 +745278,22.57,71.645 +745279,24.827,71.802 +745280,27.186,71.971 +745281,19.091,71.469 +745282,21.255,71.65 +745283,23.505,71.841 +745284,25.855,72.043 +745285,17.785,71.44 +745286,19.941,71.655 +745287,22.182,71.88 +745288,24.523,72.116 +745289,16.48,71.411 +745290,18.628,71.659 +745291,20.859,71.918 +745292,23.188,72.188 +745293,15.177,71.382 +745294,17.315,71.664 +745295,19.536,71.957 +745296,21.852,72.261 +745297,13.876,71.353 +745298,16.003,71.669 +745299,18.211,71.995 +745300,20.515,72.333 +745301,12.576,71.324 +745302,14.691,71.674 +745303,16.886,72.034 +745304,19.175,72.404 +745305,11.278,71.296 +745306,13.38,71.679 +745307,15.561,72.072 +745308,17.834,72.476 +745309,9.9814,71.268 +745310,12.069,71.684 +745311,14.235,72.11 +745312,16.491,72.547 +745313,8.6864,71.24 +745314,10.759,71.689 +745315,12.908,72.148 +745316,15.147,72.617 +745317,7.393,71.213 +745318,9.4492,71.695 +745319,11.581,72.186 +745320,13.8,72.688 +745321,6.1011,71.186 +745322,8.1401,71.7 +745323,10.253,72.224 +745324,12.452,72.757 +745325,4.8108,71.16 +745326,6.8315,71.706 +745327,8.9249,72.262 +745328,11.103,72.827 +745329,3.5221,71.133 +745330,5.5234,71.712 +745331,7.596,72.299 +745332,9.7517,72.896 +745333,2.2349,71.108 +745334,4.2158,71.718 +745335,6.2666,72.336 +745336,8.3988,72.964 +745337,0.94923,71.083 +745338,2.9087,71.724 +745339,4.9367,72.374 +745340,7.0444,73.032 +745341,359.67,71.058 +745342,1.6021,71.73 +745343,3.6062,72.411 +745344,5.6885,73.099 +745345,358.38,71.034 +745346,0.29593,71.737 +745347,2.2752,72.447 +745348,4.331,73.166 +745349,357.1,71.01 +745350,358.99,71.743 +745351,0.94374,72.484 +745352,2.972,73.232 +745353,355.82,70.987 +745354,357.69,71.75 +745355,359.61,72.52 +745356,1.6115,73.298 +745357,354.54,70.965 +745358,356.38,71.757 +745359,358.28,72.557 +745360,0.24949,73.363 +745361,353.27,70.943 +745362,355.08,71.765 +745363,356.95,72.593 +745364,358.89,73.427 +745365,351.99,70.922 +745366,353.77,71.772 +745367,355.61,72.628 +745368,357.52,73.491 +745369,350.72,70.902 +745370,352.47,71.78 +745371,354.28,72.664 +745372,356.15,73.554 +745373,349.44,70.882 +745374,351.17,71.788 +745375,352.94,72.699 +745376,354.79,73.616 +745377,348.17,70.863 +745378,349.86,71.796 +745379,351.61,72.734 +745380,353.42,73.678 +745381,346.9,70.845 +745382,348.56,71.805 +745383,350.27,72.769 +745384,352.05,73.738 +745385,345.63,70.828 +745386,347.26,71.813 +745387,348.94,72.804 +745388,350.68,73.798 +745389,344.37,70.811 +745390,345.96,71.822 +745391,347.6,72.838 +745392,349.3,73.857 +745393,343.1,70.795 +745394,344.66,71.832 +745395,346.27,72.872 +745396,347.93,73.916 +745397,341.83,70.781 +745398,343.36,71.841 +745399,344.93,72.906 +745400,346.55,73.973 +745401,340.57,70.766 +745402,342.06,71.851 +745403,343.59,72.939 +745404,345.18,74.03 +745405,339.31,70.753 +745406,340.76,71.861 +745407,342.25,72.972 +745408,343.8,74.085 +745409,338.05,70.741 +745410,339.46,71.872 +745411,340.92,73.005 +745412,342.42,74.14 +745413,336.79,70.73 +745414,338.16,71.883 +745415,339.58,73.038 +745416,341.04,74.194 +745417,335.53,70.719 +745418,336.86,71.894 +745419,338.24,73.07 +745420,339.66,74.247 +745421,334.27,70.71 +745422,335.56,71.905 +745423,336.9,73.102 +745424,338.28,74.299 +745425,333.01,70.701 +745426,334.26,71.917 +745427,335.56,73.134 +745428,336.9,74.35 +745429,331.75,70.694 +745430,332.97,71.929 +745431,334.22,73.165 +745432,335.51,74.4 +745433,330.5,70.687 +745434,331.67,71.941 +745435,332.88,73.196 +745436,334.13,74.449 +745437,329.24,70.681 +745438,330.37,71.954 +745439,331.54,73.226 +745440,332.75,74.497 +745441,327.99,70.677 +745442,329.07,71.967 +745443,330.2,73.257 +745444,331.36,74.544 +745445,326.74,70.674 +745446,327.78,71.981 +745447,328.86,73.287 +745448,329.97,74.591 +745449,325.48,70.671 +745450,326.48,71.994 +745451,327.51,73.316 +745452,328.58,74.636 +745453,324.23,70.67 +745454,325.19,72.009 +745455,326.17,73.345 +745456,327.2,74.679 +745457,322.98,70.67 +745458,323.89,72.023 +745459,324.83,73.374 +745460,325.81,74.722 +745461,321.73,70.671 +745462,322.59,72.038 +745463,323.49,73.403 +745464,324.42,74.764 +745465,320.48,70.673 +745466,321.3,72.053 +745467,322.15,73.431 +745468,323.03,74.805 +745469,319.24,70.676 +745470,320,72.069 +745471,320.8,73.459 +745472,321.64,74.844 +745473,317.99,70.68 +745474,318.71,72.085 +745475,319.46,73.486 +745476,320.25,74.883 +745477,316.74,70.686 +745478,317.41,72.101 +745479,318.12,73.513 +745480,318.85,74.92 +745481,315.49,70.692 +745482,316.12,72.118 +745483,316.77,73.54 +745484,317.46,74.957 +745485,314.25,70.7 +745486,314.82,72.135 +745487,315.43,73.566 +745488,316.07,74.992 +745489,313,70.709 +745490,313.53,72.153 +745491,314.09,73.592 +745492,314.68,75.026 +745493,311.76,70.719 +745494,312.24,72.171 +745495,312.74,73.617 +745496,313.28,75.059 +745497,310.51,70.731 +745498,310.94,72.189 +745499,311.4,73.643 +745500,311.89,75.09 +745501,309.27,70.743 +745502,309.65,72.208 +745503,310.06,73.667 +745504,310.5,75.121 +745505,308.02,70.757 +745506,308.35,72.227 +745507,308.71,73.692 +745508,309.1,75.15 +745509,306.78,70.772 +745510,307.06,72.246 +745511,307.37,73.716 +745512,307.71,75.178 +745513,305.54,70.788 +745514,305.76,72.266 +745515,306.02,73.739 +745516,306.31,75.206 +745517,304.29,70.805 +745518,304.47,72.287 +745519,304.68,73.762 +745520,304.92,75.231 +745521,303.05,70.824 +745522,303.18,72.307 +745523,303.33,73.785 +745524,303.52,75.256 +745525,301.81,70.844 +745526,301.88,72.328 +745527,301.99,73.808 +745528,302.13,75.28 +745529,300.56,70.865 +745530,300.59,72.35 +745531,300.65,73.83 +745532,300.74,75.302 +745533,299.32,70.887 +745534,299.3,72.372 +745535,299.3,73.851 +745536,299.34,75.323 +745537,298.08,70.911 +745538,298,72.394 +745539,297.96,73.872 +745540,297.95,75.343 +745541,296.84,70.935 +745542,296.71,72.417 +745543,296.61,73.893 +745544,296.55,75.362 +745545,295.59,70.961 +745546,295.41,72.44 +745547,295.27,73.914 +745548,295.16,75.38 +745549,294.35,70.988 +745550,294.12,72.464 +745551,293.92,73.934 +745552,293.76,75.397 +745553,293.11,71.017 +745554,292.83,72.488 +745555,292.58,73.953 +745556,292.37,75.412 +745557,291.86,71.046 +745558,291.53,72.512 +745559,291.24,73.973 +745560,290.98,75.426 +745561,290.62,71.077 +745562,290.24,72.537 +745563,289.89,73.992 +745564,289.58,75.439 +745565,289.38,71.109 +745566,288.94,72.562 +745567,288.55,74.01 +745568,288.19,75.451 +745569,288.13,71.142 +745570,287.65,72.588 +745571,287.2,74.028 +745572,286.8,75.462 +745573,286.89,71.177 +745574,286.35,72.614 +745575,285.86,74.046 +745576,285.41,75.472 +745577,285.64,71.212 +745578,285.06,72.64 +745579,284.52,74.063 +745580,284.02,75.48 +745581,284.4,71.249 +745582,283.76,72.667 +745583,283.17,74.08 +745584,282.62,75.487 +745585,283.15,71.287 +745586,282.47,72.694 +745587,281.83,74.097 +745588,281.23,75.494 +745589,281.9,71.326 +745590,281.17,72.721 +745591,280.49,74.113 +745592,279.84,75.499 +745593,280.66,71.366 +745594,279.88,72.749 +745595,279.14,74.129 +745596,278.45,75.503 +745597,279.41,71.407 +745598,278.58,72.777 +745599,277.8,74.144 +745600,277.06,75.506 +745601,278.16,71.45 +745602,277.29,72.806 +745603,276.46,74.159 +745604,275.68,75.508 +745605,276.91,71.493 +745606,275.99,72.835 +745607,275.12,74.174 +745608,274.29,75.508 +745609,275.66,71.538 +745610,274.69,72.864 +745611,273.77,74.188 +745612,272.9,75.508 +745613,274.41,71.584 +745614,273.4,72.894 +745615,272.43,74.203 +745616,271.52,75.507 +745617,273.16,71.631 +745618,272.1,72.924 +745619,271.09,74.216 +745620,270.13,75.505 +745621,271.91,71.679 +745622,270.8,72.955 +745623,269.75,74.23 +745624,268.75,75.501 +745625,270.66,71.728 +745626,269.5,72.986 +745627,268.41,74.243 +745628,267.36,75.497 +745629,269.4,71.778 +745630,268.21,73.017 +745631,267.07,74.255 +745632,265.98,75.491 +745633,268.15,71.829 +745634,266.91,73.048 +745635,265.72,74.268 +745636,264.6,75.485 +745637,266.89,71.881 +745638,265.61,73.08 +745639,264.38,74.28 +745640,263.22,75.478 +745641,265.64,71.934 +745642,264.31,73.112 +745643,263.04,74.291 +745644,261.84,75.469 +745645,264.38,71.988 +745646,263.01,73.145 +745647,261.7,74.303 +745648,260.46,75.46 +745649,263.12,72.043 +745650,261.71,73.177 +745651,260.37,74.314 +745652,259.08,75.45 +745653,261.86,72.099 +745654,260.41,73.211 +745655,259.03,74.325 +745656,257.7,75.439 +745657,260.6,72.155 +745658,259.11,73.244 +745659,257.69,74.335 +745660,256.33,75.427 +745661,259.34,72.213 +745662,257.81,73.278 +745663,256.35,74.345 +745664,254.95,75.414 +745665,258.08,72.272 +745666,256.51,73.312 +745667,255.01,74.355 +745668,253.58,75.4 +745669,256.81,72.331 +745670,255.21,73.346 +745671,253.67,74.365 +745672,252.2,75.386 +745673,255.55,72.391 +745674,253.91,73.38 +745675,252.34,74.374 +745676,250.83,75.37 +745677,254.28,72.452 +745678,252.6,73.415 +745679,251,74.383 +745680,249.46,75.354 +745681,253.01,72.514 +745682,251.3,73.45 +745683,249.66,74.392 +745684,248.09,75.337 +745685,251.74,72.577 +745686,250,73.486 +745687,248.33,74.401 +745688,246.73,75.319 +745689,250.47,72.64 +745690,248.69,73.521 +745691,246.99,74.409 +745692,245.36,75.301 +745693,249.2,72.704 +745694,247.39,73.557 +745695,245.65,74.417 +745696,243.99,75.282 +745697,247.93,72.769 +745698,246.08,73.593 +745699,244.32,74.425 +745700,242.63,75.262 +745701,246.65,72.835 +745702,244.78,73.63 +745703,242.99,74.433 +745704,241.27,75.241 +745705,245.38,72.901 +745706,243.47,73.666 +745707,241.65,74.44 +745708,239.9,75.22 +745709,244.1,72.968 +745710,242.17,73.703 +745711,240.32,74.447 +745712,238.54,75.198 +745713,242.82,73.035 +745714,240.86,73.74 +745715,238.98,74.454 +745716,237.19,75.176 +745717,241.54,73.103 +745718,239.55,73.777 +745719,237.65,74.461 +745720,235.83,75.153 +745721,240.26,73.172 +745722,238.25,73.815 +745723,236.32,74.468 +745724,234.47,75.129 +745725,238.97,73.241 +745726,236.94,73.852 +745727,234.99,74.474 +745728,233.12,75.105 +745729,237.69,73.31 +745730,235.63,73.89 +745731,233.66,74.481 +745732,231.77,75.081 +745733,236.4,73.38 +745734,234.32,73.928 +745735,232.33,74.487 +745736,230.41,75.056 +745737,235.11,73.451 +745738,233.01,73.966 +745739,231,74.493 +745740,229.06,75.03 +745741,233.82,73.522 +745742,231.7,74.004 +745743,229.67,74.499 +745744,227.71,75.004 +745745,232.53,73.593 +745746,230.39,74.042 +745747,228.34,74.505 +745748,226.37,74.978 +745749,231.24,73.665 +745750,229.08,74.081 +745751,227.01,74.51 +745752,225.02,74.951 +745753,229.94,73.737 +745754,227.76,74.119 +745755,225.68,74.516 +745756,223.68,74.924 +745757,228.64,73.809 +745758,226.45,74.158 +745759,224.35,74.521 +745760,222.34,74.896 +745761,227.35,73.882 +745762,225.14,74.197 +745763,223.02,74.526 +745764,220.99,74.868 +745765,226.05,73.955 +745766,223.83,74.236 +745767,221.7,74.532 +745768,219.65,74.84 +745769,224.74,74.028 +745770,222.51,74.275 +745771,220.37,74.537 +745772,218.32,74.812 +745773,223.44,74.101 +745774,221.2,74.314 +745775,219.05,74.542 +745776,216.98,74.783 +745777,222.13,74.174 +745778,219.88,74.353 +745779,217.72,74.547 +745780,215.65,74.754 +745781,220.83,74.248 +745782,218.56,74.392 +745783,216.4,74.552 +745784,214.31,74.725 +745785,219.52,74.322 +745786,217.25,74.431 +745787,215.07,74.557 +745788,212.98,74.696 +745789,218.21,74.396 +745790,215.93,74.47 +745791,213.75,74.562 +745792,211.65,74.667 +745793,216.9,74.47 +745794,214.61,74.51 +745795,212.43,74.566 +745796,210.32,74.638 +745797,215.58,74.544 +745798,213.29,74.549 +745799,211.1,74.571 +745800,208.99,74.608 +745801,214.27,74.618 +745802,211.98,74.588 +745803,209.78,74.576 +745804,207.67,74.579 +745805,212.95,74.691 +745806,210.66,74.628 +745807,208.46,74.581 +745808,206.35,74.549 +745809,211.63,74.765 +745810,209.34,74.667 +745811,207.14,74.586 +745812,205.02,74.52 +745813,210.31,74.839 +745814,208.02,74.706 +745815,205.82,74.591 +745816,203.7,74.49 +745817,208.98,74.913 +745818,206.69,74.746 +745819,204.5,74.596 +745820,202.38,74.461 +745821,207.66,74.987 +745822,205.37,74.785 +745823,203.18,74.601 +745824,201.07,74.432 +745825,206.33,75.06 +745826,204.05,74.824 +745827,201.86,74.606 +745828,199.75,74.403 +745829,205,75.133 +745830,202.73,74.863 +745831,200.54,74.611 +745832,198.44,74.374 +745833,203.67,75.206 +745834,201.4,74.902 +745835,199.22,74.616 +745836,197.12,74.345 +745837,202.34,75.279 +745838,200.08,74.941 +745839,197.91,74.621 +745840,195.81,74.316 +745841,201.01,75.352 +745842,198.75,74.98 +745843,196.59,74.626 +745844,194.5,74.288 +745845,199.67,75.424 +745846,197.43,75.019 +745847,195.27,74.632 +745848,193.2,74.26 +745849,198.34,75.496 +745850,196.1,75.058 +745851,193.96,74.637 +745852,191.89,74.232 +745853,197,75.567 +745854,194.78,75.096 +745855,192.64,74.643 +745856,190.59,74.204 +745857,195.66,75.638 +745858,193.45,75.135 +745859,191.33,74.648 +745860,189.28,74.177 +745861,194.32,75.709 +745862,192.12,75.173 +745863,190.01,74.654 +745864,187.98,74.15 +745865,192.97,75.779 +745866,190.79,75.212 +745867,188.7,74.66 +745868,186.68,74.124 +745869,191.63,75.849 +745870,189.47,75.25 +745871,187.39,74.666 +745872,185.38,74.098 +745873,190.28,75.919 +745874,188.14,75.288 +745875,186.08,74.673 +745876,184.09,74.072 +745877,188.93,75.988 +745878,186.81,75.325 +745879,184.76,74.679 +745880,182.79,74.047 +745881,187.58,76.056 +745882,185.48,75.363 +745883,183.45,74.686 +745884,181.5,74.023 +745885,186.23,76.124 +745886,184.15,75.4 +745887,182.14,74.692 +745888,180.2,73.999 +745889,184.88,76.191 +745890,182.81,75.438 +745891,180.83,74.699 +745892,178.91,73.975 +745893,183.52,76.258 +745894,181.48,75.475 +745895,179.52,74.707 +745896,177.62,73.952 +745897,182.17,76.324 +745898,180.15,75.512 +745899,178.21,74.714 +745900,176.34,73.93 +745901,180.81,76.389 +745902,178.82,75.548 +745903,176.9,74.722 +745904,175.05,73.908 +745905,179.45,76.454 +745906,177.48,75.585 +745907,175.59,74.729 +745908,173.76,73.887 +745909,178.09,76.518 +745910,176.15,75.621 +745911,174.28,74.738 +745912,172.48,73.867 +745913,176.73,76.581 +745914,174.82,75.657 +745915,172.98,74.746 +745916,171.2,73.847 +745917,175.36,76.644 +745918,173.48,75.693 +745919,171.67,74.754 +745920,169.92,73.828 +745921,174,76.706 +745922,172.14,75.728 +745923,170.36,74.763 +745924,168.64,73.81 +745925,172.63,76.767 +745926,170.81,75.764 +745927,169.05,74.772 +745928,167.36,73.792 +745929,171.26,76.827 +745930,169.47,75.799 +745931,167.75,74.782 +745932,166.08,73.776 +745933,169.89,76.887 +745934,168.14,75.833 +745935,166.44,74.791 +745936,164.81,73.76 +745937,168.52,76.945 +745938,166.8,75.868 +745939,165.14,74.801 +745940,163.53,73.745 +745941,167.15,77.003 +745942,165.46,75.902 +745943,163.83,74.811 +745944,162.26,73.731 +745945,165.78,77.06 +745946,164.12,75.936 +745947,162.53,74.822 +745948,160.99,73.717 +745949,164.41,77.116 +745950,162.78,75.97 +745951,161.22,74.833 +745952,159.71,73.705 +745953,163.03,77.171 +745954,161.45,76.003 +745955,159.92,74.844 +745956,158.44,73.693 +745957,161.65,77.225 +745958,160.11,76.036 +745959,158.62,74.855 +745960,157.18,73.683 +745961,160.28,77.278 +745962,158.77,76.069 +745963,157.31,74.867 +745964,155.91,73.673 +745965,158.9,77.33 +745966,157.43,76.101 +745967,156.01,74.879 +745968,154.64,73.664 +745969,157.52,77.382 +745970,156.09,76.133 +745971,154.71,74.891 +745972,153.38,73.657 +745973,156.14,77.432 +745974,154.75,76.165 +745975,153.41,74.904 +745976,152.11,73.65 +745977,154.76,77.481 +745978,153.4,76.196 +745979,152.1,74.917 +745980,150.85,73.644 +745981,153.37,77.53 +745982,152.06,76.227 +745983,150.8,74.931 +745984,149.59,73.64 +745985,151.99,77.577 +745986,150.72,76.258 +745987,149.5,74.944 +745988,148.32,73.636 +745989,150.61,77.623 +745990,149.38,76.289 +745991,148.2,74.959 +745992,147.06,73.634 +745993,149.22,77.668 +745994,148.04,76.319 +745995,146.9,74.973 +745996,145.8,73.632 +745997,147.83,77.712 +745998,146.69,76.348 +745999,145.6,74.988 +746000,144.54,73.632 +746001,146.45,77.755 +746002,145.35,76.378 +746003,144.3,75.003 +746004,143.29,73.633 +746005,145.06,77.797 +746006,144.01,76.407 +746007,143,75.019 +746008,142.03,73.634 +746009,143.67,77.838 +746010,142.66,76.435 +746011,141.7,75.035 +746012,140.77,73.637 +746013,142.28,77.878 +746014,141.32,76.463 +746015,140.4,75.051 +746016,139.52,73.641 +746017,140.89,77.916 +746018,139.98,76.491 +746019,139.1,75.068 +746020,138.26,73.647 +746021,139.5,77.954 +746022,138.63,76.519 +746023,137.8,75.085 +746024,137.01,73.653 +746025,138.11,77.99 +746026,137.29,76.546 +746027,136.5,75.103 +746028,135.75,73.661 +746029,136.72,78.025 +746030,135.94,76.573 +746031,135.2,75.12 +746032,134.5,73.67 +746033,135.33,78.059 +746034,134.6,76.599 +746035,133.91,75.139 +746036,133.25,73.68 +746037,133.94,78.092 +746038,133.25,76.625 +746039,132.61,75.157 +746040,131.99,73.691 +746041,132.54,78.124 +746042,131.91,76.651 +746043,131.31,75.177 +746044,130.74,73.703 +746045,131.15,78.155 +746046,130.56,76.676 +746047,130.01,75.196 +746048,129.49,73.717 +746049,129.76,78.184 +746050,129.22,76.701 +746051,128.71,75.216 +746052,128.24,73.731 +746053,128.36,78.212 +746054,127.87,76.725 +746055,127.41,75.236 +746056,126.99,73.747 +746057,126.97,78.239 +746058,126.53,76.749 +746059,126.12,75.257 +746060,125.74,73.765 +746061,125.58,78.265 +746062,125.18,76.773 +746063,124.82,75.278 +746064,124.49,73.783 +746065,124.18,78.29 +746066,123.83,76.796 +746067,123.52,75.3 +746068,123.24,73.803 +746069,122.79,78.314 +746070,122.49,76.819 +746071,122.22,75.322 +746072,121.99,73.824 +746073,121.39,78.336 +746074,121.14,76.841 +746075,120.93,75.344 +746076,120.74,73.846 +746077,120,78.357 +746078,119.8,76.863 +746079,119.63,75.367 +746080,119.49,73.869 +746081,118.6,78.377 +746082,118.45,76.885 +746083,118.33,75.39 +746084,118.24,73.894 +746085,117.21,78.396 +746086,117.1,76.906 +746087,117.03,75.414 +746088,116.99,73.92 +746089,115.81,78.414 +746090,115.76,76.927 +746091,115.73,75.438 +746092,115.74,73.947 +746093,114.42,78.43 +746094,114.41,76.948 +746095,114.44,75.462 +746096,114.49,73.975 +746097,113.02,78.446 +746098,113.07,76.968 +746099,113.14,75.487 +746100,113.25,74.005 +746101,111.63,78.46 +746102,111.72,76.988 +746103,111.84,75.512 +746104,112,74.036 +746105,110.24,78.473 +746106,110.37,77.007 +746107,110.54,75.538 +746108,110.75,74.068 +746109,108.84,78.485 +746110,109.03,77.026 +746111,109.25,75.564 +746112,109.5,74.101 +746113,107.45,78.495 +746114,107.68,77.045 +746115,107.95,75.591 +746116,108.25,74.135 +746117,106.05,78.505 +746118,106.33,77.063 +746119,106.65,75.618 +746120,107,74.171 +746121,104.66,78.513 +746122,104.99,77.081 +746123,105.35,75.645 +746124,105.75,74.208 +746125,103.27,78.52 +746126,103.64,77.098 +746127,104.05,75.673 +746128,104.5,74.246 +746129,101.87,78.527 +746130,102.3,77.115 +746131,102.75,75.701 +746132,103.25,74.285 +746133,100.48,78.532 +746134,100.95,77.132 +746135,101.46,75.729 +746136,102,74.325 +746137,99.091,78.536 +746138,99.606,77.148 +746139,100.16,75.758 +746140,100.75,74.367 +746141,97.699,78.538 +746142,98.261,77.164 +746143,98.858,75.787 +746144,99.493,74.41 +746145,96.309,78.54 +746146,96.915,77.18 +746147,97.559,75.817 +746148,98.241,74.453 +746149,94.918,78.541 +746150,95.57,77.195 +746151,96.26,75.847 +746152,96.988,74.498 +746153,93.529,78.541 +746154,94.225,77.21 +746155,94.96,75.877 +746156,95.735,74.545 +746157,92.14,78.539 +746158,92.881,77.224 +746159,93.661,75.908 +746160,94.481,74.592 +746161,90.751,78.537 +746162,91.536,77.238 +746163,92.361,75.939 +746164,93.226,74.64 +746165,89.364,78.533 +746166,90.192,77.252 +746167,91.06,75.97 +746168,91.971,74.689 +746169,87.977,78.529 +746170,88.848,77.266 +746171,89.76,76.002 +746172,90.715,74.74 +746173,86.59,78.523 +746174,87.504,77.279 +746175,88.459,76.034 +746176,89.458,74.791 +746177,85.205,78.517 +746178,86.16,77.292 +746179,87.158,76.067 +746180,88.201,74.844 +746181,83.82,78.509 +746182,84.817,77.304 +746183,85.857,76.1 +746184,86.942,74.897 +746185,82.436,78.501 +746186,83.474,77.316 +746187,84.555,76.133 +746188,85.683,74.952 +746189,81.053,78.491 +746190,82.131,77.328 +746191,83.253,76.166 +746192,84.423,75.008 +746193,79.671,78.481 +746194,80.788,77.34 +746195,81.951,76.2 +746196,83.162,75.064 +746197,78.29,78.47 +746198,79.446,77.351 +746199,80.648,76.234 +746200,81.901,75.122 +746201,76.91,78.458 +746202,78.104,77.362 +746203,79.345,76.269 +746204,80.638,75.18 +746205,75.53,78.445 +746206,76.762,77.373 +746207,78.042,76.304 +746208,79.374,75.239 +746209,74.152,78.431 +746210,75.42,77.383 +746211,76.739,76.339 +746212,78.109,75.299 +746213,72.775,78.416 +746214,74.079,77.393 +746215,75.435,76.374 +746216,76.843,75.36 +746217,71.398,78.401 +746218,72.739,77.403 +746219,74.13,76.41 +746220,75.576,75.422 +746221,70.023,78.385 +746222,71.398,77.413 +746223,72.825,76.446 +746224,74.308,75.485 +746225,68.649,78.368 +746226,70.058,77.422 +746227,71.52,76.482 +746228,73.039,75.549 +746229,67.276,78.35 +746230,68.718,77.431 +746231,70.215,76.518 +746232,71.769,75.613 +746233,65.904,78.331 +746234,67.379,77.44 +746235,68.909,76.555 +746236,70.497,75.678 +746237,64.534,78.312 +746238,66.04,77.449 +746239,67.602,76.592 +746240,69.224,75.744 +746241,63.164,78.292 +746242,64.701,77.457 +746243,66.296,76.629 +746244,67.95,75.811 +746245,61.796,78.272 +746246,63.363,77.465 +746247,64.988,76.667 +746248,66.675,75.878 +746249,60.429,78.25 +746250,62.025,77.473 +746251,63.681,76.704 +746252,65.399,75.946 +746253,59.063,78.228 +746254,60.688,77.481 +746255,62.372,76.742 +746256,64.121,76.014 +746257,57.699,78.206 +746258,59.351,77.488 +746259,61.064,76.78 +746260,62.841,76.083 +746261,56.335,78.183 +746262,58.015,77.496 +746263,59.755,76.818 +746264,61.561,76.153 +746265,54.973,78.159 +746266,56.678,77.503 +746267,58.445,76.857 +746268,60.279,76.224 +746269,53.613,78.135 +746270,55.343,77.51 +746271,57.135,76.896 +746272,58.995,76.294 +746273,52.254,78.11 +746274,54.007,77.517 +746275,55.824,76.934 +746276,57.71,76.366 +746277,50.896,78.085 +746278,52.673,77.524 +746279,54.513,76.974 +746280,56.424,76.438 +746281,49.539,78.06 +746282,51.338,77.53 +746283,53.202,77.013 +746284,55.136,76.51 +746285,48.184,78.034 +746286,50.004,77.537 +746287,51.89,77.052 +746288,53.847,76.583 +746289,46.83,78.007 +746290,48.671,77.543 +746291,50.577,77.092 +746292,52.556,76.656 +746293,45.478,77.98 +746294,47.338,77.549 +746295,49.264,77.131 +746296,51.264,76.729 +746297,44.127,77.953 +746298,46.005,77.555 +746299,47.95,77.171 +746300,49.97,76.803 +746301,42.778,77.926 +746302,44.673,77.561 +746303,46.636,77.211 +746304,48.674,76.878 +746305,41.43,77.898 +746306,43.342,77.567 +746307,45.322,77.251 +746308,47.377,76.952 +746309,40.083,77.87 +746310,42.01,77.573 +746311,44.006,77.291 +746312,46.079,77.027 +746313,38.738,77.842 +746314,40.68,77.578 +746315,42.691,77.331 +746316,44.778,77.102 +746317,37.395,77.813 +746318,39.35,77.584 +746319,41.374,77.371 +746320,43.476,77.177 +746321,36.053,77.784 +746322,38.02,77.589 +746323,40.057,77.411 +746324,42.173,77.252 +746325,34.712,77.755 +746326,36.691,77.595 +746327,38.74,77.452 +746328,40.868,77.328 +746329,33.373,77.726 +746330,35.362,77.6 +746331,37.422,77.492 +746332,39.561,77.404 +746333,32.036,77.697 +746334,34.034,77.606 +746335,36.104,77.533 +746336,38.253,77.479 +746337,30.7,77.668 +746338,32.706,77.611 +746339,34.784,77.573 +746340,36.943,77.555 +746341,29.365,77.638 +746342,31.379,77.617 +746343,33.465,77.613 +746344,35.631,77.631 +746345,28.032,77.609 +746346,30.052,77.622 +746347,32.145,77.654 +746348,34.318,77.707 +746349,26.701,77.58 +746350,28.726,77.628 +746351,30.824,77.694 +746352,33.003,77.783 +746353,25.371,77.55 +746354,27.401,77.633 +746355,29.503,77.735 +746356,31.686,77.859 +746357,24.042,77.521 +746358,26.075,77.638 +746359,28.181,77.775 +746360,30.368,77.935 +746361,22.716,77.492 +746362,24.751,77.644 +746363,26.858,77.816 +746364,29.047,78.01 +746365,21.39,77.462 +746366,23.427,77.649 +746367,25.535,77.856 +746368,27.726,78.086 +746369,20.067,77.433 +746370,22.103,77.655 +746371,24.212,77.897 +746372,26.402,78.161 +746373,18.744,77.405 +746374,20.78,77.661 +746375,22.887,77.937 +746376,25.077,78.236 +746377,17.424,77.376 +746378,19.457,77.666 +746379,21.563,77.977 +746380,23.75,78.311 +746381,16.105,77.348 +746382,18.135,77.672 +746383,20.237,78.017 +746384,22.422,78.386 +746385,14.787,77.319 +746386,16.814,77.678 +746387,18.911,78.058 +746388,21.092,78.46 +746389,13.471,77.291 +746390,15.492,77.684 +746391,17.585,78.098 +746392,19.76,78.534 +746393,12.157,77.264 +746394,14.172,77.69 +746395,16.258,78.137 +746396,18.426,78.608 +746397,10.844,77.236 +746398,12.852,77.696 +746399,14.93,78.177 +746400,17.091,78.682 +746401,9.5321,77.209 +746402,11.532,77.703 +746403,13.602,78.217 +746404,15.754,78.755 +746405,8.2222,77.183 +746406,10.213,77.709 +746407,12.274,78.257 +746408,14.416,78.827 +746409,6.9137,77.157 +746410,8.8943,77.716 +746411,10.945,78.296 +746412,13.075,78.899 +746413,5.6067,77.131 +746414,7.5761,77.723 +746415,9.6148,78.335 +746416,11.734,78.971 +746417,4.3012,77.106 +746418,6.2584,77.73 +746419,8.2845,78.374 +746420,10.39,79.042 +746421,2.9972,77.081 +746422,4.9413,77.737 +746423,6.9536,78.413 +746424,9.0454,79.113 +746425,1.6947,77.056 +746426,3.6245,77.744 +746427,5.6222,78.452 +746428,7.6988,79.183 +746429,0.39356,77.033 +746430,2.3083,77.751 +746431,4.2903,78.491 +746432,6.3506,79.253 +746433,359.09,77.009 +746434,0.99253,77.759 +746435,2.9579,78.529 +746436,5.0009,79.322 +746437,357.8,76.987 +746438,359.68,77.767 +746439,1.6249,78.567 +746440,3.6496,79.39 +746441,356.5,76.965 +746442,358.36,77.775 +746443,0.2914,78.605 +746444,2.2968,79.458 +746445,355.2,76.943 +746446,357.05,77.783 +746447,358.96,78.643 +746448,0.94252,79.525 +746449,353.91,76.923 +746450,355.73,77.792 +746451,357.62,78.681 +746452,359.59,79.592 +746453,352.62,76.903 +746454,354.42,77.801 +746455,356.29,78.718 +746456,358.23,79.657 +746457,351.33,76.883 +746458,353.11,77.81 +746459,354.95,78.755 +746460,356.87,79.722 +746461,350.04,76.865 +746462,351.79,77.819 +746463,353.62,78.792 +746464,355.51,79.786 +746465,348.75,76.847 +746466,350.48,77.828 +746467,352.28,78.829 +746468,354.15,79.85 +746469,347.46,76.83 +746470,349.17,77.838 +746471,350.94,78.865 +746472,352.79,79.912 +746473,346.17,76.813 +746474,347.86,77.848 +746475,349.61,78.901 +746476,351.42,79.974 +746477,344.89,76.798 +746478,346.55,77.859 +746479,348.27,78.937 +746480,350.06,80.0353 +746481,343.61,76.783 +746482,345.24,77.869 +746483,346.93,78.973 +746484,348.69,80.0954 +746485,342.32,76.77 +746486,343.93,77.88 +746487,345.59,79.008 +746488,347.32,80.1547 +746489,341.04,76.757 +746490,342.62,77.891 +746491,344.25,79.043 +746492,345.95,80.213 +746493,339.76,76.745 +746494,341.31,77.903 +746495,342.91,79.078 +746496,344.58,80.2705 +746497,338.48,76.734 +746498,340,77.915 +746499,341.57,79.112 +746500,343.21,80.327 +746501,337.21,76.723 +746502,338.69,77.927 +746503,340.23,79.146 +746504,341.83,80.3825 +746505,335.93,76.714 +746506,337.38,77.94 +746507,338.89,79.18 +746508,340.46,80.4371 +746509,334.65,76.706 +746510,336.07,77.952 +746511,337.55,79.214 +746512,339.08,80.4907 +746513,333.38,76.699 +746514,334.77,77.966 +746515,336.21,79.247 +746516,337.71,80.5433 +746517,332.11,76.693 +746518,333.46,77.979 +746519,334.86,79.28 +746520,336.33,80.5949 +746521,330.83,76.688 +746522,332.15,77.993 +746523,333.52,79.312 +746524,334.95,80.6454 +746525,329.56,76.684 +746526,330.85,78.007 +746527,332.18,79.344 +746528,333.57,80.695 +746529,328.29,76.681 +746530,329.54,78.022 +746531,330.84,79.376 +746532,332.19,80.7434 +746533,327.02,76.679 +746534,328.23,78.037 +746535,329.49,79.407 +746536,330.81,80.7908 +746537,325.75,76.678 +746538,326.93,78.052 +746539,328.15,79.438 +746540,329.42,80.8371 +746541,324.49,76.678 +746542,325.62,78.068 +746543,326.8,79.469 +746544,328.04,80.8823 +746545,323.22,76.679 +746546,324.32,78.084 +746547,325.46,79.499 +746548,326.65,80.9264 +746549,321.95,76.682 +746550,323.01,78.1 +746551,324.12,79.529 +746552,325.27,80.9694 +746553,320.69,76.686 +746554,321.71,78.117 +746555,322.77,79.559 +746556,323.88,81.0112 +746557,319.42,76.69 +746558,320.4,78.134 +746559,321.42,79.588 +746560,322.49,81.052 +746561,318.16,76.696 +746562,319.1,78.152 +746563,320.08,79.617 +746564,321.11,81.0915 +746565,316.9,76.704 +746566,317.79,78.17 +746567,318.73,79.645 +746568,319.72,81.1299 +746569,315.63,76.712 +746570,316.49,78.188 +746571,317.39,79.674 +746572,318.33,81.1672 +746573,314.37,76.721 +746574,315.19,78.207 +746575,316.04,79.701 +746576,316.94,81.2033 +746577,313.11,76.732 +746578,313.88,78.226 +746579,314.69,79.729 +746580,315.55,81.2382 +746581,311.85,76.744 +746582,312.58,78.246 +746583,313.35,79.755 +746584,314.16,81.2719 +746585,310.59,76.757 +746586,311.28,78.266 +746587,312,79.782 +746588,312.77,81.3045 +746589,309.33,76.772 +746590,309.97,78.287 +746591,310.65,79.808 +746592,311.37,81.3358 +746593,308.07,76.787 +746594,308.67,78.307 +746595,309.31,79.834 +746596,309.98,81.366 +746597,306.81,76.804 +746598,307.37,78.329 +746599,307.96,79.859 +746600,308.59,81.3949 +746601,305.56,76.822 +746602,306.06,78.35 +746603,306.61,79.884 +746604,307.19,81.4227 +746605,304.3,76.842 +746606,304.76,78.372 +746607,305.26,79.909 +746608,305.8,81.4492 +746609,303.04,76.863 +746610,303.46,78.395 +746611,303.91,79.933 +746612,304.41,81.4746 +746613,301.78,76.884 +746614,302.16,78.418 +746615,302.57,79.956 +746616,303.01,81.4987 +746617,300.53,76.908 +746618,300.85,78.441 +746619,301.22,79.98 +746620,301.62,81.5216 +746621,299.27,76.932 +746622,299.55,78.465 +746623,299.87,80.0026 +746624,300.22,81.5434 +746625,298.01,76.958 +746626,298.25,78.489 +746627,298.52,80.0251 +746628,298.83,81.5639 +746629,296.76,76.985 +746630,296.95,78.514 +746631,297.17,80.0472 +746632,297.43,81.5832 +746633,295.5,77.013 +746634,295.65,78.539 +746635,295.82,80.0689 +746636,296.03,81.6013 +746637,294.24,77.042 +746638,294.34,78.564 +746639,294.47,80.0902 +746640,294.64,81.6182 +746641,292.99,77.073 +746642,293.04,78.59 +746643,293.13,80.1111 +746644,293.24,81.6339 +746645,291.73,77.105 +746646,291.74,78.617 +746647,291.78,80.1316 +746648,291.85,81.6484 +746649,290.48,77.138 +746650,290.44,78.643 +746651,290.43,80.1517 +746652,290.45,81.6618 +746653,289.22,77.172 +746654,289.13,78.67 +746655,289.08,80.1714 +746656,289.06,81.6739 +746657,287.96,77.208 +746658,287.83,78.698 +746659,287.73,80.1908 +746660,287.66,81.6849 +746661,286.71,77.245 +746662,286.53,78.726 +746663,286.38,80.2097 +746664,286.27,81.6947 +746665,285.45,77.283 +746666,285.23,78.754 +746667,285.03,80.2282 +746668,284.87,81.7033 +746669,284.19,77.322 +746670,283.92,78.783 +746671,283.68,80.2464 +746672,283.48,81.7108 +746673,282.94,77.363 +746674,282.62,78.812 +746675,282.34,80.2641 +746676,282.08,81.7171 +746677,281.68,77.405 +746678,281.32,78.842 +746679,280.99,80.2815 +746680,280.69,81.7223 +746681,280.42,77.447 +746682,280.01,78.872 +746683,279.64,80.2985 +746684,279.29,81.7263 +746685,279.17,77.492 +746686,278.71,78.902 +746687,278.29,80.3152 +746688,277.9,81.7293 +746689,277.91,77.537 +746690,277.41,78.933 +746691,276.94,80.3314 +746692,276.51,81.7311 +746693,276.65,77.583 +746694,276.11,78.964 +746695,275.59,80.3473 +746696,275.11,81.7318 +746697,275.39,77.631 +746698,274.8,78.995 +746699,274.25,80.3628 +746700,273.72,81.7314 +746701,274.13,77.68 +746702,273.5,79.027 +746703,272.9,80.378 +746704,272.33,81.73 +746705,272.87,77.729 +746706,272.19,79.06 +746707,271.55,80.3928 +746708,270.94,81.7275 +746709,271.61,77.78 +746710,270.89,79.092 +746711,270.2,80.4073 +746712,269.55,81.7239 +746713,270.35,77.832 +746714,269.59,79.125 +746715,268.85,80.4214 +746716,268.16,81.7194 +746717,269.09,77.886 +746718,268.28,79.158 +746719,267.51,80.4351 +746720,266.77,81.7137 +746721,267.83,77.94 +746722,266.98,79.192 +746723,266.16,80.4486 +746724,265.38,81.7071 +746725,266.56,77.995 +746726,265.67,79.226 +746727,264.81,80.4617 +746728,263.99,81.6995 +746729,265.3,78.051 +746730,264.37,79.261 +746731,263.47,80.4745 +746732,262.6,81.6909 +746733,264.03,78.109 +746734,263.06,79.295 +746735,262.12,80.4869 +746736,261.22,81.6814 +746737,262.77,78.167 +746738,261.75,79.33 +746739,260.77,80.499 +746740,259.83,81.6709 +746741,261.5,78.226 +746742,260.45,79.366 +746743,259.43,80.5109 +746744,258.44,81.6594 +746745,260.24,78.286 +746746,259.14,79.401 +746747,258.08,80.5224 +746748,257.06,81.6471 +746749,258.97,78.348 +746750,257.83,79.438 +746751,256.74,80.5336 +746752,255.68,81.6339 +746753,257.7,78.41 +746754,256.53,79.474 +746755,255.39,80.5445 +746756,254.29,81.6198 +746757,256.43,78.473 +746758,255.22,79.51 +746759,254.05,80.5552 +746760,252.91,81.6048 +746761,255.16,78.537 +746762,253.91,79.547 +746763,252.7,80.5656 +746764,251.53,81.5891 +746765,253.89,78.601 +746766,252.6,79.585 +746767,251.36,80.5757 +746768,250.15,81.5725 +746769,252.62,78.667 +746770,251.29,79.622 +746771,250.01,80.5855 +746772,248.77,81.5551 +746773,251.34,78.733 +746774,249.99,79.66 +746775,248.67,80.5951 +746776,247.39,81.5369 +746777,250.07,78.8 +746778,248.68,79.698 +746779,247.33,80.6044 +746780,246.02,81.518 +746781,248.79,78.868 +746782,247.37,79.736 +746783,245.98,80.6135 +746784,244.64,81.4984 +746785,247.52,78.937 +746786,246.06,79.775 +746787,244.64,80.6224 +746788,243.26,81.478 +746789,246.24,79.006 +746790,244.75,79.813 +746791,243.3,80.631 +746792,241.89,81.457 +746793,244.96,79.076 +746794,243.44,79.852 +746795,241.96,80.6394 +746796,240.52,81.4353 +746797,243.68,79.147 +746798,242.12,79.892 +746799,240.61,80.6476 +746800,239.15,81.413 +746801,242.4,79.219 +746802,240.81,79.931 +746803,239.27,80.6556 +746804,237.78,81.39 +746805,241.12,79.291 +746806,239.5,79.971 +746807,237.93,80.6634 +746808,236.41,81.3665 +746809,239.83,79.363 +746810,238.19,80.0105 +746811,236.59,80.671 +746812,235.04,81.3423 +746813,238.55,79.436 +746814,236.87,80.0506 +746815,235.25,80.6784 +746816,233.67,81.3177 +746817,237.26,79.51 +746818,235.56,80.0908 +746819,233.91,80.6856 +746820,232.31,81.2925 +746821,235.98,79.584 +746822,234.25,80.1312 +746823,232.57,80.6927 +746824,230.94,81.2668 +746825,234.69,79.659 +746826,232.93,80.1717 +746827,231.23,80.6997 +746828,229.58,81.2407 +746829,233.4,79.734 +746830,231.62,80.2124 +746831,229.89,80.7065 +746832,228.22,81.2141 +746833,232.11,79.81 +746834,230.3,80.2533 +746835,228.55,80.7131 +746836,226.86,81.1871 +746837,230.81,79.886 +746838,228.99,80.2943 +746839,227.22,80.7197 +746840,225.5,81.1597 +746841,229.52,79.962 +746842,227.67,80.3354 +746843,225.88,80.7261 +746844,224.14,81.1319 +746845,228.22,80.0391 +746846,226.35,80.3766 +746847,224.54,80.7324 +746848,222.78,81.1038 +746849,226.92,80.1161 +746850,225.04,80.418 +746851,223.21,80.7386 +746852,221.43,81.0754 +746853,225.63,80.1934 +746854,223.72,80.4594 +746855,221.87,80.7447 +746856,220.07,81.0467 +746857,224.33,80.271 +746858,222.4,80.501 +746859,220.53,80.7507 +746860,218.72,81.0178 +746861,223.02,80.3488 +746862,221.08,80.5426 +746863,219.2,80.7567 +746864,217.37,80.9886 +746865,221.72,80.4268 +746866,219.76,80.5843 +746867,217.86,80.7626 +746868,216.02,80.9592 +746869,220.42,80.505 +746870,218.44,80.626 +746871,216.53,80.7684 +746872,214.67,80.9296 +746873,219.11,80.5833 +746874,217.12,80.6678 +746875,215.2,80.7742 +746876,213.33,80.8999 +746877,217.8,80.6617 +746878,215.8,80.7097 +746879,213.86,80.78 +746880,211.98,80.87 +746881,216.49,80.7402 +746882,214.48,80.7515 +746883,212.53,80.7857 +746884,210.64,80.8401 +746885,215.18,80.8188 +746886,213.16,80.7934 +746887,211.2,80.7915 +746888,209.3,80.8101 +746889,213.87,80.8974 +746890,211.83,80.8354 +746891,209.87,80.7972 +746892,207.95,80.78 +746893,212.55,80.9759 +746894,210.51,80.8773 +746895,208.53,80.8029 +746896,206.62,80.75 +746897,211.24,81.0545 +746898,209.19,80.9192 +746899,207.2,80.8086 +746900,205.28,80.7199 +746901,209.92,81.1329 +746902,207.86,80.9611 +746903,205.87,80.8144 +746904,203.94,80.6899 +746905,208.6,81.2113 +746906,206.54,81.0029 +746907,204.54,80.8201 +746908,202.61,80.66 +746909,207.28,81.2895 +746910,205.21,81.0448 +746911,203.21,80.826 +746912,201.27,80.6302 +746913,205.96,81.3676 +746914,203.89,81.0866 +746915,201.88,80.8318 +746916,199.94,80.6005 +746917,204.64,81.4455 +746918,202.56,81.1283 +746919,200.55,80.8378 +746920,198.61,80.571 +746921,203.31,81.5232 +746922,201.23,81.17 +746923,199.23,80.8438 +746924,197.28,80.5416 +746925,201.98,81.6006 +746926,199.91,81.2115 +746927,197.9,80.8498 +746928,195.95,80.5125 +746929,200.66,81.6777 +746930,198.58,81.2531 +746931,196.57,80.856 +746932,194.63,80.4836 +746933,199.33,81.7546 +746934,197.25,81.2945 +746935,195.24,80.8623 +746936,193.3,80.4549 +746937,197.99,81.8311 +746938,195.92,81.3358 +746939,193.92,80.8686 +746940,191.98,80.4266 +746941,196.66,81.9073 +746942,194.59,81.377 +746943,192.59,80.8751 +746944,190.66,80.3986 +746945,195.33,81.983 +746946,193.26,81.4181 +746947,191.27,80.8817 +746948,189.34,80.3709 +746949,193.99,82.0584 +746950,191.93,81.459 +746951,189.94,80.8884 +746952,188.02,80.3436 +746953,192.65,82.1333 +746954,190.6,81.4998 +746955,188.62,80.8953 +746956,186.7,80.3168 +746957,191.31,82.2077 +746958,189.27,81.5405 +746959,187.29,80.9024 +746960,185.38,80.2903 +746961,189.97,82.2816 +746962,187.94,81.581 +746963,185.97,80.9096 +746964,184.07,80.2643 +746965,188.63,82.355 +746966,186.6,81.6213 +746967,184.65,80.9169 +746968,182.76,80.2388 +746969,187.28,82.4279 +746970,185.27,81.6615 +746971,183.33,80.9245 +746972,181.44,80.2138 +746973,185.94,82.5002 +746974,183.93,81.7014 +746975,182,80.9322 +746976,180.13,80.1894 +746977,184.59,82.5718 +746978,182.6,81.7412 +746979,180.68,80.9401 +746980,178.82,80.1655 +746981,183.24,82.6429 +746982,181.27,81.7808 +746983,179.36,80.9482 +746984,177.52,80.1422 +746985,181.89,82.7132 +746986,179.93,81.8202 +746987,178.04,80.9566 +746988,176.21,80.1195 +746989,180.54,82.7829 +746990,178.59,81.8593 +746991,176.72,80.9651 +746992,174.91,80.0975 +746993,179.19,82.8519 +746994,177.26,81.8982 +746995,175.4,80.9739 +746996,173.6,80.0761 +746997,177.83,82.9202 +746998,175.92,81.9369 +746999,174.08,80.983 +747000,172.3,80.0554 +747001,176.48,82.9877 +747002,174.58,81.9753 +747003,172.76,80.9922 +747004,171,80.0354 +747005,175.12,83.0544 +747006,173.24,82.0135 +747007,171.44,81.0017 +747008,169.7,80.0162 +747009,173.76,83.1203 +747010,171.91,82.0515 +747011,170.12,81.0115 +747012,168.4,79.998 +747013,172.4,83.1854 +747014,170.57,82.0891 +747015,168.81,81.0216 +747016,167.1,79.98 +747017,171.04,83.2496 +747018,169.23,82.1265 +747019,167.49,81.0319 +747020,165.81,79.963 +747021,169.67,83.313 +747022,167.89,82.1636 +747023,166.17,81.0425 +747024,164.51,79.947 +747025,168.31,83.3755 +747026,166.55,82.2004 +747027,164.86,81.0534 +747028,163.22,79.932 +747029,166.94,83.4371 +747030,165.21,82.237 +747031,163.54,81.0646 +747032,161.93,79.917 +747033,165.57,83.4977 +747034,163.86,82.2732 +747035,162.22,81.0761 +747036,160.64,79.904 +747037,164.21,83.5574 +747038,162.52,82.3091 +747039,160.91,81.0879 +747040,159.35,79.891 +747041,162.84,83.6162 +747042,161.18,82.3447 +747043,159.59,81.1001 +747044,158.06,79.88 +747045,161.46,83.6739 +747046,159.84,82.38 +747047,158.28,81.1125 +747048,156.77,79.869 +747049,160.09,83.7307 +747050,158.5,82.4149 +747051,156.96,81.1253 +747052,155.49,79.86 +747053,158.72,83.7864 +747054,157.15,82.4495 +747055,155.65,81.1384 +747056,154.2,79.851 +747057,157.34,83.8411 +747058,155.81,82.4838 +747059,154.34,81.1519 +747060,152.92,79.843 +747061,155.97,83.8947 +747062,154.46,82.5177 +747063,153.02,81.1657 +747064,151.63,79.837 +747065,154.59,83.9473 +747066,153.12,82.5513 +747067,151.71,81.1799 +747068,150.35,79.831 +747069,153.21,83.9987 +747070,151.77,82.5845 +747071,150.4,81.1944 +747072,149.07,79.826 +747073,151.83,84.0491 +747074,150.43,82.6173 +747075,149.08,81.2093 +747076,147.79,79.823 +747077,150.45,84.0984 +747078,149.08,82.6498 +747079,147.77,81.2245 +747080,146.51,79.821 +747081,149.07,84.1465 +747082,147.74,82.682 +747083,146.46,81.2401 +747084,145.23,79.819 +747085,147.69,84.1935 +747086,146.39,82.7137 +747087,145.15,81.2561 +747088,143.96,79.819 +747089,146.31,84.2393 +747090,145.04,82.7451 +747091,143.84,81.2725 +747092,142.68,79.82 +747093,144.92,84.284 +747094,143.7,82.776 +747095,142.53,81.2893 +747096,141.4,79.822 +747097,143.54,84.3275 +747098,142.35,82.8066 +747099,141.22,81.3065 +747100,140.13,79.826 +747101,142.15,84.3698 +747102,141,82.8368 +747103,139.9,81.324 +747104,138.86,79.83 +747105,140.76,84.4109 +747106,139.65,82.8666 +747107,138.59,81.342 +747108,137.58,79.836 +747109,139.38,84.4508 +747110,138.3,82.896 +747111,137.28,81.3604 +747112,136.31,79.843 +747113,137.99,84.4896 +747114,136.96,82.925 +747115,135.97,81.3791 +747116,135.04,79.851 +747117,136.6,84.527 +747118,135.61,82.9536 +747119,134.66,81.3983 +747120,133.77,79.86 +747121,135.21,84.5633 +747122,134.26,82.9818 +747123,133.35,81.4179 +747124,132.5,79.871 +747125,133.82,84.5983 +747126,132.91,83.0096 +747127,132.05,81.4379 +747128,131.23,79.882 +747129,132.43,84.6321 +747130,131.56,83.0369 +747131,130.74,81.4583 +747132,129.96,79.895 +747133,131.04,84.6646 +747134,130.21,83.0639 +747135,129.43,81.4791 +747136,128.69,79.91 +747137,129.64,84.6959 +747138,128.86,83.0904 +747139,128.12,81.5004 +747140,127.42,79.925 +747141,128.25,84.726 +747142,127.51,83.1166 +747143,126.81,81.522 +747144,126.15,79.942 +747145,126.86,84.7548 +747146,126.16,83.1423 +747147,125.5,81.5441 +747148,124.89,79.96 +747149,125.46,84.7823 +747150,124.81,83.1675 +747151,124.19,81.5667 +747152,123.62,79.979 +747153,124.07,84.8085 +747154,123.46,83.1924 +747155,122.88,81.5896 +747156,122.35,80 +747157,122.67,84.8335 +747158,122.1,83.2168 +747159,121.58,81.613 +747160,121.09,80.0219 +747161,121.28,84.8573 +747162,120.75,83.2409 +747163,120.27,81.6368 +747164,119.82,80.045 +747165,119.88,84.8798 +747166,119.4,83.2645 +747167,118.96,81.661 +747168,118.55,80.0695 +747169,118.49,84.901 +747170,118.05,83.2876 +747171,117.65,81.6857 +747172,117.29,80.0952 +747173,117.09,84.921 +747174,116.7,83.3104 +747175,116.34,81.7107 +747176,116.02,80.1223 +747177,115.7,84.9397 +747178,115.35,83.3327 +747179,115.04,81.7362 +747180,114.76,80.1506 +747181,114.3,84.9571 +747182,114,83.3546 +747183,113.73,81.7622 +747184,113.49,80.1802 +747185,112.9,84.9733 +747186,112.64,83.3761 +747187,112.42,81.7885 +747188,112.23,80.2111 +747189,111.51,84.9883 +747190,111.29,83.3972 +747191,111.11,81.8153 +747192,110.97,80.2432 +747193,110.11,85.002 +747194,109.94,83.4178 +747195,109.8,81.8425 +747196,109.7,80.2767 +747197,108.71,85.0144 +747198,108.59,83.4381 +747199,108.5,81.8701 +747200,108.44,80.3114 +747201,107.32,85.0257 +747202,107.24,83.4579 +747203,107.19,81.8982 +747204,107.17,80.3474 +747205,105.92,85.0357 +747206,105.88,83.4773 +747207,105.88,81.9267 +747208,105.91,80.3846 +747209,104.52,85.0445 +747210,104.53,83.4963 +747211,104.57,81.9555 +747212,104.64,80.4232 +747213,103.13,85.0521 +747214,103.18,83.5149 +747215,103.26,81.9848 +747216,103.38,80.4629 +747217,101.73,85.0584 +747218,101.83,83.5331 +747219,101.96,82.0145 +747220,102.12,80.5039 +747221,100.33,85.0636 +747222,100.47,83.5508 +747223,100.65,82.0447 +747224,100.85,80.5462 +747225,98.936,85.0676 +747226,99.122,83.5682 +747227,99.339,82.0752 +747228,99.585,80.5897 +747229,97.54,85.0705 +747230,97.77,83.5852 +747231,98.03,82.1061 +747232,98.32,80.6344 +747233,96.145,85.0721 +747234,96.418,83.6018 +747235,96.722,82.1374 +747236,97.055,80.6803 +747237,94.749,85.0726 +747238,95.066,83.618 +747239,95.413,82.1691 +747240,95.789,80.7274 +747241,93.354,85.072 +747242,93.715,83.6338 +747243,94.104,82.2013 +747244,94.523,80.7757 +747245,91.959,85.0703 +747246,92.363,83.6492 +747247,92.795,82.2337 +747248,93.256,80.8252 +747249,90.565,85.0674 +747250,91.011,83.6643 +747251,91.486,82.2666 +747252,91.99,80.8758 +747253,89.171,85.0634 +747254,89.659,83.679 +747255,90.177,82.2999 +747256,90.722,80.9276 +747257,87.777,85.0584 +747258,88.308,83.6933 +747259,88.867,82.3335 +747260,89.455,80.9805 +747261,86.384,85.0523 +747262,86.957,83.7073 +747263,87.557,82.3675 +747264,88.186,81.0345 +747265,84.992,85.0451 +747266,85.606,83.7209 +747267,86.248,82.4019 +747268,86.918,81.0897 +747269,83.6,85.0369 +747270,84.254,83.7341 +747271,84.937,82.4366 +747272,85.648,81.1459 +747273,82.208,85.0276 +747274,82.904,83.747 +747275,83.627,82.4717 +747276,84.379,81.2033 +747277,80.817,85.0174 +747278,81.553,83.7595 +747279,82.316,82.5071 +747280,83.108,81.2616 +747281,79.427,85.0061 +747282,80.202,83.7718 +747283,81.006,82.5429 +747284,81.837,81.3211 +747285,78.038,84.9939 +747286,78.852,83.7836 +747287,79.694,82.5789 +747288,80.565,81.3815 +747289,76.649,84.9807 +747290,77.502,83.7952 +747291,78.383,82.6154 +747292,79.293,81.443 +747293,75.261,84.9666 +747294,76.152,83.8065 +747295,77.071,82.6521 +747296,78.02,81.5054 +747297,73.873,84.9516 +747298,74.802,83.8174 +747299,75.76,82.6892 +747300,76.746,81.5688 +747301,72.487,84.9357 +747302,73.453,83.828 +747303,74.447,82.7266 +747304,75.471,81.6331 +747305,71.101,84.9189 +747306,72.104,83.8383 +747307,73.135,82.7642 +747308,74.195,81.6984 +747309,69.716,84.9012 +747310,70.755,83.8484 +747311,71.822,82.8022 +747312,72.919,81.7645 +747313,68.332,84.8827 +747314,69.406,83.8581 +747315,70.509,82.8405 +747316,71.642,81.8316 +747317,66.949,84.8634 +747318,68.057,83.8676 +747319,69.195,82.879 +747320,70.364,81.8995 +747321,65.567,84.8433 +747322,66.709,83.8768 +747323,67.882,82.9178 +747324,69.084,81.9682 +747325,64.185,84.8225 +747326,65.361,83.8857 +747327,66.567,82.9569 +747328,67.804,82.0378 +747329,62.805,84.8009 +747330,64.013,83.8944 +747331,65.253,82.9962 +747332,66.523,82.1081 +747333,61.426,84.7785 +747334,62.666,83.9029 +747335,63.938,83.0358 +747336,65.241,82.1792 +747337,60.047,84.7555 +747338,61.319,83.9111 +747339,62.623,83.0756 +747340,63.958,82.2511 +747341,58.67,84.7318 +747342,59.972,83.919 +747343,61.307,83.1157 +747344,62.674,82.3236 +747345,57.293,84.7074 +747346,58.626,83.9268 +747347,59.991,83.156 +747348,61.389,82.3969 +747349,55.918,84.6824 +747350,57.28,83.9343 +747351,58.675,83.1964 +747352,60.103,82.4708 +747353,54.544,84.6568 +747354,55.934,83.9416 +747355,57.358,83.2371 +747356,58.816,82.5453 +747357,53.171,84.6306 +747358,54.589,83.9488 +747359,56.041,83.278 +747360,57.527,82.6205 +747361,51.799,84.6039 +747362,53.244,83.9557 +747363,54.723,83.3191 +747364,56.237,82.6962 +747365,50.428,84.5766 +747366,51.899,83.9625 +747367,53.405,83.3604 +747368,54.946,82.7725 +747369,49.059,84.5488 +747370,50.555,83.969 +747371,52.086,83.4018 +747372,53.654,82.8493 +747373,47.69,84.5206 +747374,49.211,83.9755 +747375,50.767,83.4434 +747376,52.361,82.9266 +747377,46.323,84.4919 +747378,47.867,83.9817 +747379,49.448,83.4852 +747380,51.067,83.0044 +747381,44.957,84.4628 +747382,46.524,83.9879 +747383,48.128,83.5271 +747384,49.771,83.0826 +747385,43.592,84.4333 +747386,45.181,83.9938 +747387,46.808,83.5691 +747388,48.474,83.1612 +747389,42.228,84.4034 +747390,43.838,83.9997 +747391,45.487,83.6113 +747392,47.175,83.2402 +747393,40.866,84.3732 +747394,42.496,84.0055 +747395,44.166,83.6535 +747396,45.876,83.3196 +747397,39.505,84.3426 +747398,41.155,84.0111 +747399,42.844,83.6959 +747400,44.575,83.3993 +747401,38.145,84.3118 +747402,39.814,84.0166 +747403,41.522,83.7384 +747404,43.272,83.4792 +747405,36.787,84.2807 +747406,38.473,84.0221 +747407,40.199,83.7809 +747408,41.968,83.5595 +747409,35.43,84.2494 +747410,37.132,84.0274 +747411,38.876,83.8235 +747412,40.663,83.64 +747413,34.074,84.2179 +747414,35.792,84.0327 +747415,37.552,83.8662 +747416,39.357,83.7206 +747417,32.72,84.1862 +747418,34.453,84.038 +747419,36.228,83.909 +747420,38.049,83.8015 +747421,31.367,84.1543 +747422,33.113,84.0432 +747423,34.904,83.9517 +747424,36.74,83.8825 +747425,30.015,84.1224 +747426,31.775,84.0483 +747427,33.578,83.9946 +747428,35.429,83.9636 +747429,28.664,84.0903 +747430,30.436,84.0534 +747431,32.253,84.0374 +747432,34.117,84.0448 +747433,27.315,84.0582 +747434,29.098,84.0585 +747435,30.927,84.0803 +747436,32.803,84.126 +747437,25.968,84.0261 +747438,27.761,84.0636 +747439,29.6,84.1231 +747440,31.488,84.2072 +747441,24.621,83.9939 +747442,26.424,84.0687 +747443,28.273,84.166 +747444,30.171,84.2885 +747445,23.276,83.9618 +747446,25.087,84.0738 +747447,26.945,84.2088 +747448,28.853,84.3697 +747449,21.933,83.9297 +747450,23.751,84.0789 +747451,25.617,84.2517 +747452,27.534,84.4508 +747453,20.591,83.8978 +747454,22.416,84.084 +747455,24.288,84.2944 +747456,26.213,84.5318 +747457,19.25,83.8659 +747458,21.08,84.0892 +747459,22.959,84.3372 +747460,24.89,84.6127 +747461,17.911,83.8341 +747462,19.745,84.0944 +747463,21.629,84.3799 +747464,23.566,84.6934 +747465,16.573,83.8026 +747466,18.411,84.0997 +747467,20.299,84.4225 +747468,22.24,84.7739 +747469,15.236,83.7712 +747470,17.077,84.105 +747471,18.968,84.465 +747472,20.913,84.8542 +747473,13.901,83.74 +747474,15.744,84.1104 +747475,17.636,84.5075 +747476,19.585,84.9342 +747477,12.567,83.7091 +747478,14.411,84.1159 +747479,16.305,84.5498 +747480,18.255,85.0139 +747481,11.235,83.6785 +747482,13.078,84.1215 +747483,14.972,84.5921 +747484,16.923,85.0933 +747485,9.9041,83.6482 +747486,11.746,84.1272 +747487,13.639,84.6342 +747488,15.59,85.1724 +747489,8.5745,83.6183 +747490,10.414,84.133 +747491,12.306,84.6762 +747492,14.255,85.2511 +747493,7.2463,83.5887 +747494,9.083,84.139 +747495,10.972,84.7181 +747496,12.919,85.3293 +747497,5.9195,83.5594 +747498,7.7522,84.145 +747499,9.6373,84.7598 +747500,11.582,85.4071 +747501,4.5941,83.5307 +747502,6.4218,84.1512 +747503,8.3022,84.8014 +747504,10.242,85.4845 +747505,3.2701,83.5023 +747506,5.0918,84.1576 +747507,6.9667,84.8428 +747508,8.9018,85.5613 +747509,1.9475,83.4745 +747510,3.7623,84.1641 +747511,5.6306,84.884 +747512,7.5596,85.6377 +747513,0.62618,83.4471 +747514,2.4333,84.1708 +747515,4.294,84.9251 +747516,6.216,85.7134 +747517,359.31,83.4203 +747518,1.1046,84.1777 +747519,2.9569,84.9659 +747520,4.8708,85.7886 +747521,357.99,83.394 +747522,359.78,84.1847 +747523,1.6193,85.0066 +747524,3.5242,85.8632 +747525,356.67,83.3683 +747526,358.45,84.192 +747527,0.28113,85.047 +747528,2.1761,85.9371 +747529,355.35,83.3432 +747530,357.12,84.1994 +747531,358.94,85.0872 +747532,0.82647,86.0104 +747533,354.04,83.3188 +747534,355.79,84.2071 +747535,357.6,85.1272 +747536,359.48,86.083 +747537,352.73,83.295 +747538,354.47,84.215 +747539,356.26,85.167 +747540,358.12,86.1548 +747541,351.41,83.2719 +747542,353.14,84.2231 +747543,354.92,85.2065 +747544,356.77,86.2259 +747545,350.1,83.2495 +747546,351.82,84.2314 +747547,353.58,85.2457 +747548,355.41,86.2962 +747549,348.79,83.2278 +747550,350.49,84.24 +747551,352.24,85.2847 +747552,354.06,86.3658 +747553,347.49,83.2069 +747554,349.17,84.2489 +747555,350.9,85.3234 +747556,352.7,86.4345 +747557,346.18,83.1868 +747558,347.84,84.258 +747559,349.56,85.3619 +747560,351.34,86.5023 +747561,344.87,83.1675 +747562,346.52,84.2674 +747563,348.22,85.4 +747564,349.98,86.5693 +747565,343.57,83.149 +747566,345.19,84.2771 +747567,346.87,85.4379 +747568,348.62,86.6354 +747569,342.27,83.1313 +747570,343.87,84.287 +747571,345.53,85.4754 +747572,347.25,86.7006 +747573,340.96,83.1146 +747574,342.55,84.2972 +747575,344.19,85.5127 +747576,345.89,86.7648 +747577,339.66,83.0987 +747578,341.22,84.3078 +747579,342.84,85.5496 +747580,344.52,86.8281 +747581,338.36,83.0838 +747582,339.9,84.3186 +747583,341.5,85.5862 +747584,343.15,86.8904 +747585,337.06,83.0698 +747586,338.58,84.3298 +747587,340.15,85.6225 +747588,341.78,86.9517 +747589,335.77,83.0567 +747590,337.26,84.3413 +747591,338.8,85.6584 +747592,340.41,87.0119 +747593,334.47,83.0446 +747594,335.94,84.3531 +747595,337.46,85.694 +747596,339.04,87.0712 +747597,333.17,83.0336 +747598,334.62,84.3652 +747599,336.11,85.7292 +747600,337.67,87.1293 +747601,331.88,83.0235 +747602,333.3,84.3777 +747603,334.76,85.7641 +747604,336.3,87.1864 +747605,330.59,83.0145 +747606,331.98,84.3906 +747607,333.42,85.7986 +747608,334.92,87.2424 +747609,329.29,83.0065 +747610,330.66,84.4037 +747611,332.07,85.8327 +747612,333.55,87.2972 +747613,328,82.9996 +747614,329.34,84.4173 +747615,330.72,85.8665 +747616,332.17,87.3509 +747617,326.71,82.9938 +747618,328.02,84.4312 +747619,329.37,85.8999 +747620,330.79,87.4035 +747621,325.42,82.9891 +747622,326.7,84.4454 +747623,328.02,85.9329 +747624,329.41,87.4549 +747625,324.14,82.9855 +747626,325.38,84.4601 +747627,326.67,85.9654 +747628,328.03,87.5051 +747629,322.85,82.9831 +747630,324.06,84.4751 +747631,325.32,85.9976 +747632,326.65,87.5541 +747633,321.56,82.9818 +747634,322.74,84.4905 +747635,323.97,86.0294 +747636,325.27,87.6019 +747637,320.27,82.9816 +747638,321.42,84.5063 +747639,322.62,86.0608 +747640,323.88,87.6485 +747641,318.99,82.9827 +747642,320.11,84.5225 +747643,321.27,86.0918 +747644,322.5,87.6939 +747645,317.71,82.9849 +747646,318.79,84.5391 +747647,319.92,86.1224 +747648,321.11,87.738 +747649,316.42,82.9884 +747650,317.47,84.556 +747651,318.57,86.1525 +747652,319.73,87.7808 +747653,315.14,82.9931 +747654,316.16,84.5734 +747655,317.22,86.1822 +747656,318.34,87.8224 +747657,313.86,82.9989 +747658,314.84,84.5912 +747659,315.87,86.2115 +747660,316.95,87.8627 +747661,312.58,83.0061 +747662,313.52,84.6094 +747663,314.52,86.2404 +747664,315.56,87.9018 +747665,311.3,83.0145 +747666,312.21,84.628 +747667,313.16,86.2688 +747668,314.17,87.9395 +747669,310.02,83.0241 +747670,310.89,84.6471 +747671,311.81,86.2968 +747672,312.78,87.9759 +747673,308.74,83.035 +747674,309.57,84.6665 +747675,310.46,86.3244 +747676,311.39,88.011 +747677,307.46,83.0472 +747678,308.26,84.6864 +747679,309.1,86.3515 +747680,310,88.0448 +747681,306.18,83.0606 +747682,306.94,84.7067 +747683,307.75,86.3781 +747684,308.61,88.0773 +747685,304.9,83.0754 +747686,305.63,84.7274 +747687,306.4,86.4044 +747688,307.22,88.1085 +747689,303.62,83.0914 +747690,304.31,84.7486 +747691,305.04,86.4302 +747692,305.82,88.1383 +747693,302.35,83.1088 +747694,303,84.7701 +747695,303.69,86.4555 +747696,304.43,88.1668 +747697,301.07,83.1274 +747698,301.68,84.7921 +747699,302.33,86.4804 +747700,303.03,88.194 +747701,299.79,83.1474 +747702,300.37,84.8146 +747703,300.98,86.5048 +747704,301.64,88.2198 +747705,298.52,83.1687 +747706,299.05,84.8374 +747707,299.62,86.5288 +747708,300.24,88.2443 +747709,297.24,83.1913 +747710,297.74,84.8608 +747711,298.27,86.5523 +747712,298.85,88.2674 +747713,295.97,83.2152 +747714,296.42,84.8845 +747715,296.91,86.5754 +747716,297.45,88.2892 +747717,294.69,83.2404 +747718,295.11,84.9087 +747719,295.56,86.598 +747720,296.05,88.3097 +747721,293.42,83.267 +747722,293.79,84.9333 +747723,294.2,86.6202 +747724,294.66,88.3288 +747725,292.14,83.2948 +747726,292.48,84.9583 +747727,292.85,86.6419 +747728,293.26,88.3466 +747729,290.87,83.324 +747730,291.16,84.9838 +747731,291.49,86.6632 +747732,291.86,88.3631 +747733,289.6,83.3545 +747734,289.85,85.0097 +747735,290.14,86.684 +747736,290.46,88.3782 +747737,288.32,83.3863 +747738,288.53,85.036 +747739,288.78,86.7044 +747740,289.07,88.392 +747741,287.05,83.4195 +747742,287.22,85.0628 +747743,287.42,86.7243 +747744,287.67,88.4045 +747745,285.77,83.4539 +747746,285.9,85.09 +747747,286.07,86.7438 +747748,286.27,88.4157 +747749,284.5,83.4897 +747750,284.59,85.1176 +747751,284.71,86.7628 +747752,284.87,88.4256 +747753,283.23,83.5267 +747754,283.28,85.1456 +747755,283.36,86.7814 +747756,283.47,88.4342 +747757,281.95,83.565 +747758,281.96,85.1741 +747759,282,86.7995 +747760,282.07,88.4414 +747761,280.68,83.6047 +747762,280.65,85.203 +747763,280.64,86.8172 +747764,280.67,88.4474 +747765,279.41,83.6456 +747766,279.33,85.2323 +747767,279.29,86.8345 +747768,279.28,88.4522 +747769,278.13,83.6878 +747770,278.02,85.262 +747771,277.93,86.8513 +747772,277.88,88.4556 +747773,276.86,83.7312 +747774,276.7,85.2921 +747775,276.58,86.8678 +747776,276.48,88.4578 +747777,275.58,83.7759 +747778,275.39,85.3226 +747779,275.22,86.8837 +747780,275.08,88.4588 +747781,274.31,83.8219 +747782,274.07,85.3536 +747783,273.86,86.8993 +747784,273.68,88.4585 +747785,273.04,83.869 +747786,272.76,85.3849 +747787,272.51,86.9144 +747788,272.29,88.457 +747789,271.76,83.9174 +747790,271.44,85.4167 +747791,271.15,86.9292 +747792,270.89,88.4543 +747793,270.48,83.9671 +747794,270.13,85.4488 +747795,269.79,86.9435 +747796,269.49,88.4504 +747797,269.21,84.0179 +747798,268.81,85.4813 +747799,268.44,86.9574 +747800,268.09,88.4454 +747801,267.93,84.0699 +747802,267.49,85.5142 +747803,267.08,86.9709 +747804,266.7,88.4391 +747805,266.66,84.1231 +747806,266.18,85.5475 +747807,265.73,86.984 +747808,265.3,88.4317 +747809,265.38,84.1774 +747810,264.86,85.5811 +747811,264.37,86.9968 +747812,263.91,88.4232 +747813,264.1,84.2329 +747814,263.55,85.6152 +747815,263.02,87.0091 +747816,262.51,88.4135 +747817,262.83,84.2895 +747818,262.23,85.6496 +747819,261.66,87.021 +747820,261.11,88.4028 +747821,261.55,84.3473 +747822,260.91,85.6843 +747823,260.3,87.0326 +747824,259.72,88.3909 +747825,260.27,84.4061 +747826,259.6,85.7194 +747827,258.95,87.0438 +747828,258.33,88.378 +747829,258.99,84.466 +747830,258.28,85.7548 +747831,257.59,87.0547 +747832,256.93,88.3641 +747833,257.71,84.5269 +747834,256.96,85.7906 +747835,256.24,87.0651 +747836,255.54,88.3491 +747837,256.43,84.5889 +747838,255.64,85.8267 +747839,254.88,87.0753 +747840,254.15,88.3331 +747841,255.15,84.652 +747842,254.33,85.8632 +747843,253.53,87.0851 +747844,252.76,88.3161 +747845,253.86,84.716 +747846,253.01,85.9 +747847,252.18,87.0945 +747848,251.37,88.2982 +747849,252.58,84.781 +747850,251.69,85.937 +747851,250.82,87.1036 +747852,249.98,88.2792 +747853,251.3,84.8469 +747854,250.37,85.9744 +747855,249.47,87.1124 +747856,248.59,88.2594 +747857,250.01,84.9139 +747858,249.05,86.0121 +747859,248.11,87.1209 +747860,247.2,88.2387 +747861,248.73,84.9817 +747862,247.73,86.0501 +747863,246.76,87.129 +747864,245.81,88.217 +747865,247.44,85.0504 +747866,246.41,86.0883 +747867,245.41,87.1369 +747868,244.42,88.1945 +747869,246.16,85.12 +747870,245.09,86.1269 +747871,244.05,87.1445 +747872,243.04,88.1712 +747873,244.87,85.1904 +747874,243.77,86.1657 +747875,242.7,87.1517 +747876,241.65,88.1471 +747877,243.58,85.2617 +747878,242.45,86.2047 +747879,241.35,87.1587 +747880,240.27,88.1221 +747881,242.29,85.3337 +747882,241.13,86.244 +747883,240,87.1655 +747884,238.88,88.0964 +747885,241,85.4066 +747886,239.81,86.2836 +747887,238.64,87.1719 +747888,237.5,88.0699 +747889,239.71,85.4801 +747890,238.49,86.3234 +747891,237.29,87.1781 +747892,236.12,88.0428 +747893,238.42,85.5544 +747894,237.17,86.3634 +747895,235.94,87.1841 +747896,234.74,88.0149 +747897,237.13,85.6294 +747898,235.85,86.4036 +747899,234.59,87.1898 +747900,233.36,87.9864 +747901,235.83,85.7051 +747902,234.52,86.444 +747903,233.24,87.1953 +747904,231.98,87.9572 +747905,234.54,85.7814 +747906,233.2,86.4847 +747907,231.89,87.2005 +747908,230.6,87.9274 +747909,233.24,85.8583 +747910,231.88,86.5255 +747911,230.54,87.2056 +747912,229.22,87.897 +747913,231.94,85.9358 +747914,230.55,86.5665 +747915,229.19,87.2105 +747916,227.85,87.866 +747917,230.64,86.0139 +747918,229.23,86.6077 +747919,227.84,87.2151 +747920,226.47,87.8346 +747921,229.35,86.0925 +747922,227.9,86.649 +747923,226.49,87.2196 +747924,225.1,87.8026 +747925,228.04,86.1716 +747926,226.58,86.6905 +747927,225.14,87.2239 +747928,223.73,87.7701 +747929,226.74,86.2511 +747930,225.25,86.7321 +747931,223.79,87.228 +747932,222.35,87.7372 +747933,225.44,86.3311 +747934,223.93,86.7739 +747935,222.44,87.232 +747936,220.98,87.7038 +747937,224.14,86.4115 +747938,222.6,86.8158 +747939,221.1,87.2358 +747940,219.61,87.67 +747941,222.83,86.4923 +747942,221.28,86.8577 +747943,219.75,87.2395 +747944,218.25,87.6359 +747945,221.52,86.5735 +747946,219.95,86.8998 +747947,218.4,87.2431 +747948,216.88,87.6015 +747949,220.21,86.655 +747950,218.62,86.942 +747951,217.05,87.2465 +747952,215.51,87.5667 +747953,218.91,86.7367 +747954,217.29,86.9843 +747955,215.71,87.2499 +747956,214.15,87.5316 +747957,217.6,86.8187 +747958,215.96,87.0266 +747959,214.36,87.2531 +747960,212.79,87.4963 +747961,216.28,86.9009 +747962,214.63,87.069 +747963,213.02,87.2563 +747964,211.43,87.4608 +747965,214.97,86.9834 +747966,213.31,87.1115 +747967,211.67,87.2593 +747968,210.06,87.4251 +747969,213.66,87.066 +747970,211.98,87.154 +747971,210.33,87.2623 +747972,208.71,87.3892 +747973,212.34,87.1487 +747974,210.64,87.1965 +747975,208.98,87.2653 +747976,207.35,87.3531 +747977,211.02,87.2315 +747978,209.31,87.239 +747979,207.64,87.2682 +747980,205.99,87.317 +747981,209.7,87.3144 +747982,207.98,87.2816 +747983,206.29,87.271 +747984,204.64,87.2808 +747985,208.39,87.3973 +747986,206.65,87.3241 +747987,204.95,87.2739 +747988,203.28,87.2445 +747989,207.06,87.4802 +747990,205.32,87.3667 +747991,203.61,87.2767 +747992,201.93,87.2082 +747993,205.74,87.5631 +747994,203.99,87.4092 +747995,202.26,87.2795 +747996,200.58,87.172 +747997,204.42,87.646 +747998,202.65,87.4516 +747999,200.92,87.2823 +748000,199.23,87.1357 +748001,203.09,87.7287 +748002,201.32,87.4941 +748003,199.58,87.2851 +748004,197.88,87.0996 +748005,201.77,87.8113 +748006,199.98,87.5364 +748007,198.24,87.288 +748008,196.53,87.0635 +748009,200.44,87.8938 +748010,198.65,87.5787 +748011,196.9,87.2908 +748012,195.18,87.0276 +748013,199.11,87.976 +748014,197.31,87.621 +748015,195.56,87.2937 +748016,193.84,86.9918 +748017,197.78,88.0581 +748018,195.98,87.6631 +748019,194.22,87.2967 +748020,192.5,86.9563 +748021,196.44,88.1398 +748022,194.64,87.7052 +748023,192.88,87.2997 +748024,191.15,86.9209 +748025,195.11,88.2213 +748026,193.3,87.7471 +748027,191.54,87.3028 +748028,189.81,86.8858 +748029,193.78,88.3025 +748030,191.97,87.7889 +748031,190.2,87.306 +748032,188.47,86.851 +748033,192.44,88.3833 +748034,190.63,87.8306 +748035,188.86,87.3093 +748036,187.13,86.8164 +748037,191.1,88.4638 +748038,189.29,87.8722 +748039,187.52,87.3127 +748040,185.8,86.7822 +748041,189.76,88.5438 +748042,187.95,87.9136 +748043,186.19,87.3162 +748044,184.46,86.7484 +748045,188.42,88.6234 +748046,186.61,87.9549 +748047,184.85,87.3198 +748048,183.13,86.715 +748049,187.08,88.7025 +748050,185.27,87.9959 +748051,183.51,87.3235 +748052,181.79,86.6819 +748053,185.74,88.781 +748054,183.93,88.0368 +748055,182.18,87.3274 +748056,180.46,86.6494 +748057,184.39,88.8591 +748058,182.59,88.0776 +748059,180.84,87.3314 +748060,179.13,86.6173 +748061,183.04,88.9366 +748062,181.25,88.1181 +748063,179.51,87.3356 +748064,177.8,86.5857 +748065,181.7,89.01345 +748066,179.91,88.1584 +748067,178.17,87.34 +748068,176.47,86.5546 +748069,180.35,89.0897 +748070,178.57,88.1985 +748071,176.84,87.3445 +748072,175.15,86.5241 +748073,179,89.1653 +748074,177.22,88.2383 +748075,175.5,87.3492 +748076,173.82,86.4942 +748077,177.64,89.2402 +748078,175.88,88.2779 +748079,174.17,87.3541 +748080,172.5,86.4649 +748081,176.29,89.31439 +748082,174.54,88.3173 +748083,172.83,87.3593 +748084,171.18,86.4363 +748085,174.94,89.38783 +748086,173.19,88.3564 +748087,171.5,87.3646 +748088,169.85,86.4083 +748089,173.58,89.4605 +748090,171.85,88.3953 +748091,170.17,87.3701 +748092,168.53,86.381 +748093,172.22,89.53237 +748094,170.5,88.4338 +748095,168.84,87.3759 +748096,167.21,86.3544 +748097,170.86,89.60341 +748098,169.16,88.4721 +748099,167.5,87.382 +748100,165.9,86.3286 +748101,169.5,89.6736 +748102,167.81,88.5101 +748103,166.17,87.3882 +748104,164.58,86.3035 +748105,168.14,89.7429 +748106,166.46,88.5478 +748107,164.84,87.3948 +748108,163.26,86.2792 +748109,166.78,89.81129 +748110,165.12,88.5852 +748111,163.51,87.4016 +748112,161.95,86.2557 +748113,165.41,89.87876 +748114,163.77,88.6223 +748115,162.18,87.4086 +748116,160.64,86.2331 +748117,164.05,89.945262 +748118,162.42,88.659 +748119,160.85,87.416 +748120,159.33,86.2114 +748121,162.68,90.010784 +748122,161.07,88.6955 +748123,159.52,87.4236 +748124,158.01,86.1905 +748125,161.31,90.075301 +748126,159.73,88.7315 +748127,158.19,87.4315 +748128,156.7,86.1705 +748129,159.94,90.13879 +748130,158.38,88.7673 +748131,156.86,87.4398 +748132,155.4,86.1515 +748133,158.57,90.20122 +748134,157.03,88.8026 +748135,155.53,87.4483 +748136,154.09,86.1334 +748137,157.2,90.26258 +748138,155.68,88.8376 +748139,154.21,87.4572 +748140,152.78,86.1163 +748141,155.83,90.32284 +748142,154.33,88.8722 +748143,152.88,87.4664 +748144,151.48,86.1002 +748145,154.46,90.38199 +748146,152.97,88.9065 +748147,151.55,87.4759 +748148,150.17,86.0851 +748149,153.08,90.43999 +748150,151.62,88.9404 +748151,150.22,87.4857 +748152,148.87,86.071 +748153,151.7,90.49684 +748154,150.27,88.9738 +748155,148.9,87.4959 +748156,147.57,86.058 +748157,150.33,90.55251 +748158,148.92,89.0069 +748159,147.57,87.5064 +748160,146.26,86.046 +748161,148.95,90.60698 +748162,147.57,89.03956 +748163,146.24,87.5173 +748164,144.96,86.0352 +748165,147.57,90.66024 +748166,146.21,89.07182 +748167,144.92,87.5286 +748168,143.66,86.0254 +748169,146.19,90.71227 +748170,144.86,89.10366 +748171,143.59,87.5402 +748172,142.37,86.0168 +748173,144.81,90.76305 +748174,143.51,89.13508 +748175,142.26,87.5522 +748176,141.07,86.0093 +748177,143.42,90.81257 +748178,142.15,89.16607 +748179,140.94,87.5646 +748180,139.77,86.003 +748181,142.04,90.86081 +748182,140.8,89.19663 +748183,139.61,87.5773 +748184,138.48,85.9978 +748185,140.65,90.90775 +748186,139.44,89.22675 +748187,138.29,87.5905 +748188,137.18,85.9939 +748189,139.27,90.95339 +748190,138.09,89.25643 +748191,136.96,87.604 +748192,135.89,85.9911 +748193,137.88,90.9977 +748194,136.73,89.28566 +748195,135.64,87.6179 +748196,134.59,85.9895 +748197,136.49,91.0407 +748198,135.38,89.31444 +748199,134.32,87.6323 +748200,133.3,85.9892 +748201,135.11,91.0823 +748202,134.02,89.34276 +748203,132.99,87.647 +748204,132.01,85.9901 +748205,133.72,91.1226 +748206,132.67,89.37062 +748207,131.67,87.6621 +748208,130.71,85.9923 +748209,132.33,91.1615 +748210,131.31,89.39802 +748211,130.34,87.6777 +748212,129.42,85.9957 +748213,130.94,91.1991 +748214,129.95,89.42496 +748215,129.02,87.6937 +748216,128.13,86.0004 +748217,129.54,91.2352 +748218,128.6,89.45142 +748219,127.7,87.71 +748220,126.84,86.0064 +748221,128.15,91.27 +748222,127.24,89.47741 +748223,126.37,87.7268 +748224,125.55,86.0137 +748225,126.76,91.3033 +748226,125.88,89.50293 +748227,125.05,87.7441 +748228,124.27,86.0223 +748229,125.37,91.3353 +748230,124.52,89.52797 +748231,123.73,87.7617 +748232,122.98,86.0322 +748233,123.97,91.3658 +748234,123.16,89.55253 +748235,122.41,87.7798 +748236,121.69,86.0434 +748237,122.58,91.3949 +748238,121.81,89.5766 +748239,121.08,87.7983 +748240,120.4,86.056 +748241,121.18,91.4226 +748242,120.45,89.6002 +748243,119.76,87.8173 +748244,119.12,86.0698 +748245,119.79,91.4489 +748246,119.09,89.6233 +748247,118.44,87.8366 +748248,117.83,86.085 +748249,118.39,91.4738 +748250,117.73,89.64592 +748251,117.12,87.8565 +748252,116.54,86.1016 +748253,116.99,91.4972 +748254,116.37,89.66805 +748255,115.8,87.8767 +748256,115.26,86.1195 +748257,115.6,91.5192 +748258,115.01,89.6897 +748259,114.47,87.8974 +748260,113.97,86.1387 +748261,114.2,91.5397 +748262,113.65,89.71085 +748263,113.15,87.9185 +748264,112.69,86.1593 +748265,112.8,91.5588 +748266,112.29,89.73152 +748267,111.83,87.9401 +748268,111.4,86.1812 +748269,111.4,91.5765 +748270,110.93,89.75169 +748271,110.51,87.962 +748272,110.12,86.2045 +748273,110,91.5928 +748274,109.57,89.77138 +748275,109.19,87.9845 +748276,108.84,86.2291 +748277,108.6,91.6076 +748278,108.21,89.79057 +748279,107.87,88.0073 +748280,107.55,86.2551 +748281,107.2,91.621 +748282,106.85,89.80928 +748283,106.54,88.0306 +748284,106.27,86.2825 +748285,105.8,91.633 +748286,105.49,89.8275 +748287,105.22,88.0544 +748288,104.99,86.3112 +748289,104.4,91.6436 +748290,104.13,89.84524 +748291,103.9,88.0786 +748292,103.7,86.3412 +748293,103,91.6528 +748294,102.77,89.86249 +748295,102.58,88.1032 +748296,102.42,86.3726 +748297,101.6,91.6605 +748298,101.41,89.87926 +748299,101.26,88.1282 +748300,101.13,86.4053 +748301,100.2,91.6669 +748302,100.05,89.89554 +748303,99.936,88.1537 +748304,99.851,86.4394 +748305,98.803,91.6719 +748306,98.691,89.911349 +748307,98.614,88.1795 +748308,98.568,86.4748 +748309,97.403,91.6755 +748310,97.331,89.926678 +748311,97.292,88.2059 +748312,97.285,86.5115 +748313,96.003,91.6777 +748314,95.97,89.941533 +748315,95.971,88.2326 +748316,96.001,86.5495 +748317,94.603,91.6786 +748318,94.61,89.955917 +748319,94.649,88.2598 +748320,94.718,86.5889 +748321,93.202,91.6781 +748322,93.249,89.969831 +748323,93.327,88.2873 +748324,93.434,86.6295 +748325,91.802,91.6763 +748326,91.888,89.983281 +748327,92.005,88.3153 +748328,92.15,86.6715 +748329,90.402,91.6732 +748330,90.528,89.9962688 +748331,90.683,88.3437 +748332,90.866,86.7147 +748333,89.002,91.6687 +748334,89.167,90.0087984 +748335,89.361,88.3725 +748336,89.582,86.7592 +748337,87.603,91.663 +748338,87.807,90.020874 +748339,88.039,88.4018 +748340,88.297,86.805 +748341,86.203,91.6559 +748342,86.446,90.0325 +748343,86.716,88.4314 +748344,87.012,86.8521 +748345,84.804,91.6476 +748346,85.085,90.04368 +748347,85.394,88.4614 +748348,85.727,86.9003 +748349,83.405,91.638 +748350,83.725,90.054419 +748351,84.071,88.4918 +748352,84.442,86.9498 +748353,82.006,91.6272 +748354,82.365,90.064721 +748355,82.748,88.5225 +748356,83.156,87.0006 +748357,80.608,91.6152 +748358,81.004,90.074593 +748359,81.425,88.5537 +748360,81.87,87.0525 +748361,79.21,91.6019 +748362,79.644,90.084039 +748363,80.102,88.5852 +748364,80.583,87.1056 +748365,77.813,91.5875 +748366,78.284,90.093065 +748367,78.779,88.6171 +748368,79.296,87.1599 +748369,76.416,91.5718 +748370,76.924,90.10168 +748371,77.456,88.6494 +748372,78.009,87.2153 +748373,75.019,91.5551 +748374,75.564,90.10988 +748375,76.132,88.682 +748376,76.721,87.2719 +748377,73.623,91.5371 +748378,74.205,90.11768 +748379,74.808,88.715 +748380,75.432,87.3296 +748381,72.227,91.5181 +748382,72.845,90.12508 +748383,73.484,88.7483 +748384,74.143,87.3884 +748385,70.832,91.498 +748386,71.486,90.13209 +748387,72.16,88.782 +748388,72.853,87.4483 +748389,69.438,91.4768 +748390,70.126,90.13872 +748391,70.835,88.816 +748392,71.563,87.5093 +748393,68.044,91.4545 +748394,68.767,90.14497 +748395,69.51,88.8503 +748396,70.272,87.5713 +748397,66.651,91.4312 +748398,67.408,90.15085 +748399,68.185,88.8849 +748400,68.98,87.6344 +748401,65.258,91.407 +748402,66.05,90.15637 +748403,66.86,88.9199 +748404,67.688,87.6984 +748405,63.866,91.3817 +748406,64.691,90.16154 +748407,65.534,88.9551 +748408,66.395,87.7634 +748409,62.475,91.3554 +748410,63.333,90.16635 +748411,64.208,88.9907 +748412,65.102,87.8294 +748413,61.084,91.3282 +748414,61.975,90.17083 +748415,62.882,89.0265 +748416,63.807,87.8964 +748417,59.695,91.3001 +748418,60.617,90.17497 +748419,61.556,89.06262 +748420,62.512,87.9642 +748421,58.306,91.2711 +748422,59.259,90.17879 +748423,60.229,89.09901 +748424,61.216,88.033 +748425,56.918,91.2413 +748426,57.901,90.18229 +748427,58.902,89.13567 +748428,59.919,88.1026 +748429,55.53,91.2106 +748430,56.544,90.18549 +748431,57.575,89.17258 +748432,58.621,88.1731 +748433,54.144,91.1791 +748434,55.187,90.18839 +748435,56.247,89.20974 +748436,57.323,88.2444 +748437,52.758,91.1468 +748438,53.831,90.19099 +748439,54.919,89.24714 +748440,56.023,88.3165 +748441,51.374,91.1137 +748442,52.474,90.19331 +748443,53.591,89.28477 +748444,54.723,88.3893 +748445,49.99,91.0799 +748446,51.118,90.19536 +748447,52.262,89.32262 +748448,53.421,88.463 +748449,48.607,91.0454 +748450,49.762,90.19715 +748451,50.933,89.36068 +748452,52.119,88.5373 +748453,47.225,91.0102 +748454,48.406,90.19868 +748455,49.604,89.39894 +748456,50.816,88.6123 +748457,45.844,90.97432 +748458,47.051,90.19996 +748459,48.274,89.43739 +748460,49.512,88.688 +748461,44.464,90.93785 +748462,45.696,90.20101 +748463,46.944,89.47603 +748464,48.206,88.7643 +748465,43.086,90.90078 +748466,44.341,90.20183 +748467,45.613,89.51485 +748468,46.9,88.8412 +748469,41.708,90.86314 +748470,42.987,90.20243 +748471,44.282,89.55383 +748472,45.593,88.9187 +748473,40.331,90.82496 +748474,41.633,90.20282 +748475,42.951,89.59296 +748476,44.284,88.9967 +748477,38.955,90.78627 +748478,40.279,90.20302 +748479,41.619,89.63223 +748480,42.975,89.07524 +748481,37.58,90.7471 +748482,38.925,90.20303 +748483,40.287,89.67164 +748484,41.664,89.15428 +748485,36.207,90.70748 +748486,37.572,90.20285 +748487,38.955,89.71118 +748488,40.353,89.23377 +748489,34.834,90.66744 +748490,36.22,90.20251 +748491,37.622,89.75082 +748492,39.04,89.31369 +748493,33.463,90.627 +748494,34.867,90.20201 +748495,36.288,89.79058 +748496,37.726,89.39401 +748497,32.093,90.58621 +748498,33.515,90.20136 +748499,34.955,89.83042 +748500,36.411,89.47469 +748501,30.724,90.54508 +748502,32.163,90.20057 +748503,33.62,89.87034 +748504,35.094,89.5557 +748505,29.356,90.50365 +748506,30.812,90.19966 +748507,32.286,89.910342 +748508,33.777,89.63701 +748509,27.989,90.46195 +748510,29.461,90.19862 +748511,30.951,89.9504 +748512,32.458,89.71859 +748513,26.624,90.42 +748514,28.11,90.19748 +748515,29.615,89.9905088 +748516,31.138,89.8004 +748517,25.259,90.37785 +748518,26.76,90.19624 +748519,28.279,90.030657 +748520,29.817,89.88243 +748521,23.896,90.33552 +748522,25.41,90.19492 +748523,26.943,90.070834 +748524,28.495,89.964617 +748525,22.534,90.29304 +748526,24.06,90.19351 +748527,25.606,90.11103 +748528,27.171,90.046947 +748529,21.174,90.25044 +748530,22.711,90.19204 +748531,24.269,90.15123 +748532,25.846,90.12938 +748533,19.814,90.20776 +748534,21.362,90.19052 +748535,22.931,90.19143 +748536,24.52,90.21189 +748537,18.456,90.16502 +748538,20.014,90.18895 +748539,21.593,90.23161 +748540,23.193,90.29444 +748541,17.099,90.12226 +748542,18.666,90.18734 +748543,20.254,90.27177 +748544,21.864,90.37699 +748545,15.743,90.0795 +748546,17.318,90.18571 +748547,18.915,90.31189 +748548,20.534,90.45952 +748549,14.389,90.036779 +748550,15.971,90.18407 +748551,17.576,90.35196 +748552,19.203,90.54199 +748553,13.035,89.9941254 +748554,14.624,90.18242 +748555,16.236,90.39197 +748556,17.87,90.62436 +748557,11.683,89.951571 +748558,13.278,90.18079 +748559,14.895,90.43192 +748560,16.536,90.7066 +748561,10.333,89.909145 +748562,11.932,90.17916 +748563,13.554,90.47178 +748564,15.201,90.78869 +748565,8.9831,89.86688 +748566,10.586,90.17757 +748567,12.213,90.51155 +748568,13.864,90.87058 +748569,7.6348,89.8248 +748570,9.2406,90.17601 +748571,10.871,90.55122 +748572,12.526,90.95224 +748573,6.2879,89.78295 +748574,7.8957,90.17451 +748575,9.5285,90.59077 +748576,11.187,91.0336 +748577,4.9421,89.74135 +748578,6.5511,90.17306 +748579,8.1856,90.6302 +748580,9.8467,91.1147 +748581,3.5977,89.70002 +748582,5.207,90.17168 +748583,6.8423,90.66949 +748584,8.5049,91.1955 +748585,2.2545,89.65901 +748586,3.8633,90.17038 +748587,5.4985,90.70864 +748588,7.1617,91.2759 +748589,0.91254,89.61834 +748590,2.5199,90.16918 +748591,4.1543,90.74763 +748592,5.8172,91.356 +748593,359.57,89.57805 +748594,1.177,90.16807 +748595,2.8096,90.78646 +748596,4.4713,91.4355 +748597,358.23,89.53815 +748598,359.83,90.16707 +748599,1.4644,90.8251 +748600,3.1242,91.5147 +748601,356.89,89.49868 +748602,358.49,90.16619 +748603,0.11869,90.86356 +748604,1.7757,91.5933 +748605,355.56,89.45967 +748606,357.15,90.16544 +748607,358.77,90.90181 +748608,0.42589,91.6714 +748609,354.22,89.42115 +748610,355.81,90.16483 +748611,357.43,90.93986 +748612,359.07,91.749 +748613,352.89,89.38314 +748614,354.47,90.16437 +748615,356.08,90.97768 +748616,357.72,91.826 +748617,351.55,89.34568 +748618,353.13,90.16407 +748619,354.73,91.0153 +748620,356.37,91.9023 +748621,350.22,89.30879 +748622,351.79,90.16394 +748623,353.38,91.0526 +748624,355.01,91.978 +748625,348.89,89.2725 +748626,350.45,90.16399 +748627,352.03,91.0897 +748628,353.66,92.053 +748629,347.56,89.23684 +748630,349.11,90.16422 +748631,350.69,91.1266 +748632,352.3,92.1273 +748633,346.23,89.20183 +748634,347.77,90.16465 +748635,349.34,91.1632 +748636,350.94,92.2009 +748637,344.91,89.16751 +748638,346.43,90.16529 +748639,347.99,91.1994 +748640,349.58,92.2736 +748641,343.58,89.13389 +748642,345.09,90.16614 +748643,346.64,91.2355 +748644,348.22,92.3456 +748645,342.25,89.10101 +748646,343.75,90.16722 +748647,345.29,91.2712 +748648,346.86,92.4168 +748649,340.93,89.06888 +748650,342.42,90.16853 +748651,343.93,91.3066 +748652,345.49,92.487 +748653,339.61,89.03755 +748654,341.08,90.17008 +748655,342.58,91.3416 +748656,344.13,92.5564 +748657,338.29,89.00702 +748658,339.74,90.17188 +748659,341.23,91.3764 +748660,342.76,92.6249 +748661,336.97,88.9773 +748662,338.4,90.17394 +748663,339.88,91.4108 +748664,341.39,92.6924 +748665,335.65,88.9485 +748666,337.07,90.17626 +748667,338.53,91.4449 +748668,340.02,92.7589 +748669,334.33,88.9206 +748670,335.73,90.17886 +748671,337.17,91.4786 +748672,338.65,92.8245 +748673,333.01,88.8935 +748674,334.4,90.18174 +748675,335.82,91.5119 +748676,337.28,92.889 +748677,331.69,88.8674 +748678,333.06,90.18491 +748679,334.46,91.5449 +748680,335.91,92.9525 +748681,330.38,88.8422 +748682,331.73,90.18838 +748683,333.11,91.5775 +748684,334.54,93.0148 +748685,329.06,88.8181 +748686,330.39,90.19216 +748687,331.76,91.6097 +748688,333.16,93.0761 +748689,327.75,88.7949 +748690,329.06,90.19625 +748691,330.4,91.6416 +748692,331.79,93.1363 +748693,326.44,88.7727 +748694,327.72,90.20065 +748695,329.04,91.673 +748696,330.41,93.1953 +748697,325.13,88.7516 +748698,326.39,90.20539 +748699,327.69,91.704 +748700,329.03,93.2531 +748701,323.82,88.7315 +748702,325.06,90.21046 +748703,326.33,91.7346 +748704,327.65,93.3097 +748705,322.51,88.7125 +748706,323.72,90.21586 +748707,324.98,91.7648 +748708,326.27,93.3651 +748709,321.2,88.6946 +748710,322.39,90.22162 +748711,323.62,91.7945 +748712,324.89,93.4193 +748713,319.89,88.6778 +748714,321.06,90.22772 +748715,322.26,91.8239 +748716,323.51,93.4722 +748717,318.59,88.6621 +748718,319.73,90.23419 +748719,320.9,91.8527 +748720,322.12,93.5238 +748721,317.28,88.6476 +748722,318.39,90.24102 +748723,319.54,91.8811 +748724,320.74,93.5742 +748725,315.97,88.6343 +748726,317.06,90.24822 +748727,318.19,91.9091 +748728,319.35,93.6232 +748729,314.67,88.6221 +748730,315.73,90.25579 +748731,316.83,91.9366 +748732,317.97,93.6709 +748733,313.37,88.6111 +748734,314.4,90.26374 +748735,315.47,91.9636 +748736,316.58,93.7172 +748737,312.06,88.6014 +748738,313.07,90.27208 +748739,314.11,91.9902 +748740,315.19,93.7622 +748741,310.76,88.5929 +748742,311.74,90.28081 +748743,312.75,92.0163 +748744,313.8,93.8058 +748745,309.46,88.5856 +748746,310.41,90.28994 +748747,311.39,92.0419 +748748,312.42,93.848 +748749,308.16,88.5795 +748750,309.08,90.29946 +748751,310.03,92.067 +748752,311.02,93.8888 +748753,306.86,88.5748 +748754,307.75,90.30939 +748755,308.67,92.0917 +748756,309.63,93.9281 +748757,305.56,88.5713 +748758,306.42,90.31973 +748759,307.31,92.1158 +748760,308.24,93.9661 +748761,304.26,88.5691 +748762,305.09,90.33047 +748763,305.95,92.1394 +748764,306.85,94.0025 +748765,302.96,88.5682 +748766,303.76,90.34163 +748767,304.58,92.1626 +748768,305.46,94.0375 +748769,301.67,88.5686 +748770,302.43,90.35321 +748771,303.22,92.1852 +748772,304.06,94.0711 +748773,300.37,88.5704 +748774,301.1,90.36521 +748775,301.86,92.2073 +748776,302.67,94.1032 +748777,299.07,88.5735 +748778,299.77,90.37763 +748779,300.5,92.2289 +748780,301.27,94.1338 +748781,297.77,88.5779 +748782,298.44,90.39047 +748783,299.14,92.25 +748784,299.88,94.1628 +748785,296.48,88.5836 +748786,297.11,90.40375 +748787,297.77,92.2706 +748788,298.48,94.1904 +748789,295.18,88.5907 +748790,295.78,90.41746 +748791,296.41,92.2906 +748792,297.08,94.2165 +748793,293.89,88.5992 +748794,294.45,90.43159 +748795,295.05,92.3102 +748796,295.68,94.2411 +748797,292.59,88.609 +748798,293.12,90.44617 +748799,293.68,92.3292 +748800,294.29,94.2642 +748801,291.3,88.6202 +748802,291.79,90.46117 +748803,292.32,92.3477 +748804,292.89,94.2857 +748805,290.01,88.6328 +748806,290.47,90.47661 +748807,290.96,92.3656 +748808,291.49,94.3057 +748809,288.71,88.6467 +748810,289.14,90.49249 +748811,289.59,92.3831 +748812,290.09,94.3242 +748813,287.42,88.6621 +748814,287.81,90.50881 +748815,288.23,92.4 +748816,288.69,94.3412 +748817,286.13,88.6788 +748818,286.48,90.52557 +748819,286.87,92.4164 +748820,287.29,94.3566 +748821,284.83,88.6968 +748822,285.15,90.54276 +748823,285.5,92.4322 +748824,285.89,94.3705 +748825,283.54,88.7163 +748826,283.82,90.5604 +748827,284.14,92.4475 +748828,284.49,94.3829 +748829,282.25,88.7371 +748830,282.5,90.57847 +748831,282.77,92.4623 +748832,283.09,94.3938 +748833,280.95,88.7594 +748834,281.17,90.59697 +748835,281.41,92.4766 +748836,281.69,94.4032 +748837,279.66,88.783 +748838,279.84,90.61592 +748839,280.05,92.4903 +748840,280.29,94.411 +748841,278.37,88.808 +748842,278.51,90.6353 +748843,278.68,92.5036 +748844,278.88,94.4173 +748845,277.08,88.8343 +748846,277.18,90.65511 +748847,277.32,92.5163 +748848,277.48,94.4222 +748849,275.79,88.862 +748850,275.85,90.67536 +748851,275.95,92.5284 +748852,276.08,94.4255 +748853,274.49,88.8911 +748854,274.53,90.69604 +748855,274.59,92.5401 +748856,274.68,94.4273 +748857,273.2,88.9216 +748858,273.2,90.71715 +748859,273.22,92.5512 +748860,273.28,94.4277 +748861,271.91,88.9534 +748862,271.87,90.73868 +748863,271.86,92.5618 +748864,271.88,94.4266 +748865,270.62,88.9865 +748866,270.54,90.76064 +748867,270.49,92.5719 +748868,270.47,94.424 +748869,269.32,89.02104 +748870,269.21,90.78302 +748871,269.13,92.5815 +748872,269.07,94.4199 +748873,268.03,89.05687 +748874,267.88,90.80581 +748875,267.76,92.5906 +748876,267.67,94.4145 +748877,266.74,89.09403 +748878,266.56,90.82903 +748879,266.4,92.5992 +748880,266.27,94.4075 +748881,265.44,89.1325 +748882,265.23,90.85265 +748883,265.03,92.6073 +748884,264.87,94.3992 +748885,264.15,89.17228 +748886,263.9,90.87669 +748887,263.67,92.6149 +748888,263.47,94.3894 +748889,262.86,89.21336 +748890,262.57,90.90112 +748891,262.31,92.622 +748892,262.07,94.3783 +748893,261.56,89.25571 +748894,261.24,90.92596 +748895,260.94,92.6286 +748896,260.66,94.3658 +748897,260.27,89.29934 +748898,259.91,90.9512 +748899,259.58,92.6347 +748900,259.26,94.3519 +748901,258.97,89.34423 +748902,258.58,90.97682 +748903,258.21,92.6403 +748904,257.86,94.3366 +748905,257.68,89.39037 +748906,257.25,91.0028 +748907,256.85,92.6455 +748908,256.46,94.3201 +748909,256.38,89.43774 +748910,255.92,91.0292 +748911,255.48,92.6502 +748912,255.06,94.3022 +748913,255.09,89.48633 +748914,254.59,91.056 +748915,254.12,92.6544 +748916,253.67,94.283 +748917,253.79,89.53612 +748918,253.26,91.0831 +748919,252.76,92.6582 +748920,252.27,94.2625 +748921,252.49,89.58709 +748922,251.93,91.1106 +748923,251.39,92.6615 +748924,250.87,94.2408 +748925,251.19,89.63924 +748926,250.6,91.1385 +748927,250.03,92.6644 +748928,249.47,94.2178 +748929,249.9,89.69254 +748930,249.27,91.1667 +748931,248.66,92.6668 +748932,248.07,94.1937 +748933,248.6,89.74697 +748934,247.94,91.1953 +748935,247.3,92.6689 +748936,246.68,94.1683 +748937,247.3,89.80253 +748938,246.61,91.2242 +748939,245.94,92.6704 +748940,245.28,94.1417 +748941,246,89.85918 +748942,245.28,91.2534 +748943,244.57,92.6716 +748944,243.89,94.114 +748945,244.7,89.916905 +748946,243.95,91.283 +748947,243.21,92.6723 +748948,242.49,94.0851 +748949,243.4,89.975692 +748950,242.62,91.3129 +748951,241.85,92.6727 +748952,241.1,94.0552 +748953,242.1,90.035517 +748954,241.28,91.3431 +748955,240.49,92.6726 +748956,239.7,94.0241 +748957,240.79,90.096358 +748958,239.95,91.3736 +748959,239.12,92.6722 +748960,238.31,93.992 +748961,239.49,90.15819 +748962,238.62,91.4044 +748963,237.76,92.6713 +748964,236.92,93.9589 +748965,238.19,90.221 +748966,237.29,91.4355 +748967,236.4,92.6701 +748968,235.53,93.9247 +748969,236.88,90.28476 +748970,235.95,91.4668 +748971,235.04,92.6686 +748972,234.13,93.8895 +748973,235.58,90.34944 +748974,234.62,91.4985 +748975,233.68,92.6666 +748976,232.74,93.8534 +748977,234.27,90.41502 +748978,233.29,91.5304 +748979,232.31,92.6643 +748980,231.35,93.8164 +748981,232.96,90.48148 +748982,231.95,91.5625 +748983,230.95,92.6617 +748984,229.97,93.7784 +748985,231.65,90.54879 +748986,230.62,91.5949 +748987,229.59,92.6588 +748988,228.58,93.7396 +748989,230.35,90.61693 +748990,229.28,91.6276 +748991,228.23,92.6555 +748992,227.19,93.6999 +748993,229.04,90.68587 +748994,227.95,91.6605 +748995,226.87,92.6519 +748996,225.81,93.6594 +748997,227.73,90.75558 +748998,226.61,91.6936 +748999,225.51,92.648 +749000,224.42,93.618 +749001,226.41,90.82604 +749002,225.28,91.7269 +749003,224.15,92.6438 +749004,223.04,93.576 +749005,225.1,90.89722 +749006,223.94,91.7604 +749007,222.79,92.6393 +749008,221.65,93.5331 +749009,223.79,90.96908 +749010,222.61,91.7941 +749011,221.43,92.6345 +749012,220.27,93.4896 +749013,222.47,91.0416 +749014,221.27,91.828 +749015,220.07,92.6295 +749016,218.89,93.4454 +749017,221.16,91.1148 +749018,219.93,91.862 +749019,218.72,92.6242 +749020,217.51,93.4005 +749021,219.84,91.1886 +749022,218.6,91.8962 +749023,217.36,92.6187 +749024,216.13,93.355 +749025,218.52,91.2629 +749026,217.26,91.9306 +749027,216,92.6129 +749028,214.75,93.3089 +749029,217.2,91.3378 +749030,215.92,91.9651 +749031,214.64,92.6069 +749032,213.38,93.2623 +749033,215.88,91.4132 +749034,214.58,91.9997 +749035,213.29,92.6007 +749036,212,93.2151 +749037,214.56,91.4891 +749038,213.24,92.0345 +749039,211.93,92.5943 +749040,210.62,93.1674 +749041,213.24,91.5654 +749042,211.9,92.0694 +749043,210.57,92.5876 +749044,209.25,93.1193 +749045,211.92,91.6422 +749046,210.56,92.1044 +749047,209.22,92.5808 +749048,207.88,93.0707 +749049,210.6,91.7194 +749050,209.22,92.1394 +749051,207.86,92.5738 +749052,206.51,93.0217 +749053,209.27,91.7969 +749054,207.88,92.1746 +749055,206.5,92.5667 +749056,205.14,92.9724 +749057,207.94,91.8747 +749058,206.54,92.2098 +749059,205.15,92.5594 +749060,203.77,92.9227 +749061,206.62,91.9529 +749062,205.2,92.245 +749063,203.79,92.5519 +749064,202.4,92.8727 +749065,205.29,92.0313 +749066,203.86,92.2804 +749067,202.44,92.5443 +749068,201.03,92.8224 +749069,203.96,92.1099 +749070,202.52,92.3157 +749071,201.09,92.5366 +749072,199.66,92.7719 +749073,202.63,92.1887 +749074,201.17,92.3511 +749075,199.73,92.5288 +749076,198.3,92.7211 +749077,201.29,92.2677 +749078,199.83,92.3865 +749079,198.38,92.5209 +749080,196.94,92.6702 +749081,199.96,92.3469 +749082,198.49,92.4219 +749083,197.02,92.5129 +749084,195.57,92.6191 +749085,198.63,92.4261 +749086,197.14,92.4572 +749087,195.67,92.5048 +749088,194.21,92.568 +749089,197.29,92.5054 +749090,195.8,92.4926 +749091,194.32,92.4966 +749092,192.85,92.5167 +749093,195.95,92.5847 +749094,194.46,92.5279 +749095,192.97,92.4884 +749096,191.49,92.4654 +749097,194.61,92.664 +749098,193.11,92.5632 +749099,191.62,92.4802 +749100,190.13,92.414 +749101,193.28,92.7433 +749102,191.76,92.5984 +749103,190.27,92.4719 +749104,188.78,92.3627 +749105,191.93,92.8225 +749106,190.42,92.6336 +749107,188.91,92.4635 +749108,187.42,92.3114 +749109,190.59,92.9015 +749110,189.07,92.6687 +749111,187.56,92.4552 +749112,186.07,92.2602 +749113,189.25,92.9805 +749114,187.73,92.7037 +749115,186.21,92.4468 +749116,184.72,92.2091 +749117,187.9,93.0593 +749118,186.38,92.7386 +749119,184.86,92.4385 +749120,183.36,92.1582 +749121,186.56,93.1378 +749122,185.03,92.7733 +749123,183.51,92.4302 +749124,182.01,92.1074 +749125,185.21,93.2161 +749126,183.68,92.808 +749127,182.17,92.4219 +749128,180.66,92.0568 +749129,183.86,93.2942 +749130,182.33,92.8425 +749131,180.82,92.4137 +749132,179.32,92.0065 +749133,182.51,93.3719 +749134,180.98,92.8769 +749135,179.47,92.4055 +749136,177.97,91.9564 +749137,181.16,93.4493 +749138,179.64,92.9111 +749139,178.12,92.3973 +749140,176.62,91.9066 +749141,179.81,93.5263 +749142,178.29,92.9452 +749143,176.77,92.3893 +749144,175.28,91.8572 +749145,178.46,93.6029 +749146,176.93,92.9791 +749147,175.43,92.3813 +749148,173.94,91.8081 +749149,177.1,93.679 +749150,175.58,93.0128 +749151,174.08,92.3734 +749152,172.59,91.7594 +749153,175.75,93.7546 +749154,174.23,93.0463 +749155,172.73,92.3656 +749156,171.25,91.7111 +749157,174.39,93.8298 +749158,172.88,93.0795 +749159,171.39,92.3579 +749160,169.91,91.6633 +749161,173.03,93.9044 +749162,171.53,93.1126 +749163,170.04,92.3504 +749164,168.57,91.616 +749165,171.67,93.9784 +749166,170.18,93.1454 +749167,168.7,92.343 +749168,167.24,91.5691 +749169,170.31,94.0518 +749170,168.82,93.178 +749171,167.35,92.3357 +749172,165.9,91.5228 +749173,168.95,94.1245 +749174,167.47,93.2103 +749175,166.01,92.3286 +749176,164.57,91.4771 +749177,167.59,94.1966 +749178,166.12,93.2424 +749179,164.66,92.3216 +749180,163.23,91.432 +749181,166.22,94.2679 +749182,164.76,93.2742 +749183,163.32,92.3148 +749184,161.9,91.3875 +749185,164.86,94.3385 +749186,163.41,93.3057 +749187,161.98,92.3083 +749188,160.57,91.3436 +749189,163.49,94.4083 +749190,162.05,93.3369 +749191,160.63,92.3018 +749192,159.24,91.3005 +749193,162.12,94.4774 +749194,160.7,93.3678 +749195,159.29,92.2956 +749196,157.91,91.258 +749197,160.76,94.5455 +749198,159.34,93.3984 +749199,157.95,92.2897 +749200,156.58,91.2163 +749201,159.39,94.6129 +749202,157.99,93.4287 +749203,156.61,92.2839 +749204,155.25,91.1753 +749205,158.01,94.6793 +749206,156.63,93.4586 +749207,155.27,92.2783 +749208,153.92,91.1351 +749209,156.64,94.7448 +749210,155.27,93.4882 +749211,153.92,92.273 +749212,152.6,91.0958 +749213,155.27,94.8093 +749214,153.91,93.5175 +749215,152.58,92.268 +749216,151.27,91.0572 +749217,153.89,94.8728 +749218,152.56,93.5463 +749219,151.24,92.2632 +749220,149.95,91.0196 +749221,152.52,94.9354 +749222,151.2,93.5748 +749223,149.9,92.2586 +749224,148.63,90.98279 +749225,151.14,94.9969 +749226,149.84,93.603 +749227,148.56,92.2544 +749228,147.31,90.94693 +749229,149.76,95.0573 +749230,148.48,93.6307 +749231,147.22,92.2504 +749232,145.99,90.91201 +749233,148.38,95.1166 +749234,147.12,93.658 +749235,145.88,92.2467 +749236,144.67,90.87804 +749237,147,95.1748 +749238,145.76,93.685 +749239,144.54,92.2433 +749240,143.35,90.84506 +749241,145.62,95.2318 +749242,144.4,93.7115 +749243,143.21,92.2402 +749244,142.03,90.81308 +749245,144.24,95.2877 +749246,143.04,93.7376 +749247,141.87,92.2374 +749248,140.72,90.78212 +749249,142.86,95.3424 +749250,141.68,93.7633 +749251,140.53,92.235 +749252,139.4,90.75221 +749253,141.47,95.3959 +749254,140.32,93.7885 +749255,139.19,92.2328 +749256,138.09,90.72337 +749257,140.09,95.4481 +749258,138.96,93.8133 +749259,137.85,92.231 +749260,136.77,90.69561 +749261,138.7,95.499 +749262,137.6,93.8376 +749263,136.52,92.2295 +749264,135.46,90.66897 +749265,137.32,95.5487 +749266,136.23,93.8615 +749267,135.18,92.2284 +749268,134.15,90.64344 +749269,135.93,95.597 +749270,134.87,93.8849 +749271,133.84,92.2276 +749272,132.84,90.61906 +749273,134.54,95.644 +749274,133.51,93.9079 +749275,132.51,92.2272 +749276,131.53,90.59584 +749277,133.15,95.6897 +749278,132.15,93.9303 +749279,131.17,92.2272 +749280,130.22,90.5738 +749281,131.76,95.734 +749282,130.78,93.9523 +749283,129.83,92.2275 +749284,128.91,90.55296 +749285,130.37,95.7769 +749286,129.42,93.9738 +749287,128.5,92.2282 +749288,127.6,90.53332 +749289,128.98,95.8183 +749290,128.06,93.9948 +749291,127.16,92.2293 +749292,126.29,90.51491 +749293,127.59,95.8584 +749294,126.69,94.0153 +749295,125.83,92.2307 +749296,124.98,90.49775 +749297,126.19,95.897 +749298,125.33,94.0353 +749299,124.49,92.2326 +749300,123.68,90.48184 +749301,124.8,95.9342 +749302,123.96,94.0547 +749303,123.16,92.2348 +749304,122.37,90.4672 +749305,123.41,95.9699 +749306,122.6,94.0737 +749307,121.82,92.2375 +749308,121.06,90.45384 +749309,122.01,96.0041 +749310,121.23,94.0921 +749311,120.49,92.2405 +749312,119.76,90.44178 +749313,120.62,96.0368 +749314,119.87,94.1101 +749315,119.15,92.244 +749316,118.46,90.43102 +749317,119.22,96.0679 +749318,118.5,94.1274 +749319,117.82,92.2478 +749320,117.15,90.42158 +749321,117.82,96.0976 +749322,117.14,94.1443 +749323,116.48,92.2521 +749324,115.85,90.41346 +749325,116.42,96.1257 +749326,115.77,94.1606 +749327,115.15,92.2568 +749328,114.55,90.40669 +749329,115.03,96.1523 +749330,114.41,94.1764 +749331,113.81,92.2619 +749332,113.24,90.40126 +749333,113.63,96.1774 +749334,113.04,94.1916 +749335,112.48,92.2675 +749336,111.94,90.39719 +749337,112.23,96.2008 +749338,111.67,94.2063 +749339,111.15,92.2734 +749340,110.64,90.39447 +749341,110.83,96.2227 +749342,110.31,94.2204 +749343,109.81,92.2798 +749344,109.34,90.39313 +749345,109.43,96.243 +749346,108.94,94.234 +749347,108.48,92.2866 +749348,108.04,90.39317 +749349,108.03,96.2618 +749350,107.57,94.2471 +749351,107.15,92.2939 +749352,106.74,90.39458 +749353,106.63,96.2789 +749354,106.21,94.2595 +749355,105.81,92.3016 +749356,105.44,90.39738 +749357,105.23,96.2945 +749358,104.84,94.2715 +749359,104.48,92.3097 +749360,104.14,90.40157 +749361,103.83,96.3084 +749362,103.47,94.2828 +749363,103.15,92.3183 +749364,102.84,90.40716 +749365,102.43,96.3208 +749366,102.11,94.2936 +749367,101.81,92.3273 +749368,101.54,90.41415 +749369,101.02,96.3316 +749370,100.74,94.3039 +749371,100.48,92.3367 +749372,100.24,90.42253 +749373,99.622,96.3408 +749374,99.372,94.3136 +749375,99.146,92.3466 +749376,98.938,90.43231 +749377,98.22,96.3483 +749378,98.005,94.3227 +749379,97.812,92.3569 +749380,97.639,90.4435 +749381,96.817,96.3543 +749382,96.637,94.3313 +749383,96.479,92.3676 +749384,96.34,90.45609 +749385,95.415,96.3587 +749386,95.27,94.3393 +749387,95.146,92.3788 +749388,95.041,90.47008 +749389,94.013,96.3615 +749390,93.902,94.3468 +749391,93.813,92.3904 +749392,93.742,90.48547 +749393,92.61,96.3627 +749394,92.535,94.3537 +749395,92.48,92.4025 +749396,92.443,90.50225 +749397,91.207,96.3623 +749398,91.167,94.3601 +749399,91.147,92.415 +749400,91.144,90.52044 +749401,89.805,96.3603 +749402,89.799,94.3659 +749403,89.813,92.4279 +749404,89.844,90.54001 +749405,88.402,96.3568 +749406,88.432,94.3711 +749407,88.48,92.4413 +749408,88.545,90.56097 +749409,87,96.3517 +749410,87.064,94.3758 +749411,87.147,92.4551 +749412,87.246,90.58332 +749413,85.597,96.345 +749414,85.696,94.3799 +749415,85.814,92.4693 +749416,85.947,90.60704 +749417,84.195,96.3368 +749418,84.329,94.3835 +749419,84.48,92.4839 +749420,84.647,90.63214 +749421,82.793,96.3271 +749422,82.961,94.3866 +749423,83.147,92.499 +749424,83.347,90.65859 +749425,81.39,96.3158 +749426,81.594,94.3891 +749427,81.813,92.5145 +749428,82.047,90.68641 +749429,79.989,96.303 +749430,80.226,94.3911 +749431,80.479,92.5304 +749432,80.747,90.71557 +749433,78.587,96.2887 +749434,78.859,94.3926 +749435,79.146,92.5467 +749436,79.446,90.74607 +749437,77.186,96.2729 +749438,77.491,94.3935 +749439,77.812,92.5634 +749440,78.146,90.77791 +749441,75.785,96.2557 +749442,76.124,94.3939 +749443,76.478,92.5806 +749444,76.844,90.81106 +749445,74.384,96.2369 +749446,74.757,94.3937 +749447,75.144,92.5981 +749448,75.543,90.84552 +749449,72.983,96.2167 +749450,73.39,94.3931 +749451,73.809,92.616 +749452,74.241,90.88128 +749453,71.583,96.1951 +749454,72.023,94.3919 +749455,72.475,92.6344 +749456,72.939,90.91832 +749457,70.183,96.1721 +749458,70.656,94.3903 +749459,71.14,92.6531 +749460,71.636,90.95663 +749461,68.784,96.1477 +749462,69.289,94.3881 +749463,69.806,92.6722 +749464,70.333,90.9962 +749465,67.385,96.1218 +749466,67.922,94.3855 +749467,68.471,92.6917 +749468,69.03,91.037 +749469,65.987,96.0947 +749470,66.556,94.3823 +749471,67.136,92.7115 +749472,67.725,91.0791 +749473,64.589,96.0661 +749474,65.19,94.3787 +749475,65.8,92.7317 +749476,66.421,91.1223 +749477,63.192,96.0363 +749478,63.823,94.3746 +749479,64.465,92.7523 +749480,65.116,91.1668 +749481,61.795,96.0051 +749482,62.457,94.37 +749483,63.129,92.7733 +749484,63.81,91.2124 +749485,60.399,95.9727 +749486,61.092,94.3649 +749487,61.793,92.7945 +749488,62.504,91.2592 +749489,59.003,95.939 +749490,59.726,94.3594 +749491,60.457,92.8162 +749492,61.197,91.3071 +749493,57.608,95.9041 +749494,58.36,94.3534 +749495,59.121,92.8382 +749496,59.889,91.3562 +749497,56.214,95.8679 +749498,56.995,94.347 +749499,57.784,92.8605 +749500,58.581,91.4064 +749501,54.82,95.8306 +749502,55.63,94.3402 +749503,56.448,92.8831 +749504,57.272,91.4576 +749505,53.427,95.7921 +749506,54.265,94.3329 +749507,55.111,92.906 +749508,55.962,91.51 +749509,52.035,95.7524 +749510,52.901,94.3252 +749511,53.773,92.9293 +749512,54.652,91.5633 +749513,50.644,95.7117 +749514,51.536,94.3171 +749515,52.436,92.9528 +749516,53.341,91.6177 +749517,49.253,95.6698 +749518,50.172,94.3086 +749519,51.098,92.9767 +749520,52.029,91.6731 +749521,47.863,95.6269 +749522,48.808,94.2996 +749523,49.76,93.0008 +749524,50.716,91.7295 +749525,46.474,95.5829 +749526,47.445,94.2903 +749527,48.421,93.0252 +749528,49.403,91.7868 +749529,45.086,95.538 +749530,46.081,94.2806 +749531,47.083,93.0499 +749532,48.089,91.8451 +749533,43.698,95.492 +749534,44.718,94.2706 +749535,45.743,93.0748 +749536,46.773,91.9042 +749537,42.312,95.4451 +749538,43.355,94.2602 +749539,44.404,93.1 +749540,45.457,91.9643 +749541,40.926,95.3973 +749542,41.993,94.2494 +749543,43.065,93.1254 +749544,44.14,92.0252 +749545,39.541,95.3485 +749546,40.631,94.2382 +749547,41.725,93.1511 +749548,42.823,92.0869 +749549,38.157,95.2989 +749550,39.269,94.2268 +749551,40.384,93.177 +749552,41.504,92.1495 +749553,36.774,95.2485 +749554,37.907,94.215 +749555,39.044,93.2031 +749556,40.184,92.2128 +749557,35.392,95.1973 +749558,36.546,94.2029 +749559,37.703,93.2294 +749560,38.863,92.2769 +749561,34.011,95.1452 +749562,35.184,94.1905 +749563,36.362,93.2559 +749564,37.542,92.3417 +749565,32.631,95.0925 +749566,33.824,94.1778 +749567,35.02,93.2826 +749568,36.219,92.4072 +749569,31.252,95.039 +749570,32.463,94.1648 +749571,33.678,93.3095 +749572,34.896,92.4733 +749573,29.874,94.9848 +749574,31.103,94.1515 +749575,32.336,93.3365 +749576,33.571,92.5401 +749577,28.498,94.93 +749578,29.743,94.138 +749579,30.993,93.3637 +749580,32.245,92.6075 +749581,27.122,94.8746 +749582,28.384,94.1242 +749583,29.65,93.391 +749584,30.919,92.6755 +749585,25.747,94.8185 +749586,27.025,94.1101 +749587,28.307,93.4185 +749588,29.591,92.7441 +749589,24.373,94.762 +749590,25.666,94.0958 +749591,26.963,93.4461 +749592,28.262,92.8131 +749593,23,94.7048 +749594,24.308,94.0813 +749595,25.619,93.4738 +749596,26.932,92.8827 +749597,21.629,94.6472 +749598,22.95,94.0666 +749599,24.274,93.5016 +749600,25.601,92.9527 +749601,20.258,94.5892 +749602,21.592,94.0517 +749603,22.929,93.5295 +749604,24.269,93.0231 +749605,18.889,94.5307 +749606,20.235,94.0366 +749607,21.584,93.5575 +749608,22.936,93.0939 +749609,17.521,94.4718 +749610,18.878,94.0213 +749611,20.238,93.5856 +749612,21.601,93.1651 +749613,16.154,94.4126 +749614,17.521,94.0059 +749615,18.892,93.6137 +749616,20.266,93.2366 +749617,14.788,94.353 +749618,16.165,93.9902 +749619,17.546,93.6419 +749620,18.929,93.3084 +749621,13.423,94.2931 +749622,14.809,93.9745 +749623,16.199,93.6701 +749624,17.591,93.3805 +749625,12.059,94.233 +749626,13.453,93.9586 +749627,14.852,93.6984 +749628,16.253,93.4528 +749629,10.697,94.1727 +749630,12.098,93.9425 +749631,13.504,93.7266 +749632,14.912,93.5253 +749633,9.3352,94.1121 +749634,10.743,93.9264 +749635,12.156,93.7549 +749636,13.571,93.598 +749637,7.975,94.0514 +749638,9.389,93.9101 +749639,10.807,93.7831 +749640,12.229,93.6708 +749641,6.616,93.9906 +749642,8.0349,93.8938 +749643,9.4585,93.8114 +749644,10.885,93.7437 +749645,5.2582,93.9297 +749646,6.6813,93.8774 +749647,8.1093,93.8396 +749648,9.5404,93.8167 +749649,3.9015,93.8687 +749650,5.3281,93.8609 +749651,6.7596,93.8678 +749652,8.1944,93.8897 +749653,2.546,93.8077 +749654,3.9752,93.8443 +749655,5.4095,93.8959 +749656,6.8472,93.9627 +749657,1.1917,93.7467 +749658,2.6227,93.8277 +749659,4.059,93.924 +749660,5.4989,94.0357 +749661,359.84,93.6858 +749662,1.2706,93.8111 +749663,2.7081,93.9519 +749664,4.1493,94.1086 +749665,358.49,93.6249 +749666,359.92,93.7944 +749667,1.3567,93.9798 +749668,2.7986,94.1814 +749669,357.14,93.5641 +749670,358.57,93.7778 +749671,0.0050193,94.0076 +749672,1.4466,94.254 +749673,355.79,93.5035 +749674,357.22,93.7611 +749675,358.65,94.0353 +749676,0.093512,94.3265 +749677,354.44,93.443 +749678,355.87,93.7444 +749679,357.3,94.0629 +749680,358.74,94.3988 +749681,353.09,93.3828 +749682,354.52,93.7278 +749683,355.95,94.0903 +749684,357.38,94.4708 +749685,351.74,93.3227 +749686,353.17,93.7112 +749687,354.59,94.1176 +749688,356.03,94.5425 +749689,350.4,93.263 +749690,351.82,93.6946 +749691,353.24,94.1448 +749692,354.67,94.614 +749693,349.06,93.2035 +749694,350.47,93.6781 +749695,351.89,94.1718 +749696,353.31,94.6851 +749697,347.71,93.1444 +749698,349.12,93.6616 +749699,350.53,94.1986 +749700,351.95,94.7558 +749701,346.37,93.0857 +749702,347.77,93.6452 +749703,349.18,94.2252 +749704,350.59,94.8261 +749705,345.03,93.0273 +749706,346.42,93.6289 +749707,347.82,94.2516 +749708,349.23,94.8959 +749709,343.69,92.9694 +749710,345.08,93.6127 +749711,346.47,94.2778 +749712,347.86,94.9653 +749713,342.35,92.9119 +749714,343.73,93.5966 +749715,345.11,94.3038 +749716,346.5,95.0341 +749717,341.02,92.855 +749718,342.38,93.5806 +749719,343.75,94.3296 +749720,345.13,95.1024 +749721,339.68,92.7985 +749722,341.03,93.5648 +749723,342.4,94.3551 +749724,343.76,95.1702 +749725,338.35,92.7426 +749726,339.69,93.5491 +749727,341.04,94.3803 +749728,342.4,95.2373 +749729,337.01,92.6873 +749730,338.34,93.5335 +749731,339.68,94.4053 +749732,341.03,95.3037 +749733,335.68,92.6325 +749734,337,93.5181 +749735,338.32,94.4301 +749736,339.66,95.3695 +749737,334.35,92.5784 +749738,335.65,93.5028 +749739,336.96,94.4545 +749740,338.28,95.4346 +749741,333.02,92.525 +749742,334.31,93.4878 +749743,335.61,94.4786 +749744,336.91,95.4989 +749745,331.69,92.4723 +749746,332.96,93.4729 +749747,334.25,94.5025 +749748,335.54,95.5624 +749749,330.36,92.4203 +749750,331.62,93.4582 +749751,332.89,94.526 +749752,334.16,95.6251 +749753,329.03,92.369 +749754,330.28,93.4438 +749755,331.53,94.5492 +749756,332.79,95.687 +749757,327.71,92.3185 +749758,328.93,93.4295 +749759,330.17,94.572 +749760,331.41,95.748 +749761,326.38,92.2689 +749762,327.59,93.4155 +749763,328.81,94.5946 +749764,330.03,95.8081 +749765,325.06,92.22 +749766,326.25,93.4017 +749767,327.44,94.6167 +749768,328.65,95.8673 +749769,323.74,92.172 +749770,324.91,93.3881 +749771,326.08,94.6385 +749772,327.27,95.9255 +749773,322.41,92.1249 +749774,323.56,93.3748 +749775,324.72,94.6599 +749776,325.89,95.9828 +749777,321.09,92.0787 +749778,322.22,93.3618 +749779,323.36,94.681 +749780,324.51,96.039 +749781,319.77,92.0334 +749782,320.88,93.349 +749783,322,94.7016 +749784,323.12,96.0941 +749785,318.45,91.989 +749786,319.54,93.3365 +749787,320.63,94.7219 +749788,321.74,96.1482 +749789,317.13,91.9457 +749790,318.2,93.3243 +749791,319.27,94.7417 +749792,320.36,96.2012 +749793,315.81,91.9033 +749794,316.86,93.3124 +749795,317.91,94.7611 +749796,318.97,96.2531 +749797,314.5,91.8619 +749798,315.52,93.3007 +749799,316.55,94.7801 +749800,317.58,96.3037 +749801,313.18,91.8216 +749802,314.18,93.2894 +749803,315.18,94.7987 +749804,316.2,96.3533 +749805,311.87,91.7824 +749806,312.84,93.2784 +749807,313.82,94.8168 +749808,314.81,96.4016 +749809,310.55,91.7442 +749810,311.5,93.2678 +749811,312.45,94.8345 +749812,313.42,96.4486 +749813,309.24,91.7072 +749814,310.16,93.2574 +749815,311.09,94.8517 +749816,312.03,96.4944 +749817,307.92,91.6712 +749818,308.82,93.2474 +749819,309.72,94.8684 +749820,310.64,96.539 +749821,306.61,91.6364 +749822,307.48,93.2378 +749823,308.36,94.8847 +749824,309.25,96.5822 +749825,305.3,91.6028 +749826,306.14,93.2285 +749827,306.99,94.9005 +749828,307.85,96.6241 +749829,303.99,91.5703 +749830,304.8,93.2195 +749831,305.63,94.9158 +749832,306.46,96.6647 +749833,302.68,91.5391 +749834,303.47,93.2109 +749835,304.26,94.9307 +749836,305.07,96.7038 +749837,301.37,91.509 +749838,302.13,93.2027 +749839,302.9,94.945 +749840,303.67,96.7416 +749841,300.06,91.4802 +749842,300.79,93.1949 +749843,301.53,94.9588 +749844,302.28,96.778 +749845,298.75,91.4526 +749846,299.45,93.1874 +749847,300.16,94.9721 +749848,300.88,96.813 +749849,297.44,91.4263 +749850,298.12,93.1803 +749851,298.8,94.9849 +749852,299.48,96.8465 +749853,296.14,91.4012 +749854,296.78,93.1736 +749855,297.43,94.9972 +749856,298.09,96.8786 +749857,294.83,91.3774 +749858,295.44,93.1673 +749859,296.06,95.009 +749860,296.69,96.9092 +749861,293.52,91.3549 +749862,294.11,93.1614 +749863,294.69,95.0202 +749864,295.29,96.9383 +749865,292.22,91.3338 +749866,292.77,93.1559 +749867,293.33,95.0309 +749868,293.89,96.9659 +749869,290.91,91.3139 +749870,291.43,93.1508 +749871,291.96,95.0411 +749872,292.49,96.9919 +749873,289.61,91.2954 +749874,290.1,93.1461 +749875,290.59,95.0507 +749876,291.1,97.0165 +749877,288.3,91.2782 +749878,288.76,93.1418 +749879,289.22,95.0597 +749880,289.7,97.0395 +749881,287,91.2624 +749882,287.42,93.138 +749883,287.86,95.0683 +749884,288.29,97.0609 +749885,285.69,91.2479 +749886,286.09,93.1345 +749887,286.49,95.0762 +749888,286.89,97.0807 +749889,284.39,91.2348 +749890,284.75,93.1315 +749891,285.12,95.0836 +749892,285.49,97.099 +749893,283.09,91.2231 +749894,283.42,93.1289 +749895,283.75,95.0905 +749896,284.09,97.1157 +749897,281.78,91.2128 +749898,282.08,93.1268 +749899,282.38,95.0968 +749900,282.69,97.1308 +749901,280.48,91.2038 +749902,280.74,93.125 +749903,281.01,95.1025 +749904,281.29,97.1443 +749905,279.18,91.1963 +749906,279.41,93.1237 +749907,279.65,95.1076 +749908,279.89,97.1561 +749909,277.88,91.1901 +749910,278.07,93.1229 +749911,278.28,95.1122 +749912,278.48,97.1664 +749913,276.57,91.1853 +749914,276.74,93.1224 +749915,276.91,95.1162 +749916,277.08,97.175 +749917,275.27,91.182 +749918,275.4,93.1224 +749919,275.54,95.1197 +749920,275.68,97.182 +749921,273.97,91.18 +749922,274.07,93.1229 +749923,274.17,95.1226 +749924,274.28,97.1874 +749925,272.67,91.1795 +749926,272.73,93.1237 +749927,272.8,95.1249 +749928,272.87,97.1912 +749929,271.36,91.1804 +749930,271.4,93.125 +749931,271.43,95.1266 +749932,271.47,97.1933 +749933,270.06,91.1826 +749934,270.06,93.1268 +749935,270.06,95.1278 +749936,270.07,97.1938 +749937,268.76,91.1863 +749938,268.73,93.129 +749939,268.69,95.1283 +749940,268.67,97.1926 +749941,267.46,91.1914 +749942,267.39,93.1316 +749943,267.33,95.1284 +749944,267.26,97.1899 +749945,266.16,91.1979 +749946,266.06,93.1347 +749947,265.96,95.1278 +749948,265.86,97.1855 +749949,264.85,91.2058 +749950,264.72,93.1382 +749951,264.59,95.1267 +749952,264.46,97.1794 +749953,263.55,91.2152 +749954,263.38,93.1421 +749955,263.22,95.125 +749956,263.05,97.1718 +749957,262.25,91.2259 +749958,262.05,93.1465 +749959,261.85,95.1227 +749960,261.65,97.1625 +749961,260.95,91.238 +749962,260.71,93.1513 +749963,260.48,95.1199 +749964,260.25,97.1516 +749965,259.64,91.2515 +749966,259.38,93.1565 +749967,259.11,95.1165 +749968,258.85,97.1392 +749969,258.34,91.2664 +749970,258.04,93.1621 +749971,257.74,95.1125 +749972,257.45,97.1251 +749973,257.04,91.2826 +749974,256.71,93.1682 +749975,256.38,95.108 +749976,256.04,97.1094 +749977,255.73,91.3002 +749978,255.37,93.1747 +749979,255.01,95.103 +749980,254.64,97.0922 +749981,254.43,91.3192 +749982,254.03,93.1817 +749983,253.64,95.0973 +749984,253.24,97.0734 +749985,253.13,91.3396 +749986,252.7,93.189 +749987,252.27,95.0912 +749988,251.84,97.053 +749989,251.82,91.3613 +749990,251.36,93.1967 +749991,250.9,95.0844 +749992,250.44,97.0311 +749993,250.52,91.3843 +749994,250.03,93.2049 +749995,249.53,95.0772 +749996,249.04,97.0077 +749997,249.21,91.4086 +749998,248.69,93.2135 +749999,248.17,95.0694 +750000,247.64,96.9827 +750001,247.9,91.4343 +750002,247.35,93.2224 +750003,246.8,95.061 +750004,246.24,96.9563 +750005,246.6,91.4612 +750006,246.02,93.2318 +750007,245.43,95.0522 +750008,244.84,96.9283 +750009,245.29,91.4895 +750010,244.68,93.2416 +750011,244.06,95.0428 +750012,243.45,96.8989 +750013,243.98,91.519 +750014,243.34,93.2517 +750015,242.7,95.0329 +750016,242.05,96.868 +750017,242.68,91.5497 +750018,242,93.2623 +750019,241.33,95.0224 +750020,240.65,96.8357 +750021,241.37,91.5818 +750022,240.67,93.2732 +750023,239.96,95.0115 +750024,239.26,96.8019 +750025,240.06,91.615 +750026,239.33,93.2845 +750027,238.6,95.0001 +750028,237.86,96.7668 +750029,238.75,91.6495 +750030,237.99,93.2961 +750031,237.23,94.9881 +750032,236.47,96.7303 +750033,237.44,91.6851 +750034,236.65,93.3081 +750035,235.86,94.9757 +750036,235.07,96.6924 +750037,236.13,91.722 +750038,235.32,93.3205 +750039,234.5,94.9628 +750040,233.68,96.6531 +750041,234.82,91.76 +750042,233.98,93.3332 +750043,233.13,94.9494 +750044,232.28,96.6126 +750045,233.51,91.7991 +750046,232.64,93.3463 +750047,231.77,94.9355 +750048,230.89,96.5707 +750049,232.19,91.8394 +750050,231.3,93.3597 +750051,230.4,94.9212 +750052,229.5,96.5276 +750053,230.88,91.8808 +750054,229.96,93.3735 +750055,229.04,94.9064 +750056,228.11,96.4832 +750057,229.56,91.9233 +750058,228.62,93.3875 +750059,227.67,94.8912 +750060,226.72,96.4376 +750061,228.25,91.9668 +750062,227.28,93.4019 +750063,226.31,94.8755 +750064,225.33,96.3907 +750065,226.93,92.0114 +750066,225.94,93.4166 +750067,224.94,94.8594 +750068,223.94,96.3427 +750069,225.62,92.057 +750070,224.6,93.4316 +750071,223.58,94.8428 +750072,222.55,96.2936 +750073,224.3,92.1036 +750074,223.26,93.4468 +750075,222.22,94.8259 +750076,221.17,96.2433 +750077,222.98,92.1512 +750078,221.92,93.4624 +750079,220.85,94.8085 +750080,219.78,96.1919 +750081,221.66,92.1997 +750082,220.58,93.4782 +750083,219.49,94.7908 +750084,218.4,96.1395 +750085,220.34,92.2492 +750086,219.24,93.4943 +750087,218.13,94.7726 +750088,217.01,96.086 +750089,219.02,92.2996 +750090,217.89,93.5107 +750091,216.76,94.7541 +750092,215.63,96.0315 +750093,217.7,92.3508 +750094,216.55,93.5273 +750095,215.4,94.7352 +750096,214.25,95.976 +750097,216.38,92.4029 +750098,215.21,93.5442 +750099,214.04,94.7159 +750100,212.86,95.9195 +750101,215.05,92.4559 +750102,213.87,93.5613 +750103,212.68,94.6962 +750104,211.48,95.8621 +750105,213.73,92.5096 +750106,212.52,93.5786 +750107,211.32,94.6763 +750108,210.11,95.8038 +750109,212.4,92.5642 +750110,211.18,93.5962 +750111,209.96,94.656 +750112,208.73,95.7447 +750113,211.07,92.6195 +750114,209.84,93.6139 +750115,208.6,94.6353 +750116,207.35,95.6847 +750117,209.75,92.6755 +750118,208.49,93.6318 +750119,207.24,94.6144 +750120,205.97,95.6239 +750121,208.42,92.7322 +750122,207.15,93.65 +750123,205.88,94.5931 +750124,204.6,95.5623 +750125,207.09,92.7896 +750126,205.8,93.6683 +750127,204.52,94.5715 +750128,203.22,95.5 +750129,205.76,92.8476 +750130,204.46,93.6867 +750131,203.16,94.5497 +750132,201.85,95.437 +750133,204.42,92.9062 +750134,203.11,93.7054 +750135,201.8,94.5276 +750136,200.48,95.3733 +750137,203.09,92.9654 +750138,201.77,93.7241 +750139,200.44,94.5052 +750140,199.11,95.309 +750141,201.76,93.0252 +750142,200.42,93.7431 +750143,199.08,94.4825 +750144,197.74,95.244 +750145,200.42,93.0854 +750146,199.08,93.7621 +750147,197.73,94.4597 +750148,196.37,95.1785 +750149,199.09,93.1462 +750150,197.73,93.7812 +750151,196.37,94.4365 +750152,195,95.1124 +750153,197.75,93.2075 +750154,196.38,93.8005 +750155,195.01,94.4132 +750156,193.64,95.0458 +750157,196.41,93.2691 +750158,195.03,93.8199 +750159,193.65,94.3897 +750160,192.27,94.9787 +750161,195.07,93.3312 +750162,193.69,93.8393 +750163,192.3,94.3659 +750164,190.91,94.9112 +750165,193.73,93.3936 +750166,192.34,93.8588 +750167,190.94,94.342 +750168,189.55,94.8432 +750169,192.39,93.4564 +750170,190.99,93.8784 +750171,189.59,94.3179 +750172,188.18,94.7749 +750173,191.04,93.5194 +750174,189.64,93.898 +750175,188.23,94.2936 +750176,186.82,94.7063 +750177,189.7,93.5828 +750178,188.29,93.9177 +750179,186.88,94.2692 +750180,185.46,94.6373 +750181,188.35,93.6464 +750182,186.94,93.9374 +750183,185.52,94.2446 +750184,184.11,94.568 +750185,187.01,93.7101 +750186,185.59,93.9571 +750187,184.17,94.2199 +750188,182.75,94.4986 +750189,185.66,93.7741 +750190,184.24,93.9768 +750191,182.82,94.195 +750192,181.39,94.4289 +750193,184.31,93.8382 +750194,182.89,93.9965 +750195,181.46,94.1701 +750196,180.04,94.359 +750197,182.96,93.9024 +750198,181.54,94.0162 +750199,180.11,94.1451 +750200,178.69,94.289 +750201,181.61,93.9667 +750202,180.19,94.0359 +750203,178.76,94.12 +750204,177.33,94.2189 +750205,180.25,94.031 +750206,178.83,94.0556 +750207,177.41,94.0948 +750208,175.98,94.1487 +750209,178.9,94.0953 +750210,177.48,94.0751 +750211,176.06,94.0695 +750212,174.63,94.0785 +750213,177.55,94.1596 +750214,176.13,94.0947 +750215,174.71,94.0442 +750216,173.28,94.0083 +750217,176.19,94.2239 +750218,174.77,94.1141 +750219,173.36,94.0188 +750220,171.94,93.9381 +750221,174.83,94.288 +750222,173.42,94.1335 +750223,172.01,93.9934 +750224,170.59,93.868 +750225,173.47,94.352 +750226,172.07,94.1528 +750227,170.66,93.968 +750228,169.25,93.798 +750229,172.11,94.4159 +750230,170.71,94.172 +750231,169.31,93.9426 +750232,167.9,93.7281 +750233,170.75,94.4795 +750234,169.36,94.191 +750235,167.96,93.9172 +750236,166.56,93.6584 +750237,169.39,94.5429 +750238,168,94.2099 +750239,166.61,93.8918 +750240,165.22,93.5889 +750241,168.03,94.6061 +750242,166.65,94.2287 +750243,165.26,93.8665 +750244,163.88,93.5196 +750245,166.66,94.669 +750246,165.29,94.2474 +750247,163.91,93.8411 +750248,162.54,93.4505 +750249,165.3,94.7315 +750250,163.93,94.2659 +750251,162.57,93.8159 +750252,161.2,93.3818 +750253,163.93,94.7937 +750254,162.58,94.2842 +750255,161.22,93.7907 +750256,159.86,93.3134 +750257,162.56,94.8554 +750258,161.22,94.3023 +750259,159.87,93.7655 +750260,158.53,93.2454 +750261,161.2,94.9168 +750262,159.86,94.3202 +750263,158.53,93.7404 +750264,157.19,93.1778 +750265,159.83,94.9777 +750266,158.5,94.3379 +750267,157.18,93.7155 +750268,155.86,93.1106 +750269,158.45,95.038 +750270,157.15,94.3554 +750271,155.84,93.6906 +750272,154.53,93.0438 +750273,157.08,95.0979 +750274,155.79,94.3727 +750275,154.49,93.6659 +750276,153.19,92.9776 +750277,155.71,95.1572 +750278,154.43,94.3897 +750279,153.15,93.6412 +750280,151.86,92.9118 +750281,154.33,95.2159 +750282,153.07,94.4065 +750283,151.8,93.6167 +750284,150.53,92.8466 +750285,152.96,95.2739 +750286,151.71,94.423 +750287,150.46,93.5924 +750288,149.21,92.782 +750289,151.58,95.3313 +750290,150.35,94.4393 +750291,149.11,93.5682 +750292,147.88,92.718 +750293,150.21,95.388 +750294,148.99,94.4553 +750295,147.77,93.5442 +750296,146.55,92.6546 +750297,148.83,95.444 +750298,147.63,94.471 +750299,146.43,93.5203 +750300,145.23,92.5919 +750301,147.45,95.4992 +750302,146.27,94.4864 +750303,145.09,93.4967 +750304,143.9,92.5299 +750305,146.07,95.5537 +750306,144.91,94.5014 +750307,143.74,93.4732 +750308,142.58,92.4686 +750309,144.69,95.6073 +750310,143.54,94.5162 +750311,142.4,93.4499 +750312,141.26,92.4081 +750313,143.3,95.6601 +750314,142.18,94.5306 +750315,141.06,93.4269 +750316,139.94,92.3483 +750317,141.92,95.712 +750318,140.82,94.5447 +750319,139.72,93.404 +750320,138.62,92.2894 +750321,140.54,95.763 +750322,139.46,94.5584 +750323,138.38,93.3815 +750324,137.3,92.2313 +750325,139.15,95.813 +750326,138.09,94.5718 +750327,137.04,93.3591 +750328,135.98,92.174 +750329,137.76,95.8621 +750330,136.73,94.5848 +750331,135.7,93.337 +750332,134.66,92.1176 +750333,136.38,95.9102 +750334,135.37,94.5974 +750335,134.36,93.3152 +750336,133.34,92.0622 +750337,134.99,95.9573 +750338,134,94.6097 +750339,133.02,93.2936 +750340,132.03,92.0076 +750341,133.6,96.0033 +750342,132.64,94.6215 +750343,131.68,93.2723 +750344,130.71,91.954 +750345,132.21,96.0482 +750346,131.28,94.633 +750347,130.34,93.2513 +750348,129.4,91.9014 +750349,130.82,96.0921 +750350,129.91,94.644 +750351,129,93.2306 +750352,128.08,91.8498 +750353,129.43,96.1348 +750354,128.55,94.6546 +750355,127.66,93.2101 +750356,126.77,91.7992 +750357,128.04,96.1763 +750358,127.18,94.6648 +750359,126.32,93.19 +750360,125.46,91.7497 +750361,126.65,96.2167 +750362,125.82,94.6746 +750363,124.99,93.1702 +750364,124.15,91.7012 +750365,125.25,96.2558 +750366,124.45,94.6839 +750367,123.65,93.1508 +750368,122.84,91.6538 +750369,123.86,96.2938 +750370,123.09,94.6927 +750371,122.31,93.1316 +750372,121.53,91.6075 +750373,122.46,96.3305 +750374,121.72,94.7012 +750375,120.97,93.1128 +750376,120.22,91.5624 +750377,121.07,96.3659 +750378,120.35,94.7091 +750379,119.64,93.0943 +750380,118.91,91.5184 +750381,119.67,96.4 +750382,118.99,94.7166 +750383,118.3,93.0762 +750384,117.6,91.4755 +750385,118.28,96.4328 +750386,117.62,94.7235 +750387,116.96,93.0585 +750388,116.3,91.4339 +750389,116.88,96.4642 +750390,116.26,94.73 +750391,115.63,93.0411 +750392,114.99,91.3934 +750393,115.48,96.4943 +750394,114.89,94.7361 +750395,114.29,93.024 +750396,113.68,91.3542 +750397,114.08,96.523 +750398,113.52,94.7416 +750399,112.95,93.0074 +750400,112.38,91.3161 +750401,112.68,96.5503 +750402,112.15,94.7466 +750403,111.62,92.9911 +750404,111.07,91.2794 +750405,111.29,96.5762 +750406,110.79,94.7511 +750407,110.28,92.9752 +750408,109.77,91.2438 +750409,109.89,96.6007 +750410,109.42,94.7551 +750411,108.95,92.9597 +750412,108.46,91.2096 +750413,108.49,96.6237 +750414,108.05,94.7586 +750415,107.61,92.9446 +750416,107.16,91.1766 +750417,107.09,96.6452 +750418,106.69,94.7615 +750419,106.28,92.9299 +750420,105.86,91.145 +750421,105.69,96.6653 +750422,105.32,94.764 +750423,104.94,92.9156 +750424,104.55,91.1146 +750425,104.28,96.6839 +750426,103.95,94.7658 +750427,103.61,92.9017 +750428,103.25,91.0856 +750429,102.88,96.7009 +750430,102.58,94.7672 +750431,102.27,92.8882 +750432,101.95,91.0579 +750433,101.48,96.7164 +750434,101.21,94.768 +750435,100.94,92.8751 +750436,100.65,91.0315 +750437,100.08,96.7304 +750438,99.846,94.7683 +750439,99.601,92.8624 +750440,99.345,91.0065 +750441,98.678,96.7429 +750442,98.478,94.768 +750443,98.266,92.8502 +750444,98.043,90.98289 +750445,97.276,96.7538 +750446,97.11,94.7672 +750447,96.932,92.8384 +750448,96.742,90.96061 +750449,95.874,96.7631 +750450,95.742,94.7658 +750451,95.597,92.827 +750452,95.441,90.93971 +750453,94.471,96.7709 +750454,94.374,94.7639 +750455,94.263,92.816 +750456,94.14,90.92018 +750457,93.069,96.777 +750458,93.005,94.7614 +750459,92.928,92.8055 +750460,92.839,90.90205 +750461,91.666,96.7816 +750462,91.637,94.7584 +750463,91.594,92.7954 +750464,91.539,90.88531 +750465,90.264,96.7846 +750466,90.269,94.7548 +750467,90.26,92.7857 +750468,90.238,90.86996 +750469,88.861,96.786 +750470,88.901,94.7506 +750471,88.926,92.7765 +750472,88.938,90.85601 +750473,87.458,96.7858 +750474,87.532,94.7459 +750475,87.591,92.7677 +750476,87.637,90.84346 +750477,86.056,96.7839 +750478,86.164,94.7406 +750479,86.257,92.7593 +750480,86.337,90.83232 +750481,84.653,96.7805 +750482,84.796,94.7348 +750483,84.923,92.7514 +750484,85.036,90.82259 +750485,83.251,96.7754 +750486,83.428,94.7283 +750487,83.589,92.7439 +750488,83.736,90.81426 +750489,81.848,96.7688 +750490,82.06,94.7214 +750491,82.255,92.7368 +750492,82.435,90.80734 +750493,80.446,96.7605 +750494,80.692,94.7138 +750495,80.92,92.7302 +750496,81.134,90.80182 +750497,79.044,96.7506 +750498,79.324,94.7057 +750499,79.586,92.7241 +750500,79.833,90.79771 +750501,77.643,96.7391 +750502,77.956,94.697 +750503,78.252,92.7183 +750504,78.532,90.795 +750505,76.241,96.7259 +750506,76.589,94.6878 +750507,76.918,92.713 +750508,77.231,90.79369 +750509,74.84,96.7112 +750510,75.221,94.678 +750511,75.583,92.7082 +750512,75.93,90.79378 +750513,73.439,96.6949 +750514,73.853,94.6676 +750515,74.249,92.7037 +750516,74.628,90.79526 +750517,72.038,96.6769 +750518,72.486,94.6567 +750519,72.914,92.6997 +750520,73.326,90.79813 +750521,70.638,96.6574 +750522,71.119,94.6452 +750523,71.579,92.6962 +750524,72.024,90.80238 +750525,69.238,96.6363 +750526,69.751,94.6332 +750527,70.245,92.693 +750528,70.721,90.80801 +750529,67.839,96.6136 +750530,68.384,94.6206 +750531,68.91,92.6903 +750532,69.418,90.81501 +750533,66.44,96.5893 +750534,67.018,94.6074 +750535,67.575,92.688 +750536,68.115,90.82337 +750537,65.042,96.5635 +750538,65.651,94.5937 +750539,66.24,92.6862 +750540,66.811,90.83308 +750541,63.644,96.5362 +750542,64.284,94.5795 +750543,64.904,92.6847 +750544,65.507,90.84413 +750545,62.246,96.5073 +750546,62.918,94.5648 +750547,63.569,92.6837 +750548,64.203,90.85653 +750549,60.849,96.4768 +750550,61.552,94.5494 +750551,62.234,92.6831 +750552,62.898,90.87024 +750553,59.453,96.4449 +750554,60.186,94.5336 +750555,60.898,92.6828 +750556,61.592,90.88527 +750557,58.057,96.4114 +750558,58.82,94.5173 +750559,59.562,92.683 +750560,60.286,90.90161 +750561,56.662,96.3765 +750562,57.455,94.5004 +750563,58.226,92.6836 +750564,58.98,90.91923 +750565,55.268,96.3401 +750566,56.089,94.483 +750567,56.89,92.6846 +750568,57.672,90.93813 +750569,53.874,96.3023 +750570,54.724,94.465 +750571,55.553,92.686 +750572,56.365,90.95829 +750573,52.481,96.263 +750574,53.36,94.4466 +750575,54.217,92.6877 +750576,55.056,90.97971 +750577,51.088,96.2223 +750578,51.995,94.4277 +750579,52.88,92.6899 +750580,53.747,91.0024 +750581,49.697,96.1802 +750582,50.631,94.4083 +750583,51.543,92.6924 +750584,52.437,91.0262 +750585,48.306,96.1367 +750586,49.267,94.3884 +750587,50.206,92.6953 +750588,51.127,91.0513 +750589,46.916,96.0918 +750590,47.903,94.368 +750591,48.868,92.6985 +750592,49.816,91.0776 +750593,45.527,96.0456 +750594,46.539,94.3471 +750595,47.531,92.7021 +750596,48.504,91.105 +750597,44.138,95.9981 +750598,45.176,94.3257 +750599,46.193,92.7061 +750600,47.192,91.1336 +750601,42.751,95.9492 +750602,43.813,94.3039 +750603,44.855,92.7104 +750604,45.878,91.1633 +750605,41.364,95.8991 +750606,42.451,94.2816 +750607,43.516,92.715 +750608,44.564,91.1941 +750609,39.978,95.8478 +750610,41.088,94.2589 +750611,42.178,92.72 +750612,43.249,91.226 +750613,38.593,95.7952 +750614,39.726,94.2357 +750615,40.839,92.7253 +750616,41.933,91.259 +750617,37.209,95.7414 +750618,38.365,94.2121 +750619,39.499,92.7309 +750620,40.617,91.2931 +750621,35.826,95.6864 +750622,37.003,94.1881 +750623,38.16,92.7368 +750624,39.299,91.3282 +750625,34.444,95.6303 +750626,35.642,94.1637 +750627,36.82,92.7431 +750628,37.981,91.3643 +750629,33.063,95.573 +750630,34.282,94.1388 +750631,35.48,92.7496 +750632,36.661,91.4014 +750633,31.683,95.5146 +750634,32.921,94.1135 +750635,34.14,92.7564 +750636,35.341,91.4395 +750637,30.304,95.4552 +750638,31.561,94.0879 +750639,32.799,92.7635 +750640,34.02,91.4785 +750641,28.926,95.3947 +750642,30.202,94.0618 +750643,31.458,92.7709 +750644,32.698,91.5184 +750645,27.549,95.3332 +750646,28.842,94.0354 +750647,30.117,92.7785 +750648,31.374,91.5592 +750649,26.173,95.2706 +750650,27.483,94.0086 +750651,28.775,92.7864 +750652,30.05,91.6009 +750653,24.799,95.2072 +750654,26.125,93.9815 +750655,27.433,92.7945 +750656,28.725,91.6435 +750657,23.425,95.1427 +750658,24.767,93.954 +750659,26.091,92.8029 +750660,27.399,91.6868 +750661,22.052,95.0774 +750662,23.409,93.9261 +750663,24.748,92.8115 +750664,26.072,91.731 +750665,20.681,95.0112 +750666,22.052,93.898 +750667,23.405,92.8203 +750668,24.743,91.7759 +750669,19.311,94.9442 +750670,20.695,93.8695 +750671,22.062,92.8294 +750672,23.414,91.8216 +750673,17.941,94.8763 +750674,19.338,93.8407 +750675,20.718,92.8386 +750676,22.084,91.868 +750677,16.573,94.8077 +750678,17.982,93.8116 +750679,19.374,92.848 +750680,20.752,91.9151 +750681,15.206,94.7383 +750682,16.626,93.7822 +750683,18.03,92.8576 +750684,19.42,91.9628 +750685,13.841,94.6682 +750686,15.271,93.7525 +750687,16.685,92.8674 +750688,18.086,92.0112 +750689,12.476,94.5975 +750690,13.916,93.7226 +750691,15.34,92.8774 +750692,16.751,92.0602 +750693,11.113,94.526 +750694,12.561,93.6924 +750695,13.995,92.8875 +750696,15.415,92.1098 +750697,9.7505,94.454 +750698,11.207,93.662 +750699,12.649,92.8977 +750700,14.078,92.1599 +750701,8.3895,94.3813 +750702,9.853,93.6313 +750703,11.303,92.9081 +750704,12.74,92.2105 +750705,7.0297,94.3081 +750706,8.4996,93.6004 +750707,9.9565,92.9186 +750708,11.4,92.2616 +750709,5.6711,94.2344 +750710,7.1467,93.5692 +750711,8.6097,92.9292 +750712,10.06,92.3132 +750713,4.3138,94.1602 +750714,5.7942,93.5379 +750715,7.2624,92.9399 +750716,8.718,92.3651 +750717,2.9576,94.0856 +750718,4.4421,93.5064 +750719,5.9148,92.9507 +750720,7.3751,92.4175 +750721,1.6027,94.0105 +750722,3.0905,93.4747 +750723,4.5668,92.9616 +750724,6.031,92.4703 +750725,0.24895,93.935 +750726,1.7392,93.4428 +750727,3.2184,92.9725 +750728,4.6858,92.5234 +750729,358.9,93.8592 +750730,0.38843,93.4107 +750731,1.8696,92.9835 +750732,3.3393,92.5768 +750733,357.55,93.7831 +750734,359.04,93.3786 +750735,0.52051,92.9946 +750736,1.9917,92.6304 +750737,356.2,93.7067 +750738,357.69,93.3462 +750739,359.17,93.0057 +750740,0.64286,92.6843 +750741,354.85,93.6301 +750742,356.34,93.3138 +750743,357.82,93.0168 +750744,359.29,92.7385 +750745,353.5,93.5532 +750746,354.99,93.2812 +750747,356.47,93.0279 +750748,357.94,92.7927 +750749,352.15,93.4762 +750750,353.64,93.2485 +750751,355.12,93.0391 +750752,356.59,92.8472 +750753,350.81,93.399 +750754,352.29,93.2157 +750755,353.77,93.0502 +750756,355.24,92.9017 +750757,349.46,93.3217 +750758,350.94,93.1829 +750759,352.42,93.0613 +750760,353.88,92.9563 +750761,348.12,93.2443 +750762,349.6,93.15 +750763,351.07,93.0724 +750764,352.52,93.011 +750765,346.78,93.1669 +750766,348.25,93.117 +750767,349.71,93.0835 +750768,351.17,93.0657 +750769,345.44,93.0895 +750770,346.9,93.084 +750771,348.36,93.0945 +750772,349.81,93.1204 +750773,344.1,93.0121 +750774,345.56,93.0509 +750775,347.01,93.1054 +750776,348.45,93.175 +750777,342.76,92.9347 +750778,344.21,93.0178 +750779,345.65,93.1163 +750780,347.09,93.2295 +750781,341.43,92.8575 +750782,342.87,92.9847 +750783,344.3,93.1271 +750784,345.73,93.2839 +750785,340.09,92.7804 +750786,341.52,92.9516 +750787,342.95,93.1378 +750788,344.36,93.3382 +750789,338.76,92.7035 +750790,340.18,92.9185 +750791,341.59,93.1484 +750792,343,93.3923 +750793,337.42,92.6267 +750794,338.83,92.8854 +750795,340.24,93.1588 +750796,341.63,93.4462 +750797,336.09,92.5502 +750798,337.49,92.8524 +750799,338.88,93.1692 +750800,340.27,93.4998 +750801,334.76,92.4739 +750802,336.15,92.8194 +750803,337.53,93.1794 +750804,338.9,93.5532 +750805,333.43,92.3979 +750806,334.8,92.7864 +750807,336.17,93.1894 +750808,337.53,93.6062 +750809,332.1,92.3223 +750810,333.46,92.7536 +750811,334.82,93.1993 +750812,336.16,93.6589 +750813,330.77,92.247 +750814,332.12,92.7208 +750815,333.46,93.2091 +750816,334.79,93.7112 +750817,329.45,92.1721 +750818,330.78,92.688 +750819,332.1,93.2186 +750820,333.42,93.7631 +750821,328.12,92.0977 +750822,329.44,92.6554 +750823,330.74,93.228 +750824,332.04,93.8146 +750825,326.8,92.0236 +750826,328.1,92.6229 +750827,329.39,93.2371 +750828,330.67,93.8656 +750829,325.48,91.9501 +750830,326.76,92.5905 +750831,328.03,93.2461 +750832,329.3,93.9161 +750833,324.15,91.8771 +750834,325.42,92.5582 +750835,326.67,93.2548 +750836,327.92,93.966 +750837,322.83,91.8046 +750838,324.08,92.5261 +750839,325.31,93.2633 +750840,326.54,94.0154 +750841,321.51,91.7327 +750842,322.74,92.4941 +750843,323.95,93.2715 +750844,325.16,94.0642 +750845,320.19,91.6615 +750846,321.4,92.4623 +750847,322.59,93.2795 +750848,323.78,94.1123 +750849,318.88,91.5908 +750850,320.06,92.4306 +750851,321.23,93.2872 +750852,322.4,94.1598 +750853,317.56,91.5208 +750854,318.72,92.3992 +750855,319.87,93.2947 +750856,321.02,94.2066 +750857,316.24,91.4515 +750858,317.38,92.3679 +750859,318.51,93.3018 +750860,319.64,94.2527 +750861,314.93,91.3829 +750862,316.05,92.3368 +750863,317.15,93.3087 +750864,318.26,94.2981 +750865,313.61,91.3151 +750866,314.71,92.3059 +750867,315.79,93.3153 +750868,316.87,94.3426 +750869,312.3,91.248 +750870,313.37,92.2753 +750871,314.43,93.3215 +750872,315.49,94.3864 +750873,310.99,91.1818 +750874,312.03,92.2448 +750875,313.07,93.3275 +750876,314.1,94.4293 +750877,309.68,91.1164 +750878,310.7,92.2146 +750879,311.71,93.3331 +750880,312.71,94.4713 +750881,308.37,91.0518 +750882,309.36,92.1847 +750883,310.35,93.3383 +750884,311.32,94.5125 +750885,307.06,90.98808 +750886,308.03,92.155 +750887,308.99,93.3433 +750888,309.94,94.5527 +750889,305.75,90.92529 +750890,306.69,92.1256 +750891,307.62,93.3478 +750892,308.55,94.5919 +750893,304.44,90.86342 +750894,305.36,92.0964 +750895,306.26,93.352 +750896,307.16,94.6302 +750897,303.13,90.8025 +750898,304.02,92.0675 +750899,304.9,93.3558 +750900,305.76,94.6675 +750901,301.83,90.74256 +750902,302.69,92.0389 +750903,303.54,93.3593 +750904,304.37,94.7038 +750905,300.52,90.68362 +750906,301.35,92.0106 +750907,302.17,93.3623 +750908,302.98,94.739 +750909,299.22,90.62569 +750910,300.02,91.9826 +750911,300.81,93.3649 +750912,301.59,94.7731 +750913,297.91,90.5688 +750914,298.69,91.955 +750915,299.45,93.3672 +750916,300.19,94.8061 +750917,296.61,90.51298 +750918,297.35,91.9276 +750919,298.08,93.369 +750920,298.8,94.838 +750921,295.31,90.45823 +750922,296.02,91.9005 +750923,296.72,93.3704 +750924,297.4,94.8688 +750925,294,90.40459 +750926,294.69,91.8738 +750927,295.35,93.3714 +750928,296.01,94.8983 +750929,292.7,90.35207 +750930,293.35,91.8475 +750931,293.99,93.3719 +750932,294.61,94.9267 +750933,291.4,90.30069 +750934,292.02,91.8214 +750935,292.63,93.372 +750936,293.21,94.9538 +750937,290.1,90.25046 +750938,290.69,91.7958 +750939,291.26,93.3717 +750940,291.82,94.9797 +750941,288.8,90.20141 +750942,289.36,91.7705 +750943,289.9,93.3709 +750944,290.42,95.0044 +750945,287.5,90.15355 +750946,288.02,91.7455 +750947,288.53,93.3696 +750948,289.02,95.0277 +750949,286.2,90.10689 +750950,286.69,91.7209 +750951,287.17,93.3679 +750952,287.62,95.0498 +750953,284.9,90.061458 +750954,285.36,91.6967 +750955,285.8,93.3656 +750956,286.22,95.0705 +750957,283.61,90.017263 +750958,284.03,91.6729 +750959,284.44,93.363 +750960,284.82,95.0899 +750961,282.31,89.974319 +750962,282.7,91.6495 +750963,283.07,93.3598 +750964,283.42,95.108 +750965,281.01,89.93264 +750966,281.37,91.6264 +750967,281.71,93.3561 +750968,282.02,95.1246 +750969,279.71,89.89224 +750970,280.04,91.6038 +750971,280.34,93.352 +750972,280.62,95.1399 +750973,278.42,89.85313 +750974,278.71,91.5815 +750975,278.97,93.3473 +750976,279.22,95.1538 +750977,277.12,89.81532 +750978,277.37,91.5597 +750979,277.61,93.3422 +750980,277.82,95.1662 +750981,275.82,89.77882 +750982,276.04,91.5382 +750983,276.24,93.3365 +750984,276.42,95.1772 +750985,274.53,89.74364 +750986,274.71,91.5172 +750987,274.88,93.3303 +750988,275.02,95.1868 +750989,273.23,89.70979 +750990,273.38,91.4966 +750991,273.51,93.3236 +750992,273.62,95.1949 +750993,271.94,89.67729 +750994,272.05,91.4764 +750995,272.15,93.3164 +750996,272.21,95.2016 +750997,270.64,89.64613 +750998,270.72,91.4566 +750999,270.78,93.3087 +751000,270.81,95.2067 +751001,269.35,89.61633 +751002,269.39,91.4373 +751003,269.41,93.3004 +751004,269.41,95.2104 +751005,268.05,89.58789 +751006,268.06,91.4184 +751007,268.05,93.2917 +751008,268.01,95.2126 +751009,266.76,89.56082 +751010,266.73,91.3999 +751011,266.68,93.2823 +751012,266.61,95.2132 +751013,265.46,89.53512 +751014,265.4,91.3818 +751015,265.32,93.2725 +751016,265.2,95.2123 +751017,264.17,89.5108 +751018,264.07,91.3642 +751019,263.95,93.2621 +751020,263.8,95.21 +751021,262.87,89.48787 +751022,262.74,91.347 +751023,262.59,93.2512 +751024,262.4,95.206 +751025,261.58,89.46631 +751026,261.41,91.3302 +751027,261.22,93.2398 +751028,261,95.2006 +751029,260.28,89.44615 +751030,260.08,91.3139 +751031,259.85,93.2278 +751032,259.6,95.1936 +751033,258.99,89.42738 +751034,258.75,91.298 +751035,258.49,93.2153 +751036,258.2,95.185 +751037,257.69,89.40999 +751038,257.42,91.2826 +751039,257.12,93.2022 +751040,256.79,95.1749 +751041,256.4,89.394 +751042,256.09,91.2676 +751043,255.76,93.1886 +751044,255.39,95.1632 +751045,255.1,89.37939 +751046,254.76,91.253 +751047,254.39,93.1745 +751048,253.99,95.15 +751049,253.81,89.36618 +751050,253.43,91.2389 +751051,253.03,93.1598 +751052,252.59,95.1353 +751053,252.51,89.35436 +751054,252.1,91.2252 +751055,251.66,93.1446 +751056,251.19,95.119 +751057,251.21,89.34391 +751058,250.77,91.212 +751059,250.3,93.1288 +751060,249.79,95.1011 +751061,249.92,89.33486 +751062,249.44,91.1992 +751063,248.93,93.1125 +751064,248.39,95.0817 +751065,248.62,89.32718 +751066,248.11,91.1868 +751067,247.57,93.0957 +751068,246.99,95.0607 +751069,247.32,89.32087 +751070,246.78,91.1749 +751071,246.21,93.0784 +751072,245.6,95.0382 +751073,246.03,89.31593 +751074,245.45,91.1634 +751075,244.84,93.0605 +751076,244.2,95.0141 +751077,244.73,89.31236 +751078,244.12,91.1523 +751079,243.48,93.042 +751080,242.8,94.9886 +751081,243.43,89.31014 +751082,242.79,91.1416 +751083,242.11,93.0231 +751084,241.4,94.9614 +751085,242.13,89.30927 +751086,241.46,91.1314 +751087,240.75,93.0036 +751088,240.01,94.9328 +751089,240.83,89.30974 +751090,240.13,91.1216 +751091,239.39,92.9836 +751092,238.61,94.9027 +751093,239.53,89.31155 +751094,238.79,91.1122 +751095,238.02,92.9631 +751096,237.22,94.871 +751097,238.23,89.31467 +751098,237.46,91.1033 +751099,236.66,92.942 +751100,235.82,94.8379 +751101,236.93,89.31912 +751102,236.13,91.0948 +751103,235.3,92.9205 +751104,234.43,94.8032 +751105,235.63,89.32486 +751106,234.8,91.0866 +751107,233.94,92.8984 +751108,233.04,94.7671 +751109,234.33,89.3319 +751110,233.47,91.0789 +751111,232.57,92.8758 +751112,231.64,94.7296 +751113,233.03,89.34021 +751114,232.14,91.0716 +751115,231.21,92.8528 +751116,230.25,94.6905 +751117,231.72,89.34979 +751118,230.8,91.0647 +751119,229.85,92.8292 +751120,228.86,94.6501 +751121,230.42,89.36063 +751122,229.47,91.0582 +751123,228.49,92.8051 +751124,227.47,94.6082 +751125,229.12,89.37271 +751126,228.14,91.052 +751127,227.13,92.7806 +751128,226.08,94.5649 +751129,227.81,89.38602 +751130,226.81,91.0463 +751131,225.77,92.7555 +751132,224.69,94.5202 +751133,226.5,89.40053 +751134,225.47,91.041 +751135,224.41,92.73 +751136,223.3,94.4742 +751137,225.2,89.41624 +751138,224.14,91.036 +751139,223.05,92.704 +751140,221.92,94.4268 +751141,223.89,89.43314 +751142,222.81,91.0314 +751143,221.69,92.6776 +751144,220.53,94.378 +751145,222.58,89.45119 +751146,221.47,91.0271 +751147,220.33,92.6506 +751148,219.15,94.3279 +751149,221.27,89.47039 +751150,220.14,91.0232 +751151,218.97,92.6233 +751152,217.76,94.2766 +751153,219.96,89.49072 +751154,218.8,91.0197 +751155,217.61,92.5955 +751156,216.38,94.2239 +751157,218.65,89.51216 +751158,217.47,91.0165 +751159,216.25,92.5672 +751160,215,94.17 +751161,217.34,89.53469 +751162,216.13,91.0137 +751163,214.89,92.5385 +751164,213.62,94.1148 +751165,216.03,89.55829 +751166,214.8,91.0112 +751167,213.54,92.5094 +751168,212.24,94.0585 +751169,214.71,89.58294 +751170,213.46,91.009 +751171,212.18,92.4799 +751172,210.86,94.0009 +751173,213.4,89.60863 +751174,212.13,91.0072 +751175,210.82,92.4499 +751176,209.48,93.9421 +751177,212.08,89.63532 +751178,210.79,91.0056 +751179,209.47,92.4196 +751180,208.1,93.8823 +751181,210.77,89.663 +751182,209.45,91.0044 +751183,208.11,92.3888 +751184,206.73,93.8212 +751185,209.45,89.69165 +751186,208.12,91.0034 +751187,206.75,92.3577 +751188,205.35,93.7591 +751189,208.13,89.72124 +751190,206.78,91.0028 +751191,205.4,92.3261 +751192,203.98,93.6959 +751193,206.81,89.75175 +751194,205.44,91.0024 +751195,204.04,92.2942 +751196,202.61,93.6317 +751197,205.49,89.78316 +751198,204.11,91.0023 +751199,202.69,92.262 +751200,201.24,93.5664 +751201,204.17,89.81544 +751202,202.77,91.0025 +751203,201.33,92.2294 +751204,199.87,93.5002 +751205,202.85,89.84858 +751206,201.43,91.003 +751207,199.98,92.1964 +751208,198.5,93.433 +751209,201.52,89.88253 +751210,200.09,91.0036 +751211,198.63,92.1631 +751212,197.13,93.3648 +751213,200.2,89.917292 +751214,198.75,91.0046 +751215,197.27,92.1295 +751216,195.76,93.2958 +751217,198.87,89.952823 +751218,197.41,91.0057 +751219,195.92,92.0956 +751220,194.4,93.2258 +751221,197.55,89.989102 +751222,196.07,91.0071 +751223,194.57,92.0613 +751224,193.03,93.155 +751225,196.22,90.026104 +751226,194.73,91.0087 +751227,193.22,92.0268 +751228,191.67,93.0834 +751229,194.89,90.0638 +751230,193.39,91.0105 +751231,191.87,91.9919 +751232,190.31,93.011 +751233,193.56,90.10216 +751234,192.05,91.0126 +751235,190.51,91.9568 +751236,188.95,92.9379 +751237,192.23,90.14117 +751238,190.71,91.0148 +751239,189.16,91.9214 +751240,187.59,92.864 +751241,190.89,90.18079 +751242,189.37,91.0171 +751243,187.81,91.8857 +751244,186.23,92.7894 +751245,189.56,90.22099 +751246,188.03,91.0197 +751247,186.47,91.8498 +751248,184.88,92.7141 +751249,188.22,90.26176 +751250,186.68,91.0224 +751251,185.12,91.8137 +751252,183.52,92.6382 +751253,186.89,90.30305 +751254,185.34,91.0252 +751255,183.77,91.7773 +751256,182.17,92.5617 +751257,185.55,90.34484 +751258,184,91.0282 +751259,182.42,91.7407 +751260,180.82,92.4847 +751261,184.21,90.3871 +751262,182.65,91.0313 +751263,181.07,91.704 +751264,179.46,92.4071 +751265,182.87,90.4298 +751266,181.31,91.0346 +751267,179.72,91.667 +751268,178.11,92.329 +751269,181.53,90.47291 +751270,179.97,91.0379 +751271,178.38,91.6298 +751272,176.77,92.2504 +751273,180.19,90.51641 +751274,178.62,91.0414 +751275,177.03,91.5924 +751276,175.42,92.1714 +751277,178.84,90.56026 +751278,177.28,91.0449 +751279,175.69,91.5549 +751280,174.07,92.092 +751281,177.5,90.60443 +751282,175.93,91.0485 +751283,174.34,91.5172 +751284,172.73,92.0122 +751285,176.15,90.64889 +751286,174.58,91.0522 +751287,173,91.4794 +751288,171.38,91.932 +751289,174.81,90.69362 +751290,173.24,91.056 +751291,171.65,91.4414 +751292,170.04,91.8516 +751293,173.46,90.73857 +751294,171.89,91.0598 +751295,170.31,91.4034 +751296,168.7,91.7709 +751297,172.11,90.78372 +751298,170.55,91.0636 +751299,168.96,91.3652 +751300,167.36,91.6899 +751301,170.76,90.82905 +751302,169.2,91.0674 +751303,167.62,91.3269 +751304,166.02,91.6088 +751305,169.4,90.87451 +751306,167.85,91.0713 +751307,166.28,91.2885 +751308,164.69,91.5275 +751309,168.05,90.92007 +751310,166.5,91.0752 +751311,164.94,91.2501 +751312,163.35,91.446 +751313,166.7,90.96572 +751314,165.15,91.0791 +751315,163.59,91.2115 +751316,162.02,91.3645 +751317,165.34,91.0114 +751318,163.8,91.0829 +751319,162.25,91.173 +751320,160.68,91.2828 +751321,163.98,91.0571 +751322,162.46,91.0867 +751323,160.91,91.1344 +751324,159.35,91.2012 +751325,162.62,91.1028 +751326,161.11,91.0905 +751327,159.57,91.0957 +751328,158.02,91.1195 +751329,161.26,91.1484 +751330,159.76,91.0943 +751331,158.23,91.057 +751332,156.69,91.0379 +751333,159.9,91.194 +751334,158.41,91.098 +751335,156.89,91.0184 +751336,155.36,90.95633 +751337,158.54,91.2394 +751338,157.05,91.1016 +751339,155.55,90.97968 +751340,154.04,90.87487 +751341,157.18,91.2847 +751342,155.7,91.1051 +751343,154.21,90.94101 +751344,152.71,90.79355 +751345,155.81,91.3298 +751346,154.35,91.1086 +751347,152.88,90.90236 +751348,151.38,90.71238 +751349,154.45,91.3747 +751350,153,91.1119 +751351,151.54,90.86375 +751352,150.06,90.63142 +751353,153.08,91.4194 +751354,151.65,91.1151 +751355,150.2,90.82518 +751356,148.74,90.55069 +751357,151.71,91.4638 +751358,150.3,91.1182 +751359,148.86,90.78667 +751360,147.42,90.47022 +751361,150.34,91.5079 +751362,148.94,91.1212 +751363,147.53,90.74822 +751364,146.1,90.39005 +751365,148.97,91.5517 +751366,147.59,91.1241 +751367,146.19,90.70985 +751368,144.78,90.31021 +751369,147.6,91.5951 +751370,146.24,91.1267 +751371,144.86,90.67156 +751372,143.46,90.23073 +751373,146.23,91.6381 +751374,144.88,91.1293 +751375,143.52,90.63338 +751376,142.15,90.15164 +751377,144.85,91.6807 +751378,143.53,91.1316 +751379,142.19,90.5953 +751380,140.83,90.072973 +751381,143.48,91.7229 +751382,142.17,91.1338 +751383,140.85,90.55734 +751384,139.52,89.9947594 +751385,142.1,91.7645 +751386,140.82,91.1358 +751387,139.52,90.51951 +751388,138.2,89.917031 +751389,140.73,91.8057 +751390,139.46,91.1375 +751391,138.18,90.48183 +751392,136.89,89.83982 +751393,139.35,91.8463 +751394,138.11,91.1391 +751395,136.85,90.44429 +751396,135.58,89.76315 +751397,137.97,91.8863 +751398,136.75,91.1404 +751399,135.52,90.4069 +751400,134.27,89.68705 +751401,136.59,91.9258 +751402,135.39,91.1415 +751403,134.19,90.36969 +751404,132.96,89.61156 +751405,135.21,91.9646 +751406,134.04,91.1424 +751407,132.85,90.33266 +751408,131.66,89.5367 +751409,133.83,92.0027 +751410,132.68,91.143 +751411,131.52,90.29582 +751412,130.35,89.4625 +751413,132.44,92.0402 +751414,131.32,91.1433 +751415,130.19,90.25918 +751416,129.04,89.38899 +751417,131.06,92.0769 +751418,129.97,91.1434 +751419,128.86,90.22274 +751420,127.74,89.3162 +751421,129.68,92.1129 +751422,128.61,91.1432 +751423,127.53,90.18652 +751424,126.43,89.24415 +751425,128.29,92.1481 +751426,127.25,91.1427 +751427,126.2,90.15053 +751428,125.13,89.17287 +751429,126.9,92.1826 +751430,125.89,91.1419 +751431,124.87,90.11477 +751432,123.83,89.10239 +751433,125.52,92.2162 +751434,124.53,91.1408 +751435,123.54,90.079261 +751436,122.53,89.03273 +751437,124.13,92.2489 +751438,123.18,91.1393 +751439,122.21,90.044002 +751440,121.23,88.9639 +751441,122.74,92.2808 +751442,121.82,91.1376 +751443,120.88,90.0090043 +751444,119.93,88.896 +751445,121.35,92.3118 +751446,120.46,91.1355 +751447,119.55,89.974276 +751448,118.63,88.8289 +751449,119.96,92.3418 +751450,119.1,91.1331 +751451,118.22,89.939827 +751452,117.33,88.7628 +751453,118.57,92.3709 +751454,117.74,91.1303 +751455,116.89,89.905663 +751456,116.03,88.6976 +751457,117.17,92.399 +751458,116.38,91.1272 +751459,115.57,89.87179 +751460,114.74,88.6334 +751461,115.78,92.4261 +751462,115.02,91.1237 +751463,114.24,89.83823 +751464,113.44,88.5702 +751465,114.39,92.4522 +751466,113.66,91.1199 +751467,112.91,89.80497 +751468,112.15,88.508 +751469,112.99,92.4772 +751470,112.3,91.1157 +751471,111.58,89.77203 +751472,110.85,88.4468 +751473,111.6,92.5012 +751474,110.94,91.111 +751475,110.26,89.73941 +751476,109.56,88.3867 +751477,110.21,92.524 +751478,109.58,91.106 +751479,108.93,89.70712 +751480,108.27,88.3276 +751481,108.81,92.5458 +751482,108.22,91.1006 +751483,107.6,89.67517 +751484,106.97,88.2696 +751485,107.41,92.5664 +751486,106.86,91.0948 +751487,106.28,89.64357 +751488,105.68,88.2128 +751489,106.02,92.5859 +751490,105.49,91.0886 +751491,104.95,89.61231 +751492,104.39,88.157 +751493,104.62,92.6042 +751494,104.13,91.0819 +751495,103.63,89.58141 +751496,103.1,88.1025 +751497,103.22,92.6213 +751498,102.77,91.0749 +751499,102.3,89.55088 +751500,101.81,88.049 +751501,101.82,92.6371 +751502,101.41,91.0674 +751503,100.98,89.52071 +751504,100.52,87.9968 +751505,100.42,92.6518 +751506,100.05,91.0594 +751507,99.65,89.49092 +751508,99.228,87.9457 +751509,99.026,92.6652 +751510,98.688,91.051 +751511,98.325,89.4615 +751512,97.939,87.8959 +751513,97.627,92.6773 +751514,97.326,91.0422 +751515,97,89.43247 +751516,96.65,87.8473 +751517,96.227,92.6882 +751518,95.964,91.0329 +751519,95.675,89.40383 +751520,95.362,87.7999 +751521,94.828,92.6977 +751522,94.603,91.0232 +751523,94.351,89.37558 +751524,94.073,87.7537 +751525,93.428,92.7059 +751526,93.241,91.013 +751527,93.026,89.34773 +751528,92.786,87.7089 +751529,92.028,92.7129 +751530,91.879,91.0024 +751531,91.702,89.32029 +751532,91.498,87.6653 +751533,90.627,92.7184 +751534,90.517,90.99122 +751535,90.377,89.29325 +751536,90.211,87.6229 +751537,89.227,92.7226 +751538,89.155,90.97962 +751539,89.053,89.26662 +751540,88.924,87.5819 +751541,87.826,92.7255 +751542,87.793,90.96754 +751543,87.729,89.2404 +751544,87.637,87.5422 +751545,86.426,92.7269 +751546,86.431,90.95498 +751547,86.405,89.21461 +751548,86.35,87.5038 +751549,85.025,92.727 +751550,85.069,90.94193 +751551,85.081,89.18923 +751552,85.063,87.4667 +751553,83.624,92.7257 +751554,83.707,90.9284 +751555,83.757,89.16427 +751556,83.776,87.4309 +751557,82.224,92.723 +751558,82.345,90.91438 +751559,82.433,89.13974 +751560,82.49,87.3965 +751561,80.823,92.7188 +751562,80.984,90.89987 +751563,81.109,89.11564 +751564,81.203,87.3634 +751565,79.423,92.7133 +751566,79.622,90.88487 +751567,79.785,89.09197 +751568,79.917,87.3317 +751569,78.022,92.7063 +751570,78.26,90.86937 +751571,78.462,89.06873 +751572,78.63,87.3013 +751573,76.622,92.6978 +751574,76.898,90.85337 +751575,77.138,89.04593 +751576,77.344,87.2723 +751577,75.222,92.6879 +751578,75.537,90.83687 +751579,75.814,89.02356 +751580,76.057,87.2446 +751581,73.822,92.6766 +751582,74.175,90.81988 +751583,74.49,89.00163 +751584,74.771,87.2183 +751585,72.422,92.6638 +751586,72.814,90.80238 +751587,73.166,88.9801 +751588,73.484,87.1934 +751589,71.023,92.6495 +751590,71.453,90.78438 +751591,71.842,88.9591 +751592,72.197,87.1698 +751593,69.624,92.6338 +751594,70.092,90.76587 +751595,70.519,88.9385 +751596,70.909,87.1476 +751597,68.225,92.6166 +751598,68.731,90.74687 +751599,69.195,88.9183 +751600,69.622,87.1267 +751601,66.827,92.598 +751602,67.37,90.72736 +751603,67.871,88.8985 +751604,68.334,87.1072 +751605,65.429,92.5778 +751606,66.009,90.70735 +751607,66.547,88.8792 +751608,67.046,87.0891 +751609,64.031,92.5563 +751610,64.649,90.68684 +751611,65.222,88.8604 +751612,65.758,87.0723 +751613,62.634,92.5332 +751614,63.288,90.66583 +751615,63.898,88.8419 +751616,64.469,87.0569 +751617,61.237,92.5087 +751618,61.928,90.64431 +751619,62.574,88.8239 +751620,63.18,87.0429 +751621,59.841,92.4828 +751622,60.568,90.6223 +751623,61.249,88.8064 +751624,61.891,87.0302 +751625,58.446,92.4553 +751626,59.209,90.59979 +751627,59.925,88.7893 +751628,60.601,87.0188 +751629,57.051,92.4265 +751630,57.849,90.57678 +751631,58.6,88.7726 +751632,59.311,87.0088 +751633,55.656,92.3961 +751634,56.49,90.55328 +751635,57.275,88.7563 +751636,58.02,87.0001 +751637,54.263,92.3644 +751638,55.131,90.52929 +751639,55.95,88.7405 +751640,56.729,86.9927 +751641,52.87,92.3312 +751642,53.772,90.50481 +751643,54.625,88.7251 +751644,55.437,86.9867 +751645,51.477,92.2966 +751646,52.413,90.47985 +751647,53.3,88.7101 +751648,54.145,86.982 +751649,50.086,92.2605 +751650,51.055,90.4544 +751651,51.974,88.6955 +751652,52.852,86.9785 +751653,48.695,92.2231 +751654,49.697,90.42847 +751655,50.649,88.6814 +751656,51.559,86.9764 +751657,47.305,92.1842 +751658,48.339,90.40206 +751659,49.323,88.6677 +751660,50.264,86.9755 +751661,45.915,92.144 +751662,46.981,90.37518 +751663,47.997,88.6543 +751664,48.97,86.9759 +751665,44.527,92.1024 +751666,45.624,90.34783 +751667,46.671,88.6414 +751668,47.674,86.9775 +751669,43.139,92.0594 +751670,44.267,90.32001 +751671,45.344,88.6289 +751672,46.378,86.9804 +751673,41.752,92.015 +751674,42.911,90.29173 +751675,44.018,88.6168 +751676,45.081,86.9846 +751677,40.366,91.9693 +751678,41.554,90.263 +751679,42.691,88.6051 +751680,43.783,86.9899 +751681,38.981,91.9223 +751682,40.198,90.23381 +751683,41.364,88.5938 +751684,42.485,86.9965 +751685,37.597,91.874 +751686,38.843,90.20418 +751687,40.036,88.5828 +751688,41.186,87.0042 +751689,36.214,91.8244 +751690,37.487,90.17411 +751691,38.709,88.5723 +751692,39.886,87.0132 +751693,34.832,91.7735 +751694,36.133,90.1436 +751695,37.381,88.5621 +751696,38.585,87.0232 +751697,33.451,91.7213 +751698,34.778,90.11266 +751699,36.052,88.5522 +751700,37.283,87.0345 +751701,32.071,91.6679 +751702,33.424,90.081298 +751703,34.724,88.5428 +751704,35.98,87.0468 +751705,30.693,91.6132 +751706,32.07,90.049516 +751707,33.395,88.5337 +751708,34.677,87.0603 +751709,29.315,91.5574 +751710,30.716,90.017321 +751711,32.066,88.5249 +751712,33.372,87.0748 +751713,27.938,91.5003 +751714,29.363,89.984721 +751715,30.737,88.5166 +751716,32.067,87.0904 +751717,26.562,91.4421 +751718,28.011,89.951722 +751719,29.407,88.5085 +751720,30.76,87.1071 +751721,25.188,91.3828 +751722,26.658,89.918331 +751723,28.077,88.5008 +751724,29.453,87.1248 +751725,23.815,91.3223 +751726,25.307,89.88456 +751727,26.747,88.4934 +751728,28.144,87.1435 +751729,22.443,91.2607 +751730,23.955,89.8504 +751731,25.417,88.4863 +751732,26.835,87.1632 +751733,21.072,91.198 +751734,22.604,89.81588 +751735,24.086,88.4795 +751736,25.524,87.1839 +751737,19.702,91.1343 +751738,21.253,89.78099 +751739,22.755,88.4731 +751740,24.213,87.2055 +751741,18.333,91.0695 +751742,19.903,89.74575 +751743,21.423,88.4669 +751744,22.9,87.2281 +751745,16.966,91.0037 +751746,18.553,89.71016 +751747,20.091,88.461 +751748,21.586,87.2516 +751749,15.6,90.93696 +751750,17.204,89.67423 +751751,18.759,88.4554 +751752,20.271,87.2759 +751753,14.235,90.86923 +751754,15.855,89.63797 +751755,17.426,88.4501 +751756,18.955,87.3011 +751757,12.872,90.80057 +751758,14.507,89.60139 +751759,16.093,88.4451 +751760,17.638,87.3272 +751761,11.51,90.731 +751762,13.159,89.5645 +751763,14.76,88.4403 +751764,16.32,87.354 +751765,10.149,90.66055 +751766,11.811,89.5273 +751767,13.426,88.4357 +751768,15,87.3816 +751769,8.7894,90.58924 +751770,10.464,89.4898 +751771,12.092,88.4314 +751772,13.679,87.41 +751773,7.4312,90.51711 +751774,9.1175,89.45202 +751775,10.758,88.4274 +751776,12.357,87.4392 +751777,6.0743,90.44418 +751778,7.7714,89.41396 +751779,9.423,88.4236 +751780,11.034,87.469 +751781,4.7187,90.37048 +751782,6.4257,89.37563 +751783,8.0878,88.4199 +751784,9.7101,87.4996 +751785,3.3645,90.29604 +751786,5.0805,89.33704 +751787,6.7522,88.4165 +751788,8.3845,87.5308 +751789,2.0116,90.22088 +751790,3.7358,89.2982 +751791,5.4162,88.4133 +751792,7.0578,87.5626 +751793,0.66014,90.14505 +751794,2.3915,89.25912 +751795,4.0799,88.4103 +751796,5.7297,87.595 +751797,359.31,90.068559 +751798,1.0477,89.21982 +751799,2.7431,88.4074 +751800,4.4005,87.628 +751801,357.96,89.9914493 +751802,359.7,89.18029 +751803,1.406,88.4048 +751804,3.0699,87.6616 +751805,356.61,89.913749 +751806,358.36,89.14055 +751807,0.068422,88.4022 +751808,1.7381,87.6957 +751809,355.27,89.83549 +751810,357.02,89.10061 +751811,358.73,88.3999 +751812,0.40505,87.7302 +751813,353.92,89.7567 +751814,355.68,89.06048 +751815,357.39,88.3977 +751816,359.07,87.7653 +751817,352.58,89.67741 +751818,354.34,89.02016 +751819,356.05,88.3956 +751820,357.74,87.8008 +751821,351.24,89.59766 +751822,353,88.9797 +751823,354.71,88.3936 +751824,356.4,87.8367 +751825,349.9,89.51747 +751826,351.65,88.939 +751827,353.37,88.3918 +751828,355.06,87.8729 +751829,348.56,89.43688 +751830,350.32,88.8983 +751831,352.03,88.39 +751832,353.72,87.9096 +751833,347.22,89.35592 +751834,348.98,88.8573 +751835,350.69,88.3884 +751836,352.38,87.9465 +751837,345.88,89.27462 +751838,347.64,88.8163 +751839,349.35,88.3868 +751840,351.04,87.9838 +751841,344.55,89.19301 +751842,346.3,88.7751 +751843,348.01,88.3853 +751844,349.69,88.0213 +751845,343.22,89.11113 +751846,344.96,88.7338 +751847,346.67,88.3839 +751848,348.35,88.059 +751849,341.88,89.02902 +751850,343.62,88.6924 +751851,345.33,88.3825 +751852,347,88.0969 +751853,340.55,88.9467 +751854,342.29,88.651 +751855,343.99,88.3811 +751856,345.66,88.1351 +751857,339.22,88.8642 +751858,340.95,88.6094 +751859,342.64,88.3798 +751860,344.31,88.1733 +751861,337.9,88.7815 +751862,339.61,88.5678 +751863,341.3,88.3786 +751864,342.96,88.2117 +751865,336.57,88.6988 +751866,338.28,88.5262 +751867,339.96,88.3773 +751868,341.61,88.2502 +751869,335.24,88.616 +751870,336.94,88.4845 +751871,338.61,88.376 +751872,340.25,88.2887 +751873,333.92,88.5331 +751874,335.61,88.4427 +751875,337.27,88.3747 +751876,338.9,88.3273 +751877,332.6,88.4502 +751878,334.27,88.401 +751879,335.92,88.3734 +751880,337.54,88.3658 +751881,331.28,88.3673 +751882,332.94,88.3592 +751883,334.58,88.3721 +751884,336.19,88.4043 +751885,329.96,88.2845 +751886,331.61,88.3174 +751887,333.23,88.3708 +751888,334.83,88.4428 +751889,328.64,88.2018 +751890,330.28,88.2757 +751891,331.89,88.3694 +751892,333.47,88.4811 +751893,327.32,88.1192 +751894,328.94,88.2339 +751895,330.54,88.3679 +751896,332.11,88.5193 +751897,326,88.0368 +751898,327.61,88.1922 +751899,329.19,88.3663 +751900,330.75,88.5574 +751901,324.69,87.9545 +751902,326.28,88.1506 +751903,327.85,88.3647 +751904,329.39,88.5953 +751905,323.38,87.8724 +751906,324.95,88.109 +751907,326.5,88.363 +751908,328.02,88.6329 +751909,322.06,87.7906 +751910,323.62,88.0674 +751911,325.15,88.3612 +751912,326.66,88.6704 +751913,320.75,87.7091 +751914,322.29,88.026 +751915,323.8,88.3593 +751916,325.29,88.7075 +751917,319.44,87.6279 +751918,320.96,87.9846 +751919,322.45,88.3573 +751920,323.93,88.7444 +751921,318.13,87.547 +751922,319.63,87.9433 +751923,321.11,88.3551 +751924,322.56,88.7809 +751925,316.83,87.4665 +751926,318.3,87.9021 +751927,319.76,88.3528 +751928,321.19,88.817 +751929,315.52,87.3864 +751930,316.97,87.861 +751931,318.41,88.3504 +751932,319.82,88.8528 +751933,314.21,87.3068 +751934,315.65,87.8201 +751935,317.06,88.3477 +751936,318.44,88.8881 +751937,312.91,87.2276 +751938,314.32,87.7793 +751939,315.71,88.345 +751940,317.07,88.923 +751941,311.61,87.1488 +751942,312.99,87.7386 +751943,314.35,88.342 +751944,315.7,88.9575 +751945,310.31,87.0707 +751946,311.67,87.6981 +751947,313,88.3389 +751948,314.32,88.9914 +751949,309.01,86.993 +751950,310.34,87.6578 +751951,311.65,88.3355 +751952,312.94,89.02475 +751953,307.71,86.916 +751954,309.01,87.6176 +751955,310.3,88.332 +751956,311.57,89.05757 +751957,306.41,86.8395 +751958,307.69,87.5776 +751959,308.95,88.3282 +751960,310.19,89.0898 +751961,305.11,86.7637 +751962,306.36,87.5378 +751963,307.6,88.3242 +751964,308.81,89.12142 +751965,303.81,86.6886 +751966,305.04,87.4982 +751967,306.24,88.32 +751968,307.43,89.15239 +751969,302.52,86.6141 +751970,303.71,87.4588 +751971,304.89,88.3155 +751972,306.05,89.1827 +751973,301.22,86.5404 +751974,302.39,87.4197 +751975,303.54,88.3108 +751976,304.66,89.21231 +751977,299.93,86.4674 +751978,301.07,87.3807 +751979,302.18,88.3059 +751980,303.28,89.2412 +751981,298.64,86.3952 +751982,299.74,87.3421 +751983,300.83,88.3006 +751984,301.9,89.26934 +751985,297.35,86.3238 +751986,298.42,87.3036 +751987,299.48,88.2951 +751988,300.51,89.29671 +751989,296.06,86.2532 +751990,297.1,87.2654 +751991,298.12,88.2893 +751992,299.13,89.32329 +751993,294.77,86.1834 +751994,295.78,87.2275 +751995,296.77,88.2832 +751996,297.74,89.34904 +751997,293.48,86.1145 +751998,294.45,87.1898 +751999,295.41,88.2768 +752000,296.35,89.37395 +752001,292.19,86.0465 +752002,293.13,87.1525 +752003,294.06,88.2701 +752004,294.96,89.39799 +752005,290.9,85.9795 +752006,291.81,87.1154 +752007,292.7,88.2631 +752008,293.57,89.42114 +752009,289.61,85.9133 +752010,290.49,87.0786 +752011,291.35,88.2557 +752012,292.18,89.44337 +752013,288.33,85.8482 +752014,289.17,87.0421 +752015,289.99,88.248 +752016,290.79,89.46467 +752017,287.04,85.784 +752018,287.85,87.0059 +752019,288.64,88.24 +752020,289.4,89.485 +752021,285.76,85.7208 +752022,286.53,86.9701 +752023,287.28,88.2317 +752024,288.01,89.50436 +752025,284.47,85.6586 +752026,285.21,86.9345 +752027,285.92,88.223 +752028,286.62,89.52271 +752029,283.19,85.5975 +752030,283.89,86.8993 +752031,284.57,88.2139 +752032,285.22,89.54004 +752033,281.91,85.5374 +752034,282.57,86.8645 +752035,283.21,88.2045 +752036,283.83,89.55633 +752037,280.62,85.4785 +752038,281.25,86.8299 +752039,281.86,88.1946 +752040,282.44,89.57155 +752041,279.34,85.4206 +752042,279.93,86.7958 +752043,280.5,88.1845 +752044,281.04,89.5857 +752045,278.06,85.3638 +752046,278.61,86.762 +752047,279.14,88.1739 +752048,279.65,89.59874 +752049,276.78,85.3082 +752050,277.3,86.7285 +752051,277.79,88.1629 +752052,278.25,89.61066 +752053,275.5,85.2537 +752054,275.98,86.6954 +752055,276.43,88.1516 +752056,276.85,89.62145 +752057,274.22,85.2004 +752058,274.66,86.6627 +752059,275.07,88.1398 +752060,275.46,89.63109 +752061,272.94,85.1483 +752062,273.34,86.6304 +752063,273.71,88.1276 +752064,274.06,89.63956 +752065,271.66,85.0973 +752066,272.02,86.5984 +752067,272.36,88.1151 +752068,272.66,89.64684 +752069,270.38,85.0476 +752070,270.7,86.5668 +752071,271,88.1021 +752072,271.26,89.65292 +752073,269.11,84.9991 +752074,269.39,86.5357 +752075,269.64,88.0887 +752076,269.87,89.65779 +752077,267.83,84.9518 +752078,268.07,86.5049 +752079,268.28,88.0748 +752080,268.47,89.66143 +752081,266.55,84.9057 +752082,266.75,86.4745 +752083,266.93,88.0606 +752084,267.07,89.66383 +752085,265.27,84.8609 +752086,265.43,86.4446 +752087,265.57,88.0459 +752088,265.67,89.66497 +752089,263.99,84.8174 +752090,264.12,86.415 +752091,264.21,88.0308 +752092,264.27,89.66485 +752093,262.72,84.7751 +752094,262.8,86.3858 +752095,262.85,88.0152 +752096,262.87,89.66345 +752097,261.44,84.7342 +752098,261.48,86.3571 +752099,261.5,87.9992 +752100,261.48,89.66076 +752101,260.16,84.6945 +752102,260.17,86.3288 +752103,260.14,87.9827 +752104,260.08,89.65677 +752105,258.89,84.6561 +752106,258.85,86.3009 +752107,258.78,87.9658 +752108,258.68,89.65147 +752109,257.61,84.619 +752110,257.53,86.2734 +752111,257.42,87.9485 +752112,257.28,89.64485 +752113,256.33,84.5832 +752114,256.22,86.2464 +752115,256.07,87.9306 +752116,255.88,89.63691 +752117,255.06,84.5488 +752118,254.9,86.2198 +752119,254.71,87.9124 +752120,254.48,89.62763 +752121,253.78,84.5157 +752122,253.58,86.1936 +752123,253.35,87.8936 +752124,253.08,89.61702 +752125,252.5,84.4838 +752126,252.27,86.1678 +752127,251.99,87.8745 +752128,251.68,89.60505 +752129,251.22,84.4534 +752130,250.95,86.1425 +752131,250.64,87.8548 +752132,250.29,89.59174 +752133,249.95,84.4242 +752134,249.63,86.1176 +752135,249.28,87.8347 +752136,248.89,89.57706 +752137,248.67,84.3964 +752138,248.31,86.0931 +752139,247.92,87.8141 +752140,247.49,89.56103 +752141,247.39,84.3699 +752142,247,86.0691 +752143,246.57,87.7931 +752144,246.09,89.54363 +752145,246.11,84.3447 +752146,245.68,86.0455 +752147,245.21,87.7716 +752148,244.69,89.52486 +752149,244.84,84.3209 +752150,244.36,86.0224 +752151,243.85,87.7496 +752152,243.3,89.50473 +752153,243.56,84.2984 +752154,243.05,85.9997 +752155,242.5,87.7272 +752156,241.9,89.48322 +752157,242.28,84.2772 +752158,241.73,85.9774 +752159,241.14,87.7043 +752160,240.51,89.46035 +752161,241,84.2574 +752162,240.41,85.9555 +752163,239.78,87.681 +752164,239.11,89.4361 +752165,239.72,84.2389 +752166,239.09,85.9341 +752167,238.43,87.6572 +752168,237.71,89.41048 +752169,238.44,84.2217 +752170,237.78,85.9132 +752171,237.07,87.6329 +752172,236.32,89.38349 +752173,237.16,84.2058 +752174,236.46,85.8926 +752175,235.72,87.6081 +752176,234.93,89.35514 +752177,235.88,84.1913 +752178,235.14,85.8725 +752179,234.36,87.5829 +752180,233.53,89.32543 +752181,234.6,84.178 +752182,233.82,85.8528 +752183,233.01,87.5573 +752184,232.14,89.29435 +752185,233.32,84.166 +752186,232.51,85.8336 +752187,231.65,87.5312 +752188,230.75,89.26192 +752189,232.03,84.1554 +752190,231.19,85.8147 +752191,230.3,87.5046 +752192,229.36,89.22814 +752193,230.75,84.146 +752194,229.87,85.7963 +752195,228.94,87.4776 +752196,227.96,89.19302 +752197,229.47,84.1379 +752198,228.55,85.7783 +752199,227.59,87.4501 +752200,226.57,89.15656 +752201,228.18,84.131 +752202,227.23,85.7608 +752203,226.24,87.4222 +752204,225.18,89.11877 +752205,226.9,84.1255 +752206,225.91,85.7436 +752207,224.88,87.3938 +752208,223.8,89.07965 +752209,225.61,84.1211 +752210,224.59,85.7269 +752211,223.53,87.365 +752212,222.41,89.03923 +752213,224.33,84.118 +752214,223.28,85.7105 +752215,222.18,87.3358 +752216,221.02,88.9975 +752217,223.04,84.1162 +752218,221.96,85.6946 +752219,220.82,87.3061 +752220,219.64,88.9545 +752221,221.75,84.1155 +752222,220.64,85.6791 +752223,219.47,87.276 +752224,218.25,88.9102 +752225,220.46,84.116 +752226,219.32,85.6639 +752227,218.12,87.2455 +752228,216.87,88.8646 +752229,219.17,84.1178 +752230,218,85.6492 +752231,216.77,87.2145 +752232,215.48,88.8178 +752233,217.88,84.1207 +752234,216.67,85.6349 +752235,215.42,87.1832 +752236,214.1,88.7697 +752237,216.59,84.1247 +752238,215.35,85.6209 +752239,214.07,87.1514 +752240,212.72,88.7204 +752241,215.3,84.1299 +752242,214.03,85.6073 +752243,212.72,87.1192 +752244,211.34,88.6699 +752245,214.01,84.1362 +752246,212.71,85.5941 +752247,211.37,87.0866 +752248,209.96,88.6181 +752249,212.71,84.1437 +752250,211.39,85.5812 +752251,210.02,87.0536 +752252,208.58,88.5652 +752253,211.42,84.1522 +752254,210.07,85.5687 +752255,208.67,87.0203 +752256,207.2,88.5111 +752257,210.12,84.1618 +752258,208.75,85.5566 +752259,207.32,86.9865 +752260,205.83,88.4559 +752261,208.83,84.1724 +752262,207.42,85.5448 +752263,205.97,86.9524 +752264,204.45,88.3995 +752265,207.53,84.1841 +752266,206.1,85.5334 +752267,204.62,86.9179 +752268,203.08,88.342 +752269,206.23,84.1969 +752270,204.78,85.5223 +752271,203.27,86.883 +752272,201.71,88.2834 +752273,204.93,84.2106 +752274,203.45,85.5115 +752275,201.93,86.8478 +752276,200.34,88.2237 +752277,203.63,84.2253 +752278,202.13,85.5011 +752279,200.58,86.8122 +752280,198.97,88.163 +752281,202.33,84.241 +752282,200.81,85.4909 +752283,199.23,86.7763 +752284,197.6,88.1012 +752285,201.02,84.2576 +752286,199.48,85.4811 +752287,197.89,86.74 +752288,196.23,88.0384 +752289,199.72,84.2751 +752290,198.16,85.4716 +752291,196.54,86.7034 +752292,194.86,87.9746 +752293,198.41,84.2935 +752294,196.83,85.4624 +752295,195.2,86.6665 +752296,193.5,87.9099 +752297,197.11,84.3128 +752298,195.51,85.4535 +752299,193.85,86.6292 +752300,192.14,87.8442 +752301,195.8,84.333 +752302,194.18,85.4449 +752303,192.51,86.5917 +752304,190.77,87.7775 +752305,194.49,84.354 +752306,192.85,85.4365 +752307,191.16,86.5538 +752308,189.41,87.71 +752309,193.18,84.3757 +752310,191.53,85.4284 +752311,189.82,86.5157 +752312,188.05,87.6415 +752313,191.87,84.3983 +752314,190.2,85.4206 +752315,188.48,86.4772 +752316,186.69,87.5722 +752317,190.56,84.4216 +752318,188.87,85.413 +752319,187.13,86.4385 +752320,185.34,87.5021 +752321,189.24,84.4457 +752322,187.54,85.4057 +752323,185.79,86.3995 +752324,183.98,87.4312 +752325,187.93,84.4705 +752326,186.21,85.3986 +752327,184.45,86.3603 +752328,182.63,87.3595 +752329,186.61,84.4959 +752330,184.89,85.3917 +752331,183.11,86.3208 +752332,181.28,87.2871 +752333,185.29,84.522 +752334,183.56,85.3851 +752335,181.77,86.2811 +752336,179.93,87.2139 +752337,183.97,84.5488 +752338,182.23,85.3786 +752339,180.43,86.2411 +752340,178.58,87.14 +752341,182.65,84.5762 +752342,180.9,85.3724 +752343,179.09,86.2009 +752344,177.23,87.0655 +752345,181.33,84.6041 +752346,179.57,85.3663 +752347,177.75,86.1605 +752348,175.88,86.9903 +752349,180.01,84.6326 +752350,178.24,85.3605 +752351,176.41,86.1199 +752352,174.54,86.9145 +752353,178.68,84.6616 +752354,176.9,85.3548 +752355,175.08,86.0791 +752356,173.19,86.8381 +752357,177.36,84.6911 +752358,175.57,85.3493 +752359,173.74,86.0381 +752360,171.85,86.7611 +752361,176.03,84.7211 +752362,174.24,85.3439 +752363,172.4,85.997 +752364,170.51,86.6837 +752365,174.7,84.7515 +752366,172.91,85.3387 +752367,171.07,85.9556 +752368,169.17,86.6057 +752369,173.37,84.7824 +752370,171.58,85.3336 +752371,169.73,85.9141 +752372,167.83,86.5273 +752373,172.04,84.8136 +752374,170.24,85.3286 +752375,168.39,85.8725 +752376,166.49,86.4484 +752377,170.71,84.8452 +752378,168.91,85.3238 +752379,167.06,85.8307 +752380,165.16,86.3691 +752381,169.38,84.8772 +752382,167.57,85.3191 +752383,165.73,85.7888 +752384,163.83,86.2894 +752385,168.04,84.9094 +752386,166.24,85.3144 +752387,164.39,85.7468 +752388,162.49,86.2094 +752389,166.7,84.9419 +752390,164.9,85.3099 +752391,163.06,85.7046 +752392,161.16,86.1291 +752393,165.37,84.9747 +752394,163.57,85.3054 +752395,161.73,85.6624 +752396,159.83,86.0485 +752397,164.03,85.0077 +752398,162.23,85.301 +752399,160.39,85.6201 +752400,158.51,85.9677 +752401,162.69,85.0408 +752402,160.9,85.2967 +752403,159.06,85.5777 +752404,157.18,85.8866 +752405,161.34,85.0742 +752406,159.56,85.2924 +752407,157.73,85.5352 +752408,155.86,85.8053 +752409,160,85.1076 +752410,158.22,85.2882 +752411,156.4,85.4927 +752412,154.53,85.7239 +752413,158.66,85.1412 +752414,156.88,85.284 +752415,155.07,85.4501 +752416,153.21,85.6423 +752417,157.31,85.1749 +752418,155.55,85.2798 +752419,153.74,85.4075 +752420,151.89,85.5607 +752421,155.96,85.2085 +752422,154.21,85.2756 +752423,152.41,85.3649 +752424,150.57,85.4789 +752425,154.61,85.2422 +752426,152.87,85.2714 +752427,151.08,85.3223 +752428,149.25,85.3972 +752429,153.26,85.2759 +752430,151.53,85.2672 +752431,149.75,85.2796 +752432,147.94,85.3154 +752433,151.91,85.3096 +752434,150.19,85.263 +752435,148.43,85.237 +752436,146.62,85.2337 +752437,150.56,85.3432 +752438,148.85,85.2588 +752439,147.1,85.1943 +752440,145.31,85.152 +752441,149.2,85.3767 +752442,147.51,85.2545 +752443,145.77,85.1517 +752444,144,85.0705 +752445,147.85,85.41 +752446,146.17,85.2502 +752447,144.45,85.1091 +752448,142.69,84.989 +752449,146.49,85.4432 +752450,144.82,85.2458 +752451,143.12,85.0666 +752452,141.38,84.9077 +752453,145.13,85.4762 +752454,143.48,85.2414 +752455,141.8,85.0241 +752456,140.07,84.8266 +752457,143.77,85.509 +752458,142.14,85.2369 +752459,140.47,84.9817 +752460,138.77,84.7457 +752461,142.41,85.5416 +752462,140.8,85.2323 +752463,139.15,84.9394 +752464,137.46,84.6651 +752465,141.05,85.5739 +752466,139.45,85.2276 +752467,137.82,84.8972 +752468,136.16,84.5847 +752469,139.69,85.6058 +752470,138.11,85.2228 +752471,136.5,84.855 +752472,134.85,84.5046 +752473,138.32,85.6375 +752474,136.77,85.2178 +752475,135.18,84.813 +752476,133.55,84.4249 +752477,136.96,85.6688 +752478,135.42,85.2128 +752479,133.86,84.7711 +752480,132.25,84.3456 +752481,135.59,85.6997 +752482,134.08,85.2076 +752483,132.53,84.7293 +752484,130.96,84.2666 +752485,134.22,85.7302 +752486,132.73,85.2023 +752487,131.21,84.6876 +752488,129.66,84.1881 +752489,132.85,85.7603 +752490,131.39,85.1968 +752491,129.89,84.6461 +752492,128.36,84.11 +752493,131.48,85.7899 +752494,130.04,85.1912 +752495,128.57,84.6047 +752496,127.07,84.0324 +752497,130.11,85.819 +752498,128.7,85.1854 +752499,127.25,84.5635 +752500,125.77,83.9554 +752501,128.74,85.8476 +752502,127.35,85.1794 +752503,125.93,84.5225 +752504,124.48,83.8788 +752505,127.36,85.8757 +752506,126,85.1732 +752507,124.61,84.4816 +752508,123.19,83.8029 +752509,125.99,85.9032 +752510,124.66,85.1668 +752511,123.29,84.441 +752512,121.9,83.7275 +752513,124.61,85.9301 +752514,123.31,85.1602 +752515,121.97,84.4005 +752516,120.61,83.6528 +752517,123.24,85.9564 +752518,121.96,85.1534 +752519,120.66,84.3603 +752520,119.32,83.5787 +752521,121.86,85.982 +752522,120.61,85.1464 +752523,119.34,84.3203 +752524,118.03,83.5053 +752525,120.48,86.007 +752526,119.26,85.1392 +752527,118.02,84.2805 +752528,116.75,83.4326 +752529,119.1,86.0312 +752530,117.91,85.1317 +752531,116.7,84.2409 +752532,115.46,83.3607 +752533,117.72,86.0548 +752534,116.57,85.1239 +752535,115.39,84.2016 +752536,114.18,83.2895 +752537,116.34,86.0776 +752538,115.22,85.1159 +752539,114.07,84.1625 +752540,112.9,83.219 +752541,114.95,86.0996 +752542,113.87,85.1077 +752543,112.75,84.1237 +752544,111.61,83.1494 +752545,113.57,86.1209 +752546,112.52,85.0991 +752547,111.44,84.0851 +752548,110.33,83.0806 +752549,112.18,86.1413 +752550,111.17,85.0903 +752551,110.12,84.0469 +752552,109.05,83.0127 +752553,110.8,86.1609 +752554,109.82,85.0812 +752555,108.81,84.0089 +752556,107.77,82.9456 +752557,109.41,86.1797 +752558,108.47,85.0718 +752559,107.49,83.9712 +752560,106.49,82.8794 +752561,108.03,86.1975 +752562,107.12,85.0622 +752563,106.18,83.9338 +752564,105.22,82.8142 +752565,106.64,86.2145 +752566,105.76,85.0522 +752567,104.87,83.8967 +752568,103.94,82.7499 +752569,105.25,86.2306 +752570,104.41,85.0418 +752571,103.55,83.86 +752572,102.66,82.6866 +752573,103.86,86.2457 +752574,103.06,85.0312 +752575,102.24,83.8235 +752576,101.39,82.6242 +752577,102.47,86.2599 +752578,101.71,85.0202 +752579,100.92,83.7874 +752580,100.11,82.5628 +752581,101.08,86.2731 +752582,100.36,85.0089 +752583,99.612,83.7516 +752584,98.839,82.5025 +752585,99.687,86.2852 +752586,99.006,84.9973 +752587,98.299,83.7161 +752588,97.565,82.4432 +752589,98.295,86.2964 +752590,97.654,84.9853 +752591,96.986,83.681 +752592,96.292,82.385 +752593,96.903,86.3066 +752594,96.302,84.973 +752595,95.674,83.6462 +752596,95.02,82.3278 +752597,95.51,86.3157 +752598,94.949,84.9603 +752599,94.362,83.6118 +752600,93.748,82.2717 +752601,94.116,86.3237 +752602,93.597,84.9472 +752603,93.05,83.5778 +752604,92.476,82.2168 +752605,92.722,86.3307 +752606,92.244,84.9338 +752607,91.738,83.5441 +752608,91.205,82.1629 +752609,91.328,86.3366 +752610,90.891,84.92 +752611,90.427,83.5108 +752612,89.935,82.1102 +752613,89.933,86.3413 +752614,89.538,84.9058 +752615,89.115,83.4779 +752616,88.665,82.0587 +752617,88.538,86.3449 +752618,88.185,84.8913 +752619,87.804,83.4453 +752620,87.395,82.0083 +752621,87.142,86.3474 +752622,86.832,84.8763 +752623,86.493,83.4132 +752624,86.126,81.9591 +752625,85.746,86.3488 +752626,85.479,84.861 +752627,85.182,83.3814 +752628,84.857,81.9111 +752629,84.35,86.349 +752630,84.126,84.8452 +752631,83.872,83.35 +752632,83.588,81.8643 +752633,82.954,86.348 +752634,82.772,84.8291 +752635,82.561,83.319 +752636,82.32,81.8187 +752637,81.557,86.3458 +752638,81.419,84.8126 +752639,81.25,83.2885 +752640,81.052,81.7744 +752641,80.16,86.3424 +752642,80.066,84.7956 +752643,79.94,83.2583 +752644,79.784,81.7312 +752645,78.763,86.3378 +752646,78.712,84.7783 +752647,78.63,83.2285 +752648,78.516,81.6894 +752649,77.366,86.332 +752650,77.359,84.7605 +752651,77.319,83.1992 +752652,77.248,81.6487 +752653,75.969,86.3249 +752654,76.006,84.7423 +752655,76.009,83.1703 +752656,75.981,81.6094 +752657,74.572,86.3167 +752658,74.652,84.7237 +752659,74.699,83.1417 +752660,74.713,81.5713 +752661,73.175,86.3071 +752662,73.299,84.7047 +752663,73.389,83.1137 +752664,73.446,81.5344 +752665,71.777,86.2964 +752666,71.946,84.6853 +752667,72.079,83.086 +752668,72.178,81.4989 +752669,70.38,86.2843 +752670,70.593,84.6654 +752671,70.769,83.0587 +752672,70.911,81.4646 +752673,68.983,86.271 +752674,69.239,84.6451 +752675,69.459,83.0319 +752676,69.643,81.4317 +752677,67.586,86.2565 +752678,67.886,84.6244 +752679,68.148,83.0055 +752680,68.376,81.4 +752681,66.19,86.2406 +752682,66.533,84.6032 +752683,66.838,82.9795 +752684,67.108,81.3696 +752685,64.793,86.2235 +752686,65.18,84.5816 +752687,65.528,82.954 +752688,65.84,81.3405 +752689,63.397,86.2051 +752690,63.828,84.5596 +752691,64.218,82.9289 +752692,64.572,81.3127 +752693,62.001,86.1855 +752694,62.475,84.5372 +752695,62.908,82.9042 +752696,63.304,81.2862 +752697,60.605,86.1645 +752698,61.122,84.5143 +752699,61.598,82.8799 +752700,62.035,81.261 +752701,59.21,86.1422 +752702,59.77,84.491 +752703,60.287,82.8561 +752704,60.766,81.2371 +752705,57.815,86.1187 +752706,58.418,84.4673 +752707,58.977,82.8327 +752708,59.497,81.2145 +752709,56.42,86.0939 +752710,57.065,84.4431 +752711,57.667,82.8098 +752712,58.228,81.1932 +752713,55.026,86.0678 +752714,55.714,84.4185 +752715,56.356,82.7872 +752716,56.958,81.1732 +752717,53.632,86.0404 +752718,54.362,84.3935 +752719,55.045,82.7651 +752720,55.688,81.1545 +752721,52.239,86.0117 +752722,53.01,84.368 +752723,53.734,82.7435 +752724,54.417,81.137 +752725,50.846,85.9817 +752726,51.659,84.3421 +752727,52.423,82.7222 +752728,53.146,81.1209 +752729,49.454,85.9505 +752730,50.308,84.3158 +752731,51.112,82.7014 +752732,51.874,81.106 +752733,48.063,85.9179 +752734,48.957,84.289 +752735,49.801,82.681 +752736,50.602,81.0924 +752737,46.672,85.8842 +752738,47.606,84.2619 +752739,48.49,82.661 +752740,49.329,81.08 +752741,45.282,85.8491 +752742,46.256,84.2343 +752743,47.178,82.6414 +752744,48.056,81.0689 +752745,43.892,85.8128 +752746,44.905,84.2063 +752747,45.866,82.6223 +752748,46.782,81.0591 +752749,42.503,85.7752 +752750,43.556,84.1779 +752751,44.554,82.6035 +752752,45.507,81.0505 +752753,41.115,85.7364 +752754,42.206,84.149 +752755,43.242,82.5852 +752756,44.232,81.0431 +752757,39.728,85.6964 +752758,40.857,84.1198 +752759,41.93,82.5673 +752760,42.956,81.0369 +752761,38.342,85.6551 +752762,39.507,84.0901 +752763,40.617,82.5498 +752764,41.679,81.032 +752765,36.956,85.6126 +752766,38.159,84.0601 +752767,39.305,82.5326 +752768,40.401,81.0282 +752769,35.572,85.5689 +752770,36.81,84.0296 +752771,37.991,82.5159 +752772,39.123,81.0256 +752773,34.188,85.524 +752774,35.462,83.9988 +752775,36.678,82.4996 +752776,37.844,81.0242 +752777,32.805,85.478 +752778,34.114,83.9675 +752779,35.365,82.4837 +752780,36.564,81.024 +752781,31.423,85.4307 +752782,32.767,83.9359 +752783,34.051,82.4681 +752784,35.283,81.0249 +752785,30.043,85.3823 +752786,31.42,83.9039 +752787,32.737,82.4529 +752788,34.002,81.0269 +752789,28.663,85.3327 +752790,30.073,83.8715 +752791,31.422,82.4381 +752792,32.719,81.0301 +752793,27.284,85.282 +752794,28.727,83.8387 +752795,30.108,82.4237 +752796,31.435,81.0343 +752797,25.907,85.2302 +752798,27.381,83.8056 +752799,28.793,82.4096 +752800,30.151,81.0397 +752801,24.53,85.1773 +752802,26.035,83.7721 +752803,27.477,82.3959 +752804,28.865,81.0461 +752805,23.155,85.1232 +752806,24.69,83.7382 +752807,26.162,82.3826 +752808,27.579,81.0535 +752809,21.781,85.0681 +752810,23.345,83.704 +752811,24.846,82.3696 +752812,26.291,81.062 +752813,20.408,85.012 +752814,22.001,83.6694 +752815,23.529,82.3569 +752816,25.003,81.0715 +752817,19.036,84.9548 +752818,20.657,83.6345 +752819,22.213,82.3446 +752820,23.713,81.082 +752821,17.665,84.8966 +752822,19.313,83.5993 +752823,20.896,82.3326 +752824,22.422,81.0935 +752825,16.296,84.8374 +752826,17.97,83.5637 +752827,19.578,82.321 +752828,21.13,81.106 +752829,14.928,84.7772 +752830,16.628,83.5278 +752831,18.261,82.3096 +752832,19.837,81.1194 +752833,13.561,84.716 +752834,15.285,83.4916 +752835,16.943,82.2986 +752836,18.543,81.1337 +752837,12.196,84.6539 +752838,13.944,83.4551 +752839,15.624,82.2879 +752840,17.247,81.1489 +752841,10.831,84.5908 +752842,12.602,83.4183 +752843,14.305,82.2774 +752844,15.951,81.165 +752845,9.4687,84.5269 +752846,11.262,83.3812 +752847,12.986,82.2673 +752848,14.653,81.1819 +752849,8.1073,84.4621 +752850,9.9212,83.3438 +752851,11.667,82.2574 +752852,13.354,81.1997 +752853,6.7473,84.3964 +752854,8.5813,83.3061 +752855,10.347,82.2478 +752856,12.053,81.2183 +752857,5.3887,84.3299 +752858,7.2419,83.2682 +752859,9.0263,82.2385 +752860,10.752,81.2376 +752861,4.0316,84.2625 +752862,5.9029,83.23 +752863,7.7054,82.2295 +752864,9.4489,81.2578 +752865,2.6758,84.1944 +752866,4.5645,83.1915 +752867,6.3842,82.2207 +752868,8.1447,81.2787 +752869,1.3216,84.1255 +752870,3.2266,83.1528 +752871,5.0626,82.2121 +752872,6.8393,81.3003 +752873,359.97,84.0559 +752874,1.8892,83.1138 +752875,3.7405,82.2038 +752876,5.5325,81.3225 +752877,358.62,83.9855 +752878,0.55223,83.0746 +752879,2.418,82.1957 +752880,4.2243,81.3455 +752881,357.27,83.9145 +752882,359.22,83.0352 +752883,1.0951,82.1878 +752884,2.9148,81.3691 +752885,355.92,83.8428 +752886,357.88,82.9956 +752887,359.77,82.1802 +752888,1.604,81.3933 +752889,354.57,83.7704 +752890,356.54,82.9557 +752891,358.45,82.1727 +752892,0.29174,81.4181 +752893,353.23,83.6975 +752894,355.21,82.9157 +752895,357.12,82.1655 +752896,358.98,81.4435 +752897,351.88,83.6239 +752898,353.88,82.8755 +752899,355.8,82.1584 +752900,357.66,81.4694 +752901,350.54,83.5498 +752902,352.54,82.8351 +752903,354.47,82.1515 +752904,356.35,81.4958 +752905,349.2,83.4752 +752906,351.21,82.7945 +752907,353.15,82.1448 +752908,355.03,81.5228 +752909,347.86,83.4 +752910,349.88,82.7538 +752911,351.82,82.1382 +752912,353.71,81.5501 +752913,346.52,83.3244 +752914,348.54,82.7129 +752915,350.5,82.1318 +752916,352.39,81.578 +752917,345.19,83.2483 +752918,347.21,82.6718 +752919,349.17,82.1255 +752920,351.07,81.6062 +752921,343.85,83.1718 +752922,345.88,82.6307 +752923,347.84,82.1194 +752924,349.74,81.6348 +752925,342.52,83.0949 +752926,344.55,82.5894 +752927,346.51,82.1134 +752928,348.42,81.6637 +752929,341.19,83.0177 +752930,343.22,82.548 +752931,345.19,82.1074 +752932,347.09,81.693 +752933,339.86,82.9401 +752934,341.89,82.5065 +752935,343.86,82.1016 +752936,345.76,81.7226 +752937,338.53,82.8622 +752938,340.56,82.4649 +752939,342.53,82.0959 +752940,344.44,81.7524 +752941,337.2,82.784 +752942,339.23,82.4232 +752943,341.2,82.0903 +752944,343.1,81.7825 +752945,335.88,82.7056 +752946,337.9,82.3814 +752947,339.87,82.0848 +752948,341.77,81.8128 +752949,334.56,82.627 +752950,336.58,82.3395 +752951,338.54,82.0793 +752952,340.44,81.8433 +752953,333.23,82.5482 +752954,335.25,82.2977 +752955,337.21,82.0739 +752956,339.1,81.8739 +752957,331.91,82.4692 +752958,333.92,82.2557 +752959,335.87,82.0685 +752960,337.77,81.9047 +752961,330.59,82.3901 +752962,332.6,82.2137 +752963,334.54,82.0632 +752964,336.43,81.9355 +752965,329.28,82.3109 +752966,331.27,82.1717 +752967,333.21,82.0579 +752968,335.09,81.9665 +752969,327.96,82.2316 +752970,329.95,82.1297 +752971,331.88,82.0526 +752972,333.75,81.9975 +752973,326.65,82.1523 +752974,328.62,82.0877 +752975,330.54,82.0473 +752976,332.41,82.0285 +752977,325.33,82.073 +752978,327.3,82.0456 +752979,329.21,82.042 +752980,331.06,82.0595 +752981,324.02,81.9937 +752982,325.98,82.0036 +752983,327.87,82.0367 +752984,329.72,82.0904 +752985,322.71,81.9145 +752986,324.65,81.9616 +752987,326.54,82.0314 +752988,328.37,82.1213 +752989,321.41,81.8354 +752990,323.33,81.9197 +752991,325.2,82.0261 +752992,327.02,82.1521 +752993,320.1,81.7563 +752994,322.01,81.8778 +752995,323.87,82.0207 +752996,325.67,82.1827 +752997,318.79,81.6775 +752998,320.69,81.8359 +752999,322.53,82.0153 +753000,324.32,82.2132 +753001,317.49,81.5988 +753002,319.37,81.7941 +753003,321.2,82.0098 +753004,322.97,82.2435 +753005,316.19,81.5203 +753006,318.05,81.7523 +753007,319.86,82.0043 +753008,321.62,82.2737 +753009,314.89,81.442 +753010,316.73,81.7107 +753011,318.52,81.9987 +753012,320.26,82.3035 +753013,313.59,81.364 +753014,315.41,81.6691 +753015,317.18,81.993 +753016,318.91,82.3332 +753017,312.29,81.2863 +753018,314.09,81.6276 +753019,315.84,81.9872 +753020,317.55,82.3625 +753021,310.99,81.2089 +753022,312.77,81.5863 +753023,314.51,81.9813 +753024,316.19,82.3915 +753025,309.7,81.1319 +753026,311.46,81.5451 +753027,313.17,81.9753 +753028,314.83,82.4202 +753029,308.4,81.0552 +753030,310.14,81.5039 +753031,311.83,81.9691 +753032,313.47,82.4485 +753033,307.11,80.979 +753034,308.82,81.463 +753035,310.49,81.9629 +753036,312.11,82.4764 +753037,305.82,80.9032 +753038,307.51,81.4221 +753039,309.15,81.9565 +753040,310.74,82.5038 +753041,304.53,80.8278 +753042,306.19,81.3815 +753043,307.81,81.9499 +753044,309.38,82.5309 +753045,303.24,80.753 +753046,304.88,81.341 +753047,306.47,81.9432 +753048,308.01,82.5574 +753049,301.96,80.6787 +753050,303.56,81.3006 +753051,305.12,81.9363 +753052,306.64,82.5835 +753053,300.67,80.6049 +753054,302.25,81.2605 +753055,303.78,81.9292 +753056,305.27,82.609 +753057,299.38,80.5317 +753058,300.93,81.2205 +753059,302.44,81.922 +753060,303.9,82.634 +753061,298.1,80.4591 +753062,299.62,81.1808 +753063,301.1,81.9146 +753064,302.53,82.6584 +753065,296.82,80.3871 +753066,298.31,81.1412 +753067,299.75,81.907 +753068,301.16,82.6822 +753069,295.54,80.3158 +753070,296.99,81.1019 +753071,298.41,81.8991 +753072,299.79,82.7054 +753073,294.26,80.2452 +753074,295.68,81.0628 +753075,297.07,81.8911 +753076,298.41,82.7279 +753077,292.98,80.1753 +753078,294.37,81.0239 +753079,295.72,81.8828 +753080,297.04,82.7497 +753081,291.7,80.1061 +753082,293.06,80.9853 +753083,294.38,81.8743 +753084,295.66,82.7709 +753085,290.42,80.0377 +753086,291.75,80.9469 +753087,293.03,81.8655 +753088,294.28,82.7914 +753089,289.15,79.97 +753090,290.44,80.9088 +753091,291.69,81.8565 +753092,292.9,82.8111 +753093,287.87,79.903 +753094,289.13,80.871 +753095,290.34,81.8473 +753096,291.52,82.83 +753097,286.6,79.837 +753098,287.82,80.8334 +753099,289,81.8378 +753100,290.14,82.8482 +753101,285.33,79.772 +753102,286.51,80.7961 +753103,287.65,81.828 +753104,288.76,82.8656 +753105,284.05,79.708 +753106,285.2,80.7591 +753107,286.31,81.8179 +753108,287.38,82.8821 +753109,282.78,79.644 +753110,283.89,80.7224 +753111,284.96,81.8076 +753112,286,82.8978 +753113,281.51,79.582 +753114,282.58,80.686 +753115,283.61,81.7969 +753116,284.61,82.9127 +753117,280.24,79.52 +753118,281.27,80.6499 +753119,282.27,81.786 +753120,283.23,82.9266 +753121,278.98,79.459 +753122,279.96,80.6141 +753123,280.92,81.7748 +753124,281.84,82.9397 +753125,277.71,79.4 +753126,278.66,80.5786 +753127,279.57,81.7632 +753128,280.45,82.9518 +753129,276.44,79.341 +753130,277.35,80.5435 +753131,278.22,81.7514 +753132,279.07,82.963 +753133,275.17,79.283 +753134,276.04,80.5087 +753135,276.88,81.7392 +753136,277.68,82.9732 +753137,273.91,79.227 +753138,274.73,80.4742 +753139,275.53,81.7267 +753140,276.29,82.9825 +753141,272.64,79.171 +753142,273.43,80.4401 +753143,274.18,81.7139 +753144,274.9,82.9908 +753145,271.38,79.117 +753146,272.12,80.4064 +753147,272.83,81.7007 +753148,273.51,82.9981 +753149,270.12,79.063 +753150,270.81,80.373 +753151,271.48,81.6872 +753152,272.12,83.0043 +753153,268.85,79.011 +753154,269.51,80.3399 +753155,270.13,81.6733 +753156,270.73,83.0095 +753157,267.59,78.96 +753158,268.2,80.3072 +753159,268.78,81.6591 +753160,269.34,83.0137 +753161,266.33,78.91 +753162,266.9,80.2749 +753163,267.44,81.6445 +753164,267.94,83.0168 +753165,265.07,78.861 +753166,265.59,80.243 +753167,266.09,81.6296 +753168,266.55,83.0188 +753169,263.8,78.813 +753170,264.29,80.2114 +753171,264.74,81.6143 +753172,265.16,83.0198 +753173,262.54,78.766 +753174,262.98,80.1803 +753175,263.39,81.5986 +753176,263.76,83.0196 +753177,261.28,78.721 +753178,261.68,80.1495 +753179,262.04,81.5826 +753180,262.37,83.0183 +753181,260.02,78.676 +753182,260.37,80.1191 +753183,260.69,81.5661 +753184,260.98,83.0159 +753185,258.76,78.633 +753186,259.07,80.0891 +753187,259.34,81.5493 +753188,259.58,83.0124 +753189,257.5,78.591 +753190,257.76,80.0595 +753191,257.99,81.5321 +753192,258.19,83.0077 +753193,256.24,78.551 +753194,256.46,80.0304 +753195,256.64,81.5145 +753196,256.79,83.0019 +753197,254.98,78.511 +753198,255.15,80.0016 +753199,255.29,81.4966 +753200,255.4,82.9948 +753201,253.72,78.473 +753202,253.85,79.973 +753203,253.94,81.4782 +753204,254,82.9867 +753205,252.47,78.436 +753206,252.54,79.945 +753207,252.59,81.4595 +753208,252.61,82.9773 +753209,251.21,78.4 +753210,251.24,79.918 +753211,251.24,81.4403 +753212,251.21,82.9668 +753213,249.95,78.366 +753214,249.94,79.891 +753215,249.89,81.4207 +753216,249.81,82.955 +753217,248.69,78.332 +753218,248.63,79.864 +753219,248.54,81.4008 +753220,248.42,82.9421 +753221,247.43,78.3 +753222,247.33,79.838 +753223,247.19,81.3804 +753224,247.02,82.9279 +753225,246.17,78.269 +753226,246.02,79.812 +753227,245.84,81.3596 +753228,245.63,82.9126 +753229,244.91,78.24 +753230,244.72,79.786 +753231,244.49,81.3385 +753232,244.23,82.896 +753233,243.65,78.212 +753234,243.41,79.761 +753235,243.14,81.3169 +753236,242.83,82.8782 +753237,242.39,78.185 +753238,242.11,79.737 +753239,241.79,81.2949 +753240,241.44,82.8592 +753241,241.13,78.159 +753242,240.81,79.712 +753243,240.44,81.2725 +753244,240.04,82.8389 +753245,239.87,78.135 +753246,239.5,79.689 +753247,239.09,81.2497 +753248,238.65,82.8175 +753249,238.61,78.111 +753250,238.2,79.665 +753251,237.75,81.2265 +753252,237.25,82.7948 +753253,237.35,78.09 +753254,236.89,79.642 +753255,236.4,81.2029 +753256,235.86,82.7709 +753257,236.09,78.069 +753258,235.59,79.62 +753259,235.05,81.1788 +753260,234.47,82.7458 +753261,234.83,78.05 +753262,234.28,79.598 +753263,233.7,81.1544 +753264,233.07,82.7194 +753265,233.57,78.031 +753266,232.98,79.576 +753267,232.35,81.1295 +753268,231.68,82.6918 +753269,232.31,78.015 +753270,231.67,79.555 +753271,231,81.1043 +753272,230.29,82.663 +753273,231.05,77.999 +753274,230.37,79.534 +753275,229.65,81.0786 +753276,228.89,82.633 +753277,229.78,77.985 +753278,229.06,79.514 +753279,228.31,81.0526 +753280,227.5,82.6018 +753281,228.52,77.972 +753282,227.76,79.494 +753283,226.96,81.0261 +753284,226.11,82.5693 +753285,227.26,77.96 +753286,226.45,79.474 +753287,225.61,80.9992 +753288,224.72,82.5357 +753289,225.99,77.949 +753290,225.15,79.455 +753291,224.26,80.972 +753292,223.33,82.5008 +753293,224.73,77.939 +753294,223.84,79.436 +753295,222.92,80.9443 +753296,221.94,82.4648 +753297,223.46,77.931 +753298,222.54,79.418 +753299,221.57,80.9162 +753300,220.55,82.4275 +753301,222.2,77.924 +753302,221.23,79.4 +753303,220.22,80.8878 +753304,219.16,82.3891 +753305,220.93,77.918 +753306,219.92,79.382 +753307,218.88,80.859 +753308,217.78,82.3495 +753309,219.66,77.914 +753310,218.62,79.365 +753311,217.53,80.8298 +753312,216.39,82.3088 +753313,218.39,77.91 +753314,217.31,79.348 +753315,216.18,80.8002 +753316,215,82.2669 +753317,217.12,77.908 +753318,216,79.332 +753319,214.84,80.7702 +753320,213.62,82.2238 +753321,215.85,77.907 +753322,214.7,79.316 +753323,213.49,80.7398 +753324,212.23,82.1796 +753325,214.58,77.906 +753326,213.39,79.3 +753327,212.15,80.7091 +753328,210.85,82.1343 +753329,213.31,77.907 +753330,212.08,79.285 +753331,210.8,80.678 +753332,209.47,82.0879 +753333,212.04,77.91 +753334,210.77,79.27 +753335,209.46,80.6466 +753336,208.09,82.0404 +753337,210.76,77.913 +753338,209.46,79.255 +753339,208.12,80.6148 +753340,206.71,81.9918 +753341,209.49,77.917 +753342,208.16,79.241 +753343,206.77,80.5826 +753344,205.33,81.9421 +753345,208.21,77.922 +753346,206.85,79.228 +753347,205.43,80.5501 +753348,203.95,81.8913 +753349,206.94,77.929 +753350,205.54,79.214 +753351,204.09,80.5173 +753352,202.57,81.8395 +753353,205.66,77.936 +753354,204.23,79.201 +753355,202.74,80.4841 +753356,201.2,81.7867 +753357,204.38,77.945 +753358,202.92,79.188 +753359,201.4,80.4505 +753360,199.82,81.7329 +753361,203.1,77.954 +753362,201.61,79.176 +753363,200.06,80.4167 +753364,198.45,81.678 +753365,201.82,77.964 +753366,200.3,79.164 +753367,198.72,80.3825 +753368,197.08,81.6222 +753369,200.54,77.976 +753370,198.99,79.152 +753371,197.38,80.3481 +753372,195.7,81.5654 +753373,199.25,77.988 +753374,197.67,79.141 +753375,196.04,80.3133 +753376,194.33,81.5076 +753377,197.97,78.001 +753378,196.36,79.129 +753379,194.7,80.2782 +753380,192.97,81.449 +753381,196.68,78.015 +753382,195.05,79.119 +753383,193.36,80.2428 +753384,191.6,81.3894 +753385,195.4,78.03 +753386,193.74,79.108 +753387,192.02,80.2071 +753388,190.23,81.3289 +753389,194.11,78.046 +753390,192.42,79.098 +753391,190.68,80.1711 +753392,188.87,81.2675 +753393,192.82,78.062 +753394,191.11,79.088 +753395,189.34,80.1349 +753396,187.5,81.2053 +753397,191.53,78.08 +753398,189.8,79.078 +753399,188.01,80.0984 +753400,186.14,81.1423 +753401,190.24,78.098 +753402,188.48,79.069 +753403,186.67,80.0616 +753404,184.78,81.0784 +753405,188.94,78.117 +753406,187.17,79.06 +753407,185.33,80.0246 +753408,183.42,81.0138 +753409,187.65,78.136 +753410,185.85,79.051 +753411,184,79.987 +753412,182.07,80.9484 +753413,186.35,78.157 +753414,184.54,79.042 +753415,182.66,79.95 +753416,180.71,80.8822 +753417,185.05,78.178 +753418,183.22,79.034 +753419,181.33,79.912 +753420,179.35,80.8154 +753421,183.76,78.2 +753422,181.91,79.026 +753423,179.99,79.874 +753424,178,80.7478 +753425,182.46,78.222 +753426,180.59,79.018 +753427,178.66,79.836 +753428,176.65,80.6795 +753429,181.15,78.245 +753430,179.27,79.01 +753431,177.32,79.798 +753432,175.3,80.6106 +753433,179.85,78.269 +753434,177.95,79.002 +753435,175.99,79.759 +753436,173.95,80.5411 +753437,178.55,78.293 +753438,176.63,78.995 +753439,174.66,79.72 +753440,172.6,80.471 +753441,177.24,78.318 +753442,175.32,78.988 +753443,173.33,79.681 +753444,171.26,80.4003 +753445,175.93,78.343 +753446,174,78.981 +753447,171.99,79.642 +753448,169.91,80.329 +753449,174.62,78.368 +753450,172.68,78.974 +753451,170.66,79.603 +753452,168.57,80.2572 +753453,173.31,78.395 +753454,171.36,78.967 +753455,169.33,79.563 +753456,167.23,80.1849 +753457,172,78.421 +753458,170.04,78.961 +753459,168,79.524 +753460,165.89,80.1122 +753461,170.69,78.448 +753462,168.72,78.955 +753463,166.67,79.484 +753464,164.55,80.039 +753465,169.38,78.476 +753466,167.39,78.948 +753467,165.35,79.444 +753468,163.22,79.965 +753469,168.06,78.503 +753470,166.07,78.942 +753471,164.02,79.404 +753472,161.88,79.891 +753473,166.74,78.531 +753474,164.75,78.936 +753475,162.69,79.364 +753476,160.55,79.817 +753477,165.42,78.56 +753478,163.43,78.931 +753479,161.36,79.324 +753480,159.22,79.742 +753481,164.1,78.588 +753482,162.1,78.925 +753483,160.04,79.283 +753484,157.89,79.667 +753485,162.78,78.617 +753486,160.78,78.919 +753487,158.71,79.243 +753488,156.56,79.592 +753489,161.46,78.646 +753490,159.45,78.914 +753491,157.38,79.203 +753492,155.24,79.516 +753493,160.13,78.676 +753494,158.13,78.908 +753495,156.06,79.162 +753496,153.91,79.441 +753497,158.8,78.705 +753498,156.8,78.903 +753499,154.74,79.122 +753500,152.59,79.365 +753501,157.48,78.735 +753502,155.48,78.897 +753503,153.41,79.081 +753504,151.27,79.288 +753505,156.15,78.765 +753506,154.15,78.892 +753507,152.09,79.04 +753508,149.95,79.212 +753509,154.82,78.794 +753510,152.82,78.887 +753511,150.77,79 +753512,148.63,79.136 +753513,153.48,78.824 +753514,151.5,78.881 +753515,149.44,78.959 +753516,147.32,79.059 +753517,152.15,78.854 +753518,150.17,78.876 +753519,148.12,78.918 +753520,146,78.983 +753521,150.81,78.884 +753522,148.84,78.871 +753523,146.8,78.877 +753524,144.69,78.906 +753525,149.48,78.914 +753526,147.51,78.866 +753527,145.48,78.837 +753528,143.38,78.83 +753529,148.14,78.944 +753530,146.18,78.86 +753531,144.16,78.796 +753532,142.07,78.753 +753533,146.8,78.973 +753534,144.85,78.855 +753535,142.84,78.755 +753536,140.76,78.677 +753537,145.46,79.003 +753538,143.52,78.85 +753539,141.52,78.715 +753540,139.45,78.6 +753541,144.11,79.032 +753542,142.19,78.844 +753543,140.21,78.674 +753544,138.15,78.524 +753545,142.77,79.062 +753546,140.86,78.839 +753547,138.89,78.634 +753548,136.84,78.448 +753549,141.42,79.091 +753550,139.53,78.834 +753551,137.57,78.593 +753552,135.54,78.372 +753553,140.07,79.12 +753554,138.2,78.828 +753555,136.25,78.553 +753556,134.24,78.296 +753557,138.72,79.148 +753558,136.86,78.822 +753559,134.94,78.513 +753560,132.94,78.221 +753561,137.37,79.176 +753562,135.53,78.817 +753563,133.62,78.472 +753564,131.65,78.146 +753565,136.02,79.204 +753566,134.2,78.811 +753567,132.31,78.432 +753568,130.35,78.071 +753569,134.67,79.232 +753570,132.86,78.805 +753571,130.99,78.392 +753572,129.06,77.996 +753573,133.31,79.26 +753574,131.53,78.799 +753575,129.68,78.353 +753576,127.77,77.922 +753577,131.96,79.287 +753578,130.19,78.793 +753579,128.37,78.313 +753580,126.48,77.848 +753581,130.6,79.313 +753582,128.86,78.787 +753583,127.05,78.273 +753584,125.19,77.775 +753585,129.24,79.339 +753586,127.52,78.78 +753587,125.74,78.234 +753588,123.9,77.702 +753589,127.88,79.365 +753590,126.18,78.774 +753591,124.43,78.195 +753592,122.61,77.629 +753593,126.52,79.39 +753594,124.85,78.767 +753595,123.12,78.155 +753596,121.33,77.557 +753597,125.16,79.415 +753598,123.51,78.76 +753599,121.81,78.117 +753600,120.04,77.486 +753601,123.79,79.439 +753602,122.17,78.753 +753603,120.5,78.078 +753604,118.76,77.415 +753605,122.43,79.463 +753606,120.83,78.746 +753607,119.18,78.039 +753608,117.48,77.345 +753609,121.06,79.486 +753610,119.5,78.739 +753611,117.88,78.001 +753612,116.2,77.275 +753613,119.69,79.508 +753614,118.16,78.731 +753615,116.57,77.963 +753616,114.92,77.206 +753617,118.33,79.53 +753618,116.82,78.723 +753619,115.26,77.925 +753620,113.64,77.137 +753621,116.96,79.551 +753622,115.48,78.715 +753623,113.95,77.887 +753624,112.37,77.069 +753625,115.58,79.571 +753626,114.14,78.707 +753627,112.64,77.85 +753628,111.09,77.002 +753629,114.21,79.591 +753630,112.8,78.699 +753631,111.33,77.813 +753632,109.82,76.936 +753633,112.84,79.61 +753634,111.46,78.69 +753635,110.03,77.776 +753636,108.55,76.87 +753637,111.46,79.629 +753638,110.12,78.681 +753639,108.72,77.739 +753640,107.27,76.805 +753641,110.09,79.646 +753642,108.77,78.672 +753643,107.41,77.703 +753644,106,76.741 +753645,108.71,79.663 +753646,107.43,78.662 +753647,106.11,77.666 +753648,104.74,76.677 +753649,107.33,79.679 +753650,106.09,78.653 +753651,104.8,77.631 +753652,103.47,76.615 +753653,105.95,79.694 +753654,104.75,78.643 +753655,103.5,77.595 +753656,102.2,76.553 +753657,104.57,79.709 +753658,103.41,78.632 +753659,102.19,77.56 +753660,100.93,76.492 +753661,103.19,79.722 +753662,102.06,78.622 +753663,100.89,77.525 +753664,99.669,76.433 +753665,101.81,79.735 +753666,100.72,78.611 +753667,99.584,77.49 +753668,98.405,76.374 +753669,100.43,79.746 +753670,99.375,78.6 +753671,98.28,77.456 +753672,97.142,76.316 +753673,99.046,79.757 +753674,98.031,78.588 +753675,96.977,77.422 +753676,95.879,76.259 +753677,97.661,79.767 +753678,96.687,78.577 +753679,95.673,77.388 +753680,94.618,76.202 +753681,96.276,79.776 +753682,95.343,78.565 +753683,94.371,77.354 +753684,93.357,76.147 +753685,94.89,79.784 +753686,93.998,78.552 +753687,93.068,77.321 +753688,92.097,76.093 +753689,93.504,79.791 +753690,92.654,78.54 +753691,91.766,77.289 +753692,90.838,76.04 +753693,92.116,79.797 +753694,91.309,78.527 +753695,90.464,77.256 +753696,89.58,75.988 +753697,90.728,79.802 +753698,89.963,78.513 +753699,89.162,77.224 +753700,88.322,75.937 +753701,89.339,79.806 +753702,88.618,78.5 +753703,87.86,77.193 +753704,87.065,75.887 +753705,87.95,79.809 +753706,87.272,78.486 +753707,86.559,77.161 +753708,85.809,75.839 +753709,86.56,79.811 +753710,85.927,78.471 +753711,85.258,77.13 +753712,84.553,75.791 +753713,85.169,79.812 +753714,84.581,78.456 +753715,83.957,77.1 +753716,83.297,75.744 +753717,83.778,79.812 +753718,83.234,78.441 +753719,82.656,77.07 +753720,82.042,75.699 +753721,82.387,79.811 +753722,81.888,78.426 +753723,81.356,77.04 +753724,80.788,75.655 +753725,80.995,79.808 +753726,80.542,78.41 +753727,80.055,77.01 +753728,79.534,75.611 +753729,79.602,79.805 +753730,79.195,78.394 +753731,78.755,76.981 +753732,78.281,75.569 +753733,78.209,79.8 +753734,77.849,78.377 +753735,77.455,76.953 +753736,77.027,75.529 +753737,76.816,79.795 +753738,76.502,78.36 +753739,76.155,76.925 +753740,75.775,75.489 +753741,75.423,79.788 +753742,75.155,78.343 +753743,74.855,76.897 +753744,74.522,75.45 +753745,74.029,79.78 +753746,73.808,78.325 +753747,73.555,76.869 +753748,73.27,75.413 +753749,72.635,79.771 +753750,72.461,78.307 +753751,72.256,76.842 +753752,72.018,75.377 +753753,71.24,79.76 +753754,71.114,78.289 +753755,70.956,76.816 +753756,70.766,75.342 +753757,69.846,79.749 +753758,69.767,78.27 +753759,69.657,76.789 +753760,69.514,75.309 +753761,68.451,79.736 +753762,68.42,78.251 +753763,68.357,76.763 +753764,68.262,75.276 +753765,67.056,79.723 +753766,67.073,78.231 +753767,67.058,76.738 +753768,67.011,75.245 +753769,65.661,79.708 +753770,65.726,78.211 +753771,65.759,76.713 +753772,65.759,75.215 +753773,64.266,79.692 +753774,64.379,78.191 +753775,64.46,76.688 +753776,64.508,75.186 +753777,62.871,79.674 +753778,63.032,78.17 +753779,63.16,76.664 +753780,63.256,75.159 +753781,61.477,79.656 +753782,61.685,78.148 +753783,61.861,76.64 +753784,62.004,75.133 +753785,60.082,79.636 +753786,60.338,78.127 +753787,60.562,76.617 +753788,60.753,75.108 +753789,58.687,79.615 +753790,58.992,78.105 +753791,59.262,76.594 +753792,59.501,75.084 +753793,57.292,79.593 +753794,57.645,78.082 +753795,57.963,76.571 +753796,58.249,75.062 +753797,55.898,79.57 +753798,56.298,78.06 +753799,56.664,76.549 +753800,56.996,75.04 +753801,54.504,79.546 +753802,54.952,78.036 +753803,55.364,76.528 +753804,55.744,75.02 +753805,53.11,79.52 +753806,53.605,78.013 +753807,54.065,76.506 +753808,54.491,75.002 +753809,51.716,79.493 +753810,52.259,77.989 +753811,52.765,76.485 +753812,53.238,74.984 +753813,50.322,79.466 +753814,50.912,77.965 +753815,51.466,76.465 +753816,51.984,74.968 +753817,48.929,79.436 +753818,49.566,77.94 +753819,50.166,76.445 +753820,50.73,74.953 +753821,47.537,79.406 +753822,48.22,77.915 +753823,48.866,76.425 +753824,49.476,74.939 +753825,46.145,79.375 +753826,46.875,77.889 +753827,47.566,76.406 +753828,48.221,74.926 +753829,44.753,79.342 +753830,45.529,77.863 +753831,46.266,76.387 +753832,46.966,74.915 +753833,43.362,79.308 +753834,44.184,77.837 +753835,44.965,76.369 +753836,45.71,74.904 +753837,41.971,79.273 +753838,42.838,77.81 +753839,43.665,76.351 +753840,44.454,74.895 +753841,40.581,79.237 +753842,41.493,77.783 +753843,42.364,76.333 +753844,43.197,74.887 +753845,39.191,79.2 +753846,40.149,77.756 +753847,41.063,76.316 +753848,41.939,74.881 +753849,37.802,79.162 +753850,38.804,77.728 +753851,39.762,76.299 +753852,40.681,74.875 +753853,36.414,79.122 +753854,37.46,77.699 +753855,38.461,76.282 +753856,39.422,74.871 +753857,35.027,79.081 +753858,36.116,77.671 +753859,37.159,76.266 +753860,38.162,74.868 +753861,33.64,79.04 +753862,34.772,77.642 +753863,35.858,76.25 +753864,36.901,74.866 +753865,32.254,78.997 +753866,33.429,77.613 +753867,34.556,76.235 +753868,35.64,74.865 +753869,30.869,78.953 +753870,32.086,77.583 +753871,33.253,76.22 +753872,34.378,74.865 +753873,29.485,78.908 +753874,30.743,77.553 +753875,31.951,76.206 +753876,33.115,74.866 +753877,28.101,78.862 +753878,29.4,77.523 +753879,30.648,76.191 +753880,31.851,74.868 +753881,26.719,78.815 +753882,28.058,77.492 +753883,29.345,76.178 +753884,30.586,74.872 +753885,25.337,78.766 +753886,26.716,77.461 +753887,28.042,76.164 +753888,29.32,74.876 +753889,23.957,78.717 +753890,25.375,77.429 +753891,26.738,76.151 +753892,28.054,74.882 +753893,22.577,78.667 +753894,24.034,77.398 +753895,25.434,76.138 +753896,26.786,74.888 +753897,21.199,78.616 +753898,22.693,77.365 +753899,24.13,76.126 +753900,25.517,74.896 +753901,19.821,78.564 +753902,21.352,77.333 +753903,22.825,76.113 +753904,24.247,74.905 +753905,18.445,78.51 +753906,20.012,77.3 +753907,21.52,76.102 +753908,22.977,74.914 +753909,17.07,78.456 +753910,18.673,77.267 +753911,20.215,76.09 +753912,21.705,74.925 +753913,15.696,78.401 +753914,17.333,77.234 +753915,18.909,76.079 +753916,20.432,74.936 +753917,14.323,78.345 +753918,15.995,77.2 +753919,17.603,76.068 +753920,19.157,74.948 +753921,12.951,78.288 +753922,14.656,77.166 +753923,16.297,76.058 +753924,17.882,74.962 +753925,11.581,78.231 +753926,13.318,77.132 +753927,14.99,76.047 +753928,16.605,74.976 +753929,10.212,78.172 +753930,11.981,77.098 +753931,13.683,76.037 +753932,15.327,74.991 +753933,8.8443,78.113 +753934,10.644,77.063 +753935,12.375,76.028 +753936,14.048,75.006 +753937,7.4779,78.052 +753938,9.3071,77.028 +753939,11.067,76.018 +753940,12.768,75.023 +753941,6.1129,77.991 +753942,7.9709,76.992 +753943,9.7586,76.009 +753944,11.486,75.04 +753945,4.7492,77.929 +753946,6.6352,76.957 +753947,8.4498,76 +753948,10.203,75.059 +753949,3.387,77.867 +753950,5.3,76.921 +753951,7.1405,75.992 +753952,8.9188,75.077 +753953,2.0261,77.803 +753954,3.9653,76.885 +753955,5.8308,75.983 +753956,7.6332,75.097 +753957,0.66676,77.739 +753958,2.6311,76.849 +753959,4.5206,75.975 +753960,6.3461,75.118 +753961,359.31,77.674 +753962,1.2973,76.812 +753963,3.21,75.967 +753964,5.0577,75.139 +753965,357.95,77.609 +753966,359.96,76.775 +753967,1.8989,75.96 +753968,3.7679,75.16 +753969,356.6,77.542 +753970,358.63,76.738 +753971,0.58737,75.952 +753972,2.4767,75.183 +753973,355.24,77.476 +753974,357.3,76.701 +753975,359.28,75.945 +753976,1.1841,75.206 +753977,353.89,77.408 +753978,355.97,76.664 +753979,357.96,75.938 +753980,359.89,75.229 +753981,352.54,77.34 +753982,354.64,76.626 +753983,356.65,75.931 +753984,358.59,75.253 +753985,351.19,77.272 +753986,353.31,76.589 +753987,355.34,75.925 +753988,357.3,75.278 +753989,349.85,77.202 +753990,351.98,76.551 +753991,354.02,75.918 +753992,356,75.303 +753993,348.5,77.133 +753994,350.65,76.513 +753995,352.71,75.912 +753996,354.7,75.328 +753997,347.16,77.063 +753998,349.32,76.474 +753999,351.39,75.906 +754000,353.4,75.354 +754001,345.81,76.992 +754002,347.99,76.436 +754003,350.08,75.9 +754004,352.09,75.381 +754005,344.47,76.921 +754006,346.66,76.398 +754007,348.76,75.894 +754008,350.79,75.408 +754009,343.14,76.85 +754010,345.33,76.359 +754011,347.45,75.888 +754012,349.48,75.435 +754013,341.8,76.778 +754014,344.01,76.32 +754015,346.13,75.883 +754016,348.18,75.463 +754017,340.46,76.706 +754018,342.68,76.281 +754019,344.81,75.877 +754020,346.87,75.491 +754021,339.13,76.633 +754022,341.35,76.243 +754023,343.49,75.872 +754024,345.56,75.519 +754025,337.8,76.56 +754026,340.03,76.203 +754027,342.17,75.866 +754028,344.24,75.547 +754029,336.47,76.487 +754030,338.71,76.164 +754031,340.86,75.861 +754032,342.93,75.576 +754033,335.14,76.414 +754034,337.38,76.125 +754035,339.54,75.856 +754036,341.61,75.605 +754037,333.81,76.34 +754038,336.06,76.086 +754039,338.22,75.851 +754040,340.3,75.634 +754041,332.49,76.267 +754042,334.74,76.047 +754043,336.9,75.846 +754044,338.98,75.663 +754045,331.16,76.193 +754046,333.41,76.007 +754047,335.57,75.841 +754048,337.66,75.693 +754049,329.84,76.119 +754050,332.09,75.968 +754051,334.25,75.837 +754052,336.34,75.722 +754053,328.52,76.045 +754054,330.77,75.928 +754055,332.93,75.832 +754056,335.01,75.752 +754057,327.2,75.97 +754058,329.45,75.889 +754059,331.61,75.827 +754060,333.69,75.782 +754061,325.89,75.896 +754062,328.13,75.85 +754063,330.29,75.822 +754064,332.36,75.811 +754065,324.57,75.822 +754066,326.81,75.81 +754067,328.96,75.817 +754068,331.03,75.841 +754069,323.26,75.747 +754070,325.49,75.771 +754071,327.64,75.813 +754072,329.7,75.871 +754073,321.95,75.673 +754074,324.17,75.731 +754075,326.31,75.808 +754076,328.37,75.9 +754077,320.64,75.599 +754078,322.86,75.692 +754079,324.99,75.803 +754080,327.04,75.93 +754081,319.33,75.525 +754082,321.54,75.652 +754083,323.66,75.798 +754084,325.71,75.959 +754085,318.02,75.451 +754086,320.22,75.613 +754087,322.34,75.793 +754088,324.37,75.988 +754089,316.72,75.377 +754090,318.91,75.574 +754091,321.01,75.788 +754092,323.03,76.017 +754093,315.41,75.303 +754094,317.59,75.535 +754095,319.68,75.783 +754096,321.69,76.046 +754097,314.11,75.229 +754098,316.28,75.496 +754099,318.35,75.778 +754100,320.35,76.075 +754101,312.81,75.156 +754102,314.96,75.457 +754103,317.03,75.773 +754104,319.01,76.103 +754105,311.52,75.083 +754106,313.65,75.418 +754107,315.7,75.768 +754108,317.67,76.131 +754109,310.22,75.01 +754110,312.34,75.379 +754111,314.37,75.763 +754112,316.32,76.159 +754113,308.92,74.938 +754114,311.02,75.34 +754115,313.04,75.757 +754116,314.98,76.187 +754117,307.63,74.866 +754118,309.71,75.301 +754119,311.71,75.752 +754120,313.63,76.214 +754121,306.34,74.794 +754122,308.4,75.263 +754123,310.38,75.746 +754124,312.28,76.24 +754125,305.05,74.723 +754126,307.09,75.225 +754127,309.04,75.74 +754128,310.93,76.267 +754129,303.76,74.652 +754130,305.78,75.186 +754131,307.71,75.734 +754132,309.57,76.293 +754133,302.48,74.581 +754134,304.47,75.148 +754135,306.38,75.728 +754136,308.22,76.318 +754137,301.19,74.511 +754138,303.16,75.11 +754139,305.05,75.722 +754140,306.87,76.343 +754141,299.91,74.442 +754142,301.85,75.073 +754143,303.72,75.716 +754144,305.51,76.367 +754145,298.62,74.373 +754146,300.54,75.035 +754147,302.38,75.709 +754148,304.15,76.391 +754149,297.34,74.304 +754150,299.23,74.998 +754151,301.05,75.702 +754152,302.79,76.415 +754153,296.07,74.236 +754154,297.93,74.961 +754155,299.71,75.695 +754156,301.43,76.438 +754157,294.79,74.169 +754158,296.62,74.924 +754159,298.38,75.688 +754160,300.07,76.46 +754161,293.51,74.103 +754162,295.31,74.887 +754163,297.04,75.681 +754164,298.7,76.481 +754165,292.24,74.037 +754166,294.01,74.851 +754167,295.71,75.673 +754168,297.34,76.502 +754169,290.96,73.971 +754170,292.7,74.814 +754171,294.37,75.666 +754172,295.97,76.522 +754173,289.69,73.907 +754174,291.4,74.778 +754175,293.03,75.658 +754176,294.61,76.542 +754177,288.42,73.843 +754178,290.09,74.742 +754179,291.7,75.649 +754180,293.24,76.561 +754181,287.15,73.78 +754182,288.79,74.707 +754183,290.36,75.641 +754184,291.87,76.579 +754185,285.88,73.717 +754186,287.48,74.672 +754187,289.02,75.632 +754188,290.5,76.596 +754189,284.61,73.656 +754190,286.18,74.637 +754191,287.68,75.623 +754192,289.13,76.613 +754193,283.35,73.595 +754194,284.88,74.602 +754195,286.35,75.614 +754196,287.75,76.629 +754197,282.08,73.535 +754198,283.58,74.567 +754199,285.01,75.604 +754200,286.38,76.644 +754201,280.82,73.476 +754202,282.27,74.533 +754203,283.67,75.595 +754204,285,76.658 +754205,279.56,73.418 +754206,280.97,74.499 +754207,282.33,75.585 +754208,283.63,76.671 +754209,278.3,73.36 +754210,279.67,74.466 +754211,280.99,75.574 +754212,282.25,76.684 +754213,277.04,73.304 +754214,278.37,74.433 +754215,279.65,75.564 +754216,280.87,76.695 +754217,275.78,73.249 +754218,277.07,74.4 +754219,278.31,75.553 +754220,279.49,76.706 +754221,274.52,73.194 +754222,275.77,74.367 +754223,276.97,75.541 +754224,278.11,76.716 +754225,273.26,73.141 +754226,274.47,74.335 +754227,275.62,75.53 +754228,276.73,76.724 +754229,272,73.088 +754230,273.17,74.303 +754231,274.28,75.518 +754232,275.35,76.732 +754233,270.75,73.037 +754234,271.87,74.271 +754235,272.94,75.506 +754236,273.96,76.739 +754237,269.49,72.986 +754238,270.57,74.24 +754239,271.6,75.493 +754240,272.58,76.745 +754241,268.24,72.937 +754242,269.27,74.209 +754243,270.26,75.48 +754244,271.19,76.75 +754245,266.99,72.888 +754246,267.97,74.178 +754247,268.91,75.467 +754248,269.81,76.754 +754249,265.73,72.841 +754250,266.68,74.148 +754251,267.57,75.454 +754252,268.42,76.757 +754253,264.48,72.795 +754254,265.38,74.118 +754255,266.23,75.44 +754256,267.03,76.759 +754257,263.23,72.749 +754258,264.08,74.088 +754259,264.89,75.426 +754260,265.65,76.759 +754261,261.98,72.705 +754262,262.78,74.059 +754263,263.54,75.411 +754264,264.26,76.759 +754265,260.73,72.662 +754266,261.49,74.03 +754267,262.2,75.396 +754268,262.87,76.758 +754269,259.48,72.621 +754270,260.19,74.002 +754271,260.85,75.381 +754272,261.48,76.755 +754273,258.23,72.58 +754274,258.89,73.974 +754275,259.51,75.365 +754276,260.09,76.752 +754277,256.99,72.54 +754278,257.6,73.946 +754279,258.17,75.349 +754280,258.7,76.747 +754281,255.74,72.502 +754282,256.3,73.919 +754283,256.82,75.333 +754284,257.31,76.741 +754285,254.49,72.465 +754286,255,73.892 +754287,255.48,75.316 +754288,255.91,76.735 +754289,253.24,72.429 +754290,253.71,73.865 +754291,254.13,75.299 +754292,254.52,76.727 +754293,252,72.394 +754294,252.41,73.839 +754295,252.79,75.281 +754296,253.13,76.718 +754297,250.75,72.36 +754298,251.12,73.814 +754299,251.44,75.263 +754300,251.74,76.707 +754301,249.51,72.328 +754302,249.82,73.788 +754303,250.1,75.245 +754304,250.34,76.696 +754305,248.26,72.297 +754306,248.52,73.763 +754307,248.75,75.226 +754308,248.95,76.683 +754309,247.01,72.267 +754310,247.23,73.739 +754311,247.41,75.207 +754312,247.56,76.67 +754313,245.77,72.238 +754314,245.93,73.715 +754315,246.06,75.188 +754316,246.16,76.655 +754317,244.52,72.21 +754318,244.64,73.691 +754319,244.72,75.168 +754320,244.77,76.639 +754321,243.28,72.184 +754322,243.34,73.668 +754323,243.37,75.147 +754324,243.37,76.622 +754325,242.03,72.159 +754326,242.05,73.645 +754327,242.03,75.127 +754328,241.98,76.603 +754329,240.79,72.135 +754330,240.75,73.622 +754331,240.68,75.106 +754332,240.58,76.584 +754333,239.54,72.112 +754334,239.46,73.6 +754335,239.34,75.084 +754336,239.19,76.563 +754337,238.3,72.091 +754338,238.16,73.578 +754339,237.99,75.062 +754340,237.8,76.541 +754341,237.05,72.07 +754342,236.87,73.557 +754343,236.65,75.04 +754344,236.4,76.518 +754345,235.8,72.051 +754346,235.57,73.536 +754347,235.3,75.018 +754348,235.01,76.494 +754349,234.56,72.034 +754350,234.28,73.516 +754351,233.96,74.995 +754352,233.61,76.469 +754353,233.31,72.017 +754354,232.98,73.496 +754355,232.62,74.971 +754356,232.22,76.442 +754357,232.07,72.002 +754358,231.68,73.476 +754359,231.27,74.947 +754360,230.82,76.414 +754361,230.82,71.988 +754362,230.39,73.457 +754363,229.93,74.923 +754364,229.43,76.385 +754365,229.57,71.975 +754366,229.09,73.438 +754367,228.58,74.899 +754368,228.04,76.355 +754369,228.33,71.963 +754370,227.8,73.419 +754371,227.24,74.874 +754372,226.64,76.324 +754373,227.08,71.952 +754374,226.5,73.401 +754375,225.89,74.848 +754376,225.25,76.292 +754377,225.83,71.943 +754378,225.21,73.384 +754379,224.55,74.823 +754380,223.86,76.258 +754381,224.58,71.935 +754382,223.91,73.366 +754383,223.21,74.797 +754384,222.47,76.224 +754385,223.33,71.928 +754386,222.61,73.35 +754387,221.86,74.77 +754388,221.07,76.188 +754389,222.08,71.922 +754390,221.32,73.333 +754391,220.52,74.743 +754392,219.68,76.151 +754393,220.83,71.917 +754394,220.02,73.317 +754395,219.17,74.716 +754396,218.29,76.113 +754397,219.58,71.913 +754398,218.72,73.301 +754399,217.83,74.688 +754400,216.9,76.074 +754401,218.33,71.911 +754402,217.43,73.286 +754403,216.49,74.66 +754404,215.51,76.034 +754405,217.07,71.91 +754406,216.13,73.271 +754407,215.15,74.632 +754408,214.12,75.993 +754409,215.82,71.91 +754410,214.83,73.256 +754411,213.8,74.603 +754412,212.74,75.95 +754413,214.57,71.91 +754414,213.53,73.242 +754415,212.46,74.574 +754416,211.35,75.907 +754417,213.31,71.912 +754418,212.24,73.228 +754419,211.12,74.545 +754420,209.96,75.862 +754421,212.06,71.915 +754422,210.94,73.214 +754423,209.78,74.515 +754424,208.58,75.817 +754425,210.8,71.92 +754426,209.64,73.201 +754427,208.44,74.485 +754428,207.19,75.77 +754429,209.54,71.925 +754430,208.34,73.188 +754431,207.1,74.454 +754432,205.81,75.722 +754433,208.28,71.931 +754434,207.04,73.176 +754435,205.76,74.424 +754436,204.42,75.674 +754437,207.02,71.938 +754438,205.74,73.164 +754439,204.42,74.393 +754440,203.04,75.624 +754441,205.76,71.946 +754442,204.44,73.152 +754443,203.08,74.361 +754444,201.66,75.573 +754445,204.5,71.956 +754446,203.14,73.14 +754447,201.74,74.329 +754448,200.28,75.522 +754449,203.24,71.966 +754450,201.84,73.129 +754451,200.4,74.297 +754452,198.9,75.469 +754453,201.98,71.977 +754454,200.54,73.118 +754455,199.06,74.265 +754456,197.52,75.416 +754457,200.71,71.989 +754458,199.24,73.108 +754459,197.72,74.232 +754460,196.15,75.361 +754461,199.44,72.002 +754462,197.94,73.098 +754463,196.38,74.199 +754464,194.77,75.306 +754465,198.18,72.015 +754466,196.64,73.088 +754467,195.04,74.166 +754468,193.39,75.25 +754469,196.91,72.03 +754470,195.33,73.078 +754471,193.71,74.132 +754472,192.02,75.193 +754473,195.64,72.046 +754474,194.03,73.069 +754475,192.37,74.098 +754476,190.65,75.135 +754477,194.37,72.062 +754478,192.73,73.059 +754479,191.03,74.064 +754480,189.28,75.076 +754481,193.1,72.079 +754482,191.42,73.051 +754483,189.7,74.03 +754484,187.91,75.017 +754485,191.82,72.097 +754486,190.12,73.042 +754487,188.36,73.995 +754488,186.54,74.956 +754489,190.55,72.116 +754490,188.82,73.034 +754491,187.03,73.96 +754492,185.17,74.895 +754493,189.27,72.135 +754494,187.51,73.026 +754495,185.69,73.925 +754496,183.8,74.833 +754497,188,72.155 +754498,186.21,73.018 +754499,184.36,73.89 +754500,182.44,74.771 +754501,186.72,72.176 +754502,184.9,73.01 +754503,183.02,73.854 +754504,181.08,74.707 +754505,185.44,72.197 +754506,183.6,73.003 +754507,181.69,73.818 +754508,179.71,74.643 +754509,184.16,72.22 +754510,182.29,72.996 +754511,180.36,73.782 +754512,178.35,74.579 +754513,182.87,72.242 +754514,180.98,72.989 +754515,179.03,73.746 +754516,177,74.513 +754517,181.59,72.266 +754518,179.68,72.982 +754519,177.7,73.709 +754520,175.64,74.447 +754521,180.3,72.29 +754522,178.37,72.976 +754523,176.36,73.673 +754524,174.28,74.381 +754525,179.02,72.314 +754526,177.06,72.969 +754527,175.03,73.636 +754528,172.93,74.314 +754529,177.73,72.339 +754530,175.75,72.963 +754531,173.7,73.599 +754532,171.57,74.246 +754533,176.44,72.364 +754534,174.44,72.957 +754535,172.37,73.562 +754536,170.22,74.178 +754537,175.14,72.39 +754538,173.13,72.951 +754539,171.04,73.524 +754540,168.87,74.109 +754541,173.85,72.417 +754542,171.82,72.946 +754543,169.72,73.487 +754544,167.53,74.04 +754545,172.56,72.444 +754546,170.51,72.94 +754547,168.39,73.449 +754548,166.18,73.97 +754549,171.26,72.471 +754550,169.2,72.935 +754551,167.06,73.411 +754552,164.84,73.9 +754553,169.96,72.498 +754554,167.89,72.93 +754555,165.73,73.373 +754556,163.49,73.83 +754557,168.66,72.526 +754558,166.57,72.924 +754559,164.41,73.335 +754560,162.15,73.759 +754561,167.36,72.554 +754562,165.26,72.919 +754563,163.08,73.297 +754564,160.81,73.688 +754565,166.06,72.583 +754566,163.95,72.914 +754567,161.76,73.259 +754568,159.47,73.616 +754569,164.75,72.612 +754570,162.63,72.91 +754571,160.43,73.22 +754572,158.14,73.545 +754573,163.45,72.641 +754574,161.32,72.905 +754575,159.11,73.182 +754576,156.8,73.473 +754577,162.14,72.67 +754578,160,72.9 +754579,157.79,73.143 +754580,155.47,73.4 +754581,160.83,72.699 +754582,158.69,72.896 +754583,156.46,73.105 +754584,154.14,73.328 +754585,159.52,72.729 +754586,157.37,72.891 +754587,155.14,73.066 +754588,152.81,73.255 +754589,158.21,72.758 +754590,156.06,72.886 +754591,153.82,73.027 +754592,151.48,73.182 +754593,156.89,72.788 +754594,154.74,72.882 +754595,152.5,72.989 +754596,150.16,73.109 +754597,155.58,72.818 +754598,153.42,72.878 +754599,151.18,72.95 +754600,148.83,73.036 +754601,154.26,72.847 +754602,152.1,72.873 +754603,149.86,72.911 +754604,147.51,72.963 +754605,152.94,72.877 +754606,150.78,72.869 +754607,148.54,72.872 +754608,146.19,72.89 +754609,151.62,72.907 +754610,149.46,72.864 +754611,147.22,72.833 +754612,144.87,72.816 +754613,150.3,72.937 +754614,148.14,72.86 +754615,145.9,72.795 +754616,143.56,72.743 +754617,148.97,72.966 +754618,146.82,72.855 +754619,144.58,72.756 +754620,142.24,72.67 +754621,147.65,72.996 +754622,145.5,72.851 +754623,143.27,72.717 +754624,140.93,72.597 +754625,146.32,73.025 +754626,144.18,72.846 +754627,141.95,72.678 +754628,139.62,72.524 +754629,144.99,73.055 +754630,142.86,72.842 +754631,140.64,72.64 +754632,138.31,72.451 +754633,143.66,73.084 +754634,141.54,72.837 +754635,139.32,72.601 +754636,137,72.378 +754637,142.33,73.113 +754638,140.21,72.832 +754639,138.01,72.563 +754640,135.7,72.305 +754641,141,73.141 +754642,138.89,72.828 +754643,136.69,72.524 +754644,134.39,72.233 +754645,139.66,73.17 +754646,137.57,72.823 +754647,135.38,72.486 +754648,133.09,72.161 +754649,138.32,73.198 +754650,136.24,72.818 +754651,134.07,72.447 +754652,131.79,72.089 +754653,136.98,73.226 +754654,134.92,72.813 +754655,132.75,72.409 +754656,130.49,72.017 +754657,135.64,73.253 +754658,133.59,72.808 +754659,131.44,72.371 +754660,129.2,71.946 +754661,134.3,73.28 +754662,132.26,72.802 +754663,130.13,72.333 +754664,127.9,71.875 +754665,132.96,73.307 +754666,130.94,72.797 +754667,128.82,72.295 +754668,126.61,71.804 +754669,131.62,73.333 +754670,129.61,72.791 +754671,127.51,72.257 +754672,125.32,71.734 +754673,130.27,73.359 +754674,128.28,72.786 +754675,126.2,72.22 +754676,124.03,71.664 +754677,128.92,73.384 +754678,126.95,72.78 +754679,124.89,72.182 +754680,122.74,71.594 +754681,127.57,73.409 +754682,125.62,72.774 +754683,123.59,72.145 +754684,121.45,71.525 +754685,126.22,73.433 +754686,124.29,72.768 +754687,122.28,72.108 +754688,120.17,71.457 +754689,124.87,73.457 +754690,122.96,72.761 +754691,120.97,72.071 +754692,118.88,71.389 +754693,123.52,73.48 +754694,121.63,72.755 +754695,119.66,72.034 +754696,117.6,71.322 +754697,122.16,73.503 +754698,120.3,72.748 +754699,118.36,71.998 +754700,116.32,71.255 +754701,120.8,73.525 +754702,118.97,72.741 +754703,117.05,71.961 +754704,115.04,71.189 +754705,119.45,73.547 +754706,117.64,72.734 +754707,115.75,71.925 +754708,113.76,71.123 +754709,118.09,73.567 +754710,116.31,72.726 +754711,114.44,71.889 +754712,112.49,71.058 +754713,116.73,73.587 +754714,114.97,72.719 +754715,113.14,71.854 +754716,111.22,70.994 +754717,115.36,73.607 +754718,113.64,72.711 +754719,111.84,71.818 +754720,109.94,70.93 +754721,114,73.625 +754722,112.31,72.703 +754723,110.53,71.783 +754724,108.67,70.867 +754725,112.64,73.643 +754726,110.97,72.695 +754727,109.23,71.748 +754728,107.4,70.805 +754729,111.27,73.66 +754730,109.64,72.686 +754731,107.93,71.713 +754732,106.13,70.744 +754733,109.9,73.677 +754734,108.3,72.677 +754735,106.63,71.679 +754736,104.87,70.683 +754737,108.53,73.692 +754738,106.97,72.668 +754739,105.33,71.645 +754740,103.6,70.624 +754741,107.16,73.707 +754742,105.63,72.659 +754743,104.03,71.611 +754744,102.34,70.565 +754745,105.79,73.721 +754746,104.3,72.649 +754747,102.73,71.577 +754748,101.08,70.507 +754749,104.42,73.734 +754750,102.96,72.639 +754751,101.43,71.544 +754752,99.814,70.449 +754753,103.05,73.746 +754754,101.62,72.629 +754755,100.13,71.511 +754756,98.554,70.393 +754757,101.67,73.757 +754758,100.28,72.618 +754759,98.827,71.478 +754760,97.295,70.338 +754761,100.3,73.767 +754762,98.947,72.608 +754763,97.529,71.446 +754764,96.037,70.283 +754765,98.92,73.777 +754766,97.609,72.596 +754767,96.231,71.413 +754768,94.78,70.23 +754769,97.543,73.785 +754770,96.27,72.585 +754771,94.933,71.382 +754772,93.525,70.177 +754773,96.164,73.792 +754774,94.932,72.573 +754775,93.636,71.35 +754776,92.27,70.126 +754777,94.784,73.799 +754778,93.593,72.561 +754779,92.338,71.319 +754780,91.017,70.075 +754781,93.403,73.804 +754782,92.253,72.548 +754783,91.042,71.288 +754784,89.764,70.025 +754785,92.022,73.809 +754786,90.914,72.536 +754787,89.745,71.258 +754788,88.513,69.977 +754789,90.639,73.812 +754790,89.574,72.523 +754791,88.449,71.228 +754792,87.262,69.929 +754793,89.256,73.815 +754794,88.233,72.509 +754795,87.154,71.198 +754796,86.012,69.883 +754797,87.872,73.816 +754798,86.893,72.495 +754799,85.858,71.168 +754800,84.764,69.838 +754801,86.487,73.816 +754802,85.552,72.481 +754803,84.563,71.139 +754804,83.516,69.793 +754805,85.101,73.816 +754806,84.211,72.466 +754807,83.268,71.111 +754808,82.268,69.75 +754809,83.714,73.814 +754810,82.87,72.451 +754811,81.974,71.082 +754812,81.022,69.708 +754813,82.327,73.811 +754814,81.528,72.436 +754815,80.679,71.054 +754816,79.776,69.667 +754817,80.939,73.807 +754818,80.187,72.421 +754819,79.385,71.027 +754820,78.531,69.627 +754821,79.55,73.802 +754822,78.845,72.404 +754823,78.091,71 +754824,77.287,69.589 +754825,78.161,73.796 +754826,77.503,72.388 +754827,76.798,70.973 +754828,76.043,69.551 +754829,76.771,73.788 +754830,76.16,72.371 +754831,75.504,70.946 +754832,74.8,69.515 +754833,75.381,73.78 +754834,74.818,72.354 +754835,74.211,70.92 +754836,73.557,69.48 +754837,73.99,73.77 +754838,73.475,72.336 +754839,72.918,70.894 +754840,72.315,69.446 +754841,72.599,73.759 +754842,72.133,72.319 +754843,71.625,70.869 +754844,71.073,69.413 +754845,71.207,73.747 +754846,70.79,72.3 +754847,70.332,70.844 +754848,69.831,69.381 +754849,69.814,73.734 +754850,69.447,72.281 +754851,69.039,70.82 +754852,68.59,69.351 +754853,68.422,73.72 +754854,68.104,72.262 +754855,67.747,70.796 +754856,67.349,69.322 +754857,67.029,73.704 +754858,66.76,72.243 +754859,66.454,70.772 +754860,66.109,69.294 +754861,65.635,73.688 +754862,65.417,72.223 +754863,65.162,70.749 +754864,64.869,69.267 +754865,64.242,73.67 +754866,64.074,72.203 +754867,63.87,70.726 +754868,63.629,69.241 +754869,62.848,73.651 +754870,62.73,72.182 +754871,62.578,70.703 +754872,62.389,69.217 +754873,61.454,73.631 +754874,61.387,72.161 +754875,61.286,70.681 +754876,61.149,69.194 +754877,60.06,73.61 +754878,60.044,72.139 +754879,59.994,70.659 +754880,59.909,69.172 +754881,58.665,73.587 +754882,58.7,72.117 +754883,58.702,70.638 +754884,58.669,69.151 +754885,57.271,73.563 +754886,57.357,72.095 +754887,57.41,70.617 +754888,57.429,69.131 +754889,55.877,73.539 +754890,56.013,72.072 +754891,56.118,70.597 +754892,56.19,69.113 +754893,54.482,73.513 +754894,54.67,72.049 +754895,54.826,70.576 +754896,54.95,69.096 +754897,53.088,73.485 +754898,53.326,72.026 +754899,53.534,70.557 +754900,53.71,69.08 +754901,51.693,73.457 +754902,51.983,72.002 +754903,52.242,70.537 +754904,52.469,69.066 +754905,50.299,73.428 +754906,50.64,71.977 +754907,50.95,70.518 +754908,51.229,69.052 +754909,48.905,73.397 +754910,49.296,71.953 +754911,49.658,70.5 +754912,49.988,69.04 +754913,47.511,73.365 +754914,47.953,71.928 +754915,48.365,70.482 +754916,48.747,69.029 +754917,46.117,73.332 +754918,46.61,71.902 +754919,47.073,70.464 +754920,47.506,69.019 +754921,44.723,73.298 +754922,45.267,71.876 +754923,45.781,70.447 +754924,46.264,69.01 +754925,43.33,73.263 +754926,43.925,71.85 +754927,44.488,70.43 +754928,45.022,69.003 +754929,41.937,73.226 +754930,42.582,71.823 +754931,43.196,70.413 +754932,43.779,68.997 +754933,40.545,73.189 +754934,41.239,71.796 +754935,41.903,70.397 +754936,42.536,68.991 +754937,39.153,73.15 +754938,39.897,71.769 +754939,40.61,70.381 +754940,41.293,68.987 +754941,37.761,73.11 +754942,38.555,71.741 +754943,39.317,70.366 +754944,40.049,68.984 +754945,36.37,73.069 +754946,37.213,71.713 +754947,38.024,70.35 +754948,38.804,68.983 +754949,34.979,73.027 +754950,35.871,71.685 +754951,36.73,70.336 +754952,37.558,68.982 +754953,33.589,72.984 +754954,34.53,71.656 +754955,35.436,70.321 +754956,36.312,68.982 +754957,32.199,72.94 +754958,33.188,71.626 +754959,34.143,70.307 +754960,35.065,68.984 +754961,30.81,72.895 +754962,31.847,71.597 +754963,32.849,70.294 +754964,33.818,68.987 +754965,29.422,72.848 +754966,30.506,71.567 +754967,31.554,70.28 +754968,32.569,68.99 +754969,28.034,72.801 +754970,29.166,71.537 +754971,30.26,70.268 +754972,31.32,68.995 +754973,26.648,72.753 +754974,27.825,71.506 +754975,28.965,70.255 +754976,30.07,69.001 +754977,25.262,72.704 +754978,26.485,71.475 +754979,27.67,70.243 +754980,28.819,69.008 +754981,23.876,72.653 +754982,25.146,71.444 +754983,26.374,70.231 +754984,27.567,69.015 +754985,22.492,72.602 +754986,23.806,71.412 +754987,25.079,70.219 +754988,26.314,69.024 +754989,21.109,72.55 +754990,22.467,71.38 +754991,23.783,70.208 +754992,25.061,69.034 +754993,19.726,72.496 +754994,21.128,71.348 +754995,22.487,70.197 +754996,23.806,69.045 +754997,18.344,72.442 +754998,19.79,71.315 +754999,21.19,70.186 +755000,22.55,69.056 +755001,16.964,72.387 +755002,18.452,71.282 +755003,19.893,70.176 +755004,21.293,69.069 +755005,15.584,72.331 +755006,17.114,71.249 +755007,18.596,70.166 +755008,20.035,69.082 +755009,14.206,72.274 +755010,15.777,71.215 +755011,17.298,70.156 +755012,18.776,69.097 +755013,12.828,72.217 +755014,14.44,71.182 +755015,16,70.146 +755016,17.515,69.112 +755017,11.452,72.158 +755018,13.103,71.148 +755019,14.702,70.137 +755020,16.254,69.128 +755021,10.077,72.099 +755022,11.767,71.113 +755023,13.403,70.128 +755024,14.991,69.145 +755025,8.7027,72.038 +755026,10.431,71.079 +755027,12.104,70.12 +755028,13.727,69.163 +755029,7.3299,71.977 +755030,9.0962,71.044 +755031,10.804,70.111 +755032,12.462,69.181 +755033,5.9584,71.916 +755034,7.7613,71.008 +755035,9.5042,70.103 +755036,11.195,69.2 +755037,4.5882,71.853 +755038,6.4269,70.973 +755039,8.2038,70.095 +755040,9.927,69.22 +755041,3.2193,71.79 +755042,5.093,70.937 +755043,6.9029,70.087 +755044,8.6577,69.241 +755045,1.8518,71.726 +755046,3.7595,70.902 +755047,5.6017,70.08 +755048,7.3871,69.262 +755049,0.48565,71.661 +755050,2.4265,70.865 +755051,4.2999,70.073 +755052,6.1151,69.284 +755053,359.12,71.596 +755054,1.094,70.829 +755055,2.9977,70.066 +755056,4.8416,69.306 +755057,357.76,71.53 +755058,359.76,70.792 +755059,1.6951,70.059 +755060,3.5668,69.33 +755061,356.4,71.464 +755062,358.43,70.756 +755063,0.39198,70.052 +755064,2.2904,69.353 +755065,355.04,71.396 +755066,357.1,70.719 +755067,359.09,70.046 +755068,1.0126,69.378 +755069,353.68,71.329 +755070,355.77,70.682 +755071,357.78,70.039 +755072,359.73,69.403 +755073,352.32,71.26 +755074,354.44,70.644 +755075,356.48,70.033 +755076,358.45,69.428 +755077,350.96,71.192 +755078,353.11,70.607 +755079,355.17,70.027 +755080,357.17,69.454 +755081,349.61,71.122 +755082,351.78,70.569 +755083,353.87,70.022 +755084,355.89,69.48 +755085,348.26,71.053 +755086,350.45,70.531 +755087,352.56,70.016 +755088,354.6,69.507 +755089,346.91,70.982 +755090,349.12,70.493 +755091,351.26,70.01 +755092,353.31,69.534 +755093,345.56,70.912 +755094,347.8,70.455 +755095,349.95,70.005 +755096,352.03,69.561 +755097,344.21,70.841 +755098,346.47,70.417 +755099,348.64,70 +755100,350.74,69.589 +755101,342.86,70.769 +755102,345.14,70.379 +755103,347.33,69.995 +755104,349.44,69.617 +755105,341.52,70.698 +755106,343.82,70.34 +755107,346.02,69.99 +755108,348.15,69.646 +755109,340.18,70.626 +755110,342.49,70.301 +755111,344.72,69.985 +755112,346.86,69.675 +755113,338.84,70.553 +755114,341.17,70.263 +755115,343.41,69.98 +755116,345.56,69.704 +755117,337.5,70.481 +755118,339.85,70.224 +755119,342.1,69.975 +755120,344.26,69.733 +755121,336.16,70.408 +755122,338.52,70.185 +755123,340.78,69.97 +755124,342.96,69.762 +755125,334.82,70.335 +755126,337.2,70.146 +755127,339.47,69.965 +755128,341.66,69.792 +755129,333.49,70.262 +755130,335.88,70.107 +755131,338.16,69.961 +755132,340.36,69.822 +755133,332.16,70.188 +755134,334.56,70.068 +755135,336.85,69.956 +755136,339.05,69.851 +755137,330.83,70.115 +755138,333.24,70.029 +755139,335.54,69.952 +755140,337.74,69.881 +755141,329.5,70.041 +755142,331.91,69.99 +755143,334.22,69.947 +755144,336.44,69.911 +755145,328.17,69.968 +755146,330.6,69.951 +755147,332.91,69.942 +755148,335.13,69.941 +755149,326.85,69.894 +755150,329.28,69.912 +755151,331.59,69.938 +755152,333.81,69.971 +755153,325.53,69.82 +755154,327.96,69.873 +755155,330.28,69.933 +755156,332.5,70.001 +755157,324.21,69.746 +755158,326.64,69.834 +755159,328.96,69.929 +755160,331.19,70.031 +755161,322.89,69.673 +755162,325.32,69.795 +755163,327.65,69.924 +755164,329.87,70.06 +755165,321.57,69.599 +755166,324.01,69.756 +755167,326.33,69.919 +755168,328.55,70.09 +755169,320.25,69.526 +755170,322.69,69.716 +755171,325.01,69.915 +755172,327.23,70.119 +755173,318.94,69.452 +755174,321.37,69.677 +755175,323.69,69.91 +755176,325.91,70.149 +755177,317.63,69.379 +755178,320.06,69.638 +755179,322.37,69.905 +755180,324.59,70.178 +755181,316.32,69.306 +755182,318.75,69.6 +755183,321.05,69.9 +755184,323.26,70.207 +755185,315.01,69.233 +755186,317.43,69.561 +755187,319.73,69.895 +755188,321.93,70.235 +755189,313.71,69.161 +755190,316.12,69.522 +755191,318.41,69.89 +755192,320.61,70.264 +755193,312.4,69.088 +755194,314.81,69.483 +755195,317.09,69.885 +755196,319.28,70.292 +755197,311.1,69.016 +755198,313.5,69.445 +755199,315.77,69.88 +755200,317.94,70.319 +755201,309.8,68.944 +755202,312.18,69.406 +755203,314.45,69.874 +755204,316.61,70.347 +755205,308.5,68.873 +755206,310.87,69.368 +755207,313.13,69.869 +755208,315.28,70.373 +755209,307.21,68.802 +755210,309.56,69.33 +755211,311.8,69.863 +755212,313.94,70.4 +755213,305.91,68.731 +755214,308.26,69.292 +755215,310.48,69.857 +755216,312.6,70.426 +755217,304.62,68.661 +755218,306.95,69.254 +755219,309.16,69.851 +755220,311.26,70.452 +755221,303.33,68.591 +755222,305.64,69.216 +755223,307.83,69.845 +755224,309.92,70.477 +755225,302.04,68.522 +755226,304.33,69.178 +755227,306.51,69.839 +755228,308.58,70.501 +755229,300.75,68.453 +755230,303.02,69.141 +755231,305.18,69.832 +755232,307.23,70.525 +755233,299.46,68.385 +755234,301.72,69.104 +755235,303.85,69.825 +755236,305.89,70.549 +755237,298.18,68.317 +755238,300.41,69.067 +755239,302.53,69.819 +755240,304.54,70.572 +755241,296.9,68.25 +755242,299.11,69.03 +755243,301.2,69.811 +755244,303.19,70.594 +755245,295.62,68.184 +755246,297.8,68.993 +755247,299.87,69.804 +755248,301.84,70.616 +755249,294.34,68.118 +755250,296.5,68.956 +755251,298.54,69.797 +755252,300.49,70.637 +755253,293.06,68.053 +755254,295.19,68.92 +755255,297.21,69.789 +755256,299.13,70.657 +755257,291.79,67.988 +755258,293.89,68.884 +755259,295.88,69.781 +755260,297.78,70.676 +755261,290.51,67.925 +755262,292.59,68.848 +755263,294.55,69.772 +755264,296.42,70.695 +755265,289.24,67.861 +755266,291.29,68.813 +755267,293.22,69.764 +755268,295.06,70.713 +755269,287.97,67.799 +755270,289.99,68.777 +755271,291.89,69.755 +755272,293.7,70.731 +755273,286.7,67.738 +755274,288.68,68.742 +755275,290.56,69.746 +755276,292.34,70.747 +755277,285.43,67.677 +755278,287.38,68.707 +755279,289.23,69.737 +755280,290.98,70.763 +755281,284.17,67.617 +755282,286.08,68.673 +755283,287.9,69.727 +755284,289.62,70.778 +755285,282.9,67.558 +755286,284.79,68.639 +755287,286.56,69.717 +755288,288.25,70.792 +755289,281.64,67.499 +755290,283.49,68.605 +755291,285.23,69.707 +755292,286.88,70.805 +755293,280.38,67.442 +755294,282.19,68.571 +755295,283.9,69.697 +755296,285.52,70.817 +755297,279.12,67.386 +755298,280.89,68.538 +755299,282.56,69.686 +755300,284.15,70.829 +755301,277.86,67.33 +755302,279.59,68.504 +755303,281.23,69.675 +755304,282.78,70.839 +755305,276.6,67.275 +755306,278.3,68.472 +755307,279.89,69.663 +755308,281.41,70.849 +755309,275.34,67.222 +755310,277,68.439 +755311,278.56,69.652 +755312,280.03,70.857 +755313,274.09,67.169 +755314,275.7,68.407 +755315,277.22,69.64 +755316,278.66,70.865 +755317,272.84,67.117 +755318,274.41,68.375 +755319,275.89,69.627 +755320,277.29,70.872 +755321,271.58,67.067 +755322,273.11,68.344 +755323,274.55,69.614 +755324,275.91,70.877 +755325,270.33,67.017 +755326,271.82,68.312 +755327,273.21,69.601 +755328,274.53,70.882 +755329,269.08,66.968 +755330,270.52,68.282 +755331,271.88,69.588 +755332,273.16,70.885 +755333,267.83,66.921 +755334,269.23,68.251 +755335,270.54,69.574 +755336,271.78,70.888 +755337,266.58,66.874 +755338,267.93,68.221 +755339,269.2,69.56 +755340,270.4,70.889 +755341,265.34,66.829 +755342,266.64,68.191 +755343,267.86,69.545 +755344,269.02,70.89 +755345,264.09,66.785 +755346,265.35,68.162 +755347,266.53,69.53 +755348,267.63,70.889 +755349,262.85,66.741 +755350,264.05,68.133 +755351,265.19,69.515 +755352,266.25,70.887 +755353,261.6,66.699 +755354,262.76,68.104 +755355,263.85,69.499 +755356,264.87,70.884 +755357,260.36,66.658 +755358,261.47,68.076 +755359,262.51,69.483 +755360,263.48,70.88 +755361,259.12,66.619 +755362,260.18,68.048 +755363,261.17,69.467 +755364,262.1,70.875 +755365,257.88,66.58 +755366,258.89,68.02 +755367,259.83,69.45 +755368,260.71,70.869 +755369,256.63,66.542 +755370,257.59,67.993 +755371,258.49,69.433 +755372,259.33,70.862 +755373,255.39,66.506 +755374,256.3,67.966 +755375,257.15,69.415 +755376,257.94,70.853 +755377,254.16,66.471 +755378,255.01,67.94 +755379,255.81,69.397 +755380,256.55,70.843 +755381,252.92,66.437 +755382,253.72,67.913 +755383,254.47,69.379 +755384,255.16,70.832 +755385,251.68,66.404 +755386,252.43,67.888 +755387,253.13,69.36 +755388,253.77,70.82 +755389,250.44,66.373 +755390,251.14,67.863 +755391,251.79,69.341 +755392,252.38,70.807 +755393,249.2,66.342 +755394,249.85,67.838 +755395,250.45,69.321 +755396,250.99,70.793 +755397,247.97,66.313 +755398,248.56,67.813 +755399,249.11,69.301 +755400,249.6,70.777 +755401,246.73,66.285 +755402,247.27,67.789 +755403,247.76,69.281 +755404,248.21,70.76 +755405,245.49,66.259 +755406,245.98,67.765 +755407,246.42,69.26 +755408,246.82,70.742 +755409,244.26,66.233 +755410,244.69,67.742 +755411,245.08,69.239 +755412,245.43,70.723 +755413,243.02,66.209 +755414,243.4,67.719 +755415,243.74,69.217 +755416,244.03,70.702 +755417,241.79,66.186 +755418,242.11,67.697 +755419,242.4,69.195 +755420,242.64,70.681 +755421,240.55,66.164 +755422,240.83,67.675 +755423,241.06,69.173 +755424,241.25,70.658 +755425,239.32,66.144 +755426,239.54,67.653 +755427,239.71,69.15 +755428,239.85,70.634 +755429,238.08,66.124 +755430,238.25,67.632 +755431,238.37,69.127 +755432,238.46,70.609 +755433,236.85,66.106 +755434,236.96,67.611 +755435,237.03,69.103 +755436,237.07,70.582 +755437,235.62,66.089 +755438,235.67,67.59 +755439,235.69,69.079 +755440,235.67,70.555 +755441,234.38,66.074 +755442,234.38,67.57 +755443,234.35,69.055 +755444,234.28,70.526 +755445,233.15,66.059 +755446,233.09,67.55 +755447,233,69.03 +755448,232.88,70.496 +755449,231.91,66.046 +755450,231.8,67.531 +755451,231.66,69.004 +755452,231.49,70.465 +755453,230.68,66.034 +755454,230.51,67.512 +755455,230.32,68.979 +755456,230.09,70.432 +755457,229.44,66.023 +755458,229.23,67.494 +755459,228.98,68.953 +755460,228.7,70.399 +755461,228.21,66.014 +755462,227.94,67.475 +755463,227.64,68.926 +755464,227.31,70.364 +755465,226.97,66.005 +755466,226.65,67.458 +755467,226.29,68.899 +755468,225.91,70.328 +755469,225.74,65.998 +755470,225.36,67.44 +755471,224.95,68.872 +755472,224.52,70.291 +755473,224.5,65.992 +755474,224.07,67.423 +755475,223.61,68.844 +755476,223.12,70.253 +755477,223.26,65.987 +755478,222.78,67.407 +755479,222.27,68.816 +755480,221.73,70.213 +755481,222.03,65.983 +755482,221.49,67.39 +755483,220.93,68.787 +755484,220.34,70.173 +755485,220.79,65.981 +755486,220.2,67.375 +755487,219.59,68.759 +755488,218.94,70.131 +755489,219.55,65.979 +755490,218.91,67.359 +755491,218.25,68.729 +755492,217.55,70.088 +755493,218.31,65.979 +755494,217.62,67.344 +755495,216.9,68.7 +755496,216.16,70.045 +755497,217.07,65.98 +755498,216.33,67.329 +755499,215.56,68.67 +755500,214.77,70 +755501,215.83,65.981 +755502,215.04,67.315 +755503,214.22,68.639 +755504,213.38,69.953 +755505,214.59,65.984 +755506,213.75,67.301 +755507,212.88,68.608 +755508,211.99,69.906 +755509,213.35,65.988 +755510,212.46,67.287 +755511,211.54,68.577 +755512,210.59,69.858 +755513,212.11,65.993 +755514,211.17,67.274 +755515,210.2,68.546 +755516,209.21,69.809 +755517,210.87,66 +755518,209.88,67.261 +755519,208.86,68.514 +755520,207.82,69.758 +755521,209.62,66.007 +755522,208.59,67.248 +755523,207.52,68.482 +755524,206.43,69.707 +755525,208.38,66.015 +755526,207.3,67.236 +755527,206.18,68.449 +755528,205.04,69.655 +755529,207.13,66.024 +755530,206,67.224 +755531,204.85,68.416 +755532,203.65,69.601 +755533,205.89,66.034 +755534,204.71,67.212 +755535,203.51,68.383 +755536,202.27,69.547 +755537,204.64,66.045 +755538,203.42,67.2 +755539,202.17,68.35 +755540,200.88,69.492 +755541,203.39,66.057 +755542,202.13,67.189 +755543,200.83,68.316 +755544,199.5,69.435 +755545,202.14,66.07 +755546,200.83,67.178 +755547,199.49,68.282 +755548,198.11,69.378 +755549,200.89,66.084 +755550,199.54,67.168 +755551,198.16,68.247 +755552,196.73,69.32 +755553,199.64,66.099 +755554,198.25,67.158 +755555,196.82,68.212 +755556,195.35,69.261 +755557,198.39,66.114 +755558,196.95,67.148 +755559,195.48,68.177 +755560,193.97,69.201 +755561,197.14,66.13 +755562,195.66,67.138 +755563,194.15,68.142 +755564,192.59,69.14 +755565,195.88,66.148 +755566,194.37,67.129 +755567,192.81,68.106 +755568,191.21,69.079 +755569,194.62,66.166 +755570,193.07,67.12 +755571,191.47,68.07 +755572,189.83,69.016 +755573,193.37,66.184 +755574,191.77,67.111 +755575,190.14,68.034 +755576,188.45,68.953 +755577,192.11,66.204 +755578,190.48,67.102 +755579,188.8,67.998 +755580,187.08,68.889 +755581,190.85,66.224 +755582,189.18,67.094 +755583,187.47,67.961 +755584,185.7,68.825 +755585,189.59,66.245 +755586,187.89,67.085 +755587,186.14,67.924 +755588,184.33,68.759 +755589,188.33,66.267 +755590,186.59,67.077 +755591,184.8,67.887 +755592,182.96,68.693 +755593,187.06,66.289 +755594,185.29,67.07 +755595,183.47,67.849 +755596,181.59,68.626 +755597,185.8,66.312 +755598,183.99,67.062 +755599,182.14,67.811 +755600,180.22,68.558 +755601,184.53,66.335 +755602,182.7,67.055 +755603,180.81,67.773 +755604,178.85,68.49 +755605,183.26,66.359 +755606,181.4,67.048 +755607,179.47,67.735 +755608,177.49,68.421 +755609,181.99,66.384 +755610,180.1,67.041 +755611,178.14,67.697 +755612,176.12,68.352 +755613,180.72,66.409 +755614,178.8,67.034 +755615,176.81,67.658 +755616,174.76,68.282 +755617,179.45,66.435 +755618,177.5,67.027 +755619,175.48,67.62 +755620,173.4,68.212 +755621,178.17,66.461 +755622,176.2,67.021 +755623,174.15,67.581 +755624,172.04,68.141 +755625,176.9,66.487 +755626,174.9,67.014 +755627,172.82,67.542 +755628,170.68,68.069 +755629,175.62,66.514 +755630,173.59,67.008 +755631,171.5,67.503 +755632,169.32,67.997 +755633,174.34,66.542 +755634,172.29,67.002 +755635,170.17,67.463 +755636,167.96,67.924 +755637,173.06,66.57 +755638,170.99,66.996 +755639,168.84,67.424 +755640,166.61,67.852 +755641,171.78,66.598 +755642,169.69,66.99 +755643,167.51,67.384 +755644,165.26,67.778 +755645,170.5,66.626 +755646,168.38,66.984 +755647,166.19,67.344 +755648,163.91,67.705 +755649,169.21,66.655 +755650,167.08,66.979 +755651,164.86,67.304 +755652,162.56,67.631 +755653,167.93,66.684 +755654,165.77,66.973 +755655,163.54,67.264 +755656,161.21,67.556 +755657,166.64,66.713 +755658,164.47,66.968 +755659,162.21,67.224 +755660,159.86,67.482 +755661,165.35,66.742 +755662,163.16,66.962 +755663,160.89,67.184 +755664,158.52,67.407 +755665,164.05,66.772 +755666,161.85,66.957 +755667,159.57,67.144 +755668,157.18,67.332 +755669,162.76,66.801 +755670,160.55,66.952 +755671,158.24,67.103 +755672,155.84,67.256 +755673,161.47,66.831 +755674,159.24,66.946 +755675,156.92,67.063 +755676,154.5,67.181 +755677,160.17,66.861 +755678,157.93,66.941 +755679,155.6,67.023 +755680,153.16,67.105 +755681,158.87,66.891 +755682,156.62,66.936 +755683,154.28,66.982 +755684,151.83,67.03 +755685,157.57,66.921 +755686,155.31,66.93 +755687,152.96,66.941 +755688,150.49,66.954 +755689,156.27,66.951 +755690,154,66.925 +755691,151.64,66.901 +755692,149.16,66.878 +755693,154.96,66.981 +755694,152.69,66.92 +755695,150.32,66.86 +755696,147.83,66.802 +755697,153.66,67.011 +755698,151.38,66.915 +755699,149,66.82 +755700,146.5,66.726 +755701,152.35,67.041 +755702,150.07,66.909 +755703,147.68,66.779 +755704,145.18,66.65 +755705,151.04,67.07 +755706,148.76,66.904 +755707,146.37,66.739 +755708,143.85,66.574 +755709,149.73,67.1 +755710,147.45,66.899 +755711,145.05,66.698 +755712,142.53,66.498 +755713,148.42,67.129 +755714,146.13,66.893 +755715,143.74,66.658 +755716,141.21,66.423 +755717,147.11,67.158 +755718,144.82,66.888 +755719,142.42,66.617 +755720,139.89,66.347 +755721,145.79,67.187 +755722,143.5,66.882 +755723,141.11,66.577 +755724,138.58,66.272 +755725,144.47,67.216 +755726,142.19,66.876 +755727,139.79,66.536 +755728,137.26,66.197 +755729,143.15,67.245 +755730,140.87,66.87 +755731,138.48,66.496 +755732,135.95,66.122 +755733,141.83,67.273 +755734,139.56,66.865 +755735,137.17,66.456 +755736,134.64,66.047 +755737,140.51,67.3 +755738,138.24,66.858 +755739,135.85,66.416 +755740,133.33,65.973 +755741,139.19,67.328 +755742,136.92,66.852 +755743,134.54,66.376 +755744,132.03,65.898 +755745,137.86,67.355 +755746,135.6,66.846 +755747,133.23,66.336 +755748,130.72,65.825 +755749,136.53,67.381 +755750,134.29,66.84 +755751,131.92,66.296 +755752,129.42,65.751 +755753,135.2,67.408 +755754,132.97,66.833 +755755,130.61,66.256 +755756,128.12,65.678 +755757,133.87,67.433 +755758,131.65,66.826 +755759,129.3,66.217 +755760,126.82,65.606 +755761,132.54,67.459 +755762,130.33,66.819 +755763,128,66.177 +755764,125.52,65.533 +755765,131.2,67.483 +755766,129.01,66.812 +755767,126.69,66.138 +755768,124.23,65.462 +755769,129.87,67.507 +755770,127.68,66.805 +755771,125.38,66.099 +755772,122.94,65.391 +755773,128.53,67.531 +755774,126.36,66.798 +755775,124.07,66.06 +755776,121.65,65.32 +755777,127.19,67.554 +755778,125.04,66.79 +755779,122.77,66.022 +755780,120.36,65.25 +755781,125.85,67.576 +755782,123.72,66.782 +755783,121.46,65.983 +755784,119.07,65.18 +755785,124.51,67.598 +755786,122.39,66.774 +755787,120.16,65.945 +755788,117.79,65.111 +755789,123.16,67.619 +755790,121.07,66.766 +755791,118.86,65.907 +755792,116.5,65.043 +755793,121.82,67.639 +755794,119.74,66.757 +755795,117.55,65.869 +755796,115.22,64.975 +755797,120.47,67.659 +755798,118.42,66.748 +755799,116.25,65.831 +755800,113.94,64.908 +755801,119.12,67.678 +755802,117.09,66.739 +755803,114.95,65.793 +755804,112.66,64.842 +755805,117.77,67.696 +755806,115.77,66.73 +755807,113.65,65.756 +755808,111.39,64.776 +755809,116.42,67.713 +755810,114.44,66.72 +755811,112.34,65.719 +755812,110.11,64.712 +755813,115.06,67.73 +755814,113.11,66.71 +755815,111.04,65.682 +755816,108.84,64.648 +755817,113.71,67.746 +755818,111.79,66.7 +755819,109.74,65.646 +755820,107.57,64.584 +755821,112.35,67.761 +755822,110.46,66.69 +755823,108.45,65.61 +755824,106.3,64.522 +755825,110.99,67.775 +755826,109.13,66.679 +755827,107.15,65.574 +755828,105.03,64.46 +755829,109.63,67.788 +755830,107.8,66.668 +755831,105.85,65.538 +755832,103.77,64.4 +755833,108.27,67.8 +755834,106.47,66.657 +755835,104.55,65.503 +755836,102.5,64.34 +755837,106.91,67.811 +755838,105.14,66.645 +755839,103.25,65.468 +755840,101.24,64.281 +755841,105.55,67.822 +755842,103.81,66.633 +755843,101.96,65.433 +755844,99.979,64.223 +755845,104.18,67.831 +755846,102.48,66.621 +755847,100.66,65.398 +755848,98.719,64.166 +755849,102.82,67.839 +755850,101.15,66.608 +755851,99.365,65.364 +755852,97.461,64.11 +755853,101.45,67.847 +755854,99.814,66.595 +755855,98.07,65.33 +755856,96.205,64.055 +755857,100.08,67.853 +755858,98.481,66.581 +755859,96.775,65.297 +755860,94.95,64.001 +755861,98.713,67.859 +755862,97.149,66.568 +755863,95.481,65.264 +755864,93.696,63.948 +755865,97.342,67.863 +755866,95.816,66.554 +755867,94.187,65.231 +755868,92.444,63.896 +755869,95.97,67.866 +755870,94.482,66.539 +755871,92.894,65.198 +755872,91.193,63.845 +755873,94.597,67.869 +755874,93.148,66.524 +755875,91.601,65.166 +755876,89.944,63.795 +755877,93.222,67.87 +755878,91.814,66.509 +755879,90.309,65.134 +755880,88.696,63.746 +755881,91.847,67.87 +755882,90.479,66.494 +755883,89.017,65.103 +755884,87.449,63.698 +755885,90.47,67.869 +755886,89.144,66.478 +755887,87.725,65.072 +755888,86.203,63.652 +755889,89.093,67.866 +755890,87.809,66.461 +755891,86.434,65.041 +755892,84.959,63.606 +755893,87.714,67.863 +755894,86.473,66.445 +755895,85.143,65.011 +755896,83.715,63.562 +755897,86.334,67.859 +755898,85.137,66.428 +755899,83.853,64.981 +755900,82.473,63.519 +755901,84.954,67.853 +755902,83.8,66.41 +755903,82.563,64.951 +755904,81.232,63.477 +755905,83.573,67.846 +755906,82.464,66.392 +755907,81.273,64.922 +755908,79.991,63.436 +755909,82.19,67.838 +755910,81.127,66.374 +755911,79.984,64.893 +755912,78.752,63.396 +755913,80.807,67.829 +755914,79.79,66.355 +755915,78.695,64.864 +755916,77.514,63.358 +755917,79.423,67.819 +755918,78.452,66.336 +755919,77.406,64.836 +755920,76.276,63.32 +755921,78.038,67.807 +755922,77.114,66.317 +755923,76.118,64.809 +755924,75.04,63.284 +755925,76.652,67.794 +755926,75.776,66.297 +755927,74.829,64.781 +755928,73.804,63.25 +755929,75.266,67.78 +755930,74.438,66.276 +755931,73.542,64.755 +755932,72.569,63.216 +755933,73.879,67.765 +755934,73.1,66.255 +755935,72.254,64.728 +755936,71.335,63.184 +755937,72.491,67.749 +755938,71.761,66.234 +755939,70.967,64.702 +755940,70.101,63.153 +755941,71.103,67.731 +755942,70.422,66.213 +755943,69.679,64.676 +755944,68.868,63.123 +755945,69.714,67.712 +755946,69.083,66.191 +755947,68.392,64.651 +755948,67.636,63.094 +755949,68.325,67.692 +755950,67.744,66.168 +755951,67.106,64.626 +755952,66.404,63.067 +755953,66.935,67.67 +755954,66.405,66.145 +755955,65.819,64.602 +755956,65.173,63.041 +755957,65.544,67.648 +755958,65.065,66.122 +755959,64.533,64.577 +755960,63.942,63.016 +755961,64.153,67.624 +755962,63.726,66.098 +755963,63.247,64.554 +755964,62.711,62.992 +755965,62.762,67.599 +755966,62.386,66.074 +755967,61.96,64.531 +755968,61.481,62.97 +755969,61.37,67.572 +755970,61.046,66.049 +755971,60.675,64.508 +755972,60.251,62.949 +755973,59.978,67.545 +755974,59.706,66.024 +755975,59.389,64.485 +755976,59.022,62.929 +755977,58.585,67.516 +755978,58.366,65.999 +755979,58.103,64.463 +755980,57.793,62.911 +755981,57.193,67.486 +755982,57.026,65.973 +755983,56.817,64.441 +755984,56.564,62.893 +755985,55.8,67.455 +755986,55.686,65.946 +755987,55.532,64.42 +755988,55.335,62.877 +755989,54.406,67.422 +755990,54.346,65.92 +755991,54.246,64.399 +755992,54.106,62.862 +755993,53.013,67.388 +755994,53.006,65.892 +755995,52.961,64.379 +755996,52.877,62.849 +755997,51.619,67.353 +755998,51.665,65.865 +755999,51.676,64.359 +756000,51.648,62.837 +756001,50.226,67.317 +756002,50.325,65.837 +756003,50.39,64.339 +756004,50.419,62.825 +756005,48.832,67.279 +756006,48.985,65.808 +756007,49.105,64.32 +756008,49.19,62.816 +756009,47.439,67.241 +756010,47.645,65.779 +756011,47.819,64.301 +756012,47.961,62.807 +756013,46.045,67.201 +756014,46.305,65.75 +756015,46.534,64.283 +756016,46.732,62.8 +756017,44.651,67.16 +756018,44.965,65.72 +756019,45.249,64.265 +756020,45.502,62.793 +756021,43.258,67.118 +756022,43.625,65.69 +756023,43.963,64.247 +756024,44.273,62.788 +756025,41.864,67.074 +756026,42.285,65.66 +756027,42.678,64.23 +756028,43.042,62.784 +756029,40.471,67.03 +756030,40.945,65.629 +756031,41.392,64.213 +756032,41.812,62.782 +756033,39.078,66.984 +756034,39.605,65.598 +756035,40.106,64.196 +756036,40.581,62.78 +756037,37.686,66.937 +756038,38.266,65.566 +756039,38.82,64.18 +756040,39.35,62.78 +756041,36.293,66.889 +756042,36.926,65.534 +756043,37.534,64.164 +756044,38.118,62.781 +756045,34.901,66.84 +756046,35.587,65.501 +756047,36.248,64.149 +756048,36.886,62.782 +756049,33.509,66.789 +756050,34.248,65.469 +756051,34.962,64.133 +756052,35.653,62.785 +756053,32.118,66.738 +756054,32.909,65.435 +756055,33.676,64.119 +756056,34.419,62.789 +756057,30.727,66.685 +756058,31.57,65.402 +756059,32.389,64.104 +756060,33.185,62.795 +756061,29.336,66.632 +756062,30.232,65.368 +756063,31.102,64.09 +756064,31.95,62.801 +756065,27.947,66.577 +756066,28.893,65.333 +756067,29.815,64.077 +756068,30.714,62.808 +756069,26.557,66.521 +756070,27.555,65.299 +756071,28.528,64.063 +756072,29.478,62.816 +756073,25.168,66.465 +756074,26.217,65.264 +756075,27.241,64.05 +756076,28.241,62.826 +756077,23.78,66.407 +756078,24.88,65.228 +756079,25.953,64.037 +756080,27.003,62.836 +756081,22.393,66.348 +756082,23.542,65.192 +756083,24.665,64.025 +756084,25.764,62.847 +756085,21.006,66.288 +756086,22.205,65.156 +756087,23.377,64.013 +756088,24.524,62.859 +756089,19.62,66.228 +756090,20.869,65.12 +756091,22.089,64.001 +756092,23.283,62.872 +756093,18.235,66.166 +756094,19.532,65.083 +756095,20.8,63.989 +756096,22.041,62.887 +756097,16.851,66.104 +756098,18.196,65.046 +756099,19.511,63.978 +756100,20.798,62.901 +756101,15.467,66.04 +756102,16.86,65.009 +756103,18.222,63.967 +756104,19.555,62.917 +756105,14.084,65.976 +756106,15.525,64.971 +756107,16.932,63.957 +756108,18.31,62.934 +756109,12.703,65.911 +756110,14.19,64.933 +756111,15.642,63.946 +756112,17.063,62.951 +756113,11.322,65.844 +756114,12.855,64.895 +756115,14.352,63.936 +756116,15.816,62.97 +756117,9.9425,65.778 +756118,11.521,64.856 +756119,13.061,63.926 +756120,14.568,62.989 +756121,8.5638,65.71 +756122,10.187,64.817 +756123,11.77,63.916 +756124,13.318,63.009 +756125,7.1863,65.641 +756126,8.8531,64.778 +756127,10.478,63.907 +756128,12.067,63.029 +756129,5.8099,65.572 +756130,7.52,64.739 +756131,9.1865,63.898 +756132,10.815,63.05 +756133,4.4346,65.502 +756134,6.1873,64.699 +756135,7.8942,63.889 +756136,9.5609,63.072 +756137,3.0605,65.431 +756138,4.855,64.659 +756139,6.6015,63.88 +756140,8.306,63.095 +756141,1.6877,65.36 +756142,3.5232,64.619 +756143,5.3085,63.872 +756144,7.0497,63.118 +756145,0.31611,65.288 +756146,2.1918,64.579 +756147,4.0149,63.863 +756148,5.792,63.142 +756149,358.95,65.215 +756150,0.86088,64.538 +756151,2.721,63.855 +756152,4.5329,63.167 +756153,357.58,65.142 +756154,359.53,64.498 +756155,1.4266,63.847 +756156,3.2723,63.192 +756157,356.21,65.068 +756158,358.2,64.457 +756159,0.13169,63.839 +756160,2.0103,63.217 +756161,354.84,64.994 +756162,356.87,64.416 +756163,358.84,63.832 +756164,0.74682,63.243 +756165,353.48,64.919 +756166,355.54,64.374 +756167,357.54,63.824 +756168,359.48,63.27 +756169,352.11,64.843 +756170,354.21,64.333 +756171,356.24,63.817 +756172,358.22,63.297 +756173,350.75,64.767 +756174,352.89,64.291 +756175,354.95,63.809 +756176,356.95,63.324 +756177,349.39,64.691 +756178,351.56,64.249 +756179,353.65,63.802 +756180,355.68,63.352 +756181,348.03,64.614 +756182,350.23,64.207 +756183,352.35,63.795 +756184,354.41,63.38 +756185,346.68,64.537 +756186,348.91,64.165 +756187,351.05,63.789 +756188,353.13,63.408 +756189,345.32,64.459 +756190,347.58,64.123 +756191,349.76,63.782 +756192,351.86,63.437 +756193,343.97,64.381 +756194,346.25,64.08 +756195,348.46,63.775 +756196,350.58,63.466 +756197,342.61,64.303 +756198,344.93,64.038 +756199,347.16,63.768 +756200,349.31,63.495 +756201,341.26,64.224 +756202,343.61,63.995 +756203,345.86,63.762 +756204,348.03,63.525 +756205,339.92,64.145 +756206,342.28,63.953 +756207,344.55,63.755 +756208,346.74,63.555 +756209,338.57,64.066 +756210,340.96,63.91 +756211,343.25,63.749 +756212,345.46,63.584 +756213,337.22,63.987 +756214,339.64,63.867 +756215,341.95,63.743 +756216,344.18,63.614 +756217,335.88,63.907 +756218,338.32,63.824 +756219,340.65,63.736 +756220,342.89,63.645 +756221,334.54,63.827 +756222,337,63.781 +756223,339.35,63.73 +756224,341.6,63.675 +756225,333.2,63.748 +756226,335.67,63.738 +756227,338.04,63.723 +756228,340.31,63.705 +756229,331.86,63.668 +756230,334.35,63.695 +756231,336.74,63.717 +756232,339.02,63.735 +756233,330.52,63.588 +756234,333.04,63.652 +756235,335.43,63.711 +756236,337.73,63.765 +756237,329.19,63.508 +756238,331.72,63.609 +756239,334.13,63.704 +756240,336.43,63.796 +756241,327.86,63.428 +756242,330.4,63.566 +756243,332.82,63.698 +756244,335.14,63.826 +756245,326.52,63.348 +756246,329.08,63.523 +756247,331.51,63.692 +756248,333.84,63.856 +756249,325.2,63.268 +756250,327.77,63.48 +756251,330.21,63.685 +756252,332.54,63.885 +756253,323.87,63.188 +756254,326.45,63.437 +756255,328.9,63.679 +756256,331.24,63.915 +756257,322.54,63.109 +756258,325.13,63.394 +756259,327.59,63.672 +756260,329.93,63.945 +756261,321.22,63.029 +756262,323.82,63.351 +756263,326.28,63.665 +756264,328.63,63.974 +756265,319.9,62.95 +756266,322.51,63.308 +756267,324.97,63.658 +756268,327.32,64.003 +756269,318.58,62.871 +756270,321.19,63.265 +756271,323.66,63.652 +756272,326.01,64.032 +756273,317.27,62.792 +756274,319.88,63.222 +756275,322.35,63.645 +756276,324.7,64.06 +756277,315.95,62.713 +756278,318.57,63.179 +756279,321.04,63.637 +756280,323.39,64.088 +756281,314.64,62.635 +756282,317.26,63.137 +756283,319.73,63.63 +756284,322.07,64.116 +756285,313.33,62.557 +756286,315.95,63.094 +756287,318.42,63.623 +756288,320.76,64.143 +756289,312.02,62.479 +756290,314.64,63.052 +756291,317.1,63.615 +756292,319.44,64.17 +756293,310.71,62.402 +756294,313.33,63.01 +756295,315.79,63.608 +756296,318.12,64.197 +756297,309.41,62.325 +756298,312.02,62.968 +756299,314.48,63.6 +756300,316.8,64.223 +756301,308.1,62.249 +756302,310.71,62.926 +756303,313.16,63.592 +756304,315.48,64.248 +756305,306.8,62.173 +756306,309.4,62.884 +756307,311.85,63.584 +756308,314.15,64.273 +756309,305.5,62.098 +756310,308.1,62.842 +756311,310.53,63.575 +756312,312.83,64.298 +756313,304.21,62.023 +756314,306.79,62.801 +756315,309.21,63.567 +756316,311.5,64.322 +756317,302.91,61.948 +756318,305.49,62.759 +756319,307.9,63.558 +756320,310.17,64.345 +756321,301.62,61.875 +756322,304.18,62.718 +756323,306.58,63.549 +756324,308.84,64.368 +756325,300.33,61.802 +756326,302.88,62.677 +756327,305.26,63.54 +756328,307.5,64.39 +756329,299.04,61.729 +756330,301.57,62.636 +756331,303.94,63.53 +756332,306.17,64.411 +756333,297.75,61.657 +756334,300.27,62.596 +756335,302.62,63.52 +756336,304.83,64.431 +756337,296.47,61.586 +756338,298.97,62.555 +756339,301.3,63.51 +756340,303.49,64.451 +756341,295.19,61.516 +756342,297.67,62.515 +756343,299.98,63.5 +756344,302.15,64.47 +756345,293.91,61.446 +756346,296.37,62.475 +756347,298.66,63.49 +756348,300.81,64.489 +756349,292.63,61.377 +756350,295.07,62.436 +756351,297.34,63.479 +756352,299.47,64.506 +756353,291.35,61.309 +756354,293.77,62.397 +756355,296.02,63.468 +756356,298.12,64.523 +756357,290.08,61.242 +756358,292.47,62.357 +756359,294.69,63.456 +756360,296.78,64.539 +756361,288.8,61.175 +756362,291.17,62.319 +756363,293.37,63.445 +756364,295.43,64.554 +756365,287.53,61.11 +756366,289.87,62.28 +756367,292.05,63.433 +756368,294.08,64.568 +756369,286.26,61.045 +756370,288.57,62.242 +756371,290.72,63.42 +756372,292.73,64.581 +756373,284.99,60.981 +756374,287.28,62.204 +756375,289.4,63.408 +756376,291.38,64.593 +756377,283.73,60.918 +756378,285.98,62.166 +756379,288.07,63.395 +756380,290.02,64.605 +756381,282.47,60.857 +756382,284.69,62.129 +756383,286.75,63.382 +756384,288.67,64.615 +756385,281.2,60.796 +756386,283.39,62.092 +756387,285.42,63.368 +756388,287.31,64.624 +756389,279.94,60.736 +756390,282.1,62.055 +756391,284.09,63.354 +756392,285.95,64.633 +756393,278.68,60.677 +756394,280.8,62.019 +756395,282.77,63.34 +756396,284.6,64.64 +756397,277.43,60.619 +756398,279.51,61.983 +756399,281.44,63.325 +756400,283.23,64.646 +756401,276.17,60.562 +756402,278.22,61.947 +756403,280.11,63.31 +756404,281.87,64.652 +756405,274.92,60.506 +756406,276.93,61.911 +756407,278.78,63.295 +756408,280.51,64.656 +756409,273.67,60.452 +756410,275.63,61.876 +756411,277.45,63.279 +756412,279.14,64.659 +756413,272.42,60.398 +756414,274.34,61.842 +756415,276.12,63.263 +756416,277.78,64.661 +756417,271.17,60.346 +756418,273.05,61.807 +756419,274.79,63.246 +756420,276.41,64.662 +756421,269.92,60.295 +756422,271.76,61.773 +756423,273.46,63.229 +756424,275.04,64.661 +756425,268.67,60.244 +756426,270.47,61.74 +756427,272.13,63.212 +756428,273.67,64.66 +756429,267.43,60.196 +756430,269.18,61.707 +756431,270.8,63.194 +756432,272.3,64.657 +756433,266.19,60.148 +756434,267.89,61.674 +756435,269.47,63.176 +756436,270.93,64.653 +756437,264.94,60.101 +756438,266.61,61.641 +756439,268.14,63.157 +756440,269.56,64.648 +756441,263.7,60.056 +756442,265.32,61.609 +756443,266.81,63.138 +756444,268.18,64.642 +756445,262.46,60.012 +756446,264.03,61.578 +756447,265.47,63.119 +756448,266.81,64.635 +756449,261.22,59.969 +756450,262.74,61.546 +756451,264.14,63.099 +756452,265.43,64.626 +756453,259.99,59.927 +756454,261.46,61.516 +756455,262.81,63.079 +756456,264.05,64.616 +756457,258.75,59.887 +756458,260.17,61.485 +756459,261.47,63.058 +756460,262.68,64.605 +756461,257.52,59.848 +756462,258.89,61.455 +756463,260.14,63.037 +756464,261.3,64.593 +756465,256.28,59.81 +756466,257.6,61.425 +756467,258.81,63.015 +756468,259.92,64.579 +756469,255.05,59.774 +756470,256.32,61.396 +756471,257.47,62.993 +756472,258.54,64.564 +756473,253.82,59.738 +756474,255.03,61.367 +756475,256.14,62.971 +756476,257.15,64.548 +756477,252.59,59.704 +756478,253.75,61.339 +756479,254.8,62.948 +756480,255.77,64.531 +756481,251.36,59.672 +756482,252.46,61.311 +756483,253.47,62.924 +756484,254.39,64.512 +756485,250.13,59.64 +756486,251.18,61.284 +756487,252.13,62.901 +756488,253,64.492 +756489,248.9,59.61 +756490,249.89,61.256 +756491,250.8,62.876 +756492,251.62,64.47 +756493,247.67,59.582 +756494,248.61,61.23 +756495,249.46,62.852 +756496,250.23,64.448 +756497,246.45,59.554 +756498,247.33,61.203 +756499,248.13,62.827 +756500,248.85,64.424 +756501,245.22,59.528 +756502,246.05,61.177 +756503,246.79,62.801 +756504,247.46,64.399 +756505,244,59.503 +756506,244.76,61.152 +756507,245.45,62.775 +756508,246.07,64.372 +756509,242.77,59.48 +756510,243.48,61.127 +756511,244.12,62.749 +756512,244.69,64.344 +756513,241.55,59.458 +756514,242.2,61.102 +756515,242.78,62.722 +756516,243.3,64.315 +756517,240.32,59.437 +756518,240.92,61.078 +756519,241.44,62.694 +756520,241.91,64.285 +756521,239.1,59.418 +756522,239.63,61.054 +756523,240.11,62.666 +756524,240.52,64.253 +756525,237.88,59.4 +756526,238.35,61.031 +756527,238.77,62.638 +756528,239.13,64.22 +756529,236.65,59.383 +756530,237.07,61.008 +756531,237.43,62.609 +756532,237.74,64.186 +756533,235.43,59.367 +756534,235.79,60.986 +756535,236.09,62.58 +756536,236.35,64.15 +756537,234.21,59.353 +756538,234.51,60.964 +756539,234.76,62.551 +756540,234.96,64.113 +756541,232.98,59.34 +756542,233.23,60.942 +756543,233.42,62.521 +756544,233.57,64.075 +756545,231.76,59.328 +756546,231.95,60.921 +756547,232.08,62.49 +756548,232.18,64.035 +756549,230.54,59.318 +756550,230.67,60.9 +756551,230.75,62.459 +756552,230.78,63.995 +756553,229.32,59.309 +756554,229.38,60.88 +756555,229.41,62.428 +756556,229.39,63.953 +756557,228.1,59.301 +756558,228.1,60.86 +756559,228.07,62.396 +756560,228,63.909 +756561,226.87,59.294 +756562,226.82,60.84 +756563,226.73,62.364 +756564,226.61,63.865 +756565,225.65,59.289 +756566,225.54,60.821 +756567,225.4,62.331 +756568,225.22,63.819 +756569,224.43,59.285 +756570,224.26,60.802 +756571,224.06,62.298 +756572,223.83,63.772 +756573,223.21,59.282 +756574,222.98,60.784 +756575,222.72,62.264 +756576,222.43,63.724 +756577,221.98,59.281 +756578,221.7,60.766 +756579,221.38,62.23 +756580,221.04,63.674 +756581,220.76,59.28 +756582,220.42,60.748 +756583,220.05,62.196 +756584,219.65,63.623 +756585,219.54,59.281 +756586,219.14,60.731 +756587,218.71,62.161 +756588,218.26,63.571 +756589,218.31,59.283 +756590,217.86,60.714 +756591,217.37,62.126 +756592,216.87,63.518 +756593,217.09,59.286 +756594,216.57,60.697 +756595,216.04,62.09 +756596,215.48,63.464 +756597,215.86,59.29 +756598,215.29,60.681 +756599,214.7,62.054 +756600,214.09,63.409 +756601,214.64,59.295 +756602,214.01,60.665 +756603,213.36,62.018 +756604,212.69,63.352 +756605,213.41,59.302 +756606,212.73,60.65 +756607,212.03,61.981 +756608,211.3,63.294 +756609,212.18,59.309 +756610,211.45,60.635 +756611,210.69,61.944 +756612,209.91,63.235 +756613,210.96,59.318 +756614,210.17,60.62 +756615,209.36,61.907 +756616,208.53,63.176 +756617,209.73,59.327 +756618,208.88,60.606 +756619,208.02,61.869 +756620,207.14,63.114 +756621,208.5,59.338 +756622,207.6,60.592 +756623,206.68,61.83 +756624,205.75,63.052 +756625,207.27,59.35 +756626,206.32,60.578 +756627,205.35,61.792 +756628,204.36,62.989 +756629,206.04,59.363 +756630,205.04,60.565 +756631,204.01,61.753 +756632,202.97,62.925 +756633,204.81,59.376 +756634,203.75,60.552 +756635,202.68,61.713 +756636,201.59,62.86 +756637,203.58,59.391 +756638,202.47,60.539 +756639,201.35,61.674 +756640,200.2,62.794 +756641,202.34,59.406 +756642,201.19,60.527 +756643,200.01,61.634 +756644,198.81,62.726 +756645,201.11,59.423 +756646,199.9,60.514 +756647,198.68,61.593 +756648,197.43,62.658 +756649,199.87,59.44 +756650,198.62,60.502 +756651,197.34,61.553 +756652,196.05,62.589 +756653,198.64,59.458 +756654,197.33,60.491 +756655,196.01,61.512 +756656,194.66,62.519 +756657,197.4,59.477 +756658,196.05,60.48 +756659,194.68,61.47 +756660,193.28,62.448 +756661,196.16,59.497 +756662,194.76,60.469 +756663,193.35,61.429 +756664,191.9,62.377 +756665,194.92,59.518 +756666,193.48,60.458 +756667,192.01,61.387 +756668,190.52,62.304 +756669,193.68,59.539 +756670,192.19,60.447 +756671,190.68,61.345 +756672,189.14,62.231 +756673,192.44,59.561 +756674,190.91,60.437 +756675,189.35,61.302 +756676,187.76,62.156 +756677,191.19,59.584 +756678,189.62,60.427 +756679,188.02,61.26 +756680,186.38,62.081 +756681,189.95,59.608 +756682,188.33,60.417 +756683,186.69,61.217 +756684,185.01,62.005 +756685,188.7,59.632 +756686,187.05,60.407 +756687,185.36,61.174 +756688,183.63,61.929 +756689,187.46,59.657 +756690,185.76,60.398 +756691,184.03,61.13 +756692,182.26,61.852 +756693,186.21,59.682 +756694,184.47,60.389 +756695,182.7,61.086 +756696,180.89,61.774 +756697,184.96,59.708 +756698,183.18,60.38 +756699,181.37,61.043 +756700,179.51,61.695 +756701,183.71,59.735 +756702,181.89,60.371 +756703,180.04,60.998 +756704,178.14,61.616 +756705,182.45,59.762 +756706,180.61,60.362 +756707,178.71,60.954 +756708,176.77,61.536 +756709,181.2,59.789 +756710,179.32,60.353 +756711,177.39,60.91 +756712,175.41,61.456 +756713,179.94,59.817 +756714,178.03,60.345 +756715,176.06,60.865 +756716,174.04,61.375 +756717,178.68,59.846 +756718,176.73,60.337 +756719,174.73,60.82 +756720,172.68,61.294 +756721,177.42,59.874 +756722,175.44,60.329 +756723,173.41,60.775 +756724,171.31,61.212 +756725,176.16,59.904 +756726,174.15,60.321 +756727,172.08,60.73 +756728,169.95,61.129 +756729,174.9,59.933 +756730,172.86,60.313 +756731,170.76,60.684 +756732,168.59,61.047 +756733,173.64,59.963 +756734,171.57,60.305 +756735,169.43,60.639 +756736,167.23,60.963 +756737,172.37,59.993 +756738,170.27,60.297 +756739,168.11,60.593 +756740,165.87,60.88 +756741,171.1,60.024 +756742,168.98,60.289 +756743,166.79,60.548 +756744,164.52,60.796 +756745,169.84,60.054 +756746,167.69,60.282 +756747,165.47,60.502 +756748,163.16,60.712 +756749,168.57,60.085 +756750,166.39,60.274 +756751,164.14,60.456 +756752,161.81,60.627 +756753,167.29,60.116 +756754,165.1,60.267 +756755,162.82,60.41 +756756,160.46,60.543 +756757,166.02,60.147 +756758,163.8,60.259 +756759,161.5,60.364 +756760,159.11,60.458 +756761,164.74,60.178 +756762,162.5,60.252 +756763,160.18,60.318 +756764,157.76,60.372 +756765,163.47,60.209 +756766,161.21,60.245 +756767,158.86,60.271 +756768,156.41,60.287 +756769,162.19,60.241 +756770,159.91,60.237 +756771,157.54,60.225 +756772,155.07,60.202 +756773,160.91,60.272 +756774,158.61,60.23 +756775,156.22,60.179 +756776,153.73,60.116 +756777,159.62,60.303 +756778,157.31,60.223 +756779,154.91,60.132 +756780,152.39,60.031 +756781,158.34,60.334 +756782,156.01,60.215 +756783,153.59,60.086 +756784,151.05,59.945 +756785,157.05,60.366 +756786,154.72,60.208 +756787,152.27,60.04 +756788,149.71,59.859 +756789,155.76,60.397 +756790,153.42,60.2 +756791,150.96,59.993 +756792,148.38,59.774 +756793,154.47,60.427 +756794,152.11,60.193 +756795,149.64,59.947 +756796,147.04,59.688 +756797,153.18,60.458 +756798,150.81,60.185 +756799,148.33,59.901 +756800,145.71,59.603 +756801,151.89,60.489 +756802,149.51,60.178 +756803,147.02,59.854 +756804,144.38,59.517 +756805,150.59,60.519 +756806,148.21,60.17 +756807,145.7,59.808 +756808,143.06,59.432 +756809,149.3,60.549 +756810,146.91,60.162 +756811,144.39,59.762 +756812,141.73,59.347 +756813,148,60.579 +756814,145.6,60.154 +756815,143.08,59.716 +756816,140.41,59.263 +756817,146.7,60.608 +756818,144.3,60.146 +756819,141.77,59.67 +756820,139.09,59.178 +756821,145.4,60.637 +756822,142.99,60.138 +756823,140.46,59.624 +756824,137.77,59.094 +756825,144.09,60.665 +756826,141.69,60.129 +756827,139.15,59.578 +756828,136.45,59.01 +756829,142.79,60.694 +756830,140.38,60.121 +756831,137.84,59.533 +756832,135.14,58.927 +756833,141.48,60.721 +756834,139.07,60.112 +756835,136.53,59.487 +756836,133.82,58.843 +756837,140.17,60.749 +756838,137.77,60.104 +756839,135.22,59.442 +756840,132.51,58.761 +756841,138.86,60.775 +756842,136.46,60.095 +756843,133.92,59.396 +756844,131.2,58.678 +756845,137.54,60.802 +756846,135.15,60.085 +756847,132.61,59.351 +756848,129.9,58.597 +756849,136.23,60.827 +756850,133.84,60.076 +756851,131.31,59.306 +756852,128.59,58.515 +756853,134.91,60.852 +756854,132.53,60.067 +756855,130,59.261 +756856,127.29,58.434 +756857,133.59,60.877 +756858,131.22,60.057 +756859,128.7,59.217 +756860,125.99,58.354 +756861,132.27,60.901 +756862,129.91,60.047 +756863,127.39,59.172 +756864,124.69,58.275 +756865,130.95,60.924 +756866,128.6,60.037 +756867,126.09,59.128 +756868,123.4,58.196 +756869,129.63,60.946 +756870,127.29,60.026 +756871,124.79,59.084 +756872,122.1,58.117 +756873,128.3,60.968 +756874,125.97,60.015 +756875,123.49,59.04 +756876,120.81,58.04 +756877,126.98,60.989 +756878,124.66,60.004 +756879,122.19,58.996 +756880,119.52,57.963 +756881,125.65,61.009 +756882,123.35,59.993 +756883,120.89,58.953 +756884,118.23,57.887 +756885,124.32,61.029 +756886,122.03,59.982 +756887,119.59,58.91 +756888,116.95,57.811 +756889,122.98,61.047 +756890,120.72,59.97 +756891,118.29,58.867 +756892,115.67,57.737 +756893,121.65,61.065 +756894,119.4,59.958 +756895,116.99,58.825 +756896,114.39,57.663 +756897,120.31,61.082 +756898,118.09,59.946 +756899,115.69,58.782 +756900,113.11,57.59 +756901,118.98,61.098 +756902,116.77,59.933 +756903,114.4,58.74 +756904,111.83,57.518 +756905,117.64,61.113 +756906,115.45,59.92 +756907,113.1,58.698 +756908,110.55,57.447 +756909,116.3,61.127 +756910,114.14,59.907 +756911,111.81,58.657 +756912,109.28,57.376 +756913,114.96,61.14 +756914,112.82,59.893 +756915,110.51,58.616 +756916,108.01,57.307 +756917,113.61,61.153 +756918,111.5,59.879 +756919,109.22,58.575 +756920,106.74,57.239 +756921,112.27,61.164 +756922,110.18,59.864 +756923,107.93,58.535 +756924,105.47,57.172 +756925,110.92,61.174 +756926,108.86,59.85 +756927,106.63,58.494 +756928,104.21,57.105 +756929,109.57,61.183 +756930,107.54,59.835 +756931,105.34,58.455 +756932,102.95,57.04 +756933,108.22,61.191 +756934,106.22,59.819 +756935,104.05,58.415 +756936,101.69,56.976 +756937,106.87,61.198 +756938,104.9,59.803 +756939,102.76,58.376 +756940,100.43,56.913 +756941,105.52,61.204 +756942,103.58,59.787 +756943,101.47,58.337 +756944,99.169,56.851 +756945,104.17,61.209 +756946,102.25,59.771 +756947,100.18,58.299 +756948,97.913,56.79 +756949,102.81,61.212 +756950,100.93,59.754 +756951,98.891,58.261 +756952,96.66,56.731 +756953,101.46,61.215 +756954,99.608,59.736 +756955,97.602,58.223 +756956,95.408,56.672 +756957,100.1,61.216 +756958,98.284,59.719 +756959,96.314,58.186 +756960,94.158,56.615 +756961,98.738,61.216 +756962,96.96,59.7 +756963,95.027,58.149 +756964,92.91,56.559 +756965,97.377,61.215 +756966,95.636,59.682 +756967,93.741,58.112 +756968,91.663,56.504 +756969,96.016,61.213 +756970,94.311,59.663 +756971,92.455,58.076 +756972,90.418,56.451 +756973,94.652,61.209 +756974,92.986,59.643 +756975,91.169,58.04 +756976,89.175,56.398 +756977,93.288,61.205 +756978,91.66,59.623 +756979,89.884,58.005 +756980,87.933,56.347 +756981,91.923,61.199 +756982,90.334,59.603 +756983,88.6,57.97 +756984,86.693,56.298 +756985,90.556,61.191 +756986,89.007,59.582 +756987,87.316,57.936 +756988,85.455,56.249 +756989,89.188,61.183 +756990,87.68,59.561 +756991,86.032,57.902 +756992,84.217,56.202 +756993,87.819,61.173 +756994,86.353,59.54 +756995,84.749,57.868 +756996,82.982,56.156 +756997,86.449,61.162 +756998,85.025,59.517 +756999,83.466,57.835 +757000,81.748,56.112 +757001,85.078,61.149 +757002,83.697,59.495 +757003,82.184,57.802 +757004,80.515,56.069 +757005,83.706,61.135 +757006,82.369,59.472 +757007,80.903,57.77 +757008,79.283,56.027 +757009,82.333,61.12 +757010,81.04,59.448 +757011,79.621,57.738 +757012,78.053,55.987 +757013,80.959,61.104 +757014,79.712,59.424 +757015,78.341,57.707 +757016,76.824,55.948 +757017,79.584,61.086 +757018,78.382,59.4 +757019,77.06,57.676 +757020,75.597,55.91 +757021,78.208,61.067 +757022,77.053,59.375 +757023,75.78,57.645 +757024,74.37,55.874 +757025,76.831,61.046 +757026,75.723,59.35 +757027,74.501,57.615 +757028,73.145,55.839 +757029,75.453,61.024 +757030,74.393,59.324 +757031,73.221,57.585 +757032,71.92,55.806 +757033,74.075,61.001 +757034,73.062,59.298 +757035,71.942,57.556 +757036,70.697,55.774 +757037,72.695,60.976 +757038,71.732,59.271 +757039,70.664,57.527 +757040,69.474,55.744 +757041,71.315,60.95 +757042,70.401,59.244 +757043,69.386,57.499 +757044,68.253,55.715 +757045,69.935,60.923 +757046,69.07,59.216 +757047,68.108,57.471 +757048,67.032,55.687 +757049,68.553,60.894 +757050,67.739,59.188 +757051,66.83,57.444 +757052,65.812,55.661 +757053,67.171,60.864 +757054,66.407,59.159 +757055,65.553,57.417 +757056,64.593,55.636 +757057,65.788,60.833 +757058,65.076,59.13 +757059,64.276,57.391 +757060,63.375,55.612 +757061,64.405,60.8 +757062,63.744,59.101 +757063,62.999,57.365 +757064,62.157,55.591 +757065,63.021,60.765 +757066,62.412,59.071 +757067,61.722,57.339 +757068,60.94,55.57 +757069,61.636,60.73 +757070,61.08,59.04 +757071,60.446,57.314 +757072,59.724,55.551 +757073,60.252,60.693 +757074,59.748,59.009 +757075,59.17,57.289 +757076,58.508,55.533 +757077,58.866,60.654 +757078,58.415,58.977 +757079,57.894,57.265 +757080,57.292,55.517 +757081,57.48,60.614 +757082,57.083,58.945 +757083,56.618,57.242 +757084,56.077,55.502 +757085,56.094,60.573 +757086,55.75,58.913 +757087,55.342,57.218 +757088,54.862,55.488 +757089,54.708,60.531 +757090,54.418,58.88 +757091,54.067,57.196 +757092,53.648,55.476 +757093,53.321,60.487 +757094,53.085,58.847 +757095,52.792,57.173 +757096,52.434,55.466 +757097,51.934,60.441 +757098,51.752,58.813 +757099,51.516,57.151 +757100,51.22,55.456 +757101,50.547,60.395 +757102,50.419,58.779 +757103,50.241,57.13 +757104,50.006,55.448 +757105,49.159,60.347 +757106,49.087,58.744 +757107,48.966,57.109 +757108,48.792,55.442 +757109,47.771,60.297 +757110,47.754,58.709 +757111,47.691,57.088 +757112,47.579,55.436 +757113,46.383,60.247 +757114,46.421,58.673 +757115,46.417,57.068 +757116,46.365,55.432 +757117,44.995,60.195 +757118,45.088,58.637 +757119,45.142,57.048 +757120,45.151,55.43 +757121,43.608,60.142 +757122,43.756,58.6 +757123,43.867,57.029 +757124,43.937,55.428 +757125,42.22,60.087 +757126,42.423,58.563 +757127,42.592,57.01 +757128,42.723,55.428 +757129,40.832,60.031 +757130,41.09,58.526 +757131,41.317,56.992 +757132,41.509,55.429 +757133,39.444,59.974 +757134,39.758,58.488 +757135,40.043,56.974 +757136,40.295,55.432 +757137,38.056,59.916 +757138,38.425,58.449 +757139,38.768,56.956 +757140,39.08,55.436 +757141,36.668,59.856 +757142,37.093,58.411 +757143,37.493,56.939 +757144,37.865,55.441 +757145,35.281,59.796 +757146,35.761,58.372 +757147,36.218,56.922 +757148,36.649,55.447 +757149,33.893,59.734 +757150,34.429,58.332 +757151,34.943,56.905 +757152,35.433,55.454 +757153,32.506,59.67 +757154,33.097,58.292 +757155,33.668,56.889 +757156,34.217,55.463 +757157,31.119,59.606 +757158,31.765,58.252 +757159,32.392,56.873 +757160,33,55.472 +757161,29.733,59.541 +757162,30.434,58.211 +757163,31.117,56.858 +757164,31.782,55.483 +757165,28.347,59.474 +757166,29.102,58.17 +757167,29.841,56.843 +757168,30.564,55.495 +757169,26.961,59.406 +757170,27.771,58.128 +757171,28.566,56.828 +757172,29.345,55.508 +757173,25.576,59.337 +757174,26.44,58.086 +757175,27.29,56.814 +757176,28.125,55.522 +757177,24.191,59.267 +757178,25.109,58.044 +757179,26.014,56.8 +757180,26.905,55.537 +757181,22.807,59.196 +757182,23.779,58.001 +757183,24.738,56.787 +757184,25.684,55.553 +757185,21.423,59.124 +757186,22.449,57.958 +757187,23.461,56.773 +757188,24.461,55.571 +757189,20.04,59.05 +757190,21.119,57.915 +757191,22.185,56.76 +757192,23.238,55.589 +757193,18.657,58.976 +757194,19.789,57.871 +757195,20.908,56.748 +757196,22.014,55.608 +757197,17.276,58.901 +757198,18.46,57.827 +757199,19.631,56.736 +757200,20.789,55.628 +757201,15.894,58.825 +757202,17.131,57.783 +757203,18.353,56.724 +757204,19.563,55.649 +757205,14.514,58.748 +757206,15.802,57.738 +757207,17.076,56.712 +757208,18.336,55.671 +757209,13.135,58.67 +757210,14.474,57.693 +757211,15.798,56.7 +757212,17.108,55.693 +757213,11.756,58.591 +757214,13.146,57.648 +757215,14.519,56.689 +757216,15.879,55.717 +757217,10.378,58.511 +757218,11.818,57.602 +757219,13.241,56.678 +757220,14.648,55.741 +757221,9.0009,58.43 +757222,10.491,57.556 +757223,11.962,56.668 +757224,13.417,55.766 +757225,7.6249,58.349 +757226,9.1638,57.51 +757227,10.683,56.657 +757228,12.184,55.792 +757229,6.2498,58.266 +757230,7.8373,57.464 +757231,9.4031,56.647 +757232,10.95,55.818 +757233,4.8758,58.183 +757234,6.5112,57.417 +757235,8.1231,56.637 +757236,9.714,55.845 +757237,3.5028,58.1 +757238,5.1856,57.37 +757239,6.8428,56.627 +757240,8.4772,55.873 +757241,2.1309,58.015 +757242,3.8604,57.323 +757243,5.5621,56.618 +757244,7.2389,55.901 +757245,0.76012,57.93 +757246,2.5357,57.276 +757247,4.281,56.608 +757248,5.9993,55.93 +757249,359.39,57.844 +757250,1.2114,57.228 +757251,2.9994,56.599 +757252,4.7583,55.96 +757253,358.02,57.757 +757254,359.89,57.18 +757255,1.7175,56.59 +757256,3.5158,55.99 +757257,356.65,57.67 +757258,358.56,57.132 +757259,0.43514,56.581 +757260,2.2718,56.02 +757261,355.29,57.583 +757262,357.24,57.084 +757263,359.15,56.573 +757264,1.0263,56.051 +757265,353.92,57.495 +757266,355.92,57.036 +757267,357.87,56.564 +757268,359.78,56.083 +757269,352.56,57.406 +757270,354.6,56.987 +757271,356.59,56.556 +757272,358.53,56.115 +757273,351.2,57.317 +757274,353.28,56.938 +757275,355.3,56.548 +757276,357.28,56.147 +757277,349.84,57.227 +757278,351.96,56.89 +757279,354.02,56.54 +757280,356.03,56.179 +757281,348.48,57.137 +757282,350.64,56.841 +757283,352.73,56.532 +757284,354.78,56.212 +757285,347.12,57.046 +757286,349.32,56.791 +757287,351.45,56.524 +757288,353.52,56.245 +757289,345.77,56.956 +757290,348,56.742 +757291,350.16,56.516 +757292,352.26,56.279 +757293,344.41,56.865 +757294,346.68,56.693 +757295,348.87,56.508 +757296,351.01,56.312 +757297,343.06,56.773 +757298,345.36,56.644 +757299,347.59,56.5 +757300,349.75,56.346 +757301,341.71,56.681 +757302,344.04,56.594 +757303,346.3,56.493 +757304,348.48,56.38 +757305,340.36,56.59 +757306,342.73,56.545 +757307,345.01,56.485 +757308,347.22,56.414 +757309,339.01,56.498 +757310,341.41,56.495 +757311,343.72,56.478 +757312,345.95,56.448 +757313,337.66,56.405 +757314,340.1,56.445 +757315,342.43,56.47 +757316,344.69,56.482 +757317,336.32,56.313 +757318,338.78,56.396 +757319,341.14,56.462 +757320,343.42,56.516 +757321,334.98,56.221 +757322,337.47,56.346 +757323,339.85,56.455 +757324,342.15,56.55 +757325,333.64,56.128 +757326,336.15,56.296 +757327,338.56,56.447 +757328,340.88,56.584 +757329,332.3,56.036 +757330,334.84,56.246 +757331,337.27,56.44 +757332,339.6,56.618 +757333,330.96,55.943 +757334,333.53,56.197 +757335,335.98,56.432 +757336,338.33,56.652 +757337,329.63,55.851 +757338,332.22,56.147 +757339,334.69,56.424 +757340,337.05,56.686 +757341,328.29,55.758 +757342,330.91,56.097 +757343,333.39,56.417 +757344,335.77,56.719 +757345,326.96,55.666 +757346,329.6,56.048 +757347,332.1,56.409 +757348,334.49,56.753 +757349,325.63,55.574 +757350,328.29,55.998 +757351,330.8,56.401 +757352,333.2,56.786 +757353,324.3,55.482 +757354,326.98,55.948 +757355,329.51,56.393 +757356,331.92,56.818 +757357,322.98,55.391 +757358,325.67,55.899 +757359,328.21,56.385 +757360,330.63,56.851 +757361,321.65,55.299 +757362,324.36,55.85 +757363,326.92,56.377 +757364,329.34,56.883 +757365,320.33,55.208 +757366,323.06,55.8 +757367,325.62,56.368 +757368,328.05,56.915 +757369,319.01,55.117 +757370,321.75,55.751 +757371,324.32,56.36 +757372,326.76,56.946 +757373,317.7,55.027 +757374,320.44,55.702 +757375,323.03,56.351 +757376,325.47,56.977 +757377,316.38,54.937 +757378,319.14,55.653 +757379,321.73,56.342 +757380,324.17,57.007 +757381,315.07,54.847 +757382,317.84,55.605 +757383,320.43,56.334 +757384,322.87,57.037 +757385,313.76,54.758 +757386,316.53,55.556 +757387,319.13,56.324 +757388,321.57,57.067 +757389,312.45,54.67 +757390,315.23,55.508 +757391,317.83,56.315 +757392,320.27,57.096 +757393,311.14,54.582 +757394,313.93,55.459 +757395,316.53,56.306 +757396,318.97,57.124 +757397,309.84,54.494 +757398,312.63,55.411 +757399,315.23,56.296 +757400,317.66,57.151 +757401,308.54,54.407 +757402,311.33,55.364 +757403,313.92,56.286 +757404,316.36,57.178 +757405,307.24,54.321 +757406,310.03,55.316 +757407,312.62,56.276 +757408,315.05,57.205 +757409,305.94,54.236 +757410,308.73,55.269 +757411,311.32,56.265 +757412,313.74,57.23 +757413,304.64,54.151 +757414,307.43,55.221 +757415,310.02,56.255 +757416,312.43,57.255 +757417,303.35,54.067 +757418,306.13,55.174 +757419,308.71,56.244 +757420,311.11,57.279 +757421,302.06,53.983 +757422,304.84,55.128 +757423,307.41,56.233 +757424,309.8,57.303 +757425,300.77,53.901 +757426,303.54,55.081 +757427,306.1,56.221 +757428,308.48,57.325 +757429,299.48,53.819 +757430,302.25,55.035 +757431,304.79,56.21 +757432,307.16,57.347 +757433,298.2,53.738 +757434,300.95,54.989 +757435,303.49,56.198 +757436,305.84,57.368 +757437,296.91,53.658 +757438,299.66,54.944 +757439,302.18,56.185 +757440,304.52,57.387 +757441,295.63,53.579 +757442,298.37,54.898 +757443,300.87,56.173 +757444,303.19,57.406 +757445,294.36,53.501 +757446,297.07,54.853 +757447,299.56,56.16 +757448,301.87,57.425 +757449,293.08,53.424 +757450,295.78,54.809 +757451,298.26,56.146 +757452,300.54,57.442 +757453,291.81,53.348 +757454,294.49,54.765 +757455,296.95,56.133 +757456,299.21,57.458 +757457,290.54,53.273 +757458,293.2,54.721 +757459,295.64,56.119 +757460,297.88,57.473 +757461,289.27,53.199 +757462,291.91,54.677 +757463,294.33,56.104 +757464,296.55,57.487 +757465,288,53.126 +757466,290.62,54.634 +757467,293.01,56.09 +757468,295.21,57.5 +757469,286.73,53.054 +757470,289.34,54.591 +757471,291.7,56.075 +757472,293.88,57.512 +757473,285.47,52.984 +757474,288.05,54.548 +757475,290.39,56.059 +757476,292.54,57.522 +757477,284.21,52.914 +757478,286.76,54.506 +757479,289.08,56.043 +757480,291.2,57.532 +757481,282.95,52.846 +757482,285.48,54.464 +757483,287.77,56.027 +757484,289.86,57.541 +757485,281.7,52.779 +757486,284.19,54.423 +757487,286.45,56.011 +757488,288.52,57.548 +757489,280.44,52.713 +757490,282.91,54.382 +757491,285.14,55.993 +757492,287.17,57.554 +757493,279.19,52.649 +757494,281.62,54.341 +757495,283.82,55.976 +757496,285.83,57.559 +757497,277.94,52.586 +757498,280.34,54.301 +757499,282.51,55.958 +757500,284.48,57.563 +757501,276.69,52.524 +757502,279.06,54.261 +757503,281.19,55.94 +757504,283.14,57.565 +757505,275.44,52.463 +757506,277.78,54.222 +757507,279.88,55.921 +757508,281.79,57.566 +757509,274.2,52.404 +757510,276.49,54.183 +757511,278.56,55.902 +757512,280.44,57.566 +757513,272.96,52.346 +757514,275.21,54.145 +757515,277.24,55.882 +757516,279.09,57.565 +757517,271.72,52.29 +757518,273.93,54.107 +757519,275.93,55.862 +757520,277.73,57.562 +757521,270.48,52.235 +757522,272.65,54.069 +757523,274.61,55.842 +757524,276.38,57.559 +757525,269.24,52.181 +757526,271.38,54.032 +757527,273.29,55.821 +757528,275.02,57.553 +757529,268,52.129 +757530,270.1,53.996 +757531,271.97,55.8 +757532,273.67,57.547 +757533,266.77,52.078 +757534,268.82,53.959 +757535,270.65,55.778 +757536,272.31,57.539 +757537,265.54,52.029 +757538,267.54,53.924 +757539,269.33,55.755 +757540,270.95,57.529 +757541,264.31,51.981 +757542,266.27,53.889 +757543,268.01,55.732 +757544,269.59,57.519 +757545,263.08,51.935 +757546,264.99,53.854 +757547,266.69,55.709 +757548,268.23,57.506 +757549,261.85,51.89 +757550,263.71,53.82 +757551,265.37,55.685 +757552,266.86,57.493 +757553,260.63,51.847 +757554,262.44,53.786 +757555,264.05,55.661 +757556,265.5,57.478 +757557,259.4,51.805 +757558,261.16,53.753 +757559,262.73,55.636 +757560,264.14,57.462 +757561,258.18,51.765 +757562,259.89,53.72 +757563,261.41,55.611 +757564,262.77,57.444 +757565,256.96,51.726 +757566,258.62,53.688 +757567,260.09,55.585 +757568,261.4,57.424 +757569,255.74,51.689 +757570,257.34,53.656 +757571,258.76,55.559 +757572,260.04,57.404 +757573,254.52,51.654 +757574,256.07,53.625 +757575,257.44,55.532 +757576,258.67,57.382 +757577,253.3,51.62 +757578,254.8,53.594 +757579,256.12,55.505 +757580,257.3,57.358 +757581,252.09,51.587 +757582,253.52,53.564 +757583,254.8,55.477 +757584,255.93,57.333 +757585,250.87,51.557 +757586,252.25,53.534 +757587,253.47,55.449 +757588,254.56,57.306 +757589,249.66,51.527 +757590,250.98,53.505 +757591,252.15,55.42 +757592,253.19,57.278 +757593,248.44,51.5 +757594,249.71,53.476 +757595,250.83,55.391 +757596,251.81,57.249 +757597,247.23,51.474 +757598,248.44,53.448 +757599,249.5,55.361 +757600,250.44,57.218 +757601,246.02,51.449 +757602,247.17,53.42 +757603,248.18,55.331 +757604,249.07,57.185 +757605,244.81,51.426 +757606,245.9,53.393 +757607,246.85,55.3 +757608,247.69,57.152 +757609,243.6,51.405 +757610,244.63,53.367 +757611,245.53,55.269 +757612,246.31,57.116 +757613,242.39,51.385 +757614,243.36,53.34 +757615,244.2,55.237 +757616,244.94,57.079 +757617,241.19,51.367 +757618,242.09,53.315 +757619,242.88,55.205 +757620,243.56,57.041 +757621,239.98,51.35 +757622,240.82,53.29 +757623,241.55,55.172 +757624,242.19,57.001 +757625,238.77,51.335 +757626,239.56,53.265 +757627,240.23,55.139 +757628,240.81,56.96 +757629,237.57,51.322 +757630,238.29,53.241 +757631,238.9,55.105 +757632,239.43,56.917 +757633,236.36,51.31 +757634,237.02,53.217 +757635,237.58,55.071 +757636,238.05,56.873 +757637,235.16,51.299 +757638,235.75,53.194 +757639,236.25,55.036 +757640,236.67,56.827 +757641,233.95,51.29 +757642,234.49,53.172 +757643,234.93,55 +757644,235.29,56.78 +757645,232.75,51.283 +757646,233.22,53.149 +757647,233.6,54.965 +757648,233.91,56.731 +757649,231.54,51.277 +757650,231.95,53.128 +757651,232.28,54.928 +757652,232.53,56.681 +757653,230.34,51.273 +757654,230.68,53.107 +757655,230.95,54.892 +757656,231.15,56.63 +757657,229.14,51.27 +757658,229.42,53.086 +757659,229.62,54.854 +757660,229.77,56.577 +757661,227.93,51.268 +757662,228.15,53.066 +757663,228.3,54.817 +757664,228.39,56.523 +757665,226.73,51.268 +757666,226.88,53.046 +757667,226.97,54.778 +757668,227.01,56.467 +757669,225.53,51.27 +757670,225.62,53.027 +757671,225.65,54.74 +757672,225.63,56.41 +757673,224.33,51.272 +757674,224.35,53.008 +757675,224.32,54.701 +757676,224.25,56.351 +757677,223.12,51.277 +757678,223.08,52.99 +757679,223,54.661 +757680,222.87,56.291 +757681,221.92,51.282 +757682,221.82,52.972 +757683,221.67,54.621 +757684,221.49,56.23 +757685,220.71,51.289 +757686,220.55,52.955 +757687,220.35,54.58 +757688,220.11,56.168 +757689,219.51,51.298 +757690,219.28,52.938 +757691,219.02,54.54 +757692,218.72,56.104 +757693,218.31,51.307 +757694,218.02,52.921 +757695,217.7,54.498 +757696,217.34,56.039 +757697,217.1,51.318 +757698,216.75,52.905 +757699,216.37,54.456 +757700,215.96,55.972 +757701,215.9,51.33 +757702,215.48,52.89 +757703,215.05,54.414 +757704,214.58,55.904 +757705,214.69,51.344 +757706,214.22,52.874 +757707,213.72,54.371 +757708,213.2,55.835 +757709,213.48,51.359 +757710,212.95,52.86 +757711,212.4,54.328 +757712,211.82,55.765 +757713,212.28,51.375 +757714,211.68,52.845 +757715,211.07,54.285 +757716,210.44,55.693 +757717,211.07,51.392 +757718,210.42,52.831 +757719,209.75,54.241 +757720,209.06,55.62 +757721,209.86,51.41 +757722,209.15,52.818 +757723,208.42,54.196 +757724,207.68,55.546 +757725,208.65,51.43 +757726,207.88,52.805 +757727,207.1,54.152 +757728,206.31,55.471 +757729,207.44,51.45 +757730,206.62,52.792 +757731,205.78,54.107 +757732,204.93,55.395 +757733,206.23,51.472 +757734,205.35,52.779 +757735,204.45,54.061 +757736,203.55,55.317 +757737,205.02,51.495 +757738,204.08,52.767 +757739,203.13,54.015 +757740,202.17,55.239 +757741,203.81,51.518 +757742,202.81,52.755 +757743,201.81,53.969 +757744,200.8,55.159 +757745,202.6,51.543 +757746,201.54,52.744 +757747,200.48,53.923 +757748,199.42,55.078 +757749,201.38,51.569 +757750,200.28,52.733 +757751,199.16,53.876 +757752,198.04,54.996 +757753,200.17,51.596 +757754,199.01,52.722 +757755,197.84,53.829 +757756,196.67,54.914 +757757,198.95,51.623 +757758,197.74,52.712 +757759,196.52,53.781 +757760,195.3,54.83 +757761,197.74,51.652 +757762,196.47,52.702 +757763,195.2,53.733 +757764,193.92,54.745 +757765,196.52,51.681 +757766,195.2,52.692 +757767,193.88,53.685 +757768,192.55,54.659 +757769,195.3,51.711 +757770,193.93,52.682 +757771,192.56,53.637 +757772,191.18,54.573 +757773,194.08,51.742 +757774,192.66,52.673 +757775,191.24,53.588 +757776,189.81,54.485 +757777,192.85,51.774 +757778,191.39,52.664 +757779,189.92,53.539 +757780,188.44,54.397 +757781,191.63,51.806 +757782,190.12,52.655 +757783,188.6,53.49 +757784,187.07,54.307 +757785,190.41,51.839 +757786,188.85,52.647 +757787,187.28,53.44 +757788,185.7,54.217 +757789,189.18,51.873 +757790,187.58,52.639 +757791,185.96,53.39 +757792,184.33,54.126 +757793,187.95,51.908 +757794,186.3,52.631 +757795,184.64,53.34 +757796,182.97,54.035 +757797,186.72,51.943 +757798,185.03,52.623 +757799,183.33,53.29 +757800,181.6,53.943 +757801,185.49,51.978 +757802,183.76,52.615 +757803,182.01,53.24 +757804,180.24,53.85 +757805,184.26,52.014 +757806,182.49,52.608 +757807,180.69,53.189 +757808,178.88,53.756 +757809,183.03,52.051 +757810,181.21,52.601 +757811,179.38,53.138 +757812,177.51,53.662 +757813,181.79,52.088 +757814,179.94,52.594 +757815,178.06,53.087 +757816,176.15,53.567 +757817,180.56,52.126 +757818,178.67,52.587 +757819,176.75,53.036 +757820,174.79,53.471 +757821,179.32,52.163 +757822,177.39,52.58 +757823,175.43,52.984 +757824,173.44,53.375 +757825,178.08,52.202 +757826,176.12,52.573 +757827,174.12,52.933 +757828,172.08,53.279 +757829,176.84,52.24 +757830,174.84,52.567 +757831,172.8,52.881 +757832,170.73,53.182 +757833,175.59,52.279 +757834,173.56,52.56 +757835,171.49,52.83 +757836,169.37,53.085 +757837,174.35,52.318 +757838,172.29,52.554 +757839,170.18,52.778 +757840,168.02,52.987 +757841,173.1,52.358 +757842,171.01,52.548 +757843,168.87,52.726 +757844,166.67,52.889 +757845,171.86,52.397 +757846,169.73,52.542 +757847,167.56,52.674 +757848,165.32,52.791 +757849,170.61,52.437 +757850,168.45,52.536 +757851,166.25,52.622 +757852,163.97,52.692 +757853,169.35,52.476 +757854,167.18,52.53 +757855,164.94,52.569 +757856,162.63,52.593 +757857,168.1,52.516 +757858,165.9,52.524 +757859,163.63,52.517 +757860,161.28,52.494 +757861,166.85,52.556 +757862,164.62,52.518 +757863,162.32,52.465 +757864,159.94,52.395 +757865,165.59,52.596 +757866,163.34,52.512 +757867,161.01,52.413 +757868,158.6,52.295 +757869,164.33,52.636 +757870,162.06,52.506 +757871,159.7,52.36 +757872,157.26,52.196 +757873,163.07,52.675 +757874,160.78,52.5 +757875,158.4,52.308 +757876,155.92,52.096 +757877,161.81,52.715 +757878,159.49,52.494 +757879,157.09,52.256 +757880,154.59,51.997 +757881,160.54,52.754 +757882,158.21,52.488 +757883,155.79,52.204 +757884,153.26,51.897 +757885,159.28,52.794 +757886,156.93,52.482 +757887,154.48,52.151 +757888,151.92,51.798 +757889,158.01,52.833 +757890,155.65,52.476 +757891,153.18,52.099 +757892,150.59,51.698 +757893,156.74,52.872 +757894,154.36,52.47 +757895,151.88,52.047 +757896,149.27,51.599 +757897,155.47,52.91 +757898,153.08,52.464 +757899,150.57,51.995 +757900,147.94,51.5 +757901,154.19,52.949 +757902,151.79,52.458 +757903,149.27,51.943 +757904,146.62,51.401 +757905,152.92,52.987 +757906,150.51,52.451 +757907,147.97,51.891 +757908,145.29,51.302 +757909,151.64,53.024 +757910,149.22,52.445 +757911,146.67,51.839 +757912,143.97,51.204 +757913,150.36,53.061 +757914,147.93,52.438 +757915,145.37,51.788 +757916,142.65,51.106 +757917,149.08,53.098 +757918,146.65,52.432 +757919,144.07,51.736 +757920,141.34,51.008 +757921,147.8,53.134 +757922,145.36,52.425 +757923,142.77,51.685 +757924,140.02,50.911 +757925,146.51,53.17 +757926,144.07,52.418 +757927,141.48,51.634 +757928,138.71,50.814 +757929,145.23,53.205 +757930,142.78,52.41 +757931,140.18,51.583 +757932,137.4,50.718 +757933,143.94,53.239 +757934,141.49,52.403 +757935,138.88,51.532 +757936,136.1,50.622 +757937,142.65,53.273 +757938,140.2,52.395 +757939,137.59,51.481 +757940,134.79,50.526 +757941,141.36,53.307 +757942,138.91,52.388 +757943,136.3,51.431 +757944,133.49,50.432 +757945,140.06,53.339 +757946,137.62,52.38 +757947,135,51.381 +757948,132.19,50.338 +757949,138.77,53.371 +757950,136.32,52.371 +757951,133.71,51.331 +757952,130.89,50.244 +757953,137.47,53.403 +757954,135.03,52.363 +757955,132.42,51.281 +757956,129.59,50.152 +757957,136.17,53.433 +757958,133.74,52.354 +757959,131.13,51.232 +757960,128.3,50.06 +757961,134.87,53.463 +757962,132.45,52.345 +757963,129.84,51.183 +757964,127,49.968 +757965,133.57,53.491 +757966,131.15,52.336 +757967,128.55,51.134 +757968,125.71,49.878 +757969,132.26,53.519 +757970,129.86,52.326 +757971,127.26,51.085 +757972,124.43,49.788 +757973,130.96,53.546 +757974,128.56,52.317 +757975,125.97,51.037 +757976,123.14,49.7 +757977,129.65,53.573 +757978,127.26,52.307 +757979,124.68,50.989 +757980,121.86,49.612 +757981,128.34,53.598 +757982,125.97,52.296 +757983,123.4,50.941 +757984,120.58,49.525 +757985,127.03,53.622 +757986,124.67,52.285 +757987,122.11,50.894 +757988,119.3,49.44 +757989,125.72,53.645 +757990,123.37,52.274 +757991,120.82,50.847 +757992,118.02,49.355 +757993,124.4,53.668 +757994,122.07,52.263 +757995,119.54,50.8 +757996,116.75,49.271 +757997,123.08,53.689 +757998,120.77,52.251 +757999,118.26,50.754 +758000,115.48,49.189 +758001,121.77,53.709 +758002,119.48,52.239 +758003,116.97,50.708 +758004,114.21,49.107 +758005,120.45,53.728 +758006,118.18,52.227 +758007,115.69,50.663 +758008,112.94,49.027 +758009,119.12,53.746 +758010,116.87,52.214 +758011,114.41,50.618 +758012,111.68,48.948 +758013,117.8,53.763 +758014,115.57,52.201 +758015,113.13,50.573 +758016,110.42,48.87 +758017,116.48,53.778 +758018,114.27,52.187 +758019,111.85,50.529 +758020,109.16,48.794 +758021,115.15,53.793 +758022,112.97,52.173 +758023,110.57,50.485 +758024,107.9,48.718 +758025,113.82,53.806 +758026,111.67,52.159 +758027,109.29,50.441 +758028,106.64,48.644 +758029,112.49,53.818 +758030,110.36,52.144 +758031,108.01,50.398 +758032,105.39,48.572 +758033,111.16,53.829 +758034,109.06,52.129 +758035,106.74,50.356 +758036,104.14,48.501 +758037,109.83,53.838 +758038,107.76,52.113 +758039,105.46,50.314 +758040,102.89,48.431 +758041,108.5,53.846 +758042,106.45,52.097 +758043,104.19,50.272 +758044,101.64,48.362 +758045,107.16,53.853 +758046,105.15,52.08 +758047,102.91,50.231 +758048,100.4,48.295 +758049,105.83,53.859 +758050,103.84,52.063 +758051,101.64,50.191 +758052,99.155,48.23 +758053,104.49,53.863 +758054,102.53,52.046 +758055,100.36,50.151 +758056,97.914,48.166 +758057,103.15,53.866 +758058,101.23,52.028 +758059,99.09,50.111 +758060,96.676,48.103 +758061,101.81,53.867 +758062,99.922,52.009 +758063,97.818,50.072 +758064,95.44,48.042 +758065,100.47,53.867 +758066,98.614,51.991 +758067,96.547,50.033 +758068,94.206,47.983 +758069,99.123,53.866 +758070,97.306,51.971 +758071,95.276,49.995 +758072,92.974,47.925 +758073,97.778,53.863 +758074,95.998,51.952 +758075,94.005,49.958 +758076,91.743,47.869 +758077,96.432,53.859 +758078,94.689,51.931 +758079,92.736,49.921 +758080,90.515,47.815 +758081,95.085,53.853 +758082,93.38,51.91 +758083,91.467,49.884 +758084,89.289,47.762 +758085,93.737,53.846 +758086,92.071,51.889 +758087,90.198,49.848 +758088,88.064,47.711 +758089,92.388,53.837 +758090,90.761,51.867 +758091,88.931,49.813 +758092,86.841,47.661 +758093,91.038,53.827 +758094,89.451,51.845 +758095,87.663,49.778 +758096,85.621,47.613 +758097,89.686,53.815 +758098,88.141,51.822 +758099,86.397,49.744 +758100,84.401,47.567 +758101,88.334,53.802 +758102,86.83,51.799 +758103,85.131,49.71 +758104,83.184,47.523 +758105,86.98,53.788 +758106,85.519,51.775 +758107,83.865,49.677 +758108,81.968,47.48 +758109,85.625,53.771 +758110,84.207,51.751 +758111,82.6,49.644 +758112,80.754,47.439 +758113,84.27,53.754 +758114,82.895,51.726 +758115,81.335,49.612 +758116,79.541,47.4 +758117,82.913,53.734 +758118,81.583,51.7 +758119,80.071,49.581 +758120,78.33,47.362 +758121,81.556,53.713 +758122,80.271,51.675 +758123,78.808,49.55 +758124,77.12,47.327 +758125,80.197,53.691 +758126,78.958,51.648 +758127,77.545,49.519 +758128,75.912,47.293 +758129,78.838,53.667 +758130,77.645,51.621 +758131,76.282,49.49 +758132,74.705,47.261 +758133,77.478,53.641 +758134,76.332,51.594 +758135,75.02,49.461 +758136,73.5,47.231 +758137,76.117,53.614 +758138,75.018,51.566 +758139,73.758,49.432 +758140,72.295,47.202 +758141,74.756,53.585 +758142,73.705,51.537 +758143,72.497,49.404 +758144,71.092,47.175 +758145,73.393,53.555 +758146,72.391,51.508 +758147,71.236,49.377 +758148,69.89,47.15 +758149,72.03,53.523 +758150,71.077,51.478 +758151,69.976,49.35 +758152,68.69,47.127 +758153,70.666,53.49 +758154,69.762,51.448 +758155,68.715,49.324 +758156,67.49,47.106 +758157,69.302,53.455 +758158,68.448,51.417 +758159,67.456,49.298 +758160,66.291,47.086 +758161,67.937,53.418 +758162,67.133,51.386 +758163,66.196,49.273 +758164,65.093,47.068 +758165,66.572,53.38 +758166,65.819,51.354 +758167,64.937,49.248 +758168,63.896,47.052 +758169,65.206,53.34 +758170,64.504,51.322 +758171,63.678,49.225 +758172,62.7,47.038 +758173,63.839,53.298 +758174,63.189,51.289 +758175,62.42,49.201 +758176,61.504,47.025 +758177,62.472,53.255 +758178,61.873,51.256 +758179,61.162,49.179 +758180,60.31,47.015 +758181,61.104,53.211 +758182,60.558,51.222 +758183,59.904,49.156 +758184,59.115,47.006 +758185,59.737,53.165 +758186,59.243,51.187 +758187,58.646,49.135 +758188,57.922,46.998 +758189,58.368,53.117 +758190,57.927,51.152 +758191,57.388,49.114 +758192,56.729,46.993 +758193,57,53.068 +758194,56.612,51.117 +758195,56.131,49.093 +758196,55.536,46.989 +758197,55.631,53.017 +758198,55.297,51.081 +758199,54.874,49.073 +758200,54.344,46.987 +758201,54.262,52.965 +758202,53.981,51.044 +758203,53.617,49.054 +758204,53.152,46.987 +758205,52.892,52.911 +758206,52.666,51.007 +758207,52.36,49.035 +758208,51.96,46.988 +758209,51.523,52.855 +758210,51.35,50.97 +758211,51.104,49.017 +758212,50.769,46.991 +758213,50.153,52.799 +758214,50.034,50.932 +758215,49.847,48.999 +758216,49.577,46.995 +758217,48.783,52.74 +758218,48.719,50.893 +758219,48.591,48.982 +758220,48.386,47.002 +758221,47.413,52.68 +758222,47.404,50.854 +758223,47.335,48.966 +758224,47.195,47.009 +758225,46.043,52.619 +758226,46.088,50.815 +758227,46.079,48.95 +758228,46.004,47.019 +758229,44.673,52.556 +758230,44.773,50.775 +758231,44.823,48.934 +758232,44.812,47.03 +758233,43.303,52.492 +758234,43.458,50.734 +758235,43.567,48.919 +758236,43.621,47.042 +758237,41.933,52.426 +758238,42.143,50.693 +758239,42.31,48.905 +758240,42.429,47.056 +758241,40.563,52.359 +758242,40.828,50.652 +758243,41.054,48.891 +758244,41.237,47.072 +758245,39.194,52.29 +758246,39.513,50.61 +758247,39.798,48.877 +758248,40.045,47.088 +758249,37.824,52.22 +758250,38.198,50.568 +758251,38.542,48.864 +758252,38.852,47.107 +758253,36.455,52.149 +758254,36.883,50.525 +758255,37.286,48.852 +758256,37.659,47.127 +758257,35.086,52.076 +758258,35.569,50.482 +758259,36.03,48.84 +758260,36.465,47.148 +758261,33.717,52.002 +758262,34.255,50.438 +758263,34.774,48.828 +758264,35.271,47.171 +758265,32.348,51.926 +758266,32.941,50.394 +758267,33.518,48.817 +758268,34.076,47.194 +758269,30.98,51.85 +758270,31.627,50.349 +758271,32.261,48.807 +758272,32.881,47.22 +758273,29.612,51.772 +758274,30.314,50.305 +758275,31.005,48.797 +758276,31.685,47.246 +758277,28.245,51.693 +758278,29,50.259 +758279,29.748,48.787 +758280,30.488,47.274 +758281,26.878,51.612 +758282,27.687,50.214 +758283,28.491,48.778 +758284,29.29,47.303 +758285,25.512,51.53 +758286,26.374,50.167 +758287,27.234,48.769 +758288,28.091,47.333 +758289,24.146,51.447 +758290,25.062,50.121 +758291,25.977,48.76 +758292,26.892,47.365 +758293,22.781,51.363 +758294,23.75,50.074 +758295,24.72,48.752 +758296,25.691,47.397 +758297,21.416,51.278 +758298,22.438,50.027 +758299,23.462,48.745 +758300,24.49,47.431 +758301,20.052,51.192 +758302,21.126,49.979 +758303,22.205,48.737 +758304,23.287,47.465 +758305,18.689,51.104 +758306,19.815,49.932 +758307,20.947,48.73 +758308,22.084,47.501 +758309,17.326,51.016 +758310,18.504,49.883 +758311,19.688,48.724 +758312,20.879,47.538 +758313,15.964,50.926 +758314,17.194,49.835 +758315,18.43,48.718 +758316,19.673,47.575 +758317,14.603,50.836 +758318,15.884,49.786 +758319,17.171,48.712 +758320,18.466,47.614 +758321,13.243,50.744 +758322,14.574,49.737 +758323,15.912,48.706 +758324,17.257,47.653 +758325,11.883,50.652 +758326,13.265,49.687 +758327,14.653,48.701 +758328,16.048,47.694 +758329,10.525,50.558 +758330,11.956,49.638 +758331,13.393,48.696 +758332,14.837,47.735 +758333,9.1673,50.464 +758334,10.648,49.588 +758335,12.133,48.692 +758336,13.624,47.777 +758337,7.8107,50.369 +758338,9.3397,49.537 +758339,10.873,48.687 +758340,12.41,47.819 +758341,6.4552,50.273 +758342,8.0322,49.487 +758343,9.6118,48.683 +758344,11.195,47.863 +758345,5.1007,50.176 +758346,6.7252,49.436 +758347,8.3507,48.679 +758348,9.9784,47.907 +758349,3.7473,50.079 +758350,5.4186,49.385 +758351,7.0892,48.676 +758352,8.7602,47.951 +758353,2.395,49.98 +758354,4.1126,49.334 +758355,5.8273,48.673 +758356,7.5404,47.996 +758357,1.0439,49.881 +758358,2.8071,49.283 +758359,4.565,48.669 +758360,6.3191,48.042 +758361,359.69,49.782 +758362,1.5021,49.231 +758363,3.3023,48.667 +758364,5.0962,48.088 +758365,358.35,49.681 +758366,0.19763,49.18 +758367,2.0392,48.664 +758368,3.8717,48.135 +758369,357,49.58 +758370,358.89,49.128 +758371,0.77567,48.661 +758372,2.6455,48.182 +758373,355.65,49.479 +758374,357.59,49.076 +758375,359.51,48.659 +758376,1.4177,48.23 +758377,354.31,49.377 +758378,356.29,49.024 +758379,358.25,48.657 +758380,0.18821,48.278 +758381,352.96,49.275 +758382,354.99,48.972 +758383,356.98,48.655 +758384,358.96,48.326 +758385,351.62,49.172 +758386,353.68,48.919 +758387,355.72,48.653 +758388,357.72,48.375 +758389,350.28,49.068 +758390,352.38,48.867 +758391,354.45,48.651 +758392,356.49,48.424 +758393,348.94,48.965 +758394,351.08,48.814 +758395,353.18,48.65 +758396,355.25,48.472 +758397,347.61,48.861 +758398,349.78,48.762 +758399,351.92,48.648 +758400,354.01,48.522 +758401,346.27,48.756 +758402,348.48,48.709 +758403,350.65,48.647 +758404,352.77,48.571 +758405,344.93,48.652 +758406,347.18,48.656 +758407,349.38,48.645 +758408,351.53,48.62 +758409,343.6,48.547 +758410,345.89,48.604 +758411,348.11,48.644 +758412,350.29,48.67 +758413,342.27,48.442 +758414,344.59,48.551 +758415,346.85,48.643 +758416,349.04,48.719 +758417,340.94,48.337 +758418,343.29,48.498 +758419,345.58,48.641 +758420,347.8,48.769 +758421,339.61,48.232 +758422,342,48.445 +758423,344.31,48.64 +758424,346.55,48.818 +758425,338.29,48.126 +758426,340.7,48.393 +758427,343.04,48.639 +758428,345.3,48.867 +758429,336.96,48.021 +758430,339.41,48.34 +758431,341.76,48.638 +758432,344.04,48.916 +758433,335.64,47.916 +758434,338.11,48.288 +758435,340.49,48.636 +758436,342.79,48.965 +758437,334.32,47.811 +758438,336.82,48.235 +758439,339.22,48.635 +758440,341.53,49.014 +758441,333,47.706 +758442,335.53,48.183 +758443,337.95,48.634 +758444,340.27,49.062 +758445,331.69,47.601 +758446,334.24,48.13 +758447,336.67,48.632 +758448,339.01,49.11 +758449,330.37,47.496 +758450,332.95,48.078 +758451,335.4,48.631 +758452,337.75,49.158 +758453,329.06,47.392 +758454,331.66,48.026 +758455,334.13,48.629 +758456,336.49,49.205 +758457,327.75,47.287 +758458,330.37,47.974 +758459,332.85,48.628 +758460,335.22,49.252 +758461,326.44,47.184 +758462,329.08,47.922 +758463,331.58,48.626 +758464,333.95,49.299 +758465,325.13,47.08 +758466,327.79,47.87 +758467,330.3,48.624 +758468,332.68,49.345 +758469,323.83,46.977 +758470,326.5,47.819 +758471,329.02,48.622 +758472,331.41,49.391 +758473,322.53,46.874 +758474,325.22,47.768 +758475,327.75,48.62 +758476,330.14,49.436 +758477,321.23,46.772 +758478,323.93,47.716 +758479,326.47,48.618 +758480,328.86,49.48 +758481,319.93,46.671 +758482,322.65,47.666 +758483,325.19,48.615 +758484,327.59,49.524 +758485,318.63,46.57 +758486,321.36,47.615 +758487,323.91,48.612 +758488,326.31,49.567 +758489,317.34,46.469 +758490,320.08,47.565 +758491,322.63,48.609 +758492,325.03,49.61 +758493,316.05,46.37 +758494,318.8,47.514 +758495,321.35,48.606 +758496,323.74,49.651 +758497,314.76,46.271 +758498,317.51,47.465 +758499,320.07,48.603 +758500,322.46,49.692 +758501,313.47,46.173 +758502,316.23,47.415 +758503,318.79,48.599 +758504,321.17,49.733 +758505,312.18,46.075 +758506,314.95,47.366 +758507,317.51,48.596 +758508,319.88,49.772 +758509,310.9,45.979 +758510,313.67,47.317 +758511,316.22,48.592 +758512,318.59,49.811 +758513,309.62,45.883 +758514,312.39,47.268 +758515,314.94,48.587 +758516,317.3,49.848 +758517,308.34,45.788 +758518,311.12,47.22 +758519,313.66,48.583 +758520,316.01,49.885 +758521,307.07,45.694 +758522,309.84,47.172 +758523,312.37,48.578 +758524,314.71,49.921 +758525,305.79,45.602 +758526,308.56,47.124 +758527,311.09,48.573 +758528,313.42,49.956 +758529,304.52,45.51 +758530,307.29,47.077 +758531,309.8,48.567 +758532,312.12,49.989 +758533,303.25,45.419 +758534,306.01,47.03 +758535,308.52,48.561 +758536,310.82,50.022 +758537,301.99,45.33 +758538,304.74,46.984 +758539,307.23,48.555 +758540,309.52,50.054 +758541,300.72,45.241 +758542,303.47,46.938 +758543,305.95,48.549 +758544,308.21,50.085 +758545,299.46,45.154 +758546,302.19,46.892 +758547,304.66,48.542 +758548,306.91,50.114 +758549,298.2,45.068 +758550,300.92,46.847 +758551,303.37,48.535 +758552,305.6,50.143 +758553,296.94,44.984 +758554,299.65,46.803 +758555,302.08,48.527 +758556,304.29,50.17 +758557,295.69,44.9 +758558,298.38,46.758 +758559,300.79,48.519 +758560,302.98,50.196 +758561,294.44,44.818 +758562,297.11,46.715 +758563,299.5,48.511 +758564,301.67,50.221 +758565,293.19,44.738 +758566,295.84,46.671 +758567,298.21,48.502 +758568,300.36,50.244 +758569,291.94,44.659 +758570,294.58,46.628 +758571,296.92,48.493 +758572,299.04,50.266 +758573,290.69,44.581 +758574,293.31,46.586 +758575,295.63,48.483 +758576,297.72,50.287 +758577,289.45,44.505 +758578,292.04,46.544 +758579,294.34,48.473 +758580,296.41,50.307 +758581,288.21,44.43 +758582,290.78,46.503 +758583,293.05,48.463 +758584,295.09,50.325 +758585,286.97,44.357 +758586,289.51,46.462 +758587,291.75,48.452 +758588,293.77,50.342 +758589,285.73,44.286 +758590,288.25,46.422 +758591,290.46,48.44 +758592,292.44,50.358 +758593,284.5,44.216 +758594,286.98,46.383 +758595,289.17,48.429 +758596,291.12,50.372 +758597,283.27,44.148 +758598,285.72,46.343 +758599,287.87,48.416 +758600,289.8,50.385 +758601,282.04,44.081 +758602,284.46,46.305 +758603,286.58,48.404 +758604,288.47,50.396 +758605,280.81,44.017 +758606,283.2,46.267 +758607,285.29,48.39 +758608,287.14,50.406 +758609,279.58,43.954 +758610,281.94,46.23 +758611,283.99,48.377 +758612,285.81,50.415 +758613,278.36,43.892 +758614,280.68,46.193 +758615,282.69,48.362 +758616,284.48,50.422 +758617,277.14,43.833 +758618,279.42,46.157 +758619,281.4,48.348 +758620,283.15,50.427 +758621,275.92,43.775 +758622,278.16,46.121 +758623,280.1,48.333 +758624,281.82,50.431 +758625,274.7,43.719 +758626,276.9,46.086 +758627,278.81,48.317 +758628,280.49,50.433 +758629,273.48,43.666 +758630,275.64,46.052 +758631,277.51,48.301 +758632,279.15,50.434 +758633,272.27,43.613 +758634,274.39,46.018 +758635,276.21,48.284 +758636,277.81,50.434 +758637,271.06,43.563 +758638,273.13,45.985 +758639,274.91,48.267 +758640,276.48,50.431 +758641,269.85,43.515 +758642,271.87,45.952 +758643,273.61,48.249 +758644,275.14,50.427 +758645,268.64,43.469 +758646,270.62,45.92 +758647,272.32,48.231 +758648,273.8,50.422 +758649,267.43,43.424 +758650,269.36,45.889 +758651,271.02,48.212 +758652,272.46,50.415 +758653,266.23,43.382 +758654,268.11,45.859 +758655,269.72,48.192 +758656,271.12,50.406 +758657,265.03,43.341 +758658,266.86,45.829 +758659,268.42,48.173 +758660,269.78,50.396 +758661,263.82,43.303 +758662,265.6,45.799 +758663,267.12,48.152 +758664,268.43,50.383 +758665,262.62,43.267 +758666,264.35,45.771 +758667,265.82,48.131 +758668,267.09,50.37 +758669,261.43,43.232 +758670,263.1,45.743 +758671,264.52,48.109 +758672,265.74,50.354 +758673,260.23,43.2 +758674,261.85,45.716 +758675,263.22,48.087 +758676,264.4,50.337 +758677,259.03,43.169 +758678,260.6,45.689 +758679,261.92,48.065 +758680,263.05,50.319 +758681,257.84,43.141 +758682,259.35,45.663 +758683,260.62,48.041 +758684,261.71,50.298 +758685,256.65,43.115 +758686,258.1,45.638 +758687,259.32,48.018 +758688,260.36,50.276 +758689,255.45,43.09 +758690,256.85,45.613 +758691,258.01,47.993 +758692,259.01,50.253 +758693,254.26,43.068 +758694,255.6,45.589 +758695,256.71,47.968 +758696,257.66,50.227 +758697,253.08,43.048 +758698,254.35,45.566 +758699,255.41,47.943 +758700,256.31,50.2 +758701,251.89,43.03 +758702,253.1,45.543 +758703,254.11,47.917 +758704,254.96,50.171 +758705,250.7,43.014 +758706,251.85,45.522 +758707,252.81,47.89 +758708,253.61,50.141 +758709,249.51,43 +758710,250.6,45.5 +758711,251.5,47.863 +758712,252.26,50.109 +758713,248.33,42.988 +758714,249.36,45.48 +758715,250.2,47.835 +758716,250.91,50.075 +758717,247.14,42.978 +758718,248.11,45.46 +758719,248.9,47.807 +758720,249.55,50.039 +758721,245.96,42.97 +758722,246.86,45.441 +758723,247.6,47.778 +758724,248.2,50.002 +758725,244.78,42.964 +758726,245.62,45.422 +758727,246.29,47.749 +758728,246.85,49.963 +758729,243.59,42.96 +758730,244.37,45.404 +758731,244.99,47.719 +758732,245.49,49.923 +758733,242.41,42.958 +758734,243.12,45.387 +758735,243.69,47.689 +758736,244.14,49.88 +758737,241.23,42.958 +758738,241.88,45.37 +758739,242.39,47.658 +758740,242.79,49.836 +758741,240.05,42.96 +758742,240.63,45.355 +758743,241.08,47.626 +758744,241.43,49.791 +758745,238.87,42.964 +758746,239.39,45.339 +758747,239.78,47.594 +758748,240.08,49.743 +758749,237.69,42.969 +758750,238.14,45.325 +758751,238.48,47.561 +758752,238.72,49.694 +758753,236.51,42.977 +758754,236.9,45.311 +758755,237.17,47.528 +758756,237.37,49.644 +758757,235.33,42.987 +758758,235.65,45.298 +758759,235.87,47.494 +758760,236.01,49.592 +758761,234.15,42.998 +758762,234.41,45.285 +758763,234.57,47.46 +758764,234.66,49.538 +758765,232.97,43.012 +758766,233.16,45.273 +758767,233.27,47.425 +758768,233.3,49.482 +758769,231.79,43.027 +758770,231.92,45.261 +758771,231.96,47.39 +758772,231.95,49.425 +758773,230.61,43.044 +758774,230.67,45.251 +758775,230.66,47.354 +758776,230.59,49.367 +758777,229.43,43.063 +758778,229.43,45.24 +758779,229.36,47.318 +758780,229.24,49.306 +758781,228.25,43.083 +758782,228.18,45.231 +758783,228.06,47.281 +758784,227.88,49.245 +758785,227.07,43.106 +758786,226.94,45.222 +758787,226.75,47.244 +758788,226.53,49.181 +758789,225.89,43.13 +758790,225.69,45.214 +758791,225.45,47.206 +758792,225.17,49.116 +758793,224.71,43.156 +758794,224.45,45.206 +758795,224.15,47.168 +758796,223.82,49.05 +758797,223.53,43.183 +758798,223.21,45.199 +758799,222.85,47.129 +758800,222.46,48.982 +758801,222.34,43.212 +758802,221.96,45.192 +758803,221.55,47.09 +758804,221.11,48.913 +758805,221.16,43.243 +758806,220.72,45.186 +758807,220.25,47.05 +758808,219.76,48.842 +758809,219.98,43.275 +758810,219.47,45.18 +758811,218.94,47.01 +758812,218.4,48.77 +758813,218.79,43.309 +758814,218.23,45.175 +758815,217.64,46.969 +758816,217.05,48.696 +758817,217.61,43.344 +758818,216.98,45.171 +758819,216.34,46.928 +758820,215.7,48.621 +758821,216.42,43.381 +758822,215.74,45.167 +758823,215.04,46.887 +758824,214.35,48.544 +758825,215.24,43.419 +758826,214.49,45.164 +758827,213.74,46.845 +758828,212.99,48.466 +758829,214.05,43.458 +758830,213.25,45.161 +758831,212.44,46.802 +758832,211.64,48.387 +758833,212.86,43.499 +758834,212,45.158 +758835,211.14,46.76 +758836,210.29,48.306 +758837,211.67,43.541 +758838,210.75,45.157 +758839,209.84,46.716 +758840,208.94,48.225 +758841,210.48,43.585 +758842,209.51,45.155 +758843,208.55,46.673 +758844,207.59,48.141 +758845,209.29,43.63 +758846,208.26,45.154 +758847,207.25,46.629 +758848,206.25,48.057 +758849,208.1,43.675 +758850,207.02,45.154 +758851,205.95,46.585 +758852,204.9,47.971 +758853,206.9,43.723 +758854,205.77,45.154 +758855,204.65,46.54 +758856,203.55,47.885 +758857,205.71,43.771 +758858,204.52,45.154 +758859,203.35,46.495 +758860,202.21,47.797 +758861,204.51,43.82 +758862,203.27,45.155 +758863,202.06,46.45 +758864,200.86,47.708 +758865,203.32,43.871 +758866,202.03,45.156 +758867,200.76,46.404 +758868,199.52,47.617 +758869,202.12,43.922 +758870,200.78,45.158 +758871,199.46,46.359 +758872,198.17,47.526 +758873,200.92,43.975 +758874,199.53,45.16 +758875,198.17,46.312 +758876,196.83,47.434 +758877,199.71,44.028 +758878,198.28,45.162 +758879,196.87,46.266 +758880,195.49,47.34 +758881,198.51,44.082 +758882,197.03,45.165 +758883,195.58,46.219 +758884,194.15,47.246 +758885,197.31,44.137 +758886,195.78,45.168 +758887,194.28,46.172 +758888,192.81,47.15 +758889,196.1,44.193 +758890,194.53,45.171 +758891,192.99,46.125 +758892,191.47,47.054 +758893,194.89,44.25 +758894,193.28,45.175 +758895,191.7,46.077 +758896,190.13,46.957 +758897,193.68,44.307 +758898,192.03,45.179 +758899,190.4,46.03 +758900,188.79,46.859 +758901,192.47,44.365 +758902,190.78,45.183 +758903,189.11,45.982 +758904,187.46,46.76 +758905,191.26,44.424 +758906,189.53,45.188 +758907,187.82,45.933 +758908,186.13,46.66 +758909,190.04,44.483 +758910,188.28,45.193 +758911,186.53,45.885 +758912,184.79,46.56 +758913,188.83,44.543 +758914,187.03,45.198 +758915,185.24,45.836 +758916,183.46,46.459 +758917,187.61,44.603 +758918,185.77,45.203 +758919,183.95,45.788 +758920,182.13,46.357 +758921,186.39,44.664 +758922,184.52,45.209 +758923,182.66,45.739 +758924,180.8,46.255 +758925,185.17,44.726 +758926,183.27,45.214 +758927,181.37,45.69 +758928,179.48,46.152 +758929,183.94,44.787 +758930,182.01,45.22 +758931,180.08,45.641 +758932,178.15,46.048 +758933,182.72,44.849 +758934,180.76,45.226 +758935,178.79,45.592 +758936,176.82,45.944 +758937,181.49,44.911 +758938,179.5,45.233 +758939,177.51,45.542 +758940,175.5,45.839 +758941,180.26,44.974 +758942,178.25,45.239 +758943,176.22,45.493 +758944,174.18,45.734 +758945,179.03,45.036 +758946,176.99,45.246 +758947,174.93,45.444 +758948,172.86,45.629 +758949,177.8,45.099 +758950,175.74,45.253 +758951,173.65,45.394 +758952,171.54,45.523 +758953,176.57,45.162 +758954,174.48,45.259 +758955,172.36,45.345 +758956,170.22,45.417 +758957,175.33,45.225 +758958,173.22,45.266 +758959,171.08,45.295 +758960,168.91,45.31 +758961,174.09,45.288 +758962,171.96,45.273 +758963,169.8,45.245 +758964,167.6,45.203 +758965,172.85,45.351 +758966,170.7,45.281 +758967,168.51,45.196 +758968,166.28,45.096 +758969,171.61,45.415 +758970,169.44,45.288 +758971,167.23,45.146 +758972,164.97,44.989 +758973,170.37,45.477 +758974,168.18,45.295 +758975,165.95,45.097 +758976,163.67,44.882 +758977,169.12,45.54 +758978,166.92,45.302 +758979,164.67,45.048 +758980,162.36,44.775 +758981,167.87,45.603 +758982,165.66,45.309 +758983,163.39,44.998 +758984,161.06,44.668 +758985,166.63,45.665 +758986,164.4,45.317 +758987,162.11,44.949 +758988,159.75,44.561 +758989,165.37,45.727 +758990,163.14,45.324 +758991,160.83,44.9 +758992,158.45,44.454 +758993,164.12,45.789 +758994,161.88,45.331 +758995,159.56,44.851 +758996,157.15,44.346 +758997,162.87,45.851 +758998,160.61,45.338 +758999,158.28,44.802 +759000,155.86,44.24 +759001,161.61,45.912 +759002,159.35,45.345 +759003,157,44.753 +759004,154.56,44.133 +759005,160.35,45.973 +759006,158.08,45.352 +759007,155.73,44.704 +759008,153.27,44.027 +759009,159.09,46.033 +759010,156.82,45.359 +759011,154.45,44.656 +759012,151.98,43.921 +759013,157.83,46.093 +759014,155.55,45.366 +759015,153.18,44.608 +759016,150.69,43.815 +759017,156.56,46.152 +759018,154.29,45.373 +759019,151.91,44.56 +759020,149.4,43.71 +759021,155.29,46.21 +759022,153.02,45.379 +759023,150.63,44.512 +759024,148.11,43.605 +759025,154.03,46.268 +759026,151.75,45.386 +759027,149.36,44.464 +759028,146.83,43.5 +759029,152.76,46.326 +759030,150.49,45.392 +759031,148.09,44.417 +759032,145.55,43.396 +759033,151.48,46.382 +759034,149.22,45.398 +759035,146.82,44.37 +759036,144.27,43.293 +759037,150.21,46.438 +759038,147.95,45.404 +759039,145.55,44.323 +759040,143,43.191 +759041,148.93,46.494 +759042,146.68,45.41 +759043,144.28,44.277 +759044,141.72,43.089 +759045,147.66,46.548 +759046,145.41,45.415 +759047,143.02,44.23 +759048,140.45,42.987 +759049,146.38,46.602 +759050,144.14,45.42 +759051,141.75,44.185 +759052,139.18,42.887 +759053,145.1,46.654 +759054,142.87,45.426 +759055,140.48,44.139 +759056,137.91,42.787 +759057,143.81,46.706 +759058,141.6,45.43 +759059,139.22,44.094 +759060,136.65,42.689 +759061,142.53,46.757 +759062,140.32,45.435 +759063,137.95,44.049 +759064,135.38,42.591 +759065,141.24,46.807 +759066,139.05,45.439 +759067,136.69,44.005 +759068,134.12,42.494 +759069,139.96,46.856 +759070,137.78,45.443 +759071,135.43,43.961 +759072,132.86,42.398 +759073,138.67,46.904 +759074,136.5,45.447 +759075,134.16,43.917 +759076,131.61,42.303 +759077,137.38,46.951 +759078,135.23,45.45 +759079,132.9,43.874 +759080,130.35,42.21 +759081,136.08,46.996 +759082,133.95,45.453 +759083,131.64,43.831 +759084,129.1,42.117 +759085,134.79,47.041 +759086,132.68,45.456 +759087,130.38,43.789 +759088,127.85,42.026 +759089,133.49,47.085 +759090,131.4,45.459 +759091,129.12,43.747 +759092,126.6,41.936 +759093,132.19,47.127 +759094,130.12,45.461 +759095,127.86,43.706 +759096,125.36,41.847 +759097,130.89,47.168 +759098,128.85,45.462 +759099,126.6,43.665 +759100,124.11,41.76 +759101,129.59,47.208 +759102,127.57,45.464 +759103,125.35,43.624 +759104,122.87,41.674 +759105,128.29,47.247 +759106,126.29,45.465 +759107,124.09,43.584 +759108,121.63,41.589 +759109,126.99,47.284 +759110,125.01,45.465 +759111,122.83,43.545 +759112,120.4,41.506 +759113,125.68,47.32 +759114,123.73,45.465 +759115,121.58,43.506 +759116,119.16,41.424 +759117,124.38,47.355 +759118,122.45,45.465 +759119,120.32,43.468 +759120,117.93,41.344 +759121,123.07,47.388 +759122,121.17,45.465 +759123,119.07,43.43 +759124,116.7,41.265 +759125,121.76,47.42 +759126,119.89,45.463 +759127,117.82,43.393 +759128,115.47,41.188 +759129,120.45,47.451 +759130,118.61,45.462 +759131,116.57,43.357 +759132,114.25,41.113 +759133,119.14,47.48 +759134,117.33,45.46 +759135,115.31,43.321 +759136,113.03,41.039 +759137,117.82,47.507 +759138,116.05,45.457 +759139,114.06,43.285 +759140,111.8,40.968 +759141,116.51,47.534 +759142,114.77,45.455 +759143,112.81,43.251 +759144,110.59,40.897 +759145,115.19,47.558 +759146,113.48,45.451 +759147,111.56,43.217 +759148,109.37,40.829 +759149,113.87,47.581 +759150,112.2,45.447 +759151,110.32,43.183 +759152,108.15,40.763 +759153,112.56,47.603 +759154,110.92,45.443 +759155,109.07,43.15 +759156,106.94,40.698 +759157,111.24,47.623 +759158,109.63,45.438 +759159,107.82,43.118 +759160,105.73,40.636 +759161,109.92,47.642 +759162,108.35,45.433 +759163,106.57,43.087 +759164,104.52,40.575 +759165,108.59,47.659 +759166,107.06,45.427 +759167,105.33,43.056 +759168,103.31,40.516 +759169,107.27,47.674 +759170,105.78,45.421 +759171,104.08,43.026 +759172,102.11,40.459 +759173,105.95,47.688 +759174,104.49,45.414 +759175,102.83,42.996 +759176,100.91,40.405 +759177,104.62,47.7 +759178,103.21,45.406 +759179,101.59,42.967 +759180,99.705,40.352 +759181,103.3,47.71 +759182,101.92,45.398 +759183,100.35,42.939 +759184,98.506,40.302 +759185,101.97,47.719 +759186,100.63,45.39 +759187,99.102,42.912 +759188,97.308,40.253 +759189,100.64,47.726 +759190,99.346,45.381 +759191,97.859,42.885 +759192,96.112,40.207 +759193,99.313,47.732 +759194,98.059,45.371 +759195,96.617,42.859 +759196,94.918,40.162 +759197,97.983,47.735 +759198,96.772,45.361 +759199,95.375,42.834 +759200,93.725,40.12 +759201,96.653,47.737 +759202,95.484,45.351 +759203,94.133,42.81 +759204,92.534,40.081 +759205,95.322,47.738 +759206,94.196,45.339 +759207,92.892,42.786 +759208,91.344,40.043 +759209,93.99,47.736 +759210,92.908,45.328 +759211,91.652,42.763 +759212,90.156,40.008 +759213,92.657,47.733 +759214,91.62,45.315 +759215,90.411,42.741 +759216,88.969,39.974 +759217,91.324,47.728 +759218,90.331,45.302 +759219,89.172,42.719 +759220,87.783,39.943 +759221,89.99,47.722 +759222,89.042,45.289 +759223,87.932,42.698 +759224,86.599,39.915 +759225,88.656,47.713 +759226,87.753,45.275 +759227,86.693,42.678 +759228,85.416,39.888 +759229,87.32,47.703 +759230,86.464,45.26 +759231,85.455,42.659 +759232,84.234,39.864 +759233,85.985,47.691 +759234,85.175,45.245 +759235,84.217,42.64 +759236,83.054,39.842 +759237,84.649,47.678 +759238,83.886,45.229 +759239,82.979,42.623 +759240,81.874,39.823 +759241,83.312,47.662 +759242,82.596,45.213 +759243,81.741,42.606 +759244,80.695,39.805 +759245,81.975,47.645 +759246,81.306,45.196 +759247,80.504,42.589 +759248,79.518,39.79 +759249,80.637,47.626 +759250,80.016,45.179 +759251,79.267,42.574 +759252,78.341,39.777 +759253,79.299,47.605 +759254,78.727,45.16 +759255,78.03,42.559 +759256,77.165,39.767 +759257,77.961,47.582 +759258,77.437,45.142 +759259,76.794,42.545 +759260,75.989,39.759 +759261,76.623,47.558 +759262,76.146,45.123 +759263,75.558,42.532 +759264,74.815,39.753 +759265,75.284,47.532 +759266,74.856,45.103 +759267,74.322,42.52 +759268,73.64,39.749 +759269,73.945,47.504 +759270,73.566,45.082 +759271,73.086,42.508 +759272,72.467,39.748 +759273,72.605,47.474 +759274,72.276,45.061 +759275,71.851,42.497 +759276,71.294,39.749 +759277,71.266,47.443 +759278,70.986,45.04 +759279,70.615,42.487 +759280,70.121,39.752 +759281,69.926,47.41 +759282,69.696,45.018 +759283,69.38,42.477 +759284,68.949,39.758 +759285,68.587,47.375 +759286,68.405,44.995 +759287,68.145,42.469 +759288,67.776,39.765 +759289,67.247,47.338 +759290,67.115,44.972 +759291,66.91,42.461 +759292,66.605,39.775 +759293,65.907,47.299 +759294,65.825,44.948 +759295,65.675,42.454 +759296,65.433,39.787 +759297,64.567,47.259 +759298,64.535,44.924 +759299,64.44,42.447 +759300,64.261,39.801 +759301,63.228,47.217 +759302,63.245,44.899 +759303,63.206,42.441 +759304,63.089,39.818 +759305,61.888,47.174 +759306,61.955,44.873 +759307,61.971,42.436 +759308,61.917,39.836 +759309,60.548,47.128 +759310,60.665,44.847 +759311,60.736,42.432 +759312,60.745,39.857 +759313,59.209,47.081 +759314,59.376,44.821 +759315,59.502,42.429 +759316,59.573,39.88 +759317,57.87,47.032 +759318,58.086,44.794 +759319,58.267,42.426 +759320,58.4,39.905 +759321,56.531,46.982 +759322,56.797,44.766 +759323,57.032,42.424 +759324,57.228,39.932 +759325,55.192,46.93 +759326,55.507,44.738 +759327,55.798,42.422 +759328,56.054,39.961 +759329,53.854,46.876 +759330,54.218,44.709 +759331,54.563,42.421 +759332,54.88,39.992 +759333,52.516,46.821 +759334,52.929,44.68 +759335,53.328,42.421 +759336,53.706,40.024 +759337,51.178,46.764 +759338,51.641,44.65 +759339,52.093,42.422 +759340,52.531,40.059 +759341,49.841,46.705 +759342,50.352,44.62 +759343,50.858,42.423 +759344,51.356,40.096 +759345,48.504,46.645 +759346,49.064,44.59 +759347,49.623,42.425 +759348,50.179,40.135 +759349,47.167,46.583 +759350,47.776,44.558 +759351,48.388,42.428 +759352,49.002,40.175 +759353,45.831,46.52 +759354,46.488,44.527 +759355,47.152,42.431 +759356,47.825,40.217 +759357,44.496,46.455 +759358,45.2,44.495 +759359,45.916,42.435 +759360,46.646,40.261 +759361,43.161,46.388 +759362,43.913,44.462 +759363,44.681,42.44 +759364,45.466,40.307 +759365,41.827,46.321 +759366,42.626,44.429 +759367,43.444,42.445 +759368,44.285,40.354 +759369,40.494,46.251 +759370,41.34,44.395 +759371,42.208,42.45 +759372,43.104,40.404 +759373,39.161,46.18 +759374,40.053,44.362 +759375,40.972,42.457 +759376,41.921,40.454 +759377,37.829,46.108 +759378,38.767,44.327 +759379,39.735,42.464 +759380,40.737,40.507 +759381,36.497,46.034 +759382,37.482,44.292 +759383,38.498,42.471 +759384,39.551,40.56 +759385,35.167,45.959 +759386,36.196,44.257 +759387,37.26,42.479 +759388,38.365,40.616 +759389,33.837,45.883 +759390,34.911,44.222 +759391,36.023,42.488 +759392,37.177,40.673 +759393,32.508,45.805 +759394,33.627,44.186 +759395,34.785,42.497 +759396,35.988,40.731 +759397,31.18,45.726 +759398,32.343,44.149 +759399,33.546,42.506 +759400,34.797,40.79 +759401,29.853,45.646 +759402,31.059,44.113 +759403,32.308,42.517 +759404,33.605,40.851 +759405,28.527,45.564 +759406,29.776,44.076 +759407,31.068,42.527 +759408,32.412,40.913 +759409,27.202,45.481 +759410,28.493,44.038 +759411,29.829,42.538 +759412,31.217,40.977 +759413,25.877,45.397 +759414,27.21,44 +759415,28.589,42.55 +759416,30.021,41.042 +759417,24.554,45.312 +759418,25.929,43.962 +759419,27.349,42.562 +759420,28.823,41.107 +759421,23.232,45.226 +759422,24.647,43.924 +759423,26.108,42.575 +759424,27.623,41.174 +759425,21.912,45.138 +759426,23.366,43.885 +759427,24.867,42.588 +759428,26.422,41.242 +759429,20.592,45.05 +759430,22.086,43.846 +759431,23.626,42.601 +759432,25.219,41.311 +759433,19.273,44.96 +759434,20.805,43.807 +759435,22.384,42.615 +759436,24.014,41.381 +759437,17.956,44.87 +759438,19.526,43.768 +759439,21.142,42.629 +759440,22.808,41.452 +759441,16.64,44.778 +759442,18.247,43.728 +759443,19.899,42.643 +759444,21.6,41.524 +759445,15.325,44.686 +759446,16.969,43.688 +759447,18.655,42.658 +759448,20.39,41.596 +759449,14.012,44.593 +759450,15.691,43.648 +759451,17.411,42.674 +759452,19.179,41.669 +759453,12.7,44.498 +759454,14.413,43.607 +759455,16.167,42.689 +759456,17.965,41.743 +759457,11.389,44.403 +759458,13.137,43.567 +759459,14.922,42.705 +759460,16.75,41.818 +759461,10.08,44.308 +759462,11.86,43.526 +759463,13.677,42.721 +759464,15.533,41.893 +759465,8.7722,44.211 +759466,10.585,43.485 +759467,12.431,42.738 +759468,14.314,41.969 +759469,7.4659,44.114 +759470,9.3098,43.444 +759471,11.185,42.755 +759472,13.093,42.046 +759473,6.1611,44.016 +759474,8.0354,43.403 +759475,9.9378,42.772 +759476,11.87,42.123 +759477,4.8578,43.917 +759478,6.7616,43.361 +759479,8.6903,42.789 +759480,10.646,42.2 +759481,3.556,43.818 +759482,5.4884,43.32 +759483,7.4423,42.807 +759484,9.419,42.278 +759485,2.2559,43.718 +759486,4.2158,43.278 +759487,6.1937,42.824 +759488,8.1906,42.356 +759489,0.95735,43.618 +759490,2.9439,43.237 +759491,4.9446,42.842 +759492,6.9602,42.435 +759493,359.66,43.517 +759494,1.6726,43.195 +759495,3.6949,42.86 +759496,5.7279,42.513 +759497,358.37,43.416 +759498,0.40198,43.153 +759499,2.4446,42.879 +759500,4.4936,42.592 +759501,357.07,43.314 +759502,359.13,43.112 +759503,1.1937,42.897 +759504,3.2574,42.671 +759505,355.78,43.212 +759506,357.86,43.07 +759507,359.94,42.916 +759508,2.0192,42.75 +759509,354.49,43.11 +759510,356.59,43.028 +759511,358.69,42.934 +759512,0.77914,42.83 +759513,353.2,43.008 +759514,355.33,42.986 +759515,357.44,42.953 +759516,359.54,42.909 +759517,351.92,42.905 +759518,354.06,42.945 +759519,356.18,42.972 +759520,358.29,42.988 +759521,350.63,42.802 +759522,352.79,42.903 +759523,354.93,42.991 +759524,357.05,43.067 +759525,349.35,42.699 +759526,351.53,42.861 +759527,353.68,43.01 +759528,355.8,43.146 +759529,348.07,42.596 +759530,350.26,42.82 +759531,352.42,43.029 +759532,354.55,43.225 +759533,346.79,42.493 +759534,349,42.778 +759535,351.17,43.048 +759536,353.3,43.304 +759537,345.51,42.39 +759538,347.73,42.737 +759539,349.91,43.067 +759540,352.04,43.382 +759541,344.24,42.287 +759542,346.47,42.696 +759543,348.65,43.087 +759544,350.79,43.461 +759545,342.96,42.184 +759546,345.21,42.655 +759547,347.4,43.106 +759548,349.53,43.538 +759549,341.69,42.082 +759550,343.95,42.614 +759551,346.14,43.125 +759552,348.27,43.616 +759553,340.42,41.979 +759554,342.68,42.573 +759555,344.88,43.144 +759556,347.01,43.693 +759557,339.15,41.877 +759558,341.42,42.532 +759559,343.62,43.163 +759560,345.75,43.77 +759561,337.89,41.775 +759562,340.16,42.492 +759563,342.36,43.182 +759564,344.48,43.846 +759565,336.63,41.673 +759566,338.91,42.452 +759567,341.1,43.2 +759568,343.22,43.921 +759569,335.36,41.572 +759570,337.65,42.412 +759571,339.84,43.219 +759572,341.95,43.996 +759573,334.11,41.472 +759574,336.39,42.372 +759575,338.58,43.238 +759576,340.68,44.07 +759577,332.85,41.371 +759578,335.13,42.333 +759579,337.31,43.256 +759580,339.4,44.144 +759581,331.59,41.272 +759582,333.88,42.294 +759583,336.05,43.274 +759584,338.13,44.217 +759585,330.34,41.173 +759586,332.62,42.255 +759587,334.79,43.293 +759588,336.86,44.289 +759589,329.09,41.075 +759590,331.37,42.217 +759591,333.52,43.311 +759592,335.58,44.361 +759593,327.84,40.977 +759594,330.11,42.178 +759595,332.26,43.328 +759596,334.3,44.431 +759597,326.59,40.88 +759598,328.86,42.141 +759599,330.99,43.346 +759600,333.02,44.501 +759601,325.35,40.784 +759602,327.61,42.103 +759603,329.73,43.363 +759604,331.73,44.57 +759605,324.11,40.689 +759606,326.36,42.066 +759607,328.46,43.38 +759608,330.45,44.638 +759609,322.87,40.595 +759610,325.1,42.029 +759611,327.2,43.397 +759612,329.16,44.705 +759613,321.63,40.501 +759614,323.85,41.993 +759615,325.93,43.414 +759616,327.88,44.771 +759617,320.39,40.409 +759618,322.6,41.957 +759619,324.66,43.43 +759620,326.59,44.836 +759621,319.16,40.318 +759622,321.35,41.922 +759623,323.39,43.446 +759624,325.3,44.9 +759625,317.93,40.228 +759626,320.11,41.887 +759627,322.12,43.462 +759628,324.01,44.963 +759629,316.7,40.139 +759630,318.86,41.853 +759631,320.85,43.477 +759632,322.71,45.024 +759633,315.47,40.051 +759634,317.61,41.819 +759635,319.58,43.493 +759636,321.42,45.085 +759637,314.24,39.965 +759638,316.37,41.785 +759639,318.31,43.507 +759640,320.12,45.144 +759641,313.02,39.88 +759642,315.12,41.752 +759643,317.04,43.522 +759644,318.82,45.202 +759645,311.8,39.796 +759646,313.87,41.72 +759647,315.77,43.536 +759648,317.52,45.259 +759649,310.58,39.714 +759650,312.63,41.688 +759651,314.5,43.55 +759652,316.22,45.315 +759653,309.36,39.633 +759654,311.39,41.656 +759655,313.23,43.563 +759656,314.92,45.369 +759657,308.15,39.553 +759658,310.14,41.625 +759659,311.95,43.576 +759660,313.62,45.422 +759661,306.93,39.475 +759662,308.9,41.595 +759663,310.68,43.589 +759664,312.31,45.474 +759665,305.72,39.399 +759666,307.66,41.566 +759667,309.41,43.601 +759668,311,45.524 +759669,304.51,39.324 +759670,306.42,41.537 +759671,308.13,43.612 +759672,309.7,45.573 +759673,303.3,39.251 +759674,305.18,41.508 +759675,306.86,43.624 +759676,308.39,45.621 +759677,302.1,39.18 +759678,303.94,41.48 +759679,305.58,43.635 +759680,307.08,45.667 +759681,300.9,39.111 +759682,302.7,41.453 +759683,304.31,43.645 +759684,305.77,45.711 +759685,299.69,39.043 +759686,301.46,41.427 +759687,303.03,43.655 +759688,304.46,45.754 +759689,298.49,38.977 +759690,300.22,41.401 +759691,301.75,43.665 +759692,303.14,45.796 +759693,297.29,38.913 +759694,298.98,41.375 +759695,300.48,43.674 +759696,301.83,45.836 +759697,296.1,38.851 +759698,297.74,41.351 +759699,299.2,43.682 +759700,300.51,45.874 +759701,294.9,38.791 +759702,296.51,41.327 +759703,297.92,43.69 +759704,299.2,45.911 +759705,293.71,38.733 +759706,295.27,41.304 +759707,296.64,43.698 +759708,297.88,45.946 +759709,292.52,38.677 +759710,294.03,41.281 +759711,295.37,43.705 +759712,296.56,45.98 +759713,291.33,38.623 +759714,292.8,41.26 +759715,294.09,43.712 +759716,295.24,46.012 +759717,290.14,38.571 +759718,291.56,41.239 +759719,292.81,43.718 +759720,293.92,46.042 +759721,288.95,38.521 +759722,290.33,41.218 +759723,291.53,43.723 +759724,292.6,46.071 +759725,287.77,38.473 +759726,289.09,41.199 +759727,290.25,43.728 +759728,291.28,46.098 +759729,286.58,38.428 +759730,287.86,41.18 +759731,288.97,43.733 +759732,289.96,46.123 +759733,285.4,38.385 +759734,286.63,41.162 +759735,287.69,43.737 +759736,288.64,46.146 +759737,284.22,38.344 +759738,285.39,41.145 +759739,286.41,43.74 +759740,287.31,46.168 +759741,283.04,38.305 +759742,284.16,41.128 +759743,285.13,43.743 +759744,285.99,46.188 +759745,281.86,38.269 +759746,282.93,41.112 +759747,283.85,43.745 +759748,284.66,46.207 +759749,280.68,38.234 +759750,281.7,41.097 +759751,282.57,43.747 +759752,283.34,46.223 +759753,279.5,38.203 +759754,280.46,41.083 +759755,281.29,43.748 +759756,282.01,46.238 +759757,278.33,38.173 +759758,279.23,41.07 +759759,280.01,43.749 +759760,280.68,46.251 +759761,277.15,38.146 +759762,278,41.057 +759763,278.72,43.749 +759764,279.36,46.263 +759765,275.98,38.121 +759766,276.77,41.045 +759767,277.44,43.748 +759768,278.03,46.272 +759769,274.8,38.099 +759770,275.54,41.034 +759771,276.16,43.747 +759772,276.7,46.28 +759773,273.63,38.079 +759774,274.31,41.024 +759775,274.88,43.745 +759776,275.37,46.286 +759777,272.46,38.062 +759778,273.08,41.015 +759779,273.6,43.743 +759780,274.05,46.29 +759781,271.29,38.046 +759782,271.85,41.006 +759783,272.32,43.74 +759784,272.72,46.292 +759785,270.12,38.034 +759786,270.62,40.999 +759787,271.03,43.737 +759788,271.39,46.292 +759789,268.95,38.024 +759790,269.39,40.992 +759791,269.75,43.733 +759792,270.06,46.291 +759793,267.78,38.016 +759794,268.16,40.985 +759795,268.47,43.728 +759796,268.73,46.288 +759797,266.61,38.011 +759798,266.93,40.98 +759799,267.19,43.723 +759800,267.4,46.283 +759801,265.44,38.008 +759802,265.7,40.976 +759803,265.9,43.717 +759804,266.07,46.276 +759805,264.27,38.007 +759806,264.47,40.972 +759807,264.62,43.711 +759808,264.74,46.267 +759809,263.1,38.009 +759810,263.24,40.969 +759811,263.34,43.704 +759812,263.41,46.257 +759813,261.93,38.014 +759814,262.01,40.967 +759815,262.06,43.696 +759816,262.08,46.245 +759817,260.76,38.021 +759818,260.78,40.966 +759819,260.78,43.688 +759820,260.75,46.23 +759821,259.59,38.03 +759822,259.55,40.965 +759823,259.49,43.679 +759824,259.42,46.214 +759825,258.42,38.042 +759826,258.32,40.966 +759827,258.21,43.67 +759828,258.09,46.197 +759829,257.25,38.056 +759830,257.09,40.967 +759831,256.93,43.66 +759832,256.76,46.177 +759833,256.08,38.072 +759834,255.86,40.969 +759835,255.65,43.649 +759836,255.43,46.156 +759837,254.91,38.091 +759838,254.64,40.972 +759839,254.36,43.638 +759840,254.1,46.132 +759841,253.74,38.113 +759842,253.41,40.975 +759843,253.08,43.627 +759844,252.77,46.108 +759845,252.57,38.136 +759846,252.18,40.979 +759847,251.8,43.615 +759848,251.44,46.081 +759849,251.4,38.162 +759850,250.95,40.985 +759851,250.52,43.602 +759852,250.11,46.052 +759853,250.23,38.19 +759854,249.72,40.991 +759855,249.24,43.589 +759856,248.78,46.022 +759857,249.06,38.221 +759858,248.49,40.997 +759859,247.96,43.575 +759860,247.46,45.99 +759861,247.88,38.254 +759862,247.26,41.005 +759863,246.68,43.56 +759864,246.13,45.956 +759865,246.71,38.289 +759866,246.03,41.013 +759867,245.39,43.545 +759868,244.8,45.921 +759869,245.54,38.326 +759870,244.8,41.022 +759871,244.11,43.53 +759872,243.48,45.883 +759873,244.36,38.365 +759874,243.56,41.032 +759875,242.83,43.514 +759876,242.15,45.844 +759877,243.18,38.407 +759878,242.33,41.042 +759879,241.55,43.497 +759880,240.82,45.804 +759881,242.01,38.451 +759882,241.1,41.053 +759883,240.27,43.48 +759884,239.5,45.761 +759885,240.83,38.496 +759886,239.87,41.065 +759887,238.99,43.463 +759888,238.17,45.717 +759889,239.65,38.544 +759890,238.64,41.078 +759891,237.71,43.445 +759892,236.85,45.672 +759893,238.47,38.594 +759894,237.41,41.091 +759895,236.43,43.426 +759896,235.53,45.624 +759897,237.28,38.646 +759898,236.17,41.106 +759899,235.15,43.407 +759900,234.21,45.575 +759901,236.1,38.7 +759902,234.94,41.12 +759903,233.88,43.387 +759904,232.88,45.525 +759905,234.91,38.755 +759906,233.71,41.136 +759907,232.6,43.367 +759908,231.56,45.473 +759909,233.73,38.813 +759910,232.47,41.152 +759911,231.32,43.347 +759912,230.24,45.419 +759913,232.54,38.872 +759914,231.24,41.169 +759915,230.04,43.326 +759916,228.92,45.364 +759917,231.35,38.933 +759918,230.01,41.186 +759919,228.76,43.304 +759920,227.61,45.307 +759921,230.16,38.996 +759922,228.77,41.204 +759923,227.49,43.282 +759924,226.29,45.249 +759925,228.97,39.061 +759926,227.54,41.223 +759927,226.21,43.26 +759928,224.97,45.19 +759929,227.78,39.127 +759930,226.3,41.242 +759931,224.94,43.237 +759932,223.66,45.128 +759933,226.58,39.195 +759934,225.06,41.262 +759935,223.66,43.214 +759936,222.34,45.066 +759937,225.38,39.265 +759938,223.83,41.283 +759939,222.38,43.19 +759940,221.03,45.002 +759941,224.18,39.336 +759942,222.59,41.304 +759943,221.11,43.166 +759944,219.72,44.937 +759945,222.98,39.408 +759946,221.35,41.325 +759947,219.83,43.142 +759948,218.41,44.87 +759949,221.78,39.482 +759950,220.11,41.348 +759951,218.56,43.117 +759952,217.1,44.802 +759953,220.58,39.558 +759954,218.88,41.37 +759955,217.29,43.092 +759956,215.79,44.733 +759957,219.37,39.634 +759958,217.64,41.394 +759959,216.01,43.066 +759960,214.48,44.662 +759961,218.16,39.712 +759962,216.4,41.417 +759963,214.74,43.041 +759964,213.18,44.591 +759965,216.95,39.792 +759966,215.16,41.442 +759967,213.47,43.014 +759968,211.87,44.518 +759969,215.74,39.872 +759970,213.92,41.467 +759971,212.2,42.988 +759972,210.57,44.444 +759973,214.53,39.954 +759974,212.68,41.492 +759975,210.93,42.961 +759976,209.27,44.368 +759977,213.31,40.036 +759978,211.43,41.518 +759979,209.66,42.934 +759980,207.97,44.292 +759981,212.1,40.12 +759982,210.19,41.544 +759983,208.39,42.907 +759984,206.67,44.214 +759985,210.88,40.205 +759986,208.95,41.57 +759987,207.12,42.879 +759988,205.37,44.136 +759989,209.66,40.291 +759990,207.71,41.597 +759991,205.85,42.851 +759992,204.07,44.056 +759993,208.43,40.377 +759994,206.46,41.625 +759995,204.58,42.823 +759996,202.78,43.976 +759997,207.21,40.465 +759998,205.22,41.653 +759999,203.31,42.795 +760000,201.48,43.895 +760001,205.98,40.553 +760002,203.97,41.681 +760003,202.04,42.766 +760004,200.19,43.812 +760005,204.75,40.642 +760006,202.73,41.709 +760007,200.78,42.737 +760008,198.9,43.729 +760009,203.52,40.732 +760010,201.48,41.738 +760011,199.51,42.708 +760012,197.61,43.645 +760013,202.29,40.822 +760014,200.23,41.767 +760015,198.25,42.679 +760016,196.33,43.56 +760017,201.06,40.913 +760018,198.98,41.797 +760019,196.98,42.65 +760020,195.04,43.474 +760021,199.82,41.005 +760022,197.73,41.826 +760023,195.72,42.621 +760024,193.76,43.388 +760025,198.58,41.097 +760026,196.49,41.857 +760027,194.45,42.591 +760028,192.47,43.301 +760029,197.34,41.189 +760030,195.24,41.887 +760031,193.19,42.561 +760032,191.19,43.214 +760033,196.1,41.282 +760034,193.99,41.917 +760035,191.93,42.532 +760036,189.92,43.125 +760037,194.85,41.376 +760038,192.73,41.948 +760039,190.66,42.502 +760040,188.64,43.037 +760041,193.6,41.469 +760042,191.48,41.979 +760043,189.4,42.472 +760044,187.36,42.947 +760045,192.35,41.563 +760046,190.23,42.01 +760047,188.14,42.442 +760048,186.09,42.857 +760049,191.1,41.657 +760050,188.98,42.042 +760051,186.88,42.412 +760052,184.82,42.767 +760053,189.85,41.751 +760054,187.72,42.073 +760055,185.62,42.382 +760056,183.55,42.677 +760057,188.6,41.845 +760058,186.47,42.105 +760059,184.36,42.352 +760060,182.28,42.586 +760061,187.34,41.94 +760062,185.21,42.137 +760063,183.11,42.322 +760064,181.01,42.495 +760065,186.08,42.034 +760066,183.96,42.169 +760067,181.85,42.291 +760068,179.75,42.403 +760069,184.82,42.129 +760070,182.7,42.201 +760071,180.59,42.262 +760072,178.49,42.311 +760073,183.56,42.223 +760074,181.45,42.233 +760075,179.34,42.232 +760076,177.23,42.22 +760077,182.29,42.317 +760078,180.19,42.265 +760079,178.08,42.202 +760080,175.97,42.128 +760081,181.03,42.411 +760082,178.93,42.297 +760083,176.83,42.172 +760084,174.71,42.036 +760085,179.76,42.504 +760086,177.67,42.329 +760087,175.57,42.142 +760088,173.46,41.944 +760089,178.49,42.598 +760090,176.41,42.361 +760091,174.32,42.113 +760092,172.21,41.852 +760093,177.21,42.691 +760094,175.15,42.394 +760095,173.06,42.083 +760096,170.95,41.76 +760097,175.94,42.784 +760098,173.89,42.426 +760099,171.81,42.054 +760100,169.71,41.668 +760101,174.66,42.876 +760102,172.63,42.458 +760103,170.56,42.025 +760104,168.46,41.576 +760105,173.39,42.968 +760106,171.37,42.49 +760107,169.31,41.996 +760108,167.21,41.485 +760109,172.11,43.06 +760110,170.1,42.522 +760111,168.06,41.967 +760112,165.97,41.394 +760113,170.83,43.15 +760114,168.84,42.555 +760115,166.81,41.939 +760116,164.73,41.303 +760117,169.54,43.241 +760118,167.58,42.586 +760119,165.56,41.91 +760120,163.49,41.212 +760121,168.26,43.331 +760122,166.31,42.618 +760123,164.31,41.882 +760124,162.26,41.122 +760125,166.97,43.42 +760126,165.05,42.65 +760127,163.06,41.855 +760128,161.02,41.033 +760129,165.69,43.508 +760130,163.78,42.682 +760131,161.82,41.827 +760132,159.79,40.943 +760133,164.4,43.596 +760134,162.51,42.713 +760135,160.57,41.8 +760136,158.56,40.855 +760137,163.11,43.683 +760138,161.25,42.744 +760139,159.32,41.773 +760140,157.33,40.767 +760141,161.81,43.769 +760142,159.98,42.775 +760143,158.08,41.747 +760144,156.1,40.68 +760145,160.52,43.854 +760146,158.71,42.806 +760147,156.83,41.72 +760148,154.88,40.593 +760149,159.22,43.938 +760150,157.44,42.837 +760151,155.59,41.695 +760152,153.65,40.508 +760153,157.93,44.022 +760154,156.17,42.868 +760155,154.35,41.669 +760156,152.43,40.423 +760157,156.63,44.104 +760158,154.9,42.898 +760159,153.1,41.644 +760160,151.21,40.339 +760161,155.33,44.186 +760162,153.63,42.928 +760163,151.86,41.619 +760164,150,40.255 +760165,154.03,44.266 +760166,152.36,42.958 +760167,150.62,41.595 +760168,148.78,40.173 +760169,152.72,44.345 +760170,151.09,42.987 +760171,149.38,41.571 +760172,147.57,40.092 +760173,151.42,44.424 +760174,149.82,43.016 +760175,148.14,41.548 +760176,146.36,40.012 +760177,150.11,44.501 +760178,148.55,43.045 +760179,146.9,41.525 +760180,145.15,39.933 +760181,148.81,44.577 +760182,147.27,43.074 +760183,145.66,41.502 +760184,143.94,39.855 +760185,147.5,44.652 +760186,146,43.102 +760187,144.42,41.48 +760188,142.73,39.778 +760189,146.19,44.725 +760190,144.72,43.13 +760191,143.18,41.459 +760192,141.53,39.703 +760193,144.88,44.798 +760194,143.45,43.157 +760195,141.94,41.438 +760196,140.33,39.629 +760197,143.57,44.869 +760198,142.18,43.185 +760199,140.7,41.417 +760200,139.13,39.556 +760201,142.26,44.939 +760202,140.9,43.211 +760203,139.46,41.398 +760204,137.93,39.485 +760205,140.94,45.007 +760206,139.62,43.238 +760207,138.23,41.378 +760208,136.73,39.415 +760209,139.63,45.074 +760210,138.35,43.264 +760211,136.99,41.359 +760212,135.54,39.347 +760213,138.31,45.14 +760214,137.07,43.29 +760215,135.75,41.341 +760216,134.34,39.28 +760217,136.99,45.204 +760218,135.79,43.315 +760219,134.52,41.324 +760220,133.15,39.215 +760221,135.68,45.267 +760222,134.52,43.34 +760223,133.28,41.307 +760224,131.96,39.151 +760225,134.36,45.329 +760226,133.24,43.364 +760227,132.05,41.29 +760228,130.77,39.089 +760229,133.04,45.389 +760230,131.96,43.388 +760231,130.82,41.275 +760232,129.58,39.029 +760233,131.72,45.447 +760234,130.68,43.412 +760235,129.58,41.26 +760236,128.4,38.97 +760237,130.39,45.504 +760238,129.4,43.435 +760239,128.35,41.245 +760240,127.21,38.914 +760241,129.07,45.56 +760242,128.12,43.457 +760243,127.11,41.231 +760244,126.03,38.859 +760245,127.75,45.613 +760246,126.84,43.479 +760247,125.88,41.218 +760248,124.84,38.806 +760249,126.43,45.666 +760250,125.56,43.501 +760251,124.65,41.206 +760252,123.66,38.755 +760253,125.1,45.716 +760254,124.28,43.522 +760255,123.42,41.194 +760256,122.48,38.706 +760257,123.78,45.765 +760258,123,43.543 +760259,122.18,41.183 +760260,121.3,38.659 +760261,122.45,45.813 +760262,121.72,43.563 +760263,120.95,41.173 +760264,120.13,38.614 +760265,121.12,45.859 +760266,120.44,43.583 +760267,119.72,41.163 +760268,118.95,38.57 +760269,119.8,45.903 +760270,119.16,43.602 +760271,118.49,41.154 +760272,117.77,38.529 +760273,118.47,45.945 +760274,117.88,43.62 +760275,117.26,41.146 +760276,116.6,38.491 +760277,117.14,45.986 +760278,116.6,43.638 +760279,116.03,41.139 +760280,115.42,38.454 +760281,115.81,46.025 +760282,115.32,43.656 +760283,114.8,41.132 +760284,114.25,38.419 +760285,114.48,46.062 +760286,114.03,43.673 +760287,113.57,41.126 +760288,113.08,38.387 +760289,113.15,46.097 +760290,112.75,43.689 +760291,112.34,41.121 +760292,111.91,38.357 +760293,111.83,46.131 +760294,111.47,43.705 +760295,111.11,41.116 +760296,110.73,38.329 +760297,110.5,46.163 +760298,110.19,43.72 +760299,109.88,41.113 +760300,109.56,38.304 +760301,109.16,46.194 +760302,108.9,43.735 +760303,108.65,41.11 +760304,108.39,38.28 +760305,107.83,46.222 +760306,107.62,43.749 +760307,107.42,41.108 +760308,107.22,38.259 +760309,106.5,46.249 +760310,106.34,43.763 +760311,106.19,41.107 +760312,106.05,38.241 +760313,105.17,46.274 +760314,105.06,43.776 +760315,104.96,41.106 +760316,104.88,38.224 +760317,103.84,46.297 +760318,103.77,43.788 +760319,103.73,41.107 +760320,103.71,38.21 +760321,102.51,46.318 +760322,102.49,43.8 +760323,102.5,41.108 +760324,102.54,38.199 +760325,101.18,46.337 +760326,101.21,43.812 +760327,101.27,41.11 +760328,101.37,38.19 +760329,99.849,46.355 +760330,99.923,43.822 +760331,100.04,41.112 +760332,100.21,38.183 +760333,98.518,46.371 +760334,98.64,43.832 +760335,98.806,41.116 +760336,99.036,38.179 +760337,97.187,46.385 +760338,97.356,43.842 +760339,97.576,41.12 +760340,97.867,38.177 +760341,95.856,46.397 +760342,96.073,43.851 +760343,96.346,41.125 +760344,96.697,38.177 +760345,94.525,46.408 +760346,94.79,43.859 +760347,95.116,41.131 +760348,95.527,38.18 +760349,93.194,46.416 +760350,93.507,43.867 +760351,93.885,41.138 +760352,94.357,38.186 +760353,91.863,46.423 +760354,92.224,43.874 +760355,92.655,41.146 +760356,93.186,38.193 +760357,90.533,46.428 +760358,90.941,43.881 +760359,91.424,41.154 +760360,92.015,38.204 +760361,89.203,46.431 +760362,89.658,43.887 +760363,90.193,41.163 +760364,90.843,38.216 +760365,87.873,46.432 +760366,88.375,43.893 +760367,88.962,41.173 +760368,89.671,38.231 +760369,86.544,46.432 +760370,87.092,43.897 +760371,87.731,41.184 +760372,88.498,38.249 +760373,85.215,46.43 +760374,85.809,43.902 +760375,86.5,41.196 +760376,87.324,38.269 +760377,83.886,46.426 +760378,84.527,43.905 +760379,85.268,41.208 +760380,86.149,38.291 +760381,82.558,46.42 +760382,83.244,43.909 +760383,84.036,41.221 +760384,84.974,38.316 +760385,81.23,46.412 +760386,81.962,43.911 +760387,82.804,41.235 +760388,83.797,38.343 +760389,79.903,46.402 +760390,80.68,43.913 +760391,81.571,41.25 +760392,82.62,38.372 +760393,78.576,46.391 +760394,79.398,43.915 +760395,80.338,41.266 +760396,81.441,38.404 +760397,77.25,46.378 +760398,78.116,43.915 +760399,79.105,41.282 +760400,80.262,38.438 +760401,75.925,46.363 +760402,76.835,43.916 +760403,77.871,41.299 +760404,79.081,38.474 +760405,74.6,46.347 +760406,75.554,43.915 +760407,76.637,41.317 +760408,77.899,38.513 +760409,73.275,46.329 +760410,74.273,43.915 +760411,75.403,41.336 +760412,76.715,38.554 +760413,71.952,46.309 +760414,72.992,43.913 +760415,74.168,41.355 +760416,75.531,38.597 +760417,70.629,46.287 +760418,71.712,43.911 +760419,72.933,41.375 +760420,74.345,38.643 +760421,69.307,46.264 +760422,70.431,43.909 +760423,71.698,41.396 +760424,73.157,38.69 +760425,67.986,46.238 +760426,69.151,43.906 +760427,70.462,41.418 +760428,71.968,38.74 +760429,66.666,46.212 +760430,67.872,43.902 +760431,69.225,41.44 +760432,70.778,38.792 +760433,65.347,46.183 +760434,66.593,43.898 +760435,67.988,41.463 +760436,69.585,38.846 +760437,64.028,46.153 +760438,65.314,43.894 +760439,66.751,41.487 +760440,68.392,38.902 +760441,62.711,46.122 +760442,64.035,43.889 +760443,65.513,41.512 +760444,67.196,38.96 +760445,61.394,46.088 +760446,62.757,43.883 +760447,64.274,41.537 +760448,65.999,39.02 +760449,60.078,46.053 +760450,61.479,43.877 +760451,63.035,41.563 +760452,64.8,39.082 +760453,58.764,46.017 +760454,60.201,43.871 +760455,61.796,41.59 +760456,63.6,39.146 +760457,57.451,45.979 +760458,58.924,43.864 +760459,60.556,41.617 +760460,62.397,39.212 +760461,56.138,45.94 +760462,57.647,43.856 +760463,59.315,41.645 +760464,61.193,39.28 +760465,54.827,45.899 +760466,56.371,43.848 +760467,58.074,41.673 +760468,59.987,39.35 +760469,53.517,45.856 +760470,55.095,43.84 +760471,56.832,41.702 +760472,58.778,39.421 +760473,52.208,45.812 +760474,53.819,43.831 +760475,55.59,41.732 +760476,57.568,39.494 +760477,50.901,45.767 +760478,52.544,43.822 +760479,54.347,41.763 +760480,56.356,39.569 +760481,49.594,45.72 +760482,51.269,43.812 +760483,53.103,41.794 +760484,55.142,39.645 +760485,48.289,45.672 +760486,49.995,43.802 +760487,51.859,41.825 +760488,53.926,39.723 +760489,46.986,45.622 +760490,48.721,43.792 +760491,50.614,41.858 +760492,52.708,39.803 +760493,45.683,45.571 +760494,47.448,43.781 +760495,49.369,41.89 +760496,51.488,39.884 +760497,44.382,45.519 +760498,46.175,43.769 +760499,48.123,41.924 +760500,50.266,39.967 +760501,43.083,45.466 +760502,44.903,43.758 +760503,46.876,41.958 +760504,49.042,40.051 +760505,41.785,45.411 +760506,43.631,43.746 +760507,45.629,41.992 +760508,47.815,40.136 +760509,40.488,45.355 +760510,42.36,43.733 +760511,44.381,42.027 +760512,46.587,40.223 +760513,39.193,45.298 +760514,41.089,43.721 +760515,43.132,42.062 +760516,45.356,40.311 +760517,37.899,45.239 +760518,39.819,43.708 +760519,41.882,42.098 +760520,44.124,40.401 +760521,36.607,45.18 +760522,38.549,43.694 +760523,40.632,42.135 +760524,42.889,40.491 +760525,35.316,45.119 +760526,37.279,43.681 +760527,39.381,42.171 +760528,41.652,40.583 +760529,34.027,45.058 +760530,36.011,43.667 +760531,38.13,42.209 +760532,40.413,40.676 +760533,32.739,44.995 +760534,34.743,43.652 +760535,36.878,42.246 +760536,39.172,40.769 +760537,31.454,44.931 +760538,33.475,43.638 +760539,35.625,42.284 +760540,37.928,40.864 +760541,30.169,44.867 +760542,32.208,43.623 +760543,34.371,42.323 +760544,36.683,40.96 +760545,28.887,44.801 +760546,30.941,43.608 +760547,33.117,42.362 +760548,35.435,41.056 +760549,27.606,44.735 +760550,29.675,43.593 +760551,31.862,42.401 +760552,34.185,41.154 +760553,26.327,44.667 +760554,28.41,43.577 +760555,30.606,42.441 +760556,32.933,41.252 +760557,25.049,44.599 +760558,27.145,43.562 +760559,29.349,42.481 +760560,31.679,41.351 +760561,23.774,44.53 +760562,25.881,43.546 +760563,28.092,42.521 +760564,30.423,41.451 +760565,22.5,44.46 +760566,24.617,43.53 +760567,26.834,42.561 +760568,29.165,41.551 +760569,21.228,44.39 +760570,23.354,43.514 +760571,25.575,42.602 +760572,27.905,41.652 +760573,19.957,44.319 +760574,22.092,43.498 +760575,24.316,42.643 +760576,26.642,41.754 +760577,18.689,44.247 +760578,20.83,43.481 +760579,23.056,42.685 +760580,25.378,41.856 +760581,17.422,44.174 +760582,19.568,43.465 +760583,21.795,42.726 +760584,24.111,41.958 +760585,16.157,44.101 +760586,18.308,43.448 +760587,20.533,42.768 +760588,22.843,42.061 +760589,14.894,44.028 +760590,17.048,43.431 +760591,19.271,42.81 +760592,21.572,42.164 +760593,13.633,43.954 +760594,15.788,43.414 +760595,18.008,42.853 +760596,20.299,42.268 +760597,12.374,43.88 +760598,14.529,43.397 +760599,16.744,42.895 +760600,19.025,42.371 +760601,11.117,43.805 +760602,13.271,43.38 +760603,15.48,42.938 +760604,17.748,42.475 +760605,9.8612,43.729 +760606,12.013,43.364 +760607,14.214,42.98 +760608,16.47,42.579 +760609,8.6076,43.654 +760610,10.756,43.347 +760611,12.949,43.023 +760612,15.189,42.684 +760613,7.356,43.578 +760614,9.4993,43.33 +760615,11.682,43.066 +760616,13.907,42.788 +760617,6.1063,43.502 +760618,8.2433,43.313 +760619,10.415,43.109 +760620,12.623,42.892 +760621,4.8585,43.426 +760622,6.9879,43.296 +760623,9.1466,43.153 +760624,11.336,42.996 +760625,3.6127,43.35 +760626,5.7332,43.279 +760627,7.8779,43.196 +760628,10.048,43.1 +760629,2.3687,43.273 +760630,4.479,43.262 +760631,6.6085,43.239 +760632,8.7585,43.204 +760633,1.1267,43.197 +760634,3.2253,43.245 +760635,5.3384,43.283 +760636,7.4669,43.308 +760637,359.89,43.12 +760638,1.9723,43.229 +760639,4.0677,43.326 +760640,6.1735,43.412 +760641,358.65,43.044 +760642,0.71985,43.212 +760643,2.7963,43.369 +760644,4.8784,43.515 +760645,357.41,42.967 +760646,359.47,43.196 +760647,1.5242,43.413 +760648,3.5815,43.618 +760649,356.18,42.891 +760650,358.22,43.179 +760651,0.25141,43.456 +760652,2.283,43.721 +760653,354.95,42.815 +760654,356.97,43.163 +760655,358.98,43.499 +760656,0.98273,43.823 +760657,353.72,42.739 +760658,355.72,43.147 +760659,357.7,43.543 +760660,359.68,43.925 +760661,352.49,42.663 +760662,354.47,43.132 +760663,356.43,43.586 +760664,358.38,44.026 +760665,351.26,42.588 +760666,353.22,43.116 +760667,355.15,43.629 +760668,357.07,44.127 +760669,350.04,42.513 +760670,351.97,43.101 +760671,353.88,43.672 +760672,355.77,44.227 +760673,348.81,42.439 +760674,350.72,43.085 +760675,352.6,43.715 +760676,354.46,44.327 +760677,347.59,42.365 +760678,349.47,43.071 +760679,351.32,43.758 +760680,353.15,44.426 +760681,346.37,42.291 +760682,348.23,43.056 +760683,350.05,43.8 +760684,351.84,44.524 +760685,345.16,42.218 +760686,346.98,43.042 +760687,348.77,43.843 +760688,350.52,44.622 +760689,343.94,42.145 +760690,345.73,43.027 +760691,347.49,43.885 +760692,349.21,44.718 +760693,342.73,42.074 +760694,344.49,43.014 +760695,346.21,43.927 +760696,347.9,44.814 +760697,341.51,42.003 +760698,343.24,43 +760699,344.93,43.969 +760700,346.58,44.91 +760701,340.3,41.932 +760702,342,42.987 +760703,343.65,44.011 +760704,345.26,45.004 +760705,339.1,41.863 +760706,340.75,42.974 +760707,342.37,44.052 +760708,343.94,45.097 +760709,337.89,41.794 +760710,339.51,42.962 +760711,341.09,44.093 +760712,342.62,45.19 +760713,336.69,41.726 +760714,338.27,42.95 +760715,339.8,44.134 +760716,341.3,45.281 +760717,335.48,41.659 +760718,337.03,42.938 +760719,338.52,44.175 +760720,339.98,45.372 +760721,334.28,41.593 +760722,335.78,42.927 +760723,337.24,44.216 +760724,338.65,45.461 +760725,333.08,41.528 +760726,334.54,42.916 +760727,335.95,44.256 +760728,337.33,45.549 +760729,331.88,41.464 +760730,333.3,42.906 +760731,334.67,44.296 +760732,336,45.637 +760733,330.69,41.401 +760734,332.06,42.896 +760735,333.39,44.335 +760736,334.67,45.723 +760737,329.49,41.339 +760738,330.82,42.886 +760739,332.1,44.374 +760740,333.35,45.808 +760741,328.3,41.279 +760742,329.58,42.877 +760743,330.82,44.413 +760744,332.02,45.891 +760745,327.1,41.22 +760746,328.34,42.869 +760747,329.53,44.452 +760748,330.69,45.974 +760749,325.91,41.162 +760750,327.1,42.861 +760751,328.24,44.49 +760752,329.36,46.055 +760753,324.72,41.105 +760754,325.86,42.853 +760755,326.96,44.528 +760756,328.02,46.135 +760757,323.53,41.05 +760758,324.62,42.846 +760759,325.67,44.565 +760760,326.69,46.214 +760761,322.35,40.996 +760762,323.38,42.84 +760763,324.38,44.602 +760764,325.36,46.291 +760765,321.16,40.943 +760766,322.14,42.834 +760767,323.09,44.639 +760768,324.02,46.367 +760769,319.98,40.892 +760770,320.9,42.828 +760771,321.81,44.675 +760772,322.69,46.442 +760773,318.79,40.843 +760774,319.67,42.823 +760775,320.52,44.711 +760776,321.35,46.515 +760777,317.61,40.795 +760778,318.43,42.819 +760779,319.23,44.746 +760780,320.02,46.587 +760781,316.43,40.749 +760782,317.19,42.815 +760783,317.94,44.781 +760784,318.68,46.657 +760785,315.25,40.704 +760786,315.95,42.812 +760787,316.65,44.815 +760788,317.34,46.726 +760789,314.07,40.661 +760790,314.72,42.81 +760791,315.36,44.849 +760792,316,46.793 +760793,312.89,40.62 +760794,313.48,42.808 +760795,314.07,44.883 +760796,314.66,46.859 +760797,311.71,40.581 +760798,312.24,42.807 +760799,312.78,44.916 +760800,313.32,46.923 +760801,310.54,40.543 +760802,311.01,42.806 +760803,311.49,44.948 +760804,311.98,46.986 +760805,309.36,40.507 +760806,309.77,42.806 +760807,310.2,44.98 +760808,310.64,47.047 +760809,308.18,40.473 +760810,308.53,42.807 +760811,308.91,45.012 +760812,309.3,47.106 +760813,307.01,40.441 +760814,307.3,42.808 +760815,307.62,45.043 +760816,307.96,47.164 +760817,305.83,40.411 +760818,306.06,42.81 +760819,306.33,45.074 +760820,306.62,47.221 +760821,304.66,40.382 +760822,304.82,42.813 +760823,305.03,45.104 +760824,305.28,47.275 +760825,303.49,40.356 +760826,303.59,42.816 +760827,303.74,45.133 +760828,303.94,47.329 +760829,302.31,40.332 +760830,302.35,42.82 +760831,302.45,45.162 +760832,302.6,47.38 +760833,301.14,40.31 +760834,301.11,42.825 +760835,301.16,45.191 +760836,301.26,47.43 +760837,299.97,40.289 +760838,299.88,42.831 +760839,299.87,45.219 +760840,299.91,47.478 +760841,298.79,40.271 +760842,298.64,42.837 +760843,298.58,45.246 +760844,298.57,47.524 +760845,297.62,40.255 +760846,297.41,42.844 +760847,297.28,45.273 +760848,297.23,47.569 +760849,296.45,40.241 +760850,296.17,42.851 +760851,295.99,45.299 +760852,295.89,47.612 +760853,295.27,40.229 +760854,294.93,42.86 +760855,294.7,45.325 +760856,294.54,47.653 +760857,294.1,40.22 +760858,293.7,42.869 +760859,293.41,45.35 +760860,293.2,47.692 +760861,292.93,40.212 +760862,292.46,42.878 +760863,292.11,45.375 +760864,291.86,47.73 +760865,291.75,40.207 +760866,291.22,42.889 +760867,290.82,45.399 +760868,290.52,47.766 +760869,290.58,40.204 +760870,289.99,42.9 +760871,289.53,45.422 +760872,289.18,47.8 +760873,289.4,40.203 +760874,288.75,42.912 +760875,288.24,45.445 +760876,287.83,47.833 +760877,288.23,40.204 +760878,287.51,42.925 +760879,286.94,45.468 +760880,286.49,47.863 +760881,287.05,40.208 +760882,286.27,42.938 +760883,285.65,45.489 +760884,285.15,47.892 +760885,285.88,40.213 +760886,285.04,42.952 +760887,284.36,45.511 +760888,283.81,47.92 +760889,284.7,40.221 +760890,283.8,42.967 +760891,283.07,45.531 +760892,282.47,47.945 +760893,283.52,40.232 +760894,282.56,42.983 +760895,281.78,45.551 +760896,281.13,47.969 +760897,282.35,40.244 +760898,281.32,43 +760899,280.48,45.571 +760900,279.79,47.99 +760901,281.17,40.259 +760902,280.08,43.017 +760903,279.19,45.59 +760904,278.45,48.011 +760905,279.99,40.276 +760906,278.84,43.035 +760907,277.9,45.608 +760908,277.11,48.029 +760909,278.8,40.295 +760910,277.6,43.053 +760911,276.61,45.626 +760912,275.77,48.046 +760913,277.62,40.317 +760914,276.36,43.073 +760915,275.32,45.643 +760916,274.43,48.06 +760917,276.44,40.341 +760918,275.12,43.093 +760919,274.03,45.66 +760920,273.1,48.073 +760921,275.25,40.367 +760922,273.88,43.114 +760923,272.74,45.676 +760924,271.76,48.085 +760925,274.07,40.395 +760926,272.64,43.135 +760927,271.44,45.691 +760928,270.42,48.094 +760929,272.88,40.425 +760930,271.4,43.158 +760931,270.15,45.706 +760932,269.09,48.102 +760933,271.69,40.458 +760934,270.16,43.181 +760935,268.86,45.72 +760936,267.75,48.108 +760937,270.5,40.493 +760938,268.91,43.205 +760939,267.57,45.734 +760940,266.42,48.113 +760941,269.31,40.53 +760942,267.67,43.229 +760943,266.28,45.747 +760944,265.09,48.115 +760945,268.12,40.569 +760946,266.43,43.255 +760947,264.99,45.76 +760948,263.75,48.116 +760949,266.92,40.61 +760950,265.18,43.281 +760951,263.7,45.772 +760952,262.42,48.116 +760953,265.73,40.654 +760954,263.94,43.307 +760955,262.42,45.783 +760956,261.09,48.113 +760957,264.53,40.7 +760958,262.69,43.335 +760959,261.13,45.794 +760960,259.76,48.109 +760961,263.33,40.747 +760962,261.45,43.363 +760963,259.84,45.805 +760964,258.43,48.103 +760965,262.13,40.797 +760966,260.2,43.392 +760967,258.55,45.815 +760968,257.1,48.096 +760969,260.93,40.849 +760970,258.95,43.421 +760971,257.26,45.824 +760972,255.78,48.087 +760973,259.72,40.903 +760974,257.71,43.452 +760975,255.97,45.833 +760976,254.45,48.076 +760977,258.51,40.959 +760978,256.46,43.482 +760979,254.69,45.841 +760980,253.13,48.064 +760981,257.31,41.017 +760982,255.21,43.514 +760983,253.4,45.849 +760984,251.8,48.05 +760985,256.09,41.077 +760986,253.96,43.546 +760987,252.11,45.856 +760988,250.48,48.034 +760989,254.88,41.139 +760990,252.71,43.579 +760991,250.83,45.863 +760992,249.16,48.017 +760993,253.67,41.202 +760994,251.46,43.613 +760995,249.54,45.869 +760996,247.84,47.998 +760997,252.45,41.268 +760998,250.21,43.647 +760999,248.26,45.875 +761000,246.52,47.978 +761001,251.23,41.335 +761002,248.96,43.682 +761003,246.97,45.881 +761004,245.2,47.956 +761005,250.01,41.405 +761006,247.71,43.717 +761007,245.69,45.885 +761008,243.88,47.933 +761009,248.79,41.476 +761010,246.45,43.753 +761011,244.4,45.89 +761012,242.57,47.909 +761013,247.56,41.548 +761014,245.2,43.79 +761015,243.12,45.894 +761016,241.25,47.882 +761017,246.33,41.623 +761018,243.95,43.827 +761019,241.84,45.897 +761020,239.94,47.855 +761021,245.11,41.699 +761022,242.69,43.865 +761023,240.55,45.9 +761024,238.63,47.826 +761025,243.87,41.777 +761026,241.43,43.903 +761027,239.27,45.903 +761028,237.32,47.796 +761029,242.64,41.856 +761030,240.18,43.942 +761031,237.99,45.905 +761032,236.01,47.764 +761033,241.4,41.937 +761034,238.92,43.981 +761035,236.71,45.907 +761036,234.7,47.731 +761037,240.16,42.019 +761038,237.66,44.021 +761039,235.43,45.908 +761040,233.4,47.696 +761041,238.92,42.103 +761042,236.4,44.062 +761043,234.15,45.909 +761044,232.09,47.661 +761045,237.68,42.188 +761046,235.15,44.103 +761047,232.87,45.909 +761048,230.79,47.624 +761049,236.44,42.275 +761050,233.89,44.144 +761051,231.59,45.91 +761052,229.49,47.586 +761053,235.19,42.363 +761054,232.62,44.186 +761055,230.31,45.909 +761056,228.19,47.546 +761057,233.94,42.452 +761058,231.36,44.229 +761059,229.03,45.909 +761060,226.89,47.506 +761061,232.69,42.543 +761062,230.1,44.272 +761063,227.75,45.908 +761064,225.6,47.464 +761065,231.43,42.635 +761066,228.84,44.315 +761067,226.48,45.907 +761068,224.3,47.421 +761069,230.17,42.728 +761070,227.57,44.359 +761071,225.2,45.905 +761072,223.01,47.377 +761073,228.92,42.822 +761074,226.31,44.403 +761075,223.92,45.903 +761076,221.72,47.332 +761077,227.65,42.917 +761078,225.04,44.448 +761079,222.65,45.901 +761080,220.43,47.286 +761081,226.39,43.013 +761082,223.78,44.493 +761083,221.37,45.898 +761084,219.14,47.239 +761085,225.12,43.11 +761086,222.51,44.538 +761087,220.1,45.896 +761088,217.85,47.191 +761089,223.86,43.208 +761090,221.24,44.584 +761091,218.82,45.893 +761092,216.57,47.142 +761093,222.59,43.307 +761094,219.97,44.63 +761095,217.55,45.889 +761096,215.29,47.092 +761097,221.31,43.407 +761098,218.7,44.677 +761099,216.28,45.886 +761100,214,47.042 +761101,220.04,43.508 +761102,217.43,44.723 +761103,215.01,45.882 +761104,212.72,46.99 +761105,218.76,43.609 +761106,216.16,44.77 +761107,213.73,45.878 +761108,211.45,46.938 +761109,217.48,43.711 +761110,214.89,44.818 +761111,212.46,45.874 +761112,210.17,46.884 +761113,216.2,43.814 +761114,213.62,44.866 +761115,211.19,45.869 +761116,208.9,46.83 +761117,214.92,43.918 +761118,212.35,44.914 +761119,209.92,45.865 +761120,207.63,46.776 +761121,213.63,44.022 +761122,211.07,44.962 +761123,208.65,45.86 +761124,206.36,46.721 +761125,212.35,44.126 +761126,209.8,45.01 +761127,207.38,45.855 +761128,205.09,46.665 +761129,211.06,44.231 +761130,208.52,45.059 +761131,206.12,45.85 +761132,203.82,46.608 +761133,209.76,44.336 +761134,207.25,45.108 +761135,204.85,45.845 +761136,202.56,46.551 +761137,208.47,44.442 +761138,205.97,45.157 +761139,203.58,45.84 +761140,201.29,46.494 +761141,207.17,44.548 +761142,204.69,45.206 +761143,202.31,45.834 +761144,200.03,46.435 +761145,205.88,44.655 +761146,203.41,45.256 +761147,201.05,45.829 +761148,198.77,46.377 +761149,204.58,44.761 +761150,202.13,45.305 +761151,199.78,45.823 +761152,197.52,46.318 +761153,203.28,44.868 +761154,200.85,45.355 +761155,198.52,45.818 +761156,196.26,46.259 +761157,201.97,44.975 +761158,199.57,45.405 +761159,197.25,45.812 +761160,195.01,46.199 +761161,200.67,45.082 +761162,198.29,45.455 +761163,195.99,45.807 +761164,193.76,46.139 +761165,199.36,45.189 +761166,197.01,45.505 +761167,194.73,45.801 +761168,192.51,46.079 +761169,198.05,45.296 +761170,195.73,45.555 +761171,193.47,45.795 +761172,191.26,46.019 +761173,196.74,45.404 +761174,194.44,45.605 +761175,192.2,45.79 +761176,190.01,45.959 +761177,195.43,45.511 +761178,193.16,45.655 +761179,190.94,45.784 +761180,188.77,45.898 +761181,194.11,45.617 +761182,191.87,45.705 +761183,189.68,45.778 +761184,187.53,45.837 +761185,192.8,45.724 +761186,190.59,45.756 +761187,188.42,45.773 +761188,186.29,45.777 +761189,191.48,45.831 +761190,189.3,45.806 +761191,187.16,45.767 +761192,185.05,45.716 +761193,190.16,45.937 +761194,188.02,45.856 +761195,185.9,45.762 +761196,183.81,45.655 +761197,188.84,46.043 +761198,186.73,45.906 +761199,184.64,45.756 +761200,182.58,45.595 +761201,187.51,46.149 +761202,185.44,45.957 +761203,183.38,45.751 +761204,181.35,45.534 +761205,186.19,46.254 +761206,184.15,46.007 +761207,182.13,45.746 +761208,180.12,45.474 +761209,184.86,46.359 +761210,182.86,46.057 +761211,180.87,45.741 +761212,178.89,45.414 +761213,183.54,46.464 +761214,181.57,46.107 +761215,179.61,45.736 +761216,177.66,45.354 +761217,182.21,46.568 +761218,180.28,46.156 +761219,178.36,45.732 +761220,176.44,45.295 +761221,180.88,46.671 +761222,178.99,46.206 +761223,177.1,45.727 +761224,175.21,45.235 +761225,179.55,46.774 +761226,177.7,46.256 +761227,175.85,45.723 +761228,173.99,45.177 +761229,178.21,46.876 +761230,176.41,46.305 +761231,174.59,45.719 +761232,172.77,45.118 +761233,176.88,46.978 +761234,175.11,46.355 +761235,173.34,45.715 +761236,171.55,45.061 +761237,175.54,47.079 +761238,173.82,46.404 +761239,172.08,45.712 +761240,170.34,45.003 +761241,174.21,47.179 +761242,172.52,46.453 +761243,170.83,45.708 +761244,169.12,44.946 +761245,172.87,47.278 +761246,171.23,46.501 +761247,169.58,45.705 +761248,167.91,44.89 +761249,171.53,47.377 +761250,169.93,46.55 +761251,168.32,45.702 +761252,166.7,44.835 +761253,170.19,47.475 +761254,168.64,46.598 +761255,167.07,45.7 +761256,165.49,44.78 +761257,168.85,47.572 +761258,167.34,46.646 +761259,165.82,45.698 +761260,164.28,44.726 +761261,167.5,47.668 +761262,166.05,46.694 +761263,164.57,45.696 +761264,163.07,44.672 +761265,166.16,47.763 +761266,164.75,46.742 +761267,163.32,45.694 +761268,161.86,44.62 +761269,164.82,47.857 +761270,163.45,46.789 +761271,162.07,45.693 +761272,160.66,44.568 +761273,163.47,47.95 +761274,162.15,46.836 +761275,160.82,45.692 +761276,159.46,44.517 +761277,162.12,48.042 +761278,160.85,46.883 +761279,159.57,45.692 +761280,158.26,44.467 +761281,160.78,48.134 +761282,159.56,46.93 +761283,158.32,45.691 +761284,157.06,44.418 +761285,159.43,48.224 +761286,158.26,46.976 +761287,157.07,45.692 +761288,155.86,44.37 +761289,158.08,48.312 +761290,156.96,47.022 +761291,155.82,45.692 +761292,154.66,44.323 +761293,156.73,48.4 +761294,155.66,47.067 +761295,154.57,45.693 +761296,153.47,44.277 +761297,155.38,48.487 +761298,154.36,47.112 +761299,153.32,45.695 +761300,152.27,44.233 +761301,154.03,48.572 +761302,153.05,47.157 +761303,152.07,45.697 +761304,151.08,44.189 +761305,152.68,48.656 +761306,151.75,47.201 +761307,150.82,45.699 +761308,149.89,44.147 +761309,151.32,48.739 +761310,150.45,47.245 +761311,149.58,45.702 +761312,148.69,44.106 +761313,149.97,48.821 +761314,149.15,47.289 +761315,148.33,45.705 +761316,147.5,44.066 +761317,148.62,48.902 +761318,147.85,47.332 +761319,147.08,45.709 +761320,146.31,44.028 +761321,147.26,48.981 +761322,146.55,47.375 +761323,145.83,45.713 +761324,145.13,43.99 +761325,145.91,49.058 +761326,145.24,47.418 +761327,144.59,45.718 +761328,143.94,43.955 +761329,144.55,49.135 +761330,143.94,47.46 +761331,143.34,45.723 +761332,142.75,43.92 +761333,143.2,49.21 +761334,142.64,47.501 +761335,142.09,45.729 +761336,141.56,43.887 +761337,141.84,49.283 +761338,141.33,47.542 +761339,140.84,45.735 +761340,140.38,43.856 +761341,140.48,49.355 +761342,140.03,47.583 +761343,139.6,45.742 +761344,139.19,43.826 +761345,139.13,49.426 +761346,138.73,47.623 +761347,138.35,45.749 +761348,138.01,43.798 +761349,137.77,49.495 +761350,137.42,47.663 +761351,137.1,45.757 +761352,136.83,43.771 +761353,136.41,49.563 +761354,136.12,47.702 +761355,135.86,45.766 +761356,135.64,43.746 +761357,135.06,49.629 +761358,134.81,47.741 +761359,134.61,45.775 +761360,134.46,43.722 +761361,133.7,49.694 +761362,133.51,47.779 +761363,133.36,45.784 +761364,133.28,43.7 +761365,132.34,49.757 +761366,132.2,47.817 +761367,132.12,45.795 +761368,132.1,43.68 +761369,130.98,49.819 +761370,130.9,47.854 +761371,130.87,45.805 +761372,130.91,43.662 +761373,129.62,49.879 +761374,129.59,47.891 +761375,129.62,45.817 +761376,129.73,43.645 +761377,128.27,49.938 +761378,128.29,47.928 +761379,128.38,45.829 +761380,128.55,43.63 +761381,126.91,49.995 +761382,126.98,47.963 +761383,127.13,45.841 +761384,127.37,43.617 +761385,125.55,50.05 +761386,125.68,47.999 +761387,125.88,45.855 +761388,126.19,43.605 +761389,124.19,50.104 +761390,124.37,48.033 +761391,124.64,45.868 +761392,125,43.596 +761393,122.83,50.156 +761394,123.07,48.068 +761395,123.39,45.883 +761396,123.82,43.588 +761397,121.48,50.207 +761398,121.76,48.101 +761399,122.14,45.898 +761400,122.64,43.582 +761401,120.12,50.256 +761402,120.46,48.135 +761403,120.89,45.914 +761404,121.46,43.578 +761405,118.76,50.303 +761406,119.15,48.167 +761407,119.65,45.93 +761408,120.28,43.576 +761409,117.41,50.349 +761410,117.85,48.199 +761411,118.4,45.947 +761412,119.09,43.576 +761413,116.05,50.393 +761414,116.54,48.231 +761415,117.15,45.965 +761416,117.91,43.578 +761417,114.69,50.435 +761418,115.24,48.262 +761419,115.9,45.983 +761420,116.72,43.582 +761421,113.34,50.476 +761422,113.93,48.292 +761423,114.65,46.002 +761424,115.54,43.587 +761425,111.98,50.515 +761426,112.63,48.322 +761427,113.4,46.021 +761428,114.35,43.595 +761429,110.63,50.552 +761430,111.32,48.352 +761431,112.16,46.042 +761432,113.17,43.604 +761433,109.27,50.588 +761434,110.02,48.38 +761435,110.91,46.063 +761436,111.98,43.616 +761437,107.92,50.622 +761438,108.71,48.409 +761439,109.66,46.084 +761440,110.79,43.63 +761441,106.56,50.654 +761442,107.41,48.436 +761443,108.41,46.106 +761444,109.6,43.645 +761445,105.21,50.685 +761446,106.1,48.463 +761447,107.16,46.129 +761448,108.41,43.663 +761449,103.86,50.714 +761450,104.8,48.49 +761451,105.9,46.153 +761452,107.22,43.682 +761453,102.51,50.741 +761454,103.5,48.516 +761455,104.65,46.177 +761456,106.03,43.704 +761457,101.15,50.766 +761458,102.19,48.541 +761459,103.4,46.202 +761460,104.84,43.727 +761461,99.803,50.79 +761462,100.89,48.566 +761463,102.15,46.227 +761464,103.64,43.753 +761465,98.454,50.813 +761466,99.584,48.591 +761467,100.9,46.253 +761468,102.45,43.78 +761469,97.104,50.833 +761470,98.281,48.614 +761471,99.644,46.28 +761472,101.25,43.81 +761473,95.756,50.852 +761474,96.978,48.638 +761475,98.391,46.307 +761476,100.05,43.841 +761477,94.409,50.87 +761478,95.675,48.66 +761479,97.137,46.336 +761480,98.853,43.875 +761481,93.062,50.885 +761482,94.373,48.682 +761483,95.883,46.364 +761484,97.652,43.91 +761485,91.716,50.899 +761486,93.071,48.704 +761487,94.628,46.394 +761488,96.449,43.948 +761489,90.371,50.912 +761490,91.769,48.725 +761491,93.372,46.424 +761492,95.245,43.987 +761493,89.027,50.922 +761494,90.467,48.746 +761495,92.116,46.454 +761496,94.039,44.028 +761497,87.684,50.931 +761498,89.166,48.766 +761499,90.86,46.486 +761500,92.831,44.072 +761501,86.342,50.939 +761502,87.865,48.785 +761503,89.603,46.518 +761504,91.622,44.117 +761505,85.001,50.945 +761506,86.564,48.804 +761507,88.345,46.55 +761508,90.41,44.164 +761509,83.661,50.949 +761510,85.264,48.822 +761511,87.087,46.583 +761512,89.197,44.213 +761513,82.323,50.952 +761514,83.964,48.84 +761515,85.828,46.617 +761516,87.982,44.264 +761517,80.985,50.953 +761518,82.665,48.857 +761519,84.569,46.652 +761520,86.765,44.316 +761521,79.648,50.953 +761522,81.365,48.874 +761523,83.309,46.687 +761524,85.547,44.371 +761525,78.313,50.951 +761526,80.067,48.89 +761527,82.048,46.722 +761528,84.326,44.427 +761529,76.979,50.948 +761530,78.768,48.906 +761531,80.787,46.758 +761532,83.103,44.485 +761533,75.646,50.943 +761534,77.47,48.922 +761535,79.525,46.795 +761536,81.878,44.545 +761537,74.314,50.936 +761538,76.173,48.936 +761539,78.262,46.833 +761540,80.651,44.607 +761541,72.984,50.929 +761542,74.875,48.951 +761543,76.999,46.871 +761544,79.422,44.67 +761545,71.655,50.919 +761546,73.579,48.964 +761547,75.735,46.909 +761548,78.191,44.735 +761549,70.327,50.909 +761550,72.282,48.978 +761551,74.47,46.948 +761552,76.958,44.802 +761553,69.001,50.896 +761554,70.987,48.991 +761555,73.205,46.988 +761556,75.722,44.871 +761557,67.676,50.883 +761558,69.691,49.003 +761559,71.938,47.028 +761560,74.484,44.941 +761561,66.352,50.868 +761562,68.396,49.015 +761563,70.672,47.068 +761564,73.244,45.012 +761565,65.03,50.852 +761566,67.102,49.027 +761567,69.404,47.11 +761568,72.002,45.085 +761569,63.71,50.834 +761570,65.808,49.038 +761571,68.136,47.151 +761572,70.758,45.16 +761573,62.39,50.815 +761574,64.514,49.048 +761575,66.867,47.194 +761576,69.511,45.236 +761577,61.073,50.795 +761578,63.221,49.059 +761579,65.597,47.236 +761580,68.262,45.314 +761581,59.757,50.773 +761582,61.929,49.068 +761583,64.327,47.279 +761584,67.011,45.393 +761585,58.442,50.751 +761586,60.637,49.078 +761587,63.056,47.323 +761588,65.757,45.473 +761589,57.129,50.727 +761590,59.346,49.087 +761591,61.784,47.367 +761592,64.501,45.555 +761593,55.818,50.702 +761594,58.055,49.096 +761595,60.511,47.412 +761596,63.243,45.638 +761597,54.508,50.675 +761598,56.764,49.104 +761599,59.237,47.457 +761600,61.982,45.723 +761601,53.2,50.648 +761602,55.474,49.112 +761603,57.963,47.502 +761604,60.719,45.808 +761605,51.893,50.619 +761606,54.185,49.119 +761607,56.688,47.548 +761608,59.454,45.895 +761609,50.588,50.59 +761610,52.896,49.126 +761611,55.412,47.594 +761612,58.186,45.983 +761613,49.285,50.559 +761614,51.608,49.133 +761615,54.136,47.641 +761616,56.917,46.072 +761617,47.983,50.527 +761618,50.32,49.14 +761619,52.858,47.688 +761620,55.644,46.163 +761621,46.684,50.494 +761622,49.033,49.146 +761623,51.58,47.736 +761624,54.37,46.254 +761625,45.386,50.46 +761626,47.747,49.152 +761627,50.301,47.783 +761628,53.093,46.346 +761629,44.089,50.426 +761630,46.461,49.157 +761631,49.022,47.832 +761632,51.814,46.44 +761633,42.795,50.39 +761634,45.175,49.163 +761635,47.741,47.88 +761636,50.532,46.534 +761637,41.502,50.353 +761638,43.891,49.168 +761639,46.46,47.929 +761640,49.249,46.629 +761641,40.211,50.316 +761642,42.606,49.173 +761643,45.178,47.978 +761644,47.963,46.725 +761645,38.922,50.278 +761646,41.323,49.177 +761647,43.895,48.027 +761648,46.674,46.822 +761649,37.634,50.239 +761650,40.039,49.181 +761651,42.611,48.077 +761652,45.384,46.92 +761653,36.349,50.199 +761654,38.757,49.185 +761655,41.327,48.127 +761656,44.091,47.018 +761657,35.065,50.158 +761658,37.475,49.189 +761659,40.042,48.177 +761660,42.796,47.117 +761661,33.783,50.117 +761662,36.194,49.193 +761663,38.756,48.228 +761664,41.499,47.217 +761665,32.503,50.075 +761666,34.913,49.196 +761667,37.469,48.279 +761668,40.2,47.317 +761669,31.225,50.033 +761670,33.633,49.2 +761671,36.182,48.329 +761672,38.898,47.418 +761673,29.949,49.99 +761674,32.353,49.203 +761675,34.894,48.381 +761676,37.595,47.519 +761677,28.674,49.946 +761678,31.074,49.206 +761679,33.605,48.432 +761680,36.289,47.621 +761681,27.402,49.902 +761682,29.795,49.208 +761683,32.315,48.483 +761684,34.981,47.723 +761685,26.131,49.857 +761686,28.517,49.211 +761687,31.024,48.535 +761688,33.671,47.826 +761689,24.862,49.812 +761690,27.24,49.213 +761691,29.733,48.587 +761692,32.359,47.929 +761693,23.595,49.766 +761694,25.963,49.216 +761695,28.441,48.639 +761696,31.045,48.032 +761697,22.33,49.72 +761698,24.687,49.218 +761699,27.148,48.691 +761700,29.73,48.136 +761701,21.067,49.674 +761702,23.411,49.22 +761703,25.855,48.743 +761704,28.412,48.24 +761705,19.806,49.627 +761706,22.136,49.222 +761707,24.561,48.796 +761708,27.092,48.344 +761709,18.546,49.58 +761710,20.862,49.225 +761711,23.266,48.848 +761712,25.77,48.448 +761713,17.289,49.533 +761714,19.588,49.227 +761715,21.97,48.901 +761716,24.447,48.552 +761717,16.033,49.485 +761718,18.314,49.229 +761719,20.674,48.953 +761720,23.121,48.656 +761721,14.779,49.438 +761722,17.042,49.231 +761723,19.377,49.006 +761724,21.794,48.761 +761725,13.527,49.39 +761726,15.769,49.233 +761727,18.079,49.058 +761728,20.465,48.865 +761729,12.277,49.342 +761730,14.497,49.235 +761731,16.781,49.111 +761732,19.135,48.969 +761733,11.028,49.294 +761734,13.226,49.237 +761735,15.482,49.164 +761736,17.802,49.073 +761737,9.7819,49.247 +761738,11.956,49.239 +761739,14.182,49.216 +761740,16.468,49.177 +761741,8.5372,49.199 +761742,10.685,49.241 +761743,12.882,49.269 +761744,15.132,49.281 +761745,7.2943,49.151 +761746,9.4157,49.243 +761747,11.581,49.321 +761748,13.795,49.385 +761749,6.0532,49.103 +761750,8.1465,49.245 +761751,10.279,49.374 +761752,12.456,49.488 +761753,4.8139,49.056 +761754,6.8778,49.247 +761755,8.9772,49.426 +761756,11.116,49.591 +761757,3.5763,49.008 +761758,5.6096,49.25 +761759,7.6743,49.479 +761760,9.7736,49.694 +761761,2.3405,48.961 +761762,4.3419,49.252 +761763,6.3709,49.531 +761764,8.4301,49.796 +761765,1.1064,48.914 +761766,3.0747,49.255 +761767,5.0668,49.583 +761768,7.0852,49.898 +761769,359.87,48.868 +761770,1.808,49.258 +761771,3.7622,49.635 +761772,5.7389,49.999 +761773,358.64,48.821 +761774,0.54166,49.26 +761775,2.457,49.687 +761776,4.3913,50.1 +761777,357.41,48.776 +761778,359.28,49.263 +761779,1.1512,49.739 +761780,3.0423,50.201 +761781,356.19,48.73 +761782,358.01,49.267 +761783,359.84,49.791 +761784,1.692,50.3 +761785,354.96,48.685 +761786,356.75,49.27 +761787,358.54,49.842 +761788,0.3404,50.4 +761789,353.74,48.64 +761790,355.48,49.274 +761791,357.23,49.893 +761792,358.99,50.498 +761793,352.51,48.596 +761794,354.22,49.278 +761795,355.92,49.945 +761796,357.63,50.596 +761797,351.29,48.553 +761798,352.95,49.282 +761799,354.61,49.995 +761800,356.28,50.693 +761801,350.07,48.51 +761802,351.69,49.286 +761803,353.31,50.046 +761804,354.92,50.79 +761805,348.86,48.468 +761806,350.43,49.29 +761807,352,50.097 +761808,353.56,50.885 +761809,347.64,48.426 +761810,349.16,49.295 +761811,350.69,50.147 +761812,352.21,50.98 +761813,346.42,48.385 +761814,347.9,49.3 +761815,349.38,50.197 +761816,350.85,51.074 +761817,345.21,48.345 +761818,346.64,49.305 +761819,348.07,50.247 +761820,349.49,51.168 +761821,344,48.305 +761822,345.38,49.311 +761823,346.75,50.296 +761824,348.13,51.26 +761825,342.79,48.267 +761826,344.12,49.317 +761827,345.44,50.345 +761828,346.76,51.351 +761829,341.58,48.229 +761830,342.86,49.323 +761831,344.13,50.394 +761832,345.4,51.442 +761833,340.37,48.192 +761834,341.6,49.33 +761835,342.82,50.443 +761836,344.04,51.531 +761837,339.16,48.156 +761838,340.33,49.337 +761839,341.51,50.491 +761840,342.67,51.62 +761841,337.95,48.121 +761842,339.07,49.344 +761843,340.19,50.539 +761844,341.31,51.707 +761845,336.75,48.087 +761846,337.81,49.351 +761847,338.88,50.587 +761848,339.94,51.793 +761849,335.54,48.054 +761850,336.56,49.359 +761851,337.57,50.634 +761852,338.57,51.879 +761853,334.34,48.022 +761854,335.3,49.368 +761855,336.25,50.681 +761856,337.21,51.963 +761857,333.14,47.992 +761858,334.04,49.376 +761859,334.94,50.727 +761860,335.84,52.046 +761861,331.94,47.962 +761862,332.78,49.385 +761863,333.62,50.774 +761864,334.47,52.128 +761865,330.74,47.933 +761866,331.52,49.395 +761867,332.31,50.82 +761868,333.1,52.208 +761869,329.54,47.906 +761870,330.26,49.405 +761871,330.99,50.865 +761872,331.73,52.288 +761873,328.34,47.88 +761874,329,49.415 +761875,329.68,50.91 +761876,330.36,52.366 +761877,327.14,47.855 +761878,327.74,49.426 +761879,328.36,50.955 +761880,328.99,52.443 +761881,325.94,47.831 +761882,326.48,49.437 +761883,327.04,50.999 +761884,327.62,52.519 +761885,324.75,47.809 +761886,325.23,49.449 +761887,325.73,51.043 +761888,326.25,52.593 +761889,323.55,47.788 +761890,323.97,49.461 +761891,324.41,51.086 +761892,324.88,52.666 +761893,322.36,47.768 +761894,322.71,49.473 +761895,323.1,51.129 +761896,323.51,52.738 +761897,321.16,47.75 +761898,321.45,49.486 +761899,321.78,51.172 +761900,322.14,52.808 +761901,319.97,47.733 +761902,320.19,49.5 +761903,320.46,51.214 +761904,320.76,52.877 +761905,318.77,47.717 +761906,318.94,49.514 +761907,319.14,51.255 +761908,319.39,52.945 +761909,317.58,47.703 +761910,317.68,49.528 +761911,317.83,51.296 +761912,318.02,53.011 +761913,316.38,47.691 +761914,316.42,49.543 +761915,316.51,51.337 +761916,316.65,53.076 +761917,315.19,47.68 +761918,315.16,49.559 +761919,315.19,51.377 +761920,315.28,53.139 +761921,314,47.67 +761922,313.9,49.575 +761923,313.88,51.417 +761924,313.9,53.201 +761925,312.8,47.662 +761926,312.65,49.591 +761927,312.56,51.456 +761928,312.53,53.262 +761929,311.61,47.656 +761930,311.39,49.608 +761931,311.24,51.495 +761932,311.16,53.321 +761933,310.42,47.651 +761934,310.13,49.626 +761935,309.92,51.533 +761936,309.79,53.378 +761937,309.22,47.648 +761938,308.87,49.644 +761939,308.61,51.571 +761940,308.42,53.434 +761941,308.03,47.646 +761942,307.61,49.663 +761943,307.29,51.608 +761944,307.04,53.489 +761945,306.84,47.646 +761946,306.35,49.682 +761947,305.97,51.645 +761948,305.67,53.542 +761949,305.64,47.648 +761950,305.09,49.702 +761951,304.65,51.681 +761952,304.3,53.593 +761953,304.45,47.651 +761954,303.83,49.722 +761955,303.34,51.717 +761956,302.93,53.643 +761957,303.25,47.656 +761958,302.58,49.743 +761959,302.02,51.752 +761960,301.56,53.692 +761961,302.06,47.663 +761962,301.32,49.764 +761963,300.7,51.787 +761964,300.19,53.738 +761965,300.86,47.671 +761966,300.06,49.786 +761967,299.38,51.821 +761968,298.82,53.784 +761969,299.66,47.681 +761970,298.8,49.809 +761971,298.07,51.855 +761972,297.45,53.828 +761973,298.47,47.693 +761974,297.54,49.832 +761975,296.75,51.888 +761976,296.08,53.87 +761977,297.27,47.706 +761978,296.28,49.855 +761979,295.43,51.92 +761980,294.71,53.91 +761981,296.07,47.722 +761982,295.01,49.88 +761983,294.12,51.953 +761984,293.34,53.95 +761985,294.87,47.739 +761986,293.75,49.904 +761987,292.8,51.984 +761988,291.98,53.987 +761989,293.67,47.757 +761990,292.49,49.93 +761991,291.48,52.015 +761992,290.61,54.023 +761993,292.47,47.778 +761994,291.23,49.956 +761995,290.17,52.046 +761996,289.24,54.057 +761997,291.27,47.8 +761998,289.97,49.982 +761999,288.85,52.076 +762000,287.88,54.09 +762001,290.06,47.824 +762002,288.71,50.009 +762003,287.53,52.105 +762004,286.51,54.121 +762005,288.86,47.85 +762006,287.44,50.037 +762007,286.22,52.134 +762008,285.15,54.151 +762009,287.65,47.877 +762010,286.18,50.065 +762011,284.9,52.162 +762012,283.79,54.179 +762013,286.45,47.906 +762014,284.92,50.094 +762015,283.59,52.19 +762016,282.42,54.206 +762017,285.24,47.937 +762018,283.65,50.123 +762019,282.27,52.217 +762020,281.06,54.231 +762021,284.03,47.97 +762022,282.39,50.153 +762023,280.96,52.244 +762024,279.7,54.254 +762025,282.82,48.004 +762026,281.12,50.184 +762027,279.64,52.27 +762028,278.34,54.276 +762029,281.61,48.041 +762030,279.86,50.215 +762031,278.33,52.296 +762032,276.98,54.296 +762033,280.39,48.079 +762034,278.59,50.246 +762035,277.02,52.321 +762036,275.62,54.315 +762037,279.18,48.118 +762038,277.32,50.278 +762039,275.7,52.346 +762040,274.27,54.333 +762041,277.96,48.16 +762042,276.06,50.311 +762043,274.39,52.37 +762044,272.91,54.348 +762045,276.74,48.203 +762046,274.79,50.344 +762047,273.08,52.394 +762048,271.55,54.363 +762049,275.52,48.247 +762050,273.52,50.378 +762051,271.76,52.417 +762052,270.2,54.375 +762053,274.3,48.294 +762054,272.25,50.413 +762055,270.45,52.44 +762056,268.85,54.387 +762057,273.08,48.342 +762058,270.98,50.447 +762059,269.14,52.462 +762060,267.5,54.396 +762061,271.85,48.392 +762062,269.71,50.483 +762063,267.83,52.483 +762064,266.14,54.405 +762065,270.63,48.443 +762066,268.44,50.519 +762067,266.52,52.505 +762068,264.79,54.411 +762069,269.4,48.496 +762070,267.17,50.555 +762071,265.2,52.525 +762072,263.45,54.417 +762073,268.17,48.551 +762074,265.9,50.592 +762075,263.89,52.545 +762076,262.1,54.421 +762077,266.94,48.607 +762078,264.63,50.63 +762079,262.58,52.565 +762080,260.75,54.423 +762081,265.7,48.665 +762082,263.35,50.668 +762083,261.28,52.584 +762084,259.41,54.424 +762085,264.46,48.724 +762086,262.08,50.706 +762087,259.97,52.603 +762088,258.07,54.424 +762089,263.23,48.785 +762090,260.81,50.746 +762091,258.66,52.621 +762092,256.72,54.422 +762093,261.98,48.847 +762094,259.53,50.785 +762095,257.35,52.639 +762096,255.38,54.419 +762097,260.74,48.911 +762098,258.26,50.825 +762099,256.04,52.656 +762100,254.04,54.415 +762101,259.5,48.976 +762102,256.98,50.866 +762103,254.73,52.673 +762104,252.71,54.409 +762105,258.25,49.043 +762106,255.7,50.907 +762107,253.43,52.69 +762108,251.37,54.402 +762109,257,49.111 +762110,254.43,50.948 +762111,252.12,52.706 +762112,250.03,54.394 +762113,255.75,49.181 +762114,253.15,50.99 +762115,250.82,52.721 +762116,248.7,54.384 +762117,254.5,49.252 +762118,251.87,51.032 +762119,249.51,52.736 +762120,247.37,54.373 +762121,253.24,49.324 +762122,250.59,51.075 +762123,248.21,52.751 +762124,246.04,54.361 +762125,251.98,49.397 +762126,249.31,51.118 +762127,246.9,52.765 +762128,244.71,54.348 +762129,250.72,49.472 +762130,248.03,51.162 +762131,245.6,52.779 +762132,243.38,54.334 +762133,249.46,49.548 +762134,246.75,51.206 +762135,244.29,52.793 +762136,242.06,54.318 +762137,248.2,49.626 +762138,245.46,51.25 +762139,242.99,52.806 +762140,240.73,54.301 +762141,246.93,49.704 +762142,244.18,51.295 +762143,241.69,52.819 +762144,239.41,54.283 +762145,245.66,49.784 +762146,242.9,51.34 +762147,240.39,52.831 +762148,238.09,54.264 +762149,244.39,49.865 +762150,241.61,51.386 +762151,239.09,52.843 +762152,236.77,54.244 +762153,243.12,49.947 +762154,240.32,51.432 +762155,237.79,52.855 +762156,235.45,54.223 +762157,241.84,50.03 +762158,239.04,51.478 +762159,236.49,52.866 +762160,234.13,54.201 +762161,240.56,50.114 +762162,237.75,51.525 +762163,235.19,52.877 +762164,232.82,54.178 +762165,239.28,50.199 +762166,236.46,51.572 +762167,233.89,52.888 +762168,231.51,54.154 +762169,238,50.285 +762170,235.18,51.619 +762171,232.59,52.898 +762172,230.2,54.129 +762173,236.71,50.372 +762174,233.89,51.667 +762175,231.29,52.908 +762176,228.89,54.103 +762177,235.43,50.459 +762178,232.6,51.715 +762179,229.99,52.918 +762180,227.58,54.076 +762181,234.14,50.548 +762182,231.31,51.763 +762183,228.7,52.928 +762184,226.27,54.048 +762185,232.84,50.637 +762186,230.01,51.812 +762187,227.4,52.937 +762188,224.97,54.02 +762189,231.55,50.728 +762190,228.72,51.86 +762191,226.11,52.946 +762192,223.67,53.99 +762193,230.25,50.819 +762194,227.43,51.909 +762195,224.81,52.955 +762196,222.37,53.96 +762197,228.95,50.911 +762198,226.13,51.959 +762199,223.52,52.963 +762200,221.07,53.929 +762201,227.65,51.003 +762202,224.84,52.008 +762203,222.22,52.971 +762204,219.77,53.898 +762205,226.35,51.096 +762206,223.54,52.058 +762207,220.93,52.979 +762208,218.48,53.866 +762209,225.05,51.19 +762210,222.25,52.108 +762211,219.64,52.987 +762212,217.18,53.833 +762213,223.74,51.284 +762214,220.95,52.158 +762215,218.35,52.995 +762216,215.89,53.799 +762217,222.43,51.379 +762218,219.65,52.208 +762219,217.05,53.002 +762220,214.6,53.765 +762221,221.12,51.474 +762222,218.36,52.259 +762223,215.76,53.01 +762224,213.32,53.73 +762225,219.8,51.57 +762226,217.06,52.31 +762227,214.47,53.017 +762228,212.03,53.695 +762229,218.49,51.666 +762230,215.76,52.36 +762231,213.18,53.024 +762232,210.75,53.659 +762233,217.17,51.762 +762234,214.46,52.411 +762235,211.9,53.03 +762236,209.47,53.623 +762237,215.85,51.859 +762238,213.15,52.462 +762239,210.61,53.037 +762240,208.19,53.587 +762241,214.53,51.956 +762242,211.85,52.514 +762243,209.32,53.044 +762244,206.91,53.55 +762245,213.2,52.054 +762246,210.55,52.565 +762247,208.03,53.05 +762248,205.63,53.512 +762249,211.88,52.152 +762250,209.25,52.616 +762251,206.75,53.056 +762252,204.36,53.475 +762253,210.55,52.249 +762254,207.94,52.668 +762255,205.46,53.063 +762256,203.08,53.437 +762257,209.22,52.347 +762258,206.64,52.719 +762259,204.17,53.069 +762260,201.81,53.398 +762261,207.89,52.445 +762262,205.33,52.771 +762263,202.89,53.075 +762264,200.54,53.36 +762265,206.55,52.544 +762266,204.03,52.823 +762267,201.6,53.081 +762268,199.28,53.321 +762269,205.22,52.642 +762270,202.72,52.874 +762271,200.32,53.087 +762272,198.01,53.282 +762273,203.88,52.74 +762274,201.41,52.926 +762275,199.04,53.093 +762276,196.75,53.243 +762277,202.54,52.838 +762278,200.1,52.978 +762279,197.75,53.099 +762280,195.49,53.204 +762281,201.2,52.936 +762282,198.79,53.029 +762283,196.47,53.105 +762284,194.23,53.165 +762285,199.86,53.034 +762286,197.48,53.081 +762287,195.19,53.111 +762288,192.97,53.126 +762289,198.51,53.132 +762290,196.17,53.133 +762291,193.91,53.117 +762292,191.71,53.087 +762293,197.17,53.23 +762294,194.86,53.184 +762295,192.63,53.123 +762296,190.46,53.048 +762297,195.82,53.327 +762298,193.55,53.236 +762299,191.35,53.129 +762300,189.2,53.009 +762301,194.47,53.425 +762302,192.24,53.287 +762303,190.07,53.135 +762304,187.95,52.97 +762305,193.12,53.522 +762306,190.93,53.339 +762307,188.79,53.141 +762308,186.7,52.932 +762309,191.77,53.618 +762310,189.61,53.39 +762311,187.51,53.148 +762312,185.46,52.893 +762313,190.41,53.714 +762314,188.3,53.441 +762315,186.23,53.154 +762316,184.21,52.855 +762317,189.06,53.81 +762318,186.99,53.492 +762319,184.96,53.16 +762320,182.97,52.817 +762321,187.7,53.906 +762322,185.67,53.543 +762323,183.68,53.167 +762324,181.72,52.779 +762325,186.34,54.001 +762326,184.35,53.594 +762327,182.4,53.174 +762328,180.48,52.742 +762329,184.98,54.095 +762330,183.04,53.645 +762331,181.13,53.181 +762332,179.24,52.705 +762333,183.62,54.189 +762334,181.72,53.695 +762335,179.85,53.188 +762336,178.01,52.668 +762337,182.26,54.282 +762338,180.41,53.745 +762339,178.58,53.195 +762340,176.77,52.632 +762341,180.9,54.375 +762342,179.09,53.795 +762343,177.3,53.202 +762344,175.53,52.596 +762345,179.53,54.467 +762346,177.77,53.845 +762347,176.03,53.21 +762348,174.3,52.561 +762349,178.17,54.559 +762350,176.45,53.895 +762351,174.75,53.217 +762352,173.07,52.527 +762353,176.8,54.649 +762354,175.13,53.945 +762355,173.48,53.225 +762356,171.84,52.492 +762357,175.43,54.739 +762358,173.81,53.994 +762359,172.2,53.233 +762360,170.61,52.459 +762361,174.06,54.829 +762362,172.49,54.043 +762363,170.93,53.242 +762364,169.38,52.426 +762365,172.69,54.917 +762366,171.17,54.092 +762367,169.66,53.25 +762368,168.16,52.394 +762369,171.32,55.005 +762370,169.85,54.14 +762371,168.39,53.259 +762372,166.93,52.362 +762373,169.95,55.092 +762374,168.53,54.189 +762375,167.12,53.268 +762376,165.71,52.332 +762377,168.58,55.178 +762378,167.21,54.236 +762379,165.84,53.277 +762380,164.49,52.302 +762381,167.21,55.263 +762382,165.89,54.284 +762383,164.57,53.287 +762384,163.26,52.272 +762385,165.83,55.347 +762386,164.56,54.332 +762387,163.3,53.297 +762388,162.04,52.244 +762389,164.46,55.43 +762390,163.24,54.379 +762391,162.03,53.307 +762392,160.83,52.216 +762393,163.08,55.513 +762394,161.92,54.425 +762395,160.76,53.317 +762396,159.61,52.19 +762397,161.7,55.594 +762398,160.59,54.472 +762399,159.49,53.328 +762400,158.39,52.164 +762401,160.33,55.674 +762402,159.27,54.518 +762403,158.22,53.339 +762404,157.18,52.139 +762405,158.95,55.753 +762406,157.95,54.564 +762407,156.95,53.351 +762408,155.96,52.115 +762409,157.57,55.832 +762410,156.62,54.609 +762411,155.68,53.363 +762412,154.75,52.093 +762413,156.19,55.909 +762414,155.3,54.654 +762415,154.41,53.375 +762416,153.54,52.071 +762417,154.81,55.985 +762418,153.97,54.699 +762419,153.14,53.387 +762420,152.32,52.05 +762421,153.43,56.059 +762422,152.65,54.743 +762423,151.87,53.4 +762424,151.11,52.03 +762425,152.05,56.133 +762426,151.32,54.787 +762427,150.61,53.413 +762428,149.9,52.012 +762429,150.67,56.206 +762430,150,54.831 +762431,149.34,53.427 +762432,148.69,51.995 +762433,149.29,56.277 +762434,148.67,54.874 +762435,148.07,53.441 +762436,147.48,51.978 +762437,147.91,56.347 +762438,147.35,54.917 +762439,146.8,53.455 +762440,146.27,51.963 +762441,146.53,56.416 +762442,146.02,54.959 +762443,145.53,53.47 +762444,145.07,51.949 +762445,145.15,56.483 +762446,144.69,55.001 +762447,144.26,53.485 +762448,143.86,51.937 +762449,143.77,56.55 +762450,143.37,55.042 +762451,142.99,53.501 +762452,142.65,51.925 +762453,142.38,56.615 +762454,142.04,55.083 +762455,141.73,53.517 +762456,141.45,51.915 +762457,141,56.679 +762458,140.71,55.124 +762459,140.46,53.534 +762460,140.24,51.906 +762461,139.62,56.741 +762462,139.39,55.164 +762463,139.19,53.551 +762464,139.03,51.899 +762465,138.24,56.802 +762466,138.06,55.204 +762467,137.92,53.568 +762468,137.83,51.893 +762469,136.85,56.862 +762470,136.73,55.243 +762471,136.65,53.586 +762472,136.62,51.888 +762473,135.47,56.92 +762474,135.41,55.282 +762475,135.39,53.604 +762476,135.42,51.885 +762477,134.09,56.977 +762478,134.08,55.32 +762479,134.12,53.623 +762480,134.21,51.882 +762481,132.71,57.033 +762482,132.75,55.358 +762483,132.85,53.642 +762484,133.01,51.882 +762485,131.32,57.087 +762486,131.42,55.396 +762487,131.58,53.662 +762488,131.8,51.883 +762489,129.94,57.14 +762490,130.1,55.433 +762491,130.31,53.682 +762492,130.6,51.885 +762493,128.56,57.192 +762494,128.77,55.469 +762495,129.05,53.702 +762496,129.39,51.888 +762497,127.18,57.242 +762498,127.44,55.505 +762499,127.78,53.723 +762500,128.19,51.894 +762501,125.8,57.291 +762502,126.12,55.541 +762503,126.51,53.745 +762504,126.98,51.9 +762505,124.42,57.338 +762506,124.79,55.576 +762507,125.24,53.767 +762508,125.78,51.908 +762509,123.04,57.384 +762510,123.46,55.61 +762511,123.97,53.789 +762512,124.57,51.918 +762513,121.66,57.428 +762514,122.14,55.644 +762515,122.7,53.812 +762516,123.36,51.929 +762517,120.28,57.471 +762518,120.81,55.678 +762519,121.43,53.836 +762520,122.16,51.941 +762521,118.9,57.512 +762522,119.48,55.711 +762523,120.16,53.86 +762524,120.95,51.956 +762525,117.52,57.552 +762526,118.16,55.744 +762527,118.89,53.884 +762528,119.74,51.971 +762529,116.14,57.591 +762530,116.83,55.776 +762531,117.62,53.909 +762532,118.53,51.988 +762533,114.76,57.628 +762534,115.5,55.807 +762535,116.35,53.935 +762536,117.32,52.007 +762537,113.38,57.664 +762538,114.18,55.838 +762539,115.08,53.961 +762540,116.11,52.027 +762541,112.01,57.698 +762542,112.85,55.869 +762543,113.81,53.987 +762544,114.9,52.049 +762545,110.63,57.731 +762546,111.53,55.899 +762547,112.54,54.014 +762548,113.69,52.072 +762549,109.26,57.762 +762550,110.2,55.928 +762551,111.27,54.042 +762552,112.48,52.097 +762553,107.88,57.792 +762554,108.88,55.958 +762555,109.99,54.07 +762556,111.26,52.124 +762557,106.51,57.82 +762558,107.55,55.986 +762559,108.72,54.098 +762560,110.05,52.152 +762561,105.13,57.847 +762562,106.23,56.014 +762563,107.45,54.127 +762564,108.83,52.181 +762565,103.76,57.872 +762566,104.9,56.042 +762567,106.18,54.157 +762568,107.62,52.213 +762569,102.39,57.896 +762570,103.58,56.069 +762571,104.9,54.187 +762572,106.4,52.245 +762573,101.02,57.919 +762574,102.25,56.095 +762575,103.63,54.217 +762576,105.18,52.279 +762577,99.65,57.94 +762578,100.93,56.121 +762579,102.35,54.248 +762580,103.96,52.315 +762581,98.281,57.959 +762582,99.606,56.147 +762583,101.08,54.28 +762584,102.74,52.352 +762585,96.913,57.977 +762586,98.283,56.172 +762587,99.805,54.312 +762588,101.51,52.391 +762589,95.547,57.994 +762590,96.96,56.197 +762591,98.529,54.344 +762592,100.29,52.431 +762593,94.181,58.009 +762594,95.637,56.221 +762595,97.253,54.377 +762596,99.062,52.473 +762597,92.816,58.023 +762598,94.315,56.244 +762599,95.976,54.41 +762600,97.835,52.517 +762601,91.453,58.036 +762602,92.993,56.267 +762603,94.699,54.444 +762604,96.606,52.561 +762605,90.09,58.047 +762606,91.672,56.29 +762607,93.422,54.479 +762608,95.376,52.608 +762609,88.729,58.057 +762610,90.351,56.312 +762611,92.144,54.514 +762612,94.143,52.655 +762613,87.369,58.065 +762614,89.03,56.334 +762615,90.865,54.549 +762616,92.91,52.705 +762617,86.01,58.072 +762618,87.71,56.355 +762619,89.586,54.585 +762620,91.674,52.755 +762621,84.652,58.078 +762622,86.39,56.376 +762623,88.306,54.621 +762624,90.437,52.807 +762625,83.295,58.083 +762626,85.071,56.396 +762627,87.025,54.658 +762628,89.198,52.861 +762629,81.94,58.086 +762630,83.752,56.416 +762631,85.744,54.695 +762632,87.958,52.916 +762633,80.586,58.087 +762634,82.433,56.436 +762635,84.463,54.732 +762636,86.715,52.972 +762637,79.234,58.088 +762638,81.115,56.455 +762639,83.181,54.77 +762640,85.471,53.029 +762641,77.882,58.087 +762642,79.797,56.473 +762643,81.898,54.809 +762644,84.225,53.088 +762645,76.533,58.085 +762646,78.48,56.491 +762647,80.615,54.848 +762648,82.976,53.149 +762649,75.184,58.082 +762650,77.164,56.509 +762651,79.331,54.887 +762652,81.726,53.21 +762653,73.837,58.077 +762654,75.847,56.526 +762655,78.046,54.927 +762656,80.474,53.273 +762657,72.491,58.072 +762658,74.532,56.543 +762659,76.761,54.967 +762660,79.22,53.337 +762661,71.147,58.065 +762662,73.216,56.56 +762663,75.475,55.007 +762664,77.964,53.403 +762665,69.804,58.057 +762666,71.901,56.576 +762667,74.188,55.048 +762668,76.706,53.469 +762669,68.463,58.048 +762670,70.587,56.591 +762671,72.901,55.09 +762672,75.446,53.537 +762673,67.124,58.037 +762674,69.273,56.607 +762675,71.613,55.131 +762676,74.184,53.606 +762677,65.786,58.026 +762678,67.96,56.622 +762679,70.324,55.173 +762680,72.919,53.676 +762681,64.449,58.013 +762682,66.647,56.636 +762683,69.035,55.216 +762684,71.653,53.747 +762685,63.114,58 +762686,65.335,56.65 +762687,67.745,55.258 +762688,70.384,53.819 +762689,61.781,57.985 +762690,64.024,56.664 +762691,66.455,55.301 +762692,69.113,53.893 +762693,60.449,57.97 +762694,62.713,56.677 +762695,65.163,55.345 +762696,67.84,53.967 +762697,59.119,57.953 +762698,61.402,56.691 +762699,63.871,55.389 +762700,66.565,54.043 +762701,57.79,57.935 +762702,60.092,56.703 +762703,62.578,55.433 +762704,65.288,54.119 +762705,56.463,57.917 +762706,58.783,56.716 +762707,61.285,55.477 +762708,64.009,54.196 +762709,55.138,57.897 +762710,57.474,56.728 +762711,59.991,55.522 +762712,62.727,54.275 +762713,53.815,57.877 +762714,56.165,56.74 +762715,58.696,55.567 +762716,61.443,54.354 +762717,52.493,57.856 +762718,54.858,56.751 +762719,57.4,55.612 +762720,60.157,54.434 +762721,51.173,57.834 +762722,53.551,56.763 +762723,56.104,55.658 +762724,58.869,54.515 +762725,49.855,57.811 +762726,52.244,56.774 +762727,54.807,55.703 +762728,57.579,54.596 +762729,48.538,57.787 +762730,50.938,56.784 +762731,53.509,55.749 +762732,56.286,54.679 +762733,47.224,57.763 +762734,49.633,56.795 +762735,52.211,55.796 +762736,54.991,54.762 +762737,45.911,57.738 +762738,48.328,56.805 +762739,50.911,55.842 +762740,53.694,54.846 +762741,44.599,57.712 +762742,47.024,56.815 +762743,49.611,55.889 +762744,52.395,54.93 +762745,43.29,57.685 +762746,45.72,56.824 +762747,48.311,55.936 +762748,51.094,55.016 +762749,41.982,57.658 +762750,44.417,56.834 +762751,47.009,55.983 +762752,49.79,55.102 +762753,40.677,57.63 +762754,43.114,56.843 +762755,45.707,56.03 +762756,48.484,55.188 +762757,39.373,57.602 +762758,41.813,56.852 +762759,44.404,56.078 +762760,47.176,55.275 +762761,38.07,57.573 +762762,40.511,56.861 +762763,43.101,56.126 +762764,45.866,55.362 +762765,36.77,57.543 +762766,39.211,56.87 +762767,41.796,56.173 +762768,44.554,55.45 +762769,35.471,57.513 +762770,37.911,56.878 +762771,40.491,56.221 +762772,43.24,55.539 +762773,34.175,57.482 +762774,36.611,56.887 +762775,39.186,56.27 +762776,41.923,55.628 +762777,32.88,57.451 +762778,35.312,56.895 +762779,37.879,56.318 +762780,40.605,55.717 +762781,31.587,57.42 +762782,34.014,56.903 +762783,36.572,56.366 +762784,39.284,55.806 +762785,30.295,57.388 +762786,32.716,56.911 +762787,35.264,56.415 +762788,37.962,55.896 +762789,29.006,57.356 +762790,31.419,56.919 +762791,33.956,56.463 +762792,36.637,55.986 +762793,27.718,57.323 +762794,30.123,56.927 +762795,32.647,56.512 +762796,35.311,56.077 +762797,26.432,57.291 +762798,28.827,56.934 +762799,31.337,56.561 +762800,33.982,56.167 +762801,25.148,57.258 +762802,27.531,56.942 +762803,30.026,56.609 +762804,32.651,56.258 +762805,23.866,57.224 +762806,26.236,56.949 +762807,28.715,56.658 +762808,31.319,56.349 +762809,22.586,57.191 +762810,24.942,56.956 +762811,27.403,56.707 +762812,29.984,56.44 +762813,21.307,57.157 +762814,23.649,56.964 +762815,26.09,56.756 +762816,28.648,56.531 +762817,20.031,57.123 +762818,22.356,56.971 +762819,24.777,56.805 +762820,27.309,56.622 +762821,18.756,57.09 +762822,21.063,56.978 +762823,23.463,56.854 +762824,25.969,56.713 +762825,17.483,57.056 +762826,19.771,56.986 +762827,22.148,56.903 +762828,24.627,56.804 +762829,16.211,57.022 +762830,18.48,56.993 +762831,20.833,56.952 +762832,23.284,56.895 +762833,14.942,56.988 +762834,17.189,57 +762835,19.517,57 +762836,21.938,56.986 +762837,13.674,56.954 +762838,15.899,57.007 +762839,18.201,57.049 +762840,20.591,57.077 +762841,12.408,56.92 +762842,14.609,57.015 +762843,16.883,57.098 +762844,19.242,57.168 +762845,11.143,56.886 +762846,13.32,57.022 +762847,15.566,57.147 +762848,17.891,57.258 +762849,9.8807,56.852 +762850,12.031,57.029 +762851,14.247,57.195 +762852,16.539,57.348 +762853,8.6198,56.819 +762854,10.743,57.037 +762855,12.928,57.244 +762856,15.185,57.438 +762857,7.3605,56.785 +762858,9.4551,57.044 +762859,11.609,57.292 +762860,13.83,57.528 +762861,6.1029,56.752 +762862,8.1679,57.051 +762863,10.289,57.34 +762864,12.473,57.617 +762865,4.847,56.719 +762866,6.8813,57.059 +762867,8.968,57.389 +762868,11.114,57.706 +762869,3.5927,56.687 +762870,5.5951,57.067 +762871,7.6468,57.437 +762872,9.7541,57.794 +762873,2.34,56.655 +762874,4.3094,57.075 +762875,6.325,57.485 +762876,8.3926,57.883 +762877,1.0889,56.623 +762878,3.0242,57.083 +762879,5.0027,57.532 +762880,7.0298,57.97 +762881,359.84,56.591 +762882,1.7395,57.091 +762883,3.6798,57.58 +762884,5.6655,58.057 +762885,358.59,56.56 +762886,0.4552,57.099 +762887,2.3565,57.627 +762888,4.2999,58.144 +762889,357.34,56.529 +762890,359.17,57.107 +762891,1.0326,57.675 +762892,2.933,58.23 +762893,356.1,56.499 +762894,357.89,57.116 +762895,359.71,57.722 +762896,1.5649,58.316 +762897,354.86,56.47 +762898,356.6,57.124 +762899,358.38,57.769 +762900,0.19546,58.4 +762901,353.61,56.44 +762902,355.32,57.133 +762903,357.06,57.815 +762904,358.82,58.485 +762905,352.37,56.412 +762906,354.04,57.142 +762907,355.73,57.862 +762908,357.45,58.568 +762909,351.13,56.384 +762910,352.76,57.152 +762911,354.41,57.908 +762912,356.08,58.651 +762913,349.9,56.356 +762914,351.48,57.161 +762915,353.08,57.954 +762916,354.71,58.733 +762917,348.66,56.33 +762918,350.2,57.171 +762919,351.75,58 +762920,353.33,58.815 +762921,347.42,56.304 +762922,348.92,57.181 +762923,350.42,58.045 +762924,351.96,58.895 +762925,346.19,56.278 +762926,347.64,57.191 +762927,349.1,58.09 +762928,350.58,58.975 +762929,344.96,56.254 +762930,346.36,57.201 +762931,347.77,58.135 +762932,349.2,59.054 +762933,343.73,56.23 +762934,345.08,57.212 +762935,346.44,58.18 +762936,347.82,59.133 +762937,342.5,56.207 +762938,343.8,57.223 +762939,345.11,58.224 +762940,346.44,59.21 +762941,341.27,56.185 +762942,342.52,57.234 +762943,343.78,58.268 +762944,345.06,59.286 +762945,340.04,56.164 +762946,341.24,57.245 +762947,342.45,58.312 +762948,343.68,59.362 +762949,338.81,56.143 +762950,339.96,57.257 +762951,341.12,58.355 +762952,342.3,59.436 +762953,337.59,56.124 +762954,338.68,57.269 +762955,339.79,58.398 +762956,340.92,59.51 +762957,336.36,56.105 +762958,337.4,57.282 +762959,338.46,58.441 +762960,339.53,59.582 +762961,335.14,56.087 +762962,336.13,57.294 +762963,337.13,58.483 +762964,338.15,59.654 +762965,333.91,56.071 +762966,334.85,57.307 +762967,335.8,58.526 +762968,336.76,59.724 +762969,332.69,56.055 +762970,333.57,57.32 +762971,334.47,58.567 +762972,335.38,59.794 +762973,331.47,56.04 +762974,332.29,57.334 +762975,333.14,58.609 +762976,333.99,59.862 +762977,330.25,56.027 +762978,331.02,57.348 +762979,331.8,58.649 +762980,332.61,59.93 +762981,329.03,56.014 +762982,329.74,57.362 +762983,330.47,58.69 +762984,331.22,59.996 +762985,327.81,56.003 +762986,328.46,57.377 +762987,329.14,58.73 +762988,329.83,60.061 +762989,326.59,55.992 +762990,327.19,57.392 +762991,327.81,58.77 +762992,328.45,60.125 +762993,325.37,55.983 +762994,325.91,57.408 +762995,326.47,58.809 +762996,327.06,60.188 +762997,324.15,55.975 +762998,324.64,57.424 +762999,325.14,58.848 +763000,325.67,60.249 +763001,322.94,55.968 +763002,323.36,57.44 +763003,323.81,58.887 +763004,324.28,60.309 +763005,321.72,55.962 +763006,322.08,57.456 +763007,322.48,58.925 +763008,322.89,60.369 +763009,320.5,55.958 +763010,320.81,57.473 +763011,321.14,58.963 +763012,321.5,60.427 +763013,319.29,55.955 +763014,319.53,57.491 +763015,319.81,59 +763016,320.12,60.483 +763017,318.07,55.953 +763018,318.26,57.508 +763019,318.48,59.037 +763020,318.73,60.539 +763021,316.86,55.952 +763022,316.98,57.527 +763023,317.14,59.074 +763024,317.34,60.593 +763025,315.64,55.952 +763026,315.7,57.545 +763027,315.81,59.11 +763028,315.95,60.646 +763029,314.43,55.954 +763030,314.43,57.564 +763031,314.47,59.145 +763032,314.56,60.697 +763033,313.21,55.957 +763034,313.15,57.584 +763035,313.14,59.181 +763036,313.17,60.748 +763037,312,55.961 +763038,311.88,57.604 +763039,311.81,59.215 +763040,311.78,60.797 +763041,310.78,55.967 +763042,310.6,57.624 +763043,310.47,59.25 +763044,310.39,60.844 +763045,309.57,55.974 +763046,309.32,57.645 +763047,309.14,59.283 +763048,309.01,60.891 +763049,308.35,55.983 +763050,308.05,57.666 +763051,307.81,59.317 +763052,307.62,60.936 +763053,307.13,55.992 +763054,306.77,57.687 +763055,306.47,59.35 +763056,306.23,60.98 +763057,305.92,56.003 +763058,305.5,57.709 +763059,305.14,59.382 +763060,304.84,61.022 +763061,304.7,56.016 +763062,304.22,57.732 +763063,303.81,59.414 +763064,303.46,61.063 +763065,303.49,56.03 +763066,302.94,57.755 +763067,302.47,59.445 +763068,302.07,61.103 +763069,302.27,56.045 +763070,301.67,57.778 +763071,301.14,59.476 +763072,300.68,61.141 +763073,301.05,56.061 +763074,300.39,57.802 +763075,299.81,59.507 +763076,299.3,61.178 +763077,299.84,56.08 +763078,299.11,57.826 +763079,298.47,59.537 +763080,297.91,61.213 +763081,298.62,56.099 +763082,297.83,57.851 +763083,297.14,59.567 +763084,296.53,61.248 +763085,297.4,56.12 +763086,296.56,57.876 +763087,295.81,59.596 +763088,295.14,61.281 +763089,296.18,56.142 +763090,295.28,57.902 +763091,294.48,59.625 +763092,293.76,61.312 +763093,294.96,56.166 +763094,294,57.928 +763095,293.14,59.653 +763096,292.37,61.342 +763097,293.74,56.191 +763098,292.72,57.954 +763099,291.81,59.681 +763100,290.99,61.371 +763101,292.52,56.217 +763102,291.44,57.981 +763103,290.48,59.708 +763104,289.61,61.398 +763105,291.3,56.245 +763106,290.17,58.009 +763107,289.15,59.735 +763108,288.23,61.424 +763109,290.08,56.274 +763110,288.89,58.036 +763111,287.82,59.761 +763112,286.85,61.449 +763113,288.85,56.305 +763114,287.61,58.065 +763115,286.48,59.787 +763116,285.47,61.472 +763117,287.63,56.337 +763118,286.33,58.094 +763119,285.15,59.812 +763120,284.09,61.494 +763121,286.4,56.37 +763122,285.05,58.123 +763123,283.82,59.837 +763124,282.71,61.514 +763125,285.17,56.405 +763126,283.77,58.152 +763127,282.49,59.861 +763128,281.33,61.534 +763129,283.95,56.441 +763130,282.48,58.183 +763131,281.16,59.885 +763132,279.96,61.551 +763133,282.72,56.479 +763134,281.2,58.213 +763135,279.83,59.909 +763136,278.58,61.568 +763137,281.49,56.518 +763138,279.92,58.244 +763139,278.5,59.932 +763140,277.2,61.583 +763141,280.26,56.558 +763142,278.64,58.276 +763143,277.17,59.955 +763144,275.83,61.597 +763145,279.02,56.6 +763146,277.36,58.307 +763147,275.84,59.977 +763148,274.46,61.61 +763149,277.79,56.643 +763150,276.07,58.34 +763151,274.51,59.998 +763152,273.09,61.621 +763153,276.55,56.687 +763154,274.79,58.372 +763155,273.19,60.02 +763156,271.72,61.631 +763157,275.32,56.733 +763158,273.51,58.406 +763159,271.86,60.04 +763160,270.35,61.639 +763161,274.08,56.78 +763162,272.22,58.439 +763163,270.53,60.061 +763164,268.98,61.647 +763165,272.84,56.828 +763166,270.94,58.473 +763167,269.2,60.081 +763168,267.61,61.653 +763169,271.6,56.878 +763170,269.65,58.508 +763171,267.88,60.1 +763172,266.25,61.658 +763173,270.35,56.929 +763174,268.37,58.542 +763175,266.55,60.119 +763176,264.88,61.661 +763177,269.11,56.981 +763178,267.08,58.578 +763179,265.22,60.138 +763180,263.52,61.664 +763181,267.86,57.034 +763182,265.79,58.613 +763183,263.9,60.156 +763184,262.15,61.665 +763185,266.62,57.089 +763186,264.5,58.649 +763187,262.57,60.174 +763188,260.79,61.665 +763189,265.37,57.145 +763190,263.22,58.686 +763191,261.25,60.191 +763192,259.43,61.664 +763193,264.12,57.202 +763194,261.93,58.722 +763195,259.92,60.208 +763196,258.08,61.661 +763197,262.86,57.26 +763198,260.64,58.759 +763199,258.6,60.225 +763200,256.72,61.658 +763201,261.61,57.319 +763202,259.35,58.797 +763203,257.28,60.241 +763204,255.36,61.653 +763205,260.35,57.379 +763206,258.06,58.835 +763207,255.95,60.257 +763208,254.01,61.647 +763209,259.09,57.441 +763210,256.77,58.873 +763211,254.63,60.272 +763212,252.66,61.64 +763213,257.83,57.504 +763214,255.48,58.912 +763215,253.31,60.287 +763216,251.3,61.632 +763217,256.57,57.567 +763218,254.18,58.951 +763219,251.99,60.302 +763220,249.95,61.623 +763221,255.31,57.632 +763222,252.89,58.99 +763223,250.67,60.316 +763224,248.61,61.613 +763225,254.04,57.698 +763226,251.6,59.029 +763227,249.35,60.33 +763228,247.26,61.602 +763229,252.77,57.765 +763230,250.3,59.069 +763231,248.03,60.344 +763232,245.91,61.59 +763233,251.5,57.833 +763234,249.01,59.11 +763235,246.71,60.357 +763236,244.57,61.577 +763237,250.23,57.901 +763238,247.71,59.15 +763239,245.39,60.37 +763240,243.23,61.563 +763241,248.96,57.971 +763242,246.42,59.191 +763243,244.07,60.383 +763244,241.89,61.548 +763245,247.68,58.042 +763246,245.12,59.232 +763247,242.75,60.395 +763248,240.55,61.532 +763249,246.4,58.113 +763250,243.82,59.273 +763251,241.44,60.407 +763252,239.21,61.515 +763253,245.12,58.185 +763254,242.52,59.315 +763255,240.12,60.418 +763256,237.87,61.498 +763257,243.84,58.259 +763258,241.23,59.357 +763259,238.8,60.43 +763260,236.54,61.479 +763261,242.55,58.333 +763262,239.93,59.399 +763263,237.49,60.441 +763264,235.21,61.46 +763265,241.27,58.407 +763266,238.63,59.442 +763267,236.17,60.452 +763268,233.88,61.44 +763269,239.98,58.483 +763270,237.33,59.484 +763271,234.86,60.462 +763272,232.55,61.419 +763273,238.69,58.559 +763274,236.02,59.527 +763275,233.54,60.473 +763276,231.22,61.397 +763277,237.4,58.636 +763278,234.72,59.57 +763279,232.23,60.483 +763280,229.89,61.374 +763281,236.1,58.713 +763282,233.42,59.614 +763283,230.92,60.492 +763284,228.57,61.351 +763285,234.81,58.792 +763286,232.12,59.657 +763287,229.61,60.502 +763288,227.25,61.328 +763289,233.51,58.87 +763290,230.81,59.701 +763291,228.29,60.511 +763292,225.93,61.303 +763293,232.21,58.95 +763294,229.51,59.745 +763295,226.98,60.52 +763296,224.61,61.278 +763297,230.9,59.03 +763298,228.2,59.789 +763299,225.67,60.529 +763300,223.29,61.252 +763301,229.6,59.11 +763302,226.9,59.833 +763303,224.36,60.538 +763304,221.98,61.226 +763305,228.29,59.191 +763306,225.59,59.878 +763307,223.05,60.547 +763308,220.66,61.199 +763309,226.98,59.272 +763310,224.28,59.922 +763311,221.75,60.555 +763312,219.35,61.172 +763313,225.67,59.354 +763314,222.97,59.967 +763315,220.44,60.563 +763316,218.04,61.144 +763317,224.35,59.436 +763318,221.66,60.012 +763319,219.13,60.571 +763320,216.73,61.116 +763321,223.04,59.519 +763322,220.35,60.057 +763323,217.82,60.579 +763324,215.43,61.087 +763325,221.72,59.602 +763326,219.04,60.102 +763327,216.52,60.587 +763328,214.12,61.058 +763329,220.4,59.685 +763330,217.73,60.147 +763331,215.21,60.594 +763332,212.82,61.029 +763333,219.08,59.768 +763334,216.42,60.192 +763335,213.91,60.602 +763336,211.52,60.999 +763337,217.76,59.852 +763338,215.11,60.238 +763339,212.6,60.609 +763340,210.22,60.969 +763341,216.43,59.936 +763342,213.8,60.283 +763343,211.3,60.617 +763344,208.92,60.939 +763345,215.1,60.02 +763346,212.48,60.328 +763347,210,60.624 +763348,207.63,60.908 +763349,213.77,60.104 +763350,211.17,60.374 +763351,208.69,60.631 +763352,206.33,60.878 +763353,212.44,60.189 +763354,209.85,60.419 +763355,207.39,60.638 +763356,205.04,60.847 +763357,211.11,60.273 +763358,208.54,60.465 +763359,206.09,60.645 +763360,203.75,60.815 +763361,209.77,60.357 +763362,207.22,60.51 +763363,204.79,60.652 +763364,202.46,60.784 +763365,208.43,60.442 +763366,205.9,60.556 +763367,203.49,60.659 +763368,201.17,60.753 +763369,207.09,60.526 +763370,204.59,60.601 +763371,202.19,60.666 +763372,199.89,60.721 +763373,205.75,60.611 +763374,203.27,60.647 +763375,200.89,60.673 +763376,198.61,60.69 +763377,204.41,60.695 +763378,201.95,60.692 +763379,199.59,60.679 +763380,197.32,60.658 +763381,203.06,60.779 +763382,200.63,60.738 +763383,198.29,60.686 +763384,196.05,60.627 +763385,201.72,60.863 +763386,199.31,60.783 +763387,197,60.693 +763388,194.77,60.595 +763389,200.37,60.947 +763390,197.99,60.828 +763391,195.7,60.7 +763392,193.49,60.564 +763393,199.02,61.031 +763394,196.67,60.874 +763395,194.4,60.707 +763396,192.22,60.533 +763397,197.67,61.114 +763398,195.34,60.919 +763399,193.11,60.714 +763400,190.94,60.502 +763401,196.31,61.197 +763402,194.02,60.964 +763403,191.81,60.721 +763404,189.67,60.471 +763405,194.96,61.28 +763406,192.7,61.009 +763407,190.52,60.728 +763408,188.4,60.44 +763409,193.6,61.363 +763410,191.38,61.054 +763411,189.22,60.735 +763412,187.14,60.41 +763413,192.24,61.445 +763414,190.05,61.098 +763415,187.93,60.743 +763416,185.87,60.38 +763417,190.88,61.527 +763418,188.73,61.143 +763419,186.64,60.75 +763420,184.61,60.35 +763421,189.52,61.608 +763422,187.4,61.187 +763423,185.34,60.757 +763424,183.34,60.32 +763425,188.16,61.689 +763426,186.08,61.232 +763427,184.05,60.765 +763428,182.08,60.291 +763429,186.8,61.77 +763430,184.75,61.276 +763431,182.76,60.773 +763432,180.82,60.262 +763433,185.43,61.85 +763434,183.42,61.32 +763435,181.47,60.781 +763436,179.56,60.234 +763437,184.06,61.929 +763438,182.09,61.364 +763439,180.18,60.789 +763440,178.31,60.206 +763441,182.7,62.008 +763442,180.77,61.407 +763443,178.89,60.797 +763444,177.05,60.179 +763445,181.33,62.086 +763446,179.44,61.451 +763447,177.6,60.805 +763448,175.8,60.152 +763449,179.95,62.164 +763450,178.11,61.494 +763451,176.31,60.814 +763452,174.55,60.125 +763453,178.58,62.241 +763454,176.78,61.537 +763455,175.02,60.822 +763456,173.3,60.099 +763457,177.21,62.318 +763458,175.45,61.58 +763459,173.73,60.831 +763460,172.05,60.074 +763461,175.83,62.393 +763462,174.12,61.622 +763463,172.44,60.84 +763464,170.8,60.049 +763465,174.46,62.468 +763466,172.79,61.664 +763467,171.15,60.849 +763468,169.55,60.025 +763469,173.08,62.543 +763470,171.46,61.706 +763471,169.87,60.859 +763472,168.31,60.002 +763473,171.7,62.616 +763474,170.13,61.748 +763475,168.58,60.868 +763476,167.06,59.979 +763477,170.32,62.689 +763478,168.79,61.79 +763479,167.29,60.878 +763480,165.82,59.957 +763481,168.94,62.761 +763482,167.46,61.831 +763483,166.01,60.889 +763484,164.58,59.936 +763485,167.56,62.832 +763486,166.13,61.872 +763487,164.72,60.899 +763488,163.34,59.916 +763489,166.18,62.902 +763490,164.8,61.912 +763491,163.44,60.91 +763492,162.1,59.896 +763493,164.8,62.972 +763494,163.46,61.953 +763495,162.15,60.921 +763496,160.86,59.877 +763497,163.42,63.04 +763498,162.13,61.993 +763499,160.87,60.932 +763500,159.62,59.859 +763501,162.03,63.108 +763502,160.79,62.033 +763503,159.58,60.943 +763504,158.39,59.842 +763505,160.65,63.174 +763506,159.46,62.072 +763507,158.3,60.955 +763508,157.15,59.826 +763509,159.26,63.24 +763510,158.13,62.111 +763511,157.01,60.967 +763512,155.92,59.81 +763513,157.87,63.305 +763514,156.79,62.15 +763515,155.73,60.98 +763516,154.68,59.796 +763517,156.49,63.368 +763518,155.46,62.188 +763519,154.44,60.992 +763520,153.45,59.783 +763521,155.1,63.431 +763522,154.12,62.226 +763523,153.16,61.005 +763524,152.22,59.77 +763525,153.71,63.493 +763526,152.78,62.264 +763527,151.88,61.019 +763528,150.99,59.759 +763529,152.32,63.553 +763530,151.45,62.301 +763531,150.59,61.032 +763532,149.76,59.748 +763533,150.93,63.613 +763534,150.11,62.338 +763535,149.31,61.046 +763536,148.53,59.739 +763537,149.54,63.671 +763538,148.78,62.375 +763539,148.03,61.061 +763540,147.3,59.731 +763541,148.15,63.728 +763542,147.44,62.411 +763543,146.75,61.076 +763544,146.08,59.723 +763545,146.76,63.785 +763546,146.1,62.447 +763547,145.46,61.091 +763548,144.85,59.717 +763549,145.37,63.84 +763550,144.77,62.482 +763551,144.18,61.106 +763552,143.62,59.712 +763553,143.98,63.894 +763554,143.43,62.517 +763555,142.9,61.122 +763556,142.4,59.708 +763557,142.59,63.946 +763558,142.09,62.552 +763559,141.62,61.138 +763560,141.17,59.706 +763561,141.2,63.998 +763562,140.75,62.586 +763563,140.34,61.154 +763564,139.95,59.704 +763565,139.8,64.048 +763566,139.42,62.62 +763567,139.06,61.171 +763568,138.72,59.704 +763569,138.41,64.098 +763570,138.08,62.653 +763571,137.77,61.189 +763572,137.5,59.704 +763573,137.02,64.145 +763574,136.74,62.686 +763575,136.49,61.206 +763576,136.27,59.706 +763577,135.63,64.192 +763578,135.4,62.719 +763579,135.21,61.224 +763580,135.05,59.709 +763581,134.24,64.238 +763582,134.07,62.751 +763583,133.93,61.243 +763584,133.83,59.714 +763585,132.84,64.282 +763586,132.73,62.783 +763587,132.65,61.262 +763588,132.6,59.719 +763589,131.45,64.325 +763590,131.39,62.814 +763591,131.37,61.281 +763592,131.38,59.726 +763593,130.06,64.367 +763594,130.05,62.845 +763595,130.08,61.301 +763596,130.16,59.734 +763597,128.67,64.408 +763598,128.71,62.876 +763599,128.8,61.321 +763600,128.94,59.744 +763601,127.28,64.447 +763602,127.38,62.906 +763603,127.52,61.341 +763604,127.71,59.754 +763605,125.88,64.485 +763606,126.04,62.935 +763607,126.24,61.362 +763608,126.49,59.766 +763609,124.49,64.522 +763610,124.7,62.964 +763611,124.96,61.383 +763612,125.27,59.779 +763613,123.1,64.557 +763614,123.36,62.993 +763615,123.68,61.405 +763616,124.04,59.794 +763617,121.71,64.591 +763618,122.03,63.021 +763619,122.39,61.427 +763620,122.82,59.81 +763621,120.32,64.624 +763622,120.69,63.049 +763623,121.11,61.45 +763624,121.6,59.827 +763625,118.93,64.656 +763626,119.35,63.076 +763627,119.83,61.473 +763628,120.37,59.845 +763629,117.54,64.686 +763630,118.01,63.103 +763631,118.55,61.496 +763632,119.15,59.865 +763633,116.15,64.715 +763634,116.68,63.13 +763635,117.26,61.52 +763636,117.92,59.886 +763637,114.76,64.743 +763638,115.34,63.156 +763639,115.98,61.544 +763640,116.7,59.908 +763641,113.37,64.769 +763642,114,63.181 +763643,114.7,61.569 +763644,115.47,59.932 +763645,111.99,64.794 +763646,112.67,63.206 +763647,113.42,61.594 +763648,114.24,59.957 +763649,110.6,64.818 +763650,111.33,63.231 +763651,112.13,61.619 +763652,113.02,59.983 +763653,109.21,64.84 +763654,109.99,63.255 +763655,110.85,61.645 +763656,111.79,60.011 +763657,107.83,64.862 +763658,108.66,63.279 +763659,109.56,61.672 +763660,110.56,60.04 +763661,106.44,64.882 +763662,107.32,63.303 +763663,108.28,61.698 +763664,109.33,60.07 +763665,105.06,64.9 +763666,105.98,63.325 +763667,107,61.726 +763668,108.1,60.101 +763669,103.67,64.918 +763670,104.65,63.348 +763671,105.71,61.753 +763672,106.87,60.134 +763673,102.29,64.934 +763674,103.31,63.37 +763675,104.43,61.781 +763676,105.64,60.168 +763677,100.91,64.949 +763678,101.98,63.391 +763679,103.14,61.81 +763680,104.41,60.203 +763681,99.529,64.962 +763682,100.64,63.413 +763683,101.85,61.839 +763684,103.17,60.24 +763685,98.148,64.975 +763686,99.31,63.433 +763687,100.57,61.868 +763688,101.94,60.278 +763689,96.769,64.986 +763690,97.976,63.454 +763691,99.282,61.897 +763692,100.7,60.317 +763693,95.391,64.995 +763694,96.642,63.474 +763695,97.996,61.928 +763696,99.466,60.358 +763697,94.013,65.004 +763698,95.308,63.493 +763699,96.708,61.958 +763700,98.228,60.399 +763701,92.637,65.011 +763702,93.975,63.512 +763703,95.421,61.989 +763704,96.989,60.442 +763705,91.262,65.018 +763706,92.642,63.531 +763707,94.133,62.02 +763708,95.749,60.486 +763709,89.887,65.023 +763710,91.31,63.549 +763711,92.844,62.052 +763712,94.507,60.532 +763713,88.514,65.026 +763714,89.978,63.567 +763715,91.556,62.084 +763716,93.264,60.578 +763717,87.142,65.029 +763718,88.646,63.584 +763719,90.266,62.116 +763720,92.02,60.626 +763721,85.771,65.031 +763722,87.315,63.601 +763723,88.977,62.149 +763724,90.775,60.675 +763725,84.401,65.031 +763726,85.984,63.617 +763727,87.686,62.182 +763728,89.528,60.725 +763729,83.033,65.03 +763730,84.653,63.634 +763731,86.396,62.216 +763732,88.279,60.776 +763733,81.665,65.028 +763734,83.323,63.649 +763735,85.104,62.249 +763736,87.029,60.828 +763737,80.299,65.025 +763738,81.993,63.665 +763739,83.813,62.284 +763740,85.778,60.882 +763741,78.934,65.021 +763742,80.664,63.68 +763743,82.521,62.318 +763744,84.525,60.936 +763745,77.571,65.016 +763746,79.335,63.694 +763747,81.228,62.353 +763748,83.27,60.992 +763749,76.209,65.009 +763750,78.007,63.709 +763751,79.935,62.388 +763752,82.014,61.048 +763753,74.848,65.002 +763754,76.679,63.723 +763755,78.641,62.424 +763756,80.756,61.106 +763757,73.488,64.994 +763758,75.351,63.736 +763759,77.347,62.46 +763760,79.497,61.165 +763761,72.13,64.984 +763762,74.024,63.749 +763763,76.052,62.496 +763764,78.235,61.225 +763765,70.773,64.974 +763766,72.698,63.762 +763767,74.756,62.533 +763768,76.972,61.285 +763769,69.418,64.963 +763770,71.372,63.775 +763771,73.46,62.57 +763772,75.708,61.347 +763773,68.064,64.95 +763774,70.046,63.787 +763775,72.164,62.607 +763776,74.441,61.41 +763777,66.712,64.937 +763778,68.721,63.799 +763779,70.867,62.644 +763780,73.173,61.473 +763781,65.361,64.923 +763782,67.396,63.811 +763783,69.569,62.682 +763784,71.903,61.537 +763785,64.012,64.908 +763786,66.072,63.822 +763787,68.271,62.72 +763788,70.631,61.603 +763789,62.664,64.892 +763790,64.749,63.833 +763791,66.972,62.758 +763792,69.357,61.669 +763793,61.318,64.875 +763794,63.426,63.844 +763795,65.672,62.797 +763796,68.081,61.736 +763797,59.973,64.858 +763798,62.103,63.854 +763799,64.372,62.836 +763800,66.803,61.803 +763801,58.63,64.839 +763802,60.781,63.864 +763803,63.071,62.875 +763804,65.524,61.872 +763805,57.289,64.82 +763806,59.46,63.874 +763807,61.77,62.914 +763808,64.242,61.941 +763809,55.949,64.8 +763810,58.139,63.883 +763811,60.468,62.954 +763812,62.959,62.011 +763813,54.611,64.78 +763814,56.819,63.893 +763815,59.165,62.994 +763816,61.673,62.082 +763817,53.274,64.758 +763818,55.499,63.902 +763819,57.862,63.034 +763820,60.386,62.153 +763821,51.939,64.736 +763822,54.18,63.911 +763823,56.558,63.074 +763824,59.097,62.225 +763825,50.606,64.714 +763826,52.862,63.919 +763827,55.254,63.114 +763828,57.805,62.298 +763829,49.275,64.69 +763830,51.544,63.928 +763831,53.948,63.155 +763832,56.512,62.371 +763833,47.945,64.666 +763834,50.226,63.936 +763835,52.642,63.196 +763836,55.217,62.445 +763837,46.617,64.642 +763838,48.909,63.944 +763839,51.336,63.237 +763840,53.919,62.519 +763841,45.29,64.617 +763842,47.593,63.952 +763843,50.029,63.278 +763844,52.62,62.594 +763845,43.965,64.591 +763846,46.277,63.959 +763847,48.721,63.319 +763848,51.318,62.669 +763849,42.642,64.565 +763850,44.962,63.967 +763851,47.412,63.36 +763852,50.015,62.745 +763853,41.321,64.538 +763854,43.648,63.974 +763855,46.103,63.402 +763856,48.709,62.821 +763857,40.001,64.511 +763858,42.334,63.981 +763859,44.793,63.444 +763860,47.402,62.898 +763861,38.684,64.484 +763862,41.02,63.988 +763863,43.483,63.485 +763864,46.093,62.975 +763865,37.368,64.456 +763866,39.708,63.995 +763867,42.172,63.527 +763868,44.781,63.052 +763869,36.053,64.428 +763870,38.395,64.002 +763871,40.86,63.569 +763872,43.467,63.13 +763873,34.741,64.399 +763874,37.084,64.008 +763875,39.547,63.611 +763876,42.152,63.208 +763877,33.43,64.37 +763878,35.773,64.015 +763879,38.234,63.653 +763880,40.834,63.286 +763881,32.121,64.341 +763882,34.462,64.021 +763883,36.921,63.696 +763884,39.515,63.364 +763885,30.814,64.311 +763886,33.153,64.027 +763887,35.606,63.738 +763888,38.193,63.443 +763889,29.508,64.282 +763890,31.843,64.033 +763891,34.291,63.78 +763892,36.87,63.522 +763893,28.205,64.252 +763894,30.535,64.039 +763895,32.975,63.823 +763896,35.545,63.601 +763897,26.903,64.222 +763898,29.227,64.046 +763899,31.659,63.865 +763900,34.217,63.679 +763901,25.603,64.191 +763902,27.919,64.051 +763903,30.342,63.908 +763904,32.888,63.758 +763905,24.304,64.161 +763906,26.612,64.057 +763907,29.024,63.95 +763908,31.557,63.838 +763909,23.007,64.131 +763910,25.306,64.063 +763911,27.706,63.992 +763912,30.224,63.917 +763913,21.713,64.1 +763914,24,64.069 +763915,26.387,64.035 +763916,28.888,63.996 +763917,20.419,64.07 +763918,22.695,64.075 +763919,25.067,64.077 +763920,27.552,64.075 +763921,19.128,64.039 +763922,21.391,64.081 +763923,23.747,64.12 +763924,26.213,64.154 +763925,17.838,64.009 +763926,20.087,64.087 +763927,22.426,64.162 +763928,24.872,64.233 +763929,16.55,63.978 +763930,18.783,64.093 +763931,21.105,64.204 +763932,23.53,64.311 +763933,15.264,63.948 +763934,17.48,64.099 +763935,19.783,64.246 +763936,22.186,64.39 +763937,13.979,63.918 +763938,16.178,64.105 +763939,18.46,64.289 +763940,20.84,64.468 +763941,12.697,63.888 +763942,14.876,64.111 +763943,17.137,64.331 +763944,19.492,64.546 +763945,11.415,63.858 +763946,13.575,64.117 +763947,15.813,64.373 +763948,18.143,64.624 +763949,10.136,63.828 +763950,12.274,64.123 +763951,14.489,64.415 +763952,16.791,64.702 +763953,8.8581,63.799 +763954,10.974,64.129 +763955,13.164,64.456 +763956,15.439,64.779 +763957,7.5819,63.77 +763958,9.6744,64.135 +763959,11.838,64.498 +763960,14.084,64.856 +763961,6.3073,63.741 +763962,8.3753,64.142 +763963,10.512,64.54 +763964,12.728,64.933 +763965,5.0343,63.712 +763966,7.0767,64.148 +763967,9.1854,64.581 +763968,11.37,65.009 +763969,3.7629,63.684 +763970,5.7786,64.155 +763971,7.8582,64.622 +763972,10.011,65.085 +763973,2.4932,63.656 +763974,4.481,64.162 +763975,6.5304,64.663 +763976,8.6504,65.16 +763977,1.2249,63.629 +763978,3.184,64.169 +763979,5.2021,64.704 +763980,7.2881,65.235 +763981,359.96,63.602 +763982,1.8874,64.176 +763983,3.8733,64.745 +763984,5.9244,65.31 +763985,358.69,63.576 +763986,0.59125,64.183 +763987,2.544,64.786 +763988,4.5591,65.383 +763989,357.43,63.55 +763990,359.3,64.19 +763991,1.2141,64.826 +763992,3.1925,65.457 +763993,356.17,63.524 +763994,358,64.197 +763995,359.88,64.866 +763996,1.8245,65.529 +763997,354.91,63.499 +763998,356.71,64.205 +763999,358.55,64.906 +764000,0.45513,65.602 +764001,353.65,63.475 +764002,355.41,64.213 +764003,357.22,64.946 +764004,359.08,65.673 +764005,352.39,63.451 +764006,354.12,64.221 +764007,355.89,64.986 +764008,357.71,65.744 +764009,351.13,63.428 +764010,352.82,64.229 +764011,354.56,65.025 +764012,356.34,65.814 +764013,349.88,63.405 +764014,351.53,64.238 +764015,353.23,65.064 +764016,354.96,65.884 +764017,348.62,63.383 +764018,350.24,64.246 +764019,351.89,65.103 +764020,353.59,65.953 +764021,347.37,63.362 +764022,348.95,64.255 +764023,350.56,65.142 +764024,352.21,66.021 +764025,346.12,63.342 +764026,347.65,64.264 +764027,349.22,65.18 +764028,350.83,66.088 +764029,344.87,63.322 +764030,346.36,64.274 +764031,347.89,65.218 +764032,349.46,66.154 +764033,343.62,63.303 +764034,345.07,64.283 +764035,346.56,65.256 +764036,348.08,66.22 +764037,342.37,63.285 +764038,343.78,64.293 +764039,345.22,65.294 +764040,346.69,66.285 +764041,341.13,63.268 +764042,342.49,64.303 +764043,343.89,65.331 +764044,345.31,66.349 +764045,339.88,63.251 +764046,341.2,64.314 +764047,342.55,65.368 +764048,343.93,66.412 +764049,338.64,63.236 +764050,339.91,64.324 +764051,341.21,65.404 +764052,342.55,66.474 +764053,337.39,63.221 +764054,338.62,64.335 +764055,339.88,65.441 +764056,341.16,66.535 +764057,336.15,63.207 +764058,337.33,64.346 +764059,338.54,65.477 +764060,339.78,66.596 +764061,334.91,63.194 +764062,336.04,64.358 +764063,337.2,65.512 +764064,338.39,66.655 +764065,333.67,63.182 +764066,334.76,64.37 +764067,335.87,65.548 +764068,337,66.714 +764069,332.43,63.171 +764070,333.47,64.382 +764071,334.53,65.583 +764072,335.61,66.771 +764073,331.19,63.161 +764074,332.18,64.395 +764075,333.19,65.617 +764076,334.23,66.828 +764077,329.96,63.152 +764078,330.89,64.407 +764079,331.85,65.652 +764080,332.84,66.883 +764081,328.72,63.144 +764082,329.6,64.421 +764083,330.51,65.685 +764084,331.45,66.937 +764085,327.48,63.137 +764086,328.32,64.434 +764087,329.17,65.719 +764088,330.06,66.991 +764089,326.25,63.131 +764090,327.03,64.448 +764091,327.84,65.752 +764092,328.67,67.043 +764093,325.01,63.127 +764094,325.74,64.462 +764095,326.5,65.785 +764096,327.28,67.094 +764097,323.78,63.123 +764098,324.46,64.477 +764099,325.16,65.818 +764100,325.88,67.145 +764101,322.55,63.12 +764102,323.17,64.491 +764103,323.82,65.85 +764104,324.49,67.194 +764105,321.31,63.119 +764106,321.88,64.507 +764107,322.48,65.881 +764108,323.1,67.241 +764109,320.08,63.118 +764110,320.6,64.522 +764111,321.14,65.913 +764112,321.71,67.288 +764113,318.85,63.119 +764114,319.31,64.538 +764115,319.8,65.944 +764116,320.31,67.334 +764117,317.62,63.121 +764118,318.02,64.555 +764119,318.46,65.974 +764120,318.92,67.378 +764121,316.39,63.124 +764122,316.74,64.571 +764123,317.12,66.004 +764124,317.53,67.422 +764125,315.16,63.128 +764126,315.45,64.588 +764127,315.78,66.034 +764128,316.13,67.464 +764129,313.93,63.133 +764130,314.17,64.606 +764131,314.44,66.063 +764132,314.74,67.505 +764133,312.7,63.14 +764134,312.88,64.624 +764135,313.1,66.092 +764136,313.35,67.545 +764137,311.47,63.148 +764138,311.6,64.642 +764139,311.76,66.121 +764140,311.95,67.583 +764141,310.24,63.157 +764142,310.31,64.661 +764143,310.42,66.149 +764144,310.56,67.621 +764145,309.01,63.167 +764146,309.02,64.68 +764147,309.08,66.177 +764148,309.17,67.657 +764149,307.78,63.178 +764150,307.74,64.699 +764151,307.74,66.204 +764152,307.77,67.692 +764153,306.55,63.191 +764154,306.45,64.719 +764155,306.4,66.231 +764156,306.38,67.726 +764157,305.32,63.205 +764158,305.17,64.739 +764159,305.06,66.257 +764160,304.98,67.758 +764161,304.09,63.22 +764162,303.88,64.76 +764163,303.72,66.283 +764164,303.59,67.789 +764165,302.86,63.236 +764166,302.59,64.781 +764167,302.38,66.309 +764168,302.2,67.819 +764169,301.63,63.254 +764170,301.31,64.802 +764171,301.04,66.334 +764172,300.81,67.848 +764173,300.4,63.273 +764174,300.02,64.824 +764175,299.7,66.359 +764176,299.41,67.876 +764177,299.17,63.293 +764178,298.74,64.846 +764179,298.35,66.383 +764180,298.02,67.902 +764181,297.94,63.314 +764182,297.45,64.869 +764183,297.01,66.407 +764184,296.63,67.927 +764185,296.71,63.337 +764186,296.16,64.892 +764187,295.67,66.431 +764188,295.24,67.951 +764189,295.48,63.361 +764190,294.88,64.916 +764191,294.34,66.454 +764192,293.85,67.974 +764193,294.25,63.386 +764194,293.59,64.94 +764195,293,66.476 +764196,292.46,67.995 +764197,293.01,63.413 +764198,292.3,64.964 +764199,291.66,66.498 +764200,291.07,68.016 +764201,291.78,63.44 +764202,291.02,64.989 +764203,290.32,66.52 +764204,289.68,68.035 +764205,290.55,63.469 +764206,289.73,65.014 +764207,288.98,66.542 +764208,288.29,68.052 +764209,289.31,63.499 +764210,288.44,65.039 +764211,287.64,66.563 +764212,286.9,68.069 +764213,288.08,63.531 +764214,287.15,65.065 +764215,286.3,66.583 +764216,285.51,68.084 +764217,286.84,63.563 +764218,285.87,65.091 +764219,284.96,66.603 +764220,284.12,68.098 +764221,285.61,63.597 +764222,284.58,65.118 +764223,283.62,66.623 +764224,282.74,68.111 +764225,284.37,63.632 +764226,283.29,65.145 +764227,282.28,66.642 +764228,281.35,68.123 +764229,283.14,63.669 +764230,282,65.173 +764231,280.95,66.661 +764232,279.97,68.133 +764233,281.9,63.706 +764234,280.71,65.2 +764235,279.61,66.679 +764236,278.58,68.142 +764237,280.66,63.745 +764238,279.42,65.229 +764239,278.27,66.698 +764240,277.2,68.15 +764241,279.42,63.785 +764242,278.13,65.257 +764243,276.93,66.715 +764244,275.82,68.157 +764245,278.18,63.826 +764246,276.84,65.286 +764247,275.6,66.732 +764248,274.44,68.163 +764249,276.94,63.868 +764250,275.55,65.316 +764251,274.26,66.749 +764252,273.06,68.168 +764253,275.69,63.911 +764254,274.26,65.346 +764255,272.92,66.766 +764256,271.68,68.171 +764257,274.45,63.956 +764258,272.97,65.376 +764259,271.59,66.782 +764260,270.3,68.173 +764261,273.2,64.002 +764262,271.68,65.406 +764263,270.25,66.797 +764264,268.92,68.174 +764265,271.96,64.048 +764266,270.38,65.437 +764267,268.92,66.813 +764268,267.54,68.175 +764269,270.71,64.096 +764270,269.09,65.468 +764271,267.58,66.828 +764272,266.17,68.173 +764273,269.46,64.145 +764274,267.8,65.5 +764275,266.25,66.842 +764276,264.79,68.171 +764277,268.21,64.195 +764278,266.51,65.532 +764279,264.91,66.856 +764280,263.42,68.168 +764281,266.96,64.246 +764282,265.21,65.564 +764283,263.58,66.87 +764284,262.05,68.164 +764285,265.7,64.298 +764286,263.92,65.597 +764287,262.25,66.884 +764288,260.68,68.159 +764289,264.45,64.352 +764290,262.62,65.63 +764291,260.91,66.897 +764292,259.31,68.152 +764293,263.19,64.406 +764294,261.33,65.663 +764295,259.58,66.91 +764296,257.94,68.145 +764297,261.94,64.461 +764298,260.03,65.696 +764299,258.25,66.922 +764300,256.57,68.137 +764301,260.68,64.517 +764302,258.74,65.73 +764303,256.92,66.934 +764304,255.21,68.127 +764305,259.42,64.574 +764306,257.44,65.765 +764307,255.59,66.946 +764308,253.84,68.117 +764309,258.16,64.632 +764310,256.14,65.799 +764311,254.26,66.957 +764312,252.48,68.106 +764313,256.89,64.691 +764314,254.85,65.834 +764315,252.93,66.968 +764316,251.12,68.094 +764317,255.63,64.751 +764318,253.55,65.869 +764319,251.6,66.979 +764320,249.76,68.081 +764321,254.36,64.812 +764322,252.25,65.904 +764323,250.27,66.99 +764324,248.4,68.067 +764325,253.09,64.873 +764326,250.95,65.94 +764327,248.94,67 +764328,247.04,68.052 +764329,251.82,64.936 +764330,249.65,65.976 +764331,247.61,67.01 +764332,245.69,68.036 +764333,250.55,64.999 +764334,248.35,66.012 +764335,246.28,67.02 +764336,244.33,68.02 +764337,249.28,65.063 +764338,247.05,66.049 +764339,244.96,67.029 +764340,242.98,68.002 +764341,248,65.128 +764342,245.75,66.085 +764343,243.63,67.038 +764344,241.63,67.984 +764345,246.73,65.193 +764346,244.45,66.122 +764347,242.3,67.047 +764348,240.28,67.965 +764349,245.45,65.259 +764350,243.14,66.16 +764351,240.98,67.055 +764352,238.93,67.946 +764353,244.17,65.326 +764354,241.84,66.197 +764355,239.65,67.064 +764356,237.58,67.925 +764357,242.89,65.394 +764358,240.54,66.235 +764359,238.33,67.072 +764360,236.23,67.904 +764361,241.6,65.462 +764362,239.23,66.272 +764363,237,67.08 +764364,234.89,67.883 +764365,240.32,65.531 +764366,237.93,66.31 +764367,235.68,67.087 +764368,233.55,67.86 +764369,239.03,65.6 +764370,236.62,66.349 +764371,234.35,67.095 +764372,232.21,67.837 +764373,237.74,65.67 +764374,235.32,66.387 +764375,233.03,67.102 +764376,230.87,67.814 +764377,236.45,65.741 +764378,234.01,66.426 +764379,231.71,67.109 +764380,229.53,67.79 +764381,235.15,65.812 +764382,232.7,66.464 +764383,230.39,67.116 +764384,228.19,67.765 +764385,233.86,65.883 +764386,231.39,66.503 +764387,229.07,67.122 +764388,226.86,67.74 +764389,232.56,65.955 +764390,230.09,66.542 +764391,227.75,67.129 +764392,225.53,67.714 +764393,231.26,66.027 +764394,228.78,66.582 +764395,226.43,67.135 +764396,224.2,67.688 +764397,229.96,66.1 +764398,227.47,66.621 +764399,225.11,67.141 +764400,222.87,67.661 +764401,228.66,66.173 +764402,226.16,66.66 +764403,223.79,67.147 +764404,221.54,67.634 +764405,227.35,66.247 +764406,224.85,66.7 +764407,222.47,67.153 +764408,220.21,67.606 +764409,226.05,66.32 +764410,223.53,66.74 +764411,221.15,67.159 +764412,218.89,67.579 +764413,224.74,66.395 +764414,222.22,66.779 +764415,219.84,67.165 +764416,217.57,67.55 +764417,223.43,66.469 +764418,220.91,66.819 +764419,218.52,67.17 +764420,216.24,67.522 +764421,222.11,66.543 +764422,219.59,66.859 +764423,217.2,67.176 +764424,214.93,67.493 +764425,220.8,66.618 +764426,218.28,66.899 +764427,215.89,67.181 +764428,213.61,67.464 +764429,219.48,66.693 +764430,216.97,66.939 +764431,214.57,67.186 +764432,212.29,67.435 +764433,218.16,66.768 +764434,215.65,66.979 +764435,213.26,67.192 +764436,210.98,67.405 +764437,216.84,66.844 +764438,214.33,67.019 +764439,211.95,67.197 +764440,209.67,67.376 +764441,215.52,66.919 +764442,213.02,67.059 +764443,210.63,67.202 +764444,208.36,67.346 +764445,214.2,66.994 +764446,211.7,67.1 +764447,209.32,67.207 +764448,207.05,67.316 +764449,212.87,67.07 +764450,210.38,67.14 +764451,208.01,67.212 +764452,205.74,67.286 +764453,211.54,67.145 +764454,209.06,67.18 +764455,206.7,67.217 +764456,204.44,67.256 +764457,210.21,67.221 +764458,207.74,67.22 +764459,205.39,67.222 +764460,203.13,67.225 +764461,208.88,67.296 +764462,206.42,67.26 +764463,204.08,67.227 +764464,201.83,67.195 +764465,207.55,67.371 +764466,205.1,67.3 +764467,202.77,67.232 +764468,200.53,67.165 +764469,206.21,67.446 +764470,203.78,67.341 +764471,201.46,67.237 +764472,199.23,67.135 +764473,204.87,67.521 +764474,202.46,67.381 +764475,200.15,67.242 +764476,197.93,67.105 +764477,203.53,67.596 +764478,201.14,67.421 +764479,198.84,67.247 +764480,196.64,67.075 +764481,202.19,67.671 +764482,199.81,67.461 +764483,197.54,67.252 +764484,195.35,67.045 +764485,200.85,67.745 +764486,198.49,67.5 +764487,196.23,67.257 +764488,194.05,67.016 +764489,199.51,67.82 +764490,197.17,67.54 +764491,194.92,67.262 +764492,192.76,66.986 +764493,198.16,67.894 +764494,195.84,67.58 +764495,193.62,67.267 +764496,191.48,66.957 +764497,196.81,67.967 +764498,194.52,67.619 +764499,192.31,67.273 +764500,190.19,66.928 +764501,195.46,68.041 +764502,193.19,67.659 +764503,191.01,67.278 +764504,188.9,66.899 +764505,194.11,68.114 +764506,191.86,67.698 +764507,189.71,67.284 +764508,187.62,66.871 +764509,192.76,68.186 +764510,190.54,67.737 +764511,188.4,67.289 +764512,186.34,66.843 +764513,191.4,68.258 +764514,189.21,67.777 +764515,187.1,67.295 +764516,185.06,66.815 +764517,190.05,68.33 +764518,187.88,67.815 +764519,185.8,67.301 +764520,183.78,66.788 +764521,188.69,68.401 +764522,186.55,67.854 +764523,184.49,67.307 +764524,182.5,66.761 +764525,187.33,68.472 +764526,185.22,67.893 +764527,183.19,67.313 +764528,181.23,66.735 +764529,185.97,68.543 +764530,183.89,67.931 +764531,181.89,67.32 +764532,179.95,66.709 +764533,184.61,68.612 +764534,182.56,67.97 +764535,180.59,67.326 +764536,178.68,66.683 +764537,183.24,68.682 +764538,181.23,68.008 +764539,179.29,67.333 +764540,177.41,66.658 +764541,181.88,68.75 +764542,179.9,68.046 +764543,177.99,67.34 +764544,176.14,66.634 +764545,180.51,68.818 +764546,178.57,68.083 +764547,176.69,67.347 +764548,174.87,66.61 +764549,179.14,68.886 +764550,177.24,68.121 +764551,175.4,67.354 +764552,173.61,66.586 +764553,177.77,68.952 +764554,175.91,68.158 +764555,174.1,67.361 +764556,172.34,66.564 +764557,176.4,69.018 +764558,174.57,68.195 +764559,172.8,67.369 +764560,171.08,66.542 +764561,175.03,69.084 +764562,173.24,68.232 +764563,171.5,67.377 +764564,169.81,66.52 +764565,173.66,69.148 +764566,171.9,68.268 +764567,170.21,67.385 +764568,168.55,66.5 +764569,172.28,69.212 +764570,170.57,68.304 +764571,168.91,67.393 +764572,167.29,66.48 +764573,170.91,69.275 +764574,169.24,68.34 +764575,167.61,67.402 +764576,166.03,66.46 +764577,169.53,69.338 +764578,167.9,68.376 +764579,166.32,67.41 +764580,164.78,66.442 +764581,168.15,69.399 +764582,166.56,68.412 +764583,165.02,67.419 +764584,163.52,66.424 +764585,166.77,69.46 +764586,165.23,68.447 +764587,163.73,67.429 +764588,162.27,66.407 +764589,165.39,69.52 +764590,163.89,68.482 +764591,162.43,67.438 +764592,161.01,66.391 +764593,164.01,69.579 +764594,162.55,68.516 +764595,161.14,67.448 +764596,159.76,66.376 +764597,162.63,69.637 +764598,161.22,68.551 +764599,159.85,67.458 +764600,158.51,66.362 +764601,161.25,69.694 +764602,159.88,68.585 +764603,158.55,67.469 +764604,157.26,66.348 +764605,159.86,69.75 +764606,158.54,68.618 +764607,157.26,67.48 +764608,156.01,66.336 +764609,158.48,69.806 +764610,157.2,68.652 +764611,155.97,67.491 +764612,154.76,66.324 +764613,157.09,69.86 +764614,155.87,68.685 +764615,154.67,67.502 +764616,153.51,66.313 +764617,155.7,69.913 +764618,154.53,68.717 +764619,153.38,67.514 +764620,152.27,66.304 +764621,154.32,69.966 +764622,153.19,68.75 +764623,152.09,67.526 +764624,151.02,66.295 +764625,152.93,70.017 +764626,151.85,68.782 +764627,150.8,67.538 +764628,149.78,66.287 +764629,151.54,70.068 +764630,150.51,68.814 +764631,149.51,67.551 +764632,148.53,66.281 +764633,150.15,70.117 +764634,149.17,68.845 +764635,148.22,67.564 +764636,147.29,66.275 +764637,148.76,70.165 +764638,147.83,68.876 +764639,146.92,67.577 +764640,146.05,66.27 +764641,147.37,70.213 +764642,146.49,68.907 +764643,145.63,67.591 +764644,144.81,66.267 +764645,145.98,70.259 +764646,145.15,68.937 +764647,144.34,67.605 +764648,143.57,66.264 +764649,144.59,70.304 +764650,143.81,68.967 +764651,143.05,67.619 +764652,142.33,66.263 +764653,143.2,70.348 +764654,142.47,68.996 +764655,141.76,67.634 +764656,141.09,66.263 +764657,141.81,70.391 +764658,141.12,69.025 +764659,140.47,67.649 +764660,139.85,66.264 +764661,140.41,70.433 +764662,139.78,69.054 +764663,139.18,67.665 +764664,138.61,66.265 +764665,139.02,70.473 +764666,138.44,69.083 +764667,137.89,67.681 +764668,137.37,66.269 +764669,137.63,70.513 +764670,137.1,69.111 +764671,136.6,67.697 +764672,136.13,66.273 +764673,136.23,70.551 +764674,135.76,69.138 +764675,135.31,67.713 +764676,134.9,66.278 +764677,134.84,70.588 +764678,134.42,69.165 +764679,134.02,67.73 +764680,133.66,66.285 +764681,133.44,70.625 +764682,133.08,69.192 +764683,132.74,67.748 +764684,132.43,66.293 +764685,132.05,70.66 +764686,131.73,69.219 +764687,131.45,67.766 +764688,131.19,66.302 +764689,130.66,70.693 +764690,130.39,69.245 +764691,130.16,67.784 +764692,129.95,66.312 +764693,129.26,70.726 +764694,129.05,69.27 +764695,128.87,67.802 +764696,128.72,66.323 +764697,127.87,70.757 +764698,127.71,69.296 +764699,127.58,67.821 +764700,127.48,66.336 +764701,126.47,70.788 +764702,126.36,69.32 +764703,126.29,67.841 +764704,126.25,66.349 +764705,125.08,70.817 +764706,125.02,69.345 +764707,125,67.86 +764708,125.01,66.364 +764709,123.68,70.844 +764710,123.68,69.369 +764711,123.71,67.88 +764712,123.78,66.381 +764713,122.29,70.871 +764714,122.34,69.392 +764715,122.42,67.901 +764716,122.54,66.398 +764717,120.9,70.897 +764718,121,69.416 +764719,121.13,67.922 +764720,121.31,66.417 +764721,119.5,70.921 +764722,119.65,69.438 +764723,119.84,67.943 +764724,120.07,66.436 +764725,118.11,70.944 +764726,118.31,69.461 +764727,118.55,67.965 +764728,118.84,66.458 +764729,116.72,70.966 +764730,116.97,69.483 +764731,117.26,67.987 +764732,117.6,66.48 +764733,115.32,70.986 +764734,115.63,69.504 +764735,115.98,68.01 +764736,116.37,66.503 +764737,113.93,71.006 +764738,114.29,69.526 +764739,114.69,68.033 +764740,115.13,66.528 +764741,112.54,71.024 +764742,112.94,69.546 +764743,113.4,68.056 +764744,113.89,66.554 +764745,111.15,71.041 +764746,111.6,69.567 +764747,112.11,68.08 +764748,112.66,66.581 +764749,109.76,71.057 +764750,110.26,69.587 +764751,110.82,68.104 +764752,111.42,66.61 +764753,108.36,71.072 +764754,108.92,69.606 +764755,109.53,68.128 +764756,110.18,66.64 +764757,106.97,71.085 +764758,107.58,69.625 +764759,108.24,68.153 +764760,108.95,66.67 +764761,105.58,71.098 +764762,106.24,69.644 +764763,106.94,68.179 +764764,107.71,66.702 +764765,104.19,71.109 +764766,104.9,69.663 +764767,105.65,68.204 +764768,106.47,66.736 +764769,102.81,71.119 +764770,103.56,69.68 +764771,104.36,68.23 +764772,105.23,66.77 +764773,101.42,71.128 +764774,102.22,69.698 +764775,103.07,68.257 +764776,103.99,66.806 +764777,100.03,71.136 +764778,100.88,69.715 +764779,101.78,68.284 +764780,102.75,66.843 +764781,98.644,71.142 +764782,99.536,69.732 +764783,100.49,68.311 +764784,101.51,66.881 +764785,97.258,71.148 +764786,98.196,69.748 +764787,99.197,68.339 +764788,100.27,66.92 +764789,95.873,71.152 +764790,96.857,69.764 +764791,97.905,68.367 +764792,99.022,66.96 +764793,94.489,71.155 +764794,95.518,69.78 +764795,96.612,68.395 +764796,97.778,67.002 +764797,93.106,71.157 +764798,94.179,69.795 +764799,95.319,68.424 +764800,96.534,67.044 +764801,91.723,71.158 +764802,92.84,69.81 +764803,94.026,68.453 +764804,95.288,67.088 +764805,90.342,71.158 +764806,91.502,69.825 +764807,92.732,68.482 +764808,94.041,67.133 +764809,88.961,71.157 +764810,90.164,69.839 +764811,91.439,68.512 +764812,92.794,67.178 +764813,87.581,71.155 +764814,88.826,69.853 +764815,90.144,68.542 +764816,91.545,67.225 +764817,86.203,71.151 +764818,87.488,69.866 +764819,88.85,68.573 +764820,90.295,67.273 +764821,84.825,71.147 +764822,86.151,69.879 +764823,87.555,68.604 +764824,89.044,67.322 +764825,83.448,71.142 +764826,84.814,69.892 +764827,86.26,68.635 +764828,87.792,67.373 +764829,82.073,71.135 +764830,83.478,69.904 +764831,84.964,68.667 +764832,86.539,67.424 +764833,80.699,71.128 +764834,82.142,69.916 +764835,83.668,68.698 +764836,85.285,67.476 +764837,79.325,71.12 +764838,80.806,69.928 +764839,82.371,68.731 +764840,84.029,67.529 +764841,77.953,71.111 +764842,79.471,69.94 +764843,81.074,68.763 +764844,82.772,67.583 +764845,76.582,71.1 +764846,78.136,69.951 +764847,79.777,68.796 +764848,81.514,67.638 +764849,75.212,71.089 +764850,76.802,69.961 +764851,78.479,68.829 +764852,80.255,67.694 +764853,73.844,71.077 +764854,75.468,69.972 +764855,77.181,68.862 +764856,78.994,67.751 +764857,72.477,71.064 +764858,74.134,69.982 +764859,75.882,68.896 +764860,77.731,67.808 +764861,71.111,71.05 +764862,72.801,69.992 +764863,74.583,68.93 +764864,76.468,67.867 +764865,69.746,71.036 +764866,71.468,70.002 +764867,73.283,68.964 +764868,75.202,67.926 +764869,68.383,71.02 +764870,70.136,70.011 +764871,71.983,68.999 +764872,73.936,67.987 +764873,67.021,71.004 +764874,68.804,70.02 +764875,70.682,69.034 +764876,72.667,68.048 +764877,65.66,70.987 +764878,67.472,70.029 +764879,69.381,69.069 +764880,71.398,68.11 +764881,64.301,70.969 +764882,66.141,70.037 +764883,68.079,69.104 +764884,70.126,68.172 +764885,62.943,70.95 +764886,64.811,70.045 +764887,66.777,69.14 +764888,68.853,68.235 +764889,61.587,70.931 +764890,63.481,70.053 +764891,65.474,69.176 +764892,67.579,68.3 +764893,60.232,70.911 +764894,62.152,70.061 +764895,64.171,69.212 +764896,66.303,68.364 +764897,58.878,70.89 +764898,60.822,70.069 +764899,62.867,69.248 +764900,65.025,68.43 +764901,57.526,70.869 +764902,59.494,70.076 +764903,61.562,69.284 +764904,63.745,68.496 +764905,56.176,70.847 +764906,58.166,70.083 +764907,60.257,69.321 +764908,62.464,68.562 +764909,54.827,70.824 +764910,56.838,70.09 +764911,58.952,69.358 +764912,61.181,68.63 +764913,53.48,70.801 +764914,55.512,70.097 +764915,57.646,69.395 +764916,59.896,68.698 +764917,52.134,70.777 +764918,54.185,70.103 +764919,56.339,69.432 +764920,58.61,68.766 +764921,50.789,70.752 +764922,52.859,70.11 +764923,55.032,69.47 +764924,57.322,68.835 +764925,49.447,70.727 +764926,51.534,70.116 +764927,53.724,69.507 +764928,56.032,68.904 +764929,48.105,70.702 +764930,50.209,70.122 +764931,52.416,69.545 +764932,54.74,68.974 +764933,46.766,70.676 +764934,48.885,70.127 +764935,51.107,69.583 +764936,53.447,69.044 +764937,45.428,70.65 +764938,47.561,70.133 +764939,49.797,69.621 +764940,52.151,69.115 +764941,44.091,70.623 +764942,46.238,70.139 +764943,48.487,69.659 +764944,50.854,69.186 +764945,42.757,70.596 +764946,44.915,70.144 +764947,47.176,69.698 +764948,49.555,69.258 +764949,41.424,70.568 +764950,43.593,70.149 +764951,45.864,69.736 +764952,48.254,69.329 +764953,40.092,70.54 +764954,42.271,70.154 +764955,44.552,69.774 +764956,46.951,69.401 +764957,38.762,70.512 +764958,40.95,70.16 +764959,43.24,69.813 +764960,45.647,69.474 +764961,37.434,70.483 +764962,39.63,70.164 +764963,41.927,69.852 +764964,44.34,69.546 +764965,36.108,70.455 +764966,38.31,70.169 +764967,40.613,69.89 +764968,43.032,69.619 +764969,34.783,70.426 +764970,36.99,70.174 +764971,39.298,69.929 +764972,41.722,69.692 +764973,33.46,70.396 +764974,35.672,70.179 +764975,37.983,69.968 +764976,40.41,69.765 +764977,32.138,70.367 +764978,34.353,70.184 +764979,36.667,70.007 +764980,39.096,69.839 +764981,30.818,70.337 +764982,33.036,70.188 +764983,35.351,70.046 +764984,37.78,69.912 +764985,29.5,70.308 +764986,31.719,70.193 +764987,34.034,70.085 +764988,36.462,69.986 +764989,28.184,70.278 +764990,30.402,70.197 +764991,32.717,70.124 +764992,35.143,70.059 +764993,26.869,70.248 +764994,29.086,70.202 +764995,31.399,70.163 +764996,33.821,70.133 +764997,25.556,70.218 +764998,27.771,70.206 +764999,30.08,70.202 +765000,32.498,70.206 +765001,24.245,70.188 +765002,26.456,70.211 +765003,28.76,70.241 +765004,31.173,70.28 +765005,22.935,70.158 +765006,25.142,70.215 +765007,27.44,70.28 +765008,29.846,70.353 +765009,21.627,70.128 +765010,23.828,70.22 +765011,26.12,70.319 +765012,28.517,70.427 +765013,20.321,70.099 +765014,22.515,70.224 +765015,24.799,70.358 +765016,27.187,70.5 +765017,19.016,70.069 +765018,21.202,70.229 +765019,23.477,70.397 +765020,25.854,70.573 +765021,17.713,70.039 +765022,19.89,70.234 +765023,22.155,70.436 +765024,24.52,70.646 +765025,16.411,70.01 +765026,18.579,70.238 +765027,20.832,70.475 +765028,23.184,70.719 +765029,15.112,69.98 +765030,17.268,70.243 +765031,19.508,70.513 +765032,21.846,70.792 +765033,13.814,69.951 +765034,15.957,70.248 +765035,18.184,70.552 +765036,20.507,70.864 +765037,12.517,69.923 +765038,14.647,70.253 +765039,16.859,70.591 +765040,19.165,70.936 +765041,11.222,69.894 +765042,13.338,70.258 +765043,15.534,70.629 +765044,17.822,71.008 +765045,9.9293,69.866 +765046,12.029,70.263 +765047,14.208,70.667 +765048,16.478,71.079 +765049,8.6377,69.838 +765050,10.721,70.268 +765051,12.881,70.706 +765052,15.131,71.15 +765053,7.3477,69.81 +765054,9.4134,70.273 +765055,11.554,70.744 +765056,13.783,71.221 +765057,6.0593,69.783 +765058,8.1062,70.279 +765059,10.227,70.782 +765060,12.433,71.291 +765061,4.7725,69.756 +765062,6.7995,70.284 +765063,8.8987,70.82 +765064,11.082,71.361 +765065,3.4872,69.729 +765066,5.4933,70.29 +765067,7.5701,70.857 +765068,9.7289,71.43 +765069,2.2035,69.703 +765070,4.1877,70.296 +765071,6.2408,70.895 +765072,8.3743,71.499 +765073,0.92132,69.678 +765074,2.8825,70.302 +765075,4.9111,70.932 +765076,7.018,71.568 +765077,359.64,69.653 +765078,1.5778,70.308 +765079,3.5808,70.969 +765080,5.6603,71.636 +765081,358.36,69.628 +765082,0.27361,70.315 +765083,2.25,71.006 +765084,4.301,71.703 +765085,357.08,69.604 +765086,358.97,70.321 +765087,0.91871,71.043 +765088,2.9402,71.77 +765089,355.81,69.581 +765090,357.67,70.328 +765091,359.59,71.08 +765092,1.5779,71.836 +765093,354.53,69.558 +765094,356.36,70.335 +765095,358.25,71.116 +765096,0.21422,71.901 +765097,353.26,69.536 +765098,355.06,70.342 +765099,356.92,71.152 +765100,358.85,71.966 +765101,351.99,69.514 +765102,353.76,70.349 +765103,355.59,71.188 +765104,357.48,72.03 +765105,350.72,69.493 +765106,352.46,70.357 +765107,354.25,71.224 +765108,356.11,72.094 +765109,349.45,69.473 +765110,351.16,70.365 +765111,352.92,71.259 +765112,354.75,72.156 +765113,348.18,69.454 +765114,349.86,70.373 +765115,351.59,71.295 +765116,353.37,72.218 +765117,346.91,69.435 +765118,348.56,70.381 +765119,350.25,71.33 +765120,352,72.28 +765121,345.65,69.417 +765122,347.26,70.39 +765123,348.92,71.364 +765124,350.63,72.34 +765125,344.38,69.4 +765126,345.96,70.399 +765127,347.58,71.399 +765128,349.26,72.4 +765129,343.12,69.384 +765130,344.66,70.408 +765131,346.24,71.433 +765132,347.88,72.459 +765133,341.86,69.368 +765134,343.36,70.417 +765135,344.91,71.467 +765136,346.5,72.517 +765137,340.6,69.354 +765138,342.06,70.427 +765139,343.57,71.5 +765140,345.13,72.574 +765141,339.34,69.34 +765142,340.76,70.437 +765143,342.23,71.534 +765144,343.75,72.63 +765145,338.08,69.327 +765146,339.47,70.447 +765147,340.89,71.567 +765148,342.37,72.686 +765149,336.82,69.315 +765150,338.17,70.457 +765151,339.56,71.6 +765152,340.99,72.74 +765153,335.57,69.304 +765154,336.87,70.468 +765155,338.22,71.632 +765156,339.6,72.794 +765157,334.31,69.294 +765158,335.58,70.48 +765159,336.88,71.664 +765160,338.22,72.846 +765161,333.06,69.285 +765162,334.28,70.491 +765163,335.54,71.696 +765164,336.84,72.898 +765165,331.81,69.276 +765166,332.98,70.503 +765167,334.2,71.727 +765168,335.45,72.949 +765169,330.55,69.269 +765170,331.69,70.515 +765171,332.86,71.758 +765172,334.07,72.998 +765173,329.3,69.263 +765174,330.39,70.527 +765175,331.52,71.789 +765176,332.68,73.047 +765177,328.05,69.258 +765178,329.1,70.54 +765179,330.18,71.82 +765180,331.29,73.095 +765181,326.8,69.254 +765182,327.8,70.554 +765183,328.84,71.85 +765184,329.91,73.141 +765185,325.55,69.251 +765186,326.51,70.567 +765187,327.5,71.879 +765188,328.52,73.187 +765189,324.31,69.249 +765190,325.21,70.581 +765191,326.15,71.909 +765192,327.13,73.232 +765193,323.06,69.248 +765194,323.92,70.595 +765195,324.81,71.938 +765196,325.74,73.275 +765197,321.81,69.248 +765198,322.63,70.61 +765199,323.47,71.967 +765200,324.35,73.317 +765201,320.57,69.25 +765202,321.33,70.625 +765203,322.13,71.995 +765204,322.96,73.359 +765205,319.32,69.252 +765206,320.04,70.64 +765207,320.79,72.023 +765208,321.57,73.399 +765209,318.08,69.256 +765210,318.75,70.656 +765211,319.44,72.05 +765212,320.18,73.438 +765213,316.83,69.261 +765214,317.45,70.672 +765215,318.1,72.078 +765216,318.78,73.476 +765217,315.59,69.266 +765218,316.16,70.688 +765219,316.76,72.104 +765220,317.39,73.513 +765221,314.35,69.274 +765222,314.87,70.705 +765223,315.42,72.131 +765224,316,73.549 +765225,313.11,69.282 +765226,313.57,70.723 +765227,314.07,72.157 +765228,314.6,73.583 +765229,311.86,69.291 +765230,312.28,70.74 +765231,312.73,72.183 +765232,313.21,73.617 +765233,310.62,69.302 +765234,310.99,70.758 +765235,311.39,72.208 +765236,311.82,73.649 +765237,309.38,69.314 +765238,309.7,70.777 +765239,310.04,72.233 +765240,310.42,73.68 +765241,308.14,69.327 +765242,308.4,70.795 +765243,308.7,72.257 +765244,309.03,73.71 +765245,306.9,69.341 +765246,307.11,70.815 +765247,307.36,72.281 +765248,307.63,73.739 +765249,305.66,69.356 +765250,305.82,70.834 +765251,306.01,72.305 +765252,306.24,73.767 +765253,304.42,69.373 +765254,304.53,70.854 +765255,304.67,72.328 +765256,304.85,73.794 +765257,303.18,69.391 +765258,303.24,70.875 +765259,303.33,72.351 +765260,303.45,73.819 +765261,301.94,69.41 +765262,301.94,70.896 +765263,301.98,72.374 +765264,302.06,73.843 +765265,300.7,69.43 +765266,300.65,70.917 +765267,300.64,72.396 +765268,300.66,73.866 +765269,299.46,69.452 +765270,299.36,70.938 +765271,299.3,72.418 +765272,299.27,73.888 +765273,298.22,69.474 +765274,298.07,70.96 +765275,297.95,72.439 +765276,297.87,73.909 +765277,296.97,69.498 +765278,296.77,70.983 +765279,296.61,72.46 +765280,296.48,73.928 +765281,295.73,69.524 +765282,295.48,71.006 +765283,295.27,72.48 +765284,295.09,73.946 +765285,294.49,69.55 +765286,294.19,71.029 +765287,293.92,72.501 +765288,293.69,73.963 +765289,293.25,69.577 +765290,292.9,71.053 +765291,292.58,72.52 +765292,292.3,73.979 +765293,292.01,69.606 +765294,291.6,71.077 +765295,291.24,72.54 +765296,290.91,73.994 +765297,290.77,69.636 +765298,290.31,71.101 +765299,289.89,72.559 +765300,289.51,74.008 +765301,289.53,69.668 +765302,289.02,71.126 +765303,288.55,72.577 +765304,288.12,74.02 +765305,288.29,69.7 +765306,287.72,71.151 +765307,287.21,72.595 +765308,286.73,74.032 +765309,287.04,69.734 +765310,286.43,71.177 +765311,285.86,72.613 +765312,285.34,74.042 +765313,285.8,69.768 +765314,285.14,71.203 +765315,284.52,72.631 +765316,283.95,74.051 +765317,284.56,69.804 +765318,283.84,71.229 +765319,283.18,72.648 +765320,282.56,74.059 +765321,283.31,69.841 +765322,282.55,71.256 +765323,281.84,72.664 +765324,281.17,74.066 +765325,282.07,69.88 +765326,281.26,71.283 +765327,280.49,72.681 +765328,279.78,74.071 +765329,280.82,69.919 +765330,279.96,71.31 +765331,279.15,72.697 +765332,278.39,74.076 +765333,279.58,69.96 +765334,278.67,71.338 +765335,277.81,72.712 +765336,277,74.079 +765337,278.33,70.001 +765338,277.37,71.367 +765339,276.47,72.727 +765340,275.61,74.082 +765341,277.09,70.044 +765342,276.08,71.395 +765343,275.13,72.742 +765344,274.23,74.083 +765345,275.84,70.088 +765346,274.78,71.424 +765347,273.79,72.757 +765348,272.84,74.083 +765349,274.59,70.133 +765350,273.49,71.454 +765351,272.44,72.771 +765352,271.46,74.082 +765353,273.34,70.179 +765354,272.19,71.483 +765355,271.1,72.784 +765356,270.07,74.08 +765357,272.09,70.226 +765358,270.89,71.514 +765359,269.76,72.798 +765360,268.69,74.077 +765361,270.84,70.275 +765362,269.6,71.544 +765363,268.42,72.811 +765364,267.31,74.073 +765365,269.59,70.324 +765366,268.3,71.575 +765367,267.08,72.824 +765368,265.93,74.068 +765369,268.33,70.374 +765370,267,71.606 +765371,265.74,72.836 +765372,264.55,74.062 +765373,267.08,70.426 +765374,265.71,71.637 +765375,264.4,72.848 +765376,263.17,74.055 +765377,265.82,70.478 +765378,264.41,71.669 +765379,263.07,72.86 +765380,261.79,74.048 +765381,264.57,70.531 +765382,263.11,71.701 +765383,261.73,72.871 +765384,260.41,74.039 +765385,263.31,70.585 +765386,261.81,71.734 +765387,260.39,72.882 +765388,259.03,74.029 +765389,262.05,70.641 +765390,260.51,71.766 +765391,259.05,72.893 +765392,257.66,74.018 +765393,260.79,70.697 +765394,259.21,71.799 +765395,257.71,72.903 +765396,256.28,74.006 +765397,259.53,70.754 +765398,257.91,71.833 +765399,256.38,72.914 +765400,254.91,73.994 +765401,258.27,70.811 +765402,256.61,71.866 +765403,255.04,72.923 +765404,253.54,73.981 +765405,257,70.87 +765406,255.31,71.9 +765407,253.7,72.933 +765408,252.17,73.966 +765409,255.74,70.93 +765410,254.01,71.935 +765411,252.37,72.942 +765412,250.8,73.951 +765413,254.47,70.99 +765414,252.71,71.969 +765415,251.03,72.952 +765416,249.43,73.935 +765417,253.21,71.051 +765418,251.41,72.004 +765419,249.7,72.96 +765420,248.06,73.919 +765421,251.94,71.113 +765422,250.11,72.039 +765423,248.36,72.969 +765424,246.7,73.901 +765425,250.67,71.176 +765426,248.8,72.074 +765427,247.03,72.977 +765428,245.33,73.883 +765429,249.39,71.239 +765430,247.5,72.11 +765431,245.69,72.985 +765432,243.97,73.864 +765433,248.12,71.304 +765434,246.2,72.145 +765435,244.36,72.993 +765436,242.61,73.845 +765437,246.85,71.368 +765438,244.89,72.181 +765439,243.03,73.001 +765440,241.25,73.824 +765441,245.57,71.434 +765442,243.59,72.217 +765443,241.7,73.008 +765444,239.89,73.803 +765445,244.29,71.5 +765446,242.28,72.254 +765447,240.36,73.015 +765448,238.53,73.782 +765449,243.01,71.567 +765450,240.98,72.291 +765451,239.03,73.022 +765452,237.17,73.759 +765453,241.73,71.634 +765454,239.67,72.327 +765455,237.7,73.029 +765456,235.82,73.736 +765457,240.45,71.702 +765458,238.36,72.364 +765459,236.37,73.035 +765460,234.47,73.713 +765461,239.17,71.77 +765462,237.06,72.402 +765463,235.04,73.042 +765464,233.11,73.689 +765465,237.88,71.839 +765466,235.75,72.439 +765467,233.71,73.048 +765468,231.76,73.665 +765469,236.59,71.909 +765470,234.44,72.476 +765471,232.38,73.054 +765472,230.41,73.64 +765473,235.3,71.978 +765474,233.13,72.514 +765475,231.05,73.06 +765476,229.07,73.614 +765477,234.01,72.049 +765478,231.82,72.552 +765479,229.73,73.066 +765480,227.72,73.588 +765481,232.72,72.119 +765482,230.51,72.59 +765483,228.4,73.071 +765484,226.38,73.562 +765485,231.43,72.191 +765486,229.2,72.628 +765487,227.07,73.077 +765488,225.03,73.535 +765489,230.13,72.262 +765490,227.89,72.666 +765491,225.74,73.082 +765492,223.69,73.508 +765493,228.83,72.334 +765494,226.58,72.705 +765495,224.42,73.088 +765496,222.35,73.48 +765497,227.53,72.406 +765498,225.26,72.743 +765499,223.09,73.093 +765500,221.01,73.453 +765501,226.23,72.478 +765502,223.95,72.782 +765503,221.77,73.098 +765504,219.68,73.424 +765505,224.93,72.551 +765506,222.64,72.82 +765507,220.44,73.103 +765508,218.34,73.396 +765509,223.62,72.623 +765510,221.32,72.859 +765511,219.12,73.108 +765512,217.01,73.367 +765513,222.32,72.696 +765514,220.01,72.898 +765515,217.8,73.112 +765516,215.68,73.339 +765517,221.01,72.769 +765518,218.69,72.936 +765519,216.47,73.117 +765520,214.35,73.31 +765521,219.7,72.843 +765522,217.38,72.975 +765523,215.15,73.122 +765524,213.02,73.28 +765525,218.39,72.916 +765526,216.06,73.014 +765527,213.83,73.127 +765528,211.69,73.251 +765529,217.08,72.989 +765530,214.74,73.053 +765531,212.51,73.131 +765532,210.36,73.222 +765533,215.76,73.063 +765534,213.42,73.092 +765535,211.19,73.136 +765536,209.04,73.192 +765537,214.44,73.136 +765538,212.11,73.131 +765539,209.87,73.141 +765540,207.72,73.162 +765541,213.12,73.21 +765542,210.79,73.17 +765543,208.55,73.145 +765544,206.4,73.133 +765545,211.8,73.283 +765546,209.47,73.209 +765547,207.23,73.15 +765548,205.08,73.103 +765549,210.48,73.357 +765550,208.15,73.248 +765551,205.91,73.154 +765552,203.76,73.074 +765553,209.16,73.43 +765554,206.83,73.287 +765555,204.59,73.159 +765556,202.45,73.044 +765557,207.83,73.503 +765558,205.5,73.326 +765559,203.28,73.164 +765560,201.13,73.015 +765561,206.5,73.576 +765562,204.18,73.365 +765563,201.96,73.168 +765564,199.82,72.985 +765565,205.17,73.649 +765566,202.86,73.404 +765567,200.64,73.173 +765568,198.51,72.956 +765569,203.84,73.721 +765570,201.54,73.442 +765571,199.33,73.178 +765572,197.2,72.927 +765573,202.51,73.794 +765574,200.21,73.481 +765575,198.01,73.183 +765576,195.89,72.898 +765577,201.17,73.866 +765578,198.89,73.52 +765579,196.7,73.188 +765580,194.59,72.869 +765581,199.84,73.938 +765582,197.56,73.558 +765583,195.38,73.193 +765584,193.28,72.841 +765585,198.5,74.009 +765586,196.24,73.597 +765587,194.07,73.198 +765588,191.98,72.813 +765589,197.16,74.08 +765590,194.91,73.635 +765591,192.76,73.204 +765592,190.68,72.785 +765593,195.82,74.151 +765594,193.59,73.673 +765595,191.44,73.209 +765596,189.38,72.758 +765597,194.47,74.222 +765598,192.26,73.711 +765599,190.13,73.215 +765600,188.08,72.73 +765601,193.13,74.292 +765602,190.93,73.749 +765603,188.82,73.22 +765604,186.78,72.704 +765605,191.78,74.361 +765606,189.6,73.787 +765607,187.51,73.226 +765608,185.49,72.677 +765609,190.43,74.43 +765610,188.27,73.825 +765611,186.2,73.232 +765612,184.2,72.651 +765613,189.08,74.499 +765614,186.94,73.862 +765615,184.89,73.238 +765616,182.9,72.626 +765617,187.73,74.567 +765618,185.61,73.9 +765619,183.58,73.244 +765620,181.61,72.601 +765621,186.38,74.635 +765622,184.28,73.937 +765623,182.27,73.251 +765624,180.33,72.576 +765625,185.02,74.702 +765626,182.95,73.974 +765627,180.96,73.258 +765628,179.04,72.553 +765629,183.67,74.768 +765630,181.62,74.011 +765631,179.65,73.264 +765632,177.75,72.529 +765633,182.31,74.834 +765634,180.29,74.047 +765635,178.35,73.271 +765636,176.47,72.506 +765637,180.95,74.899 +765638,178.96,74.084 +765639,177.04,73.279 +765640,175.19,72.484 +765641,179.59,74.964 +765642,177.62,74.12 +765643,175.73,73.286 +765644,173.9,72.463 +765645,178.23,75.028 +765646,176.29,74.156 +765647,174.43,73.294 +765648,172.62,72.442 +765649,176.86,75.091 +765650,174.96,74.192 +765651,173.12,73.302 +765652,171.35,72.422 +765653,175.5,75.153 +765654,173.62,74.227 +765655,171.82,73.31 +765656,170.07,72.402 +765657,174.13,75.215 +765658,172.29,74.262 +765659,170.51,73.318 +765660,168.79,72.383 +765661,172.76,75.276 +765662,170.95,74.297 +765663,169.21,73.327 +765664,167.52,72.365 +765665,171.39,75.336 +765666,169.62,74.332 +765667,167.9,73.336 +765668,166.24,72.348 +765669,170.02,75.395 +765670,168.28,74.367 +765671,166.6,73.345 +765672,164.97,72.332 +765673,168.65,75.454 +765674,166.94,74.401 +765675,165.3,73.355 +765676,163.7,72.316 +765677,167.28,75.511 +765678,165.61,74.435 +765679,163.99,73.365 +765680,162.43,72.301 +765681,165.9,75.568 +765682,164.27,74.468 +765683,162.69,73.375 +765684,161.16,72.287 +765685,164.53,75.624 +765686,162.93,74.502 +765687,161.39,73.385 +765688,159.9,72.274 +765689,163.15,75.679 +765690,161.59,74.535 +765691,160.09,73.396 +765692,158.63,72.262 +765693,161.77,75.733 +765694,160.25,74.568 +765695,158.78,73.407 +765696,157.36,72.251 +765697,160.4,75.787 +765698,158.91,74.6 +765699,157.48,73.418 +765700,156.1,72.241 +765701,159.02,75.839 +765702,157.57,74.632 +765703,156.18,73.43 +765704,154.84,72.231 +765705,157.64,75.89 +765706,156.23,74.664 +765707,154.88,73.442 +765708,153.58,72.223 +765709,156.25,75.94 +765710,154.89,74.696 +765711,153.58,73.454 +765712,152.31,72.216 +765713,154.87,75.99 +765714,153.55,74.727 +765715,152.28,73.466 +765716,151.05,72.209 +765717,153.49,76.038 +765718,152.21,74.758 +765719,150.98,73.479 +765720,149.8,72.204 +765721,152.1,76.085 +765722,150.87,74.788 +765723,149.68,73.493 +765724,148.54,72.2 +765725,150.72,76.132 +765726,149.53,74.818 +765727,148.39,73.506 +765728,147.28,72.196 +765729,149.33,76.177 +765730,148.19,74.848 +765731,147.09,73.52 +765732,146.02,72.194 +765733,147.94,76.221 +765734,146.85,74.878 +765735,145.79,73.535 +765736,144.77,72.193 +765737,146.56,76.264 +765738,145.5,74.907 +765739,144.49,73.549 +765740,143.51,72.193 +765741,145.17,76.306 +765742,144.16,74.935 +765743,143.19,73.565 +765744,142.26,72.194 +765745,143.78,76.347 +765746,142.82,74.964 +765747,141.9,73.58 +765748,141.01,72.196 +765749,142.39,76.387 +765750,141.47,74.992 +765751,140.6,73.596 +765752,139.76,72.2 +765753,141,76.425 +765754,140.13,75.02 +765755,139.3,73.612 +765756,138.5,72.204 +765757,139.61,76.463 +765758,138.79,75.047 +765759,138,73.629 +765760,137.25,72.21 +765761,138.22,76.5 +765762,137.44,75.074 +765763,136.71,73.646 +765764,136,72.217 +765765,136.83,76.535 +765766,136.1,75.1 +765767,135.41,73.663 +765768,134.75,72.225 +765769,135.43,76.569 +765770,134.76,75.126 +765771,134.11,73.681 +765772,133.5,72.234 +765773,134.04,76.602 +765774,133.41,75.152 +765775,132.82,73.699 +765776,132.25,72.244 +765777,132.65,76.634 +765778,132.07,75.178 +765779,131.52,73.718 +765780,131.01,72.256 +765781,131.25,76.665 +765782,130.72,75.203 +765783,130.22,73.737 +765784,129.76,72.269 +765785,129.86,76.695 +765786,129.38,75.227 +765787,128.93,73.756 +765788,128.51,72.283 +765789,128.47,76.723 +765790,128.03,75.251 +765791,127.63,73.776 +765792,127.26,72.298 +765793,127.07,76.75 +765794,126.69,75.275 +765795,126.34,73.796 +765796,126.02,72.314 +765797,125.68,76.776 +765798,125.34,75.299 +765799,125.04,73.817 +765800,124.77,72.332 +765801,124.28,76.801 +765802,124,75.322 +765803,123.74,73.838 +765804,123.52,72.35 +765805,122.89,76.825 +765806,122.65,75.344 +765807,122.45,73.859 +765808,122.28,72.371 +765809,121.5,76.848 +765810,121.31,75.367 +765811,121.15,73.881 +765812,121.03,72.392 +765813,120.1,76.869 +765814,119.96,75.389 +765815,119.86,73.903 +765816,119.78,72.414 +765817,118.71,76.889 +765818,118.62,75.41 +765819,118.56,73.926 +765820,118.54,72.438 +765821,117.31,76.909 +765822,117.27,75.431 +765823,117.27,73.949 +765824,117.29,72.463 +765825,115.92,76.926 +765826,115.93,75.452 +765827,115.97,73.972 +765828,116.05,72.489 +765829,114.52,76.943 +765830,114.58,75.472 +765831,114.67,73.996 +765832,114.8,72.517 +765833,113.13,76.959 +765834,113.24,75.492 +765835,113.38,74.02 +765836,113.55,72.545 +765837,111.73,76.973 +765838,111.89,75.512 +765839,112.08,74.045 +765840,112.31,72.575 +765841,110.34,76.987 +765842,110.55,75.531 +765843,110.79,74.07 +765844,111.06,72.606 +765845,108.95,76.999 +765846,109.2,75.55 +765847,109.49,74.096 +765848,109.82,72.638 +765849,107.55,77.01 +765850,107.86,75.568 +765851,108.19,74.122 +765852,108.57,72.672 +765853,106.16,77.019 +765854,106.51,75.586 +765855,106.9,74.148 +765856,107.32,72.706 +765857,104.77,77.028 +765858,105.17,75.604 +765859,105.6,74.174 +765860,106.07,72.742 +765861,103.38,77.036 +765862,103.82,75.621 +765863,104.31,74.202 +765864,104.83,72.779 +765865,101.98,77.042 +765866,102.48,75.638 +765867,103.01,74.229 +765868,103.58,72.818 +765869,100.59,77.048 +765870,101.13,75.654 +765871,101.71,74.257 +765872,102.33,72.857 +765873,99.201,77.052 +765874,99.788,75.67 +765875,100.41,74.285 +765876,101.08,72.897 +765877,97.811,77.055 +765878,98.444,75.686 +765879,99.117,74.314 +765880,99.832,72.939 +765881,96.421,77.057 +765882,97.1,75.702 +765883,97.82,74.343 +765884,98.582,72.982 +765885,95.032,77.058 +765886,95.756,75.717 +765887,96.522,74.372 +765888,97.331,73.026 +765889,93.643,77.058 +765890,94.413,75.731 +765891,95.224,74.402 +765892,96.08,73.071 +765893,92.256,77.057 +765894,93.069,75.746 +765895,93.926,74.432 +765896,94.828,73.117 +765897,90.869,77.055 +765898,91.726,75.76 +765899,92.628,74.462 +765900,93.576,73.164 +765901,89.482,77.051 +765902,90.383,75.773 +765903,91.329,74.493 +765904,92.322,73.213 +765905,88.096,77.047 +765906,89.04,75.787 +765907,90.03,74.524 +765908,91.068,73.262 +765909,86.712,77.042 +765910,87.698,75.8 +765911,88.731,74.556 +765912,89.814,73.313 +765913,85.328,77.036 +765914,86.355,75.812 +765915,87.431,74.588 +765916,88.558,73.364 +765917,83.944,77.029 +765918,85.013,75.824 +765919,86.132,74.62 +765920,87.302,73.417 +765921,82.562,77.02 +765922,83.672,75.836 +765923,84.831,74.652 +765924,86.044,73.47 +765925,81.181,77.011 +765926,82.33,75.848 +765927,83.531,74.685 +765928,84.786,73.525 +765929,79.8,77.001 +765930,80.989,75.86 +765931,82.23,74.718 +765932,83.527,73.58 +765933,78.421,76.99 +765934,79.648,75.871 +765935,80.929,74.752 +765936,82.266,73.636 +765937,77.042,76.979 +765938,78.308,75.881 +765939,79.628,74.786 +765940,81.005,73.694 +765941,75.665,76.966 +765942,76.968,75.892 +765943,78.326,74.82 +765944,79.743,73.752 +765945,74.288,76.952 +765946,75.628,75.902 +765947,77.024,74.854 +765948,78.479,73.811 +765949,72.913,76.938 +765950,74.288,75.912 +765951,75.721,74.889 +765952,77.215,73.871 +765953,71.539,76.923 +765954,72.949,75.922 +765955,74.418,74.924 +765956,75.949,73.932 +765957,70.166,76.907 +765958,71.61,75.931 +765959,73.115,74.959 +765960,74.682,73.993 +765961,68.794,76.89 +765962,70.272,75.94 +765963,71.811,74.995 +765964,73.414,74.056 +765965,67.423,76.872 +765966,68.934,75.949 +765967,70.507,75.031 +765968,72.145,74.119 +765969,66.053,76.854 +765970,67.596,75.958 +765971,69.202,75.067 +765972,70.875,74.183 +765973,64.685,76.835 +765974,66.259,75.966 +765975,67.897,75.103 +765976,69.603,74.248 +765977,63.317,76.815 +765978,64.922,75.974 +765979,66.591,75.139 +765980,68.33,74.313 +765981,61.952,76.795 +765982,63.586,75.982 +765983,65.285,75.176 +765984,67.055,74.379 +765985,60.587,76.774 +765986,62.25,75.99 +765987,63.979,75.213 +765988,65.779,74.446 +765989,59.223,76.752 +765990,60.914,75.998 +765991,62.672,75.251 +765992,64.502,74.514 +765993,57.861,76.73 +765994,59.579,76.005 +765995,61.364,75.288 +765996,63.223,74.582 +765997,56.501,76.707 +765998,58.244,76.012 +765999,60.056,75.326 +766000,61.943,74.65 +766001,55.141,76.684 +766002,56.91,76.019 +766003,58.748,75.363 +766004,60.662,74.719 +766005,53.783,76.66 +766006,55.576,76.026 +766007,57.439,75.401 +766008,59.379,74.789 +766009,52.427,76.635 +766010,54.243,76.032 +766011,56.13,75.44 +766012,58.094,74.859 +766013,51.071,76.61 +766014,52.91,76.039 +766015,54.82,75.478 +766016,56.808,74.93 +766017,49.718,76.585 +766018,51.577,76.045 +766019,53.509,75.517 +766020,55.521,75.001 +766021,48.365,76.559 +766022,50.245,76.051 +766023,52.198,75.555 +766024,54.231,75.073 +766025,47.014,76.533 +766026,48.914,76.057 +766027,50.887,75.594 +766028,52.941,75.145 +766029,45.665,76.506 +766030,47.583,76.063 +766031,49.575,75.633 +766032,51.648,75.218 +766033,44.317,76.479 +766034,46.252,76.069 +766035,48.262,75.672 +766036,50.355,75.29 +766037,42.97,76.452 +766038,44.922,76.075 +766039,46.949,75.711 +766040,49.059,75.363 +766041,41.625,76.424 +766042,43.593,76.08 +766043,45.635,75.751 +766044,47.762,75.437 +766045,40.282,76.396 +766046,42.264,76.086 +766047,44.321,75.79 +766048,46.463,75.51 +766049,38.94,76.368 +766050,40.935,76.091 +766051,43.006,75.829 +766052,45.163,75.584 +766053,37.599,76.339 +766054,39.607,76.097 +766055,41.691,75.869 +766056,43.861,75.659 +766057,36.26,76.311 +766058,38.279,76.102 +766059,40.375,75.909 +766060,42.557,75.733 +766061,34.923,76.282 +766062,36.952,76.107 +766063,39.059,75.948 +766064,41.251,75.807 +766065,33.587,76.253 +766066,35.626,76.112 +766067,37.742,75.988 +766068,39.944,75.882 +766069,32.253,76.224 +766070,34.3,76.118 +766071,36.424,76.028 +766072,38.635,75.957 +766073,30.92,76.194 +766074,32.974,76.123 +766075,35.106,76.068 +766076,37.325,76.031 +766077,29.589,76.165 +766078,31.649,76.128 +766079,33.787,76.108 +766080,36.013,76.106 +766081,28.259,76.136 +766082,30.325,76.133 +766083,32.468,76.147 +766084,34.699,76.181 +766085,26.931,76.106 +766086,29.001,76.138 +766087,31.148,76.187 +766088,33.383,76.256 +766089,25.605,76.077 +766090,27.677,76.143 +766091,29.828,76.227 +766092,32.066,76.331 +766093,24.28,76.048 +766094,26.354,76.149 +766095,28.506,76.267 +766096,30.746,76.405 +766097,22.956,76.018 +766098,25.032,76.154 +766099,27.185,76.307 +766100,29.426,76.48 +766101,21.634,75.989 +766102,23.71,76.159 +766103,25.863,76.347 +766104,28.103,76.554 +766105,20.314,75.96 +766106,22.389,76.164 +766107,24.54,76.386 +766108,26.779,76.629 +766109,18.996,75.931 +766110,21.068,76.17 +766111,23.217,76.426 +766112,25.453,76.703 +766113,17.679,75.903 +766114,19.748,76.175 +766115,21.893,76.466 +766116,24.125,76.777 +766117,16.363,75.874 +766118,18.428,76.18 +766119,20.568,76.505 +766120,22.796,76.85 +766121,15.049,75.846 +766122,17.109,76.186 +766123,19.243,76.545 +766124,21.464,76.924 +766125,13.737,75.818 +766126,15.79,76.192 +766127,17.918,76.584 +766128,20.132,76.997 +766129,12.426,75.79 +766130,14.471,76.197 +766131,16.591,76.623 +766132,18.797,77.07 +766133,11.117,75.762 +766134,13.154,76.203 +766135,15.265,76.663 +766136,17.461,77.142 +766137,9.8089,75.735 +766138,11.836,76.209 +766139,13.937,76.702 +766140,16.123,77.214 +766141,8.5027,75.709 +766142,10.52,76.216 +766143,12.609,76.741 +766144,14.783,77.286 +766145,7.198,75.682 +766146,9.2034,76.222 +766147,11.281,76.78 +766148,13.442,77.357 +766149,5.8948,75.656 +766150,7.8877,76.228 +766151,9.952,76.818 +766152,12.099,77.428 +766153,4.5931,75.631 +766154,6.5724,76.235 +766155,8.6225,76.857 +766156,10.755,77.499 +766157,3.293,75.606 +766158,5.2577,76.242 +766159,7.2924,76.895 +766160,9.4087,77.568 +766161,1.9943,75.581 +766162,3.9434,76.249 +766163,5.9618,76.933 +766164,8.0609,77.638 +766165,0.69705,75.557 +766166,2.6296,76.256 +766167,4.6306,76.971 +766168,6.7116,77.706 +766169,359.4,75.534 +766170,1.3162,76.263 +766171,3.299,77.009 +766172,5.3607,77.775 +766173,358.11,75.511 +766174,0.0033705,76.27 +766175,1.9667,77.047 +766176,4.0083,77.842 +766177,356.81,75.489 +766178,358.69,76.278 +766179,0.63402,77.084 +766180,2.6543,77.909 +766181,355.52,75.467 +766182,357.38,76.286 +766183,359.3,77.122 +766184,1.2988,77.976 +766185,354.23,75.446 +766186,356.07,76.294 +766187,357.97,77.159 +766188,359.94,78.041 +766189,352.94,75.426 +766190,354.76,76.303 +766191,356.63,77.196 +766192,358.58,78.106 +766193,351.66,75.406 +766194,353.45,76.311 +766195,355.3,77.232 +766196,357.22,78.17 +766197,350.37,75.387 +766198,352.14,76.32 +766199,353.96,77.269 +766200,355.86,78.234 +766201,349.09,75.369 +766202,350.83,76.329 +766203,352.63,77.305 +766204,354.5,78.297 +766205,347.8,75.352 +766206,349.52,76.339 +766207,351.29,77.341 +766208,353.13,78.359 +766209,346.52,75.335 +766210,348.21,76.348 +766211,349.95,77.376 +766212,351.77,78.42 +766213,345.24,75.319 +766214,346.9,76.358 +766215,348.62,77.411 +766216,350.4,78.48 +766217,343.96,75.304 +766218,345.59,76.368 +766219,347.28,77.447 +766220,349.03,78.539 +766221,342.68,75.29 +766222,344.28,76.379 +766223,345.94,77.481 +766224,347.66,78.598 +766225,341.41,75.277 +766226,342.98,76.39 +766227,344.6,77.516 +766228,346.29,78.656 +766229,340.13,75.265 +766230,341.67,76.401 +766231,343.26,77.55 +766232,344.92,78.713 +766233,338.85,75.253 +766234,340.36,76.412 +766235,341.92,77.584 +766236,343.55,78.769 +766237,337.58,75.243 +766238,339.06,76.424 +766239,340.59,77.618 +766240,342.17,78.824 +766241,336.31,75.233 +766242,337.75,76.436 +766243,339.25,77.651 +766244,340.8,78.878 +766245,335.04,75.225 +766246,336.45,76.449 +766247,337.9,77.684 +766248,339.42,78.931 +766249,333.77,75.217 +766250,335.14,76.461 +766251,336.56,77.716 +766252,338.04,78.983 +766253,332.5,75.21 +766254,333.84,76.474 +766255,335.22,77.749 +766256,336.66,79.034 +766257,331.23,75.205 +766258,332.53,76.488 +766259,333.88,77.781 +766260,335.29,79.084 +766261,329.96,75.2 +766262,331.23,76.502 +766263,332.54,77.812 +766264,333.9,79.133 +766265,328.7,75.197 +766266,329.92,76.516 +766267,331.2,77.844 +766268,332.52,79.181 +766269,327.43,75.194 +766270,328.62,76.53 +766271,329.85,77.875 +766272,331.14,79.228 +766273,326.17,75.193 +766274,327.32,76.545 +766275,328.51,77.905 +766276,329.76,79.274 +766277,324.9,75.193 +766278,326.01,76.56 +766279,327.17,77.936 +766280,328.37,79.319 +766281,323.64,75.193 +766282,324.71,76.576 +766283,325.82,77.966 +766284,326.99,79.363 +766285,322.38,75.195 +766286,323.41,76.592 +766287,324.48,77.995 +766288,325.6,79.405 +766289,321.12,75.199 +766290,322.11,76.608 +766291,323.14,78.024 +766292,324.21,79.447 +766293,319.86,75.203 +766294,320.8,76.625 +766295,321.79,78.053 +766296,322.82,79.487 +766297,318.6,75.208 +766298,319.5,76.642 +766299,320.45,78.082 +766300,321.44,79.527 +766301,317.34,75.215 +766302,318.2,76.659 +766303,319.1,78.11 +766304,320.05,79.565 +766305,316.08,75.223 +766306,316.9,76.677 +766307,317.76,78.137 +766308,318.66,79.602 +766309,314.82,75.231 +766310,315.6,76.696 +766311,316.41,78.165 +766312,317.27,79.638 +766313,313.56,75.242 +766314,314.3,76.714 +766315,315.07,78.192 +766316,315.87,79.673 +766317,312.31,75.253 +766318,313,76.733 +766319,313.72,78.218 +766320,314.48,79.706 +766321,311.05,75.265 +766322,311.69,76.753 +766323,312.37,78.244 +766324,313.09,79.739 +766325,309.8,75.279 +766326,310.39,76.773 +766327,311.03,78.27 +766328,311.7,79.77 +766329,308.54,75.294 +766330,309.09,76.793 +766331,309.68,78.295 +766332,310.31,79.8 +766333,307.29,75.31 +766334,307.79,76.814 +766335,308.33,78.32 +766336,308.91,79.829 +766337,306.03,75.328 +766338,306.49,76.835 +766339,306.99,78.345 +766340,307.52,79.856 +766341,304.78,75.347 +766342,305.19,76.857 +766343,305.64,78.369 +766344,306.13,79.883 +766345,303.52,75.366 +766346,303.89,76.879 +766347,304.29,78.393 +766348,304.73,79.908 +766349,302.27,75.388 +766350,302.59,76.901 +766351,302.95,78.416 +766352,303.34,79.932 +766353,301.02,75.41 +766354,301.29,76.924 +766355,301.6,78.439 +766356,301.94,79.955 +766357,299.77,75.434 +766358,299.99,76.947 +766359,300.25,78.462 +766360,300.55,79.977 +766361,298.51,75.459 +766362,298.69,76.971 +766363,298.91,78.484 +766364,299.15,79.997 +766365,297.26,75.485 +766366,297.39,76.995 +766367,297.56,78.506 +766368,297.76,80.0168 +766369,296.01,75.512 +766370,296.09,77.019 +766371,296.21,78.527 +766372,296.36,80.035 +766373,294.75,75.541 +766374,294.79,77.044 +766375,294.86,78.548 +766376,294.97,80.0519 +766377,293.5,75.571 +766378,293.49,77.069 +766379,293.52,78.569 +766380,293.57,80.0678 +766381,292.25,75.602 +766382,292.19,77.095 +766383,292.17,78.589 +766384,292.18,80.0824 +766385,291,75.634 +766386,290.89,77.121 +766387,290.82,78.609 +766388,290.78,80.0958 +766389,289.74,75.668 +766390,289.59,77.148 +766391,289.47,78.628 +766392,289.39,80.1081 +766393,288.49,75.702 +766394,288.29,77.175 +766395,288.13,78.647 +766396,287.99,80.1192 +766397,287.24,75.738 +766398,286.99,77.202 +766399,286.78,78.666 +766400,286.6,80.1292 +766401,285.99,75.776 +766402,285.69,77.23 +766403,285.43,78.684 +766404,285.2,80.138 +766405,284.73,75.814 +766406,284.39,77.258 +766407,284.08,78.702 +766408,283.81,80.1457 +766409,283.48,75.854 +766410,283.09,77.286 +766411,282.74,78.72 +766412,282.42,80.1522 +766413,282.23,75.894 +766414,281.79,77.315 +766415,281.39,78.737 +766416,281.02,80.1577 +766417,280.97,75.936 +766418,280.49,77.345 +766419,280.04,78.754 +766420,279.63,80.1619 +766421,279.72,75.98 +766422,279.19,77.374 +766423,278.7,78.77 +766424,278.24,80.1651 +766425,278.46,76.024 +766426,277.89,77.405 +766427,277.35,78.786 +766428,276.84,80.1672 +766429,277.21,76.069 +766430,276.59,77.435 +766431,276,78.802 +766432,275.45,80.1682 +766433,275.95,76.116 +766434,275.29,77.466 +766435,274.66,78.817 +766436,274.06,80.1681 +766437,274.69,76.164 +766438,273.98,77.497 +766439,273.31,78.832 +766440,272.67,80.167 +766441,273.44,76.212 +766442,272.68,77.529 +766443,271.96,78.847 +766444,271.28,80.1648 +766445,272.18,76.262 +766446,271.38,77.561 +766447,270.62,78.861 +766448,269.89,80.1616 +766449,270.92,76.313 +766450,270.08,77.593 +766451,269.27,78.875 +766452,268.5,80.1573 +766453,269.66,76.366 +766454,268.77,77.626 +766455,267.93,78.889 +766456,267.11,80.152 +766457,268.4,76.419 +766458,267.47,77.659 +766459,266.58,78.902 +766460,265.73,80.1458 +766461,267.14,76.473 +766462,266.17,77.692 +766463,265.24,78.915 +766464,264.34,80.1385 +766465,265.88,76.528 +766466,264.87,77.726 +766467,263.89,78.927 +766468,262.95,80.1303 +766469,264.62,76.584 +766470,263.56,77.76 +766471,262.55,78.94 +766472,261.57,80.1211 +766473,263.36,76.641 +766474,262.26,77.794 +766475,261.2,78.952 +766476,260.18,80.111 +766477,262.09,76.7 +766478,260.95,77.829 +766479,259.86,78.963 +766480,258.8,80.1 +766481,260.83,76.759 +766482,259.65,77.864 +766483,258.51,78.975 +766484,257.42,80.0881 +766485,259.56,76.819 +766486,258.34,77.899 +766487,257.17,78.986 +766488,256.04,80.0752 +766489,258.3,76.88 +766490,257.04,77.935 +766491,255.83,78.996 +766492,254.65,80.0616 +766493,257.03,76.942 +766494,255.73,77.971 +766495,254.48,79.007 +766496,253.27,80.047 +766497,255.76,77.004 +766498,254.43,78.007 +766499,253.14,79.017 +766500,251.9,80.0317 +766501,254.49,77.068 +766502,253.12,78.044 +766503,251.8,79.027 +766504,250.52,80.0155 +766505,253.22,77.132 +766506,251.81,78.081 +766507,250.45,79.037 +766508,249.14,79.999 +766509,251.95,77.197 +766510,250.51,78.118 +766511,249.11,79.046 +766512,247.76,79.981 +766513,250.68,77.263 +766514,249.2,78.155 +766515,247.77,79.055 +766516,246.39,79.962 +766517,249.41,77.33 +766518,247.89,78.193 +766519,246.43,79.064 +766520,245.02,79.943 +766521,248.13,77.398 +766522,246.58,78.23 +766523,245.09,79.073 +766524,243.64,79.923 +766525,246.85,77.466 +766526,245.28,78.269 +766527,243.75,79.082 +766528,242.27,79.903 +766529,245.58,77.535 +766530,243.97,78.307 +766531,242.41,79.09 +766532,240.9,79.882 +766533,244.3,77.604 +766534,242.66,78.345 +766535,241.07,79.098 +766536,239.53,79.86 +766537,243.02,77.674 +766538,241.35,78.384 +766539,239.73,79.106 +766540,238.17,79.837 +766541,241.74,77.745 +766542,240.04,78.423 +766543,238.39,79.114 +766544,236.8,79.814 +766545,240.46,77.816 +766546,238.73,78.462 +766547,237.05,79.121 +766548,235.43,79.79 +766549,239.17,77.888 +766550,237.41,78.502 +766551,235.71,79.128 +766552,234.07,79.766 +766553,237.89,77.961 +766554,236.1,78.541 +766555,234.38,79.136 +766556,232.71,79.742 +766557,236.6,78.034 +766558,234.79,78.581 +766559,233.04,79.143 +766560,231.34,79.716 +766561,235.31,78.107 +766562,233.48,78.621 +766563,231.7,79.149 +766564,229.98,79.691 +766565,234.02,78.181 +766566,232.16,78.661 +766567,230.37,79.156 +766568,228.63,79.665 +766569,232.73,78.255 +766570,230.85,78.701 +766571,229.03,79.163 +766572,227.27,79.638 +766573,231.44,78.33 +766574,229.54,78.741 +766575,227.69,79.169 +766576,225.91,79.611 +766577,230.15,78.405 +766578,228.22,78.782 +766579,226.36,79.175 +766580,224.56,79.584 +766581,228.85,78.48 +766582,226.91,78.822 +766583,225.03,79.182 +766584,223.2,79.556 +766585,227.56,78.556 +766586,225.59,78.863 +766587,223.69,79.188 +766588,221.85,79.528 +766589,226.26,78.632 +766590,224.27,78.904 +766591,222.36,79.194 +766592,220.5,79.5 +766593,224.96,78.708 +766594,222.96,78.944 +766595,221.02,79.2 +766596,219.15,79.472 +766597,223.66,78.785 +766598,221.64,78.985 +766599,219.69,79.206 +766600,217.8,79.443 +766601,222.36,78.861 +766602,220.32,79.026 +766603,218.36,79.211 +766604,216.46,79.414 +766605,221.05,78.938 +766606,219,79.067 +766607,217.03,79.217 +766608,215.11,79.385 +766609,219.75,79.015 +766610,217.69,79.109 +766611,215.7,79.223 +766612,213.77,79.356 +766613,218.44,79.092 +766614,216.37,79.15 +766615,214.36,79.229 +766616,212.43,79.326 +766617,217.13,79.169 +766618,215.05,79.191 +766619,213.03,79.234 +766620,211.09,79.297 +766621,215.82,79.247 +766622,213.73,79.232 +766623,211.7,79.24 +766624,209.75,79.267 +766625,214.51,79.324 +766626,212.4,79.273 +766627,210.37,79.246 +766628,208.41,79.238 +766629,213.19,79.401 +766630,211.08,79.315 +766631,209.05,79.251 +766632,207.07,79.208 +766633,211.88,79.478 +766634,209.76,79.356 +766635,207.72,79.257 +766636,205.74,79.179 +766637,210.56,79.555 +766638,208.44,79.397 +766639,206.39,79.263 +766640,204.41,79.149 +766641,209.24,79.632 +766642,207.11,79.438 +766643,205.06,79.268 +766644,203.08,79.12 +766645,207.92,79.709 +766646,205.79,79.479 +766647,203.73,79.274 +766648,201.75,79.09 +766649,206.6,79.786 +766650,204.47,79.521 +766651,202.41,79.28 +766652,200.42,79.061 +766653,205.27,79.863 +766654,203.14,79.562 +766655,201.08,79.286 +766656,199.09,79.032 +766657,203.95,79.939 +766658,201.81,79.603 +766659,199.76,79.292 +766660,197.77,79.003 +766661,202.62,80.0151 +766662,200.49,79.644 +766663,198.43,79.298 +766664,196.44,78.974 +766665,201.29,80.0909 +766666,199.16,79.684 +766667,197.11,79.304 +766668,195.12,78.946 +766669,199.96,80.1665 +766670,197.83,79.725 +766671,195.78,79.31 +766672,193.8,78.917 +766673,198.63,80.2417 +766674,196.51,79.766 +766675,194.46,79.316 +766676,192.48,78.89 +766677,197.3,80.3166 +766678,195.18,79.806 +766679,193.14,79.323 +766680,191.16,78.862 +766681,195.96,80.391 +766682,193.85,79.847 +766683,191.81,79.329 +766684,189.84,78.835 +766685,194.63,80.4651 +766686,192.52,79.887 +766687,190.49,79.336 +766688,188.53,78.808 +766689,193.29,80.5387 +766690,191.19,79.927 +766691,189.17,79.343 +766692,187.22,78.781 +766693,191.95,80.6119 +766694,189.86,79.967 +766695,187.85,79.349 +766696,185.9,78.755 +766697,190.61,80.6846 +766698,188.53,80.0074 +766699,186.53,79.357 +766700,184.59,78.73 +766701,189.26,80.7568 +766702,187.2,80.0471 +766703,185.21,79.364 +766704,183.28,78.704 +766705,187.92,80.8284 +766706,185.86,80.0867 +766707,183.89,79.371 +766708,181.98,78.68 +766709,186.57,80.8995 +766710,184.53,80.1261 +766711,182.57,79.379 +766712,180.67,78.656 +766713,185.22,80.9699 +766714,183.2,80.1652 +766715,181.25,79.387 +766716,179.37,78.632 +766717,183.87,81.0398 +766718,181.87,80.2042 +766719,179.93,79.395 +766720,178.06,78.609 +766721,182.52,81.109 +766722,180.53,80.243 +766723,178.61,79.403 +766724,176.76,78.587 +766725,181.17,81.1775 +766726,179.2,80.2816 +766727,177.3,79.412 +766728,175.46,78.565 +766729,179.82,81.2454 +766730,177.86,80.32 +766731,175.98,79.42 +766732,174.16,78.544 +766733,178.46,81.3125 +766734,176.53,80.3581 +766735,174.66,79.429 +766736,172.86,78.524 +766737,177.1,81.3789 +766738,175.19,80.396 +766739,173.35,79.438 +766740,171.57,78.504 +766741,175.75,81.4446 +766742,173.85,80.4336 +766743,172.03,79.448 +766744,170.27,78.485 +766745,174.39,81.5094 +766746,172.51,80.471 +766747,170.72,79.458 +766748,168.98,78.467 +766749,173.02,81.5735 +766750,171.18,80.5082 +766751,169.4,79.468 +766752,167.68,78.449 +766753,171.66,81.6367 +766754,169.84,80.545 +766755,168.09,79.478 +766756,166.39,78.433 +766757,170.3,81.6991 +766758,168.5,80.5816 +766759,166.77,79.488 +766760,165.1,78.417 +766761,168.93,81.7606 +766762,167.16,80.618 +766763,165.46,79.499 +766764,163.81,78.402 +766765,167.57,81.8212 +766766,165.82,80.654 +766767,164.14,79.51 +766768,162.53,78.388 +766769,166.2,81.8809 +766770,164.48,80.6897 +766771,162.83,79.522 +766772,161.24,78.374 +766773,164.83,81.9397 +766774,163.14,80.7251 +766775,161.52,79.533 +766776,159.96,78.362 +766777,163.46,81.9975 +766778,161.8,80.7603 +766779,160.21,79.545 +766780,158.67,78.351 +766781,162.09,82.0544 +766782,160.46,80.7951 +766783,158.9,79.558 +766784,157.39,78.34 +766785,160.71,82.1103 +766786,159.12,80.8296 +766787,157.58,79.57 +766788,156.11,78.331 +766789,159.34,82.1652 +766790,157.77,80.8637 +766791,156.27,79.583 +766792,154.83,78.322 +766793,157.96,82.2191 +766794,156.43,80.8976 +766795,154.96,79.597 +766796,153.55,78.315 +766797,156.59,82.2719 +766798,155.09,80.9311 +766799,153.65,79.61 +766800,152.27,78.308 +766801,155.21,82.3237 +766802,153.75,80.9642 +766803,152.34,79.624 +766804,150.99,78.303 +766805,153.83,82.3745 +766806,152.4,80.997 +766807,151.03,79.639 +766808,149.71,78.298 +766809,152.45,82.4241 +766810,151.06,81.0295 +766811,149.72,79.653 +766812,148.44,78.295 +766813,151.07,82.4727 +766814,149.71,81.0616 +766815,148.41,79.669 +766816,147.16,78.293 +766817,149.69,82.5202 +766818,148.37,81.0933 +766819,147.1,79.684 +766820,145.89,78.291 +766821,148.3,82.5666 +766822,147.02,81.1247 +766823,145.8,79.7 +766824,144.62,78.291 +766825,146.92,82.6118 +766826,145.68,81.1557 +766827,144.49,79.716 +766828,143.35,78.292 +766829,145.54,82.6559 +766830,144.33,81.1863 +766831,143.18,79.733 +766832,142.07,78.295 +766833,144.15,82.6989 +766834,142.98,81.2165 +766835,141.87,79.75 +766836,140.8,78.298 +766837,142.76,82.7407 +766838,141.64,81.2464 +766839,140.56,79.767 +766840,139.53,78.303 +766841,141.38,82.7813 +766842,140.29,81.2759 +766843,139.26,79.785 +766844,138.27,78.308 +766845,139.99,82.8208 +766846,138.94,81.305 +766847,137.95,79.803 +766848,137,78.315 +766849,138.6,82.859 +766850,137.6,81.3337 +766851,136.64,79.822 +766852,135.73,78.323 +766853,137.21,82.8961 +766854,136.25,81.362 +766855,135.34,79.841 +766856,134.46,78.332 +766857,135.82,82.932 +766858,134.9,81.3899 +766859,134.03,79.86 +766860,133.2,78.343 +766861,134.43,82.9667 +766862,133.55,81.4174 +766863,132.72,79.88 +766864,131.93,78.355 +766865,133.04,83.0002 +766866,132.21,81.4445 +766867,131.42,79.9 +766868,130.67,78.368 +766869,131.65,83.0324 +766870,130.86,81.4712 +766871,130.11,79.921 +766872,129.4,78.382 +766873,130.26,83.0635 +766874,129.51,81.4975 +766875,128.8,79.942 +766876,128.14,78.397 +766877,128.86,83.0933 +766878,128.16,81.5234 +766879,127.5,79.964 +766880,126.88,78.414 +766881,127.47,83.1219 +766882,126.81,81.5489 +766883,126.19,79.985 +766884,125.61,78.432 +766885,126.08,83.1492 +766886,125.46,81.5739 +766887,124.89,80.0078 +766888,124.35,78.451 +766889,124.68,83.1754 +766890,124.11,81.5986 +766891,123.58,80.0306 +766892,123.09,78.472 +766893,123.29,83.2003 +766894,122.76,81.6228 +766895,122.28,80.0537 +766896,121.83,78.493 +766897,121.89,83.2239 +766898,121.41,81.6467 +766899,120.97,80.0773 +766900,120.57,78.516 +766901,120.5,83.2464 +766902,120.06,81.6701 +766903,119.67,80.1013 +766904,119.3,78.541 +766905,119.1,83.2676 +766906,118.71,81.6931 +766907,118.36,80.1258 +766908,118.04,78.566 +766909,117.71,83.2875 +766910,117.36,81.7157 +766911,117.06,80.1506 +766912,116.78,78.593 +766913,116.31,83.3063 +766914,116.01,81.7379 +766915,115.75,80.1759 +766916,115.52,78.621 +766917,114.91,83.3238 +766918,114.66,81.7597 +766919,114.45,80.2016 +766920,114.26,78.65 +766921,113.52,83.3401 +766922,113.31,81.7811 +766923,113.14,80.2278 +766924,113,78.681 +766925,112.12,83.3552 +766926,111.96,81.8021 +766927,111.84,80.2543 +766928,111.74,78.713 +766929,110.73,83.369 +766930,110.61,81.8226 +766931,110.53,80.2813 +766932,110.48,78.746 +766933,109.33,83.3817 +766934,109.26,81.8428 +766935,109.23,80.3087 +766936,109.22,78.78 +766937,107.93,83.3931 +766938,107.91,81.8625 +766939,107.92,80.3365 +766940,107.96,78.816 +766941,106.54,83.4034 +766942,106.56,81.8819 +766943,106.61,80.3647 +766944,106.7,78.853 +766945,105.14,83.4125 +766946,105.21,81.9008 +766947,105.31,80.3934 +766948,105.44,78.891 +766949,103.75,83.4203 +766950,103.86,81.9194 +766951,104,80.4224 +766952,104.18,78.931 +766953,102.35,83.427 +766954,102.51,81.9376 +766955,102.7,80.4519 +766956,102.92,78.971 +766957,100.96,83.4326 +766958,101.16,81.9553 +766959,101.39,80.4817 +766960,101.66,79.013 +766961,99.56,83.437 +766962,99.809,81.9727 +766963,100.09,80.512 +766964,100.4,79.056 +766965,98.165,83.4402 +766966,98.458,81.9897 +766967,98.782,80.5426 +766968,99.136,79.1 +766969,96.771,83.4423 +766970,97.108,82.0063 +766971,97.476,80.5737 +766972,97.875,79.146 +766973,95.376,83.4432 +766974,95.758,82.0226 +766975,96.17,80.6051 +766976,96.613,79.192 +766977,93.982,83.4431 +766978,94.408,82.0384 +766979,94.864,80.6369 +766980,95.35,79.24 +766981,92.589,83.4419 +766982,93.058,82.0539 +766983,93.558,80.6692 +766984,94.088,79.289 +766985,91.196,83.4395 +766986,91.709,82.069 +766987,92.251,80.7018 +766988,92.825,79.339 +766989,89.803,83.4361 +766990,90.359,82.0838 +766991,90.945,80.7347 +766992,91.561,79.391 +766993,88.411,83.4316 +766994,89.009,82.0982 +766995,89.638,80.7681 +766996,90.297,79.443 +766997,87.019,83.4261 +766998,87.66,82.1122 +766999,88.331,80.8018 +767000,89.032,79.496 +767001,85.628,83.4195 +767002,86.311,82.1259 +767003,87.024,80.8358 +767004,87.767,79.551 +767005,84.238,83.412 +767006,84.962,82.1393 +767007,85.716,80.8702 +767008,86.501,79.607 +767009,82.848,83.4034 +767010,83.613,82.1523 +767011,84.408,80.905 +767012,85.235,79.663 +767013,81.459,83.3938 +767014,82.264,82.165 +767015,83.1,80.9401 +767016,83.968,79.721 +767017,80.071,83.3833 +767018,80.916,82.1774 +767019,81.792,80.9756 +767020,82.7,79.78 +767021,78.683,83.3718 +767022,79.568,82.1894 +767023,80.484,81.0114 +767024,81.431,79.839 +767025,77.296,83.3594 +767026,78.22,82.2011 +767027,79.175,81.0475 +767028,80.162,79.9 +767029,75.91,83.3461 +767030,76.872,82.2126 +767031,77.866,81.0839 +767032,78.892,79.962 +767033,74.524,83.3318 +767034,75.524,82.2237 +767035,76.556,81.1206 +767036,77.621,80.0246 +767037,73.14,83.3167 +767038,74.177,82.2345 +767039,75.247,81.1577 +767040,76.35,80.0882 +767041,71.756,83.3008 +767042,72.83,82.245 +767043,73.937,81.195 +767044,75.077,80.1527 +767045,70.373,83.284 +767046,71.483,82.2553 +767047,72.626,81.2327 +767048,73.804,80.218 +767049,68.991,83.2663 +767050,70.137,82.2653 +767051,71.316,81.2706 +767052,72.529,80.2843 +767053,67.61,83.2479 +767054,68.79,82.275 +767055,70.005,81.3088 +767056,71.254,80.3513 +767057,66.23,83.2287 +767058,67.444,82.2844 +767059,68.693,81.3473 +767060,69.978,80.4192 +767061,64.851,83.2088 +767062,66.099,82.2936 +767063,67.382,81.386 +767064,68.701,80.4879 +767065,63.473,83.1881 +767066,64.753,82.3026 +767067,66.069,81.425 +767068,67.422,80.5574 +767069,62.096,83.1667 +767070,63.408,82.3113 +767071,64.757,81.4642 +767072,66.143,80.6276 +767073,60.72,83.1447 +767074,62.064,82.3197 +767075,63.444,81.5037 +767076,64.863,80.6985 +767077,59.345,83.1219 +767078,60.719,82.328 +767079,62.131,81.5434 +767080,63.581,80.7702 +767081,57.972,83.0986 +767082,59.375,82.3361 +767083,60.817,81.5833 +767084,62.298,80.8425 +767085,56.599,83.0746 +767086,58.032,82.3439 +767087,59.503,81.6235 +767088,61.015,80.9154 +767089,55.227,83.05 +767090,56.688,82.3515 +767091,58.189,81.6638 +767092,59.73,80.989 +767093,53.857,83.0249 +767094,55.345,82.359 +767095,56.874,81.7043 +767096,58.443,81.0631 +767097,52.488,82.9992 +767098,54.003,82.3663 +767099,55.558,81.7451 +767100,57.156,81.1378 +767101,51.12,82.973 +767102,52.661,82.3733 +767103,54.242,81.786 +767104,55.867,81.2131 +767105,49.753,82.9463 +767106,51.319,82.3803 +767107,52.926,81.8271 +767108,54.577,81.2889 +767109,48.388,82.9192 +767110,49.977,82.3871 +767111,51.609,81.8683 +767112,53.286,81.3651 +767113,47.023,82.8916 +767114,48.636,82.3937 +767115,50.292,81.9097 +767116,51.994,81.4418 +767117,45.66,82.8636 +767118,47.295,82.4002 +767119,48.975,81.9512 +767120,50.7,81.519 +767121,44.298,82.8352 +767122,45.955,82.4066 +767123,47.657,81.9929 +767124,49.405,81.5965 +767125,42.938,82.8064 +767126,44.615,82.4128 +767127,46.338,82.0347 +767128,48.108,81.6744 +767129,41.579,82.7774 +767130,43.276,82.4189 +767131,45.019,82.0766 +767132,46.81,81.7526 +767133,40.221,82.748 +767134,41.937,82.425 +767135,43.699,82.1186 +767136,45.511,81.8312 +767137,38.864,82.7183 +767138,40.598,82.4309 +767139,42.379,82.1607 +767140,44.21,81.91 +767141,37.509,82.6884 +767142,39.26,82.4368 +767143,41.059,82.2029 +767144,42.908,81.9891 +767145,36.155,82.6583 +767146,37.922,82.4426 +767147,39.738,82.2451 +767148,41.604,82.0684 +767149,34.803,82.6279 +767150,36.585,82.4483 +767151,38.416,82.2875 +767152,40.299,82.1479 +767153,33.452,82.5974 +767154,35.248,82.454 +767155,37.094,82.3299 +767156,38.993,82.2276 +767157,32.102,82.5668 +767158,33.912,82.4596 +767159,35.771,82.3723 +767160,37.685,82.3074 +767161,30.754,82.5361 +767162,32.576,82.4652 +767163,34.448,82.4147 +767164,36.376,82.3873 +767165,29.407,82.5052 +767166,31.24,82.4708 +767167,33.125,82.4572 +767168,35.065,82.4672 +767169,28.061,82.4743 +767170,29.905,82.4763 +767171,31.801,82.4997 +767172,33.752,82.5472 +767173,26.717,82.4434 +767174,28.571,82.4819 +767175,30.476,82.5423 +767176,32.438,82.6273 +767177,25.375,82.4125 +767178,27.236,82.4874 +767179,29.151,82.5848 +767180,31.123,82.7072 +767181,24.033,82.3816 +767182,25.903,82.493 +767183,27.825,82.6273 +767184,29.806,82.7872 +767185,22.694,82.3508 +767186,24.569,82.4986 +767187,26.499,82.6697 +767188,28.487,82.8671 +767189,21.355,82.32 +767190,23.237,82.5042 +767191,25.172,82.7122 +767192,27.167,82.9468 +767193,20.018,82.2894 +767194,21.904,82.5099 +767195,23.845,82.7546 +767196,25.846,83.0264 +767197,18.683,82.2589 +767198,20.572,82.5156 +767199,22.517,82.7969 +767200,24.523,83.1059 +767201,17.349,82.2286 +767202,19.241,82.5214 +767203,21.189,82.8392 +767204,23.198,83.1851 +767205,16.016,82.1985 +767206,17.91,82.5272 +767207,19.86,82.8814 +767208,21.872,83.2641 +767209,14.685,82.1686 +767210,16.579,82.5331 +767211,18.53,82.9235 +767212,20.544,83.3429 +767213,13.355,82.139 +767214,15.249,82.5392 +767215,17.2,82.9656 +767216,19.215,83.4213 +767217,12.026,82.1096 +767218,13.92,82.5453 +767219,15.87,83.0075 +767220,17.884,83.4995 +767221,10.7,82.0806 +767222,12.591,82.5515 +767223,14.539,83.0493 +767224,16.551,83.5772 +767225,9.374,82.0519 +767226,11.262,82.5578 +767227,13.207,83.091 +767228,15.217,83.6547 +767229,8.0499,82.0236 +767230,9.9336,82.5643 +767231,11.875,83.1326 +767232,13.881,83.7317 +767233,6.7272,81.9956 +767234,8.6059,82.5709 +767235,10.542,83.174 +767236,12.544,83.8082 +767237,5.406,81.9681 +767238,7.2785,82.5776 +767239,9.209,83.2153 +767240,11.206,83.8843 +767241,4.0861,81.941 +767242,5.9517,82.5845 +767243,7.8753,83.2564 +767244,9.8653,83.9599 +767245,2.7677,81.9144 +767246,4.6252,82.5916 +767247,6.541,83.2973 +767248,8.5236,84.035 +767249,1.4506,81.8883 +767250,3.2993,82.5988 +767251,5.2062,83.3381 +767252,7.1802,84.1095 +767253,0.13497,81.8628 +767254,1.9737,82.6063 +767255,3.8709,83.3787 +767256,5.8354,84.1835 +767257,358.82,81.8378 +767258,0.64864,82.6139 +767259,2.5351,83.4191 +767260,4.489,84.2568 +767261,357.51,81.8133 +767262,359.32,82.6217 +767263,1.1988,83.4593 +767264,3.1412,84.3295 +767265,356.2,81.7895 +767266,358,82.6297 +767267,359.86,83.4992 +767268,1.7918,84.4016 +767269,354.89,81.7663 +767270,356.68,82.6379 +767271,358.52,83.539 +767272,0.44096,84.473 +767273,353.58,81.7438 +767274,355.35,82.6464 +767275,357.19,83.5785 +767276,359.09,84.5436 +767277,352.27,81.7219 +767278,354.03,82.6551 +767279,355.85,83.6178 +767280,357.73,84.6136 +767281,350.96,81.7008 +767282,352.71,82.664 +767283,354.51,83.6568 +767284,356.38,84.6827 +767285,349.66,81.6803 +767286,351.39,82.6732 +767287,353.17,83.6956 +767288,355.02,84.7511 +767289,348.35,81.6607 +767290,350.06,82.6826 +767291,351.83,83.7341 +767292,353.66,84.8187 +767293,347.05,81.6418 +767294,348.74,82.6923 +767295,350.49,83.7724 +767296,352.31,84.8855 +767297,345.75,81.6237 +767298,347.42,82.7023 +767299,349.15,83.8103 +767300,350.94,84.9514 +767301,344.45,81.6065 +767302,346.1,82.7125 +767303,347.81,83.848 +767304,349.58,85.0164 +767305,343.15,81.59 +767306,344.78,82.723 +767307,346.47,83.8854 +767308,348.22,85.0805 +767309,341.85,81.5745 +767310,343.46,82.7339 +767311,345.12,83.9225 +767312,346.85,85.1437 +767313,340.56,81.5598 +767314,342.14,82.745 +767315,343.78,83.9593 +767316,345.49,85.206 +767317,339.26,81.5461 +767318,340.82,82.7564 +767319,342.44,83.9957 +767320,344.12,85.2673 +767321,337.97,81.5333 +767322,339.5,82.7682 +767323,341.09,84.0319 +767324,342.75,85.3276 +767325,336.68,81.5214 +767326,338.19,82.7802 +767327,339.75,84.0677 +767328,341.38,85.3869 +767329,335.38,81.5105 +767330,336.87,82.7926 +767331,338.41,84.1031 +767332,340.01,85.4452 +767333,334.09,81.5006 +767334,335.55,82.8054 +767335,337.06,84.1383 +767336,338.64,85.5025 +767337,332.8,81.4917 +767338,334.23,82.8184 +767339,335.72,84.1731 +767340,337.26,85.5587 +767341,331.52,81.4839 +767342,332.92,82.8319 +767343,334.37,84.2075 +767344,335.89,85.6138 +767345,330.23,81.4771 +767346,331.6,82.8456 +767347,333.02,84.2416 +767348,334.51,85.6678 +767349,328.94,81.4713 +767350,330.28,82.8598 +767351,331.68,84.2753 +767352,333.13,85.7207 +767353,327.66,81.4666 +767354,328.97,82.8742 +767355,330.33,84.3086 +767356,331.76,85.7725 +767357,326.37,81.4631 +767358,327.65,82.8891 +767359,328.98,84.3416 +767360,330.38,85.8232 +767361,325.09,81.4606 +767362,326.34,82.9043 +767363,327.64,84.3742 +767364,329,85.8727 +767365,323.8,81.4593 +767366,325.02,82.9199 +767367,326.29,84.4063 +767368,327.61,85.9211 +767369,322.52,81.4591 +767370,323.71,82.9359 +767371,324.94,84.4382 +767372,326.23,85.9683 +767373,321.24,81.46 +767374,322.39,82.9523 +767375,323.59,84.4696 +767376,324.85,86.0142 +767377,319.96,81.4621 +767378,321.08,82.9691 +767379,322.24,84.5006 +767380,323.46,86.059 +767381,318.68,81.4655 +767382,319.76,82.9862 +767383,320.89,84.5312 +767384,322.08,86.1026 +767385,317.4,81.47 +767386,318.45,83.0038 +767387,319.54,84.5614 +767388,320.69,86.1449 +767389,316.13,81.4757 +767390,317.14,83.0218 +767391,318.19,84.5912 +767392,319.31,86.186 +767393,314.85,81.4826 +767394,315.82,83.0401 +767395,316.84,84.6206 +767396,317.92,86.2259 +767397,313.57,81.4908 +767398,314.51,83.0589 +767399,315.49,84.6495 +767400,316.53,86.2645 +767401,312.3,81.5002 +767402,313.2,83.0781 +767403,314.14,84.6781 +767404,315.14,86.3019 +767405,311.02,81.5108 +767406,311.88,83.0977 +767407,312.79,84.7062 +767408,313.75,86.338 +767409,309.75,81.5227 +767410,310.57,83.1177 +767411,311.44,84.7339 +767412,312.36,86.3728 +767413,308.47,81.5358 +767414,309.26,83.1382 +767415,310.09,84.7612 +767416,310.97,86.4064 +767417,307.2,81.5503 +767418,307.95,83.159 +767419,308.74,84.788 +767420,309.58,86.4386 +767421,305.92,81.566 +767422,306.63,83.1803 +767423,307.38,84.8144 +767424,308.18,86.4696 +767425,304.65,81.5829 +767426,305.32,83.202 +767427,306.03,84.8404 +767428,306.79,86.4993 +767429,303.38,81.6012 +767430,304.01,83.2242 +767431,304.68,84.866 +767432,305.4,86.5277 +767433,302.11,81.6208 +767434,302.7,83.2467 +767435,303.33,84.8911 +767436,304,86.5548 +767437,300.84,81.6416 +767438,301.39,83.2697 +767439,301.97,84.9158 +767440,302.61,86.5806 +767441,299.57,81.6638 +767442,300.07,83.2932 +767443,300.62,84.94 +767444,301.21,86.6051 +767445,298.3,81.6872 +767446,298.76,83.317 +767447,299.27,84.9638 +767448,299.82,86.6283 +767449,297.03,81.712 +767450,297.45,83.3413 +767451,297.91,84.9872 +767452,298.42,86.6502 +767453,295.76,81.738 +767454,296.14,83.366 +767455,296.56,85.0101 +767456,297.02,86.6708 +767457,294.49,81.7654 +767458,294.83,83.3912 +767459,295.21,85.0326 +767460,295.63,86.6901 +767461,293.22,81.794 +767462,293.52,83.4168 +767463,293.85,85.0547 +767464,294.23,86.7081 +767465,291.95,81.824 +767466,292.21,83.4428 +767467,292.5,85.0763 +767468,292.83,86.7249 +767469,290.68,81.8553 +767470,290.89,83.4692 +767471,291.15,85.0975 +767472,291.44,86.7403 +767473,289.41,81.8878 +767474,289.58,83.4961 +767475,289.79,85.1183 +767476,290.04,86.7545 +767477,288.14,81.9217 +767478,288.27,83.5234 +767479,288.44,85.1386 +767480,288.64,86.7673 +767481,286.87,81.9568 +767482,286.96,83.5511 +767483,287.08,85.1585 +767484,287.24,86.7789 +767485,285.6,81.9933 +767486,285.65,83.5792 +767487,285.73,85.178 +767488,285.85,86.7893 +767489,284.33,82.031 +767490,284.34,83.6078 +767491,284.38,85.197 +767492,284.45,86.7984 +767493,283.06,82.07 +767494,283.03,83.6368 +767495,283.02,85.2157 +767496,283.05,86.8062 +767497,281.79,82.1102 +767498,281.72,83.6662 +767499,281.67,85.2339 +767500,281.65,86.8128 +767501,280.52,82.1517 +767502,280.4,83.696 +767503,280.31,85.2516 +767504,280.26,86.8181 +767505,279.26,82.1945 +767506,279.09,83.7262 +767507,278.96,85.269 +767508,278.86,86.8222 +767509,277.99,82.2385 +767510,277.78,83.7568 +767511,277.61,85.286 +767512,277.46,86.8252 +767513,276.72,82.2838 +767514,276.47,83.7878 +767515,276.25,85.3025 +767516,276.06,86.8269 +767517,275.45,82.3303 +767518,275.16,83.8193 +767519,274.9,85.3186 +767520,274.67,86.8274 +767521,274.18,82.378 +767522,273.85,83.8511 +767523,273.54,85.3344 +767524,273.27,86.8267 +767525,272.91,82.4269 +767526,272.53,83.8833 +767527,272.19,85.3497 +767528,271.87,86.8249 +767529,271.63,82.477 +767530,271.22,83.916 +767531,270.84,85.3646 +767532,270.48,86.8219 +767533,270.36,82.5282 +767534,269.91,83.949 +767535,269.48,85.3792 +767536,269.08,86.8178 +767537,269.09,82.5807 +767538,268.6,83.9823 +767539,268.13,85.3934 +767540,267.69,86.8125 +767541,267.82,82.6343 +767542,267.28,84.0161 +767543,266.77,85.4071 +767544,266.29,86.8061 +767545,266.55,82.689 +767546,265.97,84.0502 +767547,265.42,85.4205 +767548,264.9,86.7986 +767549,265.27,82.7448 +767550,264.66,84.0847 +767551,264.07,85.4336 +767552,263.5,86.7901 +767553,264,82.8018 +767554,263.34,84.1196 +767555,262.71,85.4463 +767556,262.11,86.7805 +767557,262.73,82.8598 +767558,262.03,84.1548 +767559,261.36,85.4586 +767560,260.72,86.7698 +767561,261.45,82.9189 +767562,260.72,84.1903 +767563,260.01,85.4705 +767564,259.33,86.7581 +767565,260.18,82.9791 +767566,259.4,84.2262 +767567,258.66,85.4821 +767568,257.93,86.7454 +767569,258.9,83.0403 +767570,258.09,84.2624 +767571,257.3,85.4934 +767572,256.54,86.7317 +767573,257.62,83.1025 +767574,256.77,84.299 +767575,255.95,85.5043 +767576,255.15,86.717 +767577,256.35,83.1657 +767578,255.46,84.3359 +767579,254.6,85.5149 +767580,253.76,86.7014 +767581,255.07,83.2299 +767582,254.14,84.3731 +767583,253.25,85.5252 +767584,252.37,86.6848 +767585,253.79,83.2951 +767586,252.83,84.4106 +767587,251.89,85.5352 +767588,250.98,86.6673 +767589,252.51,83.3612 +767590,251.51,84.4484 +767591,250.54,85.5449 +767592,249.6,86.6489 +767593,251.23,83.4282 +767594,250.2,84.4865 +767595,249.19,85.5542 +767596,248.21,86.6296 +767597,249.95,83.4961 +767598,248.88,84.5249 +767599,247.84,85.5633 +767600,246.82,86.6095 +767601,248.67,83.5649 +767602,247.56,84.5636 +767603,246.49,85.572 +767604,245.44,86.5886 +767605,247.38,83.6345 +767606,246.25,84.6025 +767607,245.14,85.5805 +767608,244.05,86.5668 +767609,246.1,83.7049 +767610,244.93,84.6417 +767611,243.79,85.5887 +767612,242.67,86.5443 +767613,244.81,83.7762 +767614,243.61,84.6812 +767615,242.44,85.5967 +767616,241.29,86.521 +767617,243.53,83.8482 +767618,242.29,84.7209 +767619,241.09,85.6044 +767620,239.91,86.4969 +767621,242.24,83.9209 +767622,240.98,84.7608 +767623,239.74,85.6118 +767624,238.53,86.4722 +767625,240.95,83.9944 +767626,239.66,84.801 +767627,238.39,85.6191 +767628,237.15,86.4467 +767629,239.66,84.0686 +767630,238.34,84.8414 +767631,237.04,85.626 +767632,235.77,86.4206 +767633,238.37,84.1435 +767634,237.02,84.8821 +767635,235.69,85.6328 +767636,234.39,86.3938 +767637,237.08,84.219 +767638,235.7,84.9229 +767639,234.34,85.6393 +767640,233.01,86.3665 +767641,235.79,84.2951 +767642,234.38,84.9639 +767643,233,85.6457 +767644,231.64,86.3385 +767645,234.5,84.3718 +767646,233.06,85.0051 +767647,231.65,85.6518 +767648,230.27,86.31 +767649,233.2,84.4491 +767650,231.74,85.0465 +767651,230.3,85.6577 +767652,228.89,86.2809 +767653,231.91,84.5269 +767654,230.42,85.0881 +767655,228.95,85.6635 +767656,227.52,86.2514 +767657,230.61,84.6052 +767658,229.09,85.1298 +767659,227.61,85.6691 +767660,226.15,86.2213 +767661,229.31,84.684 +767662,227.77,85.1716 +767663,226.26,85.6745 +767664,224.78,86.1908 +767665,228.02,84.7632 +767666,226.45,85.2136 +767667,224.91,85.6798 +767668,223.41,86.1599 +767669,226.72,84.8429 +767670,225.13,85.2558 +767671,223.57,85.685 +767672,222.04,86.1285 +767673,225.41,84.9229 +767674,223.8,85.298 +767675,222.22,85.69 +767676,220.68,86.0968 +767677,224.11,85.0033 +767678,222.48,85.3404 +767679,220.88,85.6949 +767680,219.31,86.0648 +767681,222.81,85.084 +767682,221.15,85.3828 +767683,219.53,85.6996 +767684,217.95,86.0324 +767685,221.5,85.165 +767686,219.83,85.4254 +767687,218.19,85.7043 +767688,216.59,85.9997 +767689,220.2,85.2463 +767690,218.5,85.468 +767691,216.85,85.7089 +767692,215.22,85.9668 +767693,218.89,85.3279 +767694,217.18,85.5107 +767695,215.5,85.7133 +767696,213.86,85.9336 +767697,217.58,85.4096 +767698,215.85,85.5535 +767699,214.16,85.7177 +767700,212.51,85.9002 +767701,216.27,85.4915 +767702,214.52,85.5963 +767703,212.82,85.7221 +767704,211.15,85.8667 +767705,214.96,85.5736 +767706,213.2,85.6392 +767707,211.48,85.7264 +767708,209.79,85.833 +767709,213.64,85.6557 +767710,211.87,85.682 +767711,210.13,85.7306 +767712,208.44,85.7992 +767713,212.33,85.738 +767714,210.54,85.7249 +767715,208.79,85.7348 +767716,207.08,85.7653 +767717,211.01,85.8203 +767718,209.21,85.7679 +767719,207.45,85.739 +767720,205.73,85.7313 +767721,209.69,85.9026 +767722,207.88,85.8108 +767723,206.11,85.7431 +767724,204.38,85.6973 +767725,208.37,85.9849 +767726,206.55,85.8537 +767727,204.77,85.7473 +767728,203.03,85.6633 +767729,207.05,86.0671 +767730,205.22,85.8965 +767731,203.43,85.7514 +767732,201.68,85.6293 +767733,205.73,86.1493 +767734,203.89,85.9394 +767735,202.09,85.7556 +767736,200.34,85.5954 +767737,204.41,86.2313 +767738,202.56,85.9822 +767739,200.76,85.7598 +767740,198.99,85.5616 +767741,203.08,86.3133 +767742,201.23,86.0249 +767743,199.42,85.764 +767744,197.65,85.5279 +767745,201.76,86.395 +767746,199.9,86.0676 +767747,198.08,85.7683 +767748,196.3,85.4943 +767749,200.43,86.4765 +767750,198.56,86.1102 +767751,196.74,85.7726 +767752,194.96,85.4609 +767753,199.1,86.5578 +767754,197.23,86.1527 +767755,195.4,85.777 +767756,193.62,85.4277 +767757,197.77,86.6389 +767758,195.9,86.1952 +767759,194.07,85.7814 +767760,192.28,85.3948 +767761,196.44,86.7196 +767762,194.56,86.2375 +767763,192.73,85.786 +767764,190.95,85.362 +767765,195.11,86.8 +767766,193.23,86.2797 +767767,191.4,85.7906 +767768,189.61,85.3296 +767769,193.77,86.8801 +767770,191.89,86.3218 +767771,190.06,85.7953 +767772,188.28,85.2975 +767773,192.43,86.9597 +767774,190.56,86.3637 +767775,188.73,85.8001 +767776,186.94,85.2658 +767777,191.1,87.039 +767778,189.22,86.4055 +767779,187.39,85.8051 +767780,185.61,85.2344 +767781,189.76,87.1177 +767782,187.88,86.4472 +767783,186.06,85.8102 +767784,184.28,85.2034 +767785,188.42,87.196 +767786,186.54,86.4887 +767787,184.72,85.8154 +767788,182.95,85.1728 +767789,187.07,87.2738 +767790,185.21,86.53 +767791,183.39,85.8208 +767792,181.62,85.1427 +767793,185.73,87.3511 +767794,183.87,86.5711 +767795,182.06,85.8263 +767796,180.3,85.1131 +767797,184.38,87.4277 +767798,182.53,86.612 +767799,180.73,85.832 +767800,178.97,85.084 +767801,183.04,87.5038 +767802,181.19,86.6528 +767803,179.39,85.8379 +767804,177.65,85.0555 +767805,181.69,87.5792 +767806,179.85,86.6933 +767807,178.06,85.844 +767808,176.33,85.0275 +767809,180.34,87.654 +767810,178.51,86.7336 +767811,176.73,85.8502 +767812,175,85.0001 +767813,178.99,87.7281 +767814,177.17,86.7736 +767815,175.4,85.8567 +767816,173.69,84.9733 +767817,177.64,87.8015 +767818,175.83,86.8135 +767819,174.07,85.8633 +767820,172.37,84.9471 +767821,176.28,87.8741 +767822,174.48,86.853 +767823,172.74,85.8702 +767824,171.05,84.9217 +767825,174.93,87.946 +767826,173.14,86.8924 +767827,171.41,85.8773 +767828,169.73,84.8969 +767829,173.57,88.0171 +767830,171.8,86.9314 +767831,170.08,85.8847 +767832,168.42,84.8728 +767833,172.21,88.0873 +767834,170.45,86.9702 +767835,168.75,85.8923 +767836,167.1,84.8495 +767837,170.85,88.1567 +767838,169.11,87.0087 +767839,167.43,85.9002 +767840,165.79,84.827 +767841,169.49,88.2252 +767842,167.77,87.0468 +767843,166.1,85.9083 +767844,164.48,84.8052 +767845,168.13,88.2929 +767846,166.42,87.0847 +767847,164.77,85.9167 +767848,163.17,84.7843 +767849,166.77,88.3596 +767850,165.08,87.1223 +767851,163.44,85.9253 +767852,161.86,84.7642 +767853,165.4,88.4254 +767854,163.73,87.1596 +767855,162.12,85.9343 +767856,160.55,84.745 +767857,164.04,88.4902 +767858,162.38,87.1965 +767859,160.79,85.9435 +767860,159.25,84.7267 +767861,162.67,88.554 +767862,161.04,87.2331 +767863,159.46,85.9531 +767864,157.94,84.7093 +767865,161.3,88.6167 +767866,159.69,87.2694 +767867,158.14,85.9629 +767868,156.64,84.6928 +767869,159.93,88.6785 +767870,158.34,87.3053 +767871,156.81,85.9731 +767872,155.34,84.6772 +767873,158.56,88.7392 +767874,156.99,87.3409 +767875,155.49,85.9836 +767876,154.03,84.6626 +767877,157.19,88.7988 +767878,155.65,87.3761 +767879,154.16,85.9944 +767880,152.73,84.6491 +767881,155.82,88.8573 +767882,154.3,87.411 +767883,152.84,86.0055 +767884,151.43,84.6365 +767885,154.44,88.9147 +767886,152.95,87.4454 +767887,151.52,86.017 +767888,150.13,84.6249 +767889,153.06,88.971 +767890,151.6,87.4795 +767891,150.19,86.0288 +767892,148.84,84.6145 +767893,151.69,89.02613 +767894,150.25,87.5132 +767895,148.87,86.041 +767896,147.54,84.605 +767897,150.31,89.08007 +767898,148.9,87.5465 +767899,147.55,86.0536 +767900,146.24,84.5967 +767901,148.93,89.13283 +767902,147.55,87.5794 +767903,146.22,86.0665 +767904,144.95,84.5895 +767905,147.55,89.18438 +767906,146.2,87.6119 +767907,144.9,86.0798 +767908,143.65,84.5834 +767909,146.17,89.23471 +767910,144.84,87.644 +767911,143.58,86.0934 +767912,142.36,84.5784 +767913,144.79,89.2838 +767914,143.49,87.6757 +767915,142.26,86.1074 +767916,141.07,84.5746 +767917,143.4,89.33165 +767918,142.14,87.707 +767919,140.93,86.1218 +767920,139.78,84.5719 +767921,142.02,89.37823 +767922,140.79,87.7378 +767923,139.61,86.1367 +767924,138.49,84.5704 +767925,140.63,89.42354 +767926,139.43,87.7682 +767927,138.29,86.1518 +767928,137.2,84.5702 +767929,139.25,89.46756 +767930,138.08,87.7982 +767931,136.97,86.1674 +767932,135.91,84.5711 +767933,137.86,89.51028 +767934,136.73,87.8278 +767935,135.65,86.1834 +767936,134.62,84.5732 +767937,136.47,89.55169 +767938,135.37,87.8569 +767939,134.33,86.1998 +767940,133.33,84.5766 +767941,135.09,89.59178 +767942,134.02,87.8855 +767943,133.01,86.2167 +767944,132.04,84.5812 +767945,133.7,89.63054 +767946,132.67,87.9137 +767947,131.69,86.2339 +767948,130.76,84.5871 +767949,132.31,89.66796 +767950,131.31,87.9415 +767951,130.37,86.2515 +767952,129.47,84.5943 +767953,130.91,89.70404 +767954,129.96,87.9688 +767955,129.05,86.2696 +767956,128.19,84.6027 +767957,129.52,89.73876 +767958,128.6,87.9957 +767959,127.73,86.288 +767960,126.9,84.6124 +767961,128.13,89.77212 +767962,127.24,88.0221 +767963,126.41,86.3069 +767964,125.62,84.6234 +767965,126.74,89.80411 +767966,125.89,88.048 +767967,125.09,86.3263 +767968,124.34,84.6357 +767969,125.34,89.83474 +767970,124.53,88.0735 +767971,123.77,86.346 +767972,123.05,84.6493 +767973,123.95,89.86399 +767974,123.18,88.0985 +767975,122.45,86.3662 +767976,121.77,84.6642 +767977,122.56,89.89186 +767978,121.82,88.123 +767979,121.13,86.3868 +767980,120.49,84.6804 +767981,121.16,89.918346 +767982,120.46,88.1471 +767983,119.81,86.4079 +767984,119.21,84.698 +767985,119.76,89.943451 +767986,119.11,88.1707 +767987,118.5,86.4294 +767988,117.93,84.7168 +767989,118.37,89.967171 +767990,117.75,88.1938 +767991,117.18,86.4513 +767992,116.65,84.737 +767993,116.97,89.989505 +767994,116.39,88.2165 +767995,115.86,86.4736 +767996,115.37,84.7586 +767997,115.57,90.010453 +767998,115.04,88.2386 +767999,114.54,86.4964 +768000,114.09,84.7814 +768001,114.18,90.030017 +768002,113.68,88.2604 +768003,113.22,86.5196 +768004,112.81,84.8057 +768005,112.78,90.048197 +768006,112.32,88.2816 +768007,111.9,86.5433 +768008,111.53,84.8312 +768009,111.38,90.064995 +768010,110.96,88.3024 +768011,110.59,86.5674 +768012,110.25,84.8581 +768013,109.98,90.080416 +768014,109.6,88.3227 +768015,109.27,86.5919 +768016,108.97,84.8863 +768017,108.58,90.094462 +768018,108.25,88.3425 +768019,107.95,86.6169 +768020,107.69,84.9159 +768021,107.18,90.10714 +768022,106.89,88.3619 +768023,106.63,86.6423 +768024,106.41,84.9468 +768025,105.79,90.11845 +768026,105.53,88.3808 +768027,105.31,86.6681 +768028,105.13,84.979 +768029,104.39,90.1284 +768030,104.17,88.3992 +768031,104,86.6943 +768032,103.85,85.0125 +768033,102.99,90.137 +768034,102.81,88.4172 +768035,102.68,86.721 +768036,102.57,85.0474 +768037,101.59,90.14425 +768038,101.46,88.4347 +768039,101.36,86.7481 +768040,101.29,85.0836 +768041,100.19,90.15017 +768042,100.1,88.4518 +768043,100.04,86.7757 +768044,100.02,85.1211 +768045,98.788,90.15475 +768046,98.738,88.4684 +768047,98.722,86.8036 +768048,98.738,85.1599 +768049,97.389,90.15802 +768050,97.38,88.4845 +768051,97.404,86.832 +768052,97.459,85.2 +768053,95.989,90.15998 +768054,96.021,88.5002 +768055,96.086,86.8608 +768056,96.18,85.2414 +768057,94.59,90.16063 +768058,94.663,88.5154 +768059,94.767,86.89 +768060,94.901,85.2841 +768061,93.191,90.16 +768062,93.304,88.5302 +768063,93.449,86.9196 +768064,93.622,85.328 +768065,91.792,90.15809 +768066,91.946,88.5446 +768067,92.13,86.9497 +768068,92.342,85.3732 +768069,90.393,90.15492 +768070,90.588,88.5585 +768071,90.811,86.9801 +768072,91.062,85.4197 +768073,88.994,90.1505 +768074,89.229,88.572 +768075,89.492,87.0109 +768076,89.782,85.4674 +768077,87.596,90.14484 +768078,87.871,88.5851 +768079,88.173,87.0422 +768080,88.502,85.5164 +768081,86.198,90.13796 +768082,86.512,88.5977 +768083,86.854,87.0738 +768084,87.222,85.5665 +768085,84.8,90.12986 +768086,85.154,88.6099 +768087,85.535,87.1058 +768088,85.941,85.6179 +768089,83.403,90.12058 +768090,83.796,88.6217 +768091,84.215,87.1382 +768092,84.659,85.6704 +768093,82.006,90.11012 +768094,82.438,88.6331 +768095,82.896,87.1709 +768096,83.378,85.7242 +768097,80.609,90.098505 +768098,81.08,88.6441 +768099,81.576,87.204 +768100,82.096,85.7791 +768101,79.213,90.085744 +768102,79.722,88.6547 +768103,80.256,87.2375 +768104,80.813,85.8351 +768105,77.817,90.07186 +768106,78.364,88.6648 +768107,78.936,87.2714 +768108,79.53,85.8923 +768109,76.421,90.056869 +768110,77.007,88.6746 +768111,77.615,87.3056 +768112,78.246,85.9506 +768113,75.027,90.040792 +768114,75.649,88.6841 +768115,76.295,87.3401 +768116,76.962,86.01 +768117,73.632,90.023647 +768118,74.292,88.6931 +768119,74.974,87.375 +768120,75.677,86.0705 +768121,72.239,90.0054542 +768122,72.935,88.7018 +768123,73.653,87.4103 +768124,74.392,86.132 +768125,70.846,89.986235 +768126,71.578,88.7101 +768127,72.331,87.4458 +768128,73.106,86.1946 +768129,69.453,89.966009 +768130,70.221,88.718 +768131,71.01,87.4817 +768132,71.819,86.2582 +768133,68.062,89.944798 +768134,68.864,88.7257 +768135,69.688,87.5179 +768136,70.532,86.3228 +768137,66.67,89.922625 +768138,67.508,88.7329 +768139,68.366,87.5544 +768140,69.244,86.3883 +768141,65.28,89.89951 +768142,66.152,88.7398 +768143,67.044,87.5912 +768144,67.955,86.4549 +768145,63.891,89.87548 +768146,64.796,88.7465 +768147,65.721,87.6283 +768148,66.665,86.5223 +768149,62.502,89.85055 +768150,63.44,88.7527 +768151,64.398,87.6657 +768152,65.375,86.5907 +768153,61.114,89.82476 +768154,62.084,88.7587 +768155,63.075,87.7033 +768156,64.084,86.66 +768157,59.726,89.79812 +768158,60.729,88.7644 +768159,61.751,87.7412 +768160,62.792,86.7301 +768161,58.34,89.77065 +768162,59.374,88.7697 +768163,60.427,87.7794 +768164,61.499,86.8011 +768165,56.954,89.74239 +768166,58.019,88.7748 +768167,59.103,87.8178 +768168,60.205,86.8729 +768169,55.57,89.71335 +768170,56.664,88.7796 +768171,57.778,87.8565 +768172,58.911,86.9455 +768173,54.186,89.68357 +768174,55.31,88.7842 +768175,56.453,87.8954 +768176,57.615,87.0188 +768177,52.803,89.65307 +768178,53.956,88.7884 +768179,55.128,87.9346 +768180,56.319,87.0929 +768181,51.421,89.62188 +768182,52.602,88.7925 +768183,53.803,87.9739 +768184,55.021,87.1677 +768185,50.04,89.59002 +768186,51.249,88.7962 +768187,52.477,88.0135 +768188,53.723,87.2432 +768189,48.661,89.55751 +768190,49.896,88.7998 +768191,51.15,88.0532 +768192,52.424,87.3193 +768193,47.282,89.5244 +768194,48.543,88.8031 +768195,49.823,88.0932 +768196,51.123,87.3961 +768197,45.904,89.49069 +768198,47.19,88.8062 +768199,48.496,88.1333 +768200,49.821,87.4735 +768201,44.527,89.45643 +768202,45.838,88.8091 +768203,47.169,88.1736 +768204,48.519,87.5514 +768205,43.151,89.42164 +768206,44.486,88.8118 +768207,45.841,88.214 +768208,47.215,87.6299 +768209,41.776,89.38635 +768210,43.134,88.8143 +768211,44.513,88.2546 +768212,45.91,87.7089 +768213,40.403,89.35058 +768214,41.783,88.8166 +768215,43.184,88.2954 +768216,44.604,87.7884 +768217,39.03,89.31437 +768218,40.432,88.8187 +768219,41.855,88.3363 +768220,43.297,87.8684 +768221,37.659,89.27774 +768222,39.082,88.8207 +768223,40.525,88.3772 +768224,41.989,87.9488 +768225,36.289,89.24073 +768226,37.731,88.8226 +768227,39.195,88.4183 +768228,40.68,88.0296 +768229,34.92,89.20336 +768230,36.381,88.8243 +768231,37.865,88.4595 +768232,39.369,88.1107 +768233,33.552,89.16566 +768234,35.032,88.8258 +768235,36.534,88.5008 +768236,38.057,88.1922 +768237,32.185,89.12766 +768238,33.683,88.8273 +768239,35.203,88.5422 +768240,36.745,88.274 +768241,30.82,89.0894 +768242,32.334,88.8286 +768243,33.871,88.5837 +768244,35.43,88.356 +768245,29.456,89.05089 +768246,30.985,88.8299 +768247,32.539,88.6251 +768248,34.115,88.4383 +768249,28.093,89.01218 +768250,29.637,88.831 +768251,31.206,88.6667 +768252,32.798,88.5208 +768253,26.731,88.9733 +768254,28.29,88.8321 +768255,29.873,88.7083 +768256,31.48,88.6035 +768257,25.37,88.9342 +768258,26.942,88.8331 +768259,28.539,88.7499 +768260,30.161,88.6863 +768261,24.011,88.8951 +768262,25.595,88.834 +768263,27.205,88.7915 +768264,28.84,88.7692 +768265,22.653,88.8558 +768266,24.249,88.8349 +768267,25.871,88.8331 +768268,27.518,88.8522 +768269,21.296,88.8165 +768270,22.903,88.8358 +768271,24.536,88.8748 +768272,26.195,88.9352 +768273,19.94,88.7772 +768274,21.557,88.8366 +768275,23.2,88.9164 +768276,24.871,89.01827 +768277,18.586,88.7379 +768278,20.212,88.8374 +768279,21.865,88.9579 +768280,23.545,89.10131 +768281,17.233,88.6986 +768282,18.867,88.8382 +768283,20.528,88.9995 +768284,22.218,89.18428 +768285,15.881,88.6593 +768286,17.522,88.839 +768287,19.191,89.04096 +768288,20.889,89.26717 +768289,14.531,88.6202 +768290,16.178,88.8398 +768291,17.854,89.08239 +768292,19.56,89.34994 +768293,13.181,88.5812 +768294,14.834,88.8406 +768295,16.516,89.12374 +768296,18.228,89.43256 +768297,11.833,88.5423 +768298,13.491,88.8415 +768299,15.178,89.16502 +768300,16.896,89.51499 +768301,10.487,88.5036 +768302,12.148,88.8424 +768303,13.839,89.2062 +768304,15.562,89.5972 +768305,9.1416,88.4651 +768306,10.805,88.8434 +768307,12.5,89.24728 +768308,14.227,89.67916 +768309,7.7975,88.4269 +768310,9.4632,88.8444 +768311,11.16,89.28825 +768312,12.89,89.76084 +768313,6.4548,88.3889 +768314,8.1214,88.8455 +768315,9.8198,89.32909 +768316,11.552,89.8422 +768317,5.1134,88.3513 +768318,6.7801,88.8467 +768319,8.4791,89.3698 +768320,10.213,89.923204 +768321,3.7732,88.314 +768322,5.4391,88.8479 +768323,7.1378,89.41036 +768324,8.8718,90.0038294 +768325,2.4343,88.277 +768326,4.0986,88.8493 +768327,5.7961,89.45076 +768328,7.5297,90.08404 +768329,1.0967,88.2404 +768330,2.7584,88.8508 +768331,4.454,89.491 +768332,6.1862,90.1638 +768333,359.76,88.2043 +768334,1.4187,88.8524 +768335,3.1113,89.53106 +768336,4.8413,90.24309 +768337,358.43,88.1686 +768338,0.079347,88.8542 +768339,1.7681,89.57093 +768340,3.495,90.32187 +768341,357.09,88.1334 +768342,358.74,88.8561 +768343,0.4245,89.61061 +768344,2.1474,90.4001 +768345,355.76,88.0986 +768346,357.4,88.8581 +768347,359.08,89.65008 +768348,0.79843,90.47776 +768349,354.43,88.0644 +768350,356.06,88.8603 +768351,357.74,89.68933 +768352,359.45,90.55481 +768353,353.1,88.0308 +768354,354.73,88.8627 +768355,356.39,89.72835 +768356,358.1,90.63123 +768357,351.77,87.9978 +768358,353.39,88.8652 +768359,355.05,89.76713 +768360,356.74,90.70699 +768361,350.44,87.9653 +768362,352.05,88.868 +768363,353.7,89.80567 +768364,355.39,90.78204 +768365,349.12,87.9335 +768366,350.71,88.8709 +768367,352.35,89.84395 +768368,354.03,90.85638 +768369,347.79,87.9024 +768370,349.38,88.8741 +768371,351.01,89.88196 +768372,352.68,90.92995 +768373,346.47,87.872 +768374,348.04,88.8775 +768375,349.66,89.919699 +768376,351.32,91.0027 +768377,345.14,87.8423 +768378,346.71,88.8811 +768379,348.31,89.957151 +768380,349.96,91.0747 +768381,343.82,87.8133 +768382,345.37,88.8849 +768383,346.96,89.9943079 +768384,348.6,91.1459 +768385,342.5,87.7852 +768386,344.04,88.889 +768387,345.61,90.031161 +768388,347.23,91.2161 +768389,341.18,87.7578 +768390,342.7,88.8933 +768391,344.26,90.067702 +768392,345.87,91.2855 +768393,339.86,87.7312 +768394,341.37,88.8979 +768395,342.91,90.10392 +768396,344.51,91.354 +768397,338.55,87.7055 +768398,340.04,88.9027 +768399,341.56,90.13981 +768400,343.14,91.4215 +768401,337.23,87.6806 +768402,338.7,88.9078 +768403,340.21,90.17536 +768404,341.77,91.488 +768405,335.92,87.6566 +768406,337.37,88.9132 +768407,338.86,90.21057 +768408,340.4,91.5535 +768409,334.6,87.6336 +768410,336.04,88.9189 +768411,337.51,90.24542 +768412,339.03,91.618 +768413,333.29,87.6115 +768414,334.7,88.9249 +768415,336.16,90.2799 +768416,337.66,91.6814 +768417,331.98,87.5903 +768418,333.37,88.9313 +768419,334.81,90.31402 +768420,336.29,91.7438 +768421,330.67,87.5701 +768422,332.04,88.9379 +768423,333.45,90.34776 +768424,334.92,91.8051 +768425,329.36,87.551 +768426,330.71,88.9448 +768427,332.1,90.38111 +768428,333.54,91.8652 +768429,328.05,87.5328 +768430,329.38,88.9521 +768431,330.75,90.41407 +768432,332.17,91.9242 +768433,326.74,87.5157 +768434,328.05,88.9597 +768435,329.39,90.44663 +768436,330.79,91.9821 +768437,325.44,87.4997 +768438,326.72,88.9676 +768439,328.04,90.47879 +768440,329.41,92.0387 +768441,324.13,87.4847 +768442,325.39,88.9759 +768443,326.69,90.51053 +768444,328.03,92.0942 +768445,322.83,87.4708 +768446,324.06,88.9845 +768447,325.33,90.54185 +768448,326.65,92.1484 +768449,321.52,87.4581 +768450,322.73,88.9935 +768451,323.97,90.57274 +768452,325.27,92.2014 +768453,320.22,87.4464 +768454,321.4,89.0029 +768455,322.62,90.6032 +768456,323.89,92.2531 +768457,318.92,87.436 +768458,320.07,89.01263 +768459,321.26,90.63323 +768460,322.51,92.3036 +768461,317.62,87.4267 +768462,318.74,89.02274 +768463,319.91,90.6628 +768464,321.12,92.3527 +768465,316.32,87.4185 +768466,317.41,89.03323 +768467,318.55,90.69194 +768468,319.74,92.4005 +768469,315.02,87.4116 +768470,316.08,89.0441 +768471,317.19,90.72061 +768472,318.35,92.447 +768473,313.72,87.4059 +768474,314.76,89.05536 +768475,315.84,90.74883 +768476,316.97,92.4922 +768477,312.42,87.4014 +768478,313.43,89.06702 +768479,314.48,90.77658 +768480,315.58,92.536 +768481,311.12,87.3982 +768482,312.1,89.07908 +768483,313.12,90.80386 +768484,314.19,92.5784 +768485,309.82,87.3962 +768486,310.77,89.09153 +768487,311.76,90.83067 +768488,312.8,92.6194 +768489,308.53,87.3954 +768490,309.45,89.1044 +768491,310.4,90.85701 +768492,311.41,92.6591 +768493,307.23,87.396 +768494,308.12,89.11768 +768495,309.04,90.88286 +768496,310.02,92.6973 +768497,305.94,87.3978 +768498,306.79,89.13137 +768499,307.68,90.90823 +768500,308.63,92.7341 +768501,304.64,87.4009 +768502,305.46,89.14548 +768503,306.33,90.93311 +768504,307.23,92.7695 +768505,303.35,87.4054 +768506,304.14,89.16 +768507,304.97,90.9575 +768508,305.84,92.8034 +768509,302.06,87.4111 +768510,302.81,89.17495 +768511,303.61,90.98139 +768512,304.45,92.836 +768513,300.76,87.4182 +768514,301.49,89.19033 +768515,302.25,91.0048 +768516,303.05,92.867 +768517,299.47,87.4266 +768518,300.16,89.20613 +768519,300.89,91.0277 +768520,301.66,92.8966 +768521,298.18,87.4363 +768522,298.83,89.22237 +768523,299.52,91.0501 +768524,300.26,92.9247 +768525,296.89,87.4474 +768526,297.51,89.23903 +768527,298.16,91.072 +768528,298.87,92.9514 +768529,295.6,87.4598 +768530,296.18,89.25613 +768531,296.8,91.0934 +768532,297.47,92.9766 +768533,294.31,87.4736 +768534,294.86,89.27367 +768535,295.44,91.1143 +768536,296.07,93.0003 +768537,293.02,87.4888 +768538,293.53,89.29164 +768539,294.08,91.1346 +768540,294.67,93.0226 +768541,291.73,87.5053 +768542,292.21,89.31004 +768543,292.72,91.1545 +768544,293.27,93.0433 +768545,290.44,87.5231 +768546,290.88,89.32889 +768547,291.36,91.1739 +768548,291.88,93.0626 +768549,289.15,87.5424 +768550,289.55,89.34817 +768551,290,91.1927 +768552,290.48,93.0804 +768553,287.86,87.563 +768554,288.23,89.36789 +768555,288.63,91.211 +768556,289.08,93.0967 +768557,286.57,87.585 +768558,286.9,89.38805 +768559,287.27,91.2289 +768560,287.68,93.1115 +768561,285.28,87.6083 +768562,285.58,89.40864 +768563,285.91,91.2462 +768564,286.28,93.1249 +768565,283.99,87.633 +768566,284.25,89.42968 +768567,284.55,91.263 +768568,284.88,93.1368 +768569,282.71,87.6591 +768570,282.93,89.45115 +768571,283.18,91.2793 +768572,283.48,93.1472 +768573,281.42,87.6865 +768574,281.6,89.47305 +768575,281.82,91.2951 +768576,282.08,93.1562 +768577,280.13,87.7153 +768578,280.28,89.49539 +768579,280.46,91.3104 +768580,280.68,93.1636 +768581,278.84,87.7455 +768582,278.95,89.51816 +768583,279.1,91.3252 +768584,279.27,93.1697 +768585,277.55,87.777 +768586,277.63,89.54136 +768587,277.73,91.3395 +768588,277.87,93.1743 +768589,276.27,87.8099 +768590,276.3,89.565 +768591,276.37,91.3532 +768592,276.47,93.1774 +768593,274.98,87.8441 +768594,274.98,89.58905 +768595,275.01,91.3665 +768596,275.07,93.1791 +768597,273.69,87.8796 +768598,273.65,89.61354 +768599,273.65,91.3793 +768600,273.67,93.1794 +768601,272.4,87.9165 +768602,272.33,89.63844 +768603,272.28,91.3916 +768604,272.27,93.1783 +768605,271.11,87.9547 +768606,271,89.66376 +768607,270.92,91.4034 +768608,270.87,93.1758 +768609,269.82,87.9942 +768610,269.68,89.6895 +768611,269.56,91.4147 +768612,269.47,93.1719 +768613,268.53,88.035 +768614,268.35,89.71565 +768615,268.19,91.4256 +768616,268.07,93.1666 +768617,267.24,88.0771 +768618,267.03,89.74221 +768619,266.83,91.4359 +768620,266.67,93.1599 +768621,265.96,88.1205 +768622,265.7,89.76917 +768623,265.47,91.4458 +768624,265.27,93.1519 +768625,264.67,88.1652 +768626,264.37,89.79654 +768627,264.11,91.4552 +768628,263.87,93.1425 +768629,263.38,88.2111 +768630,263.05,89.8243 +768631,262.74,91.4642 +768632,262.46,93.1319 +768633,262.09,88.2583 +768634,261.72,89.85245 +768635,261.38,91.4726 +768636,261.07,93.1199 +768637,260.79,88.3067 +768638,260.4,89.88099 +768639,260.02,91.4807 +768640,259.67,93.1066 +768641,259.5,88.3563 +768642,259.07,89.909915 +768643,258.66,91.4882 +768644,258.27,93.092 +768645,258.21,88.4072 +768646,257.74,89.939214 +768647,257.29,91.4954 +768648,256.87,93.0762 +768649,256.92,88.4592 +768650,256.42,89.968884 +768651,255.93,91.5021 +768652,255.47,93.0592 +768653,255.63,88.5124 +768654,255.09,89.9989205 +768655,254.57,91.5083 +768656,254.07,93.0409 +768657,254.33,88.5668 +768658,253.76,90.029317 +768659,253.21,91.5141 +768660,252.67,93.0214 +768661,253.04,88.6223 +768662,252.43,90.060068 +768663,251.85,91.5195 +768664,251.28,93.0007 +768665,251.75,88.6789 +768666,251.11,90.091166 +768667,250.48,91.5245 +768668,249.88,92.9789 +768669,250.45,88.7367 +768670,249.78,90.12261 +768671,249.12,91.5291 +768672,248.48,92.9559 +768673,249.16,88.7955 +768674,248.45,90.15438 +768675,247.76,91.5332 +768676,247.09,92.9318 +768677,247.86,88.8555 +768678,247.12,90.18648 +768679,246.4,91.537 +768680,245.69,92.9066 +768681,246.57,88.9164 +768682,245.79,90.21891 +768683,245.04,91.5404 +768684,244.3,92.8803 +768685,245.27,88.9784 +768686,244.46,90.25164 +768687,243.68,91.5434 +768688,242.91,92.853 +768689,243.97,89.04141 +768690,243.14,90.28469 +768691,242.32,91.546 +768692,241.51,92.8246 +768693,242.67,89.10539 +768694,241.81,90.31803 +768695,240.96,91.5482 +768696,240.12,92.7953 +768697,241.37,89.17034 +768698,240.48,90.35166 +768699,239.6,91.5501 +768700,238.73,92.7649 +768701,240.07,89.23623 +768702,239.15,90.38558 +768703,238.24,91.5516 +768704,237.34,92.7336 +768705,238.77,89.30304 +768706,237.82,90.41977 +768707,236.88,91.5528 +768708,235.95,92.7014 +768709,237.47,89.37074 +768710,236.49,90.45423 +768711,235.52,91.5537 +768712,234.56,92.6682 +768713,236.17,89.43931 +768714,235.16,90.48894 +768715,234.16,91.5542 +768716,233.17,92.6342 +768717,234.87,89.50873 +768718,233.82,90.52391 +768719,232.8,91.5544 +768720,231.78,92.5993 +768721,233.56,89.57896 +768722,232.49,90.55911 +768723,231.44,91.5543 +768724,230.4,92.5635 +768725,232.26,89.64999 +768726,231.16,90.59455 +768727,230.08,91.5539 +768728,229.01,92.527 +768729,230.95,89.72178 +768730,229.83,90.63021 +768731,228.72,91.5532 +768732,227.63,92.4897 +768733,229.64,89.79431 +768734,228.5,90.66609 +768735,227.36,91.5522 +768736,226.24,92.4517 +768737,228.34,89.86756 +768738,227.16,90.70216 +768739,226.01,91.551 +768740,224.86,92.4129 +768741,227.03,89.941486 +768742,225.83,90.73844 +768743,224.65,91.5495 +768744,223.48,92.3734 +768745,225.72,90.016071 +768746,224.5,90.77489 +768747,223.29,91.5477 +768748,222.1,92.3333 +768749,224.41,90.091285 +768750,223.16,90.81153 +768751,221.93,91.5457 +768752,220.72,92.2926 +768753,223.09,90.1671 +768754,221.83,90.84832 +768755,220.58,91.5434 +768756,219.34,92.2512 +768757,221.78,90.24348 +768758,220.49,90.88528 +768759,219.22,91.5409 +768760,217.96,92.2093 +768761,220.47,90.3204 +768762,219.16,90.92238 +768763,217.86,91.5382 +768764,216.58,92.1668 +768765,219.15,90.39783 +768766,217.82,90.95961 +768767,216.51,91.5353 +768768,215.21,92.1239 +768769,217.84,90.47574 +768770,216.49,90.99697 +768771,215.15,91.5322 +768772,213.83,92.0804 +768773,216.52,90.5541 +768774,215.15,91.0344 +768775,213.8,91.5289 +768776,212.46,92.0365 +768777,215.2,90.63288 +768778,213.82,91.072 +768779,212.44,91.5255 +768780,211.08,91.9921 +768781,213.88,90.71204 +768782,212.48,91.1097 +768783,211.09,91.5219 +768784,209.71,91.9474 +768785,212.56,90.79156 +768786,211.14,91.1474 +768787,209.74,91.5181 +768788,208.34,91.9023 +768789,211.24,90.8714 +768790,209.8,91.1853 +768791,208.38,91.5141 +768792,206.97,91.8569 +768793,209.92,90.95153 +768794,208.47,91.2232 +768795,207.03,91.5101 +768796,205.6,91.8112 +768797,208.59,91.0319 +768798,207.13,91.2611 +768799,205.67,91.5059 +768800,204.24,91.7652 +768801,207.27,91.1125 +768802,205.79,91.2991 +768803,204.32,91.5016 +768804,202.87,91.719 +768805,205.94,91.1933 +768806,204.45,91.3371 +768807,202.97,91.4972 +768808,201.51,91.6726 +768809,204.61,91.2743 +768810,203.11,91.3751 +768811,201.62,91.4927 +768812,200.14,91.626 +768813,203.28,91.3554 +768814,201.77,91.4131 +768815,200.27,91.4881 +768816,198.78,91.5793 +768817,201.95,91.4366 +768818,200.43,91.4512 +768819,198.92,91.4835 +768820,197.42,91.5324 +768821,200.62,91.5178 +768822,199.09,91.4892 +768823,197.56,91.4788 +768824,196.06,91.4855 +768825,199.29,91.5991 +768826,197.74,91.5272 +768827,196.21,91.474 +768828,194.7,91.4385 +768829,197.96,91.6804 +768830,196.4,91.5651 +768831,194.86,91.4692 +768832,193.34,91.3915 +768833,196.62,91.7616 +768834,195.06,91.603 +768835,193.51,91.4644 +768836,191.99,91.3446 +768837,195.28,91.8427 +768838,193.72,91.6408 +768839,192.17,91.4595 +768840,190.63,91.2977 +768841,193.95,91.9238 +768842,192.37,91.6786 +768843,190.82,91.4547 +768844,189.28,91.2508 +768845,192.61,92.0046 +768846,191.03,91.7163 +768847,189.47,91.4499 +768848,187.93,91.2041 +768849,191.27,92.0854 +768850,189.68,91.7539 +768851,188.12,91.445 +768852,186.57,91.1575 +768853,189.93,92.1659 +768854,188.34,91.7913 +768855,186.77,91.4402 +768856,185.22,91.1111 +768857,188.58,92.2461 +768858,186.99,91.8287 +768859,185.42,91.4355 +768860,183.87,91.0649 +768861,187.24,92.3261 +768862,185.65,91.8659 +768863,184.08,91.4307 +768864,182.53,91.019 +768865,185.89,92.4058 +768866,184.3,91.903 +768867,182.73,91.4261 +768868,181.18,90.97328 +768869,184.55,92.4851 +768870,182.96,91.94 +768871,181.39,91.4215 +768872,179.84,90.92788 +768873,183.2,92.564 +768874,181.61,91.9768 +768875,180.04,91.417 +768876,178.49,90.88281 +768877,181.85,92.6425 +768878,180.26,92.0134 +768879,178.69,91.4125 +768880,177.15,90.83809 +768881,180.5,92.7206 +768882,178.91,92.0498 +768883,177.35,91.4082 +768884,175.81,90.79377 +768885,179.15,92.7982 +768886,177.56,92.0861 +768887,176,91.404 +768888,174.47,90.74986 +768889,177.79,92.8753 +768890,176.22,92.1221 +768891,174.66,91.3999 +768892,173.13,90.7064 +768893,176.44,92.9518 +768894,174.87,92.158 +768895,173.32,91.3959 +768896,171.79,90.66342 +768897,175.08,93.0278 +768898,173.52,92.1936 +768899,171.97,91.3921 +768900,170.45,90.62095 +768901,173.73,93.1031 +768902,172.17,92.2289 +768903,170.63,91.3884 +768904,169.12,90.57901 +768905,172.37,93.1778 +768906,170.81,92.264 +768907,169.29,91.3848 +768908,167.78,90.53763 +768909,171.01,93.2519 +768910,169.46,92.2989 +768911,167.94,91.3815 +768912,166.45,90.49685 +768913,169.65,93.3252 +768914,168.11,92.3335 +768915,166.6,91.3783 +768916,165.12,90.45668 +768917,168.29,93.3978 +768918,166.76,92.3678 +768919,165.26,91.3753 +768920,163.79,90.41717 +768921,166.92,93.4696 +768922,165.41,92.4019 +768923,163.92,91.3725 +768924,162.46,90.37833 +768925,165.56,93.5406 +768926,164.05,92.4356 +768927,162.58,91.3699 +768928,161.13,90.34019 +768929,164.19,93.6108 +768930,162.7,92.469 +768931,161.24,91.3675 +768932,159.8,90.30278 +768933,162.83,93.6801 +768934,161.35,92.5022 +768935,159.9,91.3654 +768936,158.47,90.26613 +768937,161.46,93.7485 +768938,159.99,92.535 +768939,158.56,91.3635 +768940,157.15,90.23025 +768941,160.09,93.816 +768942,158.64,92.5674 +768943,157.22,91.3618 +768944,155.83,90.19519 +768945,158.72,93.8826 +768946,157.28,92.5995 +768947,155.88,91.3604 +768948,154.5,90.16095 +768949,157.35,93.9482 +768950,155.93,92.6313 +768951,154.54,91.3592 +768952,153.18,90.12757 +768953,155.98,94.0127 +768954,154.57,92.6627 +768955,153.2,91.3583 +768956,151.86,90.095075 +768957,154.6,94.0763 +768958,153.22,92.6937 +768959,151.86,91.3577 +768960,150.54,90.063482 +768961,153.23,94.1388 +768962,151.86,92.7244 +768963,150.53,91.3573 +768964,149.22,90.032816 +768965,151.85,94.2002 +768966,150.5,92.7547 +768967,149.19,91.3573 +768968,147.9,90.003101 +768969,150.47,94.2605 +768970,149.15,92.7845 +768971,147.85,91.3575 +768972,146.58,89.974359 +768973,149.1,94.3196 +768974,147.79,92.814 +768975,146.51,91.3581 +768976,145.27,89.946612 +768977,147.72,94.3776 +768978,146.43,92.843 +768979,145.18,91.3589 +768980,143.95,89.919882 +768981,146.34,94.4344 +768982,145.07,92.8717 +768983,143.84,91.3601 +768984,142.64,89.89419 +768985,144.96,94.49 +768986,143.71,92.8999 +768987,142.5,91.3616 +768988,141.33,89.86955 +768989,143.57,94.5444 +768990,142.35,92.9277 +768991,141.17,91.3635 +768992,140.01,89.846 +768993,142.19,94.5975 +768994,140.99,92.955 +768995,139.83,91.3657 +768996,138.7,89.82354 +768997,140.81,94.6494 +768998,139.63,92.9819 +768999,138.5,91.3682 +769000,137.39,89.80219 +769001,139.42,94.6999 +769002,138.27,93.0083 +769003,137.16,91.3711 +769004,136.08,89.78198 +769005,138.03,94.7492 +769006,136.91,93.0343 +769007,135.83,91.3744 +769008,134.77,89.76293 +769009,136.65,94.7971 +769010,135.55,93.0598 +769011,134.49,91.378 +769012,133.46,89.74504 +769013,135.26,94.8436 +769014,134.19,93.0849 +769015,133.16,91.382 +769016,132.16,89.72834 +769017,133.87,94.8888 +769018,132.83,93.1094 +769019,131.82,91.3863 +769020,130.85,89.71284 +769021,132.48,94.9326 +769022,131.47,93.1335 +769023,130.49,91.3911 +769024,129.54,89.69856 +769025,131.09,94.975 +769026,130.11,93.1571 +769027,129.16,91.3962 +769028,128.24,89.6855 +769029,129.7,95.016 +769030,128.74,93.1802 +769031,127.82,91.4017 +769032,126.93,89.6737 +769033,128.31,95.0555 +769034,127.38,93.2027 +769035,126.49,91.4076 +769036,125.63,89.66316 +769037,126.92,95.0936 +769038,126.02,93.2248 +769039,125.16,91.414 +769040,124.33,89.65388 +769041,125.52,95.1302 +769042,124.66,93.2464 +769043,123.82,91.4207 +769044,123.02,89.6459 +769045,124.13,95.1653 +769046,123.29,93.2675 +769047,122.49,91.4278 +769048,121.72,89.63921 +769049,122.73,95.199 +769050,121.93,93.288 +769051,121.16,91.4353 +769052,120.42,89.63383 +769053,121.34,95.2312 +769054,120.57,93.308 +769055,119.83,91.4433 +769056,119.12,89.62976 +769057,119.94,95.2618 +769058,119.2,93.3275 +769059,118.5,91.4517 +769060,117.82,89.62703 +769061,118.55,95.291 +769062,117.84,93.3465 +769063,117.16,91.4605 +769064,116.52,89.62563 +769065,117.15,95.3186 +769066,116.47,93.365 +769067,115.83,91.4697 +769068,115.22,89.62558 +769069,115.75,95.3446 +769070,115.11,93.3829 +769071,114.5,91.4793 +769072,113.92,89.62688 +769073,114.35,95.3692 +769074,113.74,93.4003 +769075,113.17,91.4894 +769076,112.62,89.62954 +769077,112.95,95.3921 +769078,112.38,93.4171 +769079,111.84,91.4999 +769080,111.32,89.63356 +769081,111.55,95.4136 +769082,111.01,93.4334 +769083,110.5,91.5109 +769084,110.02,89.63896 +769085,110.16,95.4334 +769086,109.65,93.4492 +769087,109.17,91.5222 +769088,108.73,89.64574 +769089,108.76,95.4517 +769090,108.28,93.4644 +769091,107.84,91.5341 +769092,107.43,89.6539 +769093,107.36,95.4685 +769094,106.92,93.479 +769095,106.51,91.5463 +769096,106.13,89.66345 +769097,105.95,95.4837 +769098,105.55,93.4932 +769099,105.18,91.559 +769100,104.83,89.67438 +769101,104.55,95.4973 +769102,104.19,93.5068 +769103,103.85,91.5721 +769104,103.54,89.6867 +769105,103.15,95.5093 +769106,102.82,93.5198 +769107,102.52,91.5857 +769108,102.24,89.70042 +769109,101.75,95.5198 +769110,101.45,93.5323 +769111,101.19,91.5997 +769112,100.94,89.71553 +769113,100.35,95.5287 +769114,100.09,93.5442 +769115,99.855,91.6141 +769116,99.647,89.73203 +769117,98.948,95.5361 +769118,98.721,93.5556 +769119,98.524,91.629 +769120,98.351,89.74993 +769121,97.546,95.5419 +769122,97.355,93.5665 +769123,97.193,91.6443 +769124,97.055,89.76922 +769125,96.144,95.5461 +769126,95.989,93.5768 +769127,95.862,91.66 +769128,95.759,89.7899 +769129,94.741,95.5488 +769130,94.623,93.5866 +769131,94.531,91.6762 +769132,94.462,89.81196 +769133,93.339,95.5499 +769134,93.256,93.5958 +769135,93.2,91.6928 +769136,93.166,89.83541 +769137,91.937,95.5495 +769138,91.89,93.6045 +769139,91.869,91.7099 +769140,91.87,89.86024 +769141,90.535,95.5476 +769142,90.524,93.6127 +769143,90.538,91.7273 +769144,90.574,89.88644 +769145,89.132,95.5441 +769146,89.157,93.6203 +769147,89.206,91.7453 +769148,89.277,89.914012 +769149,87.73,95.5392 +769150,87.791,93.6274 +769151,87.875,91.7636 +769152,87.981,89.942949 +769153,86.328,95.5327 +769154,86.424,93.634 +769155,86.544,91.7823 +769156,86.684,89.973241 +769157,84.926,95.5247 +769158,85.058,93.64 +769159,85.212,91.8015 +769160,85.387,90.0048831 +769161,83.524,95.5153 +769162,83.692,93.6455 +769163,83.881,91.8211 +769164,84.09,90.037866 +769165,82.122,95.5044 +769166,82.325,93.6505 +769167,82.549,91.8411 +769168,82.793,90.07218 +769169,80.721,95.492 +769170,80.959,93.655 +769171,81.218,91.8615 +769172,81.495,90.10782 +769173,79.319,95.4782 +769174,79.593,93.6589 +769175,79.886,91.8823 +769176,80.197,90.14477 +769177,77.918,95.4629 +769178,78.227,93.6624 +769179,78.554,91.9036 +769180,78.899,90.18302 +769181,76.518,95.4462 +769182,76.86,93.6653 +769183,77.222,91.9252 +769184,77.601,90.22256 +769185,75.117,95.4282 +769186,75.494,93.6678 +769187,75.89,91.9472 +769188,76.302,90.26337 +769189,73.717,95.4087 +769190,74.129,93.6698 +769191,74.557,91.9696 +769192,75.002,90.30546 +769193,72.318,95.3879 +769194,72.763,93.6712 +769195,73.225,91.9924 +769196,73.703,90.34879 +769197,70.918,95.3657 +769198,71.397,93.6722 +769199,71.892,92.0156 +769200,72.403,90.39336 +769201,69.519,95.3422 +769202,70.032,93.6727 +769203,70.56,92.0391 +769204,71.102,90.43915 +769205,68.121,95.3174 +769206,68.666,93.6728 +769207,69.226,92.063 +769208,69.801,90.48614 +769209,66.723,95.2913 +769210,67.301,93.6723 +769211,67.893,92.0873 +769212,68.499,90.53433 +769213,65.326,95.2639 +769214,65.936,93.6714 +769215,66.56,92.1119 +769216,67.197,90.58369 +769217,63.929,95.2353 +769218,64.571,93.6701 +769219,65.226,92.1369 +769220,65.894,90.6342 +769221,62.533,95.2054 +769222,63.206,93.6683 +769223,63.892,92.1622 +769224,64.591,90.68585 +769225,61.137,95.1744 +769226,61.841,93.6661 +769227,62.558,92.1879 +769228,63.287,90.73862 +769229,59.742,95.1421 +769230,60.477,93.6634 +769231,61.224,92.2139 +769232,61.983,90.79249 +769233,58.347,95.1087 +769234,59.113,93.6603 +769235,59.889,92.2402 +769236,60.677,90.84744 +769237,56.954,95.0742 +769238,57.748,93.6568 +769239,58.555,92.2668 +769240,59.371,90.90345 +769241,55.561,95.0385 +769242,56.385,93.6529 +769243,57.22,92.2938 +769244,58.065,90.9605 +769245,54.168,95.0018 +769246,55.021,93.6486 +769247,55.884,92.321 +769248,56.757,91.0186 +769249,52.776,94.964 +769250,53.658,93.6439 +769251,54.549,92.3485 +769252,55.449,91.0776 +769253,51.386,94.9252 +769254,52.294,93.6388 +769255,53.213,92.3763 +769256,54.14,91.1376 +769257,49.995,94.8853 +769258,50.931,93.6333 +769259,51.877,92.4044 +769260,52.831,91.1986 +769261,48.606,94.8445 +769262,49.569,93.6274 +769263,50.54,92.4328 +769264,51.52,91.2605 +769265,47.218,94.8027 +769266,48.206,93.6212 +769267,49.204,92.4614 +769268,50.209,91.3233 +769269,45.83,94.76 +769270,46.844,93.6147 +769271,47.867,92.4903 +769272,48.897,91.387 +769273,44.443,94.7164 +769274,45.482,93.6078 +769275,46.529,92.5194 +769276,47.584,91.4515 +769277,43.057,94.6719 +769278,44.12,93.6005 +769279,45.192,92.5488 +769280,46.27,91.5169 +769281,41.672,94.6266 +769282,42.759,93.593 +769283,43.854,92.5783 +769284,44.955,91.583 +769285,40.288,94.5804 +769286,41.398,93.5851 +769287,42.515,92.6081 +769288,43.639,91.65 +769289,38.905,94.5335 +769290,40.037,93.5769 +769291,41.177,92.6381 +769292,42.322,91.7176 +769293,37.523,94.4858 +769294,38.677,93.5684 +769295,39.838,92.6683 +769296,41.005,91.786 +769297,36.142,94.4374 +769298,37.316,93.5597 +769299,38.498,92.6987 +769300,39.686,91.8551 +769301,34.761,94.3883 +769302,35.956,93.5506 +769303,37.158,92.7292 +769304,38.366,91.9248 +769305,33.382,94.3386 +769306,34.597,93.5413 +769307,35.818,92.76 +769308,37.046,91.9952 +769309,32.004,94.2882 +769310,33.238,93.5317 +769311,34.478,92.7908 +769312,35.724,92.0661 +769313,30.627,94.2372 +769314,31.879,93.5219 +769315,33.137,92.8219 +769316,34.401,92.1377 +769317,29.251,94.1856 +769318,30.52,93.5119 +769319,31.796,92.853 +769320,33.077,92.2098 +769321,27.876,94.1335 +769322,29.162,93.5016 +769323,30.454,92.8843 +769324,31.753,92.2824 +769325,26.502,94.0809 +769326,27.804,93.4911 +769327,29.113,92.9157 +769328,30.427,92.3554 +769329,25.129,94.0278 +769330,26.446,93.4804 +769331,27.77,92.9472 +769332,29.1,92.4289 +769333,23.757,93.9743 +769334,25.089,93.4695 +769335,26.428,92.9788 +769336,27.771,92.5029 +769337,22.386,93.9204 +769338,23.732,93.4585 +769339,25.084,93.0105 +769340,26.442,92.5772 +769341,21.017,93.8661 +769342,22.375,93.4472 +769343,23.741,93.0423 +769344,25.112,92.6519 +769345,19.648,93.8114 +769346,21.019,93.4358 +769347,22.397,93.0741 +769348,23.78,92.7269 +769349,18.281,93.7565 +769350,19.663,93.4243 +769351,21.053,93.1059 +769352,22.448,92.8022 +769353,16.915,93.7012 +769354,18.308,93.4126 +769355,19.708,93.1378 +769356,21.114,92.8777 +769357,15.55,93.6458 +769358,16.953,93.4007 +769359,18.363,93.1698 +769360,19.779,92.9535 +769361,14.186,93.5901 +769362,15.598,93.3888 +769363,17.017,93.2017 +769364,18.443,93.0295 +769365,12.823,93.5342 +769366,14.244,93.3767 +769367,15.672,93.2337 +769368,17.105,93.1056 +769369,11.462,93.4782 +769370,12.89,93.3646 +769371,14.325,93.2656 +769372,15.767,93.1818 +769373,10.101,93.422 +769374,11.536,93.3524 +769375,12.978,93.2976 +769376,14.427,93.2582 +769377,8.7421,93.3658 +769378,10.183,93.3401 +769379,11.631,93.3295 +769380,13.086,93.3346 +769381,7.3841,93.3095 +769382,8.8298,93.3277 +769383,10.284,93.3613 +769384,11.744,93.411 +769385,6.0273,93.2532 +769386,7.4773,93.3153 +769387,8.9356,93.3932 +769388,10.401,93.4874 +769389,4.6717,93.197 +769390,6.1252,93.3028 +769391,7.5872,93.4249 +769392,9.0564,93.5638 +769393,3.3173,93.1408 +769394,4.7734,93.2903 +769395,6.2383,93.4566 +769396,7.7107,93.64 +769397,1.964,93.0846 +769398,3.4221,93.2778 +769399,4.8891,93.4882 +769400,6.3638,93.7162 +769401,0.61198,93.0286 +769402,2.0711,93.2653 +769403,3.5394,93.5197 +769404,5.0157,93.7922 +769405,359.26,92.9727 +769406,0.72046,93.2528 +769407,2.1892,93.5511 +769408,3.6663,93.8681 +769409,357.91,92.917 +769410,359.37,93.2403 +769411,0.83869,93.5823 +769412,2.3157,93.9437 +769413,356.56,92.8616 +769414,358.02,93.2279 +769415,359.49,93.6135 +769416,0.96394,94.019 +769417,355.22,92.8063 +769418,356.67,93.2154 +769419,358.14,93.6445 +769420,359.61,94.0941 +769421,353.87,92.7514 +769422,355.32,93.2031 +769423,356.78,93.6753 +769424,358.26,94.1689 +769425,352.52,92.6967 +769426,353.97,93.1907 +769427,355.43,93.706 +769428,356.9,94.2433 +769429,351.18,92.6424 +769430,352.62,93.1785 +769431,354.08,93.7365 +769432,355.54,94.3173 +769433,349.84,92.5884 +769434,351.28,93.1663 +769435,352.73,93.7668 +769436,354.19,94.3909 +769437,348.5,92.5349 +769438,349.93,93.1542 +769439,351.37,93.797 +769440,352.83,94.464 +769441,347.16,92.4818 +769442,348.58,93.1422 +769443,350.02,93.8269 +769444,351.47,94.5367 +769445,345.82,92.4291 +769446,347.24,93.1304 +769447,348.66,93.8566 +769448,350.11,94.6088 +769449,344.48,92.377 +769450,345.89,93.1186 +769451,347.31,93.886 +769452,348.74,94.6803 +769453,343.14,92.3253 +769454,344.54,93.107 +769455,345.96,93.9152 +769456,347.38,94.7513 +769457,341.81,92.2742 +769458,343.2,93.0955 +769459,344.6,93.9442 +769460,346.01,94.8217 +769461,340.47,92.2237 +769462,341.85,93.0842 +769463,343.24,93.9729 +769464,344.65,94.8914 +769465,339.14,92.1738 +769466,340.51,93.073 +769467,341.89,94.0013 +769468,343.28,94.9603 +769469,337.81,92.1246 +769470,339.16,93.0621 +769471,340.53,94.0295 +769472,341.91,95.0286 +769473,336.48,92.076 +769474,337.82,93.0513 +769475,339.17,94.0573 +769476,340.54,95.0961 +769477,335.14,92.0281 +769478,336.47,93.0406 +769479,337.82,94.0849 +769480,339.17,95.1629 +769481,333.82,91.9809 +769482,335.13,93.0302 +769483,336.46,94.1121 +769484,337.8,95.2288 +769485,332.49,91.9344 +769486,333.79,93.02 +769487,335.1,94.139 +769488,336.43,95.2939 +769489,331.16,91.8888 +769490,332.44,93.01 +769491,333.74,94.1656 +769492,335.05,95.3581 +769493,329.83,91.8439 +769494,331.1,93.0003 +769495,332.38,94.1919 +769496,333.68,95.4213 +769497,328.51,91.7999 +769498,329.76,92.9908 +769499,331.02,94.2177 +769500,332.3,95.4837 +769501,327.19,91.7567 +769502,328.42,92.9815 +769503,329.66,94.2433 +769504,330.92,95.545 +769505,325.86,91.7144 +769506,327.08,92.9725 +769507,328.3,94.2684 +769508,329.55,95.6054 +769509,324.54,91.673 +769510,325.73,92.9637 +769511,326.94,94.2932 +769512,328.17,95.6648 +769513,323.22,91.6326 +769514,324.39,92.9553 +769515,325.58,94.3176 +769516,326.79,95.7231 +769517,321.9,91.593 +769518,323.05,92.9471 +769519,324.22,94.3415 +769520,325.41,95.7803 +769521,320.58,91.5545 +769522,321.71,92.9391 +769523,322.86,94.3651 +769524,324.02,95.8364 +769525,319.26,91.5169 +769526,320.37,92.9315 +769527,321.5,94.3883 +769528,322.64,95.8913 +769529,317.94,91.4804 +769530,319.03,92.9242 +769531,320.13,94.411 +769532,321.26,95.9451 +769533,316.63,91.4449 +769534,317.69,92.9172 +769535,318.77,94.4333 +769536,319.87,95.9977 +769537,315.31,91.4105 +769538,316.35,92.9105 +769539,317.41,94.4552 +769540,318.48,96.0491 +769541,314,91.3771 +769542,315.01,92.9042 +769543,316.05,94.4766 +769544,317.1,96.0993 +769545,312.68,91.3449 +769546,313.67,92.8981 +769547,314.68,94.4975 +769548,315.71,96.1482 +769549,311.37,91.3137 +769550,312.34,92.8925 +769551,313.32,94.518 +769552,314.32,96.1958 +769553,310.06,91.2837 +769554,311,92.8871 +769555,311.96,94.5381 +769556,312.93,96.2421 +769557,308.74,91.2549 +769558,309.66,92.8821 +769559,310.59,94.5576 +769560,311.54,96.2871 +769561,307.43,91.2272 +769562,308.32,92.8775 +769563,309.23,94.5767 +769564,310.15,96.3308 +769565,306.12,91.2007 +769566,306.98,92.8732 +769567,307.86,94.5953 +769568,308.76,96.373 +769569,304.81,91.1755 +769570,305.65,92.8693 +769571,306.5,94.6134 +769572,307.37,96.4139 +769573,303.5,91.1514 +769574,304.31,92.8658 +769575,305.13,94.631 +769576,305.97,96.4534 +769577,302.19,91.1286 +769578,302.97,92.8627 +769579,303.77,94.648 +769580,304.58,96.4914 +769581,300.89,91.1071 +769582,301.64,92.8599 +769583,302.4,94.6646 +769584,303.18,96.528 +769585,299.58,91.0868 +769586,300.3,92.8575 +769587,301.04,94.6807 +769588,301.79,96.5631 +769589,298.27,91.0678 +769590,298.96,92.8556 +769591,299.67,94.6962 +769592,300.39,96.5968 +769593,296.97,91.0501 +769594,297.63,92.854 +769595,298.3,94.7112 +769596,299,96.629 +769597,295.66,91.0337 +769598,296.29,92.8528 +769599,296.94,94.7257 +769600,297.6,96.6596 +769601,294.35,91.0186 +769602,294.95,92.8521 +769603,295.57,94.7396 +769604,296.2,96.6888 +769605,293.05,91.0048 +769606,293.62,92.8517 +769607,294.2,94.753 +769608,294.8,96.7164 +769609,291.75,90.99242 +769610,292.28,92.8518 +769611,292.84,94.7659 +769612,293.4,96.7425 +769613,290.44,90.98135 +769614,290.95,92.8523 +769615,291.47,94.7782 +769616,292.01,96.767 +769617,289.14,90.97164 +769618,289.61,92.8532 +769619,290.1,94.79 +769620,290.61,96.7899 +769621,287.83,90.96329 +769622,288.28,92.8545 +769623,288.73,94.8012 +769624,289.21,96.8113 +769625,286.53,90.95631 +769626,286.94,92.8562 +769627,287.37,94.8118 +769628,287.81,96.8311 +769629,285.23,90.95071 +769630,285.61,92.8584 +769631,286,94.8219 +769632,286.41,96.8493 +769633,283.93,90.94649 +769634,284.27,92.861 +769635,284.63,94.8315 +769636,285,96.8659 +769637,282.62,90.94367 +769638,282.94,92.8641 +769639,283.26,94.8404 +769640,283.6,96.8809 +769641,281.32,90.94224 +769642,281.6,92.8676 +769643,281.89,94.8489 +769644,282.2,96.8943 +769645,280.02,90.94221 +769646,280.27,92.8715 +769647,280.53,94.8567 +769648,280.8,96.906 +769649,278.72,90.94358 +769650,278.93,92.8758 +769651,279.16,94.864 +769652,279.4,96.9162 +769653,277.42,90.94635 +769654,277.6,92.8806 +769655,277.79,94.8707 +769656,277.99,96.9247 +769657,276.12,90.95053 +769658,276.26,92.8858 +769659,276.42,94.8768 +769660,276.59,96.9316 +769661,274.82,90.95612 +769662,274.93,92.8915 +769663,275.05,94.8824 +769664,275.19,96.9369 +769665,273.51,90.96311 +769666,273.59,92.8976 +769667,273.68,94.8874 +769668,273.79,96.9406 +769669,272.21,90.97152 +769670,272.26,92.9041 +769671,272.32,94.8919 +769672,272.38,96.9426 +769673,270.91,90.98133 +769674,270.92,92.9111 +769675,270.95,94.8957 +769676,270.98,96.9431 +769677,269.61,90.99254 +769678,269.59,92.9185 +769679,269.58,94.899 +769680,269.58,96.9419 +769681,268.31,91.0052 +769682,268.25,92.9263 +769683,268.21,94.9018 +769684,268.18,96.9391 +769685,267.01,91.0192 +769686,266.92,92.9346 +769687,266.84,94.9039 +769688,266.77,96.9347 +769689,265.71,91.0346 +769690,265.59,92.9433 +769691,265.47,94.9056 +769692,265.37,96.9287 +769693,264.41,91.0514 +769694,264.25,92.9525 +769695,264.1,94.9066 +769696,263.97,96.9211 +769697,263.1,91.0696 +769698,262.92,92.962 +769699,262.74,94.9071 +769700,262.57,96.9119 +769701,261.8,91.0892 +769702,261.58,92.972 +769703,261.37,94.907 +769704,261.16,96.9011 +769705,260.5,91.1101 +769706,260.25,92.9824 +769707,260,94.9064 +769708,259.76,96.8887 +769709,259.2,91.1324 +769710,258.91,92.9933 +769711,258.63,94.9052 +769712,258.36,96.8748 +769713,257.89,91.1561 +769714,257.58,93.0046 +769715,257.26,94.9035 +769716,256.96,96.8594 +769717,256.59,91.1811 +769718,256.24,93.0162 +769719,255.89,94.9012 +769720,255.56,96.8424 +769721,255.29,91.2075 +769722,254.9,93.0283 +769723,254.53,94.8984 +769724,254.16,96.8238 +769725,253.99,91.2352 +769726,253.57,93.0408 +769727,253.16,94.8951 +769728,252.75,96.8038 +769729,252.68,91.2642 +769730,252.23,93.0537 +769731,251.79,94.8912 +769732,251.35,96.7822 +769733,251.38,91.2945 +769734,250.9,93.067 +769735,250.42,94.8868 +769736,249.95,96.7592 +769737,250.07,91.3262 +769738,249.56,93.0808 +769739,249.06,94.8819 +769740,248.55,96.7347 +769741,248.77,91.3591 +769742,248.23,93.0949 +769743,247.69,94.8764 +769744,247.16,96.7087 +769745,247.46,91.3933 +769746,246.89,93.1093 +769747,246.32,94.8704 +769748,245.76,96.6813 +769749,246.16,91.4287 +769750,245.55,93.1242 +769751,244.95,94.8639 +769752,244.36,96.6525 +769753,244.85,91.4654 +769754,244.22,93.1395 +769755,243.59,94.857 +769756,242.96,96.6222 +769757,243.54,91.5033 +769758,242.88,93.1551 +769759,242.22,94.8495 +769760,241.56,96.5906 +769761,242.23,91.5424 +769762,241.54,93.1711 +769763,240.85,94.8415 +769764,240.17,96.5576 +769765,240.93,91.5827 +769766,240.2,93.1874 +769767,239.49,94.833 +769768,238.77,96.5233 +769769,239.62,91.6242 +769770,238.87,93.2041 +769771,238.12,94.8241 +769772,237.38,96.4877 +769773,238.31,91.6669 +769774,237.53,93.2212 +769775,236.75,94.8147 +769776,235.98,96.4507 +769777,237,91.7107 +769778,236.19,93.2386 +769779,235.39,94.8048 +769780,234.59,96.4125 +769781,235.69,91.7556 +769782,234.85,93.2563 +769783,234.02,94.7944 +769784,233.19,96.373 +769785,234.37,91.8016 +769786,233.51,93.2743 +769787,232.66,94.7837 +769788,231.8,96.3323 +769789,233.06,91.8488 +769790,232.18,93.2927 +769791,231.29,94.7724 +769792,230.41,96.2903 +769793,231.75,91.8969 +769794,230.84,93.3114 +769795,229.93,94.7607 +769796,229.02,96.2472 +769797,230.44,91.9461 +769798,229.5,93.3304 +769799,228.56,94.7486 +769800,227.63,96.2029 +769801,229.12,91.9964 +769802,228.16,93.3497 +769803,227.2,94.7361 +769804,226.24,96.1575 +769805,227.81,92.0476 +769806,226.82,93.3693 +769807,225.83,94.7232 +769808,224.85,96.111 +769809,226.49,92.0998 +769810,225.48,93.3892 +769811,224.47,94.7098 +769812,223.46,96.0634 +769813,225.17,92.153 +769814,224.14,93.4093 +769815,223.11,94.6961 +769816,222.07,96.0147 +769817,223.85,92.2071 +769818,222.8,93.4297 +769819,221.74,94.682 +769820,220.69,95.965 +769821,222.54,92.2621 +769822,221.46,93.4504 +769823,220.38,94.6675 +769824,219.3,95.9144 +769825,221.22,92.318 +769826,220.12,93.4713 +769827,219.02,94.6526 +769828,217.92,95.8627 +769829,219.9,92.3747 +769830,218.77,93.4925 +769831,217.65,94.6373 +769832,216.53,95.8101 +769833,218.57,92.4322 +769834,217.43,93.5139 +769835,216.29,94.6218 +769836,215.15,95.7566 +769837,217.25,92.4906 +769838,216.09,93.5355 +769839,214.93,94.6058 +769840,213.77,95.7022 +769841,215.93,92.5497 +769842,214.75,93.5573 +769843,213.57,94.5896 +769844,212.39,95.647 +769845,214.6,92.6096 +769846,213.41,93.5794 +769847,212.21,94.573 +769848,211.01,95.591 +769849,213.28,92.6702 +769850,212.06,93.6016 +769851,210.85,94.5561 +769852,209.63,95.5341 +769853,211.95,92.7315 +769854,210.72,93.624 +769855,209.49,94.5389 +769856,208.25,95.4765 +769857,210.62,92.7935 +769858,209.38,93.6466 +769859,208.13,94.5214 +769860,206.88,95.4182 +769861,209.3,92.8561 +769862,208.03,93.6693 +769863,206.77,94.5037 +769864,205.5,95.3592 +769865,207.97,92.9193 +769866,206.69,93.6922 +769867,205.41,94.4856 +769868,204.13,95.2995 +769869,206.63,92.983 +769870,205.34,93.7153 +769871,204.05,94.4674 +769872,202.75,95.2392 +769873,205.3,93.0473 +769874,204,93.7385 +769875,202.69,94.4488 +769876,201.38,95.1783 +769877,203.97,93.1122 +769878,202.65,93.7618 +769879,201.33,94.43 +769880,200.01,95.1168 +769881,202.64,93.1775 +769882,201.3,93.7852 +769883,199.97,94.411 +769884,198.64,95.0548 +769885,201.3,93.2433 +769886,199.96,93.8087 +769887,198.61,94.3918 +769888,197.27,94.9923 +769889,199.97,93.3095 +769890,198.61,93.8323 +769891,197.26,94.3724 +769892,195.9,94.9294 +769893,198.63,93.376 +769894,197.26,93.856 +769895,195.9,94.3527 +769896,194.54,94.866 +769897,197.29,93.443 +769898,195.92,93.8798 +769899,194.54,94.3329 +769900,193.17,94.8022 +769901,195.95,93.5103 +769902,194.57,93.9036 +769903,193.19,94.3129 +769904,191.81,94.7381 +769905,194.61,93.5778 +769906,193.22,93.9275 +769907,191.83,94.2928 +769908,190.44,94.6736 +769909,193.27,93.6457 +769910,191.87,93.9514 +769911,190.48,94.2725 +769912,189.08,94.6088 +769913,191.92,93.7137 +769914,190.52,93.9753 +769915,189.12,94.252 +769916,187.72,94.5438 +769917,190.58,93.782 +769918,189.17,93.9992 +769919,187.77,94.2315 +769920,186.36,94.4785 +769921,189.24,93.8504 +769922,187.82,94.0232 +769923,186.41,94.2108 +769924,185,94.413 +769925,187.89,93.9189 +769926,186.47,94.0471 +769927,185.06,94.19 +769928,183.64,94.3474 +769929,186.54,93.9876 +769930,185.12,94.071 +769931,183.71,94.1691 +769932,182.29,94.2817 +769933,185.19,94.0563 +769934,183.77,94.0949 +769935,182.35,94.1481 +769936,180.93,94.2158 +769937,183.84,94.125 +769938,182.42,94.1188 +769939,181,94.1271 +769940,179.58,94.1499 +769941,182.49,94.1938 +769942,181.07,94.1426 +769943,179.65,94.106 +769944,178.23,94.084 +769945,181.14,94.2625 +769946,179.72,94.1663 +769947,178.29,94.0849 +769948,176.88,94.0181 +769949,179.79,94.3311 +769950,178.36,94.19 +769951,176.94,94.0637 +769952,175.52,93.9522 +769953,178.43,94.3996 +769954,177.01,94.2135 +769955,175.59,94.0425 +769956,174.18,93.8864 +769957,177.07,94.468 +769958,175.66,94.237 +769959,174.24,94.0212 +769960,172.83,93.8207 +769961,175.72,94.5362 +769962,174.3,94.2603 +769963,172.89,94 +769964,171.48,93.7552 +769965,174.36,94.6042 +769966,172.95,94.2836 +769967,171.54,93.9788 +769968,170.13,93.6898 +769969,173,94.6719 +769970,171.6,94.3067 +769971,170.19,93.9576 +769972,168.79,93.6246 +769973,171.64,94.7394 +769974,170.24,94.3296 +769975,168.84,93.9364 +769976,167.45,93.5597 +769977,170.28,94.8066 +769978,168.88,94.3524 +769979,167.49,93.9153 +769980,166.1,93.4951 +769981,168.91,94.8734 +769982,167.53,94.3751 +769983,166.14,93.8942 +769984,164.76,93.4307 +769985,167.55,94.9398 +769986,166.17,94.3975 +769987,164.8,93.8732 +769988,163.42,93.3667 +769989,166.19,95.0059 +769990,164.82,94.4198 +769991,163.45,93.8522 +769992,162.08,93.3031 +769993,164.82,95.0714 +769994,163.46,94.4418 +769995,162.1,93.8313 +769996,160.75,93.2398 +769997,163.45,95.1365 +769998,162.1,94.4637 +769999,160.75,93.8106 +770000,159.41,93.177 +770001,162.08,95.2011 +770002,160.74,94.4853 +770003,159.41,93.7899 +770004,158.08,93.1147 +770005,160.71,95.2651 +770006,159.39,94.5067 +770007,158.06,93.7694 +770008,156.74,93.0529 +770009,159.34,95.3286 +770010,158.03,94.5279 +770011,156.72,93.749 +770012,155.41,92.9916 +770013,157.97,95.3914 +770014,156.67,94.5488 +770015,155.37,93.7287 +770016,154.08,92.9308 +770017,156.6,95.4536 +770018,155.31,94.5694 +770019,154.03,93.7086 +770020,152.74,92.8706 +770021,155.22,95.5151 +770022,153.95,94.5898 +770023,152.68,93.6886 +770024,151.41,92.8111 +770025,153.85,95.5759 +770026,152.59,94.6098 +770027,151.34,93.6688 +770028,150.09,92.7522 +770029,152.47,95.636 +770030,151.23,94.6296 +770031,149.99,93.6491 +770032,148.76,92.6939 +770033,151.09,95.6953 +770034,149.87,94.6491 +770035,148.65,93.6297 +770036,147.43,92.6364 +770037,149.72,95.7538 +770038,148.51,94.6682 +770039,147.31,93.6105 +770040,146.1,92.5796 +770041,148.34,95.8114 +770042,147.15,94.6871 +770043,145.96,93.5914 +770044,144.78,92.5235 +770045,146.96,95.8682 +770046,145.79,94.7055 +770047,144.62,93.5726 +770048,143.46,92.4682 +770049,145.58,95.9241 +770050,144.43,94.7237 +770051,143.28,93.554 +770052,142.13,92.4138 +770053,144.19,95.979 +770054,143.06,94.7415 +770055,141.94,93.5357 +770056,140.81,92.3601 +770057,142.81,96.033 +770058,141.7,94.7589 +770059,140.59,93.5175 +770060,139.49,92.3074 +770061,141.43,96.086 +770062,140.34,94.7759 +770063,139.25,93.4997 +770064,138.17,92.2555 +770065,140.04,96.138 +770066,138.97,94.7926 +770067,137.91,93.4821 +770068,136.85,92.2045 +770069,138.66,96.189 +770070,137.61,94.8089 +770071,136.57,93.4647 +770072,135.53,92.1545 +770073,137.27,96.2388 +770074,136.25,94.8247 +770075,135.23,93.4477 +770076,134.21,92.1054 +770077,135.88,96.2876 +770078,134.88,94.8402 +770079,133.89,93.4309 +770080,132.9,92.0573 +770081,134.49,96.3353 +770082,133.52,94.8552 +770083,132.55,93.4144 +770084,131.58,92.0102 +770085,133.1,96.3818 +770086,132.15,94.8699 +770087,131.21,93.3983 +770088,130.27,91.9641 +770089,131.71,96.4271 +770090,130.79,94.884 +770091,129.87,93.3824 +770092,128.95,91.9191 +770093,130.32,96.4712 +770094,129.43,94.8978 +770095,128.53,93.3669 +770096,127.64,91.8752 +770097,128.93,96.5141 +770098,128.06,94.9111 +770099,127.19,93.3516 +770100,126.33,91.8323 +770101,127.54,96.5557 +770102,126.69,94.9239 +770103,125.85,93.3367 +770104,125.01,91.7905 +770105,126.14,96.5961 +770106,125.33,94.9363 +770107,124.51,93.3222 +770108,123.7,91.7499 +770109,124.75,96.6352 +770110,123.96,94.9482 +770111,123.18,93.308 +770112,122.39,91.7105 +770113,123.36,96.6729 +770114,122.6,94.9596 +770115,121.84,93.2941 +770116,121.08,91.6722 +770117,121.96,96.7093 +770118,121.23,94.9705 +770119,120.5,93.2806 +770120,119.77,91.635 +770121,120.56,96.7444 +770122,119.86,94.981 +770123,119.16,93.2675 +770124,118.46,91.5991 +770125,119.17,96.778 +770126,118.5,94.9909 +770127,117.83,93.2547 +770128,117.15,91.5644 +770129,117.77,96.8103 +770130,117.13,95.0004 +770131,116.49,93.2423 +770132,115.85,91.5309 +770133,116.37,96.8411 +770134,115.76,95.0093 +770135,115.15,93.2303 +770136,114.54,91.4987 +770137,114.98,96.8705 +770138,114.4,95.0177 +770139,113.81,93.2187 +770140,113.23,91.4677 +770141,113.58,96.8985 +770142,113.03,95.0256 +770143,112.48,93.2074 +770144,111.93,91.4381 +770145,112.18,96.925 +770146,111.66,95.033 +770147,111.14,93.1966 +770148,110.62,91.4097 +770149,110.78,96.95 +770150,110.29,95.0398 +770151,109.8,93.1861 +770152,109.32,91.3826 +770153,109.38,96.9734 +770154,108.92,95.0461 +770155,108.47,93.1761 +770156,108.01,91.3568 +770157,107.98,96.9954 +770158,107.56,95.0519 +770159,107.13,93.1664 +770160,106.71,91.3323 +770161,106.58,97.0159 +770162,106.19,95.0571 +770163,105.8,93.1572 +770164,105.4,91.3092 +770165,105.18,97.0347 +770166,104.82,95.0618 +770167,104.46,93.1484 +770168,104.1,91.2874 +770169,103.78,97.0521 +770170,103.45,95.066 +770171,103.12,93.14 +770172,102.8,91.267 +770173,102.37,97.0679 +770174,102.08,95.0695 +770175,101.79,93.132 +770176,101.49,91.2479 +770177,100.97,97.0821 +770178,100.71,95.0726 +770179,100.45,93.1244 +770180,100.19,91.2303 +770181,99.571,97.0947 +770182,99.346,95.075 +770183,99.118,93.1173 +770184,98.886,91.2139 +770185,98.168,97.1057 +770186,97.978,95.077 +770187,97.783,93.1106 +770188,97.584,91.199 +770189,96.766,97.1151 +770190,96.609,95.0783 +770191,96.447,93.1043 +770192,96.282,91.1855 +770193,95.363,97.123 +770194,95.24,95.0791 +770195,95.112,93.0985 +770196,94.98,91.1733 +770197,93.961,97.1292 +770198,93.872,95.0793 +770199,93.777,93.0931 +770200,93.678,91.1626 +770201,92.558,97.1337 +770202,92.503,95.0789 +770203,92.442,93.0881 +770204,92.376,91.1532 +770205,91.155,97.1367 +770206,91.134,95.078 +770207,91.107,93.0836 +770208,91.074,91.1453 +770209,89.753,97.1381 +770210,89.765,95.0765 +770211,89.771,93.0795 +770212,89.772,91.1388 +770213,88.35,97.1378 +770214,88.396,95.0744 +770215,88.436,93.0758 +770216,88.47,91.1337 +770217,86.947,97.1358 +770218,87.028,95.0718 +770219,87.101,93.0726 +770220,87.168,91.1299 +770221,85.544,97.1323 +770222,85.659,95.0686 +770223,85.766,93.0698 +770224,85.867,91.1276 +770225,84.142,97.1271 +770226,84.29,95.0648 +770227,84.431,93.0674 +770228,84.565,91.1268 +770229,82.739,97.1203 +770230,82.921,95.0605 +770231,83.095,93.0655 +770232,83.263,91.1273 +770233,81.337,97.1119 +770234,81.553,95.0555 +770235,81.76,93.0641 +770236,81.961,91.1292 +770237,79.935,97.1018 +770238,80.184,95.05 +770239,80.425,93.063 +770240,80.658,91.1325 +770241,78.533,97.0901 +770242,78.816,95.044 +770243,79.09,93.0624 +770244,79.356,91.1373 +770245,77.131,97.0769 +770246,77.447,95.0374 +770247,77.754,93.0622 +770248,78.053,91.1434 +770249,75.729,97.062 +770250,76.079,95.0302 +770251,76.419,93.0625 +770252,76.75,91.1509 +770253,74.328,97.0455 +770254,74.711,95.0224 +770255,75.083,93.0632 +770256,75.447,91.1598 +770257,72.927,97.0274 +770258,73.343,95.0141 +770259,73.748,93.0643 +770260,74.144,91.1701 +770261,71.527,97.0077 +770262,71.975,95.0052 +770263,72.412,93.0659 +770264,72.84,91.1817 +770265,70.127,96.9864 +770266,70.607,94.9958 +770267,71.076,93.0678 +770268,71.536,91.1948 +770269,68.727,96.9636 +770270,69.239,94.9858 +770271,69.74,93.0702 +770272,70.232,91.2091 +770273,67.328,96.9392 +770274,67.871,94.9753 +770275,68.404,93.073 +770276,68.927,91.2249 +770277,65.929,96.9133 +770278,66.504,94.9642 +770279,67.068,93.0762 +770280,67.622,91.2419 +770281,64.53,96.8858 +770282,65.137,94.9526 +770283,65.731,93.0798 +770284,66.316,91.2603 +770285,63.133,96.8568 +770286,63.77,94.9405 +770287,64.395,93.0839 +770288,65.01,91.2801 +770289,61.735,96.8264 +770290,62.403,94.9278 +770291,63.058,93.0883 +770292,63.704,91.3011 +770293,60.338,96.7944 +770294,61.036,94.9146 +770295,61.721,93.0931 +770296,62.397,91.3234 +770297,58.942,96.7609 +770298,59.669,94.9008 +770299,60.384,93.0984 +770300,61.089,91.347 +770301,57.547,96.726 +770302,58.303,94.8866 +770303,59.047,93.104 +770304,59.781,91.3718 +770305,56.152,96.6897 +770306,56.937,94.8718 +770307,57.71,93.11 +770308,58.472,91.398 +770309,54.757,96.6519 +770310,55.571,94.8566 +770311,56.372,93.1163 +770312,57.163,91.4253 +770313,53.364,96.6127 +770314,54.205,94.8408 +770315,55.035,93.1231 +770316,55.853,91.4539 +770317,51.971,96.5721 +770318,52.84,94.8245 +770319,53.697,93.1302 +770320,54.543,91.4837 +770321,50.578,96.5302 +770322,51.475,94.8078 +770323,52.358,93.1377 +770324,53.231,91.5147 +770325,49.187,96.4869 +770326,50.11,94.7905 +770327,51.02,93.1455 +770328,51.919,91.5468 +770329,47.796,96.4423 +770330,48.745,94.7728 +770331,49.681,93.1537 +770332,50.607,91.5801 +770333,46.406,96.3964 +770334,47.381,94.7546 +770335,48.342,93.1622 +770336,49.293,91.6146 +770337,45.017,96.3492 +770338,46.017,94.736 +770339,47.003,93.1711 +770340,47.979,91.6501 +770341,43.629,96.3008 +770342,44.653,94.7169 +770343,45.664,93.1803 +770344,46.664,91.6868 +770345,42.242,96.2511 +770346,43.289,94.6973 +770347,44.324,93.1898 +770348,45.348,91.7245 +770349,40.855,96.2003 +770350,41.926,94.6773 +770351,42.984,93.1996 +770352,44.032,91.7633 +770353,39.469,96.1482 +770354,40.563,94.6569 +770355,41.644,93.2098 +770356,42.714,91.8032 +770357,38.085,96.095 +770358,39.2,94.6361 +770359,40.304,93.2202 +770360,41.396,91.844 +770361,36.701,96.0407 +770362,37.838,94.6148 +770363,38.963,93.231 +770364,40.077,91.8859 +770365,35.318,95.9852 +770366,36.476,94.5931 +770367,37.622,93.242 +770368,38.757,91.9287 +770369,33.936,95.9287 +770370,35.114,94.5711 +770371,36.28,93.2533 +770372,37.436,91.9724 +770373,32.555,95.8712 +770374,33.753,94.5486 +770375,34.939,93.2648 +770376,36.114,92.0171 +770377,31.175,95.8126 +770378,32.392,94.5258 +770379,33.597,93.2767 +770380,34.791,92.0627 +770381,29.796,95.753 +770382,31.031,94.5026 +770383,32.255,93.2887 +770384,33.467,92.1092 +770385,28.418,95.6925 +770386,29.671,94.479 +770387,30.912,93.3011 +770388,32.143,92.1565 +770389,27.042,95.6311 +770390,28.311,94.4551 +770391,29.569,93.3136 +770392,30.817,92.2046 +770393,25.666,95.5687 +770394,26.951,94.4308 +770395,28.226,93.3264 +770396,29.49,92.2535 +770397,24.291,95.5055 +770398,25.592,94.4062 +770399,26.882,93.3394 +770400,28.162,92.3032 +770401,22.917,95.4414 +770402,24.233,94.3813 +770403,25.538,93.3526 +770404,26.834,92.3537 +770405,21.545,95.3766 +770406,22.874,94.3561 +770407,24.194,93.366 +770408,25.504,92.4048 +770409,20.173,95.3109 +770410,21.516,94.3305 +770411,22.849,93.3796 +770412,24.173,92.4567 +770413,18.803,95.2445 +770414,20.159,94.3047 +770415,21.504,93.3933 +770416,22.841,92.5092 +770417,17.434,95.1774 +770418,18.801,94.2786 +770419,20.159,93.4073 +770420,21.508,92.5623 +770421,16.066,95.1097 +770422,17.444,94.2522 +770423,18.813,93.4214 +770424,20.173,92.6161 +770425,14.699,95.0412 +770426,16.088,94.2256 +770427,17.467,93.4356 +770428,18.838,92.6704 +770429,13.333,94.9722 +770430,14.731,94.1987 +770431,16.121,93.45 +770432,17.502,92.7253 +770433,11.969,94.9026 +770434,13.376,94.1715 +770435,14.774,93.4645 +770436,16.164,92.7807 +770437,10.605,94.8324 +770438,12.02,94.1442 +770439,13.427,93.4791 +770440,14.826,92.8365 +770441,9.2428,94.7618 +770442,10.665,94.1166 +770443,12.08,93.4938 +770444,13.486,92.8928 +770445,7.8817,94.6906 +770446,9.3105,94.0888 +770447,10.732,93.5086 +770448,12.145,92.9496 +770449,6.5218,94.619 +770450,7.9563,94.0608 +770451,9.3836,93.5235 +770452,10.803,93.0067 +770453,5.163,94.547 +770454,6.6025,94.0326 +770455,8.035,93.5385 +770456,9.4596,93.0642 +770457,3.8055,94.4746 +770458,5.2491,94.0043 +770459,6.686,93.5536 +770460,8.1152,93.1221 +770461,2.4492,94.4019 +770462,3.8961,93.9758 +770463,5.3366,93.5687 +770464,6.7696,93.1802 +770465,1.094,94.3289 +770466,2.5435,93.9471 +770467,3.9869,93.5838 +770468,5.4229,93.2386 +770469,359.74,94.2555 +770470,1.1914,93.9183 +770471,2.6368,93.599 +770472,4.075,93.2972 +770473,358.39,94.182 +770474,359.84,93.8894 +770475,1.2863,93.6142 +770476,2.7259,93.356 +770477,357.04,94.1082 +770478,358.49,93.8603 +770479,359.94,93.6294 +770480,1.3756,93.415 +770481,355.69,94.0343 +770482,357.14,93.8312 +770483,358.58,93.6446 +770484,0.024149,93.4742 +770485,354.34,93.9602 +770486,355.79,93.8019 +770487,357.23,93.6598 +770488,358.67,93.5334 +770489,352.99,93.8861 +770490,354.44,93.7726 +770491,355.88,93.6749 +770492,357.32,93.5927 +770493,351.64,93.8118 +770494,353.09,93.7432 +770495,354.53,93.69 +770496,355.96,93.6521 +770497,350.3,93.7376 +770498,351.74,93.7137 +770499,353.18,93.7051 +770500,354.61,93.7114 +770501,348.95,93.6633 +770502,350.39,93.6842 +770503,351.82,93.7201 +770504,353.25,93.7708 +770505,347.61,93.5891 +770506,349.04,93.6546 +770507,350.47,93.7351 +770508,351.89,93.83 +770509,346.27,93.5149 +770510,347.69,93.6251 +770511,349.11,93.75 +770512,350.53,93.8892 +770513,344.93,93.4409 +770514,346.34,93.5955 +770515,347.76,93.7647 +770516,349.17,93.9483 +770517,343.59,93.3669 +770518,345,93.5659 +770519,346.41,93.7794 +770520,347.81,94.0071 +770521,342.25,93.2932 +770522,343.65,93.5363 +770523,345.05,93.794 +770524,346.44,94.0658 +770525,340.91,93.2196 +770526,342.3,93.5067 +770527,343.7,93.8084 +770528,345.08,94.1243 +770529,339.57,93.1463 +770530,340.96,93.4772 +770531,342.34,93.8227 +770532,343.71,94.1825 +770533,338.24,93.0733 +770534,339.61,93.4477 +770535,340.98,93.8369 +770536,342.35,94.2404 +770537,336.91,93.0005 +770538,338.27,93.4182 +770539,339.63,93.8509 +770540,340.98,94.298 +770541,335.57,92.9281 +770542,336.92,93.3888 +770543,338.27,93.8647 +770544,339.61,94.3552 +770545,334.24,92.8561 +770546,335.58,93.3595 +770547,336.91,93.8784 +770548,338.24,94.4121 +770549,332.91,92.7844 +770550,334.23,93.3303 +770551,335.55,93.8918 +770552,336.87,94.4685 +770553,331.58,92.7132 +770554,332.89,93.3012 +770555,334.2,93.9051 +770556,335.5,94.5244 +770557,330.25,92.6424 +770558,331.55,93.2722 +770559,332.84,93.9181 +770560,334.12,94.5799 +770561,328.93,92.5722 +770562,330.2,93.2432 +770563,331.48,93.931 +770564,332.75,94.6348 +770565,327.6,92.5024 +770566,328.86,93.2145 +770567,330.12,93.9435 +770568,331.37,94.6892 +770569,326.27,92.4332 +770570,327.52,93.1858 +770571,328.76,93.9559 +770572,330,94.743 +770573,324.95,92.3646 +770574,326.18,93.1573 +770575,327.4,93.968 +770576,328.62,94.7961 +770577,323.63,92.2967 +770578,324.84,93.129 +770579,326.04,93.9798 +770580,327.24,94.8487 +770581,322.31,92.2293 +770582,323.5,93.1008 +770583,324.68,93.9914 +770584,325.86,94.9005 +770585,320.98,92.1626 +770586,322.16,93.0729 +770587,323.32,94.0026 +770588,324.48,94.9516 +770589,319.66,92.0966 +770590,320.81,93.0451 +770591,321.96,94.0136 +770592,323.1,95.002 +770593,318.35,92.0314 +770594,319.47,93.0175 +770595,320.6,94.0243 +770596,321.72,95.0516 +770597,317.03,91.9669 +770598,318.13,92.9901 +770599,319.24,94.0346 +770600,320.33,95.1004 +770601,315.71,91.9032 +770602,316.8,92.9629 +770603,317.88,94.0447 +770604,318.95,95.1484 +770605,314.39,91.8403 +770606,315.46,92.936 +770607,316.51,94.0544 +770608,317.56,95.1955 +770609,313.08,91.7782 +770610,314.12,92.9093 +770611,315.15,94.0637 +770612,316.18,95.2417 +770613,311.76,91.717 +770614,312.78,92.8828 +770615,313.79,94.0727 +770616,314.79,95.287 +770617,310.45,91.6566 +770618,311.44,92.8566 +770619,312.43,94.0813 +770620,313.4,95.3313 +770621,309.14,91.5972 +770622,310.1,92.8306 +770623,311.06,94.0896 +770624,312.01,95.3747 +770625,307.83,91.5387 +770626,308.77,92.805 +770627,309.7,94.0975 +770628,310.63,95.417 +770629,306.51,91.4812 +770630,307.43,92.7796 +770631,308.34,94.105 +770632,309.23,95.4584 +770633,305.2,91.4247 +770634,306.09,92.7544 +770635,306.97,94.1121 +770636,307.84,95.4986 +770637,303.89,91.3691 +770638,304.76,92.7296 +770639,305.61,94.1188 +770640,306.45,95.5378 +770641,302.59,91.3146 +770642,303.42,92.7051 +770643,304.24,94.1251 +770644,305.06,95.5759 +770645,301.28,91.2611 +770646,302.08,92.6809 +770647,302.88,94.131 +770648,303.67,95.6128 +770649,299.97,91.2087 +770650,300.75,92.657 +770651,301.51,94.1364 +770652,302.27,95.6486 +770653,298.66,91.1574 +770654,299.41,92.6335 +770655,300.15,94.1415 +770656,300.88,95.6831 +770657,297.36,91.1072 +770658,298.08,92.6102 +770659,298.78,94.146 +770660,299.48,95.7165 +770661,296.05,91.0581 +770662,296.74,92.5873 +770663,297.42,94.1501 +770664,298.09,95.7487 +770665,294.75,91.0102 +770666,295.41,92.5648 +770667,296.05,94.1538 +770668,296.69,95.7796 +770669,293.44,90.96342 +770670,294.07,92.5426 +770671,294.69,94.157 +770672,295.29,95.8092 +770673,292.14,90.91784 +770674,292.74,92.5208 +770675,293.32,94.1597 +770676,293.89,95.8375 +770677,290.84,90.87345 +770678,291.4,92.4993 +770679,291.96,94.162 +770680,292.5,95.8645 +770681,289.53,90.83027 +770682,290.07,92.4782 +770683,290.59,94.1638 +770684,291.1,95.8902 +770685,288.23,90.78833 +770686,288.73,92.4575 +770687,289.22,94.1651 +770688,289.7,95.9145 +770689,286.93,90.74763 +770690,287.4,92.4371 +770691,287.86,94.1659 +770692,288.3,95.9374 +770693,285.63,90.70819 +770694,286.07,92.4171 +770695,286.49,94.1662 +770696,286.9,95.959 +770697,284.33,90.67002 +770698,284.73,92.3976 +770699,285.12,94.166 +770700,285.5,95.9791 +770701,283.03,90.63314 +770702,283.4,92.3784 +770703,283.76,94.1652 +770704,284.1,95.9978 +770705,281.73,90.59756 +770706,282.07,92.3596 +770707,282.39,94.164 +770708,282.7,96.0151 +770709,280.43,90.56328 +770710,280.73,92.3413 +770711,281.02,94.1623 +770712,281.3,96.0309 +770713,279.13,90.53032 +770714,279.4,92.3233 +770715,279.66,94.16 +770716,279.9,96.0453 +770717,277.83,90.4987 +770718,278.07,92.3057 +770719,278.29,94.1572 +770720,278.49,96.0581 +770721,276.53,90.46841 +770722,276.73,92.2886 +770723,276.92,94.1539 +770724,277.09,96.0695 +770725,275.23,90.43947 +770726,275.4,92.2719 +770727,275.56,94.1501 +770728,275.69,96.0793 +770729,273.93,90.41189 +770730,274.07,92.2556 +770731,274.19,94.1457 +770732,274.29,96.0877 +770733,272.63,90.38567 +770734,272.74,92.2397 +770735,272.82,94.1408 +770736,272.89,96.0945 +770737,271.33,90.36082 +770738,271.4,92.2243 +770739,271.45,94.1353 +770740,271.48,96.0998 +770741,270.04,90.33735 +770742,270.07,92.2092 +770743,270.09,94.1293 +770744,270.08,96.1035 +770745,268.74,90.31526 +770746,268.74,92.1947 +770747,268.72,94.1227 +770748,268.68,96.1057 +770749,267.44,90.29456 +770750,267.41,92.1805 +770751,267.35,94.1156 +770752,267.28,96.1063 +770753,266.14,90.27525 +770754,266.07,92.1668 +770755,265.99,94.108 +770756,265.87,96.1053 +770757,264.84,90.25733 +770758,264.74,92.1535 +770759,264.62,94.0998 +770760,264.47,96.1028 +770761,263.54,90.24081 +770762,263.41,92.1407 +770763,263.25,94.091 +770764,263.07,96.0986 +770765,262.25,90.22569 +770766,262.08,92.1282 +770767,261.88,94.0817 +770768,261.67,96.093 +770769,260.95,90.21197 +770770,260.74,92.1163 +770771,260.52,94.0718 +770772,260.27,96.0857 +770773,259.65,90.19964 +770774,259.41,92.1047 +770775,259.15,94.0614 +770776,258.86,96.0768 +770777,258.35,90.18872 +770778,258.08,92.0936 +770779,257.78,94.0505 +770780,257.46,96.0663 +770781,257.05,90.1792 +770782,256.75,92.083 +770783,256.42,94.0389 +770784,256.06,96.0543 +770785,255.75,90.17107 +770786,255.41,92.0728 +770787,255.05,94.0269 +770788,254.66,96.0407 +770789,254.46,90.16434 +770790,254.08,92.063 +770791,253.68,94.0142 +770792,253.26,96.0255 +770793,253.16,90.159 +770794,252.75,92.0537 +770795,252.32,94.001 +770796,251.86,96.0087 +770797,251.86,90.15504 +770798,251.42,92.0447 +770799,250.95,93.9873 +770800,250.46,95.9903 +770801,250.56,90.15247 +770802,250.08,92.0363 +770803,249.59,93.973 +770804,249.06,95.9703 +770805,249.26,90.15128 +770806,248.75,92.0282 +770807,248.22,93.9582 +770808,247.66,95.9488 +770809,247.96,90.15147 +770810,247.42,92.0206 +770811,246.85,93.9428 +770812,246.26,95.9257 +770813,246.66,90.15301 +770814,246.08,92.0134 +770815,245.49,93.9269 +770816,244.86,95.901 +770817,245.35,90.15592 +770818,244.75,92.0067 +770819,244.12,93.9105 +770820,243.47,95.8748 +770821,244.05,90.16018 +770822,243.42,92.0004 +770823,242.76,93.8935 +770824,242.07,95.8471 +770825,242.75,90.16578 +770826,242.08,91.9944 +770827,241.39,93.876 +770828,240.67,95.8178 +770829,241.45,90.17271 +770830,240.75,91.989 +770831,240.03,93.8579 +770832,239.28,95.787 +770833,240.15,90.18097 +770834,239.42,91.9839 +770835,238.66,93.8393 +770836,237.88,95.7546 +770837,238.84,90.19054 +770838,238.08,91.9792 +770839,237.3,93.8202 +770840,236.49,95.7208 +770841,237.54,90.20142 +770842,236.75,91.975 +770843,235.94,93.8006 +770844,235.09,95.6855 +770845,236.23,90.21358 +770846,235.42,91.9711 +770847,234.57,93.7804 +770848,233.7,95.6487 +770849,234.93,90.22702 +770850,234.08,91.9676 +770851,233.21,93.7598 +770852,232.3,95.6105 +770853,233.62,90.24173 +770854,232.75,91.9646 +770855,231.84,93.7386 +770856,230.91,95.5707 +770857,232.31,90.25768 +770858,231.41,91.9619 +770859,230.48,93.7169 +770860,229.52,95.5296 +770861,231.01,90.27488 +770862,230.08,91.9596 +770863,229.12,93.6948 +770864,228.13,95.4871 +770865,229.7,90.29329 +770866,228.74,91.9577 +770867,227.76,93.6721 +770868,226.74,95.4431 +770869,228.39,90.31291 +770870,227.41,91.9562 +770871,226.39,93.649 +770872,225.35,95.3978 +770873,227.08,90.33373 +770874,226.07,91.955 +770875,225.03,93.6254 +770876,223.96,95.3511 +770877,225.77,90.35571 +770878,224.73,91.9542 +770879,223.67,93.6013 +770880,222.58,95.303 +770881,224.46,90.37885 +770882,223.4,91.9538 +770883,222.31,93.5767 +770884,221.19,95.2537 +770885,223.15,90.40313 +770886,222.06,91.9537 +770887,220.95,93.5517 +770888,219.8,95.203 +770889,221.84,90.42853 +770890,220.72,91.954 +770891,219.59,93.5263 +770892,218.42,95.1511 +770893,220.52,90.45503 +770894,219.39,91.9546 +770895,218.23,93.5004 +770896,217.04,95.0979 +770897,219.21,90.48261 +770898,218.05,91.9555 +770899,216.87,93.474 +770900,215.65,95.0434 +770901,217.89,90.51125 +770902,216.71,91.9568 +770903,215.51,93.4472 +770904,214.27,94.9878 +770905,216.58,90.54094 +770906,215.37,91.9583 +770907,214.15,93.42 +770908,212.89,94.9309 +770909,215.26,90.57164 +770910,214.04,91.9602 +770911,212.79,93.3924 +770912,211.51,94.8729 +770913,213.94,90.60334 +770914,212.7,91.9624 +770915,211.43,93.3644 +770916,210.13,94.8138 +770917,212.62,90.63601 +770918,211.36,91.9649 +770919,210.07,93.3359 +770920,208.76,94.7535 +770921,211.3,90.66964 +770922,210.02,91.9677 +770923,208.71,93.3071 +770924,207.38,94.6922 +770925,209.98,90.7042 +770926,208.68,91.9707 +770927,207.36,93.2779 +770928,206,94.6298 +770929,208.66,90.73967 +770930,207.34,91.9741 +770931,206,93.2483 +770932,204.63,94.5663 +770933,207.34,90.77601 +770934,206,91.9777 +770935,204.64,93.2184 +770936,203.26,94.5019 +770937,206.01,90.81322 +770938,204.66,91.9815 +770939,203.29,93.1881 +770940,201.88,94.4364 +770941,204.69,90.85126 +770942,203.32,91.9856 +770943,201.93,93.1574 +770944,200.51,94.3701 +770945,203.36,90.8901 +770946,201.98,91.99 +770947,200.57,93.1264 +770948,199.14,94.3028 +770949,202.03,90.92973 +770950,200.64,91.9945 +770951,199.22,93.0951 +770952,197.78,94.2346 +770953,200.71,90.97012 +770954,199.3,91.9993 +770955,197.86,93.0635 +770956,196.41,94.1655 +770957,199.38,91.0112 +770958,197.95,92.0043 +770959,196.51,93.0315 +770960,195.04,94.0957 +770961,198.05,91.053 +770962,196.61,92.0095 +770963,195.16,92.9993 +770964,193.68,94.025 +770965,196.72,91.0955 +770966,195.27,92.0149 +770967,193.8,92.9667 +770968,192.31,93.9535 +770969,195.38,91.1387 +770970,193.93,92.0205 +770971,192.45,92.9339 +770972,190.95,93.8814 +770973,194.05,91.1824 +770974,192.58,92.0262 +770975,191.1,92.9008 +770976,189.59,93.8085 +770977,192.71,91.2268 +770978,191.24,92.0322 +770979,189.74,92.8675 +770980,188.23,93.7349 +770981,191.38,91.2717 +770982,189.89,92.0382 +770983,188.39,92.8339 +770984,186.87,93.6607 +770985,190.04,91.3171 +770986,188.55,92.0444 +770987,187.04,92.8001 +770988,185.51,93.5859 +770989,188.7,91.3631 +770990,187.21,92.0508 +770991,185.69,92.766 +770992,184.16,93.5105 +770993,187.36,91.4095 +770994,185.86,92.0573 +770995,184.34,92.7317 +770996,182.8,93.4346 +770997,186.02,91.4564 +770998,184.51,92.0639 +770999,182.99,92.6973 +771000,181.45,93.3582 +771001,184.68,91.5037 +771002,183.17,92.0705 +771003,181.64,92.6626 +771004,180.09,93.2813 +771005,183.34,91.5513 +771006,181.82,92.0773 +771007,180.29,92.6277 +771008,178.74,93.2039 +771009,181.99,91.5994 +771010,180.48,92.0842 +771011,178.94,92.5927 +771012,177.39,93.1261 +771013,180.65,91.6477 +771014,179.13,92.0911 +771015,177.59,92.5575 +771016,176.04,93.048 +771017,179.3,91.6964 +771018,177.78,92.0981 +771019,176.25,92.5221 +771020,174.7,92.9695 +771021,177.95,91.7453 +771022,176.43,92.1052 +771023,174.9,92.4867 +771024,173.35,92.8908 +771025,176.6,91.7944 +771026,175.08,92.1123 +771027,173.55,92.451 +771028,172,92.8117 +771029,175.25,91.8437 +771030,173.74,92.1194 +771031,172.21,92.4153 +771032,170.66,92.7324 +771033,173.9,91.8932 +771034,172.39,92.1266 +771035,170.86,92.3795 +771036,169.32,92.6529 +771037,172.55,91.9429 +771038,171.04,92.1337 +771039,169.51,92.3435 +771040,167.98,92.5733 +771041,171.19,91.9926 +771042,169.69,92.1409 +771043,168.17,92.3075 +771044,166.64,92.4934 +771045,169.84,92.0424 +771046,168.34,92.148 +771047,166.82,92.2714 +771048,165.3,92.4135 +771049,168.48,92.0923 +771050,166.99,92.1551 +771051,165.48,92.2353 +771052,163.96,92.3336 +771053,167.12,92.1422 +771054,165.64,92.1622 +771055,164.14,92.1991 +771056,162.62,92.2536 +771057,165.76,92.192 +771058,164.28,92.1693 +771059,162.79,92.1628 +771060,161.29,92.1736 +771061,164.4,92.2418 +771062,162.93,92.1762 +771063,161.45,92.1265 +771064,159.95,92.0936 +771065,163.04,92.2915 +771066,161.58,92.1832 +771067,160.11,92.0903 +771068,158.62,92.0137 +771069,161.68,92.3411 +771070,160.23,92.19 +771071,158.76,92.054 +771072,157.29,91.9339 +771073,160.31,92.3906 +771074,158.87,92.1968 +771075,157.42,92.0177 +771076,155.96,91.8542 +771077,158.95,92.4398 +771078,157.52,92.2034 +771079,156.08,91.9814 +771080,154.63,91.7747 +771081,157.58,92.4889 +771082,156.17,92.2099 +771083,154.74,91.9452 +771084,153.3,91.6955 +771085,156.22,92.5377 +771086,154.81,92.2164 +771087,153.4,91.909 +771088,151.98,91.6164 +771089,154.85,92.5862 +771090,153.46,92.2226 +771091,152.06,91.8728 +771092,150.65,91.5376 +771093,153.48,92.6344 +771094,152.1,92.2288 +771095,150.72,91.8367 +771096,149.33,91.4591 +771097,152.11,92.6822 +771098,150.75,92.2348 +771099,149.38,91.8007 +771100,148,91.381 +771101,150.74,92.7297 +771102,149.39,92.2406 +771103,148.04,91.7648 +771104,146.68,91.3032 +771105,149.36,92.7768 +771106,148.04,92.2463 +771107,146.7,91.7289 +771108,145.36,91.2258 +771109,147.99,92.8235 +771110,146.68,92.2517 +771111,145.37,91.6932 +771112,144.04,91.1488 +771113,146.61,92.8697 +771114,145.33,92.257 +771115,144.03,91.6576 +771116,142.72,91.0723 +771117,145.24,92.9154 +771118,143.97,92.2621 +771119,142.69,91.6221 +771120,141.4,90.99627 +771121,143.86,92.9605 +771122,142.61,92.267 +771123,141.35,91.5867 +771124,140.09,90.92077 +771125,142.48,93.0051 +771126,141.26,92.2716 +771127,140.02,91.5515 +771128,138.77,90.84582 +771129,141.1,93.0491 +771130,139.9,92.276 +771131,138.68,91.5164 +771132,137.46,90.77145 +771133,139.72,93.0925 +771134,138.54,92.2801 +771135,137.35,91.4815 +771136,136.14,90.69768 +771137,138.34,93.1353 +771138,137.18,92.284 +771139,136.01,91.4468 +771140,134.83,90.62456 +771141,136.96,93.1773 +771142,135.82,92.2877 +771143,134.68,91.4123 +771144,133.52,90.5521 +771145,135.58,93.2187 +771146,134.46,92.291 +771147,133.34,91.3779 +771148,132.21,90.48034 +771149,134.19,93.2593 +771150,133.11,92.2941 +771151,132.01,91.3438 +771152,130.9,90.4093 +771153,132.81,93.2992 +771154,131.75,92.2969 +771155,130.67,91.3099 +771156,129.59,90.33901 +771157,131.42,93.3382 +771158,130.39,92.2994 +771159,129.34,91.2762 +771160,128.28,90.2695 +771161,130.03,93.3765 +771162,129.03,92.3015 +771163,128.01,91.2427 +771164,126.98,90.20079 +771165,128.65,93.4138 +771166,127.67,92.3034 +771167,126.67,91.2095 +771168,125.67,90.13291 +771169,127.26,93.4504 +771170,126.31,92.3049 +771171,125.34,91.1765 +771172,124.36,90.06588 +771173,125.87,93.486 +771174,124.95,92.3061 +771175,124.01,91.1438 +771176,123.06,89.99973353 +771177,124.48,93.5206 +771178,123.58,92.3069 +771179,122.68,91.1114 +771180,121.76,89.934492 +771181,123.09,93.5544 +771182,122.22,92.3074 +771183,121.34,91.0792 +771184,120.45,89.87018 +771185,121.7,93.5871 +771186,120.86,92.3075 +771187,120.01,91.0473 +771188,119.15,89.80682 +771189,120.3,93.6188 +771190,119.5,92.3073 +771191,118.68,91.0157 +771192,117.85,89.74443 +771193,118.91,93.6495 +771194,118.14,92.3066 +771195,117.35,90.98442 +771196,116.55,89.68304 +771197,117.52,93.6792 +771198,116.78,92.3056 +771199,116.02,90.95343 +771200,115.25,89.62266 +771201,116.12,93.7077 +771202,115.41,92.3042 +771203,114.69,90.92276 +771204,113.95,89.56333 +771205,114.73,93.7352 +771206,114.05,92.3024 +771207,113.36,90.89241 +771208,112.65,89.50506 +771209,113.33,93.7615 +771210,112.69,92.3002 +771211,112.03,90.86239 +771212,111.35,89.44786 +771213,111.94,93.7867 +771214,111.33,92.2976 +771215,110.7,90.83271 +771216,110.06,89.39177 +771217,110.54,93.8108 +771218,109.96,92.2945 +771219,109.37,90.80336 +771220,108.76,89.3368 +771221,109.14,93.8336 +771222,108.6,92.291 +771223,108.04,90.77437 +771224,107.46,89.28296 +771225,107.74,93.8552 +771226,107.24,92.2871 +771227,106.71,90.74573 +771228,106.17,89.23027 +771229,106.35,93.8756 +771230,105.88,92.2827 +771231,105.38,90.71746 +771232,104.87,89.17876 +771233,104.95,93.8947 +771234,104.51,92.2779 +771235,104.06,90.68955 +771236,103.58,89.12844 +771237,103.55,93.9126 +771238,103.15,92.2727 +771239,102.73,90.66201 +771240,102.28,89.07931 +771241,102.15,93.9292 +771242,101.79,92.267 +771243,101.4,90.63486 +771244,100.99,89.03141 +771245,100.75,93.9444 +771246,100.42,92.2608 +771247,100.07,90.60808 +771248,99.697,88.9847 +771249,99.35,93.9584 +771250,99.058,92.2541 +771251,98.742,90.5817 +771252,98.404,88.9393 +771253,97.95,93.971 +771254,97.694,92.247 +771255,97.414,90.5557 +771256,97.111,88.8952 +771257,96.55,93.9823 +771258,96.331,92.2394 +771259,96.086,90.53011 +771260,95.819,88.8523 +771261,95.149,93.9922 +771262,94.967,92.2313 +771263,94.759,90.50492 +771264,94.526,88.8107 +771265,93.748,94.0007 +771266,93.603,92.2227 +771267,93.431,90.48013 +771268,93.235,88.7703 +771269,92.347,94.0078 +771270,92.239,92.2137 +771271,92.104,90.45575 +771272,91.943,88.7313 +771273,90.946,94.0135 +771274,90.875,92.2041 +771275,90.776,90.43179 +771276,90.652,88.6936 +771277,89.545,94.0178 +771278,89.511,92.1941 +771279,89.449,90.40825 +771280,89.36,88.6573 +771281,88.143,94.0206 +771282,88.147,92.1835 +771283,88.122,90.38512 +771284,88.069,88.6222 +771285,86.742,94.022 +771286,86.784,92.1725 +771287,86.795,90.36242 +771288,86.778,88.5885 +771289,85.341,94.022 +771290,85.42,92.1609 +771291,85.467,90.34014 +771292,85.487,88.5562 +771293,83.939,94.0205 +771294,84.056,92.1488 +771295,84.14,90.31829 +771296,84.197,88.5252 +771297,82.538,94.0175 +771298,82.692,92.1362 +771299,82.813,90.29687 +771300,82.906,88.4956 +771301,81.137,94.0131 +771302,81.328,92.1231 +771303,81.486,90.27589 +771304,81.615,88.4673 +771305,79.736,94.0071 +771306,79.965,92.1095 +771307,80.159,90.25533 +771308,80.324,88.4404 +771309,78.335,93.9997 +771310,78.601,92.0954 +771311,78.832,90.23522 +771312,79.033,88.4148 +771313,76.934,93.9908 +771314,77.237,92.0807 +771315,77.506,90.21554 +771316,77.742,88.3907 +771317,75.533,93.9804 +771318,75.874,92.0655 +771319,76.179,90.19629 +771320,76.451,88.3679 +771321,74.133,93.9685 +771322,74.511,92.0498 +771323,74.852,90.17749 +771324,75.16,88.3465 +771325,72.733,93.955 +771326,73.147,92.0336 +771327,73.525,90.15912 +771328,73.869,88.3265 +771329,71.333,93.9401 +771330,71.784,92.0169 +771331,72.197,90.1412 +771332,72.577,88.3078 +771333,69.934,93.9236 +771334,70.421,91.9996 +771335,70.87,90.12371 +771336,71.286,88.2906 +771337,68.534,93.9057 +771338,69.059,91.9819 +771339,69.543,90.10666 +771340,69.994,88.2747 +771341,67.136,93.8862 +771342,67.696,91.9636 +771343,68.216,90.090052 +771344,68.701,88.2601 +771345,65.737,93.8652 +771346,66.333,91.9447 +771347,66.889,90.07388 +771348,67.409,88.247 +771349,64.34,93.8427 +771350,64.971,91.9254 +771351,65.561,90.058145 +771352,66.116,88.2352 +771353,62.942,93.8188 +771354,63.609,91.9056 +771355,64.234,90.042846 +771356,64.823,88.2248 +771357,61.545,93.7933 +771358,62.247,91.8852 +771359,62.906,90.027982 +771360,63.529,88.2157 +771361,60.149,93.7663 +771362,60.885,91.8643 +771363,61.578,90.013549 +771364,62.235,88.208 +771365,58.753,93.7378 +771366,59.524,91.8429 +771367,60.25,89.99954825 +771368,60.941,88.2017 +771369,57.358,93.7079 +771370,58.162,91.821 +771371,58.922,89.985976 +771372,59.646,88.1967 +771373,55.964,93.6764 +771374,56.801,91.7986 +771375,57.594,89.972829 +771376,58.35,88.193 +771377,54.57,93.6435 +771378,55.44,91.7757 +771379,56.266,89.960107 +771380,57.054,88.1906 +771381,53.177,93.6091 +771382,54.079,91.7522 +771383,54.937,89.947805 +771384,55.758,88.1896 +771385,51.784,93.5733 +771386,52.719,91.7283 +771387,53.609,89.935922 +771388,54.461,88.1898 +771389,50.392,93.5361 +771390,51.359,91.7039 +771391,52.28,89.924453 +771392,53.163,88.1914 +771393,49.001,93.4974 +771394,49.999,91.679 +771395,50.951,89.913395 +771396,51.865,88.1942 +771397,47.611,93.4572 +771398,48.639,91.6536 +771399,49.622,89.902744 +771400,50.566,88.1983 +771401,46.222,93.4157 +771402,47.28,91.6277 +771403,48.292,89.8925 +771404,49.266,88.2037 +771405,44.833,93.3728 +771406,45.921,91.6014 +771407,46.963,89.88265 +771408,47.966,88.2103 +771409,43.446,93.3285 +771410,44.562,91.5745 +771411,45.633,89.8732 +771412,46.665,88.2182 +771413,42.059,93.2828 +771414,43.204,91.5472 +771415,44.303,89.86413 +771416,45.363,88.2273 +771417,40.673,93.2358 +771418,41.846,91.5195 +771419,42.973,89.85546 +771420,44.061,88.2376 +771421,39.288,93.1875 +771422,40.488,91.4913 +771423,41.642,89.84716 +771424,42.757,88.249 +771425,37.904,93.1378 +771426,39.131,91.4626 +771427,40.311,89.83924 +771428,41.453,88.2617 +771429,36.521,93.0868 +771430,37.774,91.4335 +771431,38.98,89.83169 +771432,40.148,88.2755 +771433,35.139,93.0346 +771434,36.417,91.4039 +771435,37.649,89.8245 +771436,38.842,88.2904 +771437,33.758,92.9811 +771438,35.061,91.3739 +771439,36.318,89.81767 +771440,37.536,88.3065 +771441,32.378,92.9263 +771442,33.705,91.3435 +771443,34.986,89.8112 +771444,36.228,88.3237 +771445,30.999,92.8703 +771446,32.349,91.3126 +771447,33.654,89.80507 +771448,34.92,88.342 +771449,29.621,92.8131 +771450,30.994,91.2813 +771451,32.321,89.79928 +771452,33.61,88.3613 +771453,28.244,92.7548 +771454,29.639,91.2497 +771455,30.988,89.79382 +771456,32.3,88.3817 +771457,26.868,92.6952 +771458,28.284,91.2176 +771459,29.655,89.78869 +771460,30.989,88.4031 +771461,25.494,92.6346 +771462,26.93,91.1851 +771463,28.322,89.78388 +771464,29.676,88.4256 +771465,24.12,92.5728 +771466,25.576,91.1523 +771467,26.989,89.77938 +771468,28.363,88.449 +771469,22.748,92.5099 +771470,24.223,91.119 +771471,25.655,89.77519 +771472,27.048,88.4734 +771473,21.377,92.446 +771474,22.87,91.0854 +771475,24.32,89.77129 +771476,25.733,88.4987 +771477,20.007,92.381 +771478,21.518,91.0514 +771479,22.986,89.76769 +771480,24.417,88.5249 +771481,18.638,92.315 +771482,20.166,91.0171 +771483,21.651,89.76437 +771484,23.099,88.5521 +771485,17.271,92.2481 +771486,18.814,90.98245 +771487,20.315,89.76132 +771488,21.78,88.5801 +771489,15.904,92.1801 +771490,17.463,90.94745 +771491,18.98,89.75854 +771492,20.461,88.609 +771493,14.539,92.1113 +771494,16.112,90.91211 +771495,17.644,89.75601 +771496,19.14,88.6387 +771497,13.176,92.0415 +771498,14.762,90.87645 +771499,16.307,89.75374 +771500,17.818,88.6692 +771501,11.813,91.9708 +771502,13.412,90.84049 +771503,14.971,89.75171 +771504,16.495,88.7005 +771505,10.452,91.8993 +771506,12.062,90.80422 +771507,13.634,89.74991 +771508,15.17,88.7325 +771509,9.0919,91.827 +771510,10.713,90.76766 +771511,12.296,89.74833 +771512,13.845,88.7653 +771513,7.7332,91.7539 +771514,9.3649,90.73081 +771515,10.959,89.74697 +771516,12.518,88.7987 +771517,6.3758,91.68 +771518,8.0168,90.69369 +771519,9.6203,89.74581 +771520,11.19,88.8329 +771521,5.0198,91.6054 +771522,6.6692,90.65631 +771523,8.2818,89.74486 +771524,9.8613,88.8677 +771525,3.6651,91.5301 +771526,5.322,90.61868 +771527,6.9429,89.74409 +771528,8.5311,88.9031 +771529,2.3116,91.4541 +771530,3.9753,90.5808 +771531,5.6036,89.74349 +771532,7.1996,88.939 +771533,0.95955,91.3774 +771534,2.6291,90.54269 +771535,4.2639,89.74307 +771536,5.8669,88.9756 +771537,359.61,91.3002 +771538,1.2833,90.50435 +771539,2.9238,89.74281 +771540,4.533,89.0127 +771541,358.26,91.2224 +771542,359.94,90.46581 +771543,1.5833,89.74269 +771544,3.1978,89.0503 +771545,356.91,91.144 +771546,358.59,90.42705 +771547,0.24246,89.74272 +771548,1.8614,89.08838 +771549,355.56,91.0652 +771550,357.25,90.38811 +771551,358.9,89.74288 +771552,0.52376,89.12691 +771553,354.22,90.9858 +771554,355.9,90.34898 +771555,357.56,89.74315 +771556,359.18,89.16587 +771557,352.88,90.90599 +771558,354.56,90.30968 +771559,356.22,89.74354 +771560,357.84,89.20522 +771561,351.53,90.82577 +771562,353.22,90.27022 +771563,354.88,89.74403 +771564,356.5,89.24493 +771565,350.19,90.74516 +771566,351.88,90.23061 +771567,353.53,89.7446 +771568,355.16,89.28497 +771569,348.85,90.6642 +771570,350.53,90.19086 +771571,352.19,89.74526 +771572,353.82,89.32532 +771573,347.51,90.58292 +771574,349.19,90.15098 +771575,350.85,89.74599 +771576,352.47,89.36594 +771577,346.17,90.50136 +771578,347.85,90.11098 +771579,349.5,89.74678 +771580,351.12,89.40681 +771581,344.84,90.41955 +771582,346.51,90.070877 +771583,348.16,89.74761 +771584,349.78,89.44789 +771585,343.5,90.33752 +771586,345.17,90.030675 +771587,346.81,89.74849 +771588,348.43,89.48915 +771589,342.17,90.2553 +771590,343.83,89.990387 +771591,345.47,89.74939 +771592,347.08,89.53057 +771593,340.84,90.17294 +771594,342.49,89.950025 +771595,344.12,89.75031 +771596,345.73,89.57211 +771597,339.51,90.090449 +771598,341.15,89.909598 +771599,342.78,89.75125 +771600,344.37,89.61374 +771601,338.18,90.0078775 +771602,339.82,89.86912 +771603,341.43,89.75217 +771604,343.02,89.65544 +771605,336.85,89.925254 +771606,338.48,89.8286 +771607,340.08,89.75309 +771608,341.66,89.69716 +771609,335.52,89.84261 +771610,337.14,89.78805 +771611,338.74,89.75398 +771612,340.31,89.73889 +771613,334.2,89.75999 +771614,335.8,89.74747 +771615,337.39,89.75484 +771616,338.95,89.78059 +771617,332.87,89.67741 +771618,334.47,89.70689 +771619,336.04,89.75565 +771620,337.59,89.82222 +771621,331.55,89.59491 +771622,333.13,89.66631 +771623,334.69,89.75641 +771624,336.23,89.86376 +771625,330.23,89.51252 +771626,331.8,89.62574 +771627,333.34,89.75711 +771628,334.87,89.905184 +771629,328.91,89.43029 +771630,330.46,89.5852 +771631,331.99,89.75773 +771632,333.51,89.946452 +771633,327.59,89.34823 +771634,329.13,89.54469 +771635,330.64,89.75826 +771636,332.14,89.987536 +771637,326.27,89.26638 +771638,327.79,89.50423 +771639,329.29,89.7587 +771640,330.78,90.028407 +771641,324.96,89.18478 +771642,326.46,89.46382 +771643,327.94,89.75903 +771644,329.41,90.069033 +771645,323.64,89.10345 +771646,325.13,89.42347 +771647,326.59,89.75925 +771648,328.04,90.10938 +771649,322.33,89.02243 +771650,323.79,89.38321 +771651,325.24,89.75934 +771652,326.67,90.14943 +771653,321.01,88.9417 +771654,322.46,89.34303 +771655,323.89,89.75929 +771656,325.3,90.18914 +771657,319.7,88.8614 +771658,321.13,89.30295 +771659,322.54,89.75909 +771660,323.93,90.22849 +771661,318.39,88.7815 +771662,319.8,89.26298 +771663,321.19,89.75874 +771664,322.56,90.26744 +771665,317.08,88.7021 +771666,318.47,89.22312 +771667,319.84,89.75822 +771668,321.19,90.30597 +771669,315.77,88.623 +771670,317.14,89.1834 +771671,318.48,89.75753 +771672,319.81,90.34405 +771673,314.46,88.5445 +771674,315.81,89.14381 +771675,317.13,89.75664 +771676,318.44,90.38164 +771677,313.16,88.4665 +771678,314.48,89.10437 +771679,315.78,89.75557 +771680,317.06,90.41872 +771681,311.85,88.3891 +771682,313.15,89.06509 +771683,314.42,89.75428 +771684,315.68,90.45526 +771685,310.55,88.3122 +771686,311.82,89.02598 +771687,313.07,89.75278 +771688,314.31,90.49123 +771689,309.24,88.236 +771690,310.49,88.9871 +771691,311.72,89.75106 +771692,312.93,90.5266 +771693,307.94,88.1604 +771694,309.16,88.9483 +771695,310.36,89.7491 +771696,311.54,90.56135 +771697,306.64,88.0854 +771698,307.83,88.9098 +771699,309.01,89.7469 +771700,310.16,90.59545 +771701,305.34,88.0112 +771702,306.5,88.8714 +771703,307.65,89.74445 +771704,308.78,90.62886 +771705,304.04,87.9376 +771706,305.18,88.8333 +771707,306.3,89.74173 +771708,307.4,90.66157 +771709,302.74,87.8648 +771710,303.85,88.7954 +771711,304.94,89.73875 +771712,306.01,90.69354 +771713,301.45,87.7928 +771714,302.52,88.7577 +771715,303.58,89.73548 +771716,304.63,90.72475 +771717,300.15,87.7216 +771718,301.2,88.7203 +771719,302.23,89.73193 +771720,303.24,90.75517 +771721,298.85,87.6512 +771722,299.87,88.6831 +771723,300.87,89.72808 +771724,301.85,90.78479 +771725,297.56,87.5817 +771726,298.55,88.6462 +771727,299.52,89.72393 +771728,300.47,90.81356 +771729,296.26,87.513 +771730,297.22,88.6096 +771731,298.16,89.71947 +771732,299.08,90.84147 +771733,294.97,87.4453 +771734,295.9,88.5732 +771735,296.8,89.71468 +771736,297.69,90.86849 +771737,293.68,87.3785 +771738,294.57,88.5371 +771739,295.44,89.70957 +771740,296.3,90.8946 +771741,292.39,87.3126 +771742,293.25,88.5013 +771743,294.09,89.70412 +771744,294.91,90.91977 +771745,291.1,87.2476 +771746,291.92,88.4658 +771747,292.73,89.69832 +771748,293.52,90.94399 +771749,289.81,87.1837 +771750,290.6,88.4307 +771751,291.37,89.69218 +771752,292.12,90.96722 +771753,288.52,87.1208 +771754,289.27,88.3958 +771755,290.01,89.68567 +771756,290.73,90.98945 +771757,287.23,87.0589 +771758,287.95,88.3612 +771759,288.65,89.6788 +771760,289.34,91.0107 +771761,285.94,86.998 +771762,286.63,88.327 +771763,287.3,89.67156 +771764,287.94,91.0308 +771765,284.65,86.9383 +771766,285.31,88.2931 +771767,285.94,89.66394 +771768,286.55,91.0499 +771769,283.36,86.8796 +771770,283.98,88.2596 +771771,284.58,89.65593 +771772,285.15,91.0679 +771773,282.08,86.822 +771774,282.66,88.2264 +771775,283.22,89.64753 +771776,283.76,91.0848 +771777,280.79,86.7655 +771778,281.34,88.1936 +771779,281.86,89.63874 +771780,282.36,91.1005 +771781,279.51,86.7102 +771782,280.02,88.1611 +771783,280.5,89.62954 +771784,280.96,91.1151 +771785,278.22,86.6561 +771786,278.69,88.129 +771787,279.14,89.61992 +771788,279.57,91.1286 +771789,276.94,86.6031 +771790,277.37,88.0972 +771791,277.78,89.6099 +771792,278.17,91.1408 +771793,275.65,86.5513 +771794,276.05,88.0659 +771795,276.42,89.59945 +771796,276.77,91.1519 +771797,274.37,86.5007 +771798,274.73,88.0349 +771799,275.07,89.58858 +771800,275.37,91.1617 +771801,273.09,86.4513 +771802,273.41,88.0043 +771803,273.71,89.57727 +771804,273.98,91.1704 +771805,271.8,86.4032 +771806,272.09,87.9741 +771807,272.35,89.56553 +771808,272.58,91.1777 +771809,270.52,86.3563 +771810,270.77,87.9443 +771811,270.99,89.55335 +771812,271.18,91.1838 +771813,269.24,86.3106 +771814,269.45,87.9149 +771815,269.63,89.54073 +771816,269.78,91.1886 +771817,267.95,86.2662 +771818,268.12,87.8859 +771819,268.27,89.52766 +771820,268.38,91.1922 +771821,266.67,86.2231 +771822,266.8,87.8573 +771823,266.91,89.51413 +771824,266.98,91.1944 +771825,265.39,86.1813 +771826,265.48,87.8291 +771827,265.55,89.50015 +771828,265.58,91.1953 +771829,264.11,86.1408 +771830,264.16,87.8014 +771831,264.19,89.48571 +771832,264.18,91.1949 +771833,262.83,86.1016 +771834,262.84,87.774 +771835,262.83,89.47081 +771836,262.78,91.1931 +771837,261.54,86.0636 +771838,261.52,87.7471 +771839,261.47,89.45544 +771840,261.38,91.19 +771841,260.26,86.0271 +771842,260.2,87.7206 +771843,260.11,89.4396 +771844,259.98,91.1856 +771845,258.98,85.9918 +771846,258.88,87.6945 +771847,258.75,89.42329 +771848,258.58,91.1797 +771849,257.7,85.9578 +771850,257.56,87.6689 +771851,257.39,89.40651 +771852,257.18,91.1725 +771853,256.42,85.9252 +771854,256.24,87.6437 +771855,256.03,89.38926 +771856,255.78,91.164 +771857,255.14,85.8939 +771858,254.92,87.6189 +771859,254.67,89.37152 +771860,254.38,91.154 +771861,253.85,85.864 +771862,253.6,87.5945 +771863,253.31,89.35331 +771864,252.98,91.1426 +771865,252.57,85.8354 +771866,252.28,87.5706 +771867,251.95,89.33462 +771868,251.58,91.1299 +771869,251.29,85.8082 +771870,250.96,87.5471 +771871,250.59,89.31545 +771872,250.19,91.1157 +771873,250.01,85.7823 +771874,249.64,87.5241 +771875,249.23,89.2958 +771876,248.79,91.1001 +771877,248.73,85.7578 +771878,248.32,87.5015 +771879,247.88,89.27566 +771880,247.39,91.0831 +771881,247.44,85.7346 +771882,247,87.4793 +771883,246.52,89.25505 +771884,245.99,91.0647 +771885,246.16,85.7127 +771886,245.68,87.4576 +771887,245.16,89.23395 +771888,244.59,91.0449 +771889,244.88,85.6922 +771890,244.36,87.4363 +771891,243.8,89.21236 +771892,243.2,91.0236 +771893,243.59,85.6731 +771894,243.04,87.4154 +771895,242.44,89.1903 +771896,241.8,91.001 +771897,242.31,85.6553 +771898,241.72,87.395 +771899,241.08,89.16775 +771900,240.4,90.97693 +771901,241.03,85.6388 +771902,240.4,87.375 +771903,239.73,89.14473 +771904,239.01,90.95145 +771905,239.74,85.6236 +771906,239.08,87.3555 +771907,238.37,89.12122 +771908,237.61,90.92455 +771909,238.46,85.6098 +771910,237.75,87.3364 +771911,237.01,89.09724 +771912,236.22,90.89625 +771913,237.17,85.5973 +771914,236.43,87.3177 +771915,235.65,89.07277 +771916,234.82,90.86654 +771917,235.88,85.5862 +771918,235.11,87.2994 +771919,234.3,89.04784 +771920,233.43,90.83543 +771921,234.6,85.5763 +771922,233.79,87.2816 +771923,232.94,89.02243 +771924,232.04,90.80293 +771925,233.31,85.5678 +771926,232.47,87.2642 +771927,231.58,88.9966 +771928,230.65,90.76903 +771929,232.02,85.5605 +771930,231.15,87.2472 +771931,230.23,88.9702 +771932,229.25,90.73375 +771933,230.73,85.5545 +771934,229.82,87.2307 +771935,228.87,88.9434 +771936,227.86,90.6971 +771937,229.45,85.5498 +771938,228.5,87.2145 +771939,227.51,88.9161 +771940,226.47,90.65908 +771941,228.16,85.5464 +771942,227.18,87.1988 +771943,226.16,88.8884 +771944,225.08,90.61969 +771945,226.87,85.5442 +771946,225.86,87.1835 +771947,224.8,88.8602 +771948,223.7,90.57896 +771949,225.57,85.5433 +771950,224.54,87.1686 +771951,223.45,88.8316 +771952,222.31,90.5369 +771953,224.28,85.5436 +771954,223.21,87.1541 +771955,222.09,88.8025 +771956,220.92,90.4935 +771957,222.99,85.5452 +771958,221.89,87.14 +771959,220.74,88.7729 +771960,219.54,90.44879 +771961,221.7,85.5479 +771962,220.57,87.1263 +771963,219.39,88.743 +771964,218.15,90.40277 +771965,220.4,85.5518 +771966,219.24,87.113 +771967,218.03,88.7126 +771968,216.77,90.35546 +771969,219.11,85.5569 +771970,217.92,87.1 +771971,216.68,88.6817 +771972,215.39,90.30688 +771973,217.81,85.5632 +771974,216.59,87.0875 +771975,215.33,88.6505 +771976,214,90.25704 +771977,216.52,85.5706 +771978,215.27,87.0753 +771979,213.97,88.6188 +771980,212.62,90.20595 +771981,215.22,85.5792 +771982,213.94,87.0635 +771983,212.62,88.5867 +771984,211.24,90.15362 +771985,213.92,85.5888 +771986,212.62,87.0521 +771987,211.27,88.5542 +771988,209.86,90.10009 +771989,212.62,85.5996 +771990,211.29,87.041 +771991,209.92,88.5213 +771992,208.49,90.045358 +771993,211.32,85.6114 +771994,209.97,87.0303 +771995,208.57,88.488 +771996,207.11,89.989447 +771997,210.02,85.6243 +771998,208.64,87.0199 +771999,207.22,88.4543 +772000,205.74,89.932377 +772001,208.72,85.6383 +772002,207.32,87.0099 +772003,205.87,88.4202 +772004,204.36,89.87417 +772005,207.41,85.6533 +772006,205.99,87.0002 +772007,204.52,88.3857 +772008,202.99,89.81483 +772009,206.11,85.6692 +772010,204.66,86.9908 +772011,203.17,88.3509 +772012,201.62,89.7544 +772013,204.8,85.6862 +772014,203.34,86.9817 +772015,201.82,88.3157 +772016,200.25,89.69289 +772017,203.5,85.7041 +772018,202.01,86.973 +772019,200.47,88.2802 +772020,198.88,89.63032 +772021,202.19,85.723 +772022,200.68,86.9646 +772023,199.12,88.2443 +772024,197.51,89.56671 +772025,200.88,85.7428 +772026,199.35,86.9565 +772027,197.78,88.208 +772028,196.14,89.50209 +772029,199.57,85.7635 +772030,198.02,86.9486 +772031,196.43,88.1714 +772032,194.78,89.43649 +772033,198.26,85.785 +772034,196.69,86.9411 +772035,195.08,88.1346 +772036,193.41,89.36991 +772037,196.95,85.8075 +772038,195.37,86.9338 +772039,193.73,88.0973 +772040,192.05,89.3024 +772041,195.63,85.8307 +772042,194.04,86.9269 +772043,192.39,88.0598 +772044,190.69,89.23397 +772045,194.32,85.8548 +772046,192.71,86.9201 +772047,191.04,88.022 +772048,189.33,89.16464 +772049,193,85.8796 +772050,191.37,86.9136 +772051,189.7,87.9839 +772052,187.97,89.09446 +772053,191.69,85.9052 +772054,190.04,86.9074 +772055,188.35,87.9454 +772056,186.61,89.02343 +772057,190.37,85.9315 +772058,188.71,86.9014 +772059,187.01,87.9068 +772060,185.25,88.9516 +772061,189.05,85.9585 +772062,187.38,86.8957 +772063,185.67,87.8678 +772064,183.9,88.879 +772065,187.73,85.9862 +772066,186.05,86.8901 +772067,184.32,87.8286 +772068,182.55,88.8056 +772069,186.41,86.0146 +772070,184.72,86.8848 +772071,182.98,87.7891 +772072,181.19,88.7315 +772073,185.08,86.0436 +772074,183.38,86.8797 +772075,181.64,87.7495 +772076,179.84,88.6567 +772077,183.76,86.0732 +772078,182.05,86.8748 +772079,180.3,87.7095 +772080,178.49,88.5812 +772081,182.43,86.1034 +772082,180.72,86.87 +772083,178.96,87.6694 +772084,177.15,88.505 +772085,181.11,86.1341 +772086,179.38,86.8654 +772087,177.62,87.629 +772088,175.8,88.4283 +772089,179.78,86.1653 +772090,178.05,86.861 +772091,176.28,87.5885 +772092,174.45,88.351 +772093,178.45,86.1971 +772094,176.71,86.8568 +772095,174.94,87.5477 +772096,173.11,88.2731 +772097,177.12,86.2293 +772098,175.38,86.8527 +772099,173.6,87.5068 +772100,171.77,88.1947 +772101,175.79,86.2619 +772102,174.04,86.8488 +772103,172.26,87.4657 +772104,170.43,88.1158 +772105,174.45,86.2949 +772106,172.71,86.8449 +772107,170.92,87.4244 +772108,169.09,88.0364 +772109,173.12,86.3284 +772110,171.37,86.8412 +772111,169.58,87.383 +772112,167.75,87.9566 +772113,171.78,86.3622 +772114,170.03,86.8376 +772115,168.25,87.3414 +772116,166.41,87.8764 +772117,170.44,86.3963 +772118,168.7,86.8341 +772119,166.91,87.2997 +772120,165.08,87.7959 +772121,169.1,86.4307 +772122,167.36,86.8307 +772123,165.57,87.2579 +772124,163.75,87.7149 +772125,167.76,86.4653 +772126,166.02,86.8274 +772127,164.24,87.216 +772128,162.41,87.6337 +772129,166.42,86.5003 +772130,164.68,86.8242 +772131,162.9,87.174 +772132,161.08,87.5522 +772133,165.08,86.5354 +772134,163.34,86.821 +772135,161.57,87.1318 +772136,159.75,87.4705 +772137,163.73,86.5707 +772138,162,86.8178 +772139,160.23,87.0897 +772140,158.43,87.3886 +772141,162.39,86.6061 +772142,160.66,86.8147 +772143,158.9,87.0474 +772144,157.1,87.3064 +772145,161.04,86.6417 +772146,159.32,86.8117 +772147,157.57,87.0051 +772148,155.78,87.2242 +772149,159.69,86.6773 +772150,157.98,86.8086 +772151,156.24,86.9627 +772152,154.45,87.1418 +772153,158.34,86.7131 +772154,156.64,86.8056 +772155,154.9,86.9203 +772156,153.13,87.0593 +772157,156.99,86.7488 +772158,155.3,86.8026 +772159,153.57,86.8778 +772160,151.81,86.9768 +772161,155.64,86.7846 +772162,153.96,86.7995 +772163,152.24,86.8354 +772164,150.49,86.8943 +772165,154.29,86.8203 +772166,152.62,86.7965 +772167,150.91,86.7929 +772168,149.17,86.8118 +772169,152.93,86.856 +772170,151.27,86.7934 +772171,149.58,86.7505 +772172,147.85,86.7293 +772173,151.58,86.8916 +772174,149.93,86.7903 +772175,148.25,86.708 +772176,146.54,86.6469 +772177,150.22,86.927 +772178,148.59,86.7871 +772179,146.92,86.6656 +772180,145.23,86.5646 +772181,148.86,86.9624 +772182,147.24,86.7838 +772183,145.59,86.6232 +772184,143.91,86.4825 +772185,147.5,86.9975 +772186,145.9,86.7805 +772187,144.27,86.5809 +772188,142.6,86.4005 +772189,146.14,87.0325 +772190,144.55,86.7772 +772191,142.94,86.5386 +772192,141.29,86.3187 +772193,144.78,87.0672 +772194,143.21,86.7737 +772195,141.61,86.4964 +772196,139.98,86.2372 +772197,143.41,87.1016 +772198,141.86,86.7701 +772199,140.28,86.4543 +772200,138.68,86.1559 +772201,142.05,87.1358 +772202,140.52,86.7664 +772203,138.96,86.4122 +772204,137.37,86.0749 +772205,140.68,87.1697 +772206,139.17,86.7627 +772207,137.63,86.3703 +772208,136.06,85.9943 +772209,139.31,87.2032 +772210,137.82,86.7587 +772211,136.31,86.3284 +772212,134.76,85.914 +772213,137.94,87.2363 +772214,136.48,86.7547 +772215,134.98,86.2867 +772216,133.46,85.8341 +772217,136.58,87.269 +772218,135.13,86.7505 +772219,133.66,86.2451 +772220,132.16,85.7546 +772221,135.2,87.3013 +772222,133.78,86.7461 +772223,132.33,86.2036 +772224,130.86,85.6756 +772225,133.83,87.3331 +772226,132.43,86.7416 +772227,131.01,86.1623 +772228,129.56,85.5971 +772229,132.46,87.3645 +772230,131.09,86.7369 +772231,129.69,86.1211 +772232,128.26,85.519 +772233,131.08,87.3953 +772234,129.74,86.732 +772235,128.36,86.0801 +772236,126.96,85.4415 +772237,129.71,87.4256 +772238,128.39,86.7269 +772239,127.04,86.0393 +772240,125.67,85.3646 +772241,128.33,87.4554 +772242,127.04,86.7216 +772243,125.72,85.9987 +772244,124.37,85.2883 +772245,126.96,87.4845 +772246,125.69,86.7161 +772247,124.4,85.9582 +772248,123.08,85.2125 +772249,125.58,87.513 +772250,124.34,86.7104 +772251,123.08,85.918 +772252,121.79,85.1375 +772253,124.2,87.5409 +772254,122.99,86.7045 +772255,121.75,85.878 +772256,120.5,85.0631 +772257,122.82,87.5681 +772258,121.64,86.6983 +772259,120.43,85.8382 +772260,119.21,84.9894 +772261,121.44,87.5946 +772262,120.29,86.6919 +772263,119.11,85.7986 +772264,117.92,84.9164 +772265,120.05,87.6204 +772266,118.94,86.6852 +772267,117.79,85.7593 +772268,116.63,84.8442 +772269,118.67,87.6454 +772270,117.58,86.6783 +772271,116.47,85.7202 +772272,115.34,84.7728 +772273,117.29,87.6697 +772274,116.23,86.6711 +772275,115.16,85.6813 +772276,114.06,84.7021 +772277,115.9,87.6931 +772278,114.88,86.6636 +772279,113.84,85.6428 +772280,112.77,84.6324 +772281,114.51,87.7158 +772282,113.53,86.6558 +772283,112.52,85.6045 +772284,111.48,84.5634 +772285,113.13,87.7376 +772286,112.18,86.6477 +772287,111.2,85.5664 +772288,110.2,84.4953 +772289,111.74,87.7585 +772290,110.82,86.6394 +772291,109.88,85.5287 +772292,108.92,84.4282 +772293,110.35,87.7786 +772294,109.47,86.6307 +772295,108.56,85.4913 +772296,107.64,84.3619 +772297,108.96,87.7978 +772298,108.12,86.6217 +772299,107.25,85.4541 +772300,106.35,84.2966 +772301,107.57,87.816 +772302,106.76,86.6124 +772303,105.93,85.4173 +772304,105.07,84.2323 +772305,106.18,87.8333 +772306,105.41,86.6027 +772307,104.61,85.3808 +772308,103.79,84.1689 +772309,104.79,87.8496 +772310,104.06,86.5928 +772311,103.3,85.3446 +772312,102.51,84.1066 +772313,103.4,87.8649 +772314,102.7,86.5824 +772315,101.98,85.3087 +772316,101.24,84.0452 +772317,102.01,87.8792 +772318,101.35,86.5718 +772319,100.66,85.2732 +772320,99.957,83.9849 +772321,100.61,87.8925 +772322,99.994,86.5607 +772323,99.349,85.238 +772324,98.68,83.9257 +772325,99.221,87.9047 +772326,98.64,86.5493 +772327,98.034,85.2032 +772328,97.403,83.8676 +772329,97.827,87.9159 +772330,97.285,86.5376 +772331,96.718,85.1687 +772332,96.126,83.8105 +772333,96.432,87.926 +772334,95.931,86.5255 +772335,95.403,85.1346 +772336,94.85,83.7546 +772337,95.037,87.935 +772338,94.576,86.5129 +772339,94.088,85.1008 +772340,93.575,83.6998 +772341,93.642,87.9429 +772342,93.221,86.5001 +772343,92.774,85.0675 +772344,92.3,83.6462 +772345,92.246,87.9496 +772346,91.866,86.4868 +772347,91.459,85.0345 +772348,91.025,83.5937 +772349,90.85,87.9552 +772350,90.511,86.4731 +772351,90.145,85.0018 +772352,89.751,83.5424 +772353,89.453,87.9597 +772354,89.156,86.459 +772355,88.83,84.9696 +772356,88.477,83.4922 +772357,88.057,87.9629 +772358,87.801,86.4446 +772359,87.516,84.9378 +772360,87.204,83.4433 +772361,86.659,87.965 +772362,86.446,86.4297 +772363,86.202,84.9063 +772364,85.93,83.3956 +772365,85.262,87.9659 +772366,85.09,86.4144 +772367,84.888,84.8752 +772368,84.657,83.3491 +772369,83.865,87.9655 +772370,83.735,86.3987 +772371,83.575,84.8446 +772372,83.385,83.3038 +772373,82.467,87.964 +772374,82.38,86.3825 +772375,82.261,84.8143 +772376,82.112,83.2598 +772377,81.069,87.9612 +772378,81.024,86.366 +772379,80.947,84.7845 +772380,80.84,83.2171 +772381,79.671,87.9571 +772382,79.669,86.349 +772383,79.634,84.7551 +772384,79.568,83.1756 +772385,78.273,87.9518 +772386,78.314,86.3316 +772387,78.32,84.7261 +772388,78.296,83.1354 +772389,76.875,87.9453 +772390,76.958,86.3138 +772391,77.007,84.6975 +772392,77.024,83.0964 +772393,75.477,87.9374 +772394,75.603,86.2955 +772395,75.694,84.6693 +772396,75.752,83.0588 +772397,74.079,87.9283 +772398,74.248,86.2768 +772399,74.38,84.6416 +772400,74.48,83.0224 +772401,72.681,87.9179 +772402,72.893,86.2577 +772403,73.067,84.6142 +772404,73.208,82.9874 +772405,71.284,87.9062 +772406,71.537,86.2381 +772407,71.754,84.5874 +772408,71.936,82.9536 +772409,69.886,87.8932 +772410,70.182,86.2181 +772411,70.441,84.5609 +772412,70.664,82.9211 +772413,68.488,87.8788 +772414,68.827,86.1976 +772415,69.127,84.5349 +772416,69.392,82.89 +772417,67.091,87.8632 +772418,67.473,86.1767 +772419,67.814,84.5092 +772420,68.119,82.8602 +772421,65.694,87.8463 +772422,66.118,86.1554 +772423,66.501,84.4841 +772424,66.847,82.8316 +772425,64.297,87.828 +772426,64.763,86.1336 +772427,65.187,84.4593 +772428,65.574,82.8044 +772429,62.901,87.8084 +772430,63.409,86.1113 +772431,63.874,84.435 +772432,64.301,82.7785 +772433,61.505,87.7875 +772434,62.054,86.0886 +772435,62.561,84.4112 +772436,63.028,82.754 +772437,60.109,87.7652 +772438,60.7,86.0655 +772439,61.247,84.3877 +772440,61.754,82.7307 +772441,58.713,87.7417 +772442,59.346,86.0419 +772443,59.933,84.3647 +772444,60.481,82.7088 +772445,57.318,87.7168 +772446,57.992,86.0179 +772447,58.62,84.3421 +772448,59.206,82.6881 +772449,55.924,87.6906 +772450,56.638,85.9934 +772451,57.306,84.32 +772452,57.932,82.6688 +772453,54.53,87.663 +772454,55.285,85.9685 +772455,55.992,84.2983 +772456,56.657,82.6508 +772457,53.136,87.6342 +772458,53.932,85.9431 +772459,54.678,84.277 +772460,55.381,82.634 +772461,51.744,87.604 +772462,52.578,85.9173 +772463,53.364,84.2561 +772464,54.106,82.6186 +772465,50.351,87.5725 +772466,51.226,85.891 +772467,52.049,84.2357 +772468,52.829,82.6045 +772469,48.96,87.5397 +772470,49.873,85.8644 +772471,50.735,84.2157 +772472,51.552,82.5916 +772473,47.569,87.5056 +772474,48.52,85.8372 +772475,49.42,84.1961 +772476,50.275,82.58 +772477,46.178,87.4702 +772478,47.168,85.8097 +772479,48.105,84.177 +772480,48.997,82.5697 +772481,44.789,87.4335 +772482,45.816,85.7817 +772483,46.79,84.1582 +772484,47.718,82.5607 +772485,43.4,87.3955 +772486,44.465,85.7533 +772487,45.475,84.1399 +772488,46.439,82.5529 +772489,42.012,87.3562 +772490,43.114,85.7244 +772491,44.16,84.122 +772492,45.159,82.5463 +772493,40.625,87.3157 +772494,41.762,85.6951 +772495,42.844,84.1045 +772496,43.878,82.5409 +772497,39.238,87.2739 +772498,40.412,85.6655 +772499,41.528,84.0874 +772500,42.596,82.5368 +772501,37.853,87.2308 +772502,39.061,85.6354 +772503,40.212,84.0707 +772504,41.314,82.5339 +772505,36.468,87.1865 +772506,37.711,85.6048 +772507,38.896,84.0544 +772508,40.031,82.5322 +772509,35.085,87.141 +772510,36.361,85.5739 +772511,37.579,84.0385 +772512,38.747,82.5317 +772513,33.702,87.0942 +772514,35.012,85.5426 +772515,36.263,84.023 +772516,37.463,82.5323 +772517,32.32,87.0463 +772518,33.663,85.5108 +772519,34.946,84.0079 +772520,36.177,82.5341 +772521,30.94,86.9972 +772522,32.314,85.4787 +772523,33.628,83.9931 +772524,34.891,82.5371 +772525,29.56,86.9468 +772526,30.966,85.4462 +772527,32.311,83.9788 +772528,33.603,82.5411 +772529,28.181,86.8953 +772530,29.618,85.4133 +772531,30.993,83.9648 +772532,32.315,82.5463 +772533,26.804,86.8427 +772534,28.27,85.38 +772535,29.674,83.9511 +772536,31.026,82.5526 +772537,25.428,86.7889 +772538,26.923,85.3463 +772539,28.356,83.9378 +772540,29.736,82.5599 +772541,24.052,86.7341 +772542,25.576,85.3123 +772543,27.037,83.9249 +772544,28.444,82.5684 +772545,22.678,86.6781 +772546,24.23,85.2779 +772547,25.718,83.9124 +772548,27.152,82.5778 +772549,21.305,86.621 +772550,22.884,85.2432 +772551,24.398,83.9001 +772552,25.859,82.5883 +772553,19.934,86.5629 +772554,21.538,85.2081 +772555,23.079,83.8883 +772556,24.565,82.5998 +772557,18.563,86.5037 +772558,20.193,85.1726 +772559,21.759,83.8767 +772560,23.269,82.6123 +772561,17.194,86.4435 +772562,18.848,85.1368 +772563,20.438,83.8655 +772564,21.973,82.6257 +772565,15.826,86.3823 +772566,17.504,85.1007 +772567,19.117,83.8546 +772568,20.675,82.6401 +772569,14.46,86.3201 +772570,16.16,85.0643 +772571,17.796,83.844 +772572,19.376,82.6554 +772573,13.094,86.2569 +772574,14.817,85.0275 +772575,16.474,83.8337 +772576,18.076,82.6716 +772577,11.73,86.1928 +772578,13.474,84.9904 +772579,15.152,83.8237 +772580,16.775,82.6887 +772581,10.368,86.1278 +772582,12.131,84.953 +772583,13.83,83.8139 +772584,15.473,82.7067 +772585,9.0063,86.0618 +772586,10.789,84.9154 +772587,12.507,83.8045 +772588,14.169,82.7255 +772589,7.6464,85.995 +772590,9.4479,84.8774 +772591,11.184,83.7954 +772592,12.864,82.7451 +772593,6.2879,85.9273 +772594,8.1069,84.8392 +772595,9.8606,83.7865 +772596,11.558,82.7655 +772597,4.9307,85.8588 +772598,6.7663,84.8007 +772599,8.5367,83.7779 +772600,10.251,82.7867 +772601,3.575,85.7895 +772602,5.4262,84.7619 +772603,7.2124,83.7695 +772604,8.9425,82.8086 +772605,2.2208,85.7194 +772606,4.0866,84.7228 +772607,5.8876,83.7614 +772608,7.6327,82.8313 +772609,0.86792,85.6486 +772610,2.7475,84.6836 +772611,4.5625,83.7535 +772612,6.3215,82.8546 +772613,359.52,85.577 +772614,1.4089,84.644 +772615,3.2369,83.7458 +772616,5.0091,82.8787 +772617,358.17,85.5048 +772618,0.070862,84.6043 +772619,1.9109,83.7383 +772620,3.6953,82.9033 +772621,356.82,85.4318 +772622,358.73,84.5643 +772623,0.5845,83.7311 +772624,2.3802,82.9286 +772625,355.47,85.3582 +772626,357.4,84.5241 +772627,359.26,83.7241 +772628,1.0637,82.9545 +772629,354.13,85.284 +772630,356.06,84.4837 +772631,357.93,83.7172 +772632,359.75,82.981 +772633,352.78,85.2092 +772634,354.72,84.4431 +772635,356.6,83.7106 +772636,358.43,83.0079 +772637,351.44,85.1338 +772638,353.39,84.4024 +772639,355.27,83.7041 +772640,357.11,83.0355 +772641,350.1,85.0578 +772642,352.05,84.3614 +772643,353.95,83.6978 +772644,355.78,83.0635 +772645,348.76,84.9814 +772646,350.72,84.3203 +772647,352.62,83.6916 +772648,354.46,83.0919 +772649,347.42,84.9045 +772650,349.38,84.279 +772651,351.29,83.6856 +772652,353.14,83.1208 +772653,346.08,84.8271 +772654,348.05,84.2376 +772655,349.96,83.6797 +772656,351.81,83.1501 +772657,344.75,84.7493 +772658,346.72,84.196 +772659,348.63,83.674 +772660,350.48,83.1798 +772661,343.42,84.6711 +772662,345.39,84.1544 +772663,347.3,83.6683 +772664,349.15,83.2099 +772665,342.08,84.5925 +772666,344.05,84.1125 +772667,345.97,83.6628 +772668,347.82,83.2402 +772669,340.75,84.5136 +772670,342.72,84.0706 +772671,344.63,83.6574 +772672,346.49,83.2709 +772673,339.43,84.4344 +772674,341.39,84.0286 +772675,343.3,83.6521 +772676,345.16,83.3018 +772677,338.1,84.3549 +772678,340.06,83.9865 +772679,341.97,83.6469 +772680,343.82,83.333 +772681,336.77,84.2752 +772682,338.73,83.9443 +772683,340.64,83.6417 +772684,342.49,83.3644 +772685,335.45,84.1953 +772686,337.4,83.9021 +772687,339.3,83.6366 +772688,341.15,83.3959 +772689,334.13,84.1151 +772690,336.07,83.8597 +772691,337.97,83.6315 +772692,339.81,83.4277 +772693,332.8,84.0348 +772694,334.75,83.8174 +772695,336.63,83.6265 +772696,338.47,83.4595 +772697,331.48,83.9544 +772698,333.42,83.775 +772699,335.3,83.6216 +772700,337.13,83.4915 +772701,330.17,83.8739 +772702,332.09,83.7325 +772703,333.96,83.6166 +772704,335.79,83.5235 +772705,328.85,83.7934 +772706,330.76,83.6901 +772707,332.63,83.6117 +772708,334.44,83.5555 +772709,327.53,83.7128 +772710,329.44,83.6476 +772711,331.29,83.6067 +772712,333.1,83.5876 +772713,326.22,83.6322 +772714,328.11,83.6051 +772715,329.95,83.6018 +772716,331.75,83.6197 +772717,324.91,83.5517 +772718,326.79,83.5627 +772719,328.62,83.5969 +772720,330.4,83.6517 +772721,323.6,83.4712 +772722,325.46,83.5202 +772723,327.28,83.5919 +772724,329.05,83.6836 +772725,322.29,83.3908 +772726,324.14,83.4778 +772727,325.94,83.5869 +772728,327.7,83.7154 +772729,320.98,83.3105 +772730,322.82,83.4355 +772731,324.6,83.5818 +772732,326.35,83.7472 +772733,319.67,83.2304 +772734,321.49,83.3932 +772735,323.27,83.5767 +772736,324.99,83.7787 +772737,318.37,83.1504 +772738,320.17,83.3509 +772739,321.93,83.5716 +772740,323.64,83.8101 +772741,317.07,83.0707 +772742,318.85,83.3087 +772743,320.59,83.5663 +772744,322.28,83.8412 +772745,315.76,82.9912 +772746,317.53,83.2666 +772747,319.25,83.561 +772748,320.92,83.8721 +772749,314.46,82.912 +772750,316.21,83.2246 +772751,317.91,83.5556 +772752,319.56,83.9027 +772753,313.16,82.8331 +772754,314.89,83.1827 +772755,316.57,83.5501 +772756,318.2,83.9331 +772757,311.87,82.7546 +772758,313.57,83.1409 +772759,315.22,83.5445 +772760,316.84,83.9631 +772761,310.57,82.6764 +772762,312.25,83.0992 +772763,313.88,83.5387 +772764,315.48,83.9928 +772765,309.27,82.5986 +772766,310.93,83.0577 +772767,312.54,83.5329 +772768,314.11,84.022 +772769,307.98,82.5212 +772770,309.61,83.0162 +772771,311.2,83.5269 +772772,312.75,84.0509 +772773,306.69,82.4443 +772774,308.29,82.975 +772775,309.85,83.5207 +772776,311.38,84.0794 +772777,305.39,82.3678 +772778,306.97,82.9339 +772779,308.51,83.5144 +772780,310.01,84.1073 +772781,304.1,82.2919 +772782,305.65,82.8929 +772783,307.17,83.5079 +772784,308.65,84.1348 +772785,302.81,82.2165 +772786,304.34,82.8521 +772787,305.82,83.5013 +772788,307.27,84.1618 +772789,301.53,82.1416 +772790,303.02,82.8116 +772791,304.48,83.4945 +772792,305.9,84.1883 +772793,300.24,82.0674 +772794,301.7,82.7712 +772795,303.13,83.4874 +772796,304.53,84.2142 +772797,298.95,81.9937 +772798,300.39,82.731 +772799,301.79,83.4802 +772800,303.16,84.2395 +772801,297.67,81.9207 +772802,299.07,82.691 +772803,300.44,83.4728 +772804,301.78,84.2642 +772805,296.38,81.8484 +772806,297.76,82.6512 +772807,299.1,83.4652 +772808,300.41,84.2882 +772809,295.1,81.7768 +772810,296.44,82.6117 +772811,297.75,83.4573 +772812,299.03,84.3116 +772813,293.82,81.7059 +772814,295.13,82.5724 +772815,296.41,83.4492 +772816,297.65,84.3343 +772817,292.54,81.6357 +772818,293.82,82.5334 +772819,295.06,83.4409 +772820,296.27,84.3563 +772821,291.26,81.5663 +772822,292.5,82.4946 +772823,293.71,83.4323 +772824,294.89,84.3776 +772825,289.98,81.4977 +772826,291.19,82.456 +772827,292.37,83.4234 +772828,293.51,84.3981 +772829,288.71,81.43 +772830,289.88,82.4178 +772831,291.02,83.4143 +772832,292.13,84.4179 +772833,287.43,81.363 +772834,288.57,82.3798 +772835,289.67,83.405 +772836,290.75,84.4368 +772837,286.15,81.297 +772838,287.25,82.3421 +772839,288.32,83.3953 +772840,289.36,84.455 +772841,284.88,81.2318 +772842,285.94,82.3046 +772843,286.97,83.3854 +772844,287.98,84.4722 +772845,283.6,81.1675 +772846,284.63,82.2675 +772847,285.63,83.3752 +772848,286.59,84.4887 +772849,282.33,81.1042 +772850,283.32,82.2307 +772851,284.28,83.3646 +772852,285.21,84.5042 +772853,281.06,81.0418 +772854,282.01,82.1942 +772855,282.93,83.3538 +772856,283.82,84.5189 +772857,279.79,80.9804 +772858,280.7,82.158 +772859,281.58,83.3427 +772860,282.43,84.5326 +772861,278.52,80.9199 +772862,279.39,82.1222 +772863,280.23,83.3312 +772864,281.04,84.5454 +772865,277.25,80.8605 +772866,278.08,82.0866 +772867,278.88,83.3194 +772868,279.65,84.5572 +772869,275.98,80.8021 +772870,276.77,82.0514 +772871,277.53,83.3073 +772872,278.26,84.5681 +772873,274.71,80.7447 +772874,275.46,82.0166 +772875,276.18,83.2949 +772876,276.87,84.578 +772877,273.44,80.6885 +772878,274.15,81.9821 +772879,274.83,83.2821 +772880,275.48,84.5868 +772881,272.17,80.6332 +772882,272.84,81.9479 +772883,273.48,83.269 +772884,274.09,84.5947 +772885,270.9,80.5791 +772886,271.53,81.9142 +772887,272.13,83.2555 +772888,272.7,84.6014 +772889,269.64,80.5261 +772890,270.22,81.8807 +772891,270.78,83.2416 +772892,271.31,84.6072 +772893,268.37,80.4742 +772894,268.91,81.8477 +772895,269.43,83.2274 +772896,269.91,84.6118 +772897,267.11,80.4235 +772898,267.61,81.815 +772899,268.08,83.2128 +772900,268.52,84.6154 +772901,265.84,80.3739 +772902,266.3,81.7827 +772903,266.73,83.1979 +772904,267.13,84.6179 +772905,264.58,80.3255 +772906,264.99,81.7508 +772907,265.38,83.1826 +772908,265.73,84.6193 +772909,263.31,80.2782 +772910,263.68,81.7193 +772911,264.02,83.1669 +772912,264.34,84.6195 +772913,262.05,80.2321 +772914,262.37,81.6882 +772915,262.67,83.1508 +772916,262.94,84.6186 +772917,260.78,80.1873 +772918,261.07,81.6575 +772919,261.32,83.1343 +772920,261.55,84.6166 +772921,259.52,80.1436 +772922,259.76,81.6271 +772923,259.97,83.1174 +772924,260.15,84.6134 +772925,258.26,80.1012 +772926,258.45,81.5972 +772927,258.62,83.1002 +772928,258.75,84.609 +772929,256.99,80.06 +772930,257.15,81.5677 +772931,257.27,83.0825 +772932,257.36,84.6034 +772933,255.73,80.02 +772934,255.84,81.5386 +772935,255.92,83.0645 +772936,255.96,84.5967 +772937,254.47,79.981 +772938,254.53,81.5099 +772939,254.56,83.046 +772940,254.57,84.5887 +772941,253.2,79.944 +772942,253.22,81.4816 +772943,253.21,83.0271 +772944,253.17,84.5796 +772945,251.94,79.908 +772946,251.92,81.4537 +772947,251.86,83.0079 +772948,251.77,84.5692 +772949,250.68,79.873 +772950,250.61,81.4263 +772951,250.51,82.9882 +772952,250.38,84.5576 +772953,249.41,79.839 +772954,249.3,81.3992 +772955,249.16,82.9681 +772956,248.98,84.5448 +772957,248.15,79.807 +772958,248,81.3726 +772959,247.81,82.9476 +772960,247.58,84.5308 +772961,246.89,79.775 +772962,246.69,81.3464 +772963,246.46,82.9266 +772964,246.19,84.5155 +772965,245.63,79.746 +772966,245.38,81.3207 +772967,245.11,82.9053 +772968,244.79,84.499 +772969,244.36,79.717 +772970,244.08,81.2953 +772971,243.75,82.8835 +772972,243.4,84.4812 +772973,243.1,79.69 +772974,242.77,81.2704 +772975,242.4,82.8614 +772976,242,84.4622 +772977,241.83,79.664 +772978,241.46,81.2459 +772979,241.05,82.8388 +772980,240.6,84.442 +772981,240.57,79.639 +772982,240.15,81.2219 +772983,239.7,82.8158 +772984,239.21,84.4205 +772985,239.31,79.616 +772986,238.85,81.1983 +772987,238.35,82.7923 +772988,237.81,84.3977 +772989,238.04,79.593 +772990,237.54,81.1751 +772991,237,82.7685 +772992,236.42,84.3737 +772993,236.78,79.573 +772994,236.23,81.1523 +772995,235.65,82.7442 +772996,235.03,84.3484 +772997,235.51,79.553 +772998,234.93,81.1299 +772999,234.3,82.7195 +773000,233.63,84.3219 +773001,234.25,79.535 +773002,233.62,81.108 +773003,232.95,82.6944 +773004,232.24,84.2941 +773005,232.98,79.518 +773006,232.31,81.0865 +773007,231.6,82.6689 +773008,230.84,84.2651 +773009,231.71,79.502 +773010,231,81.0654 +773011,230.25,82.643 +773012,229.45,84.2349 +773013,230.45,79.487 +773014,229.69,81.0447 +773015,228.9,82.6166 +773016,228.06,84.2034 +773017,229.18,79.474 +773018,228.39,81.0245 +773019,227.55,82.5899 +773020,226.67,84.1706 +773021,227.91,79.462 +773022,227.08,81.0046 +773023,226.2,82.5627 +773024,225.28,84.1366 +773025,226.64,79.451 +773026,225.77,80.9852 +773027,224.85,82.5351 +773028,223.89,84.1014 +773029,225.37,79.441 +773030,224.46,80.9662 +773031,223.51,82.5071 +773032,222.5,84.065 +773033,224.1,79.433 +773034,223.15,80.9476 +773035,222.16,82.4788 +773036,221.11,84.0274 +773037,222.83,79.426 +773038,221.84,80.9294 +773039,220.81,82.45 +773040,219.72,83.9885 +773041,221.56,79.42 +773042,220.53,80.9116 +773043,219.46,82.4208 +773044,218.34,83.9485 +773045,220.29,79.415 +773046,219.23,80.8942 +773047,218.11,82.3912 +773048,216.95,83.9073 +773049,219.02,79.412 +773050,217.92,80.8772 +773051,216.77,82.3613 +773052,215.56,83.8648 +773053,217.74,79.409 +773054,216.61,80.8606 +773055,215.42,82.3309 +773056,214.18,83.8212 +773057,216.47,79.408 +773058,215.3,80.8444 +773059,214.07,82.3002 +773060,212.8,83.7765 +773061,215.19,79.408 +773062,213.98,80.8286 +773063,212.73,82.269 +773064,211.41,83.7306 +773065,213.92,79.409 +773066,212.67,80.8132 +773067,211.38,82.2376 +773068,210.03,83.6836 +773069,212.64,79.411 +773070,211.36,80.7981 +773071,210.04,82.2057 +773072,208.65,83.6354 +773073,211.36,79.414 +773074,210.05,80.7834 +773075,208.69,82.1735 +773076,207.27,83.5861 +773077,210.08,79.418 +773078,208.74,80.769 +773079,207.35,82.1409 +773080,205.89,83.5357 +773081,208.8,79.424 +773082,207.43,80.7551 +773083,206,82.1079 +773084,204.52,83.4843 +773085,207.52,79.43 +773086,206.12,80.7414 +773087,204.66,82.0746 +773088,203.14,83.4317 +773089,206.24,79.438 +773090,204.8,80.7282 +773091,203.32,82.041 +773092,201.76,83.3781 +773093,204.95,79.446 +773094,203.49,80.7152 +773095,201.97,82.007 +773096,200.39,83.3235 +773097,203.67,79.455 +773098,202.18,80.7026 +773099,200.63,81.9727 +773100,199.02,83.2679 +773101,202.38,79.466 +773102,200.86,80.6904 +773103,199.29,81.9381 +773104,197.65,83.2112 +773105,201.1,79.477 +773106,199.55,80.6785 +773107,197.95,81.9031 +773108,196.27,83.1535 +773109,199.81,79.49 +773110,198.24,80.6669 +773111,196.6,81.8678 +773112,194.91,83.0949 +773113,198.52,79.503 +773114,196.92,80.6556 +773115,195.26,81.8322 +773116,193.54,83.0353 +773117,197.23,79.517 +773118,195.61,80.6446 +773119,193.92,81.7963 +773120,192.17,82.9748 +773121,195.94,79.532 +773122,194.29,80.6339 +773123,192.58,81.7601 +773124,190.81,82.9134 +773125,194.65,79.548 +773126,192.98,80.6235 +773127,191.24,81.7236 +773128,189.44,82.8511 +773129,193.35,79.565 +773130,191.66,80.6134 +773131,189.9,81.6869 +773132,188.08,82.7879 +773133,192.06,79.582 +773134,190.34,80.6035 +773135,188.57,81.6498 +773136,186.72,82.7239 +773137,190.76,79.601 +773138,189.03,80.594 +773139,187.23,81.6125 +773140,185.36,82.659 +773141,189.47,79.62 +773142,187.71,80.5847 +773143,185.89,81.5749 +773144,184,82.5933 +773145,188.17,79.64 +773146,186.39,80.5756 +773147,184.55,81.5371 +773148,182.64,82.5269 +773149,186.87,79.66 +773150,185.07,80.5668 +773151,183.22,81.499 +773152,181.29,82.4597 +773153,185.56,79.682 +773154,183.75,80.5583 +773155,181.88,81.4607 +773156,179.93,82.3917 +773157,184.26,79.703 +773158,182.43,80.55 +773159,180.54,81.4222 +773160,178.58,82.323 +773161,182.96,79.726 +773162,181.11,80.5419 +773163,179.21,81.3834 +773164,177.23,82.2537 +773165,181.65,79.749 +773166,179.79,80.534 +773167,177.87,81.3445 +773168,175.88,82.1836 +773169,180.35,79.773 +773170,178.47,80.5263 +773171,176.54,81.3053 +773172,174.53,82.1129 +773173,179.04,79.798 +773174,177.15,80.5189 +773175,175.21,81.2659 +773176,173.19,82.0417 +773177,177.73,79.823 +773178,175.83,80.5116 +773179,173.87,81.2264 +773180,171.84,81.9698 +773181,176.42,79.848 +773182,174.51,80.5045 +773183,172.54,81.1866 +773184,170.5,81.8973 +773185,175.1,79.874 +773186,173.19,80.4976 +773187,171.21,81.1467 +773188,169.16,81.8244 +773189,173.79,79.9 +773190,171.86,80.4908 +773191,169.88,81.1066 +773192,167.82,81.7509 +773193,172.47,79.927 +773194,170.54,80.4842 +773195,168.55,81.0664 +773196,166.48,81.6769 +773197,171.16,79.955 +773198,169.22,80.4778 +773199,167.22,81.026 +773200,165.14,81.6025 +773201,169.84,79.982 +773202,167.89,80.4714 +773203,165.89,80.9855 +773204,163.8,81.5276 +773205,168.52,80.0103 +773206,166.57,80.4652 +773207,164.56,80.9449 +773208,162.47,81.4523 +773209,167.2,80.0387 +773210,165.24,80.4592 +773211,163.23,80.9042 +773212,161.14,81.3767 +773213,165.87,80.0674 +773214,163.92,80.4532 +773215,161.9,80.8633 +773216,159.81,81.3007 +773217,164.55,80.0964 +773218,162.59,80.4474 +773219,160.57,80.8224 +773220,158.48,81.2244 +773221,163.22,80.1257 +773222,161.27,80.4416 +773223,159.24,80.7814 +773224,157.15,81.1478 +773225,161.9,80.1551 +773226,159.94,80.4359 +773227,157.92,80.7402 +773228,155.83,81.071 +773229,160.57,80.1848 +773230,158.61,80.4303 +773231,156.59,80.6991 +773232,154.5,80.9939 +773233,159.24,80.2146 +773234,157.28,80.4248 +773235,155.27,80.6578 +773236,153.18,80.9167 +773237,157.91,80.2446 +773238,155.95,80.4193 +773239,153.94,80.6165 +773240,151.86,80.8392 +773241,156.57,80.2747 +773242,154.63,80.4138 +773243,152.62,80.5752 +773244,150.54,80.7616 +773245,155.24,80.3048 +773246,153.3,80.4084 +773247,151.29,80.5339 +773248,149.22,80.6839 +773249,153.9,80.3351 +773250,151.97,80.4031 +773251,149.97,80.4925 +773252,147.9,80.6061 +773253,152.56,80.3653 +773254,150.64,80.3977 +773255,148.65,80.4511 +773256,146.59,80.5283 +773257,151.22,80.3956 +773258,149.3,80.3923 +773259,147.32,80.4097 +773260,145.28,80.4505 +773261,149.88,80.4258 +773262,147.97,80.387 +773263,146,80.3683 +773264,143.97,80.3726 +773265,148.54,80.456 +773266,146.64,80.3816 +773267,144.68,80.327 +773268,142.66,80.2948 +773269,147.2,80.4861 +773270,145.31,80.3762 +773271,143.36,80.2856 +773272,141.35,80.217 +773273,145.85,80.5161 +773274,143.98,80.3708 +773275,142.04,80.2443 +773276,140.04,80.1394 +773277,144.51,80.546 +773278,142.64,80.3653 +773279,140.72,80.2031 +773280,138.74,80.0618 +773281,143.16,80.5757 +773282,141.31,80.3598 +773283,139.4,80.1619 +773284,137.43,79.984 +773285,141.81,80.6052 +773286,139.98,80.3543 +773287,138.08,80.1208 +773288,136.13,79.907 +773289,140.46,80.6344 +773290,138.64,80.3486 +773291,136.77,80.0797 +773292,134.83,79.83 +773293,139.11,80.6635 +773294,137.31,80.3429 +773295,135.45,80.0388 +773296,133.53,79.754 +773297,137.75,80.6922 +773298,135.97,80.3371 +773299,134.13,79.998 +773300,132.23,79.677 +773301,136.4,80.7207 +773302,134.63,80.3312 +773303,132.82,79.957 +773304,130.94,79.601 +773305,135.04,80.7488 +773306,133.3,80.3252 +773307,131.5,79.916 +773308,129.64,79.525 +773309,133.69,80.7766 +773310,131.96,80.3191 +773311,130.18,79.876 +773312,128.35,79.45 +773313,132.33,80.804 +773314,130.62,80.3129 +773315,128.87,79.836 +773316,127.06,79.374 +773317,130.97,80.831 +773318,129.29,80.3065 +773319,127.55,79.795 +773320,125.77,79.3 +773321,129.6,80.8576 +773322,127.95,80.3 +773323,126.24,79.755 +773324,124.48,79.225 +773325,128.24,80.8837 +773326,126.61,80.2934 +773327,124.93,79.715 +773328,123.19,79.152 +773329,126.88,80.9093 +773330,125.27,80.2866 +773331,123.61,79.675 +773332,121.9,79.078 +773333,125.51,80.9345 +773334,123.93,80.2796 +773335,122.3,79.636 +773336,120.62,79.006 +773337,124.15,80.9591 +773338,122.59,80.2725 +773339,120.99,79.596 +773340,119.34,78.933 +773341,122.78,80.9831 +773342,121.25,80.2651 +773343,119.68,79.557 +773344,118.05,78.862 +773345,121.41,81.0066 +773346,119.91,80.2576 +773347,118.37,79.518 +773348,116.77,78.791 +773349,120.04,81.0294 +773350,118.57,80.2499 +773351,117.06,79.479 +773352,115.49,78.72 +773353,118.67,81.0517 +773354,117.23,80.242 +773355,115.74,79.441 +773356,114.21,78.651 +773357,117.3,81.0732 +773358,115.89,80.2338 +773359,114.43,79.403 +773360,112.94,78.581 +773361,115.92,81.0941 +773362,114.55,80.2255 +773363,113.13,79.364 +773364,111.66,78.513 +773365,114.55,81.1144 +773366,113.2,80.2169 +773367,111.82,79.327 +773368,110.38,78.445 +773369,113.17,81.1339 +773370,111.86,80.208 +773371,110.51,79.289 +773372,109.11,78.379 +773373,111.79,81.1526 +773374,110.52,80.199 +773375,109.2,79.252 +773376,107.84,78.312 +773377,110.42,81.1706 +773378,109.17,80.1896 +773379,107.89,79.214 +773380,106.57,78.247 +773381,109.04,81.1878 +773382,107.83,80.18 +773383,106.58,79.178 +773384,105.29,78.183 +773385,107.66,81.2042 +773386,106.49,80.1702 +773387,105.28,79.141 +773388,104.02,78.119 +773389,106.28,81.2198 +773390,105.14,80.1601 +773391,103.97,79.105 +773392,102.76,78.056 +773393,104.9,81.2346 +773394,103.8,80.1496 +773395,102.66,79.069 +773396,101.49,77.994 +773397,103.51,81.2485 +773398,102.45,80.1389 +773399,101.36,79.033 +773400,100.22,77.933 +773401,102.13,81.2615 +773402,101.11,80.128 +773403,100.05,78.998 +773404,98.954,77.873 +773405,100.74,81.2736 +773406,99.763,80.1167 +773407,98.745,78.963 +773408,97.688,77.814 +773409,99.359,81.2848 +773410,98.417,80.1051 +773411,97.439,78.928 +773412,96.424,77.756 +773413,97.973,81.2951 +773414,97.072,80.0932 +773415,96.134,78.894 +773416,95.16,77.699 +773417,96.587,81.3044 +773418,95.726,80.0809 +773419,94.829,78.86 +773420,93.897,77.643 +773421,95.199,81.3127 +773422,94.379,80.0684 +773423,93.525,78.826 +773424,92.635,77.587 +773425,93.811,81.3201 +773426,93.033,80.0555 +773427,92.221,78.793 +773428,91.373,77.533 +773429,92.422,81.3265 +773430,91.686,80.0423 +773431,90.917,78.76 +773432,90.112,77.48 +773433,91.033,81.3319 +773434,90.34,80.0288 +773435,89.613,78.727 +773436,88.852,77.428 +773437,89.643,81.3362 +773438,88.993,80.0149 +773439,88.309,78.695 +773440,87.592,77.377 +773441,88.252,81.3395 +773442,87.645,80.0006 +773443,87.006,78.663 +773444,86.333,77.328 +773445,86.861,81.3417 +773446,86.298,79.986 +773447,85.703,78.631 +773448,85.074,77.279 +773449,85.469,81.3429 +773450,84.951,79.971 +773451,84.4,78.6 +773452,83.816,77.231 +773453,84.077,81.343 +773454,83.603,79.956 +773455,83.097,78.569 +773456,82.558,77.185 +773457,82.684,81.342 +773458,82.255,79.94 +773459,81.794,78.539 +773460,81.301,77.14 +773461,81.291,81.3399 +773462,80.908,79.924 +773463,80.492,78.509 +773464,80.044,77.096 +773465,79.898,81.3367 +773466,79.56,79.908 +773467,79.19,78.479 +773468,78.787,77.053 +773469,78.504,81.3324 +773470,78.212,79.891 +773471,77.887,78.45 +773472,77.531,77.011 +773473,77.11,81.3269 +773474,76.864,79.874 +773475,76.585,78.421 +773476,76.275,76.97 +773477,75.716,81.3203 +773478,75.515,79.856 +773479,75.283,78.393 +773480,75.02,76.931 +773481,74.321,81.3125 +773482,74.167,79.838 +773483,73.982,78.365 +773484,73.764,76.893 +773485,72.926,81.3036 +773486,72.819,79.82 +773487,72.68,78.337 +773488,72.509,76.856 +773489,71.531,81.2936 +773490,71.471,79.801 +773491,71.378,78.31 +773492,71.254,76.82 +773493,70.136,81.2823 +773494,70.123,79.782 +773495,70.077,78.283 +773496,69.999,76.786 +773497,68.741,81.2699 +773498,68.774,79.763 +773499,68.775,78.256 +773500,68.744,76.753 +773501,67.346,81.2563 +773502,67.426,79.743 +773503,67.473,78.23 +773504,67.489,76.721 +773505,65.951,81.2415 +773506,66.078,79.722 +773507,66.172,78.205 +773508,66.234,76.69 +773509,64.555,81.2255 +773510,64.73,79.702 +773511,64.87,78.18 +773512,64.979,76.66 +773513,63.16,81.2084 +773514,63.381,79.681 +773515,63.569,78.155 +773516,63.724,76.632 +773517,61.765,81.19 +773518,62.033,79.659 +773519,62.267,78.13 +773520,62.469,76.605 +773521,60.37,81.1704 +773522,60.685,79.637 +773523,60.966,78.107 +773524,61.213,76.579 +773525,58.975,81.1496 +773526,59.337,79.615 +773527,59.664,78.083 +773528,59.958,76.555 +773529,57.58,81.1277 +773530,57.989,79.592 +773531,58.363,78.06 +773532,58.702,76.531 +773533,56.186,81.1045 +773534,56.642,79.569 +773535,57.061,78.037 +773536,57.446,76.509 +773537,54.791,81.0801 +773538,55.294,79.546 +773539,55.759,78.015 +773540,56.19,76.489 +773541,53.397,81.0545 +773542,53.946,79.522 +773543,54.458,77.993 +773544,54.933,76.469 +773545,52.004,81.0278 +773546,52.599,79.498 +773547,53.156,77.972 +773548,53.677,76.451 +773549,50.611,80.9998 +773550,51.252,79.473 +773551,51.854,77.951 +773552,52.419,76.434 +773553,49.218,80.9706 +773554,49.905,79.448 +773555,50.552,77.93 +773556,51.162,76.418 +773557,47.825,80.9402 +773558,48.558,79.422 +773559,49.249,77.91 +773560,49.903,76.404 +773561,46.434,80.9087 +773562,47.211,79.396 +773563,47.947,77.89 +773564,48.645,76.39 +773565,45.042,80.8759 +773566,45.864,79.37 +773567,46.644,77.871 +773568,47.386,76.378 +773569,43.651,80.842 +773570,44.518,79.344 +773571,45.342,77.852 +773572,46.126,76.367 +773573,42.261,80.8069 +773574,43.172,79.316 +773575,44.039,77.833 +773576,44.866,76.358 +773577,40.871,80.7707 +773578,41.826,79.289 +773579,42.736,77.815 +773580,43.605,76.349 +773581,39.482,80.7332 +773582,40.48,79.261 +773583,41.433,77.797 +773584,42.343,76.342 +773585,38.094,80.6947 +773586,39.135,79.233 +773587,40.129,77.78 +773588,41.081,76.336 +773589,36.706,80.6549 +773590,37.79,79.204 +773591,38.825,77.763 +773592,39.818,76.331 +773593,35.32,80.6141 +773594,36.445,79.175 +773595,37.522,77.746 +773596,38.554,76.327 +773597,33.934,80.5721 +773598,35.101,79.146 +773599,36.217,77.73 +773600,37.29,76.325 +773601,32.548,80.529 +773602,33.756,79.116 +773603,34.913,77.715 +773604,36.025,76.323 +773605,31.164,80.4848 +773606,32.412,79.086 +773607,33.608,77.699 +773608,34.759,76.323 +773609,29.781,80.4395 +773610,31.069,79.056 +773611,32.303,77.684 +773612,33.492,76.324 +773613,28.398,80.3931 +773614,29.725,79.025 +773615,30.998,77.669 +773616,32.224,76.325 +773617,27.016,80.3456 +773618,28.382,78.994 +773619,29.693,77.655 +773620,30.955,76.328 +773621,25.636,80.2971 +773622,27.04,78.963 +773623,28.387,77.641 +773624,29.685,76.332 +773625,24.256,80.2475 +773626,25.697,78.931 +773627,27.081,77.627 +773628,28.415,76.337 +773629,22.878,80.1969 +773630,24.356,78.899 +773631,25.775,77.614 +773632,27.143,76.343 +773633,21.5,80.1453 +773634,23.014,78.866 +773635,24.468,77.601 +773636,25.87,76.351 +773637,20.124,80.0927 +773638,21.673,78.833 +773639,23.161,77.589 +773640,24.597,76.359 +773641,18.749,80.0391 +773642,20.332,78.8 +773643,21.854,77.577 +773644,23.322,76.368 +773645,17.374,79.985 +773646,18.992,78.767 +773647,20.546,77.565 +773648,22.046,76.378 +773649,16.002,79.929 +773650,17.652,78.733 +773651,19.238,77.553 +773652,20.769,76.389 +773653,14.63,79.872 +773654,16.312,78.699 +773655,17.929,77.542 +773656,19.49,76.401 +773657,13.26,79.815 +773658,14.973,78.664 +773659,16.62,77.531 +773660,18.211,76.414 +773661,11.89,79.757 +773662,13.634,78.63 +773663,15.311,77.52 +773664,16.93,76.427 +773665,10.522,79.698 +773666,12.296,78.595 +773667,14.002,77.51 +773668,15.649,76.442 +773669,9.156,79.638 +773670,10.958,78.559 +773671,12.692,77.5 +773672,14.366,76.457 +773673,7.7908,79.577 +773674,9.6211,78.524 +773675,11.381,77.49 +773676,13.081,76.474 +773677,6.427,79.515 +773678,8.2843,78.488 +773679,10.07,77.481 +773680,11.796,76.491 +773681,5.0645,79.452 +773682,6.9479,78.452 +773683,8.7591,77.471 +773684,10.509,76.509 +773685,3.7035,79.389 +773686,5.612,78.416 +773687,7.4475,77.462 +773688,9.2205,76.527 +773689,2.3439,79.325 +773690,4.2766,78.379 +773691,6.1354,77.454 +773692,7.9309,76.547 +773693,0.9858,79.26 +773694,2.9417,78.342 +773695,4.8228,77.445 +773696,6.64,76.567 +773697,359.63,79.195 +773698,1.6073,78.305 +773699,3.5099,77.437 +773700,5.3478,76.587 +773701,358.27,79.129 +773702,0.27337,78.268 +773703,2.1964,77.429 +773704,4.0541,76.609 +773705,356.92,79.062 +773706,358.94,78.231 +773707,0.88254,77.421 +773708,2.7591,76.631 +773709,355.57,78.994 +773710,357.61,78.193 +773711,359.57,77.414 +773712,1.4626,76.654 +773713,354.22,78.926 +773714,356.27,78.155 +773715,358.25,77.406 +773716,0.1647,76.677 +773717,352.87,78.857 +773718,354.94,78.117 +773719,356.94,77.399 +773720,358.87,76.701 +773721,351.52,78.788 +773722,353.61,78.079 +773723,355.62,77.392 +773724,357.56,76.725 +773725,350.18,78.718 +773726,352.28,78.041 +773727,354.31,77.385 +773728,356.26,76.75 +773729,348.83,78.648 +773730,350.95,78.002 +773731,352.99,77.379 +773732,354.96,76.776 +773733,347.49,78.577 +773734,349.62,77.963 +773735,351.67,77.372 +773736,353.65,76.802 +773737,346.15,78.505 +773738,348.29,77.924 +773739,350.35,77.366 +773740,352.35,76.828 +773741,344.81,78.434 +773742,346.96,77.885 +773743,349.04,77.36 +773744,351.04,76.855 +773745,343.47,78.361 +773746,345.64,77.846 +773747,347.72,77.354 +773748,349.73,76.882 +773749,342.13,78.289 +773750,344.31,77.807 +773751,346.4,77.348 +773752,348.42,76.909 +773753,340.8,78.216 +773754,342.98,77.768 +773755,345.08,77.342 +773756,347.1,76.937 +773757,339.47,78.142 +773758,341.65,77.728 +773759,343.76,77.337 +773760,345.79,76.965 +773761,338.14,78.069 +773762,340.33,77.688 +773763,342.44,77.331 +773764,344.47,76.994 +773765,336.81,77.995 +773766,339,77.649 +773767,341.12,77.326 +773768,343.16,77.022 +773769,335.48,77.92 +773770,337.68,77.609 +773771,339.8,77.32 +773772,341.84,77.051 +773773,334.15,77.846 +773774,336.35,77.569 +773775,338.47,77.315 +773776,340.52,77.08 +773777,332.83,77.771 +773778,335.03,77.529 +773779,337.15,77.31 +773780,339.2,77.11 +773781,331.51,77.696 +773782,333.71,77.489 +773783,335.83,77.305 +773784,337.87,77.139 +773785,330.19,77.621 +773786,332.39,77.45 +773787,334.5,77.299 +773788,336.55,77.168 +773789,328.87,77.546 +773790,331.06,77.41 +773791,333.18,77.294 +773792,335.22,77.198 +773793,327.55,77.471 +773794,329.74,77.37 +773795,331.85,77.289 +773796,333.89,77.228 +773797,326.23,77.396 +773798,328.42,77.33 +773799,330.53,77.284 +773800,332.56,77.257 +773801,324.92,77.321 +773802,327.1,77.29 +773803,329.2,77.279 +773804,331.23,77.287 +773805,323.61,77.245 +773806,325.78,77.25 +773807,327.88,77.274 +773808,329.9,77.317 +773809,322.3,77.17 +773810,324.46,77.21 +773811,326.55,77.269 +773812,328.56,77.346 +773813,320.99,77.095 +773814,323.15,77.17 +773815,325.22,77.264 +773816,327.23,77.376 +773817,319.68,77.02 +773818,321.83,77.13 +773819,323.89,77.259 +773820,325.89,77.405 +773821,318.37,76.945 +773822,320.51,77.09 +773823,322.57,77.254 +773824,324.55,77.435 +773825,317.07,76.87 +773826,319.19,77.05 +773827,321.24,77.249 +773828,323.21,77.464 +773829,315.77,76.795 +773830,317.88,77.01 +773831,319.91,77.244 +773832,321.87,77.493 +773833,314.47,76.72 +773834,316.56,76.97 +773835,318.58,77.238 +773836,320.53,77.521 +773837,313.17,76.646 +773838,315.25,76.931 +773839,317.25,77.233 +773840,319.18,77.55 +773841,311.87,76.572 +773842,313.93,76.891 +773843,315.92,77.228 +773844,317.83,77.578 +773845,310.57,76.498 +773846,312.62,76.852 +773847,314.59,77.222 +773848,316.49,77.606 +773849,309.28,76.425 +773850,311.3,76.813 +773851,313.25,77.216 +773852,315.14,77.634 +773853,307.99,76.352 +773854,309.99,76.773 +773855,311.92,77.211 +773856,313.79,77.661 +773857,306.69,76.279 +773858,308.68,76.734 +773859,310.59,77.205 +773860,312.43,77.688 +773861,305.4,76.207 +773862,307.37,76.695 +773863,309.26,77.199 +773864,311.08,77.714 +773865,304.12,76.135 +773866,306.06,76.657 +773867,307.92,77.193 +773868,309.72,77.741 +773869,302.83,76.063 +773870,304.74,76.618 +773871,306.59,77.186 +773872,308.37,77.766 +773873,301.54,75.992 +773874,303.43,76.579 +773875,305.25,77.18 +773876,307.01,77.791 +773877,300.26,75.922 +773878,302.12,76.541 +773879,303.92,77.173 +773880,305.65,77.816 +773881,298.98,75.852 +773882,300.81,76.503 +773883,302.58,77.167 +773884,304.29,77.84 +773885,297.7,75.782 +773886,299.51,76.465 +773887,301.25,77.16 +773888,302.93,77.864 +773889,296.42,75.713 +773890,298.2,76.427 +773891,299.91,77.153 +773892,301.57,77.887 +773893,295.14,75.645 +773894,296.89,76.39 +773895,298.58,77.145 +773896,300.2,77.909 +773897,293.86,75.577 +773898,295.58,76.353 +773899,297.24,77.138 +773900,298.84,77.931 +773901,292.59,75.51 +773902,294.27,76.316 +773903,295.9,77.13 +773904,297.47,77.952 +773905,291.31,75.444 +773906,292.97,76.279 +773907,294.56,77.122 +773908,296.1,77.973 +773909,290.04,75.378 +773910,291.66,76.242 +773911,293.22,77.114 +773912,294.73,77.993 +773913,288.77,75.314 +773914,290.36,76.206 +773915,291.89,77.106 +773916,293.36,78.012 +773917,287.5,75.249 +773918,289.05,76.17 +773919,290.55,77.097 +773920,291.99,78.03 +773921,286.23,75.186 +773922,287.75,76.134 +773923,289.21,77.088 +773924,290.62,78.048 +773925,284.96,75.123 +773926,286.44,76.098 +773927,287.87,77.079 +773928,289.24,78.065 +773929,283.69,75.062 +773930,285.14,76.063 +773931,286.53,77.07 +773932,287.87,78.081 +773933,282.43,75.001 +773934,283.83,76.028 +773935,285.19,77.06 +773936,286.49,78.096 +773937,281.16,74.941 +773938,282.53,75.993 +773939,283.85,77.05 +773940,285.11,78.111 +773941,279.9,74.881 +773942,281.23,75.959 +773943,282.51,77.04 +773944,283.73,78.124 +773945,278.63,74.823 +773946,279.92,75.924 +773947,281.16,77.03 +773948,282.35,78.137 +773949,277.37,74.766 +773950,278.62,75.891 +773951,279.82,77.019 +773952,280.97,78.149 +773953,276.11,74.709 +773954,277.32,75.857 +773955,278.48,77.008 +773956,279.59,78.16 +773957,274.85,74.654 +773958,276.02,75.824 +773959,277.14,76.996 +773960,278.21,78.17 +773961,273.59,74.599 +773962,274.72,75.791 +773963,275.8,76.985 +773964,276.83,78.179 +773965,272.33,74.546 +773966,273.42,75.758 +773967,274.45,76.973 +773968,275.44,78.187 +773969,271.08,74.493 +773970,272.12,75.726 +773971,273.11,76.96 +773972,274.06,78.194 +773973,269.82,74.442 +773974,270.82,75.694 +773975,271.77,76.948 +773976,272.67,78.201 +773977,268.57,74.391 +773978,269.52,75.663 +773979,270.42,76.935 +773980,271.29,78.206 +773981,267.31,74.342 +773982,268.22,75.632 +773983,269.08,76.921 +773984,269.9,78.21 +773985,266.06,74.294 +773986,266.92,75.601 +773987,267.73,76.908 +773988,268.51,78.213 +773989,264.8,74.247 +773990,265.62,75.57 +773991,266.39,76.894 +773992,267.12,78.216 +773993,263.55,74.2 +773994,264.32,75.54 +773995,265.05,76.879 +773996,265.74,78.217 +773997,262.3,74.155 +773998,263.02,75.51 +773999,263.7,76.865 +774000,264.35,78.217 +774001,261.04,74.112 +774002,261.72,75.481 +774003,262.36,76.85 +774004,262.96,78.216 +774005,259.79,74.069 +774006,260.42,75.452 +774007,261.01,76.834 +774008,261.57,78.214 +774009,258.54,74.027 +774010,259.12,75.424 +774011,259.67,76.819 +774012,260.17,78.211 +774013,257.29,73.987 +774014,257.82,75.395 +774015,258.32,76.802 +774016,258.78,78.206 +774017,256.04,73.948 +774018,256.53,75.367 +774019,256.98,76.786 +774020,257.39,78.201 +774021,254.79,73.909 +774022,255.23,75.34 +774023,255.63,76.769 +774024,256,78.194 +774025,253.54,73.873 +774026,253.93,75.313 +774027,254.29,76.752 +774028,254.6,78.187 +774029,252.29,73.837 +774030,252.63,75.286 +774031,252.94,76.734 +774032,253.21,78.178 +774033,251.04,73.802 +774034,251.34,75.26 +774035,251.59,76.716 +774036,251.82,78.168 +774037,249.8,73.769 +774038,250.04,75.234 +774039,250.25,76.698 +774040,250.42,78.157 +774041,248.55,73.737 +774042,248.74,75.209 +774043,248.9,76.679 +774044,249.03,78.145 +774045,247.3,73.706 +774046,247.44,75.184 +774047,247.56,76.66 +774048,247.64,78.132 +774049,246.05,73.676 +774050,246.15,75.159 +774051,246.21,76.64 +774052,246.24,78.117 +774053,244.8,73.648 +774054,244.85,75.135 +774055,244.86,76.62 +774056,244.85,78.101 +774057,243.55,73.621 +774058,243.55,75.111 +774059,243.52,76.6 +774060,243.45,78.085 +774061,242.31,73.595 +774062,242.26,75.088 +774063,242.17,76.579 +774064,242.06,78.067 +774065,241.06,73.57 +774066,240.96,75.065 +774067,240.83,76.558 +774068,240.66,78.047 +774069,239.81,73.546 +774070,239.66,75.042 +774071,239.48,76.536 +774072,239.27,78.027 +774073,238.56,73.524 +774074,238.36,75.02 +774075,238.14,76.514 +774076,237.87,78.006 +774077,237.31,73.503 +774078,237.07,74.998 +774079,236.79,76.492 +774080,236.48,77.983 +774081,236.06,73.483 +774082,235.77,74.977 +774083,235.44,76.469 +774084,235.08,77.959 +774085,234.81,73.465 +774086,234.47,74.956 +774087,234.1,76.446 +774088,233.69,77.934 +774089,233.57,73.447 +774090,233.18,74.935 +774091,232.75,76.423 +774092,232.3,77.908 +774093,232.32,73.431 +774094,231.88,74.915 +774095,231.41,76.399 +774096,230.9,77.88 +774097,231.07,73.416 +774098,230.58,74.895 +774099,230.06,76.374 +774100,229.51,77.852 +774101,229.82,73.402 +774102,229.28,74.876 +774103,228.72,76.35 +774104,228.12,77.822 +774105,228.56,73.39 +774106,227.98,74.857 +774107,227.37,76.325 +774108,226.72,77.791 +774109,227.31,73.378 +774110,226.69,74.839 +774111,226.03,76.299 +774112,225.33,77.759 +774113,226.06,73.368 +774114,225.39,74.82 +774115,224.68,76.273 +774116,223.94,77.726 +774117,224.81,73.359 +774118,224.09,74.803 +774119,223.34,76.247 +774120,222.55,77.691 +774121,223.56,73.352 +774122,222.79,74.785 +774123,221.99,76.22 +774124,221.16,77.656 +774125,222.3,73.345 +774126,221.49,74.768 +774127,220.65,76.193 +774128,219.77,77.619 +774129,221.05,73.34 +774130,220.2,74.752 +774131,219.31,76.166 +774132,218.38,77.581 +774133,219.79,73.335 +774134,218.9,74.736 +774135,217.96,76.138 +774136,216.99,77.542 +774137,218.54,73.332 +774138,217.6,74.72 +774139,216.62,76.11 +774140,215.6,77.502 +774141,217.28,73.33 +774142,216.3,74.705 +774143,215.28,76.082 +774144,214.21,77.461 +774145,216.03,73.329 +774146,215,74.689 +774147,213.93,76.053 +774148,212.82,77.419 +774149,214.77,73.33 +774150,213.7,74.675 +774151,212.59,76.024 +774152,211.44,77.376 +774153,213.51,73.331 +774154,212.4,74.661 +774155,211.25,75.994 +774156,210.05,77.332 +774157,212.25,73.333 +774158,211.1,74.647 +774159,209.91,75.964 +774160,208.67,77.286 +774161,210.99,73.337 +774162,209.8,74.633 +774163,208.56,75.934 +774164,207.28,77.24 +774165,209.73,73.341 +774166,208.5,74.62 +774167,207.22,75.904 +774168,205.9,77.192 +774169,208.47,73.347 +774170,207.2,74.607 +774171,205.88,75.873 +774172,204.52,77.144 +774173,207.2,73.354 +774174,205.89,74.594 +774175,204.54,75.841 +774176,203.13,77.094 +774177,205.94,73.361 +774178,204.59,74.582 +774179,203.2,75.81 +774180,201.75,77.044 +774181,204.67,73.37 +774182,203.29,74.57 +774183,201.86,75.778 +774184,200.38,76.992 +774185,203.41,73.379 +774186,201.99,74.559 +774187,200.52,75.746 +774188,199,76.94 +774189,202.14,73.39 +774190,200.69,74.548 +774191,199.18,75.713 +774192,197.62,76.886 +774193,200.87,73.401 +774194,199.38,74.537 +774195,197.84,75.68 +774196,196.24,76.832 +774197,199.6,73.414 +774198,198.08,74.526 +774199,196.5,75.647 +774200,194.87,76.777 +774201,198.33,73.427 +774202,196.78,74.516 +774203,195.17,75.614 +774204,193.5,76.721 +774205,197.06,73.441 +774206,195.47,74.506 +774207,193.83,75.58 +774208,192.12,76.664 +774209,195.79,73.456 +774210,194.17,74.496 +774211,192.49,75.546 +774212,190.75,76.606 +774213,194.51,73.472 +774214,192.86,74.487 +774215,191.15,75.512 +774216,189.38,76.547 +774217,193.24,73.488 +774218,191.56,74.477 +774219,189.82,75.477 +774220,188.01,76.488 +774221,191.96,73.506 +774222,190.25,74.469 +774223,188.48,75.442 +774224,186.65,76.427 +774225,190.68,73.524 +774226,188.94,74.46 +774227,187.15,75.407 +774228,185.28,76.366 +774229,189.4,73.543 +774230,187.64,74.452 +774231,185.81,75.372 +774232,183.92,76.304 +774233,188.12,73.563 +774234,186.33,74.444 +774235,184.48,75.336 +774236,182.55,76.242 +774237,186.84,73.583 +774238,185.02,74.436 +774239,183.14,75.301 +774240,181.19,76.178 +774241,185.56,73.604 +774242,183.71,74.428 +774243,181.81,75.265 +774244,179.83,76.114 +774245,184.27,73.626 +774246,182.41,74.421 +774247,180.48,75.228 +774248,178.47,76.049 +774249,182.98,73.648 +774250,181.1,74.413 +774251,179.14,75.192 +774252,177.11,75.984 +774253,181.7,73.671 +774254,179.79,74.406 +774255,177.81,75.155 +774256,175.76,75.918 +774257,180.41,73.695 +774258,178.48,74.4 +774259,176.48,75.118 +774260,174.4,75.851 +774261,179.12,73.719 +774262,177.17,74.393 +774263,175.15,75.081 +774264,173.05,75.784 +774265,177.82,73.744 +774266,175.86,74.387 +774267,173.82,75.044 +774268,171.7,75.716 +774269,176.53,73.769 +774270,174.55,74.381 +774271,172.49,75.007 +774272,170.35,75.648 +774273,175.23,73.794 +774274,173.23,74.374 +774275,171.16,74.969 +774276,169,75.579 +774277,173.94,73.82 +774278,171.92,74.369 +774279,169.83,74.931 +774280,167.66,75.51 +774281,172.64,73.847 +774282,170.61,74.363 +774283,168.5,74.893 +774284,166.31,75.44 +774285,171.34,73.874 +774286,169.29,74.357 +774287,167.18,74.855 +774288,164.97,75.37 +774289,170.04,73.901 +774290,167.98,74.352 +774291,165.85,74.817 +774292,163.63,75.299 +774293,168.73,73.929 +774294,166.67,74.346 +774295,164.52,74.779 +774296,162.29,75.228 +774297,167.43,73.957 +774298,165.35,74.341 +774299,163.2,74.741 +774300,160.95,75.157 +774301,166.12,73.985 +774302,164.04,74.336 +774303,161.87,74.702 +774304,159.61,75.085 +774305,164.82,74.014 +774306,162.72,74.331 +774307,160.55,74.664 +774308,158.28,75.013 +774309,163.51,74.042 +774310,161.4,74.326 +774311,159.22,74.625 +774312,156.95,74.941 +774313,162.2,74.071 +774314,160.09,74.321 +774315,157.9,74.586 +774316,155.62,74.868 +774317,160.88,74.1 +774318,158.77,74.316 +774319,156.57,74.547 +774320,154.29,74.795 +774321,159.57,74.13 +774322,157.45,74.312 +774323,155.25,74.509 +774324,152.96,74.722 +774325,158.25,74.159 +774326,156.13,74.307 +774327,153.93,74.47 +774328,151.63,74.649 +774329,156.94,74.189 +774330,154.81,74.302 +774331,152.61,74.431 +774332,150.31,74.576 +774333,155.62,74.219 +774334,153.49,74.298 +774335,151.29,74.392 +774336,148.99,74.503 +774337,154.3,74.248 +774338,152.17,74.293 +774339,149.97,74.353 +774340,147.67,74.429 +774341,152.97,74.278 +774342,150.85,74.289 +774343,148.65,74.314 +774344,146.35,74.355 +774345,151.65,74.308 +774346,149.53,74.284 +774347,147.33,74.275 +774348,145.03,74.282 +774349,150.32,74.337 +774350,148.21,74.279 +774351,146.01,74.236 +774352,143.72,74.208 +774353,149,74.367 +774354,146.89,74.275 +774355,144.69,74.197 +774356,142.4,74.135 +774357,147.67,74.397 +774358,145.56,74.27 +774359,143.38,74.158 +774360,141.09,74.061 +774361,146.34,74.426 +774362,144.24,74.266 +774363,142.06,74.119 +774364,139.78,73.988 +774365,145.01,74.455 +774366,142.92,74.261 +774367,140.74,74.08 +774368,138.47,73.914 +774369,143.67,74.484 +774370,141.59,74.256 +774371,139.43,74.041 +774372,137.17,73.841 +774373,142.34,74.513 +774374,140.27,74.252 +774375,138.11,74.002 +774376,135.86,73.768 +774377,141,74.542 +774378,138.94,74.247 +774379,136.8,73.964 +774380,134.56,73.695 +774381,139.66,74.57 +774382,137.62,74.242 +774383,135.48,73.925 +774384,133.26,73.623 +774385,138.32,74.599 +774386,136.29,74.237 +774387,134.17,73.886 +774388,131.96,73.55 +774389,136.98,74.626 +774390,134.96,74.232 +774391,132.86,73.848 +774392,130.66,73.478 +774393,135.64,74.654 +774394,133.63,74.226 +774395,131.55,73.81 +774396,129.36,73.406 +774397,134.3,74.681 +774398,132.31,74.221 +774399,130.24,73.772 +774400,128.07,73.335 +774401,132.95,74.708 +774402,130.98,74.216 +774403,128.92,73.733 +774404,126.78,73.264 +774405,131.6,74.734 +774406,129.65,74.21 +774407,127.61,73.695 +774408,125.49,73.193 +774409,130.25,74.76 +774410,128.32,74.204 +774411,126.3,73.658 +774412,124.2,73.123 +774413,128.9,74.786 +774414,126.99,74.199 +774415,124.99,73.62 +774416,122.91,73.053 +774417,127.55,74.811 +774418,125.66,74.192 +774419,123.69,73.582 +774420,121.62,72.983 +774421,126.2,74.836 +774422,124.33,74.186 +774423,122.38,73.545 +774424,120.34,72.914 +774425,124.84,74.86 +774426,123,74.18 +774427,121.07,73.508 +774428,119.06,72.846 +774429,123.49,74.883 +774430,121.66,74.173 +774431,119.76,73.471 +774432,117.77,72.778 +774433,122.13,74.906 +774434,120.33,74.167 +774435,118.46,73.434 +774436,116.49,72.711 +774437,120.77,74.928 +774438,119,74.16 +774439,117.15,73.398 +774440,115.22,72.644 +774441,119.41,74.95 +774442,117.67,74.153 +774443,115.84,73.361 +774444,113.94,72.578 +774445,118.05,74.971 +774446,116.33,74.145 +774447,114.54,73.325 +774448,112.66,72.512 +774449,116.69,74.991 +774450,115,74.138 +774451,113.23,73.289 +774452,111.39,72.447 +774453,115.32,75.011 +774454,113.66,74.13 +774455,111.93,73.253 +774456,110.12,72.383 +774457,113.96,75.03 +774458,112.33,74.122 +774459,110.63,73.218 +774460,108.85,72.32 +774461,112.59,75.048 +774462,110.99,74.114 +774463,109.32,73.183 +774464,107.58,72.257 +774465,111.22,75.066 +774466,109.66,74.105 +774467,108.02,73.148 +774468,106.31,72.195 +774469,109.85,75.082 +774470,108.32,74.096 +774471,106.72,73.113 +774472,105.04,72.134 +774473,108.48,75.098 +774474,106.98,74.087 +774475,105.42,73.079 +774476,103.78,72.074 +774477,107.11,75.113 +774478,105.65,74.078 +774479,104.11,73.044 +774480,102.51,72.014 +774481,105.74,75.127 +774482,104.31,74.069 +774483,102.81,73.011 +774484,101.25,71.956 +774485,104.36,75.141 +774486,102.97,74.059 +774487,101.51,72.977 +774488,99.985,71.898 +774489,102.99,75.153 +774490,101.63,74.049 +774491,100.21,72.944 +774492,98.724,71.841 +774493,101.61,75.165 +774494,100.29,74.038 +774495,98.912,72.911 +774496,97.465,71.785 +774497,100.23,75.176 +774498,98.954,74.027 +774499,97.612,72.878 +774500,96.206,71.73 +774501,98.856,75.186 +774502,97.614,74.016 +774503,96.313,72.846 +774504,94.948,71.676 +774505,97.477,75.195 +774506,96.275,74.005 +774507,95.014,72.814 +774508,93.692,71.623 +774509,96.096,75.202 +774510,94.935,73.993 +774511,93.716,72.782 +774512,92.436,71.57 +774513,94.715,75.209 +774514,93.594,73.981 +774515,92.418,72.751 +774516,91.182,71.519 +774517,93.333,75.215 +774518,92.254,73.969 +774519,91.12,72.72 +774520,89.928,71.469 +774521,91.95,75.22 +774522,90.913,73.956 +774523,89.823,72.689 +774524,88.675,71.42 +774525,90.566,75.224 +774526,89.572,73.943 +774527,88.525,72.658 +774528,87.423,71.372 +774529,89.182,75.227 +774530,88.231,73.93 +774531,87.229,72.628 +774532,86.172,71.325 +774533,87.796,75.229 +774534,86.889,73.916 +774535,85.932,72.599 +774536,84.922,71.279 +774537,86.41,75.23 +774538,85.547,73.902 +774539,84.636,72.569 +774540,83.673,71.234 +774541,85.023,75.23 +774542,84.205,73.888 +774543,83.34,72.541 +774544,82.424,71.19 +774545,83.635,75.229 +774546,82.863,73.873 +774547,82.044,72.512 +774548,81.176,71.147 +774549,82.247,75.227 +774550,81.52,73.858 +774551,80.748,72.484 +774552,79.928,71.106 +774553,80.858,75.223 +774554,80.177,73.842 +774555,79.453,72.456 +774556,78.682,71.065 +774557,79.468,75.219 +774558,78.835,73.827 +774559,78.158,72.428 +774560,77.435,71.026 +774561,78.078,75.213 +774562,77.491,73.81 +774563,76.863,72.401 +774564,76.19,70.988 +774565,76.687,75.206 +774566,76.148,73.794 +774567,75.568,72.375 +774568,74.944,70.951 +774569,75.296,75.198 +774570,74.805,73.777 +774571,74.273,72.348 +774572,73.7,70.915 +774573,73.905,75.189 +774574,73.461,73.759 +774575,72.979,72.323 +774576,72.455,70.88 +774577,72.513,75.179 +774578,72.118,73.742 +774579,71.685,72.297 +774580,71.211,70.847 +774581,71.12,75.168 +774582,70.774,73.723 +774583,70.39,72.272 +774584,69.968,70.815 +774585,69.727,75.156 +774586,69.43,73.705 +774587,69.096,72.247 +774588,68.724,70.784 +774589,68.334,75.142 +774590,68.086,73.686 +774591,67.802,72.223 +774592,67.481,70.754 +774593,66.94,75.127 +774594,66.742,73.667 +774595,66.509,72.199 +774596,66.239,70.725 +774597,65.547,75.111 +774598,65.398,73.647 +774599,65.215,72.175 +774600,64.996,70.698 +774601,64.153,75.094 +774602,64.054,73.627 +774603,63.921,72.152 +774604,63.753,70.672 +774605,62.759,75.076 +774606,62.71,73.606 +774607,62.628,72.129 +774608,62.511,70.647 +774609,61.364,75.057 +774610,61.366,73.586 +774611,61.334,72.107 +774612,61.269,70.623 +774613,59.97,75.036 +774614,60.022,73.564 +774615,60.04,72.085 +774616,60.026,70.6 +774617,58.575,75.014 +774618,58.677,73.543 +774619,58.747,72.064 +774620,58.784,70.579 +774621,57.181,74.991 +774622,57.333,73.521 +774623,57.453,72.043 +774624,57.541,70.559 +774625,55.786,74.967 +774626,55.989,73.498 +774627,56.16,72.022 +774628,56.299,70.54 +774629,54.392,74.942 +774630,54.645,73.475 +774631,54.866,72.002 +774632,55.056,70.522 +774633,52.998,74.915 +774634,53.301,73.452 +774635,53.573,71.982 +774636,53.813,70.506 +774637,51.603,74.888 +774638,51.957,73.428 +774639,52.279,71.962 +774640,52.57,70.49 +774641,50.209,74.859 +774642,50.613,73.404 +774643,50.985,71.943 +774644,51.327,70.476 +774645,48.815,74.829 +774646,49.269,73.38 +774647,49.692,71.924 +774648,50.083,70.463 +774649,47.422,74.798 +774650,47.926,73.355 +774651,48.398,71.906 +774652,48.839,70.452 +774653,46.028,74.766 +774654,46.582,73.33 +774655,47.104,71.888 +774656,47.595,70.441 +774657,44.635,74.732 +774658,45.239,73.304 +774659,45.81,71.87 +774660,46.35,70.432 +774661,43.242,74.698 +774662,43.895,73.278 +774663,44.516,71.853 +774664,45.105,70.424 +774665,41.85,74.662 +774666,42.552,73.252 +774667,43.221,71.837 +774668,43.859,70.417 +774669,40.458,74.625 +774670,41.209,73.225 +774671,41.927,71.82 +774672,42.613,70.411 +774673,39.066,74.587 +774674,39.866,73.198 +774675,40.632,71.804 +774676,41.366,70.407 +774677,37.675,74.548 +774678,38.524,73.171 +774679,39.337,71.788 +774680,40.119,70.403 +774681,36.285,74.508 +774682,37.181,73.143 +774683,38.042,71.773 +774684,38.871,70.401 +774685,34.895,74.467 +774686,35.839,73.115 +774687,36.747,71.758 +774688,37.622,70.4 +774689,33.505,74.425 +774690,34.497,73.086 +774691,35.452,71.744 +774692,36.373,70.399 +774693,32.117,74.381 +774694,33.155,73.057 +774695,34.156,71.73 +774696,35.123,70.4 +774697,30.729,74.337 +774698,31.814,73.028 +774699,32.86,71.716 +774700,33.872,70.402 +774701,29.341,74.291 +774702,30.473,72.998 +774703,31.564,71.702 +774704,32.62,70.406 +774705,27.955,74.245 +774706,29.132,72.968 +774707,30.268,71.689 +774708,31.368,70.41 +774709,26.569,74.197 +774710,27.791,72.938 +774711,28.971,71.677 +774712,30.114,70.415 +774713,25.184,74.149 +774714,26.451,72.907 +774715,27.674,71.664 +774716,28.86,70.421 +774717,23.8,74.099 +774718,25.111,72.876 +774719,26.377,71.652 +774720,27.605,70.429 +774721,22.417,74.049 +774722,23.771,72.845 +774723,25.08,71.64 +774724,26.348,70.437 +774725,21.034,73.997 +774726,22.431,72.813 +774727,23.782,71.629 +774728,25.091,70.446 +774729,19.653,73.945 +774730,21.092,72.781 +774731,22.484,71.618 +774732,23.833,70.456 +774733,18.273,73.891 +774734,19.754,72.749 +774735,21.185,71.607 +774736,22.574,70.467 +774737,16.894,73.837 +774738,18.415,72.716 +774739,19.887,71.597 +774740,21.313,70.479 +774741,15.515,73.782 +774742,17.077,72.683 +774743,18.587,71.587 +774744,20.052,70.492 +774745,14.138,73.726 +774746,15.74,72.65 +774747,17.288,71.577 +774748,18.789,70.506 +774749,12.762,73.669 +774750,14.403,72.617 +774751,15.988,71.567 +774752,17.525,70.521 +774753,11.387,73.611 +774754,13.066,72.583 +774755,14.688,71.558 +774756,16.26,70.537 +774757,10.014,73.552 +774758,11.73,72.549 +774759,13.387,71.549 +774760,14.994,70.553 +774761,8.6413,73.493 +774762,10.394,72.514 +774763,12.086,71.54 +774764,13.726,70.57 +774765,7.2702,73.432 +774766,9.0582,72.48 +774767,10.785,71.532 +774768,12.457,70.588 +774769,5.9003,73.371 +774770,7.7231,72.445 +774771,9.4826,71.523 +774772,11.187,70.607 +774773,4.5318,73.309 +774774,6.3885,72.41 +774775,8.1803,71.515 +774776,9.9159,70.626 +774777,3.1646,73.247 +774778,5.0544,72.375 +774779,6.8776,71.508 +774780,8.6432,70.647 +774781,1.7987,73.184 +774782,3.7208,72.339 +774783,5.5744,71.5 +774784,7.369,70.668 +774785,0.43431,73.12 +774786,2.3876,72.303 +774787,4.2708,71.493 +774788,6.0935,70.689 +774789,359.07,73.055 +774790,1.0549,72.267 +774791,2.9667,71.486 +774792,4.8166,70.711 +774793,357.71,72.99 +774794,359.72,72.231 +774795,1.6621,71.479 +774796,3.5382,70.734 +774797,356.35,72.924 +774798,358.39,72.194 +774799,0.35709,71.472 +774800,2.2584,70.758 +774801,354.99,72.857 +774802,357.06,72.158 +774803,359.05,71.466 +774804,0.97712,70.782 +774805,353.63,72.79 +774806,355.73,72.121 +774807,357.75,71.46 +774808,359.69,70.806 +774809,352.28,72.723 +774810,354.4,72.084 +774811,356.44,71.453 +774812,358.41,70.831 +774813,350.92,72.654 +774814,353.07,72.047 +774815,355.13,71.447 +774816,357.12,70.857 +774817,349.57,72.586 +774818,351.74,72.009 +774819,353.82,71.442 +774820,355.84,70.883 +774821,348.22,72.517 +774822,350.41,71.972 +774823,352.52,71.436 +774824,354.55,70.909 +774825,346.87,72.447 +774826,349.08,71.934 +774827,351.21,71.431 +774828,353.26,70.936 +774829,345.53,72.377 +774830,347.76,71.896 +774831,349.9,71.425 +774832,351.97,70.963 +774833,344.18,72.307 +774834,346.43,71.858 +774835,348.59,71.42 +774836,350.67,70.991 +774837,342.84,72.236 +774838,345.1,71.82 +774839,347.28,71.415 +774840,349.38,71.019 +774841,341.49,72.165 +774842,343.78,71.782 +774843,345.97,71.41 +774844,348.08,71.047 +774845,340.15,72.093 +774846,342.45,71.744 +774847,344.66,71.405 +774848,346.78,71.076 +774849,338.81,72.021 +774850,341.13,71.706 +774851,343.35,71.4 +774852,345.48,71.105 +774853,337.48,71.949 +774854,339.8,71.667 +774855,342.03,71.395 +774856,344.18,71.134 +774857,336.14,71.877 +774858,338.48,71.629 +774859,340.72,71.391 +774860,342.88,71.163 +774861,334.81,71.805 +774862,337.16,71.59 +774863,339.41,71.386 +774864,341.57,71.192 +774865,333.48,71.732 +774866,335.84,71.551 +774867,338.09,71.382 +774868,340.27,71.222 +774869,332.15,71.659 +774870,334.51,71.513 +774871,336.78,71.377 +774872,338.96,71.252 +774873,330.82,71.586 +774874,333.19,71.474 +774875,335.46,71.373 +774876,337.65,71.281 +774877,329.49,71.513 +774878,331.87,71.435 +774879,334.15,71.368 +774880,336.34,71.311 +774881,328.17,71.44 +774882,330.55,71.396 +774883,332.83,71.364 +774884,335.02,71.341 +774885,326.84,71.366 +774886,329.23,71.357 +774887,331.52,71.359 +774888,333.71,71.371 +774889,325.52,71.293 +774890,327.91,71.319 +774891,330.2,71.355 +774892,332.39,71.401 +774893,324.2,71.22 +774894,326.6,71.28 +774895,328.88,71.35 +774896,331.07,71.431 +774897,322.89,71.147 +774898,325.28,71.241 +774899,327.56,71.346 +774900,329.75,71.46 +774901,321.57,71.073 +774902,323.96,71.202 +774903,326.24,71.341 +774904,328.43,71.49 +774905,320.26,71 +774906,322.65,71.163 +774907,324.93,71.337 +774908,327.11,71.519 +774909,318.95,70.927 +774910,321.33,71.125 +774911,323.61,71.332 +774912,325.78,71.549 +774913,317.64,70.854 +774914,320.02,71.086 +774915,322.29,71.328 +774916,324.46,71.578 +774917,316.33,70.782 +774918,318.7,71.047 +774919,320.96,71.323 +774920,323.13,71.607 +774921,315.02,70.709 +774922,317.39,71.009 +774923,319.64,71.318 +774924,321.8,71.636 +774925,313.72,70.637 +774926,316.07,70.97 +774927,318.32,71.313 +774928,320.47,71.664 +774929,312.41,70.565 +774930,314.76,70.932 +774931,317,71.308 +774932,319.14,71.692 +774933,311.11,70.493 +774934,313.45,70.894 +774935,315.67,71.303 +774936,317.8,71.72 +774937,309.81,70.422 +774938,312.14,70.856 +774939,314.35,71.298 +774940,316.47,71.748 +774941,308.52,70.351 +774942,310.83,70.817 +774943,313.03,71.293 +774944,315.13,71.775 +774945,307.22,70.28 +774946,309.52,70.78 +774947,311.7,71.287 +774948,313.79,71.801 +774949,305.93,70.209 +774950,308.21,70.742 +774951,310.38,71.282 +774952,312.45,71.828 +774953,304.64,70.139 +774954,306.9,70.704 +774955,309.05,71.276 +774956,311.1,71.854 +774957,303.35,70.07 +774958,305.59,70.667 +774959,307.72,71.27 +774960,309.76,71.879 +774961,302.06,70.001 +774962,304.28,70.629 +774963,306.4,71.264 +774964,308.41,71.904 +774965,300.77,69.932 +774966,302.97,70.592 +774967,305.07,71.258 +774968,307.07,71.928 +774969,299.49,69.864 +774970,301.67,70.555 +774971,303.74,71.251 +774972,305.72,71.952 +774973,298.2,69.797 +774974,300.36,70.518 +774975,302.41,71.245 +774976,304.37,71.975 +774977,296.92,69.73 +774978,299.06,70.481 +774979,301.08,71.238 +774980,303.02,71.998 +774981,295.64,69.664 +774982,297.75,70.445 +774983,299.75,71.231 +774984,301.66,72.02 +774985,294.36,69.598 +774986,296.45,70.409 +774987,298.42,71.224 +774988,300.31,72.041 +774989,293.09,69.533 +774990,295.14,70.373 +774991,297.09,71.216 +774992,298.95,72.062 +774993,291.81,69.468 +774994,293.84,70.337 +774995,295.76,71.209 +774996,297.59,72.082 +774997,290.54,69.405 +774998,292.54,70.301 +774999,294.43,71.201 +775000,296.24,72.101 +775001,289.27,69.342 +775002,291.23,70.266 +775003,293.1,71.193 +775004,294.88,72.12 +775005,288,69.279 +775006,289.93,70.231 +775007,291.77,71.184 +775008,293.51,72.138 +775009,286.73,69.218 +775010,288.63,70.196 +775011,290.43,71.176 +775012,292.15,72.155 +775013,285.46,69.157 +775014,287.33,70.161 +775015,289.1,71.167 +775016,290.79,72.171 +775017,284.19,69.097 +775018,286.03,70.127 +775019,287.77,71.157 +775020,289.42,72.187 +775021,282.93,69.038 +775022,284.73,70.093 +775023,286.43,71.148 +775024,288.05,72.201 +775025,281.67,68.98 +775026,283.43,70.059 +775027,285.1,71.138 +775028,286.69,72.215 +775029,280.4,68.923 +775030,282.13,70.026 +775031,283.76,71.128 +775032,285.32,72.228 +775033,279.14,68.866 +775034,280.83,69.993 +775035,282.43,71.118 +775036,283.95,72.24 +775037,277.89,68.811 +775038,279.53,69.96 +775039,281.09,71.107 +775040,282.57,72.251 +775041,276.63,68.756 +775042,278.23,69.927 +775043,279.76,71.096 +775044,281.2,72.261 +775045,275.37,68.702 +775046,276.94,69.895 +775047,278.42,71.085 +775048,279.83,72.271 +775049,274.12,68.65 +775050,275.64,69.863 +775051,277.08,71.073 +775052,278.45,72.279 +775053,272.86,68.598 +775054,274.34,69.831 +775055,275.75,71.061 +775056,277.07,72.286 +775057,271.61,68.547 +775058,273.05,69.8 +775059,274.41,71.049 +775060,275.7,72.293 +775061,270.36,68.497 +775062,271.75,69.769 +775063,273.07,71.036 +775064,274.32,72.298 +775065,269.1,68.449 +775066,270.46,69.738 +775067,271.73,71.024 +775068,272.94,72.302 +775069,267.85,68.401 +775070,269.16,69.708 +775071,270.39,71.01 +775072,271.56,72.306 +775073,266.61,68.354 +775074,267.87,69.678 +775075,269.05,70.997 +775076,270.18,72.308 +775077,265.36,68.309 +775078,266.57,69.649 +775079,267.71,70.983 +775080,268.79,72.309 +775081,264.11,68.264 +775082,265.28,69.619 +775083,266.38,70.968 +775084,267.41,72.309 +775085,262.86,68.221 +775086,263.98,69.59 +775087,265.04,70.953 +775088,266.03,72.308 +775089,261.62,68.179 +775090,262.69,69.562 +775091,263.7,70.938 +775092,264.64,72.306 +775093,260.37,68.137 +775094,261.4,69.534 +775095,262.36,70.923 +775096,263.26,72.303 +775097,259.13,68.097 +775098,260.1,69.506 +775099,261.01,70.907 +775100,261.87,72.299 +775101,257.89,68.059 +775102,258.81,69.479 +775103,259.67,70.891 +775104,260.48,72.294 +775105,256.65,68.021 +775106,257.52,69.452 +775107,258.33,70.874 +775108,259.1,72.287 +775109,255.4,67.984 +775110,256.23,69.425 +775111,256.99,70.857 +775112,257.71,72.279 +775113,254.16,67.949 +775114,254.93,69.399 +775115,255.65,70.84 +775116,256.32,72.271 +775117,252.92,67.915 +775118,253.64,69.373 +775119,254.31,70.822 +775120,254.93,72.261 +775121,251.68,67.882 +775122,252.35,69.347 +775123,252.97,70.804 +775124,253.54,72.25 +775125,250.44,67.85 +775126,251.06,69.322 +775127,251.63,70.785 +775128,252.15,72.238 +775129,249.2,67.82 +775130,249.77,69.298 +775131,250.28,70.766 +775132,250.76,72.224 +775133,247.96,67.79 +775134,248.48,69.273 +775135,248.94,70.747 +775136,249.36,72.21 +775137,246.73,67.762 +775138,247.19,69.249 +775139,247.6,70.727 +775140,247.97,72.194 +775141,245.49,67.735 +775142,245.89,69.226 +775143,246.26,70.707 +775144,246.58,72.177 +775145,244.25,67.709 +775146,244.6,69.203 +775147,244.91,70.686 +775148,245.19,72.159 +775149,243.01,67.685 +775150,243.31,69.18 +775151,243.57,70.665 +775152,243.79,72.14 +775153,241.78,67.661 +775154,242.02,69.158 +775155,242.23,70.644 +775156,242.4,72.119 +775157,240.54,67.639 +775158,240.73,69.136 +775159,240.89,70.622 +775160,241.01,72.097 +775161,239.3,67.618 +775162,239.44,69.114 +775163,239.54,70.6 +775164,239.61,72.075 +775165,238.06,67.599 +775166,238.15,69.093 +775167,238.2,70.577 +775168,238.22,72.051 +775169,236.83,67.58 +775170,236.86,69.072 +775171,236.86,70.554 +775172,236.82,72.025 +775173,235.59,67.563 +775174,235.57,69.052 +775175,235.52,70.531 +775176,235.43,71.999 +775177,234.35,67.547 +775178,234.28,69.032 +775179,234.17,70.507 +775180,234.03,71.971 +775181,233.12,67.532 +775182,232.99,69.013 +775183,232.83,70.483 +775184,232.64,71.943 +775185,231.88,67.519 +775186,231.7,68.993 +775187,231.49,70.458 +775188,231.25,71.913 +775189,230.64,67.506 +775190,230.41,68.975 +775191,230.15,70.433 +775192,229.85,71.881 +775193,229.4,67.495 +775194,229.12,68.956 +775195,228.8,70.408 +775196,228.46,71.849 +775197,228.17,67.485 +775198,227.83,68.938 +775199,227.46,70.382 +775200,227.06,71.816 +775201,226.93,67.477 +775202,226.54,68.921 +775203,226.12,70.356 +775204,225.67,71.781 +775205,225.69,67.469 +775206,225.25,68.904 +775207,224.78,70.33 +775208,224.28,71.745 +775209,224.45,67.462 +775210,223.96,68.887 +775211,223.43,70.303 +775212,222.88,71.708 +775213,223.21,67.457 +775214,222.66,68.87 +775215,222.09,70.275 +775216,221.49,71.67 +775217,221.97,67.453 +775218,221.37,68.854 +775219,220.75,70.247 +775220,220.1,71.631 +775221,220.73,67.45 +775222,220.08,68.839 +775223,219.41,70.219 +775224,218.7,71.591 +775225,219.49,67.448 +775226,218.79,68.823 +775227,218.07,70.191 +775228,217.31,71.549 +775229,218.25,67.447 +775230,217.5,68.808 +775231,216.72,70.162 +775232,215.92,71.507 +775233,217,67.448 +775234,216.21,68.794 +775235,215.38,70.133 +775236,214.53,71.463 +775237,215.76,67.449 +775238,214.92,68.78 +775239,214.04,70.103 +775240,213.14,71.419 +775241,214.52,67.452 +775242,213.62,68.766 +775243,212.7,70.073 +775244,211.75,71.373 +775245,213.27,67.455 +775246,212.33,68.752 +775247,211.36,70.043 +775248,210.36,71.326 +775249,212.03,67.46 +775250,211.04,68.739 +775251,210.02,70.012 +775252,208.97,71.278 +775253,210.78,67.466 +775254,209.75,68.726 +775255,208.68,69.981 +775256,207.58,71.229 +775257,209.53,67.473 +775258,208.45,68.714 +775259,207.34,69.95 +775260,206.19,71.179 +775261,208.29,67.48 +775262,207.16,68.702 +775263,206,69.918 +775264,204.81,71.128 +775265,207.04,67.489 +775266,205.87,68.69 +775267,204.66,69.886 +775268,203.42,71.076 +775269,205.79,67.499 +775270,204.57,68.678 +775271,203.32,69.854 +775272,202.03,71.023 +775273,204.54,67.509 +775274,203.28,68.667 +775275,201.98,69.821 +775276,200.65,70.969 +775277,203.29,67.521 +775278,201.98,68.656 +775279,200.65,69.788 +775280,199.27,70.915 +775281,202.03,67.534 +775282,200.69,68.645 +775283,199.31,69.754 +775284,197.88,70.859 +775285,200.78,67.547 +775286,199.39,68.635 +775287,197.97,69.721 +775288,196.5,70.802 +775289,199.52,67.561 +775290,198.1,68.625 +775291,196.63,69.687 +775292,195.12,70.745 +775293,198.27,67.576 +775294,196.8,68.615 +775295,195.3,69.653 +775296,193.74,70.686 +775297,197.01,67.592 +775298,195.51,68.606 +775299,193.96,69.618 +775300,192.36,70.627 +775301,195.75,67.609 +775302,194.21,68.597 +775303,192.62,69.583 +775304,190.99,70.567 +775305,194.49,67.627 +775306,192.91,68.588 +775307,191.29,69.548 +775308,189.61,70.506 +775309,193.23,67.645 +775310,191.62,68.579 +775311,189.95,69.513 +775312,188.24,70.444 +775313,191.97,67.664 +775314,190.32,68.571 +775315,188.62,69.477 +775316,186.86,70.382 +775317,190.71,67.684 +775318,189.02,68.563 +775319,187.28,69.441 +775320,185.49,70.318 +775321,189.44,67.705 +775322,187.72,68.555 +775323,185.95,69.405 +775324,184.12,70.254 +775325,188.18,67.726 +775326,186.42,68.547 +775327,184.62,69.369 +775328,182.75,70.19 +775329,186.91,67.748 +775330,185.12,68.54 +775331,183.28,69.332 +775332,181.38,70.124 +775333,185.64,67.771 +775334,183.82,68.532 +775335,181.95,69.295 +775336,180.01,70.058 +775337,184.37,67.794 +775338,182.52,68.525 +775339,180.62,69.258 +775340,178.65,69.992 +775341,183.1,67.818 +775342,181.22,68.518 +775343,179.29,69.221 +775344,177.28,69.924 +775345,181.82,67.842 +775346,179.92,68.512 +775347,177.95,69.183 +775348,175.92,69.856 +775349,180.55,67.867 +775350,178.62,68.505 +775351,176.62,69.146 +775352,174.56,69.788 +775353,179.27,67.892 +775354,177.32,68.499 +775355,175.29,69.108 +775356,173.2,69.719 +775357,178,67.918 +775358,176.01,68.492 +775359,173.96,69.07 +775360,171.84,69.649 +775361,176.72,67.945 +775362,174.71,68.486 +775363,172.64,69.031 +775364,170.48,69.579 +775365,175.44,67.971 +775366,173.41,68.481 +775367,171.31,68.993 +775368,169.12,69.508 +775369,174.15,67.999 +775370,172.1,68.475 +775371,169.98,68.955 +775372,167.77,69.437 +775373,172.87,68.026 +775374,170.8,68.469 +775375,168.65,68.916 +775376,166.42,69.366 +775377,171.58,68.054 +775378,169.49,68.464 +775379,167.32,68.877 +775380,165.07,69.294 +775381,170.3,68.082 +775382,168.19,68.458 +775383,166,68.838 +775384,163.72,69.222 +775385,169.01,68.111 +775386,166.88,68.453 +775387,164.67,68.799 +775388,162.37,69.149 +775389,167.72,68.14 +775390,165.57,68.448 +775391,163.35,68.76 +775392,161.03,69.076 +775393,166.43,68.169 +775394,164.27,68.442 +775395,162.02,68.721 +775396,159.68,69.003 +775397,165.13,68.198 +775398,162.96,68.437 +775399,160.7,68.681 +775400,158.34,68.93 +775401,163.84,68.227 +775402,161.65,68.432 +775403,159.38,68.642 +775404,157,68.856 +775405,162.54,68.257 +775406,160.34,68.427 +775407,158.05,68.602 +775408,155.66,68.782 +775409,161.24,68.286 +775410,159.03,68.422 +775411,156.73,68.563 +775412,154.32,68.708 +775413,159.94,68.316 +775414,157.72,68.418 +775415,155.41,68.523 +775416,152.99,68.634 +775417,158.64,68.346 +775418,156.41,68.413 +775419,154.09,68.484 +775420,151.66,68.559 +775421,157.33,68.376 +775422,155.1,68.408 +775423,152.77,68.444 +775424,150.33,68.485 +775425,156.03,68.406 +775426,153.79,68.403 +775427,151.45,68.404 +775428,149,68.41 +775429,154.72,68.436 +775430,152.47,68.398 +775431,150.13,68.365 +775432,147.67,68.335 +775433,153.41,68.466 +775434,151.16,68.393 +775435,148.81,68.325 +775436,146.34,68.261 +775437,152.1,68.496 +775438,149.85,68.388 +775439,147.49,68.285 +775440,145.02,68.186 +775441,150.79,68.525 +775442,148.53,68.383 +775443,146.17,68.245 +775444,143.7,68.112 +775445,149.48,68.555 +775446,147.22,68.378 +775447,144.86,68.206 +775448,142.38,68.037 +775449,148.16,68.585 +775450,145.9,68.373 +775451,143.54,68.166 +775452,141.06,67.963 +775453,146.84,68.614 +775454,144.59,68.368 +775455,142.23,68.126 +775456,139.74,67.888 +775457,145.52,68.643 +775458,143.27,68.363 +775459,140.91,68.087 +775460,138.43,67.814 +775461,144.2,68.672 +775462,141.95,68.358 +775463,139.6,68.047 +775464,137.12,67.74 +775465,142.88,68.7 +775466,140.64,68.353 +775467,138.28,68.008 +775468,135.81,67.666 +775469,141.56,68.729 +775470,139.32,68.347 +775471,136.97,67.968 +775472,134.5,67.593 +775473,140.23,68.757 +775474,138,68.342 +775475,135.66,67.929 +775476,133.19,67.52 +775477,138.9,68.784 +775478,136.68,68.336 +775479,134.35,67.89 +775480,131.89,67.447 +775481,137.57,68.812 +775482,135.36,68.33 +775483,133.04,67.851 +775484,130.58,67.374 +775485,136.24,68.838 +775486,134.04,68.324 +775487,131.72,67.812 +775488,129.28,67.302 +775489,134.91,68.865 +775490,132.72,68.318 +775491,130.42,67.773 +775492,127.98,67.23 +775493,133.58,68.891 +775494,131.4,68.312 +775495,129.11,67.734 +775496,126.69,67.158 +775497,132.24,68.916 +775498,130.07,68.306 +775499,127.8,67.696 +775500,125.39,67.087 +775501,130.9,68.941 +775502,128.75,68.299 +775503,126.49,67.657 +775504,124.1,67.016 +775505,129.56,68.966 +775506,127.43,68.293 +775507,125.18,67.619 +775508,122.81,66.946 +775509,128.22,68.99 +775510,126.1,68.286 +775511,123.88,67.581 +775512,121.52,66.876 +775513,126.88,69.013 +775514,124.78,68.279 +775515,122.57,67.543 +775516,120.23,66.807 +775517,125.54,69.036 +775518,123.46,68.271 +775519,121.26,67.505 +775520,118.94,66.739 +775521,124.19,69.058 +775522,122.13,68.264 +775523,119.96,67.468 +775524,117.66,66.671 +775525,122.84,69.08 +775526,120.8,68.256 +775527,118.65,67.43 +775528,116.38,66.603 +775529,121.49,69.101 +775530,119.48,68.248 +775531,117.35,67.393 +775532,115.09,66.537 +775533,120.14,69.121 +775534,118.15,68.24 +775535,116.05,67.356 +775536,113.82,66.47 +775537,118.79,69.14 +775538,116.82,68.232 +775539,114.74,67.319 +775540,112.54,66.405 +775541,117.44,69.159 +775542,115.5,68.223 +775543,113.44,67.283 +775544,111.26,66.34 +775545,116.08,69.177 +775546,114.17,68.214 +775547,112.14,67.247 +775548,109.99,66.276 +775549,114.73,69.194 +775550,112.84,68.205 +775551,110.84,67.211 +775552,108.72,66.213 +775553,113.37,69.21 +775554,111.51,68.195 +775555,109.54,67.175 +775556,107.45,66.151 +775557,112.01,69.226 +775558,110.18,68.186 +775559,108.24,67.139 +775560,106.18,66.089 +775561,110.65,69.241 +775562,108.85,68.176 +775563,106.94,67.104 +775564,104.91,66.028 +775565,109.29,69.254 +775566,107.52,68.165 +775567,105.64,67.069 +775568,103.65,65.968 +775569,107.93,69.267 +775570,106.19,68.155 +775571,104.34,67.035 +775572,102.38,65.909 +775573,106.56,69.279 +775574,104.85,68.144 +775575,103.04,67 +775576,101.12,65.851 +775577,105.2,69.291 +775578,103.52,68.132 +775579,101.75,66.966 +775580,99.859,65.794 +775581,103.83,69.301 +775582,102.19,68.121 +775583,100.45,66.932 +775584,98.599,65.737 +775585,102.46,69.31 +775586,100.86,68.109 +775587,99.154,66.899 +775588,97.341,65.682 +775589,101.09,69.318 +775590,99.523,68.097 +775591,97.858,66.866 +775592,96.085,65.627 +775593,99.721,69.326 +775594,98.189,68.084 +775595,96.562,66.833 +775596,94.829,65.574 +775597,98.349,69.332 +775598,96.854,68.071 +775599,95.267,66.8 +775600,93.576,65.521 +775601,96.976,69.337 +775602,95.52,68.058 +775603,93.972,66.768 +775604,92.323,65.47 +775605,95.602,69.341 +775606,94.185,68.044 +775607,92.678,66.736 +775608,91.072,65.419 +775609,94.226,69.345 +775610,92.849,68.03 +775611,91.384,66.705 +775612,89.822,65.37 +775613,92.85,69.347 +775614,91.513,68.016 +775615,90.091,66.674 +775616,88.573,65.321 +775617,91.472,69.348 +775618,90.177,68.001 +775619,88.798,66.643 +775620,87.325,65.274 +775621,90.094,69.348 +775622,88.841,67.986 +775623,87.505,66.612 +775624,86.078,65.228 +775625,88.714,69.347 +775626,87.504,67.971 +775627,86.213,66.582 +775628,84.833,65.183 +775629,87.334,69.344 +775630,86.167,67.955 +775631,84.921,66.553 +775632,83.589,65.139 +775633,85.953,69.341 +775634,84.829,67.939 +775635,83.63,66.523 +775636,82.345,65.096 +775637,84.57,69.336 +775638,83.492,67.922 +775639,82.338,66.494 +775640,81.103,65.055 +775641,83.187,69.331 +775642,82.154,67.905 +775643,81.047,66.466 +775644,79.861,65.014 +775645,81.803,69.324 +775646,80.815,67.888 +775647,79.757,66.437 +775648,78.621,64.975 +775649,80.418,69.316 +775650,79.477,67.87 +775651,78.467,66.41 +775652,77.381,64.937 +775653,79.033,69.307 +775654,78.138,67.852 +775655,77.177,66.382 +775656,76.142,64.9 +775657,77.646,69.297 +775658,76.799,67.833 +775659,75.887,66.355 +775660,74.904,64.864 +775661,76.259,69.285 +775662,75.46,67.814 +775663,74.597,66.328 +775664,73.666,64.829 +775665,74.871,69.272 +775666,74.12,67.795 +775667,73.308,66.302 +775668,72.43,64.796 +775669,73.483,69.258 +775670,72.78,67.775 +775671,72.019,66.276 +775672,71.194,64.764 +775673,72.094,69.243 +775674,71.441,67.755 +775675,70.73,66.251 +775676,69.958,64.733 +775677,70.704,69.227 +775678,70.101,67.734 +775679,69.442,66.225 +775680,68.723,64.703 +775681,69.314,69.21 +775682,68.76,67.713 +775683,68.153,66.201 +775684,67.489,64.674 +775685,67.923,69.191 +775686,67.42,67.691 +775687,66.865,66.176 +775688,66.255,64.647 +775689,66.532,69.171 +775690,66.079,67.669 +775691,65.577,66.153 +775692,65.021,64.621 +775693,65.141,69.15 +775694,64.739,67.647 +775695,64.289,66.129 +775696,63.788,64.596 +775697,63.749,69.127 +775698,63.398,67.624 +775699,63.002,66.106 +775700,62.556,64.573 +775701,62.356,69.104 +775702,62.057,67.601 +775703,61.714,66.083 +775704,61.323,64.551 +775705,60.964,69.079 +775706,60.716,67.578 +775707,60.426,66.061 +775708,60.091,64.529 +775709,59.571,69.053 +775710,59.375,67.554 +775711,59.139,66.039 +775712,58.859,64.51 +775713,58.177,69.026 +775714,58.034,67.529 +775715,57.852,66.017 +775716,57.627,64.491 +775717,56.784,68.997 +775718,56.693,67.505 +775719,56.564,65.996 +775720,56.395,64.474 +775721,55.39,68.968 +775722,55.352,67.479 +775723,55.277,65.976 +775724,55.164,64.458 +775725,53.996,68.937 +775726,54.011,67.454 +775727,53.99,65.955 +775728,53.932,64.443 +775729,52.602,68.904 +775730,52.67,67.428 +775731,52.703,65.935 +775732,52.7,64.429 +775733,51.208,68.871 +775734,51.329,67.401 +775735,51.416,65.916 +775736,51.469,64.417 +775737,49.814,68.837 +775738,49.987,67.374 +775739,50.129,65.897 +775740,50.237,64.405 +775741,48.42,68.801 +775742,48.646,67.347 +775743,48.842,65.878 +775744,49.005,64.395 +775745,47.026,68.764 +775746,47.305,67.319 +775747,47.554,65.86 +775748,47.773,64.387 +775749,45.632,68.726 +775750,45.964,67.291 +775751,46.267,65.842 +775752,46.54,64.379 +775753,44.238,68.687 +775754,44.623,67.262 +775755,44.98,65.824 +775756,45.307,64.373 +775757,42.844,68.646 +775758,43.282,67.234 +775759,43.692,65.807 +775760,44.074,64.367 +775761,41.451,68.605 +775762,41.942,67.204 +775763,42.405,65.79 +775764,42.841,64.363 +775765,40.058,68.562 +775766,40.601,67.174 +775767,41.118,65.774 +775768,41.607,64.36 +775769,38.665,68.518 +775770,39.26,67.144 +775771,39.83,65.757 +775772,40.373,64.358 +775773,37.272,68.473 +775774,37.92,67.114 +775775,38.542,65.742 +775776,39.138,64.358 +775777,35.879,68.427 +775778,36.58,67.083 +775779,37.254,65.726 +775780,37.903,64.358 +775781,34.487,68.379 +775782,35.24,67.052 +775783,35.966,65.711 +775784,36.667,64.36 +775785,33.096,68.331 +775786,33.9,67.02 +775787,34.678,65.697 +775788,35.431,64.363 +775789,31.705,68.282 +775790,32.56,66.988 +775791,33.389,65.683 +775792,34.194,64.366 +775793,30.314,68.231 +775794,31.221,66.956 +775795,32.101,65.669 +775796,32.956,64.371 +775797,28.924,68.179 +775798,29.881,66.923 +775799,30.812,65.655 +775800,31.717,64.377 +775801,27.534,68.127 +775802,28.542,66.89 +775803,29.523,65.642 +775804,30.478,64.384 +775805,26.146,68.073 +775806,27.204,66.856 +775807,28.234,65.629 +775808,29.238,64.392 +775809,24.757,68.018 +775810,25.865,66.823 +775811,26.944,65.616 +775812,27.997,64.401 +775813,23.37,67.963 +775814,24.527,66.788 +775815,25.655,65.604 +775816,26.755,64.411 +775817,21.983,67.906 +775818,23.189,66.754 +775819,24.364,65.592 +775820,25.512,64.422 +775821,20.597,67.848 +775822,21.851,66.719 +775823,23.074,65.58 +775824,24.269,64.434 +775825,19.212,67.79 +775826,20.514,66.684 +775827,21.784,65.569 +775828,23.024,64.446 +775829,17.827,67.73 +775830,19.177,66.649 +775831,20.493,65.558 +775832,21.778,64.46 +775833,16.444,67.67 +775834,17.84,66.613 +775835,19.201,65.547 +775836,20.531,64.475 +775837,15.061,67.609 +775838,16.504,66.577 +775839,17.91,65.537 +775840,19.284,64.49 +775841,13.679,67.546 +775842,15.168,66.54 +775843,16.618,65.526 +775844,18.035,64.506 +775845,12.299,67.483 +775846,13.832,66.504 +775847,15.326,65.516 +775848,16.784,64.523 +775849,10.919,67.419 +775850,12.497,66.467 +775851,14.033,65.507 +775852,15.533,64.541 +775853,9.5406,67.355 +775854,11.162,66.429 +775855,12.74,65.497 +775856,14.281,64.56 +775857,8.1631,67.289 +775858,9.8273,66.392 +775859,11.447,65.488 +775860,13.027,64.58 +775861,6.7867,67.223 +775862,8.4932,66.354 +775863,10.153,65.479 +775864,11.772,64.6 +775865,5.4115,67.156 +775866,7.1596,66.316 +775867,8.8589,65.47 +775868,10.516,64.621 +775869,4.0375,67.088 +775870,5.8263,66.278 +775871,7.5644,65.462 +775872,9.2579,64.642 +775873,2.6647,67.02 +775874,4.4935,66.239 +775875,6.2694,65.454 +775876,7.9989,64.664 +775877,1.2932,66.95 +775878,3.1612,66.201 +775879,4.974,65.446 +775880,6.7385,64.687 +775881,359.92,66.881 +775882,1.8293,66.162 +775883,3.6781,65.438 +775884,5.4767,64.711 +775885,358.55,66.81 +775886,0.49795,66.122 +775887,2.3818,65.43 +775888,4.2135,64.735 +775889,357.19,66.739 +775890,359.17,66.083 +775891,1.0851,65.423 +775892,2.9489,64.76 +775893,355.82,66.667 +775894,357.84,66.043 +775895,359.79,65.415 +775896,1.6828,64.785 +775897,354.46,66.595 +775898,356.51,66.003 +775899,358.49,65.408 +775900,0.41518,64.81 +775901,353.09,66.522 +775902,355.18,65.963 +775903,357.19,65.401 +775904,359.15,64.837 +775905,351.73,66.449 +775906,353.85,65.923 +775907,355.89,65.394 +775908,357.88,64.863 +775909,350.37,66.375 +775910,352.52,65.883 +775911,354.59,65.387 +775912,356.6,64.89 +775913,349.01,66.301 +775914,351.19,65.842 +775915,353.29,65.381 +775916,355.33,64.918 +775917,347.66,66.227 +775918,349.86,65.802 +775919,351.99,65.374 +775920,354.05,64.945 +775921,346.3,66.152 +775922,348.54,65.761 +775923,350.69,65.368 +775924,352.78,64.974 +775925,344.95,66.076 +775926,347.21,65.72 +775927,349.39,65.362 +775928,351.5,65.002 +775929,343.59,66 +775930,345.89,65.679 +775931,348.09,65.356 +775932,350.22,65.031 +775933,342.24,65.924 +775934,344.56,65.638 +775935,346.79,65.349 +775936,348.94,65.06 +775937,340.89,65.848 +775938,343.24,65.597 +775939,345.49,65.343 +775940,347.65,65.089 +775941,339.55,65.771 +775942,341.91,65.555 +775943,344.18,65.337 +775944,346.37,65.118 +775945,338.2,65.694 +775946,340.59,65.514 +775947,342.88,65.332 +775948,345.08,65.148 +775949,336.86,65.617 +775950,339.27,65.472 +775951,341.57,65.326 +775952,343.79,65.178 +775953,335.52,65.54 +775954,337.95,65.431 +775955,340.27,65.32 +775956,342.5,65.208 +775957,334.18,65.462 +775958,336.62,65.389 +775959,338.96,65.314 +775960,341.21,65.238 +775961,332.84,65.385 +775962,335.3,65.348 +775963,337.66,65.308 +775964,339.92,65.268 +775965,331.5,65.307 +775966,333.98,65.306 +775967,336.35,65.302 +775968,338.62,65.298 +775969,330.17,65.229 +775970,332.66,65.264 +775971,335.04,65.297 +775972,337.32,65.328 +775973,328.83,65.152 +775974,331.34,65.222 +775975,333.74,65.291 +775976,336.03,65.358 +775977,327.5,65.074 +775978,330.03,65.181 +775979,332.43,65.285 +775980,334.72,65.388 +775981,326.18,64.996 +775982,328.71,65.139 +775983,331.12,65.279 +775984,333.42,65.418 +775985,324.85,64.918 +775986,327.39,65.097 +775987,329.81,65.273 +775988,332.12,65.447 +775989,323.52,64.841 +775990,326.07,65.055 +775991,328.5,65.267 +775992,330.81,65.477 +775993,322.2,64.763 +775994,324.76,65.014 +775995,327.19,65.261 +775996,329.5,65.506 +775997,320.88,64.686 +775998,323.44,64.972 +775999,325.88,65.255 +776000,328.2,65.536 +776001,319.56,64.609 +776002,322.13,64.93 +776003,324.56,65.249 +776004,326.88,65.565 +776005,318.24,64.532 +776006,320.82,64.889 +776007,323.25,65.243 +776008,325.57,65.593 +776009,316.93,64.455 +776010,319.5,64.847 +776011,321.94,65.236 +776012,324.26,65.622 +776013,315.61,64.378 +776014,318.19,64.806 +776015,320.62,65.23 +776016,322.94,65.65 +776017,314.3,64.302 +776018,316.88,64.765 +776019,319.31,65.223 +776020,321.62,65.678 +776021,312.99,64.226 +776022,315.57,64.724 +776023,318,65.217 +776024,320.3,65.705 +776025,311.69,64.15 +776026,314.26,64.682 +776027,316.68,65.21 +776028,318.98,65.732 +776029,310.38,64.075 +776030,312.95,64.641 +776031,315.36,65.203 +776032,317.66,65.759 +776033,309.08,64 +776034,311.64,64.601 +776035,314.05,65.196 +776036,316.33,65.785 +776037,307.78,63.926 +776038,310.33,64.56 +776039,312.73,65.188 +776040,315.01,65.811 +776041,306.48,63.852 +776042,309.02,64.519 +776043,311.41,65.181 +776044,313.68,65.836 +776045,305.18,63.778 +776046,307.71,64.479 +776047,310.09,65.173 +776048,312.35,65.861 +776049,303.89,63.705 +776050,306.41,64.439 +776051,308.78,65.165 +776052,311.02,65.885 +776053,302.59,63.632 +776054,305.1,64.398 +776055,307.46,65.157 +776056,309.68,65.908 +776057,301.3,63.561 +776058,303.79,64.359 +776059,306.14,65.149 +776060,308.35,65.931 +776061,300.01,63.489 +776062,302.49,64.319 +776063,304.82,65.14 +776064,307.01,65.953 +776065,298.72,63.418 +776066,301.19,64.279 +776067,303.49,65.132 +776068,305.67,65.975 +776069,297.44,63.348 +776070,299.88,64.24 +776071,302.17,65.123 +776072,304.33,65.996 +776073,296.15,63.279 +776074,298.58,64.201 +776075,300.85,65.113 +776076,302.99,66.016 +776077,294.87,63.21 +776078,297.28,64.162 +776079,299.53,65.104 +776080,301.65,66.036 +776081,293.59,63.142 +776082,295.97,64.123 +776083,298.2,65.094 +776084,300.3,66.054 +776085,292.32,63.075 +776086,294.67,64.085 +776087,296.88,65.084 +776088,298.96,66.072 +776089,291.04,63.008 +776090,293.37,64.047 +776091,295.56,65.074 +776092,297.61,66.09 +776093,289.77,62.943 +776094,292.07,64.009 +776095,294.23,65.063 +776096,296.26,66.106 +776097,288.49,62.878 +776098,290.77,63.971 +776099,292.91,65.052 +776100,294.91,66.121 +776101,287.22,62.814 +776102,289.48,63.934 +776103,291.58,65.041 +776104,293.56,66.136 +776105,285.95,62.75 +776106,288.18,63.897 +776107,290.25,65.03 +776108,292.2,66.15 +776109,284.69,62.688 +776110,286.88,63.86 +776111,288.93,65.018 +776112,290.85,66.163 +776113,283.42,62.627 +776114,285.58,63.823 +776115,287.6,65.006 +776116,289.49,66.175 +776117,282.16,62.566 +776118,284.29,63.787 +776119,286.27,64.994 +776120,288.13,66.186 +776121,280.89,62.506 +776122,282.99,63.751 +776123,284.94,64.981 +776124,286.77,66.196 +776125,279.63,62.448 +776126,281.69,63.715 +776127,283.61,64.968 +776128,285.41,66.205 +776129,278.38,62.39 +776130,280.4,63.68 +776131,282.28,64.954 +776132,284.05,66.213 +776133,277.12,62.334 +776134,279.11,63.645 +776135,280.95,64.941 +776136,282.68,66.22 +776137,275.86,62.278 +776138,277.81,63.61 +776139,279.62,64.927 +776140,281.32,66.226 +776141,274.61,62.223 +776142,276.52,63.576 +776143,278.29,64.912 +776144,279.95,66.231 +776145,273.36,62.17 +776146,275.23,63.542 +776147,276.96,64.897 +776148,278.58,66.235 +776149,272.11,62.118 +776150,273.93,63.508 +776151,275.63,64.882 +776152,277.22,66.238 +776153,270.86,62.066 +776154,272.64,63.475 +776155,274.3,64.866 +776156,275.85,66.24 +776157,269.61,62.016 +776158,271.35,63.442 +776159,272.97,64.851 +776160,274.47,66.24 +776161,268.36,61.967 +776162,270.06,63.41 +776163,271.63,64.834 +776164,273.1,66.24 +776165,267.12,61.919 +776166,268.77,63.377 +776167,270.3,64.817 +776168,271.73,66.238 +776169,265.87,61.872 +776170,267.48,63.346 +776171,268.97,64.8 +776172,270.35,66.235 +776173,264.63,61.826 +776174,266.19,63.314 +776175,267.63,64.783 +776176,268.98,66.232 +776177,263.39,61.782 +776178,264.9,63.283 +776179,266.3,64.765 +776180,267.6,66.226 +776181,262.15,61.739 +776182,263.61,63.252 +776183,264.97,64.746 +776184,266.22,66.22 +776185,260.91,61.697 +776186,262.32,63.222 +776187,263.63,64.728 +776188,264.85,66.213 +776189,259.67,61.656 +776190,261.03,63.192 +776191,262.3,64.708 +776192,263.47,66.204 +776193,258.43,61.616 +776194,259.75,63.163 +776195,260.96,64.689 +776196,262.09,66.194 +776197,257.19,61.578 +776198,258.46,63.133 +776199,259.62,64.669 +776200,260.7,66.183 +776201,255.96,61.54 +776202,257.17,63.105 +776203,258.29,64.648 +776204,259.32,66.171 +776205,254.72,61.505 +776206,255.88,63.076 +776207,256.95,64.627 +776208,257.94,66.157 +776209,253.49,61.47 +776210,254.6,63.048 +776211,255.62,64.606 +776212,256.55,66.142 +776213,252.26,61.436 +776214,253.31,63.021 +776215,254.28,64.584 +776216,255.17,66.126 +776217,251.03,61.404 +776218,252.03,62.994 +776219,252.94,64.562 +776220,253.78,66.109 +776221,249.8,61.373 +776222,250.74,62.967 +776223,251.61,64.54 +776224,252.4,66.09 +776225,248.56,61.344 +776226,249.46,62.941 +776227,250.27,64.517 +776228,251.01,66.071 +776229,247.33,61.316 +776230,248.17,62.915 +776231,248.93,64.493 +776232,249.62,66.05 +776233,246.11,61.288 +776234,246.89,62.889 +776235,247.59,64.469 +776236,248.24,66.027 +776237,244.88,61.263 +776238,245.6,62.864 +776239,246.25,64.445 +776240,246.85,66.004 +776241,243.65,61.238 +776242,244.32,62.84 +776243,244.92,64.42 +776244,245.46,65.979 +776245,242.42,61.215 +776246,243.03,62.815 +776247,243.58,64.395 +776248,244.07,65.953 +776249,241.19,61.193 +776250,241.75,62.792 +776251,242.24,64.369 +776252,242.68,65.925 +776253,239.97,61.173 +776254,240.46,62.768 +776255,240.9,64.343 +776256,241.29,65.896 +776257,238.74,61.153 +776258,239.18,62.745 +776259,239.56,64.317 +776260,239.9,65.866 +776261,237.51,61.135 +776262,237.9,62.723 +776263,238.22,64.29 +776264,238.5,65.835 +776265,236.29,61.118 +776266,236.61,62.7 +776267,236.89,64.262 +776268,237.11,65.803 +776269,235.06,61.103 +776270,235.33,62.679 +776271,235.55,64.234 +776272,235.72,65.769 +776273,233.84,61.089 +776274,234.05,62.657 +776275,234.21,64.206 +776276,234.33,65.734 +776277,232.61,61.076 +776278,232.76,62.636 +776279,232.87,64.177 +776280,232.94,65.698 +776281,231.39,61.064 +776282,231.48,62.616 +776283,231.53,64.148 +776284,231.54,65.66 +776285,230.16,61.054 +776286,230.2,62.596 +776287,230.19,64.119 +776288,230.15,65.621 +776289,228.93,61.044 +776290,228.91,62.576 +776291,228.85,64.089 +776292,228.76,65.581 +776293,227.71,61.036 +776294,227.63,62.557 +776295,227.51,64.058 +776296,227.36,65.54 +776297,226.48,61.03 +776298,226.35,62.538 +776299,226.17,64.027 +776300,225.97,65.497 +776301,225.26,61.024 +776302,225.06,62.519 +776303,224.84,63.996 +776304,224.58,65.454 +776305,224.03,61.02 +776306,223.78,62.501 +776307,223.5,63.964 +776308,223.19,65.409 +776309,222.8,61.017 +776310,222.5,62.483 +776311,222.16,63.932 +776312,221.79,65.363 +776313,221.58,61.015 +776314,221.21,62.466 +776315,220.82,63.9 +776316,220.4,65.315 +776317,220.35,61.014 +776318,219.93,62.449 +776319,219.48,63.867 +776320,219.01,65.267 +776321,219.12,61.014 +776322,218.65,62.432 +776323,218.14,63.833 +776324,217.62,65.217 +776325,217.89,61.016 +776326,217.36,62.416 +776327,216.81,63.8 +776328,216.22,65.166 +776329,216.67,61.019 +776330,216.08,62.4 +776331,215.47,63.766 +776332,214.83,65.114 +776333,215.44,61.023 +776334,214.79,62.384 +776335,214.13,63.731 +776336,213.44,65.061 +776337,214.21,61.027 +776338,213.51,62.369 +776339,212.79,63.696 +776340,212.05,65.007 +776341,212.98,61.033 +776342,212.23,62.354 +776343,211.45,63.661 +776344,210.66,64.951 +776345,211.75,61.04 +776346,210.94,62.34 +776347,210.12,63.625 +776348,209.27,64.895 +776349,210.51,61.049 +776350,209.66,62.326 +776351,208.78,63.589 +776352,207.88,64.837 +776353,209.28,61.058 +776354,208.37,62.312 +776355,207.44,63.553 +776356,206.49,64.779 +776357,208.05,61.068 +776358,207.09,62.298 +776359,206.11,63.516 +776360,205.1,64.719 +776361,206.81,61.079 +776362,205.8,62.285 +776363,204.77,63.479 +776364,203.71,64.659 +776365,205.58,61.091 +776366,204.52,62.272 +776367,203.43,63.442 +776368,202.33,64.597 +776369,204.34,61.104 +776370,203.23,62.26 +776371,202.1,63.404 +776372,200.94,64.534 +776373,203.11,61.118 +776374,201.94,62.248 +776375,200.76,63.366 +776376,199.55,64.471 +776377,201.87,61.133 +776378,200.66,62.236 +776379,199.43,63.327 +776380,198.17,64.406 +776381,200.63,61.149 +776382,199.37,62.224 +776383,198.09,63.288 +776384,196.78,64.34 +776385,199.39,61.166 +776386,198.09,62.213 +776387,196.76,63.249 +776388,195.4,64.274 +776389,198.15,61.183 +776390,196.8,62.202 +776391,195.42,63.21 +776392,194.02,64.207 +776393,196.91,61.202 +776394,195.51,62.191 +776395,194.09,63.17 +776396,192.63,64.138 +776397,195.66,61.221 +776398,194.22,62.18 +776399,192.75,63.13 +776400,191.25,64.069 +776401,194.42,61.241 +776402,192.93,62.17 +776403,191.42,63.09 +776404,189.87,63.999 +776405,193.17,61.261 +776406,191.65,62.16 +776407,190.09,63.049 +776408,188.49,63.929 +776409,191.93,61.283 +776410,190.36,62.15 +776411,188.76,63.009 +776412,187.12,63.857 +776413,190.68,61.305 +776414,189.07,62.14 +776415,187.42,62.967 +776416,185.74,63.785 +776417,189.43,61.328 +776418,187.78,62.131 +776419,186.09,62.926 +776420,184.36,63.712 +776421,188.18,61.351 +776422,186.49,62.122 +776423,184.76,62.885 +776424,182.99,63.638 +776425,186.93,61.375 +776426,185.2,62.113 +776427,183.43,62.843 +776428,181.62,63.564 +776429,185.67,61.4 +776430,183.91,62.104 +776431,182.1,62.801 +776432,180.24,63.489 +776433,184.42,61.425 +776434,182.62,62.095 +776435,180.77,62.758 +776436,178.87,63.413 +776437,183.16,61.451 +776438,181.32,62.087 +776439,179.44,62.716 +776440,177.5,63.337 +776441,181.9,61.477 +776442,180.03,62.079 +776443,178.11,62.673 +776444,176.13,63.26 +776445,180.64,61.504 +776446,178.74,62.07 +776447,176.78,62.63 +776448,174.77,63.182 +776449,179.38,61.531 +776450,177.45,62.062 +776451,175.45,62.587 +776452,173.4,63.104 +776453,178.12,61.559 +776454,176.15,62.055 +776455,174.13,62.544 +776456,172.04,63.026 +776457,176.86,61.587 +776458,174.86,62.047 +776459,172.8,62.501 +776460,170.68,62.947 +776461,175.59,61.616 +776462,173.56,62.039 +776463,171.47,62.457 +776464,169.31,62.867 +776465,174.32,61.644 +776466,172.27,62.032 +776467,170.15,62.414 +776468,167.95,62.788 +776469,173.05,61.673 +776470,170.97,62.024 +776471,168.82,62.37 +776472,166.6,62.707 +776473,171.78,61.703 +776474,169.68,62.017 +776475,167.5,62.326 +776476,165.24,62.627 +776477,170.51,61.732 +776478,168.38,62.01 +776479,166.17,62.282 +776480,163.88,62.546 +776481,169.24,61.762 +776482,167.08,62.003 +776483,164.85,62.237 +776484,162.53,62.465 +776485,167.96,61.792 +776486,165.78,61.996 +776487,163.53,62.193 +776488,161.18,62.383 +776489,166.69,61.823 +776490,164.49,61.989 +776491,162.2,62.149 +776492,159.83,62.301 +776493,165.41,61.853 +776494,163.19,61.982 +776495,160.88,62.104 +776496,158.48,62.219 +776497,164.13,61.883 +776498,161.89,61.975 +776499,159.56,62.06 +776500,157.14,62.137 +776501,162.84,61.914 +776502,160.59,61.968 +776503,158.24,62.015 +776504,155.79,62.055 +776505,161.56,61.945 +776506,159.29,61.961 +776507,156.92,61.971 +776508,154.45,61.972 +776509,160.27,61.975 +776510,157.99,61.954 +776511,155.6,61.926 +776512,153.11,61.89 +776513,158.99,62.006 +776514,156.68,61.947 +776515,154.28,61.881 +776516,151.77,61.807 +776517,157.7,62.036 +776518,155.38,61.94 +776519,152.97,61.837 +776520,150.43,61.724 +776521,156.41,62.067 +776522,154.08,61.933 +776523,151.65,61.792 +776524,149.1,61.641 +776525,155.11,62.097 +776526,152.78,61.926 +776527,150.33,61.747 +776528,147.76,61.559 +776529,153.82,62.128 +776530,151.47,61.919 +776531,149.02,61.702 +776532,146.43,61.476 +776533,152.52,62.158 +776534,150.17,61.912 +776535,147.7,61.658 +776536,145.1,61.394 +776537,151.22,62.188 +776538,148.86,61.905 +776539,146.39,61.613 +776540,143.77,61.311 +776541,149.92,62.217 +776542,147.56,61.897 +776543,145.07,61.569 +776544,142.45,61.229 +776545,148.62,62.247 +776546,146.25,61.89 +776547,143.76,61.524 +776548,141.12,61.147 +776549,147.32,62.276 +776550,144.94,61.883 +776551,142.44,61.48 +776552,139.8,61.065 +776553,146.01,62.305 +776554,143.64,61.875 +776555,141.13,61.435 +776556,138.48,60.983 +776557,144.71,62.333 +776558,142.33,61.867 +776559,139.82,61.391 +776560,137.16,60.902 +776561,143.4,62.361 +776562,141.02,61.86 +776563,138.51,61.347 +776564,135.85,60.821 +776565,142.09,62.389 +776566,139.71,61.852 +776567,137.2,61.302 +776568,134.54,60.74 +776569,140.78,62.416 +776570,138.4,61.843 +776571,135.89,61.258 +776572,133.22,60.66 +776573,139.46,62.443 +776574,137.09,61.835 +776575,134.58,61.215 +776576,131.91,60.58 +776577,138.15,62.47 +776578,135.78,61.827 +776579,133.27,61.171 +776580,130.61,60.5 +776581,136.83,62.495 +776582,134.47,61.818 +776583,131.97,61.127 +776584,129.3,60.421 +776585,135.51,62.521 +776586,133.16,61.809 +776587,130.66,61.084 +776588,128,60.342 +776589,134.19,62.545 +776590,131.84,61.8 +776591,129.35,61.04 +776592,126.7,60.264 +776593,132.86,62.57 +776594,130.53,61.791 +776595,128.05,60.997 +776596,125.4,60.187 +776597,131.54,62.593 +776598,129.22,61.782 +776599,126.74,60.954 +776600,124.1,60.11 +776601,130.21,62.616 +776602,127.9,61.772 +776603,125.44,60.912 +776604,122.81,60.033 +776605,128.89,62.638 +776606,126.59,61.762 +776607,124.14,60.869 +776608,121.51,59.957 +776609,127.56,62.66 +776610,125.27,61.752 +776611,122.83,60.827 +776612,120.22,59.882 +776613,126.22,62.681 +776614,123.95,61.742 +776615,121.53,60.785 +776616,118.93,59.808 +776617,124.89,62.701 +776618,122.64,61.731 +776619,120.23,60.743 +776620,117.65,59.734 +776621,123.56,62.72 +776622,121.32,61.72 +776623,118.93,60.701 +776624,116.36,59.661 +776625,122.22,62.739 +776626,120,61.709 +776627,117.63,60.66 +776628,115.08,59.589 +776629,120.88,62.756 +776630,118.68,61.698 +776631,116.33,60.618 +776632,113.8,59.517 +776633,119.54,62.773 +776634,117.36,61.686 +776635,115.03,60.578 +776636,112.52,59.447 +776637,118.2,62.789 +776638,116.04,61.674 +776639,113.73,60.537 +776640,111.24,59.377 +776641,116.86,62.804 +776642,114.72,61.662 +776643,112.44,60.496 +776644,109.97,59.308 +776645,115.51,62.819 +776646,113.4,61.649 +776647,111.14,60.456 +776648,108.7,59.24 +776649,114.17,62.832 +776650,112.08,61.636 +776651,109.84,60.417 +776652,107.43,59.173 +776653,112.82,62.844 +776654,110.76,61.623 +776655,108.55,60.377 +776656,106.16,59.107 +776657,111.47,62.856 +776658,109.44,61.609 +776659,107.25,60.338 +776660,104.89,59.041 +776661,110.12,62.866 +776662,108.12,61.595 +776663,105.96,60.299 +776664,103.62,58.977 +776665,108.77,62.875 +776666,106.79,61.581 +776667,104.67,60.261 +776668,102.36,58.914 +776669,107.41,62.884 +776670,105.47,61.566 +776671,103.37,60.222 +776672,101.1,58.852 +776673,106.06,62.891 +776674,104.14,61.551 +776675,102.08,60.184 +776676,99.841,58.791 +776677,104.7,62.897 +776678,102.82,61.535 +776679,100.79,60.147 +776680,98.583,58.73 +776681,103.35,62.902 +776682,101.49,61.52 +776683,99.497,60.11 +776684,97.327,58.671 +776685,101.99,62.906 +776686,100.17,61.503 +776687,98.206,60.073 +776688,96.073,58.614 +776689,100.63,62.909 +776690,98.843,61.487 +776691,96.916,60.036 +776692,94.821,58.557 +776693,99.264,62.911 +776694,97.516,61.47 +776695,95.626,60 +776696,93.57,58.501 +776697,97.901,62.912 +776698,96.189,61.452 +776699,94.337,59.965 +776700,92.321,58.447 +776701,96.537,62.911 +776702,94.862,61.435 +776703,93.049,59.929 +776704,91.073,58.393 +776705,95.172,62.909 +776706,93.534,61.417 +776707,91.761,59.894 +776708,89.827,58.341 +776709,93.805,62.906 +776710,92.206,61.398 +776711,90.473,59.86 +776712,88.583,58.29 +776713,92.437,62.902 +776714,90.877,61.379 +776715,89.186,59.825 +776716,87.34,58.241 +776717,91.068,62.897 +776718,89.548,61.359 +776719,87.899,59.792 +776720,86.098,58.192 +776721,89.697,62.89 +776722,88.219,61.34 +776723,86.613,59.758 +776724,84.858,58.145 +776725,88.326,62.882 +776726,86.889,61.319 +776727,85.327,59.725 +776728,83.62,58.099 +776729,86.953,62.873 +776730,85.559,61.299 +776731,84.042,59.693 +776732,82.382,58.055 +776733,85.58,62.863 +776734,84.229,61.277 +776735,82.757,59.661 +776736,81.147,58.011 +776737,84.205,62.851 +776738,82.898,61.256 +776739,81.473,59.629 +776740,79.912,57.969 +776741,82.83,62.838 +776742,81.567,61.234 +776743,80.189,59.597 +776744,78.678,57.929 +776745,81.453,62.824 +776746,80.235,61.211 +776747,78.906,59.567 +776748,77.446,57.889 +776749,80.076,62.809 +776750,78.904,61.188 +776751,77.622,59.536 +776752,76.215,57.851 +776753,78.697,62.792 +776754,77.572,61.165 +776755,76.34,59.506 +776756,74.985,57.815 +776757,77.318,62.774 +776758,76.239,61.141 +776759,75.057,59.476 +776760,73.756,57.779 +776761,75.938,62.754 +776762,74.907,61.117 +776763,73.775,59.447 +776764,72.528,57.745 +776765,74.557,62.734 +776766,73.574,61.092 +776767,72.493,59.418 +776768,71.301,57.712 +776769,73.175,62.712 +776770,72.241,61.067 +776771,71.212,59.39 +776772,70.075,57.681 +776773,71.793,62.688 +776774,70.907,61.041 +776775,69.931,59.362 +776776,68.85,57.651 +776777,70.41,62.663 +776778,69.574,61.015 +776779,68.65,59.335 +776780,67.625,57.623 +776781,69.026,62.637 +776782,68.24,60.988 +776783,67.369,59.308 +776784,66.402,57.595 +776785,67.642,62.61 +776786,66.906,60.961 +776787,66.089,59.281 +776788,65.179,57.569 +776789,66.256,62.581 +776790,65.572,60.934 +776791,64.809,59.255 +776792,63.957,57.545 +776793,64.871,62.551 +776794,64.238,60.906 +776795,63.529,59.229 +776796,62.735,57.522 +776797,63.485,62.519 +776798,62.903,60.877 +776799,62.25,59.204 +776800,61.514,57.5 +776801,62.098,62.487 +776802,61.569,60.848 +776803,60.97,59.179 +776804,60.293,57.48 +776805,60.711,62.452 +776806,60.234,60.819 +776807,59.691,59.155 +776808,59.073,57.461 +776809,59.323,62.417 +776810,58.899,60.789 +776811,58.412,59.131 +776812,57.854,57.443 +776813,57.935,62.38 +776814,57.564,60.759 +776815,57.134,59.108 +776816,56.635,57.427 +776817,56.546,62.342 +776818,56.229,60.728 +776819,55.855,59.084 +776820,55.416,57.412 +776821,55.158,62.303 +776822,54.894,60.697 +776823,54.576,59.062 +776824,54.197,57.398 +776825,53.769,62.262 +776826,53.559,60.665 +776827,53.298,59.04 +776828,52.979,57.386 +776829,52.379,62.22 +776830,52.224,60.633 +776831,52.02,59.018 +776832,51.761,57.375 +776833,50.99,62.176 +776834,50.889,60.6 +776835,50.741,58.996 +776836,50.542,57.365 +776837,49.6,62.131 +776838,49.554,60.567 +776839,49.463,58.976 +776840,49.324,57.357 +776841,48.21,62.085 +776842,48.218,60.534 +776843,48.185,58.955 +776844,48.106,57.35 +776845,46.82,62.038 +776846,46.883,60.5 +776847,46.907,58.935 +776848,46.888,57.344 +776849,45.43,61.989 +776850,45.548,60.465 +776851,45.629,58.915 +776852,45.67,57.34 +776853,44.04,61.939 +776854,44.213,60.431 +776855,44.351,58.896 +776856,44.452,57.336 +776857,42.649,61.888 +776858,42.877,60.395 +776859,43.073,58.877 +776860,43.234,57.335 +776861,41.259,61.836 +776862,41.542,60.36 +776863,41.795,58.859 +776864,42.015,57.334 +776865,39.869,61.782 +776866,40.207,60.324 +776867,40.517,58.841 +776868,40.796,57.334 +776869,38.479,61.727 +776870,38.872,60.287 +776871,39.239,58.823 +776872,39.577,57.336 +776873,37.089,61.671 +776874,37.538,60.25 +776875,37.961,58.806 +776876,38.357,57.339 +776877,35.7,61.614 +776878,36.203,60.213 +776879,36.683,58.789 +776880,37.138,57.343 +776881,34.31,61.555 +776882,34.868,60.175 +776883,35.404,58.772 +776884,35.917,57.349 +776885,32.921,61.496 +776886,33.534,60.137 +776887,34.126,58.756 +776888,34.696,57.355 +776889,31.532,61.435 +776890,32.2,60.098 +776891,32.847,58.74 +776892,33.475,57.363 +776893,30.144,61.373 +776894,30.866,60.059 +776895,31.569,58.725 +776896,32.253,57.371 +776897,28.756,61.31 +776898,29.532,60.02 +776899,30.29,58.71 +776900,31.03,57.381 +776901,27.368,61.246 +776902,28.198,59.98 +776903,29.011,58.695 +776904,29.806,57.392 +776905,25.981,61.18 +776906,26.865,59.94 +776907,27.732,58.681 +776908,28.582,57.404 +776909,24.594,61.114 +776910,25.531,59.9 +776911,26.452,58.667 +776912,27.357,57.417 +776913,23.208,61.046 +776914,24.198,59.859 +776915,25.173,58.653 +776916,26.132,57.431 +776917,21.822,60.978 +776918,22.866,59.818 +776919,23.893,58.64 +776920,24.905,57.446 +776921,20.437,60.908 +776922,21.533,59.776 +776923,22.613,58.627 +776924,23.678,57.462 +776925,19.052,60.838 +776926,20.201,59.734 +776927,21.333,58.614 +776928,22.449,57.479 +776929,17.669,60.766 +776930,18.869,59.692 +776931,20.052,58.602 +776932,21.22,57.497 +776933,16.286,60.694 +776934,17.537,59.65 +776935,18.771,58.589 +776936,19.989,57.515 +776937,14.903,60.621 +776938,16.206,59.607 +776939,17.49,58.578 +776940,18.758,57.535 +776941,13.522,60.546 +776942,14.875,59.564 +776943,16.209,58.566 +776944,17.525,57.555 +776945,12.141,60.471 +776946,13.545,59.52 +776947,14.927,58.555 +776948,16.292,57.577 +776949,10.762,60.395 +776950,12.214,59.476 +776951,13.645,58.544 +776952,15.057,57.599 +776953,9.3828,60.318 +776954,10.885,59.432 +776955,12.363,58.533 +776956,13.821,57.621 +776957,8.005,60.241 +776958,9.5551,59.388 +776959,11.08,58.522 +776960,12.583,57.645 +776961,6.6281,60.162 +776962,8.2261,59.343 +776963,9.7974,58.512 +776964,11.345,57.669 +776965,5.2523,60.083 +776966,6.8974,59.299 +776967,8.514,58.502 +776968,10.105,57.694 +776969,3.8776,60.003 +776970,5.5692,59.253 +776971,7.2302,58.492 +776972,8.864,57.72 +776973,2.5039,59.922 +776974,4.2414,59.208 +776975,5.9461,58.482 +776976,7.6215,57.746 +776977,1.1314,59.841 +776978,2.9141,59.163 +776979,4.6615,58.473 +776980,6.3776,57.773 +776981,359.76,59.758 +776982,1.5872,59.117 +776983,3.3765,58.463 +776984,5.1324,57.8 +776985,358.39,59.676 +776986,0.26077,59.071 +776987,2.0911,58.454 +776988,3.8857,57.828 +776989,357.02,59.592 +776990,358.93,59.025 +776991,0.80533,58.445 +776992,2.6375,57.857 +776993,355.65,59.509 +776994,357.61,58.978 +776995,359.52,58.437 +776996,1.3878,57.886 +776997,354.29,59.424 +776998,356.28,58.932 +776999,358.23,58.428 +777000,0.13663,57.915 +777001,352.92,59.339 +777002,354.96,58.885 +777003,356.95,58.419 +777004,358.88,57.945 +777005,351.56,59.254 +777006,353.64,58.838 +777007,355.66,58.411 +777008,357.63,57.975 +777009,350.2,59.168 +777010,352.31,58.791 +777011,354.37,58.403 +777012,356.37,58.006 +777013,348.84,59.081 +777014,350.99,58.744 +777015,353.08,58.395 +777016,355.12,58.036 +777017,347.48,58.995 +777018,349.67,58.696 +777019,351.79,58.387 +777020,353.86,58.068 +777021,346.12,58.907 +777022,348.35,58.649 +777023,350.5,58.379 +777024,352.6,58.099 +777025,344.76,58.82 +777026,347.02,58.601 +777027,349.21,58.371 +777028,351.33,58.131 +777029,343.41,58.732 +777030,345.7,58.554 +777031,347.92,58.363 +777032,350.07,58.163 +777033,342.06,58.644 +777034,344.38,58.506 +777035,346.63,58.355 +777036,348.8,58.195 +777037,340.71,58.556 +777038,343.07,58.458 +777039,345.34,58.348 +777040,347.54,58.227 +777041,339.36,58.467 +777042,341.75,58.41 +777043,344.05,58.34 +777044,346.27,58.259 +777045,338.01,58.379 +777046,340.43,58.362 +777047,342.75,58.332 +777048,345,58.292 +777049,336.66,58.29 +777050,339.11,58.314 +777051,341.46,58.325 +777052,343.72,58.324 +777053,335.32,58.201 +777054,337.79,58.266 +777055,340.17,58.317 +777056,342.45,58.357 +777057,333.98,58.112 +777058,336.48,58.218 +777059,338.87,58.309 +777060,341.17,58.389 +777061,332.63,58.023 +777062,335.16,58.17 +777063,337.58,58.302 +777064,339.9,58.422 +777065,331.3,57.934 +777066,333.85,58.121 +777067,336.28,58.294 +777068,338.62,58.454 +777069,329.96,57.845 +777070,332.53,58.073 +777071,334.99,58.286 +777072,337.33,58.486 +777073,328.62,57.756 +777074,331.22,58.025 +777075,333.69,58.279 +777076,336.05,58.518 +777077,327.29,57.667 +777078,329.91,57.977 +777079,332.39,58.271 +777080,334.77,58.55 +777081,325.96,57.578 +777082,328.59,57.929 +777083,331.09,58.263 +777084,333.48,58.582 +777085,324.63,57.489 +777086,327.28,57.881 +777087,329.8,58.255 +777088,332.19,58.613 +777089,323.3,57.401 +777090,325.97,57.833 +777091,328.5,58.247 +777092,330.9,58.644 +777093,321.98,57.313 +777094,324.66,57.785 +777095,327.2,58.239 +777096,329.61,58.675 +777097,320.65,57.225 +777098,323.35,57.737 +777099,325.9,58.23 +777100,328.31,58.706 +777101,319.33,57.137 +777102,322.04,57.69 +777103,324.6,58.222 +777104,327.02,58.736 +777105,318.01,57.05 +777106,320.73,57.642 +777107,323.29,58.213 +777108,325.72,58.766 +777109,316.7,56.963 +777110,319.43,57.595 +777111,321.99,58.205 +777112,324.42,58.795 +777113,315.38,56.876 +777114,318.12,57.547 +777115,320.69,58.196 +777116,323.12,58.824 +777117,314.07,56.79 +777118,316.81,57.5 +777119,319.39,58.187 +777120,321.82,58.853 +777121,312.76,56.704 +777122,315.51,57.453 +777123,318.08,58.178 +777124,320.51,58.881 +777125,311.45,56.619 +777126,314.2,57.406 +777127,316.78,58.168 +777128,319.2,58.908 +777129,310.14,56.534 +777130,312.9,57.359 +777131,315.47,58.159 +777132,317.9,58.935 +777133,308.84,56.45 +777134,311.6,57.313 +777135,314.17,58.149 +777136,316.58,58.961 +777137,307.54,56.366 +777138,310.29,57.266 +777139,312.86,58.139 +777140,315.27,58.987 +777141,306.24,56.283 +777142,308.99,57.22 +777143,311.56,58.129 +777144,313.96,59.012 +777145,304.94,56.2 +777146,307.69,57.174 +777147,310.25,58.118 +777148,312.64,59.036 +777149,303.64,56.119 +777150,306.39,57.128 +777151,308.94,58.108 +777152,311.33,59.06 +777153,302.35,56.038 +777154,305.09,57.083 +777155,307.63,58.097 +777156,310.01,59.082 +777157,301.06,55.957 +777158,303.79,57.038 +777159,306.32,58.086 +777160,308.68,59.105 +777161,299.77,55.878 +777162,302.49,56.993 +777163,305.01,58.074 +777164,307.36,59.126 +777165,298.48,55.799 +777166,301.2,56.948 +777167,303.7,58.062 +777168,306.04,59.146 +777169,297.2,55.721 +777170,299.9,56.903 +777171,302.39,58.05 +777172,304.71,59.166 +777173,295.92,55.644 +777174,298.6,56.859 +777175,301.08,58.038 +777176,303.38,59.185 +777177,294.64,55.568 +777178,297.31,56.815 +777179,299.77,58.025 +777180,302.05,59.203 +777181,293.36,55.492 +777182,296.01,56.771 +777183,298.46,58.013 +777184,300.72,59.22 +777185,292.08,55.418 +777186,294.72,56.728 +777187,297.14,57.999 +777188,299.39,59.236 +777189,290.81,55.345 +777190,293.43,56.685 +777191,295.83,57.986 +777192,298.06,59.251 +777193,289.54,55.272 +777194,292.13,56.642 +777195,294.52,57.972 +777196,296.72,59.265 +777197,288.27,55.201 +777198,290.84,56.6 +777199,293.2,57.957 +777200,295.38,59.278 +777201,287,55.131 +777202,289.55,56.558 +777203,291.89,57.943 +777204,294.04,59.29 +777205,285.73,55.061 +777206,288.26,56.516 +777207,290.57,57.928 +777208,292.7,59.301 +777209,284.47,54.993 +777210,286.97,56.474 +777211,289.26,57.912 +777212,291.36,59.311 +777213,283.21,54.926 +777214,285.68,56.433 +777215,287.94,57.897 +777216,290.02,59.32 +777217,281.95,54.86 +777218,284.39,56.393 +777219,286.62,57.881 +777220,288.67,59.328 +777221,280.69,54.795 +777222,283.1,56.352 +777223,285.3,57.864 +777224,287.32,59.334 +777225,279.43,54.732 +777226,281.82,56.313 +777227,283.99,57.847 +777228,285.98,59.34 +777229,278.18,54.669 +777230,280.53,56.273 +777231,282.67,57.83 +777232,284.63,59.344 +777233,276.93,54.608 +777234,279.24,56.234 +777235,281.35,57.812 +777236,283.27,59.347 +777237,275.68,54.548 +777238,277.96,56.195 +777239,280.03,57.794 +777240,281.92,59.349 +777241,274.43,54.49 +777242,276.67,56.157 +777243,278.71,57.775 +777244,280.57,59.35 +777245,273.18,54.432 +777246,275.39,56.119 +777247,277.39,57.756 +777248,279.21,59.349 +777249,271.94,54.376 +777250,274.11,56.081 +777251,276.07,57.737 +777252,277.86,59.348 +777253,270.7,54.322 +777254,272.82,56.044 +777255,274.74,57.717 +777256,276.5,59.345 +777257,269.46,54.268 +777258,271.54,56.008 +777259,273.42,57.697 +777260,275.14,59.34 +777261,268.22,54.216 +777262,270.26,55.971 +777263,272.1,57.676 +777264,273.78,59.335 +777265,266.98,54.166 +777266,268.98,55.936 +777267,270.78,57.655 +777268,272.42,59.328 +777269,265.74,54.116 +777270,267.7,55.9 +777271,269.46,57.633 +777272,271.06,59.319 +777273,264.51,54.068 +777274,266.41,55.865 +777275,268.13,57.611 +777276,269.69,59.31 +777277,263.28,54.022 +777278,265.14,55.831 +777279,266.81,57.589 +777280,268.33,59.299 +777281,262.05,53.977 +777282,263.86,55.797 +777283,265.48,57.566 +777284,266.96,59.287 +777285,260.82,53.933 +777286,262.58,55.764 +777287,264.16,57.542 +777288,265.59,59.273 +777289,259.59,53.891 +777290,261.3,55.73 +777291,262.83,57.518 +777292,264.22,59.258 +777293,258.36,53.85 +777294,260.02,55.698 +777295,261.51,57.494 +777296,262.86,59.242 +777297,257.13,53.811 +777298,258.74,55.666 +777299,260.18,57.469 +777300,261.49,59.224 +777301,255.91,53.773 +777302,257.47,55.634 +777303,258.86,57.443 +777304,260.11,59.205 +777305,254.69,53.737 +777306,256.19,55.603 +777307,257.53,57.418 +777308,258.74,59.184 +777309,253.47,53.702 +777310,254.91,55.572 +777311,256.21,57.391 +777312,257.37,59.162 +777313,252.24,53.669 +777314,253.64,55.542 +777315,254.88,57.364 +777316,255.99,59.139 +777317,251.02,53.637 +777318,252.36,55.512 +777319,253.55,57.337 +777320,254.62,59.114 +777321,249.81,53.606 +777322,251.09,55.483 +777323,252.22,57.309 +777324,253.24,59.088 +777325,248.59,53.578 +777326,249.81,55.454 +777327,250.9,57.281 +777328,251.87,59.061 +777329,247.37,53.55 +777330,248.54,55.426 +777331,249.57,57.252 +777332,250.49,59.031 +777333,246.16,53.524 +777334,247.26,55.398 +777335,248.24,57.223 +777336,249.11,59.001 +777337,244.94,53.5 +777338,245.99,55.371 +777339,246.91,57.193 +777340,247.73,58.969 +777341,243.73,53.477 +777342,244.71,55.344 +777343,245.59,57.163 +777344,246.36,58.936 +777345,242.51,53.456 +777346,243.44,55.318 +777347,244.26,57.132 +777348,244.98,58.901 +777349,241.3,53.436 +777350,242.17,55.292 +777351,242.93,57.101 +777352,243.6,58.865 +777353,240.09,53.417 +777354,240.9,55.266 +777355,241.6,57.069 +777356,242.21,58.827 +777357,238.88,53.4 +777358,239.62,55.241 +777359,240.27,57.037 +777360,240.83,58.788 +777361,237.67,53.385 +777362,238.35,55.217 +777363,238.94,57.004 +777364,239.45,58.748 +777365,236.46,53.371 +777366,237.08,55.193 +777367,237.61,56.971 +777368,238.07,58.706 +777369,235.25,53.358 +777370,235.81,55.169 +777371,236.28,56.937 +777372,236.69,58.662 +777373,234.04,53.347 +777374,234.54,55.146 +777375,234.95,56.903 +777376,235.3,58.618 +777377,232.83,53.337 +777378,233.26,55.124 +777379,233.62,56.868 +777380,233.92,58.572 +777381,231.62,53.329 +777382,231.99,55.102 +777383,232.3,56.833 +777384,232.54,58.524 +777385,230.41,53.322 +777386,230.72,55.08 +777387,230.97,56.797 +777388,231.15,58.475 +777389,229.2,53.317 +777390,229.45,55.059 +777391,229.64,56.761 +777392,229.77,58.425 +777393,227.99,53.313 +777394,228.18,55.038 +777395,228.31,56.725 +777396,228.38,58.373 +777397,226.78,53.311 +777398,226.91,55.018 +777399,226.98,56.688 +777400,227,58.32 +777401,225.58,53.309 +777402,225.64,54.998 +777403,225.65,56.65 +777404,225.61,58.266 +777405,224.37,53.31 +777406,224.37,54.979 +777407,224.32,56.612 +777408,224.23,58.21 +777409,223.16,53.311 +777410,223.1,54.96 +777411,222.99,56.574 +777412,222.84,58.153 +777413,221.95,53.314 +777414,221.82,54.942 +777415,221.66,56.535 +777416,221.46,58.095 +777417,220.74,53.318 +777418,220.55,54.923 +777419,220.33,56.496 +777420,220.07,58.035 +777421,219.53,53.324 +777422,219.28,54.906 +777423,219,56.456 +777424,218.69,57.974 +777425,218.32,53.33 +777426,218.01,54.889 +777427,217.67,56.416 +777428,217.3,57.912 +777429,217.11,53.338 +777430,216.74,54.872 +777431,216.34,56.375 +777432,215.92,57.848 +777433,215.9,53.348 +777434,215.47,54.855 +777435,215.01,56.334 +777436,214.54,57.783 +777437,214.69,53.358 +777438,214.2,54.84 +777439,213.69,56.293 +777440,213.15,57.717 +777441,213.48,53.37 +777442,212.93,54.824 +777443,212.36,56.251 +777444,211.77,57.65 +777445,212.27,53.382 +777446,211.66,54.809 +777447,211.03,56.209 +777448,210.38,57.581 +777449,211.05,53.396 +777450,210.39,54.794 +777451,209.7,56.166 +777452,209,57.512 +777453,209.84,53.412 +777454,209.11,54.78 +777455,208.37,56.123 +777456,207.62,57.441 +777457,208.63,53.428 +777458,207.84,54.765 +777459,207.05,56.079 +777460,206.24,57.369 +777461,207.41,53.445 +777462,206.57,54.752 +777463,205.72,56.036 +777464,204.85,57.296 +777465,206.2,53.463 +777466,205.3,54.738 +777467,204.39,55.991 +777468,203.47,57.221 +777469,204.98,53.483 +777470,204.03,54.725 +777471,203.06,55.947 +777472,202.09,57.146 +777473,203.76,53.503 +777474,202.75,54.713 +777475,201.74,55.902 +777476,200.71,57.07 +777477,202.54,53.525 +777478,201.48,54.7 +777479,200.41,55.857 +777480,199.33,56.992 +777481,201.33,53.547 +777482,200.21,54.688 +777483,199.08,55.811 +777484,197.95,56.914 +777485,200.11,53.57 +777486,198.94,54.677 +777487,197.76,55.765 +777488,196.57,56.834 +777489,198.88,53.594 +777490,197.66,54.665 +777491,196.43,55.719 +777492,195.19,56.754 +777493,197.66,53.62 +777494,196.39,54.654 +777495,195.11,55.672 +777496,193.82,56.673 +777497,196.44,53.645 +777498,195.12,54.643 +777499,193.78,55.625 +777500,192.44,56.59 +777501,195.21,53.672 +777502,193.84,54.633 +777503,192.46,55.578 +777504,191.07,56.507 +777505,193.99,53.7 +777506,192.57,54.623 +777507,191.13,55.531 +777508,189.69,56.423 +777509,192.76,53.728 +777510,191.29,54.613 +777511,189.81,55.483 +777512,188.32,56.338 +777513,191.53,53.757 +777514,190.02,54.603 +777515,188.49,55.435 +777516,186.94,56.252 +777517,190.3,53.786 +777518,188.74,54.593 +777519,187.17,55.387 +777520,185.57,56.166 +777521,189.07,53.817 +777522,187.47,54.584 +777523,185.84,55.338 +777524,184.2,56.078 +777525,187.84,53.848 +777526,186.19,54.575 +777527,184.52,55.29 +777528,182.83,55.99 +777529,186.61,53.879 +777530,184.91,54.566 +777531,183.2,55.241 +777532,181.46,55.901 +777533,185.37,53.911 +777534,183.64,54.557 +777535,181.88,55.191 +777536,180.1,55.812 +777537,184.13,53.944 +777538,182.36,54.549 +777539,180.56,55.142 +777540,178.73,55.722 +777541,182.89,53.977 +777542,181.08,54.541 +777543,179.24,55.092 +777544,177.36,55.631 +777545,181.66,54.011 +777546,179.8,54.532 +777547,177.92,55.043 +777548,176,55.54 +777549,180.41,54.045 +777550,178.52,54.524 +777551,176.6,54.993 +777552,174.64,55.448 +777553,179.17,54.079 +777554,177.24,54.517 +777555,175.28,54.943 +777556,173.28,55.356 +777557,177.93,54.114 +777558,175.96,54.509 +777559,173.96,54.892 +777560,171.92,55.263 +777561,176.68,54.149 +777562,174.68,54.501 +777563,172.65,54.842 +777564,170.56,55.169 +777565,175.43,54.185 +777566,173.4,54.494 +777567,171.33,54.791 +777568,169.2,55.076 +777569,174.18,54.22 +777570,172.12,54.486 +777571,170.01,54.741 +777572,167.85,54.981 +777573,172.93,54.256 +777574,170.84,54.479 +777575,168.7,54.69 +777576,166.49,54.887 +777577,171.68,54.292 +777578,169.56,54.472 +777579,167.38,54.639 +777580,165.14,54.792 +777581,170.43,54.329 +777582,168.28,54.465 +777583,166.07,54.588 +777584,163.79,54.697 +777585,169.17,54.365 +777586,166.99,54.458 +777587,164.75,54.537 +777588,162.44,54.601 +777589,167.91,54.402 +777590,165.71,54.45 +777591,163.44,54.486 +777592,161.09,54.506 +777593,166.65,54.438 +777594,164.43,54.443 +777595,162.13,54.435 +777596,159.74,54.41 +777597,165.39,54.475 +777598,163.14,54.436 +777599,160.81,54.384 +777600,158.4,54.314 +777601,164.13,54.512 +777602,161.86,54.429 +777603,159.5,54.332 +777604,157.06,54.218 +777605,162.86,54.548 +777606,160.57,54.422 +777607,158.19,54.281 +777608,155.72,54.122 +777609,161.6,54.585 +777610,159.28,54.415 +777611,156.88,54.23 +777612,154.38,54.026 +777613,160.33,54.621 +777614,158,54.408 +777615,155.57,54.179 +777616,153.04,53.929 +777617,159.06,54.658 +777618,156.71,54.401 +777619,154.26,54.127 +777620,151.7,53.833 +777621,157.79,54.694 +777622,155.42,54.394 +777623,152.96,54.076 +777624,150.37,53.737 +777625,156.51,54.73 +777626,154.13,54.387 +777627,151.65,54.025 +777628,149.04,53.641 +777629,155.24,54.765 +777630,152.84,54.38 +777631,150.34,53.974 +777632,147.71,53.545 +777633,153.96,54.801 +777634,151.55,54.372 +777635,149.04,53.923 +777636,146.38,53.45 +777637,152.68,54.836 +777638,150.26,54.365 +777639,147.73,53.872 +777640,145.05,53.354 +777641,151.4,54.871 +777642,148.97,54.357 +777643,146.43,53.821 +777644,143.73,53.259 +777645,150.11,54.905 +777646,147.68,54.35 +777647,145.12,53.77 +777648,142.41,53.164 +777649,148.83,54.939 +777650,146.39,54.342 +777651,143.82,53.72 +777652,141.09,53.069 +777653,147.54,54.972 +777654,145.1,54.334 +777655,142.52,53.669 +777656,139.77,52.975 +777657,146.25,55.005 +777658,143.8,54.326 +777659,141.21,53.619 +777660,138.45,52.881 +777661,144.96,55.038 +777662,142.51,54.318 +777663,139.91,53.569 +777664,137.14,52.788 +777665,143.67,55.07 +777666,141.22,54.309 +777667,138.61,53.519 +777668,135.83,52.695 +777669,142.38,55.102 +777670,139.92,54.301 +777671,137.31,53.469 +777672,134.52,52.602 +777673,141.08,55.132 +777674,138.63,54.292 +777675,136.01,53.419 +777676,133.21,52.51 +777677,139.78,55.163 +777678,137.33,54.283 +777679,134.72,53.37 +777680,131.91,52.419 +777681,138.48,55.192 +777682,136.03,54.274 +777683,133.42,53.32 +777684,130.61,52.328 +777685,137.18,55.221 +777686,134.74,54.264 +777687,132.12,53.271 +777688,129.31,52.238 +777689,135.88,55.25 +777690,133.44,54.255 +777691,130.83,53.222 +777692,128.01,52.148 +777693,134.57,55.277 +777694,132.14,54.245 +777695,129.53,53.174 +777696,126.71,52.06 +777697,133.27,55.304 +777698,130.84,54.234 +777699,128.24,53.126 +777700,125.42,51.972 +777701,131.96,55.33 +777702,129.54,54.224 +777703,126.94,53.077 +777704,124.13,51.884 +777705,130.65,55.355 +777706,128.24,54.213 +777707,125.65,53.03 +777708,122.84,51.798 +777709,129.33,55.379 +777710,126.94,54.202 +777711,124.36,52.982 +777712,121.55,51.713 +777713,128.02,55.402 +777714,125.64,54.191 +777715,123.07,52.935 +777716,120.26,51.628 +777717,126.7,55.425 +777718,124.34,54.179 +777719,121.78,52.888 +777720,118.98,51.544 +777721,125.39,55.446 +777722,123.04,54.167 +777723,120.49,52.841 +777724,117.7,51.462 +777725,124.07,55.467 +777726,121.73,54.155 +777727,119.2,52.795 +777728,116.42,51.38 +777729,122.75,55.486 +777730,120.43,54.143 +777731,117.91,52.749 +777732,115.15,51.299 +777733,121.43,55.505 +777734,119.12,54.13 +777735,116.62,52.704 +777736,113.87,51.219 +777737,120.1,55.522 +777738,117.82,54.116 +777739,115.34,52.658 +777740,112.6,51.141 +777741,118.78,55.539 +777742,116.51,54.103 +777743,114.05,52.613 +777744,111.33,51.063 +777745,117.45,55.554 +777746,115.21,54.089 +777747,112.76,52.569 +777748,110.07,50.987 +777749,116.12,55.568 +777750,113.9,54.075 +777751,111.48,52.525 +777752,108.8,50.912 +777753,114.79,55.581 +777754,112.6,54.06 +777755,110.2,52.481 +777756,107.54,50.838 +777757,113.46,55.593 +777758,111.29,54.045 +777759,108.91,52.438 +777760,106.28,50.765 +777761,112.12,55.604 +777762,109.98,54.029 +777763,107.63,52.395 +777764,105.02,50.693 +777765,110.79,55.614 +777766,108.67,54.013 +777767,106.35,52.352 +777768,103.76,50.623 +777769,109.45,55.622 +777770,107.36,53.997 +777771,105.07,52.31 +777772,102.51,50.554 +777773,108.11,55.629 +777774,106.05,53.98 +777775,103.79,52.269 +777776,101.26,50.487 +777777,106.77,55.635 +777778,104.74,53.963 +777779,102.51,52.227 +777780,100.01,50.42 +777781,105.43,55.64 +777782,103.43,53.945 +777783,101.23,52.187 +777784,98.763,50.355 +777785,104.09,55.643 +777786,102.12,53.927 +777787,99.949,52.146 +777788,97.517,50.292 +777789,102.75,55.645 +777790,100.81,53.909 +777791,98.671,52.106 +777792,96.274,50.23 +777793,101.4,55.646 +777794,99.5,53.89 +777795,97.394,52.067 +777796,95.033,50.169 +777797,100.06,55.645 +777798,98.188,53.87 +777799,96.117,52.028 +777800,93.793,50.11 +777801,98.708,55.643 +777802,96.875,53.85 +777803,94.841,51.99 +777804,92.556,50.052 +777805,97.358,55.64 +777806,95.562,53.83 +777807,93.566,51.952 +777808,91.321,49.996 +777809,96.008,55.635 +777810,94.249,53.809 +777811,92.291,51.914 +777812,90.087,49.942 +777813,94.657,55.629 +777814,92.935,53.788 +777815,91.017,51.877 +777816,88.855,49.888 +777817,93.304,55.621 +777818,91.621,53.766 +777819,89.744,51.841 +777820,87.625,49.837 +777821,91.95,55.612 +777822,90.306,53.744 +777823,88.471,51.805 +777824,86.397,49.787 +777825,90.595,55.602 +777826,88.991,53.721 +777827,87.198,51.77 +777828,85.171,49.739 +777829,89.239,55.59 +777830,87.675,53.698 +777831,85.927,51.735 +777832,83.946,49.692 +777833,87.881,55.576 +777834,86.36,53.674 +777835,84.655,51.7 +777836,82.723,49.647 +777837,86.523,55.562 +777838,85.044,53.65 +777839,83.385,51.667 +777840,81.502,49.603 +777841,85.163,55.545 +777842,83.727,53.625 +777843,82.114,51.633 +777844,80.282,49.561 +777845,83.803,55.528 +777846,82.41,53.6 +777847,80.845,51.6 +777848,79.064,49.521 +777849,82.441,55.508 +777850,81.093,53.574 +777851,79.575,51.568 +777852,77.847,49.482 +777853,81.079,55.487 +777854,79.776,53.548 +777855,78.307,51.536 +777856,76.632,49.445 +777857,79.716,55.465 +777858,78.458,53.521 +777859,77.038,51.505 +777860,75.418,49.41 +777861,78.352,55.441 +777862,77.14,53.494 +777863,75.771,51.475 +777864,74.205,49.376 +777865,76.986,55.416 +777866,75.822,53.466 +777867,74.503,51.444 +777868,72.994,49.344 +777869,75.621,55.389 +777870,74.504,53.437 +777871,73.236,51.415 +777872,71.784,49.314 +777873,74.254,55.361 +777874,73.185,53.409 +777875,71.97,51.386 +777876,70.575,49.285 +777877,72.886,55.331 +777878,71.866,53.379 +777879,70.704,51.357 +777880,69.367,49.258 +777881,71.518,55.3 +777882,70.547,53.349 +777883,69.438,51.329 +777884,68.16,49.233 +777885,70.149,55.267 +777886,69.228,53.319 +777887,68.173,51.302 +777888,66.954,49.209 +777889,68.78,55.232 +777890,67.908,53.288 +777891,66.908,51.275 +777892,65.749,49.187 +777893,67.409,55.196 +777894,66.588,53.256 +777895,65.643,51.249 +777896,64.546,49.167 +777897,66.039,55.159 +777898,65.268,53.224 +777899,64.379,51.223 +777900,63.343,49.148 +777901,64.667,55.12 +777902,63.948,53.192 +777903,63.114,51.198 +777904,62.14,49.131 +777905,63.295,55.079 +777906,62.628,53.159 +777907,61.851,51.173 +777908,60.939,49.116 +777909,61.923,55.037 +777910,61.308,53.125 +777911,60.587,51.149 +777912,59.738,49.103 +777913,60.55,54.993 +777914,59.988,53.091 +777915,59.324,51.126 +777916,58.538,49.091 +777917,59.177,54.948 +777918,58.667,53.057 +777919,58.061,51.103 +777920,57.338,49.08 +777921,57.803,54.901 +777922,57.346,53.022 +777923,56.798,51.08 +777924,56.139,49.072 +777925,56.429,54.853 +777926,56.026,52.986 +777927,55.536,51.058 +777928,54.941,49.065 +777929,55.054,54.803 +777930,54.705,52.95 +777931,54.273,51.037 +777932,53.742,49.059 +777933,53.679,54.752 +777934,53.384,52.913 +777935,53.011,51.016 +777936,52.545,49.055 +777937,52.304,54.7 +777938,52.063,52.876 +777939,51.749,50.995 +777940,51.347,49.053 +777941,50.929,54.645 +777942,50.743,52.838 +777943,50.487,50.976 +777944,50.15,49.052 +777945,49.554,54.59 +777946,49.422,52.8 +777947,49.225,50.956 +777948,48.952,49.053 +777949,48.178,54.533 +777950,48.101,52.762 +777951,47.964,50.937 +777952,47.755,49.056 +777953,46.802,54.474 +777954,46.78,52.723 +777955,46.702,50.919 +777956,46.558,49.059 +777957,45.427,54.414 +777958,45.46,52.683 +777959,45.441,50.901 +777960,45.361,49.065 +777961,44.051,54.353 +777962,44.139,52.643 +777963,44.179,50.884 +777964,44.164,49.072 +777965,42.675,54.29 +777966,42.818,52.603 +777967,42.918,50.867 +777968,42.966,49.08 +777969,41.299,54.226 +777970,41.498,52.562 +777971,41.657,50.851 +777972,41.769,49.09 +777973,39.923,54.16 +777974,40.177,52.52 +777975,40.395,50.835 +777976,40.571,49.101 +777977,38.547,54.093 +777978,38.857,52.478 +777979,39.134,50.819 +777980,39.373,49.114 +777981,37.172,54.025 +777982,37.537,52.436 +777983,37.873,50.804 +777984,38.175,49.128 +777985,35.796,53.955 +777986,36.217,52.393 +777987,36.611,50.79 +777988,36.976,49.143 +777989,34.421,53.884 +777990,34.897,52.35 +777991,35.35,50.776 +777992,35.777,49.16 +777993,33.046,53.812 +777994,33.577,52.307 +777995,34.088,50.762 +777996,34.577,49.178 +777997,31.672,53.738 +777998,32.258,52.262 +777999,32.827,50.749 +778000,33.376,49.197 +778001,30.297,53.664 +778002,30.938,52.218 +778003,31.565,50.736 +778004,32.175,49.218 +778005,28.923,53.588 +778006,29.619,52.173 +778007,30.303,50.724 +778008,30.974,49.24 +778009,27.55,53.51 +778010,28.3,52.128 +778011,29.041,50.712 +778012,29.771,49.263 +778013,26.176,53.432 +778014,26.982,52.082 +778015,27.779,50.701 +778016,28.568,49.287 +778017,24.804,53.352 +778018,25.663,52.036 +778019,26.517,50.69 +778020,27.364,49.312 +778021,23.432,53.271 +778022,24.345,51.99 +778023,25.255,50.679 +778024,26.159,49.339 +778025,22.06,53.189 +778026,23.027,51.943 +778027,23.992,50.669 +778028,24.954,49.366 +778029,20.689,53.106 +778030,21.71,51.896 +778031,22.729,50.659 +778032,23.747,49.395 +778033,19.318,53.022 +778034,20.393,51.848 +778035,21.466,50.649 +778036,22.539,49.424 +778037,17.949,52.937 +778038,19.076,51.801 +778039,20.203,50.64 +778040,21.331,49.455 +778041,16.579,52.85 +778042,17.759,51.752 +778043,18.94,50.631 +778044,20.121,49.486 +778045,15.211,52.763 +778046,16.443,51.704 +778047,17.676,50.622 +778048,18.91,49.519 +778049,13.843,52.675 +778050,15.127,51.655 +778051,16.412,50.614 +778052,17.698,49.552 +778053,12.477,52.585 +778054,13.812,51.606 +778055,15.147,50.606 +778056,16.484,49.586 +778057,11.111,52.495 +778058,12.497,51.557 +778059,13.883,50.598 +778060,15.27,49.622 +778061,9.7456,52.404 +778062,11.182,51.507 +778063,12.618,50.591 +778064,14.054,49.657 +778065,8.3814,52.312 +778066,9.8679,51.457 +778067,11.353,50.584 +778068,12.837,49.694 +778069,7.0182,52.219 +778070,8.5541,51.407 +778071,10.087,50.577 +778072,11.618,49.731 +778073,5.656,52.126 +778074,7.2408,51.357 +778075,8.8211,50.571 +778076,10.398,49.769 +778077,4.2949,52.031 +778078,5.9279,51.306 +778079,7.5548,50.564 +778080,9.177,49.808 +778081,2.9348,51.936 +778082,4.6155,51.255 +778083,6.2882,50.558 +778084,7.9542,49.847 +778085,1.5758,51.84 +778086,3.3036,51.204 +778087,5.0211,50.552 +778088,6.73,49.887 +778089,0.21798,51.744 +778090,1.9921,51.153 +778091,3.7536,50.547 +778092,5.5042,49.928 +778093,358.86,51.647 +778094,0.68121,51.101 +778095,2.4858,50.541 +778096,4.2768,49.969 +778097,357.51,51.549 +778098,359.37,51.049 +778099,1.2175,50.536 +778100,3.048,50.01 +778101,356.15,51.45 +778102,358.06,50.998 +778103,359.95,50.531 +778104,1.8175,50.052 +778105,354.8,51.351 +778106,356.75,50.946 +778107,358.68,50.526 +778108,0.58537,50.094 +778109,353.45,51.252 +778110,355.44,50.893 +778111,357.41,50.521 +778112,359.35,50.137 +778113,352.1,51.152 +778114,354.13,50.841 +778115,356.14,50.517 +778116,358.12,50.18 +778117,350.75,51.051 +778118,352.83,50.789 +778119,354.87,50.512 +778120,356.88,50.223 +778121,349.4,50.951 +778122,351.52,50.736 +778123,353.6,50.508 +778124,355.64,50.267 +778125,348.06,50.849 +778126,350.21,50.684 +778127,352.33,50.503 +778128,354.4,50.31 +778129,346.71,50.748 +778130,348.91,50.631 +778131,351.05,50.499 +778132,353.16,50.354 +778133,345.37,50.646 +778134,347.6,50.578 +778135,349.78,50.495 +778136,351.91,50.398 +778137,344.03,50.544 +778138,346.3,50.525 +778139,348.51,50.491 +778140,350.67,50.443 +778141,342.69,50.442 +778142,344.99,50.473 +778143,347.24,50.487 +778144,349.42,50.487 +778145,341.35,50.339 +778146,343.69,50.42 +778147,345.96,50.483 +778148,348.17,50.531 +778149,340.01,50.237 +778150,342.39,50.367 +778151,344.69,50.479 +778152,346.92,50.575 +778153,338.68,50.134 +778154,341.09,50.314 +778155,343.41,50.475 +778156,345.67,50.62 +778157,337.35,50.031 +778158,339.78,50.261 +778159,342.14,50.471 +778160,344.41,50.664 +778161,336.01,49.928 +778162,338.48,50.208 +778163,340.86,50.467 +778164,343.16,50.708 +778165,334.69,49.825 +778166,337.18,50.155 +778167,339.58,50.463 +778168,341.9,50.752 +778169,333.36,49.723 +778170,335.88,50.103 +778171,338.31,50.459 +778172,340.64,50.795 +778173,332.03,49.62 +778174,334.59,50.05 +778175,337.03,50.455 +778176,339.37,50.839 +778177,330.71,49.517 +778178,333.29,49.997 +778179,335.75,50.451 +778180,338.11,50.882 +778181,329.39,49.415 +778182,331.99,49.945 +778183,334.47,50.447 +778184,336.84,50.925 +778185,328.07,49.313 +778186,330.69,49.892 +778187,333.19,50.443 +778188,335.58,50.967 +778189,326.75,49.211 +778190,329.4,49.84 +778191,331.91,50.438 +778192,334.31,51.01 +778193,325.43,49.109 +778194,328.1,49.788 +778195,330.63,50.434 +778196,333.04,51.051 +778197,324.12,49.008 +778198,326.81,49.736 +778199,329.35,50.429 +778200,331.76,51.093 +778201,322.81,48.907 +778202,325.52,49.684 +778203,328.07,50.425 +778204,330.49,51.134 +778205,321.5,48.807 +778206,324.22,49.632 +778207,326.79,50.42 +778208,329.21,51.174 +778209,320.19,48.707 +778210,322.93,49.581 +778211,325.5,50.415 +778212,327.93,51.214 +778213,318.89,48.607 +778214,321.64,49.529 +778215,324.22,50.41 +778216,326.65,51.253 +778217,317.58,48.508 +778218,320.35,49.478 +778219,322.94,50.404 +778220,325.37,51.292 +778221,316.28,48.41 +778222,319.06,49.427 +778223,321.65,50.399 +778224,324.08,51.33 +778225,314.98,48.312 +778226,317.77,49.376 +778227,320.37,50.393 +778228,322.8,51.367 +778229,313.69,48.215 +778230,316.48,49.326 +778231,319.08,50.387 +778232,321.51,51.404 +778233,312.39,48.119 +778234,315.2,49.276 +778235,317.79,50.381 +778236,320.22,51.44 +778237,311.1,48.023 +778238,313.91,49.226 +778239,316.51,50.374 +778240,318.93,51.475 +778241,309.81,47.928 +778242,312.62,49.176 +778243,315.22,50.367 +778244,317.63,51.509 +778245,308.52,47.834 +778246,311.34,49.127 +778247,313.93,50.361 +778248,316.34,51.543 +778249,307.24,47.741 +778250,310.05,49.078 +778251,312.64,50.353 +778252,315.04,51.575 +778253,305.95,47.649 +778254,308.77,49.029 +778255,311.35,50.346 +778256,313.74,51.607 +778257,304.67,47.558 +778258,307.49,48.981 +778259,310.06,50.338 +778260,312.44,51.638 +778261,303.39,47.467 +778262,306.21,48.933 +778263,308.77,50.33 +778264,311.14,51.668 +778265,302.12,47.378 +778266,304.93,48.885 +778267,307.48,50.321 +778268,309.83,51.697 +778269,300.84,47.29 +778270,303.65,48.837 +778271,306.19,50.313 +778272,308.53,51.724 +778273,299.57,47.202 +778274,302.37,48.791 +778275,304.9,50.304 +778276,307.22,51.751 +778277,298.3,47.116 +778278,301.09,48.744 +778279,303.6,50.294 +778280,305.91,51.777 +778281,297.04,47.031 +778282,299.81,48.698 +778283,302.31,50.284 +778284,304.6,51.802 +778285,295.77,46.948 +778286,298.53,48.652 +778287,301.02,50.274 +778288,303.29,51.825 +778289,294.51,46.865 +778290,297.25,48.607 +778291,299.72,50.264 +778292,301.97,51.848 +778293,293.25,46.784 +778294,295.98,48.562 +778295,298.43,50.253 +778296,300.66,51.869 +778297,291.99,46.704 +778298,294.7,48.517 +778299,297.13,50.242 +778300,299.34,51.889 +778301,290.74,46.626 +778302,293.43,48.473 +778303,295.84,50.23 +778304,298.02,51.908 +778305,289.48,46.549 +778306,292.16,48.43 +778307,294.54,50.218 +778308,296.7,51.926 +778309,288.23,46.473 +778310,290.88,48.387 +778311,293.24,50.205 +778312,295.38,51.942 +778313,286.99,46.398 +778314,289.61,48.344 +778315,291.95,50.192 +778316,294.05,51.957 +778317,285.74,46.326 +778318,288.34,48.302 +778319,290.65,50.179 +778320,292.73,51.971 +778321,284.5,46.254 +778322,287.07,48.26 +778323,289.35,50.165 +778324,291.4,51.984 +778325,283.25,46.184 +778326,285.8,48.219 +778327,288.05,50.151 +778328,290.07,51.995 +778329,282.01,46.116 +778330,284.53,48.178 +778331,286.75,50.136 +778332,288.75,52.004 +778333,280.78,46.049 +778334,283.26,48.138 +778335,285.45,50.121 +778336,287.41,52.013 +778337,279.54,45.984 +778338,281.99,48.099 +778339,284.15,50.106 +778340,286.08,52.02 +778341,278.31,45.921 +778342,280.73,48.06 +778343,282.85,50.09 +778344,284.75,52.025 +778345,277.08,45.859 +778346,279.46,48.021 +778347,281.55,50.073 +778348,283.41,52.03 +778349,275.85,45.799 +778350,278.19,47.983 +778351,280.25,50.056 +778352,282.08,52.032 +778353,274.62,45.74 +778354,276.93,47.946 +778355,278.95,50.038 +778356,280.74,52.034 +778357,273.4,45.683 +778358,275.67,47.909 +778359,277.65,50.02 +778360,279.4,52.033 +778361,272.17,45.628 +778362,274.4,47.873 +778363,276.34,50.002 +778364,278.06,52.032 +778365,270.95,45.575 +778366,273.14,47.837 +778367,275.04,49.983 +778368,276.72,52.028 +778369,269.73,45.524 +778370,271.88,47.802 +778371,273.74,49.963 +778372,275.38,52.024 +778373,268.52,45.474 +778374,270.61,47.768 +778375,272.43,49.943 +778376,274.04,52.017 +778377,267.3,45.426 +778378,269.35,47.734 +778379,271.13,49.923 +778380,272.69,52.009 +778381,266.09,45.38 +778382,268.09,47.701 +778383,269.82,49.902 +778384,271.35,52 +778385,264.88,45.336 +778386,266.83,47.668 +778387,268.52,49.88 +778388,270,51.989 +778389,263.67,45.294 +778390,265.57,47.636 +778391,267.21,49.858 +778392,268.65,51.976 +778393,262.46,45.253 +778394,264.31,47.604 +778395,265.91,49.835 +778396,267.3,51.962 +778397,261.25,45.214 +778398,263.05,47.574 +778399,264.6,49.812 +778400,265.95,51.946 +778401,260.05,45.178 +778402,261.8,47.543 +778403,263.3,49.788 +778404,264.6,51.929 +778405,258.84,45.143 +778406,260.54,47.514 +778407,261.99,49.764 +778408,263.25,51.91 +778409,257.64,45.11 +778410,259.28,47.485 +778411,260.68,49.739 +778412,261.9,51.89 +778413,256.44,45.079 +778414,258.02,47.456 +778415,259.38,49.714 +778416,260.55,51.867 +778417,255.24,45.05 +778418,256.77,47.429 +778419,258.07,49.688 +778420,259.19,51.844 +778421,254.04,45.023 +778422,255.51,47.401 +778423,256.76,49.661 +778424,257.84,51.818 +778425,252.84,44.997 +778426,254.26,47.375 +778427,255.45,49.634 +778428,256.49,51.791 +778429,251.65,44.974 +778430,253,47.349 +778431,254.15,49.607 +778432,255.13,51.762 +778433,250.45,44.952 +778434,251.75,47.324 +778435,252.84,49.578 +778436,253.77,51.732 +778437,249.26,44.933 +778438,250.49,47.299 +778439,251.53,49.55 +778440,252.42,51.7 +778441,248.07,44.915 +778442,249.24,47.275 +778443,250.22,49.521 +778444,251.06,51.666 +778445,246.88,44.9 +778446,247.99,47.252 +778447,248.91,49.491 +778448,249.7,51.631 +778449,245.68,44.886 +778450,246.73,47.229 +778451,247.6,49.46 +778452,248.34,51.594 +778453,244.49,44.874 +778454,245.48,47.207 +778455,246.3,49.43 +778456,246.98,51.555 +778457,243.31,44.864 +778458,244.23,47.186 +778459,244.99,49.398 +778460,245.62,51.515 +778461,242.12,44.856 +778462,242.97,47.165 +778463,243.68,49.366 +778464,244.26,51.473 +778465,240.93,44.849 +778466,241.72,47.145 +778467,242.37,49.334 +778468,242.9,51.43 +778469,239.74,44.845 +778470,240.47,47.125 +778471,241.06,49.301 +778472,241.54,51.385 +778473,238.55,44.842 +778474,239.22,47.106 +778475,239.75,49.267 +778476,240.18,51.338 +778477,237.37,44.842 +778478,237.97,47.088 +778479,238.44,49.233 +778480,238.82,51.29 +778481,236.18,44.843 +778482,236.72,47.07 +778483,237.13,49.198 +778484,237.46,51.24 +778485,235,44.846 +778486,235.47,47.053 +778487,235.82,49.163 +778488,236.09,51.188 +778489,233.81,44.85 +778490,234.21,47.036 +778491,234.51,49.127 +778492,234.73,51.135 +778493,232.63,44.857 +778494,232.96,47.02 +778495,233.21,49.091 +778496,233.37,51.08 +778497,231.44,44.865 +778498,231.71,47.005 +778499,231.9,49.055 +778500,232.01,51.024 +778501,230.26,44.875 +778502,230.46,46.99 +778503,230.59,49.017 +778504,230.64,50.966 +778505,229.07,44.887 +778506,229.21,46.976 +778507,229.28,48.98 +778508,229.28,50.907 +778509,227.89,44.9 +778510,227.96,46.962 +778511,227.97,48.941 +778512,227.92,50.846 +778513,226.7,44.915 +778514,226.71,46.949 +778515,226.66,48.903 +778516,226.56,50.783 +778517,225.52,44.932 +778518,225.46,46.937 +778519,225.35,48.863 +778520,225.19,50.719 +778521,224.33,44.95 +778522,224.21,46.925 +778523,224.04,48.824 +778524,223.83,50.654 +778525,223.14,44.97 +778526,222.96,46.913 +778527,222.73,48.784 +778528,222.47,50.587 +778529,221.96,44.992 +778530,221.71,46.903 +778531,221.43,48.743 +778532,221.11,50.518 +778533,220.77,45.015 +778534,220.46,46.892 +778535,220.12,48.702 +778536,219.74,50.449 +778537,219.58,45.039 +778538,219.21,46.882 +778539,218.81,48.66 +778540,218.38,50.377 +778541,218.4,45.065 +778542,217.96,46.873 +778543,217.5,48.618 +778544,217.02,50.305 +778545,217.21,45.093 +778546,216.71,46.864 +778547,216.19,48.576 +778548,215.66,50.23 +778549,216.02,45.122 +778550,215.46,46.856 +778551,214.89,48.533 +778552,214.3,50.155 +778553,214.83,45.152 +778554,214.21,46.849 +778555,213.58,48.489 +778556,212.94,50.078 +778557,213.64,45.184 +778558,212.96,46.841 +778559,212.27,48.446 +778560,211.58,50 +778561,212.45,45.217 +778562,211.71,46.834 +778563,210.97,48.401 +778564,210.22,49.92 +778565,211.26,45.251 +778566,210.46,46.828 +778567,209.66,48.357 +778568,208.86,49.84 +778569,210.06,45.287 +778570,209.21,46.822 +778571,208.35,48.312 +778572,207.5,49.758 +778573,208.87,45.324 +778574,207.96,46.817 +778575,207.05,48.267 +778576,206.14,49.674 +778577,207.67,45.362 +778578,206.71,46.812 +778579,205.74,48.221 +778580,204.78,49.59 +778581,206.48,45.401 +778582,205.45,46.807 +778583,204.44,48.175 +778584,203.43,49.504 +778585,205.28,45.441 +778586,204.2,46.803 +778587,203.13,48.128 +778588,202.07,49.417 +778589,204.08,45.483 +778590,202.95,46.8 +778591,201.83,48.081 +778592,200.72,49.329 +778593,202.88,45.525 +778594,201.7,46.796 +778595,200.52,48.034 +778596,199.36,49.24 +778597,201.68,45.569 +778598,200.44,46.793 +778599,199.22,47.987 +778600,198.01,49.15 +778601,200.48,45.613 +778602,199.19,46.791 +778603,197.92,47.939 +778604,196.66,49.059 +778605,199.28,45.658 +778606,197.94,46.788 +778607,196.61,47.891 +778608,195.3,48.966 +778609,198.07,45.705 +778610,196.68,46.787 +778611,195.31,47.843 +778612,193.95,48.873 +778613,196.87,45.752 +778614,195.43,46.785 +778615,194.01,47.794 +778616,192.6,48.779 +778617,195.66,45.8 +778618,194.18,46.784 +778619,192.71,47.745 +778620,191.25,48.684 +778621,194.45,45.849 +778622,192.92,46.783 +778623,191.41,47.696 +778624,189.9,48.587 +778625,193.24,45.898 +778626,191.67,46.782 +778627,190.11,47.647 +778628,188.56,48.49 +778629,192.03,45.949 +778630,190.41,46.782 +778631,188.81,47.597 +778632,187.21,48.393 +778633,190.82,46 +778634,189.16,46.782 +778635,187.51,47.547 +778636,185.87,48.294 +778637,189.6,46.051 +778638,187.9,46.782 +778639,186.21,47.497 +778640,184.52,48.195 +778641,188.38,46.103 +778642,186.64,46.783 +778643,184.91,47.447 +778644,183.18,48.094 +778645,187.17,46.156 +778646,185.39,46.783 +778647,183.61,47.396 +778648,181.84,47.994 +778649,185.95,46.209 +778650,184.13,46.784 +778651,182.31,47.346 +778652,180.5,47.892 +778653,184.72,46.263 +778654,182.87,46.785 +778655,181.02,47.295 +778656,179.16,47.79 +778657,183.5,46.317 +778658,181.61,46.787 +778659,179.72,47.244 +778660,177.82,47.687 +778661,182.28,46.371 +778662,180.35,46.788 +778663,178.42,47.193 +778664,176.48,47.584 +778665,181.05,46.426 +778666,179.1,46.79 +778667,177.13,47.142 +778668,175.15,47.48 +778669,179.82,46.481 +778670,177.84,46.792 +778671,175.83,47.09 +778672,173.81,47.376 +778673,178.59,46.537 +778674,176.58,46.794 +778675,174.54,47.039 +778676,172.48,47.271 +778677,177.36,46.592 +778678,175.31,46.796 +778679,173.25,46.988 +778680,171.15,47.166 +778681,176.13,46.648 +778682,174.05,46.798 +778683,171.95,46.936 +778684,169.82,47.06 +778685,174.89,46.704 +778686,172.79,46.8 +778687,170.66,46.884 +778688,168.5,46.955 +778689,173.65,46.76 +778690,171.53,46.803 +778691,169.37,46.833 +778692,167.17,46.848 +778693,172.41,46.816 +778694,170.27,46.805 +778695,168.08,46.781 +778696,165.85,46.742 +778697,171.17,46.872 +778698,169,46.808 +778699,166.79,46.73 +778700,164.52,46.635 +778701,169.93,46.928 +778702,167.74,46.81 +778703,165.5,46.678 +778704,163.2,46.529 +778705,168.68,46.984 +778706,166.48,46.813 +778707,164.21,46.626 +778708,161.88,46.422 +778709,167.44,47.039 +778710,165.21,46.816 +778711,162.92,46.575 +778712,160.57,46.315 +778713,166.19,47.095 +778714,163.95,46.818 +778715,161.64,46.523 +778716,159.25,46.208 +778717,164.94,47.15 +778718,162.68,46.821 +778719,160.35,46.472 +778720,157.94,46.101 +778721,163.69,47.206 +778722,161.41,46.824 +778723,159.06,46.421 +778724,156.62,45.994 +778725,162.43,47.261 +778726,160.15,46.826 +778727,157.78,46.369 +778728,155.31,45.888 +778729,161.18,47.315 +778730,158.88,46.829 +778731,156.49,46.318 +778732,154.01,45.781 +778733,159.92,47.37 +778734,157.61,46.831 +778735,155.21,46.267 +778736,152.7,45.675 +778737,158.66,47.424 +778738,156.34,46.834 +778739,153.93,46.216 +778740,151.4,45.569 +778741,157.4,47.477 +778742,155.07,46.836 +778743,152.64,46.166 +778744,150.09,45.463 +778745,156.13,47.53 +778746,153.8,46.838 +778747,151.36,46.115 +778748,148.79,45.357 +778749,154.87,47.583 +778750,152.53,46.84 +778751,150.08,46.065 +778752,147.5,45.252 +778753,153.6,47.635 +778754,151.26,46.842 +778755,148.8,46.014 +778756,146.2,45.147 +778757,152.33,47.686 +778758,149.99,46.844 +778759,147.52,45.964 +778760,144.91,45.043 +778761,151.06,47.737 +778762,148.72,46.846 +778763,146.24,45.915 +778764,143.61,44.939 +778765,149.78,47.787 +778766,147.44,46.847 +778767,144.97,45.865 +778768,142.32,44.836 +778769,148.51,47.837 +778770,146.17,46.849 +778771,143.69,45.816 +778772,141.04,44.733 +778773,147.23,47.885 +778774,144.9,46.85 +778775,142.41,45.767 +778776,139.75,44.631 +778777,145.95,47.934 +778778,143.62,46.851 +778779,141.14,45.718 +778780,138.47,44.53 +778781,144.67,47.981 +778782,142.35,46.851 +778783,139.86,45.67 +778784,137.19,44.43 +778785,143.39,48.027 +778786,141.07,46.852 +778787,138.59,45.622 +778788,135.91,44.33 +778789,142.11,48.073 +778790,139.8,46.852 +778791,137.32,45.574 +778792,134.63,44.231 +778793,140.82,48.118 +778794,138.52,46.852 +778795,136.04,45.526 +778796,133.36,44.133 +778797,139.53,48.161 +778798,137.24,46.852 +778799,134.77,45.479 +778800,132.08,44.036 +778801,138.24,48.204 +778802,135.96,46.851 +778803,133.5,45.433 +778804,130.81,43.939 +778805,136.95,48.246 +778806,134.69,46.85 +778807,132.23,45.386 +778808,129.55,43.844 +778809,135.66,48.287 +778810,133.41,46.849 +778811,130.96,45.34 +778812,128.28,43.75 +778813,134.37,48.327 +778814,132.13,46.848 +778815,129.69,45.295 +778816,127.02,43.657 +778817,133.07,48.366 +778818,130.85,46.846 +778819,128.43,45.25 +778820,125.76,43.565 +778821,131.77,48.403 +778822,129.57,46.844 +778823,127.16,45.205 +778824,124.5,43.474 +778825,130.47,48.44 +778826,128.28,46.841 +778827,125.89,45.161 +778828,123.24,43.385 +778829,129.17,48.475 +778830,127,46.838 +778831,124.63,45.117 +778832,121.99,43.297 +778833,127.87,48.509 +778834,125.72,46.835 +778835,123.36,45.073 +778836,120.74,43.21 +778837,126.56,48.542 +778838,124.44,46.832 +778839,122.1,45.031 +778840,119.49,43.124 +778841,125.26,48.574 +778842,123.16,46.828 +778843,120.84,44.988 +778844,118.24,43.04 +778845,123.95,48.605 +778846,121.87,46.823 +778847,119.57,44.946 +778848,117,42.957 +778849,122.64,48.634 +778850,120.59,46.819 +778851,118.31,44.905 +778852,115.76,42.876 +778853,121.33,48.662 +778854,119.3,46.813 +778855,117.05,44.864 +778856,114.52,42.796 +778857,120.02,48.688 +778858,118.02,46.808 +778859,115.79,44.824 +778860,113.28,42.718 +778861,118.71,48.713 +778862,116.73,46.802 +778863,114.53,44.784 +778864,112.04,42.641 +778865,117.39,48.737 +778866,115.45,46.795 +778867,113.27,44.745 +778868,110.81,42.566 +778869,116.08,48.76 +778870,114.16,46.788 +778871,112.02,44.706 +778872,109.58,42.493 +778873,114.76,48.781 +778874,112.87,46.781 +778875,110.76,44.668 +778876,108.35,42.421 +778877,113.44,48.8 +778878,111.58,46.773 +778879,109.5,44.631 +778880,107.12,42.351 +778881,112.12,48.818 +778882,110.3,46.765 +778883,108.25,44.594 +778884,105.9,42.283 +778885,110.8,48.835 +778886,109.01,46.756 +778887,106.99,44.558 +778888,104.68,42.216 +778889,109.48,48.85 +778890,107.72,46.747 +778891,105.74,44.522 +778892,103.46,42.151 +778893,108.15,48.864 +778894,106.43,46.737 +778895,104.48,44.487 +778896,102.24,42.089 +778897,106.83,48.876 +778898,105.14,46.727 +778899,103.23,44.453 +778900,101.02,42.028 +778901,105.5,48.886 +778902,103.85,46.716 +778903,101.98,44.419 +778904,99.807,41.969 +778905,104.18,48.895 +778906,102.56,46.705 +778907,100.72,44.386 +778908,98.595,41.911 +778909,102.85,48.902 +778910,101.27,46.693 +778911,99.473,44.353 +778912,97.385,41.856 +778913,101.52,48.908 +778914,99.978,46.681 +778915,98.222,44.321 +778916,96.176,41.803 +778917,100.19,48.912 +778918,98.687,46.668 +778919,96.972,44.29 +778920,94.97,41.752 +778921,98.855,48.915 +778922,97.395,46.655 +778923,95.722,44.26 +778924,93.766,41.702 +778925,97.523,48.915 +778926,96.103,46.641 +778927,94.473,44.23 +778928,92.563,41.655 +778929,96.189,48.915 +778930,94.811,46.626 +778931,93.225,44.201 +778932,91.362,41.61 +778933,94.855,48.912 +778934,93.518,46.611 +778935,91.977,44.172 +778936,90.163,41.567 +778937,93.52,48.908 +778938,92.225,46.596 +778939,90.73,44.145 +778940,88.965,41.526 +778941,92.183,48.902 +778942,90.932,46.58 +778943,89.483,44.118 +778944,87.769,41.487 +778945,90.846,48.895 +778946,89.638,46.563 +778947,88.237,44.091 +778948,86.575,41.45 +778949,89.509,48.886 +778950,88.344,46.546 +778951,86.991,44.066 +778952,85.382,41.416 +778953,88.17,48.875 +778954,87.05,46.528 +778955,85.745,44.041 +778956,84.19,41.383 +778957,86.831,48.862 +778958,85.756,46.51 +778959,84.5,44.016 +778960,83,41.353 +778961,85.491,48.848 +778962,84.462,46.491 +778963,83.256,43.993 +778964,81.812,41.325 +778965,84.15,48.832 +778966,83.167,46.471 +778967,82.012,43.97 +778968,80.624,41.299 +778969,82.809,48.814 +778970,81.872,46.451 +778971,80.768,43.948 +778972,79.438,41.275 +778973,81.467,48.794 +778974,80.577,46.431 +778975,79.525,43.927 +778976,78.253,41.253 +778977,80.124,48.773 +778978,79.282,46.41 +778979,78.282,43.906 +778980,77.069,41.234 +778981,78.781,48.75 +778982,77.987,46.388 +778983,77.039,43.886 +778984,75.886,41.216 +778985,77.438,48.725 +778986,76.691,46.366 +778987,75.797,43.867 +778988,74.704,41.201 +778989,76.094,48.699 +778990,75.396,46.343 +778991,74.555,43.848 +778992,73.523,41.188 +778993,74.75,48.671 +778994,74.1,46.319 +778995,73.314,43.831 +778996,72.343,41.177 +778997,73.405,48.641 +778998,72.804,46.295 +778999,72.072,43.814 +779000,71.164,41.169 +779001,72.06,48.609 +779002,71.509,46.271 +779003,70.831,43.797 +779004,69.985,41.162 +779005,70.714,48.575 +779006,70.213,46.246 +779007,69.591,43.782 +779008,68.807,41.158 +779009,69.368,48.54 +779010,68.917,46.22 +779011,68.35,43.767 +779012,67.63,41.156 +779013,68.022,48.503 +779014,67.621,46.194 +779015,67.11,43.753 +779016,66.453,41.156 +779017,66.676,48.465 +779018,66.325,46.167 +779019,65.87,43.739 +779020,65.277,41.158 +779021,65.329,48.424 +779022,65.029,46.139 +779023,64.63,43.726 +779024,64.101,41.162 +779025,63.983,48.382 +779026,63.733,46.111 +779027,63.39,43.714 +779028,62.925,41.168 +779029,62.636,48.339 +779030,62.437,46.083 +779031,62.151,43.703 +779032,61.75,41.176 +779033,61.289,48.293 +779034,61.141,46.054 +779035,60.911,43.692 +779036,60.575,41.187 +779037,59.942,48.246 +779038,59.845,46.024 +779039,59.672,43.682 +779040,59.4,41.199 +779041,58.595,48.197 +779042,58.549,45.994 +779043,58.433,43.673 +779044,58.225,41.214 +779045,57.248,48.147 +779046,57.253,45.963 +779047,57.193,43.665 +779048,57.05,41.23 +779049,55.902,48.094 +779050,55.957,45.932 +779051,55.954,43.657 +779052,55.875,41.249 +779053,54.555,48.041 +779054,54.662,45.901 +779055,54.715,43.649 +779056,54.7,41.269 +779057,53.208,47.985 +779058,53.366,45.868 +779059,53.476,43.643 +779060,53.524,41.291 +779061,51.862,47.928 +779062,52.071,45.836 +779063,52.237,43.637 +779064,52.349,41.316 +779065,50.515,47.869 +779066,50.775,45.802 +779067,50.998,43.632 +779068,51.173,41.342 +779069,49.169,47.809 +779070,49.48,45.768 +779071,49.759,43.627 +779072,49.996,41.37 +779073,47.824,47.747 +779074,48.186,45.734 +779075,48.52,43.623 +779076,48.819,41.4 +779077,46.478,47.684 +779078,46.891,45.699 +779079,47.281,43.62 +779080,47.642,41.431 +779081,45.133,47.619 +779082,45.596,45.664 +779083,46.042,43.617 +779084,46.464,41.465 +779085,43.788,47.552 +779086,44.302,45.628 +779087,44.803,43.615 +779088,45.285,41.5 +779089,42.444,47.484 +779090,43.008,45.592 +779091,43.563,43.613 +779092,44.106,41.537 +779093,41.1,47.415 +779094,41.714,45.555 +779095,42.324,43.612 +779096,42.926,41.575 +779097,39.757,47.344 +779098,40.421,45.518 +779099,41.084,43.612 +779100,41.745,41.615 +779101,38.414,47.271 +779102,39.127,45.481 +779103,39.844,43.612 +779104,40.564,41.657 +779105,37.071,47.197 +779106,37.834,45.443 +779107,38.604,43.613 +779108,39.381,41.7 +779109,35.73,47.122 +779110,36.542,45.404 +779111,37.364,43.615 +779112,38.197,41.745 +779113,34.389,47.045 +779114,35.249,45.365 +779115,36.123,43.616 +779116,37.013,41.791 +779117,33.048,46.967 +779118,33.957,45.326 +779119,34.883,43.619 +779120,35.827,41.839 +779121,31.708,46.888 +779122,32.666,45.286 +779123,33.642,43.622 +779124,34.64,41.888 +779125,30.369,46.807 +779126,31.374,45.246 +779127,32.401,43.625 +779128,33.452,41.939 +779129,29.031,46.725 +779130,30.083,45.206 +779131,31.159,43.629 +779132,32.263,41.991 +779133,27.694,46.642 +779134,28.793,45.165 +779135,29.918,43.634 +779136,31.072,42.044 +779137,26.357,46.557 +779138,27.502,45.124 +779139,28.676,43.639 +779140,29.881,42.098 +779141,25.021,46.471 +779142,26.213,45.082 +779143,27.433,43.644 +779144,28.687,42.154 +779145,23.686,46.384 +779146,24.923,45.04 +779147,26.191,43.65 +779148,27.493,42.21 +779149,22.352,46.296 +779150,23.634,44.998 +779151,24.948,43.656 +779152,26.297,42.268 +779153,21.019,46.207 +779154,22.346,44.956 +779155,23.704,43.663 +779156,25.1,42.327 +779157,19.688,46.117 +779158,21.058,44.913 +779159,22.461,43.67 +779160,23.901,42.387 +779161,18.357,46.026 +779162,19.77,44.87 +779163,21.217,43.678 +779164,22.7,42.448 +779165,17.027,45.933 +779166,18.483,44.826 +779167,19.972,43.686 +779168,21.498,42.51 +779169,15.698,45.84 +779170,17.196,44.783 +779171,18.727,43.694 +779172,20.295,42.573 +779173,14.371,45.745 +779174,15.91,44.739 +779175,17.482,43.703 +779176,19.089,42.637 +779177,13.044,45.65 +779178,14.625,44.695 +779179,16.236,43.712 +779180,17.882,42.701 +779181,11.719,45.554 +779182,13.34,44.65 +779183,14.99,43.721 +779184,16.674,42.766 +779185,10.395,45.457 +779186,12.055,44.606 +779187,13.744,43.731 +779188,15.464,42.832 +779189,9.0725,45.359 +779190,10.771,44.561 +779191,12.497,43.741 +779192,14.252,42.899 +779193,7.7512,45.26 +779194,9.4876,44.516 +779195,11.249,43.751 +779196,13.038,42.966 +779197,6.4312,45.161 +779198,8.2047,44.471 +779199,10.001,43.762 +779200,11.822,43.034 +779201,5.1126,45.061 +779202,6.9224,44.426 +779203,8.7526,43.773 +779204,10.605,43.102 +779205,3.7955,44.96 +779206,5.6407,44.38 +779207,7.5037,43.784 +779208,9.3856,43.171 +779209,2.4797,44.859 +779210,4.3596,44.335 +779211,6.2542,43.795 +779212,8.1646,43.241 +779213,1.1655,44.757 +779214,3.0791,44.289 +779215,5.0042,43.807 +779216,6.9418,43.31 +779217,359.85,44.654 +779218,1.7992,44.243 +779219,3.7538,43.818 +779220,5.7171,43.381 +779221,358.54,44.551 +779222,0.51998,44.197 +779223,2.5027,43.83 +779224,4.4905,43.451 +779225,357.23,44.447 +779226,359.24,44.151 +779227,1.2512,43.842 +779228,3.262,43.522 +779229,355.92,44.343 +779230,357.96,44.105 +779231,360,43.855 +779232,2.0317,43.592 +779233,354.62,44.239 +779234,356.69,44.059 +779235,358.75,43.867 +779236,0.79941,43.664 +779237,353.31,44.134 +779238,355.41,44.013 +779239,357.49,43.879 +779240,359.57,43.735 +779241,352.01,44.029 +779242,354.13,43.967 +779243,356.24,43.892 +779244,358.33,43.806 +779245,350.71,43.924 +779246,352.86,43.921 +779247,354.99,43.905 +779248,357.09,43.877 +779249,349.41,43.818 +779250,351.58,43.875 +779251,353.73,43.918 +779252,355.85,43.949 +779253,348.11,43.713 +779254,350.31,43.829 +779255,352.48,43.931 +779256,354.61,44.02 +779257,346.81,43.607 +779258,349.04,43.783 +779259,351.22,43.944 +779260,353.37,44.091 +779261,345.52,43.501 +779262,347.76,43.737 +779263,349.96,43.957 +779264,352.12,44.162 +779265,344.23,43.395 +779266,346.49,43.691 +779267,348.71,43.97 +779268,350.87,44.233 +779269,342.94,43.289 +779270,345.22,43.645 +779271,347.45,43.983 +779272,349.62,44.304 +779273,341.65,43.183 +779274,343.95,43.599 +779275,346.19,43.996 +779276,348.37,44.374 +779277,340.36,43.077 +779278,342.68,43.554 +779279,344.93,44.009 +779280,347.12,44.444 +779281,339.08,42.972 +779282,341.41,43.508 +779283,343.67,44.022 +779284,345.86,44.514 +779285,337.79,42.866 +779286,340.14,43.463 +779287,342.41,44.035 +779288,344.61,44.583 +779289,336.51,42.761 +779290,338.88,43.418 +779291,341.15,44.048 +779292,343.35,44.652 +779293,335.23,42.656 +779294,337.61,43.373 +779295,339.89,44.06 +779296,342.09,44.72 +779297,333.96,42.552 +779298,336.34,43.328 +779299,338.63,44.073 +779300,340.82,44.788 +779301,332.68,42.448 +779302,335.08,43.284 +779303,337.36,44.086 +779304,339.56,44.856 +779305,331.41,42.344 +779306,333.81,43.24 +779307,336.1,44.098 +779308,338.29,44.922 +779309,330.14,42.241 +779310,332.55,43.196 +779311,334.84,44.111 +779312,337.02,44.989 +779313,328.87,42.138 +779314,331.29,43.152 +779315,333.57,44.123 +779316,335.75,45.054 +779317,327.6,42.036 +779318,330.02,43.109 +779319,332.31,44.135 +779320,334.48,45.119 +779321,326.34,41.934 +779322,328.76,43.065 +779323,331.04,44.147 +779324,333.21,45.183 +779325,325.08,41.834 +779326,327.5,43.023 +779327,329.78,44.158 +779328,331.93,45.246 +779329,323.82,41.734 +779330,326.24,42.98 +779331,328.51,44.17 +779332,330.65,45.309 +779333,322.56,41.634 +779334,324.98,42.938 +779335,327.24,44.181 +779336,329.38,45.37 +779337,321.3,41.536 +779338,323.72,42.896 +779339,325.98,44.192 +779340,328.09,45.431 +779341,320.05,41.438 +779342,322.46,42.855 +779343,324.71,44.203 +779344,326.81,45.491 +779345,318.8,41.342 +779346,321.21,42.814 +779347,323.44,44.213 +779348,325.53,45.549 +779349,317.55,41.246 +779350,319.95,42.773 +779351,322.17,44.224 +779352,324.24,45.607 +779353,316.3,41.152 +779354,318.7,42.733 +779355,320.9,44.234 +779356,322.95,45.664 +779357,315.06,41.058 +779358,317.44,42.693 +779359,319.63,44.243 +779360,321.67,45.72 +779361,313.82,40.966 +779362,316.19,42.654 +779363,318.36,44.253 +779364,320.37,45.775 +779365,312.58,40.875 +779366,314.93,42.615 +779367,317.09,44.262 +779368,319.08,45.828 +779369,311.34,40.785 +779370,313.68,42.576 +779371,315.82,44.271 +779372,317.79,45.881 +779373,310.1,40.696 +779374,312.43,42.538 +779375,314.54,44.279 +779376,316.49,45.932 +779377,308.87,40.609 +779378,311.18,42.501 +779379,313.27,44.287 +779380,315.2,45.982 +779381,307.64,40.523 +779382,309.93,42.464 +779383,312,44.295 +779384,313.9,46.031 +779385,306.41,40.438 +779386,308.68,42.428 +779387,310.72,44.302 +779388,312.6,46.078 +779389,305.18,40.355 +779390,307.43,42.392 +779391,309.45,44.309 +779392,311.3,46.125 +779393,303.95,40.273 +779394,306.18,42.357 +779395,308.17,44.316 +779396,309.99,46.169 +779397,302.73,40.193 +779398,304.93,42.322 +779399,306.9,44.322 +779400,308.69,46.213 +779401,301.51,40.114 +779402,303.68,42.288 +779403,305.62,44.328 +779404,307.38,46.255 +779405,300.29,40.038 +779406,302.44,42.254 +779407,304.35,44.333 +779408,306.08,46.296 +779409,299.07,39.962 +779410,301.19,42.221 +779411,303.07,44.338 +779412,304.77,46.336 +779413,297.86,39.889 +779414,299.94,42.189 +779415,301.79,44.342 +779416,303.46,46.374 +779417,296.65,39.817 +779418,298.7,42.157 +779419,300.51,44.346 +779420,302.15,46.41 +779421,295.43,39.747 +779422,297.46,42.126 +779423,299.24,44.35 +779424,300.84,46.445 +779425,294.23,39.679 +779426,296.21,42.095 +779427,297.96,44.353 +779428,299.52,46.479 +779429,293.02,39.613 +779430,294.97,42.066 +779431,296.68,44.356 +779432,298.21,46.511 +779433,291.81,39.548 +779434,293.73,42.036 +779435,295.4,44.358 +779436,296.89,46.541 +779437,290.61,39.486 +779438,292.48,42.008 +779439,294.12,44.359 +779440,295.58,46.57 +779441,289.41,39.425 +779442,291.24,41.98 +779443,292.84,44.361 +779444,294.26,46.597 +779445,288.21,39.367 +779446,290,41.953 +779447,291.56,44.361 +779448,292.94,46.623 +779449,287.01,39.31 +779450,288.76,41.927 +779451,290.28,44.361 +779452,291.62,46.647 +779453,285.82,39.256 +779454,287.52,41.901 +779455,289,44.361 +779456,290.3,46.669 +779457,284.62,39.204 +779458,286.28,41.876 +779459,287.72,44.36 +779460,288.98,46.69 +779461,283.43,39.154 +779462,285.05,41.852 +779463,286.44,44.359 +779464,287.66,46.709 +779465,282.24,39.106 +779466,283.81,41.828 +779467,285.15,44.357 +779468,286.34,46.727 +779469,281.05,39.06 +779470,282.57,41.805 +779471,283.87,44.354 +779472,285.01,46.743 +779473,279.86,39.016 +779474,281.33,41.783 +779475,282.59,44.351 +779476,283.69,46.757 +779477,278.67,38.975 +779478,280.1,41.762 +779479,281.31,44.347 +779480,282.36,46.769 +779481,277.49,38.936 +779482,278.86,41.742 +779483,280.02,44.343 +779484,281.04,46.78 +779485,276.3,38.899 +779486,277.62,41.722 +779487,278.74,44.339 +779488,279.71,46.788 +779489,275.12,38.865 +779490,276.39,41.703 +779491,277.46,44.333 +779492,278.38,46.796 +779493,273.94,38.832 +779494,275.15,41.685 +779495,276.17,44.327 +779496,277.05,46.801 +779497,272.76,38.803 +779498,273.92,41.667 +779499,274.89,44.321 +779500,275.72,46.804 +779501,271.58,38.775 +779502,272.68,41.65 +779503,273.6,44.314 +779504,274.39,46.806 +779505,270.4,38.75 +779506,271.45,41.634 +779507,272.32,44.306 +779508,273.06,46.806 +779509,269.23,38.727 +779510,270.22,41.619 +779511,271.04,44.298 +779512,271.73,46.805 +779513,268.05,38.706 +779514,268.98,41.605 +779515,269.75,44.29 +779516,270.4,46.801 +779517,266.88,38.688 +779518,267.75,41.591 +779519,268.47,44.28 +779520,269.07,46.796 +779521,265.7,38.673 +779522,266.52,41.579 +779523,267.18,44.27 +779524,267.74,46.789 +779525,264.53,38.659 +779526,265.28,41.567 +779527,265.9,44.26 +779528,266.41,46.78 +779529,263.36,38.648 +779530,264.05,41.556 +779531,264.61,44.249 +779532,265.08,46.769 +779533,262.18,38.64 +779534,262.82,41.545 +779535,263.33,44.237 +779536,263.74,46.756 +779537,261.01,38.633 +779538,261.59,41.536 +779539,262.04,44.225 +779540,262.41,46.742 +779541,259.84,38.63 +779542,260.35,41.527 +779543,260.76,44.212 +779544,261.08,46.726 +779545,258.67,38.628 +779546,259.12,41.519 +779547,259.47,44.199 +779548,259.74,46.708 +779549,257.5,38.629 +779550,257.89,41.512 +779551,258.19,44.185 +779552,258.41,46.688 +779553,256.33,38.632 +779554,256.66,41.505 +779555,256.9,44.17 +779556,257.08,46.666 +779557,255.16,38.638 +779558,255.43,41.5 +779559,255.62,44.155 +779560,255.74,46.643 +779561,253.99,38.646 +779562,254.2,41.495 +779563,254.33,44.14 +779564,254.41,46.618 +779565,252.82,38.657 +779566,252.97,41.491 +779567,253.04,44.123 +779568,253.08,46.591 +779569,251.65,38.669 +779570,251.73,41.488 +779571,251.76,44.106 +779572,251.74,46.562 +779573,250.48,38.684 +779574,250.5,41.485 +779575,250.47,44.089 +779576,250.41,46.531 +779577,249.31,38.702 +779578,249.27,41.484 +779579,249.19,44.071 +779580,249.08,46.499 +779581,248.14,38.721 +779582,248.04,41.483 +779583,247.9,44.052 +779584,247.74,46.465 +779585,246.97,38.743 +779586,246.81,41.483 +779587,246.62,44.033 +779588,246.41,46.429 +779589,245.8,38.767 +779590,245.58,41.483 +779591,245.34,44.014 +779592,245.08,46.391 +779593,244.63,38.793 +779594,244.35,41.484 +779595,244.05,43.993 +779596,243.74,46.352 +779597,243.46,38.822 +779598,243.12,41.487 +779599,242.77,43.973 +779600,242.41,46.311 +779601,242.28,38.853 +779602,241.88,41.489 +779603,241.48,43.951 +779604,241.08,46.268 +779605,241.11,38.885 +779606,240.65,41.493 +779607,240.2,43.93 +779608,239.75,46.224 +779609,239.94,38.92 +779610,239.42,41.497 +779611,238.91,43.907 +779612,238.42,46.177 +779613,238.76,38.957 +779614,238.19,41.502 +779615,237.63,43.884 +779616,237.09,46.13 +779617,237.59,38.996 +779618,236.96,41.508 +779619,236.35,43.861 +779620,235.76,46.08 +779621,236.41,39.037 +779622,235.72,41.515 +779623,235.06,43.837 +779624,234.43,46.029 +779625,235.24,39.08 +779626,234.49,41.522 +779627,233.78,43.812 +779628,233.1,45.976 +779629,234.06,39.125 +779630,233.26,41.53 +779631,232.5,43.788 +779632,231.77,45.922 +779633,232.88,39.172 +779634,232.03,41.538 +779635,231.22,43.762 +779636,230.44,45.866 +779637,231.7,39.221 +779638,230.79,41.547 +779639,229.93,43.736 +779640,229.11,45.808 +779641,230.52,39.272 +779642,229.56,41.557 +779643,228.65,43.71 +779644,227.78,45.749 +779645,229.34,39.324 +779646,228.33,41.568 +779647,227.37,43.683 +779648,226.46,45.688 +779649,228.15,39.379 +779650,227.09,41.579 +779651,226.09,43.656 +779652,225.13,45.626 +779653,226.97,39.435 +779654,225.86,41.591 +779655,224.81,43.628 +779656,223.81,45.562 +779657,225.78,39.492 +779658,224.62,41.603 +779659,223.53,43.6 +779660,222.49,45.497 +779661,224.6,39.552 +779662,223.39,41.616 +779663,222.25,43.571 +779664,221.16,45.43 +779665,223.41,39.612 +779666,222.15,41.63 +779667,220.97,43.542 +779668,219.84,45.362 +779669,222.22,39.675 +779670,220.92,41.644 +779671,219.69,43.513 +779672,218.52,45.293 +779673,221.03,39.739 +779674,219.68,41.659 +779675,218.41,43.483 +779676,217.2,45.222 +779677,219.84,39.804 +779678,218.45,41.674 +779679,217.13,43.452 +779680,215.88,45.15 +779681,218.64,39.871 +779682,217.21,41.69 +779683,215.85,43.422 +779684,214.56,45.076 +779685,217.44,39.94 +779686,215.97,41.707 +779687,214.58,43.391 +779688,213.24,45.001 +779689,216.25,40.009 +779690,214.73,41.724 +779691,213.3,43.359 +779692,211.93,44.925 +779693,215.05,40.08 +779694,213.5,41.741 +779695,212.02,43.328 +779696,210.61,44.848 +779697,213.85,40.152 +779698,212.26,41.759 +779699,210.74,43.296 +779700,209.3,44.769 +779701,212.64,40.226 +779702,211.02,41.777 +779703,209.47,43.263 +779704,207.99,44.689 +779705,211.44,40.3 +779706,209.78,41.796 +779707,208.19,43.231 +779708,206.68,44.608 +779709,210.23,40.376 +779710,208.54,41.816 +779711,206.92,43.198 +779712,205.37,44.526 +779713,209.03,40.453 +779714,207.3,41.835 +779715,205.64,43.164 +779716,204.06,44.443 +779717,207.82,40.53 +779718,206.06,41.856 +779719,204.37,43.131 +779720,202.75,44.359 +779721,206.6,40.609 +779722,204.81,41.876 +779723,203.1,43.097 +779724,201.44,44.274 +779725,205.39,40.688 +779726,203.57,41.897 +779727,201.82,43.063 +779728,200.14,44.188 +779729,204.17,40.769 +779730,202.33,41.919 +779731,200.55,43.029 +779732,198.83,44.1 +779733,202.96,40.85 +779734,201.09,41.941 +779735,199.28,42.994 +779736,197.53,44.012 +779737,201.74,40.932 +779738,199.84,41.963 +779739,198.01,42.959 +779740,196.23,43.923 +779741,200.52,41.015 +779742,198.6,41.985 +779743,196.74,42.924 +779744,194.93,43.834 +779745,199.29,41.098 +779746,197.35,42.008 +779747,195.47,42.889 +779748,193.64,43.743 +779749,198.07,41.182 +779750,196.11,42.031 +779751,194.2,42.854 +779752,192.34,43.651 +779753,196.84,41.266 +779754,194.86,42.055 +779755,192.93,42.819 +779756,191.04,43.559 +779757,195.61,41.352 +779758,193.61,42.078 +779759,191.66,42.783 +779760,189.75,43.466 +779761,194.38,41.437 +779762,192.37,42.102 +779763,190.39,42.748 +779764,188.46,43.373 +779765,193.15,41.523 +779766,191.12,42.126 +779767,189.13,42.712 +779768,187.17,43.279 +779769,191.91,41.609 +779770,189.87,42.151 +779771,187.86,42.676 +779772,185.88,43.184 +779773,190.68,41.696 +779774,188.62,42.176 +779775,186.6,42.64 +779776,184.6,43.089 +779777,189.44,41.783 +779778,187.37,42.2 +779779,185.33,42.604 +779780,183.31,42.993 +779781,188.2,41.87 +779782,186.12,42.225 +779783,184.07,42.568 +779784,182.03,42.897 +779785,186.96,41.957 +779786,184.87,42.251 +779787,182.8,42.532 +779788,180.75,42.801 +779789,185.71,42.044 +779790,183.62,42.276 +779791,181.54,42.496 +779792,179.47,42.704 +779793,184.46,42.132 +779794,182.37,42.301 +779795,180.28,42.46 +779796,178.19,42.607 +779797,183.22,42.219 +779798,181.11,42.327 +779799,179.01,42.424 +779800,176.92,42.509 +779801,181.97,42.307 +779802,179.86,42.353 +779803,177.75,42.387 +779804,175.64,42.411 +779805,180.71,42.394 +779806,178.61,42.378 +779807,176.49,42.352 +779808,174.37,42.313 +779809,179.46,42.481 +779810,177.35,42.404 +779811,175.23,42.316 +779812,173.1,42.215 +779813,178.2,42.569 +779814,176.1,42.43 +779815,173.97,42.28 +779816,171.83,42.117 +779817,176.94,42.656 +779818,174.84,42.456 +779819,172.72,42.244 +779820,170.57,42.019 +779821,175.68,42.742 +779822,173.58,42.482 +779823,171.46,42.208 +779824,169.3,41.921 +779825,174.42,42.829 +779826,172.33,42.508 +779827,170.2,42.173 +779828,168.04,41.823 +779829,173.16,42.915 +779830,171.07,42.534 +779831,168.94,42.137 +779832,166.78,41.725 +779833,171.89,43 +779834,169.81,42.56 +779835,167.69,42.102 +779836,165.52,41.627 +779837,170.62,43.086 +779838,168.55,42.586 +779839,166.43,42.067 +779840,164.26,41.529 +779841,169.35,43.17 +779842,167.29,42.612 +779843,165.18,42.032 +779844,163.01,41.432 +779845,168.08,43.255 +779846,166.03,42.637 +779847,163.93,41.998 +779848,161.76,41.335 +779849,166.81,43.338 +779850,164.77,42.663 +779851,162.67,41.963 +779852,160.51,41.238 +779853,165.54,43.422 +779854,163.51,42.689 +779855,161.42,41.929 +779856,159.26,41.142 +779857,164.26,43.504 +779858,162.25,42.714 +779859,160.17,41.895 +779860,158.01,41.046 +779861,162.98,43.586 +779862,160.99,42.739 +779863,158.92,41.862 +779864,156.77,40.951 +779865,161.7,43.667 +779866,159.72,42.765 +779867,157.67,41.828 +779868,155.53,40.856 +779869,160.42,43.748 +779870,158.46,42.79 +779871,156.42,41.795 +779872,154.29,40.762 +779873,159.14,43.827 +779874,157.19,42.814 +779875,155.17,41.762 +779876,153.05,40.668 +779877,157.85,43.906 +779878,155.93,42.839 +779879,153.92,41.73 +779880,151.81,40.575 +779881,156.56,43.984 +779882,154.66,42.864 +779883,152.67,41.698 +779884,150.58,40.483 +779885,155.28,44.061 +779886,153.4,42.888 +779887,151.42,41.666 +779888,149.35,40.392 +779889,153.99,44.137 +779890,152.13,42.912 +779891,150.18,41.635 +779892,148.12,40.301 +779893,152.69,44.212 +779894,150.86,42.936 +779895,148.93,41.604 +779896,146.89,40.212 +779897,151.4,44.286 +779898,149.59,42.959 +779899,147.69,41.574 +779900,145.66,40.123 +779901,150.11,44.359 +779902,148.33,42.983 +779903,146.44,41.544 +779904,144.44,40.036 +779905,148.81,44.431 +779906,147.06,43.006 +779907,145.2,41.514 +779908,143.22,39.949 +779909,147.51,44.502 +779910,145.79,43.028 +779911,143.96,41.485 +779912,142,39.864 +779913,146.21,44.572 +779914,144.52,43.051 +779915,142.71,41.456 +779916,140.78,39.78 +779917,144.91,44.641 +779918,143.25,43.073 +779919,141.47,41.428 +779920,139.56,39.696 +779921,143.61,44.708 +779922,141.98,43.094 +779923,140.23,41.4 +779924,138.35,39.615 +779925,142.31,44.774 +779926,140.7,43.116 +779927,138.99,41.373 +779928,137.14,39.534 +779929,141.01,44.839 +779930,139.43,43.137 +779931,137.75,41.347 +779932,135.93,39.455 +779933,139.7,44.903 +779934,138.16,43.158 +779935,136.51,41.32 +779936,134.72,39.377 +779937,138.39,44.965 +779938,136.89,43.178 +779939,135.27,41.295 +779940,133.51,39.301 +779941,137.09,45.026 +779942,135.61,43.198 +779943,134.03,41.27 +779944,132.31,39.226 +779945,135.78,45.086 +779946,134.34,43.217 +779947,132.79,41.245 +779948,131.1,39.153 +779949,134.47,45.144 +779950,133.07,43.237 +779951,131.55,41.222 +779952,129.9,39.081 +779953,133.16,45.201 +779954,131.79,43.255 +779955,130.32,41.198 +779956,128.7,39.011 +779957,131.84,45.256 +779958,130.52,43.274 +779959,129.08,41.176 +779960,127.51,38.943 +779961,130.53,45.31 +779962,129.24,43.291 +779963,127.84,41.154 +779964,126.31,38.876 +779965,129.22,45.363 +779966,127.96,43.309 +779967,126.61,41.133 +779968,125.12,38.811 +779969,127.9,45.414 +779970,126.69,43.326 +779971,125.37,41.112 +779972,123.92,38.748 +779973,126.58,45.463 +779974,125.41,43.342 +779975,124.14,41.092 +779976,122.73,38.687 +779977,125.27,45.511 +779978,124.13,43.358 +779979,122.9,41.073 +779980,121.54,38.627 +779981,123.95,45.557 +779982,122.86,43.374 +779983,121.67,41.054 +779984,120.35,38.57 +779985,122.63,45.602 +779986,121.58,43.389 +779987,120.44,41.036 +779988,119.17,38.515 +779989,121.31,45.645 +779990,120.3,43.403 +779991,119.2,41.019 +779992,117.98,38.461 +779993,119.99,45.686 +779994,119.02,43.417 +779995,117.97,41.002 +779996,116.8,38.41 +779997,118.67,45.726 +779998,117.75,43.431 +779999,116.74,40.986 +780000,115.62,38.36 +780001,117.34,45.764 +780002,116.47,43.444 +780003,115.51,40.971 +780004,114.43,38.313 +780005,116.02,45.8 +780006,115.19,43.456 +780007,114.27,40.957 +780008,113.25,38.268 +780009,114.7,45.835 +780010,113.91,43.468 +780011,113.04,40.943 +780012,112.08,38.225 +780013,113.37,45.868 +780014,112.63,43.48 +780015,111.81,40.93 +780016,110.9,38.184 +780017,112.05,45.9 +780018,111.35,43.491 +780019,110.58,40.918 +780020,109.72,38.145 +780021,110.72,45.929 +780022,110.07,43.501 +780023,109.35,40.907 +780024,108.55,38.109 +780025,109.4,45.957 +780026,108.79,43.511 +780027,108.12,40.896 +780028,107.37,38.075 +780029,108.07,45.983 +780030,107.51,43.52 +780031,106.89,40.887 +780032,106.2,38.043 +780033,106.75,46.007 +780034,106.23,43.529 +780035,105.66,40.878 +780036,105.02,38.013 +780037,105.42,46.03 +780038,104.95,43.537 +780039,104.43,40.869 +780040,103.85,37.986 +780041,104.09,46.051 +780042,103.67,43.544 +780043,103.2,40.862 +780044,102.68,37.962 +780045,102.76,46.07 +780046,102.38,43.551 +780047,101.97,40.855 +780048,101.51,37.939 +780049,101.43,46.087 +780050,101.1,43.558 +780051,100.74,40.85 +780052,100.34,37.919 +780053,100.11,46.102 +780054,99.822,43.564 +780055,99.512,40.845 +780056,99.167,37.901 +780057,98.778,46.116 +780058,98.54,43.569 +780059,98.283,40.84 +780060,97.997,37.886 +780061,97.449,46.128 +780062,97.259,43.574 +780063,97.054,40.837 +780064,96.827,37.874 +780065,96.12,46.137 +780066,95.977,43.578 +780067,95.825,40.835 +780068,95.658,37.863 +780069,94.791,46.146 +780070,94.696,43.581 +780071,94.596,40.833 +780072,94.489,37.855 +780073,93.462,46.152 +780074,93.414,43.584 +780075,93.367,40.832 +780076,93.32,37.85 +780077,92.133,46.156 +780078,92.133,43.586 +780079,92.138,40.832 +780080,92.152,37.847 +780081,90.804,46.159 +780082,90.851,43.588 +780083,90.909,40.832 +780084,90.983,37.846 +780085,89.475,46.16 +780086,89.569,43.589 +780087,89.68,40.834 +780088,89.814,37.848 +780089,88.146,46.159 +780090,88.288,43.59 +780091,88.451,40.836 +780092,88.645,37.853 +780093,86.817,46.156 +780094,87.006,43.59 +780095,87.222,40.84 +780096,87.476,37.86 +780097,85.488,46.151 +780098,85.725,43.589 +780099,85.993,40.844 +780100,86.306,37.869 +780101,84.159,46.144 +780102,84.443,43.588 +780103,84.764,40.848 +780104,85.137,37.881 +780105,82.831,46.136 +780106,83.162,43.586 +780107,83.535,40.854 +780108,83.967,37.895 +780109,81.502,46.126 +780110,81.881,43.584 +780111,82.306,40.86 +780112,82.796,37.912 +780113,80.174,46.114 +780114,80.599,43.581 +780115,81.076,40.868 +780116,81.625,37.931 +780117,78.847,46.1 +780118,79.318,43.577 +780119,79.846,40.876 +780120,80.453,37.952 +780121,77.52,46.085 +780122,78.037,43.573 +780123,78.617,40.885 +780124,79.281,37.976 +780125,76.193,46.067 +780126,76.757,43.569 +780127,77.387,40.894 +780128,78.107,38.002 +780129,74.866,46.048 +780130,75.476,43.563 +780131,76.156,40.905 +780132,76.933,38.031 +780133,73.54,46.027 +780134,74.195,43.558 +780135,74.926,40.916 +780136,75.759,38.062 +780137,72.215,46.004 +780138,72.915,43.551 +780139,73.695,40.928 +780140,74.583,38.095 +780141,70.89,45.98 +780142,71.635,43.544 +780143,72.464,40.941 +780144,73.406,38.131 +780145,69.565,45.954 +780146,70.355,43.537 +780147,71.232,40.954 +780148,72.228,38.169 +780149,68.241,45.926 +780150,69.076,43.529 +780151,70.001,40.969 +780152,71.05,38.209 +780153,66.918,45.896 +780154,67.796,43.52 +780155,68.769,40.984 +780156,69.87,38.251 +780157,65.596,45.865 +780158,66.517,43.511 +780159,67.537,41 +780160,68.688,38.296 +780161,64.274,45.832 +780162,65.238,43.502 +780163,66.304,41.016 +780164,67.506,38.342 +780165,62.953,45.797 +780166,63.959,43.491 +780167,65.071,41.034 +780168,66.322,38.391 +780169,61.632,45.761 +780170,62.681,43.481 +780171,63.837,41.052 +780172,65.137,38.442 +780173,60.313,45.723 +780174,61.403,43.469 +780175,62.604,41.071 +780176,63.951,38.495 +780177,58.994,45.683 +780178,60.125,43.458 +780179,61.369,41.09 +780180,62.763,38.55 +780181,57.676,45.642 +780182,58.848,43.446 +780183,60.135,41.11 +780184,61.573,38.607 +780185,56.359,45.599 +780186,57.571,43.433 +780187,58.9,41.131 +780188,60.382,38.666 +780189,55.043,45.554 +780190,56.294,43.42 +780191,57.664,41.153 +780192,59.19,38.727 +780193,53.728,45.508 +780194,55.018,43.406 +780195,56.428,41.175 +780196,57.996,38.79 +780197,52.414,45.461 +780198,53.742,43.392 +780199,55.192,41.198 +780200,56.8,38.855 +780201,51.101,45.412 +780202,52.466,43.378 +780203,53.955,41.222 +780204,55.602,38.922 +780205,49.789,45.361 +780206,51.191,43.363 +780207,52.717,41.246 +780208,54.403,38.99 +780209,48.479,45.309 +780210,49.916,43.347 +780211,51.479,41.271 +780212,53.202,39.06 +780213,47.169,45.256 +780214,48.642,43.331 +780215,50.241,41.296 +780216,51.999,39.132 +780217,45.86,45.201 +780218,47.368,43.315 +780219,49.001,41.322 +780220,50.794,39.205 +780221,44.553,45.145 +780222,46.095,43.298 +780223,47.762,41.349 +780224,49.588,39.28 +780225,43.247,45.087 +780226,44.822,43.281 +780227,46.522,41.376 +780228,48.379,39.357 +780229,41.942,45.028 +780230,43.549,43.264 +780231,45.281,41.404 +780232,47.169,39.435 +780233,40.638,44.968 +780234,42.277,43.246 +780235,44.039,41.432 +780236,45.957,39.514 +780237,39.336,44.906 +780238,41.005,43.228 +780239,42.798,41.461 +780240,44.743,39.595 +780241,38.035,44.843 +780242,39.734,43.209 +780243,41.555,41.491 +780244,43.527,39.677 +780245,36.736,44.779 +780246,38.463,43.19 +780247,40.312,41.521 +780248,42.308,39.761 +780249,35.438,44.714 +780250,37.193,43.171 +780251,39.068,41.551 +780252,41.088,39.846 +780253,34.141,44.648 +780254,35.924,43.151 +780255,37.824,41.582 +780256,39.866,39.932 +780257,32.846,44.58 +780258,34.654,43.131 +780259,36.579,41.614 +780260,38.642,40.019 +780261,31.552,44.511 +780262,33.386,43.111 +780263,35.333,41.646 +780264,37.416,40.107 +780265,30.259,44.442 +780266,32.118,43.091 +780267,34.087,41.678 +780268,36.188,40.197 +780269,28.969,44.371 +780270,30.85,43.07 +780271,32.84,41.711 +780272,34.957,40.287 +780273,27.679,44.299 +780274,29.583,43.049 +780275,31.592,41.744 +780276,33.725,40.379 +780277,26.392,44.226 +780278,28.317,43.028 +780279,30.344,41.777 +780280,32.49,40.471 +780281,25.106,44.153 +780282,27.051,43.006 +780283,29.095,41.811 +780284,31.254,40.564 +780285,23.821,44.078 +780286,25.786,42.984 +780287,27.845,41.846 +780288,30.015,40.658 +780289,22.539,44.003 +780290,24.521,42.963 +780291,26.595,41.88 +780292,28.775,40.753 +780293,21.258,43.926 +780294,23.257,42.94 +780295,25.344,41.916 +780296,27.532,40.849 +780297,19.978,43.849 +780298,21.993,42.918 +780299,24.092,41.951 +780300,26.287,40.945 +780301,18.701,43.771 +780302,20.73,42.896 +780303,22.84,41.987 +780304,25.04,41.042 +780305,17.425,43.693 +780306,19.468,42.873 +780307,21.587,42.022 +780308,23.792,41.139 +780309,16.151,43.614 +780310,18.206,42.85 +780311,20.333,42.059 +780312,22.541,41.237 +780313,14.878,43.534 +780314,16.945,42.828 +780315,19.079,42.095 +780316,21.288,41.335 +780317,13.608,43.453 +780318,15.684,42.805 +780319,17.824,42.132 +780320,20.033,41.434 +780321,12.339,43.372 +780322,14.424,42.782 +780323,16.568,42.169 +780324,18.776,41.533 +780325,11.072,43.291 +780326,13.165,42.758 +780327,15.311,42.206 +780328,17.516,41.633 +780329,9.8066,43.209 +780330,11.906,42.735 +780331,14.054,42.243 +780332,16.255,41.732 +780333,8.5434,43.126 +780334,10.648,42.712 +780335,12.796,42.281 +780336,14.992,41.832 +780337,7.282,43.044 +780338,9.3902,42.689 +780339,11.538,42.319 +780340,13.727,41.932 +780341,6.0225,42.96 +780342,8.1333,42.666 +780343,10.279,42.357 +780344,12.46,42.033 +780345,4.7649,42.877 +780346,6.877,42.642 +780347,9.0186,42.394 +780348,11.191,42.133 +780349,3.5092,42.793 +780350,5.6213,42.619 +780351,7.7579,42.433 +780352,9.9204,42.233 +780353,2.2554,42.709 +780354,4.3662,42.596 +780355,6.4966,42.471 +780356,8.6477,42.333 +780357,1.0035,42.625 +780358,3.1117,42.573 +780359,5.2346,42.509 +780360,7.373,42.434 +780361,359.75,42.541 +780362,1.8579,42.55 +780363,3.972,42.547 +780364,6.0964,42.534 +780365,358.51,42.457 +780366,0.60462,42.527 +780367,2.7086,42.586 +780368,4.818,42.634 +780369,357.26,42.372 +780370,359.35,42.504 +780371,1.4446,42.624 +780372,3.5378,42.733 +780373,356.02,42.288 +780374,358.1,42.481 +780375,0.17991,42.663 +780376,2.2557,42.833 +780377,354.77,42.204 +780378,356.85,42.458 +780379,358.91,42.701 +780380,0.97185,42.932 +780381,353.53,42.12 +780382,355.6,42.436 +780383,357.65,42.74 +780384,359.69,43.031 +780385,352.29,42.036 +780386,354.35,42.413 +780387,356.38,42.778 +780388,358.4,43.129 +780389,351.06,41.952 +780390,353.1,42.391 +780391,355.11,42.816 +780392,357.11,43.227 +780393,349.82,41.868 +780394,351.85,42.369 +780395,353.85,42.855 +780396,355.82,43.325 +780397,348.59,41.785 +780398,350.6,42.347 +780399,352.58,42.893 +780400,354.53,43.422 +780401,347.36,41.702 +780402,349.35,42.326 +780403,351.31,42.931 +780404,353.23,43.518 +780405,346.13,41.62 +780406,348.11,42.304 +780407,350.04,42.969 +780408,351.94,43.614 +780409,344.91,41.538 +780410,346.86,42.283 +780411,348.77,43.007 +780412,350.64,43.709 +780413,343.68,41.456 +780414,345.61,42.262 +780415,347.5,43.045 +780416,349.34,43.804 +780417,342.46,41.375 +780418,344.37,42.242 +780419,346.23,43.082 +780420,348.04,43.897 +780421,341.24,41.295 +780422,343.12,42.222 +780423,344.95,43.12 +780424,346.74,43.99 +780425,340.02,41.215 +780426,341.88,42.202 +780427,343.68,43.157 +780428,345.44,44.083 +780429,338.8,41.136 +780430,340.63,42.182 +780431,342.41,43.194 +780432,344.13,44.174 +780433,337.59,41.058 +780434,339.39,42.163 +780435,341.13,43.231 +780436,342.82,44.265 +780437,336.37,40.98 +780438,338.15,42.144 +780439,339.86,43.268 +780440,341.52,44.354 +780441,335.16,40.904 +780442,336.91,42.125 +780443,338.58,43.304 +780444,340.21,44.443 +780445,333.95,40.828 +780446,335.66,42.107 +780447,337.31,43.34 +780448,338.9,44.531 +780449,332.75,40.753 +780450,334.42,42.089 +780451,336.03,43.376 +780452,337.59,44.617 +780453,331.54,40.679 +780454,333.18,42.072 +780455,334.76,43.412 +780456,336.27,44.703 +780457,330.34,40.606 +780458,331.94,42.055 +780459,333.48,43.447 +780460,334.96,44.787 +780461,329.13,40.534 +780462,330.7,42.039 +780463,332.2,43.483 +780464,333.64,44.871 +780465,327.93,40.464 +780466,329.46,42.023 +780467,330.92,43.517 +780468,332.33,44.953 +780469,326.73,40.394 +780470,328.22,42.007 +780471,329.64,43.552 +780472,331.01,45.034 +780473,325.54,40.326 +780474,326.98,41.992 +780475,328.37,43.586 +780476,329.69,45.114 +780477,324.34,40.259 +780478,325.75,41.978 +780479,327.09,43.62 +780480,328.37,45.193 +780481,323.14,40.193 +780482,324.51,41.964 +780483,325.81,43.653 +780484,327.05,45.27 +780485,321.95,40.129 +780486,323.27,41.95 +780487,324.53,43.686 +780488,325.73,45.346 +780489,320.76,40.066 +780490,322.03,41.937 +780491,323.24,43.719 +780492,324.41,45.421 +780493,319.57,40.004 +780494,320.8,41.925 +780495,321.96,43.751 +780496,323.08,45.495 +780497,318.38,39.944 +780498,319.56,41.913 +780499,320.68,43.783 +780500,321.76,45.567 +780501,317.2,39.886 +780502,318.32,41.901 +780503,319.4,43.815 +780504,320.43,45.637 +780505,316.01,39.829 +780506,317.09,41.891 +780507,318.12,43.846 +780508,319.1,45.707 +780509,314.82,39.774 +780510,315.85,41.881 +780511,316.83,43.876 +780512,317.78,45.775 +780513,313.64,39.72 +780514,314.62,41.871 +780515,315.55,43.906 +780516,316.45,45.841 +780517,312.46,39.668 +780518,313.38,41.862 +780519,314.27,43.936 +780520,315.12,45.906 +780521,311.28,39.618 +780522,312.15,41.854 +780523,312.98,43.965 +780524,313.79,45.969 +780525,310.1,39.569 +780526,310.92,41.846 +780527,311.7,43.994 +780528,312.46,46.031 +780529,308.92,39.523 +780530,309.68,41.839 +780531,310.42,44.023 +780532,311.13,46.091 +780533,307.74,39.478 +780534,308.45,41.833 +780535,309.13,44.05 +780536,309.8,46.15 +780537,306.56,39.435 +780538,307.21,41.828 +780539,307.85,44.078 +780540,308.47,46.207 +780541,305.39,39.394 +780542,305.98,41.823 +780543,306.56,44.105 +780544,307.14,46.263 +780545,304.21,39.355 +780546,304.75,41.818 +780547,305.28,44.131 +780548,305.8,46.317 +780549,303.04,39.318 +780550,303.51,41.815 +780551,303.99,44.157 +780552,304.47,46.369 +780553,301.86,39.283 +780554,302.28,41.812 +780555,302.71,44.182 +780556,303.14,46.42 +780557,300.69,39.25 +780558,301.05,41.81 +780559,301.42,44.207 +780560,301.8,46.469 +780561,299.52,39.219 +780562,299.82,41.808 +780563,300.13,44.232 +780564,300.47,46.516 +780565,298.35,39.19 +780566,298.58,41.808 +780567,298.85,44.255 +780568,299.13,46.562 +780569,297.17,39.163 +780570,297.35,41.808 +780571,297.56,44.279 +780572,297.8,46.605 +780573,296,39.139 +780574,296.12,41.808 +780575,296.27,44.301 +780576,296.46,46.648 +780577,294.83,39.117 +780578,294.89,41.81 +780579,294.99,44.323 +780580,295.13,46.688 +780581,293.66,39.096 +780582,293.65,41.812 +780583,293.7,44.345 +780584,293.79,46.727 +780585,292.49,39.079 +780586,292.42,41.815 +780587,292.41,44.366 +780588,292.46,46.764 +780589,291.32,39.063 +780590,291.19,41.819 +780591,291.13,44.386 +780592,291.12,46.799 +780593,290.15,39.049 +780594,289.96,41.823 +780595,289.84,44.406 +780596,289.78,46.832 +780597,288.98,39.038 +780598,288.72,41.829 +780599,288.55,44.426 +780600,288.45,46.864 +780601,287.81,39.029 +780602,287.49,41.835 +780603,287.27,44.444 +780604,287.11,46.894 +780605,286.64,39.023 +780606,286.26,41.841 +780607,285.98,44.463 +780608,285.78,46.922 +780609,285.47,39.018 +780610,285.02,41.849 +780611,284.69,44.48 +780612,284.44,46.948 +780613,284.29,39.017 +780614,283.79,41.857 +780615,283.4,44.497 +780616,283.1,46.973 +780617,283.12,39.017 +780618,282.56,41.867 +780619,282.12,44.514 +780620,281.77,46.996 +780621,281.95,39.02 +780622,281.32,41.877 +780623,280.83,44.53 +780624,280.43,47.017 +780625,280.78,39.025 +780626,280.09,41.887 +780627,279.54,44.545 +780628,279.1,47.036 +780629,279.61,39.032 +780630,278.86,41.899 +780631,278.26,44.56 +780632,277.76,47.053 +780633,278.43,39.042 +780634,277.62,41.911 +780635,276.97,44.574 +780636,276.43,47.069 +780637,277.26,39.054 +780638,276.39,41.924 +780639,275.68,44.587 +780640,275.09,47.082 +780641,276.08,39.069 +780642,275.15,41.938 +780643,274.4,44.6 +780644,273.76,47.094 +780645,274.9,39.085 +780646,273.92,41.953 +780647,273.11,44.613 +780648,272.43,47.104 +780649,273.73,39.105 +780650,272.68,41.968 +780651,271.82,44.624 +780652,271.09,47.113 +780653,272.55,39.126 +780654,271.45,41.984 +780655,270.54,44.636 +780656,269.76,47.119 +780657,271.37,39.15 +780658,270.21,42.001 +780659,269.25,44.646 +780660,268.43,47.124 +780661,270.19,39.176 +780662,268.98,42.019 +780663,267.96,44.656 +780664,267.1,47.127 +780665,269.01,39.205 +780666,267.74,42.037 +780667,266.68,44.666 +780668,265.77,47.128 +780669,267.83,39.236 +780670,266.5,42.057 +780671,265.39,44.675 +780672,264.44,47.128 +780673,266.64,39.269 +780674,265.27,42.077 +780675,264.11,44.683 +780676,263.11,47.125 +780677,265.46,39.304 +780678,264.03,42.097 +780679,262.82,44.691 +780680,261.78,47.121 +780681,264.27,39.342 +780682,262.79,42.119 +780683,261.54,44.698 +780684,260.45,47.116 +780685,263.08,39.382 +780686,261.55,42.141 +780687,260.25,44.705 +780688,259.12,47.108 +780689,261.89,39.424 +780690,260.31,42.164 +780691,258.97,44.711 +780692,257.8,47.099 +780693,260.7,39.468 +780694,259.07,42.188 +780695,257.68,44.716 +780696,256.47,47.088 +780697,259.51,39.515 +780698,257.83,42.213 +780699,256.4,44.721 +780700,255.14,47.075 +780701,258.32,39.563 +780702,256.59,42.238 +780703,255.12,44.726 +780704,253.82,47.061 +780705,257.12,39.614 +780706,255.35,42.264 +780707,253.83,44.73 +780708,252.5,47.045 +780709,255.92,39.667 +780710,254.11,42.29 +780711,252.55,44.733 +780712,251.17,47.027 +780713,254.72,39.722 +780714,252.87,42.318 +780715,251.27,44.736 +780716,249.85,47.008 +780717,253.52,39.779 +780718,251.63,42.346 +780719,249.99,44.738 +780720,248.53,46.987 +780721,252.32,39.838 +780722,250.38,42.375 +780723,248.7,44.74 +780724,247.21,46.965 +780725,251.11,39.899 +780726,249.14,42.404 +780727,247.42,44.742 +780728,245.89,46.94 +780729,249.91,39.962 +780730,247.9,42.434 +780731,246.14,44.743 +780732,244.58,46.915 +780733,248.7,40.027 +780734,246.65,42.465 +780735,244.86,44.743 +780736,243.26,46.887 +780737,247.49,40.094 +780738,245.4,42.497 +780739,243.58,44.743 +780740,241.95,46.859 +780741,246.27,40.162 +780742,244.16,42.529 +780743,242.3,44.742 +780744,240.63,46.828 +780745,245.06,40.233 +780746,242.91,42.561 +780747,241.02,44.741 +780748,239.32,46.796 +780749,243.84,40.305 +780750,241.66,42.595 +780751,239.74,44.74 +780752,238.01,46.763 +780753,242.62,40.379 +780754,240.42,42.629 +780755,238.46,44.738 +780756,236.7,46.728 +780757,241.4,40.455 +780758,239.17,42.663 +780759,237.18,44.735 +780760,235.39,46.692 +780761,240.18,40.532 +780762,237.92,42.698 +780763,235.9,44.732 +780764,234.08,46.655 +780765,238.95,40.611 +780766,236.67,42.734 +780767,234.63,44.729 +780768,232.78,46.616 +780769,237.73,40.692 +780770,235.42,42.77 +780771,233.35,44.725 +780772,231.47,46.575 +780773,236.5,40.774 +780774,234.17,42.807 +780775,232.07,44.721 +780776,230.17,46.534 +780777,235.27,40.857 +780778,232.91,42.845 +780779,230.8,44.717 +780780,228.87,46.491 +780781,234.03,40.942 +780782,231.66,42.883 +780783,229.52,44.712 +780784,227.57,46.446 +780785,232.8,41.029 +780786,230.41,42.921 +780787,228.25,44.707 +780788,226.27,46.401 +780789,231.56,41.117 +780790,229.15,42.96 +780791,226.97,44.701 +780792,224.97,46.354 +780793,230.32,41.206 +780794,227.9,42.999 +780795,225.7,44.695 +780796,223.67,46.306 +780797,229.07,41.296 +780798,226.64,43.039 +780799,224.43,44.689 +780800,222.38,46.257 +780801,227.83,41.388 +780802,225.39,43.08 +780803,223.15,44.682 +780804,221.09,46.207 +780805,226.58,41.481 +780806,224.13,43.121 +780807,221.88,44.675 +780808,219.8,46.155 +780809,225.33,41.575 +780810,222.87,43.162 +780811,220.61,44.668 +780812,218.51,46.103 +780813,224.08,41.67 +780814,221.61,43.204 +780815,219.34,44.66 +780816,217.22,46.049 +780817,222.83,41.766 +780818,220.35,43.246 +780819,218.07,44.652 +780820,215.93,45.995 +780821,221.57,41.863 +780822,219.09,43.288 +780823,216.8,44.644 +780824,214.65,45.939 +780825,220.31,41.961 +780826,217.83,43.331 +780827,215.53,44.636 +780828,213.36,45.883 +780829,219.05,42.059 +780830,216.57,43.374 +780831,214.26,44.627 +780832,212.08,45.825 +780833,217.79,42.159 +780834,215.31,43.418 +780835,212.99,44.618 +780836,210.8,45.767 +780837,216.53,42.26 +780838,214.05,43.462 +780839,211.72,44.609 +780840,209.53,45.708 +780841,215.26,42.361 +780842,212.78,43.506 +780843,210.45,44.6 +780844,208.25,45.648 +780845,213.99,42.463 +780846,211.52,43.551 +780847,209.19,44.591 +780848,206.98,45.587 +780849,212.72,42.565 +780850,210.25,43.596 +780851,207.92,44.581 +780852,205.7,45.525 +780853,211.45,42.669 +780854,208.99,43.641 +780855,206.65,44.571 +780856,204.43,45.463 +780857,210.17,42.772 +780858,207.72,43.686 +780859,205.39,44.561 +780860,203.17,45.4 +780861,208.89,42.876 +780862,206.45,43.732 +780863,204.12,44.551 +780864,201.9,45.337 +780865,207.61,42.981 +780866,205.18,43.778 +780867,202.86,44.541 +780868,200.63,45.273 +780869,206.33,43.086 +780870,203.91,43.824 +780871,201.6,44.53 +780872,199.37,45.208 +780873,205.05,43.192 +780874,202.64,43.87 +780875,200.33,44.52 +780876,198.11,45.143 +780877,203.76,43.297 +780878,201.37,43.917 +780879,199.07,44.509 +780880,196.85,45.077 +780881,202.47,43.403 +780882,200.1,43.963 +780883,197.81,44.499 +780884,195.59,45.011 +780885,201.18,43.51 +780886,198.83,44.01 +780887,196.55,44.488 +780888,194.34,44.945 +780889,199.89,43.616 +780890,197.56,44.057 +780891,195.29,44.477 +780892,193.08,44.878 +780893,198.6,43.723 +780894,196.28,44.104 +780895,194.03,44.467 +780896,191.83,44.811 +780897,197.3,43.829 +780898,195.01,44.151 +780899,192.77,44.456 +780900,190.58,44.744 +780901,196.01,43.936 +780902,193.73,44.199 +780903,191.51,44.445 +780904,189.34,44.676 +780905,194.71,44.042 +780906,192.46,44.246 +780907,190.25,44.434 +780908,188.09,44.608 +780909,193.41,44.149 +780910,191.18,44.294 +780911,188.99,44.424 +780912,186.85,44.54 +780913,192.1,44.255 +780914,189.9,44.341 +780915,187.74,44.413 +780916,185.6,44.472 +780917,190.8,44.361 +780918,188.63,44.389 +780919,186.48,44.402 +780920,184.36,44.404 +780921,189.49,44.467 +780922,187.35,44.436 +780923,185.23,44.392 +780924,183.13,44.336 +780925,188.19,44.573 +780926,186.07,44.484 +780927,183.97,44.382 +780928,181.89,44.268 +780929,186.88,44.679 +780930,184.79,44.531 +780931,182.72,44.371 +780932,180.65,44.2 +780933,185.57,44.784 +780934,183.51,44.579 +780935,181.46,44.361 +780936,179.42,44.132 +780937,184.25,44.889 +780938,182.23,44.626 +780939,180.21,44.351 +780940,178.19,44.064 +780941,182.94,44.993 +780942,180.95,44.673 +780943,178.95,44.341 +780944,176.96,43.997 +780945,181.62,45.097 +780946,179.66,44.721 +780947,177.7,44.331 +780948,175.74,43.929 +780949,180.31,45.2 +780950,178.38,44.768 +780951,176.45,44.322 +780952,174.51,43.862 +780953,178.99,45.303 +780954,177.1,44.815 +780955,175.2,44.312 +780956,173.29,43.796 +780957,177.67,45.406 +780958,175.81,44.862 +780959,173.95,44.303 +780960,172.07,43.729 +780961,176.34,45.507 +780962,174.53,44.909 +780963,172.7,44.294 +780964,170.85,43.663 +780965,175.02,45.608 +780966,173.24,44.956 +780967,171.44,44.285 +780968,169.63,43.598 +780969,173.7,45.709 +780970,171.96,45.002 +780971,170.2,44.277 +780972,168.41,43.533 +780973,172.37,45.808 +780974,170.67,45.049 +780975,168.95,44.269 +780976,167.2,43.469 +780977,171.04,45.907 +780978,169.38,45.095 +780979,167.7,44.261 +780980,165.99,43.405 +780981,169.72,46.005 +780982,168.09,45.141 +780983,166.45,44.253 +780984,164.78,43.342 +780985,168.39,46.102 +780986,166.81,45.187 +780987,165.2,44.246 +780988,163.57,43.28 +780989,167.05,46.199 +780990,165.52,45.232 +780991,163.95,44.239 +780992,162.36,43.218 +780993,165.72,46.294 +780994,164.23,45.278 +780995,162.71,44.232 +780996,161.15,43.157 +780997,164.39,46.388 +780998,162.94,45.323 +780999,161.46,44.226 +781000,159.95,43.097 +781001,163.06,46.482 +781002,161.65,45.367 +781003,160.21,44.22 +781004,158.75,43.038 +781005,161.72,46.574 +781006,160.36,45.412 +781007,158.97,44.214 +781008,157.54,42.98 +781009,160.38,46.666 +781010,159.07,45.456 +781011,157.72,44.209 +781012,156.34,42.923 +781013,159.05,46.756 +781014,157.78,45.5 +781015,156.48,44.204 +781016,155.15,42.866 +781017,157.71,46.845 +781018,156.48,45.544 +781019,155.23,44.2 +781020,153.95,42.811 +781021,156.37,46.934 +781022,155.19,45.587 +781023,153.99,44.196 +781024,152.75,42.757 +781025,155.03,47.02 +781026,153.9,45.63 +781027,152.74,44.192 +781028,151.56,42.704 +781029,153.69,47.106 +781030,152.6,45.673 +781031,151.5,44.189 +781032,150.37,42.652 +781033,152.35,47.191 +781034,151.31,45.715 +781035,150.25,44.186 +781036,149.18,42.601 +781037,151.01,47.274 +781038,150.02,45.757 +781039,149.01,44.184 +781040,147.99,42.552 +781041,149.66,47.356 +781042,148.72,45.798 +781043,147.77,44.183 +781044,146.8,42.504 +781045,148.32,47.437 +781046,147.43,45.84 +781047,146.52,44.181 +781048,145.61,42.457 +781049,146.97,47.516 +781050,146.13,45.88 +781051,145.28,44.181 +781052,144.42,42.412 +781053,145.63,47.594 +781054,144.84,45.921 +781055,144.04,44.181 +781056,143.24,42.368 +781057,144.28,47.671 +781058,143.54,45.961 +781059,142.8,44.181 +781060,142.05,42.325 +781061,142.94,47.746 +781062,142.25,46 +781063,141.56,44.182 +781064,140.87,42.284 +781065,141.59,47.82 +781066,140.95,46.039 +781067,140.31,44.183 +781068,139.68,42.245 +781069,140.24,47.892 +781070,139.65,46.078 +781071,139.07,44.185 +781072,138.5,42.207 +781073,138.9,47.963 +781074,138.36,46.116 +781075,137.83,44.188 +781076,137.32,42.17 +781077,137.55,48.033 +781078,137.06,46.154 +781079,136.59,44.191 +781080,136.14,42.135 +781081,136.2,48.101 +781082,135.76,46.191 +781083,135.35,44.195 +781084,134.96,42.102 +781085,134.85,48.167 +781086,134.46,46.228 +781087,134.11,44.199 +781088,133.78,42.071 +781089,133.5,48.232 +781090,133.17,46.264 +781091,132.86,44.204 +781092,132.6,42.041 +781093,132.15,48.296 +781094,131.87,46.3 +781095,131.62,44.21 +781096,131.42,42.013 +781097,130.8,48.358 +781098,130.57,46.335 +781099,130.38,44.216 +781100,130.24,41.987 +781101,129.45,48.418 +781102,129.27,46.37 +781103,129.14,44.223 +781104,129.07,41.963 +781105,128.1,48.477 +781106,127.97,46.404 +781107,127.9,44.23 +781108,127.89,41.94 +781109,126.75,48.534 +781110,126.68,46.438 +781111,126.66,44.238 +781112,126.71,41.919 +781113,125.4,48.589 +781114,125.38,46.471 +781115,125.42,44.247 +781116,125.54,41.9 +781117,124.05,48.643 +781118,124.08,46.504 +781119,124.17,44.256 +781120,124.36,41.883 +781121,122.7,48.695 +781122,122.78,46.536 +781123,122.93,44.266 +781124,123.18,41.868 +781125,121.35,48.746 +781126,121.48,46.568 +781127,121.69,44.277 +781128,122,41.855 +781129,120,48.795 +781130,120.18,46.599 +781131,120.45,44.288 +781132,120.83,41.844 +781133,118.65,48.842 +781134,118.88,46.629 +781135,119.21,44.3 +781136,119.65,41.835 +781137,117.3,48.887 +781138,117.59,46.659 +781139,117.97,44.313 +781140,118.47,41.828 +781141,115.95,48.931 +781142,116.29,46.689 +781143,116.72,44.327 +781144,117.3,41.823 +781145,114.6,48.973 +781146,114.99,46.718 +781147,115.48,44.341 +781148,116.12,41.82 +781149,113.25,49.014 +781150,113.69,46.746 +781151,114.24,44.355 +781152,114.94,41.819 +781153,111.9,49.052 +781154,112.39,46.774 +781155,113,44.371 +781156,113.76,41.82 +781157,110.55,49.089 +781158,111.09,46.801 +781159,111.75,44.387 +781160,112.58,41.823 +781161,109.2,49.125 +781162,109.79,46.828 +781163,110.51,44.404 +781164,111.4,41.829 +781165,107.86,49.158 +781166,108.49,46.854 +781167,109.27,44.421 +781168,110.22,41.836 +781169,106.51,49.19 +781170,107.2,46.88 +781171,108.02,44.44 +781172,109.04,41.846 +781173,105.16,49.22 +781174,105.9,46.905 +781175,106.78,44.459 +781176,107.86,41.857 +781177,103.81,49.249 +781178,104.6,46.929 +781179,105.53,44.478 +781180,106.67,41.871 +781181,102.47,49.275 +781182,103.3,46.953 +781183,104.29,44.499 +781184,105.49,41.887 +781185,101.12,49.3 +781186,102,46.976 +781187,103.04,44.52 +781188,104.3,41.905 +781189,99.777,49.323 +781190,100.7,46.999 +781191,101.8,44.541 +781192,103.12,41.925 +781193,98.432,49.345 +781194,99.407,47.021 +781195,100.55,44.564 +781196,101.93,41.947 +781197,97.088,49.365 +781198,98.109,47.043 +781199,99.307,44.587 +781200,100.74,41.971 +781201,95.744,49.383 +781202,96.812,47.064 +781203,98.06,44.611 +781204,99.549,41.998 +781205,94.402,49.399 +781206,95.515,47.084 +781207,96.813,44.635 +781208,98.358,42.026 +781209,93.06,49.414 +781210,94.218,47.104 +781211,95.565,44.661 +781212,97.165,42.057 +781213,91.718,49.427 +781214,92.921,47.123 +781215,94.317,44.687 +781216,95.971,42.09 +781217,90.378,49.438 +781218,91.625,47.142 +781219,93.069,44.713 +781220,94.776,42.125 +781221,89.038,49.448 +781222,90.329,47.16 +781223,91.82,44.741 +781224,93.579,42.162 +781225,87.7,49.456 +781226,89.033,47.178 +781227,90.57,44.769 +781228,92.38,42.201 +781229,86.362,49.462 +781230,87.737,47.195 +781231,89.32,44.797 +781232,91.18,42.242 +781233,85.025,49.467 +781234,86.442,47.212 +781235,88.069,44.827 +781236,89.978,42.285 +781237,83.689,49.469 +781238,85.147,47.228 +781239,86.818,44.857 +781240,88.774,42.33 +781241,82.354,49.471 +781242,83.852,47.243 +781243,85.566,44.887 +781244,87.568,42.377 +781245,81.02,49.47 +781246,82.558,47.258 +781247,84.314,44.919 +781248,86.361,42.427 +781249,79.687,49.469 +781250,81.264,47.273 +781251,83.061,44.951 +781252,85.152,42.478 +781253,78.355,49.465 +781254,79.97,47.287 +781255,81.808,44.983 +781256,83.941,42.531 +781257,77.024,49.46 +781258,78.677,47.3 +781259,80.554,45.017 +781260,82.728,42.586 +781261,75.695,49.453 +781262,77.384,47.313 +781263,79.299,45.051 +781264,81.513,42.643 +781265,74.366,49.445 +781266,76.091,47.325 +781267,78.044,45.085 +781268,80.296,42.702 +781269,73.039,49.435 +781270,74.799,47.337 +781271,76.788,45.12 +781272,79.077,42.762 +781273,71.713,49.424 +781274,73.508,47.348 +781275,75.531,45.156 +781276,77.856,42.825 +781277,70.388,49.411 +781278,72.216,47.359 +781279,74.274,45.192 +781280,76.632,42.889 +781281,69.064,49.397 +781282,70.925,47.37 +781283,73.016,45.229 +781284,75.407,42.955 +781285,67.742,49.381 +781286,69.635,47.38 +781287,71.757,45.267 +781288,74.18,43.023 +781289,66.421,49.364 +781290,68.345,47.389 +781291,70.498,45.305 +781292,72.95,43.093 +781293,65.102,49.345 +781294,67.055,47.398 +781295,69.238,45.344 +781296,71.718,43.164 +781297,63.783,49.325 +781298,65.766,47.406 +781299,67.977,45.383 +781300,70.484,43.237 +781301,62.467,49.304 +781302,64.477,47.414 +781303,66.715,45.423 +781304,69.248,43.311 +781305,61.151,49.281 +781306,63.189,47.422 +781307,65.453,45.464 +781308,68.009,43.387 +781309,59.837,49.257 +781310,61.901,47.429 +781311,64.19,45.504 +781312,66.768,43.465 +781313,58.525,49.231 +781314,60.614,47.436 +781315,62.927,45.546 +781316,65.525,43.544 +781317,57.214,49.204 +781318,59.327,47.442 +781319,61.662,45.588 +781320,64.28,43.625 +781321,55.905,49.176 +781322,58.041,47.448 +781323,60.397,45.63 +781324,63.032,43.707 +781325,54.597,49.147 +781326,56.755,47.454 +781327,59.131,45.673 +781328,61.782,43.791 +781329,53.29,49.116 +781330,55.47,47.459 +781331,57.864,45.717 +781332,60.53,43.876 +781333,51.986,49.084 +781334,54.186,47.464 +781335,56.597,45.761 +781336,59.275,43.962 +781337,50.683,49.052 +781338,52.901,47.468 +781339,55.329,45.805 +781340,58.018,44.049 +781341,49.381,49.017 +781342,51.618,47.472 +781343,54.06,45.85 +781344,56.759,44.138 +781345,48.081,48.982 +781346,50.335,47.476 +781347,52.79,45.895 +781348,55.498,44.228 +781349,46.783,48.946 +781350,49.052,47.479 +781351,51.52,45.941 +781352,54.234,44.319 +781353,45.487,48.909 +781354,47.77,47.482 +781355,50.248,45.987 +781356,52.967,44.412 +781357,44.192,48.87 +781358,46.489,47.485 +781359,48.976,46.033 +781360,51.699,44.505 +781361,42.899,48.831 +781362,45.208,47.488 +781363,47.703,46.08 +781364,50.428,44.599 +781365,41.608,48.79 +781366,43.927,47.49 +781367,46.43,46.127 +781368,49.155,44.695 +781369,40.318,48.749 +781370,42.648,47.492 +781371,45.155,46.175 +781372,47.88,44.791 +781373,39.03,48.707 +781374,41.368,47.493 +781375,43.88,46.223 +781376,46.602,44.888 +781377,37.744,48.664 +781378,40.09,47.494 +781379,42.604,46.271 +781380,45.322,44.987 +781381,36.46,48.62 +781382,38.812,47.495 +781383,41.327,46.32 +781384,44.04,45.086 +781385,35.178,48.575 +781386,37.534,47.496 +781387,40.05,46.369 +781388,42.756,45.185 +781389,33.897,48.53 +781390,36.257,47.497 +781391,38.771,46.418 +781392,41.469,45.286 +781393,32.618,48.483 +781394,34.981,47.497 +781395,37.492,46.467 +781396,40.18,45.387 +781397,31.341,48.436 +781398,33.705,47.498 +781399,36.212,46.517 +781400,38.889,45.489 +781401,30.066,48.389 +781402,32.43,47.498 +781403,34.932,46.567 +781404,37.596,45.591 +781405,28.793,48.34 +781406,31.155,47.497 +781407,33.65,46.617 +781408,36.301,45.694 +781409,27.521,48.291 +781410,29.881,47.497 +781411,32.368,46.667 +781412,35.004,45.798 +781413,26.252,48.242 +781414,28.608,47.497 +781415,31.085,46.718 +781416,33.704,45.902 +781417,24.984,48.192 +781418,27.335,47.496 +781419,29.801,46.769 +781420,32.403,46.006 +781421,23.719,48.141 +781422,26.062,47.495 +781423,28.517,46.82 +781424,31.099,46.111 +781425,22.455,48.09 +781426,24.791,47.494 +781427,27.232,46.871 +781428,29.793,46.216 +781429,21.193,48.039 +781430,23.519,47.494 +781431,25.946,46.922 +781432,28.486,46.322 +781433,19.933,47.987 +781434,22.249,47.493 +781435,24.659,46.974 +781436,27.176,46.427 +781437,18.674,47.935 +781438,20.979,47.491 +781439,23.372,47.025 +781440,25.865,46.533 +781441,17.418,47.882 +781442,19.709,47.49 +781443,22.084,47.077 +781444,24.551,46.639 +781445,16.164,47.83 +781446,18.44,47.489 +781447,20.795,47.128 +781448,23.236,46.745 +781449,14.911,47.777 +781450,17.172,47.488 +781451,19.505,47.18 +781452,21.919,46.852 +781453,13.66,47.723 +781454,15.904,47.487 +781455,18.215,47.232 +781456,20.6,46.958 +781457,12.412,47.67 +781458,14.637,47.485 +781459,16.924,47.284 +781460,19.279,47.064 +781461,11.165,47.617 +781462,13.37,47.484 +781463,15.632,47.336 +781464,17.957,47.17 +781465,9.9197,47.563 +781466,12.104,47.483 +781467,14.34,47.388 +781468,16.632,47.276 +781469,8.6765,47.51 +781470,10.838,47.482 +781471,13.047,47.44 +781472,15.306,47.382 +781473,7.4351,47.456 +781474,9.5731,47.481 +781475,11.753,47.492 +781476,13.979,47.488 +781477,6.1956,47.402 +781478,8.3085,47.48 +781479,10.459,47.544 +781480,12.65,47.594 +781481,4.9579,47.349 +781482,7.0444,47.479 +781483,9.1636,47.596 +781484,11.319,47.699 +781485,3.722,47.296 +781486,5.7808,47.478 +781487,7.868,47.648 +781488,9.9863,47.804 +781489,2.4879,47.242 +781490,4.5176,47.477 +781491,6.5717,47.7 +781492,8.6523,47.908 +781493,1.2556,47.19 +781494,3.255,47.476 +781495,5.2748,47.751 +781496,7.3168,48.013 +781497,0.025104,47.137 +781498,1.9929,47.476 +781499,3.9773,47.803 +781500,5.9799,48.117 +781501,358.8,47.084 +781502,0.73126,47.475 +781503,2.6792,47.854 +781504,4.6416,48.22 +781505,357.57,47.032 +781506,359.47,47.475 +781507,1.3805,47.906 +781508,3.3018,48.323 +781509,356.34,46.98 +781510,358.21,47.475 +781511,0.081187,47.957 +781512,1.9607,48.425 +781513,355.12,46.929 +781514,356.95,47.475 +781515,358.78,48.008 +781516,0.61831,48.527 +781517,353.9,46.878 +781518,355.69,47.476 +781519,357.48,48.059 +781520,359.27,48.628 +781521,352.68,46.828 +781522,354.43,47.476 +781523,356.18,48.11 +781524,357.93,48.728 +781525,351.46,46.778 +781526,353.17,47.477 +781527,354.88,48.161 +781528,356.58,48.828 +781529,350.24,46.728 +781530,351.91,47.478 +781531,353.58,48.211 +781532,355.24,48.927 +781533,349.03,46.68 +781534,350.65,47.479 +781535,352.27,48.261 +781536,353.89,49.026 +781537,347.81,46.632 +781538,349.4,47.481 +781539,350.97,48.311 +781540,352.54,49.123 +781541,346.6,46.584 +781542,348.14,47.482 +781543,349.67,48.361 +781544,351.19,49.22 +781545,345.39,46.537 +781546,346.88,47.484 +781547,348.36,48.411 +781548,349.84,49.316 +781549,344.18,46.491 +781550,345.63,47.487 +781551,347.06,48.46 +781552,348.48,49.411 +781553,342.97,46.446 +781554,344.37,47.489 +781555,345.75,48.509 +781556,347.13,49.505 +781557,341.76,46.402 +781558,343.11,47.492 +781559,344.45,48.558 +781560,345.77,49.598 +781561,340.56,46.359 +781562,341.86,47.496 +781563,343.14,48.606 +781564,344.42,49.69 +781565,339.35,46.316 +781566,340.6,47.499 +781567,341.84,48.655 +781568,343.06,49.781 +781569,338.15,46.274 +781570,339.35,47.503 +781571,340.53,48.702 +781572,341.71,49.872 +781573,336.95,46.234 +781574,338.09,47.508 +781575,339.22,48.75 +781576,340.35,49.961 +781577,335.75,46.194 +781578,336.84,47.513 +781579,337.92,48.797 +781580,338.99,50.049 +781581,334.55,46.156 +781582,335.58,47.518 +781583,336.61,48.844 +781584,337.63,50.135 +781585,333.35,46.118 +781586,334.33,47.523 +781587,335.3,48.89 +781588,336.27,50.221 +781589,332.15,46.082 +781590,333.07,47.529 +781591,333.99,48.937 +781592,334.91,50.306 +781593,330.96,46.047 +781594,331.82,47.536 +781595,332.68,48.982 +781596,333.55,50.389 +781597,329.76,46.013 +781598,330.57,47.542 +781599,331.38,49.028 +781600,332.19,50.471 +781601,328.57,45.98 +781602,329.31,47.55 +781603,330.07,49.073 +781604,330.82,50.552 +781605,327.37,45.949 +781606,328.06,47.557 +781607,328.76,49.117 +781608,329.46,50.631 +781609,326.18,45.919 +781610,326.81,47.565 +781611,327.45,49.162 +781612,328.1,50.71 +781613,324.99,45.89 +781614,325.55,47.574 +781615,326.14,49.205 +781616,326.73,50.787 +781617,323.8,45.862 +781618,324.3,47.583 +781619,324.83,49.249 +781620,325.37,50.862 +781621,322.61,45.836 +781622,323.05,47.593 +781623,323.52,49.292 +781624,324.01,50.937 +781625,321.42,45.812 +781626,321.8,47.603 +781627,322.21,49.334 +781628,322.64,51.01 +781629,320.23,45.789 +781630,320.54,47.613 +781631,320.89,49.376 +781632,321.28,51.081 +781633,319.04,45.767 +781634,319.29,47.624 +781635,319.58,49.418 +781636,319.91,51.151 +781637,317.85,45.747 +781638,318.04,47.636 +781639,318.27,49.459 +781640,318.54,51.22 +781641,316.66,45.728 +781642,316.79,47.648 +781643,316.96,49.499 +781644,317.18,51.287 +781645,315.47,45.711 +781646,315.53,47.661 +781647,315.65,49.54 +781648,315.81,51.353 +781649,314.28,45.695 +781650,314.28,47.674 +781651,314.34,49.579 +781652,314.45,51.417 +781653,313.1,45.681 +781654,313.03,47.688 +781655,313.03,49.619 +781656,313.08,51.48 +781657,311.91,45.669 +781658,311.78,47.702 +781659,311.72,49.657 +781660,311.72,51.542 +781661,310.72,45.658 +781662,310.52,47.717 +781663,310.4,49.695 +781664,310.35,51.601 +781665,309.53,45.649 +781666,309.27,47.732 +781667,309.09,49.733 +781668,308.98,51.66 +781669,308.35,45.642 +781670,308.02,47.748 +781671,307.78,49.77 +781672,307.62,51.716 +781673,307.16,45.636 +781674,306.76,47.765 +781675,306.47,49.807 +781676,306.25,51.772 +781677,305.97,45.632 +781678,305.51,47.782 +781679,305.16,49.843 +781680,304.89,51.825 +781681,304.78,45.63 +781682,304.26,47.8 +781683,303.84,49.879 +781684,303.52,51.877 +781685,303.59,45.63 +781686,303,47.818 +781687,302.53,49.914 +781688,302.16,51.928 +781689,302.41,45.631 +781690,301.75,47.837 +781691,301.22,49.949 +781692,300.79,51.977 +781693,301.22,45.634 +781694,300.5,47.857 +781695,299.91,49.983 +781696,299.43,52.024 +781697,300.03,45.639 +781698,299.24,47.877 +781699,298.6,50.016 +781700,298.07,52.07 +781701,298.84,45.646 +781702,297.99,47.897 +781703,297.29,50.049 +781704,296.7,52.114 +781705,297.65,45.655 +781706,296.73,47.919 +781707,295.97,50.082 +781708,295.34,52.156 +781709,296.45,45.665 +781710,295.48,47.941 +781711,294.66,50.114 +781712,293.98,52.197 +781713,295.26,45.677 +781714,294.22,47.963 +781715,293.35,50.145 +781716,292.61,52.237 +781717,294.07,45.691 +781718,292.97,47.986 +781719,292.04,50.176 +781720,291.25,52.274 +781721,292.87,45.707 +781722,291.71,48.01 +781723,290.73,50.206 +781724,289.89,52.31 +781725,291.68,45.725 +781726,290.45,48.034 +781727,289.42,50.236 +781728,288.53,52.345 +781729,290.48,45.745 +781730,289.2,48.059 +781731,288.11,50.265 +781732,287.17,52.378 +781733,289.29,45.766 +781734,287.94,48.085 +781735,286.8,50.294 +781736,285.81,52.409 +781737,288.09,45.79 +781738,286.68,48.111 +781739,285.49,50.322 +781740,284.45,52.438 +781741,286.89,45.815 +781742,285.43,48.138 +781743,284.18,50.35 +781744,283.09,52.466 +781745,285.69,45.842 +781746,284.17,48.165 +781747,282.87,50.377 +781748,281.74,52.493 +781749,284.49,45.871 +781750,282.91,48.193 +781751,281.56,50.403 +781752,280.38,52.517 +781753,283.28,45.902 +781754,281.65,48.222 +781755,280.25,50.429 +781756,279.03,52.54 +781757,282.08,45.935 +781758,280.39,48.251 +781759,278.94,50.455 +781760,277.67,52.562 +781761,280.87,45.97 +781762,279.13,48.281 +781763,277.63,50.48 +781764,276.32,52.582 +781765,279.66,46.006 +781766,277.87,48.311 +781767,276.32,50.504 +781768,274.96,52.6 +781769,278.46,46.044 +781770,276.61,48.342 +781771,275.01,50.528 +781772,273.61,52.617 +781773,277.24,46.084 +781774,275.35,48.374 +781775,273.7,50.551 +781776,272.26,52.632 +781777,276.03,46.126 +781778,274.08,48.406 +781779,272.4,50.574 +781780,270.91,52.645 +781781,274.82,46.17 +781782,272.82,48.439 +781783,271.09,50.596 +781784,269.56,52.657 +781785,273.6,46.216 +781786,271.56,48.472 +781787,269.78,50.618 +781788,268.21,52.668 +781789,272.39,46.263 +781790,270.29,48.506 +781791,268.47,50.639 +781792,266.87,52.677 +781793,271.17,46.312 +781794,269.03,48.541 +781795,267.17,50.66 +781796,265.52,52.684 +781797,269.94,46.363 +781798,267.77,48.576 +781799,265.86,50.68 +781800,264.17,52.69 +781801,268.72,46.415 +781802,266.5,48.612 +781803,264.56,50.7 +781804,262.83,52.694 +781805,267.5,46.47 +781806,265.23,48.648 +781807,263.25,50.719 +781808,261.49,52.697 +781809,266.27,46.526 +781810,263.97,48.685 +781811,261.95,50.737 +781812,260.15,52.699 +781813,265.04,46.583 +781814,262.7,48.722 +781815,260.64,50.756 +781816,258.81,52.699 +781817,263.81,46.643 +781818,261.43,48.76 +781819,259.34,50.773 +781820,257.47,52.697 +781821,262.58,46.704 +781822,260.16,48.798 +781823,258.03,50.79 +781824,256.13,52.694 +781825,261.34,46.766 +781826,258.89,48.837 +781827,256.73,50.807 +781828,254.8,52.69 +781829,260.11,46.83 +781830,257.62,48.877 +781831,255.43,50.823 +781832,253.46,52.684 +781833,258.87,46.896 +781834,256.35,48.917 +781835,254.13,50.839 +781836,252.13,52.677 +781837,257.63,46.963 +781838,255.08,48.957 +781839,252.82,50.854 +781840,250.8,52.668 +781841,256.38,47.032 +781842,253.81,48.998 +781843,251.52,50.869 +781844,249.46,52.658 +781845,255.14,47.103 +781846,252.54,49.04 +781847,250.22,50.884 +781848,248.14,52.647 +781849,253.89,47.174 +781850,251.26,49.082 +781851,248.92,50.898 +781852,246.81,52.634 +781853,252.64,47.248 +781854,249.99,49.124 +781855,247.62,50.911 +781856,245.48,52.621 +781857,251.39,47.322 +781858,248.71,49.167 +781859,246.32,50.924 +781860,244.16,52.605 +781861,250.13,47.398 +781862,247.44,49.211 +781863,245.02,50.937 +781864,242.83,52.589 +781865,248.87,47.475 +781866,246.16,49.254 +781867,243.73,50.949 +781868,241.51,52.572 +781869,247.61,47.554 +781870,244.88,49.299 +781871,242.43,50.961 +781872,240.19,52.553 +781873,246.35,47.634 +781874,243.6,49.343 +781875,241.13,50.973 +781876,238.87,52.533 +781877,245.09,47.715 +781878,242.33,49.389 +781879,239.83,50.984 +781880,237.56,52.512 +781881,243.82,47.798 +781882,241.05,49.434 +781883,238.54,50.995 +781884,236.24,52.49 +781885,242.55,47.881 +781886,239.77,49.48 +781887,237.24,51.005 +781888,234.93,52.466 +781889,241.28,47.966 +781890,238.49,49.526 +781891,235.95,51.015 +781892,233.62,52.442 +781893,240.01,48.052 +781894,237.2,49.573 +781895,234.65,51.025 +781896,232.31,52.416 +781897,238.73,48.139 +781898,235.92,49.62 +781899,233.36,51.034 +781900,231,52.39 +781901,237.46,48.227 +781902,234.64,49.668 +781903,232.06,51.043 +781904,229.69,52.362 +781905,236.18,48.316 +781906,233.35,49.715 +781907,230.77,51.052 +781908,228.39,52.334 +781909,234.89,48.405 +781910,232.07,49.764 +781911,229.48,51.061 +781912,227.08,52.305 +781913,233.61,48.496 +781914,230.78,49.812 +781915,228.19,51.069 +781916,225.78,52.274 +781917,232.32,48.588 +781918,229.5,49.861 +781919,226.9,51.077 +781920,224.48,52.243 +781921,231.03,48.681 +781922,228.21,49.91 +781923,225.61,51.084 +781924,223.18,52.211 +781925,229.74,48.774 +781926,226.92,49.959 +781927,224.32,51.092 +781928,221.89,52.178 +781929,228.45,48.868 +781930,225.63,50.009 +781931,223.03,51.099 +781932,220.59,52.144 +781933,227.15,48.963 +781934,224.34,50.059 +781935,221.74,51.106 +781936,219.3,52.11 +781937,225.85,49.059 +781938,223.05,50.109 +781939,220.45,51.112 +781940,218.01,52.075 +781941,224.55,49.155 +781942,221.76,50.159 +781943,219.16,51.119 +781944,216.72,52.039 +781945,223.25,49.252 +781946,220.47,50.21 +781947,217.87,51.125 +781948,215.43,52.002 +781949,221.95,49.35 +781950,219.18,50.26 +781951,216.59,51.131 +781952,214.15,51.965 +781953,220.64,49.448 +781954,217.88,50.311 +781955,215.3,51.136 +781956,212.86,51.927 +781957,219.33,49.546 +781958,216.59,50.363 +781959,214.02,51.142 +781960,211.58,51.889 +781961,218.02,49.645 +781962,215.29,50.414 +781963,212.73,51.148 +781964,210.3,51.85 +781965,216.7,49.745 +781966,214,50.465 +781967,211.45,51.153 +781968,209.03,51.811 +781969,215.39,49.844 +781970,212.7,50.517 +781971,210.16,51.158 +781972,207.75,51.771 +781973,214.07,49.944 +781974,211.41,50.569 +781975,208.88,51.163 +781976,206.48,51.731 +781977,212.75,50.045 +781978,210.11,50.621 +781979,207.6,51.168 +781980,205.2,51.69 +781981,211.43,50.146 +781982,208.81,50.673 +781983,206.32,51.173 +781984,203.93,51.649 +781985,210.11,50.247 +781986,207.51,50.725 +781987,205.03,51.178 +781988,202.66,51.607 +781989,208.78,50.348 +781990,206.21,50.777 +781991,203.75,51.182 +781992,201.4,51.566 +781993,207.45,50.449 +781994,204.91,50.83 +781995,202.47,51.187 +781996,200.13,51.524 +781997,206.13,50.55 +781998,203.61,50.882 +781999,201.19,51.191 +782000,198.87,51.481 +782001,204.79,50.652 +782002,202.31,50.934 +782003,199.91,51.196 +782004,197.61,51.439 +782005,203.46,50.753 +782006,201,50.987 +782007,198.64,51.2 +782008,196.35,51.396 +782009,202.13,50.854 +782010,199.7,51.039 +782011,197.36,51.205 +782012,195.09,51.354 +782013,200.79,50.956 +782014,198.4,51.092 +782015,196.08,51.209 +782016,193.84,51.311 +782017,199.45,51.057 +782018,197.09,51.144 +782019,194.8,51.214 +782020,192.58,51.268 +782021,198.11,51.158 +782022,195.79,51.197 +782023,193.53,51.218 +782024,191.33,51.225 +782025,196.77,51.259 +782026,194.48,51.249 +782027,192.25,51.223 +782028,190.08,51.183 +782029,195.43,51.36 +782030,193.17,51.301 +782031,190.98,51.227 +782032,188.83,51.14 +782033,194.08,51.46 +782034,191.87,51.354 +782035,189.7,51.232 +782036,187.59,51.097 +782037,192.74,51.561 +782038,190.56,51.406 +782039,188.43,51.237 +782040,186.34,51.055 +782041,191.39,51.66 +782042,189.25,51.458 +782043,187.15,51.241 +782044,185.1,51.012 +782045,190.04,51.76 +782046,187.94,51.51 +782047,185.88,51.246 +782048,183.86,50.97 +782049,188.69,51.859 +782050,186.63,51.562 +782051,184.61,51.251 +782052,182.62,50.928 +782053,187.34,51.958 +782054,185.32,51.614 +782055,183.33,51.256 +782056,181.38,50.887 +782057,185.98,52.056 +782058,184.01,51.666 +782059,182.06,51.262 +782060,180.14,50.845 +782061,184.63,52.154 +782062,182.7,51.717 +782063,180.79,51.267 +782064,178.91,50.804 +782065,183.27,52.251 +782066,181.39,51.769 +782067,179.52,51.272 +782068,177.67,50.764 +782069,181.92,52.348 +782070,180.07,51.82 +782071,178.25,51.278 +782072,176.44,50.724 +782073,180.56,52.444 +782074,178.76,51.871 +782075,176.98,51.284 +782076,175.21,50.684 +782077,179.2,52.539 +782078,177.45,51.922 +782079,175.71,51.29 +782080,173.98,50.645 +782081,177.84,52.634 +782082,176.13,51.973 +782083,174.44,51.296 +782084,172.76,50.606 +782085,176.48,52.728 +782086,174.82,52.023 +782087,173.17,51.303 +782088,171.53,50.568 +782089,175.11,52.821 +782090,173.5,52.073 +782091,171.9,51.309 +782092,170.31,50.531 +782093,173.75,52.914 +782094,172.19,52.123 +782095,170.63,51.316 +782096,169.08,50.494 +782097,172.38,53.006 +782098,170.87,52.173 +782099,169.37,51.323 +782100,167.86,50.458 +782101,171.02,53.097 +782102,169.56,52.223 +782103,168.1,51.331 +782104,166.64,50.422 +782105,169.65,53.187 +782106,168.24,52.272 +782107,166.83,51.338 +782108,165.43,50.388 +782109,168.28,53.276 +782110,166.92,52.321 +782111,165.56,51.346 +782112,164.21,50.354 +782113,166.91,53.364 +782114,165.6,52.37 +782115,164.3,51.355 +782116,162.99,50.32 +782117,165.54,53.451 +782118,164.29,52.418 +782119,163.03,51.363 +782120,161.78,50.288 +782121,164.17,53.538 +782122,162.97,52.466 +782123,161.77,51.372 +782124,160.56,50.257 +782125,162.8,53.623 +782126,161.65,52.514 +782127,160.5,51.381 +782128,159.35,50.226 +782129,161.43,53.708 +782130,160.33,52.561 +782131,159.23,51.391 +782132,158.14,50.197 +782133,160.06,53.791 +782134,159.01,52.608 +782135,157.97,51.401 +782136,156.93,50.168 +782137,158.68,53.873 +782138,157.69,52.655 +782139,156.7,51.411 +782140,155.72,50.14 +782141,157.31,53.954 +782142,156.37,52.702 +782143,155.44,51.421 +782144,154.51,50.114 +782145,155.94,54.034 +782146,155.05,52.748 +782147,154.17,51.432 +782148,153.3,50.088 +782149,154.56,54.113 +782150,153.73,52.793 +782151,152.91,51.443 +782152,152.1,50.064 +782153,153.19,54.191 +782154,152.41,52.839 +782155,151.65,51.455 +782156,150.89,50.04 +782157,151.81,54.268 +782158,151.09,52.883 +782159,150.38,51.467 +782160,149.69,50.018 +782161,150.43,54.343 +782162,149.77,52.928 +782163,149.12,51.48 +782164,148.48,49.997 +782165,149.06,54.417 +782166,148.45,52.972 +782167,147.85,51.492 +782168,147.28,49.977 +782169,147.68,54.49 +782170,147.13,53.016 +782171,146.59,51.506 +782172,146.08,49.959 +782173,146.3,54.562 +782174,145.8,53.059 +782175,145.33,51.519 +782176,144.87,49.942 +782177,144.93,54.632 +782178,144.48,53.102 +782179,144.06,51.534 +782180,143.67,49.925 +782181,143.55,54.701 +782182,143.16,53.144 +782183,142.8,51.548 +782184,142.47,49.911 +782185,142.17,54.769 +782186,141.84,53.186 +782187,141.54,51.563 +782188,141.27,49.897 +782189,140.79,54.835 +782190,140.52,53.228 +782191,140.27,51.579 +782192,140.07,49.885 +782193,139.42,54.9 +782194,139.19,53.269 +782195,139.01,51.594 +782196,138.87,49.874 +782197,138.04,54.964 +782198,137.87,53.31 +782199,137.75,51.611 +782200,137.67,49.865 +782201,136.66,55.026 +782202,136.55,53.35 +782203,136.48,51.628 +782204,136.47,49.857 +782205,135.28,55.087 +782206,135.23,53.39 +782207,135.22,51.645 +782208,135.27,49.851 +782209,133.9,55.146 +782210,133.9,53.429 +782211,133.96,51.663 +782212,134.07,49.846 +782213,132.52,55.204 +782214,132.58,53.468 +782215,132.69,51.681 +782216,132.87,49.842 +782217,131.15,55.261 +782218,131.26,53.506 +782219,131.43,51.7 +782220,131.67,49.84 +782221,129.77,55.316 +782222,129.93,53.544 +782223,130.16,51.719 +782224,130.47,49.839 +782225,128.39,55.37 +782226,128.61,53.581 +782227,128.9,51.739 +782228,129.27,49.84 +782229,127.01,55.422 +782230,127.29,53.618 +782231,127.64,51.759 +782232,128.07,49.843 +782233,125.64,55.473 +782234,125.97,53.654 +782235,126.37,51.78 +782236,126.87,49.847 +782237,124.26,55.523 +782238,124.64,53.69 +782239,125.11,51.802 +782240,125.67,49.852 +782241,122.88,55.571 +782242,123.32,53.725 +782243,123.84,51.823 +782244,124.47,49.86 +782245,121.51,55.617 +782246,122,53.76 +782247,122.58,51.846 +782248,123.27,49.868 +782249,120.13,55.662 +782250,120.67,53.795 +782251,121.31,51.869 +782252,122.07,49.879 +782253,118.76,55.705 +782254,119.35,53.828 +782255,120.05,51.892 +782256,120.86,49.89 +782257,117.38,55.747 +782258,118.03,53.862 +782259,118.78,51.916 +782260,119.66,49.904 +782261,116.01,55.788 +782262,116.71,53.895 +782263,117.52,51.94 +782264,118.46,49.919 +782265,114.64,55.826 +782266,115.39,53.927 +782267,116.25,51.965 +782268,117.25,49.936 +782269,113.26,55.864 +782270,114.06,53.959 +782271,114.98,51.991 +782272,116.05,49.954 +782273,111.89,55.9 +782274,112.74,53.99 +782275,113.72,52.017 +782276,114.84,49.974 +782277,110.52,55.934 +782278,111.42,54.021 +782279,112.45,52.043 +782280,113.64,49.996 +782281,109.15,55.967 +782282,110.1,54.051 +782283,111.18,52.071 +782284,112.43,50.019 +782285,107.78,55.998 +782286,108.78,54.081 +782287,109.92,52.098 +782288,111.22,50.044 +782289,106.41,56.028 +782290,107.46,54.11 +782291,108.65,52.126 +782292,110.01,50.071 +782293,105.04,56.056 +782294,106.14,54.138 +782295,107.38,52.155 +782296,108.8,50.099 +782297,103.67,56.083 +782298,104.82,54.167 +782299,106.11,52.184 +782300,107.59,50.129 +782301,102.3,56.108 +782302,103.5,54.194 +782303,104.84,52.214 +782304,106.37,50.16 +782305,100.94,56.132 +782306,102.18,54.221 +782307,103.57,52.244 +782308,105.16,50.194 +782309,99.57,56.154 +782310,100.86,54.248 +782311,102.3,52.275 +782312,103.94,50.228 +782313,98.205,56.175 +782314,99.536,54.274 +782315,101.03,52.307 +782316,102.73,50.265 +782317,96.841,56.194 +782318,98.217,54.3 +782319,99.76,52.338 +782320,101.51,50.303 +782321,95.478,56.212 +782322,96.899,54.325 +782323,98.489,52.371 +782324,100.29,50.342 +782325,94.117,56.229 +782326,95.58,54.349 +782327,97.217,52.404 +782328,99.068,50.384 +782329,92.756,56.244 +782330,94.262,54.374 +782331,95.944,52.437 +782332,97.845,50.426 +782333,91.396,56.257 +782334,92.944,54.397 +782335,94.671,52.471 +782336,96.621,50.471 +782337,90.038,56.269 +782338,91.627,54.42 +782339,93.398,52.506 +782340,95.394,50.517 +782341,88.68,56.28 +782342,90.31,54.443 +782343,92.124,52.54 +782344,94.167,50.564 +782345,87.324,56.289 +782346,88.993,54.465 +782347,90.849,52.576 +782348,92.937,50.613 +782349,85.969,56.297 +782350,87.677,54.487 +782351,89.574,52.612 +782352,91.706,50.664 +782353,84.615,56.303 +782354,86.361,54.508 +782355,88.298,52.648 +782356,90.473,50.716 +782357,83.263,56.308 +782358,85.045,54.529 +782359,87.022,52.685 +782360,89.239,50.77 +782361,81.911,56.312 +782362,83.73,54.549 +782363,85.745,52.723 +782364,88.002,50.825 +782365,80.561,56.314 +782366,82.416,54.569 +782367,84.467,52.76 +782368,86.763,50.882 +782369,79.212,56.315 +782370,81.102,54.588 +782371,83.189,52.799 +782372,85.523,50.94 +782373,77.865,56.314 +782374,79.788,54.607 +782375,81.911,52.838 +782376,84.281,50.999 +782377,76.519,56.313 +782378,78.474,54.625 +782379,80.631,52.877 +782380,83.036,51.06 +782381,75.174,56.31 +782382,77.162,54.643 +782383,79.351,52.917 +782384,81.79,51.122 +782385,73.831,56.305 +782386,75.849,54.661 +782387,78.07,52.957 +782388,80.542,51.186 +782389,72.489,56.3 +782390,74.537,54.678 +782391,76.789,52.997 +782392,79.291,51.251 +782393,71.149,56.293 +782394,73.226,54.694 +782395,75.507,53.038 +782396,78.039,51.318 +782397,69.81,56.285 +782398,71.915,54.711 +782399,74.224,53.08 +782400,76.784,51.385 +782401,68.472,56.276 +782402,70.605,54.727 +782403,72.941,53.122 +782404,75.527,51.454 +782405,67.136,56.265 +782406,69.295,54.742 +782407,71.657,53.164 +782408,74.269,51.524 +782409,65.802,56.254 +782410,67.986,54.757 +782411,70.372,53.207 +782412,73.008,51.596 +782413,64.469,56.241 +782414,66.677,54.772 +782415,69.086,53.25 +782416,71.744,51.668 +782417,63.138,56.227 +782418,65.368,54.786 +782419,67.8,53.293 +782420,70.479,51.742 +782421,61.808,56.212 +782422,64.061,54.8 +782423,66.513,53.337 +782424,69.211,51.817 +782425,60.48,56.196 +782426,62.753,54.813 +782427,65.226,53.381 +782428,67.942,51.893 +782429,59.154,56.179 +782430,61.447,54.827 +782431,63.937,53.426 +782432,66.67,51.97 +782433,57.829,56.161 +782434,60.141,54.839 +782435,62.648,53.471 +782436,65.395,52.049 +782437,56.506,56.142 +782438,58.835,54.852 +782439,61.358,53.516 +782440,64.119,52.128 +782441,55.185,56.122 +782442,57.53,54.864 +782443,60.068,53.561 +782444,62.84,52.208 +782445,53.865,56.101 +782446,56.225,54.876 +782447,58.776,53.607 +782448,61.559,52.289 +782449,52.547,56.079 +782450,54.922,54.887 +782451,57.484,53.653 +782452,60.276,52.372 +782453,51.231,56.056 +782454,53.618,54.899 +782455,56.192,53.7 +782456,58.991,52.455 +782457,49.916,56.032 +782458,52.316,54.91 +782459,54.898,53.747 +782460,57.703,52.539 +782461,48.603,56.008 +782462,51.013,54.92 +782463,53.604,53.794 +782464,56.413,52.623 +782465,47.292,55.983 +782466,49.712,54.931 +782467,52.309,53.841 +782468,55.121,52.709 +782469,45.983,55.956 +782470,48.411,54.941 +782471,51.013,53.889 +782472,53.826,52.795 +782473,44.675,55.929 +782474,47.11,54.951 +782475,49.717,53.936 +782476,52.53,52.882 +782477,43.37,55.902 +782478,45.811,54.96 +782479,48.42,53.984 +782480,51.231,52.97 +782481,42.066,55.873 +782482,44.511,54.969 +782483,47.122,54.033 +782484,49.93,53.059 +782485,40.764,55.844 +782486,43.213,54.979 +782487,45.823,54.081 +782488,48.627,53.148 +782489,39.464,55.815 +782490,41.915,54.988 +782491,44.524,54.13 +782492,47.321,53.238 +782493,38.165,55.784 +782494,40.617,54.996 +782495,43.224,54.179 +782496,46.014,53.328 +782497,36.868,55.753 +782498,39.32,55.005 +782499,41.923,54.228 +782500,44.704,53.419 +782501,35.574,55.722 +782502,38.024,55.013 +782503,40.621,54.277 +782504,43.392,53.51 +782505,34.281,55.69 +782506,36.728,55.021 +782507,39.319,54.327 +782508,42.078,53.602 +782509,32.99,55.657 +782510,35.433,55.029 +782511,38.016,54.376 +782512,40.762,53.694 +782513,31.7,55.624 +782514,34.139,55.037 +782515,36.712,54.426 +782516,39.443,53.787 +782517,30.413,55.591 +782518,32.845,55.045 +782519,35.407,54.476 +782520,38.123,53.88 +782521,29.127,55.557 +782522,31.551,55.052 +782523,34.102,54.525 +782524,36.801,53.973 +782525,27.844,55.523 +782526,30.259,55.06 +782527,32.796,54.575 +782528,35.476,54.067 +782529,26.562,55.489 +782530,28.967,55.067 +782531,31.489,54.626 +782532,34.15,54.161 +782533,25.282,55.454 +782534,27.675,55.074 +782535,30.182,54.676 +782536,32.821,54.255 +782537,24.003,55.419 +782538,26.384,55.082 +782539,28.874,54.726 +782540,31.491,54.349 +782541,22.727,55.383 +782542,25.094,55.089 +782543,27.565,54.776 +782544,30.159,54.443 +782545,21.452,55.348 +782546,23.804,55.096 +782547,26.256,54.827 +782548,28.825,54.538 +782549,20.179,55.312 +782550,22.514,55.103 +782551,24.946,54.877 +782552,27.488,54.632 +782553,18.909,55.276 +782554,21.226,55.11 +782555,23.635,54.927 +782556,26.151,54.727 +782557,17.639,55.24 +782558,19.937,55.117 +782559,22.324,54.978 +782560,24.811,54.821 +782561,16.372,55.204 +782562,18.65,55.123 +782563,21.012,55.028 +782564,23.469,54.916 +782565,15.106,55.168 +782566,17.363,55.13 +782567,19.699,55.079 +782568,22.126,55.01 +782569,13.843,55.132 +782570,16.076,55.137 +782571,18.386,55.129 +782572,20.781,55.105 +782573,12.581,55.096 +782574,14.79,55.144 +782575,17.072,55.179 +782576,19.434,55.199 +782577,11.32,55.06 +782578,13.505,55.151 +782579,15.757,55.229 +782580,18.086,55.293 +782581,10.062,55.024 +782582,12.22,55.158 +782583,14.442,55.28 +782584,16.735,55.387 +782585,8.805,54.989 +782586,10.935,55.165 +782587,13.126,55.33 +782588,15.384,55.48 +782589,7.5499,54.953 +782590,9.6516,55.172 +782591,11.809,55.38 +782592,14.03,55.574 +782593,6.2964,54.918 +782594,8.3682,55.179 +782595,10.492,55.43 +782596,12.676,55.667 +782597,5.0447,54.882 +782598,7.0853,55.187 +782599,9.1748,55.48 +782600,11.319,55.759 +782601,3.7946,54.848 +782602,5.8028,55.194 +782603,7.8566,55.529 +782604,9.9614,55.851 +782605,2.5461,54.813 +782606,4.5209,55.201 +782607,6.5379,55.579 +782608,8.6022,55.943 +782609,1.2993,54.779 +782610,3.2394,55.209 +782611,5.2186,55.628 +782612,7.2415,56.035 +782613,0.054017,54.745 +782614,1.9584,55.217 +782615,3.8988,55.677 +782616,5.8795,56.125 +782617,358.81,54.711 +782618,0.67786,55.224 +782619,2.5785,55.727 +782620,4.5161,56.216 +782621,357.57,54.678 +782622,359.4,55.232 +782623,1.2576,55.776 +782624,3.1515,56.306 +782625,356.33,54.645 +782626,358.12,55.241 +782627,359.94,55.824 +782628,1.7855,56.395 +782629,355.09,54.613 +782630,356.84,55.249 +782631,358.61,55.873 +782632,0.41839,56.483 +782633,353.85,54.582 +782634,355.56,55.257 +782635,357.29,55.921 +782636,359.05,56.571 +782637,352.61,54.551 +782638,354.28,55.266 +782639,355.97,55.969 +782640,357.68,56.659 +782641,351.38,54.52 +782642,353,55.275 +782643,354.65,56.017 +782644,356.31,56.745 +782645,350.15,54.49 +782646,351.73,55.284 +782647,353.32,56.065 +782648,354.94,56.831 +782649,348.91,54.461 +782650,350.45,55.293 +782651,352,56.112 +782652,353.57,56.917 +782653,347.68,54.432 +782654,349.17,55.303 +782655,350.67,56.159 +782656,352.19,57.001 +782657,346.45,54.405 +782658,347.89,55.313 +782659,349.35,56.206 +782660,350.82,57.085 +782661,345.23,54.378 +782662,346.62,55.323 +782663,348.02,56.253 +782664,349.44,57.167 +782665,344,54.351 +782666,345.34,55.333 +782667,346.7,56.299 +782668,348.07,57.249 +782669,342.77,54.326 +782670,344.07,55.343 +782671,345.37,56.345 +782672,346.69,57.33 +782673,341.55,54.301 +782674,342.79,55.354 +782675,344.05,56.391 +782676,345.31,57.41 +782677,340.32,54.277 +782678,341.52,55.365 +782679,342.72,56.437 +782680,343.93,57.489 +782681,339.1,54.254 +782682,340.24,55.377 +782683,341.39,56.482 +782684,342.55,57.568 +782685,337.88,54.232 +782686,338.97,55.389 +782687,340.06,56.526 +782688,341.17,57.645 +782689,336.66,54.211 +782690,337.69,55.401 +782691,338.74,56.571 +782692,339.79,57.721 +782693,335.44,54.191 +782694,336.42,55.413 +782695,337.41,56.615 +782696,338.41,57.796 +782697,334.22,54.172 +782698,335.15,55.426 +782699,336.08,56.659 +782700,337.03,57.87 +782701,333,54.154 +782702,333.87,55.439 +782703,334.75,56.702 +782704,335.64,57.943 +782705,331.79,54.136 +782706,332.6,55.452 +782707,333.42,56.745 +782708,334.26,58.015 +782709,330.57,54.12 +782710,331.32,55.466 +782711,332.09,56.788 +782712,332.88,58.086 +782713,329.36,54.105 +782714,330.05,55.48 +782715,330.76,56.83 +782716,331.49,58.156 +782717,328.14,54.092 +782718,328.78,55.494 +782719,329.43,56.872 +782720,330.11,58.224 +782721,326.93,54.079 +782722,327.51,55.509 +782723,328.11,56.914 +782724,328.72,58.292 +782725,325.71,54.067 +782726,326.23,55.524 +782727,326.78,56.955 +782728,327.34,58.358 +782729,324.5,54.057 +782730,324.96,55.54 +782731,325.45,56.995 +782732,325.95,58.423 +782733,323.29,54.048 +782734,323.69,55.556 +782735,324.12,57.036 +782736,324.57,58.487 +782737,322.07,54.04 +782738,322.42,55.572 +782739,322.79,57.075 +782740,323.18,58.549 +782741,320.86,54.033 +782742,321.14,55.589 +782743,321.45,57.115 +782744,321.8,58.611 +782745,319.65,54.028 +782746,319.87,55.606 +782747,320.12,57.154 +782748,320.41,58.671 +782749,318.44,54.023 +782750,318.6,55.624 +782751,318.79,57.192 +782752,319.02,58.729 +782753,317.23,54.021 +782754,317.33,55.642 +782755,317.46,57.231 +782756,317.64,58.787 +782757,316.02,54.019 +782758,316.05,55.66 +782759,316.13,57.268 +782760,316.25,58.843 +782761,314.81,54.019 +782762,314.78,55.679 +782763,314.8,57.305 +782764,314.86,58.898 +782765,313.6,54.02 +782766,313.51,55.699 +782767,313.47,57.342 +782768,313.48,58.951 +782769,312.39,54.022 +782770,312.24,55.718 +782771,312.14,57.379 +782772,312.09,59.003 +782773,311.18,54.026 +782774,310.96,55.739 +782775,310.81,57.414 +782776,310.71,59.054 +782777,309.97,54.031 +782778,309.69,55.759 +782779,309.48,57.45 +782780,309.32,59.104 +782781,308.76,54.038 +782782,308.42,55.78 +782783,308.15,57.485 +782784,307.94,59.152 +782785,307.55,54.046 +782786,307.15,55.802 +782787,306.82,57.519 +782788,306.55,59.198 +782789,306.33,54.055 +782790,305.87,55.824 +782791,305.49,57.553 +782792,305.17,59.244 +782793,305.12,54.066 +782794,304.6,55.847 +782795,304.16,57.587 +782796,303.78,59.288 +782797,303.91,54.078 +782798,303.33,55.87 +782799,302.83,57.62 +782800,302.4,59.33 +782801,302.7,54.092 +782802,302.05,55.893 +782803,301.49,57.652 +782804,301.01,59.371 +782805,301.49,54.107 +782806,300.78,55.917 +782807,300.16,57.684 +782808,299.63,59.411 +782809,300.27,54.123 +782810,299.51,55.941 +782811,298.83,57.716 +782812,298.25,59.449 +782813,299.06,54.141 +782814,298.23,55.966 +782815,297.5,57.747 +782816,296.86,59.486 +782817,297.85,54.161 +782818,296.96,55.991 +782819,296.17,57.778 +782820,295.48,59.522 +782821,296.63,54.182 +782822,295.68,56.017 +782823,294.84,57.808 +782824,294.1,59.556 +782825,295.42,54.204 +782826,294.41,56.043 +782827,293.51,57.837 +782828,292.72,59.588 +782829,294.2,54.228 +782830,293.13,56.07 +782831,292.19,57.867 +782832,291.34,59.62 +782833,292.98,54.253 +782834,291.86,56.097 +782835,290.86,57.895 +782836,289.96,59.65 +782837,291.76,54.28 +782838,290.58,56.125 +782839,289.53,57.923 +782840,288.58,59.678 +782841,290.55,54.309 +782842,289.31,56.153 +782843,288.2,57.951 +782844,287.2,59.705 +782845,289.33,54.338 +782846,288.03,56.182 +782847,286.87,57.978 +782848,285.83,59.731 +782849,288.1,54.369 +782850,286.75,56.211 +782851,285.54,58.005 +782852,284.45,59.755 +782853,286.88,54.402 +782854,285.47,56.24 +782855,284.21,58.031 +782856,283.08,59.778 +782857,285.66,54.436 +782858,284.2,56.27 +782859,282.89,58.057 +782860,281.7,59.799 +782861,284.44,54.472 +782862,282.92,56.301 +782863,281.56,58.082 +782864,280.33,59.819 +782865,283.21,54.509 +782866,281.64,56.332 +782867,280.23,58.107 +782868,278.95,59.838 +782869,281.98,54.547 +782870,280.36,56.363 +782871,278.9,58.131 +782872,277.58,59.855 +782873,280.76,54.587 +782874,279.08,56.395 +782875,277.58,58.155 +782876,276.21,59.871 +782877,279.53,54.629 +782878,277.8,56.428 +782879,276.25,58.179 +782880,274.84,59.885 +782881,278.3,54.671 +782882,276.52,56.46 +782883,274.92,58.202 +782884,273.47,59.898 +782885,277.06,54.716 +782886,275.24,56.494 +782887,273.6,58.224 +782888,272.1,59.91 +782889,275.83,54.761 +782890,273.96,56.527 +782891,272.27,58.246 +782892,270.74,59.921 +782893,274.59,54.808 +782894,272.68,56.561 +782895,270.95,58.268 +782896,269.37,59.93 +782897,273.36,54.856 +782898,271.4,56.596 +782899,269.62,58.289 +782900,268.01,59.938 +782901,272.12,54.906 +782902,270.12,56.631 +782903,268.3,58.309 +782904,266.64,59.944 +782905,270.88,54.957 +782906,268.83,56.667 +782907,266.98,58.329 +782908,265.28,59.95 +782909,269.64,55.01 +782910,267.55,56.702 +782911,265.65,58.349 +782912,263.92,59.953 +782913,268.4,55.063 +782914,266.26,56.739 +782915,264.33,58.369 +782916,262.56,59.956 +782917,267.15,55.118 +782918,264.98,56.775 +782919,263.01,58.387 +782920,261.2,59.958 +782921,265.9,55.174 +782922,263.69,56.813 +782923,261.69,58.406 +782924,259.85,59.958 +782925,264.66,55.232 +782926,262.41,56.85 +782927,260.37,58.424 +782928,258.49,59.957 +782929,263.4,55.291 +782930,261.12,56.888 +782931,259.04,58.441 +782932,257.14,59.955 +782933,262.15,55.351 +782934,259.83,56.926 +782935,257.72,58.459 +782936,255.78,59.951 +782937,260.9,55.412 +782938,258.55,56.965 +782939,256.4,58.475 +782940,254.43,59.947 +782941,259.64,55.474 +782942,257.26,57.004 +782943,255.08,58.492 +782944,253.08,59.941 +782945,258.38,55.538 +782946,255.97,57.044 +782947,253.76,58.508 +782948,251.73,59.934 +782949,257.12,55.603 +782950,254.68,57.083 +782951,252.45,58.523 +782952,250.39,59.926 +782953,255.86,55.668 +782954,253.39,57.124 +782955,251.13,58.539 +782956,249.04,59.917 +782957,254.6,55.735 +782958,252.1,57.164 +782959,249.81,58.554 +782960,247.7,59.907 +782961,253.33,55.803 +782962,250.81,57.205 +782963,248.49,58.568 +782964,246.35,59.896 +782965,252.06,55.872 +782966,249.52,57.246 +782967,247.18,58.582 +782968,245.01,59.883 +782969,250.79,55.942 +782970,248.22,57.288 +782971,245.86,58.596 +782972,243.67,59.87 +782973,249.52,56.013 +782974,246.93,57.33 +782975,244.55,58.609 +782976,242.34,59.856 +782977,248.25,56.086 +782978,245.63,57.372 +782979,243.23,58.622 +782980,241,59.841 +782981,246.97,56.159 +782982,244.34,57.414 +782983,241.92,58.635 +782984,239.66,59.824 +782985,245.69,56.232 +782986,243.04,57.457 +782987,240.6,58.648 +782988,238.33,59.807 +782989,244.41,56.307 +782990,241.75,57.5 +782991,239.29,58.66 +782992,237,59.789 +782993,243.13,56.383 +782994,240.45,57.544 +782995,237.98,58.672 +782996,235.67,59.77 +782997,241.85,56.459 +782998,239.15,57.587 +782999,236.66,58.683 +783000,234.34,59.751 +783001,240.56,56.537 +783002,237.86,57.631 +783003,235.35,58.695 +783004,233.02,59.73 +783005,239.27,56.615 +783006,236.56,57.675 +783007,234.04,58.705 +783008,231.69,59.709 +783009,237.98,56.694 +783010,235.26,57.72 +783011,232.73,58.716 +783012,230.37,59.686 +783013,236.69,56.773 +783014,233.96,57.764 +783015,231.42,58.727 +783016,229.05,59.663 +783017,235.39,56.854 +783018,232.66,57.809 +783019,230.11,58.737 +783020,227.73,59.64 +783021,234.09,56.935 +783022,231.35,57.854 +783023,228.8,58.747 +783024,226.41,59.615 +783025,232.79,57.016 +783026,230.05,57.899 +783027,227.49,58.757 +783028,225.09,59.59 +783029,231.49,57.098 +783030,228.75,57.945 +783031,226.19,58.766 +783032,223.78,59.565 +783033,230.19,57.181 +783034,227.44,57.991 +783035,224.88,58.775 +783036,222.47,59.539 +783037,228.88,57.265 +783038,226.14,58.036 +783039,223.57,58.784 +783040,221.16,59.512 +783041,227.57,57.348 +783042,224.83,58.082 +783043,222.27,58.793 +783044,219.85,59.484 +783045,226.26,57.433 +783046,223.53,58.128 +783047,220.96,58.802 +783048,218.54,59.456 +783049,224.95,57.517 +783050,222.22,58.175 +783051,219.66,58.811 +783052,217.24,59.428 +783053,223.63,57.602 +783054,220.91,58.221 +783055,218.35,58.819 +783056,215.93,59.399 +783057,222.32,57.688 +783058,219.61,58.268 +783059,217.05,58.827 +783060,214.63,59.369 +783061,221,57.774 +783062,218.3,58.314 +783063,215.75,58.835 +783064,213.33,59.34 +783065,219.68,57.86 +783066,216.99,58.361 +783067,214.45,58.843 +783068,212.03,59.309 +783069,218.35,57.947 +783070,215.68,58.408 +783071,213.14,58.851 +783072,210.74,59.279 +783073,217.03,58.033 +783074,214.37,58.455 +783075,211.84,58.859 +783076,209.44,59.248 +783077,215.7,58.12 +783078,213.05,58.502 +783079,210.54,58.866 +783080,208.15,59.217 +783081,214.37,58.207 +783082,211.74,58.549 +783083,209.24,58.874 +783084,206.86,59.185 +783085,213.04,58.295 +783086,210.43,58.596 +783087,207.94,58.881 +783088,205.57,59.154 +783089,211.71,58.382 +783090,209.11,58.643 +783091,206.65,58.889 +783092,204.28,59.122 +783093,210.38,58.469 +783094,207.8,58.69 +783095,205.35,58.896 +783096,203,59.09 +783097,209.04,58.557 +783098,206.49,58.737 +783099,204.05,58.903 +783100,201.72,59.058 +783101,207.7,58.645 +783102,205.17,58.784 +783103,202.75,58.911 +783104,200.43,59.025 +783105,206.36,58.732 +783106,203.85,58.832 +783107,201.46,58.918 +783108,199.15,58.993 +783109,205.02,58.82 +783110,202.54,58.879 +783111,200.16,58.925 +783112,197.88,58.96 +783113,203.67,58.907 +783114,201.22,58.926 +783115,198.87,58.932 +783116,196.6,58.928 +783117,202.33,58.994 +783118,199.9,58.973 +783119,197.57,58.939 +783120,195.33,58.896 +783121,200.98,59.081 +783122,198.58,59.02 +783123,196.28,58.946 +783124,194.05,58.863 +783125,199.63,59.168 +783126,197.26,59.067 +783127,194.98,58.954 +783128,192.78,58.831 +783129,198.28,59.255 +783130,195.94,59.114 +783131,193.69,58.961 +783132,191.51,58.799 +783133,196.93,59.342 +783134,194.62,59.161 +783135,192.4,58.968 +783136,190.24,58.767 +783137,195.57,59.428 +783138,193.3,59.207 +783139,191.11,58.976 +783140,188.98,58.735 +783141,194.22,59.514 +783142,191.98,59.254 +783143,189.81,58.983 +783144,187.71,58.703 +783145,192.86,59.6 +783146,190.66,59.3 +783147,188.52,58.99 +783148,186.45,58.672 +783149,191.5,59.685 +783150,189.33,59.347 +783151,187.23,58.998 +783152,185.19,58.64 +783153,190.14,59.77 +783154,188.01,59.393 +783155,185.94,59.006 +783156,183.93,58.61 +783157,188.78,59.854 +783158,186.69,59.439 +783159,184.65,59.013 +783160,182.67,58.579 +783161,187.41,59.938 +783162,185.36,59.485 +783163,183.36,59.021 +783164,181.42,58.549 +783165,186.05,60.022 +783166,184.04,59.531 +783167,182.08,59.029 +783168,180.16,58.519 +783169,184.68,60.105 +783170,182.71,59.577 +783171,180.79,59.038 +783172,178.91,58.49 +783173,183.31,60.187 +783174,181.38,59.622 +783175,179.5,59.046 +783176,177.66,58.461 +783177,181.95,60.269 +783178,180.06,59.667 +783179,178.21,59.054 +783180,176.41,58.432 +783181,180.58,60.35 +783182,178.73,59.712 +783183,176.93,59.063 +783184,175.16,58.404 +783185,179.2,60.431 +783186,177.4,59.757 +783187,175.64,59.072 +783188,173.91,58.377 +783189,177.83,60.511 +783190,176.08,59.802 +783191,174.35,59.081 +783192,172.67,58.35 +783193,176.46,60.59 +783194,174.75,59.846 +783195,173.07,59.09 +783196,171.42,58.324 +783197,175.08,60.669 +783198,173.42,59.89 +783199,171.78,59.099 +783200,170.18,58.298 +783201,173.71,60.747 +783202,172.09,59.934 +783203,170.5,59.109 +783204,168.94,58.273 +783205,172.33,60.824 +783206,170.76,59.978 +783207,169.22,59.119 +783208,167.7,58.249 +783209,170.95,60.9 +783210,169.43,60.021 +783211,167.93,59.129 +783212,166.46,58.225 +783213,169.57,60.976 +783214,168.1,60.064 +783215,166.65,59.139 +783216,165.22,58.202 +783217,168.19,61.051 +783218,166.77,60.107 +783219,165.36,59.15 +783220,163.98,58.18 +783221,166.81,61.125 +783222,165.44,60.15 +783223,164.08,59.161 +783224,162.75,58.159 +783225,165.43,61.198 +783226,164.1,60.192 +783227,162.8,59.172 +783228,161.51,58.138 +783229,164.05,61.27 +783230,162.77,60.234 +783231,161.52,59.183 +783232,160.28,58.119 +783233,162.66,61.341 +783234,161.44,60.275 +783235,160.24,59.195 +783236,159.05,58.1 +783237,161.28,61.411 +783238,160.11,60.317 +783239,158.95,59.206 +783240,157.82,58.082 +783241,159.9,61.48 +783242,158.78,60.358 +783243,157.67,59.219 +783244,156.59,58.065 +783245,158.51,61.549 +783246,157.44,60.398 +783247,156.39,59.231 +783248,155.36,58.049 +783249,157.12,61.616 +783250,156.11,60.439 +783251,155.11,59.244 +783252,154.13,58.034 +783253,155.74,61.682 +783254,154.77,60.478 +783255,153.83,59.257 +783256,152.9,58.02 +783257,154.35,61.747 +783258,153.44,60.518 +783259,152.55,59.271 +783260,151.67,58.006 +783261,152.96,61.811 +783262,152.11,60.557 +783263,151.27,59.284 +783264,150.45,57.994 +783265,151.57,61.874 +783266,150.77,60.596 +783267,149.99,59.299 +783268,149.22,57.983 +783269,150.19,61.936 +783270,149.44,60.634 +783271,148.71,59.313 +783272,148,57.973 +783273,148.8,61.997 +783274,148.1,60.673 +783275,147.43,59.328 +783276,146.77,57.964 +783277,147.41,62.057 +783278,146.77,60.71 +783279,146.15,59.343 +783280,145.55,57.957 +783281,146.02,62.115 +783282,145.43,60.748 +783283,144.87,59.359 +783284,144.33,57.95 +783285,144.63,62.173 +783286,144.1,60.784 +783287,143.59,59.375 +783288,143.11,57.944 +783289,143.24,62.229 +783290,142.76,60.821 +783291,142.31,59.391 +783292,141.89,57.94 +783293,141.85,62.284 +783294,141.43,60.857 +783295,141.03,59.408 +783296,140.66,57.937 +783297,140.46,62.338 +783298,140.09,60.893 +783299,139.75,59.425 +783300,139.44,57.935 +783301,139.07,62.39 +783302,138.75,60.928 +783303,138.47,59.442 +783304,138.22,57.934 +783305,137.67,62.442 +783306,137.42,60.963 +783307,137.19,59.46 +783308,137,57.934 +783309,136.28,62.492 +783310,136.08,60.997 +783311,135.92,59.478 +783312,135.78,57.936 +783313,134.89,62.541 +783314,134.75,61.031 +783315,134.64,59.497 +783316,134.56,57.938 +783317,133.5,62.588 +783318,133.41,61.065 +783319,133.36,59.516 +783320,133.34,57.943 +783321,132.11,62.635 +783322,132.08,61.098 +783323,132.08,59.535 +783324,132.12,57.948 +783325,130.72,62.68 +783326,130.74,61.13 +783327,130.8,59.555 +783328,130.91,57.955 +783329,129.33,62.723 +783330,129.4,61.163 +783331,129.52,59.576 +783332,129.69,57.962 +783333,127.94,62.766 +783334,128.07,61.194 +783335,128.24,59.596 +783336,128.47,57.972 +783337,126.55,62.807 +783338,126.73,61.226 +783339,126.96,59.617 +783340,127.25,57.982 +783341,125.16,62.847 +783342,125.4,61.257 +783343,125.68,59.639 +783344,126.03,57.994 +783345,123.77,62.886 +783346,124.06,61.287 +783347,124.4,59.661 +783348,124.81,58.007 +783349,122.38,62.923 +783350,122.72,61.317 +783351,123.12,59.683 +783352,123.59,58.022 +783353,120.99,62.959 +783354,121.39,61.347 +783355,121.84,59.706 +783356,122.37,58.038 +783357,119.6,62.993 +783358,120.05,61.376 +783359,120.56,59.73 +783360,121.15,58.055 +783361,118.22,63.027 +783362,118.72,61.404 +783363,119.28,59.753 +783364,119.93,58.073 +783365,116.83,63.059 +783366,117.38,61.432 +783367,118,59.777 +783368,118.7,58.093 +783369,115.44,63.089 +783370,116.05,61.46 +783371,116.72,59.802 +783372,117.48,58.114 +783373,114.05,63.118 +783374,114.71,61.487 +783375,115.44,59.827 +783376,116.26,58.137 +783377,112.67,63.146 +783378,113.38,61.514 +783379,114.16,59.852 +783380,115.04,58.161 +783381,111.28,63.173 +783382,112.04,61.541 +783383,112.88,59.878 +783384,113.81,58.186 +783385,109.9,63.198 +783386,110.71,61.566 +783387,111.6,59.905 +783388,112.59,58.213 +783389,108.51,63.222 +783390,109.37,61.592 +783391,110.32,59.931 +783392,111.36,58.241 +783393,107.13,63.245 +783394,108.04,61.617 +783395,109.04,59.959 +783396,110.14,58.27 +783397,105.75,63.266 +783398,106.7,61.641 +783399,107.75,59.986 +783400,108.91,58.301 +783401,104.37,63.286 +783402,105.37,61.665 +783403,106.47,60.014 +783404,107.68,58.333 +783405,102.98,63.305 +783406,104.04,61.689 +783407,105.19,60.043 +783408,106.45,58.366 +783409,101.6,63.322 +783410,102.7,61.712 +783411,103.9,60.072 +783412,105.22,58.401 +783413,100.22,63.339 +783414,101.37,61.735 +783415,102.62,60.101 +783416,103.99,58.437 +783417,98.846,63.353 +783418,100.04,61.757 +783419,101.34,60.131 +783420,102.76,58.474 +783421,97.469,63.367 +783422,98.706,61.779 +783423,100.05,60.161 +783424,101.53,58.513 +783425,96.092,63.379 +783426,97.374,61.8 +783427,98.769,60.191 +783428,100.29,58.553 +783429,94.716,63.39 +783430,96.042,61.821 +783431,97.483,60.222 +783432,99.059,58.594 +783433,93.342,63.4 +783434,94.711,61.841 +783435,96.198,60.254 +783436,97.822,58.636 +783437,91.968,63.408 +783438,93.38,61.861 +783439,94.912,60.286 +783440,96.584,58.68 +783441,90.595,63.415 +783442,92.049,61.881 +783443,93.626,60.318 +783444,95.345,58.725 +783445,89.224,63.421 +783446,90.719,61.9 +783447,92.339,60.351 +783448,94.105,58.772 +783449,87.854,63.426 +783450,89.389,61.919 +783451,91.052,60.384 +783452,92.863,58.819 +783453,86.484,63.43 +783454,88.059,61.937 +783455,89.764,60.417 +783456,91.62,58.868 +783457,85.116,63.432 +783458,86.73,61.955 +783459,88.476,60.451 +783460,90.375,58.918 +783461,83.75,63.433 +783462,85.402,61.973 +783463,87.187,60.485 +783464,89.129,58.969 +783465,82.384,63.433 +783466,84.073,61.99 +783467,85.898,60.52 +783468,87.881,59.022 +783469,81.02,63.432 +783470,82.745,62.007 +783471,84.608,60.555 +783472,86.632,59.075 +783473,79.657,63.43 +783474,81.418,62.023 +783475,83.318,60.59 +783476,85.381,59.13 +783477,78.295,63.426 +783478,80.091,62.039 +783479,82.027,60.626 +783480,84.128,59.186 +783481,76.935,63.422 +783482,78.764,62.054 +783483,80.736,60.662 +783484,82.874,59.243 +783485,75.576,63.416 +783486,77.438,62.069 +783487,79.444,60.698 +783488,81.618,59.301 +783489,74.218,63.409 +783490,76.113,62.084 +783491,78.152,60.735 +783492,80.36,59.36 +783493,72.862,63.402 +783494,74.788,62.099 +783495,76.859,60.772 +783496,79.101,59.42 +783497,71.507,63.393 +783498,73.463,62.113 +783499,75.565,60.809 +783500,77.839,59.481 +783501,70.154,63.383 +783502,72.139,62.126 +783503,74.271,60.847 +783504,76.576,59.543 +783505,68.802,63.372 +783506,70.815,62.14 +783507,72.976,60.885 +783508,75.311,59.607 +783509,67.452,63.36 +783510,69.492,62.153 +783511,71.681,60.923 +783512,74.044,59.671 +783513,66.103,63.348 +783514,68.169,62.166 +783515,70.385,60.962 +783516,72.776,59.736 +783517,64.756,63.334 +783518,66.847,62.178 +783519,69.088,61.001 +783520,71.505,59.802 +783521,63.41,63.319 +783522,65.525,62.19 +783523,67.791,61.04 +783524,70.233,59.869 +783525,62.066,63.304 +783526,64.204,62.202 +783527,66.493,61.08 +783528,68.958,59.937 +783529,60.723,63.287 +783530,62.884,62.213 +783531,65.195,61.12 +783532,67.682,60.006 +783533,59.382,63.27 +783534,61.564,62.224 +783535,63.896,61.16 +783536,66.403,60.075 +783537,58.042,63.252 +783538,60.244,62.235 +783539,62.596,61.2 +783540,65.123,60.145 +783541,56.705,63.233 +783542,58.926,62.246 +783543,61.295,61.241 +783544,63.841,60.217 +783545,55.368,63.213 +783546,57.607,62.256 +783547,59.994,61.281 +783548,62.556,60.288 +783549,54.034,63.193 +783550,56.289,62.266 +783551,58.693,61.322 +783552,61.27,60.361 +783553,52.701,63.172 +783554,54.972,62.276 +783555,57.39,61.364 +783556,59.981,60.434 +783557,51.37,63.15 +783558,53.656,62.285 +783559,56.087,61.405 +783560,58.691,60.508 +783561,50.04,63.127 +783562,52.339,62.295 +783563,54.784,61.447 +783564,57.398,60.583 +783565,48.713,63.104 +783566,51.024,62.304 +783567,53.479,61.489 +783568,56.104,60.658 +783569,47.386,63.08 +783570,49.709,62.312 +783571,52.174,61.531 +783572,54.807,60.734 +783573,46.062,63.056 +783574,48.395,62.321 +783575,50.869,61.573 +783576,53.509,60.811 +783577,44.74,63.03 +783578,47.081,62.33 +783579,49.562,61.616 +783580,52.208,60.888 +783581,43.419,63.005 +783582,45.768,62.338 +783583,48.255,61.658 +783584,50.905,60.965 +783585,42.1,62.979 +783586,44.455,62.346 +783587,46.947,61.701 +783588,49.6,61.043 +783589,40.782,62.952 +783590,43.143,62.354 +783591,45.639,61.744 +783592,48.293,61.121 +783593,39.467,62.925 +783594,41.832,62.361 +783595,44.33,61.787 +783596,46.984,61.2 +783597,38.153,62.897 +783598,40.521,62.369 +783599,43.02,61.83 +783600,45.673,61.279 +783601,36.841,62.869 +783602,39.211,62.376 +783603,41.71,61.873 +783604,44.36,61.359 +783605,35.53,62.841 +783606,37.901,62.384 +783607,40.399,61.917 +783608,43.045,61.439 +783609,34.222,62.812 +783610,36.592,62.391 +783611,39.087,61.96 +783612,41.728,61.519 +783613,32.915,62.783 +783614,35.284,62.398 +783615,37.775,62.004 +783616,40.409,61.599 +783617,31.61,62.754 +783618,33.976,62.405 +783619,36.462,62.047 +783620,39.087,61.68 +783621,30.307,62.724 +783622,32.669,62.412 +783623,35.148,62.091 +783624,37.764,61.761 +783625,29.006,62.694 +783626,31.362,62.418 +783627,33.833,62.135 +783628,36.439,61.842 +783629,27.706,62.664 +783630,30.056,62.425 +783631,32.518,62.179 +783632,35.112,61.923 +783633,26.408,62.633 +783634,28.751,62.431 +783635,31.203,62.222 +783636,33.783,62.004 +783637,25.112,62.603 +783638,27.446,62.438 +783639,29.886,62.266 +783640,32.452,62.086 +783641,23.818,62.572 +783642,26.141,62.444 +783643,28.569,62.31 +783644,31.119,62.167 +783645,22.526,62.542 +783646,24.838,62.451 +783647,27.252,62.354 +783648,29.784,62.249 +783649,21.235,62.511 +783650,23.535,62.457 +783651,25.933,62.398 +783652,28.447,62.33 +783653,19.946,62.48 +783654,22.232,62.464 +783655,24.614,62.442 +783656,27.108,62.412 +783657,18.659,62.449 +783658,20.93,62.47 +783659,23.295,62.485 +783660,25.768,62.493 +783661,17.373,62.418 +783662,19.629,62.477 +783663,21.975,62.529 +783664,24.426,62.574 +783665,16.089,62.388 +783666,18.328,62.483 +783667,20.654,62.573 +783668,23.081,62.656 +783669,14.807,62.357 +783670,17.027,62.489 +783671,19.332,62.616 +783672,21.736,62.736 +783673,13.527,62.326 +783674,15.728,62.496 +783675,18.01,62.66 +783676,20.388,62.817 +783677,12.248,62.296 +783678,14.428,62.502 +783679,16.688,62.704 +783680,19.039,62.898 +783681,10.971,62.265 +783682,13.13,62.509 +783683,15.365,62.747 +783684,17.687,62.978 +783685,9.6962,62.235 +783686,11.832,62.515 +783687,14.041,62.79 +783688,16.335,63.058 +783689,8.4226,62.206 +783690,10.534,62.522 +783691,12.716,62.834 +783692,14.98,63.138 +783693,7.1507,62.176 +783694,9.2369,62.529 +783695,11.391,62.877 +783696,13.624,63.217 +783697,5.8804,62.147 +783698,7.9404,62.536 +783699,10.066,62.92 +783700,12.267,63.297 +783701,4.6117,62.118 +783702,6.6443,62.543 +783703,8.7398,62.962 +783704,10.907,63.375 +783705,3.3446,62.089 +783706,5.3488,62.55 +783707,7.4132,63.005 +783708,9.5465,63.453 +783709,2.0791,62.061 +783710,4.0537,62.557 +783711,6.086,63.048 +783712,8.1843,63.531 +783713,0.81513,62.033 +783714,2.7592,62.564 +783715,4.7583,63.09 +783716,6.8206,63.609 +783717,359.55,62.005 +783718,1.4651,62.572 +783719,3.4301,63.132 +783720,5.4554,63.685 +783721,358.29,61.978 +783722,0.17148,62.579 +783723,2.1014,63.174 +783724,4.0888,63.762 +783725,357.03,61.952 +783726,358.88,62.587 +783727,0.77225,63.216 +783728,2.7208,63.837 +783729,355.77,61.926 +783730,357.59,62.595 +783731,359.44,63.258 +783732,1.3515,63.913 +783733,354.52,61.9 +783734,356.29,62.603 +783735,358.11,63.299 +783736,359.98,63.987 +783737,353.26,61.876 +783738,355,62.611 +783739,356.78,63.34 +783740,358.61,64.061 +783741,352.01,61.851 +783742,353.71,62.62 +783743,355.45,63.381 +783744,357.24,64.134 +783745,350.76,61.828 +783746,352.42,62.628 +783747,354.12,63.422 +783748,355.86,64.207 +783749,349.51,61.805 +783750,351.13,62.637 +783751,352.79,63.463 +783752,354.49,64.279 +783753,348.26,61.782 +783754,349.84,62.646 +783755,351.45,63.503 +783756,353.11,64.35 +783757,347.01,61.761 +783758,348.55,62.656 +783759,350.12,63.543 +783760,351.73,64.42 +783761,345.76,61.74 +783762,347.26,62.665 +783763,348.79,63.583 +783764,350.35,64.49 +783765,344.52,61.719 +783766,345.97,62.675 +783767,347.46,63.622 +783768,348.97,64.559 +783769,343.27,61.7 +783770,344.68,62.685 +783771,346.12,63.661 +783772,347.59,64.627 +783773,342.03,61.681 +783774,343.39,62.695 +783775,344.79,63.7 +783776,346.21,64.694 +783777,340.78,61.664 +783778,342.11,62.706 +783779,343.45,63.739 +783780,344.83,64.76 +783781,339.54,61.647 +783782,340.82,62.717 +783783,342.12,63.777 +783784,343.44,64.826 +783785,338.3,61.631 +783786,339.53,62.728 +783787,340.78,63.815 +783788,342.06,64.89 +783789,337.06,61.615 +783790,338.24,62.739 +783791,339.45,63.853 +783792,340.67,64.954 +783793,335.83,61.601 +783794,336.96,62.751 +783795,338.11,63.89 +783796,339.29,65.016 +783797,334.59,61.588 +783798,335.67,62.763 +783799,336.77,63.927 +783800,337.9,65.078 +783801,333.35,61.575 +783802,334.38,62.776 +783803,335.44,63.964 +783804,336.51,65.138 +783805,332.12,61.564 +783806,333.1,62.788 +783807,334.1,64 +783808,335.13,65.198 +783809,330.88,61.554 +783810,331.81,62.801 +783811,332.76,64.036 +783812,333.74,65.257 +783813,329.65,61.544 +783814,330.53,62.814 +783815,331.43,64.072 +783816,332.35,65.314 +783817,328.42,61.536 +783818,329.24,62.828 +783819,330.09,64.107 +783820,330.96,65.371 +783821,327.18,61.528 +783822,327.96,62.842 +783823,328.75,64.142 +783824,329.57,65.426 +783825,325.95,61.522 +783826,326.67,62.856 +783827,327.41,64.176 +783828,328.18,65.481 +783829,324.72,61.517 +783830,325.39,62.871 +783831,326.07,64.21 +783832,326.79,65.534 +783833,323.49,61.513 +783834,324.1,62.886 +783835,324.74,64.244 +783836,325.39,65.586 +783837,322.26,61.51 +783838,322.82,62.901 +783839,323.4,64.278 +783840,324,65.637 +783841,321.03,61.508 +783842,321.53,62.917 +783843,322.06,64.311 +783844,322.61,65.687 +783845,319.8,61.507 +783846,320.25,62.933 +783847,320.72,64.343 +783848,321.22,65.736 +783849,318.57,61.508 +783850,318.96,62.95 +783851,319.38,64.375 +783852,319.83,65.783 +783853,317.35,61.509 +783854,317.68,62.966 +783855,318.04,64.407 +783856,318.43,65.83 +783857,316.12,61.512 +783858,316.4,62.984 +783859,316.7,64.438 +783860,317.04,65.875 +783861,314.89,61.516 +783862,315.11,63.001 +783863,315.36,64.469 +783864,315.65,65.919 +783865,313.66,61.521 +783866,313.83,63.019 +783867,314.03,64.5 +783868,314.25,65.962 +783869,312.44,61.527 +783870,312.54,63.038 +783871,312.69,64.53 +783872,312.86,66.004 +783873,311.21,61.535 +783874,311.26,63.056 +783875,311.35,64.56 +783876,311.47,66.044 +783877,309.98,61.544 +783878,309.98,63.076 +783879,310.01,64.589 +783880,310.07,66.083 +783881,308.76,61.554 +783882,308.69,63.095 +783883,308.67,64.618 +783884,308.68,66.121 +783885,307.53,61.565 +783886,307.41,63.115 +783887,307.33,64.646 +783888,307.29,66.158 +783889,306.31,61.578 +783890,306.13,63.136 +783891,305.99,64.674 +783892,305.89,66.193 +783893,305.08,61.592 +783894,304.84,63.156 +783895,304.65,64.702 +783896,304.5,66.228 +783897,303.85,61.607 +783898,303.56,63.178 +783899,303.31,64.729 +783900,303.11,66.261 +783901,302.63,61.623 +783902,302.27,63.199 +783903,301.97,64.756 +783904,301.72,66.292 +783905,301.4,61.641 +783906,300.99,63.221 +783907,300.63,64.782 +783908,300.33,66.323 +783909,300.17,61.659 +783910,299.7,63.244 +783911,299.29,64.808 +783912,298.93,66.352 +783913,298.94,61.68 +783914,298.42,63.267 +783915,297.95,64.834 +783916,297.54,66.38 +783917,297.72,61.701 +783918,297.14,63.29 +783919,296.62,64.859 +783920,296.15,66.407 +783921,296.49,61.724 +783922,295.85,63.313 +783923,295.28,64.883 +783924,294.76,66.432 +783925,295.26,61.748 +783926,294.57,63.337 +783927,293.94,64.907 +783928,293.37,66.456 +783929,294.03,61.773 +783930,293.28,63.362 +783931,292.6,64.931 +783932,291.98,66.479 +783933,292.8,61.8 +783934,291.99,63.387 +783935,291.26,64.954 +783936,290.59,66.501 +783937,291.57,61.827 +783938,290.71,63.412 +783939,289.92,64.977 +783940,289.21,66.521 +783941,290.34,61.856 +783942,289.42,63.438 +783943,288.59,64.999 +783944,287.82,66.54 +783945,289.11,61.887 +783946,288.14,63.464 +783947,287.25,65.021 +783948,286.43,66.558 +783949,287.87,61.918 +783950,286.85,63.491 +783951,285.91,65.043 +783952,285.05,66.575 +783953,286.64,61.951 +783954,285.56,63.518 +783955,284.57,65.064 +783956,283.66,66.59 +783957,285.41,61.986 +783958,284.28,63.545 +783959,283.24,65.085 +783960,282.28,66.604 +783961,284.17,62.021 +783962,282.99,63.573 +783963,281.9,65.105 +783964,280.89,66.617 +783965,282.94,62.058 +783966,281.7,63.601 +783967,280.56,65.125 +783968,279.51,66.629 +783969,281.7,62.095 +783970,280.41,63.629 +783971,279.23,65.144 +783972,278.13,66.639 +783973,280.46,62.134 +783974,279.13,63.658 +783975,277.89,65.163 +783976,276.75,66.649 +783977,279.22,62.175 +783978,277.84,63.688 +783979,276.56,65.182 +783980,275.37,66.657 +783981,277.98,62.216 +783982,276.55,63.717 +783983,275.22,65.2 +783984,273.99,66.663 +783985,276.74,62.259 +783986,275.26,63.747 +783987,273.89,65.218 +783988,272.61,66.669 +783989,275.5,62.303 +783990,273.97,63.778 +783991,272.55,65.235 +783992,271.23,66.674 +783993,274.26,62.348 +783994,272.68,63.809 +783995,271.22,65.252 +783996,269.85,66.677 +783997,273.01,62.394 +783998,271.39,63.84 +783999,269.88,65.269 +784000,268.48,66.679 +784001,271.77,62.441 +784002,270.1,63.872 +784003,268.55,65.285 +784004,267.1,66.68 +784005,270.52,62.49 +784006,268.81,63.904 +784007,267.22,65.3 +784008,265.73,66.68 +784009,269.27,62.539 +784010,267.52,63.936 +784011,265.88,65.316 +784012,264.36,66.679 +784013,268.02,62.59 +784014,266.22,63.969 +784015,264.55,65.331 +784016,262.99,66.677 +784017,266.77,62.642 +784018,264.93,64.002 +784019,263.22,65.346 +784020,261.62,66.673 +784021,265.52,62.695 +784022,263.64,64.035 +784023,261.89,65.36 +784024,260.25,66.669 +784025,264.26,62.749 +784026,262.34,64.069 +784027,260.56,65.374 +784028,258.88,66.663 +784029,263.01,62.804 +784030,261.05,64.103 +784031,259.23,65.387 +784032,257.52,66.657 +784033,261.75,62.86 +784034,259.76,64.137 +784035,257.9,65.401 +784036,256.15,66.649 +784037,260.49,62.917 +784038,258.46,64.172 +784039,256.57,65.413 +784040,254.79,66.641 +784041,259.23,62.974 +784042,257.16,64.207 +784043,255.24,65.426 +784044,253.43,66.631 +784045,257.97,63.033 +784046,255.87,64.242 +784047,253.91,65.438 +784048,252.07,66.621 +784049,256.71,63.093 +784050,254.57,64.278 +784051,252.58,65.45 +784052,250.71,66.609 +784053,255.44,63.154 +784054,253.27,64.314 +784055,251.25,65.461 +784056,249.35,66.597 +784057,254.17,63.216 +784058,251.98,64.35 +784059,249.92,65.473 +784060,247.99,66.583 +784061,252.91,63.278 +784062,250.68,64.386 +784063,248.6,65.484 +784064,246.64,66.569 +784065,251.64,63.341 +784066,249.38,64.423 +784067,247.27,65.494 +784068,245.28,66.554 +784069,250.36,63.406 +784070,248.08,64.46 +784071,245.94,65.505 +784072,243.93,66.538 +784073,249.09,63.471 +784074,246.78,64.498 +784075,244.62,65.515 +784076,242.58,66.521 +784077,247.81,63.536 +784078,245.48,64.535 +784079,243.29,65.524 +784080,241.23,66.504 +784081,246.54,63.603 +784082,244.18,64.573 +784083,241.97,65.534 +784084,239.89,66.485 +784085,245.26,63.67 +784086,242.88,64.611 +784087,240.64,65.543 +784088,238.54,66.466 +784089,243.98,63.738 +784090,241.57,64.649 +784091,239.32,65.552 +784092,237.2,66.446 +784093,242.69,63.807 +784094,240.27,64.688 +784095,238,65.561 +784096,235.85,66.426 +784097,241.41,63.876 +784098,238.97,64.726 +784099,236.68,65.569 +784100,234.51,66.404 +784101,240.12,63.946 +784102,237.66,64.765 +784103,235.35,65.577 +784104,233.17,66.382 +784105,238.83,64.017 +784106,236.36,64.804 +784107,234.03,65.585 +784108,231.84,66.36 +784109,237.54,64.088 +784110,235.05,64.844 +784111,232.71,65.593 +784112,230.5,66.336 +784113,236.25,64.16 +784114,233.75,64.883 +784115,231.39,65.601 +784116,229.16,66.313 +784117,234.95,64.232 +784118,232.44,64.923 +784119,230.07,65.608 +784120,227.83,66.288 +784121,233.66,64.305 +784122,231.13,64.963 +784123,228.75,65.616 +784124,226.5,66.263 +784125,232.36,64.378 +784126,229.82,65.003 +784127,227.43,65.623 +784128,225.17,66.238 +784129,231.06,64.452 +784130,228.51,65.043 +784131,226.12,65.629 +784132,223.84,66.212 +784133,229.75,64.526 +784134,227.21,65.083 +784135,224.8,65.636 +784136,222.52,66.185 +784137,228.45,64.6 +784138,225.9,65.123 +784139,223.48,65.643 +784140,221.19,66.158 +784141,227.14,64.675 +784142,224.58,65.164 +784143,222.17,65.649 +784144,219.87,66.131 +784145,225.83,64.75 +784146,223.27,65.204 +784147,220.85,65.655 +784148,218.55,66.103 +784149,224.52,64.826 +784150,221.96,65.245 +784151,219.54,65.661 +784152,217.23,66.075 +784153,223.21,64.901 +784154,220.65,65.286 +784155,218.22,65.668 +784156,215.91,66.047 +784157,221.9,64.977 +784158,219.34,65.327 +784159,216.91,65.673 +784160,214.6,66.018 +784161,220.58,65.054 +784162,218.02,65.368 +784163,215.6,65.679 +784164,213.28,65.989 +784165,219.26,65.13 +784166,216.71,65.409 +784167,214.28,65.685 +784168,211.97,65.96 +784169,217.94,65.207 +784170,215.39,65.45 +784171,212.97,65.691 +784172,210.66,65.93 +784173,216.62,65.283 +784174,214.08,65.491 +784175,211.66,65.696 +784176,209.35,65.9 +784177,215.29,65.36 +784178,212.76,65.532 +784179,210.35,65.702 +784180,208.04,65.87 +784181,213.97,65.437 +784182,211.44,65.573 +784183,209.04,65.707 +784184,206.74,65.84 +784185,212.64,65.514 +784186,210.12,65.614 +784187,207.73,65.713 +784188,205.44,65.81 +784189,211.31,65.591 +784190,208.81,65.655 +784191,206.42,65.718 +784192,204.13,65.78 +784193,209.98,65.668 +784194,207.49,65.696 +784195,205.11,65.723 +784196,202.83,65.75 +784197,208.64,65.745 +784198,206.17,65.738 +784199,203.8,65.729 +784200,201.54,65.72 +784201,207.31,65.822 +784202,204.85,65.779 +784203,202.5,65.734 +784204,200.24,65.689 +784205,205.97,65.899 +784206,203.53,65.82 +784207,201.19,65.74 +784208,198.94,65.659 +784209,204.63,65.975 +784210,202.2,65.861 +784211,199.88,65.745 +784212,197.65,65.629 +784213,203.29,66.052 +784214,200.88,65.902 +784215,198.58,65.75 +784216,196.36,65.599 +784217,201.95,66.128 +784218,199.56,65.943 +784219,197.27,65.756 +784220,195.07,65.569 +784221,200.6,66.204 +784222,198.24,65.983 +784223,195.97,65.761 +784224,193.78,65.539 +784225,199.26,66.28 +784226,196.91,66.024 +784227,194.66,65.767 +784228,192.5,65.509 +784229,197.91,66.356 +784230,195.59,66.065 +784231,193.36,65.773 +784232,191.21,65.48 +784233,196.56,66.431 +784234,194.26,66.105 +784235,192.06,65.778 +784236,189.93,65.451 +784237,195.21,66.506 +784238,192.94,66.146 +784239,190.75,65.784 +784240,188.65,65.422 +784241,193.85,66.58 +784242,191.61,66.186 +784243,189.45,65.79 +784244,187.37,65.393 +784245,192.5,66.655 +784246,190.28,66.226 +784247,188.15,65.796 +784248,186.09,65.365 +784249,191.14,66.729 +784250,188.96,66.266 +784251,186.85,65.802 +784252,184.81,65.337 +784253,189.78,66.802 +784254,187.63,66.306 +784255,185.55,65.808 +784256,183.54,65.309 +784257,188.42,66.875 +784258,186.3,66.346 +784259,184.25,65.815 +784260,182.26,65.282 +784261,187.06,66.947 +784262,184.97,66.386 +784263,182.95,65.821 +784264,180.99,65.255 +784265,185.7,67.019 +784266,183.64,66.425 +784267,181.65,65.828 +784268,179.72,65.229 +784269,184.34,67.091 +784270,182.31,66.464 +784271,180.35,65.834 +784272,178.45,65.203 +784273,182.97,67.162 +784274,180.98,66.503 +784275,179.06,65.841 +784276,177.19,65.177 +784277,181.6,67.232 +784278,179.65,66.542 +784279,177.76,65.848 +784280,175.92,65.153 +784281,180.23,67.302 +784282,178.32,66.581 +784283,176.46,65.856 +784284,174.66,65.128 +784285,178.86,67.371 +784286,176.99,66.619 +784287,175.17,65.863 +784288,173.39,65.105 +784289,177.49,67.439 +784290,175.65,66.657 +784291,173.87,65.871 +784292,172.13,65.082 +784293,176.12,67.507 +784294,174.32,66.695 +784295,172.57,65.879 +784296,170.87,65.059 +784297,174.75,67.574 +784298,172.99,66.733 +784299,171.28,65.887 +784300,169.61,65.037 +784301,173.37,67.64 +784302,171.65,66.771 +784303,169.98,65.895 +784304,168.36,65.016 +784305,172,67.706 +784306,170.32,66.808 +784307,168.69,65.904 +784308,167.1,64.996 +784309,170.62,67.77 +784310,168.99,66.845 +784311,167.4,65.913 +784312,165.85,64.976 +784313,169.24,67.834 +784314,167.65,66.881 +784315,166.1,65.922 +784316,164.59,64.957 +784317,167.86,67.898 +784318,166.32,66.918 +784319,164.81,65.931 +784320,163.34,64.939 +784321,166.48,67.96 +784322,164.98,66.954 +784323,163.52,65.941 +784324,162.09,64.922 +784325,165.1,68.021 +784326,163.64,66.99 +784327,162.22,65.951 +784328,160.84,64.905 +784329,163.72,68.082 +784330,162.31,67.025 +784331,160.93,65.961 +784332,159.59,64.89 +784333,162.34,68.142 +784334,160.97,67.061 +784335,159.64,65.971 +784336,158.34,64.875 +784337,160.95,68.201 +784338,159.63,67.095 +784339,158.35,65.982 +784340,157.09,64.861 +784341,159.57,68.258 +784342,158.3,67.13 +784343,157.06,65.993 +784344,155.85,64.848 +784345,158.18,68.315 +784346,156.96,67.164 +784347,155.77,66.004 +784348,154.6,64.836 +784349,156.79,68.371 +784350,155.62,67.198 +784351,154.48,66.016 +784352,153.36,64.825 +784353,155.41,68.426 +784354,154.28,67.232 +784355,153.19,66.028 +784356,152.12,64.815 +784357,154.02,68.48 +784358,152.94,67.265 +784359,151.9,66.04 +784360,150.88,64.806 +784361,152.63,68.533 +784362,151.6,67.298 +784363,150.61,66.052 +784364,149.63,64.798 +784365,151.24,68.585 +784366,150.26,67.331 +784367,149.32,66.065 +784368,148.39,64.791 +784369,149.85,68.636 +784370,148.93,67.363 +784371,148.03,66.079 +784372,147.15,64.784 +784373,148.46,68.686 +784374,147.59,67.395 +784375,146.74,66.092 +784376,145.92,64.779 +784377,147.07,68.735 +784378,146.25,67.426 +784379,145.45,66.106 +784380,144.68,64.775 +784381,145.68,68.783 +784382,144.91,67.458 +784383,144.16,66.12 +784384,143.44,64.773 +784385,144.29,68.829 +784386,143.57,67.488 +784387,142.87,66.135 +784388,142.2,64.771 +784389,142.89,68.875 +784390,142.23,67.519 +784391,141.58,66.15 +784392,140.97,64.77 +784393,141.5,68.919 +784394,140.88,67.549 +784395,140.29,66.165 +784396,139.73,64.771 +784397,140.11,68.962 +784398,139.54,67.578 +784399,139.01,66.181 +784400,138.5,64.772 +784401,138.71,69.005 +784402,138.2,67.608 +784403,137.72,66.197 +784404,137.26,64.775 +784405,137.32,69.046 +784406,136.86,67.636 +784407,136.43,66.214 +784408,136.03,64.779 +784409,135.93,69.085 +784410,135.52,67.665 +784411,135.14,66.23 +784412,134.79,64.784 +784413,134.53,69.124 +784414,134.18,67.693 +784415,133.86,66.248 +784416,133.56,64.79 +784417,133.14,69.162 +784418,132.84,67.721 +784419,132.57,66.265 +784420,132.33,64.797 +784421,131.75,69.198 +784422,131.5,67.748 +784423,131.28,66.283 +784424,131.09,64.806 +784425,130.35,69.233 +784426,130.16,67.775 +784427,129.99,66.302 +784428,129.86,64.816 +784429,128.96,69.267 +784430,128.81,67.801 +784431,128.7,66.321 +784432,128.63,64.827 +784433,127.56,69.3 +784434,127.47,67.827 +784435,127.42,66.34 +784436,127.4,64.839 +784437,126.17,69.331 +784438,126.13,67.853 +784439,126.13,66.359 +784440,126.16,64.852 +784441,124.77,69.362 +784442,124.79,67.878 +784443,124.84,66.379 +784444,124.93,64.867 +784445,123.38,69.391 +784446,123.45,67.903 +784447,123.55,66.4 +784448,123.7,64.883 +784449,121.99,69.419 +784450,122.11,67.927 +784451,122.27,66.42 +784452,122.47,64.9 +784453,120.59,69.446 +784454,120.77,67.951 +784455,120.98,66.442 +784456,121.23,64.918 +784457,119.2,69.471 +784458,119.43,67.975 +784459,119.69,66.463 +784460,120,64.938 +784461,117.81,69.495 +784462,118.08,67.998 +784463,118.4,66.485 +784464,118.77,64.959 +784465,116.42,69.518 +784466,116.74,68.02 +784467,117.12,66.508 +784468,117.54,64.981 +784469,115.02,69.54 +784470,115.4,68.043 +784471,115.83,66.53 +784472,116.3,65.004 +784473,113.63,69.561 +784474,114.06,68.065 +784475,114.54,66.554 +784476,115.07,65.029 +784477,112.24,69.58 +784478,112.72,68.086 +784479,113.25,66.577 +784480,113.83,65.054 +784481,110.85,69.599 +784482,111.38,68.107 +784483,111.96,66.601 +784484,112.6,65.081 +784485,109.46,69.616 +784486,110.04,68.128 +784487,110.67,66.625 +784488,111.37,65.11 +784489,108.07,69.631 +784490,108.7,68.148 +784491,109.38,66.65 +784492,110.13,65.139 +784493,106.68,69.646 +784494,107.36,68.168 +784495,108.1,66.675 +784496,108.89,65.17 +784497,105.29,69.66 +784498,106.02,68.187 +784499,106.81,66.701 +784500,107.66,65.202 +784501,103.9,69.672 +784502,104.68,68.206 +784503,105.52,66.727 +784504,106.42,65.235 +784505,102.51,69.683 +784506,103.34,68.225 +784507,104.23,66.753 +784508,105.18,65.269 +784509,101.13,69.693 +784510,102,68.243 +784511,102.94,66.78 +784512,103.94,65.305 +784513,99.742,69.701 +784514,100.66,68.261 +784515,101.65,66.807 +784516,102.71,65.341 +784517,98.356,69.709 +784518,99.322,68.278 +784519,100.36,66.835 +784520,101.47,65.379 +784521,96.972,69.715 +784522,97.983,68.295 +784523,99.065,66.863 +784524,100.22,65.418 +784525,95.588,69.721 +784526,96.645,68.312 +784527,97.774,66.891 +784528,98.983,65.459 +784529,94.206,69.725 +784530,95.307,68.328 +784531,96.483,66.92 +784532,97.74,65.5 +784533,92.824,69.728 +784534,93.969,68.344 +784535,95.191,66.949 +784536,96.496,65.542 +784537,91.443,69.73 +784538,92.632,68.36 +784539,93.899,66.978 +784540,95.252,65.586 +784541,90.063,69.73 +784542,91.295,68.375 +784543,92.606,67.008 +784544,94.006,65.631 +784545,88.684,69.73 +784546,89.958,68.389 +784547,91.313,67.038 +784548,92.759,65.677 +784549,87.306,69.729 +784550,88.621,68.404 +784551,90.02,67.068 +784552,91.512,65.724 +784553,85.929,69.726 +784554,87.285,68.418 +784555,88.726,67.099 +784556,90.263,65.772 +784557,84.553,69.723 +784558,85.949,68.431 +784559,87.432,67.13 +784560,89.012,65.821 +784561,83.178,69.718 +784562,84.614,68.445 +784563,86.138,67.162 +784564,87.761,65.871 +784565,81.804,69.712 +784566,83.279,68.458 +784567,84.843,67.194 +784568,86.508,65.922 +784569,80.432,69.706 +784570,81.944,68.47 +784571,83.548,67.226 +784572,85.255,65.974 +784573,79.061,69.698 +784574,80.61,68.482 +784575,82.252,67.258 +784576,83.999,66.027 +784577,77.69,69.69 +784578,79.276,68.494 +784579,80.956,67.291 +784580,82.743,66.082 +784581,76.322,69.68 +784582,77.942,68.506 +784583,79.659,67.324 +784584,81.485,66.137 +784585,74.954,69.669 +784586,76.609,68.517 +784587,78.362,67.358 +784588,80.225,66.193 +784589,73.587,69.658 +784590,75.277,68.528 +784591,77.065,67.392 +784592,78.965,66.25 +784593,72.222,69.646 +784594,73.944,68.539 +784595,75.767,67.426 +784596,77.702,66.308 +784597,70.859,69.632 +784598,72.613,68.549 +784599,74.468,67.46 +784600,76.438,66.366 +784601,69.496,69.618 +784602,71.281,68.559 +784603,73.169,67.495 +784604,75.173,66.426 +784605,68.135,69.603 +784606,69.951,68.569 +784607,71.87,67.53 +784608,73.906,66.487 +784609,66.775,69.587 +784610,68.62,68.578 +784611,70.57,67.565 +784612,72.638,66.548 +784613,65.417,69.571 +784614,67.29,68.588 +784615,69.269,67.6 +784616,71.367,66.61 +784617,64.06,69.553 +784618,65.961,68.596 +784619,67.968,67.636 +784620,70.096,66.673 +784621,62.705,69.535 +784622,64.632,68.605 +784623,66.666,67.672 +784624,68.822,66.737 +784625,61.351,69.516 +784626,63.304,68.614 +784627,65.364,67.708 +784628,67.547,66.801 +784629,59.999,69.497 +784630,61.976,68.622 +784631,64.061,67.744 +784632,66.27,66.866 +784633,58.648,69.476 +784634,60.648,68.63 +784635,62.758,67.781 +784636,64.992,66.932 +784637,57.298,69.455 +784638,59.321,68.637 +784639,61.454,67.818 +784640,63.712,66.998 +784641,55.95,69.433 +784642,57.995,68.645 +784643,60.149,67.855 +784644,62.429,67.065 +784645,54.604,69.411 +784646,56.669,68.652 +784647,58.844,67.892 +784648,61.146,67.133 +784649,53.259,69.388 +784650,55.344,68.659 +784651,57.539,67.929 +784652,59.86,67.201 +784653,51.916,69.364 +784654,54.019,68.666 +784655,56.232,67.967 +784656,58.573,67.27 +784657,50.574,69.34 +784658,52.695,68.672 +784659,54.925,68.005 +784660,57.283,67.339 +784661,49.234,69.316 +784662,51.371,68.679 +784663,53.618,68.043 +784664,55.992,67.409 +784665,47.896,69.29 +784666,50.048,68.685 +784667,52.31,68.081 +784668,54.699,67.479 +784669,46.559,69.265 +784670,48.725,68.691 +784671,51.001,68.119 +784672,53.405,67.55 +784673,45.224,69.238 +784674,47.403,68.697 +784675,49.692,68.158 +784676,52.108,67.621 +784677,43.891,69.212 +784678,46.081,68.703 +784679,48.382,68.196 +784680,50.809,67.693 +784681,42.559,69.185 +784682,44.761,68.709 +784683,47.072,68.235 +784684,49.509,67.765 +784685,41.229,69.157 +784686,43.44,68.714 +784687,45.761,68.274 +784688,48.207,67.837 +784689,39.9,69.13 +784690,42.12,68.72 +784691,44.449,68.313 +784692,46.902,67.91 +784693,38.573,69.101 +784694,40.801,68.725 +784695,43.137,68.352 +784696,45.596,67.982 +784697,37.248,69.073 +784698,39.482,68.73 +784699,41.824,68.391 +784700,44.288,68.056 +784701,35.925,69.044 +784702,38.164,68.735 +784703,40.51,68.43 +784704,42.978,68.129 +784705,34.603,69.015 +784706,36.847,68.74 +784707,39.196,68.469 +784708,41.667,68.203 +784709,33.283,68.986 +784710,35.53,68.745 +784711,37.881,68.508 +784712,40.353,68.276 +784713,31.965,68.957 +784714,34.213,68.75 +784715,36.566,68.548 +784716,39.037,68.35 +784717,30.648,68.927 +784718,32.898,68.755 +784719,35.249,68.587 +784720,37.72,68.424 +784721,29.333,68.897 +784722,31.582,68.76 +784723,33.933,68.626 +784724,36.4,68.499 +784725,28.02,68.867 +784726,30.268,68.764 +784727,32.615,68.666 +784728,35.079,68.573 +784729,26.708,68.838 +784730,28.953,68.769 +784731,31.297,68.705 +784732,33.756,68.647 +784733,25.398,68.808 +784734,27.64,68.774 +784735,29.979,68.745 +784736,32.431,68.721 +784737,24.09,68.777 +784738,26.327,68.778 +784739,28.66,68.784 +784740,31.104,68.795 +784741,22.784,68.747 +784742,25.015,68.783 +784743,27.34,68.824 +784744,29.775,68.87 +784745,21.479,68.717 +784746,23.703,68.788 +784747,26.02,68.863 +784748,28.444,68.944 +784749,20.176,68.687 +784750,22.391,68.792 +784751,24.699,68.902 +784752,27.112,69.018 +784753,18.875,68.657 +784754,21.081,68.797 +784755,23.377,68.942 +784756,25.778,69.092 +784757,17.575,68.628 +784758,19.771,68.802 +784759,22.055,68.981 +784760,24.442,69.165 +784761,16.277,68.598 +784762,18.461,68.807 +784763,20.732,69.02 +784764,23.104,69.239 +784765,14.981,68.569 +784766,17.152,68.811 +784767,19.408,69.059 +784768,21.764,69.312 +784769,13.686,68.539 +784770,15.843,68.816 +784771,18.084,69.098 +784772,20.423,69.385 +784773,12.393,68.51 +784774,14.535,68.821 +784775,16.76,69.137 +784776,19.079,69.458 +784777,11.101,68.481 +784778,13.228,68.826 +784779,15.435,69.176 +784780,17.734,69.531 +784781,9.8117,68.453 +784782,11.921,68.832 +784783,14.109,69.215 +784784,16.388,69.603 +784785,8.5236,68.424 +784786,10.615,68.837 +784787,12.783,69.254 +784788,15.039,69.675 +784789,7.2371,68.396 +784790,9.309,68.842 +784791,11.456,69.292 +784792,13.689,69.746 +784793,5.9522,68.369 +784794,8.0037,68.848 +784795,10.128,69.331 +784796,12.338,69.817 +784797,4.6688,68.342 +784798,6.699,68.853 +784799,8.8003,69.369 +784800,10.984,69.888 +784801,3.3871,68.315 +784802,5.3947,68.859 +784803,7.4718,69.407 +784804,9.6293,69.958 +784805,2.1068,68.288 +784806,4.091,68.865 +784807,6.1427,69.445 +784808,8.2728,70.028 +784809,0.82815,68.263 +784810,2.7877,68.871 +784811,4.8131,69.483 +784812,6.9147,70.097 +784813,359.55,68.237 +784814,1.485,68.877 +784815,3.483,69.52 +784816,5.5551,70.166 +784817,358.28,68.212 +784818,0.18268,68.884 +784819,2.1523,69.558 +784820,4.194,70.234 +784821,357,68.188 +784822,358.88,68.89 +784823,0.82116,69.595 +784824,2.8314,70.302 +784825,355.73,68.164 +784826,357.58,68.897 +784827,359.49,69.632 +784828,1.4674,70.369 +784829,354.46,68.141 +784830,356.28,68.904 +784831,358.16,69.669 +784832,0.10188,70.435 +784833,353.19,68.118 +784834,354.98,68.911 +784835,356.82,69.706 +784836,358.74,70.501 +784837,351.92,68.096 +784838,353.68,68.918 +784839,355.49,69.742 +784840,357.37,70.566 +784841,350.65,68.075 +784842,352.38,68.926 +784843,354.16,69.778 +784844,356,70.63 +784845,349.39,68.054 +784846,351.08,68.934 +784847,352.82,69.814 +784848,354.63,70.694 +784849,348.12,68.034 +784850,349.78,68.942 +784851,351.49,69.85 +784852,353.25,70.757 +784853,346.86,68.015 +784854,348.48,68.95 +784855,350.15,69.885 +784856,351.88,70.819 +784857,345.6,67.997 +784858,347.19,68.959 +784859,348.82,69.92 +784860,350.51,70.88 +784861,344.34,67.979 +784862,345.89,68.967 +784863,347.48,69.955 +784864,349.13,70.941 +784865,343.08,67.962 +784866,344.59,68.976 +784867,346.15,69.99 +784868,347.75,71.001 +784869,341.82,67.946 +784870,343.29,68.986 +784871,344.81,70.024 +784872,346.38,71.06 +784873,340.56,67.931 +784874,342,68.995 +784875,343.47,70.058 +784876,345,71.118 +784877,339.31,67.917 +784878,340.7,69.005 +784879,342.14,70.092 +784880,343.62,71.175 +784881,338.05,67.903 +784882,339.41,69.015 +784883,340.8,70.125 +784884,342.23,71.231 +784885,336.8,67.891 +784886,338.11,69.026 +784887,339.46,70.158 +784888,340.85,71.287 +784889,335.55,67.879 +784890,336.82,69.037 +784891,338.12,70.191 +784892,339.47,71.341 +784893,334.29,67.868 +784894,335.52,69.048 +784895,336.78,70.224 +784896,338.09,71.395 +784897,333.04,67.859 +784898,334.23,69.059 +784899,335.44,70.256 +784900,336.7,71.447 +784901,331.79,67.85 +784902,332.93,69.071 +784903,334.11,70.288 +784904,335.31,71.499 +784905,330.54,67.842 +784906,331.64,69.083 +784907,332.77,70.319 +784908,333.93,71.55 +784909,329.3,67.836 +784910,330.35,69.095 +784911,331.43,70.35 +784912,332.54,71.599 +784913,328.05,67.83 +784914,329.05,69.108 +784915,330.09,70.381 +784916,331.15,71.648 +784917,326.8,67.825 +784918,327.76,69.121 +784919,328.75,70.412 +784920,329.76,71.695 +784921,325.56,67.822 +784922,326.47,69.135 +784923,327.4,70.442 +784924,328.38,71.742 +784925,324.31,67.819 +784926,325.17,69.149 +784927,326.06,70.472 +784928,326.99,71.787 +784929,323.07,67.818 +784930,323.88,69.163 +784931,324.72,70.501 +784932,325.59,71.832 +784933,321.83,67.817 +784934,322.59,69.177 +784935,323.38,70.53 +784936,324.2,71.875 +784937,320.58,67.818 +784938,321.3,69.192 +784939,322.04,70.559 +784940,322.81,71.917 +784941,319.34,67.82 +784942,320.01,69.207 +784943,320.7,70.587 +784944,321.42,71.959 +784945,318.1,67.823 +784946,318.71,69.223 +784947,319.36,70.615 +784948,320.03,71.999 +784949,316.86,67.827 +784950,317.42,69.239 +784951,318.01,70.643 +784952,318.64,72.037 +784953,315.62,67.832 +784954,316.13,69.255 +784955,316.67,70.67 +784956,317.24,72.075 +784957,314.38,67.839 +784958,314.84,69.272 +784959,315.33,70.697 +784960,315.85,72.112 +784961,313.14,67.846 +784962,313.55,69.289 +784963,313.99,70.723 +784964,314.46,72.147 +784965,311.9,67.855 +784966,312.26,69.307 +784967,312.64,70.749 +784968,313.06,72.182 +784969,310.66,67.865 +784970,310.97,69.324 +784971,311.3,70.775 +784972,311.67,72.215 +784973,309.42,67.877 +784974,309.68,69.343 +784975,309.96,70.8 +784976,310.27,72.247 +784977,308.19,67.889 +784978,308.39,69.361 +784979,308.62,70.825 +784980,308.88,72.278 +784981,306.95,67.903 +784982,307.09,69.381 +784983,307.27,70.849 +784984,307.48,72.308 +784985,305.71,67.917 +784986,305.8,69.4 +784987,305.93,70.873 +784988,306.09,72.336 +784989,304.47,67.933 +784990,304.51,69.42 +784991,304.59,70.897 +784992,304.7,72.364 +784993,303.23,67.951 +784994,303.22,69.44 +784995,303.25,70.92 +784996,303.3,72.39 +784997,302,67.969 +784998,301.93,69.461 +784999,301.9,70.943 +785000,301.91,72.415 +785001,300.76,67.989 +785002,300.64,69.482 +785003,300.56,70.966 +785004,300.51,72.439 +785005,299.52,68.01 +785006,299.35,69.503 +785007,299.22,70.988 +785008,299.12,72.461 +785009,298.28,68.032 +785010,298.06,69.525 +785011,297.87,71.009 +785012,297.72,72.483 +785013,297.05,68.055 +785014,296.77,69.547 +785015,296.53,71.031 +785016,296.33,72.503 +785017,295.81,68.08 +785018,295.48,69.57 +785019,295.19,71.051 +785020,294.94,72.522 +785021,294.57,68.105 +785022,294.19,69.593 +785023,293.85,71.072 +785024,293.54,72.54 +785025,293.33,68.132 +785026,292.89,69.617 +785027,292.5,71.092 +785028,292.15,72.557 +785029,292.09,68.161 +785030,291.6,69.641 +785031,291.16,71.112 +785032,290.76,72.572 +785033,290.85,68.19 +785034,290.31,69.665 +785035,289.82,71.131 +785036,289.37,72.587 +785037,289.61,68.221 +785038,289.02,69.689 +785039,288.48,71.15 +785040,287.98,72.6 +785041,288.37,68.252 +785042,287.73,69.715 +785043,287.13,71.168 +785044,286.58,72.612 +785045,287.13,68.285 +785046,286.44,69.74 +785047,285.79,71.186 +785048,285.19,72.623 +785049,285.89,68.32 +785050,285.14,69.766 +785051,284.45,71.204 +785052,283.8,72.632 +785053,284.65,68.355 +785054,283.85,69.792 +785055,283.11,71.221 +785056,282.41,72.641 +785057,283.41,68.392 +785058,282.56,69.819 +785059,281.77,71.238 +785060,281.03,72.648 +785061,282.16,68.429 +785062,281.27,69.846 +785063,280.43,71.255 +785064,279.64,72.655 +785065,280.92,68.468 +785066,279.97,69.873 +785067,279.08,71.271 +785068,278.25,72.66 +785069,279.68,68.508 +785070,278.68,69.901 +785071,277.74,71.287 +785072,276.86,72.664 +785073,278.43,68.549 +785074,277.39,69.929 +785075,276.4,71.302 +785076,275.48,72.667 +785077,277.19,68.592 +785078,276.09,69.957 +785079,275.06,71.317 +785080,274.09,72.669 +785081,275.94,68.635 +785082,274.8,69.986 +785083,273.72,71.332 +785084,272.71,72.67 +785085,274.69,68.679 +785086,273.5,70.015 +785087,272.38,71.346 +785088,271.32,72.669 +785089,273.44,68.725 +785090,272.21,70.045 +785091,271.04,71.36 +785092,269.94,72.668 +785093,272.2,68.772 +785094,270.91,70.075 +785095,269.7,71.373 +785096,268.56,72.666 +785097,270.95,68.819 +785098,269.62,70.105 +785099,268.37,71.387 +785100,267.18,72.662 +785101,269.69,68.868 +785102,268.32,70.136 +785103,267.03,71.4 +785104,265.8,72.658 +785105,268.44,68.918 +785106,267.03,70.167 +785107,265.69,71.412 +785108,264.42,72.652 +785109,267.19,68.969 +785110,265.73,70.198 +785111,264.35,71.424 +785112,263.04,72.646 +785113,265.93,69.021 +785114,264.43,70.23 +785115,263.01,71.436 +785116,261.67,72.638 +785117,264.68,69.073 +785118,263.14,70.262 +785119,261.68,71.448 +785120,260.29,72.63 +785121,263.42,69.127 +785122,261.84,70.294 +785123,260.34,71.459 +785124,258.91,72.621 +785125,262.16,69.182 +785126,260.54,70.326 +785127,259,71.47 +785128,257.54,72.61 +785129,260.9,69.237 +785130,259.24,70.359 +785131,257.67,71.481 +785132,256.17,72.599 +785133,259.64,69.294 +785134,257.94,70.393 +785135,256.33,71.491 +785136,254.8,72.587 +785137,258.38,69.351 +785138,256.64,70.426 +785139,255,71.501 +785140,253.43,72.574 +785141,257.12,69.41 +785142,255.34,70.46 +785143,253.66,71.511 +785144,252.06,72.56 +785145,255.85,69.469 +785146,254.04,70.494 +785147,252.33,71.52 +785148,250.69,72.546 +785149,254.59,69.529 +785150,252.74,70.528 +785151,250.99,71.529 +785152,249.32,72.53 +785153,253.32,69.589 +785154,251.44,70.563 +785155,249.66,71.538 +785156,247.96,72.514 +785157,252.05,69.651 +785158,250.14,70.598 +785159,248.33,71.547 +785160,246.6,72.497 +785161,250.78,69.713 +785162,248.84,70.633 +785163,246.99,71.555 +785164,245.23,72.479 +785165,249.51,69.776 +785166,247.54,70.668 +785167,245.66,71.563 +785168,243.87,72.46 +785169,248.24,69.84 +785170,246.23,70.704 +785171,244.33,71.571 +785172,242.51,72.441 +785173,246.96,69.904 +785174,244.93,70.739 +785175,243,71.579 +785176,241.15,72.421 +785177,245.69,69.969 +785178,243.63,70.775 +785179,241.67,71.586 +785180,239.8,72.4 +785181,244.41,70.035 +785182,242.32,70.812 +785183,240.34,71.594 +785184,238.44,72.379 +785185,243.13,70.102 +785186,241.02,70.848 +785187,239.01,71.601 +785188,237.09,72.357 +785189,241.85,70.169 +785190,239.71,70.885 +785191,237.68,71.607 +785192,235.74,72.334 +785193,240.56,70.236 +785194,238.4,70.922 +785195,236.35,71.614 +785196,234.38,72.311 +785197,239.28,70.304 +785198,237.1,70.959 +785199,235.02,71.62 +785200,233.04,72.287 +785201,237.99,70.373 +785202,235.79,70.996 +785203,233.69,71.627 +785204,231.69,72.263 +785205,236.71,70.442 +785206,234.48,71.033 +785207,232.36,71.633 +785208,230.34,72.238 +785209,235.42,70.511 +785210,233.17,71.071 +785211,231.04,71.639 +785212,229,72.212 +785213,234.12,70.581 +785214,231.86,71.109 +785215,229.71,71.644 +785216,227.65,72.187 +785217,232.83,70.652 +785218,230.55,71.146 +785219,228.38,71.65 +785220,226.31,72.16 +785221,231.54,70.722 +785222,229.24,71.184 +785223,227.06,71.655 +785224,224.97,72.134 +785225,230.24,70.794 +785226,227.93,71.223 +785227,225.73,71.661 +785228,223.63,72.106 +785229,228.94,70.865 +785230,226.62,71.261 +785231,224.41,71.666 +785232,222.3,72.079 +785233,227.64,70.937 +785234,225.31,71.299 +785235,223.09,71.671 +785236,220.96,72.051 +785237,226.34,71.009 +785238,224,71.337 +785239,221.76,71.676 +785240,219.63,72.023 +785241,225.03,71.081 +785242,222.68,71.376 +785243,220.44,71.681 +785244,218.29,71.995 +785245,223.73,71.154 +785246,221.37,71.415 +785247,219.12,71.686 +785248,216.96,71.966 +785249,222.42,71.227 +785250,220.05,71.453 +785251,217.8,71.691 +785252,215.63,71.937 +785253,221.11,71.299 +785254,218.74,71.492 +785255,216.48,71.695 +785256,214.31,71.908 +785257,219.8,71.373 +785258,217.42,71.531 +785259,215.16,71.7 +785260,212.98,71.879 +785261,218.49,71.446 +785262,216.11,71.569 +785263,213.84,71.705 +785264,211.66,71.849 +785265,217.17,71.519 +785266,214.79,71.608 +785267,212.52,71.709 +785268,210.33,71.82 +785269,215.85,71.592 +785270,213.47,71.647 +785271,211.2,71.714 +785272,209.01,71.79 +785273,214.54,71.666 +785274,212.15,71.686 +785275,209.88,71.718 +785276,207.7,71.76 +785277,213.22,71.739 +785278,210.84,71.725 +785279,208.56,71.723 +785280,206.38,71.731 +785281,211.89,71.812 +785282,209.52,71.764 +785283,207.24,71.727 +785284,205.06,71.701 +785285,210.57,71.885 +785286,208.2,71.803 +785287,205.93,71.732 +785288,203.75,71.671 +785289,209.24,71.959 +785290,206.88,71.842 +785291,204.61,71.736 +785292,202.44,71.641 +785293,207.92,72.032 +785294,205.56,71.88 +785295,203.3,71.741 +785296,201.12,71.612 +785297,206.59,72.104 +785298,204.23,71.919 +785299,201.98,71.745 +785300,199.82,71.582 +785301,205.26,72.177 +785302,202.91,71.958 +785303,200.67,71.75 +785304,198.51,71.553 +785305,203.92,72.25 +785306,201.59,71.996 +785307,199.35,71.755 +785308,197.2,71.523 +785309,202.59,72.322 +785310,200.27,72.035 +785311,198.04,71.759 +785312,195.9,71.494 +785313,201.25,72.394 +785314,198.94,72.074 +785315,196.73,71.764 +785316,194.6,71.465 +785317,199.91,72.466 +785318,197.62,72.112 +785319,195.42,71.769 +785320,193.29,71.437 +785321,198.57,72.538 +785322,196.29,72.15 +785323,194.1,71.774 +785324,192,71.408 +785325,197.23,72.609 +785326,194.97,72.189 +785327,192.79,71.779 +785328,190.7,71.38 +785329,195.89,72.68 +785330,193.64,72.227 +785331,191.48,71.784 +785332,189.4,71.352 +785333,194.54,72.75 +785334,192.31,72.265 +785335,190.17,71.79 +785336,188.11,71.325 +785337,193.19,72.82 +785338,190.98,72.303 +785339,188.86,71.795 +785340,186.81,71.298 +785341,191.85,72.89 +785342,189.66,72.34 +785343,187.55,71.801 +785344,185.52,71.271 +785345,190.5,72.959 +785346,188.33,72.378 +785347,186.24,71.807 +785348,184.23,71.245 +785349,189.14,73.028 +785350,187,72.415 +785351,184.94,71.812 +785352,182.94,71.219 +785353,187.79,73.096 +785354,185.67,72.453 +785355,183.63,71.818 +785356,181.66,71.193 +785357,186.44,73.163 +785358,184.34,72.49 +785359,182.32,71.825 +785360,180.37,71.168 +785361,185.08,73.231 +785362,183.01,72.527 +785363,181.02,71.831 +785364,179.09,71.144 +785365,183.72,73.297 +785366,181.68,72.563 +785367,179.71,71.838 +785368,177.81,71.12 +785369,182.36,73.363 +785370,180.35,72.6 +785371,178.4,71.844 +785372,176.53,71.097 +785373,181,73.428 +785374,179.01,72.636 +785375,177.1,71.851 +785376,175.25,71.074 +785377,179.64,73.493 +785378,177.68,72.672 +785379,175.79,71.859 +785380,173.97,71.052 +785381,178.27,73.557 +785382,176.35,72.708 +785383,174.49,71.866 +785384,172.69,71.031 +785385,176.91,73.62 +785386,175.01,72.744 +785387,173.19,71.874 +785388,171.42,71.01 +785389,175.54,73.683 +785390,173.68,72.779 +785391,171.88,71.882 +785392,170.14,70.99 +785393,174.17,73.745 +785394,172.34,72.814 +785395,170.58,71.89 +785396,168.87,70.971 +785397,172.8,73.806 +785398,171.01,72.849 +785399,169.28,71.898 +785400,167.6,70.952 +785401,171.43,73.866 +785402,169.67,72.884 +785403,167.98,71.907 +785404,166.33,70.935 +785405,170.06,73.926 +785406,168.34,72.919 +785407,166.67,71.916 +785408,165.06,70.918 +785409,168.69,73.984 +785410,167,72.953 +785411,165.37,71.925 +785412,163.79,70.901 +785413,167.31,74.042 +785414,165.67,72.987 +785415,164.07,71.934 +785416,162.53,70.886 +785417,165.94,74.099 +785418,164.33,73.02 +785419,162.77,71.944 +785420,161.26,70.871 +785421,164.56,74.155 +785422,162.99,73.053 +785423,161.47,71.954 +785424,160,70.858 +785425,163.18,74.211 +785426,161.65,73.087 +785427,160.17,71.964 +785428,158.74,70.845 +785429,161.81,74.265 +785430,160.31,73.119 +785431,158.87,71.975 +785432,157.48,70.833 +785433,160.43,74.319 +785434,158.97,73.152 +785435,157.57,71.986 +785436,156.22,70.822 +785437,159.04,74.371 +785438,157.64,73.184 +785439,156.27,71.997 +785440,154.96,70.812 +785441,157.66,74.423 +785442,156.3,73.216 +785443,154.98,72.009 +785444,153.7,70.803 +785445,156.28,74.473 +785446,154.96,73.247 +785447,153.68,72.021 +785448,152.44,70.795 +785449,154.9,74.523 +785450,153.62,73.278 +785451,152.38,72.033 +785452,151.18,70.788 +785453,153.51,74.571 +785454,152.28,73.309 +785455,151.08,72.045 +785456,149.93,70.782 +785457,152.13,74.619 +785458,150.94,73.339 +785459,149.79,72.058 +785460,148.67,70.777 +785461,150.74,74.666 +785462,149.59,73.369 +785463,148.49,72.072 +785464,147.42,70.773 +785465,149.35,74.711 +785466,148.25,73.399 +785467,147.19,72.085 +785468,146.17,70.77 +785469,147.96,74.756 +785470,146.91,73.429 +785471,145.9,72.099 +785472,144.92,70.769 +785473,146.58,74.799 +785474,145.57,73.458 +785475,144.6,72.114 +785476,143.67,70.768 +785477,145.19,74.841 +785478,144.23,73.486 +785479,143.3,72.128 +785480,142.42,70.768 +785481,143.8,74.883 +785482,142.88,73.515 +785483,142.01,72.143 +785484,141.17,70.77 +785485,142.41,74.923 +785486,141.54,73.543 +785487,140.71,72.159 +785488,139.92,70.772 +785489,141.02,74.962 +785490,140.2,73.57 +785491,139.42,72.175 +785492,138.67,70.776 +785493,139.62,75 +785494,138.86,73.598 +785495,138.12,72.191 +785496,137.42,70.781 +785497,138.23,75.037 +785498,137.51,73.624 +785499,136.83,72.207 +785500,136.17,70.787 +785501,136.84,75.073 +785502,136.17,73.651 +785503,135.53,72.224 +785504,134.93,70.794 +785505,135.45,75.107 +785506,134.83,73.677 +785507,134.24,72.242 +785508,133.68,70.802 +785509,134.05,75.141 +785510,133.48,73.703 +785511,132.94,72.259 +785512,132.44,70.812 +785513,132.66,75.173 +785514,132.14,73.728 +785515,131.65,72.278 +785516,131.19,70.823 +785517,131.27,75.204 +785518,130.8,73.753 +785519,130.35,72.296 +785520,129.95,70.835 +785521,129.87,75.234 +785522,129.45,73.778 +785523,129.06,72.315 +785524,128.7,70.848 +785525,128.48,75.263 +785526,128.11,73.802 +785527,127.77,72.334 +785528,127.46,70.862 +785529,127.09,75.291 +785530,126.76,73.826 +785531,126.47,72.354 +785532,126.21,70.878 +785533,125.69,75.317 +785534,125.42,73.849 +785535,125.18,72.374 +785536,124.97,70.894 +785537,124.3,75.342 +785538,124.07,73.872 +785539,123.88,72.395 +785540,123.73,70.912 +785541,122.9,75.367 +785542,122.73,73.895 +785543,122.59,72.416 +785544,122.48,70.932 +785545,121.51,75.39 +785546,121.39,73.917 +785547,121.3,72.437 +785548,121.24,70.952 +785549,120.11,75.411 +785550,120.04,73.939 +785551,120,72.459 +785552,120,70.974 +785553,118.72,75.432 +785554,118.7,73.96 +785555,118.71,72.481 +785556,118.75,70.997 +785557,117.32,75.452 +785558,117.35,73.981 +785559,117.41,72.504 +785560,117.51,71.021 +785561,115.93,75.47 +785562,116.01,74.002 +785563,116.12,72.527 +785564,116.27,71.046 +785565,114.54,75.487 +785566,114.66,74.022 +785567,114.83,72.55 +785568,115.02,71.072 +785569,113.14,75.503 +785570,113.32,74.042 +785571,113.53,72.574 +785572,113.78,71.1 +785573,111.75,75.518 +785574,111.97,74.061 +785575,112.24,72.598 +785576,112.54,71.129 +785577,110.35,75.532 +785578,110.63,74.08 +785579,110.94,72.622 +785580,111.29,71.159 +785581,108.96,75.544 +785582,109.29,74.099 +785583,109.65,72.647 +785584,110.05,71.191 +785585,107.57,75.555 +785586,107.94,74.117 +785587,108.35,72.673 +785588,108.8,71.223 +785589,106.18,75.566 +785590,106.6,74.135 +785591,107.06,72.699 +785592,107.56,71.257 +785593,104.78,75.575 +785594,105.25,74.153 +785595,105.76,72.725 +785596,106.31,71.292 +785597,103.39,75.583 +785598,103.91,74.17 +785599,104.47,72.751 +785600,105.07,71.328 +785601,102,75.59 +785602,102.57,74.187 +785603,103.17,72.778 +785604,103.82,71.365 +785605,100.61,75.595 +785606,101.22,74.203 +785607,101.88,72.806 +785608,102.58,71.404 +785609,99.222,75.6 +785610,99.881,74.219 +785611,100.58,72.833 +785612,101.33,71.443 +785613,97.833,75.603 +785614,98.538,74.235 +785615,99.287,72.861 +785616,100.08,71.484 +785617,96.444,75.606 +785618,97.195,74.25 +785619,97.991,72.89 +785620,98.835,71.526 +785621,95.056,75.607 +785622,95.852,74.265 +785623,96.695,72.919 +785624,97.587,71.569 +785625,93.669,75.608 +785626,94.51,74.28 +785627,95.399,72.948 +785628,96.337,71.613 +785629,92.282,75.607 +785630,93.168,74.294 +785631,94.102,72.977 +785632,95.087,71.659 +785633,90.896,75.605 +785634,91.826,74.308 +785635,92.805,73.007 +785636,93.837,71.705 +785637,89.511,75.602 +785638,90.484,74.322 +785639,91.508,73.038 +785640,92.585,71.752 +785641,88.127,75.598 +785642,89.143,74.335 +785643,90.21,73.068 +785644,91.333,71.801 +785645,86.743,75.593 +785646,87.801,74.348 +785647,88.912,73.099 +785648,90.08,71.85 +785649,85.361,75.587 +785650,86.46,74.36 +785651,87.614,73.131 +785652,88.826,71.901 +785653,83.979,75.581 +785654,85.12,74.372 +785655,86.316,73.162 +785656,87.571,71.952 +785657,82.598,75.573 +785658,83.779,74.384 +785659,85.017,73.194 +785660,86.315,72.005 +785661,81.218,75.564 +785662,82.439,74.396 +785663,83.718,73.227 +785664,85.058,72.058 +785665,79.84,75.554 +785666,81.1,74.407 +785667,82.418,73.259 +785668,83.8,72.113 +785669,78.462,75.544 +785670,79.76,74.418 +785671,81.118,73.292 +785672,82.541,72.168 +785673,77.085,75.532 +785674,78.421,74.429 +785675,79.818,73.325 +785676,81.281,72.225 +785677,75.709,75.52 +785678,77.082,74.439 +785679,78.518,73.359 +785680,80.02,72.282 +785681,74.335,75.507 +785682,75.744,74.449 +785683,77.217,73.393 +785684,78.758,72.34 +785685,72.961,75.492 +785686,74.406,74.459 +785687,75.915,73.427 +785688,77.494,72.399 +785689,71.589,75.477 +785690,73.068,74.468 +785691,74.613,73.462 +785692,76.229,72.459 +785693,70.218,75.462 +785694,71.731,74.478 +785695,73.311,73.496 +785696,74.963,72.52 +785697,68.848,75.445 +785698,70.394,74.487 +785699,72.008,73.531 +785700,73.696,72.581 +785701,67.479,75.428 +785702,69.058,74.495 +785703,70.705,73.567 +785704,72.427,72.644 +785705,66.112,75.41 +785706,67.722,74.504 +785707,69.402,73.602 +785708,71.158,72.707 +785709,64.745,75.391 +785710,66.386,74.512 +785711,68.098,73.638 +785712,69.886,72.77 +785713,63.38,75.372 +785714,65.051,74.52 +785715,66.793,73.674 +785716,68.614,72.835 +785717,62.017,75.351 +785718,63.716,74.528 +785719,65.488,73.71 +785720,67.34,72.9 +785721,60.654,75.331 +785722,62.382,74.536 +785723,64.183,73.747 +785724,66.064,72.966 +785725,59.293,75.309 +785726,61.048,74.543 +785727,62.877,73.783 +785728,64.787,73.032 +785729,57.934,75.287 +785730,59.714,74.55 +785731,61.57,73.82 +785732,63.509,73.1 +785733,56.575,75.264 +785734,58.381,74.557 +785735,60.263,73.857 +785736,62.229,73.167 +785737,55.219,75.241 +785738,57.049,74.564 +785739,58.956,73.894 +785740,60.948,73.236 +785741,53.863,75.217 +785742,55.717,74.57 +785743,57.648,73.932 +785744,59.665,73.304 +785745,52.509,75.193 +785746,54.385,74.577 +785747,56.339,73.97 +785748,58.38,73.374 +785749,51.156,75.168 +785750,53.054,74.583 +785751,55.03,74.007 +785752,57.094,73.444 +785753,49.805,75.143 +785754,51.723,74.589 +785755,53.721,74.045 +785756,55.807,73.514 +785757,48.456,75.117 +785758,50.393,74.595 +785759,52.41,74.084 +785760,54.517,73.585 +785761,47.107,75.091 +785762,49.063,74.601 +785763,51.1,74.122 +785764,53.226,73.656 +785765,45.761,75.064 +785766,47.734,74.607 +785767,49.789,74.16 +785768,51.934,73.727 +785769,44.415,75.037 +785770,46.405,74.612 +785771,48.477,74.199 +785772,50.64,73.799 +785773,43.072,75.01 +785774,45.077,74.618 +785775,47.165,74.237 +785776,49.344,73.871 +785777,41.73,74.982 +785778,43.75,74.623 +785779,45.852,74.276 +785780,48.046,73.944 +785781,40.389,74.954 +785782,42.422,74.628 +785783,44.538,74.315 +785784,46.747,74.017 +785785,39.05,74.926 +785786,41.096,74.634 +785787,43.224,74.354 +785788,45.446,74.09 +785789,37.712,74.897 +785790,39.77,74.639 +785791,41.91,74.393 +785792,44.143,74.163 +785793,36.376,74.869 +785794,38.444,74.644 +785795,40.595,74.432 +785796,42.839,74.236 +785797,35.042,74.84 +785798,37.119,74.649 +785799,39.279,74.471 +785800,41.533,74.31 +785801,33.709,74.811 +785802,35.794,74.654 +785803,37.963,74.511 +785804,40.225,74.384 +785805,32.378,74.782 +785806,34.47,74.659 +785807,36.646,74.55 +785808,38.915,74.458 +785809,31.049,74.752 +785810,33.147,74.663 +785811,35.328,74.589 +785812,37.604,74.531 +785813,29.721,74.723 +785814,31.824,74.668 +785815,34.01,74.628 +785816,36.291,74.605 +785817,28.394,74.694 +785818,30.502,74.673 +785819,32.692,74.668 +785820,34.976,74.679 +785821,27.069,74.664 +785822,29.18,74.678 +785823,31.372,74.707 +785824,33.659,74.753 +785825,25.746,74.635 +785826,27.858,74.683 +785827,30.053,74.747 +785828,32.341,74.827 +785829,24.424,74.605 +785830,26.537,74.688 +785831,28.732,74.786 +785832,31.021,74.901 +785833,23.104,74.576 +785834,25.217,74.693 +785835,27.411,74.825 +785836,29.699,74.975 +785837,21.786,74.546 +785838,23.897,74.698 +785839,26.09,74.864 +785840,28.375,75.049 +785841,20.469,74.517 +785842,22.578,74.703 +785843,24.768,74.904 +785844,27.05,75.122 +785845,19.154,74.488 +785846,21.259,74.708 +785847,23.445,74.943 +785848,25.722,75.196 +785849,17.84,74.459 +785850,19.941,74.713 +785851,22.122,74.982 +785852,24.394,75.269 +785853,16.528,74.431 +785854,18.624,74.718 +785855,20.798,75.021 +785856,23.063,75.342 +785857,15.218,74.402 +785858,17.306,74.723 +785859,19.473,75.06 +785860,21.73,75.415 +785861,13.909,74.374 +785862,15.99,74.728 +785863,18.148,75.099 +785864,20.396,75.487 +785865,12.602,74.346 +785866,14.674,74.734 +785867,16.823,75.138 +785868,19.061,75.559 +785869,11.296,74.318 +785870,13.358,74.739 +785871,15.496,75.177 +785872,17.723,75.631 +785873,9.992,74.291 +785874,12.043,74.745 +785875,14.17,75.215 +785876,16.384,75.702 +785877,8.6894,74.264 +785878,10.729,74.751 +785879,12.842,75.254 +785880,15.043,75.773 +785881,7.3883,74.237 +785882,9.4145,74.757 +785883,11.515,75.292 +785884,13.7,75.844 +785885,6.0888,74.211 +785886,8.101,74.763 +785887,10.186,75.33 +785888,12.356,75.914 +785889,4.7908,74.185 +785890,6.788,74.769 +785891,8.8572,75.368 +785892,11.01,75.984 +785893,3.4944,74.16 +785894,5.4755,74.776 +785895,7.5277,75.406 +785896,9.6627,76.053 +785897,2.1994,74.135 +785898,4.1634,74.782 +785899,6.1976,75.444 +785900,8.3136,76.122 +785901,0.90594,74.111 +785902,2.8519,74.789 +785903,4.8671,75.482 +785904,6.9629,76.19 +785905,359.61,74.087 +785906,1.5408,74.796 +785907,3.5359,75.519 +785908,5.6106,76.258 +785909,358.32,74.064 +785910,0.23023,74.803 +785911,2.2043,75.556 +785912,4.2568,76.325 +785913,357.03,74.041 +785914,358.92,74.81 +785915,0.87214,75.593 +785916,2.9014,76.391 +785917,355.75,74.019 +785918,357.61,74.818 +785919,359.54,75.63 +785920,1.5445,76.457 +785921,354.46,73.998 +785922,356.3,74.825 +785923,358.21,75.667 +785924,0.18614,76.522 +785925,353.18,73.977 +785926,354.99,74.833 +785927,356.87,75.703 +785928,358.83,76.586 +785929,351.89,73.957 +785930,353.68,74.842 +785931,355.54,75.739 +785932,357.46,76.65 +785933,350.61,73.938 +785934,352.38,74.85 +785935,354.2,75.775 +785936,356.1,76.713 +785937,349.33,73.919 +785938,351.07,74.859 +785939,352.87,75.811 +785940,354.74,76.776 +785941,348.05,73.901 +785942,349.76,74.868 +785943,351.53,75.846 +785944,353.37,76.837 +785945,346.77,73.884 +785946,348.46,74.877 +785947,350.2,75.881 +785948,352.01,76.898 +785949,345.49,73.868 +785950,347.15,74.886 +785951,348.86,75.916 +785952,350.64,76.958 +785953,344.22,73.852 +785954,345.84,74.896 +785955,347.52,75.951 +785956,349.27,77.017 +785957,342.95,73.838 +785958,344.54,74.906 +785959,346.19,75.985 +785960,347.9,77.075 +785961,341.67,73.824 +785962,343.23,74.917 +785963,344.85,76.019 +785964,346.52,77.132 +785965,340.4,73.811 +785966,341.93,74.927 +785967,343.51,76.053 +785968,345.15,77.189 +785969,339.13,73.799 +785970,340.62,74.938 +785971,342.17,76.087 +785972,343.78,77.244 +785973,337.86,73.788 +785974,339.32,74.95 +785975,340.83,76.12 +785976,342.4,77.299 +785977,336.59,73.778 +785978,338.02,74.961 +785979,339.49,76.153 +785980,341.02,77.353 +785981,335.32,73.769 +785982,336.71,74.973 +785983,338.15,76.185 +785984,339.65,77.406 +785985,334.06,73.76 +785986,335.41,74.985 +785987,336.81,76.218 +785988,338.27,77.458 +785989,332.79,73.753 +785990,334.11,74.998 +785991,335.47,76.25 +785992,336.89,77.508 +785993,331.53,73.747 +785994,332.81,75.011 +785995,334.13,76.281 +785996,335.51,77.558 +785997,330.26,73.742 +785998,331.5,75.024 +785999,332.79,76.313 +786000,334.13,77.607 +786001,329,73.738 +786002,330.2,75.038 +786003,331.45,76.344 +786004,332.74,77.655 +786005,327.74,73.735 +786006,328.9,75.052 +786007,330.11,76.374 +786008,331.36,77.702 +786009,326.48,73.733 +786010,327.6,75.066 +786011,328.76,76.404 +786012,329.97,77.747 +786013,325.22,73.732 +786014,326.3,75.081 +786015,327.42,76.434 +786016,328.59,77.792 +786017,323.96,73.732 +786018,325,75.096 +786019,326.08,76.464 +786020,327.2,77.836 +786021,322.7,73.733 +786022,323.7,75.111 +786023,324.74,76.493 +786024,325.82,77.878 +786025,321.45,73.736 +786026,322.4,75.127 +786027,323.39,76.522 +786028,324.43,77.92 +786029,320.19,73.739 +786030,321.1,75.143 +786031,322.05,76.55 +786032,323.04,77.96 +786033,318.93,73.744 +786034,319.8,75.16 +786035,320.7,76.578 +786036,321.65,77.999 +786037,317.68,73.75 +786038,318.5,75.177 +786039,319.36,76.606 +786040,320.26,78.037 +786041,316.42,73.757 +786042,317.2,75.194 +786043,318.02,76.634 +786044,318.87,78.074 +786045,315.17,73.765 +786046,315.9,75.212 +786047,316.67,76.661 +786048,317.48,78.11 +786049,313.92,73.774 +786050,314.6,75.23 +786051,315.33,76.687 +786052,316.09,78.145 +786053,312.66,73.785 +786054,313.31,75.249 +786055,313.98,76.713 +786056,314.7,78.178 +786057,311.41,73.797 +786058,312.01,75.267 +786059,312.64,76.739 +786060,313.3,78.211 +786061,310.16,73.81 +786062,310.71,75.287 +786063,311.29,76.765 +786064,311.91,78.242 +786065,308.91,73.824 +786066,309.41,75.307 +786067,309.95,76.79 +786068,310.52,78.272 +786069,307.66,73.839 +786070,308.11,75.327 +786071,308.6,76.814 +786072,309.12,78.301 +786073,306.41,73.856 +786074,306.81,75.347 +786075,307.25,76.839 +786076,307.73,78.329 +786077,305.16,73.874 +786078,305.52,75.368 +786079,305.91,76.862 +786080,306.34,78.355 +786081,303.91,73.893 +786082,304.22,75.39 +786083,304.56,76.886 +786084,304.94,78.38 +786085,302.66,73.913 +786086,302.92,75.411 +786087,303.22,76.909 +786088,303.55,78.405 +786089,301.41,73.935 +786090,301.62,75.434 +786091,301.87,76.932 +786092,302.15,78.428 +786093,300.16,73.957 +786094,300.32,75.456 +786095,300.52,76.954 +786096,300.76,78.45 +786097,298.91,73.981 +786098,299.03,75.479 +786099,299.18,76.976 +786100,299.36,78.47 +786101,297.66,74.007 +786102,297.73,75.503 +786103,297.83,76.998 +786104,297.97,78.49 +786105,296.41,74.033 +786106,296.43,75.527 +786107,296.49,77.019 +786108,296.57,78.508 +786109,295.16,74.061 +786110,295.13,75.551 +786111,295.14,77.039 +786112,295.18,78.525 +786113,293.91,74.09 +786114,293.84,75.576 +786115,293.79,77.06 +786116,293.78,78.541 +786117,292.66,74.12 +786118,292.54,75.601 +786119,292.45,77.08 +786120,292.39,78.556 +786121,291.41,74.151 +786122,291.24,75.626 +786123,291.1,77.099 +786124,290.99,78.569 +786125,290.16,74.184 +786126,289.94,75.652 +786127,289.75,77.118 +786128,289.6,78.582 +786129,288.91,74.218 +786130,288.64,75.678 +786131,288.41,77.137 +786132,288.21,78.593 +786133,287.66,74.253 +786134,287.35,75.705 +786135,287.06,77.156 +786136,286.81,78.603 +786137,286.41,74.289 +786138,286.05,75.732 +786139,285.72,77.174 +786140,285.42,78.612 +786141,285.16,74.326 +786142,284.75,75.76 +786143,284.37,77.191 +786144,284.02,78.62 +786145,283.91,74.365 +786146,283.45,75.787 +786147,283.02,77.209 +786148,282.63,78.627 +786149,282.66,74.405 +786150,282.15,75.816 +786151,281.68,77.226 +786152,281.24,78.633 +786153,281.41,74.446 +786154,280.85,75.844 +786155,280.33,77.242 +786156,279.85,78.637 +786157,280.16,74.488 +786158,279.55,75.873 +786159,278.99,77.258 +786160,278.46,78.641 +786161,278.91,74.531 +786162,278.25,75.903 +786163,277.64,77.274 +786164,277.06,78.643 +786165,277.65,74.576 +786166,276.96,75.933 +786167,276.3,77.29 +786168,275.67,78.644 +786169,276.4,74.621 +786170,275.66,75.963 +786171,274.95,77.305 +786172,274.28,78.645 +786173,275.15,74.668 +786174,274.36,75.993 +786175,273.61,77.319 +786176,272.89,78.644 +786177,273.89,74.716 +786178,273.06,76.024 +786179,272.26,77.334 +786180,271.51,78.642 +786181,272.64,74.765 +786182,271.76,76.056 +786183,270.92,77.348 +786184,270.12,78.639 +786185,271.38,74.814 +786186,270.46,76.087 +786187,269.57,77.361 +786188,268.73,78.635 +786189,270.12,74.865 +786190,269.15,76.119 +786191,268.23,77.375 +786192,267.34,78.63 +786193,268.87,74.918 +786194,267.85,76.152 +786195,266.88,77.388 +786196,265.96,78.624 +786197,267.61,74.971 +786198,266.55,76.184 +786199,265.54,77.401 +786200,264.57,78.617 +786201,266.35,75.025 +786202,265.25,76.217 +786203,264.2,77.413 +786204,263.19,78.609 +786205,265.09,75.08 +786206,263.95,76.251 +786207,262.85,77.425 +786208,261.8,78.6 +786209,263.83,75.136 +786210,262.65,76.285 +786211,261.51,77.437 +786212,260.42,78.59 +786213,262.57,75.193 +786214,261.34,76.319 +786215,260.17,77.448 +786216,259.04,78.58 +786217,261.31,75.251 +786218,260.04,76.353 +786219,258.83,77.459 +786220,257.66,78.568 +786221,260.04,75.31 +786222,258.74,76.388 +786223,257.48,77.47 +786224,256.28,78.555 +786225,258.78,75.369 +786226,257.43,76.423 +786227,256.14,77.481 +786228,254.9,78.542 +786229,257.51,75.43 +786230,256.13,76.458 +786231,254.8,77.491 +786232,253.52,78.528 +786233,256.25,75.492 +786234,254.83,76.493 +786235,253.46,77.501 +786236,252.14,78.513 +786237,254.98,75.554 +786238,253.52,76.529 +786239,252.12,77.511 +786240,250.77,78.497 +786241,253.71,75.617 +786242,252.22,76.565 +786243,250.78,77.52 +786244,249.39,78.48 +786245,252.44,75.681 +786246,250.91,76.602 +786247,249.44,77.53 +786248,248.02,78.463 +786249,251.17,75.746 +786250,249.61,76.638 +786251,248.1,77.539 +786252,246.65,78.445 +786253,249.9,75.812 +786254,248.3,76.675 +786255,246.76,77.547 +786256,245.28,78.426 +786257,248.62,75.878 +786258,246.99,76.712 +786259,245.42,77.556 +786260,243.91,78.406 +786261,247.35,75.945 +786262,245.69,76.75 +786263,244.08,77.564 +786264,242.54,78.386 +786265,246.07,76.012 +786266,244.38,76.787 +786267,242.74,77.572 +786268,241.17,78.365 +786269,244.8,76.081 +786270,243.07,76.825 +786271,241.41,77.58 +786272,239.8,78.344 +786273,243.52,76.15 +786274,241.76,76.863 +786275,240.07,77.588 +786276,238.44,78.322 +786277,242.24,76.219 +786278,240.45,76.901 +786279,238.73,77.595 +786280,237.07,78.299 +786281,240.96,76.289 +786282,239.14,76.94 +786283,237.4,77.603 +786284,235.71,78.275 +786285,239.67,76.36 +786286,237.83,76.978 +786287,236.06,77.61 +786288,234.35,78.252 +786289,238.39,76.431 +786290,236.52,77.017 +786291,234.72,77.617 +786292,232.99,78.227 +786293,237.1,76.503 +786294,235.21,77.056 +786295,233.39,77.623 +786296,231.63,78.202 +786297,235.82,76.575 +786298,233.9,77.095 +786299,232.05,77.63 +786300,230.27,78.177 +786301,234.53,76.647 +786302,232.59,77.135 +786303,230.72,77.637 +786304,228.92,78.151 +786305,233.24,76.72 +786306,231.28,77.174 +786307,229.39,77.643 +786308,227.56,78.125 +786309,231.95,76.794 +786310,229.96,77.214 +786311,228.05,77.649 +786312,226.21,78.098 +786313,230.65,76.868 +786314,228.65,77.253 +786315,226.72,77.655 +786316,224.86,78.071 +786317,229.36,76.942 +786318,227.34,77.293 +786319,225.39,77.661 +786320,223.51,78.044 +786321,228.06,77.016 +786322,226.02,77.333 +786323,224.06,77.667 +786324,222.16,78.016 +786325,226.76,77.091 +786326,224.71,77.373 +786327,222.72,77.673 +786328,220.81,77.988 +786329,225.47,77.166 +786330,223.39,77.413 +786331,221.39,77.679 +786332,219.46,77.96 +786333,224.16,77.241 +786334,222.07,77.453 +786335,220.06,77.685 +786336,218.12,77.932 +786337,222.86,77.317 +786338,220.76,77.494 +786339,218.73,77.69 +786340,216.78,77.903 +786341,221.56,77.392 +786342,219.44,77.534 +786343,217.4,77.696 +786344,215.43,77.874 +786345,220.25,77.468 +786346,218.12,77.575 +786347,216.07,77.701 +786348,214.09,77.845 +786349,218.94,77.544 +786350,216.81,77.615 +786351,214.74,77.707 +786352,212.75,77.816 +786353,217.64,77.619 +786354,215.49,77.655 +786355,213.42,77.712 +786356,211.42,77.787 +786357,216.32,77.695 +786358,214.17,77.696 +786359,212.09,77.718 +786360,210.08,77.757 +786361,215.01,77.771 +786362,212.85,77.737 +786363,210.76,77.723 +786364,208.75,77.728 +786365,213.7,77.847 +786366,211.53,77.777 +786367,209.44,77.728 +786368,207.42,77.699 +786369,212.38,77.923 +786370,210.21,77.818 +786371,208.11,77.734 +786372,206.08,77.669 +786373,211.06,77.999 +786374,208.88,77.858 +786375,206.78,77.739 +786376,204.76,77.64 +786377,209.75,78.075 +786378,207.56,77.899 +786379,205.46,77.745 +786380,203.43,77.611 +786381,208.42,78.151 +786382,206.24,77.939 +786383,204.13,77.75 +786384,202.1,77.581 +786385,207.1,78.226 +786386,204.92,77.98 +786387,202.81,77.756 +786388,200.78,77.552 +786389,205.78,78.301 +786390,203.59,78.02 +786391,201.49,77.762 +786392,199.45,77.523 +786393,204.45,78.377 +786394,202.27,78.06 +786395,200.16,77.767 +786396,198.13,77.495 +786397,203.12,78.452 +786398,200.94,78.101 +786399,198.84,77.773 +786400,196.81,77.466 +786401,201.8,78.526 +786402,199.62,78.141 +786403,197.52,77.779 +786404,195.49,77.438 +786405,200.46,78.6 +786406,198.29,78.181 +786407,196.2,77.785 +786408,194.18,77.41 +786409,199.13,78.675 +786410,196.96,78.221 +786411,194.88,77.791 +786412,192.86,77.382 +786413,197.8,78.748 +786414,195.64,78.261 +786415,193.56,77.797 +786416,191.55,77.354 +786417,196.46,78.822 +786418,194.31,78.301 +786419,192.24,77.803 +786420,190.23,77.327 +786421,195.12,78.894 +786422,192.98,78.34 +786423,190.92,77.81 +786424,188.92,77.3 +786425,193.79,78.967 +786426,191.65,78.38 +786427,189.6,77.816 +786428,187.61,77.274 +786429,192.44,79.039 +786430,190.32,78.419 +786431,188.28,77.823 +786432,186.3,77.248 +786433,191.1,79.111 +786434,188.99,78.459 +786435,186.96,77.83 +786436,185,77.222 +786437,189.76,79.182 +786438,187.66,78.498 +786439,185.64,77.837 +786440,183.69,77.197 +786441,188.41,79.252 +786442,186.33,78.537 +786443,184.33,77.844 +786444,182.39,77.173 +786445,187.07,79.322 +786446,185,78.575 +786447,183.01,77.852 +786448,181.09,77.149 +786449,185.72,79.392 +786450,183.67,78.614 +786451,181.69,77.859 +786452,179.79,77.125 +786453,184.37,79.46 +786454,182.33,78.652 +786455,180.38,77.867 +786456,178.49,77.102 +786457,183.01,79.529 +786458,181,78.691 +786459,179.06,77.875 +786460,177.19,77.08 +786461,181.66,79.596 +786462,179.67,78.728 +786463,177.75,77.883 +786464,175.89,77.058 +786465,180.31,79.663 +786466,178.33,78.766 +786467,176.43,77.892 +786468,174.6,77.037 +786469,178.95,79.729 +786470,177,78.804 +786471,175.12,77.9 +786472,173.3,77.016 +786473,177.59,79.795 +786474,175.66,78.841 +786475,173.8,77.909 +786476,172.01,76.997 +786477,176.23,79.859 +786478,174.33,78.878 +786479,172.49,77.918 +786480,170.72,76.978 +786481,174.87,79.923 +786482,172.99,78.915 +786483,171.18,77.928 +786484,169.43,76.959 +786485,173.51,79.986 +786486,171.65,78.952 +786487,169.87,77.937 +786488,168.14,76.942 +786489,172.15,80.0487 +786490,170.32,78.988 +786491,168.56,77.947 +786492,166.86,76.925 +786493,170.78,80.1102 +786494,168.98,79.024 +786495,167.24,77.957 +786496,165.57,76.909 +786497,169.41,80.1709 +786498,167.64,79.06 +786499,165.93,77.968 +786500,164.28,76.894 +786501,168.05,80.2306 +786502,166.3,79.095 +786503,164.62,77.979 +786504,163,76.88 +786505,166.68,80.2895 +786506,164.96,79.13 +786507,163.31,77.99 +786508,161.72,76.867 +786509,165.31,80.3475 +786510,163.62,79.165 +786511,162,78.001 +786512,160.44,76.854 +786513,163.94,80.4046 +786514,162.28,79.2 +786515,160.69,78.013 +786516,159.16,76.843 +786517,162.56,80.4607 +786518,160.94,79.234 +786519,159.38,78.025 +786520,157.88,76.832 +786521,161.19,80.5159 +786522,159.6,79.268 +786523,158.07,78.037 +786524,156.6,76.822 +786525,159.81,80.5701 +786526,158.26,79.302 +786527,156.77,78.05 +786528,155.33,76.814 +786529,158.44,80.6233 +786530,156.92,79.335 +786531,155.46,78.063 +786532,154.05,76.806 +786533,157.06,80.6755 +786534,155.58,79.368 +786535,154.15,78.076 +786536,152.78,76.799 +786537,155.68,80.7266 +786538,154.23,79.401 +786539,152.84,78.09 +786540,151.5,76.794 +786541,154.3,80.7768 +786542,152.89,79.433 +786543,151.54,78.104 +786544,150.23,76.789 +786545,152.92,80.8258 +786546,151.55,79.465 +786547,150.23,78.119 +786548,148.96,76.785 +786549,151.54,80.8738 +786550,150.2,79.497 +786551,148.92,78.133 +786552,147.69,76.783 +786553,150.16,80.9208 +786554,148.86,79.528 +786555,147.62,78.149 +786556,146.42,76.781 +786557,148.78,80.9666 +786558,147.52,79.559 +786559,146.31,78.164 +786560,145.15,76.781 +786561,147.39,81.0114 +786562,146.17,79.59 +786563,145.01,78.18 +786564,143.88,76.782 +786565,146.01,81.055 +786566,144.83,79.62 +786567,143.7,78.196 +786568,142.62,76.784 +786569,144.62,81.0975 +786570,143.48,79.65 +786571,142.4,78.213 +786572,141.35,76.787 +786573,143.23,81.1389 +786574,142.14,79.679 +786575,141.09,78.23 +786576,140.09,76.791 +786577,141.85,81.1791 +786578,140.79,79.708 +786579,139.79,78.247 +786580,138.82,76.796 +786581,140.46,81.2182 +786582,139.45,79.737 +786583,138.48,78.265 +786584,137.56,76.803 +786585,139.07,81.2561 +786586,138.1,79.765 +786587,137.18,78.283 +786588,136.3,76.811 +786589,137.68,81.2928 +786590,136.75,79.793 +786591,135.87,78.302 +786592,135.03,76.82 +786593,136.29,81.3284 +786594,135.41,79.821 +786595,134.57,78.321 +786596,133.77,76.83 +786597,134.9,81.3628 +786598,134.06,79.848 +786599,133.27,78.34 +786600,132.51,76.841 +786601,133.51,81.396 +786602,132.71,79.875 +786603,131.96,78.36 +786604,131.25,76.854 +786605,132.11,81.4281 +786606,131.37,79.901 +786607,130.66,78.381 +786608,129.99,76.867 +786609,130.72,81.4589 +786610,130.02,79.927 +786611,129.36,78.401 +786612,128.73,76.882 +786613,129.33,81.4885 +786614,128.67,79.952 +786615,128.05,78.422 +786616,127.47,76.899 +786617,127.94,81.5169 +786618,127.32,79.978 +786619,126.75,78.444 +786620,126.21,76.916 +786621,126.54,81.5442 +786622,125.97,80.0024 +786623,125.45,78.466 +786624,124.95,76.935 +786625,125.15,81.5702 +786626,124.63,80.0267 +786627,124.14,78.488 +786628,123.7,76.955 +786629,123.75,81.595 +786630,123.28,80.0507 +786631,122.84,78.511 +786632,122.44,76.976 +786633,122.36,81.6186 +786634,121.93,80.0743 +786635,121.54,78.534 +786636,121.18,76.999 +786637,120.96,81.641 +786638,120.58,80.0974 +786639,120.24,78.558 +786640,119.92,77.022 +786641,119.57,81.6622 +786642,119.23,80.1202 +786643,118.93,78.582 +786644,118.67,77.047 +786645,118.17,81.6821 +786646,117.88,80.1425 +786647,117.63,78.606 +786648,117.41,77.074 +786649,116.78,81.7009 +786650,116.54,80.1645 +786651,116.33,78.631 +786652,116.15,77.101 +786653,115.38,81.7185 +786654,115.19,80.186 +786655,115.03,78.656 +786656,114.9,77.13 +786657,113.99,81.7348 +786658,113.84,80.2071 +786659,113.72,78.682 +786660,113.64,77.16 +786661,112.59,81.75 +786662,112.49,80.2279 +786663,112.42,78.708 +786664,112.39,77.191 +786665,111.2,81.764 +786666,111.14,80.2482 +786667,111.12,78.734 +786668,111.13,77.224 +786669,109.8,81.7768 +786670,109.79,80.2682 +786671,109.82,78.761 +786672,109.87,77.258 +786673,108.4,81.7884 +786674,108.44,80.2877 +786675,108.51,78.789 +786676,108.62,77.293 +786677,107.01,81.7988 +786678,107.09,80.3069 +786679,107.21,78.816 +786680,107.36,77.329 +786681,105.61,81.808 +786682,105.75,80.3257 +786683,105.91,78.845 +786684,106.1,77.366 +786685,104.22,81.8161 +786686,104.4,80.344 +786687,104.61,78.873 +786688,104.85,77.405 +786689,102.82,81.8231 +786690,103.05,80.362 +786691,103.3,78.902 +786692,103.59,77.445 +786693,101.43,81.8289 +786694,101.7,80.3796 +786695,102,78.932 +786696,102.33,77.486 +786697,100.04,81.8335 +786698,100.35,80.3969 +786699,100.7,78.961 +786700,101.07,77.528 +786701,98.641,81.8371 +786702,99.002,80.4137 +786703,99.393,78.992 +786704,99.817,77.572 +786705,97.248,81.8395 +786706,97.653,80.4302 +786707,98.09,79.022 +786708,98.559,77.617 +786709,95.855,81.8408 +786710,96.305,80.4463 +786711,96.787,79.053 +786712,97.3,77.663 +786713,94.462,81.841 +786714,94.957,80.462 +786715,95.483,79.084 +786716,96.041,77.71 +786717,93.07,81.8401 +786718,93.608,80.4774 +786719,94.179,79.116 +786720,94.782,77.758 +786721,91.678,81.8382 +786722,92.26,80.4924 +786723,92.875,79.148 +786724,93.522,77.807 +786725,90.287,81.8352 +786726,90.913,80.5071 +786727,91.571,79.181 +786728,92.262,77.857 +786729,88.896,81.8312 +786730,89.565,80.5214 +786731,90.266,79.213 +786732,91.001,77.909 +786733,87.506,81.8261 +786734,88.217,80.5354 +786735,88.962,79.247 +786736,89.74,77.962 +786737,86.116,81.82 +786738,86.87,80.549 +786739,87.657,79.28 +786740,88.478,78.015 +786741,84.727,81.8129 +786742,85.523,80.5623 +786743,86.352,79.314 +786744,87.215,78.07 +786745,83.339,81.8048 +786746,84.176,80.5753 +786747,85.046,79.348 +786748,85.951,78.126 +786749,81.952,81.7957 +786750,82.829,80.5879 +786751,83.741,79.383 +786752,84.687,78.183 +786753,80.565,81.7857 +786754,81.483,80.6002 +786755,82.435,79.418 +786756,83.423,78.24 +786757,79.179,81.7748 +786758,80.136,80.6122 +786759,81.128,79.453 +786760,82.157,78.299 +786761,77.794,81.7629 +786762,78.79,80.6239 +786763,79.822,79.489 +786764,80.891,78.359 +786765,76.41,81.7502 +786766,77.444,80.6353 +786767,78.515,79.525 +786768,79.623,78.42 +786769,75.026,81.7365 +786770,76.099,80.6464 +786771,77.208,79.561 +786772,78.355,78.481 +786773,73.644,81.722 +786774,74.754,80.6572 +786775,75.901,79.597 +786776,77.086,78.544 +786777,72.262,81.7066 +786778,73.409,80.6678 +786779,74.593,79.634 +786780,75.816,78.607 +786781,70.881,81.6905 +786782,72.064,80.678 +786783,73.285,79.671 +786784,74.545,78.672 +786785,69.502,81.6735 +786786,70.719,80.688 +786787,71.976,79.708 +786788,73.274,78.737 +786789,68.123,81.6557 +786790,69.375,80.6977 +786791,70.667,79.746 +786792,72.001,78.803 +786793,66.745,81.6372 +786794,68.031,80.7072 +786795,69.358,79.784 +786796,70.727,78.87 +786797,65.368,81.6179 +786798,66.688,80.7164 +786799,68.049,79.822 +786800,69.452,78.937 +786801,63.993,81.5979 +786802,65.345,80.7254 +786803,66.739,79.861 +786804,68.176,79.006 +786805,62.618,81.5772 +786806,64.002,80.7342 +786807,65.428,79.899 +786808,66.899,79.075 +786809,61.245,81.5558 +786810,62.659,80.7427 +786811,64.117,79.938 +786812,65.62,79.145 +786813,59.872,81.5338 +786814,61.317,80.751 +786815,62.806,79.977 +786816,64.341,79.215 +786817,58.501,81.5111 +786818,59.976,80.7591 +786819,61.495,80.0167 +786820,63.06,79.286 +786821,57.131,81.4879 +786822,58.634,80.767 +786823,60.183,80.0563 +786824,61.778,79.358 +786825,55.762,81.464 +786826,57.293,80.7747 +786827,58.87,80.0961 +786828,60.495,79.43 +786829,54.394,81.4396 +786830,55.953,80.7822 +786831,57.557,80.1361 +786832,59.211,79.503 +786833,53.028,81.4147 +786834,54.612,80.7896 +786835,56.244,80.1762 +786836,57.925,79.577 +786837,51.663,81.3892 +786838,53.272,80.7968 +786839,54.93,80.2166 +786840,56.638,79.651 +786841,50.299,81.3633 +786842,51.933,80.8038 +786843,53.616,80.2571 +786844,55.35,79.725 +786845,48.936,81.3369 +786846,50.594,80.8107 +786847,52.301,80.2977 +786848,54.061,79.8 +786849,47.575,81.3101 +786850,49.255,80.8174 +786851,50.986,80.3386 +786852,52.77,79.876 +786853,46.215,81.2829 +786854,47.917,80.824 +786855,49.67,80.3795 +786856,51.477,79.952 +786857,44.856,81.2553 +786858,46.579,80.8305 +786859,48.354,80.4206 +786860,50.184,80.0281 +786861,43.498,81.2273 +786862,45.242,80.8369 +786863,47.037,80.4618 +786864,48.888,80.1047 +786865,42.142,81.199 +786866,43.905,80.8431 +786867,45.72,80.5032 +786868,47.592,80.1817 +786869,40.788,81.1704 +786870,42.568,80.8493 +786871,44.402,80.5446 +786872,46.294,80.2589 +786873,39.434,81.1416 +786874,41.232,80.8554 +786875,43.084,80.5861 +786876,44.994,80.3364 +786877,38.082,81.1125 +786878,39.897,80.8614 +786879,41.766,80.6278 +786880,43.693,80.4142 +786881,36.732,81.0831 +786882,38.562,80.8673 +786883,40.446,80.6694 +786884,42.391,80.4922 +786885,35.383,81.0536 +786886,37.227,80.8732 +786887,39.127,80.7112 +786888,41.087,80.5704 +786889,34.035,81.0239 +786890,35.893,80.879 +786891,37.806,80.753 +786892,39.781,80.6487 +786893,32.689,80.9941 +786894,34.559,80.8848 +786895,36.486,80.7949 +786896,38.474,80.7272 +786897,31.344,80.9642 +786898,33.225,80.8905 +786899,35.164,80.8368 +786900,37.166,80.8058 +786901,30,80.9341 +786902,31.893,80.8962 +786903,33.842,80.8787 +786904,35.856,80.8844 +786905,28.659,80.9041 +786906,30.56,80.9019 +786907,32.52,80.9207 +786908,34.544,80.963 +786909,27.318,80.874 +786910,29.228,80.9077 +786911,31.197,80.9626 +786912,33.231,81.0417 +786913,25.979,80.8439 +786914,27.897,80.9134 +786915,29.874,81.0046 +786916,31.916,81.1204 +786917,24.641,80.8138 +786918,26.566,80.9191 +786919,28.55,81.0465 +786920,30.6,81.199 +786921,23.305,80.7838 +786922,25.235,80.9249 +786923,27.225,81.0885 +786924,29.282,81.2775 +786925,21.97,80.7539 +786926,23.905,80.9307 +786927,25.9,81.1304 +786928,27.962,81.3559 +786929,20.637,80.7241 +786930,22.576,80.9365 +786931,24.574,81.1722 +786932,26.641,81.4341 +786933,19.306,80.6944 +786934,21.246,80.9424 +786935,23.248,81.214 +786936,25.318,81.5122 +786937,17.975,80.6649 +786938,19.918,80.9483 +786939,21.921,81.2558 +786940,23.994,81.5901 +786941,16.646,80.6356 +786942,18.59,80.9544 +786943,20.594,81.2974 +786944,22.668,81.6678 +786945,15.319,80.6065 +786946,17.262,80.9605 +786947,19.266,81.339 +786948,21.34,81.7452 +786949,13.993,80.5777 +786950,15.935,80.9667 +786951,17.938,81.3805 +786952,20.011,81.8223 +786953,12.669,80.5491 +786954,14.608,80.973 +786955,16.609,81.422 +786956,18.681,81.8991 +786957,11.346,80.5209 +786958,13.282,80.9794 +786959,15.28,81.4633 +786960,17.348,81.9755 +786961,10.024,80.493 +786962,11.956,80.9859 +786963,13.95,81.5044 +786964,16.014,82.0516 +786965,8.7045,80.4655 +786966,10.631,80.9926 +786967,12.619,81.5455 +786968,14.679,82.1273 +786969,7.3859,80.4383 +786970,9.3057,80.9994 +786971,11.288,81.5864 +786972,13.342,82.2025 +786973,6.0688,80.4116 +786974,7.9813,81.0063 +786975,9.9563,81.6272 +786976,12.003,82.2773 +786977,4.7531,80.3853 +786978,6.6574,81.0134 +786979,8.6241,81.6678 +786980,10.663,82.3516 +786981,3.4388,80.3595 +786982,5.3339,81.0207 +786983,7.2914,81.7083 +786984,9.3208,82.4254 +786985,2.126,80.3342 +786986,4.0109,81.0281 +786987,5.9582,81.7486 +786988,7.9774,82.4986 +786989,0.81454,80.3094 +786990,2.6884,81.0358 +786991,4.6244,81.7887 +786992,6.6325,82.5713 +786993,359.5,80.2852 +786994,1.3663,81.0436 +786995,3.2902,81.8286 +786996,5.286,82.6434 +786997,358.2,80.2615 +786998,0.044625,81.0516 +786999,1.9553,81.8684 +787000,3.938,82.7149 +787001,356.89,80.2384 +787002,358.72,81.0598 +787003,0.62001,81.9079 +787004,2.5884,82.7857 +787005,355.58,80.216 +787006,357.4,81.0682 +787007,359.28,81.9472 +787008,1.2374,82.8558 +787009,354.28,80.1942 +787010,356.08,81.0769 +787011,357.95,81.9863 +787012,359.88,82.9253 +787013,352.98,80.1731 +787014,354.76,81.0858 +787015,356.61,82.0251 +787016,358.53,82.994 +787017,351.67,80.1527 +787018,353.44,81.0949 +787019,355.27,82.0637 +787020,357.18,83.062 +787021,350.37,80.133 +787022,352.12,81.1043 +787023,353.94,82.1021 +787024,355.82,83.1293 +787025,349.07,80.114 +787026,350.81,81.1139 +787027,352.6,82.1402 +787028,354.46,83.1957 +787029,347.78,80.0959 +787030,349.49,81.1238 +787031,351.26,82.178 +787032,353.1,83.2613 +787033,346.48,80.0785 +787034,348.17,81.134 +787035,349.92,82.2156 +787036,351.74,83.3261 +787037,345.18,80.0619 +787038,346.85,81.1445 +787039,348.58,82.2529 +787040,350.38,83.3901 +787041,343.89,80.0462 +787042,345.53,81.1552 +787043,347.24,82.2899 +787044,349.01,83.4531 +787045,342.6,80.0314 +787046,344.22,81.1662 +787047,345.9,82.3266 +787048,347.65,83.5153 +787049,341.3,80.0174 +787050,342.9,81.1776 +787051,344.56,82.363 +787052,346.28,83.5765 +787053,340.01,80.0043 +787054,341.59,81.1892 +787055,343.22,82.3992 +787056,344.91,83.6368 +787057,338.72,79.992 +787058,340.27,81.2012 +787059,341.87,82.435 +787060,343.54,83.6962 +787061,337.44,79.981 +787062,338.96,81.2134 +787063,340.53,82.4704 +787064,342.17,83.7545 +787065,336.15,79.971 +787066,337.64,81.226 +787067,339.19,82.5056 +787068,340.8,83.8119 +787069,334.86,79.961 +787070,336.33,81.239 +787071,337.84,82.5404 +787072,339.43,83.8682 +787073,333.58,79.953 +787074,335.01,81.2522 +787075,336.5,82.5749 +787076,338.05,83.9235 +787077,332.29,79.946 +787078,333.7,81.2658 +787079,335.16,82.609 +787080,336.68,83.9778 +787081,331.01,79.94 +787082,332.38,81.2798 +787083,333.81,82.6428 +787084,335.3,84.031 +787085,329.73,79.935 +787086,331.07,81.2941 +787087,332.47,82.6763 +787088,333.92,84.0831 +787089,328.45,79.931 +787090,329.76,81.3088 +787091,331.12,82.7094 +787092,332.55,84.1342 +787093,327.17,79.928 +787094,328.45,81.3239 +787095,329.78,82.7421 +787096,331.17,84.1841 +787097,325.89,79.926 +787098,327.13,81.3393 +787099,328.43,82.7744 +787100,329.79,84.2329 +787101,324.61,79.925 +787102,325.82,81.3551 +787103,327.08,82.8064 +787104,328.4,84.2806 +787105,323.33,79.925 +787106,324.51,81.3712 +787107,325.74,82.838 +787108,327.02,84.3271 +787109,322.06,79.927 +787110,323.2,81.3878 +787111,324.39,82.8692 +787112,325.64,84.3725 +787113,320.78,79.929 +787114,321.89,81.4048 +787115,323.04,82.9 +787116,324.25,84.4166 +787117,319.51,79.933 +787118,320.58,81.4221 +787119,321.69,82.9304 +787120,322.87,84.4596 +787121,318.23,79.938 +787122,319.27,81.4398 +787123,320.35,82.9605 +787124,321.48,84.5015 +787125,316.96,79.944 +787126,317.96,81.458 +787127,319,82.9901 +787128,320.09,84.5421 +787129,315.69,79.952 +787130,316.65,81.4765 +787131,317.65,83.0194 +787132,318.71,84.5815 +787133,314.42,79.96 +787134,315.34,81.4955 +787135,316.3,83.0482 +787136,317.32,84.6197 +787137,313.14,79.97 +787138,314.03,81.5148 +787139,314.95,83.0766 +787140,315.93,84.6566 +787141,311.87,79.981 +787142,312.72,81.5346 +787143,313.6,83.1046 +787144,314.54,84.6924 +787145,310.6,79.994 +787146,311.41,81.5548 +787147,312.25,83.1322 +787148,313.15,84.7269 +787149,309.33,80.0072 +787150,310.1,81.5754 +787151,310.9,83.1594 +787152,311.76,84.7601 +787153,308.07,80.022 +787154,308.79,81.5964 +787155,309.55,83.1862 +787156,310.36,84.7921 +787157,306.8,80.0381 +787158,307.48,81.6179 +787159,308.2,83.2126 +787160,308.97,84.8229 +787161,305.53,80.0555 +787162,306.17,81.6397 +787163,306.85,83.2385 +787164,307.58,84.8523 +787165,304.26,80.0741 +787166,304.86,81.662 +787167,305.5,83.264 +787168,306.18,84.8806 +787169,302.99,80.094 +787170,303.55,81.6847 +787171,304.15,83.2891 +787172,304.79,84.9075 +787173,301.73,80.1152 +787174,302.24,81.7079 +787175,302.8,83.3138 +787176,303.4,84.9333 +787177,300.46,80.1376 +787178,300.94,81.7314 +787179,301.45,83.3381 +787180,302,84.9577 +787181,299.2,80.1614 +787182,299.63,81.7554 +787183,300.1,83.3619 +787184,300.61,84.9809 +787185,297.93,80.1864 +787186,298.32,81.7798 +787187,298.74,83.3853 +787188,299.21,85.0028 +787189,296.66,80.2127 +787190,297.01,81.8047 +787191,297.39,83.4083 +787192,297.81,85.0234 +787193,295.4,80.2403 +787194,295.7,81.83 +787195,296.04,83.4309 +787196,296.42,85.0428 +787197,294.13,80.2692 +787198,294.39,81.8557 +787199,294.69,83.453 +787200,295.02,85.061 +787201,292.87,80.2994 +787202,293.09,81.8818 +787203,293.34,83.4747 +787204,293.63,85.0779 +787205,291.61,80.3309 +787206,291.78,81.9083 +787207,291.99,83.496 +787208,292.23,85.0935 +787209,290.34,80.3636 +787210,290.47,81.9353 +787211,290.63,83.5169 +787212,290.83,85.1079 +787213,289.08,80.3976 +787214,289.16,81.9627 +787215,289.28,83.5374 +787216,289.43,85.121 +787217,287.81,80.4329 +787218,287.85,81.9905 +787219,287.93,83.5574 +787220,288.04,85.1329 +787221,286.55,80.4695 +787222,286.55,82.0188 +787223,286.58,83.5771 +787224,286.64,85.1436 +787225,285.28,80.5073 +787226,285.24,82.0474 +787227,285.22,83.5963 +787228,285.24,85.153 +787229,284.02,80.5464 +787230,283.93,82.0765 +787231,283.87,83.6151 +787232,283.85,85.1612 +787233,282.75,80.5868 +787234,282.62,82.106 +787235,282.52,83.6335 +787236,282.45,85.1683 +787237,281.49,80.6283 +787238,281.31,82.1359 +787239,281.17,83.6515 +787240,281.05,85.1741 +787241,280.22,80.6712 +787242,280,82.1662 +787243,279.82,83.6691 +787244,279.66,85.1787 +787245,278.96,80.7152 +787246,278.7,82.1969 +787247,278.46,83.6863 +787248,278.26,85.1822 +787249,277.69,80.7605 +787250,277.39,82.228 +787251,277.11,83.7031 +787252,276.87,85.1844 +787253,276.43,80.8069 +787254,276.08,82.2595 +787255,275.76,83.7195 +787256,275.47,85.1855 +787257,275.16,80.8546 +787258,274.77,82.2914 +787259,274.41,83.7355 +787260,274.07,85.1855 +787261,273.89,80.9034 +787262,273.46,82.3237 +787263,273.05,83.7511 +787264,272.68,85.1843 +787265,272.63,80.9535 +787266,272.15,82.3564 +787267,271.7,83.7664 +787268,271.28,85.182 +787269,271.36,81.0046 +787270,270.84,82.3895 +787271,270.35,83.7813 +787272,269.89,85.1786 +787273,270.09,81.057 +787274,269.53,82.4229 +787275,269,83.7958 +787276,268.5,85.1741 +787277,268.82,81.1104 +787278,268.22,82.4567 +787279,267.65,83.8099 +787280,267.1,85.1686 +787281,267.55,81.165 +787282,266.91,82.4909 +787283,266.3,83.8237 +787284,265.71,85.1619 +787285,266.28,81.2207 +787286,265.6,82.5254 +787287,264.95,83.8371 +787288,264.32,85.1542 +787289,265.01,81.2774 +787290,264.29,82.5603 +787291,263.59,83.8502 +787292,262.93,85.1455 +787293,263.74,81.3352 +787294,262.98,82.5955 +787295,262.24,83.8629 +787296,261.53,85.1357 +787297,262.47,81.3941 +787298,261.67,82.6311 +787299,260.89,83.8753 +787300,260.14,85.125 +787301,261.2,81.454 +787302,260.36,82.667 +787303,259.54,83.8873 +787304,258.75,85.1132 +787305,259.93,81.515 +787306,259.05,82.7033 +787307,258.19,83.8991 +787308,257.36,85.1005 +787309,258.66,81.5769 +787310,257.73,82.7399 +787311,256.84,83.9105 +787312,255.98,85.0869 +787313,257.38,81.6398 +787314,256.42,82.7768 +787315,255.49,83.9215 +787316,254.59,85.0723 +787317,256.11,81.7036 +787318,255.11,82.814 +787319,254.14,83.9323 +787320,253.2,85.0568 +787321,254.83,81.7684 +787322,253.8,82.8515 +787323,252.79,83.9428 +787324,251.81,85.0404 +787325,253.56,81.8342 +787326,252.49,82.8893 +787327,251.44,83.9529 +787328,250.43,85.0232 +787329,252.28,81.9008 +787330,251.17,82.9275 +787331,250.09,83.9628 +787332,249.04,85.0051 +787333,251,81.9682 +787334,249.86,82.9659 +787335,248.74,83.9724 +787336,247.66,84.9861 +787337,249.72,82.0366 +787338,248.54,83.0045 +787339,247.4,83.9818 +787340,246.28,84.9664 +787341,248.44,82.1057 +787342,247.23,83.0435 +787343,246.05,83.9908 +787344,244.9,84.9459 +787345,247.16,82.1757 +787346,245.92,83.0827 +787347,244.7,83.9996 +787348,243.51,84.9246 +787349,245.88,82.2464 +787350,244.6,83.1221 +787351,243.35,84.0082 +787352,242.13,84.9026 +787353,244.6,82.3179 +787354,243.29,83.1618 +787355,242.01,84.0165 +787356,240.76,84.8798 +787357,243.31,82.3901 +787358,241.97,83.2018 +787359,240.66,84.0245 +787360,239.38,84.8564 +787361,242.03,82.463 +787362,240.65,83.2419 +787363,239.31,84.0324 +787364,238,84.8323 +787365,240.74,82.5366 +787366,239.34,83.2823 +787367,237.96,84.04 +787368,236.62,84.8076 +787369,239.46,82.6109 +787370,238.02,83.3229 +787371,236.62,84.0474 +787372,235.25,84.7822 +787373,238.17,82.6857 +787374,236.7,83.3637 +787375,235.27,84.0546 +787376,233.88,84.7563 +787377,236.88,82.7612 +787378,235.39,83.4047 +787379,233.93,84.0616 +787380,232.5,84.7298 +787381,235.59,82.8373 +787382,234.07,83.4459 +787383,232.58,84.0684 +787384,231.13,84.7027 +787385,234.3,82.9138 +787386,232.75,83.4873 +787387,231.24,84.0751 +787388,229.76,84.6751 +787389,233.01,82.9909 +787390,231.43,83.5288 +787391,229.89,84.0815 +787392,228.39,84.6471 +787393,231.71,83.0685 +787394,230.11,83.5705 +787395,228.55,84.0878 +787396,227.02,84.6185 +787397,230.42,83.1466 +787398,228.79,83.6123 +787399,227.21,84.094 +787400,225.66,84.5895 +787401,229.12,83.225 +787402,227.47,83.6543 +787403,225.86,84.1 +787404,224.29,84.5602 +787405,227.82,83.3039 +787406,226.15,83.6964 +787407,224.52,84.1059 +787408,222.93,84.5304 +787409,226.52,83.3831 +787410,224.83,83.7386 +787411,223.18,84.1117 +787412,221.56,84.5002 +787413,225.22,83.4627 +787414,223.51,83.7809 +787415,221.84,84.1174 +787416,220.2,84.4698 +787417,223.92,83.5426 +787418,222.19,83.8234 +787419,220.49,84.1229 +787420,218.84,84.439 +787421,222.62,83.6228 +787422,220.86,83.8659 +787423,219.15,84.1284 +787424,217.48,84.408 +787425,221.31,83.7032 +787426,219.54,83.9085 +787427,217.81,84.1337 +787428,216.12,84.3767 +787429,220.01,83.7838 +787430,218.22,83.9512 +787431,216.47,84.139 +787432,214.77,84.3452 +787433,218.7,83.8647 +787434,216.89,83.9939 +787435,215.13,84.1443 +787436,213.41,84.3135 +787437,217.39,83.9457 +787438,215.57,84.0367 +787439,213.79,84.1494 +787440,212.06,84.2816 +787441,216.08,84.0268 +787442,214.24,84.0795 +787443,212.45,84.1546 +787444,210.7,84.2496 +787445,214.77,84.108 +787446,212.92,84.1223 +787447,211.11,84.1596 +787448,209.35,84.2175 +787449,213.46,84.1893 +787450,211.59,84.1652 +787451,209.78,84.1647 +787452,208,84.1853 +787453,212.14,84.2706 +787454,210.27,84.2081 +787455,208.44,84.1698 +787456,206.65,84.1531 +787457,210.83,84.3519 +787458,208.94,84.251 +787459,207.1,84.1748 +787460,205.31,84.1208 +787461,209.51,84.4332 +787462,207.61,84.2938 +787463,205.76,84.1798 +787464,203.96,84.0886 +787465,208.19,84.5145 +787466,206.28,84.3367 +787467,204.43,84.1849 +787468,202.62,84.0564 +787469,206.87,84.5956 +787470,204.95,84.3795 +787471,203.09,84.1899 +787472,201.27,84.0243 +787473,205.55,84.6767 +787474,203.63,84.4223 +787475,201.75,84.195 +787476,199.93,83.9922 +787477,204.22,84.7576 +787478,202.3,84.465 +787479,200.42,84.2002 +787480,198.59,83.9603 +787481,202.9,84.8383 +787482,200.97,84.5077 +787483,199.08,84.2054 +787484,197.25,83.9285 +787485,201.57,84.9188 +787486,199.63,84.5503 +787487,197.75,84.2106 +787488,195.91,83.8969 +787489,200.25,84.999 +787490,198.3,84.5928 +787491,196.42,84.2159 +787492,194.58,83.8655 +787493,198.92,85.079 +787494,196.97,84.6352 +787495,195.08,84.2213 +787496,193.24,83.8344 +787497,197.59,85.1586 +787498,195.64,84.6775 +787499,193.75,84.2268 +787500,191.91,83.8035 +787501,196.25,85.238 +787502,194.31,84.7197 +787503,192.42,84.2324 +787504,190.58,83.7729 +787505,194.92,85.3169 +787506,192.97,84.7618 +787507,191.08,84.2381 +787508,189.25,83.7427 +787509,193.58,85.3955 +787510,191.64,84.8038 +787511,189.75,84.2439 +787512,187.92,83.7128 +787513,192.25,85.4737 +787514,190.31,84.8456 +787515,188.42,84.2499 +787516,186.59,83.6832 +787517,190.91,85.5514 +787518,188.97,84.8872 +787519,187.09,84.2559 +787520,185.26,83.6541 +787521,189.57,85.6286 +787522,187.63,84.9288 +787523,185.76,84.2622 +787524,183.94,83.6254 +787525,188.23,85.7053 +787526,186.3,84.9701 +787527,184.43,84.2685 +787528,182.61,83.5972 +787529,186.88,85.7814 +787530,184.96,85.0113 +787531,183.1,84.2751 +787532,181.29,83.5694 +787533,185.54,85.857 +787534,183.63,85.0522 +787535,181.77,84.2818 +787536,179.97,83.5422 +787537,184.19,85.932 +787538,182.29,85.093 +787539,180.44,84.2887 +787540,178.65,83.5155 +787541,182.85,86.0064 +787542,180.95,85.1336 +787543,179.11,84.2958 +787544,177.33,83.4894 +787545,181.5,86.0801 +787546,179.61,85.1739 +787547,177.79,84.3031 +787548,176.02,83.4638 +787549,180.15,86.1532 +787550,178.27,85.214 +787551,176.46,84.3105 +787552,174.7,83.4389 +787553,178.8,86.2255 +787554,176.93,85.2539 +787555,175.13,84.3183 +787556,173.39,83.4147 +787557,177.44,86.2971 +787558,175.59,85.2936 +787559,173.81,84.3262 +787560,172.07,83.3911 +787561,176.09,86.3679 +787562,174.25,85.333 +787563,172.48,84.3344 +787564,170.76,83.3682 +787565,174.73,86.438 +787566,172.91,85.3721 +787567,171.15,84.3428 +787568,169.45,83.346 +787569,173.37,86.5072 +787570,171.57,85.411 +787571,169.83,84.3514 +787572,168.14,83.3246 +787573,172.02,86.5756 +787574,170.23,85.4496 +787575,168.5,84.3603 +787576,166.83,83.3039 +787577,170.66,86.6432 +787578,168.89,85.4879 +787579,167.18,84.3695 +787580,165.53,83.284 +787581,169.29,86.7098 +787582,167.54,85.5259 +787583,165.86,84.379 +787584,164.22,83.265 +787585,167.93,86.7756 +787586,166.2,85.5637 +787587,164.53,84.3887 +787588,162.92,83.2468 +787589,166.57,86.8404 +787590,164.86,85.6011 +787591,163.21,84.3987 +787592,161.61,83.2294 +787593,165.2,86.9043 +787594,163.51,85.6382 +787595,161.88,84.4091 +787596,160.31,83.2129 +787597,163.83,86.9672 +787598,162.17,85.675 +787599,160.56,84.4197 +787600,159.01,83.1974 +787601,162.47,87.0291 +787602,160.82,85.7114 +787603,159.24,84.4306 +787604,157.71,83.1827 +787605,161.1,87.09 +787606,159.48,85.7475 +787607,157.92,84.4419 +787608,156.41,83.169 +787609,159.73,87.1498 +787610,158.13,85.7833 +787611,156.6,84.4534 +787612,155.12,83.1563 +787613,158.35,87.2086 +787614,156.78,85.8187 +787615,155.28,84.4653 +787616,153.82,83.1446 +787617,156.98,87.2664 +787618,155.44,85.8538 +787619,153.95,84.4776 +787620,152.53,83.1339 +787621,155.61,87.323 +787622,154.09,85.8885 +787623,152.63,84.4902 +787624,151.23,83.1242 +787625,154.23,87.3785 +787626,152.74,85.9228 +787627,151.31,84.5031 +787628,149.94,83.1155 +787629,152.85,87.4329 +787630,151.39,85.9568 +787631,149.99,84.5164 +787632,148.65,83.1079 +787633,151.48,87.4862 +787634,150.04,85.9904 +787635,148.67,84.53 +787636,147.35,83.1014 +787637,150.1,87.5383 +787638,148.7,86.0236 +787639,147.35,84.544 +787640,146.06,83.096 +787641,148.72,87.5892 +787642,147.35,86.0564 +787643,146.03,84.5584 +787644,144.77,83.0917 +787645,147.34,87.6389 +787646,146,86.0888 +787647,144.72,84.5732 +787648,143.49,83.0885 +787649,145.96,87.6875 +787650,144.65,86.1208 +787651,143.4,84.5883 +787652,142.2,83.0865 +787653,144.57,87.7348 +787654,143.3,86.1524 +787655,142.08,84.6038 +787656,140.91,83.0856 +787657,143.19,87.7808 +787658,141.95,86.1836 +787659,140.76,84.6197 +787660,139.63,83.0859 +787661,141.8,87.8257 +787662,140.59,86.2144 +787663,139.44,84.636 +787664,138.34,83.0874 +787665,140.42,87.8693 +787666,139.24,86.2447 +787667,138.13,84.6527 +787668,137.06,83.0901 +787669,139.03,87.9116 +787670,137.89,86.2747 +787671,136.81,84.6698 +787672,135.77,83.094 +787673,137.64,87.9526 +787674,136.54,86.3042 +787675,135.49,84.6873 +787676,134.49,83.0991 +787677,136.26,87.9924 +787678,135.19,86.3333 +787679,134.17,84.7053 +787680,133.21,83.1055 +787681,134.87,88.0308 +787682,133.84,86.3619 +787683,132.86,84.7236 +787684,131.93,83.1131 +787685,133.48,88.068 +787686,132.48,86.3901 +787687,131.54,84.7423 +787688,130.65,83.1219 +787689,132.09,88.1039 +787690,131.13,86.4179 +787691,130.22,84.7615 +787692,129.37,83.132 +787693,130.69,88.1384 +787694,129.78,86.4452 +787695,128.91,84.7811 +787696,128.09,83.1434 +787697,129.3,88.1716 +787698,128.42,86.4721 +787699,127.59,84.8011 +787700,126.81,83.1561 +787701,127.91,88.2035 +787702,127.07,86.4986 +787703,126.28,84.8215 +787704,125.53,83.17 +787705,126.52,88.2341 +787706,125.71,86.5246 +787707,124.96,84.8424 +787708,124.25,83.1853 +787709,125.12,88.2633 +787710,124.36,86.5501 +787711,123.65,84.8636 +787712,122.97,83.2018 +787713,123.73,88.2912 +787714,123.01,86.5752 +787715,122.33,84.8854 +787716,121.7,83.2197 +787717,122.33,88.3178 +787718,121.65,86.5999 +787719,121.01,84.9075 +787720,120.42,83.2388 +787721,120.94,88.343 +787722,120.3,86.6241 +787723,119.7,84.9301 +787724,119.14,83.2593 +787725,119.54,88.3669 +787726,118.94,86.6478 +787727,118.38,84.9531 +787728,117.87,83.2811 +787729,118.15,88.3894 +787730,117.59,86.6711 +787731,117.07,84.9765 +787732,116.59,83.3042 +787733,116.75,88.4106 +787734,116.23,86.694 +787735,115.75,85.0004 +787736,115.32,83.3286 +787737,115.35,88.4305 +787738,114.88,86.7164 +787739,114.44,85.0247 +787740,114.04,83.3543 +787741,113.96,88.449 +787742,113.52,86.7383 +787743,113.12,85.0495 +787744,112.77,83.3814 +787745,112.56,88.4662 +787746,112.16,86.7598 +787747,111.81,85.0746 +787748,111.49,83.4098 +787749,111.16,88.482 +787750,110.81,86.7808 +787751,110.5,85.1002 +787752,110.22,83.4395 +787753,109.76,88.4965 +787754,109.45,86.8014 +787755,109.18,85.1263 +787756,108.94,83.4705 +787757,108.36,88.5097 +787758,108.1,86.8215 +787759,107.87,85.1528 +787760,107.67,83.5028 +787761,106.97,88.5216 +787762,106.74,86.8412 +787763,106.55,85.1797 +787764,106.4,83.5365 +787765,105.57,88.5322 +787766,105.38,86.8604 +787767,105.24,85.207 +787768,105.12,83.5714 +787769,104.17,88.5414 +787770,104.03,86.8792 +787771,103.92,85.2347 +787772,103.85,83.6077 +787773,102.77,88.5494 +787774,102.67,86.8976 +787775,102.61,85.2629 +787776,102.57,83.6452 +787777,101.37,88.556 +787778,101.31,86.9155 +787779,101.29,85.2915 +787780,101.3,83.6841 +787781,99.973,88.5614 +787782,99.958,86.9329 +787783,99.977,85.3205 +787784,100.03,83.7242 +787785,98.575,88.5655 +787786,98.602,86.95 +787787,98.662,85.35 +787788,98.752,83.7656 +787789,97.176,88.5683 +787790,97.246,86.9666 +787791,97.347,85.3798 +787792,97.478,83.8083 +787793,95.778,88.5699 +787794,95.889,86.9827 +787795,96.032,85.4101 +787796,96.204,83.8523 +787797,94.38,88.5703 +787798,94.533,86.9985 +787799,94.717,85.4407 +787800,94.929,83.8975 +787801,92.982,88.5694 +787802,93.177,87.0138 +787803,93.401,85.4718 +787804,93.654,83.9439 +787805,91.584,88.5673 +787806,91.82,87.0287 +787807,92.086,85.5033 +787808,92.379,83.9916 +787809,90.187,88.564 +787810,90.464,87.0432 +787811,90.77,85.5351 +787812,91.104,84.0405 +787813,88.789,88.5595 +787814,89.108,87.0573 +787815,89.455,85.5674 +787816,89.828,84.0906 +787817,87.392,88.5538 +787818,87.752,87.0709 +787819,88.139,85.6 +787820,88.552,84.1419 +787821,85.996,88.547 +787822,86.396,87.0842 +787823,86.823,85.633 +787824,87.275,84.1944 +787825,84.6,88.539 +787826,85.04,87.0971 +787827,85.506,85.6664 +787828,85.998,84.248 +787829,83.204,88.5299 +787830,83.684,87.1096 +787831,84.19,85.7002 +787832,84.721,84.3028 +787833,81.809,88.5197 +787834,82.328,87.1217 +787835,82.874,85.7344 +787836,83.443,84.3588 +787837,80.414,88.5083 +787838,80.973,87.1334 +787839,81.557,85.7689 +787840,82.165,84.4159 +787841,79.019,88.4959 +787842,79.617,87.1447 +787843,80.24,85.8037 +787844,80.886,84.474 +787845,77.626,88.4824 +787846,78.262,87.1557 +787847,78.923,85.8389 +787848,79.607,84.5333 +787849,76.232,88.4679 +787850,76.907,87.1663 +787851,77.605,85.8745 +787852,78.327,84.5936 +787853,74.84,88.4524 +787854,75.552,87.1766 +787855,76.288,85.9104 +787856,77.046,84.655 +787857,73.448,88.4358 +787858,74.197,87.1865 +787859,74.97,85.9466 +787860,75.765,84.7175 +787861,72.056,88.4183 +787862,72.842,87.1961 +787863,73.652,85.9831 +787864,74.483,84.7809 +787865,70.666,88.3998 +787866,71.488,87.2053 +787867,72.333,86.02 +787868,73.201,84.8453 +787869,69.276,88.3804 +787870,70.134,87.2142 +787871,71.015,86.0571 +787872,71.918,84.9107 +787873,67.886,88.36 +787874,68.78,87.2227 +787875,69.696,86.0946 +787876,70.634,84.9771 +787877,66.498,88.3387 +787878,67.426,87.231 +787879,68.376,86.1324 +787880,69.349,85.0444 +787881,65.11,88.3166 +787882,66.072,87.2389 +787883,67.057,86.1704 +787884,68.063,85.1126 +787885,63.723,88.2936 +787886,64.719,87.2466 +787887,65.737,86.2088 +787888,66.777,85.1817 +787889,62.337,88.2698 +787890,63.366,87.2539 +787891,64.417,86.2474 +787892,65.49,85.2516 +787893,60.952,88.2451 +787894,62.013,87.261 +787895,63.096,86.2862 +787896,64.202,85.3224 +787897,59.567,88.2197 +787898,60.66,87.2678 +787899,61.775,86.3254 +787900,62.913,85.394 +787901,58.184,88.1936 +787902,59.308,87.2743 +787903,60.454,86.3647 +787904,61.623,85.4664 +787905,56.801,88.1666 +787906,57.956,87.2806 +787907,59.133,86.4043 +787908,60.332,85.5395 +787909,55.419,88.139 +787910,56.604,87.2866 +787911,57.811,86.4442 +787912,59.04,85.6134 +787913,54.039,88.1107 +787914,55.252,87.2924 +787915,56.489,86.4842 +787916,57.747,85.688 +787917,52.659,88.0817 +787918,53.901,87.2979 +787919,55.166,86.5245 +787920,56.454,85.7633 +787921,51.28,88.0521 +787922,52.55,87.3032 +787923,53.843,86.565 +787924,55.159,85.8393 +787925,49.903,88.0219 +787926,51.2,87.3083 +787927,52.52,86.6057 +787928,53.863,85.9158 +787929,48.526,87.9911 +787930,49.849,87.3131 +787931,51.196,86.6465 +787932,52.566,85.993 +787933,47.151,87.9598 +787934,48.499,87.3178 +787935,49.872,86.6876 +787936,51.268,86.0708 +787937,45.776,87.9279 +787938,47.15,87.3223 +787939,48.547,86.7288 +787940,49.969,86.1491 +787941,44.403,87.8956 +787942,45.8,87.3266 +787943,47.222,86.7701 +787944,48.668,86.2279 +787945,43.031,87.8627 +787946,44.451,87.3307 +787947,45.897,86.8117 +787948,47.367,86.3072 +787949,41.66,87.8295 +787950,43.103,87.3347 +787951,44.571,86.8533 +787952,46.064,86.387 +787953,40.29,87.7958 +787954,41.754,87.3385 +787955,43.245,86.8951 +787956,44.76,86.4672 +787957,38.921,87.7617 +787958,40.406,87.3422 +787959,41.918,86.937 +787960,43.455,86.5478 +787961,37.554,87.7272 +787962,39.059,87.3457 +787963,40.591,86.979 +787964,42.149,86.6287 +787965,36.187,87.6925 +787966,37.712,87.3491 +787967,39.263,87.0211 +787968,40.842,86.71 +787969,34.822,87.6574 +787970,36.365,87.3524 +787971,37.935,87.0632 +787972,39.533,86.7916 +787973,33.458,87.6221 +787974,35.018,87.3556 +787975,36.607,87.1055 +787976,38.223,86.8735 +787977,32.096,87.5865 +787978,33.672,87.3587 +787979,35.278,87.1478 +787980,36.912,86.9557 +787981,30.734,87.5507 +787982,32.327,87.3617 +787983,33.948,87.1902 +787984,35.599,87.038 +787985,29.374,87.5147 +787986,30.981,87.3646 +787987,32.618,87.2326 +787988,34.285,87.1205 +787989,28.015,87.4786 +787990,29.637,87.3675 +787991,31.288,87.2751 +787992,32.97,87.2032 +787993,26.657,87.4423 +787994,28.292,87.3703 +787995,29.957,87.3176 +787996,31.654,87.286 +787997,25.301,87.406 +787998,26.948,87.3731 +787999,28.626,87.3601 +788000,30.336,87.3689 +788001,23.946,87.3696 +788002,25.604,87.3758 +788003,27.294,87.4026 +788004,29.017,87.4518 +788005,22.592,87.3331 +788006,24.261,87.3786 +788007,25.962,87.4451 +788008,27.696,87.5348 +788009,21.24,87.2967 +788010,22.918,87.3813 +788011,24.629,87.4876 +788012,26.374,87.6177 +788013,19.888,87.2602 +788014,21.576,87.3839 +788015,23.296,87.53 +788016,25.051,87.7006 +788017,18.538,87.2238 +788018,20.233,87.3866 +788019,21.962,87.5724 +788020,23.726,87.7834 +788021,17.19,87.1875 +788022,18.892,87.3894 +788023,20.628,87.6148 +788024,22.4,87.8661 +788025,15.843,87.1514 +788026,17.55,87.3921 +788027,19.293,87.6571 +788028,21.073,87.9487 +788029,14.497,87.1153 +788030,16.21,87.3949 +788031,17.958,87.6993 +788032,19.744,88.0311 +788033,13.152,87.0794 +788034,14.869,87.3977 +788035,16.622,87.7415 +788036,18.414,88.1133 +788037,11.809,87.0438 +788038,13.529,87.4006 +788039,15.286,87.7835 +788040,17.082,88.1953 +788041,10.467,87.0083 +788042,12.19,87.4035 +788043,13.949,87.8255 +788044,15.749,88.277 +788045,9.1262,86.9732 +788046,10.85,87.4065 +788047,12.612,87.8674 +788048,14.415,88.3584 +788049,7.7869,86.9383 +788050,9.5116,87.4096 +788051,11.274,87.9091 +788052,13.079,88.4394 +788053,6.4489,86.9037 +788054,8.1733,87.4128 +788055,9.9362,87.9507 +788056,11.741,88.5201 +788057,5.1123,86.8695 +788058,6.8353,87.4161 +788059,8.5975,87.9921 +788060,10.403,88.6004 +788061,3.7769,86.8356 +788062,5.4978,87.4196 +788063,7.2583,88.0334 +788064,9.0624,88.6803 +788065,2.4429,86.8022 +788066,4.1607,87.4231 +788067,5.9186,88.0745 +788068,7.7208,88.7597 +788069,1.1101,86.7692 +788070,2.824,87.4268 +788071,4.5784,88.1155 +788072,6.3778,88.8386 +788073,359.78,86.7366 +788074,1.4877,87.4306 +788075,3.2377,88.1563 +788076,5.0334,88.917 +788077,358.45,86.7045 +788078,0.15176,87.4346 +788079,1.8965,88.1969 +788080,3.6876,88.9948 +788081,357.12,86.673 +788082,358.82,87.4387 +788083,0.55479,88.2372 +788084,2.3404,89.07207 +788085,355.79,86.642 +788086,357.48,87.443 +788087,359.21,88.2774 +788088,0.99176,89.14872 +788089,354.47,86.6116 +788090,356.15,87.4475 +788091,357.87,88.3173 +788092,359.64,89.22472 +788093,353.14,86.5817 +788094,354.81,87.4522 +788095,356.53,88.357 +788096,358.29,89.30006 +788097,351.82,86.5525 +788098,353.48,87.4571 +788099,355.18,88.3965 +788100,356.94,89.37469 +788101,350.49,86.524 +788102,352.14,87.4622 +788103,353.84,88.4357 +788104,355.58,89.44859 +788105,349.17,86.4961 +788106,350.81,87.4675 +788107,352.49,88.4747 +788108,354.23,89.52173 +788109,347.85,86.4689 +788110,349.48,87.473 +788111,351.15,88.5133 +788112,352.87,89.59409 +788113,346.53,86.4424 +788114,348.15,87.4788 +788115,349.8,88.5517 +788116,351.51,89.66563 +788117,345.22,86.4167 +788118,346.81,87.4848 +788119,348.46,88.5899 +788120,350.15,89.73634 +788121,343.9,86.3918 +788122,345.48,87.491 +788123,347.11,88.6277 +788124,348.79,89.80617 +788125,342.59,86.3677 +788126,344.15,87.4976 +788127,345.76,88.6652 +788128,347.43,89.87512 +788129,341.27,86.3444 +788130,342.82,87.5043 +788131,344.42,88.7024 +788132,346.07,89.94314 +788133,339.96,86.322 +788134,341.49,87.5114 +788135,343.07,88.7393 +788136,344.7,90.010218 +788137,338.65,86.3004 +788138,340.16,87.5187 +788139,341.72,88.7758 +788140,343.34,90.076326 +788141,337.34,86.2797 +788142,338.83,87.5264 +788143,340.37,88.812 +788144,341.97,90.14144 +788145,336.03,86.26 +788146,337.5,87.5343 +788147,339.02,88.8479 +788148,340.6,90.20554 +788149,334.72,86.2412 +788150,336.17,87.5425 +788151,337.67,88.8834 +788152,339.23,90.26859 +788153,333.41,86.2233 +788154,334.84,87.5511 +788155,336.32,88.9185 +788156,337.86,90.33058 +788157,332.1,86.2064 +788158,333.52,87.56 +788159,334.97,88.9533 +788160,336.49,90.39149 +788161,330.8,86.1906 +788162,332.19,87.5692 +788163,333.62,88.9877 +788164,335.11,90.45129 +788165,329.49,86.1757 +788166,330.86,87.5787 +788167,332.27,89.02173 +788168,333.74,90.50996 +788169,328.19,86.1619 +788170,329.53,87.5886 +788171,330.92,89.05537 +788172,332.36,90.56748 +788173,326.89,86.1492 +788174,328.2,87.5988 +788175,329.57,89.0886 +788176,330.98,90.62384 +788177,325.59,86.1375 +788178,326.88,87.6093 +788179,328.21,89.12143 +788180,329.61,90.679 +788181,324.29,86.127 +788182,325.55,87.6203 +788183,326.86,89.15386 +788184,328.23,90.73296 +788185,322.99,86.1175 +788186,324.22,87.6315 +788187,325.51,89.18587 +788188,326.85,90.7857 +788189,321.69,86.1092 +788190,322.9,87.6432 +788191,324.15,89.21746 +788192,325.47,90.83719 +788193,320.39,86.102 +788194,321.57,87.6552 +788195,322.8,89.24862 +788196,324.08,90.88743 +788197,319.09,86.096 +788198,320.25,87.6676 +788199,321.45,89.27936 +788200,322.7,90.9364 +788201,317.8,86.0912 +788202,318.92,87.6804 +788203,320.09,89.30966 +788204,321.32,90.98408 +788205,316.5,86.0876 +788206,317.6,87.6936 +788207,318.74,89.33951 +788208,319.93,91.0305 +788209,315.21,86.0851 +788210,316.27,87.7072 +788211,317.38,89.36893 +788212,318.55,91.0755 +788213,313.91,86.0839 +788214,314.95,87.7211 +788215,316.03,89.39789 +788216,317.16,91.1192 +788217,312.62,86.084 +788218,313.62,87.7355 +788219,314.67,89.42639 +788220,315.77,91.1616 +788221,311.33,86.0853 +788222,312.3,87.7503 +788223,313.31,89.45444 +788224,314.38,91.2027 +788225,310.04,86.0878 +788226,310.98,87.7655 +788227,311.96,89.48203 +788228,312.99,91.2423 +788229,308.75,86.0916 +788230,309.65,87.7811 +788231,310.6,89.50915 +788232,311.6,91.2806 +788233,307.46,86.0967 +788234,308.33,87.7971 +788235,309.24,89.5358 +788236,310.21,91.3176 +788237,306.17,86.1031 +788238,307,87.8135 +788239,307.89,89.56198 +788240,308.82,91.3531 +788241,304.88,86.1107 +788242,305.68,87.8304 +788243,306.53,89.58768 +788244,307.43,91.3872 +788245,303.59,86.1197 +788246,304.36,87.8477 +788247,305.17,89.61291 +788248,306.03,91.4199 +788249,302.3,86.13 +788250,303.04,87.8654 +788251,303.81,89.63766 +788252,304.64,91.4513 +788253,301.01,86.1416 +788254,301.71,87.8835 +788255,302.45,89.66192 +788256,303.24,91.4811 +788257,299.73,86.1546 +788258,300.39,87.9021 +788259,301.1,89.6857 +788260,301.85,91.5096 +788261,298.44,86.1688 +788262,299.07,87.9211 +788263,299.74,89.70899 +788264,300.45,91.5367 +788265,297.15,86.1844 +788266,297.75,87.9405 +788267,298.38,89.7318 +788268,299.06,91.5623 +788269,295.87,86.2014 +788270,296.42,87.9604 +788271,297.02,89.75412 +788272,297.66,91.5864 +788273,294.58,86.2197 +788274,295.1,87.9807 +788275,295.66,89.77595 +788276,296.26,91.6092 +788277,293.3,86.2394 +788278,293.78,88.0014 +788279,294.3,89.79728 +788280,294.87,91.6305 +788281,292.01,86.2604 +788282,292.46,88.0226 +788283,292.94,89.81813 +788284,293.47,91.6504 +788285,290.73,86.2827 +788286,291.13,88.0442 +788287,291.58,89.83849 +788288,292.07,91.6688 +788289,289.44,86.3064 +788290,289.81,88.0663 +788291,290.22,89.85836 +788292,290.67,91.6858 +788293,288.16,86.3315 +788294,288.49,88.0887 +788295,288.86,89.87773 +788296,289.27,91.7014 +788297,286.87,86.3579 +788298,287.17,88.1117 +788299,287.5,89.89662 +788300,287.87,91.7156 +788301,285.59,86.3857 +788302,285.85,88.135 +788303,286.14,89.915014 +788304,286.47,91.7283 +788305,284.31,86.4148 +788306,284.53,88.1588 +788307,284.78,89.932923 +788308,285.07,91.7396 +788309,283.02,86.4452 +788310,283.2,88.183 +788311,283.42,89.950344 +788312,283.67,91.7495 +788313,281.74,86.4771 +788314,281.88,88.2077 +788315,282.06,89.967279 +788316,282.27,91.758 +788317,280.45,86.5102 +788318,280.56,88.2328 +788319,280.7,89.983731 +788320,280.87,91.765 +788321,279.17,86.5447 +788322,279.24,88.2583 +788323,279.34,89.99970095 +788324,279.47,91.7707 +788325,277.89,86.5805 +788326,277.92,88.2843 +788327,277.98,90.015191 +788328,278.07,91.775 +788329,276.6,86.6176 +788330,276.59,88.3106 +788331,276.62,90.030204 +788332,276.67,91.7779 +788333,275.32,86.6561 +788334,275.27,88.3374 +788335,275.26,90.044742 +788336,275.27,91.7795 +788337,274.04,86.6959 +788338,273.95,88.3646 +788339,273.9,90.058809 +788340,273.87,91.7796 +788341,272.75,86.7369 +788342,272.63,88.3923 +788343,272.53,90.072407 +788344,272.47,91.7785 +788345,271.47,86.7793 +788346,271.31,88.4203 +788347,271.17,90.08554 +788348,271.07,91.776 +788349,270.18,86.823 +788350,269.98,88.4488 +788351,269.81,90.098211 +788352,269.67,91.7722 +788353,268.9,86.8679 +788354,268.66,88.4776 +788355,268.45,90.11042 +788356,268.27,91.767 +788357,267.61,86.9141 +788358,267.34,88.5069 +788359,267.09,90.12218 +788360,266.87,91.7606 +788361,266.33,86.9615 +788362,266.02,88.5365 +788363,265.73,90.13349 +788364,265.47,91.7529 +788365,265.04,87.0102 +788366,264.69,88.5666 +788367,264.37,90.14436 +788368,264.07,91.7439 +788369,263.76,87.0601 +788370,263.37,88.597 +788371,263.01,90.15478 +788372,262.67,91.7336 +788373,262.47,87.1112 +788374,262.05,88.6278 +788375,261.65,90.16477 +788376,261.28,91.7221 +788377,261.18,87.1635 +788378,260.72,88.659 +788379,260.29,90.17433 +788380,259.88,91.7094 +788381,259.9,87.217 +788382,259.4,88.6906 +788383,258.93,90.18347 +788384,258.48,91.6955 +788385,258.61,87.2716 +788386,258.08,88.7225 +788387,257.57,90.19218 +788388,257.08,91.6804 +788389,257.32,87.3274 +788390,256.75,88.7548 +788391,256.21,90.20048 +788392,255.69,91.6641 +788393,256.03,87.3844 +788394,255.43,88.7874 +788395,254.85,90.20838 +788396,254.29,91.6467 +788397,254.74,87.4424 +788398,254.11,88.8204 +788399,253.49,90.21587 +788400,252.89,91.6281 +788401,253.45,87.5016 +788402,252.78,88.8538 +788403,252.13,90.22296 +788404,251.5,91.6085 +788405,252.16,87.5618 +788406,251.46,88.8875 +788407,250.77,90.22967 +788408,250.1,91.5877 +788409,250.87,87.6231 +788410,250.13,88.9215 +788411,249.41,90.236 +788412,248.71,91.5659 +788413,249.58,87.6855 +788414,248.81,88.9558 +788415,248.05,90.24195 +788416,247.31,91.543 +788417,248.29,87.7488 +788418,247.48,88.9905 +788419,246.69,90.24753 +788420,245.92,91.5191 +788421,247,87.8132 +788422,246.16,89.02541 +788423,245.33,90.25275 +788424,244.53,91.4942 +788425,245.7,87.8785 +788426,244.83,89.06067 +788427,243.97,90.25762 +788428,243.14,91.4683 +788429,244.41,87.9448 +788430,243.5,89.09622 +788431,242.62,90.26214 +788432,241.75,91.4415 +788433,243.11,88.0121 +788434,242.18,89.13206 +788435,241.26,90.26633 +788436,240.36,91.4137 +788437,241.82,88.0802 +788438,240.85,89.16817 +788439,239.9,90.27018 +788440,238.97,91.3851 +788441,240.52,88.1492 +788442,239.52,89.20455 +788443,238.54,90.27371 +788444,237.58,91.3555 +788445,239.22,88.2191 +788446,238.2,89.2412 +788447,237.18,90.27693 +788448,236.19,91.3251 +788449,237.92,88.2898 +788450,236.87,89.27809 +788451,235.83,90.27984 +788452,234.8,91.2938 +788453,236.62,88.3614 +788454,235.54,89.31523 +788455,234.47,90.28246 +788456,233.42,91.2618 +788457,235.32,88.4337 +788458,234.21,89.35261 +788459,233.11,90.28478 +788460,232.03,91.2289 +788461,234.02,88.5068 +788462,232.88,89.39021 +788463,231.76,90.28683 +788464,230.65,91.1953 +788465,232.72,88.5806 +788466,231.55,89.42803 +788467,230.4,90.28861 +788468,229.26,91.161 +788469,231.42,88.6551 +788470,230.22,89.46606 +788471,229.04,90.29012 +788472,227.88,91.126 +788473,230.11,88.7303 +788474,228.89,89.50428 +788475,227.69,90.29138 +788476,226.5,91.0903 +788477,228.81,88.8062 +788478,227.56,89.5427 +788479,226.33,90.2924 +788480,225.12,91.054 +788481,227.5,88.8827 +788482,226.23,89.58129 +788483,224.98,90.29319 +788484,223.74,91.017 +788485,226.2,88.9597 +788486,224.9,89.62006 +788487,223.62,90.29375 +788488,222.36,90.97949 +788489,224.89,89.03738 +788490,223.57,89.65898 +788491,222.27,90.29409 +788492,220.98,90.94139 +788493,223.58,89.11555 +788494,222.24,89.69806 +788495,220.92,90.29423 +788496,219.61,90.90277 +788497,222.27,89.19423 +788498,220.91,89.73727 +788499,219.56,90.29418 +788500,218.23,90.86364 +788501,220.96,89.27339 +788502,219.58,89.77661 +788503,218.21,90.29393 +788504,216.86,90.82404 +788505,219.65,89.35299 +788506,218.24,89.81608 +788507,216.86,90.29352 +788508,215.48,90.78401 +788509,218.33,89.433 +788510,216.91,89.85565 +788511,215.5,90.29293 +788512,214.11,90.74356 +788513,217.02,89.5134 +788514,215.58,89.89532 +788515,214.15,90.2922 +788516,212.74,90.70273 +788517,215.7,89.59415 +788518,214.24,89.935082 +788519,212.8,90.29131 +788520,211.37,90.66155 +788521,214.38,89.67523 +788522,212.91,89.97492 +788523,211.45,90.29029 +788524,210,90.62005 +788525,213.07,89.75658 +788526,211.57,90.014825 +788527,210.09,90.28915 +788528,208.64,90.57826 +788529,211.75,89.8382 +788530,210.24,90.054786 +788531,208.74,90.28789 +788532,207.27,90.5362 +788533,210.43,89.92004 +788534,208.9,90.094793 +788535,207.39,90.28652 +788536,205.9,90.49392 +788537,209.1,90.0020719 +788538,207.56,90.13484 +788539,206.04,90.28507 +788540,204.54,90.45145 +788541,207.78,90.084262 +788542,206.23,90.1749 +788543,204.69,90.28353 +788544,203.18,90.4088 +788545,206.46,90.16658 +788546,204.89,90.21498 +788547,203.34,90.28191 +788548,201.82,90.36602 +788549,205.13,90.24899 +788550,203.55,90.25506 +788551,201.99,90.28023 +788552,200.46,90.32313 +788553,203.8,90.33146 +788554,202.21,90.29514 +788555,200.64,90.2785 +788556,199.1,90.28016 +788557,202.48,90.41395 +788558,200.88,90.33519 +788559,199.3,90.27673 +788560,197.74,90.23716 +788561,201.15,90.49644 +788562,199.54,90.37521 +788563,197.95,90.27493 +788564,196.38,90.19413 +788565,199.81,90.57889 +788566,198.2,90.41519 +788567,196.6,90.2731 +788568,195.03,90.15113 +788569,198.48,90.66127 +788570,196.86,90.45512 +788571,195.25,90.27127 +788572,193.67,90.10818 +788573,197.15,90.74353 +788574,195.52,90.49499 +788575,193.91,90.26944 +788576,192.32,90.065303 +788577,195.81,90.82566 +788578,194.18,90.53478 +788579,192.56,90.26761 +788580,190.97,90.022539 +788581,194.48,90.90761 +788582,192.83,90.57448 +788583,191.21,90.26581 +788584,189.62,89.979915 +788585,193.14,90.98936 +788586,191.49,90.61409 +788587,189.87,90.26404 +788588,188.27,89.937464 +788589,191.8,91.0709 +788590,190.15,90.65359 +788591,188.52,90.26231 +788592,186.92,89.89522 +788593,190.46,91.1521 +788594,188.81,90.69297 +788595,187.18,90.26064 +788596,185.57,89.8532 +788597,189.12,91.233 +788598,187.46,90.73222 +788599,185.83,90.25902 +788600,184.23,89.81145 +788601,187.78,91.3136 +788602,186.12,90.77133 +788603,184.49,90.25748 +788604,182.88,89.76999 +788605,186.43,91.3938 +788606,184.78,90.8103 +788607,183.15,90.25603 +788608,181.54,89.72885 +788609,185.09,91.4736 +788610,183.43,90.84909 +788611,181.8,90.25466 +788612,180.2,89.68806 +788613,183.74,91.553 +788614,182.09,90.88772 +788615,180.46,90.2534 +788616,178.86,89.64766 +788617,182.39,91.6318 +788618,180.74,90.92616 +788619,179.12,90.25226 +788620,177.52,89.60767 +788621,181.05,91.7102 +788622,179.4,90.96441 +788623,177.77,90.25123 +788624,176.18,89.56812 +788625,179.7,91.7881 +788626,178.05,91.0025 +788627,176.43,90.25034 +788628,174.85,89.52905 +788629,178.34,91.8653 +788630,176.7,91.0403 +788631,175.09,90.2496 +788632,173.51,89.49047 +788633,176.99,91.942 +788634,175.35,91.0779 +788635,173.75,90.249 +788636,172.18,89.45242 +788637,175.64,92.018 +788638,174.01,91.1153 +788639,172.41,90.24857 +788640,170.84,89.41492 +788641,174.28,92.0934 +788642,172.66,91.1524 +788643,171.07,90.24831 +788644,169.51,89.37801 +788645,172.92,92.1681 +788646,171.31,91.1893 +788647,169.73,90.24824 +788648,168.18,89.34171 +788649,171.56,92.242 +788650,169.96,91.2259 +788651,168.39,90.24835 +788652,166.85,89.30605 +788653,170.2,92.3152 +788654,168.61,91.2622 +788655,167.05,90.24866 +788656,165.52,89.27105 +788657,168.84,92.3876 +788658,167.26,91.2982 +788659,165.71,90.24919 +788660,164.2,89.23675 +788661,167.48,92.4592 +788662,165.91,91.334 +788663,164.37,90.24993 +788664,162.87,89.20316 +788665,166.12,92.5299 +788666,164.56,91.3694 +788667,163.04,90.2509 +788668,161.55,89.17033 +788669,164.75,92.5998 +788670,163.21,91.4046 +788671,161.7,90.2521 +788672,160.22,89.13826 +788673,163.39,92.6688 +788674,161.85,91.4394 +788675,160.36,90.25355 +788676,158.9,89.10699 +788677,162.02,92.7368 +788678,160.5,91.4739 +788679,159.02,90.25525 +788680,157.58,89.07653 +788681,160.65,92.8038 +788682,159.15,91.508 +788683,157.69,90.25721 +788684,156.26,89.04693 +788685,159.28,92.8699 +788686,157.8,91.5418 +788687,156.35,90.25945 +788688,154.94,89.01819 +788689,157.91,92.935 +788690,156.44,91.5752 +788691,155.01,90.26196 +788692,153.62,88.9903 +788693,156.54,92.999 +788694,155.09,91.6083 +788695,153.68,90.26475 +788696,152.3,88.9634 +788697,155.17,93.062 +788698,153.73,91.641 +788699,152.34,90.26784 +788700,150.99,88.9374 +788701,153.79,93.1239 +788702,152.38,91.6733 +788703,151.01,90.27123 +788704,149.67,88.9124 +788705,152.42,93.1846 +788706,151.02,91.7052 +788707,149.67,90.27492 +788708,148.36,88.8884 +788709,151.04,93.2442 +788710,149.67,91.7368 +788711,148.34,90.27894 +788712,147.05,88.8653 +788713,149.66,93.3027 +788714,148.31,91.7679 +788715,147.01,90.28327 +788716,145.73,88.8433 +788717,148.28,93.36 +788718,146.96,91.7986 +788719,145.67,90.28793 +788720,144.42,88.8223 +788721,146.9,93.416 +788722,145.6,91.8289 +788723,144.34,90.29293 +788724,143.11,88.8024 +788725,145.52,93.4709 +788726,144.24,91.8587 +788727,143.01,90.29827 +788728,141.8,88.7836 +788729,144.14,93.5245 +788730,142.89,91.8881 +788731,141.67,90.30396 +788732,140.5,88.7659 +788733,142.76,93.5768 +788734,141.53,91.9171 +788735,140.34,90.31001 +788736,139.19,88.7493 +788737,141.37,93.6278 +788738,140.17,91.9457 +788739,139.01,90.31641 +788740,137.88,88.7339 +788741,139.99,93.6776 +788742,138.81,91.9738 +788743,137.67,90.32319 +788744,136.58,88.7196 +788745,138.6,93.726 +788746,137.45,92.0014 +788747,136.34,90.33033 +788748,135.27,88.7065 +788749,137.22,93.773 +788750,136.09,92.0286 +788751,135.01,90.33785 +788752,133.97,88.6945 +788753,135.83,93.8187 +788754,134.73,92.0553 +788755,133.68,90.34575 +788756,132.66,88.6838 +788757,134.44,93.8631 +788758,133.37,92.0815 +788759,132.35,90.35404 +788760,131.36,88.6743 +788761,133.05,93.906 +788762,132.01,92.1072 +788763,131.02,90.36273 +788764,130.06,88.666 +788765,131.66,93.9476 +788766,130.65,92.1325 +788767,129.69,90.37181 +788768,128.76,88.659 +788769,130.27,93.9877 +788770,129.29,92.1572 +788771,128.36,90.38129 +788772,127.46,88.6532 +788773,128.88,94.0264 +788774,127.93,92.1815 +788775,127.03,90.39117 +788776,126.16,88.6487 +788777,127.49,94.0636 +788778,126.57,92.2053 +788779,125.7,90.40146 +788780,124.86,88.6455 +788781,126.1,94.0994 +788782,125.21,92.2286 +788783,124.37,90.41217 +788784,123.56,88.6436 +788785,124.7,94.1337 +788786,123.85,92.2513 +788787,123.04,90.42329 +788788,122.26,88.643 +788789,123.31,94.1666 +788790,122.49,92.2736 +788791,121.71,90.43483 +788792,120.96,88.6437 +788793,121.91,94.1979 +788794,121.12,92.2954 +788795,120.38,90.44679 +788796,119.66,88.6457 +788797,120.52,94.2278 +788798,119.76,92.3166 +788799,119.05,90.45917 +788800,118.37,88.6491 +788801,119.12,94.2562 +788802,118.4,92.3373 +788803,117.72,90.47199 +788804,117.07,88.6538 +788805,117.72,94.2831 +788806,117.04,92.3575 +788807,116.39,90.48523 +788808,115.78,88.6599 +788809,116.33,94.3084 +788810,115.67,92.3772 +788811,115.06,90.4989 +788812,114.48,88.6673 +788813,114.93,94.3323 +788814,114.31,92.3963 +788815,113.73,90.51301 +788816,113.19,88.6761 +788817,113.53,94.3546 +788818,112.95,92.415 +788819,112.4,90.52755 +788820,111.89,88.6862 +788821,112.13,94.3754 +788822,111.58,92.4331 +788823,111.07,90.54252 +788824,110.6,88.6977 +788825,110.73,94.3947 +788826,110.22,92.4507 +788827,109.74,90.55793 +788828,109.3,88.7106 +788829,109.33,94.4124 +788830,108.86,92.4677 +788831,108.42,90.57378 +788832,108.01,88.7249 +788833,107.93,94.4286 +788834,107.49,92.4842 +788835,107.09,90.59007 +788836,106.71,88.7405 +788837,106.53,94.4433 +788838,106.13,92.5002 +788839,105.76,90.60679 +788840,105.42,88.7575 +788841,105.13,94.4565 +788842,104.76,92.5157 +788843,104.43,90.62396 +788844,104.13,88.7759 +788845,103.73,94.4681 +788846,103.4,92.5306 +788847,103.1,90.64156 +788848,102.84,88.7957 +788849,102.33,94.4782 +788850,102.03,92.545 +788851,101.77,90.6596 +788852,101.54,88.8169 +788853,100.93,94.4868 +788854,100.67,92.5589 +788855,100.45,90.67808 +788856,100.25,88.8394 +788857,99.527,94.4939 +788858,99.305,92.5723 +788859,99.117,90.69699 +788860,98.957,88.8634 +788861,98.125,94.4995 +788862,97.941,92.5851 +788863,97.788,90.71634 +788864,97.664,88.8887 +788865,96.724,94.5036 +788866,96.576,92.5974 +788867,96.46,90.73612 +788868,96.372,88.9153 +788869,95.322,94.5061 +788870,95.211,92.6092 +788871,95.131,90.75633 +788872,95.079,88.9434 +788873,93.92,94.5072 +788874,93.846,92.6204 +788875,93.803,90.77698 +788876,93.786,88.9728 +788877,92.518,94.5068 +788878,92.482,92.6312 +788879,92.475,90.79805 +788880,92.494,89.00358 +788881,91.116,94.5049 +788882,91.117,92.6414 +788883,91.146,90.81955 +788884,91.201,89.03571 +788885,89.715,94.5016 +788886,89.752,92.6511 +788887,89.817,90.84147 +788888,89.908,89.06918 +788889,88.313,94.4967 +788890,88.387,92.6603 +788891,88.489,90.86381 +788892,88.615,89.104 +788893,86.911,94.4905 +788894,87.022,92.669 +788895,87.16,90.88657 +788896,87.321,89.14014 +788897,85.51,94.4828 +788898,85.658,92.6772 +788899,85.831,90.90974 +788900,86.028,89.17761 +788901,84.108,94.4737 +788902,84.293,92.6848 +788903,84.502,90.93332 +788904,84.734,89.21639 +788905,82.707,94.4632 +788906,82.928,92.692 +788907,83.173,90.95731 +788908,83.44,89.25647 +788909,81.306,94.4513 +788910,81.563,92.6987 +788911,81.844,90.98171 +788912,82.146,89.29784 +788913,79.906,94.4381 +788914,80.199,92.7049 +788915,80.515,91.0065 +788916,80.852,89.3405 +788917,78.505,94.4234 +788918,78.834,92.7107 +788919,79.185,91.0317 +788920,79.557,89.38442 +788921,77.105,94.4074 +788922,77.47,92.7159 +788923,77.856,91.0573 +788924,78.261,89.4296 +788925,75.706,94.3901 +788926,76.105,92.7207 +788927,76.526,91.0832 +788928,76.966,89.47602 +788929,74.306,94.3715 +788930,74.741,92.725 +788931,75.196,91.1096 +788932,75.67,89.52366 +788933,72.907,94.3516 +788934,73.377,92.7288 +788935,73.866,91.1363 +788936,74.373,89.57252 +788937,71.509,94.3304 +788938,72.013,92.7322 +788939,72.536,91.1634 +788940,73.076,89.62258 +788941,70.111,94.308 +788942,70.649,92.7352 +788943,71.205,91.1908 +788944,71.779,89.67382 +788945,68.713,94.2843 +788946,69.285,92.7377 +788947,69.875,91.2186 +788948,70.481,89.72623 +788949,67.316,94.2594 +788950,67.921,92.7397 +788951,68.544,91.2468 +788952,69.182,89.77978 +788953,65.92,94.2333 +788954,66.558,92.7413 +788955,67.213,91.2752 +788956,67.883,89.83446 +788957,64.524,94.206 +788958,65.195,92.7425 +788959,65.881,91.3041 +788960,66.583,89.89025 +788961,63.128,94.1776 +788962,63.831,92.7433 +788963,64.55,91.3332 +788964,65.283,89.947128 +788965,61.734,94.1481 +788966,62.468,92.7437 +788967,63.218,91.3627 +788968,63.982,90.0050813 +788969,60.339,94.1175 +788970,61.106,92.7436 +788971,61.886,91.3925 +788972,62.68,90.064086 +788973,58.946,94.0857 +788974,59.743,92.7432 +788975,60.554,91.4227 +788976,61.378,90.12412 +788977,57.553,94.053 +788978,58.381,92.7424 +788979,59.221,91.4531 +788980,60.075,90.18516 +788981,56.161,94.0192 +788982,57.018,92.7412 +788983,57.889,91.4838 +788984,58.771,90.24719 +788985,54.77,93.9843 +788986,55.656,92.7396 +788987,56.556,91.5148 +788988,57.467,90.31019 +788989,53.379,93.9485 +788990,54.295,92.7377 +788991,55.222,91.546 +788992,56.161,90.37412 +788993,51.99,93.9118 +788994,52.933,92.7354 +788995,53.889,91.5776 +788996,54.855,90.43897 +788997,50.601,93.8741 +788998,51.572,92.7327 +788999,52.555,91.6094 +789000,53.548,90.50471 +789001,49.212,93.8355 +789002,50.211,92.7297 +789003,51.22,91.6415 +789004,52.24,90.57133 +789005,47.825,93.7961 +789006,48.85,92.7264 +789007,49.886,91.6738 +789008,50.932,90.63878 +789009,46.439,93.7558 +789010,47.489,92.7228 +789011,48.551,91.7063 +789012,49.622,90.70705 +789013,45.053,93.7147 +789014,46.129,92.7188 +789015,47.216,91.7391 +789016,48.312,90.77611 +789017,43.669,93.6728 +789018,44.769,92.7146 +789019,45.88,91.772 +789020,47,90.84594 +789021,42.285,93.6301 +789022,43.409,92.71 +789023,44.544,91.8052 +789024,45.688,90.9165 +789025,40.902,93.5867 +789026,42.05,92.7052 +789027,43.208,91.8386 +789028,44.375,90.98777 +789029,39.52,93.5426 +789030,40.691,92.7001 +789031,41.871,91.8722 +789032,43.061,91.0597 +789033,38.14,93.4979 +789034,39.332,92.6947 +789035,40.534,91.9059 +789036,41.745,91.1323 +789037,36.76,93.4525 +789038,37.973,92.6891 +789039,39.197,91.9398 +789040,40.429,91.2056 +789041,35.381,93.4064 +789042,36.615,92.6832 +789043,37.859,91.9739 +789044,39.112,91.2794 +789045,34.003,93.3598 +789046,35.257,92.6771 +789047,36.521,92.0081 +789048,37.794,91.3538 +789049,32.626,93.3127 +789050,33.9,92.6708 +789051,35.183,92.0425 +789052,36.474,91.4287 +789053,31.251,93.265 +789054,32.543,92.6643 +789055,33.844,92.077 +789056,35.154,91.5041 +789057,29.876,93.2169 +789058,31.186,92.6575 +789059,32.505,92.1116 +789060,33.832,91.58 +789061,28.503,93.1683 +789062,29.829,92.6506 +789063,31.165,92.1463 +789064,32.51,91.6564 +789065,27.13,93.1192 +789066,28.473,92.6434 +789067,29.825,92.1811 +789068,31.186,91.7331 +789069,25.759,93.0698 +789070,27.117,92.6362 +789071,28.485,92.216 +789072,29.861,91.8103 +789073,24.389,93.02 +789074,25.761,92.6287 +789075,27.144,92.251 +789076,28.535,91.8877 +789077,23.02,92.9699 +789078,24.406,92.6211 +789079,25.803,92.286 +789080,27.208,91.9655 +789081,21.652,92.9195 +789082,23.051,92.6133 +789083,24.461,92.3211 +789084,25.88,92.0436 +789085,20.285,92.8688 +789086,21.697,92.6054 +789087,23.119,92.3562 +789088,24.55,92.1219 +789089,18.919,92.8179 +789090,20.343,92.5974 +789091,21.777,92.3914 +789092,23.22,92.2005 +789093,17.555,92.7668 +789094,18.989,92.5893 +789095,20.434,92.4266 +789096,21.888,92.2792 +789097,16.192,92.7155 +789098,17.636,92.5811 +789099,19.09,92.4617 +789100,20.555,92.3581 +789101,14.83,92.664 +789102,16.283,92.5728 +789103,17.747,92.4969 +789104,19.221,92.4371 +789105,13.469,92.6125 +789106,14.93,92.5645 +789107,16.403,92.5321 +789108,17.885,92.5162 +789109,12.109,92.5609 +789110,13.578,92.556 +789111,15.058,92.5672 +789112,16.548,92.5953 +789113,10.75,92.5093 +789114,12.226,92.5475 +789115,13.713,92.6023 +789116,15.211,92.6745 +789117,9.3931,92.4576 +789118,10.874,92.539 +789119,12.367,92.6374 +789120,13.872,92.7536 +789121,8.037,92.406 +789122,9.5231,92.5304 +789123,11.022,92.6724 +789124,12.531,92.8327 +789125,6.6821,92.3544 +789126,8.1723,92.5218 +789127,9.6752,92.7073 +789128,11.19,92.9117 +789129,5.3283,92.303 +789130,6.8219,92.5132 +789131,8.3285,92.7422 +789132,9.847,92.9906 +789133,3.9758,92.2516 +789134,5.4719,92.5046 +789135,6.9813,92.7769 +789136,8.503,93.0693 +789137,2.6245,92.2004 +789138,4.1223,92.4961 +789139,5.6336,92.8116 +789140,7.1577,93.1478 +789141,1.2744,92.1494 +789142,2.7731,92.4875 +789143,4.2856,92.8461 +789144,5.8112,93.2262 +789145,359.93,92.0986 +789146,1.4242,92.479 +789147,2.937,92.8805 +789148,4.4635,93.3042 +789149,358.58,92.048 +789150,0.075726,92.4705 +789151,1.5881,92.9148 +789152,3.1145,93.382 +789153,357.23,91.9977 +789154,358.73,92.462 +789155,0.23871,92.9489 +789156,1.7642,93.4594 +789157,355.89,91.9478 +789158,357.38,92.4537 +789159,358.89,92.9828 +789160,0.41276,93.5365 +789161,354.54,91.8981 +789162,356.03,92.4454 +789163,357.54,93.0166 +789164,359.06,93.6132 +789165,353.2,91.8489 +789166,354.69,92.4372 +789167,356.19,93.0502 +789168,357.71,93.6894 +789169,351.86,91.8 +789170,353.34,92.429 +789171,354.84,93.0836 +789172,356.35,93.7652 +789173,350.52,91.7516 +789174,351.99,92.421 +789175,353.49,93.1168 +789176,354.99,93.8405 +789177,349.18,91.7036 +789178,350.65,92.4132 +789179,352.13,93.1498 +789180,353.64,93.9153 +789181,347.84,91.6562 +789182,349.3,92.4054 +789183,350.78,93.1826 +789184,352.28,93.9895 +789185,346.5,91.6092 +789186,347.96,92.3978 +789187,349.43,93.2151 +789188,350.92,94.0631 +789189,345.17,91.5628 +789190,346.61,92.3903 +789191,348.07,93.2474 +789192,349.56,94.1361 +789193,343.83,91.517 +789194,345.27,92.383 +789195,346.72,93.2794 +789196,348.19,94.2084 +789197,342.5,91.4718 +789198,343.92,92.3758 +789199,345.37,93.3112 +789200,346.83,94.2801 +789201,341.17,91.4272 +789202,342.58,92.3688 +789203,344.01,93.3426 +789204,345.47,94.351 +789205,339.83,91.3833 +789206,341.24,92.3621 +789207,342.66,93.3738 +789208,344.1,94.4211 +789209,338.5,91.3401 +789210,339.89,92.3555 +789211,341.3,93.4047 +789212,342.73,94.4905 +789213,337.17,91.2976 +789214,338.55,92.3491 +789215,339.95,93.4353 +789216,341.36,94.559 +789217,335.85,91.2558 +789218,337.21,92.3429 +789219,338.59,93.4655 +789220,339.99,94.6267 +789221,334.52,91.2149 +789222,335.87,92.3369 +789223,337.23,93.4955 +789224,338.62,94.6936 +789225,333.19,91.1747 +789226,334.53,92.3312 +789227,335.88,93.5251 +789228,337.25,94.7595 +789229,331.87,91.1353 +789230,333.18,92.3258 +789231,334.52,93.5543 +789232,335.88,94.8244 +789233,330.55,91.0968 +789234,331.84,92.3205 +789235,333.16,93.5832 +789236,334.5,94.8884 +789237,329.22,91.0592 +789238,330.5,92.3156 +789239,331.8,93.6117 +789240,333.13,94.9514 +789241,327.9,91.0224 +789242,329.16,92.3109 +789243,330.45,93.6399 +789244,331.75,95.0134 +789245,326.58,90.9866 +789246,327.82,92.3064 +789247,329.09,93.6676 +789248,330.37,95.0743 +789249,325.26,90.95173 +789250,326.48,92.3023 +789251,327.73,93.695 +789252,329,95.1342 +789253,323.94,90.91782 +789254,325.14,92.2984 +789255,326.37,93.722 +789256,327.62,95.1929 +789257,322.62,90.88491 +789258,323.8,92.2949 +789259,325.01,93.7485 +789260,326.24,95.2505 +789261,321.31,90.85301 +789262,322.47,92.2916 +789263,323.65,93.7747 +789264,324.85,95.307 +789265,319.99,90.82214 +789266,321.13,92.2887 +789267,322.29,93.8004 +789268,323.47,95.3622 +789269,318.67,90.79233 +789270,319.79,92.2861 +789271,320.93,93.8257 +789272,322.09,95.4163 +789273,317.36,90.76359 +789274,318.45,92.2838 +789275,319.56,93.8505 +789276,320.7,95.4691 +789277,316.05,90.73594 +789278,317.11,92.2819 +789279,318.2,93.8749 +789280,319.32,95.5207 +789281,314.73,90.70941 +789282,315.78,92.2803 +789283,316.84,93.8988 +789284,317.93,95.571 +789285,313.42,90.68401 +789286,314.44,92.279 +789287,315.48,93.9223 +789288,316.55,95.62 +789289,312.11,90.65977 +789290,313.1,92.2781 +789291,314.12,93.9453 +789292,315.16,95.6676 +789293,310.8,90.63669 +789294,311.77,92.2775 +789295,312.75,93.9679 +789296,313.77,95.7139 +789297,309.49,90.6148 +789298,310.43,92.2774 +789299,311.39,93.9899 +789300,312.38,95.7589 +789301,308.18,90.59411 +789302,309.09,92.2776 +789303,310.03,94.0115 +789304,310.99,95.8025 +789305,306.87,90.57464 +789306,307.76,92.2781 +789307,308.66,94.0326 +789308,309.6,95.8447 +789309,305.56,90.5564 +789310,306.42,92.2791 +789311,307.3,94.0531 +789312,308.21,95.8855 +789313,304.26,90.5394 +789314,305.09,92.2804 +789315,305.94,94.0732 +789316,306.81,95.9248 +789317,302.95,90.52367 +789318,303.75,92.2821 +789319,304.57,94.0928 +789320,305.42,95.9627 +789321,301.65,90.50922 +789322,302.41,92.2843 +789323,303.21,94.1118 +789324,304.03,95.9991 +789325,300.34,90.49605 +789326,301.08,92.2868 +789327,301.84,94.1304 +789328,302.63,96.0341 +789329,299.04,90.48418 +789330,299.74,92.2897 +789331,300.48,94.1484 +789332,301.23,96.0675 +789333,297.73,90.47362 +789334,298.41,92.2931 +789335,299.11,94.1658 +789336,299.84,96.0995 +789337,296.43,90.46439 +789338,297.08,92.2968 +789339,297.75,94.1828 +789340,298.44,96.1299 +789341,295.12,90.45648 +789342,295.74,92.301 +789343,296.38,94.1992 +789344,297.04,96.1588 +789345,293.82,90.44992 +789346,294.41,92.3056 +789347,295.01,94.2151 +789348,295.65,96.1861 +789349,292.52,90.44471 +789350,293.07,92.3106 +789351,293.65,94.2304 +789352,294.25,96.2119 +789353,291.22,90.44085 +789354,291.74,92.316 +789355,292.28,94.2452 +789356,292.85,96.2362 +789357,289.92,90.43836 +789358,290.4,92.3219 +789359,290.92,94.2594 +789360,291.45,96.2589 +789361,288.61,90.43725 +789362,289.07,92.3281 +789363,289.55,94.2731 +789364,290.05,96.28 +789365,287.31,90.43751 +789366,287.74,92.3349 +789367,288.18,94.2863 +789368,288.65,96.2995 +789369,286.01,90.43916 +789370,286.4,92.342 +789371,286.81,94.2989 +789372,287.25,96.3175 +789373,284.71,90.44219 +789374,285.07,92.3496 +789375,285.45,94.3109 +789376,285.85,96.3338 +789377,283.41,90.44662 +789378,283.74,92.3576 +789379,284.08,94.3224 +789380,284.45,96.3486 +789381,282.11,90.45245 +789382,282.4,92.3661 +789383,282.71,94.3333 +789384,283.05,96.3617 +789385,280.81,90.45967 +789386,281.07,92.375 +789387,281.35,94.3436 +789388,281.65,96.3733 +789389,279.51,90.46829 +789390,279.74,92.3843 +789391,279.98,94.3534 +789392,280.24,96.3832 +789393,278.21,90.47832 +789394,278.4,92.3941 +789395,278.61,94.3627 +789396,278.84,96.3916 +789397,276.91,90.48975 +789398,277.07,92.4043 +789399,277.24,94.3714 +789400,277.44,96.3984 +789401,275.62,90.50258 +789402,275.74,92.4149 +789403,275.88,94.3795 +789404,276.04,96.4035 +789405,274.32,90.51681 +789406,274.4,92.426 +789407,274.51,94.3871 +789408,274.63,96.4071 +789409,273.02,90.53244 +789410,273.07,92.4375 +789411,273.14,94.3941 +789412,273.23,96.4091 +789413,271.72,90.54947 +789414,271.74,92.4495 +789415,271.77,94.4005 +789416,271.83,96.4094 +789417,270.42,90.56789 +789418,270.4,92.4618 +789419,270.41,94.4064 +789420,270.43,96.4082 +789421,269.12,90.5877 +789422,269.07,92.4747 +789423,269.04,94.4117 +789424,269.02,96.4055 +789425,267.82,90.60891 +789426,267.74,92.4879 +789427,267.67,94.4165 +789428,267.62,96.4011 +789429,266.52,90.63149 +789430,266.4,92.5016 +789431,266.3,94.4208 +789432,266.22,96.3952 +789433,265.22,90.65545 +789434,265.07,92.5157 +789435,264.93,94.4245 +789436,264.82,96.3877 +789437,263.92,90.68077 +789438,263.74,92.5302 +789439,263.57,94.4276 +789440,263.41,96.3787 +789441,262.62,90.70746 +789442,262.4,92.5452 +789443,262.2,94.4302 +789444,262.01,96.3681 +789445,261.32,90.7355 +789446,261.07,92.5606 +789447,260.83,94.4323 +789448,260.61,96.3561 +789449,260.02,90.76489 +789450,259.74,92.5764 +789451,259.46,94.4338 +789452,259.21,96.3425 +789453,258.72,90.79562 +789454,258.4,92.5926 +789455,258.1,94.4348 +789456,257.81,96.3274 +789457,257.42,90.82767 +789458,257.07,92.6092 +789459,256.73,94.4353 +789460,256.41,96.3108 +789461,256.12,90.86103 +789462,255.73,92.6262 +789463,255.36,94.4352 +789464,255,96.2927 +789465,254.81,90.89571 +789466,254.4,92.6436 +789467,253.99,94.4346 +789468,253.6,96.2732 +789469,253.51,90.93167 +789470,253.06,92.6614 +789471,252.63,94.4335 +789472,252.2,96.2522 +789473,252.21,90.96891 +789474,251.73,92.6796 +789475,251.26,94.4319 +789476,250.8,96.2298 +789477,250.91,91.0074 +789478,250.39,92.6982 +789479,249.89,94.4298 +789480,249.4,96.206 +789481,249.6,91.0472 +789482,249.06,92.7172 +789483,248.53,94.4272 +789484,248.01,96.1808 +789485,248.3,91.0882 +789486,247.72,92.7365 +789487,247.16,94.4241 +789488,246.61,96.1542 +789489,246.99,91.1304 +789490,246.39,92.7563 +789491,245.79,94.4205 +789492,245.21,96.1262 +789493,245.69,91.1739 +789494,245.05,92.7764 +789495,244.43,94.4164 +789496,243.81,96.0969 +789497,244.38,91.2185 +789498,243.72,92.7968 +789499,243.06,94.4118 +789500,242.41,96.0663 +789501,243.08,91.2643 +789502,242.38,92.8176 +789503,241.7,94.4068 +789504,241.02,96.0344 +789505,241.77,91.3112 +789506,241.05,92.8388 +789507,240.33,94.4013 +789508,239.62,96.0013 +789509,240.46,91.3593 +789510,239.71,92.8603 +789511,238.96,94.3954 +789512,238.23,95.9668 +789513,239.16,91.4085 +789514,238.37,92.8821 +789515,237.6,94.389 +789516,236.83,95.9312 +789517,237.85,91.4588 +789518,237.04,92.9042 +789519,236.23,94.3821 +789520,235.44,95.8943 +789521,236.54,91.5102 +789522,235.7,92.9267 +789523,234.87,94.3748 +789524,234.04,95.8562 +789525,235.23,91.5627 +789526,234.36,92.9495 +789527,233.5,94.3671 +789528,232.65,95.817 +789529,233.92,91.6162 +789530,233.02,92.9726 +789531,232.14,94.359 +789532,231.26,95.7767 +789533,232.6,91.6707 +789534,231.69,92.996 +789535,230.77,94.3505 +789536,229.87,95.7352 +789537,231.29,91.7261 +789538,230.35,93.0197 +789539,229.41,94.3415 +789540,228.48,95.6927 +789541,229.98,91.7826 +789542,229.01,93.0436 +789543,228.05,94.3322 +789544,227.09,95.6491 +789545,228.67,91.84 +789546,227.67,93.0679 +789547,226.68,94.3224 +789548,225.7,95.6044 +789549,227.35,91.8984 +789550,226.33,93.0924 +789551,225.32,94.3123 +789552,224.31,95.5588 +789553,226.03,91.9576 +789554,224.99,93.1172 +789555,223.96,94.3019 +789556,222.93,95.5122 +789557,224.72,92.0177 +789558,223.65,93.1422 +789559,222.59,94.291 +789560,221.54,95.4646 +789561,223.4,92.0786 +789562,222.31,93.1674 +789563,221.23,94.2798 +789564,220.15,95.4162 +789565,222.08,92.1404 +789566,220.97,93.1929 +789567,219.87,94.2683 +789568,218.77,95.3668 +789569,220.76,92.203 +789570,219.63,93.2186 +789571,218.51,94.2564 +789572,217.39,95.3166 +789573,219.44,92.2663 +789574,218.29,93.2445 +789575,217.15,94.2443 +789576,216,95.2656 +789577,218.12,92.3304 +789578,216.95,93.2706 +789579,215.78,94.2318 +789580,214.62,95.2137 +789581,216.8,92.3952 +789582,215.61,93.2969 +789583,214.42,94.2189 +789584,213.24,95.1611 +789585,215.48,92.4607 +789586,214.27,93.3234 +789587,213.06,94.2059 +789588,211.86,95.1078 +789589,214.15,92.5268 +789590,212.93,93.3501 +789591,211.7,94.1925 +789592,210.48,95.0537 +789593,212.83,92.5936 +789594,211.58,93.3769 +789595,210.34,94.1788 +789596,209.11,94.999 +789597,211.5,92.6609 +789598,210.24,93.4039 +789599,208.98,94.1649 +789600,207.73,94.9437 +789601,210.17,92.7289 +789602,208.9,93.431 +789603,207.62,94.1507 +789604,206.35,94.8877 +789605,208.84,92.7973 +789606,207.55,93.4582 +789607,206.27,94.1363 +789608,204.98,94.8311 +789609,207.51,92.8663 +789610,206.21,93.4856 +789611,204.91,94.1217 +789612,203.61,94.774 +789613,206.18,92.9358 +789614,204.86,93.5131 +789615,203.55,94.1068 +789616,202.23,94.7164 +789617,204.85,93.0057 +789618,203.52,93.5407 +789619,202.19,94.0917 +789620,200.86,94.6583 +789621,203.52,93.076 +789622,202.17,93.5684 +789623,200.83,94.0764 +789624,199.49,94.5998 +789625,202.19,93.1467 +789626,200.83,93.5961 +789627,199.48,94.061 +789628,198.12,94.5408 +789629,200.85,93.2178 +789630,199.48,93.6239 +789631,198.12,94.0453 +789632,196.76,94.4815 +789633,199.51,93.2891 +789634,198.14,93.6518 +789635,196.76,94.0295 +789636,195.39,94.4218 +789637,198.18,93.3608 +789638,196.79,93.6797 +789639,195.41,94.0136 +789640,194.03,94.3618 +789641,196.84,93.4327 +789642,195.44,93.7077 +789643,194.05,93.9975 +789644,192.66,94.3015 +789645,195.5,93.5048 +789646,194.1,93.7357 +789647,192.69,93.9812 +789648,191.3,94.241 +789649,194.16,93.5771 +789650,192.75,93.7637 +789651,191.34,93.9649 +789652,189.94,94.1803 +789653,192.82,93.6496 +789654,191.4,93.7917 +789655,189.99,93.9484 +789656,188.58,94.1193 +789657,191.47,93.7222 +789658,190.05,93.8197 +789659,188.63,93.9318 +789660,187.22,94.0583 +789661,190.13,93.7949 +789662,188.7,93.8476 +789663,187.28,93.9151 +789664,185.86,93.9971 +789665,188.78,93.8676 +789666,187.35,93.8756 +789667,185.92,93.8984 +789668,184.5,93.9358 +789669,187.44,93.9404 +789670,186,93.9034 +789671,184.57,93.8816 +789672,183.14,93.8745 +789673,186.09,94.0131 +789674,184.65,93.9313 +789675,183.22,93.8647 +789676,181.79,93.8132 +789677,184.74,94.0858 +789678,183.3,93.959 +789679,181.87,93.8478 +789680,180.44,93.7519 +789681,183.39,94.1584 +789682,181.95,93.9867 +789683,180.51,93.8309 +789684,179.08,93.6906 +789685,182.04,94.2309 +789686,180.6,94.0143 +789687,179.16,93.8139 +789688,177.73,93.6295 +789689,180.69,94.3032 +789690,179.25,94.0418 +789691,177.81,93.797 +789692,176.38,93.5684 +789693,179.33,94.3754 +789694,177.89,94.0692 +789695,176.46,93.78 +789696,175.03,93.5075 +789697,177.98,94.4473 +789698,176.54,94.0965 +789699,175.11,93.763 +789700,173.68,93.4468 +789701,176.62,94.519 +789702,175.19,94.1236 +789703,173.76,93.7461 +789704,172.34,93.3863 +789705,175.26,94.5903 +789706,173.83,94.1506 +789707,172.41,93.7292 +789708,170.99,93.326 +789709,173.9,94.6614 +789710,172.48,94.1774 +789711,171.06,93.7124 +789712,169.65,93.2661 +789713,172.54,94.7321 +789714,171.13,94.204 +789715,169.71,93.6956 +789716,168.3,93.2064 +789717,171.18,94.8024 +789718,169.77,94.2305 +789719,168.36,93.6788 +789720,166.96,93.1471 +789721,169.82,94.8723 +789722,168.42,94.2568 +789723,167.02,93.6622 +789724,165.62,93.0882 +789725,168.46,94.9417 +789726,167.06,94.2828 +789727,165.67,93.6456 +789728,164.28,93.0297 +789729,167.09,95.0107 +789730,165.7,94.3087 +789731,164.32,93.6292 +789732,162.94,92.9716 +789733,165.73,95.0791 +789734,164.35,94.3343 +789735,162.97,93.6128 +789736,161.61,92.914 +789737,164.36,95.1469 +789738,162.99,94.3597 +789739,161.63,93.5966 +789740,160.27,92.8568 +789741,162.99,95.2141 +789742,161.63,94.3849 +789743,160.28,93.5805 +789744,158.93,92.8002 +789745,161.62,95.2808 +789746,160.28,94.4098 +789747,158.93,93.5645 +789748,157.6,92.7442 +789749,160.25,95.3467 +789750,158.92,94.4344 +789751,157.59,93.5487 +789752,156.27,92.6888 +789753,158.88,95.412 +789754,157.56,94.4587 +789755,156.24,93.5331 +789756,154.93,92.634 +789757,157.51,95.4765 +789758,156.2,94.4828 +789759,154.9,93.5176 +789760,153.6,92.5798 +789761,156.14,95.5403 +789762,154.84,94.5066 +789763,153.55,93.5023 +789764,152.27,92.5263 +789765,154.76,95.6033 +789766,153.48,94.53 +789767,152.21,93.4872 +789768,150.95,92.4735 +789769,153.39,95.6655 +789770,152.12,94.5531 +789771,150.87,93.4723 +789772,149.62,92.4214 +789773,152.01,95.7268 +789774,150.76,94.5759 +789775,149.52,93.4576 +789776,148.29,92.3701 +789777,150.63,95.7872 +789778,149.4,94.5984 +789779,148.18,93.4432 +789780,146.96,92.3196 +789781,149.25,95.8468 +789782,148.04,94.6205 +789783,146.84,93.4289 +789784,145.64,92.2699 +789785,147.87,95.9053 +789786,146.68,94.6423 +789787,145.49,93.4149 +789788,144.32,92.2211 +789789,146.49,95.963 +789790,145.32,94.6637 +789791,144.15,93.4011 +789792,142.99,92.173 +789793,145.11,96.0196 +789794,143.96,94.6847 +789795,142.81,93.3876 +789796,141.67,92.1259 +789797,143.73,96.0751 +789798,142.59,94.7053 +789799,141.47,93.3744 +789800,140.35,92.0797 +789801,142.35,96.1297 +789802,141.23,94.7255 +789803,140.13,93.3614 +789804,139.03,92.0345 +789805,140.96,96.1831 +789806,139.87,94.7453 +789807,138.79,93.3487 +789808,137.71,91.9902 +789809,139.58,96.2354 +789810,138.51,94.7648 +789811,137.45,93.3363 +789812,136.39,91.9468 +789813,138.19,96.2866 +789814,137.14,94.7838 +789815,136.1,93.3242 +789816,135.08,91.9045 +789817,136.8,96.3366 +789818,135.78,94.8023 +789819,134.76,93.3124 +789820,133.76,91.8632 +789821,135.41,96.3854 +789822,134.41,94.8205 +789823,133.42,93.3009 +789824,132.44,91.823 +789825,134.03,96.4331 +789826,133.05,94.8381 +789827,132.09,93.2898 +789828,131.13,91.7838 +789829,132.64,96.4794 +789830,131.69,94.8554 +789831,130.75,93.2789 +789832,129.81,91.7457 +789833,131.24,96.5245 +789834,130.32,94.8721 +789835,129.41,93.2684 +789836,128.5,91.7088 +789837,129.85,96.5683 +789838,128.96,94.8884 +789839,128.07,93.2582 +789840,127.19,91.6729 +789841,128.46,96.6108 +789842,127.59,94.9043 +789843,126.73,93.2484 +789844,125.88,91.6382 +789845,127.07,96.652 +789846,126.23,94.9196 +789847,125.39,93.2389 +789848,124.56,91.6047 +789849,125.68,96.6918 +789850,124.86,94.9345 +789851,124.05,93.2298 +789852,123.25,91.5724 +789853,124.28,96.7303 +789854,123.49,94.9489 +789855,122.71,93.221 +789856,121.94,91.5412 +789857,122.89,96.7673 +789858,122.13,94.9627 +789859,121.38,93.2127 +789860,120.63,91.5113 +789861,121.49,96.8029 +789862,120.76,94.9761 +789863,120.04,93.2046 +789864,119.32,91.4826 +789865,120.09,96.8371 +789866,119.39,94.989 +789867,118.7,93.197 +789868,118.02,91.4552 +789869,118.7,96.8699 +789870,118.03,95.0013 +789871,117.36,93.1898 +789872,116.71,91.429 +789873,117.3,96.9012 +789874,116.66,95.0131 +789875,116.03,93.1829 +789876,115.4,91.4041 +789877,115.9,96.931 +789878,115.29,95.0244 +789879,114.69,93.1765 +789880,114.09,91.3804 +789881,114.5,96.9593 +789882,113.93,95.0352 +789883,113.35,93.1704 +789884,112.79,91.3581 +789885,113.11,96.9861 +789886,112.56,95.0454 +789887,112.02,93.1648 +789888,111.48,91.3371 +789889,111.71,97.0113 +789890,111.19,95.0551 +789891,110.68,93.1595 +789892,110.18,91.3175 +789893,110.31,97.0351 +789894,109.82,95.0642 +789895,109.34,93.1547 +789896,108.87,91.2991 +789897,108.91,97.0572 +789898,108.45,95.0728 +789899,108.01,93.1503 +789900,107.57,91.2821 +789901,107.51,97.0779 +789902,107.09,95.0808 +789903,106.67,93.1462 +789904,106.26,91.2665 +789905,106.11,97.0969 +789906,105.72,95.0883 +789907,105.34,93.1427 +789908,104.96,91.2522 +789909,104.7,97.1143 +789910,104.35,95.0952 +789911,104,93.1395 +789912,103.66,91.2393 +789913,103.3,97.1302 +789914,102.98,95.1016 +789915,102.66,93.1368 +789916,102.35,91.2278 +789917,101.9,97.1445 +789918,101.61,95.1074 +789919,101.33,93.1345 +789920,101.05,91.2176 +789921,100.5,97.1571 +789922,100.24,95.1127 +789923,99.994,93.1326 +789924,99.747,91.2089 +789925,99.097,97.1682 +789926,98.875,95.1173 +789927,98.658,93.1312 +789928,98.445,91.2015 +789929,97.695,97.1776 +789930,97.507,95.1214 +789931,97.323,93.1302 +789932,97.142,91.1955 +789933,96.292,97.1854 +789934,96.138,95.125 +789935,95.987,93.1296 +789936,95.84,91.191 +789937,94.89,97.1916 +789938,94.769,95.1279 +789939,94.652,93.1294 +789940,94.538,91.1878 +789941,93.487,97.1961 +789942,93.4,95.1303 +789943,93.316,93.1297 +789944,93.236,91.1861 +789945,92.084,97.199 +789946,92.031,95.1321 +789947,91.981,93.1305 +789948,91.934,91.1857 +789949,90.681,97.2003 +789950,90.662,95.1334 +789951,90.646,93.1317 +789952,90.632,91.1868 +789953,89.279,97.1999 +789954,89.293,95.1341 +789955,89.31,93.1333 +789956,89.33,91.1893 +789957,87.876,97.198 +789958,87.924,95.1342 +789959,87.975,93.1353 +789960,88.027,91.1932 +789961,86.473,97.1943 +789962,86.555,95.1337 +789963,86.64,93.1378 +789964,86.725,91.1985 +789965,85.07,97.1891 +789966,85.187,95.1327 +789967,85.304,93.1407 +789968,85.423,91.2052 +789969,83.668,97.1822 +789970,83.818,95.131 +789971,83.969,93.1441 +789972,84.121,91.2133 +789973,82.265,97.1737 +789974,82.449,95.1289 +789975,82.633,93.1479 +789976,82.818,91.2228 +789977,80.863,97.1637 +789978,81.08,95.1261 +789979,81.298,93.1521 +789980,81.516,91.2337 +789981,79.461,97.1519 +789982,79.711,95.1228 +789983,79.962,93.1568 +789984,80.213,91.246 +789985,78.059,97.1386 +789986,78.343,95.1189 +789987,78.626,93.1618 +789988,78.91,91.2597 +789989,76.657,97.1237 +789990,76.974,95.1145 +789991,77.291,93.1674 +789992,77.607,91.2748 +789993,75.256,97.1073 +789994,75.606,95.1095 +789995,75.955,93.1733 +789996,76.303,91.2913 +789997,73.855,97.0892 +789998,74.237,95.1039 +789999,74.619,93.1797 +790000,75,91.3091 +790001,72.454,97.0696 +790002,72.869,95.0978 +790003,73.283,93.1864 +790004,73.696,91.3282 +790005,71.053,97.0484 +790006,71.501,95.0912 +790007,71.947,93.1936 +790008,72.391,91.3488 +790009,69.653,97.0257 +790010,70.133,95.084 +790011,70.61,93.2012 +790012,71.086,91.3706 +790013,68.254,97.0014 +790014,68.765,95.0762 +790015,69.274,93.2092 +790016,69.781,91.3938 +790017,66.855,96.9757 +790018,67.397,95.068 +790019,67.938,93.2177 +790020,68.476,91.4183 +790021,65.456,96.9484 +790022,66.03,95.0592 +790023,66.601,93.2265 +790024,67.17,91.4441 +790025,64.058,96.9197 +790026,64.662,95.0498 +790027,65.264,93.2357 +790028,65.863,91.4713 +790029,62.66,96.8895 +790030,63.295,95.04 +790031,63.927,93.2453 +790032,64.556,91.4997 +790033,61.263,96.8578 +790034,61.928,95.0296 +790035,62.59,93.2553 +790036,63.249,91.5293 +790037,59.866,96.8247 +790038,60.561,95.0187 +790039,61.252,93.2657 +790040,61.941,91.5602 +790041,58.47,96.7902 +790042,59.194,95.0073 +790043,59.915,93.2764 +790044,60.632,91.5924 +790045,57.075,96.7543 +790046,57.828,94.9954 +790047,58.577,93.2876 +790048,59.323,91.6258 +790049,55.68,96.717 +790050,56.462,94.983 +790051,57.239,93.2991 +790052,58.013,91.6604 +790053,54.286,96.6783 +790054,55.096,94.9701 +790055,55.901,93.3109 +790056,56.702,91.6961 +790057,52.892,96.6383 +790058,53.73,94.9567 +790059,54.562,93.3231 +790060,55.391,91.7331 +790061,51.5,96.5971 +790062,52.364,94.9429 +790063,53.224,93.3357 +790064,54.08,91.7712 +790065,50.108,96.5545 +790066,50.999,94.9286 +790067,51.885,93.3486 +790068,52.767,91.8105 +790069,48.716,96.5106 +790070,49.634,94.9138 +790071,50.546,93.3618 +790072,51.454,91.8508 +790073,47.326,96.4655 +790074,48.269,94.8986 +790075,49.206,93.3754 +790076,50.14,91.8923 +790077,45.936,96.4192 +790078,46.904,94.8829 +790079,47.867,93.3892 +790080,48.825,91.9348 +790081,44.547,96.3717 +790082,45.54,94.8668 +790083,46.527,93.4034 +790084,47.51,91.9785 +790085,43.159,96.323 +790086,44.176,94.8502 +790087,45.187,93.4179 +790088,46.193,92.0231 +790089,41.772,96.2732 +790090,42.812,94.8333 +790091,43.846,93.4327 +790092,44.876,92.0688 +790093,40.386,96.2222 +790094,41.448,94.8159 +790095,42.506,93.4478 +790096,43.558,92.1154 +790097,39,96.1702 +790098,40.085,94.7981 +790099,41.165,93.4632 +790100,42.239,92.163 +790101,37.616,96.1171 +790102,38.722,94.7799 +790103,39.823,93.4788 +790104,40.92,92.2116 +790105,36.232,96.0629 +790106,37.36,94.7613 +790107,38.482,93.4947 +790108,39.599,92.2611 +790109,34.85,96.0078 +790110,35.998,94.7424 +790111,37.14,93.5109 +790112,38.277,92.3115 +790113,33.468,95.9517 +790114,34.636,94.723 +790115,35.798,93.5273 +790116,36.955,92.3627 +790117,32.087,95.8946 +790118,33.274,94.7034 +790119,34.455,93.5439 +790120,35.631,92.4148 +790121,30.708,95.8366 +790122,31.913,94.6833 +790123,33.112,93.5608 +790124,34.307,92.4678 +790125,29.329,95.7777 +790126,30.552,94.6629 +790127,31.769,93.5779 +790128,32.982,92.5215 +790129,27.951,95.718 +790130,29.191,94.6422 +790131,30.426,93.5952 +790132,31.655,92.576 +790133,26.575,95.6575 +790134,27.831,94.6212 +790135,29.082,93.6128 +790136,30.328,92.6312 +790137,25.199,95.5961 +790138,26.471,94.5998 +790139,27.738,93.6305 +790140,28.999,92.6872 +790141,23.825,95.534 +790142,25.111,94.5782 +790143,26.393,93.6484 +790144,27.67,92.7438 +790145,22.451,95.4711 +790146,23.752,94.5562 +790147,25.048,93.6665 +790148,26.34,92.8011 +790149,21.079,95.4076 +790150,22.393,94.534 +790151,23.703,93.6847 +790152,25.008,92.8591 +790153,19.708,95.3434 +790154,21.035,94.5115 +790155,22.358,93.7031 +790156,23.675,92.9176 +790157,18.338,95.2785 +790158,19.677,94.4887 +790159,21.012,93.7216 +790160,22.342,92.9767 +790161,16.969,95.2131 +790162,18.319,94.4657 +790163,19.665,93.7403 +790164,21.007,93.0363 +790165,15.601,95.1471 +790166,16.962,94.4425 +790167,18.319,93.7591 +790168,19.671,93.0965 +790169,14.234,95.0805 +790170,15.605,94.419 +790171,16.972,93.778 +790172,18.334,93.1571 +790173,12.869,95.0135 +790174,14.248,94.3953 +790175,15.624,93.797 +790176,16.996,93.2182 +790177,11.504,94.9459 +790178,12.892,94.3714 +790179,14.277,93.816 +790180,15.657,93.2797 +790181,10.141,94.878 +790182,11.536,94.3473 +790183,12.928,93.8352 +790184,14.316,93.3415 +790185,8.7787,94.8096 +790186,10.181,94.323 +790187,11.58,93.8545 +790188,12.975,93.4038 +790189,7.4178,94.7409 +790190,8.8258,94.2986 +790191,10.231,93.8738 +790192,11.632,93.4663 +790193,6.058,94.6719 +790194,7.4711,94.274 +790195,8.8816,93.8931 +790196,10.288,93.5292 +790197,4.6994,94.6025 +790198,6.1169,94.2492 +790199,7.532,93.9125 +790200,8.9431,93.5923 +790201,3.3419,94.5329 +790202,4.7631,94.2243 +790203,6.1819,93.9319 +790204,7.5969,93.6557 +790205,1.9857,94.463 +790206,3.4097,94.1993 +790207,4.8315,93.9513 +790208,6.2496,93.7192 +790209,0.63062,94.393 +790210,2.0566,94.1741 +790211,3.4806,93.9708 +790212,4.9011,93.7829 +790213,359.28,94.3228 +790214,0.70401,94.1488 +790215,2.1294,93.9902 +790216,3.5514,93.8467 +790217,357.92,94.2525 +790218,359.35,94.1235 +790219,0.77782,94.0096 +790220,2.2006,93.9106 +790221,356.57,94.1821 +790222,358,94.0981 +790223,359.43,94.029 +790224,0.84853,93.9746 +790225,355.22,94.1116 +790226,356.65,94.0726 +790227,358.07,94.0483 +790228,359.5,94.0386 +790229,353.87,94.0411 +790230,355.3,94.047 +790231,356.72,94.0676 +790232,358.14,94.1026 +790233,352.53,93.9706 +790234,353.95,94.0214 +790235,355.37,94.0868 +790236,356.79,94.1666 +790237,351.18,93.9002 +790238,352.6,93.9957 +790239,354.01,94.1059 +790240,355.43,94.2305 +790241,349.83,93.8298 +790242,351.25,93.9701 +790243,352.66,94.125 +790244,354.07,94.2943 +790245,348.49,93.7596 +790246,349.9,93.9444 +790247,351.31,94.1439 +790248,352.71,94.3579 +790249,347.15,93.6894 +790250,348.55,93.9187 +790251,349.95,94.1628 +790252,351.35,94.4214 +790253,345.8,93.6195 +790254,347.2,93.893 +790255,348.6,94.1815 +790256,349.99,94.4846 +790257,344.46,93.5498 +790258,345.85,93.8673 +790259,347.24,94.2001 +790260,348.63,94.5477 +790261,343.12,93.4803 +790262,344.5,93.8417 +790263,345.88,94.2185 +790264,347.26,94.6104 +790265,341.78,93.4111 +790266,343.16,93.8161 +790267,344.53,94.2368 +790268,345.9,94.6728 +790269,340.45,93.3422 +790270,341.81,93.7906 +790271,343.17,94.2549 +790272,344.53,94.7349 +790273,339.11,93.2737 +790274,340.46,93.7651 +790275,341.82,94.2729 +790276,343.17,94.7967 +790277,337.77,93.2055 +790278,339.12,93.7397 +790279,340.46,94.2906 +790280,341.8,94.858 +790281,336.44,93.1378 +790282,337.77,93.7144 +790283,339.1,94.3082 +790284,340.43,94.9188 +790285,335.11,93.0704 +790286,336.42,93.6892 +790287,337.74,94.3255 +790288,339.06,94.9792 +790289,333.78,93.0036 +790290,335.08,93.6641 +790291,336.38,94.3427 +790292,337.69,95.0391 +790293,332.44,92.9372 +790294,333.73,93.6391 +790295,335.02,94.3596 +790296,336.31,95.0985 +790297,331.11,92.8714 +790298,332.39,93.6142 +790299,333.67,94.3762 +790300,334.94,95.1572 +790301,329.79,92.8061 +790302,331.05,93.5895 +790303,332.31,94.3926 +790304,333.56,95.2154 +790305,328.46,92.7414 +790306,329.7,93.5649 +790307,330.95,94.4088 +790308,332.19,95.2729 +790309,327.13,92.6774 +790310,328.36,93.5405 +790311,329.59,94.4247 +790312,330.81,95.3297 +790313,325.81,92.614 +790314,327.02,93.5163 +790315,328.23,94.4402 +790316,329.43,95.3859 +790317,324.48,92.5512 +790318,325.67,93.4922 +790319,326.87,94.4555 +790320,328.05,95.4413 +790321,323.16,92.4892 +790322,324.33,93.4684 +790323,325.5,94.4705 +790324,326.67,95.4959 +790325,321.84,92.4279 +790326,322.99,93.4447 +790327,324.14,94.4852 +790328,325.29,95.5498 +790329,320.51,92.3674 +790330,321.65,93.4212 +790331,322.78,94.4995 +790332,323.91,95.6028 +790333,319.19,92.3076 +790334,320.31,93.398 +790335,321.42,94.5136 +790336,322.53,95.655 +790337,317.87,92.2487 +790338,318.97,93.3749 +790339,320.06,94.5272 +790340,321.14,95.7062 +790341,316.55,92.1906 +790342,317.63,93.3522 +790343,318.69,94.5406 +790344,319.76,95.7566 +790345,315.24,92.1334 +790346,316.28,93.3296 +790347,317.33,94.5535 +790348,318.37,95.806 +790349,313.92,92.077 +790350,314.94,93.3073 +790351,315.97,94.5661 +790352,316.99,95.8544 +790353,312.6,92.0216 +790354,313.61,93.2853 +790355,314.6,94.5783 +790356,315.6,95.9019 +790357,311.29,91.9672 +790358,312.27,93.2636 +790359,313.24,94.5901 +790360,314.21,95.9483 +790361,309.97,91.9136 +790362,310.93,93.2421 +790363,311.88,94.6016 +790364,312.82,95.9936 +790365,308.66,91.8611 +790366,309.59,93.2209 +790367,310.51,94.6126 +790368,311.43,96.0379 +790369,307.35,91.8096 +790370,308.25,93.2 +790371,309.15,94.6232 +790372,310.04,96.081 +790373,306.03,91.7591 +790374,306.91,93.1794 +790375,307.78,94.6334 +790376,308.65,96.123 +790377,304.72,91.7097 +790378,305.57,93.1591 +790379,306.42,94.6431 +790380,307.26,96.1638 +790381,303.41,91.6613 +790382,304.23,93.1392 +790383,305.05,94.6524 +790384,305.87,96.2035 +790385,302.1,91.614 +790386,302.9,93.1195 +790387,303.69,94.6613 +790388,304.47,96.2419 +790389,300.79,91.5679 +790390,301.56,93.1002 +790391,302.32,94.6697 +790392,303.08,96.2791 +790393,299.48,91.5229 +790394,300.22,93.0813 +790395,300.96,94.6777 +790396,301.68,96.3151 +790397,298.18,91.479 +790398,298.89,93.0627 +790399,299.59,94.6852 +790400,300.29,96.3497 +790401,296.87,91.4363 +790402,297.55,93.0444 +790403,298.22,94.6922 +790404,298.89,96.3831 +790405,295.56,91.3948 +790406,296.21,93.0265 +790407,296.86,94.6987 +790408,297.49,96.4151 +790409,294.26,91.3545 +790410,294.88,93.0089 +790411,295.49,94.7048 +790412,296.1,96.4458 +790413,292.95,91.3154 +790414,293.54,92.9918 +790415,294.12,94.7103 +790416,294.7,96.4751 +790417,291.64,91.2775 +790418,292.2,92.975 +790419,292.76,94.7154 +790420,293.3,96.503 +790421,290.34,91.2409 +790422,290.87,92.9586 +790423,291.39,94.7199 +790424,291.9,96.5296 +790425,289.04,91.2056 +790426,289.53,92.9425 +790427,290.02,94.724 +790428,290.5,96.5547 +790429,287.73,91.1715 +790430,288.2,92.9269 +790431,288.65,94.7275 +790432,289.1,96.5783 +790433,286.43,91.1388 +790434,286.86,92.9116 +790435,287.29,94.7305 +790436,287.7,96.6006 +790437,285.13,91.1073 +790438,285.53,92.8968 +790439,285.92,94.733 +790440,286.3,96.6213 +790441,283.82,91.0771 +790442,284.19,92.8824 +790443,284.55,94.735 +790444,284.9,96.6406 +790445,282.52,91.0483 +790446,282.86,92.8683 +790447,283.18,94.7364 +790448,283.5,96.6583 +790449,281.22,91.0208 +790450,281.52,92.8547 +790451,281.82,94.7373 +790452,282.1,96.6746 +790453,279.92,90.99468 +790454,280.19,92.8415 +790455,280.45,94.7377 +790456,280.7,96.6893 +790457,278.62,90.96989 +790458,278.85,92.8287 +790459,279.08,94.7375 +790460,279.3,96.7025 +790461,277.31,90.94646 +790462,277.52,92.8163 +790463,277.71,94.7367 +790464,277.89,96.7141 +790465,276.01,90.9244 +790466,276.18,92.8044 +790467,276.34,94.7354 +790468,276.49,96.7242 +790469,274.71,90.90371 +790470,274.85,92.7929 +790471,274.98,94.7336 +790472,275.09,96.7327 +790473,273.41,90.88441 +790474,273.52,92.7818 +790475,273.61,94.7312 +790476,273.69,96.7396 +790477,272.11,90.8665 +790478,272.18,92.7711 +790479,272.24,94.7283 +790480,272.28,96.745 +790481,270.81,90.84998 +790482,270.85,92.7609 +790483,270.87,94.7247 +790484,270.88,96.7487 +790485,269.51,90.83486 +790486,269.51,92.7511 +790487,269.5,94.7207 +790488,269.48,96.7509 +790489,268.21,90.82113 +790490,268.18,92.7418 +790491,268.14,94.716 +790492,268.08,96.7514 +790493,266.91,90.80881 +790494,266.85,92.7328 +790495,266.77,94.7109 +790496,266.67,96.7504 +790497,265.61,90.7979 +790498,265.51,92.7244 +790499,265.4,94.7051 +790500,265.27,96.7477 +790501,264.31,90.78839 +790502,264.18,92.7163 +790503,264.03,94.6988 +790504,263.87,96.7434 +790505,263.01,90.78029 +790506,262.84,92.7087 +790507,262.66,94.6919 +790508,262.47,96.7376 +790509,261.71,90.77359 +790510,261.51,92.7016 +790511,261.3,94.6844 +790512,261.06,96.7301 +790513,260.41,90.7683 +790514,260.17,92.6948 +790515,259.93,94.6764 +790516,259.66,96.721 +790517,259.11,90.76441 +790518,258.84,92.6885 +790519,258.56,94.6678 +790520,258.26,96.7102 +790521,257.8,90.76193 +790522,257.51,92.6827 +790523,257.19,94.6587 +790524,256.86,96.6979 +790525,256.5,90.76084 +790526,256.17,92.6773 +790527,255.82,94.649 +790528,255.46,96.684 +790529,255.2,90.76115 +790530,254.84,92.6723 +790531,254.46,94.6387 +790532,254.06,96.6684 +790533,253.9,90.76285 +790534,253.5,92.6677 +790535,253.09,94.6279 +790536,252.66,96.6513 +790537,252.6,90.76593 +790538,252.17,92.6636 +790539,251.72,94.6165 +790540,251.26,96.6325 +790541,251.3,90.7704 +790542,250.83,92.6599 +790543,250.35,94.6046 +790544,249.86,96.6122 +790545,249.99,90.77623 +790546,249.5,92.6567 +790547,248.99,94.5921 +790548,248.46,96.5903 +790549,248.69,90.78344 +790550,248.16,92.6538 +790551,247.62,94.579 +790552,247.06,96.5668 +790553,247.39,90.792 +790554,246.83,92.6514 +790555,246.25,94.5654 +790556,245.66,96.5418 +790557,246.08,90.80191 +790558,245.49,92.6494 +790559,244.89,94.5513 +790560,244.26,96.5152 +790561,244.78,90.81316 +790562,244.16,92.6478 +790563,243.52,94.5366 +790564,242.86,96.487 +790565,243.47,90.82574 +790566,242.82,92.6467 +790567,242.16,94.5214 +790568,241.47,96.4573 +790569,242.17,90.83964 +790570,241.49,92.6459 +790571,240.79,94.5056 +790572,240.07,96.4261 +790573,240.86,90.85486 +790574,240.15,92.6456 +790575,239.42,94.4894 +790576,238.67,96.3934 +790577,239.56,90.87137 +790578,238.82,92.6456 +790579,238.06,94.4726 +790580,237.28,96.3592 +790581,238.25,90.88916 +790582,237.48,92.6461 +790583,236.69,94.4552 +790584,235.88,96.3236 +790585,236.94,90.90823 +790586,236.14,92.6469 +790587,235.33,94.4374 +790588,234.49,96.2864 +790589,235.64,90.92855 +790590,234.81,92.6482 +790591,233.96,94.419 +790592,233.09,96.2478 +790593,234.33,90.95012 +790594,233.47,92.6498 +790595,232.6,94.4002 +790596,231.7,96.2078 +790597,233.02,90.97292 +790598,232.14,92.6518 +790599,231.23,94.3808 +790600,230.31,96.1664 +790601,231.71,90.99693 +790602,230.8,92.6542 +790603,229.87,94.361 +790604,228.92,96.1236 +790605,230.4,91.0221 +790606,229.46,92.6569 +790607,228.51,94.3406 +790608,227.53,96.0793 +790609,229.09,91.0485 +790610,228.12,92.66 +790611,227.14,94.3198 +790612,226.14,96.0338 +790613,227.77,91.0761 +790614,226.79,92.6635 +790615,225.78,94.2985 +790616,224.75,95.9869 +790617,226.46,91.1048 +790618,225.45,92.6673 +790619,224.42,94.2768 +790620,223.36,95.9387 +790621,225.15,91.1346 +790622,224.11,92.6714 +790623,223.05,94.2545 +790624,221.98,95.8892 +790625,223.83,91.1655 +790626,222.77,92.6759 +790627,221.69,94.2318 +790628,220.59,95.8384 +790629,222.52,91.1975 +790630,221.43,92.6807 +790631,220.33,94.2087 +790632,219.2,95.7864 +790633,221.2,91.2306 +790634,220.09,92.6859 +790635,218.97,94.1851 +790636,217.82,95.7332 +790637,219.88,91.2648 +790638,218.75,92.6913 +790639,217.61,94.1611 +790640,216.44,95.6787 +790641,218.57,91.2999 +790642,217.41,92.6971 +790643,216.24,94.1367 +790644,215.05,95.6231 +790645,217.25,91.3361 +790646,216.07,92.7032 +790647,214.88,94.1119 +790648,213.67,95.5664 +790649,215.93,91.3732 +790650,214.73,92.7095 +790651,213.52,94.0866 +790652,212.29,95.5085 +790653,214.61,91.4113 +790654,213.39,92.7162 +790655,212.16,94.061 +790656,210.91,95.4495 +790657,213.29,91.4504 +790658,212.05,92.7231 +790659,210.8,94.0349 +790660,209.53,95.3895 +790661,211.96,91.4903 +790662,210.71,92.7303 +790663,209.44,94.0085 +790664,208.16,95.3284 +790665,210.64,91.5312 +790666,209.37,92.7377 +790667,208.09,93.9817 +790668,206.78,95.2663 +790669,209.32,91.5729 +790670,208.03,92.7454 +790671,206.73,93.9546 +790672,205.41,95.2033 +790673,207.99,91.6154 +790674,206.69,92.7534 +790675,205.37,93.927 +790676,204.03,95.1392 +790677,206.66,91.6588 +790678,205.35,92.7616 +790679,204.01,93.8992 +790680,202.66,95.0743 +790681,205.34,91.7029 +790682,204,92.77 +790683,202.65,93.871 +790684,201.29,95.0085 +790685,204.01,91.7478 +790686,202.66,92.7786 +790687,201.3,93.8425 +790688,199.92,94.9418 +790689,202.68,91.7934 +790690,201.32,92.7874 +790691,199.94,93.8136 +790692,198.55,94.8742 +790693,201.35,91.8398 +790694,199.97,92.7965 +790695,198.58,93.7845 +790696,197.18,94.8059 +790697,200.01,91.8868 +790698,198.63,92.8057 +790699,197.23,93.755 +790700,195.81,94.7368 +790701,198.68,91.9344 +790702,197.28,92.8151 +790703,195.87,93.7253 +790704,194.44,94.667 +790705,197.35,91.9827 +790706,195.94,92.8247 +790707,194.52,93.6953 +790708,193.08,94.5964 +790709,196.01,92.0316 +790710,194.59,92.8344 +790711,193.16,93.665 +790712,191.71,94.5252 +790713,194.68,92.0811 +790714,193.25,92.8443 +790715,191.81,93.6345 +790716,190.35,94.4533 +790717,193.34,92.131 +790718,191.9,92.8543 +790719,190.45,93.6038 +790720,188.99,94.3809 +790721,192,92.1815 +790722,190.56,92.8644 +790723,189.1,93.5728 +790724,187.63,94.3078 +790725,190.66,92.2325 +790726,189.21,92.8747 +790727,187.75,93.5415 +790728,186.27,94.2342 +790729,189.32,92.2839 +790730,187.86,92.885 +790731,186.39,93.5101 +790732,184.91,94.1602 +790733,187.98,92.3357 +790734,186.52,92.8955 +790735,185.04,93.4785 +790736,183.56,94.0856 +790737,186.63,92.3879 +790738,185.17,92.9061 +790739,183.69,93.4466 +790740,182.2,94.0106 +790741,185.29,92.4405 +790742,183.82,92.9167 +790743,182.34,93.4146 +790744,180.85,93.9352 +790745,183.94,92.4934 +790746,182.47,92.9274 +790747,180.99,93.3825 +790748,179.49,93.8594 +790749,182.6,92.5466 +790750,181.12,92.9382 +790751,179.64,93.3501 +790752,178.14,93.7833 +790753,181.25,92.6 +790754,179.77,92.949 +790755,178.29,93.3177 +790756,176.79,93.7069 +790757,179.9,92.6537 +790758,178.42,92.9598 +790759,176.94,93.2851 +790760,175.44,93.6302 +790761,178.55,92.7075 +790762,177.07,92.9707 +790763,175.59,93.2523 +790764,174.09,93.5532 +790765,177.2,92.7615 +790766,175.72,92.9815 +790767,174.24,93.2195 +790768,172.75,93.4761 +790769,175.84,92.8157 +790770,174.37,92.9924 +790771,172.89,93.1866 +790772,171.4,93.3988 +790773,174.49,92.87 +790774,173.02,93.0033 +790775,171.54,93.1535 +790776,170.06,93.3214 +790777,173.13,92.9243 +790778,171.67,93.0141 +790779,170.2,93.1204 +790780,168.71,93.2439 +790781,171.78,92.9787 +790782,170.32,93.0249 +790783,168.85,93.0873 +790784,167.37,93.1663 +790785,170.42,93.033 +790786,168.97,93.0357 +790787,167.5,93.054 +790788,166.03,93.0887 +790789,169.06,93.0874 +790790,167.61,93.0464 +790791,166.16,93.0208 +790792,164.69,93.0111 +790793,167.7,93.1416 +790794,166.26,93.0571 +790795,164.81,92.9875 +790796,163.35,92.9335 +790797,166.34,93.1958 +790798,164.91,93.0676 +790799,163.47,92.9541 +790800,162.02,92.856 +790801,164.98,93.2499 +790802,163.55,93.0781 +790803,162.12,92.9208 +790804,160.68,92.7786 +790805,163.61,93.3037 +790806,162.2,93.0885 +790807,160.78,92.8875 +790808,159.35,92.7014 +790809,162.25,93.3574 +790810,160.84,93.0988 +790811,159.43,92.8542 +790812,158.01,92.6243 +790813,160.88,93.4109 +790814,159.49,93.109 +790815,158.09,92.8209 +790816,156.68,92.5475 +790817,159.52,93.4641 +790818,158.13,93.119 +790819,156.75,92.7876 +790820,155.35,92.4708 +790821,158.15,93.5171 +790822,156.78,93.1289 +790823,155.4,92.7544 +790824,154.02,92.3945 +790825,156.78,93.5697 +790826,155.42,93.1386 +790827,154.06,92.7213 +790828,152.69,92.3184 +790829,155.41,93.6219 +790830,154.07,93.1482 +790831,152.72,92.6882 +790832,151.36,92.2427 +790833,154.04,93.6738 +790834,152.71,93.1576 +790835,151.38,92.6552 +790836,150.04,92.1674 +790837,152.66,93.7252 +790838,151.35,93.1668 +790839,150.03,92.6223 +790840,148.71,92.0925 +790841,151.29,93.7762 +790842,150,93.1758 +790843,148.69,92.5895 +790844,147.39,92.018 +790845,149.92,93.8267 +790846,148.64,93.1846 +790847,147.35,92.5568 +790848,146.06,91.9439 +790849,148.54,93.8767 +790850,147.28,93.1932 +790851,146.01,92.5242 +790852,144.74,91.8704 +790853,147.16,93.9261 +790854,145.92,93.2016 +790855,144.67,92.4918 +790856,143.42,91.7974 +790857,145.78,93.975 +790858,144.56,93.2098 +790859,143.33,92.4595 +790860,142.1,91.7249 +790861,144.41,94.0232 +790862,143.2,93.2176 +790863,142,92.4273 +790864,140.78,91.6531 +790865,143.03,94.0708 +790866,141.85,93.2253 +790867,140.66,92.3954 +790868,139.46,91.5818 +790869,141.64,94.1178 +790870,140.49,93.2326 +790871,139.32,92.3636 +790872,138.14,91.5112 +790873,140.26,94.164 +790874,139.13,93.2397 +790875,137.98,92.3319 +790876,136.83,91.4413 +790877,138.88,94.2095 +790878,137.77,93.2465 +790879,136.64,92.3005 +790880,135.51,91.372 +790881,137.5,94.2543 +790882,136.41,93.2531 +790883,135.31,92.2693 +790884,134.2,91.3035 +790885,136.11,94.2982 +790886,135.04,93.2593 +790887,133.97,92.2383 +790888,132.88,91.2358 +790889,134.73,94.3414 +790890,133.68,93.2651 +790891,132.63,92.2075 +790892,131.57,91.1688 +790893,133.34,94.3837 +790894,132.32,93.2707 +790895,131.3,92.1769 +790896,130.26,91.1027 +790897,131.95,94.4251 +790898,130.96,93.2759 +790899,129.96,92.1466 +790900,128.95,91.0374 +790901,130.56,94.4656 +790902,129.6,93.2808 +790903,128.62,92.1165 +790904,127.64,90.97292 +790905,129.17,94.5052 +790906,128.24,93.2854 +790907,127.29,92.0867 +790908,126.33,90.90936 +790909,127.78,94.5438 +790910,126.87,93.2895 +790911,125.95,92.0571 +790912,125.02,90.8467 +790913,126.39,94.5815 +790914,125.51,93.2933 +790915,124.62,92.0279 +790916,123.72,90.78499 +790917,125,94.6181 +790918,124.15,93.2968 +790919,123.28,91.9989 +790920,122.41,90.72423 +790921,123.61,94.6537 +790922,122.79,93.2998 +790923,121.95,91.9702 +790924,121.1,90.66445 +790925,122.22,94.6882 +790926,121.42,93.3025 +790927,120.62,91.9418 +790928,119.8,90.60568 +790929,120.82,94.7217 +790930,120.06,93.3047 +790931,119.28,91.9137 +790932,118.49,90.54794 +790933,119.43,94.754 +790934,118.7,93.3066 +790935,117.95,91.8859 +790936,117.19,90.49124 +790937,118.04,94.7852 +790938,117.33,93.308 +790939,116.62,91.8584 +790940,115.89,90.43562 +790941,116.64,94.8152 +790942,115.97,93.309 +790943,115.28,91.8313 +790944,114.59,90.38108 +790945,115.24,94.8441 +790946,114.6,93.3096 +790947,113.95,91.8045 +790948,113.28,90.32765 +790949,113.85,94.8717 +790950,113.24,93.3097 +790951,112.62,91.778 +790952,111.98,90.27534 +790953,112.45,94.8981 +790954,111.88,93.3094 +790955,111.29,91.7519 +790956,110.68,90.22418 +790957,111.05,94.9233 +790958,110.51,93.3086 +790959,109.95,91.7261 +790960,109.38,90.17419 +790961,109.65,94.9472 +790962,109.15,93.3074 +790963,108.62,91.7007 +790964,108.08,90.12537 +790965,108.26,94.9698 +790966,107.78,93.3058 +790967,107.29,91.6757 +790968,106.78,90.077749 +790969,106.86,94.9911 +790970,106.42,93.3036 +790971,105.96,91.6511 +790972,105.48,90.031342 +790973,105.46,95.0111 +790974,105.05,93.301 +790975,104.63,91.6268 +790976,104.19,89.986162 +790977,104.06,95.0298 +790978,103.69,93.2979 +790979,103.3,91.6029 +790980,102.89,89.942224 +790981,102.66,95.0471 +790982,102.32,93.2943 +790983,101.97,91.5794 +790984,101.59,89.89954 +790985,101.26,95.063 +790986,100.96,93.2902 +790987,100.64,91.5563 +790988,100.29,89.85813 +790989,99.856,95.0775 +790990,99.591,93.2857 +790991,99.304,91.5335 +790992,98.998,89.818 +790993,98.455,95.0906 +790994,98.226,93.2806 +790995,97.974,91.5112 +790996,97.702,89.77916 +790997,97.054,95.1023 +790998,96.86,93.275 +790999,96.643,91.4893 +791000,96.406,89.74162 +791001,95.652,95.1125 +791002,95.494,93.2689 +791003,95.313,91.4678 +791004,95.11,89.70541 +791005,94.251,95.1213 +791006,94.129,93.2624 +791007,93.983,91.4467 +791008,93.815,89.67051 +791009,92.849,95.1287 +791010,92.763,93.2553 +791011,92.652,91.426 +791012,92.519,89.63695 +791013,91.447,95.1345 +791014,91.398,93.2476 +791015,91.322,91.4058 +791016,91.224,89.60474 +791017,90.045,95.1389 +791018,90.032,93.2395 +791019,89.992,91.386 +791020,89.929,89.57387 +791021,88.643,95.1418 +791022,88.666,93.2308 +791023,88.662,91.3666 +791024,88.634,89.54436 +791025,87.242,95.1432 +791026,87.301,93.2216 +791027,87.332,91.3476 +791028,87.34,89.51622 +791029,85.84,95.143 +791030,85.935,93.2119 +791031,86.003,91.329 +791032,86.045,89.48944 +791033,84.438,95.1414 +791034,84.57,93.2016 +791035,84.673,91.3109 +791036,84.75,89.46405 +791037,83.036,95.1382 +791038,83.204,93.1909 +791039,83.343,91.2932 +791040,83.456,89.44002 +791041,81.634,95.1335 +791042,81.839,93.1795 +791043,82.013,91.276 +791044,82.161,89.41739 +791045,80.233,95.1273 +791046,80.473,93.1677 +791047,80.683,91.2592 +791048,80.866,89.39613 +791049,78.831,95.1195 +791050,79.108,93.1553 +791051,79.353,91.2428 +791052,79.572,89.37627 +791053,77.43,95.1102 +791054,77.743,93.1424 +791055,78.024,91.2269 +791056,78.277,89.35779 +791057,76.029,95.0993 +791058,76.378,93.1289 +791059,76.694,91.2114 +791060,76.982,89.34071 +791061,74.628,95.0869 +791062,75.013,93.1149 +791063,75.364,91.1963 +791064,75.687,89.32501 +791065,73.228,95.0729 +791066,73.648,93.1003 +791067,74.034,91.1817 +791068,74.391,89.3107 +791069,71.828,95.0574 +791070,72.283,93.0853 +791071,72.704,91.1675 +791072,73.096,89.29779 +791073,70.428,95.0403 +791074,70.918,93.0696 +791075,71.374,91.1538 +791076,71.8,89.28625 +791077,69.028,95.0216 +791078,69.554,93.0535 +791079,70.044,91.1405 +791080,70.504,89.27611 +791081,67.629,95.0015 +791082,68.189,93.0368 +791083,68.714,91.1276 +791084,69.208,89.26734 +791085,66.231,94.9797 +791086,66.825,93.0196 +791087,67.383,91.1152 +791088,67.911,89.25995 +791089,64.833,94.9565 +791090,65.461,93.0018 +791091,66.053,91.1032 +791092,66.614,89.25392 +791093,63.435,94.9317 +791094,64.097,92.9835 +791095,64.722,91.0916 +791096,65.317,89.24927 +791097,62.038,94.9054 +791098,62.733,92.9647 +791099,63.392,91.0805 +791100,64.019,89.24597 +791101,60.641,94.8775 +791102,61.37,92.9453 +791103,62.061,91.0698 +791104,62.721,89.24403 +791105,59.245,94.8482 +791106,60.007,92.9255 +791107,60.73,91.0595 +791108,61.422,89.24343 +791109,57.85,94.8173 +791110,58.644,92.9051 +791111,59.399,91.0497 +791112,60.123,89.24417 +791113,56.455,94.7849 +791114,57.281,92.8842 +791115,58.068,91.0402 +791116,58.823,89.24624 +791117,55.061,94.7511 +791118,55.918,92.8627 +791119,56.737,91.0312 +791120,57.523,89.24963 +791121,53.667,94.7157 +791122,54.556,92.8408 +791123,55.405,91.0226 +791124,56.222,89.25432 +791125,52.275,94.6789 +791126,53.194,92.8183 +791127,54.074,91.0144 +791128,54.921,89.26031 +791129,50.883,94.6406 +791130,51.832,92.7954 +791131,52.742,91.0067 +791132,53.619,89.26759 +791133,49.491,94.6009 +791134,50.47,92.7719 +791135,51.41,90.99928 +791136,52.317,89.27615 +791137,48.101,94.5598 +791138,49.109,92.748 +791139,50.078,90.9923 +791140,51.013,89.28596 +791141,46.711,94.5173 +791142,47.748,92.7236 +791143,48.745,90.98572 +791144,49.709,89.29703 +791145,45.322,94.4733 +791146,46.387,92.6986 +791147,47.413,90.97952 +791148,48.405,89.30933 +791149,43.934,94.428 +791150,45.027,92.6732 +791151,46.08,90.97371 +791152,47.1,89.32285 +791153,42.547,94.3813 +791154,43.667,92.6474 +791155,44.747,90.96828 +791156,45.794,89.33757 +791157,41.161,94.3332 +791158,42.307,92.621 +791159,43.413,90.96322 +791160,44.487,89.35348 +791161,39.776,94.2838 +791162,40.947,92.5942 +791163,42.08,90.95853 +791164,43.179,89.37057 +791165,38.391,94.2332 +791166,39.588,92.5669 +791167,40.746,90.95421 +791168,41.871,89.38881 +791169,37.008,94.1812 +791170,38.229,92.5392 +791171,39.412,90.95024 +791172,40.561,89.40819 +791173,35.625,94.1279 +791174,36.871,92.5111 +791175,38.077,90.94663 +791176,39.251,89.42869 +791177,34.244,94.0734 +791178,35.513,92.4825 +791179,36.743,90.94336 +791180,37.94,89.45029 +791181,32.864,94.0177 +791182,34.155,92.4534 +791183,35.408,90.94043 +791184,36.628,89.47298 +791185,31.484,93.9607 +791186,32.797,92.424 +791187,34.073,90.93783 +791188,35.316,89.49673 +791189,30.106,93.9026 +791190,31.44,92.3941 +791191,32.737,90.93556 +791192,34.002,89.52152 +791193,28.729,93.8433 +791194,30.084,92.3639 +791195,31.401,90.9336 +791196,32.687,89.54733 +791197,27.352,93.7829 +791198,28.727,92.3332 +791199,30.065,90.93196 +791200,31.372,89.57414 +791201,25.977,93.7213 +791202,27.371,92.3021 +791203,28.729,90.93062 +791204,30.055,89.60193 +791205,24.603,93.6587 +791206,26.016,92.2707 +791207,27.392,90.92958 +791208,28.737,89.63068 +791209,23.231,93.595 +791210,24.661,92.2388 +791211,26.055,90.92882 +791212,27.419,89.66037 +791213,21.859,93.5303 +791214,23.306,92.2066 +791215,24.718,90.92835 +791216,26.099,89.69096 +791217,20.488,93.4645 +791218,21.952,92.1741 +791219,23.38,90.92815 +791220,24.778,89.72245 +791221,19.119,93.3978 +791222,20.598,92.1412 +791223,22.042,90.92821 +791224,23.456,89.7548 +791225,17.751,93.3301 +791226,19.244,92.1079 +791227,20.704,90.92853 +791228,22.134,89.78798 +791229,16.384,93.2615 +791230,17.891,92.0743 +791231,19.365,90.92909 +791232,20.81,89.82198 +791233,15.018,93.192 +791234,16.539,92.0404 +791235,18.026,90.9299 +791236,19.484,89.85677 +791237,13.654,93.1217 +791238,15.186,92.0062 +791239,16.687,90.93093 +791240,18.158,89.89233 +791241,12.291,93.0504 +791242,13.835,91.9717 +791243,15.347,90.93219 +791244,16.831,89.928619 +791245,10.929,92.9784 +791246,12.483,91.9368 +791247,14.007,90.93366 +791248,15.502,89.965622 +791249,9.5679,92.9056 +791250,11.132,91.9017 +791251,12.666,90.93533 +791252,14.173,90.0033089 +791253,8.2084,92.8321 +791254,9.7818,91.8664 +791255,11.325,90.9372 +791256,12.842,90.041654 +791257,6.8502,92.7578 +791258,8.4317,91.8307 +791259,9.9842,90.93925 +791260,11.51,90.080628 +791261,5.4932,92.6829 +791262,7.0822,91.7948 +791263,8.6426,90.94147 +791264,10.177,90.12021 +791265,4.1376,92.6073 +791266,5.733,91.7587 +791267,7.3006,90.94386 +791268,8.8423,90.16036 +791269,2.7831,92.5311 +791270,4.3843,91.7223 +791271,5.9583,90.94641 +791272,7.5068,90.20105 +791273,1.43,92.4543 +791274,3.0361,91.6857 +791275,4.6155,90.9491 +791276,6.17,90.24227 +791277,0.078212,92.3769 +791278,1.6883,91.6488 +791279,3.2724,90.95193 +791280,4.832,90.28397 +791281,358.73,92.299 +791282,0.34101,91.6118 +791283,1.929,90.95489 +791284,3.4928,90.32613 +791285,357.38,92.2207 +791286,358.99,91.5746 +791287,0.58509,90.95796 +791288,2.1524,90.36872 +791289,356.03,92.1418 +791290,357.65,91.5372 +791291,359.24,90.96113 +791292,0.81071,90.41172 +791293,354.68,92.0626 +791294,356.3,91.4996 +791295,357.9,90.96441 +791296,359.47,90.45508 +791297,353.34,91.9829 +791298,354.96,91.4619 +791299,356.55,90.96776 +791300,358.12,90.49878 +791301,351.99,91.9029 +791302,353.61,91.424 +791303,355.21,90.9712 +791304,356.78,90.54279 +791305,350.65,91.8225 +791306,352.27,91.386 +791307,353.86,90.9747 +791308,355.43,90.58709 +791309,349.31,91.7419 +791310,350.92,91.3478 +791311,352.51,90.97825 +791312,354.08,90.63163 +791313,347.97,91.661 +791314,349.58,91.3096 +791315,351.17,90.98185 +791316,352.73,90.67639 +791317,346.63,91.5799 +791318,348.24,91.2712 +791319,349.82,90.98548 +791320,351.38,90.72134 +791321,345.29,91.4986 +791322,346.89,91.2327 +791323,348.47,90.98913 +791324,350.03,90.76645 +791325,343.96,91.4171 +791326,345.55,91.1942 +791327,347.13,90.99279 +791328,348.68,90.81168 +791329,342.62,91.3356 +791330,344.21,91.1555 +791331,345.78,90.99646 +791332,347.33,90.857 +791333,341.29,91.2539 +791334,342.87,91.1169 +791335,344.43,91.0001 +791336,345.97,90.90239 +791337,339.96,91.1722 +791338,341.53,91.0781 +791339,343.08,91.0038 +791340,344.61,90.94782 +791341,338.63,91.0904 +791342,340.19,91.0394 +791343,341.73,91.0074 +791344,343.26,90.99324 +791345,337.3,91.0087 +791346,338.85,91.0005 +791347,340.38,91.0109 +791348,341.9,91.0386 +791349,335.97,90.92698 +791350,337.51,90.96173 +791351,339.03,91.0145 +791352,340.54,91.084 +791353,334.64,90.84537 +791354,336.17,90.9229 +791355,337.68,91.0179 +791356,339.18,91.1292 +791357,333.31,90.76387 +791358,334.83,90.88408 +791359,336.33,91.0213 +791360,337.81,91.1743 +791361,331.99,90.68251 +791362,333.49,90.84528 +791363,334.98,91.0246 +791364,336.45,91.2193 +791365,330.66,90.60134 +791366,332.15,90.8065 +791367,333.63,91.0278 +791368,335.08,91.2641 +791369,329.34,90.52037 +791370,330.82,90.76776 +791371,332.27,91.0309 +791372,333.72,91.3086 +791373,328.02,90.43965 +791374,329.48,90.72907 +791375,330.92,91.0339 +791376,332.35,91.3529 +791377,326.7,90.3592 +791378,328.14,90.69044 +791379,329.57,91.0367 +791380,330.98,91.3969 +791381,325.38,90.27906 +791382,326.81,90.65188 +791383,328.22,91.0395 +791384,329.61,91.4407 +791385,324.06,90.19927 +791386,325.47,90.6134 +791387,326.86,91.0421 +791388,328.24,91.484 +791389,322.75,90.11984 +791390,324.14,90.57502 +791391,325.51,91.0445 +791392,326.87,91.527 +791393,321.43,90.040819 +791394,322.8,90.53673 +791395,324.16,91.0467 +791396,325.5,91.5696 +791397,320.12,89.962232 +791398,321.47,90.49856 +791399,322.8,91.0488 +791400,324.12,91.6118 +791401,318.8,89.88411 +791402,320.13,90.46051 +791403,321.45,91.0507 +791404,322.75,91.6535 +791405,317.49,89.80648 +791406,318.8,90.4226 +791407,320.09,91.0524 +791408,321.37,91.6947 +791409,316.18,89.72938 +791410,317.47,90.38482 +791411,318.74,91.0539 +791412,319.99,91.7354 +791413,314.87,89.65284 +791414,316.13,90.34721 +791415,317.38,91.0552 +791416,318.62,91.7755 +791417,313.56,89.57688 +791418,314.8,90.30975 +791419,316.03,91.0562 +791420,317.24,91.8151 +791421,312.25,89.50153 +791422,313.47,90.27247 +791423,314.67,91.057 +791424,315.86,91.854 +791425,310.95,89.42683 +791426,312.14,90.23538 +791427,313.31,91.0576 +791428,314.48,91.8923 +791429,309.64,89.3528 +791430,310.8,90.19847 +791431,311.96,91.0579 +791432,313.09,91.9299 +791433,308.34,89.27947 +791434,309.47,90.16177 +791435,310.6,91.058 +791436,311.71,91.9669 +791437,307.03,89.20686 +791438,308.14,90.12528 +791439,309.24,91.0577 +791440,310.33,92.0031 +791441,305.73,89.13501 +791442,306.81,90.08901 +791443,307.88,91.0572 +791444,308.94,92.0385 +791445,304.43,89.06393 +791446,305.48,90.052971 +791447,306.53,91.0564 +791448,307.55,92.0732 +791449,303.12,88.9937 +791450,304.15,90.017171 +791451,305.17,91.0553 +791452,306.17,92.1071 +791453,301.82,88.9242 +791454,302.82,89.981619 +791455,303.81,91.0539 +791456,304.78,92.1401 +791457,300.52,88.8557 +791458,301.49,89.946324 +791459,302.45,91.0522 +791460,303.39,92.1723 +791461,299.22,88.788 +791462,300.17,89.911293 +791463,301.09,91.0502 +791464,302,92.2036 +791465,297.93,88.7212 +791466,298.84,89.87654 +791467,299.73,91.0478 +791468,300.61,92.2339 +791469,296.63,88.6553 +791470,297.51,89.84206 +791471,298.37,91.045 +791472,299.22,92.2634 +791473,295.33,88.5904 +791474,296.18,89.80787 +791475,297.01,91.042 +791476,297.83,92.2919 +791477,294.04,88.5264 +791478,294.85,89.77398 +791479,295.65,91.0385 +791480,296.44,92.3194 +791481,292.74,88.4635 +791482,293.53,89.7404 +791483,294.29,91.0347 +791484,295.04,92.3458 +791485,291.45,88.4016 +791486,292.2,89.70713 +791487,292.93,91.0306 +791488,293.65,92.3713 +791489,290.15,88.3407 +791490,290.87,89.67417 +791491,291.57,91.026 +791492,292.26,92.3957 +791493,288.86,88.2809 +791494,289.55,89.64155 +791495,290.21,91.0211 +791496,290.86,92.419 +791497,287.57,88.2221 +791498,288.22,89.60925 +791499,288.85,91.0157 +791500,289.47,92.4412 +791501,286.28,88.1645 +791502,286.89,89.5773 +791503,287.49,91.01 +791504,288.07,92.4623 +791505,284.98,88.1079 +791506,285.57,89.5457 +791507,286.13,91.0038 +791508,286.67,92.4823 +791509,283.69,88.0525 +791510,284.24,89.51444 +791511,284.77,90.99728 +791512,285.28,92.5011 +791513,282.4,87.9983 +791514,282.92,89.48355 +791515,283.41,90.99031 +791516,283.88,92.5187 +791517,281.11,87.9452 +791518,281.59,89.45302 +791519,282.05,90.9829 +791520,282.48,92.5351 +791521,279.82,87.8933 +791522,280.27,89.42286 +791523,280.69,90.97507 +791524,281.08,92.5503 +791525,278.53,87.8426 +791526,278.94,89.39308 +791527,279.33,90.96679 +791528,279.69,92.5643 +791529,277.25,87.7931 +791530,277.62,89.36368 +791531,277.96,90.95808 +791532,278.29,92.577 +791533,275.96,87.7449 +791534,276.29,89.33466 +791535,276.6,90.94892 +791536,276.89,92.5884 +791537,274.67,87.6978 +791538,274.97,89.30604 +791539,275.24,90.9393 +791540,275.49,92.5986 +791541,273.38,87.6521 +791542,273.64,89.27781 +791543,273.88,90.92923 +791544,274.09,92.6074 +791545,272.09,87.6076 +791546,272.32,89.24998 +791547,272.52,90.9187 +791548,272.69,92.615 +791549,270.81,87.5643 +791550,270.99,89.22256 +791551,271.16,90.9077 +791552,271.29,92.6212 +791553,269.52,87.5224 +791554,269.67,89.19554 +791555,269.79,90.89623 +791556,269.89,92.626 +791557,268.23,87.4818 +791558,268.35,89.16894 +791559,268.43,90.88429 +791560,268.49,92.6296 +791561,266.95,87.4424 +791562,267.02,89.14275 +791563,267.07,90.87187 +791564,267.09,92.6317 +791565,265.66,87.4044 +791566,265.7,89.11698 +791567,265.71,90.85897 +791568,265.69,92.6324 +791569,264.37,87.3677 +791570,264.38,89.09163 +791571,264.35,90.84559 +791572,264.29,92.6318 +791573,263.09,87.3323 +791574,263.05,89.0667 +791575,262.99,90.83172 +791576,262.89,92.6298 +791577,261.8,87.2983 +791578,261.73,89.0422 +791579,261.62,90.81737 +791580,261.48,92.6263 +791581,260.52,87.2656 +791582,260.4,89.01813 +791583,260.26,90.80252 +791584,260.08,92.6215 +791585,259.23,87.2343 +791586,259.08,88.9945 +791587,258.9,90.78718 +791588,258.68,92.6152 +791589,257.94,87.2043 +791590,257.76,88.9713 +791591,257.54,90.77134 +791592,257.28,92.6075 +791593,256.66,87.1757 +791594,256.43,88.9485 +791595,256.18,90.75501 +791596,255.88,92.5983 +791597,255.37,87.1484 +791598,255.11,88.9262 +791599,254.82,90.73817 +791600,254.48,92.5877 +791601,254.08,87.1225 +791602,253.79,88.9043 +791603,253.45,90.72084 +791604,253.08,92.5757 +791605,252.8,87.0979 +791606,252.46,88.8828 +791607,252.09,90.70301 +791608,251.68,92.5622 +791609,251.51,87.0748 +791610,251.14,88.8618 +791611,250.73,90.68468 +791612,250.28,92.5472 +791613,250.22,87.0529 +791614,249.82,88.8412 +791615,249.37,90.66585 +791616,248.89,92.5308 +791617,248.94,87.0325 +791618,248.49,88.8211 +791619,248.01,90.64651 +791620,247.49,92.5129 +791621,247.65,87.0134 +791622,247.17,88.8014 +791623,246.65,90.62668 +791624,246.09,92.4936 +791625,246.36,86.9956 +791626,245.84,88.7821 +791627,245.29,90.60634 +791628,244.69,92.4728 +791629,245.07,86.9793 +791630,244.52,88.7633 +791631,243.93,90.5855 +791632,243.29,92.4505 +791633,243.78,86.9643 +791634,243.2,88.7449 +791635,242.57,90.56417 +791636,241.9,92.4268 +791637,242.5,86.9506 +791638,241.87,88.7269 +791639,241.21,90.54233 +791640,240.5,92.4016 +791641,241.21,86.9383 +791642,240.55,88.7094 +791643,239.85,90.52 +791644,239.11,92.3749 +791645,239.92,86.9273 +791646,239.22,88.6923 +791647,238.49,90.49717 +791648,237.71,92.3468 +791649,238.63,86.9176 +791650,237.9,88.6756 +791651,237.13,90.47385 +791652,236.32,92.3173 +791653,237.34,86.9093 +791654,236.57,88.6594 +791655,235.77,90.45004 +791656,234.92,92.2863 +791657,236.04,86.9023 +791658,235.25,88.6436 +791659,234.41,90.42573 +791660,233.53,92.2539 +791661,234.75,86.8966 +791662,233.92,88.6282 +791663,233.05,90.40094 +791664,232.14,92.2201 +791665,233.46,86.8922 +791666,232.6,88.6133 +791667,231.7,90.37567 +791668,230.74,92.1848 +791669,232.17,86.8891 +791670,231.27,88.5987 +791671,230.34,90.34992 +791672,229.35,92.1481 +791673,230.87,86.8873 +791674,229.95,88.5846 +791675,228.98,90.32368 +791676,227.96,92.11 +791677,229.58,86.8868 +791678,228.62,88.5709 +791679,227.62,90.29698 +791680,226.57,92.0705 +791681,228.29,86.8875 +791682,227.3,88.5576 +791683,226.27,90.2698 +791684,225.18,92.0297 +791685,226.99,86.8895 +791686,225.97,88.5447 +791687,224.91,90.24215 +791688,223.79,91.9874 +791689,225.69,86.8928 +791690,224.64,88.5322 +791691,223.55,90.21405 +791692,222.41,91.9438 +791693,224.4,86.8972 +791694,223.32,88.5201 +791695,222.2,90.18548 +791696,221.02,91.8989 +791697,223.1,86.9029 +791698,221.99,88.5084 +791699,220.84,90.15646 +791700,219.64,91.8526 +791701,221.8,86.9097 +791702,220.66,88.4971 +791703,219.48,90.127 +791704,218.25,91.805 +791705,220.5,86.9178 +791706,219.34,88.4862 +791707,218.13,90.097087 +791708,216.87,91.7561 +791709,219.2,86.927 +791710,218.01,88.4756 +791711,216.77,90.066739 +791712,215.49,91.706 +791713,217.9,86.9374 +791714,216.68,88.4654 +791715,215.42,90.035958 +791716,214.1,91.6545 +791717,216.6,86.9489 +791718,215.35,88.4556 +791719,214.06,90.0047504 +791720,212.72,91.6018 +791721,215.29,86.9615 +791722,214.02,88.4462 +791723,212.71,89.973122 +791724,211.34,91.5478 +791725,213.99,86.9752 +791726,212.7,88.4371 +791727,211.36,89.941078 +791728,209.97,91.4927 +791729,212.69,86.99 +791730,211.37,88.4283 +791731,210,89.908626 +791732,208.59,91.4363 +791733,211.38,87.0059 +791734,210.04,88.4199 +791735,208.65,89.87577 +791736,207.21,91.3788 +791737,210.07,87.0228 +791738,208.71,88.4119 +791739,207.3,89.84252 +791740,205.84,91.3201 +791741,208.77,87.0407 +791742,207.38,88.4041 +791743,205.95,89.80889 +791744,204.46,91.2602 +791745,207.46,87.0596 +791746,206.05,88.3967 +791747,204.6,89.77487 +791748,203.09,91.1992 +791749,206.15,87.0795 +791750,204.72,88.3896 +791751,203.24,89.74047 +791752,201.72,91.1372 +791753,204.84,87.1004 +791754,203.39,88.3828 +791755,201.89,89.70572 +791756,200.35,91.0741 +791757,203.53,87.1222 +791758,202.06,88.3763 +791759,200.54,89.6706 +791760,198.98,91.0099 +791761,202.21,87.145 +791762,200.72,88.3702 +791763,199.19,89.63513 +791764,197.61,90.9447 +791765,200.9,87.1686 +791766,199.39,88.3643 +791767,197.84,89.59932 +791768,196.25,90.8785 +791769,199.58,87.1931 +791770,198.06,88.3586 +791771,196.5,89.56317 +791772,194.88,90.81133 +791773,198.27,87.2185 +791774,196.73,88.3533 +791775,195.15,89.5267 +791776,193.52,90.74321 +791777,196.95,87.2447 +791778,195.4,88.3482 +791779,193.8,89.48991 +791780,192.15,90.67417 +791781,195.63,87.2716 +791782,194.06,88.3434 +791783,192.45,89.45281 +791784,190.79,90.60423 +791785,194.31,87.2994 +791786,192.73,88.3388 +791787,191.1,89.41541 +791788,189.43,90.53342 +791789,192.99,87.3279 +791790,191.39,88.3345 +791791,189.76,89.37772 +791792,188.07,90.46177 +791793,191.67,87.3571 +791794,190.06,88.3304 +791795,188.41,89.33975 +791796,186.72,90.3893 +791797,190.35,87.3871 +791798,188.73,88.3265 +791799,187.06,89.3015 +791800,185.36,90.31605 +791801,189.02,87.4177 +791802,187.39,88.3228 +791803,185.72,89.26299 +791804,184,90.24204 +791805,187.69,87.4489 +791806,186.05,88.3193 +791807,184.37,89.22422 +791808,182.65,90.16731 +791809,186.37,87.4808 +791810,184.72,88.316 +791811,183.03,89.18521 +791812,181.3,90.091874 +791813,185.04,87.5133 +791814,183.38,88.3129 +791815,181.69,89.14596 +791816,179.95,90.01577 +791817,183.71,87.5463 +791818,182.05,88.31 +791819,180.34,89.10649 +791820,178.6,89.939027 +791821,182.38,87.5799 +791822,180.71,88.3073 +791823,179,89.0668 +791824,177.25,89.86167 +791825,181.05,87.614 +791826,179.37,88.3047 +791827,177.66,89.02691 +791828,175.9,89.78375 +791829,179.71,87.6486 +791830,178.03,88.3023 +791831,176.32,88.9868 +791832,174.56,89.70527 +791833,178.38,87.6836 +791834,176.69,88.3 +791835,174.97,88.9465 +791836,173.21,89.62628 +791837,177.04,87.719 +791838,175.36,88.2978 +791839,173.63,88.9061 +791840,171.87,89.5468 +791841,175.71,87.7549 +791842,174.02,88.2957 +791843,172.29,88.8655 +791844,170.53,89.46687 +791845,174.37,87.7911 +791846,172.68,88.2938 +791847,170.95,88.8247 +791848,169.19,89.38652 +791849,173.03,87.8277 +791850,171.34,88.2919 +791851,169.61,88.7838 +791852,167.85,89.30578 +791853,171.69,87.8645 +791854,170,88.2902 +791855,168.27,88.7427 +791856,166.52,89.22468 +791857,170.34,87.9017 +791858,168.66,88.2885 +791859,166.94,88.7016 +791860,165.18,89.14326 +791861,169,87.9391 +791862,167.32,88.2869 +791863,165.6,88.6603 +791864,163.85,89.06154 +791865,167.65,87.9767 +791866,165.97,88.2854 +791867,164.26,88.6189 +791868,162.51,88.9796 +791869,166.31,88.0145 +791870,164.63,88.2839 +791871,162.92,88.5774 +791872,161.18,88.8974 +791873,164.96,88.0525 +791874,163.29,88.2824 +791875,161.59,88.5358 +791876,159.85,88.815 +791877,163.61,88.0906 +791878,161.95,88.281 +791879,160.25,88.4942 +791880,158.52,88.7324 +791881,162.26,88.1289 +791882,160.6,88.2796 +791883,158.92,88.4525 +791884,157.2,88.6497 +791885,160.91,88.1672 +791886,159.26,88.2782 +791887,157.58,88.4108 +791888,155.87,88.5669 +791889,159.56,88.2055 +791890,157.92,88.2768 +791891,156.25,88.369 +791892,154.55,88.4841 +791893,158.2,88.2438 +791894,156.57,88.2754 +791895,154.91,88.3272 +791896,153.22,88.4012 +791897,156.85,88.2822 +791898,155.23,88.2739 +791899,153.58,88.2854 +791900,151.9,88.3184 +791901,155.49,88.3205 +791902,153.88,88.2725 +791903,152.24,88.2435 +791904,150.58,88.2355 +791905,154.13,88.3587 +791906,152.54,88.271 +791907,150.91,88.2017 +791908,149.26,88.1527 +791909,152.77,88.3968 +791910,151.19,88.2694 +791911,149.58,88.1599 +791912,147.94,88.0701 +791913,151.41,88.4348 +791914,149.84,88.2678 +791915,148.25,88.1181 +791916,146.63,87.9875 +791917,150.05,88.4726 +791918,148.5,88.2661 +791919,146.92,88.0764 +791920,145.31,87.9051 +791921,148.69,88.5102 +791922,147.15,88.2643 +791923,145.59,88.0347 +791924,144,87.823 +791925,147.32,88.5475 +791926,145.8,88.2624 +791927,144.26,87.993 +791928,142.68,87.741 +791929,145.96,88.5847 +791930,144.45,88.2605 +791931,142.93,87.9515 +791932,141.37,87.6593 +791933,144.59,88.6215 +791934,143.11,88.2584 +791935,141.6,87.91 +791936,140.06,87.5779 +791937,143.22,88.658 +791938,141.76,88.2562 +791939,140.27,87.8686 +791940,138.75,87.4968 +791941,141.85,88.6942 +791942,140.41,88.2538 +791943,138.94,87.8273 +791944,137.45,87.4161 +791945,140.48,88.73 +791946,139.06,88.2513 +791947,137.61,87.7861 +791948,136.14,87.3358 +791949,139.11,88.7654 +791950,137.71,88.2487 +791951,136.28,87.745 +791952,134.83,87.2558 +791953,137.74,88.8004 +791954,136.36,88.2459 +791955,134.96,87.704 +791956,133.53,87.1764 +791957,136.37,88.8349 +791958,135.01,88.2429 +791959,133.63,87.6632 +791960,132.23,87.0973 +791961,134.99,88.8689 +791962,133.66,88.2398 +791963,132.3,87.6226 +791964,130.92,87.0188 +791965,133.62,88.9024 +791966,132.31,88.2364 +791967,130.98,87.5821 +791968,129.62,86.9409 +791969,132.24,88.9354 +791970,130.96,88.2329 +791971,129.65,87.5417 +791972,128.32,86.8635 +791973,130.86,88.9678 +791974,129.6,88.2291 +791975,128.32,87.5016 +791976,127.02,86.7867 +791977,129.48,88.9996 +791978,128.25,88.2252 +791979,127,87.4616 +791980,125.73,86.7105 +791981,128.1,89.03078 +791982,126.9,88.221 +791983,125.67,87.4218 +791984,124.43,86.6349 +791985,126.72,89.0613 +791986,125.55,88.2165 +791987,124.35,87.3823 +791988,123.13,86.56 +791989,125.34,89.09115 +791990,124.19,88.2119 +791991,123.03,87.3429 +791992,121.84,86.4859 +791993,123.96,89.12029 +791994,122.84,88.2069 +791995,121.7,87.3038 +791996,120.55,86.4124 +791997,122.58,89.14871 +791998,121.49,88.2017 +791999,120.38,87.2649 +792000,119.25,86.3397 +792001,121.19,89.17636 +792002,120.13,88.1963 +792003,119.06,87.2263 +792004,117.96,86.2678 +792005,119.81,89.20324 +792006,118.78,88.1905 +792007,117.74,87.1879 +792008,116.67,86.1967 +792009,118.42,89.22931 +792010,117.43,88.1845 +792011,116.41,87.1497 +792012,115.38,86.1265 +792013,117.03,89.25456 +792014,116.07,88.1782 +792015,115.09,87.1118 +792016,114.09,86.057 +792017,115.64,89.27895 +792018,114.72,88.1715 +792019,113.77,87.0743 +792020,112.8,85.9885 +792021,114.26,89.30246 +792022,113.36,88.1646 +792023,112.45,87.0369 +792024,111.51,85.9209 +792025,112.87,89.32508 +792026,112.01,88.1573 +792027,111.13,86.9999 +792028,110.23,85.8542 +792029,111.48,89.34677 +792030,110.65,88.1498 +792031,109.81,86.9632 +792032,108.94,85.7884 +792033,110.09,89.36751 +792034,109.3,88.1418 +792035,108.49,86.9268 +792036,107.65,85.7236 +792037,108.69,89.38729 +792038,107.94,88.1336 +792039,107.17,86.8907 +792040,106.37,85.6598 +792041,107.3,89.40609 +792042,106.59,88.125 +792043,105.85,86.8549 +792044,105.09,85.597 +792045,105.91,89.42387 +792046,105.23,88.116 +792047,104.53,86.8194 +792048,103.8,85.5352 +792049,104.52,89.44063 +792050,103.87,88.1067 +792051,103.21,86.7843 +792052,102.52,85.4745 +792053,103.12,89.45633 +792054,102.52,88.097 +792055,101.89,86.7495 +792056,101.24,85.4149 +792057,101.73,89.47097 +792058,101.16,88.087 +792059,100.57,86.7151 +792060,99.956,85.3563 +792061,100.33,89.48452 +792062,99.804,88.0765 +792063,99.251,86.681 +792064,98.675,85.2989 +792065,98.936,89.49697 +792066,98.447,88.0657 +792067,97.932,86.6473 +792068,97.394,85.2425 +792069,97.541,89.50829 +792070,97.09,88.0545 +792071,96.614,86.6139 +792072,96.114,85.1874 +792073,96.144,89.51848 +792074,95.733,88.0429 +792075,95.296,86.5809 +792076,94.834,85.1333 +792077,94.747,89.5275 +792078,94.376,88.0309 +792079,93.978,86.5483 +792080,93.555,85.0804 +792081,93.35,89.53536 +792082,93.019,88.0184 +792083,92.66,86.5161 +792084,92.276,85.0288 +792085,91.953,89.54202 +792086,91.662,88.0056 +792087,91.343,86.4842 +792088,90.997,84.9783 +792089,90.555,89.54748 +792090,90.304,87.9924 +792091,90.025,86.4527 +792092,89.719,84.929 +792093,89.157,89.55173 +792094,88.947,87.9787 +792095,88.708,86.4217 +792096,88.441,84.8809 +792097,87.759,89.55474 +792098,87.59,87.9646 +792099,87.391,86.391 +792100,87.163,84.8341 +792101,86.361,89.55651 +792102,86.232,87.9501 +792103,86.073,86.3607 +792104,85.886,84.7885 +792105,84.962,89.55702 +792106,84.875,87.9351 +792107,84.756,86.3309 +792108,84.609,84.7442 +792109,83.563,89.55626 +792110,83.517,87.9197 +792111,83.44,86.3014 +792112,83.332,84.7012 +792113,82.165,89.55423 +792114,82.16,87.9039 +792115,82.123,86.2724 +792116,82.055,84.6594 +792117,80.766,89.5509 +792118,80.803,87.8876 +792119,80.806,86.2438 +792120,80.778,84.6189 +792121,79.367,89.54627 +792122,79.445,87.8709 +792123,79.489,86.2156 +792124,79.501,84.5797 +792125,77.968,89.54033 +792126,78.088,87.8537 +792127,78.172,86.1878 +792128,78.225,84.5418 +792129,76.569,89.53307 +792130,76.731,87.8361 +792131,76.856,86.1604 +792132,76.948,84.5052 +792133,75.17,89.52449 +792134,75.373,87.8181 +792135,75.539,86.1335 +792136,75.671,84.4699 +792137,73.772,89.51457 +792138,74.016,87.7995 +792139,74.223,86.107 +792140,74.395,84.436 +792141,72.373,89.50332 +792142,72.659,87.7805 +792143,72.906,86.0809 +792144,73.118,84.4033 +792145,70.975,89.49071 +792146,71.302,87.7611 +792147,71.589,86.0553 +792148,71.841,84.372 +792149,69.577,89.47676 +792150,69.945,87.7412 +792151,70.273,86.0301 +792152,70.565,84.342 +792153,68.179,89.46145 +792154,68.588,87.7208 +792155,68.956,86.0053 +792156,69.287,84.3133 +792157,66.781,89.44478 +792158,67.231,87.7 +792159,67.64,85.981 +792160,68.01,84.286 +792161,65.384,89.42675 +792162,65.875,87.6787 +792163,66.323,85.9571 +792164,66.733,84.26 +792165,63.987,89.40735 +792166,64.518,87.657 +792167,65.006,85.9336 +792168,65.455,84.2353 +792169,62.59,89.38659 +792170,63.162,87.6347 +792171,63.689,85.9106 +792172,64.177,84.212 +792173,61.194,89.36445 +792174,61.806,87.6121 +792175,62.372,85.888 +792176,62.899,84.19 +792177,59.798,89.34095 +792178,60.45,87.5889 +792179,61.055,85.8658 +792180,61.62,84.1693 +792181,58.402,89.31608 +792182,59.094,87.5653 +792183,59.738,85.8441 +792184,60.341,84.1499 +792185,57.007,89.28985 +792186,57.738,87.5413 +792187,58.421,85.8228 +792188,59.062,84.1319 +792189,55.613,89.26225 +792190,56.383,87.5167 +792191,57.104,85.8019 +792192,57.782,84.1152 +792193,54.219,89.23329 +792194,55.028,87.4917 +792195,55.786,85.7815 +792196,56.502,84.0998 +792197,52.826,89.20297 +792198,53.673,87.4663 +792199,54.469,85.7615 +792200,55.221,84.0857 +792201,51.433,89.1713 +792202,52.318,87.4404 +792203,53.151,85.7419 +792204,53.94,84.0729 +792205,50.041,89.13827 +792206,50.963,87.414 +792207,51.833,85.7228 +792208,52.658,84.0614 +792209,48.65,89.1039 +792210,49.609,87.3872 +792211,50.515,85.7041 +792212,51.376,84.0512 +792213,47.26,89.0682 +792214,48.255,87.36 +792215,49.197,85.6858 +792216,50.093,84.0423 +792217,45.87,89.03116 +792218,46.901,87.3323 +792219,47.879,85.6679 +792220,48.81,84.0346 +792221,44.481,88.9928 +792222,45.548,87.3041 +792223,46.56,85.6504 +792224,47.526,84.0282 +792225,43.093,88.9531 +792226,44.195,87.2755 +792227,45.241,85.6334 +792228,46.241,84.0231 +792229,41.705,88.9121 +792230,42.842,87.2465 +792231,43.922,85.6168 +792232,44.955,84.0192 +792233,40.319,88.8699 +792234,41.489,87.2171 +792235,42.603,85.6005 +792236,43.669,84.0165 +792237,38.933,88.8263 +792238,40.137,87.1872 +792239,41.284,85.5847 +792240,42.382,84.015 +792241,37.548,88.7814 +792242,38.785,87.1568 +792243,39.964,85.5693 +792244,41.094,84.0148 +792245,36.164,88.7353 +792246,37.433,87.1261 +792247,38.644,85.5542 +792248,39.806,84.0157 +792249,34.782,88.688 +792250,36.082,87.0949 +792251,37.324,85.5396 +792252,38.516,84.0179 +792253,33.4,88.6394 +792254,34.731,87.0634 +792255,36.004,85.5253 +792256,37.226,84.0212 +792257,32.019,88.5896 +792258,33.381,87.0314 +792259,34.683,85.5114 +792260,35.935,84.0256 +792261,30.639,88.5386 +792262,32.03,86.999 +792263,33.362,85.4979 +792264,34.643,84.0312 +792265,29.26,88.4863 +792266,30.681,86.9662 +792267,32.041,85.4848 +792268,33.35,84.0379 +792269,27.883,88.4329 +792270,29.331,86.9331 +792271,30.719,85.472 +792272,32.056,84.0457 +792273,26.506,88.3784 +792274,27.982,86.8995 +792275,29.397,85.4596 +792276,30.761,84.0546 +792277,25.131,88.3227 +792278,26.633,86.8656 +792279,28.075,85.4476 +792280,29.465,84.0645 +792281,23.757,88.2659 +792282,25.285,86.8312 +792283,26.753,85.4359 +792284,28.168,84.0755 +792285,22.384,88.2079 +792286,23.937,86.7965 +792287,25.43,85.4245 +792288,26.87,84.0875 +792289,21.012,88.1489 +792290,22.59,86.7615 +792291,24.107,85.4135 +792292,25.571,84.1006 +792293,19.641,88.0888 +792294,21.243,86.7261 +792295,22.783,85.4028 +792296,24.271,84.1146 +792297,18.272,88.0277 +792298,19.896,86.6903 +792299,21.459,85.3924 +792300,22.97,84.1296 +792301,16.904,87.9655 +792302,18.55,86.6542 +792303,20.135,85.3824 +792304,21.668,84.1456 +792305,15.537,87.9023 +792306,17.204,86.6178 +792307,18.811,85.3726 +792308,20.365,84.1625 +792309,14.171,87.8381 +792310,15.859,86.581 +792311,17.486,85.3632 +792312,19.06,84.1803 +792313,12.807,87.773 +792314,14.514,86.544 +792315,16.161,85.354 +792316,17.755,84.199 +792317,11.444,87.7069 +792318,13.17,86.5066 +792319,14.835,85.3452 +792320,16.448,84.2185 +792321,10.082,87.64 +792322,11.826,86.4689 +792323,13.509,85.3366 +792324,15.14,84.2389 +792325,8.7221,87.5721 +792326,10.483,86.4309 +792327,12.183,85.3283 +792328,13.83,84.2601 +792329,7.3632,87.5033 +792330,9.1399,86.3926 +792331,10.856,85.3202 +792332,12.52,84.2821 +792333,6.0057,87.4337 +792334,7.7975,86.354 +792335,9.5289,85.3124 +792336,11.208,84.3049 +792337,4.6496,87.3633 +792338,6.4555,86.3152 +792339,8.2013,85.3049 +792340,9.8953,84.3284 +792341,3.2949,87.2921 +792342,5.114,86.2761 +792343,6.8734,85.2976 +792344,8.5811,84.3527 +792345,1.9417,87.2202 +792346,3.773,86.2367 +792347,5.5451,85.2905 +792348,7.2656,84.3776 +792349,0.58981,87.1475 +792350,2.4325,86.1971 +792351,4.2163,85.2837 +792352,5.9489,84.4033 +792353,359.24,87.074 +792354,1.0925,86.1573 +792355,2.8872,85.277 +792356,4.6308,84.4295 +792357,357.89,86.9999 +792358,359.75,86.1172 +792359,1.5576,85.2706 +792360,3.3114,84.4564 +792361,356.54,86.9252 +792362,358.41,86.0769 +792363,0.22763,85.2644 +792364,1.9908,84.4839 +792365,355.2,86.8498 +792366,357.08,86.0364 +792367,358.9,85.2584 +792368,0.66876,84.512 +792369,353.85,86.7738 +792370,355.74,85.9957 +792371,357.57,85.2525 +792372,359.35,84.5406 +792373,352.51,86.6972 +792374,354.4,85.9548 +792375,356.24,85.2468 +792376,358.02,84.5697 +792377,351.17,86.6201 +792378,353.06,85.9138 +792379,354.9,85.2413 +792380,356.69,84.5993 +792381,349.83,86.5425 +792382,351.73,85.8725 +792383,353.57,85.2359 +792384,355.37,84.6293 +792385,348.49,86.4644 +792386,350.39,85.8311 +792387,352.24,85.2307 +792388,354.04,84.6598 +792389,347.15,86.3858 +792390,349.06,85.7895 +792391,350.91,85.2256 +792392,352.71,84.6907 +792393,345.82,86.3068 +792394,347.72,85.7478 +792395,349.57,85.2206 +792396,351.38,84.722 +792397,344.48,86.2274 +792398,346.39,85.706 +792399,348.24,85.2157 +792400,350.04,84.7536 +792401,343.15,86.1477 +792402,345.05,85.664 +792403,346.9,85.211 +792404,348.71,84.7856 +792405,341.82,86.0676 +792406,343.72,85.622 +792407,345.57,85.2063 +792408,347.37,84.8178 +792409,340.49,85.9872 +792410,342.39,85.5798 +792411,344.23,85.2018 +792412,346.04,84.8503 +792413,339.16,85.9066 +792414,341.05,85.5375 +792415,342.9,85.1973 +792416,344.7,84.8831 +792417,337.83,85.8257 +792418,339.72,85.4951 +792419,341.56,85.1928 +792420,343.36,84.916 +792421,336.51,85.7446 +792422,338.39,85.4527 +792423,340.23,85.1885 +792424,342.02,84.9491 +792425,335.18,85.6633 +792426,337.06,85.4102 +792427,338.89,85.1841 +792428,340.68,84.9824 +792429,333.86,85.5819 +792430,335.73,85.3677 +792431,337.55,85.1798 +792432,339.33,85.0158 +792433,332.54,85.5004 +792434,334.4,85.3251 +792435,336.21,85.1756 +792436,337.99,85.0493 +792437,331.22,85.4188 +792438,333.07,85.2825 +792439,334.88,85.1713 +792440,336.64,85.0828 +792441,329.9,85.3371 +792442,331.74,85.2398 +792443,333.54,85.1671 +792444,335.29,85.1164 +792445,328.59,85.2554 +792446,330.41,85.1972 +792447,332.2,85.1629 +792448,333.94,85.15 +792449,327.27,85.1737 +792450,329.09,85.1545 +792451,330.86,85.1586 +792452,332.59,85.1835 +792453,325.96,85.0921 +792454,327.76,85.1119 +792455,329.52,85.1543 +792456,331.24,85.217 +792457,324.64,85.0105 +792458,326.43,85.0693 +792459,328.18,85.15 +792460,329.89,85.2505 +792461,323.33,84.929 +792462,325.11,85.0267 +792463,326.84,85.1457 +792464,328.53,85.2838 +792465,322.02,84.8477 +792466,323.78,84.9841 +792467,325.5,85.1413 +792468,327.18,85.3169 +792469,320.72,84.7666 +792470,322.45,84.9416 +792471,324.16,85.1368 +792472,325.82,85.3499 +792473,319.41,84.6856 +792474,321.13,84.8992 +792475,322.81,85.1323 +792476,324.46,85.3827 +792477,318.1,84.6049 +792478,319.81,84.8568 +792479,321.47,85.1277 +792480,323.1,85.4153 +792481,316.8,84.5244 +792482,318.48,84.8145 +792483,320.13,85.123 +792484,321.74,85.4476 +792485,315.5,84.4442 +792486,317.16,84.7723 +792487,318.79,85.1182 +792488,320.38,85.4797 +792489,314.19,84.3644 +792490,315.84,84.7302 +792491,317.44,85.1133 +792492,319.01,85.5114 +792493,312.89,84.2849 +792494,314.51,84.6882 +792495,316.1,85.1082 +792496,317.65,85.5428 +792497,311.59,84.2058 +792498,313.19,84.6464 +792499,314.75,85.1031 +792500,316.28,85.5738 +792501,310.3,84.127 +792502,311.87,84.6046 +792503,313.41,85.0978 +792504,314.92,85.6045 +792505,309,84.0488 +792506,310.55,84.563 +792507,312.06,85.0923 +792508,313.55,85.6347 +792509,307.7,83.971 +792510,309.23,84.5216 +792511,310.72,85.0867 +792512,312.18,85.6644 +792513,306.41,83.8936 +792514,307.91,84.4803 +792515,309.37,85.081 +792516,310.81,85.6937 +792517,305.12,83.8169 +792518,306.59,84.4392 +792519,308.03,85.075 +792520,309.44,85.7225 +792521,303.83,83.7406 +792522,305.27,84.3982 +792523,306.68,85.0689 +792524,308.06,85.7508 +792525,302.54,83.665 +792526,303.95,84.3575 +792527,305.33,85.0626 +792528,306.69,85.7785 +792529,301.25,83.5899 +792530,302.63,84.3169 +792531,303.99,85.0561 +792532,305.31,85.8056 +792533,299.96,83.5155 +792534,301.31,84.2765 +792535,302.64,85.0494 +792536,303.94,85.8321 +792537,298.67,83.4418 +792538,299.99,84.2364 +792539,301.29,85.0424 +792540,302.56,85.858 +792541,297.38,83.3687 +792542,298.68,84.1965 +792543,299.94,85.0352 +792544,301.18,85.8833 +792545,296.1,83.2964 +792546,297.36,84.1568 +792547,298.59,85.0278 +792548,299.8,85.9078 +792549,294.81,83.2248 +792550,296.04,84.1173 +792551,297.25,85.0202 +792552,298.42,85.9317 +792553,293.53,83.154 +792554,294.73,84.0781 +792555,295.9,85.0123 +792556,297.04,85.9548 +792557,292.25,83.084 +792558,293.41,84.0391 +792559,294.55,85.0041 +792560,295.66,85.9772 +792561,290.97,83.0147 +792562,292.1,84.0004 +792563,293.2,84.9957 +792564,294.27,85.9988 +792565,289.69,82.9463 +792566,290.78,83.962 +792567,291.85,84.987 +792568,292.89,86.0196 +792569,288.41,82.8788 +792570,289.47,83.9239 +792571,290.5,84.978 +792572,291.5,86.0396 +792573,287.13,82.8122 +792574,288.15,83.886 +792575,289.15,84.9688 +792576,290.12,86.0587 +792577,285.85,82.7465 +792578,286.84,83.8485 +792579,287.8,84.9592 +792580,288.73,86.077 +792581,284.57,82.6816 +792582,285.52,83.8112 +792583,286.45,84.9494 +792584,287.35,86.0944 +792585,283.3,82.6178 +792586,284.21,83.7743 +792587,285.1,84.9392 +792588,285.96,86.1109 +792589,282.02,82.5549 +792590,282.9,83.7376 +792591,283.74,84.9287 +792592,284.57,86.1265 +792593,280.74,82.493 +792594,281.58,83.7013 +792595,282.39,84.9179 +792596,283.18,86.1411 +792597,279.47,82.4321 +792598,280.27,83.6653 +792599,281.04,84.9067 +792600,281.79,86.1548 +792601,278.2,82.3723 +792602,278.96,83.6297 +792603,279.69,84.8952 +792604,280.4,86.1674 +792605,276.92,82.3135 +792606,277.64,83.5944 +792607,278.34,84.8834 +792608,279.01,86.1791 +792609,275.65,82.2557 +792610,276.33,83.5594 +792611,276.99,84.8713 +792612,277.61,86.1898 +792613,274.38,82.199 +792614,275.02,83.5248 +792615,275.63,84.8587 +792616,276.22,86.1994 +792617,273.11,82.1435 +792618,273.71,83.4905 +792619,274.28,84.8458 +792620,274.83,86.208 +792621,271.84,82.089 +792622,272.4,83.4567 +792623,272.93,84.8326 +792624,273.43,86.2155 +792625,270.57,82.0357 +792626,271.09,83.4231 +792627,271.58,84.819 +792628,272.04,86.2219 +792629,269.3,81.9835 +792630,269.77,83.39 +792631,270.22,84.805 +792632,270.65,86.2272 +792633,268.03,81.9325 +792634,268.46,83.3572 +792635,268.87,84.7906 +792636,269.25,86.2314 +792637,266.76,81.8827 +792638,267.15,83.3248 +792639,267.52,84.7759 +792640,267.86,86.2345 +792641,265.49,81.834 +792642,265.84,83.2929 +792643,266.17,84.7607 +792644,266.46,86.2364 +792645,264.22,81.7865 +792646,264.53,83.2613 +792647,264.81,84.7452 +792648,265.06,86.2372 +792649,262.95,81.7403 +792650,263.22,83.2301 +792651,263.46,84.7292 +792652,263.67,86.2368 +792653,261.68,81.6952 +792654,261.91,83.1992 +792655,262.11,84.7129 +792656,262.27,86.2352 +792657,260.42,81.6514 +792658,260.6,83.1689 +792659,260.75,84.6962 +792660,260.87,86.2325 +792661,259.15,81.6088 +792662,259.29,83.1389 +792663,259.4,84.679 +792664,259.48,86.2285 +792665,257.88,81.5675 +792666,257.98,83.1093 +792667,258.05,84.6615 +792668,258.08,86.2234 +792669,256.61,81.5274 +792670,256.67,83.0801 +792671,256.69,84.6435 +792672,256.68,86.217 +792673,255.35,81.4886 +792674,255.36,83.0514 +792675,255.34,84.6251 +792676,255.29,86.2093 +792677,254.08,81.4511 +792678,254.05,83.023 +792679,253.99,84.6063 +792680,253.89,86.2005 +792681,252.81,81.4148 +792682,252.74,82.9951 +792683,252.63,84.5871 +792684,252.49,86.1904 +792685,251.55,81.3798 +792686,251.43,82.9676 +792687,251.28,84.5675 +792688,251.1,86.179 +792689,250.28,81.3461 +792690,250.12,82.9405 +792691,249.93,84.5474 +792692,249.7,86.1664 +792693,249.01,81.3137 +792694,248.81,82.9139 +792695,248.57,84.5269 +792696,248.3,86.1525 +792697,247.74,81.2826 +792698,247.5,82.8877 +792699,247.22,84.506 +792700,246.9,86.1374 +792701,246.48,81.2528 +792702,246.19,82.8619 +792703,245.87,84.4846 +792704,245.51,86.121 +792705,245.21,81.2242 +792706,244.88,82.8365 +792707,244.52,84.4628 +792708,244.11,86.1033 +792709,243.94,81.197 +792710,243.57,82.8116 +792711,243.16,84.4406 +792712,242.72,86.0843 +792713,242.67,81.1711 +792714,242.26,82.7871 +792715,241.81,84.418 +792716,241.32,86.0641 +792717,241.4,81.1464 +792718,240.95,82.763 +792719,240.46,84.3949 +792720,239.92,86.0425 +792721,240.14,81.1231 +792722,239.64,82.7394 +792723,239.11,84.3714 +792724,238.53,86.0197 +792725,238.87,81.101 +792726,238.33,82.7162 +792727,237.75,84.3475 +792728,237.13,85.9956 +792729,237.6,81.0803 +792730,237.02,82.6934 +792731,236.4,84.3231 +792732,235.74,85.9702 +792733,236.33,81.0608 +792734,235.71,82.671 +792735,235.05,84.2983 +792736,234.35,85.9435 +792737,235.06,81.0427 +792738,234.4,82.6491 +792739,233.7,84.2731 +792740,232.95,85.9155 +792741,233.79,81.0258 +792742,233.09,82.6276 +792743,232.35,84.2474 +792744,231.56,85.8863 +792745,232.52,81.0101 +792746,231.78,82.6065 +792747,231,84.2214 +792748,230.17,85.8558 +792749,231.24,80.9958 +792750,230.47,82.5859 +792751,229.64,84.1949 +792752,228.77,85.824 +792753,229.97,80.9827 +792754,229.15,82.5656 +792755,228.29,84.1679 +792756,227.38,85.7909 +792757,228.7,80.9709 +792758,227.84,82.5458 +792759,226.94,84.1406 +792760,225.99,85.7566 +792761,227.43,80.9603 +792762,226.53,82.5264 +792763,225.59,84.1128 +792764,224.6,85.721 +792765,226.15,80.951 +792766,225.22,82.5075 +792767,224.24,84.0846 +792768,223.21,85.6841 +792769,224.88,80.9429 +792770,223.91,82.4889 +792771,222.89,84.056 +792772,221.83,85.6461 +792773,223.6,80.936 +792774,222.6,82.4707 +792775,221.54,84.027 +792776,220.44,85.6067 +792777,222.33,80.9304 +792778,221.28,82.453 +792779,220.2,83.9976 +792780,219.05,85.5662 +792781,221.05,80.9259 +792782,219.97,82.4356 +792783,218.85,83.9678 +792784,217.67,85.5244 +792785,219.77,80.9226 +792786,218.66,82.4187 +792787,217.5,83.9376 +792788,216.28,85.4814 +792789,218.49,80.9206 +792790,217.35,82.4021 +792791,216.15,83.907 +792792,214.9,85.4372 +792793,217.21,80.9196 +792794,216.03,82.386 +792795,214.8,83.8759 +792796,213.51,85.3918 +792797,215.93,80.9199 +792798,214.72,82.3702 +792799,213.45,83.8445 +792800,212.13,85.3453 +792801,214.65,80.9212 +792802,213.41,82.3548 +792803,212.11,83.8127 +792804,210.75,85.2975 +792805,213.37,80.9237 +792806,212.09,82.3398 +792807,210.76,83.7806 +792808,209.37,85.2486 +792809,212.09,80.9273 +792810,210.78,82.3251 +792811,209.41,83.748 +792812,207.99,85.1986 +792813,210.8,80.932 +792814,209.46,82.3108 +792815,208.07,83.7151 +792816,206.61,85.1475 +792817,209.52,80.9378 +792818,208.15,82.2969 +792819,206.72,83.6818 +792820,205.23,85.0952 +792821,208.23,80.9446 +792822,206.83,82.2834 +792823,205.38,83.6482 +792824,203.86,85.0418 +792825,206.95,80.9525 +792826,205.52,82.2701 +792827,204.03,83.6142 +792828,202.48,84.9874 +792829,205.66,80.9614 +792830,204.2,82.2573 +792831,202.69,83.5798 +792832,201.11,84.9319 +792833,204.37,80.9713 +792834,202.89,82.2448 +792835,201.34,83.5451 +792836,199.74,84.8753 +792837,203.08,80.9822 +792838,201.57,82.2326 +792839,200,83.5101 +792840,198.37,84.8178 +792841,201.79,80.9941 +792842,200.25,82.2207 +792843,198.66,83.4747 +792844,197,84.7592 +792845,200.5,81.0069 +792846,198.93,82.2092 +792847,197.31,83.439 +792848,195.63,84.6996 +792849,199.2,81.0207 +792850,197.62,82.198 +792851,195.97,83.403 +792852,194.26,84.639 +792853,197.91,81.0354 +792854,196.3,82.1871 +792855,194.63,83.3667 +792856,192.89,84.5775 +792857,196.61,81.0509 +792858,194.98,82.1764 +792859,193.29,83.3301 +792860,191.53,84.515 +792861,195.32,81.0673 +792862,193.66,82.1661 +792863,191.95,83.2932 +792864,190.16,84.4516 +792865,194.02,81.0846 +792866,192.34,82.1561 +792867,190.61,83.2559 +792868,188.8,84.3874 +792869,192.72,81.1027 +792870,191.02,82.1463 +792871,189.27,83.2185 +792872,187.44,84.3222 +792873,191.42,81.1216 +792874,189.7,82.1369 +792875,187.93,83.1807 +792876,186.08,84.2563 +792877,190.12,81.1412 +792878,188.38,82.1277 +792879,186.59,83.1426 +792880,184.72,84.1895 +792881,188.81,81.1616 +792882,187.06,82.1187 +792883,185.25,83.1043 +792884,183.37,84.1218 +792885,187.51,81.1828 +792886,185.74,82.11 +792887,183.91,83.0658 +792888,182.01,84.0535 +792889,186.2,81.2046 +792890,184.42,82.1015 +792891,182.57,83.027 +792892,180.66,83.9843 +792893,184.9,81.2272 +792894,183.1,82.0933 +792895,181.24,82.9879 +792896,179.31,83.9144 +792897,183.59,81.2504 +792898,181.77,82.0853 +792899,179.9,82.9487 +792900,177.96,83.8439 +792901,182.28,81.2742 +792902,180.45,82.0775 +792903,178.56,82.9092 +792904,176.61,83.7726 +792905,180.97,81.2986 +792906,179.13,82.0699 +792907,177.23,82.8695 +792908,175.26,83.7007 +792909,179.66,81.3236 +792910,177.8,82.0625 +792911,175.89,82.8296 +792912,173.91,83.6281 +792913,178.34,81.3492 +792914,176.48,82.0553 +792915,174.56,82.7895 +792916,172.57,83.555 +792917,177.03,81.3753 +792918,175.16,82.0483 +792919,173.22,82.7492 +792920,171.23,83.4813 +792921,175.71,81.4019 +792922,173.83,82.0415 +792923,171.89,82.7088 +792924,169.88,83.407 +792925,174.39,81.429 +792926,172.5,82.0348 +792927,170.56,82.6682 +792928,168.54,83.3322 +792929,173.07,81.4565 +792930,171.18,82.0283 +792931,169.23,82.6274 +792932,167.21,83.257 +792933,171.75,81.4844 +792934,169.85,82.0219 +792935,167.89,82.5865 +792936,165.87,83.1812 +792937,170.43,81.5127 +792938,168.52,82.0157 +792939,166.56,82.5454 +792940,164.53,83.105 +792941,169.1,81.5415 +792942,167.2,82.0096 +792943,165.23,82.5042 +792944,163.2,83.0285 +792945,167.78,81.5705 +792946,165.87,82.0036 +792947,163.9,82.4629 +792948,161.87,82.9515 +792949,166.45,81.5998 +792950,164.54,81.9978 +792951,162.57,82.4215 +792952,160.54,82.8742 +792953,165.12,81.6295 +792954,163.21,81.992 +792955,161.24,82.38 +792956,159.21,82.7965 +792957,163.79,81.6594 +792958,161.88,81.9863 +792959,159.91,82.3384 +792960,157.88,82.7186 +792961,162.46,81.6895 +792962,160.55,81.9807 +792963,158.59,82.2967 +792964,156.55,82.6404 +792965,161.13,81.7198 +792966,159.22,81.9752 +792967,157.26,82.2549 +792968,155.23,82.562 +792969,159.8,81.7503 +792970,157.89,81.9697 +792971,155.93,82.2131 +792972,153.91,82.4834 +792973,158.46,81.781 +792974,156.56,81.9643 +792975,154.6,82.1712 +792976,152.59,82.4046 +792977,157.12,81.8117 +792978,155.23,81.9589 +792979,153.28,82.1293 +792980,151.27,82.3256 +792981,155.79,81.8426 +792982,153.9,81.9536 +792983,151.95,82.0873 +792984,149.95,82.2466 +792985,154.45,81.8735 +792986,152.57,81.9483 +792987,150.63,82.0453 +792988,148.63,82.1674 +792989,153.11,81.9044 +792990,151.23,81.943 +792991,149.3,82.0034 +792992,147.32,82.0882 +792993,151.76,81.9353 +792994,149.9,81.9377 +792995,147.98,81.9614 +792996,146,82.009 +792997,150.42,81.9662 +792998,148.56,81.9324 +792999,146.66,81.9194 +793000,144.69,81.9298 +793001,149.07,81.9971 +793002,147.23,81.9271 +793003,145.33,81.8774 +793004,143.38,81.8507 +793005,147.73,82.0279 +793006,145.9,81.9218 +793007,144.01,81.8355 +793008,142.07,81.7716 +793009,146.38,82.0586 +793010,144.56,81.9164 +793011,142.69,81.7936 +793012,140.76,81.6926 +793013,145.03,82.0891 +793014,143.22,81.911 +793015,141.37,81.7517 +793016,139.46,81.6137 +793017,143.68,82.1195 +793018,141.89,81.9056 +793019,140.05,81.7099 +793020,138.15,81.535 +793021,142.32,82.1496 +793022,140.55,81.9 +793023,138.73,81.6681 +793024,136.85,81.4564 +793025,140.97,82.1796 +793026,139.21,81.8945 +793027,137.41,81.6265 +793028,135.55,81.3781 +793029,139.62,82.2093 +793030,137.88,81.8888 +793031,136.09,81.5849 +793032,134.25,81.3001 +793033,138.26,82.2387 +793034,136.54,81.883 +793035,134.77,81.5434 +793036,132.95,81.2223 +793037,136.9,82.2679 +793038,135.2,81.8772 +793039,133.45,81.502 +793040,131.65,81.1448 +793041,135.54,82.2967 +793042,133.86,81.8712 +793043,132.13,81.4608 +793044,130.36,81.0677 +793045,134.18,82.3251 +793046,132.52,81.8651 +793047,130.82,81.4196 +793048,129.06,80.9909 +793049,132.82,82.3532 +793050,131.18,81.8589 +793051,129.5,81.3786 +793052,127.77,80.9145 +793053,131.46,82.3808 +793054,129.84,81.8526 +793055,128.18,81.3377 +793056,126.48,80.8385 +793057,130.09,82.4081 +793058,128.5,81.8461 +793059,126.87,81.297 +793060,125.19,80.763 +793061,128.73,82.4348 +793062,127.16,81.8395 +793063,125.55,81.2565 +793064,123.9,80.688 +793065,127.36,82.4611 +793066,125.82,81.8327 +793067,124.24,81.2161 +793068,122.61,80.6135 +793069,125.99,82.4869 +793070,124.48,81.8257 +793071,122.92,81.1759 +793072,121.33,80.5395 +793073,124.62,82.5121 +793074,123.14,81.8186 +793075,121.61,81.1358 +793076,120.04,80.466 +793077,123.25,82.5368 +793078,121.8,81.8113 +793079,120.3,81.096 +793080,118.76,80.3932 +793081,121.88,82.5609 +793082,120.45,81.8037 +793083,118.98,81.0564 +793084,117.47,80.3209 +793085,120.51,82.5843 +793086,119.11,81.796 +793087,117.67,81.017 +793088,116.19,80.2493 +793089,119.13,82.6072 +793090,117.77,81.7881 +793091,116.36,80.9778 +793092,114.91,80.1784 +793093,117.76,82.6294 +793094,116.42,81.7799 +793095,115.05,80.9388 +793096,113.63,80.1082 +793097,116.38,82.6509 +793098,115.08,81.7715 +793099,113.74,80.9001 +793100,112.35,80.0386 +793101,115.01,82.6717 +793102,113.73,81.7629 +793103,112.42,80.8616 +793104,111.08,79.97 +793105,113.63,82.6917 +793106,112.39,81.754 +793107,111.11,80.8234 +793108,109.8,79.902 +793109,112.25,82.7111 +793110,111.04,81.7449 +793111,109.8,80.7854 +793112,108.52,79.835 +793113,110.87,82.7296 +793114,109.7,81.7356 +793115,108.49,80.7478 +793116,107.25,79.768 +793117,109.49,82.7474 +793118,108.35,81.7259 +793119,107.18,80.7103 +793120,105.98,79.703 +793121,108.11,82.7644 +793122,107.01,81.716 +793123,105.87,80.6732 +793124,104.7,79.638 +793125,106.72,82.7805 +793126,105.66,81.7058 +793127,104.56,80.6364 +793128,103.43,79.574 +793129,105.34,82.7958 +793130,104.31,81.6954 +793131,103.26,80.5998 +793132,102.16,79.511 +793133,103.96,82.8102 +793134,102.97,81.6846 +793135,101.95,80.5636 +793136,100.89,79.449 +793137,102.57,82.8237 +793138,101.62,81.6735 +793139,100.64,80.5277 +793140,99.624,79.388 +793141,101.18,82.8363 +793142,100.27,81.6622 +793143,99.332,80.4921 +793144,98.356,79.328 +793145,99.797,82.848 +793146,98.927,81.6505 +793147,98.024,80.4568 +793148,97.089,79.269 +793149,98.41,82.8587 +793150,97.579,81.6385 +793151,96.717,80.4218 +793152,95.822,79.211 +793153,97.021,82.8685 +793154,96.231,81.6262 +793155,95.41,80.3872 +793156,94.556,79.153 +793157,95.632,82.8773 +793158,94.883,81.6135 +793159,94.103,80.3529 +793160,93.291,79.097 +793161,94.243,82.8851 +793162,93.535,81.6005 +793163,92.797,80.319 +793164,92.027,79.042 +793165,92.852,82.8918 +793166,92.187,81.5872 +793167,91.49,80.2854 +793168,90.763,78.988 +793169,91.461,82.8976 +793170,90.838,81.5735 +793171,90.184,80.2522 +793172,89.499,78.935 +793173,90.07,82.9023 +793174,89.49,81.5595 +793175,88.879,80.2194 +793176,88.237,78.884 +793177,88.678,82.906 +793178,88.141,81.5451 +793179,87.573,80.1869 +793180,86.974,78.833 +793181,87.286,82.9086 +793182,86.792,81.5304 +793183,86.268,80.1548 +793184,85.713,78.783 +793185,85.893,82.9101 +793186,85.443,81.5153 +793187,84.962,80.1231 +793188,84.451,78.735 +793189,84.499,82.9105 +793190,84.094,81.4999 +793191,83.657,80.0917 +793192,83.19,78.688 +793193,83.106,82.9098 +793194,82.744,81.484 +793195,82.352,80.0608 +793196,81.93,78.642 +793197,81.712,82.908 +793198,81.395,81.4678 +793199,81.048,80.0302 +793200,80.669,78.597 +793201,80.317,82.9051 +793202,80.045,81.4512 +793203,79.743,80 +793204,79.41,78.553 +793205,78.922,82.901 +793206,78.696,81.4343 +793207,78.438,79.97 +793208,78.15,78.51 +793209,77.527,82.8958 +793210,77.346,81.4169 +793211,77.134,79.941 +793212,76.891,78.469 +793213,76.132,82.8894 +793214,75.997,81.3992 +793215,75.83,79.912 +793216,75.631,78.429 +793217,74.737,82.8819 +793218,74.647,81.381 +793219,74.525,79.883 +793220,74.372,78.39 +793221,73.341,82.8731 +793222,73.297,81.3625 +793223,73.221,79.855 +793224,73.114,78.352 +793225,71.946,82.8632 +793226,71.948,81.3436 +793227,71.917,79.827 +793228,71.855,78.316 +793229,70.55,82.8521 +793230,70.598,81.3242 +793231,70.613,79.8 +793232,70.596,78.281 +793233,69.154,82.8398 +793234,69.248,81.3045 +793235,69.309,79.773 +793236,69.338,78.247 +793237,67.759,82.8264 +793238,67.899,81.2844 +793239,68.005,79.747 +793240,68.079,78.214 +793241,66.363,82.8117 +793242,66.549,81.2639 +793243,66.701,79.721 +793244,66.82,78.183 +793245,64.967,82.7957 +793246,65.199,81.2429 +793247,65.397,79.695 +793248,65.561,78.153 +793249,63.572,82.7786 +793250,63.85,81.2216 +793251,64.093,79.67 +793252,64.303,78.124 +793253,62.176,82.7603 +793254,62.501,81.1998 +793255,62.789,79.645 +793256,63.044,78.096 +793257,60.781,82.7407 +793258,61.151,81.1777 +793259,61.485,79.62 +793260,61.785,78.07 +793261,59.386,82.7199 +793262,59.802,81.1551 +793263,60.181,79.596 +793264,60.525,78.045 +793265,57.991,82.6979 +793266,58.453,81.1321 +793267,58.877,79.573 +793268,59.266,78.021 +793269,56.596,82.6747 +793270,57.104,81.1088 +793271,57.573,79.55 +793272,58.006,77.998 +793273,55.202,82.6503 +793274,55.755,81.085 +793275,56.268,79.527 +793276,56.746,77.977 +793277,53.808,82.6246 +793278,54.406,81.0608 +793279,54.964,79.505 +793280,55.485,77.957 +793281,52.414,82.5977 +793282,53.058,81.0362 +793283,53.66,79.483 +793284,54.224,77.938 +793285,51.021,82.5696 +793286,51.709,81.0112 +793287,52.355,79.461 +793288,52.963,77.921 +793289,49.629,82.5402 +793290,50.361,80.9857 +793291,51.05,79.44 +793292,51.701,77.904 +793293,48.236,82.5097 +793294,49.013,80.9599 +793295,49.746,79.42 +793296,50.439,77.889 +793297,46.845,82.4779 +793298,47.665,80.9337 +793299,48.441,79.4 +793300,49.176,77.876 +793301,45.454,82.445 +793302,46.317,80.9071 +793303,47.136,79.38 +793304,47.913,77.863 +793305,44.063,82.4108 +793306,44.97,80.8801 +793307,45.83,79.36 +793308,46.649,77.852 +793309,42.673,82.3754 +793310,43.623,80.8526 +793311,44.525,79.341 +793312,45.385,77.842 +793313,41.284,82.3389 +793314,42.276,80.8248 +793315,43.219,79.323 +793316,44.12,77.833 +793317,39.895,82.3011 +793318,40.929,80.7966 +793319,41.913,79.305 +793320,42.854,77.825 +793321,38.507,82.2622 +793322,39.582,80.768 +793323,40.607,79.287 +793324,41.588,77.818 +793325,37.12,82.2221 +793326,38.236,80.7391 +793327,39.301,79.27 +793328,40.321,77.813 +793329,35.734,82.1809 +793330,36.89,80.7097 +793331,37.995,79.253 +793332,39.053,77.809 +793333,34.349,82.1385 +793334,35.545,80.68 +793335,36.688,79.236 +793336,37.784,77.806 +793337,32.964,82.095 +793338,34.199,80.6499 +793339,35.381,79.22 +793340,36.515,77.804 +793341,31.58,82.0503 +793342,32.854,80.6194 +793343,34.074,79.204 +793344,35.245,77.803 +793345,30.198,82.0046 +793346,31.51,80.5885 +793347,32.766,79.189 +793348,33.974,77.804 +793349,28.816,81.9577 +793350,30.166,80.5573 +793351,31.458,79.174 +793352,32.702,77.805 +793353,27.435,81.9097 +793354,28.822,80.5257 +793355,30.15,79.159 +793356,31.429,77.808 +793357,26.055,81.8607 +793358,27.478,80.4938 +793359,28.842,79.144 +793360,30.155,77.812 +793361,24.676,81.8105 +793362,26.135,80.4615 +793363,27.533,79.131 +793364,28.88,77.816 +793365,23.299,81.7594 +793366,24.792,80.4289 +793367,26.224,79.117 +793368,27.604,77.822 +793369,21.922,81.7071 +793370,23.449,80.3959 +793371,24.915,79.104 +793372,26.327,77.829 +793373,20.546,81.6539 +793374,22.107,80.3626 +793375,23.605,79.091 +793376,25.049,77.837 +793377,19.172,81.5997 +793378,20.766,80.329 +793379,22.295,79.078 +793380,23.77,77.846 +793381,17.799,81.5444 +793382,19.424,80.295 +793383,20.985,79.066 +793384,22.49,77.856 +793385,16.427,81.4882 +793386,18.083,80.2607 +793387,19.674,79.054 +793388,21.209,77.866 +793389,15.056,81.431 +793390,16.743,80.2261 +793391,18.363,79.042 +793392,19.926,77.878 +793393,13.687,81.3729 +793394,15.403,80.1912 +793395,17.052,79.031 +793396,18.643,77.891 +793397,12.319,81.3139 +793398,14.063,80.156 +793399,15.74,79.02 +793400,17.358,77.904 +793401,10.952,81.254 +793402,12.724,80.1206 +793403,14.428,79.009 +793404,16.072,77.919 +793405,9.5862,81.1931 +793406,11.386,80.0848 +793407,13.115,78.999 +793408,14.785,77.934 +793409,8.222,81.1315 +793410,10.047,80.0487 +793411,11.802,78.989 +793412,13.497,77.95 +793413,6.8592,81.0689 +793414,8.7096,80.0124 +793415,10.489,78.979 +793416,12.207,77.967 +793417,5.4978,81.0056 +793418,7.3723,79.976 +793419,9.1749,78.97 +793420,10.916,77.985 +793421,4.1378,80.9415 +793422,6.0356,79.939 +793423,7.8607,78.96 +793424,9.6237,78.003 +793425,2.7793,80.8765 +793426,4.6993,79.902 +793427,6.546,78.951 +793428,8.3301,78.023 +793429,1.4222,80.8109 +793430,3.3635,79.865 +793431,5.2309,78.943 +793432,7.0351,78.043 +793433,0.066534,80.7445 +793434,2.0282,79.827 +793435,3.9154,78.934 +793436,5.7388,78.063 +793437,358.71,80.6773 +793438,0.69341,79.789 +793439,2.5994,78.926 +793440,4.4412,78.085 +793441,357.36,80.6095 +793442,359.36,79.751 +793443,1.283,78.918 +793444,3.1421,78.107 +793445,356.01,80.541 +793446,358.03,79.713 +793447,359.97,78.91 +793448,1.8417,78.13 +793449,354.66,80.4719 +793450,356.69,79.674 +793451,358.65,78.902 +793452,0.53986,78.153 +793453,353.31,80.4022 +793454,355.36,79.636 +793455,357.33,78.895 +793456,359.24,78.177 +793457,351.96,80.3319 +793458,354.03,79.597 +793459,356.01,78.888 +793460,357.93,78.201 +793461,350.62,80.261 +793462,352.7,79.558 +793463,354.69,78.881 +793464,356.63,78.226 +793465,349.28,80.1896 +793466,351.36,79.519 +793467,353.37,78.874 +793468,355.32,78.251 +793469,347.93,80.1176 +793470,350.03,79.48 +793471,352.06,78.867 +793472,354.01,78.277 +793473,346.59,80.0452 +793474,348.7,79.44 +793475,350.74,78.86 +793476,352.7,78.304 +793477,345.26,79.972 +793478,347.37,79.4 +793479,349.41,78.854 +793480,351.39,78.33 +793481,343.92,79.899 +793482,346.05,79.361 +793483,348.09,78.848 +793484,350.07,78.358 +793485,342.58,79.825 +793486,344.72,79.321 +793487,346.77,78.842 +793488,348.76,78.385 +793489,341.25,79.751 +793490,343.39,79.281 +793491,345.45,78.836 +793492,347.44,78.413 +793493,339.92,79.677 +793494,342.06,79.241 +793495,344.13,78.83 +793496,346.12,78.441 +793497,338.59,79.602 +793498,340.74,79.2 +793499,342.8,78.824 +793500,344.8,78.47 +793501,337.26,79.527 +793502,339.41,79.16 +793503,341.48,78.818 +793504,343.48,78.498 +793505,335.93,79.452 +793506,338.08,79.12 +793507,340.16,78.813 +793508,342.16,78.527 +793509,334.61,79.376 +793510,336.76,79.079 +793511,338.83,78.807 +793512,340.84,78.557 +793513,333.28,79.3 +793514,335.43,79.039 +793515,337.51,78.802 +793516,339.51,78.586 +793517,331.96,79.224 +793518,334.11,78.998 +793519,336.18,78.796 +793520,338.18,78.615 +793521,330.64,79.148 +793522,332.79,78.958 +793523,334.86,78.791 +793524,336.86,78.645 +793525,329.32,79.072 +793526,331.46,78.917 +793527,333.53,78.786 +793528,335.53,78.675 +793529,328.01,78.995 +793530,330.14,78.876 +793531,332.2,78.78 +793532,334.19,78.705 +793533,326.69,78.919 +793534,328.82,78.836 +793535,330.87,78.775 +793536,332.86,78.735 +793537,325.38,78.843 +793538,327.5,78.795 +793539,329.55,78.77 +793540,331.53,78.764 +793541,324.06,78.766 +793542,326.18,78.754 +793543,328.22,78.765 +793544,330.19,78.794 +793545,322.75,78.69 +793546,324.86,78.714 +793547,326.89,78.759 +793548,328.85,78.824 +793549,321.44,78.613 +793550,323.54,78.673 +793551,325.56,78.754 +793552,327.51,78.854 +793553,320.14,78.537 +793554,322.22,78.633 +793555,324.23,78.749 +793556,326.17,78.883 +793557,318.83,78.461 +793558,320.9,78.592 +793559,322.9,78.744 +793560,324.83,78.913 +793561,317.53,78.385 +793562,319.58,78.551 +793563,321.57,78.738 +793564,323.49,78.942 +793565,316.23,78.309 +793566,318.27,78.511 +793567,320.24,78.733 +793568,322.14,78.971 +793569,314.92,78.233 +793570,316.95,78.471 +793571,318.9,78.727 +793572,320.79,79 +793573,313.63,78.158 +793574,315.63,78.43 +793575,317.57,78.722 +793576,319.45,79.029 +793577,312.33,78.082 +793578,314.32,78.39 +793579,316.24,78.716 +793580,318.1,79.058 +793581,311.03,78.007 +793582,313,78.35 +793583,314.91,78.71 +793584,316.75,79.086 +793585,309.74,77.933 +793586,311.69,78.31 +793587,313.57,78.705 +793588,315.39,79.114 +793589,308.44,77.858 +793590,310.37,78.27 +793591,312.24,78.699 +793592,314.04,79.141 +793593,307.15,77.784 +793594,309.06,78.231 +793595,310.9,78.693 +793596,312.69,79.168 +793597,305.86,77.711 +793598,307.75,78.191 +793599,309.57,78.687 +793600,311.33,79.195 +793601,304.57,77.638 +793602,306.43,78.152 +793603,308.23,78.68 +793604,309.97,79.221 +793605,303.28,77.565 +793606,305.12,78.112 +793607,306.9,78.674 +793608,308.61,79.247 +793609,302,77.493 +793610,303.81,78.073 +793611,305.56,78.667 +793612,307.25,79.273 +793613,300.71,77.421 +793614,302.5,78.034 +793615,304.22,78.66 +793616,305.89,79.298 +793617,299.43,77.35 +793618,301.19,77.995 +793619,302.89,78.654 +793620,304.53,79.322 +793621,298.15,77.279 +793622,299.88,77.957 +793623,301.55,78.646 +793624,303.16,79.346 +793625,296.87,77.209 +793626,298.57,77.918 +793627,300.21,78.639 +793628,301.8,79.369 +793629,295.59,77.14 +793630,297.26,77.88 +793631,298.87,78.632 +793632,300.43,79.392 +793633,294.31,77.071 +793634,295.95,77.842 +793635,297.53,78.624 +793636,299.06,79.414 +793637,293.04,77.003 +793638,294.64,77.804 +793639,296.19,78.616 +793640,297.69,79.436 +793641,291.76,76.935 +793642,293.33,77.767 +793643,294.85,78.608 +793644,296.32,79.457 +793645,290.49,76.869 +793646,292.03,77.73 +793647,293.51,78.6 +793648,294.95,79.477 +793649,289.21,76.803 +793650,290.72,77.693 +793651,292.17,78.591 +793652,293.58,79.496 +793653,287.94,76.737 +793654,289.41,77.656 +793655,290.83,78.582 +793656,292.2,79.515 +793657,286.67,76.673 +793658,288.11,77.619 +793659,289.49,78.573 +793660,290.83,79.533 +793661,285.4,76.609 +793662,286.8,77.583 +793663,288.15,78.564 +793664,289.45,79.55 +793665,284.13,76.546 +793666,285.49,77.547 +793667,286.81,78.555 +793668,288.07,79.567 +793669,282.86,76.484 +793670,284.19,77.511 +793671,285.47,78.545 +793672,286.7,79.582 +793673,281.6,76.423 +793674,282.88,77.476 +793675,284.12,78.535 +793676,285.32,79.597 +793677,280.33,76.363 +793678,281.58,77.441 +793679,282.78,78.524 +793680,283.94,79.611 +793681,279.07,76.303 +793682,280.28,77.406 +793683,281.44,78.514 +793684,282.56,79.624 +793685,277.8,76.245 +793686,278.97,77.372 +793687,280.09,78.503 +793688,281.17,79.636 +793689,276.54,76.187 +793690,277.67,77.337 +793691,278.75,78.491 +793692,279.79,79.648 +793693,275.28,76.131 +793694,276.36,77.303 +793695,277.41,78.48 +793696,278.41,79.658 +793697,274.02,76.075 +793698,275.06,77.27 +793699,276.06,78.468 +793700,277.02,79.667 +793701,272.76,76.021 +793702,273.76,77.237 +793703,274.72,78.456 +793704,275.64,79.676 +793705,271.5,75.967 +793706,272.46,77.204 +793707,273.37,78.443 +793708,274.25,79.683 +793709,270.24,75.915 +793710,271.15,77.171 +793711,272.03,78.43 +793712,272.86,79.69 +793713,268.98,75.863 +793714,269.85,77.139 +793715,270.68,78.417 +793716,271.48,79.696 +793717,267.73,75.813 +793718,268.55,77.107 +793719,269.34,78.404 +793720,270.09,79.7 +793721,266.47,75.763 +793722,267.25,77.076 +793723,267.99,78.39 +793724,268.7,79.704 +793725,265.21,75.715 +793726,265.95,77.045 +793727,266.65,78.376 +793728,267.31,79.706 +793729,263.96,75.668 +793730,264.65,77.014 +793731,265.3,78.361 +793732,265.92,79.708 +793733,262.7,75.622 +793734,263.35,76.984 +793735,263.96,78.346 +793736,264.53,79.708 +793737,261.45,75.577 +793738,262.05,76.954 +793739,262.61,78.331 +793740,263.14,79.707 +793741,260.19,75.533 +793742,260.75,76.924 +793743,261.26,78.315 +793744,261.75,79.705 +793745,258.94,75.491 +793746,259.45,76.895 +793747,259.92,78.299 +793748,260.35,79.703 +793749,257.69,75.449 +793750,258.15,76.866 +793751,258.57,78.283 +793752,258.96,79.699 +793753,256.43,75.409 +793754,256.85,76.838 +793755,257.22,78.266 +793756,257.57,79.694 +793757,255.18,75.37 +793758,255.55,76.81 +793759,255.88,78.249 +793760,256.18,79.687 +793761,253.93,75.332 +793762,254.25,76.782 +793763,254.53,78.232 +793764,254.78,79.68 +793765,252.68,75.296 +793766,252.95,76.755 +793767,253.18,78.214 +793768,253.39,79.671 +793769,251.43,75.26 +793770,251.65,76.728 +793771,251.84,78.196 +793772,251.99,79.662 +793773,250.17,75.226 +793774,250.35,76.702 +793775,250.49,78.177 +793776,250.6,79.651 +793777,248.92,75.193 +793778,249.05,76.676 +793779,249.14,78.158 +793780,249.2,79.639 +793781,247.67,75.161 +793782,247.75,76.65 +793783,247.8,78.139 +793784,247.81,79.626 +793785,246.42,75.131 +793786,246.45,76.625 +793787,246.45,78.119 +793788,246.42,79.612 +793789,245.17,75.101 +793790,245.15,76.6 +793791,245.1,78.099 +793792,245.02,79.596 +793793,243.92,75.073 +793794,243.85,76.576 +793795,243.76,78.078 +793796,243.63,79.58 +793797,242.67,75.046 +793798,242.55,76.552 +793799,242.41,78.057 +793800,242.23,79.562 +793801,241.42,75.021 +793802,241.25,76.528 +793803,241.06,78.036 +793804,240.84,79.543 +793805,240.16,74.996 +793806,239.96,76.505 +793807,239.71,78.014 +793808,239.44,79.523 +793809,238.91,74.973 +793810,238.66,76.482 +793811,238.37,77.992 +793812,238.05,79.501 +793813,237.66,74.951 +793814,237.36,76.46 +793815,237.02,77.969 +793816,236.65,79.479 +793817,236.41,74.931 +793818,236.06,76.438 +793819,235.67,77.946 +793820,235.26,79.455 +793821,235.16,74.911 +793822,234.76,76.416 +793823,234.33,77.923 +793824,233.86,79.43 +793825,233.9,74.893 +793826,233.46,76.395 +793827,232.98,77.899 +793828,232.47,79.404 +793829,232.65,74.876 +793830,232.16,76.375 +793831,231.64,77.875 +793832,231.08,79.377 +793833,231.4,74.86 +793834,230.86,76.354 +793835,230.29,77.851 +793836,229.68,79.348 +793837,230.14,74.846 +793838,229.56,76.335 +793839,228.94,77.826 +793840,228.29,79.319 +793841,228.89,74.833 +793842,228.26,76.315 +793843,227.6,77.8 +793844,226.9,79.288 +793845,227.63,74.821 +793846,226.96,76.296 +793847,226.25,77.775 +793848,225.5,79.256 +793849,226.38,74.81 +793850,225.66,76.277 +793851,224.91,77.749 +793852,224.11,79.223 +793853,225.12,74.8 +793854,224.36,76.259 +793855,223.56,77.722 +793856,222.72,79.188 +793857,223.87,74.792 +793858,223.06,76.241 +793859,222.22,77.695 +793860,221.33,79.153 +793861,222.61,74.784 +793862,221.76,76.224 +793863,220.87,77.668 +793864,219.94,79.116 +793865,221.35,74.778 +793866,220.46,76.207 +793867,219.53,77.64 +793868,218.55,79.078 +793869,220.09,74.773 +793870,219.16,76.19 +793871,218.18,77.612 +793872,217.16,79.04 +793873,218.83,74.769 +793874,217.86,76.174 +793875,216.84,77.584 +793876,215.78,78.999 +793877,217.57,74.767 +793878,216.55,76.158 +793879,215.49,77.555 +793880,214.39,78.958 +793881,216.31,74.765 +793882,215.25,76.142 +793883,214.15,77.526 +793884,213,78.916 +793885,215.05,74.765 +793886,213.95,76.127 +793887,212.81,77.497 +793888,211.62,78.873 +793889,213.79,74.766 +793890,212.65,76.113 +793891,211.47,77.467 +793892,210.23,78.828 +793893,212.53,74.767 +793894,211.35,76.098 +793895,210.12,77.437 +793896,208.85,78.783 +793897,211.26,74.77 +793898,210.04,76.084 +793899,208.78,77.406 +793900,207.46,78.736 +793901,210,74.774 +793902,208.74,76.07 +793903,207.44,77.375 +793904,206.08,78.689 +793905,208.73,74.779 +793906,207.44,76.057 +793907,206.1,77.344 +793908,204.7,78.64 +793909,207.46,74.785 +793910,206.13,76.044 +793911,204.76,77.313 +793912,203.32,78.591 +793913,206.2,74.792 +793914,204.83,76.032 +793915,203.41,77.281 +793916,201.94,78.54 +793917,204.93,74.8 +793918,203.53,76.019 +793919,202.07,77.249 +793920,200.56,78.488 +793921,203.66,74.809 +793922,202.22,76.007 +793923,200.73,77.216 +793924,199.19,78.436 +793925,202.39,74.819 +793926,200.92,75.996 +793927,199.39,77.183 +793928,197.81,78.382 +793929,201.11,74.83 +793930,199.61,75.984 +793931,198.05,77.15 +793932,196.44,78.328 +793933,199.84,74.842 +793934,198.3,75.973 +793935,196.72,77.117 +793936,195.06,78.272 +793937,198.57,74.855 +793938,197,75.963 +793939,195.38,77.083 +793940,193.69,78.216 +793941,197.29,74.868 +793942,195.69,75.952 +793943,194.04,77.049 +793944,192.32,78.159 +793945,196.01,74.883 +793946,194.39,75.942 +793947,192.7,77.014 +793948,190.95,78.1 +793949,194.74,74.898 +793950,193.08,75.932 +793951,191.36,76.98 +793952,189.58,78.041 +793953,193.46,74.915 +793954,191.77,75.923 +793955,190.03,76.945 +793956,188.21,77.982 +793957,192.18,74.932 +793958,190.46,75.914 +793959,188.69,76.91 +793960,186.85,77.921 +793961,190.89,74.949 +793962,189.15,75.905 +793963,187.35,76.874 +793964,185.48,77.859 +793965,189.61,74.968 +793966,187.85,75.896 +793967,186.02,76.839 +793968,184.12,77.797 +793969,188.33,74.987 +793970,186.54,75.887 +793971,184.68,76.803 +793972,182.76,77.734 +793973,187.04,75.007 +793974,185.23,75.879 +793975,183.35,76.767 +793976,181.4,77.671 +793977,185.75,75.028 +793978,183.92,75.871 +793979,182.02,76.73 +793980,180.04,77.606 +793981,184.46,75.049 +793982,182.61,75.864 +793983,180.68,76.694 +793984,178.68,77.541 +793985,183.17,75.071 +793986,181.29,75.856 +793987,179.35,76.657 +793988,177.33,77.475 +793989,181.88,75.094 +793990,179.98,75.849 +793991,178.02,76.62 +793992,175.97,77.409 +793993,180.59,75.117 +793994,178.67,75.842 +793995,176.68,76.583 +793996,174.62,77.342 +793997,179.29,75.141 +793998,177.36,75.835 +793999,175.35,76.545 +794000,173.27,77.274 +794001,178,75.165 +794002,176.04,75.828 +794003,174.02,76.508 +794004,171.92,77.206 +794005,176.7,75.19 +794006,174.73,75.821 +794007,172.69,76.47 +794008,170.57,77.137 +794009,175.4,75.215 +794010,173.42,75.815 +794011,171.36,76.432 +794012,169.22,77.068 +794013,174.1,75.241 +794014,172.1,75.809 +794015,170.03,76.394 +794016,167.88,76.998 +794017,172.8,75.267 +794018,170.79,75.803 +794019,168.7,76.356 +794020,166.54,76.928 +794021,171.5,75.294 +794022,169.47,75.797 +794023,167.38,76.317 +794024,165.19,76.857 +794025,170.19,75.321 +794026,168.16,75.791 +794027,166.05,76.279 +794028,163.85,76.786 +794029,168.88,75.349 +794030,166.84,75.786 +794031,164.72,76.24 +794032,162.52,76.714 +794033,167.58,75.376 +794034,165.52,75.78 +794035,163.39,76.201 +794036,161.18,76.642 +794037,166.27,75.404 +794038,164.21,75.775 +794039,162.07,76.163 +794040,159.85,76.57 +794041,164.96,75.433 +794042,162.89,75.769 +794043,160.74,76.124 +794044,158.51,76.497 +794045,163.64,75.461 +794046,161.57,75.764 +794047,159.42,76.085 +794048,157.18,76.425 +794049,162.33,75.49 +794050,160.25,75.759 +794051,158.09,76.045 +794052,155.85,76.351 +794053,161.01,75.519 +794054,158.93,75.754 +794055,156.77,76.006 +794056,154.52,76.278 +794057,159.69,75.549 +794058,157.61,75.749 +794059,155.45,75.967 +794060,153.2,76.204 +794061,158.38,75.578 +794062,156.29,75.744 +794063,154.13,75.928 +794064,151.87,76.131 +794065,157.06,75.607 +794066,154.97,75.739 +794067,152.8,75.888 +794068,150.55,76.057 +794069,155.73,75.637 +794070,153.65,75.734 +794071,151.48,75.849 +794072,149.23,75.983 +794073,154.41,75.667 +794074,152.32,75.73 +794075,150.16,75.81 +794076,147.91,75.909 +794077,153.08,75.696 +794078,151,75.725 +794079,148.84,75.77 +794080,146.59,75.834 +794081,151.76,75.726 +794082,149.68,75.72 +794083,147.52,75.731 +794084,145.28,75.76 +794085,150.43,75.756 +794086,148.35,75.715 +794087,146.2,75.691 +794088,143.96,75.686 +794089,149.1,75.785 +794090,147.03,75.711 +794091,144.88,75.652 +794092,142.65,75.611 +794093,147.77,75.815 +794094,145.71,75.706 +794095,143.57,75.613 +794096,141.34,75.537 +794097,146.43,75.844 +794098,144.38,75.701 +794099,142.25,75.573 +794100,140.03,75.463 +794101,145.1,75.873 +794102,143.05,75.696 +794103,140.93,75.534 +794104,138.72,75.389 +794105,143.76,75.903 +794106,141.73,75.691 +794107,139.62,75.495 +794108,137.42,75.315 +794109,142.42,75.932 +794110,140.4,75.686 +794111,138.3,75.455 +794112,136.11,75.241 +794113,141.08,75.96 +794114,139.07,75.681 +794115,136.99,75.416 +794116,134.81,75.168 +794117,139.74,75.989 +794118,137.75,75.676 +794119,135.67,75.377 +794120,133.51,75.094 +794121,138.4,76.017 +794122,136.42,75.671 +794123,134.36,75.338 +794124,132.21,75.021 +794125,137.06,76.045 +794126,135.09,75.666 +794127,133.04,75.299 +794128,130.91,74.948 +794129,135.71,76.073 +794130,133.76,75.66 +794131,131.73,75.261 +794132,129.62,74.876 +794133,134.36,76.1 +794134,132.43,75.655 +794135,130.42,75.222 +794136,128.32,74.804 +794137,133.02,76.127 +794138,131.1,75.649 +794139,129.11,75.183 +794140,127.03,74.732 +794141,131.67,76.153 +794142,129.77,75.644 +794143,127.8,75.145 +794144,125.74,74.66 +794145,130.31,76.18 +794146,128.44,75.638 +794147,126.49,75.107 +794148,124.45,74.589 +794149,128.96,76.205 +794150,127.11,75.632 +794151,125.18,75.069 +794152,123.16,74.518 +794153,127.61,76.23 +794154,125.77,75.626 +794155,123.87,75.031 +794156,121.88,74.448 +794157,126.25,76.255 +794158,124.44,75.619 +794159,122.56,74.993 +794160,120.59,74.379 +794161,124.89,76.279 +794162,123.11,75.613 +794163,121.25,74.955 +794164,119.31,74.309 +794165,123.54,76.303 +794166,121.77,75.606 +794167,119.94,74.918 +794168,118.03,74.241 +794169,122.18,76.326 +794170,120.44,75.6 +794171,118.63,74.881 +794172,116.75,74.172 +794173,120.81,76.349 +794174,119.1,75.593 +794175,117.33,74.844 +794176,115.47,74.105 +794177,119.45,76.371 +794178,117.77,75.585 +794179,116.02,74.807 +794180,114.19,74.038 +794181,118.09,76.392 +794182,116.43,75.578 +794183,114.71,74.77 +794184,112.92,73.972 +794185,116.72,76.412 +794186,115.1,75.57 +794187,113.41,74.734 +794188,111.64,73.906 +794189,115.36,76.432 +794190,113.76,75.562 +794191,112.1,74.698 +794192,110.37,73.841 +794193,113.99,76.452 +794194,112.42,75.554 +794195,110.8,74.662 +794196,109.1,73.777 +794197,112.62,76.47 +794198,111.09,75.546 +794199,109.49,74.626 +794200,107.83,73.714 +794201,111.25,76.488 +794202,109.75,75.537 +794203,108.19,74.591 +794204,106.56,73.651 +794205,109.88,76.505 +794206,108.41,75.529 +794207,106.89,74.556 +794208,105.29,73.589 +794209,108.51,76.521 +794210,107.07,75.52 +794211,105.58,74.521 +794212,104.03,73.528 +794213,107.13,76.537 +794214,105.74,75.51 +794215,104.28,74.486 +794216,102.76,73.467 +794217,105.76,76.551 +794218,104.4,75.501 +794219,102.98,74.452 +794220,101.5,73.408 +794221,104.38,76.565 +794222,103.06,75.491 +794223,101.68,74.418 +794224,100.23,73.349 +794225,103,76.578 +794226,101.72,75.481 +794227,100.37,74.384 +794228,98.972,73.292 +794229,101.63,76.59 +794230,100.38,75.47 +794231,99.074,74.351 +794232,97.711,73.235 +794233,100.25,76.601 +794234,99.037,75.459 +794235,97.773,74.318 +794236,96.451,73.179 +794237,98.868,76.611 +794238,97.697,75.448 +794239,96.473,74.285 +794240,95.192,73.124 +794241,97.487,76.621 +794242,96.356,75.437 +794243,95.173,74.253 +794244,93.935,73.07 +794245,96.105,76.629 +794246,95.014,75.425 +794247,93.873,74.221 +794248,92.678,73.017 +794249,94.723,76.636 +794250,93.673,75.413 +794251,92.574,74.189 +794252,91.422,72.965 +794253,93.339,76.643 +794254,92.331,75.401 +794255,91.275,74.157 +794256,90.167,72.914 +794257,91.955,76.648 +794258,90.989,75.388 +794259,89.976,74.126 +794260,88.912,72.864 +794261,90.57,76.653 +794262,89.647,75.375 +794263,88.677,74.095 +794264,87.659,72.815 +794265,89.184,76.656 +794266,88.304,75.362 +794267,87.379,74.065 +794268,86.406,72.767 +794269,87.797,76.658 +794270,86.961,75.348 +794271,86.081,74.035 +794272,85.154,72.72 +794273,86.409,76.66 +794274,85.618,75.334 +794275,84.784,74.005 +794276,83.903,72.675 +794277,85.021,76.66 +794278,84.275,75.32 +794279,83.486,73.976 +794280,82.653,72.63 +794281,83.633,76.659 +794282,82.932,75.305 +794283,82.189,73.947 +794284,81.403,72.586 +794285,82.243,76.657 +794286,81.588,75.29 +794287,80.892,73.918 +794288,80.153,72.544 +794289,80.853,76.654 +794290,80.244,75.274 +794291,79.595,73.89 +794292,78.905,72.503 +794293,79.463,76.65 +794294,78.9,75.258 +794295,78.299,73.862 +794296,77.656,72.463 +794297,78.072,76.645 +794298,77.556,75.242 +794299,77.002,73.835 +794300,76.408,72.424 +794301,76.68,76.639 +794302,76.212,75.226 +794303,75.706,73.808 +794304,75.161,72.386 +794305,75.288,76.632 +794306,74.868,75.209 +794307,74.41,73.781 +794308,73.914,72.349 +794309,73.896,76.623 +794310,73.523,75.191 +794311,73.114,73.755 +794312,72.668,72.314 +794313,72.503,76.613 +794314,72.179,75.174 +794315,71.818,73.729 +794316,71.421,72.28 +794317,71.11,76.603 +794318,70.834,75.156 +794319,70.523,73.703 +794320,70.175,72.247 +794321,69.717,76.591 +794322,69.489,75.137 +794323,69.227,73.678 +794324,68.93,72.215 +794325,68.323,76.578 +794326,68.145,75.118 +794327,67.932,73.653 +794328,67.684,72.184 +794329,66.929,76.563 +794330,66.8,75.099 +794331,66.636,73.629 +794332,66.439,72.155 +794333,65.535,76.548 +794334,65.455,75.079 +794335,65.341,73.605 +794336,65.193,72.127 +794337,64.141,76.531 +794338,64.11,75.059 +794339,64.046,73.582 +794340,63.948,72.1 +794341,62.746,76.514 +794342,62.765,75.039 +794343,62.751,73.558 +794344,62.703,72.074 +794345,61.352,76.495 +794346,61.42,75.018 +794347,61.455,73.536 +794348,61.458,72.049 +794349,59.957,76.475 +794350,60.075,74.997 +794351,60.16,73.513 +794352,60.213,72.026 +794353,58.563,76.453 +794354,58.73,74.975 +794355,58.865,73.492 +794356,58.968,72.004 +794357,57.168,76.431 +794358,57.385,74.953 +794359,57.57,73.47 +794360,57.723,71.983 +794361,55.774,76.407 +794362,56.04,74.931 +794363,56.275,73.449 +794364,56.477,71.963 +794365,54.379,76.383 +794366,54.695,74.908 +794367,54.979,73.428 +794368,55.232,71.945 +794369,52.985,76.357 +794370,53.351,74.885 +794371,53.684,73.408 +794372,53.986,71.928 +794373,51.591,76.33 +794374,52.006,74.861 +794375,52.389,73.388 +794376,52.74,71.912 +794377,50.197,76.301 +794378,50.662,74.837 +794379,51.093,73.369 +794380,51.494,71.897 +794381,48.803,76.272 +794382,49.317,74.813 +794383,49.798,73.35 +794384,50.247,71.883 +794385,47.41,76.241 +794386,47.973,74.788 +794387,48.502,73.331 +794388,49,71.871 +794389,46.017,76.21 +794390,46.629,74.763 +794391,47.207,73.313 +794392,47.752,71.86 +794393,44.624,76.177 +794394,45.285,74.738 +794395,45.911,73.295 +794396,46.504,71.85 +794397,43.232,76.143 +794398,43.941,74.712 +794399,44.615,73.277 +794400,45.256,71.841 +794401,41.84,76.108 +794402,42.597,74.685 +794403,43.319,73.26 +794404,44.007,71.834 +794405,40.449,76.071 +794406,41.253,74.659 +794407,42.022,73.244 +794408,42.758,71.827 +794409,39.058,76.034 +794410,39.91,74.632 +794411,40.726,73.227 +794412,41.508,71.822 +794413,37.667,75.995 +794414,38.567,74.604 +794415,39.429,73.211 +794416,40.257,71.818 +794417,36.278,75.956 +794418,37.224,74.577 +794419,38.132,73.196 +794420,39.006,71.815 +794421,34.888,75.915 +794422,35.881,74.548 +794423,36.835,73.181 +794424,37.754,71.813 +794425,33.5,75.873 +794426,34.539,74.52 +794427,35.538,73.166 +794428,36.501,71.812 +794429,32.112,75.83 +794430,33.197,74.491 +794431,34.241,73.151 +794432,35.248,71.812 +794433,30.725,75.786 +794434,31.855,74.462 +794435,32.943,73.137 +794436,33.993,71.814 +794437,29.339,75.741 +794438,30.513,74.432 +794439,31.645,73.124 +794440,32.738,71.816 +794441,27.953,75.695 +794442,29.172,74.402 +794443,30.347,73.11 +794444,31.482,71.82 +794445,26.568,75.648 +794446,27.831,74.372 +794447,29.048,73.097 +794448,30.225,71.824 +794449,25.185,75.6 +794450,26.49,74.341 +794451,27.749,73.085 +794452,28.968,71.83 +794453,23.802,75.551 +794454,25.15,74.311 +794455,26.45,73.072 +794456,27.709,71.837 +794457,22.42,75.501 +794458,23.81,74.279 +794459,25.151,73.06 +794460,26.449,71.844 +794461,21.039,75.45 +794462,22.47,74.248 +794463,23.851,73.049 +794464,25.188,71.853 +794465,19.658,75.398 +794466,21.131,74.216 +794467,22.551,73.037 +794468,23.927,71.863 +794469,18.279,75.345 +794470,19.792,74.184 +794471,21.251,73.026 +794472,22.664,71.873 +794473,16.902,75.291 +794474,18.453,74.151 +794475,19.95,73.016 +794476,21.4,71.885 +794477,15.525,75.236 +794478,17.115,74.118 +794479,18.649,73.005 +794480,20.135,71.897 +794481,14.149,75.18 +794482,15.777,74.085 +794483,17.347,72.995 +794484,18.869,71.911 +794485,12.774,75.124 +794486,14.439,74.052 +794487,16.046,72.985 +794488,17.601,71.925 +794489,11.401,75.066 +794490,13.102,74.018 +794491,14.743,72.976 +794492,16.333,71.94 +794493,10.029,75.008 +794494,11.766,73.984 +794495,13.441,72.966 +794496,15.063,71.956 +794497,8.6581,74.949 +794498,10.429,73.95 +794499,12.138,72.958 +794500,13.792,71.973 +794501,7.2885,74.889 +794502,9.0937,73.915 +794503,10.834,72.949 +794504,12.519,71.99 +794505,5.9202,74.828 +794506,7.7584,73.88 +794507,9.5306,72.94 +794508,11.246,72.008 +794509,4.5533,74.767 +794510,6.4236,73.845 +794511,8.2263,72.932 +794512,9.9708,72.027 +794513,3.1877,74.704 +794514,5.0892,73.81 +794515,6.9216,72.924 +794516,8.6945,72.047 +794517,1.8235,74.642 +794518,3.7553,73.775 +794519,5.6165,72.917 +794520,7.4168,72.068 +794521,0.46079,74.578 +794522,2.4219,73.739 +794523,4.3109,72.909 +794524,6.1377,72.089 +794525,359.1,74.514 +794526,1.089,73.703 +794527,3.0048,72.902 +794528,4.8573,72.111 +794529,357.74,74.449 +794530,359.76,73.667 +794531,1.6983,72.895 +794532,3.5754,72.133 +794533,356.38,74.383 +794534,358.42,73.63 +794535,0.39137,72.888 +794536,2.2921,72.156 +794537,355.02,74.317 +794538,357.09,73.594 +794539,359.08,72.882 +794540,1.0073,72.18 +794541,353.67,74.25 +794542,355.76,73.557 +794543,357.78,72.875 +794544,359.72,72.204 +794545,352.32,74.183 +794546,354.43,73.52 +794547,356.47,72.869 +794548,358.43,72.229 +794549,350.96,74.115 +794550,353.1,73.483 +794551,355.16,72.863 +794552,357.14,72.254 +794553,349.61,74.046 +794554,351.77,73.446 +794555,353.85,72.857 +794556,355.85,72.28 +794557,348.26,73.977 +794558,350.44,73.408 +794559,352.54,72.851 +794560,354.56,72.306 +794561,346.92,73.908 +794562,349.12,73.371 +794563,351.23,72.846 +794564,353.27,72.332 +794565,345.57,73.838 +794566,347.79,73.333 +794567,349.92,72.84 +794568,351.97,72.359 +794569,344.23,73.768 +794570,346.46,73.295 +794571,348.61,72.835 +794572,350.68,72.387 +794573,342.88,73.697 +794574,345.13,73.257 +794575,347.29,72.83 +794576,349.38,72.414 +794577,341.54,73.626 +794578,343.81,73.219 +794579,345.98,72.825 +794580,348.08,72.442 +794581,340.21,73.555 +794582,342.48,73.181 +794583,344.67,72.82 +794584,346.77,72.471 +794585,338.87,73.483 +794586,341.16,73.142 +794587,343.36,72.815 +794588,345.47,72.499 +794589,337.53,73.412 +794590,339.83,73.104 +794591,342.04,72.81 +794592,344.17,72.528 +794593,336.2,73.339 +794594,338.51,73.065 +794595,340.73,72.805 +794596,342.86,72.557 +794597,334.87,73.267 +794598,337.19,73.027 +794599,339.41,72.8 +794600,341.55,72.587 +794601,333.54,73.194 +794602,335.87,72.988 +794603,338.1,72.796 +794604,340.24,72.616 +794605,332.21,73.122 +794606,334.54,72.95 +794607,336.78,72.791 +794608,338.93,72.646 +794609,330.88,73.049 +794610,333.22,72.911 +794611,335.46,72.787 +794612,337.62,72.675 +794613,329.56,72.976 +794614,331.9,72.872 +794615,334.15,72.782 +794616,336.3,72.705 +794617,328.23,72.902 +794618,330.58,72.833 +794619,332.83,72.778 +794620,334.99,72.735 +794621,326.91,72.829 +794622,329.26,72.795 +794623,331.51,72.773 +794624,333.67,72.765 +794625,325.59,72.756 +794626,327.94,72.756 +794627,330.19,72.769 +794628,332.35,72.794 +794629,324.28,72.683 +794630,326.62,72.717 +794631,328.87,72.765 +794632,331.03,72.824 +794633,322.96,72.61 +794634,325.31,72.678 +794635,327.55,72.76 +794636,329.71,72.854 +794637,321.65,72.536 +794638,323.99,72.639 +794639,326.23,72.756 +794640,328.38,72.884 +794641,320.33,72.463 +794642,322.67,72.601 +794643,324.91,72.751 +794644,327.05,72.913 +794645,319.02,72.39 +794646,321.36,72.562 +794647,323.59,72.747 +794648,325.73,72.942 +794649,317.72,72.317 +794650,320.04,72.523 +794651,322.27,72.742 +794652,324.4,72.972 +794653,316.41,72.245 +794654,318.73,72.485 +794655,320.94,72.737 +794656,323.07,73.001 +794657,315.1,72.172 +794658,317.41,72.446 +794659,319.62,72.733 +794660,321.73,73.029 +794661,313.8,72.1 +794662,316.1,72.408 +794663,318.3,72.728 +794664,320.4,73.058 +794665,312.5,72.028 +794666,314.79,72.369 +794667,316.97,72.723 +794668,319.06,73.086 +794669,311.2,71.956 +794670,313.47,72.331 +794671,315.65,72.718 +794672,317.73,73.114 +794673,309.9,71.884 +794674,312.16,72.293 +794675,314.32,72.713 +794676,316.39,73.142 +794677,308.61,71.813 +794678,310.85,72.255 +794679,312.99,72.708 +794680,315.05,73.169 +794681,307.31,71.742 +794682,309.54,72.217 +794683,311.67,72.702 +794684,313.7,73.196 +794685,306.02,71.672 +794686,308.23,72.179 +794687,310.34,72.697 +794688,312.36,73.222 +794689,304.73,71.602 +794690,306.92,72.142 +794691,309.01,72.691 +794692,311.02,73.248 +794693,303.44,71.532 +794694,305.61,72.104 +794695,307.69,72.685 +794696,309.67,73.274 +794697,302.15,71.463 +794698,304.3,72.067 +794699,306.36,72.68 +794700,308.32,73.299 +794701,300.86,71.394 +794702,303,72.03 +794703,305.03,72.673 +794704,306.97,73.324 +794705,299.58,71.326 +794706,301.69,71.992 +794707,303.7,72.667 +794708,305.62,73.348 +794709,298.3,71.258 +794710,300.38,71.956 +794711,302.37,72.661 +794712,304.27,73.371 +794713,297.02,71.191 +794714,299.08,71.919 +794715,301.04,72.654 +794716,302.91,73.394 +794717,295.74,71.125 +794718,297.77,71.883 +794719,299.71,72.647 +794720,301.56,73.417 +794721,294.46,71.059 +794722,296.46,71.846 +794723,298.37,72.64 +794724,300.2,73.438 +794725,293.18,70.994 +794726,295.16,71.81 +794727,297.04,72.633 +794728,298.84,73.459 +794729,291.91,70.929 +794730,293.86,71.774 +794731,295.71,72.625 +794732,297.48,73.48 +794733,290.64,70.865 +794734,292.55,71.739 +794735,294.38,72.618 +794736,296.12,73.5 +794737,289.36,70.802 +794738,291.25,71.704 +794739,293.04,72.61 +794740,294.76,73.519 +794741,288.09,70.739 +794742,289.95,71.668 +794743,291.71,72.602 +794744,293.39,73.537 +794745,286.82,70.678 +794746,288.64,71.634 +794747,290.38,72.593 +794748,292.03,73.554 +794749,285.56,70.617 +794750,287.34,71.599 +794751,289.04,72.585 +794752,290.66,73.571 +794753,284.29,70.556 +794754,286.04,71.565 +794755,287.71,72.576 +794756,289.29,73.587 +794757,283.03,70.497 +794758,284.74,71.531 +794759,286.37,72.566 +794760,287.93,73.602 +794761,281.76,70.438 +794762,283.44,71.497 +794763,285.03,72.557 +794764,286.56,73.616 +794765,280.5,70.381 +794766,282.14,71.463 +794767,283.7,72.547 +794768,285.18,73.63 +794769,279.24,70.324 +794770,280.84,71.43 +794771,282.36,72.537 +794772,283.81,73.642 +794773,277.98,70.268 +794774,279.54,71.397 +794775,281.02,72.527 +794776,282.44,73.654 +794777,276.72,70.213 +794778,278.24,71.365 +794779,279.69,72.516 +794780,281.06,73.665 +794781,275.46,70.159 +794782,276.94,71.332 +794783,278.35,72.505 +794784,279.69,73.675 +794785,274.21,70.106 +794786,275.65,71.3 +794787,277.01,72.494 +794788,278.31,73.684 +794789,272.95,70.054 +794790,274.35,71.269 +794791,275.67,72.482 +794792,276.93,73.692 +794793,271.7,70.003 +794794,273.05,71.237 +794795,274.33,72.47 +794796,275.55,73.699 +794797,270.45,69.953 +794798,271.75,71.206 +794799,272.99,72.458 +794800,274.17,73.705 +794801,269.19,69.904 +794802,270.46,71.176 +794803,271.66,72.445 +794804,272.79,73.71 +794805,267.94,69.856 +794806,269.16,71.145 +794807,270.32,72.432 +794808,271.41,73.713 +794809,266.69,69.809 +794810,267.87,71.115 +794811,268.98,72.419 +794812,270.03,73.716 +794813,265.44,69.763 +794814,266.57,71.086 +794815,267.64,72.405 +794816,268.64,73.718 +794817,264.2,69.718 +794818,265.28,71.057 +794819,266.29,72.391 +794820,267.26,73.719 +794821,262.95,69.674 +794822,263.98,71.028 +794823,264.95,72.377 +794824,265.87,73.719 +794825,261.7,69.632 +794826,262.69,70.999 +794827,263.61,72.362 +794828,264.49,73.718 +794829,260.46,69.59 +794830,261.39,70.971 +794831,262.27,72.347 +794832,263.1,73.715 +794833,259.21,69.55 +794834,260.1,70.943 +794835,260.93,72.331 +794836,261.71,73.712 +794837,257.97,69.51 +794838,258.8,70.916 +794839,259.59,72.315 +794840,260.32,73.707 +794841,256.72,69.472 +794842,257.51,70.889 +794843,258.25,72.299 +794844,258.94,73.702 +794845,255.48,69.435 +794846,256.22,70.862 +794847,256.9,72.283 +794848,257.55,73.695 +794849,254.24,69.399 +794850,254.92,70.836 +794851,255.56,72.266 +794852,256.16,73.687 +794853,252.99,69.365 +794854,253.63,70.81 +794855,254.22,72.248 +794856,254.77,73.678 +794857,251.75,69.331 +794858,252.34,70.784 +794859,252.88,72.23 +794860,253.37,73.668 +794861,250.51,69.299 +794862,251.04,70.759 +794863,251.53,72.212 +794864,251.98,73.656 +794865,249.27,69.268 +794866,249.75,70.735 +794867,250.19,72.194 +794868,250.59,73.644 +794869,248.03,69.238 +794870,248.46,70.71 +794871,248.85,72.175 +794872,249.2,73.63 +794873,246.79,69.21 +794874,247.17,70.686 +794875,247.51,72.155 +794876,247.81,73.615 +794877,245.55,69.182 +794878,245.87,70.663 +794879,246.16,72.136 +794880,246.41,73.599 +794881,244.31,69.156 +794882,244.58,70.64 +794883,244.82,72.116 +794884,245.02,73.582 +794885,243.07,69.131 +794886,243.29,70.617 +794887,243.48,72.095 +794888,243.63,73.564 +794889,241.83,69.107 +794890,242,70.595 +794891,242.13,72.074 +794892,242.23,73.544 +794893,240.59,69.085 +794894,240.71,70.573 +794895,240.79,72.053 +794896,240.84,73.523 +794897,239.35,69.063 +794898,239.41,70.551 +794899,239.45,72.031 +794900,239.44,73.501 +794901,238.11,69.043 +794902,238.12,70.53 +794903,238.1,72.009 +794904,238.05,73.478 +794905,236.87,69.024 +794906,236.83,70.509 +794907,236.76,71.986 +794908,236.65,73.454 +794909,235.63,69.007 +794910,235.54,70.489 +794911,235.42,71.963 +794912,235.26,73.429 +794913,234.39,68.99 +794914,234.25,70.469 +794915,234.07,71.94 +794916,233.87,73.402 +794917,233.15,68.975 +794918,232.95,70.45 +794919,232.73,71.916 +794920,232.47,73.374 +794921,231.91,68.961 +794922,231.66,70.43 +794923,231.39,71.892 +794924,231.08,73.345 +794925,230.67,68.948 +794926,230.37,70.412 +794927,230.04,71.868 +794928,229.68,73.315 +794929,229.43,68.936 +794930,229.08,70.393 +794931,228.7,71.843 +794932,228.29,73.284 +794933,228.19,68.926 +794934,227.79,70.375 +794935,227.36,71.818 +794936,226.89,73.252 +794937,226.95,68.917 +794938,226.49,70.358 +794939,226.01,71.792 +794940,225.5,73.218 +794941,225.7,68.908 +794942,225.2,70.341 +794943,224.67,71.766 +794944,224.11,73.183 +794945,224.46,68.901 +794946,223.91,70.324 +794947,223.33,71.74 +794948,222.71,73.147 +794949,223.22,68.896 +794950,222.62,70.307 +794951,221.98,71.713 +794952,221.32,73.11 +794953,221.98,68.891 +794954,221.32,70.291 +794955,220.64,71.685 +794956,219.93,73.072 +794957,220.73,68.888 +794958,220.03,70.276 +794959,219.3,71.658 +794960,218.54,73.033 +794961,219.49,68.885 +794962,218.74,70.26 +794963,217.96,71.63 +794964,217.15,72.993 +794965,218.24,68.884 +794966,217.45,70.245 +794967,216.62,71.602 +794968,215.75,72.951 +794969,217,68.884 +794970,216.15,70.231 +794971,215.27,71.573 +794972,214.36,72.909 +794973,215.75,68.885 +794974,214.86,70.217 +794975,213.93,71.544 +794976,212.97,72.865 +794977,214.5,68.887 +794978,213.56,70.203 +794979,212.59,71.514 +794980,211.58,72.82 +794981,213.26,68.89 +794982,212.27,70.189 +794983,211.25,71.485 +794984,210.2,72.775 +794985,212.01,68.894 +794986,210.98,70.176 +794987,209.91,71.454 +794988,208.81,72.728 +794989,210.76,68.9 +794990,209.68,70.163 +794991,208.57,71.424 +794992,207.42,72.68 +794993,209.51,68.906 +794994,208.39,70.151 +794995,207.23,71.393 +794996,206.03,72.631 +794997,208.26,68.913 +794998,207.09,70.139 +794999,205.89,71.362 +795000,204.65,72.581 +795001,207.01,68.921 +795002,205.8,70.127 +795003,204.55,71.33 +795004,203.26,72.53 +795005,205.75,68.931 +795006,204.5,70.116 +795007,203.21,71.299 +795008,201.88,72.479 +795009,204.5,68.941 +795010,203.2,70.104 +795011,201.87,71.267 +795012,200.5,72.426 +795013,203.24,68.952 +795014,201.91,70.094 +795015,200.53,71.234 +795016,199.11,72.372 +795017,201.99,68.964 +795018,200.61,70.083 +795019,199.2,71.201 +795020,197.73,72.318 +795021,200.73,68.977 +795022,199.31,70.073 +795023,197.86,71.168 +795024,196.35,72.262 +795025,199.47,68.991 +795026,198.02,70.063 +795027,196.52,71.135 +795028,194.97,72.206 +795029,198.21,69.006 +795030,196.72,70.053 +795031,195.18,71.101 +795032,193.6,72.148 +795033,196.95,69.021 +795034,195.42,70.044 +795035,193.85,71.067 +795036,192.22,72.09 +795037,195.69,69.038 +795038,194.12,70.035 +795039,192.51,71.033 +795040,190.84,72.031 +795041,194.43,69.055 +795042,192.82,70.026 +795043,191.17,70.998 +795044,189.47,71.971 +795045,193.16,69.073 +795046,191.53,70.017 +795047,189.84,70.964 +795048,188.09,71.911 +795049,191.9,69.092 +795050,190.23,70.009 +795051,188.5,70.929 +795052,186.72,71.849 +795053,190.63,69.111 +795054,188.93,70.001 +795055,187.17,70.893 +795056,185.35,71.787 +795057,189.36,69.132 +795058,187.62,69.993 +795059,185.83,70.858 +795060,183.98,71.724 +795061,188.09,69.153 +795062,186.32,69.986 +795063,184.5,70.822 +795064,182.61,71.661 +795065,186.82,69.174 +795066,185.02,69.978 +795067,183.17,70.786 +795068,181.25,71.596 +795069,185.55,69.196 +795070,183.72,69.971 +795071,181.83,70.75 +795072,179.88,71.531 +795073,184.27,69.219 +795074,182.42,69.964 +795075,180.5,70.713 +795076,178.52,71.466 +795077,183,69.243 +795078,181.12,69.957 +795079,179.17,70.676 +795080,177.15,71.399 +795081,181.72,69.267 +795082,179.81,69.951 +795083,177.84,70.64 +795084,175.79,71.332 +795085,180.44,69.291 +795086,178.51,69.944 +795087,176.51,70.602 +795088,174.43,71.265 +795089,179.16,69.316 +795090,177.2,69.938 +795091,175.18,70.565 +795092,173.07,71.197 +795093,177.88,69.342 +795094,175.9,69.932 +795095,173.85,70.528 +795096,171.72,71.128 +795097,176.6,69.368 +795098,174.59,69.926 +795099,172.52,70.49 +795100,170.36,71.059 +795101,175.32,69.395 +795102,173.29,69.921 +795103,171.19,70.452 +795104,169.01,70.99 +795105,174.03,69.422 +795106,171.98,69.915 +795107,169.86,70.414 +795108,167.66,70.92 +795109,172.74,69.449 +795110,170.68,69.909 +795111,168.53,70.376 +795112,166.31,70.849 +795113,171.45,69.477 +795114,169.37,69.904 +795115,167.21,70.338 +795116,164.96,70.778 +795117,170.16,69.505 +795118,168.06,69.899 +795119,165.88,70.3 +795120,163.61,70.707 +795121,168.87,69.533 +795122,166.75,69.894 +795123,164.56,70.261 +795124,162.26,70.636 +795125,167.58,69.562 +795126,165.44,69.889 +795127,163.23,70.223 +795128,160.92,70.564 +795129,166.28,69.591 +795130,164.14,69.884 +795131,161.91,70.184 +795132,159.58,70.491 +795133,164.98,69.62 +795134,162.83,69.879 +795135,160.58,70.145 +795136,158.24,70.419 +795137,163.69,69.649 +795138,161.51,69.874 +795139,159.26,70.107 +795140,156.9,70.346 +795141,162.39,69.678 +795142,160.2,69.869 +795143,157.93,70.068 +795144,155.56,70.273 +795145,161.08,69.708 +795146,158.89,69.865 +795147,156.61,70.029 +795148,154.23,70.2 +795149,159.78,69.738 +795150,157.58,69.86 +795151,155.29,69.99 +795152,152.9,70.127 +795153,158.47,69.768 +795154,156.27,69.856 +795155,153.97,69.951 +795156,151.56,70.053 +795157,157.17,69.797 +795158,154.95,69.851 +795159,152.65,69.911 +795160,150.24,69.98 +795161,155.86,69.827 +795162,153.64,69.846 +795163,151.33,69.872 +795164,148.91,69.906 +795165,154.55,69.857 +795166,152.33,69.842 +795167,150.01,69.833 +795168,147.58,69.832 +795169,153.24,69.887 +795170,151.01,69.837 +795171,148.69,69.794 +795172,146.26,69.759 +795173,151.92,69.917 +795174,149.7,69.833 +795175,147.37,69.755 +795176,144.94,69.685 +795177,150.61,69.947 +795178,148.38,69.828 +795179,146.05,69.716 +795180,143.62,69.611 +795181,149.29,69.977 +795182,147.06,69.823 +795183,144.74,69.677 +795184,142.3,69.537 +795185,147.97,70.006 +795186,145.75,69.819 +795187,143.42,69.638 +795188,140.98,69.464 +795189,146.65,70.035 +795190,144.43,69.814 +795191,142.11,69.598 +795192,139.67,69.39 +795193,145.33,70.065 +795194,143.11,69.809 +795195,140.79,69.559 +795196,138.36,69.317 +795197,144,70.094 +795198,141.79,69.804 +795199,139.48,69.521 +795200,137.04,69.244 +795201,142.68,70.122 +795202,140.47,69.799 +795203,138.16,69.482 +795204,135.74,69.171 +795205,141.35,70.151 +795206,139.15,69.794 +795207,136.85,69.443 +795208,134.43,69.098 +795209,140.02,70.179 +795210,137.83,69.789 +795211,135.54,69.404 +795212,133.12,69.025 +795213,138.69,70.207 +795214,136.51,69.784 +795215,134.23,69.365 +795216,131.82,68.953 +795217,137.36,70.234 +795218,135.19,69.778 +795219,132.91,69.327 +795220,130.52,68.881 +795221,136.02,70.261 +795222,133.87,69.773 +795223,131.6,69.288 +795224,129.22,68.81 +795225,134.69,70.288 +795226,132.54,69.767 +795227,130.29,69.25 +795228,127.92,68.738 +795229,133.35,70.314 +795230,131.22,69.761 +795231,128.98,69.212 +795232,126.63,68.667 +795233,132.01,70.34 +795234,129.9,69.756 +795235,127.67,69.174 +795236,125.33,68.597 +795237,130.67,70.366 +795238,128.57,69.749 +795239,126.37,69.136 +795240,124.04,68.527 +795241,129.33,70.39 +795242,127.25,69.743 +795243,125.06,69.098 +795244,122.75,68.457 +795245,127.99,70.415 +795246,125.92,69.737 +795247,123.75,69.061 +795248,121.46,68.388 +795249,126.64,70.439 +795250,124.6,69.73 +795251,122.44,69.023 +795252,120.17,68.32 +795253,125.3,70.462 +795254,123.27,69.723 +795255,121.14,68.986 +795256,118.89,68.252 +795257,123.95,70.484 +795258,121.94,69.716 +795259,119.83,68.949 +795260,117.61,68.184 +795261,122.6,70.506 +795262,120.61,69.709 +795263,118.53,68.912 +795264,116.32,68.117 +795265,121.25,70.528 +795266,119.29,69.702 +795267,117.22,68.876 +795268,115.04,68.051 +795269,119.89,70.548 +795270,117.96,69.694 +795271,115.92,68.839 +795272,113.77,67.986 +795273,118.54,70.568 +795274,116.63,69.686 +795275,114.62,68.803 +795276,112.49,67.921 +795277,117.18,70.587 +795278,115.3,69.678 +795279,113.31,68.767 +795280,111.22,67.857 +795281,115.83,70.606 +795282,113.97,69.669 +795283,112.01,68.731 +795284,109.94,67.793 +795285,114.47,70.624 +795286,112.64,69.661 +795287,110.71,68.696 +795288,108.67,67.73 +795289,113.11,70.641 +795290,111.31,69.652 +795291,109.41,68.66 +795292,107.4,67.668 +795293,111.75,70.657 +795294,109.98,69.643 +795295,108.11,68.625 +795296,106.13,67.607 +795297,110.38,70.672 +795298,108.64,69.633 +795299,106.81,68.591 +795300,104.87,67.547 +795301,109.02,70.687 +795302,107.31,69.623 +795303,105.51,68.556 +795304,103.6,67.487 +795305,107.65,70.7 +795306,105.98,69.613 +795307,104.21,68.522 +795308,102.34,67.428 +795309,106.29,70.713 +795310,104.65,69.603 +795311,102.91,68.488 +795312,101.07,67.37 +795313,104.92,70.725 +795314,103.31,69.592 +795315,101.61,68.455 +795316,99.813,67.313 +795317,103.55,70.736 +795318,101.98,69.581 +795319,100.31,68.421 +795320,98.553,67.257 +795321,102.18,70.746 +795322,100.64,69.57 +795323,99.018,68.388 +795324,97.295,67.202 +795325,100.81,70.755 +795326,99.308,69.558 +795327,97.721,68.356 +795328,96.038,67.148 +795329,99.436,70.763 +795330,97.973,69.547 +795331,96.425,68.323 +795332,94.782,67.095 +795333,98.062,70.77 +795334,96.637,69.534 +795335,95.129,68.291 +795336,93.528,67.042 +795337,96.687,70.776 +795338,95.301,69.522 +795339,93.833,68.259 +795340,92.275,66.991 +795341,95.311,70.781 +795342,93.964,69.509 +795343,92.538,68.228 +795344,91.023,66.941 +795345,93.934,70.785 +795346,92.628,69.495 +795347,91.243,68.197 +795348,89.772,66.892 +795349,92.555,70.788 +795350,91.291,69.482 +795351,89.949,68.166 +795352,88.523,66.844 +795353,91.176,70.79 +795354,89.953,69.468 +795355,88.655,68.136 +795356,87.274,66.797 +795357,89.796,70.791 +795358,88.615,69.453 +795359,87.361,68.106 +795360,86.027,66.751 +795361,88.415,70.791 +795362,87.277,69.439 +795363,86.068,68.076 +795364,84.78,66.706 +795365,87.033,70.79 +795366,85.939,69.424 +795367,84.775,68.047 +795368,83.535,66.662 +795369,85.65,70.787 +795370,84.6,69.408 +795371,83.483,68.018 +795372,82.29,66.619 +795373,84.266,70.784 +795374,83.261,69.392 +795375,82.19,67.99 +795376,81.047,66.578 +795377,82.881,70.779 +795378,81.922,69.376 +795379,80.898,67.961 +795380,79.804,66.537 +795381,81.496,70.774 +795382,80.583,69.359 +795383,79.607,67.933 +795384,78.562,66.498 +795385,80.11,70.767 +795386,79.243,69.342 +795387,78.315,67.906 +795388,77.321,66.46 +795389,78.723,70.759 +795390,77.903,69.325 +795391,77.024,67.879 +795392,76.081,66.423 +795393,77.335,70.75 +795394,76.563,69.307 +795395,75.733,67.852 +795396,74.841,66.387 +795397,75.947,70.739 +795398,75.222,69.289 +795399,74.442,67.826 +795400,73.602,66.352 +795401,74.558,70.728 +795402,73.882,69.27 +795403,73.152,67.8 +795404,72.363,66.319 +795405,73.168,70.715 +795406,72.541,69.251 +795407,71.862,67.775 +795408,71.126,66.287 +795409,71.778,70.701 +795410,71.2,69.232 +795411,70.571,67.749 +795412,69.888,66.256 +795413,70.388,70.686 +795414,69.859,69.212 +795415,69.282,67.725 +795416,68.651,66.226 +795417,68.996,70.67 +795418,68.518,69.192 +795419,67.992,67.7 +795420,67.415,66.197 +795421,67.605,70.652 +795422,67.177,69.171 +795423,66.702,67.677 +795424,66.179,66.17 +795425,66.213,70.634 +795426,65.835,69.15 +795427,65.413,67.653 +795428,64.943,66.144 +795429,64.82,70.614 +795430,64.493,69.129 +795431,64.124,67.63 +795432,63.708,66.119 +795433,63.428,70.593 +795434,63.152,69.107 +795435,62.834,67.607 +795436,62.473,66.095 +795437,62.035,70.571 +795438,61.81,69.084 +795439,61.545,67.585 +795440,61.238,66.073 +795441,60.641,70.547 +795442,60.468,69.062 +795443,60.256,67.563 +795444,60.004,66.052 +795445,59.247,70.523 +795446,59.126,69.039 +795447,58.968,67.541 +795448,58.769,66.032 +795449,57.854,70.497 +795450,57.784,69.015 +795451,57.679,67.52 +795452,57.535,66.013 +795453,56.46,70.47 +795454,56.442,68.991 +795455,56.39,67.499 +795456,56.3,65.995 +795457,55.066,70.441 +795458,55.1,68.967 +795459,55.101,67.479 +795460,55.066,65.979 +795461,53.671,70.412 +795462,53.758,68.942 +795463,53.812,67.459 +795464,53.832,65.964 +795465,52.277,70.381 +795466,52.416,68.917 +795467,52.524,67.44 +795468,52.597,65.95 +795469,50.883,70.35 +795470,51.075,68.891 +795471,51.235,67.42 +795472,51.363,65.938 +795473,49.488,70.317 +795474,49.733,68.866 +795475,49.946,67.402 +795476,50.128,65.926 +795477,48.094,70.282 +795478,48.391,68.839 +795479,48.657,67.383 +795480,48.893,65.916 +795481,46.7,70.247 +795482,47.049,68.812 +795483,47.369,67.365 +795484,47.658,65.907 +795485,45.306,70.21 +795486,45.707,68.785 +795487,46.08,67.348 +795488,46.423,65.899 +795489,43.912,70.173 +795490,44.366,68.758 +795491,44.791,67.33 +795492,45.187,65.892 +795493,42.518,70.134 +795494,43.024,68.73 +795495,43.502,67.314 +795496,43.951,65.887 +795497,41.125,70.094 +795498,41.683,68.701 +795499,42.212,67.297 +795500,42.714,65.882 +795501,39.732,70.053 +795502,40.341,68.673 +795503,40.923,67.281 +795504,41.477,65.879 +795505,38.339,70.01 +795506,39,68.644 +795507,39.634,67.265 +795508,40.24,65.877 +795509,36.947,69.967 +795510,37.659,68.614 +795511,38.344,67.25 +795512,39.002,65.876 +795513,35.554,69.923 +795514,36.318,68.584 +795515,37.054,67.235 +795516,37.763,65.876 +795517,34.163,69.877 +795518,34.978,68.554 +795519,35.764,67.22 +795520,36.524,65.878 +795521,32.772,69.83 +795522,33.637,68.523 +795523,34.474,67.206 +795524,35.284,65.88 +795525,31.381,69.783 +795526,32.297,68.492 +795527,33.184,67.192 +795528,34.044,65.883 +795529,29.991,69.734 +795530,30.957,68.461 +795531,31.894,67.179 +795532,32.803,65.888 +795533,28.602,69.684 +795534,29.617,68.429 +795535,30.603,67.165 +795536,31.561,65.893 +795537,27.213,69.633 +795538,28.278,68.397 +795539,29.312,67.152 +795540,30.318,65.9 +795541,25.825,69.581 +795542,26.938,68.365 +795543,28.021,67.14 +795544,29.074,65.908 +795545,24.437,69.528 +795546,25.599,68.332 +795547,26.729,67.128 +795548,27.83,65.916 +795549,23.05,69.474 +795550,24.261,68.299 +795551,25.438,67.116 +795552,26.584,65.926 +795553,21.664,69.419 +795554,22.922,68.266 +795555,24.146,67.104 +795556,25.338,65.936 +795557,20.279,69.363 +795558,21.584,68.232 +795559,22.853,67.093 +795560,24.091,65.948 +795561,18.895,69.307 +795562,20.246,68.198 +795563,21.561,67.082 +795564,22.842,65.96 +795565,17.512,69.249 +795566,18.909,68.163 +795567,20.268,67.071 +795568,21.593,65.974 +795569,16.129,69.19 +795570,17.572,68.129 +795571,18.975,67.061 +795572,20.342,65.988 +795573,14.748,69.131 +795574,16.235,68.094 +795575,17.681,67.051 +795576,19.091,66.003 +795577,13.367,69.07 +795578,14.898,68.058 +795579,16.387,67.041 +795580,17.838,66.019 +795581,11.988,69.009 +795582,13.562,68.023 +795583,15.093,67.031 +795584,16.584,66.036 +795585,10.609,68.947 +795586,12.227,67.987 +795587,13.798,67.022 +795588,15.329,66.053 +795589,9.232,68.884 +795590,10.891,67.951 +795591,12.503,67.013 +795592,14.073,66.072 +795593,7.8559,68.821 +795594,9.5565,67.914 +795595,11.208,67.004 +795596,12.815,66.091 +795597,6.4809,68.756 +795598,8.222,67.878 +795599,9.9118,66.995 +795600,11.557,66.111 +795601,5.1071,68.691 +795602,6.888,67.841 +795603,8.6156,66.987 +795604,10.296,66.131 +795605,3.7346,68.625 +795606,5.5545,67.804 +795607,7.3189,66.979 +795608,9.035,66.152 +795609,2.3634,68.558 +795610,4.2213,67.766 +795611,6.0218,66.971 +795612,7.7722,66.174 +795613,0.99344,68.491 +795614,2.8887,67.729 +795615,4.7243,66.963 +795616,6.508,66.197 +795617,359.62,68.423 +795618,1.5565,67.691 +795619,3.4263,66.956 +795620,5.2424,66.22 +795621,358.26,68.355 +795622,0.22479,67.653 +795623,2.1279,66.949 +795624,3.9753,66.244 +795625,356.89,68.285 +795626,358.89,67.614 +795627,0.82902,66.941 +795628,2.7069,66.268 +795629,355.53,68.216 +795630,357.56,67.576 +795631,359.53,66.935 +795632,1.4369,66.293 +795633,354.16,68.145 +795634,356.23,67.537 +795635,358.23,66.928 +795636,0.16544,66.318 +795637,352.8,68.074 +795638,354.9,67.498 +795639,356.93,66.921 +795640,358.89,66.344 +795641,351.44,68.003 +795642,353.57,67.459 +795643,355.63,66.915 +795644,357.62,66.371 +795645,350.08,67.931 +795646,352.25,67.42 +795647,354.33,66.908 +795648,356.34,66.397 +795649,348.73,67.859 +795650,350.92,67.381 +795651,353.03,66.902 +795652,355.06,66.425 +795653,347.37,67.786 +795654,349.59,67.341 +795655,351.72,66.896 +795656,353.79,66.452 +795657,346.02,67.713 +795658,348.26,67.301 +795659,350.42,66.89 +795660,352.5,66.48 +795661,344.67,67.639 +795662,346.94,67.262 +795663,349.12,66.884 +795664,351.22,66.508 +795665,343.32,67.565 +795666,345.61,67.222 +795667,347.81,66.879 +795668,349.94,66.537 +795669,341.97,67.491 +795670,344.28,67.182 +795671,346.51,66.873 +795672,348.65,66.566 +795673,340.62,67.417 +795674,342.96,67.142 +795675,345.2,66.867 +795676,347.37,66.595 +795677,339.28,67.342 +795678,341.64,67.101 +795679,343.9,66.862 +795680,346.08,66.624 +795681,337.93,67.267 +795682,340.31,67.061 +795683,342.59,66.857 +795684,344.79,66.654 +795685,336.59,67.191 +795686,338.99,67.021 +795687,341.29,66.851 +795688,343.49,66.683 +795689,335.25,67.116 +795690,337.67,66.98 +795691,339.98,66.846 +795692,342.2,66.713 +795693,333.91,67.04 +795694,336.35,66.94 +795695,338.67,66.84 +795696,340.9,66.743 +795697,332.58,66.964 +795698,335.02,66.899 +795699,337.36,66.835 +795700,339.61,66.773 +795701,331.24,66.889 +795702,333.7,66.859 +795703,336.05,66.83 +795704,338.31,66.803 +795705,329.91,66.813 +795706,332.38,66.818 +795707,334.74,66.825 +795708,337.01,66.833 +795709,328.58,66.737 +795710,331.06,66.777 +795711,333.43,66.819 +795712,335.7,66.863 +795713,327.25,66.66 +795714,329.75,66.737 +795715,332.12,66.814 +795716,334.4,66.892 +795717,325.92,66.584 +795718,328.43,66.696 +795719,330.81,66.809 +795720,333.09,66.922 +795721,324.6,66.508 +795722,327.11,66.655 +795723,329.5,66.803 +795724,331.79,66.952 +795725,323.28,66.433 +795726,325.79,66.615 +795727,328.19,66.798 +795728,330.48,66.982 +795729,321.95,66.357 +795730,324.48,66.574 +795731,326.88,66.792 +795732,329.16,67.011 +795733,320.64,66.281 +795734,323.16,66.534 +795735,325.56,66.787 +795736,327.85,67.04 +795737,319.32,66.205 +795738,321.85,66.493 +795739,324.25,66.781 +795740,326.54,67.07 +795741,318,66.13 +795742,320.53,66.453 +795743,322.93,66.776 +795744,325.22,67.098 +795745,316.69,66.055 +795746,319.22,66.412 +795747,321.62,66.77 +795748,323.9,67.127 +795749,315.38,65.98 +795750,317.91,66.372 +795751,320.3,66.764 +795752,322.58,67.155 +795753,314.07,65.905 +795754,316.59,66.332 +795755,318.99,66.758 +795756,321.26,67.183 +795757,312.76,65.831 +795758,315.28,66.292 +795759,317.67,66.752 +795760,319.94,67.211 +795761,311.46,65.757 +795762,313.97,66.252 +795763,316.35,66.746 +795764,318.61,67.238 +795765,310.15,65.683 +795766,312.66,66.212 +795767,315.03,66.739 +795768,317.29,67.265 +795769,308.85,65.61 +795770,311.35,66.172 +795771,313.71,66.733 +795772,315.96,67.291 +795773,307.55,65.537 +795774,310.04,66.132 +795775,312.39,66.726 +795776,314.63,67.317 +795777,306.25,65.464 +795778,308.73,66.093 +795779,311.07,66.719 +795780,313.3,67.343 +795781,304.96,65.392 +795782,307.43,66.053 +795783,309.75,66.712 +795784,311.96,67.368 +795785,303.66,65.321 +795786,306.12,66.014 +795787,308.43,66.705 +795788,310.63,67.392 +795789,302.37,65.249 +795790,304.81,65.975 +795791,307.11,66.697 +795792,309.29,67.416 +795793,301.08,65.179 +795794,303.51,65.936 +795795,305.79,66.69 +795796,307.95,67.439 +795797,299.79,65.109 +795798,302.2,65.897 +795799,304.47,66.682 +795800,306.61,67.462 +795801,298.51,65.04 +795802,300.9,65.859 +795803,303.14,66.674 +795804,305.27,67.484 +795805,297.22,64.971 +795806,299.59,65.821 +795807,301.82,66.666 +795808,303.93,67.505 +795809,295.94,64.903 +795810,298.29,65.783 +795811,300.5,66.657 +795812,302.58,67.526 +795813,294.66,64.835 +795814,296.98,65.745 +795815,299.17,66.649 +795816,301.24,67.546 +795817,293.38,64.769 +795818,295.68,65.707 +795819,297.85,66.64 +795820,299.89,67.565 +795821,292.1,64.703 +795822,294.38,65.67 +795823,296.52,66.63 +795824,298.54,67.584 +795825,290.83,64.637 +795826,293.08,65.632 +795827,295.19,66.621 +795828,297.19,67.601 +795829,289.55,64.573 +795830,291.78,65.595 +795831,293.87,66.611 +795832,295.84,67.618 +795833,288.28,64.509 +795834,290.48,65.559 +795835,292.54,66.601 +795836,294.48,67.635 +795837,287.01,64.446 +795838,289.18,65.522 +795839,291.21,66.591 +795840,293.13,67.65 +795841,285.74,64.384 +795842,287.88,65.486 +795843,289.88,66.58 +795844,291.77,67.664 +795845,284.48,64.323 +795846,286.58,65.45 +795847,288.55,66.569 +795848,290.41,67.678 +795849,283.21,64.262 +795850,285.28,65.415 +795851,287.23,66.558 +795852,289.05,67.691 +795853,281.95,64.203 +795854,283.99,65.379 +795855,285.9,66.546 +795856,287.69,67.702 +795857,280.69,64.144 +795858,282.69,65.344 +795859,284.57,66.534 +795860,286.33,67.713 +795861,279.43,64.087 +795862,281.39,65.31 +795863,283.23,66.522 +795864,284.96,67.723 +795865,278.17,64.03 +795866,280.1,65.275 +795867,281.9,66.51 +795868,283.6,67.732 +795869,276.91,63.974 +795870,278.8,65.241 +795871,280.57,66.497 +795872,282.23,67.74 +795873,275.65,63.92 +795874,277.51,65.207 +795875,279.24,66.484 +795876,280.87,67.747 +795877,274.4,63.866 +795878,276.21,65.174 +795879,277.91,66.47 +795880,279.5,67.753 +795881,273.15,63.813 +795882,274.92,65.141 +795883,276.57,66.456 +795884,278.13,67.758 +795885,271.89,63.762 +795886,273.63,65.108 +795887,275.24,66.442 +795888,276.76,67.761 +795889,270.64,63.711 +795890,272.33,65.076 +795891,273.91,66.427 +795892,275.38,67.764 +795893,269.4,63.662 +795894,271.04,65.044 +795895,272.57,66.412 +795896,274.01,67.766 +795897,268.15,63.613 +795898,269.75,65.012 +795899,271.24,66.397 +795900,272.63,67.766 +795901,266.9,63.566 +795902,268.46,64.981 +795903,269.9,66.381 +795904,271.26,67.766 +795905,265.66,63.52 +795906,267.16,64.95 +795907,268.57,66.365 +795908,269.88,67.764 +795909,264.41,63.475 +795910,265.87,64.919 +795911,267.23,66.348 +795912,268.5,67.761 +795913,263.17,63.431 +795914,264.58,64.889 +795915,265.9,66.331 +795916,267.13,67.757 +795917,261.93,63.388 +795918,263.29,64.859 +795919,264.56,66.314 +795920,265.75,67.752 +795921,260.69,63.347 +795922,262,64.829 +795923,263.23,66.296 +795924,264.36,67.746 +795925,259.45,63.307 +795926,260.71,64.8 +795927,261.89,66.278 +795928,262.98,67.739 +795929,258.21,63.267 +795930,259.42,64.772 +795931,260.55,66.259 +795932,261.6,67.73 +795933,256.97,63.23 +795934,258.14,64.743 +795935,259.21,66.24 +795936,260.22,67.72 +795937,255.73,63.193 +795938,256.85,64.715 +795939,257.88,66.221 +795940,258.83,67.709 +795941,254.5,63.157 +795942,255.56,64.688 +795943,256.54,66.201 +795944,257.45,67.697 +795945,253.26,63.123 +795946,254.27,64.661 +795947,255.2,66.181 +795948,256.06,67.684 +795949,252.03,63.09 +795950,252.98,64.634 +795951,253.86,66.16 +795952,254.67,67.669 +795953,250.79,63.058 +795954,251.7,64.607 +795955,252.52,66.139 +795956,253.29,67.653 +795957,249.56,63.028 +795958,250.41,64.581 +795959,251.19,66.118 +795960,251.9,67.636 +795961,248.33,62.998 +795962,249.12,64.556 +795963,249.85,66.096 +795964,250.51,67.618 +795965,247.1,62.97 +795966,247.84,64.531 +795967,248.51,66.074 +795968,249.12,67.598 +795969,245.87,62.944 +795970,246.55,64.506 +795971,247.17,66.051 +795972,247.73,67.577 +795973,244.63,62.918 +795974,245.26,64.482 +795975,245.83,66.028 +795976,246.34,67.555 +795977,243.4,62.894 +795978,243.98,64.458 +795979,244.49,66.004 +795980,244.95,67.532 +795981,242.17,62.871 +795982,242.69,64.434 +795983,243.15,65.98 +795984,243.56,67.507 +795985,240.94,62.849 +795986,241.4,64.411 +795987,241.81,65.956 +795988,242.17,67.482 +795989,239.71,62.828 +795990,240.12,64.388 +795991,240.47,65.931 +795992,240.78,67.455 +795993,238.49,62.809 +795994,238.83,64.366 +795995,239.13,65.905 +795996,239.39,67.426 +795997,237.26,62.791 +795998,237.55,64.344 +795999,237.79,65.88 +796000,237.99,67.397 +796001,236.03,62.774 +796002,236.26,64.322 +796003,236.45,65.853 +796004,236.6,67.366 +796005,234.8,62.759 +796006,234.98,64.301 +796007,235.11,65.827 +796008,235.21,67.334 +796009,233.57,62.745 +796010,233.69,64.281 +796011,233.77,65.8 +796012,233.81,67.301 +796013,232.34,62.732 +796014,232.41,64.26 +796015,232.43,65.772 +796016,232.42,67.266 +796017,231.11,62.72 +796018,231.12,64.24 +796019,231.09,65.744 +796020,231.03,67.231 +796021,229.88,62.709 +796022,229.84,64.221 +796023,229.75,65.716 +796024,229.63,67.194 +796025,228.66,62.7 +796026,228.55,64.202 +796027,228.41,65.687 +796028,228.24,67.156 +796029,227.43,62.692 +796030,227.26,64.183 +796031,227.07,65.658 +796032,226.85,67.116 +796033,226.2,62.685 +796034,225.98,64.165 +796035,225.73,65.629 +796036,225.45,67.076 +796037,224.97,62.679 +796038,224.69,64.147 +796039,224.39,65.599 +796040,224.06,67.034 +796041,223.74,62.675 +796042,223.41,64.129 +796043,223.05,65.568 +796044,222.67,66.991 +796045,222.51,62.672 +796046,222.12,64.112 +796047,221.71,65.538 +796048,221.27,66.947 +796049,221.28,62.669 +796050,220.84,64.095 +796051,220.37,65.506 +796052,219.88,66.902 +796053,220.05,62.668 +796054,219.55,64.079 +796055,219.03,65.475 +796056,218.49,66.855 +796057,218.82,62.669 +796058,218.27,64.063 +796059,217.69,65.443 +796060,217.09,66.808 +796061,217.58,62.67 +796062,216.98,64.047 +796063,216.35,65.41 +796064,215.7,66.759 +796065,216.35,62.672 +796066,215.69,64.032 +796067,215.01,65.378 +796068,214.31,66.709 +796069,215.12,62.676 +796070,214.41,64.017 +796071,213.68,65.345 +796072,212.92,66.658 +796073,213.88,62.68 +796074,213.12,64.002 +796075,212.34,65.311 +796076,211.53,66.606 +796077,212.65,62.686 +796078,211.84,63.988 +796079,211,65.277 +796080,210.14,66.553 +796081,211.42,62.693 +796082,210.55,63.974 +796083,209.66,65.243 +796084,208.75,66.499 +796085,210.18,62.7 +796086,209.26,63.96 +796087,208.32,65.208 +796088,207.36,66.443 +796089,208.94,62.709 +796090,207.97,63.947 +796091,206.98,65.173 +796092,205.97,66.387 +796093,207.71,62.719 +796094,206.69,63.934 +796095,205.65,65.138 +796096,204.58,66.33 +796097,206.47,62.73 +796098,205.4,63.921 +796099,204.31,65.102 +796100,203.19,66.271 +796101,205.23,62.741 +796102,204.11,63.909 +796103,202.97,65.066 +796104,201.8,66.212 +796105,203.99,62.754 +796106,202.82,63.897 +796107,201.63,65.03 +796108,200.42,66.152 +796109,202.75,62.768 +796110,201.54,63.885 +796111,200.3,64.993 +796112,199.03,66.091 +796113,201.51,62.782 +796114,200.25,63.874 +796115,198.96,64.956 +796116,197.65,66.028 +796117,200.26,62.797 +796118,198.96,63.863 +796119,197.63,64.919 +796120,196.26,65.965 +796121,199.02,62.814 +796122,197.67,63.852 +796123,196.29,64.882 +796124,194.88,65.901 +796125,197.77,62.831 +796126,196.38,63.841 +796127,194.95,64.844 +796128,193.5,65.836 +796129,196.53,62.849 +796130,195.09,63.831 +796131,193.62,64.805 +796132,192.12,65.771 +796133,195.28,62.867 +796134,193.8,63.821 +796135,192.29,64.767 +796136,190.74,65.704 +796137,194.03,62.887 +796138,192.51,63.811 +796139,190.95,64.728 +796140,189.36,65.637 +796141,192.78,62.907 +796142,191.22,63.801 +796143,189.62,64.689 +796144,187.98,65.568 +796145,191.53,62.928 +796146,189.93,63.792 +796147,188.28,64.65 +796148,186.6,65.499 +796149,190.28,62.95 +796150,188.63,63.783 +796151,186.95,64.61 +796152,185.22,65.43 +796153,189.02,62.972 +796154,187.34,63.774 +796155,185.62,64.57 +796156,183.85,65.359 +796157,187.77,62.995 +796158,186.05,63.765 +796159,184.29,64.53 +796160,182.48,65.288 +796161,186.51,63.018 +796162,184.76,63.757 +796163,182.95,64.49 +796164,181.1,65.216 +796165,185.25,63.042 +796166,183.46,63.749 +796167,181.62,64.45 +796168,179.73,65.144 +796169,183.99,63.067 +796170,182.17,63.74 +796171,180.29,64.409 +796172,178.36,65.07 +796173,182.73,63.092 +796174,180.87,63.733 +796175,178.96,64.368 +796176,176.99,64.997 +796177,181.47,63.118 +796178,179.58,63.725 +796179,177.63,64.327 +796180,175.63,64.922 +796181,180.21,63.145 +796182,178.28,63.717 +796183,176.3,64.285 +796184,174.26,64.848 +796185,178.94,63.171 +796186,176.99,63.71 +796187,174.98,64.244 +796188,172.9,64.772 +796189,177.67,63.198 +796190,175.69,63.702 +796191,173.65,64.202 +796192,171.53,64.696 +796193,176.41,63.226 +796194,174.39,63.695 +796195,172.32,64.16 +796196,170.17,64.62 +796197,175.14,63.254 +796198,173.1,63.688 +796199,170.99,64.118 +796200,168.81,64.543 +796201,173.86,63.282 +796202,171.8,63.681 +796203,169.67,64.076 +796204,167.46,64.466 +796205,172.59,63.311 +796206,170.5,63.674 +796207,168.34,64.034 +796208,166.1,64.388 +796209,171.32,63.34 +796210,169.2,63.667 +796211,167.01,63.991 +796212,164.74,64.31 +796213,170.04,63.369 +796214,167.9,63.661 +796215,165.69,63.949 +796216,163.39,64.232 +796217,168.76,63.398 +796218,166.6,63.654 +796219,164.37,63.906 +796220,162.04,64.153 +796221,167.48,63.428 +796222,165.3,63.648 +796223,163.04,63.864 +796224,160.69,64.074 +796225,166.2,63.458 +796226,164,63.641 +796227,161.72,63.821 +796228,159.34,63.995 +796229,164.92,63.488 +796230,162.7,63.635 +796231,160.4,63.778 +796232,157.99,63.916 +796233,163.63,63.518 +796234,161.4,63.628 +796235,159.07,63.735 +796236,156.65,63.836 +796237,162.34,63.548 +796238,160.09,63.622 +796239,157.75,63.692 +796240,155.31,63.756 +796241,161.06,63.578 +796242,158.79,63.615 +796243,156.43,63.649 +796244,153.96,63.677 +796245,159.77,63.608 +796246,157.49,63.609 +796247,155.11,63.606 +796248,152.63,63.597 +796249,158.47,63.639 +796250,156.18,63.603 +796251,153.79,63.562 +796252,151.29,63.517 +796253,157.18,63.669 +796254,154.88,63.596 +796255,152.47,63.519 +796256,149.95,63.436 +796257,155.89,63.699 +796258,153.57,63.59 +796259,151.16,63.476 +796260,148.62,63.356 +796261,154.59,63.729 +796262,152.27,63.583 +796263,149.84,63.433 +796264,147.29,63.276 +796265,153.29,63.759 +796266,150.96,63.577 +796267,148.52,63.39 +796268,145.96,63.196 +796269,151.99,63.789 +796270,149.65,63.57 +796271,147.21,63.346 +796272,144.63,63.116 +796273,150.69,63.818 +796274,148.34,63.564 +796275,145.89,63.303 +796276,143.3,63.036 +796277,149.38,63.848 +796278,147.04,63.557 +796279,144.58,63.26 +796280,141.98,62.957 +796281,148.08,63.877 +796282,145.73,63.55 +796283,143.26,63.217 +796284,140.66,62.877 +796285,146.77,63.906 +796286,144.42,63.543 +796287,141.95,63.174 +796288,139.34,62.798 +796289,145.46,63.935 +796290,143.11,63.536 +796291,140.63,63.131 +796292,138.02,62.718 +796293,144.15,63.963 +796294,141.8,63.529 +796295,139.32,63.088 +796296,136.7,62.639 +796297,142.83,63.991 +796298,140.49,63.522 +796299,138.01,63.046 +796300,135.39,62.561 +796301,141.52,64.018 +796302,139.17,63.515 +796303,136.7,63.003 +796304,134.08,62.482 +796305,140.2,64.046 +796306,137.86,63.507 +796307,135.39,62.96 +796308,132.77,62.405 +796309,138.88,64.072 +796310,136.55,63.5 +796311,134.08,62.918 +796312,131.46,62.327 +796313,137.56,64.099 +796314,135.23,63.492 +796315,132.77,62.876 +796316,130.15,62.25 +796317,136.24,64.124 +796318,133.92,63.484 +796319,131.46,62.834 +796320,128.85,62.173 +796321,134.92,64.15 +796322,132.6,63.476 +796323,130.15,62.792 +796324,127.55,62.097 +796325,133.59,64.174 +796326,131.29,63.467 +796327,128.85,62.75 +796328,126.25,62.021 +796329,132.27,64.199 +796330,129.97,63.459 +796331,127.54,62.708 +796332,124.95,61.945 +796333,130.94,64.222 +796334,128.66,63.45 +796335,126.24,62.666 +796336,123.65,61.871 +796337,129.61,64.245 +796338,127.34,63.441 +796339,124.93,62.625 +796340,122.36,61.796 +796341,128.28,64.268 +796342,126.02,63.432 +796343,123.63,62.584 +796344,121.07,61.723 +796345,126.94,64.289 +796346,124.7,63.423 +796347,122.32,62.543 +796348,119.78,61.65 +796349,125.61,64.31 +796350,123.38,63.413 +796351,121.02,62.502 +796352,118.49,61.578 +796353,124.27,64.33 +796354,122.06,63.403 +796355,119.72,62.462 +796356,117.2,61.506 +796357,122.93,64.35 +796358,120.74,63.393 +796359,118.42,62.421 +796360,115.92,61.435 +796361,121.59,64.369 +796362,119.42,63.382 +796363,117.11,62.381 +796364,114.64,61.365 +796365,120.25,64.387 +796366,118.1,63.372 +796367,115.81,62.341 +796368,113.36,61.295 +796369,118.91,64.404 +796370,116.78,63.361 +796371,114.51,62.302 +796372,112.08,61.227 +796373,117.56,64.42 +796374,115.46,63.35 +796375,113.21,62.263 +796376,110.8,61.159 +796377,116.21,64.435 +796378,114.14,63.338 +796379,111.92,62.224 +796380,109.53,61.092 +796381,114.87,64.45 +796382,112.81,63.326 +796383,110.62,62.185 +796384,108.26,61.026 +796385,113.52,64.464 +796386,111.49,63.314 +796387,109.32,62.146 +796388,106.99,60.96 +796389,112.17,64.476 +796390,110.16,63.301 +796391,108.02,62.108 +796392,105.72,60.896 +796393,110.81,64.488 +796394,108.84,63.289 +796395,106.73,62.07 +796396,104.45,60.832 +796397,109.46,64.499 +796398,107.51,63.275 +796399,105.43,62.033 +796400,103.19,60.77 +796401,108.1,64.509 +796402,106.19,63.262 +796403,104.14,61.995 +796404,101.92,60.708 +796405,106.75,64.518 +796406,104.86,63.248 +796407,102.84,61.958 +796408,100.66,60.648 +796409,105.39,64.526 +796410,103.54,63.234 +796411,101.55,61.922 +796412,99.404,60.588 +796413,104.03,64.532 +796414,102.21,63.219 +796415,100.26,61.885 +796416,98.146,60.53 +796417,102.67,64.538 +796418,100.88,63.204 +796419,98.962,61.849 +796420,96.89,60.472 +796421,101.3,64.543 +796422,99.553,63.189 +796423,97.67,61.814 +796424,95.635,60.416 +796425,99.94,64.547 +796426,98.224,63.174 +796427,96.378,61.778 +796428,94.382,60.36 +796429,98.575,64.549 +796430,96.895,63.158 +796431,95.087,61.743 +796432,93.131,60.306 +796433,97.209,64.55 +796434,95.566,63.141 +796435,93.796,61.709 +796436,91.881,60.253 +796437,95.841,64.551 +796438,94.236,63.124 +796439,92.506,61.674 +796440,90.633,60.201 +796441,94.472,64.55 +796442,92.906,63.107 +796443,91.216,61.641 +796444,89.386,60.15 +796445,93.102,64.548 +796446,91.575,63.089 +796447,89.927,61.607 +796448,88.141,60.101 +796449,91.731,64.544 +796450,90.244,63.071 +796451,88.638,61.574 +796452,86.897,60.052 +796453,90.359,64.54 +796454,88.912,63.053 +796455,87.35,61.541 +796456,85.654,60.005 +796457,88.986,64.534 +796458,87.581,63.034 +796459,86.062,61.509 +796460,84.413,59.959 +796461,87.611,64.528 +796462,86.249,63.015 +796463,84.775,61.477 +796464,83.173,59.914 +796465,86.236,64.52 +796466,84.916,62.995 +796467,83.488,61.446 +796468,81.934,59.87 +796469,84.859,64.51 +796470,83.583,62.975 +796471,82.201,61.414 +796472,80.697,59.828 +796473,83.482,64.5 +796474,82.25,62.955 +796475,80.915,61.384 +796476,79.46,59.787 +796477,82.103,64.488 +796478,80.917,62.934 +796479,79.629,61.353 +796480,78.225,59.747 +796481,80.724,64.475 +796482,79.583,62.912 +796483,78.343,61.323 +796484,76.991,59.708 +796485,79.344,64.461 +796486,78.249,62.89 +796487,77.058,61.294 +796488,75.758,59.671 +796489,77.962,64.445 +796490,76.915,62.868 +796491,75.773,61.265 +796492,74.526,59.635 +796493,76.58,64.428 +796494,75.58,62.845 +796495,74.489,61.236 +796496,73.295,59.6 +796497,75.198,64.41 +796498,74.245,62.822 +796499,73.205,61.208 +796500,72.064,59.567 +796501,73.814,64.391 +796502,72.91,62.798 +796503,71.921,61.18 +796504,70.835,59.535 +796505,72.43,64.37 +796506,71.575,62.774 +796507,70.637,61.152 +796508,69.607,59.504 +796509,71.045,64.348 +796510,70.239,62.75 +796511,69.354,61.125 +796512,68.379,59.475 +796513,69.659,64.325 +796514,68.903,62.725 +796515,68.071,61.099 +796516,67.152,59.447 +796517,68.273,64.3 +796518,67.568,62.7 +796519,66.788,61.073 +796520,65.926,59.42 +796521,66.886,64.274 +796522,66.231,62.674 +796523,65.506,61.047 +796524,64.7,59.394 +796525,65.499,64.247 +796526,64.895,62.647 +796527,64.223,61.022 +796528,63.475,59.37 +796529,64.111,64.218 +796530,63.559,62.621 +796531,62.941,60.997 +796532,62.25,59.347 +796533,62.722,64.189 +796534,62.222,62.593 +796535,61.659,60.972 +796536,61.026,59.326 +796537,61.333,64.158 +796538,60.885,62.566 +796539,60.378,60.948 +796540,59.803,59.305 +796541,59.944,64.125 +796542,59.549,62.538 +796543,59.096,60.925 +796544,58.579,59.287 +796545,58.554,64.091 +796546,58.212,62.509 +796547,57.815,60.901 +796548,57.356,59.269 +796549,57.164,64.056 +796550,56.875,62.48 +796551,56.533,60.879 +796552,56.134,59.253 +796553,55.773,64.02 +796554,55.538,62.451 +796555,55.252,60.856 +796556,54.911,59.238 +796557,54.382,63.982 +796558,54.201,62.421 +796559,53.971,60.834 +796560,53.689,59.224 +796561,52.991,63.943 +796562,52.863,62.39 +796563,52.69,60.813 +796564,52.467,59.212 +796565,51.6,63.903 +796566,51.526,62.359 +796567,51.409,60.792 +796568,51.245,59.201 +796569,50.209,63.862 +796570,50.189,62.328 +796571,50.128,60.771 +796572,50.024,59.191 +796573,48.817,63.819 +796574,48.852,62.297 +796575,48.848,60.751 +796576,48.802,59.182 +796577,47.425,63.775 +796578,47.514,62.264 +796579,47.567,60.731 +796580,47.58,59.175 +796581,46.034,63.73 +796582,46.177,62.232 +796583,46.286,60.711 +796584,46.358,59.169 +796585,44.642,63.683 +796586,44.84,62.199 +796587,45.005,60.692 +796588,45.136,59.164 +796589,43.25,63.635 +796590,43.503,62.166 +796591,43.725,60.674 +796592,43.913,59.161 +796593,41.858,63.586 +796594,42.166,62.132 +796595,42.444,60.655 +796596,42.691,59.159 +796597,40.467,63.536 +796598,40.829,62.097 +796599,41.163,60.638 +796600,41.468,59.157 +796601,39.075,63.485 +796602,39.492,62.063 +796603,39.882,60.62 +796604,40.245,59.158 +796605,37.684,63.432 +796606,38.155,62.028 +796607,38.601,60.603 +796608,39.021,59.159 +796609,36.293,63.378 +796610,36.818,61.992 +796611,37.32,60.586 +796612,37.797,59.161 +796613,34.902,63.323 +796614,35.482,61.956 +796615,36.039,60.57 +796616,36.573,59.165 +796617,33.511,63.267 +796618,34.146,61.92 +796619,34.758,60.554 +796620,35.348,59.17 +796621,32.121,63.21 +796622,32.809,61.883 +796623,33.476,60.538 +796624,34.122,59.176 +796625,30.731,63.152 +796626,31.473,61.846 +796627,32.195,60.523 +796628,32.896,59.182 +796629,29.342,63.092 +796630,30.137,61.809 +796631,30.913,60.508 +796632,31.669,59.191 +796633,27.952,63.032 +796634,28.802,61.771 +796635,29.631,60.493 +796636,30.442,59.2 +796637,26.564,62.97 +796638,27.466,61.733 +796639,28.349,60.479 +796640,29.214,59.21 +796641,25.176,62.907 +796642,26.131,61.694 +796643,27.067,60.465 +796644,27.985,59.221 +796645,23.788,62.843 +796646,24.796,61.656 +796647,25.785,60.452 +796648,26.755,59.233 +796649,22.401,62.778 +796650,23.461,61.616 +796651,24.502,60.438 +796652,25.525,59.246 +796653,21.015,62.713 +796654,22.127,61.577 +796655,23.219,60.425 +796656,24.293,59.26 +796657,19.629,62.646 +796658,20.793,61.537 +796659,21.936,60.413 +796660,23.061,59.276 +796661,18.244,62.578 +796662,19.459,61.496 +796663,20.653,60.4 +796664,21.827,59.292 +796665,16.86,62.509 +796666,18.125,61.456 +796667,19.369,60.388 +796668,20.593,59.308 +796669,15.476,62.44 +796670,16.792,61.415 +796671,18.085,60.377 +796672,19.357,59.326 +796673,14.094,62.369 +796674,15.459,61.374 +796675,16.801,60.365 +796676,18.121,59.345 +796677,12.712,62.298 +796678,14.126,61.332 +796679,15.516,60.354 +796680,16.883,59.364 +796681,11.331,62.225 +796682,12.794,61.29 +796683,14.231,60.343 +796684,15.645,59.385 +796685,9.951,62.152 +796686,11.462,61.248 +796687,12.946,60.332 +796688,14.405,59.406 +796689,8.572,62.078 +796690,10.131,61.206 +796691,11.66,60.322 +796692,13.163,59.427 +796693,7.194,62.003 +796694,8.7997,61.163 +796695,10.374,60.311 +796696,11.921,59.45 +796697,5.8171,61.928 +796698,7.469,61.12 +796699,9.0878,60.301 +796700,10.677,59.473 +796701,4.4412,61.851 +796702,6.1387,61.077 +796703,7.8011,60.292 +796704,9.4323,59.497 +796705,3.0665,61.774 +796706,4.8089,61.034 +796707,6.514,60.282 +796708,8.186,59.522 +796709,1.6929,61.697 +796710,3.4795,60.99 +796711,5.2264,60.273 +796712,6.9383,59.547 +796713,0.32054,61.618 +796714,2.1506,60.946 +796715,3.9385,60.264 +796716,5.6892,59.572 +796717,358.95,61.539 +796718,0.8221,60.902 +796719,2.6501,60.255 +796720,4.4386,59.599 +796721,357.58,61.459 +796722,359.49,60.858 +796723,1.3613,60.246 +796724,3.1867,59.626 +796725,356.21,61.379 +796726,358.17,60.813 +796727,0.072072,60.237 +796728,1.9332,59.653 +796729,354.84,61.298 +796730,356.84,60.768 +796731,358.78,60.229 +796732,0.67832,59.681 +796733,353.48,61.217 +796734,355.51,60.724 +796735,357.49,60.22 +796736,359.42,59.709 +796737,352.11,61.135 +796738,354.19,60.678 +796739,356.2,60.212 +796740,358.16,59.738 +796741,350.75,61.053 +796742,352.86,60.633 +796743,354.91,60.204 +796744,356.9,59.767 +796745,349.39,60.97 +796746,351.54,60.588 +796747,353.62,60.196 +796748,355.64,59.796 +796749,348.03,60.887 +796750,350.21,60.542 +796751,352.33,60.188 +796752,354.38,59.826 +796753,346.67,60.803 +796754,348.89,60.497 +796755,351.03,60.18 +796756,353.12,59.856 +796757,345.31,60.719 +796758,347.57,60.451 +796759,349.74,60.172 +796760,351.85,59.886 +796761,343.96,60.635 +796762,346.24,60.405 +796763,348.45,60.165 +796764,350.58,59.917 +796765,342.6,60.551 +796766,344.92,60.359 +796767,347.15,60.157 +796768,349.31,59.947 +796769,341.25,60.466 +796770,343.6,60.313 +796771,345.86,60.15 +796772,348.04,59.978 +796773,339.9,60.381 +796774,342.28,60.267 +796775,344.56,60.142 +796776,346.77,60.009 +796777,338.55,60.296 +796778,340.96,60.22 +796779,343.27,60.135 +796780,345.49,60.041 +796781,337.21,60.21 +796782,339.64,60.174 +796783,341.97,60.127 +796784,344.22,60.072 +796785,335.86,60.125 +796786,338.32,60.128 +796787,340.67,60.12 +796788,342.94,60.103 +796789,334.52,60.039 +796790,337,60.081 +796791,339.38,60.113 +796792,341.66,60.135 +796793,333.18,59.953 +796794,335.68,60.035 +796795,338.08,60.105 +796796,340.38,60.166 +796797,331.84,59.867 +796798,334.37,59.988 +796799,336.78,60.098 +796800,339.1,60.197 +796801,330.5,59.781 +796802,333.05,59.942 +796803,335.48,60.09 +796804,337.81,60.229 +796805,329.16,59.696 +796806,331.73,59.896 +796807,334.18,60.083 +796808,336.53,60.26 +796809,327.83,59.61 +796810,330.42,59.849 +796811,332.88,60.075 +796812,335.24,60.291 +796813,326.5,59.524 +796814,329.1,59.803 +796815,331.58,60.068 +796816,333.95,60.322 +796817,325.17,59.438 +796818,327.79,59.756 +796819,330.28,60.06 +796820,332.65,60.352 +796821,323.84,59.353 +796822,326.48,59.71 +796823,328.98,60.052 +796824,331.36,60.383 +796825,322.51,59.268 +796826,325.16,59.664 +796827,327.67,60.045 +796828,330.06,60.413 +796829,321.19,59.183 +796830,323.85,59.617 +796831,326.37,60.037 +796832,328.77,60.443 +796833,319.86,59.098 +796834,322.54,59.571 +796835,325.07,60.029 +796836,327.47,60.472 +796837,318.54,59.013 +796838,321.23,59.525 +796839,323.76,60.021 +796840,326.17,60.501 +796841,317.23,58.929 +796842,319.92,59.479 +796843,322.46,60.012 +796844,324.86,60.53 +796845,315.91,58.845 +796846,318.61,59.433 +796847,321.15,60.004 +796848,323.56,60.559 +796849,314.6,58.762 +796850,317.3,59.388 +796851,319.85,59.995 +796852,322.25,60.587 +796853,313.28,58.678 +796854,315.99,59.342 +796855,318.54,59.987 +796856,320.94,60.614 +796857,311.97,58.596 +796858,314.69,59.296 +796859,317.23,59.978 +796860,319.63,60.642 +796861,310.67,58.513 +796862,313.38,59.251 +796863,315.92,59.969 +796864,318.32,60.668 +796865,309.36,58.432 +796866,312.08,59.206 +796867,314.62,59.959 +796868,317.01,60.694 +796869,308.06,58.35 +796870,310.77,59.161 +796871,313.31,59.95 +796872,315.69,60.72 +796873,306.76,58.27 +796874,309.47,59.116 +796875,312,59.94 +796876,314.38,60.744 +796877,305.46,58.189 +796878,308.16,59.071 +796879,310.69,59.93 +796880,313.06,60.769 +796881,304.16,58.11 +796882,306.86,59.027 +796883,309.38,59.92 +796884,311.74,60.792 +796885,302.86,58.031 +796886,305.56,58.983 +796887,308.06,59.91 +796888,310.41,60.815 +796889,301.57,57.953 +796890,304.26,58.939 +796891,306.75,59.899 +796892,309.09,60.837 +796893,300.28,57.875 +796894,302.96,58.895 +796895,305.44,59.888 +796896,307.76,60.859 +796897,298.99,57.799 +796898,301.66,58.851 +796899,304.13,59.877 +796900,306.44,60.879 +796901,297.71,57.723 +796902,300.36,58.808 +796903,302.81,59.866 +796904,305.11,60.899 +796905,296.42,57.647 +796906,299.06,58.765 +796907,301.5,59.854 +796908,303.78,60.918 +796909,295.14,57.573 +796910,297.76,58.722 +796911,300.18,59.842 +796912,302.44,60.937 +796913,293.86,57.499 +796914,296.46,58.679 +796915,298.87,59.83 +796916,301.11,60.954 +796917,292.58,57.427 +796918,295.17,58.637 +796919,297.55,59.818 +796920,299.77,60.971 +796921,291.3,57.355 +796922,293.87,58.595 +796923,296.24,59.805 +796924,298.44,60.986 +796925,290.03,57.284 +796926,292.57,58.553 +796927,294.92,59.791 +796928,297.1,61.001 +796929,288.76,57.214 +796930,291.28,58.512 +796931,293.6,59.778 +796932,295.76,61.015 +796933,287.49,57.145 +796934,289.98,58.471 +796935,292.28,59.764 +796936,294.41,61.027 +796937,286.22,57.077 +796938,288.69,58.43 +796939,290.96,59.75 +796940,293.07,61.039 +796941,284.95,57.01 +796942,287.4,58.39 +796943,289.65,59.735 +796944,291.73,61.05 +796945,283.69,56.944 +796946,286.11,58.349 +796947,288.33,59.72 +796948,290.38,61.059 +796949,282.43,56.879 +796950,284.81,58.31 +796951,287.01,59.705 +796952,289.03,61.068 +796953,281.17,56.815 +796954,283.52,58.27 +796955,285.68,59.69 +796956,287.68,61.076 +796957,279.91,56.753 +796958,282.23,58.231 +796959,284.36,59.673 +796960,286.33,61.082 +796961,278.65,56.691 +796962,280.94,58.192 +796963,283.04,59.657 +796964,284.98,61.088 +796965,277.4,56.631 +796966,279.65,58.154 +796967,281.72,59.64 +796968,283.62,61.092 +796969,276.15,56.572 +796970,278.37,58.116 +796971,280.4,59.623 +796972,282.27,61.095 +796973,274.89,56.513 +796974,277.08,58.079 +796975,279.07,59.605 +796976,280.91,61.097 +796977,273.64,56.457 +796978,275.79,58.041 +796979,277.75,59.587 +796980,279.55,61.098 +796981,272.4,56.401 +796982,274.5,58.005 +796983,276.43,59.569 +796984,278.19,61.097 +796985,271.15,56.347 +796986,273.22,57.968 +796987,275.1,59.55 +796988,276.83,61.095 +796989,269.91,56.294 +796990,271.93,57.932 +796991,273.78,59.531 +796992,275.47,61.093 +796993,268.67,56.242 +796994,270.65,57.896 +796995,272.45,59.511 +796996,274.11,61.088 +796997,267.42,56.191 +796998,269.36,57.861 +796999,271.13,59.491 +797000,272.74,61.083 +797001,266.19,56.142 +797002,268.08,57.827 +797003,269.8,59.471 +797004,271.38,61.076 +797005,264.95,56.094 +797006,266.79,57.792 +797007,268.47,59.45 +797008,270.01,61.069 +797009,263.71,56.048 +797010,265.51,57.758 +797011,267.15,59.428 +797012,268.64,61.059 +797013,262.48,56.002 +797014,264.23,57.725 +797015,265.82,59.406 +797016,267.27,61.049 +797017,261.24,55.958 +797018,262.95,57.692 +797019,264.49,59.384 +797020,265.9,61.037 +797021,260.01,55.916 +797022,261.67,57.659 +797023,263.16,59.361 +797024,264.53,61.024 +797025,258.78,55.875 +797026,260.38,57.627 +797027,261.84,59.338 +797028,263.16,61.009 +797029,257.55,55.835 +797030,259.1,57.595 +797031,260.51,59.314 +797032,261.78,60.994 +797033,256.32,55.797 +797034,257.82,57.564 +797035,259.18,59.29 +797036,260.41,60.977 +797037,255.1,55.76 +797038,256.54,57.533 +797039,257.85,59.265 +797040,259.03,60.958 +797041,253.87,55.724 +797042,255.26,57.503 +797043,256.52,59.24 +797044,257.66,60.938 +797045,252.64,55.69 +797046,253.98,57.473 +797047,255.19,59.214 +797048,256.28,60.917 +797049,251.42,55.657 +797050,252.7,57.443 +797051,253.86,59.188 +797052,254.9,60.894 +797053,250.2,55.626 +797054,251.43,57.414 +797055,252.53,59.162 +797056,253.52,60.87 +797057,248.98,55.596 +797058,250.15,57.386 +797059,251.2,59.135 +797060,252.15,60.845 +797061,247.76,55.567 +797062,248.87,57.358 +797063,249.87,59.107 +797064,250.77,60.818 +797065,246.54,55.54 +797066,247.59,57.33 +797067,248.54,59.079 +797068,249.38,60.79 +797069,245.32,55.515 +797070,246.32,57.303 +797071,247.21,59.051 +797072,248,60.761 +797073,244.1,55.491 +797074,245.04,57.276 +797075,245.87,59.022 +797076,246.62,60.73 +797077,242.88,55.468 +797078,243.76,57.25 +797079,244.54,58.992 +797080,245.24,60.698 +797081,241.66,55.446 +797082,242.48,57.224 +797083,243.21,58.963 +797084,243.85,60.664 +797085,240.45,55.427 +797086,241.21,57.198 +797087,241.88,58.932 +797088,242.47,60.629 +797089,239.23,55.408 +797090,239.93,57.174 +797091,240.55,58.901 +797092,241.09,60.593 +797093,238.01,55.391 +797094,238.66,57.149 +797095,239.22,58.87 +797096,239.7,60.555 +797097,236.8,55.375 +797098,237.38,57.125 +797099,237.88,58.838 +797100,238.32,60.516 +797101,235.59,55.361 +797102,236.11,57.102 +797103,236.55,58.806 +797104,236.93,60.475 +797105,234.37,55.348 +797106,234.83,57.079 +797107,235.22,58.773 +797108,235.54,60.433 +797109,233.16,55.337 +797110,233.56,57.056 +797111,233.89,58.74 +797112,234.16,60.39 +797113,231.94,55.327 +797114,232.28,57.034 +797115,232.55,58.706 +797116,232.77,60.345 +797117,230.73,55.318 +797118,231.01,57.012 +797119,231.22,58.672 +797120,231.38,60.299 +797121,229.52,55.311 +797122,229.73,56.991 +797123,229.89,58.638 +797124,230,60.252 +797125,228.3,55.305 +797126,228.46,56.97 +797127,228.56,58.603 +797128,228.61,60.203 +797129,227.09,55.3 +797130,227.18,56.949 +797131,227.22,58.567 +797132,227.22,60.153 +797133,225.88,55.297 +797134,225.91,56.929 +797135,225.89,58.531 +797136,225.83,60.102 +797137,224.66,55.295 +797138,224.63,56.91 +797139,224.56,58.495 +797140,224.45,60.049 +797141,223.45,55.294 +797142,223.36,56.891 +797143,223.23,58.458 +797144,223.06,59.995 +797145,222.24,55.294 +797146,222.08,56.872 +797147,221.89,58.421 +797148,221.67,59.94 +797149,221.02,55.296 +797150,220.81,56.854 +797151,220.56,58.383 +797152,220.28,59.884 +797153,219.81,55.299 +797154,219.53,56.836 +797155,219.23,58.345 +797156,218.9,59.826 +797157,218.59,55.304 +797158,218.26,56.818 +797159,217.9,58.306 +797160,217.51,59.767 +797161,217.38,55.309 +797162,216.98,56.801 +797163,216.56,58.267 +797164,216.12,59.707 +797165,216.16,55.316 +797166,215.71,56.784 +797167,215.23,58.228 +797168,214.73,59.645 +797169,214.95,55.324 +797170,214.43,56.768 +797171,213.9,58.188 +797172,213.35,59.582 +797173,213.73,55.333 +797174,213.16,56.752 +797175,212.57,58.147 +797176,211.96,59.519 +797177,212.51,55.343 +797178,211.88,56.737 +797179,211.24,58.107 +797180,210.57,59.453 +797181,211.3,55.355 +797182,210.61,56.721 +797183,209.91,58.066 +797184,209.19,59.387 +797185,210.08,55.367 +797186,209.33,56.706 +797187,208.58,58.024 +797188,207.8,59.32 +797189,208.86,55.381 +797190,208.06,56.692 +797191,207.24,57.983 +797192,206.41,59.251 +797193,207.64,55.395 +797194,206.78,56.678 +797195,205.91,57.94 +797196,205.03,59.182 +797197,206.42,55.411 +797198,205.51,56.664 +797199,204.58,57.898 +797200,203.65,59.111 +797201,205.2,55.428 +797202,204.23,56.651 +797203,203.25,57.855 +797204,202.26,59.039 +797205,203.97,55.446 +797206,202.95,56.638 +797207,201.92,57.812 +797208,200.88,58.966 +797209,202.75,55.464 +797210,201.68,56.625 +797211,200.59,57.768 +797212,199.5,58.893 +797213,201.53,55.484 +797214,200.4,56.612 +797215,199.26,57.724 +797216,198.11,58.818 +797217,200.3,55.504 +797218,199.12,56.6 +797219,197.93,57.68 +797220,196.73,58.742 +797221,199.08,55.526 +797222,197.85,56.588 +797223,196.61,57.635 +797224,195.35,58.665 +797225,197.85,55.548 +797226,196.57,56.577 +797227,195.28,57.59 +797228,193.97,58.587 +797229,196.62,55.571 +797230,195.29,56.565 +797231,193.95,57.545 +797232,192.59,58.509 +797233,195.39,55.595 +797234,194.01,56.554 +797235,192.62,57.499 +797236,191.21,58.429 +797237,194.16,55.62 +797238,192.74,56.543 +797239,191.29,57.454 +797240,189.84,58.349 +797241,192.93,55.645 +797242,191.46,56.533 +797243,189.97,57.407 +797244,188.46,58.267 +797245,191.7,55.671 +797246,190.18,56.523 +797247,188.64,57.361 +797248,187.08,58.185 +797249,190.46,55.698 +797250,188.9,56.512 +797251,187.32,57.314 +797252,185.71,58.103 +797253,189.23,55.726 +797254,187.62,56.503 +797255,185.99,57.268 +797256,184.34,58.019 +797257,187.99,55.754 +797258,186.34,56.493 +797259,184.66,57.22 +797260,182.96,57.935 +797261,186.75,55.783 +797262,185.06,56.484 +797263,183.34,57.173 +797264,181.59,57.85 +797265,185.51,55.812 +797266,183.78,56.474 +797267,182.02,57.126 +797268,180.22,57.764 +797269,184.27,55.842 +797270,182.5,56.465 +797271,180.69,57.078 +797272,178.85,57.677 +797273,183.03,55.872 +797274,181.21,56.456 +797275,179.37,57.03 +797276,177.49,57.59 +797277,181.78,55.903 +797278,179.93,56.448 +797279,178.04,56.982 +797280,176.12,57.503 +797281,180.54,55.935 +797282,178.65,56.439 +797283,176.72,56.933 +797284,174.75,57.415 +797285,179.29,55.966 +797286,177.37,56.431 +797287,175.4,56.885 +797288,173.39,57.326 +797289,178.04,55.998 +797290,176.08,56.422 +797291,174.08,56.836 +797292,172.03,57.237 +797293,176.79,56.031 +797294,174.8,56.414 +797295,172.76,56.787 +797296,170.67,57.147 +797297,175.54,56.064 +797298,173.51,56.406 +797299,171.44,56.738 +797300,169.31,57.057 +797301,174.28,56.097 +797302,172.23,56.398 +797303,170.12,56.689 +797304,167.95,56.967 +797305,173.03,56.13 +797306,170.94,56.39 +797307,168.8,56.64 +797308,166.59,56.876 +797309,171.77,56.164 +797310,169.66,56.383 +797311,167.48,56.59 +797312,165.24,56.785 +797313,170.51,56.198 +797314,168.37,56.375 +797315,166.16,56.541 +797316,163.88,56.693 +797317,169.25,56.232 +797318,167.08,56.367 +797319,164.85,56.491 +797320,162.53,56.602 +797321,167.99,56.266 +797322,165.8,56.36 +797323,163.53,56.442 +797324,161.18,56.51 +797325,166.73,56.3 +797326,164.51,56.352 +797327,162.21,56.392 +797328,159.83,56.417 +797329,165.46,56.334 +797330,163.22,56.344 +797331,160.9,56.342 +797332,158.48,56.325 +797333,164.19,56.368 +797334,161.93,56.337 +797335,159.58,56.292 +797336,157.14,56.232 +797337,162.92,56.403 +797338,160.64,56.329 +797339,158.27,56.243 +797340,155.8,56.14 +797341,161.65,56.437 +797342,159.35,56.322 +797343,156.95,56.193 +797344,154.45,56.047 +797345,160.38,56.471 +797346,158.06,56.314 +797347,155.64,56.143 +797348,153.11,55.954 +797349,159.11,56.505 +797350,156.77,56.307 +797351,154.33,56.093 +797352,151.78,55.862 +797353,157.83,56.539 +797354,155.47,56.299 +797355,153.02,56.043 +797356,150.44,55.769 +797357,156.55,56.573 +797358,154.18,56.291 +797359,151.71,55.993 +797360,149.11,55.676 +797361,155.27,56.606 +797362,152.89,56.284 +797363,150.4,55.944 +797364,147.77,55.584 +797365,153.99,56.64 +797366,151.6,56.276 +797367,149.09,55.894 +797368,146.44,55.491 +797369,152.71,56.673 +797370,150.3,56.268 +797371,147.78,55.844 +797372,145.11,55.399 +797373,151.42,56.705 +797374,149.01,56.26 +797375,146.47,55.795 +797376,143.79,55.307 +797377,150.13,56.738 +797378,147.71,56.252 +797379,145.16,55.745 +797380,142.46,55.215 +797381,148.84,56.77 +797382,146.41,56.243 +797383,143.85,55.696 +797384,141.14,55.124 +797385,147.55,56.802 +797386,145.12,56.235 +797387,142.55,55.647 +797388,139.82,55.033 +797389,146.26,56.833 +797390,143.82,56.227 +797391,141.24,55.597 +797392,138.5,54.942 +797393,144.97,56.864 +797394,142.52,56.218 +797395,139.94,55.548 +797396,137.18,54.852 +797397,143.67,56.894 +797398,141.23,56.209 +797399,138.63,55.499 +797400,135.87,54.762 +797401,142.37,56.924 +797402,139.93,56.2 +797403,137.33,55.451 +797404,134.56,54.672 +797405,141.07,56.953 +797406,138.63,56.191 +797407,136.03,55.402 +797408,133.25,54.583 +797409,139.77,56.982 +797410,137.33,56.182 +797411,134.73,55.354 +797412,131.94,54.494 +797413,138.47,57.01 +797414,136.03,56.172 +797415,133.43,55.305 +797416,130.64,54.406 +797417,137.16,57.037 +797418,134.72,56.162 +797419,132.13,55.257 +797420,129.33,54.319 +797421,135.85,57.064 +797422,133.42,56.152 +797423,130.83,55.209 +797424,128.03,54.232 +797425,134.54,57.09 +797426,132.12,56.142 +797427,129.53,55.162 +797428,126.73,54.146 +797429,133.23,57.116 +797430,130.82,56.131 +797431,128.23,55.114 +797432,125.43,54.06 +797433,131.92,57.14 +797434,129.51,56.121 +797435,126.93,55.067 +797436,124.14,53.976 +797437,130.61,57.164 +797438,128.21,56.11 +797439,125.63,55.02 +797440,122.85,53.892 +797441,129.29,57.187 +797442,126.9,56.098 +797443,124.34,54.974 +797444,121.56,53.808 +797445,127.97,57.209 +797446,125.6,56.087 +797447,123.04,54.927 +797448,120.27,53.726 +797449,126.65,57.231 +797450,124.29,56.075 +797451,121.75,54.881 +797452,118.98,53.645 +797453,125.33,57.251 +797454,122.99,56.063 +797455,120.45,54.835 +797456,117.7,53.564 +797457,124.01,57.271 +797458,121.68,56.05 +797459,119.16,54.79 +797460,116.42,53.484 +797461,122.68,57.29 +797462,120.37,56.038 +797463,117.87,54.745 +797464,115.14,53.405 +797465,121.36,57.307 +797466,119.06,56.025 +797467,116.58,54.7 +797468,113.86,53.327 +797469,120.03,57.324 +797470,117.75,56.011 +797471,115.29,54.655 +797472,112.59,53.251 +797473,118.7,57.34 +797474,116.44,55.997 +797475,114,54.611 +797476,111.31,53.175 +797477,117.37,57.354 +797478,115.13,55.983 +797479,112.71,54.567 +797480,110.04,53.1 +797481,116.04,57.368 +797482,113.82,55.969 +797483,111.42,54.523 +797484,108.78,53.026 +797485,114.7,57.381 +797486,112.51,55.954 +797487,110.13,54.48 +797488,107.51,52.954 +797489,113.37,57.392 +797490,111.2,55.939 +797491,108.84,54.437 +797492,106.25,52.882 +797493,112.03,57.403 +797494,109.89,55.923 +797495,107.56,54.395 +797496,104.98,52.812 +797497,110.69,57.412 +797498,108.58,55.907 +797499,106.27,54.353 +797500,103.72,52.743 +797501,109.35,57.42 +797502,107.26,55.891 +797503,104.98,54.311 +797504,102.47,52.675 +797505,108.01,57.427 +797506,105.95,55.874 +797507,103.7,54.27 +797508,101.21,52.609 +797509,106.66,57.432 +797510,104.64,55.857 +797511,102.42,54.229 +797512,99.958,52.543 +797513,105.32,57.437 +797514,103.32,55.839 +797515,101.13,54.189 +797516,98.707,52.479 +797517,103.97,57.44 +797518,102.01,55.821 +797519,99.85,54.149 +797520,97.458,52.416 +797521,102.62,57.442 +797522,100.69,55.803 +797523,98.568,54.109 +797524,96.21,52.355 +797525,101.27,57.443 +797526,99.376,55.784 +797527,97.287,54.07 +797528,94.965,52.295 +797529,99.924,57.442 +797530,98.059,55.764 +797531,96.006,54.031 +797532,93.721,52.236 +797533,98.572,57.44 +797534,96.742,55.745 +797535,94.726,53.993 +797536,92.479,52.179 +797537,97.219,57.437 +797538,95.425,55.724 +797539,93.446,53.955 +797540,91.24,52.123 +797541,95.865,57.433 +797542,94.107,55.704 +797543,92.167,53.918 +797544,90.002,52.068 +797545,94.509,57.427 +797546,92.789,55.682 +797547,90.888,53.881 +797548,88.765,52.015 +797549,93.152,57.42 +797550,91.471,55.661 +797551,89.611,53.844 +797552,87.531,51.964 +797553,91.794,57.411 +797554,90.152,55.639 +797555,88.333,53.808 +797556,86.298,51.913 +797557,90.435,57.401 +797558,88.833,55.616 +797559,87.057,53.773 +797560,85.067,51.865 +797561,89.074,57.39 +797562,87.513,55.593 +797563,85.78,53.738 +797564,83.838,51.818 +797565,87.713,57.377 +797566,86.193,55.57 +797567,84.505,53.703 +797568,82.61,51.772 +797569,86.35,57.363 +797570,84.873,55.546 +797571,83.229,53.669 +797572,81.384,51.728 +797573,84.986,57.347 +797574,83.552,55.521 +797575,81.955,53.636 +797576,80.159,51.685 +797577,83.621,57.33 +797578,82.231,55.496 +797579,80.681,53.603 +797580,78.936,51.644 +797581,82.256,57.312 +797582,80.909,55.471 +797583,79.407,53.57 +797584,77.714,51.605 +797585,80.889,57.292 +797586,79.588,55.445 +797587,78.134,53.538 +797588,76.494,51.567 +797589,79.521,57.271 +797590,78.266,55.418 +797591,76.861,53.506 +797592,75.274,51.53 +797593,78.153,57.248 +797594,76.943,55.391 +797595,75.588,53.475 +797596,74.057,51.495 +797597,76.783,57.224 +797598,75.621,55.364 +797599,74.316,53.445 +797600,72.84,51.462 +797601,75.413,57.198 +797602,74.298,55.336 +797603,73.045,53.415 +797604,71.625,51.43 +797605,74.042,57.171 +797606,72.975,55.307 +797607,71.774,53.385 +797608,70.41,51.4 +797609,72.67,57.142 +797610,71.652,55.278 +797611,70.503,53.356 +797612,69.197,51.372 +797613,71.297,57.112 +797614,70.328,55.249 +797615,69.233,53.328 +797616,67.985,51.345 +797617,69.924,57.08 +797618,69.004,55.219 +797619,67.963,53.3 +797620,66.774,51.319 +797621,68.55,57.047 +797622,67.68,55.188 +797623,66.693,53.273 +797624,65.564,51.296 +797625,67.175,57.013 +797626,66.356,55.157 +797627,65.423,53.246 +797628,64.354,51.273 +797629,65.8,56.976 +797630,65.032,55.126 +797631,64.154,53.219 +797632,63.146,51.253 +797633,64.424,56.939 +797634,63.707,55.094 +797635,62.886,53.193 +797636,61.938,51.234 +797637,63.047,56.9 +797638,62.383,55.061 +797639,61.617,53.168 +797640,60.731,51.216 +797641,61.67,56.859 +797642,61.058,55.028 +797643,60.349,53.143 +797644,59.525,51.2 +797645,60.292,56.817 +797646,59.733,54.994 +797647,59.081,53.119 +797648,58.319,51.186 +797649,58.914,56.774 +797650,58.408,54.96 +797651,57.813,53.095 +797652,57.114,51.173 +797653,57.536,56.729 +797654,57.083,54.926 +797655,56.546,53.071 +797656,55.909,51.162 +797657,56.157,56.683 +797658,55.758,54.891 +797659,55.278,53.048 +797660,54.705,51.152 +797661,54.778,56.635 +797662,54.432,54.855 +797663,54.011,53.026 +797664,53.501,51.144 +797665,53.399,56.585 +797666,53.107,54.819 +797667,52.744,53.004 +797668,52.297,51.137 +797669,52.019,56.535 +797670,51.782,54.783 +797671,51.477,52.983 +797672,51.094,51.132 +797673,50.639,56.483 +797674,50.456,54.746 +797675,50.211,52.962 +797676,49.891,51.129 +797677,49.259,56.429 +797678,49.131,54.708 +797679,48.944,52.941 +797680,48.688,51.126 +797681,47.878,56.374 +797682,47.806,54.67 +797683,47.678,52.922 +797684,47.485,51.126 +797685,46.498,56.318 +797686,46.48,54.632 +797687,46.411,52.902 +797688,46.282,51.126 +797689,45.117,56.26 +797690,45.155,54.593 +797691,45.145,52.883 +797692,45.079,51.129 +797693,43.736,56.201 +797694,43.83,54.553 +797695,43.879,52.865 +797696,43.877,51.132 +797697,42.356,56.14 +797698,42.504,54.514 +797699,42.612,52.847 +797700,42.673,51.137 +797701,40.975,56.078 +797702,41.179,54.473 +797703,41.346,52.829 +797704,41.47,51.143 +797705,39.594,56.015 +797706,39.854,54.433 +797707,40.08,52.812 +797708,40.267,51.151 +797709,38.213,55.95 +797710,38.529,54.391 +797711,38.814,52.795 +797712,39.063,51.16 +797713,36.833,55.884 +797714,37.204,54.35 +797715,37.548,52.779 +797716,37.859,51.171 +797717,35.453,55.817 +797718,35.88,54.308 +797719,36.281,52.763 +797720,36.655,51.182 +797721,34.072,55.749 +797722,34.555,54.265 +797723,35.015,52.748 +797724,35.45,51.195 +797725,32.693,55.679 +797726,33.231,54.222 +797727,33.749,52.733 +797728,34.244,51.21 +797729,31.313,55.608 +797730,31.906,54.179 +797731,32.482,52.718 +797732,33.038,51.225 +797733,29.934,55.535 +797734,30.582,54.135 +797735,31.216,52.704 +797736,31.832,51.242 +797737,28.555,55.462 +797738,29.259,54.091 +797739,29.949,52.69 +797740,30.625,51.26 +797741,27.176,55.387 +797742,27.935,54.046 +797743,28.682,52.677 +797744,29.417,51.279 +797745,25.798,55.312 +797746,26.611,54.002 +797747,27.415,52.664 +797748,28.208,51.299 +797749,24.42,55.235 +797750,25.288,53.956 +797751,26.148,52.651 +797752,26.999,51.32 +797753,23.043,55.156 +797754,23.965,53.911 +797755,24.881,52.639 +797756,25.789,51.342 +797757,21.666,55.077 +797758,22.643,53.865 +797759,23.613,52.627 +797760,24.577,51.366 +797761,20.29,54.997 +797762,21.32,53.818 +797763,22.346,52.616 +797764,23.365,51.39 +797765,18.914,54.915 +797766,19.998,53.771 +797767,21.078,52.604 +797768,22.152,51.415 +797769,17.539,54.833 +797770,18.677,53.724 +797771,19.809,52.594 +797772,20.938,51.442 +797773,16.165,54.75 +797774,17.355,53.677 +797775,18.541,52.583 +797776,19.723,51.469 +797777,14.792,54.665 +797778,16.034,53.629 +797779,17.272,52.573 +797780,18.507,51.497 +797781,13.419,54.58 +797782,14.713,53.581 +797783,16.003,52.563 +797784,17.29,51.526 +797785,12.047,54.494 +797786,13.393,53.533 +797787,14.734,52.553 +797788,16.071,51.556 +797789,10.676,54.406 +797790,12.073,53.484 +797791,13.465,52.544 +797792,14.852,51.587 +797793,9.3056,54.318 +797794,10.754,53.435 +797795,12.195,52.535 +797796,13.631,51.619 +797797,7.9363,54.229 +797798,9.4344,53.386 +797799,10.925,52.526 +797800,12.408,51.651 +797801,6.568,54.139 +797802,8.1157,53.337 +797803,9.6542,52.518 +797804,11.185,51.684 +797805,5.2006,54.049 +797806,6.7974,53.287 +797807,8.3833,52.509 +797808,9.9599,51.717 +797809,3.8343,53.958 +797810,5.4795,53.237 +797811,7.1121,52.501 +797812,8.7336,51.752 +797813,2.469,53.865 +797814,4.1621,53.187 +797815,5.8405,52.493 +797816,7.5059,51.787 +797817,1.1049,53.773 +797818,2.8452,53.136 +797819,4.5685,52.486 +797820,6.2768,51.822 +797821,359.74,53.679 +797822,1.5288,53.086 +797823,3.2961,52.478 +797824,5.0462,51.858 +797825,358.38,53.585 +797826,0.2128,53.035 +797827,2.0233,52.471 +797828,3.814,51.895 +797829,357.02,53.49 +797830,358.9,52.984 +797831,0.75012,52.464 +797832,2.5804,51.932 +797833,355.66,53.395 +797834,357.58,52.933 +797835,359.48,52.457 +797836,1.3452,51.969 +797837,354.3,53.299 +797838,356.27,52.882 +797839,358.2,52.45 +797840,0.10839,52.007 +797841,352.95,53.203 +797842,354.95,52.83 +797843,356.93,52.444 +797844,358.87,52.046 +797845,351.59,53.106 +797846,353.64,52.779 +797847,355.65,52.437 +797848,357.63,52.084 +797849,350.24,53.009 +797850,352.33,52.727 +797851,354.38,52.431 +797852,356.39,52.123 +797853,348.88,52.911 +797854,351.02,52.675 +797855,353.1,52.425 +797856,355.14,52.162 +797857,347.53,52.813 +797858,349.7,52.623 +797859,351.83,52.419 +797860,353.9,52.202 +797861,346.18,52.715 +797862,348.39,52.571 +797863,350.55,52.413 +797864,352.65,52.241 +797865,344.83,52.616 +797866,347.08,52.519 +797867,349.27,52.407 +797868,351.4,52.281 +797869,343.49,52.517 +797870,345.77,52.467 +797871,347.99,52.401 +797872,350.15,52.321 +797873,342.14,52.418 +797874,344.46,52.414 +797875,346.71,52.395 +797876,348.9,52.361 +797877,340.8,52.318 +797878,343.16,52.362 +797879,345.44,52.389 +797880,347.65,52.401 +797881,339.46,52.219 +797882,341.85,52.31 +797883,344.16,52.383 +797884,346.39,52.441 +797885,338.12,52.119 +797886,340.54,52.257 +797887,342.88,52.377 +797888,345.14,52.481 +797889,336.78,52.019 +797890,339.23,52.205 +797891,341.6,52.372 +797892,343.88,52.522 +797893,335.44,51.92 +797894,337.93,52.153 +797895,340.31,52.366 +797896,342.62,52.561 +797897,334.11,51.82 +797898,336.62,52.1 +797899,339.03,52.36 +797900,341.35,52.601 +797901,332.78,51.72 +797902,335.32,52.048 +797903,337.75,52.354 +797904,340.09,52.641 +797905,331.45,51.62 +797906,334.01,51.996 +797907,336.47,52.348 +797908,338.82,52.68 +797909,330.12,51.521 +797910,332.71,51.943 +797911,335.18,52.342 +797912,337.55,52.72 +797913,328.79,51.421 +797914,331.41,51.891 +797915,333.9,52.336 +797916,336.28,52.759 +797917,327.47,51.322 +797918,330.11,51.839 +797919,332.62,52.33 +797920,335.01,52.797 +797921,326.14,51.223 +797922,328.81,51.787 +797923,331.33,52.324 +797924,333.74,52.836 +797925,324.82,51.124 +797926,327.51,51.735 +797927,330.05,52.317 +797928,332.46,52.874 +797929,323.5,51.026 +797930,326.21,51.684 +797931,328.76,52.311 +797932,331.18,52.911 +797933,322.18,50.928 +797934,324.91,51.632 +797935,327.47,52.305 +797936,329.91,52.949 +797937,320.87,50.83 +797938,323.61,51.581 +797939,326.19,52.298 +797940,328.62,52.985 +797941,319.56,50.732 +797942,322.31,51.529 +797943,324.9,52.291 +797944,327.34,53.022 +797945,318.25,50.636 +797946,321.02,51.478 +797947,323.61,52.284 +797948,326.06,53.057 +797949,316.94,50.539 +797950,319.72,51.427 +797951,322.32,52.277 +797952,324.77,53.092 +797953,315.63,50.443 +797954,318.42,51.376 +797955,321.03,52.269 +797956,323.48,53.127 +797957,314.33,50.348 +797958,317.13,51.326 +797959,319.74,52.262 +797960,322.19,53.161 +797961,313.03,50.253 +797962,315.84,51.276 +797963,318.45,52.254 +797964,320.9,53.194 +797965,311.73,50.159 +797966,314.54,51.225 +797967,317.16,52.246 +797968,319.6,53.227 +797969,310.43,50.066 +797970,313.25,51.176 +797971,315.87,52.238 +797972,318.31,53.258 +797973,309.13,49.973 +797974,311.96,51.126 +797975,314.57,52.229 +797976,317.01,53.29 +797977,307.84,49.882 +797978,310.67,51.077 +797979,313.28,52.221 +797980,315.71,53.32 +797981,306.55,49.791 +797982,309.38,51.027 +797983,311.99,52.212 +797984,314.41,53.349 +797985,305.26,49.7 +797986,308.09,50.979 +797987,310.69,52.202 +797988,313.11,53.378 +797989,303.97,49.611 +797990,306.8,50.93 +797991,309.4,52.193 +797992,311.8,53.406 +797993,302.69,49.523 +797994,305.51,50.882 +797995,308.1,52.183 +797996,310.49,53.433 +797997,301.41,49.435 +797998,304.23,50.834 +797999,306.81,52.173 +798000,309.19,53.459 +798001,300.13,49.349 +798002,302.94,50.787 +798003,305.51,52.162 +798004,307.88,53.484 +798005,298.85,49.263 +798006,301.66,50.739 +798007,304.21,52.152 +798008,306.56,53.508 +798009,297.58,49.179 +798010,300.37,50.693 +798011,302.91,52.141 +798012,305.25,53.531 +798013,296.3,49.095 +798014,299.09,50.646 +798015,301.62,52.129 +798016,303.94,53.553 +798017,295.03,49.013 +798018,297.81,50.6 +798019,300.32,52.117 +798020,302.62,53.574 +798021,293.77,48.932 +798022,296.52,50.554 +798023,299.02,52.105 +798024,301.3,53.594 +798025,292.5,48.852 +798026,295.24,50.509 +798027,297.72,52.093 +798028,299.98,53.612 +798029,291.24,48.773 +798030,293.96,50.464 +798031,296.42,52.08 +798032,298.66,53.63 +798033,289.97,48.696 +798034,292.68,50.42 +798035,295.12,52.066 +798036,297.34,53.647 +798037,288.72,48.62 +798038,291.4,50.375 +798039,293.82,52.053 +798040,296.01,53.662 +798041,287.46,48.545 +798042,290.12,50.332 +798043,292.51,52.039 +798044,294.68,53.676 +798045,286.21,48.471 +798046,288.85,50.289 +798047,291.21,52.024 +798048,293.36,53.689 +798049,284.95,48.399 +798050,287.57,50.246 +798051,289.91,52.009 +798052,292.03,53.7 +798053,283.7,48.328 +798054,286.29,50.204 +798055,288.6,51.994 +798056,290.7,53.711 +798057,282.46,48.259 +798058,285.02,50.162 +798059,287.3,51.978 +798060,289.36,53.72 +798061,281.21,48.191 +798062,283.74,50.12 +798063,286,51.962 +798064,288.03,53.728 +798065,279.97,48.125 +798066,282.47,50.079 +798067,284.69,51.945 +798068,286.69,53.734 +798069,278.73,48.06 +798070,281.19,50.039 +798071,283.39,51.928 +798072,285.36,53.739 +798073,277.49,47.996 +798074,279.92,49.999 +798075,282.08,51.911 +798076,284.02,53.743 +798077,276.25,47.934 +798078,278.65,49.96 +798079,280.77,51.893 +798080,282.68,53.745 +798081,275.01,47.874 +798082,277.38,49.921 +798083,279.47,51.874 +798084,281.34,53.746 +798085,273.78,47.815 +798086,276.11,49.883 +798087,278.16,51.855 +798088,280,53.746 +798089,272.55,47.758 +798090,274.84,49.845 +798091,276.85,51.836 +798092,278.65,53.744 +798093,271.32,47.703 +798094,273.57,49.807 +798095,275.54,51.816 +798096,277.31,53.741 +798097,270.09,47.649 +798098,272.3,49.771 +798099,274.24,51.796 +798100,275.96,53.736 +798101,268.87,47.597 +798102,271.03,49.734 +798103,272.93,51.775 +798104,274.62,53.73 +798105,267.64,47.546 +798106,269.76,49.699 +798107,271.62,51.753 +798108,273.27,53.722 +798109,266.42,47.497 +798110,268.49,49.664 +798111,270.31,51.731 +798112,271.92,53.713 +798113,265.2,47.45 +798114,267.23,49.629 +798115,269,51.709 +798116,270.57,53.702 +798117,263.99,47.405 +798118,265.96,49.595 +798119,267.69,51.686 +798120,269.22,53.69 +798121,262.77,47.361 +798122,264.7,49.562 +798123,266.38,51.662 +798124,267.86,53.676 +798125,261.55,47.319 +798126,263.43,49.529 +798127,265.07,51.639 +798128,266.51,53.661 +798129,260.34,47.279 +798130,262.17,49.496 +798131,263.75,51.614 +798132,265.15,53.644 +798133,259.13,47.241 +798134,260.9,49.465 +798135,262.44,51.589 +798136,263.8,53.626 +798137,257.92,47.204 +798138,259.64,49.434 +798139,261.13,51.563 +798140,262.44,53.606 +798141,256.71,47.169 +798142,258.38,49.403 +798143,259.82,51.537 +798144,261.08,53.585 +798145,255.5,47.136 +798146,257.11,49.373 +798147,258.51,51.511 +798148,259.73,53.562 +798149,254.3,47.105 +798150,255.85,49.343 +798151,257.19,51.484 +798152,258.37,53.537 +798153,253.09,47.075 +798154,254.59,49.315 +798155,255.88,51.456 +798156,257.01,53.511 +798157,251.89,47.047 +798158,253.33,49.286 +798159,254.57,51.428 +798160,255.65,53.483 +798161,250.69,47.022 +798162,252.07,49.259 +798163,253.25,51.399 +798164,254.29,53.454 +798165,249.49,46.997 +798166,250.81,49.232 +798167,251.94,51.37 +798168,252.92,53.423 +798169,248.29,46.975 +798170,249.55,49.205 +798171,250.63,51.34 +798172,251.56,53.39 +798173,247.09,46.955 +798174,248.29,49.179 +798175,249.31,51.31 +798176,250.2,53.356 +798177,245.89,46.936 +798178,247.03,49.154 +798179,248,51.279 +798180,248.83,53.321 +798181,244.69,46.919 +798182,245.77,49.129 +798183,246.68,51.247 +798184,247.47,53.283 +798185,243.5,46.904 +798186,244.51,49.105 +798187,245.37,51.215 +798188,246.1,53.245 +798189,242.3,46.89 +798190,243.25,49.082 +798191,244.06,51.183 +798192,244.74,53.204 +798193,241.1,46.879 +798194,242,49.059 +798195,242.74,51.15 +798196,243.37,53.162 +798197,239.91,46.869 +798198,240.74,49.036 +798199,241.43,51.116 +798200,242,53.118 +798201,238.72,46.861 +798202,239.48,49.014 +798203,240.11,51.082 +798204,240.64,53.073 +798205,237.52,46.854 +798206,238.22,48.993 +798207,238.8,51.048 +798208,239.27,53.027 +798209,236.33,46.85 +798210,236.97,48.972 +798211,237.48,51.013 +798212,237.9,52.978 +798213,235.14,46.847 +798214,235.71,48.952 +798215,236.17,50.977 +798216,236.53,52.928 +798217,233.95,46.846 +798218,234.45,48.933 +798219,234.85,50.941 +798220,235.16,52.877 +798221,232.76,46.846 +798222,233.2,48.914 +798223,233.54,50.904 +798224,233.79,52.824 +798225,231.57,46.848 +798226,231.94,48.895 +798227,232.22,50.867 +798228,232.43,52.769 +798229,230.37,46.852 +798230,230.68,48.878 +798231,230.91,50.829 +798232,231.06,52.713 +798233,229.18,46.857 +798234,229.43,48.86 +798235,229.59,50.791 +798236,229.69,52.656 +798237,227.99,46.865 +798238,228.17,48.844 +798239,228.28,50.752 +798240,228.32,52.597 +798241,226.8,46.873 +798242,226.92,48.827 +798243,226.96,50.713 +798244,226.95,52.536 +798245,225.61,46.883 +798246,225.66,48.812 +798247,225.65,50.673 +798248,225.58,52.474 +798249,224.42,46.895 +798250,224.4,48.796 +798251,224.33,50.633 +798252,224.21,52.411 +798253,223.23,46.909 +798254,223.15,48.782 +798255,223.02,50.593 +798256,222.84,52.346 +798257,222.04,46.924 +798258,221.89,48.768 +798259,221.7,50.552 +798260,221.47,52.279 +798261,220.85,46.94 +798262,220.64,48.754 +798263,220.39,50.51 +798264,220.1,52.212 +798265,219.65,46.958 +798266,219.38,48.741 +798267,219.07,50.468 +798268,218.73,52.142 +798269,218.46,46.977 +798270,218.13,48.728 +798271,217.76,50.426 +798272,217.36,52.072 +798273,217.27,46.998 +798274,216.87,48.716 +798275,216.44,50.383 +798276,215.99,52 +798277,216.07,47.02 +798278,215.61,48.705 +798279,215.13,50.339 +798280,214.62,51.926 +798281,214.88,47.043 +798282,214.36,48.693 +798283,213.82,50.295 +798284,213.26,51.852 +798285,213.69,47.068 +798286,213.1,48.683 +798287,212.5,50.251 +798288,211.89,51.776 +798289,212.49,47.094 +798290,211.85,48.672 +798291,211.19,50.207 +798292,210.52,51.699 +798293,211.29,47.122 +798294,210.59,48.663 +798295,209.88,50.162 +798296,209.15,51.62 +798297,210.1,47.15 +798298,209.33,48.653 +798299,208.56,50.116 +798300,207.79,51.54 +798301,208.9,47.18 +798302,208.08,48.644 +798303,207.25,50.07 +798304,206.42,51.459 +798305,207.7,47.211 +798306,206.82,48.636 +798307,205.94,50.024 +798308,205.06,51.377 +798309,206.5,47.243 +798310,205.56,48.628 +798311,204.63,49.978 +798312,203.69,51.293 +798313,205.3,47.277 +798314,204.31,48.62 +798315,203.32,49.931 +798316,202.33,51.209 +798317,204.1,47.311 +798318,203.05,48.613 +798319,202,49.883 +798320,200.96,51.123 +798321,202.9,47.346 +798322,201.79,48.606 +798323,200.69,49.836 +798324,199.6,51.036 +798325,201.69,47.383 +798326,200.53,48.599 +798327,199.38,49.788 +798328,198.24,50.948 +798329,200.49,47.42 +798330,199.28,48.593 +798331,198.07,49.739 +798332,196.87,50.859 +798333,199.28,47.459 +798334,198.02,48.587 +798335,196.76,49.691 +798336,195.51,50.769 +798337,198.08,47.498 +798338,196.76,48.582 +798339,195.45,49.642 +798340,194.15,50.678 +798341,196.87,47.538 +798342,195.5,48.576 +798343,194.14,49.593 +798344,192.79,50.586 +798345,195.66,47.579 +798346,194.24,48.571 +798347,192.84,49.543 +798348,191.43,50.493 +798349,194.45,47.621 +798350,192.98,48.567 +798351,191.53,49.493 +798352,190.08,50.399 +798353,193.23,47.663 +798354,191.72,48.563 +798355,190.22,49.443 +798356,188.72,50.304 +798357,192.02,47.707 +798358,190.46,48.559 +798359,188.91,49.393 +798360,187.36,50.209 +798361,190.8,47.751 +798362,189.2,48.555 +798363,187.6,49.342 +798364,186.01,50.112 +798365,189.59,47.795 +798366,187.94,48.551 +798367,186.3,49.292 +798368,184.66,50.015 +798369,188.37,47.84 +798370,186.68,48.548 +798371,184.99,49.241 +798372,183.3,49.917 +798373,187.15,47.886 +798374,185.42,48.545 +798375,183.69,49.19 +798376,181.95,49.819 +798377,185.93,47.933 +798378,184.16,48.542 +798379,182.38,49.138 +798380,180.6,49.719 +798381,184.7,47.98 +798382,182.89,48.54 +798383,181.08,49.087 +798384,179.25,49.619 +798385,183.48,48.027 +798386,181.63,48.537 +798387,179.77,49.035 +798388,177.91,49.518 +798389,182.25,48.075 +798390,180.37,48.535 +798391,178.47,48.983 +798392,176.56,49.417 +798393,181.02,48.123 +798394,179.1,48.533 +798395,177.17,48.931 +798396,175.21,49.315 +798397,179.79,48.171 +798398,177.84,48.531 +798399,175.87,48.879 +798400,173.87,49.213 +798401,178.56,48.22 +798402,176.57,48.529 +798403,174.56,48.827 +798404,172.53,49.11 +798405,177.33,48.269 +798406,175.31,48.528 +798407,173.26,48.774 +798408,171.19,49.007 +798409,176.09,48.318 +798410,174.04,48.526 +798411,171.96,48.722 +798412,169.85,48.903 +798413,174.86,48.368 +798414,172.78,48.525 +798415,170.66,48.669 +798416,168.51,48.799 +798417,173.62,48.417 +798418,171.51,48.524 +798419,169.36,48.617 +798420,167.17,48.695 +798421,172.38,48.467 +798422,170.24,48.522 +798423,168.07,48.564 +798424,165.84,48.591 +798425,171.14,48.517 +798426,168.98,48.521 +798427,166.77,48.511 +798428,164.51,48.486 +798429,169.89,48.567 +798430,167.71,48.52 +798431,165.47,48.459 +798432,163.18,48.381 +798433,168.65,48.617 +798434,166.44,48.519 +798435,164.17,48.406 +798436,161.85,48.276 +798437,167.4,48.666 +798438,165.17,48.518 +798439,162.88,48.353 +798440,160.52,48.17 +798441,166.15,48.716 +798442,163.9,48.517 +798443,161.58,48.301 +798444,159.19,48.065 +798445,164.9,48.766 +798446,162.63,48.516 +798447,160.29,48.248 +798448,157.87,47.96 +798449,163.64,48.815 +798450,161.36,48.515 +798451,159,48.196 +798452,156.54,47.854 +798453,162.39,48.864 +798454,160.09,48.514 +798455,157.7,48.143 +798456,155.22,47.749 +798457,161.13,48.913 +798458,158.82,48.513 +798459,156.41,48.091 +798460,153.9,47.644 +798461,159.87,48.962 +798462,157.54,48.512 +798463,155.12,48.038 +798464,152.59,47.538 +798465,158.61,49.01 +798466,156.27,48.511 +798467,153.83,47.986 +798468,151.27,47.433 +798469,157.35,49.058 +798470,155,48.509 +798471,152.54,47.934 +798472,149.96,47.329 +798473,156.08,49.106 +798474,153.72,48.508 +798475,151.25,47.882 +798476,148.65,47.224 +798477,154.82,49.153 +798478,152.45,48.506 +798479,149.96,47.83 +798480,147.34,47.12 +798481,153.55,49.2 +798482,151.17,48.505 +798483,148.67,47.778 +798484,146.03,47.016 +798485,152.28,49.246 +798486,149.9,48.503 +798487,147.38,47.727 +798488,144.72,46.913 +798489,151.01,49.292 +798490,148.62,48.501 +798491,146.1,47.675 +798492,143.42,46.81 +798493,149.73,49.337 +798494,147.34,48.499 +798495,144.81,47.624 +798496,142.12,46.707 +798497,148.46,49.381 +798498,146.06,48.497 +798499,143.53,47.573 +798500,140.82,46.605 +798501,147.18,49.425 +798502,144.79,48.495 +798503,142.24,47.522 +798504,139.52,46.504 +798505,145.9,49.469 +798506,143.51,48.492 +798507,140.96,47.472 +798508,138.23,46.403 +798509,144.62,49.511 +798510,142.23,48.489 +798511,139.68,47.422 +798512,136.94,46.303 +798513,143.34,49.553 +798514,140.95,48.486 +798515,138.4,47.372 +798516,135.65,46.203 +798517,142.05,49.594 +798518,139.67,48.483 +798519,137.11,47.322 +798520,134.36,46.104 +798521,140.76,49.634 +798522,138.39,48.48 +798523,135.83,47.273 +798524,133.07,46.006 +798525,139.48,49.674 +798526,137.1,48.476 +798527,134.55,47.224 +798528,131.79,45.909 +798529,138.18,49.712 +798530,135.82,48.472 +798531,133.28,47.175 +798532,130.51,45.813 +798533,136.89,49.75 +798534,134.54,48.468 +798535,132,47.127 +798536,129.23,45.717 +798537,135.6,49.787 +798538,133.26,48.463 +798539,130.72,47.078 +798540,127.95,45.623 +798541,134.3,49.822 +798542,131.97,48.459 +798543,129.44,47.031 +798544,126.68,45.529 +798545,133.01,49.857 +798546,130.69,48.454 +798547,128.17,46.983 +798548,125.41,45.437 +798549,131.71,49.891 +798550,129.4,48.448 +798551,126.89,46.936 +798552,124.14,45.345 +798553,130.41,49.924 +798554,128.12,48.442 +798555,125.62,46.89 +798556,122.87,45.255 +798557,129.1,49.955 +798558,126.83,48.436 +798559,124.35,46.844 +798560,121.6,45.166 +798561,127.8,49.986 +798562,125.54,48.43 +798563,123.07,46.798 +798564,120.34,45.078 +798565,126.49,50.015 +798566,124.26,48.423 +798567,121.8,46.753 +798568,119.08,44.991 +798569,125.19,50.043 +798570,122.97,48.416 +798571,120.53,46.708 +798572,117.82,44.906 +798573,123.88,50.07 +798574,121.68,48.408 +798575,119.26,46.663 +798576,116.57,44.822 +798577,122.57,50.096 +798578,120.39,48.401 +798579,117.99,46.619 +798580,115.31,44.739 +798581,121.25,50.121 +798582,119.1,48.392 +798583,116.72,46.576 +798584,114.06,44.658 +798585,119.94,50.144 +798586,117.81,48.384 +798587,115.46,46.533 +798588,112.81,44.578 +798589,118.63,50.166 +798590,116.52,48.374 +798591,114.19,46.49 +798592,111.57,44.499 +798593,117.31,50.187 +798594,115.23,48.365 +798595,112.92,46.449 +798596,110.32,44.422 +798597,115.99,50.207 +798598,113.94,48.355 +798599,111.66,46.407 +798600,109.08,44.346 +798601,114.67,50.225 +798602,112.65,48.344 +798603,110.39,46.366 +798604,107.84,44.272 +798605,113.35,50.241 +798606,111.35,48.334 +798607,109.13,46.326 +798608,106.6,44.2 +798609,112.03,50.257 +798610,110.06,48.322 +798611,107.86,46.286 +798612,105.37,44.129 +798613,110.7,50.271 +798614,108.77,48.311 +798615,106.6,46.246 +798616,104.13,44.06 +798617,109.38,50.283 +798618,107.48,48.298 +798619,105.34,46.208 +798620,102.9,43.992 +798621,108.05,50.294 +798622,106.18,48.286 +798623,104.08,46.17 +798624,101.67,43.927 +798625,106.72,50.304 +798626,104.89,48.272 +798627,102.82,46.132 +798628,100.45,43.863 +798629,105.4,50.312 +798630,103.59,48.259 +798631,101.56,46.095 +798632,99.223,43.8 +798633,104.06,50.319 +798634,102.3,48.245 +798635,100.3,46.059 +798636,98,43.74 +798637,102.73,50.324 +798638,101,48.23 +798639,99.04,46.023 +798640,96.78,43.681 +798641,101.4,50.327 +798642,99.704,48.215 +798643,97.782,45.987 +798644,95.562,43.624 +798645,100.07,50.329 +798646,98.408,48.199 +798647,96.524,45.953 +798648,94.345,43.569 +798649,98.732,50.33 +798650,97.111,48.183 +798651,95.268,45.919 +798652,93.131,43.516 +798653,97.396,50.328 +798654,95.814,48.166 +798655,94.011,45.886 +798656,91.919,43.465 +798657,96.058,50.326 +798658,94.516,48.149 +798659,92.756,45.853 +798660,90.708,43.416 +798661,94.72,50.321 +798662,93.218,48.131 +798663,91.501,45.821 +798664,89.499,43.368 +798665,93.381,50.315 +798666,91.92,48.113 +798667,90.246,45.789 +798668,88.292,43.323 +798669,92.041,50.308 +798670,90.621,48.094 +798671,88.992,45.759 +798672,87.087,43.279 +798673,90.7,50.299 +798674,89.322,48.074 +798675,87.739,45.728 +798676,85.883,43.238 +798677,89.357,50.288 +798678,88.023,48.055 +798679,86.486,45.699 +798680,84.681,43.198 +798681,88.014,50.275 +798682,86.724,48.034 +798683,85.234,45.67 +798684,83.481,43.161 +798685,86.671,50.261 +798686,85.424,48.013 +798687,83.982,45.642 +798688,82.282,43.125 +798689,85.326,50.246 +798690,84.124,47.991 +798691,82.731,45.614 +798692,81.085,43.092 +798693,83.98,50.228 +798694,82.824,47.969 +798695,81.48,45.588 +798696,79.889,43.06 +798697,82.634,50.209 +798698,81.523,47.947 +798699,80.23,45.561 +798700,78.695,43.031 +798701,81.287,50.188 +798702,80.223,47.923 +798703,78.98,45.536 +798704,77.502,43.003 +798705,79.94,50.166 +798706,78.922,47.9 +798707,77.73,45.511 +798708,76.31,42.978 +798709,78.591,50.141 +798710,77.621,47.875 +798711,76.481,45.487 +798712,75.119,42.955 +798713,77.242,50.116 +798714,76.319,47.85 +798715,75.233,45.464 +798716,73.93,42.934 +798717,75.893,50.088 +798718,75.018,47.825 +798719,73.984,45.441 +798720,72.741,42.914 +798721,74.542,50.059 +798722,73.716,47.799 +798723,72.736,45.419 +798724,71.554,42.897 +798725,73.192,50.028 +798726,72.415,47.772 +798727,71.489,45.397 +798728,70.368,42.882 +798729,71.841,49.995 +798730,71.113,47.745 +798731,70.241,45.377 +798732,69.182,42.869 +798733,70.489,49.961 +798734,69.811,47.717 +798735,68.995,45.356 +798736,67.998,42.858 +798737,69.137,49.925 +798738,68.509,47.689 +798739,67.748,45.337 +798740,66.814,42.849 +798741,67.784,49.887 +798742,67.207,47.66 +798743,66.502,45.318 +798744,65.631,42.842 +798745,66.431,49.847 +798746,65.904,47.631 +798747,65.256,45.3 +798748,64.448,42.838 +798749,65.078,49.806 +798750,64.602,47.601 +798751,64.01,45.283 +798752,63.267,42.835 +798753,63.725,49.763 +798754,63.3,47.57 +798755,62.764,45.266 +798756,62.085,42.834 +798757,62.371,49.719 +798758,61.997,47.539 +798759,61.519,45.25 +798760,60.905,42.835 +798761,61.017,49.673 +798762,60.695,47.507 +798763,60.274,45.235 +798764,59.724,42.838 +798765,59.663,49.625 +798766,59.393,47.475 +798767,59.029,45.22 +798768,58.544,42.843 +798769,58.309,49.576 +798770,58.09,47.443 +798771,57.784,45.206 +798772,57.364,42.85 +798773,56.954,49.525 +798774,56.788,47.409 +798775,56.539,45.192 +798776,56.185,42.859 +798777,55.6,49.472 +798778,55.485,47.376 +798779,55.295,45.18 +798780,55.005,42.869 +798781,54.245,49.417 +798782,54.183,47.341 +798783,54.05,45.167 +798784,53.826,42.882 +798785,52.89,49.362 +798786,52.881,47.306 +798787,52.806,45.156 +798788,52.647,42.896 +798789,51.536,49.304 +798790,51.579,47.271 +798791,51.562,45.145 +798792,51.467,42.913 +798793,50.181,49.245 +798794,50.277,47.235 +798795,50.317,45.135 +798796,50.288,42.931 +798797,48.827,49.184 +798798,48.975,47.199 +798799,49.073,45.125 +798800,49.108,42.951 +798801,47.472,49.122 +798802,47.673,47.162 +798803,47.829,45.116 +798804,47.928,42.972 +798805,46.118,49.058 +798806,46.372,47.125 +798807,46.585,45.108 +798808,46.748,42.996 +798809,44.764,48.993 +798810,45.07,47.087 +798811,45.341,45.1 +798812,45.567,43.021 +798813,43.41,48.926 +798814,43.769,47.049 +798815,44.097,45.092 +798816,44.386,43.048 +798817,42.057,48.857 +798818,42.468,47.01 +798819,42.852,45.086 +798820,43.205,43.076 +798821,40.704,48.787 +798822,41.167,46.971 +798823,41.608,45.08 +798824,42.022,43.106 +798825,39.351,48.716 +798826,39.866,46.931 +798827,40.364,45.074 +798828,40.84,43.138 +798829,37.998,48.643 +798830,38.565,46.891 +798831,39.119,45.069 +798832,39.656,43.171 +798833,36.646,48.569 +798834,37.265,46.85 +798835,37.875,45.065 +798836,38.472,43.206 +798837,35.295,48.494 +798838,35.965,46.809 +798839,36.63,45.061 +798840,37.287,43.242 +798841,33.944,48.417 +798842,34.665,46.768 +798843,35.385,45.057 +798844,36.102,43.28 +798845,32.593,48.338 +798846,33.366,46.726 +798847,34.14,45.054 +798848,34.915,43.319 +798849,31.243,48.259 +798850,32.067,46.683 +798851,32.895,45.052 +798852,33.728,43.36 +798853,29.894,48.178 +798854,30.768,46.641 +798855,31.65,45.05 +798856,32.539,43.401 +798857,28.545,48.095 +798858,29.469,46.598 +798859,30.404,45.049 +798860,31.35,43.445 +798861,27.197,48.012 +798862,28.171,46.554 +798863,29.158,45.048 +798864,30.159,43.489 +798865,25.849,47.927 +798866,26.873,46.51 +798867,27.912,45.047 +798868,28.967,43.535 +798869,24.502,47.841 +798870,25.576,46.466 +798871,26.666,45.047 +798872,27.774,43.582 +798873,23.156,47.754 +798874,24.279,46.422 +798875,25.419,45.048 +798876,26.58,43.63 +798877,21.811,47.665 +798878,22.982,46.377 +798879,24.173,45.049 +798880,25.385,43.679 +798881,20.467,47.576 +798882,21.686,46.331 +798883,22.925,45.05 +798884,24.188,43.729 +798885,19.123,47.485 +798886,20.39,46.286 +798887,21.678,45.051 +798888,22.99,43.781 +798889,17.781,47.393 +798890,19.094,46.24 +798891,20.43,45.053 +798892,21.791,43.833 +798893,16.439,47.301 +798894,17.799,46.194 +798895,19.182,45.056 +798896,20.59,43.886 +798897,15.099,47.207 +798898,16.505,46.147 +798899,17.934,45.059 +798900,19.387,43.94 +798901,13.759,47.112 +798902,15.211,46.101 +798903,16.685,45.062 +798904,18.184,43.996 +798905,12.421,47.017 +798906,13.917,46.054 +798907,15.436,45.065 +798908,16.978,44.051 +798909,11.083,46.92 +798910,12.624,46.007 +798911,14.186,45.069 +798912,15.771,44.108 +798913,9.7467,46.822 +798914,11.331,45.959 +798915,12.936,45.073 +798916,14.563,44.166 +798917,8.4116,46.724 +798918,10.039,45.911 +798919,11.686,45.078 +798920,13.353,44.224 +798921,7.0776,46.625 +798922,8.7476,45.864 +798923,10.435,45.083 +798924,12.141,44.283 +798925,5.7449,46.525 +798926,7.4566,45.816 +798927,9.1837,45.088 +798928,10.928,44.342 +798929,4.4134,46.424 +798930,6.1661,45.767 +798931,7.9321,45.093 +798932,9.7126,44.402 +798933,3.0832,46.323 +798934,4.8762,45.719 +798935,6.68,45.098 +798936,8.4958,44.463 +798937,1.7544,46.221 +798938,3.5868,45.67 +798939,5.4274,45.104 +798940,7.2772,44.524 +798941,0.42693,46.118 +798942,2.298,45.622 +798943,4.1744,45.11 +798944,6.0569,44.585 +798945,359.1,46.015 +798946,1.0098,45.573 +798947,2.9208,45.116 +798948,4.8348,44.647 +798949,357.78,45.911 +798950,359.72,45.524 +798951,1.6668,45.123 +798952,3.6109,44.709 +798953,356.45,45.807 +798954,358.44,45.475 +798955,0.41235,45.129 +798956,2.3852,44.772 +798957,355.13,45.702 +798958,357.15,45.426 +798959,359.16,45.136 +798960,1.1577,44.835 +798961,353.81,45.597 +798962,355.86,45.376 +798963,357.9,45.143 +798964,359.93,44.898 +798965,352.49,45.491 +798966,354.58,45.327 +798967,356.65,45.15 +798968,358.7,44.961 +798969,351.18,45.385 +798970,353.29,45.278 +798971,355.39,45.157 +798972,357.46,45.025 +798973,349.86,45.279 +798974,352.01,45.228 +798975,354.13,45.164 +798976,356.23,45.088 +798977,348.55,45.173 +798978,350.73,45.179 +798979,352.87,45.172 +798980,354.99,45.152 +798981,347.23,45.066 +798982,349.44,45.13 +798983,351.62,45.179 +798984,353.75,45.215 +798985,345.92,44.959 +798986,348.16,45.08 +798987,350.36,45.186 +798988,352.51,45.279 +798989,344.62,44.852 +798990,346.88,45.031 +798991,349.1,45.194 +798992,351.27,45.342 +798993,343.31,44.745 +798994,345.6,44.982 +798995,347.84,45.202 +798996,350.03,45.406 +798997,342,44.638 +798998,344.32,44.933 +798999,346.58,45.209 +799000,348.78,45.469 +799001,340.7,44.53 +799002,343.04,44.883 +799003,345.32,45.217 +799004,347.53,45.532 +799005,339.4,44.423 +799006,341.76,44.834 +799007,344.06,45.224 +799008,346.28,45.595 +799009,338.1,44.316 +799010,340.49,44.785 +799011,342.79,45.232 +799012,345.03,45.657 +799013,336.8,44.209 +799014,339.21,44.737 +799015,341.53,45.239 +799016,343.78,45.72 +799017,335.51,44.103 +799018,337.93,44.688 +799019,340.27,45.247 +799020,342.52,45.781 +799021,334.21,43.996 +799022,336.66,44.639 +799023,339,45.254 +799024,341.26,45.843 +799025,332.92,43.89 +799026,335.38,44.591 +799027,337.74,45.262 +799028,340,45.904 +799029,331.63,43.784 +799030,334.11,44.543 +799031,336.48,45.269 +799032,338.74,45.964 +799033,330.34,43.678 +799034,332.84,44.495 +799035,335.21,45.276 +799036,337.48,46.024 +799037,329.06,43.573 +799038,331.56,44.447 +799039,333.94,45.283 +799040,336.21,46.084 +799041,327.78,43.469 +799042,330.29,44.4 +799043,332.68,45.29 +799044,334.94,46.143 +799045,326.49,43.364 +799046,329.02,44.352 +799047,331.41,45.297 +799048,333.68,46.201 +799049,325.22,43.261 +799050,327.75,44.305 +799051,330.14,45.303 +799052,332.4,46.259 +799053,323.94,43.158 +799054,326.48,44.259 +799055,328.87,45.309 +799056,331.13,46.316 +799057,322.66,43.056 +799058,325.21,44.212 +799059,327.6,45.316 +799060,329.86,46.372 +799061,321.39,42.954 +799062,323.95,44.166 +799063,326.33,45.322 +799064,328.58,46.427 +799065,320.12,42.853 +799066,322.68,44.12 +799067,325.06,45.327 +799068,327.3,46.482 +799069,318.85,42.753 +799070,321.41,44.075 +799071,323.79,45.333 +799072,326.02,46.535 +799073,317.59,42.654 +799074,320.15,44.029 +799075,322.52,45.338 +799076,324.74,46.588 +799077,316.32,42.556 +799078,318.88,43.985 +799079,321.25,45.343 +799080,323.46,46.64 +799081,315.06,42.458 +799082,317.62,43.94 +799083,319.98,45.348 +799084,322.17,46.691 +799085,313.8,42.362 +799086,316.36,43.896 +799087,318.71,45.353 +799088,320.89,46.741 +799089,312.54,42.266 +799090,315.09,43.852 +799091,317.43,45.357 +799092,319.6,46.79 +799093,311.29,42.172 +799094,313.83,43.809 +799095,316.16,45.361 +799096,318.31,46.838 +799097,310.04,42.079 +799098,312.57,43.766 +799099,314.88,45.365 +799100,317.02,46.885 +799101,308.79,41.987 +799102,311.31,43.724 +799103,313.61,45.368 +799104,315.72,46.931 +799105,307.54,41.896 +799106,310.05,43.682 +799107,312.33,45.371 +799108,314.43,46.975 +799109,306.29,41.807 +799110,308.79,43.641 +799111,311.06,45.374 +799112,313.13,47.019 +799113,305.05,41.719 +799114,307.54,43.6 +799115,309.78,45.376 +799116,311.83,47.061 +799117,303.81,41.632 +799118,306.28,43.559 +799119,308.5,45.378 +799120,310.53,47.102 +799121,302.57,41.546 +799122,305.02,43.519 +799123,307.23,45.379 +799124,309.23,47.142 +799125,301.33,41.462 +799126,303.77,43.48 +799127,305.95,45.38 +799128,307.93,47.181 +799129,300.09,41.38 +799130,302.51,43.441 +799131,304.67,45.381 +799132,306.62,47.218 +799133,298.86,41.299 +799134,301.26,43.403 +799135,303.39,45.382 +799136,305.32,47.254 +799137,297.63,41.219 +799138,300,43.365 +799139,302.11,45.381 +799140,304.01,47.289 +799141,296.4,41.141 +799142,298.75,43.328 +799143,300.83,45.381 +799144,302.7,47.322 +799145,295.18,41.065 +799146,297.5,43.291 +799147,299.55,45.38 +799148,301.39,47.354 +799149,293.95,40.991 +799150,296.25,43.255 +799151,298.27,45.379 +799152,300.08,47.384 +799153,292.73,40.918 +799154,295,43.22 +799155,296.99,45.377 +799156,298.77,47.413 +799157,291.51,40.847 +799158,293.75,43.185 +799159,295.7,45.375 +799160,297.46,47.441 +799161,290.3,40.778 +799162,292.5,43.151 +799163,294.42,45.372 +799164,296.14,47.467 +799165,289.08,40.71 +799166,291.25,43.117 +799167,293.14,45.369 +799168,294.82,47.491 +799169,287.87,40.645 +799170,290,43.084 +799171,291.86,45.365 +799172,293.51,47.514 +799173,286.66,40.581 +799174,288.75,43.052 +799175,290.57,45.361 +799176,292.19,47.536 +799177,285.45,40.519 +799178,287.51,43.02 +799179,289.29,45.356 +799180,290.87,47.555 +799181,284.24,40.46 +799182,286.26,42.989 +799183,288,45.351 +799184,289.55,47.574 +799185,283.03,40.402 +799186,285.01,42.959 +799187,286.72,45.345 +799188,288.22,47.59 +799189,281.83,40.346 +799190,283.77,42.929 +799191,285.44,45.339 +799192,286.9,47.606 +799193,280.63,40.292 +799194,282.52,42.9 +799195,284.15,45.332 +799196,285.58,47.619 +799197,279.43,40.241 +799198,281.28,42.872 +799199,282.86,45.325 +799200,284.25,47.631 +799201,278.23,40.191 +799202,280.04,42.845 +799203,281.58,45.317 +799204,282.93,47.641 +799205,277.03,40.144 +799206,278.79,42.818 +799207,280.29,45.309 +799208,281.6,47.65 +799209,275.84,40.098 +799210,277.55,42.792 +799211,279.01,45.3 +799212,280.27,47.656 +799213,274.65,40.055 +799214,276.31,42.766 +799215,277.72,45.291 +799216,278.94,47.662 +799217,273.45,40.014 +799218,275.07,42.742 +799219,276.43,45.281 +799220,277.61,47.665 +799221,272.26,39.976 +799222,273.83,42.718 +799223,275.14,45.27 +799224,276.28,47.667 +799225,271.08,39.939 +799226,272.59,42.695 +799227,273.86,45.259 +799228,274.95,47.667 +799229,269.89,39.905 +799230,271.35,42.672 +799231,272.57,45.247 +799232,273.62,47.665 +799233,268.7,39.873 +799234,270.11,42.651 +799235,271.28,45.235 +799236,272.29,47.661 +799237,267.52,39.843 +799238,268.87,42.63 +799239,269.99,45.222 +799240,270.95,47.656 +799241,266.33,39.815 +799242,267.63,42.609 +799243,268.7,45.209 +799244,269.62,47.649 +799245,265.15,39.79 +799246,266.39,42.59 +799247,267.41,45.195 +799248,268.29,47.641 +799249,263.97,39.767 +799250,265.15,42.571 +799251,266.13,45.18 +799252,266.95,47.63 +799253,262.79,39.746 +799254,263.91,42.553 +799255,264.84,45.165 +799256,265.62,47.618 +799257,261.61,39.728 +799258,262.68,42.536 +799259,263.55,45.15 +799260,264.28,47.604 +799261,260.43,39.712 +799262,261.44,42.52 +799263,262.26,45.133 +799264,262.94,47.588 +799265,259.26,39.698 +799266,260.2,42.504 +799267,260.97,45.117 +799268,261.61,47.57 +799269,258.08,39.686 +799270,258.97,42.489 +799271,259.68,45.099 +799272,260.27,47.551 +799273,256.91,39.677 +799274,257.73,42.475 +799275,258.39,45.081 +799276,258.93,47.53 +799277,255.73,39.67 +799278,256.49,42.462 +799279,257.1,45.063 +799280,257.59,47.507 +799281,254.56,39.666 +799282,255.26,42.449 +799283,255.81,45.044 +799284,256.25,47.482 +799285,253.38,39.663 +799286,254.02,42.438 +799287,254.52,45.024 +799288,254.92,47.456 +799289,252.21,39.663 +799290,252.79,42.427 +799291,253.23,45.004 +799292,253.58,47.427 +799293,251.04,39.665 +799294,251.55,42.416 +799295,251.94,44.983 +799296,252.24,47.397 +799297,249.87,39.67 +799298,250.32,42.407 +799299,250.65,44.961 +799300,250.9,47.365 +799301,248.69,39.676 +799302,249.08,42.398 +799303,249.36,44.939 +799304,249.56,47.332 +799305,247.52,39.685 +799306,247.85,42.39 +799307,248.07,44.917 +799308,248.22,47.296 +799309,246.35,39.697 +799310,246.61,42.383 +799311,246.78,44.894 +799312,246.88,47.259 +799313,245.18,39.71 +799314,245.38,42.376 +799315,245.49,44.87 +799316,245.54,47.221 +799317,244.01,39.725 +799318,244.14,42.37 +799319,244.2,44.846 +799320,244.2,47.18 +799321,242.83,39.743 +799322,242.91,42.365 +799323,242.91,44.821 +799324,242.86,47.138 +799325,241.66,39.763 +799326,241.68,42.361 +799327,241.62,44.796 +799328,241.52,47.094 +799329,240.49,39.785 +799330,240.44,42.357 +799331,240.33,44.77 +799332,240.19,47.048 +799333,239.32,39.809 +799334,239.21,42.354 +799335,239.04,44.743 +799336,238.85,47 +799337,238.15,39.835 +799338,237.97,42.352 +799339,237.76,44.716 +799340,237.51,46.951 +799341,236.97,39.863 +799342,236.74,42.351 +799343,236.47,44.689 +799344,236.17,46.901 +799345,235.8,39.893 +799346,235.5,42.35 +799347,235.18,44.661 +799348,234.83,46.848 +799349,234.63,39.925 +799350,234.27,42.35 +799351,233.89,44.632 +799352,233.49,46.794 +799353,233.45,39.959 +799354,233.03,42.35 +799355,232.6,44.603 +799356,232.16,46.738 +799357,232.28,39.995 +799358,231.8,42.352 +799359,231.31,44.574 +799360,230.82,46.681 +799361,231.1,40.033 +799362,230.56,42.354 +799363,230.02,44.544 +799364,229.48,46.622 +799365,229.92,40.073 +799366,229.33,42.356 +799367,228.74,44.513 +799368,228.15,46.561 +799369,228.75,40.115 +799370,228.09,42.359 +799371,227.45,44.482 +799372,226.81,46.499 +799373,227.57,40.158 +799374,226.86,42.363 +799375,226.16,44.45 +799376,225.48,46.436 +799377,226.39,40.203 +799378,225.62,42.368 +799379,224.87,44.419 +799380,224.14,46.37 +799381,225.21,40.25 +799382,224.39,42.373 +799383,223.59,44.386 +799384,222.81,46.304 +799385,224.03,40.299 +799386,223.15,42.379 +799387,222.3,44.353 +799388,221.47,46.235 +799389,222.85,40.349 +799390,221.92,42.385 +799391,221.02,44.32 +799392,220.14,46.166 +799393,221.66,40.401 +799394,220.68,42.392 +799395,219.73,44.286 +799396,218.81,46.095 +799397,220.48,40.454 +799398,219.44,42.4 +799399,218.44,44.252 +799400,217.48,46.022 +799401,219.29,40.509 +799402,218.21,42.408 +799403,217.16,44.217 +799404,216.15,45.948 +799405,218.1,40.566 +799406,216.97,42.416 +799407,215.87,44.182 +799408,214.82,45.873 +799409,216.92,40.624 +799410,215.73,42.425 +799411,214.59,44.147 +799412,213.49,45.796 +799413,215.73,40.683 +799414,214.49,42.435 +799415,213.31,44.111 +799416,212.16,45.718 +799417,214.53,40.744 +799418,213.25,42.445 +799419,212.02,44.075 +799420,210.83,45.639 +799421,213.34,40.805 +799422,212.02,42.456 +799423,210.74,44.038 +799424,209.51,45.558 +799425,212.15,40.869 +799426,210.78,42.467 +799427,209.46,44.002 +799428,208.18,45.477 +799429,210.95,40.933 +799430,209.54,42.479 +799431,208.17,43.964 +799432,206.86,45.394 +799433,209.75,40.999 +799434,208.3,42.491 +799435,206.89,43.927 +799436,205.54,45.309 +799437,208.56,41.065 +799438,207.06,42.504 +799439,205.61,43.889 +799440,204.21,45.224 +799441,207.36,41.133 +799442,205.82,42.517 +799443,204.33,43.851 +799444,202.89,45.138 +799445,206.15,41.202 +799446,204.57,42.531 +799447,203.05,43.812 +799448,201.57,45.05 +799449,204.95,41.272 +799450,203.33,42.545 +799451,201.77,43.774 +799452,200.26,44.961 +799453,203.74,41.343 +799454,202.09,42.559 +799455,200.49,43.735 +799456,198.94,44.872 +799457,202.54,41.415 +799458,200.85,42.574 +799459,199.21,43.695 +799460,197.62,44.781 +799461,201.33,41.487 +799462,199.61,42.589 +799463,197.93,43.656 +799464,196.31,44.689 +799465,200.12,41.561 +799466,198.36,42.604 +799467,196.66,43.616 +799468,194.99,44.597 +799469,198.9,41.635 +799470,197.12,42.62 +799471,195.38,43.576 +799472,193.68,44.503 +799473,197.69,41.71 +799474,195.87,42.636 +799475,194.1,43.536 +799476,192.37,44.409 +799477,196.47,41.785 +799478,194.63,42.653 +799479,192.83,43.496 +799480,191.06,44.314 +799481,195.25,41.861 +799482,193.38,42.67 +799483,191.55,43.455 +799484,189.75,44.218 +799485,194.03,41.938 +799486,192.14,42.687 +799487,190.28,43.414 +799488,188.45,44.122 +799489,192.81,42.015 +799490,190.89,42.704 +799491,189,43.374 +799492,187.14,44.024 +799493,191.59,42.093 +799494,189.64,42.721 +799495,187.73,43.333 +799496,185.84,43.926 +799497,190.36,42.171 +799498,188.4,42.739 +799499,186.46,43.292 +799500,184.54,43.828 +799501,189.14,42.249 +799502,187.15,42.757 +799503,185.18,43.251 +799504,183.24,43.729 +799505,187.91,42.328 +799506,185.9,42.776 +799507,183.91,43.209 +799508,181.94,43.629 +799509,186.67,42.407 +799510,184.65,42.794 +799511,182.64,43.168 +799512,180.64,43.529 +799513,185.44,42.487 +799514,183.4,42.813 +799515,181.37,43.127 +799516,179.35,43.428 +799517,184.21,42.566 +799518,182.15,42.831 +799519,180.1,43.085 +799520,178.05,43.327 +799521,182.97,42.646 +799522,180.9,42.85 +799523,178.83,43.044 +799524,176.76,43.225 +799525,181.73,42.726 +799526,179.65,42.869 +799527,177.56,43.002 +799528,175.47,43.124 +799529,180.49,42.805 +799530,178.39,42.889 +799531,176.29,42.961 +799532,174.18,43.022 +799533,179.24,42.885 +799534,177.14,42.908 +799535,175.03,42.919 +799536,172.9,42.919 +799537,178,42.965 +799538,175.89,42.927 +799539,173.76,42.878 +799540,171.61,42.817 +799541,176.75,43.045 +799542,174.63,42.947 +799543,172.49,42.837 +799544,170.33,42.714 +799545,175.5,43.124 +799546,173.38,42.966 +799547,171.23,42.795 +799548,169.05,42.611 +799549,174.25,43.204 +799550,172.12,42.986 +799551,169.96,42.754 +799552,167.77,42.509 +799553,173,43.283 +799554,170.87,43.005 +799555,168.7,42.713 +799556,166.49,42.406 +799557,171.75,43.362 +799558,169.61,43.025 +799559,167.44,42.672 +799560,165.21,42.303 +799561,170.49,43.44 +799562,168.36,43.044 +799563,166.17,42.631 +799564,163.94,42.2 +799565,169.23,43.518 +799566,167.1,43.064 +799567,164.91,42.591 +799568,162.67,42.098 +799569,167.97,43.596 +799570,165.84,43.083 +799571,163.65,42.55 +799572,161.4,41.995 +799573,166.71,43.674 +799574,164.58,43.103 +799575,162.39,42.51 +799576,160.13,41.893 +799577,165.44,43.75 +799578,163.32,43.122 +799579,161.13,42.47 +799580,158.87,41.791 +799581,164.18,43.827 +799582,162.06,43.142 +799583,159.87,42.43 +799584,157.6,41.69 +799585,162.91,43.903 +799586,160.8,43.161 +799587,158.61,42.39 +799588,156.34,41.589 +799589,161.64,43.978 +799590,159.54,43.18 +799591,157.36,42.351 +799592,155.08,41.488 +799593,160.37,44.053 +799594,158.28,43.199 +799595,156.1,42.311 +799596,153.82,41.388 +799597,159.09,44.126 +799598,157.02,43.218 +799599,154.84,42.273 +799600,152.57,41.288 +799601,157.82,44.2 +799602,155.75,43.236 +799603,153.59,42.234 +799604,151.32,41.189 +799605,156.54,44.272 +799606,154.49,43.255 +799607,152.33,42.196 +799608,150.06,41.091 +799609,155.26,44.344 +799610,153.22,43.273 +799611,151.08,42.158 +799612,148.82,40.993 +799613,153.98,44.414 +799614,151.96,43.291 +799615,149.83,42.12 +799616,147.57,40.896 +799617,152.7,44.484 +799618,150.69,43.309 +799619,148.57,42.083 +799620,146.32,40.8 +799621,151.42,44.553 +799622,149.43,43.327 +799623,147.32,42.046 +799624,145.08,40.704 +799625,150.13,44.622 +799626,148.16,43.344 +799627,146.07,42.009 +799628,143.84,40.61 +799629,148.85,44.689 +799630,146.9,43.361 +799631,144.82,41.973 +799632,142.6,40.516 +799633,147.56,44.755 +799634,145.63,43.378 +799635,143.57,41.937 +799636,141.37,40.424 +799637,146.27,44.82 +799638,144.36,43.395 +799639,142.32,41.902 +799640,140.13,40.332 +799641,144.98,44.884 +799642,143.09,43.411 +799643,141.07,41.867 +799644,138.9,40.242 +799645,143.68,44.947 +799646,141.82,43.428 +799647,139.83,41.833 +799648,137.67,40.152 +799649,142.39,45.009 +799650,140.55,43.443 +799651,138.58,41.799 +799652,136.44,40.064 +799653,141.09,45.069 +799654,139.28,43.459 +799655,137.33,41.765 +799656,135.21,39.977 +799657,139.8,45.129 +799658,138.01,43.474 +799659,136.09,41.732 +799660,133.99,39.891 +799661,138.5,45.187 +799662,136.74,43.489 +799663,134.84,41.7 +799664,132.77,39.807 +799665,137.2,45.244 +799666,135.47,43.503 +799667,133.6,41.668 +799668,131.55,39.724 +799669,135.9,45.299 +799670,134.2,43.517 +799671,132.35,41.637 +799672,130.33,39.643 +799673,134.59,45.354 +799674,132.92,43.531 +799675,131.11,41.606 +799676,129.12,39.563 +799677,133.29,45.406 +799678,131.65,43.544 +799679,129.87,41.576 +799680,127.9,39.484 +799681,131.98,45.458 +799682,130.38,43.557 +799683,128.63,41.546 +799684,126.69,39.407 +799685,130.68,45.508 +799686,129.1,43.569 +799687,127.38,41.517 +799688,125.48,39.332 +799689,129.37,45.557 +799690,127.83,43.581 +799691,126.14,41.489 +799692,124.27,39.258 +799693,128.06,45.604 +799694,126.55,43.593 +799695,124.9,41.461 +799696,123.07,39.186 +799697,126.75,45.65 +799698,125.28,43.604 +799699,123.66,41.434 +799700,121.86,39.116 +799701,125.44,45.695 +799702,124,43.615 +799703,122.42,41.407 +799704,120.66,39.047 +799705,124.12,45.738 +799706,122.73,43.625 +799707,121.19,41.381 +799708,119.46,38.981 +799709,122.81,45.779 +799710,121.45,43.635 +799711,119.95,41.356 +799712,118.26,38.916 +799713,121.5,45.819 +799714,120.17,43.644 +799715,118.71,41.331 +799716,117.06,38.853 +799717,120.18,45.857 +799718,118.9,43.653 +799719,117.47,41.307 +799720,115.87,38.792 +799721,118.86,45.894 +799722,117.62,43.661 +799723,116.24,41.284 +799724,114.67,38.733 +799725,117.55,45.929 +799726,116.34,43.669 +799727,115,41.262 +799728,113.48,38.676 +799729,116.23,45.962 +799730,115.06,43.676 +799731,113.77,41.24 +799732,112.29,38.621 +799733,114.91,45.994 +799734,113.78,43.683 +799735,112.53,41.219 +799736,111.1,38.568 +799737,113.59,46.024 +799738,112.5,43.689 +799739,111.3,41.198 +799740,109.91,38.517 +799741,112.27,46.053 +799742,111.23,43.695 +799743,110.06,41.179 +799744,108.73,38.469 +799745,110.94,46.079 +799746,109.95,43.7 +799747,108.83,41.16 +799748,107.54,38.422 +799749,109.62,46.105 +799750,108.67,43.705 +799751,107.59,41.142 +799752,106.36,38.378 +799753,108.3,46.128 +799754,107.39,43.709 +799755,106.36,41.125 +799756,105.18,38.336 +799757,106.97,46.149 +799758,106.11,43.713 +799759,105.13,41.108 +799760,104,38.296 +799761,105.65,46.169 +799762,104.83,43.716 +799763,103.9,41.092 +799764,102.82,38.259 +799765,104.32,46.187 +799766,103.55,43.718 +799767,102.66,41.077 +799768,101.64,38.223 +799769,103,46.204 +799770,102.26,43.72 +799771,101.43,41.063 +799772,100.46,38.19 +799773,101.67,46.218 +799774,100.98,43.722 +799775,100.2,41.049 +799776,99.286,38.16 +799777,100.35,46.231 +799778,99.702,43.722 +799779,98.969,41.037 +799780,98.111,38.132 +799781,99.018,46.242 +799782,98.421,43.723 +799783,97.738,41.025 +799784,96.936,38.106 +799785,97.691,46.252 +799786,97.139,43.722 +799787,96.507,41.014 +799788,95.763,38.082 +799789,96.363,46.259 +799790,95.858,43.721 +799791,95.277,41.003 +799792,94.59,38.061 +799793,95.034,46.265 +799794,94.576,43.72 +799795,94.046,40.994 +799796,93.417,38.043 +799797,93.706,46.268 +799798,93.294,43.718 +799799,92.816,40.985 +799800,92.246,38.027 +799801,92.377,46.27 +799802,92.012,43.715 +799803,91.586,40.977 +799804,91.075,38.013 +799805,91.048,46.271 +799806,90.73,43.712 +799807,90.356,40.97 +799808,89.904,38.002 +799809,89.718,46.269 +799810,89.448,43.708 +799811,89.127,40.964 +799812,88.734,37.993 +799813,88.389,46.265 +799814,88.166,43.704 +799815,87.897,40.959 +799816,87.565,37.986 +799817,87.059,46.26 +799818,86.883,43.699 +799819,86.668,40.954 +799820,86.395,37.982 +799821,85.729,46.253 +799822,85.601,43.693 +799823,85.438,40.95 +799824,85.226,37.981 +799825,84.399,46.244 +799826,84.319,43.687 +799827,84.209,40.947 +799828,84.057,37.982 +799829,83.069,46.233 +799830,83.037,43.68 +799831,82.98,40.945 +799832,82.888,37.985 +799833,81.739,46.221 +799834,81.755,43.673 +799835,81.751,40.944 +799836,81.719,37.991 +799837,80.409,46.206 +799838,80.472,43.665 +799839,80.521,40.943 +799840,80.55,37.999 +799841,79.08,46.19 +799842,79.19,43.656 +799843,79.292,40.944 +799844,79.381,38.01 +799845,77.75,46.172 +799846,77.908,43.647 +799847,78.063,40.945 +799848,78.212,38.023 +799849,76.42,46.152 +799850,76.626,43.637 +799851,76.834,40.947 +799852,77.043,38.038 +799853,75.091,46.13 +799854,75.344,43.627 +799855,75.604,40.949 +799856,75.873,38.056 +799857,73.762,46.107 +799858,74.062,43.616 +799859,74.375,40.953 +799860,74.703,38.076 +799861,72.433,46.082 +799862,72.781,43.605 +799863,73.145,40.957 +799864,73.532,38.099 +799865,71.104,46.055 +799866,71.499,43.593 +799867,71.916,40.962 +799868,72.361,38.124 +799869,69.776,46.026 +799870,70.218,43.58 +799871,70.686,40.968 +799872,71.189,38.151 +799873,68.448,45.995 +799874,68.936,43.567 +799875,69.456,40.975 +799876,70.017,38.181 +799877,67.121,45.963 +799878,67.655,43.554 +799879,68.226,40.982 +799880,68.844,38.213 +799881,65.794,45.929 +799882,66.374,43.539 +799883,66.996,40.99 +799884,67.67,38.247 +799885,64.467,45.893 +799886,65.094,43.525 +799887,65.765,40.999 +799888,66.496,38.283 +799889,63.141,45.856 +799890,63.813,43.509 +799891,64.534,41.009 +799892,65.32,38.321 +799893,61.816,45.817 +799894,62.533,43.494 +799895,63.303,41.019 +799896,64.144,38.362 +799897,60.491,45.776 +799898,61.253,43.477 +799899,62.072,41.031 +799900,62.966,38.405 +799901,59.166,45.733 +799902,59.973,43.46 +799903,60.841,41.043 +799904,61.788,38.45 +799905,57.843,45.689 +799906,58.694,43.443 +799907,59.609,41.055 +799908,60.608,38.497 +799909,56.52,45.643 +799910,57.414,43.425 +799911,58.377,41.069 +799912,59.428,38.546 +799913,55.197,45.595 +799914,56.135,43.407 +799915,57.144,41.083 +799916,58.246,38.597 +799917,53.876,45.546 +799918,54.857,43.388 +799919,55.912,41.097 +799920,57.063,38.65 +799921,52.555,45.496 +799922,53.578,43.368 +799923,54.679,41.113 +799924,55.878,38.705 +799925,51.235,45.443 +799926,52.3,43.349 +799927,53.445,41.129 +799928,54.692,38.762 +799929,49.916,45.39 +799930,51.023,43.328 +799931,52.211,41.146 +799932,53.505,38.82 +799933,48.598,45.334 +799934,49.745,43.308 +799935,50.977,41.163 +799936,52.316,38.881 +799937,47.281,45.277 +799938,48.468,43.286 +799939,49.742,41.181 +799940,51.126,38.943 +799941,45.964,45.219 +799942,47.192,43.265 +799943,48.507,41.2 +799944,49.934,39.007 +799945,44.649,45.159 +799946,45.916,43.243 +799947,47.272,41.22 +799948,48.741,39.073 +799949,43.335,45.098 +799950,44.64,43.22 +799951,46.036,41.24 +799952,47.546,39.14 +799953,42.021,45.035 +799954,43.365,43.197 +799955,44.799,41.26 +799956,46.349,39.209 +799957,40.709,44.971 +799958,42.09,43.174 +799959,43.563,41.281 +799960,45.151,39.28 +799961,39.398,44.906 +799962,40.815,43.15 +799963,42.325,41.303 +799964,43.951,39.352 +799965,38.088,44.839 +799966,39.541,43.126 +799967,41.087,41.325 +799968,42.749,39.425 +799969,36.78,44.771 +799970,38.267,43.101 +799971,39.849,41.348 +799972,41.546,39.5 +799973,35.472,44.702 +799974,36.994,43.077 +799975,38.61,41.372 +799976,40.34,39.577 +799977,34.166,44.631 +799978,35.722,43.051 +799979,37.371,41.396 +799980,39.133,39.654 +799981,32.861,44.56 +799982,34.449,43.026 +799983,36.131,41.42 +799984,37.924,39.733 +799985,31.557,44.487 +799986,33.178,43 +799987,34.89,41.445 +799988,36.713,39.814 +799989,30.255,44.413 +799990,31.906,42.974 +799991,33.649,41.47 +799992,35.5,39.895 +799993,28.954,44.337 +799994,30.636,42.947 +799995,32.408,41.496 +799996,34.286,39.977 +799997,27.654,44.261 +799998,29.366,42.921 +799999,31.165,41.523 +800000,33.069,40.061 diff --git a/src/rm_simulation/livox_laser_simulation_RO2/src/csv_main.cpp b/src/rm_simulation/livox_laser_simulation_RO2/src/csv_main.cpp new file mode 100644 index 0000000..b36fded --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/src/csv_main.cpp @@ -0,0 +1,10 @@ +// +// Created by lfc on 2021/3/1. +// +#include "ros2_livox/csv_reader.hpp" + +int main(int argc, char const* argv[]) { + std::vector> datas; + CsvReader::ReadCsvFile("/sros/avia.csv", datas); + return 0; +} \ No newline at end of file diff --git a/src/rm_simulation/livox_laser_simulation_RO2/src/livox_ode_multiray_shape.cpp b/src/rm_simulation/livox_laser_simulation_RO2/src/livox_ode_multiray_shape.cpp new file mode 100644 index 0000000..72d1f41 --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/src/livox_ode_multiray_shape.cpp @@ -0,0 +1,253 @@ +// +// Created by lfc on 2021/2/28. +// + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "ros2_livox/livox_ode_multiray_shape.h" +#include + +using namespace gazebo; +using namespace physics; + +////////////////////////////////////////////////// +LivoxOdeMultiRayShape::LivoxOdeMultiRayShape(CollisionPtr _parent) + : MultiRayShape(_parent) +{ + this->SetName("ODE Multiray Shape"); + + // Create a space to contain the ray space + this->superSpaceId = dSimpleSpaceCreate(0); + + // Create a space to contain all the rays + this->raySpaceId = dSimpleSpaceCreate(this->superSpaceId); + + // Set collision bits + dGeomSetCategoryBits((dGeomID)this->raySpaceId, GZ_SENSOR_COLLIDE); + dGeomSetCollideBits((dGeomID)this->raySpaceId, ~GZ_SENSOR_COLLIDE); + + // These three lines may be unessecary + ODELinkPtr pLink = + boost::static_pointer_cast(this->collisionParent->GetLink()); + pLink->SetSpaceId(this->raySpaceId); + boost::static_pointer_cast(this->collisionParent)->SetSpaceId(this->raySpaceId); +} + +////////////////////////////////////////////////// +LivoxOdeMultiRayShape::~LivoxOdeMultiRayShape() +{ + dSpaceSetCleanup(this->raySpaceId, 0); + dSpaceDestroy(this->raySpaceId); + + dSpaceSetCleanup(this->superSpaceId, 0); + dSpaceDestroy(this->superSpaceId); +} + +////////////////////////////////////////////////// +void LivoxOdeMultiRayShape::UpdateRays() +{ + ODEPhysicsPtr ode = boost::dynamic_pointer_cast( + this->GetWorld()->Physics()); + + if (ode == NULL) + gzthrow("Invalid physics engine. Must use ODE."); + + // Do we need to lock the physics engine here? YES! + // especially when spawning models with sensors + { + boost::recursive_mutex::scoped_lock lock(*ode->GetPhysicsUpdateMutex()); + + // Do collision detection + dSpaceCollide2((dGeomID)(this->superSpaceId), + (dGeomID)(ode->GetSpaceId()), + this, &UpdateCallback); + } +} + +////////////////////////////////////////////////// +void LivoxOdeMultiRayShape::UpdateCallback(void *_data, dGeomID _o1, dGeomID _o2) +{ + dContactGeom contact; + LivoxOdeMultiRayShape *self = NULL; + + self = static_cast(_data); + + // Check space + if (dGeomIsSpace(_o1) || dGeomIsSpace(_o2)) + { + if (dGeomGetSpace(_o1) == self->superSpaceId || + dGeomGetSpace(_o2) == self->superSpaceId) + dSpaceCollide2(_o1, _o2, self, &UpdateCallback); + + if (dGeomGetSpace(_o1) == self->raySpaceId || + dGeomGetSpace(_o2) == self->raySpaceId) + dSpaceCollide2(_o1, _o2, self, &UpdateCallback); + } + else + { + ODECollision *collision1 = NULL; + ODECollision *collision2 = NULL; + + // Get pointers to the underlying collisions + if (dGeomGetClass(_o1) == dGeomTransformClass) + { + collision1 = static_cast( + dGeomGetData(dGeomTransformGetGeom(_o1))); + } + else + collision1 = static_cast(dGeomGetData(_o1)); + + if (dGeomGetClass(_o2) == dGeomTransformClass) + { + collision2 = + static_cast(dGeomGetData(dGeomTransformGetGeom(_o2))); + } + else + { + collision2 = static_cast(dGeomGetData(_o2)); + } + + GZ_ASSERT(collision1, "collision1 is null"); + GZ_ASSERT(collision2, "collision2 is null"); + + ODECollision *rayCollision = NULL; + ODECollision *hitCollision = NULL; + + // Figure out which one is a ray; note that this assumes + // that the ODE dRayClass is used *soley* by the RayCollision. + if (dGeomGetClass(_o1) == dRayClass) + { + rayCollision = static_cast(collision1); + hitCollision = static_cast(collision2); + dGeomRaySetParams(_o1, 0, 0); + dGeomRaySetClosestHit(_o1, 1); + } + else if (dGeomGetClass(_o2) == dRayClass) + { + GZ_ASSERT(rayCollision == NULL, "rayCollision is not null"); + rayCollision = static_cast(collision2); + hitCollision = static_cast(collision1); + dGeomRaySetParams(_o2, 0, 0); + dGeomRaySetClosestHit(_o2, 1); + } + + // Check for ray/collision intersections + if (rayCollision && hitCollision) + { + int n = dCollide(_o1, _o2, 1, &contact, sizeof(contact)); + + if (n > 0) + { + RayShapePtr shape = boost::static_pointer_cast( + rayCollision->GetShape()); + if (contact.depth < shape->GetLength()) + { + // gzerr << "LivoxOdeMultiRayShape UpdateCallback dSpaceCollide2 " + // << " depth[" << contact.depth << "]" + // << " position[" << contact.pos[0] + // << ", " << contact.pos[1] + // << ", " << contact.pos[2] + // << ", " << "]" + // << " ray[" << rayCollision->GetScopedName() << "]" + // << " pose[" << rayCollision->GetWorldPose() << "]" + // << " hit[" << hitCollision->GetScopedName() << "]" + // << " pose[" << hitCollision->GetWorldPose() << "]" + // << "\n"; + shape->SetLength(contact.depth); + shape->SetRetro(hitCollision->GetLaserRetro()); + } + } + } + } +} + +////////////////////////////////////////////////// +void LivoxOdeMultiRayShape::AddRay(const ignition::math::Vector3d &_start, + const ignition::math::Vector3d &_end) +{ + MultiRayShape::AddRay(_start, _end); + + ODECollisionPtr odeCollision(new ODECollision( + this->collisionParent->GetLink())); + odeCollision->SetName("ode_ray_collision"); + odeCollision->SetSpaceId(this->raySpaceId); + + ODERayShapePtr ray(new ODERayShape(odeCollision)); + odeCollision->SetShape(ray); + + ray->SetPoints(_start, _end); + this->rays.push_back(ray); +} +void LivoxOdeMultiRayShape::Init() +{ + ignition::math::Vector3d start, end, axis; + double yawAngle, pitchAngle; + // ignition::math::Quaternion ray; + double yDiff; + double horzMinAngle, horzMaxAngle; + int horzSamples = 1; + // double horzResolution = 1.0; + + double pDiff = 0; + int vertSamples = 1; + // double vertResolution = 1.0; + double vertMinAngle = 0; + + double minRange, maxRange; + + this->rayElem = this->sdf->GetElement("ray"); + this->scanElem = this->rayElem->GetElement("scan"); + this->horzElem = this->scanElem->GetElement("horizontal"); + this->rangeElem = this->rayElem->GetElement("range"); + + if (this->scanElem->HasElement("vertical")) + { + this->vertElem = this->scanElem->GetElement("vertical"); + vertMinAngle = this->vertElem->Get("min_angle"); + double vertMaxAngle = this->vertElem->Get("max_angle"); + vertSamples = this->vertElem->Get("samples"); + // vertResolution = this->vertElem->Get("resolution"); + pDiff = vertMaxAngle - vertMinAngle; + } + + horzMinAngle = this->horzElem->Get("min_angle"); + horzMaxAngle = this->horzElem->Get("max_angle"); + horzSamples = this->horzElem->Get("samples"); + // horzResolution = this->horzElem->Get("resolution"); + yDiff = horzMaxAngle - horzMinAngle; + + minRange = this->rangeElem->Get("min"); + maxRange = this->rangeElem->Get("max"); + + // this->offset = this->collisionParent->GetRelativePose(); + + // Create an array of ray collisions + // for (unsigned int j = 0; j < (unsigned int)vertSamples; ++j) + // { + // for (unsigned int i = 0; i < (unsigned int)horzSamples; ++i) + // { + // yawAngle = (horzSamples == 1) ? 0 : + // i * yDiff / (horzSamples - 1) + horzMinAngle; + // + // pitchAngle = (vertSamples == 1)? 0 : + // j * pDiff / (vertSamples - 1) + vertMinAngle; + // + // // since we're rotating a unit x vector, a pitch rotation will now be + // // around the negative y axis + // ray.SetFromEuler(math::Vector3(0.0, -pitchAngle, yawAngle)); + // axis = this->offset.rot * ray * math::Vector3(1.0, 0.0, 0.0); + // + // start = (axis * minRange) + this->offset.pos; + // end = (axis * maxRange) + this->offset.pos; + // + // this->AddRay(start, end); + // } + // } +} diff --git a/src/rm_simulation/livox_laser_simulation_RO2/src/livox_points_plugin.cpp b/src/rm_simulation/livox_laser_simulation_RO2/src/livox_points_plugin.cpp new file mode 100644 index 0000000..a51ca19 --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/src/livox_points_plugin.cpp @@ -0,0 +1,402 @@ +#include +#include +#include // Store the latest laser scans into laserMsg +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "ros2_livox/csv_reader.hpp" +#include "ros2_livox/livox_points_plugin.h" +#include "ros2_livox/livox_ode_multiray_shape.h" + +namespace gazebo +{ + + GZ_REGISTER_SENSOR_PLUGIN(LivoxPointsPlugin) + + LivoxPointsPlugin::LivoxPointsPlugin() {} + + LivoxPointsPlugin::~LivoxPointsPlugin() {} + + void convertDataToRotateInfo(const std::vector> &datas, std::vector &avia_infos) + { + avia_infos.reserve(datas.size()); + double deg_2_rad = M_PI / 180.0; + for (auto &data : datas) + { + if (data.size() == 3) + { + avia_infos.emplace_back(); + avia_infos.back().time = data[0]; + avia_infos.back().azimuth = data[1] * deg_2_rad; + avia_infos.back().zenith = data[2] * deg_2_rad - M_PI_2; //转化成标准的右手系角度 + } else { + RCLCPP_ERROR(rclcpp::get_logger("convertDataToRotateInfo"), "data size is not 3!"); + } + } + } + + void LivoxPointsPlugin::Load(gazebo::sensors::SensorPtr _parent, sdf::ElementPtr sdf) + { + node_ = gazebo_ros::Node::Get(sdf); + + std::vector> datas; + std::string file_name = sdf->Get("csv_file_name"); + RCLCPP_INFO(rclcpp::get_logger("LivoxPointsPlugin"), "load csv file name: %s", file_name.c_str()); + if (!CsvReader::ReadCsvFile(file_name, datas)) + { + RCLCPP_INFO(rclcpp::get_logger("LivoxPointsPlugin"), "cannot get csv file! %s will return !", file_name.c_str()); + return; + } + sdfPtr = sdf; + auto rayElem = sdfPtr->GetElement("ray"); + auto scanElem = rayElem->GetElement("scan"); + auto rangeElem = rayElem->GetElement("range"); + + + raySensor = _parent; + auto sensor_pose = raySensor->Pose(); + auto curr_scan_topic = sdf->Get("topic"); + RCLCPP_INFO(rclcpp::get_logger("LivoxPointsPlugin"), "ros topic name: %s", curr_scan_topic.c_str()); + + child_name = raySensor->Name(); + parent_name = raySensor->ParentName(); + size_t delimiter_pos = parent_name.find("::"); + parent_name = parent_name.substr(delimiter_pos + 2); + + node = transport::NodePtr(new transport::Node()); + node->Init(raySensor->WorldName()); + // PointCloud2 publisher + cloud2_pub = node_->create_publisher(curr_scan_topic + "/pointcloud", 10); + // CustomMsg publisher + custom_pub = node_->create_publisher(curr_scan_topic, 10); + + scanPub = node->Advertise(curr_scan_topic+"laserscan", 50); + + aviaInfos.clear(); + convertDataToRotateInfo(datas, aviaInfos); + RCLCPP_INFO(rclcpp::get_logger("LivoxPointsPlugin"), "scan info size: %ld", aviaInfos.size()); + maxPointSize = aviaInfos.size(); + + RayPlugin::Load(_parent, sdfPtr); + laserMsg.mutable_scan()->set_frame(_parent->ParentName()); + // parentEntity = world->GetEntity(_parent->ParentName()); + parentEntity = this->world->EntityByName(_parent->ParentName()); + //SendRosTf(sensor_pose, raySensor->ParentName(), raySensor->Name()); + auto physics = world->Physics(); + laserCollision = physics->CreateCollision("multiray", _parent->ParentName()); + laserCollision->SetName("ray_sensor_collision"); + laserCollision->SetRelativePose(_parent->Pose()); + laserCollision->SetInitialRelativePose(_parent->Pose()); + rayShape.reset(new gazebo::physics::LivoxOdeMultiRayShape(laserCollision)); + laserCollision->SetShape(rayShape); + samplesStep = sdfPtr->Get("samples"); + downSample = sdfPtr->Get("downsample"); + if (downSample < 1) + { + downSample = 1; + } + RCLCPP_INFO(rclcpp::get_logger("LivoxPointsPlugin"), "sample: %ld", samplesStep); + RCLCPP_INFO(rclcpp::get_logger("LivoxPointsPlugin"), "downsample: %ld", downSample); + rayShape->RayShapes().reserve(samplesStep / downSample); + rayShape->Load(sdfPtr); + rayShape->Init(); + minDist = rangeElem->Get("min"); + maxDist = rangeElem->Get("max"); + auto offset = laserCollision->RelativePose(); + ignition::math::Vector3d start_point, end_point; + for (int j = 0; j < samplesStep; j += downSample) + { + int index = j % maxPointSize; + auto &rotate_info = aviaInfos[index]; + ignition::math::Quaterniond ray; + ray.Euler(ignition::math::Vector3d(0.0, rotate_info.zenith, rotate_info.azimuth)); + auto axis = offset.Rot() * ray * ignition::math::Vector3d(1.0, 0.0, 0.0); + start_point = minDist * axis + offset.Pos(); + end_point = maxDist * axis + offset.Pos(); + rayShape->AddRay(start_point, end_point); + } + } + + + + void LivoxPointsPlugin::OnNewLaserScans() { + if (!rayShape) { + return; // 检查是否已经初始化了 rayShape + } + + std::vector> points_pair; + InitializeRays(points_pair, rayShape); + rayShape->Update(); + + msgs::Set(laserMsg.mutable_time(), world->SimTime()); + msgs::LaserScan *scan = laserMsg.mutable_scan(); + InitializeScan(scan); + + // 创建自定义消息 pp_livox,用于发布 Livox CustomMsg 类型消息 + livox_ros_driver2::msg::CustomMsg pp_livox; + pp_livox.header.stamp = node_->get_clock()->now(); + pp_livox.header.frame_id = raySensor->Name(); + int count = 0; + boost::chrono::high_resolution_clock::time_point start_time = boost::chrono::high_resolution_clock::now(); + + // 用于 PointCloud2 类型消息发布 + sensor_msgs::msg::PointCloud2 cloud2; + cloud2.header.stamp = node_->get_clock()->now(); + cloud2.header.frame_id = raySensor->Name(); + + sensor_msgs::PointCloud2Modifier modifier(cloud2); + modifier.setPointCloud2FieldsByString(2, "xyz", "rgb"); + modifier.resize(points_pair.size()); + + sensor_msgs::PointCloud2Iterator out_x(cloud2, "x"); + sensor_msgs::PointCloud2Iterator out_y(cloud2, "y"); + sensor_msgs::PointCloud2Iterator out_z(cloud2, "z"); + + // 遍历射线扫描点对 + for (const auto &pair : points_pair) { + auto range = rayShape->GetRange(pair.first); + auto intensity = rayShape->GetRetro(pair.first); + + // 处理超出范围的数据 + if (range <= RangeMin() || range >= RangeMax()) { + range = 0; + } + + // 计算点云数据 + auto rotate_info = pair.second; + ignition::math::Quaterniond ray; + ray.Euler(ignition::math::Vector3d(0.0, rotate_info.zenith, rotate_info.azimuth)); + auto axis = ray * ignition::math::Vector3d(1.0, 0.0, 0.0); + auto point = range * axis; + + // 填充 CustomMsg 点云消息 + livox_ros_driver2::msg::CustomPoint p; + p.x = point.X(); + p.y = point.Y(); + p.z = point.Z(); + p.reflectivity = intensity; + + // 填充 PointCloud2 点云消息 + *out_x = point.X(); + *out_y = point.Y(); + *out_z = point.Z(); + + ++out_x; + ++out_y; + ++out_z; + + // 计算时间戳偏移 + boost::chrono::high_resolution_clock::time_point end_time = boost::chrono::high_resolution_clock::now(); + boost::chrono::nanoseconds elapsed_time = boost::chrono::duration_cast(end_time - start_time); + p.offset_time = elapsed_time.count(); + + // 将点云数据添加到 CustomMsg 消息中 + pp_livox.points.push_back(p); + count++; + } + + if (scanPub && scanPub->HasConnections()) { + scanPub->Publish(laserMsg); + } + + // 发布 CustomMsg 消息 + pp_livox.point_num = count; + custom_pub->publish(pp_livox); + + // 发布 PointCloud2 类型消息 + cloud2_pub->publish(cloud2); + } + + + void LivoxPointsPlugin::InitializeRays(std::vector> &points_pair, + boost::shared_ptr &ray_shape) + { + auto &rays = ray_shape->RayShapes(); + ignition::math::Vector3d start_point, end_point; + ignition::math::Quaterniond ray; + auto offset = laserCollision->RelativePose(); + int64_t end_index = currStartIndex + samplesStep; + long unsigned int ray_index = 0; + auto ray_size = rays.size(); + points_pair.reserve(rays.size()); + for (int k = currStartIndex; k < end_index; k += downSample) + { + auto index = k % maxPointSize; + auto &rotate_info = aviaInfos[index]; + ray.Euler(ignition::math::Vector3d(0.0, rotate_info.zenith, rotate_info.azimuth)); + auto axis = offset.Rot() * ray * ignition::math::Vector3d(1.0, 0.0, 0.0); + start_point = minDist * axis + offset.Pos(); + end_point = maxDist * axis + offset.Pos(); + if (ray_index < ray_size) + { + rays[ray_index]->SetPoints(start_point, end_point); + points_pair.emplace_back(ray_index, rotate_info); + } + ray_index++; + } + currStartIndex += samplesStep; + } + + void LivoxPointsPlugin::InitializeScan(msgs::LaserScan *&scan) + { + // Store the latest laser scans into laserMsg + msgs::Set(scan->mutable_world_pose(), raySensor->Pose() + parentEntity->WorldPose()); + scan->set_angle_min(AngleMin().Radian()); + scan->set_angle_max(AngleMax().Radian()); + scan->set_angle_step(AngleResolution()); + scan->set_count(RangeCount()); + + scan->set_vertical_angle_min(VerticalAngleMin().Radian()); + scan->set_vertical_angle_max(VerticalAngleMax().Radian()); + scan->set_vertical_angle_step(VerticalAngleResolution()); + scan->set_vertical_count(VerticalRangeCount()); + + scan->set_range_min(RangeMin()); + scan->set_range_max(RangeMax()); + + scan->clear_ranges(); + scan->clear_intensities(); + + unsigned int rangeCount = RangeCount(); + unsigned int verticalRangeCount = VerticalRangeCount(); + + for (unsigned int j = 0; j < verticalRangeCount; ++j) + { + for (unsigned int i = 0; i < rangeCount; ++i) + { + scan->add_ranges(0); + scan->add_intensities(0); + } + } + } + + ignition::math::Angle LivoxPointsPlugin::AngleMin() const + { + if (rayShape) + return rayShape->MinAngle(); + else + return -1; + } + + ignition::math::Angle LivoxPointsPlugin::AngleMax() const + { + if (rayShape) + { + return ignition::math::Angle(rayShape->MaxAngle().Radian()); + } + else + return -1; + } + + double LivoxPointsPlugin::GetRangeMin() const { return RangeMin(); } + + double LivoxPointsPlugin::RangeMin() const + { + if (rayShape) + return rayShape->GetMinRange(); + else + return -1; + } + + double LivoxPointsPlugin::GetRangeMax() const { return RangeMax(); } + + double LivoxPointsPlugin::RangeMax() const + { + if (rayShape) + return rayShape->GetMaxRange(); + else + return -1; + } + + double LivoxPointsPlugin::GetAngleResolution() const { return AngleResolution(); } + + double LivoxPointsPlugin::AngleResolution() const { return (AngleMax() - AngleMin()).Radian() / (RangeCount() - 1); } + + double LivoxPointsPlugin::GetRangeResolution() const { return RangeResolution(); } + + double LivoxPointsPlugin::RangeResolution() const + { + if (rayShape) + return rayShape->GetResRange(); + else + return -1; + } + + int LivoxPointsPlugin::GetRayCount() const { return RayCount(); } + + int LivoxPointsPlugin::RayCount() const + { + if (rayShape) + return rayShape->GetSampleCount(); + else + return -1; + } + + int LivoxPointsPlugin::GetRangeCount() const { return RangeCount(); } + + int LivoxPointsPlugin::RangeCount() const + { + if (rayShape) + return rayShape->GetSampleCount() * rayShape->GetScanResolution(); + else + return -1; + } + + int LivoxPointsPlugin::GetVerticalRayCount() const { return VerticalRayCount(); } + + int LivoxPointsPlugin::VerticalRayCount() const + { + if (rayShape) + return rayShape->GetVerticalSampleCount(); + else + return -1; + } + + int LivoxPointsPlugin::GetVerticalRangeCount() const { return VerticalRangeCount(); } + + int LivoxPointsPlugin::VerticalRangeCount() const + { + if (rayShape) + return rayShape->GetVerticalSampleCount() * rayShape->GetVerticalScanResolution(); + else + return -1; + } + + ignition::math::Angle LivoxPointsPlugin::VerticalAngleMin() const + { + if (rayShape) + { + return ignition::math::Angle(rayShape->VerticalMinAngle().Radian()); + } + else + return -1; + } + + ignition::math::Angle LivoxPointsPlugin::VerticalAngleMax() const + { + if (rayShape) + { + return ignition::math::Angle(rayShape->VerticalMaxAngle().Radian()); + } + else + return -1; + } + + double LivoxPointsPlugin::GetVerticalAngleResolution() const { return VerticalAngleResolution(); } + + double LivoxPointsPlugin::VerticalAngleResolution() const + { + return (VerticalAngleMax() - VerticalAngleMin()).Radian() / (VerticalRangeCount() - 1); + } + + +} \ No newline at end of file diff --git a/src/rm_simulation/livox_laser_simulation_RO2/urdf/mid360.xacro b/src/rm_simulation/livox_laser_simulation_RO2/urdf/mid360.xacro new file mode 100644 index 0000000..c51f897 --- /dev/null +++ b/src/rm_simulation/livox_laser_simulation_RO2/urdf/mid360.xacro @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 0 0 0 0 0 + true + 10 + + + + + 100 + 1 + ${0} + ${2*M_PI} + + + 360 + 1 + ${-7.22/180*M_PI} + ${55.22/180*M_PI} + + + + ${laser_min_range} + ${laser_max_range} + ${resolution} + + + gaussian + ${noise_mean} + ${noise_stddev} + + + false + ${samples} + 1 + $(find ros2_livox_simulation)/scan_mode/mid360.csv + ${topic} + + + + + + + diff --git a/src/rm_simulation/pb_rm_simulation/CMakeLists.txt b/src/rm_simulation/pb_rm_simulation/CMakeLists.txt new file mode 100644 index 0000000..2dbf792 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/CMakeLists.txt @@ -0,0 +1,61 @@ +cmake_minimum_required(VERSION 3.10) +project(pb_rm_simulation) + +## Use C++14 +set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +## By adding -Wall and -Werror, the compiler does not ignore warnings anymore, +## enforcing cleaner code. +add_definitions(-Wall -Werror) + +if(CMAKE_EXPORT_COMPILE_COMMANDS) + set(CMAKE_EXPORT_COMPILE_COMMANDS ${CMAKE_EXPORT_COMPILE_COMMANDS}) +endif() + +####################### +## Find dependencies ## +####################### + +find_package(ament_cmake_auto REQUIRED) +ament_auto_find_build_dependencies() + +########### +## Build ## +########### + +# ament_auto_add_library(${PROJECT_NAME} SHARED +# src/rm_serial_driver.cpp +# src/crc.cpp +# ) + +# rclcpp_components_register_node(${PROJECT_NAME} +# PLUGIN rm_serial_driver::RMSerialDriver +# EXECUTABLE ${PROJECT_NAME}_node +# ) + +############# +## Testing ## +############# + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + list(APPEND AMENT_LINT_AUTO_EXCLUDE + ament_cmake_copyright + ament_cmake_uncrustify + ) + ament_lint_auto_find_test_dependencies() +endif() + +############# +## Install ## +############# + +ament_auto_package( + INSTALL_TO_SHARE + launch + urdf + meshes + world + rviz +) diff --git a/src/rm_simulation/pb_rm_simulation/launch/rm_simulation.launch.py b/src/rm_simulation/pb_rm_simulation/launch/rm_simulation.launch.py new file mode 100644 index 0000000..09df099 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/launch/rm_simulation.launch.py @@ -0,0 +1,169 @@ +#!/usr/bin/env python3 + +import os + +from ament_index_python.packages import get_package_share_directory, get_package_share_path + +from launch import LaunchDescription +from launch.substitutions import LaunchConfiguration, Command +from launch.actions import IncludeLaunchDescription, DeclareLaunchArgument, GroupAction +from launch.launch_description_sources import PythonLaunchDescriptionSource +from launch_ros.actions import Node +from launch.conditions import LaunchConfigurationEquals +from launch.conditions import IfCondition +from launch.actions.append_environment_variable import AppendEnvironmentVariable + +# Enum for world types +class WorldType: + RMUC = 'RMUC' + RMUL = 'RMUL' + +def get_world_config(world_type): + world_configs = { + WorldType.RMUC: { + 'x': '6.35', + 'y': '7.6', + 'z': '0.2', + 'yaw': '0.0', + 'world_path': 'RMUC2024_world/RMUC2024_world.world' + }, + WorldType.RMUL: { + 'x': '4.3', + 'y': '3.35', + 'z': '1.16', + 'yaw': '0.0', + 'world_path': 'RMUL2024_world/RMUL2024_world.world' + # 'world_path': 'RMUL2024_world/RMUL2024_world_dynamic_obstacles.world' + } + } + return world_configs.get(world_type, None) + +def generate_launch_description(): + # Get the launch directory + bringup_dir = get_package_share_directory('pb_rm_simulation') + pkg_gazebo_ros = get_package_share_directory('gazebo_ros') + + # Specify xacro path + default_robot_description = Command(['xacro ', os.path.join( + get_package_share_directory('pb_rm_simulation'), 'urdf', 'simulation_waking_robot.xacro')]) + + # Create the launch configuration variables + use_sim_time = LaunchConfiguration('use_sim_time') + use_rviz = LaunchConfiguration('rviz', default='false') + robot_description = LaunchConfiguration('robot_description') + + # Set Gazebo plugin path + append_enviroment = AppendEnvironmentVariable( + 'GAZEBO_PLUGIN_PATH', + os.path.join(os.path.join(get_package_share_directory('pb_rm_simulation'), 'meshes', 'obstacles', 'obstacle_plugin', 'lib')) + ) + + declare_use_sim_time_cmd = DeclareLaunchArgument( + 'use_sim_time', + default_value='True', + description='Use simulation (Gazebo) clock if true' + ) + + declare_world_cmd = DeclareLaunchArgument( + 'world', + default_value=WorldType.RMUC, + description='Choose or ' + ) + + declare_rviz_config_file_cmd = DeclareLaunchArgument( + 'rviz_config_file', + default_value=os.path.join(bringup_dir, 'rviz', 'rviz2.rviz'), + description='Full path to the RVIZ config file to use' + ) + + declare_robot_description_cmd = DeclareLaunchArgument( + 'robot_description', + default_value=default_robot_description, + description='Robot description' + ) + + # Specify the actions + gazebo_client_launch = IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(pkg_gazebo_ros, 'launch', 'gzclient.launch.py')), + ) + + start_joint_state_publisher_cmd = Node( + package='joint_state_publisher', + executable='joint_state_publisher', + name='joint_state_publisher', + parameters=[{ + 'use_sim_time': use_sim_time, + 'robot_description': robot_description + }], + output='screen' + ) + + start_robot_state_publisher_cmd = Node( + package='robot_state_publisher', + executable='robot_state_publisher', + name='robot_state_publisher', + parameters=[{ + 'use_sim_time': use_sim_time, + 'robot_description': robot_description + }], + output='screen' + ) + + start_rviz_cmd = Node( + condition=IfCondition(use_rviz), + package='rviz2', + namespace='', + executable='rviz2', + arguments=['-d' + os.path.join(bringup_dir, 'rviz', 'rviz2.rviz')] + ) + + def create_gazebo_launch_group(world_type): + world_config = get_world_config(world_type) + if world_config is None: + return None + + return GroupAction( + condition=LaunchConfigurationEquals('world', world_type), + actions=[ + Node( + package='gazebo_ros', + executable='spawn_entity.py', + arguments=[ + '-entity', 'robot', + '-topic', 'robot_description', + '-x', world_config['x'], + '-y', world_config['y'], + '-z', world_config['z'], + '-Y', world_config['yaw'] + ], + ), + IncludeLaunchDescription( + PythonLaunchDescriptionSource(os.path.join(pkg_gazebo_ros, 'launch', 'gzserver.launch.py')), + launch_arguments={'world': os.path.join(bringup_dir, 'world', world_config['world_path'])}.items(), + ) + ] + ) + + bringup_RMUC_cmd_group = create_gazebo_launch_group(WorldType.RMUC) + bringup_RMUL_cmd_group = create_gazebo_launch_group(WorldType.RMUL) + + # Create the launch description and populate + ld = LaunchDescription() + + # Set environment variables + ld.add_action(append_enviroment) + + ld.add_action(declare_use_sim_time_cmd) + ld.add_action(declare_world_cmd) + ld.add_action(declare_rviz_config_file_cmd) + ld.add_action(declare_robot_description_cmd) + ld.add_action(gazebo_client_launch) + ld.add_action(start_joint_state_publisher_cmd) + ld.add_action(start_robot_state_publisher_cmd) + ld.add_action(bringup_RMUL_cmd_group) # type: ignore + ld.add_action(bringup_RMUC_cmd_group) # type: ignore + + # Uncomment this line if you want to start RViz + ld.add_action(start_rviz_cmd) + + return ld diff --git a/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/meshes/RMUC_2024.stl b/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/meshes/RMUC_2024.stl new file mode 100644 index 0000000..4f54050 Binary files /dev/null and b/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/meshes/RMUC_2024.stl differ diff --git a/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/model.config b/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/model.config new file mode 100644 index 0000000..ce3505e --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/model.config @@ -0,0 +1,17 @@ + + + + RMUC2024_world + 1.0 + model.sdf + + + Lihan Chen + lihanchen2004@163.com + + + + RoboMaster University Championship 2024 world + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/model.sdf new file mode 100644 index 0000000..daac0ab --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/RMUC2024_world/model.sdf @@ -0,0 +1,34 @@ + + + + true + + + 0 0 0 0 0 0 + 10402000 + + 3970000000 + 20876000 + 613230000 + 9033200000 + -269580000 + 5839000000 + + + + + + model://RMUC2024_world/meshes/RMUC_2024.stl + + + + + + + model://RMUC2024_world/meshes/RMUC2024_world + + + + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/RMUL2024_world/meshes/RMUL_2024.stl b/src/rm_simulation/pb_rm_simulation/meshes/RMUL2024_world/meshes/RMUL_2024.stl new file mode 100644 index 0000000..1ee425d Binary files /dev/null and b/src/rm_simulation/pb_rm_simulation/meshes/RMUL2024_world/meshes/RMUL_2024.stl differ diff --git a/src/rm_simulation/pb_rm_simulation/meshes/mid360.stl b/src/rm_simulation/pb_rm_simulation/meshes/mid360.stl new file mode 100644 index 0000000..5c7fdb7 Binary files /dev/null and b/src/rm_simulation/pb_rm_simulation/meshes/mid360.stl differ diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle1/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle1/model.config new file mode 100644 index 0000000..d873282 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle1/model.config @@ -0,0 +1,15 @@ + + + obstacle1 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle1/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle1/model.sdf new file mode 100644 index 0000000..a59a914 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle1/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle1 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle10/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle10/model.config new file mode 100644 index 0000000..091726a --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle10/model.config @@ -0,0 +1,15 @@ + + + obstacle4 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle10/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle10/model.sdf new file mode 100644 index 0000000..775d66f --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle10/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle4 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle11/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle11/model.config new file mode 100644 index 0000000..82e7849 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle11/model.config @@ -0,0 +1,15 @@ + + + obstacle5 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle11/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle11/model.sdf new file mode 100644 index 0000000..771d775 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle11/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.16 + 0.50 + + + + + + + + 0.16 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle5 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle12/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle12/model.config new file mode 100644 index 0000000..aca3ff5 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle12/model.config @@ -0,0 +1,15 @@ + + + obstacle6 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle12/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle12/model.sdf new file mode 100644 index 0000000..ae4d932 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle12/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.16 + 0.50 + + + + + + + + 0.16 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle6 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle2/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle2/model.config new file mode 100644 index 0000000..dfd8c6b --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle2/model.config @@ -0,0 +1,15 @@ + + + obstacle2 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle2/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle2/model.sdf new file mode 100644 index 0000000..b9901f0 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle2/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle2 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle3/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle3/model.config new file mode 100644 index 0000000..4003109 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle3/model.config @@ -0,0 +1,15 @@ + + + obstacle3 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle3/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle3/model.sdf new file mode 100644 index 0000000..b5fdcdb --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle3/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle3 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle4/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle4/model.config new file mode 100644 index 0000000..091726a --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle4/model.config @@ -0,0 +1,15 @@ + + + obstacle4 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle4/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle4/model.sdf new file mode 100644 index 0000000..775d66f --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle4/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle4 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle5/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle5/model.config new file mode 100644 index 0000000..82e7849 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle5/model.config @@ -0,0 +1,15 @@ + + + obstacle5 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle5/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle5/model.sdf new file mode 100644 index 0000000..71d9170 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle5/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle5 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle6/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle6/model.config new file mode 100644 index 0000000..aca3ff5 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle6/model.config @@ -0,0 +1,15 @@ + + + obstacle6 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle6/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle6/model.sdf new file mode 100644 index 0000000..8d0180d --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle6/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle6 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle7/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle7/model.config new file mode 100644 index 0000000..d873282 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle7/model.config @@ -0,0 +1,15 @@ + + + obstacle1 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle7/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle7/model.sdf new file mode 100644 index 0000000..a59a914 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle7/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle1 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle8/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle8/model.config new file mode 100644 index 0000000..dfd8c6b --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle8/model.config @@ -0,0 +1,15 @@ + + + obstacle2 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle8/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle8/model.sdf new file mode 100644 index 0000000..b9901f0 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle8/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle2 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle9/model.config b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle9/model.config new file mode 100644 index 0000000..4003109 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle9/model.config @@ -0,0 +1,15 @@ + + + obstacle3 + 1.0 + model.sdf + + + Ryan Shim + jhshim@robotis.com + + + + TurtleBot3 DRL World + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle9/model.sdf b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle9/model.sdf new file mode 100644 index 0000000..b5fdcdb --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle9/model.sdf @@ -0,0 +1,38 @@ + + + + + + + + 0.3 + 0.50 + + + + + + + + 0.3 + 0.50 + + + + + + + /obstacle + odom:=odom + + true + 50.0 + link_obstacle3 + odom_obs + 0.0 + world + 0 0 0 + 0 0 0 + + + diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/CMakeLists.txt b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/CMakeLists.txt new file mode 100644 index 0000000..2f48193 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/CMakeLists.txt @@ -0,0 +1,57 @@ +################################################################################ +# CMake +################################################################################ +cmake_minimum_required(VERSION 2.8 FATAL_ERROR) + +################################################################################ +# Packages +################################################################################ +find_package(gazebo REQUIRED) + +################################################################################ +# Build +################################################################################ +link_directories(${GAZEBO_LIBRARY_DIRS}) + +include_directories(${GAZEBO_INCLUDE_DIRS}) + +list(APPEND CMAKE_CXX_FLAGS "${GAZEBO_CXX_FLAGS}") + +add_library(obstacle1 SHARED obstacle1.cc) +target_link_libraries(obstacle1 ${GAZEBO_LIBRARIES}) + +add_library(obstacle2 SHARED obstacle2.cc) +target_link_libraries(obstacle2 ${GAZEBO_LIBRARIES}) + +add_library(obstacle3 SHARED obstacle3.cc) +target_link_libraries(obstacle3 ${GAZEBO_LIBRARIES}) + +add_library(obstacle4 SHARED obstacle4.cc) +target_link_libraries(obstacle4 ${GAZEBO_LIBRARIES}) + +add_library(obstacle5 SHARED obstacle5.cc) +target_link_libraries(obstacle5 ${GAZEBO_LIBRARIES}) + +add_library(obstacle6 SHARED obstacle6.cc) +target_link_libraries(obstacle6 ${GAZEBO_LIBRARIES}) + +add_library(obstacle7 SHARED obstacle7.cc) +target_link_libraries(obstacle7 ${GAZEBO_LIBRARIES}) + +add_library(obstacle8 SHARED obstacle8.cc) +target_link_libraries(obstacle8 ${GAZEBO_LIBRARIES}) + +add_library(obstacle9 SHARED obstacle9.cc) +target_link_libraries(obstacle9 ${GAZEBO_LIBRARIES}) + +add_library(obstacle10 SHARED obstacle10.cc) +target_link_libraries(obstacle10 ${GAZEBO_LIBRARIES}) + +add_library(obstacle11 SHARED obstacle11.cc) +target_link_libraries(obstacle11 ${GAZEBO_LIBRARIES}) + +add_library(obstacle12 SHARED obstacle12.cc) +target_link_libraries(obstacle12 ${GAZEBO_LIBRARIES}) + +add_library(obstacles SHARED obstacles.cc) +target_link_libraries(obstacles ${GAZEBO_LIBRARIES}) \ No newline at end of file diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle1.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle1.cc new file mode 100644 index 0000000..7957af0 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle1.cc @@ -0,0 +1,93 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + + +namespace gazebo +{ +class Obstacle1: public ModelPlugin +{ +public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_1", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move1", 160.0, true)); + + gazebo::common::PoseKeyFrame * key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(-0.5, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(50); + key->Translation(ignition::math::Vector3d(-3.5, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(70); + key->Translation(ignition::math::Vector3d(-3.7, -3.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(90); + key->Translation(ignition::math::Vector3d(-3.5, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(130); + key->Translation(ignition::math::Vector3d(-0.5, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(140); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(160); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + +// Pointer to the model + +private: + physics::ModelPtr model; + +// Pointer to the update event connection + +private: + event::ConnectionPtr updateConnection; +}; +// Register this plugin with the simulator +GZ_REGISTER_MODEL_PLUGIN(Obstacle1) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle10.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle10.cc new file mode 100644 index 0000000..44d2ec5 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle10.cc @@ -0,0 +1,100 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle10 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move10", 140.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(0.0, -0.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(35); + key->Translation(ignition::math::Vector3d(3.0, -0.8, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(3.5, -1.3, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(60); + key->Translation(ignition::math::Vector3d(4.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(80); + key->Translation(ignition::math::Vector3d(3.5, -2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(2.0, -2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(120); + key->Translation(ignition::math::Vector3d(1.3, -1.1, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(130); + key->Translation(ignition::math::Vector3d(0, -1.1, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(140); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle10) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle11.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle11.cc new file mode 100644 index 0000000..9856957 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle11.cc @@ -0,0 +1,96 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle11 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move11", 110.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(20); + key->Translation(ignition::math::Vector3d(1.0, 2.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(35); + key->Translation(ignition::math::Vector3d(-1.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(55); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(65); + key->Translation(ignition::math::Vector3d(1.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(75); + key->Translation(ignition::math::Vector3d(2.0, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(85); + key->Translation(ignition::math::Vector3d(1.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(95); + key->Translation(ignition::math::Vector3d(0.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle11) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle12.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle12.cc new file mode 100644 index 0000000..7c0840a --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle12.cc @@ -0,0 +1,92 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle12 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move12", 120.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(15); + key->Translation(ignition::math::Vector3d(1.0, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(1.5, -4.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(50); + key->Translation(ignition::math::Vector3d(1.0, -4.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(80); + key->Translation(ignition::math::Vector3d(-1.5, -2.8, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(100); + key->Translation(ignition::math::Vector3d(-1.5, -0.8, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(-1.0, -0.7, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(120); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle12) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle13.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle13.cc new file mode 100644 index 0000000..8c54c29 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle13.cc @@ -0,0 +1,76 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle12 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move12", 345.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(15); + key->Translation(ignition::math::Vector3d(0.0, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(30); + key->Translation(ignition::math::Vector3d(-1.0, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(300); + key->Translation(ignition::math::Vector3d(-2.0, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle12) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle2.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle2.cc new file mode 100644 index 0000000..f9f1657 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle2.cc @@ -0,0 +1,108 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle2 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move2", 140.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(0.7, 0.2, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(2.5, 3.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(55); + key->Translation(ignition::math::Vector3d(0.3, 3.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(85); + key->Translation(ignition::math::Vector3d(3.5, 1.8, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(100); + key->Translation(ignition::math::Vector3d(3.5, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(2.0, 0.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(115); + key->Translation(ignition::math::Vector3d(1.5, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(120); + key->Translation(ignition::math::Vector3d(1.0, 0.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(125); + key->Translation(ignition::math::Vector3d(0.5, 0.1, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(130); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(140); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle2) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle3.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle3.cc new file mode 100644 index 0000000..a0a1c72 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle3.cc @@ -0,0 +1,96 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle3 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move3", 165.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(-1.0, 0.2, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(-2.0, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(55); + key->Translation(ignition::math::Vector3d(-3.5, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(85); + key->Translation(ignition::math::Vector3d(-2.5, 1.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(130); + key->Translation(ignition::math::Vector3d(-1.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(145); + key->Translation(ignition::math::Vector3d(-2.0, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(165); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle3) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle4.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle4.cc new file mode 100644 index 0000000..1b3a98a --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle4.cc @@ -0,0 +1,100 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle4 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move4", 170.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(0.0, -3.2, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(30); + key->Translation(ignition::math::Vector3d(2.0, -2.7, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(60); + key->Translation(ignition::math::Vector3d(0.0, -3.2, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(80); + key->Translation(ignition::math::Vector3d(2.0, -2.7, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(130); + key->Translation(ignition::math::Vector3d(0.0, -3.2, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(150); + key->Translation(ignition::math::Vector3d(2.0, -2.7, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(170); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle4) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle5.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle5.cc new file mode 100644 index 0000000..a1e812c --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle5.cc @@ -0,0 +1,104 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle5 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move5", 205.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(0.7, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(2.5, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(55); + key->Translation(ignition::math::Vector3d(0.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(85); + key->Translation(ignition::math::Vector3d(0.0, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(2.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(125); + key->Translation(ignition::math::Vector3d(4.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(145); + key->Translation(ignition::math::Vector3d(3.0, -2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(170); + key->Translation(ignition::math::Vector3d(2.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(185); + key->Translation(ignition::math::Vector3d(2.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(205); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle5) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle6.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle6.cc new file mode 100644 index 0000000..be41fcb --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle6.cc @@ -0,0 +1,96 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle6 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move6", 170.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(-1.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(-1.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(55); + key->Translation(ignition::math::Vector3d(-1.5, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(85); + key->Translation(ignition::math::Vector3d(0.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(120); + key->Translation(ignition::math::Vector3d(-4.0, -1.8, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(130); + key->Translation(ignition::math::Vector3d(-3.0, -1.8, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(145); + key->Translation(ignition::math::Vector3d(-2.5, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(170); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle6) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle7.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle7.cc new file mode 100644 index 0000000..8ebbf82 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle7.cc @@ -0,0 +1,96 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle7 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_1", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move7", 195.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(15); + key->Translation(ignition::math::Vector3d(-0.5, -0.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(25); + key->Translation(ignition::math::Vector3d(-1.5, -0.3, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(55); + key->Translation(ignition::math::Vector3d(-4.5, 0.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(85); + key->Translation(ignition::math::Vector3d(-4.0, -2.7, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(135); + key->Translation(ignition::math::Vector3d(0, -4.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(175); + key->Translation(ignition::math::Vector3d(-1.0, -1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(195); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // key = anim->CreateKeyFrame(170); + // key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + // key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle7) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle8.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle8.cc new file mode 100644 index 0000000..18e5038 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle8.cc @@ -0,0 +1,96 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle8 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move8", 150.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(10); + key->Translation(ignition::math::Vector3d(1.0, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(30); + key->Translation(ignition::math::Vector3d(3.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(4.0, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(70); + key->Translation(ignition::math::Vector3d(2.5, 4.2, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(100); + key->Translation(ignition::math::Vector3d(-0.5, 4.2, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(130); + key->Translation(ignition::math::Vector3d(-0.5, 1.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(140); + key->Translation(ignition::math::Vector3d(0.5, 0.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(150); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle8) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle9.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle9.cc new file mode 100644 index 0000000..e25ded1 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacle9.cc @@ -0,0 +1,92 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +namespace gazebo +{ + class Obstacle9 : public ModelPlugin + { + public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move_2", + // make it last 260 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move9", 120.0, true)); + + gazebo::common::PoseKeyFrame *key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(20); + key->Translation(ignition::math::Vector3d(-2.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(-3.5, 1.5, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(55); + key->Translation(ignition::math::Vector3d(-3.5, 3.3, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(90); + key->Translation(ignition::math::Vector3d(-0.6, 3.3, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(105); + key->Translation(ignition::math::Vector3d(-0.6, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(110); + key->Translation(ignition::math::Vector3d(0.0, 2.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(120); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + // set the animation + _parent->SetAnimation(anim); + } + + // Pointer to the model + + private: + physics::ModelPtr model; + + // Pointer to the update event connection + + private: + event::ConnectionPtr updateConnection; + }; + // Register this plugin with the simulator + GZ_REGISTER_MODEL_PLUGIN(Obstacle9) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacles.cc b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacles.cc new file mode 100644 index 0000000..115966d --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/meshes/obstacles/obstacle_plugin/obstacles.cc @@ -0,0 +1,75 @@ +// Copyright 2012 Open Source Robotics Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Author: Ryan Shim + +#include +#include + +#include +#include +#include + +#define PI 3.141592 + + +namespace gazebo +{ +class Obstacles: public ModelPlugin +{ +public: + void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) + { + // Store the pointer to the model + this->model = _parent; + + // create the animation + gazebo::common::PoseAnimationPtr anim( + // name the animation "move", + // make it last 40 seconds, + // and set it on a repeat loop + new gazebo::common::PoseAnimation("move", 40.0, true)); + + gazebo::common::PoseKeyFrame * key; + + // set starting location of the box + key = anim->CreateKeyFrame(0); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 0)); + + key = anim->CreateKeyFrame(20); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, PI)); + + key = anim->CreateKeyFrame(40); + key->Translation(ignition::math::Vector3d(0.0, 0.0, 0.0)); + key->Rotation(ignition::math::Quaterniond(0, 0, 2 * PI)); + + // set the animation + _parent->SetAnimation(anim); + } + +// Pointer to the model + +private: + physics::ModelPtr model; + +// Pointer to the update event connection + +private: + event::ConnectionPtr updateConnection; +}; +// Register this plugin with the simulator +GZ_REGISTER_MODEL_PLUGIN(Obstacles) +} // namespace gazebo diff --git a/src/rm_simulation/pb_rm_simulation/package.xml b/src/rm_simulation/pb_rm_simulation/package.xml new file mode 100644 index 0000000..5f3857b --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/package.xml @@ -0,0 +1,29 @@ + + + + pb_rm_simulation + 1.0.0 + + Gazebo simulation package for the RMUC + + Lihan Chen + TODO + Lihan Chen + + ament_cmake + gazebo_ros_pkgs + + xacro + joint_state_publisher + robot_state_publisher + + + ament_cmake + + + + diff --git a/src/rm_simulation/pb_rm_simulation/rviz/rviz2.rviz b/src/rm_simulation/pb_rm_simulation/rviz/rviz2.rviz new file mode 100644 index 0000000..e1f8fac --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/rviz/rviz2.rviz @@ -0,0 +1,325 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /PointCloud21 + - /TF1 + - /RobotModel1 + - /RobotModel1/Description Topic1 + Splitter Ratio: 0.5 + Tree Height: 883 + - Class: rviz_common/Selection + Name: Selection + - Class: rviz_common/Tool Properties + Expanded: + - /2D Goal Pose1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Class: rviz_default_plugins/Image + Enabled: true + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /camera_sensor/image_raw + Value: true + - Class: rviz_default_plugins/Camera + Enabled: false + Far Plane Distance: 100 + Image Rendering: background and overlay + Name: Camera + Overlay Alpha: 0.5 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /camera_sensor/image_raw + Value: false + Visibility: + Grid: true + Image: true + PointCloud2: true + RobotModel: true + TF: true + Value: true + Zoom Factor: 1 + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 9.62706470489502 + Min Value: -0.0572148859500885 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz_default_plugins/PointCloud2 + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: PointCloud2 + Position Transformer: XYZ + Selectable: true + Size (Pixels): 3 + Size (m): 0.009999999776482582 + Style: Points + Topic: + Depth: 5 + Durability Policy: Volatile + Filter size: 10 + History Policy: Keep Last + Reliability Policy: Reliable + Value: /livox/lidar/pointcloud + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + base_footprint: + Value: true + base_link: + Value: true + camera_link: + Value: true + imu_link: + Value: true + livox: + Value: true + odom: + Value: true + wheel_1: + Value: true + wheel_2: + Value: true + wheel_3: + Value: true + wheel_4: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: true + Tree: + base_footprint: + base_link: + camera_link: + {} + imu_link: + {} + livox: + {} + wheel_1: + {} + wheel_2: + {} + wheel_3: + {} + wheel_4: + {} + odom: + {} + Update Interval: 0 + Value: true + - Alpha: 1 + Class: rviz_default_plugins/RobotModel + Collision Enabled: false + Description File: "" + Description Source: Topic + Description Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /robot_description + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_footprint: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + imu_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + livox: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_1: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_2: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_3: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + wheel_4: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Mass Properties: + Inertia: false + Mass: false + Name: RobotModel + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: base_link + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + - Class: rviz_default_plugins/FocusCamera + - Class: rviz_default_plugins/Measure + Line color: 128; 128; 0 + - Class: rviz_default_plugins/SetInitialPose + Covariance x: 0.25 + Covariance y: 0.25 + Covariance yaw: 0.06853891909122467 + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /initialpose + - Class: rviz_default_plugins/SetGoal + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /goal_pose + - Class: rviz_default_plugins/PublishPoint + Single click: true + Topic: + Depth: 5 + Durability Policy: Volatile + History Policy: Keep Last + Reliability Policy: Reliable + Value: /clicked_point + Transformation: + Current: + Class: rviz_default_plugins/TF + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 33.390586853027344 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 4.494869709014893 + Y: 1.1036027669906616 + Z: 3.0751402378082275 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.592147707939148 + Target Frame: + Value: Orbit (rviz) + Yaw: 2.4887309074401855 + Saved: ~ +Window Geometry: + Camera: + collapsed: false + Displays: + collapsed: false + Height: 1376 + Hide Left Dock: false + Hide Right Dock: false + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd00000004000000000000023400000506fc020000000afb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d000003fe000000c900fffffffb0000000c00430061006d0065007200610000000395000000ed0000002800fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000000a0049006d0061006700650100000441000001020000002800ffffff000000010000010f00000506fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000003d00000506000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004420000003efc0100000002fb0000000800540069006d00650100000000000004420000000000000000fb0000000800540069006d00650100000000000004500000000000000000000006670000050600000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 2486 + X: 74 + Y: 27 diff --git a/src/rm_simulation/pb_rm_simulation/urdf/simulation_waking_robot.xacro b/src/rm_simulation/pb_rm_simulation/urdf/simulation_waking_robot.xacro new file mode 100644 index 0000000..39cc066 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/urdf/simulation_waking_robot.xacro @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + 0.5 + 0.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gazebo/Orange + + + Gazebo/Red + + + Gazebo/Black + + + Gazebo/Red + + + Gazebo/Black + + + Gazebo/BuildingFrame + + + Gazebo/LightBlueLaser + + + + + + + + + / + + cmd_vel:=cmd_vel_chassis + odom:=odom + + + + 100 + + 10 + + + false + false + + + odom + base_link + + + 0.0001 + 0.0001 + 0.01 + + + + + + + + true + 100 + + + / + ~/out:=/livox/imu + + imu_link + + + + + + + + + + + diff --git a/src/rm_simulation/pb_rm_simulation/world/RMUC2024_world/RMUC2024_world.world b/src/rm_simulation/pb_rm_simulation/world/RMUC2024_world/RMUC2024_world.world new file mode 100644 index 0000000..bed0d6a --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/world/RMUC2024_world/RMUC2024_world.world @@ -0,0 +1,153 @@ + + + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + 4453 603000000 + 278 325717826 + 1696053819 13609449 + 277067 + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 14.5 7.5 8 0 -0 0 + + + 14.5 7.5 8 0 -0 0 + + + 14.5 7.5 17 0 -0 0 + + + + + -0.013932 7.70005 13.5355 -0 0.837804 0.010414 + orbit + perspective + + + 0 0 -9.81 + 0 0 0 + + + 1 + + + + + model://RMUC2024_world/meshes/RMUC_2024.stl + 1 1 1 + + + 10 + + + + 100 + 50 + + + + + + + + + + + + + + + model://RMUC2024_world/meshes/RMUC_2024.stl + 1 1 1 + + + + 0 + 0 + 0 + + 0 0 0 0 -0 0 + + + + 14.5 7.5 5 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0.1 0.1 -0.9 + + 20 + 0.5 + 0.01 + 0.001 + + 1 + + 0 + 0 + 0 + + + + 14.5 7.5 5 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0.1 0.1 -0.9 + + 20 + 0.5 + 0.01 + 0.001 + + 1 + + 0 + 0 + 0 + + + + 15.1654 7.58216 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0 0 -1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + + 0.6 + 1 + 1 + + + + \ No newline at end of file diff --git a/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/RMUL2024_world.world b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/RMUL2024_world.world new file mode 100644 index 0000000..8be3eeb --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/RMUL2024_world.world @@ -0,0 +1,309 @@ + + + + 1 + + + + + 0 0 1 + 100 100 + + + + + 65535 + + + + + 100 + 50 + + + + + + + + 10 + + + 0 + + + 0 0 1 + 100 100 + + + + + + + 0 + 0 + 0 + + + 0 0 -9.8 + 6e-06 2.3e-05 -4.2e-05 + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + + + 1 + + 0.166667 + 0 + 0 + 0.166667 + 0 + 0.166667 + + 0 0 0 0 -0 0 + + 0 0 -3e-06 0 -0 0 + 1 + 0 + 0 + 0 + + 0 0 0 -1.5705 0 0 + + + model://RMUL2024_world/meshes/RMUL_2024.stl + 0.001 0.001 0.001 + + + + 1 + + + __default__ + + 0.3 0.3 0.3 1 + 0.7 0.7 0.7 1 + 0.01 0.01 0.01 1 + 0 0 0 1 + + 0 + 1 + + + 0 + 10 + 0 0 0 -1.5705 0 0 + + + model://RMUL2024_world/meshes/RMUL_2024.stl + 0.001 0.001 0.001 + + + + + + 1 + 1 + 0 0 0 + 0 + 0 + + + 1 + 0 + 0 + 1 + + 0 + + + + + 0 + 1e+06 + + + 0 + 1 + 1 + + 0 + 0.2 + 1e+13 + 1 + 0.01 + 0 + + + 1 + -0.01 + 0 + 0.2 + 1e+13 + 1 + + + + + + 1 + 1 + 1.0 -0.5 2.65 0 0 0 + + + 5.92611 3.87759 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0.1 0.1 -0.9 + + 20 + 0.5 + 0.01 + 0.001 + + 1 + + + 7.74204 2.38082 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + 0 0 -1 + + + 2.4624 1.17686 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0 0 -1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + + 0.6 + 1 + 1 + + + + 12.1106 6.3566 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0 0 -1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + + 0.6 + 1 + 1 + + + + 7.29605 3.79652 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0 0 -1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + + 0.6 + 1 + 1 + + + + 639 781000000 + 769 910297314 + 1708171474 998593823 + 639781 + + 0.992949 -0.499061 2.64755 -0.000296 -0 -0.001704 + 1 1 1 + + 0.992949 -0.499061 2.64755 -0.000296 -0 -0.001704 + 0 0 0 0 -0 0 + -0.037683 -0.007277 -9.76232 -2.75575 -0.747169 3.065 + -0.037683 -0.007277 -9.76232 0 -0 0 + + + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 7.32231 3.81549 13 0 -0 0 + + + 7.45 3.9 14 0 -0 0 + + + 2.78166 1.19644 7 0 -0 0 + + + 11.9339 6.3566 7 0 -0 0 + + + 7.45 3.9 5 0 -0 0 + + + + + 7.46312 3.78907 13.2486 -2.7e-05 1.5698 1.56647 + orbit + perspective + + + + diff --git a/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/RMUL2024_world_dynamic_obstacles.world b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/RMUL2024_world_dynamic_obstacles.world new file mode 100644 index 0000000..5e06c53 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/RMUL2024_world_dynamic_obstacles.world @@ -0,0 +1,359 @@ + + + + 1 + + + + + 0 0 1 + 100 100 + + + + + 65535 + + + + + 100 + 50 + + + + + + + + 10 + + + 0 + + + 0 0 1 + 100 100 + + + + + + + 0 + 0 + 0 + + + + 0 0 -9.8 + 6e-06 2.3e-05 -4.2e-05 + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + + + + 1 + + 0.166667 + 0 + 0 + 0.166667 + 0 + 0.166667 + + 0 0 0 0 -0 0 + + 0 0 -3e-06 0 -0 0 + 1 + 0 + 0 + 0 + + 0 0 0 -1.5705 0 0 + + + model://RMUL2024_world/meshes/RMUL_2024.stl + 0.001 0.001 0.001 + + + + 1 + + + __default__ + + 0.3 0.3 0.3 1 + 0.7 0.7 0.7 1 + 0.01 0.01 0.01 1 + 0 0 0 1 + + 0 + 1 + + + 0 + 10 + 0 0 0 -1.5705 0 0 + + + model://RMUL2024_world/meshes/RMUL_2024.stl + 0.001 0.001 0.001 + + + + + + 1 + 1 + 0 0 0 + 0 + 0 + + + 1 + 0 + 0 + 1 + + 0 + + + + + 0 + 1e+06 + + + 0 + 1 + 1 + + 0 + 0.2 + 1e+13 + 1 + 0.01 + 0 + + + 1 + -0.01 + 0 + 0.2 + 1e+13 + 1 + + + + + + 1 + 1 + 1.0 -0.5 2.65 0 0 0 + + + + + + 5.0 4.5 1.3 0 0 0 + model://obstacles/obstacle1 + + + + + + + 6.5 5.5 1.3 0 0 0 + model://obstacles/obstacle2 + + + + + + + 6.0 2.0 1.3 0 0 0 + model://obstacles/obstacle3 + + + + + + + 9.5 2.0 1.3 0 0 0 + model://obstacles/obstacle4 + + + + + + + 3.0 4.0 1.3 0 0 0 + model://obstacles/obstacle4 + + + + + 5.92611 3.87759 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0.1 0.1 -0.9 + + 20 + 0.5 + 0.01 + 0.001 + + 1 + + + + 7.74204 2.38082 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + 0 0 -1 + + + + 2.4624 1.17686 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0 0 -1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + + 0.6 + 1 + 1 + + + + + 12.1106 6.3566 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0 0 -1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + + 0.6 + 1 + 1 + + + + + 7.29605 3.79652 1 0 -0 0 + 0.5 0.5 0.5 1 + 0.1 0.1 0.1 1 + 0 0 -1 + + 20 + 0.5 + 0.01 + 0.001 + + 0 + + 0.6 + 1 + 1 + + + + + 639 781000000 + 769 910297314 + 1708171474 998593823 + 639781 + + 0.992949 -0.499061 2.64755 -0.000296 -0 -0.001704 + 1 1 1 + + 0.992949 -0.499061 2.64755 -0.000296 -0 -0.001704 + 0 0 0 0 -0 0 + -0.037683 -0.007277 -9.76232 -2.75575 -0.747169 3.065 + -0.037683 -0.007277 -9.76232 0 -0 0 + + + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 7.32231 3.81549 13 0 -0 0 + + + 7.45 3.9 14 0 -0 0 + + + 2.78166 1.19644 7 0 -0 0 + + + 11.9339 6.3566 7 0 -0 0 + + + 7.45 3.9 5 0 -0 0 + + + + + + 7.46312 3.78907 13.2486 -2.7e-05 1.5698 1.56647 + orbit + perspective + + + + + diff --git a/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/model.config b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/model.config new file mode 100644 index 0000000..c03b056 --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/model.config @@ -0,0 +1,13 @@ + + + RMUL2024_world + 1.0 + + + + Lihan Chen + lihanchen2004@163.com + + + RoboMaster University League 2024 world + diff --git a/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/model.sdf b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/model.sdf new file mode 100644 index 0000000..098cdce --- /dev/null +++ b/src/rm_simulation/pb_rm_simulation/world/RMUL2024_world/model.sdf @@ -0,0 +1,107 @@ + + + + + + 1 + + 0.166667 + 0 + 0 + 0.166667 + 0 + 0.166667 + + 0 0 0 0 -0 0 + + 0 0 -3e-06 0 -0 0 + 1 + 0 + 0 + 0 + + 0 0 0 -1.5705 0 0 + + + model://RMUL2024_world/meshes/RMUL_2024.stl + 0.001 0.001 0.001 + + + + 1 + + + __default__ + + 0.3 0.3 0.3 1 + 0.7 0.7 0.7 1 + 0.01 0.01 0.01 1 + 0 0 0 1 + + 0 + 1 + + + 0 + 10 + 0 0 0 -1.5705 0 0 + + + model://RMUL2024_world/meshes/RMUL_2024.stl + 0.001 0.001 0.001 + + + + + + 1 + 1 + 0 0 0 + 0 + 0 + + + 1 + 0 + 0 + 1 + + 0 + + + + + 0 + 1e+06 + + + 0 + 1 + 1 + + 0 + 0.2 + 1e+13 + 1 + 0.01 + 0 + + + 1 + -0.01 + 0 + 0.2 + 1e+13 + 1 + + + + + + 1 + 1 + +